diff --git a/.ipynb_checkpoints/Main-checkpoint.ipynb b/.ipynb_checkpoints/Main-checkpoint.ipynb index a10f56f..3fac59e 100644 --- a/.ipynb_checkpoints/Main-checkpoint.ipynb +++ b/.ipynb_checkpoints/Main-checkpoint.ipynb @@ -35,7 +35,7 @@ "outputs": [], "source": [ "# Import keys from the config file\n", - "from config import consumer_key, consumer_secret, access_token, access_token_secret" + "from my_config import consumer_key, consumer_secret, access_token, access_token_secret" ] }, { @@ -95,8 +95,8 @@ "output_type": "stream", "text": [ "-----------Start extraction!!!-----------\n", - "exception for @kendricklamar: Failed to send request: HTTPSConnectionPool(host='api.twitter.com', port=443): Read timed out. (read timeout=60)\n", - "exception for @JimmyJohnson: Failed to send request: HTTPSConnectionPool(host='api.twitter.com', port=443): Max retries exceeded with url: /1.1/users/show.json?id=%40JimmyJohnson (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:833)'),))\n", + "exception for @ilanusglazer: Not authorized.\n", + "exception for @billieelish: Not authorized.\n", "----------- Extraction Complete !!!-----------\n", "2\n" ] @@ -106,14 +106,38 @@ "# for index, row in Influencers_DF.iterrows():\n", "Data_Influencers_DF = influencer_data_read\n", "Not_Found = 0\n", + "\n", + "#SS - define variable for holding tweets for influencer\n", + "\n", + "all_tweet_listing = []\n", + "\n", "print(\"-----------Start extraction!!!-----------\")\n", "\n", "for index, row in Data_Influencers_DF.iterrows():\n", " target_user = row[\"Twitter_Handle\"]\n", + " Genre = row[\"Genre\"]\n", " \n", " try:\n", + " \n", + " #SS - retrieve top 200 tweets for influencer\n", + " \n", + " public_tweets = api.user_timeline(target_user, count=200, result_type=\"recent\")\n", + "\n", + " #SS - write to all_tweet_listing\n", + "\n", + " for tweet in public_tweets:\n", + " \n", + " Date = datetime.strptime(tweet['created_at'],'%a %b %d %H:%M:%S %z %Y').strftime('%m/%d/%Y')\n", + "\n", + " all_tweet_listing.append({\"Influencer\":target_user,\n", + " \"Date\": Date,\n", + " \"Genre\":Genre,\n", + " \"Tweet\":tweet[\"text\"]})\n", + " \n", " user_account = api.get_user(target_user)\n", + " \n", " user_geo_enabled = user_account[\"geo_enabled\"]\n", + " \n", " if (user_geo_enabled == True):\n", " Data_Influencers_DF.at[index, \"Loc\"] = user_account[\"location\"]\n", " else:\n", @@ -125,6 +149,7 @@ " Data_Influencers_DF.at[index, \"Lang\"] = 'NA'\n", " \n", " Data_Influencers_DF.at[index, \"Created On\"] = datetime.strptime(user_account['created_at'],'%a %b %d %H:%M:%S %z %Y').strftime('%m/%d/%Y')\n", + " \n", " Data_Influencers_DF.at[index, \"Age Of Account\"] = (datetime.now(timezone.utc) - datetime.strptime(user_account['created_at'],'%a %b %d %H:%M:%S %z %Y')).days\n", " \n", " \n", @@ -148,6 +173,108 @@ "cell_type": "code", "execution_count": 8, "metadata": {}, + "outputs": [], + "source": [ + "#SS -translate dict to a dataframe\n", + "tweet_listing_pd = pd.DataFrame.from_dict(all_tweet_listing)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 68502 entries, 0 to 68501\n", + "Data columns (total 4 columns):\n", + "Date 68502 non-null object\n", + "Genre 68502 non-null object\n", + "Influencer 68502 non-null object\n", + "Tweet 68502 non-null object\n", + "dtypes: object(4)\n", + "memory usage: 2.1+ MB\n" + ] + } + ], + "source": [ + "#SS -stats for tweet listing for influencers. PLEASE DON'T REMOVE. Required to quantify digital footprint!\n", + "tweet_listing_pd.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "#SS -top 1000 key words from Influencer tweets\n", + "\n", + "Top_1000 = pd.Series(' '.join(tweet_listing_pd['Tweet']).lower().split()).value_counts()[:1000]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "Top_1000.to_csv(\"RawData/Top_1000_keywords.csv\", index=True, header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "#SS - Write to CSV for analysis\n", + "###Permission Error 13 tweet_listing_pd.to_csv(\"RawData/TweetListings.csv\", index=False, header=True)\n", + "tweet_listing_pd.to_csv(\"RawData/TweetListingsIB.csv\", index=False, header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# #SS - define target tags for social and entertainment\n", + "\n", + "# social_target_tags = [\"#FamiliesBelongTogetherMarch\",\"#gun\",\"gun\",\"shooting\",\"gun-control\",\"election\",\"#metoo\",\"metoo\",\"FamiliesBelongTogetherMarch\",\"PrideMonth\",\"#PrideMonth\",\"FamiliesBelongTogether\",\"ChildreninCages\",\"UniteTheFamilies\",\"WeCare\"]\n", + "\n", + "# entertainment_target_tags = [\"#SocialMediaDay\",\"SocialMediaDay\",\"WorldCup\",\"#WorldCup\",\"#fifa\",\"fifa\", \"#worldcup2018russia\",\"#PostASongLyricYouLove\"]\n", + "\n", + "# #SS - define lists to hold tweets based on tags\n", + "\n", + "# social_tweet_list_dict = []\n", + "\n", + "# entertainment_tweet_list_dict = []\n", + "\n", + "# for index, row in tweet_listing_pd.iterrows():\n", + " \n", + "# tweet_listing_filtered = [tweet_listing_pd[tweet_listing_pd['Tweet'].str.contains(x)] for x in target_tags]\n", + " \n", + "# for tweet_list in tweet_listing_filtered:\n", + "# Date = tweet_list[\"Date\"]\n", + "# Genre = tweet_list[\"Genre\"]\n", + "# Influencer = tweet_list[\"Influencer\"]\n", + "# Tweet = tweet_list[\"Tweet\"]\n", + "# tweet_list_dict.append({\n", + "# \"Data\" : Data,\n", + "# \"Genre\":Genre,\n", + "# \"Influencer\": Influencer,\n", + "# \"Tweet\" : Tweet\n", + "# })" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, "outputs": [ { "data": { @@ -194,9 +321,9 @@ " NA\n", " Eng\n", " 09/13/2012\n", - " 2116.0\n", + " 2117.0\n", " 2.0\n", - " 280.0\n", + " 281.0\n", " 0.0\n", " 0.0\n", " \n", @@ -209,9 +336,9 @@ " NA\n", " Eng\n", " 01/16/2010\n", - " 3087.0\n", + " 3088.0\n", " 5776.0\n", - " 228697.0\n", + " 228677.0\n", " 502.0\n", " 2157.0\n", " \n", @@ -224,9 +351,9 @@ " NA\n", " Eng\n", " 07/14/2010\n", - " 2908.0\n", + " 2909.0\n", " 1642.0\n", - " 29137145.0\n", + " 29138571.0\n", " 382.0\n", " 991.0\n", " \n", @@ -239,9 +366,9 @@ " NA\n", " Eng\n", " 01/13/2011\n", - " 2725.0\n", + " 2726.0\n", " 0.0\n", - " 544608.0\n", + " 544648.0\n", " 0.0\n", " 0.0\n", " \n", @@ -254,9 +381,9 @@ " NA\n", " Eng\n", " 04/16/2010\n", - " 2997.0\n", - " 1283.0\n", - " 19325910.0\n", + " 2998.0\n", + " 1284.0\n", + " 19326236.0\n", " 145.0\n", " 40.0\n", " \n", @@ -269,9 +396,9 @@ " Los Angeles, CA\n", " Eng\n", " 02/02/2010\n", - " 3070.0\n", - " 15803.0\n", - " 7692252.0\n", + " 3071.0\n", + " 15804.0\n", + " 7692110.0\n", " 809.0\n", " 151.0\n", " \n", @@ -284,9 +411,9 @@ " NA\n", " Eng\n", " 02/11/2011\n", - " 2696.0\n", - " 21633.0\n", - " 13038268.0\n", + " 2697.0\n", + " 21646.0\n", + " 13040768.0\n", " 242.0\n", " 142.0\n", " \n", @@ -299,11 +426,11 @@ " NA\n", " Eng\n", " 11/24/2009\n", - " 3140.0\n", + " 3141.0\n", " 6244.0\n", - " 9649541.0\n", + " 9649414.0\n", " 1359.0\n", - " 1443.0\n", + " 1442.0\n", " \n", " \n", " 8\n", @@ -314,9 +441,9 @@ " NY/LA\n", " Eng\n", " 03/23/2013\n", - " 1926.0\n", + " 1927.0\n", " 5211.0\n", - " 1551673.0\n", + " 1551664.0\n", " 541.0\n", " 6069.0\n", " \n", @@ -329,9 +456,9 @@ " NA\n", " Eng\n", " 05/05/2011\n", - " 2613.0\n", + " 2614.0\n", " 4017.0\n", - " 935864.0\n", + " 935914.0\n", " 348.0\n", " 86.0\n", " \n", @@ -344,9 +471,9 @@ " NA\n", " Eng\n", " 11/14/2009\n", - " 3150.0\n", + " 3151.0\n", " 9611.0\n", - " 822449.0\n", + " 822490.0\n", " 201.0\n", " 622.0\n", " \n", @@ -359,9 +486,9 @@ " \n", " Eng\n", " 09/20/2013\n", - " 1744.0\n", + " 1745.0\n", " 578.0\n", - " 1005661.0\n", + " 1005690.0\n", " 21.0\n", " 14.0\n", " \n", @@ -374,11 +501,11 @@ " NA\n", " Eng\n", " 07/30/2013\n", - " 1796.0\n", - " 7989.0\n", - " 820794.0\n", + " 1797.0\n", + " 8016.0\n", + " 820648.0\n", " 800.0\n", - " 6520.0\n", + " 6613.0\n", " \n", " \n", " 13\n", @@ -389,11 +516,11 @@ " NA\n", " Eng\n", " 04/12/2009\n", - " 3366.0\n", - " 19834.0\n", - " 2400009.0\n", + " 3368.0\n", + " 19837.0\n", + " 2400075.0\n", " 3531.0\n", - " 5700.0\n", + " 5716.0\n", " \n", " \n", " 14\n", @@ -404,10 +531,10 @@ " NA\n", " Eng\n", " 04/05/2009\n", - " 3374.0\n", + " 3375.0\n", " 7614.0\n", - " 771065.0\n", - " 503.0\n", + " 771066.0\n", + " 502.0\n", " 386.0\n", " \n", " \n", @@ -419,11 +546,11 @@ " Utah / Toronto\n", " Eng\n", " 11/03/2009\n", - " 3161.0\n", + " 3162.0\n", " 8474.0\n", - " 1325730.0\n", + " 1325712.0\n", " 117.0\n", - " 3120.0\n", + " 3119.0\n", " \n", " \n", " 16\n", @@ -434,7 +561,7 @@ " NA\n", " Eng\n", " 09/19/2012\n", - " 2110.0\n", + " 2111.0\n", " 4306.0\n", " 236873.0\n", " 697.0\n", @@ -449,11 +576,11 @@ " NA\n", " Eng\n", " 03/02/2014\n", - " 1581.0\n", - " 5810.0\n", - " 301897.0\n", + " 1582.0\n", + " 5811.0\n", + " 301989.0\n", " 427.0\n", - " 5541.0\n", + " 5544.0\n", " \n", " \n", " 18\n", @@ -464,11 +591,11 @@ " NA\n", " Eng\n", " 08/30/2009\n", - " 3226.0\n", - " 18109.0\n", - " 894903.0\n", + " 3227.0\n", + " 18110.0\n", + " 894880.0\n", " 828.0\n", - " 3541.0\n", + " 3543.0\n", " \n", " \n", " 19\n", @@ -479,11 +606,11 @@ " NA\n", " Eng\n", " 12/26/2011\n", - " 2378.0\n", + " 2379.0\n", " 4045.0\n", - " 256598.0\n", - " 524.0\n", - " 11744.0\n", + " 256617.0\n", + " 525.0\n", + " 11755.0\n", " \n", " \n", " 20\n", @@ -494,11 +621,11 @@ " Everywhere I tweet...\n", " Eng\n", " 02/06/2011\n", - " 2702.0\n", + " 2703.0\n", " 29863.0\n", - " 98699.0\n", - " 7486.0\n", - " 11407.0\n", + " 98695.0\n", + " 7489.0\n", + " 11408.0\n", " \n", " \n", " 21\n", @@ -509,10 +636,10 @@ " NA\n", " Eng\n", " 03/02/2010\n", - " 3042.0\n", + " 3043.0\n", " 9347.0\n", - " 584090.0\n", - " 612.0\n", + " 584133.0\n", + " 611.0\n", " 3618.0\n", " \n", " \n", @@ -524,9 +651,9 @@ " NA\n", " Eng\n", " 03/13/2010\n", - " 3032.0\n", - " 5712.0\n", - " 228926.0\n", + " 3033.0\n", + " 5713.0\n", + " 228889.0\n", " 85.0\n", " 97.0\n", " \n", @@ -539,9 +666,9 @@ " NA\n", " Eng\n", " 04/23/2010\n", - " 2990.0\n", + " 2992.0\n", " 1682.0\n", - " 199284.0\n", + " 199259.0\n", " 330.0\n", " 759.0\n", " \n", @@ -554,11 +681,11 @@ " Everywhere\n", " Eng\n", " 11/12/2009\n", - " 3152.0\n", + " 3153.0\n", " 8770.0\n", - " 458218.0\n", + " 458202.0\n", " 403.0\n", - " 2393.0\n", + " 2392.0\n", " \n", " \n", " 25\n", @@ -569,9 +696,9 @@ " \n", " Eng\n", " 03/03/2009\n", - " 3406.0\n", - " 42828.0\n", - " 182112.0\n", + " 3407.0\n", + " 42826.0\n", + " 182106.0\n", " 2000.0\n", " 1103.0\n", " \n", @@ -584,11 +711,11 @@ " NA\n", " Eng\n", " 05/22/2011\n", - " 2596.0\n", - " 1591.0\n", - " 555787.0\n", + " 2597.0\n", + " 1592.0\n", + " 555748.0\n", " 235.0\n", - " 99.0\n", + " 100.0\n", " \n", " \n", " 27\n", @@ -599,11 +726,11 @@ " NA\n", " Eng\n", " 05/11/2010\n", - " 2972.0\n", - " 14827.0\n", - " 262230.0\n", + " 2974.0\n", + " 14831.0\n", + " 262251.0\n", " 997.0\n", - " 24281.0\n", + " 24289.0\n", " \n", " \n", " 28\n", @@ -614,11 +741,11 @@ " NA\n", " Eng\n", " 06/17/2013\n", - " 1840.0\n", - " 4513.0\n", - " 151994.0\n", + " 1841.0\n", + " 4516.0\n", + " 152046.0\n", " 1201.0\n", - " 10817.0\n", + " 10845.0\n", " \n", " \n", " 29\n", @@ -629,11 +756,11 @@ " Los Angeles\n", " Eng\n", " 08/18/2010\n", - " 2873.0\n", + " 2875.0\n", " 1481.0\n", - " 110133.0\n", + " 110119.0\n", " 454.0\n", - " 613.0\n", + " 615.0\n", " \n", " \n", " ...\n", @@ -659,11 +786,11 @@ " NA\n", " Eng\n", " 04/14/2011\n", - " 2634.0\n", - " 140584.0\n", - " 102035.0\n", + " 2636.0\n", + " 140695.0\n", + " 102156.0\n", " 811.0\n", - " 211402.0\n", + " 211504.0\n", " \n", " \n", " 333\n", @@ -674,11 +801,11 @@ " Chicago\n", " Eng\n", " 11/19/2010\n", - " 2780.0\n", - " 4766.0\n", - " 76954.0\n", - " 454.0\n", - " 1605.0\n", + " 2782.0\n", + " 4770.0\n", + " 76961.0\n", + " 456.0\n", + " 1606.0\n", " \n", " \n", " 334\n", @@ -689,10 +816,10 @@ " NA\n", " Eng\n", " 09/15/2011\n", - " 2481.0\n", - " 35314.0\n", - " 61226.0\n", - " 950.0\n", + " 2482.0\n", + " 35350.0\n", + " 61224.0\n", + " 952.0\n", " 33.0\n", " \n", " \n", @@ -704,11 +831,11 @@ " NA\n", " Eng\n", " 10/05/2009\n", - " 3190.0\n", - " 38933.0\n", - " 16199.0\n", + " 3192.0\n", + " 38985.0\n", + " 16212.0\n", " 920.0\n", - " 10623.0\n", + " 10640.0\n", " \n", " \n", " 336\n", @@ -719,9 +846,9 @@ " NA\n", " Eng\n", " 07/30/2012\n", - " 2161.0\n", + " 2162.0\n", " 4215.0\n", - " 20681.0\n", + " 20678.0\n", " 281.0\n", " 170.0\n", " \n", @@ -734,11 +861,11 @@ " NA\n", " Eng\n", " 04/14/2009\n", - " 3364.0\n", - " 38837.0\n", - " 15092.0\n", - " 2823.0\n", - " 20129.0\n", + " 3365.0\n", + " 38884.0\n", + " 15117.0\n", + " 2830.0\n", + " 20177.0\n", " \n", " \n", " 338\n", @@ -749,9 +876,9 @@ " New York\n", " Eng\n", " 12/02/2008\n", - " 3497.0\n", + " 3499.0\n", " 5582.0\n", - " 109903.0\n", + " 109917.0\n", " 643.0\n", " 2318.0\n", " \n", @@ -764,11 +891,11 @@ " NA\n", " Eng\n", " 12/25/2009\n", - " 3109.0\n", - " 65098.0\n", - " 20524.0\n", - " 2426.0\n", - " 7077.0\n", + " 3110.0\n", + " 65206.0\n", + " 20533.0\n", + " 2425.0\n", + " 7086.0\n", " \n", " \n", " 340\n", @@ -779,11 +906,11 @@ " San Diego USA\n", " Eng\n", " 07/06/2009\n", - " 3281.0\n", - " 17533.0\n", - " 4149.0\n", + " 3282.0\n", + " 17546.0\n", + " 4156.0\n", " 2333.0\n", - " 4066.0\n", + " 4081.0\n", " \n", " \n", " 341\n", @@ -794,9 +921,9 @@ " NA\n", " Eng\n", " 07/11/2011\n", - " 2546.0\n", + " 2547.0\n", " 4965.0\n", - " 2949.0\n", + " 2951.0\n", " 606.0\n", " 98.0\n", " \n", @@ -809,11 +936,11 @@ " New York City\n", " Eng\n", " 01/28/2010\n", - " 3075.0\n", - " 21970.0\n", - " 9072.0\n", - " 3122.0\n", - " 25111.0\n", + " 3076.0\n", + " 21977.0\n", + " 9073.0\n", + " 3124.0\n", + " 25124.0\n", " \n", " \n", " 343\n", @@ -824,9 +951,9 @@ " NA\n", " Eng\n", " 07/06/2011\n", - " 2551.0\n", + " 2552.0\n", " 4291.0\n", - " 11630.0\n", + " 11638.0\n", " 518.0\n", " 254.0\n", " \n", @@ -839,11 +966,11 @@ " New York City\n", " Eng\n", " 04/27/2009\n", - " 3351.0\n", - " 13452.0\n", - " 109851.0\n", - " 1991.0\n", - " 440.0\n", + " 3352.0\n", + " 13455.0\n", + " 109895.0\n", + " 1990.0\n", + " 443.0\n", " \n", " \n", " 345\n", @@ -854,9 +981,9 @@ " NA\n", " Eng\n", " 10/12/2009\n", - " 3183.0\n", - " 3307.0\n", - " 5806.0\n", + " 3184.0\n", + " 3309.0\n", + " 5809.0\n", " 801.0\n", " 921.0\n", " \n", @@ -869,11 +996,11 @@ " NA\n", " Eng\n", " 05/26/2010\n", - " 2957.0\n", - " 8126.0\n", - " 592956.0\n", + " 2958.0\n", + " 8130.0\n", + " 593321.0\n", " 220.0\n", - " 582.0\n", + " 584.0\n", " \n", " \n", " 347\n", @@ -884,11 +1011,11 @@ " NA\n", " Eng\n", " 09/06/2011\n", - " 2489.0\n", - " 18425.0\n", - " 8758.0\n", + " 2491.0\n", + " 18434.0\n", + " 8760.0\n", " 329.0\n", - " 7582.0\n", + " 7593.0\n", " \n", " \n", " 348\n", @@ -899,9 +1026,9 @@ " Phoenix\n", " Eng\n", " 02/13/2009\n", - " 3424.0\n", - " 14483.0\n", - " 33162.0\n", + " 3426.0\n", + " 14485.0\n", + " 33220.0\n", " 300.0\n", " 269.0\n", " \n", @@ -914,10 +1041,10 @@ " Washington, DC and Oakland, CA\n", " Eng\n", " 02/07/2011\n", - " 2700.0\n", - " 7896.0\n", - " 186094.0\n", - " 16312.0\n", + " 2701.0\n", + " 7898.0\n", + " 186216.0\n", + " 16311.0\n", " 3387.0\n", " \n", " \n", @@ -929,9 +1056,9 @@ " NA\n", " Eng\n", " 10/04/2010\n", - " 2826.0\n", + " 2828.0\n", " 3996.0\n", - " 5948.0\n", + " 5950.0\n", " 6199.0\n", " 323.0\n", " \n", @@ -944,11 +1071,11 @@ " Buffalo, NY, USA\n", " Eng\n", " 11/18/2008\n", - " 3511.0\n", - " 24408.0\n", - " 6612.0\n", - " 4832.0\n", - " 4150.0\n", + " 3512.0\n", + " 24413.0\n", + " 6613.0\n", + " 4834.0\n", + " 4153.0\n", " \n", " \n", " 352\n", @@ -959,11 +1086,11 @@ " Chicago, IL\n", " Eng\n", " 09/09/2009\n", - " 3216.0\n", - " 45358.0\n", - " 14219.0\n", - " 792.0\n", - " 22348.0\n", + " 3217.0\n", + " 45396.0\n", + " 14229.0\n", + " 793.0\n", + " 22375.0\n", " \n", " \n", " 353\n", @@ -974,9 +1101,9 @@ " Philadelphia, PA\n", " Eng\n", " 04/04/2009\n", - " 3375.0\n", - " 7978.0\n", - " 1860.0\n", + " 3376.0\n", + " 7980.0\n", + " 1858.0\n", " 2582.0\n", " 182.0\n", " \n", @@ -989,11 +1116,11 @@ " NA\n", " Eng\n", " 10/23/2009\n", - " 3172.0\n", - " 10333.0\n", - " 2545.0\n", - " 1996.0\n", - " 2273.0\n", + " 3173.0\n", + " 10334.0\n", + " 2544.0\n", + " 1997.0\n", + " 2274.0\n", " \n", " \n", " 355\n", @@ -1004,8 +1131,8 @@ " NA\n", " Eng\n", " 10/28/2008\n", - " 3532.0\n", - " 4351.0\n", + " 3533.0\n", + " 4350.0\n", " 1456.0\n", " 430.0\n", " 1530.0\n", @@ -1019,9 +1146,9 @@ " NA\n", " Eng\n", " 04/04/2011\n", - " 2644.0\n", - " 79771.0\n", - " 1457.0\n", + " 2645.0\n", + " 79767.0\n", + " 1455.0\n", " 572.0\n", " 24906.0\n", " \n", @@ -1034,11 +1161,11 @@ " Ghaziabad,New Delhi\n", " Eng\n", " 05/08/2010\n", - " 2975.0\n", - " 26820.0\n", - " 4802267.0\n", + " 2976.0\n", + " 26822.0\n", + " 4804806.0\n", " 97.0\n", - " 88077.0\n", + " 88113.0\n", " \n", " \n", " 358\n", @@ -1049,11 +1176,11 @@ " ÜT: 42.439627,-82.892816\n", " Eng\n", " 12/09/2008\n", - " 3490.0\n", - " 5525.0\n", + " 3491.0\n", + " 5527.0\n", " 2498.0\n", " 1027.0\n", - " 2635.0\n", + " 2636.0\n", " \n", " \n", " 359\n", @@ -1064,11 +1191,11 @@ " India\n", " Eng\n", " 02/02/2009\n", - " 3435.0\n", - " 118499.0\n", - " 6817242.0\n", - " 1567.0\n", - " 27847.0\n", + " 3436.0\n", + " 118510.0\n", + " 6817941.0\n", + " 1573.0\n", + " 27872.0\n", " \n", " \n", " 360\n", @@ -1079,7 +1206,7 @@ " NA\n", " NA\n", " 03/03/2016\n", - " 849.0\n", + " 850.0\n", " 942.0\n", " 340.0\n", " 399.0\n", @@ -1094,10 +1221,10 @@ " Belfast, Northern Ireland\n", " Eng\n", " 08/04/2015\n", - " 1061.0\n", + " 1062.0\n", " 445.0\n", - " 332.0\n", - " 1170.0\n", + " 333.0\n", + " 1172.0\n", " 1092.0\n", " \n", " \n", @@ -1170,135 +1297,135 @@ "361 @Martha7144 Martha Campbell Social_workers \n", "\n", " Loc Lang Created On Age Of Account \\\n", - "0 NA Eng 09/13/2012 2116.0 \n", - "1 NA Eng 01/16/2010 3087.0 \n", - "2 NA Eng 07/14/2010 2908.0 \n", - "3 NA Eng 01/13/2011 2725.0 \n", - "4 NA Eng 04/16/2010 2997.0 \n", - "5 Los Angeles, CA Eng 02/02/2010 3070.0 \n", - "6 NA Eng 02/11/2011 2696.0 \n", - "7 NA Eng 11/24/2009 3140.0 \n", - "8 NY/LA Eng 03/23/2013 1926.0 \n", - "9 NA Eng 05/05/2011 2613.0 \n", - "10 NA Eng 11/14/2009 3150.0 \n", - "11 Eng 09/20/2013 1744.0 \n", - "12 NA Eng 07/30/2013 1796.0 \n", - "13 NA Eng 04/12/2009 3366.0 \n", - "14 NA Eng 04/05/2009 3374.0 \n", - "15 Utah / Toronto Eng 11/03/2009 3161.0 \n", - "16 NA Eng 09/19/2012 2110.0 \n", - "17 NA Eng 03/02/2014 1581.0 \n", - "18 NA Eng 08/30/2009 3226.0 \n", - "19 NA Eng 12/26/2011 2378.0 \n", - "20 Everywhere I tweet... Eng 02/06/2011 2702.0 \n", - "21 NA Eng 03/02/2010 3042.0 \n", - "22 NA Eng 03/13/2010 3032.0 \n", - "23 NA Eng 04/23/2010 2990.0 \n", - "24 Everywhere Eng 11/12/2009 3152.0 \n", - "25 Eng 03/03/2009 3406.0 \n", - "26 NA Eng 05/22/2011 2596.0 \n", - "27 NA Eng 05/11/2010 2972.0 \n", - "28 NA Eng 06/17/2013 1840.0 \n", - "29 Los Angeles Eng 08/18/2010 2873.0 \n", + "0 NA Eng 09/13/2012 2117.0 \n", + "1 NA Eng 01/16/2010 3088.0 \n", + "2 NA Eng 07/14/2010 2909.0 \n", + "3 NA Eng 01/13/2011 2726.0 \n", + "4 NA Eng 04/16/2010 2998.0 \n", + "5 Los Angeles, CA Eng 02/02/2010 3071.0 \n", + "6 NA Eng 02/11/2011 2697.0 \n", + "7 NA Eng 11/24/2009 3141.0 \n", + "8 NY/LA Eng 03/23/2013 1927.0 \n", + "9 NA Eng 05/05/2011 2614.0 \n", + "10 NA Eng 11/14/2009 3151.0 \n", + "11 Eng 09/20/2013 1745.0 \n", + "12 NA Eng 07/30/2013 1797.0 \n", + "13 NA Eng 04/12/2009 3368.0 \n", + "14 NA Eng 04/05/2009 3375.0 \n", + "15 Utah / Toronto Eng 11/03/2009 3162.0 \n", + "16 NA Eng 09/19/2012 2111.0 \n", + "17 NA Eng 03/02/2014 1582.0 \n", + "18 NA Eng 08/30/2009 3227.0 \n", + "19 NA Eng 12/26/2011 2379.0 \n", + "20 Everywhere I tweet... Eng 02/06/2011 2703.0 \n", + "21 NA Eng 03/02/2010 3043.0 \n", + "22 NA Eng 03/13/2010 3033.0 \n", + "23 NA Eng 04/23/2010 2992.0 \n", + "24 Everywhere Eng 11/12/2009 3153.0 \n", + "25 Eng 03/03/2009 3407.0 \n", + "26 NA Eng 05/22/2011 2597.0 \n", + "27 NA Eng 05/11/2010 2974.0 \n", + "28 NA Eng 06/17/2013 1841.0 \n", + "29 Los Angeles Eng 08/18/2010 2875.0 \n", ".. ... ... ... ... \n", - "332 NA Eng 04/14/2011 2634.0 \n", - "333 Chicago Eng 11/19/2010 2780.0 \n", - "334 NA Eng 09/15/2011 2481.0 \n", - "335 NA Eng 10/05/2009 3190.0 \n", - "336 NA Eng 07/30/2012 2161.0 \n", - "337 NA Eng 04/14/2009 3364.0 \n", - "338 New York Eng 12/02/2008 3497.0 \n", - "339 NA Eng 12/25/2009 3109.0 \n", - "340 San Diego USA Eng 07/06/2009 3281.0 \n", - "341 NA Eng 07/11/2011 2546.0 \n", - "342 New York City Eng 01/28/2010 3075.0 \n", - "343 NA Eng 07/06/2011 2551.0 \n", - "344 New York City Eng 04/27/2009 3351.0 \n", - "345 NA Eng 10/12/2009 3183.0 \n", - "346 NA Eng 05/26/2010 2957.0 \n", - "347 NA Eng 09/06/2011 2489.0 \n", - "348 Phoenix Eng 02/13/2009 3424.0 \n", - "349 Washington, DC and Oakland, CA Eng 02/07/2011 2700.0 \n", - "350 NA Eng 10/04/2010 2826.0 \n", - "351 Buffalo, NY, USA Eng 11/18/2008 3511.0 \n", - "352 Chicago, IL Eng 09/09/2009 3216.0 \n", - "353 Philadelphia, PA Eng 04/04/2009 3375.0 \n", - "354 NA Eng 10/23/2009 3172.0 \n", - "355 NA Eng 10/28/2008 3532.0 \n", - "356 NA Eng 04/04/2011 2644.0 \n", - "357 Ghaziabad,New Delhi Eng 05/08/2010 2975.0 \n", - "358 ÜT: 42.439627,-82.892816 Eng 12/09/2008 3490.0 \n", - "359 India Eng 02/02/2009 3435.0 \n", - "360 NA NA 03/03/2016 849.0 \n", - "361 Belfast, Northern Ireland Eng 08/04/2015 1061.0 \n", + "332 NA Eng 04/14/2011 2636.0 \n", + "333 Chicago Eng 11/19/2010 2782.0 \n", + "334 NA Eng 09/15/2011 2482.0 \n", + "335 NA Eng 10/05/2009 3192.0 \n", + "336 NA Eng 07/30/2012 2162.0 \n", + "337 NA Eng 04/14/2009 3365.0 \n", + "338 New York Eng 12/02/2008 3499.0 \n", + "339 NA Eng 12/25/2009 3110.0 \n", + "340 San Diego USA Eng 07/06/2009 3282.0 \n", + "341 NA Eng 07/11/2011 2547.0 \n", + "342 New York City Eng 01/28/2010 3076.0 \n", + "343 NA Eng 07/06/2011 2552.0 \n", + "344 New York City Eng 04/27/2009 3352.0 \n", + "345 NA Eng 10/12/2009 3184.0 \n", + "346 NA Eng 05/26/2010 2958.0 \n", + "347 NA Eng 09/06/2011 2491.0 \n", + "348 Phoenix Eng 02/13/2009 3426.0 \n", + "349 Washington, DC and Oakland, CA Eng 02/07/2011 2701.0 \n", + "350 NA Eng 10/04/2010 2828.0 \n", + "351 Buffalo, NY, USA Eng 11/18/2008 3512.0 \n", + "352 Chicago, IL Eng 09/09/2009 3217.0 \n", + "353 Philadelphia, PA Eng 04/04/2009 3376.0 \n", + "354 NA Eng 10/23/2009 3173.0 \n", + "355 NA Eng 10/28/2008 3533.0 \n", + "356 NA Eng 04/04/2011 2645.0 \n", + "357 Ghaziabad,New Delhi Eng 05/08/2010 2976.0 \n", + "358 ÜT: 42.439627,-82.892816 Eng 12/09/2008 3491.0 \n", + "359 India Eng 02/02/2009 3436.0 \n", + "360 NA NA 03/03/2016 850.0 \n", + "361 Belfast, Northern Ireland Eng 08/04/2015 1062.0 \n", "\n", " Tweets Followers Following Favorites Count \n", - "0 2.0 280.0 0.0 0.0 \n", - "1 5776.0 228697.0 502.0 2157.0 \n", - "2 1642.0 29137145.0 382.0 991.0 \n", - "3 0.0 544608.0 0.0 0.0 \n", - "4 1283.0 19325910.0 145.0 40.0 \n", - "5 15803.0 7692252.0 809.0 151.0 \n", - "6 21633.0 13038268.0 242.0 142.0 \n", - "7 6244.0 9649541.0 1359.0 1443.0 \n", - "8 5211.0 1551673.0 541.0 6069.0 \n", - "9 4017.0 935864.0 348.0 86.0 \n", - "10 9611.0 822449.0 201.0 622.0 \n", - "11 578.0 1005661.0 21.0 14.0 \n", - "12 7989.0 820794.0 800.0 6520.0 \n", - "13 19834.0 2400009.0 3531.0 5700.0 \n", - "14 7614.0 771065.0 503.0 386.0 \n", - "15 8474.0 1325730.0 117.0 3120.0 \n", + "0 2.0 281.0 0.0 0.0 \n", + "1 5776.0 228677.0 502.0 2157.0 \n", + "2 1642.0 29138571.0 382.0 991.0 \n", + "3 0.0 544648.0 0.0 0.0 \n", + "4 1284.0 19326236.0 145.0 40.0 \n", + "5 15804.0 7692110.0 809.0 151.0 \n", + "6 21646.0 13040768.0 242.0 142.0 \n", + "7 6244.0 9649414.0 1359.0 1442.0 \n", + "8 5211.0 1551664.0 541.0 6069.0 \n", + "9 4017.0 935914.0 348.0 86.0 \n", + "10 9611.0 822490.0 201.0 622.0 \n", + "11 578.0 1005690.0 21.0 14.0 \n", + "12 8016.0 820648.0 800.0 6613.0 \n", + "13 19837.0 2400075.0 3531.0 5716.0 \n", + "14 7614.0 771066.0 502.0 386.0 \n", + "15 8474.0 1325712.0 117.0 3119.0 \n", "16 4306.0 236873.0 697.0 3018.0 \n", - "17 5810.0 301897.0 427.0 5541.0 \n", - "18 18109.0 894903.0 828.0 3541.0 \n", - "19 4045.0 256598.0 524.0 11744.0 \n", - "20 29863.0 98699.0 7486.0 11407.0 \n", - "21 9347.0 584090.0 612.0 3618.0 \n", - "22 5712.0 228926.0 85.0 97.0 \n", - "23 1682.0 199284.0 330.0 759.0 \n", - "24 8770.0 458218.0 403.0 2393.0 \n", - "25 42828.0 182112.0 2000.0 1103.0 \n", - "26 1591.0 555787.0 235.0 99.0 \n", - "27 14827.0 262230.0 997.0 24281.0 \n", - "28 4513.0 151994.0 1201.0 10817.0 \n", - "29 1481.0 110133.0 454.0 613.0 \n", + "17 5811.0 301989.0 427.0 5544.0 \n", + "18 18110.0 894880.0 828.0 3543.0 \n", + "19 4045.0 256617.0 525.0 11755.0 \n", + "20 29863.0 98695.0 7489.0 11408.0 \n", + "21 9347.0 584133.0 611.0 3618.0 \n", + "22 5713.0 228889.0 85.0 97.0 \n", + "23 1682.0 199259.0 330.0 759.0 \n", + "24 8770.0 458202.0 403.0 2392.0 \n", + "25 42826.0 182106.0 2000.0 1103.0 \n", + "26 1592.0 555748.0 235.0 100.0 \n", + "27 14831.0 262251.0 997.0 24289.0 \n", + "28 4516.0 152046.0 1201.0 10845.0 \n", + "29 1481.0 110119.0 454.0 615.0 \n", ".. ... ... ... ... \n", - "332 140584.0 102035.0 811.0 211402.0 \n", - "333 4766.0 76954.0 454.0 1605.0 \n", - "334 35314.0 61226.0 950.0 33.0 \n", - "335 38933.0 16199.0 920.0 10623.0 \n", - "336 4215.0 20681.0 281.0 170.0 \n", - "337 38837.0 15092.0 2823.0 20129.0 \n", - "338 5582.0 109903.0 643.0 2318.0 \n", - "339 65098.0 20524.0 2426.0 7077.0 \n", - "340 17533.0 4149.0 2333.0 4066.0 \n", - "341 4965.0 2949.0 606.0 98.0 \n", - "342 21970.0 9072.0 3122.0 25111.0 \n", - "343 4291.0 11630.0 518.0 254.0 \n", - "344 13452.0 109851.0 1991.0 440.0 \n", - "345 3307.0 5806.0 801.0 921.0 \n", - "346 8126.0 592956.0 220.0 582.0 \n", - "347 18425.0 8758.0 329.0 7582.0 \n", - "348 14483.0 33162.0 300.0 269.0 \n", - "349 7896.0 186094.0 16312.0 3387.0 \n", - "350 3996.0 5948.0 6199.0 323.0 \n", - "351 24408.0 6612.0 4832.0 4150.0 \n", - "352 45358.0 14219.0 792.0 22348.0 \n", - "353 7978.0 1860.0 2582.0 182.0 \n", - "354 10333.0 2545.0 1996.0 2273.0 \n", - "355 4351.0 1456.0 430.0 1530.0 \n", - "356 79771.0 1457.0 572.0 24906.0 \n", - "357 26820.0 4802267.0 97.0 88077.0 \n", - "358 5525.0 2498.0 1027.0 2635.0 \n", - "359 118499.0 6817242.0 1567.0 27847.0 \n", + "332 140695.0 102156.0 811.0 211504.0 \n", + "333 4770.0 76961.0 456.0 1606.0 \n", + "334 35350.0 61224.0 952.0 33.0 \n", + "335 38985.0 16212.0 920.0 10640.0 \n", + "336 4215.0 20678.0 281.0 170.0 \n", + "337 38884.0 15117.0 2830.0 20177.0 \n", + "338 5582.0 109917.0 643.0 2318.0 \n", + "339 65206.0 20533.0 2425.0 7086.0 \n", + "340 17546.0 4156.0 2333.0 4081.0 \n", + "341 4965.0 2951.0 606.0 98.0 \n", + "342 21977.0 9073.0 3124.0 25124.0 \n", + "343 4291.0 11638.0 518.0 254.0 \n", + "344 13455.0 109895.0 1990.0 443.0 \n", + "345 3309.0 5809.0 801.0 921.0 \n", + "346 8130.0 593321.0 220.0 584.0 \n", + "347 18434.0 8760.0 329.0 7593.0 \n", + "348 14485.0 33220.0 300.0 269.0 \n", + "349 7898.0 186216.0 16311.0 3387.0 \n", + "350 3996.0 5950.0 6199.0 323.0 \n", + "351 24413.0 6613.0 4834.0 4153.0 \n", + "352 45396.0 14229.0 793.0 22375.0 \n", + "353 7980.0 1858.0 2582.0 182.0 \n", + "354 10334.0 2544.0 1997.0 2274.0 \n", + "355 4350.0 1456.0 430.0 1530.0 \n", + "356 79767.0 1455.0 572.0 24906.0 \n", + "357 26822.0 4804806.0 97.0 88113.0 \n", + "358 5527.0 2498.0 1027.0 2636.0 \n", + "359 118510.0 6817941.0 1573.0 27872.0 \n", "360 942.0 340.0 399.0 1118.0 \n", - "361 445.0 332.0 1170.0 1092.0 \n", + "361 445.0 333.0 1172.0 1092.0 \n", "\n", "[360 rows x 12 columns]" ] }, - "execution_count": 8, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -1310,7 +1437,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 15, "metadata": { "scrolled": false }, @@ -1355,58 +1482,58 @@ " \n", " Musicians\n", " 45\n", - " 450800.0\n", - " 908215092.0\n", - " 10245.454545\n", - " 2941.977273\n", + " 454984.0\n", + " 919193313.0\n", + " 10340.545455\n", + " 3016.795455\n", " \n", " \n", " Sports_celeb\n", " 118\n", - " 888695.0\n", - " 511197241.0\n", - " 7595.683761\n", - " 2794.581197\n", + " 896476.0\n", + " 511782316.0\n", + " 7597.254237\n", + " 2793.415254\n", " \n", " \n", " Politicians\n", " 73\n", - " 574648.0\n", - " 247419793.0\n", - " 7871.890411\n", - " 2819.027397\n", + " 574761.0\n", + " 247508231.0\n", + " 7873.438356\n", + " 2820.109589\n", " \n", " \n", " Comedians\n", " 44\n", - " 480982.0\n", - " 210125574.0\n", - " 10931.409091\n", - " 3081.772727\n", + " 481159.0\n", + " 210145964.0\n", + " 11189.744186\n", + " 3141.069767\n", " \n", " \n", " Actors\n", " 42\n", - " 387821.0\n", - " 103366645.0\n", - " 9233.833333\n", - " 2688.452381\n", + " 387903.0\n", + " 103370966.0\n", + " 9235.785714\n", + " 2689.571429\n", " \n", " \n", " Social_workers\n", " 14\n", - " 350805.0\n", - " 11876032.0\n", - " 25057.500000\n", - " 2872.142857\n", + " 350865.0\n", + " 11879459.0\n", + " 25061.785714\n", + " 2873.285714\n", " \n", " \n", " Economists\n", " 26\n", - " 579243.0\n", - " 2193422.0\n", - " 22278.576923\n", - " 2849.307692\n", + " 579718.0\n", + " 2194102.0\n", + " 22296.846154\n", + " 2850.538462\n", " \n", " \n", "\n", @@ -1415,16 +1542,16 @@ "text/plain": [ " Genre Tweets Followers Average Tweets Age Of Account\n", "Genre \n", - "Musicians 45 450800.0 908215092.0 10245.454545 2941.977273\n", - "Sports_celeb 118 888695.0 511197241.0 7595.683761 2794.581197\n", - "Politicians 73 574648.0 247419793.0 7871.890411 2819.027397\n", - "Comedians 44 480982.0 210125574.0 10931.409091 3081.772727\n", - "Actors 42 387821.0 103366645.0 9233.833333 2688.452381\n", - "Social_workers 14 350805.0 11876032.0 25057.500000 2872.142857\n", - "Economists 26 579243.0 2193422.0 22278.576923 2849.307692" + "Musicians 45 454984.0 919193313.0 10340.545455 3016.795455\n", + "Sports_celeb 118 896476.0 511782316.0 7597.254237 2793.415254\n", + "Politicians 73 574761.0 247508231.0 7873.438356 2820.109589\n", + "Comedians 44 481159.0 210145964.0 11189.744186 3141.069767\n", + "Actors 42 387903.0 103370966.0 9235.785714 2689.571429\n", + "Social_workers 14 350865.0 11879459.0 25061.785714 2873.285714\n", + "Economists 26 579718.0 2194102.0 22296.846154 2850.538462" ] }, - "execution_count": 9, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -1439,7 +1566,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -1482,58 +1609,58 @@ " \n", " Social_workers\n", " 14\n", - " 350805.0\n", - " 11876032.0\n", - " 25057.500000\n", - " 2872.142857\n", + " 350865.0\n", + " 11879459.0\n", + " 25061.785714\n", + " 2873.285714\n", " \n", " \n", " Economists\n", " 26\n", - " 579243.0\n", - " 2193422.0\n", - " 22278.576923\n", - " 2849.307692\n", + " 579718.0\n", + " 2194102.0\n", + " 22296.846154\n", + " 2850.538462\n", " \n", " \n", " Comedians\n", " 44\n", - " 480982.0\n", - " 210125574.0\n", - " 10931.409091\n", - " 3081.772727\n", + " 481159.0\n", + " 210145964.0\n", + " 11189.744186\n", + " 3141.069767\n", " \n", " \n", " Musicians\n", " 45\n", - " 450800.0\n", - " 908215092.0\n", - " 10245.454545\n", - " 2941.977273\n", + " 454984.0\n", + " 919193313.0\n", + " 10340.545455\n", + " 3016.795455\n", " \n", " \n", " Actors\n", " 42\n", - " 387821.0\n", - " 103366645.0\n", - " 9233.833333\n", - " 2688.452381\n", + " 387903.0\n", + " 103370966.0\n", + " 9235.785714\n", + " 2689.571429\n", " \n", " \n", " Politicians\n", " 73\n", - " 574648.0\n", - " 247419793.0\n", - " 7871.890411\n", - " 2819.027397\n", + " 574761.0\n", + " 247508231.0\n", + " 7873.438356\n", + " 2820.109589\n", " \n", " \n", " Sports_celeb\n", " 118\n", - " 888695.0\n", - " 511197241.0\n", - " 7595.683761\n", - " 2794.581197\n", + " 896476.0\n", + " 511782316.0\n", + " 7597.254237\n", + " 2793.415254\n", " \n", " \n", "\n", @@ -1542,16 +1669,16 @@ "text/plain": [ " Genre Tweets Followers Average Tweets Age Of Account\n", "Genre \n", - "Social_workers 14 350805.0 11876032.0 25057.500000 2872.142857\n", - "Economists 26 579243.0 2193422.0 22278.576923 2849.307692\n", - "Comedians 44 480982.0 210125574.0 10931.409091 3081.772727\n", - "Musicians 45 450800.0 908215092.0 10245.454545 2941.977273\n", - "Actors 42 387821.0 103366645.0 9233.833333 2688.452381\n", - "Politicians 73 574648.0 247419793.0 7871.890411 2819.027397\n", - "Sports_celeb 118 888695.0 511197241.0 7595.683761 2794.581197" + "Social_workers 14 350865.0 11879459.0 25061.785714 2873.285714\n", + "Economists 26 579718.0 2194102.0 22296.846154 2850.538462\n", + "Comedians 44 481159.0 210145964.0 11189.744186 3141.069767\n", + "Musicians 45 454984.0 919193313.0 10340.545455 3016.795455\n", + "Actors 42 387903.0 103370966.0 9235.785714 2689.571429\n", + "Politicians 73 574761.0 247508231.0 7873.438356 2820.109589\n", + "Sports_celeb 118 896476.0 511782316.0 7597.254237 2793.415254" ] }, - "execution_count": 10, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -1563,7 +1690,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 42, "metadata": {}, "outputs": [ { @@ -1612,12 +1739,12 @@ " NA\n", " Eng\n", " 04/14/2011\n", - " 2634.0\n", - " 140584.0\n", - " 102035.0\n", + " 2636.0\n", + " 140695.0\n", + " 102156.0\n", " 811.0\n", - " 211402.0\n", - " 140584.0\n", + " 211504.0\n", + " 140695.0\n", " \n", " \n", " 359\n", @@ -1628,12 +1755,12 @@ " India\n", " Eng\n", " 02/02/2009\n", - " 3435.0\n", - " 118499.0\n", - " 6817242.0\n", - " 1567.0\n", - " 27847.0\n", - " 118499.0\n", + " 3436.0\n", + " 118510.0\n", + " 6817941.0\n", + " 1573.0\n", + " 27872.0\n", + " 118510.0\n", " \n", " \n", " 356\n", @@ -1644,12 +1771,12 @@ " NA\n", " Eng\n", " 04/04/2011\n", - " 2644.0\n", - " 79771.0\n", - " 1457.0\n", + " 2645.0\n", + " 79767.0\n", + " 1455.0\n", " 572.0\n", " 24906.0\n", - " 79771.0\n", + " 79767.0\n", " \n", " \n", " 339\n", @@ -1660,12 +1787,12 @@ " NA\n", " Eng\n", " 12/25/2009\n", - " 3109.0\n", - " 65098.0\n", - " 20524.0\n", - " 2426.0\n", - " 7077.0\n", - " 65098.0\n", + " 3110.0\n", + " 65206.0\n", + " 20533.0\n", + " 2425.0\n", + " 7086.0\n", + " 65206.0\n", " \n", " \n", " 276\n", @@ -1676,174 +1803,218 @@ " Newark, NJ\n", " Eng\n", " 08/11/2008\n", - " 3610.0\n", + " 3611.0\n", " 61912.0\n", - " 4120931.0\n", - " 93056.0\n", + " 4121319.0\n", + " 93049.0\n", " 91.0\n", " 61912.0\n", " \n", + " \n", + "\n", + "" + ], + "text/plain": [ + " Twitter_Handle First_Name Last_Name Genre Loc Lang \\\n", + "332 @Noahpinion Noah Smith Economists NA Eng \n", + "359 @BDUTT Barkha Dutt Social_workers India Eng \n", + "356 @ProfessorChic Jamie Mitchell Social_workers NA Eng \n", + "339 @haroldpollack Harold Pollack Economists NA Eng \n", + "276 @CoryBooker Cory Booker Politicians Newark, NJ Eng \n", + "\n", + " Created On Age Of Account Tweets Followers Following \\\n", + "332 04/14/2011 2636.0 140695.0 102156.0 811.0 \n", + "359 02/02/2009 3436.0 118510.0 6817941.0 1573.0 \n", + "356 04/04/2011 2645.0 79767.0 1455.0 572.0 \n", + "339 12/25/2009 3110.0 65206.0 20533.0 2425.0 \n", + "276 08/11/2008 3611.0 61912.0 4121319.0 93049.0 \n", + "\n", + " Favorites Count Average Tweets \n", + "332 211504.0 140695.0 \n", + "359 27872.0 118510.0 \n", + "356 24906.0 79767.0 \n", + "339 7086.0 65206.0 \n", + "276 91.0 61912.0 " + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# People who are top ten Influencer who tweet more\n", + "## IB -getting 5 top gor plotting - top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(10)\n", + "top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(5)\n", + "top_ten_twitters" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
325@MarkThomaMarkThomaEconomistsNA91@katyperryKatyPerryMusiciansEng10/18/20083543.060094.044680.0417.05.060094.002/20/20093418.09219.0109566634.0216.06214.09219.0
82@ilizaIlizaShiesingerComediansHollywood, CA251@BarackObamaBarackObamaPoliticiansNAEng02/15/20093422.049164.0170274.0468.027096.049164.003/05/20074136.015517.0103437025.0621153.011.015517.0
125@IGGYAZALEAIggyAzalea86@taylorswift13TaylorSwiftMusiciansCalifornia, USANAEng06/09/20102943.047727.08084339.06510.04224.047727.012/06/20083494.0100.085533283.00.0458.0100.0
216@criscyborgCrisCyborgSports_celebcris.cyborg.llc@gmail.com95@ladygagaLadyGagaMusiciansNAEng11/29/20093135.046459.0191691.02131.012392.046459.003/26/20083749.08764.078883848.0127035.01916.08764.0
352@socworkpodcastJonathanSingerSocial_workersChicago, IL66@TheEllenShowEllenDeGeneresComediansCaliforniaEng09/09/20093216.045358.014219.0792.022348.045358.008/14/20083609.016961.078045464.035733.0954.016961.0
\n", "
" ], "text/plain": [ - " Twitter_Handle First_Name Last_Name Genre \\\n", - "332 @Noahpinion Noah Smith Economists \n", - "359 @BDUTT Barkha Dutt Social_workers \n", - "356 @ProfessorChic Jamie Mitchell Social_workers \n", - "339 @haroldpollack Harold Pollack Economists \n", - "276 @CoryBooker Cory Booker Politicians \n", - "325 @MarkThoma Mark Thoma Economists \n", - "82 @iliza Iliza Shiesinger Comedians \n", - "125 @IGGYAZALEA Iggy Azalea Musicians \n", - "216 @criscyborg Cris Cyborg Sports_celeb \n", - "352 @socworkpodcast Jonathan Singer Social_workers \n", + " Twitter_Handle First_Name Last_Name Genre Loc Lang \\\n", + "91 @katyperry Katy Perry Musicians Eng \n", + "251 @BarackObama Barack Obama Politicians NA Eng \n", + "86 @taylorswift13 Taylor Swift Musicians NA Eng \n", + "95 @ladygaga Lady Gaga Musicians NA Eng \n", + "66 @TheEllenShow Ellen DeGeneres Comedians California Eng \n", "\n", - " Loc Lang Created On Age Of Account Tweets \\\n", - "332 NA Eng 04/14/2011 2634.0 140584.0 \n", - "359 India Eng 02/02/2009 3435.0 118499.0 \n", - "356 NA Eng 04/04/2011 2644.0 79771.0 \n", - "339 NA Eng 12/25/2009 3109.0 65098.0 \n", - "276 Newark, NJ Eng 08/11/2008 3610.0 61912.0 \n", - "325 NA Eng 10/18/2008 3543.0 60094.0 \n", - "82 Hollywood, CA Eng 02/15/2009 3422.0 49164.0 \n", - "125 California, USA Eng 06/09/2010 2943.0 47727.0 \n", - "216 cris.cyborg.llc@gmail.com Eng 11/29/2009 3135.0 46459.0 \n", - "352 Chicago, IL Eng 09/09/2009 3216.0 45358.0 \n", + " Created On Age Of Account Tweets Followers Following \\\n", + "91 02/20/2009 3418.0 9219.0 109566634.0 216.0 \n", + "251 03/05/2007 4136.0 15517.0 103437025.0 621153.0 \n", + "86 12/06/2008 3494.0 100.0 85533283.0 0.0 \n", + "95 03/26/2008 3749.0 8764.0 78883848.0 127035.0 \n", + "66 08/14/2008 3609.0 16961.0 78045464.0 35733.0 \n", "\n", - " Followers Following Favorites Count Average Tweets \n", - "332 102035.0 811.0 211402.0 140584.0 \n", - "359 6817242.0 1567.0 27847.0 118499.0 \n", - "356 1457.0 572.0 24906.0 79771.0 \n", - "339 20524.0 2426.0 7077.0 65098.0 \n", - "276 4120931.0 93056.0 91.0 61912.0 \n", - "325 44680.0 417.0 5.0 60094.0 \n", - "82 170274.0 468.0 27096.0 49164.0 \n", - "125 8084339.0 6510.0 4224.0 47727.0 \n", - "216 191691.0 2131.0 12392.0 46459.0 \n", - "352 14219.0 792.0 22348.0 45358.0 " + " Favorites Count Average Tweets \n", + "91 6214.0 9219.0 \n", + "251 11.0 15517.0 \n", + "86 458.0 100.0 \n", + "95 1916.0 8764.0 \n", + "66 954.0 16961.0 " ] }, - "execution_count": 12, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], - "source": [ - "# People who are top ten Influencer who tweet more\n", - "top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(10)\n", - "top_ten_twitters" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], "source": [ "# Top ten Influencer who who have more Followers\n", - "top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(10)\n", + "## IB -getting 5 top gor plotting -top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(10)\n", + "top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head()\n", "top_ten_influencer" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "332 Noahpinion\n", - "Name: Twitter_Handle, dtype: object" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "# Still Working test cell\n", "# to find the handle of followers of the top most \n", @@ -1876,33 +2047,71 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-----------Start extraction of the tweets posted by the Influencers!!!-----------\n", + "Extracting tweets from @katyperry\n", + "Extracting tweets from @BarackObama\n", + "Extracting tweets from @taylorswift13\n", + "Extracting tweets from @ladygaga\n", + "Extracting tweets from @TheEllenShow\n", + "-----------End of Extraction of Tweets !!!-----------\n" + ] + }, + { + "data": { + "text/plain": [ + "[{'Influencer': '@katyperry', 'Overall Sentiment': 0.154629},\n", + " {'Influencer': '@BarackObama', 'Overall Sentiment': 0.26870099999999997},\n", + " {'Influencer': '@taylorswift13', 'Overall Sentiment': 0.22917500000000002},\n", + " {'Influencer': '@ladygaga', 'Overall Sentiment': 0.33339700000000005},\n", + " {'Influencer': '@TheEllenShow', 'Overall Sentiment': 0.393709}]" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ + "#IB Working Module -- Extract the first 100 tweets of the top ten Influencers\n", + "\n", "# # Extract the first 100 tweets of the Influencers\n", "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", "Influencers = []\n", - "Influencers = top_ten_twitters\n", - "# Influencers = influencer_data_read\n", - "# Influencers_th = Influencers.iloc[:,0]\n", - "# # Array to hold the sentiments\n", - "# Tweet_array = []\n", - "Sentiment_array = []\n", + "Influencers = top_ten_influencer[\"Twitter_Handle\"]\n", + "Influencers\n", + "\n", + "# IB Influencer's overall sentiments\n", + "Influencers_overall_results = []\n", "\n", - "# for user in Influencers[0]:\n", - "# for user in Influencers_th:\n", + "Sentiment_array_10infl = []\n", + "\n", + "# IB loop through each top ten influencer\n", "for user in Influencers:\n", + " \n", + " # IB Variables for holding compound sentiments\n", + " compound_list = []\n", + " \n", + " # IB Variable for max_id\n", + " oldest_tweet = None\n", + " \n", " # Set the tweet count to 100\n", - " tweet_count = 100\n", + " tweet_count = 0\n", " print(\"Extracting tweets from %s\"%user)\n", " \n", " # Extract tweets up to 5 pages\n", - " for x in range(1):\n", - " influencer_tweets = api.user_timeline(user,page = 1) \n", + " for x in range(5):\n", + " ### IB - it is working - print(f\"For page number: '{x}' \")\n", + " influencer_tweets = api.user_timeline(user,page = x, max_id = oldest_tweet ) \n", " \n", - "# # For each tweet in a bunch of public tweets\n", - "for tweet in influencer_tweets:\n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in influencer_tweets:\n", " \n", " #Calculate the compound, positive, negative and neutral values of each tweet\n", " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", @@ -1911,7 +2120,7 @@ " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", " \n", " # Save the Tweets in an array as a dictionery item \n", - " Sentiment_array.append({\"Influencers\" : user,\n", + " Sentiment_array_10infl.append({\"Influencers\" : user,\n", " \"Tweet Text\" : tweet[\"text\"],\n", " \"Compound\" : compound,\n", " \"Positive\" : pos,\n", @@ -1921,10 +2130,763 @@ " \"Tweets Ago\" : tweet_count\n", " })\n", " \n", + " # IB Collect compund sentiments for each Infuencer\n", + " compound_list.append(compound)\n", + " \n", " #Decrease count of tweet by 1 in the reverse order\n", - " tweet_count -= 1\n", + " tweet_count += 1\n", + " \n", + " # IB get Tweet ID, subtract 1,assign to oldest_tweet\n", + " oldest_tweet = tweet[\"id\"] - 1\n", + " \n", + " # IB List for dictionary of results for _overall_ sentiments for each user\n", + " Influencers_overall_results.append({\"Influencer\": user, \"Overall Sentiment\": np.mean(compound_list)})\n", "\n", - "print(\"-----------End of Extraction of Tweets !!!-----------\")\n" + "print(\"-----------End of Extraction of Tweets !!!-----------\")\n", + "Influencers_overall_results" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-----------Start extraction of the tweets posted by the Influencers!!!-----------\n", + "For Twitter: '@Noahpinion' \n", + "Extracting tweets from @Noahpinion\n", + "For Twitter: '@BDUTT' \n", + "Extracting tweets from @BDUTT\n", + "For Twitter: '@ProfessorChic' \n", + "Extracting tweets from @ProfessorChic\n", + "For Twitter: '@haroldpollack' \n", + "Extracting tweets from @haroldpollack\n", + "For Twitter: '@CoryBooker' \n", + "Extracting tweets from @CoryBooker\n", + "-----------End of Extraction of Tweets !!!-----------\n" + ] + }, + { + "data": { + "text/plain": [ + "[{'Twitter': '@Noahpinion', 'Overall Sentiment': -0.01330899999999999},\n", + " {'Twitter': '@BDUTT', 'Overall Sentiment': 0.06624000000000001},\n", + " {'Twitter': '@ProfessorChic', 'Overall Sentiment': 0.154258},\n", + " {'Twitter': '@haroldpollack', 'Overall Sentiment': 0.12028400000000002},\n", + " {'Twitter': '@CoryBooker', 'Overall Sentiment': 0.33946}]" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#IB Working Module -- Extract the first 100 tweets of the top Twitters\n", + "\n", + "# # Extract the first 100 tweets of the Influencers\n", + "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", + "Twitters = []\n", + "Twitters = top_ten_twitters[\"Twitter_Handle\"]\n", + "Twitters\n", + "\n", + "# IB Twitters's overall sentiments\n", + "Twitters_overall_results = []\n", + "\n", + "Sentiment_array_10tw = []\n", + "\n", + "# IB loop through each top ten twitter\n", + "for user in Twitters:\n", + " \n", + " print(f\"For Twitter: '{user}' \")\n", + " # IB Variables for holding compound sentiments\n", + " compound_list_10tw = []\n", + " \n", + " # IB Variable for max_id\n", + " oldest_tweet = None\n", + " \n", + " # Set the tweet count to 100\n", + " tweet_count = 0\n", + " print(\"Extracting tweets from %s\"%user)\n", + " \n", + " # Extract tweets up to 5 pages\n", + " for x in range(5):\n", + " ### IB - it is working - print(f\"For page number: '{x}' \")\n", + " twitters_tweets = api.user_timeline(user,page = x, max_id = oldest_tweet ) \n", + " \n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in twitters_tweets:\n", + " \n", + " #Calculate the compound, positive, negative and neutral values of each tweet\n", + " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", + " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", + " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", + " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", + " \n", + " # Save the Tweets in an array as a dictionery item \n", + " Sentiment_array_10tw.append({\"Twitter\" : user,\n", + " \"Tweet Text\" : tweet[\"text\"],\n", + " \"Compound\" : compound,\n", + " \"Positive\" : pos,\n", + " \"Negative\" : neg,\n", + " \"Neutral\" : neu,\n", + " \"Date\" : tweet[\"created_at\"],\n", + " \"Tweets Ago\" : tweet_count\n", + " })\n", + " \n", + " # IB Collect compund sentiments for each Infuencer\n", + " compound_list_10tw.append(compound)\n", + " \n", + " #Decrease count of tweet by 1 in the reverse order\n", + " tweet_count += 1\n", + " \n", + " # IB get Tweet ID, subtract 1,assign to oldest_tweet\n", + " oldest_tweet = tweet[\"id\"] - 1\n", + " \n", + " # IB List for dictionary of results for _overall_ sentiments for each user\n", + " Twitters_overall_results.append({\"Twitter\": user, \"Overall Sentiment\": np.mean(compound_list_10tw)})\n", + "\n", + "print(\"-----------End of Extraction of Tweets !!!-----------\")\n", + "Twitters_overall_results" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CompoundDateInfluencersNegativeNeutralPositiveTweet TextTweets Ago
00.8805Sat Jun 23 01:18:28 +0000 2018@katyperry0.0000.6380.362Was so proud to give the gift of #transcendent...0
10.0000Fri Jun 22 19:27:57 +0000 2018@katyperry0.0001.0000.000found my first skin tag today. I think I’m an ...1
20.1695Thu Jun 21 02:10:52 +0000 2018@katyperry0.0000.7500.250Never forget, everyone was once a child.2
30.0000Wed Jun 20 21:10:37 +0000 2018@katyperry0.0001.0000.000My Aussies 🐨 & Kiwis 🥝! For the FINALE of ...3
40.0000Fri Jun 15 19:50:07 +0000 2018@katyperry0.0001.0000.000I 👁 you, @RoarForJess, and I ❤ you, and I’m si...4
50.0000Sat Jun 09 23:51:56 +0000 2018@katyperry0.0001.0000.000Scandinavians have figured it out.5
60.0000Sat Jun 09 14:02:29 +0000 2018@katyperry0.0001.0000.000Oi oi @JackGarratt remember when we locked our...6
70.0000Sat Jun 09 04:08:27 +0000 2018@katyperry0.0001.0000.000WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr http...7
80.0000Wed Jun 06 17:11:41 +0000 2018@katyperry0.0001.0000.000IM SCREAMINGOSBEJRMF$&2@!K https://t.co/Sn...8
9-0.8821Tue Jun 05 03:08:49 +0000 2018@katyperry0.4450.4830.072CALIFORNIANS! What’s important to you? Is it g...9
\n", + "
" + ], + "text/plain": [ + " Compound Date Influencers Negative Neutral \\\n", + "0 0.8805 Sat Jun 23 01:18:28 +0000 2018 @katyperry 0.000 0.638 \n", + "1 0.0000 Fri Jun 22 19:27:57 +0000 2018 @katyperry 0.000 1.000 \n", + "2 0.1695 Thu Jun 21 02:10:52 +0000 2018 @katyperry 0.000 0.750 \n", + "3 0.0000 Wed Jun 20 21:10:37 +0000 2018 @katyperry 0.000 1.000 \n", + "4 0.0000 Fri Jun 15 19:50:07 +0000 2018 @katyperry 0.000 1.000 \n", + "5 0.0000 Sat Jun 09 23:51:56 +0000 2018 @katyperry 0.000 1.000 \n", + "6 0.0000 Sat Jun 09 14:02:29 +0000 2018 @katyperry 0.000 1.000 \n", + "7 0.0000 Sat Jun 09 04:08:27 +0000 2018 @katyperry 0.000 1.000 \n", + "8 0.0000 Wed Jun 06 17:11:41 +0000 2018 @katyperry 0.000 1.000 \n", + "9 -0.8821 Tue Jun 05 03:08:49 +0000 2018 @katyperry 0.445 0.483 \n", + "\n", + " Positive Tweet Text Tweets Ago \n", + "0 0.362 Was so proud to give the gift of #transcendent... 0 \n", + "1 0.000 found my first skin tag today. I think I’m an ... 1 \n", + "2 0.250 Never forget, everyone was once a child. 2 \n", + "3 0.000 My Aussies 🐨 & Kiwis 🥝! For the FINALE of ... 3 \n", + "4 0.000 I 👁 you, @RoarForJess, and I ❤ you, and I’m si... 4 \n", + "5 0.000 Scandinavians have figured it out. 5 \n", + "6 0.000 Oi oi @JackGarratt remember when we locked our... 6 \n", + "7 0.000 WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr http... 7 \n", + "8 0.000 IM SCREAMINGOSBEJRMF$&2@!K https://t.co/Sn... 8 \n", + "9 0.072 CALIFORNIANS! What’s important to you? Is it g... 9 " + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IB Prepare Results Dataframe for the scatter plot\n", + "Influencers_overall_results_df = pd.DataFrame.from_dict(Sentiment_array_10infl)\n", + "Influencers_overall_results_df.head(10) " + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAckAAAEYCAYAAAA3XQ37AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzsnXl8lMX9x9+z2dxZIIFAAiEJkTMYDrUevyIixKMa7eVRKjRQFFGURCvUqngh1gLVhEpVNIVUK56t2tRWDRSp9aRyBAIihiQEsiEhATbJ5tjs/P54nk2e3Tx75SBR9vN65ZV95pln5jvzzDPfme98DyGlJIAAAggggAAC6AxDXxMQQAABBBBAAP0VASYZQAABBBBAAG4QYJIBBBBAAAEE4AYBJhlAAAEEEEAAbhBgkgEEEEAAAQTgBgEmGUAAAQQQQABu0O+ZpBBiqxDi6b6mo79CCPGwEGJPD5ZXKoS4p6fKc1PHw0KIKiGEFELM6826+jOEEDOEEHuEEK1CiH8JIcarfXJ2X9MWQO9ACJEthPhrX9PxXYEQYo4QYltv1uGVSQohYoUQf1Qnz2Z1ctsshLisJwkRQswTQtTr3PoJ8JuerKur8JdhCyGmCiHahBD/7U26ehjfA/7YW4WrDOAhYBEQD7zqcn+eyig8/c3oRfoW6dXp5ZmuMrengU+BUcDsrtL8XYCmDz393dtHtOUIIT7qgXJMwHLgUZf0XwghDqjz624hxBWae4M89MdKnTo+FUJkqr+HCSFeF0JYhBB1QojnhRCRmrw/EEL8Q53T64UQXwohfuaG9kVCiH+rvx9T81rUZ98UQoxxyW8UQqxS7zcKId4TQpzlkudxlV6rEOKEm3qnCyG2CSFOCiFqhRD/FEJM0mR5GYgTQlyj3+vdhy87yTeB84EFwFggA/gnMLi3iNJCSlkrpbScjrp6AbegMJyzhRAT+poYXyClrJZSNvZiFaPV/29JKc1SSqvL/VdRmKfjrxB4zSXt416kD6DWpb74XqpnNLBZSlkhpazrpTr6BEKIYD8f+Rrn/v4dcNAl7Q89SWMfYC5wSEq505GgMsQNKPPEFOAfwDtCiFQ1y0k6j8U56r3XtIULIeKAc9UyAP4GJAMzgR8Bs4BnNY9cDHym3puMwnD+IoS4Wof2HwJvq7+nA0+i8IUrgSjgAyFEhCb/ChSesQC4CLAB7wkhQjV5jMArLjRp2zNUbcselMX7dKAJeN8xvqSUduDPwBK9MnoEUkq3f8AgQALpXvKFoAzqCqAB+AK4QnN/hlrOLJSX0ghsB85xua/9e1i9txV4WlNWKfAgsBGwAIeBG1VaXwHqUT64y11oTEXpcAtwDNgExGnubwQKgCzgCFCHMngjNPddaUz20CfhwAlgEpAHrHG5n6yW8VPgA7VPioHLNHmC1GcPAVa1XcsAgybPw8Ae9fd0oFXbLjV9JbBb/T0QeFHtgyagBMh26d97NNe3AgfUvNXAe4DRQ7vTUBibFYXZbAQGamh16kNP40p9pgDY6ObenSr9LSqNmZp7YWodt6o0W9V+vNFLfYuAGm90uTwzXq3rbJfrHwL/Vt/tHmCGy33t3890yrlSvY5yV5emz/+FMvargJeAWM39V4A3gKVAJXAceB4I1eQxAPeiMKZmoBz1G1TvJwGvo4zp48A7wCjN/SdQvumFaj/bUSbBWcDnKPPCCZSd8zgf+vQBYL9O+lfArZrrf6CM+Sj1Olate6LmG3oYKFPfww7gxy5lpqAwlJNAjfo7Ub2XrfOufqTeu1sdf81qv//NS5s+Ah50SXsPeN0lbTvwjIdyXgc+10lfCHyo/r5IpXWi5n4G0AbEeyj7fSDPJc2E8v2PcvPMcLWui9XrUOAUsFiTJxrlO+30/QE3Ayd00tPVcqM1aVPVtNGatEnqO491167u/HkbqEYUprIWCPOQ7y/q4J+uDrg71A6ZrN6foTbsc+BSlA/9PWAfIFCYbJb6IcWpf45Bv5XOTLIWuB0YA/xefYHvAr9AWZ3noTCBMPWZeHXw/w6YoHbq31V6DGqejSgfyfNqnstRPurfqPcHouxg/qShMchDn8wFdmnafwwI1txPVvtkP3CN2pZ8lAnI0fZgFNHM99T8N6g0LdCU8zAqk1Sv9wPLNNcGlIVElnr9B2AnyiowWaXtepf+vUf9fR7KCvAmlElyMnAXbpgkEIGywHgLZeK+BIV5vanej0L5IKSjD70OUDdMEkU82YzC1MaiTFhtqIsMOphkNR1SkEfUPGke6luEMumWq/32tqf86jPumORe4Cq17k2AWaUrSG2/DYWJx6npfjNJYCTKgm4FMA5lN/Iv4D+aZ15BGdvr1OevQvmu79LkeQpl7P0COAv4PiozQpkkDwHr1fc6AWX1fhCV0aIwyXoUpjUV5RsLVet5HGVemIDyXYzx4b27Y5LPAa+ov4PUdlUDV6pp16N8a0K9Xocy3mepNCxQx41jQo9GWdw/DUxU/15BWbAGo4zp9SiLe8d3H6qW14RyHJSotjnbQ3tC1Xqvckk/BdzikrYSde7QKWcoytx6s869d4G71d93A0d0aLDjskhwyfMpnRf0N6Ausn0c/+eo12Nc8v0XyNV53h2TjFX7Z5nmXfxBfTdGTb4gFN7xU2/jqit/3jMoO51adUB8AqwBLtDcP0vt+ESX594C/qj+nqF2mnZ3+X01LUG9ngfU69S/lc5McpPmOkotZ60mLVlNO0+9fhRFrKUtN1rNc756vRFlUtR2/vNAoTtavPTbh3QwG6HS/VMdGrWr4hFq2jQP5T7hQtPDODPJe4B9musfoHycg9Xrd4ANHsov1dD9E5RJyORjm29xza9596PV6+vwYQeped4dk/yfY3xp0l5x9A0dTPIPLnk+Al7wUN/FKBP5ZBQm/zbKRJ/s4Rl3TDLT5TtpH5Nqmg34mYdyfGGSq4B/uNATp+aZpOmXb3CWQLwIFKi/Y1AWBvPctO927RhT04LVfrlWMy6bgBhNHscO4wK9cr28d3dMcjZgVn9/DzgK5AK/U9PWoe7MUBiKDZdFDsq3/rL6+27gfy73Q9W2XK5e5wAfueT5pVq3282DS/5ktS+matIi1LRrXfIuAarclLNM7fcol/QoleYUzbj4Uuf5WuA2N2XfpJaR6pL+F+BRN88YUBZl2zRpV6ntGuCS96/Aqzpl6DJJ9d65KAtWGwqfKQZG6uQrAX7l7zjz5c/rmaSU8k11sF+Dchb5f8CnQoj71CznoDCBYvXwt15VwLkaZWLQYrfm91H1/1BvNOigvRwpZT2KGKVIc7/Kpexzgeku9B1W72lpLJZS2lxo9Js+IcRolEXAyyqNEmWg3eypLej0iXpgvl0IUa3SfRfKytUd8oEUIcT/qde/RDn/O65ePwPcIITYJYRYI4S4xENZH6CIqQ4JIf4ihMhUlQ/cYQLKilN7hvwxyuBO1X+kyxiPsjLV4iOdej7RuXZLi5TyP1LKF6WUu6SUH6IsEo+iMAp/0VPj3RPOBS5zGdsH1Xvasb1HKuc3WnoctJyNIjXa7KGO8S511AGRLnUcklLWOi6klEdRGPRWIcTfhaLZOaKL7XRgKzBMPeOfoV5vVX+jSQNloRMEfOJC+881dJ8LTHK5fxxFuuU6f2nxDsrOuVQIkS+E+LnLmZwrwtX/TTr3pMu10ElDCCFQ5pBN6rynxZXA11LKEg/leir7cpQd8wIpZbEm3YjC9N7WeUagbCTGohwXuMKndrmDEGIQypFXAYrk62KURfzfdM68rXT0cY/C6EsmKWUTyoT5AfCoEOIF4GEhxBqUlYREWdW1ujzqqpShve/orK6YobjWI72UbUARA+mZNlRpfuuV2xX6bkb5OMuVcQQoAwQhxEgp5WFN3vY6pZRSzW9Q896Isoq9B4XZnAIWAz92V7GUsloI8Q7wSyHEV8C1KAscx/1/CiGSUHaYs4B/CCFel1LO1ynLIoQ4B0WMfhmKlvHjQojvqROgKzx9BD5/HN4gOjpVr8weqwdASmkTQnyJIg73F90d7w6mJjRprpODAUVqcx+dYXZDi4MeBy0CzzCgiBszde7VaH43uN6UUs5Wx9AVKAuOx4UQV0sp/+2lTl1IKSuFEAdQjm1moLT9Q+BVVXtyAh1M0tG+S1GYuhbNmjz/QTnPc0W1BzpqhKLNfCnK2dkKYIX6bdTqPOLop2hNGY1CCAvKzl+LoTjPSw7MQBmHN+nc+xHOjMzsWq4QIgTl2KjKJf0KlF3enVLKv+jUWS+l/J/LMwYUBjkLuMRlPnCMuziUXa+2Xdt1aHeHBSg75vYFqqp9W4cyngo0eWPw8L66g67aSRajMNgwlINwgXK+dNDl74gfZbagMJbewJcoZw1lOjT6oznrlUZ15ZWJwlCmaP4mo+wsOjEjD5gGfCalfFpK+aWU8iCeV7cOPI9yjnArygdRqL0ppaxRd0vzUAZipovWmTavTUq5RUr5G5RzpkgUBQA9FAOTXXab/4cyzvb5QLdPUHfm+1H6R4tpKg1aXKhz7TMt6mSQhqLwcrrh+Oi12rVTXPI4xvYhnbGtZ1KlhyIUcdYsN/e/RNktVOnUoau6r4U6dn8rpXRoU871kS532IrCmKYBW1WmtA/FvKKGjjGwC2WhkaBDt2Oh+iWKVOKoTp6Tah7d715K2SKlfE9KuRTl20hU6dLrg2qU83o9SYerOd1l6Gtw34JyVvmFNlGz23vLpdzhGi1Z6FCE+VTz7A9QFJWypJR/0qlTq9XqeMaAoveRDlwqpSxzeWYvCnO8TPPMIBQdB3800yPoWCg64Lhu511CiMEoDPlLP8r2GR6ZpBBisBBii1AMNicJIUYJIa5HkYtvllKeklIeQBElbhRCXCeESBFCnCeEuEcI8RM/aCkFwoQQlwkhhngRXfiLdSgrqFeFEBeoNKYLIdZ7ER/q0Xi+ECJZpVGv/64GhgDPSyn3aP9QRE+/dPOcHg4A5wjFnmmMEGI5yjmZN3yAIjJ6COX8sX2gCSEeFUL8SC1vAsq5Y4mUstm1ECFEhhAiSyj2nkkoYioT7pnMX1B2E38WQqQJIaajKFr8VWXwPYnVwAIhxEK1LXejKG2scsn3MyHEfCHEWCHEQyhMO9ddoWr/XKaOkXNQFFTGoIiiTjeKUVblj6pt/AGKBqoWuShM9GUhxPdUui8XQuSpOwevUJnMH4HfC8Vm7ywhxIVCCMfuKh9l0ntLCHGxOg9cIoTIVceFLoQQ44QQK4UQFwkhkoQQ6ShMwnUh4y+2okhILFLKrzVpc1C0O6XaLjPK8cIfhRA3qe06RwixRAjhYNQvoChz/VUI8X21bZcKIZ4WQjgWJ6XAOCHE2ep3HyKEuEEIcZsQYrLaB/NQ5tP9Huh+j84Lu6eAn6g0jRdCPIayoHYyd1EZwU9QFsCumI5y5KTd7X2Kwig3qPPxdLXMl6WUlWqZV6Mw1t8CBUKIOPVPa953LRomqUpx8lGkUz8DrJrnIgDUuWQdyri9Wih2jS+hHHG9pSlrlBBiCoryWZAQYor65xCb/hNIFkKsVr/fyXQoN2qPWi5GUdbqFSbp7bA5FEUz7QuULW4jihnCkzgf0AejKJA41PHNKDL7c9X7M1BWMEM0zyTTWZHhGZSVoMSzCcg9LnTWo1E6oENpI0OTNgZFDb4ORQz8FcqgCZEdh/kFLuU+jLNSzFiUgdeIGxMQtd3vu+nPFPW5y/Xa7/i2gevU3yEoK7Y6FK3WPBTzl1J3NGrSH0RZdSW7pN+PstJrRDnEfxeYoNe/KB/0v1EGpRXFjGG+lzGThnK2ZVXp3ohqAqLe7xHFHfWeqwmI3hhYhLKTblLbNttLfetQFAWaUcbxu8D3vDzjTnHnbB16tGPSo+KOmnYJyk7PinLm+kOdPONRJp8T6nvdj8I8g9T7rwBvuND8BLBdcx2EshMrVfuzHI25Aopewosou1uH6dDzwCC98tS0ESpdR9X+LEXR3HSrFa55VldxR70Xr/bBS5q0H6lpi13yBgG/VsdHC4pk5Z9olONQdoAvo8w9TShnus+iKqABA9RxeFKt40co3/B/UL6hRhQN2hu8tOkCtYxwl/RMOkxvdqNq6rrkuUutZ5DOvbW4KLGp6XEoc169OjaeByI199+is3mLBHaq989Rn9Nq5Q9y84zE2ZTMiLJgPYYydt9HY7bhpf4pmjzXokgfTqHMQ++hmg5q8rwKPOHrnOLvn0NNOoDvGIQQz6AMyh71jPRtgRAiDOXjvEZKWeAtfwABnA4IIf6Foo3cY44RhBClwEIp5fs9VaZa7iMoZhw/78lyexJCiGSUHXSqlFLvHLfb8ElxJ4BvD4QQA1E09n6Bci4ZQAAB9B8sQVH26REIIQagaIBu7akyNfgGZ+WY/ohE4Je9xSCBM3snKYT4E4oSyjEpZSe/m6r8PRflULwRRZz3pXovE0UkBPCYlDL/9FDtGUKIrSjq0nlSyjv7mJw+Q2AnGUAAAfQEznQmOR1FXv9nN0zyKpRzr6tQzhNypZQXCCFiUFSZz0ORof8P5fz1O+V/M4AAAgjgTEe/D5XVm5BSbkM5eHeHH6IwUCml/BQYpGq8XQF8IBXn63Uo2qRX9j7FAQQQQAABnE4EziQ9YwQdnnlA8fE4wkN6J6hq9AsBwsLCzk1M9OQs59sHu92OwfDdWWsF2tO/8V1rD8CBAwdqpJSxfU1HAPoIMEnP0PNEIj2kd06Ucj2qjd24cePkV1991XPU9QNs3bqVGTNm9DUZPYZAe3oGhYWbycl5iZKSMlJSksjOnkN6ujtfBb7ju/Z+AIQQrsb4AfQjfLeWZD2PChRDVwcSUGy+3KUHEMAZj8LCzWRl5WE2LyE29n3M5iVkZeVRWOjONaz/5WdkzCc1dSYZGfN7rNyeqLMvaAugdxFgkp7xDvALoeBC4KRUvFW8B1wuhIgWQkSjGBa/15eEBtCB3pyovsuTYGFhIRk3ZJB6fioZN2RQWFjo/SEd5OS8RHj4UkymqRgMRkymqYSHLyUn56Vu02ixWHqVAevBV6bf24uDAPoGZzSTFEJsQvGgM04IUSGEWCCUqBuL1CzvongWOYjireJ2aHfjtQLFE9EXKGFkPCkAnXZsLixk/twMZk5PZf7cDDZ3ccLra/jLlHpzovouT4KFhYVkPZ6F+WwzsYtiMZ9tJuvxrC4xypKSMiIj05zSIiPTKCnpvlSxqup4rzFgd/CV6ffm4iCAvsMZzSSllLOllPFSymApZYKUMk9K+ayU8ln1vpRSLpZSniWlTJNSbtc8+ycp5Wj1b0PftaIzNhcWkvdMFktmm3l/YyxLZpvJeybrW8cou8KUenOi8qXsb+tOM2d9DuEzwjElmTAEGTAlmQifEU7O+hy/y0pJSaKhocgpraGhiJQUt25efUZzc0uvMWB38JXp9+biIIC+wxnNJL+reCk/h6ULwpl6tgmj0cDUs00sXRDOS/n+T3h9ia4wvN6cqFzLrquro6TEyAcfbCMjYz6rVq3uk51mT0gNSkpLiEyIdEqLTIikpLTEzRPukZ09B6t1NRbLDux2GxbLDqzW1WRnz/H4nC/i3tDQkF5hwJ4WNykpSVRWfsTuvbv5/H+fsXvvbiorP+pUZ28uDgLoOwSY5HcQZWUlpI13nvDSxkdSVub/hNeX6ArD682JSlt2XV0dX399lKamk0RFTcNsXsKKFQW0tEw/reK2npIapCSn0FDhHA6yoaKBlOQUv2lKT59Fbu4C4uLWUl19OXFxa8nNXeBRu9VXce+wYYO7xIA9wZvEYvr0CZQfWYbVWIQx3oDVWET5kWVMnz7BqRxfFgc9de4bwOlDgEl+B5GUlELRfucJr2h/A0lJ/k94fYmuMDx/djH+7sC0ZZeXVyBlHUL8kYSEX2AyTcVmW0Rt7SdOz/SWuK2wsJAb585j0aIb+cmlVSQNt3VLapC9MBvrViuWMgv2NjuWMgvWrVayF2Z3ib709FkUFGyguHgLBQUbvJp/+CruNZlMfjNgb/Amsdi2fRsjrztB+NAV2OpvJHzoCkZed4Jt27d1arMn2twtBFDCzwXQTxGwk/wOYk5mNqufyWLpAmUHWbS/gdV5Vhbc1rUJ73TDYWNXVFRMbe084uJuY/jwm2loKFIZ3gK3zyoTFeTkrNXY6HWeRB07sKULwkkbH0vRfjOrn8li9rwnfCq7qGgbUVHTSEhYQEyMUnZ4+Nk0NjoHd+iJXezmwkJeys+hrKyEpKQUJqRN5/1PdjBz3t0c/Pozpp4fQfmRCgBiYqK7JDVIT08nl1xy1udQUlDCgHAToyJMPP7oEv6Sn8KczGxmpevGE+4RlJSWEHulsz19ZEIkJQWd25GePqtHbC7b6y4pIzbWvcSipLSE4YviSZhpoK64lqbPK2jZ0cReSyWbCwud+sUTbdqFAKD8nwF8yLAea0wAPY4Ak/wOQvloc1mrmVgX3Na7k5wvKCws5Pn8lygtLSc5OZFbMueQ7kKTQ/QVHr6U5OQ0QkP/S2XlgzQ3P8ukSVN1GZ4rfJlEtee2gLoDg11VnoMJOMrOyJiP2bwEk2lq+70hQ2qprGzAYtlBZGRaO1OfPn0qGRnzu2RYr8fMlzzyOGOvXkly6lQGj0jhUIWZMckjqTQfISYmustSg/T0dNLT090uICC318ZQSnIK5gpzOwOBrot7/a47JQmzucjpXWoXNw7abA2tRHxxkF//0sCoEYKyYgN5fvSL60Kg/NMymr44gtHAwB5vVAA9hoC4tR+gNzQiZ6Wns+HFArZsK2bDiwX9gkE+sS6Pydct5o717zL5usU8sS6v05mMq+hrxIhLGDcuh0mTpvoktvMV7s5tW1qafXpeT6wbHPwcy5fPcRK3ZWZOJT9/R5eVefSUsBbd2MbeLfmsXriALz+p4P7HvmHXnlPUN1jZscfC6jwrczK7LjXoC8Wvnhb3+lW3FxG9g7b6D8u4c56BMUlgqJdcNm2UX/2iPfct/7SMgbvLWXmLgbMSDWdulIlvAQJMso/xXba90+L5/JeYOe9uklOnEmQ0kpw6lZnz7ub5fGellq5qp/qrEOHu3DYkJNSnMt2dPy1bttTpLG7btuJumaToMfOxo4wc3l/MN9uvoqn2jxTtu4NFy+qYfbeNtZviWHBb93Z8faH4lZ6eTu59ucTtiaP62Wri9sSRe19uJ0lD79Tt+SzRQRvH2kgMbyOkIYTRiWP8Fm1rFwJNXxxhyS+CGTvMQJAxOMAk+zEC4tY+hnbnBKj/l5KTs7ZHz136GqWl5WSMdWZ+I8em8XZpuVOaN9GXHhwKEeEzwom9MhZzhaIQkYv7Sdbdue3secN8LtMXsa638y5vUJi5uV0sDLDvaxttLSkk25KJCgmmvvUaSqqTGTj2z2x4sfuhM/XqPB2KXw5xb1/A27tMT0/n4u9fQkSkmUkTu9Yv2nPfIxVfMi5uEEPjR2IwfB1gkv0YgZ1kH+NMMUBOTk7k8AFnTdXDB4pITu6IirK5sBDa9lFdOYPDpRdz/Ph77aKv6dMnuN3VuWpG2hpaaW48wqKFP3artTorPZ0Ft+WydlMcl8+rbt+BmUwm3TK7alzfXZOUOZnZrM5TxKg2m50deyw8tbGZyPpfEtZmo6WxgbA2G6NDxlNZ0eE+2LEL3rt/r9+mBnp1dleE6w59aRLh7zFHT/RLeno6Ba8VMDR2OLUNcUQNiO5uMwLoZQR2kn2Mruycvo24JXMOSx9ehjWoFcuJ45gGDSa8LZjVD98PdCiorLgznBFDk/n3f/fx+7yfYDBOIzNzFvn/yne7q9MqRNQV1yrKFbcbSAxvIyLSvdLJrPT0Tmlbt24F/NO2BPdRL7Kz55CVtRpY6qTM40lD15XG/32ZyZy7/0C9pZYoUwwlJZGkhg4j0hjRnq/Ntp8g2lRaOnbBxlhju6mBp521a52nQ/GrKxIAvTK8KYPpP7eZm2/O5aQlE5stkcqqcvbsyeWFF3C7o+zJfrlp7hJWPrWS+++CMzju/bcCASbZx+juJOoLeitskb+oaz3EydH12Ew2Gi3VDNwX1X7PVdv0xh/HMHaMhbWbgtm2fZuu6nzO+hzS09NJSU7hqw8PULvLQHBVOSvvtjNqmCTCHs6kiYrW6tr8HL8mM3+0LbUaubGxaZjNRWRlrSY313eTFHcoLNxMfv5OwqPeYcgwZXwEBd3G0eZHETxIZNBoGtoOcsKWy3mTFFGxdhcsEJ36yxfoLSB6Gjnrc2gZ2Yr5r200HasjbGgwMZPtPtPpUAabOe9uMsamcfhAEU+sexLA6/MPPPAUx0/OIzbhMsIiImlqHEd1heSBB57y+G56ql+WLVsGwH2/XcuBb6wBiV4/RuDl9DG64p3EFZ6M4vuLYlDO+hyGXD2EKZemcd55U5lyaRpDrh7SLr70pCzizWXa9POmc/iNQViPLcdgGEZy/Ciaq40MMg1yKscf+KNt6c0Y3V/Dem9lDx/5BC1BDYQHLae69UbCg5aTOLSSZSsfA/x3Mbdq1SqGxk8kNDyJofETWbVqlc/0dQe7dxVx+L1oTpl/TZN4gVPmX3P4vWh27yry/jC+K4O5YnNhIWUlW4mOuB/ZMJuGU5tps31KzID1lB/6wGfXft0VFS9btoxdRRW02vjSrwcDOK0I7CT7AbpjHO3Npu10KgZ52rF6E19qlUXqauswmw+zc18jJ+pMDIgZReW2oxjKammtbSI4Jgx7Ugxjk8cBsG3bPhJHrOL4iRjsDKe0/AQTR5/FiRNmEhO7pnTialyfkpxC9n3ZujuU7irneIJe2fHx02hujmd0WizBJSUkpaQwJ7tD7OfPLnjVqlU8+MgbGAbeR1jiWOotB3jwkVygY7fTHRQWFip9WKr24cKOPrTUhNLKQkKi0zAYgrDb02ipW4il5nc+le2rMpgWju/lsSwbY0dHcaiiirX5t1DfCPfeEUnSMAODhni3C+0JUXEA3w4EdpLfcnizaTtdikHedqzefIM6lCI+/PgI5YcPcLzOyjtbDCycPZABlGL4bynLb7Lyyh+NLL/JyqCiw0w/b3p7G+PjpzFp4iTihj9C3htw6IgBS3337AYdShbFnxdT8FqBjuMDxTXcUfNRdu95m7q6jmhpveEvVlutSLahAAAgAElEQVR2WloqGwoK2FJczIYCZztY7S5YIj3ugtc8lY9hYBahA1MxGIzK/4FZrHkqv9u0e/PH2tLUhqFlLLSqD7SCoWUsLU1tPpXvizKYKxzfyzlpERhkOWOS4I6fnyBhWC1jRlYzaFC4T3ahPRk1JYD+jQCT/BbAkzjVm03b6YpM4E3k6E186dA2vWvlCW57SJL3Zjg3zx7NojkJ3Hp9E2MTQ0gbEY69ykbaiHBWLU1kX9G2Tm2Mjk6n0Z7L8rURZP6GHrEb1IPWOcKta54iJPIlvinbQm3tsR5xuu1AdvYcamoeoujLV9nx2X8p+vJVamoe8li21ubQVm3zaHN48kQ9waaxTmnBprGcPFHvE32bCwuZn5HBzNRU5mc4j01vjCQ4NJjBg20Y60OwHW3BWB/C4ME2gkODfar7lsw5bNn4JKXFO2iz2Sgt3sGWjU9yS6b7vnF8L0mJiYSE2TAYykhJsFDfYCUkzEZSosJgvYnoezJqSgD9GwFxaz+HN3GqN5u23lIMcvgTvWjaD8jPW0NRUQXJye53rL6IL2elpzMoegjvb5yA0dixfksc3oqlUTBp4qT2NJvNzqN/LNFto9E4mNCIkeTmPtxrCkra8zCAX64I4m9PP0PpgQe4+OKL/FLO8QSBZJTchU0Uc1zYGSwMGGUrAs8qkQ6bw61bt7J40WK3+QYOiqLecoDQgantaa2WAwwcFOX2GQc2FxaSl5XF0vBw0mJjKTKbWZ2VBbnK2PQmYp98ThK7dz9ATJQBImrAMIRTjXYmn+PbAs4xdp7PX8fbqnbrvYsXOI0pV7+3wSEmivY3MPVsxfSi0lzF/q8NDDIZOCs5iZgYJd2biF6rLNZ0rLVd6Whc8li3zwTw7USASfYDuH7IWmfS7nyMOrQ1vTkz7652pTt6HYz7pNHI90aaObCvjMrKFxgxYlF7Ptcdqy/G4npMv/xoMNEDhVM+7STWG230BtfzsLT/m0nq+dN5euFVFBT0XAzul3JyeDI2lqkpHf2xw2JhbY5/2rrucM9dmTz4SC7NZBFsGkur5QD2k7nc81CmT7QtDQ9nqmpbOtVkYim00+btbPTqy2fRdPwRFt8UQvIISekRM+v+0sLVlz/kM/2expTeAvOh3Bp+9VvJ738DaeMHUnbUyJtbQmlBUnbUyIABdp8CAkw/bzqFjxzDMFDpN+uxAxx+I5dbHpruM+0BfDsQYJJ9DG87RUU85Lwa14qCfLHd6opikK+Me+t+wdSzTay8J5b5y1ZgsVzQrR2rHtPP/3s09Y2SHXssbqOa+NNGT23zFY7zMMdOEryfh3UFZSUlpMW6vP/ISMpKekas51DOWfPU45wsr2fgoCjueSjTJ6Udb7RlL8xWQkHNUHaQlXsrqfx7JccMx8i4IQMsNfzu1yOIHWShqamJc88O43e/jiX/H9uA7isN6S0wH8mCB/9gZO2mIe3vP2upEvnFH/tHrbJYU6WV8LA0Bo9YxbZt+fSAvlMA/QhnPJMUQlwJ5AJBwAtSyidc7j8FXKpeRgBDpZSD1HttgOPAr1xKea2/9XvbKfriIqynbdq6wrinnR/P0NhSYuO6t5vTY/pdmcS62jYtPBmq35I5hyfWPcnMeXczUrXR27LxSe5d3HP2rQBJKSkUmc3tu7W6ujq2HDrEUbud+RkZTlqtXcWyZcu6pMnqShtAUUMDSSmOHX6HiL3o1SJqLbXEXRrH8EuGY64wU51XROro8QwdOqL9ea0Yvbtwt8A8dqyUIUFDoAYYoKR7+4ZcF1bK8cLzjBjRMYXa7TZKSh5tv+4v9skBdA9nNJMUQgQB64DLgArgCyHEO1LKYkceKeVdmvx3AlM1RVillFO6Q0NZWQkjhgaze+9urNYmjMYg7G1BbP1wHzfOnce5adNZnZfvU2xIT+r2/qCrjDs1NY0NL7oXNfo6abibsHpiIeCtbR20ejZU9+U8rCcwJzub1VlZLAUSWlvZsm8ff25r47aQIOL++x9y9+yBF17okygvWtrSIiMpamhgtdXKgmztDl/pq4wbMjCfbXZyCHEiPpx/f1rKjdfGtOfvSR+xeuP0v59X0lRdyxJh1j1H1YPewsrb8YI3BxMBfHtwpmu3ng8clFKWSClbgFeAH3rIPxvY1JMEREQO4L2PDtAS2YJhqKAhxMqebxoZljKRydct5v1PdjDlgsxOPkb1dj2e1O39gTeNWa0PS5A+mVn0F6cGvka48MVQPT09nVdf3Mhn/9nCLZlzyFmf0+M+SGelp7MgN5e1cXFcdOAAL9jbuHpICNOTIjhrkJ3rj1fx1AMPtOd31YS2WCw9Qoc32i6vrmZtXBwL3DAbPW3QiGkj+X1eU7sv1A8/PkL2I1+xY+dunw36PUHP1+qDayq5LSyOqSYTRoNBOUcND+elHPemG3pmVivviaW1aUV7eK0jRz7kq6+y2b17BxkZ87n//lXdiv4SQP/BGb2TBEYAhzXXFcAFehmFEEnAKGCLJjlMCLEdsAFPSCnf8peAmkbJujchazDEx7dQWhnMurckJ1ppn5j/98Y6XvUS3cFd1HN/XJE54E3EqxWJXjTNxicfxXkVf/aWUwN/RVq+RrhwVcwp+ngz/3o1h/3bt5FxQ43TLr23DcsdO+vRA0ysGBZEaLhiIhEUZmTMYMn+4r2A/o5nZ2U5mwsLe22n6auoX0+JJ2RAKIYBU1i7KZbi4iKarLXcNieOm382vEcCPbf7vV26hvpTJ4kaMJC2mnBuHj/cKZ+3M15vxwtFRcXU1jYRF3cbw4ffjNlcRFHRYsaOrUYjif5OBi44EyDkGexdVwhxPXCFlPJm9XoucL6U8k6dvL8GErT3hBDDpZRHhRApKMxzlpTyG5fnFgILAWJjY8997bXXnMrdu38vIkogG1tpa7Ehgo0QEYz9ZBshISZaW1qw21o566zE9ggVeti7fy/GWCOCDi1QicRWbWPi+Ike+8FisVBVdZzm5hZCQ0MwmcJprK8hLtZAeJgBa5Mdc7WdIUM701BfX09UlHdzgb17D2A0jkVolFSlBJvtABMnulebt1gsHK+poqWlmZCQUAYPGdZOg8Vioby8BoMhDoMhHLvdit1uJjFxiNu+slgs1Bwrd9s2R3tKDpUSETOUkLAIrPWnOF5zGCJB0kZIUDB2i53EeOWZgyUHaQ1vJSgkqL2etpY2gq3BjE4Z7bVvfEXRzh2MCIJwQ0cnWu2SI22QNmUqpYcOMmxwK+FhHXScskZTW3uS5FE9R0dXYLFYKK8sx2AyYAgxYG+xO/Whlva2NhutLa00NrVRVRNEQmJK+/t0N94sFgtV1VU0tzQTGhLKsFjFj61rnbZjTYwKCiYqJKT9WWtbG1XBwSSP1u8jvX61NrVRdTyY5FGjOXiwlNbWYQQFhbffb2w8ARwnIuIsAGy2NlpaTiGpwDQgnGGxHeP40ksv/Z+U8rzu9XAAvYUznUleBDwspbxCvf4NgJTytzp5dwCLpZQfuylrI1AgpXzDXX3jxo2TX331lVOa9qxmb/F+ooaOoHH7SU4WDCU+eS1SjuJE5b8ZHvcmubmKUojezsn1zAfAUmYhbk8cBa+534Vqz060WqmZmVPYV7TNqwbo1q1bmTFjhtvy29uZMR+zeQkm01Tq6mo5fLSCxoadmAb8jpdfdN5xORRmdu3cSWxEKSvuGsq08+M157HK7kJbZnubLTuIi1vr0QzDk3aroz3aM8nXn3uQY+PLaDQcJ2lEPNEx0U59m3p+KsE3BFNZfYympibCwsKIjx1K62utFH9erNSXk0NZSQmRAwbQIiWtFksnd3LecOH0C2D/brIijYwODeJgcxu5DTYYP4lPt33GzOmpvL8x1snGdOv+n/HoY7ls2VbsoeTeg7btEQMGUBMiOdVk6XRm7qDdcuokRw9+TaLBQCgGZmS1kDwgpV2MqzfetDv5yIRIGioasG61EtUWRdusNqdv4siWCmLfMvP0mHHO56g+n0lGdhqHqakziY19H4OhQzBXW1vN/v3TSEt7hdbWERwoeQ/C1zH6F42EDgjButXa7uBBCBFgkv0YZ7q49QtgjBBiFHAE+Bnwc9dMQohxQDTwiSYtGmiUUjYLIYYA3wf89gytVZOPjx1Kyc4SWv5pInrwY8AYTlQdJmnkpRiNKTzwwINYLCZdZQBXdXvHRJF9n2d3bO7EoNu2raWgwHsAX4vFQsYNGV6VhRwG/6dOLaTiWAhEHMIw6BkGprc6iSa1zKm2/kGyr29hkOk4p05FMPXsaCclG61f07q6Qpoacmhp+Ybjx455FDH6IiLUKubs376NqIkmkoYrDBKcjeIHRA1g764DxE5JYUh4JE3WBkp2ljAxaqyTwX1CcDAf7trFy8Ci0aOJ9UFpRIvHHlzJgnsWsNx6EvupVgymYFoHxpD34EpAX5RsbbL3erBkd+jkbKChgdUWKwty13Zqr4P2MPthEg0GTEFGdpTYiDEEc/hIMz/98SKmXXIxt976k071uDtqKH6umHMyz3HKG3/JcEo/bWZtXBxlqt/bBV4WKt7MrPTC3QUHVzB16liGDFnLh9v+Q+hwSPphFDETBysZZnTtKCSA048zWnFHSmkD7gDeA/YBr0kp9wohHhVCaM05ZgOvSOdt9wRguxBiF/BvlDNJv5frWhdira+1MvHIWIytRhrqoqivPqLsXKJjiIxMY+/er90qA2jLqX622qMrMi2649u1sLCQ8spyn5SFHNFOTlgWI0N+TvjQFYy+yUrCzBFOrsq0CjO1laVMmRRLdPxIKs1VgL7Lvbq6QiIMWTx0u5mX10TyxK8Eec9kdVvxw6GYM2vGpSSZEtoZJDgbxYcaBhCxfxAcl0g7cFwSsX8QoYYBTgb3NRUVXGE0stxoZNPRoz4pjbjSk7cmj/GTpxGWkMT4ydPIW5PX/o71FFXM1fZeCZbsC7Rt96Yk46B9Z3EjoRjYUWLjoY2tFFUl0Ni2AtryMZuXUF5e00nZy52LOCS6/oLTJk9y6/fWHWalp7PhxQK2bCtmw4suvnKz52C1rm5X4nG4JXzssWwKCjYwcnwIk389gpiJHeMn4MLu24MzfSeJlPJd4F2XtAddrh/Wee5jIM01vStw9RqiiBGNmEwT2tMcvkk9MTRfPNq4ojtBn3PW53D1j6/GFOqbslB6+iyGjJRMWJSEIahjfabdlWkVZgaPSGHfATNnT4iipqkJ0He519x4mF8vCWNMksBuL+eySxIYO8bodwxJd/C2S29qtjHvtqd5/811HHv3EENHjOL621awdcMayo5WtBvcNzU1ERkcTBpQprbHX8cAnt6x3o7nJzck9ol5CPjnCMFB+9I7fs4fGiyMC4vgWNUgYoOXIxhDeHgIJtMkDAazuijsUM5y59ln4viJWLZaYAa0nGqm8aPDtFZaiUs19qgykzePT/5EZQmg/+GM3kn2BQoLN5ORMZ/U1JlkZMzXNYFwtzJNTe15Z+Xu6vLFOXdJaQmGEOch5G2F7C0aiDayw3nXLuHJPzXxvx3VGINDO5maOHanUERi/DeEhFQwenQ8MTHRfseQdMQG3Lt/bycTDu0uvfT3pZT/uRzLUQs563MoLCwkOTmRgYNjWZrzNqtf383SnLcZODiW5ORExeC+QWlvWFgYDW1tFLW1kRQWBjgb3/cEXHc8npS9ehvatjvgqb2z0tNZ/fTLJA9IYcnAUZxsCwY5inK7nWEjEwAwGMI7STncOc9/7L7HyL0vF+PmIMI2H2DlHMkXb45nxZ22HpE0aOEpZqg/sUkD6H8IMMnTCLvd7pOtoLtAzCtXLusyQ3OH7gR9TklOwd5id0rztkL2NmFoIztMOP8S4s+/nXseO8nCB0N1bUTT02dx8bRpRAwYzaRJ4312UK2F1sbUGGvUFRunp6eTvTCbqGFRJP4ikVHLRrXnOzct1W00ijnZ2ay2WtlhsTAkIYH3bDZW2GzMHj6cHRYLq61W5mR/NydLbdttdrtP7dXaXh4zSEqDyogfM5roaMXhgN1u7bQo9HTUkJ6ezoTEWJ5bmcaN157D0KExPoXC6kl09SgkgP6BM1q79XQjOXmUHDLkr35rY2rRn1xdFRYW8lXJV2wwb3ASQ3qbALx5BvLkDk4P3rQPvUGrGTw7ajab6jfpagZ70iDOXpjtluae0m51B0/9pdUG7Yuxo227v+3V07yeP38n48Yl+kW3ntavzWbn8nnVfab1q0VAu7V/I8AkTyMSE5PkqFHfOKmK2+02qqsvp7h4i4cn+y/+/ve/89yLz3XbFV530R2n5annpxK7KBZDkKGdSdrb7FQ/W03x58W6+RzQy3c6odUGdvUh6wiVpZi06Jv6aKUG/WkB1tE+Z5puvfUnXHPNNX6VMX9uBktmO2v97thjYe2mODZ4cdJxOhBgkv0bZ7zizumEwWCgoaFrSjL+4nRNeCaTyaMdph56IgqHK7rj5N1VsaJ2bx1lb9fTVqkoUTn6rqcVMBw76qK9RbS2tjEgdAjDhg2juT6YU6ca298byE47xS+//JL8/DXU1R4nNHIgsR9PIjl1qsZ93jqnxYo3j0fufI1mZn7Jtm3FfcY4XaO7bN261e8yvIWTCyAATwgwydOI4GAjVqtvAZDdMRJfRJH92bmyP1E4The02qu2FBsHNoaB9VeMTbkCs/lIt21R9eA4B22d2srJBCuRDKHmvTqqdsdha51HSuJ0zOYj3HzzQ0SPsHD9slXtjtYXZd/MoOBi7rsrmPiRUF7WxB+efYS/A9fcvJSRY9N4u7TcqT6tTakDWs1oPSZ66tStrFixhHHjNva7ceQP9NzTZWbe49F5QE8v4pzKdhE/B9C/EVDcOY0wGAw+Kck4GMmS2Wbe3xjLktlm8p7JYtWqVTyxLo/J1y3mjvXvMvm6xTyxLq+TXaJ2wutvzpX1nEWfTiUKPWgVK5pr2ghpvYtxZ11NTMzQHrFF1YPDAP6E0ULMiEQGjhlKY3Mwzc3ziU24nMqq45hMUzlpycTaMsjJ0Xpb02Fuu1mSOimUkBAj4yYGcedtBj5/+ylAP66lw6ZUC60UQ89etqYmBpstsl+OI39QWFhI/r/yCb8xkeRHLiT8xkTy/5Wva8/r7tvrCU1Yh3OFJWYz78fGssRsJi8rC6DvVJAD8IrATvI0w5fgwO7COc379VpufOxv7YF+3YnWvO0a3OF0iGi9BZHuKzg0IdetW8+UST91Ojfuri2qHkpKS4i9MpamXU0MCVcM4dvq7UhbAmERke12oTZbIpbaE07P2poaGDVa0SUIDQmmqbmZs8aE0Fx/ksJNz/FO/uNEhhnJuCGDW+feCnTYlDqkGJWVH1FZdT/HLBVcOPNCqo6douzw60RGTmF43DCio2OwWvcQETHGqW5P48jXHZg3ZR5tOZGRA2hplbS2WFS7z1v97mt/nP/7GkqtK3gpJ4fprS2sbTFTVt1EvAgipcaGEfrWsW4AHhHYSfZDuAvndOpkHSPHOjO/kWPTKHURrXnbNejhdIWyUtyPudjO9WAMwe4iNDSkx21R9eCwFw0LC6PJqvRHUJQBo7GCpkYlva6uEFPYIowt29l47w/Z87HyLoxhkRw6qDg5NwYHExYawoG9Tdja2njzL/cT86NIkn+VjPlsM+WV5RQWFjqZ+pSWfp/K4/OJ+1E10bcMYu+IA7TF1BE+4GWCo2oorTjMkSNbMRqfJSbmIp/6wtcdmLvd1ObCQgoLN3PhhVfwm7t/yJXnfcoLjzaRedUuIg27ufeWIJbMNlNzrNypTId9qzZE2ebCQuZnZDAzNZX5GRkU7dqt65FHz57X11BqXcGOot18GHWUJbe38I/VsOiWevaMakIaNFEJAuh3CDDJfgh3jGTAwOh2Q3sH9ERrXXEQcLpEtHqu07zFojydGDZscI/bourBYS86yGai9kg5J78+RkRoK6GhG6iueJ+oiL2EcSuP3/UNr+QEkfXTQ+x8/S42b3qOoLCRPPOCoHh3M7ZWOwf22XnuT0YGxY5mzE2jGTFpBIYgA6YkEwaTod3ln8PgPe2CWMZlDSZh5ggqq48ROyWFmOuGM3DEMYaOfIGQ8EXUN97F8uUZhIRs86kvfBWju3NVt+r+B8jKyqOmqpG75o/nrJGjqDIfYdaFguW3G9n09lGmnm0iLtbQXqZeDNUF9ywg9+abnZhwgrmOyg+POtHhTuGqNxdxhvAmFv9cMjXFSJuthcmjDdxxk8AQ5P3ZAPoOASbZD+GOkdw0d4lbo3Ut/HUQsLmwkL2736G2+udUVmRQV6es1Hsj/t2s9HQW3JbrNYh0X8FkMun2nUA6BTPuCb+wufflMvbwWAa+F44sOMUQQzSTJkkmjtuItN3KXfNPcu2VyYw7K5nkmDpumnmY7a//lmdzfs8Ns1fy+FNRXPezJuX/jY9iCDN02jEZQgztOybHruuDf3/AoX8eonZvrRK1JDyS0OFRNLVYWLo+j9+//29Gjopm2bKlPo8jX3dgZSUlpEW65IuMZHtxFeHhS5H244xOiiIoKAowYAyykTY2iLIjivg5PMzQXqZWjOpYFARbT3LTyTonJrxyWDytBWafPN705iIuODIc00iwtNlos9uxAqaREhnYR/ZrBM4k+yE8RR04p7CQ5/PX8baq3eqwh4POZ0J3+WC47RCTPfErQdLwSA5VmPnDi1nU1eViNA7uFfOU7phrnA64nhv3lkau3vmmwyyk8kg9Y85SmElMTDQxMdGMG2sn763q9ueWLVvm9Oy27ds6majYW+ykJKc4h5NKjMRab+Xg5oMYx4TQlNgAxyVDR4wCnKUT3s7QHfQeOnyYN989wmXTRrn1elRYuJmvawRjD5WTGhFKdkIY6THRFDU00EYQkZFp1J9M4WCZmfEpJgyGCBoaT3KwvI2kEYobP21UE8e5rhZ2SysJNmfb72nx8QxtbiZ2TxwlBao973369rzeIn50B6mpaZyQB6gIOc7JRisY4GBDKAQ1tXW78AB6DQEm2U/hjpG4Uxzp6kTuEJMlDU/g4MHDjElK5M65YSxf+wihESN1zVPONPSmMocWWkYWdiyKfWYrNvvXjGYMMTHRXsV+eiYq9jg72QuznXZdibWJfF3+NfJ7Erm9jergEiL2D+L621a0SyfuXez9vWvpNSUm89SrB2mxfcUV08Zy5Fiwky1iu1nSoHWcqA/hkPUQWQef5s7hR9gWEsz4ieNpaCgiLDKbP7yYxZ1zYWTcYLZ8epI33rexaG5yp6gmenarBlMwFVZnJlnU0EBqWhobfLTndXx7jgXAnfctIWV99x1lzMnM5rlnsli6YBQp41t576MDrHsTbMG0drnQAHodAY87pxF6QZd7Cp68ityU6d5lmtZlV21tHRUVVVjqrWT+Bp59/k2v2q3egi7762Kut+BN89Jx/6JpP+CTj/7pdP90uTXTur2rK64l4ouDLP65ZEJcGMKQ4pOrPVeXf7fOvZVrrrmmk7eguto6yo+U05DfwNS0qYQaBtDUbNN3qedG03RfeTU2TVDjuuJa6j8sg2NtXPz9S5z60DXodtXhCuobdzLI9Ds2vpyLRLTb9tbWfoO1/nFgH2HhQQwblkBEmKFdu9XhcUcv2HL1X6uZfELwyJAhPgdVdtePeoGcu+tzVdufEZEDqGmUfPbR502yTYZ3udAAehWBneR3BO5MK4qLi9rdljmM0Z9Y9ySg7Eq1gXodYr0deyxcPC2u2+YfWpdpenWfLrjusj/6/ADL77+OxXclM3nKFM5NS2XnZ/ksXRDOSaOR74103oXrBTPuDY1crfgwOjWGOkbz6EsVNH1Tz8wZcT6J/VwlDQ4PNa67ruiYaIwWI3GXxrn1mKTtt4ShwXz4yS5e/jssumU0sYPN3Hp/ES2nxuIw84tOjWHguEFUP1vdyd2bs1mSoIVg2sQETljbkIj2cFMPPLCcw5W7YLAd47lBhEWHIfc18cKDL7S72dO2NZdcZVGgilGfWPMEAlir9ZUbFcXKJUt4yQ/fsf6YjfgDPQmREGJvlwsMoNcRUNz5jsCdVl5TS1t7EGOHMbpiW6lorfamooI2gLJe3acLWnHpqVMnGWQ6yb1Zwxk5Op7J1y1mw8ZcFl7fqjJB0Ukzs7f6aHNhoZMy0IBwk1MYsejUGEwzR5F20WWdAv36i66Ea9L2W01NBVdMM7ZrmiYNt3Hbz+wc+9c+9hbvp662DnCvNdoRILuOr78+SktLAkFBBoKCUttNjdLTZ0FEDWHXNTDyrnhGXXEu0WnJHB97igcef0CXxvT0dApeK6D482IKXisgXWVCGwoKuH/tWkwWC0+0tXUyN/EGd4Gcuxoo2dUspSfDdAXQuwgwyX6AwsJCbpw7jwsunsmNc+fpegLxBncTeTNDPNpW9qa2aWlpuU92nb0NreZlpbmK6PiRTJkUS21lGcmpUwkODSHadMrpGa1mZm/0kZ5d4dCwKqr/Wt0rcQe74i1I229NzU1ERgSRNjaIkvIGyo9Uct73kgk+FURwazSlh49yZPcRt/Q6zJIOHdqCEMOBg9jtvycpabGTqVHxV/sZkjaKsIgoEIKwiCiGpI1i31f7/W6zO3OTl3K8e3fyFvfUH3iyDQ2g/yMgbu1j9JRI0p1WXlv+S4q2YmqHU3VX28re0jZ1BFD2VPfpgFZc2tTUxODwSPbsq2ewqs05LHk8e776iMkafu4qTu3pPtJTBnokC5b/wQh7hnjVwuwK/PUWpO23sNAwGhpbOFgGsTGS6PiRfF0qSThrCk1fDeFISRP1bY38+Y8bdetwiFN//OPFSBlPaGgyCQkLiImZhd1uazc1MoggRB1OjtpEHbQ1tzF/bgYXTfsB+XlrfPKnWlZSQlqsyxFEZCRlJd53gz3pp1fLrAGFWaOIhPuzlncACgJMso+hFUmCe1dzvkBvIpfAE+ue1A2l1Nu4JXMOSx9ahrVlEJbaE5hiBhEecoLVj9zf64mn1+8AACAASURBVHVroY0CYQwO5X87qln3suC865cAkDg1g2df/YTU8RYwyvZdeG9GiXB3htzYUM2Wf37aa/X6A22/JQxN4L2PDvDy32HmRUYOHJI8taGJS+c9ydn/N4s2m42nF17lccymp8/ikksualfgcUDrxWfy+HPZX3gQLoPQ4VE0H62n7q9HSE2wceUF/yFq6CyuvOA/5K7eA7zgkckkpaRQZDa3MydQNF2TUrzvBtPT08n8MpP8p9ZQfeIkUYMGknnXPV1asHSHWQfQ9zjjxa1CiCuFEF8JIQ4KIe7VuT9PCFEthNip/t2suZcphPha/cvsSv29LZJMT0/n3sUL2PXGOp5eeBW73ljnZFvZuxDUHTFRVTKHUzWrqCqZQ90R5dzPX3RHJK0Vly58MJR7HjtJ/Pm3M+H8Sygt3kHZjo+45qf3sXZTHAcO2U6Lg4P+7p4PnPvtxrtbyX93Mg32Sax9KZhHnwtnyvUKgwTfJQTevEEtv3cZw0OTCPlvOKdeOEbIf8MZ0NTI7XPbOGuSHUOI4KxJdq7/QRVP/V7/nNKBOdnZrLZa2WGxYLPb2WGxsNpq9SnyxubCQnbm5/PSiES+Of9CXhqRyM78fK8iUj03eUkpKRQ1uLxrH5l1AH2PM9oERAgRBBwALgMqgC+A2VLKYk2eecB5Uso7XJ6NAbYD56Fs2P4HnCulrHNXn54JyI1z5zH5usVOIsnS4h3semMdr7640ad29JSZRVfK8WQColX7d8Bi2UFc3FoKCjb4RZenwML+wlM7vZm0+FK21gTDnW2ds8atNsZhzzBnTyYt3YW793H5RVPZtm2fVwf53hzpu76fz7e9yqYNQYRGBWOueYi4IY/QXN/KnJsFB0ss3vvBgzN1d5ifkcESl13oDouFtXFxbCgo6Chbc7wxIW26Em3ExWwk88pMdubnszQ8XNcsJRB0uX/jTBe3ng8clFKWAAghXgF+CPhi/HYF8IGUslZ99gPgSmCTPwTckjnHSRy69fU8Pn7lcQaEG5k/N8Pr5NZTZ5q9Ya7R1WgkruhJkTT0XCQPV2ht62KvjMVcYSbr8Sxy6awg05ueXbQMWM+kpbtwtEXr+enyi6aSn7/Tpxim3rz4uL6fUaPe5FAFjB/fkedQhaDNh/V9V8+SvYlI9Zx33PHwClpT4xiaNBToMBvZtn0bd+XmtpulJKWksMBHZh1A3+NM30leB1wppbxZvZ4LXKDdNao7yd8C1Si7zruklIeFEPcAYVLKx9R8ywGrlHKNSx0LgYUAsbGx57722mud6LBYLFTXHMdqbcRoaGHEMCNhoQYsDa1U1dgxBEURHx+HSbOqdaDkUCkRMUMJCYtoT2tpaqSx9hgpo5J97ouullNfX09UVJTuvYMHS2ltHUZQUIeddFubleDgKkaP9p22/V8dYGjSGBAaMa2UHCv7mvHjxvpcji/w1B5vOFhykNbwVoJCOjxWt7W0EWwNZnTK6YuGVHroIMMGtxIeFkR9UwxRYbVYm9qoOh5M8qjeoaMn3rXFYuF4VRUtzc2EhIYyeNgwTCYT+7/aDzQyNFZgDBqBre0Ix6olEMH4ceP1y6mpoqWlmZCQUAYPGab77XhC6cGDDGttJTyo411a29qoCg4mefRopz524HhdPeaTQQQP7ugDicRWbWPi+Ilu67r00ksDO8l+jDN9J6l3OOa6avg7sElK2SyEWATkAzN9fBYp5XpgPSjiVk+iPIfXnKThNsqPVDLmrJEcMEgefS6c0MiRuuLFXy+fyR3r38Vu7HiVbTYbzy28is/+s8VtXa6iok92VnD/a5/6XY4n8aTNtrndi0pkZBoNDUVYrevJzV3gl0jzmbyNTI6b2lkk/dHHLLp1oc/l+ILuiFtvX3a74tWmRfVqU1yL9TOHM4DLelTk6QkzH7y93UPQ1v2zmTF+U694CNLi9ttnEhv7vlMcTrvdRnX15RQXO48fPXG3ADbde6+uSHL0WaNZcM8CgsNOkv2Lh8j58yO0Ng0kb01ep3e1ubCQTRvv7bYYe7PNRl5WlhM961V6ZsyY4dTHDny5exe/etjKqHsvbE+zlFmI2xPH4kWLO9ehioKN4J6DBtDnONMVdyqAkZrrBMAppo6U8riUslm9fB4419dn/YXDLs1hyxcWEUXquCgaT9W6NcJ3mFlo4U2JQs9GLzailK2v5/lVjl65WuN4gfQrGok73JI5x6foJ/5CT8miO9Da1jncyj04x8rfnons0Qj33tAXSkG+xjB1iPUnX7eYO9a/S9SY73HnnExuveYamo4coba1tZNNY3p6Onlr8hifOA1hCGF84jTy1uTpisx9DdnlDbPS01mQm8vauDgur65mbVyck2s7vT4+VT8EYTP6ZOeqtZ08C2x+ERfAacWZziS/AMYIIUYJIUKAnwHvaDMIIeI1l9cC+9Tf7wGXCyGihRDRwOVqWpfh+PCampoIVaPV7zug2PO503jtCgPRm0hW3DWUj195vMuMyF3QXYGkoGADxcVbKCjY0CVXd72hoasXizDr8SwsFs+KIJ6g9Wpj/ayCxT+XjBkqSE5I7PJk3RVoHUuAPC0xO32NYao9X973+YdUvvhH1kQNZGNLC/e3tZF38CCba2sB5zNAh2edieMntnvW0UNPBk12eO7ZUlzMhgJnj0d6zjvWvx7Mbbcs98lhg9Z2UuhIoALoPzijxa1SSpsQ4g4U5hYE/ElKuVcI8SiwXUr5DrBECHEtymqvFpinPlsrhFiBwmgBHnUo8XjCqlWryHlhLXUn6ogeFE32zUvaQx457NJ+cmkQg4bXc6gCnvxTE+ddv8Ttrk5PicIbA9Gz0Zt2fjwDwkvZ9Ybv5WjR1UgZ3hyPa9vZk8o27nxzVlVX+VyGnuZk7n2KL9Hqb4qYEBdJckJie+ionopw7w1apaCLptl45y0j9a0juO+Rx0nOf6lXnMw7nAXk5KylpKSMAQMiSIiq4fEld/IXjVZpaWk5GarJ0/aNa1kWFsbZEVGUln3NWGCpwcDaigpmxcR0yUzidPnZ9aR4tYxlXp/XUwwKoH/ijGaSAFLKd4F3XdIe1Pz+DfAbN8/+CfiTr3XZbDYefX4lA68ZQfKoFE4dquHR51cCsGzZ/7N35nFRlfsffz9nBmYGGJFNkB0UUBSXXNvdWq/d9tXMtLJulNqiP2/7Tet6Mwst7GalmWnbrexm3epiesvKtDTCDRQEBBllE4ZttvP8/oChQQHZheL9es2LOTPnPOc5zwznO8/3+X4/3wX1/3gvLnuM/1u2n+CYBM69aRFefX2bFQBoj5KKk7QDlcTHJ7CmhWknJ9NUcnxzRqGz6jS2hMZqEXqGemKxWpo4oiFOd9l8g4GEgADSTCaWzp3LHcuXs+n9TbXuZsWEr2/n3qybwhnV+emnn1Kjj+Lie35L1+gskXln1GpTY8Py5Q1UmIqPZDHYrx+Wqkp0XkZyrRYihSC7pqY+p/GOFuQ0uuIqgNBwTbLl7ZwuRcVJe1SYGhM66KV78kd3t3YpNpsN7ytC8I7ph9AqeMf0w/uKEJJeX1G/z+QpU9j0n+28+tqHBAcOZMua5ztcAKAzBLvbsg7WUetHbaEpbU6du65Fx59OF7QzheNbQ2FRcZeLzDc3Nq7LA76hkfxSXEip6QgREeEEx8TwtUZDgaKcsgZ4OlJSNjN16kzun/MsWfmhPP6StlU6u8716fC4CK6+9gkyMmYQEPAVJtOcegH2lnDyunxTa9CuQgeyLeoavXQZf/iZZFcikfSJ8m/wWp8of7JPnJo32Fm5fNA5OXpt+QXfltlnR9GUNmfgA4EtOv50eXSdmQfZGqxWa6OKTp90osh8c2PjujxwpKiAJUVHWdSvH0O9vUmrrOTD0FCSW1378bco6oCA2ijqw7lLWxwk5prfWpmux+F5L/mFHnh4lOPjMxKYT1LSitO21RrPyOQpU6AudzKz9z7cren9cLoQgaD8cBHeMf3qXys/XIRPX58u70tHC3ZPnjKFn3fN4Nb5z1NRXoZXH29mzHi4eW3NLlo/aoyTaxH28eqDvxJC/tECbpx++2nX7VqiC9pZwvGtwd3dvctE5p1qQ4ePHuGp3GwO+2spkA4i3PWME75ExMYBDX8Abk5JYW1SEk+3Isn+5LXg/UVgMCyqV3aq/dsywwYN16drCktx7xOLQyc4cjQPHx/fFgtgtHZd3vn9eLO3nmS3ptfd2oW4ublR9mk+ZQePI+0qZQePU/ZpPvPunHOmu9ZuUlJSaiW5bgzH+8ZYLEYrycmPM/Wy8U27nGbM48nlRbz371189+OPvPfvXTy5vKjLXJLOiMkVz67AyzuKS+5/hn4RMQy/LpElyW80mxLSHl3QriTA369T0mdOxjVaWFzkR0pEDbffWcGmpXDH3dVsMBwh/oILTjmuuQjSxjCbzaeUndq/Ow2bLaTBfq1RdnKtHanv54bDcgiNTkNNTTXQeCpLY3RkZG0v3YdeI9mFaLVanrjrUeSmcrIX/YzcVM4Tdz1aH93ak3H+GrdX2vDalcWiRAfvrXFj+p/2N5kfKIHUY5JH3xZMXyR49G1B6jHZ5fHwDWTvhGh03e5kgXUJzebRtYaWrmO1BaPR2CUC966zMfciM/fN1WGMU/jVasFvkIFFfw1nX9o37T5P8bFjp6x3DjO4kZ+9pcF+LTFsznG3Fh0hf1UqpftKCL1Yj2p9CWv5PnQ6tyZTWRqjJ4jW99J6et2tXcyCBQt+F0bxZJzRosfW7eH/ZikMitOClEQG25h/h6FRl1PSqiQCrgnA6HITMeeYSVqV1EVVSmpxTUtw4rpu15Su7cLEO+rFrttKV0T4dub6thPXaGFbSQ1xQ3VoNTqs+TYGDxtGjF3lbyvbP6OyWiwkeDacrT0W5sE1Gcswm2NdlJ2WMm9e0+XgXMf9H3Oj+XJbBskfZlA1biDBU4owbXoMo1c/goLimTevZWubHRFZ20v3o3cm2QN47rnnCI4NxdDPk+DYUJ577rl2lY7qDJzRoraSGgYOqNWzdFgcGAz6Jl1Orm4ugNKSUnLMeWzeuqVLr+l0qkWuM82OjhBtbYRvZ84624NrtLCbr55DmY76zx/aPqM6WRVJ0WhOKTvVT+fOeSOUVik7uY57v36+/GlCHA/c6I75w2ziqmP5+L3XyMn5scUCGCkpKby4Konv9pq5dX4u516f3SUl13rpfHpnkt2c55577pTcyqdeXUSwIZpZz7zeYRU72oszWlQY3Dh0yEFMJKgnVELDw5q8QUZHRmPKM2GMMNYayPwCPFQ/Bo0eWbcu2DXX5FqJZZBO1q/bOfNSTzfTbA+tifA9k3mlp8M1Wth9VDDLVx0i8Vq45LzoNhexbqyqSrVq48miIv4GDTReF7TS1X3yuPv6+nDt5d68+n4hm95vnXfAtZ+Rl0ZRmVdJxdZqprVRq/fnn3/up9VqXweG0juR6WxUYI/dbr9z1KhRxxvboddIdnOSXl9Rn1sJ4B3TD8slNRR+dqzDSke1tAZiczijRR9b9CgvvvgLD92hZ+L4aHKOapu8QbreWPPNJjxUP8QOwaV3zWv3NbW277t27SIpcTYPP3QHLy97g3lzbq4/r2sCvJOOihBtTYRvW1WNTkdLVY+aS7JvEC2cnQWGYbz3pWDNR+VERIS1Kf2lMVUkrbuW4+GBrOgT0K6yU82Ne2vrqjal3tTWZQOtVvt6UFDQ4ICAgFJFUXol6zoRVVVFYWFhvMlkep1a2dFT6DWS3ZzSE6VERjW8YerD+mKuaiif1taZTWtqIJ4O59qX86b76vtZzd4gXW+se7fuZ9DokVx61zwS6qrdd3Y+n5OUlM2sXfsLwUGr8fQoIzhoNWvXLuWsszYzZcrkU2p+uhZ9bi+tWcfqjLzSls5OT85FbKxeZEevfTamiqS4K5TXmFnzzY/tarupcR8x7oJW11VtSr0pa1ObP5ehvQaya1AURQYEBJSZTKahTe3TayS7OT59fU7Jraw5cgK9R0M5q7bObDr6VzC0Lj/QeWO9cfrtDL8usUvy+U4mKeltDIb5GI0jEWLrKXl2bdHHbSmtER3ojLzSls5OXccIWp+L2BZc3fFOVKtKdGT7o0WbGvdVbSjw3Vg/K/Mq29NPpddAdh11Y92kW7vXSHZz5t05p1bf9YpadZ7yw0VUfVlIXxHAK4kTqCovRqIhM7eAvj5eTL1haqvcpZ3wK7hNdOZsDRqvYegco6ysHAICGq45npxn19kKSC35UdEZ0ZMtnZ2ePEalpSWYciX7075m5tSp9QLmHUljqkhqkNpo6am24DruToGCHV9vIefXfdgAKs34hUVz1vTERivwNNfP6q3VzHuk/f00mUyaCRMmxAEUFRW5KYoifX197QC//PLLfr1e3yZjOmfOnOB3333X39nWM888k3fttdeWu+6zZ88e3XXXXTfgwIEDzRYhXbVqlc+SJUuCg4KCbAsWLCh4+eWX+6WkpGS2pV/dkV4j2c1xposkvb6C7BM5+PT14dbJN2HK+S+3XXGA/gHV7M+p4dVPNFjODsbUp3Xu0k74FdwmOnO21lQKh/O80dERmExp9bMkaHkCeVfSGVJ3LZ2duo5RaWkJBQcP4S8PMspLzxwXAfOONJQnqyJFR0YTPjK8w3+suAqy3+vuTub+VDYoCtMiB+JXZOIfT92HIXZgq/o575HWr+s3RlBQkMNppB588MFgLy8vx9NPP93yUjXNcN9995meeOKJRoNVWsObb74ZsHLlypxLL720YuPGjd1Osd1ut6PVtt3U9UZO9QAWLFjA0Yw8qo9XcjQjD1t1AX+b6891f07A2EfPiPEePHiPDuvPRzFGGDFMMJC0qmUi4a41EE9XKLa9tCR9odJShKkkky0/fM6s+2Z1SDHk06VwuNZClJJWJZB3NZOnTGHNuk18/c0+1qw7vULN6WipELvrGJlys/GXB0Ek80Co4RRx947EqYq0b8c+Nr2/CWMnVM1wFWTXqQ4mSpVHhOAT01FiENxhPoFXRXmzbZzcz66IMn/ssccCY2JihsTExAx55pln+kHt7G/gwIFDrrrqqqjY2Nj4yy+/PLqioqLdAuovvPCC/6WXXhp93nnnxURERAxNTEwMAZg3b17wL7/84nnPPfdE3nvvvQ1kj+bMmRP89NNP168TRUVFDcnMzHQDeOmll/wSEhIGDxo0KP7WW28Ndzgc2Gw2jEbjiHvvvTckLi4ufsSIEYPy8/O1ALm5udrJkycPiI2NjY+Li4v/+uuvPU/Xzpw5c4ITEhIGb9261fPuu+8OHTBgwJDY2Nj4v/zlLw3lmU5Dr5HsgbjKX1VX16DRaRg4QIO1pAaoc5dmt8xdOmXKFJY/srxFhWLbQ1NFmZ2G0hlAlBGWQeGUQiqmVFDsUUy6IZ25z85tl6HMzs5tVOTb6UKrrYV4B0FBK7DbM1qUZ/d7YfKUKdzxl+WseCeo2aoZrmNkrryaSMPTLB9YxRRnrUwXcfeeRk5WVr1AgcPhwEenY7DdTrb5BBWF+UwKD6OqvHkj2dVs2bLF44MPPvDbtWvX/h07dux/4403An788UcDQGZmpv7+++8/npGRsU+n06kvvPBCo4UrX3311cDY2Nj4G2+8MaK4uFhzunPu37/f49NPP83cu3fv3g8//NAvOzvbLSkp6ejgwYOrNmzYkLly5cr8lvR9586d+k8++aTvrl279h84cGCfw+EQr732mi9ARUWFZsKECeb09PR9o0ePrkhOTvYHuOuuuyImT55cnpGRsW/Pnj37RowYUX26dkaNGlWVlpa2Py4uzrJ582bvgwcP7s3IyNi3aNEiU0vHGXqIkRRCvCuEuEQI0VtShobyVwaDHofFwaFMB+6+tYnbrXWXdsWv4NMlzTsDiIo1xWh8NeiidCjnKZQcLGnVzLgxTicWALVGYNOmNQwZEtviBPLfCy2dnTrH6IaLElgcZaw3kHCquHtPIiI6ul6gQK/XYxGCLL2OuL59GTJ4EPlubt3u2rZu3Wq84oorSo1Go+rj46NedtllJ7Zs2eIFEBISYp08eXIlwPTp00u+//57r5OPnz9//vGcnJy0/fv37/P19bXfd999oac753nnnVfu4+Ojenl5yejo6OrMzEz3tvT9P//5T59ff/3VMyEhIX7QoEHxP/zwgzEzM1MHoNfr1RtuuKEcYNSoUVXZ2dnuAD/++KPxoYceKoJaDWxfX1+1uXbc3Nzk9OnTTwD069fPoSiKvPnmmyPeeuutvkajUW1Nf3uEkQTeBGYBGUKIxUKIphcIfoc4a+XFx09i6tSZDE64oN5FFhQQyv5ddpavsuM+KrhT3aXt4XTiz071nZqa2pkxgCZIQ01xTatmxo3hWsOwM0W+ezptqYXYncXdm+JkFZ/BF1xQfz3+oaF8abezyG7n5uDgbnttUjYdryOEkCdtn7JPWFiYXavVotFoSExMLNq9e7fnKTudhE6nq29Xo9Fgt9ubnbRotVpUVa3fx2q1Ks6+33zzzUUHDhzYd+DAgX3Z2dl7li5dWlB3jOs5pMPhqD/+5Ijf5trR6XSqoij1/U5NTd1/1VVXnfjwww99Jk2a1Cr70SOMpJTyCynljcBYwARsEUJ8I4SYLoT4XQcfOfPTTKY59UVg1679hRHjZrDinSBuetDGe18OB2UY9m8cneYubS+nE392yprp9bUzYwCHyYHeT9/uQKIpU6Z0ich3T+Z07nBXJk+Z0mHi7l2Na7WSgHsCMA01sfaLtYyYMYMVQUHcaLOxdvhwKocNY4nD0W2vbeLEiebPPvvMp6KiQpSVlSlffPFF30mTJlUA5Ofn6/73v/95AGzYsMH3nHPOqTj5+JycHDfn8/fee69vXFxcdUf3MTIy0rJr1y4PqHUPm0wmd4DLLrvM/Mknn/gWFBRooTaC9+DBg83OSsePH1++dOnSAKgNxCkpKVFa2k5paalSWlqqufnmm8teeeWVI/v27fNozXX0GAMjhPABbgGmA78CG4DzgBlAm7/BQohLgeWABnhdSrnkpPcfBO4E7EAhMEtKmVP3ngNw+vFypZSNKja0h6by0775ZgWb2imu3ZWcLn3BGUbvN9KPvJI8HBYHYofAN8G3w8LpKy1FmC0mKi0t+x9pqRJNV9JaNZiW0pJ8yVOUmeZ1TARnV9JUXvA3P33Tov+n5lSHupKJEydWXXvttcUjR46MB5g1a1bh2LFjq+sCd6r/+c9/Btx1112eAwcOrHnggQcKTz7+vvvuC01PTzcAhIeHW1avXt2yumKt4Pbbby999913/QYPHhw/cuTIytDQUAvA2LFjqxcuXHh04sSJsaqq4ubmJleuXJkTGRlpbaqtVatW5d5+++2Rb775ZoBGo2HlypXZEydOrGpJOyUlJZqrrrpqoNVqFVJKFi9efKQ11yGam7Z3F4QQ7wMJ1BrGNVLKPJf3dkspRzZ5cPPtaoAM4CIgD9gJ3Cyl3Oeyz0TgRylllRDiL8CEulktQogKKeUp/v6miIuLk+np6a3qY3z8JAICvkJRfvs9o6p2CgsvZt++r1vVVmewdetWJkyY0KJ9T2d0nDfhtL1pVFuq0Wv1DBs2rE0yea64qgq55rE1NuN2Xk9DJRpXo37mZhWuqSwn55I2NT4t/XwmXRDPV28GoNX+5lyy21Uuvr2Qr7/Z16ox7Exa831rjPix8QTcE4Ci+e06VYdK4T8L2bej2XTABqpDrtVG2hvkJYT4WUo52rmdmpqaPXz48KK2tNXS3MZeGpKamuo/fPjwyMbe6xHuVuB1IF5KuchpIJ1u1rYayDrGAoeklFlSSivwLnCl6w5Syi1Syqq6ze3AaRe4O5Lo6AgqKxsGnXTHHL6WcLoAEWcAUc7eHI4fOk7ugdwOCSRynT0oGqVFaTKtrc7RFXRmNZLTucPbMoadxclriq2JfHatVuKkpe58V6+OomgxGkdiMMwnKan9499L96WnzCR3SSnPOt1rbWj3OuBSKeWdddvTgXFSyvua2P9lwCSlXFy3bQd+odYVu0RKubGRY2YDswECAgJGvf/++63qo9lsJje3CEUJQlEMqGo1qmoiPNy/1TljZrOZY4XHsFgt6Nx1BAYEtjvvrKKiAi+vFk+muwSz2UxhUTFWqxV3d3cqq8y4B7kj+C3OQCKxF9oZMmhIg2Od15ORvpfYKC3gGpsgyThsJzau4TFdxYH0DPpFxIBrIIaUHM85yKC42EaPaennYzabKTqeS1CAgkGvUF2jYipU8e8XjtFoZO+BvWgDtC0aw86krKyMvGN5KEYFxV1BtaqoZpXw/uEt+i6bzWZyC3LbdPzevRlotbEnDz92ewZDhjQ+/i1h4sSJHTaT7KVtNDeT7NZrkkKIfkB/wCCESOC3O1YfoFWLr02dopHXGv3VIIS4FRgNXOjycriU8qgQIhr4WgiRJqVsIMckpVwFrIJad2tbXEUdsQ6SkpLCwhcXNnSXvd1+d1l73V8dTUpKCstXb2jgknxh8VX4XuVJyLDfcojNOWaC9gSReE9ig+Od17P2jecZE9ZQiWb3HjM/bAti9t0Nj+kqXnnjTYYHjWygb5u9bzep277nnrtnN3pMR7nDn1/5PKahDZWZmhrDzuT11a+zxrQGo84IdStPZpOZoJSgFpe4amvVm+efX4vJNKaBMpPZvJugoB9ITGx8/Hvp+XRrIwn8idrUj1BgpcvrZuDxDmg/Dwhz2Q4Fjp68kxBiCvAocKGU0uJ8XUp5tO5vlhBiKzAS6HDNwlqR7fYFB3SGkHl35LVGBKr/POMRPlz/KH28+7RYW7M7VpnvbH3b5jRkO1OftDVYrJYGhbqh9VrDbdXhnTfvVubOXQo0XJOcN69jxr+X7km3XpOUUq6RUp4P3CGlPN/lcbmU8oMOOMVOIEYIESWEcAduAv7tuoMQYiTwKvBnKeVxl9d9hBC6uuf+wLlAt10sd+YhutKS/MOTdrZpGgAAIABJREFUczRTUjZ3ZjdbzcnrU6m//HKKus7E6++gv3tkq1SFWqpE0xnX0NQaW1tTWTanpDBz6lQmxcczc2rT+Y/N0VXKTKdD565r85pie3FVHSosvLiBMlNjY9wR497LmadbzySFEDdLKd8B+gsh5pz8vpRyRXval1LahRD3AV9SmwKyWkq5VwjxNPCTlPLfwFLAC/igLinXmeoxGHhVCKFS+2NjiWtUbHejLULmLakheCZprBZmQWo2Wz54gyk3312/35GMNIaPGMF7695sVfutKfnVVlpbz7O1syCz2cw7Cxcy32AgISCAtHaIkXdmJZSWEhgQSPXb1WdsRtuYV8dVIN05xk/eeScVUrIsIKDd497LmaVbzyQBp+6VPxDQyKPdSCk/l1LGSikHSCmfqXvtiToDiZRyipQyUEo5ou7x57rXv5dSJkgph9f9faMj+tNZtEXIvLtG8zlnXlffdjX5pfnYKmz1EZeBU/vx77XP9hh1nc6OGi0+dqxevFurKJ0qRt4VGI3GbjGjdcVVIN05xjNKS+lbVtZjxj09Pd390ksvjQZITU3VDR06dLBTjNyVdevW9XWKjjfGihUr/CIiIoaOHj06bvLkyQOqq6t7vJRotzaSUsqVdbmMhVLKx09+nOn+9STa4i7LysrB07P5OotdjatiiuMaB47zHRzafIiSvSUA9B/SH0+9tseo67TVDd5SrBZLvXi3k54sRg5npuJGc7gKpDsJt9kotdnqt0tKS1GO5LH16y3cOP32dle2cWXjxo3GqdfcMHDEuHOHTL3mhoHtKVeVmZnpNm3atOgNGzZkDRgwwHby+xs3bux79OjRZj2Qd99997GffvopPTQ01Prmm2/6NLcv1IrKN/a8u9Ct3a0AUkqHEOIaoF2u1V5a7y7rjnUWXWdehgoDVk8ryrkKedvy8B3iS2VeJQlDElrtWj1TdHY9T3edjrTKSka6pDecaTHy7qhk1B4ioqNJM5kajHGumxs+dbkiJaWl5OYXkO/tx8DBIxl+XWKDeqbtYePGjcZlr60LnzxrgeOaQcNsuQd+1S577blwIPeqq64yt6atEydOaK+55poBr7zySs6wYcMsjz/+eOB///tfb7PZrFm8eHH+4MGDa/73v/95p6enGy688MLyjIwM/apVq3KjoqJsS5YsCTAYDKqrTuzQoUOr8/Ly3AsKCrTTp0+PqKio0AQGBto+/PDDw1988YVx2bJlgUIIrr766tJ169b5Dx8+vHL//v2GmJiYmmnTppVMmTKl8r333vPevn2754svvnhKQGVX0a1nki5sE0IsF0KcLYQY5nyc6U793nGtIaiq9hbXWWxPsvfpcJ15hfUPQz2hIvtKaopquq24e3N0dj1Pv8DAbiVG3hqN2O5IY9/txgTf1/r4cMLbm91mM0cKTOR7+5EsBGNmzutQEYjX39oQOHnWAkfU0FGqRutG1NBR6uRZCxyvv7UhsLVt7d2718PPz89+/vnnVwEsWLCgcPv27RkpKSkHlyxZEjRo0CDrhRdeWLZmzZrDycnJ+dOmTStes2aNL8C///1vn+nTp5e6trdt2zbjoEGDap588smgOXPmHN++fXvGiBEjqtatW+cDYDabNSkpKYfuv//+YoCpU6eWbdu27eCsWbOK33rrLT+A9evX+86aNau4vePUHnqKkbwQOAt4Dkiue7x8Rnv0B6C5aL6maExAur31IF1xVUzx8fUhJjwGTY4GpVLpFutTraWzo0aNRmO3EiPvjkpGLaWp77aEU8Z47uuv8+gbb7AiKIirzGaSQiMY8dgLDD2n9n/HtZ5pe8jLz9eFDxrWoPRT+KBhal5+vq61bZ177rnlYWFhlgcffDAYYNWqVb6jRo2K+/Of/zzg2LFjpwiH33TTTWVfffWV94EDB9z9/Pxsvr6+KtTWqRw9enScj4+P/ZZbbjmRnp6u/9vf/hY8duzYuI8//tjHKUg+YsSISmelDoDzzz+/su5v1YEDBwxFRUWaoqIit4SEBMvJ5+5Kur27FaAuDaSXM0BrczQ7Ox/z5Hw9rVlL6JFQlq/tWcbRlc6OGu2KKN2WUlsyrWHMnWvJtO5Mc9/tTe83Xodz8pQp3Dj9doZfl9hABOLkeqZtJTQkxJJ74Fdt1NBR9YYy98CvSmhISJsMyxtvvHHk4osvHpicnOz70ksvBR08eHBPYWGh9pxzzhkEtXUanSWy9Hq9HDhwYM38+fNDpk2bVuJs4+677z72yCOP1Iuqx8TE1Fx33XUnLr300goAi8Ui/vvf/3q5GkioLb/l5KKLLiqbOXNm+BVXXNFgdnom6CkzSeqKLj8ohHjE+TjTferlVDo7EKW75Ot1Fr/33LrTacR2Z9r63e7MeqZ33nbLsc2rn9Mc3vOz4rDbOLznZ2Xz6uc0d952y7G2tKfVavn444+zVq1a1S8wMNA6ZsyYQY899lh/Ly8vB8Bll11WNm/evLBHHnkkCOD2228v/u677/pce+21ZU21uXjx4oIXXnghcPz48bHjx4+P/fHHHw2nva477yz+6quvfG6//fYzbiR7xExSCLES6AtcAKwBrqVWbLyXbkZnB6JA98jX6wway7fr6bl1JwfpxCdcwNI31nYrJaOW0tbvtvO7+traZD6pK3HWURHXdcE5ua+/tSxwY36+LjQkxPLQXdPzWxu0ExcXZ/3iiy+yALy9vdXU1NQDje03Y8aMEzNmzDjh3FYUhSuvvLLEza02W2TOnDmnrB8GBQU5vvrqq1OUyKZOnVrfxx07djQojySEYMKECWX9+/e3t+Y6OoMeYSSB86SUw4QQqVLKx4UQzwEfnulO9XIq3UW+rCfimm8H1ObWASuSknqkkWxYbiyAtAMmlr6xlpHjZrDinW/qDecdf+kZ0a3t+W535g+7q666ytxao9gRrFu3ru/SpUuD3n///Q71lX/11VeeCxYsCFu2bFmr6j52Fj3FSDqrZtcIIYKAYiDyzHWnl6aYMmUKy1leKyC9qU5A+pGeV5z3TJCTlUVCwEnrdT04p7HJQs7vfMOadT2nYLiT3u92Q6ZPn35i+vTpJ06/Z+u4+OKLKy+++OJGZ7Jngp5iJP8jhOgLPE9taSoH8NaZ7VIvTfF7dYd2No3l253pnMb20JODdJqi97v9x6NHBO5IKZ+SUp6oEzWPAhKklH890/06k3RmLmIvZ4bG8u3OZE5je+nJQTq99OKkWxtJIcSfT34AFwHn1T3/Q9LZuYi9nBkmT5nSrXIa28utM+ax9I1qdu8xY7er7N5jZukb1dw6o2ca/V7+mHR3d+v1zbwnOams1R+Fnl4bMiUlhdfWvk12XaTfXTNu7RH97gq6U05je6m9juWscIlu7SlBOn800tPT3cePHz84JiampqqqSpkzZ45p9uzZHZJ+kZ6e7j537txQZ/Ssk02bNhmffPLJYEVRCAwMtK1ZsyYnICDAce2110YuXLjQNGbMmJqOOH976dZGUko5/Uz3oTuSlZ1FwKUN13paW3j2TJGSksKS5DeYdPuDTK0rHNxROpa9dD9+T0a/u7Jx40bj8teXB+YeydWFh4Vb5t4591hbol3HjRtn/uKLL7LMZrMybty4uNMZSYfD0UAAoDUcO3ZM8+CDD4Zt2bIlIyQkxL5y5UrfO++8M/yTTz453KYGO5Fu7W51IoQwCiGeE0Jsr3v8QwjRZqX7no6rNJuTluRrbU5JYeb0qUy6IJ6Z089Movpra99m0u0PEhk/Eo1W26E6lr308kdj48aNxoeffzi8cESh1u9eP1vhiELtw88/HN6eSiAVFRWKwWBQP/744z7jx4+PTUhIGOwUD1ixYoXfn/70p+gJEyYM/OSTT/rMnj07dOzYsXEJCQmDv//+ewPAli1bPEaNGhU3ZsyYuCeffLJeQ9bhcHDLLbdEvPLKK74ffPBB38svv/xESEiIHeDee+8t2bVrl6fdXpsW+eKLL/YbP3587DXXXBMJsGPHDsP48eNjR44cOei2224Lh9qZ6LnnnhszefLkAXFxcfFr1qzxmTRp0sChQ4cOzs/P1zocDs4999yYsWPHxp1zzjkxJSUlbbJ3PcJIAqsBG3Bb3cNKrajAH5K2iGJ3F2Hp7OxcwmIblt/qKB3LXnr5o7H89eWB+gl6h2ekpyo0As9IT1U/Qe9Y/vryVguc//jjj8axY8fGDR8+PP7WW28tnjJlSsX27dszUlNT93/22Wd9KyoqBNRK023duvXQNddcU75s2bKjO3bsSH/99dezlyxZEgTw0EMPhf/rX//K2rlzZ/oTTzxxDMDhcIibbrop8qKLLir/y1/+UlJQUOAWEhJidT2/n5+f3anretZZZ1Vt3749Q6fTyU2bNhnj4+Nrvv/++4zdu3cfMJlMbmlpaToAKSWbN2/OvOeee45v2LDB9+uvvz504403Fr/zzjt9NRoNX3755aEdO3akX3755WVOMfbW0lOMZIyU8lEpZUbd43Fg4Jnu1JmiLdJsHS0s7Yyu3Xtgb7PRtSdH4ep1Wo5kpDXYp6N0LHvp5Y9G7pFcnUeYRwOBc48wDzX3SG6rBc7HjRtn3rFjR3pubm7a22+/7ffDDz8YzjnnnNhx48bFHTlyRHf06FE3gNGjR9e7sZ5++unAUaNGxSUmJoYfO3bMDcBqtYqoqCgb/KbHmpqa6llSUqKZOXNmKUBwcLD16NGjDUTTS0pKtE6FnXHjxlUBnHXWWZUHDx7UZWRk6CZMmBAzZsyYuLS0NI/c3Fw3gCFDhlQDhIWFWYcOHVoNEBoaaistLdWWl5cr06ZNixw9enTcW2+95e/sf2vpKUayRghxtnNDCDEe6BaLumeK1haerc1ZO6n4bhtz1lyja7UB2iajaxuLws0xZ/DB0gWdomPZSy9/NMLDwi1VR6oa3MerjlQp4WHhba6codfrJcDjjz8e8tJLL+Vu3749PTg42CqlBEBRFAlgMpk0X375pffOnTvTk5OTc6WUAkCn06k5OTlu8FsR5bPOOqviwgsvNCcmJoYAXHfddWWfffZZfQHnV1991fess86q1Gprw2R27tzpAbB7926PmJgYy/LlywMSExOP79y5Mz0hIaHKeS7X+pWuz6WUfPTRR3369+9v++mnn9Jvu+22IucxraWnGMl7gdeFEIeEEIeA14B7OqJhIcSlQoj0urYXNvK+TgjxXt37PwohIl3e+2vd6+lCiEs6oj+dRUfmrLlG1wpEbQHkCQaSViU1uZ+iUTBGGPH/kz8692pS/5XMy7MvJ/VfyR2mY9lLL3805t4591jN1hpNZXalIh2SyuxKpWZrjWbunXNbLXDudLeOGDFi0JQpU8qmTZtWfPPNN0dfddVVUQaDQT15/4CAAIe/v799/PjxcevWrat3ZT7//PNHrr766gHjxo2LXbRoUb3b94knnjju4eGhLly4MCgwMNDxwgsvHLniiisGjBkzJu7TTz/t+9prr9WvuezcudNz3LhxsTU1NcrUqVPNV155Zdmjjz4aeskllwxwGt7TceGFF1Z+8803xgkTJgxMS0s7rah6Uwjnr4OegBDCl9o+d0gRTiGEBsigNvcyD9gJ3Cyl3Oeyz73AMCnlPUKIm4CrpZQ3CiHigXeAsUAwkALESimb/ATj4uLkyuTkesHnsvIKco4U4qZxoNHquXzqjdxww00kJb1NVlYO0dERzJt3a4NSVU7B6H370qioVKmo9qN//zCktGIynaC62oZerxIcHIrOy0aNxYZBp0WtOkJ+/kGiQiSXnKfg460heb2DvZn+9PH2JTjEQOmJEqT9KEJ1oHXTUVjSh+oqK759zWgVKxIFq1WLu5sDVauhqMadpY8vYsnfF6IRNlRVi1ffcNz1npSfEBQWFmEIkQT4lYPVgZuvHvdRwZz4tJxhMZPIysqhTx9PpLRiNtsavd6UlBSSViXxa2oaNeVeGNy9kLIKuzULqdpQFC2+fn546BVqrA4s+DN8xAjumnErL7zwAj/v/BqBHVVqkSKIgIDo+vPs2vUzSSveobSkHB/fPsybczNjx45lw4b1bN60DqvdiqKCajcSEhRMpslOmbkUX28zGo0VvZuOyVOns2rVayx97jneWf08RaXFIFSqqsFTp6Wqwg0vBH18fZg2Zw6HDh3k803v4bDXAG6cqPBEdXigEw6C+1jp6+fDCUcxlpoqVCk4XqDD7nBHo6jo/SycN+E85s1uKIW2OSWFt5OSyMnKokqVdf2swqEKnnv+Yf664G/4+FShCAcaRaWmRqJ313C8xAjSgLtWEBqooLNaqSgro1KVCI2WUpsRh0PgJlT8jBaigvuTV1iIrKrGjETrBUJaURSV6hrQ6QzYKyReCPRenriHhHHCXEnRMRt2qwOdXiWwTwmqasPb6M3Nsx5m/oIFDT7r19a+TeruXyg/IXDTuNO/fwDesoiD6emYyt1ZtPRRHlv4N/oF1qAooCha7BYHUq2uH3eDTkNRhR+q1GMw6Ajq58uxY2WYyyqQsgo3jTvCTWC3a9GoFrxEEb7efdCHR2Pw8kav02JRyzmaX1D/nfPw0GEp3Iet3IxQHVgQeHl5YlUlWrsdh7sWt75gd1gRihsOxR//gACqT2RhqalCUbRYLIC0YLMrFJ/Q4903iAD/PqSn/1wjpa3+Jp6ampo9fPjwopbexzoquvWPTGpqqv/w4cMjG3uvW6eACCHGAP8EBgBpwJ1SyvTmj2oVY4FDUsqsuvO9C1wJ7HPZ50rgqbrn/wJeFrXz+iuBd6WUFuBw3Qx3LPBDUydTVbVe8NldKWX3r8dY/5kbl14Yh7enjaQ31/PBB9sYMGADAQEJmExpzJ27lOXLa+s6OoNvZl9vw31qNYePBLBiXQ27do0EUoE70GrjKS9fQWHJYPr4/srEG8ZQnPo6068+TkiAO0cKFF5abyUzN5Qysy8+/R9CavzYt/d+EuJymXufG2H9HWSmOUheZ8FcrWXh3f2J7m/CVGhh/SaViePD6WuE5PUF6NzgmTnhRIcWk5XnxsoN+WTkRuDTbxWq3Em0YRn3XaMyZAxkF1h54eV0CvNiMBnn4OYWSmrq/4ANDBx4DyZTQIPrdbprrWE2iiuCkeI+igtMDI1+kfvuciMmuh/5R4/y9qf5XHKBGzHxA0jeYMUrZgw3z5hJsLGIxQ/2JzqsL5mHy0hef5zcghvx8LiJadP+j7LyAvxCVhI5dCzlJTt4evGjPP9cH9K2rea1+zWM7A+/HoGFb5ezL90PB1cyPPZj7p/mRWhoEaUFFp5fv5pxY1PRWX5l0W12gqNVzBWQtAHOCrfzn+12zi3qx4X6Ptzz2GP4DdCweG4EUeE+pB86RvL6QtIzriXQ7WzKip4mxC+DeTPdiIr3Ju3XCv65Xkdp+jxUxRdT8UtsL9jO3GfnspzaNWjXyiGZNTU8kN2HKvkAkIAbZiCLwQM1JE7TkhCrYq7QkrzBTkw4bP7BQOGhh3C39SE/72Vm8CvXuut53GHngG0QOhLpRzRCZlFQnkxw+a94u7ljMBjI7F/DPbd4MzS2DHMFvLzBRky4O1u31zCx0IuzdV48sm8fRYbxePo/xQnTHgb0f5a501QuHiDIOlrBI+ueAGD+ggX1qUHhI8+j4gcLQn8vxcf1lBXsRaeuQDh8COMRNBiJH6DnL7dUExenkJtbzrufwp8ugPhIeHEDDAhX2Lxdw6/5cyg3B1FW+jYwDR2DkCIZm2Mw0vELWibSX+uL5CWmWtL434E0DFOnsT/7f5R7FyLL4lGUOZQeD8XdchBf5RUWksZgjZYVNhuDy82kAvE+vhzoX8bNNzmIGRnE0WIvnnkhj6qKYh67VyFugJGMA4W8/amGiWPD8fHW8PJ6E2kZIyktLQOC2uQGdHKmBM7/KHR3d+tK4DEgpO758g5uPwRwVZrPq3ut0X2klHagDPBr4bENsNts9cEzZaWFTD5bzyOz3dnyw1EGx/bnvmlBuClFGI0jURQtRuNIDIb5JCXVpkc4g298vcy4u0UQH9OP2Tdq8fPegar+H6r6LTrdeTgc8xAiC0/vx9j5yUruv01LRLADRQknOmIw99wYg043EDd9MuWFH+Dd70L8vPXce4tg8DAdSrUbMdHhzJ1hITK4gpgBvuh1WiaN17BwthvbdhYTE9GfudM1uLupxEQGodGEExPhIPGWILzcivD2P5f+AZ+TeJORmMhw7GWSmAi4+0pBoG8fjMaR5OUVodVeglb7OEePvnPK9TrdtSWpCor7HHTe8fj2+YjEaX7ERg3ETRxl8jnu/HW2jq9/cDD6rH48OMvAkdTPUWwlJE4PJHaAPxoUYiL7kzgtFK1Yi9E4kpKS20CJxtv/XITihrf/uXj3ewarpYpnZ7gzJlzipVU4P0rhvmlaPH28CPLZzr3TdCRE+uKpCaV/mMKzM9wpyN3Js9MVwiMdDAiG84fBwpnwSy78fZrgP7KQ0f790PXRkHhLEINj+4PDQWxUKInTQvDp+zH9dAkYfI3ccYuGi2PcqSkrY2hkJA9MM4Lvx/i6xRGkuZ+KnzUNXNuulUNezrMQIO5DSzySCPSMRauBxGkqQwZoiQiWjB+m46GZ7mTkCB661Yj0/hchShwhJPIx/pyr06GqPqgkEk0M5WgIUmIJJpFv8edxN3e+11Qzd1oQ8QNqiAjWMmaYnodm6jiYU8m8af35lHJG9wvBqAnEXjmDPv7n4+f1Lg9MMxIfGckxh+S8GB3PTld4Z/XzwG+pQbu37MDd8DDe/ueiRUOoHEil436qiKK/Jg6tppTEaUaGRkWg2Ku4/GyFhbPhu9214/7QTDiY48YD04z4un2Iop0C/BWF79FpxuOQDyLIQcdCJNvwdYtDr9zPdrs/9/fVkv7ZBjwv8kEcDcTBPei841FUSbgSi1HeyyfSj3N0eh4CcqTkMZ2OLynmsdt1XByjQy0rYtTo/sybIQjxq2L8edFYK4qYdLaev97lxrZdJcRGBZM4rT/+Pv/Dzf1JwOzeyO2il25Ct3a3CiF2SSnPamq7A9q/HrhESnln3fZ0YKyU8n6XffbW7ZNXt51J7YzxaeAHKeXbda+/AXwupfzwpHPMBmYD+Pv7j/pg/WJAUFlhRq/XgISDuZKw/p6oDgeH86rRG367RCnBbs9gyJBYMtL3EhulpbKyGkXxAMBud3A4T8VmHwRkotHE4nA4ECITnUcMDutuosMFqBIp9AgEUoXDeSp2NR6ppqPzGIRqTSMq1IaiV1AtKgg9QtaQZ4KQ/gYUWY1eJ5EoHMqRhAZ5ARVUO0LQKycQAqSsBnQczqtGozsL1baXyGCF2vX0ajRaDQ67Sna+O+66IVRWViOEoe46M/D0jG1wvXsP7EUboKUq34bQRAMCxX6IqFB3hBAInGMoOZijMjDaiERyKNuOzWIhKkyPEILar7gCEg7nVaI3nIXZXIEQR9F5xLp8WpIA3+P4uxWAdNT/gqyUgsw8NxQgIlSDFoFEolKDh6Kw94iDoeEaqlUHHvrfPrf0HIgLhD15MFhnZL+lgshQPYpGi1QdgAYpJYfzKtGpg7Eqh4gKteGpUah0qCjCgJSSrDwHWjUKpKRKHsYrUoe90M6QQUPI2LuXWK0WhGCPuQY3oqhCQUWPBggOK8GgyUcREr1ORQgFVcKhHJXwQAOH8hzo7FGApIrDjFBU9qkKNqIwUFt+x4Cof3+4orJHcTAg1ACiBr1OAVEbKHEoRyUs0IOsvCoGuRtJr7ZilRG4exhRrWkMCNXWf088tQpSwt5claHDzuJAegb9ImLIO3QQjTYGEFirKtFLSTUgyMOTUHzCqtBritAIgaQKTz04JGTmQmxE7fODOYKwQD2ZeQ5s6hBQJXAIDTE4kEAmCtGoHMJDCQUpsXOYaHeVTIsDTbgXlgIbkgg0Gi2qxY5B1o6BymHiFRVVdXAIiFE07FUcDAnXgIBq1YG7hxFrdQVHCiTR0V7YqirQ6zV1YwShQZ51n3sVDnUEDz54BVJW1M8mW+tu7aX99Fh3K9D3JI3WBttSyvbK0uUBYS7bocDRJvbJE0JoAW+gpIXHIqVcBawCiIqMlN721xg51Mj3331LVIA7h3I1fPGRO3+9dxhp+3NY/KKZIcMK6483m3cTFPQDiYmzWfvG84wJM+Hrlo/VGopG48Wu9EL+/mIohaUjgW8xGmdTUfE9bvpvCYocRXXhk/x9kYPIvhJpj0DRGElPr2BRUihlVWNR7SmED7uDytwHWPzgHoZN8KQqtxrUSA5n5/P+vyWPz4vDzZFBtH8NB3Pd+fxfbjw4azhZObuw+z1NnNenSFkO8ggHc7xYnGTGP+YYlQVLePKePIbFGXB3z2PYsEG893EaSUmDCYv8ll9/3Y/VGgocwt39B4YNm93gep9f+TymoSYOf1SBtexJtPpBaAsX88zcCuKi3NAqaQwIdCfjsJ3PP7TxWvJ5pO0z8/F/g0j9diuL5gYQFxOAtKpIqedgdjGLXjzB0OEmtm17G437Z0Qn3Fk/1mVF3/F/9+cTUPMoo0Pt6KVEA7yTJViSNBgPPHl0XgkjIj2xyioc4jCWAoWlL9aw4WED/sHVRPiDUQ870yHlXxA/UbAqCVJiLuCeQz/yf3ODGDY0kpqqSiR6Mg4f5+8vniDa/h8K3B9h8dw9nDNYT1qVFZ0YQGa2g6QkX/pWP0eJPZ0C7TMMXRhG0J4gEu9JZO3zzzOmrnLIU99lUO74G5nqIKqIxhMP/vbiuxjKn2bIAAdR/pV46Q38km7j8w8c3DApmn+86Et02T8oVA9gZhGHjTYeNbtxgGeIIIajQJwiOKZmUMEiPvao4TmdlWcf6M+A6FKi/B0Y9Fp+Tbfy+Qd2rp8UystJR/kqcgx/3X+ENNtThI34E5XZj/OPOYUMilRwI5ORfTzYdsjC6te92HXgOK+88SbDg0bywYffUVY0Cr3nSI7u+4XQ6iqy7QdR+ICzNE9x3fPjkq85AAAgAElEQVR5eJhXEB8pcCjpxPcT7MtW+XYT3PUkfJcO//nAg2snhbLoRT9Kqz/GUZOOwla8NLdQ6dgNbMWNOOx8zjDDfCod6fiKxcz2qeDvZQ4M84Zi2liGreRRvHxGUJVVRrRDQciDhPJ37vCsZmeFmf9JSYJezyqPGl77qycDwhxkOhyEDDqbb778iY8+srDyxWEcO5hKdD8dBw/D5//S8dCs4aQfLmBxUgVlVR8D2u47U+ml27tbv6NWv9X5cN2+rgPa3wnECCGihBDuwE2cqgf7b2BG3fPrgK9l7fT738BNddGvUUAMsKO5k2nd3OoFn719Atj8Qw3PrrIy8exg9mcU8PJ6EzbVH7N5N6pqx2zeTXX1UubNq02PcApGl1QYsdpy2HfwOKves1NcNhZF+QeKcj4WyzY0miSkjKaybDGVQs/Lb0sOmaw47HlkZBaz8r0aikpGY7c8RZ+A6yk7/j+Ky2pYuUGy/1cLqsHGwaxclq/VkX3Ui4OZJdRY7Hy93cGSVTYuGNuPjMN5LH/LgdWmkHH4KHZ7DoeOuJG8wUSFzZ+you8oPnE1r7xTwf7MTIKC+rF7j5n1n3thU7WYzbsJDfXHbv8Su30RwcE3n3K9TtEE3+EqqnUFlrJ9lJRfQ/L6YjIOH8Img9n8vZW/r7Iw6WwNP+06zgurqwkbfjmqmy/J646RkVmEA5WD2QUkr8/DLmdgNu/G1/ctULMoK/oOqdooK/qOsuOP4q7z4JG1VnbmCirsKt8eVnl5vZ3K0gpMpeNZud5CWnYJlY48Co6oPLLWSv/wMTyyTiU3W0PmUfj2V1iyBkaEw1/XSy4TAfxUdBxLuYPkDSb2ZxSARkPG4TyS1+dTeuJqjlvSqC4x88YGB18dtKL39mZPdjYvrjdDydWU2NIxOV7Ca5SjgXCEa+WQ+0J1FMqXsbMPQQ417MDugOT1Cnsz7eQcFWz/1cKyNVZiIyTL3jYjyq4jX00nn2SupojvLBYUpRSFZLI4SB8cmNQMjpLM+RSxyGblHIeB5etN7MvUk3PUzs5fa1i2xkJMhCdJ6wu4gj78dDwfs+MYWs+1lBd9S3HFTby43sy+7GwCNYJtBy08sk7l5lkPA3DXjFv5+s0XGDlxLNbq5ykr+g47DvLEITw1L+HBYQoc6dgdPiSvN7PncA6q1oPPf1BZsgrOHVk77svWQEyEjRfXmymxXYtqTwH+jso5WBzb0YgXkERgYQmC8yixpVOjvsR4bREvnbAT96dbqPxvKTL4GBr+iaVsH6oiyFUzMIuVXCmK+d5SwzIgQggWWyxcgh+L37Tw1UELirc/P/9UQNJaSX6xB9u3ZeHu5c/XP9Tw99dsnHeWLxmHj5K8voCi0guxWf8GGK2N3C566SZ0a3drVyCEuBxIAjTAainlM0KIp4GfpJT/FkLogXXASGpnkDe5BPo8CswC7MA8KeV/mjvXmYhuTT3wE/YhNgIrwXqsBmu1wvFSDzR2HQadO3a7Fk8vfTPRrRZ8+1agUaxQF92qc5c4IzMXL3qUfzy7EEWxodEY0HkF1Ue31kYn9sXfp4yqynIiIqK5dcY8JKL+Grt1dKvNiiJPjm4twde7osno1sLSYkRHR7eq7mhE+6NbhbCjVWSHRrciLWgUSVUN6JuLbrU50Ok6L7pVVavrx73l0a0aNKq1TdGtNUJg9GwkutVuRWiajm6V0oK9g6NbO4KamhpxwQUXxALs3bvXY8iQIVUA//3vfw96e3ufkv7hysaNG41fffVVn5UrV+af7jzFxcWa6667LqqyslJTXV2tPPbYY0dvvPHGsqb2//bbbz1+/PFHj4cffrho2bJl/qtXrw6YN2+eqaysTPPwww932Bg15279wxvJriQuLk6mp3dkcO7pcUaIGiYY8Az1pDKvkuqt1adV6GkpW7duZcKECe3vaDeh93q6N7+36wEQQvwspRzt3G6tkfxk40bjhuXLA/Nzc3Uh4eGWW+bOPXZlO6Jdhw4dOnjPnj37W7p/S42kw+Hg2Wef7afX69X58+cXqapKSUmJxt/fv0WJj2effXbs559/fsjHx0dtbR9PR3NGsru7W3tpJ22RsOull156Bp9s3Ghc9/DD4fMLC7Vb/Pxs8wsLtesefjj8k3YInDvJzs52O/vss2NHjRoVd/nll0c7HA4ef/zxwNWrV/tArej4DTfcEOF6THJysu+wYcMGDR8+fNDHH3/cB2DUqFFxd999d+ikSZMGenh4qDt37vTMz8/XKoqCv7+/Y/369d5PPfVUIICfn9/wbdu2efz000/62267LXzjxo3Ge++9NyQ5Odl3z549HhdddFHME088EXj48GH92LFj49asWePT3us8Hd09cAcAIYS2Lv2i2dd6aZwpU6b0GsVeevkdsmH58sCFer1jtKenCjDa01NdCCxdvjywPbNJgKCgIPs333yT4ebmxu233x72+eefG++4446Su+++O3zWrFmla9as8b3ttttKnJU7LBaLeOmll4J27969v7y8XJk8eXLs1VdfXQ7w5z//+cSrr75aYbFYhMlkcps0aVKsp6enum7dusMXX3xxxVtvveW/e/fusiFDhlRt2bLFS6fTyfPPP7++/4mJiSWrV68O+OabbzI8PDzkRx995Ltjx44uccv1lJlkYwExzQbJ9NJLL7383snPzdUN92gocD7cw0PNz229wPnJmEwm7aWXXjpgzJgxcVu2bPHOy8tzi4yMtNlsNlFQUKD98ccfjZdffnm9IcvLy9OGhYVZDAaDDAwMdCiKIlW1tmsXXHBBFYBOp5NLly4tSE9P3/f4448fffTRR4MDAgIcZWVlmpSUFK958+Yd27Vrl8e2bdu8Lr744or2XkNH0K2NpBCinxBiOGAQQiQIIYbVPc4DPM50/3rppTlSUjYzdepM4uMnMXXqTFJSNp/pLvXyOyMkPNySWtVQ4Dy1qkoJCW+7wLmT1157ze+yyy4r27lzZ/rEiRPLnPEr119/fcns2bPDzj77bLOi/Hbq0NBQ+5EjR3TV1dXi2LFjGlVVhfN9jUYjATIyMtwtFosACAoKsjmNaExMTM369ev9L7roogq73S6OHTvmFhERYWvvNXQE3d3d+idqo0dDqVXccVIOPH5GetRLLy0gJWUzc+e+gcEwv1GJwV566QhumTv32JKHHw5fSO0MMrWqSllSU6OZPnfuaSNNT8dll11WPnPmzKgvvvjC21Xg/NZbbz0xf/78iK1btzYInNHpdPL+++83jRs3Lg7g6aefPqUPO3bs8Lj++uuDdDqdBHjllVdyAC644ALznj17PIxGoxobG1vjrETSFOPHjzdPnjx5wF133VV00003NRkd2xH0iOhWIcQNUsr3z3Q/2suZiG7tbH5v0YYddT1Tp87EZJqD0Tiy/rVaoYQVbNrUdfXCez+f7k93i249HWazWbnooosGbt++PaOzztHV9GTFHSdbhRCvAiFSyql1FTjGSinfPMP96qWXRsnKyiEgIKHBa56eCWRl5ZyhHjXEmW+bk5NVn786uTe4q0dy5VVXmTvTKLqye/du/Z133hnxwAMPtLoUV0+lpxjJNcB64P/qtg8C7wFvnqkO9dJLc0RHR2AypTWYSVZWphEdHdHMUV2Ds5rM/DsMJAwKIO2AiaWvzAWW9xrKXppl5MiRNT///PPvyx12Grp14I4L/aSUGwAVQEppA1pWebOXXtpIewJv5s27lerqpZjNu8nJ+Rfp+0aRn3suBzM28dxzz3XYedqCs5rMyKFGtFqFkUONzL/DwNtrk05/cC+9/MHoKUaysq7gsoT6OpO99dN66TScgTcm0xwCAr7CZJrD3LlvtNiATZkymeXL76Cy8h689dNYMj+LrR8P5IWnAtj4wTP1hrK952kL/9/evcdHVZ+JH/88SUiIISqXSBBIYkQiMSn3VFmpXEalNqvsT8TSgqBBVmtLIgql2r661mrZZYtJWpYKskChuCK7CzZ1rQ6IomIRRBqKAhoTLjIhUi5DCIEk398fcwaTOENuc8/zfr3ympkzZ875Hk7IM+f7/Z7nqagoI/v6hCbLsq9PoKKizG/7VCpchUuQfBz4I5AuIm8BLwI/uvRHlGq/wsI1xMfP9VrbszVstvHExhzhlz+9lttzB3Nlzx6MGHYVTz7alz+sLvbZftoqNTWd0k+qmywr/aSa1NR0v+1TqXAVFkHSGLMDGAvcAuQDmcaYj4LbqvBmt9vJnZxLZk4muZNzsdvtwW5SSCkrqyAhoeMTb06fOsHg7F5Nlg3O7sXpUyd8up+2cFeT2bXHSV1dA7v2OFm4vIap0wv8tk8V2vbt2xc7YcKEVn9L+rd/+7ek4uLint7ef/311xO++c1vDszJyckYOXJkxsqVK6/0TUsDLyyCpLgq884BHraCY4qIfDvIzfIrfwYxd9JzR5aDpIeScGQ5yH82XwNlI+npqVRXlzZZ1p6JN5df0Z3dpU1n8+8u/ZLLr+ju0/20xXibjbyHiyh+MZnbZlRR/GIyeQ/rpJ1wtWHDxsSxY+8dcO21N98wduy9AzZs2NjhvK0d4XA4on/0ox+lrlu37vPt27fve+edd/b369cvJBIDtEdYBEngP3G19Wbr9RfAs8Frjn/5O4gVLi0kfkw8iamJREVHkZiaSPyYeAqX6sQNt8YTbzzV9myt70+bzTPPHWHHh8e4cKGBHR8e45nnjvD9abN9up+2Gm+zsWJ1CZvf3suK1SUaIMPUhg0bEx9/fHVKVdXcmJ4937xQVTU35vHHV6d0NFAuXry4x0033TQwMzNz0OLFi3sAHDhwIHb48OEZt9xyy4CtW7d2A3jqqaeuev7553sAfPjhh13vvvvutPXr11/5ne9856Q7Y05cXJyx2WzVAD/72c9633jjjQNvuOGGQe4E6O+++258VlbWoHHjxg0YP378tSUlJYmHDh2KGTVq1MARI0ZkTJgwId2dHzYYwiVIXmeMeRa4AGCMOQtIcJvkP/4OYmXlZST0azpxI6FfAmXlOnHDzT3xJjm5mKqq20hOLqaoKK/N2XLmzZvHxHue5IlfnWb0d3byxK9OM/GeJ5ln1VH01X5U51RUtLZ3167z6xMSRjSIdCEhYURD167z64uK1vbuyHbvu+++k9u2bdu/c+fOT5YsWdIb4Omnn05+8sknj7711lufirj+/D7wwAN/f/nll7sDrFixoue0adOOHz16tEufPn3OA7zyyiuJOTk5GePGjRsAMG/evKr3339/v91uP7BgwYJkgCeffLLv2rVry+x2+6enTp2KAUhKSqp/66239u/YsWNfv379zv/xj3+8vCPH0xHhcp/keav4sXt26zVAxFbzLisvI2lCUpNlCf0SKCvxTRBLT0vHcdhBYupXXzarD1eTnqYTNxqz2cb7JFjNmzfvYlD0535U53Pw4JG4nj0HN+nKvOyywQ0HDx7pUILzjRs3Xl5UVNQboKKiIg7g888/jxs1alQ1wMiRI6sB+vfvXwdw5MiRmHfffTexsLDwyJEjR7ocOHCgK8Cdd97pvPPOO/dlZWUNAli6dGmPtWvX9oyKiqKqqqoLwJdfftnlG9/4Ri3A4MGDzwIcO3Ys+oEHHkg9depUTFVVVZfBgwfXdOR4OiJcriR/AbwG9BORVcCbwE+C2yT/SU9Lp/pw09mHvgxiBbMKqNlSg7PCSUN9A84KJzVbaiiYFRkTN3RSkuosUlL61p49u7vJ3/GzZ3dHpaT07VCC82effbbPa6+99ulbb72135239Zprrql9//33LwPYuXPnxa6oe++99+8PPfRQ/5EjR56Jjo7m7rvvPvXqq69eWV5e3gWgcVfpb37zm+T3339/38aNGz9zL0tKSrpQWloa19DQwF//+tfLAJYvX97TZrOd/uCDD/bZbLaTwUyfGhZXksaY10RkJzAKVzfrXGPMsSA3y28KZhWQ/2w+jHFdQVYfrnYFsSd8E8RsNhtFFFG4tJCykjLS09IpeKIgImpOusdz48fEkzQhCcdh13huEVpoWkWe/PzvVT7++IIUmM9llw1uOHt2d9S5cwui8/OntTnB+QcffJA4atSogQDf/va3T44ePXpgVlbW2SuuuKIe4Gc/+5nju9/97jW//vWvG9zLAL7//e+fnDNnTurrr7++DyA5Obn+t7/9bcXkyZPTRcRER0ebH/zgB5UAo0aNOj1y5Mjrhw0bVt2tW7d6gKeffvqLKVOmpCclJV1ISEioj42Nbbj99ttPz5gx45o33njj8stcpcCCdiUZLgnOVwBvA1uNMZ8Guz3t1ZYE53a73RXEyq0gNis0g1ioJZzOnZyLI6tpV7KzwknynmRK1pW0+PlQO56O0uMJfR1NcL5hw8bEoqK1vQ8ePBKXktK3Nj//e5UTJ94VsGQrZ8+elTFjxgxsbxHk2tpaiYuLM/X19dx0000ZL7/8clmgy2RFQoLzF3HNbL1PRPoDO4G3jTGL27tBK4PPS0AaUA5MNsacaLbOEGAJcDmuNHjPGGNest5bieu+TXeZlhm+vHfTZrOFZFAMdf4ez1Uq1EyceJczkEGxsdLS0rgZM2akzZ49u90Jz7ds2ZLw05/+tG9NTU3UHXfccTJU6ki6hUWQNMa8LiJ2YBgwHngEGA60O0gC84FNxpgFIjLfev3jZuucBe4zxhwQkauBnSLyZ2PMSev9ucaY9R1og/IxnZSkVOBkZ2fXdjTh+e23337m9ttvD9mk6WExcUdE/gy8B0wHPgduNMYM6OBm7wJWWc9XARObr2CM2W+MOWA9/wI4BiQ1X081ZbfbuXfaDL45ehz3TpsR0IkzkT4pKVD8cQ6D+XuhVHuFy5jkb4ChwBngHVzjk38xxrR7BpeInDTGXNno9QljTPdLrJ+DK5jeYIxpsLpbbwJqgU3AfE/tEZFZwCyApKSk4evWhX3t6CbOnDlDt27dLr52Op0cPfYll/fqTWxcPOdrazj9ZSV9rupFYmJgEoE4nU4qqyqpPV9LXGwcvZN6t3rfzY8n3LXnePxxDn21TU+/b5WVx6mtPU9cXCy9e/cM2O+Zr4wdO7ZDY5Kq48J+TNIY8yMAEbkCuA9YDVwFxF/qc1YXbbKHt55sy/5FpI+1z+nGmAZr8U8ABxALLMXVVfsLD21far1PRkaGibRJB80nUtw7bQaDJz1Ct8yhnLOWfbl3F5vWLeal1SuD0cQ2ibSJIe05Hn+cw8bb/OC9Tby2bjFHyvYSU3+B3//HylaPvzc+Hrt9E/Pnv0h8/FwSErKpri6lpmahJmNQPhXS3a0iEmM9PiQifwA+ACYBv8fVXXpJxhibMSbLw89GoNIKfu4g6PGWEhG5HPgT8FNjzPuNtn3UuNTiKgqd09bji8T7+crLD9J/YNOE3f0HZlNefjBILVJt5Y9z6N5m6XubWL1sDqcGO+j5g/6cGn6q3SkXW1NBRbt4W+fcuXOSk5OTkZOTk5GQkDDU/XzWrFn9WvP5OXPmXD1w4MBM9+f+/Oc/dysuLu757LPPJgG4kwm0xaxZs/oNGzbs+iFDhlz/6KOPXg2Qk5OTcerUqYDGrVC/ktyOa7JOd+A/gA+MMb7KtPMKrjHOBdbjxuYriEgs8L/A740xLzd7r48x5qi48jNNBPa0ZeeRej9fWloKh/aXkpY59OKyQ/tLSUtLCWKrVFv44xy6t/naumJiv9WVrv0TOXf2DAkp3Ygf5Eq52Nbf+7KyCpKSvFdQsdvtLFi8nHEz5pA7MJtD+0tZsHgRQFj/H2tu44YNiWtXF/U+cuRgXN++KbXfm5ZfedfEiW2a7dq1a1fjvoUjKytr0Pbt2/eVlJQkvvLKK1e0dhtPPfXUkSlTprhn+7Nv3752Z/3ZsWNH10OHDsV++OGHnwBUVVVFt3dbHRXSV5JY+VmNMb8yxrzrwwAJruB4q4gcAG61XiMiI0TkBWudycC3gBki8pH1M8R67w8iUgqUAr2AX7Zl55GaZPzB6VPZvHIR5Xt3UV9XR/neXWxeuYgHp/s3YbfyHV+cw+a9JMOzM9m8chFHyvYS1yeBc2fPcOLoIa5O7t3uvMEtVVBZtmoN42bMIS1zKNExMaRlDmXcjDksW+W/Wp2BtnHDhsTVLzyeMndGVcyba3pemDujKmb1C4+nbNywwScDsx9//HH8+PHjr83IyMjcvn17PMD69esvHz58eMbQoUOvdyc3b629e/fG3nzzzdfl5ORk5OXl9QcoLi7uedttt107ZsyYAVlZWYPKy8u7xMfHm4qKirjdu3fHgSuXq3sbjz76aN8RI0ZkTJ06NQXg+PHj0ePGjRswcuTIjDvuuCP93Llz8tBDD/V78803L9u9e3dct27dhtbV1bFw4cJeS5cu9TrvxJtQD5JJIjLH209HNmyMOW6MGW+Muc56/Lu1fIcxZqb1fI0xposxZkijn4+s98YZY7Kt7tupxpgzbdl/pCYZt9lszH8kj93rF/PbWXewe/1i5j+SF1Hf3CNdR8+hpyo2q15bxW03DSWm/gIH39vFmWNHSO3bh+49urf7Fp2WKqh0hq7/tauLes//5671I7ITGrrECCOyExrm/3PX+rWrizqU4Nytrq5ONm3a9NmCBQsOL126tGd9fT3PPPPM1e++++7+HTt2fPLCCy8kudPO/fznP+/r7m7ds2ePx6vIxx57rN/zzz9/cPv27fvq6up4++23LwO44oor6rds2fLp/fffX7VmzZruN9xwQ+2cOXMcs2bNSk1LS8tau3btxSvae+6558SOHTv2ffzxx/HHjx+PLiws7DVhwoRTH3zwwb5BgwbVLFu2rMctt9zi3LJlS+KmTZsShw0bdmbbtm2XvfPOO4m33nprm/5OQ+h3t0YD3YjAih+RfD+fJkIIfx05h417SQDX4xh4e8fb/P4/VrqGGQbFk3BFwle36LQj5aKrggoUFhZTVlZBenoqBQVfTdrpDF3/R44cjBs8qGeTm+8HD7qs4ciRgx1KcO6WlZV1FiAtLe38yZMnYxwOR0x5eXnct771rYEAJ06ciPniiy9i4OvdrZs3b/7atOrPPvus6/33358GUF1dHWWz2ZwAQ4YMOQuQmpp6ftu2bQkAM2fOPDFz5swThw4dihk/fvzA733ve6cAbrzxxrMAffr0uXD8+PHozz77LO7hhx/+EuCmm26q3rp1a7cpU6acXLFiRa/u3bvXzZ0717F58+ZuDoejyzXXXNPmRAWhHiSPGmO+NmM0Evg7P6vyzm7fRGHhmkZ/WKfqbEgfulTWI1/nDb5UBZUHp09lweJFjJsxh/7WmOTmlYuY/0heq7a9yW5nzapCKirKSE1NZ+r0gpCru9m3b0rt7o+rYkZkJ7hn3bP747NRffumdCjBuZu7JBaAMYbk5OS6a6+99tzWrVv3x8XFGXdKudZu79prrz1XVFR0eODAgecbGhqor69nyZIlPUXk4jaMMVJZWRlt7a++V69e9V26dLn4flTUVx2gxhgGDBhQu23btoTRo0ef3bZtW8J1111X26tXr/rTp09Hx8bGmgkTJjh/8YtfXJ2S0r5/k1APkhF3BekWyUnGQ5ndvon8/OXEx88lKSkbh6OU/PyFFBWhgdJHWuolCVRPg3sfy1YtZmP5QdLSUlrdbbzJbmf5knzm5sWTfX0SpZ84WLgkHygKqUD5vWn5lQuefzxl/j+7riB3f3w2asHz56Knzcxvc4Lz1oiOjuYnP/nJ0ZtvvnlgVFSU6dmzZ92rr75aBq7u1ueeey4ZYN68eUc9ff7Xv/714ZkzZ6aeP39eoqKiWLVqVbmn9U6cOBE9derUa4wx1NfXy2OPPebw1qb8/PwvJ02adM26det6XHXVVReeeeYZB0BGRkZNfHy86dKlC126dGkYPXp0u1L3hXQyARHp4R4rjARtSXAeLsLtvsLc3PtxOGaTmPhVF5zTuYvk5GJKSlaE3fG0JBjH03jmduNekqInOj5zO1DHc/+0XGZPcTA066tAv2uPk+IXk1mxuuVE+W3R0QTnvpjd2tmFbTKBSAqQKjS0dNuA6rhI6CWpqCgj+/qmXcbZ1ydQURF6E+vumjjRqUHRf0I6SCrla+npqTgcpU2uJBvfNtAW4TBmFSzBnLxlt9tZtmoN5VYX64PTp7a5Lamp6ZR+0vRKsvSTalJTw39inWqbUL8FRCmfaum2gdZyj1nNnuLg9ZVJzJ7iYPmSfDZpRpegcicQGDzpEX649FUGT3qEBYuXtznTztTpBSxcXsOuPU7q6hrYtcfJwuU1TJ0ekIl1DQ0NDRE7HyPUWP/WDd7e1yCpOhXXbQN5JCcXU1V1G8nJxe3K9blmVSFz8+IZmpVITEwUQ7MSmZsXz5pVwU0G0TwNm9PZuXrhfJVAYLzNRt7DRRS/mMxtM6oofjGZvIcDNmlnT1VV1RUaKP2voaFBqqqqruASGdO0u1V1Ope6baC1QnHMylMatqPH9mC328NqPLAjyssPkushgcDGdiQQGG+zBaX7vK6ubqbD4XjB4XBkoRcy/tYA7Kmrq5vpbQUNksojX4zrRLJQHLNqfBUFkJY5lKi9VSxbtabTnLtISCAwfPjwY8CdwW6HctFvKWEmEJVDfDWu09p9hWOVhiCPWXnkKQ1bbFx8RKVha0mwcwdvstu5PzeXcZmZ3J+bq2PUEUCvJMNIoCqHeLoicY3rLPbpfsK5SoOrG66I4kazW/MeDu7sVk9XUedra8LqKqqjOpJAoKM22e0sz89nbnw82UlJlDocLMzPh6LQSkCg2kavJMNIWyqHdOSKM1CJocO9SsN4m40Vq0vY/PZeVqwuafMfwpauOlp7Dt3rvf/hmyyaMxH7i89fvIo6/WVlp6vAYrPZeGn1Sv6ydTMvrW59QeeOWlNYyNz4eIYmJhITFcXQxETmxsezpjC8K/t0dhokw0hrK4d4qsLQlsK27iuSxvwxrtMZqjR4477qmO1w8HpSEmqggxAAABQGSURBVLMdDpbnf3ULSWvPYeP10h5Lo8fEBP77D0/yzOQb2b1+MX2u6hXyV+WRoqKsjOyEpv8/sxMSqCgLvQQEqvU0SIaR9LR0qg9XN1nmqXJIR2tVBmpcJ1DBOBS1dNXR2nPYfL2+3+jLdd8fwIBB/Xhp9UoSE31SVlC1Qmp6OqXVTf9/llZXk5quCQjCmQbJMFIwq4CaLTU4K5w01Dd8VWZoVtPJIh2tVRmompDBnmQRTC1ddbT2HEZqXdJwNLWggIU1NexyOqlraGCX08nCmhqmFmhln3CmE3fCSEs5Md23bXzxRSVH3z5G6uB+dO/hKsTd1lqVgUgr1ppJFi3ditKeW1Xsdrvr37Dc+jecFfi8oqnp6ZQ6HAxtdKXX+KqjtfVGI7kuKXz9/E6dfHewm+TVeJsNioooLiykoqyM1PR08go0VWG40yAZZrwFr8YzRdPGTmblkh/yWf1B0gcbupztErK1Ki8VjFua/dqe2bGBmiHckqkFBSzMz2curivI0upqFtbUkGdddbS23mgk1yUNx+QIwUpAoPyn03a3ikgPEXlDRA5Yj929rFcvIh9ZP680Wn6NiPzF+vxLIhIbuNZ/XeOZooNH38YDP1xC34OZlD9XQfKeZJ+UKQq0lma/tmd2bEfHa31lvM1GXlERxcnJ3FZVRXFyMnmNbhWw2WwUPVFE8p5kqn5X5fUctna9cOTp/F7eq3fYzH5WkaEzX0nOBzYZYxaIyHzr9Y89rFdjjBniYfm/As8ZY/5LRH4H5AFL/NfcS2uejit71Hgyc27ht7PuoGSdb+vfBUpLKcbak4KsrLyMpAlN08kl9EugrMT3Y3gtdeu2dNXR2i7vYFbc8CdP57ezJUdQwddprySBu4BV1vNVwMTWflBEBBgHrG/P5/0hEmeKtnRM7Tnm1s4Q7qiO3oajPJ/fzpYcQQWfGGOC3YagEJGTxpgrG70+YYz5WperiNQBHwF1wAJjzAYR6QW8b4wZYK3TH/g/Y0yWh8/PAmYBJCUlDV+3bp1fjsfpdHL02Jdc3qs3sXHxnK+t4fSXlfS5qpfPbgNwOp1UVlVSe76WuNg4eif1RkTo1q2bT7bvaX+XOqb2HLPT6eTg0YNEJUYRFRtFw/kGGpwNpPRJITExkTNnzvjkeD4t+5QL8ReIjo2+uKz+fD1darowIH1Ah7ffWr46nmDwdH5jLtQQFxcbUbe2jB07dqcxZkSw26E8i+juVhGxA8ke3nqyDZtJMcZ8ISLpwGYRKQVOe1jP47cNY8xSYClARkaGGTNmTBt23Tb+TEput9uZ/9x84sfEfzVBZE0NCx5dQDCPydezW7ds2eKT4/nBvB+Q9FASUee/6qxpqG+g6ndV7N2+t8Pbby1fHU+weJrd+o//+I/BbpbqRCI6SBpjvP61FJFKEeljjDkqIn2AY1628YX1WCYiW4ChwH8DV4pIjDGmDugHfOGLNnfk9gR/jk01nvACuB7HQGVVpV/259bSMbXnmAMxhhcpt2YE+3aZ5udqy5YtAdu3UtC5xyRfAaZbz6cDG5uvICLdRSTOet4L+Adgr3H1Ub8JTLrU59sqlMexvN20Xnu+NkgtCm2tTfzQVnb7JnJz7yczcxy5ufdjt2/yUYs97St0fx+VCpTOHCQXALeKyAHgVus1IjJCRF6w1hkE7BCR3biC4gJjjLuv7MfAHBH5FOgJLO9og0Ll9gRPvE14iYuNC1KLQps/bs2w2zeRn78ch2M2SUmv43DMJj9/ud8CZSj/PioVKBHd3XopxpjjwNfK0xtjdgAzrefvAdnN17HeKwNyfNmmQN6e0Fbeblrv/WjvYDctZPm6W7ewcA3x8XNJTHSVwnI9zqWwsBib7Wu/yh0Wyr+PSgVKZ76SDDmBuj2hPbxdGUXSLMNQV1ZWQUJC0+9sCQnZlJVV+GV/ofz7qFSgaJAMIf4ax/IVm81GyboS9m7fS8m6koi8gT2UpaenUl3d9L7B6upS0tNT/bK/UP99VCoQNEiGkEhOMaY6rqBgKjU1C3E6d9HQUIfTuYuamoUUFPinaor+PirVicckQ1WkphhTHWezjaeoCAoLiykrqyA9PZWCgjy/jEd+tU/9fVSdmwZJpcKIzTber0FRKdWUdrcqpZRSXmiQVEoppbzQIKmUUkp5oUFSKaWU8kKDpFJhLpD5XJXqbDRIKtWM3W4nd3IumTmZ5E7O7XBCb19vr+m2A5vPVanORoOkUo04nU6fVr7wdyWNxvlco6JiSEwcSnz8XAoL1/hk+0p1dhoklWqksqrSp5Uv/F1JI9D5XJXqbDRIKtVI7flaj3Uzy8rbV/nCWx3O9m6vOX/nc7Xb7dw7bQbfHD2Oe6fN0FqSqtPRIKlUI3GxcT6tfOHvShr+zOdqt9tZsHg5gyc9wg+XvsrgSY+wYPFyDZSqU9EgqUJGKMzS7J3U26eVL/xdScOVzzWP5ORiqqpuIzm5mKIi3+RzXbZqDeNmzCEtcyjRMTGkZQ5l3Iw5LFul452q89DcrSokuGdpxsfPJSkpG4ejlPz8hRQVEdBcpYmJiRQ9UUTh0kLKSspIT0un4ImCdif5ttlsFOG77Xneh3/yuZaXHyR3YNPxzv4Ds9lYftDn+1IqVGmQVCGh8SxNwHqcS2FhccATevu68kW4VtJIS0vh0P5S0jKHXlx2aH8paWkpQWyVUoHVabtbRaSHiLwhIgesx+4e1hkrIh81+jknIhOt91aKyOeN3hsS+KOIHOE4S9Of9z+GggenT2XzykWU791FfV0d5Xt3sXnlIh6c7p/6lUqFos58JTkf2GSMWSAi863XP268gjHmTWAIuIIq8CnweqNV5hpj1geovREtPT0Vh6P04pUk+HaWpq+573+MHxNP0oQkHIdd9z8WETlFid3HsWzVYjaWHyQtLYX5j+RFzPEp1RqdOUjeBYyxnq8CttAsSDYzCfg/Y8xZ/zarcyoomEp+/kJgLgkJ2VRXl1qzNPOC3TSPGt//CLgex7iWR1IQCdeuYqV8RYwxwW5DUIjISWPMlY1enzDGfK3LtdH7m4FFxpgS6/VK4CagFtgEzDfG1Hr43CxgFkBSUtLwdevW+fQ4gu3MmTN069bNJ9tyOp1UVh6ntvY8cXGx9O7dk8TERJ9su7Vaezx/++RvxCTFIMjFZQZDXVUdN1x/gz+b2Ca+PD+hINKOB2Ds2LE7jTEjgt0O5VlEB0kRsQPJHt56EljV2iApIn2AvwJXG2MuNFrmAGKBpcBnxphfXKo9GRkZZt++fe06llC1ZcsWxowZE+xm+Exrjyd3ci6OLMfFK0kAZ4WT5D3JlKwr8WML26aznp9wIiIaJENYRE/cMcbYjDFZHn42ApVWoHMHvGOX2NRk4H/dAdLa9lHjUgusAHL8eSwqtPj7/kelVGiI6CDZgleA6dbz6cDGS6w7BXix8YJGAVaAicAeP7RRhSibzUbRE0Uk70mm6ndVJO9JpuiJyJm0o5Ry6cwTdxYA60QkDzgI3AMgIiOAh4wxM63XaUB/4K1mn/+DiCQBAnwEPBSYZqtQ0Z5JLXa73ZVYoNxKLDDLt4kFlFK+1WmvJI0xx40x440x11mPf7eW73AHSOt1uTGmrzGmodnnxxljsq3u26nGmDOBPgYVXvxdNkuFlki/j7az6LRBUqlA83fZLBU69AtR5NAgqVSA+Ltslgod+oUocmiQVCpA/F02S4UO/UIUOTRIKhUgettI56FfiCKHBkmlAkRvG+k89AtR5OjMt4AoFXCaC7VzCEQdURUYGiSVUsoDu93OslVrKLcqoDw4fWqbgpx+IYoMGiSVUqoZu93OgsXLGTdjDrkDszm0v5QFixcBaODrZHRMUimlmlm2ag3jZswhLXMo0TExpGUOZdyMOSxbtSbYTVMBpkFSKaWaKS8/SP+B2U2W9R+YTXn5wSC1SAWLBkmllGomLS2FQ/tLmyw7tL+UtLSUILVIBYsGSaWUaubB6VPZvHIR5Xt3UV9XR/neXWxeuYgHp08NdtNUgOnEHaWUasY9OWfZqsVstGa3zn8kTyftdEIaJJVSygO9hUOBdrcqpZRSXmmQVEoppbzQIKmUUkp5oUFSKaWU8kKDpFJKKeVFpw2SInKPiPxNRBpEZMQl1psgIvtE5FMRmd9o+TUi8hcROSAiL4lIbGBarpRSKlA6bZAE9gD/D3jb2woiEg0sBr4NZAJTRCTTevtfgeeMMdcBJ4A8/zZXKaVUoHXaIGmM+dgYs6+F1XKAT40xZcaY88B/AXeJiADjgPXWequAif5rrVJKqWDQZAKX1hc41Oj1YeCbQE/gpDGmrtHyvp42ICKzgFnWy1oR2eOntgZLL+DLYDfCh/R4QlukHQ9ARrAboLyL6CApInYg2cNbTxpjNrZmEx6WmUss//pCY5YCS6327DDGeB3/DEeRdkx6PKEt0o4HXMcU7DYo7yI6SBpjOppT6jDQv9HrfsAXuL7JXikiMdbVpHu5UkqpCNJpxyRb6QPgOmsmayzwXeAVY4wB3gQmWetNB1pzZaqUUiqMdNogKSL/JCKHgZuAP4nIn63lV4vIqwDWVeIPgT8DHwPrjDF/szbxY2COiHyKa4xyeSt2u9THhxEKIu2Y9HhCW6QdD0TmMUUMcV0UKaWUUqq5TnslqZRSSrVEg6RSSinlhQZJHxKR/xSRY43vhRSRHiLyhpW+7g0R6W4tFxEpttLd/VVEhgWv5a0jIo9aqfz2iMiLItI1nNPziciVIrJeRD4RkY9F5CZv5ytciEi0iOwSkRLrdTifn/4i8qZ1bv4mIvnW8rA+R27eUl6q0KJB0rdWAhOaLZsPbLLS122yXoMr1d111s8sYEmA2tguItIXmA2MMMZkAdG4ZvuGc3q+IuA1Y8z1wGBck7O8na9wkY/rONzC+fzUAY8ZYwYBNwKPWGkhw/0ctZTyUoUQDZI+ZIx5G/h7s8V34UpbB03T190F/N64vI/rvss+gWlpu8UA8SISA1wGHCVM0/OJyOXAt7BmJRtjzhtjTuL9fIU8EekHfAd4wXod1ukTjTFHjTEfWs+duIJ/X8L4HDXiMeVlkNukPNAg6X+9jTFHwfWfHrjKWu4p5Z3H1HahwBhzBPh34CCu4HgK2Ekr0/OFoHSgClhhdU++ICIJeD9f4aAQmAc0WK9bnT4x1IlIGjAU+AvhfY7cwur/f2emQTJ4Wp3aLhRY4z53AdcAVwMJuLqKmgvZY2gmBhgGLDHGDAWqCcNuOzcRyQWOGWN2Nl7sYdVwOT8XiUg34L+BAmPM6WC3x0ci4tx0Bhok/a/S3Y1qPR6zlntLeReqbMDnxpgqY8wF4H+AUVjp+ax1Qv0YGjsMHDbG/MV6vR5X0PR2vkLdPwB3ikg5rq67cbiuLMP1/AAgIl1wBcg/GGP+x1ocrueosXD7/99paZD0v1dwpa2DpunrXgHus2a53giccnchhaiDwI0icpk11jUe2EuYpuczxjiAQyLirsDgPh5v5yukGWN+YozpZ4xJwzWharMx5vuE6fmBi2Oqy4GPjTGLGr0VlueoGY8pL4PcJuWBZtzxIRF5ERiDq5xPJfBzYAOwDkjBFWjuMcb83foD8Ftcs2HPAvcbY0K6GoCIPAXci2vW4S5gJq5xlP8CeljLphpjaoPWyDYQkSG4JrnEAmXA/bi+OH7tfAWtke0gImOAx40xuSKSTvien5uBrUApX42zPoFrXDKszxGAiNyB62o/GvhPY8wzQW6S8kCDpFJKKeWFdrcqpZRSXmiQVEoppbzQIKmUUkp5oUFSKaWU8kKDpFJKKeVFTMurKBXZRKQnrkTZAMlAPa6UdQA5Vm5NX+3rAeBV6z7NtnzuT8DlxpjRvmqLUqplGiRVp2eMOQ4MARCRfwHOGGP+3U+7ewD4EGh1kLSCeDZwTkRSjDEH/dQ2pVQz2t2qlBci8oSI/MB6/hsRed16fruIrLSef1tEtonIh1a9xgRr+UgReUtEdorI/4lIbxG5F1cwfklEPhKRWBFZKCJ7rZqi/+qlKZNwJaV4CVcyB3f7rrNqRW4XkadF5KS1PEpEFomr7mepiEzysl2lVAs0SCrl3duAu3tzGF/lQb0Z2CoiV+FKij7eGDMM+CuQLyJxuGpV3m2MGQ6sAZ42xrwEfATca4wZAnQH7gBuMMZ8A/iVl3ZMAV60fqY0Wv4b4N+NMTm4Mjy53YOrRuFg4FbgOautSqk20u5Wpbz7ABgpIlcCZ4BPcZVrGg2sxpXgPRN4z5VlkFjgHWAQcANgt5ZH40po3dzfcaVbW2aNOZY0X8Eqdp0CvG+MMSISLSLXG2M+Ab6JK8gCrAV+aT2/GVhrjKkHHCLyDjACeLUD/xZKdUoaJJXywhhTKyJfAPcB7wL7cSVCTzHG7BeRG4DXjDHTGn9ORIYCf21pko0x5oKIjMB1tfdd4GHgtmar3YurLuTnVsC9wlr3Xy6xaU9lmJRS7aDdrUpd2tvA49bjVuARXMWmAd4DbrGSiCMiCSJyHa5qIn1FJMdaHmsFVAAnkGgtT8Q1Y7UEeBTXVWpzUwCbMSbNqvCRw1ddrtuBf7Kef7dZm79rXXX2xlVGK6ST5ysVqjRIKnVpW4HewF+MMUeAC9YyjDGVQB6uiTi7cQXNgVaVjUnAImv5LlxdowArgBdE5CNcY5J/stbZDMxpvGMRuRbXLSkXA5wx5gBQKyLDgdnAj0VkO3AVcMpabT3wCbAbsANzjDHhWHNRqaDTKiBKhSlrJu1Za6xyKvBPxpi7g90upSKJjkkqFb5GAoUiEgWcwFUPUynlQ3olqZRSSnmhY5JKKaWUFxoklVJKKS80SCqllFJeaJBUSimlvNAgqZRSSnnx/wHj0eKt3jqDaQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# IB Creating Sentiment Analysis for Top Ten Influences (07/02/2018) Scatter Plot\n", + "\n", + "# Clear space for the scatter plot\n", + "# plt.close(1)\n", + "\n", + "# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\n", + "bbc_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@katyperry\"] \n", + "cbs_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@BarackObama\"] \n", + "# For each of media sources following the first one in the media dataset reset index to 0-99\n", + "# in order to plot in the common area\n", + "###print(\"_____________START HERE__________________________\")\n", + "cbs_tweet_data_df = cbs_tweet_data_df.reset_index(drop=True)\n", + "###print(cbs_tweet_data_df)\n", + "###print(\"_____________STOP HERE__________________________\")\n", + "\n", + "cnn_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@taylorswift13\"] \n", + "cnn_tweet_data_df = cnn_tweet_data_df.reset_index(drop=True)\n", + "fox_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@ladygaga\"] \n", + "fox_tweet_data_df = fox_tweet_data_df.reset_index(drop=True)\n", + "nytimes_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@TheEllenShow\"] \n", + "nytimes_tweet_data_df = nytimes_tweet_data_df.reset_index(drop=True)\n", + "\n", + "# Get the values for each part of the scatter plot by \"Media Source\"\n", + "# BBC\n", + "# Get values for X axis\n", + "bbc_tweet_ago_data = bbc_tweet_data_df.index\n", + "###print(bbc_tweet_ago_data)\n", + "# Get values for Y axis\n", + "bbc_tweet_polarity_data = bbc_tweet_data_df[\"Compound\"] \n", + "###print(bbc_tweet_polarity_data)\n", + "####################################################################\n", + "# CBS\n", + "# Get values for X axis\n", + "cbs_tweet_ago_data = cbs_tweet_data_df.index \n", + "###print(cbs_tweet_ago_data)\n", + "# Get values for Y axis\n", + "cbs_tweet_polarity_data = cbs_tweet_data_df[\"Compound\"] \n", + "###print(cbs_tweet_polarity_data)\n", + "####################################################################\n", + "# CNN\n", + "# Get values for X axis\n", + "cnn_tweet_ago_data = cnn_tweet_data_df.index\n", + "###print(cnn_tweet_ago_data)\n", + "# Get values for Y axis\n", + "cnn_tweet_polarity_data = cnn_tweet_data_df[\"Compound\"] \n", + "###print(cnn_tweet_polarity_data)\n", + "####################################################################\n", + "# FOX\n", + "# Get values for X axis\n", + "fox_tweet_ago_data = fox_tweet_data_df.index\n", + "###print(fox_tweet_ago_data)\n", + "# Get values for Y axis\n", + "fox_tweet_polarity_data = fox_tweet_data_df[\"Compound\"] \n", + "###print(fox_tweet_polarity_data)\n", + "####################################################################\n", + "# New York Times\n", + "# Get values for X axis\n", + "nytimes_tweet_ago_data = nytimes_tweet_data_df.index\n", + "###print(nytimes_tweet_ago_data)\n", + "# Get values for Y axis\n", + "nytimes_tweet_polarity_data = nytimes_tweet_data_df[\"Compound\"] \n", + "###print(nytimes_tweet_polarity_data)\n", + "####################################################################\n", + "\n", + "# Organize the layout for the scatter plot\n", + "plt.title(\"Sentiment Analysis of Top 5 Influencers Tweets (07/02/2018)\", Fontsize= 14 )\n", + "# Labels for the scatter plot circles for each media_user\n", + "labels = [\"KatyPerry\" \"BarackObama\" \"TaylorSwift\" \"LadyGaga\" \"TheEllenShow\"]\n", + "# Colors for the scatter plot circles for each media_user\n", + "colors = [\"lightskyblue\",\"green\",\"red\", \"blue\", \"gold\"]\n", + "\n", + "# Define X and Y of the scatter plot\n", + "plt.xlabel(\"Tweets Ago\")\n", + "plt.ylabel(\"Tweet Polarity\")\n", + "\n", + "# Define X and Y limits\n", + "plt.xlim(100, 0)\n", + "plt.ylim( -1.0, 1.0 )\n", + "\n", + "# Writing data to the same Scatter Plot 5 times, for each media user ( \"BBC\", \"CBS\",\"CNN\", \"Fox\",\"New York Times\")\n", + "plt.scatter( bbc_tweet_ago_data, bbc_tweet_polarity_data, c=\"lightskyblue\", edgecolor=\"black\", \n", + " linewidths=1, alpha =0.75, marker='o', label=\"KatyPerry\")\n", + "plt.scatter( cbs_tweet_ago_data, cbs_tweet_polarity_data, c=\"green\", edgecolor=\"black\", \\\n", + " linewidths=1, alpha=0.75, marker='o', label=\"BarackObama\")\n", + "plt.scatter( cnn_tweet_ago_data, cnn_tweet_polarity_data, c=\"red\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"TaylorSwift\")\n", + "plt.scatter( fox_tweet_ago_data, fox_tweet_polarity_data, c=\"blue\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"LadyGaga\")\n", + "plt.scatter( nytimes_tweet_ago_data, nytimes_tweet_polarity_data, c=\"gold\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"TheEllenShow\")\n", + " \n", + "# Create the legend of the Scatter plot\n", + "legend = plt.legend(fontsize=\"small\", loc=\"center left\", title=\"Top 5 Influencers\", bbox_to_anchor=(1, 0.5))\n", + "plt.tight_layout()\n", + "\n", + "plt.grid(True)\n", + "\n", + "# Save the figure with the Scatter Plot\n", + "plt.savefig(\"InfluencesSentimentsTweeterPolarityScatterPlot.png\")\n", + "\n", + "# Show the Scatter Plot\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CompoundDateNegativeNeutralPositiveTweet TextTweets AgoTwitter
0-0.2263Mon Jul 02 07:45:17 +0000 20180.2790.5050.215On one hand: HAHAHAHAHAHAHA\\n\\nOn the other ha...0@Noahpinion
10.3252Mon Jul 02 07:43:12 +0000 20180.0000.7940.206@Alby_Tross Then they won't end capitalism, be...1@Noahpinion
20.5719Mon Jul 02 07:42:06 +0000 20180.0000.4600.540@GenericJesse Yes, it was a joek... ;-)2@Noahpinion
30.7506Mon Jul 02 07:37:28 +0000 20180.0000.6970.303@Evolving_Ego Look at the politicians now supp...3@Noahpinion
40.5719Mon Jul 02 07:34:25 +0000 20180.0000.5150.485@richardcastiel Yes, that was the joke... ;-)4@Noahpinion
50.2960Mon Jul 02 07:30:35 +0000 20180.0000.6940.306@liamlburke Yep, that was my thought.5@Noahpinion
60.6908Mon Jul 02 07:28:54 +0000 20180.0000.6590.341@liamlburke Yes. But I also think a modest UBI...6@Noahpinion
70.7739Mon Jul 02 07:27:58 +0000 20180.0000.5980.402@liamlburke Which is why all the Christians su...7@Noahpinion
8-0.7088Mon Jul 02 07:25:31 +0000 20180.2470.6950.058Mark your calendars, folks!\\n\\nIf no civil war...8@Noahpinion
90.3182Mon Jul 02 07:24:18 +0000 20180.0000.6350.365@Evolving_Ego All of it. :-)9@Noahpinion
\n", + "
" + ], + "text/plain": [ + " Compound Date Negative Neutral Positive \\\n", + "0 -0.2263 Mon Jul 02 07:45:17 +0000 2018 0.279 0.505 0.215 \n", + "1 0.3252 Mon Jul 02 07:43:12 +0000 2018 0.000 0.794 0.206 \n", + "2 0.5719 Mon Jul 02 07:42:06 +0000 2018 0.000 0.460 0.540 \n", + "3 0.7506 Mon Jul 02 07:37:28 +0000 2018 0.000 0.697 0.303 \n", + "4 0.5719 Mon Jul 02 07:34:25 +0000 2018 0.000 0.515 0.485 \n", + "5 0.2960 Mon Jul 02 07:30:35 +0000 2018 0.000 0.694 0.306 \n", + "6 0.6908 Mon Jul 02 07:28:54 +0000 2018 0.000 0.659 0.341 \n", + "7 0.7739 Mon Jul 02 07:27:58 +0000 2018 0.000 0.598 0.402 \n", + "8 -0.7088 Mon Jul 02 07:25:31 +0000 2018 0.247 0.695 0.058 \n", + "9 0.3182 Mon Jul 02 07:24:18 +0000 2018 0.000 0.635 0.365 \n", + "\n", + " Tweet Text Tweets Ago Twitter \n", + "0 On one hand: HAHAHAHAHAHAHA\\n\\nOn the other ha... 0 @Noahpinion \n", + "1 @Alby_Tross Then they won't end capitalism, be... 1 @Noahpinion \n", + "2 @GenericJesse Yes, it was a joek... ;-) 2 @Noahpinion \n", + "3 @Evolving_Ego Look at the politicians now supp... 3 @Noahpinion \n", + "4 @richardcastiel Yes, that was the joke... ;-) 4 @Noahpinion \n", + "5 @liamlburke Yep, that was my thought. 5 @Noahpinion \n", + "6 @liamlburke Yes. But I also think a modest UBI... 6 @Noahpinion \n", + "7 @liamlburke Which is why all the Christians su... 7 @Noahpinion \n", + "8 Mark your calendars, folks!\\n\\nIf no civil war... 8 @Noahpinion \n", + "9 @Evolving_Ego All of it. :-) 9 @Noahpinion " + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IB Prepare Results Dataframe for the scatter plot\n", + "Twitters_overall_results_df = pd.DataFrame.from_dict(Sentiment_array_10tw)\n", + "Twitters_overall_results_df.head(10) " + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'Twitter'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m~\\AppData\\Local\\conda\\conda\\envs\\PythonData\\lib\\site-packages\\pandas\\core\\indexes\\base.py\u001b[0m in \u001b[0;36mget_loc\u001b[1;34m(self, key, method, tolerance)\u001b[0m\n\u001b[0;32m 3063\u001b[0m \u001b[1;32mtry\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 3064\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 3065\u001b[0m \u001b[1;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[1;34m()\u001b[0m\n", + "\u001b[1;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[1;34m()\u001b[0m\n", + "\u001b[1;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[1;34m()\u001b[0m\n", + "\u001b[1;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[1;34m()\u001b[0m\n", + "\u001b[1;31mKeyError\u001b[0m: 'Twitter'", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 6\u001b[0m \u001b[1;31m# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 7\u001b[1;33m \u001b[0mtw1_tweet_data_df\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mTwitters_overall_results_df\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mTwitters_overall_results_df\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'Twitter'\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m==\u001b[0m \u001b[1;34m\"@Noahpinion\"\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 8\u001b[0m \u001b[0mtw2_tweet_data_df\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mTwitters_overall_results_df\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mTwitters_overall_results_df\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'Twitter'\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m==\u001b[0m \u001b[1;34m\"@BDUTT\"\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 9\u001b[0m \u001b[1;31m# For each of media sources following the first one in the media dataset reset index to 0-99\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32m~\\AppData\\Local\\conda\\conda\\envs\\PythonData\\lib\\site-packages\\pandas\\core\\frame.py\u001b[0m in \u001b[0;36m__getitem__\u001b[1;34m(self, key)\u001b[0m\n\u001b[0;32m 2686\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_getitem_multilevel\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2687\u001b[0m \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 2688\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_getitem_column\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 2689\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2690\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0m_getitem_column\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32m~\\AppData\\Local\\conda\\conda\\envs\\PythonData\\lib\\site-packages\\pandas\\core\\frame.py\u001b[0m in \u001b[0;36m_getitem_column\u001b[1;34m(self, key)\u001b[0m\n\u001b[0;32m 2693\u001b[0m \u001b[1;31m# get column\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2694\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mis_unique\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 2695\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_get_item_cache\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 2696\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2697\u001b[0m \u001b[1;31m# duplicate columns & possible reduce dimensionality\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32m~\\AppData\\Local\\conda\\conda\\envs\\PythonData\\lib\\site-packages\\pandas\\core\\generic.py\u001b[0m in \u001b[0;36m_get_item_cache\u001b[1;34m(self, item)\u001b[0m\n\u001b[0;32m 2484\u001b[0m \u001b[0mres\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mcache\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2485\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[1;32mis\u001b[0m \u001b[1;32mNone\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 2486\u001b[1;33m \u001b[0mvalues\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_data\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 2487\u001b[0m \u001b[0mres\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_box_item_values\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mvalues\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2488\u001b[0m \u001b[0mcache\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mitem\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mres\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32m~\\AppData\\Local\\conda\\conda\\envs\\PythonData\\lib\\site-packages\\pandas\\core\\internals.py\u001b[0m in \u001b[0;36mget\u001b[1;34m(self, item, fastpath)\u001b[0m\n\u001b[0;32m 4113\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4114\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0misna\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 4115\u001b[1;33m \u001b[0mloc\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4116\u001b[0m \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4117\u001b[0m \u001b[0mindexer\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0marange\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0misna\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32m~\\AppData\\Local\\conda\\conda\\envs\\PythonData\\lib\\site-packages\\pandas\\core\\indexes\\base.py\u001b[0m in \u001b[0;36mget_loc\u001b[1;34m(self, key, method, tolerance)\u001b[0m\n\u001b[0;32m 3064\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3065\u001b[0m \u001b[1;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 3066\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_maybe_cast_indexer\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 3067\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3068\u001b[0m \u001b[0mindexer\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_indexer\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mmethod\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mmethod\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mtolerance\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mtolerance\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[1;34m()\u001b[0m\n", + "\u001b[1;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[1;34m()\u001b[0m\n", + "\u001b[1;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[1;34m()\u001b[0m\n", + "\u001b[1;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[1;34m()\u001b[0m\n", + "\u001b[1;31mKeyError\u001b[0m: 'Twitter'" + ] + } + ], + "source": [ + "# IB Creating Sentiment Analysis for Top Ten Influences (07/02/2018) Scatter Plot\n", + "\n", + "# Clear space for the scatter plot\n", + "# plt.close(1)\n", + "\n", + "# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\n", + "tw1_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@Noahpinion\"] \n", + "tw2_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@BDUTT\"] \n", + "# For each of media sources following the first one in the media dataset reset index to 0-99\n", + "# in order to plot in the common area\n", + "###print(\"_____________START HERE__________________________\")\n", + "tw2_tweet_data_df = tw2_tweet_data_df.reset_index(drop=True)\n", + "###print(cbs_tweet_data_df)\n", + "###print(\"_____________STOP HERE__________________________\")\n", + "\n", + "tw3_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@ProfessorChic\"] \n", + "tw3_tweet_data_df = tw3_tweet_data_df.reset_index(drop=True)\n", + "tw4_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@haroldpollack\"] \n", + "tw4_tweet_data_df = tw4_tweet_data_df.reset_index(drop=True)\n", + "tw5_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@CoryBooker\"] \n", + "tw5_tweet_data_df = tw5_tweet_data_df.reset_index(drop=True)\n", + "\n", + "# Get the values for each part of the scatter plot by \"Media Source\"\n", + "# BBC\n", + "# Get values for X axis\n", + "tw1_tweet_ago_data = tw1_tweet_data_df.index\n", + "###print(bbc_tweet_ago_data)\n", + "# Get values for Y axis\n", + "tw1_tweet_polarity_data = tw1_tweet_data_df[\"Compound\"] \n", + "###print(bbc_tweet_polarity_data)\n", + "####################################################################\n", + "# CBS\n", + "# Get values for X axis\n", + "tw2_tweet_ago_data = tw2_tweet_data_df.index \n", + "###print(cbs_tweet_ago_data)\n", + "# Get values for Y axis\n", + "tw2_tweet_polarity_data = tw2_tweet_data_df[\"Compound\"] \n", + "###print(cbs_tweet_polarity_data)\n", + "####################################################################\n", + "# CNN\n", + "# Get values for X axis\n", + "tw3_tweet_ago_data = tw3_tweet_data_df.index\n", + "###print(cnn_tweet_ago_data)\n", + "# Get values for Y axis\n", + "tw3_tweet_polarity_data = tw3_tweet_data_df[\"Compound\"] \n", + "###print(cnn_tweet_polarity_data)\n", + "####################################################################\n", + "# FOX\n", + "# Get values for X axis\n", + "tw4_tweet_ago_data = tw4_tweet_data_df.index\n", + "###print(fox_tweet_ago_data)\n", + "# Get values for Y axis\n", + "tw4_tweet_polarity_data = tw4_tweet_data_df[\"Compound\"] \n", + "###print(fox_tweet_polarity_data)\n", + "####################################################################\n", + "# New York Times\n", + "# Get values for X axis\n", + "tw5_tweet_ago_data = tw5_tweet_data_df.index\n", + "###print(nytimes_tweet_ago_data)\n", + "# Get values for Y axis\n", + "tw5_tweet_polarity_data = tw5_tweet_data_df[\"Compound\"] \n", + "###print(nytimes_tweet_polarity_data)\n", + "####################################################################\n", + "\n", + "# Organize the layout for the scatter plot\n", + "plt.title(\"Sentiment Analysis of Top 5 Twitters Tweets (07/02/2018)\", Fontsize= 14 )\n", + "# Labels for the scatter plot circles for each media_user\n", + "labels = [\"Noahpinion\" \"BDUTT\" \"ProfessorChic\" \"HaroldPollack\" \"CoryBooker\"]\n", + "# Colors for the scatter plot circles for each media_user\n", + "colors = [\"lightskyblue\",\"green\",\"red\", \"blue\", \"gold\"]\n", + "\n", + "# Define X and Y of the scatter plot\n", + "plt.xlabel(\"Tweets Ago\")\n", + "plt.ylabel(\"Tweet Polarity\")\n", + "\n", + "# Define X and Y limits\n", + "plt.xlim(100, 0)\n", + "plt.ylim( -1.0, 1.0 )\n", + "\n", + "# Writing data to the same Scatter Plot 5 times, for each media user ( \"BBC\", \"CBS\",\"CNN\", \"Fox\",\"New York Times\")\n", + "plt.scatter( tw1_tweet_ago_data, tw1_tweet_polarity_data, c=\"lightskyblue\", edgecolor=\"black\", \n", + " linewidths=1, alpha =0.75, marker='o', label=\"Noahpinion\")\n", + "plt.scatter( tw2_tweet_ago_data, tw2_tweet_polarity_data, c=\"green\", edgecolor=\"black\", \\\n", + " linewidths=1, alpha=0.75, marker='o', label=\"BDUTT\")\n", + "plt.scatter( tw3_tweet_ago_data, tw3_tweet_polarity_data, c=\"red\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"ProfessorChic\")\n", + "plt.scatter( tw4_tweet_ago_data, tw4_tweet_polarity_data, c=\"blue\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"HaroldPollack\")\n", + "plt.scatter( tw5_tweet_ago_data, tw5_tweet_polarity_data, c=\"gold\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"CoryBooker\")\n", + " \n", + "# Create the legend of the Scatter plot\n", + "legend = plt.legend(fontsize=\"small\", loc=\"center left\", title=\"Top 5 Influencers\", bbox_to_anchor=(1, 0.5))\n", + "plt.tight_layout()\n", + "\n", + "plt.grid(True)\n", + "\n", + "# Save the figure with the Scatter Plot\n", + "plt.savefig(\"TwittersSentimentsTweeterPolarityScatterPlot.png\")\n", + "\n", + "# Show the Scatter Plot\n", + "plt.show()" ] }, { @@ -2090,9 +3052,29 @@ "metadata": {}, "outputs": [], "source": [ - "# Version: 1.0\n", - "# Date: Fri June 29, 2018 \n", - "# Time: 3:50 PM\n", + "# Version: 2.0\n", + "# Date: Sunday 7/1\n", + "# Time: 03:40 PM\n", + "# Functionalities: \n", + "# A) Data Analysis\n", + "# 1. Created dataframe.\n", + "# 2. Sorting\n", + "# B) Sentiment Analysis\n", + "\n", + "\n", + "# Pending items:\n", + "# Data Cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Version: 3.0 - IB\n", + "# Date: Monday 7/1\n", + "# Time: 12:55 AM\n", "# Functionalities: \n", "# A) Data Analysis\n", "# 1. Created dataframe.\n", diff --git a/.ipynb_checkpoints/MainIB-checkpoint.ipynb b/.ipynb_checkpoints/MainIB-checkpoint.ipynb new file mode 100644 index 0000000..451a145 --- /dev/null +++ b/.ipynb_checkpoints/MainIB-checkpoint.ipynb @@ -0,0 +1,952 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Data Analysis of the Influencers:\n", + "# 2. Sentiment Analysis of the Influencers: \n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import the Dependencies\n", + "import tweepy\n", + "import json\n", + "import numpy as np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "# import time\n", + "from datetime import datetime, timezone\n", + "# import seaborn as sns\n", + "from os import path, makedirs # fetch path and makedirs function from os file\n", + "import csv # fetch csv file\n", + "from glob import glob # fetching glob function only from the glob lib" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import keys from the config file\n", + "from config import consumer_key, consumer_secret, access_token, access_token_secret" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# # Twitter API Keys\n", + "# consumer_key = 'Your Key'\n", + "# consumer_secret = 'Your Key'\n", + "# access_token = 'Your Key'\n", + "# access_token_secret = 'Your Key'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import and Initialize Sentiment Analyzer\n", + "from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer\n", + "analyzer = SentimentIntensityAnalyzer()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Setup Tweepy API Authentication\n", + "auth = tweepy.OAuthHandler(consumer_key, consumer_secret)\n", + "auth.set_access_token(access_token, access_token_secret)\n", + "api = tweepy.API(auth, parser=tweepy.parsers.JSONParser())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Load and read csv file containing the details of the Influencers \n", + "influencer_data_load = \"RawData/SentimentInfluencerInputData.csv\"\n", + "influencer_data_read = pd.read_csv(influencer_data_load)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# for index, row in Influencers_DF.iterrows():\n", + "Data_Influencers_DF = influencer_data_read\n", + "Not_Found = 0\n", + "\n", + "#SS - define variable for holding tweets for influencer\n", + "\n", + "all_tweet_listing = []\n", + "\n", + "print(\"-----------Start extraction!!!-----------\")\n", + "\n", + "for index, row in Data_Influencers_DF.iterrows():\n", + " target_user = row[\"Twitter_Handle\"]\n", + " Genre = row[\"Genre\"]\n", + " \n", + " try:\n", + " \n", + " #SS - retrieve top 200 tweets for influencer\n", + " \n", + " public_tweets = api.user_timeline(target_user, count=200, result_type=\"recent\")\n", + "\n", + " #SS - write to all_tweet_listing\n", + "\n", + " for tweet in public_tweets:\n", + " \n", + " Date = datetime.strptime(tweet['created_at'],'%a %b %d %H:%M:%S %z %Y').strftime('%m/%d/%Y')\n", + "\n", + " all_tweet_listing.append({\"Influencer\":target_user,\n", + " \"Date\": Date,\n", + " \"Genre\":Genre,\n", + " \"Tweet\":tweet[\"text\"]})\n", + " \n", + " user_account = api.get_user(target_user)\n", + " \n", + " user_geo_enabled = user_account[\"geo_enabled\"]\n", + " \n", + " if (user_geo_enabled == True):\n", + " Data_Influencers_DF.at[index, \"Loc\"] = user_account[\"location\"]\n", + " else:\n", + " Data_Influencers_DF.at[index, \"Loc\"] = 'NA'\n", + "\n", + " if (user_account[\"lang\"] == 'en'):\n", + " Data_Influencers_DF.at[index, \"Lang\"] = 'Eng'\n", + " else:\n", + " Data_Influencers_DF.at[index, \"Lang\"] = 'NA'\n", + " \n", + " Data_Influencers_DF.at[index, \"Created On\"] = datetime.strptime(user_account['created_at'],'%a %b %d %H:%M:%S %z %Y').strftime('%m/%d/%Y')\n", + " \n", + " Data_Influencers_DF.at[index, \"Age Of Account\"] = (datetime.now(timezone.utc) - datetime.strptime(user_account['created_at'],'%a %b %d %H:%M:%S %z %Y')).days\n", + " \n", + " \n", + " # Data_Influencers_DF.at[index, \"Real Name\"] = user_real_name\n", + " Data_Influencers_DF.at[index, \"Tweets\"] = user_account[\"statuses_count\"]\n", + " Data_Influencers_DF.at[index, \"Followers\"] = user_account[\"followers_count\"]\n", + " Data_Influencers_DF.at[index, \"Following\"] = user_account[\"friends_count\"]\n", + " Data_Influencers_DF.at[index, \"Favorites Count\"] = user_account[\"favourites_count\"]\n", + " \n", + " \n", + " \n", + " except tweepy.TweepError as e:\n", + " Not_Found = Not_Found + 1\n", + " print(f\"exception for {row['Twitter_Handle']}: {e}\")\n", + "\n", + "print(\"----------- Extraction Complete !!!-----------\") \n", + "print(Not_Found)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#SS -translate dict to a dataframe\n", + "tweet_listing_pd = pd.DataFrame.from_dict(all_tweet_listing)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#SS -stats for tweet listing for influencers. PLEASE DON'T REMOVE. Required to quantify digital footprint!\n", + "tweet_listing_pd.info()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#SS -top 1000 key words from Influencer tweets\n", + "\n", + "Top_1000 = pd.Series(' '.join(tweet_listing_pd['Tweet']).lower().split()).value_counts()[:1000]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "Top_1000.to_csv(\"RawData/Top_1000_keywords.csv\", index=True, header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#SS - Write to CSV for analysis\n", + "tweet_listing_pd.to_csv(\"RawData/TweetListings.csv\", index=False, header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# #SS - define target tags for social and entertainment\n", + "\n", + "# social_target_tags = [\"#FamiliesBelongTogetherMarch\",\"#gun\",\"gun\",\"shooting\",\"gun-control\",\"election\",\"#metoo\",\"metoo\",\"FamiliesBelongTogetherMarch\",\"PrideMonth\",\"#PrideMonth\",\"FamiliesBelongTogether\",\"ChildreninCages\",\"UniteTheFamilies\",\"WeCare\"]\n", + "\n", + "# entertainment_target_tags = [\"#SocialMediaDay\",\"SocialMediaDay\",\"WorldCup\",\"#WorldCup\",\"#fifa\",\"fifa\", \"#worldcup2018russia\",\"#PostASongLyricYouLove\"]\n", + "\n", + "# #SS - define lists to hold tweets based on tags\n", + "\n", + "# social_tweet_list_dict = []\n", + "\n", + "# entertainment_tweet_list_dict = []\n", + "\n", + "# for index, row in tweet_listing_pd.iterrows():\n", + " \n", + "# tweet_listing_filtered = [tweet_listing_pd[tweet_listing_pd['Tweet'].str.contains(x)] for x in target_tags]\n", + " \n", + "# for tweet_list in tweet_listing_filtered:\n", + "# Date = tweet_list[\"Date\"]\n", + "# Genre = tweet_list[\"Genre\"]\n", + "# Influencer = tweet_list[\"Influencer\"]\n", + "# Tweet = tweet_list[\"Tweet\"]\n", + "# tweet_list_dict.append({\n", + "# \"Data\" : Data,\n", + "# \"Genre\":Genre,\n", + "# \"Influencer\": Influencer,\n", + "# \"Tweet\" : Tweet\n", + "# })" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Remove missing values.\n", + "Data_Influencers_DF.dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "# Grouped on Genre \n", + "Data_Influencers_DF['Average Tweets'] = Data_Influencers_DF['Tweets']\n", + "AggregatedGenre= Data_Influencers_DF.groupby([\"Genre\"]).agg({'Genre': 'count', 'Tweets': 'sum', 'Followers': 'sum','Average Tweets':'mean','Age Of Account':'mean'})\n", + "AggregatedGenre\n", + "AggregatedGenre.sort_values(['Followers'], ascending=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Sorting on Average Tweets and grouped on Genere\n", + "AggregatedGenre.sort_values(['Average Tweets'],ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# People who are top ten Influencer who tweet more\n", + "top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(10)\n", + "top_ten_twitters" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Top ten Influencer who who have more Followers\n", + "top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(10)\n", + "top_ten_influencer" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Still Working test cell\n", + "# to find the handle of followers of the top most \n", + "# active Influencer so that we can send the tweet through a bot.\n", + "# top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))\n", + "# import time\n", + "# ids = []\n", + "# for page in tweepy.Cursor(api.followers_ids, top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))).pages():\n", + "# ids.extend(page)\n", + "# time.sleep(60)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Sentiment Analysis of the Influencers: " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "###\n", + "# Influencers = influencer_data_read\n", + "# s = Influencers.iloc[:,0]\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Scatter Plot for Sentimental Analysis of Top 5 Influences last 100 tweets " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# IB People who are top 5 Influencer, with the greatest number of followers\n", + "top_5_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(5)\n", + "top_5_influencer" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#IB Working Module -- Extract the first 100 tweets of the top ten Influencers\n", + "\n", + "# Extract the first 100 tweets of the Influencers\n", + "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", + "Influencers = []\n", + "Influencers = top_5_influencer[\"Twitter_Handle\"]\n", + "Influencers\n", + "\n", + "# IB Influencer's overall sentiments\n", + "Influencers_overall_results = []\n", + "\n", + "Sentiment_array_infl = []\n", + "\n", + "# IB loop through each top ten influencer\n", + "for user in Influencers:\n", + " \n", + " # IB Variables for holding compound sentiments\n", + " compound_list = []\n", + " \n", + " # IB Variable for max_id\n", + " oldest_tweet = None\n", + " \n", + " # Set the tweet count to 100\n", + " tweet_count = 0\n", + " print(\"Extracting tweets from %s\"%user)\n", + " \n", + " # Extract tweets up to 5 pages\n", + " for x in range(5):\n", + " ### IB - it is working - print(f\"For page number: '{x}' \")\n", + " influencer_tweets = api.user_timeline(user,page = x, max_id = oldest_tweet ) \n", + " \n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in influencer_tweets:\n", + " \n", + " #Calculate the compound, positive, negative and neutral values of each tweet\n", + " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", + " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", + " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", + " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", + " \n", + " # Save the Tweets in an array as a dictionery item \n", + " Sentiment_array_infl.append({\"Influencers\" : user,\n", + " \"Tweet Text\" : tweet[\"text\"],\n", + " \"Compound\" : compound,\n", + " \"Positive\" : pos,\n", + " \"Negative\" : neg,\n", + " \"Neutral\" : neu,\n", + " \"Date\" : tweet[\"created_at\"],\n", + " \"Tweets Ago\" : tweet_count\n", + " })\n", + " \n", + " # IB Collect compund sentiments for each Infuencer\n", + " compound_list.append(compound)\n", + " \n", + " #Decrease count of tweet by 1 in the reverse order\n", + " tweet_count += 1\n", + " \n", + " # IB get Tweet ID, subtract 1,assign to oldest_tweet\n", + " oldest_tweet = tweet[\"id\"] - 1\n", + " \n", + " # IB List for dictionary of results for _overall_ sentiments for each user\n", + " Influencers_overall_results.append({\"Influencer\": user, \"Overall Sentiment\": np.mean(compound_list)})\n", + "\n", + "print(\"-----------End of Extraction of Tweets !!!-----------\")\n", + "###Influencers_overall_results" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# IB Prepare Results Dataframe for the scatter plot\n", + "Influencers_overall_results_df = pd.DataFrame.from_dict(Sentiment_array_infl)\n", + "Influencers_overall_results_df.head(10) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# IB Creating Sentiment Analysis for Top Ten Influences (07/02/2018) Scatter Plot\n", + "\n", + "# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\n", + "inf1_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@katyperry\"] \n", + "inf2_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@BarackObama\"] \n", + "# For each of media sources following the first one in the media dataset reset index to 0-99\n", + "# in order to plot in the common area\n", + "inf2_tweet_data_df = inf2_tweet_data_df.reset_index(drop=True)\n", + "inf3_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@taylorswift13\"] \n", + "inf3_tweet_data_df = inf3_tweet_data_df.reset_index(drop=True)\n", + "inf4_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@ladygaga\"] \n", + "inf4_tweet_data_df = inf4_tweet_data_df.reset_index(drop=True)\n", + "inf5_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@TheEllenShow\"] \n", + "inf5_tweet_data_df = inf5_tweet_data_df.reset_index(drop=True)\n", + "\n", + "# Get the values for each part of the scatter plot by \"Influencers\"\n", + "# INF1\n", + "# Get values for X axis\n", + "inf1_tweet_ago_data = inf1_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf1_tweet_polarity_data = inf1_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF2\n", + "# Get values for X axis\n", + "inf2_tweet_ago_data = inf2_tweet_data_df.index \n", + "# Get values for Y axis\n", + "inf2_tweet_polarity_data = inf2_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF3\n", + "# Get values for X axis\n", + "inf3_tweet_ago_data = inf3_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf3_tweet_polarity_data = inf3_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF4\n", + "# Get values for X axis\n", + "inf4_tweet_ago_data = inf4_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf4_tweet_polarity_data = inf4_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF5\n", + "# Get values for X axis\n", + "inf5_tweet_ago_data = inf5_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf5_tweet_polarity_data = inf5_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "\n", + "# Organize the layout for the scatter plot\n", + "plt.title(\"Sentiment Analysis of Top 5 Influencers Tweets\", Fontsize= 12 )\n", + "# Labels for the scatter plot circles for each Influencer\n", + "labels = [\"KatyPerry\" \"BarackObama\" \"TaylorSwift\" \"LadyGaga\" \"TheEllenShow\"]\n", + "# Colors for the scatter plot circles for each Influencer\n", + "colors = [\"lightskyblue\",\"green\",\"red\", \"blue\", \"gold\"]\n", + "\n", + "# Define X and Y of the scatter plot\n", + "plt.xlabel(\"Tweets Ago\")\n", + "plt.ylabel(\"Tweet Polarity\")\n", + "\n", + "# Define X and Y limits\n", + "plt.xlim(100, 0)\n", + "plt.ylim( -1.0, 1.0 )\n", + "\n", + "# Writing data to the same Scatter Plot 5 times, for each Influencer \n", + "# (\"KatyPerry\" \"BarackObama\" \"TaylorSwift\" \"LadyGaga\" \"TheEllenShow\")\n", + "plt.scatter( inf1_tweet_ago_data, inf1_tweet_polarity_data, c=\"lightskyblue\", edgecolor=\"black\", \n", + " linewidths=1, alpha =0.75, marker='o', label=\"KatyPerry\")\n", + "plt.scatter( inf2_tweet_ago_data, inf2_tweet_polarity_data, c=\"green\", edgecolor=\"black\", \\\n", + " linewidths=1, alpha=0.75, marker='o', label=\"BarackObama\")\n", + "plt.scatter( inf3_tweet_ago_data, inf3_tweet_polarity_data, c=\"red\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"TaylorSwift\")\n", + "plt.scatter( inf4_tweet_ago_data, inf4_tweet_polarity_data, c=\"blue\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"LadyGaga\")\n", + "plt.scatter( inf5_tweet_ago_data, inf5_tweet_polarity_data, c=\"gold\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"TheEllenShow\")\n", + " \n", + "# Create the legend of the Scatter plot\n", + "legend = plt.legend(fontsize=\"small\", loc=\"center left\", title=\"Top 5 Influencers\", bbox_to_anchor=(1, 0.5))\n", + "plt.tight_layout()\n", + "\n", + "plt.grid(True)\n", + "\n", + "# Save the figure with the Scatter Plot\n", + "plt.savefig(\"OutPut/InfluencersSentimentsTweeterPolarityScatterPlot.png\")\n", + "\n", + "# Show the Scatter Plot\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Scatter Plot for Sentimental Analysis of Top 5 Twitters last 100 tweets" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# IB Top 5 People who who have more Followers\n", + "top_5_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(5)\n", + "top_5_twitters" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#IB Working Module -- Extract the first 100 tweets of the top Twitters\n", + "\n", + "# # Extract the first 100 tweets of the Influencers\n", + "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", + "Twitters = []\n", + "Twitters = top_5_twitters[\"Twitter_Handle\"]\n", + "Twitters\n", + "\n", + "# IB Twitters's overall sentiments\n", + "Twitters_overall_results = []\n", + "\n", + "Sentiment_array_tw = []\n", + "\n", + "# IB loop through each top ten twitter\n", + "for user in Twitters:\n", + " \n", + " ###print(f\"For Twitter: '{user}' \")\n", + " # IB Variables for holding compound sentiments\n", + " compound_list_tw = []\n", + " \n", + " # IB Variable for max_id\n", + " oldest_tweet = None\n", + " \n", + " # Set the tweet count to 100\n", + " tweet_count = 0\n", + " print(\"Extracting tweets from %s\"%user)\n", + " \n", + " # Extract tweets up to 5 pages\n", + " for x in range(5):\n", + " \n", + " ### IB - it is working - print(f\"For page number: '{x}' \")\n", + " twitters_tweets = api.user_timeline(user,page = x, max_id = oldest_tweet ) \n", + " \n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in twitters_tweets:\n", + " \n", + " #Calculate the compound, positive, negative and neutral values of each tweet\n", + " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", + " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", + " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", + " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", + " \n", + " # Save the Tweets in an array as a dictionery item \n", + " Sentiment_array_tw.append({\"Twitter\" : user,\n", + " \"Tweet Text\" : tweet[\"text\"],\n", + " \"Compound\" : compound,\n", + " \"Positive\" : pos,\n", + " \"Negative\" : neg,\n", + " \"Neutral\" : neu,\n", + " \"Date\" : tweet[\"created_at\"],\n", + " \"Tweets Ago\" : tweet_count\n", + " })\n", + " \n", + " # IB Collect compund sentiments for each Infuencer\n", + " compound_list_tw.append(compound)\n", + " \n", + " #Decrease count of tweet by 1 in the reverse order\n", + " tweet_count += 1\n", + " \n", + " # IB get Tweet ID, subtract 1,assign to oldest_tweet\n", + " oldest_tweet = tweet[\"id\"] - 1\n", + " \n", + " # IB List for dictionary of results for _overall_ sentiments for each user\n", + " Twitters_overall_results.append({\"Twitter\": user, \"Overall Sentiment\": np.mean(compound_list_tw)})\n", + "\n", + "print(\"-----------End of Extraction of Tweets !!!-----------\")\n", + "###Twitters_overall_results" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# IB Prepare Results Dataframe for the scatter plot\n", + "Twitters_overall_results_df = pd.DataFrame.from_dict(Sentiment_array_tw)\n", + "Twitters_overall_results_df.head(10) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# IB Creating Sentiment Analysis for Top Ten Influences Scatter Plot\n", + "\n", + "# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\n", + "tw1_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@Noahpinion\"] \n", + "tw2_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@BDUTT\"] \n", + "# For each of media sources following the first one in the media dataset reset index to 0-99\n", + "# in order to plot in the common area\n", + "tw2_tweet_data_df = tw2_tweet_data_df.reset_index(drop=True)\n", + "tw3_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@ProfessorChic\"] \n", + "tw3_tweet_data_df = tw3_tweet_data_df.reset_index(drop=True)\n", + "tw4_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@haroldpollack\"] \n", + "tw4_tweet_data_df = tw4_tweet_data_df.reset_index(drop=True)\n", + "tw5_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@CoryBooker\"] \n", + "tw5_tweet_data_df = tw5_tweet_data_df.reset_index(drop=True)\n", + "\n", + "# Get the values for each part of the scatter plot by \"Twitter\"\n", + "# TW1\n", + "# Get values for X axis\n", + "tw1_tweet_ago_data = tw1_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw1_tweet_polarity_data = tw1_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW2\n", + "# Get values for X axis\n", + "tw2_tweet_ago_data = tw2_tweet_data_df.index \n", + "# Get values for Y axis\n", + "tw2_tweet_polarity_data = tw2_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW3\n", + "# Get values for X axis\n", + "tw3_tweet_ago_data = tw3_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw3_tweet_polarity_data = tw3_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW4\n", + "# Get values for X axis\n", + "tw4_tweet_ago_data = tw4_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw4_tweet_polarity_data = tw4_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW5\n", + "# Get values for X axis\n", + "tw5_tweet_ago_data = tw5_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw5_tweet_polarity_data = tw5_tweet_data_df[\"Compound\"] \n", + "###################################################################\n", + "\n", + "# Organize the layout for the scatter plot\n", + "plt.title(\"Sentiment Analysis of Top 5 Twitters Tweets\", Fontsize= 12 )\n", + "# Labels for the scatter plot circles for each Twitter\n", + "labels = [\"Noahpinion\" \"BDUTT\" \"ProfessorChic\" \"HaroldPollack\" \"CoryBooker\"]\n", + "# Colors for the scatter plot circles for each Twitter\n", + "colors = [\"lightskyblue\",\"green\",\"red\", \"blue\", \"gold\"]\n", + "\n", + "# Define X and Y of the scatter plot\n", + "plt.xlabel(\"Tweets Ago\")\n", + "plt.ylabel(\"Tweet Polarity\")\n", + "\n", + "# Define X and Y limits\n", + "plt.xlim(100, 0)\n", + "plt.ylim( -1.0, 1.0 )\n", + "\n", + "# Writing data to the same Scatter Plot 5 times, for each Twitter \n", + "# ( \"Noahpinion\" \"BDUTT\" \"ProfessorChic\" \"HaroldPollack\" \"CoryBooker\")\n", + "plt.scatter( tw1_tweet_ago_data, tw1_tweet_polarity_data, c=\"lightskyblue\", edgecolor=\"black\", \n", + " linewidths=1, alpha =0.75, marker='o', label=\"Noahpinion\")\n", + "plt.scatter( tw2_tweet_ago_data, tw2_tweet_polarity_data, c=\"green\", edgecolor=\"black\", \\\n", + " linewidths=1, alpha=0.75, marker='o', label=\"BDUTT\")\n", + "plt.scatter( tw3_tweet_ago_data, tw3_tweet_polarity_data, c=\"red\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"ProfessorChic\")\n", + "plt.scatter( tw4_tweet_ago_data, tw4_tweet_polarity_data, c=\"blue\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"HaroldPollack\")\n", + "plt.scatter( tw5_tweet_ago_data, tw5_tweet_polarity_data, c=\"gold\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"CoryBooker\")\n", + " \n", + "# Create the legend of the Scatter plot\n", + "legend = plt.legend(fontsize=\"small\", loc=\"center left\", title=\"Top 5 Influencers\", bbox_to_anchor=(1, 0.5))\n", + "plt.tight_layout()\n", + "\n", + "plt.grid(True)\n", + "\n", + "# Save the figure with the Scatter Plot\n", + "plt.savefig(\"OutPut/TwittersSentimentsTweeterPolarityScatterPlot.png\")\n", + "\n", + "# Show the Scatter Plot\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# # Create dataframe from the Dictionery item of the Sentiment Array\n", + "# Sentiment_DF = pd.DataFrame.from_dict(Sentiment_array)\n", + "\n", + "# # Remove the '@' from the 'influence' column in the data frame\n", + "# Sentiment_DF[\"Influencers\"] = Sentiment_DF[\"Influencers\"].map(lambda x: x.lstrip('@'))\n", + "\n", + "# # Re_arrang the columns and save into a CSV file\n", + "# Sentiment_DF = Sentiment_DF[[\"Influencers\", \"Date\", \"Tweet Text\"\n", + "# , \"Compound\", \"Positive\", \"Negative\"\n", + "# , \"Neutral\", \"Tweets Ago\"\n", + "# ]]\n", + "\n", + "# # Store output in a .CSV File\n", + "# Sentiment_DF.to_csv(\"influencer_tweets_Analysis.csv\")\n", + "\n", + "# # Sentiment_DF" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# # Calculate the mean for each Influencers & store into a dataframe\n", + "# Influencers_Comp_Mean = Sentiment_DF.groupby(\"Influencers\").mean()[\"Compound\"].to_frame()\n", + "\n", + "# #Reset the index \n", + "# Influencers_Comp_Mean.reset_index(inplace=True)\n", + "\n", + "# Influencers_Comp_Mean" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# # Set the values for x_axis & y_axis\n", + "# x_axis = Influencers_Comp_Mean.index.values\n", + "# y_axis = Influencers_Comp_Mean[\"Compound\"]\n", + "# X_Label = [\"@Oprah\",\"@KimKardashian\",\"@realDonaldTrump\",\"@justinbieber\",\"@KylieJenner\"]\n", + "\n", + "# # Intialize the plots. \n", + "# fig,ax = plt.subplots()# function that returns a tuple containing a figure and axes object(s)\n", + "\n", + "# #Set the plot and assign the values like colors etc\n", + "# bars = ax.bar(x_axis,y_axis\n", + "# , align = \"edge\"\n", + "# , width = 1\n", + "# , linewidth = 1\n", + "# , edgecolor = 'black'\n", + "# , color = [\"yellow\",\"lime\",\"red\",\"orange\",\"pink\"]\n", + "# )\n", + "\n", + "# # Set the tick(s) of the bar graph\n", + "# tick_locations = [value + 0.5 for value in range(len(x_axis))]\n", + "# plt.xticks(tick_locations,X_Label,rotation='vertical')\n", + "\n", + "# # If value is positive then put True in the Summary else place False\n", + "# Influencers_Comp_Mean[\"Positive\"] = Influencers_Comp_Mean[\"Compound\"] > 0\n", + "\n", + "# # Assign the height based on positive value after allocating True / false value\n", + "# height = Influencers_Comp_Mean.Positive.map({True: 0.03 , False: -0.03})\n", + "\n", + "# # # Set the value on labels on the bars\n", + "# for bar in bars:\n", + "# ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + height[bars.index(bar)]\n", + "# , round(Influencers_Comp_Mean[\"Compound\"][bars.index(bar)],3)\n", + "# , ha = 'center'\n", + "# , va = 'bottom'\n", + "# )\n", + "\n", + "# # Set the x_axis limits\n", + "# ax.set_xlim(0, len(x_axis))\n", + "\n", + "# # Dynamically set the y_axis limits by finding the max & min value of y-axis\n", + "# ax.set_ylim(min(y_axis)-0.1, max(y_axis) + 0.1)\n", + "\n", + "# # Set a horizontal line at y = 0\n", + "# plt.hlines(0,0,len(x_axis))\n", + "\n", + "# # Title of the graph\n", + "# ax.set_title(\"Sentiments on Twitter of Influencers (%s)\" % (time.strftime(\"%x\")), fontsize=16)\n", + "\n", + "# # Setting the y_axis label\n", + "# ax.set_ylabel(\"Polarity on Twitter \", fontsize=14)\n", + "\n", + "# # # Setting the x_axis label\n", + "# ax.set_xlabel(\"The Influencers\", fontsize=14)\n", + " \n", + "# # Saving the graph\n", + "# plt.savefig(\"The Influencer Twitter Sentiment .png\",bbox_inches='tight')\n", + "# plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# # Create an array of Influencers Houses with the unique function in the data frame\n", + "# Influencers_array = Sentiment_DF[\"Influencers\"].unique()\n", + "# Influencers_array\n", + "\n", + "# # #Plotting the graph for each influencer\n", + "# for influencer in Influencers_array:\n", + "# # Creating a temporary data frame to store for only one influencer at a time\n", + "# Temp_DF = Sentiment_DF[Sentiment_DF[\"influencer\"] == influencer]\n", + " \n", + "# Sentiment_DF['influencer'] = Sentiment_DF['influencer'].map(lambda x: x.lstrip('@'))\n", + "# #Temp_DF\n", + " \n", + "# plt.scatter(Temp_DF[\"Tweets Ago\"],Temp_DF[\"Compound\"]\n", + "# , marker = \"o\", linewidth = 0, alpha = 0.8, label = Influencers\n", + "# , facecolors = Temp_DF.influencer.map({\"@Oprah\": \"blue\"\n", + "# , \"@KimKardashian\" : \"lime\"\n", + "# , \"@realDonaldTrump\": 'indigo'\n", + "# , \"@justinbieber\":\"fuchsia\"\n", + "# , \"@KylieJenner\":\"gold\"\n", + "# })\n", + "# )\n", + "\n", + "# # # Set the legend \n", + "# plt.legend(bbox_to_anchor = (1,1), title=\"The Influencers\", loc='best')\n", + "\n", + "# # # Set the labels of x_axis, y_axis & title \n", + "# plt.xlabel(\"Tweets Ago\", fontsize=12)\n", + "# plt.ylabel(\"Tweet Polarity\", fontsize=12)\n", + "# plt.title(\"Sentiment Analysis of The Influencers Tweets (%s)\" % (time.strftime(\"%x\")), fontsize=16)\n", + "\n", + "# # #Set the limite of x_axis and y_axis\n", + "# plt.xlim(0, 101)\n", + "# plt.ylim(-1,1)\n", + "\n", + "# # # Set the grid\n", + "# plt.grid(True)\n", + "\n", + "# filePath = 'Images'\n", + "# if not path.exists(filePath):\n", + "# makedirs(filePath)\n", + "\n", + "# # Save the result to a .png file\n", + "# plt.savefig(\"Sentiment Analysis of Influencers Tweets.png\",bbox_inches='tight')\n", + "# # plt.savefig(\"Sentiment Analysis of The influencer's Tweets.png\",bbox_inches='tight')\n", + "\n", + "# plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Version: 2.0\n", + "# Date: Sunday 7/1\n", + "# Time: 03:40 PM\n", + "# Functionalities: \n", + "# A) Data Analysis\n", + "# 1. Created dataframe.\n", + "# 2. Sorting\n", + "# B) Sentiment Analysis\n", + "\n", + "\n", + "# Pending items:\n", + "# Data Cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Version: 4.0 - IB\n", + "# Date: Monday 7/2/2018\n", + "# Time: 3:45 PM\n", + "# Functionalities: \n", + "# A) Overcame _TweepError - 34_ by using max_id logic while calling api.user_timeline Tweepy function\n", + "# Sentiment Analysis for Top 5 Influencers and Top 5 Twitters function \n", + "# B) Created the Scatter Plot for Sentimental Analysis of Top 5 Influencers last 100 tweets\n", + "# C) Created the Scatter Plot for Sentimental Analysis of Top 5 Twitters last 100 tweets\n", + "# Scatter Plots png files are saved in OutPut directory\n", + "#\n", + "# These Scatter Plots visualize a great difference between _overal_ ratings of Influencers and People who tweet most\n", + "# \n", + "# For Merging: Code has # IB comments, 8 cells. When \"Restart and Run All\" Kernel, my code is in ln[21] to ln[28]\n", + "# With amount of tweets we have it runs under 10 minutes\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Main.ipynb b/Main.ipynb index a10f56f..93a77f4 100644 --- a/Main.ipynb +++ b/Main.ipynb @@ -10,7 +10,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -20,7 +20,7 @@ "import numpy as np\n", "import pandas as pd\n", "import matplotlib.pyplot as plt\n", - "# import time\n", + "import time\n", "from datetime import datetime, timezone\n", "# import seaborn as sns\n", "from os import path, makedirs # fetch path and makedirs function from os file\n", @@ -30,7 +30,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -40,7 +40,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -64,7 +64,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -76,7 +76,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -87,7 +87,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -95,10 +95,9 @@ "output_type": "stream", "text": [ "-----------Start extraction!!!-----------\n", - "exception for @kendricklamar: Failed to send request: HTTPSConnectionPool(host='api.twitter.com', port=443): Read timed out. (read timeout=60)\n", - "exception for @JimmyJohnson: Failed to send request: HTTPSConnectionPool(host='api.twitter.com', port=443): Max retries exceeded with url: /1.1/users/show.json?id=%40JimmyJohnson (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:833)'),))\n", + "exception for @TimDuy: Failed to send request: ('Connection aborted.', ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))\n", "----------- Extraction Complete !!!-----------\n", - "2\n" + "1\n" ] } ], @@ -146,9 +145,44 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "metadata": {}, + "outputs": [], + "source": [ + "Data_Influencers_DF = Data_Influencers_DF[Data_Influencers_DF['Tweets']>0]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "# Remove missing values.\n", + "Data_Influencers_DF.dropna()\n", + "\n", + "Data_Influencers_DF.to_csv('OutPut/Influencer_Analysis.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "scrolled": false + }, "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\ravin\\AppData\\Local\\conda\\conda\\envs\\pythonData\\lib\\site-packages\\ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", + " \n" + ] + }, { "data": { "text/html": [ @@ -170,486 +204,378 @@ " \n", " \n", " \n", - " Twitter_Handle\n", - " First_Name\n", - " Last_Name\n", " Genre\n", - " Loc\n", - " Lang\n", - " Created On\n", - " Age Of Account\n", " Tweets\n", " Followers\n", - " Following\n", - " Favorites Count\n", - " \n", - " \n", - " \n", - " \n", - " 0\n", - " @_AnneHathaway\n", - " Anne\n", - " Hathaway\n", - " Actors\n", - " NA\n", - " Eng\n", - " 09/13/2012\n", - " 2116.0\n", - " 2.0\n", - " 280.0\n", - " 0.0\n", - " 0.0\n", - " \n", - " \n", - " 1\n", - " @IAMannalynnemcc\n", - " AnnaLynne\n", - " McCord\n", - " Actors\n", - " NA\n", - " Eng\n", - " 01/16/2010\n", - " 3087.0\n", - " 5776.0\n", - " 228697.0\n", - " 502.0\n", - " 2157.0\n", - " \n", - " \n", - " 2\n", - " @EmmaWatson\n", - " Emma\n", - " Watson\n", - " Actors\n", - " NA\n", - " Eng\n", - " 07/14/2010\n", - " 2908.0\n", - " 1642.0\n", - " 29137145.0\n", - " 382.0\n", - " 991.0\n", - " \n", - " \n", - " 3\n", - " @JuliaRoberts\n", - " Julia\n", - " Roberts\n", - " Actors\n", - " NA\n", - " Eng\n", - " 01/13/2011\n", - " 2725.0\n", - " 0.0\n", - " 544608.0\n", - " 0.0\n", - " 0.0\n", - " \n", - " \n", - " 4\n", - " @LeoDiCaprio\n", - " Leonardo\n", - " DiCaprio\n", - " Actors\n", - " NA\n", - " Eng\n", - " 04/16/2010\n", - " 2997.0\n", - " 1283.0\n", - " 19325910.0\n", - " 145.0\n", - " 40.0\n", - " \n", - " \n", - " 5\n", - " @EvaLongoria\n", - " Eva\n", - " Baston\n", - " Actors\n", - " Los Angeles, CA\n", - " Eng\n", - " 02/02/2010\n", - " 3070.0\n", - " 15803.0\n", - " 7692252.0\n", - " 809.0\n", - " 151.0\n", + " Average Tweets\n", + " Age Of Account\n", " \n", " \n", - " 6\n", - " @TheRock\n", - " Dwayne\n", - " Johnson\n", - " Actors\n", - " NA\n", - " Eng\n", - " 02/11/2011\n", - " 2696.0\n", - " 21633.0\n", - " 13038268.0\n", - " 242.0\n", - " 142.0\n", + " Genre\n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", + " \n", + " \n", " \n", - " 7\n", - " @jessicaalba\n", - " Jessica\n", - " Alba\n", - " Actors\n", - " NA\n", - " Eng\n", - " 11/24/2009\n", - " 3140.0\n", - " 6244.0\n", - " 9649541.0\n", - " 1359.0\n", - " 1443.0\n", + " Musicians\n", + " Musicians\n", + " 455121.0\n", + " 919096486.0\n", + " 10343.659091\n", + " 3006.954545\n", " \n", " \n", - " 8\n", - " @EllenPompeo\n", - " Ellen\n", - " Pompeo\n", - " Actors\n", - " NY/LA\n", - " Eng\n", - " 03/23/2013\n", - " 1926.0\n", - " 5211.0\n", - " 1551673.0\n", - " 541.0\n", - " 6069.0\n", + " Sports_celeb\n", + " Sports_celeb\n", + " 896368.0\n", + " 511571491.0\n", + " 7596.338983\n", + " 2792.415254\n", " \n", " \n", - " 9\n", - " @JessicaCapshaw\n", - " Jessica\n", - " Capshaw\n", - " Actors\n", - " NA\n", - " Eng\n", - " 05/05/2011\n", - " 2613.0\n", - " 4017.0\n", - " 935864.0\n", - " 348.0\n", - " 86.0\n", + " Politicians\n", + " Politicians\n", + " 574650.0\n", + " 247425987.0\n", + " 7871.917808\n", + " 2819.109589\n", " \n", " \n", - " 10\n", - " @sarahdrew\n", - " Sarah\n", - " Drew\n", - " Actors\n", - " NA\n", - " Eng\n", - " 11/14/2009\n", - " 3150.0\n", - " 9611.0\n", - " 822449.0\n", - " 201.0\n", - " 622.0\n", + " Comedians\n", + " Comedians\n", + " 481001.0\n", + " 210127717.0\n", + " 10931.840909\n", + " 3082.022727\n", " \n", " \n", - " 11\n", - " @IamSandraOh\n", - " Sandra\n", - " Oh\n", + " Actors\n", " Actors\n", - " \n", - " Eng\n", - " 09/20/2013\n", - " 1744.0\n", - " 578.0\n", - " 1005661.0\n", - " 21.0\n", - " 14.0\n", + " 387823.0\n", + " 102822487.0\n", + " 9459.097561\n", + " 2687.682927\n", " \n", " \n", - " 12\n", - " @SaraRamirez\n", - " Sara\n", - " Ramirez\n", - " Actors\n", - " NA\n", - " Eng\n", - " 07/30/2013\n", - " 1796.0\n", - " 7989.0\n", - " 820794.0\n", - " 800.0\n", - " 6520.0\n", + " Social_workers\n", + " Social_workers\n", + " 350806.0\n", + " 11876557.0\n", + " 25057.571429\n", + " 2872.285714\n", " \n", " \n", - " 13\n", - " @iJesseWilliams\n", - " Jesse\n", - " Williams\n", - " Actors\n", - " NA\n", - " Eng\n", - " 04/12/2009\n", - " 3366.0\n", - " 19834.0\n", - " 2400009.0\n", - " 3531.0\n", - " 5700.0\n", + " Economists\n", + " Economists\n", + " 560877.0\n", + " 2184746.0\n", + " 22435.080000\n", + " 2863.920000\n", " \n", - " \n", - " 14\n", - " @TheRealKMcKidd\n", - " Kevin\n", - " McKidd\n", - " Actors\n", - " NA\n", - " Eng\n", - " 04/05/2009\n", - " 3374.0\n", - " 7614.0\n", - " 771065.0\n", - " 503.0\n", - " 386.0\n", + " \n", + "\n", + "" + ], + "text/plain": [ + " Genre Tweets Followers Average Tweets \\\n", + "Genre \n", + "Musicians Musicians 455121.0 919096486.0 10343.659091 \n", + "Sports_celeb Sports_celeb 896368.0 511571491.0 7596.338983 \n", + "Politicians Politicians 574650.0 247425987.0 7871.917808 \n", + "Comedians Comedians 481001.0 210127717.0 10931.840909 \n", + "Actors Actors 387823.0 102822487.0 9459.097561 \n", + "Social_workers Social_workers 350806.0 11876557.0 25057.571429 \n", + "Economists Economists 560877.0 2184746.0 22435.080000 \n", + "\n", + " Age Of Account \n", + "Genre \n", + "Musicians 3006.954545 \n", + "Sports_celeb 2792.415254 \n", + "Politicians 2819.109589 \n", + "Comedians 3082.022727 \n", + "Actors 2687.682927 \n", + "Social_workers 2872.285714 \n", + "Economists 2863.920000 " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Grouped on Genre \n", + "Data_Influencers_DF['Average Tweets'] = Data_Influencers_DF['Tweets']\n", + "\n", + "\n", + "AggregatedGenre= Data_Influencers_DF.groupby([\"Genre\"]).agg({'Genre': 'min', 'Tweets': 'sum', 'Followers': 'sum','Average Tweets':'mean','Age Of Account':'mean'})\n", + "AggregatedGenre\n", + "AggregatedGenre.sort_values(['Followers'], ascending=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + "
GenreTweetsFollowersAverage TweetsAge Of Account
15@KatieHeiglKatherineHeiglActorsUtah / TorontoEng11/03/20093161.08474.01325730.0117.03120.0Genre
16@JasonWGeorgeJasonGeorgeActorsNAEng09/19/20122110.04306.0236873.0697.03018.0Social_workers14350806.011876348.025057.5714292872.214286
17@chy_leighChylerLeighActorsNAEng03/02/20141581.05810.0301897.0427.05541.0Economists26579267.02193480.022279.5000002849.384615
18@katewalshKateWalshActorsNAEng08/30/20093226.018109.0894903.0828.03541.0Comedians44480994.0210127364.010931.6818183081.977273
19@KellyMcCrearyKellyMcCrearyActorsNAEng12/26/20112378.04045.0256598.0524.011744.0Musicians45455122.0919098141.010113.8222222952.200000
20@IWashingtonIsaiahWashingtonActorsEverywhere I tweet...Eng02/06/20112702.029863.098699.07486.011407.0Actors42387823.0103367066.09233.8809522688.547619
21@DohertyShannenShannenDohertyActorsNAEng03/02/20103042.09347.0584090.0612.03618.0Politicians73574647.0247413326.07871.8767122819.095890
22@shenaegrimesShenaeGrimesActorsNAEng03/13/20103032.05712.0228926.085.097.0Sports_celeb118896362.0511565357.07596.2881362792.389831
23@JessicaLStroupJessicaStroupActorsNAEng04/23/20102990.01682.0199284.0330.0759.0
24@MattLanterMattLanterActorsEverywhereEng11/12/20093152.08770.0458218.0403.02393.0
25@MACKWILDSTristanWildsActorsEng03/03/20093406.042828.0182112.02000.01103.0
26@EmilyVanCampEmilyVanCampActorsNAEng05/22/20112596.01591.0555787.0235.099.0
27@Gabriel_MannGabrielMannActorsNAEng05/11/20102972.014827.0262230.0997.024281.0
28@Nick_WechslerNickWechslerActorsNAEng06/17/20131840.04513.0151994.01201.010817.0
29@christabrittanyChristaAllenActorsLos AngelesEng08/18/20102873.01481.0110133.0454.0613.0
.......................................
\n", + "
" + ], + "text/plain": [ + " Genre Tweets Followers Average Tweets Age Of Account\n", + "Genre \n", + "Social_workers 14 350806.0 11876348.0 25057.571429 2872.214286\n", + "Economists 26 579267.0 2193480.0 22279.500000 2849.384615\n", + "Comedians 44 480994.0 210127364.0 10931.681818 3081.977273\n", + "Musicians 45 455122.0 919098141.0 10113.822222 2952.200000\n", + "Actors 42 387823.0 103367066.0 9233.880952 2688.547619\n", + "Politicians 73 574647.0 247413326.0 7871.876712 2819.095890\n", + "Sports_celeb 118 896362.0 511565357.0 7596.288136 2792.389831" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Sorting on Average Tweets and grouped on Genere\n", + "AggregatedGenre.sort_values(['Average Tweets'],ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAacAAAD9CAYAAAAYjbi9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzsnXd8FNX2wL9nd7PpIQkQehUIRBGEUBVCFzUiCIpiR8Eu1qc+S8Tentj7z/ps2HunKBZEfICN0JGOdAJpu3t+f9yJLEtCerKB++Uzn929c+fOmc0yZ+4p94iqYrFYLBZLOOGqbQEsFovFYgnFKieLxWKxhB1WOVksFosl7LDKyWKxWCxhh1VOFovFYgk7rHKyWCwWS9hhldMBiIi0EZGvRWSniMwWkS7F9PlYRB4rx5hawvbfcsrW2jnu7KC2F0RkRXnGsVQMEWkpIg+LSLaI5IrIbhH5U0SeFJFutS2fxVKEp7YFsFQLLwKFwInABOAtEemkqj4AERkFpAOnlXPcF4CnQtr+rpyolppCRAYA7wMbgMeBBYAAhwNnA2cB0bUknsWyF1Y5HWCISCzQD+ilqj+JyK/AOqA98KeIxAAPAlep6rZyDr9GVX+sWonrDiISqar5tS1HSYhIBODTYjLrRaQ+8BbwGzBUVXcH7f5aRB4ELqwZSfeSK6y/U0vtYc16Bx5e5zXXed3lvEY5rzcDy1S1XOa4siAiESJyu4isEJEC5/V256ZZ3rGaiMhLIrJJRPJFZIGInB60v6GIBELajg81NYpIjCPLRUFtDUTkCRFZ44y9UEQmhpz/bGes/iLypohsA2Y7+3qIyJcistkxiy0TkcdLuZ4BznijHTPmVhHZISKvOIojuK9HRK535MoXkbUi8h8RiQrqU2QevUhE7hWRtUA+kFiCCBOA+sAlIYoJADXscw0iMkFE5otInvO3+D8RSQ7po87f+TIRWe6Yk2eKyKEh/WaIyCzn7/Q/EckHLirHNXtE5DYRWRokzywROWp/372lbmJnTgcYqrpVRBYDl4jIdcAkYCuQLSIdgUuAHhUcXkRkr99MkanQ4UXgZOBOYBbQB7gRaAuMK8dJYoGZQBLwb2AVcDrwsojEqOrTqvq3iPwGDAKKlNEgjFIeGDRcPyACmO6MnQB8hzFf3QIsB44GnnCe4h8JEecV4DVgDOARkTjgc+AnjClsJ9Aa6FvGy3sQ+Ao4FTObvRNoGiLzf4HjgXuA74FOwG3OeUaHjHcDMAeYCLiBvBLOOxhYp6r/K6OciMjdwFXAw8A1QDPgduAwEemrqv6g7qcD2Zjfmxe4D3hfRDqG/EY6OOPdBiwDtpTjmq8FrnCueR6QgDFP76UsLQcIqmq3A2wDBgCbAcXMnMY47V8Dd1VwTC1ha+fsP8z5fEvIcTc67Yc7n1s7n88O6vMCsCLo8yVOnwEhY30FbATczueHgOVB++cB/3GOTXXa7sbclIv63IS5gbcPGfsZYBPgcT6f7YwzJaRfevD1lPNvosBnIe2nOe2Dnc/9nM9nltCva8j3+AsgZTj/n8APxbS7MQ+pRZsEje8Hbg7pf6Rz3pEhv43FQERQ2xinvW9Q2wwgUHQNQe1lveaPgHdq+/+X3Wpms2a9AxBVnQE0wTx9NlTVt0RkHHAIcJtjEvrMMS3NcxzlZeE5zKwreFvl7OvvvIaaC4s+Z5TjEvpj/FszihmrIZDmfJ4OtBYTnVgf49h/GViEmUXhvE4PGmM4xjy33DETeZzZ4OcYs1cae/NuyOfFwDbgKRE5XURalOO6AKaGfH4Tc8PuEyRfAfB2iHxfOPv7hxz/njp37lKQEtp/xwTPFG2DnfahGLP/KyFyzAZ2FCPHl6paGPT5V+e1ZUi/Fao6L6StrNc8BzhWRO4QkaNExIvlgMUqpwMUVS1Q1YWqutsxZd0PTFLjb3gF+AtjpnkIeDfU71EC61T155CtyJldZFpZF3LM+pD9ZSG5mHGKG2sG5sY+EDMz2QrMxyijgc51d2Nv5ZSCudkVhmxvOvtDv4e95FDV7c751mIi3v4Skd9EJNTcVhIbQsYrcORuFiSfF8gJkW9jWeTbD6vYV1GAMZn1AC4IaU9xXpew73eVUIwcW0I+F/0uokLai5O3rNd8J5AFjAC+BTaLyPMi0qCYMS11HOtzOji4DfhZVd8XkXiMf+QCR1E9LyL3A72BjytxjqKbU2NgaVB7Y+d1cznHSi2mfa+xVHWbiMzDzI62AzNUVUVkGvAoRmG52Vs5bcbc9CaVcO7skM/7zEqcJ//RztN9OnA9MFVEuqjqb6VcW6PgD87TfxKwJki+PIypqzjWliZfCUwDhojIERrkd1LV3x054kL6F/29hmGUZyjl+XsGU5y8ZbpmZ2Z2D3CPiDQGMoEHgBhgbAXlsYQpVjkd4IhJwD0HY/KCPeadWGe/B4ikZLNPWZnpvJ4C3BHUXpRL9U05xzpJRI5U1e+C2sdhFMufQW3TMcEF24HHgtoaAJcBq1R1SVD/z4BLgb9UdSOVQI2j/0cRuQnzNN8JE6q9P07GmEeLOAljwfghSL5rgXqq+nVl5AvhGUxQwyMiMkyLidgL4UvMrLSlqn5ZhXIUR7mvWVXXA8+KyLEYf6flAMMqpwMYERGM6eluVV0BoKo7ROQn4G4RuQMYhXF8Vyp/SVV/F5HXgFschfc9xo9yE/Caqi4ox3AvYGY274jIDcBqjJIbCpyve0eJTcNElDXFmSGpieT7HeM/eSlk7CmYp+xvRWQKZqYUC3QE+qnqCfsTTEQyMZFx72Ei/WIxSnAnexTM/jhURJ4HXsdErt0BzCy6KavqDOd7fEtEHsBEBQYwAQrHAteq6qIynGcvVHWTiJyE8aHNExP6vsAZuwVwJnsCaFDVpSJyD/CoiKRiHhjynL5DgWdVdfq+Zyo/Zb1mEXkfY7b9BTObOwLjrwpNDLccCNR2RIbdqm8DxmNmGd6Q9naYyL0cjEN8WBnGUuD2UvpEYEKNV2J8Biudz8FRXK0pJVrPaWuCCW7YhPFfLABOL+ac8c651oe0PxR6nqB9SRgltRzjiN+I8WFcHtTnbIKiEYPaU4E3nGPzMCtkfIJJet7fdzPAGe9E53q3YRTaq0CDkL4ujHKe75xju/P+XszsIvh7PK+cv4nWGJPnYmfsXOc38gQhUXRO/zMwDy67nN/Ln87xzff32yjh7zwDmFWCXGW55qscWTY7cmdj0gEiyvMd2K1ubEVhoxaLpRpxIiKnY1Zn+KqWxbFYwh4brWexWCyWsMMqJ4vFYrGEHdasZ7FYLJaww86cLBaLxRJ2WOVksVgslrDDKieLxWKxhB1WOVksFosl7LDKyWKxWCxhh1VOFovFYgk7rHKyWA5yROQGEfldRBY49b16VcGYA0SkrNWBK3OeF0RkTCl9ZohIenXLYqla7MKvFstBjIj0wZSe6Kaq+U5tpEoV8XMW/h2AWYvv+0oLaTkosTMni+XgpgmwSZ2ikaq6SVXXisgKEblHRH5ytnYAItJKRL52Zllfi0hLp/0FEXlARKZjFsa9ALjCmYn1E5GTnKKM80WkxPIpIuIWkftF5FfnHJc67d1FZKaIzBWRz0WkSTHH7q/P6SLyvSNDzyr79izVhlVOFsvBzRdACxFZJCKPi0hG0L4dqtoTswr5g07bo8BLqno4pqLyw0H9OwBDVHU08CQwRVW7quq3wM3A0araBVP7qiQmAm2AI4rOISIRwCPAGFXtjqmHFVwzjDL0iVXVvsBF7F1PyxKmWLOexXIQo6o5ItIdU4V2IPCGiFzn7H4t6HWK874PpuwHmJIm9wYN96buXWsrmO+AF0RkKvDOfkQaAjypppAjqrpFRA7DFBT80pQow82+5d5TS+nzmjPeNyKSICKJqrptP3JYahmrnCyWgxxHocwAZojIr8BZRbuCu5V0eND7Xfs5xwVOoMVxmGKHXVW1uFLvUsy5BPhdVfuUfBWl9gkd0y4qGuZYs57FchAjIqki0j6oqSumSCSYisFFr0VVfr8HTnHenwbMKmHonZhCkEXnOURVZ6vqzZgCki1KOO4L4AInqAIRScYUFWzoBG8gIhEicmjIcaX1Geu0HwVsV9XtJZzfEibYmZPFcnATBzwiIomAD1iC8ftkApEiMhvzEHuq0/8y4DkRuQZTBficEsb9EFN2/QTgUkxwRHvMDOdrTJXb4ngW47taICKFwDOq+qgTLv6wiNTD3LcexFRxBkBVC0rps1VEvgcSMBWiLWGOLZlhsVj2QURWAOmquqm2ZbEcnNiZk8USwmSZHAE0BOoDyc6WFPQ+DvN/J3Rz76fdBezGmLvKs/2dpVn51XzJFkvYYWdOloMKR/EcgjEdtQeaA42BRs7WWNEkwYR8hQEKbARWAX+FbEVtG7I0q079RxaRo4F7QpqXq+qo2pDHEn5Y5WQ54JgskwVoiVFARVt7RTsArQVx16Z81UA+sJo9ymoJ8JuzLc3SrEAtymaxVAirnCx1mskyuQHQG+gJHOYooEMEiapdycKG3cCfGEX1K/A/4JcszbI5PpawxionS53BMckdAfRStI+ifV24WtW2XHUQBZYDc4FfnNfZWZq1o1alsliCsMrJErZMlsmtgN6K9la0ryBdBImsbbkOUPwYRTXN2WZladbu2hXJcjBjlZMlbJgsk5OB4QECxwODXbga1rZMBzEFwGz2KKsfszSroHZFshxMWOVkqVUmy+QuPnwjFB3lwdNFELtqSXiyG7MaRJGy+iVLs0paR89iqTRWOVlqlMkyOUbRIT58o124hrtxp9S2TJYKsQV4H1Me4+sszfLVsjyWAwyrnCzVzmSZ3MKP/8QAgdEePL0FiahtmSxVymbgXWAqMM3OqCxVgVVOlmphskyul0femS5c50QQ0TWMklot1cvf7FFUM6yislQUq5wsVcr1cv3Jil4QSWQ/Fy67PNbBzUbgbYyi+sYmA1vKg1VOlkqTKqkRQEfgqD70mdiGNl1rWyZL2LEaeAp4OkuzNta2MJbwxyonS6VIlVQPcDdmodTdwKYhDMlMIcUqKEtx5ANvAo9kadZPtS2MJXyxyslSKVIlVTDF54YDKwB14XIdwzGn1qNeu1oVzhLuzAEeAd6wOVSWUKxyslSaVEl1YwrU9cAsPEoUUd6jOfrsWGKb1KpwlrrARuAZ4IkszVpT28JYwgOrnCxVQqqkRgJXAm2BNQAJJMQOZeh5kUQm1qpwlrqCD3gPeDhLs76tbWEstYtVTtWMiIwC3gE6qerC/fQ7G/hCVdfWlGxVTaqkxgPXA4mYp2Ea0ah+BhnjPXhialU4S11jBpCVpVnf1LYgltrBKqdqRkSmAk2Ar1X1lv30mwFcrao/l2Nst6qGVR5JqqQ2AG4CBLOKAK1p3bw3vc+yoeWWCjANuDlLs76rbUEsNYtVTtWIiMQB2cBA4ANV7ei0/ws4AwgAnwI/Ay9gzGG5QB+gL3A/psz3HOBCVc0XkRXAc8Aw4FEgBbgAYxL5Q1VPqaHLK5FUSW0J3MieUuOkkZbahS5jbTKupYJ8Cfw7S7PK/PBmqdtY5VSNiMjpwEBVPVdEvgcuwZQCvwkYoqq7RSRZVbcEz5xEJApYDAxW1UUi8hLwi6o+6Cinx1X1Xucca4E2juJKVNWaKSK3UBpiFKyPjvpw6O5USe0IXAtsAPIAutO9eyqpmTUin+VARDFh6P/O0qyltS2MpXqxK0BXL6cCrzvvX3c+DwGeV9XdAKq6pZjjUoHlqrrI+fwi0D9o/xtB7xcArziKsHoX31worrXfyEnbfpKvVFkD/Ad4iIVydmjXbM1eCDyBMWlGAMxl7txVrLKObktFEeBk4M/JMvmRyTLZllQ5gLHKqZoQkfrAIOBZZ7ZzDTAW852XNl0tzfS1K+j9ccBjQHdgrohUuV/nz08kcflXcu+uXP5umsLUxAQGixC8eOszLJThocdla/ZPwKtAC5zf2rd8O20jG+dVtYyWg4oIjBVi6WSZfPVkmeyubYEsVY9VTtXHGOAlVW2lqq1VtQWmNPYWYLyIxACISLLTfycQ77xfCLQWkaIk1jOAmaEnEBEX0EJVpwP/wkTJxVXVBXz3qhy65At5p21zNrRpzjWx0SSX0NUDvMVC6V7Mvi8wfrVWOEp3GtM+3M72JVUlp+WgJR64D5g9WSbbFUkOMKzPqZpwfEh3q+pnQW2XAZ2AlcCZmGqjn6jqv0VkNHAnZQuISFfVTSISAUwH6mFu/P9V1bsrK/ucN2V4o/pkNWtML7er1FlcMBuAvnTUZcGNQUm6PTHXbpN0LVWND2NmviVLs/JqWxhL5bHKyQLAPVeL6+gjuaBxQ65s3IBDKjHUYoyC2hTcaJN0LTXEEmBClmbNqG1BLJXDKqeDnPPHinf8aK5o34qrkutRVQ7m2cAgOpqgjyJskq6lhlBMusXVWZpVM9GrlirHKqeDlBGDJOqS07iiS0euaFS/ypRSMB8Co+i4d5Kwk6R7I8bfaZN0LdXJeuDSLM16q7YFsZQfq5wOMkYMEu85J3Juz87c1KwR1e3veZqOen5oY6qktsAoqBxskq6l+nkHONfOouoWVjkdJIwYJO6RgxndL50727eqlE+pvNxMR70ttNEm6VpqmCXAiVma9WttC2IpG1Y5HeCMGCSSfih9Rgzikc6pHFHO6LuqYjwd9fnQxlRJ7QlcjKmSWghwFEcNbEnL/qF9LZYqYDcwMUuzXqltQSylY5XTAcyIQdL6nBO5a9iRjIyNJqoWRfEBx9NxT1h9EamSejRwGqZQYQBgCENOsJV0LdXIo8CVWZpVWNuCWErGKqcDkBGDJLZ3Vyaccgz/atui2v1KZWUXkEFHnRvceLBW0t3Odt7lXXLIQRC6053e9GY60/mFX4jBBC8OZjAd6LDP8VOYQiSRCIILF+djXHtf8iWLWUxjGnMiJwIwn/nkkktvetfcBYY/3wEnZWnWutoWxFI8VjkdQIwYJJKYQPqZI3hoQE96ejyE27IuNknXYafzrylNySefp3iKUziF3/kdL16O5Mj9Hj+FKUxkIrHE/tOWRx6v8irjGc/bvM1RHEUyybzKq5zO6bjD7udQ66wHTraFDcMTu3zRAcKIQdLwmP5M+c+1fDmkL33CUDGBWZH9MxZKg+DGbM32Y/JSFgLNAPLIK5jO9FfyyT8gI6ziiacpTQGIJJKGNGSnCVysMILgx4+iFFKICxff8R296GUVU/E0BqZNlsmX17Ygln2xM6c6zohB4mnSkOHnjeHe9MPoVEcCsW2SbhBb2crzPM9FXMQP/MA85hFJJE1pytEcTTTR+xzzIA8SRdQ/JsF00gGYxSx+5Vfa0pa+9OVDPmQc42r6kuoiTwEXZmmWvSGGCVY51WFGDJLWfY/ghokncXJyIgm1LU85sUm6QD75vMAL9KMfaaSRQ84//qbpTGcnOxnJyH2O28EOEkgghxxe5mWO4Rha03qvPu/zPj3pyVrWspSlNKIRGWTUxGXVVV7E5EOFVXXpgxVr1quDjBgk7pFD5NjzT+bNa8Yzvg4qJoDjgcdDG7M1exNmAc8onFXaV7Bi9QIWvKUcWE9SfvxMZSqd6UwaaQDEEYfL+deNbqwxyxDuQ4LzJ48jjo503KffOoyfvz71mc98TuZkNrKRzWyuxiuq85wFvDJZJh9wD0F1Eauc6hgjBkmD6IYdbjrssh+eXtbunUZbChrn1rZMlWAiC+Wm0MZszV4FPAAkY5QUf/BH9iIWfVzD8lUbivI+79OABvSl7z/twX6nhSwkhZR9ji2ggHzy/3m/lKX79JvGNAYy8B8fFBifVCE2eroUxgJvTpbJ3toW5GDHmvXqEIdnDOzV/tC2D3Udd2fniNjkGICAL6+g1Y5H145pdEuLSE9BXfV6H3RJuitZyfM8TwopiJMXPZjB/MZvrGc9AIkkcjzHE088O9jBB3zA6ZzOFrbwhlMMOUCAznSmf1Ch5D/5kw1sYAADAPicz/8x641mdM1eaN3lU8yKErb8Ri1hlVMdIC0jMwIY1ePEc/+VeuQx3Vxu9z5hD4HcTTt6F16zY1CjV5rXgoiVxSbpWsKRr4ERWZq1u9SelirHKqcwJy0js4E7wnvRgPHXndGs0xGlJqW6tv+2fkT0eZ6O9X5pUFrfMMMm6VrCkVnAsVmaVbk4f0u5scopjEnLyGwXFV/vX0MuuOWY5GatyzwjUg1owtYP/zol+eKG9aM31qUQbJukawlHfgAGZ2lWXfbv1jmscgpT0jIy0+s1anH1kAtvHhyb2KBCs6BAYV5+m50Prhvd6LYWXk9hXfFH7a+S7uVAO2wlXUvN8zZmuSN7w6whrHIKM9IyMgUY1qTD4RdnnPOvgd7o2LjKjhnYvXF7X/+VOQNSpjarAhFrApukawlH7svSrH/VthAHC1Y5hRFpGZke4JRDeg06u/eY8/u5I7xVGs7q2j5/3aiYc73tExbUr8pxq4kyJ+m2olWzPvQ5y4UroubFtBxknJ+lWU/XthAHAzbPKUxIy8iMBi7uPHT0+X3HXjywqhUTQKBelyZvuX9KfnzNayu35DUI9wik0pJ0I3GSdFeycs185h9wSbqW8EHRXcCrwF+1LcvBgp05hQFpGZlJwKRDB43M6Hb8GRkirmpfIS9QuDu/Xc4D60c2urOF1+0L54cUW0nXUisECPi3sW3pMpZtW8OaW3/RXw6YJPC6gFVOtUxaRmYicG2n/pnd0keeM0RcrhpVFIHd67b281+e2y/l3aY1ed5yctAl6VpqB0V1JztX/MVfKxaxaF0eebuAn4BPszW7+LWk9oOI3ACMA/yYPL3zVXV2OY5PB85U1cv202cAcLWqVuuDWU2d55/zWeVUe6RlZCYA17TvM6x7r5MmDnO53LUWUefe9svaUbHnRbVL+C25tmTYDzZJ11Kt5JCzeg1rlmWTvS6HnF3A/zA5TguzNbtCq0SISB/MMlwDVDVfRBoAXlVdW3WS14zSEBEPcFRFzyMiHlX1leeYcDbnHNCkZWTGAle0TR9wRK8xE4bWpmIC8Cd2a/qme07ik2teXrktPznc8jk8wFsslPRi9n2BWWqmFZh1gKYx7cPtbF9Sg/JZ6iC55G5cytLvPuXTtz7ggy/nMvfjHHIeACZla/aj2Zo9r6KKyaEJsElV8wFUdZOqrhWRwSLyPxH5VUSeE5FIABHpISLfi8h8EflJROJFZICIfOTs7+ns/5/zmloWIZzzJIphs4ic6bS/LCJDRCRKRJ53+v1PRAY6+88WkTdF5EPM/7PgMXs4fduKSKxzHXOcthOKO15EmojINyIyT0R+E5F++5PbKqdawAl+mNSyS5/0PqdcNMzl9oTFKsjicru2JY9t9XjeUnlr7fUrfX53oCLjtB4MnUdA11GQPmbf/a98CIefYLa+p8L8hab97y1w1Glw2PHw3ld7+p9wMazdSCzwMQulbfBY2ZqtwFTgR6AlQIBA4Gu+fnMXu2wJbste5JO/dSUrZ3/FV+++y7ufzGb251vZ+jBwZbZm35ut2T9la3ZOFZ3uC6CFiCwSkcdFJENEooAXgLGq2hnz4HWhiHiBN4BJqtoFGAKEPiQuBPqr6hHAzcCdZZTjO+BI4FBgGVCkFHpj/t9cDODIcyrwoiMnQB/gLFUdVDSYiPQFngROUNVlwA3ANFXtAQwE7hOR2GKOHwd8rqpdgS7AvP0JHRY3xYOJtIzMKODSJqldevQ7/fKhbk9E2IU/u7yxUUu8k1vdt3Xi1gy9LLdvww/L7Y+a/iI0SCp+X5vmMPMlSKoHn34DE7Ng9hvw2sdw1glwynEwfAKMHAIfToduadDULLqdgqmku1eSbrZm+1Ml9TkgASdJt6iSrk3StRRSmLORjQuXsGTdGtZsBtYC04AF2Zr9d3WdV1VzRKQ7RhkMxCifu4DlqrrI6fYiRjl8DaxT1TnOsTsAZO/qofUwiqM9oEBZ7x3fAv0xq6s8AUwUkWbAFkfGo4BHnPMuFJGVQAfn2C9VdUvQWJ2Ap4FhQebJYcAIEbna+RyF86AYcvwc4DkRiQDeU1WrnMKFtIxML3BhTGKDLv3PumqAO8IbWdsy7Q+JbZb0DW8nfb9uztrRcefGtIlfWCU3+b5H7HnfuwusNotwE+GB3HzILwCXC3w+ePAl+HDvgPL2wEcslL2SdLM1Oz9VUh/DJOmmABt3sGPXLGb91ybpHnz48OVtYlP2MpatWcnKjYpuBmYAvwDrnBl3taOqfue8M0TkV0zNqOIQoDSZbgOmq+ooEWntjFsWvsEowJaYWc4oYAxGaRWduyR2hXxeh1E+R2CUfNHxo1U1O7ijiPQKPl5VvxGR/sBxwMsicp+qvlTSiavFrCcijUXkdRFZKiJ/iMgnItKh9COr5NwrHMcjIvJ9TZyzLDgrP4wTl7vr0AuzekfGxNeZp3lfYo+mr7t+SXh69fMrt+cnlmqDF4Fh50L30fD01P33/b+34RjHyDAuEz6fZWZNt1wMj78GZ54AMftWKe8FvM5C2ctP55hjpgAFmFpQbGDD5tnMfjVAwBYyOsDx4y/cxKY/5jDn87d5e+o0pn2zghXPKToZuCZbsz/K1uy15VFMIvf3Frm/d0XkEZFUZ5ZTRFdM6kNrESlatPgMYCbGZNdURHo4x8Y7QQjB1IN/qkqeXVY5VHUV0ABo75jhZgFXs0c5fYMJKsK5T7cEsosZCmAbRrnc6QRiAHwOXCrONE9EjijuQBFpBWxU1WeA/wO67U/uKp85OQK+C7yoqqc4bV2BRsCi/R1b1ahq39J71RgZwKAB4689pF6j5m1L7R1miMvj2lL/tFaP5Z2Q23HzXStHNPpPS487UOwT13evGjPcxs0w9Fzo2Ab699i33/TZRjnN+q/5XC8ePn7KvN+6He55Ft55GCbcBFt3wFVnQ589P/uiJN3zg8fM1uxNqZL6H8wqEvHAzpWsXBNDzFtd6XqKINWeQ2apOQIE/NvZvnQlK/9azOK1hRTuxvhYZgPLsjW73CXXRe7tDIXjwXsCSBtgu8j9PVSvXlzOoeKAR0QkERNxugSzgPFrwJuO8pkDPKmqBSIy1ukfjfE3DQkZ716MWe9KjFmyPMwGih7mvsWYF2c5nx8HnnSwx5YQAAAgAElEQVRmdj7gbCe6sNiBVHWDiBwPfCoi4zEzugeBBc79fwVQXETfAOAaESkEcoAz9ydwlYeSi8gg4BZV7R/SLpgv9xjM9PV2VX3D0b6TMU8UXYF3gF+BSUA0MFJVl4pIQ4wTrsiWebmqfici9TF/7IaYfIThQHdV3SQiOaoaJyJxwPtAEsZOe6Oqvu9MjT/F/JH6Yp5KTlDVXBG5DLgA88f6o0jRVoS0jMx2wA2HDzspseux40ZWdJxwQnet3jKQi/N7N/h0v6uC3/IoxMXA1eP3bl+QDaMuhU+fgg5t9j3uirtg5GBYtAL8ATOrOuFi48sKwSbpHmQE5yItZvG6XHJ3YW7y3wOLsjW73LNkkXvaQv4E8JwK3lbFdPkN6KV6dbivrHLAUB0+p8OAucW0n4hRPl0wU8w5IvKNs68LxtG2BRNN8qyq9hSRScClmNWoHwKmqOosEWmJmUp2ArKAWap6q4gch3kyCSUPGKWqOxyT348i8oGzrz1wqqpOEJGpwGjgv8B1QBvnCaLCJri0jMxk4LImqV3cnYeddFxFxwk3JLZ58gze57u1P6w5KeG82JZxixMBdu2GgEJ8rHn/xXdw80V7H/vXWjjxMnj5nuIV0+IVsHYjZPSEeQshOsqYCvPyixXlVhbK6tAk3WzNXpgqqU8QlKQ7l7lzo4lOsEm6dZNicpHmYR4s/6xIyLfI/U1g9zngPh0iO0GJbsnCxsnevDsntMnCPPBYaoCaDIg4CnjNcRBuEJGZQA9gBzBHVdcBiMhS9sTU/4qJcgEzxU0LmmomiEg8JgrlRABV/VhEthZzbsHYSPtjEjWbYcyMYCJniqJG5gKtnfcLgFdE5D3gvYpccFEARHRCUly/M6/MDMfIvMpSmNSn2SuB+f4Gq19deUrKVY3/3rw9ctSlZp/PZ2Y8w/vBk6+btgtOgVsfh83b4KJbTZvHDT+/tWfMGx6COyaZ96ceByMvgYdegltLzJHnaRbKejrqp8GN2Zr9U6qkJhGUpDuLWdOHMCTBJunWDXLJ3biWtYsXsWjdVrbuxPhmZgB/VCTkW+T+JMg9HeQsiOwGMSWYef2FLVJ8m08e2ECuP61zdP0EbzqQzsyf55GR/lolLqnaEJFzMBanYL5T1YtrQ57KUh3K6XdMJEgo+7P1Bz8TB4I+B9gjowvoo6p7xf47yqo02+RpGLNfd1UtFJEVmIiT0HP7MaZEME6//sAI4CYRObQ8Gc5OAMRYoN2A8dd2i4pNKCGwuu4jLo97c/0zWz2ye9TuNM/tK39558GWbpfu9fe+IMgo+uztZiuJqVP2vE+pD9+XfivwAG+yUAbQUX8O2fcFJjjin0q605j24TEcE2cr6YYn+eRvXc/6RYtZvHYjG7djrCkzgF+zNXtbeccTuT8W8k4CHQ+RfSG62IR3EV9ehxb8fcbQlJiLRnZISoqPalxMtyeZ+fOPZKQvL68c1Y2qPg/ss8xXXaU6lNM0zCxlghOVgROBshUYKyIvYm4W/YFrgI5lHPcL4BLgPmfMrs6MpyjS5HYROQbjVwqlHiZKpNDJfi7OpvwPIuICWqjqdBGZhUkei8NEqpSVnsDQQweN8jZsnXp4OY6rs7gi42MWRt7T6s/NF28e4rqwsEf9L4v7z11dFCXp9gmupJut2ZoqqVMxNaB6AiuLknRtJd3wwclFyl7CkrVBuUgzgHkVyUUSud8L+cdDYAJEDoSoYlf5d7sKc7q2c28df2yTuPHHtk+M8npalDJ0AvAqM3/uR0Z6uZbjsZSPKldOqqoiMgp4UESuw/h7VmD8RnHAfMxM51+qul5EyqqcLgMeE5EFjtzfYAIWJgOvicgvmJDM4pa0fwX4UER+xtipF5ZyLjfwXxGph5nxTVHVMismx890dmxigy2dh405t6zHHShIXMv6X/Mx3679dvXJ9SYkNI9dllBDp65Iku65kUQesLPacCYkF2mDoluB6Zh17coV8g0gcr8LCgaDbyJEHguRxTqRvJ6CbX0O9eZcMKJFwkkD2iS43a7yFvTsjQnFvrucx1nKgV34tYpxzHmXAocdfekd6Y0OSSs25v9gQf2F/pRtL64am3Jt0zjvziqvUVUCJVXSjcMk6SbhVNJNISV5AAPOtUm6NYMff+FWti5ezvJVy1i2wY9/B+ah8mfgr2zNLveSWSJ394GC803ot6fY4KXYqIJNg46Izr9kdJukYenNq+JvnQN0ICPdLpFVTVjlVMWkZWT2Ai5u12uwv88pF59dUq7AwUYgf8euzrm3bD620WMtQv1R1cRHwEhbSbf2Cc5FWsKS9QUU5GBykX4CllYwF+kwyL0AvGMgotG+PVST4go3HNs7LnD5mHb10zumVMdqLC+SkX52NYxrwSqnKsUpgXGXO8Kbe+JNT54ZnZDUsLZlCjtylm8a5j7f3y15RjE3lCrnaTrq+aGNqZLaAqOgcoCdAJ3o1MEm6VYdTi7SylWsWr6IRetyyd2NUUaVyUVqA/kTS85FCvgbJ/s2nNgv0X3FyanJ7ZrVq+6HDQV6kZE+p5rPc1BilVMVkpaReRbQr++pl7Ro12vwsNqWJ5yJ3Dpj9djEiQlNY1ZUtz/KJunWIDnkrFnDmqWLWLRuJzurIhepMewevycXKRR/QZsmgY2nDmoQeeno1OTGyTE1XXrmezLSj6zhcx4UWOVURTirQNwYGZuw7sSbn7osIjLK+jBKQf2Fvsbbnlt9cqNrm8VG7K7Op1xbSbcacXKRlixi0dqgXKSZwO9Vk4u092xWxLf70Nay+ayjU2LPPz41KT7WW9uz3XHhmvtUl7HKqQpwgiBuAhr2HXdparueg4bWtkx1iUD+tpyuuTdvGd7oyZbVVKTeB4wITdIFW0m3ouSTv20967O/4zv/UpYepqjPi/fNlrS8LjQXSUROBm7BmMHmq+o4MYXyXsVE3l4A9y2AHWPhuf/ABfEQtdcMyOMu3NG9g2f7eZlNE84c2q6e11urtTlDWQV0JCPdLm1UhdiSGVVDJ6BtZEz8mlZd+oTTYrN1AldkYtyCyIfjFmya9Pdwz/mBrsnfVLU/yibpVgEhuUibFN2whCVnxRE3eCc7F+SRN2cRi5oSlA/orMp9PXCkqm4VkRRn1/kQdSOMOATmvAuBJFjgNQvJmPz4yIiCLf0Oj9x94chWiSf2a52ASQUIR1oA/8IoYEsVYWdOlcSZNd0IpPQ99ZIO1tdUeaK2fL1qbNLExCYxq+KreOiNwF5JugCpkurGrMnYE1OQjSiivDZJ1+QibWbzomUsW7OCFRsU3YKTi7SIRS0xizwfDSAi1wOo6l1Fx4vIvcAiVX3WfC7KRZr6CBzeChpEmbz90cDLxEWdtXFYj1jfZWMOScro0mTfYinhyy6gKRnpO2pbkAMFO3OqPJ2AQ7zRsatbdelrHaNVQF7y4BbP+/8sbLbmmRUnp/y7WXREblX5o2ySbhkIECjcwpbFy1m+ehnL1vnx76SYXCQR6YMxaRWxGlNrK5gOpm/0AohtAplRcFicWR3sdcBHvdjjNzWp/2X01WPPizj3uEEp1E1iMSUgHq1tQQ4UrHKqBM6s6URgZ/cTzk6PiIqOrW2ZSuKtWyaw8NtPiEtuyOVvmnVud2/fwmvXncbWtStJatqKcfe8SnQxSwD+Oz2Kxu0OAyCxcQvOfPBdAF6/4Uw2LP6Njv2O5ehLzWJ5Xz9zB03adyZtwIhKyetyeyPWJV/cekrOuJxu+TesH5bybIsq8keVq5Lut3z734MhSdfJRVrm5CKtc3KRvsckNJeUi1RcIMI/phiTi9SkCyQMh3MiYTumdFAbX/OGcRvGZFwTMWlMarLPt63Bjf+3iMw+XTjjjpsp8BVy2/gL6NBiv6uMhSMXYpVTlWGVU+XoCLRzuT0rW3XpG9a+pu7Hn0mfsRfx5s3n/NM28/l7OaTnQAac8y9mPH8vM56/l2Mm3bXPsRGR0Vz2+t6umnWLFgAwaeovPDV+IHk7t1OQt5vVv81h8IQbqkxuV1RS3Lyox+Pm/X35xuO8E+ic9ENVPFn3At5goeyVpJut2TmpkjoFY6ZNBrZsZOOW2cx+9UBM0g3JRVqbS24uJhfpB0wuUkEpQ6zG+FuKaA5JuSK33rUnF6kV0BJB89s1T9hYUNio8bPXNHEPSe/WrOigsZPv5PZzL+Thd97gtCHDad24KZNffIZXbtzP6sDhSRozf+5PRvo3pXe1lIZVThUkaNaU06Hv0W290TFV7R+pUtp078fWtSv2avtj5odMePorALplnsEzE4cUq5yKw+2JwJeXSyAQwOcrQNxuvnpyMkMvzKpq0Q0JHVI+0hlMX/PFX6ckn5+cEr22vOuhhZLJQVpJt5hcpPmY6qjlzUWaA7QX6dkDhg2HBjfAWZFFdZFcUri7ZaMOu+onLK73zcOXe3fn7WpxxIQpHNF+TyHomfPm0qxBCu2bt2R3Xh4ulwu328XuEop31QEuxKz7aakkVjlVnGYY/8TK1t2O6lfbwlSEnM0bSWho/P0JDZuQs6X4xZ99BXk8elpvXG4PGedcw6EDTyClbSfqNW7Jo+N6csRxp7F51RJUlaYdq28pQRFhd/LRLZ/1ZRc2X/PkipMa3dQ82pNXmd/wRKdQ4V5JutmavcqZQV2LCUPP/ZM/F8UQ83FdTdLNJfdvpy5SVeUiJcKtp8Nvfpj2EzwB9CTCnbwjJeljRmcc4XngolNiXK4hMVc9/iDp55+G2+XivgsmUb+eWf5OVbn95eeYeot5IJp4/ChOu/0mfH4/T1xxXdVdfM1yIjN/TiEjfWNtC1LXsdF6FSQtI3MkkBkZm7BhzORnr6kLhQS3rl3Bi5NG/uNzmty/IVnf7FFIkzNSyJq57/+pHX+vJaFhU7asXsYz5x/NeU9+Rv0Wh+zV58VJIxl14+PMff9F1i1eQLteQ+h5YvUuyB7I27KzR/6124Y2frG0Mgelsb8k3UswTv86l6Tr5CItWsKStRvYsA1YjilDsaCCdZFiguoiHQkuN0B0ZP7WAV2id11yYuukY3u3DFu/aw1yAxnpd9a2EHUdO3OqAGkZmW5gELApbcDxHeuCYiqOuPop7Ph7HQkNm7Dj73XEJRe/FGBCw6YAJDdvS9v0/qzNnreXcvpjxgc0S+tOQe4u1i/9nXH3vMZT5w6i6zGn4o2uvjgCV1Ry/NyoZ+J/2XDlhszICe5DE39qUMGh9ldJ9xVMku5KwB/ulXSLcpGWsnTtalZvwizPNA2Yn63Z5X6ad+oiZULgPIgcbOoiqdaLzd88vGd8weVj2iX3PrRREsXXUTtYmcjMn+8mI73cK6xb9mCVU8Voh/FHbGnRuWedLSTYqf/x/PLRyww451/88tHLpGUcv0+f3B1biYiKweONZNfWTayc9wP9z7rqn/3+wkK+e/VRznroPTavWlxUmRjVAH5fAUX+h+pEEzo1+kC/ZdqaT/46JfnC+g2j15f36b1OJ+k6uUjZTi7S34puxsyQfqHydZGOgchYCARSEgs2n3BUkv/Kkzskd2yZVNEHgYOBVphiqjNqWY46jVVOFaMPUFivUfPYeinNDym1dxjw2vWns3zuN+zatom7hrdhyAU3k3HONbx27Th+fu8FEhu3YNy9Znmw1X/MZfZbTzP65qfYuHwh795xESIuVANknHMNjdqm/TPuD1OfoNvxp+ONjqFx+8NRVR48+QhSjxxOdHyxpXWqBRFhV/JxLZ/xLS5otebRFWMaZbWI9BSUZ42bclXS/Yqvpg5n+Dm1laQbkou03qmL9A0mF2ll5esieRPB7WuZ4tsydlBi7qQxqYnNGsTZVfbLzmCscqoU1udUTtIyMqOAh4G/e5x47uGd+mfWSQf5gU4gd9OO3oXX7BjU6JXm5Tx0MbBXki5AqqRGYqo5twPWACSQEFuTSboBAoGgukhlzUXaLyL3Hgp5F0DESRDRSKQwv0Nz3X7m0Y09F49KTawXG1k9qx0e+HxHRvpRtS1EXcYqp3KSlpF5BKbS7V/DJ901KqVNxzpr1jsYcG3/ff2I6HM9Hev9Uh4zVNhU0t1PXaSy5iLtg1MXaYKTi9Ta7SrI7dJOdp53XPPIc4/pEG6LqtZVCoEkMtJ31bYgdRVr1is/XYACgHopzSobJWapZgL1Dm38rn6vCWs++uuU5Isa1I/eWBYlUutJurvYtWY1q5ctYtGanezczZ5cpIXZmp1b3vGcukjnOHWR0rwR7p2909x5F41okTNmQJs4t9tVl9axqwtEAEdifJaWCmCVU/k5DNher1Hz2MjYeBuhVAcQccnO5BEtnyoclt9my4MrRje6rYXXU1ja9KDGk3Rzyf17HesWL2LR2i1s2QlkY/wWlchF2lMXKTbKtWNA10jfpDHtcoemN4935LdUH4OwyqnCWLNeOUjLyKwHTAH+6jx0TKcjjjvt5NqWyVJ+Ars3bu/rvzJnQMrUZqX3JouOemtoY1Al3Y1ALlSskm4xuUgr2JOLtLU8Y8E+uUh9kuILdh7TM44rT06N7Z7aMLK841kqxU9kpIcuhGspI1Y5lYO0jMzDgCuAVYMm3DCs+aHpfWpbJkvFcW2fv25kzHmRHRLmJ5fS9Vw66nOhjRVN0g3JRdoMrKdyuUgRUJAJ/gkQ0b9xsi93ZL96nqtO6hTXrnmitY7UHn4g2ZbRqBil/nBFxA/8GtT0uqreXX0ilR0RSQfOVNXLStjfGuirqq9W0SkPwVl1ObFxS+tvquME6nVp8nZgttZb/e7KUxpc2jA5alNJ/qinWCjrKpOkW525SCIRA9s0Vv9JAxtGXXFSWnSjpBi7SkN44Ab6Ap9V5OCge68H+BM4S1VLrLYrIjmqGiciTYGHVXWMiHQFmqrqJ06fEUDa/u7hIvK9qtb6QtalzpyKLriG5KlSRGQAcLWqVkm4d1pG5k1AkrhcO0+7b+oNLrfbhjUdIAQKd+e3y3lg/chGd7bwun3FhU/vAvZJ0k2VVAFOIShJ14XLdQzHnBpPfKvqykXyuD2DOraUiNOHNYq9+ISOcXEx3jq/IO0ByiQy0h+uyIHB914ReQWYq6oPlKV/UNvZQLqqXlIRGWqTCk/5RaQH8BAmeTEfk3RWiFkBMh2zYOaVqjrd+YJGYJYLOAR4V1X/5YxzKvBvTG2Yj1X1Wqc9B3gMGAJsdfrcC7QELlfVD4KVj4hkOPKAmd30B+4GOonIPOBFjHPyecALuIDRqrq4LNeblpHpBVoDa5Kato63iunAwhURE7ks6cZW9287d+tR/ity+6e80zSkS3mSdOULvpgpiLeAgt3Ad5jw7yWVyUWKjnQP6dUpIuG849omnDW8fVyEJzx/guPvuZWPfphFSmISv73wBgDXPPEQH37/Ld6ICA5p2pznr72ZxPi94zHy8vPpP2ki+YWF+Pw+xmQMZvI5Jh7ltNtv5NdlS8nscxR3TrgYgNteepbD27bnhKMyavYCy0ebKhrnW+BwABG5EhjvtD+rqg8Gd3QsRh8B3YBbgWgROQq4C4jGUVYi0gh4EihaJv5CVf0+aAYWB7yPSZ2IAG5U1fed8T8FZmFmhmuAE1Q1V0QuAy7A3P//UNVTKnrBZUmwixaReUHbWBHxAm8Ak1S1C0aB5AIXA6hqZ+BU4EURiXLG6QqMBToDY0WkhTP9vAcT1dIV6CEiI53+scAMVe0O7ARuB4YCozBfeChXAxeralegnyPPdcC3qtpVVadgvrSHnD7pmHo0ZaUhRukFkpq2rrmlDypJ9nef859Rh3LfiE7MeP7effYvn/stj4zryQ09ovn1q7f/af97RTaPjOvFQ2O7s3L+jwD4fT6evWA4BbklWhbqPK6YJknfx7/e9L51P65bsuOw0ICEokq6e+VMOQrnOcxK34cAjQsp/KmAgnuBy7I1++Vszc4uj2ISuaeNyK13Nqh3509D092fv3Nbp/G7Pz+6449PDGp6XmbHsFVMAGcPz+Sze/eeLAxN78Vvz7/Ogudeo0OLltz16gv7HBfp9TLtgSeY/3+vMu/ZV/nspx/48fdfWbDUPD8ueO41vl0wj+05OazbvImf/vw93BUTVIFyEhEPcAzwq4h0B87BpDv0BiaISLGlAFS1ALgZeMO5B74R0uVhYKZzD+8G/B6yPw8YpardgIHAf0T+iUZtDzymqocC24DRTvt1wBGqejjmflthyjJzynVu5v8gIp2Bdao6B0BVdzjtRwGPOG0LRWQlTplm4GtV3e70+wOz/lR9jAL622l/BTPjeQ+TS1Rkq/0VyFfVQhH5FTODCeU74AFnjHdUdbXsG9X7A3CDiDR3+pRp1uRQr+hNUr2keMnPLQxEREZIFZVnrQ4Cfj8f3DOJcx//hIRGzXns9D50ysjca/mhxCYtGHPLs3z78pS9jp399rMMv+wOkpq24rOHb6BVl6nMfuspjjhuXLUu5hou+BO7NXkzMCeQuOrNVWMbXJ6SHL2lKNJtf5V0H8XcjJZWNBdJyD2rdZOIo08aEN3+khPTGvQ/vElU6UeGF/27dGPFurV7tQ3r0fuf973TDuOtmV/vc5yIEBdjfluFPh+FPh8iQoTHQ25+PoFAgAJfIW6Xi5ufe5Jbx1fq3ldTVEY5RTtWHzAzp//D1It6V1V3AYjIO5iH8f9VYPxBmNLyqKofU6o4GAHuFJH+QABTJqiRs2+5qhbJNpc99+QFwCsi8h7mPl5hKmrWE4LKMYe0l0Rw9TC/c+799S/UPQ6xQNHxqhpwniT2QlXvFpGPgWOBH0VkSDF9XhWR2cBxwOcicp6qTtuPDMEk4sw0B336UtRRHzy1ViO8Goj04vdGqi8ykoA3Sv2RUfijovB7o/FFR4k/MgZ/dDT+yGgp8HjxebxS6PFSGBHlKoyIEp83yuXzRrl9EdFuvzfK44uMdvu90RH+yOgIPJVL1V/12xzqNz+E5OZm1t7l6JP5c8aHeymnpKatAQhVsm6Ph8L8XArzduP2RJC7cxt/fvMx4x/7uDIi1SnE5XZtb3BKiycLjs8/ZNPda8c0uz/F7fJ7KDlJdxfwW7nOIfcnRkbkjzusbeTwiZkxXS85sXOjzm3re6v4UsKK5z75gLEDhxa7z+/3033iGSxZs5qLR51Er7TDAGiZ0phuE07njGHHsmTNKlThiPapNSl2RWlUepcSKW5iUJO+xdMwFqPuzsRgBVD0sBR6Py9K4j4OM8EYAdwkIoeqqq8iJ6+ocloINBWRHqo6R0TiMWa0bzAXNE1EOmD8Q9mYKWNxzAYeEpEGGL/SqTgzr/IiIoeo6q+YqW8fTAn1VQQlGopIW2CZqj7svD8cE8JbKolb13XzFuT1V1wFCRvX1W+3dXO5yoUHQH3i8vtcrkK/y+X3u1yFPrfb73d7AgGP2+/3eHwBjyc34InQQESEakQEAW+E+r2R6vdGBnzeKPVHRqovMhpfZDT+qGh80dH4omLEFx2DPzrW5YuOwRcd6/J7jeJbPue72PoRrqjEZQtyCiOjPMmR3qgVi3+LcOXmqD8yOkJc7hJ/6H1OvpCpN4/HV5DPqBse4+un72DguddRs/83wgOXNzZyeYPbmt6z+fztxydct7xz5NSumCTdJ4CJ5R1P5P6Y5AT/qD5pUSP+fVpin/NHHNKkZaP4gyLk+46Xn8Pj9nDa0GOK3e92u5n3f6+ybedORt10Db8tW8Jhbdvx4KV7VsI//voreOqqf3PHy88xf+lihqb3ZELmqJq6hPJSn5k/CxnpVZWz8w3wgojcjXm4HwWcsZ/+Oyk52fprzEzsQRFxA7FFVjCHesBGRzENxFi7SkREXEALJ85gFjAOiMOY/cpNWf5DBE8tAT5T1etEZCzwiIhEYxTTEExG/ZOO6c0HnK2q+SXd0FR1nYhcD0zHfNGfqOr7FbkQ4HLnC/QDf2AcdgHAJyLzgRcwWv90ESnE5JYU57sqlqSlCxNRDSDiSSgoKLepxQXi1YDH6w94KLdLvHz4RPx+EZ8f0RzUdfLP33r8bre/0O8vlEBAT5391Va/xxPwR3jVH+EN+CK9On31qoYd//gpZ+AnL+T4oqLVFxnNsPbtKYyKYdl7T3p/nDOrQXrDpE3PPXRtAx+4Ro85Z3ujQzoFfN5ot88b5fZ5oz1+5zUQGe1Vb/QBd7N1xTWv93Hgv11n7L5r7tioEckprt8nOJV0S/0didwfkdbKc3T/LpFjH7w0JeOMoW2aJSdEh69NuBp48bOP+OiHWXz9wOOlPuQkxsczoGt3PvvpBw5ru6cyyfuzZpKemsauvFx+W76UqbfcRf/LJnLakGOIiQpLC6gHY3Upd0J1cajqLyLyAibABkxAxP5MetOB65x7+F0h+yYBT4vIuZj75oUY10cRrwAfisjPwDzMpGR/uIH/ikg9zP18iqpWSDGBTcItMyNEJmGc3Vv+A2Paw6G1LVNp/ADcAnzufC76ZV5fTN+zMVOBMcXsG4uJRnkBY9xuDdwGvGxmg4U+l8vnc7l8frfbv2fz+H0REQGfJyLg80YGCr3eQKE3Sn1R0VoYGaW+qBgKo2PwRcVoYXSsqzAmDl90nKswNk58sfEuf0ycqzA23u2LSXD5Y+M9/shoj98b7fFHRnn83mgvHm/t3thVC1u6Z/4wynvy4dGy7ariknRF7nedNKBe/16dIk5vkRJz9IgjWzaL8noOiqnninVrybz+in+i9T6b/T1XPv4gMx96ioaJxa/69fe2rUS4PSTGx5Obn8ewqy/l2lPPJLNvP8D4oY6+5lI+umsKi1f/xT2vvcSrN93OUZecx0d3Tdkn+i+M6EBGenn82xbs2nrlIR4zG8RrQtHDnh6Y+g/LMZ7M14HyZiPPdI5tD+zGON3ce96LVwNerz/gxY+zRkL14BPx+eQfJZjnc7v9hW6P3+eJ8BdGeAO+CK+/0BsZKIyM0sLIaC2MitZCowC1MDpWCqNjKYxNcBXGxIsvNs5VGBvvKoxNcJFkmi4AABeCSURBVPti492+uHpuX2y8xx+b4AlEx0b4vdHeUgNdRCL+Cgzo/1De+i09PA+f3v/P2LURnXZ9BvDyDe/1SIwrmDDrkQ7H9U5r3NTtPqgmSJx66w3MmDeXTdu30XzMcUw+ZyJ3vfIC+YUFDL3KhIH3TuvMk1ddz/+3d+fhdVd1Hsff597kZk+adEl30o3uTZPctAWECLIXL+O4gCKCI6OOzzw+Log+4zDjODqAuKHiqIwwKiMoS2kKLdCCoCyWFkoXS1e60L1N0uz7PfPH+WWhLW2SJvnde/N5Pc99SH+5y7d0+fT8zjnfc+DYUW65+zssv+seDlYc46Y7vkV7NEo0GuVjF1/aGUwA9y75IzddsZj01FTmTZmGtZa5n76eqxddEMvBBO6PjPSSRk49FOm6x9v4I/jYFJjpd009sRx3CFE7bmPEN3FrS8O4Gcs1uJvWVbh7nqPpWk9qgcuBP+I2OryFm1Bsw022XDBYP4lB1A5Rb16wrTWQ1NaalNTeFkxqb00OtTeHQtSlpKQ1poSSSQm0ZYUy3klLzT3SnJFtQoHamqba1l32+n9YPHv2tKmBwJAYIEnPTKAs3JttK4LCqccixvwANzZouhOuneX2ZYmcpCFnWHNdyYLKtpLS5uSZc0LZ4yfkpYRSYnJCRAZFLmXhPs+9DFW6rddzjXi385q985xETiW9+nhK+vPPjuH5rtMS6gomHa8rPa82Or8kmjZtenr2iJHDg4EY3iQn/UkHDvaBwqnnmnDtlxRO0muZu3cNy9y9axiPuFm/9uTk9sp5RUeawgsbg3PnBzILJuVkZGZl+1ym9L8WysIDOBubuBROPdeA25BG07s3oIn0WrC1NZj3+mujeP21zmuNw0c01JYsqGorWdAWmjE7lD12bF4oOaQzmOJbrw+JFEfh1HMNeKtuGjVykgGQVnEsPe3Z5ek8uxxwC1Jqpk2vqg8vrKWw2KZPm56ZlZuXF9Bqi3iicOojhVPPdQ8njZxkwBkge/vW3OztW3N56LcAtKWmtVYVFlc2hxc0BucUJmWdUzAsPT0jLo+0GSIUTn2kcOq5erxwqnJBJTLokpoak4evfjmf1S93XmvMH11XG154vK2otC1lxszU7NFj8pKTkuNiL94QUOF3AfFK4dRz9Xj/vza41kciMSHt8KHMtKeWZvKU6/wVDQRs9fRZFQ3hhfUUFpExZVpm5rDc3MBQbIzov/V+FxCvFE4917lPYRfUNkFDqrd6TySWBKJRk/PWpuE5b20azu/ctZb0jJaa4tKKlvCC5qRZc5OzJpwzLC0tTce5D7w3/C4gXimceu4QrpEsAEfh0ISuEyRFYlqooT404qUXxvDSC53X6seNr6kLL6puLwpHU6fPSM0elT88KZikvxP61+t+FxCv9Bux5w7hWssZwB5UOEmcy9i/Lztj/6PZLH0UgGgwGD0+a86xxtJF9WZekcmYNCUrMzsnV3cD+6wJd0KC9IHaF/VCxJi7cOHUcAPMua7raGKRhNSck9NUU1Ra2VqyoDV59tzk7HETclNSUtLO/EoB1lAWXuB3EfFKI6fe2QEUAQ2btShChoCU6urUkS+sGssLqzqv1Z1TUF0XXlQTLQq7VkwjR+YFA0F13j6Z5pvOgsKpd7YD5wGsh4o2aE2CZJ9rEhlUmXt252Tu2Z3DYw8DrhVT1dz5RxvDCxoCc4sCmQWTszOzsnJ8LjMWKJzOgsKpdw7iLYqIgj0AeybC1DO8RiShBVtbg7lvrBmZ+8aazmtNecMbakoWHG8rLm1Jnjk7JWfs+LxQaMi1YlrrdwHxTOHUOwdxiyIAWAebFU4iJ0utrEhPXbkinZUrAK8V09RzXSum+cU2ber0jOy84XmBxO3Mvhc43fHpcgZaENELEbds6dtABlAzGtJ+AbcGugWWiPRMW0pqW3VhcUVzeEFTcG5hMHNiQU5GRmZMH2nbC9+jLPx1v4uIZwqnXooY8wHgE8A7APfCJyfAFH+rEkkMjaPy62tKFla1F5e2pcyYlZo9Jm5bMRVRFn7T7yLimcKplyLG5AN34Ibt3ALFEfigv1WJJKaoMbZ2+syqhtJFtcwrMulTpmVk5eblxXgrprcoC8/yu4h4pzmn3jsC7AeygNon4a1rYLFu7Yn0v4C1JmfL5rycLZvzOq61pqe3VBWFK5tLFjYlzZmbnDWhINZaMT3kdwGJQCOnPogYcynu1t5egHvhRnWLEPFP/ZixtXWl51W3F4fbUs+dmZad72srpqmUhXf69NkJQ+HUB96tvTuBPQCfgaJrIeJvVSLSIRoMRmtmzq5sDC+qN4VFgYzJUzMHqRXTa5SFFw70hwwFuq3XN++6tfcQbLwcPpDmVvGJiM8C7e2BYZs2jBi2acOIjmvNWdlNNcWlVa0lC5qTZ88NZY2fmJva/62YdEuvn2jk1Eferb0b8EZPX4ILLoFL/a1KRHqjdmJBdX14oWvFdO6M9OwRI/OCwT63YqoFzqEsXNWfNQ5VCqc+ihiTCfwAd9JlSy6EfgVfToFUn0sTkT5qT0pqr5kzv6IxvKAxMK8okDlpcnZmVnZPWzHdRVn4GwNa4BCicDoLEWP+DjfXtBfg6/D+C6DM36pEpD815eY11JYsqGotLm1NnjUnlD12fF5KKPSuf4RaaxuMMQWUhY/6VGbCUTidhYgxOcD3gcNAWz6k/Ry+lAzxuGlQRHrAArWTpx1vKF1Y0zx3fsrYwqK65PSMJ7hk4a1+15ZIFE5nKWLMdcBlwD6A2+HyUq9zuYgkPgv1BqZirY7R6UfaOHr2VuEOIAwC/BZeaYd2f0sSkcFi4EcKpv6ncDpL5dZWAC8CowH2QN0aeNXfqkRkMFg4Btztdx2JSOHUP57F7RkLAvwEXqwBLScVSXAGvoO1NX7XkYgUTv2g3A3pVwJjAeqg7f9gmb9VicgAWw38zO8iEpXCqf8sxW3CywRYAbs2w3p/SxKRgWChCbgZazW/PEAUTv2k3Np64AFgJG6BBD+GZ5qgwdfCRKTfGbgda7f4XUciUzj1rw3Aa8AYgEPQuAye9rckEelPUbfg6Yd+15HoFE79qNxtGnsIt08vFeB3sHEvqH2+SAKw0BRwt/OifteS6BRO/azc2krg93ijJ4CfwLJmaPSvKhHpDwb+BWu3+V3HUKBwGhgvAVuBUQDboPoBeDTqRlQiEocs/AW4x+86hgqF0wAodyt4HsDtfcoAWA5v/8l1kxCRONMOBw1cr9t5g0fhNEDKrT0I3Avk4x3qeA+8shU2+lqYiPRKOzQFYTHWHvC7lqFE4TSAyq1dDzwKTMBbXv4fUH4M1IdLJA5YsFG4AWvX+V3LUKNwGnhPAWuB8eC6R9wJD2v/k0jsa4Hbk6193O86hiKF0wDz5p/uB44AI8AtkLgfHomC7l+LxKgm+H2Ktd/1u46hSuE0CLzuET8BkvEWSDwNu5fBk1q+JxJ7mmB1Ktzsdx1DmcJpkHRbIDEKF1L8GtY9pYASiSktsDfVLYBo9buWoUzhNIjKrd0APIhbIJEM8Ct4fQUs97UwEQGgAfaF4DzcOW3iI4XT4FuF6yDRGVC/gDUrYIWvVSWgdqAIuMb78c3AJGC+93jzPV53GzAbmAl8Ebdzuhm4EpgD/Lzbcz8LaBlXYqiB/UEIa8l4bFA4DTKv/94zwMO4gEoC+G947Rk1ie1X9+ACpru7caH0Ji6gTvQK8DKug+8mYA3umONngBLv+q+8567HrWgp6u/CZdAdh73HoTjF2sN+1yKOwskHXkCtAP4ATMQLqHth9Ur396CcpX24Nfy39PJ1BndQTwtutNSK20WdjGuO2NbtubcD3z7rSsVvVbCzHoomWnvE71qki8LJJ15ALQceoVtA/RT++pw7VVfOwpeA73Hyb/BvAvOAL+PC50TnARfjuvaOAa7Ajb4uw+2cXoi77VeOG0mNHYDaZfBUwtYWKB7nGjZLDFE4+cgLqCdxXSQmAkFwbY6WwNJ27YPqkydxSyJLTrh+B7AFd6uuErjrFK/dAbyFG3ntB54H/oz7l8PvcfNLHwV+DHwV+ArwEVxYSXypgE2NEM63tsbvWuRkCiefeQG1DHgcOAcIATwAb/4SHmx2d5mkF17GhUUBcD0uYD6JGwkZIAX4NO5UyBMtARYBmd7jKuCvJzzn58BNuBPnQrh7s9/p55+DDKwD8JKF0nHW1vldi5yawikGeAG1FPgN7k5ROsDTsOu/4Ne1cNzP+uLNHbiRz27cqpNLcOv3D3rft8ATuJV3J5qIWwDRhptvepF3L6qowo3MPoXrPxWga55KYl8U7Hq4//Nw0Qhr9csWwxROMaLcWltu7XPAj4A8IBdgHRz7Gtx3APb4WmACuAGY6z2OAf/qXV9L18KJjwBTvOcUeo8PdnuPb3uvM7j5qLXec/9xgGuXs9cIzc/AbbfDLd4/CCWGGf0axZ6IMQW46Yxk4DDui8DtcOV8KPWxNJG4dBQqVsF1H3f/AJQ4oHCKURFjhgP/jJs62Yt3iu5noOgaWBz0Fk+IyOlth83L4KqvWLvX71qk5xROMSxiTCpuLv8i3DRKC8AFMOZz8PfDvC7nInKyKNg1sOS7cEO55pfijsIpxkWMMbhtNjfgVkBXA6RD0m1waREsNH4WKBKDaqD+Rfj2fXC35pfik8IpTkSMmQ58HsjGjaIswNUw+Ua4NsNdFxny1sGWx+HG/7R2rd+1SN8pnOJIxJhM3Nadi3ALJeoBRkDqN2DxuadeHS0yJNRCw6PwyBL4Wrm1R/2uR86OwinOeLf5inCrn5OAzg7Kn4DZH4JrUiDVr/pE/LAOtv8Obt0BT3mnT0ucUzjFqYgxebhTIApxAdUMMAmyvgrXTnTbdUQSWi00PAaPPg7f8A70lAShcIpjEWMCwIW4FX2tQGdX5etgZgQuz4JhftUnMpDWw47fwNd3wFKNlhKPwikBRIwZg2tSMAXXPLsR3Iq+L8D558H7kr2DDUXi3QE49ig8sQr+vVwHAyYshVOCiBiThDvx4XrcnNMB3GGwTIKsL8Bl012nHZG4VAN1S2DtErgzCs+VW9t25ldJvFI4JRhvRd9i3KniTXjtjwAuhgmfhKtGugbdInGhBVpXwcYH4bd18Idyaw/5XZMMPIVTgooYMw43ipoHVAA14BqWfhqKroAPpEGGjyWKnFYU7FrY/r+wdB/cB+zQhtqhQ+GUwLxl53OBG4GRuFMjmgFyIHQzhM+H8xVSEmt2wL7fwPPr4afAG+XW6uDNIUbhNAREjAkB78edCBHELZpoBbdo4iYovhAuyFSXCfGRBbbBnsdh3avwS+BP5dY2+12X+EPhNIREjBkGXApcjtvAewivmWwIAjdC4cXwvmx3npTIoGiH9g2w4yHYvMWdCP1kubU6YHOIUzgNQRFjsoEy3MKJEG5/VBNAEpjrYc5lcGGuuxUoMiBaoGU1bH0I/rYPngZWamm4dFA4DWERYzJwm3gjQBoupBrBLZz4CMy4HC7Ih/H+VSmJpsF1DN/yMGyqgmW423eVftclsUXhJESMScPtkboWN+90DK+pLEApjLoGSmbBPPXtk746Bseeh+2PwfpGeAJ4udzaOr/rktikcJJOEWNScMfAfwg379QEHAWiAJmQ9GGYfT4Uj4GJ/lUq8aIVWv4G25+E3a/BFmAJsFYLHeRMFE5ykogxQWA6cAmuA7rBjaYaOp5TBCMiUDIHClPcLUGRTodg/5/h7XLYUwM7gaXARnV1kJ5SOMlpRYzJBcK4jhMnjabSIPhhmHUBFI2BgoALMhmC6qD6Ddi2DN7Z6n6PvAC8DOzT5lnpLYWT9Ig3mpoGXIy79Qeu80Tn3NRYSL8aZsyHmeNgUtDtqZIE1gj122DnStj3FzhiYQfwLG6U1OR3fRK/FE7Sa95+qRLcaGo4bv9kJd2CajikXA3nlsCsiTAlSV3RE0YVHH0Ltr8AR1dDlXW/9qtwnRwOn+HlIj2icJI+886TGo/r33cRbl+UBaqA2o7nZUHy1TA1DDMnwbkhSPGlYOmTKEQPwd71sGslHN0Bdbg2WK8CrwC71F5I+pvCSfqF18dvDDAHt3dqPC6oaoBq72tSIXgJnFMIBZNh0ggYG4SAX3XLqbVA8x7YuQbeWQnHKlwnkWO4MNoI7NYBfzKQFE7S77ygGgHMBt4HTMYtlGjABVVLx3OzIbkMJs6FgklQMBLGBhRWg64B6vbDnh2wbzVUvwkN3lBoJy6QNgOHtbBBBovCSQact+JvOjAf1yU9ja6wOo7XhBZct/QymDgPCgqgYIQLK60A7GfHoWIf7N0K77wCldvdyNbiDqjcAKwGtpVbW+1roTJkKZxkUHnzVKOBAqAQdxuwY59Ux8iqM6yyIbkY8qfD6AkwejSMzoNRWmDRc41QXwGHD8LhzXDgJag+7ALfAm3AdmA9sBvYqw2yEgsUTuIrL6zG4MJqPi6sOhZMtOMm3+u8rwEIgJkHw2fD6AIYPQbyR8DodMgc1OJjTAs0V8KRI3BkPxzZCUc2QO0hF+QhXBg1AZtw80Z7gQPaGCuxSOEkMcXbTzWGrsCa5v23+56pBrpWjHWaABmzYeR4yBsFucMhdxjkZkNuonSxaIGWeqiug5pqqDkCFW/D4U1w/G23MTqdrtugBtfMdwvwN1wYHdG8kcQDhZPEPG90NRzIB8YB5wJTgBzcX8gGN7Jq9B5NeKsDO+RCaDLkjIOcUZA9AnKGQU4mZKRCWghSUyA1BKl+bB5uh/ZWaGmC+lqoqYGa41Bd4QKoZj9U74baCvfzSsOdXhzE/fwDuNuhu4C3gf24UDpabm3LqT9RJLYpnCRuRYzJxM1f5Xv/HQeMxa0U7JhTMbi/vFtxI60m3GrBNk4IsA5ZkDwcUodDag6kZrtHWoYLsGTcGxrAGPcBptuj88cA7RBtguYGaG6EljporofmWmiugZbj0HzcfS+Ku/WW0u0RoGuhQsdoqBp3SORO4B1cCB0pt7az76FIIlA4ScLxRlo5QC7uCJAcXHiN8h55uNtfttujQ0eYgQuwNtyorOM53Z/7XtcMblQTxJ04HOTdQXPiHzov06jG9aQ7igugCrr2idUAddpbJEOFwkmGJC/AUnDnU3U80k74OgfIomseJ0BXkJz46P49i5sXa8C1dOp4NONGbc3dHi240Vytgkeki8JJ3pMxxgIPWmtv9H6cBBwEVltrr+nD+/0P8ENr7eb3+H4EmGWtvfMsyhaRBKBwkvdkjKnD7YE531rbaIy5CrgD2NeXcBIR6Sm1iZEzWQEs9r7+OPBQxzeMMd8yxtza7cebjDEFxpgMY8xTxpj13rXrvO+/YIwJe19faYx5w3vOc961m40xP/O+/qAxZrUxZp0xZpUxJr/bZ97vvdfbxpgvetdP+ZkiEp8UTnImDwPXG2NScd3HV/fgNVcCB6y1hdbaOcDT3b9pjBkJ3Ad82FpbCHz0FO/xErDIWlvk1XBbt+/NAK4AFgD/boxJPtNnikh8UTjJaVlrN+A2wX4cWN7Dl20ELjXG3GWMudCe3J9tEfBna+0u7zMqT/Ee44FnjDEbga/hmsh2eMpa22ytPYZbSp3fg88UkTiicJKeKAe+T7dbep423v17KBXAWrsNdxjhRuAOY8y/nfC6jhVtp/NT4GfW2rnA5zre29O9M0Q7kNSDzxSROJLkdwESF+4Hqq21G40x7+92fTdwDYAxphiY5H09Fqi01j7oLaq4+YT3exW41xgzyVq7yxiTd4rRUw6u0wHATWcqsAefKSJxROEkZ2St3Qfcc4pvPQZ8yhjzJrAG2OZdnwvcbYyJ4joz/NMJ73fUGPNZ4HHj9hsdAS474b2/BTxijNkP/BUv+E7jtJ8pIvFFS8lFRCTmaM5JRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERijsJJRERizv8D8nZMTF6gfwYAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "\n", + "# Labels for the sections of our pie chart\n", + "labels = AggregatedGenre['Genre']\n", + "\n", + "# The values of each section of the pie chart\n", + "# sizes = Data_Influencers_DF.groupby([\"Genere\"],as_index=False).sum()[\"fare\"].tolist()\n", + "sizes = AggregatedGenre['Followers']\n", + "\n", + "# The colors of each section of the pie chart\n", + "colors = [\"gold\", \"lightskyblue\", \"lightcoral\",'red','pink','darkblue','purple']\n", + "\n", + "# Tells matplotlib to seperate the \"Python\" section from the others\n", + "explode = (0,0,0,0,0,0,0.1)\n", + "\n", + "# Creates the pie chart based upon the values above\n", + "# Automatically finds the percentages of each part of the pie chart\n", + "plt.pie(sizes, explode=explode, labels=labels, colors=colors, autopct=\"%1.1f%%\", shadow=True, startangle=120)\n", + "\n", + "# Tells matplotlib that we want a pie chart with equal axes\n", + "plt.axis(\"off\")\n", + "\n", + " \n", + "plt.title(\"% Followers per Genres\", fontsize=16)\n", + "\n", + "plt.savefig('Images/% Followers per Genres.png')\n", + "# Prints our pie chart to the screen\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAbAAAAD9CAYAAADd/yIsAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzsnXd8VFX2wL9nJoX0kEAIoYZiAAVRQAXFYFSwYBR7wxVX7J2IZdUI7lpW/enaVldlrWtb14Z9VZouRRAQQiYJvYUQQhLSk5n7++O+wBBSJmGSyST3m898Zt5999133iR5591zTxGlFAaDwWAw+Bs2XwtgMBgMBkNLMArMYDAYDH6JUWAGg8Fg8EuMAjMYDAaDX2IUmMFgMBj8EqPADAaDweCXGAXWCRGRRBH5QUT2icgSETm6nj5fisiLHoz1hogoD14TWuVimomInCYiD/laDm8iIjYRucr6ne4RkWoRyROR70TkehEJ9rWMBkNrICYOrPMhIguAauBxYDpwDDBUKVVj7Z8CvAwkKaUKmxhrINDdrela4I/ASYDTrT1DKVXstYtoISLyOJCmlArwtSzeQEQCgf8AZwBvAl8Bu4F44CzgcmCmUupvPhPSYGglOsQ/scFzRCQMGA8cr5RaKiK/AzuBwcA6EQkFngVmNKW8AJRS64H1buOfYX1cUqsQDYeHiAQrpSob2P0IWlGdo5T6qs6+j0TkUSCxVQWsQxPyGgxew5gQOx9B1nu59V5qvXex3h8CNiil3vHmSUUkSERKRSTNrW2MZV78r1ubiMhuEZnt1hYhIk+LyGYRqRKR9SIyU0Skzjl6iMirIrJTRCpFJENEprntfxy4B7C7mTYrrH2BIvKYiGwQkQpLhoUicnwT17VYRP4rIhda56s975R6+o4SkbkiUigi5SKyQETG1unzvojkiMjJ1tjlwOy6Y1l9w4BbgH/Xo7wAUEplK6W+q3PcIOs8+da1LheRs+v0eVxEakRksIh8a/3uNorIfe7fu4icYX2P51jm5D3A5mZe8zgR+VFECkSkzPr9PtvQd24w1GIUWCdDKbUXyAZuEZGuwAxgL+AQkSHoG+JNrXDeKuBnIMWtOQWtSMe5rdOMALoBP4FWfMB/ganAU+jZxlvAn60XVr+uwP+AU4EHgMnAd8DrIjLd6vYi8DbatDnWep1s7XsIuBl4GpiENoPOB2I8uLxhlmyPAxcAW4F/i8g4N/lOABYBYdbYF6IfHn4UkeF1xutmyfkWcCbw7wbOe4I13lwPZKyVYwCwBBgC3AacC2QAn4vIpLrd0ebJr61+XwOPApfWM/TLQAVwGXCdda4mr9n6vX1ttV8FnI3+vQZhMDSFUsq8OtkLmADsART6xnGh1f4D8Nhhjv2wNW5APfvuA/bV7gO+AZ4HKoFkq+0OtFLrYm1PB1xok6f7WI9Y/aKt7b9Y19K/Tr+3gR2Azdp+HKipR7b/Av9qwfUutq73GLe2AGAj8L1b28/AKvfvBQhEm1/fd2t73xpvkgfn/oPVN7lOu1gy1L5sbvvetb6PqDrHLAAWu20/bo19WZ1xs4DP3drOsPq9V498TV4zeq1UAUf4+v/CvPzvZWZgnRCl1DygJzAU6K6U+reIXA4MBB4Rkf4i8o2I7BWRleI9D8KfgHBgjOV8cBLwJVoJ1M7MUoD/KaUqrO0z0DfN5SISUPtCz666AMe59VsEbKvT71vrWgc1Idsy4DwRmW2ZtAKbcV3ZSqnfajeUXvv7N3qGh4hEWp8/sLZrZVPAjxyYBdZSppT61oPzSgPtf0A76dS+3E2IZwBfAKX1fJ9jRKRLnbG+dLsuBawF+tZzzk8OEszza85EP9S8LiKXi0ivxi/ZYDiAUWCdFKVUlVIqUylVZt1sngJuV0qVoZ/StwC9gL8Bn4hIrBdOuwx9szoFrXiC0ErnJ+AUEbGjb2w/uR0TByRx8A25Gj1jAIh16zexnn5v1+nXEA+jZ3EXomcO+dZ6WlcPrmtXA21hIhKF9tIUa/y68l1bj2y5HpwTtKkSDlUoXwBjrNea2kbr+41Bm/jqyvEI+n7gfr1OdajnaCUH1kvd2Vln26NrVkrlox9a9gCvoB9AVolIaiPXbTAAxgvRoHkE+FUp9ZmIRADjgBssZfZPEXkKvd7yZWODNIVSyikiC9E3LDuwTClVIiI/os2LJwFRHKzA9gAO4MoGht3g1i8HuLuBfplNyFaJvtn+RUR6Aqno9bAg9IymMXo00FaqlCoSkdoHxafRJsJDTt/EdkMsBsrQ6321ihql1B7094GIlLq1O0WkCP17fKaBMfM9PHdd6spcYL03ec1KqV/Rs99AtNJ9APhYRIYppbJbKI+hE2AUWCdHdBDzNLTzBBwwS4VZ+wOAYBo2VzWXn9BedSFoUxLoG3EN8CD6hrzErf83aLPXXqVd9hviG+BqtAdlQSP9KtFeiIFKqer6OiildgKviMi5wFFNXhEMFpFjas2I1nd2AdqpBKXUXhFZgv6O77ZMcYeNUqpUdLD5DBE5SzXgiViHb4Cjgd9VK7q6t+Sard/HLyLyMNp5ZQja4chgqBejwDoxljv0S8DjSqlNAEqpYhFZCjwuIn8BpqC99hZ76bQ/Ak+iZ3kPWuesEpFfgNOA7+ooln+iZ0A/icjTaJNYMHpNKxXt7OAE/oo2/y2yXLCzgAj0Ot/xSqkLrPEyrPe7Rbvv1yilVojI12jF+RtQCIxGzxQbmqm4sxP4j+gMH3uBW4F+HDxrvMO69q9E5A20mbC7dZ5qpdSDHpynPh5AK9nPrHFrA5mj0bPmoRx4UAC4H32d80TkJbSpuCta0SQopW5ooRz10eQ1i8gF6O/pM7T7fQRwJ/p3sNSLshg6Ir72IjEv372Aa4B1QFCd9kFoj8QS9KL9xGaM+TANeCFa+21o81IFlqeh1X6fddy99RwTinatzkLPoPagb8IPYWWTsfrFAs+hb4RV6HWo+cBNbn0CgH+gTWUuoMLt/Ess2crQJscHGroOt/EWoz0YL7C+y0q0kjy/nr7DgY/QCqYSvYb1ifv3iza35TTz92hHzz5/suSvBvLQjhnTgeA6/fuhHwx2WN/TDrSzy6VufRry1nwfyHTbrvVCPKkB2Rq9ZuBIa/8m628iDx0WcKyv/z/Mq/2/TCopg+EwEJHFQIlS6jRfy2IwdDaMF6LBYDAY/BKjwAwGg8HglxgTosFgMBj8EjMDMxgMBoNfYhSYwWAwGPwSo8AMBoPB4JcYBWYwGAwGv8QoMIPBYDD4JUaBGQwdHBH5k4isFZHVVnmcRqtMezjmBPeCna2FVeX5wib6zBOR0a0ti6H9YXIhGgwdGBEZi85Wf6xSqlJEunGY1Y6tZMUT0KnGfjlsIQ2GFmJmYAZDx6YnkK+szPNKqXyl1A4R2SQiT4jIUus1CEBE+onID9Zs7QcR6Wu1vyEi/yciP6GLVN4A3GnN6MaLyEUissaq5bWgIWFExC4iT4nI79Y5brXaR4nIfBFZLiLfWiVt6h7bWJ8rReQXS4bj6h5r6JgYBWYwdGy+A/qISJaIvCQiyW77ipVSxwEvAM9abS8AbymlRqALmz7n1v8I4DSlM/u/DDyjlBqplFqITqw8SSl1NLpKQENcByQCx9Sew6oD9jxwoVJqFDAHXZttPx70CVNKjQNusvYZOgHGhGgwdGCULhg6ChiProT9gYjca+1+z+29tmzMWOB86/Pb6DI1tXykdOma+vgZeENEPgT+04hIpwEvK6VqLPkKROQodEmY73WFH+wcWuE5qYk+71njLRCRSBGJVkoVNiKHoQNgFJjB0MGxlM48dA2w3zlQYdo9j1xDOeXc20sb6INS6gbLOeRsYKWIjFS6MnRdpJ5zCbBWKTW24atosk9Lq1ob/BhjQjQYOjAikiQig92aRqLrpQFc4vb+P+vzL8Cl1ucrgEUNDL0PXXyy9jwDlVJLlFIPoWut9WnguO+AGyxHEEQkBnAA3S2HE0QkUESOrHNcU30usdpPAoqUUkUNnN/QgTAzMIOhYxMOPC8i0UANkINeh5oMBIvIEvSD7GVW/9uAOSJyN7oI5bQGxv0C+LeInIuuQH2npSgFXQx1VQPHvYZeS1stItXAq0qpFyxX+edEJAp9X3oWXUwV2F+1u7E+e62q3pHoQq2GToDJRm8wdEJEZBMwWimV72tZDIaWYkyIBoPBYPBLzAzMYLCYJbNC0XFT8darJxANhFivLg28u38ORpvqKt1eFXW2675KgDxgl/srXaUXtPIltxoiMgl4ok7zRqXUFF/IY+iYGAVm6BTMkll90K7YvThUScUrVE9BIhoZwhdUU49iA3LRjhjZwPp0lV7uMwkNBh9iFJihwzBLZgUCg4ChwBBgqEINBZIECfepcK2HArajnTOy0d56GdZrS7pKN//ghg6LUWAGv2SWzEoCjgOGAUMsRTVQEONZe4ASYB1ama0CFgMr0lV6pU+lMhi8hFFghnbPLJkVhlZW41y4ThTkBEG6+louP6UK+A2tzBYD/0tX6ZsbP8RgaJ8YBWZod8ySWYnAOIUa68J1sg3bMEHsvparA7MTN4UG/GrW1Qz+gFFgBp8zS2b1BM524ToLOMmGrbuvZerk1AC/Al9ZrxVmLc3QHjEKzNDmzJJZAoyqoWaKQp0XQMBQQWdoNbRLdgJfo5XZd+kqfZ+P5TEYAKPADG3ELJkVrlCnV1N9kR37JDv2GF/LZGgR1cBCtDL7Ml2lZ/pYHkMnxigwQ6sxS2b1duK8wIXrwgACjhck0NcyGbzOBuBL4P10lW6qMxvaFKPADF5llsyKrKBiqg3btEACjzWmwU5FDvAW8Ha6St/kY1kMnQCjwAxeYabMPN2GbWYwwRNs2EwsVudGAQvQyuwjs2ZmaC2MAjO0mCRJCkSXxjipBz0mJpN8TgABxkxocKcc+AStzL5PV+kuH8tj6EAYBWZoMUmSdC2QAhQB+YMY1Hc0o6+wYTMxW4b62AG8A7xkgqcN3sAoMEOLSZKkAcD9wF6scvMjGHHUkRx5gWCWvgwNUgP8G3gyXaWv8LUwBv/FKDDDYZEkSSOAGein60qAEzhh3AAGnO5TwQz+wk/AU8DXJlja0FyMAjMcNkmSlAz8EdiCfrrmFE45oyc9j/epYAZ/Yi3wNPBuukqv8rUwBv/AKDDDYZMkSQKcC5wPbAJcgsgkJl0YQ8wwnwpn8Dd2AM8DL6er9EJfC2No3xgFZvAKSZJkA64CTgE2AgQQYD+TM6dGENHPp8IZ/JES4G/AE8YN39AQRoEZvIblVn8zMBzYChBGWJeJTLwmhBCToNfQEvKAh4FX01V6jY9lMbQzbL4WwOCHZEpvMuUBMuVK92aHclQDr6DXwnoClFJaMZ/571RRZZ6iDS0hDngJWDNLZp3ra2EM7QszAzN4RqYE7cjjyogw/hgeygki2NAOG+cwRH3j3jVJkqLR7vWhQD5AL3r1OImTptmxB7e57IaOxALg7nSVvtTXghh8j1FghkZZ84UkRIbxYFwsV3YJJryeLqXABIaoX90bkyQpHngQnb28EGAQgxJNoLPBCyjgA+D+dJW+0dfCGHyHUWCGeln8vpzQoxuze8dzSmAATeU2zAPGMkRtcG80gc6GVqYKeA5IT1fpZb4WxtD2GAVm2E9qishDN3FJz+7clxDHiGbmkc8GxjFE5bs3mkBnQxuwHrgmXaUv8LUghrbFKDADc1+WoL49uTMhjlu7daXXYQy1BEhhiDroaThJkk4GrsUt0HkCE85IIMEEOhu8hQJeAO41s7HOg1FgnZg7r5aQKybzwBH9uTkynCgvDfsFMIUhylnbYAKdDW2ImY11IowC64SkpkjYTZdxz+ijuLlbV2Ja4RT/YIi63r3BBDob2hAzG+skGAXWACIyBfgPMFQpldlIv6uB75RSO9pKtpaSmiLBV0/h+uNHcG+vHjpOqxV5iCHqEfcGE+hsaGPMbKyDYxRYA4jIh+hg3B+UUg830m8ekKbUwW7kTYxtV+qAia21SU2RgEvO4pKxR/PIgD4kttV5gWsYov7p3pAkSSHATCAB2AkQQ0xkCinXBhEU0YayGToHCngGuMdk8uh4GAVWDyISDjjQ5q7PlVJDrPaZwFTABXwN/Aq8AWxHV54dC4xDl4cIAJYBNyqlKkVkEzAHmIg2b8QBN6CdGjKUUpd6+zpSU8R2+jhOPXUszwxJZJjN1ua+6zVAKkPU1+6N9QU6J5AQN57x15hAZ0Mr8RNwcbpKz2+yp8FvMAqsHkTkSuAUpdQfReQX4BagBzow9zSlVJmIxCilCtxnYCLSBe1OfqpSKktE3gJWKKWetRTYS0qpv1rn2AEkWsotWinltczbqSkiXYI54toLeTp5DBODgwj01tgtoDmBzv1HM/pKE+hsaCU2AVPSVfpKXwti8A4mF2L9XAa8b31+39o+DfinUtpFXClVUM9xScBGpVSWtf0mcLLb/g/cPq8G3rWUpddMG6kpEj3hOGY/ex+LJp7I2T5WXgBhwJdkygD3Rody5KLrP4VbfcghZ1MGGZ8qOtZDVRFFvMEbvMALvMiLLGbxQft/5mce5mFKdaz3IbzN2zzGY7zLuwe1f8zHvMRL/Jf/7m+bz3wyaXDJtrPTH/h5lszyurXD4BuayrDQ6RCRWCAFOEpEFGBH29E/tt4bPbyJ/e53qLPRyi0VeFBEjlRKtViRpaaILSGOU2Zey9NjRzLC3vbmwsaIA74hUw4KdHYox4YkSXoOt0Dn1axeE0poZEcKdLZhYyITSSCBSip5hVcYwADiiKOIIjawgahGohhO5ESqqeZXDkxic8kF4CZuYg5zqKCCaqrZznaSSW71a/JjQoH3ZsmsY4D70lW6y9cCGVqOmYEdyoXAW0qpfkqp/kqpPmi37wLgGhEJBRCRWvfzfUCt80Em0F9EBlnbU4H5dU8gIjagj1LqJ7RDQzTUm2fQI1JTpNeU03j98Rl8etKxHN3OlFctg4G5ZOrvrxaHcqwGXgd6YT1QLWbxLzvYsaTtRWwdIogggQQAggmmO93Zh07O/w3fcDqN6+oBDCCIoIPa7NipphoXLpw4EYSf+IlTOKV1LqLjMRP4cpbMiva1IIaWYxTYoVwGfFKn7WO019znwK8ishJIs/a9AbxstQkwDfhIRH5HO3u8XM857MA7Vp/fgGdasgaWmiLBM6bJFY/eycJp53N1dETLlWAbcTzwAZlSd41rITpkoS/W3+R85n9bQEFGG8vX6uxlLzvZSS96kUkmkUQST3yzx+lOd6KI4hVe4UiOpIACFIqerR4d0aE4A1g6S2YN9bUghpZhnDj8lNQUGXL6OB6+egrnRIQR2vQR7YpOGehcSSVv8AbjGc8gBvEmbzKVqXShC8/wDNdxHWF6OfAQNrKRX/iFK7ii3v3/4l9MZjIrWUkuuQxkIKMY1ZqX05EoACalq3SPQ2EM7QMzA/MzUlMk+JKz5Iq7ruajm6/gYj9UXgDXkSkPujc4lMMFvIuekfYBqKHG+QM/vF9O+W4fyOhVnDj5kA8ZznCGMYy91s/f+TvP8AzFFPMKr+w3LTaHTDJJIIFqqskjj4u5mFWsooqqVriSDkkM8MMsmTXe14IYmodRYH5EaookDO7Hk8/cy7MTjuMom3/XJJlNpkxzb6ivonMZZX5f0Vmh+IzP6EY3xjEOgB70YCYzudP6iSSS67meCJoXy+3EyWIWM45xVFN90DmdtFmsfEcgEvhmlsya6GtBDJ5jFJgfkJoikpoiJ58xnn/+5Q6uS4ijm69l8hL/IFPOdG9wKEc58DegCPR1FlBQ/Au/vOPEWekDGQ+bLWxhNavZyEb+bv1kkdVg/+1s5zM+2789hzl8xEdsZCNP8zQ55Ozft5SljGQkQQTRgx4AvMRL9KUvIYS03kV1TPYBo30thMFzzBpYOyc1RUICA5h665XcmjyGo5pZo8sfMIHOBp9STPGeIope7UOf9HSVbuyufoRRYO2Y1BTpFRXOHek3c+mgfvT2tTytiKnobGhTXLhc+eTnrGNd1na2ZwNvO5TjN1/LZWgeRoG1U1JTZGRCHGmzbmVij1g6Q6Z2U9HZ0OpUU12yla1Za1iTXULJCuAbYK1DOcyCoR9iFFg7IzVFBEgZNpBb/3QDp0SEEelrmdoQU9HZ0CqUULIzh5xsB44cJ84fgXkO5djua7kMh4dRYO2I1BSxAxeOH8U1t03l5OAguvhaJh8wFzjPk4rOE5l4YSyxpqKzoV5cuJy72Z2TSWb2drZnAV8CSx3KUeJr2QzewSiwdkJqigQD15x/OpdNTWWc3U5ndlR4lSHqOvcGt0DnCWgl1uECnQ3eoZrqki1scaxlbXYJJb+hSx9lGDNhx8MosHZAaopEArdcfzFTzkpmdAf0NGwJ6QxRs90b6qvoHEpol0lMMhWdDexj345aM6EL14/AfGMm7NgYBeZjUlOkB3DX9ReTfPYEzJrOwfyRIWqOe4NV0fludPJfU9G5k1NrJlzHuqwd7MimBWZCkafigEKl0owLvZ9hFJgPSU2ReOC+aeczcsppB9UNM2hMRWdDvVRRVbKVrY41rMkupXQ52ptwXXPMhCJPjQFuAy62jr9QqbTqxo8ytCeMAvMRqSnSHbjv8smMuORMTjVmwwYxgc6G/biZCbPdzIQ7PD1e5I4gCLoNwm6GsP51dn8CXKxUmtcKzBpaF6PAfEBqisQA914wkZFTUznN1j7rd7UnTKBzJ8aFy5lHXvY61mXvZKe7N2H9JazrQWRGfwh6ECIugaD6U/5rPgQuVSrN3Bj9AKPA2pjUFIkC7jk7mZHTL2KSzWbyUXpIDjrQ+aDM9CbQueNSRdW+Wm9Cy0z4Lc02E6adASH3Q8SJYPP0f+1JpdJmtkhoQ5tiFFgbkpoiEcDdKcdzzK1XcmYnd5VvCUuBU0ygc8dmH/u2Z5OdnUVWjgvXD2gz4U5PjxdJCwZbrZmwpSEW1yuV9o8WHmtoI4wCayNSUyQMuGtgX458/C7O7aRByt6goUDnVOACTKCzX1JrJswgIyuX3Cz07/nX5pkJ0xIh8EGIuLgJM6En1ABnK5X23WGOY2hFjAJrA6wMG7eFhXD0iw9yRky0VffC0FJMoHMHoYqqfZvZ7MggI6eU0l/R3oCZzTQTnmmZCcc1w0zoCcXAiUqlrfHimAYvYhRYG5CaIhcAqU/ezTFJiQz3tTwdBBPo7McUU7w9h5xaM+F/gQUtMBPeAWE3QVjfVhR1M3CCUmm5rXgOQwsxCqyVSU2RY4Hbb76c+EknYaq9ehcT6OxHuHDV5JGXY5kJHWhvwmUO5Shr6thaRGYMgKCHIOJCL5gJPWUhMEGpNFcbnc/gIcYDrhVJTZFewA2njSXo9HGc5mt5mss1f4K4E+Gocw60FRTC6dfA4En6fW9Rw8cXl0CvZLjlEb1dWQVnTNfjvfSvA/2uewh+y2iRiK80UNH5OTpQRWd/p4qq4myyf/2czz/6kR//kUvufcC9DuWY76nyEkmbLPLgIuiRDbF/aEPlBTAeuK8Nz2fwEKPAWgnLaePWfgkETr+Ic/zRXf7q8+CbOn5Yj78Kp46F7G/1++OvNnz8g89B8pgD298uglFHwurP4B8f6bZVmeBywTEtc7UIAD4iUw4qA+9QjkLg/6zNaIAd7MhbzvL3XbhMQtc2opjibctZ/tPHfPzBMpY9WUbZXQ7leMahHBkO5WhyNiMys4vIzPtEZm+B+C8gqjmu8N7mYZGnjFdrO8Pvbqr+QGqK2IBpAt3vnc6EkC605dOi1zh5DMREH9z22Y/wh3P15z+cC5/+UP+xy9fCrnyYeOKBtsAAKK+AGrc8Bw8+B7NvOywxw4AvyZSB7o0O5chFK7Fwqw855GzKIONThTGbtxYuXDU72bnuB374bC5z33PgeFih7nAox4fW76RJRGYMFLn/Lei6B+IehdA+rS23BwQA74o8ZczQ7YgAXwvQQZkIHHfdxcT26kF/XwvjTXbtgZ5x+nPPOMgrOLSPywUznoC3n4AfFh9oP30cvP05HH8pzPwjfP6jnpElxB22WHHAN2TKQYHODuXYkCRJz+EW6Lya1WtCCY00gc7epZLK4lpvwjLKlqKDjh2ezLRqEUk7B0Lugx4ngK09plIZCDwPXO1jOQwWRoF5mdQU6Q1cPLgfRRNP4hJfy+MLXnoPzjoZ+vQ8uD0gAP71lP5cXQ2TpsPnL8Jdj8OWnXDVuZCa0uLTDgLmkikHBTo7lGN1kiS9jlug82IW/9KFLpEm0PnwKaZ4WxZZ2dlk5yjU92hvwl2eHi8yswtwF4TfCPG9W09Sr/EHkae+VirtA18LYjAKzKukpkgAcA1QHnvOv076JG/djmPDP40cFPl7jK9l8xY9YmFnnp597cyDuHqu7H8rYeFyrchKyqCqGsJD4fEZB/q89B784TzdNygQPvg/GHvZYSkwgOOAD8mUc90DndFeZF1xC3Sez/xvJzIxwgQ6Nx8Xrppd7MrOICNrF7sc6KDj5c3zJkwbBEHp0PV8CAxtPWlbhedFnvpGqbRGXJgMbYFRYF6kyNXn8mDZN3bA6TeX2xIvHLkB2MCDuAoLS8JLF+8dZJ/LmKjPY7qH5PrlmhhoBfPmZ3DvdP1+bj0K590nD3x+4xP4dc3BymtvEcydB9+9rs2INhuIQIV3fATPBv4O7A90diiHSpKkL9BKbAKwSaHUD/zwnzM5M8wEOntGJZVFm9mctZa12eWUL6NlZsLzIOQeiDu+nZoJPaE7kA7c5WtBOjsmDsxLDEueHGej8vnQLrbEs+5/85gukbENPhyo0m0FsRXziocFfxY0Kvq77iGB5YFtKaunXDYD5i2F/EI985p1C5x3Klx8F2zZAX0T4KNntKPHr2vg5ffhtT8fPEatAnvhwQNtdz6mx0k+Tiut1Jtg+y644VK49UqviW8Cnb1EEUVbs8l2NxMubJ6Z8K5QCLwLwm6E0IRWFLUtqQZGKJWWebgDicifgMsBJ+ACrldKLWnG8aOBq5RSDbpDicgEIE0pNfkwxW1KljY5z/7zGQV2+AxLnizownhDU657YETvYaPGenqsctU47fsydyc4v6sYGfZp2NDIJd3sNuWvT6btDRPo3EKhtQsEAAAgAElEQVRcuKpzyc1ex7rsXezK5ICZsNzTMURmHAHB6RAxBQJDWk9an/GNUmlnNt2tYURkLNpbdoJSqlJEugFBSimPa5x5eJ4JtLJiEZEA4KSWnkdEApRSzarFZtzovcMI4Ngeg46s7jXkmGY5BogtwO6KOip+W8xd/ecGL+j+xL6Cymd2fL/t0513bt5WOqC4leTtLDQU6Pw3TKBzvVRSWZRF1rLP+Oyjecx7ZRe77gXudyjHIk+Vl0jaFJGHFkN8JsRc3kGVF8AZIk8drkLoCeQrpSoBlFL5SqkdInKqiPwmIr+LyBwRCQYQkTEi8ouIrBKRpSISISITRGSutf84a/9v1nuSJ0JY54kWzR4Rucpqf1tEThORLiLyT6vfbyJyirX/ahH5SES+AL6rM+YYq+8AEQmzrmOZ1XZufceLSE8RWSAiK0VkjYiMb1RuMwM7PIYlT+4CPAa4Jt7yyIT4QUcd683xXeW7i6LLFxUOCfjcPir6q25RwXtNFvvm0VhF5wfQWcc7fUVnNzNhtpuZMM/T40XSwsB+F4Td0IHMhJ6QAxypVFpVSw4WkXBgERAK/Bf4AFgCZAOnKqWyROQtYAXwEpAJXKKUWiYikUAZbrOe2jalVI2InAbcqJS6oKkZmIi8DHyBzv34T2ClUmq6iGQDxwDXA0cppaaJyBC0sjoCuBT4MzBCKVVQex7gUXTIwRSl1BYReRTIUEq9IyLR6NJIxwAX1Tl+BtBFKfUXEbEDoUqpfQ19f8aJ4/AZB0RHx/fdE5c49GhvD24L6R5VHDIlailTWFLjUlK0YXePqh9Kh4d82mVE1ILuQQHVne5m20xqA53HMUStr210KEdukiT9H7qiczVQmkPOplBCP+0sFZ1rzYRrWZu9m92Z6BvYiuaZCdOStDdh7HkdeKbVGIOAPwCN5KRpGKVUiYiMQqerOgWtwB4DNiqlsqxub6LXbn8AdiqlllnHFgOIHPS3GgW8KSKDAQV4ur6+EDgZrcD+DlwnIr2AAkvGk9AKCaVUpohsRiswgO+VUu4RoUOBfwAT3UyhE4FUEUmztrsAfes5fhkwR0QCgU+VUisbE9oosMNgWPLkQHQdqt0jz758rM1ub1VlIjabEDGo+y4Gdd/F9XxXXlkdVLJ6V1/1TVVHc9f3MibQ2Y1KKgs3sSkrg4yccsoXo5+ms5vnTXj3BRAyE3qM0T6knZqZIk/NUSqtRWnKlFJOYB4wT0R+RyvE+hBoMo3MI8BPSqkpItLfGtcTFqCVZF/gT8AU4EK0Yqs9d0PUrdm2E62gjkH/X9Uef4FSyuHeUUSOdz9eKbVARE5GexO/LSJPKqXeaujERoEdHiOBqJCI6J0JQ0aObrK3l7EFBAfWRI9J2MAYd3f9gsH2Lxgd9UWsP7vrtwLNDXSOSCDhBF8J2xoUUrglm+zsHHKyFeq/tMxMeDeEXwc9ejZ9RKdhENoU9n5zD7TWqFxKqWyraSSwCzhaRAYppXKAqcB8tPkwQUTGWCbECKDubDkK2G59vtpTOZRSW90cSDaIyCK0KfAWq8sC4ArgRxE5Aq3oHEB9SyaFwB/Ra1qlSql56JCLW0XkVqWUEpFjlFK/1fN99AO2K6VeFZEwa3yjwLzNsOTJNvRTyt5jJl85KiAw2OdrU7bg6PCy4DPCV3EGq3gRle8f7vptSGOBztHoJ85NgGse876dxKRIfw90duKsziU3K4OMLMtMOBf4rZnehEO1N2HsuRDo87/zdkoaLVBg6Fydz1vrQjXoNbXrgPeAjyzPvmXAy0qpKhG5xOofglZedatc/BVtQrwL+LGZsiwBaq1IC9GmzEXW9kvAy9YMsQa42vKarHcgpdQuETkH+FpErkHPDJ8FVos+aBNQ33rcBOBuEakGStBFahvEOHG0kGHJk48C0uyBQVsumj3n9qCQsEhfy9QYxl3/IBqq6DwVvQ6xCfy7orNlJnSsZW1OBRX/QzsINNdMeJE2E0aMMmZCjzhJqbSffS1EZ8IosBZgxX3dB/Q89pyreh916pTzfC1Tc3FVlVaElP6anyhfOUdHfta1d9iGdq2AW4GHGaJmuTckSVIA2mTit4HOhRRuziIrZz3r3b0Jdzd5oIXIzHAQy0wYEt+KonZEPlIq7WJfC9GZMAqsBQxLnjwAeBDYfNHsOTeFRHb1i5tbY7jK84qiyxYWDgn8wnLXL+wMpqJrGaJed2/wx0DnesyEX6DNhBWejiGSNkx7E0amQkBn+N23BjVAvFJpe3wtSEOIyDTg9jrNPyulbvaFPIeLUWAtYFjy5JuB4X2OOk6dcu19N/haHm+jXC4lpRvy97vrR8+PC7LXdMSg9xrgXIaor9wbkyQpCu2JFQrkAySQEDee8dfYsQe3vZj1U0HF3lpvQstM+D3aTOjxP7XI3ZdAyN0QcawxE3qF6UqlveZrIToLRoE1k2HJk7sDTwBbx0+986TEUScfXv50P8BVU1kdVLJ6dwd11/erQGeFooiizVlkZVtmwu+ARQ7lyPd0DMtMeA+ET4eQHt6VcCHaFwDgeHR4U31sRYcVXYlOZJMH/AudCvB8oD86NeBrwDQgyLtith7fKZU2yddCdBaMF2LzGWK9q+79hxzRaM8OQgd31/eLQGcnzqqd7MzOICMrn/x1HPAmbIaZcMZR2psw5hwIaIWZZC5aed2GdmZ7Df3vUtfC7gK+BNyzHC0GzkIXDPgKrcD+B4zCj5QXQIrIU7Ht2YzYkTAKrPmcAJREdk8IDYvp1svXwviCQ9z1d2/dE1s5r+TILp8FHhv1vT+66zcV6HwXeiZWuZrVa0IIiRjIwIltIVgFFXs3stGRQUZOJZW1ZsIcT82EIkcKnHWJ9iaMH9m6ZsJdQD8OKJwBwBq0Y6c7P+PmJ2NhRz8nVFufy4EMYHrrids6BADnAa831dFw+BgF1gyGJU8ORT9Sbh90wmnDRfy2npFXkfA+sQXhU2MXMpUFVTVO+57MXD90128s0HkOboHOS1jyvxBCIlsr0FmhKKRwU603ITpTRjPNhHdFQuBMuHQ6hMS1hpyHEg98g7bKBqLjbvvU6VOEVmrXc7ACG4cOo6pB1x39HjiVxhNAtFsuwiiwNsEosOYxCP0f5ep5xIhOYT5sLvuz63MU27iLz/f5lbu+TwOdLTNh1lrWZu9hz1q0mXClQzk8zpIvkjYCgh6CuMmtYyZsjB7o2dar6FlYAocWvPgcbSqs294VuNH6nA8UoyfG76HXwiZxqCmy3XKqyFPhSqWV+FqQjo5RYM3jGKDaHhhki47vM9DXwvgDtqCwLpVByb0zSSaTJ3AVtHt3/bOBl3GzXVkVneei77L7A529VdHZzUyY7WYmXN9MM+HlEJIGPY72rTfhcdYL4Gt0ZiN3tgLvWp9L0bM0G3CUW59v0AprEfpfLgb9lVzeOiJ7nwBgNJ7nITS0EKPAPMRKHTUa2DPwuJR+9sCgduNO7U/YQuKiikMuiFrKBYdm128/7vrXkinb3AOdHcrhSpKkd9FKbDiwtYYa5w/88H5LAp3dzITZ61mfg75r/+xQDo8X/0XSoiDgHrj0WtpNoHUJOjvSXuB3DqTSq+V+t8/vA8M4WHmtByLRs61qtMFDgBZVK/Elx2MUWKtjFJjn9EHHBe3pNeQYM/vyAodk1y+rrA4qWZ3bTtz1H7aU2P61DIdy1CRJ0iu4BTqXUVYxj3nvnMqpHgU6O3FW7mBHdgYZWXvYk4EOOl7VPDPhjKOhSzp0OxsC2pmL3lvomZUdnSo0FO1NCNBUoXKFrhhypbV9PAdMiOd7XdJWplmFbQ0tw8SBeciw5MlnotdAtk6++/8ujemV6FGlU0PLcVX63F3fa4HO5ZQXbGSjYx3rciqp/AWdm7AZZsIrBBKugNA0CD/aT50bOhM7lErrlF7KbYlRYB4yLHnyPejy34UXzp5zY2hk1zby7DLUokp84q5fCpzCEF1EsBZPAp0Vir3s3ZRFVtYGNtSaCX9pnplwZjTY7oHwa6FLN29dlKFN6KNU2jZfC9GRMSZEz0kAShEhODSiq6+F6Yz4yF2/NtB5rKeBzkMYcvZOdmavZW1WAQVr0VG7zTQTpo20go7Pan9mQoOHHA8YBdaKmBmYBwxLnhyM9kzb3DWhf8Q5M5+5y9cyGQ6mDbLr5wAHBToDJEnScHRF551ou16cDZu4cP0PvaCzoZlmwqkQOgPCRxgzod8zU6m0J30tREfGzMA8oyt6JZnYPgPN7Ksd0gbu+g0FOv/uFuhcDPzHhesXh3IUeDqwZSa8D4ZeY8yEHQpTtbqVMQrMM/Z7w0X16N2REtl2WA5111+fF1/1Q9nwkE+7DI9e0FJ3/cYCnTcBuQ7l8NjfW2TGsdDlIYg505gJOyQJvhago2MUmGd0xSq1HR7bw8zA/Aztrj84LpfB5HID3x6eu369gc7oNFNNy6LNhH/QZsL4o4yZsENjZmCtjFFgnpGAXqgnLLqbmYH5OV7Irn9IoHNTiMyIgcD7YOg06BJ7mJdg8A/MDKyV8UiBiUg88CwwBqhEm0vuUEpltZ5o+8+9CRitlMoXkV+UUuNa+5z10BuoAAgKDW+XVXkB/v3wdDIXfkV4THfu+GglAF89cy+ZC+diDwgips8ALnz4NUIiog859ud/Pc+yT15HKcWYKX/kpCtuA+Drv91H1s/f0jPpaC5+5J8ArJj7DuXFeznx8lvb7uJakRZm1z8k0Lk+RNJGQ/BDEHcG2P0tS7/h8DAzsFamyXUAERHgE2CeUmqgUmoY2nXYy4XwmsZHygv0H2I5gIi0h1RH9TLqnKuY9sLcg9oGnXAqt3+4kts/XEG3voOZN+eJQ47LzVnDsk9e56a3fuG295eTufAr8rdkU7GviC2rFnP7hytwuZzkZv9OdUU5K754mxMu6nCFqPcj4X1iC2Kn9lsY9u+EZyvzbX/NXZ777vbHNq3OP77I5RJ3j8KXyZSzDjlerhCRu68RSf8deiyDrucY5dUpCRN5yqxttiKe3IxPAaqVUi/XNiilVgKLRORJEVkjIr+LyCUAIjJBROaLyIcikiUij4v+j15q9Rto9esuIh+LyDLrdaLVHisi34nIbyLyCm6LBCJSYr2Hi8gPIrLCGvNcq72/iKwTkVdFZK01Toi17zYRyRCR1SLyfjO/p3AsE2J7rrqeOGo8oVEHL9EdMfZ07AF6ot13+PEU5W0/5LjdGzPpM/x4gkJCsQcEkDhqPGt//Ayx2aipqUIpRU1FObaAQBa89TTjLrsZe2DnuB+LPdDuihoevzVmRv+vwhZGPV6cX/3c7kVZ86oeWVjgGrQT7dQxBkAkLVbk3qdgaD70eB0izBqXwfwBtCKemBCPApbX034+MBI4GugGLBORBda+o4GhQAGwAXhNKXWciNwO3ArcAfwNeEYptUhE+gLfWsekA4uUUrNF5GzgunrOXQFMUUoVi0g3YLGIfG7tGwxcppSaLiIfoosLvQPcCyQqpSpF5FAbWuMIOlEb0p41WBP8+tkbjJh40SHtPQYeybcvPkRp4R4Cg0NwLPqG3sNGERwWwVEpU3j+sjEMPC6FLuFRbFv7K6de94APpG8f2IIjgsqCjztisfO4IxY778HuKtswdvOc+76/64Gi44d2SymvUsEoKVe4tiiXwgUoBcoFLpQopbdd+l2UUu7bug2obT+wjezfVvqPUSl9c3RvQ7+L+3E09g6CEv2ujwNq94lgbVvTTkGJHLQNYnWXQ7f993/Fi5jvoBU5HCeOk4D3lFJOYJeIzEevkRUDy5RSOwFEZD26IB/o9NS15VlPA4bJgb/xSBGJAE7GytyplPpSRPbWc24BHhWRk9H1yXtxwKS50Zohgla8/a3Pq4F3ReRT4NNmXqu4ffLLP8ifXnsMW0AAI886tCRF3IChJF99N3NuOpOgkHB6HjECm13/aSRfnUby1WkAfDz7ek6/MZ1ln8whe/H3xA8eTsq19x8yXkfHvmdbdULmT2VHFuTuSaipTCjduSv+zsUf22/8+5uV8fFx7bnemU9wOl04XUq5lFIul1JOF7iUS7mcKJdSyulS1n6Uy+lSLoVyuly4XOBUSrlcKJfLhe6LcjpduFwop1LWuwvlUsrlApdLWe1KORU4nUq5lMKl35XThbiU0udG4XTpvq79MigOjEPtPnEplMu1f1xxupRSLoVTnxp9nMLpUuJyobqGd93iUqjoiACXr7//jownCmwtOoltXRq7kbunzHG5bbvczmkDxiqlyg8aVGofDBvlCnS9hVFKqWrL0aM2UNX93E4gxPp8Nlo5pgIPisiRSqmaJs6zX6z9F+N0enpMu2H5F2+xbuFXXPvyt0gDD8VjzpvGmPOmAfDt8w8Q2aP3Qft3ZP4GQLd+R/DFkzO4/vUfee/eK8jfkk23voNb9wJ8jHI5VddNa3b33bC8sn/h9uiegbYIm0gUEIXdxubfVpcm7s0PLr5+asDm516r7Nevjym144bdbsNu3z9D6yzUlqKu9qkUHRxP1sB+BIJFZH/ci4iMQRf8uURE7CLSHa0cljbj3N/hVixIREZaHxegFRQiciY6BqsuUUCepbxOARotKGg5XvRRSv0EzERX1w1vhqz7cVZX+VVhIsfP37Lgjae46tn/EBQS2mC/koI8AAp3bmHtT58y8oxLDtr/3UuzOP3GdJw11SiXjuEVm43qirJDxuoIBJTsLe+z/Out4z9/OvcPnz5ac9maL+NOLMvt0yvIHmGr8xAQt3V9JUBkUYE9/par1d5duXk+EdrQ3qgiebTJ1deKNDkDU0opEZkCPCsi96LXnzah17HCgVXoGdNMpVSuiAzx8Ny3AS+KyGpLjgXADcAs4D0RWQHMp/4A0XeBL0TkV2AluqxrY9iBd0Q/NQt67a3QQzlBz+psgNNZ034V2Hv3XcnG5QsoLcznsTMSOe2Gh5g35684qyuZc+OZAPQZfjxT/vQixbt38PHsG5j2vF46fDftEsqK9mALCCT1nucIiTzw3LD2p8/ofeQoIrvrsJa+I07g2YuPIX7wcHoecXTbX2groFwuorauy++7fllZ4t5tUQkBEmUT0U/RAfYGj3PV1Kju+fn711SD9xV3kWmX2va89s6u2ITebe6pa2hX1Lf8YfAiJpmvBwxLnvxXtPmzYtKtf07tMfDIY3wtk+HwsZcVVcQ7lub327bGPqB6X2xEQPPTOe1bu3Z3748+OqQack2XkOrCf7yV361vfxML1HlZQfLoUb4WoiNjMnF4RgXWWlpFSfE+H8tiOAzCtzkK+uQsK0ncszmyt50ou030Yl9Ay/4VnCtX1mtDDagoD4yefmX33X9/Y0f3AYNMRobOiSml0soYBeYZ5UAEQOHOLXn9jm6qNLqhvWCrKK3qkbUkr9+WNbbEysKY6MCAGCCGQO/4E4Rv2RLS0L6AysqAmOum9sh7cc62uKShvRvqZ+iwGAXWyhgF5hk7gb5AUd7GzF2+FsbQOKE71+/tk7N0X+LujeF9bK6uATabVh6B3v1zryktrexaWdlo+RN7TY29203TEnL/9srW+KOO7tNYX0OHwyiwVsYoMM/YgPayZFfOmj0uZ02Nzd5Cm5PB60hVeU337F/z+m9epRLLC2JiAgO6Al31X3frZf4qXbEiP1bHIDaKzem0xd06vXfu0y9uiT92TN9WE8jQ3tjoawE6OuYm7Bm7sGLTXM4aVb6vKD8sOjbexzJ1arrs3lLUJ2tJYf9d68P72Wq6Btpsep3Jy7OsxrCtXetxTKBNKelx1019dz7+7OaeJ5zYaNiHocNQXwYjgxcxCswzduEWhFm6d/cuo8DamKpKZ/cNK/L6bVzpTCzbHdMtMEAHErfyLKsxovPympWSTICe997Rb8fsJzYnnJxilFjHpgjI8bUQHR2jwDyjCO2JGADUFOftyItL9DTczdBSgvbsKO6TtbiwX252SH+qY4LtNu2S3oazrIYo3769ON7limrJsQkP3dNvx/2zNiVMPKu/l8UytB9WmCDm1sf3dwI/IGP+XDUsefJmdFmVwoLtG3ZBiq/F6njU1LhiNq7c3W/DiqrEkl1dewTaI4FIXQu7fVWxqVyxYi/Q4ryHCY+m999RWbEp4Zzz+3tPKkM74ldfC9AZMArMc9YDg4DC3KzfjSeilwgszCvtnbV4T78dji6JqiKmi92us1cENpz9oj0QnJ192AImPP1Y/x0VFZsSLrq8vxdEMrQvlvhagM6AUWCeswWdkorC3C0lZUUFeaFRMXE+lsn/cNao6M2/5/Vbv6IqsXhHdI8AW4RNJExPsNq30qrFVVOjYoqLD8m+0RISXnym/47Kys09r7i6X0OJlg1+RzXwX18L0RkwCsxzcnHLkr8rZ+3axFHjjQLzgIDigrKErMV7+m1fF5ToLIsJC/CPWVZDlK5bt7sreO13n/DaS/12VlZs7nHNDX1tRot1BBaRPLrI10J0BowC85ztQCm6bEtF9uLv1yaOGn9KE8d0SpTLRdSWtbv7rV9e3r9wf2LcUIRGE+P6C65Vq7yegr/n23P65ZaXb4276Y7eNpvNKDH/Zq6vBegsGAXmIRnz5zqHJU9eAEwCtudm/76nrHBPbqhxpwfAXlpU0dOxJL/ftrUBA2pKYsID7NrEFti+nC+8QdjWrQ3XpTkM4v/9Xp9dlZXbut15T4LdZut4X1zn4QtfC9BZMAqseawAzqrdyM1Zs3bA6OROq8AitmXu6ZO9rDSxYEtkrwCi7FKbGNf/Z1kNUb1vX2VME+mjDoceX/ynd15VxfbYmQ/F2+32jvtFdlwcJI/O9rUQnQWjwJrHJmAflhkx65fv1g4YnXyqb0VqO+xl+yrjspfu7r91jW1AZVFsZGBALBDrrcS4/kDZb7/t7gatmpg37tuveu2urNrR9cFH4gJMyjJ/4w1fC9CZMP8czSBj/lyXZUY8E9iWtyFjb2lh/s6w6G4dtuZT2I6cgj7ZS0v679kU0cfmim6txLj+gi0jw9kW5+k+778Je6oqcyNnPxETGBDY7Dpl3uaaJ2Yz93+LiIvuypo3PgDg4X/+g1e//JTuUTohyaPTb+asE06s93in08no66+iV7c45j7+DABX/PkBft+wnsljT+LR6TcD8MhbrzFiwGDOPSm5Da7K61QD//S1EJ2JznkXOjxWAGfXbuRm/b524HGndBgFJpXl1T2yl+X127yKxIq9sV1ry4/4MGVTe6K56aMOh9hfFsYX3HtHXvhjz0QFBQYFt9V56+PqMyZzy5SLuerR9IPa77zwMtIundrk8X/7+H2G9kukuLQUgNXrtZVt9Zz3GH/rdIpKSiirrGDpurU8eNW13r+AtuELkkebGNE2xNyRms9mdGqpEIDMRV+tUS6Xy7ciHR4huzYXHrHow82n/+exPX/8+mn7lA2Leh3r3Nera2BAF1/L1p4o3769KLyF6aNaSsyvS+NKZ9y8r7KqsqItz1uXk48+lpiIliUe2Za3iy8XL+Las8/d3xYYEEB5ZSUul4uqmmrsNhsPzXmZ2dfc4C2RfcGrvhags2EUWDPJmD/XBSwAYgH2bMkpytuYucq3UjUPqaqo6b7u551jvn5p+0Ufzy67esm70acW5PQbFKBiA433W4NUrljhk9ierqtXdqu4/YbSiooKr7vvHy4vfPIRI665jGuemM3efcX19rnjhf/jr9ffhk0O/GkN7ZdI37h4jp1+JRdPOI2c7VtRCo4ZnNRWonubzcB3vhais2FMiC1jGZCKTjCuVnzx1oJJt/3laJvN3m5v/sF7thf3cSze229XTlh/qmOC2lFiXH/BG+mjWkrUujWxxbdeu1c99w9XSEhouK/kcOfGcy/gwav+iIjw4JyXmfHSs8y556GD+sz9ZSFxXbsyKmko8347uLrIs7fO2P/5nPvu5JUZ9/OXt+ewan02p48+jumTp7TJdXiJv5I82q8tMf5Iu73htmcy5s/dhk7WGQ+we5OjMG/DupW+laoONVWu2Kylucd++8q2Cz5+pPSan9+MPD3f0e8Iu7NbkN3MspqLlT6q1dznPSEy29HVeePVNaWlJft8KUctPWJisdvt2Gw2pp99HkvXrT2kz89rVvH5zwvpf0kql86+nx9/W8aVf37woD6fLZrP6KRhlFaUs2bjej58+DHe/u5ryip8ajVtDtuB130tRGfEPH63nM+A0eiHANeKL95acMbtj4305SwsaG9uSa+sJQX9dzq69FeVsV3sdh2j5qcpm9oT3k4f1VLCN22MLr3uquKSl98oCo+IbNP1uLrs3JNPz1it0z9ZNI+jEgce0uex627hsetuAWDeb8t56oN3eOeBR/bvr66p4W8fv8/cx54he9sWajNpuVwuqqqrCe3iF8uwj5M8utLXQnRGjAJrIRnz524bljx5KTAS2Jm/Obsob33Gb/GDh49qMyGcNarrxtV5/TYsr0rcl9s1PtAeDoT7U2Jcf6E10ke1lLDtWyPLr72iZN8/3t4bERXdtS3OednsPzFv5XLyiwrpfeHZzJp2HfNWLmdlThYiQv/4nrwy434AduTv5ton/8xXT/ytyXFf/ORD/jDpbEK7dGHEwMEopRg+7VLOOuFEoiMiWvuyvMEOjPOGzxClTM21ljIseXIv4C/oTPWu2D4DI8+884nbbLbWy6AQUJxf1suxOL//jszg/s7y2NAAu3kIaQNqHnssL7ay0uczMHfKY7uXVb/2TkVk15gYX8vSibmd5NHP+VqIzopRYIfJsOTJ1wPHAjsBTr9p1tk9jxgx2lvjK5dTRW9em993w6/liYU7onsGSKTNJCxvU6r37auMefrpQFs7XDOuiO5aXvHau6XR3br7dH2uk7IOOJrk0dW+FqSzYp7eD5+5wFistbDln7+58Kw7/3qM7TDy2NlLCst7Zi3O778tI3BATWlsWAdOjOsPtEX6qJbSpXBviEy7VApefScvJr5nu5ohdn+2HToAABzqSURBVAJuMcrLt5gZmBcYljx5OtqhYyfA+Kl3jk8cdXKKp8crl4vIbY78vuuXlSUWbIlKCJBIu6kL1W7Y9/LLm3vn5vbztRyNUR0aWlX86rt7Y3v17uFrWToJH5A8+lJfC9HZMTMw71A7CwsAan5+74Wf4wYeOSyskVIrtrLiyvispbv7b11jT6wqjokMDNAmIDPLane0ZfqolhJYVhYU9cfLY/JfeXNnt36JHSa1WXtEKbVPRO7ytRwGMwPzGsOSJ58PnIOOyKfviBPik6++e7q4ZbYI255d0Ddn6b7++Zsi+9iJtpvFrHZP+bZtRfGvveZTd/Xm4AwMdBa8/GZu94GDe/lalg7MXSSPfsbXQhjMDMybfAkcD3QF9m5ZvTh3+4oFC0YHM7j/5tWSWFkYE12bGLcTlR/xdypWrCgE/EaB2aur7THXXdVz14uvb+sxZFi7XLfzZ5RS80Sk6fgAQ5tg7FVeImP+3Ep0PEiUKFdwcFV54m+vznaNWvVt7DGukoRokxjXL+mSk+N3D3l2Z42t+83XJOT+vnKrr2XpSLhcrkIRmWpSRrUfjAnRy4wce+r1USV7b7epmn12pzNveLdu+x5ImXBRgM3mdzfC5nDzp5/ybVYW3cPC+N/NurbTYz/9xFsrVhAbGgrAQ6eeysQjjjjk2MLycm77/HPW5eUhIrxw7rkc16cP6d9/z/fZ2QyPj+eV888H4P1Vq9hbXs6NJ5zQ6tfkqqlRYX/+c9X/t3fn4VVW1+LHv+tkHkkCGQkQFDyAoMwiRSm3aomt1lZvrddqbbUteq3687bVtret9Vqr16p11tZrRbFOqJgiQVCGmCAoIkkwEBEZAglJIGQ+mc7Zvz/2mxJCmJOcnGR9nidPTt5xJYSzsod37VDw61ImJ8snYsr//HhJ6pTpw/0dSz/xXWZPfd3fQaiDtAXWzRKry+ZHtDS8E97avC7E1/bJloq9n7//xRfv+juunvYfEyey8PvfP2z7TTNmkHvjjeTeeGOXyQvgzqVLuWDUKD7+2c/InTePM4YMoaapiY9KSlhz0034jOGz8nI8ra38Y+NGbpg2rae/HcCWjwrU5AXgMkZS/us/h5d9mLvT37EEOp8xL2jy6ns0gXWz5ZuLmgSeAGKAEIC/r1+/fnNFxaf+jaxnfSUjg/iIiBM+r7apiTU7d3LN5MkAhAYHExcRgUuEFq8XYwye1lZCXC4ezcvjp+ecQ0jPFTo5hC8/39MrN+pBAqT+6v+NKF31viaxk+T1+b5widzs7zjU4TSB9YDs4uIdwCvAMOx7CPevWvVOZX39Hn/G5Q9//egjZj75JP+5aBHVnsPzwY4DBxgSGclNixZx3tNP87O336ahpYWYsDAuHTuW855+mhHx8cSGh7OhtJRvjBnTa7FHl5SceEbuo9LuunNE6bvv7PB3HIHG6/PVB7lclzB7ap9YAUAdShNYz1kOrMEmMZra2rwP5OS86mltrfdvWL3n+mnT2HjrreTOm0dKTAy/effwnlSvz0d+WRnXT5vGB/PmERkaysO5uQDcOmsWuTfeyB+//nX+uGIFv54zhxc++YTrXnuNB1av7tHYW+vqmuOamxN79Ca9LO1Pd2WUvv3GDn/HESiMMUbgKmZP3XIi54mIV0Q2isgmEXldRCKPcXy98zlNRBY6ryeKyMUdjrlURO48xnXWnEic/YEmsB6SXVzsA+Zj1wpKAthVXV339/XrX/P5fANiFlNSdDRBLhcul4trJ09mw57DG6BpsbGkxcYyNd3O+P7WuHEUlJUdcky+8/WowYN5OT+f57/7XTZXVLBt//4ei71hw4Z9Lqf13J+kPXxfRumrC3b4O45A0Ob1/so1Z/rikzjVY4yZaIwZD7QA847nJGNMqTHmCufLicDFHfZlGWPuO8b5M08i1oCmCawHZRcXe4DHnC9jAHK2by/J2rx50UCY/bm37mCvy+ItWxibdHipvuSYGNIHDWLrvn0ArP7yS9yJhzZ87nVaX61eLz7n5+YSobG158rQBRUVtfXYxf0s7alHMkpf+L+dA+F38GQ1tbTMD/najPu74VIfAKMAROR2p1W2SURu63ygiGQ4+0KBu4ErnZbclSJynYg87hyXLCJviUi+8zHT2d7ekosWkfdFZIOIFIrItzpcf7OI/E1EPhORZSIS4ey7RUSKRKRARF7phu+7V/Trqd19QXZxcUWm2/04cAfQDLS8kp9fGB0aGnHB6NGZfg6v21y/cCG5O3awv7GRcQ8+yJ1z5pC7Yweb9u4FYHhcHH+55BIAympruSUri9edWYv3Z2by4zfeoMXrJSM+nicvu+xf1128eTOThg4lNTYWgGnp6cx88knOTE5mQsoRK3WdsrjKyj5fPupUpD339IiypqZdyT++aZhL624eorG5aXlkWPgNp3odEQkGMoGlIjIF+CG22IEA60RktTHmsMldxpgWEfkdMNUYc7Nzres6HPIosNoY820RCQKiO12iCfi2MaZWRIYAa0Uky9k3GrjKGPNjEXkNuBxYANwJjDTGNItIwPzu63NgvSTT7Z4NXI9dO6wN4LZZs746Y/jw2X4NTB0m0MpHnYq9V1xVknTTbekul0uTGFDvaVwbHRH51VNZYVlEvECh8+UHwH8BNwKDjTG/c475H6DSGPOoiNQbY6JFJANYbIwZ7ySszglsqjHmZhGpBNKNMc2d7tt+nRDgYeB8wAe4gZFAOLDcGDPaOf4OIMQYc4+ILAXqgUXAImNMQIzVaxdi78kBXgWG4yyX/Jfc3FWFZWUf+zUqdZhmWz5qQEhZ+PKwyofv2+MdIOOyR1Pb2FAYHRH5tVNJXo72MbCJxpifGWNa6N3x1KuBRGCKMWYiUI5NXmB7gdp5OdgL9w3s4z9TgE+c1mOfpwmsl2QXFxtgCbZm4gicX+h7V65c8vm+fQX+jE0dKuwUykf9CDtjZ3yHbb8AxgBnAd8GusqOJcAcYCxwJtCx2N4dzrnXdtj2YqdjTkXyP99K33/fH8q8Xq+3my4ZcOoaG7e6xDWL2VMbe+gWOcBlIhIpIlHYX4UPjhYSzrh5F97HtugQkSARie20fxBQYYxpFZE52PebIxIRFzDMGLMS+CUQx+Hdkn2SJrBe5CSx14FVQAYgBrhr+fJFReXlG/wYmnL42tp8CbW1J7268XXA0k7bLgQ2AQXAGcCfujgvGHgQu8TvWuyfwkVADfZZjALsn8uFgAd4HrjpZIPsQtKyJUOr7v5NRVtb24BboLHe07gjOCjo3Oi559X21D2MMRuw/2wfAeuAZ7sa/+pgJTCufRJHp323AnNEpBD4BPs3T0cvAVNFZD22NXasxwCCgAXO9T4FHjbGBEQvhI6B+UGm2x2MnVo7Fbv8igG4Y/bsiyYNHXquP2Mb6OoKCsrT33zzlBaF3AF8E5u0OnsLWIh9hzmabwE3AzOAC7BJ7XLgXuA14GznmO62/9xZe2P/538TQoJDQnvg8n3OgbraLWEhoedGfn1WQLxhq0NpC8wPsouL24BnsH9cZ+D8O9y/evWyD3fuXOW/yFRPl496Djst7Wh2YP8MPgfbh3Q5MAk7Cj8I+JieSV4Agz/MTam787bqltaWUx0H6vP2Vu3fWNNQP0WTV+DSBOYn2cXFrcD/YfuzM3AmdjySl7d6xbZt/b74b18VvXv3UasmnIo/YrsKrz7KMfXYhPUXoH1g45fARmwX42+xDwg9C3wXuKcH4kxY/1FS4+031TU3Nwd8LcgjKakoX71tz+7pGVde2lNjXqoXaALzo+ziYi/2GYzF2IHWYIC/rlu39o1Nm95o8/n67cO0fVFPlo+aj/1HfokjT0drxSavq4HvdLG/fcDkDOAFbFfiJmBrt0ZqxRXmD2m69aeepqamfvcGv2Nv6Zu5hRvnfOXm6wfceF9/ownMz5ySU69jh0aG4yzf8XpBwaYn1qz5+0CqnehvPVU+ailwP5AFHKl5Z7APCY4Fbj/CMe2tr1bshA6w/4F7KsMM2vJZQsvN1zd7PI394nfQ6/P6Nm3f9ueMKy+9/Kq7f6OD//2AJrA+wJmd+E9sl2IKzvTZD3ftKv3De+/9dX9DQ9nRzlfdI6io6JSnkV8FnAsUA+nYf9CbsXOiL8QWuGsvjFfKwWJ3edip8SucYyZin7lotwiYBqRh5zifC0zAZtuzTzXoo4j94vN477wfeBsa6gO6GntDk6dp9cYN14+/7spf+DsW1X10FmIfk+l2u7HTZA1QCRAVGhr86zlzLjt98ODO02VVNwq6++7aaJ+v8zM1CmhIG1prnnnBRMfEBlyFkooDVRXL16/7ztX3/DbP37Go7qUtsD4mu7i4GPgDUIv9I56Glpa2/3733YWrv/xy+UCpZN/bPLt312jyOrKo0j2xQTdcHVRXU33A37GciK27dxW8uGzJRE1e/ZO2wPqoTLc7CvgJtjepBKd+4ldGjBj6w6lTr4gOCwuYgpuBoPrtt3eO+PTTo1YsUOAZPKSx5W8LPIMSBg/2dyxH09rW5l2zqWDBg68t+ElWXk6Lv+NRPUMTWB/mPPB8Kfaxn33YoRQSIiLCfn7++ZeeNnjwOH/G1594HnxwT0pd3VB/xxEImgfFeTzPvtQQl5h00hVLelL5gaqqt3NX3b74w9wXsvJy9A2uH9MEFgAy3e5x2NpnYdixfwB+MGXKlAtHj54b7HIFROHNvsrX1uaLuuee1lBnBqg6tpbomOb6Z1+qSUhJPXyRNz8xxvDxls82zH/3nWueeOv1In/Ho3qeJrAAkel2x2FnWp8F7MbOpuaslJQhN0yf/q2k6Oh0f8YXyLqjfNRA1BoZ2VL7twVVg4cO67mF2Y5Tg8fTtCh31TOvrlz+31l5Of1i2r86Nk1gASTT7Q4CLsIWYagDqgBcInL9tGnTzx858mshQUEh/owxENW8+OKO4du2Zfg7jkDUFhbeduCZ+ZWJGael+iuGT7cWFy9c9f4thdu/WK5dhgOLJrAAlOl2nwb8GEgF9uC0xs4YMiRu3owZl6bFxo70Z3yBxnvvvRUJLS19piss0HhDQrz7n3p+b9KoM3p1DLGqtqb21ZXLF2avW/PrrLyc8t68t+obNIEFqEy3OxSYi11XqBHnmTGAayZPnnThqFEXhQYHhx/pfGW11tU1JTz4YFhPVOAYSLxBwb59jz9bmjz2zB7vyvb6fL6c/A0F85cu/m1VXe27WXk5WhJqgNIEFuAy3e5h2LGxDOwEjxaA1JiYyBumT/+3cUlJk0VE35yPoGb16t3DV67U8cNu4HO5TMVfntmdctbEYT11j13leysWLM9+cW1R4QPa6lKawPoBZ7r9v2HHxrzAXpw1xqYOHZp89aRJc1NjYzP8F2HfVffUU7vSy8uH+zuO/sInYsofeKwkdeo53fozraqtrXnzgxUfZuXl/AH4KCsvRx/oV5rA+pNMtzsJ+HdgOnbl+n9VTfjO+PFjL3a7L9IHoA+l5aO6nwHK7n1oZ9rM8075wfDG5iZP9tq8gpdXLHuupbX11ay8nJpuCFH1E5rA+plMt1uwK25cgy1FVY5dhZ7w4OCgH02bNuOcYcNmhen4GJ7du2tSnn024Gr7BYrS39+7M23OhSeVxNq8bW05+Z9ufnHZkjf219a8kJWXs72741OBTxNYP+V0K54LfA8IB8pwylElRESE/WDKlJmThw6dERIUNCCWju+Klo/qeaV3/n5H2txvZhzv8T5jzMYvirfNX7p4+fay0qeBQp0ar45EE1g/l+l2R2NnK87F9u7sxVlOKjk6OuLqSZPOnZiWNj00KGjAVaHQ8lG9o/S2O3akXXZFxrGO+2JPye4Xly3J/XRr8ZPAh1l5ObqgqzoqTWADRKbbPRjIxE72aJ/o4QUYHBkZfvWkSdOnDB06Iyw4OMKPYfYaLR/Vu0rn3bIz7XvXHNba9fp8vk3bt21buOq9wvxtW58H3s/Ky+l3q0CrnjGgE5iIeIHCDpteMcbc5694OhKRqcC1xphbjrA/A5hpjPnHiVzXmegxF5gN+LBjZG0AceHhof8xadK06enpM8NDQo60eHC/UFdQUJH+5pv68HIvKv3hT3amXnvDCBGhpbW1ed3mTZ+/smJZUUlFeTbwz6y8nCp/x6gCy0BPYPXGmGh/x3EyROSrwM+NMd88mfMz3e4h2EWCv+ZsKsep6BEdGhpyxYQJZ01LT58yOCrKbyWCelLNiy/uHL5tm45/9bJt1/xo6+Zx46tfXbH8s5qG+qXAiqy8nMpjnqhUFzSBdZHARGQa8AgQBTRj3+RbgaeAqdgWy+3GmJUich12yZNI4HTgLWPML53rXAX8Glvl4R1jzB3t9wWeAC7ATnX/NfC/wHDgNmNMVscEJSKznXjAjmOdDywHxgLbgfnAMuDvQCh2odLLjTFbj/UzyHS7E5zv7yIgCKgAmtr3T0tPT7lo9OjJ7sTECf2psof33nsrE1paEv0dx0CxKyKi9N3k1OIlKalFXpdrMZCXlZdT5++4VGAb6Amscxfin4C3gC3AlcaYj0UkFluq6VZgvDHmhyIyBpswzsDO8vsdMAmb7IqBWdjxpbXAFGySWgY8aoxZJCIGuNgYky0ib2ET5TeAccB8Y8zETgnsn8B9xpg8EYnGJphZdGiBichjwFpjzEsiEgoEGWM8x/uzyHS7BwHnYRNZDHbq/T5sNyNRoaHBl4wdO27G8OGTU2JiArrlouWjekcrtObD5y8PimvYmjFyC1HRzwCfZOXlNPs7NtU/DPR1pDzGmIkdN4jIBKDMGPMxgDGm1tk+C3jM2bZFRHZiExjA+8aYGue4ImAEMBhYZYypdLa/hG05LcKWe1rqnFsINBtjWkWkEFsSqrM84CHnGm8aY3Z3UR3qQ+A3IpLuHHPM1ldH2cXFNcDiTLd7KeAG5gCTnd37G1paGl7Jzy94JT+/YFxSUsLFY8ZMPjM5+eyIkJCA64Jt3LBh3xD7jJzqZj7wlcCOD2D3UthVC+upqV5G/qfFWcZo9QzVrQZ6AuuK4JRh6mL7kXT8i9KL/bke7fhWc7Dp62s/3xjjE5HD/k2MMfeJyDvAxcBaEbmgi2P+ISLrsC25d0XkBmPMiqPE0KXs4uI24DPgs0y3Ox7bgpyLTcotQEVRRUVVUUXFeyEu14pvjBlzxsyMjMnpgwaNcgVIzUVXUZG+kXYjA5RDyVrYvhj2VEANtos7N8uYCj+Hp/oxTWCH2wKkicg0pwuxvTstB7gaWCEiZ2DHq4o52ErpbB3wiIgMwXYhXoXTgjtRInK6MaYQKBSRc4ExQAm2q6/9mNOAL40xjzqvzwJOOIF1lF1cfAB4L9PtXoEd3zsf+3C0C6hu9flqFxUVbVlUVLQlIz4+5pKxYyeNT0mZMCg8vE8uNd8uvrJSy2l1gyqo+AS2LobS7VCP7U34ANiUZUzTMU5X6pQN9AQWISIbO3y91Bhzp4hcCTwmIhHY5HUB8CTwtNPN1wZcZ4xpPlKjwxhTJiK/AlZiW2NLjDFvn2Sct4nIHGzrrgjIxrbc2kQkH3geW23j+yLSin3G6+6TvNdhsouLfcBWYGum2/0qdrzv69hWWStQuePAgbrH1qzJAXLciYnxszIyRo9JTBydGhubEexy9ZnfM09JSXWKz6cJ7CTVQ00+FC+B0kJbb/MLYBU2aWmdQtWrBvQkDnXynJqLw4GvYJ8pC8b2JlVhJ70AdvLHnNNOG3l2WtrokfHxo/1dTFjLR52YNmgrg12bYedqqHaSVhm2dV+Q5YzxKuUPmsDUKXMW1xwJjAfOAYZgW5312O7Tf405nZWSMmTmiBGj3YmJZyRHRw93uVyu3oxVy0cd2wGo3AZffAR7V0Odx7b8q7G9CRuA0ix941B9gCYw1a2cllkidobmdOyjAS7sm+B+OjxjFhceHjrn9NNPPys1dfSIuLhRkaGhMV1ds7to+aiuNUHjLviyAEpWQlWJsygq8CXwMXasd5fOIlR9jSYw1aMy3e5w4DRgAjADaF++pA47W+1fb4pnJicPPjM5OTUjPj4tNSYmdXBUVGp3FhnW8lHgA1MNlXvtxIu9G6D2E2jw2e7famA9sAn4MsuYBv9Gq9TRaQJTvcZpnaVinzM7BxjdYXcDNqm1tm8QYGxSUsKZKSlpI7shqQ208lEGqIH95VC6E0o/g/KPoaH+YAu0/UH+T4BtQIV2DapAoglM+U2m2x2FfXB7GLYs1igggoPP4TVgx9Hau7Q6J7XU1JiYtONNav25fJQXvLVQtQ8qdkHpZij/COqrbWkxsD86D/A5sBnbPbgzy5jWI11Tqb5OE5jqM5wWWjy2lTYM+7zbKGydyfZf1EZsS+2QpOZOTIwfmZAwODUmJn5IVFRcfEREfGx4eFxEUFBSZFhYUGttbVPCQw8FdPmoNmirh+paqN4PVeWwvwT2fw7VW8Hrg2gOfn8t2FbVZmAXsAc4oC0s1Z9oAlN9mpPU4oA0bPmn9qQWhU1qLuybdVOHD/tL7fWGB5WVXZYQFJR1Wmxs9Ig9e+ISISYeYgdBTCzERENsOESGQFgIhPT29+cDXzN4msHjgcYm8DTaj8Y6aKyEmt1QvR2qS8BrbDKPcL5vg01YrdgW1WZgJ1AK7NdJF6q/0wSmAk6HpJaKnfGYCgwFkrE1KAGMeDxJQeXlQ6WlZT02yTU7H112mwWDDILQOAiLhdAYCIuGsCgIjYSwCAiNgLBwCA2CIB/4DJgOn40PfD4w7du9HV43QHMNNB4Azz6bnDz7bTxB2OQZ7HwOcz58HExSYIsr78a2qMqwszr3A7WarNRApAlM9SuZbncQEAvE09KSFFxamiItLWFAEvb5tARsV1t7cmgnHT6318Nsw0508DqvfV0cd6TX7V8HYROTq4t7upzjWrDdonVALVCJbUUdwM4MPADUZRnjPZmfiVL9lSYwNeBcagsmR3OwpROGnezQ8XMktpsyynkd6ewz2ETU8cPbxbb2j2ZsAqrHjt95Onz2AI1ZxrT18LesVL+kCUypfsBZY26BMeYa5+tgbDfjupNZtVtEngUeMsYUHWH/pcA4Y8x9pxC2UqdEE5hS/YCzyvdWYKYxxiMimdgFWnefTAJTKhD0ah06pVSPysauBwd2+Z6X23eIyF0i8vMOX28SkQwRiRKRd0Qk39l2pbN/lYhMdV7PFZENzjHvO9uuE5HHndeXiMg6EflURN4TkeQO93zOudaXInKLs73Leyp1ojSBKdV/vAJ8T0TCsevBrTuOc+YCpcaYs40x4zm4UjgAIpII/A243BhzNvDvXVwjF5hhjJnkxPDLDvvGYJfemQ78XkRCjnVPpY6XJjCl+gljTAG2sslVwJLjPK0QuEBE7heR88zha3rNAHKMMdude1R1cY107CrghcAvgDM77HvHGNNsjNkHVGAfdTjWPZU6LprAlOpfsoA/06H70NHGof/fwwGMMZ8DU7BJ5U8i8rtO57U/UnA0jwGPG2MmAD9tv7ajucNrLxB8HPdU6rj0mZVylVLd4jmgxhhTKCJf7bB9B/BNABGZjF2/DRFJA6qMMQuciSDXdbreh8ATIjLSGLNdRBK6aIUNwpaqAvjBsQI8jnsqdVw0gSnVjxhjdgOPdLHrDeBaEdmIXePrc2f7BOABEfFhK5Tc2Ol6lSLyE+BNEXFhuwEv7HTtu4DXRWQPsBYnOR7FUe+p1PHSafRKKaUCko6BKaWUCkiawJRSSgUkTWBKKaUCkiYwpZRSAUkTmFJKqYCkCUwppVRA0gSmlFIqIGkCU0opFZA0gSmllApImsCUUkoFJE1gSimlApImMKWUUgFJE5hSSqmApAlMKaVUQNIEppRSKiBpAlNKKRWQNIEppZQKSJrAlFJKBSRNYEoppQKSJjCllFIBSROYUkqpgPT/AefpwxMc3SV+AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Labels for the sections of our pie chart\n", + "labels = AggregatedGenre['Genre']\n", + "\n", + "# The values of each section of the pie chart\n", + "# sizes = Data_Influencers_DF.groupby([\"Genere\"],as_index=False).sum()[\"fare\"].tolist()\n", + "sizes = AggregatedGenre['Tweets']\n", + "\n", + "# The colors of each section of the pie chart\n", + "colors = [\"gold\", \"lightskyblue\", \"lightcoral\",'red','pink','darkblue','purple']\n", + "\n", + "# Tells matplotlib to seperate the \"Python\" section from the others\n", + "explode = (0,0,0,0,0,0,0.1)\n", + "\n", + "# Creates the pie chart based upon the values above\n", + "# Automatically finds the percentages of each part of the pie chart\n", + "plt.pie(sizes, explode=explode, labels=labels, colors=colors, autopct=\"%1.1f%%\", shadow=True, startangle=120)\n", + "\n", + "# Tells matplotlib that we want a pie chart with equal axes\n", + "plt.axis(\"off\")\n", + "\n", + " \n", + "plt.title(\"% Tweets per Genres\", fontsize=16)\n", + "\n", + "plt.savefig('Images/% Tweets per Genres.png')\n", + "# Prints our pie chart to the screen\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", + " \n", + " \n", " \n", " \n", " \n", @@ -660,100 +586,43 @@ " \n", " \n", " \n", - " \n", - " \n", + " \n", + " \n", " \n", - " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", @@ -766,554 +635,173 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
332@NoahpinionEng04/14/20112634.0140584.0102035.0140586.0102037.0811.0211402.0211403.0140586.0
333@Austan_GoolsbeeAustanGoolsbeeEconomistsChicagoEng11/19/20102780.04766.076954.0454.01605.0
334@BruceBartlettBruceBartlettEconomistsNAEng09/15/20112481.035314.061226.0950.033.0
335@mileskimballMileskimballEconomistsNAEng10/05/20093190.038933.016199.0920.010623.0
336@KingEconomistStephenKingEconomistsNA359@BDUTTBarkhaDuttSocial_workersIndiaEng07/30/20122161.04215.020681.0281.0170.0
337@jodiecongirlJodiBeggsEconomists02/02/20093435.0118499.06817264.01567.027847.0118499.0
356@ProfessorChicJamieMitchellSocial_workersNAEng04/14/20093364.038837.015092.02823.020129.0
338@kaushikcbasukaushikBasuEconomistsNew YorkEng12/02/20083497.05582.0109903.0643.02318.004/04/20112644.079771.01457.0572.024906.079771.0
33912/25/20093109.065098.020524.020525.02426.07077.065098.0
340@econofloveShoshanaGrossbardEconomistsSan Diego USAEng07/06/20093281.017533.04149.02333.04066.0
341@SBronarsStephenBronarsEconomistsNAEng07/11/20112546.04965.02949.0606.098.0
342@joebrusuelasJosephBrusuelasEconomistsNew York CityEng01/28/20103075.021970.09072.03122.025111.0
343@IanShepherdsonIanShepherdsonEconomistsNAEng07/06/20112551.04291.011630.0518.0254.0
344@bill_easterlyWilliamEasterlyEconomistsNew York CityEng04/27/20093351.013452.0109851.01991.0440.0
345@AllisonSchragerAllisonSchragerEconomistsNAEng10/12/20093183.03307.05806.0801.0921.0
346@RBReichRobertReichEconomistsNAEng05/26/20102957.08126.0592956.0220.0582.0
347@TimDuyTimDuyEconomistsNAEng09/06/20112489.018425.08758.0329.07582.0
348@kyrstensinemaKyrstenSinemaSocial_workersPhoenixEng02/13/20093424.014483.033162.0300.0269.0
349@RepBarbaraLeeBarbaraLeeSocial_workersWashington, DC and Oakland, CAEng02/07/20112700.07896.0186094.016312.03387.0
350@MikeLICSWMikeLangloisSocial_workersNAEng10/04/20102826.03996.05948.06199.0323.0
351@njsmythNancySmythSocial_workersBuffalo, NY, USAEng11/18/20083511.024408.06612.04832.04150.0
352@socworkpodcastJonathanSingerSocial_workersChicago, IL276@CoryBookerCoryBookerPoliticiansNewark, NJEng09/09/20093216.045358.014219.0792.022348.008/11/20083610.061912.04120945.093056.091.061912.0
353@johannagreesonJohannaGreesonSocial_workersPhiladelphia, PAEng04/04/20093375.07978.01860.02582.0182.0
354@JimmySWJimmyYoungSocial_workersNAEng10/23/20093172.010333.02545.01996.02273.0
355@tiziana_dearingTizianadearingSocial_workers325@MarkThomaMarkThomaEconomistsNAEng10/28/20083532.04351.01456.0430.01530.010/18/20083543.060094.044680.0417.05.060094.0
356@ProfessorChicJamieMitchellSocial_workersNA82@ilizaIlizaShiesingerComediansHollywood, CAEng04/04/20112644.079771.01457.0572.024906.002/15/20093422.049164.0170275.0468.027095.049164.0
357@DrKumarVishwasKumarVishwasSocial_workersGhaziabad,New DelhiEng05/08/20102975.026820.04802267.097.088077.0
358@drjoekortJoeKortSocial_workersÜT: 42.439627,-82.892816125@IGGYAZALEAIggyAzaleaMusiciansCalifornia, USAEng12/09/20083490.05525.02498.01027.02635.006/09/20102943.047771.08084320.06510.04226.047771.0
359@BDUTTBarkhaDuttSocial_workersIndia216@criscyborgCrisCyborgSports_celebcris.cyborg.llc@gmail.comEng02/02/20093435.0118499.06817242.01567.027847.011/29/20093135.046459.0191692.02131.012392.046459.0
360@RaggiKotakRaggiKotakSocial_workersNANA03/03/2016849.0942.0340.0399.01118.0
361@Martha7144MarthaCampbell352@socworkpodcastJonathanSingerSocial_workersBelfast, Northern IrelandChicago, ILEng08/04/20151061.0445.0332.01170.01092.009/09/20093216.045358.014219.0792.022348.045358.0
\n", - "

360 rows × 12 columns

\n", "
" ], "text/plain": [ - " Twitter_Handle First_Name Last_Name Genre \\\n", - "0 @_AnneHathaway Anne Hathaway Actors \n", - "1 @IAMannalynnemcc AnnaLynne McCord Actors \n", - "2 @EmmaWatson Emma Watson Actors \n", - "3 @JuliaRoberts Julia Roberts Actors \n", - "4 @LeoDiCaprio Leonardo DiCaprio Actors \n", - "5 @EvaLongoria Eva Baston Actors \n", - "6 @TheRock Dwayne Johnson Actors \n", - "7 @jessicaalba Jessica Alba Actors \n", - "8 @EllenPompeo Ellen Pompeo Actors \n", - "9 @JessicaCapshaw Jessica Capshaw Actors \n", - "10 @sarahdrew Sarah Drew Actors \n", - "11 @IamSandraOh Sandra Oh Actors \n", - "12 @SaraRamirez Sara Ramirez Actors \n", - "13 @iJesseWilliams Jesse Williams Actors \n", - "14 @TheRealKMcKidd Kevin McKidd Actors \n", - "15 @KatieHeigl Katherine Heigl Actors \n", - "16 @JasonWGeorge Jason George Actors \n", - "17 @chy_leigh Chyler Leigh Actors \n", - "18 @katewalsh Kate Walsh Actors \n", - "19 @KellyMcCreary Kelly McCreary Actors \n", - "20 @IWashington Isaiah Washington Actors \n", - "21 @DohertyShannen Shannen Doherty Actors \n", - "22 @shenaegrimes Shenae Grimes Actors \n", - "23 @JessicaLStroup Jessica Stroup Actors \n", - "24 @MattLanter Matt Lanter Actors \n", - "25 @MACKWILDS Tristan Wilds Actors \n", - "26 @EmilyVanCamp Emily VanCamp Actors \n", - "27 @Gabriel_Mann Gabriel Mann Actors \n", - "28 @Nick_Wechsler Nick Wechsler Actors \n", - "29 @christabrittany Christa Allen Actors \n", - ".. ... ... ... ... \n", - "332 @Noahpinion Noah Smith Economists \n", - "333 @Austan_Goolsbee Austan Goolsbee Economists \n", - "334 @BruceBartlett Bruce Bartlett Economists \n", - "335 @mileskimball Miles kimball Economists \n", - "336 @KingEconomist Stephen King Economists \n", - "337 @jodiecongirl Jodi Beggs Economists \n", - "338 @kaushikcbasu kaushik Basu Economists \n", - "339 @haroldpollack Harold Pollack Economists \n", - "340 @econoflove Shoshana Grossbard Economists \n", - "341 @SBronars Stephen Bronars Economists \n", - "342 @joebrusuelas Joseph Brusuelas Economists \n", - "343 @IanShepherdson Ian Shepherdson Economists \n", - "344 @bill_easterly William Easterly Economists \n", - "345 @AllisonSchrager Allison Schrager Economists \n", - "346 @RBReich Robert Reich Economists \n", - "347 @TimDuy Tim Duy Economists \n", - "348 @kyrstensinema Kyrsten Sinema Social_workers \n", - "349 @RepBarbaraLee Barbara Lee Social_workers \n", - "350 @MikeLICSW Mike Langlois Social_workers \n", - "351 @njsmyth Nancy Smyth Social_workers \n", - "352 @socworkpodcast Jonathan Singer Social_workers \n", - "353 @johannagreeson Johanna Greeson Social_workers \n", - "354 @JimmySW Jimmy Young Social_workers \n", - "355 @tiziana_dearing Tiziana dearing Social_workers \n", - "356 @ProfessorChic Jamie Mitchell Social_workers \n", - "357 @DrKumarVishwas Kumar Vishwas Social_workers \n", - "358 @drjoekort Joe Kort Social_workers \n", - "359 @BDUTT Barkha Dutt Social_workers \n", - "360 @RaggiKotak Raggi Kotak Social_workers \n", - "361 @Martha7144 Martha Campbell Social_workers \n", - "\n", - " Loc Lang Created On Age Of Account \\\n", - "0 NA Eng 09/13/2012 2116.0 \n", - "1 NA Eng 01/16/2010 3087.0 \n", - "2 NA Eng 07/14/2010 2908.0 \n", - "3 NA Eng 01/13/2011 2725.0 \n", - "4 NA Eng 04/16/2010 2997.0 \n", - "5 Los Angeles, CA Eng 02/02/2010 3070.0 \n", - "6 NA Eng 02/11/2011 2696.0 \n", - "7 NA Eng 11/24/2009 3140.0 \n", - "8 NY/LA Eng 03/23/2013 1926.0 \n", - "9 NA Eng 05/05/2011 2613.0 \n", - "10 NA Eng 11/14/2009 3150.0 \n", - "11 Eng 09/20/2013 1744.0 \n", - "12 NA Eng 07/30/2013 1796.0 \n", - "13 NA Eng 04/12/2009 3366.0 \n", - "14 NA Eng 04/05/2009 3374.0 \n", - "15 Utah / Toronto Eng 11/03/2009 3161.0 \n", - "16 NA Eng 09/19/2012 2110.0 \n", - "17 NA Eng 03/02/2014 1581.0 \n", - "18 NA Eng 08/30/2009 3226.0 \n", - "19 NA Eng 12/26/2011 2378.0 \n", - "20 Everywhere I tweet... Eng 02/06/2011 2702.0 \n", - "21 NA Eng 03/02/2010 3042.0 \n", - "22 NA Eng 03/13/2010 3032.0 \n", - "23 NA Eng 04/23/2010 2990.0 \n", - "24 Everywhere Eng 11/12/2009 3152.0 \n", - "25 Eng 03/03/2009 3406.0 \n", - "26 NA Eng 05/22/2011 2596.0 \n", - "27 NA Eng 05/11/2010 2972.0 \n", - "28 NA Eng 06/17/2013 1840.0 \n", - "29 Los Angeles Eng 08/18/2010 2873.0 \n", - ".. ... ... ... ... \n", - "332 NA Eng 04/14/2011 2634.0 \n", - "333 Chicago Eng 11/19/2010 2780.0 \n", - "334 NA Eng 09/15/2011 2481.0 \n", - "335 NA Eng 10/05/2009 3190.0 \n", - "336 NA Eng 07/30/2012 2161.0 \n", - "337 NA Eng 04/14/2009 3364.0 \n", - "338 New York Eng 12/02/2008 3497.0 \n", - "339 NA Eng 12/25/2009 3109.0 \n", - "340 San Diego USA Eng 07/06/2009 3281.0 \n", - "341 NA Eng 07/11/2011 2546.0 \n", - "342 New York City Eng 01/28/2010 3075.0 \n", - "343 NA Eng 07/06/2011 2551.0 \n", - "344 New York City Eng 04/27/2009 3351.0 \n", - "345 NA Eng 10/12/2009 3183.0 \n", - "346 NA Eng 05/26/2010 2957.0 \n", - "347 NA Eng 09/06/2011 2489.0 \n", - "348 Phoenix Eng 02/13/2009 3424.0 \n", - "349 Washington, DC and Oakland, CA Eng 02/07/2011 2700.0 \n", - "350 NA Eng 10/04/2010 2826.0 \n", - "351 Buffalo, NY, USA Eng 11/18/2008 3511.0 \n", - "352 Chicago, IL Eng 09/09/2009 3216.0 \n", - "353 Philadelphia, PA Eng 04/04/2009 3375.0 \n", - "354 NA Eng 10/23/2009 3172.0 \n", - "355 NA Eng 10/28/2008 3532.0 \n", - "356 NA Eng 04/04/2011 2644.0 \n", - "357 Ghaziabad,New Delhi Eng 05/08/2010 2975.0 \n", - "358 ÜT: 42.439627,-82.892816 Eng 12/09/2008 3490.0 \n", - "359 India Eng 02/02/2009 3435.0 \n", - "360 NA NA 03/03/2016 849.0 \n", - "361 Belfast, Northern Ireland Eng 08/04/2015 1061.0 \n", + " Twitter_Handle First_Name Last_Name Genre \\\n", + "332 @Noahpinion Noah Smith Economists \n", + "359 @BDUTT Barkha Dutt Social_workers \n", + "356 @ProfessorChic Jamie Mitchell Social_workers \n", + "339 @haroldpollack Harold Pollack Economists \n", + "276 @CoryBooker Cory Booker Politicians \n", + "325 @MarkThoma Mark Thoma Economists \n", + "82 @iliza Iliza Shiesinger Comedians \n", + "125 @IGGYAZALEA Iggy Azalea Musicians \n", + "216 @criscyborg Cris Cyborg Sports_celeb \n", + "352 @socworkpodcast Jonathan Singer Social_workers \n", "\n", - " Tweets Followers Following Favorites Count \n", - "0 2.0 280.0 0.0 0.0 \n", - "1 5776.0 228697.0 502.0 2157.0 \n", - "2 1642.0 29137145.0 382.0 991.0 \n", - "3 0.0 544608.0 0.0 0.0 \n", - "4 1283.0 19325910.0 145.0 40.0 \n", - "5 15803.0 7692252.0 809.0 151.0 \n", - "6 21633.0 13038268.0 242.0 142.0 \n", - "7 6244.0 9649541.0 1359.0 1443.0 \n", - "8 5211.0 1551673.0 541.0 6069.0 \n", - "9 4017.0 935864.0 348.0 86.0 \n", - "10 9611.0 822449.0 201.0 622.0 \n", - "11 578.0 1005661.0 21.0 14.0 \n", - "12 7989.0 820794.0 800.0 6520.0 \n", - "13 19834.0 2400009.0 3531.0 5700.0 \n", - "14 7614.0 771065.0 503.0 386.0 \n", - "15 8474.0 1325730.0 117.0 3120.0 \n", - "16 4306.0 236873.0 697.0 3018.0 \n", - "17 5810.0 301897.0 427.0 5541.0 \n", - "18 18109.0 894903.0 828.0 3541.0 \n", - "19 4045.0 256598.0 524.0 11744.0 \n", - "20 29863.0 98699.0 7486.0 11407.0 \n", - "21 9347.0 584090.0 612.0 3618.0 \n", - "22 5712.0 228926.0 85.0 97.0 \n", - "23 1682.0 199284.0 330.0 759.0 \n", - "24 8770.0 458218.0 403.0 2393.0 \n", - "25 42828.0 182112.0 2000.0 1103.0 \n", - "26 1591.0 555787.0 235.0 99.0 \n", - "27 14827.0 262230.0 997.0 24281.0 \n", - "28 4513.0 151994.0 1201.0 10817.0 \n", - "29 1481.0 110133.0 454.0 613.0 \n", - ".. ... ... ... ... \n", - "332 140584.0 102035.0 811.0 211402.0 \n", - "333 4766.0 76954.0 454.0 1605.0 \n", - "334 35314.0 61226.0 950.0 33.0 \n", - "335 38933.0 16199.0 920.0 10623.0 \n", - "336 4215.0 20681.0 281.0 170.0 \n", - "337 38837.0 15092.0 2823.0 20129.0 \n", - "338 5582.0 109903.0 643.0 2318.0 \n", - "339 65098.0 20524.0 2426.0 7077.0 \n", - "340 17533.0 4149.0 2333.0 4066.0 \n", - "341 4965.0 2949.0 606.0 98.0 \n", - "342 21970.0 9072.0 3122.0 25111.0 \n", - "343 4291.0 11630.0 518.0 254.0 \n", - "344 13452.0 109851.0 1991.0 440.0 \n", - "345 3307.0 5806.0 801.0 921.0 \n", - "346 8126.0 592956.0 220.0 582.0 \n", - "347 18425.0 8758.0 329.0 7582.0 \n", - "348 14483.0 33162.0 300.0 269.0 \n", - "349 7896.0 186094.0 16312.0 3387.0 \n", - "350 3996.0 5948.0 6199.0 323.0 \n", - "351 24408.0 6612.0 4832.0 4150.0 \n", - "352 45358.0 14219.0 792.0 22348.0 \n", - "353 7978.0 1860.0 2582.0 182.0 \n", - "354 10333.0 2545.0 1996.0 2273.0 \n", - "355 4351.0 1456.0 430.0 1530.0 \n", - "356 79771.0 1457.0 572.0 24906.0 \n", - "357 26820.0 4802267.0 97.0 88077.0 \n", - "358 5525.0 2498.0 1027.0 2635.0 \n", - "359 118499.0 6817242.0 1567.0 27847.0 \n", - "360 942.0 340.0 399.0 1118.0 \n", - "361 445.0 332.0 1170.0 1092.0 \n", + " Loc Lang Created On Age Of Account Tweets \\\n", + "332 NA Eng 04/14/2011 2634.0 140586.0 \n", + "359 India Eng 02/02/2009 3435.0 118499.0 \n", + "356 NA Eng 04/04/2011 2644.0 79771.0 \n", + "339 NA Eng 12/25/2009 3109.0 65098.0 \n", + "276 Newark, NJ Eng 08/11/2008 3610.0 61912.0 \n", + "325 NA Eng 10/18/2008 3543.0 60094.0 \n", + "82 Hollywood, CA Eng 02/15/2009 3422.0 49164.0 \n", + "125 California, USA Eng 06/09/2010 2943.0 47771.0 \n", + "216 cris.cyborg.llc@gmail.com Eng 11/29/2009 3135.0 46459.0 \n", + "352 Chicago, IL Eng 09/09/2009 3216.0 45358.0 \n", "\n", - "[360 rows x 12 columns]" + " Followers Following Favorites Count Average Tweets \n", + "332 102037.0 811.0 211403.0 140586.0 \n", + "359 6817264.0 1567.0 27847.0 118499.0 \n", + "356 1457.0 572.0 24906.0 79771.0 \n", + "339 20525.0 2426.0 7077.0 65098.0 \n", + "276 4120945.0 93056.0 91.0 61912.0 \n", + "325 44680.0 417.0 5.0 60094.0 \n", + "82 170275.0 468.0 27095.0 49164.0 \n", + "125 8084320.0 6510.0 4226.0 47771.0 \n", + "216 191692.0 2131.0 12392.0 46459.0 \n", + "352 14219.0 792.0 22348.0 45358.0 " ] }, - "execution_count": 8, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Remove missing values.\n", - "Data_Influencers_DF.dropna()" + "# People who are top ten Influencer who tweet more\n", + "top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(10)\n", + "top_ten_twitters" ] }, { "cell_type": "code", - "execution_count": 9, - "metadata": { - "scrolled": false - }, + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "AggregatedGenre" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, "outputs": [ { "data": { @@ -1336,110 +824,372 @@ " \n", " \n", " \n", + " Twitter_Handle\n", + " First_Name\n", + " Last_Name\n", " Genre\n", + " Loc\n", + " Lang\n", + " Created On\n", + " Age Of Account\n", " Tweets\n", " Followers\n", + " Following\n", + " Favorites Count\n", " Average Tweets\n", - " Age Of Account\n", - " \n", - " \n", - " Genre\n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", - " Musicians\n", - " 45\n", - " 450800.0\n", - " 908215092.0\n", - " 10245.454545\n", - " 2941.977273\n", + " 91\n", + " @katyperry\n", + " Katy\n", + " Perry\n", + " Musicians\n", + " \n", + " Eng\n", + " 02/20/2009\n", + " 3417.0\n", + " 9219.0\n", + " 109560207.0\n", + " 216.0\n", + " 6214.0\n", + " 9219.0\n", " \n", " \n", - " Sports_celeb\n", - " 118\n", - " 888695.0\n", - " 511197241.0\n", - " 7595.683761\n", - " 2794.581197\n", + " 251\n", + " @BarackObama\n", + " Barack\n", + " Obama\n", + " Politicians\n", + " NA\n", + " Eng\n", + " 03/05/2007\n", + " 4135.0\n", + " 15517.0\n", + " 103415349.0\n", + " 621169.0\n", + " 11.0\n", + " 15517.0\n", " \n", " \n", - " Politicians\n", - " 73\n", - " 574648.0\n", - " 247419793.0\n", - " 7871.890411\n", - " 2819.027397\n", + " 86\n", + " @taylorswift13\n", + " Taylor\n", + " Swift\n", + " Musicians\n", + " NA\n", + " Eng\n", + " 12/06/2008\n", + " 3493.0\n", + " 100.0\n", + " 85527198.0\n", + " 0.0\n", + " 458.0\n", + " 100.0\n", " \n", " \n", - " Comedians\n", - " 44\n", - " 480982.0\n", - " 210125574.0\n", - " 10931.409091\n", - " 3081.772727\n", + " 95\n", + " @ladygaga\n", + " Lady\n", + " Gaga\n", + " Musicians\n", + " NA\n", + " Eng\n", + " 03/26/2008\n", + " 3748.0\n", + " 8764.0\n", + " 78872408.0\n", + " 127040.0\n", + " 1916.0\n", + " 8764.0\n", " \n", " \n", - " Actors\n", - " 42\n", - " 387821.0\n", - " 103366645.0\n", - " 9233.833333\n", - " 2688.452381\n", + " 66\n", + " @TheEllenShow\n", + " Ellen\n", + " DeGeneres\n", + " Comedians\n", + " California\n", + " Eng\n", + " 08/14/2008\n", + " 3607.0\n", + " 16960.0\n", + " 78040811.0\n", + " 35737.0\n", + " 954.0\n", + " 16960.0\n", " \n", " \n", - " Social_workers\n", - " 14\n", - " 350805.0\n", - " 11876032.0\n", - " 25057.500000\n", - " 2872.142857\n", + " 139\n", + " @Cristiano\n", + " Cristiano\n", + " Ronaldo\n", + " Sports_celeb\n", + " Madrid\n", + " NA\n", + " 06/14/2010\n", + " 2938.0\n", + " 3211.0\n", + " 74135922.0\n", + " 99.0\n", + " 0.0\n", + " 3211.0\n", " \n", " \n", - " Economists\n", - " 26\n", - " 579243.0\n", - " 2193422.0\n", - " 22278.576923\n", - " 2849.307692\n", + " 105\n", + " @jtimberlake\n", + " Justin\n", + " Timberlake\n", + " Musicians\n", + " Memphis, TN\n", + " Eng\n", + " 03/25/2009\n", + " 3384.0\n", + " 3974.0\n", + " 66041132.0\n", + " 282.0\n", + " 192.0\n", + " 3974.0\n", + " \n", + " \n", + " 107\n", + " @BritneySpears\n", + " Britney\n", + " Spears\n", + " Musicians\n", + " NA\n", + " Eng\n", + " 09/22/2008\n", + " 3568.0\n", + " 5474.0\n", + " 58228264.0\n", + " 386058.0\n", + " 2554.0\n", + " 5474.0\n", + " \n", + " \n", + " 87\n", + " @ArianaGrande\n", + " Ariana\n", + " Grande\n", + " Musicians\n", + " ǝʌɐ uooɯʎǝuoɥ\n", + " Eng\n", + " 04/23/2009\n", + " 3355.0\n", + " 41409.0\n", + " 57650185.0\n", + " 64060.0\n", + " 34153.0\n", + " 41409.0\n", + " \n", + " \n", + " 122\n", + " @ddlovato\n", + " Demi\n", + " Lovato\n", + " Musicians\n", + " DALLAS/LA\n", + " Eng\n", + " 02/17/2009\n", + " 3420.0\n", + " 17082.0\n", + " 57251731.0\n", + " 539.0\n", + " 2098.0\n", + " 17082.0\n", " \n", " \n", "\n", "" ], "text/plain": [ - " Genre Tweets Followers Average Tweets Age Of Account\n", - "Genre \n", - "Musicians 45 450800.0 908215092.0 10245.454545 2941.977273\n", - "Sports_celeb 118 888695.0 511197241.0 7595.683761 2794.581197\n", - "Politicians 73 574648.0 247419793.0 7871.890411 2819.027397\n", - "Comedians 44 480982.0 210125574.0 10931.409091 3081.772727\n", - "Actors 42 387821.0 103366645.0 9233.833333 2688.452381\n", - "Social_workers 14 350805.0 11876032.0 25057.500000 2872.142857\n", - "Economists 26 579243.0 2193422.0 22278.576923 2849.307692" + " Twitter_Handle First_Name Last_Name Genre Loc Lang \\\n", + "91 @katyperry Katy Perry Musicians Eng \n", + "251 @BarackObama Barack Obama Politicians NA Eng \n", + "86 @taylorswift13 Taylor Swift Musicians NA Eng \n", + "95 @ladygaga Lady Gaga Musicians NA Eng \n", + "66 @TheEllenShow Ellen DeGeneres Comedians California Eng \n", + "139 @Cristiano Cristiano Ronaldo Sports_celeb Madrid NA \n", + "105 @jtimberlake Justin Timberlake Musicians Memphis, TN Eng \n", + "107 @BritneySpears Britney Spears Musicians NA Eng \n", + "87 @ArianaGrande Ariana Grande Musicians ǝʌɐ uooɯʎǝuoɥ Eng \n", + "122 @ddlovato Demi Lovato Musicians DALLAS/LA Eng \n", + "\n", + " Created On Age Of Account Tweets Followers Following \\\n", + "91 02/20/2009 3417.0 9219.0 109560207.0 216.0 \n", + "251 03/05/2007 4135.0 15517.0 103415349.0 621169.0 \n", + "86 12/06/2008 3493.0 100.0 85527198.0 0.0 \n", + "95 03/26/2008 3748.0 8764.0 78872408.0 127040.0 \n", + "66 08/14/2008 3607.0 16960.0 78040811.0 35737.0 \n", + "139 06/14/2010 2938.0 3211.0 74135922.0 99.0 \n", + "105 03/25/2009 3384.0 3974.0 66041132.0 282.0 \n", + "107 09/22/2008 3568.0 5474.0 58228264.0 386058.0 \n", + "87 04/23/2009 3355.0 41409.0 57650185.0 64060.0 \n", + "122 02/17/2009 3420.0 17082.0 57251731.0 539.0 \n", + "\n", + " Favorites Count Average Tweets \n", + "91 6214.0 9219.0 \n", + "251 11.0 15517.0 \n", + "86 458.0 100.0 \n", + "95 1916.0 8764.0 \n", + "66 954.0 16960.0 \n", + "139 0.0 3211.0 \n", + "105 192.0 3974.0 \n", + "107 2554.0 5474.0 \n", + "87 34153.0 41409.0 \n", + "122 2098.0 17082.0 " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Top ten Influencer who who have more Followers\n", + "top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(10)\n", + "top_ten_influencer" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# Still Working test cell\n", + "# to find the handle of followers of the top most \n", + "# active Influencer so that we can send the tweet through a bot.\n", + "# top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))\n", + "# import time\n", + "# ids = []\n", + "# for page in tweepy.Cursor(api.followers_ids, top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))).pages():\n", + "# ids.extend(page)\n", + "# time.sleep(60)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Sentiment Analysis of the Influencers: " + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "###\n", + "# Influencers = influencer_data_read\n", + "# s = Influencers.iloc[:,0]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-----------Start extraction of the tweets posted by the Influencers!!!-----------\n", + "Extracting tweets from @katyperry\n", + "Extracting tweets from @BarackObama\n", + "Extracting tweets from @taylorswift13\n", + "Extracting tweets from @ladygaga\n", + "Extracting tweets from @TheEllenShow\n", + "Extracting tweets from @Cristiano\n", + "Extracting tweets from @jtimberlake\n", + "Extracting tweets from @BritneySpears\n", + "Extracting tweets from @ArianaGrande\n", + "Extracting tweets from @ddlovato\n", + "-----------End of Extraction of Tweets !!!-----------\n" + ] + } + ], + "source": [ + "# Extract the first 100 tweets of the Influencers\n", + "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", + "Influencers = top_ten_influencer['Twitter_Handle']\n", + "\n", + "for user in Influencers:\n", + " # Set the tweet count to 100\n", + " tweet_count = 100\n", + " print(\"Extracting tweets from %s\"%user)\n", + " \n", + " # Extract tweets up to 5 pages\n", + " for x in range(5):\n", + " influencer_tweets = api.user_timeline(user,page = x)\n", + "# influencer_tweets \n", + " \n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in influencer_tweets:\n", + " \n", + " #Calculate the compound, positive, negative and neutral values of each tweet\n", + " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", + " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", + " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", + " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", + " \n", + " # Save the Tweets in an array as a dictionery item \n", + " Sentiment_array.append({\"Influencers\" : user,\n", + " \"Tweet Text\" : tweet[\"text\"],\n", + " \"Compound\" : compound,\n", + " \"Positive\" : pos,\n", + " \"Negative\" : neg,\n", + " \"Neutral\" : neu,\n", + " \"Date\" : tweet[\"created_at\"],\n", + " \"Tweets Ago\" : tweet_count\n", + " })\n", + " \n", + " #Decrease count of tweet by 1 in the reverse order\n", + " tweet_count -= 1\n", + "\n", + "print(\"-----------End of Extraction of Tweets !!!-----------\")" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1020" ] }, - "execution_count": 9, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Grouped on Genre \n", - "Data_Influencers_DF['Average Tweets'] = Data_Influencers_DF['Tweets']\n", - "AggregatedGenre= Data_Influencers_DF.groupby([\"Genre\"]).agg({'Genre': 'count', 'Tweets': 'sum', 'Followers': 'sum','Average Tweets':'mean','Age Of Account':'mean'})\n", - "AggregatedGenre\n", - "AggregatedGenre.sort_values(['Followers'], ascending=False)\n" + "len(Sentiment_array)" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 36, "metadata": {}, "outputs": [ { @@ -1463,576 +1213,1159 @@ " \n", " \n", " \n", - " Genre\n", - " Tweets\n", - " Followers\n", - " Average Tweets\n", - " Age Of Account\n", - " \n", - " \n", - " Genre\n", - " \n", - " \n", - " \n", - " \n", - " \n", + " Influencers\n", + " Date\n", + " Tweet Text\n", + " Compound\n", + " Positive\n", + " Negative\n", + " Neutral\n", + " Tweets Ago\n", " \n", " \n", " \n", " \n", - " Social_workers\n", - " 14\n", - " 350805.0\n", - " 11876032.0\n", - " 25057.500000\n", - " 2872.142857\n", + " 0\n", + " ddlovato\n", + " Fri Jun 29 18:00:02 +0000 2018\n", + " Sister I am slayed. 😍 https://t.co/BwVRX7P3VF\n", + " 0.4588\n", + " 0.300\n", + " 0.000\n", + " 0.700\n", + " 100\n", " \n", " \n", - " Economists\n", - " 26\n", - " 579243.0\n", - " 2193422.0\n", - " 22278.576923\n", - " 2849.307692\n", + " 1\n", + " ddlovato\n", + " Wed Jun 27 15:18:27 +0000 2018\n", + " To my fans, my family, and my supporters, the ...\n", + " 0.7096\n", + " 0.191\n", + " 0.000\n", + " 0.809\n", + " 99\n", " \n", " \n", - " Comedians\n", - " 44\n", - " 480982.0\n", - " 210125574.0\n", - " 10931.409091\n", - " 3081.772727\n", + " 2\n", + " ddlovato\n", + " Tue Jun 26 23:43:09 +0000 2018\n", + " #Sober 🖤https://t.co/RArIHOpNNq https://t.co/f...\n", + " 0.0000\n", + " 0.000\n", + " 0.000\n", + " 1.000\n", + " 98\n", " \n", " \n", - " Musicians\n", - " 45\n", - " 450800.0\n", - " 908215092.0\n", - " 10245.454545\n", - " 2941.977273\n", + " 3\n", + " ddlovato\n", + " Tue Jun 26 22:00:18 +0000 2018\n", + " 🔋💚💪🏼 @Fabletics Nori Outfit #Demi4Fabletics ht...\n", + " 0.0000\n", + " 0.000\n", + " 0.000\n", + " 1.000\n", + " 97\n", " \n", " \n", - " Actors\n", - " 42\n", - " 387821.0\n", - " 103366645.0\n", - " 9233.833333\n", - " 2688.452381\n", + " 4\n", + " ddlovato\n", + " Tue Jun 26 15:59:47 +0000 2018\n", + " I’m celebrating Pride by raising money for GLA...\n", + " 0.5574\n", + " 0.238\n", + " 0.098\n", + " 0.664\n", + " 96\n", " \n", " \n", - " Politicians\n", - " 73\n", - " 574648.0\n", - " 247419793.0\n", - " 7871.890411\n", - " 2819.027397\n", + " 5\n", + " ddlovato\n", + " Mon Jun 25 21:34:09 +0000 2018\n", + " RT this to vote for me or tweet \"My #TeenChoic...\n", + " 0.0000\n", + " 0.000\n", + " 0.000\n", + " 1.000\n", + " 95\n", " \n", " \n", - " Sports_celeb\n", - " 118\n", - " 888695.0\n", - " 511197241.0\n", - " 7595.683761\n", - " 2794.581197\n", + " 6\n", + " ddlovato\n", + " Mon Jun 25 21:33:34 +0000 2018\n", + " RT this to vote for me or tweet \"My #TeenChoic...\n", + " 0.0000\n", + " 0.000\n", + " 0.000\n", + " 1.000\n", + " 94\n", " \n", - " \n", - "\n", - "" - ], - "text/plain": [ - " Genre Tweets Followers Average Tweets Age Of Account\n", - "Genre \n", - "Social_workers 14 350805.0 11876032.0 25057.500000 2872.142857\n", - "Economists 26 579243.0 2193422.0 22278.576923 2849.307692\n", - "Comedians 44 480982.0 210125574.0 10931.409091 3081.772727\n", - "Musicians 45 450800.0 908215092.0 10245.454545 2941.977273\n", - "Actors 42 387821.0 103366645.0 9233.833333 2688.452381\n", - "Politicians 73 574648.0 247419793.0 7871.890411 2819.027397\n", - "Sports_celeb 118 888695.0 511197241.0 7595.683761 2794.581197" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Sorting on Average Tweets and grouped on Genere\n", - "AggregatedGenre.sort_values(['Average Tweets'],ascending=False)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
7ddlovatoMon Jun 25 21:32:42 +0000 2018I got three more Teen Choice Nominations! RT t...0.00000.0000.0001.00093
332@NoahpinionNoahSmithEconomistsNAEng04/14/20112634.0140584.0102035.0811.0211402.0140584.08ddlovatoSun Jun 24 22:27:18 +0000 2018Tonight I took the stage, a new person with a ...0.58590.2110.0000.78992
359@BDUTTBarkhaDuttSocial_workersIndiaEng02/02/20093435.0118499.06817242.01567.027847.0118499.09ddlovatoThu Jun 21 14:36:08 +0000 2018My truth... https://t.co/tmDhhBGLNQ\\n#sober ou...0.00000.0000.0001.00091
356@ProfessorChicJamieMitchellSocial_workersNAEng04/04/20112644.079771.01457.0572.024906.079771.010ddlovatoWed Jun 20 18:48:31 +0000 2018My heart is broken with what’s going on in the...-0.47670.0000.2050.79590
339@haroldpollackHaroldPollackEconomistsNAEng12/25/20093109.065098.020524.02426.07077.065098.011ddlovatoTue Jun 19 22:00:01 +0000 2018Zaddy issues 💁🏻‍♀️ https://t.co/2Y9ya1eUp50.49390.2860.0000.71489
276@CoryBookerCoryBookerPoliticiansNewark, NJEng08/11/20083610.061912.04120931.093056.091.061912.012ddlovatoTue Jun 19 18:00:08 +0000 2018Did you hear the acoustic version of Solo with...0.63690.2310.0000.76988
325@MarkThomaMarkThomaEconomistsNAEng10/18/20083543.060094.044680.0417.05.060094.013ddlovatoMon Jun 18 20:43:00 +0000 2018Solo with @cleanbandit is #1 on the UK mid-wee...0.38020.1200.0000.88087
82@ilizaIlizaShiesingerComediansHollywood, CAEng02/15/20093422.049164.0170274.0468.027096.049164.014ddlovatoSat Jun 16 22:32:50 +0000 2018Manchester.. it was an honor to perform for yo...0.69080.2060.0000.79486
125@IGGYAZALEAIggyAzaleaMusiciansCalifornia, USAEng06/09/20102943.047727.08084339.06510.04224.047727.015ddlovatoFri Jun 15 22:15:03 +0000 2018Sorry Not Sorry was nominated for #ChoiceSongF...0.54110.1730.1100.71885
16ddlovatoFri Jun 15 21:59:29 +0000 2018Thank you so much for the Teen Choice Nominati...0.69960.2010.0000.79984
17ddlovatoFri Jun 15 18:03:13 +0000 2018.@xtina this ALBUM!!! 😍 Guys it’s sooo good. D...0.85820.3720.0000.62883
18ddlovatoFri Jun 15 16:01:00 +0000 2018Feeling cute in my @Fabletics Stretto II 🌊☀️ h...0.54230.3600.0000.64082
19ddlovatoThu Jun 14 23:56:10 +0000 2018Who else can’t sleep?0.00000.0000.0001.00081
20katyperrySat Jun 23 01:18:28 +0000 2018Was so proud to give the gift of #transcendent...0.88050.3620.0000.638100
21katyperryFri Jun 22 19:27:57 +0000 2018found my first skin tag today. I think I’m an ...0.00000.0000.0001.00099
22katyperryThu Jun 21 02:10:52 +0000 2018Never forget, everyone was once a child.0.16950.2500.0000.75098
23katyperryWed Jun 20 21:10:37 +0000 2018My Aussies 🐨 & Kiwis 🥝! For the FINALE of ...0.00000.0000.0001.00097
24katyperryFri Jun 15 19:50:07 +0000 2018I 👁 you, @RoarForJess, and I ❤ you, and I’m si...0.00000.0000.0001.00096
25katyperrySat Jun 09 23:51:56 +0000 2018Scandinavians have figured it out.0.00000.0000.0001.00095
26katyperrySat Jun 09 14:02:29 +0000 2018Oi oi @JackGarratt remember when we locked our...0.00000.0000.0001.00094
27katyperrySat Jun 09 04:08:27 +0000 2018WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr http...0.00000.0000.0001.00093
28katyperryWed Jun 06 17:11:41 +0000 2018IM SCREAMINGOSBEJRMF$&2@!K https://t.co/Sn...0.00000.0000.0001.00092
29katyperryTue Jun 05 03:08:49 +0000 2018CALIFORNIANS! What’s important to you? Is it g...-0.88210.0720.4450.48391
...........................
216@criscyborgCrisCyborgSports_celebcris.cyborg.llc@gmail.comEng11/29/20093135.046459.0191691.02131.012392.046459.0990ddlovatoSun Jun 03 10:15:23 +0000 2018Okay guys I gotta go!! I love you all!0.78910.5820.0000.41830
991ddlovatoSun Jun 03 10:11:44 +0000 2018Stop tweeting https://t.co/RZFUOiCJJ2-0.29600.0000.5240.47629
992ddlovatoSun Jun 03 10:09:23 +0000 2018The fact that people in other countries know t...-0.47670.0000.1620.83828
993ddlovatoSun Jun 03 10:06:59 +0000 2018The one coming out soon https://t.co/xkMphF44JY0.00000.0000.0001.00027
994ddlovatoSun Jun 03 10:05:27 +0000 2018I DREAMT ABOUT THAT LAST NIGHT https://t.co/9Y...0.00000.0000.0001.00026
352@socworkpodcastJonathanSingerSocial_workersChicago, ILEng09/09/20093216.045358.014219.0792.022348.045358.0995ddlovatoSun Jun 03 10:05:16 +0000 2018I love this https://t.co/e3parnwxsW0.63690.6770.0000.32325
996ddlovatoSun Jun 03 10:04:50 +0000 2018Nah https://t.co/F6ZVHt48MU-0.10270.0000.5830.41724
997ddlovatoSun Jun 03 10:04:05 +0000 2018I did! https://t.co/3XL1vh1Whb0.00000.0000.0001.00023
998ddlovatoSun Jun 03 10:03:46 +0000 2018Lions... duh 😝 https://t.co/lr9j8dLBYl0.00000.0000.0001.00022
999ddlovatoSun Jun 03 10:03:19 +0000 2018Yes!! I love horses https://t.co/YwsW3C9jn40.81680.7890.0000.21121
1000ddlovatoSun Jun 03 10:02:54 +0000 2018Poot is locked up. She’s allergic to sunlight....-0.29600.0000.2160.78420
1001ddlovatoSun Jun 03 10:02:23 +0000 2018I legit can’t remember if I have..... is that ...-0.17790.0000.1750.82519
1002ddlovatoSun Jun 03 10:01:57 +0000 2018Pink 💗 https://t.co/HqvggzqJVH0.17790.3620.0000.63818
1003ddlovatoSun Jun 03 10:01:10 +0000 2018Night in https://t.co/7LiS8tUiJT0.00000.0000.0001.00017
1004ddlovatoSun Jun 03 10:00:59 +0000 2018I haaaaaaate scuba diving https://t.co/PvqTCknndg0.07720.3020.0000.69816
1005ddlovatoSun Jun 03 10:00:19 +0000 2018Batman. He’s my first born so naturally he’s m...0.45880.2140.0000.78615
1006ddlovatoSun Jun 03 09:59:57 +0000 2018I can’t... they’re amazing, non-judgemental, f...0.77170.5280.0000.47214
1007ddlovatoSun Jun 03 09:59:10 +0000 2018I think so 😊 https://t.co/N8EE7pxIy40.76400.5230.0000.47713
1008ddlovatoSun Jun 03 09:58:55 +0000 2018THANK YOU https://t.co/BBiD1Dcj6B0.49950.6180.0000.38212
1009ddlovatoSun Jun 03 09:58:48 +0000 2018I don’t think so https://t.co/9XRWXAJ8Sa0.00000.0000.0001.00011
1010ddlovatoSun Jun 03 09:57:54 +0000 2018Of course boo https://t.co/ig436uB6LW0.00000.0000.0001.00010
1011ddlovatoSun Jun 03 09:57:41 +0000 2018Bora bora 😍 https://t.co/T63fvmFb8n0.45880.3330.0000.6679
1012ddlovatoSun Jun 03 09:57:00 +0000 2018Yes!! I want to go in Dubai!! https://t.co/wr7...0.63310.5080.0000.4928
1013ddlovatoSun Jun 03 09:56:07 +0000 2018Their loyalty 😍 https://t.co/oHnSagHIL80.75790.5650.0000.4357
1014ddlovatoSun Jun 03 09:54:18 +0000 2018That I leak my own pictures/captions from my p...-0.34000.0000.1560.8446
1015ddlovatoSun Jun 03 09:53:30 +0000 2018😏 https://t.co/DCiVBJSCMb0.00000.0000.0001.0005
1016ddlovatoSun Jun 03 09:53:14 +0000 2018The fans and the architecture https://t.co/j6G...0.00000.0000.0001.0004
1017ddlovatoSun Jun 03 09:52:32 +0000 2018😳 https://t.co/NJzxDwGpp60.00000.0000.0001.0003
1018ddlovatoSun Jun 03 09:52:03 +0000 2018Savage https://t.co/ev6ujGzso6-0.45880.0000.7500.2502
1019ddlovatoSun Jun 03 09:51:38 +0000 2018Cereal first https://t.co/G6My87x8BE0.00000.0000.0001.0001
\n", + "

1020 rows × 8 columns

\n", "
" ], "text/plain": [ - " Twitter_Handle First_Name Last_Name Genre \\\n", - "332 @Noahpinion Noah Smith Economists \n", - "359 @BDUTT Barkha Dutt Social_workers \n", - "356 @ProfessorChic Jamie Mitchell Social_workers \n", - "339 @haroldpollack Harold Pollack Economists \n", - "276 @CoryBooker Cory Booker Politicians \n", - "325 @MarkThoma Mark Thoma Economists \n", - "82 @iliza Iliza Shiesinger Comedians \n", - "125 @IGGYAZALEA Iggy Azalea Musicians \n", - "216 @criscyborg Cris Cyborg Sports_celeb \n", - "352 @socworkpodcast Jonathan Singer Social_workers \n", + " Influencers Date \\\n", + "0 ddlovato Fri Jun 29 18:00:02 +0000 2018 \n", + "1 ddlovato Wed Jun 27 15:18:27 +0000 2018 \n", + "2 ddlovato Tue Jun 26 23:43:09 +0000 2018 \n", + "3 ddlovato Tue Jun 26 22:00:18 +0000 2018 \n", + "4 ddlovato Tue Jun 26 15:59:47 +0000 2018 \n", + "5 ddlovato Mon Jun 25 21:34:09 +0000 2018 \n", + "6 ddlovato Mon Jun 25 21:33:34 +0000 2018 \n", + "7 ddlovato Mon Jun 25 21:32:42 +0000 2018 \n", + "8 ddlovato Sun Jun 24 22:27:18 +0000 2018 \n", + "9 ddlovato Thu Jun 21 14:36:08 +0000 2018 \n", + "10 ddlovato Wed Jun 20 18:48:31 +0000 2018 \n", + "11 ddlovato Tue Jun 19 22:00:01 +0000 2018 \n", + "12 ddlovato Tue Jun 19 18:00:08 +0000 2018 \n", + "13 ddlovato Mon Jun 18 20:43:00 +0000 2018 \n", + "14 ddlovato Sat Jun 16 22:32:50 +0000 2018 \n", + "15 ddlovato Fri Jun 15 22:15:03 +0000 2018 \n", + "16 ddlovato Fri Jun 15 21:59:29 +0000 2018 \n", + "17 ddlovato Fri Jun 15 18:03:13 +0000 2018 \n", + "18 ddlovato Fri Jun 15 16:01:00 +0000 2018 \n", + "19 ddlovato Thu Jun 14 23:56:10 +0000 2018 \n", + "20 katyperry Sat Jun 23 01:18:28 +0000 2018 \n", + "21 katyperry Fri Jun 22 19:27:57 +0000 2018 \n", + "22 katyperry Thu Jun 21 02:10:52 +0000 2018 \n", + "23 katyperry Wed Jun 20 21:10:37 +0000 2018 \n", + "24 katyperry Fri Jun 15 19:50:07 +0000 2018 \n", + "25 katyperry Sat Jun 09 23:51:56 +0000 2018 \n", + "26 katyperry Sat Jun 09 14:02:29 +0000 2018 \n", + "27 katyperry Sat Jun 09 04:08:27 +0000 2018 \n", + "28 katyperry Wed Jun 06 17:11:41 +0000 2018 \n", + "29 katyperry Tue Jun 05 03:08:49 +0000 2018 \n", + "... ... ... \n", + "990 ddlovato Sun Jun 03 10:15:23 +0000 2018 \n", + "991 ddlovato Sun Jun 03 10:11:44 +0000 2018 \n", + "992 ddlovato Sun Jun 03 10:09:23 +0000 2018 \n", + "993 ddlovato Sun Jun 03 10:06:59 +0000 2018 \n", + "994 ddlovato Sun Jun 03 10:05:27 +0000 2018 \n", + "995 ddlovato Sun Jun 03 10:05:16 +0000 2018 \n", + "996 ddlovato Sun Jun 03 10:04:50 +0000 2018 \n", + "997 ddlovato Sun Jun 03 10:04:05 +0000 2018 \n", + "998 ddlovato Sun Jun 03 10:03:46 +0000 2018 \n", + "999 ddlovato Sun Jun 03 10:03:19 +0000 2018 \n", + "1000 ddlovato Sun Jun 03 10:02:54 +0000 2018 \n", + "1001 ddlovato Sun Jun 03 10:02:23 +0000 2018 \n", + "1002 ddlovato Sun Jun 03 10:01:57 +0000 2018 \n", + "1003 ddlovato Sun Jun 03 10:01:10 +0000 2018 \n", + "1004 ddlovato Sun Jun 03 10:00:59 +0000 2018 \n", + "1005 ddlovato Sun Jun 03 10:00:19 +0000 2018 \n", + "1006 ddlovato Sun Jun 03 09:59:57 +0000 2018 \n", + "1007 ddlovato Sun Jun 03 09:59:10 +0000 2018 \n", + "1008 ddlovato Sun Jun 03 09:58:55 +0000 2018 \n", + "1009 ddlovato Sun Jun 03 09:58:48 +0000 2018 \n", + "1010 ddlovato Sun Jun 03 09:57:54 +0000 2018 \n", + "1011 ddlovato Sun Jun 03 09:57:41 +0000 2018 \n", + "1012 ddlovato Sun Jun 03 09:57:00 +0000 2018 \n", + "1013 ddlovato Sun Jun 03 09:56:07 +0000 2018 \n", + "1014 ddlovato Sun Jun 03 09:54:18 +0000 2018 \n", + "1015 ddlovato Sun Jun 03 09:53:30 +0000 2018 \n", + "1016 ddlovato Sun Jun 03 09:53:14 +0000 2018 \n", + "1017 ddlovato Sun Jun 03 09:52:32 +0000 2018 \n", + "1018 ddlovato Sun Jun 03 09:52:03 +0000 2018 \n", + "1019 ddlovato Sun Jun 03 09:51:38 +0000 2018 \n", "\n", - " Loc Lang Created On Age Of Account Tweets \\\n", - "332 NA Eng 04/14/2011 2634.0 140584.0 \n", - "359 India Eng 02/02/2009 3435.0 118499.0 \n", - "356 NA Eng 04/04/2011 2644.0 79771.0 \n", - "339 NA Eng 12/25/2009 3109.0 65098.0 \n", - "276 Newark, NJ Eng 08/11/2008 3610.0 61912.0 \n", - "325 NA Eng 10/18/2008 3543.0 60094.0 \n", - "82 Hollywood, CA Eng 02/15/2009 3422.0 49164.0 \n", - "125 California, USA Eng 06/09/2010 2943.0 47727.0 \n", - "216 cris.cyborg.llc@gmail.com Eng 11/29/2009 3135.0 46459.0 \n", - "352 Chicago, IL Eng 09/09/2009 3216.0 45358.0 \n", + " Tweet Text Compound Positive \\\n", + "0 Sister I am slayed. 😍 https://t.co/BwVRX7P3VF 0.4588 0.300 \n", + "1 To my fans, my family, and my supporters, the ... 0.7096 0.191 \n", + "2 #Sober 🖤https://t.co/RArIHOpNNq https://t.co/f... 0.0000 0.000 \n", + "3 🔋💚💪🏼 @Fabletics Nori Outfit #Demi4Fabletics ht... 0.0000 0.000 \n", + "4 I’m celebrating Pride by raising money for GLA... 0.5574 0.238 \n", + "5 RT this to vote for me or tweet \"My #TeenChoic... 0.0000 0.000 \n", + "6 RT this to vote for me or tweet \"My #TeenChoic... 0.0000 0.000 \n", + "7 I got three more Teen Choice Nominations! RT t... 0.0000 0.000 \n", + "8 Tonight I took the stage, a new person with a ... 0.5859 0.211 \n", + "9 My truth... https://t.co/tmDhhBGLNQ\\n#sober ou... 0.0000 0.000 \n", + "10 My heart is broken with what’s going on in the... -0.4767 0.000 \n", + "11 Zaddy issues 💁🏻‍♀️ https://t.co/2Y9ya1eUp5 0.4939 0.286 \n", + "12 Did you hear the acoustic version of Solo with... 0.6369 0.231 \n", + "13 Solo with @cleanbandit is #1 on the UK mid-wee... 0.3802 0.120 \n", + "14 Manchester.. it was an honor to perform for yo... 0.6908 0.206 \n", + "15 Sorry Not Sorry was nominated for #ChoiceSongF... 0.5411 0.173 \n", + "16 Thank you so much for the Teen Choice Nominati... 0.6996 0.201 \n", + "17 .@xtina this ALBUM!!! 😍 Guys it’s sooo good. D... 0.8582 0.372 \n", + "18 Feeling cute in my @Fabletics Stretto II 🌊☀️ h... 0.5423 0.360 \n", + "19 Who else can’t sleep? 0.0000 0.000 \n", + "20 Was so proud to give the gift of #transcendent... 0.8805 0.362 \n", + "21 found my first skin tag today. I think I’m an ... 0.0000 0.000 \n", + "22 Never forget, everyone was once a child. 0.1695 0.250 \n", + "23 My Aussies 🐨 & Kiwis 🥝! For the FINALE of ... 0.0000 0.000 \n", + "24 I 👁 you, @RoarForJess, and I ❤ you, and I’m si... 0.0000 0.000 \n", + "25 Scandinavians have figured it out. 0.0000 0.000 \n", + "26 Oi oi @JackGarratt remember when we locked our... 0.0000 0.000 \n", + "27 WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr http... 0.0000 0.000 \n", + "28 IM SCREAMINGOSBEJRMF$&2@!K https://t.co/Sn... 0.0000 0.000 \n", + "29 CALIFORNIANS! What’s important to you? Is it g... -0.8821 0.072 \n", + "... ... ... ... \n", + "990 Okay guys I gotta go!! I love you all! 0.7891 0.582 \n", + "991 Stop tweeting https://t.co/RZFUOiCJJ2 -0.2960 0.000 \n", + "992 The fact that people in other countries know t... -0.4767 0.000 \n", + "993 The one coming out soon https://t.co/xkMphF44JY 0.0000 0.000 \n", + "994 I DREAMT ABOUT THAT LAST NIGHT https://t.co/9Y... 0.0000 0.000 \n", + "995 I love this https://t.co/e3parnwxsW 0.6369 0.677 \n", + "996 Nah https://t.co/F6ZVHt48MU -0.1027 0.000 \n", + "997 I did! https://t.co/3XL1vh1Whb 0.0000 0.000 \n", + "998 Lions... duh 😝 https://t.co/lr9j8dLBYl 0.0000 0.000 \n", + "999 Yes!! I love horses https://t.co/YwsW3C9jn4 0.8168 0.789 \n", + "1000 Poot is locked up. She’s allergic to sunlight.... -0.2960 0.000 \n", + "1001 I legit can’t remember if I have..... is that ... -0.1779 0.000 \n", + "1002 Pink 💗 https://t.co/HqvggzqJVH 0.1779 0.362 \n", + "1003 Night in https://t.co/7LiS8tUiJT 0.0000 0.000 \n", + "1004 I haaaaaaate scuba diving https://t.co/PvqTCknndg 0.0772 0.302 \n", + "1005 Batman. He’s my first born so naturally he’s m... 0.4588 0.214 \n", + "1006 I can’t... they’re amazing, non-judgemental, f... 0.7717 0.528 \n", + "1007 I think so 😊 https://t.co/N8EE7pxIy4 0.7640 0.523 \n", + "1008 THANK YOU https://t.co/BBiD1Dcj6B 0.4995 0.618 \n", + "1009 I don’t think so https://t.co/9XRWXAJ8Sa 0.0000 0.000 \n", + "1010 Of course boo https://t.co/ig436uB6LW 0.0000 0.000 \n", + "1011 Bora bora 😍 https://t.co/T63fvmFb8n 0.4588 0.333 \n", + "1012 Yes!! I want to go in Dubai!! https://t.co/wr7... 0.6331 0.508 \n", + "1013 Their loyalty 😍 https://t.co/oHnSagHIL8 0.7579 0.565 \n", + "1014 That I leak my own pictures/captions from my p... -0.3400 0.000 \n", + "1015 😏 https://t.co/DCiVBJSCMb 0.0000 0.000 \n", + "1016 The fans and the architecture https://t.co/j6G... 0.0000 0.000 \n", + "1017 😳 https://t.co/NJzxDwGpp6 0.0000 0.000 \n", + "1018 Savage https://t.co/ev6ujGzso6 -0.4588 0.000 \n", + "1019 Cereal first https://t.co/G6My87x8BE 0.0000 0.000 \n", "\n", - " Followers Following Favorites Count Average Tweets \n", - "332 102035.0 811.0 211402.0 140584.0 \n", - "359 6817242.0 1567.0 27847.0 118499.0 \n", - "356 1457.0 572.0 24906.0 79771.0 \n", - "339 20524.0 2426.0 7077.0 65098.0 \n", - "276 4120931.0 93056.0 91.0 61912.0 \n", - "325 44680.0 417.0 5.0 60094.0 \n", - "82 170274.0 468.0 27096.0 49164.0 \n", - "125 8084339.0 6510.0 4224.0 47727.0 \n", - "216 191691.0 2131.0 12392.0 46459.0 \n", - "352 14219.0 792.0 22348.0 45358.0 " + " Negative Neutral Tweets Ago \n", + "0 0.000 0.700 100 \n", + "1 0.000 0.809 99 \n", + "2 0.000 1.000 98 \n", + "3 0.000 1.000 97 \n", + "4 0.098 0.664 96 \n", + "5 0.000 1.000 95 \n", + "6 0.000 1.000 94 \n", + "7 0.000 1.000 93 \n", + "8 0.000 0.789 92 \n", + "9 0.000 1.000 91 \n", + "10 0.205 0.795 90 \n", + "11 0.000 0.714 89 \n", + "12 0.000 0.769 88 \n", + "13 0.000 0.880 87 \n", + "14 0.000 0.794 86 \n", + "15 0.110 0.718 85 \n", + "16 0.000 0.799 84 \n", + "17 0.000 0.628 83 \n", + "18 0.000 0.640 82 \n", + "19 0.000 1.000 81 \n", + "20 0.000 0.638 100 \n", + "21 0.000 1.000 99 \n", + "22 0.000 0.750 98 \n", + "23 0.000 1.000 97 \n", + "24 0.000 1.000 96 \n", + "25 0.000 1.000 95 \n", + "26 0.000 1.000 94 \n", + "27 0.000 1.000 93 \n", + "28 0.000 1.000 92 \n", + "29 0.445 0.483 91 \n", + "... ... ... ... \n", + "990 0.000 0.418 30 \n", + "991 0.524 0.476 29 \n", + "992 0.162 0.838 28 \n", + "993 0.000 1.000 27 \n", + "994 0.000 1.000 26 \n", + "995 0.000 0.323 25 \n", + "996 0.583 0.417 24 \n", + "997 0.000 1.000 23 \n", + "998 0.000 1.000 22 \n", + "999 0.000 0.211 21 \n", + "1000 0.216 0.784 20 \n", + "1001 0.175 0.825 19 \n", + "1002 0.000 0.638 18 \n", + "1003 0.000 1.000 17 \n", + "1004 0.000 0.698 16 \n", + "1005 0.000 0.786 15 \n", + "1006 0.000 0.472 14 \n", + "1007 0.000 0.477 13 \n", + "1008 0.000 0.382 12 \n", + "1009 0.000 1.000 11 \n", + "1010 0.000 1.000 10 \n", + "1011 0.000 0.667 9 \n", + "1012 0.000 0.492 8 \n", + "1013 0.000 0.435 7 \n", + "1014 0.156 0.844 6 \n", + "1015 0.000 1.000 5 \n", + "1016 0.000 1.000 4 \n", + "1017 0.000 1.000 3 \n", + "1018 0.750 0.250 2 \n", + "1019 0.000 1.000 1 \n", + "\n", + "[1020 rows x 8 columns]" ] }, - "execution_count": 12, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# People who are top ten Influencer who tweet more\n", - "top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(10)\n", - "top_ten_twitters" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Top ten Influencer who who have more Followers\n", - "top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(10)\n", - "top_ten_influencer" + "# Create dataframe from the Dictionery item of the Sentiment Array\n", + "Sentiment_DF = pd.DataFrame.from_dict(Sentiment_array)\n", + "\n", + "# Remove the '@' from the 'influence' column in the data frame\n", + "Sentiment_DF[\"Influencers\"] = Sentiment_DF[\"Influencers\"].map(lambda x: x.lstrip('@'))\n", + "\n", + "# Re_arrang the columns and save into a CSV file\n", + "Sentiment_DF = Sentiment_DF[[\"Influencers\", \"Date\", \"Tweet Text\"\n", + " , \"Compound\", \"Positive\", \"Negative\"\n", + " , \"Neutral\", \"Tweets Ago\"\n", + " ]]\n", + "\n", + "# Store output in a .CSV File\n", + "Sentiment_DF.to_csv(\"OutPut/influencer_Sentiment_tweets_Analysis.csv\")\n", + "\n", + "Sentiment_DF" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "332 Noahpinion\n", - "Name: Twitter_Handle, dtype: object" + "array(['ddlovato'], dtype=object)" ] }, - "execution_count": 14, + "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Still Working test cell\n", - "# to find the handle of followers of the top most \n", - "# active Influencer so that we can send the tweet through a bot.\n", - "# top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))\n", - "# import time\n", - "# ids = []\n", - "# for page in tweepy.Cursor(api.followers_ids, top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))).pages():\n", - "# ids.extend(page)\n", - "# time.sleep(60)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# 2. Sentiment Analysis of the Influencers: " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "###\n", - "# Influencers = influencer_data_read\n", - "# s = Influencers.iloc[:,0]\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# # Extract the first 100 tweets of the Influencers\n", - "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", - "Influencers = []\n", - "Influencers = top_ten_twitters\n", - "# Influencers = influencer_data_read\n", - "# Influencers_th = Influencers.iloc[:,0]\n", - "# # Array to hold the sentiments\n", - "# Tweet_array = []\n", - "Sentiment_array = []\n", - "\n", - "# for user in Influencers[0]:\n", - "# for user in Influencers_th:\n", - "for user in Influencers:\n", - " # Set the tweet count to 100\n", - " tweet_count = 100\n", - " print(\"Extracting tweets from %s\"%user)\n", - " \n", - " # Extract tweets up to 5 pages\n", - " for x in range(1):\n", - " influencer_tweets = api.user_timeline(user,page = 1) \n", - " \n", - "# # For each tweet in a bunch of public tweets\n", - "for tweet in influencer_tweets:\n", - " \n", - " #Calculate the compound, positive, negative and neutral values of each tweet\n", - " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", - " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", - " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", - " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", - " \n", - " # Save the Tweets in an array as a dictionery item \n", - " Sentiment_array.append({\"Influencers\" : user,\n", - " \"Tweet Text\" : tweet[\"text\"],\n", - " \"Compound\" : compound,\n", - " \"Positive\" : pos,\n", - " \"Negative\" : neg,\n", - " \"Neutral\" : neu,\n", - " \"Date\" : tweet[\"created_at\"],\n", - " \"Tweets Ago\" : tweet_count\n", - " })\n", - " \n", - " #Decrease count of tweet by 1 in the reverse order\n", - " tweet_count -= 1\n", - "\n", - "print(\"-----------End of Extraction of Tweets !!!-----------\")\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# # Create dataframe from the Dictionery item of the Sentiment Array\n", - "# Sentiment_DF = pd.DataFrame.from_dict(Sentiment_array)\n", - "\n", - "# # Remove the '@' from the 'influence' column in the data frame\n", - "# Sentiment_DF[\"Influencers\"] = Sentiment_DF[\"Influencers\"].map(lambda x: x.lstrip('@'))\n", - "\n", - "# # Re_arrang the columns and save into a CSV file\n", - "# Sentiment_DF = Sentiment_DF[[\"Influencers\", \"Date\", \"Tweet Text\"\n", - "# , \"Compound\", \"Positive\", \"Negative\"\n", - "# , \"Neutral\", \"Tweets Ago\"\n", - "# ]]\n", - "\n", - "# # Store output in a .CSV File\n", - "# Sentiment_DF.to_csv(\"influencer_tweets_Analysis.csv\")\n", - "\n", - "# # Sentiment_DF" + "Influencers_array = Sentiment_DF[\"Influencers\"].unique()\n", + "Influencers_array" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InfluencersCompound
0ArianaGrande0.198587
1BarackObama0.348454
2BritneySpears0.375314
3Cristiano0.194731
4TheEllenShow0.382704
5ddlovato0.265948
6jtimberlake0.228474
7katyperry0.141380
8ladygaga0.371250
9taylorswift130.226480
\n", + "
" + ], + "text/plain": [ + " Influencers Compound\n", + "0 ArianaGrande 0.198587\n", + "1 BarackObama 0.348454\n", + "2 BritneySpears 0.375314\n", + "3 Cristiano 0.194731\n", + "4 TheEllenShow 0.382704\n", + "5 ddlovato 0.265948\n", + "6 jtimberlake 0.228474\n", + "7 katyperry 0.141380\n", + "8 ladygaga 0.371250\n", + "9 taylorswift13 0.226480" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# # Calculate the mean for each Influencers & store into a dataframe\n", - "# Influencers_Comp_Mean = Sentiment_DF.groupby(\"Influencers\").mean()[\"Compound\"].to_frame()\n", + "# Calculate the mean for each Influencers & store into a dataframe\n", + "Influencers_Comp_Mean = Sentiment_DF.groupby(\"Influencers\").mean()[\"Compound\"].to_frame()\n", "\n", - "# #Reset the index \n", - "# Influencers_Comp_Mean.reset_index(inplace=True)\n", + "#Reset the index \n", + "Influencers_Comp_Mean.reset_index(inplace=True)\n", "\n", - "# Influencers_Comp_Mean" + "Influencers_Comp_Mean" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAaQAAAFjCAYAAAByoX85AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzs3XmYFNXZ9/Hvj11E4oaKDAgIKouAOuC+yyJG1LghGtdI9JXkUaPEPCSoRJ+gGE0MLnELGsFRTNRREcUNSFRgVAQhKpuyGUVEEVCW4X7/ONVDT0/PTMNMVzdwf66rr5k+td1VXd2nzqlT58jMcM4553KtTq4DcM4558AzJOecc3nCMyTnnHN5wTMk55xzecEzJOecc3nBMyTnnHN5wTMk55xzeSEvMiRJp0uaJOlLSd9L+kzSs5L6ZHGb3STdJGnXNNNM0k3Z2nZNSbpa0k9yHUcmomNsGbwu3sL1N4qWvyEp7SxJv0wzb2EUT9Ma7FJWSLpC0jxJ6yX9t4r5iiTN3cJt1JN0j6T/StoYreuA6Pj13/Lotx+SHpQ0NiWtsaQ/Rcd1jaR/SzqikuVbSXpM0heSfpA0X9LNlcz7qKTno/8vkfSWpK8krZW0QNL9kvZOs1xXSa9JWh3N/6CknSvZRuvo8z8kev9rSS9G8ZX7XqUsV1/S9ZJmR9tZKulpSR1T5vurpH+kW0daZpbTF/BLwICHgVOBE4DLgWeB27O43Yuj7bZLM+0woCDXx6aK2D8FHs91HBnGWhAdz8Tr99FxPyslvdkWrl/R8nsnpRUBc9PMe0W07bz6bIHWQCnwIHAUcHAV86bdtwy3c2G0/4OAw4F2wAFRWv9cH4d8fwEdgPXAgSnp/wCWA5cAJwHPA6uBTinztQe+AN6Izv9jo9+hG9Nsqy7wFXBZ9P464CbgtGi5K4GlwAKgcdJyrYCvgdeB3sD50XxvAkqznWuAhUnvFwDvAA9E58UNlRyLO4ENUUwnAOcBs6P92yslnnXAERkd4zz4kBcCz1QyrU4Wt1tphpTvr60pQ8rFcY8zQwIa1MI6ekdxVfulrWGG9AdgXUradpMhAQ1ruPyDwOSUtEOj43de8jkR/bA/lTLvm8C/gHoZbOt4wkXKHlXMc1q07VOS0u6LMrKdktJ6RfP1TbOOicBfkt7Xif42qSZDWg48kpLWLVrmopT0YuCfGR3jPDhJVgH3ZThvG2A0sAxYC0wHzkiZ56booLQHXozW/xkwNOlgJ34UU1+to+kG3JRmnQcALxOufhYCl0TTfwp8FG3rDWDfNLFfDnwA/BCdMA8Du6bMY8AthFLjAuC76ITplDTPp2niHhVN2w94Bvgy2s5CYGx1XwCgOfBYFNdaYAZwQco8iWN2WPQZrCRced0NNNqMzzuxnnQl07nAyKT3ewAbSfkBBt4FHov+b5T8xSH8YKcen4/YlBmlvvaKlqsP/A74JDoGi4HbSMpw2PTj/TPgLuDzKL4dqtjfjoQr5m+B74F/AycmTU8X7/1VrK9chpS0/78FfkU4178DXgP2T5rvv2m20580GRLhCnl8mm3/NzU2QimrKDp3fog+m1NS5hlOuJpuz6bvzwLgN6RctQN7AX+Njv9awjk8CqibNM8hwAvAN9ExnQQcnu44AcdE+/M9cFvSOfhBFMe30f+XVnPe7hgd1ytT0m8F1pByYRKdO6sTcUfngQFnZ/g9+TMpmV+aeY6K1tkrKW0J8HAln91fU9J2iz6XE9PMX12G9B3wp5S01tEyl6SkDyCULPesdr8z/SHJ1otQtFwDXA/sV8V8LQk/tB8CFxCuKh8h/CD0S5rvpuigfEj4gp4UfbhlBwpoRvqqo4bR9MoypJmEzKIn4YffgP8D3gJOB84m/EhPSfOFXA/8kXC1ckl04kyh/BfNCBnOy0C/KLYFhC9WvWiegwg/hOOT4t43mvYJMBU4k1CsHwA8nvplSfNF+4SQyQ8ETiZkOAYMTJrv4ihtDjAsOq6/I1zF3bwZn3diPekypAeA2Unvz43ODQNaRWm7RNtMfJapGVI7YAKwKOn4dCVkbrdF856aNK1+tNwzhAuK/4327WpCpjs6KZ7Ej/cSQkZ/CnBGYh1p9mcfYEV0fAdEn+lrhB+BE5Li/VW03suimNpUcfwqy5A+JVyAnRodt0WEKpTERdjB0ee6Nmnfd6MGGRLQlnClPD3av97A36PPp3fK+V9K+P5cHR3fe6lYstg92o8vCd+zE6L1jiU6h6O4vydc+J0ZfQYvRWkHphynbwgZ9P8DjgO6AycSfjPuiP7vTai2uraa8zZRiu2ckv4s8EGa+RPVo4nv5sDo/elR7OsIVWuPADunWX4B8Ks06XWjz7wb8HZ07BPn8M7RNq6p5Hc2tXR3SRRDhQtWqs+Qbidk5qcAOxHO4xeiuJumzFsQrWtAtb8Pmf6QZOtFuKqfwaartq+AJ0jK9aP5Hib8aO6Wkj4BmJ70/ibS59IzgVeS3l9M5T+MlWVIFyal7UL4YVme/AGw6Z7YPtH71oQv49CUbRyZOEFTtjuHpB84QqZkJFXnkKbKjvBlNpIy5wyP/6BoueNS0l8l/DAkrvASx+vmlPleAD7ZjO1VddzPo3yp5X7gKcJV8kVR2umUL82Wy5CitM2qsiNcYBhwTkr6ZVF6h+h94sf7rQz3dSQhA2iVlFaf8KV9Kyntx9F6D8tgnZVlSLMof3FzQZR+cFLaHcAPKeurSYY0mnAB9qOU+SYB7yS9H07FzEeEjLo4Ke12wneqUxX7/29CiaZeUlp9YB5QlHKcjKSMMUr/LbB0c74j0XI3EjKRuinpk4A308yf+Ey7R+9vit5/C/yJUCV3JSHT/DdJJUXCRWdZZpay3lVs+q18i6QqPcIFggEXp1nuaWBWStpzwN8r2d/qMiQRLkw3JsUzi+h3L838XwJ3V3ecc97Kzsw+IXwAxxKKv9MJV50vS/pt0qx9gHHAt1FroXqS6hFKE13TtJx6MeX9h4QbbDXxUlLcKwgH+R0zW5k0z0fR35bR356E1oyjU+KeQrgCPyZlGxPMbH3S+5nR3+piXw7MB4ZLulxS+wz36RhgiZm9mZL+OKEk2TElPfW4zswgtky9Ef09Pvp7AuHK7o3o/0TaAjP7tJa2CeHcWg08l/IZvRJNPzpl/mczXO8xhKvShYmE6LN9EughqVEN4072spmVJr3P9LypiT5EN/DTHLfuafav7Nyx8Cs1KyW+XsC/zGxWuo1F3/HDCcePpO0Z4TxJ/S6tMbOXU9KmAs0ljZLUdzNaXO4NfJ1yjCH8MFu6cFPeJ35rXzazq83sDTO7D/gf4AhCCS7hdOBDM5uXZr1HEy5mBxKq2l+R1CRlm9XGI6kx4bcp03M51dWEhhY3RrGfS6gFekXSHmnm/4pwDKuU8wwJwMxKzWySmf3WzE4i5PQzgRsl7RLNtgehGLw+5TUimr5bymq/Tnm/lnA1WRMrUt6vqySNpG0lPpy5VIy9KZnFnby+tKIveE+ghHDz+pOoSemVVS0H7EqoAkz136Tp1cXXsJptZMTM/gv8BzheUgvCPYc3olcikzqeTRlXbdmDUHX5A+U/n0RGkvoZpTte6VR1bOsCP9rsSCu3RefNlpJUl7B/A6l4Xv+e8NuyS9IipSkXbokYk+PbjXDvqDLNCD+st6bZ5s+o+DlVaD5vZq8QSuL7Em62L5f0sqROVWyXKM61adK/puJ3BDbte+JzWR79nZAyX+Ki56CktNOpJKMws/fN7C0ze5BQvd6VsO/J26gsnuRzpDfhWI5Pt52qSNqLUP19q5n93swmmtlThAuKVoQq0FTfAztUt+56mxtMHMxsqaSHCPd+2hOuapYDkwkHIp2lMYW3uRInSS8qZl7J02vMzOYDF0oS4UQdBNwr6VMze6mSxb4G9k+Tvldtx5ehNwhflsmEqpWPJX0P/E3S4UAnKj8HttRywk3aEyqZviTlfbor0HS+ZtNxTLYXoRr3mwzXE7cfCC3FykiqQ7hHAYSLSEnfEko9d1Wynq82c7tfAS2qmJ74Qf0joUouVernkvZzMrMioEjSToTP/HbCfrSuYtvLKZ/BJswCekpqYGbrktI7Eu5/fpo0X7qYEiWXjRCeCwK6AJdWEUtiPz6StJpw/wYz+0bS54TvSKqOhCq6hNOBV81sdXXbSeMAQjXptJR4vpT0KaF5fKpdCbVUVcp5CUlSy0omHRD9TVzljCd8ULPMrCTNK93VS1US81eba9fQBMLJ1qqSuBdswTrXUkXcFkwHro2SOlexrolAgaQjU9IHEKok/7MF8dXEG4Sr14sI1TBEVV7zCFfeovoSUmXHp7LPfDzhxmzDSj6jTEtEqSYCRyc/vBhVMZ1DaPiyuedsXD4DDohKQQknUbEkPJ5w4TOzkuO2ns3zCnCUpHQ/aIlq8imE34F302zv3c3ZmJl9Z2bPEe5P71NN9d1HwE6Sdk9JLyacT2ckEiQ1IDRwGpdUxTeJkKGmPuzfO/qb+HE/A1iUyb5ED7PuSPhuJMdzWlI1HpJOAvaMpiVKt6ew5dV1id/kHinx7EHI1JekpDckVNd9XN2K86GE9KGkNwitnBYQqrH6Em5AP5VU/z6UUFKaJGkk4cpjF8KPbVszq/aKIsXs6O9Vkh4lFPtnpFzl1JiZzZN0GzBS0v6EH6kfCPeYegIPmdnmVkHNJvzQ/ZhwcnxFOG5/JtSvzyVUCV1MuEn8ehXrGkWox/6npCGEKpPzo9h+nqbOPNveIFxFnkhoVJCc/jNCA4rUEkuq2YSS4mWEBjNrovsSic/8F5LGEI7NdDMbL+mfhHtIdxKqPSE8ZnAK8Asz+2wL9uUOQuOC16Kn8VcTGr20YlM1Sz4qIlSPPyRpNOEK/JeE+JP9LyGDeFPSvYQqzl0IGcbeZnbFZm73dsK9iDck3UIoVexB+JG+MPpuXk04n8dJGkU4/5sBhcB6M/tdVRuQNJzwXZlIqE5tRWiFl3ovONWk6G8Pwr1sAMzsHUnPAfdI2oHw/fkF4f7OsKT51kn6X+B+SX8hZA4HEB7zeNnM/h3NejrlSzKJuKcQPpePCbcFuhLu4XwK/C1p1uGE5vzPRb87uxNua0xOivsYwuf0fJrtHEr4bUpUpXaWdFb0//NmtjYqmb0KDIkyt38RPoMbCBeMf01ZbTdCiXsS1amu1UO2X4SMp5hwVfYD4aR/HxhMxbb9BcBDhBx4HeGEmkDSMzNsas1SL2XZUcCnKWk3RusqpXzLrcpa2aWu81MqtnY7Lpr3pJT0nxJaL60mtJT5D6EVVkHSPAbckrJca1JazhBO5MlsahI9ivDFfZTQcmkN4WpsIimtjCr5DJoTmutm8hxSu5T0m4huYWX4eaddT8o8HyR/HlFaogVe6nMw6VrZNSU0Ff4mmvZR0rRbCdW7ic880aKvLqH59czoPPwmOg+HA02SjrulHptq9rcT4Yu/klCP/laac6M2Wtn9NmW+dK3nMmplF6X/gnDl/X10rnUl/XNI+xB+EJcSvpNLCQ2Nkrc7HNhQyb58lJLWnFBi+S+bnkN6hPItCA+MPt/E84iLCBe0vSo7TknppxN+M5LX/wCZPCMTGlxVeGaSUEq5m9BLQeIzPqqSdVxGuDBKHKu7iHpaoOrngv5CyKC/i16zCPeKd0sz70FsepxmOeE3c5ek6ZU+40T65+ISr+QeGJoANxN+x9ZE+1JMml5GCDUbn5FBRweKFnDOOVcFSVcQLmj2tixUtyr053gXoRutDbW9/qTtLCA8gP7HbG0jaVt1CI+yPGJmt1Y7v2dIzjlXveje0GxCDwUjcx3P1kDSuYTSYzsz+666+XPeqME557YGFu5hXcymRztc9eoTqrirzYzAS0jOOefyhJeQnHPO5YV8aPadFbvvvru1bt0612E459xW5d133/3KzJrlYtvbbIbUunVrSkpKqp/ROedcGUlb8sxdrfAqO+ecc3nBMyTnnHN5wTMk55xzecEzJOecc3nBMyTnnHN5wTMk55xzecEzJOecc3nBMyTnnHN5wTMk55xzecEzJOecc3kh1gxJUh9JH0uaK+mGKuY7S5JJKozet5b0vaTp0ev++KJ2zjkXh9j6sovGXr8H6EkYd36apGIzm50y307AL4EpKauYZ2bdYgnWOedc7OIsIfUgjHE/Pxroqgg4Lc18vwduB36IMTbnnHM5FmeG1AJYlPR+cZRWRtJBQEszeyHN8m0kvS9poqSjsxinc865HIhz+AmlSSsbrlZSHeAuwhDBqT4HWpnZckmHAM9K6mRmK8ttQBoIDARo1apVbcXtnHMuBnGWkBYDLZPeFwBLk97vBHQG3pT0KXAYUCyp0MzWmtlyADN7F5gH7Je6ATN7wMwKzaywWbOcjC/lnHNuC8WZIU0D2ktqI6kB0B8oTkw0s2/NbHcza21mrYF3gH5mViKpWdQoAkltgfbA/Bhjd845l2WxVdmZ2QZJg4CXgbrAI2Y2S9IwoMTMiqtY/BhgmKQNQClwhZl9nf2onXPOxUVmVv1cW6HCwkLzIcydc27zSHrXzApzsW3vqcE551xe8AzJOedcXvAMyTnnXF7wDMk551xe8AzJbffGjx/P/vvvT7t27Rg+fHiF6ffffz8HHngg3bp146ijjmL27ND94vr167nooos48MAD6dChA3/4wx8A+OGHH+jRowddu3alU6dO3HjjjbHuj3NbLTPbJl+HHHKIOVedDRs2WNu2bW3evHm2du1a69Kli82aNavcPN9++23Z/88995z17t3bzMxGjx5t5557rpmZrV692vbZZx9bsGCBbdy40b777jszM1u3bp316NHD3n777Zj2yLmaITyGk5PfbS8hue3a1KlTadeuHW3btqVBgwb079+f5557rtw8TZs2Lft/9erVSKEXLEmsXr2aDRs28P3339OgQQOaNm2KJJo0aQKEUtT69evLlnHOVc4zpO3UllZTjR49mm7dupW96tSpw/Tp0wE47rjj2H///cumffnll7Hu05ZYsmQJLVtu6tGqoKCAJUuWVJjvnnvuYd9992Xw4MHcfffdAJx11lnsuOOONG/enFatWnHdddex6667AlBaWkq3bt3YY4896NmzJ4ceemg8O+Tc1ixXRbNsv7zKrnI1qaZKNmPGDGvTpk3Z+2OPPdamTZuWvcCz4KmnnrLLLrus7P1jjz1mgwYNqnT+0aNH24UXXmhmZv/6179swIABtm7dOvviiy9sv/32s3nz5pWbf8WKFXbcccfZzJkzs7MDztUyvMrOxakm1VTJnnjiCc4777ysx5tNBQUFLFq0aVSUxYsXs/fee1c6f//+/Xn22WcBGDNmDH369KF+/frsscceHHnkkaT2DrLzzjtz3HHHMX78+OzsgMuKbNQgDBkyhJYtW5ZV57o0cpUTZvvlJaTKjR07tkKp4Kqrrqow38iRI61t27ZWUFBgn3zySYXpbdu2LXflf+yxx1rnzp2ta9euNmzYMNu4cWN2dqAWrV+/3tq0aWPz588vKy1++OGH5eZJ3vfi4mJLnFvDhw+3iy++2DZu3GirVq2yDh062AcffGBffvmlrVixwszM1qxZY0cddZQ9//zz8e2Uq5Fs1SC8/fbbtnTpUttxxx2zF3wtwEtILk7hnCsvXQnoqquuYt68edx2223ccsst5aZNmTKFxo0b07lz57K00aNHM3PmTCZPnszkyZP5+9//XvvB17J69eoxcuRIevfuTYcOHTjnnHPo1KkTQ4cOpbg49Pc7cuRIOnXqRLdu3bjzzjt59NFHgXB8Vq1aRefOnenevTuXXHIJXbp04fPPP+f444+nS5cudO/enZ49e/LjH/84l7vpNkO2ahAOO+wwmjdvnr3AtwFxDtDn8sSWVFNdeeWV5dKKiooqVNe1aBEGAN5pp50YMGAAU6dO5cILL6zFyLOjb9++9O3bt1zasGHDyv7/85//nHa5Jk2aMHbs2ArpXbp04f3336/dIF1s0jV0mTJlSoX57rnnHu68807WrVvH66+/XmH6k08+WSEjc1XzEtJ2qHv37syZM4cFCxawbt06ioqK6NevX7l55syZU/b/iy++SPv27cveb9y4kbFjx9K/f/+ytA0bNvDVV18BoanzCy+8UK705NzWIls1CK56XkLaDiVXU5WWlnLppZeWVVMVFhbSr18/Ro4cyauvvkr9+vXZZZddyqqpACZNmkRBQQFt27YtS1u7di29e/dm/fr1lJaWctJJJ3H55ZfnYvecq5Fs1SC46vl4SM45l2TDhg3st99+vPbaa7Ro0YLu3bszZswYOnXqVDbPnDlzymoNnn/+eW6++eayFpYbN26kVatWTJo0qdxFW0KTJk1YtWpVPDuzBbab8ZAk9ZH0saS5km6oYr6zJJmkwqS030TLfSypdzwRO+e2NzVp6ALpaxAABg8eTEFBAWvWrKGgoICbbropzt3aKsRWQpJUF/gE6AksBqYB55nZ7JT5dgJeBBoAg8ysRFJH4AmgB7A38Cqwn5mVVrY9LyE559zm215KSD2AuWY238zWAUXAaWnm+z1wO/BDUtppQJGZrTWzBcDcaH3OOee2EXFmSC2ARUnvF0dpZSQdBLQ0sxc2d1nnnHNbtzgzpHTdHZfVF0qqA9wF/Gpzl01ax0BJJZJKli1btsWBOueci1+cGdJioGXS+wJgadL7nYDOwJuSPgUOA4qjhg3VLQuAmT1gZoVmVtisWbNaDr92bGkfWQkLFy6kSZMm3HHHHWVpd911F506daJz586cd955/PDDD6mrdc65vBdnhjQNaC+pjaQGQH+gODHRzL41s93NrLWZtQbeAfqZWUk0X39JDSW1AdoDU2OMvVaUlpZy1VVX8dJLLzF79myeeOKJChnOgAEDmDlzJtOnT2fw4MFce+215aZfc801nHzyyWXvlyxZwt13301JSQkffvghpaWlFBUVxbI/zjlXm2J7MNbMNkgaBLwM1AUeMbNZkoYROvMrrmLZWZKeAmYDG4Crqmphl6+S+8gCyvrI6tixY9k8VfWR9eyzz9K2bVt23HHHcutNDBBXv3591qxZU+VDfM45l69i7anBzMYB41LShlYy73Ep728Fbs1acDGoSR9Zq1ev5rbbbmPChAnlqutatGjBddddR6tWrdhhhx3o1asXvXr1yv7OOOdcLfO+7GJUkz6ybrzxRq655poKY6msWLGC5557jgULFrB06VJWr17N448/np0dcM65LMqohCSpjpltzHYw27qa9JE1ZcoUnn76aQYPHsw333xDnTp1aNSoEXvuuSdt2rQh0YjjJz/5CW+99RYXXHBBdnfGOedqWbUZkqR6wA+SupnZhzHEtM1K7mW7RYsWFBUVMWbMmHLzJPeRldzL9uTJk8vmuemmm2jSpAmDBg1iypQpvPPOO6xZs4YddtiB1157jcLCnDxk7ZxzNVJthhQ1RlhIaIjgaqCmvWync+ihh3LWWWdx8MEHU69ePQ466CAGDhwY0x5tfVq32ofPFi3MdRjs07IVny78LNdhOJdXMurLTtLlQD/gAjP7NutR1QLvy86lIwl7c1quw0DHdU97T9G5XMtlX3aZtrIbCBwAfC5pAbA6eaKZeb9yzjnnaiTTDOnV6OWcc85lRUYZkpn9JtuBuOxpvddefPbFF7kOg3323JNP//vfXIfhnMtTGT8YK6k+0BvYF/ibma2U1BL41sxWZitAV3OfffFFxZ5oc0B5kCk65/JXps8htQYmAHsCjYHngZWEnrl3AH6enfCccy77Wrfci88W5/6CaZ+CPfl00fZbi5BpCenPwL+By4Gvk9KfAR6u7aCccy5Ony3+Ahud6yhA5+c+U8ylTDOkI4EjzWx9Slc3nxGGFHfOOedqJNO+7OqS/sHYAuC72gvHOefc9irTDGkC8Iuk9yZpR+BGYHytR+Wcc267k2mV3XWEkVxnAI2Ax4D9CKWjn2YpNuecc9uRTJ9DWiipCyHzOYRQsnoSeNTMvMrOOedcjWXa7LsH8K6Z3ZeSXldSDzPLaDhxSX0ILfbqAg+Z2fCU6VcAVwGlwCpgoJnNjpqd/wf4OJr1HTO7IpNtOuec2zpkWmX3NtAc+DIlfedoWrU9gUuqC9wD9AQWA9MkFZvZ7KTZxpjZ/dH8/YA7gT7RtHlm1i3DeJ1zzm1lMm3UIEj7sP8uwJoM19EDmGtm881sHVAEnJY8Q0qPDztWsk3nnHPboCpLSJKeiv414CFJa5Mm1wW6Au9kuK0WwKKk94uBQ9Ns8yrgWqABcELSpDaS3if0EPFbM5ucZtmBhJ7JadWqVYZhOeecywfVlZBKo5eAjUnvE/d4RpN5KzulSatQAjKze8xsX+DXwG+j5M+BVmZ2ECGzGiOpaZplHzCzQjMrTAzpnWt7td4LSTl9Oefc1qDKEpKZnQcg6VPg92aWafVcOouBlknvC4ClVcxfBNwXxbEWWBv9/66keYRm53k/At8Xn32R+4pHz5Occ1uBTO8hdQXqpyZK2knSuAzXMQ1oL6mNpAZAf6A4ZX3tk96eAsyJ0ptFjSKQ1BZoD8zPcLvOOee2Apm2susNNEyT3ojQaq5aZrZB0iDgZcL9p0fMbJakYUCJmRUDgySdBKwHVgAXRYsfAwyTtIFQXXiFmX1dcSvOOee2VtU1auiY+BfYT9LuSZPrEppkV1XtVo6ZjQPGpaQNTfr/fypZ7h/APzLdjnPOua1PdSWkDwl3QAyYmDJNwDrg6izE5ZxzbjtTXYbUgZDxzAaOBr5KmrYO+NzMfshSbM4557Yj1bWy+xhA0g5RSzfnnHMuKyrNkCT1BSaY2XrgxKqeZ4nuDTnnnHNbrKoS0gvAXoT+616oYj4jg77snHPOuapUlSElV9PtEEcwzjnntl+VZkjJ94z8/pFzzrlsy3Q8pBnAG8CbwER/KNU551xty7TroAcJvXX/FfhS0geS/izpDEm7Zi8855xz24tMhzD/C/AXAEmdgeMIQ0M8SXhOqUI/d84559zmyLQvOwAkdWVTZnQMsJxQjeecc87VSEZVdpL+Iekr4CXgsOjv4WbWPDFEhXNuy40fP57999+fdu3aMXz48ArT77zzTjp27EiXLl048cQT+eyzz8qmLVxNZZvqAAAgAElEQVS4kF69etGhQwc6duzIp59+CoCZMWTIEPbbbz86dOjA3XffHdfuOLdFMi0hnQZ8DTxBaNwwKWW4cefcFiotLeWqq65iwoQJFBQU0L17d/r160fHjh3L5jnooIMoKSmhcePG3HfffQwePJgnn3wSgAsvvJAhQ4bQs2dPVq1aRZ064Tpz1KhRLFq0iI8++og6derw5Zdf5mT/nMtUpo0adgUuJTwEexOhYcM0SbdHPTo457bQ1KlTadeuHW3btqVBgwb079+f5557rtw8xx9/PI0bNwbgsMMOY/HixQDMnj2bDRs20LNnGAWmSZMmZfPdd999DB06tCyD2mOPPeLaJee2SEYZkpmtNLMXzOw6MysEOhJ6Ar8GeD6bATq3rVuyZAktW24aTLmgoIAlS5ZUOv/DDz/MySefDMAnn3zCzjvvzE9+8hMOOuggrr/+ekpLSwGYN28eTz75JIWFhZx88snMmTMnuzviXA1leg9pZ0n9JN0l6X3gE6Af8CJwbaYbk9RH0seS5kq6Ic30KyTNlDRd0r+SxmNC0m+i5T6W1DvTbTqX78wqjnFfWd+Rjz/+OCUlJVx//fUAbNiwgcmTJ3PHHXcwbdo05s+fz6hRowBYu3YtjRo1oqSkhMsvv5xLL700a/vgXG3ItMruK+ARoA3wKFAI7G5mp5vZnzNZQTQE+T3AyYQS1nnJGU5kjJkdaGbdgNuBO6NlOxKGPO9EGBTw3sSQ5s5t7QoKCli0aFHZ+8WLF7P33ntXmO/VV1/l1ltvpbi4mIYNG5Yte9BBB9G2bVvq1avH6aefznvvvVc27cwzzwTgjDPOYMaMGTHsjXNbrsoMSVIrSXUIGVCzKAP6k5lNt3SXdVXrAcw1s/lmtg4oIjSWKJPSUGJHwj0rovmKzGytmS0A5kbrc26r1717d+bMmcOCBQtYt24dRUVF9OvXr9w877//Pj//+c8pLi4udy+oe/furFixgmXLlgHw+uuvlzWGOP3003n99dcBmDhxIvvtt19Me+Tclqmuld0CoLmZTa+FbbUAFiW9XwwcmjqTpKsI1YANCM87JZZ9J2XZFrUQk3M5V69ePUaOHEnv3r0pLS3l0ksvpVOnTgwdOpTCwkL69evH9ddfz6pVqzj77LMBaNWqFcXFxdStW5c77riDE088ETPjkEMO4fLLLwfghhtu4Pzzz+euu+6iSZMmPPTQQ7ncTeeqpaoKOpI2AnuZWY3bi0o6G+htZj+L3v8U6GFmv6hk/gHR/BdJugd428wej6Y9DIwzs3+kLDMQGAjQqlWrQ5Kf1cgVSZvKeTkLIvchQOjSY/ML1rUcg4S9OS2nMQDouO45PxZuE0nY6FxHATo/L74j70aN12KX6T2k2rAYaJn0vgBYWsX8RcDpm7OsmT1gZoVmVtisWbMahuuccy5OmTwYe52kVVXNYGbDMljPNKC9pDbAEkIjhQHJM0hqb2aJtqmnAIn/i4Exku4E9gbaA1Mz2KZzzrmtRCYZ0qnAhiqmG1BthmRmGyQNAl4mjDD7iJnNkjQMKDGzYmCQpJOA9cAK4KJo2VmSngJmR7FcZWalGcTunHNuK5FJhnRsbdxDAjCzccC4lLShSf//TxXL3grcWhtxOOecyz/V3UPyu67OOediUV2GlP5xceecc66WVZch3QxU2aDBOeecqw1V3kMys5vjCsQ559z2Lc7nkJxzzrlKeYbknHMuL3iG5JwDtnwY9enTp3P44YfTqVMnunTpUjaSLcBrr73GwQcfTLdu3TjqqKOYO3dubPvjtj6eITnnyoZRf+mll5g9ezZPPPEEs2fPLjdPYhj1GTNmcNZZZzF48GAAGjduzGOPPcasWbMYP348V199Nd988w0AV155JaNHj2b69OkMGDCAW265JfZ925pl4yLBzBgyZAj77bcfHTp04O67745tf6qTyYOxSGoE/A9wIrAHKRmZmXWp/dCcc3FJHkYdKBtGPTGUBYRh1BMOO+wwHn/8cYByw1rsvffe7LHHHixbtoydd94ZSaxcGUaV+fbbb9OO8+TSS1wkTJgwgYKCArp3706/fv3KfSaJi4TGjRtz3333MXjwYJ588smyi4T27duzdOlSDjnkEHr37s3OO+/MqFGjWLRoER999BF16tThyy9rpd+DWpFRhgTcC5wBjAXewh+YdW6bkm4Y9SlTplQ6f/Iw6smmTp3KunXr2HfffQF46KGH6Nu3LzvssANNmzblnXfeqbCMSy9bFwn33XcfY8aMoU6dUK5IHl8r1zLNkE4HzjazV7MZjHMuN7ZkGPWJEyeWS//888/56U9/yqOPPlr2Y3fXXXcxbtw4Dj30UEaMGMG1117r4zJlKFsXCfPmzePJJ5/kmWeeoVmzZtx99920b9++9ndgC2SaIa2h/OB6zrltyOYOoz5x4sSyYdQBVq5cySmnnMItt9zCYYcdBsCyZcv44IMPOPTQMA7nueeeS58+fbK8J9uObF0krF27lkaNGlFSUsI///lPLr30UiZPnlz7O7AFMm3UcDtwbTScuXOuhho2DD8uuXy1br1XWTw1GUZ93bp1nHHGGVx44YVlI9oC7LLLLnz77bd88sknAEyYMIEOHTpk+chuOzb3IqG4uLjai4TEes8880wAzjjjDGbMmJHFvdg8mZaQegJHA30kzSYMD1HGzPqlXco5l9batZDrAWOlL8r+r8kw6k899RSTJk1i+fLljBo1CoBRo0bRrVs3HnzwQc4880zq1KnDLrvswiOPPJKLXd0qJV8ktGjRgqKiIsaMGVNunsRFwvjx4zO6SAA4/fTTef3117n00kuZOHFiuftNuVblEOZlM0l/q2q6mV1SaxHVksLCQispKcl1GD6EeRIfwjwpjuO650GGlPvPI1/k6xDm48aN4+qrry67SBgyZEi5i4STTjqJmTNn0rx5c2DTRcLjjz/OJZdcQqdOncrWlbhI+Oabbzj//PNZuHAhTZo04f7776dr166bYsjhEOYZZUhbI8+QkoPIfQjgGVK5ODxDyiv5miHlJIYcZkibdU9IUltJP5Z0iqS2m7sxSX0kfSxprqQb0ky/VtJsSTMkvSZpn6RppZKmR6/izd22c865/Jbpg7FNgYeBM4GNm5L1D+AyM/sug3XUBe4h3I9aDEyTVGxmyY+Dvw8UmtkaSVcSGlOcG0373sy6ZRKvc865rU+mJaQ/A12A44EdoteJUdqfMlxHD2Cumc03s3VAEXBa8gxm9oaZrYnevgMUZLhu55xzW7lMM6R+wM/MbKKZrY9ebwIDCQ/NZqIF5Z9lWhylVeYy4KWk940klUh6R1Km23TOObeVyDRD2gFYnib9a6BRhutI90RX2rt3ki4ACoERScmtohttA4A/Sdo3zXIDo0yrZNmyZRXWW11HhZMmTeLggw+mXr16PP300+Wm/frXv6Zz58507ty5XEeFr7/+OgcffDCdO3fmoosuYsOGDel2yTnnXDUyzZD+DfxeUuNEgqQdCUOcv5XhOhYDLZPeFwBLU2eSdBIwBOhnZmsT6Wa2NPo7H3gTOCh1WTN7wMwKzaywWbNm5aZl0ptxq1atGDVqFAMGDCiX/uKLL/Lee+8xffp0pkyZwogRI1i5ciUbN27koosuoqioiA8//JB99tmHRx99NMPD4ZxzLlmmGdI1wKHAEkkTJb1JyGAOBa7OcB3TgPaS2khqAPQHyrWWk3QQ8FdCZvRlUvoukhpG/+8OHAmUz02qkdxRYYMGDco6KkzWunVrunTpUtbFRsLs2bM59thjqVevHjvuuCNdu3Zl/PjxLF++nIYNG5Y9WNazZ0/+8Y9/bE5Y27VslFgvvvhi2rRpQ7du3ejWrRvTp0/P+n4452pHRhmSmX0ItAcGAyXAe8D1QHszm5XhOjYAg4CXgf8AT5nZLEnDJCV6ehgBNAHGpjTv7gCUSPoAeAMYntI6r1rpOipcsmRJRst27dqVl156iTVr1vDVV1/xxhtvsGjRInbffXfWr19P4nmnp59+ulxXH65y2SixJowYMYLp06czffp0unXzhpnObS0y7ToIM/seeLAmGzOzccC4lLShSf+fVMlybwEH1nDbFdIq66gwVa9evZg2bRpHHHEEzZo14/DDD6devXpIoqioiGuuuYa1a9fSq1cv6tXL+JBu1zLpWr9169YAVZZY69WrV1ZiPeecc2KL3zlX+7abzlIz7aiwMkOGDGH69OlMmDABMyvrrv3www9n8uTJTJ06lWOOOSZvunHPd9kosSYMGTKELl26lF0oOOe2DttNhpRJb8aVKS0tZfny0MhwxowZzJgxg169egGUjba4du1abrvtNq644ors7MA2pqYl1r59+3LEEUdw3nnnlZVYAf7whz/w0UcfMW3aNL7++mtuu+22Wo3bOZc9202GlNybcYcOHTjnnHPKejMuLg63qqZNm0ZBQQFjx47l5z//eVnHhOvXr+foo4+mY8eODBw4kMcff7zsB3DEiBF06NCBLl26cOqpp3LCCSfkbB+3JtkqsTZv3hxJNGzYkEsuuYSpU6fWeuzOuezYrm549O3bl759+5ZLGzZsWNn/3bt3Z/HixRWWa9SoUYUb7gkjRoxgxIgRaae5ymXStX5lSktL+eabb9htt90qlFg///xzmjdvjpnx7LPP0rlz52zuhnOuFmXal92fgIei1nbO1Vgm4+9MmzaNM844gxUrVvD8889z4403MmvWrLISK0DTpk3LlVjPP/98li1bhpnRrVs37r///lzupnNuM2Q6HtK/gcOAd4GHgCIzW1n1Urnlw08kB5H7EMCHnygXRz4MP9EIyIM2H3vusyf//fS/OY3Bh59IiiHfh58wsyOBjoRngG4Elkp6TNKx2QzOOZdFawlXKjl+ffHZppFrt3cN6zfI+dD2ubQ5zyF9DPxa0m+AvsClwCuSFhKGpnjAzL7OTpjOObftW7t+Xc5L8Dque862vSWt7OoDTYEfAXWBhcBPgYWSBlS1oHPOOVeZjDMkSYWS7gU+Jwyc9w6h66ATzawToUPUu7ITpnPOuW1dRhmSpJmEXr1bAhcD+5jZEDNbkDTbGKBZmsWdc865amV6D+kp4BEzq7RvFzNbxnb0oK1zzrnalWkGImBFhURpB0lD08zvnHPObZZMM6QbCcNCpGocTXPOOedqZHNKSOme1jqIMIy5c845VyNVZkiSvpO0kpAZzZe0Mum1mjDY3lOZbkxSH0kfS5or6YY006+VNFvSDEmvSdonadpFkuZEr4sy30XnnHNbg+oaNQwilI4eITTr/jZp2jrgUzN7O5MNSaoL3AP0JAx/Pk1SccrIr+8DhWa2RtKVhObl50ralVA1WEjIHN+Nlq1wX8s559zWqcoMycweBZC0AHjLzNbXYFs9gLlmNj9aZxFwGlCWIZnZG0nzvwNcEP3fG5iQ6AlC0gSgD/BEDeJxzjmXRyrNkCTtmtQV0Exgp8r6Ocqwy6AWwKKk94uBQ6uY/zLgpSqWbZHBNp1zzm0lqiohLZPU3My+BL4ifaOGRGOHuhlsK11ulrZbW0kXEKrnEp23ZrSspIHAQIBWrVplEJJzzrl8UVWGdAKbWtAdXwvbWkzo6SGhAFiaOpOkkwj3q441s7VJyx6Xsuybqcua2QPAAwANG9a3XPdc65xzLnOVZkhmNhFAUj2gE/CsmVXIQDbDNKC9pDbAEqA/UK4zVkkHAX8F+kQls4SXgf+TtEv0vhfwm6o2tm7dhpyPNwPgeaJzzmWm2q6DzGyDpBHAizXZULSeQYTMpS6hK6JZkoYBJWZWDIwgPIA7NirdLDSzfmb2taTfEzI1gGE+1MXWp2F9cj7einMuf2Xal907wCHAZzXZmJmNA8alpA1N+v+kKpZ9hND83G2l1q4n56Ny6vzcbt85V7lMe2p4ELhD0tWSjpZ0cPIrmwE657Yv48ePZ//996ddu3YMHz68wvRJkyZx8MEHU69ePZ5++ukK01euXEmLFi0YNGhQWdqQIUNo2bIlTZqk6wHN5YtMM6QxQGvgTmAiUJL0yu3whs65bUZpaSlXXXUVL730ErNnz+aJJ55g9uzZ5eZp1aoVo0aNYsCA9OOB/u53v+PYY48tl3bqqacyderUrMXtakemVXZtshqFc84BU6dOpV27drRt2xaA/v3789xzz9GxY8eyeVq3bg1AnToVr6ffffddvvjiC/r06UNJSUlZ+mGHHZbdwF2tyChDMrMa3TtyzrlMLFmyhJYtNz0dUlBQwJQpUzJaduPGjfzqV7/i73//O6+99lq2QnRZlGkJKdH8uwfQCmiQPM3MHqvluJxz2yFL86xGpi0z7733Xvr27VsuQ3Nbl4wyJEkHAM8Tqu4ElEbLrgfWAp4hOedqrKCggEWLNvUStnjxYvbee++Mln377beZPHky9957L6tWrWLdunU0adIkbcMIl58yLSH9CXgX6Ab8N/r7I+A+4LfZCc05t73p3r07c+bMYcGCBbRo0YKioiLGjBmT0bKjR296pmDUqFGUlJR4ZrSVybSVXXfgFjNbDWwE6pnZe8Bg4I/ZCs45t32pV68eI0eOpHfv3nTo0IFzzjmHTp06MXToUIqLiwGYNm0aBQUFjB07lp///Od06tSp2vUOHjyYgoIC1qxZQ0FBATfddFOW98RtCaWrs60wk/Q1YZyi+ZLmAgPN7HVJ+wIzzaxxtgPdXFJGuxZDHFTShWycQeQ+BIh64s2DB2Ptzdw/qaDjuue8a6u8ODchnJ85PhiScn5uQn6cnzqu+7tmVpiLbWdaZfch0BWYD0wFfi2pFLgcmJul2Jxzzm1HMs2QbgV2jP7/LfAC8AZhWIpzshCXc8657UymzyG9nPT/fKBjNKz4Cst1Wds559w2IePnkFJ5b9vOOedqU1VDmBdnuhIz61c74TjnnNteVVVCWh5bFM4557Z7VY0Ye0mcgTjnnNu+ZfpgLACSGknqLKmTpEabuzFJfSR9LGmupBvSTD9G0nuSNkg6K2VaqaTp0Svj6kTnnHNbh4wyJEn1o2HMVwAfADOBFZJul1Q/w3XUBe4BTgY6AudJ6pgy20LgYsL4S6m+N7Nu0cvvWTnn3DYm01Z2twHnAVcA/4rSjgb+QMjUrstgHT2AuVGzcSQVAacBZaNvmdmn0bSNGcblnHNuG5FphjQAuNTMxiWlzZO0DHiIzDKkFsCipPeLgUMz3D5AI0klwAZguJk9uxnLOuecy3OZZkg/AualSZ8H7JzhOtINarI5D9W2MrOlktoCr0uaaWblYpI0EBi4Get0zjmXJzJt1PAB8Ms06f8DTM9wHYuB5JGzCoClGS6LmS2N/s4H3gQOSjPPA2ZWmKuOAZ1zzm25TEtIg4FxknoCbxNKNocDexMaKWRiGtBeUhtgCdCfUBVYLUm7AGvMbK2k3YEjgdsz3K5zzrmtQEYlJDObBOwPjAWaAE2j//c3s39VtWzSOjYAg4CXgf8AT5nZLEnDJPUDkNRd0mLgbOCvkmZFi3cASiR9QOjUdbiZza64Feecc1urjPuyM7MlwJCabCxqFDEuJW1o0v/TCFV5qcu9BRxYk2075/JTQ8J4RM5VWUKS1FjSPZKWSPpS0pioysw552rFWsI9gFy+XH6orsruZsKDqi8CRUBP4L4sx+Scc247VF2V3U+Ay8ysCEDS48C/JdU1s9KsR+ecc267UV0JqSUwOfHGzKYSHkzdO5tBOeec2/5UlyHVBdalpG2gBgP7Oeecc+lUl7EIeFzS2qS0RsCDktYkEryzU+ecczVVXYb0aJq0x7MRiHPOue1blRmSD9LnnHMuLps1QJ9zzjmXLZ4hOeecywueITnnnMsLniE555zLC54hOeecywueITnnnMsLniE555zLC54hOeecywuxZkiS+kj6WNJcSTekmX6MpPckbZB0Vsq0iyTNiV4XxRe1c865OMSWIUmqC9wDnAx0BM6T1DFltoWE8ZfGpCy7K3AjcCjQA7hR0i7Zjtk551x84iwh9QDmmtl8M1tHGPDvtOQZzOxTM5sBbExZtjcwwcy+NrMVwASgTxxBO+eci0ecGVILYFHS+8VRWraXdc45txWIc1wjpUnLdDj7jJaVNBAYuDlBOeecyw9xlpAWE0agTSgAltbmsmb2gJkVmlnhFkfpnHMuJ+LMkKYB7SW1kdQA6A8UZ7jsy0AvSbtEjRl6RWnOOee2EbFlSGa2ARhEyEj+AzxlZrMkDZPUD0BSd0mLgbOBv0qaFS37NfB7QqY2DRgWpTnnnNtGxHkPCTMbB4xLSRua9P80QnVcumUfAR7JaoDOOedyxntqcM45lxc8Q3LOOZcXPENyzjmXFzxDcs45lxc8Q3LOOZcXPENyzjmXFzxDcs45lxc8Q3LOOZcXPENyzjmXFzxDcs45lxc8Q3LOOZcXPENyzjmXFzxDcs45lxc8Q3LOOZcXPENyzjmXF2LNkCT1kfSxpLmSbkgzvaGkJ6PpUyS1jtJbS/pe0vTodX+ccTvnnMu+2Abok1QXuAfoCSwGpkkqNrPZSbNdBqwws3aS+gO3AedG0+aZWbe44nXOORevOEtIPYC5ZjbfzNYBRcBpKfOcBjwa/f80cKIkxRijc865HIkzQ2oBLEp6vzhKSzuPmW0AvgV2i6a1kfS+pImSjs52sM455+IVW5UdkK6kYxnO8znQysyWSzoEeFZSJzNbWW5haSAwsFaidc45F6s4S0iLgZZJ7wuApZXNI6ke8CPgazNba2bLAczsXWAesF/qBszsATMrNLPCLMTvnHMui+LMkKYB7SW1kdQA6A8Up8xTDFwU/X8W8LqZmaRmUaMIJLUF2gPzY4rbOedcDGKrsjOzDZIGAS8DdYFHzGyWpGFAiZkVAw8Df5c0F/iakGkBHAMMk7QBKAWuMLOv44rdOedc9sks9TbOtkHSMuCzGq5md+CrWginpvIhjnyIAfIjjnyIAfIjjnyIAfIjjnyIAWoexz5m1qy2gtkc22yGVBskleTD/ah8iCMfYsiXOPIhhnyJIx9iyJc48iGGfIpjS3jXQc455/KCZ0jOOefygmdIVXsg1wFE8iGOfIgB8iOOfIgB8iOOfIgB8iOOfIgB8ieOzeb3kJxzzuUFLyE555zLC54hOeecywueITnnnMsLniE5lyFJJ0hqnOs48oWkHXMdg9u2eIaUQtI/JJ0iKefHJopjsKShiVeM2+4hqXv0f0dJ10rqG9f2U2LpLOkcSRcmXrmIA7gYmC7pbUm3SzpV0i5xBiDpR5LuklQSvf4o6Ucxx3CEpNnAf6L3XSXdG3MMZ0vaKfr/t5L+KengOGNIimVPSQ9Leil631HSZTHHUCDpGUnLJH0R/Y4VxBlDbcj5j24eug8YAMyRNFzSAbkIIhqm/VzgF4RhOc4G9olp2zcCdwP3SfoDMBJoAtwgaUgcMaTE8pfodTxwO9AvzhgSzOxCM9sPOJPQM/09wLKYw3gEWAmcE71WAn+LOYa7gN5Aogf+Dwj9Tcbpd2b2naSjolgeJXx3c2EUoY/OvaP3nwBXxxzD3widUzcnjCv3PPGfFzVnZv5K8yIMfXEFYcDAt4BLgPoxbn9Gyt8mwCsxbXsmoQPcxoQfvKZR+g6JeGI8DjMJF04fRO/3BJ7P0TlxAfDX6HwoBgYDh8ccw/RM0rIcw5To7/tJaR/EHMP70d8/AANS44k5lmlpjkfcn0nOz4vaeHkJKQ1JuxGqZ34GvA/8GTgYmBBjGN9Hf9dI2htYD7SJadsbzKzUzNYA8ywaCNHMvgc2xhRDwvdmthHYIKkp8CXQNuYYEv4EdAMeBH5pZreb2dsxx/B9VCoAQNKRbDpX4rJI0hGASWog6Tqi6rsYLZH0V0IpcZykhuSuxmd19JthAJIOI4x2HaevJF0gqW70uoCoBLs1iXPE2K2CpH8CBwB/B041s8+jSU9KKokxlBck7QyMAN4jnOwPxbTtdZIaRxnSIYnE6F5F3BlSSXQcHgTeBVYBU2OOAQAz211SJ0L11K2S2gMfm9lPYwzjCuCx6LMQYZiWi2PcfiKGPxOqhhYDrwBXxRzDOUAf4A4z+0ZSc+D6mGNIuJZQYt5X0r+BZoTx3OJ0KaFq/S7Cb0WiVmer4j01JIkaMvzWzIblOpZk0dVfIzOL5apLUkMzW5smfXeguZnNjCOONNtvTag+nJGj7TcFjgSOBY4mdPP/jpldVOWC2YuFROk15m3vainjkUlqY2YLYtp+HULVcec4tpeJaITr/QkXCR+b2fqYt3+kmf27urR85xlSCklvm9nheRBHXeAUoDVJJVkzuzNXMQFIamJmq2LcXrqWU98Cn5nZhrjiiGKZAfwrek0ys8Vxbj+KoSGhUUVryp8XsV1ERaWAkxOZoaQOwNg4MwhJo4HfmNnCuLaZJoafVDXdzP4ZYyzvmdnB1aXlO6+yq+gVSWcC/7Tc5tbPAz8QburHXU1WldlAqxi3dy/h/t0MwtVn5+j/3SRdYWavxBWImXUBiJob5+rceI6QIb8LVCjFxuT/gOclnUIoFTwGnB9zDM2BWZKmAqsTiWYWZwvMU6O/ewBHAK9H748H3gSyniFJOjzadjNJ1yZNakpomLRV8QypomuBHQk30X8g/AiamTWNOY6CxA9g3FJO7HKTCK394vQpcJmZzYLwjAfhXsHvCV/42DIkSZ0J9xZ3DW+1DLjIzD6MKwbCedEnxu1VYGYvSqpPOPY7Aaeb2ZyYw7g55u1VYGaXAEh6AeiYuN8c3c+6J6YwGhC+k/UIn0XCSuK/j1VjniElkSSgUy6rAZK8JKlXnCWAJP9HaEyRrkos7pZMByQyIwAzmy3pIDObHz6uWD0AXGtmbwBIOi5KOyLGGN6SdGAu7uNJ+gvlS4ZNgfnALyRhZr+MKxYzmxjXtjLQOqnxE8AXwH5xbDg6DhMljTKzz+LYZjZ5hpTEzEzSMyS1LMuhd4Bnohu464m3pBHq3W8AAB5HSURBVPYe8KyZvZs6QdLPYth+so8l3QcURe/PBT6J7qXEeuMY2DGRGQGY2ZuKv/uco4CLJS0gVNklzos4StOprUwrnB9xiZpW/wXoQCgl1AVW56AmA+BNSS8DTxAy7P7AG1UvUuvWSBoBdAIaJRLN7ISY46gRb9SQQtI9wCgzm5bjOOYDpwMz476XJWl/YLmZfZVm2p5m9kWMsewA/D/CD7EIDQruJdxfaxxzA4tnCJn136OkC4BCMzs9xhjS9taxLVwdb47oEYz+wFigELgQaG9m/5ujeH5CaHkJocHLMzFv/xXgSeA6QrP8i4BlZvbrOOOoKc+QUkR9dO1PuHexmnivQJPjeJnQkilnDRoknW1mY6tL214o9Ft3M5syx0nATWa2Igex7EH5K+HYqpmj56/+AHRMiSG2B5YllZhZoaQZSY1N3jKzOKtP84akd83skJTjMdHMjs11bJvDq+wqOjnXAUQ+J1QFvERSa6qYm33/hnAFWl1a1uTDj1/SNlcAsd0nSUdSP+CPhH7TviT0b/gfQlVNXP4G3Eh4CPN4wgOYcd/QWyOpAaGz29sJ35ec9D4elY5uI7S2E/+/vTMNs6Sq0vX7VUHLjHIZRBAZlEnmSVAaGUVsUEBmUaZuEKVBpFttBUQGaQW5oAxaSMkgijIJSDPD1WIopgKKwgaRSQShLBAoZIbv/lg7KiNPnsqCqjw7Iiv3+zzx5DkRmblXnoyIFXvttb7VTCJUFb7+a8p+fBIYduKqxSF1YPuxJM3yIds/k7QI+TPLAB5J2z+lLRuStgI+BSwh6Ye1QwvQPdGhl7Th5geApOWJkMjS9K8ByhmnPwpYH7jW9pqSNgF2zTg+wNy2r5OkFCo8QtI44v+Ui88TCTYHAAcD7yfqs5rg+4SqS275pDpHJ/WOQ4i1tQWIz2VYURxSBwp16XWIsN3PgDmBnxMV+tmw3WRa6xPEAvan6b9wPZX8J3kbbn4V5wM/JiSc3mxgfIDXbT8jaZSkUbZvkPS9zDa8kpJtHpR0AHG+LJrTgPTgODehHNJ0CvjTDTsjCMHb54katU0atmWmKQ5pINsBaxKL19h+MhVCZiXNzL5GM1kz/9f2ZpJWt31WhvEGo/GbX403bDfV4qDiOUnzEetX50qaTP5Z61cIJfgDiRnbpsQiejYkbQMcT0QPlpG0BnBk5sLYijsk/Qr4Df3D69mUGohygEeIxIaLmljXHApKUkMHkm6zvV4lu5HSem9pIKmhsayZlNixPzEb2I2OEJntCb22oWbLusQaybuJm9+CwPdtj89ow0Lp5YHEus3F9L/xPNvt53pky7xEhqEIdYQFgXNtDztl51lB0p2EI/x/ttdM+ybmvk7TuN36Dtn23pntWI/IPNyWUFQ5z/bPc9owqxSH1IFCSv9DwBbEYvrewC9s/yizHY1lzUjaAdiHyCbrrD3xcKttmFXSk6fpvnblJhIsmkDSZQwimZRzdiLpVtsfkXRX0w6pbShEkE8APmd7WMkHlZBdB7aPl7QFIb2xPHC47Zx9kCoay5qxfQFwgaTDbB+VY8zpMZ2b4POEo/yJ7Vd6bYPtXH2opoukG21vKGkq/T+PnBldx2cY4+0ySdJuwOiUiXkg0XIhO5LmIh7gOsPr2WZICvX37YgZ0nLELH69XOMPFWWG1AVJ7yX+mSa6QT7VgA1bA+OI7KEqa+Y7ti/NMPaKtu9Xd6Xt3CG7k4j+Mr9Mu3YGniK61y7gDL2IUtjw8eo8kPQFIqPrMaIOKVvIrmkUKvRn2d69YTvmAb4FfIJwylcBR+V4QOliy/nA/UR4+0gilPq/tg/KaMMjxBrWr52/aeSQURxSB0ka53BCuVdE75sjbY9t1LCMSBpje19J3eRPsobsJP3e9kbd9km6z3bP628kTQA2t/2spI0IGaN/J7rHrmQ7m4ilpHM6nXC3fT224Soizfm1XGMOYssCxDk5tUEb7kop+BNtr6YQnr0q83Ui204JWM6pYDKUlJDdQP4TWLNaJFa0Jr4ZyOqQJC1LdOXcgGg/cQtwsO2Hez227X3T1zakjy4iaalKiUDSUkRjPIBcN8TRtVnQzsAY2xcCF0q6O5MNFf0csKIxXG7txUeBmyRdSv/WD9mKttOsdSxJ4VrS88De7qK/mIEqvP6cQhH+KaJWLScfltS0Ev0sUxzSQP5C1NtUTAUeb8COXxAS9tul97sQYauP5DIg1fv8nggd3tTQU+ghwI2SHiJmrMsAX0rZZrlS0kdLmsPREHAzYN/asSzXkKT/Ar4JzC2p6hIrwimPyWFDjSfTNor+LQ9ycgbwJdvjAFIx+8+AJpIaxihkpQ4lWpnPBxyW2waaV6KfZUrIrgNJZwOrEo3QDHwGuA34I+R7CqyyiDr2jbe9fo7x03jLEpl2/0yoA7wKjLOdtThWoey9InEDvj/3OoGkbxHKFVOI5oRrpfDIB4n1lGxF05KOtf1fucYbDEnz2v7HjL+zJ2Pf1Pm5d9uXwY5RwA62f51z3C523GN79RntaztlhjSQh9JWcUn6muVJsFbzcoOkbxDrFSZCRZfnsKHC0XPoZeIp/DWiAnylnDYoVJ3HAr9sqtjP9jGSriO6lF7tvqe4UcRaUk5+WzkCSbsT3XRPcka1b0WX0jOImcBSklYH9rP9pVw2ALdJ+gl9LR92JrQf14J8iTe230oF2406JOBhSYfRX4n+kQbtmSnKDKkDSas0GXdtU81LCpNNIcKH44C7nVl9PM1C9iJuOHcQYZm6U8hKyjJbjP5adjmVticCqxOhqXMIx7B9jvq0mg23Et1IL63VAE2yvUpGGwbrN5Q78eYw4GWikL2+ppazYLo1SvSzQnFIHUi6kZAjOZMoiH2uWYuaQ9JBxAn+fiKt9XdEr5eHBv3B3tgyCtgaOI1I8hhLzAxyXvQHAEcQHUErx+ycxZg1BZHDgSdsn1Hty2hDt6LUYRceGirSQ2QnI6ZgeigpIbsOUvHh8sRT+R2SbiMa9mVrJa7odfNlIqPKhAzIKbYn57IBwPZJwEkK7bS9iJvxkkR3zmxIWi2N/yngQuBcwlFeT6Re5+IrwApuVqZnakpw2B3YKM3Y5sxsw+OSPgpY0QLiQELeqecoNOwmViHK5JirmrCDbGcPUzVZON0m9YyhoMyQpkO60LcFfkioNgj4pnssmCjpY0SI7ExCaVvEOsEehBTITb0cv8OWHxA3/vmItPNxRFJDz1PPazbcCTxHhKYutP1q7dhFtrfPaMsNwBYp264RUtH2bkTB9riUBr+x7bMz2rAwUZKwObGOdhXhDHruqFPIcn3bL6Xi8ROI9htrAjva3rLXNtRsWQBYzPaD6f2ORME2RB1SzzsrSxo0VGv7d722YSgpDqmD2tP4vwDXAGfYniDpfYTIatcW0kM4/nhgf9t3dexfg5DKyZn2vSMRosvWsryLDcvmdICDIekMoi3J5TTXNHFEUw8NShoLPGD7e+l97tDlGOBm22em938CriCc0hu2v5jLltmFErIbyMnA6cRs6OVqp6MNxaEZxl+g0xml8e9W/jYYTwIvAuTO6JL01drrAccbcgJ/TlsTTRPboGVX2VIVba+fbMlWtB3Daz7gJaIm7NTasbm6/0jPWBfYr/Z+qu1/h2lr0T1H0r0MHrIbVmKzxSEN5CLb59R3SDrI9kmd+3uEJL2nMzsmpYOPyjB+ndOA1VNa79eIsNnZhJxSr6mc7wrEhV9p+G1DZBBlx6kRXBP1N7Y3TF+bKkSt02TR9onA3UQY/X9t3wEgaU2ijXlO5ujI9qzLN707kw1bp69fTl+re9TnCKc9vLBdttoGTOiy766M4+8L3E7c9OdP28bArUStR/bPgtD222d6n0+PbbgamL/2fn7gyobOjQ2IBJM/p/erA6dmHH8UMKmJv73Djlu77BufcfwliDWjUbV9iwNLZf4c7gHeOx37Jma25aa3s6/tW5khJSTtSiwWL5M0uirmB7JlVdkeI+lJohldPcvuaNuX5bIj0YaMrqXor1n3Gvl1wipOBLYkzdZs36MQW82CowjzHtW0/XLSlqJt208oVODHSrrS9lu2c8+OAI4DLpN0CFCF2dci2nQcl9mWeSVtaPtGgJQFOW9mG2aZ4pD6uJmY8i8M/KC2fyowMachtn8r6RZ3ZC1JWsZ501p3Jpz0PrafShlduS+0c4iq/IuJm992RNiwEWw/3rGm9WZmExYH7kvlCPUizBzpvXfSv2i7vn5i4iEqFz8mko9+pGj/cKbt+zOOj+2fS5oCHE2f6O0koofaFTltIfoxjZW0YHr/HNFcdFhRsuxaiqSbgK1sv5Der0z0OslSDZ9mQ1fZ3jzHeDOwZW0i/Rwi629A0kcmOy4g0oxPJhb0DwTWsb1LRhu6rt95mKX3DhXpBrwr0RvpcSIh6ee2Xx/0B2dTUiq6bD/ftC0zQ5khdSBpfaIh3kpEJtVo4B/OmMWU+C4RDvgXYmH/bGKhMgu235T0kqQFmz65bd8p6XFSFlVTISvgi0R22RKEKvzV9C0m95QkobRYp+NJIcMncthQG3M0URaxNP0llLJmPipaw+xOJBPcRV/B9B7EumsuOxrrGFvPRu3YX9kwrEoSikMayMlE1tD5wDrAF4AP5jbC9uWKRl9XE+tY2zoV4GXkFeBeSdfQPzx0YC4DJH2aCKG+D5hMrCndT0dfoBzYnkLGh4IOTiTaT3TyUjq2TUZbLiOdG/RJKGVF0kWEAvw5RLPAag3pVwpB3pycQ5yTW1LrGJtp7NZlo84KJWTXgaQ7bK+j1P0x7bvZdpa+IpJ+RP+6gk2Bh4mmaLmdwR7d9tvO1YcISfcQn8G1jq6cmwC7OjURzGRD5/+kHzn+JxpEvFTSvbZX7bUNtfGmXRtNIWlT29c3aUOF2tEx9mrgs049y1LN4vm2P5nLhqGgzJAG8lLS57pb0veJRIec2SqdT3dNdMAEwvGkz2L5tOuBBmLzr9t+RtIoSaNs3yDpe5ltyP3E3Y3Bij7nHuRYL7hC0iecUd+xC+NTofpStveV9CFCZ/C3DdjSho6xbcpGnWmKQxrI54l6jwOAgwml68/mGryafSg6or5i+830fjTwrlx2pDE3JrqyPkpkVr1f0h62c4YCnkuV+b8HzpU0GciqJZdzRjgIt0v6N9un13dK2of8Dy3jgYsVCuyv04BaBNGG5E76OqL+hQizN+GQqo6xh9HXMfbwzDZ0ZqNuT4PZqDNLCdl1IGlt23d27Nsmdw1Q0rTb3HYl3TMf0QcoW0tihbDpbrYfSO+XJxrlrZ3RhnmJ9QoRsfkFgXM7U+J7bEPjisqSFgMuJp58q/NzHSLxZjvbT/XahpotDxPCw/e6oRtILbReWmAkJK0HbETMmC+zfXfDJr1jygxpIKenWcC9AJJ2IWZKuYtS56qcEYDtFyXNk9mGOStnlGz4Y4qPZ8P9JXqamqkc39C403AI3H40raFVTdh+6jxyVp08SChGNPk0+5qkuUkPCpKWoyZ4mxNJ7yKiKEvTP+vwyEzjL0OUI7wJ/AlYFDhK0t62/5bDhqGiOKSB7ABcIOlzxIX/BeATDdjxD0lrObViTrU4L8/gZ4aaOxQK13V9rCzhIfWJiIqGxUQJ6agXuh1IxcJZSDeeA4nMtgeBTSTtBOS+8fyVaBd+Bc2pnn8buJIII58LfAzYM+P4dS4BnieujaxOUdKSRKfa3W3/sbZ/FeD7qWj49uHimErIrgspNPUbotBuW9dUvzPasC4hzfJk2rU4sHNnOLHHNryLqLOpt0U+1bWeRJns+D/AMsDkhiRzprU1kHSd7c26HeuxDUsCF9H9xnMIsX6S5cYj6dvd9juJz+YinRfrE+fm+JSWn53BMiAzjD0GOM/29alwewtCamwlYj3rRGAvJxXytlNmSAkNlHFfiCiKvVUSudNcbd8uaUWivkDA/bkz3JLjOSFt2ekWipC0CHGB5bz51LWCFhrkWC85HPhGCpt2u/E8lb6n5zee3I5nEOYC/k7cx1ZO12kTtTc3S1q1CvNnZq1aCYSBVW3/Oc3cj3f0cjulAbtmiuKQ+ti69nph4kYzD9EauSlWAFYmLrw10wXX88yZLs65Hzmccy0U8fn6OlaaERyXORTh6bzu9r5XNH7jkXSi7a9ML8kjR3JHzZbvEVqL99FXnGuaKQbdENhT0iNEyK4KK+d4iJ1T0hyOLsbLEg4aQstu2fQ6a3burFAcUsL2Y9NZHFyEBkQKU1hkY8Ih/Q+wFXAjeVI5t57xt/ScakbwQNMzAmJm9lXiRlO9Jr1fJMP40I4bT7WW2HiSB5Hlt0Lu8PF02KrBsW8APgNcSKyrXSfpIeKcOFLSZkTrmmFBcUiJFi4O7kD027nL9l4p7fenOQZ26ggr6QBCqPK5HON20PiMoMbp9Em01F9Dpv8JLbjx1NYv17B9Uv2YpIOAnAKvDxOtUBp3SLXrZVHyd639LnClpPsdXQL+h4jwTCHuH6cD2Waus0pxSH20JkafeNnR/+YNhYLvZPqehHPxXiLTbgIwlpBDyRWiasOMAGjNmkmbbjx7ECKzdfbssq+XvESoqVxH/0y/bNJaFRqot/gBQsuu53qLtidL2hE4NRWNjyciPB9Nduxu+8nBfkebKA6pjzY9kUM4gncTN5o7gReB2zKOj+1DJR1GpL3vBZws6dfAGbYf6vHwjc8IOknZl6cRqturSFoN+LTto3s9dhtuPGpJE8vEpfQJiVY0lTJ8FJHt109vMdfg6VrcUiGftDoRSv6uM/eHGgqKQ+qjNU/kkgQcm0JlP5Z0JbCA7ayNAiFWZiU9RcwQ3wDeQ9RpXWP7az0cuk0zgorTgf8EfgJge6KkXxAN2npOC248rWliCbx7OmHDJmiD3iKObgC5OwIMKaUOKSHpRGCc7QslbU2E56on8mOI9gs72N4/kz135pTomY4NBxLhmSnEWslvbL+u0DB70PZyPR5/OeBUIgzSOSPYL/cToKTbba+r/nI1d9teI6cdhe71X/X/S2ZbriWSLI4lnPVkYF1nlPmaXSgzpD7a9kQ+XtK6tm/POGYnCwPbV4u2FWltq+eZeC2YEXQyJTnJSq5mB2LGMCKQdKPtDdWnojHtUHr/DHCc7VN7aEObwoYVnyH0Fg+mT28xi2zQ7EaZIdVo0xO5pD8QbR8eI2ZnOWsbOm3plz3UhFpCG5C0LDCGOCf+DjxCrN082qRdTdBNPSPtu9n2Cj0c9wNp3GOBb9QOTQUmppB7YZhSHFIXOp7I723iiTxdeAPonK302IZtiLqsftlDtrN3a20TCgXyUU7N0EYSg9Tq7WV7iqTF3de9dbZmRjNG59VbnC0oDqnlNDk7UQu6tbYJNazq3DTq09Prpp6RRU+vOIHZm1FNG1DojqRPS3qQCAv9jmiSd0VmM1539B2alj0EjOQF/EuI9YI3iDBqtY0U+qlnSHpe0i2Egsho+mr1eobtDdPX+W0vUNvmb8IZpcy6SbnHnV0pSQ3tpdHahkTj3VpbxpK2P9m0EQ3Silq9lOU50Q0pbNdJCT73SFpqpK6tDiVlhtRe2jA7+QxREX8w0XvmIdqhc9cUN0tatWkjGmROSdVDbGO1erbfAu5Rxl5UM2Bx4D5J10m6tNqaNmo4UmZI7aUNs5PDbX+dUFM+C6apLH89sx2Noj718zmAvRQtvHOrOreBNqlnVE7gNmphU2dUHK/RBmmp2YKS1NBSUibXy8QstqptODfNmnLZ0K34cOIIugED07IuX5ve8ZyZj02SEmyuJJIa7kuhswG1ejm00yR9vNt+2zkFXrsi6WPAbra/3LQtw43ikIYBkhYGnsklbCppf+BLwHJEam/FAsCNtnfPYUdb6OaYRyptqtWr2ZT1+piODWsQBbs7EYlIF9o+uSl7hivFIbUMSesD/w08SyQ2nEM8hY4CvmD7ygw2LEho1h0LHJfGngeYZPvZXo/fNpqSpGkzTdXqteH6qNmyPLALkWz0DNG+5j9sd60hLMyY4pBahqQ7gG8SIboxwFa2xyvamf8y141xkALIvXtZZ9JGJP2FQdq4226kxftIpC3XR7LlLWAcsI/tP6V9D9vO3SZmtqEkNbSPOWxfDSDpSNvjAWzfHyLgvUfta1bYNKOB+YjZQKFZGr8+anyWmCHdkBT5z6OcI7NEcUjt463a65c7juWazratWWHT/HWkqDEMA9pwfcRg9sXAxSkBaVuiPGIxSacBF1eOs/D2KSG7liHpTfrEVOcm6oBI7+eyPWcGG+6wvU56fT5wSEcB5E6SbrG9Qa9taQMd7SYWok9U9PFmLRt5tOH6mI5dCxHp75OBTwK72N60CVuGM2WG1DJsj65ed1NUzkRrmhW2hM26ralJGpFrak3SkutjGoOste7chD3DneKQWsggN7+9bE/JYEKbCiDbwDyUNbXW0ILro7KjrLUONbbL1qINWBK4DVihY/8qwM+ATwGL9NiGRYEJwIfT+1Fp3yhgTeAO4H1Nf1YZ/ydjgE3T6wuA54FbiBnj2cBawI+atnMkbG24Psp50butaNm1jzYoKk8GdgROkHQOsD+wPXAmcCLxRNjzavwWsZbt69PrSlR0A2A1Yt1iArBOY9aNLBq/PmqU82KIKQ6pfbTiJLf9kO0tiVbMTxOFf9+1/XE310K8KVohKloAWnJ9JMp5McSUNaT20aqEAtsPAg/mGq+llDW19tCm66OcF0NMSftuGZJOBMbZvlDS1kT4oTrJjyFSXnewvX+DZo4o2iQqOtJp0/VRzouhpzikllFO8nbSRlHRkUjbro9yXgwtxSG1kHKSt5emREULfbTx+ijnxdBQHFKLKSd5oTB9yvUx+1EcUqFQKBRaQUn7LhQKhUIrKA6pUCgUCq2gOKTCsEfS0pIsqRVV8ZJWlHSLpFckPZr2WdIODZtWKLSa4pAKrSbdyAfbzsww/jt1JEcTbRFWBNYdeqsKhdmTotRQaDuL115vTdSZ1Pe9DLwnq0Uz5oPAJbYfbdqQoSbV/cj2m03bUpj9KDOkQqux/VS1EfIw/fbZfr727R+QdI2klyT9QdIW9d8laWVJl0uaKmmypF9Keu87sSfNmPaVdL6kf0h6WNLu9eNEKvLh6XuP6PI7uoYYO2djkpaQdJ6kv6ft8pTqXB0/QtIkSbtIeij9Xb+RtHDH791D0r2SXpX0dH1WKWlBSWPS5zFV0u/qdknaU9KLkj4laRLwGrCSpFUlXSfphfRz90ja5J18loVCJ8UhFWYnjgF+SDiE24HzJM0HIGlx4PfAJGA9YHNgPuDS9NT/TjgcuCSN8ytgrKQPpGOLAw8AP0ivj5+ZP0TSPIRW2ivAx4ENgL8C16ZjFUsTzeC2Az5BtAc5pvZ79gN+QrRmWI1oz3BfOibgcmAJYva5JvEZXZ8+r4q5gEOB/YCVgceAXyR71ks/d0SytVCYeZruf1G2sr3dDdghTtkB+5cmlJ/3q+1bIu3bML0/Eriu4+fek75nvUHGNKGNVn9/bO39HMR60e61fZOAI6b3e2r2rjPI9+xNiNqqdnw0obq+U3p/BOEEFqx9z7eAP9Xe/wX47+n8bZsCLwJzd+y/G/haer1nsmvtju95Adij6XOibLPXVtaQCrMTE2uvKy2zRdPXtYGNJL3Y5eeWI5q+veNxbL8h6W+1cYaKtYn23FNjIjONeQh7Kx5z/7Dlk5UtSfdtCeC6QcaYB/hbxxhzdYzxBuGk6pwA/FTSHun3X+iilFCYRYpDKsxOvF69sO10k63CcaOI8NR/dPm5p2d2nGo43ln4+630dZoXkDRnx/eMIpzALl1+/tm3aYsYnFHE3/7PXY69UHv9qjuSGGwfIelcYCtgS+Dbkr5oe+wMxiwUpktxSIWRwgRgJ2JG0XkTz83f0tf6Os0aHd8zAdgVmGL7uZkZxPbTkp4ANgOu6fItE4DFgLdsPzwTv7/qlfVDSacB/woUh1SYaUpSQ2GkcAqwIPArSR+RtKykzVOG2fw5DbH9MqFS/XVJH5b0UQYmP5xLzF4ukfRxSctI2kjSD+qZdm+DY4CvSDpY0vKS1pB0SDp2LXBTGmOrNMYGkr4jqdusCQBJc0s6RdLGKWPwI8CGwB/egV2FwgCKQyqMCBz9cT5GhMuuJDLNTgFeTVtu9k5fbyey4A6tH7T9ErAR8DBwPnA/cBaRiPF33ia2TwO+DPwbkWxxJfDhdMxE1t31RH3XA8CvgRXoW4PrxpvJjrPSz1wM3AJ89e3aVSh0o6h9FwqFQqEVlBlSoVAoFFpBcUiFQqFQaAXFIRUKhUKhFRSHVCgUCoVWUBxSoVAoFFpBcUiFQqFQaAXFIRUKhUKhFRSHVCgUCoVWUBxSoVAoFFrB/wfnFnscSmFA/AAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# # Set the values for x_axis & y_axis\n", - "# x_axis = Influencers_Comp_Mean.index.values\n", - "# y_axis = Influencers_Comp_Mean[\"Compound\"]\n", - "# X_Label = [\"@Oprah\",\"@KimKardashian\",\"@realDonaldTrump\",\"@justinbieber\",\"@KylieJenner\"]\n", + "# Set the values for x_axis & y_axis\n", + "x_axis = Influencers_Comp_Mean.index.values\n", + "y_axis = Influencers_Comp_Mean[\"Compound\"]\n", + "X_Label = Influencers\n", "\n", - "# # Intialize the plots. \n", - "# fig,ax = plt.subplots()# function that returns a tuple containing a figure and axes object(s)\n", + "# Intialize the plots. \n", + "fig,ax = plt.subplots()# function that returns a tuple containing a figure and axes object(s)\n", "\n", - "# #Set the plot and assign the values like colors etc\n", - "# bars = ax.bar(x_axis,y_axis\n", - "# , align = \"edge\"\n", - "# , width = 1\n", - "# , linewidth = 1\n", - "# , edgecolor = 'black'\n", - "# , color = [\"yellow\",\"lime\",\"red\",\"orange\",\"pink\"]\n", - "# )\n", + "#Set the plot and assign the values like colors etc\n", + "bars = ax.bar(x_axis,y_axis\n", + " , align = \"edge\"\n", + " , width = 1\n", + " , linewidth = 1\n", + " , edgecolor = 'black'\n", + " , color = [\"yellow\",\"lime\",\"red\",\"orange\",\"pink\"]\n", + " )\n", "\n", - "# # Set the tick(s) of the bar graph\n", - "# tick_locations = [value + 0.5 for value in range(len(x_axis))]\n", - "# plt.xticks(tick_locations,X_Label,rotation='vertical')\n", + "# Set the tick(s) of the bar graph\n", + "tick_locations = [value + 0.5 for value in range(len(x_axis))]\n", + "plt.xticks(tick_locations,X_Label,rotation='vertical')\n", "\n", - "# # If value is positive then put True in the Summary else place False\n", - "# Influencers_Comp_Mean[\"Positive\"] = Influencers_Comp_Mean[\"Compound\"] > 0\n", + "# If value is positive then put True in the Summary else place False\n", + "Influencers_Comp_Mean[\"Positive\"] = Influencers_Comp_Mean[\"Compound\"] > 0\n", "\n", - "# # Assign the height based on positive value after allocating True / false value\n", - "# height = Influencers_Comp_Mean.Positive.map({True: 0.03 , False: -0.03})\n", + "# Assign the height based on positive value after allocating True / false value\n", + "height = Influencers_Comp_Mean.Positive.map({True: 0.03 , False: -0.03})\n", "\n", - "# # # Set the value on labels on the bars\n", - "# for bar in bars:\n", - "# ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + height[bars.index(bar)]\n", - "# , round(Influencers_Comp_Mean[\"Compound\"][bars.index(bar)],3)\n", - "# , ha = 'center'\n", - "# , va = 'bottom'\n", - "# )\n", + "# # Set the value on labels on the bars\n", + "for bar in bars:\n", + " ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + height[bars.index(bar)]\n", + " , round(Influencers_Comp_Mean[\"Compound\"][bars.index(bar)],3)\n", + " , ha = 'center'\n", + " , va = 'bottom'\n", + " )\n", "\n", - "# # Set the x_axis limits\n", - "# ax.set_xlim(0, len(x_axis))\n", + "# Set the x_axis limits\n", + "ax.set_xlim(0, len(x_axis))\n", "\n", - "# # Dynamically set the y_axis limits by finding the max & min value of y-axis\n", - "# ax.set_ylim(min(y_axis)-0.1, max(y_axis) + 0.1)\n", + "# Dynamically set the y_axis limits by finding the max & min value of y-axis\n", + "ax.set_ylim(min(y_axis)-0.1, max(y_axis) + 0.1)\n", "\n", - "# # Set a horizontal line at y = 0\n", - "# plt.hlines(0,0,len(x_axis))\n", + "# Set a horizontal line at y = 0\n", + "plt.hlines(0,0,len(x_axis))\n", "\n", - "# # Title of the graph\n", - "# ax.set_title(\"Sentiments on Twitter of Influencers (%s)\" % (time.strftime(\"%x\")), fontsize=16)\n", + "# Title of the graph\n", + "ax.set_title(\"Sentiments on Twitter of Influencers (%s)\" % (time.strftime(\"%x\")), fontsize=16)\n", "\n", - "# # Setting the y_axis label\n", - "# ax.set_ylabel(\"Polarity on Twitter \", fontsize=14)\n", + "# Setting the y_axis label\n", + "ax.set_ylabel(\"Polarity on Twitter \", fontsize=14)\n", "\n", - "# # # Setting the x_axis label\n", - "# ax.set_xlabel(\"The Influencers\", fontsize=14)\n", + "# # Setting the x_axis label\n", + "ax.set_xlabel(\"The Influencers\", fontsize=14)\n", " \n", - "# # Saving the graph\n", - "# plt.savefig(\"The Influencer Twitter Sentiment .png\",bbox_inches='tight')\n", - "# plt.show()" + "# Saving the graph\n", + "plt.savefig(\"Images/The Influencer Twitter Sentiment.png\",bbox_inches='tight')\n", + "plt.show()" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'@katyperry': 'yellow',\n", + " '@BarackObama': 'lime',\n", + " '@taylorswift13': 'red',\n", + " '@ladygaga': 'orange',\n", + " '@TheEllenShow': 'pink',\n", + " '@Cristiano': 'yellow',\n", + " '@jtimberlake': 'lime',\n", + " '@BritneySpears': 'red',\n", + " '@ArianaGrande': 'orange',\n", + " '@ddlovato': 'pink'}" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# WIP\n", + "# influencersDictionary = {}\n", + "# colors = [\"yellow\",\"lime\",\"red\",\"orange\",\"pink\",\"yellow\",\"lime\",\"red\",\"orange\",\"pink\"]\n", + "# index = 0\n", + "# for person in Influencers:\n", + "# influencersDictionary[person] = colors[index]\n", + "# index+=1\n", + "# influencersDictionary" + ] + }, + { + "cell_type": "code", + "execution_count": 49, "metadata": {}, "outputs": [], "source": [ @@ -2050,12 +2383,7 @@ " \n", "# plt.scatter(Temp_DF[\"Tweets Ago\"],Temp_DF[\"Compound\"]\n", "# , marker = \"o\", linewidth = 0, alpha = 0.8, label = Influencers\n", - "# , facecolors = Temp_DF.influencer.map({\"@Oprah\": \"blue\"\n", - "# , \"@KimKardashian\" : \"lime\"\n", - "# , \"@realDonaldTrump\": 'indigo'\n", - "# , \"@justinbieber\":\"fuchsia\"\n", - "# , \"@KylieJenner\":\"gold\"\n", - "# })\n", + "# , facecolors = Temp_DF.influencer.map(influencersDictionary)\n", "# )\n", "\n", "# # # Set the legend \n", diff --git a/MainIB.ipynb b/MainIB.ipynb new file mode 100644 index 0000000..af5ac78 --- /dev/null +++ b/MainIB.ipynb @@ -0,0 +1,3552 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Data Analysis of the Influencers:\n", + "# 2. Sentiment Analysis of the Influencers: \n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Import the Dependencies\n", + "import tweepy\n", + "import json\n", + "import numpy as np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "# import time\n", + "from datetime import datetime, timezone\n", + "# import seaborn as sns\n", + "from os import path, makedirs # fetch path and makedirs function from os file\n", + "import csv # fetch csv file\n", + "from glob import glob # fetching glob function only from the glob lib" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Import keys from the config file\n", + "from config import consumer_key, consumer_secret, access_token, access_token_secret" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# # Twitter API Keys\n", + "# consumer_key = 'Your Key'\n", + "# consumer_secret = 'Your Key'\n", + "# access_token = 'Your Key'\n", + "# access_token_secret = 'Your Key'" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Import and Initialize Sentiment Analyzer\n", + "from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer\n", + "analyzer = SentimentIntensityAnalyzer()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# Setup Tweepy API Authentication\n", + "auth = tweepy.OAuthHandler(consumer_key, consumer_secret)\n", + "auth.set_access_token(access_token, access_token_secret)\n", + "api = tweepy.API(auth, parser=tweepy.parsers.JSONParser())" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# Load and read csv file containing the details of the Influencers \n", + "influencer_data_load = \"RawData/SentimentInfluencerInputData.csv\"\n", + "influencer_data_read = pd.read_csv(influencer_data_load)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-----------Start extraction!!!-----------\n", + "exception for @ilanusglazer: Not authorized.\n", + "exception for @billieelish: Not authorized.\n", + "----------- Extraction Complete !!!-----------\n", + "2\n" + ] + } + ], + "source": [ + "# for index, row in Influencers_DF.iterrows():\n", + "Data_Influencers_DF = influencer_data_read\n", + "Not_Found = 0\n", + "\n", + "#SS - define variable for holding tweets for influencer\n", + "\n", + "all_tweet_listing = []\n", + "\n", + "print(\"-----------Start extraction!!!-----------\")\n", + "\n", + "for index, row in Data_Influencers_DF.iterrows():\n", + " target_user = row[\"Twitter_Handle\"]\n", + " Genre = row[\"Genre\"]\n", + " \n", + " try:\n", + " \n", + " #SS - retrieve top 200 tweets for influencer\n", + " \n", + " public_tweets = api.user_timeline(target_user, count=200, result_type=\"recent\")\n", + "\n", + " #SS - write to all_tweet_listing\n", + "\n", + " for tweet in public_tweets:\n", + " \n", + " Date = datetime.strptime(tweet['created_at'],'%a %b %d %H:%M:%S %z %Y').strftime('%m/%d/%Y')\n", + "\n", + " all_tweet_listing.append({\"Influencer\":target_user,\n", + " \"Date\": Date,\n", + " \"Genre\":Genre,\n", + " \"Tweet\":tweet[\"text\"]})\n", + " \n", + " user_account = api.get_user(target_user)\n", + " \n", + " user_geo_enabled = user_account[\"geo_enabled\"]\n", + " \n", + " if (user_geo_enabled == True):\n", + " Data_Influencers_DF.at[index, \"Loc\"] = user_account[\"location\"]\n", + " else:\n", + " Data_Influencers_DF.at[index, \"Loc\"] = 'NA'\n", + "\n", + " if (user_account[\"lang\"] == 'en'):\n", + " Data_Influencers_DF.at[index, \"Lang\"] = 'Eng'\n", + " else:\n", + " Data_Influencers_DF.at[index, \"Lang\"] = 'NA'\n", + " \n", + " Data_Influencers_DF.at[index, \"Created On\"] = datetime.strptime(user_account['created_at'],'%a %b %d %H:%M:%S %z %Y').strftime('%m/%d/%Y')\n", + " \n", + " Data_Influencers_DF.at[index, \"Age Of Account\"] = (datetime.now(timezone.utc) - datetime.strptime(user_account['created_at'],'%a %b %d %H:%M:%S %z %Y')).days\n", + " \n", + " \n", + " # Data_Influencers_DF.at[index, \"Real Name\"] = user_real_name\n", + " Data_Influencers_DF.at[index, \"Tweets\"] = user_account[\"statuses_count\"]\n", + " Data_Influencers_DF.at[index, \"Followers\"] = user_account[\"followers_count\"]\n", + " Data_Influencers_DF.at[index, \"Following\"] = user_account[\"friends_count\"]\n", + " Data_Influencers_DF.at[index, \"Favorites Count\"] = user_account[\"favourites_count\"]\n", + " \n", + " \n", + " \n", + " except tweepy.TweepError as e:\n", + " Not_Found = Not_Found + 1\n", + " print(f\"exception for {row['Twitter_Handle']}: {e}\")\n", + "\n", + "print(\"----------- Extraction Complete !!!-----------\") \n", + "print(Not_Found)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "#SS -translate dict to a dataframe\n", + "tweet_listing_pd = pd.DataFrame.from_dict(all_tweet_listing)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 68506 entries, 0 to 68505\n", + "Data columns (total 4 columns):\n", + "Date 68506 non-null object\n", + "Genre 68506 non-null object\n", + "Influencer 68506 non-null object\n", + "Tweet 68506 non-null object\n", + "dtypes: object(4)\n", + "memory usage: 2.1+ MB\n" + ] + } + ], + "source": [ + "#SS -stats for tweet listing for influencers. PLEASE DON'T REMOVE. Required to quantify digital footprint!\n", + "tweet_listing_pd.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "#SS -top 1000 key words from Influencer tweets\n", + "\n", + "Top_1000 = pd.Series(' '.join(tweet_listing_pd['Tweet']).lower().split()).value_counts()[:1000]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "Top_1000.to_csv(\"RawData/Top_1000_keywords.csv\", index=True, header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "#SS - Write to CSV for analysis\n", + "tweet_listing_pd.to_csv(\"RawData/TweetListings.csv\", index=False, header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# #SS - define target tags for social and entertainment\n", + "\n", + "# social_target_tags = [\"#FamiliesBelongTogetherMarch\",\"#gun\",\"gun\",\"shooting\",\"gun-control\",\"election\",\"#metoo\",\"metoo\",\"FamiliesBelongTogetherMarch\",\"PrideMonth\",\"#PrideMonth\",\"FamiliesBelongTogether\",\"ChildreninCages\",\"UniteTheFamilies\",\"WeCare\"]\n", + "\n", + "# entertainment_target_tags = [\"#SocialMediaDay\",\"SocialMediaDay\",\"WorldCup\",\"#WorldCup\",\"#fifa\",\"fifa\", \"#worldcup2018russia\",\"#PostASongLyricYouLove\"]\n", + "\n", + "# #SS - define lists to hold tweets based on tags\n", + "\n", + "# social_tweet_list_dict = []\n", + "\n", + "# entertainment_tweet_list_dict = []\n", + "\n", + "# for index, row in tweet_listing_pd.iterrows():\n", + " \n", + "# tweet_listing_filtered = [tweet_listing_pd[tweet_listing_pd['Tweet'].str.contains(x)] for x in target_tags]\n", + " \n", + "# for tweet_list in tweet_listing_filtered:\n", + "# Date = tweet_list[\"Date\"]\n", + "# Genre = tweet_list[\"Genre\"]\n", + "# Influencer = tweet_list[\"Influencer\"]\n", + "# Tweet = tweet_list[\"Tweet\"]\n", + "# tweet_list_dict.append({\n", + "# \"Data\" : Data,\n", + "# \"Genre\":Genre,\n", + "# \"Influencer\": Influencer,\n", + "# \"Tweet\" : Tweet\n", + "# })" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites Count
0@_AnneHathawayAnneHathawayActorsNAEng09/13/20122117.02.0281.00.00.0
1@IAMannalynnemccAnnaLynneMcCordActorsNAEng01/16/20103088.05776.0228661.0502.02157.0
2@EmmaWatsonEmmaWatsonActorsNAEng07/14/20102909.01642.029140162.0382.0991.0
3@JuliaRobertsJuliaRobertsActorsNAEng01/13/20112726.00.0544646.00.00.0
4@LeoDiCaprioLeonardoDiCaprioActorsNAEng04/16/20102998.01284.019326516.0145.040.0
5@EvaLongoriaEvaBastonActorsLos Angeles, CAEng02/02/20103071.015805.07692030.0809.0151.0
6@TheRockDwayneJohnsonActorsNAEng02/11/20112697.021649.013042164.0242.0142.0
7@jessicaalbaJessicaAlbaActorsNAEng11/24/20093141.06244.09649302.01359.01442.0
8@EllenPompeoEllenPompeoActorsNY/LAEng03/23/20131927.05211.01551655.0541.06060.0
9@JessicaCapshawJessicaCapshawActorsNAEng05/05/20112614.04017.0935902.0348.086.0
10@sarahdrewSarahDrewActorsNAEng11/14/20093152.09611.0822507.0201.0622.0
11@IamSandraOhSandraOhActorsEng09/20/20131745.0578.01005713.021.014.0
12@SaraRamirezSaraRamirezActorsNAEng07/30/20131797.08029.0820479.0801.06653.0
13@iJesseWilliamsJesseWilliamsActorsNAEng04/12/20093368.019838.02400105.03532.05715.0
14@TheRealKMcKiddKevinMcKiddActorsNAEng04/05/20093375.07614.0771047.0502.0386.0
15@KatieHeiglKatherineHeiglActorsUtah / TorontoEng11/03/20093163.08474.01325732.0117.03119.0
16@JasonWGeorgeJasonGeorgeActorsNAEng09/19/20122111.04306.0236855.0697.03018.0
17@chy_leighChylerLeighActorsNAEng03/02/20141582.05811.0302030.0427.05544.0
18@katewalshKateWalshActorsNAEng08/30/20093227.018111.0894868.0828.03557.0
19@KellyMcCrearyKellyMcCrearyActorsNAEng12/26/20112380.04045.0256633.0526.011760.0
20@IWashingtonIsaiahWashingtonActorsEverywhere I tweet...Eng02/06/20112703.029863.098706.07490.011410.0
21@DohertyShannenShannenDohertyActorsNAEng03/02/20103043.09347.0584141.0611.03618.0
22@shenaegrimesShenaeGrimesActorsNAEng03/13/20103033.05713.0228872.085.097.0
23@JessicaLStroupJessicaStroupActorsNAEng04/23/20102992.01682.0199237.0330.0759.0
24@MattLanterMattLanterActorsEverywhereEng11/12/20093153.08770.0458177.0403.02391.0
25@MACKWILDSTristanWildsActorsEng03/03/20093408.042826.0182099.01999.01103.0
26@EmilyVanCampEmilyVanCampActorsNAEng05/22/20112598.01592.0555772.0235.0100.0
27@Gabriel_MannGabrielMannActorsNAEng05/11/20102974.014831.0262303.0997.024288.0
28@Nick_WechslerNickWechslerActorsNAEng06/17/20131841.04518.0152087.01201.010851.0
29@christabrittanyChristaAllenActorsLos AngelesEng08/18/20102875.01481.0110136.0454.0615.0
.......................................
332@NoahpinionNoahSmithEconomistsNAEng04/14/20112636.0140766.0102263.0811.0211591.0
333@Austan_GoolsbeeAustanGoolsbeeEconomistsChicagoEng11/19/20102782.04770.076969.0456.01607.0
334@BruceBartlettBruceBartlettEconomistsNAEng09/15/20112482.035390.061226.0952.033.0
335@mileskimballMileskimballEconomistsNAEng10/05/20093192.038996.016217.0920.010640.0
336@KingEconomistStephenKingEconomistsNAEng07/30/20122163.04218.020688.0281.0170.0
337@jodiecongirlJodiBeggsEconomistsNAEng04/14/20093366.038900.015121.02832.020194.0
338@kaushikcbasukaushikBasuEconomistsNew YorkEng12/02/20083499.05585.0109928.0643.02339.0
339@haroldpollackHaroldPollackEconomistsNAEng12/25/20093111.065220.020533.02426.07087.0
340@econofloveShoshanaGrossbardEconomistsSan Diego USAEng07/06/20093282.017549.04156.02334.04082.0
341@SBronarsStephenBronarsEconomistsNAEng07/11/20112548.04965.02951.0606.098.0
342@joebrusuelasJosephBrusuelasEconomistsNew York CityEng01/28/20103077.021986.09074.03127.025138.0
343@IanShepherdsonIanShepherdsonEconomistsNAEng07/06/20112553.04291.011640.0518.0254.0
344@bill_easterlyWilliamEasterlyEconomistsNew York CityEng04/27/20093353.013459.0109908.01990.0443.0
345@AllisonSchragerAllisonSchragerEconomistsNAEng10/12/20093185.03312.05811.0801.0922.0
346@RBReichRobertReichEconomistsNAEng05/26/20102958.08130.0593506.0220.0585.0
347@TimDuyTimDuyEconomistsNAEng09/06/20112491.018451.08762.0329.07601.0
348@kyrstensinemaKyrstenSinemaSocial_workersPhoenixEng02/13/20093426.014482.033312.0300.0269.0
349@RepBarbaraLeeBarbaraLeeSocial_workersWashington, DC and Oakland, CAEng02/07/20112702.07899.0186245.016311.03387.0
350@MikeLICSWMikeLangloisSocial_workersNAEng10/04/20102828.03996.05950.06199.0323.0
351@njsmythNancySmythSocial_workersBuffalo, NY, USAEng11/18/20083513.024414.06613.04833.04153.0
352@socworkpodcastJonathanSingerSocial_workersChicago, ILEng09/09/20093218.045408.014239.0793.022387.0
353@johannagreesonJohannaGreesonSocial_workersPhiladelphia, PAEng04/04/20093376.07981.01857.02582.0182.0
354@JimmySWJimmyYoungSocial_workersNAEng10/23/20093174.010335.02543.01997.02276.0
355@tiziana_dearingTizianadearingSocial_workersNAEng10/28/20083534.04350.01456.0430.01532.0
356@ProfessorChicJamieMitchellSocial_workersNAEng04/04/20112646.079770.01455.0572.024906.0
357@DrKumarVishwasKumarVishwasSocial_workersGhaziabad,New DelhiEng05/08/20102977.026825.04806257.097.088152.0
358@drjoekortJoeKortSocial_workersÜT: 42.439627,-82.892816Eng12/09/20083492.05527.02498.01027.02636.0
359@BDUTTBarkhaDuttSocial_workersIndiaEng02/02/20093436.0118521.06818156.01572.027894.0
360@RaggiKotakRaggiKotakSocial_workersNANA03/03/2016851.0942.0340.0400.01118.0
361@Martha7144MarthaCampbellSocial_workersBelfast, Northern IrelandEng08/04/20151062.0445.0335.01172.01092.0
\n", + "

360 rows × 12 columns

\n", + "
" + ], + "text/plain": [ + " Twitter_Handle First_Name Last_Name Genre \\\n", + "0 @_AnneHathaway Anne Hathaway Actors \n", + "1 @IAMannalynnemcc AnnaLynne McCord Actors \n", + "2 @EmmaWatson Emma Watson Actors \n", + "3 @JuliaRoberts Julia Roberts Actors \n", + "4 @LeoDiCaprio Leonardo DiCaprio Actors \n", + "5 @EvaLongoria Eva Baston Actors \n", + "6 @TheRock Dwayne Johnson Actors \n", + "7 @jessicaalba Jessica Alba Actors \n", + "8 @EllenPompeo Ellen Pompeo Actors \n", + "9 @JessicaCapshaw Jessica Capshaw Actors \n", + "10 @sarahdrew Sarah Drew Actors \n", + "11 @IamSandraOh Sandra Oh Actors \n", + "12 @SaraRamirez Sara Ramirez Actors \n", + "13 @iJesseWilliams Jesse Williams Actors \n", + "14 @TheRealKMcKidd Kevin McKidd Actors \n", + "15 @KatieHeigl Katherine Heigl Actors \n", + "16 @JasonWGeorge Jason George Actors \n", + "17 @chy_leigh Chyler Leigh Actors \n", + "18 @katewalsh Kate Walsh Actors \n", + "19 @KellyMcCreary Kelly McCreary Actors \n", + "20 @IWashington Isaiah Washington Actors \n", + "21 @DohertyShannen Shannen Doherty Actors \n", + "22 @shenaegrimes Shenae Grimes Actors \n", + "23 @JessicaLStroup Jessica Stroup Actors \n", + "24 @MattLanter Matt Lanter Actors \n", + "25 @MACKWILDS Tristan Wilds Actors \n", + "26 @EmilyVanCamp Emily VanCamp Actors \n", + "27 @Gabriel_Mann Gabriel Mann Actors \n", + "28 @Nick_Wechsler Nick Wechsler Actors \n", + "29 @christabrittany Christa Allen Actors \n", + ".. ... ... ... ... \n", + "332 @Noahpinion Noah Smith Economists \n", + "333 @Austan_Goolsbee Austan Goolsbee Economists \n", + "334 @BruceBartlett Bruce Bartlett Economists \n", + "335 @mileskimball Miles kimball Economists \n", + "336 @KingEconomist Stephen King Economists \n", + "337 @jodiecongirl Jodi Beggs Economists \n", + "338 @kaushikcbasu kaushik Basu Economists \n", + "339 @haroldpollack Harold Pollack Economists \n", + "340 @econoflove Shoshana Grossbard Economists \n", + "341 @SBronars Stephen Bronars Economists \n", + "342 @joebrusuelas Joseph Brusuelas Economists \n", + "343 @IanShepherdson Ian Shepherdson Economists \n", + "344 @bill_easterly William Easterly Economists \n", + "345 @AllisonSchrager Allison Schrager Economists \n", + "346 @RBReich Robert Reich Economists \n", + "347 @TimDuy Tim Duy Economists \n", + "348 @kyrstensinema Kyrsten Sinema Social_workers \n", + "349 @RepBarbaraLee Barbara Lee Social_workers \n", + "350 @MikeLICSW Mike Langlois Social_workers \n", + "351 @njsmyth Nancy Smyth Social_workers \n", + "352 @socworkpodcast Jonathan Singer Social_workers \n", + "353 @johannagreeson Johanna Greeson Social_workers \n", + "354 @JimmySW Jimmy Young Social_workers \n", + "355 @tiziana_dearing Tiziana dearing Social_workers \n", + "356 @ProfessorChic Jamie Mitchell Social_workers \n", + "357 @DrKumarVishwas Kumar Vishwas Social_workers \n", + "358 @drjoekort Joe Kort Social_workers \n", + "359 @BDUTT Barkha Dutt Social_workers \n", + "360 @RaggiKotak Raggi Kotak Social_workers \n", + "361 @Martha7144 Martha Campbell Social_workers \n", + "\n", + " Loc Lang Created On Age Of Account \\\n", + "0 NA Eng 09/13/2012 2117.0 \n", + "1 NA Eng 01/16/2010 3088.0 \n", + "2 NA Eng 07/14/2010 2909.0 \n", + "3 NA Eng 01/13/2011 2726.0 \n", + "4 NA Eng 04/16/2010 2998.0 \n", + "5 Los Angeles, CA Eng 02/02/2010 3071.0 \n", + "6 NA Eng 02/11/2011 2697.0 \n", + "7 NA Eng 11/24/2009 3141.0 \n", + "8 NY/LA Eng 03/23/2013 1927.0 \n", + "9 NA Eng 05/05/2011 2614.0 \n", + "10 NA Eng 11/14/2009 3152.0 \n", + "11 Eng 09/20/2013 1745.0 \n", + "12 NA Eng 07/30/2013 1797.0 \n", + "13 NA Eng 04/12/2009 3368.0 \n", + "14 NA Eng 04/05/2009 3375.0 \n", + "15 Utah / Toronto Eng 11/03/2009 3163.0 \n", + "16 NA Eng 09/19/2012 2111.0 \n", + "17 NA Eng 03/02/2014 1582.0 \n", + "18 NA Eng 08/30/2009 3227.0 \n", + "19 NA Eng 12/26/2011 2380.0 \n", + "20 Everywhere I tweet... Eng 02/06/2011 2703.0 \n", + "21 NA Eng 03/02/2010 3043.0 \n", + "22 NA Eng 03/13/2010 3033.0 \n", + "23 NA Eng 04/23/2010 2992.0 \n", + "24 Everywhere Eng 11/12/2009 3153.0 \n", + "25 Eng 03/03/2009 3408.0 \n", + "26 NA Eng 05/22/2011 2598.0 \n", + "27 NA Eng 05/11/2010 2974.0 \n", + "28 NA Eng 06/17/2013 1841.0 \n", + "29 Los Angeles Eng 08/18/2010 2875.0 \n", + ".. ... ... ... ... \n", + "332 NA Eng 04/14/2011 2636.0 \n", + "333 Chicago Eng 11/19/2010 2782.0 \n", + "334 NA Eng 09/15/2011 2482.0 \n", + "335 NA Eng 10/05/2009 3192.0 \n", + "336 NA Eng 07/30/2012 2163.0 \n", + "337 NA Eng 04/14/2009 3366.0 \n", + "338 New York Eng 12/02/2008 3499.0 \n", + "339 NA Eng 12/25/2009 3111.0 \n", + "340 San Diego USA Eng 07/06/2009 3282.0 \n", + "341 NA Eng 07/11/2011 2548.0 \n", + "342 New York City Eng 01/28/2010 3077.0 \n", + "343 NA Eng 07/06/2011 2553.0 \n", + "344 New York City Eng 04/27/2009 3353.0 \n", + "345 NA Eng 10/12/2009 3185.0 \n", + "346 NA Eng 05/26/2010 2958.0 \n", + "347 NA Eng 09/06/2011 2491.0 \n", + "348 Phoenix Eng 02/13/2009 3426.0 \n", + "349 Washington, DC and Oakland, CA Eng 02/07/2011 2702.0 \n", + "350 NA Eng 10/04/2010 2828.0 \n", + "351 Buffalo, NY, USA Eng 11/18/2008 3513.0 \n", + "352 Chicago, IL Eng 09/09/2009 3218.0 \n", + "353 Philadelphia, PA Eng 04/04/2009 3376.0 \n", + "354 NA Eng 10/23/2009 3174.0 \n", + "355 NA Eng 10/28/2008 3534.0 \n", + "356 NA Eng 04/04/2011 2646.0 \n", + "357 Ghaziabad,New Delhi Eng 05/08/2010 2977.0 \n", + "358 ÜT: 42.439627,-82.892816 Eng 12/09/2008 3492.0 \n", + "359 India Eng 02/02/2009 3436.0 \n", + "360 NA NA 03/03/2016 851.0 \n", + "361 Belfast, Northern Ireland Eng 08/04/2015 1062.0 \n", + "\n", + " Tweets Followers Following Favorites Count \n", + "0 2.0 281.0 0.0 0.0 \n", + "1 5776.0 228661.0 502.0 2157.0 \n", + "2 1642.0 29140162.0 382.0 991.0 \n", + "3 0.0 544646.0 0.0 0.0 \n", + "4 1284.0 19326516.0 145.0 40.0 \n", + "5 15805.0 7692030.0 809.0 151.0 \n", + "6 21649.0 13042164.0 242.0 142.0 \n", + "7 6244.0 9649302.0 1359.0 1442.0 \n", + "8 5211.0 1551655.0 541.0 6060.0 \n", + "9 4017.0 935902.0 348.0 86.0 \n", + "10 9611.0 822507.0 201.0 622.0 \n", + "11 578.0 1005713.0 21.0 14.0 \n", + "12 8029.0 820479.0 801.0 6653.0 \n", + "13 19838.0 2400105.0 3532.0 5715.0 \n", + "14 7614.0 771047.0 502.0 386.0 \n", + "15 8474.0 1325732.0 117.0 3119.0 \n", + "16 4306.0 236855.0 697.0 3018.0 \n", + "17 5811.0 302030.0 427.0 5544.0 \n", + "18 18111.0 894868.0 828.0 3557.0 \n", + "19 4045.0 256633.0 526.0 11760.0 \n", + "20 29863.0 98706.0 7490.0 11410.0 \n", + "21 9347.0 584141.0 611.0 3618.0 \n", + "22 5713.0 228872.0 85.0 97.0 \n", + "23 1682.0 199237.0 330.0 759.0 \n", + "24 8770.0 458177.0 403.0 2391.0 \n", + "25 42826.0 182099.0 1999.0 1103.0 \n", + "26 1592.0 555772.0 235.0 100.0 \n", + "27 14831.0 262303.0 997.0 24288.0 \n", + "28 4518.0 152087.0 1201.0 10851.0 \n", + "29 1481.0 110136.0 454.0 615.0 \n", + ".. ... ... ... ... \n", + "332 140766.0 102263.0 811.0 211591.0 \n", + "333 4770.0 76969.0 456.0 1607.0 \n", + "334 35390.0 61226.0 952.0 33.0 \n", + "335 38996.0 16217.0 920.0 10640.0 \n", + "336 4218.0 20688.0 281.0 170.0 \n", + "337 38900.0 15121.0 2832.0 20194.0 \n", + "338 5585.0 109928.0 643.0 2339.0 \n", + "339 65220.0 20533.0 2426.0 7087.0 \n", + "340 17549.0 4156.0 2334.0 4082.0 \n", + "341 4965.0 2951.0 606.0 98.0 \n", + "342 21986.0 9074.0 3127.0 25138.0 \n", + "343 4291.0 11640.0 518.0 254.0 \n", + "344 13459.0 109908.0 1990.0 443.0 \n", + "345 3312.0 5811.0 801.0 922.0 \n", + "346 8130.0 593506.0 220.0 585.0 \n", + "347 18451.0 8762.0 329.0 7601.0 \n", + "348 14482.0 33312.0 300.0 269.0 \n", + "349 7899.0 186245.0 16311.0 3387.0 \n", + "350 3996.0 5950.0 6199.0 323.0 \n", + "351 24414.0 6613.0 4833.0 4153.0 \n", + "352 45408.0 14239.0 793.0 22387.0 \n", + "353 7981.0 1857.0 2582.0 182.0 \n", + "354 10335.0 2543.0 1997.0 2276.0 \n", + "355 4350.0 1456.0 430.0 1532.0 \n", + "356 79770.0 1455.0 572.0 24906.0 \n", + "357 26825.0 4806257.0 97.0 88152.0 \n", + "358 5527.0 2498.0 1027.0 2636.0 \n", + "359 118521.0 6818156.0 1572.0 27894.0 \n", + "360 942.0 340.0 400.0 1118.0 \n", + "361 445.0 335.0 1172.0 1092.0 \n", + "\n", + "[360 rows x 12 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Remove missing values.\n", + "Data_Influencers_DF.dropna()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GenreTweetsFollowersAverage TweetsAge Of Account
Genre
Musicians45455009.0919259059.010341.1136363017.272727
Sports_celeb118896542.0511945727.07597.8135592793.949153
Politicians73574949.0247552708.07876.0136992820.671233
Comedians44481228.0210158532.011191.3488373141.348837
Actors42387929.0103374128.09236.4047622689.880952
Social_workers14350895.011881256.025063.9285712873.928571
Economists26579477.02194508.022287.5769232851.000000
\n", + "
" + ], + "text/plain": [ + " Genre Tweets Followers Average Tweets Age Of Account\n", + "Genre \n", + "Musicians 45 455009.0 919259059.0 10341.113636 3017.272727\n", + "Sports_celeb 118 896542.0 511945727.0 7597.813559 2793.949153\n", + "Politicians 73 574949.0 247552708.0 7876.013699 2820.671233\n", + "Comedians 44 481228.0 210158532.0 11191.348837 3141.348837\n", + "Actors 42 387929.0 103374128.0 9236.404762 2689.880952\n", + "Social_workers 14 350895.0 11881256.0 25063.928571 2873.928571\n", + "Economists 26 579477.0 2194508.0 22287.576923 2851.000000" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Grouped on Genre \n", + "Data_Influencers_DF['Average Tweets'] = Data_Influencers_DF['Tweets']\n", + "AggregatedGenre= Data_Influencers_DF.groupby([\"Genre\"]).agg({'Genre': 'count', 'Tweets': 'sum', 'Followers': 'sum','Average Tweets':'mean','Age Of Account':'mean'})\n", + "AggregatedGenre\n", + "AggregatedGenre.sort_values(['Followers'], ascending=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GenreTweetsFollowersAverage TweetsAge Of Account
Genre
Social_workers14350895.011881256.025063.9285712873.928571
Economists26579477.02194508.022287.5769232851.000000
Comedians44481228.0210158532.011191.3488373141.348837
Musicians45455009.0919259059.010341.1136363017.272727
Actors42387929.0103374128.09236.4047622689.880952
Politicians73574949.0247552708.07876.0136992820.671233
Sports_celeb118896542.0511945727.07597.8135592793.949153
\n", + "
" + ], + "text/plain": [ + " Genre Tweets Followers Average Tweets Age Of Account\n", + "Genre \n", + "Social_workers 14 350895.0 11881256.0 25063.928571 2873.928571\n", + "Economists 26 579477.0 2194508.0 22287.576923 2851.000000\n", + "Comedians 44 481228.0 210158532.0 11191.348837 3141.348837\n", + "Musicians 45 455009.0 919259059.0 10341.113636 3017.272727\n", + "Actors 42 387929.0 103374128.0 9236.404762 2689.880952\n", + "Politicians 73 574949.0 247552708.0 7876.013699 2820.671233\n", + "Sports_celeb 118 896542.0 511945727.0 7597.813559 2793.949153" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Sorting on Average Tweets and grouped on Genere\n", + "AggregatedGenre.sort_values(['Average Tweets'],ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
332@NoahpinionNoahSmithEconomistsNAEng04/14/20112636.0140766.0102263.0811.0211591.0140766.0
359@BDUTTBarkhaDuttSocial_workersIndiaEng02/02/20093436.0118521.06818156.01572.027894.0118521.0
356@ProfessorChicJamieMitchellSocial_workersNAEng04/04/20112646.079770.01455.0572.024906.079770.0
339@haroldpollackHaroldPollackEconomistsNAEng12/25/20093111.065220.020533.02426.07087.065220.0
276@CoryBookerCoryBookerPoliticiansNewark, NJEng08/11/20083612.061946.04121418.093082.091.061946.0
325@MarkThomaMarkThomaEconomistsNAEng10/18/20083544.060103.044686.0417.05.060103.0
82@ilizaIlizaShiesingerComediansHollywood, CAEng02/15/20093424.049167.0170286.0468.027094.049167.0
125@IGGYAZALEAIggyAzaleaMusiciansCalifornia, USAEng06/09/20102945.047711.08083823.06510.04226.047711.0
216@criscyborgCrisCyborgSports_celebcris.cyborg.llc@gmail.comEng11/29/20093137.046474.0191707.02133.012424.046474.0
352@socworkpodcastJonathanSingerSocial_workersChicago, ILEng09/09/20093218.045408.014239.0793.022387.045408.0
\n", + "
" + ], + "text/plain": [ + " Twitter_Handle First_Name Last_Name Genre \\\n", + "332 @Noahpinion Noah Smith Economists \n", + "359 @BDUTT Barkha Dutt Social_workers \n", + "356 @ProfessorChic Jamie Mitchell Social_workers \n", + "339 @haroldpollack Harold Pollack Economists \n", + "276 @CoryBooker Cory Booker Politicians \n", + "325 @MarkThoma Mark Thoma Economists \n", + "82 @iliza Iliza Shiesinger Comedians \n", + "125 @IGGYAZALEA Iggy Azalea Musicians \n", + "216 @criscyborg Cris Cyborg Sports_celeb \n", + "352 @socworkpodcast Jonathan Singer Social_workers \n", + "\n", + " Loc Lang Created On Age Of Account Tweets \\\n", + "332 NA Eng 04/14/2011 2636.0 140766.0 \n", + "359 India Eng 02/02/2009 3436.0 118521.0 \n", + "356 NA Eng 04/04/2011 2646.0 79770.0 \n", + "339 NA Eng 12/25/2009 3111.0 65220.0 \n", + "276 Newark, NJ Eng 08/11/2008 3612.0 61946.0 \n", + "325 NA Eng 10/18/2008 3544.0 60103.0 \n", + "82 Hollywood, CA Eng 02/15/2009 3424.0 49167.0 \n", + "125 California, USA Eng 06/09/2010 2945.0 47711.0 \n", + "216 cris.cyborg.llc@gmail.com Eng 11/29/2009 3137.0 46474.0 \n", + "352 Chicago, IL Eng 09/09/2009 3218.0 45408.0 \n", + "\n", + " Followers Following Favorites Count Average Tweets \n", + "332 102263.0 811.0 211591.0 140766.0 \n", + "359 6818156.0 1572.0 27894.0 118521.0 \n", + "356 1455.0 572.0 24906.0 79770.0 \n", + "339 20533.0 2426.0 7087.0 65220.0 \n", + "276 4121418.0 93082.0 91.0 61946.0 \n", + "325 44686.0 417.0 5.0 60103.0 \n", + "82 170286.0 468.0 27094.0 49167.0 \n", + "125 8083823.0 6510.0 4226.0 47711.0 \n", + "216 191707.0 2133.0 12424.0 46474.0 \n", + "352 14239.0 793.0 22387.0 45408.0 " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# People who are top ten Influencer who tweet more\n", + "top_ten_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(10)\n", + "top_ten_twitters" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
91@katyperryKatyPerryMusiciansEng02/20/20093418.09219.0109571067.0216.06214.09219.0
251@BarackObamaBarackObamaPoliticiansNAEng03/05/20074136.015517.0103449691.0621137.011.015517.0
86@taylorswift13TaylorSwiftMusiciansNAEng12/06/20083495.0100.085536713.00.0458.0100.0
95@ladygagaLadyGagaMusiciansNAEng03/26/20083749.08764.078890899.0127026.01915.08764.0
66@TheEllenShowEllenDeGeneresComediansCaliforniaEng08/14/20083609.016963.078048792.035733.0954.016963.0
139@CristianoCristianoRonaldoSports_celebMadridNA06/14/20102940.03212.074197970.099.00.03212.0
105@jtimberlakeJustinTimberlakeMusiciansMemphis, TNEng03/25/20093386.03975.066044354.0282.0192.03975.0
107@BritneySpearsBritneySpearsMusiciansNAEng09/22/20083569.05474.058234683.0386053.02554.05474.0
87@ArianaGrandeArianaGrandeMusiciansǝʌɐ uooɯʎǝuoɥEng04/23/20093357.041436.057667468.064056.034199.041436.0
122@ddlovatoDemiLovatoMusiciansDALLAS/LAEng02/17/20093422.017084.057270989.0539.02098.017084.0
\n", + "
" + ], + "text/plain": [ + " Twitter_Handle First_Name Last_Name Genre Loc Lang \\\n", + "91 @katyperry Katy Perry Musicians Eng \n", + "251 @BarackObama Barack Obama Politicians NA Eng \n", + "86 @taylorswift13 Taylor Swift Musicians NA Eng \n", + "95 @ladygaga Lady Gaga Musicians NA Eng \n", + "66 @TheEllenShow Ellen DeGeneres Comedians California Eng \n", + "139 @Cristiano Cristiano Ronaldo Sports_celeb Madrid NA \n", + "105 @jtimberlake Justin Timberlake Musicians Memphis, TN Eng \n", + "107 @BritneySpears Britney Spears Musicians NA Eng \n", + "87 @ArianaGrande Ariana Grande Musicians ǝʌɐ uooɯʎǝuoɥ Eng \n", + "122 @ddlovato Demi Lovato Musicians DALLAS/LA Eng \n", + "\n", + " Created On Age Of Account Tweets Followers Following \\\n", + "91 02/20/2009 3418.0 9219.0 109571067.0 216.0 \n", + "251 03/05/2007 4136.0 15517.0 103449691.0 621137.0 \n", + "86 12/06/2008 3495.0 100.0 85536713.0 0.0 \n", + "95 03/26/2008 3749.0 8764.0 78890899.0 127026.0 \n", + "66 08/14/2008 3609.0 16963.0 78048792.0 35733.0 \n", + "139 06/14/2010 2940.0 3212.0 74197970.0 99.0 \n", + "105 03/25/2009 3386.0 3975.0 66044354.0 282.0 \n", + "107 09/22/2008 3569.0 5474.0 58234683.0 386053.0 \n", + "87 04/23/2009 3357.0 41436.0 57667468.0 64056.0 \n", + "122 02/17/2009 3422.0 17084.0 57270989.0 539.0 \n", + "\n", + " Favorites Count Average Tweets \n", + "91 6214.0 9219.0 \n", + "251 11.0 15517.0 \n", + "86 458.0 100.0 \n", + "95 1915.0 8764.0 \n", + "66 954.0 16963.0 \n", + "139 0.0 3212.0 \n", + "105 192.0 3975.0 \n", + "107 2554.0 5474.0 \n", + "87 34199.0 41436.0 \n", + "122 2098.0 17084.0 " + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Top ten Influencer who who have more Followers\n", + "top_ten_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(10)\n", + "top_ten_influencer" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# Still Working test cell\n", + "# to find the handle of followers of the top most \n", + "# active Influencer so that we can send the tweet through a bot.\n", + "# top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))\n", + "# import time\n", + "# ids = []\n", + "# for page in tweepy.Cursor(api.followers_ids, top_ten_twitters.head(1)['Twitter_Handle'].map(lambda x: x.lstrip('@'))).pages():\n", + "# ids.extend(page)\n", + "# time.sleep(60)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Sentiment Analysis of the Influencers: " + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "###\n", + "# Influencers = influencer_data_read\n", + "# s = Influencers.iloc[:,0]\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Scatter Plot for Sentimental Analysis of Top 5 Influences last 100 tweets " + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
91@katyperryKatyPerryMusiciansEng02/20/20093418.09219.0109571067.0216.06214.09219.0
251@BarackObamaBarackObamaPoliticiansNAEng03/05/20074136.015517.0103449691.0621137.011.015517.0
86@taylorswift13TaylorSwiftMusiciansNAEng12/06/20083495.0100.085536713.00.0458.0100.0
95@ladygagaLadyGagaMusiciansNAEng03/26/20083749.08764.078890899.0127026.01915.08764.0
66@TheEllenShowEllenDeGeneresComediansCaliforniaEng08/14/20083609.016963.078048792.035733.0954.016963.0
\n", + "
" + ], + "text/plain": [ + " Twitter_Handle First_Name Last_Name Genre Loc Lang \\\n", + "91 @katyperry Katy Perry Musicians Eng \n", + "251 @BarackObama Barack Obama Politicians NA Eng \n", + "86 @taylorswift13 Taylor Swift Musicians NA Eng \n", + "95 @ladygaga Lady Gaga Musicians NA Eng \n", + "66 @TheEllenShow Ellen DeGeneres Comedians California Eng \n", + "\n", + " Created On Age Of Account Tweets Followers Following \\\n", + "91 02/20/2009 3418.0 9219.0 109571067.0 216.0 \n", + "251 03/05/2007 4136.0 15517.0 103449691.0 621137.0 \n", + "86 12/06/2008 3495.0 100.0 85536713.0 0.0 \n", + "95 03/26/2008 3749.0 8764.0 78890899.0 127026.0 \n", + "66 08/14/2008 3609.0 16963.0 78048792.0 35733.0 \n", + "\n", + " Favorites Count Average Tweets \n", + "91 6214.0 9219.0 \n", + "251 11.0 15517.0 \n", + "86 458.0 100.0 \n", + "95 1915.0 8764.0 \n", + "66 954.0 16963.0 " + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IB People who are top 5 Influencer, with the greatest number of followers\n", + "top_5_influencer = Data_Influencers_DF.sort_values(['Followers'],ascending=False).head(5)\n", + "top_5_influencer" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-----------Start extraction of the tweets posted by the Influencers!!!-----------\n", + "Extracting tweets from @katyperry\n", + "Extracting tweets from @BarackObama\n", + "Extracting tweets from @taylorswift13\n", + "Extracting tweets from @ladygaga\n", + "Extracting tweets from @TheEllenShow\n", + "-----------End of Extraction of Tweets !!!-----------\n" + ] + } + ], + "source": [ + "#IB Working Module -- Extract the first 100 tweets of the top ten Influencers\n", + "\n", + "# Extract the first 100 tweets of the Influencers\n", + "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", + "Influencers = []\n", + "Influencers = top_5_influencer[\"Twitter_Handle\"]\n", + "Influencers\n", + "\n", + "# IB Influencer's overall sentiments\n", + "Influencers_overall_results = []\n", + "\n", + "Sentiment_array_infl = []\n", + "\n", + "# IB loop through each top ten influencer\n", + "for user in Influencers:\n", + " \n", + " # IB Variables for holding compound sentiments\n", + " compound_list = []\n", + " \n", + " # IB Variable for max_id\n", + " oldest_tweet = None\n", + " \n", + " # Set the tweet count to 100\n", + " tweet_count = 0\n", + " print(\"Extracting tweets from %s\"%user)\n", + " \n", + " # Extract tweets up to 5 pages\n", + " for x in range(5):\n", + " ### IB - it is working - print(f\"For page number: '{x}' \")\n", + " influencer_tweets = api.user_timeline(user,page = x, max_id = oldest_tweet ) \n", + " \n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in influencer_tweets:\n", + " \n", + " #Calculate the compound, positive, negative and neutral values of each tweet\n", + " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", + " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", + " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", + " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", + " \n", + " # Save the Tweets in an array as a dictionery item \n", + " Sentiment_array_infl.append({\"Influencers\" : user,\n", + " \"Tweet Text\" : tweet[\"text\"],\n", + " \"Compound\" : compound,\n", + " \"Positive\" : pos,\n", + " \"Negative\" : neg,\n", + " \"Neutral\" : neu,\n", + " \"Date\" : tweet[\"created_at\"],\n", + " \"Tweets Ago\" : tweet_count\n", + " })\n", + " \n", + " # IB Collect compund sentiments for each Infuencer\n", + " compound_list.append(compound)\n", + " \n", + " #Decrease count of tweet by 1 in the reverse order\n", + " tweet_count += 1\n", + " \n", + " # IB get Tweet ID, subtract 1,assign to oldest_tweet\n", + " oldest_tweet = tweet[\"id\"] - 1\n", + " \n", + " # IB List for dictionary of results for _overall_ sentiments for each user\n", + " Influencers_overall_results.append({\"Influencer\": user, \"Overall Sentiment\": np.mean(compound_list)})\n", + "\n", + "print(\"-----------End of Extraction of Tweets !!!-----------\")\n", + "###Influencers_overall_results" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CompoundDateInfluencersNegativeNeutralPositiveTweet TextTweets Ago
00.8805Sat Jun 23 01:18:28 +0000 2018@katyperry0.0000.6380.362Was so proud to give the gift of #transcendent...0
10.0000Fri Jun 22 19:27:57 +0000 2018@katyperry0.0001.0000.000found my first skin tag today. I think I’m an ...1
20.1695Thu Jun 21 02:10:52 +0000 2018@katyperry0.0000.7500.250Never forget, everyone was once a child.2
30.0000Wed Jun 20 21:10:37 +0000 2018@katyperry0.0001.0000.000My Aussies 🐨 & Kiwis 🥝! For the FINALE of ...3
40.0000Fri Jun 15 19:50:07 +0000 2018@katyperry0.0001.0000.000I 👁 you, @RoarForJess, and I ❤ you, and I’m si...4
50.0000Sat Jun 09 23:51:56 +0000 2018@katyperry0.0001.0000.000Scandinavians have figured it out.5
60.0000Sat Jun 09 14:02:29 +0000 2018@katyperry0.0001.0000.000Oi oi @JackGarratt remember when we locked our...6
70.0000Sat Jun 09 04:08:27 +0000 2018@katyperry0.0001.0000.000WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr http...7
80.0000Wed Jun 06 17:11:41 +0000 2018@katyperry0.0001.0000.000IM SCREAMINGOSBEJRMF$&2@!K https://t.co/Sn...8
9-0.8821Tue Jun 05 03:08:49 +0000 2018@katyperry0.4450.4830.072CALIFORNIANS! What’s important to you? Is it g...9
\n", + "
" + ], + "text/plain": [ + " Compound Date Influencers Negative Neutral \\\n", + "0 0.8805 Sat Jun 23 01:18:28 +0000 2018 @katyperry 0.000 0.638 \n", + "1 0.0000 Fri Jun 22 19:27:57 +0000 2018 @katyperry 0.000 1.000 \n", + "2 0.1695 Thu Jun 21 02:10:52 +0000 2018 @katyperry 0.000 0.750 \n", + "3 0.0000 Wed Jun 20 21:10:37 +0000 2018 @katyperry 0.000 1.000 \n", + "4 0.0000 Fri Jun 15 19:50:07 +0000 2018 @katyperry 0.000 1.000 \n", + "5 0.0000 Sat Jun 09 23:51:56 +0000 2018 @katyperry 0.000 1.000 \n", + "6 0.0000 Sat Jun 09 14:02:29 +0000 2018 @katyperry 0.000 1.000 \n", + "7 0.0000 Sat Jun 09 04:08:27 +0000 2018 @katyperry 0.000 1.000 \n", + "8 0.0000 Wed Jun 06 17:11:41 +0000 2018 @katyperry 0.000 1.000 \n", + "9 -0.8821 Tue Jun 05 03:08:49 +0000 2018 @katyperry 0.445 0.483 \n", + "\n", + " Positive Tweet Text Tweets Ago \n", + "0 0.362 Was so proud to give the gift of #transcendent... 0 \n", + "1 0.000 found my first skin tag today. I think I’m an ... 1 \n", + "2 0.250 Never forget, everyone was once a child. 2 \n", + "3 0.000 My Aussies 🐨 & Kiwis 🥝! For the FINALE of ... 3 \n", + "4 0.000 I 👁 you, @RoarForJess, and I ❤ you, and I’m si... 4 \n", + "5 0.000 Scandinavians have figured it out. 5 \n", + "6 0.000 Oi oi @JackGarratt remember when we locked our... 6 \n", + "7 0.000 WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr http... 7 \n", + "8 0.000 IM SCREAMINGOSBEJRMF$&2@!K https://t.co/Sn... 8 \n", + "9 0.072 CALIFORNIANS! What’s important to you? Is it g... 9 " + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IB Prepare Results Dataframe for the scatter plot\n", + "Influencers_overall_results_df = pd.DataFrame.from_dict(Sentiment_array_infl)\n", + "Influencers_overall_results_df.head(10) " + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzsnXt4VMXZwH+z2Wx2c4OELEnIlcg1GBHx0lqNXFJrS3oXLS00+KF4oRK0Qq3irV5qwWqSSrUohVQUtVct9vuURRGtVaugBAJGCEkIkJCQkGzCJtnNzvfHORvObnazuyEhUfb3PPskey5zZubMzsz7zvu+I6SUhAgRIkSIEMMN3VBnIESIECFChPBGaIAKESJEiBDDktAAFSJEiBAhhiWhASpEiBAhQgxLQgNUiBAhQoQYloQGqBAhQoQIMSwJDVABIoR4Wghxz1Dn40wjhLhfCLHxNNMY8LoTQiQKIbYLIaxCiN8OZNrDBSHEDCHEASFEmxDiKiHE+0KI+UOdrxAhzhRf6AFKCHGZEOI9IUSLEKJJCPFvIcRFA5DuQiHEu9pjUsqbpJQPnm7a/chLwAOEEGKbEKJZCBEx2PkKhkGqu8VAIxArpfy59oQQ4n/VTr1NCGEXQnRpvj89kJkQQtwkhHBo0m8TQnzVx7WThBCOIJJ/GFglpYyWUv7fwOR4+CGEeNPjfXVqvhedoTz8Qwhxx5l4VojA0Q91BvqLECIW2AzcDLwMGIDLgc6hzNdQIYTIRCl/C/Ad4M9DmZ8zQAZQLr14mkspv+n6XwixAaiVUq4cxLxsk1LmDUK6GcCeQUh30BFC6KWUAQ3GUspZmvteBHZLKR8atMyF+MLwRZagJgBIKTdJKbullDYp5RtSyl2uC4QQ/yOE2KtKFa8LITI056Q6+/1cPb9GKEwGnga+qs7gTqjXbxBCPKT+P0MIUSuEWCGEOCaEOCqE+J4Q4ltCiApVmrtL8yydEOJOVV1zXAjxshAiXj2XqealQAhRI4RoFELcrZ67CrgLuFbNy6d91MdPgfeBDUCB9oSa9zVCiNdUldgHQohzNOeLhRCHhBCtQoiPhRCXe3uAev+tHsd2qWUXQogn1PpoUY+f66XuEoQQm4UQJ9R6ekcI4bUdCiEuFUL8V03vv0KIS13pqWVcodZL0IODEGKJ5n38TQiRqB43qu/jZ0KIKiFEgxDiYSGECPYZAeThRSFEkdo2rULRAGSo52qBMcAbQog2L/c+KoR4VvPdTToTQsQLIf4khKhT3+19rnpW2/1WIUSJ+h4OaOtQfUeue5uFEC9pzn1ffbcn1HeXrTlXJ4S4QwixB2hVj92j/j5ahfJb9Nq2/NTTp0KI2er/+er7cbWFq4UQ2zTX3qr5Db4qhEjSnDtfCPG2WqY9Qog56vEVQD7wsNqenlOPP6iWqVUIUS6E+EqweQ9xmkgpv5AfIBY4DpQC3wTiPM5/D9gPTEaRFFcC72nOSxQJbCSQDjQAV6nnFgLveqS3AXhI/X8G4ADuBcKBG9T7XwBigClAB5ClXr8MZfBIBSKAPwCb1HOZal6eAUzAVBQpcLJ6/n5gYwD1sR+4BZgO2IFEj7w3ARerdfE88KLm/HxglHru50AdYPR8PnAN8IHmvqnqOzAA3wA+VutTqPWe7KXufo0yAQhXP5cDwkt54oFmYIGar3nq91Geafqpl17XAd9Sy3geYATWAlvUc0b1fbyulmUsUAnM95H+TUAbirrxM+CXgM7HtZMAh+b7i8Ax4AK1Lv4CbNCcrwMu03x/35UP4FHg2T7S/l/gd0AkkAzsBAo0ebajTGrCgNuAKs29W4Hn1PIbgFz1+FeAoyhtLAxFzVoB6DX5/S/KwOpqy5VAotomsoCxft7Xi8BKj2MlwIPq/6uAA8AvNece0PxudwHnqPleDfyvpj3VA3PVvF+K8pvIUM//A7hD88xL1PeZoOZ9HJA+1P3e2fb5wkpQUspW4DJOde4N6owpUb3kRuDXUsq9UlE1PAKcLzRSFPColPKElLIGeAs4P4gs2IGHpZR2lB9VAlAspbRKKfegqGbO0+TlbillrZSyE6XTv1oIoVWxPiAVKfBT4FOUH3dACCEuQ1EHvSyl/BjlB/xjj8v+JqX8UK2L57VllVJulFIel1I6pJS/RRlEJ3p51CvAeCHEePX7AuAlKWWXWh8xKB2lUOv9qJc07CgdZoaU0i6lfEeqPYIHc4DPpZTPqfnaBOwDvh1InfjhJ8BaKeUuKWUHsAKYrZ1to7SdE1LKg8CTKAOkNyzAucBo4FrgOqAwiLy8LKXcobajFwiuDXpFbeO5wO1SypPqeygBfqS57DMp5Z+klN0ok7wMIcRIIcRYlEnDLWr5u6SU29V7bgSelFJ+LBWtxVqUtjJdk+4TUsojUkobyiTOBGQDYVLKSrU+g+Vt4Ar1/1yUSY7r+xXqeVf+HpBSHlDb5H3AN4QQI1AGpg+llH9W8/4esAVlIusNO8rgno0y4div9hMhziBf2AEKQO0EF0opU1E6iTGAa1E1AyhWVREnUGZLAkjRJFGn+f8kEB3E44+rP24Am/q3XnPepkkvA/i7Ji97gW6UmeVA5KUAeENK2ah+fwEPNV9f6Qshfq6qX1rU/I1AGXDdUAfXl4H5qrpoHspMGynlmygd+RqgXgixVijrhJ6sRpH23hBCVAoh7vRRpjFAtcexatzfX39xS1tKeQJFJaVN+5DHc8d4S0jtuKqklE4p5ScoE6Grg8jL6bx3X2SgSIINmjZXTN/tDfXZacAxKaXVR7p3udJU0zXjo97UidqdKMYex4QQz2smkMGwHbhYCJGg5u9PKJPN0SgTqf9o8rdBk7cjKNqIVPXclR55n4MyWeqFlHIH8ABKez0mhChVnx/iDPKFHqC0SCn3oahzzlUPHQJulFKO1HxM6szJb3IDnL1DwDc98mKUUh4+3bwIIUwoqrcrVH15HYrKZqoQwq8Upq4J/EJNI05KORLF0MLXmkspigQyGzgppXR1DkgpS6SU01FUnBOA5b0Ko0iYP5dSZqFIQ7e71hc8OILSqWhJBwKpM3+4pa3OsGM90k7zeO6RANOW+K67gaQdZYbvQiv9HUJRO8Zp2luslPKCANI9BIwWQngbKA8B93q040gp5d8017i1VyllqZTyUhT1nhEI2vhBStmAohW4HfiPKh2VoajOP1KlNVf+fuTlN79HPfeqx7loKaVrguTN2OZZKeUlwHgUFfh9weY9xOnxhR2g1EXhnwshUtXvaSgz+vfVS54GfimEmKKeHyGEmBtg8vVAqhDCMEDZfRplAda1AG4WQnw3iLxkCh+GBCgqim4UVcT56mcy8A7KGoM/YlBUMQ2AXghxL0pn7RV1QHICv0WVngCEEBcJIS4RQoSjdJ4dar7cUBe5xwkhBIrU0u3tOuBfwAQhxI+FEHohxLVqGTcHUCZ/bAJuEEKcK4QwAr8B3pRSaqWKX6htJhP4GfBS72RAKIYxZvX/c1HWoF4ZgDz64xNgphAiRQgRhzLJAEBVo70PrBJCxAjFSGe8qgruE/Xe7cCTavkNQohc9fRa4FYhxIVCIVoI8R0hRKS3tIQQ2UKIK4Ti9mBTP97edSC8jfIeXOq8bR7fQfmd3edSQQvFUOQH6rk/A18TipGHXi3XpeKUsVA9yiDqyvt5QojL1T7g5GnmPUQ/+cIOUIAVZSHzAyFEO8oPcjfKIj9Syr+jdDwvCiFa1XPf9JGWJ2+irCHVCSEa/V0cAMXAqyhqLaua10sCvNdlLn5cCLHDy/kCYL2UskZKWef6oKjbfuKxzuWN11EW1CtQVFkduKu3vPEnIAfQ+mfFoqwFNqvpHAce83LveJR1mzYU1czvpZTbPC+SUh5Hsaz6uZrWCiBfo8bsN1LKzSjrGK+iSEZJKOtpWl5DWQv8COUd+PJF+yawR22Dr6Cs73kr90DzGspgXY7Snv7hcX4eipHDPhT19ku4q/j6Yh6K0cbnKKrAmwGklP8GlqIY+ZxAaTM/xreUb0KZyDSiGFdEoxgW9Ye3USZT2318R0q5Hvgj8Ir6m9+BYtCE2m6uQjEkqkd57/dzytXmKRQtxAkhRCmKdFqM0vYOo/SVZ9wP8mxHeF+fDhHCN0KInwKLpZR+Z+RfNFSJygakSSlrhzo/IUKczXyRJagQQ4CqzrkFRd0TIkSIEIPGkA5QQog/CsWxc7eP80IozoT7heIceIHmXIFQnGw/F0J4WqyFGASEEN9AWauqR7EUDBEiRIhBY0hVfOriaxvwJynluV7Ofwu4FcWx8hIUP6NLhBKF4SPgQhT998fAdCll8xnLfIgQIUKEGFSGVIJSHQCb+rjkuyiDl5RSvg+MFEIko0Qt2CKlbFIHpS0oC6AhQoQIEeJLwnAPFpuCu0VZrXrM1/FeCCEWo4RkwWg0Tk9PTx+cnA4BTqcTne7Ls4z4ZSsPfPnK9GUrT0VFRaOU0jzU+QjhneE+QHlzePTlCOlVV6mGY1kLMHHiRPnZZ58NXO6GmG3btjFjxoyhzsaA8WUrD3z5yvRlK48QwjNaSYhhxHCfCtXi7tGfiuK/4Ot4iBBnPRbLVvLzryM7exb5+ddhsWz9QqV/Os8703kLMbgM9wHqVeCnqjXfV4AWNfDl6yhxteJUL/or1WMhhpgvW+d4JrFYLORfk0/2xdnkX5OPxWLpRxpbKSxcR13dUszmN6irW0ph4boBqyer1Tqo6XsSTHkGu+whzjxDbWa+CSWawESh7K+0SCh71dykXvIvlHD9+1GiFNwCIKVsQvHq/q/6+ZV67Iyz1WLhugX5zMrN5roF+WztR6cyXAl2MBjsDuLL3AFZLBYKHymk7tw6zDeZqTu3jsJHCoMepIqKNmIyLScmZho6nZ6YmGmYTMspKgpoU2a/1NcfH9T0PQmmPINd9hBnnqG24psnpUyWUoZLKVOllOuklE9LKZ9Wz0sp5RIp5TlSyhwp5Ueae/8opRynftYPRf63Wiyse6qQpfPqeGODmaXz6lj3VOGXYpDqz2Aw2B1EIOl/USWsorVFmGaYiMmIQRemIyYjBtMME0Vrg9vxvLKymqioHLdjUVE5VFYOzFJLZ2fXoKbvSTDlGeyyhzjzDHcV37BmY2kRyxeZmHZuDHq9jmnnxrB8kYmNpcF1KsOR/gw2g91BaNNvbm5m1669lJc7ePvt/2CxbB10CWswpeXKqkqiUqPcjkWlRlFZVRlUOllZGbS3l7kda28vIyvLMzC8O4GqFyMiDP1K3x++JhZZWRkcPfouu/bs4sOPP2DXnl0cPfqu1+f1t+whhi+hAeo0qK6uJGeSe6eSMymK6urgOpXhSH8Gm8HuIFzpNzc38/nnR+jqSiUsTEdYWDaFheu4++5VgybBDba0nJWZRXttu9ux9tp2sjKzfNzhnWXL5mOzrcZq3YnT6cBq3YnNtpply+b7vCcY9WJi4qig0/dHXxOL3NzJ1BxegU1fhj5Zh01fRs3hFeTmTu5X2T0HYpSAsyGGKaEB6jTIyMiibJ97p1K2r52MjOA6leFIfwabvjqIgZA+XOkfPPgmQowB9uN0/paMjCWYTMspLx88Cc5TWs4Y4+AHM+u56aZruXbBwn4ZNGhZtngZtm02rNVWnN1OrNVWbNtsLFu8LKh08vJmU1y8iKSkEhoariQpqYTi4kXk5XnbckshGPViTExM0On7oy9pfftH20m7+gSm0Q/iaLsW0+gHSbv6BNs/2t4rHX9l9zYQo+fL4xj5JWS4+0ENa+YXLGP1U4UsX6RITmX72lm9zsaim4PrVIYbFstWGhsbKSv7ESbTFNLSbiIiwqwONot83qd0EFBUVEJlZTVZWRksW7YIgWTdU4UsX2QiZ5KZsn11rH6qEChmdl5ewPlypf/97y9BymQiIjJJTV1EfPxsnE4HoAyiMTHTeu4JRoLbarGwsbSI6upKMjKymF+wrCd/irSs+HM2NTVTc/go0y7OIDbhJFOvXsKjax5X8xh4eTyfOTYqlsatkgZbA1mZWSy7a1nQ6Sl5mB3UgFFZVYn5Kndf1ajUKCo3e9cEBJu+3+dXVmM2955YlJXtRKc7gIhxYh5lxPiNVOKy43F2O6l8Ovi8aQdiQPkbjXPAChJiwAkNUKeB0nkVU6Lp1BbdvCyoTvdMYbFYeKZ0I1VVNWRmpnNDwXyvnZ9L3WIy/YpJk1KpqtpORcX9nH9+DMXFK/x2TN46iOsW5PdIH4C6VgclpUVB11Ve3myuuOKr1NUt7TUQTZkyHqt1NbCcqKgc2tvLsNlWk5s7jfz86zSD5vxeeXSp8HwNooq0XMe0c2M4WldPXHIan1dJRqVkkZk9jVkLb+eZ0jVBDSi9n+ma4JSc0TaUlZlFXW1dT8cN/VMv9vv5WRnU1blPLI4efZZUczVLF+rIyJYcPNzF79bvp5lx6KPCg8qbaxJQ9p8tGI9F47hEGegA0IcGqOFMSMXH6Vl+zc7LY/1zm3lzeznrn9s8bAenR9esY+rVS/jZ2n+pM/51XtVSWnVLfLyZCy74ITk5azCbx/R71jzQa3W+VIkPPbSsl4qnoGAapaU7/RpO+DN4mV+wjNXrbOzcbaWt3canu1u5+6ED7PhPLasXL6LleCNVVTVBlWO4GNkMlHqx38/38j7tHQ/y8B1mvn7ZWHRtkvEZcOtCHW1vVweVN+3a4d+fiuKuue2Eb9lN+X3vUvHke2Ajyn8qIYaKs36A+jL71rh4pnQjsxbeTmb2NML0es2Mv7fxQH8t8fqyAvO3Vudan6r4bI/b+pSvNPtaa8jLm83mzespL3+TzZvXs317eUCGE/4G0dl5eSy6uZiSTUnMu93BTSuaKdv7Mzqafs+Bj77F2juLMUaE91lHngwXI5u8vDyK7yomaXcSDU83kLQ7ieK7ivulXuzf83u/z9FmPZddnEx8fBzj0sdjaDeQbuqGY91B5U07CUgYGceU5C4eLnRyyeRuHr5eh8npNWxaiGHCWa/i00oMgPp3OUVFJQOqZx9KqqpqyJ/gPuikTcjhFS8zfm/qFn/rOK7FZ9MME+arzNTVKlZgxSgdSV9rdVo1V4tez0Vpimrt4x0FlP5fqc80A10H8bW+4TngalV4LjwNXmbn5TE7L4/Jk3M5VvtTxhlyiDaE02bPpPL41Rw7/Ce/+Qn2mWcKpU6HTvr3fJ/XLcjvqZv4+Dji4+PYudvK5V9LCiqf2rXD9rYTnJNmZGy3jWNHYUpKJMnm7pCKbxhz1ktQZ4NzX2ZmOocqTlnk7X5vK2sL82g+sqOXRZ0v9Vlu7uRe0oxL8rlp8ffpPHkYR7vdqxWYVvq4cmEDJZuSWHSzsrajneGC6FFzlZY+NiCOq4FaI2pVeA6Hk527raxeZ2N+QW9V0tHaI4wzTMLY7aDrZDvGbgfjDJM4WnsqHKRL+tuzb49Pv6JgnjlYDER4pf4/27dqfaDqRiu9d3R2MCLWwN4DYWSNjSN9XA6mSP3QbYgXwi9nvQTVH4nhi8YNBfNZfv8KbGF2Gg9VM3bkcQrnh3FlbhaHj7kbA3izxMvNPb+XNLPojkVMTRQ8UJjA9d/ppsYGv9ugLGLHZcf3sgJzSR+eaGe4LnImRdHW2kKCN8dVL5ZlFstWioo2ejWCWLZsPoWFvQ0nPK0R+zJ48Uy/29FGmP4QUcZJPfd3O/YRRrean1MSpd6s7/Erckl/gTzzTOBP8g3k/kAMb7zfu5Xrry+mxVqAw5HO0foadu8u5tlnFWlqoOpGK73r9RG8t6ODJ0rhhz9QjCQ6OpwhFd8w5qwfoALtwL7oNNsP0jKuDaO1hZsWSc4Zo0evF14t6jzVLfnX5Pcyzz1h3M9Pvi2Zdu5Ydu0xMTbWxqJvOrn78c85lJhO/FQnEzMn+M2XLzVXdOwI2mvb/VqWnbI6XI7ZnENdXRmFhaspLj5VDm+m797Ug94GUW/pS/ZypPNXCO4lKmwc7d37OeEo5sLzEgF3c2aBUMowQznu2YH7GrjPBEVri+hKs1P3t246jjVjHB1O/FSn13x64jK8mbXwdvIn5HCooiwoU/uVK5/geMtCzKlfxxgZRcfJiTTUSlaufKLn3QxE3WgHuvLyBjpsdn76g0QmjGnhox3h1B8PCVDDmbNexReMY2N/nE2HQ2y4orVFJMxJ4PyZOUR2GzhvWjTho8KpPars+ehvYd5bGB7nSTupiXYARsaMpLNBT2byWHQiCduxezj0l5HkXpjrN29aVQ7IHlVOQcEdAVmWBRKSydNwIpi1RW/pj0l7lK6wdkxh99BgvxZT2D2kjz5K3g9/oKyd/GcL1jcP0lx+Kn6xr7BFq1atYnTyFCJMGYxOnsKqVasCztvpsuvTMg69Hkdr3S/oEM/SWvcLDr0ex65Py/zeG4jhjbffi+tYzcEtxMeupdvxPgiBMSqahJRZ7N27P+D8B6qedFnafvBxNY+X/J3d1dNY8oCJu37dSnt7tyPgB4Y445z1EhQE5njoz0/GG/5m9wNJX2ourSNmeLyR/Qe6mDQhDFtjB+B/Yd6bn4wuMpzaemX2eeLESSIM57B/fxdORzImchiVsort20tZsaLvfGtnuF+9zMF/3k3qUeVccMEFFK0tonJzpU/H1UCNIPqLt/STky+jszOZcTlmwisrycjKIjs3l50flLJ8kYlbr41ib52NNS/sx3Ge6kDsRfpbtWoV9z7wF3Qj7sKYPoE2awX3PlAMwAp/FRcgFotFqcMqtQ4Xn6pDa2MEdhZjiMtBpwvD6cyhq3kx1sbf+E3Xn+GNt9/Lfauvp+2k5Le/NPPTr+uorq/l9y/cRn3LE0SNyENQiQgLvFz9UU96SmVCCP+jcYgh46yXoAKlPz4rZyr8vz9TeW2cN+PFqfxuvZPysi5Ax19f3cGSlWUcOdrQIxF6znxzL8ztJc3YO0bw/D8Vyyprm42Dh3Ws+wskjXmA86acR3LyZQEPEq4Z7oSJU9x8yfLy8tj88mbKPyxn88ub3Toei8XCtQsWcqTuCLt2v0Jz8ylpZTDi/2lpby8jJyeb9Zs382Z5Oes3b6a8bHtP+8hMTWf8aMGSH0tku92n9PfYE6XoRhQSMSIbnU6v/B1RyGNPlA5I3v3F2Ovq6EbXNQHs6g120HVNoKuj22/anoY3AIcqysjMVCIHefu9FHy7mZFRLUw7N4aRI02MT2vglh9LdJ1FdLTvpL31YaZeENh7G6jo7yGGN6EBSkNfKrz++KycKQtBfwOh1hFzxMSRNKaP4ZcPSebf3sHzmwX33zaBR2/vZt1ThaxetapXUNRPPiil4KoCNz+ZdY+to3D5s5RsSqLgl3BPSSQnncXExSmDyGAammgdj2987AkMURs5UP0mTU3HBiR4qZZly+bT2HgfZTteYucH/6Zsx0s0Nt7XK31t+3D57kxOMuLs7PbpV9Ryoo3wGPd1uvCYCbScaAs4f1stFq7Lz2dWdjbX5bu3WX+deHhEOKNGOdC3GXAc6ULfZmDUKAfhAfhz3VAwnzc3PE5V+U66HQ6qynfy5obHuaFgfq/6cJE+xk5zizIaZqSnYzA6GJ95DHvH2xiMDzEm7QT33Lk8oHIPVPT3EMObkIpPJZhQNy78qsYGwEKwr/hwLvypufLy8iimuEddNiFzIkwexYO3OtzKs3wRLPrFY6z7TXrvsESbtrP55c298ueycissXIdePwqn0zHohiba9Q+A/3kwjL8/+RRVFSu5/PKv+jSC6A8CyVj5KQ5RznHhZJTQoZd2BO6L657tIz4+juojemKiY73WG8CIkdG0WSuIGJHdc8xurWDEyOiA8rbVYmFdYSHLTSZyzGbK6upYXVgIxUqb1ap2m8ub6Piwlq7jHRy3fsZWi4WpF2Swr6IE85iVREROo/NkGe0tJQFJMa7B9pnSNbxSVYMpQk90eCuP/Gopz5dmEW6IoWxfu1v7qjkSTtwI0VM/AG++W4sp0sjUSSO4oWBJwFaAWZlZfPZ2BU2f6ug4Zu8x8AjEMCfEF4ezSoJyOp0+JaRgQt0E6pfRn60PtAS6xUMgvj6e6rKT7a1eJcKWlpagJcX+RNA+HaqqakjTrH/kXDqLu/+0iUnnjQnaCMIfG4uKeNxs5p1paZRfnME709J43GxmY5G7KslX+xiVkOgz7TtuK8DZUkxnSzlOp0P521LMHbcVBJy35SYT02Ji0Ot0TIuJYbnJ1JM3l2q3ubyJyP/u577/6eKFIsGjP9ex7qlC5lw5mzFpJzAYH6K18RtBSzF5eXm89NwGHrnvLsaMOMyDtzp62mlEWD0//3WDW32U/jOOE+0jeo5VH9Hzt7cSefrpl3jpuQ1BOeDmXpjLob+MxHbsHvQxLwZlmBPii8NZJUHZ7Z0snVfnVULy5Y+jDXUTrF9GICbOfUlI7k6svoOs9sdU3pdEOGLEiF4z30CiG3gzNAlE+usPrvUPlwQF7usfA0l1ZSU5Zo92ERVFdaX7gO2rfYTpff/EXIYQjz3xCC01bYwYGc0d9xUEbCDhL2/LFi+j8JFCOk8e5o7FTlJGd9LR4GRcWjSL59opfW07qx+4W/VlaiEzMzgpxoW3dvpAIdz7Oz0lmxJ66qNw+aMAA+L3tX37XtJTVnH8RDwdR22YjIEb5oT44nBWDVDhqt8P9O7sgwl1Ewx9WQj6Uyv6GzS1zwjU18eFr/BD8xbcwep1pae9hUh/rB498eUIekPBfB5d8zizFt5OmuqD8+aGx7lzycCrFDOysiirq2NaTAzNzc3UHTrEJydPciImhq0Wi1tZvLWPbdu29Zn+ihUr+m2xp82bi7L2djKylDbrUu3esOjbJBs6EG1hRJojkXqJwVlLeXnngIQ48tVO29sb+Of/vu92fKvFAs1AIxDbO61AJzWVldUkJ19GSsqpLszpdFBZ+Sugb6vWEF8chnSAEkJcBRQDYcCzUspHPc4/AcxUv0YCo6WUI9Vz3YBLr1UjpfyOv+fpPBSars7eYrGwt6aBG375KUt+DBMyDRxtMPGnf0b3zPoCoS+TXm/4k5CCWfcKdo+eviTCrZYLTnuWG6j054tAHEFd6x+ZmencuWTRoMSSm79sGasLC7mxtZWY6mqauh285JR8K0xQfP318OyzQ+Zo68rbchTJqaxRS1N7AAAgAElEQVS9ndU2G4uWnZpM5OXlERkdQ12HIHtCRM/xg8e7aeuwDUg+Am2n/tbMgpnU9LW+eybdO0IMMlLKIfmgDEoHgCzAAHwKZPdx/a3AHzXf24J95rhz0qWsntHz2fHadDnnqktk9sxsOf728TLqh7Ey9YJomZpmkNMumSKnfW2G3LJliwyELVu2yOyZ2XL6A9Nl7rpcOf2B6TJ7Znaf98+8fLK0H8h1y5P9QK6ceflkKaWUli1b5LwfZMsdr02X9gO5csdr0+W8H2RLi5rmW2+9FVDelPxZ5Jw5C+XkyTPlnDkL5ZYtloDv7Q/+yuYNbXmumV8gH/7Hh/L5CnvP5+F/fCivmV8wqPn2hmXLFpk9cqS8QAj5PVOYfCo1Uq5JNMq8BJ08J80oF86f0/NOPAnmHfU3bwvnzJEzJ0+WC+d4z0f6xDT5lZmR8oU/RcsP/z1CPvcHo7xwmk6OTgjrM+/e8FYef+3UxcI5c+SO6dOlnDGj57Nj+nS5cM4c5fz8OXLHa9N7/UYXzp/T65lbtlhkdvY8OX36Dpmba5fTp++Q2dnzetr59Ok7tI+R06fvkHPmLOyVDvCRHKI+MPTx/xlKCepiYL+UshJACPEi8F2g3Mf184D7TueBdocSqUCrumo8GY1ptomG9iZGf3U8xtnRdByyIj9NYu7i+wPehM7rbp0zvIe3ceFv5jlQ8cgGa0bZlxrldCN1ax1By97byv+9XMKx2krajx/DYrH08okKRnINltl5eXR2O1iXHkmEKZwP2u1YRndxz48luuQuosz92yF4oPLm75k5551HReRnPPDHJjqOtmPotvPD74Qxd2Y0Qnf6effVTiVKmCzXe2koKyMnM9M9b5o1s0BV2uCu1i4rK8dms2M0Oikq2siuXTsZO/bLHQD6bEEok4gheLAQVwNXSSmvV78vAC6RUv7My7UZwPtAqpSyWz3mAD4BHMCjUsp/+HjOYmAxgNlsnr7qN4/Q1dWJwRDBqIREag7XoDfrOXnShsFoAgQgcdR3YTDEYGtvIzYmmsTEUcRodP2e7Nm3B71Zj9BsLyOROBocTJk0xes9VquV+roqRo1wYgiXdNkFx1t0JCZl9vksF21tbURH+zdJ3r+/Crs9kbAwU8+x7m4b4eH1jBuX2ZOX4431bnXTVx6sVis1NY3odEnodCacThtOZx3p6QnExMRgtVppPFZDklmHyajD1uGkrsFJwuh0n+lqy1N5sIrI+NF0OxwcbzyELlqH1EO3rYvwLj3pyek9z6k5WoMuRofOoMPZ5cRpdfacHyjKPtlJShiYdIIjTieJoyVGA3RKiIqOwdbRTf3xcDLHjvNZpqFCW0dOaxfJ8U6M4RBhiCAsTN8r71arleP19XR1dmKIiGBU4qm24Ks8VquV+oZ6Ors6iTBEEBMVQ2NLo9t7cRzrYGxYONEGQ899tu5u6sPDyRw3jqqD+0kcZcdkPBVOwle9upXNox12dNQQHh6PwaAMdg5HN11drUhqiYk1kWg+VZ6ZM2d+LKW8cGBqOsRAM5QSlLcowr5Gyx8Bf3ENTirpUsojQogs4E0hRJmU8kCvBKVcC6wFmDhxolx43fVu5/Ovyafu3Dpq2g8TPToFY2Q0TdsP07J5NPGJj9JlHUlGmgObbXWfptOP/f4x6s51DwdkrbaStDuJJTct8XqPxbKVBx/6G+E6B07ncXS6UdidetatW8mMGTN8VMUptm3bFtB1t9wyC7P5DXQ65XU3NzdRc7iK9rab+Pq3c8i9MJdP1DA9OZOiePfDo9zz0DEaTmYy9fzzvUapzs+/rte261brTpKSSti8eT0QvBWftjwOh7IGVdt0iK5LbZAgaD56iIyUZPRWPUmWJDa/vJn8a/KpSKvghN5KR0cHRqORkY4YJlgm9PgfbbVY2FhURHVlJVGxsXRJid1qJSMri/nLApNI77z3F7BvF4VRep7tOslfVkOdDYiKYvqk6TgcTq5c2MCb290VAIG+o8Fiq8XC3/7wB8rLymjrstGqa+aVPyjRLly+SNq8b7VY2HTnnco6kXZdS10n8lYei8XCnU/ciWmGiajUKNpr2/ls42ckfTWJ1Fmp0KVcd3hHLeZ/1PHk+Ik9aa9V054xYwZbHQ7NGpSi5VhbamPRzcU+69BbOzx8+G2OHl3KxIkbsNtTqKh8HUxrGPfTk0TEGrBttJ3RDRlD9J+h9IOqBdI031OBIz6u/RGwSXtASnlE/VsJbAOm9b7NP64oCyMdMTQdrqHl82OceN1BVMw9nGyJJyU5pScyw8qVRT4Dv/Zn2+yioo2YzY+TlvkOGVnlpGW+g9n8eFChkAIJmKn1k2pubuLz6v10hO8leoKRunPreOqZB1k81860c2NobW1hZEwLdxaOIW1ccq/t4V3RNsp2voz1xEqam089z1ON4gph9Ob2crcQRoGQl5fHnUsWcWT/bhraDtB27DAZKcnExce5RQwo21PGMXmC6NEppE48j+jRKRyTJyjbU9aT33WFhSytq+Ol8HAKPv2UqF27uDMsjKV1dawr7O1X5o2H7n2Yo2NGc48hjCNOsNRCV0Q4Y1WV5VBtNNgX2rL/OzOTjSnpxIcZsbYl9AxO4J53rW/VthMt3HOwjfcrT7Lwx4U+Ax17i1jhmO6gqaLJ7brkK8ZQmxRHSVISVzY0UJKU1DPwQd/7hvnCW7SW5OSvER9vJCmphMqDlxIx5gEmLOwgIWdUKCTSF4yhHKD+C4wXQowVQhhQBqFXPS8SQkwE4oD/aI7FCSEi1P8TgK/he+2qT1zbXU84NIERr5uQm1uR7RLRnaJ0iHHKvjF2eyo7d1b4jHfXn22zTzcUktVq7TPWmgutw3DN4Sqk6XOEWEPqN9Q1s3AHsdGNABytqycuOY3zzzPTdLTaLUq11nH477+P4d6bqojUFfYMUgMd3igvL4/cr13GRPM4pmRPIk7tVLWBV+32bqJIwBgZrUTFjowmigTsdkXY1na4jbW1fEOv5x69nk1HjvRybPWXl3WPrWPS1MtgRApr/xJJpz2d2NgRQ7LRYCB4c+S92ZjEvY8d9elwXl1ZSU5UFJamZgr3R1LXdR9phpc5Yf0FhYXrsFqtvZ7jLeyQKcXEybqTbsfaa9vJmXqeWwxDz8En2ElNX7ESN29eT9okA1N/kUL8lFMDcigk0heHIRugpJQO4GfA68Be4GUp5R4hxK+EEFqT8XnAi9J9sWwy8JEQ4lPgLZQ1qH4NUHAqykL1nmqOVNTy9a/PJCPN0TM4AVRVbcdkmuJnWwffwU29Eehur76ob6gPKGCmNtJDe9v3MZl/xbifnOz50RpGR7J7n2Jy3NHRQYQpir0VbYxKGQsoUaqrqmrcTMczM5IYn9nIkh+Dre2JAY+B58KfZBobkYD4EMWwpVvScciK+FA5Dqc6XFfZosLCyAkLo7pDieTuzenWFz3tZF8Nv3rk75S+NiHgmf5QoC27i+uTx9DSEOdTSsnIyqKsvZ2i2g5MuluJ0U/ipFMQHXk+JtNy6uuP93qONhixiwSZgL5bH5RGoT/4i9biLW/eIsuHGJ4MqR+UlPJfwL88jt3r8f1+L/e9B+R4Hh8ovEVm6Oj4LRMmuGfldC2DTnezxM6uTu8BM73sOuvyk3KtuWnXymRmPH94uYucbCv68Ag+3tnAmhcEF85dCpyK0lBd/WGPlVV8fBzjxoE+vI4OWxXjJ5UMaAy8U/l2jyPoue3G1PPPJ2r8Rez84F8c+9dBRqeMZdqV36L98/8C7s6sRqOR9q4u9gMZRiPg7tgaDEO50WCg+HLknZZzHuuf8x4f0OVbVX6ykzTDONoc3dQ4nSSnpRIVFUtn53973eOKWMEM6Grt5OS7h7AftTEtNYuurWE02Bp8bpdyuvhzUtfmzbU+ZttmY9ldw0vaDeGdsy4WXyCbB3qLLXf++TFERLibwJ6uSut0Y9hFGCKCnh16k0jCawx89+p7KNmUxOJ7I7jjoRaSL76FyRdf4RalWjEdP/W8+Pg4RHgqs2bNPK0YeK51tD379nhdR9NKpssWL6NobVHPmtv0nGxqdr7L3MX38+imHcxdfD81O9/tiao9f9kyVtts7LRaSUhN5XWHgwcdDuaNGcNOq5XVNhvzl305Oytt2R1OZ0DlnZ2Xx6LiYuwxkezo2kutwUDy+HHExcXT3l5GRISh1z0u9bZ+axjGrRU8PF/y379OonhlFFkJbfzukZKANAr9pa8NKfujeg8xjBhqR6wz+UlLy/Dq2BcIfTkGDhWvvvpq0M7BUipOxXPmzpGTL5os58yd0+v6LVu2yGvmF8iLL5spr5lf0HM+UIfMYNA6OD/9l6f7LIMvZ+jf/OY3XvPrQuvMmn/JJfLKiy/u07E12Pz39WytY+uZdpaWMjBHXm/4au+vvvqqz3uCcbQdLhBy1B3WnyHzgxoKMjLGy6ysz3u+e5pF+2O4xffatm0bDodjUJ1UPRnoALBaleO86HlsatvUY57vuU2FN/Wkr2vPBNpwTJ4xAV3vwGWWrXWW1qpztRLzcGtf3vKj14f5NPmelZvNGxvM6PWnFDO+zO+HC0KIkB/UMOasChbrqdEMdg0pmHh3Z6qz8Rfsc6AHlIFee9HuWQTQtKeZ2tdtlFU0kJ9/nc+t6134WnPzhzb6RGx0LBG6WOrrjtF6QhAeZiAnJ7vn2atWreL550pobWkmdkQcP1mwlAsuuICf3rIQR1g4x9fez1XXLCXn0tmqxWPv6CPaTSUB9e9yiopKyMub7TPaR0HBDrZvLx+SQctbe+8r+O3pRg8JEcKTs2oNCpxu3wZr11d/W7CfKQLdT2oo0VpZOToc7H8+ElvDvURF/73Pretd9MciS7sVevg14exJqeDTmjIam9MQxhJa2tdSUVFAYeE6Fi++gX/8+WEe+WUs77w2nUd+GctfX3yAn/zsJ7RMb2HULWm0TK3juWdup+y9rT0Wj574cynwtiuy3X4jDz64ccjbUaD0tWdaIP56IUJ4clYNUFLavZqj9rXVuxaLxcK1CxZyyeWzuHbBQp8/Mn9bsJ8p/G3COBzQGm3YWyRSLkHYxpOektnn1vWnY7qsdSw92nAM8/lZdDmjONk2nxEJXyM+eSwnWhMxmZbzr80vcfdtKVx4wWjCw3VceMFoliwQhBmaiUqPprPrJMa0GAy5Rv7v5RKf+1L5cynwNoA1NsbjcEQNeTsKFF+OthK8+uutWrUqoN/dQLLVYuG6/HxmZWdzXX4+wMDFwwox4JxVKr6IiHDFu1xjjiqQAYX4D2T7Bxf+tmD3xUCrBYMJvjlUaM3Iu7/ixGifTHpGZo8PWl9b1/fXdFmrKuzo6CDBFEV3WxPSkQqAMTKKxo4OoqJy6HZ0MDUnwe3+zBQndHQzJimR6sOHiEtOIyI5ioObdvD47d8jyqgn/5p8li1ehl7dsNDTpeDo0Xc5Wn83NQ37GTMhldajERytf4WMtJk9ZbfZdhMZOd7t2VFROZSV7eS6Bfn9VttqQz+Fx8ZgiBMcO3YUe5cNJ0amnX9ev1XB3lTA+dfk9wqk3Jrewit/eZAn75/Y7/3C/JbRQ7UN9Gz3kRIezlv/foeXYLyfpEIMIWfVAKXT6XoZRFy3ID+gfYueKd3IrIW39+zieirCQu/1hr72qvHFYEQc/6KsCbjW0Z59dgNZGYKYmFMO0t62rj9dI5CszCzqahVjC6PRSPOuI8Tp69FFX4vt2FQ65I0YjeNpby8jTG/k07JGLrxgdM/9VYd1YAzriWxxpO4wRw6ewNHuIGvBWJKnJFNXq0gJj972qJpv9+jbTW3HiP26nfZ0STixGF9vp7vhGQ5US7JkLuHhh9HrnyY+fp5b3o8efZZUczVL5+n71bFr92Rq0IfxdMcu5l7RzfgJkhOtkiefk6TEnqB49W6g772uvEWRF9Az+LliHXpbOxRVTdx4jaPf+4X5LaOXSefxw9E8ajKR4XCwv2Y/54zUMdrqM/5niGHAWaXi84YiZbg7u3qTMqqqakib4C4V+Vpv8Ofd7o3BUAv2tSYwHElMHBV0vfUHraow+oSJpJ2VPHxrFy88buO+Gw+QFHkbBv2/sNlW8638a3n4icN8tOMYdruTj3YcY81zku6uOKzVVkaMGEF6VArhn+gZ+81MUs5LcYvqUd9Q3/Ncl79OziVmJhaOwn5ON/Ep6YwYP5rY7yYQn9lMyrjnqarKJSmphHvuycdg2O5WH/aOB3n4DnO/1bba8EebbEe4p0DPpMxuxiQ4uTgnkjsWRbKnQsfcvFae+O1Kn+lo1/FcartFdyyi+PrrWVpXxxtmc0+sw1hjTK+1w65jJzl3ksnt2EBJ975U29VHysmJiqL2yCF0I3WEGfVEiNAANZw56wcoT+dT8C5lZGamc6jCfQ3B13qDLwdcgfSpcz/duHze6E/wzaEkJiaGgoLzsbV9h6r9I7C1fYeCgvMHJzqF6rwp32jgjnlGLpgcgymik/EZhylcUMeI6CKKixexdu0zfG/u3dz161Yun/Mxd/26lR/+6D6ef/J5N+fPOF0cY64Y4/acqNQoOrs6e767DAW2vLWFg/97EOvnVowmZXIUMSaaji4rd/9pE5POG8PmzetZsWJ5r3Y02qznsouT3Z4TTMeuDX9U3dVBTkYYnVJiiohAiDCmjAujvtHO+Mws9u3b5zMdbwFiw20t/KSl2S3233KTiYQu0WvtELue1jZ31elASfe+Jp2EKZE0bB0dhEUoW3p0Sq+7KoQYJpxVKj5vzC9YxuqnClm+CLeNDBfd7C5l3FAwn0fXPN7j87Ltz+t478VHiDXpuW5Bfi+dvaeJrr/trPujFgyEL0JIHhdWq5VPPihl4+OJ5EzKUt9FKVstFwx4GVyqwlm52Vz7HcV3p6mpmdqjhxh/jo3OrhO4dn9ZsWIFK1as8JqGi/xr8nvUhi7aa9uJSFW2WXdJHKYZJqLSo7C12bC/20WT+Qjx56fQeaSN0Slje016PNvRdQvy3dS2TU3NbHn3IAcPOXvWvbypQF3rmzsOdTHzyGHuy4gmw2CkrLoLmSjo6BREh8Oe/d0kmY0crJV0d4f1SseFN7Wd02on1eEukORERXGyoYHih0rc1g6vueEa1v65lBGx1j5/d/3Bl2p7/KQprK6x8t0wPRkdDg4KwbHTflqIweSsl6AClTJc2z98+pc1PHzNV6h47W6eujeKf/85MyDzbX8Wdf1RC37ZON5Yf8atDl0SdFNTM/trPqcrqosaWxiMDvMaGd4XviwME82JgLvEkZ6SjjAJ9F/Vc/zfyhYvXdttTLvkWz1hpXyhVdseO9bEa9s+44mXuoj5YabPaPZat4eMrPfY03kfN1YYmeiI5cFSB3sP6Kg+6uCDTzv57Xonk8+Jp7j0BIljfPuvejP518WEU6sPdzvminXoGUh5xYoVfn93/TVN96XaXvbzh1hUXMxzEydzbYOdewxh2KLo9J9iiKHirIokMXHiRPnZZ5+ddjrXLchn6Tz3GdrO3VZKNiX1CsJpsVh4pnQjH779Z/7xVAxpKUleN4pTrg3Oii+QzfBcz6+qqiEzM93r5oMDiT/H4L7Or/3DGv7n6y+f0UgELsn2uzNrycju5uBhwe/WOzl50Tj0UeFBRanwZjSg1+uZMWMG2RdnY77JjC5MKVtzUzM1h2uwrrdiHpVIbEQCSYmjiQ5vpcGPRZ2rDt/599swOozoKzKIy1YMS7xF1vDc1K+5uYnag1uQzju5cMpobLpWDh6sQaeLoMsRTVRkRs/Gmd4cdZXIGBqJUA3C2vC3BqaeEDyQkOB1s8Ng8Ja+bVvgGw36a4eud/XaX1/rkN3S1EdSIYaQs17F1x8CNd/WmqY3tdVT21KN5CigBFr11LkHE6kiEIIxjR8I/Kkxt1osFK++np9+u4207zk4dPQYxauvx2UtZjBEULav/YxaHSqdVjHX3/B9RIzEMCoC48WpxGXH4+x2BhWlwpuFoSvygtZyECAuPk7ZGXi2Mpi46u7GuXZGRjVgbYM1L7RzyeTPWOdhpedS22ZfnI158alBD7xH1vB0e4iLi2fEiB/S0PAHXn//TcB9chQbG4k0NLL0rlvJWus9fJY3k/9HH3sUAZRorPgWBbhjsSdaiRMU03RmKMcDabv+VNuudyWE2BN05kKcMc56FV9/CNSwQmuaftH3lrHmBcHhllEcOlx3RizqtM8P0+vdNh8cDPypMZ/47Up+PKeViy7NJCN7KhddmsmP55yyFhuVkDgoVof+HLFn5+Ux5aIriL96MskLz+uRRgZy3yB/Tsauuhs98jhZqWFcNj2CFYt0fLCjqZea0+UwfuRIPbu276G5qbnnnLc8ezoJNzc388knr3Do0JGeqP4uC8OSkruok7upyNrPoUuO8O/I97n+7uu9qte87X82Oy+vZ0PC+cuWsbGoqMcpNhhHXG+bIPZ3o0FP59zhFEklRN+EBigCjxDhIlDzba1p+rmXzub8uY9T9OcMvnez9YxY1AVjGj8Q+DPZr6jYx0VfGYsxMhqh7n570VfGUlGhWIvFxMQMuNVhoOGeBipKhfa51y3Ip+KzPVy3IB8BfW774Kq7js4OoiIV44ScCWFUH+5wq0OXVDz16iXc+KvnMOyJ5cCOGpoamnzmWbu+2dTUwGefbaWr63kyM0t6hU9a+chKjk9oJS4nk7TJU4nLyeT4hFZWPuLb5NxX+V3bzWtNzgMdHAYqrNXp5iPE0HLWq/j6owZzqYVKNDruRTf3VmW4TNNdzr3nXjqb6JHxxEevYf1zGwazWF6fD75N4wcCf47BUoRReQjOm3LqnspDynEXA211qJXqwLdD6EBFqQB3VWeLXs9FaYqqc9HNxT7Xs1x1Z4ww0n6yi5goPWUV3WSkGN3q0NNh/H/CnuLvf3yQqjd3c/nXLvOaZ62T8Ntv/4eIiGwyMpYQH+9SJ58KWlv+2T6ixpmRrxykvbkDXZyRqEmj2PuZb5Nzb2j9rQDF5BxF/RfI+x2ojQZPNx8hhpazfoAKJkKElkA6Uk/TdO12DGeCGwrms/y+Fdi6RmJtOkFM/EhMhhOsfuDuQXmeP5P9lMzprHp6P7+4GSZPiGZvRRurnm4mJXP6oOQHggv3NBBRKsB9UNy2TwQUJcFVdzfOHUWXvRZrWzdrXhBc8dV4tzqsqqohXyMV51w6m+yLr+DJxd/q05jDtb6ZnT0Ls/lldLpTP32tv52zs5vU8lqWXq/nnHP0HDjQRcmztew5qZjSf3PWN3ns94/53dalurKSHLNHvUdFUV0ZmIouLy+Pgh0FlD7xGA0nWogeOYKC2+4I+v2cbj5CDC1DOkAJIa4CioEw4Fkp5aMe5xcCq4HD6qEnpZTPqucKAJfe4SEpZWl/8uD5gwdFDfbKAKjBXD+mZ0rX8IpqRafdK2jwETQfjqHFOh+HI52TJ2oYEVMK/fBNDMQa0J9kufLOFay4/2EeeNrOydZjRMaOot0Wy6r7e/sYDRRDEe6pPzEQXXW3obSI8vLOHis+48iJbnV4ulKxP3+7lHgjS77XyvhM0IUJxmfCzd91cHelk7pz69Cb9T3m7MX4tqjztd18RlZg9b7VYuGT0lI2pqSTM0G1CCwtZesFffvEeVpSRsbGKtvc9zMfIYaWIRughBBhwBrg60At8F8hxKtSSk974peklD/zuDceuA+4EMWb8mP13maC5HR/8P467mBm5QNtEl5UtJGEhAcYO9ZVtouwWrN61DmBEowatC/JMi8vj1UoUmuVzcCYxIE3e/fsoHIvzGX1ulK/jtj9xZs5c38HxdORyq/86jTy86/z66LgGbTWtXHismWKVD8yJpJJY+3oWiTdDjthej1jkyWGmDBiMmIQiIAs6uYvW8bqwkKWg7vJeR/bzWvRqua2Njexsb2Wqo6TLP/Zj1n95Ate60lrmm6+ykxdbR0NFQ3cd0LwQD/zEWJoGUoJ6mJgv5SyEkAI8SLwXSAQh5dvAFuklE3qvVuAq4BNgT7c1bFUlZex65dbuPRHdzFj7qKg1HADacY9GCbh/Y2q7kl/1aDeGCg1mje8dVCl/1dKwVUFlGza3ud6YX/wZVY/7ZKCnkERvewxohmIQdGbVH7lV6dRWvpJQIGGtetR2qj+ruuys3PotFdgjrLSITswRhjZW2HDlOy+K4W/jSJn5+VBcXG/Tc5dqrmtzU2s0+1n+S06pmQY+Ot+ay+zexdeTdN/AMcsYZTEmk/b9D3EmWfIHHWFEFcDV0kpr1e/LwAu0UpLqorv10ADUAHcJqU8JIS4AzBKKR9Sr7sHsEkpH/PynMXAYgCz2Tz95Zdfxmq10nishiSzDpNRR1u7ncP1DhxOAyZTJOaEUQA0NB6nq6sLg8GAOWEUMTHuP9LKg1VExo/GYIzsOdbVcZKTTcfIGpsZVH30J622tjaio6N9prl/fxV2eyJhYaf8ELu7bYSH1zNuXOD52/dZBaMzxoPQqAal5Fj150yaOCHgdPzhrzz+2F+5H7vJTpjhlNFFd1c34bZwxmWNG4gsulF1cD+Jo+yYjKeeZ+vopv54OKMSEjneWE90zAjarC2MSkjs1X4GioF4z1arleP19Zy02QjTO0hJCic6Khxbh5OaIx3YjeEYYgzEh8XT1N1Ed1c3olVgNOjp6urEYIgY0DJW7d9Pot1OfXcXiaOdmCIETinpEjqkMFB/PJzMse7vdM++PejNeoRGhS2ROBocTJk0xfMRAMycOTO05fswZiglKG8LIZ6j5T+BTVLKTiHETUApMCvAe5WDUq4F1oISSWLGjBl+I0FopRmXGuWFPz7ea/3oF/fM4mdr/4VTf6oaux0O/rD4W3zwzpsBVcLppOUvkoTDcWoLj1PqnLUUFy/yG4FCy1PrNjA1aZqbGrSqfCefvvseN924OOB0/BFIZIy+uGXFLUq0hq5T3hPObicNTzdQ/uHAR6KYde8tvLHB3AOBWPAAACAASURBVGfki23btnH11XMH/NlabrllFmbzG26GD06ng4aGKykv998Ot1osbLrzTpabTORERfHs0SPc3VGH0RxPdnYOk3NyKX35WUwzTNww5Qae2fOMEjUiUfBAYYKH6nSA9nNyOFhXWEhVayXbig10djupcToZM248MbEjvEYXeez3j1F3rns8RFdkjSU3LTntPIU48wylH1QtkKb5ngoc0V4gpTwupXTFynoGmB7ovX3hz18nUAfXQCKcB7pbbzDR0gPFV1T1YKNV3FAwnzc3PE5V+U66HQ6qynf6jRl3JnHVcVfjIQ6v/ZTm8qaecwPpbOtJoA7bg42/3Xo90fr9zci7kqVz51JVWUnJwYO8feIEN6WksmH0RLKTc1j/nBI3z+XD5WhwkLQ7iZzkZB4oTBi0uImz8/JYVFxMR1QMf93fRa3BwJhx44nzEoHFRTC+bC7nXT14F61CDAuGcoD6LzBeCDFWCGEAfgS8qr1ACKHdV+A7wF71/9eBK4UQcUKIOOBK9VhA+OtYAnVw9ddxB+okGkha/cUVIaC8/E02b17fr1BK2kC5Ty7+Fp/+Zc2AWCN6BgO1Wq1Bp6Gt4/dezuK+H3VifK+C42WNp+1s64/hst9WMIGGtY6+M6+7g/CK/axobcWi07G0q4t1+/eztamplym2K2rElElT2PzyZk62twa0j9rpMDsvj9VPvsA/P8iiQzeWmNgRfdaxdhsVb87QLrTOu+eAY8AyHGLAGTIVn5TSIYT4GcrAEgb8UUq5RwjxK+AjKeWrwFIhxHdQGlETsFC9t0kI8SDKIAfwK5fBRF84HA7GTEil8VgDuz518uCyRK6ccU4vy65ALfv8mZEH6iQaSFqni7/gmf4YaOMGbwYNNUdrsFgsgQcDLSriP7ve5uGf68gcM5a4+HjmzJiIQX+QO39bxZSLrui3s20gBOKwbbVauXbBwkEN1utp+BAbG0lqdCOPLL2V59VdbWf3tK9T2oENi7/LL0bEEX/iOG22k0yLjma5w0FJbS3x4eF9mmKfKfP9QJ3iT9WF/3aqtRAUPpYGQgwTpJRnzSc1LVWOuW2ynFRyuRz1wzSZmBImz8seLRfOnyMtW7ZIF1u2bJGzv/cj+fA/PpR/KrfJh//xoZz9vR/JLZprAmHm5ZOl/UCulNUzej72A7ly5uWTg0rHF2+99VZA11m2bJHzfpAtd7w2XdoP5Modr02X836Q7VbmM82cuXPk9AemyxkbZvR8fv/C7+WcuXP83mvZskXOy86WO6ZPlzPSI2XTy1Fy958jZdPOqQNex6fDli1b5B+e/eNpt6Ng0NaNPTdX7pg+Xc7LPvWuL75spvxTuU0+X2GXF5wzSdZenCv3T8yRH+l0sjU6WnbGxsqvGo1u92hxtbnBalNbtljknDkL5eTJM+WcOQvlli2W00rPGzMnT5b23FwpZ8yQk6BVDoO+KfTx/jmrYvEJvWDE+NEIvY7Rs7MIu2YCDfZw1j+3uVfYm4FQaQ2XNQp/QVyHAm/BQHUGXUDBQLUz4EyDkapaQbpOR13tIWBo6tgbz5RuJDYh8YwF6wX3utHuaruxSHnX2rXOUWlZ7D3Zhj7cgC52BLUGA3/t6qIjJsbvFhme+6jd8zs9lYdTuXXpIz0BaIPBYrFwSe5XmPPtX/LOv68iPPzFXnECPQl0fdeTjKwsytrb/V8YYsg5qwYoNzNpIHZsAs0nvPv25uXl8dJzG/jgnTd56bkN/VLLDJc1Cn9GIUOBt2Cgzi5nQAYN2m3L50elsvo5JxXV0NZmG7I69kZVVQ2GCPethgYzWC+4140L7XqSdq3zggVL+E1LM/+prSQlPY2OsWP5Z1YWq1/w7gjryey8PNY/t5m77v0dB2uycDgexWx+w+/A4olL3ftZfSOGxNtwjjyH/TVVOBwZmEzLKSrqPaAHs77ryfxly1hts7HTakX2J6xKiDPG2TVASXd1c+vBRuJGxg3a4wLdrXcg6Gv30eEiyWnRWlw1NTTxyVtl2I53YG3q8htNXjsDnh0XzyLnOB4uCWPBL8POSJT4QMnMTKer0+Z2bKCD9bqkiEumZzBlymjKaw7y112f0NR8auKlDe2j1Q68tf4x7BPGsXHiBH5kt1OSlBTQ5oKe21esXPkEJtNyYmKmodPpiYmZ5nNg8YbLwdZulYQZx6E3hqEbqePQkVqfjuWnoxVwWQiWJCVxIBSPdFhzVr0c6ZC0fH6M2LEJtB5spOWfh7n3hsEJnOpioKNze7LVYuGJ366krHwn4ckmInPTqIt1j5XmK4jr+Zfkkn9NvtsOsGcqTqArevjKR1ayd+/npE3IIfHb5/CNWx/2G0HDM4xOvD4cY2QKa/qxc+tgckPBfCqrD9FYvnNQggW7pIjFc+0YftDAweNQsl5y/x4bXQc+4xtZEzgcHt4rtM/pGLxYrdZTPlNmM2V1dcwoayBzUorbdcFELKmsqsR8lRnj6Da6WvajN04iLCKMjuM2n+by/Yl3qMX1u9wQ2rBwWHNWSVCGcANycytVD36M3NzKvTfczYoVgxeodLCxWpWwLwvm7OWl9eE8uKSb6B2VONrtmGaYKFqrzCa9SXLnX1JA6f+VUnduHeabzD0BQP1JLwNJXl4eGSmTuPtpC//P3nmHR1ml//s+78xkJmUS0gOkk0Yg9CYWqoiKZe0KiIiiEoRY8OeC2FEWRBMwuqIISLHuV1xZZTEUXQuCgpGaAOmBhBRIJm3q+f2RYgLphaJzX9dcybzzlvOeyeTMec7n+TzPvrcTRxfXRtdpzq7XJaHuG/CEgoJWf/OH9q9btPf+uvt4dbo8v5baWYSHWxEOniqi+2mJe1iDKVzHCz20jExPa1PftIai/Pxz1rj6OWrIzdjRYL+zB5bm+r023Os/QYfNtAJL1REsVUbUqowm5fIXY1TATufzl5pBqdVqTqQcv9DN6DSKCvOZN8MRU5UFB2cNUZGCR6dbeOH9HHyn9m3glXb2TG7SHZM6VFK7s2jJTb4pj8KnY2ewenPT5SUao6WS9F2BXq/n4y6q/VU7i/j1tyocPDQAhPVSIU1m/P/fQAr+WdDmPmoJk9F4zhrXMwFO3JK6DIMholED2pb6vbb2k+NoR0LvLiP7y4VU5pjpGxPDyy8/1mjuXkulXez8OfhLzaDay5IlS+gR4Y+jjzM9IvxZsmRJm6vwdgUmk5GYKGccHXVYjVag+h+UqbiqRQeFs1V0p4tPk2nIYdvOHef1flpy0OjMsvVtWbc4nzOt9lI7i6j//h87bsXBQ9cpDhqNrWs6aLXnKOB8tA5cMUBp0rGkpX6vn2Br/c7CFf2j+M8Xq9i1a3OTieX1owKX357BlHlZ/HDQwBsr4y/IZ9FO1/CXmkG1hyVLlvDiu4twu6EnwSGhlKYX8vw7L9HDMZT7F73Xac7j7cHBQVsd1ugRwLGso9DNwrEMUBw1LVYfDQ0OJS+n2rfsdPFpMnNP4mTzJGrIQPrfFnve7qd++Ygoraxz0Khdp+nMel2tXbe4EDOt9lA7i5h5uycOVTmkF1l5c6PAFuTRruqz9WkskXruK3N59qFnWVpZeU4ZjaeaCSO2pt/bsy42bvx4JFS38yZvvPyd69rZXK0qO5cO9gGqBeLfW47bDT1xC/cBwC3cB+M1VRT8J79Tyk90BE8vX5auqmTeDEeCe4SxY1cGb6yqwst1AC/PX9RsW+qX1M415OFk80TsFkx8MO683k99Bw2PK0aS/P2PDdZpOrNsfWvdD9riAHIhqXVZWFtT5LCsqpIyq44Yr8gOO2g0WrpiNBjKDdXrf20oo9GVrhNNtbO9oepff/3VR61Wvwf0xR5hOh/YgAMWi+WBwYMHnzr7RfsA1QKnz5wmOKThB0kX0A1DRX6Dbe39Vn92gb22KOn0en11mKPOBuZKXl3aOgujWhVd/Mp4Du48TNSQgUx8MI6YkeM6dD/tQ1B+WmC1QPlpQf3UlKYK9LVHCdfadYuOKsSaoqN2U0lJ24iPX39WUcKuUYnWKuvq4+zvjNFkbLMytS3rRW0t2tlUO5urVdUcarX6PT8/v97e3t6nFUWx2yB1MTabTRQUFETn5eW9R7XfagPsA1QLuHdzpzS9sG4GBVCVfQadU8O6N+35Vt9UGKUt4YmOyNhrwyp3Tr2P/rfFdsospa0kJf1REkStLiEvb2iDYnud6VHYWl+3rvjG39GwYf1+aqkoYWdQPwRcS3lOOVp/bZvP1dp+b0/Rzqba2YH1t772wen8oSiK9Pb2LsnLy+vb2Ov2AaoF4h6Yw3MJz6P4ZaMYrdi0KgwnLQR4RJBxaB8lRQV8sfYVslP3E9O7d6vNTqHzwxPtpTNnKU3R1Dfj+Pj1dUmeQuxErx8IzGtQlr4zjWpbM6B3hUKso2HD+v10+nQx+dkqyiomMv2eOazZ2PlrY/VDwM7+zpTnlFO5sxLfx3zbdb6W+n1bUhJP3HcfRpOV9d9tw6zVEhLZj6Ax1/Hu2vVNvv9NtbMD62+KfXA6v9T0d6PhVPsA1QKDBw3iyjA9d19XTGAPK1knVHz4lQfjr5/Mf1YsYHfaD+iuciTshmAsFZY2zYA6OzzRXrraSb25b8adVZa+M2mrg3Zr6GjYsLafTp8u5uTRYwQqCk4Ovck2lLNq7lzo5CTl+iHgtM014ef5cajVnf8vo7b8xRNFRfSRAoOAxIpyhqansjM7nTSdQ5vb2Vl/u3l5earRo0dHAhQWFmoURZEeHh4WgN9+++2wTqdr12A2Z86cHh999JFX7bkWLVqUc+utt5bW3+fAgQPa2267rdeRI0earba5cuVK98WLF/fw8/MzP/XUUyfffPNNn6SkpD9FPo19gGqB9Wvj+cf/C2Bg3+i6bQNiDCz/8Dv0Hg70uap3g/BCW2ZAXRCeaDedXU6jPvWl4tBQVBIaGkRe3v6amVM1zRXbO190tgNIR8OGtf2Un60iUFFwUaswWI4Q7aRjnqMjy+M7X8DR2N/Ezp07O/Ua8IfBrcVmI1hRo9docLJaiS8pJtbTl/lnCtvczs7Cz8/PWjtAPP744z1cXFysL774Yn5Lx7WG2bNn5z377LPnCAPaypo1a7zfeuutzIkTJ5Zt2rRJ3/IR5xeLxdLuLzZ2lUoLNGe02pgjt7O/c6scuaFtFUDbQntyeOrnvIwYO4Lho4Y36uvXHporAFm/2J6UNFts71Kmo8bBtf1UVvEbTorEYDlCpW0Fcf66c4oLXmrUGtwqQqCxmLHZrPRRFLIrK/A9U4hOpbrQTWyUZ555xjc8PLxPeHh4n0WLFvlA9awnLCysz8033xwSERERfd1114WWlZV12JD29ddf95o4cWLoFVdcER4UFNQ3Nja2J0BcXFyP3377zfnhhx8OnjVrVgO/qTlz5vR48cUX6xbPQ0JC+hw/flwDsGLFCs+YmJjeUVFR0VOmTAm0Wq2YzWb0ev2AWbNm9YyMjIweMGBAVG5urhogKytLPW7cuF4RERHRkZGR0du3b3du6Txz5szpERMT03vnzp3ODz30kH+vXr36RERERD/yyCMNfbGaocUBSgjxkRDiGiHEX9L1tzlLlcYcudsyA2ptBdC20B6X51qxRl7fPDR3aEjunszvxb+jukrVKRZIzSXj1i9Lb7Gktrss/cVOR42Da/upm/4fZJtux8/hBRLCKhjv4d7ADPZSpNb818nZGatGjdVkYl9FOb7SRplHN6JjYlo+yXlmx44dTp9++qnn3r17D+/evfvwqlWrvH/++WdHgOPHj+seffTRU6mpqYe0Wq3t9ddf927sHO+8845vRERE9J133hlUVFTU4ih8+PBhpy+//PL4wYMHD/7rX//yzMjI0MTHx5/o3bt3xcaNG4+/9dZbua1p+549e3RffPFFt7179x4+cuTIIavVKt59910PgLKyMtXo0aMNKSkph4YMGVKWmJjoBfDggw8GjRs3rjQ1NfXQgQMHDg0YMKCypfMMHjy4Yv/+/YcjIyON27Ztczt69OjB1NTUQy+99FJea/u5NTOoNcD9QKoQ4mUhRFhrT/5nYMq0OJ5LKOTjz/fzw4/7+Pjz/TyXUMiUaXGdMgOqLaV9aPchNn+yucOhiva4PNcXa+ScykEdoUY9Rs2JH0+gD9I38PVrDy2Vs68tS9+nT0S7y9JfCtSWp9j+3SGmTItj/dr4Ns1yx48fx5qNCYwIdealEBdGd3Njn8HA0spKpsRdGhY/jblT1Ja/OOXpSRawT60iUadlfGAgKzWai/Ledu7cqb/hhhtO6/V6m7u7u+3aa689s2PHDheAnj17msaNG1cOMHXq1OIff/zR5ezj582bdyozM3P/4cOHD3l4eFhmz57t39I1r7jiilJ3d3ebi4uLDA0NrTx+/HjTi3PN8PXXX7v+/vvvzjExMdFRUVHRP/30k/748eNaAJ1OZ7vjjjtKAQYPHlyRkZHhAPDzzz/rn3jiiUIAjUaDh4eHrbnzaDQaOXXq1DMAPj4+VkVR5N133x30wQcfdNPr9bbWtrXFwKCUcguwRQjhDkwGdggh0oF3gQ+llJY29c4lhkSQfCSEQ6kWbLYiFMUTs02NRFR/q+3CBdr20J7F+PpijaqqKjQeGvCDqqIqoOPCja4WYVxqdERyPm78eGhjouzFQpNpFfMTmJGQwJr4eA4ZjZgrK7HpdOgiIy/ae5OyaW2EEEKe9fycfQICAur+b8bGxhbedtttvVq6plarrTuvSqXCYrE0G9VSq9XYbLa6fUwmk1Lb9rvvvrswISHhRP39zWYzarW6/jWk1WqtO/5sdWNz59FqtTZFUeranZycfHjTpk2uH330kcc777zj/cMPPxxt6X6hlSKJmsHpHmAq8DuwEbgCmAa0+69HCDERSABUwHtSysVnvf448ABgAQqA+6WUmTWvWYHauFGWlPKcJK/OID5+Pd7erzdYxDcY9tXJoLtygbY9tGcxvr5YQ6fTYTKaoAh0njqgc4QbF1s/XUg6Kjnv6hIuXUVzaRWbP9l8Sd3TmDFjDLNmzQp+/vnn86xWq9iyZUu3Dz/8MA0gNzdX++233zqNGjWqYuPGjR4jR44sO/v4zMxMTVBQkBng448/7hYZGVl59j4dJTg42JiUlOQK1SHJvLw8B4Brr73WcMcdd/R6+umnT3Xv3t2Sl5enMhgMquDgYFNT5xoxYkTp0qVLvefPn19gsVgoLS1VWnue06dPK5WVlcrdd99dMmrUqPI+ffr0ae09tGYN6hPgR8ADuFVKeb2UcoOU8hHAs7UXauS8KiARuBaIBu4WQkSftds+YIiUsh/wGbCk3muVUsoBNY8uGZygWt7r7HxxyaCboz2L8fVDlf4+/lhSLVh2WOgxskenCTeaK6h4qdBZBsHtrXB8qfdhR0VFUJ2wPGnSdKKjx7artHxnMWbMmIpbb721aODAgdFDhgzpff/99xcMGzasEiAsLKzyn//8p3dERER0RUWF8thjjxWcffzs2bP9IyIioiMiIqJ/+uknlxUrVmR3dhvvu+++04WFhZrevXtHv/vuu97+/v5GgGHDhlU+/fTTJ8aMGRMRERERPW7cuIgTJ040O1lZuXJlVlJSkltERER0TExMdHJysq615ykuLlZdc8014ZGRkdGjR4+OePnll1t9r6K5qSqAEGIC8I2st6MQQt3R0J4Q4jLgeSnlNTXP/w4gpXy1if0HAm9KKS+veV4mpTwnttsckZGRMiUlpU3tnDRpOnl5c86ZQfn5LWfz5tVtOldns3PnTkaPHn3O9vZY6tS3XHJ1cUVaJYZKQ6cUMqwf2qmfTHm2IKSp+7kYqJ/LdXYyc3N909g9TZ86iTl3N5zl7jtgYPmHfqxe13h5jNb2YVezc+dOLBZLu+y5Jt0xiby+DdMqDJkG/A74sfmTlsuC1HfTqF/WoyOiGiHEr1LKIbXPk5OTM/r379+8rr0ZWpu7ZKchycnJXv379w8+e3trRBKL5bmj2O5OaFNPoP5ImlOzrSlmAF/Xe64TQvwihNglhLi5E9rTKPVl0DabpUMy6PP1Dbj+Yvzqda0LndQXa+zavoufv/2504Qb9UM7ikrpFOHF+aYzy360Z5Z7sfShwWCoU3y2tdBlR0VF9d002lNa3s6lR5MzKCGED9Ad+Ai4gz8cPF2pXi+K6tCFhbgduEZK+UDN86nAMCnlo43sOwWYDYySUhprtvWQUp4QQoQC24FxUspzsqeFEDOBmQDe3t6DP/nkkza31WAwkJ9fhNFoQqt1wNfXE72+bflwBoOBrJNZKHoFxUHBZrJhM9gI7B7Y5nPVUlZWhotLmyaRXY7BYKCgsAiTyYSDgwPeXp5k5Wah9lYj6pnASiSWAgt9ov4IR1+M91PLkZRUfILCof6Ct5ScyjxKVGREk8c1dU8Gg4GiwnxMJiMODlo8vXyb/Ts4eORgq/qwqyksKqTAVIDK4Q9VtNVkRVOpISy0ZYGvwWAgvyAfo8mI1kGLr3fz912fgwdTUasjzn4LsFhS6dOn6fegOcaMGdOpMyg77aOpGVRzccfrqZaX+wNv1dtuABZ2QptygIB6z/2BE2fvJIQYDyyg3uAEIKU8UfMzTQixExgInDNASSlXAiuhOsR3oUJIdeENrR5qlhANeQb8kloX3miMiy0klpSURML7GxuEwTa+/zplJelYRlsaDe3EPhxbt+1iu5/6vL1qDf39BjYw1M04tI/k73/k4YdmNnlcZ93Ta2+91mR4rH4fdjWJ/0zkE4dPUEx/BF9sVhsF/yzg0O6ujWq99tpa8vKGNhJu/4nY2KbfAzuXLk2G+KSUq6WUVwIzpJRX1ntcJ6X8tBOuvQcIF0KECCEcgLuAf9ffoWbd6R3gRinlqXrb3YUQ2prfvYDLgYs65tveBeKLZVG4Mc4OWb60eEmjYTCt4toljhmdRWtCry3lcjWFwWBg+qRJjI2OZvqk9lfm7SrXkbaiddB2KDm9IzQVbr/qqt7n9PG2pKRO6Xc7F5YmZ1BCiLullB8C3YUQc85+XUq5vCMXllJahBCzgf9SLTN/X0p5UAjxIvCLlPLfwFLABfi0JpegVk7eG3hHCGGjepBdLKW8qAeo9vjune8SC22hsZyWg2sOM6KooWApICKGKqOFhOcurnyxWlpb8qQ9uVzbkpIozMpiTl4eMd7e7M/LY2k7jV272hS1tfh6+1K5vrIz3cNbTbWbBsTHL6+riXXVVQP4be1a5jk61vXxcw88QJmULPP27nC/27mwNLcGNUtK+ZYQ4qXGXpdSdkaY77zSHhVfZ9EeFVZLCsILGRJrTJH12479+KZH8ex7O+u2ZRzaR/JniXy8bk2L57wQ99NRZVlzTJ80iTuuv55r66177jMYWO7nx+rNHTv3haIjKr6uYPqkSczJy2NgvXWsf+3dywYh+L+Bf3xumur3zlbxtZeUlBSHuXPn+m/ZsiUtOTlZO3ny5NAvvvjiWK9evcz191u3bl23sWPHlvXs2bNRFfXy5cs9ly1b1t3b29vs5uZm2bx5c5qjo+NFXz6kzSq+msFJBRRIKRee/ejKxv4ZaY/v3sWYg1UbDvtmxzekf51O8cHiutcC+/YkO3V/m8NgF5LOyM1pisy0NByVhh+xS93YFTrfnqsj1BrN1ifQbOa0ucH/9S7r902bNukn3XJH2IDhl/eZdMsdYR11Ez9+/Lhm8uTJoRs3bkw7e3CquV63lnKWHnroofxffvklxd/f37RmzRr3lq5ptVob/f1ioNkblVJahRC3AB0K59mppq1uChdbKYoGs8BAZyrLKjm27RhhhOHRxwNNhYaY3r1J/uzSsTTqypInQaGhVNoa2o5d6sauFxtBoaHsP2sGlaXR4F5P6ld8+jTbs3PIlpI7p97XYhn51rJp0yb9snfXBY67/ynrLVH9zFlHflcve3dJIJB18803G9p6vjNnzqhvueWWXm+//XZmv379jAsXLvT95ptv3AwGg+rll1/O7d27d9W3337rlpKS4jhq1KjS1NRU3cqVK7NCQkLMixcv9nZ0dLTVt1Xq27dvZU5OjsPJkyfVU6dODSorK1P5+vqa//Wvf6Vv2bJFv2zZMl8hBH/7299Or1u3zqt///7lhw8fdgwPD6+aPHly8fjx48s//vhjt127djm/8cYb5wjYzgetyYP6XgiRIIS4TAjRr/bR5S2z0+4crK7Kt6qfixPYMxDhKJBDJTn/y6lbtH95/st8vG4NP/9vOx+vW3NRD07QteKDKXFx5Nls7DMYsNT8PN/Gru0pvXIpUWs0W7+P17q7c8at2kj3VHExWzOzeMfZlVtfW0f/22JZnLiqUz4T732w0Xfc/U9ZQ/oOtqnUGkL6DraNu/8p63sfbGxX2eGDBw86eXp6Wq688soKgKeeeqpg165dqUlJSUcXL17sFxUVZRo1alTJ6tWr0xMTE3MnT55ctHr1ag+Af//73+5Tp049Xf9833//vT4qKqrqueee85szZ86pXbt2pQ4YMKBi3bp17gAGg0GVlJR07NFHHy0CmDRpUsn3339/9P777y/64IMPPAE2bNjgcf/99xd1pJ86QmsGqFHAIKpthhJrHm92ZaPsVFO/FEVBwYRWlaKoXzqjrYmULVE/HObu4U54YDg6Fx1lx8o6pVTIhaArSp7UMm78eLwCA1nu58eEggKW+/kx4zwu1Len9MrFztlfviQwIyGhQR/Pfe89FqxaxXI/P67IyCQxLJqhL71NvysndCjB+mxycnO1gVH9GkyRA6P62XJyc7XtOd/ll19eGhAQYHz88cd7AKxcudJj8ODBkTfeeGOv/Pz8c5zL77rrrpKtW7e6HTlyxMHT09Ps4eFhg+oyHkOGDIl0d3e33HPPPWdSUlJ0L7zwQo9hw4ZFfv755+4nT55UAwwYMKBcqReCvvLKK8trflYcOXLEsbCwUFVYWKiJiYkxnn3t80Vr3MyvPB8NsdM41Ya0m88LIwAAIABJREFUrVfsNWfI2dF/umeHw9w93FEb1PiN6big4ELSlUa2er3+ggkiOmpKe7HRnBt6Y308bvx4hl85lpkrv0JVr6JrQEQMX2Rkdbg9/j17GrOO/K4O6Tu4bpDKOvK74t+zZ7v/oa9atSp7woQJYYmJiR4rVqzwO3r06IGCggL1yJEjo6C6jEWti7lOp5NhYWFV8+bN6zl58uS6xeCHHnoof/78+XVy2vDw8KrbbrvtzMSJE8sAjEaj+Oabb1yUs9ZHVfUKQ1599dUl06dPD7zhhhsazMrON62qqFtTsPBxIcT82kdXN8xO++jKRf+LJRenq/iz5c6015T2YqU9dk/NFcvsKA/ce0/+tveXqNIP/KpYLWbSD/yqbHt/ieqBe+9pd0l4tVrN559/nrZy5UofX19f09ChQ6OeeeaZ7i4uLlaAa6+9tiQuLi5g/vz5fgD33Xdf0Q8//OB66623ljR1zpdffvnk66+/7jtixIiIESNGRNQWVmz23h54oGjr1q3u99133wUdoFqcQQkh3gK6AVcBq4FbgV1d3C477aQrF/0vllycrmBbUhKr5s5tkE9zKeXONGYQ3J7SKxcz9euW1dJSrbIHp01hceLrjZr8dpQaIUTWex8s892Um6v179nT+MSDU3PbI5CIjIw0bdmyJQ3Azc3NlpycfKSx/aZNm3Zm2rRpZ2qfK4rCTTfdVKzRaACYM2fOOetFfn5+1q1bt57jsjNp0qS6du7evbtB/o0QgtGjR5d07979gtb7a009qCuklP2EEMlSyoVCiCXAv7q6YXbaR9zMOOa+MrfLEin/rHWd1sfHM8/RsU4NNlCvZx6wPP7iD4c1VQBx4PBpLF21lnkzqmdO+4+Us3RVJTMeuTRnvO358tXVxTJvvvlmQ3sGpM5g3bp13ZYuXer3ySefdOqUeOvWrc5PPfVUwLJlyzq9BEhbac0AVVtIq0oI4QcUAcFd1iI7HeLPPMvpSjLT0ojxPqsS8SWSs9TkWtOH3zHjkQSW15tZzXjk4qxQ2xra++Xrz/qlaurUqWdqy6p3JhMmTCifMGFCozO4801rBqivhRDdgNeA3wAr8EGXtspOh/izfiC7ksbyaS6VnKXqtaazBteataZLtfpuY9i/fP31aI2K7/maXz8VQmwGHKWUxc0c8pegfoG/C233YqfjTImLY+ncucyjeua0v7ycpZWVzDiPOUvt5c+21tQc9i9ffy2aVPEJIW48+wFcDVxR8/tflq7MNbJzYRg3fvw5+TTnM2epI7SnAKIdO5cCzc2gbm/mNclZpTH+SnRlrpGdC8elGg6rbvOfZ63pr0hKSorDiBEjeoeHh1dVVFQoc+bMyZs5c2anSLzrG9HW375582b9c88910NRFHx9fc2rV6/O9Pb2tt56663BTz/9dN7QoUOrOuP6HaHJAUpKOfV8NuRSoj1y14uJpKQk3l27nowaVVNneZPZuXBcqoPrpc6mTZv0Ce8l+GZlZ2kDAwKNcx+Ym99eVd/w4cMNW7ZsSTMYDMrw4cMjWxqgrFZrg+TatpCfn696/PHHA3bs2JHas2dPy1tvveXxwAMPBH7xxRfp7TphF9Fioq4QQi+EWCKE2FXz+IcQokOOvZc6ocGhLRZtu1g90JKSklicuIr+t8Uye+VXnepNZsfOX4lNmzbpn3ztycCCAQVqz1me5oIBBeonX3sysKOO5mVlZYqjo6Pt888/dx0xYkRETExM79rE3OXLl3tef/31oaNHjw774osvXGfOnOk/bNiwyJiYmN4//vijI8COHTucBg8eHDl06NDI5557rs4X0Gq1cs899wS9/fbbHp9++mm366677kxt2Y5Zs2YV792719liqU57euONN3xGjBgRccsttwQD7N6923HEiBERAwcOjLr33nsDoXoGdvnll4ePGzeuV2RkZPTq1avdx44dG9a3b9/eubm5aqvVyuWXXx4+bNiwyJEjR4YXFxe3yhiiPq054H3ADNxb8zBRnbD7l6UlR4WL2QPt3bXrG6162xneZHbs/JVIeC/BVzdaZ3UOdrYJlcA52NmmG62zJryX0C6z2J9//lk/bNiwyP79+0dPmTKlaPz48WW7du1KTU5OPvyf//ynW1lZmYBqu6OdO3ceu+WWW0qXLVt2Yvfu3SnvvfdexuLFi/0AnnjiicDPPvssbc+ePSnPPvtsPoDVahV33XVX8NVXX136yCOPFJ88eVLTs2dPU/3re3p6Wmp9+gYNGlSxa9euVK1WKzdv3qyPjo6u+vHHH1P37dt3JC8vT7N//34tgJSSbdu2HX/44YdPbdy40WP79u3H7rzzzqIPP/ywm0ql4r///e+x3bt3p1x33XUltca2baE1A1S4lHKBlDK15rEQCGvrhf5MtGQwWj8vRa1WavJSHFm/tmlLlrZQa5h58MjBFt3KzzbXTP7tNwIiGtaYCoiIIaMTvMns2PkrkZWdpXUKcGpgFusU4GTLys5ql1ns8OHDDbt3707Jysrav379es+ffvrJceTIkRHDhw+PzM7O1p44cUIDMGTIkLrwzYsvvug7ePDgyNjY2MD8/HwNgMlkEiEhIWb4w18vOTnZubi4WDV9+vTTAD169DCdOHGigQFtcXGxutY5Yvjw4RUAgwYNKj969Kg2NTVVO3r06PChQ4dG7t+/3ykrK0sD0KdPn0qAgIAAU9++fSsB/P39zadPn1aXlpYqkydPDh4yZEjkBx984FXb/rbQmgGqSghxWe0TIcQI4IIvnl1omiva1pUeaPUVhGpvdbMKwsbUhidNGez4dFWD/TrLm8yOnb8SgQGBxorsigb/QyuyK5TAgMAOuX/rdDoJsHDhwp4rVqzI2rVrV0qPHj1MtdXPFUWRAHl5ear//ve/bnv27ElJTEzMklIKAK1Wa8vMzNTAHwUIBw0aVDZq1ChDbGxsT4Dbbrut5D//+U9d8cN33nnHY9CgQeXqGlPdPXv2OAHs27fPKTw83JiQkOAdGxt7as+ePSkxMTEVtdeqX3+q/u9SSv7v//7PtXv37uZffvkl5d577y2sPaYttGaAmgW8J4Q4JoQ4BrwLPNzWC/2VqM5LabhG1Vl5KfUVhALRrGFmY+aavpN8+PfaVy6pqrd27FyMzH1gbn7VzipVeUa5Iq2S8oxypWpnlWruA3PbZRZbG+IbMGBA1Pjx40smT55cdPfdd4fefPPNIY6Ojraz9/f29rZ6eXlZRowYEblu3bq68Nlrr72W/be//a3X8OHDI1566aW6cOOzzz57ysnJyfb000/7+fr6Wl9//fXsG264odfQoUMjv/zyy27vvvtuXRhlz549zsOHD4+oqqpSJk2aZLjppptKFixY4H/NNdf0am3V3VGjRpV/9913+tGjR4ft37+/RYPaxhC1o3KLOwrhUbN/pxWvEkJMBBIAFfCelHLxWa9rqXatGEy1xdKdUsqMmtf+Dsyg2tlijpTyvy1dLzIyUqakVHsiLlmyhPjlH3K6uBR3D1fi5tzNoEGDiY9fT1paJq6uGrzcS6goL60z36yvkkpK2kZ8/Hr27z9EZaUZnc6Gs7MOi/E4VZUGHLUWbr9Ow43jtGSfVPPBly74BV3N5q9+IT8vF083AyrFjKJyROvih3f3ACrLS6gypFFuKEUgqagSODhoKTECWoFGaCgr1iLVJrxcKln4zCJeXjyfgioHKFXj62FEo7Hg5OKGogolLSMPlwgd/tc44tGnuvKzzWrj8AtHUFt7UFRwGiFUuLpqGDbsMuLipjQo7bFkyRLWrn2NstISFEWD2aQCacRsUSg6o8PHL4i4OXfz1FNPsWTJEjasW05pyWlc3dyZPHUOR48eY93GrzEZrajUAj9vD/R6b0JDg4iLm8Inn3zEV5s/xmqpQqXWsejVFeTn57Nh+XJKi09j0ahxdLViNFdhsqgpOu2C1kGFm74IsKJSCVQOrvSJjsJ0WmIuNWCRkpyCAgxnzuDoZsWmgFajZdykqaxc+W7d+372e6DXdMNNUaiyWjF288JsqiI/w4DJItGoBR7+Cnov/TlJ2duSklgfH09mWhoVNsnxPAsVlSYUITGaK3h1ybPMe3IJKFU4OevpRjEai4UqITht1GO1gkbY8NQbCenRnZyCAkpPn6HM5o4FNWqliu6+lShCIhGUV5jRqG2YrQ4UluhxdNYjsFFVBRqbCReK0Lk4oukGNpsFReVAQbEeY5WCVljp4WrismFDmRJ39t/zH8pOnVaDsUxDevoxHEQuKlGFlILSCskLLy3mlRf/jhQCnVaglqCxuuLj4UlOQQFlZ0ople5YFA0ueif8fDxQFCfKykooOJmF2aJGogLFhLOzK3qZh9piRuvkhC4wFJPFSqmxEI1GhZ9nd4TJi/T0bCpLinG0FaByUKFyMiKwIVBRUaZBsVjQutmQGgUHrRMms0QRJoSiwap4EdorHGOZhtLSCqS0kF9wAkOJAQ83A8VnKqXZIuu+qCcnJ2f079+/sJX/wjpVxfdXJjk52at///7BZ29vcoASQgwF/gn0AvYDD0gpUxrduR0IIVRAKtXJvznAHuBuKeWhevvMAvpJKR8WQtwF/E1KeacQIhr4EBgG9ACSgAgpZbNDe+0AtWTJEl58eTNuPotw9RhGafFuik/8P1z1koCAtzCZTuGkzCJ28mmuGRNA7ilNjclmdeJmUtI25s5dhdn8EDk53QADFst8okOPMHuymchePUhJO83bH52isMKdwLBIMtKLKMx1R629nlDf95k9WU2IfxEZJ7S8uf40pepo3FW/8/BkM30DwVCm4c0NCr2CXNm+q5RUqcN0KgxbyZX0C99E7GQN3aNjOXloMYkbzmAo1/FMrA9BfidJz7WSuMGDI1lPIVw9ECKRsMkVePRxJ2d7LnmbvOnu+0pd24VIpEePUTg4fFdXEHHJkiV89vGzzH1EIdDXRuYRExu+VDNmWCDubioSN+aRduoebOaDXHWFC2cKfmDBYz3pH+NF8v5Cnlt8nF8P+aP2fA5FFYbpVDrY1uPrcw/+/n05fvwBgvwOEndfMOGhPhxNO0WFy0O8Ovcp/hkcToGxgk+dM7nnHvD3dyIzx5s3NlRSVmHm/z1YzoBIE+Vlgjc2SHqHKKT86sDf8t1QThWwAugWbuPvk8HVH3JPqFm0wYbVZTCHjugQqmv+eA96FpGRq+btDSWMSJNcFxjK/KICUkoD6EEsHuoIisxHyBNv4nbNKfxH9KRyZyUJ8xMQUOeAfry4mMcyXCljNi5KL/KsuVjZwNLXpjP/yW6YeROFXviKHdzmlMm/yoMwMAsfeqGQzglWcD2/k4ZCNn3RE0seZwiPiOeRyacZElhFyilY+yWMH+6Ah1t34jdAcspdIJJxFFfTQ+1FmflF+kSlc/89ENbPkwMHjaz4QM+xo0/QXeWJzRrPLN9T/NrNrS4RuVbZOfa+xykpKmTN8ys5U9CbPkEf8thkQYD/SXIKqtjwpZrpDy3DfOIJ1n9p5ZqRkv4eOhLWGul9WLJdKGQSg6NqNidtwRjJR8gNODndQEW5HoUNKFyPIBIzK1DRC29lO/O8DqO32HirHI77uuNyqzdnMk9g3hmOLJ+FzhSInyaXcusieoelMvMeGBGs5mimhWfWg7VK8I9HHND6mcgoFGz4Em6a5Iuvr55Fb+RwOL03QjyNi643+aeSEaygb3gmsyfrWbrqOKkZlrrQU1sHKDudQ1MDVHMhvreAZ4CeNb8ndHKbhgHHpJRpUkoT8BFw01n73ASsrfn9M2CcqA503gR8JKU0SinTgWM152sV8cs/xM1nEW5elyMUDW5elyNFHMWn3dDrB2KqXMHcae707tWLvLxT54gc4uPX4+g4j6IiH1SqULTaK+imtxI72UpESBhWawF9osJ4dFoEapWWRxJ3gkMgQh2Hs2Yrs6e4ERHSA7U6iLAAM3OnBWIs2MujsWp6BwiCemgZ2l/LE/crHM+sInaqHy4FVahdHsfLfTex97gSHuwHOBAeaGPuVBXBPcuIjuiBShVAWICWudO96eb0KaIyHCljyflvteowb7OZ7r6LGrRdUZ6iuPhnHB3nER9freZbu/Y15j6iEN1Pi6rCzNgRWp5+UM33e4uJCOnB7Mk9cVZ9iZvPIvbu2cmCx3oyZJAPGo3CkEE+PHwneHm64OAWg7VUhaIeD+r5nCr4DL1+IBrFxuzJOnpHdEetVtE7ojs+Hhoc3FQM8fLhS+MJnpuiEBWkQVH5ExPsQdy95QT1NNKnl4ae3QVXDlCYPx1S020snKbm/8ynmOigw9fNxoOT4YoQFaFqhaAAK69McyDreDJuPosavAcqdSARgRbiJncnSQ9DvHxQStVo5Sx8dP2xWax4OETip3qUMzttDUKq9R3Q38wx4i1mE6ZEkG/VoGUsgr8D5Tgow9DyBILjuKpns67cCS8xm16EU4pCd1UkPYnlf3ihxgMjsfgpEXi7f87syXpiggKp0AiuHQHzZ8K3v6rpG+zB7Ht0eLn/AvwdxbYTH20MTh56ZtytMCFcR9WZEnqHhTF7sivebp/io43BWfME/y6EeY6OrI+v/nuur+zcuu4jnN2ewUP/Px6brKVvqCcaBxVjR6iYP1ODocLMuBEO/H2mAzt2Cy6P0PLEPYJMD4FKemIkFg9NJGrpiJBjEJq/U16+BZ0YD/wdGz+iU41AyxPAcdzUj/JJSTf6uDsyy1niePo0buE+yMNeSM0sFBmCv6LBRxuD1lXHg5PVTAxRKJUWRoWoeHwaeHSXjIzQ4aITjB0ueWa2li1JRQwe0p3YexxwcZB4+0/gVIEBjcN1eHZTiJ1sJCKkB9VBGjsXK83NoPZKKQc19bzDFxbiNmCilPKBmudTgeFSytn19jlQs09OzfPjwHDgeWCXlHJ9zfZVwNdSys8auc5MYCaAt7f34E8++YS9+w6gdewD/LFmZ6yoQMos9PooTMaDhAaoEUJgs1Xg7OwESFLTLURE9uHgwVTU6ggqKioRojq0qoiDhPibEcIJKStQVE4gJcezy9E4uVJRWgkEo1FlEOLvULegKGUFQnEkLbuMXqEqMFnR6ZSa1+BYpqSnn4707CosqijU1uOE+FeLb2wqTxRrDkLYyMmTBPTQI21WpDSiKI4czzKj1vTGZDZisx7HtZsjleUWHByiGrS9+lqpODlFYLGk0qdPBPv376VXqIIQYKuqblN1e8DfzxkpJek5Fai0A7Aa99E7wrnBImlleRnpuRqsShg2kw2EY/UNyaPo9VFUVe4nxN9a3U81WHAnKzOL3lo9x4wGIv2hAoFEhwqBVVSSkwcBfqDTSlSi+pQpmRDVQ8WRTCuRNhWpipUAf3CqaU6FBJ2i4kCWFZV2EFbjQUL8NQghkFIiqECgIy2ngt5aPYfLq7AQgqOiRtosoFRfqEKmow/WIZFYCixorBChVoMQHDBUoSEEgcCAQIUOK+Dvf5oTOe6AxMYxnERPKmU6zoRU9xPghEAiqSAdB8BMCI4IzOp0gvxVqAApKnHWgVXC0UxBoJ8jVgnpOTbMlkgEx3BSgjArxwjxN+OsUii32hAqF2xWKxk5FhxsYdVttx2jr4uWVIuFiD59OJKSik9QOAhBztFUVOpwrMYD9PJXowiwUYlOKwGF4ooeeDqfQEo4mmkjsocKm9XKsRywWDSYCEGnCCpt1e8bApBHURGBFQkcR0UYEltdf1hkOqFaGzablXQLqAL0GE+akAQhLOAoBYqiwqQcI9TfjLOQVMjq97cCyMqDyB4qKqUVrQMIRSE1w0avED3GigrSstWotH2pKi9HUZxRKX98Vp944glS0g32GdQFpqkZVHNWR93O8txr8FxK2VGro8YUHWePlk3t05pjqzdKuRJYCdUhvtGjR3PPlMcQuuW4eV1et1/a/s+wmjdxxeVbOJnzGs/NyiM8SODgkEO/qCj2HTDw0/d+zHwoltdeW0te3lDS030xmfxRq/VolAUsijtCZEgoNpmJ1jGKI8fyWfRGNs4zepP7WTHmwmfwFB/xSlwFESHdkLIUZDbpJzz4R3wqi17SEaavItTbAUdHDb8fsfLVZ2omjffgpWV5lDq/j2vFRyyaU0ZkqAeljnfgUvYq6bnlfPpvI4ueuoKq8lMgT5KRH8w/XnclImonBsM+/Pw+ZfPm1UyaNJ28vOEN2m6x7MPB4SdCQobi5/cTsbEziY29g/mPlRHdT0tleinB3g4czRB89ZmOJ+7vz9GMfF5dXori+iHWkmdYlRDMkEE+df355b9+4qXlUVS4rcF4woS0BGOzpSKsXzPqqoc5+PtjvPJYOjF9BtYdk111K/EvLuDH8BG8nfYjg+ZYcQ1QUUEILsKZ37NT+exLyUuPCoK9KvB1VvjlkJVvPoPhN7jw30Xl3F7uSLxjBfc+BteEqCiTkiwpKTyp5ZUlNlTuSVhLP+WlOQYigt2w2UpQySwys1x5M/4E34WPYN6eFNLkS/R2HICpqgyhUSi2pXJSvYjL3o7GkGnA74Af3hUwtMYB/fkfUim1voBKRJBsVXAglEqOseQ1A88/NR6LLRkLXxGmuZF88z8IFC+gyF7kAr1VavKshzHwEkHAERbRV4kg120jz8QVEx0EVvVR+npJfs+Erz91YuH9kfyWXsFL8f4UnnkWZ/kV/fQvkOcwn5fnHmB4hAOHjBY0jn05lFLJ6290o4c5EYP5EO62JVwe48dPfn7MjI3l7VVr6O83kODogaxevJqSwsFU5n/CkkcL6Buqp4LDhHhVcTzTgdLKl7jS91lSM618/amJ++e48vNhA9++Icko9uKwWESoLoqUKoUKQhCa49hMX+MobsYkU4GdOKvuxmTdW90fDjfSTbzM6/6VHDxdwStmgcc/riDjnzmYixegnA4h1Krg4aTnhPppXn3sEFcE28iy2YhSqfg8y8rn/4YvnnIjxWTAx0uSnqfjv5usLH/jMrb9J5lXlobi5LuDzMOHUGuicHNawMtxR4gM6Qecoz2wcxHRXIjvB6r9+Gof9Z/f1gnXzgEC6j33B040tY8QQg24AcWtPLZJ4ubcTcmpBZQU/oC0mSkp/AEh4/FwL8Fg2IeD46MkrD3N4ePH8fPzOcd8My5uCpWVS/H0PIXVmobR+D1nDCoSN6hITT+GSuXNwZRcEtZmY4ruBp4CpW8xiESKjSN5c0MJqeknsFgyOZatIWFtFlrvQaxItHA4W5J5wsieZCPL3rfRK0hH4ro8yrx1WMpep/D0cBI3GkhNPwGYOJqpImGtlcyTbhxKPYHVms2xbCMJqwvQOs7GYNhHZeVS4uKmNNl2m20JHh7DG+w3bdqTJLxt49DvRqxOGrbvMrL4XQtXDPIgNf0Eb27Ipdx6AyWnFjBo6GgWvZHLL3tPYTbb+GXvKf75MRQWlWEq2Y/K1YrNkgSWV/Dxvg2DYR9mm8KbG6o4nHoSi8XK4dSTnCo2Yyqx8kvhKW7Q9uCF9TaOZJqxWXPYn1FM/AfOZOZqOXjcTO5Jyf9+s/HKaogIUXhprYVbND5sMVWRX6Lw7gb4Pt1KmsVGZraK+WtNBPbqT8mpBZSbJ/Dm+ur3wGrJIjVLTfyGk4w3wC+Fp7C5WjCKtzhVlYyiVlFsSiHPuoJuo5UGSdlT4uJYWlnJPoOB2f5aCuSbHLOl4qsyY2Q7klcBZ0y23RhZhqQXpZY3mepcQaF8k+McxRUbJ60p5JLIlRRioRgtieTZUik4/Tfe3GBgf2YWTmbJ17vglZUwarCFAxnFvLmxisLTQ4BXsSmjOWXcT0WxgVUf2th6tApdNzcOHzvGmxtKKSi5nVPG/ZSbl3GjFyytrGRKjVP7g9OmsH3N62Qc2seEqXdRXvIyxYYreWODkQNpRZhNVrbvsvLKSjN6Jw3bdpl4daWJMcMkP6QaWbZRElQssYoitCRSbE7BIiqRYgfS/CrOzhOpkknAqyiMpMq6CyPLgF6UWFZwh9sZDp6u5K1yQaW7OyVHTyF6FyLMb2ET6eTYzJwy7sdYWsW7GyxsSbfhKtR8m27l9bVQfFLwY2oVZVWS7T8LXn7TyMTxnvz6y0kSN5ooMwkKcrbi463HbPqKojM2EjdoSU0/gZQdUoTb6WJareLr9AtXDzipwDggl2qRxD1SyoP19okFYuqJJG6RUt4hhOgDbOQPkcQ2qhOKWyWSgK5V8ZmMFWi1zmQUlqKdpsPRyZEefr6UphjI+caIOb0cb/cqFMWMqhEVX5mhFAVJRaXAQdtQxUeVF+XlJXi6lfHMsy/z6qJnOVPmjMUi8HQzoFFbcNJXq/iEcK5TzNVX5zXW9n79BrZKxSelEct5VvFVmaswn63ik9XnbEnFZ1VA16iKLwdPt7K69+DiVPGpUCvGc1R8arUNi9WBwhIXHJ1da1R8Eo3NjLMowtH5/Kj4tFqB5iwVn6GkFIPNHYuixkXv3IyKz4izs1u7VXxgQzlbxadWcNDVqPgwIVRdr+LrDKqqqsRVV10VAXDw4EGnPn36VAB88803R93c3Jqd4m3atEm/detW17feeiu3pesUFRWpbrvttpDy8nJVZWWl8swzz5y48847S5ra/3//+5/Tzz//7PTkk08WLlu2zOv999/3jouLyyspKVE9+eSTndpHbVbxnQ+EENcB8VTLzN+XUi4SQrwI/CKl/LcQQgesAwZSPXO6S0qZVnPsAuB+wALESSm/bul69Qeo88GkOyaR17dhiera8NDmTzZ3+Pw7d+5k9OjRHT7PxcKf7X7gz3dPf7b7EUL8KqUcUvu8rQPUF5s26TcmJPjmZmVpewYGGu+ZOzf/pg7IzPv27dv7wIEDh1u7f2sHKKvVyiuvvOKj0+ls8+bNK7TZbBQXF6u8vLxaldR02WWXRXz11VfH3N3dbW1tY2toj4qvy5FSfiWljJBS9pJSLqrZ9mzt+paUskpKebuUMkxKOax2cKp5bVHNcZGtGZwuBC159tlC95dKAAAgAElEQVSxY+fS5YtNm/TrnnwycF5BgXqHp6d5XkGBet2TTwZ+0UGzWICMjAzNZZddFjF48ODI6667LtRqtbJw4ULf999/3x2qzVvvuOOOoPrHJCYmevTr1y+qf//+UZ9//rkrwODBgyMfeugh/7Fjx4Y5OTnZ9uzZ45ybm6tWFAUvLy/rhg0b3J5//nlfAE9Pz/7ff/+90y+//KK79957Azdt2qSfNWtWz8TERI8DBw44XX311eHPPvusb3p6um7YsGGRq1evdu/ofbZEa9zMzxFSNLbNzrm05Nlnx46dS5eNCQm+T+t01iHOzjaNEAxxdrY9rdNZNya0zyy2Pn5+fpbvvvsu9ddff03x8fExf/XVV/oZM2YUf/zxxx4Aq1ev9rj33nvrKpsbjUaxYsUKv59//jll69atRxcuXNiz9rUbb7zxzLfffnts9uzZRUFBQaaxY8dGDBo0KOrgwYPaCRMmlP30008u+/bt0/Xp06dix44dLtu3b9dfeeWVdbPA2NjY4oiIiMrvvvsu9cUXX8wPCQmp2r17d0qtr19X0poZ1O5WbrPTCM159tmxY+fSJTcrS9vfqaFZbH8nJ1tuVvvMYuuTl5ennjhxYq+hQ4dG7tixwy0nJ0cTHBxsNpvN4uTJk+qff/5Zf91119UNIjk5OeqAgACjo6Oj9PX1tSqKIm226qZdddVVFQBarVYuXbr0ZEpKyqGFCxeeWLBgQQ9vb29rSUmJKikpySUuLi5/7969Tt9//73LhAkTyjp6D51BcyXffYQQ/QFHIUSMEKJfzeMKwKmp4+zYuRhIStrGpEnTiY4ey6RJ00lK2nahm2TnT0bPwEBjckVDs9jkigqlZ2DHzGIB3n33Xc9rr722ZM+ePSljxowpqdUK3H777cUzZ84MuOyyywyK8sel/f39LdnZ2drKykqRn5+vstlsovZ1lUolAVJTUx2MRqMA8PPzM9cOYOHh4VUbNmzwuvrqq8ssFovIz8/XBAUFmTt6D51Bc6G666kWIfhT7SRRSymwsCsbZcdOR6i1onJ0nIe3dwx5efuZO3cpCQk0UCnasdMR7pk7N3/xk08GPk31zCm5okJZXFWlmjp3bouKupa49tprS6dPnx6yZcsWt/pGsVOmTDkzb968oJ07dzYQKWi1Wvnoo4/mDR8+PBLgxRdfPKcNu3fvdrr99tv9tFqtBHj77bczAa666irDgQMHnPR6vS0iIqKq1k29KUaMGGEYN25crwcffLDwrrvualIF2Bm0qOITQtwhpfykKxtxvjjfKr6u5s+mqOqs+6lORp6DXv9HEnB1svJyNm8+v7U27e/Rxc3FpuJrCYPBoFx99dVhu3btSu2qa1wI2uMkUctOIcQ7QE8p5aQao9ZhUso1ndxGO3Y6hbS0TLy9GxZldHaOIS0t87y3xWAwMH3qJDIz0xrNp7NzaXPTzTcbunJAqs++fft0DzzwQNBjjz3WrnIelyKtGaBWAxuA/1fz/CjwMbCmi9pkx06HCA0NIi9vf4MZVHn5fkJDg5o5qvPZlpRE4aks5tydR0yUN/uP5LH07blAgn2QstNmBg4cWPXrr7/+eUJAraA1Kj4fKeVGakyrpJRmqmsw2bFzUVJr52Qw7MNms5xj93S+WL82Hj9vhYF99ajVyjmu+Hbs2Gme1gxQ5TXFCiXU1YmyF+Sy0+W0R4m3LSmJDWvfwEX3A5VlN5KRMQS1eiFe3YtY8MIi7px6H0lJSR2+TmvIzEzDUdfwIxYT5UxmZloTR9ixY6c+rQnxPQl8CYQKIb6luj5UZ5jF2rHTJO1R4m1LSmLV23OZN8ORmKhg9h8p57mEQnLK3bnx0SUERMSQnbqfxYmvA9U5al2p+AsKCqWyqqGV2v4j5QQFhXbovHbs/FVocQYlpfwFGAOMAuYC0VLK37q6YXb+2tQWhdTrB6IoavT6gQ0KKjbG+rXxzJvh2CCkdu8NZTg7mQmOHohKrSY4eiBj73ucd9eub/d1WsuUaXHkFdjYd8CAxWI7xxXfjh07zdMaqyNH4HHgkZqBKVAIcW2Xt+xPTFJSEpPumET0sGgm3THpnJCTnWolnrNz25R4mZlpxEQ5N9gW0N1CRWlRw20RMWRkZLX7Oq1l3PjxePkEsvxDPybcV8DyD/2Y8YhdIGHnXFJSUhwmTpzY6qn1kiVLvJcvX+7Z1Otbt251Hj58eMSwYcMihw4dGrlmzZpundPS80tr1qDer9nviprnJ4BXuqxFFwldNYgkJSUx95W55PXNw/thb/L65jH3lbn2QeosQkODKC/f32BbS0q8oKBQ9h8pb7At+6QaJ9eGn+Ps1P0EBwe2+zptQa/Xs3rdZrZ/d4jV6zbbB6c/GZs2faEfM+bOsF69rugzZsydYZs2fdFho9iOkpeXp3r00UeDPvnkk/Tdu3enfP/996n+/v4XhTNEW2nNABUupXwFMANIKStovKLtn4auHETiV8bjONoRfZAeRaWgD9LjONqR+JV2ZVd92qPEmzItjqWrKhuE1D740oXyCg0Zh/ZhtVjIOLSP7Wte58FpU9p9HTt2oHpwevLJdYEFBfPUnp47zAUF89RPPrkusDMGqcTERI/LLrssIjo6undiYqIHwNGjRx0GDx4cOWrUqLD//e9/LgAvvPCCzzvvvOMBsHfvXt2tt94a/Nlnn3W7/vrrz9TaFWm1Wjl+/PhygIULF/qOGDEiok+fPr1rHc9/+OEHx759+/YeO3Zs2Lhx43pt3rxZn52drR45cmTEkCFDIidOnBhqsVg6ekvtojUDlKmmLlOtii8EMHVpqy4wXTmIpGWk4ezfMAzl7O9MWoZd2VWf8ePHkZAwAz+/5RQUTMDPbzkJCTOaFS6MGz+eGY8kNAipzZ33HkueX0DyZ4m8OfM6kj9L5OnYGXWmve25jh07AAkJG311uqetzs5DbEJocHYeYtPpnrYmJGzssJv5vffee+ann35K/fXXX4+8/fbbvgAvvfSS34IFC05+++23x4SoniPcf//9xZ9++qk7wOrVqz2nTp1adPLkSU337t1NAP/+97/1w4YNixw7dmwYwFNPPVWwa9eu1KSkpKOLFy/2A1iwYEHPjRs3piUlJR0rKSlRA3h7e1u//fbb1F9++SXF39/f9OWXX7p29J7aQ2tUfC8CWwB/IcRaqsUSM7q0VReYtIw0vCd6N9jm7O9M2uaODyKhwaHk5TQsYlieU05osF3ZdTbjx49r80Axbvz4RsNozbnIt+c6duxkZeVqPT37NwidOTn1t2Vl5XbYzfyLL75wTagp25GZmakFSE9P144cObIcYOjQoeUAAQEBFoDc3Fz1Dz/8oI+Pj8/Nzc3VHD16VMf/b+/+o6Oqz8SPv58kJMQQEWEkgoYQBRRJ+SFQdcUiRLF+OcquKGJDCYJUyx4SUVpKf23b1WUPW0xo+boFWWFldaV+d6GHumoTpNIWCyhiKAiVbPihBAKCDiEEkzzfP+4NTuIkmfyYzJ3J8zonZ2bu3LnzudwZnvn8ej7APffc47/nnnv2Dxs27HqAlStXXv7iiy/2jouLo6KiohvAyZMnu33lK1+pBhg+fPg5gBMnTsQ//PDDAz799NOEioqKbsOHD69q7zm1RSij+F4D7gceAf4bJ81RTKeGzszIpPJow76Mjgoisb6IoQ0AMV1Fenr/6nPndjf4P/Tcud1x6en9253N/Omnn77ytdde+/D3v//9gfpksQMHDqx+++23LwF45513LjbDTJs27ZNHH3306jFjxpyNj4/nvvvu+/TVV1+9rKysrBtAYPPcL37xi7S33357/8aNGw/Wb/P5fJ+XlJQk1dXV8f77718CsHr16t7Z2dmf7dixY392dvaZSK283mINSkSeB94Ctqrqh+EvUuTlz80n7+k8GO/UnCqPVjpBZHH7g0h2djaFFFKwsoDSTaVkZmSSvzg/JtaJqu+7Sx6fjO8uH+VHnb67QmyRRhN78vIeOv7kk0vSYRGXXDK87ty53XHnzy+Jz8ub0aZs5jt27Ei95ZZbBgN8/etfPzNu3LjBw4YNO9ezZ89agB/+8IflDz744MCf//zndfXbAL7xjW+cWbBgwYA33nhjP0BaWlrtL3/5y0MPPPBApohofHy8fvvb3z4OcMstt3w2ZsyY60aNGlXZo0ePWoCf/exnH0+fPj3T5/N9npKSUpuYmFg3adKkz3Jzcwf+7ne/u/QSZ82riNSgQslmfifOCL5xwNXAO8BbqrqizW/qZKZ4GcgAyoAHVPV0o31GAM8Cl+KkVnpKVV92n1uD09RYn+o9N5S5Wa3JZl5UVOQEkTI3iMz1XhDxWmbpyQ9MpnxYw+ZL/yE/aXvS2LR+U4uv99r5dIRYO6dYO5/2ZjPfsGFjamHhi30PH/4oKT29f3Ve3kPHp0y5t1Mz7Zw7d07Gjx8/ePv27W3K01ddXS1JSUlaW1vLzTffPOTXv/51aWevB9XmbOaq+oaIFAGjgInAPOBGoM0BClgEFKvqEhFZ5D7+bqN9zgHfVNW/ikg/4B0ReV1Vz7jPL1TVV9pRhmZlZ2d7LiB5XTj77ozxoilT7vV3dkAKVFJSkpSbm5sxf/78Nmc437JlS8oPfvCD/lVVVXF33333Ga8sVgihNfG9DvQEdgBbgZtU9eN2vu+9wHj3/lpgC40ClKoeCLj/sYicAHzAGYwn2QAQYzpXVlZWdXsznE+aNOnspEmTPJklPZRh5geAGmAQMBi4VkTaO0qlr6oeA3Bvr2huZxEZCyQCBwM2PyUi74vIMx1QnphSVFTEtBm5fHXchKDJUcMl1geAdJZwXL/wHDM8SXaNqddiH9TFHUV6At/ESR57haomt7B/EZAW5KnvA2tV9bKAfU+raq8mjnMlTg1rpqq+HbCtHCdorQQOqupPm3j9XGAugM/nu3H9+phYHBiAs2fP0qNHjwbb/H4/x06c5NI+fUlMSuZCdRWfnTzOlVf0ITU1/JPc/X4/xyuOU32hmqTEJPr6+ob8vsHOJ9q19pzCcf0aH9N/+iRnTh0jToTk5OQ2XSO/38/hwyeJi0sjLi6Zuroq6urKSU/vnM9ZR7n99tvb1QdlOkar+6BEJEFVa0TkUZwBEmOAY8C/4zT1NUtVm+zAEZHjInKlqh5zg82JJva7FPgt8IP64OQe+5h7t9odZfhkM+VYiRPEGDJkiMZSB2+wDutpM3IZPnUePYaO5Ly77eTeXRSvX8HLL6zp7CK2Sqx1wEPrzykc1y/wmDv+VMwLq/4BHatciP+EAalXUbWuisLFoY20rD+fyZNnUV4+v8GikH7/LtLSlrNp0/OAU2tbtXYdZWWHychI55GZOdava1qluSa+7e5tL+D/AsNU9Wuq+kNVfaOd7/sbYKZ7fyawsfEOIpKIM+/q31X1142eu9K9FWAKsKe1BYjG+TrFRUXMmjGZCbcNZdaMyfj9X+6bLSs7zNWDGyY/DUyOarwtHNcv8JivrV9O4m3d6Xmtj+oL1W3OktJSkt2ioiKWrFjN8Knz+PuVrzJ86jyWrFgdFd+zznb+/HkZO3bskLFjxw5JSUkZWX9/7ty5V4Xy+gULFvQbPHjw0PrXvf766z2WL1/e++mnn/YB1E/SbY25c+deNWrUqOtGjBhx3eOPP94PYOzYsUM+/fTTULqFOkxzbyYAqvpPqvpHVe3I9EZLgDtE5K/AHe5jRGS0iDzn7vMAcBuQKyLvuX8j3Of+Q0RKgBKgD/CPrXnzaEzYWr/W0fzp5byxxsf86eWcPHGY4kZlzshI58iBhslPA5OjGm8Lx/ULPOaJj0pJ6teD81WVdO/eHWhbqq2WkuyuWruOCbkLmlzmJFZs3LAhddp9t197603X3DDtvtuv3bhhQ6vbN7t3767bt2/fv3379v0DBw48v3379v0/+tGPWjUQ7Sc/+clH9ceYNGnS2daWIdDOnTu7HzlyJPHdd9/94L333vtg8eLFbR4h2F7NBSifiCxo6q89b6qqp1R1oqoOcm8/cbfvVNU57v11qtpNVUcE/L3nPjdBVbNUdZiq5qhqqy5INCZsDbbWUZov7kvLhz8yM4fNa5Y1mRzVeFtHXL/GrQM3Zg29eMwr+mXwWWkFp48doV+akzKuLSMtW0qy2xVq8hs3bEh94bkn0xfmViS8ua735wtzKxJeeO7J9LYEqWD27duXPHHixGuGDBkydPv27ckAr7zyyqU33njjkJEjR15XnyQ2VHv37k289dZbB40dO3bI7NmzrwZYvnx57zvvvPOa8ePHXzts2LDry8rKuiUnJ+uhQ4eSdu/enQROXr76Yzz++OP9R48ePSQnJycd4NSpU/ETJky4dsyYMUPuvvvuzPPnz8ujjz561ZtvvnnJ7t27k3r06DGypqaGpUuX9lm5cmXQcQbNaS5AxQM9gNQm/qJWNCZsDbbWUXL3uC8tH56dnc2iebObTI5qvK291y9Y68Da19Zy580j2f3KCqqOHOPsbz/Gpz3p2bNnm0datpRktyvU5F98obDvom91rx2dlVLXLUEYnZVSt+hb3WtffKGw3cliAWpqaqS4uPjgkiVLjq5cubJ3bW0tTz31VL8//vGPB3bu3PnBc88956tPY/TjH/+4f30T3549e4KOan7iiSeu+tWvfnV4+/bt+2tqanjrrbcuAejZs2ftli1bPpw1a1bFunXret1www3VCxYsKJ87d+6AjIyMYS+++GLP+mPcf//9p3fu3Ll/3759yadOnYovKCjoc9ddd326Y8eO/ddff33VqlWrLv/a177m37JlS2pxcXHqqFGjzm7btu2SP/zhD6l33HFHq2t2zc2DOtbUyLhoF43zdZy1jsoZOeyLMledrwu6fLiXJxkXFRVTULCO0tJDZGYOID8/xxK1NtKe6xfYOgA4t+PhrZ1vXczmcTFLytb2pdpqLsnuIzNzWLJiGRNyF3D14CyOHChh85plLJoXO3mmP/rocNLw63s3mNQ6/PpL6j766HCHTHsZNmzYOYCMjIwLZ86cSSgvL08oKytLuu222wYDnD59OuHjjz9OAKeJb/r06fWZddi8efOXho4ePHiw+6xZszIAKisr47Kzs/0AI0aMOAcwYMCAC9u2bUsBmDNnzuk5c+acPnLkSMLEiRMHP/TQQ58C3HTTTecArrzyys9PnToVf/DgwaTHHnvsJMDNN99cuXXr1h7Tp08/8/zzz/fp1atXzcKFC8s3b97co7y8vNvAgQNbPQG4uQAVs2s+hTPXXrjkzMxn6bN5LJwNWdelUPJBJeUVdVG1fHhRUTF5eatJTl6Iz5dFeXkJeXlLKSzEglQHCSWbR2f8gKk//qq1K9jojuJrriZYXFTEurUFHDpUyoABmeTMzPf84o79+6dX795XkTA6K6Wuftvufefi+vdPb3eyWID6JTUAVJW0tLSaa6655vzWrVsPJCUlaX2KolCPd80115wvLCw8Onjw4At1dXXU1tby7LPP9haRi8dQVTl+/Hi8+361ffr0qe3WrdvF5+Pivmh0U1Wuvfba6m3btqWMGzfu3LZt21IGDRpU3adPn9rPPvssPjExUe+66y7/T3/6037p6W37N2kuQMXs/xjRmLDV+bIWsjzgS/x3D6R7/kscqKBgHcnJCy8OTXZuF1JQsNwCVAfxUutAqIGwfgDQwtnJZF3no+SDcpY+mwcUevrz/dCMvONLfvVk+qJvOTWn3fvOxS351fn4GXPy2pQstiXx8fF873vfO3brrbcOjouL0969e9e8+uqrpeA08T3zzDNpAN/5zneOBXv9z3/+86Nz5swZcOHCBYmLi2Pt2rVlwfY7ffp0fE5OzkBVpba2Vp544onypsqUl5d3curUqQPXr19/+RVXXPH5U089VQ4wZMiQquTkZO3WrRvdunWrGzduXJvSQYU8UTcWtCZZbDSItnlDQ4dOwOd7g7i4L34X1dXVUFFxJ3v3bo668wlFZ59TYEb5wNaBUOc5tSQc5zNrxmTmT2/YfL1rj5/lL6Xx/AstJxluj/Ymi924YUPqiy8U9v3oo8NJ/funVz80I+/4vVOmRCw3X7Rqc7JYYzpKZuYAystLGkzuDByabNovGlsHnAFADZsls65L+dIAIC+6d8oUvwWk8LEAZTpNfn4OeXlLgYWkpGRRWVniDk1uvuM8GvsnIimSg2Takj0i2ACgkg8qgw4AMl1Lp84KNl1bS0OTgwk2QXn1s3lfmqBsIq+t2SNyZuazdHUVu/b4qampY9ceP0tXV0VqAFBtZWVl967U9RFJqkplZWV3nDX/vsRqUKZTNTc0OZjACcoAI4elsnA2LF9b4LlaVLDaQ0JC1/mKBWaPAAKyR6xothYVbADQ7MciU0uura194uDBg4tUtS8xPJLZQ1REjtfW1v4g2JNd59tjolK09E/U1x4m5C5gsjvvZ8mKZeQ9/FCki9ZpysoOMzlI9oiNIWSPmJid7YkfHKNGjdoAbIh0OYzDmvhaobMSzEZqPScvcvonKhts82L/RFO55ypOnop00TqNF7JHFBcVMWvyZCYMHcqsyZOtKTjKWYAKUWclmO3MLNDREAg91j/RpKZyz1240JE5lr0t0nkgi4uKWJ2Xx/zyct7w+ZhfXs7qPOuvjGYWoELUWQlmOysLdLQshzAxO5vZjxWy/KU07sytYPlLacx+rP0TOFv6pR1qbbl+v32l7/LUo9mU/OmLVWWPHCghMTGxXeWMJpHOA7muoICFycmMTE0lIS6OkampLExOZl2Bd5NAm+ZZH1SIQkkhE+hivrMydy7K3NDmorSnHb812tqhHQkd3T9R/0t7YXIyWT4fJeXlLM3Lg0In8AVOdvXd5aP8qFNbLqThZNfA/QaOHUDp7r382y8fI7f2l/Ts7WPzmq7VBwWRHeJ+qLSULF+j/sqUFA6Vequ/0oTOalAhyszIpPJow76QplLItKc5sLPa8bvCcghNaemXdqi15cD9LvddzjWj0rlww2f86kczLtYeomn582g3IDOTkspG/ZWVlQzI9FZ/pQmdBagQ5c/Np2pLFf5Dfupq65pdpqA9zYGd1Y7vhQ7tSDlUWkpWSsOlSwJ/aYe6HEvj/Xpd3ouv3HYD/fr15eUX1niuJhrrcvLzWVpVxS6/n5q6Onb5/SytqiIn31v9lSZ0FqBClJ2dTeHiQtL2pFHxrxWk7Un7Un6z+kEHxVve5JD/KKc/OX3xuVDXm+qsdvxQAmFLgyjaMsiis0ZCNqelX9qh1pZbU6uORtEwiCbQxOxsZhcWsjwtjTsrKlielsbsQm8nnDXNsz6oVmiufT1wHsyBU8c5UXuIQx85SYV7Xd6rVf9xeWE5hKbm9dS/tqXngwm1byfccvLzWZqXx0KcmlNJZSVLq6qY7f7SDnU5lmhctiVU0TqvyyvzqUzHsGzmHWTajFyGT51HxtCRlPypmBdWLUDHKhfiP2FA6lUdmlG6XjgzZQeeT72yvbvY/coKXn5hTYvPBzP5gcmUD2u4FIT/kJ+0PWlsWr+pUzN/FxcVsa6ggEOlpQzIzCQnv2HmglAHubS0X7RmaG/q+qZ98hcenpUbuYJ1sMbZzI23RKQGJSKXAy8DGUAZ8ICqng6yXy1Q31FyWFXvcbcPBP4TuBx4F5ihqhGdcBI4+i7rlonMYBmvvVzABzsPkTY+zfMZpRtraTRhW0YbtnYkZDi19Es71Fqsl1cvbo+mrm/lW7siVCLTFUWqD2oRUKyqg4Bi93EwVao6wv27J2D7PwPPuK8/DUR8HenGgw6ybpnI/d/6KfdMup9N6zdF3X9iLQ2iaMsgi87ss/FCX1c0a+r6dqV5XSbyIhWg7gXWuvfXAlNCfaE46yBPAF5py+vDJdKz6DtaS+fTlvNtzUjI9uisrB+xrKnr6+vTO9JFM11IRPqgROSMql4W8Pi0qvYKsl8N8B5QAyxR1Q0i0gd4W1Wvdfe5GvgfVR3WxHvNBeYC+Hy+G9evX9/xJ+Ty+/1UnDzFhQsXSExMxNend4fOg/H7/RyvOE71hWqSEpPw9fbRs2fPDjt+sPdr7nzacr6Nz6Gvr+/F15w9e5YePXq0u9wfln7I58mfE58Yf3Fb7YVaulV149rMa9t9/NboqHOKhGDXV0Si9nyCuf32260PysPC1gclIkVAWpCnvt+Kw6Sr6scikglsFpES4LMg+zUZZVV1JbASnEES0dhhDU6tYNEzixos5T2rZhYpKSlR13zYlI4aUPDt73wb36M+4i580UBQV1tHxb9WsHf73nYfvzWidZBEU2LtfIy3ha2JT1WzVXVYkL+NwHERuRLAvT3RxDE+dm9LgS3ASOAkcJmI1AfXq4CPO6LMXu63CDb5Ny41rsNzAcaCWJqf5OXPpDHhFqk+qN8AM937M4GNjXcQkV4ikuTe7wP8DbBXnTbJN4Gpzb2+tbzebxEsu0FcYlxIk3+7mnD1dRUVFTN58iyGDp3A5MmzKCoqbvlF7Xo/b38mjQm3SAWoJcAdIvJX4A73MSIyWkSec/e5HtgpIrtxAtISVa1vn/kusEBEPgR6A6vbW6DOylbeVsFqBXUX6qKyVhBuoWT9aK2iomLy8lZTXj4fn+8Nysvnk5e3OqxByuufSWPCLSLzoFT1FPCldb9VdScwx73/JyCr8T7uc6XA2I4sk5fm6AQTLGtBXVpdh4+AixUdPT+poGAdyckLSU11Jq46twspKFjeqiXsW8Prn0ljws1y8bm83m8RrFaQfmV6zAyQ8LrS0kOkpDT8vZSSkkVp6aGwvafXP5PGhJsFKFdnzdFpj+zsbDat38Te7XvZtH6TLeXQiTIzB1BZ2XDiamVlCZmZA8L2ntHwmTQmnCxAucLRb2FiR35+DlVVS/H7d1FXV4Pfv4uqqqXk54dvIrZ9Jk1XZ9nMA8RqXjXTftnZEykshIKC5ZSWHiIzcwD5+bPD1v/0xfvaZ9J0XRagjAlRdvbEsAckY/TfiyEAAA14SURBVMwXrInPGGOMJ1mAMsYY40kWoIwxxniSBShjjDGeZAHKmHbo7Px8xnQlFqCMp4Qje3e4MoJHIj+fMV2JBSjjGX6/v8Ozd4czI3hgfr64uARSU0eSnLyQgoJ17T62McYClPGQ4xXHOzx7dzgzgkciP58xXYkFKOMZ1Reqv7TmVcpVKe1a8yrYOlrtPWa9zsjPV1RUxLQZuXx13ASmzci1taBMl2IBynhGUmJSh2fvDmdG8HDn5ysqKmLJitUMnzqPv1/5KsOnzmPJitUWpEyXYQHKAN4YjdbX17fDs3eHMyO4k59vNmlpy6mouJO0tOUUFnZcfr5Va9cxIXcBGUNHEp+QQMbQkUzIXcCqtdbHZboGy8VnLo5GS05eiM+XRXl5CXl5SykspFNzz6WmplK4uJCClQWUbiolMyOT/MX57UqWmp2dTSEde8yGxw9ffr6yssNMHtywj+vqwVlsLDsclvczxmssQJmIrBbblHBk747WjOAZGekcOVBCxtCRF7cdOVBCRkZ6BEtlTOeJSBOfiFwuIr8Tkb+6t72C7HO7iLwX8HdeRKa4z60Rkf8NeG5E559F7IjG0WjhmtvkJY/MzGHzmmWU7d1FbU0NZXt3sXnNMh6ZGb41qIzxkkjVoBYBxaq6REQWuY+/G7iDqr4JjAAnoAEfAm8E7LJQVV/ppPLGtMzMAZSXl1ysQUH4V4ttj/q5Tcnjk/Hd5aP8qDO3qZDYWsyv/lxWrV3BxrLDZGSks2je7Jg6R2OaE6kAdS8w3r2/FthCowDVyFTgf1T1XHiL1TXl5+eQl7cUWEhKShaVlSXuaLTZkS5aUIFzmwDndryzPdb+847W5kljOoKoaue/qcgZVb0s4PFpVf1SM1/A85uBZaq6yX28BrgZqAaKgUWqWt3Ea+cCcwF8Pt+N69ev77DziLSzZ8/So0ePDjmW3+/n+PFTVFdfICkpkb59e5Oamtohxw5VqOfzlw/+QoIvAUEublOUmooabrjuhnAWsdU68hp5Qaydz+233/6Oqo6OdDlMcGELUCJSBKQFeer7wNpQA5SIXAm8D/RT1c8DtpUDicBK4KCq/rSlMg0ZMkT379/f6nPxqi1btjB+/PhIF6PDhHo+kx+YTPmw8os1KAD/IT9pe9LYtH5TGEvYel31GkULEbEA5WFhGyShqtmqOizI30bguBtk6oPNiWYO9QDw3/XByT32MXVUA88DY8N1HsZ7wjm3yRjjHZGaqPsbYKZ7fyawsZl9pwMvBW4ICG4CTAH2hKGMxqOys7MpXFxI2p40Kv61grQ9aRQujq0BEsaYyA2SWAKsF5HZwGHgfgARGQ08qqpz3McZwNXA7xu9/j9ExAcI8B7waOcU23hFWwcPFBUVOZN2y9xJu3M7btKuMaZjRaQGpaqnVHWiqg5ybz9xt++sD07u4zJV7a+qdY1eP0FVs9wmwxxVPdvZ52CiTziX3jDe0hXmyXUFlovPdBnhXHrDeIf9EIkdFqBMlxHOpTeMd9gPkdhhAcp0GeFcesN4h/0QiR0WoEyXYcPTuwb7IRI7LECZLsOGp3cN9kMkdthyG6ZLsdx2sS/ca4CZzmMByhjjSUVFRaxau44yN5P7IzNzQg4y9kMkNliAMsZ4TlFREUtWrGZC7gImD87iyIESlqxYBmCBpwuxPihjjOesWruOCbkLyBg6kviEBDKGjmRC7gJWrV0X6aKZTmQByhjjOWVlh7l6cMNVnq8enEVZ2eEIlchEggUoY4znZGSkc+RASYNtRw6UkJGRHqESmUiwAGWM8ZxHZuawec0yyvbuoramhrK9u9i8ZhmPzMyJdNFMJ7JBEsYYz6kfCLFq7Qo2uqP4Fs2bbQMkuhgLUMYYT7Kh4saa+IwxxniSBShjjDGeZAHKGGOMJ1mAMsYY40kWoIwxxnhSRAKUiNwvIn8RkToRGd3MfneJyH4R+VBEFgVsHygifxaRv4rIyyKS2DklN8YY01kiVYPaA/wd8FZTO4hIPLAC+DowFJguIkPdp/8ZeEZVBwGngdnhLa4xxpjOFpEApar7VHV/C7uNBT5U1VJVvQD8J3CviAgwAXjF3W8tMCV8pTXGGBMJXp6o2x84EvD4KPBVoDdwRlVrArb3b+ogIjIXmOs+rBaRPWEoa6T0AU5GuhAdKNbOB2LvnGLtfIZEugCmaWELUCJSBKQFeer7qroxlEME2abNbA9KVVcCK90y7VTVJvu8oo2dj/fF2jnF4vlEugymaWELUKra3hwlR4GrAx5fBXyM8+vtMhFJcGtR9duNMcbEEC8PM98BDHJH7CUCDwK/UVUF3gSmuvvNBEKpkRljjIkikRpm/rcichS4GfitiLzubu8nIq8CuLWjvwdeB/YB61X1L+4hvgssEJEPcfqkVof41is78DS8wM7H+2LtnOx8TKcRp0JijDHGeIuXm/iMMcZ0YRagjDHGeFJMBSgR+TcRORE410lELheR37lpkX4nIr3c7SIiy900Su+LyKjIlbxlIvK4mx5qj4i8JCLdoz3lk4hcJiKviMgHIrJPRG5u6npFCxGJF5FdIrLJfRyV10hErhaRN93r8hcRyXO3R/X1CdRUKjXjHTEVoIA1wF2Nti0Cit20SMXuY3BSKA1y/+YCz3ZSGVtNRPoD84HRqjoMiMcZ1RjtKZ8KgddU9TpgOM5gmKauV7TIwzmPetF6jWqAJ1T1euAmYJ6baizarw/QYio14xExFaBU9S3gk0ab78VJhwQN0yLdC/y7Ot7GmVt1ZeeUtE0SgGQRSQAuAY4RxSmfRORS4DbcEZiqekFVz9D09fI8EbkK+D/Ac+7jqE3LparHVPVd974fJ+j2J4qvTyNBU6lFuEymkZgKUE3oq6rHwPnSAVe424OlUmoyZVIkqepHwL8Ah3EC06fAO7Qi5ZMHZQIVwPNuk9hzIpJC09crGhQA3wHq3MetSsvlVSKSAYwE/kx0X59AUfP978q6QoBqSqtSJkWS285/LzAQ6Aek4DRNNObJ8jchARgFPKuqI4FKorS5CEBEJgMnVPWdwM1Bdo2ma4SI9AD+H5Cvqp9FujwdKOqvTVfQFQLU8fqmO/f2hLu9qVRKXpQN/K+qVqjq58B/Abfgpnxy9/Fy+YM5ChxV1T+7j1/BCVhNXS+v+xvgHhEpw2kumoBTo4raayQi3XCC03+o6n+5m6P1+jQWTd//LqsrBKjf4KRDgoZpkX4DfNMdzXcT8Gl904UHHQZuEpFL3H6NicBeojjlk6qWA0dEpD6bdP05NXW9PE1Vv6eqV6lqBs4Als2q+g2i9Bq5n7PVwD5VXRbwVFRenyCCplKLcJlMIzGVSUJEXgLG4ywJcBz4MbABWA+k4/xHf7+qfuJ+AX+JM+rvHDBLVT2b2VhEfgJMwxldtQuYg9Nm/p/A5e62HFWtjlghW0lERuAMKEgESoFZOD+avnS9IlbINhCR8cCTqjpZRDKJwmskIrcCW4ESvuhTW4zTDxXV16eeiNyNU8uNB/5NVZ+KcJFMIzEVoIwxxsSOrtDEZ4wxJgpZgDLGGONJFqCMMcZ4kgUoY4wxnmQByhhjjCcltLyLMeElIr1xEo8CpAG1OGmQAMa6udI66r0eBl5152G15nW/BS5V1XEdVRZjTPMsQJmIU9VTwAgAEfkH4Kyq/kuY3u5h4F0g5ADlBtAs4LyIpKvq4TCVzRgTwJr4jGeJyGIR+bZ7/xci8oZ7f5KIrHHvf11EtonIu+56Synu9jEi8nsReUdE/kdE+orINJxA+LKIvCciiSKyVET2umuC/XMTRZmKM+H7ZZzJ0vXlG+Su9bRdRH4mImfc7XEiskyctbtKRGRqE8c1xjTDApTxsreA+ia1UXyR1+5WYKuIXIGTYHaiqo4C3gfyRCQJZ62p+1T1RmAd8DNVfRl4D5imqiOAXsDdwA2q+hXgn5oox3TgJfdvesD2XwD/oqpjcTKX1LsfZ42h4cAdwDNuWY0xrWBNfMbLdgBjROQy4CzwIc6yD+OAF3AS5g4F/uRkriIR+ANwPXADUORuj8dJDtrYJzhpfFa5fUybGu/gLhaZDrytququmHudqn4AfBUnwAG8CPyje/9W4EVVrQXKReQPwGjg1Xb8WxjT5ViAMp6lqtUi8jHwTeCPwAGcpLLpqnpARG7AWZF3RuDrRGQk8H5LAxpU9XMRGY1Ty3kQeAy4s9Fu03DWdfpfN9j1dPf9h2YOHWwpB2NMK1kTn/G6t4An3dutwDycxRoB/gR8zU3IioikiMggnKzo/UVkrLs90Q1mAH4g1d2eijMybxPwOE7trLHpQLaqZriZysfyRTPfduBv3fsPNirzg25tqy/OUhyeTURsjFdZgDJetxXoC/zZXVn4c3cbqnocmI0z6GE3TsAa7GYLnwosc7fvwmmOA3geeE5E3sPpg/qtu89mYEHgG4vINTjD3i8GF1X9K1AtIjcC84Hvish2nJVlP3V3ewX4ANgNFAELVDVa100yJmIsm7kxbeSOGDzn9k3lAH+rqvdFulzGxArrgzKm7cYABSISB5zGWc/KGNNBrAZljDHGk6wPyhhjjCdZgDLGGONJFqCMMcZ4kgUoY4wxnmQByhhjjCf9fyJuy/h2vdMdAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# IB Creating Sentiment Analysis for Top Ten Influences (07/02/2018) Scatter Plot\n", + "\n", + "# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\n", + "inf1_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@katyperry\"] \n", + "inf2_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@BarackObama\"] \n", + "# For each of media sources following the first one in the media dataset reset index to 0-99\n", + "# in order to plot in the common area\n", + "inf2_tweet_data_df = inf2_tweet_data_df.reset_index(drop=True)\n", + "inf3_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@taylorswift13\"] \n", + "inf3_tweet_data_df = inf3_tweet_data_df.reset_index(drop=True)\n", + "inf4_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@ladygaga\"] \n", + "inf4_tweet_data_df = inf4_tweet_data_df.reset_index(drop=True)\n", + "inf5_tweet_data_df = Influencers_overall_results_df[Influencers_overall_results_df['Influencers'] == \"@TheEllenShow\"] \n", + "inf5_tweet_data_df = inf5_tweet_data_df.reset_index(drop=True)\n", + "\n", + "# Get the values for each part of the scatter plot by \"Influencers\"\n", + "# INF1\n", + "# Get values for X axis\n", + "inf1_tweet_ago_data = inf1_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf1_tweet_polarity_data = inf1_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF2\n", + "# Get values for X axis\n", + "inf2_tweet_ago_data = inf2_tweet_data_df.index \n", + "# Get values for Y axis\n", + "inf2_tweet_polarity_data = inf2_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF3\n", + "# Get values for X axis\n", + "inf3_tweet_ago_data = inf3_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf3_tweet_polarity_data = inf3_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF4\n", + "# Get values for X axis\n", + "inf4_tweet_ago_data = inf4_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf4_tweet_polarity_data = inf4_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# INF5\n", + "# Get values for X axis\n", + "inf5_tweet_ago_data = inf5_tweet_data_df.index\n", + "# Get values for Y axis\n", + "inf5_tweet_polarity_data = inf5_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "\n", + "# Organize the layout for the scatter plot\n", + "plt.title(\"Sentiment Analysis of Top 5 Influencers Tweets\", Fontsize= 12 )\n", + "# Labels for the scatter plot circles for each Influencer\n", + "labels = [\"KatyPerry\" \"BarackObama\" \"TaylorSwift\" \"LadyGaga\" \"TheEllenShow\"]\n", + "# Colors for the scatter plot circles for each Influencer\n", + "colors = [\"lightskyblue\",\"green\",\"red\", \"blue\", \"gold\"]\n", + "\n", + "# Define X and Y of the scatter plot\n", + "plt.xlabel(\"Tweets Ago\")\n", + "plt.ylabel(\"Tweet Polarity\")\n", + "\n", + "# Define X and Y limits\n", + "plt.xlim(100, 0)\n", + "plt.ylim( -1.0, 1.0 )\n", + "\n", + "# Writing data to the same Scatter Plot 5 times, for each Influencer \n", + "# (\"KatyPerry\" \"BarackObama\" \"TaylorSwift\" \"LadyGaga\" \"TheEllenShow\")\n", + "plt.scatter( inf1_tweet_ago_data, inf1_tweet_polarity_data, c=\"lightskyblue\", edgecolor=\"black\", \n", + " linewidths=1, alpha =0.75, marker='o', label=\"KatyPerry\")\n", + "plt.scatter( inf2_tweet_ago_data, inf2_tweet_polarity_data, c=\"green\", edgecolor=\"black\", \\\n", + " linewidths=1, alpha=0.75, marker='o', label=\"BarackObama\")\n", + "plt.scatter( inf3_tweet_ago_data, inf3_tweet_polarity_data, c=\"red\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"TaylorSwift\")\n", + "plt.scatter( inf4_tweet_ago_data, inf4_tweet_polarity_data, c=\"blue\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"LadyGaga\")\n", + "plt.scatter( inf5_tweet_ago_data, inf5_tweet_polarity_data, c=\"gold\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"TheEllenShow\")\n", + " \n", + "# Create the legend of the Scatter plot\n", + "legend = plt.legend(fontsize=\"small\", loc=\"center left\", title=\"Top 5 Influencers\", bbox_to_anchor=(1, 0.5))\n", + "plt.tight_layout()\n", + "\n", + "plt.grid(True)\n", + "\n", + "# Save the figure with the Scatter Plot\n", + "plt.savefig(\"OutPut/InfluencersSentimentsTweeterPolarityScatterPlot.png\")\n", + "\n", + "# Show the Scatter Plot\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Scatter Plot for Sentimental Analysis of Top 5 Twitters last 100 tweets" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Twitter_HandleFirst_NameLast_NameGenreLocLangCreated OnAge Of AccountTweetsFollowersFollowingFavorites CountAverage Tweets
332@NoahpinionNoahSmithEconomistsNAEng04/14/20112636.0140766.0102263.0811.0211591.0140766.0
359@BDUTTBarkhaDuttSocial_workersIndiaEng02/02/20093436.0118521.06818156.01572.027894.0118521.0
356@ProfessorChicJamieMitchellSocial_workersNAEng04/04/20112646.079770.01455.0572.024906.079770.0
339@haroldpollackHaroldPollackEconomistsNAEng12/25/20093111.065220.020533.02426.07087.065220.0
276@CoryBookerCoryBookerPoliticiansNewark, NJEng08/11/20083612.061946.04121418.093082.091.061946.0
\n", + "
" + ], + "text/plain": [ + " Twitter_Handle First_Name Last_Name Genre Loc Lang \\\n", + "332 @Noahpinion Noah Smith Economists NA Eng \n", + "359 @BDUTT Barkha Dutt Social_workers India Eng \n", + "356 @ProfessorChic Jamie Mitchell Social_workers NA Eng \n", + "339 @haroldpollack Harold Pollack Economists NA Eng \n", + "276 @CoryBooker Cory Booker Politicians Newark, NJ Eng \n", + "\n", + " Created On Age Of Account Tweets Followers Following \\\n", + "332 04/14/2011 2636.0 140766.0 102263.0 811.0 \n", + "359 02/02/2009 3436.0 118521.0 6818156.0 1572.0 \n", + "356 04/04/2011 2646.0 79770.0 1455.0 572.0 \n", + "339 12/25/2009 3111.0 65220.0 20533.0 2426.0 \n", + "276 08/11/2008 3612.0 61946.0 4121418.0 93082.0 \n", + "\n", + " Favorites Count Average Tweets \n", + "332 211591.0 140766.0 \n", + "359 27894.0 118521.0 \n", + "356 24906.0 79770.0 \n", + "339 7087.0 65220.0 \n", + "276 91.0 61946.0 " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IB Top 5 People who who have more Followers\n", + "top_5_twitters = Data_Influencers_DF.sort_values(['Tweets'],ascending=False).head(5)\n", + "top_5_twitters" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-----------Start extraction of the tweets posted by the Influencers!!!-----------\n", + "Extracting tweets from @Noahpinion\n", + "Extracting tweets from @BDUTT\n", + "Extracting tweets from @ProfessorChic\n", + "Extracting tweets from @haroldpollack\n", + "Extracting tweets from @CoryBooker\n", + "-----------End of Extraction of Tweets !!!-----------\n" + ] + } + ], + "source": [ + "#IB Working Module -- Extract the first 100 tweets of the top Twitters\n", + "\n", + "# # Extract the first 100 tweets of the Influencers\n", + "print(\"-----------Start extraction of the tweets posted by the Influencers!!!-----------\")\n", + "Twitters = []\n", + "Twitters = top_5_twitters[\"Twitter_Handle\"]\n", + "Twitters\n", + "\n", + "# IB Twitters's overall sentiments\n", + "Twitters_overall_results = []\n", + "\n", + "Sentiment_array_tw = []\n", + "\n", + "# IB loop through each top ten twitter\n", + "for user in Twitters:\n", + " \n", + " ###print(f\"For Twitter: '{user}' \")\n", + " # IB Variables for holding compound sentiments\n", + " compound_list_tw = []\n", + " \n", + " # IB Variable for max_id\n", + " oldest_tweet = None\n", + " \n", + " # Set the tweet count to 100\n", + " tweet_count = 0\n", + " print(\"Extracting tweets from %s\"%user)\n", + " \n", + " # Extract tweets up to 5 pages\n", + " for x in range(5):\n", + " \n", + " ### IB - it is working - print(f\"For page number: '{x}' \")\n", + " twitters_tweets = api.user_timeline(user,page = x, max_id = oldest_tweet ) \n", + " \n", + " # For each tweet in a bunch of public tweets\n", + " for tweet in twitters_tweets:\n", + " \n", + " #Calculate the compound, positive, negative and neutral values of each tweet\n", + " compound = analyzer.polarity_scores(tweet[\"text\"])[\"compound\"]\n", + " pos = analyzer.polarity_scores(tweet[\"text\"])[\"pos\"]\n", + " neu = analyzer.polarity_scores(tweet[\"text\"])[\"neu\"]\n", + " neg = analyzer.polarity_scores(tweet[\"text\"])[\"neg\"]\n", + " \n", + " # Save the Tweets in an array as a dictionery item \n", + " Sentiment_array_tw.append({\"Twitter\" : user,\n", + " \"Tweet Text\" : tweet[\"text\"],\n", + " \"Compound\" : compound,\n", + " \"Positive\" : pos,\n", + " \"Negative\" : neg,\n", + " \"Neutral\" : neu,\n", + " \"Date\" : tweet[\"created_at\"],\n", + " \"Tweets Ago\" : tweet_count\n", + " })\n", + " \n", + " # IB Collect compund sentiments for each Infuencer\n", + " compound_list_tw.append(compound)\n", + " \n", + " #Decrease count of tweet by 1 in the reverse order\n", + " tweet_count += 1\n", + " \n", + " # IB get Tweet ID, subtract 1,assign to oldest_tweet\n", + " oldest_tweet = tweet[\"id\"] - 1\n", + " \n", + " # IB List for dictionary of results for _overall_ sentiments for each user\n", + " Twitters_overall_results.append({\"Twitter\": user, \"Overall Sentiment\": np.mean(compound_list_tw)})\n", + "\n", + "print(\"-----------End of Extraction of Tweets !!!-----------\")\n", + "###Twitters_overall_results" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CompoundDateNegativeNeutralPositiveTweet TextTweets AgoTwitter
0-0.4019Mon Jul 02 18:37:02 +0000 20180.3510.6490.000@estarianne @JasonPremo UBI has rhetorical dis...0@Noahpinion
1-0.5267Mon Jul 02 18:36:39 +0000 20180.6300.3700.000@MattBruenig Ooh conspiracy1@Noahpinion
20.5719Mon Jul 02 18:35:51 +0000 20180.0000.8020.198RT @seth8miller: Modern socialists and neolibe...2@Noahpinion
30.0000Mon Jul 02 18:33:36 +0000 20180.0001.0000.000UBI basically had three groups pushing for it ...3@Noahpinion
40.2263Mon Jul 02 18:31:06 +0000 20180.0000.7870.213@JasonPremo That's true, but also not my point.4@Noahpinion
5-0.2732Mon Jul 02 17:53:01 +0000 20180.1280.8020.070@drmitchell85 Lots of replies relative to the ...5@Noahpinion
60.7717Mon Jul 02 17:50:51 +0000 20180.0000.7290.271The fact that this tweet got ratio'd helps to ...6@Noahpinion
70.4404Mon Jul 02 17:46:50 +0000 20180.0000.8280.172\"Reinstate Glass-Steagall\" should be a metapho...7@Noahpinion
80.0000Mon Jul 02 17:30:43 +0000 20180.0001.0000.000RT @alogator69: On most economic issues, there...8@Noahpinion
90.8422Mon Jul 02 17:22:38 +0000 20180.0000.6650.335RT @scottyweeks: I am overjoyed at Ocasio-Cort...9@Noahpinion
\n", + "
" + ], + "text/plain": [ + " Compound Date Negative Neutral Positive \\\n", + "0 -0.4019 Mon Jul 02 18:37:02 +0000 2018 0.351 0.649 0.000 \n", + "1 -0.5267 Mon Jul 02 18:36:39 +0000 2018 0.630 0.370 0.000 \n", + "2 0.5719 Mon Jul 02 18:35:51 +0000 2018 0.000 0.802 0.198 \n", + "3 0.0000 Mon Jul 02 18:33:36 +0000 2018 0.000 1.000 0.000 \n", + "4 0.2263 Mon Jul 02 18:31:06 +0000 2018 0.000 0.787 0.213 \n", + "5 -0.2732 Mon Jul 02 17:53:01 +0000 2018 0.128 0.802 0.070 \n", + "6 0.7717 Mon Jul 02 17:50:51 +0000 2018 0.000 0.729 0.271 \n", + "7 0.4404 Mon Jul 02 17:46:50 +0000 2018 0.000 0.828 0.172 \n", + "8 0.0000 Mon Jul 02 17:30:43 +0000 2018 0.000 1.000 0.000 \n", + "9 0.8422 Mon Jul 02 17:22:38 +0000 2018 0.000 0.665 0.335 \n", + "\n", + " Tweet Text Tweets Ago Twitter \n", + "0 @estarianne @JasonPremo UBI has rhetorical dis... 0 @Noahpinion \n", + "1 @MattBruenig Ooh conspiracy 1 @Noahpinion \n", + "2 RT @seth8miller: Modern socialists and neolibe... 2 @Noahpinion \n", + "3 UBI basically had three groups pushing for it ... 3 @Noahpinion \n", + "4 @JasonPremo That's true, but also not my point. 4 @Noahpinion \n", + "5 @drmitchell85 Lots of replies relative to the ... 5 @Noahpinion \n", + "6 The fact that this tweet got ratio'd helps to ... 6 @Noahpinion \n", + "7 \"Reinstate Glass-Steagall\" should be a metapho... 7 @Noahpinion \n", + "8 RT @alogator69: On most economic issues, there... 8 @Noahpinion \n", + "9 RT @scottyweeks: I am overjoyed at Ocasio-Cort... 9 @Noahpinion " + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# IB Prepare Results Dataframe for the scatter plot\n", + "Twitters_overall_results_df = pd.DataFrame.from_dict(Sentiment_array_tw)\n", + "Twitters_overall_results_df.head(10) " + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMi4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvhp/UCwAAIABJREFUeJzsnXl4VNXd+D9ntmSyQRJCAiRMGFkDAYNWW7VIIT+Xmta2ahXFFxBFFCVxQan7hlpxSaioRRFSsLi11kr7vmqwFFfcogTCYgwJBDIhIRAmySSTmTm/P+5MuDOZSSYbCWQ+z5MnM3c599xz75zv+Z7zXYSUkhAhQoQIEaK/oenrCoQIESJEiBD+CAmoECFChAjRLwkJqBAhQoQI0S8JCagQIUKECNEvCQmoECFChAjRLwkJqBAhQoQI0S8JCageRAjxkhDi/r6ux4lGCPGQEGJ9N8vo8bYTQiQKIbYIIaxCiGd6suz+jhCiQgiR0df1CBGiO5zyAkoIcZ4Q4jMhRJ0QolYI8akQ4ic9UO5cIcQn6m1SyoVSyke7W3YX6hK0gBBCbBZCHBFChPV2vTpDL7XdAqAGiJFS3qHeIYT4XyFEvfuvRQhhV31/qScrIYRYKIRwqMqvF0L8zM9xmar9DUII6XPO0GCvKaVMllIWusvNFUI873Ot74QQl3f/7tpHCPFHVf2bfdrhs96+vrsOS4UQb5+Ia4XoWXR9XYHeRAgRA2wEbgLeBAzAz4HmvqxXXyGESEW5/zrg18BbfVmfE4AJKJZ+vNGllBd7Pgsh1gIVUsr7erEum6WUme0dIKUsAKLcdRoPbJdSRvVinbqEEEIAGimls6NjpZR3A3e7z8sBMqWUWb1cxRCnClLKU/YPOBM42sEx1wE7gSPA+4BJtU8CC4Ef3PtXAgKYADQBTqDecw1gLfCY+/N0oAK4CzgEVAK/AX4J7AFqgXtU19IAS4EfgcMoAjXOvS/VXZc5wD4UreBe976LADvQ4q7L9+3c6wPAp8CzwEaffWvd9/cvwApsBU5T7c8D9gPHgG+An6v2PQSsd3/+F3CrT9nb3PcugOfc7VHn3j7JT9sNQRlYHHW308coHaK/ezoH+Mpd3lfAOaryWtxtU4/SMQZql9Zr+2xfpHoefwcS3dvD3c/jFqAMqAaWASJA+QuBgk6+u+MBh8+23wIfq75/DXyg+r4dmO7+fBTl/b/S3QaedtgCPI/y7trc25a5zzkd+C/Ku74DuERV9j/c781HQKO77MtR3mUrynt5Ywf3lOPnvfszx9/lIYALuN39fYS7bJ37+wXud+8oyvs5VVVOIvCG+90qB+5U/Q6bAYf7Xne7t1/tfrZW9zOc19f9VejPzzvT1xXo1ZuDGHfnkg9cDMT67P8NUIIicHTAfcBnqv0SpaMcDIx0d0QXuffNBT7xKa+1o3P/MBwoQkEP3OA+/69ANDARRciZ3cfnAF8AyUCY+4e7wb0v1V2XlwEjMMX9o5vg3v8QbgHRQXuUADcDZ6B03ok+da8FznK3xWvA66r9s4F49747AAsQ7nt94PfAVtV5U9zPwABc6O5gBnNc0A/z03ZPAC+5202PovW16fyBOJTO9Fp3vWa5v8f7ltlBu7Q5DmUgYQEmowikVcCH7n0eAfW++15GAaXA7ADlL0TpHGuA3cAfCCBwVef4E1Dx7nfG6H6HDgBV7jaKRxE4nmdyFDjT/TkXeN6nrO+Ay33asgq4AtCiCP5a3AM2FAF1yP3uaFHe0TrgdPf+BGBKB/fkT0BdrWrX36EIjXdV+953f57obr9zUQZzV6EMACPc79JnKIOEMBTNeTdwqfvcpcDbqmsaUATTRPf3RCC9r/ur0F/bv1N6DUpKeQw4j+Ode7UQ4p9CiET3ITcCT0gpd0opHcDjwOlCCJOqmCellEellPuA/6CMMoOlBWV02gK8jjJCzJNSWqWUO1BGqZNVdblXSlkhpWxG6fQvF0Kop2EfllLapJTfA9+jdP5BIYQ4D+WH+6aU8huUjuBqn8P+LqX80t0Wr6nvVUq5Xkp5WErpkFI+g9IRjPNzqXeBMUKIMe7v1wJvSCk9Wl40Sucr3O1e6aeMFmAYSufYIqX8WLp7Eh8uAX6QUq5z12sDsAv4VTBt0gHXAKuklNuklE0omvBMIUSS6pgn3O/GXhStZFaAsgqAScBQFI1mHpDd2QpJKQ+jaPM/Q+moP0V5D84ApgFfuevaFa4AvpRSviWldEopPwM+RBnEeXhdSvmNVKb2WlC0sIlCiEgpZbX7vews/wXOEULo3ffwDHCWEEIDnO/eD3A9sEZK+amU0iWlfB1l4PNzlN/QacB9UspmKWU5ygDnqnau6wQmCSEipJRVUsqiLtQ9RC9zSgsoAHcnOFdKmYzSSQxHGVGC0mHnCSGOCiE800kCZWrBg0X1uRH3GkGQHJbH5+lt7v9Vqv02VXkm4B1VXXai/IgSVcd3py5zUKaDatzf/+repiZg+UKIO4QQO93GJkeBQSgC1wu3cH0TmO3uZGYB69z7PkLpyFcCVUKIVe51Ql+Wo2h7HwghSoUQSwPc03CU6Rw15Xg/v67iVbaU8ijK9Ka67P0+1x3uryApZYmUsszdsX6HMhDqqoHCf1G082nuz5tROnJ1Z94VTMAFnvfP/YwvQRkoeGi9XymlC7gURZAfEEJ8KITozODNU84BlOnvn6Dc0/soQjgd73syAYt86jcapc1NKBrkEdW+h/H+7aivaUfR1q4DDgoh/k8IMamzdQ/R+5zyAkqNlHIXynSO52XcjzJvPlj1Z3SPHjssroertx+42Kcu4e4fcLfqIoQwoky9nS+EsAghLMBtwBQhRIdamBDi5ygL3b9HmSYdjDK9IwKcko/Scc0EGqWUn7dWVMoVUsozUKZsxgJL2tyMomHeIaU0o2hDtwshZvq5zkGUzknNSJSpr+7iVbYQYhDKlLG67BSf6x4MsmxJ4LbrCF8B9V86FlD+3g/fbfuBf/q8f1FSyqWBznFrtr9EEQSf4B6IdIH/ohjtxEspf3R/vxKlfb9S1e8Zn/pFSinXuPdV+uyLkVLOCHT/UsqPpJQXAknAt8CaLtY9RC9ySgsoIcR498g/2f09BWVE/4X7kJeAPwghJrr3DxJCXBFk8VVAshDC0EPVfQlY5pleFEIkCCEu7URdUt0aiz9+g6KNpaFM252Osv7zMfA/QZQfjbKeVg3ohBAPoHTWfnELJBfKdE1rpyWE+IkQ4mz3dE4Dxw1NvBBCZAkhRrutxY65j/FnMfZvYKwQ4mohhE4IcaX7HjcGcU8dsQG4QQgxSQgRDvwR+EhKqdYy73a/M6koBhNv+CtICPFLIUSC+/MklDWod7tYry0o64SjUKaIv0QxWJgAfB7gnCr38b7bzKrvbwHnCiF+625LgxDiHCHEaQHuaZAQ4gohRDSKAYYV/88oGP6LsjbqcdvYjNKeX7i1HYDVwHwhxLlCCI0QIkIIcZEQIhZlmrNCCHG/e7tWCDFBCHG26l5NQgitu+7xQojfCSGiOG480tW6h+hFTmkBhfKjORvYKoRoQBFM21EW+ZFSvoPS8bwuhDjm3ndxgLJ8+Qilg7AIIWo6OjgI8oB/okxrWd11Pbv9U1rxmIsfFkJ862f/HJT5+31SSovnD2W67RqfdS5/vA/8L4rFVjmKYNnf7hnwF5RpGrV/VgzKWuARdzmHgaf9nDsGZd2mHqXTfUFKudn3IPeaTBbK8zyMsk6UpZrG7DJSyo0oxhr/RNGMklDW09T8C6Vz/BrlGQTyRbsY2OF+B99FWd/zd9/B1KsK2IuyXiTd65vbgEIpZUOA09YDCULxf/uPe9vTwEL3tkfdbXYRiqCoQrnnhwjsiiJQjD/2oxhkXA7M78o9oQioaBThC8ozD1N9R0q5DWUw9QzKVHwpiuGRZ7rxNygaucfqci0Q6z79HZQp6xohxA6Ufu9WFG34CMrzWdDFuofoRYT/tecQIbqHEOJ/gAVSyvP6ui49jVujsgEpUsqKvq5PiBCnKqe6BhWiDxBCRKCMxFf1dV1ChAhx8tKnAkoI8aoQ4pAQYnuA/UIIsUIIUSKE2CaEmKraN0cI8YP7z9caLUQfIYS4EGWtqgrFUjBEiBAhukSfTvEJIaahrDP8RUrZxsxTCPFLlLniX6Ksx+RJKc8WQsShzPufiWKh8w1whpTyyAmrfIgQIUKE6FX6VIOSUm5BWfAMxKUowktKKb8ABgshhqFEJPhQSlnrFkofoizwhggRIkSIU4T+Hix2BN7WYhXubYG2t0EIsQC3hU54ePgZI0eO7J2a9gEulwuN5tRZRjzV7gdOvXs61e5nz549NVLKhL6uRwj/9HcB5c+ZMZCTo9+5SinlKtyL9ePGjZO7d+/uudr1MZs3b2b69Ol9XY0e42S8n00FBazPz6W8vBSTyczsOTnMzDwetPxkvKf2ONXuRwjhG4kkRD+ivw+FKvD21k9G8c8ItD1ECEARHPOuzWLGtDTmXZvFpoKCXrnG6hezWTzLwgdrE1g8y8LqF7N75VohQgxE+ruA+ifwP25rvp8Cde7gou+jxA2LdXuSX+DeFiLECRMc6/NzWTLfSMakaHQ6DRmTolky38j6/NyOTw4RIkSH9LWZ+QYUr/FxQklRPV8o2UcXug/5N4rHeAlKBIKbAaSUtcCjKHG6vgIecW8LcYpTULCJrKx5pKXNICtrHgUFm9occ6IER3l5KenjI722pY+PpLy8tEevMxA4ERpviJOPPl2DklIGSk/g2S9Rksb52/cq8Gpv1CtE/6SgYBPZ2asxGpeQkJCOxVJEdvZy8vIgM/N4LFlFcHive/eG4DCZzBTtspAxKbp1W9GuBkwmcztnhfDFo/EumW8kfXwCRbssLH8xG8jzWs8LMfDo71N8IUK0kpu7HqNxCdHRGWg0OqKjMzAal5Cb6x0CTxEc3mHpekNwzJ6Tw/LVNgq3W3E4XBRut7J8tY3Zc3J69DqnOqGp0hCBCAmofsSmggLmZWUxIy2NeVmhaQ5fSkvLiYxM99oWGZlOaam3IdaJEhwzMzOZf1MeKzYkccHcalZsSGL+TaFRf7B4pvW2bPmQ3NV72fTJ8Vn60FRpCOj/ZuYDhk0FBazOzmaJ0Uh6QgJFFgvLs7Mhr/0Ob1NBAetzcykvLcVkNjM7J+eU7SDNZhMWSxHR0Rmt2xoaijCbvVNCKfefxwqV+ff8m3qnXWZmZp6y7d2bqKf1br8qkrpjNl74awkwmpnnxXVK4+3I1D/EyUtIQPUT1ufmssRoJCNaWc/IiI5mCbAiNzfgj81qtbJh6dJOC7WTlZyc2WRnLweWEBmZTkNDETbbcnJy2mZ5CAmO/o16Wu9I7Ug04gduvlry8tsVxA3Ws3y1jfk3dazxhtavTm1CU3z9hPLSUtIjfSzCIiMpLw08zXG4qqpVqOk0GkWoGY2szz015+4zM2eSlzefpKQVVFdfQFLSCvLy5nsZSIQ4OVBbQMbGxTJ8+BgGxYTzyVf1nZoqDa1fndqENKh+gslspshiadWgAIoaGjCZA09z2JubOy3UTnYyM2eGBNIpgK8FZGxcLGUHdUw7P4k164JPiHyiLDZD9A0hDaqfMDsnh+U2G4VWKw6Xi0KrleU2G7NzAk9zGMLCKGrwsVbrQKidjATj+9Tf8Bi87NmxI2Tw4oeeMmQ5URabIfqGkIDqJ8zMzGR+Xh4rkpK4oLqaFUlJzO9gLSk+MbHTQg2goKCArN9nkXZWGlm/z6KgH3eeHt8ni2UxCQkfYLEsJjt7dbeFVG86hnoMXhZbLIzV6VhssbA6OxQCSU1PWUD6CrrNnx3glgd+5KMtFSfNYCZEYAZUyveOgsWebNZAmzdvxulwdMqKr6CggOzHszFONxKZHElDRQO2zTby7skjs4/v1V8g0qyseVgsi70s96zWQpKSVrBx45ouXcd7YT2ST7+s5IGnK6mrjiUjfXK3LSHnZWWx2D1du3nWLKZv2ECh1cqKpCTWbPSevjrZrDD7Y7BYz++2uLiIQ9UO9OH3M2zY9a1GNO2tUwohvpFSnnmCqxwiSEIalJuTNfDnzMxM1mzcyEfFxazZuLHDzi13VS7G6UaiTdFotBqiTdEYpxvJXXV8UdmfdtFXPlrB+j51BvXCuvVYHUN0B1h2lZMp+oYe0XaCNXhRa1ofJCSENC0fCgoKuPLauZz98xlcee3cgJr+zMxM1qzbSMKwGcQP3ciIEQvbdeQOcfIQElBuBoo1UGlZKfZjzVSu3ca+Z7+kcu027MeaKS1TOk9/gjpv+fUsmz+/RzrSzgo6s9lEQ0OR1zZ/vk+dQW1BZqnYz0iNhp+aDexvaeoRS0iT2RzU2qDatWAgWGF2hoKCAp5cuZoply/illX/Zsrli3hy5ep2p6N7YzATom8JCSg3/SHw54kwBogxRhOxtYQHr7Pz+ot6HrzOTsTWEmKMijWVP0E955dHGKyp61ZHuqmggF9d/FNunnMJdTs+YalOG5Sgy8mZjc22HKu1EJfLgdVa6PZ9mt3lNlAvrDfZmojUaikqd2IyhAPdt4RUG7wgZcC1wa64FgwUXs5fz4y5t5OaloFWpyM1LYMZc2/n5fzA2lBvDGZC9C0hAeWmr62BessYwJchEYJFl8EYE+i0yv9Flynbwb+gHpnYQoW9iaxtlaR9uY+sbZUcarYH3ZF6tLK5F+3ki1w99y92slZXSq2jpUNB1xu+T+qFdZ0hjM9+sLN8nYvZkclA9y0h1QYvexyOgAYvwWhaAzXKd1nZPlLGemtDKWPTKSvbF/Cc3hjMhOhbBpSAcrlcATWUvg78GWwg1M7iq5VVH6rkwvPGYmgwYD/QgqHBwIXnjaWx4RjgX1CXHhBUNRux2B8kQf86FvuD3FwSgT46Jqg6eLQy83AHgww6Msw6llyrYX1DRVAaQ2bmTDZuXENx8Uds3Lim235Qaguy6x+JZtEKLdPqh3P+oMFBW0IGc401GzcyduLEgGuDHbkWnKzroj1BaupI9u/x1ob27ykiNXVkwHMCDWaAk85NIYTCgBJQzc0tATWUvg782Zn5c4+Z+I5dO9o1E/enlR2qdlBcYmPyxMmcfeZZTJ44mQOH9K2aolpQHzpUyxv//JYnXrFzqHYeTucoBDoEYzjCIurEkKDuzaOVhRvDaXA6AUg3aSm3N/WZ35ZnYX3rN+U8++o7bB07Lmjz/p6sQ3uuBT25LtofNTF/RhCeNcqyLf9h3Y2/YdOGP+N0OCgrLuSjtc9yw5z2tSHfwQxwQmYmQvQOAyqShBD6VnNl5f8ScnNXtI7I+zJ+W7CBUNVm4roEHZZJFrIfzyaPtmbiaq0MlHs+dux+7n36Dzz/SAzp4yMp2tXgFffME2j1/mfuo6i4CP0wIxWH4hEJv2NXrR29SxIZGUmK+UKOHQvOzNsTNSA1OYV9JT8wEgd7ymGwRs9ym4353dRWuktfPvf2rt1TURL6U7y6goICXs5fz44dxVhtzWTOWsAt97zE/j1F3PXgXYSVFDMsopkIWkjUw5dP3cWnb77MlIzTWbpofqddIfz9Bnx/9yH6LwNKg/K93f5k4RPs/LnaTFwg/JqJe/CnlQ0bdj0V1aZ2NcWZmZkQPYSE+emk3JRBZMpgdBH70SVHoI+JZPzkyej1B4JefPZoZWUHdQxNHc0H+zXcusZOQ+K4E6atnIyYTGY++bKSHcW7+Obb79hRvItPvqzs9Lpof7BQLSgo4Kczfsql117G9/tKmPTr6/j13Xls++Jjir/8L6lpGbTUHCJ+yGHuX+zkw+f0PHy7hjGjXUQ5mmg4Ili8+HGvKbpgzNBDln0nNwNKgwKX17f+ZOGjzJ9Dbu4KSkvLMZtN5OS0NQYoLSsl4SLvUXVkciSlG9uOqgNpZenpGaxZ1772o75O8gXhlLz2JzT6W7HZRqqEZ9so4moKCjaRm7ue0tJyYmKSuf9PdTQ2NGIy/ZxHn+3fDqn9gQnp07jnmY+597YRTEkfwvdFNSx77gC/ueL6TpXTV/HqvBxoj9VSbRYMvW0M9qM2Pty4nCtueJ5pc27n4zdWkn7OTGwN5dx9kyTDrHRLGWYdi69xcNUfLRC12CuL8pw53/DB54XMmHs7WWPT2b+niCdXPgvgpWUFOzMRon8yoDQoKVv6tYWPZ/58xYp7iIyV3PvwsjYjQ3OqmYYKbyOGhooGzKltR9XdsWpSXyduYiyjr2lEG3Y/WjEnKEs63/Wv2tp7+O8nYZSUGag+koBEBNssA5ZvioqZ8KvHyfvbKC69oYa8v41iwq8e55ui4k6V0xcWqmoDjxcftvLY3U7GWBtwVdgJT4nGMC2czW8/x7Ax6dQcUCzzXMLFaSO934uIRIlWG9XWeGjFhqDM0EOWfSc3fSqghBAXCSF2CyFKhBBL/ex/TgjxnftvjxDiqGqfU7Xvn8FcLyxM3+9TNXTkoJizIAfbZhvWcisSibXcim2zjZwFbddxumOirb6Oy+lCH6VjxIgw3vn7S0FZ0qnn/uvqrBw4MASncxkNDVNCC9VBUla2j+lXzGfuk+9yx7ptnPnrxewr3MiX/32rjaFDe9NdfWGhqp5WbLE3k5Zu4Na5GvhmPwBRIwdTU/Ej5du2Ej88hbLiQjQGIx8f0GB1OnAhsTodbCt3ER4+wavsyMh0jtQeC8oMPZSi5eSmz6b4hBBaYCXw/4AK4CshxD+llK3DQynlbarjbwUyVEXYpJSnd+aaGo2my/HbThRqB0VANTJcSWZmJpmZmeSRR+6qXBxDHSRtTyLnnpyAi8ddTU+hvk7pxlLMqeZ2r+NLaWk5CQlKB7J/vwWNZiRa7Tiamh5os1DtiUf3s4svJv/pp/tdPLquxMsrKCggd1UuF8+4mKdfeJqcBcG3nQePqXVqWgbbP9vEd2/dTs7VkuTro3GJ44YOEnhy5eqA010nMsOwh/LyUkYM1bOjeBd2ux37UTtjR2tpqbZStruQlko7Bms47zxxK1EGLd+/vZIFN97Na5teQGc8wshEO/uq9Lzy9zC0YZd5ld3QUERsXExr23gIZIbu7zfgeaY6mNg7LRCiJ+jLNaizgBIpZSmAEOJ14FIg0PzFLODBE1S3XsHTaZWWuTt8P51WWdk+Rh2uZu3SSzl8oJT4EWamXrLIa2ToEVSbN29m0cJFvVZfz3W6gnruv6mpCb0+Eqfze8LDlbl/z0K1OtV9nU7HT/pZVmB1/YLNWtwZS8v2uGHObJ5c+Swz5t7OV//IJedqyYhBh0kZMYy4uGiWzIcV+bk0MqTdQQ2ceEvFiMgYPvpsDz87z0x4bAKWAz+w86AdR6TEXteAq0giJurRHbXy/LJXWut5xtSpXgGbfzdrGvn5W7Baz/bOorx4Fh+sVdomxS2UP1r7LEsXtb8uCt7P9HNw9HZbhOg6fRbNXAhxOXCRlPJ69/drgbOllLf4OdYEfAEkSymd7m0O4DuUF+xJKeU/AlxnAbAAICEh4Yw333yzN26nQ6xWK2X7yxAaJ7gkaATSpSU1JZVoVZLCPXt+QIhmkhK0hIdraGpyYal2ImUYY8eO8Sqzvr6eqKioE30rQWG1Wtm3rwaNJonmZlAeWzVhYUPQ6aJxOm3o9VXocJDY0oJRq6U+Lo6o2lpsTidVej2po0f39W1QVlLSWj8PHdWvpLSEFmMLWoOWOG0ctc5anHYnepue0ebO3ZPVaqW65jAN9UcYPVKLwaBDq/WMKyV79jpwoWeoaQwI1fqNlBwq/4Hx48Z29pbbJdh3zvc9bmxs4aClmcYW0IXp0Efr0YXr2m0Xq9XK4ZoqmppsOF3gcmkxGiNITIwnOjq6tW3sdjsGg4GEIfFev6VAqJ/pTTfeaN0pZXAe5yFOOH2pQflbJQ8kLa8C3vYIJzcjpZQHhRBm4CMhRJGU8sc2BUq5ClgFSrqNvkoV8NPzz8bZVMitl7swD3NRWqnhT29r0IZn8MV/t7Ye9/QflzL74j1MHmkmzBjJkepKqnfv5aGVOib/dKaX1tUfUx+o8VjxFRUVU1vbRFLSTRiNBhqt99Ni30b65AlUFB/k69RR6DSa1tQUDpeLC6qr+ai4c8YAgehOGpUZN9/MBwkJ6DTHl2s7qt/Nd91MwsIENHYNs6JmsaF+Ay6ni+qXqin+smv3NO/aLM47zULGxOMdcOF2K+/9Q8e+ogqk0JM0Oo0z5y5m0jkzKSsu5PtPPmPhjQu6dL1ABHrn1BabZrOJkrJCfnP747y1biWHD+wlfsQovi3cRvMlVs48M0MZVtbT2i4rHl/By/nrKSvbR2rqSM5IT+O7rfmtKVGO++t1X7P290xD9E/68glVACmq78nAwQDHXgVsUG+QUh50/y8FNuO9PnXCCDY698HSbeT8xsGFI2FymIYLR0LObxwcLN3mdVxjwzFmnJNC/aEDlO/4huqqUsZO1aEbrGmdKuqpBIPBpjPoKh6rxPLyrbzzzrPEx79DOL9jWc5Ovno3lUdvdTAo4QivVHo/9p6MLtHdcEHBRiZX0xlLy2DxZ+jwYF4NDcWV5EVE8Kqtgez9e/nu0dvYtOHPQUVdUOMv0kSwwYvVFps63d3s2lHCseof+GDVXZz568XcsW4bc598lyEpJnRW7zFxQ0UDMVExbQyD1qzNY8EVLb3iu+XvmYbon/SlgPoKGCOEGCWEMKAIoTbWeEKIcUAs8LlqW6wQIsz9eQhwLoHXrnqNzuTzES0tnJ8CERqBQBChEZyfomxXYzKZOXBIz8S08Rgjw4hINLLfosMQH96uU25n6Uo6g+4hsVoLueV/XEwYK9HpBBmTonnkzmHkNlTw88L97Giw8/PC/dxeXd3tWHgefJ1UU4c7uGxaBYuu+21Q6T4CxctLmzYt4MCkM5aWwTIzM5PTz57D3LstjJn+NXPvtnBoXzjPJCQwfcQIzMnDSa0/wjVV+/l61ROdirqwqaCAvOXXc9HZH/PorWVcdPbH/PHRa5g//7E2IYKsVmub8z0Wmw7HYaJ0t/PoYhtv5o7hlkt/5Kv1N7Ht4w8oKy7E6NQzaGdUq2Wop13CNDFtTMb1YQZio495XaenfLfUz1T6n8kJ0U/oMwElpXQAtwDvAzuBN6WUO4QQjwghfq06dBYIkxZbAAAgAElEQVTwuvReLJsAfC2E+B74D8oa1AkXUJ3J52PQ6iktB+mSgES6JKXlynY16pGytd7GD2XwpzUuws9SIm1HJke25m7qDi/nr0c/aAjr77yE+2cOYv2dl6AfNKTddAZdxWM00CitTPiZAXuknZJ9P1Bbe4QJo400uHTslMtoYRQ75TL2iild9pPy1WiLi4tao7MfqT3CwZIfmDHcyTDhCirdh794eRlz5lCYnx9wYJKZmUnePXkkbU/CUa1YWnY3Y3FBQQEffF7IlY+9wyPvH+bKx96huqKSEe4BTlxsLBMnjOfKqVOJj4np1LWee+Y+rri4itMmu4gYaeC0yS5+f+FRhKupjf9RVdXhNud7ojU0NeRy67VGxpujiYwYzASznhsvPcbfHr+W799eyfKH7uWVZa+QtD2J6peqW9ulqdnRxmQ8MXU823f3ju+W+pn+OOCCFZxc9OnDkVL+G/i3z7YHfL4/5Oe8z4B03+0nmvLSUtITfDz0A0TnNqdM5pk3CrnrKhcTRrjYeUDDM2/oMKdM9jpObRL88ae7YaiWqPPNxKbFAd2fKvLw2cdbGBl9gBcWaPnJqHC+2lvPvX9ZxXbriG6X7YsnPJPzPxGUlNoZP04Hgx1UVO5n5x5BWPjpjB5/JRGRm0mfeglW69guxUrzZ3E3t7qWT78M4/xzRrQmJywph1RDmDKgAFbk5ra7ruFrATcvK6t1YAL4LaenLS39uR8MH5/OltJdXB4X13pcV6ZHd+3ewZglWrThSnegDdcxKqWFlpYqr+MiI9Npbv6qzfkei80WeymjTcrvwelsIDIykt/8ZCwvvFnNG+vWth7vKzxfzl/fxmR8ZEYWL73xOWnjrX5jRnYXzzNdK8SOHikwRK8woFYJXS5Xj6Yt78z6xF2PLcNaN4xnXo7isgeMPPNyFNa6Ydz12LI2x3oibb+06h3CIkagi9R7TYl0Z6rIg8F+kMdmazhntAG9VnDOaAOPzdZgsAdaBuw6pWWlRCZHEn5WMn9a42LXbgdSq+G7HY08s9pGRPR9Xsd3NVaaP432pvAkHni6ksLtVurrbewpxyv3UzDpPnzXZwqLtp3wRIP+8iOde9M9PN1Ouo5gcUrYW+GtsZZZwOn0Nm5raCgiLMzQ5nxPtAahiaekvB6nsx6Xax/JyYlBaT03zJnNR2ufpay4sDVyeXnhJ/zqsnvaxIwE+l1U9hC9x4BSb1uam1lssQTtz9IRs3NyWJ6dzRKUDqqooSFgdO6ZmZmwejXrc3M5WlrKILOZRR04fHbXWbY9XNLJlOHgcuoQWi3S6WTKcAeuXvA6MKeasVRYiE2L4wijefjVCposjURqoomOzsDgGOp1fFdjpfnTaK8fNpyXyppZsSGJzz/ZTRpaFg0yMzNW0To60jj8RQLP2XmEVyrDWDgiufW43k4bonba9RATn0D4OeeyItzQ6kQ8vwtOzokj08h7eRvZC2D0aVpKfnTy0tsu6hqV0GBq/6PExFltzvfEkbzvvqd4bs233DHfyC/OHUH5QV1QWo/nfX45fyXvuq34jq+h3dV6XE9EZfe16AQ6tksP0Wf0mR9UXzDGZJI/qDqRQquVFUlJrNm4sctldiXKQE/RHTPzqeOH8ty8Y5w5UuJyudBoNHy9T3Dbmhi+3XWoR+updlyNTI6koaIB22YbeffkAYLs7NUYjUu44YY6Xn55EDbb8i6Fo5mXlcVii6V16g28n7HXFKB6QNHOIGXetVksnmUhY9LxMv/72QEW31XJ2qHjOiynp1wBPEYt/hxTfQcsvibfOTmzO4ibWMD8O+ejD6/D1diCJkJPS9MgLvjJhfzrf7/iSO0xYuNiyFk8i7POOqvd++mOSX9H+HsWhdutrNiQxJp13r9hf07xAlQCTpk2PPeyb5oabdLYIxUM0eMMKA3Kdz6zJ6Zl+jKXUHeYdd2d/GHdvdxylQZTspbyCsnzrzuZdd2dPX6tjjRBTxR3h+NnJCV97jeKezB0pNHOzMyEvDxWqAYUHWkc/iKBn3vWMMITmlmRlNRlzcWTF8nj93PDnNntasaZmZl8++23vLbotxyrPUJMXCzXLF7sVzh5BL46+ndeHn7bdFNBAa/l55KkhXqrgXpnDGnjJzPtzGl88Hkht6xc1SoQP1j7LBMmTGhThpre/D14widt27YLm60JozGcEUlD21j2qQdECRclsGfLbm646bdoWxxMHh9G7VFTq+l6YrxPioMQ/YoBJaB838S+yubaH8iYegZPP3MmS/KakRxBEItDhJEx9Yxe0QrbC5vkiZW2efNmFi3qumNpMAKosx2oJ9mietRetKuBtLT0NqP2YFFrQ+2lilCzqaCA7/LzWZuURPpppynCNz+fTVOnet1PZxL0eU+ZpR43RFiQw6oAMSGra/rOpiAiMob3/7OHCaedhsEQid3ewPv/+ZGISO9oGeqcaUeKaxmy7yCL7paYIuwYjTqeebUEGM3M8+IIM4QEVH9mQAmoFikptFo7XC/qSXpzyqM75OauJyXlBa88OVZrIffddz9m695OxZ7rT/TUCF6dy2junbXcNDuJ668a3iPWZB0FBPaH2gAE/FsOgneQXg+BjE7UPmKA2xlWie9XVtZIlp9o4Q1bCrt8392l5sggVr4WS/YcyWiTpKRcsvK1WAgf5HWcOpdZ05cV3H2dhvFjtTSV2TEnO1k0q4XlrxaTEDOEZjt6f9cK0T8YUFZ8+rAwL38Wz5pBQUEBWb/PIu2sNLJ+n9VjzqrdjWLQmwTKNLprx66gfbtOVdTP7dO3UlnxwDA2vGvhzEv3+s1A3Fn8WeT5SxWhpry0NCjLQbPZRENDkde2QEYnyvSlT5luZ1iPUYaa/XuKMBjaWvGdKI4da6HR9QIPv5DElbdV8/ALSTS6XuDYMW9nd3Ukj5baJkafpsXZ7ESjNfDjPjum4XqqDhso2hVHVY3ouxsK0SEDSkABNMYOoSE+icbYIUiOz1dbJllIWJjQGk7oqaeeCsqc1V+IGA/9IdV2IAJ1ZFqcJ9yEur/h+9zOP2cEuQ+OI+P0yaxZt7HbGlqgzt9fqggPwbo0dCZBX3uJDP2Zfn+09lkShsR39nZ7DLPZhMEwlGHJGzGZixmWvBGDYWgb4auO5KGLDWdPsR3XURc6rRGH8zQ+2qrn4CENj/55FLbmoc19dDshgmBACSh7S0ub0D73PX5f63y1Rqsh2hRNy0g77779aIeaT0caUnsj1L4mUEd2Zlpip2PPnWr09nML1Pm3FzsvUMglX5+nziToay+RYWZmJksXzef7t1fy/IJf8v3bK1m6aH5Q0cJ7i2CFrzqSR5MlkhdWaWlsHEFTs5O9B6J46Y1kYhPeYVjyRmBwKN1GP2ZArUFpdfo28/5P3vz/yJg9xes4UVbLjb93+J2bV4+e25vDn5mZGXCBvTdTbQeLx3clN3eFyhx5PgIZtG/XqUpvP7f2/X780xkLxGCTVHaUyNCfYcvmzZuDv9EeJtA76+9e1XXfVFBAfn4uH39yCIggatAfiY313FfzgBqkn2wMKAGl8QmvnzI2HY3Q0lDRQLTpeGdkP9TIpPHerhH+RtD+TJDVx82ek8PyF7NZMp9eCdfSXQJ1ZN/MmcPs556m/mgdUYMHMee2O3vFQMLXWvB3N97Y49foCl19bv6sH7W64z+xzpqW++LPAMRfmUDQ1znRbhLdNRrqSoZoCTQyBF1kKpUVGjR6HYMGOdxT3FUhAdWPGVACyuXytijdv6eIKePPoGbzAZhOqxMpLTqO1Q/xOtbfCLqjkXZfpNruLgUFBeT/Xz7Gm0YyxN0e+f+Xz9SpU3skgoWHTQUFLJs/n8GaOqSrhbodB6ksu5BNBQV93j5deW6BMu/OevJJoGum5R3hr8z7/vgIdls9ly95qseu01P0RCSIzuLVRvek85+3VvPPF7Jpbg4nPT0NsAW2TAnR5wyoSBKm1FR5Y95bflNEq73Op505Lahkad4/uJ5NqhYMvZGwMOv3WVgmWbw0Smu5laTtSWx8s+sRN3y58KdnE9m0jfvn6Eg3aSkqd/Jt2MO88qdVjD9tdJ9E5ugOgaJYfL9wIXOvv54rr53LlMsXeYUqKisu5Pu3V3oFUu0M/src9K+/892/NnDHC2/12HXUqN+5zmpDnYkE0VN01O5CiG+klGf2ysVDdJsBpUEZ9Hq+f9v/vL/v6HJTwdQOR9Ano4bUEWofEg+RyZGUbuxZw47yg8W8dpuODLPyCmaYdVQ2QWX1Hl6IjDrpfLACRbb/qlkxEisr2+fXr+jddkzLO8JfmTGJI2k4dqRHr+OPrmhDHU2J9wa90e4hThwDSkBpNJqgR5HBzs2frKGOAuEJ7KrWoHoqxYcXWjAne2vvep1ErxUdOqNC/3OANpnNFPloUEUNDRjCwgD/wV47Mi3vCH9lHqvaR2RMrNdx3b2OPzoyEPJHV41PuvOse6PdQ5w4QguEnaC3U6T3B9Q+JF1J8dGeX5iaMeMnsqnMidXpwIXE6nRgtcO48Aiv4/z5YPVHB+hAZuDxiYlA10zLO8JfmTv+tQ5pO9qj1/FHV0zx2zNrD0R3n3VvtHuIE8eA0qC6Q28scvdHupPiozPTPjl3PEbe8usRhiOMTLSzr0pPjUGQFZbkdZw/H6yujN67QzDWd4HMwD1WfF0xLe8If2U+dnd2j1/HH13RhroyJd7dZ90b7R7ixDGgjCTGjRsnd+/e3aVze2ORu7v0hpFEd+jsIrjv1M1FWdfy7iOPdJgOY8a0ND5Ym4BOd3wCwOFwccHcaj7aUtyj99SZNBf+eO+99/j7m38OanrKkyajqKiQKONhoiI1pKWl9/n0pZrNmzfjdDjIfeY+9uwuZOJYIwuvSSEhPqxXDIR6+1mHjCT6N306xSeEuEgIsVsIUSKEWOpn/1whRLUQ4jv33/WqfXOEED+4/+b0dl27Ej/tZKezU5qdnfbxZA7+aEsxa9ZtJDExkfl5eX7jJappL0RPT6MO7KrV6VSBXdd3eO6mggJqDu0LanrKkyZjz56zGR7fwj3Xx/DcXTbmXLKnz6cv1VitVla/mM0jtzr45M3xXJMleei5PSx9Vtsr1qsn8lmH6H/0mYASQmiBlcDFQBowSwiR5ufQN6SUp7v/XnGfGwc8CJwNnAU8KISI9XNuj9GV+GknMx7NwTc01FNPPRUwsG5PdCYzMzNZs3EjHxUXs2aj/7h3XVnL6CrdGZisz88lKUHTbixGz5rdwhsuo+HYXmqrVzL/dy5GDo9AI0YQF2XtN/EbAQ7XVLVOuSUMjeOyX09l5WPpDB+W0KGf2LysLGakpTEvK/hU7SfyWYfof/SlBnUWUCKlLJVS2oHXgUuDPPdC4EMpZa2U8gjwIXBRL9UTGHiLrf40h5EZ57Fs9eNtAut6hNSJ6kxmZmYy/6Y8VmxI4oK51T0SYTwQ3RmYlJeXYgz3/ompNUq1AcCaZU7uW3gE04jd1DU5kFpJc4ugoaGh38RvBLDbmzttHOFxYl5ssfBBQgKLLRZWZwenFZ7IZx2i/9Fna1BCiMuBi6SU17u/XwucLaW8RXXMXOAJoBrYA9wmpdwvhLgTCJdSPuY+7n7AJqV82s91FgALABISEs548803u1xnq9VKdc1h7HY7BoOBhCHxJzR4ptVqparqMM3NdsLCDCQkxDJo0KCOT+wCu3bvYahpDAjRuq1q/w80aeuJjDneQTntTvQ2PaPNo1vreLimCru9GYMhjPghiUG3UX19PVFRUT17I93EarVSeaiGmCGJGMKM2JttHKupYtjQIR3eV9neEuLiBhFjPO6XZGtyUnVYT+qo0ZTtLSExvgVjuJb6+gbAQLPdzuGjMDwxHKQLsKPVhbee0537OFxVhb25GUNYGPGJwT8XNYcP1xChr8YYrsXpdNDS4qDR5sRyWEtKyii/ZZaVlJDY0oJRqz3eDk4nVXo9qaO7d0/q30NiYud/j7/4xS9Ca1D9mL604hN+tvlKy/eADVLKZiHEQiAfmBHkucpGKVcBq0AxkuhPRgWdoaBgE0uXbsBoXEJkZDoNDUXMm/cdkZFRXUqP3hEvrl7LlKQML6OQB3PmIbNsTJp0PO23y+mi+qVqir/s/oJ1fzP68NDVGHqbHA72le8mZdia1kgjq/IVQ4Lp06cz44GbWw0APtv6OS3OMIyOQdzxmIX7bklmVEoN+w808cHWMa3ndIVNBQVsWLq0Q+OTYHjvvfdYt/Z5FlzRwqCIo1TVD+GVv8Kwsxbx9w//6td4ZMbNN/NBQgI6VSxMh8vFBdXVfFTctffG3+/BZlseMHJ7iJOTvhRQFUCK6nsycFB9gJTysOrry8AfVedO9zl3c4/XsJfoiuOhOpX3kSMFNDXk4nJdRPYtc1nx/JouTXkUFBS0hniKDo9B2Idw7FgjZrOJadPS+GDts17Way67nThXjFcZveLE289oL119e8zMzOS992ys2JDk16xabaodFRVJo8ZGybZDNNoF9z17EK1oxqAxcPNtc7o8pbWpoIAlV19N09Gj/JoENBo96ZHhZMW5WO/HAbojoqOjmX9THtm3zUXqokgyj+LMKxYz6ZyZlE05y29W4EBOzN1J4dKZ1PYhTl76UkB9BYwRQowCDgBXAVerDxBCDJNSVrq//hrY6f78PvC4yjDiAuAPvV/l7tPVgJmeVN5HjhQQocnm7puNDErRc/d1R1ndhYCbnkSNxulGtCN1bPsLYLuSseYLsVgOkJ+/nDlzMvhGFRrqrhuzyf+/fKyDrK2BdW2bbeTcE1qwDkR0dHTAOHPqqOkjhibz/id7eOltF0NcgnsNGkY1GrEPTWZVfj6bpk7t0AjBN5I6wOrsbC46epR/OCcSwyKqHaPYIyr5U9NK9M1FActrj5mZmYQPHsstq/7tFa09UAih2Tk5PZ7CpTOp7UOcvPSZgJJSOoQQt6AIGy3wqpRyhxDiEeBrKeU/gcVCiF8DDqAWmOs+t1YI8SiKkAN4REpZ25nrq7UHc6qZnAXBOaN2l/X5uSy4ogWtsPDNd00YjeEsuCKe/PxcJASsk9lswmIpoqkhl7tvNjLeHE2ldHF6WhTpk4yddlLNXZXbmqhx73OV6CL/AJFjqKi0MHmiMhrdsmUFGzeu9Tpv6tSpfp14u5tKwkNfPZcTjUeL/rGsnvl3V+MinOTkKRz6YSePNttJ1xhJTk0hLjaWQVar33BP6rLUkdRf2bOb26/7LQ3SwWRdGP9yRRPOIgZpxhEhJRUOE3H6Wzjc9HjQ9fU8l4tnXMzTLzxNeJiO/7y1msKt/+bQgVKMYdHEiEbqqyuYd22W16xAZ3JZBVOPl/PXc9BykMqqdzGl/ILY2DggcGr7QG22Pj8XnY6Jna5EiBNGn0aSkFL+G/i3z7YHVJ//QADNSEr5KvBqV66r1h4SLkpgz449XLbocoYZUply+uld7lyDobi4CMPvqrFHajHE6bE32zE0VfDtt3V8eeB4nSwVioVcHnlkZmaSkzOb7OzlNDcVM9qUgtNZD8JOcnIiMTGdt/JSB4VtOtSCPmY0oKXpsA0IPBr1N93VU1E2rFYrS59bGrANThW8tehUVRT8x1i2eDFX+6zX+Av3pGZ9bi5LjEYyoqPZdKSWLVEHWblAIhLshNfqWLiqgWO7aokSkkig0eXCySiMxuAMUtS/F12CDsskC/v/tp+tf/6E+CtT0Y7SMajwe276tYMZZ5uoa2w7K9ATMSvV71nqL65k7UOr+LFcYpbT0OsPuLPrzu+wHHX7f/4poYy6/ZgBGYtPrT3U1dVRLeqIumQ4xpRhXv4+XfHb6Ij6Jht7D4M2XAdCoA3Xsfcw1NQdbZN63jjdSO4qxf/Fk8o7IrKFnSXfYjBUEBauJy4utkuOi+ZUs5L7CggfqsfZXIKz2Ul4uJKosTOj0c44s7bn/FtVXdVuG/Q1PRWLUR2+x9c/ymQ280llJdt2bGPrN1+ybcc2PqmsbHe9pry0lPRIxbJyfUMFS67VcM4YAzqtYKwJ7rxWiyN+A81CUC0lLq2Wwcl2dz6kwHh8lxb+7rcc+aGMI+/toaWqkfr/7KU+0Yo2TtCiP0LLZ7tYNMfFpJ+EUW+r8+vv1ROo37MpP/9/XPfoTYwY/RplZdPaTW3vy/FZjL1IiOjwhBB9xoAUUKVlpUQmKz/og5YqYoelEGNO4NDBclLTMjBlnMd7jz/eJb+Njqh3hvP8XwW7djtwOCS7djt4/q+CQ1Zna508RCZHUlp2fOScmTmTFc+v4f+2jsSpGYFWq+2yr5E6KOzwTAOOhjwcNTtJHpaE1VroHo0G5+MVrDNrIOdfT0ffbG/usA36io7q3hnai7gxYdo07jqwjyKdDc0wHUU6G3cd2MeEadMClmcymylqUAYb5fYm0k1aGpxOjJER7HO5+OkogUOzi3r9PqrD9AxLdaDXr2r3+ap9l25taSZjsI1HflfPqBS4738aGX3MRmNZI86P7YQ1akmfFElYpAGbrcnrfnoS3/cs/ZwZ3PuXDYyfPJyNG9cEbRxRXFyEIawCe6QdofNv/RuifzAgBZQ51UzlloNUrt2G7h+HcLy2m9rnv0Jft5+1Sy/lu7+tZaHTSUZ0NDqNRkn7YDSyPrf7I8L0yZM5PHI4D79q4MqbWnj4VQOHRw4nNiGuVaPx4M9CTu24uGevo8uOi5mZmeTdk0fS9iScWxxMHg9TJr5BS8tVfkej7WkPwTqzdqRphRnCgmoD6Hpkgq7SnZBHvphMZj79spKd27ZRuPVLdm7bxqdfVmIymdny9RaOXp7Co0ONXFnv4NGhRo5ensKWr7cELE8dST1FH84XpXb2uVykjDIzfPQYvj5kQKeHY1GPY0y4jbi4p4mKL2XxPbe2iQbiQT1tuGUQLL1GkGnWgMNFykg7i66FhHiwn2mnqbmF3dubcTY7MRrDgd4JR9RT0Vy8ZjFC9GsGlIByuVxk/T6Lr7Z+SeTXP/KHyxtY/4zgidn1TE1s4qHbhnDXNRZ0zu9p0Hm/vB2tAwRLzoIc9PsMRP1iFCnZZxL1i1Ho9xm4c8GdQae58MSwGztuImvW+Q8HFAyZmZlsfHMjxV8Ws3XLF3zxxUaKiz9qMxrtSHsINspGR5pWYkJiUG3QncgEXaUnYzGmpU/j/if2cXiXjYlaHYd32bj/iX2kpU+jtKyUYecPZ9htkzE9fhbDbpvMsPOHt6tFzszMbI1h+H1LJPe+rqXGMYLomEGUHdTxty3JrMp/j/2HdrB69TKsEXtxZjr8RgPxoJ42rNFpmDhcEo5UvA1dcFoCaDVAPNSdbuCZlXZ2fusgKSG51yKI9FQ0F/UsRkh96t8MqCFEs70ZyyQLgw85yZllYFSsA129ixk/EYwaYeD514/xxP3xLLpG8vYLdiX8hJvu+m14aC+dRSALub5GrT0ArdrDY0/ey2tuy6yImBg++NO92JodAVMadJQ8Ljo6mrx72rYNKNHkPRaCDT/s4lH36B7aT2zYU/Rk4rviLVu42pbC6j/X8oC9CZPByNUijq1btnQ5YaTaCGFTQQFr83N5+IW2vlfq9VdA+T9d2Z6pOv+oq4ZppXsZFx5BuNRTUiUwDW8BHWjqNVQeNRAxXI+9QY9zhJNdWwy88f4U1vz9GCZTSps0Gj1h5dlTqTPSJ09mT8RuHn61ltJ9fp3+Q/QTBpSAElpBtCmaI0eaSEsPRzicOCptxMeGExFup6zsKPWHDnDez1JY9vwBCq3WHvPbUBPI8bOrDqG9jb+02ccOV9P02acsTpugpGdvaGB55YF2oxPcMGc2T6581m/qCg++beDPQnD17ExGmFO9yu4pDTcQwdQ9WMpLS3l52HAWapJbtzlcLt4sLeWeFSvIfjwbptNlX7P2LObU1pseIpMjKd3oHR/wuYcGM1jUY91v46l1Lm5/yUXOQj3GMRr21eh54XVB9LmjGJkWh7XcStLMJDa+6d/fqydzqfXEbyRnQY5ilfiLUTi21zZ2q7AQvcqAElCesZI+LpySH+2MH6ulBWhuEZQeCGPcaQYmpo2ncLuVsZOHskI7pEf8Nnz9egS0caoMpmzfsm689sbWHEKlpeWYzSZycmb3uCe9P+3h0xcf5wKtjvv31lPadARzuJ6sOBfP3Xcfz7nrGGOMZkiEoLHhWGvEjKWL5ndqBOxPexs+Pp0tpbu4PC6u9bie0nAD0dXRe1VVFUOHTaTuaD16nYOEwY3YmxuYWFPO/KhE7jKZWuuvj4nmtfxcourqqX+jmmpnOOmTJ/eoJt2RhuaxcIsddJiGeheGES6unAXLVkWQ/9F4LonS8cdntejPTWLYuMHHp2HbEaAv56/HlHEem//yEIcPlBI/wowp45c8+uRycnNfo7S0nJiYCKShhrIDe6mz1uGyS4YMTSDn+sXcddddPXLvHtSzGNQOsD7wJGNAJSw0mU3S/KCZI8W1RHxVwqKrJaPjtOw/4OCv78HCa0e3m3itsyGK1P4jntFw9d+rmXJU8PCQIZ2Ki+avrDlD5vDMUx8yZMjDvRqPzF/Svj9dNR2dM4WwQRG4NEfQuGJprmukWfzIyHunYD/WTMTWEhZdBheeN5YDh/QdJrTzF4vv7J/PaBOxYNvHH7D5lit4MW1Ct2PL9SZPPfUUOn0M9y2PxtVSw7j45Sy62so483BK9jbz0l8tXNaUyIXx8dxRXU3UeMHD2UNa4/b1RgJAf++RbbONvHsUX7OzzzDx3H3VGOK1aMO0OJud2A87ue2xBLZ+U87mzZtxOBydcqYen346ZpOd268zMmFsFDv31PPE8zV8/Gkkk9Nfo6VlBHtK38ehz8Xxs0J0w8PQfKUhanQ8zd/X8cAN9/a4kPIQSljYvxlQowfplFjLrQwaN5jKquHc90cLQ2PiGDp0GHaX5MmXrZhMSX7TUHclRJG/+f6jthKuqZNkjBoFBL9+4q8sZ73gSN01jBrVu/HI/AbkA+EAACAASURBVGkPNu1gxqbWc9tsLaNT4inZb+OZdcfYXhZFtCmayrV7+cMCHWNMYKmuIGPS5C6lZfenvcXEJxB+zrmsCDd0W8PtTZ5+Lp8//OFRwgaNQl9zC7dcE8/o1KFIuZ/JaeO5aTbcn2th98SJRCboePhWR6+nsW9vDRSOW7iljVC6BsVPz0l9k82rjMzMzNbwSo8vXsxr7cwEhFHDoqtjSE9T7i09LZo5vyxl544hREdnsG3HNnRDJtDUsBCx534M5zbhCnNi/6qBQb8aQe4rK3pNQPnyzTffDNXpdK8AkxhgRmR9hAvY7nA4rj/jjDMO+e4cUAJKr9Nje2Mf1cfqiIoZxPU33B/0i692roTgOhB/8/0uawvJDm+tNZj1k9KyUnQjtVSu3UtLbRP6uHBcv/ktLY5kr+N6Kx6Z79z/yBGDWXh1EmNMRrRCMMZkZOHVLdy7Ukkt0VLbxOjT9Gi1YKvpum9MoLWf+5be1S/X6zxsKihAtJSi5QDGhudoainBnDIWACnt6HQ60iekoDNUsWbjRmZMSyN9vPe70lt5oNpbx1Es3BpYHOZg9GlaSn508vxfBfXO8Db3pw6vVGSxsDw7G/xoseEGLYlRNTQ1RhBmjKTZ1sCIhCYM+noAmpps6OMM0DQK6hSZIBI12GubiBk1hLKjJy6+nk6neyUpKWlCQkLCEY1GM3Cml/oIl8slqqur0ywWyyso8Va9GFACyulsYf3ykaoplHw2FbQfhNOD4lzZuQ7E33y/JlpPhc37vQ9m/STGGA1bt/GHBTpGn6an5Ec7R60OhPxf4NzW4zoTAaI7GAwwdnQ4zVLgcrnQaDSMMmnRap3A8XW+MSa65RsTzNpPV6LD9yYebfuJOyAhWcOjt9SyMt/KvzYf4FczByOEAYA9pTVERSvraOrI5h56wpeos9Zzags3e20ThrhwXKY40oeM8zpO7ScF7c8EpKWlU9+4B+OhA9Q0NREeHo6lxoBOPxSA8HAj9mY7OPfCIBcAssqFIS6cY3triB3cq8myfZkUEk4nDo1GIxMSEuosFsskv/tPdIX6Er1OtJt+W01BQYFXavOIyJhOpzNXR2vw+PW0GAfx2qBYCq1WHC4XhVYry2221ujTgRgSIVh0GYwxgU6r/B8aD/GDXsZqLcTlcnQ6AkQgggnpM378ePZW7CMsHKKiowkLh/2VlegMWqzlVgxnDCdvlaNHfGMyMzN5Y91atn78EW+sW9tGOHmy0n6wNoHFsyysfrF3faJAyUeUlTWPtLQZZGXNo6BgU+s+j7ad+fPhCOyMTpHcfM0Q3t10kB/2/ohWO5TiHw6Rt66COdfdCiiRzR/Mq+Htfxbx6edfsua1rdxw9w52/tDiVbYvnpTxZ59hYmr6UE5PH8m8axXH5WCiX/i+59POnObXT8/XF03tJ+Uh0EzA7Dk5rHpLj901gimTJ2N3jeCND2JpcemwWgtJHpaEo2YnOsdLyLGHsO9txvWJC0NKJHXvHSDn+sVdekbt4Xl+oPMNFqsJCacTi7u9/cqiAaVBaXyaIJAG5BtM1lJhofrv1TyYJ3g4G59F7MAdrr/5/ieffhIBnY7s3NhwjAvPG4ulugJbjRIFfVB0OMOSwklIWqGy4uuegUSwJsG33fEYecuv5xrDXpITHVRU6fj7fwZzy803s+XrLYpjqXEyb7wvAvrG9ARdmXrtLgUFm8jOXo3RuISEhHQsliKys5eTl6eEo/Jo2zpdNLuO6tE2lzNquANbs4snXtbgcpURFR3HnOuOL/5LoKJhFI+vr6Z6337QTOSIdQ7DE8eRnb2qtWw1HuF84xUtDP59NdZ6WPnXBs6esJvVL2ZzsG4EF9y6rI3/midnk7/3PP//8plz0RzlGbbjj9eZHE/Kc8hjhUrLzV7yJBJBbq7y7k6ZGIE06CnblUDdV3W47A7CGl3c3QsGEurnB5+3GyzWYrFop0+fPg6gpqZGr9FoZFxcnAPgu+++2xkeHt4lYbZ48eLhr7/++hBPWcuWLau47LLLjqmP2b59e9jll19+2q5du9rN6rhq1arYJ598cnhSUlLLXXfdVfn8888PLSgo+LEr9epvDCgB5XJ5fw+kAfl1ZvwdHNqkZcWGBL/J5wIRaL6/s52nyWTmwCELGZMmt2773+8EaWnprFm3plNltUcgp1zfRHRK/f8/e2ceF3W1///nmX2AAUE2BdlkE8VdNLNy4VvWtW6/dkuv2V6aWOm91m0121xKTFu0bplLZd6yrt2sq2Zl5lKa4QYqsikgiMKwDLOd3x+ADTjAsGPxfDzmwcxnPp/zOZ8zH+bMOef1fr3fqTW1ljS7qj3+TvssaEPzpl5bSmPJ8hyn6zQaDaMuTWDfASNXXRVYb26oFStXc9Ps+XyyeCnq7ivRuQ9CXVbKuYKThAQ7F77UdM46RR7BAUoM7irc9VaWrC5i9t3h3DLjF6fuFzU5m+oL2v3+5+/rjWmqoak5nuqLzeqI5IK1Pz/RYAcTGBhoq+kgHn300Z4eHh62uXPn5rdGPaZPn5739NNPXyAMaCrvv/++3xtvvJE5fvz40g0bNjQt5307YLVaUama19X8qab4LFbJvgNGrFZ7g1NOjmayNbgHu1NSYeS9VRvZ+v2hFlkM1UfNdM3Yy+POT9PUMGnKTBa8W1Gr/nkFdqf1b6icxmiKpU+N5VJ97dFa7t8NUdUZNDz12tq+fenpmbi7158sz/GzAunS9GZNu5/OzkLrVlW2zs0dk8l0gfClpl23ffctCplDeXkZ7m5KAOKjlWSeNBEf646Qtga96+q7z10x53W0V7qyoIAlgYEXyPzb2y/RVZx9fs3hySefDIiKiuobFRXV94UXXvCHqlFPZGRk3+uvvz48Ojo67pprrokoLS1tsVvFq6++6jt+/PiIUaNGRYWGhvabNm1aEMDMmTN7/vrrr+4PPPBA2EMPPRTkeMyMGTN6zp0717/mdXh4eN/jx4+rAV5//fXu8fHxfWJjY+MmTZoUYrPZsFgsGAyGgQ899FBQTExM3MCBA2NPnjypAsjKylKNGzeud3R0dFxMTEzc1q1b3RsrZ8aMGT3j4+P7bNu2zf3+++8P7t27d9/o6Oi4Bx98sFY9G6LRDkoI8ZEQ4iohxEVvCaJWa1nyYSBX3lnQoMmqYyqKGto6tXljaymOJrE19ff1D6lXDt/cNZnWMuRsTffvhnDWcTt2Bm3h2xcREUpZWe02chSnNMfQt6bd/XuFUFleVbapvAydTlerbMd2jRxyOTnFPlhtkuISMwApaTZCg3SkHCkjOjq2Qe+6lt7n4xITeW/jRrYeOsR7Gzde0Dm1t1+iqzj7/JrKt99+6/bJJ59037t37+Hdu3cffvfdd/127dqlBzh+/Lju4YcfPp2WlnZIq9XaX331VT9nZbz99tsB0dHRcbfeemvomTNnlI2d8/Dhw27/+c9/jh88ePDgv//97+4ZGRnqxYsXn+rTp0/52rVrj7/xxhsnXan7nj17dJ9//nm3vXv3Hj5y5Mghm80mVqxY4QNQWlqqHD16tDE1NfXQ0KFDS5ctW+YLcO+994aOGzeuJC0t7dCBAwcODRw4sKKxcoYMGVKekpJyOCYmpnLLli1eR48ePZiWlnbo+eefz3O1nV0ZQb0P3AWkCSHmCSEiXS28s6FQKFwaATkTN9Rn3OqIqyMGZ/s1lCOohrojFoPhwtG8K+U0RGsZctZ1/y49V0RlTjYP3XhTq/6adtZxO3YGjmqzxpzpGxI+ODJz5iQqKhY0KE5pqqFvTbsPGpOAuWIhxYU/UpR7gm6e+bXKPu/KsPhZMnYd4IWF2WSc9uJoZiXbf6lk/rt2hg/2YcG7FTzy2DzmTLub/euXsfS+a9i/flktBWR99/nlQy93qR0aoint3t44fn4gm/XDe9u2bYZrr732rMFgsHt7e9uvvvrqc99++60HQFBQkHncuHFlAJMnTy7asWPHBZkhZ8+efTozMzPl8OHDh3x8fKzTp08PrrtPXUaNGlXi7e1t9/DwkBERERXHjx/XNKfuX331ledvv/3mHh8fHxcbGxv3008/GY4fP64F0Ol09ltuuaUEYMiQIeUZGRkagF27dhkee+yxQgC1Wo2Pj4+9oXLUarWcPHnyOQB/f3+bQqGQEydODP3ggw+6GQwGu/OaXUijE4NSyk3AJiGEN3AH8K0Q4gSwAvhQSvmHy0jZWDCjM1wVF9S3nzErhfjYsFplurKWUldGnHGoeeU4Xju03JDT0b/vwI4t/DrvUZ7W6vAENA3EzDSHhrznMtPTifers0blRG3WmPDBkarkkZxf4G8Nccrv7b4aD91hSs7NwMtdQ3R0XK2y9+/7lYifdvN3vZ4+vSJYc/oUc1/Ko8SmxM/XAzs6dN1iaq2P1vfZObvPLx9/OStX/upSOzSEq+3eETh+fnC8WYsjDTnwCFF7XcvZ5FOvXr3Of29Omzat8Kabburd2Dm1Wu35cpVKJVartcHOVaVSYbfbz+9jNpsVNXWfOHFiYXJy8inH/S0WCyqVyvEc0maznT++rrqxoXK0Wq1dUa1K02q1cv/+/Yc3bNjg+dFHH/m8/fbbfj/++OPRxq4XXFyDqu6cbgcmA78BbwMjgU2uHN9AueOFEKlCiGNCiDlO3n9UCHFICPGbEGKLECLU4T2bEOLX6scXLamHMxxTUWxct7HRL2hX8wXVt5/JbGuyjN1oNF4wjVZSYWX77twmlePs2uuTdbuK41Thz+8v4VGdjmgh8Kj+Vd1ev6Ydk/nV4Ext5rhwrlCoMBgGodfPZvFi5/meEhPHsXHje07TkzSXmnY/cuBXTuXsIzNz1wVla88VMg2IdzegEoIpAUHM1/XCR+nP3pTT/JqS1aT10br3+fffH25SO9SHq+3eUdR8fmA92Jzjx4wZY/zyyy+9S0tLRXFxsWLTpk3dxo4dWwpw8uRJ7XfffecGsHbtWp+RI0eW1j0+MzNTXfP8448/7hYTE1NRd5+WEhYWVrl37143qJqSzMvL0wBcffXVxs8//9wnNzdXBVVKxaNHjzY4GhsxYkTJggUL/KBK9FBUVKRwtZyzZ88qzp49q5w4cWLxm2++mX3o0CGXsxi7sga1DtgB+AA3Sin/IqVcI6V8EOju6omclKsElgFXA3HARCFE3RzU+4ChUsr+wHpgvsN7FVLKgdWPCyKQ2xtXxQX17VeJb4NrKXDhonNubt4Fnd3I257gqddOuyQGaUscpwrPZKUTLuFsXjY9AgOA9vs17ZjMr6G4s7oL52fPFpGTLvn2f1s71QK/Tqkk4FwhprJSpJSYykoJOFeITul8CaOpgpnGBCCNURNXtfXob0w/msq2kyebFO93sTBmzJjyG2+88cygQYPihg4d2ueuu+4qSEhIqACIjIyseOutt/yio6PjysvLFY888khB3eOnT58eHB0dHRcdHR33008/ebz++uvZrV3HO++882xhYaG6T58+cStWrPALDg6uBEhISKiYM2fOqTFjxkRHR0fHjRs3LvrUqVMNjiSXL1+etXnzZq/o6Oi4+Pj4uP379+tcLaeoqEh51VVXRcXExMSNHj06et68eS5fa6NmsUKIK4H/SYcdhRCqlk7tCSEuAZ6VUl5V/fpxACnlS/XsPwhYKqW8tPp1qZTygrndhoiJiZGpqaktqXa93Dr5TgbcNK2WZ1zGoX3sX7+Mj1e979J+902ZVK8jQi1rmWpZ76477iDDK4b+l115viyb1coLt4zgkoHBHe6sUDP9uPfL//CSEIztFYyPd5UrwD6jkSWBgby38Xc5szOz2NagxjOuIff4CROmkpc3A4NhEGfPFpF79Bi+8ihh+rnMCzc024y2ta9p6oQJTElLw6/EiKnalaHA08DK6OhabQl1/SNdM6B1bIcajMZ9BAYuYePG9xq8nrpGtLnfncKyMQ9/Dx/i4uNddu1vT+qaxe7fvz9jwIABhc0tz9XYpS5qs3//ft8BAwaE1d3uyhTfy/LCXmx3K9QpCHDsSXOqt9XH3cBXDq91QoifhRA7hRDXt0J9WoSr4oKG9mtItu1s0TlAoeDHN1+sVX52WgoDBg5sUzm8q9RMWb217mM+DQwgU6XqkF/TDanNanBcOM/LysBXHgWxjEeC23dKsjEmzZzJcrUac3AQAwb0xxwcxHK12mlbNkcw44oApD4c46oUSgVBY4PpnhSD3/D4etu9tWmP0IYu2o96R1BCCH+gB/ARcAvnsynhCbwjpYxt0YmFuBm4Skp5T/XryUCClPJhJ/tOAqYDV0gpK6u39ZRSnhJCRABbgXFSyguip4UQ90FVclw/P78h69ata0m1G8RoNFJQeAaz2YxGo8HPt7tTpZ2r+zmSdvAg0SoVOCy4Gr29ycw5iW9ENBqtHnNlBSWF+fTw9220vPbGaDRyJj8fc2UlGq2W7gEBF9SxtLQUD48mDYpbFaPRSH7+GYwlRgxKBQFqgaEmwFBKjpjN6PT6Bq+hLm1xTa60JUBa6kGiw1VQK2msJO2EleiYug4/tcvPzz9DZaUZrVZDQMDv92dD13PwyEFUfiqEw/kkEmuBlb6x9Z+vtTAajeSeLsTTN8Dl/4cxY8a06giqi+ZR3wiqoXnHv1AlLw8G3nDYbgSeaoU65QC9HF4HA6fq7iSESAT+iUPnBCClPFX9N10IsQ0YBFzQQUkplwPLoWqKr7WmW5wlCrz22mtbpWxnrFy4kGF1rGW+uuUWNn38Ee5RsS1Kpd1ZaKspvqYydcIEZtRp6+9OnuTN3Fzej4lpUg6q+q6pPRJNrnx3IcN61Tag3XfAyE/bA7nv/mnNKrOhz2jhGwvJ61fbHNmYaSTwQCDTHmje+ZpCzfS5R9wgTNXbCg/tY8u62tPsXVw81DvFJ6V8T0p5GXC3lPIyh8c1UspPWuHce4AoIUS4qLJ3vg2opcarXnd6G7hOSnnaYbu3EEJb/dyXKjvvdpvzrZEk5+XNwM/vG/LyZpCU9K7TeBFXY2saw9lif57dziPz5rVYcddFbZy19dO5uTwYGHhBXM9zDz9M3x7+hOq19O3hz/z58xstv777Z/78+a3qvNBYEHNr09z4wdaiKS4oXVwc1NtBCSEmVj/tIYSYUffR0hNXiyymA18Dh4F1UsqDQoi5QogaVd4CwAP4pI6cvA/wsxBiP/AtVetk7dZBuSpJbkpH1hjOrGV8Qy50kuii5Thr62Jvb+7p2bPWfl5FRWSnpvKEKGV9iK7q73NPN9pJObt/LJb7SH7+zVZ1XmgsiLm1SUxMJPmJZAIPBFLwVgGBBwLPZ+ptD1rLBaWLzkNDU3w1SVh82+rkUsr/Av+ts+1ph+dO72wp5Q6g5WZazSQ9PRM/v8aluI2ZijaVugGp27Zta3IZXbhG3baeOmHCBe7dP2ZnE6URxHlpAYjz0pJEJS++trBBB25n909JoSduVulSfqWWXEdb01AyxLamvuSWc6bd3SH1aSqpqama2NjY+C1bthwZO3Zs2fr16z137Njh8eqrr16w9OGMG2+8MWzOnDl5w4YNMzW27+233x66du1ap7EDO3bs0P/www8e//jHPy6Qx7c39XZQUso3qmOVCqSUS9qxTp2eiIhQ8vJSaklxnSUKdLUj66Lz48y9O9lmZWqAvtZ+0QY1pVnFDZbl9P6pOMAQN22t/TqL88LFQmu5oDSVDRs2GN75YG1AzsmT2uCgoMp7/nZ7/vXXX29sTlm9e/c2vfLKK4Fjx45t03QZ9XVOACNHjqwYOXJkqwcON4cGZeZSShtwQzvV5aLBVSluREQoubnbOXj4ML/s28fBw4fJzd3eLhlvG6JLitt0nE37FXh50q2Oq1ia0YJHN68Gy3J2/6hUb3OtT9MzLXdRm9ZwQWkKGzZsMCxasSpk6B2PqWb8a7Nl6B2PqRatWBXS3LQXkZGRFVarlX379ulqtr311ls+/fv3j+3fv3/s+vXrPQGeeuqpgBEjRkT37du3z2effeZZs++iRYsCRo4cGT1u3LjedrudjRs3GkaPHh05evToyPj4+D4pKSlagH79+vWBqlHXbbfdFlr3mPvuuy+4vnMnJCTE3HXXXb2GDh0aM2nSpDadP3UlDmq7ECJZCHGJEKJ/zaMtK9XZqfLyupvAwCUUFFxJYOASkpMv9GK7/PI+nMp7GrVHIUHRcag9CjmV9zSXX96ng2recpfxP3PnVjeeatrj/yS52M6h4kqs9qq/ycV2pjwyq8FynN0/jz/1V77XqJucabkx6mbM/TN9Xu3BOx+sDRh3199t4f2G2JUqNeH9htjH3fV32zsfrA1obpl///vf81966aUAAJvNxquvvhq4a9eu1K1btx59+umng6r3Kdi5c2fa5s2bj7788suBNceOGjWqdMeOHWnu7u72PXv26AGMRqNy69atx1599dWsZ599tkfd8zk7BqosjZydG+Dmm28++/PPP6cePnxY74oTe3NxxSjxiuq/gx22SeDy1q/OxUNi4rhG15F+STnELbNuZd+373A6+2n8e4Vw1d9u5ZeUPe1UywtxNSGhM1w1xP0zsGXzZg6nfE9lmBdPFp2j/IQZ3+4+THlmlksZYJ3dP1sGD25ypuWGcJYxN+nFJJJpP+HCH52ckye1N8T2tzhuC4ntb99w8qS2vmMa46qrrip95plnemZnZ2sKCgpUwcHBZr1eL/V6vU2j0UiLxcLy5ct91q5d212hUFBQUHDe1y8hIaEcIDg42FxYWKgE6NevX7lCoWDUqFHlc+bMuaBezo4BOHXqlNNzA4wYMaIcoEePHpYzZ84ou3fvbmvu9TaEK27ml7XFif8MZGRkMf2Jt0iceP/5bTarlaX3/btD6zShgSyrDdGSzu2PRC0LoediXbIQcoXWFjTUlzF38fLFf6rPqy0JDgqqzDrymyq835Dzk71ZR35TBAcFVTZ0XGM8/PDD+c8991zQ1Vdffe7nn3/2qKioEGVlZQqLxSLUajWvv/564NGjRw8UFBSoRo4ced40wdFJXcqqVCIHDhxws9vt7Nixwy0sLOyCejk7BqBnz57WnJwcTd1zQ1XqIodjWnKpDeKqm/lV1c7iT9Q82qxGFzF1Y550WnWnk722RIrbUXEmnS0za0tzbjWFlkzR1ZcxN2X/b52qPS9m7vnb7flb/jVfeeLALwqb1cKJA78otvxrvvKev93eorTwEydOLLbZbEKpVPLoo4/mDR8+PGbs2LFRzz333EmAkSNHlgwbNiz2ySef7OHh4dHg6MXDw8M2ZsyYyJkzZ4Y8++yzuQ3t64hKpXJ67vbEFbPYN4BuVE3pvQfcCOyUUt7V9tVrXdrSLNYxn5C7ezxlZSkUFj6Dd5CRm/8+/wLZa2v8gm2O84LjNF1T6+SqIW5zcXY9zkxym2vc2lqMvTyOb973Q6X6/fed1WrnyjsL2Pp97XC8lrhj1DVfLcspo2JbhcuxRRNumXCBs8PJrTn4bchjaVTTHDFa43o6I61hFtuaKr7WZuPGjYYvvvjCa/ny5TkdXZeGaIlZ7Cgp5e3AGSnlU8BwqmyJunDAWfClr+9zaG3u9WY07QgSExMbzLLaEK2VbbcuNcKLI6lpFwgvOmNm1tDQiCbn7moOdc1XDaEG9KP1LF7u2rU7c3awbMzjhYAenao9L3auv/5648ZP1x37ddePBzd+uu5YZ+mc/gi4IpKo0cObhBCBwBkgrM1qdJFSX8xTQUF5p/MBa24wZVvEmTiO6Py1pQwIHFRLeNEZM7NOmjKTBW8mMftu6qSxaF1Ln/SMdPzG175292B30je6nh25bsZcpUcBo3rUFnJ1dHu2J3VTrwCdy1W5lZkwYYJxwoQJF22H6UoH9ZUQohuwEPgVsAEftGmtLkJcDd692Gltp4Bawov07RcIL0IjIi5wcOjo+KCqqbBkljjk7nJMsd5aRIRFkJdTe4quLKeMiLCmZUd2/LycOWJ0dHu2F7Wmi/38SMnL42Po8kHqxDQ6xSelfFZKea7aIDYciJdSPt72Vbu4aEkenT8zjQkvXM2I2940lLurtWgL89XO2p7tgdOcamBv/MguOoqGzGKvq/sA/g8Y5WDm2kU1rgbvdlY6KqCzMVWhMweHhhb0/0iBxG1hvtrU9mxtOlKRmZmeTrx7bVWjtquD6tQ0NMV3cwPvSeqkxujCteDdzkhTAjpdSZ/eFBwNPmO18rzwwtHg09X4oD9iIHFbmK+2t4FsDc6m2BYkJUE7dZDOposrXQy1aQ9SU1M1I0aM6BMVFWUqLy9XzJgxI89kMikWLVrUo2fPnmabzSbuvffe0/fee+/Z1NRUTVJSUvCmTZvSAWqMZU+fPq1KS0vTp6en6wIDA81ubm52hUIh7Xa7cNz2/PPPn7zqqqtKO/qaG6Mhs9jJ7VmRLjoOVwM62+ILxlF44TNqJPu372i28KIrkLhz4zjFBq3n2O4qzgx/81uhg9qwYYMh+Z3kgKzsLG1Ir5DKpHuSmi0zHz58uHHTpk3pRqNRMXz48JgHHnjg9P3335//xBNPFBiNRsU111zTu3fv3uagoCCLs+NXr16dBc6dzZvidt5ZaPTDEUIYhBDzhRA7qx+vCCH+0MqXPxv1BXSmZ9RWdrWV5LvG4DM2JrpFBp9dCes6N86m2NpTQehserMCWnRzbNiwwTBr4ayQgoEFqu4PdbcUDCxQzVo4q9lmsTWUlpYq9Hp9relHg8Fgnz17dt4nn3zSrSVlX0y48uvhX4AF+Fv1w0xVwG4XrUxHrZ9EhEVQllM7rseZWqyjv2AaoythXecmNCKClLI68WPtrCCsa/gLtEiCnfxOcoButM7mHuZuF0qBe5i7XTdaZ0t+J7lZZrG7du0yJCQkxAwYMCBu0qRJZ+q+36tXL0tubq6mJXW+mHClg4qSUv5TSplW/XgKiGzriv3ZaKnLeEtwVS3WGb5gGqKtAom7aB3+iArCrOwsrVsvE+qlFAAAIABJREFUt1ojHbdebvas7KxmmcUOHz7cuHv37tSsrKyU1atXd6+oqKj1HZ2dna0ODAy06PV6u9lsPv9eRUXFBSOuPwKudFAmIcQlNS+EECOAi2YO82LBcf1EqVI5rJ+sbvzgFuKqWqwlXzDtMTpsiUtGF21P3Sm2p1Qq0rt78PATMy7aVCAhvUIqy7PLa32PlmeXK0J6hbTILFan00kAs9l83ry1tLRULFq0KODmm28+GxwcbD116pTGaDQqAL777juP/v37d4okg62JK4G6DwGrhBA1vwgqgC4BRSvTEpfx1sAVtdi4xERITm5ySoj2VNd1ZMrxLhqnRkFYSzkafPGmAkm6Jyl/1sJZIYyuGjmVZ5crTNtMyqRZSc0yVq2Z4jObzeKqq6465+XlZVu0aFGP//znP942m01MnTq1YNy4cWUATz/99MnLL788WqVSyZiYmIqbb7654VTOFyGNmsWe31EIn+r9L5gXbfbJhRgPJANK4B0p5ct13tdS5VoxhCqLpVullBnV7z0O3E2Vs8UMKeXXjZ3P0Sx28+bNrFi5moyMLHRaNZWlak6cyKaiuAi9vQB3Tw+0fnEIoaK0tJjc/CysNhVCacfgVYmXlwFrdj4VZgvl+GJVqPH0dCfaX4W7QmCVkpyCAmzGUlQC1J6eePl051ihoLy8Em8fT2bOmMjgwYNZsXI123f8RGBEHFdOeoCdX65j1+ebsJjtKBV2eoR54t+zFx4ebtgsFgqLzlJptjDzoXv55NMNeKhLOH4sldJSI+UVErVSzekiJQoMqBSSbgEqfAODqDRbUAqJRqUkL8NIWXklPl4ePDxrCkMGD75APi4RLF68mvT0TDw93ZCaQk6cSEdtrUCBFb3egK5bL/TuXlSUFpOXYcRYWoFaCV4BGkZefhn3TpnEipWrz5vMfrFiIf99fxXlxUbAglajwGSqxLdbKf986gVee/UZzpz1wWJRY7eV0s39LAqlHbtNSalNibuHG5rKIhASJBht3Rg4JIHKUjUlJeVIaeVUXiZlpTawCRTCRDdPbwLDDOg9vAgLC+HeKZPYu3cvry9cSVFxKUJhwmAoAWlBqbBjMkl0asFpkwqlmxoVKqTJB1OFBbtdIIQJTy9vgkMMWCw2Ss4J1EoNbm5gt6VjNpWj07ujce/FPXfdxaLHH0eazegMBhTB3REaBRFhEcy8byYff7yOVWu/wlxpQ6NVMvn2q1mxYvn5e9aZrP+XvXtZ+NpKis+VolYrkNJMpUnUqltATwUKvQKDzhNh9qWkpJyIiNDqwHF5/t7Xa1V4lJZw6EgqeSUazFKBm1bFrZOv5tZbb6myScpIx15hpyjHzuNPPcyLc1+ne6APCoXb+TL37v2FNUuWkHe6kAqFH3ovH4YNG8zMmZNITBzH5s1bzt9LERGhFJQc5mz4GRT7i7CcNmHWKSky+2AvEhg8vNHp7PTsGYzUFJJx8gTFxmLsZolOo6O7yYbdYsGmUuHWTVBpMWG2qjhd7IGnwZtofxWms0WUFhdTZpe463RUShtKqwWtmxuKngEo9FWfwZeffJkmpYypae/mmsW2lorvz0p9ZrH1dlBCiGHAW0BvIAW4R0rZalbgQgglkEZV8G8OsAeYKKU85LDPQ0B/KeUDQojbgP8npbxVCBEHfAgkAD2BzUB0dYr6eqnpoBx/0RefKeT9Z5dTUngTKlMggeqTVLAUs7WEcmYh3PpRWnoMlGvAaywovOHc64QrfuOvEj6z90eKaRRaI7CJdHx5g2e9stCXFPOhUPAXIYhVKPmnuZI00R+zaibdwq/GZkvjbN7j9Awt5a4XV+DhF8wvP33PFwv/jim/G4HKh/EU4RTbj5Nvf4OBf+lL9Ojr2LtxDbGXX01geB9iTKl8suZZ7vxLEbFhFkpL1SxbK4gI6caWn0rJOXo7BuUw8qxLCRzowbVJL/DpSzM4d1xNAA8RqI2jWKaTZXmN3t7ZvBfS67z89tGCAk6IAfj6PofFEkRa+tdY5PP0C81k+qQgwnt6cSK7mDc/KsTqM5LjPxXib3+QbkRgVGWTJ5dy6cQRWEsKyDl2mH+u28mX7y3m30s/ReGVhE2GYCvIBHsy/ftkM22Sjh4xSeQemsOytb4cPnEjfUI/ZfodRmJ7ded4jo3Fq3MpK7ew7D4YFC7YlyV54gP4LTMOre45PHR9yMv/FcRqsF+DhhgULMWLKEpV3zEh6Qb6X/Z//OuJe8lPUxGifoRS62m8wxfx0B1niY82YywVLFtrZUio5MufYK9Zi/VMLJQ/BPZ4UBjBthS0UShs23A3aDB4z6co7wCxIS8wY3IZwy/tweHjJl5anMddU1+kZ/Kb+BbmkWotZ6nWTvEtofgE+3Ds/eOUZIeh9HkEtSEWi/EItrOvcfeUYaxYsdypk/tD2dn8XNwLtc8j2GUIlaczwb4GuAZUMdV1i0TIrfgl5FFyJAwqphEdcRVq9claDvslZwr45dnpDM47xSeWGNQ8TJEIR6PMpsiWjDYog8h7e3Mm5Qz5n3kRKKfz2IJAHp1VjJU1hIbdhY9Pb7Kz/0H3kh+5w9uXlWd7Iu0Pkm8NxrOHCS+v1UyZMoiVK/fVcvrfn3IvkR4HeNpTTZFV8lJ+FGfs0zDZ+qHXW7Hbl2AXEUj9/7Besg9VTy32zVb6nbYyzQalagWbg+zccTsEB7tx4qQfyWvgYNr/w4+tzJG/0U+j43W7jRirhV8VcJWvCg+LjaXlUHxtCN3jffnl+V9M0iLPZ5FtTgfVRctpjpv5G8CTQFD18+RWrlMCcExKmS6lNAMfAX+ts89fgZXVz9cD44QQonr7R1LKSinlCeBYdXku4bje882qj3D3ehKViKaXQoO/Np4S23RMhBChiaes1IpQJ4Licaj4AYUhBpWYhofVl50KX7T2afioogkRSvQyCk/1dN47p2S8RsccJNulnUu1WoTwxyanEaHpR+npfLx8L8XN5zkKTtsIixuEr58fCZeNpaLQjL9iGt7KSJQKJd3VsQQqp/Pr198SO/L/uGzKLNJ/2U7E4EtRKeD+W8xEh1gJ66lhxAAtj05VcCyzkofvCELZ7fOq41UPk/vbMSIGX0pZXiUBPESAbgBWix1/bRz+9gfIO6uoJR+3FqspPXsHBsMgcnLzUPn2wUfnxrTbtMREdkepEUSF+/DwlGByD35PT9Uj+GnjUSjU+Gvj6aFM4peNWxh756PYpCA7LYX/vr8KhVcSKkMctmIFqMbi66Ni2kQT0ZE+gIaoUDcenuKFn9cqHr6jO9GhEUhFCX3DfJj5NyUhQYJhUaAGhkcqmXmHim56JX7BV5J/uhiFehzYH0fBDrSKBASPUcFReqoeYct7awiLG0TRyQr85UP4a+Mwe6xn+qTu9O2tIrSnZER/LbOmatiXKXj+b+BdbEe4TwdlHBCKUCWA8jGwHEOKGZQVe+Lleyndu33KtDu8iI3qTUlhAUOHBvHIJAVqYWeIbw+USojygiSDlsotJzGEGiipUCNV09B4xSMUajRe8Si9H2HV2q8A57L+yiIFCh5E6xWH+ZwSVGOBx4EdteomPKdT8JMalXsSKt8+5OTmYTAMotg4hQpzN8LiBrF31TL+4eXNjzZvDEynhzKGEKHGSm8CxTRMBWoMoQYKvjYTqJyOjyYaixRoFInoxOOczPkQg2EQJUW346HwZ1uFHr1iBv7aeMI07pwr6IZeP5uFCz+8wOlfZX8IXVk3YnUqPjrriZdyOip7HxQiFK12FFZbEnaRilX1ACLNH024lu42K9PsEN1dwXcaO8/eAbGhahTKYPqF+/DIHVp8u+3EIKfxBX5cqtUy02ohQ8DjKgVbi61EeymY7ikwbz5VFe/n0eUk0ZlpaAS1V0o5uL7XLT6xEDcB46WU91S/ngwMl1JOd9jnQPU+OdWvj1OV7uNZqnJSra7e/i7wlZRyvZPz3AfcB+Dn5zdk3bp1HElNwz80CoQg52gaSlUU5vJydFKiUCgps9sQ5KBXhFBmlyD0VDmiHANNMKJSouYECFDKcIQQICUmQCfAKk/QT2HHbrdxHIhSKDlkV2AmHL1CRYW0o3Fzx2azYa08TFjffufrm3HgN3SipkxAAFJSIU8QFBePzWajKCcd/9AoRGkhbqqTIG3otAqEALuEY5kQFODGiZwy1LZoJFXH6zzdqCypQE8YCoUKu92GUqnEZrNi4gSDDLrz9ThYZsZCOG7u7pSVlSE0ChTWY4QHWxGK6v0kCKHgeFYZGntVUk9pt6NQKJFIyuVxwuL6kXciFZVGi7G4FIWmNxKQZgnoUCuPEB5sRih02IQvClsOCB0ncioID3KnaoW4HIXQYaeCnDxJVA/Ot02FXZCeo0apjcdUVgYKfVUjcAwFkYBEcgw3RUhVffrGk3EwBb0MQ6lUYRLHCA/WoBDl6LR2hFAgJRzNtBMZCIeywaKIBosCpK7q80CCPAYiGGQOOvdY7OaDhAUpUCiVSFmOVu+GubyUcmsQ3c4UYzaVIZV2hELJcasNXS8DxmwT2MNRaByXgiX2ymMMGdKftIMHiVapQJxfJyfFaMIiwlFoVdgq7YCuqi04BiLy97ppgsB8AqUuEhBIsx13d3fKystRqnIIjoom/+hBIlUqjpRVoiEcgUBStcisQVLBCQxhOkozTOhFOAiBT08buTkGQGLjKAZDLKVGIxqRCYBKRFSXIym323H38KCs7ADu7v0cL4Oy0lJUMp3eGhvpFiVKwqmQCiS66nvSBuIogiCkPIFaZ8VulvSWINSQY4eYYChHINGhEAIpJcdzbKitYdg5QR9hRUrJMSBSwFEJwVqQEk5YQBdq4P4H7i+VBfJ8zFLXCKpjqG8E1ZBIolsdz71ar6WULbU6Ek621e0t69vHlWOrNkq5HFgOVVN8o0eP5s1332dA4CDC4gbx3svvUVw4hIJ0D3pVmvB28yClPAXkp4RpnueAyQLqSCRpoPovisDZKHIO08f2PO5qKDK/gJs2GlOlJE9CD81xvM3P84WunMOWSr4D7nTz4MlSHYfk84S6DyJLrSEwph+nT32LpeJt3tyx73x9n7z2dvztz+GnjcVmsyGEgiJrGnniZZ7+7gDZqQfYtfE7Jr04Ff3Of2GpfJ7Q7ueI8FXjodew74iV/36i5box/sxbfI6gso8osh8lTz6P/6wQChadpKdtHgFuA7GZK3F3dyOr5BfKFC+RN+p85mie2pfNYfkC8YP/wm8Hf8PsbkZvfJwXktKJjY3BZrUh7ApOnCpn3ssZdCtfgbeIwmYxo9W7U2A5xFm3t3jkX++zf8dO7p0yiQl/nYpZ+wwqjz5YCgB7OL4eT/LCzMNEx0RgVN6NR9lcjp/qwSuv5fLctBCiQhUIstErenEw6wif/KeS9TMlwioQGgX/SRXMe60PHkHbyTh0AKGKwG5OQ8E23BW3YrXvR81/CdDdylm3t0jeuZ95t96Pd+k/CDEM4oiYx/OPlNInIoNw3zI8dHr2p1r4er2ZiETJvEVqCrVvIItiwRKB0LghrftBfoVQ3oCwfUbM0K8oyXmBZx88Rd8YPUKRSY+gWLZv2ke5Zi4jVn9BztF9WHTlpKvVvKKxEf30SL575SDy3Iu49Rpyvt3NxSkoSxdgKstm5cKFDKtjzfPo9iMcVM7DLXwwxRkVSHsYmI8B2xC6W6vr9l8UPtchzy7APXg+EIWmTEP/vv359bd/ExDxFU+vvYvPXl7A3wvz+PjQKYz2uXgrYzFKSY5C4GZPJVc9j0ve7sue59Lwr3wOH0U0k+YZeeoffbHLNKzK/zHy0gfYuf194jWL8NJoOW1+Bg9lLEaLmXS7jdh4PVlZ/yIk5N1aTv8pez8myvoqb7sbeaFIzTnxAjn2OMpFBB6GAEpKtiPkfwlSTqCH6nnu8SnijdN2rhDwVz8FX5nsDJ4JniFqyglHr3Tn0IkyXn7NB8+zUwnmeSZpz7K/0sY2AX3UCv4r7MzqoSStTPKKRUn04kvB2nmsjrq4kIY+nB+p8uOreTi+vqkVzp0D9HJ4HQycqm8fIYQK8AKKXDy2XhzjZa6cfBtlxfOwyjSy7WZOV6bgqVyKjizSzSm4e6iQls1gfwn0l2E3pmKVyyhVFTLCXkilYhlF1jSypI0KcZQSy1KmdrOxyWziZQSjhIIfKyuR8jRKsYx08wE8/AMoLvyR8qJn8PNX1orb6dZDR759KWfMqYCNM5ZU8mxLGXjVGI7s+B8/rFxIxJBRpO/9Easd3l6nIS1LRcYpMzv3V/Lqe3YiQ7W8vuYklrPXUWQ7Sr51GcRXIrvZsfYrJpel5Jv2o1IrOF15iNOKtwj0tteSj6u8LHh4r8Fo3Edwj0CshYcpMpWz7KNKUo+dwWaWHD1RxOsrc+jR93JOWV+joDIFu93C6coUcm3JDJkw7nwcUmJiInOfeRhN5XJU1gy03exg3UphkZVlH+pIO1YEmDmaWc7rK4vJP3sHr685Q1pmOsLuycGMIhZ/YCPrpGTP0arI8V3HbCxeY+VchY2CnG8I8PfCbtkCipewM5JK+24ki9ATxSnra4ybegcZh/bhE6TntHiD05WH0JTexNLVZzh43ErmKcHO3ypZ+J6ZQaGSpz6As14KZNlSsB0CMpHW3WBbBOpIhFyCu1cJxYU/cubcDSxbU8yRo8fx9PXj559P8tpqOxap4JfCXGw2OFoMycZKtOOCMGYa8dRbENZlmItTkHYL5uIUbGdfY/LtVwPOZf1aHzt23qSy+BCabjawbgVeAkbWqpssWYrfJRasZclYCw8T3CMQo3EfXoaV6DXnyDi0j8GTp/FK8VkuVZ7FyFJybalkSQsqjpMnl6Hzs2DMNOJ3lYY821KKzGmohcRs34xJvkRQ8ESMxn14+qyl1H6a0foKKuxLOF2ZQoa5jG5+56ioWMCsWRMvcPr38F6DzldiCwnn6T7+mFQrsCtTUShPUlm5HeRCfGUUCt7gJn0hkRIeUMAXNkg7Y+cKs4Jn18CRTAt2Ww4HThTx2ppKCs6OoIRlXEchu+x2FikhTMJLVjtjvVSkFdtZWiLRJPbEmGmE0q4OqjPjsoqv1U9c1eGkAeOAk1SJJG6XUh502GcaVek9akQSN0gpbxFC9AXW8rtIYgtVAcUuiSSg/VR8VmMpahdUfBnVCQDvnTKJjz9ex0cffInJYkejEvj3cnddxVcuUat+V/EplTbsMcVoxuiQUiLtduyrbXipQtpNxecoG54/f/4FCjRnKr7ycokQlXh7nEWpkNjtSs6aldilmUC9vZaKLzQs4rwqUa1WYMWMqRKwKZqk4pPSgqpBFZ8Zu13RLBWf3WJG79GWKj5q1a2zq/hmzpyEQJ6/NrXBk2LhS25uARUVFoqLTnK5mwc3iwL6mk1YbVasNslkoUDrpq+l4jNZTFisKvKK9CjddPgZirEazRgrvLFIJSpsGLSluGNvExVfa+FoFmu1WsUHH3xwol+/fg3GU+3YsUN/9913h19xxRUlb731VpuldT9+/Lj6/vvvDzl37pzKarWKpKSk/JEjR5Y5GtbWcNddd/VasmRJjoeHh8udS5NVfO2BEOIaYDFVMvN/SSlfEELMBX6WUn4hhNABq4BBVI2cbpNSplcf+0/gLsAKzJRSftXY+Rw7qD8C27ZtY/To0fW+P+GWCeT1q53wzphpJPBAIBvXbWyHGjYNx+u5dfKd56XpNWQc2sf+9ctqZSh2pnRbUFHRrikkGqKxz+hiw/F6nHU6reXmP3XCBGbUmd7cZzSyJDCwxqLoAmrud0uplWNr3FBoHkbKcJTFmQT3/Nxp+hshxC9SyqE1r5vTQX2+YYNhbXJywMmsLG1QSEjl7UlJ+X9thszc0aH8/fff77Zp0yavjz76KBPAZqtaL67L448/HtinTx/T3/72t3NNPZ+r2Gw2hg8fHjNv3ryT48ePL7VYLGzdutUjLCzM7KyDag7NUfG1OVLK/0opo6WUvaWUL1Rve7pmfUtKaZJS3iyljJRSJtR0TtXvvVB9XIwrndOfkbZIeNdeuGpb1FYGtl00zObNW0hKepe8vBn4+X1DXt4MkpLeZfPmLa1SfnNcS2ru98zPS1GoHwaikMUKwkP/D71+NosXt74ry+cbNhhWzZoVMrugQPVt9+6W2QUFqlWzZoV83kKz2EGDBlVs2LCh+5gxYyLHjh0b+cYbb3T//PPPDQMGDIjt379/7JIlS7r/8ssvug8++MBv3rx5PV977TXfQ4cOaUaNGhWVkJAQc/fdd/cCWLVqVbd+/fr1SUhIiHnllVf88vPzlQkJCTEJCQkxY8eOjQTYtWuXfvDgwbGDBg2K/cc//hEI8Oijj/a84YYbwi6//PKoTZs2eQghGD9+fCmAWq2mJlVHfn6+Zvz48RHR0dFxNQa5CQkJMcXFxYrS0lJx7bXXhg8bNixm5MiR0c1ph0adJIQQKimltbFtfwQ2b958fkqjZgqmo6PaW5J/KTExkWSSq65pY/U1PdHx1+QKjmk4Pq+e/nRmW5SZnk68n1+tbZ3JwPaPyuLFq89Lx4Hqv7NZvHhJq4yimuNaUnO//78bHsAmQ9DrNfQKDcbb2we73ZP09MwW16sua5OTA+bodLah7u52gKHu7vY5wILk5IDmjKJq2LJliyEsLMxkNBqVu3fvTlUoFPTv3z/266+/Pubt7W0bPHhw7F133XXk1ltvPTNs2LCyiRMnFl999dURb7/9dlbfvn0rp0yZ0uv77793+/e//+393nvvnRg2bJjJZrOxceNGw8CBA8uWL1+eY7NVrYjMmTMn6J133skYOHCgadSoUdGpqalFAL169TJ/+umnGVu3bnUPDAw0O6vn2bNnVbt37z5y5MgR7WOPPRbsGKD82muv+Q0dOrTsmWeeOVFzrqbiitXRbqCuvNzZtouapiTtay9aI//SxWz940rdnSWh60wGtn9U0tMz8fOrbc3l7h7fqp1AcxIrJiYmcsXll5GX54bB0P/89rKyFCIiQlutbjWczMrSDujevVZupgFubvaTWc0zi62xOurWrZv1sccey921a5e7QlE10WW320WPHj2sABEREZWZmZm1XM2PHz+umzp1ahhAWVmZIjEx0Th37txTr7zySkB5ebli+vTpBddcc41x+/btHjfccENYv379KubOnZtfUFCgHjx4sAlg4MCBZUeOHNECJCQklAGEhISY63NQj4mJqVCr1fTu3dtcXFxcaw7yyJEjuvvvv78QcDo96QoNpXz3F0IMAPRCiHghRP/qxyjArVln68Q4Ju1TKBUYQg3oR+tZvHxxh6Wp7qjpq82btzBhwlTi4sYyYcLUVpu2aQsuJofsjkx33tpERIRSVlY7tUlbdQJNYcvmzWA7TEHuaLIzLuPMma8xGvdRUbGgWiDSugSFhFTuL69tFru/vFwRFNI8s9gaN/NvvvnmeI8ePaw1nROAQqGQubm5KpPJJNLT07WhoaG1RjW9e/c2rV69+sTu3btTU1JSDt92223nIiIizGvWrMl69dVXT/7zn/8MqqysFAsWLMj99NNPM7Zs2eJ59OhRjZ+fn2Xv3r06u93Or7/+6h4bG1tZfT4AIiMjLUIINm3a5AFgtVr55ptv3AGEEOdFDFLKWuE/ffr0MX333XceULWO1RwaWoP6C7CUKgn3G8Cy6sfjwFPNOlsnpr6kfSn7f+PdpCRm5OXxjZ8fM/LyeDcpqV2+XDoi/1Jbry20Ns6S0HUWgYQjNaPhjriP2oKZMyddIB1vq07AVbZs3sy7bybx/MNW9nwexgszD6PjBlSqOU4FEq3B7UlJ+S+bTMqfy8oUFin5uaxM8bLJpLw9KSm/tc9VnaY9MiEhIeaBBx44XVclt2jRopx77rkndMSIEdGjRo2KzsjI0MyePbvn0KFDY/7yl79E3nnnnYU//PCD+5AhQ2IGDhwY6+PjY42IiDC/+OKLJ++5556wwYMHx1522WUlMTExF0znffTRR+kLFy4MGDZsWMzw4cNjcnNz1Y3Vd+bMmQU7d+70GDp0aMwVV1wR1ZxrblTFJ4S4RUq5rjmFdzYaUvHVp3ireDOL1UEhTVITtRaNKZnaQiE2YcJU8vJm1AqqNBr3ERi4hI0b2zZP5R9N8Qa/X1NzVGmdkfZS8TWHqZMnMGNiHoP6ObTxASNLPgzkvVXO27gzqfj+zDTHSaKGbUKIt4EgKeWEaqPWBCnl+61cxw5l5n0zSXoxCUZXjZzKcsqo2FaBh0bfYVlkJ82cyYKkJGZXn/O8hLoNp6/aY23hz8gfUcyRmDiuQzukumRmphMfW6eNY93JzGzbNv7r9dcbuzqktsEVmfl7wHf87txwFHiszWrUQdSXtC8uPr7Dssh2xPRVZ11buNjp7NmIW4v2SExZH6GhEaQcqdPGR8oIDf1jtfGfCVdGUP5SyrVCiNkAUkqLEKJ5K16dHGeqMQHtPopxpDlKppYwc+YkkpIWAL+nRqhaW7i73epwseIsTEGlqvoX64jRcHvTnokpnTFpykwWvJnE7LurRk4pR8pY8G4Fdz/4x2njPxuujKDKqpMVSjifJ+pPM5y9WBbhW4vExHEkJ99NYOASCgquJDBwSZstMP+RqAlTyOuXh98DfuT1qwpTMBqr/lUupvuouWpDxzQ2SpWKsLhBjL3zUVasbP0AWWeMS0zk7geTWfJhIFfeWcCSDwO5+8HO2cZduIYrI6hZwH+ACCHEd1Tlh2oNs9iLhvYexXQ0nW1t4WLAMUwBqPo7GvILfhdzXQz3UUti7zIyspgQXXv9sld0PJ9nZLVllWtxMbRxF67T6AhKSvkzMAa4AkgC4qSUv7Z1xbro4mKivjCFSnOzwmE6jJbE3oWFhZCdVnv9MjsthbCwkLaqbhd/cBrtoIQQeuBR4MHqjilECHF1m9esi3qpCaQ9eDCt0wfS/lmICIugLKf2An1ZThlaTbMMBTqM+mLvDqWkcOs2pHLyAAAgAElEQVTkOzmSmlav+MFV/8QunJOamqoZP378eUXH+vXrPR999NGerVFWDRMmTIhITU3VbNy40RAYGNh/2LBhMZdcckl0bm6u09m0jRs3Gu67775ggH79+vVpSh1qPPmaU/8aXDn4X9X7jap+fQp4sSUn7aL5OAbSqlTRnT6Q9s9Cfca8AX4BHV21JuFMbbg9N5eSSisDbpqGf2gUA26axsvL3r2gk0pMTGTOtLvZv34ZS++7hv3rlzn1T/yjsWHD54YxY26N7N17VN8xY26N3LDh8xYZxTaF5jo0AFx33XVFe/bsSb3yyiuLFy9e7NuK1Wo1XOmgoqSUL1KVIw4pZTnOM9p20Q44mnQKUWXS2VZOzV24Tn1hCgZDu31XtQrOrKOeOn2akQ89UZX6RIgGxQ+JiYl8vOp9dv2wlY9Xvf+n6JxmzVoVUlAwW9W9+7eWgoLZqlmzVoW0Zid13333BSckJMTEx8f32bFjhx6qRif33ntv8BVXXBFlsViocQ2/4oorIvPz82sZ33366aeeffr0iRs/fnxEQUHBBSOl/v37V+Tk5GjOnDmjHDt2bOSwYcNirrnmmgiTyeT0e/6zzz7zHDFiRHR8fHyfJ554IhCgIefy9evXe06YMKHe8hrClQ7KXJ2XqUbFFw44dbbtou1JT8/E3b0rkLa5tGWcTmJiIhvXbeTQ7kNsXLfxovxydqY2LAgOY/TNtcMMekXHk9GO4ofOSnLy2gCdbo7N3X2oXQg17u5D7TrdHFty8tpmDZ1rzGITEhJinnjiiWCARYsWndq9e3fqO++8k/Hyyy8H1uw7YcKE4u3btx9dtWqVd69evcx79uxJvemmm87Onz/f37HM5557rue2bdtSP/vssxMnT568YM75u+++84iJiTEtXrzYd/z48cV79uxJ7dOnT8WKFSt8nNUxMTGxdOfOnWn79+8//OWXX3YrLS0VNc7le/bsSf3hhx/Savb98MMPu61Zs8bns88+S9fpdE1OPuiKim8usAkIFkKspEos0RUU00FERISSl5dSy4qoK5DWNTo6Tudioa4S7tbJd1aJHRySR3aJH6rIyjqp7d59QC03cze3AfasrAs7AlcYPny4sSYB4Pr16z137NjhMXfu3ICtW7d6CiFQKpXnv+Qvu+yyMoBjx45pa5zHR40aVbZlyxZPxzJtNpsICAiwAfTp06e8ZvsXX3zhs2/fPvfg4ODKefPm5T3wwAPBDz74YCHAJZdcUvbDDz94hIeHXzAY+emnn/TPPvtskMViEdnZ2dpTp06p63Muf/HFF3t+++23qWp1o9Z9TnFFxbcJuBm4F/iMKpujrgWPDsLRpFNK2tSkc8vmzUydPIGxl8cxdfLF7b4NHR+n05G0ZOToKH5Ayi7xgwMhIUGV5eX7a32PlpfvV4SEBLWKfPPMmTPKr7/+2mvPnj2py5Yty3J0DK/pCKKioip3797tDrB9+3b3yMhIk2MZSqVSFhQUKE0mkzhy5Ii+ZnvNGtRnn32W4enpaY+MjKz86aef3AF++ukn96ioKKfX8PLLL/d4/fXXs3bu3Jnas2dPs5SyXufyNWvWpN9xxx3heXl5zcq34YqK7z1gAnBQSrlBSnm6OSfqonVwDKS1WtPaLJC2xhl6xsQ8vnnfjxkT83j3zYvXfRuq4nR6OYnT+aNPVdWMHAfcNI3py/9br8ihPhzFD6czj/5pxA+ukJR0e77J9LKyrOxnhZQWysp+VphMLyuTkm5vFTdzb29vm6+vr3XEiBExq1atcjrlNmnSpLPZ2dmaoUOHxnzyySc+s2fPrvUd/cwzz5y64ooroq+77rqIHj16WJyVUXUtSYVfffWV19ChQ2MOHz6sv+eee4qc7Xf99defnThxYsT1118frtfr7VC/c3n//v1Nr732WvaNN94YUVRU1GRFnytu5ldSpeC7jCo/vl+A76WUy5p6MocyfYCPgTAgA7hFSnm2zj4DgTcBT8AGvCCl/Lj6vfepmmosrt79TldisxpyM78YaUv37+Y4Q7eUtnYzv3XynQy4aVqtqaqMQ/vYv34ZH696v03O2Rkc2lvzuptyPZ0xQ3VdWsPNfMOGzw3JyWsDsrJOakNCgiqTkm7Pv/76v/5p3HZag/rczF2Z4vsGeBaYDawALgEeaWF95gBbpJRRwJbq13UpB/4mpewLjAcWCyG6Obw/W0o5sPrRFTjcylQ5Q9eJh2kHZ+i25M8ap9MRI8f6rJ/a0zy2vbj++r8av/3242PHj28/+O23Hx/r6pxaj0ZFEkKIrwEvYA/wAzBCSnmqhef9KzC6+vlKYBvwD8cdpJRpDs9PCSFOA37AuRaeuwsXqHKGrj2CutidoWt+va9YuYzPM7IICwv5U0xV1Tg8tKfIoT7rp8XLF//h27uL1sOVOcE0wApEAdFApBCipeHxAVLKXIDqv/4N7SyESAA0wHGHzS8IIX4TQrzWCvXpog6TpsxkwbsV7DtgxGq1s++AkQXvVjBpinNn6M4sqNi8eTMTbplAXEIcT774JBlZhzFW5lFW2aSZnIuWjhg51mf9lJ7R+iPwjkzx0UXb0uga1PkdhfAC/kaVeay/lFLfyP6bgUAnb/0TWCml7Oaw71kppXc95fSgaoQ1RUq502FbHlWd1nLguJRybj3H3wfcB+Dn5zdk3bo/RHJgAEpLS/Hw8Giz8o1GI2cK8zGbK9FotHT3DXAaeGo0Gik8nUWgnwK9TkGFyU5egR1f/5AmBaq2xfUYjUaycrNQGBRIhcRUboIK0HnqEEqB3WgnpEfT6tkU2vozchWj0UhB4RnMZjMajQY/3+7NumZXr+dY+jEsegtKze/iLZvZhrpCTWREZJPPWx9Go5Hc04V4+gag0eoxV1ZQUphPD39fl65vzJgxLV6D6qLlNDmjrhBCJaW0CiEeoEogMQzIBT6gaqqvQaSU9Y7jhRD5QogeUsrc6s7GqTJQCOEJfAk8WdM5VZedW/20slplOKuBeiynqhMjJiZGdvSCdWvSGRbgofUEFW2Swv6WCeT1y8OgNfDbwd8wu5vhDGh+1tD//v4Y84wEbg5k47qLU/jR3rh6PVarlaQXk9CP1tfKUJ38RHKrtkeNAMQjbhA12urCQ/vYsq7thC9dtB8NTfHtrv7rDbwB9JNSXiGlfKpaONESvgCmVD+fAnxedwchhIaquKsPpJSf1HmvR/VfAVwPHGhhfTqM+fPn08u/L+7aUHr592X+/Pltcp7m5vhpiJqps63b/oe0p1NU9LsQs7MIKhynmkwmE0qt8v+3d+7xUZV3/n8/yeQyJiGSMCQChhC5hCgChqKuloWY5dddab3UG2tspAHqpZLUFWXVxepWygKLSVyrYqlEo1bW9ac0tVYGVGy7iiJqICJgDAEkIRIukzAkmeTZP86ZcJLMZDKZmcxM8rxfr3ll5plzec6ck/M9z/P9fj9fIlMjOXNMu50FatppqONO+snf/qfBlDrw9ttvx8+cOXPSjBkzJl1++eUTP/7449j+bGfmzJmTsrOzJ2VnZ0/64Q9/OM5bvT5vRWEDSW9BEgJASvnrAOx3JbBRCFEA1KIlAiOEmAHcIaVcCNwEzAKShRC36+s5w8lfEkJY9D5+BtwRgD4GnFWrVvH48tcYE/EgGbET+a5pL48vLwHg/vvvBzTDUl5WzIED1Ywdm0FefpHX9W58qfHjDmeUlnm2mdij8XxZZ8fRsY/xTCApaXjIBFRkpGdQd6iOhLEJxMbG0tqijaBik7X//eZDzWSkB7+fgxFXFar9TTACQLrz5htvJLz8YknK4cO1MaNHp7X8822F9ddce61XkXx1dXWRS5YsSbNarXvT0tIcdXV1kbW1tdG9rdPe3t5FtcHI1q1b9yUmJnbcdNNNY7ds2RI3d+7cZpcL+oHe+uErvY2gLEKIe929fNmplPKYlPIqKeUE/W+j3v6JbpyQUpZLKaMMoeSd4eRSyhwp5RQp5UVSyjwpZZMv/fEFo4P273PnclnOZWTNzGLeTfM8OmufXFPGmIhCRsZkERFhYmRMFmMiCnlyTRngv2RZX2r8uMMYpWW+dAxPvSzYd1RSc6jWY0DFQFK0uIiG1xvYueIgzWUJNJeaaXrORNNX8exccZCG1xsoWhz8fvYFY7BHX66voUCwUwfefOONhBd/e1/a0tsbTO+WJ7ctvb3B9OJv70t78403vHLwvfbaa+deffXVJ9LS0hwAqamp7RdccEFrd/HWioqKhDlz5ozPyckZ/5vf/CZ5zpw5nQ69Sy+9dGL38hbNzc2RiYmJHQAFBQXnZ2dnT5o5c+akPXv2RAMsX748Zdq0aZnTp0/P/OCDD84xrltcXJz8k5/8JK2jo4PS0tLk7OzsSdOnT8/ctGlTAnQVrO3fr+eZ3gxUJBAPJLh5DXmMGfqzF9zHnpP72T16L1E3RfUp76PxZBMjoroI/zIiaiKNJzV7W15WzNICM9MvSsBkimD6RQksLTBTXuadYXFX4+dAdf+ntoxTZ8Ozkjj9vfE8Vm7mujubQ6zUtkCcmIo8+jjy1Itw/AlEy+XI0/cijz6OODGVcBDnH0p5Rd4Q7BIfL79YkrLsZ7HtM6bEdUSZBDOmxHUs+1ls+8svlnglFnvkyJGoUaNGddG9cyfearPZIq1W6/577rnnmMlkkgcPHjRVVlbGpKamtjmNUU5OzoTMzMyshoaGqBkzZtjff//9c+rr66N27Njx1SOPPHL44YcfHlVbW2t66623zt2xY8eel156qfqBBx4Y49z3qlWrLFVVVeYXXnihtr6+3rRx48akjz/++Ktt27bt/fWvf32eczmnYK1vv6J7epviO+IuMk6hYdR2W110DXH/MJy45CSOHD3MhVmZHvM+khLj+a5pLyNjsjrbvmvbS1KiFiWlJctauqzTH9/O2IwMKuvqmG6IaqpsbmZsRv+ntoxTZ6AZKVNcFOd2mGg4buGeJSvIyHiJoqK8oJaPLy4uZ8SIRxk3bjpffPElraZpQBbR0aVcfPHz2GwTKS4uDfkS98Xrimk9v42619s5c/Q4sSOjSJraofKKGJipRHccPlwbM3Vychf5oKmTz+k4fLjWq9SXUaNGte7bt6+Lz+nrr7+OcSXeOm3atOaICG1sMX/+/Mbnn38+6fjx46bbbrvtmHNd5xTfww8/nPLMM88kRUVFyezs7GaAOXPmNC9fvnz0vn37Yi688MLTkZGRZGVltZ46dSoS4MyZMxHPPvvsyE8++eRLgD179kTv37/ffNlll00CaGxs7LQbTsHaQNHbCCr0HyuDjNFBe/RwNTGj4ok1x3HmTN8c8Pfcl8+hjhKOtlTR0eHgaEsVhzpKuOc+LX5ES5btev7d+XZ6m/5xVeNntd1OXlH/p7ZcFehreL2B+tqR1NUtwWJ5JySKKRrLk5w5c4bIyDgiI6dw5oxWniRcSpV88Xkl31qTaT35CFHDfk/ryUf41prMF59Xel55ABiq04+jR6e1fP7l6S730c+/PB0xenSaV2KxN9xww8m33nrr3NraWhNAfX195JgxY9pcibc6jRPA/PnzT7z99tuJ27ZtS7j22mtPdd/u8OHD2xsbG02ZmZktO3bsiAN499134zIyMlomTJjQsmvXrnPa29upqqqKHjZsmAMgNja24+mnn665/vrrM06fPi0yMzNbMzMzT3/44Ydfbd++/avdu3dXObcfKN+Tk95GUKH9SBkCGB20I0dncPLbOkgWxMb2zQHvDIR4cs0Kak42kZQYz0P35Xe25+UXsfrpQpYWaCOnyj3NrF5vp+DOrobFGLBg+YGFukPa9E8JWtTUVbm5UFJCaXExB6qrGZuRQUGR98EWRnJzcymhRNNaq9C01kyxqThGPNpZCkT7uzSoIxRjeZLY2FhaW5uB/cTGauVJwqVUyZlT8Ujxc0yxmQCYYjNpafk5Z04Fv7i1p+tvMPPPtxXWr3z2vrRlP9NGTp9/eTpi5bNnIm9bWHjYm+2kpKS0l5aW1v74xz++ACAqKqrjP//zPw89+OCDozdu3Jg0cuTItscff7zOarV2SUIzm80yPT291Ww2d5hMZ2/nOTk5EyIjI4mJiel47bXXqlNSUtrLysrasrOzJ0VGRvLCCy98k5aW5rj66qtPZGdnZwohKC0t7Qx9nDt3bvPp06frr7vuuoxNmzZV33jjjY0zZ86cFBkZKSdPnmzfsGHDQR9/uj7R50TdwYC/xWKN9YVOHmtgw9M/53TmCTKmnk/U6ajOvA9f/kl7i+Jz5qR05vqMPTuFZztgI3VXKr9YXES5wTDl+WiYeiMrKweL5R0iIs7+o3R0OGhomEtV1VaP63snRLqF4uJyqqsPkJExtnMqsfvvNXnKLMrKPsNsXkpb2xj27n0feJnx4+8gJsaC3b46IGrw/Tmm3hg79lIaTj5B5PBoImMiaW9pp/14K5bEX3DgwEe+d7SPvPfee7Q7HF2uqS9PNeDIbXd5/QUqv8xf+EMs1h9RfL5w6623pt11110NV1xxhX2g9ulvvE7UVXjGqO1WU1NLZuJ4Wg6f4tRXpzg//XyKHvRdvbl78ThXVNdUY/lBV19V3Jg4Kl/6wu/h5b0xUMUUrdYtFBaux2xeisUyhbq6SgoLV5Ofv4PPPipjaYGZKZkWKvfUsXp9Gfn5+WzbVkp19QGmTo1DylZstpWkpo6lqChwxsmfTJmSxd69rRw7Ec+ZY3ZiY80kj2xi4sQszyv7EZvNxivLlnW5pn62u5LWmRMxxk7FjYmjumJo5Jddc+21toE0SEby8vLSmpqaIsPZOPWGMlA+EkwHrZPuAQugTS/GnzrD0tEjO4MjpicksBQoLS7uYaD8kW9VVJTHwoWPULPvVhxtYzBFHSJ++EusXFno8zEaKS4ux2xe2mMqsex3P6J8bUqnooUW9Qilr2yjoiK0n+Q9UVSUR2HhOsalLSUuLpvm5krs9nUUFfm/uLXVauW5snJqdEHdRfl5ndf4sfr6zpQF0K6pf4mN5aE/HCR5yojObaj8soGhvLw8/DKSvcDrAlKK0MNVwIL9PTvx0eY+hZf7K99KIBknP2eyeIhR4jYmi4cYJz9H4N9pZGPgg5O4uCk02Rr7XCIk3Jz6xkKVDQ1zA1ao0lNxw9aWlh7X1Jy0dNoO9bz+wiW/rBvtzc3NsUPJ9RFMpJQ0NzfHotX864EaQQ0CXAUsFD1YxEvFxX0KLzfmW4Fh5FHWc6TVG+XFxay1WJieYdDks9lcjti8ofvobtiwKJqbe04lxickUbmn2WOJkHB16ufmXuUXg9TbaNmYOgGQnjWdnNvv5bmyp8jNzSU6JobK5uYu19ThqCimTJkOu0Z0uf5AMG/egh5+wlDAOUqMMJkuNLa3t7f/y9dff71MSpmCimQeCKQQor69vf1hV18qAzVIcDXVKIDVhYUsBRpaW3jGdpDdrXYmWkxssVo7b0r+yrc6UF3NFEu37fiYEOwc3Rn9So+UfMfne+4F1hIXN0Wf7lpN/k/vYfX6Mo9Rj0O5VpGr33P104WA5pesqallngttuzd1bbvklBRW2+0sRTu3lc3NrLbb+UU3v6Y7P2FJCUE3Usbgpnf/8qHD+N0ll1zyBvBGkLqm6Iaa4gsCVusW5s1bQFZWDvPmLfBLnpCrmjhX5eZSUFLCMlMkv2QvtxZJ/vJmJo/d4+gyhedNvlVvjM3IoLL57HaOHz/Om599xrcHD/ZboNaVmsajhSOYkmXvMd11//33U3BnCaWvpDL39ga3ihYDWaso1PCkTuJMnTBi1LZLSEigoKSE0tRU5jY0UJqaSoHBODlFiW++biH1h67B4RhLRISJhITpmM1LKS4uH9gDdkG3UaKaywth1AhqgAnEk6XxiXDexCkc3FvJyqfWAtrIqrysmCXzp3ROfVlG0mUKr6/5Vp7IKyrqHLGNaWvj/b17eRkoHT8eSz8jCN2N7k43N7B12/M9lu9L1KO7oJKh4NT3NFpelJ/HyqfWknP7vZyvX0tbN6xl2d1ngzHc/cZGUeIPOwRxciwH9+2HCeMZPjwpZJKiXY0SFaHJkB1BBWIUY2TVqlWMPO9CYsxjGXne2TIaxgg0fz1ZGp8II00mg99A26Z2U3IfPHBVbm6fRh6ecI7YSlNT+X51NS/HxHD3xInMHTGi3wK1/R3d9VZl1V1QSX+c+oGu5urv69TT7+mLtp1RlPiC2GgQ35AWEUH9wUNA6CRFuxolKkKTITmCCvT8+KpVq1j+6GtEJD5IbNpEmmx7Wf6oVkajuvoAFkvPCDRfniw9+Q20m1Jdr8EDfRl59AXndnKysthosWAyyLL0xx/Vn9GdpxGlu6ASb/1PnvbjK4G4Tvvye/Y3dcLogywaE0vh/ieJjbgHuz0Nm20ndvvqgITFe4txlIgKhAhphuQIyttRzBarlQW3zSNnVhYLbvPsS1nzRBkRiYXEJGplNGISs4hILGTNE2VkZIylubnr05uvT5ae/AZ5+UWsXm9n5y4bDkfHgJTD6O6Pgv4J1PZndOdpRAnaTbhiYwVV26uo2FjRrxtyX/bjC4EYbftrtOwK4znPTRpOyfjTnBP5bxCZH7Cw+P5gHCUeO/j1kHxIDxeG5MnxZhTjKerJFSdPNBGb1rWMRlTCRE7WNukJl6uBpV0i0Hx5svTkN9D6WUKpIbS44M7ASR5BV3+UMdqroB8Ctd6O7jyNKP1FoPcTiNE2+G+03J3u5zw5ysT5o2P4ZYCUS3zBOUoU5WW7g90XhXuGpIHyRpKnPzlCiefGc/K710mO+wui/TAycjTHmq8k8dx4PeESiotLDfkhvj1ZGiWX3tSz/7v7DQJ1U3JHIARq+0qgqqx2zx8yx5gCWs11oKSjvMWd0oS/z7k7vUXFEEJKOWReEydOlFJKuXmzVWZlzZfZ2Z/KWbPaZHb2pzIra77cvNkquzPn+5Nl29ezpDwwu/PV9vUsOef7k3ss62TRooVyamasfG7FOLnllUvkcyvGyamZsXLRooVu1+kP7777rl+3F2z8dTybN2+WV117i3z8je3yhSq7fPyN7fKqa2+Rmzdv7vc2rZs3y/nXZ8lP/5gt276eJT/9Y7b84dyxcvoVs3vdjy/H5M11OlBs2rTJ77+tKwbq2IFPZAjcm9TL9WtI+qC6y8aYTP/GmPhqViy5p0e+Tn+iyNrsR1ixNJnM9Hoi2naTmV7PiqXJtNmP+KX/zlyTvbt39zm/yF1Uob8IJemg3iLRXPkT+9J3d/lYoxLsAavmOlDyRt7Q8N2xgPrdnATC/6YIP4IyxSeESAJeBdKBGuAmKeVxF8u1A07vf62U8kd6+zjg90AS8Clwm5Sytfv6veGUjTHmbrhS/O5PFNmBA9XMnX0BJtNZ++9wdLBmg++JoMb+njSZ+F4f8ot6iyp01p7yhVCUDnIVieZSlWL1Qj6vl1iut/Ta997ysSr+tCGAx+EfeSN/0dra2lmk00kg/HuB8r8pwotgjaCWAVuklBOALfpnV9illNP0148M7f8BPKGvfxzod4SBMXfDFBHRI1+nP1FP/lJm8NRfhOhTflFvUYX+wCgdFBEZQcLYBMyzzRSv8y7nqb/0NRfJ1Sjo1h8eJyr2pMe+e3tOnflLu3fvDUie3UDgarQZHR3da8SovwhEtKsi/AiWgboGcN4dy4Br+7qiEEIAOcBr/Vm/Oweqqz0qfl+Vm8vzL1awdVsVz79Y4dHpG8iw7r70tzsnTzQRleAiqvBEk8/9geBKB3lS3zbiKmF5TEobHafburS56rs359SZv1RXtwSTaSJ1dUsoLFwfVkbKncJ93Dlmtm5YS03VTtodDmqqdrJ1w1oW5ef5df9FRXnY7aux2XbS0eEw5FH5dz+K0CYoFXWFECeklOcaPh+XUg53sZwD+AxwACullG8IIUYAH0opx+vLnA/8SUp5kZt9LQYWA1gsluyNGzd2+b5m/35S2towR0Z2ttnb26mPiiJ9/Pguy9psNo7V19Pa0kJ0TAzJKSkkGFSdeyz7XT2trS1ER8eQPML9st5g7G9TUhLxjY1u++vk8y9208F5iEhzZ5tstxPBEaZefKHLdbxhf/V+2sxtREaf/Q3bW9uJskcxPsN1n1zR1NREfHy85wUNVH9TwzlJI4mOPaezrfXMaU43HiVjXHqXZWu+2U9Kchvm2LP9PH7yNIePQbTl7Pru+t7Xc7p/fw1tbSlERppJSmqisTGe9nY7UVH1jB+f3mP5gcZms1Fff4yWllZiYqJJSUnucRyufiv7mXZOt1mIjo6h4btjtLa2Eh0djWVEz/UHqp/92aax7wU/XbBXSjnJT11W+JmA+aCEEFYg1cVXD3mxmTQp5bdCiAxgqxCiEjjlYjm3VlZKuQ5YB1rJ9+7lt7c4HGd9UHq+zjq7nYKSki6lurdYrWcriRrzegY4x8PYXxYtIvG551z218j27dtZ/uhKIhILiUqYSJttLx0nS3jskRv8Uo7c4XB0+qDixsTRfKi5s9y9N9vvT3n0B/4th5+ve4sO09lLud3h4NnF/8RHH3QtM7/F4TD4oDR/4trfftfpg/Kl70buuisHi+UdIiJMzJ//Hq+8MpuODgcNDXOpqtrqeQMBxGrdwrJlr2A2d83D6x58kbP8Lt7ZYOnhR/3d5ptY/LO7g9F1n7FarZT87uUu+YJRMWb/zk0q/ErADJSU0u1dWwhRL4Q4T0p5RAhxHnDUzTa+1f9WCyHeA6YD/wOcK4QwSSkdwBjgW2/7t8VqpVzP14gbNoxlUtLW0NCZuyGBm2+7vTPXo3nfHv69WyVRd9VpA4kx1+Ryh4P/TU31mGviDIRY88QKTtY2kXhuPPc9ku+XAAlwX49qIAIkvMl5cpWwXLh0JRL82vdQzV8C99WIi4tLuxgod/JY0dExA91lv+Gq1lV88siOIHdL0RvBiG0HVgPL9PfLgFUulhkOxOjvRwD7gCz9838Dt+jvnzirUwUAABXcSURBVAHu6st+nXlQ1s2b5fysLPlpdrZsmzVLfpqdLednZUmrnsvhKo8mI36YrL/4Yilnz+58tc2aJedMdp8PFWiGch7U5s2b5dU3Xi3TstJkcsYoueDR//IqL2fz5s3yprx8OfPKOfKmvHy/5vEYc3ieeebdkMhfcjJ58hw5a1ab8TKWs2a1ycmT53RZzlXe1/zrs+SmTZuC1HPfmXnlHPlClV2+tLet82VJn2STIZDvo16uX8FSklgJbBRCFAC1wI0AQogZwB1SyoXAZOBZIUQHWjDHSilllb7+A8DvhRC/AnYC673ZeZdIOHqOhlw9aY3KnMK26j3ckJTUuZ3+aMspfMcY1p7+g3SO7D7C/7z0EH/77+eYOm2ax1ykQIu8GtVCHI7LSU39X5/VQvxFX0d37uSxIk3BumX4jqvRtqP1zJDMBQ0XgnK1SSmPAT3+W6WUnwAL9fd/A1wWbZFSVgMz+7t/T5VfXWmsXXHng6z5+Y1cYLP5rC2n8I3uFXFHXzyaYYnDSN2VyqsvbvC4vqey5v7Amb/03nvvcffdi/2yTX/gjRakK3ms9957b2A6GgBcaVY2HTuqDFQIMyRPjielbVfq4MOSLcT+3RVuK4kqBg5fw9prampdJpvW+DnZtDeCpbwRiuoUA4UrhZG2FvvAnXSF14TveN0HPCltu1MHf3jZ/UFTRhiMdBcdzbvpx31az9eKuIESk+0rwVbeCDV1ioGku8LIxvIyWxC7o/DAkBxBGSu/GkdDEsG8eQtYsmQFTUds/PnJh7torKF/H6gqvEMJVwm2R45+16eRhK8VcRfl5w1Isqk7fFXe8LY+WW+sWrWKUWOmYz7nAkaNme53jUaFwheG5AgKes6vd69e2txcie3I2fyQQFfhHWq48gNFVDXwq5WreMngmM/L7xlC72tYe1/KkwSS6ppqLD/o6gONGxNHdYXnKcr+1Cdzx6pVq3jsVxUkjiwl/aKZnGrczmO/0tIU/ZWCoFD4wpA1UN3xlB/S1/wRRd9wFYjS7nBwpvGvLLl3ssebb3/LkvtrfV/wZYqyP/XJ3FFc+gqJI0tJHHEFgP73cYpLlygDpQgJhuQUnyuqqw8QF+dePdnT98EilMpceIOrQJSmxiPc99OuYq5LC8yUlw2M6OxA4csUpSs9wSmZcRw44L3u4fHGUwxL6hoMOyxpJscbXYm1KBQDjzJQOp7Uk0NRXdlms1G4opC6i+qw3GGh7iLN2W40Uv70V/gTV36gthY7sy4b3WW5/t58fcWpRu7O3+jqwcDTOk5yc3MpebCE1F2pNDzTQOquVEoe7FuAhD+V8ocnDeNU4/YubacatzM8aZjX21IoAoEyUDqe1JNDUV25vqG+V2e7O0XqUDBSrkJ+Y2NiOXw0qsty/ipT4g1GNXKL5Z0eauTOKDzjg0HBfQUsXFjSYx2bzXWQWG5uLhUbK6jaXkXFxoo+Tzf6Uym/aMl8Th59iJPf/RXZ0cbJ7/7KyaMPUbRkvtfbCgbhOnug6DvKB6VjzP6vrj5ARsbYLtn/nr4PBi2tLa7zgXRnuz/9FYGgux/oD3/4A6vX270qDhkIPPojuyUKJ4xNYL/9BPLkrYwb13Wd+vrP/do3dwoP/TmfTj9TcekSanadYnjSMJY/PD8s/E/BDtVXDAzKQBnwlB8SavkjMdExNB9qdutsd1cFNhhTZn0hISFBKw7ph5uvL3iq5uoqCq/N1oF0jOmxTkvLx37vnyuFh/5y//33h4VB6o6rhwRma+3KQA0elIEKY1IsKdjL7TCbLqUiih7URhzuFKkHesrMG/x58+0vnvTqXEXhRSVEIO2HumynubmSmJjogen0EMOXUH1F+KB8UCFOb473hISEXp3t/vRXhGqwRSDw6I90EYWXaG5jeOJLPdZJSUke8P5vsVpZMG8eOVlZLJg3OM9VRnoGzYe6Bot4oyaiCA/UCCqE6UtycG/5PP7yV/gzOTQc8OyP7JkovHLNSkD0WMdkiux9Z35mi9V6tgCnxUJlXR2rCwthkOlGFi0uonBFodvZA8XgICgl34PFpEmT5FdffRXsbvSZefMWUFe3pMtUk822k9TUUioqnu9XBdr+sOC2eSyZ33WqcOcuG6WvpPL8ixV+289AHc9AMtDHtGDePJbU1XWWkgHYabNRmprK8xW+nytfj8dq3UJxcbnBiOf1269rtVq1h4QaXU1ksfeFJoUQO6SUM/rVAUXAUSOoEMaTs36gCLdgi3Cnu4juovy8Pt94PZWSCSb+lgsLphqIYmBQPqgQJlSSg/2ZHKroHVciuiufWt/nHB9PpWSCiTF8PyLCRELCdMzmpRQXl/t9X0PJZzqYUQYqhAmV5GB/BlsoescoohtpMhmKKfbtJp5XVMRqu52dNhuOjg522mysttvJC4HCmgMlFxbKCeoK71AGqp8MxBNasIvLOaPBHl+yhGOH41n+pIm5tzdQ+koqBXcOLqd7qOBrMUV3pWRC4Vz1NiPgz8hDY4L6YNZ0HAoExQclhEgCXgXSgRrgJinl8W7LzAGeMDRlArdIKd8QQmwA/h44qX93u5TyswB3u5OBjGoLVnJwj2iw5mZW19opKikNiZvdYMUfxRRDIZfMFe7Kzc+aNc2nyMMtVivlxcUcqK5mbEYGVUcqmZKZ3mUZ5TMNT4I1gloGbJFSTgC26J+7IKV8V0o5TUo5DcgBTgPvGBZZ6vx+II0TDI0ntPLiYpaazUxPSMAUEcH0hASWms2UF/f9GJVWmvcEu5hiIHE3I/Dltm39vtacD1JL6up4x2JhSV0dZxoa+ev2I12WUz7T8CRYUXzXALP192XAe8ADvSx/A/AnKeXpwHarb/gzqs0fobKBwNdoMKWV1j+CXUwx0LiaEVix5J5+X2vGBymA6QkJ3HkqleVrjlD82LCgajoqfCcoeVBCiBNSynMNn49LKYf3svxWYK2UskL/vAG4HGhBH4FJKVvcrLsYWAxgsViyN27c6HP/a77ZT0pyG+bYs0mY9jPt1B+LIn3c+D5vx2azUXukloiECCKiI+ho7aDD1kHaeWkkGPJY3NHU1ER8fHy/jsETNfv3k9LWhjnScIzt7dRHRZE+3vMx7q/eT5u5jcjos+u3t7YTZY9ifIbr9QN5PMFisB1TII7Hl2tt7+7dTDSZQIizjVJS1drKOfFmWltbiI6OIXlEisv/qTlz5qg8qBAmYCMoIYQVSHXx1UNebuc8YArwZ0PzvwJ1QDSwDm309Zir9aWU6/RlmDRpkvRH0uQWh8Pgg9Ke0NaV2Sm4s8SrJMZ5N82j7qI6EmISoFVrs9XZSLWmUrHRc1JlIJNAtzgcZ/0CcXFUNjezzm6noKRvx3jX/XdhucNCROvZWeSO9g4anmmganuVy3X8eTyhMjIdbMnHgTgeX661sjVr+J6LxOSP/ZSYrAguAfNBSSlzpZQXuXi9CdTrhsdpgI72sqmbgP8vpWwzbPuI1GgBngdmul07AFyVm6upbr+S6lNUW3VNtetyGTXBd+b6Gg0WTK00V/WauhdyVIQOvlxroRxWr/CdYPmgNgH5wEr975u9LDsfbcTUiRDiPCnlESGEAK4FdgWqo+7wR6RURnoGe7d9RcSBRtoazxCVFEvH2CQmpk/yUy99w5djDKZWmirFEH7091q7KjcXSkooNUTxFRQNfIkWRWAIloFaCWwUQhQAtcCNAEKIGcAdUsqF+ud04Hzg/W7rvySEsAAC+Ay4Y2C67V9mzZjF0VetFN4ZwcTJUez90k7J0weZdfOiYHfNZ1wJqhY9ODDTbKoUw9AiVMPqFb4TFAMlpTwG9EjukVJ+Aiw0fK4BRrtYLieQ/RsovqzcxqqlaSQlHsNef4Ypo82sWppM2R+3AeFXRK47wdJKc1WvSZViUCjCDyUWG0QOHKjmypnnYTKdtcEORweP/UY96fuCKsWgUAwOlNRREFEirIEhNze310KOivBiKBRgVLhGjaCCSF5+EaufLmRpASqh0AfchZQrgxT+DJUCjArXqBFUEPFXuPpQRoWUD278IbmlCF/UCCrIqAgk31Ah5YObUC7AqAg8agSlCGtCOdlZ4TuhXIBREXiUgVKENcFUrFAEHqUUMbRRBkoR1hQtLsL+nh3bARsd7R3YDti0kPLF6gY2GAjlAoyKwKN8UIqwJpiKFeFEqIjn9gflpx26KAPlR7ZYrZSXFXPgQDVjx2aQl680wQYCFVLeO6o2lyJcUVN8fsJZBn7J/Dre2WBhyfw61j9dqJIKFUHHGOkYERlBwtgEzLPNFK9TodqK0EYZKD8xFMrAK8ITFemoCFeUgfITWhn4rjeB/paBVyj8iYp0VIQrykD5CaWrpwhVVKSjIlxRBspP5OUXsXq9nZ27bDgcHezcZWP1ejt5+eomoAguSjxXEa6oKD4/oUXrlVBqiOIruFNF8SlCAxXpqAhHlIHyI+Gcr2G1WnmurJyamlrS09NYlJ+nbmgKhSKoKAOlwGq1svKp9eTcfi/zJk7h4N5KVj61FkAZKYVCETSUD0rBc2Xl5Nx+L+lZ04k0mUjPmk7O7ffyXFl5sLumUCiGMEExUEKIG4UQu4UQHUKIGb0s9wMhxFdCiP1CiGWG9nFCiI+EEPuEEK8KIaIHpueDk5qaWs6fOKVL2/kTp1BTUxukHikUCkXwRlC7gOuBbe4WEEJEAk8B/whkAfOFEFn61/8BPCGlnAAcBwoC293BTXp6Ggf3VnZpO7i3kvT0tCD1SKFQKIJkoKSUX0opv/Kw2Exgv5SyWkrZCvweuEYIIYAc4DV9uTLg2sD1dvCzKD+PrRvWUlO1k3aHg5qqnWzdsJZF+XnB7ppCoRjChHKQxGjgoOHzIeBSIBk4IaV0GNpHu9uIEGIxsFj/2CKE2BWAvgaLEcB3ftpWwrt/eC0FiAFaOtod9Vve+L3NT9vuK/48nlBhsB3TYDueScHugMI9ATNQQggrkOriq4eklG/2ZRMu2mQv7S6RUq4D1ul9+kRK6dbnFW6o4wl9BtsxDcbjCXYfFO4JmIGSUvoan3wION/weQzwLdrT27lCCJM+inK2KxQKhWIQEcph5h8DE/SIvWjgFmCTlFIC7wI36MvlA30ZkSkUCoUijAhWmPl1QohDwOXAH4UQf9bbRwkh3gLQR0c/B/4MfAlslFLu1jfxAHCvEGI/mk9qfR93vc6PhxEKqOMJfQbbManjUQwYQhuQKBQKhUIRWoTyFJ9CoVAohjDKQCkUCoUiJBlUBkoI8TshxFFjrpMQIkkIsVmXRdoshBiutwshRKkuo/SFEOKS4PXcM0KIX+jyULuEEK8IIWLDXfJJCHGuEOI1IcQeIcSXQojL3Z2vcEEIESmE2CmEqNA/h+U5EkKcL4R4Vz8vu4UQhXp7WJ8fI+6k1BShw6AyUMAG4Afd2pYBW3RZpC36Z9AklCbor8XA0wPUR68RQowGlgAzpJQXAZFoUY3hLvlUArwtpcwEpqIFw7g7X+FCIdpxOAnXc+QA/kVKORm4DLhblxoL9/MDeJRSU4QIg8pASSm3AY3dmq9Bk0OCrrJI1wAvSI0P0XKrzhuYnvYLE2AWQpiAc4AjhLHkkxBiGDALPQJTStkqpTyB+/MV8gghxgBXA7/VP4etLJeU8oiU8lP9vQ3N6I4mjM9PN1xKqQW5T4puDCoD5YYUKeUR0P7pgJF6uyspJbeSScFESnkYWAPUohmmk8AOvJB8CkEygAbgeX1K7LdCiDjcn69woBi4H+jQP3slyxWqCCHSgenAR4T3+TESNv//Q5mhYKDc4ZVkUjDR5/mvAcYBo4A4tKmJ7oRk/91gAi4BnpZSTgeaCdPpIgAhxDzgqJRyh7HZxaLhdI4QQsQD/wMUSSlPBbs/fiTsz81QYCgYqHrn1J3+96je7k5KKRTJBb6RUjZIKduA14G/Q5d80pcJ5f674hBwSEr5kf75NTSD5e58hTpXAD8SQtSgTRfloI2owvYcCSGi0IzTS1LK1/XmcD0/3Qmn//8hy1AwUJvQ5JCgqyzSJuAnejTfZcBJ59RFCFILXCaEOEf3a1wFVBHGkk9SyjrgoBDCqSbtPCZ35yukkVL+q5RyjJQyHS2AZauU8lbC9Bzp19l64Esp5VrDV2F5flzgUkotyH1SdGNQKUkIIV4BZqOVBKgHHgHeADYCaWg3+hullI36P+B/oUX9nQYWSClDVtlYCPEocDNadNVOYCHanPnvgSS9LU9K2RK0TnqJEGIaWkBBNFANLEB7aOpxvoLWyX4ghJgN3CelnCeEyCAMz5EQ4krgA6CSsz61B9H8UGF9fpwIIf4JbZQbCfxOSvl4kLuk6MagMlAKhUKhGDwMhSk+hUKhUIQhykApFAqFIiRRBkqhUCgUIYkyUAqFQqEISZSBUigUCkVIYvK8iEIRWIQQyWjCowCpQDuaDBLATF0rzV/7+inwlp6H5c16fwSGSSm/76++KBSK3lEGShF0pJTHgGkAQohfAk1SyjUB2t1PgU+BPhso3YBOAc4IIdKklLUB6ptCoTCgpvgUIYsQ4kEhxF36+yeFEO/o7/+fEGKD/v4fhRD/K4T4VK+3FKe3f08I8b4QYocQ4k9CiBQhxM1ohvBVIcRnQohoIcRqIUSVXhPsP9x05Qa0hO9X0ZKlnf2boNd62i6E+HchxAm9PUIIsVZotbsqhRA3uNmuQqHoBWWgFKHMNsA5pXYJZ3XtrgQ+EEKMRBOYvUpKeQnwBVAohIhBqzX1YyllNlAO/LuU8lXgM+BmKeU0YDjwT8CFUsqLgV+76cd84BX9Nd/Q/iSwRko5E025xMmNaDWGpgL/ADyh91WhUHiBmuJThDIfA98TQpwLNAH70co+fB94EU0wNwv4m6ZcRTTwF2AycCFg1dsj0cRBu9OIJuPznO5jqui+gF4sMg34UEop9Yq5mVLKPcClaAYO4GXgV/r7K4GXpZTtQJ0Q4i/ADOAtH34LhWLIoQyUImSRUrYIIb4FfgL8FdiLJiqbJqXcK4S4EK0i723G9YQQ04EvPAU0SCnbhBAz0EY5twB3AnO7LXYzWl2nb3Rjl6gv+8teNu2qlINCofASNcWnCHW2Affpfz8A7kYr1gjwN+DvdUFWhBBxQogJaKroo4UQM/X2aN2YAdiABL09AS0yrwL4BdrorDvzgVwpZbquVD6Ts9N824Hr9Pe3dOvzLfpoKwWtFEfIChErFKGKMlCKUOcDIAX4SK8s3Ka3IaWsBwrQgh4+RzNYE3W18BuAtXr7TrTpOIDngd8KIT5D80H9UV9mK3CvccdCiAvQwt47jYuUch/QIoTIBpYADwghtqNVlj2pL/YasAf4HLAC90opw7VukkIRNJSauULRT/SIwdO6byoPuE5K+eNg90uhGCwoH5RC0X++BxQLISKA42j1rBQKhZ9QIyiFQqFQhCTKB6VQKBSKkEQZKIVCoVCEJMpAKRQKhSIkUQZKoVAoFCGJMlAKhUKhCEn+D0y/qKq6kDyYAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# IB Creating Sentiment Analysis for Top Ten Influences Scatter Plot\n", + "\n", + "# Separate media_user_results_df Dataset into 5 parts/ datasets by \"Media Source\"\n", + "tw1_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@Noahpinion\"] \n", + "tw2_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@BDUTT\"] \n", + "# For each of media sources following the first one in the media dataset reset index to 0-99\n", + "# in order to plot in the common area\n", + "tw2_tweet_data_df = tw2_tweet_data_df.reset_index(drop=True)\n", + "tw3_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@ProfessorChic\"] \n", + "tw3_tweet_data_df = tw3_tweet_data_df.reset_index(drop=True)\n", + "tw4_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@haroldpollack\"] \n", + "tw4_tweet_data_df = tw4_tweet_data_df.reset_index(drop=True)\n", + "tw5_tweet_data_df = Twitters_overall_results_df[Twitters_overall_results_df['Twitter'] == \"@CoryBooker\"] \n", + "tw5_tweet_data_df = tw5_tweet_data_df.reset_index(drop=True)\n", + "\n", + "# Get the values for each part of the scatter plot by \"Twitter\"\n", + "# TW1\n", + "# Get values for X axis\n", + "tw1_tweet_ago_data = tw1_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw1_tweet_polarity_data = tw1_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW2\n", + "# Get values for X axis\n", + "tw2_tweet_ago_data = tw2_tweet_data_df.index \n", + "# Get values for Y axis\n", + "tw2_tweet_polarity_data = tw2_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW3\n", + "# Get values for X axis\n", + "tw3_tweet_ago_data = tw3_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw3_tweet_polarity_data = tw3_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW4\n", + "# Get values for X axis\n", + "tw4_tweet_ago_data = tw4_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw4_tweet_polarity_data = tw4_tweet_data_df[\"Compound\"] \n", + "####################################################################\n", + "# TW5\n", + "# Get values for X axis\n", + "tw5_tweet_ago_data = tw5_tweet_data_df.index\n", + "# Get values for Y axis\n", + "tw5_tweet_polarity_data = tw5_tweet_data_df[\"Compound\"] \n", + "###################################################################\n", + "\n", + "# Organize the layout for the scatter plot\n", + "plt.title(\"Sentiment Analysis of Top 5 Twitters Tweets\", Fontsize= 12 )\n", + "# Labels for the scatter plot circles for each Twitter\n", + "labels = [\"Noahpinion\" \"BDUTT\" \"ProfessorChic\" \"HaroldPollack\" \"CoryBooker\"]\n", + "# Colors for the scatter plot circles for each Twitter\n", + "colors = [\"lightskyblue\",\"green\",\"red\", \"blue\", \"gold\"]\n", + "\n", + "# Define X and Y of the scatter plot\n", + "plt.xlabel(\"Tweets Ago\")\n", + "plt.ylabel(\"Tweet Polarity\")\n", + "\n", + "# Define X and Y limits\n", + "plt.xlim(100, 0)\n", + "plt.ylim( -1.0, 1.0 )\n", + "\n", + "# Writing data to the same Scatter Plot 5 times, for each Twitter \n", + "# ( \"Noahpinion\" \"BDUTT\" \"ProfessorChic\" \"HaroldPollack\" \"CoryBooker\")\n", + "plt.scatter( tw1_tweet_ago_data, tw1_tweet_polarity_data, c=\"lightskyblue\", edgecolor=\"black\", \n", + " linewidths=1, alpha =0.75, marker='o', label=\"Noahpinion\")\n", + "plt.scatter( tw2_tweet_ago_data, tw2_tweet_polarity_data, c=\"green\", edgecolor=\"black\", \\\n", + " linewidths=1, alpha=0.75, marker='o', label=\"BDUTT\")\n", + "plt.scatter( tw3_tweet_ago_data, tw3_tweet_polarity_data, c=\"red\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"ProfessorChic\")\n", + "plt.scatter( tw4_tweet_ago_data, tw4_tweet_polarity_data, c=\"blue\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"HaroldPollack\")\n", + "plt.scatter( tw5_tweet_ago_data, tw5_tweet_polarity_data, c=\"gold\", edgecolor=\"black\", \n", + " linewidths=1, alpha=0.75, marker='o', label=\"CoryBooker\")\n", + " \n", + "# Create the legend of the Scatter plot\n", + "legend = plt.legend(fontsize=\"small\", loc=\"center left\", title=\"Top 5 Influencers\", bbox_to_anchor=(1, 0.5))\n", + "plt.tight_layout()\n", + "\n", + "plt.grid(True)\n", + "\n", + "# Save the figure with the Scatter Plot\n", + "plt.savefig(\"OutPut/TwittersSentimentsTweeterPolarityScatterPlot.png\")\n", + "\n", + "# Show the Scatter Plot\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "# # Create dataframe from the Dictionery item of the Sentiment Array\n", + "# Sentiment_DF = pd.DataFrame.from_dict(Sentiment_array)\n", + "\n", + "# # Remove the '@' from the 'influence' column in the data frame\n", + "# Sentiment_DF[\"Influencers\"] = Sentiment_DF[\"Influencers\"].map(lambda x: x.lstrip('@'))\n", + "\n", + "# # Re_arrang the columns and save into a CSV file\n", + "# Sentiment_DF = Sentiment_DF[[\"Influencers\", \"Date\", \"Tweet Text\"\n", + "# , \"Compound\", \"Positive\", \"Negative\"\n", + "# , \"Neutral\", \"Tweets Ago\"\n", + "# ]]\n", + "\n", + "# # Store output in a .CSV File\n", + "# Sentiment_DF.to_csv(\"influencer_tweets_Analysis.csv\")\n", + "\n", + "# # Sentiment_DF" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "# # Calculate the mean for each Influencers & store into a dataframe\n", + "# Influencers_Comp_Mean = Sentiment_DF.groupby(\"Influencers\").mean()[\"Compound\"].to_frame()\n", + "\n", + "# #Reset the index \n", + "# Influencers_Comp_Mean.reset_index(inplace=True)\n", + "\n", + "# Influencers_Comp_Mean" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "# # Set the values for x_axis & y_axis\n", + "# x_axis = Influencers_Comp_Mean.index.values\n", + "# y_axis = Influencers_Comp_Mean[\"Compound\"]\n", + "# X_Label = [\"@Oprah\",\"@KimKardashian\",\"@realDonaldTrump\",\"@justinbieber\",\"@KylieJenner\"]\n", + "\n", + "# # Intialize the plots. \n", + "# fig,ax = plt.subplots()# function that returns a tuple containing a figure and axes object(s)\n", + "\n", + "# #Set the plot and assign the values like colors etc\n", + "# bars = ax.bar(x_axis,y_axis\n", + "# , align = \"edge\"\n", + "# , width = 1\n", + "# , linewidth = 1\n", + "# , edgecolor = 'black'\n", + "# , color = [\"yellow\",\"lime\",\"red\",\"orange\",\"pink\"]\n", + "# )\n", + "\n", + "# # Set the tick(s) of the bar graph\n", + "# tick_locations = [value + 0.5 for value in range(len(x_axis))]\n", + "# plt.xticks(tick_locations,X_Label,rotation='vertical')\n", + "\n", + "# # If value is positive then put True in the Summary else place False\n", + "# Influencers_Comp_Mean[\"Positive\"] = Influencers_Comp_Mean[\"Compound\"] > 0\n", + "\n", + "# # Assign the height based on positive value after allocating True / false value\n", + "# height = Influencers_Comp_Mean.Positive.map({True: 0.03 , False: -0.03})\n", + "\n", + "# # # Set the value on labels on the bars\n", + "# for bar in bars:\n", + "# ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + height[bars.index(bar)]\n", + "# , round(Influencers_Comp_Mean[\"Compound\"][bars.index(bar)],3)\n", + "# , ha = 'center'\n", + "# , va = 'bottom'\n", + "# )\n", + "\n", + "# # Set the x_axis limits\n", + "# ax.set_xlim(0, len(x_axis))\n", + "\n", + "# # Dynamically set the y_axis limits by finding the max & min value of y-axis\n", + "# ax.set_ylim(min(y_axis)-0.1, max(y_axis) + 0.1)\n", + "\n", + "# # Set a horizontal line at y = 0\n", + "# plt.hlines(0,0,len(x_axis))\n", + "\n", + "# # Title of the graph\n", + "# ax.set_title(\"Sentiments on Twitter of Influencers (%s)\" % (time.strftime(\"%x\")), fontsize=16)\n", + "\n", + "# # Setting the y_axis label\n", + "# ax.set_ylabel(\"Polarity on Twitter \", fontsize=14)\n", + "\n", + "# # # Setting the x_axis label\n", + "# ax.set_xlabel(\"The Influencers\", fontsize=14)\n", + " \n", + "# # Saving the graph\n", + "# plt.savefig(\"The Influencer Twitter Sentiment .png\",bbox_inches='tight')\n", + "# plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "# # Create an array of Influencers Houses with the unique function in the data frame\n", + "# Influencers_array = Sentiment_DF[\"Influencers\"].unique()\n", + "# Influencers_array\n", + "\n", + "# # #Plotting the graph for each influencer\n", + "# for influencer in Influencers_array:\n", + "# # Creating a temporary data frame to store for only one influencer at a time\n", + "# Temp_DF = Sentiment_DF[Sentiment_DF[\"influencer\"] == influencer]\n", + " \n", + "# Sentiment_DF['influencer'] = Sentiment_DF['influencer'].map(lambda x: x.lstrip('@'))\n", + "# #Temp_DF\n", + " \n", + "# plt.scatter(Temp_DF[\"Tweets Ago\"],Temp_DF[\"Compound\"]\n", + "# , marker = \"o\", linewidth = 0, alpha = 0.8, label = Influencers\n", + "# , facecolors = Temp_DF.influencer.map({\"@Oprah\": \"blue\"\n", + "# , \"@KimKardashian\" : \"lime\"\n", + "# , \"@realDonaldTrump\": 'indigo'\n", + "# , \"@justinbieber\":\"fuchsia\"\n", + "# , \"@KylieJenner\":\"gold\"\n", + "# })\n", + "# )\n", + "\n", + "# # # Set the legend \n", + "# plt.legend(bbox_to_anchor = (1,1), title=\"The Influencers\", loc='best')\n", + "\n", + "# # # Set the labels of x_axis, y_axis & title \n", + "# plt.xlabel(\"Tweets Ago\", fontsize=12)\n", + "# plt.ylabel(\"Tweet Polarity\", fontsize=12)\n", + "# plt.title(\"Sentiment Analysis of The Influencers Tweets (%s)\" % (time.strftime(\"%x\")), fontsize=16)\n", + "\n", + "# # #Set the limite of x_axis and y_axis\n", + "# plt.xlim(0, 101)\n", + "# plt.ylim(-1,1)\n", + "\n", + "# # # Set the grid\n", + "# plt.grid(True)\n", + "\n", + "# filePath = 'Images'\n", + "# if not path.exists(filePath):\n", + "# makedirs(filePath)\n", + "\n", + "# # Save the result to a .png file\n", + "# plt.savefig(\"Sentiment Analysis of Influencers Tweets.png\",bbox_inches='tight')\n", + "# # plt.savefig(\"Sentiment Analysis of The influencer's Tweets.png\",bbox_inches='tight')\n", + "\n", + "# plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "# Version: 2.0\n", + "# Date: Sunday 7/1\n", + "# Time: 03:40 PM\n", + "# Functionalities: \n", + "# A) Data Analysis\n", + "# 1. Created dataframe.\n", + "# 2. Sorting\n", + "# B) Sentiment Analysis\n", + "\n", + "\n", + "# Pending items:\n", + "# Data Cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "# Version: 4.0 - IB\n", + "# Date: Monday 7/2/2018\n", + "# Time: 3:45 PM\n", + "# Functionalities: \n", + "# A) Overcame _TweepError - 34_ by using max_id logic while calling api.user_timeline Tweepy function\n", + "# Sentiment Analysis for Top 5 Influencers and Top 5 Twitters function \n", + "# B) Created the Scatter Plot for Sentimental Analysis of Top 5 Influencers last 100 tweets\n", + "# C) Created the Scatter Plot for Sentimental Analysis of Top 5 Twitters last 100 tweets\n", + "# Scatter Plots png files are saved in OutPut directory\n", + "#\n", + "# These Scatter Plots visualize a great difference between _overal_ ratings of Influencers and People who tweet most\n", + "# \n", + "# For Merging: Code has # IB comments, 8 cells. When \"Restart and Run All\" Kernel, my code is in ln[21] to ln[28]\n", + "# With amount of tweets we have it runs under 10 minutes\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/OutPut/InfluencersSentimentsTweeterPolarityScatterPlot.png b/OutPut/InfluencersSentimentsTweeterPolarityScatterPlot.png new file mode 100644 index 0000000..b8c9ff6 Binary files /dev/null and b/OutPut/InfluencersSentimentsTweeterPolarityScatterPlot.png differ diff --git a/OutPut/TwittersSentimentsTweeterPolarityScatterPlot.png b/OutPut/TwittersSentimentsTweeterPolarityScatterPlot.png new file mode 100644 index 0000000..7c5c1e7 Binary files /dev/null and b/OutPut/TwittersSentimentsTweeterPolarityScatterPlot.png differ diff --git a/RawData/Top_1000_keywords.csv b/RawData/Top_1000_keywords.csv new file mode 100644 index 0000000..a05ed16 --- /dev/null +++ b/RawData/Top_1000_keywords.csv @@ -0,0 +1,1001 @@ +,0 +the,33844 +to,25408 +rt,18565 +a,16031 +and,15822 +of,14494 +in,12914 +for,12016 +i,10766 +is,10210 +you,9641 +on,9300 +this,7373 +my,7240 +with,6734 +at,5682 +that,5028 +we,4595 +it,4440 +are,4361 +be,4228 +our,3645 +&,3527 +your,3492 +from,3489 +all,3306 +so,3289 +have,3275 +was,3121 +me,2758 +about,2644 +out,2600 +new,2586 +by,2528 +as,2523 +thank,2463 +but,2449 +will,2432 +not,2403 +just,2359 +what,2335 +an,2326 +great,2260 +-,2148 +who,2096 +get,2095 +one,1980 +up,1968 +has,1914 +love,1899 +see,1876 +can,1826 +more,1799 +his,1796 +if,1794 +how,1603 +like,1590 +when,1575 +thanks,1533 +do,1503 +they,1496 +now,1488 +their,1462 +time,1439 +he,1436 +happy,1429 +i’m,1413 +good,1386 +us,1379 +day,1372 +it’s,1358 +today,1348 +no,1283 +people,1277 +been,1181 +know,1180 +or,1164 +first,1155 +had,1146 +last,1129 +some,1125 +back,1122 +make,1073 +go,1067 +her,1058 +it's,969 +than,960 +got,954 +these,946 +watch,930 +there,929 +best,911 +i'm,908 +trump,869 +would,867 +here,849 +much,841 +show,834 +need,833 +work,830 +want,823 +big,806 +check,789 +tonight,788 +going,786 +live,783 +don’t,782 +always,776 +should,771 +think,765 +why,763 +every,763 +take,760 +very,757 +over,753 +proud,750 +after,750 +only,749 +help,748 +being,739 +am,718 +she,714 +next,707 +never,699 +many,696 +into,683 +come,680 +years,671 +support,664 +2,663 +right,649 +still,645 +off,645 +night,637 +most,634 +!,633 +president,628 +join,625 +world,624 +did,621 +u,620 +look,615 +way,613 +made,606 +because,604 +those,601 +were,599 +really,598 +keep,594 +don't,592 +can’t,588 +coming,576 +amazing,574 +excited,567 +where,564 +everyone,548 +say,548 +could,540 +family,537 +ready,533 +them,532 +women,529 +hope,525 +congrats,524 +even,519 +team,511 +via,509 +please,505 +ever,500 +week,500 +looking,500 +down,499 +year,498 +win,491 +vote,490 +t…,486 +game,485 +two,480 +american,479 +him,479 +a…,478 +better,476 +getting,471 +wait,471 +must,468 +sure,463 +working,461 +fun,460 +special,456 +children,455 +birthday,454 +talk,453 +too,451 +the…,450 +its,449 +full,448 +little,448 +another,447 +@,447 +part,439 +may,438 +it.,430 +x,429 +❤️,429 +doing,425 +friend,424 +well,421 +forward,420 +can't,418 +any,414 +before,412 +congratulations,412 +making,409 +video,409 +man,409 +having,409 +which,407 +other,407 +tomorrow,403 +against,402 +life,401 +give,398 +fight,398 +today.,396 +also,392 +read,390 +miss,390 +–,388 +you’re,388 +w/,385 +stop,384 +let’s,383 +let,382 +care,382 +you.,380 +3,380 +de,380 +season,380 +put,380 +home,374 +few,372 +that’s,371 +families,370 +meet,370 +episode,368 +through,367 +hard,366 +while,364 +since,364 +said,362 +such,359 +find,359 +health,357 +tune,355 +things,352 +hear,352 +own,351 +listen,350 +real,349 +favorite,349 +then,348 +kids,348 +top,347 +hey,343 +does,342 +call,341 +play,339 +1,338 +.,338 +"today,",338 +feel,337 +share,334 +la,332 +tickets,332 +house,332 +to…,331 +@realdonaldtrump,330 +morning,329 +i’ll,329 +country,327 +honor,325 +days,323 +friends,323 +we're,320 +you!,320 +young,319 +tax,318 +guys,317 +2018,315 +national,315 +u.s.,314 +believe,314 +state,313 +we’re,313 +incredible,310 +bill,309 +lot,309 +i’ve,308 +beautiful,308 +important,306 +4,304 +tell,304 +says,299 +end,299 +long,298 +start,297 +talking,295 +something,295 +old,295 +done,293 +news,291 +watching,289 +free,289 +remember,287 +available,287 +chance,287 +th…,285 +america,284 +same,280 +and…,280 +court,280 +senate,279 +yes,279 +both,277 +stand,276 +americans,275 +white,275 +black,274 +thing,273 +"you,",273 +away,272 +during,271 +june,269 +use,269 +h…,269 +someone,266 +job,265 +fans,265 +again,264 +you're,264 +i…,263 +around,262 +nothing,262 +together,259 +taking,256 +social,254 +post,253 +weekend,252 +until,251 +loved,251 +oh,250 +makes,250 +that's,249 +school,246 +latest,245 +story,245 +😂,244 +|,243 +me.,243 +10,242 +bring,241 +shows,239 +—,238 +meeting,238 +needs,238 +it!,237 +policy,237 +"""the",236 +here:,236 +this.,233 +today!,233 +ago,232 +i've,231 +change,230 +...,229 +without,229 +nice,229 +let's,229 +public,228 +already,227 +anyone,225 +awesome,225 +learn,224 +music,224 +s…,223 +#tbt,223 +left,222 +gonna,222 +times,222 +across,221 +north,221 +open,218 +playing,218 +welcome,218 +trying,216 +justice,216 +true,214 +here's,214 +now!,214 +high,214 +5,214 +dream,213 +e,213 +now.,213 +glad,212 +everything,211 +grateful,211 +super,210 +set,210 +looks,210 +bad,210 +tour,209 +honored,209 +i'll,209 +might,208 +million,208 +thought,207 +stay,206 +wish,206 +appreciate,205 +came,205 +congress,204 +men,204 +party,203 +!!,203 +:),203 +wonderful,202 +lives,201 +follow,200 +w,200 +w…,199 +interview,199 +celebrate,199 +three,198 +former,198 +tonight!,198 +between,198 ++,198 +power,197 +human,197 +strong,196 +under,196 +@youtube,196 +pretty,195 +didn’t,195 +book,195 +seen,194 +money,194 +heart,193 +woman,193 +photo,192 +he’s,191 +united,191 +album,190 +et,190 +told,190 +took,190 +o…,189 +supreme,189 +day.,188 +--,188 +trade,188 +of…,188 +yesterday,187 +once,187 +went,186 +comes,186 +economic,185 +baby,185 +called,184 +each,184 +rights,182 +lol,181 +y’all,181 +business,180 +whole,180 +energy,179 +en,179 +actually,178 +",",178 +he's,178 +behind,178 +try,178 +send,177 +city,177 +place,177 +tweet,177 +catch,176 +helping,176 +face,176 +lost,176 +enough,176 +kind,176 +wants,175 +giving,174 +government,174 +states,174 +event,174 +huge,174 +students,174 +seeing,174 +takes,173 +finally,173 +summer,173 +parents,173 +f…,173 +ask,172 +future,172 +tonight.,172 +head,172 +6,172 +run,171 +song,171 +means,171 +running,171 +speaking,171 +john,170 +immigration,170 +moment,170 +signed,169 +twitter,169 +pay,169 +here’s,169 +sunday,169 +july,168 +sign,168 +second,168 +visit,168 +sorry,167 +cool,167 +continue,167 +history,166 +god,165 +words,165 +truly,165 +act,165 +march,164 +brother,164 +become,164 +#reverie,164 +leadership,164 +los,163 +administration,163 +https://t.co/…,163 +protect,163 +joining,163 +fighting,163 +thoughts,162 +day!,162 +office,161 +jobs,161 +soon,161 +guy,161 +democrats,161 +able,161 +gets,160 +sale,160 +save,160 +media,160 +person,159 +almost,159 +point,158 +saw,158 +opportunity,158 +luck,158 +heard,158 +republicans,157 +piece,157 +trump's,157 +community,157 +workers,157 +@potus,157 +final,156 +child,156 +service,155 +#nbavote,155 +hit,155 +celebrating,155 +senator,154 +podcast,154 +campaign,154 +p…,154 +center,153 +time.,152 +members,152 +early,151 +wanted,151 +in…,151 +c…,151 +announce,151 +found,151 +political,150 +performance,150 +case,150 +past,150 +saying,150 +b…,150 +enjoyed,150 +entire,150 +friday,149 +red,149 +discuss,149 +law,149 +enjoy,148 +#americanidol,148 +girl,148 +met,148 +forget,147 +border,147 +less,146 +paul,146 +opening,146 +https…,146 +doesn’t,146 +las,146 +greatest,146 +single,145 +up.,145 +leaders,144 +decision,144 +starting,144 +@fullfrontalsamb:,143 +spread,143 +shot,143 +conversation,142 +movie,142 +started,142 +!!!,142 +using,142 +goes,142 +https:/…,142 +https:…,141 +feeling,141 +federal,141 +official,141 +saturday,140 +maybe,140 +gotta,140 +gave,139 +"me,",139 +supporting,139 +step,139 +m…,139 +cut,139 +sending,138 +speak,138 +mean,138 +biggest,138 +plan,137 +training,137 +tv,137 +nba,137 +starts,137 +didn't,136 +won,136 +el,136 +truth,136 +fan,136 +missed,136 +prayers,136 +on…,136 +name,136 +thinking,135 +1st,135 +girls,135 +asked,135 +?,134 +war,134 +annual,134 +winning,134 +https://t.…,133 +for…,133 +cover,133 +today's,133 +there’s,133 +que,133 +2017,133 +local,132 +action,132 +anything,132 +voting,132 +including,132 +exclusive,131 +far,131 +"""i",131 +there's,131 +months,131 +late,130 +understand,130 +number,130 +7,130 +https://…,129 +out.,129 +calling,129 +"it,",129 +report,129 +agree,129 +star,129 +bringing,128 +gop,128 +https://t…,128 +y,127 +"yes,",127 +htt…,127 +monday,127 +deal,127 +foster,126 +yet,126 +night.,126 +vs,126 +global,125 +lead,124 +sports,124 +today’s,124 +pick,124 +leader,124 +air,124 +order,124 +isn’t,124 +ya,123 +ice,123 +different,123 +coach,123 +an…,122 +series,122 +climate,122 +used,122 +inspired,122 +passed,121 +least,121 +“the,121 +bob,121 +guess,121 +hours,121 +larry,120 +wanna,120 +http…,120 +we’ve,120 +month,120 +🔥,120 +retweet,120 +impact,119 +https://t.c…,119 +dear,119 +stage,119 +"now,",119 +gun,119 +republican,119 +respect,119 +york,119 +o,118 +year.,118 +san,118 +joined,118 +film,118 +omg,117 +ok,117 +create,117 +#americanracetnt,117 +comedy,117 +safe,117 +election,117 +group,116 +powerful,116 +link,115 +practice,115 +april,115 +8,115 +"day,",115 +security,115 +pass,115 +message,115 +raise,114 +experience,114 +player,114 +at…,114 +record,114 +questions,114 +wrong,113 +/,113 +line,113 +isn't,113 +christmas,113 +doesn't,113 +race,113 +🙌,113 +cannot,112 +else,112 +https://t.co…,112 +others,112 +👀,112 +helped,112 +taken,112 +standing,112 +weeks,112 +family.,111 +deserve,111 +im,111 +system,111 +voice,110 +ht…,110 +what’s,110 +perfect,110 +violence,110 +growth,110 +class,109 +#timeless,109 +week.,109 +we've,109 +hold,109 +boy,109 +especially,109 +20,108 +trump’s,108 +premiere,108 +conference,108 +camp,108 +asking,108 +dr.,108 +haha,108 +us.,108 +crazy,107 +wrote,107 +you…,107 +she’s,106 +chicago,106 +rest,106 +damn,106 +living,106 +exactly,106 +youth,106 +role,106 +governor,106 +sen.,106 +issue,105 +uk,105 +hour,105 +list,105 +college,105 +“i,105 +nyc,104 +😍,104 +access,104 +spend,104 +matter,104 +sometimes,104 +obama,104 +crisis,104 +international,104 +boys,104 +victims,104 +tough,104 +anniversary,104 +absolutely,104 +keeping,104 +vegas,104 +economy,103 +separated,103 +that.,103 +spent,103 +small,103 +bit,103 +wow,103 +legend,103 +thousands,103 +basketball,103 +worked,103 +release,103 +with…,102 +nearly,102 +them.,102 +light,102 +waiting,102 +yourself,102 +turn,102 +four,102 +showing,102 +article,102 +❤️❤️❤️,102 +spoke,102 +here.,102 +course,102 +spending,101 +club,101 +leading,101 +dad,101 +statement,101 +data,101 +round,101 +sexual,101 +putting,101 +killed,101 +guest,101 +hall,100 +ohio,100 +again.,100 +military,100 +son,100 +ways,100 +often,100 +ur,100 +tomorrow.,100 +lots,100 +along,100 +donald,100 +video.,100 +road,99 +@station19,99 +sad,99 +easy,99 +word,99 +hot,99 +west,99 +one.,99 +fall,99 +happening,99 +room,99 +puerto,99 +country.,99 +reason,99 +shooting,98 +voted,98 +force,98 +talks,98 +pm,98 +listening,98 +idea,98 +they’re,97 +who’s,97 +mind,97 +sweet,97 +launch,97 +ha,97 +un,97 +problem,97 +probably,97 +cast,97 +@…,97 +tried,97 +instead,97 +hearing,96 +d…,96 +career,96 +literally,96 +research,96 +police,96 +peace,96 +clear,96 +bipartisan,96 +funny,96 +lucky,96 +needed,96 +people.,96 +foreign,96 +reading,95 +whether,95 +what's,95 +happen,95 +30,95 +knows,95 +close,95 +life.,95 +south,95 +five,95 +donate,95 +rock,95 +world.,95 +major,95 +side,95 +democratic,94 +picture,94 +l…,94 +#ad,94 +champion,94 +e…,94 +hell,94 +dream.,94 +bro,94 +letter,94 +brought,93 +lovely,93 +reform,93 +=,93 +hate,93 +knew,93 +jim,93 +millions,93 +press,92 +mental,92 +fuck,92 +secretary,92 +definitely,92 +education,92 +leave,92 +me!,92 +show.,92 +award,92 +game.,92 +current,92 +night!,91 diff --git a/RawData/TweetListings - Copy.csv b/RawData/TweetListings - Copy.csv new file mode 100644 index 0000000..34d2707 --- /dev/null +++ b/RawData/TweetListings - Copy.csv @@ -0,0 +1,82511 @@ +Date,Genre,Influencer,Tweet +09/23/2012,Actors,@_AnneHathaway,"Now it's time to go through and follow all my friends , this could take a while." +09/23/2012,Actors,@_AnneHathaway,"RT @russellcrowe: 'Les Miserables' Extended Trailer: Anne Hathaway, Russell Crowe, Hugh Jackman & Tom Hooper Explain... http://t.co/ ..." +06/20/2018,Actors,@IAMannalynnemcc,#wokeupthisway was not a challenge I can say I necessarily wanted to be a part of. I still have my acne scars remin… https://t.co/391Dc8TsWw +06/20/2018,Actors,@IAMannalynnemcc,Go ahead. Try... https://t.co/hOl9sUSSz6 +06/16/2018,Actors,@IAMannalynnemcc,RT @looktothestars: @IAMannalynnemcc Our news story mentions your #charity work Pls share! https://t.co/AxMNsyvkl9 +06/16/2018,Actors,@IAMannalynnemcc,Thank you for your words. I remember laying on the floor of a friend’s flat in central England finding out for the… https://t.co/PQgZN9o6hm +06/15/2018,Actors,@IAMannalynnemcc,Sending a @RhondasKiss to those fighting the… https://t.co/qOAfO3oe5x +05/23/2018,Actors,@IAMannalynnemcc,“I’m not guarded...” https://t.co/8LNdiowAXG +05/20/2018,Actors,@IAMannalynnemcc,This woman!!!!!! Happy Birthday to the best big… https://t.co/0Ij2lJlg0P +05/11/2018,Actors,@IAMannalynnemcc,“Every 🌹 has its thorns...” https://t.co/KV7NGkw8i5 +05/02/2018,Actors,@IAMannalynnemcc,"Barnet, North London Council Elections are tomorrow, May 3rd. I hope you tick the box for my amazing friend… https://t.co/1D0v8aIBU7" +04/05/2018,Actors,@IAMannalynnemcc,"#unboxing day!! (Omg! I literally wrote that. #cheesyAF) +I love you @rembrandtflores and I’ll… https://t.co/l6kRAmKN8I" +04/05/2018,Actors,@IAMannalynnemcc,#unboxing graffitilibrary #candles in support of @together1heart #endslavery… https://t.co/AZD1uArNYs +04/02/2018,Actors,@IAMannalynnemcc,📸 @malachibanales https://t.co/OYOzzLGyp2 +04/02/2018,Actors,@IAMannalynnemcc,📸 @malachibanales https://t.co/Re7hPZiENW +04/02/2018,Actors,@IAMannalynnemcc,Love hurts https://t.co/Gvb9GcmFDR +04/02/2018,Actors,@IAMannalynnemcc,But like... how did we live before @postmates ? https://t.co/CHy4ypisGE +04/01/2018,Actors,@IAMannalynnemcc,Happy Valentine’s Day! https://t.co/HxBgKqqXYz +03/20/2018,Actors,@IAMannalynnemcc,@usweekly *please note the friendly sarcasm... xxx +03/20/2018,Actors,@IAMannalynnemcc,@usweekly Actually... I’m dating @KellyHu - we sat apart because we didn’t want you guys to write about us!… https://t.co/ib5X3eRxOr +03/13/2018,Actors,@IAMannalynnemcc,🧜🏼‍♀️ https://t.co/zbSSKSiTbI +03/09/2018,Actors,@IAMannalynnemcc,Waiting for @Postmates like... https://t.co/kulUYoJrlg +03/06/2018,Actors,@IAMannalynnemcc,balmain ejaf #Oscars #Oscars2018 #balmain #ejaf @ West Hollywood Park https://t.co/4iUTJoQU1x +03/06/2018,Actors,@IAMannalynnemcc,Beautiful evening in support of #EJAF #EndAIDS #BALMAIN balmain #Oscars #Oscars2018 @ West… https://t.co/Dp2C9f7V7t +03/06/2018,Actors,@IAMannalynnemcc,💋 @nordstrom #nordstromlocal #Oscars #Oscars2018 #MichaelCostello https://t.co/lZ9V8ZoKR9 +03/06/2018,Actors,@IAMannalynnemcc,I see you... xxx https://t.co/wEnULElYnD +02/28/2018,Actors,@IAMannalynnemcc,#TONIGHT at 8:30PM only on @poptv ( https://t.co/b8LMJKRQz6 for local listings) #LetsGetPhysical https://t.co/3PYEqXjz9Y +02/21/2018,Actors,@IAMannalynnemcc,"📷⚡️ +Glam by: @tracewatkins #myfacebytrace +Swimwear: @angelysbalek @cldstyle https://t.co/tvy2XlLOzs" +02/18/2018,Actors,@IAMannalynnemcc,"RT @ArcticGearHats: Creating opportunities, community, and a level playing field for people with disabilities. 100% of profits are allocate…" +02/15/2018,Actors,@IAMannalynnemcc,@IFCMidnight @GUBLERNATION @AlishaBoe @iTunes @amazon @VuduFans @GooglePlay Hey guys can you dm me this video so I can post on insta? +02/15/2018,Actors,@IAMannalynnemcc,"RT @IFCMidnight: This #ValentinesDay watch the perfect movie about love, relationships, happiness... and murder. + +68 KILL, starring @GUBLER…" +02/14/2018,Actors,@IAMannalynnemcc,@platinumjones @ohellvis @Christian_Zamo No. She lovvvvves it! 😈 +02/14/2018,Actors,@IAMannalynnemcc,RT @ArthurKade: .@IAMannalynnemcc's passion for the female empowerment movement around #MeToo and #TimesUp is spot on https://t.co/PH213Z0J… +02/14/2018,Actors,@IAMannalynnemcc,@Film_AMP @mayhem_festival @thedarksidemag @BroadwayCinema @GUBLERNATION @IFCMidnight @Cooke_Mayhem Love your screen grab choice ↘️ ↙️ +02/14/2018,Actors,@IAMannalynnemcc,"RT @PopTV: Burning muscles > burning questions! Send us your Q's now for #LetsGetPhysical star @IAmAnnaLynneMcC, then watch her FB Live tom…" +02/14/2018,Actors,@IAMannalynnemcc,LIVE w/ @PopTV for #LetsGetPhysical Episode 4 (*my personal favorite as I’m up to NO GOOD) Wednesday 8:30p/7:30c on… https://t.co/cAJOlBvRY7 +02/07/2018,Actors,@IAMannalynnemcc,Yes. This happened... https://t.co/k4bz7FmgUa +02/07/2018,Actors,@IAMannalynnemcc,RT @PopTV: Become whatever kind of freaky-fit Frankenstein's monster you want to be. #LetsGetPhysical https://t.co/5C59cttdo3 +02/06/2018,Actors,@IAMannalynnemcc,"LIVE 10AM est: @WendyShow #WendyShow talking my new film +@FirstWeTakeBrooklyn" +02/06/2018,Actors,@IAMannalynnemcc,Caption? https://t.co/OGRYEuAJyf +01/31/2018,Actors,@IAMannalynnemcc,"RT @lastcallcd: Tonight's Last Call w/ @CarsonDaly features: @IAMannalynnemcc from @PopTV's #LetsGetPhysical, music from @liamgallagher, pl…" +01/25/2018,Actors,@IAMannalynnemcc,"💋💋💋 @MaximMag so much fun talking my new show #LetsGetPhysical with you! (Wednesdays @ 8:30p only on @PopTV) +https://t.co/lRkzpWbmQw" +01/25/2018,Actors,@IAMannalynnemcc,RT @PopTV: TFW your boss tells you to do something and you desperately want to sass back. #LetsGetPhysical https://t.co/tkjzvGldcj +01/25/2018,Actors,@IAMannalynnemcc,RT @PopTV: What we wish happened anytime we left a room. #LetsGetPhysical https://t.co/IXJnInouBN +01/25/2018,Actors,@IAMannalynnemcc,5 MINUTES!!!! ... till the premier of my new show #LetsGetPhysical on @PopTV ( https://t.co/Y1eTGQx241 for your loc… https://t.co/eSCyP4zcMW +01/24/2018,Actors,@IAMannalynnemcc,Ready to go LIVE!! with @BuzzFeed #AM2DM talking my new comedy #LetsGetPhysical @PopTV! Watch at:… https://t.co/yQeWnsxNHU +01/23/2018,Actors,@IAMannalynnemcc,Catch me @BuzzFeed #AM2DM tomorrow morning talking my new comedy #LetsGetPhysical @PopTV! Watch live at 10am ET:… https://t.co/6RK2hv3kFb +01/23/2018,Actors,@IAMannalynnemcc,@MamSomaly Sending you & her a lot of love 💕 sister +01/23/2018,Actors,@IAMannalynnemcc,@PopTV #LetsGetPhysical Wednesday’s @ 8:30P https://t.co/6OyusxOkh9 +01/23/2018,Actors,@IAMannalynnemcc,Today on @iamsteveharvey talking #LetsGetPhysical premiering #TOMORROWNIGHT only on @poptv https://t.co/2Th6KWyBQg +01/19/2018,Actors,@IAMannalynnemcc,"How do YOU define success? Like the world does? Or the way you see fit? @oneyoungworld + https://t.co/NXmmhFDVRt via @youtube" +01/18/2018,Actors,@IAMannalynnemcc,They’re doing it!!! I literally emailed one of the #CRISPR discovering scientists & volunteered asking her to perfo… https://t.co/q7hf813bvL +01/17/2018,Actors,@IAMannalynnemcc,"RT @OfficialTCA: If you can't remember the '80s for any reason - fuzziness, haziness, you weren't born yet, whatever - #LetsGetPhysical on…" +01/17/2018,Actors,@IAMannalynnemcc,Always a good time with the @ktla5news crew. (*causally at 7am) 😏 #LetsGetPhysical @poptv https://t.co/6GPKntWLue +01/17/2018,Actors,@IAMannalynnemcc,#TelevisionCriticsAssociation #TCA18 @OfficialTCA ***New Show*** “Let’s Get Physical” Jan 24th only on @PopTV https://t.co/D8jLxmAziF +01/16/2018,Actors,@IAMannalynnemcc,@MamSomaly @IanBohen @mspennypuppy Sending you love baby 👶 +01/16/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 month ago that we saved her from sexual abuse,she got rape by her own father & very trauma,today 6 months after she can re…" +01/16/2018,Actors,@IAMannalynnemcc,Why we keep continuing our support to @together1heart @AFESIP and @MamSomaly https://t.co/xmEDZSP5XP +01/16/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: first Global Meditation Group -TM from @AFESIP @together1heart recovery center.Please join us for the world's meditation fam… +01/13/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: been sold in slavery,she got HIV/AID,I found her she was 8 years old,age 14 she died,January 11, +National Human Trafficking…" +01/13/2018,Actors,@IAMannalynnemcc,RT @IanBohen: Survivors are living out of the shadows but there’s more to be done!! @together1heart @MamSomaly @IAMannalynnemcc are shini… +01/13/2018,Actors,@IAMannalynnemcc,@MamSomaly Why I love you sister 😘 +01/13/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: She's survivor,she been very traumatized of her past but look at her now,she's our @together1heart nurse & keep continuing h…" +01/13/2018,Actors,@IAMannalynnemcc,@IanBohen @together1heart @MamSomaly 🙏🙏🙏 +01/10/2018,Actors,@IAMannalynnemcc,You are all my inspiration thanks for being such an inspiration 🙏 https://t.co/NbpNyE5gI7 +01/10/2018,Actors,@IAMannalynnemcc,@together1heart 2 in 1 our love to our baby 👶 https://t.co/onPJJKb5ij +01/02/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: 6:00am meditation time with our sister @IAMannalynnemcc 🙏 life is about forgiveness 😘 @together1heart @AFESIP @drdavidcooke… +01/02/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: Happy new year to everyone from our girls @together1heart @AFESIP recovery center 🙏may New Years bring everyone happy lucky… +01/01/2018,Actors,@IAMannalynnemcc,Happy New Year to me... I hope each of you find the love that has found me. Love that is pure and free without cond… https://t.co/yQY7gmzjKp +12/28/2017,Actors,@IAMannalynnemcc,Can’t wait to hug my Cambodian baby 😘 @MamSomaly https://t.co/hsHf8K6uIb +12/18/2017,Actors,@IAMannalynnemcc,Raised in the brothel. https://t.co/K7DiCEgeme +12/18/2017,Actors,@IAMannalynnemcc,I remember this moment so vividly. At our Siem Reap Center for sex-trafficking survivors sat these tiny little shoe… https://t.co/5NPsxcd7gr +12/18/2017,Actors,@IAMannalynnemcc,#Cambodia I’m coming home next week!!! (Photo credit: @EddsCamera ) https://t.co/ro21oPDsDW +12/17/2017,Actors,@IAMannalynnemcc,New York Attorney General on the Repeal of Net Neutrality: Futurism Excl... https://t.co/O1ND8yxzK2 via @YouTube +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Yesterday they cry 😭 today they started to play with other girls,how beautiful to see them become children again,playing lau…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She been trafficked from Vietnam to Thailand 3 time when she was 3 years old,when we found her she can't talk she been very…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 😢2 little baby sister got rape 2 years ago,they're 4&5 years old by they stepfather,they keep silent bc they don't want to h…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: First day computers for my baby girls how happy they are to use their talents ,thanks @IAMannalynnemcc @together1heart @AFES…" +12/10/2017,Actors,@IAMannalynnemcc,@LyViriya @MamSomaly @drdavidcooke @ChloeFlower @shaymitch @IanBohen Sending you love 💕 sister +12/08/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: meeting End with very fruitful from all survivors leaders,we are survivors we give back to our society,our objective is to e…" +12/08/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Survivors empowerment monthly meeting (voice for change) we try to find the way how to help victims for a better life & how… +12/08/2017,Actors,@IAMannalynnemcc,@MamSomaly @mspennypuppy @drdavidcooke @HildenbrandC Keep going sister I will see you soon in December love +12/08/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: My little sweetheart❤️sometimes I don't understand how can people hurt them,they are very sweet & beautiful,today we spend n…" +12/08/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: miss you more my angel 😇 you make me tears just to hear your voice 😢😢😢 https://t.co/oav8baLKHt +12/07/2017,Actors,@IAMannalynnemcc,https://t.co/xenWGSb73o @FHM @PopTV #LetsGetPhysical +12/04/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: I'm back home with my angel 😇 she make me heal from my sickness,a survivor right now becomes a strong angel & she want to be…" +12/02/2017,Actors,@IAMannalynnemcc,"@cleorestaurant @cleothirdstreet Chef Danny, it was the epitome of the superb! Thank you for having me!… https://t.co/dRPhqbK2tk" +12/01/2017,Actors,@IAMannalynnemcc,#facebytrace @tracewatkins - #blonde by @MichPugh #cut by @JonathanAntin https://t.co/38BZ8783Vw +12/01/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Just get out from hospital,10 years old girl got rape brutally by a 41 years old man while she try to finding foods,she's to…" +11/29/2017,Actors,@IAMannalynnemcc,"#Repost @together1heart **LINK in BIO +・・・ +Life is love. 💜 Painted on a wall at our center by… https://t.co/gBXvCbovJZ" +11/28/2017,Actors,@IAMannalynnemcc,"First 10 DONORS* receive a handmade-by-survivors, silk necklace selected by me on my recent trip to Cambodia!… https://t.co/nfihvWrrCF" +11/23/2017,Actors,@IAMannalynnemcc,#HappyThanksgiving https://t.co/abnCGEi4bM +11/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: See the little baby who got rape when she's 13 month,1 month after how beautiful smiles she give me,it's the best & every be…" +11/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: How beautiful to see a little baby who was even don't speak because of her trauma & now they can have their dream,she want t…" +11/22/2017,Actors,@IAMannalynnemcc,Heaven is a place on earth... https://t.co/Uhk7R6BfOQ +11/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: When @IAMannalynnemcc get tired then her baby send her these face & tell her ( you save our life & so many life now have hop… +11/19/2017,Actors,@IAMannalynnemcc,So proud of you girls 😘 https://t.co/J4rFYt4gVE +11/19/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Sports time for our survivor girls with the village children,they try their best to include them self with community childre…" +11/19/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Received this message on FB,You make me tears 😢my sweetheart,you are the most beautiful from inside and out,you are strong,y…" +11/18/2017,Actors,@IAMannalynnemcc,Thank you @ShowMeYourMumu I LOVVVE my personalized denim bomber!! https://t.co/kr0NTGboNR +11/16/2017,Actors,@IAMannalynnemcc,#firstwetakebrooklyn https://t.co/EQw4XE6QAQ +11/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Thanks to each of you for ur like,follow,comments & support to victims & survivors,without ur encouragement we can't stand a…" +11/09/2017,Actors,@IAMannalynnemcc,"#LetsGetPhysical January 24th, 2018 on @poptv https://t.co/MeFzc9N983" +11/09/2017,Actors,@IAMannalynnemcc,#behindthescenes @poptv #LetsGetPhysical - Glam: @tracewatkins https://t.co/e4YiDCWm6Y +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Most of my dress come from survivors who been @our recovery center,she been very traumatized & today successful in her busin…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: We always can turn darkness to the lighter,we can turn hate to forgiveness, anger to happiness, pain to healing by unconditi…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She try so hard to survive from her suffering,trauma from what she going true,after few month been rape now she started her…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: This video make my day,the 13 month baby started to play,she is out of operation after got rape🙏I pray that her health going…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @brianaevigan_2: @MamSomaly your smile is brightening the world. Thank you for all that you do, all the… https://t.co/b7M5RGf9Dv" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She’s very happy& I’m happy too,congratulations to u baby after a storm now is sunshine ☀️I’m in tear but happy tears❤️ thx…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 Years old baby who got rape 10day ago she’s out of hospital.started her new life with hope love laughs learn,she’s very sm…" +11/08/2017,Actors,@IAMannalynnemcc,"RT @IanBohen: #OneLoveGala is tomorrow night to benefit victims of sexual slavery and exploitation. Join me, @together1heart, @MamSomaly an…" +11/06/2017,Actors,@IAMannalynnemcc,"Learning a very special prayer from my hero and teacher @MamSomaly . For all of my girls, for… https://t.co/TuQWN3FdHs" +11/04/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: lovely message from my baby after she stand up in front of perpetrator who rape & try to kill her,she's very strong & she wi…" +11/03/2017,Actors,@IAMannalynnemcc,"RT @MayorStanton: Inspiring morning. Opened today: Starfish Place, the nation’s 1st permanent supportive housing for survivors of sex traff…" +11/03/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Join the fight TODAY, attend the Together1heart annual gala! Tickets: https://t.co/PFklnHajQQ +One Time Donation: https://t.c…" +11/03/2017,Actors,@IAMannalynnemcc,@sleemol @MamSomaly Thank you for your motivation +11/03/2017,Actors,@IAMannalynnemcc,"RT @sleemol: I still don't really have the words to describe what I saw in Cambodia, but I tried with this piece: https://t.co/4gHaQAPafC" +11/02/2017,Actors,@IAMannalynnemcc,"My baby it’s such a beautiful & inspiration to hear what they want in life,why I keep working so hard , https://t.co/K3fNoPS7qs" +11/02/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Join the fight TODAY, attend the Together1heart annual gala! Tickets: https://t.co/PFklnHajQQ +One Time Donation: https://t.c…" +11/02/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: We got a great new,13 month baby who got rape by a HIV/AIDS men is now safe,she doesn't get infections from him but we have…" +10/28/2017,Actors,@IAMannalynnemcc,#HappyHalloween #JJCLOWNS @justjared #HalloweenParty2017 - love you @jaredeng https://t.co/5GTY0c1Qh3 +10/28/2017,Actors,@IAMannalynnemcc,RT @JustJared: .@IAMannalynnemcc and @RealMichelleT both went to the dark side for their #JJCLOWNS costumes last night! https://t.co/az3iI9… +10/28/2017,Actors,@IAMannalynnemcc,#aboutlastnight @nobumalibu w/ my lovely @kimdejesus - xxx @rembrandt @EFGpr https://t.co/bcfnvcs2md +10/28/2017,Actors,@IAMannalynnemcc,#aboutlastnight @nobumalibu w/ my lovely @KimDeJesus9 - xxx @rembrandtflores @efgpr @ Nobu Malibu https://t.co/x9hYLqyHzk +10/26/2017,Actors,@IAMannalynnemcc,💕💞 https://t.co/zQ1CqSYLnf +10/23/2017,Actors,@IAMannalynnemcc,My hero being the badass that she is. My big sis @theAngelMcCord is the rainbow in my clouded… https://t.co/Rqf0pf6JCT +10/23/2017,Actors,@IAMannalynnemcc,Help get my beautiful goddaughter’s Daddy elected 2 the city council #Redding #Pennsylvania #VENMO @kirk-Mullen-2 /… https://t.co/cbv12Cc3K4 +10/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She get better after her meditation,everyday she try her best to get out of her trauma 😘 @IAMannalynnemcc @drdavidcooke @tog…" +10/23/2017,Actors,@IAMannalynnemcc,RT @drdavidcooke: These extraordinary young women have completed uni despite early years of extreme trauma thanks to @MamSomaly @AFESIP htt… +10/23/2017,Actors,@IAMannalynnemcc,RT @drdavidcooke: Working with women in Phnom Penh slums forced into prostitution to support families @MamSomaly #UnconditionalLove https:/… +10/22/2017,Actors,@IAMannalynnemcc,So excited to join my co-star #janeseymour in support of her beautiful charity @openheartsfoundation 💕 https://t.co/UK3pU6XNWv +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: holiday activity at ur @together1heart @AFESIP recovery center we try to make them confident & heal from their trauma @IanBo… +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Life is love ❤️ sending everyone love from @together1heart please keep hopes & smiles @IAMannalynnemcc @drdavidcooke @ChloeF… +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Morning meditation for our girls @together1heart @AFESIP https://t.co/Y4vXaqfij2 +10/17/2017,Actors,@IAMannalynnemcc,#MeToo https://t.co/O33k7iQIXf +10/16/2017,Actors,@IAMannalynnemcc,Get a Bae who can do both... https://t.co/Mz5CDRg9Op +10/14/2017,Actors,@IAMannalynnemcc,13 month baby victim of rape are now saved with her 21 Years old mother at @together1heart MamSomaly @AFESIP recove… https://t.co/Vb7C3HhoJP +10/12/2017,Actors,@IAMannalynnemcc,"RT @kienyke: #OYW2017 | Mensaje de @IAMannalynnemcc a todos los que han sufrido acoso sexual: No es el final, puedes seguir, no es tu culpa…" +10/12/2017,Actors,@IAMannalynnemcc,@SexYSuccubus @MamSomaly Thx to you +10/12/2017,Actors,@IAMannalynnemcc,@kentspeakman @together1heart @MamSomaly 😘🙏 +10/11/2017,Actors,@IAMannalynnemcc,Today @MamSomaly saved a 8 Years old girl raped by a family member.This is the reason why I support @together1heart… https://t.co/Zah7BKd1HS +10/11/2017,Actors,@IAMannalynnemcc,@MamSomaly Hug & love to my little baby sooner I will be there to hug you 😘 +10/11/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: She lost her mother at 5.Her father abandoned her&her sister. Her younger sister was given away.she got raped by a family me… +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 years old was raped by brother in law.A few months later,mother passed away.the small cottage was fired in 7 days followin…" +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: No word to explain what I feel. 13 month old baby got raped by neighbor who have HIV. This break my heart, that why I contin…" +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: After my suffering day,today visit my girls at @together1heart @vimean beauty training salon 💇 so inspiration to see them ge…" +10/10/2017,Actors,@IAMannalynnemcc,Today @MamSomaly went to Siem Reap province visiting a baby girl who is only 13-month-old and was brutally raped by… https://t.co/hMjY7J34N8 +10/07/2017,Actors,@IAMannalynnemcc,@SkyNewsTom @SkyNews Great chatting with you! Thank you for bringing these topics to the forefront. 🙏🏽🙏🏽🙏🏽💜💜💜 +10/07/2017,Actors,@IAMannalynnemcc,"RT @OneYoungWorld: .@IAMannalynnemcc, one of Hollywood's strongest female philanthropists, sheds light on sexual violence & human trafficki…" +10/05/2017,Actors,@IAMannalynnemcc,Sending love frm @together1heart 2 the beautiful inner city children in #LosAngeles supported by the efforts of… https://t.co/GKqZHs7BHh +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Day 3th after got rape by her own father.she feel better but still pain,we got back from clinic.she going to be heal by ❤️fr…" +10/05/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: 11 years old girl got rape by her biological father😭to me both of them(mother&daughter)are victim mother was beaten every da… +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: monthly survivors network meeting,so proud of each of them for their success,they worked with me,they give back to society h…" +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She was married have 2kids,she was beaten everyday then sold To sex-slavery.her2 daughter got rape since they was 5&3 years…" +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: seeing them grow up.some of them been with me since 20 years&some more then 10 years,some get married have kids&success in t…" +10/03/2017,Actors,@IAMannalynnemcc,"Being the boss is so difficult. +@poptv #LetsGetPhysical #poptv #January2018 https://t.co/2hctAmOcA1" +10/02/2017,Actors,@IAMannalynnemcc,"Missing my Little Angels 👼🏼! #EndSlavery @together1heart + +*photo credit @EddsCamera https://t.co/03v8X78bqX" +10/01/2017,Actors,@IAMannalynnemcc,"RT @IFCMidnight: .@IAMannalynnemcc packs a mean piece (and a punch) in 68 KILL, now on @iTunesMovies @AmazonVideo @XFINITY @optimum @GetSpe…" +09/27/2017,Actors,@IAMannalynnemcc,TODAY: Join my interview with Cam Rogers on the #camrogersshow LIVE at 10:15 ET https://t.co/B8HVigadzD +09/26/2017,Actors,@IAMannalynnemcc,"Happy Birthday, Mom!!! @Sheri_Geyer https://t.co/pm9CeZR3ej" +09/26/2017,Actors,@IAMannalynnemcc,See you next week in Bogota! @oneyoungworld https://t.co/ukkLI1mTZu +09/24/2017,Actors,@IAMannalynnemcc,"""5 Touchdowns"" ""And how old is he?"" ""I don't know? Does it matter?"" Love these commentators #PatsNation #tombrady #thefckingGOAT" +09/19/2017,Actors,@IAMannalynnemcc,"#trailerdays tracewatkins decided he wants to be a photographer 😹 (love you, mean it)… https://t.co/BtxI0yYuem" +09/19/2017,Actors,@IAMannalynnemcc,Throwback to my darker dayz... https://t.co/59jmmYviHA +09/19/2017,Actors,@IAMannalynnemcc,First official week as Mrs. #ClaudiaCross -Methinks she seems like an older version of a girl I… https://t.co/u7cvjs4oI0 +09/14/2017,Actors,@IAMannalynnemcc,@Sinavann83gmai2 I'm proud of you sister 😘 https://t.co/Ch9TirAmrr +09/07/2017,Actors,@IAMannalynnemcc,RT @mosesbread72: Equality. https://t.co/NQ4pJt94AZ +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She's happy when she talk to her girls @IAMannalynnemcc you a our supper hero 😘morning from Cambodia everyone,let smiles 😀4…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She was rape then sold by her own mother,9 years we try to find her family,I spend 2day going village to other,now we found…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: No matter what we are happy for what we do to make other get hope,happy,my mission with my teams & girls @together1heart @IA…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Morning I love you❤️from Cambodia,our last day holiday @IAMannalynnemcc @together1heart @mspennypuppy @SusanSarandon @drdavi…" +09/05/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: 1 ofmy girl who has been reintegrated through Community-based education back to live with her family after long term recover… +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 1 abandoned by her own parents,1 got rape by her own father&rejected by her mother,1 got rape,my field work😢now my son go to…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 9 years old got rape,her mother sold her to the slavery,9 year she stayed at ur center,now she's ready to find her mother bu…" +09/04/2017,Actors,@IAMannalynnemcc,"Just one more taste, forbidden fruit. +I make it wrong. I need its due +He sings a song; a nightmare's rhyme. +A cry w… https://t.co/vBnfqWjWg7" +09/04/2017,Actors,@IAMannalynnemcc,#demboyz @UCLAFootball --- !!!!!!! Patriots style #comeback 35 unanswered points. #Rosen @josh3rosen +08/31/2017,Actors,@IAMannalynnemcc,"""To see a World in a Grain of Sand +And a Heaven in a Wild Flower +Hold Infinity in the palm of your hand +And Eternit… https://t.co/yoRTk3azla" +08/26/2017,Actors,@IAMannalynnemcc,"@trespink @SouthwestAir I appreciate you sharing your opinion. Honestly, I don't discriminate against discriminatio… https://t.co/8qjm2WqIXP" +08/26/2017,Actors,@IAMannalynnemcc,RT @JustJared: .@IAMannalynnemcc is speaking out after @SouthwestAir refused to let her gay friends honor the Family Boarding rule. https:/… +08/26/2017,Actors,@IAMannalynnemcc,RT @UKSAYSNOMORE: A healthy #relationship means communication and respect. Learn more + share: https://t.co/6TwrmHcke1 #UKSAYSNOMORE +08/26/2017,Actors,@IAMannalynnemcc,"#OPENLETTER to @southwestair +Dear Southwest Airlines, + +Have you ever felt bullied? Have you ever been picked on?..… https://t.co/co4F1f6vFw" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Jumping to raise awareness,jumping for a good cause in 10 minutes @IAMannalynnemcc I love you and thanks for everything that…" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Everything because of you,love can heals you love can heal pain,without love , peace ✌️ unconditional love ❤️ with @IAMannal…" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Survivors teaching victims to encourage them to have more confidence on them self,so proud to see them give back to other @I…" +08/20/2017,Actors,@IAMannalynnemcc,"I LIVED!!! +To my sisters and brothers around the world who have suffered and survived Modern… https://t.co/B2nes690WT" +08/19/2017,Actors,@IAMannalynnemcc,I believe in love. I believe in freedom. RT if you want to see the end of sex trafficking in our lifetime #18for18 #endsextrafficking +08/19/2017,Actors,@IAMannalynnemcc,"DONATE: $50, $250 or $500 shoutout! +Our vision is to see a world where women & children are safe from slavery...… https://t.co/PBbLINrKiy" +08/18/2017,Actors,@IAMannalynnemcc,Check out my 🇬🇧 🇬🇧friend @iamleftclothing 's awesome line!! @iamleftclothing #wearyourprinciples… https://t.co/826pYYPlwq +08/18/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Respecting people that's what I teach my girls & now our survivor @RatanaChan4 teach other how to respect🙏 @together1heart… +08/17/2017,Actors,@IAMannalynnemcc,John!! @Omikron7291 thank you so much for your donation to support my skydive to #EndSlavery https://t.co/ZRfU2p9IVM +08/17/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: She's going to the court again her uncle who rape her & other side her father going to prison bc he kill her mother😢 in 1 da… +08/16/2017,Actors,@IAMannalynnemcc,My baby angel 👼 😘😘 https://t.co/zaunTQylm4 +08/16/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: My girls works on morality&regulation.no matter who u gone true .The most important is about ethnical& respectful that they… +08/16/2017,Actors,@IAMannalynnemcc,Help me throw myself out of a ✈️ 2 help rescue girls like Srey Net so they can hv an education… https://t.co/vfm4bjYlqf +08/14/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Just see your post @Noraoeur7 you make me cry of happiness I am the most lucky mother thx @SusanSarandon @IAMannalynnemcc fo… +08/14/2017,Actors,@IAMannalynnemcc,Human Trafficking affects over 30 million people. YOU can stop it. Join me with #18for18ProjectRescue https://t.co/ZRfU2p9IVM PLZ PLZ RT 💜💜 +08/14/2017,Actors,@IAMannalynnemcc,⌚️ 6 days before I throw myself out of a plane at 18k ft to bring awareness to #endsextrafficking PLZ Donate https://t.co/ZRfU2p9IVM +08/14/2017,Actors,@IAMannalynnemcc,In case no one ever told you... in case you were made to feel the opposite... in case YOU don't tell YOU... in ca..… https://t.co/EpKifi7I1i +08/14/2017,Actors,@IAMannalynnemcc,"I'm so proud of you own,your work as psychology can help more victims& survivors 😘i love you @Noraoeur7 😘 thanks… https://t.co/3gbabmw2xg" +08/14/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Day out with my sweetheart @IAMannalynnemcc how great am I to be with a very sweet woman with a big heart ❤️ https://t.co/PH… +08/13/2017,Actors,@IAMannalynnemcc,"You make my heart warm, my darling daughter! So thankful for your love! ❤️❤️ https://t.co/spCLSQz1X8" +06/27/2018,Actors,@EmmaWatson,"RT @equalitynow: 'We are very pleased that Noura has won the court appeal against her death sentence...However, sentencing her to five year…" +06/17/2018,Actors,@EmmaWatson,Yesterday was #DayoftheAfricanChild and I celebrated my friend Alice in Zambia & her work to keep girls in school &… https://t.co/wU7c1O9fXF +06/11/2018,Actors,@EmmaWatson,"In awe of everybody at #Processions2018, some amazing artwork too! https://t.co/xlBMfiJEiJ" +06/09/2018,Actors,@EmmaWatson,"Happy Pride, everyone! #Pride" +05/24/2018,Actors,@EmmaWatson,"A vote for the freedom to choose, a vote for women's rights, a vote for women's control over their bodies, a vote f… https://t.co/zX0lmwEvCc" +05/23/2018,Actors,@EmmaWatson,Happy World Turtle Day! https://t.co/SclhKMDDOX +05/22/2018,Actors,@EmmaWatson,"RT @equalitynow: ""I’ve never spoken to her. I don’t know who she is. But she is my sister… and I can’t let her die for defending herself ag…" +05/17/2018,Actors,@EmmaWatson,"This #IDAHOT I stand in solidarity with LGBTQI activists who are fighting to have the same rights, freedoms, protec… https://t.co/pwUp1uASmu" +05/12/2018,Actors,@EmmaWatson,"New UK research from @womensaid found that one third of young women have experienced abuse in a relationship, & tha… https://t.co/Iw9deHtVgk" +05/03/2018,Actors,@EmmaWatson,"RT @UN_Women: What was the last story you read regarding women and girls' rights? On #WorldPressFreedomDay, let's work to better represent…" +05/03/2018,Actors,@EmmaWatson,"All power to Deepika Singh Rajawat ✊🏻 + +https://t.co/sZzDVcIFNo" +05/02/2018,Actors,@EmmaWatson,"Women in positions of power are seriously under-represented, and BAME women even more so. Only 4% of MPs are BAME w… https://t.co/sUIjDBQptD" +05/02/2018,Actors,@EmmaWatson,#TimesUp https://t.co/4dKpSrMnFV +05/02/2018,Actors,@EmmaWatson,RT @ava: We join the call to #MuteRKelly and insist on the safety + dignity of all women. We demand investigations into R. Kelly’s abuse al… +05/02/2018,Actors,@EmmaWatson,"Huge respect, admiration and love for you @AshleyJudd https://t.co/6Wfk4jQPsy" +04/28/2018,Actors,@EmmaWatson,Amazing to see the @goldmanprize dominated by women for the first time. Sending congratulations to the winners & re… https://t.co/YwzzukGVps +04/26/2018,Actors,@EmmaWatson,Love you so much Noma ❤️ https://t.co/VFyBQMJ6BG +04/24/2018,Actors,@EmmaWatson,"Remembering the 1,134 people killed at #RanaPlaza five years ago, and all the garment workers & trade unionists sti… https://t.co/83fFf2fsCQ" +04/22/2018,Actors,@EmmaWatson,"Love this girl 🇬🇧 @letitiawright +https://t.co/iuzQbWRKRN" +04/21/2018,Actors,@EmmaWatson,"RT @meghamohan: Made to clean homes in just their underwear. Raped by landlords. Silenced. + +And then something changed. + +I spoke with some…" +04/20/2018,Actors,@EmmaWatson,Huge congrats to Eve Ensler on completing the amazing run of In The Body of the World in NYC; I loved it. so beauti… https://t.co/BvBL6kTtLE +04/10/2018,Actors,@EmmaWatson,My heart is so full #TimesUp https://t.co/rPOhp6d3oC +04/04/2018,Actors,@EmmaWatson,"RT @vogueaustralia: A passionate reader who leaves books in public spaces and has her own online book club, Our Shared Shelf, @EmmaWatson c…" +03/27/2018,Actors,@EmmaWatson,So proud of the women representing #TimesUp UK at last week's @empiremagazine awards. Huge thanks to… https://t.co/CtWiUrnaeO +03/24/2018,Actors,@EmmaWatson,I'm proud to support the amazing students behind #MarchForOurLives. Today they are marching on Washington DC to dem… https://t.co/yBFD0d4nZn +03/08/2018,Actors,@EmmaWatson,Calling UK sisters! Get your walking shoes on for Million Women Rise on Saturday 10th March in London. Full details… https://t.co/UX9LMYVeha +03/08/2018,Actors,@EmmaWatson,Listen to my brilliant friends @MaraiLarasi from @Imkaan and @RWitherspoon & @MonicaRamirezDC speaking at the UN fo… https://t.co/YqUFlxjrNB +03/05/2018,Actors,@EmmaWatson,Fake tattoo proofreading position available. Experience with apostrophes a must. +02/27/2018,Actors,@EmmaWatson,Yessss Australian Vogue!!!!!!! https://t.co/JN7y5SrHxv +02/20/2018,Actors,@EmmaWatson,"Thank you @peterlindbergh I adore, adore, adore you. @vogueaustralia cover shoot styled by Hannes Hetta, hair by Od… https://t.co/ELbaL4H0oH" +02/20/2018,Actors,@EmmaWatson,"RT @SistersUncut: Refuge budgets have been slashed by almost a quarter, resulting in 1,000 women and children being turned away by refuges…" +02/19/2018,Actors,@EmmaWatson,I helped guest edit @vogueaustralia’s March issue dedicated to conversations about sustainability and “Designing th… https://t.co/7Te1mjA3Dz +02/19/2018,Actors,@EmmaWatson,RT @MaraiLarasi: Gr8 to hear @BAFTA Chair acknowledging the level of abuse that has taken place in the industry and some of the steps being… +02/18/2018,Actors,@EmmaWatson,"We are bringing it home to the UK! @timesupnow + +Link here and in my bio to donate to the UK Justice and Equality fu… https://t.co/wOxsFwwqgt" +02/15/2018,Actors,@EmmaWatson,RT @BFI: Watch @EmmaWatson announce our partnership with @BAFTA and key industry organisations to eradicate bullying & harassment in the sc… +02/06/2018,Actors,@EmmaWatson,"#100years ago in the UK, certain women became eligible to vote, & women were given the right to stand for Parliamen… https://t.co/0XD37G2guC" +02/01/2018,Actors,@EmmaWatson,Get ready @BAFTA #TimesUp https://t.co/GDLNSl9UH5 +01/29/2018,Actors,@EmmaWatson,RT @nowthisnews: Janelle Monáe's incredible #TimesUp speech was undoubtedly one of the best parts of the #Grammys https://t.co/gmYk3Qtklq +01/22/2018,Actors,@EmmaWatson,Auctioning our Golden Globes dresses to raise funds for TIME'S UP Legal Defense Fund. You can bid on my RVDK dress… https://t.co/xTsjVChAwI +01/15/2018,Actors,@EmmaWatson,@MaraiLarasi You were the best date on the most meaningful red carpet I have ever walked. Thank you for being so da… https://t.co/hIagR0mmub +01/10/2018,Actors,@EmmaWatson,RT @jes_chastain: Please go see Michelle's performance in All The Money in The World. She's a brilliant Oscar nominated Golden Globe winnin… +01/08/2018,Actors,@EmmaWatson,And I’m beaming. Love these ladies! #TIMESUP https://t.co/yiXlNC09r4 +01/08/2018,Actors,@EmmaWatson,So moving to be on the red carpet yesterday. Thank you to everyone who wore black in solidarity with us. ✊… https://t.co/uiBBsk705X +01/08/2018,Actors,@EmmaWatson,"""There is a wall of silence against women and violence, and every time a woman speaks out it breaks a crack in that wall."" - @MaraiLarasi" +01/07/2018,Actors,@EmmaWatson,"Globally, violence against women and girls affects 1 in 3 women in their lifetime. #TimesUp https://t.co/55MnFKwKo3" +01/07/2018,Actors,@EmmaWatson,Excited to be at the Golden Globes with you tonight Marai! @MaraiLarasi @Imkaan @TIMESUPNOW +01/02/2018,Actors,@EmmaWatson,"I stand with women across every industry to say #TIMESUP on abuse, harassment, marginalization and underrepresentat… https://t.co/d5Qyl8uakC" +12/28/2017,Actors,@EmmaWatson,The girls in this picture with me are the Columbus Sisters. Eleanor in particular has just started a production com… https://t.co/OU2yT4QRMM +12/26/2017,Actors,@EmmaWatson,Millennials go have the crap scared out of you and see #Belleville at @DonmarWarehouse. Performances are amazing. You wont regret it. +12/24/2017,Actors,@EmmaWatson,"This Christmas 30,000 children in Haiti are living in orphanages, exposed to exploitation & abuse. @JK_Rowling's ch… https://t.co/JNVPZ3AWRs" +12/22/2017,Actors,@EmmaWatson,A moving reminder that sexual harassment happens in all industries - not just my own: https://t.co/TSEodkTfDf To t… https://t.co/DDnEUg6mMb +12/07/2017,Actors,@EmmaWatson,Thank you to @TIME's Person of the Year- the SILENCE BREAKERS for your voices in this time of change. https://t.co/jUwITSW1qo +11/28/2017,Actors,@EmmaWatson,I first met Alice in Zambia in 2012 & we celebrated #IWD2017 together. She’s an amazing activist who was once at ri… https://t.co/TMjvG6TkG4 +11/21/2017,Actors,@EmmaWatson,One day left to bid on a pair of my signed boots to support @smallstepsdocs. Help children in poverty gain access t… https://t.co/slDFC6vrmk +11/20/2017,Actors,@EmmaWatson,https://t.co/qNf8SPZkGY #MexicoRises https://t.co/eSuhbl0ghj +11/16/2017,Actors,@EmmaWatson,Ps - Oh and the film is amazing! The whole cast puts on an incredible performance and Steve directs with all the he… https://t.co/sdgrDNvNdt +11/16/2017,Actors,@EmmaWatson,"I love seeing inspiring books turned into films. @WonderTheMovie, directed by my friend Steve Chbosky, is out this… https://t.co/S5LktMMYfg" +10/16/2017,Actors,@EmmaWatson,"RT @fawcettsociety: This #BlackHistoryMonth we're remembering British women who made history. Among them, Claudia Jones, Olive Morris & Mar…" +10/10/2017,Actors,@EmmaWatson,"In this instance it was women affected but I also stand with all the men, indeed any person, who has suffered sexual harassment." +10/10/2017,Actors,@EmmaWatson,"I stand with all the women who have been sexually harassed, and am awestruck by their bravery. This mistreatment of women has to stop." +10/04/2017,Actors,@EmmaWatson,Help those in Mexico devastated by the earthquakes #MexicoRises https://t.co/zRUYG4W0X7 & https://t.co/6yLsnzoDRb +10/02/2017,Actors,@EmmaWatson,"RT @SadiqKhan: As a proud feminist, I'm delighted that we will bring the first ever statue of a woman to Parliament Square. https://t.co/jA…" +10/02/2017,Actors,@EmmaWatson,@SadiqKhan About time too! : ) +09/26/2017,Actors,@EmmaWatson,This is AWESOME Anoosha! @foxville_art https://t.co/DcD9D2s03t +09/23/2017,Actors,@EmmaWatson,Very excited to hear @melindagates announce $20M for underfunded women's movements. Congratulations @mamacash & others x #HowEqualityHappens +09/21/2017,Actors,@EmmaWatson,A timely reminder of why we must invest in the power of women's movements: https://t.co/PW7Z14MVJj #Goalkeepers17 #HowEqualityHappens +09/21/2017,Actors,@EmmaWatson,Modern slavery affects 40m people: 71% are women and girls. New report launched at #UNGA today:… https://t.co/qyPy2w1Xl6 +09/11/2017,Actors,@EmmaWatson,RT @rgay: Hunger is the next selection for Emma Watson's Our Shared Shelf book club: https://t.co/jqt09NlpNX +08/31/2017,Actors,@EmmaWatson,RT @shondarhimes: People. One million young immigrant #DREAMers will be at risk of deportation if #DACA is ended. One MILLION. We must #Def… +08/14/2017,Actors,@EmmaWatson,"THANK YOU SO MUCH to everybody who voted for me and @beourguest! Such lovely news to wake up to! Means a lot to me, thank you @TeenChoiceFOX" +08/01/2017,Actors,@EmmaWatson,Good luck at the @UEFAWomensEURO semi-final on Thursday #Lionesses! Will be cheering you on! ⚽️ +07/19/2017,Actors,@EmmaWatson,"Reward for information leading to return of rings lost Sunday 16th July at Mandarin Oriental spa, London: https://t.co/w9EHqZ8bmR xx" +07/14/2017,Actors,@EmmaWatson,I interviewed @MargaretAtwood for @EW and my book club https://t.co/jzDJYb7bi0. Such an honour! Full interview here… https://t.co/YIZpInItpS +07/11/2017,Actors,@EmmaWatson,Welcome @Malala! It is so exciting to have you on Twitter ❤ +06/21/2017,Actors,@EmmaWatson,I'm hiding copies of The Handmaid's Tale in Paris! Je cache des copies de La Servante Ecarlate dans tout Paris!… https://t.co/WSFbiVicG3 +05/15/2017,Actors,@EmmaWatson,One week left to register for your right to vote in UK election: https://t.co/3FjKcTfIiH #UseYourVoice https://t.co/jP8lWAkARq +05/08/2017,Actors,@EmmaWatson,Thank you @MTV for a wonderful evening and thank you to everyone who voted for me! ❤️🍿 #MTVAwards @beourguest +04/27/2017,Actors,@EmmaWatson,"💚 + +https://t.co/YQqrjeAfIr" +04/24/2017,Actors,@EmmaWatson,"I'm remembering #RanaPlaza today, four years on... Please consider #whomademyclothes + +https://t.co/KtIgR86qEc" +04/24/2017,Actors,@EmmaWatson,RT @Twitter: Join us Monday for a fireside chat with @jack and the cast of @WeAreTheCircle LIVE from Twitter HQ! #TheCircle https://t.co/gZ… +04/22/2017,Actors,@EmmaWatson,"So cool, @iamjonsi has created a song for @WeAreTheCircle ⭕️🎶 + +https://t.co/NrsOdeVikj" +04/21/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: When @EmmaWatson enters #TheCircle, all secrets will be undone. In theaters in ONE WEEK. Get tickets now: https://t.co/…" +04/13/2017,Actors,@EmmaWatson,RT @WeAreTheCircle: The perfect company. The perfect job. The perfect lie. #TheCircle - In theaters April 28. https://t.co/lfw0BZhmRz +04/13/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: Once you’re in, there’s no turning back. #TheCircle - Only in theaters April 28. https://t.co/YyJk7VhUC9" +04/05/2017,Actors,@EmmaWatson,"On average, women in the US are paid 20% less than men – and black & Hispanic women are paid even less. I support e… https://t.co/Y5aY7l3Cl0" +04/04/2017,Actors,@EmmaWatson,⭕️ @WeAreTheCircle xx https://t.co/cG6CF8NzVv +03/29/2017,Actors,@EmmaWatson,"I interviewed the brilliant Eve Ensler for @ELLEUK and #OurSharedShelf, here's part one! https://t.co/P59dpN3m6B" +03/29/2017,Actors,@EmmaWatson,https://t.co/8jdQ3axXul 🌹❤️ +03/22/2017,Actors,@EmmaWatson,Thank you to everyone who saw our film Beauty and the Beast! I saw so many lovely photos of families at the cinema… https://t.co/CiHSE9rB6R +03/17/2017,Actors,@EmmaWatson,"#BeautyAndTheBeast opens today! I hope you have as much fun watching it as I did making it. Love, Emma 🌹 @beourguest https://t.co/CoNaybGFqS" +03/16/2017,Actors,@EmmaWatson,"😻😻😻😻😻😻 + +@bestfriends @BuzzFeed @beourguest #BeautyAndTheBeast + +https://t.co/SNs1bIGuI1" +03/14/2017,Actors,@EmmaWatson,Not long to go until the big day! 🌹@beourguest #BeautyAndTheBeast https://t.co/U3RFJlZAzQ +03/11/2017,Actors,@EmmaWatson,Follow https://t.co/9OPIAyympV for a peek behind-the-scenes of our @beourguest press tour. Plus surprise kittens! (… https://t.co/SttvmXAdij +03/09/2017,Actors,@EmmaWatson,https://t.co/KROEfmGdE3 #IWD2017 https://t.co/rtsJwKzh9o +03/09/2017,Actors,@EmmaWatson,RT @MCeliaCR: George V!! #HalfTheSky is right next to you! ❤ #IWDoursharedshelf #ibelieveinbookfairies @the_bookfairies @ViragoBooks https:… +03/09/2017,Actors,@EmmaWatson,Dropping off books at Eleanor Roosevelt's monument✊📚#IWD #IWDOurSharedShelf #ADayWithoutAWoman… https://t.co/OTEcAcWghw +03/09/2017,Actors,@EmmaWatson,Dropping off books at Gertrude Stein statue in NYC✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies… https://t.co/hgWb3sK3mo +03/09/2017,Actors,@EmmaWatson,Dropping off books at the Joan of Arc memorial in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman… https://t.co/kgvvoGGgb1 +03/09/2017,Actors,@EmmaWatson,Dropping off books at @bluestockings bookstore in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies https://t.co/6Se2KbIZEQ +03/09/2017,Actors,@EmmaWatson,Dropping off books at Harriet Tubman memorial in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies… https://t.co/FjVh9SLIWI +03/08/2017,Actors,@EmmaWatson,#InternationalWomensDay #IWD https://t.co/GCroQSkQwH +03/08/2017,Actors,@EmmaWatson,Today I'm a red-striking ninja book-fairy out to spread some wise women's words @the_bookfairies #IWDOurSharedShelf… https://t.co/xFgd3KwBiI +03/08/2017,Actors,@EmmaWatson,"From midnight NYC time, book fairies around the WORLD will start hiding feminist books to mark #IWD #IWDoursharedshelf @the_bookfairies 📚" +03/07/2017,Actors,@EmmaWatson,RT @IntoTheGloss: Today's Top Shelf: @EmmaWatson https://t.co/wWCRwODVqJ https://t.co/skJ7XI0CWy +03/07/2017,Actors,@EmmaWatson,RT @Coveteur: Go inside @EmmaWatson's closet: https://t.co/8e2qPR3lgj https://t.co/GUwTQVGhaa +03/07/2017,Actors,@EmmaWatson,This is the part of my 2014 interview with Tavi where we talked about Beyoncé. My words are in bold. https://t.co/Y8vumOeyDT +03/05/2017,Actors,@EmmaWatson,Via BBC News - Bath Film Festival's F-Rating added to online film site IMDb https://t.co/D87ftiHxLj +03/03/2017,Actors,@EmmaWatson,RT @TheEllenShow: I sent @EmmaWatson to interview a nanny with hidden cameras. P.S. She doesn’t have kids. https://t.co/g2zYEj0q2b +03/01/2017,Actors,@EmmaWatson,RT @VanityFair: Go behind the scenes of Tim Walker's Vanity Fair cover shoot with @EmmaWatson. https://t.co/d2TnNXYVTo +02/28/2017,Actors,@EmmaWatson,"Thank you Graydon Carter, Tim Walker and @DerekBlasberg for my @VanityFair cover🌹https://t.co/0cwQv7yU42 https://t.co/n72imoeDjy" +02/27/2017,Actors,@EmmaWatson,Devastated to hear about Bill. A privilege to have worked with him. What a huge-hearted man. All my love to his family. +02/23/2017,Actors,@EmmaWatson,Follow the link for a chance to win tickets to a special screening of #BeautyandtheBeast in London tonight! https://t.co/sJvaBi5b1d x +02/22/2017,Actors,@EmmaWatson,https://t.co/p2eKUZWCSw ❤ +02/21/2017,Actors,@EmmaWatson,What a privilege to have worked with the genius that is Alan Menken 🎶🎵🎶 @beourguest #aladdin #pocahontas… https://t.co/r4Lf0fF5i7 +02/19/2017,Actors,@EmmaWatson,"Day one of the @beourguest press tour with Team Watson! I’ve started a new Instagram called ""the_press_tour"" so you… https://t.co/WVBYiM0I1h" +02/18/2017,Actors,@EmmaWatson,"RT @gatesfoundation: One of the biggest and oldest challenges is making sure people understand the lifesaving, poverty-ending power of cont…" +02/17/2017,Actors,@EmmaWatson,".@gatesfoundation: ""Poverty is sexist"" https://t.co/iTsGRbSiA6" +02/17/2017,Actors,@EmmaWatson,".@gatesfoundation: ""Contraceptives are one of the greatest antipoverty innovations in history"" https://t.co/CkqOcXL5Z3" +02/17/2017,Actors,@EmmaWatson,Reading the @gatesfoundation annual letter has lifted my spirits! https://t.co/Od7G6RvjGe +02/16/2017,Actors,@EmmaWatson,Thank you @EW! #BeOurGuest @beourguest https://t.co/hBSjtZqjFp +02/14/2017,Actors,@EmmaWatson,RT @beourguest: Like this tweet to get a special #BeOurValentine message from a cast member of #BeautyAndTheBeast! ❤️🌹❤️ #BeOurGuest on Mar… +02/12/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: Watch the new trailer for #TheCircle, the provocative thriller based on the acclaimed novel starring @EmmaWatson and @T…" +01/31/2017,Actors,@EmmaWatson,"RT @beourguest: The trailer for Beauty and the Beast is here 🌹 On 3.17, rediscover a tale as old as time.  Get your tickets now at https://…" +01/30/2017,Actors,@EmmaWatson,RT @c_poesy: ... https://t.co/pqyxVSb5GW +01/26/2017,Actors,@EmmaWatson,🌹 @beourguest 🌹 https://t.co/jbWYbXJQrD +01/23/2017,Actors,@EmmaWatson,https://t.co/5Dp3fUeQEp +01/22/2017,Actors,@EmmaWatson,#WomensMarch https://t.co/HkSrOqFTmk +01/22/2017,Actors,@EmmaWatson,#WomensMarch https://t.co/dYZPxJ13FI +01/22/2017,Actors,@EmmaWatson,"RT @PPIAction: “It's not our differences that divide us. It is our inability to recognize, accept,& celebrate those differences.” Audre Lor…" +01/22/2017,Actors,@EmmaWatson,RT @Almaharel: These women never met till today and practiced this song online. Show them some love. #Icantkeepquiet #WomensMarch #WomensMa… +01/22/2017,Actors,@EmmaWatson,RT @HuffingtonPost: Watch 6-year-old Sophie Cruz give one of the best speeches of the #WomensMarch https://t.co/DD044cKQus https://t.co/wVu… +01/21/2017,Actors,@EmmaWatson,https://t.co/kDHkIWMzQz +01/21/2017,Actors,@EmmaWatson,RT @aliciakeys: No matter where you were today... We sent a powerful message! https://t.co/vj0j1Xvxvy #WomensMarch #WhyIMarch #WomensRights… +01/21/2017,Actors,@EmmaWatson,RT @astroehlein: Women's rights are human rights - #WomensMarch https://t.co/RMqmtvdz7y +01/21/2017,Actors,@EmmaWatson,RT @tatianamaslany: ❤️💛💚💙💜✊🏿✊🏾✊🏽✊🏼✊🏻 sending love solidarity strength to everyone across the world marching for human rights!!! #WomensMarc… +01/21/2017,Actors,@EmmaWatson,#IStandWithPP Why the fight for reproductive rights goes on: https://t.co/VF2JCmDKwq +01/13/2017,Actors,@EmmaWatson,RT @RollingStone: Common and the National will headline a Planned Parenthood benefit concert before the inauguration ceremony https://t.co/… +01/13/2017,Actors,@EmmaWatson,The wonderful @Lin_Manuel is fundraising for @PPact - a great way to #StandWithPP & win the chance to see Hamilton https://t.co/9JYiVBlHyO +01/09/2017,Actors,@EmmaWatson,"Beauty and the Beast is on the cover of the new issue of @totalfilm, out later this week! 🌹@beourguest https://t.co/TLzATBC2og" +01/09/2017,Actors,@EmmaWatson,"RT @beourguest: On March 17, experience an adventure in the great wide somewhere. #BeOurGuest https://t.co/NUAUtpMfsH" +01/08/2017,Actors,@EmmaWatson,New poster for Beauty and the Beast! @beourguest 🌹 https://t.co/iE6YzVCKus +01/08/2017,Actors,@EmmaWatson,RT @THR: Watch the First Trailer for Hulu's 'Handmaid's Tale’ https://t.co/hl6kKnrLX3 https://t.co/AdC5FYRHFQ +01/03/2017,Actors,@EmmaWatson,Bangladesh garment factories sack hundreds after pay protests https://t.co/wGXSwlbA9n +12/27/2016,Actors,@EmmaWatson,"RT @stephenfry: She was the brightest, funniest, bravest, kindest, cleverest and sweetest person I ever knew. A crushing blow to lose @carr…" +12/27/2016,Actors,@EmmaWatson,RT @GlblCtzn: Wow! @adidas is aiming to produce 1 million pairs of the sneakers from more than 11 million plastic bottles. https://t.co/CH2… +12/22/2016,Actors,@EmmaWatson,RT @ktparkerphoto: Advance copies of the #strongisthenewpretty book came in today. ❤️❤️❤️ so excited! @WorkmanPub https://t.co/8jAWOuTceB +12/19/2016,Actors,@EmmaWatson,RT @TIME: Wonder Woman breaks through https://t.co/A8S6IyuerL +12/16/2016,Actors,@EmmaWatson,RT @HouseofCommons: MPs vote 135 to 2 to approve Preventing & Combating Violence Against Women & Domestic Violence. The Bill progresses to… +12/15/2016,Actors,@EmmaWatson,I have signed the @Independent's open letter and I urge all UK MPs to vote to ratify the Istanbul Convention tomorr… https://t.co/Q8L1luhZck +12/13/2016,Actors,@EmmaWatson,Tweet your MP : https://t.co/5aeIfgHTZy +12/13/2016,Actors,@EmmaWatson,How to find your MP : https://t.co/TTSxApXok1 +12/13/2016,Actors,@EmmaWatson,RT @SWCwomen: 3 Days to go! #IstanbulConvention #changeherstory #16DaysOfActivism #SWC16 @ICChangeUK @AngelaCrawleyMP @EmmaWatson https://t… +12/12/2016,Actors,@EmmaWatson,RT @nathansparkling: Listen to @eilidhwhiteford's interview with @bonisones2 for Women's Parliamentary Radio on #IstanbulConvention https:… +12/12/2016,Actors,@EmmaWatson,RT @ICChangeUK: On Friday we're fighting to #ChangeHerstory. The #IstanbulConvention is a vital tool in ending violence against women. It's… +12/12/2016,Actors,@EmmaWatson,RT @fawcettsociety: Make sure your MP attends the Second Reading of the #IstanbulConvention Bill on 16th Dec to #changeherstory. https://t.… +12/12/2016,Actors,@EmmaWatson,"RT @ICChangeUK: Here's exactly why the #IstanbulConvention is so important, and why we need to ratify it now: #ChangeHerstory https://t.co/…" +12/12/2016,Actors,@EmmaWatson,RT @ICChangeUK: The #IstanbulConvention aims to ensure women live lives free from violence & free from the fear of violence. Time to ratify… +12/06/2016,Actors,@EmmaWatson,"RT @WeAreTheCircle: Knowing is good. Knowing everything is better. See #TheCircle starring @TomHanks, @EmmaWatson, @JohnBoyega and @KarenGi…" +12/05/2016,Actors,@EmmaWatson,"RT @ChrisEvans: Wow. I will never look at this film, Bertolucci or Brando the same way again. This is beyond disgusting. I feel rage https:…" +12/05/2016,Actors,@EmmaWatson,RT @Pharrell: Solid proof that people coming together can change things for the better. https://t.co/5fLEGFYpmR +11/26/2016,Actors,@EmmaWatson,RT @Elif_Safak: Günün en güzel fotoğrafı... Turkey's women fight for their rights #ViolenceAgainstWomen #herHALdedireniyoruz (via @demishev… +11/25/2016,Actors,@EmmaWatson,RT @ForestWhitaker: #ViolenceAgainstWomen violates the fundamental human rights of millions of girls & women across the world. We should al… +11/25/2016,Actors,@EmmaWatson,"RT @UN_Women: For Int'ntl Day to End Violence against Women, we #orangetheworld and say NO to violence from Australia to Belgium and from C…" +11/25/2016,Actors,@EmmaWatson,RT @edgarramirez25: Today 11/25 I say NO to violence against women and girls. Do you? #InternationalDayForTheEliminationOfViolenceAgainstWo… +11/25/2016,Actors,@EmmaWatson,"RT @JustinTrudeau: Today, I encourage all dads to take #20MinutesofAction4Change & talk to your sons about consent, boundaries & respect fo…" +11/25/2016,Actors,@EmmaWatson,"RT @kellyslater: Today is #WhiteRibbonDay, a day to educate and raise awareness about violence against women. The… https://t.co/D9OZkbCdi8" +11/25/2016,Actors,@EmmaWatson,"RT @patagonia: 100% today, 1% every day. Today, we’re donating 100% of sales to grassroots environmental groups. #LoveOurPlanet: https://t.…" +11/21/2016,Actors,@EmmaWatson,"RT @lennyletter: Lennys, #WomenOfTheHour is finally back! Make sure to check out the first episode, ""Trapped"" and subscribe: https://t.co/X…" +11/21/2016,Actors,@EmmaWatson,Have you seen @fantasticbeasts ? If you have did you love it as much as I did? 🐯🐵🐍🐛🐉 +11/21/2016,Actors,@EmmaWatson,RT @BritishVogue: Who said you can only wear that knockout party dress once? https://t.co/65drbSPmsA https://t.co/Dm0BOxhFAd +11/17/2016,Actors,@EmmaWatson,MUST WATCH #girlpower https://t.co/URlJKNqqWh +11/16/2016,Actors,@EmmaWatson,@VogueRunway @voguemagazine Thank you ! X +11/15/2016,Actors,@EmmaWatson,"RT @lumos: ""This is a solvable problem."" @jk_rowling calls on you to help spread the word about the 8 million children hidden in orphanages…" +11/15/2016,Actors,@EmmaWatson,"RT @jk_rowling: Rage is to righteousness as certainty is to wisdom. Constantly mistaken for each other, they're hardly ever in the same roo…" +11/14/2016,Actors,@EmmaWatson,"RT @beourguest: Watch the brand new trailer for #BeautyAndTheBeast, starring @EmmaWatson & @ThatDanStevens 🌹 #BeOurGuest 3.17.17 https://t.…" +11/14/2016,Actors,@EmmaWatson,RT @TheRealLukevans: A tale as old as time... World premiere of the #BeautyAndTheBeast trailer coming tomorrow on @GMA #BeOurGuest https:/… +11/11/2016,Actors,@EmmaWatson,RT @AVAETC: Some beauty and connection and compassion and hope for you on this Friday. Courtesy of @JohnLegend. xo https://t.co/Xz93Uz7YMc +11/10/2016,Actors,@EmmaWatson,So happy to show all of you the new teaser poster for Beauty and the Beast! I hope you like it. Love Emma x… https://t.co/bowDymL3eD +11/09/2016,Actors,@EmmaWatson,"RT @BooksSubway: A beautiful post, thanks to @Waterstones Leadenhall Market for sharing this quote from Maya Angelou. #oursharedshelf @ours…" +11/09/2016,Actors,@EmmaWatson,.@DrMayaAngelou https://t.co/H4yVuVDTKL +11/09/2016,Actors,@EmmaWatson,.@BooksSubway @BooksUndergrnd @DrMayaAngelou #Mom&Me&Mom #OurSharedShelf https://t.co/sSXZBVFjLz +11/09/2016,Actors,@EmmaWatson,Today I am going to deliver Maya Angelou books to the New York subway. Then I am going to fight even harder for all the things I believe in. +11/06/2016,Actors,@EmmaWatson,"RT @BBCOne: Gangster. Penguins. 🐧 +(You'll want to turn the sound on...) +#PlanetEarth2. Starts tonight. 8pm. @BBCOne. https://t.co/xP1HrXa0u2" +11/06/2016,Actors,@EmmaWatson,I'm home and really geeking out over this - #PlanetEarth2 starts TONIGHT at 8pm on @BBCOne & 9pm on BBC Earth Nordics. Can't wait! +11/02/2016,Actors,@EmmaWatson,RT @EW: Be our guest for an exclusive first look at @Disney’s magical and romantic live-action #BeautyAndTheBeast! https://t.co/jniafxmEpV… +11/01/2016,Actors,@EmmaWatson,"RT @BooksUndergrnd: Copies of the #OurSharedShelf read Mom&Me&Mom travel the tube today, with a special something inside from @EmWatson htt…" +10/31/2016,Actors,@EmmaWatson,If you’re in London keep your eyes peeled for a surprise on the tube tomorrow… #OurSharedShelf #Mom&Me&Mom @BooksUndergrnd +10/28/2016,Actors,@EmmaWatson,RT @MalalaFund: Aziz Ansari is inviting YOU to the Master of None Season 2 set! Support Malala Fund & girls’ education by entering: https:/… +10/25/2016,Actors,@EmmaWatson,https://t.co/gNs07Q9AQf +10/17/2016,Actors,@EmmaWatson,This makes me so proud to have been part of @TheWorldsLesson. Take a look and take part if you haven't already! https://t.co/j7z4aIJnZI +10/16/2016,Actors,@EmmaWatson,RT @UN_Women: Chief Kachindamoto has annulled over 330 child marriages in Malawi since 2013. Learn about her work: https://t.co/3fPu3jYgJv… +10/04/2016,Actors,@EmmaWatson,Was inspiring & so fun to meet with my @OneYoungWorld Ottawa gender equality scholars. Proud of them all! #goal5… https://t.co/WfPT9Mdo6t +09/30/2016,Actors,@EmmaWatson,Amazing night at the @OneYoungWorld Ottawa opening ceremony yesterday! @justinpjtrudeau @KofiAnnan @Yunus_Centre https://t.co/jmwQunE64k +09/29/2016,Actors,@EmmaWatson,"Ready for anything after @SheFighter training with @lino1984, one of my amazing @OYWOttawa scholars. https://t.co/bfJOpB1rLC" +09/29/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: ""I am here to network, to hear other people ideas, their success stories and get inspired.""- Abhinav Khanal, Nepal #OYWM…" +09/29/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: For the first time ever, the refugee flag is a part of the #OYW Flag Bearing Ceremony, tonight in the nations capital at…" +09/29/2016,Actors,@EmmaWatson,"RT @CanadianPM: PM Trudeau meets with @KofiAnnan, @EmWatson and Mary Robinson on the margins of the @OneYoungWorld Summit. #OYW https://t.c…" +09/29/2016,Actors,@EmmaWatson,"RT @ftlive: This morning, @JustineGreening told #FTWomen: It's up to our generation to make gender equality happen. https://t.co/SmwcqIPYnt" +09/28/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: BIG news: Goodwill Ambassador for @UN_Women & actor, Emma Watson, comes to @OYWOttawa to meet young activists fighting f…" +09/28/2016,Actors,@EmmaWatson,RT @JustinTrudeau: .@EmWatson is a champion for gender equality worldwide. It's a pleasure welcoming you to Ottawa ahead of the @OneYoungWo… +07/01/2018,Actors,@LeoDiCaprio,"We produced the documentary, @virungamovie, a few years ago to raise awareness about the need to protect the last m… https://t.co/hWmpU9CbI4" +06/30/2018,Actors,@LeoDiCaprio,"RT @LionRecovery: We have lost half of Africa's #lions in just 25 years. Along with our many grantees and partners, we are committed to res…" +06/29/2018,Actors,@LeoDiCaprio,Congrats to @KingoEnergy. Proud to invest in and be an advisor for Kingo as they work to eradicate energy poverty. https://t.co/wonCZB4j6K +06/28/2018,Actors,@LeoDiCaprio,https://t.co/DvkSdDvers +06/28/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: #Nature4Climate is a new campaign to help raise the profile of #nature as a critical response to #ClimateChange. Help give… +06/27/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: As Carbon Dioxide Levels Rise, Major Crops Are Losing Nutrients https://t.co/yXeTGN4LLP #climatechange https://t.co/uMxsUV…" +06/20/2018,Actors,@LeoDiCaprio,RT @ClimateReality: Sign our #ClimateMajority pledge and let the @WhiteHouse know that Americans support commonsense solutions to the clima… +06/17/2018,Actors,@LeoDiCaprio,RT @ozy: A 17-year-old activist is not uncommon these days. But @NalleliCobo has been challenging the oil industry since age 9 when toxic c… +06/16/2018,Actors,@LeoDiCaprio,RT @EURACTIV: EU strikes deal on 32% renewable energy target and palm oil ban after all-night session https://t.co/8vZfvIZdvm +06/15/2018,Actors,@LeoDiCaprio,RT @NewsHour: Antarctica is losing ice twice as fast as anyone thought https://t.co/5yd87lw9gp +06/15/2018,Actors,@LeoDiCaprio,Great news from @DiCaprioFdn and @TompkinsConserv’s rewilding project. Learn more. https://t.co/tSnZvWZLM0 +06/15/2018,Actors,@LeoDiCaprio,"RT @oceana: An estimated 8 million metric tons of plastic is dumped into the ocean each year. + +It's time to #BreakFreeFromPlastic. https://…" +06/14/2018,Actors,@LeoDiCaprio,A great read on the always inspiring @laurenepowell. cc: @EmCollective https://t.co/2HFLr653dq +06/12/2018,Actors,@LeoDiCaprio,.@DiCaprioFdn is partnering w/ Porky Hefer on this project that uses eco-friendly art to bring attention to the iss… https://t.co/8sE26gVwR9 +06/12/2018,Actors,@LeoDiCaprio,RT @RubiconGlobal: .@J_WintersLDF of the @dicapriofdn joins us on the Town Haul for a #WorldOceansDay celebration! Tune in here: https://t.… +06/11/2018,Actors,@LeoDiCaprio,RT @nytimesworld: Executives from the world’s biggest oil companies and money managers were summoned to the Vatican for a two-day conferenc… +06/11/2018,Actors,@LeoDiCaprio,RT @NatGeoMaps: This refuge may be the most contested land in the U.S. https://t.co/qweg7rbxvy https://t.co/Hjvmx7DYLe +06/08/2018,Actors,@LeoDiCaprio,"Learn about @OnlythismuchSA, a new campaign advancing the protection of the oceans around South Africa.… https://t.co/ymEcnU1zyA" +06/08/2018,Actors,@LeoDiCaprio,"RT @RobertKennedyJr: Defending CA’s coast & rivers against pollution, trash & oil spills is a tough job, especially with #Trump & #Pruitt w…" +06/08/2018,Actors,@LeoDiCaprio,"This #WorldOceansDay, @DiCaprioFdn partner @GlobalFishWatch is helping to bring transparency to global fishing, sup… https://t.co/nisro3yi7s" +06/07/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Half the world’s population depends on mountain ecosystems, yet climate change is threatening their continued existence. I…" +06/06/2018,Actors,@LeoDiCaprio,RT @NG_PristineSeas: Our new @NG_PristineSeas study with @sfgucsb @GlobalFishWatch @UBC @SeaAroundUs @UWAnews reveals that without large go… +06/06/2018,Actors,@LeoDiCaprio,RT @GlblCtzn: The Great Pacific Garbage Patch is about to get cleaned up – thanks to one ambitious 23-year-old! https://t.co/6XYjoX0r9q +06/06/2018,Actors,@LeoDiCaprio,"RT @antonioguterres: Our world is swamped by harmful plastic waste. By 2050, there could be more plastic in the ocean than fish. On World E…" +06/05/2018,Actors,@LeoDiCaprio,"RT @voxdotcom: If Democrats have any chance of winning back the majority in the House of Representatives, they’ll have to make huge gains i…" +06/03/2018,Actors,@LeoDiCaprio,RT @business: Carmakers in letter to Trump's White House: “Climate change is real” https://t.co/eRTp8UCcGb https://t.co/B5JA83dV3z +06/01/2018,Actors,@LeoDiCaprio,"RT @NRDC: While Trump indicated his plan to withdraw the U.S. from the #ParisAgreement a year ago, the number of U.S. cities, universities,…" +06/01/2018,Actors,@LeoDiCaprio,"RT @Everytown: ""Too many young men and women are being killed before they can walk across a stage for their high school diploma or go for t…" +05/31/2018,Actors,@LeoDiCaprio,"RT @terrytamminen: NASA head Jim Bridenstine, once doubtful, confirms he believes humans are the leading cause of climate change https://t.…" +05/30/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Great article on LDF's Shark Conservation Fund’s creation of a protected swim way/corridor between Cocos Island and the Ga… +05/30/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: New study shows the human race is just 0.01% of all life but has destroyed over 80% of wild mammals https://t.co/fM5mhOwFE… +05/27/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Congress attempts to squelch Judicial review of California’s most expensive water project: What are they afraid of? https:… +05/25/2018,Actors,@LeoDiCaprio,The Waorani people are showing the world what indigenous resistance on the frontlines of oil extraction looks like.… https://t.co/OzsJFxCTQJ +05/25/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: .@DriveH2, in collaboration with LDF & @CAHydrogen, just released a roadmap outlining key strategies to promote renewable…" +05/23/2018,Actors,@LeoDiCaprio,"Stand with the Waorani people, united in resistance, by signing their declaration that their rainforest is not for… https://t.co/1fSDjwzK9G" +05/23/2018,Actors,@LeoDiCaprio,Great initiative from @PLGreenChalleng. Learn more here: https://t.co/Ly6031A90k https://t.co/J2Xh9a1ZrE +05/22/2018,Actors,@LeoDiCaprio,"RT @UNBiodiversity: Happy #IntlBiodiversityDay! We celebrate nature's beauty & wonder, and all the people working hard to safeguard it. Muc…" +05/18/2018,Actors,@LeoDiCaprio,RT @FastCompany: Every new house built in California will soon have solar power https://t.co/tdfPfyVclV +05/17/2018,Actors,@LeoDiCaprio,RT @terrytamminen: Agricultural polluters are trying to hijack a clean water bill in California https://t.co/G87NRmTYhp +05/17/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: New study finds that rural communities can create more jobs with better wages by focusing wildfire-related resources on su… +05/16/2018,Actors,@LeoDiCaprio,"RT @NRDC: ""So much for draining the swamp, Mr. President. Pruitt is polluting the swamp."" John Slattery and Fisher Stevens explain why Trum…" +05/11/2018,Actors,@LeoDiCaprio,"RT @mongabay: The newly described orangutan species is critically endangered & yet is poised to lose 1/4 of its known habitat to dams, road…" +05/11/2018,Actors,@LeoDiCaprio,RT @nytimes: Hawaii is the first state to pass a bill banning the sale of sunscreen containing chemicals believed to harm coral reefs https… +05/09/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Good news for #renewables! https://t.co/EBMh4yCMPA via @business +05/08/2018,Actors,@LeoDiCaprio,Proud that Appian Way took part in producing this film. In theaters November 21. #RobinHoodMovie https://t.co/iT4rT25T36 +05/06/2018,Actors,@LeoDiCaprio,RT @mashable: Earth just soared past yet another climate change milestone https://t.co/DKxFoJaPx2 +05/06/2018,Actors,@LeoDiCaprio,"RT @EricHolthaus: April’s monthly average atmospheric carbon dioxide concentration breached 410 parts per million. + +The last time that happ…" +05/05/2018,Actors,@LeoDiCaprio,"RT @NRDC: Our whales, dolphins, seals, and manatees need continued protection under the #MMPA. Take action: https://t.co/l89UH9Cyb3 https:/…" +05/03/2018,Actors,@LeoDiCaprio,The inspirational #JaneGoodall at Monday’s philanthropy dinner following the Milken Institute Global Conference. https://t.co/m2yz2Var5G +05/02/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: #Climatechange will leave many Pacific Islands uninhabitable by mid-century, study says https://t.co/JnJHbcT3q0 via @insi…" +04/29/2018,Actors,@LeoDiCaprio,"RT @nytclimate: Until now, communities suing fossil fuel companies over the costs of dealing with climate change have been on the coasts. N…" +04/29/2018,Actors,@LeoDiCaprio,RT @NYTmag: This week's cover: Can Dirt Save the Earth? Agriculture could pull carbon out of the air and into the soil — but it would mean… +04/27/2018,Actors,@LeoDiCaprio,RT @nature_org: Biodiversity. Jobs. Air quality. Just a few of the many benefits that come from planting trees. https://t.co/bC4dQkt1nK #Ar… +04/27/2018,Actors,@LeoDiCaprio,"RT @yayitsrob: Three years ago, there were 2 billion corals living in the Great Barrier Reef. + +Half of them have now died. + +“It’s like cle…" +04/26/2018,Actors,@LeoDiCaprio,"Solar power is key to a future without fossil fuels, and @KingoEnergy's technology will help enable broad use of cl… https://t.co/R3ZkeRRFZL" +04/26/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Thank you @MikeBloomberg for pledging to help cover the U.S. commitment to the #ParisAgreement https://t.co/DdcZ5DIeTE +04/25/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: This #WorldPenguinDay, we can not forget that the most imminent threat facing these beloved creatures is #ClimateChange. The be…" +04/25/2018,Actors,@LeoDiCaprio,Excited to join my father in bringing these incredible musicians to @carnegiehall for one night only. Learn more: https://t.co/eqp7iAxtiM. +04/24/2018,Actors,@LeoDiCaprio,Proud to celebrate #EarthMonth with @NRDC and @eBay4CharityUS. Find out how you can make an impact:… https://t.co/4djWmidjGV +04/24/2018,Actors,@LeoDiCaprio,"RT @goldmanprize: Congratulations to the 2018 #GoldmanPrize winners: Makoma Lekalakala, Liz McDaid, Khanh Nguy Thi, Claire Nouvian, Manny C…" +04/23/2018,Actors,@LeoDiCaprio,"RT @NatGeo: Species are disappearing at an alarming rate, but with your help we can #SaveTogether #EarthDay https://t.co/MaqgnAslPF https:/…" +04/23/2018,Actors,@LeoDiCaprio,"RT @nytopinion: The fight against climate change is a nonpartisan issue across the globe except, of course, in the United States. #EarthDay…" +04/22/2018,Actors,@LeoDiCaprio,RT @SciForbes: Jane Goodall celebrates #EarthDay in today's Google Doodle: https://t.co/r4bMUYSe6k https://t.co/CDS3mIje48 +04/22/2018,Actors,@LeoDiCaprio,RT @ConservationOrg: .@Apple is celebrating #EarthDay in a big way. Recycle your Apple branded device in stores or online this month and th… +04/22/2018,Actors,@LeoDiCaprio,"On this #EarthDay, spend some time outside and reconnect with nature. Our spectacular planet gives us so much, let’… https://t.co/ABo0aJpBTZ" +04/22/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Hey Los Angeles, this #EarthDay step outside and go visit Chris Burden’s #UrbanLight @LACMA. All 309 lights are now LED bu…" +04/22/2018,Actors,@LeoDiCaprio,This administration continues to devalue the importance of science. There are many qualified scientists that could… https://t.co/8W2nKxfBFi +04/21/2018,Actors,@LeoDiCaprio,RT @frontlinepbs: Climate change is threatening the Marshall Islands. These kids could be the last generation to live out their lives on th… +04/20/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: The Kofan people of Sinangoe are defending their rainforest territory from illegal invasion. Learn about their story: http… +04/19/2018,Actors,@LeoDiCaprio,RT @GiffordsCourage: We are launching our biggest effort yet to ensure that the young people who are leading the charge against gun violenc… +04/19/2018,Actors,@LeoDiCaprio,RT @Earthjustice: Way to go New Zealand! The country will stop issuing permits for offshore oil and gas exploration in a move that is being… +04/16/2018,Actors,@LeoDiCaprio,RT @RnfrstAlliance: The #farmers we work with collectively manage 8.6 million acres of #agricultural land sustainably. Their efforts to fos… +04/13/2018,Actors,@LeoDiCaprio,RT @Everytown: Are you a student who wants to keep your school and community free from gun violence? Join #StudentsDemandAction: Text STUDE… +04/13/2018,Actors,@LeoDiCaprio,RT @UNEnvironment: “I am beginning to wonder how many more alarm bells must go off before the world rises to the challenge” of #climatechan… +04/13/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: NGOs denounce Tapajós basin intimidation, violence, Brazil inaction - @mongabay https://t.co/xoIeqibhIO @intlrivers 38 nat…" +04/11/2018,Actors,@LeoDiCaprio,"RT @EnvCalifornia: .@LACity is the #1 city for #solar! Thank you @MayorOfLA Eric Garcetti for joining us today to release #ShiningCities, &…" +04/11/2018,Actors,@LeoDiCaprio,"RT @FastCompany: From data centers to stores, all Apple facilities are now powered by renewable energy, a long-time company goal. https://t…" +04/10/2018,Actors,@LeoDiCaprio,"RT @NRDC: As Chief Happyjack explains, “the @CreeWaswanipi way of life still connects us very strongly to the land."" Yet their territory ha…" +04/06/2018,Actors,@LeoDiCaprio,"RT @UN: Clean, green energy is more affordable and competitive than ever. +Our problem is not that we do not know what to do -- it is how qu…" +04/04/2018,Actors,@LeoDiCaprio,"RT @FAOKnowledge: Those who produce our food are the hardest hit by #climatechange. + +Rice farmer Manca Trawally explains why. https://t.co…" +04/03/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Unsustainable exploitation of the natural world threatens the food and water security of billions of people, a major UN-ba…" +03/31/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: The Postcode Lottery Green Challenge is looking for green start-ups to submit their promising sustainable business plans.… +03/31/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: The new initiative #GreenBondPledge seeks to have more cities, public authorities and large corporates commit to increase use o…" +03/29/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Who can change the world? Students. LDF is now matching all donations to four student-led #cleanenergy crowdfunding campai… +03/29/2018,Actors,@LeoDiCaprio,"RT @WWFnews: Brazil, Bolivia, and Paraguay signed a landmark commitment today to protect the Pantanal, the world’s largest tropical wetland…" +03/28/2018,Actors,@LeoDiCaprio,"RT @AMarch4OurLives: Register. +Educate. +Vote. +That's what it will take to create real change. Add your name to be a part of what's next:…" +03/27/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Tomorrow, the Senate in Brazil will vote on a bill that authorizes the farming of sugarcane in the Legal Amazon which was…" +03/26/2018,Actors,@LeoDiCaprio,"Don’t miss the incredible, award-winning work from my friend Alejandro G. Iñárritu. Carne y Arena will immerse you… https://t.co/KrthdHurYI" +03/25/2018,Actors,@LeoDiCaprio,"A few weeks ago, the US Government lifted the ban on elephant hunt trophies. Join @ElephantCrisis and take the pled… https://t.co/pMwp7Qlu7X" +03/23/2018,Actors,@LeoDiCaprio,RT @Everytown: We're proud to support the students stepping up and taking action to prevent gun violence. Follow their lead; find a 3/24 #M… +03/22/2018,Actors,@LeoDiCaprio,RT @AFrontlines: On #WorldWaterDay @AFrontlines is launching the #LessOilMoreWater campaign to reach their goal of bringing clean drinking… +03/22/2018,Actors,@LeoDiCaprio,"RT @J_WintersLDF: Proud to be releasing @DiCaprioFdn’s first official white paper with @UNDP entitled “Nature for Water"" which documents ho…" +03/21/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: We can’t burn our way out of the climate crisis https://t.co/xV3Uz7VqX0 via @MaryPFPI +03/21/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Cities need to prepare now to take in millions of #climatechange #refugees https://t.co/aDBDdIqpvR +03/20/2018,Actors,@LeoDiCaprio,"RT @BBCEarth: Sudan’s death leaves just two females of the subspecies alive in the world +https://t.co/kCpRCxFaFY" +03/20/2018,Actors,@LeoDiCaprio,RT @AMarch4OurLives: Too many of us have been affected by gun violence in school. We refuse to live in fear. We must put an end to this. Si… +03/19/2018,Actors,@LeoDiCaprio,RT @latimes: The biggest solar parks in the world are now being built in India https://t.co/hUlSLdqdfq https://t.co/l0ZqnCZZRl +03/17/2018,Actors,@LeoDiCaprio,RT @greenpeaceusa: Standing Rock: Dakota Access Pipeline Leak Technology Can't Detect All Spills https://t.co/dLoH7QerU7 #DAPL via @mckenna… +03/16/2018,Actors,@LeoDiCaprio,RT @YEARSofLIVING: The oil industry knew for decades that climate change is real and about the disasters it could create. But that’s not th… +03/15/2018,Actors,@LeoDiCaprio,https://t.co/Ym25RNfSwL +03/14/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: View from space reveals extent of fishing on global ocean https://t.co/FAH7aF1ppk +03/12/2018,Actors,@LeoDiCaprio,"RT @SierraClub: Tomorrow, Trump will visit border wall prototypes in Southern California. For over a decade, Sierra Club volunteer Jill Hol…" +03/12/2018,Actors,@LeoDiCaprio,RT @guardian: Antarctica's king penguins 'could disappear' by the end of the century https://t.co/F445f3BUMd +03/10/2018,Actors,@LeoDiCaprio,"A few years ago, I had the opportunity to see these incredible musicians with my dad. Excited to join my father in… https://t.co/N5YcP3oIbF" +03/10/2018,Actors,@LeoDiCaprio,"RT @insideclimate: As the price of renewable energy drops, more cities around the world are cutting the cord with fossil fuel-based electri…" +03/08/2018,Actors,@LeoDiCaprio,"RT @youthvgov: BREAKING: Ninth Circuit Rules in Favor of Youth Plaintiffs, Rejects Trump’s Attempt to Evade Constitutional Climate Trial ht…" +03/08/2018,Actors,@LeoDiCaprio,"RT @HuffPost: The U.S. government will allow hunters to import elephant trophies on a case-by-case basis, breaking the president’s pledge.…" +03/07/2018,Actors,@LeoDiCaprio,"RT @350: Of nearly three dozen different Arctic weather stations, 15 of them were at least 10F (5.6C) above normal for the winter @guardian…" +03/06/2018,Actors,@LeoDiCaprio,"RT @MoveOn: #Congress. The time is now. Stand up for 200,000 children across the US. Without a permanent legislative solution for #Dreamers…" +03/03/2018,Actors,@LeoDiCaprio,"This #WorldWildlifeDay, people from all countries must rally together to ensure the future of the world’s #BigCats.… https://t.co/yd0d2YieVo" +03/02/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Shark fishing on a coral reef drives evolutionary changes in fish https://t.co/PK91ReOBCC via @hakaimagazine +02/28/2018,Actors,@LeoDiCaprio,Congrats to @JustinTrudeau and #Canada on a historic investment in nature. https://t.co/2oSjzGQbRI +02/27/2018,Actors,@LeoDiCaprio,"RT @GlobalFishWatch: New @GlobalFishWatch study published in @sciencemagazine, “Tracking the Global Footprint of #Fisheries,” finds that in…" +02/25/2018,Actors,@LeoDiCaprio,"RT @UN: Climate change is real & it's happening now. But by taking urgent climate action we will create jobs, improve our health & save mon…" +02/23/2018,Actors,@LeoDiCaprio,RT @mongabay: Ecuador votes to reduce oil exploitation in Yasuní National Park: https://t.co/Ys1MUUCWNF https://t.co/yvKniA2R77 +02/22/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: No more blackouts anywhere in the world with 100% wind, water, and sunlight https://t.co/g87BunKqW3 by @mzjacobson" +02/21/2018,Actors,@LeoDiCaprio,"Today, Seychelles announced two new marine protected areas that equal the size of Great Britain. Join me and… https://t.co/aszoTCLj7h" +02/21/2018,Actors,@LeoDiCaprio,RT @MarkRuffalo: You are the power...March For Our Lives: What to know about the nationwide march led by the Parkland survivors - Mic https… +02/21/2018,Actors,@LeoDiCaprio,"RT @IndivisibleTeam: On 12/6, the House passed the Concealed Carry Reciprocity Act. It was a top priority of the @NRA and would cause a rac…" +02/21/2018,Actors,@LeoDiCaprio,"RT @CNN: Survivors of the Florida school shooting announce a nationwide, student-led march in Washington on March 24 to push for gun contro…" +02/21/2018,Actors,@LeoDiCaprio,RT @Everytown: We don't have to live like this. Join the movement to #EndGunViolence: Text ACT to 644-33. https://t.co/tmVcRLrMNB +02/18/2018,Actors,@LeoDiCaprio,"RT @PopSci: Preventing deforestation might be expensive, but it will cost us more if we don't https://t.co/BYOclhXlhp https://t.co/bW7w9SCi…" +02/16/2018,Actors,@LeoDiCaprio,"RT @BBCScienceNews: '100,000 orangutans' killed in 16 years https://t.co/XATqq3yjEs" +02/16/2018,Actors,@LeoDiCaprio,"RT @washingtonpost: The Arctic is full of toxic mercury, and climate change is going to release it https://t.co/0WDBiJ0mkB" +02/14/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: Water is complex because it is linked to almost everything in the world. + +And water is at the heart of adaptation to #climatec…" +02/13/2018,Actors,@LeoDiCaprio,"RT @CITES: #BigCats are among the most powerful creatures to grace this planet, but they are also the most fragile https://t.co/T7sL5JwCur…" +02/10/2018,Actors,@LeoDiCaprio,"Proud to support @LACMA as it transitions to new, energy efficient lighting for Chris Burden’s #UrbanLight installa… https://t.co/1JPgY5anAO" +02/08/2018,Actors,@LeoDiCaprio,RT @SeaTimesOpinion: Editorial: The past year has made it clear that states cannot rely on the federal government to spearhead our nation’s… +02/08/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: LDF is proud to support @LACMA as it transitions to new, #energyefficiency lighting for the 10th anniversary of Chris Burd…" +02/06/2018,Actors,@LeoDiCaprio,"Visual art is a powerful tool for spreading ideas, memorializing history & bringing people together around a common… https://t.co/1uZvuIgcVq" +02/06/2018,Actors,@LeoDiCaprio,RT @ste_kenya: We are deeply saddened by the death of wildlife-trade researcher Esmond Bradley Martin who died yesterday in Nairobi. A long… +02/01/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Chilean President Michelle Bachelet and Kristine McDivitt Tompkins, President and CEO of @TompkinsConserv, today signed th…" +02/01/2018,Actors,@LeoDiCaprio,RT @ConservationOrg: Sharks are a grossly misunderstood yet vital element of the global ecosystem. These mysterious and magnificent creatur… +01/31/2018,Actors,@LeoDiCaprio,RT @latimesopinion: It's the last chance for California to say no to polystyrene plastic trash this year. https://t.co/lNHD8kNQt4 https://t… +01/30/2018,Actors,@LeoDiCaprio,"Proud of what @DiCaprioFdn and our partners have accomplished over the last 20 years, but so much more needs to be… https://t.co/xeNPz8FhWF" +01/29/2018,Actors,@LeoDiCaprio,Join @WSUCampaign @MoveOn @StandUpAmerica and more leaders of the #ResistanceMovement at tonight's #PeoplesSOTU. Wa… https://t.co/t1x7XeN1Dx +01/28/2018,Actors,@LeoDiCaprio,"RT @BardemAntarctic: This is my home for the next week! Together with my dear brother @carlosbardem and 34 other new brothers and sisters,…" +01/27/2018,Actors,@LeoDiCaprio,RT @EcoWatch: 2017 Was the Hottest Year on Record for Oceans https://t.co/mgXYGYewtd #Oceans @Oceana @Waterkeeper @Surfrider @NRDC @billmck… +01/26/2018,Actors,@LeoDiCaprio,"RT @TheDailyClimate: World cities headed for a #water problem, writes @BrianBienkowski. These crises —exacerbated by a changing #climate, a…" +01/23/2018,Actors,@LeoDiCaprio,RT @NRDC: Anti-wildlife members of Congress want to limit where Endangered Species Act protections apply. Take Action! https://t.co/vNEIl6m… +01/23/2018,Actors,@LeoDiCaprio,"RT @AFrontlines: We’re building a movement for indigenous land, life and cultural survival in the Amazon and we want you to join us! Please…" +01/23/2018,Actors,@LeoDiCaprio,RT @TIME: Aerial photos of Antarctica reveal the devastating toll of climate change https://t.co/DHrhZtuQmu +01/23/2018,Actors,@LeoDiCaprio,RT @wef: Earth will likely warm way beyond the crucial tipping point that the Paris agreement was meant to avoid https://t.co/sZczrRzB0u #c… +01/23/2018,Actors,@LeoDiCaprio,"The Pacific Coast is too valuable to risk a devastating oil spill. With a $56 billion ocean economy, and hundreds o… https://t.co/174WkecDt2" +01/19/2018,Actors,@LeoDiCaprio,RT @GuardianSustBiz: Iceland supermarket vows to eliminate plastic on all own-branded products https://t.co/cWAqgymNux +01/18/2018,Actors,@LeoDiCaprio,RT @terrytamminen: We need laws like California's AB 319 to reduce plastic pollution: https://t.co/fh5Jhiigkx +01/17/2018,Actors,@LeoDiCaprio,RT @NPR: Warming temperatures are having a profound and potentially devastating impact on one of the most important green sea turtle popula… +01/17/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: Belize bans oil activity to protect its barrier reef! +#FossilFree #KeepItInTheGround + https://t.co/KOeHiDiu9Z" +01/13/2018,Actors,@LeoDiCaprio,"RT @TheAtlantic: A new study makes it clear: Coral reefs are bleaching too frequently to recover, @yayitsrob reports https://t.co/Z9QODnZmV…" +01/10/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Announcing #Reefscape, a partnership between LDF, Carnegie Airborne Observatory and @planetlabs that aims to help us bette…" +01/10/2018,Actors,@LeoDiCaprio,NYC is the first big city in America to sue and divest from Big Oil. #stopfundingfossils https://t.co/7aqjV3E46J +01/10/2018,Actors,@LeoDiCaprio,"RT @IndivisibleTeam: Democratic MoCs, make a choice: fight for Dreamers or be part of the Deportation Caucus. See how your Senators voted a…" +01/10/2018,Actors,@LeoDiCaprio,"RT @EmCollective: Every day that Congress fails to #ProtectDreamers, 122 young people lose their status to work and live without fear in th…" +01/10/2018,Actors,@LeoDiCaprio,"All countries must work together, and follow China’s example, in order to end the global ivory trade and bring elep… https://t.co/YwAgS1HbsE" +01/09/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Environmental #education is often the first step in conservation. Gain a better understanding of our #oceans by visiting @… +01/09/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: .@BoykoBorissov, please protect #UNESCO World Heritage Site Pirin National Park in #Bulgaria from disastrous logging and s…" +01/07/2018,Actors,@LeoDiCaprio,RT @guardianeco: US government climate report looks at how the oceans are buffering climate change | John Abraham https://t.co/et31owmOcn +01/05/2018,Actors,@LeoDiCaprio,"RT @Oceana: Today, @SecretaryZinke opened the floodgates to dirty & dangerous offshore drilling, threatening coastal economies that rely on…" +01/04/2018,Actors,@LeoDiCaprio,RT @UNEP: Pollution is everywhere. From the highest reaches of our atmosphere to the darkest depth of our oceans. But together we can stop… +01/03/2018,Actors,@LeoDiCaprio,"RT @Defenders: #Environment #YearinReview – here are the year’s “happy environmental stories,” including many different areas protected for…" +01/02/2018,Actors,@LeoDiCaprio,Proud to support and invest in @LoveTheWildCo. https://t.co/fpj6W1WsGA +12/30/2017,Actors,@LeoDiCaprio,"RT @nytimes: China will create a national market to clean up its power sector, putting it in a leading position on the issue as the U.S. re…" +12/28/2017,Actors,@LeoDiCaprio,"RT @UNEP: Over the past 70 yrs, at least 40% of all conflicts within national borders are related to competition over natural resources. +M…" +12/27/2017,Actors,@LeoDiCaprio,RT @TIME: How climate change could make the migrant crisis worse https://t.co/xLrvu3MjV0 +12/26/2017,Actors,@LeoDiCaprio,RT @terrytamminen: Need more reasons to battle climate change now? Here are billions of them! 2017 was the most expensive weather year ever… +12/23/2017,Actors,@LeoDiCaprio,"RT @nytimes: Climate change made the torrential rains that flooded Houston after Hurricane Harvey much worse, scientists reported https://t…" +12/22/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: Learn more about our partnership with @pamm and @DesignMiami, showcasing #art that explores the impacts of #climatechange…" +12/22/2017,Actors,@LeoDiCaprio,RT @AGBecerra: I've just sued the #Trump Administration for threatening the #health of our families and the #environment statewide and beyo… +12/21/2017,Actors,@LeoDiCaprio,"RT @NYGovCuomo: With @NYSComptroller, New York State will begin planning to divest the state retirement fund from fossil fuels. https://t.c…" +12/20/2017,Actors,@LeoDiCaprio,Watch @EnvDefenseFund's new enviro-documentary series on the value of using technology to cut oil and gas pollution… https://t.co/iTJv3WLkL4 +12/18/2017,Actors,@LeoDiCaprio,"Help @NRDC stop the pro-polluter tax bill, and help save the Arctic National Wildlife Refuge. Text “TREE” to 21333… https://t.co/HimfGm6PVg" +12/17/2017,Actors,@LeoDiCaprio,"RT @NYGovCuomo: If the EPA says the dredging of Hudson River PCB contamination is complete, New York will sue the federal government. https…" +12/16/2017,Actors,@LeoDiCaprio,"RT @CivilEats: This app, developed by a high school student, will alert farmworkers of dangerous temperatures and allow them to report unsa…" +12/15/2017,Actors,@LeoDiCaprio,"RT @NPR: Researchers say this year was the Arctic's second-warmest in at least 1,500 years — after 2016. https://t.co/zoPSMrTxc9" +12/14/2017,Actors,@LeoDiCaprio,Grateful for the firefighters risking their lives to get people to safety in SoCal. Support @CAFireFound here: https://t.co/DWoWpCJi8S +12/13/2017,Actors,@LeoDiCaprio,RT @NatGeo: Environmental and indigenous groups are cheering a landmark decision by Canada’s highest court https://t.co/LQWcYKy6Ci +12/10/2017,Actors,@LeoDiCaprio,"RT @NatGeo: When environmental conditions change, the risk of extinction increases, even with a healthy population of animals unaffected by…" +12/09/2017,Actors,@LeoDiCaprio,"Proud to support the #PalauPledge, a new conservation initiative for visitors. Written with the help of Palau’s chi… https://t.co/4w4IFzgI5o" +12/06/2017,Actors,@LeoDiCaprio,RT @guardianeco: The Amazon effect: how deforestation is starving São Paulo of water https://t.co/Os9piTjCMw +12/04/2017,Actors,@LeoDiCaprio,"Please support the efforts by @DiCaprioFdn grantee, @UtahDineBikeyah, to defend these national monuments in court.… https://t.co/2da1q1YtoX" +12/03/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: A healthy environment is a human right, and these kids taking the lead to make it so! https://t.co/h6xAZp8dN5" +12/01/2017,Actors,@LeoDiCaprio,"RT @voxdotcom: Global warming isn’t something that will happen decades down the line. It’s happening every day, bit by bit. https://t.co/vd…" +11/30/2017,Actors,@LeoDiCaprio,"RT @NRDC: Trump is likely to undo protections for Bears Ears and other national monuments, leaving these national treasures vulnerable to h…" +11/28/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: This #GivingTuesday donate to LDF grantee @Re_volv's #solarpower campaign. This campaign will provide #cleanenergy and low… +11/25/2017,Actors,@LeoDiCaprio,RT @Independent: Snow leopards no longer endangered for first time in 45 years https://t.co/R6CybScFdZ +11/23/2017,Actors,@LeoDiCaprio,RT @guardianeco: Bigotry against indigenous people means we're missing a trick on climate change https://t.co/ifIBYaevqQ +11/21/2017,Actors,@LeoDiCaprio,"RT @SierraClub: 48 US cities have committed to transition to 100% #cleanenergy, 5 of which have reached their goal & are powered w/ entirel…" +11/21/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: The #KeystoneXL must be stopped: commit to peaceful resistance on the route https://t.co/LsGum8UjYX #NoKXL #KeystoneXLPipe… +11/19/2017,Actors,@LeoDiCaprio,RT @youthvgov: BREAKING: Ninth Circuit to Hear Oral Argument in #JulianavUS! https://t.co/dTDCrzu2Tt #youthvgov #climatechange #COP23 https… +11/18/2017,Actors,@LeoDiCaprio,"RT @NatGeo: The same controversial structure whose extension triggered the Standing Rock protests has leaked about 5,000 barrels https://t.…" +11/17/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: Trump’s decision to reverse the ban on elephant trophies in the U.S. is reprehensible. In this policy change, the U.S. los…" +11/15/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: From LDF's very own @terrytamminen https://t.co/7krEw2dlEy +11/15/2017,Actors,@LeoDiCaprio,RT @nytimes: Syria said it would sign the Paris climate accord. This leaves the U.S. as the only country that has rejected it. https://t.co… +11/14/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: A #globalwarming target of 1.5˚C is in reach without the need for #BECCS or other forms of #geoengineering. This new model… +11/10/2017,Actors,@LeoDiCaprio,RT @FastCompany: The largest ever tropical reforestation is planting 73 million trees https://t.co/1A4b6epXIm https://t.co/vwpM3A08Tx +11/09/2017,Actors,@LeoDiCaprio,"RT @ourclimateus: On 11/18, young people will come together to share their #Climate Legacy. #Uniting4Climate JOIN: https://t.co/pSuw7MRxCL" +11/09/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: Scientists have identified a new species of #GreatApe on the Indonesian island of #Sumatra: the #TapanuliOrangutan https:/… +11/08/2017,Actors,@LeoDiCaprio,RT @Waterkeeper: URGENT: Act now to protect communities from agricultural pollution—sign on to this letter by TONIGHT opposing HR848! https… +11/07/2017,Actors,@LeoDiCaprio,"RT @citizensclimate: Celebrating 10 years of advocacy for #climate action, CCL is reaching the tipping point with Congress. Join us: https:…" +11/04/2017,Actors,@LeoDiCaprio,"RT @nytclimate: Two's company: Nicaragua will join the Paris deal, leaving Syria and the U.S. as the only 2 countries on the outside https:…" +06/30/2018,Actors,@EvaLongoria,What a perfect way to float into the weekend ☀️ (📸: @Virtuoso) https://t.co/I5cuCnaD5Y +06/29/2018,Actors,@EvaLongoria,Put a smile on y’all! The weekend is here! ☀️#TGIF #FBF https://t.co/oXZ7H8CJrI +06/28/2018,Actors,@EvaLongoria,We’re not done yet folks! Head on over to @hsn and watch Ellie Rodriguez fill you in on all things @shopevalongoria… https://t.co/vaXR9hPxaZ +06/28/2018,Actors,@EvaLongoria,Phenomenal work by @iamrashidajones who directed this brilliant PSA (narrated by Donald Glover) about sexual harass… https://t.co/Wo9fzJ7VuI +06/27/2018,Actors,@EvaLongoria,"TOMORROW IS THE BIG DAY! Tune into @HSN at 7am, 12pm, 1pm, & 5pm EST to check out what @shopevalongoria Summer ’18… https://t.co/zQE1AnsLwy" +06/26/2018,Actors,@EvaLongoria,Who else feels like time keeps flying by? When you’ve started to lose track (story of my life) there’s always a sol… https://t.co/mswcoe99rV +06/25/2018,Actors,@EvaLongoria,Starting off my Monday full of gratitude for this little blessing of a human! 🙏🏻 Pepe & I want to thank all the nur… https://t.co/aSkU3ohS4Q +06/23/2018,Actors,@EvaLongoria,"Hey y’all! Check out my friend @ambertamblyn new book, “Any Man”. Vanity Fair called it ""A Searing exploration of s… https://t.co/imOPhclHP7" +06/23/2018,Actors,@EvaLongoria,Look who’s ready for #Mexico game! #WorldCup 🇲🇽🇲🇽🇲🇽 https://t.co/LtZxgPs1Pq +06/22/2018,Actors,@EvaLongoria,Big brother Popeye can’t wait to meet his little brother Santiago! We keep sending Santiago’s hospital blankets hom… https://t.co/ELZ9KWXEvE +06/21/2018,Actors,@EvaLongoria,Hello world! I introduce to you Santiago… https://t.co/SjrCe91paE +06/19/2018,Actors,@EvaLongoria,Unleash the love August 10th 💙 Here’s a first look at the official trailer for @dogdaysthefilm — coming to you this… https://t.co/43sGy8WifK +06/18/2018,Actors,@EvaLongoria,T-minus 10 days until Ellie Rodriguez appears on @hsn to show you the @shopevalongoria Summer ‘18 Collection ☀️⛱ Ma… https://t.co/syk8qBrW5p +06/17/2018,Actors,@EvaLongoria,¡Vamos Mexico! 🇲🇽🇲🇽 #BabyIsReadyForNextGame https://t.co/LVGAhEXCd0 +06/17/2018,Actors,@EvaLongoria,Happy Father’s Day to all the great Dads out… https://t.co/iAoZxvutsS +06/16/2018,Actors,@EvaLongoria,"Thanks for loving my Jinxy Lucky +luckylunargy… https://t.co/yKHfLSSMBl" +06/15/2018,Actors,@EvaLongoria,So the day I’ve been dreading happened last… https://t.co/6taxSanJAT +06/14/2018,Actors,@EvaLongoria,"This just in y’all! My @shopevalongoria Summer Apparel will be airing on @HSN June 28th (7am, 12pm, 1pm & 5pm EST)!… https://t.co/2p6RtaldD6" +06/13/2018,Actors,@EvaLongoria,Looking at my pre-pregnancy clothes like... 🤣 #AllWorthIt https://t.co/FydE56SnyU +06/12/2018,Actors,@EvaLongoria,Missing my directing days on set! I’ll be back soon! 🎥 #DirectorsMode #BossLady https://t.co/xnrj69kAhc +06/11/2018,Actors,@EvaLongoria,"Yes, I know it’s Monday but let’s start the week off with a smile and some positive vibes ✨ https://t.co/m1YJCJkVwd" +06/10/2018,Actors,@EvaLongoria,"If you’re not having brunch, is it really even Sunday? 🍳 #BonAppetit (📸: HonestlyYUM) https://t.co/sGhMmIslq8" +06/09/2018,Actors,@EvaLongoria,Happy Saturday☀️ Here’s to a time where I was 6 months pregnant — and I thought I was huge then! Haha 😂 https://t.co/8LNZrFzZQc +06/08/2018,Actors,@EvaLongoria,"Heartbroken over Anthony Bourdain’s death. He was such a great example of class, intelligence and compassion. May h… https://t.co/vnFNSlcUCF" +06/08/2018,Actors,@EvaLongoria,Your voices were heard! We’re thrilled to announce that we are now accepting hour-long pilots for the @stayMACRO Ep… https://t.co/euoMhTm6XY +06/07/2018,Actors,@EvaLongoria,"With the weekend just around the corner, step up your outfit game with this @shopevalongoria Cold Shoulder Blouse p… https://t.co/kutYkXQfR8" +06/06/2018,Actors,@EvaLongoria,We’re excited to announce the launch of the MACRO Episodic Lab powered by @theblcklst! @LenaWaithe and myself have… https://t.co/TrQm2ul94O +06/05/2018,Actors,@EvaLongoria,Today is the day California! Exercise your civic duty and make your voice heard by voting in today’s primary electi… https://t.co/87YWeuQYH8 +06/04/2018,Actors,@EvaLongoria,Times like these I wish I could drink coffee again ☕️ Happy Monday y’all! https://t.co/Zak3HJ2GlE +06/03/2018,Actors,@EvaLongoria,Sundays are for a little R&R 🛀🏽 Who’s with me? #rg (📸: @emilyblincoe) https://t.co/qR0CGzFBLV +06/02/2018,Actors,@EvaLongoria,Whoa Baby! That’s quite the profile 👶🏽🍼 #StillWaitingForHimToArrive https://t.co/BAMNgDDG9u +06/01/2018,Actors,@EvaLongoria,Black & White mood ⚫️⚪️ Happy Friday y’all! #StillWaitingForHimToArrive #FBF https://t.co/cOZuEKKdMI +05/31/2018,Actors,@EvaLongoria,In honor of graduation season here’s a throwback to those cap and gown days 🎓 Congratulations to all the graduates… https://t.co/dHf4puMSiV +05/30/2018,Actors,@EvaLongoria,"Today my #wcw goes to my sister from another mister @serenawilliams. Words cannot describe your talent, your work… https://t.co/MfHDHzlqJb" +05/29/2018,Actors,@EvaLongoria,Work week chic with these flawless @shopevalongoria skirts. Get them just in time for summer ☀️ Check out the link… https://t.co/w9MBpfIuac +05/28/2018,Actors,@EvaLongoria,Did someone say pool day? ⛱☀️ Hope y’all are enjoying the long weekend! And thank you to all the fallen soldiers wh… https://t.co/pBeS79PVR0 +05/27/2018,Actors,@EvaLongoria,What better way to enjoy your Sunday than with a little shopping! Y’all don’t want to miss our Memorial Day sale. C… https://t.co/KCwExGbu2A +05/26/2018,Actors,@EvaLongoria,Big brother on baby bump watch! Thx Jinxy Baby! 👶🏽 https://t.co/OK1EZijXLh +05/25/2018,Actors,@EvaLongoria,#FBF to a time when I could drink wine. Happy #NationalWineDay y’all! Enjoy the long weekend 🍷 https://t.co/PulaWHvJw0 +05/24/2018,Actors,@EvaLongoria,Memorial Day came early y’all! My entire @evalongoriacollection is 30% OFF until 5/28! Upgrade your summer wardrobe… https://t.co/XHQVk8NfwF +05/23/2018,Actors,@EvaLongoria,"So Monday was our 2yr anniversary and I didn’t forget, I was just too sleepy to post! My wonderful husband sent me… https://t.co/yPB030tA1U" +05/21/2018,Actors,@EvaLongoria,"You guys, check out this special announcement from my friend @Lin_Manuel https://t.co/gQWXMs2nxu" +05/19/2018,Actors,@EvaLongoria,Let’s soak up some sun y’all! It’s Saturday☀️ #BehindTheScenes #IrisCovetBook https://t.co/UJ7auyI1ju +05/18/2018,Actors,@EvaLongoria,#FBF to cookies and cakes with the gorgeous @Roselyn_Sanchez 🍼 Can’t wait for y’all to see her shine on… https://t.co/s9Doc3r5b5 +05/17/2018,Actors,@EvaLongoria,Guys check out the brand new trailer for @GrandHotelABC on @ABCNetwork! So proud of this show! Can’t wait for ever… https://t.co/fB5q35u7CP +05/17/2018,Actors,@EvaLongoria,"Throwing it back to last week when I was smaller! Yep, I’m much bigger than this now! Friday is almost here y’all!… https://t.co/tejD1mAUmp" +05/16/2018,Actors,@EvaLongoria,So happy to be joining my friend @Lin_Manuel for such an amazing cause helping @latinovictoryus and other amazing o… https://t.co/7axCRME1pC +05/16/2018,Actors,@EvaLongoria,"This summer, you’re in for a treat y’all 🐾 catch a first look at @DogDaysTheFilm — in theaters this August! #DogDays https://t.co/ojdwn4L0rl" +05/15/2018,Actors,@EvaLongoria,Ahhhh I'm so proud of this show and this amazing cast! So bummed I cannot be with them in New York right now for up… https://t.co/dcmBFi3EEK +05/15/2018,Actors,@EvaLongoria,So excited to be featured on the @IrisCovetBook Summer Issue ☀️ Had such an amazing time doing this shoot with my b… https://t.co/am1VvonGNe +05/14/2018,Actors,@EvaLongoria,"Here’s looking at you Monday! + +Read my interview for @iriscovetbook summer issue with the fabulous @oliviamunn. Ava… https://t.co/OhZ7jfl2H1" +05/13/2018,Actors,@EvaLongoria,You guys it’s my first Mother’s Day!!!! Happy Mother’s Day to all the wonderful mommies out there! May you be appre… https://t.co/AQVG4AWIdN +05/13/2018,Actors,@EvaLongoria,A perfect piece for Mother’s Day! https://t.co/fLZlqbvpHe +05/12/2018,Actors,@EvaLongoria,Truly inspiring afternoon during the @GlobalGiftUSA Women’s Empowerment Event in benefit of #EvaLongoriaFoundation.… https://t.co/qu5fg68NJN +05/11/2018,Actors,@EvaLongoria,Yes! I love this project with all my heart! We worked so hard on it and I’m so happy that audiences everywhere will… https://t.co/uLIkgFtnxq +05/11/2018,Actors,@EvaLongoria,Congratulations to our #EvaLongoriaFoundation Latina Scholarship recipients! It’s an honor to support the hard work… https://t.co/nyMwqfoHSz +05/11/2018,Actors,@EvaLongoria,Watch sparks fly this weekend!✨ @OverboardMovie is expanding into more theaters this weekend. I know you guys will… https://t.co/8TpTBu5xcX +05/11/2018,Actors,@EvaLongoria,What a pleasure celebrating these inspirational first generation Latina scholars with the Eva Longoria Foundation.… https://t.co/qlsNVgMYVw +05/10/2018,Actors,@EvaLongoria,#Tbt to an amazing shower with even more amazing company #BabyBaston https://t.co/GPOvWG7zVw +05/09/2018,Actors,@EvaLongoria,Happy 30th Birthday to @hellomag it was a pleasure to have you be part of my dream wedding! Here's to the next thre… https://t.co/0iND5s6MYk +05/09/2018,Actors,@EvaLongoria,Tune in to @TeamCoco tonight and watch a special little someone get serenaded 👶🏽🎤🎼 https://t.co/qK2tRFzQVS +05/08/2018,Actors,@EvaLongoria,"Don’t mind me, just bumping along today 😁 #BabyBaston https://t.co/nT6p5lb81b" +05/07/2018,Actors,@EvaLongoria,What a great way to start the week! A huge thank you to everyone for supporting this film!! 🍿🎬 #overboardmovie https://t.co/9iAHq5awqC +05/07/2018,Actors,@EvaLongoria,Baby Baston and I wish everyone a wonderful week 💛💛 https://t.co/sFGP3QYnzp +05/07/2018,Actors,@EvaLongoria,Sooooo Happy to be surrounded by these beauties! @ElizabethBanks is toasting my belly and my sweet friend… https://t.co/sxuUDlk5Jc +05/06/2018,Actors,@EvaLongoria,What a beautiful day with all my girls! Thank you for your constant guidance and support! I love y’all so much!… https://t.co/ksQb2qJxXU +05/05/2018,Actors,@EvaLongoria,It’s the weekend and @OverboardMovie is out NOW everywhere y’all!! Don’t miss it 🎬🍿#overboardmovie https://t.co/VBVf1Lb4dP +05/04/2018,Actors,@EvaLongoria,"My new film @OverboardMovie is in theaters now! You guys are going to love it! #overboardmovie +https://t.co/LQTgPcxtsN" +05/04/2018,Actors,@EvaLongoria,"Happy Friday y’all! Be sure to catch me on @SteveTVShow today, you won’t want to miss it 😊 @OverboardMovie is out i… https://t.co/fpMB7oMRvy" +05/03/2018,Actors,@EvaLongoria,When I realize it’s almost Friday! 😊 You guys make sure to check out @OverboardMovie — in theaters everywhere TOMOR… https://t.co/yEj8TfJcqX +05/03/2018,Actors,@EvaLongoria,"Be sure to tune in to the @latelateshow tonight!! There will be less naps and more laughs, I promise ✨ (Helping han… https://t.co/N9vcBnktu1" +05/02/2018,Actors,@EvaLongoria,"Corden, I’m ready! 🎬 Catch me tonight on the @latelateshow — I promise I’ll be awake #workingmama https://t.co/aw3bY80MEq" +05/02/2018,Actors,@EvaLongoria,Too much fun on the red carpet with this beauty @AnnaKFaris! Swipe through to see the progression of silliness!! Lo… https://t.co/AzJcLd26ce +05/01/2018,Actors,@EvaLongoria,Had such an incredible time celebrating the premiere of @OverboardMovie last night! I’m so excited for you all to s… https://t.co/yysWNCvRDo +04/30/2018,Actors,@EvaLongoria,I’m so excited for the premiere of @OverboardMovie tonight!! Can’t wait for y’all to see it #overboardmovie https://t.co/KJoEmLarqa +04/29/2018,Actors,@EvaLongoria,Sunday Brunch! #SundayFunday https://t.co/IXHK2UeOi1 +04/29/2018,Actors,@EvaLongoria,No Sunday blues around here 😊 Hiding the baby bump with this awesome bomber! ✨@shopevalongoria✨ https://t.co/iKrQZn9W03 +04/27/2018,Actors,@EvaLongoria,My face when I realize it’s Friday! Happy weekend everyone (including @SimplyTroy) https://t.co/WlAoZhuBRb +04/26/2018,Actors,@EvaLongoria,Just me and Jinxy having a lazy Thursday! #MyOldMan #JinxyBaby https://t.co/TMExRLlxsZ +04/26/2018,Actors,@EvaLongoria,Congrats to my girl @MichelleSalasB for gracing the cover of @InStyleMexico! What a beauty! 👏🏻👏🏻👏🏻 https://t.co/msTsmEqqgm +04/25/2018,Actors,@EvaLongoria,"You guys make sure to check out @EugenioDerbez, @AnnaKFaris and I in our new movie Overboard! Can’t wait for you gu… https://t.co/hJ6gji2Nqb" +04/25/2018,Actors,@EvaLongoria,Thx Emily!! https://t.co/9vmVzpT7Ne +04/25/2018,Actors,@EvaLongoria,"RT @Fandango: ""Is your love life on paws?"" + +Let these #DogDays posters unleash your heart. + +exclusive poster debut, +featuring: +@ninadobrev…" +04/24/2018,Actors,@EvaLongoria,Hey guys! Check out my girl @Roselyn_Sanchez in her new movie Traffik! She’s fantastic and it’s a must see movie! D… https://t.co/aeUgIR9i5t +04/24/2018,Actors,@EvaLongoria,Strike a pose! 💋 #ThatsMyBeforeAndAfter 😂 https://t.co/WkTZxTKPNh +04/23/2018,Actors,@EvaLongoria,Happy birthday to my brother @georgelopez. Thank you for all the years of friendship and laughs! And for always mak… https://t.co/0oGHgPnuNp +04/22/2018,Actors,@EvaLongoria,Smiling because it’s still the weekend. Happy Sunday y’all! #BrunchPlease https://t.co/yvwX5MMKtW +04/21/2018,Actors,@EvaLongoria,Thank you to these wonderful human beings @FelicityHuffman @AnnaKFaris and @ricky_martin for honoring me with your… https://t.co/flAEiHKmuV +04/20/2018,Actors,@EvaLongoria,#FBF to working with such a talented and funny cast on @CWJaneTheVirgin 🎬 I love me some @HereIsGina #DirectorMode… https://t.co/oi4pKmX9M9 +04/19/2018,Actors,@EvaLongoria,Waiting for the weekend like... #ThursdayMood https://t.co/JWFe34X1Mr +04/18/2018,Actors,@EvaLongoria,My #WCW goes to this wonderful beauty @victoriabeckham ! Thanks for always supporting me and… https://t.co/8v0FWIbVtB +04/17/2018,Actors,@EvaLongoria,"RT @InStyle: Fact: @EvaLongoria has the coolest girl gang. 💯 Anna Faris, Victoria Beckham, Kerry Washington, Reese Witherspoon, and more ca…" +04/17/2018,Actors,@EvaLongoria,RT @OfficialWalkApp: @FelicityHuffman paid tribute to her friend and @DesperateABC co-star @EvaLongoria as she got her Star on the Hollywoo… +04/17/2018,Actors,@EvaLongoria,RT @ReallyMarcia: This is just a cookie. But if you go to the #HollywoodWalkofFame you can see @EvaLongoria’s brand new star!!! Love love l… +04/17/2018,Actors,@EvaLongoria,"RT @ReallyMarcia: I was there with bells on!! +Here’s your pic..xo m https://t.co/GbDF1JAFG3" +04/17/2018,Actors,@EvaLongoria,Thank you to so many beautiful women who showed up to support me and my star on the Walk of Fame. What an honor and… https://t.co/tOFNmSJb4N +04/17/2018,Actors,@EvaLongoria,"Well, it’s done! I’m officially available to be walked all over! What an honor! Thank you Hollywood Chamber of Comm… https://t.co/8jEVLrrfY0" +04/16/2018,Actors,@EvaLongoria,What a dream come true today! Receiving my star on the Walk of Fame is an honor I can’t even believe I’m going to e… https://t.co/VlouddVdZj +04/15/2018,Actors,@EvaLongoria,It’s a “no makeup” kinda day 😌 Happy Sunday y’all!! https://t.co/z0EqSOIWjv +04/14/2018,Actors,@EvaLongoria,RT @FelicityHuffman: Shhh working on my speech for @EvaLongoria’s star on the Hollywood Walk of Fame! ✨ https://t.co/VBuxSxXK4I +04/14/2018,Actors,@EvaLongoria,RT @OverboardMovie: Revenge never tasted so sweet. #OverboardMovie sails into theaters May 4. Get your tickets now: https://t.co/YKDxg5L8Sp… +04/14/2018,Actors,@EvaLongoria,Happy Saturday everyone! Let the weekend therapy begin 🙌🏼 🌸 https://t.co/vUUiKvsJFw +04/13/2018,Actors,@EvaLongoria,"Happy birthday to the best human being in the world! I’m so lucky to be able to have you as my life partner, my hus… https://t.co/yRzFfj1LOp" +04/12/2018,Actors,@EvaLongoria,"Feb 2016, with these beautiful souls. LOVE YOU sisters ❤️ #TBT https://t.co/Fmh9oA3vpj" +04/11/2018,Actors,@EvaLongoria,Thank you @jimmykimmel for a great time! As always! My 12th appearance on your show! And my son’s first appearance… https://t.co/LnndWgHNeQ +04/11/2018,Actors,@EvaLongoria,"RT @JimmyKimmelLive: Tonight on #Kimmel @EvaLongoria #OverboardMovie, Sebastian Maniscalco @SebastianComedy #StayHungry and @DanielCaesar &…" +04/11/2018,Actors,@EvaLongoria,"Yup, all I talk about nowadays is baby stuff 🤣 More baby talk tonight on @JimmyKimmelLive 👶🏻 @OverboardMovie https://t.co/ehRlVMPIJU" +04/11/2018,Actors,@EvaLongoria,Tonight!!! https://t.co/xZscX7s1s2 +04/11/2018,Actors,@EvaLongoria,RT @JimmyKimmelLive: Baby talk with @EvaLongoria! 👶 #OverboardMovie https://t.co/FUc2uV5POE +04/10/2018,Actors,@EvaLongoria,Happy Tuesday guys!!!! Today I visited my friend @TheEllenShow to talk all things babies and @OverboardMovie don’t… https://t.co/Q76x1XIzzH +04/10/2018,Actors,@EvaLongoria,Enough is ENOUGH 🤚🏼 #EqualPayDay https://t.co/wkyWRWJDS1 +04/10/2018,Actors,@EvaLongoria,"Childhood cancer affects the whole family & we often overlook the strong brothers & sisters of the patients. Today,… https://t.co/hvbB2N9RRV" +04/09/2018,Actors,@EvaLongoria,Working Mama! Getting it done! 💪🏼 #WorkingMama #MotivationalMonday #GrandHotel https://t.co/geFgbeYaew +04/08/2018,Actors,@EvaLongoria,Sunday: the day when I plan a lot and pretty much do nothing but chill with my doggies 🤣 #Popeye https://t.co/dkNTGKtKx2 +04/08/2018,Actors,@EvaLongoria,"RT @TIMESUPNOW: Hey @tonyrobbins, are you serious? Well you also said, “The path to success is to take massive, determined action.” Don’t w…" +04/08/2018,Actors,@EvaLongoria,Huh? Wow he has it all wrong. https://t.co/APi6vKlPkb +04/07/2018,Actors,@EvaLongoria,It’s a good day to have a good day! Happy Weekend everyone ❤️ https://t.co/wwzNE7HWV7 +04/06/2018,Actors,@EvaLongoria,"Ok everyone, attention please! It’s Friday y’all!!!! 🙌🏼 https://t.co/CfuGOZXkFD" +04/05/2018,Actors,@EvaLongoria,Oh Napa how I miss you! And my girls @ClaudiaZapata and @MariaRBravo too! https://t.co/Ri5gZKkHjp +04/05/2018,Actors,@EvaLongoria,50 years ago on April 4th Dr. King’s life was cut short but his dream still lives. My dream is equal pay for women.… https://t.co/qVkRfIBWMC +04/04/2018,Actors,@EvaLongoria,"Dear Wednesday, bring on the Sunshine 😎 https://t.co/3F4CVOEXYv" +04/03/2018,Actors,@EvaLongoria,RT @shopevalongoria: One of our favorites👇🏼 The perfect day-to-night look brought to you by #EvaLongoriaCollection. This is the outfit @Eva… +04/03/2018,Actors,@EvaLongoria,Thrilled for another year celebrating #WomenofWorth with @LOrealParisUSA. Nominate a woman making a difference in y… https://t.co/0TtKeLXf8K +04/02/2018,Actors,@EvaLongoria,"Happy bday to one of the most beautiful women inside and out! This woman has been my friend, my sister, my confidan… https://t.co/NhKR7Lc8t9" +04/02/2018,Actors,@EvaLongoria,My little cabana boy! 🌞 Thank you Diego! #HappyMonday https://t.co/DjMk2BE9Uf +04/02/2018,Actors,@EvaLongoria,"RT @OverboardMovie: An amnesiac. A scorned woman. A plan for revenge….OVERBOARD. +In Theaters May 4th + +#NotATelenovela #AprilFoolsDay https…" +04/01/2018,Actors,@EvaLongoria,Happy Easter from my egg to yours!! #HappyEaster 🌸🐰🐣🌸 https://t.co/uZZfJQ6ztc +03/31/2018,Actors,@EvaLongoria,RT @blackishabc: It's all smiles with @MilesBrown when @EvaLongoria Baston stops by to direct an episode! Re-watch Eva's #blackish directo… +03/31/2018,Actors,@EvaLongoria,Hope you are all having a relaxing weekend! Happy Saturday! ❤️ https://t.co/xZyYX9k3zr +03/30/2018,Actors,@EvaLongoria,Happy Friday y’all ❤️Easter came early this year! Head on over to https://t.co/OLDrXp9nUI to @shopevalongoria 30% o… https://t.co/r6NH7hDiZK +03/29/2018,Actors,@EvaLongoria,Team work makes the dream work 🙌🏼 #TeamEva #tbt https://t.co/zt4LVK62jN +03/28/2018,Actors,@EvaLongoria,"Kind heart, fierce mind, brave spirit 💪🏼 you’re all of that and SO much more! Love you @ananavarro ❤️ #WCW https://t.co/JsLZwwhwNn" +03/28/2018,Actors,@EvaLongoria,RT @shopevalongoria: Every day is a fashion show & the world is the runway 🙌🏼Here's a sneak peek of our Spring '18 collection being showcas… +03/28/2018,Actors,@EvaLongoria,RT @TraceeEllisRoss: Tonight's episode of @blackishabc was wonderfully directed by my dear friend @evalongoria! I loved every minute of it… +03/27/2018,Actors,@EvaLongoria,You guys!!!! Make sure to tune in on @ABCNetwork to watch the episode I directed for @blackishabc 🎬 TONIGHT at 9|8c… https://t.co/h8TIEj3KAb +03/27/2018,Actors,@EvaLongoria,"RT @OverboardMovie: Don’t worry, Carlos. We can keep a secret. #OverboardMovie https://t.co/biz9444M16" +03/27/2018,Actors,@EvaLongoria,"RT @EugenioDerbez: Y finalmente después de varias propuestas, les presento el póster de #HombreAlAgua . Si se lo encuentran en la calle, su…" +03/27/2018,Actors,@EvaLongoria,Miami Mornings ☀️🌊 https://t.co/2bDK5sIy14 +03/26/2018,Actors,@EvaLongoria,Adiós weekend... Hello Monday 👋🏼 https://t.co/uf5Wpklx2v +03/25/2018,Actors,@EvaLongoria,"Life is cool by the pool, and even better if you’re in Miami 😎 Happy SUNday everyone☀️ https://t.co/wsnvG8y5O0" +03/24/2018,Actors,@EvaLongoria,"What a relief to know that YOU are the future of this country. I stand with all of you who marched today, I’m so pr… https://t.co/u11wbcWPLc" +03/24/2018,Actors,@EvaLongoria,RT @shopevalongoria: #BTS shots of @EvaLongoria at @HSN ! Retweet if you watched! Visit https://t.co/kXGq0Y6mMA to shop our Spring Collecti… +03/24/2018,Actors,@EvaLongoria,RT @shopevalongoria: Read what @wwd has to say about @EvaLongoria X @HSN by clicking https://t.co/J539huQLge ! https://t.co/XEqSviHJz4 +03/24/2018,Actors,@EvaLongoria,Your face when it’s Saturday and you’ve slept more then 8 hrs 😝🤣 Happy Saturday y’all ❤️ https://t.co/Pt9HEUJRGJ +03/23/2018,Actors,@EvaLongoria,"Live, Love, W🐶🐶F... Happy #NationalPuppyDay to these two! ❤️ https://t.co/WybaOOWJpL" +03/23/2018,Actors,@EvaLongoria,"RT @HSN: #TGIF! It's been a fabulous week with @EvaLongoria, but we are looking forward to the weekend ahead! What are your plans? 😀 https:…" +03/23/2018,Actors,@EvaLongoria,Day #2 🙌🏼 We’re now live on @HSN! Make sure to tune in to learn more about my Spring 18’ #EvaLongoriaCollection. Li… https://t.co/zy2PLiNCbR +03/23/2018,Actors,@EvaLongoria,SO ready for Day #2 @HSN ✨ https://t.co/Tp9El8rnNq +03/23/2018,Actors,@EvaLongoria,That first outfit 🙌🏼#EvaLongoriaCollection of course 🤣 #EvaLongoriaxHSN @shopevalongoria @HSN https://t.co/HqmfcAx42d +03/22/2018,Actors,@EvaLongoria,"RT @HSN: '@EvaLongoria Talks New Fashion Line on @HSN, Go-To Shoe Looks and Expecting a Child! https://t.co/5FHXbIAERR via @footwearnews" +03/22/2018,Actors,@EvaLongoria,RT @HSN: Jump into jumpsuits this spring with one of our favorite's by @EvaLongoria! 😍 https://t.co/rH9vxEacb5 #EvaLongoriaxHSN #StyleEdit… +03/22/2018,Actors,@EvaLongoria,Today is the day!!! 🙌🏼 I’ll be sharing my Spring 18’ #EvaLongoriaCollection LIVE on @HSN ✨ Make sure to tune in to… https://t.co/ojJYx4DrwY +03/21/2018,Actors,@EvaLongoria,Tomorrow is the day!!! I'm so excited to share with you my Spring 18' #EvaLongoriaCollection on @HSN. Here's a litt… https://t.co/viWhZ1xOuU +03/20/2018,Actors,@EvaLongoria,The Weinstein Company releases anyone who suffered or witnessed any form of sexual misconduct by Harvey Weinstein f… https://t.co/vHZJc6GbmB +03/20/2018,Actors,@EvaLongoria,"It’s been a loooong week... oh wait! It’s just Tuesday 🤣 Happy Tuesday everyone 💋 +.... +Wearing my… https://t.co/KzcXngIKt3" +03/20/2018,Actors,@EvaLongoria,I binged @OnMyBlockTv this weekend and loved it! Bravo to my friend @laurenei for co-creating and directing this am… https://t.co/Wub34DWdyE +03/19/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Only 3 more days until @EvaLongoria appears on @HSN to discuss her Spring collection, available now at https://t.co/…" +03/19/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Introducing our Spring '18 Floral Jumpsuit. Visit https://t.co/1A8glD5qez to shop this piece, which happens to be one…" +03/19/2018,Actors,@EvaLongoria,"3 more days!!! 🙌🏼 Be sure to tune in to see me on HSN March 22nd and 23rd, I cannot wait to share my Spring 18’ col… https://t.co/cFsv8RH81x" +03/19/2018,Actors,@EvaLongoria,Yes!!! 🙌🏼 https://t.co/VekullXUBW +03/19/2018,Actors,@EvaLongoria,"TIME'S UP calls on @NYGovCuomo to open an investigation of NY County DA, Cyrus Vance @manhattanDA, & the DA's offic… https://t.co/fujM7K3VMK" +03/18/2018,Actors,@EvaLongoria,"My kind of Sunday, napping with THREE babies! 😴👼🏻🐕🐶 https://t.co/kjbrE9PuRc" +03/17/2018,Actors,@EvaLongoria,Happy Saturday 💪🏼✨ https://t.co/63bNXeX6Er +03/16/2018,Actors,@EvaLongoria,So proud of my girl @ambertamblyn 👏🏼 ❤️ https://t.co/c9BMefsDlC +03/16/2018,Actors,@EvaLongoria,Thank you to everyone for the birthday wishes! I felt the LOVE ❤ Every year I have more to be thankful for. Love yo… https://t.co/cGuIwr7UuF +03/16/2018,Actors,@EvaLongoria,"RT @lorenridinger: Happy Birthday to my sister @evalongoria! Beautiful inside and out with a heart of gold, your… https://t.co/YPfjKC80wY" +03/16/2018,Actors,@EvaLongoria,Say. No way! I had no idea! Happy birthday my fellow Pisces! 🎉🎉🎉 https://t.co/sxeKLjZfzS +03/16/2018,Actors,@EvaLongoria,@iamwill No way! I had no idea! Happy birthday my fellow Pisces! 🎉🎉🎉 +03/16/2018,Actors,@EvaLongoria,RT @_juliannemoore: Happy Birthay beautiful @EvaLongoria -wishing the best year of your life ❤️ +03/16/2018,Actors,@EvaLongoria,"RT @MarioLopezExtra: Goodnight birthday girl! You’re already getting the best gift ever... :) +@EvaLongoria + +#BirthdayGirl #PregnantAF htt…" +03/16/2018,Actors,@EvaLongoria,"RT @ElizabethBanks: Yass 🎉 Happy Birthday, @EvaLongoria. #wonderwoman https://t.co/ywzxq6zwLI" +03/16/2018,Actors,@EvaLongoria,"RT @FelicityHuffman: Happy Birthday sweet friend, +You make me happy. +Love +F + +@EvaLongoria https://t.co/5pMSIlISHB" +03/16/2018,Actors,@EvaLongoria,RT @PantelionFilms: Que linda sorpresa le dio el cast de @OverboardMovie a @EvaLongoria. Feliz cumpleaños Eva! 🎉🎊 https://t.co/LC1DNEd4N7 +03/15/2018,Actors,@EvaLongoria,"RT @hollyrpeete: Wishing this AMAZING lady a happy birthday 🎁🎉🎈 +Sister, daughter, wife, stepmommy,friend, actor, director, businesswoman, E…" +03/15/2018,Actors,@EvaLongoria,"RT @RWitherspoon: Happy Birthday to the perfect date for Girl's Night, @EvaLongoria ! Love you sister 💕 https://t.co/4THSPQOJWk" +03/15/2018,Actors,@EvaLongoria,RT @kerrywashington: Wishing my sister @EvaLongoria the happiest of birthdays. Love you! ¡Cumpleaños feliz! Con mucho cariño. Siempre ❤️ ht… +03/15/2018,Actors,@EvaLongoria,"RT @zoesaldana: Feliz Cumpleaños, @EvaLongoria🎂🍰❤️ +I hope you have a beautiful day! +Abrazos y Besos! https://t.co/LeEMs3O7oZ" +03/15/2018,Actors,@EvaLongoria,"RT @LanaParrilla: A big HAPPY BIRTHDAY to this gorgeous, powerful woman @evalongoria 💥 Love you to the moon and… https://t.co/EEMicKOjYG" +03/15/2018,Actors,@EvaLongoria,"RT @OverboardMovie: Happy birthday to our favorite partner in crime, @EvaLongoria. #OverboardMovie https://t.co/2WmgucUwz3" +03/15/2018,Actors,@EvaLongoria,I can’t believe on this birthday I have a pending birth inside of me! Thank you all for the birthday wishes already… https://t.co/YSbWLgysUT +03/14/2018,Actors,@EvaLongoria,"So excited for the @OverboardMovie press junket today! 📸 +. +Hair: @frankiepayne +Makeup: @MakeupByElan +Stylist:… https://t.co/hlCopJJ9ja" +03/14/2018,Actors,@EvaLongoria,RT @shopevalongoria: Work attire ✔︎ @meganfayy poses in #ELC Hi Lo Hem Blazer paired with our Straight Leg Pants. Visit https://t.co/QEFtfS… +03/14/2018,Actors,@EvaLongoria,RT @ThomasBarbusca: East Coast get ready for a brand new episode of @TheMickFOX with my favorite @EvaLongoria directing 🙌🏻 #themick https:/… +03/14/2018,Actors,@EvaLongoria,"When women support each other, incredible things happen ✨ My #WCW goes to these smart and courageous women, my soul… https://t.co/iE91L8vx5r" +03/13/2018,Actors,@EvaLongoria,EVERY. SINGLE. TIME. 🤣 https://t.co/L258G8bv7T +03/12/2018,Actors,@EvaLongoria,I’m so lucky to be in Ken’s presence! https://t.co/aIvoc7lZwe +03/12/2018,Actors,@EvaLongoria,RT @HSN: We ♥️ you and your collection @EvaLongoria and can't wait to show it off! #EvaLongoriaXHSN #StyleEdit https://t.co/KKDpHoKQc1 http… +03/12/2018,Actors,@EvaLongoria,"Calling all of my fashionistas!!! 🔊 Be sure to tune in to see me on @HSN March 22nd and 23rd, I am so excited to sh… https://t.co/GnKVNhygS2" +03/11/2018,Actors,@EvaLongoria,RT @OverboardMovie: That’s not what they mean by “Spring forward”. #DaylightSavings #OverboardMovie https://t.co/L7pMG6HUPd +03/11/2018,Actors,@EvaLongoria,Everyone be sure to catch my brother tonight at 10p/9p central on ABC! Amazing new show called #Deception You can’t… https://t.co/9kQlDntOAo +03/11/2018,Actors,@EvaLongoria,Sundays should come with a pause button 😭 https://t.co/NjEc3DxZlA +03/10/2018,Actors,@EvaLongoria,When you know it’s Saturday and you can sleep a little longer 🙌🏼🤣 Trying to get it in before daylight savings time!… https://t.co/wfUvwftH1J +03/09/2018,Actors,@EvaLongoria,🙌🏼 https://t.co/v0mtApQT8K +03/09/2018,Actors,@EvaLongoria,Congrats to this badass woman who made her “comeback” yesterday after giving birth to my future son’s girlfriend Ol… https://t.co/4z2YAnOHLr +03/08/2018,Actors,@EvaLongoria,RT @OverboardMovie: Women are stronger together. #InternationalWomensDay #OverboardMovie https://t.co/nemM6NpjWU +03/08/2018,Actors,@EvaLongoria,This #womensday I thank the future generations of women (& men) who will carry on the fight for gender equality. Wh… https://t.co/LvoPb7SXqP +03/07/2018,Actors,@EvaLongoria,Mornings were made for coffee ☕️ Happy Wednesday everyone ❤️ https://t.co/FrkRxZtcrS +03/06/2018,Actors,@EvaLongoria,Hello Sunny Tuesday ☀️ https://t.co/JHrXm4nl7c +03/05/2018,Actors,@EvaLongoria,"Dear Monday, just hand me Friday and nobody gets hurt 🤣 https://t.co/OQx3HjZrYr" +03/05/2018,Actors,@EvaLongoria,RT @AshleyJudd: Congrats to #Mudbound cinematographer Rachel Morrison @morrisondp for making history by becoming the first female Director… +07/01/2018,Actors,@TheRock,"RT @averyhartmans: This morning, @TheRock introduced his first-ever wireless headphones, designed to help you ""crush your workouts"" 💪 https…" +07/01/2018,Actors,@TheRock,Here I go playing Willy Wonka again and surprised our lil’ baby Jazzy with this horse and carousel ride when she go… https://t.co/nx4kBditVZ +07/01/2018,Actors,@TheRock,"Off to a good start on tracking w/ a $30M U.S. number for our SKYSCRAPER debut. +Domestic box office is one piece o… https://t.co/jAC0F4ovkt" +06/30/2018,Actors,@TheRock,@gregwarhead @charliesimo @KevinHart4real @mattjwillis Haha never any shame in hustling to get your music heard dud… https://t.co/4Lxtj4PCVX +06/30/2018,Actors,@TheRock,@ollyog @MatRoff Enjoy! Pint? Nah it’s your birthday. Let’s go with a gallon +06/30/2018,Actors,@TheRock,@ollyog @MatRoff Raising a glass to you on your birthday buddy! Cheers 🍻 👊🏾 +06/30/2018,Actors,@TheRock,@charliesimo @gregwarhead @KevinHart4real @mattjwillis Haha I have a fun idea - how bout you watch it with us and t… https://t.co/FD9zsZuwMq +06/30/2018,Actors,@TheRock,@diverse_kcox Hah well tequila helps the ol’ memory 🤙🏾 +06/30/2018,Actors,@TheRock,@Sichz_ Thx dude very kind of you to say. Thx for diggin all my stuff 🙏🏾👊🏾 +06/29/2018,Actors,@TheRock,"DECEMBER 13th, 2019. +The game is not over... +And I get to slap @KevinHart4real’s lips into next week. The world is… https://t.co/LDWAxojudu" +06/29/2018,Actors,@TheRock,RT @DanyGarciaCo: SO HAPPY w/ the creative content & direction of this launch! @sevenbuckscr CRUSHED it & captured the magic of @therock an… +06/29/2018,Actors,@TheRock,Make sure you experience our VR Skyscraper leap off the crane. I tried it multiple times and failed lol. It’s an in… https://t.co/686wr7G4jg +06/29/2018,Actors,@TheRock,RT @SevenBucksDS: Who doesn’t love a good action movie (or five)? No better authorities to wax-poetic on the subject than @TheRock and Neve… +06/29/2018,Actors,@TheRock,"Boom 🎧 +One of the best, if not THE best over the ear headphones you’ll ever train in. Engineered for HARD CORE TRA… https://t.co/e0wBlzVZ0P" +06/29/2018,Actors,@TheRock,Yes sir. Get after it! Playlist personally created by me. Start with WE READY and let the destruction begin 💪🏾👊🏾… https://t.co/Zgw8FLLaKw +06/29/2018,Actors,@TheRock,"Haha thank ya for the huge SKYSCRAPER props. Very cool to see everyone loving the movie. And yes, drinking beer and… https://t.co/M1fIV7o8fQ" +06/28/2018,Actors,@TheRock,We smell it and smells like shi🤣. Thanks dude! Enjoy the training shoes! First drop sold out in 30min. We just drop… https://t.co/dynE2tHYwT +06/28/2018,Actors,@TheRock,"Enjoy the 🎧👟! +Great copps! Stay strong / train hard! +https://t.co/vYtBQVsMjX https://t.co/ZgZXy5WtfF" +06/28/2018,Actors,@TheRock,@redletterdave Great idea💡 but I’ll do it in multiple accents and ever so slightly drunk of tequila lol 👊🏾 +06/28/2018,Actors,@TheRock,"RT @redletterdave: These headphones sound great. + +Next version: An onboard AI like Siri, but with The Rock's voice, to motivate your candy…" +06/28/2018,Actors,@TheRock,"Thank you man. +I put a lot of effort into delivering high quality @UnderArmour products. +And please don’t go brok… https://t.co/UTYmSrWhaX" +06/28/2018,Actors,@TheRock,"Thank you man and enjoy the great. Those #ProjectRock1s training shoes sold out in less than 30min, four weeks ago,… https://t.co/TN59pN6qsV" +06/28/2018,Actors,@TheRock,@ollyog Happy early birthday to my BFF. I will never again equate an emoji face with masculinity 😂🤦🏽‍♂️ +06/28/2018,Actors,@TheRock,"Great review! +I also added new “talk thru technology” which allows us to keep our headphones ON and listen to peop… https://t.co/GPYKeEAm76" +06/28/2018,Actors,@TheRock,"@ChrisClarkNFL @UnderArmour Cool! Let me know how you like em dude. Again, if they suck, let me know and I’ll send… https://t.co/fu5dlHa5vU" +06/28/2018,Actors,@TheRock,"Enjoy @averyhartmans!! Crush it! +🎧 💪🏾 +https://t.co/vYtBQVsMjX https://t.co/LWmTIqGvXC" +06/28/2018,Actors,@TheRock,"Enjoy my man 🎧 +They’ll be one of the best, if not, the best over the ear headphones you’ve trained in. +And because… https://t.co/9P2lJ8YO2T" +06/28/2018,Actors,@TheRock,"It’s ON! +Our most anticipated @underarmour #ProjectRock drop - the CHASE GREATNESS COLLECTION is OUT NOW. +As alwa… https://t.co/8O8BLDoTye" +06/28/2018,Actors,@TheRock,"RT @ShannonCorbeil: So @TheRock is awesome, obviously, but Neve Campbell as a badass combat veteran stole my heart. + +#SkyscraperMovie is F…" +06/28/2018,Actors,@TheRock,See you at the top one day man. Keep puttin’ in that hard work. Glad you loved the movie. #SkyscraperMovie https://t.co/UFIeOqnlI1 +06/28/2018,Actors,@TheRock,"Billy’s right! +But for the sweet science record, asteroids are always a pain in the a** to stop. I can stop meteor… https://t.co/Ei1Vhxt2ub" +06/28/2018,Actors,@TheRock,"👏🏾👊🏾 Neve Campbell, who plays my wife, crushes in our movie. Proud of her! Our writer/director @RawsonThurber wrote… https://t.co/WOvCKnAQKH" +06/27/2018,Actors,@TheRock,@Reluctantly_pod @djdizzle82 @KathrynGironimi 🙏🏾 for tha luv!!;) +06/27/2018,Actors,@TheRock,Yessss! More @caityweaver love for writing one of the greatest profiles of all time. (of course she had a brilliant… https://t.co/PvxMhrmk93 +06/27/2018,Actors,@TheRock,"Very cool, significant and rare news for our SKYSCRAPER in CHINA. The country has awarded us a July 20th release da… https://t.co/RwOv4qyxQI" +06/27/2018,Actors,@TheRock,Dude always a pleasure working with you. Never an ego and always down to do whatever it took to entertain the fans.… https://t.co/1heOocEY3N +06/26/2018,Actors,@TheRock,"Reddit community time for some fun! +Tomorrow (Wed) join my SKYSCRAPER writer/director Rawson Thurber at 3pm PDT. +G… https://t.co/rRPKU5jAoG" +06/26/2018,Actors,@TheRock,"You know I love my contests & giving cool shit away! 🤙🏾 +Teamed up w/ @AtomTickets to make the SKYSCRAPER TICKET TO… https://t.co/f8CskZQOI1" +06/26/2018,Actors,@TheRock,RT @DanHevia: I never knew I needed @TheRock vs. @rustyrockets until now. @HBO this is why I subscribe. 🤙 https://t.co/gaK5zlatBV +06/26/2018,Actors,@TheRock,RT @AprilCPA1991: Yes!! One of my fav shows is coming back! Love #ballers and love the cast! Especially my fellow UM alum @TheRock ! 🙌🏼🙌🏼 h… +06/26/2018,Actors,@TheRock,RT @elaysiaamour: Yessss let’s gooo https://t.co/ZaHdBIjc5b +06/26/2018,Actors,@TheRock,RT @hhe_71: Lets goooo! Can’t fuckin’ wait! #ballers https://t.co/koxKmfNxQi +06/26/2018,Actors,@TheRock,"RT @LucasSteagall: Fun fact: A day acting on this show is my favorite day on set of all time, every time. Another fun fact @TheRock is a fr…" +06/26/2018,Actors,@TheRock,RT @scott_f_mack: Awesome to see the next season of #ballers is coming out this summer. Can’t wait to check it out 👀 https://t.co/08KVSEVW4o +06/26/2018,Actors,@TheRock,RT @akhilg06: Love this show #ballers https://t.co/lQTPn1rpeT +06/26/2018,Actors,@TheRock,RT @OilyMomHere: Woo hoo!!! So excited for this season to rock....thank you https://t.co/yRYYonOfqI +06/26/2018,Actors,@TheRock,RT @peterocksteady: Feel like I've been waiting forever big bro @TheRock I'm Ready! #Ballers https://t.co/CECRwP9Nrz +06/26/2018,Actors,@TheRock,"I’m blown away. Thank you CHINA 🇨🇳 +RAMPAGE crosses the rare $1Billion RMB mark & becomes my highest grossing film… https://t.co/SXVQHo99PV" +06/26/2018,Actors,@TheRock,Pleasure meeting my dude @nicksanto534. What a positive ray of light and “no excuses” perspective on approaching li… https://t.co/GsozXiF95f +06/25/2018,Actors,@TheRock,@kharypayton 😂 👏🏾👊🏾 fuckin classic (and true) +06/25/2018,Actors,@TheRock,"RT @SevenBucksProd: Different coast, same hustle. @BallersHBO is back in business August 12 on @HBO. #Ballers #HBO https://t.co/wFS63l0c76" +06/25/2018,Actors,@TheRock,NEW SEASON of @ballershbo & this may be our best yet. We’re @HBO’s #1 half hour show for years now & I’m very proud… https://t.co/7omCBgbM6I +06/24/2018,Actors,@TheRock,"I’d 💯 vote for him, because he’s King of the ‘Gram but I also heard he’s a real a**hole, so no vote for him.… https://t.co/btUaVX3TOv" +06/23/2018,Actors,@TheRock,"Starting off my Sat by reviewing new TV spots for SKYSCRAPER. +Note pad and pen at the ready and diggin’ in to my p… https://t.co/8zsNzVRX3G" +06/23/2018,Actors,@TheRock,Join us today at 415 EST on ⁦@FOX for NOSSA CHAPE. Took me a few takes to fight back tears and get thru my lines fo… https://t.co/ElvmQIUxvl +06/23/2018,Actors,@TheRock,Wow FIVE #TeenChoice2018 NODS. THANK Y’ALL so very much. Grateful to have the greatest fans on the planet. Vote now… https://t.co/1iWX47cIkF +06/22/2018,Actors,@TheRock,"3 week countdown is on. +Most anticipated “nail biting, terrorizing fun you’ll have three thousand feet in the sky”… https://t.co/HcSeDurKTQ" +06/22/2018,Actors,@TheRock,"Hey punk @JKCorden, you’re gonna need much more than a silly #EatShitTheRock hashtag to start a beef between me and… https://t.co/MtXBIv4NnO" +06/21/2018,Actors,@TheRock,"RT @skyscrapermovie: EXCLUSIVE: A family in danger, an impossible leap, heroes, villains... @TheRock and the #SkyscraperMovie filmmakers gi…" +06/21/2018,Actors,@TheRock,"Big #ChaseGreatnessCollection2 drops next THURSDAY 6/28. +Including my first signature shoe that, fortunately sold… https://t.co/PCYerDRk9z" +06/21/2018,Actors,@TheRock,You make us happy too El. And thanks for including Kev’s name in your tweet. He gets super jelly when he’s not ment… https://t.co/BwQFadIjwp +06/20/2018,Actors,@TheRock,@cebsilver I’m skeptical reading “former” gym rat which I assume means you don’t train anymore. These headphones may not be for you buddy +06/20/2018,Actors,@TheRock,"Hype is real 🎧! +Our new #ProjectRockWireless @UnderArmour @JBLaudio first ever HARDCORE TRAINING headphones drop ne… https://t.co/hY1zHTGVMs" +06/20/2018,Actors,@TheRock,"Cool SKYSCRAPER movie fact/ +We hired Adrian… https://t.co/DTIoJndovx" +06/20/2018,Actors,@TheRock,"They’re here 🎧 +Like you, my gym time is… https://t.co/BuqXovimEt" +06/19/2018,Actors,@TheRock,"As you know, #SKYSCRAPER is my homage to DIE… https://t.co/wt17KA6U92" +06/19/2018,Actors,@TheRock,"Always make it about consistency, not greatness. Greatness will come. Have a GREAT season boys. Big respect & suppo… https://t.co/uvB7JJVNGD" +06/18/2018,Actors,@TheRock,@ava Congratulations AD. Onward/Upward 🤙🏾 +06/18/2018,Actors,@TheRock,Kuz told me he wanted his best summer ever. Boy’s puttin’ in the work 👏🏾💪🏾 https://t.co/j4z2i1i6mX +06/18/2018,Actors,@TheRock,@RealPAULLOGAN Thank you PL!! Appreciate it brother 👊🏾 +06/18/2018,Actors,@TheRock,"Trust me, Mel - I only got on my knees to feed Lauren while she breastfed because I was told there was free waffles… https://t.co/BPYpDR8nFw" +06/18/2018,Actors,@TheRock,So humbling and GRATEFUL to see @MakeAWish wish granting come full circle in my family. Thank you to the entire Mak… https://t.co/CcxZGIThAg +06/18/2018,Actors,@TheRock,@Emilyvaughnx Thx you Em!!! 🙏🏾👊🏾❤️ +06/18/2018,Actors,@TheRock,Haha perfect. Congratulations my friend on #5. I got some work to do to catch up. I’ll stay practicing lol.… https://t.co/7eLJxUY2wL +06/18/2018,Actors,@TheRock,"Bitter sweat Sunday, but my baby girl’s made it… https://t.co/ee4yx9nPgG" +06/17/2018,Actors,@TheRock,"What are you so upset about brother. You told me last month you’re not their real father anyway. +Love ya buddy and… https://t.co/xixnJdD2Yp" +06/17/2018,Actors,@TheRock,Happy Father’s Day to this hardly ever smiling… https://t.co/hIV2tdkbXo +06/17/2018,Actors,@TheRock,Family 👊🏾 Congrats boys! 🇲🇽 Thank you to my… https://t.co/YHVaFki6hV +06/16/2018,Actors,@TheRock,"Close up the honky tonks and lock all the doors,… https://t.co/5w7Q09YJ4U" +06/16/2018,Actors,@TheRock,"Calm before the storm. +Shooting our big… https://t.co/ySFgMwFknp" +06/16/2018,Actors,@TheRock,"*swipe left +Day of reckoning. 108 degrees.… https://t.co/oYgIlW1uck" +06/16/2018,Actors,@TheRock,"Family 👊🏾 +Thank you to my boys @jona2santos… https://t.co/Pq5QBYW3FH" +06/16/2018,Actors,@TheRock,"Doing some great biz with Universal. Grateful to have started my career with them years ago (Scorpion King). +Good… https://t.co/5SFcATqY4t" +06/16/2018,Actors,@TheRock,"Ladies, gents and children of all ages.. The… https://t.co/c7kMjovDUx" +06/16/2018,Actors,@TheRock,"🙏🏾 Much mahalo for this crazy fun buzz. RED NOTICE was the pitch that created a huge bidding war, eventually becomi… https://t.co/oaZUFwOYbp" +06/16/2018,Actors,@TheRock,Cool to feel the early buzz about RED NOTICE - an international heist thriller with myself and my darlin’ friend… https://t.co/e7q9jCqH0J +06/16/2018,Actors,@TheRock,Dude on the left is pretty good at what he… https://t.co/SrS9QYP1OZ +06/16/2018,Actors,@TheRock,@greengoblin Def you!! 👊🏾 +06/15/2018,Actors,@TheRock,"SKYSCRAPER is my homage to DIE HARD & TOWERING INFERNO. A love letter to Willis, McQueen, Newman and Dunaway. +And… https://t.co/0IrtvrwtQm" +06/15/2018,Actors,@TheRock,"@preston316 Absolutely amigo. It’s inspired by Towering, Die Hard, The Fugitive.. films of the 70s & 80s genre. Ins… https://t.co/5hygFB0yj2" +06/15/2018,Actors,@TheRock,"@chriswelch Dammit Chris it’s daddy, not dad" +06/15/2018,Actors,@TheRock,"A father’s love is fierce. +Excited to deliver to you this summer’s most anticipated original action film.… https://t.co/Q3l4trW9y4" +06/15/2018,Actors,@TheRock,"@Fisher_DanaR Haha yes it is D. It’s secretly, Kevin Hart wearing a raccoon costume" +06/15/2018,Actors,@TheRock,😂👊🏾 “Hold my beer and watch this shit” #MPRRaccoon https://t.co/FNg7lfLeLL +06/14/2018,Actors,@TheRock,"Just three dudes. +Great chop session with this… https://t.co/42znOHlvkA" +06/14/2018,Actors,@TheRock,"@ChrisEvans Happy Birthday brotha! Halfway to 74! +🤣🤙🏾👊🏾" +06/13/2018,Actors,@TheRock,Thank ya dude. The movie is fantastic. Enjoy! And I AM TOUGH.. in my mind only 😂 #Skyscraper https://t.co/dpkTVdr70W +06/13/2018,Actors,@TheRock,"In ONE MONTH.. yup, it all goes wrong. +#SKYSCRAPER JULY 13th 🌎 https://t.co/73aA2E946g" +06/13/2018,Actors,@TheRock,"Found this gem 💎 +Check out 22yrs old and 280lbs… https://t.co/MsyIXpCrto" +06/13/2018,Actors,@TheRock,"*scroll left +I wrote Gal’s name down on my… https://t.co/L9890p0MZd" +06/12/2018,Actors,@TheRock,This one got me. Lil’ Carter here has children’s Alzheimer’s (Sanfilippo syndrome). Check out this vid and if you c… https://t.co/OR5H7ahpgc +06/12/2018,Actors,@TheRock,@a_lemay224 Perfect!! #swag +06/12/2018,Actors,@TheRock,"@KicKeePants Much much mahalo for the amazing warm and cozy’s. Unfortunately, none of it fits me, so I guess I’ll g… https://t.co/xaY62Bot0f" +06/11/2018,Actors,@TheRock,"Got my ass kicked today training legs. +3… https://t.co/Bwh3rlllbL" +06/10/2018,Actors,@TheRock,"Back of the jet is called, “DJ’s Think Tank”… https://t.co/jCcX7tps6N" +06/10/2018,Actors,@TheRock,"Wheels up / rockin’ out 🤟🏾 +#FlyingSilverEagle… https://t.co/Xkub5B3OUQ" +06/10/2018,Actors,@TheRock,"Meet Will Sawyer: +Father. Husband. Amputee. BAMF. +Don’t ever underestimate the power of a desperate man protectin… https://t.co/111rhg5N5m" +06/10/2018,Actors,@TheRock,@jimmykorderas Haha I always need your help man. Just like back in our ring days when I needed you to quick count every time I won lol +06/09/2018,Actors,@TheRock,Always ‘preciate you brotha. Keep doing great things and spreading the good word. #theotherside https://t.co/Xgkv98WoNp +06/07/2018,Actors,@TheRock,Still much to learn in the shoe and apparel… https://t.co/w8kFqKHfS1 +06/07/2018,Actors,@TheRock,@Stands And a very special goodnight to you too;) +06/07/2018,Actors,@TheRock,@OmarMiller’s a good man and I’m happy to help. Continued blessings to you guys and the mission center. https://t.co/XXvE2dxtiV +06/06/2018,Actors,@TheRock,@Chris_Ciaccia @UnderArmour Thanks for writing it my man. Reading fresh language about my biz helps me understand a… https://t.co/hE9T383oWu +06/06/2018,Actors,@TheRock,"Again, very nice measure and metrics to sell out so fast, but also gave me great clarity on where we can improve gr… https://t.co/rQvqIyO1Tc" +06/06/2018,Actors,@TheRock,"Market analytics ain’t sexy at all to tweet about, however nice to see our #ProjectRock footprint making an impact… https://t.co/CKz6pUwYrT" +06/06/2018,Actors,@TheRock,Great success with our launch. Sold out in 30min. Satisfied consumers but still lots of work to be done! Always loo… https://t.co/cFJAjxORIh +06/06/2018,Actors,@TheRock,@JamesGunn @karengillan @michaelrosenbum @jumanjimovie @Guardians @seangunn @jackblack @prattprattpratt… https://t.co/YVTxJKeUE4 +06/06/2018,Actors,@TheRock,"Hell, we’ll get therapy together brother lol. Keep kickin ass champ! 🤙🏾👊🏾 https://t.co/qC5MhaXUhX" +06/05/2018,Actors,@TheRock,@LegitJoeyBowie Boom 💥 🤙🏾👊🏾 +06/05/2018,Actors,@TheRock,These are called the “Hobbs Beef Piston Power… https://t.co/b6UthHycNu +06/04/2018,Actors,@TheRock,@mattdavella My all time fav pic. Thx for the love man! And that’s because you keep calling me from a pay phone...… https://t.co/1KiLcsvliw +06/04/2018,Actors,@TheRock,"Yes sir. We gotta have faith that the one thing we always wanted to happen, can often be the best thing that never… https://t.co/QmXueKgjLB" +06/04/2018,Actors,@TheRock,"Sunday shakas and scripts. +Reading our new Fast… https://t.co/i2UJacOjub" +06/04/2018,Actors,@TheRock,I have some great and productive conversations… https://t.co/EQU8fnWkqR +06/04/2018,Actors,@TheRock,"If you’re goin’ thru the struggle, hold on to… https://t.co/OPRXBNaEF7" +06/03/2018,Actors,@TheRock,Thank you man and have a great workout! Women’s ProjectRock shoes in development and delivering at the top of 2019.… https://t.co/jBnQ0Snozz +06/03/2018,Actors,@TheRock,"I got you @TiffanyHaddish! Yes, the secret password to our secret society MTV-inati, is “@KevinHart4real is shorter… https://t.co/Ktr7I4WhnV" +06/03/2018,Actors,@TheRock,Months and months of collaborating with @UnderArmour’s top designers. Thank you everyone who made our launch a huge… https://t.co/OfzCJ4ayHF +06/03/2018,Actors,@TheRock,"“Let It Go” + +You’re welcome. https://t.co/BPMS6gwpWQ" +06/03/2018,Actors,@TheRock,@Anna_Rothschild @SirDavidBBC @washingtonpost Aw thank ya for the love Anna! Flattered by the gesture 🤟🏾 for the re… https://t.co/K9qZbR8BDr +06/03/2018,Actors,@TheRock,"Hi Bob, which nickname are you referring to? Big Daddy? The Rock? Samoan Thor? Beef Piston? Or the inappropriate on… https://t.co/4dp4Wh8499" +06/03/2018,Actors,@TheRock,@KaylaBraxtonWWE Hah I’ll totes see ya there as per yoosh;) +06/03/2018,Actors,@TheRock,🙏🏾❤️ Aww thank ya Audra! Wishing everyone the best of luck for our #WarriorGames! Kick ass and have fun. And geeezu… https://t.co/vrr2EI8mdT +06/03/2018,Actors,@TheRock,"Very cool and flattering @DakotaKai_WWE. Thank you! Look forward to following your career. Work extremely hard, hav… https://t.co/Ts9C7AhYL9" +06/03/2018,Actors,@TheRock,You’re welcome cuz! Always proud of your success and hard work. Enjoy the Project Rock @UnderArmour gear and… https://t.co/lgSymLeOih +05/31/2018,Actors,@TheRock,@mikeavila @joemoscone77 Haha not at all! Flair over me is a smart move and I agree. He was one of my squared circl… https://t.co/5ZfqBjQr5v +05/31/2018,Actors,@TheRock,@AlexJamesFitz Some jerk asshole lol. We also have to add TOWERING INFERNO and THE FUGITIVE to the title +05/30/2018,Actors,@TheRock,RT @rampagethemovie: #RampageMovie is like nothing you’ve ever seen before. Don’t miss out on taking all the action with @TheRock home! Own… +05/29/2018,Actors,@TheRock,@KevinMcCarthyTV Thank you dude so much!! You’re gonna love the movie!! @RawsonThurber (writer director) did an ama… https://t.co/Y7gK6e3EQV +05/29/2018,Actors,@TheRock,Happy to see all the great reviews for my new signature training shoe @UnderArmour #ProjectRock1s. Spent a long ti… https://t.co/EDc6RKYDSI +05/29/2018,Actors,@TheRock,Thank you everyone for rockin’ with my new signature shoe - the #ProjectRock1s from @UnderArmour. In 30min they wer… https://t.co/U2NmkoraTF +05/29/2018,Actors,@TheRock,RT @johnkrasinski: Memorial Day. A day to honor and remember each and every one of the brave men and women who lay down their lives for ea… +05/29/2018,Actors,@TheRock,RT @prattprattpratt: I did my Murph yesterday because i’m in Shanghai where yesterday is already tomorrow? (or something like that) we’ve b… +05/29/2018,Actors,@TheRock,@Ron_Clements @buffa82 @UnderArmour Awful? 😂 Well I can promise you we’re not that my friend. Nice profile pic. Fuck off 💁🏾‍♂️🖕🏾 +05/29/2018,Actors,@TheRock,Incredible day for our first signature series @UnderArmour #ProjectRock1s - 100% sold out in 30min. It’s a smart tw… https://t.co/514lIwM45d +05/29/2018,Actors,@TheRock,"It’s Dwight you dickhead. Let’s get to work Jeff. + +Jokes aside, this one is truly going be an honor.… https://t.co/ONlPSKLofB" +05/28/2018,Actors,@TheRock,"Whoa. Blown away... +I got up at 4am (Hawaii time) today to launch my new signature series @UnderArmour… https://t.co/xFdLhHy1ng" +05/28/2018,Actors,@TheRock,"#ProjectRock1s AVAILABLE NOW 🔥 +My 1st signature series shoe from @underarmour. I’ve engineered & broken these down… https://t.co/72GR1N4B5a" +05/27/2018,Actors,@TheRock,Just when I thought I couldn’t be any more… https://t.co/fXdpUq5Vd2 +05/27/2018,Actors,@TheRock,@TheVenskus Papa? No. Daddy? Yes. Lol +05/27/2018,Actors,@TheRock,Just when I thought I couldn’t be any more… https://t.co/JbO0qQXCeZ +05/27/2018,Actors,@TheRock,@ChrisClarkNFL @UnderArmour You’ll dig these PR1’s for sure my man. The 15’s are large and wide. Not a narrow shoe… https://t.co/hWA1aCTPJl +05/27/2018,Actors,@TheRock,Leg day in my new @underarmour #ProjectRock1s… https://t.co/w5Mav66CJM +05/27/2018,Actors,@TheRock,Scroll left for the exclusive first look at my… https://t.co/YV6lUMi4Lk +05/27/2018,Actors,@TheRock,"We’re all in the same game, just different… https://t.co/923SoZjKmO" +05/26/2018,Actors,@TheRock,"Well I keep asking you out to join me for an amazing time eating dead cow and drinking tequila, but the “dead cow”… https://t.co/1PHMbgrAIz" +05/26/2018,Actors,@TheRock,"Love this. Have fun and tell the awesome birthday girl, Uncle Rock says “Have a blast on your birthday and go spend… https://t.co/N3HuNCuiYv" +05/26/2018,Actors,@TheRock,Here’s a breakdown of our 18month process on the development and engineering of my new signature sneaker. Pretty in… https://t.co/vpPZhox1oR +05/26/2018,Actors,@TheRock,"I’ve developed, trained in, broken down and refined this sneaker for over a year now. Highest of quality and durabi… https://t.co/wEZ9t96zOi" +05/26/2018,Actors,@TheRock,"This MONDAY we drop our new @UnderArmour #ProjectRock1s. +My first signature sneaker series from our CHASE GREATNES… https://t.co/Pa9aZsu8zO" +05/26/2018,Actors,@TheRock,"@johnreport @NatbyNature Your action figure looks way cooler, sexier & bad ass. Mine looks constipated and confused… https://t.co/svrXL9IQRH" +05/24/2018,Actors,@TheRock,Scroll left for the exclusive first look at my… https://t.co/mJD5DEIae9 +05/24/2018,Actors,@TheRock,And that’s saying A LOT cause your head is HUGE my friend @TheRossKing 😉🤙🏾. Always a good time chatting s you!… https://t.co/657lIG5hc2 +05/24/2018,Actors,@TheRock,Great time. Thank you for having me on your show! #Skyscraper https://t.co/z2Ap5sTmor +05/24/2018,Actors,@TheRock,"A lil’ taste of my new @UnderArmour PROJECT ROCK 1’s. +Been training in these and improving their quality for over… https://t.co/M0ZyfsnBh6" +05/24/2018,Actors,@TheRock,@toryshulman @skyscrapermovie @dailyblastlive Dude I wanted to cast you but what’s his name said no. Can’t remember… https://t.co/HMbtHGRgox +05/24/2018,Actors,@TheRock,"@HistoryofWrest Every Saturday night, I was at this show with my dad at the Portland Sports Arena. On Sunday’s the… https://t.co/bEnWyCuNTC" +05/23/2018,Actors,@TheRock,"I made a movie that pays homage to films that inspired me & a generation w/ grit, guts and heart - DIE HARD, THE TO… https://t.co/HI5Mku341r" +05/22/2018,Actors,@TheRock,"New full length SKYSCRAPER trailer drops tomorrow. +Most physical, emotional and intense role of my career. +I need… https://t.co/eKlQpsYeS1" +05/22/2018,Actors,@TheRock,"RT @EWagmeister: Another day, another piece of news coming from @TheRock’s world! + +DJ & his @SevenBucksProd business partner @DanyGarciaCo…" +05/22/2018,Actors,@TheRock,My main objective is to always make movies for the world to enjoy. And now that fun movie going experience extends… https://t.co/1AIdAdrwqI +05/22/2018,Actors,@TheRock,RT @Variety: Dwayne @TheRock Johnson and @DanyGarciaCo are bringing more high-wattage Hollywood electricity to Atom Tickets' advisory board… +05/21/2018,Actors,@TheRock,@JerryJarrett @TheJimCornette @HistoryofWrest I wish I did remember that Jerry! Dad always spoke highly of you and… https://t.co/WSDa0w7gUs +05/21/2018,Actors,@TheRock,A lil’ taste of my new SKYSCRAPER trailer debuting THIS WEDNESDAY! #SKYSCRAPER https://t.co/1UWy8lDVe5 +05/20/2018,Actors,@TheRock,@AdrianneCurry @TheMatthewRhode @jumanjimovie @skyscrapermovie Do it dude!! Thats the kind of deal where there are… https://t.co/C3fwz0vTlF +05/20/2018,Actors,@TheRock,"@robcorddry @hwinkler4real Dear Rob, I signed an autograph pic for Henry and it should be arriving this week into h… https://t.co/jxc3ld1nOY" +05/20/2018,Actors,@TheRock,"Saturday night doc viewing. +@thenotoriousmma… https://t.co/byQCyyIrSX" +05/20/2018,Actors,@TheRock,We’re gonna have times in our lives where we… https://t.co/YcF8eCjTiJ +05/20/2018,Actors,@TheRock,It’s a success philosophy thats worked very well… https://t.co/wr0ik4wlqn +05/20/2018,Actors,@TheRock,Thank you @lakers for having me speak to the… https://t.co/IXjvyhDV9K +05/20/2018,Actors,@TheRock,Just stopping in to show my appreciation and… https://t.co/bTS525qeB8 +05/20/2018,Actors,@TheRock,@chrissyteigen See baby you’re doing great!! @LaurenHashian 😉👍🏾 +05/20/2018,Actors,@TheRock,@Crockettfroggy @Goldust @Zelina_VegaWWE @JoeDiffieOnline Sheeeeyat am I a Joe Diffie fan? “If you want me to” is o… https://t.co/bU5gaNghgS +05/20/2018,Actors,@TheRock,@HistoryofWrest You can actual FEEL the tension and energy in the arenas across the country in the 70’s during matc… https://t.co/ZkaY20gGuw +05/20/2018,Actors,@TheRock,@Goldust @Zelina_VegaWWE Congrats brother. Proud of you (still remember us listening to ol’ Joe Diffie on the bus on the Germany tour;) +05/20/2018,Actors,@TheRock,@SMUheavyweight @OldWrestlingPic the original oooooh yeah! +05/20/2018,Actors,@TheRock,@SamariaPele Aww thank you sis!! +05/19/2018,Actors,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/QBEPyVqcxd" +05/19/2018,Actors,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/ajaZ2AxBgy" +05/19/2018,Actors,@TheRock,"We're keeping it going with @The_USO all the way through July 4th, kicking off our OPERATION WE WILL POWERED BY PR… https://t.co/qbxLLHqAgK" +05/18/2018,Actors,@TheRock,@OscarDronjak Hell yeah. Kick jet lags’ ass boys! Have a great tour 🤙🏾👊🏾 +05/17/2018,Actors,@TheRock,JAPAN! 🇯🇵 The wait it over...our monsters have finally arrived in your theaters! Get ready to experience me getting… https://t.co/a2hNPkX2Qp +05/17/2018,Actors,@TheRock,"64 hours in my day. +But, if I use the Force, then I can stretch it to 88. https://t.co/XyKl1BqMfw" +05/17/2018,Actors,@TheRock,RT @jpart16: SO HYPED! Let’s get it! 🙌🙌 https://t.co/p7U3LDBv2H +05/17/2018,Actors,@TheRock,"RT @zakfilmguy: Bruh, this summer boutta be even more lit 🔥🔥🔥🔥. Excited to rewatch before the season starts. https://t.co/U24YwVplAt" +05/17/2018,Actors,@TheRock,RT @OldSkoolPlaya71: Batten down the hatches! $#its about to get real again #BallersHBO https://t.co/M6OazKyqts +05/17/2018,Actors,@TheRock,"Haha yes and when you pour tequila on my voice is becomes honey coated gravel. And highly inappropriate. +Thx for w… https://t.co/ODWeRqa9p8" +05/17/2018,Actors,@TheRock,"RT @dunnigan24: let’s FUKING goooo, my shit right here 🔥🔥🔥🔥🔥 https://t.co/HgwJ5IW2CW" +06/26/2018,Actors,@jessicaalba,@CharterNewsroom +06/26/2018,Actors,@jessicaalba,We are here to kick ass and take names 💪🏽!!! LA’s Finest has been officially picked up by Charter Communications—ma… https://t.co/Xy9q9xe4iQ +06/19/2018,Actors,@jessicaalba,Signed 100+ copies of my July InStyle and I'm going to pop them into Honest bundles soon. Watch to see how I answer… https://t.co/euZhqz6jSf +06/12/2018,Actors,@jessicaalba,Haven showing off her sweet moves for her mama @instylemagazine #momlife #entrepreneurlife #flossin #haviepie… https://t.co/YIiMSbnbfE +06/12/2018,Actors,@jessicaalba,Haven showing off her sweet moves for her mama… https://t.co/cUzpPuldY6 +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they… https://t.co/raxt3FHBn2 +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they… https://t.co/6opFhpYQis +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they know… https://t.co/NBiD6O1F5N +06/08/2018,Actors,@jessicaalba,#fbf Thx landmarkhk for a great forum discussion… https://t.co/S337NUmB09 +06/07/2018,Actors,@jessicaalba,RT @wwd: .@jessicaalba’s the @Honest Company just landed a $200 million investment — and @Honest_Beauty is expanding to Europe for the firs… +06/07/2018,Actors,@jessicaalba,"RT @SuperSoulSunday: In an interview with @AlexBanayan, @JessicaAlba says why you should stop comparing yourself to others and embrace your…" +06/05/2018,Actors,@jessicaalba,We had a great chat #womenrulesummit @politico… https://t.co/2I1o37mGU1 +06/01/2018,Actors,@jessicaalba,"Hello @LandmarkHK , thanks for the warm welcome! +I will be sharing my journey as an entrepreneur, advocate & mothe… https://t.co/0qd6DgbzFg" +05/31/2018,Actors,@jessicaalba,"RT @InStyle: .@JessicaAlba on her TV comeback, breast pumping on set, and her biggest parenting mistake. https://t.co/Tv3pkQx2Yp" +05/30/2018,Actors,@jessicaalba,So excited about this partnership! @Honest_Beauty will be in EU! https://t.co/9WiQPI41mT +05/22/2018,Actors,@jessicaalba,My sweet baby Hayes and his amma helped me reveal our new summer diaper collection! My babe is going to live in the… https://t.co/mi1wkzQE3r +05/13/2018,Actors,@jessicaalba,Love this mother daughter duo!!!! Happy Mother’s Day! https://t.co/Qm0kxaCJYd +05/12/2018,Actors,@jessicaalba,@chrissyteigen @TheBabyGuyNYC All the time +05/08/2018,Actors,@jessicaalba,Thank you to @Delta for flying in all of the members of the @Baby2Baby National Network for our 4th Annual Summit!… https://t.co/YXtUOEYnut +05/04/2018,Actors,@jessicaalba,"Went to postmate lunch, saw the cinco de mayo menu, ended up ordering for the whole office https://t.co/qghQq2OjHa" +04/23/2018,Actors,@jessicaalba,https://t.co/xYO2Ru7ye4 https://t.co/i0p20gEe9q +04/10/2018,Actors,@jessicaalba,"On average, women are paid 20% less than men—and Black women and Latinas are paid even less. + +#20PercentCounts on… https://t.co/9ZIk8MO90d" +04/10/2018,Actors,@jessicaalba,Ever thought about what you’d do with 20% more pay? @LeanInOrg asked women just that. Check out their answers in th… https://t.co/LzVaypUxo6 +04/03/2018,Actors,@jessicaalba,@itsgabrielleu and I loved teaming up 👯‍♀️🚔 to shoot this pilot 🎬 for @BRUCKHEIMERJB… https://t.co/WpM2yM1r2o +03/28/2018,Actors,@jessicaalba,RT @itsgabrielleu: We ride together. We thrive together. We lip synch Timbaland & Magoo together. 💃🏽💃🏾 @jessicaalba #McKenna & #Syd #IssaPi… +03/03/2018,Actors,@jessicaalba,RT @THR: .@JessicaAlba & @ItsGabrielleU are teaming up for NBC's 'Bad Boys' spinoff https://t.co/uf2ck2DPLw https://t.co/DAHORvumk4 +02/04/2018,Actors,@jessicaalba,"Can't. handle. the. cuteness. Who's winning? My team that got to play with puppies and babies all morning,... https://t.co/kwEJf04Fu5" +02/01/2018,Actors,@jessicaalba,"RT @shondarhimes: Okay. Entertainment industry, time to stop using the phrases ""Smart Strong Women"" and ""Strong Female Leads"". There are…" +02/01/2018,Actors,@jessicaalba,"RT @Honest_Beauty: Q&A: What’s The Best Way To Winterize Hair? We went to @jenatkinhair, jetsetting celebrity hair stylist, for her take on…" +01/29/2018,Actors,@jessicaalba,RT @Honest_Beauty: Leave-in conditioner is the foundation for great hairstyling; it's the first product that should touch your hair once it… +01/16/2018,Actors,@jessicaalba,"Before baby #3 was born, we made sure to declutter--it's so important these days since it seems like we're... https://t.co/i8GuwkwmdJ" +01/04/2018,Actors,@jessicaalba,https://t.co/yyaUhal7JY +01/02/2018,Actors,@jessicaalba,Happy New Year! -our little NYE angel baby Hayes Alba Warren born 12/31/17 -His sisters are obsessed with him.... https://t.co/QSEzLgpQoq +12/28/2017,Actors,@jessicaalba,Only 7 days to build!? This is crazy!! https://t.co/k26D9JkGxG +12/22/2017,Actors,@jessicaalba,Here’s my favorite look for the Holidays. I’m creature of habit and not gonna lie -I literally do this same look... https://t.co/9cupjyZKx9 +12/20/2017,Actors,@jessicaalba,"It's Netflix & chill season so add El Camino Christmas to your binge list. It's streaming now - happy holidays,... https://t.co/kQSb6QUKtx" +12/20/2017,Actors,@jessicaalba,It's @Netflix & chill season so add El Camino Christmas to your binge list. It's streaming now-… https://t.co/4bq14Mt6gc +12/06/2017,Actors,@jessicaalba,RT @baby2baby: Make an immediate impact on the victims of the Southern California fires using our registry. Baby2Baby 2 The Rescue has par… +12/06/2017,Actors,@jessicaalba,RT @Honest: You get better. https://t.co/dwKIzDRxTq +11/30/2017,Actors,@jessicaalba,Did an awesome live beauty tutorial with Christine! I did a holiday makeup look on her with Honest Beauty and she... https://t.co/LJzsprgjKx +11/22/2017,Actors,@jessicaalba,Not your average Christmas story... El Camino Christmas premieres on @Netflix on December 8th!… https://t.co/R0Yu3U6pFk +11/18/2017,Actors,@jessicaalba,Hey there I’m @nordstrom today! chk out #Nordstrom Insta Stories to get behind the scenes of my appearance! https://t.co/2LyUezKdIc +11/18/2017,Actors,@jessicaalba,Went to @babiesrus & did some registry picks w this beautiful first time mama Annie -Link in Bio to see what we... https://t.co/R2Q4Z91mvN +11/17/2017,Actors,@jessicaalba,"Jessica Alba is live at Babies""R""Us to help expecting mama Annie register for her little one arriving in January.... https://t.co/x9XC38vZev" +11/16/2017,Actors,@jessicaalba,RT @Honest_Beauty: Talk about picture perfect! @ChrissyTeigen is on the cover of @InStyle wearing an #HonestBeauty look designed by @DMart… +11/16/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""A monthly favorites post just couldn’t go without a product from Honest Beauty. All month long I've been using the Beyo…" +11/09/2017,Actors,@jessicaalba,Maria Shriver and Jessica Alba are live from The Honest Company as part of the ongoing series Architects of Change. https://t.co/J6ZSCURd9P +11/08/2017,Actors,@jessicaalba,"RT @RachaelRayShow: TODAY: Why is @jessicaalba cleaning one viewer’s house?! And can slime make your kitchen sparkle? + +Showtimes: https://t…" +11/08/2017,Actors,@jessicaalba,RT @Honest_Beauty: Founder @JessicaAlba looked glam & glowy on the @RachaelRayShow. Get the look details from @dmartnyc @JenniferYepez: htt… +11/08/2017,Actors,@jessicaalba,RT @BritandCo: Take the stress out of cleaning with @jessicaalba’s insanely easy tips. https://t.co/n88zVtbjKF https://t.co/ZdVGVaAB8h +11/07/2017,Actors,@jessicaalba,A study found that adults who spend more than four hours in front of a computer every day increase their risk of... https://t.co/3A75QI2P0a +11/01/2017,Actors,@jessicaalba,"I just revealed The Honest Company's newest diaper prints for winter! Honor and Havie were 2 of my little elves,... https://t.co/TlknY0VfQ6" +10/30/2017,Actors,@jessicaalba,Check out some tips on how to fall asleep faster on this week's Health Hacks. Comment 😴😴 if you find it hard to... https://t.co/3Y9ZzCsQxp +10/29/2017,Actors,@jessicaalba,A few of our #halloweencostumes w @kellysawyer. Gonna nap to try to motivate for tonight -I’m so pregnant and... https://t.co/tZhDc8hETg +10/27/2017,Actors,@jessicaalba,Had a major pinch me moment visiting @goodhousekeeping HQ in #NYC -So incredibly proud our @honest hero cleaning... https://t.co/9wzawq8fAa +10/26/2017,Actors,@jessicaalba,A little snippet from my LIVE store visit @buybuyBABY seeing our ✨new @Honest cleaning launch! https://t.co/aVf1hAzL8N +10/26/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""So glad I got my hands on this. It is super pigmented and actually shows on my skin tone."" - Instagrammer /eco.glow htt…" +10/26/2017,Actors,@jessicaalba,Below is my first LIVE store visit to buybuy BABY since our new The Honest Company cleaning launch! And to see... https://t.co/H4a4hjiI0o +10/25/2017,Actors,@jessicaalba,@cashwarren and I couldn’t be more thrilled to announce... 👶💙 #officiallyoutnumbered #babyboy #cantwaittospoilhim... https://t.co/l5FExYcjwx +10/25/2017,Actors,@jessicaalba,"RT @FastCompany: ""Having diversity of thought allows you to up your game."" @jessicaalba on supporting women in the workplace at #FCFestival…" +10/25/2017,Actors,@jessicaalba,Proud of my ❤️ @cash_warren on his @pairofthieves event tonight! Xo check out my stories to see all the fun! https://t.co/5wyYUkT3cV +10/24/2017,Actors,@jessicaalba,Dropping knowledge bombs with Health Hacks today. Find out the real reasons your body does weird things like... https://t.co/ufVTslxjuQ +10/23/2017,Actors,@jessicaalba,"Weekend w mah babe -happy to be home, if only for a weekend. Date nights w our kiddos -soccer game and pumpkin... https://t.co/ozZqw81qUF" +10/19/2017,Actors,@jessicaalba,#tbt UK 🇬🇧 premieres #fantasticfour #valentinesday #londonmemories🇬🇧❤️ +10/19/2017,Actors,@jessicaalba,#tbt UK 🇬🇧 premieres #fantasticfour #valentinesday #memories❤ +10/19/2017,Actors,@jessicaalba,RT @Honest_Beauty: Celeb makeup artist Jillian Gregory is back to share 3 glossy ways to perfect your pout: https://t.co/K19AdOVGtc https:/… +10/18/2017,Actors,@jessicaalba,Duuuuude!!! Our new @honest cleaning line got the most legit @goodhousekeeping seal!!! My mission when I started... https://t.co/JEW0l59sdt +10/17/2017,Actors,@jessicaalba,Checking out a Diaper plant -really 👍🏽! @honest #entrepreneurlife #thehonestlife #worktrip —� as an 18 year old... https://t.co/idJl7QAXo3 +10/16/2017,Actors,@jessicaalba,"Talking about preparing the perfect work lunch with Health Hacks. It’ll save you time, $$, and make you feel... https://t.co/DTC4QmuDlg" +10/13/2017,Actors,@jessicaalba,Clutter sucks. Save time ⏰ and money 💵 with these tips to decluttering and organizing your life! https://t.co/JpS9aOPtlk +10/13/2017,Actors,@jessicaalba,#fbf being preggers w Honor then Havie Pie -I couldn’t resist w the last one 🤦🏽‍♀️🤣😝 +10/10/2017,Actors,@jessicaalba,Christopher Gavigan & I talked all about our brand new cleaning line and the early days of The Honest Company -... https://t.co/nk8es5qE6n +10/09/2017,Actors,@jessicaalba,Clutter sucks--Let's clean up our lives with these tips and tricks on this episode of Health Hacks. https://t.co/f8QpMhQ7nC +10/07/2017,Actors,@jessicaalba,#fbf #pfw @maisonvalentino +10/05/2017,Actors,@jessicaalba,#tbt to @honest_beauty Haircare launch -available exclusively @ultabeauty! Hey it now ladies! And our moisture... https://t.co/4NItVbb8ab +10/04/2017,Actors,@jessicaalba,Let's talk about what's really in your food on this episode of Health Hacks. Did you know that processed foods... https://t.co/r9f3ninNsq +10/03/2017,Actors,@jessicaalba,#VegasStrong https://t.co/B78zUHIIeW +10/03/2017,Actors,@jessicaalba,Regardless of your political views common sense gun laws makes sense for the safety of every American. https://t.co/2ejW4pBkrG +09/29/2017,Actors,@jessicaalba,#friyay https://t.co/9tm1m8MOuc +09/27/2017,Actors,@jessicaalba,RT @Honest: Honest Multi-Surface Cleaner is new & improved with 50% more cleaning power than our original Multi-Surface Cleaner: https://t.… +09/26/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Adult acne is a cruel joke."" Read on as @Allure_magazine reviews our Younger + Clearer™ Line: https://t.co/3XP1U4V5qQ h…" +09/22/2017,Actors,@jessicaalba,My Momma Cathy Alba and I gave everyone a sneak peek at our new & improved Cleaning Collection! https://t.co/yIm7WcB2ND +09/21/2017,Actors,@jessicaalba,I curated a bunch of stuff I love @honest HQ for my work fam and friends -great finds and great deals! Thx... https://t.co/w41SRSQOHw +09/19/2017,Actors,@jessicaalba,Pickles...anything sour...bacon...my cravings are a hot mess! ATTN: and I are talking about the nutrition you... https://t.co/pw5Q5AQf6y +09/18/2017,Actors,@jessicaalba,Take your beauty routine in your own hands w @honest_beauty #YongerAndClearer +09/18/2017,Actors,@jessicaalba,RT @Honest_Beauty: Get that glow! Founder @JessicaAlba gave expecting #HonestBeauty mamas glowy makeovers. Watch the full tutorials: https:… +09/16/2017,Actors,@jessicaalba,@chrissyteigen Awwwwwwkward😳 +09/14/2017,Actors,@jessicaalba,🤰🏽🙄👊🏽 https://t.co/uKreLfJ0HY +09/14/2017,Actors,@jessicaalba,Does pregnancy have you glowing or wondering what everyone was talking about? Jessica Alba is sharing her tips to... https://t.co/oFIcOYNB5q +09/14/2017,Actors,@jessicaalba,Ummm -yeah we do! https://t.co/CeyoMeNavZ +09/13/2017,Actors,@jessicaalba,@franklinleonard Lol +09/13/2017,Actors,@jessicaalba,"RT @Honest_Beauty: Score the details of Founder @jessicaalba’s #NYFW look, courtesy of glam duo @kate_makeup and @Jennifer__Yepez https://t…" +09/13/2017,Actors,@jessicaalba,ATTN: has teamed up with the Hand in Hand Benefit and is live streaming the event. Turn the volume up and let's... https://t.co/f7Rvj2narx +09/11/2017,Actors,@jessicaalba,"Happy Monday, peeps! In case you're feeling the effects of the weekend, we're highlighting the common myths on... https://t.co/V2zuBjuuWT" +09/09/2017,Actors,@jessicaalba,Lol https://t.co/eGLoDsuNoQ +09/09/2017,Actors,@jessicaalba,"RT @Honest: We collaborated with Honest Mom & photographer, Julie Holder for our Fall Diaper Collection. Follow their journey: https://t.co…" +09/08/2017,Actors,@jessicaalba,Tune into @livekellyandryan today! Head over to @honest_beauty to get the beauty breakdown -I took over... https://t.co/j9hjLPvVVQ +09/07/2017,Actors,@jessicaalba,Smooches from NYC -gonna chk out some bebé 👶🏽shops today https://t.co/7jls04jQyR +09/04/2017,Actors,@jessicaalba,RT @Honest_Beauty: #HonestBeauty @JessicaAlba rocking that red lip like it's nobody's business 🍓💋 | (Glam + Photo via Kira Nasrat) https://… +09/04/2017,Actors,@jessicaalba,Check out my story to see what goes in my favorite morning smoothie @zicococonut #banana #gardenofliferaw protein... https://t.co/YBgifMAoW4 +09/02/2017,Actors,@jessicaalba,"RT @Honest: @JessicaAlba threw a baby shower for her friend, Jen, who is pregnant with a baby girl! Jessica’s 5 👶 shower tips: https://t.co…" +09/02/2017,Actors,@jessicaalba,RT @Honest: Honest https://t.co/kWWDAYZuhj +09/02/2017,Actors,@jessicaalba,RT @Honest_Beauty: When you wake up to the Friday before a long weekend. #Friyay (Photo via Instagrammer /muaxsally) https://t.co/cNyfEemqW… +09/01/2017,Actors,@jessicaalba,Had a special guest @chefmarcela @honest today! ❤️Love love love ❤️ her and her cookbooks and her adorable... https://t.co/7L5vXJfxIX +09/01/2017,Actors,@jessicaalba,Teamed up with ATTN: to discuss health hacks. Let's discuss portion control and why Americans are putting way too... https://t.co/kJnnEHPYwF +08/30/2017,Actors,@jessicaalba,I couldn't be more excited to introduce my new skincare line from Honest Beauty!!!! Breakthrough formulas! Clean... https://t.co/ETJ8iMX9Z4 +08/29/2017,Actors,@jessicaalba,Take your routine into your own hands w @honest_beauty #youngerandclearer #ethicalbeauty #cleanbeautythatworks #honestbeauty +08/28/2017,Actors,@jessicaalba,RT @people: Inside Jessica Alba’s Mystical Unicorn-Themed Birthday Bash for Daughter Haven: ‘Any Excuse to Throw a Fun Party!’ https://t.co… +08/27/2017,Actors,@jessicaalba,That was my favorite fight in a minute👊🏽 +08/27/2017,Actors,@jessicaalba,It's going down #MayweatherVsMcGregor for the #MoneyBelt https://t.co/f33rwYEFd0 +08/27/2017,Actors,@jessicaalba,#MayweathervMcgregor @ddlovato https://t.co/PNWRECGnj5 +08/27/2017,Actors,@jessicaalba,Blue furrrrrr #GervontaDavis https://t.co/xiMNRDcwzK +08/26/2017,Actors,@jessicaalba,#happybirthday to my -fun- loyal-fearless-free spirit -always an optimist- loves rituals- stylish- travel buddy... https://t.co/8baMq7GKoh +08/25/2017,Actors,@jessicaalba,RT @Honest: Honest https://t.co/ehNEHuUIno +08/25/2017,Actors,@jessicaalba,RT @Honest: The greatest adventure.❤️ https://t.co/Lr1dKzC4rc https://t.co/gGeDv09K8Q +08/25/2017,Actors,@jessicaalba,Super excited about our new Fall Diaper Collection! Designed by my homegirls Emily Current & Meritt Elliott. From... https://t.co/JNQY9Lpghz +08/25/2017,Actors,@jessicaalba,RT @byrdiebeauty: Water intoxication is real—never drink more than this amount: https://t.co/mEARBSXGvN +08/25/2017,Actors,@jessicaalba,RT @goodhealth: 7 super hydrating foods https://t.co/TKX4tcOZ4d +08/25/2017,Actors,@jessicaalba,I can relate to most of these🤰🏽can you? https://t.co/amCLIEj1Vi +08/22/2017,Actors,@jessicaalba,Have you ever faced doubters or folks who thought you could never accomplish your dreams? I did--- lots! Below is... https://t.co/VLuAqmTdnl +08/22/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Hopefully, you’re opening your eyes up to what is possible."" Founder @jessicaalba gets honest with @Cosmopolitan: https…" +08/20/2017,Actors,@jessicaalba,RT @Honest_Beauty: Grabbing some goodies at @Target this weekend? Don't forget to take a walk down the beauty aisle. | rt @LushCosmo https:… +08/18/2017,Actors,@jessicaalba,RT @Honest: Today (#NationalNonprofitDay) we're celebrating our 10 millionth diaper donated! Read about our work w/ @Baby2Baby: https://t.c… +08/17/2017,Actors,@jessicaalba,"RT @Honest_Beauty: Super smart, super strong, super kind, super loyal... https://t.co/7o4M15GjOC" +08/17/2017,Actors,@jessicaalba,W my baby daddy @cash_warren #hamilton last night in LA! It was as moving and powerful as ever. Thank you... https://t.co/8CztsEORKQ +08/16/2017,Actors,@jessicaalba,RT @attn: White supremacists are responsible for TWICE as many terrorist attacks as Islamic extremists in America. https://t.co/2SLKL2QlBc +08/16/2017,Actors,@jessicaalba,RT @attn: Injustice anywhere is a threat to justice everywhere. -- Martin Luther King Jr. +08/16/2017,Actors,@jessicaalba,RT @Honest_Beauty: A pop of color on the lip is always a good idea. @jessicaalba is wearing Coral Kiss.💄 📷:: @KiraNasrat 💁: Chad Wood. htt… +08/14/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Honestly cannot live without #HonestBeauty!"" - via Instagrammer /debbie_physed (Read more of her review: https://t.co/X…" +08/13/2017,Actors,@jessicaalba,"My sweet baby girl Havie turns 6 today. 🌈🦄🎂 feeling so blessed to be her momma 🙏🏽 Her cuddles, smooches and laughte… https://t.co/HzKqbTe6Kz" +08/13/2017,Actors,@jessicaalba,"My sweet, cuddly, hilarious Havie Pie turns 6 today! #happybirthday my angel. I love you so much! You sweeten... https://t.co/hm8GX95ty0" +08/13/2017,Actors,@jessicaalba,"RT @womensmarch: We are a movement guided by Dr. King's vision of the Beloved Community. + +Love and trust will triumph over fear and hatred.…" +08/13/2017,Actors,@jessicaalba,"RT @womensmarch: Today we remember Heather Heyer, the 32-year-old woman murdered in #Charlottesville. And we commit to continuing the strug…" +08/09/2017,Actors,@jessicaalba,@SamsungTV @DailyMailTech I'm obsessed w this -great job @samsungtv +08/09/2017,Actors,@jessicaalba,RT @baby2baby: So thrilled to be featured in @THR's Philanthropy issue! Check it out on stands now! https://t.co/1hvVm1Pj8J +08/08/2017,Actors,@jessicaalba,I'm obsessed w antiques -always like to mix old and new. https://t.co/EIrjYoV890 +08/08/2017,Actors,@jessicaalba,Or this one @LaCornue https://t.co/KzLY4VG2UV +08/08/2017,Actors,@jessicaalba,Dope -thx 4 these https://t.co/Q0J5fAwfa2 +08/08/2017,Actors,@jessicaalba,What do you think of #IlvesMajestic oven range? https://t.co/QmDmL8gCcA +08/08/2017,Actors,@jessicaalba,"I'm remodeling my new house -looking for great appliances, hardware, materials & furniture companies. As Eco as possible. Any suggestions?" +08/05/2017,Actors,@jessicaalba,Can't wait for this collection to launch in a few weeks! Loved collaborating with Emily Current & Meritt Elliott... https://t.co/kyHUiKPRW6 +08/05/2017,Actors,@jessicaalba,We had an awesome day celebrating #HonestXTheGreat Diaper collaboration to benefit @baby2baby @honest... https://t.co/01f43LIRYa +08/04/2017,Actors,@jessicaalba,Shenanigans @fallontonight #fbf -chk out the show tonight folks! +08/04/2017,Actors,@jessicaalba,RT @Honest_Beauty: Honest Beauty https://t.co/oVUqH4aTwq +08/03/2017,Actors,@jessicaalba,❤️✨❤️ this is so sweet https://t.co/1VzhCCYWTu +08/01/2017,Actors,@jessicaalba,It gets so real on this episode of @planetoftheapps https://t.co/84oKuOk9Lo +07/29/2017,Actors,@jessicaalba,My fave color for the summer ☀️@honest_beauty #sheercoralkiss💋 perfect daytime red 💄link in bio to shop! #nationallipstickday +07/28/2017,Actors,@jessicaalba,I had an amazing time speaking at the American Express OPEN Success Makers Workshop yesterday. Check it out!... https://t.co/6Lq27wJ3Gy +07/27/2017,Actors,@jessicaalba,I'll be live on Facebook at @AmexOPEN Success Makers Workshop at noon PST! Tune in: https://t.co/t1YazmKR7u #AmexAmbassador #NextStartsHere +07/27/2017,Actors,@jessicaalba,"Our sweet Sid passed this morning 😔she lived a long life, eating everything she could sniff out, she was my OG... https://t.co/y3NrePxBqd" +07/22/2017,Actors,@jessicaalba,Want to get yo locks on point? Do you know how to properly cleanse and condition? Watch the vid to find out below! https://t.co/gJsuvVdHKA +07/22/2017,Actors,@jessicaalba,#AboutLastNight 🌺 w Shani Darden Anthony Ferrari Cash Warren +07/20/2017,Actors,@jessicaalba,"RT @Honest: I'm a parent, what's your superpower? https://t.co/IQvDvzhWaz" +07/19/2017,Actors,@jessicaalba,Check out Byrdie's list of 7 Honest Beauty must-haves including my fave organic facial oil I use every. single.... https://t.co/UKAvPhrvrF +07/19/2017,Actors,@jessicaalba,Check out @byrdiebeauty's list of top 7 must-have honest_beauty products including my fave… https://t.co/U5a9LRQD2O +07/19/2017,Actors,@jessicaalba,"Episode 6 of Planet of the Apps features Mend, the app that is your ""personal trainer for heartbreak"" featuring... https://t.co/tilg3Lf36h" +07/18/2017,Actors,@jessicaalba,Summer skin tutorial w the most beautiful Elizabeth Mathis aka Lizzy https://t.co/eTnXMhDXEK +07/18/2017,Actors,@jessicaalba,RT @letsmend: Tonight our founder @ellenhuerta pitches Mend on @planetoftheapps! See what happens on @applemusic 6pm PT/9pm PT #planetofthe… +07/18/2017,Actors,@jessicaalba,"Check out Stop, Breathe & Think for guided meditation and mindfulness at your fingertips on Planet of the Apps! https://t.co/WySEYfXIZd" +07/18/2017,Actors,@jessicaalba,"RT @planetoftheapps: Mending heartbreak, making friends, and mastering AR robots. New episode drops tonight, only on @AppleMusic. https://t…" +07/17/2017,Actors,@jessicaalba,@cash_warren and I are officially going to be outnumbered #babyonboard #herewegoagain 👶🏼🤰🏽#blessed🙏 https://t.co/U8ztWcPz7H +07/16/2017,Actors,@jessicaalba,GORGEOUS hair by @Jennifer__Yepez using honest_beauty #honestbeauty 😍😍💯#Repost @Jennifer__Yepez… https://t.co/EbuXx4ios4 +07/15/2017,Actors,@jessicaalba,🍍🌺🏄🌴🐚 Thx People! https://t.co/mCKBFc5Uxz +07/15/2017,Actors,@jessicaalba,🍍🌺🏄🌴🐚 Thx @people - link in bio! https://t.co/bRnkG4YTQo +07/13/2017,Actors,@jessicaalba,Woohoo @honest_beauty in #NYC #timesquare #honestbeauty https://t.co/RqHx1b45vv +07/11/2017,Actors,@jessicaalba,https://t.co/Krg4ZRquLT +07/11/2017,Actors,@jessicaalba,I ❤️ Amazon! https://t.co/jI8TDSJaRv +07/05/2017,Actors,@jessicaalba,It's my favorite styling product for summer! ☀️ beach hair for dayz https://t.co/eKKlbCUMU2 +07/05/2017,Actors,@jessicaalba,#4thofjulyweekend🇺🇸💥🇺🇸 +06/30/2017,Actors,@jessicaalba,Me -right now. 🙄 https://t.co/4jqYu1Unjm +06/29/2017,Actors,@jessicaalba,#Goals https://t.co/5rSYT6i6x2 +06/29/2017,Actors,@jessicaalba,This is cray https://t.co/dy0md9Rsz3 +06/27/2017,Actors,@jessicaalba,I'm sharing my fave summer look featuring the Honest Beauty Lip Crayon in Sheer Chestnut Kiss. Now available in... https://t.co/GgSChSccJT +06/27/2017,Actors,@jessicaalba,#word #jenniferaniston #honestbeauty https://t.co/DjJEiH6tXo +06/27/2017,Actors,@jessicaalba,Obsessed with Byrdie and our Honest Beauty Allure best of beauty award winner lip crayon! https://t.co/cYc6GgSIbZ +06/25/2017,Actors,@jessicaalba,#summer is here! ☀️ get yo glow on! ✨ featured on @thezoereport @honest_beauty #honestbeauty available @target https://t.co/tLpg3cmlgw +06/23/2017,Actors,@jessicaalba,"#Repost @honest_beauty @nadiyakhan used our Honestly Polished Dry Conditioner, Organic Facial Oil, Everything... https://t.co/68TYpCe1lz" +06/21/2017,Actors,@jessicaalba,"Episode 3 of Planet of the Apps is LIVE, people! Watch Kemar define FLIP as ""eBay for the Snapchat generation"" on... https://t.co/a1qqHpdGuI" +06/21/2017,Actors,@jessicaalba,"""We're the eBay for the Snapchat generation"" @justflip https://t.co/VqWzgNbm2C" +06/20/2017,Actors,@jessicaalba,Loved celebrating our @bewellbykelly new book on nutrition #bodylove @mollybsims @bewellbykelly @chelsea https://t.co/xREEcDL2DB +06/20/2017,Actors,@jessicaalba,This is my favorite beauty look! Elizabeth Mathis breaks it down Live! https://t.co/YpiEiJTm5H +06/19/2017,Actors,@jessicaalba,Happy Fathers Day to my papasito #MarkAlba and my grampers @JoséAlba love you both so much! #blessed #grateful https://t.co/T4nxBWhRt0 +06/18/2017,Actors,@jessicaalba,Had an awesome afternoon w the fam! So grateful my Grampers n Grammers made it out today! Love my family so much!... https://t.co/ZT2nZIFUvc +06/17/2017,Actors,@jessicaalba,Super proud of my @CashWarren @PairofThieves was featured on @TODAYshow chk out all these #FathersDay gift ideas!… https://t.co/A6PWPQJlQh +06/15/2017,Actors,@jessicaalba,Yep-that was fun! @garyvee @iamwill @planetoftheapps #PlanetOftheApps https://t.co/tvBWqpnibI +06/15/2017,Actors,@jessicaalba,Stella Luna ❤️ https://t.co/CPVlgvk6yV +06/15/2017,Actors,@jessicaalba,"RT @TheView: THIS MORNING ON @THEVIEW: Superstar entrepreneurs @jessicaalba @iamwill and @garyvee hit the table to talk their new show, #pl…" +06/15/2017,Actors,@jessicaalba,https://t.co/ZkGmHR3APS +06/15/2017,Actors,@jessicaalba,👍🏽 https://t.co/qbbtjHHIhN +06/15/2017,Actors,@jessicaalba,Thx dude https://t.co/zJDpMQj2Ah +06/15/2017,Actors,@jessicaalba,9am https://t.co/3jzwWYaxap +06/15/2017,Actors,@jessicaalba,Whattup! I'm gonna be w my @planetoftheapps peoples all day! @garyvee @iamwill @GwynethPaltrow -shoot me biz q? Or… https://t.co/dW1gTvL25M +06/15/2017,Actors,@jessicaalba,Head over to @glamourmag Insta to see how I get ready for a press day @planetoftheapps w @honest_beauty... https://t.co/lLc9ZXdXJp +06/14/2017,Actors,@jessicaalba,#planetoftheapps new episode available now! Link in bio @planetoftheapps @itunes @applemusic https://t.co/kOI6DCTyIk +06/13/2017,Actors,@jessicaalba,Loved having my homegirls support me tonight @planetoftheapps launch party! #planetoftheapps https://t.co/LjTtbiwCNP +06/13/2017,Actors,@jessicaalba,💋#glams by @kiranasrat n @chadwoodhair headed to @applemusic premiere party for @planetoftheapps https://t.co/QrOgYCjKpL +06/12/2017,Actors,@jessicaalba,"#Repost @ariannahuff +Born on this day in 1929, her wisdom lives on... https://t.co/9JqHG5y6UR" +06/11/2017,Actors,@jessicaalba,#word #weekends 🍷🥂🌹 https://t.co/HY59jr7EFc +06/09/2017,Actors,@jessicaalba,Loved stopping by @honest @nordstrom 🙌🏽 https://t.co/KN6QL1nVwZ +06/09/2017,Actors,@jessicaalba,RT @LinkedIn: .@jessicaalba discusses why challenges are opportunities and risk taking is a necessity: https://t.co/HKE5d2hsTz #TheWayIn +06/22/2018,Actors,@EllenPompeo,"RT @MykeCole: I was activated and deployed to the gulf for Deepwater Horizon. We killed ourselves out there, up to our armpits in toxic che…" +06/21/2018,Actors,@EllenPompeo,RT @OurOcean: One step closer to #TrashFreeSeas thanks to these amazing fans in Japan at the #WorldCup https://t.co/zARZvzUELZ +06/21/2018,Actors,@EllenPompeo,"RT @thedailybeast: MVM, Inc. has a contract with ICE to provide “unaccompanied alien children (UAC) transportation services” worth $162 mil…" +06/21/2018,Actors,@EllenPompeo,RT @PetsforPatriots: We know our friend @EllenPompeo has a soft spot for animals. And with Lilith having just one eye she really needs a sp… +06/20/2018,Actors,@EllenPompeo,@magicpompeo ciao Bianca sorry I was unable to speak! I was working. I hope you enjoyed the event and found it informative. +06/20/2018,Actors,@EllenPompeo,Love this @MsSarahPaulson https://t.co/a5nOsQaSkL +06/20/2018,Actors,@EllenPompeo,Thank you to Richard Edelman and the whole team at @EdelmanPR for inviting me to Cannes to participate in the conve… https://t.co/1f16eJS7kd +06/20/2018,Actors,@EllenPompeo,"RT @peterdaou: If Barack Obama, Hillary Clinton, Bernie Sanders, former presidents and first ladies and the entire Dem leadership stood sid…" +06/20/2018,Actors,@EllenPompeo,Of course it does.. many people are profiting. THAT is the reason this is happening. Follow the money.… https://t.co/gnj8TYcm2A +06/20/2018,Actors,@EllenPompeo,RT @TopherSpiro: “Chain link partitions” and “tender age shelters” as a euphemism for baby jails is something George Orwell could never hav… +06/20/2018,Actors,@EllenPompeo,RT @RuPaul: How the Koch Brothers Are Killing Public Transit Projects Around the Country https://t.co/tW2Z0YhS4Z https://t.co/NCAKE1L1mj +06/18/2018,Actors,@EllenPompeo,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/15/2018,Actors,@EllenPompeo,RT @tedstgodard: This got the cartoonist fired. Share it. https://t.co/6ik1HjgVAW +06/15/2018,Actors,@EllenPompeo,"RT @SenFeinstein: Kids are not pawns to be used as an immigration deterrent. Families belong together, it’s that simple. This is not about…" +06/15/2018,Actors,@EllenPompeo,"RT @slpng_giants: This is a concentration camp for children. + +Who is the tent manufacturer willing to profit from this? + +Who is the bed man…" +06/15/2018,Actors,@EllenPompeo,RT @TheRepProject: So glad Alicia Keys is leading this! We need equality in EVERY industry! https://t.co/VqIrH4dAzN +06/15/2018,Actors,@EllenPompeo,@RuPaul 😍 https://t.co/Iama2Pa3M4 +06/15/2018,Actors,@EllenPompeo,RT @KristaVernoff: Please watch this. Please retweet it. Please make the calls. 🙏🏼🙏🏼🙏🏼 https://t.co/5rm2RNVKp4 +06/15/2018,Actors,@EllenPompeo,"RT @MaddowBlog: There's a reason Republicans badger, bully, and berate law enforcement. + +It works! https://t.co/ZaL5gvLZiR" +06/15/2018,Actors,@EllenPompeo,"RT @VictoriaMahoney: 1) #FollowTheMoney. +2) Track down precisely [who] is profiting from surge in #Immigration #DetentionCenters +3) Compa…" +06/14/2018,Actors,@EllenPompeo,RT @SenKamalaHarris: Let’s call this policy what it is: a human rights abuse being committed by the United States government. https://t.co/… +06/12/2018,Actors,@EllenPompeo,RT @KellyMcCreary: Please vote. Please help protect our access to voting. https://t.co/kRzTNGQNnT +06/12/2018,Actors,@EllenPompeo,"RT @davidhogg111: This is America, right now + +This is the % of African Americans not able to vote in just a few states. + +VA 21% + +FL 21%…" +06/08/2018,Actors,@EllenPompeo,RT @JuliaBradbury: Here's the @corona Wave of Waste in all it's glory.This is how much plastic is found along EVERY 2 MILE stretch of beach… +06/08/2018,Actors,@EllenPompeo,"RT @JaneGoodallInst: Single-use plastic has no place in our oceans and waterways, but as we live our lives, how do we cut our reliance? Whe…" +06/08/2018,Actors,@EllenPompeo,"RT @BarackObama: “Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us about food…" +06/08/2018,Actors,@EllenPompeo,"RT @MiaFarrow: Maybe we all wanted to hang out with him. He was that cool, fun, frank, insightful. He introduced us to distant lands and to…" +06/02/2018,Actors,@EllenPompeo,RT @NatGeo: Under the surface of paradise lies a tragic scene: a manta ray feeding on the plastic pollution surrounding it https://t.co/YXo… +06/01/2018,Actors,@EllenPompeo,"RT @VanJones68: CALIFORNIA: Please call @bill_brough and urge him to vote YES on #AB1940, a bill that would encourage people on parole to p…" +06/01/2018,Actors,@EllenPompeo,"RT @markchildress: The minute you stop supporting the man who grabs em by the p***y, I'll listen to your lecture about calling Ivanka a c**…" +06/01/2018,Actors,@EllenPompeo,"RT @thomas_violence: I love little cultural differences, like how Americans are super offended by the word cunt but here in Australia we're…" +05/31/2018,Actors,@EllenPompeo,RT @ira: Samantha Bee's joke is only drawing Roseanne comparisons because y'all are fucking idiots who let racists define what racism is or… +05/31/2018,Actors,@EllenPompeo,RT @latimes: Equating Samantha Bee's crudeness with Roseanne's outlandish tweets normalizes racism and anti-Semitism. https://t.co/pSybhigR… +05/31/2018,Actors,@EllenPompeo,RT @PlasticPollutes: What you can do to fight #plasticpollution https://t.co/MTFgtU9OHf +05/30/2018,Actors,@EllenPompeo,Last call to join me at a wildlife sanctuary! Enter now & you could also win a signed Grey’s script. GO:… https://t.co/gfsfSib4UY +05/30/2018,Actors,@EllenPompeo,edbyellen's photo https://t.co/o9Zuc2p3Lj +05/30/2018,Actors,@EllenPompeo,@merder But they need the love the most!! 😂😂😂#truth +05/30/2018,Actors,@EllenPompeo,@Tae_Finesse730 @threelilbirdsss If you don't like me stop calling me sis number one... number two of you don't lik… https://t.co/aAVIluUO8D +05/30/2018,Actors,@EllenPompeo,@threelilbirdsss @Tae_Finesse730 Actually I can take quite a lot now that you mention it...I've blocked a few reall… https://t.co/3QdippowMG +05/30/2018,Actors,@EllenPompeo,To be honest I didn't see it but yes people said it dealt with some important issues. Also with Channing at the he… https://t.co/qVQ8CbEU1x +05/30/2018,Actors,@EllenPompeo,"And the teaching moment begins with ""when someone shows you who they are.. believe them."" She is exactly who we th… https://t.co/GWoZHSmB0L" +05/30/2018,Actors,@EllenPompeo,@Tae_Finesse730 @khalariious No ...def not but don't underestimate the destructive power of a three year old when t… https://t.co/AZbtxw8D2D +05/24/2018,Actors,@EllenPompeo,"RT @nytimes: In Opinion + +The editorial board writes: ""Rather than show a little backbone themselves and support the right of athletes to pr…" +05/23/2018,Actors,@EllenPompeo,"RT @jfreewright: If the NFL thing was about the flag & anthem, you’d be outraged when Trump doesn’t hold a hand over his heart & botches th…" +05/23/2018,Actors,@EllenPompeo,"RT @HBR_Media: ""Obstacles will always be there, you just have to navigate them. You have to treat it like it's a minefield...Like you're a…" +05/22/2018,Actors,@EllenPompeo,Be there in 5 minutes!! https://t.co/iU0AfG1MAQ +05/22/2018,Actors,@EllenPompeo,The best opponent is one who underestimates you 😜 https://t.co/KjnE0Vrzmj +05/22/2018,Actors,@EllenPompeo,RT @SeaChampsSW: #WorldOceanDay is Friday June 08. We have resources to make it easy and fun for your school/group to celebrate! Start a co… +05/22/2018,Actors,@EllenPompeo,😂😂😂😓😓😓 https://t.co/MsyViQeUxj +05/22/2018,Actors,@EllenPompeo,"RT @TheEconomist: A searing reminder of how recently American slavery ended, and the depth of the pain it caused https://t.co/wiNmPHacrf" +05/22/2018,Actors,@EllenPompeo,RT @Seasaver: Human race just 0.01% of all life but has eradicated most other living things https://t.co/VXWxbU0kmQ #WorldBiodiversityDay +05/22/2018,Actors,@EllenPompeo,These girls are incredible 🌏 https://t.co/Tc9oG6bjYf +05/21/2018,Actors,@EllenPompeo,"RT @broadstrokesdes: Here's a glimpse of us working on the @IamSandraOh art for our latest t-shirt. You can grab one here: +https://t.co/JF…" +05/13/2018,Actors,@EllenPompeo,I love this...These girls are adorable ... and amazing hard working moms! #HappyMothersDay ❤️ https://t.co/1AeFKwMwer +05/11/2018,Actors,@EllenPompeo,Congratulations to the whole team on the season 2 pickup of @Station19 @JasonWGeorge @JainaLeeOrtiz @stacysmckee16 +05/11/2018,Actors,@EllenPompeo,RT @ELLEmagazine: Amal Clooney's Vanderbilt Graduation Speech Calls For Courage Above All https://t.co/zoPX24d7l4 +05/11/2018,Actors,@EllenPompeo,@ElenaBHilton Thank you so much @ElenaBHilton +05/11/2018,Actors,@EllenPompeo,RT @BrandiKand: #GreysAnatomy me watching greys tonight https://t.co/hkSai3VVfx +05/11/2018,Actors,@EllenPompeo,RT @JainaLeeOrtiz: Ready ready! Who’s ready to live tweet w me?!?? #Station19 +05/11/2018,Actors,@EllenPompeo,RT @KristaVernoff: Because then there is no TV show! #GreysAnatomy https://t.co/J3XnyZkWJo +05/11/2018,Actors,@EllenPompeo,Right back at you 💋 https://t.co/qJQyoTnKFY +05/11/2018,Actors,@EllenPompeo,@PhDiva3 @Kaywillsmith @IamSandraOh Oh no I have @IamSandraOh is the truth I love it +05/11/2018,Actors,@EllenPompeo,I don't know I think alcohol makes drama worse.. just saying https://t.co/zXZaiNhOJZ +05/11/2018,Actors,@EllenPompeo,@merthantrash I'm not watching I'm cooking dinner but trying to tweet with you guys before I have to go out +05/11/2018,Actors,@EllenPompeo,RT @JChambersOnline: It started off like a normal day and suddenly it's not 😭😭😭 #GreysAnatomy https://t.co/loY1PK5Add +05/10/2018,Actors,@EllenPompeo,Who said it is her farewell episode? You guys love making stuff up... you should write for the show! https://t.co/OwXUFoueJz +05/10/2018,Actors,@EllenPompeo,Yo @JainaLeeOrtiz you hear that??? https://t.co/zRtClL8P8u +05/10/2018,Actors,@EllenPompeo,Wait... only today? https://t.co/sqYAGqQ21c +05/10/2018,Actors,@EllenPompeo,This is what I love ...a warrior.. you are no victim 💥💥💥 https://t.co/71A06Tf5pO +05/10/2018,Actors,@EllenPompeo,I mean on a scale of 1 to 10 tonight's definitely a 12 😩 +05/10/2018,Actors,@EllenPompeo,Ok that's fair we definitely take it to another level.. but so do you guys!! https://t.co/daaOy6OfDg +05/10/2018,Actors,@EllenPompeo,But that's why they call them dramas right? It's not called a comedy.... https://t.co/kImLCQFLFR +05/10/2018,Actors,@EllenPompeo,@NicoleMonster23 @heyDejan Should I not have fun and engage with fans? Or should I be super shiny happy overly sinc… https://t.co/5S3EAPpFKf +05/10/2018,Actors,@EllenPompeo,@heyDejan No no that's not why I said that... she told me to shut the f up that wasn't nice +05/10/2018,Actors,@EllenPompeo,You need a hug boo? Or just some more followers?? 😜😜😜 #angryaintcute https://t.co/7tZdqhuFYL +05/10/2018,Actors,@EllenPompeo,I cant tonight! https://t.co/AJhkLpkghJ +05/10/2018,Actors,@EllenPompeo,I don't think any of us have ever denied it have we? It's literally what we've been doing for 14 years https://t.co/zgbqxNvXA7 +05/10/2018,Actors,@EllenPompeo,Not true https://t.co/4B3kM9A8Mt +05/10/2018,Actors,@EllenPompeo,I think @TraceeEllisRoss says it best... the truth with set you free... but first it will piss you off... 💯💯💯 +05/10/2018,Actors,@EllenPompeo,That's a real problem ...not our feelings of entitlement about a tv show +05/10/2018,Actors,@EllenPompeo,Of course you guys love it too.. but lets have some perspective it's just a tv show ...POC literally are not safe A… https://t.co/0tLlngnE6i +05/10/2018,Actors,@EllenPompeo,I am so sorry my heart breaks for you that #thisisamerica https://t.co/tEj2poGCPr +05/10/2018,Actors,@EllenPompeo,RT @KristaVernoff: Wow. @delta this is really deeply troubling. I hope EVERYONE READING THIS RETWEETS IT. https://t.co/190Cb1LvkZ +05/10/2018,Actors,@EllenPompeo,I'm not going to lie... it's a lot tonight...we are the best heartbreakers in the game but don't hate the player...… https://t.co/RRffXTj4PZ +05/10/2018,Actors,@EllenPompeo,"RT @ShaunKing: That is Anthony Wall, in prom clothes, being lifted off the ground and choked by a Warsaw County police officer @WaffleHouse…" +05/10/2018,Actors,@EllenPompeo,YES! https://t.co/cEdiY1rS7h +05/10/2018,Actors,@EllenPompeo,"RT @sarahdrew: It’s Grey’s Day and I’m feeling emotional... So let’s chat, ok? I’m gonna live tweet from 8-9pm EST and then I will post all…" +05/10/2018,Actors,@EllenPompeo,"RT @nkjemisin: Story updated with the harassing white student's name and history of harassment. I keep seeing people describe this as ""impl…" +05/10/2018,Actors,@EllenPompeo,"RT @adv_project: Black people are trying to live their lives in peace. Black folks deserve to nap, go to restaurants, get coffee, & stay at…" +05/10/2018,Actors,@EllenPompeo,I love her and this is painfully accurate https://t.co/R8B5zW9XwX +05/09/2018,Actors,@EllenPompeo,RT @iJesseWilliams: TONIGHT https://t.co/VrvKr6Ob7j +05/04/2018,Actors,@EllenPompeo,RT @JainaLeeOrtiz: So. Much. Drama. #Station19 +05/04/2018,Actors,@EllenPompeo,Oh now I get why you guys say you always cry +05/04/2018,Actors,@EllenPompeo,@iJesseWilliams was Mac n and directing? +05/04/2018,Actors,@EllenPompeo,@elldempeo At the moment it's me and a three year old 😂 +05/04/2018,Actors,@EllenPompeo,@7JustinChambers OMG +05/04/2018,Actors,@EllenPompeo,@m_merderlover Yes gotta support my guy +05/04/2018,Actors,@EllenPompeo,@iJesseWilliams these Alex and Joe scenes are gorgeous +05/04/2018,Actors,@EllenPompeo,Alex omg +05/04/2018,Actors,@EllenPompeo,Nice @iJesseWilliams the jolex scene ❤️💔😩 +05/04/2018,Actors,@EllenPompeo,And soon to be three wait for it +05/04/2018,Actors,@EllenPompeo,I love these two +05/04/2018,Actors,@EllenPompeo,Anyone want to watch @iJesseWilliams directorial debut with me????? +05/03/2018,Actors,@EllenPompeo,@iJesseWilliams ⭐️⭐️⭐️⭐️ https://t.co/p0T0vmNak3 +05/02/2018,Actors,@EllenPompeo,@younglivingeo #sponsored https://t.co/YpvuY5ITR4 +05/02/2018,Actors,@EllenPompeo,Hundreds of decisions everyday affect the health&happiness of https://t.co/B20W8FyXr2's so important to read labels… https://t.co/ea3HKcguXd +05/02/2018,Actors,@EllenPompeo,@EllenPompao_ @sarahdrew @JessicaCapshaw Love it!💋 +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique so take the last sips of that haterade and keep it moving.. buh bye 💋 +05/02/2018,Actors,@EllenPompeo,@Orsi24 Happy Anniversary 💋💋💋 +05/02/2018,Actors,@EllenPompeo,Thanks again to the team @younglivingeo and everyone who came out to support and spread the word about plant based products #YLEO #sponsored +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique you should also keep believing everything you read... hows that working out for you btw?? 😜😜😜 +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique @etnow Yeah hate to break it to you boo but you actually know nothing about what really goes on!! Big kiss 💋 +04/27/2018,Actors,@EllenPompeo,RT @PetsforPatriots: Maximus has spent more than 1/2 his life in a shelter + desperately needs a home. Loves to play and cuddle - the perf… +04/25/2018,Actors,@EllenPompeo,"RT @H2OOUnstoppable: SB1017 PASSED THE SENATE COMMITTEE! Ok California, let’s continue this momentum in banning drift nets, aka DeathNets!…" +04/25/2018,Actors,@EllenPompeo,RT @abbystern: Learned so much at @drkristifunk 's book launch for #BreastsTheOwnersManual and spoke to @EllenPompeo about how Dr. Funk ins… +04/24/2018,Actors,@EllenPompeo,Once again look how this white terrorist is able to walk into court to be judged... this is privilege poc are assas… https://t.co/tMcLqNIvhI +04/17/2018,Actors,@EllenPompeo,I love it tooo https://t.co/mgGn6oStFB +04/17/2018,Actors,@EllenPompeo,💯💯💯 https://t.co/x4C7YDl29i +04/17/2018,Actors,@EllenPompeo,RT @alana_pompeo: @EllenPompeo currently buckling down plans for the walk out & rally my friends and I planned during school this friday!!… +04/17/2018,Actors,@EllenPompeo,I can do it in 2... not easy https://t.co/xWr77RvFHz +04/17/2018,Actors,@EllenPompeo,@DaniellaScoleri Green juice +04/17/2018,Actors,@EllenPompeo,❤️❤️❤️ https://t.co/0P5Tbb8owB +04/17/2018,Actors,@EllenPompeo,Get in line 😂😂😂 https://t.co/IpL2fhGJO1 +04/17/2018,Actors,@EllenPompeo,The zoo is called @GreysABC 😂 https://t.co/vpgCizvOe2 +04/17/2018,Actors,@EllenPompeo,"RT @NonGMOProject: The novel pesticide is a combination of glyphosate and 2,4-D, to be sprayed over the top of corn, cotton, and soybeans t…" +04/17/2018,Actors,@EllenPompeo,It's so simple...I love @Trevornoah https://t.co/GdqPDvOjx5 +04/16/2018,Actors,@EllenPompeo,@Starbucks are you listening? https://t.co/EK8K7jQrtR +04/16/2018,Actors,@EllenPompeo,Mutual? @Starbucks how polite of you... oh the privilege ....and the protection of it at all costs is amazing https://t.co/rSzgylfrzY +04/16/2018,Actors,@EllenPompeo,"RT @RWPUSA: This isn't just a Starbucks issue. +Police procedures for making arrests need to be revised if a store manager's complaint about…" +04/14/2018,Actors,@EllenPompeo,This is amazing https://t.co/Mlr6YTLEyg +04/13/2018,Actors,@EllenPompeo,RT @itsjeaninemason: Thank you to @MedicalMeg & @PHDreamers who collaborated with @DefineAmerican to help make sure tonight's @GreysABC ep… +04/12/2018,Actors,@EllenPompeo,RT @Thirst4truth8: After the Miami Beach Gay Pride Parade Sunday 7:30PM-these 4individuals savagely beat a gay couple because they were hol… +04/09/2018,Actors,@EllenPompeo,@MattCarterMedia Thank You for this @MattCarterMedia I needed to hear this today 💋 +04/08/2018,Actors,@EllenPompeo,"RT @Gilman_Williams: . @EllenPompeo +8-year-old Kate wants to join you to help raise money for the Ellen DeGeneres Wildlife Fund! She and h…" +04/08/2018,Actors,@EllenPompeo,It isn't even hype though I've said it many times...she honestly takes every moment to another level https://t.co/7LxEb63e5Q +04/08/2018,Actors,@EllenPompeo,Ok I'm calm ...totally calm... except I'm not ...you guys @IamSandraOh does not mess around this is going to be b… https://t.co/xustW8sIkf +04/07/2018,Actors,@EllenPompeo,All of this cancer isn't coming from nowhere that's for damn sure... https://t.co/n9yCV9jygW +04/06/2018,Actors,@EllenPompeo,Lets be very clear about one thing... because you don't see it on social media does not mean it doesn't happen... https://t.co/rlqEiqIWTn +04/06/2018,Actors,@EllenPompeo,RT @foryoumadellenx: @EllenPompeo @IamSandraOh Really! @IamSandraOh is a super talented person! We look forward to see this great show her!… +04/06/2018,Actors,@EllenPompeo,💃💃💃 Yes.. please lets support @IamSandraOh I haven't even seen it but I know it's amazing because her talent takes… https://t.co/cxXhOCIqqN +04/06/2018,Actors,@EllenPompeo,This is a great article. @IamSandraOh talent is otherworldly. I was a huge fan of hers before Greys and I can't w… https://t.co/jZBJIpi4La +04/06/2018,Actors,@EllenPompeo,You know it was classic Greys....devastating with a side of absurdity 💔💔💔 https://t.co/KwEexPHSD1 +04/06/2018,Actors,@EllenPompeo,RT @AhmedBaba_: @AP A record number of newly-elected Congresswomen walking into the 2019 swearing in ceremony like https://t.co/IUhjKmv71r +04/06/2018,Actors,@EllenPompeo,"RT @Emma4Change: All our friends out there in LA, get ready 😎😎 https://t.co/5II6VdmLE4" +04/06/2018,Actors,@EllenPompeo,RT @GreysABC: Umm... #GreysAnatomy https://t.co/urKivF5TcM +03/31/2018,Actors,@EllenPompeo,This is fantastic thank you 💋💋💋 https://t.co/ttLn9N4W52 +03/31/2018,Actors,@EllenPompeo,Que???? Oh oh we get it April FOOLS https://t.co/XReOr1GkOU +03/31/2018,Actors,@EllenPompeo,"RT @dmvsredbonerebl: I REPEAT PASS IT ON, A BLACK COMPANY HELPING THOSE WITH CRIMINAL RECORDS GET JOBS OR START THEIR OWN BUSINESS BLESS TH…" +03/31/2018,Actors,@EllenPompeo,RT @Seasaver: What's newsworthy about this @TMZ is that the shark @VonMiller caught is an @IUCNRedList hammerhead that is highly likely to… +03/31/2018,Actors,@EllenPompeo,"RT @Seasaver: The treatment of this threatened hammerhead shark is appalling. IF it was released, it is unlikely to survive that ordeal. Wh…" +03/31/2018,Actors,@EllenPompeo,RT @cut_50: LAST CHANCE to grab one of these exclusive #Dignity campaign t-shirts (aka a #DIGNITEE 😉) - our @omaze campaign ends tonight!… +03/31/2018,Actors,@EllenPompeo,RT @rashadrobinson: Do NOT let this go unnoticed--Tennessee is out here criminalizing Black folks’ hair and profiting off their racist laws… +03/31/2018,Actors,@EllenPompeo,RT @NYTNational: A lawyer for the family said the findings proved that Mr. Clark could not have been moving in a threatening fashion toward… +03/31/2018,Actors,@EllenPompeo,RT @ABC: MAY I HAVE THIS DANCE? Veterinarians slow dance with puppies waking up from anesthesia after their surgeries. https://t.co/wPVp3sN… +03/31/2018,Actors,@EllenPompeo,RT @JoyAnnReid: Having not been prosecuted for killing Alton Sterling even after bodycam video shows him escalating the situation and displ… +03/31/2018,Actors,@EllenPompeo,RT @bbond: Devastating. https://t.co/S9Z3rnuoxO +03/31/2018,Actors,@EllenPompeo,"RT @MuslimIQ: Marjorie Stoneman Douglas High is 25% students of color. + +We've barely seen any students of color given the time of day from…" +03/30/2018,Actors,@EllenPompeo,RT @iJesseWilliams: All jokes aside 😂 our folk gotta stay on track. Don’t get finessed outchyer funds & don’t get pushed off your path. Com… +03/30/2018,Actors,@EllenPompeo,RT @GreysABC: Weekend Plans #GreysAnatomy https://t.co/5KCHinH0Oe +03/30/2018,Actors,@EllenPompeo,RT @JoyAnnReid: Watch it again. Note the non-compliance. Note the restraint. Then tell me you can't understand why people kneel and have to… +03/30/2018,Actors,@EllenPompeo,RT @lexforchange: “Police violence IS gun violence” https://t.co/Ezez0tIMSp +03/30/2018,Actors,@EllenPompeo,"RT @ABC: Baton Rouge Police Chief: ""Fear cannot be a driver for an officer's response to every incident. Unreasonable fear within an office…" +03/30/2018,Actors,@EllenPompeo,@ChildVides @GreysABC @shondarhimes @sarahdrew When you have a child of your own the break in your heart gets mende… https://t.co/qLGtc49vzf +03/30/2018,Actors,@EllenPompeo,RT @shondarhimes: Tonight's #TGIT is dedicated to Suzanne Patmore Gibbs. https://t.co/cj2dueKRVg https://t.co/00gnzVpGKZ +03/29/2018,Actors,@EllenPompeo,THANK YOU!! @carafreemanxx @P_ompeo @HugeDramatvfan @anothrmerderfan @PaliAseel @merder99 @bajangirlzfalif @magicpompeo @gilmour34 💋💋💋💋💋💋💋💋💋 +03/29/2018,Actors,@EllenPompeo,THANK YOU!! @swiftxgreys @deniseblvrs @diamoonda_rk @carriedenny @greyspostit @Daniellee_eee @metsswift 💋💋💋💋💋💋💋💋💋💋💋💋 +03/29/2018,Actors,@EllenPompeo,@CulverTateum Yes Thank you!!I just tweeted to you did you see it?? +03/29/2018,Actors,@EllenPompeo,Guys it's @GreysABC you should always be worried 😲 https://t.co/fxywatrRRw +03/29/2018,Actors,@EllenPompeo,"@Hugedramatvfan @anothrmerderfan @PaliAseel @merder99 @bajangirlzfalif @magicpompeo @gilmoir34 +Thank You!!! +💋💋💋💋💋💋💋💋💋💋💋💋💋" +03/29/2018,Actors,@EllenPompeo,"@swiftxgreys @deniseblvrs @diamoonda_rk @carriedenny @greyspostit @Daniellee_eee @metsswift @carafreemanxx @P_ompeo Thank You!!! +💋💋💋💋💋💋💋💋💋💋💋" +03/29/2018,Actors,@EllenPompeo,This!!! https://t.co/hiCcbjRVBu +03/28/2018,Actors,@EllenPompeo,RT @HuffPost: Rep. Steve King (R-Iowa) tried to take on teens about age minimums for gun purchases and voting. It didn’t go well. https://t… +03/28/2018,Actors,@EllenPompeo,RT @MollyRoseTarpey: @EllenPompeo Trained police officers can't use their weapons properly and Trump and the GOP want to arm teachers? 🙄 +03/28/2018,Actors,@EllenPompeo,Black men and women are assasinated while jumping fences and white domestic terrorists are able to be walked into a courtroom to be judged +03/28/2018,Actors,@EllenPompeo,Thank God https://t.co/jJulrKQDtN +03/28/2018,Actors,@EllenPompeo,Ill say it again because it can't be said enough https://t.co/wMotOxt9ME +03/28/2018,Actors,@EllenPompeo,Also it deserves repeating... the Stoneman Douglas shooter walked into a courthouse after he was arrested think abo… https://t.co/RhQ8MEL0BV +03/27/2018,Actors,@EllenPompeo,"RT @eugenegu: As a surgeon, I’ve operated on gunshot victims who’ve had bullets tear through their intestines, cut through their spinal cor…" +03/26/2018,Actors,@EllenPompeo,Its hunting season on poc all day every day they shoot to kill every time everyone should be furious about this https://t.co/OyHJY1T987 +03/24/2018,Actors,@EllenPompeo,"RT @bevysmith: I support #MarchForOurLives but I want folks to show up with the same energy to #MarchForBlackLives yes, we need a separate…" +03/24/2018,Actors,@EllenPompeo,RT @JuddApatow: 73 Teens Shot To Death In The 37 Days Since The Parkland Massacre - HuffPost https://t.co/m5hLPxygTv +03/24/2018,Actors,@EllenPompeo,RT @mradamscott: $3.3 million from NRA https://t.co/DzEqOAHJHk +03/24/2018,Actors,@EllenPompeo,RT @DMVBlackLives: #StephonClark https://t.co/Q7vnJ8XDG0 +03/24/2018,Actors,@EllenPompeo,RT @townhallproject: This veteran's sign says it all. https://t.co/5nUuebc5Tr +03/24/2018,Actors,@EllenPompeo,RT @byshondaland: Can't make it to the #MarchForOurLives? Here's how you can still help. https://t.co/X33jrtLzf4 +03/24/2018,Actors,@EllenPompeo,"RT @kylegriffin1: 11-year old Naomi Wadler: ""I am here to acknowledge and represent the African-American girls whose stories don't make the…" +03/24/2018,Actors,@EllenPompeo,RT @RichardPrince4: So he’s at Mar A Largo. You outnumber him and his security. Go there. Keep going. Find him. Surround him. Don’t let him… +03/24/2018,Actors,@EllenPompeo,"RT @NYCSpeakerCoJo: Trevon Bosley’s brother was shot and killed as he left church in Chicago. + +I will never be afraid to say that #BlackLiv…" +03/24/2018,Actors,@EllenPompeo,"RT @ABC: Student at #MarchforOurLives rally in D.C.: ""We need to arm our teachers. We need to arm our teachers with pencils, pens, paper an…" +03/24/2018,Actors,@EllenPompeo,RT @chrisnellum: “Young black girls [in DC] are now likely to be arrested at 30 times the rate of white boys and girls together..” @rights4… +03/24/2018,Actors,@EllenPompeo,"RT @nhbaptiste: So, uh, the NRA isn’t very popular here. #MarchForOurLives https://t.co/4MHefnL1GH" +03/24/2018,Actors,@EllenPompeo,"RT @Goss30Goss: Thr fucking NRA no longer controls the narrative. The millions of Americans who want common sense gun laws do. + +#MarchForO…" +03/24/2018,Actors,@EllenPompeo,"RT @JordanUhl: Raw milk is more regulated than guns. + +#MarchForOurLives" +03/24/2018,Actors,@EllenPompeo,"RT @THR: Parkland student Adam Buchwald at #MarchForOurLives: ""We now have a voice"" https://t.co/LLGEspkZrV https://t.co/EfdvZKW7YL" +03/24/2018,Actors,@EllenPompeo,"RT @timkaine: This is who I march for. + +For our littlest kids. + +The ones who have not yet stepped foot into a classroom. They deserve to gr…" +03/24/2018,Actors,@EllenPompeo,RT @KamalaHarris: Optimism. That's what I see today from our youth at marches across America. They are going to be the generation that ends… +03/24/2018,Actors,@EllenPompeo,"RT @4EdJustice: Black youth are forced to make demands on a system that does not love them. @RethinkNOLA, you inspire us to continue the fi…" +03/23/2018,Actors,@EllenPompeo,RT @Emma4Change: I have absolutely no words... Thank you not only for your service but for standing with us as we #MarchForOurLives tomorro… +03/23/2018,Actors,@EllenPompeo,"RT @TIME: “Inaction is inexcusable.” TIME's editor @efelsenthal on what we can learn from the student teachers in Parkland, Fla. https://t.…" +03/23/2018,Actors,@EllenPompeo,This is a must read https://t.co/ZH4KGKHwIy +06/25/2018,Actors,@JessicaCapshaw,RT @jessetyler: I thought we decided that businesses are allowed to discriminate and don’t have to serve people they don’t want to serve...… +06/25/2018,Actors,@JessicaCapshaw,RT @KamalaHarris: Kirstjen Nielsen should resign immediately. She is leading an agency that has separated children from their parents and a… +06/23/2018,Actors,@JessicaCapshaw,"RT @jenniferbeals: Rise and shine. + +The world needs you." +06/23/2018,Actors,@JessicaCapshaw,"No, that’s not full Chynna. That’s what I refer to as the post-Chynna-I- wish-I-looked-like-Chynna-but-I-don’t -so-… https://t.co/Ii2KR5bLml" +06/23/2018,Actors,@JessicaCapshaw,"RT @ConstanceZimmer: I’d like to create a new social media platform where you go to read good news and laugh at random jokes, a place that…" +06/23/2018,Actors,@JessicaCapshaw,"Ummm, you know everything. Clearly. https://t.co/6pmTmbHY2h" +06/22/2018,Actors,@JessicaCapshaw,RT @RWitherspoon: Everyday for me is #DernDay !! I Feel the Dern! 🌟 https://t.co/SfLneN8Pcc +06/22/2018,Actors,@JessicaCapshaw,"RT @iJesseWilliams: If you, your friends and/or family are looking for scholarships this summer, @myScholly just launched our $10,000 Summe…" +06/19/2018,Actors,@JessicaCapshaw,RT @KamalaHarris: Many of you have asked how you can help the families being impacted by our government's human rights abuses along the bor… +06/19/2018,Actors,@JessicaCapshaw,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/19/2018,Actors,@JessicaCapshaw,"I called and left messages for my State’s Senators, @KamalaHarris & @SenFeinstein at 202-224-3121 +I wasn’t sure ex… https://t.co/H02lrrt30C" +06/11/2018,Actors,@JessicaCapshaw,💕👍🏻👏🏼😘 https://t.co/gCxuydFhAM +06/06/2018,Actors,@JessicaCapshaw,Never!!! 😘😘😘😘 https://t.co/CO3ihSo1tW +06/06/2018,Actors,@JessicaCapshaw,I somehow missed this so thank you someone for retweeting it. I couldn’t have been more fortunate to work with… https://t.co/vjr2XDkSlv +05/29/2018,Actors,@JessicaCapshaw,RT @iJesseWilliams: ‼️✊🏽❕‼️✊🏽❕‼️✊🏽❕‼️✊🏽❕ https://t.co/uQgm9phtSr +05/28/2018,Actors,@JessicaCapshaw,This cannot continue. What can we as a collective body of human beings do to not let these children be separated fr… https://t.co/5vp8CRHw8v +05/26/2018,Actors,@JessicaCapshaw,Thank YOU for the privilege of playing the tremendous character that you created. I’ll never stop being grateful fo… https://t.co/6ck8K2U01l +05/25/2018,Actors,@JessicaCapshaw,Love this! https://t.co/hu5Kkm4u4n +05/25/2018,Actors,@JessicaCapshaw,RT @Weinsteinlaw: It’s a sad day in America when we ban professional athletes from protesting peacefully before we ban the sale of assault… +05/25/2018,Actors,@JessicaCapshaw,RT @jodikantor: We’re in the courtroom waiting for Weinstein. For so long he had his own private system— fancy lawyers who paid to silence… +05/25/2018,Actors,@JessicaCapshaw,Love this!! https://t.co/RaeuFiyfMt +05/24/2018,Actors,@JessicaCapshaw,💪🏼🙌🏼 https://t.co/gmHtkTAH88 +05/24/2018,Actors,@JessicaCapshaw,💃😘💃 https://t.co/OX0dpF6VOP +05/24/2018,Actors,@JessicaCapshaw,Thank you for all of your commitment and hard work!! xoxox https://t.co/p7TqyfqN2r +05/22/2018,Actors,@JessicaCapshaw,Sending out big love and deep respect to… https://t.co/eGWTm496s3 +05/21/2018,Actors,@JessicaCapshaw,Awwwww...!!! https://t.co/w4hTpWg48a +05/21/2018,Actors,@JessicaCapshaw,Thank yooooooou!!! 😘 https://t.co/tYHHIdmHz4 +05/20/2018,Actors,@JessicaCapshaw,"I am very late to the party, but at least I got here...#MeghanAndHarry" +05/19/2018,Actors,@JessicaCapshaw,"I’m taking the weekend off...Monday, there will be video. https://t.co/hjhewzbA7K" +05/19/2018,Actors,@JessicaCapshaw,Huge respect for @jimmykimmel and his opening monologue tonight. The video that follows presenting politicians spea… https://t.co/0XcdJvMMLe +05/18/2018,Actors,@JessicaCapshaw,RT @iJesseWilliams: Radiant #GreysAnatomy @KellyMcCreary @JessicaCapshaw @sarahdrew https://t.co/93g2LfCCRl +05/18/2018,Actors,@JessicaCapshaw,And that’s a farewell to Arizona Robbins... https://t.co/fEN6vc6YlK +05/18/2018,Actors,@JessicaCapshaw,RT @shir_dan: @JessicaCapshaw you once said that when you first heard the name Arizona Robbins u felt like it's too much name to live up to… +05/18/2018,Actors,@JessicaCapshaw,I stand corrected. West coast...2 mins...!!! https://t.co/V58TsdKVDS +05/18/2018,Actors,@JessicaCapshaw,3 mins east coast!! +05/18/2018,Actors,@JessicaCapshaw,"She is so kind, enthusiastic, sweet and prepared!!! https://t.co/e3qRwNnoec" +05/18/2018,Actors,@JessicaCapshaw,Blue flannnnnel!!!! https://t.co/lPC17odc1Y +05/18/2018,Actors,@JessicaCapshaw,RT @capshawsdarby: your positivity posts are what get me through some days and I really just can’t thank you enough for everything you’ve d… +05/18/2018,Actors,@JessicaCapshaw,😘 https://t.co/pIOijeJjHB +05/18/2018,Actors,@JessicaCapshaw,Mornin’ https://t.co/V794gHSyMl +05/18/2018,Actors,@JessicaCapshaw,💕💕💕💕💕💕💕💕💕 https://t.co/mv2NDlCyB4 +05/18/2018,Actors,@JessicaCapshaw,The free gum? https://t.co/e1UGNbMDg2 +05/18/2018,Actors,@JessicaCapshaw,"RT @RuPaul: Show up on time. +Be prepared. +Don’t complain. https://t.co/nEhagrGkev" +05/18/2018,Actors,@JessicaCapshaw,His good morning hugs and kisses. https://t.co/uGCEtp3pYu +05/18/2018,Actors,@JessicaCapshaw,Final. https://t.co/PvsyIjRjQa +05/18/2018,Actors,@JessicaCapshaw,RT @swiftdobrevas: @JessicaCapshaw Thank you for your 10 years of portrayal of Arizona Robbins. She has inspired so much for the past 2 yea… +05/18/2018,Actors,@JessicaCapshaw,This is how quickly I run towards @KellyRipa ❤️💕❤️💕❤️💕❤️ https://t.co/wTqrOzto9c +05/18/2018,Actors,@JessicaCapshaw,RT @psicogreys: when we heard about his departure I and some fans from various countries did a video of homage to Arizona and you @JessicaC… +05/18/2018,Actors,@JessicaCapshaw,"So, so, so much. https://t.co/2sXuuCkGhz" +05/18/2018,Actors,@JessicaCapshaw,LOVE. https://t.co/lwPLzdP7YA +05/18/2018,Actors,@JessicaCapshaw,RT @arjzonas: @JessicaCapshaw i wish i could express to you how much arizona meant to me and how impactful your portrayal of her was for me… +05/18/2018,Actors,@JessicaCapshaw,This is the kind of tweet that leaves me humbled beyond belief and in a puddle of happy tears...@shondarhimes… https://t.co/h9t38pZhYa +05/18/2018,Actors,@JessicaCapshaw,"Bahahahah, she was fun. https://t.co/hejfvxSTPY" +05/18/2018,Actors,@JessicaCapshaw,@MelaniesHair spent sooooo long doing @camilluddington hair. I was all 😴😴😴😴😴😴😴😴😴😴 https://t.co/mytPUPHSff +05/18/2018,Actors,@JessicaCapshaw,RT @sarahdrew: Head over to my Instagram account. I’ve got lots of stuff to share starting now :) 😘😘😘 Loved chatting with you in my final g… +05/18/2018,Actors,@JessicaCapshaw,"RT @EmmaWatson: This #IDAHOT I stand in solidarity with LGBTQI activists who are fighting to have the same rights, freedoms, protection & s…" +05/18/2018,Actors,@JessicaCapshaw,❤️ https://t.co/unjIY5iing +05/18/2018,Actors,@JessicaCapshaw,You’ve got this. And we’ve got your back. 😘 https://t.co/KJOIW5A0XY +05/18/2018,Actors,@JessicaCapshaw,This is everything. Everyone. Every. One. Should feel represented in the landscape of television... https://t.co/dCeBbRedRU +05/18/2018,Actors,@JessicaCapshaw,No. https://t.co/om3hPppaTq +05/18/2018,Actors,@JessicaCapshaw,I’ve read about it but I haven’t received it... https://t.co/PuqLBw6wmp +05/18/2018,Actors,@JessicaCapshaw,"Awwww, thank you!! https://t.co/DDLkyzZWRO" +05/18/2018,Actors,@JessicaCapshaw,"RT @enews: You were our person, Arizona. #GreysAnatomy https://t.co/qhVTdj8fDU https://t.co/6t1FR19e7P" +05/18/2018,Actors,@JessicaCapshaw,"Gives me a wide smile, a warm heart and goosebumps all over my body all at the same time. https://t.co/mT9hm7wukO" +05/18/2018,Actors,@JessicaCapshaw,@SaraRamirez is one of the most talented and committed actors that I’ve ever worked with. And that’s a fact. https://t.co/WGpJK3Dhmt +05/18/2018,Actors,@JessicaCapshaw,Ummm...everything? https://t.co/m2PH5OTVkm +05/18/2018,Actors,@JessicaCapshaw,I LOVE THIS!! But I didn’t get it!! https://t.co/enQtGr0Pbu +05/18/2018,Actors,@JessicaCapshaw,"Pretty good, right?!? https://t.co/vexTFmz2ty" +05/18/2018,Actors,@JessicaCapshaw,OF COURSE!! https://t.co/WWqZXTxOej +05/18/2018,Actors,@JessicaCapshaw,So many things... https://t.co/G4Szl3PBak +05/18/2018,Actors,@JessicaCapshaw,Nope. https://t.co/8gIH6K8QMy +05/18/2018,Actors,@JessicaCapshaw,@sexmirez @sashaalexander That would be a dream come true... +05/18/2018,Actors,@JessicaCapshaw,No. https://t.co/uOGY7UkRBP +05/18/2018,Actors,@JessicaCapshaw,Nope. But @sarahdrew might since it’s her actual phone case... https://t.co/JXm7kJ4QrR +05/18/2018,Actors,@JessicaCapshaw,ELATION. I literally may have levitated. https://t.co/KmRssRL8FY +05/18/2018,Actors,@JessicaCapshaw,"@callicpetxrres So many real tears...and by the way, most of them got edited out. Must’ve been too many tears...😍" +05/18/2018,Actors,@JessicaCapshaw,I heard that was meant for next season... https://t.co/2U7GG3JXIn +05/18/2018,Actors,@JessicaCapshaw,I’ve got some things up my sleeve... ☺️ https://t.co/PklkZtJ83Q +05/18/2018,Actors,@JessicaCapshaw,"Ummmm...it was a full blown meltdown. A cathartic, wild, full force processing of a decade. https://t.co/B0tlCZ3x7P" +05/18/2018,Actors,@JessicaCapshaw,She always wants to smooch me 🙄 https://t.co/eazUrrUypA +05/18/2018,Actors,@JessicaCapshaw,My friend @7JustinChambers https://t.co/d7ubxB9zC4 +05/18/2018,Actors,@JessicaCapshaw,"She’s sweet, enthusiastic, and full of information!! https://t.co/VzPkCkVmEI" +05/18/2018,Actors,@JessicaCapshaw,You have questions? I have answers... +05/18/2018,Actors,@JessicaCapshaw,In our next show for suuuure!! 😘 https://t.co/VVY4a2Pi3v +05/18/2018,Actors,@JessicaCapshaw,East cooooooast!! 10 mins!! Let’s do this!! +05/18/2018,Actors,@JessicaCapshaw,"I love you, sister. ❤️❤️ https://t.co/w1OcKTjPYb" +05/18/2018,Actors,@JessicaCapshaw,"Constance!!! I love working with you so much. You came in and were fierce, talented, prepared and all kinds of craz… https://t.co/Hx4kgNP1A3" +05/17/2018,Actors,@JessicaCapshaw,Just saying...my Instagram feed is going to look like I was on Grey’s Anatomy for a decade by the end of this evening. 😂🤣😎 +05/17/2018,Actors,@JessicaCapshaw,Today’s the day...it’s finally here. Farewell Arizona Robbins!!! I’ll be live tweeting the WEST COAST airing tonight. ❤️👩🏼‍⚕️❤️ +05/17/2018,Actors,@JessicaCapshaw,Thank YOU ALL!!! https://t.co/ZuhmYJf9k4 +05/16/2018,Actors,@JessicaCapshaw,Why try not to laugh?!? Lean into it people!! 😂😂😂😂😂😂 https://t.co/FeSAL7mDOA +05/16/2018,Actors,@JessicaCapshaw,"Season finale tomorrow, people!! What’s going to happen? I know, do you? 😬😎🙃😉🤐" +05/16/2018,Actors,@JessicaCapshaw,What in what has Yanny done to you?!? Snap out of it!! You really shouldn’t lose us both over the Yanster. https://t.co/kEJgv5LKAI +05/16/2018,Actors,@JessicaCapshaw,"Literally the first time we’re not on the same page. Who is messing with us?!?! + +It’s clearly and definitively Laur… https://t.co/SySLMHW2Bq" +05/15/2018,Actors,@JessicaCapshaw,Never. https://t.co/cXRGx6tqUJ +05/15/2018,Actors,@JessicaCapshaw,I stand corrected. Last live tweet for GREY’S ANATOMY... https://t.co/RipaD7qnIt +05/15/2018,Actors,@JessicaCapshaw,"So, I’m thinking...anyone up for one last live tweet from me this Thursday?" +05/11/2018,Actors,@JessicaCapshaw,The all of it. 😘☺️ https://t.co/wuVmFHv0wL +05/11/2018,Actors,@JessicaCapshaw,"RT @JChambersOnline: ""I thought you were a pixie stick. When I met you, I thought you were an empty vessel full of sugar who skated in a ho…" +05/11/2018,Actors,@JessicaCapshaw,😂❤️😂❤️ https://t.co/8CAgoezDuv +05/11/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/s2azgiS9xx +05/09/2018,Actors,@JessicaCapshaw,Full blown heart explosion. https://t.co/TPRbLmsmuW +05/06/2018,Actors,@JessicaCapshaw,"I do believe that @7JustinChambers has been hitting it out of the park for FOURTEEN YEARS...love, love, love and ma… https://t.co/QN5GxMfYKF" +05/04/2018,Actors,@JessicaCapshaw,"Love you, Lindaaaaa!!! https://t.co/bzI8FnZSso" +05/04/2018,Actors,@JessicaCapshaw,"10 years of learning under the best (and toughest) teacher a girl could wish for...@iamlk ++ +1 episode with a soulf… https://t.co/75vn0hJiyt" +05/03/2018,Actors,@JessicaCapshaw,It’s a fact that @iJesseWilliams & I became friends the minute that he arrived at Grey’s. I had no idea then that h… https://t.co/LiQ4g9iO9h +05/03/2018,Actors,@JessicaCapshaw,"I do, I do, I do. And I am so grateful for your participation in making Arizona Robbins’ life on Grey’s so successf… https://t.co/ueNRifnovu" +05/02/2018,Actors,@JessicaCapshaw,👏🏼👏🏼👏🏼 https://t.co/jlJJcL5Mqg +05/02/2018,Actors,@JessicaCapshaw,This made me laugh out loud... https://t.co/gzeM6srfuW +04/20/2018,Actors,@JessicaCapshaw,"That’s a series wrap for Arizona Robbins...wow, wow, wow." +04/18/2018,Actors,@JessicaCapshaw,"Ummmm, better than pictures, I have VIDEO, people. All in good time... https://t.co/WetJqbtwA0" +04/18/2018,Actors,@JessicaCapshaw,Bahahahaha! https://t.co/FJheFh74bj +04/18/2018,Actors,@JessicaCapshaw,"Ok, that’s crazy. I brought it in for @MelaniesHair to try for something she had to go to. Can’t believe that you s… https://t.co/CJDAZmK1Re" +04/16/2018,Actors,@JessicaCapshaw,I’m such a nostalgic fool. I get it from my father...so get ready for it this week as we go into...the last week of… https://t.co/jHxGByVLYs +04/15/2018,Actors,@JessicaCapshaw,RT @azandcallie: mimi listened i will never complain again https://t.co/pONIh5IVrr +04/14/2018,Actors,@JessicaCapshaw,"Bahahahaha!! +https://t.co/jVAbZGIFe6" +04/11/2018,Actors,@JessicaCapshaw,"Yes, please and thank you!! 🙌🏼 https://t.co/wniPUmQL5O" +04/10/2018,Actors,@JessicaCapshaw,Last drive from home to the studios this morning...TEN YEARS of commuting to reflect upon in 35 mins...wooaaahhh... +04/06/2018,Actors,@JessicaCapshaw,Yaaaaaaaasss!!! If I had moves like this I would NEVER STOP DANCING!! https://t.co/BqK93aTwUn +04/06/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️ https://t.co/LwtlRa35ri +04/05/2018,Actors,@JessicaCapshaw,Love you to the moon and back again...😘😘😘😘 https://t.co/cjDssNzqSS +04/05/2018,Actors,@JessicaCapshaw,Would do? Or have done? 😂🙄😬 https://t.co/aENgQEIOpz +03/29/2018,Actors,@JessicaCapshaw,RT @HeelyQueen: @JessicaCapshaw Bearizona Robbins just might be the cutest thing I ever saw. Plus the rainbow shows 😭🤧🌈 +03/27/2018,Actors,@JessicaCapshaw,"Oh my, oh my...what a ride!!! https://t.co/5ZkoyIJb7o" +03/25/2018,Actors,@JessicaCapshaw,"RT @splinter_news: ""I know you guys are going through the exact same thing. You just don't have the platform. People aren't listening to yo…" +03/23/2018,Actors,@JessicaCapshaw,#MarchForOurLivesLA https://t.co/qW2OtCXTi2 +03/23/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/44sJufTD2B +03/23/2018,Actors,@JessicaCapshaw,"Happy Birthday to one of the great ones...@RWitherspoon +You are one of the hardest working forces for good that I’… https://t.co/ouNqTN1WRF" +03/22/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/WMqi2Dl8Kh +03/21/2018,Actors,@JessicaCapshaw,I was the 25th!! 💃🏼 https://t.co/QAIVkvVsH8 +03/21/2018,Actors,@JessicaCapshaw,RT @MurielGuigui: @JessicaCapshaw Yes! And don’t forget how amazingly supportive @julieplec was too! +03/21/2018,Actors,@JessicaCapshaw,"“One time was enough. One story was enough. One woman is enough.” Finchie, thank you for sharing your story. I’m so… https://t.co/QA2vgZLq8n" +03/20/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️ https://t.co/Ildu2Cfvaa +03/19/2018,Actors,@JessicaCapshaw,Beyond!!!✈️❤️✈️ https://t.co/ygMKdbGoqO +03/19/2018,Actors,@JessicaCapshaw,Surreal and so moving...loved being there with you. xoxox ❤️✈️😘 https://t.co/jjCxRWpasa +03/19/2018,Actors,@JessicaCapshaw,"OMG. There is a plane carrying a banner that says.. +WE ❤️ SARAH DREW & JESSICA CAPSHAW right now... +There are no words...WE ❤️ YOU ALL!!" +03/17/2018,Actors,@JessicaCapshaw,"This scene was so much fun to shoot. And I had just had my sweet baby girl, Evie. Literally, I had just had her. https://t.co/8556G2seX2" +03/17/2018,Actors,@JessicaCapshaw,"Ella, I am so grateful to have had the sincere privilege of playing this role. My heart is full knowing that having… https://t.co/jmLtFcCx5O" +03/16/2018,Actors,@JessicaCapshaw,Drove to work thinking about all of you over at @scandal such an enormous day for you...sending you all so much lov… https://t.co/MM6b7ha5i2 +03/16/2018,Actors,@JessicaCapshaw,What?!? I want gold heelys!!!! https://t.co/iBvqdNLp0z +03/16/2018,Actors,@JessicaCapshaw,I really believe this... https://t.co/BDnnKjWXrz +03/16/2018,Actors,@JessicaCapshaw,Right now my answer would be every single one... https://t.co/4okNxFe0Te +03/16/2018,Actors,@JessicaCapshaw,I haven’t seen this in a while and I kind of LOVE IT. 👩🏼‍⚕️💃😂 https://t.co/k8rXhGfPGk +03/16/2018,Actors,@JessicaCapshaw,😘💯👍🏻💥 https://t.co/yvUEs2NNMA +03/16/2018,Actors,@JessicaCapshaw,I can’t even. https://t.co/uGa6y6l3E0 +03/15/2018,Actors,@JessicaCapshaw,This is incredible!! Thank YOU. You are never alone and you should always be proud of who you are. If this letter i… https://t.co/xcfynEQZnG +03/15/2018,Actors,@JessicaCapshaw,And then you’ll get back up 😉 https://t.co/FR2oQCwi7w +03/15/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/zRQcQfvStE +03/15/2018,Actors,@JessicaCapshaw,I can’t find words big enough to express how much this means to me. I am smiling ear to ear. Thank you for sharing… https://t.co/cAX2lGlo6k +03/15/2018,Actors,@JessicaCapshaw,I LOVE THIS PICTURE SO MUCH. There are magical moments that happen on set sometimes where basically all the actors… https://t.co/NFWp90WtuH +03/15/2018,Actors,@JessicaCapshaw,"Oh my, oh my...that is definitely happiness in a clip (plus a healthy amount of snapping and clapping while moving… https://t.co/PhUtkNivJO" +03/14/2018,Actors,@JessicaCapshaw,"From Camp BFF’s to comedy wranglers on television?!? +YES, PLEASE!! 😘 https://t.co/jm3GtghULE" +03/14/2018,Actors,@JessicaCapshaw,OOOOMMGGGG!!! That would be what’s referred to as ‘must see TV!’ https://t.co/pCGjWGjn5l +03/14/2018,Actors,@JessicaCapshaw,"Go get ‘em Lady!! And ummm, please keep a journal so that you can share everything when you come back online. 💕💕💕💕 https://t.co/JDVNdUp2Ru" +03/14/2018,Actors,@JessicaCapshaw,"I could NOT BE MORE EXCITED for this incredible talent. What a lucky, lucky, show ‘Cagney and Lacey’ is to have you… https://t.co/SUaXJcJccs" +03/13/2018,Actors,@JessicaCapshaw,I think there is so much more to create here 😉 https://t.co/nGixXr5NKB +03/12/2018,Actors,@JessicaCapshaw,❤️ https://t.co/3nWmwMH2mh +03/12/2018,Actors,@JessicaCapshaw,"Love your life honestly and lead with kindness and you will always be proud of who you are. Because you, are magica… https://t.co/jbd1bJjiTJ" +03/12/2018,Actors,@JessicaCapshaw,"Love this, Tom!! Thank you so much. You were there in the very beginning for me and I was so grateful to work with… https://t.co/iHDSzOp43q" +03/12/2018,Actors,@JessicaCapshaw,"You have always been so kind and so supportive, Felien. Thank you for that!!! https://t.co/ybbikJmHj9" +03/12/2018,Actors,@JessicaCapshaw,Oh. My. Goodness. You’re making me cry!! Thank you for this...I am so grateful to you all for bringing all this lov… https://t.co/LiFiXAeeNY +03/10/2018,Actors,@JessicaCapshaw,"My dear, Jesse. Your humor, strength and friendship have been a lifeline for me at times. There’s not many people w… https://t.co/aUIo3JebEL" +03/10/2018,Actors,@JessicaCapshaw,RT @JessicaCapshaw: ❤️ @stacysmckee16 https://t.co/AbONdCM96o +03/10/2018,Actors,@JessicaCapshaw,❤️ @stacysmckee16 https://t.co/AbONdCM96o +03/10/2018,Actors,@JessicaCapshaw,😘 https://t.co/ZWTnHydqeJ +03/10/2018,Actors,@JessicaCapshaw,💯 https://t.co/N3HF75UhGz +03/10/2018,Actors,@JessicaCapshaw,So sweet!!! https://t.co/s7raWxST5a +03/10/2018,Actors,@JessicaCapshaw,🌈🌈🌈🌈🌈🌈🌈🌈 https://t.co/9IOih1yyzU +03/10/2018,Actors,@JessicaCapshaw,Thank YOU!!! https://t.co/hts5Ad1QXh +03/10/2018,Actors,@JessicaCapshaw,❤️ https://t.co/Jc1fdgq9dP +03/10/2018,Actors,@JessicaCapshaw,Aaaaaaahhhhhhb!!! Look at this!!! https://t.co/hqAJzT89vK +03/10/2018,Actors,@JessicaCapshaw,This is everything. https://t.co/lHR3ndUkri +03/10/2018,Actors,@JessicaCapshaw,What am I doing here?!?! 😂😂😂 https://t.co/ButuMY2dqF +03/10/2018,Actors,@JessicaCapshaw,Thank you for sharing this. I’m beyond grateful that @shondarhimes created this character for me to play. Arizona h… https://t.co/RCeNfTUfTo +03/10/2018,Actors,@JessicaCapshaw,"Awwwww, love those wheeeelie sneaks!!! https://t.co/PHrR2ZoRp4" +03/10/2018,Actors,@JessicaCapshaw,This is so beautiful. I am so grateful for your kind words. I am even more grateful that Arizona brought you someon… https://t.co/xBhjZ9o7VE +03/10/2018,Actors,@JessicaCapshaw,"I can’t even. + +Caterina is a force of nature. A true talent, scholar and friend. ❤️ https://t.co/wg9Kj0SyfL" +03/10/2018,Actors,@JessicaCapshaw,"Thank you, thank you and thank you. +😘 https://t.co/Z8cjsDZ2Lt" +03/10/2018,Actors,@JessicaCapshaw,We clearly have had no fun at all 😉 https://t.co/Vu5n0i9Np3 +03/10/2018,Actors,@JessicaCapshaw,And always in mine... https://t.co/9fULjvUVHl +03/10/2018,Actors,@JessicaCapshaw,"RT @_caoutlaw: You're kind of a legend. +Always be @JessicaCapshaw ❤️ https://t.co/iMeH4QaZCm" +03/10/2018,Actors,@JessicaCapshaw,Thank YOU. It has been an honor to play Arizona. xoxox https://t.co/VUgTMgpg23 +03/10/2018,Actors,@JessicaCapshaw,"Right back at you, my friend... https://t.co/QA7IywiD0d" +03/10/2018,Actors,@JessicaCapshaw,😍 https://t.co/oY7rYFaanV +03/08/2018,Actors,@JessicaCapshaw,https://t.co/HVfHbkEQTG +03/06/2018,Actors,@JessicaCapshaw,AMAZING. https://t.co/Nh29BWRtrl +03/06/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️ https://t.co/dYuYmzIH26 +03/02/2018,Actors,@JessicaCapshaw,Thank YOU!! https://t.co/XojGKjAQhB +03/02/2018,Actors,@JessicaCapshaw,Thank YOU!! https://t.co/97U3u4UaU8 +03/02/2018,Actors,@JessicaCapshaw,There is nothing more impactful than this. My guess is that you are more than ok. My guess is that you are WONDERFU… https://t.co/VKSK0gjak9 +03/02/2018,Actors,@JessicaCapshaw,You mean so much to me!! https://t.co/97U3u4UaU8 +03/02/2018,Actors,@JessicaCapshaw,"I see you and I am so, so, so happy... https://t.co/5AvIqY3Rvx" +03/02/2018,Actors,@JessicaCapshaw,I misssssss yooooouuuu!!! Congratulations on @Station19 💯👍🏻💯👍🏻💯 https://t.co/MSiDC13TLo +03/02/2018,Actors,@JessicaCapshaw,I humbly apologize... https://t.co/JnESoMZLIs +03/02/2018,Actors,@JessicaCapshaw,I love it when some of our improvs make it in the show!!! And I love working with @KellyMcCreary and @iJesseWilliams https://t.co/Dl2zLK45eC +03/02/2018,Actors,@JessicaCapshaw,Bahahahahah https://t.co/74IhlQoxGg +03/02/2018,Actors,@JessicaCapshaw,EPIC FAIL!!! Got caught at work!!! And then forgot to even let you all know. I’m the wooooorrrrsssst!! I’m so sorry. https://t.co/HWeZZDCfrM +02/27/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/fCW9JSOOI9 +02/24/2018,Actors,@JessicaCapshaw,I doooooooo... https://t.co/jy7X177wby +02/24/2018,Actors,@JessicaCapshaw,RT @KarlaSouza7: I am proud to stand in solidarity with my sisters in Mexico and women around the world whose voices are finally being hear… +06/30/2018,Actors,@sarahdrew,"RT @bleuangel88: In which I demand @sarahdrew be given an Emmy. Give Maggie (@KellyMcCreary) the due she deserves, and OF COURSE @peyton_k…" +06/28/2018,Actors,@sarahdrew,The night Harriet was conceived began with a fortune cookie fight :) https://t.co/k0hhsQjQFz +06/28/2018,Actors,@sarahdrew,Oh man... this is so sweet! I love @sleepingatlast version of Faith!! https://t.co/GWkYmxijn9 +06/28/2018,Actors,@sarahdrew,😂😂😂🐷🏠🛳🎢✈️🍪🍼🥠🐓🐖 https://t.co/ItxWHWTtu3 +06/28/2018,Actors,@sarahdrew,"RT @GlennonDoyle: So many of you have been asking for ways that you can help the separated families beyond giving. +So we put together this…" +06/27/2018,Actors,@sarahdrew,Yes! That is the perfect description!!! Ps- I LOVE your work @sleepingatlast !!! https://t.co/kNL9k2Nxum +06/27/2018,Actors,@sarahdrew,"If you haven’t seen @Hannahgadsby show #nanettflix yet, stop what you are doing and watch it immediately. It was on… https://t.co/HDwnq3d47U" +06/25/2018,Actors,@sarahdrew,"@Dani_beii I see them all and if you don’t want anyone else to see them, just let me know in the video and I’ll be sure not to share" +06/25/2018,Actors,@sarahdrew,@frwkinsuperhero Yes!! +06/25/2018,Actors,@sarahdrew,@gtwayscar Yay!!! I’m proud of you! +06/25/2018,Actors,@sarahdrew,@heavenously I can’t wait to hear your voice! +06/25/2018,Actors,@sarahdrew,"@Dani_beii If you don’t want me to share your response, just mention that in your video and I will be the only one to see it!" +06/25/2018,Actors,@sarahdrew,"@thaysmarcelina2 For this one, I’m asking for videos!" +06/25/2018,Actors,@sarahdrew,@apriIscrubcap That works too! Reply in whatever way you’d like! +06/25/2018,Actors,@sarahdrew,@dancesjolex Don’t be embarrassed!! +06/25/2018,Actors,@sarahdrew,@EllenPompao_ It has to be video :) +06/25/2018,Actors,@sarahdrew,Come and talk to me guys! Click the link 👇🏻👇🏻 I can’t wait to hear from you!!! https://t.co/Pg2q7JRSTd +06/25/2018,Actors,@sarahdrew,RT @DalaiLama: I am one of the 7 billion human beings alive today. We each have a responsibility to think about humanity and the good of th… +06/25/2018,Actors,@sarahdrew,Thank you so much! I LOVED playing this story last season! ❤️❤️❤️ https://t.co/OCvVVUUjiW +06/24/2018,Actors,@sarahdrew,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/24/2018,Actors,@sarahdrew,RT @mishacollins: Um... After Australia had a horrific mass shooting they implemented sensible gun control. They haven’t had another mass… +06/24/2018,Actors,@sarahdrew,RT @RevDrBarber: Those who use scripture and Christianity to justify harm and violence are guilty of theological malpractice and heresy. We… +06/24/2018,Actors,@sarahdrew,"Loved meeting you too, @kamron54 😘😘😘 https://t.co/SpFPofwi3c" +06/23/2018,Actors,@sarahdrew,"RT @amnestyusa: ""Why are we hiding this from the American people?"" - @tedlieu #FamiliesBelongTogther https://t.co/dwl2dt6soO" +06/22/2018,Actors,@sarahdrew,"RT @GlennonDoyle: This will be a day of calls, listening, listening, listening - learning and then deciding on the Next Right Thing. Really…" +06/22/2018,Actors,@sarahdrew,"RT @minh81: ****U R G E N T E ***** +“RAICES needs volunteer translators: ""who speak Meso-American indigenous languages (eg, zapotec, nahua,…" +06/22/2018,Actors,@sarahdrew,Yup. That was me last night catching up on the final episode. https://t.co/8lxiQ2nxfA +06/21/2018,Actors,@sarahdrew,RT @GlennonDoyle: 3.2 million dollars. That’s what you’ve raised. Soon we will have an update to you about how Round three of funds will be… +06/21/2018,Actors,@sarahdrew,"RT @lparrottperry: If you haven't donated yet, there's still time & there's still so much work to be done. + +There's no org I have more fait…" +06/20/2018,Actors,@sarahdrew,"RT @TheGoodGodAbove: Repeat after Me: +THOU SHALT NOT PUT BABIES IN CAGES. + +THOU SHALT NOT PUT BABIES IN CAGES. + +THOU SHALT NOT PUT BABIES I…" +06/20/2018,Actors,@sarahdrew,"RT @girlsreallyrule: Not sure how to call your senator? No biggie, follow these steps: +1. Look up your Senator here: https://t.co/wwInaPr77…" +06/20/2018,Actors,@sarahdrew,"RT @JessicaCapshaw: I called and left messages for my State’s Senators, @KamalaHarris & @SenFeinstein at 202-224-3121 +I wasn’t sure exactl…" +06/20/2018,Actors,@sarahdrew,This is so utterly devastating. I cannot believe our country is traumatizing babies in this way. I cannot believe i… https://t.co/naczfeH1DI +06/20/2018,Actors,@sarahdrew,RT @nowthisnews: ‘How can this happen in the 21st century? … Separation of the family is probably the worst thing that ever happened to us.… +06/20/2018,Actors,@sarahdrew,"RT @tonyposnanski: A tale of two parties... + +Rachel Maddow breaks down while reporting about children being taken from their parents... + +Co…" +06/20/2018,Actors,@sarahdrew,RT @caterinatweets: Resist evil. Send pictures from inside the “tender age shelters” so people can feel the truth. If you lose your job you… +06/20/2018,Actors,@sarahdrew,"RT @GlennonDoyle: You know how we teach our kids never to be “bystanders?” To stand up for other hurting kids being bullied? +Now is the ti…" +06/18/2018,Actors,@sarahdrew,"RT @CBSNews: WATCH: “This is torture to take a child from that mother, from that father, who literally risked all, including their lives, t…" +06/16/2018,Actors,@sarahdrew,RT @wendimclendonco: https://t.co/42Cq79Hagk +06/11/2018,Actors,@sarahdrew,This looks SO amazing @camilluddington !!! Congratulations!!! https://t.co/Z8NZAcV952 +06/09/2018,Actors,@sarahdrew,"RT @NPR: If you or someone you know may be considering suicide, contact the National Suicide Prevention Lifeline at 1-800-273-8255 (En Espa…" +06/09/2018,Actors,@sarahdrew,This thread is so beautiful. 👇🏻👇🏻👇🏻 https://t.co/i0Vx5jZNsC +06/08/2018,Actors,@sarahdrew,"RT @BarackObama: “Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us about food…" +06/08/2018,Actors,@sarahdrew,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/07/2018,Actors,@sarahdrew,RT @GlennonDoyle: Abby just said this to me: “we need to stop calling mental illness ‘personal demons’ like victims need exorcisms instead… +06/06/2018,Actors,@sarahdrew,"RT @itslizhannah: If any female showrunners want to do a panel on Thursday night, I will moderate and organize. https://t.co/R1IXBMOXWN" +06/05/2018,Actors,@sarahdrew,"RT @swingleft: Only 28% of Americans voted in the primaries in 2016, and we know what happened next. If you live in Alabama, California, Io…" +06/05/2018,Actors,@sarahdrew,RT @tonygoldwyn: Hey #CA #NJ #AL #IA #MS #MT #NM #SD its Election Day!!! Grab a friend and GO VOTE! #UseYourVoice +06/05/2018,Actors,@sarahdrew,😘😘😘 https://t.co/NawwHUKR3Z +06/01/2018,Actors,@sarahdrew,Ultimate #fbf ! This is so cute and it’s making me want to go back and watch the series again! #everwood… https://t.co/HKUOf3FjRz +06/01/2018,Actors,@sarahdrew,So much pain https://t.co/dSRKc1vTnY +06/01/2018,Actors,@sarahdrew,Absolutely!! https://t.co/V2IOgCY1kR +06/01/2018,Actors,@sarahdrew,RT @doglab: Please retweet if you think there should be a global ban on trophy hunting. https://t.co/3TQ04XNbk5 +06/01/2018,Actors,@sarahdrew,Well.... not so much in real life 😬😬🤷‍♀️🤷‍♀️ https://t.co/HLnNOyCIje +06/01/2018,Actors,@sarahdrew,"RT @HomeandFamilyTV: Actors @sarahdrew and Justin Bruening are making Justin's favorite pasta dish. #Recipes +https://t.co/gzqx4LzJDx https…" +06/01/2018,Actors,@sarahdrew,Check out our segment on @HomeandFamilyTV !! https://t.co/QnB7WZZOyq +05/31/2018,Actors,@sarahdrew,RT @JessicaNTurner: Took time this morning to call my senators and house representative regarding DACA and the separation of children from… +05/31/2018,Actors,@sarahdrew,"RT @GlennonDoyle: ""We need to stop just pulling people out of the river. We need to go upstream and find out why they’re falling in.” +You…" +05/31/2018,Actors,@sarahdrew,RT @GlennonDoyle: MY FRIENDS: LOOK. Keep calling!!! Keep calling! Numbers and scripts at https://t.co/HHuAcEAw7E. This is what democracy lo… +05/31/2018,Actors,@sarahdrew,Check it out tomorrow! You’ll get to see a clip from our new film @indivisiblemov too!! https://t.co/c0Y3KFUvNe +05/31/2018,Actors,@sarahdrew,I didn’t make any of it. Because Justin is the chef! I helped by eating it and saying “this is soooo good”. Because… https://t.co/K6HmPM3A8b +05/30/2018,Actors,@sarahdrew,I can’t wait to see this!!!!! https://t.co/uzp6XxGYBH +05/29/2018,Actors,@sarahdrew,"RT @Sarcasticluther: We can do this. (Please read whole post). Together we can hire lawyers and aids to help these children because, as Gle…" +05/29/2018,Actors,@sarahdrew,RT @caterinatweets: Channing Dungey gets the integrity and patriotism award today. Profit margins can’t allow us to slide into allowing hat… +05/29/2018,Actors,@sarahdrew,"RT @stina_kc: ""If we cannot represent [a terrified 6-year-old blind boy separated from his mom at the border], he will stand in front of a…" +05/29/2018,Actors,@sarahdrew,There’s no such thing as other people’s children. Check out the work that @togetherrising is doing 👇🏻👇🏻👇🏻 https://t.co/ghZbxCqzDX +05/28/2018,Actors,@sarahdrew,This is very nice :) thank you 😘 https://t.co/1AfID4lRNE +05/26/2018,Actors,@sarahdrew,😊😊😊 https://t.co/WqXdO48ZGk +05/25/2018,Actors,@sarahdrew,"Meet Heather and Darren Turner, the characters that #JustinBruening and I play in our upcoming film @indivisiblemov… https://t.co/7FVyJ3U6FP" +05/23/2018,Actors,@sarahdrew,RT @mybeansjapril: VOTE! It’s the final round so vote for our captains❤️ @sarahdrew @iJesseWilliams https://t.co/GVZ7ZemHJp https://t.co/y2… +05/23/2018,Actors,@sarahdrew,RT @GlennonDoyle: One easy way to be better at apologizing is to say “I’m sorry THAT I hurt you” instead of “I’m sorry IF I hurt you.” We… +05/23/2018,Actors,@sarahdrew,👇🏻👇🏻👏🏻👏🏻👏🏻 https://t.co/FnERHQm27p +05/22/2018,Actors,@sarahdrew,"RT @TellTaleTV_: Nominees for favorite supporting actress in a drama series, Round 2 (continued): @sarahdrew @JessicaCapshaw @caterinatweet…" +05/20/2018,Actors,@sarahdrew,👇🏻👇🏻👇🏻 https://t.co/meQi5uEGBy +05/20/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/EfyFO0s5wL +05/20/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/wmfwusM1pd +05/19/2018,Actors,@sarahdrew,Bahahaha!! I wish!!!! https://t.co/F1Kfb0JCtC +05/19/2018,Actors,@sarahdrew,Go @rosemarydirects !!! Go! Badassery is correct!!!! https://t.co/NtB7u33r8A +05/19/2018,Actors,@sarahdrew,True story :) https://t.co/9o7JGF0QQL +05/18/2018,Actors,@sarahdrew,Check out the poster for my new film @indivisiblemov ! I had a blast making this film with some of my favorite… https://t.co/lX3L0Hwh3S +05/18/2018,Actors,@sarahdrew,😘😘❤️❤️ https://t.co/DSYCsspVAH +05/18/2018,Actors,@sarahdrew,RT @iJesseWilliams: Radiant #GreysAnatomy @KellyMcCreary @JessicaCapshaw @sarahdrew https://t.co/93g2LfCCRl +05/18/2018,Actors,@sarahdrew,RT @enews: Say it with us #GreysAnatomy fans: JAPRIL FOREVER! https://t.co/qa7YrQjuWI +05/18/2018,Actors,@sarahdrew,Love ya https://t.co/N6Kb5NcLeF +05/18/2018,Actors,@sarahdrew,I gave him a message last week! https://t.co/wMEACXFgl7 +05/18/2018,Actors,@sarahdrew,I told you I’d be spamming you- go to my insta or my Facebook to see... +05/18/2018,Actors,@sarahdrew,Head over to my Instagram account. I’ve got lots of stuff to share starting now :) 😘😘😘 Loved chatting with you in m… https://t.co/GiwuMYLUsj +05/18/2018,Actors,@sarahdrew,This one was pretty emotional for sure https://t.co/a1i3Sb9WVg +05/18/2018,Actors,@sarahdrew,Love hearing @SaraRamirez beautiful voice right now +05/18/2018,Actors,@sarahdrew,Everything https://t.co/taWkDcY0OE +05/18/2018,Actors,@sarahdrew,Always https://t.co/rQgfeUwdGq +05/18/2018,Actors,@sarahdrew,😘😘😘 https://t.co/BQo2p9PtCY +05/18/2018,Actors,@sarahdrew,It’s coming up https://t.co/wSJwMfcr5M +05/18/2018,Actors,@sarahdrew,So many... https://t.co/YcJkZzNPuI +05/18/2018,Actors,@sarahdrew,@JakeBorelli kills me here!! Ha! +05/18/2018,Actors,@sarahdrew,Haha! That is very true!! https://t.co/RUFvAvVGVl +05/18/2018,Actors,@sarahdrew,Love that scene https://t.co/mk8jPx4y6W +05/18/2018,Actors,@sarahdrew,Final moment on the show... I love you @JessicaCapshaw https://t.co/a42PFtPWRi +05/18/2018,Actors,@sarahdrew,Check my insta later https://t.co/sERFNWiZFI +05/18/2018,Actors,@sarahdrew,Love that line https://t.co/eYPqhkxtLM +05/18/2018,Actors,@sarahdrew,Ok @GiacomoKG kills me here +05/18/2018,Actors,@sarahdrew,That sweet hug was our last moment in front of the camera. So very special. +05/18/2018,Actors,@sarahdrew,This scene right here is the last scene @JessicaCapshaw and I shot on grey’s. +05/18/2018,Actors,@sarahdrew,@camilluddington and @7JustinChambers are killing me! They are so funny! +05/18/2018,Actors,@sarahdrew,Check my insta in an hour :) https://t.co/I86dcc7Bms +05/18/2018,Actors,@sarahdrew,She’s doing medical work in homeless communities where she is really needed and can use her gifts. https://t.co/YAY8UTsGrq +05/18/2018,Actors,@sarahdrew,She’s a part of me. I’m a part of her https://t.co/KvrX8xfasI +05/18/2018,Actors,@sarahdrew,Kinda both https://t.co/KvrX8xwLkg +05/18/2018,Actors,@sarahdrew,Yes!!! https://t.co/Uwe1gT2aTb +05/18/2018,Actors,@sarahdrew,I really had no idea. It’s been an incredible ride. https://t.co/JMhBRUMy9G +05/18/2018,Actors,@sarahdrew,Absolutely https://t.co/D5tZOxdyjI +05/18/2018,Actors,@sarahdrew,Every single person https://t.co/0p3eAGY2Cy +05/18/2018,Actors,@sarahdrew,Check my insta account in an hour and I’ll tell you https://t.co/P43LfnmFn8 +05/18/2018,Actors,@sarahdrew,Sure https://t.co/PfZiNBOJT4 +05/18/2018,Actors,@sarahdrew,Thank you ❤️❤️😘😘 https://t.co/CPGGusqsex +05/18/2018,Actors,@sarahdrew,Oh yeah https://t.co/aSpNwkUjf6 +05/18/2018,Actors,@sarahdrew,When he told me my baby was a miracle https://t.co/S6bdTwSpp7 +05/18/2018,Actors,@sarahdrew,Jesse has made it clear that I have to say it’s him https://t.co/c7Um6gBAAJ +05/18/2018,Actors,@sarahdrew,Her courage and conviction and empathy https://t.co/zwNW7DvWQW +05/18/2018,Actors,@sarahdrew,When samuel died https://t.co/jiYiaN5IkF +05/18/2018,Actors,@sarahdrew,No- but I agree - it’s so pretty https://t.co/lnREcUVbZK +05/18/2018,Actors,@sarahdrew,I don’t really know https://t.co/N8m0UDo1dE +05/18/2018,Actors,@sarahdrew,FYI we were all FREEZING in our tiny dresses while we were shooting. Can you tell? +05/18/2018,Actors,@sarahdrew,Being in a beautiful place with everyone https://t.co/kEfDezcW3o +05/18/2018,Actors,@sarahdrew,Joyful and emotional https://t.co/OZBj5DSg82 +05/18/2018,Actors,@sarahdrew,I was just taking in all my final moments and soaking up the time with my people https://t.co/HW4Rzjn1Sk +05/18/2018,Actors,@sarahdrew,“All I could do was cry” https://t.co/tgkYBStMNh +05/18/2018,Actors,@sarahdrew,"Resilience, compassion, a fighting spirit https://t.co/AtBFqfxljj" +05/18/2018,Actors,@sarahdrew,The people I got to work with and the stories I got to tell https://t.co/0mfDKL5NiJ +05/18/2018,Actors,@sarahdrew,Well @JessicaCapshaw and @7JustinChambers have me crying already +05/18/2018,Actors,@sarahdrew,Hi friends! How’s it going?? +05/17/2018,Actors,@sarahdrew,This is so beautiful. Thank you! https://t.co/6Lhr5M7ccx +05/17/2018,Actors,@sarahdrew,❤️😭❤️😭 https://t.co/grxyFmEYqN +05/17/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/Ckdd4JckVr +05/17/2018,Actors,@sarahdrew,😘😘😘 https://t.co/0Y7wCLUTTb +05/17/2018,Actors,@sarahdrew,April Kepner signs off tonight. Come chat with me from 8-9pm EST tonight. ❤️❤️❤️ +05/17/2018,Actors,@sarahdrew,"Well @babsamiga , I’m here weeping. Thank you so much for this beautiful tribute. I loved every moment I had workin… https://t.co/UDpsp0xpIG" +05/17/2018,Actors,@sarahdrew,RT @JessicaCapshaw: Today’s the day...it’s finally here. Farewell Arizona Robbins!!! I’ll be live tweeting the WEST COAST airing tonight.… +05/16/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/BKIcVfdqDd +05/16/2018,Actors,@sarahdrew,Hey friends! I’d love to live chat with you one last time tomorrow!! Who’s in? Chat with me using #Asksarah from 8-… https://t.co/AAtwnA2ZcT +05/16/2018,Actors,@sarahdrew,Definitely laurel. I don’t understand what is happening? Do you hear yanny??? https://t.co/XwtZERhVCi +05/15/2018,Actors,@sarahdrew,😘😘😘 https://t.co/gLgWxFWfc9 +05/14/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/S36aeTmWzt +05/14/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/yDW4jNqw9P +05/14/2018,Actors,@sarahdrew,Guys- I will be spamming you with pictures this week ☺️☺️ +05/13/2018,Actors,@sarahdrew,Had such a blast watching my super talented friends @loudforestmusic KILL it at @elreytheatre last night!! Check ou… https://t.co/OqDbqlLMH9 +05/13/2018,Actors,@sarahdrew,This is so fun :) https://t.co/ONqIctq4rg +05/12/2018,Actors,@sarahdrew,"RT @sarahdrew: I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had the aweso…" +05/12/2018,Actors,@sarahdrew,"RT @sarahdrew: And if you wanna see the full length trailer , head over to my Facebook page here https://t.co/xo8NvEwBSj" +05/12/2018,Actors,@sarahdrew,Well this article just made me cry. Thank you for this tribute ❤️😘❤️😘 https://t.co/ssYtawDw0M +05/12/2018,Actors,@sarahdrew,Thank you @camilluddington !! I love you! https://t.co/z1uXfJITtF +05/12/2018,Actors,@sarahdrew,😘😢☺️ https://t.co/XGyH1yaeU2 +05/12/2018,Actors,@sarahdrew,Yay! So well deserved @iJesseWilliams !! Brilliant performance this week!!! https://t.co/MjLhBN8Nvi +05/12/2018,Actors,@sarahdrew,Faith by @jordan_feliz 😍😊😊😊 https://t.co/farDEpXQ2F +05/11/2018,Actors,@sarahdrew,"And if you wanna see the full length trailer , head over to my Facebook page here https://t.co/xo8NvEwBSj" +05/11/2018,Actors,@sarahdrew,"I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had… https://t.co/wSYTB3HHmn" +05/11/2018,Actors,@sarahdrew,"RT @aprilswarrior: badass april kepner at your service. @sarahdrew +https://t.co/r6cgqangSo" +05/11/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/1P4iyJSnSs +05/11/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/ptLlOP33T8 +05/11/2018,Actors,@sarahdrew,"RT @eonlineTV: If you thought last night's #GreysAnatomy was intense, wait until you see @SarahDrew's BTS photos. https://t.co/gVZ6SHuxMu h…" +05/11/2018,Actors,@sarahdrew,Love you right back Jesse. https://t.co/brCx3Aq6uY +05/11/2018,Actors,@sarahdrew,SPOILER: this one killed me too. Jesse is incredible in this scene https://t.co/M6ifhcDbDN +05/11/2018,Actors,@sarahdrew,Me too https://t.co/1x9BUoi4SK +05/11/2018,Actors,@sarahdrew,I love you #gingerbrother https://t.co/8W3VOXaTED +05/11/2018,Actors,@sarahdrew,I’m watching west coast!! I’ve got some pics to post on Instagram!!! +05/11/2018,Actors,@sarahdrew,Ok friends! Check my Instagram feed in 2 hours! I will post stories and BTS pics while I watch the episode here on the west coast! 😘😘❤️❤️ +05/11/2018,Actors,@sarahdrew,Oh boy... this scene.... check out my insta later and I’ll tell you all about what I was feeling while we shot it. https://t.co/Cy9I4I3WR3 +05/11/2018,Actors,@sarahdrew,SPOILER!! This line killed me too! https://t.co/JIz4BZp19U +05/11/2018,Actors,@sarahdrew,Yesssss!!!!!! https://t.co/eLVZKrfu1Z +05/11/2018,Actors,@sarahdrew,Yes https://t.co/2fSpIS664Y +05/11/2018,Actors,@sarahdrew,SPOILER!!!!!!!!! I loved this line too!!! https://t.co/hPSLi18Syf +05/11/2018,Actors,@sarahdrew,Ok this made me laugh https://t.co/Uic5aygHpW +05/11/2018,Actors,@sarahdrew,😘😘😘 https://t.co/sCwAkihEzM +05/11/2018,Actors,@sarahdrew,Committed https://t.co/8ub60hrvSj +05/11/2018,Actors,@sarahdrew,"Well, I was only on the table part of the time. They made a doll of me! CHeck out my insta later and I’ll tell you… https://t.co/D94cr75PvH" +05/11/2018,Actors,@sarahdrew,Thank you for this. I’m so sorry for your loss. Sending you love. https://t.co/CD8NEXoV5H +05/11/2018,Actors,@sarahdrew,Yes you are :) https://t.co/5PsFKVimv1 +05/11/2018,Actors,@sarahdrew,Thank you for sharing his with me. Sending you so much love! https://t.co/DSCkqAhLWj +05/11/2018,Actors,@sarahdrew,All of them. All the emotions. Check my insta later and I’ll explain. https://t.co/ZOTGNf2onw +05/11/2018,Actors,@sarahdrew,Yes. https://t.co/N6E6Key9vX +05/11/2018,Actors,@sarahdrew,RT @_JoyChappell: “I don’t care how you do it or who you do it to. April would want us to pray for her” 💔@GreysABC #thismoment #toospecial… +05/11/2018,Actors,@sarahdrew,The really long one :) all the parts of it. It was a beautiful experience through and through https://t.co/iooFWcax7T +05/11/2018,Actors,@sarahdrew,Sure did https://t.co/eQ2YPS402r +05/11/2018,Actors,@sarahdrew,Ummm. Yes. There were SO many tears https://t.co/X1U1IiT577 +05/11/2018,Actors,@sarahdrew,Just so much love https://t.co/ZwqUn3d99u +05/11/2018,Actors,@sarahdrew,Yes yes and yes!!! https://t.co/goNtDY2ap4 +05/11/2018,Actors,@sarahdrew,I haven’t seen it yet. I’ll watch it in a few hours https://t.co/hAcnIW8FdY +05/11/2018,Actors,@sarahdrew,😘😘😘 https://t.co/CXsXjTWmn7 +05/11/2018,Actors,@sarahdrew,Thank you for sharing this with me. https://t.co/TCNqnQjG9Z +05/11/2018,Actors,@sarahdrew,She makes me laugh so hard! https://t.co/BEmo9GJOn5 +05/11/2018,Actors,@sarahdrew,"Samuel’s death, telling Jackson I had to move out, the scene with Eli, and one other that I’ll keep to myself. https://t.co/L0KmwtCzZA" +05/11/2018,Actors,@sarahdrew,Thank you so much for this! https://t.co/ZvXwn9Ko2T +05/11/2018,Actors,@sarahdrew,YES!!! I’ve seen @JessicaCapshaw @caterinatweets @TheRealKMcKidd #chandrawilson this week and I’ve spoken to… https://t.co/2hUfBgnrRF +05/11/2018,Actors,@sarahdrew,I had so many feelings. Check out my insta during west coast feed and I’ll share a bunch! https://t.co/GEwHUa6CM5 +05/11/2018,Actors,@sarahdrew,Yes 😢 https://t.co/13Kyl2rUVg +05/11/2018,Actors,@sarahdrew,I bawled my eyes out and then when I saw #billharper I thanked him for writing such a gorgeous tribute to April. It… https://t.co/V2MjU3XfJX +05/11/2018,Actors,@sarahdrew,Choose joy. No matter the circumstances- choose joy. Chandra Wilson taught me that! https://t.co/Et0HeUPWIb +05/11/2018,Actors,@sarahdrew,I love it! https://t.co/PK8xB0NSE0 +05/11/2018,Actors,@sarahdrew,I was told on March 6th https://t.co/AVVhmUXmvw +05/11/2018,Actors,@sarahdrew,No. But Bill Harper did a gorgeous job with this episode! I think it is a beautiful tribute to April. https://t.co/U1qAlJziaP +06/29/2018,Actors,@IamSandraOh,https://t.co/LXGMCZVEBJ +06/27/2018,Actors,@IamSandraOh,My ❤️ 2 LA Ktown . Wish I were there! 🇰🇷! +06/27/2018,Actors,@IamSandraOh,#Koreaworldcup!!! Omg! Calling Dad now!!! +06/27/2018,Actors,@IamSandraOh,Omg 🇰🇷!!!!!! +06/19/2018,Actors,@IamSandraOh,And it’s On! https://t.co/ha4Rpt7eIx https://t.co/FfF5qc9UcX +06/05/2018,Actors,@IamSandraOh,I want to thank All who tuned in for @KillingEve S1 Let’s do it again shall we? Much 💚 s https://t.co/WOf2D0Rqpd +05/27/2018,Actors,@IamSandraOh,https://t.co/XgPpWLCWYT +05/27/2018,Actors,@IamSandraOh,Finale! What a ride! @KillingEve Finale Tonight https://t.co/myuwu9CtGo +05/23/2018,Actors,@IamSandraOh,It was so great to meet & share w/ all these phenomenal women. Thank You! @THR https://t.co/Z6y9kiSnJV +05/20/2018,Actors,@IamSandraOh,Happiness in Windsor https://t.co/DIHEaJr4zA +05/20/2018,Actors,@IamSandraOh,Omg how’s it Ep 7 @KillingEve already? Tonight on @BBCAMERICA https://t.co/OAFRYV8COJ +04/22/2018,Actors,@IamSandraOh,Ep3 @KillingEve 2nite 7/8 pm on @BBCAMERICA I 💚 Bill (David Haig) https://t.co/tqQ3cgRpUi +04/22/2018,Actors,@IamSandraOh,Tonight’s 3rd ep @KillingEve https://t.co/ZUHMPcu1Tw +04/22/2018,Actors,@IamSandraOh,https://t.co/ZUHMPcu1Tw +04/16/2018,Actors,@IamSandraOh,2nd ep @KillingEve asset 💣 It’s tonight @ 8pm @BBCAMERICA https://t.co/ZY3fbiEagZ +04/14/2018,Actors,@IamSandraOh,/w my 2 longtime collaborators Diana Son&Mina Shum. Come see #meditationparkmovie @ aero theatre in SM 2nite 8pm. S… https://t.co/E9EevGQ5uK +04/13/2018,Actors,@IamSandraOh,Hellooo! Guess what? You can see premiere episode of @KillingEve for Freebees! https://t.co/tA8iBblG9E pls check it out +04/06/2018,Actors,@IamSandraOh,"RT @TIME: ""'Killing Eve' isn't your average mystery series. Here’s how it breaks the mold"" https://t.co/UPnBkZJEHS" +04/06/2018,Actors,@IamSandraOh,@ComerJodie @KillingEve @BBCAMERICA - Jode I 💚 u! +04/05/2018,Actors,@IamSandraOh,"RT @voguemagazine: In Killing Eve, @IamSandraOh finally gets the post-Grey's Anatomy role she deserves. https://t.co/RhrqolSC9Z" +04/05/2018,Actors,@IamSandraOh,"RT @rachelnpr: Had the most lovely conversation with @IamSandraOh who told me that since she left #GreysAnatomy 4 yrs ago she has been ""act…" +04/05/2018,Actors,@IamSandraOh,Heading 2 chat all about #KillingEve w/ @klgandhoda..I think I’ll be on in 25 mins - #whirlwindtour +04/03/2018,Actors,@IamSandraOh,Asset 💣-ing Yous! @KillingEve @BBCAMERICA April 8 8pm. (This was one of favorite scs) https://t.co/WZepcTLrZG +03/30/2018,Actors,@IamSandraOh,Hey All so I’ve got a bunch of “assets” I’m gonna drop all over yous in next weeks b4 @KillingEve April 8 BBC Ameri… https://t.co/SuxgybUQez +03/20/2018,Actors,@IamSandraOh,So excited Killing Eve is coming soon! And going places! https://t.co/Ar4N1IINPH +03/20/2018,Actors,@IamSandraOh,Killing Eve’s 2nd trailer https://t.co/GeFd91igsl +03/10/2018,Actors,@IamSandraOh,Meditation Park opening in theatres in 🇨🇦 Netflix 🇺🇸🇬🇧🇦🇺 Congratulations & 💕 2 Mina Shum longtime collaborator. Sti… https://t.co/bFngFWByof +03/08/2018,Actors,@IamSandraOh,"🇨🇦 ! My ♥️ & Soul - Meditation Park is premiering in the following theatres - Van : 5th Ave, TO : Varsity, Ottawa… https://t.co/wF7Dcsad81" +03/05/2018,Actors,@IamSandraOh,"Mina made a beautiful love letter to Mothers from another generation, another culture who are continuing 2 find themselves. ❤️❤️❤️" +03/05/2018,Actors,@IamSandraOh,If you’re Not Asian but still have a mom- watch this film w/ her! +03/05/2018,Actors,@IamSandraOh,"Seriously, if you’re Asian and you have a mom (I know you do) - watch this with her! https://t.co/yHeaDxZISQ" +03/05/2018,Actors,@IamSandraOh,My film Meditation Park is coming out this Friday March 9th on Netflix! https://t.co/PPzMvmDKG5 +01/21/2018,Actors,@IamSandraOh,@womensmarch @sundancefest w/ PhoebeWallerBridge & @jodiemcomer. Beautiful Snowy Thoughtful Empowering day.… https://t.co/fXimYvKwRH +01/12/2018,Actors,@IamSandraOh,Oh it must b the new show coming this spring! @KillingEve I’m so excited to share w/ All. @BBCAMERICA More to come! https://t.co/luI0L2Lkox +01/12/2018,Actors,@IamSandraOh,Hey what’s this lady talking about? @KillingEve https://t.co/u9WcOukfWZ +11/23/2017,Actors,@IamSandraOh,Another win @WindowHorses https://t.co/pI7tbRARKJ +11/18/2017,Actors,@IamSandraOh,@WindowHorses me & AMF https://t.co/Sdcckjhscx https://t.co/D5OYYtMsio +11/15/2017,Actors,@IamSandraOh,Btw ❤️ fr 🇷🇴 shooting final block @KillingEve ! @BBCAMERICA next spring https://t.co/HFrvDATSuc +11/15/2017,Actors,@IamSandraOh,@WindowHorses is screening @34th st cinema NYC! Till nov16th check it out on the big screen 📺 +11/15/2017,Actors,@IamSandraOh,@WindowHorses fans! https://t.co/ArioiJoBBv +11/10/2017,Actors,@IamSandraOh,@WindowHorses @nytimes critics pick! https://t.co/mXi3ut9pYz +09/29/2017,Actors,@IamSandraOh,Congrats #MeditationPark opening @VIFFest last night! ❤️2 cast & @MinaShum 💚fr across the 🌊 https://t.co/mvDMs2aBLv +09/21/2017,Actors,@IamSandraOh,"W/ @LukeJennings1 & @AkramKhanLive #ENBGiselle This powerful reimagined work is manna. Bravo Company, @TamaraRojo1… https://t.co/NFrqVKVxLD" +07/05/2017,Actors,@IamSandraOh,Happy 😊 4th of July to All! 🇺🇸 +06/13/2017,Actors,@IamSandraOh,Working again! https://t.co/XRZ5nVqlBw +05/04/2017,Actors,@IamSandraOh,"Our usual Musso's outing, me Kev Joan & Tony. So much love https://t.co/A5DzaCgIHJ" +04/14/2017,Actors,@IamSandraOh,Maya!! Thank U! Hope u can make the next play. #wildgoosedreams @PublicTheaterNY txs avail 4 weekend! https://t.co/AXXR6TyRBr +04/14/2017,Actors,@IamSandraOh,Amazing cast #WildGooseDreams txs only 15$! Still avail! @PublicTheaterNY see you 2nite/2morrow only https://t.co/z0TN9Gk0Mq +04/14/2017,Actors,@IamSandraOh,Me & wonderful James Yaegashi writ:Hansol Jung & dir:Leigh Silverman in back. Wild Goose Dreams @PublicTheaterNY tx… https://t.co/CZ405NvJCU +04/14/2017,Actors,@IamSandraOh,2 All in the NYC area! Come see #WildGooseDreams @PublicTheaterNY txs still avail! https://t.co/s65ekoTUGM +04/07/2017,Actors,@IamSandraOh,In tech @PublicTheaterNY 4 #publicstudio #WildGooseDreams 1st performance 2nite ack!! https://t.co/teo9rmJIU5 +03/10/2017,Actors,@IamSandraOh,Wassup TO! @WindowHorses is premiering there too https://t.co/KysyC5RCjH +03/10/2017,Actors,@IamSandraOh,https://t.co/Jd2hBPYgB3 +03/10/2017,Actors,@IamSandraOh,"@WindowHorses Canadian premiere today! Cineplex Odeon International Village Cinemas in Van, check it out! https://t.co/82ZyUvxCKq" +03/09/2017,Actors,@IamSandraOh,"I yelled ""Say Vagina!"" https://t.co/vtmi56ebLs" +03/09/2017,Actors,@IamSandraOh,Making film w/ amazing women on #InternationalWomensDay can't think of a better way to spend my day! https://t.co/6wSeERErof +03/08/2017,Actors,@IamSandraOh,"In a packed van w/ cast of Meditation Park. Cheng Pei Pei, @tzima8 Ma, @zaksantiago https://t.co/42WpuSjezD" +03/06/2017,Actors,@IamSandraOh,"Also @WindowHorses march 10 international village vancouver +march 9 preview with amf at bell lightbox" +03/06/2017,Actors,@IamSandraOh,American Crime starts march 12th! Check it out Sunday https://t.co/xeLj2YZ2YB +03/06/2017,Actors,@IamSandraOh,https://t.co/F2wmyXo0Dm +03/03/2017,Actors,@IamSandraOh,"Catfight comes out in theaters, VOD and on @itunes today 3/3! #catfightmovie" +03/03/2017,Actors,@IamSandraOh,#CatfightMovie premiere w/ beautiful @AnneHeche @AliciaSilv last night https://t.co/nYnQarGRu3 +03/03/2017,Actors,@IamSandraOh,Me Anne Alicia & Gigi (producer) Catfight women @ premiere. That's director Onur's arm https://t.co/geC0nVK3BI +03/03/2017,Actors,@IamSandraOh,On my way 2 #catfightmovie premiere @cinefamily now! https://t.co/iBO9eU2qbM +03/03/2017,Actors,@IamSandraOh,https://t.co/0Ata5kj2uc +03/02/2017,Actors,@IamSandraOh,Woo hoo @nytimes critics pic! https://t.co/jTIg8yUztp +03/01/2017,Actors,@IamSandraOh,@AmericanCrimeTV airing soon! March 12th 9/10 pm. Please watch! +03/01/2017,Actors,@IamSandraOh,1st day of shooting on Meditation Park w/ Mina Shum & Peter Wunstorf 23 yrs after Double Happiness!!! https://t.co/Hcs16jGDZr +02/22/2017,Actors,@IamSandraOh,@adamcarolla fans! I'll b on 2nite w/ @AnneHeche 4 @catfightmovie! 9pm I think? +02/22/2017,Actors,@IamSandraOh,#catfightmovie ! https://t.co/O9qAvJswau +02/02/2017,Actors,@IamSandraOh,Walking 2 theatre @WindowHorses premiere SB film fest! https://t.co/kw1sFS3y9e +02/02/2017,Actors,@IamSandraOh,"@margopossible Thank u Margo, you're the best friend imaginable love San" +02/02/2017,Actors,@IamSandraOh,RT @margopossible: Beautiful. Necessary. Open your mind. Open your heart. See others for their common humanity. https://t.co/illHb5Yn2I Tha… +01/28/2017,Actors,@IamSandraOh,Dearest All previous tweet is regarding @WindowHorses is coming to Santa Barbara Film Festival @sbiff this week!! +01/28/2017,Actors,@IamSandraOh,More than ever we need these stories to spread light over the darkness of policies than ban our Muslim brothers and sisters from our shores. +01/28/2017,Actors,@IamSandraOh,@WindowHorses is about a Chinese-Iranian-Canadian young woman who loves poetry. +01/28/2017,Actors,@IamSandraOh,@WindowHorses is coming 2 Santa Barbara FF this week! https://t.co/Hjnpt0cWzn +01/28/2017,Actors,@IamSandraOh,Check it out folks I've got some work coming out soon https://t.co/pfQiQYwney +01/28/2017,Actors,@IamSandraOh,It's coming! https://t.co/7eOYLsf4eV +01/22/2017,Actors,@IamSandraOh,Amazing 2 spend the day w/ fellow Angelenos & All around the world Letting our Voices Be Heard! Let us Be the Change https://t.co/94cprIEY4Z +01/21/2017,Actors,@IamSandraOh,W/ Susan & Laurs by City Hall. Beautiful Day! Peaceful Rally https://t.co/wCwPf6MUSG +01/21/2017,Actors,@IamSandraOh,W/ friend at the march https://t.co/mvC5yfAwwO +01/21/2017,Actors,@IamSandraOh,Trying to get to @WomenMarchPDX LA! It's tough cos so many of us!!!! https://t.co/z8IcJdxTZO +01/20/2017,Actors,@IamSandraOh,@HillaryClinton - that's Soul Power right there How can we stand w/ grace and dignity by those we disagree? Watch @POTUS44 @HillaryClinton +01/20/2017,Actors,@IamSandraOh,"Thank you to my president & First Lady #BarackObama & #MichelleObama, continuing to lead w/ the highest human qualities. We were blessed." +01/20/2017,Actors,@IamSandraOh,@TheRoot on set @GreysABC doing a scene w/ eric Stoltz. We cried then and we cry now. +01/20/2017,Actors,@IamSandraOh,I'm watching (w/ sound off) cos Im trying to hold what devastates me w/ calm and the strength of an open heart. It's raining here in LA 😓 +01/20/2017,Actors,@IamSandraOh,#ThankYouObama +01/20/2017,Actors,@IamSandraOh,"RT @POTUS: I won't stop; I'll be right there with you as a citizen, inspired by your voices of truth and justice, good humor, and love." +01/20/2017,Actors,@IamSandraOh,"RT @POTUS: I'm still asking you to believe - not in my ability to bring about change, but in yours. I believe in change because I believe i…" +12/16/2016,Actors,@IamSandraOh,"Hey All - I'm on @KPCC at 7 tonight. The awesome James Kim asked me a bunch of ??about the Joy Luck Club, remember that one? Safe in the ☔️" +11/19/2016,Actors,@IamSandraOh,@HamiltonMusical #ImmigrantsWeGettheJobDone from a fellow immigrant 2x - Korean & Canadian +11/19/2016,Actors,@IamSandraOh,The new president elect is telling us what he thinks of our nations great artists @HamiltonMusical. More than ever we need to make Art. +11/19/2016,Actors,@IamSandraOh,@HamiltonMusical cast - This is the Power of Artists. Most wise & brave. Thank U. I stand w/ u & will try to do the same. +11/19/2016,Actors,@IamSandraOh,"RT @HamiltonMusical: Tonight, VP-Elect Mike Pence attended #HamiltonBway. After the show, @BrandonVDixon delivered the following statement…" +11/03/2016,Actors,@IamSandraOh,@CAAM panel last night w/ Grace Lee Craig Robinson Karen Horne Rashad Raisani Richard Lui. https://t.co/G55VJriSii +09/27/2016,Actors,@IamSandraOh,@WindowHorses @CIFF & VIFF. https://t.co/TVQEBJ9CV4 +09/25/2016,Actors,@IamSandraOh,RT @sleepydogfilms: 5 more days to vote for @WindowHorses for #mustseeBC films #VIFF2016 https://t.co/JUh2R6XBXv +09/25/2016,Actors,@IamSandraOh,Dear All pls vote for Window Horses @VIFF https://t.co/BycRYA23kY +09/21/2016,Actors,@IamSandraOh,Please come! Vote too! https://t.co/J1Fj75PaEb +09/21/2016,Actors,@IamSandraOh,Please come! https://t.co/9qlc1V41uf +09/21/2016,Actors,@IamSandraOh,The ByTowne?! Fantastic I saw so many films there in my youth - wassup hometown Ottawa!! https://t.co/LR3zkSKxNC +09/21/2016,Actors,@IamSandraOh,Please vote 4 our little film! https://t.co/cXDHJeR4lO +09/20/2016,Actors,@IamSandraOh,"RT @WindowHorses: Please vote for our little film about love of family, poetry, history, and culture! https://t.co/bVIT6ZTMal #VIFF https:/…" +09/20/2016,Actors,@IamSandraOh,RT @sleepydogfilms: There's a great lineup of #mustseeBC films at VIFF 2016. keep voting for @windowhorses ! https://t.co/JUh2R6XBXv +09/19/2016,Actors,@IamSandraOh,Seriously seeing 4 fellow Asian peeps up on that stage fills me with hope and just F yeah!! +09/19/2016,Actors,@IamSandraOh,Omg More Asians on the Emmy stage! Unbelievable! Yay @parkrandall & @ConstanceWu !! +09/19/2016,Actors,@IamSandraOh,Woo hoo Alan Yang and Aziz Ansari Emmy win4 @MasterofNone! You tell it Alan! Go AA brother & sisters +09/13/2016,Actors,@IamSandraOh,Me & Don looking perplexed. https://t.co/LeK513n2kX +09/13/2016,Actors,@IamSandraOh,Meeting up w/ some lovely audience members. https://t.co/JS2okoegjg +09/13/2016,Actors,@IamSandraOh,Me & Don McKellar & AMF watching the screening of @WindowHorses https://t.co/TY2wQaxMpg +09/13/2016,Actors,@IamSandraOh,Finishing of @TIFF_NET w/ Classic Poutine! https://t.co/q6KT8274mZ +09/13/2016,Actors,@IamSandraOh,Congrats to the #tiff_net #birks Canadian women of film https://t.co/m6NJmRpLpm +09/12/2016,Actors,@IamSandraOh,Quick coffee before #catfightfilm #tiff_net dream team panel @anneheche @otukel https://t.co/FXqqC2UPDs +09/12/2016,Actors,@IamSandraOh,Getting ready with my dream team! #tiff_net @kimikobeauty @Lisa_Vella ashmokma https://t.co/WRAGOGaln1 +09/11/2016,Actors,@IamSandraOh,Introducing @WindowHorses ! The screening went well thanks all for coming https://t.co/6VGMbp24zo +09/11/2016,Actors,@IamSandraOh,AMF & I heading to the @WindowHorses premiere @TIFF_NET https://t.co/MIGSe2JfBe +09/11/2016,Actors,@IamSandraOh,A little late but here r some pics from #catfightfilm premiere- it was crazy and super fun! https://t.co/TTbzPnUc5s +09/10/2016,Actors,@IamSandraOh,I promise to send out pics from the Catfight premiere! +09/10/2016,Actors,@IamSandraOh,We're so in sync hour outfits complimented each other so well! Can't wait for the shots to come out +09/10/2016,Actors,@IamSandraOh,Some fave shots from our #catfightfilm press day @TIFF_NET of me & anne https://t.co/UpSK7VbjuH +09/09/2016,Actors,@IamSandraOh,Photobombing @AnneHeche !! Love that girl https://t.co/WUuB9Pinmh +09/09/2016,Actors,@IamSandraOh,I'll try to send out missives all weekend for #catfightfilm & @WindowHorses +09/09/2016,Actors,@IamSandraOh,In the car on first press day @TIFF_NET #catfightfilm +09/09/2016,Actors,@IamSandraOh,https://t.co/9cbPtvA62Y +09/09/2016,Actors,@IamSandraOh,https://t.co/zE9oFtZnoO +08/21/2016,Actors,@IamSandraOh,Thank u #TragicallyHip 4 being the soundtrack of my youth. #GordDownie the great artist 4 holding us All. #haveagoodlife +08/03/2016,Actors,@IamSandraOh,Oh and that other pic was of the gorgeous @AliciaSilv & @AnneHeche Abe moi!! Go cast of Catfight rrrrowwrr!! +08/03/2016,Actors,@IamSandraOh,And @WindowHorses has a Special Screening 2 @TIFF_NET !! Me & AMF signing away!! https://t.co/2RAFtUPdzg +08/03/2016,Actors,@IamSandraOh,Hello Catfight! Special screening @TIFF_NET https://t.co/bf65GktDWB https://t.co/mXc5BfJNHj +07/21/2016,Actors,@IamSandraOh,Forget it! The Best Bday w/ cast of @HamiltonMusical thank you @Lin_Manuel https://t.co/PjqIgYx7sP +07/02/2016,Actors,@IamSandraOh,Happy Canada Day All!!❤️❤️❤️🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦 https://t.co/oamp5XYbSr +06/22/2016,Actors,@IamSandraOh,Dearest All - I appreciate the fans & just 2 let u know @iamsandraohinsta is my official Instagram acct. +06/22/2016,Actors,@IamSandraOh,Testing from home office https://t.co/yMq9lebHUJ +06/10/2016,Actors,@IamSandraOh,"On the Bus 2 Marrakech w/ the company! Stan,EJ, Ayo, Rey, Christine, Yara & me https://t.co/JE9Y2cye4L" +06/10/2016,Actors,@IamSandraOh,Wild Goose Dreams fearless playwright & terrific singer/songwriter Hansol Jung & = terrific actor & Singer Tim Kang https://t.co/cutqIzQZ11 +06/10/2016,Actors,@IamSandraOh,More Wild Goose Dreams rehearsal. I really hope to do a production!! Here Paul Castles our composer https://t.co/4G83O7v9vF +06/10/2016,Actors,@IamSandraOh,Here's the whole company! @sundancelabs. It was truly one of the Best creative experiences I've ever had. Thank U! https://t.co/VOJFEoskNx +06/10/2016,Actors,@IamSandraOh,Rehearsing Hansol Jung's Wild Goose Dreams @sundancelabs in Morocco. Yes I'm loving the theatre roots my friends... https://t.co/1Nk8ietIdw +06/10/2016,Actors,@IamSandraOh,"Btw been @sundancelabs MENA in Morocco all last mo. Ignacia,Indhu Debra & me. Love the Colour! https://t.co/4Dxs5hDbp6" +06/10/2016,Actors,@IamSandraOh,So much love 2 @caterinatweets Yay Canada. But he's Myyy Tv hubby! 😉. 💕 2 Owen & Amelia https://t.co/Ilk8UeC4l2 +06/10/2016,Actors,@IamSandraOh,"And wait - my TV husband has a new TV wife?? Xqueez me? I don't think so, Ha! Owen what r u thinking?? https://t.co/qfxwyKCbQV" +06/10/2016,Actors,@IamSandraOh,Hangin w/ the Usual Suspects @TonyTphelan & @TheRealKMcKidd last nite https://t.co/ga0HPvB5hZ +05/07/2016,Actors,@IamSandraOh,"@windowhorses is in the annecy int'l animation festival! it's our world premier! #annecyfestival +Go Window Horses!!" +04/29/2016,Actors,@IamSandraOh,Chillin out w/ Ray & Sola - we're watching @GreysABC & Tuscan Sun ha! It's closing wknd Office Hour. Home stretch! https://t.co/hmtPDC3TJA +04/24/2016,Actors,@IamSandraOh,RT @TheRealKMcKidd: You alls should .. Cos it's amazing - I can attest to that !:) https://t.co/dm15515B2a +04/23/2016,Actors,@IamSandraOh,Come 2 the theatre coz Office Hour @SouthCoastRep exists! Where else R we? Share! 🙋🏻 +04/23/2016,Actors,@IamSandraOh,"I'm grateful the LA & NY times R writing abt this. We carry this in our ❤️s every day. Know This: I see You, I am You. Come 2 the theatre!" +04/23/2016,Actors,@IamSandraOh,READ THIS: https://t.co/qvHDQbyMco +04/20/2016,Actors,@IamSandraOh,And friggin come see me and Ray Lee in Julia Cho's play Office Hour!!! @SouthCoastRep !! +04/20/2016,Actors,@IamSandraOh,Our Own stories that Don't include us?send a msg: Tank those effen films. It's in our power. Find ourselves in Ourselves. +04/20/2016,Actors,@IamSandraOh,U know what I do about it? I come 2 the theatre and give my heart & soul. Come see Office Hour @SouthCoastRep This is where we mofo R! +04/20/2016,Actors,@IamSandraOh,READ THIS: https://t.co/BoNNqcB2AC +04/20/2016,Actors,@IamSandraOh,My amazing cast mates Ray Lee @BrillCorey @CrownLikeHoney Sola Bamis See us in Office Hour! https://t.co/16XUdQr6UG https://t.co/OsgpsOJXG4 +04/17/2016,Actors,@IamSandraOh,The beautiful Sola Bamis in our dressing room b4 2nites show of Office Hour @SouthCoastRep https://t.co/A7RyB147H7 +04/17/2016,Actors,@IamSandraOh,One of the best things about Opening Night - (yesterday I know) all the Flowers. Thank u I love them https://t.co/v35OD0YQMy +04/16/2016,Actors,@IamSandraOh,Notes b4 Opening Nite 4 Office Hour @SouthCoastRep We're looking @ Julia Cho the playwright who laying there... https://t.co/MehWAKYzBc +04/15/2016,Actors,@IamSandraOh,My amazing cast mates Ray Lee @BrillCorey @CrownLikeHoney Sola Bamis See us in Office Hour! https://t.co/16XUdQr6UG https://t.co/WTpwm2x1pE +04/15/2016,Actors,@IamSandraOh,Me & Ray Lee & playwright Julia Cho sneaking in backgrd ha. Opening Night of Office Hour @SouthCoastRep 2nite! Ack!! https://t.co/qjBZZjOyh2 +04/08/2016,Actors,@IamSandraOh,Come see my fanTastic acting partner Raymond Lee on stage. https://t.co/16XUdQr6UG https://t.co/mjzr2otGBm +04/07/2016,Actors,@IamSandraOh,My onstage entrance! (I don't do the hands up) https://t.co/16XUdQr6UG Come check it out. https://t.co/Ces68lEYtw +04/07/2016,Actors,@IamSandraOh,"Dearest All (hey AA & KAs!) watch this, tell me what u think. https://t.co/PVmZghK5sA" +04/06/2016,Actors,@IamSandraOh,On stage rehearsing Office Hour @SouthCoastRep w/ @BrillCorey & @CrownLikeHoney https://t.co/16XUdQr6UG https://t.co/Okt2UVkRbt +03/12/2016,Actors,@IamSandraOh,RT @JustinTrudeau: Nos artistes sont des atouts pour le Canada aux É.-U. et dans le monde entier. https://t.co/WnNv2MEiUO +03/12/2016,Actors,@IamSandraOh,RT @JustinTrudeau: Our talented artists are a credit to Canada in the US & around the world. #StateDinner https://t.co/IWyBosGjCn +03/11/2016,Actors,@IamSandraOh,In the elevator on way back 2 hotel from White House State dinner honoring the Canadian PM @JustinTrudeau. https://t.co/Ghd7w6Cykv +03/11/2016,Actors,@IamSandraOh,Shaking hands w/ @BarackObama @POTUS. Canada US love https://t.co/Vp31QtCJow +03/11/2016,Actors,@IamSandraOh,@WhiteHouse w/ @JustinTrudeau and lovely Malia Obama. So proud of our Canadian PM & 2 b Canadian! https://t.co/5OJLfdNAHC +01/22/2016,Actors,@IamSandraOh,Omg it's Cristina Teddy & Owen reunion! (And Tony) Look how handsome and brooding Kev is! Happy New Year All! https://t.co/AHnUIaEpq8 +11/16/2015,Actors,@IamSandraOh,That was a pic of me and the wonderful Trudy Goodman & Jack Kornfield @InsightLA 's Joyful Spirit ystrdy +11/16/2015,Actors,@IamSandraOh,https://t.co/s39W2zkjDf +11/10/2015,Actors,@IamSandraOh,"RT @InsightLA: ILA in the LA TImes! Check out the article on the ""Pioneers of Mindfulness"" and ILA's upcoming Nov. 15th benefit. http://t.c…" +11/10/2015,Actors,@IamSandraOh,RT @DaphneZuniga: Join gr8t teachers! @InsightLA @TaraBrach @JackKornfield @BabaRamDass @RepTimRyan #josephgoldstein #jonkabatzin https://t… +11/10/2015,Actors,@IamSandraOh,Nov.15th: A Meeting of the Mindful https://t.co/0pvOgA7sLV via @HPLifestyle +11/06/2015,Actors,@IamSandraOh,"Some gorgeous Asian Canadian artists! Me, Amf & Mina Shum. That's alot of collaboration in 1 pic. https://t.co/tIFD9rf2dp" +11/06/2015,Actors,@IamSandraOh,So excited 2b hosting Living w/ a Joyful Spirit & Wise Heart nxt Sunday Nov 15th! https://t.co/tTv0RNlNPv +10/20/2015,Actors,@IamSandraOh,Another reminder b4 I go silent 4 10 days! Come Join! https://t.co/2YacrVp6DN +10/19/2015,Actors,@IamSandraOh,Here's the link to #ShittyBoyfriends https://t.co/22BKll0IgV check it out and dump ur shitty boyfriend! +10/19/2015,Actors,@IamSandraOh,Oh and I'm in a show! #ShittyBoyfriends on @Refinery29 from @LisaKudrow & @danbucatinsky (love) check it out! +10/19/2015,Actors,@IamSandraOh,John Oliver @lastweektonight brilliant : https://t.co/bhaVwjufoc Vote Canada! +10/17/2015,Actors,@IamSandraOh,"1 way 2 peace in mind/heart, I invite u: http://t.co/2YacrVp6DN" +10/17/2015,Actors,@IamSandraOh,How? How? I don't know what it is yet. I call on all AA artists to forge a new path. I am with you. +10/17/2015,Actors,@IamSandraOh,You guys know I like never tweet but I'm just so heartbroken over what is still not changing. I'm trying 2 find a way outside the system. +10/17/2015,Actors,@IamSandraOh,"Dearest all esp AA artists, who's tired of it? Who wants to change how we are seen? How do we change how we see ourselves? That's the key." +10/17/2015,Actors,@IamSandraOh,Thousands Protest Choice of White Actress for ‘Pan’s’ Tiger Lily http://t.co/AtYhU2EzwC via @Variety +10/17/2015,Actors,@IamSandraOh,Dear all esp AAs: Ridley Scott accused of 'whitewashing' Asian roles in The Martian http://t.co/p6nAcYOD3y - Time 4 Change +09/28/2015,Actors,@IamSandraOh,@lifeisbeautiful @kendricklamar http://t.co/kUY9qaAyqa +09/10/2015,Actors,@IamSandraOh,Hey All check out #BriefButSpectacular - take on mindfulness & meditation. Who all here meditates? What do u do 2 try 2 b mindful? +08/28/2015,Actors,@IamSandraOh,SRB!!! Improv ruled my life and I'm forever grateful for it. Thx @CanadianImprov & mrs TG & Winney & all teammates. http://t.co/MLp9BlRZhm +08/28/2015,Actors,@IamSandraOh,Still friends w/ all the girls I met. Love 2 Margo Marianne Allison Christine & Jen! http://t.co/aDzOSCVxt3 +08/28/2015,Actors,@IamSandraOh,Finally moved mum&dad out West. Had to say farewell to a few memorable places; http://t.co/4iVd0rjjLq +08/22/2015,Actors,@IamSandraOh,@TirganFestival in TO w/ ann marie 4 #windowhorses. Previewed new clips! It's coming along! http://t.co/aHCvq4ZrzT +08/18/2015,Actors,@IamSandraOh,me & @TheRealKMcKidd at his belated bday dinner. May u catch Brave New Waves all this year dearest friend. http://t.co/RS05NyOROe +05/18/2015,Actors,@IamSandraOh,Shout out 2 John Cho who I just heard on NPRs the World. Much love to all AA brothers! U sexy bunch of men! Hey John! +05/07/2015,Actors,@IamSandraOh,Sending Mucho Amour 2 all the KAs out there! http://t.co/L7SdOpmTqd +05/03/2015,Actors,@IamSandraOh,"So excited 2 receive @KA_Story Trailblazer Award 5.05.15 +Pls join! http://t.co/tmRXU2xMly" +05/03/2015,Actors,@IamSandraOh,Why r all the pics of me&Kev so dark? Sorry! My ancient phone. Love and hellos to All from the Valley http://t.co/MJN7WsOkvX +04/15/2015,Actors,@IamSandraOh,Who knows these mugs? Any Arli$$ fans out there? Out 2nite w/Michael Boatman&Jim Turner. I friggin love these guys! http://t.co/Jk0UqNUvWu +04/10/2015,Actors,@IamSandraOh,@TheRealKMcKidd @shondarhimes @margopossible Wow what do u think? Does it hold up? +04/10/2015,Actors,@IamSandraOh,"@TheRealKMcKidd @GreysABC, Kev tell that Hanley that his mug is as ugly as ever and my heart misses him." +07/01/2018,Actors,@SaraRamirez,Can’t think of a better way 2 spend the last night of #PrideMonth !Thank you 2 the entire cast & crew of… https://t.co/5qAl1JJZag +06/30/2018,Actors,@SaraRamirez,I’ve heard a lot about this musical so I came to see for myself. #JaggedLittlePill #HappyPrideMonth #HappyPride… https://t.co/LrKo9lOvs3 +06/30/2018,Actors,@SaraRamirez,@StevenCanals @PoseOnFX @SilasHoward8 @dyllonburnside @RyanJamaal @MooreIndya @MjRodriguez7 @angelbcuriel YAAAAAAAS… https://t.co/eY0aCKAmtl +06/30/2018,Actors,@SaraRamirez,RT @SRamirezVillage: PHOTO | Sara out in #Boston at #FamiliesBelongTogetherMarch https://t.co/bxsd7wYq8l +06/30/2018,Actors,@SaraRamirez,@everythingloria @OneDayAtATime @NickEndres @haneefahwood @itisIjudyreyes @MackPhillips @SantinaMuha Love love love… https://t.co/NHqpWeVj7D +06/30/2018,Actors,@SaraRamirez,@SRamirezVillage Graciela is a BADASS and I’m so glad we got to meet. Thank you @CoolSciDrGrace for all you are and all you do! 👊🏽✊🏽🙏🏽 +06/30/2018,Actors,@SaraRamirez,@SRamirezVillage Here’s the LINK YALL: DONATE HERE: https://t.co/khaxlrq3Qv +06/30/2018,Actors,@SaraRamirez,Thank you @MarchForwardMA @MassJwJ @ChelseaCollab @mataharijustice @Join_SIM @MuslimJustice #Boston Rally Against F… https://t.co/9TOf6ADyen +06/30/2018,Actors,@SaraRamirez,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Actors,@SaraRamirez,@Elly__Day Thank YOU. 👊🏽✊🏽🙏🏽 +06/30/2018,Actors,@SaraRamirez,At The Commons in #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/qpUkdqCtXD +06/30/2018,Actors,@SaraRamirez,Heading to the the Commons #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/gG1xvp7uKJ +06/30/2018,Actors,@SaraRamirez,Heading to the State House #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/IACTZBk1kD +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/8GXr5uKylN +06/30/2018,Actors,@SaraRamirez,Here with @conniebritton in #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/sf9fyXKtPa +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/7kB82Cjglh +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/b5VD7oV7I2 +06/30/2018,Actors,@SaraRamirez,Here with @SenWarren in Boston #FamiliesBelongTogetherMarch https://t.co/tjkY7P8V1Q +06/30/2018,Actors,@SaraRamirez,Here. Now. Boston. #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/4bfJqoiIli +06/30/2018,Actors,@SaraRamirez,@CynthiaEriVo @ShoshanaBean @THR Hey @CynthiaEriVo !!!! 💜💜💜 +06/30/2018,Actors,@SaraRamirez,@ShoshanaBean @THR @CynthiaEriVo Sending love back @ShoshanaBean !! It’s been TOO LONG!!! Rock on like I know you are and will!! 😘 +06/30/2018,Actors,@SaraRamirez,"RT @ACLU: If you are attending a #FamiliesBelongTogether rally today, know your rights. https://t.co/7eMn0mwdkH" +06/30/2018,Actors,@SaraRamirez,@baileycoleman15 @TheEllenShow @MsSarahPaulson @cleaduvall @cameronesposito @harto Im no fashionista or lifestyle guru but YES PLEASE. 😊 +06/29/2018,Actors,@SaraRamirez,@TessaThompson_x THIS. Right on @TessaThompson_x RIGHT. ON. #PrideHasNoEnd 🌈 +06/29/2018,Actors,@SaraRamirez,@THR @CynthiaEriVo @ShoshanaBean Omg THESE POWERHOUSE WOMEN!!!! Gonna bring the house up and down and all around.... 🙌🏽🙌🏽🙌🏽😍 +06/29/2018,Actors,@SaraRamirez,@bunzy55 What up @bunzy55 !!!! I cannot wait for our paths to cross again! You’re the best! 👊🏽✊🏽🌈 +06/29/2018,Actors,@SaraRamirez,"RT @dj_diabeatic: Hi all! Even if you can't make it to a #FamiliesBelongTogether event in person on Saturday, here's a thread of great artw…" +06/29/2018,Actors,@SaraRamirez,"AS IN: TOMORROW +AS IN: BOSTON +Come thru y’all" +06/29/2018,Actors,@SaraRamirez,June 30th I’ll be marching for #FamiliesBelongTogether! Find your local march here: https://t.co/wYuWBoDs72… https://t.co/VESjXbKNHw +06/29/2018,Actors,@SaraRamirez,@VibeMagazine #BisexualPlus #Bisexual #Pansexual #Fluid #NonMonosexual #Queer #FreeAssMothaFucka Lots of ways to pu… https://t.co/Yw0ZNt7QWX +06/29/2018,Actors,@SaraRamirez,@StillBisexual 👊🏽❤️💜💙 +06/29/2018,Actors,@SaraRamirez,@JennicetG 👊🏽✊🏽🙏🏽 +06/29/2018,Actors,@SaraRamirez,"@thefayth @JanelleMonae @TessaThompson_x Yes yes yes yes!!!! Your life, your work, your truth is a huge part of why… https://t.co/RotLEfzHIH" +06/29/2018,Actors,@SaraRamirez,@marquisevilson My friend thank you so much!!! I am grateful to live in this time with you. Rock on @marquisevilson and know I’m with you! 💜 +06/29/2018,Actors,@SaraRamirez,@JennicetG Love you my friend and legendary fire starter of today @JennicetG !!!! Proud to stand with you! 🌈💜💋 +06/29/2018,Actors,@SaraRamirez,"ALERT THE #BILLUMINATI STAT. +Sending love to @TessaThompson_x always. https://t.co/ayYYMxLz9c" +06/29/2018,Actors,@SaraRamirez,@SRamirezVillage Omg hahahahahahahahaha 💖💜💙 https://t.co/VteesmRlvM +06/29/2018,Actors,@SaraRamirez,@translatinbamby As are you my beautiful fierce friend @translatinbamby !! YOU helped pave the way along with so ma… https://t.co/GssM5NrnX4 +06/29/2018,Actors,@SaraRamirez,@glaad @TheEllenShow I remember being a guest on @TheEllenShow many moons ago.....I wonder if I’ll ever be asked ba… https://t.co/uLaxPxh0Wl +06/29/2018,Actors,@SaraRamirez,Here is my FULL INTRO SPEECH at the @VH1 #TRAILBLAZERSHONORS AWARD SHOW that was edited for time. https://t.co/16Br9HJVWm +06/29/2018,Actors,@SaraRamirez,"RT @tywrent: a letter to young LGBTQ+ people, from your favorite nonbinary camp counselor, aka me https://t.co/VoaGbmhziJ" +06/29/2018,Actors,@SaraRamirez,@gabrielarkles @RaquelWillis_ @janetmock @rgay @daisyhernandez @Moore_Darnell @chasestrangio @talilalewis @phatpooj… https://t.co/v8I1IIqCPb +06/29/2018,Actors,@SaraRamirez,RT @ACLU: The Trump administration should focus its enormous resources on reuniting the thousands of children whom it cruelly ripped from t… +06/29/2018,Actors,@SaraRamirez,"@tyleroakley GSA=Gender & Sexuality Alliance. Start one.Challenge what’s already out there,evolve existing coalitio… https://t.co/Y9hH8RNY7R" +06/29/2018,Actors,@SaraRamirez,"RT @RaquelWillis_: My new Supremes are... + +@queersocialism +@AshleeMPreston +@IWriteAllDay_ +@ethiopienne +@IamGMJohnson +@Kehlani +@awkward…" +06/29/2018,Actors,@SaraRamirez,@iSmashFizzle I SO hear this. In solidarity with you @iSmashFizzle !! 👊🏽✊🏽💜 +06/29/2018,Actors,@SaraRamirez,"GSA=Gender & Sexuality Alliance. Start one.Challenge what’s already out there,evolve existing coalitions,center the… https://t.co/8b2kCSI3GW" +06/29/2018,Actors,@SaraRamirez,RT @baratunde: Justice Anthony Kennedy jumped out the emergency exit mid-flight. No care for the rest of us stuck on this disintegrating pl… +06/29/2018,Actors,@SaraRamirez,RT @CharlesMBlow: This should not have been a thing! Why was this a thing?! Is this what they mean when they say “civility”? I’m still sooo… +06/29/2018,Actors,@SaraRamirez,RT @sahluwal: Please call the Lancaster Police Department in Pennsylvania & ask them if this is how they treat unarmed & non-violent black… +06/29/2018,Actors,@SaraRamirez,@NCLRights @RaquelWillis_ THIS. 🙌🏽🙌🏽🙌🏽 +06/29/2018,Actors,@SaraRamirez,"RT @NCLRights: Today’s the 49th anniversary of the Stonewall Riots. Led by transwomen of color,the first #Pride was a protest:it has always…" +06/29/2018,Actors,@SaraRamirez,"RT @chasestrangio: Plan, resist, protect yourself. https://t.co/pLVqRORw2Z" +06/29/2018,Actors,@SaraRamirez,RT @kateloh: They got the paper out. https://t.co/sShF1iG3FS +06/29/2018,Actors,@SaraRamirez,RT @BisexualHistory: 28 June 2005: Brenda Howard died. A bi activist in the USA credited with inventing Pride festivals following the Stone… +06/29/2018,Actors,@SaraRamirez,@seriesfuse Thank you and THANK YOU 🙏🏽🌈💖💜💙 +06/29/2018,Actors,@SaraRamirez,"RT @keithboykin: Senator Cory Booker: ""The president of the United States is a subject of an ongoing criminal investigation...that could en…" +06/29/2018,Actors,@SaraRamirez,RT @SarahLerner: .@Ocasio2018: “I’m optimistic because cynicism is a weapon.” https://t.co/Gg8Wwj5Q2U +06/29/2018,Actors,@SaraRamirez,"RT @Kyle_Feldscher: The Times-Picayune kept working while Katrina destroyed their homes. + +WDBJ didn't stop working when two of its reporter…" +06/29/2018,Actors,@SaraRamirez,"RT @capgaznews: Today, the Capital Gazette lost five members of our family. Stories on all five bright, wonderful lives will be included in…" +06/29/2018,Actors,@SaraRamirez,RT @AC360: “I’ve heard that Pres. Trump sent his prayers. I’m not trying to make this political right? But we need more than prayers… I wan… +06/29/2018,Actors,@SaraRamirez,@muxerisa @JennicetG @TransLawCenter @rosariodawson @rosaclemente You got it!! +06/28/2018,Actors,@SaraRamirez,"Tonight, please watch #TrailblazerHonors on @VH1 at 9:30/8:30c. It was a honor to be a part of celebrating some of… https://t.co/ZvlNCmFLSM" +06/27/2018,Actors,@SaraRamirez,"Undocumented artist @em_ulsify is making prints 2 raise $ 4 @Raicestexas, the largest immigrant rights nonprofit in… https://t.co/8urO2H5DYQ" +06/27/2018,Actors,@SaraRamirez,“We meet a machine with a movement.” - @Ocasio2018 See the moment this 28-year-old Latina running her first politic… https://t.co/h5uKp5sIUJ +06/26/2018,Actors,@SaraRamirez,On this momentous occasion here’s a light reminder of how there will always be something problematic in the movemen… https://t.co/v6mBQKYlil +06/26/2018,Actors,@SaraRamirez,"RT @ACLU_NC: Today we were back in court to continue our fight to overturn North Carolina’s anti-LGBT laws. + +Thank you to our brave client…" +06/25/2018,Actors,@SaraRamirez,June 28th in Washington D.C. Taking direct action to demand lawmakers and federal officials #EndFamilyDetention. Wi… https://t.co/X4l2sI5KHj +06/25/2018,Actors,@SaraRamirez,RT @ACLU: Here's what the Trump administration doesn't want you to know about its executive order on family separation: https://t.co/6FuJxN… +06/25/2018,Actors,@SaraRamirez,RT @domesticworkers: Look at this map. Each of these dots represents thousands of people ready to take action on June 30th to keep families… +06/24/2018,Actors,@SaraRamirez,PLEASE watch this powerful speech! @DrHerukhuti #NoHomoNoHetero #PrideRally2018 #PrideMonth #HappyPride #Pride2018… https://t.co/zohkCvwm2K +06/24/2018,Actors,@SaraRamirez,RT @chasestrangio: Happy #Pride! I am on my way to North Carolina for a hearing over HB142 and HB2. I wrote this two years ago on the day o… +06/24/2018,Actors,@SaraRamirez,RT @SRamirezVillage: VIDEO | @SaraRamirez talk about the issues that affect all Americans on the #TrailblazerHonors red carpet! | via VH1 h… +06/24/2018,Actors,@SaraRamirez,"RT @ACLU: The decision in Masterpiece Cakeshop had implications for the entire LGBT community. + +Our expert Chase is joined by Shelby from…" +06/24/2018,Actors,@SaraRamirez,Happy #PrideMarch NYC!!!! #PrideMonth #HappyPride #Pride2018 #NYCPride #LGBTQIA+ https://t.co/nt868ugHMh +06/23/2018,Actors,@SaraRamirez,RT @womensmarch: Please donate and share widely. Support these immigrant led bail funds. #EndFamilyDetention #AbolishICE https://t.co/9DqY3… +06/23/2018,Actors,@SaraRamirez,RT @chasestrangio: RIGHT NOW! Come to 186 Orchard in NYC. Support the @ACLU and get one of these amazing tattoos. https://t.co/jnNmil6XEE +06/23/2018,Actors,@SaraRamirez,"RT @VH1: #TrailblazerHonors First Look: @SaraRamirez urges for change and respect for human rights as she presents the @ACLU. + +See the ins…" +06/22/2018,Actors,@SaraRamirez,Many asking how 2 get #NoBodyIsIllegal Tee I wore @ last night's @VH1 #TrailblazersHonors. Provided by… https://t.co/2MznDhUtiW +06/22/2018,Actors,@SaraRamirez,#HappyPride New York City!!! Some great safety tips from @antiviolence https://t.co/bU1PXghFXd https://t.co/S6kSMtcKlj +06/22/2018,Actors,@SaraRamirez,RT @ACLU: BREAKING: The Supreme Court just issued a groundbreaking victory for Americans’ privacy rights by ruling that police need a warra… +06/22/2018,Actors,@SaraRamirez,RT @SRamirezVillage: VIDEO | @SaraRamirez at the VH1 Trailblazer Honors. She'll be a presenter at the event. | via logotv https://t.co/DHWe… +06/22/2018,Actors,@SaraRamirez,"RT @ABC: Cynthia Nixon to @theView: ""I think we need to abolish ICE."" + +""They have strayed so far from the interests of the American people…" +06/22/2018,Actors,@SaraRamirez,"RT @TheDemCoalition: Think about it: This president built tent cities in order to separate, cage and jail immigrant children faster than ai…" +06/22/2018,Actors,@SaraRamirez,"RT @womensmarch: Imagine being separated from your child, both of you imprisoned for seeking a better life. Are you willing to put your bod…" +06/22/2018,Actors,@SaraRamirez,"RT @votolatino: Shout out to all of our incredible interns that are making our rally in Tornillo, TX this Sunday possible! #NationalSelfieD…" +06/22/2018,Actors,@SaraRamirez,Last night’s @VH1 #TrailblazersHonors = an inspiring & uplifting reminder that we must widen our lens & keep connec… https://t.co/rTc11vfX4a +06/22/2018,Actors,@SaraRamirez,RT @kylegriffin1: Microsoft employees have signed an open letter to CEO Satya Nadella asking him to cancel Microsoft's contracts with ICE t… +06/22/2018,Actors,@SaraRamirez,RT @HuffPost: Military bases in Texas and Arkansas will begin housing tens of thousands of migrant children caught crossing the border ille… +06/22/2018,Actors,@SaraRamirez,RT @chasestrangio: On Monday we will be in court to continue the fight against North Carolina’s anti-trans laws. Learn more here: https://t… +06/22/2018,Actors,@SaraRamirez,RT @ACLU: We're just one of the many groups doing work to #KeepFamiliesTogether! Here's how you can help 14 of our friends doing this work… +06/22/2018,Actors,@SaraRamirez,"RT @ABC: Emotional scenes as migrant mother and son from Guatemala, who were separated crossing the U.S. border, are finally reunited at BW…" +06/22/2018,Actors,@SaraRamirez,RT @ACLU: 🗣 Black. Lives. Matter. https://t.co/HyJF0IzjtD +06/22/2018,Actors,@SaraRamirez,"RT @ACLUTx: While families are separated at the border in Texas, Pittsburg police shot a 17-year-old black kid 3 times in the back. + + @ACL…" +06/22/2018,Actors,@SaraRamirez,"RT @RepJayapal: As I told Politico, I don’t think most Americans understand that a 33-year-old with connections to white supremacists is cr…" +06/22/2018,Actors,@SaraRamirez,"RT @minh81: ****U R G E N T E ***** +“RAICES needs volunteer translators: ""who speak Meso-American indigenous languages (eg, zapotec, nahua,…" +06/22/2018,Actors,@SaraRamirez,"Participating in tonight’s @VH1 @LogoTV #TrailblazerHonors was an honor and a joy. Lots of reunions, new connection… https://t.co/1uxTnDQXHV" +06/21/2018,Actors,@SaraRamirez,"RT @ACLU: More than 2,300 children have been separated from their parents by the Trump administration, and the president has no plans to re…" +06/21/2018,Actors,@SaraRamirez,"RT @ACLU: If @realDonaldTrump thinks placing families in jail indefinitely is what people have been asking for, he is grossly mistaken. #Ke…" +06/20/2018,Actors,@SaraRamirez,Please donate & help make this happen! https://t.co/5Rdk7biT1z #WeShallNotBeMoved brings together the talents of co… https://t.co/h9qgjgiUsN +06/18/2018,Actors,@SaraRamirez,RT @CBSThisMorning: .@aappres reveals that staff are not allowed to hold or comfort crying children being held inside these facilities http… +06/18/2018,Actors,@SaraRamirez,"RT @washingtonpost: The images of Casa Padre, the Walmart-turned-shelter for immigrant children on the Mexican border, are ""eerily reminisc…" +06/18/2018,Actors,@SaraRamirez,"RT @UNITEDWEDREAM: We are here in Tornillo, TX, where thousands of immigrant children are being held. If we want to end family separation a…" +06/18/2018,Actors,@SaraRamirez,"RT @jacobsoboroff: Cages, stressed agents, uncertain detainees and only four contracted social workers. Our latest — from inside the epicen…" +06/18/2018,Actors,@SaraRamirez,"RT @kylegriffin1: """"I'm going to take your child to get bathed."" That's one we see again and again. ... The child goes off, and in a half a…" +06/18/2018,Actors,@SaraRamirez,RT @chasestrangio: #SCOTUS is conferencing this deeply disturbing capital case. Jurors displayed so much anti-gay bias they chose to senten… +06/15/2018,Actors,@SaraRamirez,RT @sbswrites: I am deeply grateful for the opportunity to speak with Channing Nicole about her @StillBisexual video. Here's our interview… +06/15/2018,Actors,@SaraRamirez,RT @ACLU: FACT: There is NO law requiring family separation. #FamiliesBelongTogether https://t.co/2yE1oxioSo +06/15/2018,Actors,@SaraRamirez,"""We should see this latest move by Jeff Sessions for what it is: A blatant violation of human rights & internationa… https://t.co/Qxej7blJv0" +06/15/2018,Actors,@SaraRamirez,RT @JazzJennings__: I’m so honored to collaborate with @Glaad & @netflix on their #FirstTimeISawMe project! The initiative focuses on repre… +06/15/2018,Actors,@SaraRamirez,RT @NiKEs_Nae: Facts! Tune into #myhousenow and yeah we all family aint that right @PoseOnFX my baby @SimplyTwiggy was behind this we been… +06/15/2018,Actors,@SaraRamirez,"Transgender population face their deadliest year, but find an ally who wants to help. - @CNN @AntiViolence +https://t.co/dwKHh44nrm" +06/14/2018,Actors,@SaraRamirez,"RT @paolamendoza: If your heart hurts because kids are being seperated from their parents at the border then take to the streets TODAY! + +Ac…" +06/14/2018,Actors,@SaraRamirez,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Actors,@SaraRamirez,Please read this whole thread. #FamiliesBelongTogether https://t.co/JWYx8G1ePl +06/14/2018,Actors,@SaraRamirez,#FamiliesBelongTogether https://t.co/u0AKqCWt19 +06/13/2018,Actors,@SaraRamirez,"RT @domesticworkers: Truly horrific: the Trump administration seeks to create “Tent Cities” to hold 1,000 - 5,000 unaccompanied migrant chi…" +06/13/2018,Actors,@SaraRamirez,#FamilesBelongTogether Tomorrow find an event near you and make your voice heard! https://t.co/dz3O6O6ffB… https://t.co/VEMRJlaktv +06/12/2018,Actors,@SaraRamirez,"If this fierce smart young person who speaks in a binary language gets it, I’m not sure why #Todes #Todas #Todos do… https://t.co/wYqulO0Ofw" +06/12/2018,Actors,@SaraRamirez,@TanyaSaracho WOOHOOOOO!!! Padelante!!!!!! 🙌🏽👏🏽👏🏽👏🏽👊🏽✊🏽🙏🏽💜 +06/12/2018,Actors,@SaraRamirez,"YAAAAAAS. And what a day to be receiving this news,right?Gente, @VIDA_STARZ will indeed be back for a SEASON 2!!… https://t.co/v6luiBNjJ7" +06/12/2018,Actors,@SaraRamirez,@therealseanjohn @jelanitime YES @therealseanjohn YES!!! #MyHouseVL on @VICELAND is the best! #LGBTQIA+ #youth #POC… https://t.co/fTwln0zLqQ +06/12/2018,Actors,@SaraRamirez,@DrGBeth @JenDeerinwater Right on @DrGBeth ! #BisexualPlus #Bisexual #Pansexual #Queer #PrideMonth… https://t.co/HyLc3OnZ42 +06/12/2018,Actors,@SaraRamirez,"RT @wcruz73: JUNE 12, 2016 + +Orlando, Florida, USA + +2 years have passed and in my heart your faces and spirits are as alive to me as they we…" +06/12/2018,Actors,@SaraRamirez,@DanaPiccoli @VIDA_STARZ 👆🏽🙌🏽👏🏽💜 +06/12/2018,Actors,@SaraRamirez,Happening now. Get in here! Beyond The Bathroom: Fighting for Trans Rights in the Courts and the Legislatures 10:… https://t.co/D6xN3bSTOC +06/12/2018,Actors,@SaraRamirez,Also really appreciating the bi+ lighting in here. #ACLUCon @ACLU https://t.co/tpkEX5SybF +06/12/2018,Actors,@SaraRamirez,So excited to be here at @ACLU #ACLUCon at the Beyond The Bathroom: Fighting for Trans Rights in the Courts and the… https://t.co/C66KPpTXdY +06/12/2018,Actors,@SaraRamirez,@SerAnzoategui Keep up the great work @SerAnzoategui !! I see you!!! 👊🏽✊🏽🙏🏽💜 +06/12/2018,Actors,@SaraRamirez,Save #Eddy Save #Emma Save the #BAR Save #VIDAStarz This show needs to get picked up for SEASON 2 & many more after… https://t.co/yzTS94Cjhw +06/12/2018,Actors,@SaraRamirez,@rgay THIS. YES @rgay . YES. 👊🏽💜 +06/12/2018,Actors,@SaraRamirez,Any suggestions? +06/12/2018,Actors,@SaraRamirez,"If a project that’s congruent with where I am in my growth, in collaboration w/a group of creatives and producers w… https://t.co/MK6WwDxg7E" +06/12/2018,Actors,@SaraRamirez,@StevenCanals @PoseOnFX Y’all are making history in so many ways and it’s imperative that folks pay attention. KEEP… https://t.co/xTtShC42KW +06/12/2018,Actors,@SaraRamirez,"@andymientus @michaelarden If a project that’s congruent with where I am in my growth, in collaboration w/a group o… https://t.co/fy93EgTWqZ" +06/12/2018,Actors,@SaraRamirez,RT @SaraRamirezCake: Pause for this iconic moment #TonyAward2018 #TonyAwards @SaraRamirez https://t.co/DKWWF7eIui +06/11/2018,Actors,@SaraRamirez,@andymientus Omg this thread. @michaelarden & @andymientus are the best. Sending y’all hugs! Andy- your look is eve… https://t.co/2U8LHU3B8C +06/11/2018,Actors,@SaraRamirez,@TanyaSaracho @VIDA_STARZ 🙏🏽🙏🏽🙏🏽👊🏽✊🏽💜 +06/11/2018,Actors,@SaraRamirez,Episode 2 of @PoseOnFX is blowing my mind in the best way imaginable. If you aren’t watching this work I suggest you catch up immediately. 💜 +06/11/2018,Actors,@SaraRamirez,@MjRodriguez7 I’m late to this party but episode 2 of @PoseOnFX is blowing my mind. And YOU @MjRodriguez7 are killi… https://t.co/BLz6eNRCuz +06/11/2018,Actors,@SaraRamirez,"RT @domesticworkers: This Thursday, June 14, thousands of people across the US will join rallies & vigils in over 45 cities to protest the…" +06/11/2018,Actors,@SaraRamirez,@patinamiller https://t.co/dreLr0rDPQ +06/11/2018,Actors,@SaraRamirez,This interview. 🙌🏽 Yaaas @TanyaSaracho !! Right on! @VIDA_STARZ https://t.co/NGbn497qzp +06/11/2018,Actors,@SaraRamirez,@VIDA_STARZ @TanyaSaracho Thank YOU @TanyaSaracho & @VIDA_STARZ cast & crew!!! CANNOT WAIT FOR SEASON 2!!!!! This is must watch TV!! 🙌🏽🤩🙏🏽💜 +06/11/2018,Actors,@SaraRamirez,"RT @ACLU: BREAKING: SCOTUS reinstated Ohio’s voter purge practice, which targets people for removal from the rolls because they haven’t vot…" +06/11/2018,Actors,@SaraRamirez,When the world seems to have become some horrific/terrifying version of mad libs & the 72nd annual #TonyAwards come… https://t.co/ccYGSzpa4u +06/11/2018,Actors,@SaraRamirez,#BestRevivalofaMusical !!!! Congrats @michaelarden and the entire @OnceIslandBway !! #TonyAwards2018 #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,I love me some @JohnLeguizamo ! #LatinXcellence at the #TonyAwards2018 #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,Once On This Island. #AlexNewell BOOM. @OnceIslandBway @michaelarden #TonyAwards2018 #TonyAwards⁠ ⁠ @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,"RT @TheTonyAwards: Congratulations to @chita_rivera, recipient of the 2018 Special Tony Award for Lifetime Achievement in the Theatre. #Ton…" +06/11/2018,Actors,@SaraRamirez,RT @NPR: Parkland drama teacher Melody Herzfeld is being recognized at the 72nd annual Tony Awards for helping save 65 students. https://t.… +06/11/2018,Actors,@SaraRamirez,TRUTH. @arielstachel Your biggest obstacle may turn into your purpose. #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,Yes @erichbergen YAAAS! #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,YES. That. Was. Genius. #8TimesAWeek !! @SaraBareilles @joshgroban #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,"For the win @LindsayMendez !!! That speech. Genuine love, solidarity and tenderness. #BestFeaturedActress in a… https://t.co/TIvXqVxZDk" +06/10/2018,Actors,@SaraRamirez,Proud of the talented fierce #Latinx presence in theater & this year’s #TonyAwards including @LindsayMendez… https://t.co/uzdpK1tmTE +06/10/2018,Actors,@SaraRamirez,#LatinXcellence on #Broadway #Broadway #TonyAwards @LindsayMendez @Chita_Rivera @JohnLeguizamo @clintramos… https://t.co/E9eFWJar62 +06/10/2018,Actors,@SaraRamirez,"As New York celebrates Puerto Rican heritage at the #PuertoRicanDayParade, please do what you can to help our fello… https://t.co/uKwhYsEuRC" +06/10/2018,Actors,@SaraRamirez,This is how I’m choosing to start my day. Thank you @imarajones & @thelastsipnews family for a news program that lo… https://t.co/uE0tNd2xwz +06/09/2018,Actors,@SaraRamirez,So grateful I got to see @dolabunny in @MTC_NYC ‘s #SaintJoan on BWAY tonight. A divine performance and a breath of… https://t.co/MbWnOQZlLJ +06/08/2018,Actors,@SaraRamirez,This is about to be the most inclusively #Queer #Pride weekend yet. Between @PoseOnFX @VIDA_STARZ @TheTonyAwards o… https://t.co/ts3xV9Zhe2 +06/08/2018,Actors,@SaraRamirez,"""I’m a 31-year-old, very brown-skinned, Black, fat, multiply-disabled, non-binary, femme, bisexual/queer, witchy wo… https://t.co/gNDQ3JhPeO" +06/07/2018,Actors,@SaraRamirez,"#StillBisexual #Bisexual #BiVisibility, #BisexualityIsValid #Pansexual #Queer #LGBTQ #LGBTQIA #BiPride… https://t.co/OgrlnyL1VX" +06/07/2018,Actors,@SaraRamirez,"Thank U @brooklynmuseum @NiKEs_Nae @Elegance21 & the #MyHouseVL Family 4 welcoming me & my crew 2 this powerful, im… https://t.co/hb6NZ2RhLb" +06/05/2018,Actors,@SaraRamirez,RT @marieclaire: Janet Mock on Making History With Pose https://t.co/2poQHBWM3E https://t.co/k1yT8A9iqW +06/05/2018,Actors,@SaraRamirez,"RT @ACLU: Repeating this does not make it true. + +There is no law requiring children to be ripped away from their parents. https://t.co/heV…" +06/05/2018,Actors,@SaraRamirez,"RT @chrislhayes: I really urge people to take a few minutes today and listen to this + +https://t.co/o4Q48sf8ho" +06/05/2018,Actors,@SaraRamirez,#RIP Antash'a English #SayHerName https://t.co/osPIMjr9Wg +06/04/2018,Actors,@SaraRamirez,"@MjRodriguez7 Dear @MjRodriguez7 , I want 2 express gratitude 4 ur portrayal as Blanca on @PoseOnFX . What it took… https://t.co/H1uniXhQdx" +06/04/2018,Actors,@SaraRamirez,Want an accurate and nuanced interpretation? Want to participate in responsible reporting? Want to encourage… https://t.co/wfQdXg0NDN +06/04/2018,Actors,@SaraRamirez,"RT @chasestrangio: People on social media, journalists, others: the major risk in Masterpiece is that you spread the message that Court rul…" +06/04/2018,Actors,@SaraRamirez,RT @ACLU: Our full statement on today's Supreme Court ruling in Masterpiece Cakeshop: https://t.co/xNPeKjwCXK +06/04/2018,Actors,@SaraRamirez,RT @janetmock: We are family!!!! Thanks for watching our pilot episode. This was a dream team. There’s so much more to come. ❤️ #PoseFX htt… +06/04/2018,Actors,@SaraRamirez,"RT @them: The new FX series combats the historical revisionism that has long plagued both ball and drag culture. #PoseFX + +https://t.co/toWH…" +06/04/2018,Actors,@SaraRamirez,@WHSorg 👊🏽✊🏽❤️ +06/04/2018,Actors,@SaraRamirez,@Mmkay2 @WHSorg Love this. Thank you for sharing! 👊🏽✊🏽 +06/04/2018,Actors,@SaraRamirez,@WHSorg Cmon y’all. Let’s do this. #WeHaveStories 🙌🏽👏🏽👊🏽✊🏽 https://t.co/OVC6CMlWlt +06/04/2018,Actors,@SaraRamirez,@theebillyporter Ehem....escuse me @theebillyporter ? I. AM. LIVING. FOR. YOU. ALWAYS. But definitely in @PoseOnFX… https://t.co/HMGKMRB3Pe +06/04/2018,Actors,@SaraRamirez,@carmencitaloves This. Thread. Yes. 🙌🏽👏🏽 @carmencitaloves !!!! Feeling EVERYTHING you’re saying here. 👊🏽✊🏽🌈 #Pride… https://t.co/dtVCqoQAxW +06/04/2018,Actors,@SaraRamirez,@SRamirezAlways Beautiful beautiful people of Brazil!! #Pride2018 #PrideMonth #Pride #ParadaSP +06/04/2018,Actors,@SaraRamirez,@SimplyTwiggy Yeah you did! SO SO SO proud of you my friend. Thank you for bringing yourself and your truth and you… https://t.co/SRSH1f6eoU +06/04/2018,Actors,@SaraRamirez,Went so far beyond enjoyment it was HEALING @StevenCanals !🙏🏽If u ever want 2 collaborate on affirming creations th… https://t.co/sp84ryIIVM +06/04/2018,Actors,@SaraRamirez,@StevenCanals Went so far beyond enjoyment it was HEALING @StevenCanals !🙏🏽If u ever want 2 collaborate on affirmin… https://t.co/qJKvCPvYhP +06/04/2018,Actors,@SaraRamirez,@dapperQ @DolceFemmeAnita 🙌🏽👏🏽👊🏽✊🏽🙏🏽💖💜💙🌈 #Pride2018 +06/04/2018,Actors,@SaraRamirez,@herong @JenDeerinwater 🙌🏽👏🏽👊🏽✊🏽🙏🏽 +06/04/2018,Actors,@SaraRamirez,@meyrude THIS. 🙌🏽👏🏽👊🏽✊🏽🌈💖💜💙 Love me some @meyrude +06/04/2018,Actors,@SaraRamirez,And @annapoetic - YOU continue to inspire so many of us with YOUR courageous leadership. Thank you for being you.… https://t.co/IQazIcqMV9 +06/04/2018,Actors,@SaraRamirez,@them @TwitterOpen Here for this. +06/04/2018,Actors,@SaraRamirez,"An HONOR to be on this list. I am in GREAT company and am humbled by, and thankful for, those who came before me &… https://t.co/6qbKKdhGwa" +06/04/2018,Actors,@SaraRamirez,"@we_are_biscuit @bisexualindex Preach! #PrideMonth #Pride2018 Know the nuances of our full #LGBTQ+ history, which i… https://t.co/p79VMpMy0p" +06/04/2018,Actors,@SaraRamirez,Yeah you did! SO SO SO proud of you my friend. Thank you for bringing yourself and your truth and your magic to thi… https://t.co/JT93YgkZO0 +06/04/2018,Actors,@SaraRamirez,And now to continue this life affirming evening in television: THANK YOU @VIDA_STARZ family for giving me #VIDA !!!… https://t.co/pn8IxkalCl +06/04/2018,Actors,@SaraRamirez,This show is everything. My heart needed this show and it is life affirming to me. Wish it had been around when I w… https://t.co/6KGWuuqcD8 +06/04/2018,Actors,@SaraRamirez,"RT @SmartAssJen: I knew #PoseFX would be fierce and funny and stylish, but what's really getting me is how tender it is. It's real, but kin…" +06/04/2018,Actors,@SaraRamirez,RT @TheMrMilan: I know way too many gay and trans youth who were abandoned by their parents in the name of Jesus. smh. #posefx +06/04/2018,Actors,@SaraRamirez,Watching the premiere of @PoseOnFX with this crew of folks I adore and we are feeling this historic moment in telev… https://t.co/6Vop6zyreX +06/03/2018,Actors,@SaraRamirez,@SRamirezVillage Damn. Thanks for the reminder. #Pride2018 +06/03/2018,Actors,@SaraRamirez,@aliciagarza Tell em @aliciagarza !! 👏🏽💜 +06/03/2018,Actors,@SaraRamirez,@angelicaross @PoseOnFX Here for this! 🙌🏽👏🏽 +06/03/2018,Actors,@SaraRamirez,@SerAnzoategui YALL ARE KILLING IT IN THIS!!!!! 🙌🏽👏🏽👊🏽✊🏽🌈😘 +07/01/2018,Actors,@iJesseWilliams,"RT @CESand24: Was nervous about attending my first march today. Then the words of @iJesseWilliams came to me. ""Afraid? Ok. Do it afraid.""…" +06/30/2018,Actors,@iJesseWilliams,.@BLeBRiTYgame out here tryna fonction! https://t.co/oFVwYyIZPq +06/30/2018,Actors,@iJesseWilliams,Boss Richards-Ross! 🏅🏅🏅🏅🏅 https://t.co/FyJ5DNnPLr +06/30/2018,Actors,@iJesseWilliams,RT @RealLifeKaz: Knicks about to pull out the ultimate LeBron pitch and just sell him the team lol +06/30/2018,Actors,@iJesseWilliams,RT @Universer_Italy: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams https://t.co/nNVbLVuC2l +06/28/2018,Actors,@iJesseWilliams,RT @Sydvaughnfan2: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams +06/27/2018,Actors,@iJesseWilliams,RT @iJesseWilliams: Heja Sverige!!! 🇸🇪 #WorldCup +06/27/2018,Actors,@iJesseWilliams,RT @boreskes: Dephree has just done a backflip of the sign. https://t.co/d5qh6qybQ6 +06/27/2018,Actors,@iJesseWilliams,Do i get paid for these ? https://t.co/aFb6lNVYRD +06/27/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: Let's never forget @iJesseWilliams +appearance in @bandaidfilm. Gold 💥 directed and written by @ZoeListerJones, female…" +06/27/2018,Actors,@iJesseWilliams,"RT @Boyaishere: You're awake. + +#art #DetroitBecomeHumanfanart #detroitbecomehuman +@iJesseWilliams https://t.co/XXBtVUWJfJ" +06/27/2018,Actors,@iJesseWilliams,👐🏽 https://t.co/RZ2pXsJ90e +06/27/2018,Actors,@iJesseWilliams,RT @ImmortalTech: You mean Alexandria Ocasio-Cortez. She won the election and you still printed the losers name over hers. Imagine that. Lo… +06/27/2018,Actors,@iJesseWilliams,RT @thehill: WATCH: Maxine Waters reads list of times Trump has called for violence https://t.co/Rmkhzf6RAD https://t.co/kB2qCxOM66 +06/26/2018,Actors,@iJesseWilliams,https://t.co/rsVNe1cMEd https://t.co/DpxSgckzgQ +06/26/2018,Actors,@iJesseWilliams,RT @QuelleChris: I was once “apprehended” by 2 white cops coming out of my own crib in Chicago. They forced me to prove that I lived there… +06/26/2018,Actors,@iJesseWilliams,RT @NBA: .@KDTrey5 of the @warriors takes home the 2017-2018 @nbacares #NBACommunityAssist Award! #ThisIsWhyWePlay #NBAAwards https://t.co/… +06/26/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: @iJesseWilliams 🚨📣🚨📣🚨📣🚨📣🚨📣🚨📣🚨 +Louder for the good white folk in the back https://t.co/t4Q2JEGq25" +06/26/2018,Actors,@iJesseWilliams,RT @JMGaylord: @iJesseWilliams We can’t simply be “allies.” We must be “accomplices.” I promise. +06/26/2018,Actors,@iJesseWilliams,Deal. Cigars for pic. Same time Kendra! https://t.co/jo3coG1lE0 +06/26/2018,Actors,@iJesseWilliams,"Daily Operation. +“Allies” Read. +Everyone read thread. https://t.co/51PVu9sLdL" +06/25/2018,Actors,@iJesseWilliams,"RT @iAmNeesah: I do love the beard version of @iJesseWilliams 😍 +And I will watch the #NBAAwards 🔥🤓🍿🏀🔥 https://t.co/xi7jD5xNbP" +06/25/2018,Actors,@iJesseWilliams,"RT @risha843: @iJesseWilliams The part where they're hugging shit....that's disgusting. I get it's fake, but what was the purpose? You're w…" +06/25/2018,Actors,@iJesseWilliams,"RT @FredTJoseph: Me cursing him out or stopping to his level gets me thrown off this plane or worse. So help me out, if you’re really that…" +06/25/2018,Actors,@iJesseWilliams,"RT @FredTJoseph: Then you had a bunch of white people who watched everything come up to me and apologize. One woman said “I’m sorry, it was…" +06/25/2018,Actors,@iJesseWilliams,"RT @OhNoSheTwitnt: Bitch, this is Twitter, not Yelp. https://t.co/HAmku4PMFw" +06/25/2018,Actors,@iJesseWilliams,"RT @perlmutations: Did I ever tell ya about when Harvey Weinstein told me to make sure I shook his hand at a charity event, so I stopped in…" +06/25/2018,Actors,@iJesseWilliams,RT @Mike_Eagle: this gotta be a nathan for you episode https://t.co/JF9gKTr9Wg +06/25/2018,Actors,@iJesseWilliams,"RT @RobCabrera: @iJesseWilliams actually administering medicine to a patient in Detroit Become Human is so meta. + +If Black Mirror & Grey's…" +06/25/2018,Actors,@iJesseWilliams,CONGRATULATIONS!!! @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly… https://t.co/j7Dmeey9Ib +06/25/2018,Actors,@iJesseWilliams,🙏🏾 https://t.co/jS6HTyrDzm +06/25/2018,Actors,@iJesseWilliams,"#NOTHINGTOSEEHERE Happy Monday Everyone! +- Giant Human Puppet Gives Birth https://t.co/iwyEumqum8" +06/25/2018,Actors,@iJesseWilliams,RT @strongblacklead: This is not a MOMENT. This is a MOVEMENT. https://t.co/HtzTDPIDXo +06/25/2018,Actors,@iJesseWilliams,RT @alwaysamburrr: Waaaait did Jesse say in his podcast “y’all love some dogs” (on dogs having more rights than black folks)😩💀@iJesseWilli… +06/25/2018,Actors,@iJesseWilliams,"RT @ScottHech: In 2008, the Supreme Court, in a opinion written by Justice Kennedy, ruled that the US Constitution applies to non-citizens…" +06/25/2018,Actors,@iJesseWilliams,"Sat down in Stockholm, Sweden with #BrilliantMinds Conference CEO #NataliaBrzezinski before i took the stage. Liste… https://t.co/PpW1F6K4Dx" +06/25/2018,Actors,@iJesseWilliams,"RT @JWilliamsCrew: 📱 | Check out the latest episode of ""The Brilliant Minds Podcast"" with special guest @iJesseWilliams - talking black cul…" +06/25/2018,Actors,@iJesseWilliams,RT @whiskymojito: Wow. Was browsing through @iJesseWilliams ig stories and found this!! This has to stop!!! Our world is waaaaay beyond fuc… +06/24/2018,Actors,@iJesseWilliams,🔥🔥🔥🔥🔥 We exchanged handwritten letters when i was in high school. https://t.co/ZNOYZw3cJP +06/24/2018,Actors,@iJesseWilliams,RT @AnnOdong: this is the best offside trap in history. #JPNSEN https://t.co/HxVGHkpQLP +06/24/2018,Actors,@iJesseWilliams,RT @MeritLaw: Called to reserve a room in downtown Pittsburgh. The operator wanted to warn me first that there are major protest going on o… +06/24/2018,Actors,@iJesseWilliams,"RT @WillHunterShow: RIP Permit Patty’s weed company. Man I hope she was racist before calling the cops, because she surely will be after sh…" +06/24/2018,Actors,@iJesseWilliams,RT @ImmortalTech: You mad at the wrong people bruh https://t.co/cyCZyCtspO +06/24/2018,Actors,@iJesseWilliams,RT @StretchArmy: Whoever takes the L in the Kid/Flex battle has to wear Luggz for the rest of their life. Even in bed. Even in the shower.… +06/24/2018,Actors,@iJesseWilliams,"Millions. Not thousands. + +Show me all your tweets objecting to all the irrelevant personal info being released abo… https://t.co/wulsbrA7Bc" +06/24/2018,Actors,@iJesseWilliams,🙏🏽@BLeBRiTYgame for us https://t.co/kDE3pRBVHY +06/24/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: The soul of a sailor @iJesseWilliams 🤗 +#SundayMorning mood 🤣 +Holidays, sea, booze and fun ☀️🚣‍♂️ https://t.co/ITNvccOq…" +06/24/2018,Actors,@iJesseWilliams,"RT @chrisjohnson82: Also a reminder @PressSec hasn’t called on me, the only reporter from an LGBT news outlet in the White House press corp…" +06/24/2018,Actors,@iJesseWilliams,RT @tchopstl_: This is straight-up kidnapping and extortion being carried out by the Trump administration. +06/24/2018,Actors,@iJesseWilliams,"RT @joncoopertweets: In a controversial case involving the rights of undocumented immigrants and their young children, a Guatemalan mother…" +06/24/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: Tweet from July 12, 2015. https://t.co/5D6TqZmcEV" +06/24/2018,Actors,@iJesseWilliams,RT @JamilahLemieux: Because it is for them https://t.co/4de8q7D0Oi +06/24/2018,Actors,@iJesseWilliams,RT @SheaSerrano: if slamball had been invented after twitter was invented all these guys would be making $50 million a year easy https://t.… +06/24/2018,Actors,@iJesseWilliams,Decency: it’s much easier. https://t.co/qNUrZ173gh +06/24/2018,Actors,@iJesseWilliams,RT @lukeoneil47: Every white woman has the power of the Let me speak to the manager voice inside of her. You can either use it to call the… +06/24/2018,Actors,@iJesseWilliams,"Utilizing the most ignorant/American rationale available, an American, in America, has been sentenced to death for… https://t.co/hJZSy3wgLN" +06/24/2018,Actors,@iJesseWilliams,RT @riseandresistny: @macc_nyc getting thrown to the ground by law enforcement as they attempt to block an I.C.E. van at 201 Varick St. #En… +06/24/2018,Actors,@iJesseWilliams,RT @nowthisnews: This Senate candidate got arrested trying to deliver toys and supplies to detained children https://t.co/n4FckyCo7P +06/24/2018,Actors,@iJesseWilliams,"RT @CleverTitleTK: GOP: ""Why are we worrying about these foreign children at the border instead of American children?"" + +Also GOP: https://t…" +06/24/2018,Actors,@iJesseWilliams,RT @lexlanthony: Today in Queens Criminal Court: Very young black man brought in bc he couldn’t afford to pay a fine as his father just rec… +06/24/2018,Actors,@iJesseWilliams,"RT @KT_NRE: I'm sure this sculpture is supposed to be a statement on consumer culture or something, but all I can see is Jesus and Lenin tr…" +06/24/2018,Actors,@iJesseWilliams,RT @YasminYonis: White people live in a completely different world than us. https://t.co/2JU0TDxoWI +06/24/2018,Actors,@iJesseWilliams,"RT @DrPhilGoff: They like the racism. They like it. They liiiiiiiike the racism. They LIKE it like it. The racism and them, they’re friends…" +06/24/2018,Actors,@iJesseWilliams,"RT @MuslimIQ: This racist harassed 5 Muslim teen girls in Jersey City, New Jersey—cursing at them & calling them “traitors to America” b/c…" +06/24/2018,Actors,@iJesseWilliams,RT @GideonResnick: This new Kamasi Washington album https://t.co/y8F72sVGlx +06/23/2018,Actors,@iJesseWilliams,RT @NILC_org: ICE agents often use intimidation tactics to enter homes. Remember: #WeHaveRights. Be prepared for encounters with ICE with t… +06/23/2018,Actors,@iJesseWilliams,RT @mireya_g: That story about the woman with the parasitic worm inside her face is just too gross. I can't even share it. It is giving me… +06/23/2018,Actors,@iJesseWilliams,"RT @CNN: First, it was a small bump under her left eye. Five days later, it appeared above the eye. Her upper lip was bulging 10 days after…" +06/23/2018,Actors,@iJesseWilliams,"Those who can’t do, gossip." +06/23/2018,Actors,@iJesseWilliams,RT @_QuianaJ_: I literally love that Jackson wears J’s when he is outside of the hospital. J’s and Grey Sweatpants! @GreysABC @iJesseWillia… +06/23/2018,Actors,@iJesseWilliams,Heja Sverige!!! 🇸🇪 #WorldCup +06/23/2018,Actors,@iJesseWilliams,RT @notdoxxed: How we playing rn #GERSWE https://t.co/LCMEHMnq6Q +06/22/2018,Actors,@iJesseWilliams,"If you, your friends and/or family are looking for scholarships this summer, @myScholly just launched our $10,000 S… https://t.co/4hPUO3jXQr" +06/22/2018,Actors,@iJesseWilliams,"RT @FOXSoccer: The touch, the finish, everything about this Musa goal was SPECTACULAR. 🙌 https://t.co/ILhhCmiimk" +06/22/2018,Actors,@iJesseWilliams,"RT @Luis_22__: Dear @NYGovCuomo, + +You must sign this criminal justice reform bill to finally hold prosecutors accountable for their miscond…" +06/22/2018,Actors,@iJesseWilliams,RT @TheDailyShow: PROPAGAND-OFF! Fox News vs. North Korean State TV https://t.co/B9CfxgN0XC +06/22/2018,Actors,@iJesseWilliams,RT @Phil_Lewis_: Saw this on Facebook: 1964 news clip of white citizens reacting to the proposed civil rights bill. https://t.co/j8yM00hEgB +06/22/2018,Actors,@iJesseWilliams,"RT @EricHolder: Here’s another zero tolerance program for the Trump Administration: EVERY child, EVERY baby has to be reunited with his or…" +06/22/2018,Actors,@iJesseWilliams,"RT @Sifill_LDF: Frankly, it’s refreshing when they just say it. https://t.co/4gNHRelMZn" +06/22/2018,Actors,@iJesseWilliams,RT @GreysABC: Happy First Day of Summer! 😎🍦☀️🏖⛵ #SummerSolstice #GreysAnatomy https://t.co/wZqfCEVaFG +06/22/2018,Actors,@iJesseWilliams,"RT @openrun: If you woke up this morning thinking, “wait...who did my team draft last night?” — we’ve got the prospect primer you need! Fea…" +06/22/2018,Actors,@iJesseWilliams,WHAT A COUNTER ATTACKKKKK!!!! @Nigeria #SuperEagles #WorldCupRussia2018 +06/21/2018,Actors,@iJesseWilliams,Modrić with the DAGGER to Argentina’s heart!!! #WorldCup2018 +06/21/2018,Actors,@iJesseWilliams,Oh good https://t.co/k54AuesRbt +06/21/2018,Actors,@iJesseWilliams,"RT @MoscowTimes: Meanwhile in Russia, Burger King apologizes for short-lived promo offering lifetime of free Whoppers to women impregnated…" +06/20/2018,Actors,@iJesseWilliams,"IT’S ALMOST LIKE THEY DIDN’T MEAN IT WHEN THEY SAID +“ALL LIVES MATTER”" +06/20/2018,Actors,@iJesseWilliams,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Actors,@iJesseWilliams,RT @GlennonDoyle: Predators live for moments like this. This is an atrocity. https://t.co/8vQoVeZhAt +06/20/2018,Actors,@iJesseWilliams,RT @mikeytraynor: Me when plans get cancelled. #AliouCisse #WorldCup https://t.co/OdbTBeyxvU +06/20/2018,Actors,@iJesseWilliams,RT @NutmegRadio: Aliou Cissé is me when the DJ finally plays my song and then switches to the remix before the first verse even finishes. h… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: I have spent much of my life working in GOP politics. I have always believed that both parties were two of the most im… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: Season of renewal in our land is the absolute and utter repudiation of Trump and his vile enablers in the 2018 electio… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: Humanity in our history. It is connected by the same evil that separated families during slavery and dislocated tribes… +06/20/2018,Actors,@iJesseWilliams,"RT @SteveSchmidtSES: It is corrupt, indecent and immoral. With the exception of a few Governors like Baker, Hogan and Kasich it is filled w…" +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: 29 years and nine months ago I registered to vote and became a member of The Republican Party which was founded in 185… +06/20/2018,Actors,@iJesseWilliams,"RT @JWilliamsCrew: 📱 | Jesse Williams to present at the 2018 NBA Awards, hosted in Los Angeles on Monday, June 25th. https://t.co/UFz8EOQG…" +06/20/2018,Actors,@iJesseWilliams,"RT @Empresstwit: @iJesseWilliams “White people who are quiet about racism might not plant the seed, but their silence is sunlight.” + +DAMN.…" +06/20/2018,Actors,@iJesseWilliams,RT @beth_blomquist: @iJesseWilliams That hurt to read. I would like to think that I speak up and speak out at every injustice and intoleran… +06/20/2018,Actors,@iJesseWilliams,White People Are Cowards - The Root #ReadIfYouDare https://t.co/1HzWnLyh9f +06/20/2018,Actors,@iJesseWilliams,"RT @ScottHech: If you or your loved one is *arrested by ICE, know this: YOU HAVE RIGHTS. View the #WeHaveRights series that @ACLU + @BklynD…" +06/20/2018,Actors,@iJesseWilliams,"RT @ScottHech: If ICE approaches you in the street, your community, at work, or in court, remember: YOU HAVE RIGHTS. View the #WeHaveRights…" +06/20/2018,Actors,@iJesseWilliams,👀👂🏽 https://t.co/cTzASU0q61 +06/20/2018,Actors,@iJesseWilliams,RT @ScottHech: Figured now was a good a time to remind people that-whether you’re documented or undocumented-YOU HAVE RIGHTS when interacti… +06/20/2018,Actors,@iJesseWilliams,"RT @caterinatweets: This is a really easy way to help the babies, children and parents who are being separated and traumatized at the borde…" +06/20/2018,Actors,@iJesseWilliams,"RT @ACLU: BREAKING: The court rules that Kansas' documentary proof-of-citizenship law, which disenfranchised thousands of eligible voters,…" +06/20/2018,Actors,@iJesseWilliams,RT @marwilliamson: The fraud is not being committed by immigrants trying to game the system; ICE admits 1% of asylum seekers found to be fr… +06/20/2018,Actors,@iJesseWilliams,"RT @chrislhayes: Since the president is lying about this, I'll reiterate that we obtained internal CBP documents that show that ****91%****…" +06/18/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: """"I'm going to take your child to get bathed."" That's one we see again and again. ... The child goes off, and in a half a…" +06/18/2018,Actors,@iJesseWilliams,RT @ClintSmithIII: This is an important moment to remember that there have been folks organizing & working on behalf of families at the bor… +06/18/2018,Actors,@iJesseWilliams,RT @DrPhilGoff: They’re not even putting mechanisms in place that would ALLOW them to reunite families. It’s just a policy of evil. No mora… +06/18/2018,Actors,@iJesseWilliams,"RT @goingglocal: So Trump wants you to think there is a major uprising here in Germany and that ""Crime in Germany is way up."" + +Greetings f…" +06/18/2018,Actors,@iJesseWilliams,RT @mattdpearce: Calling it like it is. https://t.co/CeGSuoDlAX https://t.co/FWCSkiwrRO +06/18/2018,Actors,@iJesseWilliams,"RT @NBCNews: UN Human Rights commissioner: + +""In the United States, I'm deeply concerned by recently adopted policies which punish children…" +06/18/2018,Actors,@iJesseWilliams,"RT @adv_project: This isn't an easy listen. But it's a necessary one. + +Our government & our elected officials created this crisis. It's ti…" +06/18/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/18/2018,Actors,@iJesseWilliams,"RT @sternbergh: ""the youngest children in here are as young as infants, basically"" https://t.co/nuYqnZuGG9" +06/18/2018,Actors,@iJesseWilliams,"RT @keithboykin: ""Trump is lying, as he often does. This barbaric policy is an outgrowth of his own personal cruelty. It’s absolutely repre…" +06/18/2018,Actors,@iJesseWilliams,RT @BetoORourke: Catch-22. We are preventing families from lawfully requesting asylum at our ports of entry & then criminally prosecuting t… +06/18/2018,Actors,@iJesseWilliams,"RT @TheRoot: Texas deputy accused of sexually assaulting 4-year-old girl, while threatening her mother with deportation to get her to stay…" +06/18/2018,Actors,@iJesseWilliams,RT @nowthisnews: Crowds of people marched on a 'tent city' where the Trump administration is detaining undocumented children https://t.co/V… +06/18/2018,Actors,@iJesseWilliams,"RT @Channel4News: This Silicon Valley 'computer philosopher' says you need to delete your social media. + +Jaron Lanier argues we are hooked…" +06/18/2018,Actors,@iJesseWilliams,"RT @JoyAnnReid: Some of the migrant parents fear they may never get their children back, as they are being deported without them... https:/…" +06/18/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: Fact Check: The German crime rate just hit its lowest level since 1992. +https://t.co/v9RMJBcSKB https://t.co/s6yEMPRe8D" +06/18/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: Because of the Administration’s policy of breaking up families at the border, these detention facilities are overflowing…" +06/18/2018,Actors,@iJesseWilliams,"RT @SenMarkey: This is a lie. There is no law. There is no court mandate. This is a policy made solely by this administration, and you can…" +06/18/2018,Actors,@iJesseWilliams,"RT @RepDonBeyer: The Trump Administration’s family separation policy tore 2,000 families apart in six weeks but they won’t stop lying about…" +06/18/2018,Actors,@iJesseWilliams,"RT @RepDonBeyer: And again Friday, asked about Kim Jong-un, Trump said: “Hey, he’s the head of a country. And I mean he is the strong head.…" +06/17/2018,Actors,@iJesseWilliams,EXCLUSIVE: Jesse Williams hosts star-studded @BLeBRiTYgame night at @ABFF https://t.co/Hohh8mkmCK via @theGrio +06/17/2018,Actors,@iJesseWilliams,😂😂😂😂😂😂😂 https://t.co/e1aR2XExSt +06/17/2018,Actors,@iJesseWilliams,"Our Father - @SaulWilliams + +https://t.co/KlLvNhR8rO #HappyFathersDay" +06/16/2018,Actors,@iJesseWilliams,"RT @jperiodBK: Dear Hip Hop, + +One of the Culture's greatest protectors is in need. + +@DJSpinna, legendary DJ, producer and unmatched encycl…" +06/15/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: According to a shocking report, about 2,000 children have been separated from their families. That's an average of 45 kid…" +06/15/2018,Actors,@iJesseWilliams,"RT @ScottHech: Mitch. The Mueller probe has gone on for just 394 days. As of today, my 19 year old client charged with robbery of another t…" +06/15/2018,Actors,@iJesseWilliams,"RT @chrislhayes: The president and the GOP are currently using 2000 children, stolen from their parents, as leverage for a bill to make asy…" +06/15/2018,Actors,@iJesseWilliams,🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/FF8UJ1l7YX +06/15/2018,Actors,@iJesseWilliams,You won this deal. Everybody won this deal. @BLeBRiTYgame https://t.co/Z42K5HM69m +06/15/2018,Actors,@iJesseWilliams,You’re the real MVP Amber https://t.co/t52MLvD6Gb +06/15/2018,Actors,@iJesseWilliams,"RT @POLConference: .@iJesseWilliams will join the Opening Plenary at #ServiceUnites, leading a panel w/ young men from different walks of l…" +06/15/2018,Actors,@iJesseWilliams,"RT @MelASomers: I've played many games with incredible acting but @BryanDechart, @valoriecurry and @iJesseWilliams set the bar high! #Detro…" +06/15/2018,Actors,@iJesseWilliams,"People on flights to Miami, even at 5am, tend to be happier than 97% of other airline passengers. #Science" +06/15/2018,Actors,@iJesseWilliams,"RT @NateSilver538: @jackshafer @markoff I'd say the email stuff got maybe 4x the amount of coverage that it ""should"" have. Even if you redu…" +06/15/2018,Actors,@iJesseWilliams,RT @NateSilver538: One shouldn't underrate how much the media's obsession with Clinton's emails stemmed from its obsession with fending off… +06/15/2018,Actors,@iJesseWilliams,"RT @matthewamiller: If Trump was running his charity as a sprawling, multi-year criminal enterprise, perhaps that’s a small clue about how…" +06/15/2018,Actors,@iJesseWilliams,"RT @ThornCoyle: Please read all 4 of these screenshots from Tiana Smalls. + +I’ll follow w a thread of a similar experience: + +#Resist #Soli…" +06/15/2018,Actors,@iJesseWilliams,Big up to @bazdreisinger and #EducationNotIncarceration #prison2collegepipeline “Education is the most powerful we… https://t.co/J5Nj9JXOCk +06/15/2018,Actors,@iJesseWilliams,"RT @BarbaraGuer1n: Je commence #DetroitBecomingHuman , je vois Jackson de #GreysAnatomy avant d'être immergé dans l'univers du jeu. Mainten…" +06/15/2018,Actors,@iJesseWilliams,RT @japril_soldiers: Amazing how it looks so real! #Markus #DetroitBecomeHuman @iJesseWilliams 👀 https://t.co/jTweH3e3ku +06/15/2018,Actors,@iJesseWilliams,RT @TeenChoiceFOX: The doctor is in! 👨‍⚕️ RT to vote @iJesseWilliams for #ChoiceDramaTVActor. #TeenChoice https://t.co/222FFxuB1Z +06/15/2018,Actors,@iJesseWilliams,RT @jbrownedianis: One more day til kickoff! Thanks @iJesseWilliams & @Kaepernick7 for your support to make this happen! #ActionCamp2018 ht… +06/15/2018,Actors,@iJesseWilliams,RT @haymarketbooks: “The Problem is Civil Obedience” @iJesseWilliams reads Howard Zinn’s iconic 1970 speech https://t.co/lFuMeCyUTq +06/14/2018,Actors,@iJesseWilliams,"RT @KeeganNYC: From 1992 to 2017, DAs in Mississippi struck black people from juries over 4X as often as they did white people: https://t.c…" +06/14/2018,Actors,@iJesseWilliams,"RT @jehorowitz: This thread is excellent. We are in a linguistic emergency. In a world of words, the right words matter. (And on a side not…" +06/14/2018,Actors,@iJesseWilliams,"RT @AllieGoertz: ME: sorry, where was I? +THERAPIST: you were saying each man you’ve ever loved wears a backwards hat and asked if it’s poss…" +06/14/2018,Actors,@iJesseWilliams,RT @paleofuture: ICE is rounding up legal permanent residents for misdemeanors committed 20 years ago. Remember that “deportation force” ev… +06/13/2018,Actors,@iJesseWilliams,"RT @jolexcapshaw: Let's vote for @iJesseWilliams! The category in which he was nominated is ""Choice Drama TV Actor"". 😉 Click here to vote 👇…" +06/13/2018,Actors,@iJesseWilliams,RT @jolexcapshaw: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams https://t.co/NvtiOHjCd9 +06/12/2018,Actors,@iJesseWilliams,Takk! From both of us! https://t.co/KiF8X9SBtj +06/12/2018,Actors,@iJesseWilliams,👌🏽👌🏽👌🏽👌🏽👌🏽👌🏽🙏🏽🙏🏽🙏🏽🙏🏽🙏🏽 https://t.co/i77mUch13K +06/12/2018,Actors,@iJesseWilliams,"RT @generationOn: This is so exciting! Don't miss this amazing line up of speakers, include @iJesseWilliams, @Adaripp and student leaders @…" +06/12/2018,Actors,@iJesseWilliams,"RT @POLConference: JUST IN! @iJesseWilliams will join the Opening Plenary at #ServiceUnites, leading a panel w/ young men from different wa…" +06/12/2018,Actors,@iJesseWilliams,Don’t drop the food. Stay strong. https://t.co/QzZeEss9iE +06/11/2018,Actors,@iJesseWilliams,RT @rainehoggard: @iJesseWilliams had to go ahead and get it😊 https://t.co/uS2gcsySve +06/11/2018,Actors,@iJesseWilliams,"RT @openrun: #NBADraft Deep Dive #1: Kevin Knox, the 6'9"" SF from the University of Kentucky #OpenRunxDimeDrop | See the full @dimedrophoop…" +06/11/2018,Actors,@iJesseWilliams,RT @openrun: The #NBADraft Preview you’ve been dreaming of is here! We’re teaming up with longtime friend o’ the show @jkylemann to bring y… +06/11/2018,Actors,@iJesseWilliams,"RT @kaytana08: I can't get over how good #DetroitBecomeHuman was. I finished it yesterday and am still thinking about it. + +@Quantic_Dream k…" +06/11/2018,Actors,@iJesseWilliams,#YESPLEASE: KIDDING (2018) Teaser Trailer | Jim Carrey SHOWTIME Series https://t.co/q8Xou0rc73 via @JimCarrey @Showtime +06/10/2018,Actors,@iJesseWilliams,RT @3_busan: Still can’t believe I met @iJesseWilliams a few days ago 😍😭😍 thank you so much for taking the time to take the pic and sign au… +06/10/2018,Actors,@iJesseWilliams,"RT @Japril_EndGame: AMERICA DO YOU THING. @iJesseWilliams is showing you this on his IG story. So this must be important. + +I don’t think t…" +06/10/2018,Actors,@iJesseWilliams,👌🏽 https://t.co/7xhhAe1qxh +06/10/2018,Actors,@iJesseWilliams,RT @sanna_wolk: Awesome that actor @iJesseWilliams visited #Rinkeby when he was in Stockholm😍 Thanks for your good work - it’s really impre… +06/10/2018,Actors,@iJesseWilliams,RT @JeffMerkley: Kids in what looked like dog kennels. Children using space blankets as a cushion or cover for privacy. What I saw at the p… +06/10/2018,Actors,@iJesseWilliams,RT @JeffMerkley: My visit to the McAllen processing center was a harrowing experience. Children were in cages. People were distraught. Kids… +06/08/2018,Actors,@iJesseWilliams,RT @iUnapologeticMe: 2014. Activist @iJesseWilliams talks about the police treating the people like savages. 4 years ago and still applies… +06/08/2018,Actors,@iJesseWilliams,RT @JustGugu: “Afraid? Ok. Do it afraid” - @iJesseWilliams +06/08/2018,Actors,@iJesseWilliams,RT @BoobsRadley: I loved how Anthony Bourdain tried to show TV viewers how people who weren't anything like us were just like us. He viewed… +06/08/2018,Actors,@iJesseWilliams,RT @mrjafri: Anthony Bourdain took the time to shine a light on intolerance and injustice. He showed us what matters most is not what divid… +06/08/2018,Actors,@iJesseWilliams,RT @ToddGregory: 23 seconds: https://t.co/HzmBElXcaQ +06/08/2018,Actors,@iJesseWilliams,"RT @nickbilton: This is gut-wrenching: ""The first few nights, he cried himself to sleep. Then it turned into just moaning and moaning... he…" +06/08/2018,Actors,@iJesseWilliams,RT @JamilSmith: Read every word of this @mirjordan report. The whole story of a young Honduran boy taken away from his father at the border… +06/08/2018,Actors,@iJesseWilliams,"RT @SiniSiambalis: When u see @iJesseWilliams hanging in the hood 🙌🏼 +Välkommen! https://t.co/wFPCH5SKPl" +06/08/2018,Actors,@iJesseWilliams,RT @digitalduckiesd: Watching”Survivers guide to prison” - HORRIFYING! @officialDannyT @thematthewcooke @SusanSarandon @iJesseWilliams and… +06/08/2018,Actors,@iJesseWilliams,"RT @TheAfroLifeTV: #RT @ABFF: ""#TheLineUp | Without A Net: The Digital Divide in America sponsored by #Verizon |Panelist: @ijessewilliams |…" +06/08/2018,Actors,@iJesseWilliams,"RT @IDEA_Initiative: #TBT! @iJesseWilliams, @cgray91 and @MichaelaAngelaD paused for a quick selfie after their fireside chat at last month…" +06/08/2018,Actors,@iJesseWilliams,RT @QD3: With my brothers @ijessewilliams and @anunez21 at #cafemynta in #rinkeby #stockholm. VA hander! Tack min bror Jamal. https://t.co/… +06/06/2018,Actors,@iJesseWilliams,"Kalief Browder died 3 years ago today. + +He spent 1,120 days in jail but was NEVER convicted of a crime. + +He couldn’… https://t.co/3fo8Z9tmbr" +06/06/2018,Actors,@iJesseWilliams,"RT @Taru121112: Thank u, @Quantic_Dream and @iJesseWilliams 🖤🎮 +Thank u, for your work, thank u for your characters and thank u, for your aw…" +06/06/2018,Actors,@iJesseWilliams,RT @iam3aii: Markus 💚 #Markus #DetroitBecomeHuman #Fanart @Detroit_PS4 @PlayStationES @Quantic_Dream @iJesseWilliams @dibujando @Dibujnauta… +06/05/2018,Actors,@iJesseWilliams,"RT @CandyKin9: Literally the best game that i’ve ever played in 2018 , thank you for giving us this Master Piece it’s so beautiful ❤️💜💕. @…" +06/03/2018,Actors,@iJesseWilliams,Play it in line or with some wine. Play it on the train or in the rain. @BlebrityGame https://t.co/tmiw8samas +06/03/2018,Actors,@iJesseWilliams,"RT @cnni: Becky McCabe got down on one knee to propose to her girlfriend, Jessa Gillaspie. Jessa shrieked and immediately reached for her b…" +06/03/2018,Actors,@iJesseWilliams,RT @rosaclemente: Its hard to witness most everyone on social media focusing on two white women and their antics. I guess 2 white women mil… +06/03/2018,Actors,@iJesseWilliams,RT @samswey: The police union in Oakland sent out an email blast criticizing black District Attorney candidate Pamela Price. It turns out t… +06/03/2018,Actors,@iJesseWilliams,RT @franklinleonard: He’s never gonna dance again. Guilty feet have got no rhythm. https://t.co/2vI72YoCOP +06/03/2018,Actors,@iJesseWilliams,"RT @moontroller: Is @Detroit_PS4 already my game of the year? Hell yeah! +Are the great performances of @valoriecurry @iJesseWilliams @Bryan…" +06/02/2018,Actors,@iJesseWilliams,RT @Shootingstar258: @iJesseWilliams I am enjoying Detroit become human. It has everything you need in a game. It also relates to some big… +06/02/2018,Actors,@iJesseWilliams,"RT @dachshundgirl99: @iJesseWilliams LOOK AT WHAT I GOT! I’m so excited to play and the cover art is so good, I could tell it was you just…" +06/02/2018,Actors,@iJesseWilliams,"RT @ggreenwald: An Israeli sniper pumped bullets into the upper body of a 20-year-old Gazan woman, Razan al-Najjar, killing her. She had be…" +06/02/2018,Actors,@iJesseWilliams,RT @ChristineFox_: My neighbor called the cops on me the other day because I asked him to pick up his dog shit. 3 officers with guns arrive… +06/25/2018,Actors,@TheRealKMcKidd,Friends of mine are going thru this - please help if you can xx. https://t.co/JUhFBdfLHN +06/20/2018,Actors,@TheRealKMcKidd,RT @thedailybeast: The cost of keeping migrant kids separated from their families in so-called “tent cities” reportedly costs three times m… +06/20/2018,Actors,@TheRealKMcKidd,Family separation- let’s put a stop to it- it’s… https://t.co/y53ynT8p29 +06/19/2018,Actors,@TheRealKMcKidd,"RT @msdebbieallen: As a parent, I'm sickened by what our gov’t is doing. We have to stand up for these children who are going to sleep in a…" +06/15/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: .@SpeysideSession turns 6 today! + +Lovely album by @TheRealKMcKidd & friends with proceeds going to @SavetheChildren + +Get di…" +06/12/2018,Actors,@TheRealKMcKidd,Proud of my director pal @GemmaFairlie ! Go and see it if you happen to be in Bonny scotland ! :) https://t.co/ogagbMl3C9 +06/06/2018,Actors,@TheRealKMcKidd,RT @SavetheChildren: @TheRealKMcKidd Thank you so much for your support of children in need during time of crisis. We're on the ground in… +06/06/2018,Actors,@TheRealKMcKidd,"Agreed, be vigilant where you choose to donate - make sure it is a reputable charity https://t.co/Rwl1Erqyqe" +06/06/2018,Actors,@TheRealKMcKidd,#guatemala #volcano- donate to this @SavetheChildren site if you can. It’s truly awful the unfolding situation there https://t.co/dumGx1xBvA +06/06/2018,Actors,@TheRealKMcKidd,#Guatemala is in a huge human crisis right now! #volcano is ongoing and affecting thousands - donate to #Redcross https://t.co/COf5D7LsF1 +06/06/2018,Actors,@TheRealKMcKidd,Where is the donation sites for #Guatemala volcano victims? +06/06/2018,Actors,@TheRealKMcKidd,"RT @ItsMutai: This is not a movie. This is the reality in Guatemala Yesterday when a Volcano erupted and killing 75 people, and 200 people…" +06/06/2018,Actors,@TheRealKMcKidd,"RT @NPR: Guatemala Volcano Toll Rises To 75, 200 Still Missing https://t.co/riJhLZfUIq" +05/29/2018,Actors,@TheRealKMcKidd,"RT @THR: 6 of Hollywood's top actresses unload on the power of producing, onscreen nudity (male and female), learning to say no and the bet…" +05/25/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: East coast are you watching? #RedNoseDay 🔴 https://t.co/u07BGrOk4g +05/25/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: Looking back at @TheRealKMcKidd's 2016 ""FUN-raiser"" for @RedNoseDayUSA Thanks to @caterinatweets @sarahdrew @EllenPompeo fo…" +05/22/2018,Actors,@TheRealKMcKidd,RT @byshondaland: It was @msdebbieallen’s dedication to youth that made her the perfect fit to shoot @Dove’s self esteem project. The tripl… +05/18/2018,Actors,@TheRealKMcKidd,This young man .. I remember taking him to… https://t.co/WvqbJDp15C +05/18/2018,Actors,@TheRealKMcKidd,This https://t.co/hFaPgYny1j +05/18/2018,Actors,@TheRealKMcKidd,Every possibility ;) https://t.co/gEJM4i2ADh +05/18/2018,Actors,@TheRealKMcKidd,Kim is such a talent and a pro and real person !! Love her https://t.co/qfR2u7per8 +05/18/2018,Actors,@TheRealKMcKidd,Whenever Jessica and I had a scene together - we had a ball !!! #mrandmrshunt https://t.co/IeHqVKlG0L +05/18/2018,Actors,@TheRealKMcKidd,"Remind me - I have a few BTS pics from Jolex wedding , I’ll post over the next few weeks ;)" +05/18/2018,Actors,@TheRealKMcKidd,This https://t.co/ZaiFDDG4pb +05/18/2018,Actors,@TheRealKMcKidd,Too many to mention ! https://t.co/2QdmBR3VXn +05/18/2018,Actors,@TheRealKMcKidd,"Honestly , I truly don’t know https://t.co/MWstzqNfDv" +05/18/2018,Actors,@TheRealKMcKidd,Yo! https://t.co/vF4MXHg9wd +05/18/2018,Actors,@TheRealKMcKidd,"He will , he will be face timing her to figure stuff out ! https://t.co/NweIaEW4pl" +05/18/2018,Actors,@TheRealKMcKidd,Yup https://t.co/BjwrFiDZWp +05/18/2018,Actors,@TheRealKMcKidd,11 https://t.co/2QdYxxXCNx +05/18/2018,Actors,@TheRealKMcKidd,"Jaw, dropper - 2 words needed only https://t.co/CfZ7jOLYxK" +05/18/2018,Actors,@TheRealKMcKidd,"Clueless , as excited to find out as you are ! https://t.co/aXx7aaQBjD" +05/18/2018,Actors,@TheRealKMcKidd,Be Smart And Honest https://t.co/gKTTWx6fbr +05/18/2018,Actors,@TheRealKMcKidd,"Progressive , blended family. Might work https://t.co/qNvIcSJ3hx" +05/18/2018,Actors,@TheRealKMcKidd,Me too https://t.co/sm6yF47Ync +05/18/2018,Actors,@TheRealKMcKidd,"Nope , pretty much never https://t.co/zp0LGAgAf9" +05/18/2018,Actors,@TheRealKMcKidd,That’s how the cookie crumbles sometimes. #complications #workingtitle @greysabc https://t.co/S0RejPiZs5 +05/18/2018,Actors,@TheRealKMcKidd,"I think when it comes to doing the right thing- Owen shows up, it’s in his DNA to show up https://t.co/vNhCiw6RtM" +05/18/2018,Actors,@TheRealKMcKidd,I’m not sure teddy is in any mood to talk to Owen r now.... he messed up.. he messes up a LOT ! ;) https://t.co/8vk93KOi7h +05/18/2018,Actors,@TheRealKMcKidd,Too many to mention she is my sister https://t.co/AbNYusvbaw +05/18/2018,Actors,@TheRealKMcKidd,Her joy https://t.co/cp3xWOg8qi +05/18/2018,Actors,@TheRealKMcKidd,"I think it’s clear there emotions are drawing them closer again, it’s inevitable between those two. The rest .. it’… https://t.co/dPlMoyU87E" +05/18/2018,Actors,@TheRealKMcKidd,Just chilly - it worked so well for the scene and that moment https://t.co/o57LoNOQlu +05/18/2018,Actors,@TheRealKMcKidd,Hey !! https://t.co/Cycgl02LoV +05/18/2018,Actors,@TheRealKMcKidd,"It’s crazy! In a super fun way, it’s always most interesting to play characters who are under huge pressure in life… https://t.co/aXdpm3ayxf" +05/18/2018,Actors,@TheRealKMcKidd,@workinprgress Here ya go ! #onsofawatchingfinale #selfie @GreysABC https://t.co/MqCdcRTFDq +05/18/2018,Actors,@TheRealKMcKidd,Be careful what you wish for !!! https://t.co/RNzDbVQg64 +05/18/2018,Actors,@TheRealKMcKidd,I’ll get y’all one ;)) https://t.co/QRItLZfLNm +05/18/2018,Actors,@TheRealKMcKidd,I agree https://t.co/XMT8J1DsP7 +05/18/2018,Actors,@TheRealKMcKidd,He is sad So sad https://t.co/rf5xpODspd +05/18/2018,Actors,@TheRealKMcKidd,@GreysABC season finale ! Send me questions :)) +05/18/2018,Actors,@TheRealKMcKidd,I hope so too ! https://t.co/bQvJBBLBZe +05/17/2018,Actors,@TheRealKMcKidd,RT @ashleybreports: Tonight is the #GreysAnatomy Season 14 finale! Check out my exclusive interview with star @TheRealKMcKidd as he talks a… +05/14/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: Our guy Kevin @TheRealKMcKidd pics from @TheWrap photo shoot + +Article https://t.co/GAuVwKeZeS + +📷 @shannafisher +Creative Dir…" +05/14/2018,Actors,@TheRealKMcKidd,On this beautiful Mother’s Day evening... Welcome- little Aiden to… https://t.co/ZupUFnA9Si +05/11/2018,Actors,@TheRealKMcKidd,@iamlk kicking medical ASS ! To get this CU just perfect ;) haha @GreysABC https://t.co/TvkzQT7PqV +05/11/2018,Actors,@TheRealKMcKidd,@GreysABC wanna see a cool BTS in trauma room ?? +05/11/2018,Actors,@TheRealKMcKidd,Yes we do!! Surfs up! Let’s go all go ;) x https://t.co/3BZGgMrpAU +05/11/2018,Actors,@TheRealKMcKidd,Thx!! Sarah is my screen sister https://t.co/mRFnLHlOo2 +05/11/2018,Actors,@TheRealKMcKidd,RT @GreyAnatomy24x7: 'Grey's Anatomy' Star Kevin McKidd Talks Sarah Drew's Exit: 'Owen Hunt Is Going to Struggle' - SFGate https://t.co/HUT… +05/03/2018,Actors,@TheRealKMcKidd,Wow! 10 years ?? Unreal... was an honor Michelle. Let’s celebrate soon K x https://t.co/ZY0ZSRT1yV +05/01/2018,Actors,@TheRealKMcKidd,RT @FosterMore: A big thanks to @GreysABC for challenging traditional perceptions of foster care in a genuine and hopeful way. If you tuned… +04/27/2018,Actors,@TheRealKMcKidd,No ! I love acting too much :) https://t.co/VD5hzn61Hm +04/27/2018,Actors,@TheRealKMcKidd,I did https://t.co/fMGYnuMJ4L +04/27/2018,Actors,@TheRealKMcKidd,Beaches ! https://t.co/I4V90bCOtX +04/27/2018,Actors,@TheRealKMcKidd,Thx ! Enjoy the episode everyone ? https://t.co/xgw3wbQ3nR +04/27/2018,Actors,@TheRealKMcKidd,Fun fact - @jtimberlake song ‘Say Something’ tonight during surgery - such a great fit +04/27/2018,Actors,@TheRealKMcKidd,Her passion and sense of fun https://t.co/prslSK0uKS +04/27/2018,Actors,@TheRealKMcKidd,Leo!! Best on set baby EVER !! truly https://t.co/CDOb9kpvlF +04/27/2018,Actors,@TheRealKMcKidd,Scottish food ! https://t.co/Szm5Klkq2I +04/27/2018,Actors,@TheRealKMcKidd,Collaborating https://t.co/Vlso4U9Jn4 +04/27/2018,Actors,@TheRealKMcKidd,Hard one ! Surgery sequence !! https://t.co/5WTaMCi2G8 +04/27/2018,Actors,@TheRealKMcKidd,Around.. 22? I think https://t.co/wqhzEh7l9d +04/27/2018,Actors,@TheRealKMcKidd,He did indeed ! And it was great https://t.co/rpN4rzCrUS +04/27/2018,Actors,@TheRealKMcKidd,I begin #livetweeting @GreysABC now !!!! https://t.co/nagEuMCHur +04/27/2018,Actors,@TheRealKMcKidd,RT @Hols242: I am a foster parent. It is the most challenging and rewarding job in the whole world! I hope tonight’s @GreysABC episode will… +04/26/2018,Actors,@TheRealKMcKidd,Had a blast @TheWrap yesterday ! Thx everyone there !! Enjoy :) https://t.co/lU1qPpsxH3 +04/25/2018,Actors,@TheRealKMcKidd,Who that be ? ;) https://t.co/WMEubcScFA +04/24/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: Excited that our guy @TheRealKMcKidd is on @people @peopletv #chatter show answering questions today :) Tune in at https://… +04/24/2018,Actors,@TheRealKMcKidd,I am LIVE on @peopletv #chatter talking all things #GreysAnatomy. Use #chatter to ask me questions https://t.co/JrdIdNRuWw +04/24/2018,Actors,@TheRealKMcKidd,"RT @people: It's about to go down! Watch #chatter tonight at 5 pm PT/8 pm ET with @rocsidiaz, co-host @cherylburke, and #GreysAnatomy star…" +04/17/2018,Actors,@TheRealKMcKidd,Time in the canyons. #finale @greysabc ;) https://t.co/ZtZOGnrHHW +04/12/2018,Actors,@TheRealKMcKidd,@KMcKOnline @instagram Yah!!! +04/12/2018,Actors,@TheRealKMcKidd,Did it today ;) https://t.co/KISVDamBEz +04/11/2018,Actors,@TheRealKMcKidd,"Actually .. on left , Rosie ( cocker/J russel mix, on right Patch ( springer sp) center is Pippa - offspring of pat… https://t.co/wJNvW7igyB" +04/10/2018,Actors,@TheRealKMcKidd,Directing @GreysABC #1421 w partner in crime and badass DP #Ross. Matching stance ! https://t.co/VAIvs80chV +04/09/2018,Actors,@TheRealKMcKidd,@IrvineWelsh On ya go Shirley !!! +04/06/2018,Actors,@TheRealKMcKidd,This !!!@IamSandraOh :))) https://t.co/peJkGmCiSL +04/04/2018,Actors,@TheRealKMcKidd,RT @byshondaland: Who remembers Nurse Olivia? https://t.co/ZZgmG3ibGr +04/03/2018,Actors,@TheRealKMcKidd,Yes ! Go @Matt_Morrison ! https://t.co/uJG7jyiyj9 +04/02/2018,Actors,@TheRealKMcKidd,It’s true ;) https://t.co/SvAO35IivB +04/01/2018,Actors,@TheRealKMcKidd,Hey ! Such a long time since Coleman Rd ! You guys still love there :) https://t.co/BcitRMfXko +03/30/2018,Actors,@TheRealKMcKidd,RT @erfinchie: @TheRealKMcKidd made it look like a freaking movie and @KimRaver made it feel like a freaking dream. From Take One. #BTS #Gr… +03/30/2018,Actors,@TheRealKMcKidd,@GreysABC fans ! Help me decide ! Follow and suggest ! X https://t.co/Qd5AZ20a8w +03/30/2018,Actors,@TheRealKMcKidd,Tough one ! #overshareOwen https://t.co/QRkmTGZlxG +03/30/2018,Actors,@TheRealKMcKidd,Noticed !! https://t.co/n8dNApGLSz +03/30/2018,Actors,@TheRealKMcKidd,Oi!!!! https://t.co/zwSAqa9yey +03/30/2018,Actors,@TheRealKMcKidd,Thankyou https://t.co/XBZR63AxL3 +03/30/2018,Actors,@TheRealKMcKidd,Hi there !! https://t.co/oDDmYA24nV +03/30/2018,Actors,@TheRealKMcKidd,"@saulrubinek everyone ... #emmy nom , best supporting" +03/30/2018,Actors,@TheRealKMcKidd,"Maybe ... hard for people to take a step back from there own s**t sometimes , yknow ? https://t.co/tnJBzqkDRN" +03/30/2018,Actors,@TheRealKMcKidd,@EllenPompeo and #Scott NAILED IT!!! https://t.co/HmUlwmfk5C +03/30/2018,Actors,@TheRealKMcKidd,I doubt he would stab pigs now .. he’s grown out of that https://t.co/BXttktYBSc +03/30/2018,Actors,@TheRealKMcKidd,Thankyou https://t.co/6r2jdnrTBG +03/30/2018,Actors,@TheRealKMcKidd,The best ! https://t.co/hyyPEc4H4k +03/30/2018,Actors,@TheRealKMcKidd,I would like that https://t.co/KIX1c1ekQF +03/30/2018,Actors,@TheRealKMcKidd,That’s kinda the point https://t.co/Vd2nBCyQzt +03/30/2018,Actors,@TheRealKMcKidd,Being able to tell stories that move people till my last breath https://t.co/TzATzCSp1F +03/30/2018,Actors,@TheRealKMcKidd,"Start , just start — seek it out https://t.co/VDH4P0saFx" +03/30/2018,Actors,@TheRealKMcKidd,Always yes https://t.co/cVG6KJGQnb +03/30/2018,Actors,@TheRealKMcKidd,Sarah ... I can’t - special time filming this little piece of magic with you https://t.co/cx1QrZHiAa +03/30/2018,Actors,@TheRealKMcKidd,Be sad https://t.co/htbDgoBWuq +03/30/2018,Actors,@TheRealKMcKidd,Teddy Germany apartment ... take a bow and lap of honor #BrianHarms and everyone who made it ! Thankyou !!! +03/30/2018,Actors,@TheRealKMcKidd,Indeed .. https://t.co/SDihukXEof +03/30/2018,Actors,@TheRealKMcKidd,Louis Jordan playing in the teddy Owen scene by the fire ! Listen to Louis !! Makes life happy +03/30/2018,Actors,@TheRealKMcKidd,Our job is done - this is the point ... to FEEL something https://t.co/azuJSxGvhx +03/30/2018,Actors,@TheRealKMcKidd,Impulsive https://t.co/yRXSimoFGc +03/30/2018,Actors,@TheRealKMcKidd,Flawed https://t.co/C78GRZZFfU +03/30/2018,Actors,@TheRealKMcKidd,And the Iraq flashback episode https://t.co/CFSrtzSZgv +03/30/2018,Actors,@TheRealKMcKidd,"This one , by far https://t.co/CFSrtzSZgv" +03/30/2018,Actors,@TheRealKMcKidd,To act - all the teddy Owen scenes. To direct - Kepler and Levi https://t.co/UkL2pXvJyu +03/30/2018,Actors,@TheRealKMcKidd,Staying relaxed https://t.co/tQ99dcmH3u +03/30/2018,Actors,@TheRealKMcKidd,Watch and see https://t.co/3PAFV1hLEP +03/30/2018,Actors,@TheRealKMcKidd,6 hours on set 6 hours in editing. Now tweeting ;) https://t.co/c5i2odDB35 +03/30/2018,Actors,@TheRealKMcKidd,:) https://t.co/pwu3ftufd5 +03/30/2018,Actors,@TheRealKMcKidd,I think so . People do unexpected stuff sometimes. Wait and see https://t.co/WfYBD5HPSw +03/30/2018,Actors,@TheRealKMcKidd,I’m proud of it. Thx https://t.co/fU7JWSLIO4 +03/30/2018,Actors,@TheRealKMcKidd,"In total , 4 https://t.co/58A1ytAhnC" +03/30/2018,Actors,@TheRealKMcKidd,Look up ‘80/20 relationships’ https://t.co/M6Cso57ipz +03/30/2018,Actors,@TheRealKMcKidd,Ep 1421 https://t.co/w5XNtXiPx3 +03/30/2018,Actors,@TheRealKMcKidd,It was a blast https://t.co/PKBiBKxqrD +03/30/2018,Actors,@TheRealKMcKidd,Nice guy ! Bye ;) https://t.co/9PKpay9YHD +03/30/2018,Actors,@TheRealKMcKidd,I did ;) https://t.co/pVFBPNXz8B +03/30/2018,Actors,@TheRealKMcKidd,Hey folks ! Ep 1417! +03/30/2018,Actors,@TheRealKMcKidd,Love that set! love that actor ! One of the best scene partners in the business @GreysABC https://t.co/v4YIvT7Z8t +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Does this not look like the coziest scene ever? #GreysAnatomy https://t.co/8bDVhC3RL8 +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Mer out here saving lives #GreysAnatomy https://t.co/9GlMaEzR9X +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: ❤️ #GreysAnatomy https://t.co/clc5IbqbIq +03/30/2018,Actors,@TheRealKMcKidd,And @saulrubinek for best supporting ;) #takesavillage https://t.co/4z80ck5D7F +03/30/2018,Actors,@TheRealKMcKidd,I directed it - so yes ! https://t.co/4z80ck5D7F +03/30/2018,Actors,@TheRealKMcKidd,RT @duchovlet: Very nice @TheRealKMcKidd interview covering more than @GreysABC 👍👏✊✌ https://t.co/jcewt8zsD5 +03/30/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: I am deeply in love with tonight's episode of #GreysAnatomy + +Masterfully written and directed by @erfinchie and @TheRe…" +03/30/2018,Actors,@TheRealKMcKidd,RT @msdebbieallen: Tonight’s @GreysABC is a MUST see!!!💋 #GreysAnatomy https://t.co/naXdmPphrn +03/30/2018,Actors,@TheRealKMcKidd,Finch !! You beyond knocked this script out of the park! Was a true honor to help guide the process ;) @GreysABC https://t.co/SPnWPuluut +03/29/2018,Actors,@TheRealKMcKidd,"RT @sarahdrew: Tonight’s episode was one of my all time favorites! Beautifully written by the incomparable @erfinchie , directed by the ama…" +03/29/2018,Actors,@TheRealKMcKidd,Thx team trauma bud ! You n @saulrubinek killed it !! https://t.co/HsX03fbkxu +03/29/2018,Actors,@TheRealKMcKidd,RT @GreysABC: This just keeps getting better and better. #TGIT is all new TOMORROW! #GreysAnatomy https://t.co/r2P5P5CbFN +03/29/2018,Actors,@TheRealKMcKidd,"@GreysABC tonight, west coast , I WILL be #LiveTweet the episode I directed #1417 :) see ya then ! Kev" +03/28/2018,Actors,@TheRealKMcKidd,"RT @THR: |n Studio | #GreysAnatomy: @TheRealKMcKidd talks ""celebratory"" season 14 finale https://t.co/pNTToaDF8L https://t.co/m57qhz69kl" +03/28/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: SNEAK PEEK 3 #GreysAnatomy 1417 ""One Day Like This"" / written by @erfinchie & directed by @therealkmckidd + +https://t.co/Gqi…" +03/28/2018,Actors,@TheRealKMcKidd,RT @GreysABC: 👀👀👀 All-new #GreysAnatomy this THURSDAY! https://t.co/8Py1LtrFpz +03/28/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: We're seeing double (Directors, that is)! #GreysAnatomy | 📷: @therealMCkidd (cc: @iJesseWilliams ) https://t.co/jdpAjFyDB7" +03/25/2018,Actors,@TheRealKMcKidd,RT @davidhogg111: I'm ready to change America and save lives are you? +03/25/2018,Actors,@TheRealKMcKidd,RT @RWitherspoon: I’m so proud of these students who are using their voices to speak Truth to Power. I support @AMarch4OurLives @Everytown… +03/25/2018,Actors,@TheRealKMcKidd,RT @byshondaland: Can't make it to the #MarchForOurLives? Here's how you can still help. https://t.co/X33jrtLzf4 +03/25/2018,Actors,@TheRealKMcKidd,"RT @JasonWGeorge: America, + +This is your #wakeupcall + +#marchforourlives +@barrett_doss @D_SAVRE @GiacomoKG @sean_m_maguire https://t.co/La…" +03/24/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: #NationalPuppyDay @TheRealKMcKidd https://t.co/mjTwg0ONAf +03/24/2018,Actors,@TheRealKMcKidd,RT @mckiddsoh: @TheRealKMcKidd happy #NationalPuppyDay ❤️ https://t.co/s9nL8sgHVw +03/23/2018,Actors,@TheRealKMcKidd,@GreysABC hey y’all ! Enjoying tonight’s all new Greys ??? :) +03/22/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: Before we save them, @Station19 has to rescue them. Watch the premiere of #TGIT's newest show THURSDAY, 9|8c, after #GreysAna…" +03/22/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: ""The only rule is, there are no rules"" #GreysAnatomy is back on TONIGHT! https://t.co/he1xzVVBdU" +03/21/2018,Actors,@TheRealKMcKidd,"It’s not ‘my’ concert ..;) but I WILL be playing a few tunes w pals, Dan, Pat, Kira this Sunday 7pm @GMTheatre_org… https://t.co/dbH7M5saDy" +03/19/2018,Actors,@TheRealKMcKidd,Learning to sail with my best boy #weekendwarriors #fathersontime https://t.co/3sbwIUcR31 +03/16/2018,Actors,@TheRealKMcKidd,"Me n @iJesseWilliams , both directing our episodes on the same day ! You go Jesse !@GreysABC https://t.co/FP30zFFHDn" +03/14/2018,Actors,@TheRealKMcKidd,Go to my insta for video ;) +03/14/2018,Actors,@TheRealKMcKidd,"Nope, just last scene on my episode silly;) https://t.co/YCFen0Tuua" +03/14/2018,Actors,@TheRealKMcKidd,Nope https://t.co/boScrcXVyQ +03/14/2018,Actors,@TheRealKMcKidd,Hands up who wants see a vid of the moment @sarahdrew wrapped last scene on @GreysABC #1421 that I had honor to direct??;) +03/14/2018,Actors,@TheRealKMcKidd,"This scene we were shooting AS Sarah found out her amazing news. A truly lovely, lovely moment :) @KellyMcCreary… https://t.co/gCcaSptflo" +03/14/2018,Actors,@TheRealKMcKidd,@KellyMcCreary @GreysABC I forgot to include @sarahdrew tag :) oops +03/14/2018,Actors,@TheRealKMcKidd,"This scene we were shooting AS Sarah found out her amazing news. A truly lovely, lovely moment :) @KellyMcCreary… https://t.co/Mzp0CRrCA6" +03/14/2018,Actors,@TheRealKMcKidd,Sarah !!!!! You go go go GO!!! So proud xxxx https://t.co/lvx5I5f7Ja +03/13/2018,Actors,@TheRealKMcKidd,"@greysabc bake off fun and nonsense! Me, @ellenpompeo and debs on a sugar rush , post judging ! https://t.co/WthE95ierX" +03/13/2018,Actors,@TheRealKMcKidd,Yes we do ! https://t.co/VZOvXAmqA3 +03/12/2018,Actors,@TheRealKMcKidd,"RT @JChambersOnline: It's the Great #GreysAnatomy Bake Off! 🍰🥧🍪 + +Judges: @7JustinChambers @therealjpickjr @EllenPompeo @TheRealKMcKidd @msd…" +03/12/2018,Actors,@TheRealKMcKidd,First prize winner !! And @TonyTphelan presenting ;) https://t.co/Fhk60uhzZy +03/12/2018,Actors,@TheRealKMcKidd,And the winners are ..!! :)) https://t.co/sW5XToYCPm +03/12/2018,Actors,@TheRealKMcKidd,@greysanatomy bake off ;)) https://t.co/fZAQHrzw64 +03/08/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: Someone's child died today. + +Someone's child died. + +At school. + +Don't go numb to this. + +Fight like hell. + +#NeverAg…" +03/05/2018,Actors,@TheRealKMcKidd,RT @tinybuddha: Every day is a new beginning. Take a deep breath and start again. https://t.co/2eKacIUg57 +03/03/2018,Actors,@TheRealKMcKidd,My best Bison impression.... ;) https://t.co/kpus255p7L +03/03/2018,Actors,@TheRealKMcKidd,My three wet pups are the best! Been thru thick and thin together - shot by pal @IainR0bertson https://t.co/dNsk6iDazd +03/03/2018,Actors,@TheRealKMcKidd,This.. my mum and dad. Central California. No filter...Into there sunset https://t.co/9MIsTQKktS +03/03/2018,Actors,@TheRealKMcKidd,Blast from past! Me- 1st year drama student. Circa 1992-93. Note Walkman headphones and ‘actor scarf’ https://t.co/LmemgjrsyD +03/03/2018,Actors,@TheRealKMcKidd,Driftwood salvage #Pfeifferbeach #BigSur https://t.co/SVZpwMhDaw +03/02/2018,Actors,@TheRealKMcKidd,Great cause Rebecca ! https://t.co/NypB3xdE5C +03/02/2018,Actors,@TheRealKMcKidd,RT @GreysABC: RT to welcome @Station19 to the #TGIT family! +03/02/2018,Actors,@TheRealKMcKidd,RT @shondarhimes: People. TONIGHT is the night. Grab your popcorn and wine because it’s going to be good. #TGIT #TGITCrossover +02/28/2018,Actors,@TheRealKMcKidd,RT @RWitherspoon: I’m encouraging my kids & all children in this country to March for Our Lives. We have let their schools & communities be… +02/28/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: Dear #Teenagers - + +I was called a ""rabble-rouser"" in H.S. bc I would not stay silent in the face of injustice. + +The ad…" +02/27/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Get your heart monitors ready for the #TGITCrossover Event this THURSDAY starting with #GreysAnatomy at 8|7c on ABC. https://… +02/25/2018,Actors,@TheRealKMcKidd,RT @krassenstein: BREAKING: United Airlines has just announced that they have notified the NRA that they will no longer offer a discounted… +02/25/2018,Actors,@TheRealKMcKidd,RT @ABC: A growing number of companies have decided to sever corporate ties with the National Rifle Association since the deadly school sho… +02/25/2018,Actors,@TheRealKMcKidd,"‘Darkness at Noon’, Arthur Koestler . Just begun but it’s very good https://t.co/1CTDqwWMd5" +02/25/2018,Actors,@TheRealKMcKidd,And now.. this! Book reading by wood fire in Big Sur ? Happening ;) https://t.co/vKjRsDLRGy +02/25/2018,Actors,@TheRealKMcKidd,#bigsursunset people ! Pretty special https://t.co/wAOTWTUnG0 +02/25/2018,Actors,@TheRealKMcKidd,"RT @BeauWillimon: As of today, @Emma4Change now has more followers than the @NRA. It happened in less than two weeks. + +This is a movement.…" +02/25/2018,Actors,@TheRealKMcKidd,"RT @krassenstein: The following companies have cut ties with the NRA over the last 24 hours. + +- Enterprise +- Wyndham +- Metlife +- Hertz +- B…" +02/25/2018,Actors,@TheRealKMcKidd,Quite a reading spot ... #bigsursunset https://t.co/qvNRrlEiB7 +02/24/2018,Actors,@TheRealKMcKidd,Big Sur this morning . So beautiful. https://t.co/h9bePPhU3H +06/30/2018,Actors,@KatieHeigl,We missed you @RickHoffman_ but thank you for the amazing dinner recommendation! Let’s go every Friday night from h… https://t.co/eWIkEf60RI +06/30/2018,Actors,@KatieHeigl,Had a much needed date night at an incredible restaurant last night with @joshbkelley Sometimes it’s nice to get ou… https://t.co/mV7YOywnWq +06/26/2018,Actors,@KatieHeigl,"When a cat is rescued, a new furry best friend is made. And since your #LitterForGood support got Friends for Life… https://t.co/52r5QQRKnI" +06/25/2018,Actors,@KatieHeigl,"I discovered @FourBlocksSouth and their gorgeous home decor items exploring Toronto, my new home away from home! I… https://t.co/4CqeU2gkcK" +06/23/2018,Actors,@KatieHeigl,@JRBEASLEY2 @hvnlydays It is! 😀 +06/23/2018,Actors,@KatieHeigl,Adalaide spent a week in dance camp so tonight she was our choreographer for a spontaneous dance party in the kitch… https://t.co/JWubu7bH3k +06/22/2018,Actors,@KatieHeigl,"RT @hvnlydays: Love coffee? Get your caffeine fix with @KatieHeigl's delicious new obsession Matcha Chai Latte. Read all about it in ""Sweet…" +06/20/2018,Actors,@KatieHeigl,Sunset in Toronto. ❤️ #nofilternecessary A heavenly moment captured by my heavenly husband @JoshBkelley that made i… https://t.co/R2YKPnk8SF +06/18/2018,Actors,@KatieHeigl,"I meant @hvnlydays, When will Twitter add that edit function..." +06/18/2018,Actors,@KatieHeigl,Subscribe to https://t.co/RN3HXEzFyO to be the first to get my list! And follow @thoseheavenlydays for more ways t… https://t.co/wm8nGbJhW8 +06/18/2018,Actors,@KatieHeigl,"...exhausting even, but you’re happiness is worth it! 😏 Stay tuned for a new blog series listing all the places… https://t.co/cSGFYOpfPN" +06/18/2018,Actors,@KatieHeigl,Got off work early on @suits_usa and decided to try the highly touted mojito at #sassafrazrestaurant in Toronto. I… https://t.co/MHEUJ7elkD +06/17/2018,Actors,@KatieHeigl,Happy Father’s Day to a couple of my favorite fellas! Grateful doesn’t even begin to cover it but grateful I am for… https://t.co/g2HLvOR6DS +06/16/2018,Actors,@KatieHeigl,This sweet girl made us the most delicious French toast this morning. When did she become grown up enough to do suc… https://t.co/gUgwl17Zgn +06/13/2018,Actors,@KatieHeigl,@MITalle @Suits_USA @RickHoffman_ @GabrielMacht @sarahgrafferty @DuleHill @AmandaSchull Thanks! For sure. I think everyone will. +06/13/2018,Actors,@KatieHeigl,Can’t wait to see where the chips fall this season on @Suits_USA ! So excited to be part of a show I LOVE!! Thanks… https://t.co/vrhwObjSlM +06/13/2018,Actors,@KatieHeigl,@washington_nat Sure is. My first movie - a long time ago! +06/12/2018,Actors,@KatieHeigl,"Cats Pride has promised 1,574,112 pounds of donated litter so far through the @CatsPride #LitterForGood program. Am… https://t.co/W4FxS1kniy" +06/08/2018,Actors,@KatieHeigl,"She knows her worth and is empowered by her value. +She’s got heart and soul and will show you both if you’ve earned… https://t.co/lggfPvZ1zK" +06/08/2018,Actors,@KatieHeigl,"The best part of BEING Samantha Wheeler, is BELIEVING I’m Samantha Wheeler! Girls got me feeling #empowered She nev… https://t.co/E6EFKraJpO" +06/04/2018,Actors,@KatieHeigl,"...a new job & find myself with a new trailer. With a little, or rather a LOT of help from my friend Lisa we were a… https://t.co/usJ2em54EK" +06/04/2018,Actors,@KatieHeigl,Today on the https://t.co/SQ2cAcHZiP is a post devoted to my TV trailer makeover. My trailer on set is where I spen… https://t.co/RGnAi6lmat +05/28/2018,Actors,@KatieHeigl,I just love browsing for artisan treasures - beautiful items made with skill & craft that make wonderful gifts or t… https://t.co/xONTOaO3PZ +05/27/2018,Actors,@KatieHeigl,@7JustinChambers @Suits_USA @EW ❤️ +05/27/2018,Actors,@KatieHeigl,https://t.co/0urK59AYRC +05/27/2018,Actors,@KatieHeigl,Been having a blast exploring some of the awesomeness of Toronto! Like #brickworksmarketplace. The best part of cit… https://t.co/sood2wuc0F +05/25/2018,Actors,@KatieHeigl,@NormanGoldenll @Suits_USA @EW Thank you! 🙂 +05/25/2018,Actors,@KatieHeigl,"So excited to share that I’ll be making my @Suits_USA debut in the season premiere on Wednesday, July 18th at 9/8c.… https://t.co/ekFaHnoSs8" +05/24/2018,Actors,@KatieHeigl,Remembering this moment from the upfronts with @SterlingKBrown & @KChenoweth. Two people I'm very fond of personall… https://t.co/ldYN5Xyaed +05/23/2018,Actors,@KatieHeigl,"“Truckloads” of litter. Literally! Thanks to your support, @IndCatSociety received 4.5 PALLETS of donated litter fr… https://t.co/3lICukwO3j" +05/22/2018,Actors,@KatieHeigl,Spent the weekend with family in Buffalo. Just a two hour drive from our home away from home in Toronto. ITINERARY:… https://t.co/l3wk19XOU8 +05/22/2018,Actors,@KatieHeigl,RT @SmithSmitherrs: Great time with @KatieHeigl on @Suits_USA #Season8 https://t.co/tnCCPlz3bl +05/17/2018,Actors,@KatieHeigl,...apple blossoms with two incredibly photogenic daughters and one cranky son. Next came gelato which was enjoyed a… https://t.co/WD3HzCxoUY +05/17/2018,Actors,@KatieHeigl,...disappointment that my mind was not properly read and it ensures my day is exactly what I hoped for!… https://t.co/nejRftmQZY +05/17/2018,Actors,@KatieHeigl,My Mother’s Day was perfect this year. Let me tell you why...because I told @JoshBkelley and the kids exactly what… https://t.co/Dw7OtrN7xk +05/16/2018,Actors,@KatieHeigl,You know what’s really really fun? Being 16 months old and realizing that you can do this super awesome thing calle… https://t.co/lr4pywUaT7 +05/15/2018,Actors,@KatieHeigl,"Last Hope Cat Kingdom picked up donated litter from @CatsPride, thanks to your nominations & support. It's already… https://t.co/ntVK6RMPk2" +05/15/2018,Actors,@KatieHeigl,RT @JoshBkelley: While katie got her glam on for the #nbcuniversal #upfronts I took… https://t.co/H1OAFhuCzq +05/15/2018,Actors,@KatieHeigl,In NY for @NBCUniversal upfronts with @joshbkelley Fully took advantage of not having the kids with us & snuck off… https://t.co/lf3A2TuWVl +05/14/2018,Actors,@KatieHeigl,"""As mothers and daughters, we are connected with one another. My mother is the bones of my spine, keeping me straig… https://t.co/zF0SX5eWXp" +05/14/2018,Actors,@KatieHeigl,loving and kind and everything I hope to be someday. Talk about leading by example... Happy Mother’s Day Mom. +05/14/2018,Actors,@KatieHeigl,...the night about each of her children’s well being. She believes in God despite being disappointed by him a time… https://t.co/pwyXOeAvGX +05/14/2018,Actors,@KatieHeigl,...a perforated ulcer. She laughs easily and with great joy. She never forgets to tell you she LOVES you. She never… https://t.co/uwD2HtqI81 +05/14/2018,Actors,@KatieHeigl,This is my mother. She is extraordinary. I’m not just saying that because it’s Mother’s Day and she’s my mother. It… https://t.co/0o7G6rRHKv +05/12/2018,Actors,@KatieHeigl,"...in a fruity, creamy smoothie and shrugging casually when they ask why they taste salad...🤔😏❤️" +05/12/2018,Actors,@KatieHeigl,"We, the Kelley’s, declare this day Super Smoothie Saturday and on this day we will imbibe delicious, nutritious and… https://t.co/XzA1kTGqns" +05/11/2018,Actors,@KatieHeigl,Sometimes morning snuggles include a baby fist to the face...but it’s worth it. #thoseheavenlydays are made by forc… https://t.co/wxjjqW5zrW +05/10/2018,Actors,@KatieHeigl,This was 2 years ago for a post on a goodies to give mom for Mother’s Day. Crazy how short my hair was! Crazier tha… https://t.co/C6dkQdr6Gz +05/09/2018,Actors,@KatieHeigl,...I’m not sure which of these I like better...the cool couple version...or the can’t keep it together one. I guess… https://t.co/4rgjvojKco +05/09/2018,Actors,@KatieHeigl,Got off work on @suits_usa early and was able to steal @joshbkelley away to have a leisurely lunch with me at a gor… https://t.co/Lgd8EGwYkI +05/07/2018,Actors,@KatieHeigl,@sophie75756675 Hope you had a great birthday! ❤🎂🍾 +05/07/2018,Actors,@KatieHeigl,"I love everything, everything about this moment! Except that I’m standing over them taking a photo instead of layin… https://t.co/69g6i72WMm" +05/06/2018,Actors,@KatieHeigl,"...existence and filled every nook, cranny and corner of my souls with the most profound love. I wish I had an e… https://t.co/OPT6cXUdkX" +05/06/2018,Actors,@KatieHeigl,When @JoshBkelley and the girls arrived yesterday afternoon I cried. It has been far too long since I held my perfe… https://t.co/Y391U7VJvF +05/05/2018,Actors,@KatieHeigl,The girls made a pit stop in DC on their way to Toronto. @joshbkelley got this great shot at the Washington Monumen… https://t.co/TDFIZ82ztp +05/04/2018,Actors,@KatieHeigl,Can you tell I just had a manicure? 😏 So deeply in love with this super nude gel polish I just had to show it off!… https://t.co/o4UgVBtGrl +05/03/2018,Actors,@KatieHeigl,"...and text, drink and text...basically just don’t do anything else while texting! Thanks @KeithFollett for the gen… https://t.co/LQ0GsZdzEL" +05/03/2018,Actors,@KatieHeigl,Twisted my ankle at work a couple of weeks ago...trying to walk down stairs and text at the same time. Let the fact… https://t.co/IdrMzWZL4i +05/02/2018,Actors,@KatieHeigl,❤️ Simple joys are the best! ❤️ #thoseheavenlydays are full of easy laughs and simple pleasures! For more of Those… https://t.co/CBoMAahZJI +05/01/2018,Actors,@KatieHeigl,Every dollar shelters save can go directly towards helping more cats. Since you've already raised 1039000 POUNDS of… https://t.co/XpLb8whAuJ +04/30/2018,Actors,@KatieHeigl,Being a boss! #SmanthaWheeler has a badass office that I am thoroughly enjoying pretending is mine! @Suits_USA… https://t.co/ZPo5D6DNOa +04/28/2018,Actors,@KatieHeigl,@Orsi24 🍾Happy Anniversary! 🍾 +04/28/2018,Actors,@KatieHeigl,So grateful to all my girls for making their way to Toronto to keep me company until the rest of my brood gets here… https://t.co/tC2yRoJF0D +04/28/2018,Actors,@KatieHeigl,"Touring Toronto with my girl Tasia Steffensen. We’ve had the perfect weekend imbibing lots of pink drinks, hitting… https://t.co/yOrCI8RqQU" +04/27/2018,Actors,@KatieHeigl,"Follow @hvnlydays and check out weekly finds that make my days even more heavenly! +#thoseheavenlyfinds" +04/27/2018,Actors,@KatieHeigl,When your iPhones face recognition feature won’t work just cause you’ve got a mud mask on... #thoseheavenlydays inc… https://t.co/AZnG6jYomZ +04/26/2018,Actors,@KatieHeigl,"I have such great kids...which is why I bought myself this mug. 😏 +#thoseheavenlydays are all about parenting with c… https://t.co/igQnXJS5ba" +04/25/2018,Actors,@KatieHeigl,"Go Mapleleafs!! You’ve got two new fans root root rooting for the home team! +#thoseheavenlydays include a win from… https://t.co/I8Ma4HWymr" +04/22/2018,Actors,@KatieHeigl,"...people when they feel seen, heard and valued. When they can give and receive without judgement” Thank you for ma… https://t.co/Mx3w6YIsWM" +04/22/2018,Actors,@KatieHeigl,"Maybe we have...just a little...but our sisterhood remains beautifully, profoundly intact and I could not be more i… https://t.co/pqsz5xNt9b" +04/22/2018,Actors,@KatieHeigl,some of us have raced off on our paths post high school and lost contact but we have all recently reconnected and t… https://t.co/gl5JdwYsQA +04/22/2018,Actors,@KatieHeigl,"...traffic and leaving their families just to spend a couple of days with me in Toronto. There is nothing, and I me… https://t.co/ISFebph3ZY" +04/22/2018,Actors,@KatieHeigl,Just had a soul renewing long weekend with my high school girlfriends. A few were missing and they were deeply miss… https://t.co/QeaA46N7Cd +04/18/2018,Actors,@KatieHeigl,"#reunitedanditfeelssogood ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ +#thoseheavenlydays are brighter and better with my children! O… https://t.co/OnoGihLTBD" +04/17/2018,Actors,@KatieHeigl,My two favorite fellas just landed in Toronto & I’m peeing my pants with excitement!! It’s been TOO LONG!! Thank yo… https://t.co/Q4SdRASUDy +04/17/2018,Actors,@KatieHeigl,"Amazing! After Tennessee River Rescues received donated litter through @CatsPride’s Litter for Good program, they w… https://t.co/mKOGwhwfPm" +04/16/2018,Actors,@KatieHeigl,If you’re in the midst of an endless winter too or just in the mood for some biscuit goodness (sorry that sounded a… https://t.co/39amIwKNNf +04/16/2018,Actors,@KatieHeigl,"Oh by the way, new post up on the blog detailing @joshbkelley and his deliciously easy and decedent homemade biscui… https://t.co/onkYYSMnsv" +04/16/2018,Actors,@KatieHeigl,All by myself...don’t wanna be all by myself anymore...🎤🎶 Oh me? I’m just hanging...in Toronto...in the freezing ra… https://t.co/MclQ45vNJp +04/13/2018,Actors,@KatieHeigl,Missing this beauty so hard right now...thanks @joshbkelley for the gorgeous pics of my little model! ❤️❤️❤️❤️❤️❤️… https://t.co/3w8sJLJabi +04/12/2018,Actors,@KatieHeigl,Forgot to mention my new post on https://t.co/SQ2cAcHZiP. It's all about the transition I’ve had to make from stay… https://t.co/azQebCUiFO +04/11/2018,Actors,@KatieHeigl,...for never ever letting me down or giving up on me! I love you more than I can even properly express and you are… https://t.co/LL7QTY4Qe3 +04/11/2018,Actors,@KatieHeigl,I’m a day late and a dollar short but I HAD to post in honor of #nationalsiblingday and let the world know my siste… https://t.co/qIZKJfaT86 +04/10/2018,Actors,@KatieHeigl,Day 2 on the set of @suits_usa getting my hands wrapped for a kickboxing scene. My character #SamanthaWheeler is no… https://t.co/OTCsBtvEA7 +04/04/2018,Actors,@KatieHeigl,It is this extraordinary creatures birthday. Adalaide Marie Hope Kelley is many many wonderful and perfect things!… https://t.co/rHVjvs72Tn +04/01/2018,Actors,@KatieHeigl,My Easter Crew! Miss this bunch like crazy but incredibly grateful for FaceTime! Little man doesn’t understand when… https://t.co/OXJawSrvgf +03/30/2018,Actors,@KatieHeigl,@JuliaKayPorter Pattern info is in an earlier post - the link to it is at the end of the text in the article you re… https://t.co/ihaoy2oxi5 +03/30/2018,Actors,@KatieHeigl,#suitsfans guess where I am!!!! Geeking out in #LouisLitts office on the set of Suits in Toronto!! I’m pretty damn… https://t.co/njV85HFNU1 +03/28/2018,Actors,@KatieHeigl,"Find out how @catspride is Changing Litter for Good®, helping shelter cats across the country. Watch this video wit… https://t.co/fo8FTkiYpY" +03/24/2018,Actors,@KatieHeigl,"I know it’s a bit last minute but... #happynationalpuppyday from me and my besties! +#thoseheavenlydays are full of… https://t.co/oqLtsfPGYU" +03/24/2018,Actors,@KatieHeigl,@kayla34919988 ❤ +03/22/2018,Actors,@KatieHeigl,"Sharing is caring! 😳😂 +#thoseheavenlydays include a loyal companion made even more so with cheese bribes! https://t.co/L8YB21wkQm" +03/20/2018,Actors,@KatieHeigl,@Vickiej3 Yes you do. I'm super excited to be heading to Toronto soon to shoot some @Suits_USA +03/20/2018,Actors,@KatieHeigl,What do you think I can pair this coat with?! I’d love some suggestions!! +03/20/2018,Actors,@KatieHeigl,Ok so here’s another look I put together for my trip. I adore this @katespadeny #madisonavecollection coat but I’ve… https://t.co/grN5lpa5pe +03/19/2018,Actors,@KatieHeigl,Spent the weekend putting together looks and trying to pack for an upcoming work trip to LA and then straight to 6… https://t.co/TBPAMOz2dU +03/17/2018,Actors,@KatieHeigl,A couple of my favorite smiles ❤️❤️ @joshbkelley #thoseheavenlydays https://t.co/q5CqUPlwwP +03/16/2018,Actors,@KatieHeigl,“Hi!” 👋 Happy Friday Friends! Part two of my favorite baby finds is up now on https://t.co/SQ2cAcHZiP check it out… https://t.co/7Hg1ttxsWE +03/14/2018,Actors,@KatieHeigl,Sitting on a lawn overlooking the ocean with a splashy sunset makes feeling joyful pretty easy. But last night sitt… https://t.co/Yj3aWrYeCv +03/14/2018,Actors,@KatieHeigl,"Now home in wintery UT the whole trip feels like just a dream. The beauty of the experience, and there was a lot of… https://t.co/Dwg215jdb8" +03/14/2018,Actors,@KatieHeigl,We celebrated our last night in Mexico with a white party on the lawn overlooking the ocean. What a truly spectacul… https://t.co/wQBWoVNSIP +03/13/2018,Actors,@KatieHeigl,@wecantstwop @catspride Happy belated birthday! Hope you had a wonderful day. 🎂❤️ +03/13/2018,Actors,@KatieHeigl,"That time I rode in a green van and nearly adopted 30 cats. 😍Check out this video with me and Dan Jaffee, head of… https://t.co/HkPc4dY4qA" +03/11/2018,Actors,@KatieHeigl,Every parent has a few favorite baby products they can't live without - I'm no exception! Items that make life a li… https://t.co/xDsUUDeTE1 +03/07/2018,Actors,@KatieHeigl,https://t.co/78Y9dGiCMQ +03/07/2018,Actors,@KatieHeigl,https://t.co/Ke4QCQBUkv +03/07/2018,Actors,@KatieHeigl,Mis Amores...❤️❤️❤️❤️❤️❤️ #thoseheavenlydays https://t.co/o9d8I4PHb7 +03/05/2018,Actors,@KatieHeigl,https://t.co/zxZZ4ezN0W +03/05/2018,Actors,@KatieHeigl,https://t.co/zovzmmFLDw +03/05/2018,Actors,@KatieHeigl,"#thoseheavenlydays are plentiful in this extraordinarily beautiful, peaceful serene spot in Mexico. I may never lea… https://t.co/EwLChOV7RG" +03/03/2018,Actors,@KatieHeigl,https://t.co/ok9XX62flN +03/03/2018,Actors,@KatieHeigl,https://t.co/oNUjAsE4Mj +03/03/2018,Actors,@KatieHeigl,From ❄️ to 🌞 First family vacation in two years...man am I grateful to be here! #thoseheavenlydays are sun soaked… https://t.co/99r8fBev4t +02/27/2018,Actors,@KatieHeigl,How can you help save millions of shelter cats? One green jug at a time! Cat's Pride donates a pound of litter for… https://t.co/VqHyaM3uw6 +02/27/2018,Actors,@KatieHeigl,@sarfatishelley Happy belated birthday! 🙂 Hope you had a wonderful day. ❤️🎂 +02/27/2018,Actors,@KatieHeigl,@mariaelena726 They grow up way too fast! Can scarcely believe she is 9 already. +02/27/2018,Actors,@KatieHeigl,"This girls got the greatest giggle on the planet earth. I live to make her laugh! ❤️❤️❤️❤️ +#thoseheavenlydays are f… https://t.co/wxnNhFFDoc" +02/24/2018,Actors,@KatieHeigl,"This boy is taking Cheerio munching to the next level. 😏👶🏼❤️ +#thoseheavenlydays https://t.co/dYcaBpus0a" +02/22/2018,Actors,@KatieHeigl,#thoseheavenlydays are all about making a positive difference in another beings life. #hourglassunderground +02/22/2018,Actors,@KatieHeigl,Hourglass Underground provides young girls in foster care with a perfect fitting bra for Prom! Head to… https://t.co/Rps91Uqng1 +02/22/2018,Actors,@KatieHeigl,Another shot in my underwear. I realize it’s starting to feel gratuitous but this ones for a good cause! On… https://t.co/gxpvxUqS0n +02/21/2018,Actors,@KatieHeigl,Anybody in LA this weekend feel like stepping out with your kiddos for a wonderful cause?! I really really hope so!… https://t.co/bE42JUmXQL +02/20/2018,Actors,@KatieHeigl,Finally finished a couple of knitting projects! Ponchos and socks...perfect cozies for our winter wonderland temper… https://t.co/sL9cqCVw0U +02/19/2018,Actors,@KatieHeigl,"work to snap back into shape but it is time to make the strength, fitness and overall health of my body a priority… https://t.co/XleKNFdOOh" +02/19/2018,Actors,@KatieHeigl,"I won’t lie, the workouts are real ass kickers but the progress I’ve made in only 5 short weeks has kept me motivat… https://t.co/7X0qS1nY7u" +02/19/2018,Actors,@KatieHeigl,it out. I found a fantastic app called #sweat that features several different #bbg programs you can choose from and… https://t.co/32FVvRFnzZ +02/19/2018,Actors,@KatieHeigl,under that belly somewhere! I was wholly and totally inspired by Miss @rachparcell and the before and after pics sh… https://t.co/8paTDRh81i +02/19/2018,Actors,@KatieHeigl,"Anyway, I have a beach vacation coming up, a new job I start filming in April and my deep desire to feel fit, stron… https://t.co/0hOYmB8U8f" +02/19/2018,Actors,@KatieHeigl,The second pic was taken almost a full year later and the last pic was taken this weekend. I wish I had a few from… https://t.co/9jEIx5u0NH +02/19/2018,Actors,@KatieHeigl,It’s been almost 14 months since Joshua Jr was born and it has taken me about that long to really get back in shape… https://t.co/lISixwM7aX +02/16/2018,Actors,@KatieHeigl,Adalaide Marie meditating behind a row of wild animal figurines...I have no idea why but I’m into it! Thanks… https://t.co/FVnBsRhURR +02/15/2018,Actors,@KatieHeigl,"RT @richiefrieman: Hey, @SXMTheHighway @stormewarren @buzzbrainard will you please play on repeat, @JoshBkelley new song/video ""Loves You L…" +02/15/2018,Actors,@KatieHeigl,❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ #thoseheavenlydays https://t.co/b13WV1Iudz +02/14/2018,Actors,@KatieHeigl,"For all those bakers out there looking for a last minute, and I mean LAST minute, gift idea for your Valentine's Da… https://t.co/NCzwpxKa4H" +02/14/2018,Actors,@KatieHeigl,I’m a little biased but I think it’s the sh*t! HAPPY VALENTINES DAY EVERYONE!! ❤️😍❤️😍 +02/14/2018,Actors,@KatieHeigl,If you’d like to hear said song and see said glorifying video be sure to check out Josh's new single #lovesyoulikeme https://t.co/UgpmN7VUSi +02/14/2018,Actors,@KatieHeigl,"Me: Ummm...nope. That oughta do. Oh and, ummm...is there anything you might like for Valentines Day? Maybe a box of… https://t.co/yiLFoZBvRv" +02/14/2018,Actors,@KatieHeigl,"""@JoshBkelley: Hey honey is there anything you’d like for Valentines Day, I mean besides the song I wrote for you a… https://t.co/QPv0M8K48i" +02/14/2018,Actors,@KatieHeigl,Can't wait for this! Don't forget to tune in! #ABC2020Romance https://t.co/D6Qfg3YvzB +02/13/2018,Actors,@KatieHeigl,@alana452 @ABC2020 Thanks - yes it is. We shot up here in Utah. 🙂 +02/13/2018,Actors,@KatieHeigl,Had an absolute blast hosting tonight’s 20/20 romance special! Spend an afternoon talking about my favorite film ge… https://t.co/l7eZJBLFdv +02/13/2018,Actors,@KatieHeigl,Help save millions of shelter cats just by sharing this video & visiting https://t.co/ywYQR3dlD8! Watch me with… https://t.co/hqoo14BQa0 +02/13/2018,Actors,@KatieHeigl,@kradwkbw Close! About 30 minutes from Park City. 😃 +02/13/2018,Actors,@KatieHeigl,RT @ABC2020: Why do you love romantic movies? @KatieHeigl explains why she enjoys watching couples fall in love on the big screen. Katherin… +02/12/2018,Actors,@KatieHeigl,Why is the chubby weight of a baby such a joy maker?! I can not get enough of squeezing on this kids delicious ro… https://t.co/S8D6xGDK6q +02/11/2018,Actors,@KatieHeigl,@GreisenErika Thank you so much! ❤ +02/10/2018,Actors,@KatieHeigl,@alana452 Yes all of them! 😀😂 +02/10/2018,Actors,@KatieHeigl,One of them found his home with me...meet the newest member of the Kelley family Sergeant General Major Sir. Named… https://t.co/sPjnxLdVQD +02/10/2018,Actors,@KatieHeigl,My @JasonHeiglFound took 12 of the older dogs who needed more medical care. I’m thrilled to say that as of today al… https://t.co/YArAvCz1eo +02/10/2018,Actors,@KatieHeigl,"The @animalfndlv swiftly stepped in, got the dogs medical care and assessed each one. They did a phenomenal job car… https://t.co/7m21PXW5kf" +02/10/2018,Actors,@KatieHeigl,A couple of months ago a UHaul truck was found abandoned by the side of the road in Las Vegas. When police officers… https://t.co/QJKvauTOUa +02/08/2018,Actors,@KatieHeigl,RT @ABC2020: What really happened behind-the-scenes of the biggest movie moments? Join @KatieHeigl​ and the iconic stars of romantic movie… +02/08/2018,Actors,@KatieHeigl,"Our annual ""Night Before"" bash made celebrating the start of 2018 a much more chilled experience. 🍷🍾 Tomorrow on… https://t.co/cbag571BdZ" +02/05/2018,Actors,@KatieHeigl,Current mood...gazing at the heavens just trying to figure it all out. I’m getting there...every day a little close… https://t.co/5DSq85cWIs +02/02/2018,Actors,@KatieHeigl,"Don’t really have the words to describe how much @joshbkelley new single means to me, but I’ll try! I am alight in… https://t.co/O6tDVUNwQo" +02/01/2018,Actors,@KatieHeigl,@NikkyBriggs1 Thank you! I am very curious about that myself. +02/01/2018,Actors,@KatieHeigl,@twin278 Yes you should! 😀 +02/01/2018,Actors,@KatieHeigl,@ArianaChristod1 @Suits_USA Me too! +02/01/2018,Actors,@KatieHeigl,@valedest93 Yes! 💗 +02/01/2018,Actors,@KatieHeigl,I JUST GOT LITT UP!!! For anyone who doesn’t know what that means... start binging #Suits ASAP!! I could not be mor… https://t.co/g9NelgGxge +01/30/2018,Actors,@KatieHeigl,It is the love of my life @joshbkelley 's birthday today and he’s about to get on a plane and travel to Europe to p… https://t.co/senWJpcxd3 +01/29/2018,Actors,@KatieHeigl,A rare moment when Gracie feels calm enough to sit in my lap and let me love her. If you saw my #savinggrace video… https://t.co/SBg7HQabYD +01/28/2018,Actors,@KatieHeigl,@wecantstwop @HouseofHerrera @breaksprison Happy belated birthday! ❤🎂🍾 +01/26/2018,Actors,@KatieHeigl,"Another great shot by my niece! I’m telling you, get your teenager a camera - make them earn their keep 😉 And up no… https://t.co/dG5WEClG1C" +01/25/2018,Actors,@KatieHeigl,"Over 3 million cats enter our shelters every year. Over half of them are euthanized. Learn how you can help, and no… https://t.co/oHR0lKRVSG" +01/23/2018,Actors,@KatieHeigl,We gave my niece a camera for Christmas. Now I make her do all my photo shoots for the blog...the gift that just ke… https://t.co/IlPVq47Itq +01/21/2018,Actors,@KatieHeigl,Oh and I found the most delicious small batch jam on #Etsy. For a link and 9 more fantastic artisan finds check out… https://t.co/bKuLLCDyu2 +01/21/2018,Actors,@KatieHeigl,"Sunday morning traditions. Sleeping in late, snuggles in bed, and @joshbkelley famous homemade biscuits. Famous cau… https://t.co/lEa44pDSHp" +01/20/2018,Actors,@KatieHeigl,Check it out you guys! ❤️ https://t.co/x6i5mfNNB2 +01/19/2018,Actors,@KatieHeigl,@MidwestSkies @PrincessWahoo You got it.. a space had to go... 😀 +01/19/2018,Actors,@KatieHeigl,Today's blog post is an inside look at my glorious birthday trip to NYC last month. Check it out for all the pics a… https://t.co/GlOaz3kaBl +01/19/2018,Actors,@KatieHeigl,"So @joshbkelley captured some truly beautiful morning views today...😏😮 +PS. New post on https://t.co/SQ2cAcHZiP this… https://t.co/CRcJSiaZbU" +01/18/2018,Actors,@KatieHeigl,RT @InStyle: .@KatieHeigl really wants to make a 27 Dresses sequel—but with a hilarious twist. https://t.co/nskaldb5B1 https://t.co/T8uTRj7… +01/18/2018,Actors,@KatieHeigl,On top of a bar I hope... ❤️ 😃 https://t.co/xGtxZaGw0n +01/18/2018,Actors,@KatieHeigl,It has been 10 whole years since I had the privilege of getting to be apart of one of my favorite projects 27 dress… https://t.co/DMXjUNAa0i +01/18/2018,Actors,@KatieHeigl,"Help save the lives of shelter cats every time you buy Cat’s Pride® Fresh & Light® litter. Dan Jaffee, head of… https://t.co/NDGaVp7nkO" +01/17/2018,Actors,@KatieHeigl,"Remember when bath time brought you this much joy? Good times, good times. #thoseheavenlydays are full of heavenly… https://t.co/mNBD4UqMyK" +01/15/2018,Actors,@KatieHeigl,Me? I’m just staring off into the great wide open contemplating my future & how to ensure a great 2018. Or I’m asle… https://t.co/BEliMbd5xE +01/12/2018,Actors,@KatieHeigl,"@venusinthenight Sorry to hear about you pup, but glad she made it. Thank you for providing a loving home to a rescue. 💗" +01/12/2018,Actors,@KatieHeigl,@lordfjd Greetings! +01/12/2018,Actors,@KatieHeigl,"Sharing all my holiday pics, menus and decor on https://t.co/SQ2cAcHZiP over the next few weeks. The first post tod… https://t.co/8oxlxYOXQ7" +01/11/2018,Actors,@KatieHeigl,RT @JoshBkelley: #puppies - katie and her mom nancy have a foundation that rescues abandoned companion animals… https://t.co/SGADepUaH1 +01/11/2018,Actors,@KatieHeigl,"Ummm....YES PLEASE, I’LL TAKE ALL THREE!!! Check out my Instagram stories for the full story of these adorable pupp… https://t.co/QU5uya17Yc" +01/11/2018,Actors,@KatieHeigl,#thoseheavenlydays include an afternoon latte with far too much foam...☕️🤓 https://t.co/X6MQSYZSmH +01/10/2018,Actors,@KatieHeigl,"Can’t stop, won’t stop kissing this kid! ❤️❤️❤️❤️❤️ and #thoseheavenlydays include lipstick kisses from mama 💄 😘 https://t.co/snOOkyighU" +01/08/2018,Actors,@KatieHeigl,"RT @hvnlydays: Is interior design your forte, or maybe you just love decorating a room? @KatieHeigl needs your help to bring a spark to her…" +01/08/2018,Actors,@KatieHeigl,RT @JoshBkelley: Love this song that I wrote a few years back for @KatieHeigl and I's kiddos. RT if it reminds you of your family and check… +01/08/2018,Actors,@KatieHeigl,@DomLinden It is called Pretend Soup. Hope that helps ❤️ +01/08/2018,Actors,@KatieHeigl,Up now on https://t.co/SQ2cAcHZiP is the full video of my office at #badlandsranch & my many decorating questions/n… https://t.co/tr3MDJ0tXC +01/07/2018,Actors,@KatieHeigl,"RT @JoshBkelley: The sooner I hit 2,000 subscribers on my @YouTube channel, the sooner you will get to hear new music. That's all I'm sayin…" +01/07/2018,Actors,@KatieHeigl,Naleigh made us breakfast this morning with a little help from #Alexa. I thought...I know she’s a robot but when as… https://t.co/uWifH40Tbn +01/06/2018,Actors,@KatieHeigl,I’m looking for some decorating advice from anyone out there who can confidently & beautifully pull a room together… https://t.co/oES1vFByb4 +01/05/2018,Actors,@KatieHeigl,Very true! https://t.co/2ZXPCkkBFJ +01/05/2018,Actors,@KatieHeigl,Awesome work! You are super talented. ❤️ https://t.co/ewv5FuUqCH +01/05/2018,Actors,@KatieHeigl,Okay I let @joshbkelley talk me back into another ride...but to be fair he did buy me my own bike with a seat that… https://t.co/tz3dzRCRFT +01/03/2018,Actors,@KatieHeigl,Trippy...still playing around with my #enlightapp even though the vote was unanimous and you guys prefer the real p… https://t.co/TyJuT0jIvt +12/31/2017,Actors,@KatieHeigl,Nothing says Happy New Years Eve like a ridiculous picture of oneself frolicking in the snow wearing Christmas jamm… https://t.co/xjPfm3HDMq +12/30/2017,Actors,@KatieHeigl,Little post holiday hike with my two favorite guys. Thanks for the pics @JoshBkelley! #thoseheavenlydays #utahlife… https://t.co/j50tKIA6pG +12/29/2017,Actors,@KatieHeigl,These two though...❤️❤️❤️❤️❤️ https://t.co/k52wb4mCaT +12/29/2017,Actors,@KatieHeigl,Yes we indulge in the matching Christmas Jammie tradition but can’t resist our sparks of individuality! Thanks aunt… https://t.co/5nC2fAqdSd +06/29/2018,Actors,@JasonWGeorge,"Come meet me at ⁦@TheEmmys⁩ ! + +Donate to help ⁦⁦@TelevisionAcad⁩ increase #diversity in TV w/ fresh young voices a… https://t.co/80s2CzAmck" +06/26/2018,Actors,@JasonWGeorge,"Join me on the red carpet at the 70th #Emmys & help create a more inclusive entertainment industry! +You can win an… https://t.co/0Jl8PvIhzu" +06/20/2018,Actors,@JasonWGeorge,"@Nick_Wechsler @Station19 Just like you said, Nick. It was great time and interesting" +06/19/2018,Actors,@JasonWGeorge,RT @TheDemocrats: This photo is absolutely heartbreaking. Republicans control the House and Senate. They have the power to end Trump’s crue… +06/19/2018,Actors,@JasonWGeorge,RT @SAGAFTRANY: #ProtectMyImage #ProtectMyVoice A company likes the sound of your voice & uses voice manipulation software to have you narr… +06/16/2018,Actors,@JasonWGeorge,"It’s great to be a working actor + +Even better if you’re blessed enough to become a star + +But that doesn’t mean peop… https://t.co/7oomJjpQOg" +06/16/2018,Actors,@JasonWGeorge,"We tryin to take @station19 #international yall!! + +Flew to #France then grabbed a chopper to #Monaco #muchlove to… https://t.co/YmyML0xrq9" +06/05/2018,Actors,@JasonWGeorge,"You have a voice +Use it! + +#vote + +#youdonthavetobutyougotto https://t.co/bsOnqf6rES" +06/05/2018,Actors,@JasonWGeorge,"With the exception of the #Superbowl itself + +I’ve never been more #proud of the @Eagles… https://t.co/tC6YXqO5Ru" +06/03/2018,Actors,@JasonWGeorge,"Hey #SouthLA #BaldwinHills #Crenshaw + +Me & #PatrisseCullors from #BlackLivesMatter and #DignityandPowerNow are com… https://t.co/xOspOJkdtU" +06/01/2018,Actors,@JasonWGeorge,"Today I #WearOrange for Scott Smith who died by gun suicide in 2014 & his daughter Celeste, who now advocates to pr… https://t.co/XQ2uBctnZW" +06/01/2018,Actors,@JasonWGeorge,"June 1 is #NationalGunViolenceAwarenessDay +Are you ready to #WearOrange? + +Join events today & tomorrow w/me and ot… https://t.co/aevtiLKOXA" +05/30/2018,Actors,@JasonWGeorge,"#bucketlist moment with #QuncyJones and my brother + +Wouldn’t mind a repeat someday https://t.co/q4TmtE76H9" +05/29/2018,Actors,@JasonWGeorge,"Often #Hollywood values #money above all + +I’ve had the #goodfortune much of my career to be employed by people who… https://t.co/GiorTlcH7H" +05/28/2018,Actors,@JasonWGeorge,Take a moment this #MemorialDay to think of those men & women you’ve never met who sacrificed everything for this c… https://t.co/xu3TuRGP6e +05/27/2018,Actors,@JasonWGeorge,"It’s Kids people + +Don’t try and shift blame +You want to be #President +Buck stops with you, #Trump + +Take… https://t.co/PV0N4Z4hkM" +05/25/2018,Actors,@JasonWGeorge,"If you’re in #LosAngeles check out @WeRise_LA #art and ideas Festival + +The #Artist reception last night was amazing… https://t.co/IoCPWSlPZc" +05/22/2018,Actors,@JasonWGeorge,So damn happy about @KimRaver gettin back in the #TGIT game https://t.co/KJgT5sqr76 +05/21/2018,Actors,@JasonWGeorge,"Support #actors fighting for a fair @sagaftra contract w/ #Telemundo + +All #Spanish language performers will benef… https://t.co/boDC52c3Um" +05/21/2018,Actors,@JasonWGeorge,"Support #actors fighting for a fair @sagaftra contract w/ #Telemundo + +All #Spanish language performers will benefi… https://t.co/vpDAF7RCKy" +05/21/2018,Actors,@JasonWGeorge,"Love workin w/ this Lady +As an #actor or as an #activist + +Right now we’re workin w/ @reformlajails + +It’ll save mo… https://t.co/Z4wWvhN7R4" +05/20/2018,Actors,@JasonWGeorge,"@gray1kj @Everytown And it takes people to stop people from killing. + +Will you help us + +Or are you a bot? +Or a Rus… https://t.co/OX4g2kzliY" +05/19/2018,Actors,@JasonWGeorge,"If you think this #Gunviolence is normal, you are not + +If you believe in the #secondamendment or are #NRA ...#help… https://t.co/dU9naIHcuy" +05/19/2018,Actors,@JasonWGeorge,"Really proud to join the #VirginiaFilmFestival Board + +Great reason to go back to #Charlottesville + + https://t.co/p9okmVxZl1" +05/19/2018,Actors,@JasonWGeorge,"#GoodTimes w/ @ZerlinaMaxwell on #SignalBoost talking all things #TGIT #Station19 & #GreysAnatomy + +#MuchLove https://t.co/17BFxIbwD2" +05/19/2018,Actors,@JasonWGeorge,"Caught up w/ my old friend @Jason_Stuart on his podcast S#!t I LOVE WITH JASON STUART + +I’ve known Jason since I sta… https://t.co/tptbXvz1zP" +05/18/2018,Actors,@JasonWGeorge,"#WestCoast !! + +It was a rough week of Kate nights so instead of #redwine tonight + +I’m having some chai in my new fa… https://t.co/wvDwffC0FH" +05/18/2018,Actors,@JasonWGeorge,"To all the @Station19 fans who’ve been there from the beginning or joined along the way + +#Thanks from the bottom of… https://t.co/Br0cnH7TM6" +05/18/2018,Actors,@JasonWGeorge,"And you know this, mane + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/H4Sec6lQ47" +05/18/2018,Actors,@JasonWGeorge,RT @jayhayden00: I’m totally fine.....right? #Station19 https://t.co/RuBKGiWjya +05/18/2018,Actors,@JasonWGeorge,"#WorkingOnIt + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/D2ARU6cqVQ" +05/18/2018,Actors,@JasonWGeorge,"Vic gettin it done +#MuchLove @barrett_doss !! + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/UIL8wEVk1A" +05/18/2018,Actors,@JasonWGeorge,"Tried to warn y’all + +We’re goin through it on #Station19 tonight + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/ljhXo9amOU" +05/18/2018,Actors,@JasonWGeorge,RT @Harparbar: One of my favorite scenes in the whole movie. Two terrific actors and a great script equals easy day for me. #Station19 http… +05/18/2018,Actors,@JasonWGeorge,"#WhatCouldPossiblyGoWrong ? + +Remember when it was a #GoodDay ? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/t5iP1OLlMp" +05/18/2018,Actors,@JasonWGeorge,"#GoodDay +#WhatCouldPossiblyGoWrong ? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/6L3St1dajS" +05/18/2018,Actors,@JasonWGeorge,"Miss you, fam! + +#mcuhlove @sipijungleboy @barrett_doss @D_SAVRE + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/I3YI2ZA9WN" +05/18/2018,Actors,@JasonWGeorge,"#LookOut !! +Ben’s got the keys now! + +#RookieMyAss + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19" +05/18/2018,Actors,@JasonWGeorge,"Are the #Fireflies down? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/UZpPy9sXbn" +05/18/2018,Actors,@JasonWGeorge,"Actually @Harparbar + +You’re the #specialsauce + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/2gyFbra4uF" +05/18/2018,Actors,@JasonWGeorge,"Right!?! + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/CjgY5XrFR5" +05/18/2018,Actors,@JasonWGeorge,"#EastCoast + +@GreysABC gave you some laughs and some tears + +Now @Station19 is gonna give you some #thrills + +#TGIT … https://t.co/UeBTKzrhLN" +05/18/2018,Actors,@JasonWGeorge,"@Harparbar @JainaLeeOrtiz @GreyDamon @barrett_doss @jayhayden00 @OakSmash @D_SAVRE @stacysmckee16 Great @Harparbar +Now I’m hungry" +05/18/2018,Actors,@JasonWGeorge,"We interrupt #TGIT to say + +#muchlove to @LuckyBrand & @Magnannishoes for helpin a brother look his best at @EW… https://t.co/rfU0yaFCdL" +05/18/2018,Actors,@JasonWGeorge,"Now can we get some love for #Teddy aka @KimRaver + +#TGIT #GreysAnatomy #Station19 @GreysABC @Station19" +05/18/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen + +Can we give some love to @TishaCampblMrtn + +#beauty and #talent never age or go out of style… https://t.co/8KZ5aMjMPI" +05/18/2018,Actors,@JasonWGeorge,"@GreysABC has got a wedding goin down folks + +#TGIT is all about love, right? +#GreysAnatomy" +05/18/2018,Actors,@JasonWGeorge,RT @msdebbieallen: Here’s a little #BTS of the final table read for Season 14 of @greysabc. Not a dry eye in the house.😪 @sarahdrew @Jessi… +05/18/2018,Actors,@JasonWGeorge,Almost missed #TGIT #GresysAnatomy #Station19 tonight because I was hangin w/ these #beautifulpeople in #NewYork fo… https://t.co/zB1Y708g9l +05/17/2018,Actors,@JasonWGeorge,"#EastCoast !! + +Lemme know if y’all are ready for the #TGIT #Finale ? +I’m in both #GreysAnatomy & #Station19 tonight… https://t.co/5sgxWYTQ9N" +05/12/2018,Actors,@JasonWGeorge,"Soooo..... + +Y’all ready to bring the #hotness back to #TGIT ? + +@Station19 #station19 https://t.co/q44exyF9lw" +05/11/2018,Actors,@JasonWGeorge,"#MuchLove @stacysmckee16 + +Any opportunity to hug on @JainaLeeOrtiz + +Can’t believe we’re almost at @Station19… https://t.co/uyl1vlFCyW" +05/11/2018,Actors,@JasonWGeorge,"Loved catching up w/ m’girl @TheRealEve and hangin with the ladies of @TheTalkCBS + +We talked about @Station19… https://t.co/ToDaPScrsj" +05/11/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen + +@Station19 finally makes it to #Joesbar ! + +#TGIT #station19 @Station19 @GreysABC #GreysAnatomy" +05/11/2018,Actors,@JasonWGeorge,"Can I give a special #ShoutOut to an old friend @sarayublue + +I mean...She’s not old...but our friendship is...neve… https://t.co/VQNXCwkHML" +05/11/2018,Actors,@JasonWGeorge,"RT @barrett_doss: Girl, you laid out looking like a beautiful mermaid on that floor!@sarayublue #Station19" +05/11/2018,Actors,@JasonWGeorge,"Maya took one for the team! + +@D_SAVRE gettin crazy + +#TGIT #station19 @Station19 @GreysABC #GreysAnatomy" +05/11/2018,Actors,@JasonWGeorge,"Lookit @stacysmckee16 makin @Station19 coordinate with @GreysABC + +#TGIT #station19 #GreysAnatomy https://t.co/mmFKJ0rYSG" +05/11/2018,Actors,@JasonWGeorge,https://t.co/LevBe2L4fZ +05/11/2018,Actors,@JasonWGeorge,#knewit https://t.co/ks9lSC5EJc +05/10/2018,Actors,@JasonWGeorge,"Hey @stacysmckee16 !! + +You got your #Officiallyfake #FakeOfficial #Station19 #hoodie yet? + +#AskStacy + +#Muchlove… https://t.co/8bi978p95r" +05/10/2018,Actors,@JasonWGeorge,It’s gonna get hot as hell on @Station19 and #TGIT tonight If you want to find out how we’re able to stand the heat… https://t.co/ZJudoU1Zcv +05/10/2018,Actors,@JasonWGeorge,"It’s gonna get hot as hell on @Station19 and #TGIT tonight + +If you want to find out how we’re able to stand the hea… https://t.co/eSGCfcQdjD" +05/10/2018,Actors,@JasonWGeorge,"#TGIT ALERT!! + +Let’s live-tweet tonight + +Only 2 episodes left @greysabc & @station19 + +Both #greysanatomy &… https://t.co/22gi8U9g8R" +05/10/2018,Actors,@JasonWGeorge,RT @HLNTV: Calling #GreysAnatomy fans! @Michaela spoke with @JasonWGeorge about his role as the doctor that's so good - he's on two differe… +05/10/2018,Actors,@JasonWGeorge,@DelShores @Michaela @Station19 @GreysABC @breakinginmovie Me or Michaela? +05/10/2018,Actors,@JasonWGeorge,"How lovely is @Michaela ? +#goodtimes choppin it up w/ her about @Station19 @GreysABC and @breakinginmovie https://t.co/wLDMf7KtVm" +05/08/2018,Actors,@JasonWGeorge,"#WOW + +We can stop talking about Ye and MAGA hats because we need to be talkin bout this here + +If you weren’t messi… https://t.co/Zek9EZyLPn" +05/07/2018,Actors,@JasonWGeorge,"Love me some #YvetteLeeBowser + +Love that @byshondaland loves her too https://t.co/qhh1R1r8nP" +05/04/2018,Actors,@JasonWGeorge,RT @JainaLeeOrtiz: When you find out there’s only 3 more episodes of #Station19 https://t.co/p7UL8vKoj6 +05/03/2018,Actors,@JasonWGeorge,"“I will pound your chest all day long” + +#Freudianslip ...or was it? + +Btw, #MuchLove to @strongsuitclothing &… https://t.co/5976FAUr5k" +05/03/2018,Actors,@JasonWGeorge,"#goodtimes w/ @ConanOBrien tonight talking @Station19 + +@TeamCoco all the way https://t.co/qhkErlYozF" +05/02/2018,Actors,@JasonWGeorge,#workingonit https://t.co/kgjRnTH610 +05/02/2018,Actors,@JasonWGeorge,#goodtimes at the premiere of @breakinginmovie premiere last night w/ producer extraordinaire @willpowerpacker &… https://t.co/sNUHVC8kXF +05/02/2018,Actors,@JasonWGeorge,"Show your #Mom you think she’s #badass this #MothersDay + +Take her to see @breakinginmovie + +I do a cameo as husban… https://t.co/tau3pA1AX9" +04/29/2018,Actors,@JasonWGeorge,"Want to tip my hat and give a #HappyBirthday to one of the most selfless people I know +@EllentheCraw is always work… https://t.co/3n2jiS9G4K" +04/28/2018,Actors,@JasonWGeorge,"RT @barrett_doss: Fun fact: the fantastic actress playing Allison (with the baby) is @nikkihayden00. She is the incredibly talented, funny…" +04/27/2018,Actors,@JasonWGeorge,"And how great is #MarlaGibbs ? + +#TVIcon + +@Station19 #Station19 #TGIT" +04/27/2018,Actors,@JasonWGeorge,"“She’s loud but she’s right “ + +—#MirandaBailey about #AndyHerrera + +And LOOK it’s Schmidt!! Aka #glasses + +@Station19 #Station19 #TGIT" +04/27/2018,Actors,@JasonWGeorge,"Be there in a minute, gang + +@Station19 #Station19 #TGIT https://t.co/l2HLRcHnJy" +04/27/2018,Actors,@JasonWGeorge,"RT @S19Writers: Fun fact: We had bystanders reporting this strip-mall fire, thinking it was real. THAT'S how awesome our crew is. #Station19" +04/27/2018,Actors,@JasonWGeorge,"RT @Station19: ""Go in there and be there for your dad."" #Station19 https://t.co/MIkkXvLn0h" +04/27/2018,Actors,@JasonWGeorge,"Hey #Firenerds + +Are y’all feelin the Travis & Grant vibe on @Station19 ? + +Let @jayhayden00 know! + +He’s Another… https://t.co/E8dDghvHqM" +04/27/2018,Actors,@JasonWGeorge,"@babsamiga !!! + +So happy I was able to Benin your very first episode of TV and also glad it was an episode of… https://t.co/0BNqseyAZg" +04/27/2018,Actors,@JasonWGeorge,"Don’t know what I love more... + +“There’s no way a powerful #blackwoman is gonna take he gal for a rich old white ma… https://t.co/cvy23VbL3V" +04/27/2018,Actors,@JasonWGeorge,"#EastCoast ! +Happy #TGIT + +Unfortunately, +I can’t watch til west coast feed + +How @GreysABC tonight? + +And are you… https://t.co/WrV8874AfZ" +04/26/2018,Actors,@JasonWGeorge,"#ChandraWilson is all over #TGIT tonight +@Station19 as well as @GreysABC + +She’s learning what I learned long ago..… https://t.co/3u7AKTYfa7" +04/26/2018,Actors,@JasonWGeorge,"Gonna try to #livetweet #eastcoast & #westcoast airings of @Station19 and @GreysABC + +Of course, I’ll be at work ma… https://t.co/eK2Em28xdY" +04/26/2018,Actors,@JasonWGeorge,"Y’all ready for #TGIT tomorrow? + +Powerful @Station19 airs right after @greysabc + +I’ll try to #livetweet during… https://t.co/a8CheXJ9S3" +04/22/2018,Actors,@JasonWGeorge,"I support @WBEZ and @sagaftra #Chicago in their fight for a fair contract. + +They need your support, too… https://t.co/erDZ6bTKBm" +04/21/2018,Actors,@JasonWGeorge,"RT @DigitalLA: Deciding to do a project: +- Is it good? +- Make content that's so specific, that it becomes universal. First Barbershop found…" +04/21/2018,Actors,@JasonWGeorge,@ANIUSHKA Eggs bacon and veggies 😜 +04/21/2018,Actors,@JasonWGeorge,RT @GreysABC: #GreysAnatomy is officially coming back for Season 15! 🎉🎉🎉 https://t.co/CFdh2oHRAw +04/20/2018,Actors,@JasonWGeorge,"#MuchLove & #Thanks @Variety & @facebook for a #GreatDay + +Granted the @Station19 crew sometimes ran when they saw… https://t.co/QIaUyu2rnh" +04/20/2018,Actors,@JasonWGeorge,RT @barrett_doss: Serious #BlackGirlMagic happening on @Station19 tonight. Episode written by @nationsfilm and directed by @zingbling. Than… +04/19/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Between @GreysABC & @ScandalABC check out @Station19 + +It’s #TheFinalScandal so Hats Off to #Scandal… https://t.co/CBIU6ul9Ki" +04/18/2018,Actors,@JasonWGeorge,"RT @ATXFestival: #Shondaland is turning up the HEAT on #ATXTVs7 with a screening of @Station19, ft. creator @stacysmckee16, casting directo…" +04/18/2018,Actors,@JasonWGeorge,#Muchlove to our friends across the pond! Hope you enjoy @Station19 https://t.co/iEww8XPT6M +04/17/2018,Actors,@JasonWGeorge,"Lookit @JainaLeeOrtiz about ta whup somebody’s tail!! + +It’s going down on @Station19 this #TGIT +after… https://t.co/KuK16L7W8L" +04/15/2018,Actors,@JasonWGeorge,"Happy #JackieRobinsonDay + +#Jackie42 is the reason I’m a @Dodgers fans + +#amazingman #lookitup #JackieRobinson… https://t.co/7Veed7atkY" +04/15/2018,Actors,@JasonWGeorge,RT @Station19: When you and bae have your own version of dirty talk. #Station19 https://t.co/2l8HxndsQ6 +04/14/2018,Actors,@JasonWGeorge,"That’s a #season14 wrap for me on @GreysABC + +Spendt it with my favorite ladies @msdebbieallen and #ChandraWilson… https://t.co/tYtLbolTRB" +04/13/2018,Actors,@JasonWGeorge,@byshondaland My jaw hit the floor when I first walked into the @Station19 set because it was so beautifully realis… https://t.co/jaIESqCjuK +04/13/2018,Actors,@JasonWGeorge,RT @byshondaland: Ever wonder how a set gets made? Here is a #bts video of our incredible team building #Station19! #TGIT #TGITHangover htt… +04/13/2018,Actors,@JasonWGeorge,@jayhayden00 @GreyDamon @JohnMRinaldi @byshondaland @JainaLeeOrtiz @D_SAVRE @barrett_doss @Harparbar @Station19… https://t.co/k57A75nvm2 +04/13/2018,Actors,@JasonWGeorge,@stacysmckee16 #MuchLove boss Much love Thanks for serving me such a great story to tell tonight +04/13/2018,Actors,@JasonWGeorge,"Y’all diggin #Station19 ? + +I would #livetweet @GreysABC & @Station19 with you guys tonight but I’m missing #TGIT be… https://t.co/JVQkcY5zCH" +04/13/2018,Actors,@JasonWGeorge,"I tried to get her on #instagram & #twitter y’all ! + +Guess you have to catch her on @greysabc and @station19 + +Whi… https://t.co/KqDcqQkjTi" +04/12/2018,Actors,@JasonWGeorge,"Did I mention that #TGIT does a #doubledip of #ChandraWilson tonight on @greysabc & @station19 + +Yup +#MirandaBailey… https://t.co/XwGwRPVE6g" +04/11/2018,Actors,@JasonWGeorge,"#TGIT has a double shot of #ChandraWilson +First she’s on @greysabc then she joins me on @station19 + +Make sure to… https://t.co/WbOoBqfoWU" +04/09/2018,Actors,@JasonWGeorge,"Wow +It’s not a game to these kids + +And they’re all about to #vote .... + +#VoteThemOut if they don’t do their jobs… https://t.co/ONBYligfeJ" +04/08/2018,Actors,@JasonWGeorge,"#greatday helping the @LAFD inspire #youngwomen to become #firefighters & #firstresponders + +@GreysABC fans will… https://t.co/IRS8OZ8ZOM" +04/07/2018,Actors,@JasonWGeorge,"#Republican reporter is persecuted by #SinclairBroadcasting for believing in fair journalism + +We all have to do mor… https://t.co/OrPkKAFLwU" +04/06/2018,Actors,@JasonWGeorge,https://t.co/Nzr20jcHDU +04/06/2018,Actors,@JasonWGeorge,"#Muchlove @barrett_doss + +...and, NO, I will not excuse you + +#Station19 #TGIT @Station19 https://t.co/1hc2SeTp7e" +04/06/2018,Actors,@JasonWGeorge,"Damn I love your mom! + +Too damn much right now! + +#MuchLove + +#Station19 #TGIT @Station19 https://t.co/gweCVIp2qO" +04/06/2018,Actors,@JasonWGeorge,"#MuchLove & +#TellAFriend + +#Station19 #TGIT @Station19 https://t.co/KdW9Oe0rfd" +04/06/2018,Actors,@JasonWGeorge,"Glad you’re diggin it + +#Station19 #TGIT @Station19 https://t.co/L6UmaI8Hvs" +04/06/2018,Actors,@JasonWGeorge,"#OliviaPope would cry at all those wine bottles going to waste + +Kind of like I did + +#Station19 #TGIT @Station19 https://t.co/opUBA5iUEh" +04/06/2018,Actors,@JasonWGeorge,"For all you #Fireflies that are feelin the music on @Station19 .... + +#Station19 #TGIT @Station19 https://t.co/yEwwfUDnRd" +04/06/2018,Actors,@JasonWGeorge,"Y’all have to catch m’girl @JainaLeeOrtiz tonight on @JimmyKimmelLive + +#Station19 #TGIT @Station19 https://t.co/QB4j17kVIQ" +04/06/2018,Actors,@JasonWGeorge,"Ya know!?! + +All up in e’rybody else’s bi’ness but won’t let nobody ask her nuttin + +#MuchLove @barrett_doss !!… https://t.co/hrgIRQttME" +04/06/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Still on set at @GreysABC and about to shoot + +Hope y’all love @Station19 tonight! + +Let me know if y… https://t.co/gdxlPJOfdn" +04/06/2018,Actors,@JasonWGeorge,"Let’s keep the @GreysABC @Station19 #doubledipping going next #TGIT ! + +Have you all met my friend #ChandraWilson ?… https://t.co/FKghqB2D36" +04/06/2018,Actors,@JasonWGeorge,"#Thanks Boss + +#Station19 #TGIT @Station19 https://t.co/eFxteLOyzM" +04/06/2018,Actors,@JasonWGeorge,RT @nationsfilm: WE DO! @S19Writers #Station19 #TGIT https://t.co/gJ03VQQ2Ee +04/06/2018,Actors,@JasonWGeorge,"#RealTalk + +I did my best... +...tried to save all the wine I could...😜 + +#Station19 #TGIT @Station19 https://t.co/xD2JR8RyGQ" +04/06/2018,Actors,@JasonWGeorge,"#Thanks +#MoreToCome + +#Station19 #TGIT @Station19 https://t.co/sEHjVA4gAh" +04/06/2018,Actors,@JasonWGeorge,Right!?! https://t.co/XbzLZqAdkV +04/06/2018,Actors,@JasonWGeorge,"NOPE! + +In fact, #retweet if you want another season of @Station19 + +#Station19 #TGIT @Station19 https://t.co/P8beVNWvnO" +04/06/2018,Actors,@JasonWGeorge,"#GETOUT !! + +#LivesBeforeRatings + +#Station19 #TGIT @Station19 https://t.co/TDE6HUIMnl" +04/06/2018,Actors,@JasonWGeorge,"I think I have the same problem + +#metoo ? #maybenot + +#Station19 #TGIT @Station19 https://t.co/4vbUXutP7R" +04/06/2018,Actors,@JasonWGeorge,"Tell ‘em @_swroblewski !! + +#Station19 #TGIT @Station19 https://t.co/TDR0D8Qx1x" +04/06/2018,Actors,@JasonWGeorge,"How great is the always phenomenal #MarlaGibbs ? + +#TVroyalty + +#Station19 #TGIT @Station19" +04/06/2018,Actors,@JasonWGeorge,"Desperately wanted to shoot the scene on @Station19 where we actually DO come back for the groceries + +@barrett_doss… https://t.co/z2oklTYzwb" +04/06/2018,Actors,@JasonWGeorge,"Was Jack tryin to BUY some boots or KNOCK some boots? + +...sorry, #lowhangingfruit + +#Station19 #TGIT @Station19" +04/06/2018,Actors,@JasonWGeorge,"Now don’t stop visiting #BedAndBreakfasts just because of @Station19 ! + +#Station19 #TGIT" +04/06/2018,Actors,@JasonWGeorge,"You know I’ma #LiveTweet @Harparbar !! + +#EastCoast !! + +You ready for @Station19 ? +Hope you enjoyed @GreysABC but… https://t.co/y92gcZbj0n" +04/06/2018,Actors,@JasonWGeorge,https://t.co/YpHiRh8Lax +04/05/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Double shot of #BenWarren tonight!! + +Catch me on @GreysABC +And then on @Station19 right afterwards… https://t.co/zZgSvyVSqN" +04/05/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Double shot of #BenWarren tonight!! + +Catch me on @GreysABC +And then on @Station19 right afterwards… https://t.co/cHz91y3x61" +04/04/2018,Actors,@JasonWGeorge,"He Spoke Out +He was Relentless +He gave his life so others would #Livebetter + +#50years since the #assassination of… https://t.co/kxfAeXQ5xd" +04/04/2018,Actors,@JasonWGeorge,"Can’t even count how many of y’all have told me stories about how you #bingewatched ALL 14 Seasons of @GreysABC + +D… https://t.co/dLo6BU9rVH" +03/30/2018,Actors,@JasonWGeorge,#MuchLove to @hulu & all Corps who believe in #manners & #decency in broadcasting & pulled ads from #LauraIngram fo… https://t.co/I5h6FbkqPf +03/30/2018,Actors,@JasonWGeorge,"#ParklandStudents should also keep #debate to issues & not personal attacks + +But I may give a pass to a 17yr old su… https://t.co/2ouBtAk0Pe" +03/30/2018,Actors,@JasonWGeorge,"Ultimate #Clapback !! +@davidhogg111 handled #LauraIngraham like a boss + +#debate the issues +NOT personal attacks… https://t.co/afmrVfpRqM" +03/30/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Time to get your @Station19 on!! + +Hope you enjoy +Happy #TGIT + +#Station19" +03/30/2018,Actors,@JasonWGeorge,"#MuchLove to all the @Station19 fans + +We appreciate you + +See you next week + +Til then.... #playinghooky + +@Station19… https://t.co/XSP4PyGEP6" +03/30/2018,Actors,@JasonWGeorge,RT @Station19: 😱😱😱 #Station19 https://t.co/wrUH1fMQvs +03/30/2018,Actors,@JasonWGeorge,"When #science goes wrong + +#DontTryThisAtHomeKids + +@Station19 #Station19 #TGIT" +03/30/2018,Actors,@JasonWGeorge,"Awww... + +But you #Teamworkmakesthedreamwork and U be the quarterback of this team @JainaLeeOrtiz + +@Station19… https://t.co/kzODqgyVJv" +03/30/2018,Actors,@JasonWGeorge,"You can thank the brilliant mind of @Harparbar our executive producer who directed the pilot + +I’d say he’s a genius… https://t.co/mjK8PjdTuR" +03/30/2018,Actors,@JasonWGeorge,"That’s so funny... + +Only reason I see myself ON @Station19 is #BenWarren + +But keep watching—the crew of #Station19… https://t.co/5Gh8qyt4y1" +03/30/2018,Actors,@JasonWGeorge,"Quick!! + +Rate your enthusiasm level for @Station19 ! + +I think I may even have that #BenWarren beat—he looks familia… https://t.co/NXV0CP8z6g" +03/30/2018,Actors,@JasonWGeorge,"Retweet if you would risk your life for an album + +I’d walk over hot coals for #purplerain + +@Station19 #Station19 #TGIT" +03/30/2018,Actors,@JasonWGeorge,"#EastCoast !! + +Y’all ready for @Station19 ? + +Happy #TGIT https://t.co/MJkYVOxY1v" +03/29/2018,Actors,@JasonWGeorge,"If you love @Station19 you have to check out the Q&A with the show creator @stacysmckee16 this afternoon + +She can a… https://t.co/QO5u0i7cFY" +03/29/2018,Actors,@JasonWGeorge,"#MONSTA aka #SteveSmith is a real life #firefighter #paramedic & part of the @station19 family + +He just earned hi… https://t.co/DcYfNwjBG5" +03/29/2018,Actors,@JasonWGeorge,"@JamesLesure @SuzyNakamura Well the jokes on you, Mr. Leisure (spelling intended) + +Because I actually carried HER… https://t.co/eP43e3pY0G" +03/29/2018,Actors,@JasonWGeorge,"@SuzyNakamura @JamesLesure Well, well, well...,We meet again, Mr. Lesure + +Don’t you wish you had the pleasure of wo… https://t.co/HNwLxLLfgm" +03/28/2018,Actors,@JasonWGeorge,"@sean_m_maguire Yeah, he does +And his godfather loves him and his big brother" +03/28/2018,Actors,@JasonWGeorge,"Last week’s #Premiere of @Station19 was #purefire + +#bluefire + +Don’t miss the next episode of #Station19 tomorrow… https://t.co/0Rk3hTkKPP" +03/27/2018,Actors,@JasonWGeorge,"I know @station19 just started and we love playing #firefighters and we already ARE a #spinoff but... + +I’d watch t… https://t.co/8w8KSKPJMm" +03/27/2018,Actors,@JasonWGeorge,A man never truly knows what he knows until he has to teach it to his child...that’s when you become a Grown-Ass Ma… https://t.co/SlM2GLvKNO +03/26/2018,Actors,@JasonWGeorge,"RT @Station19: Take the power! Exude it, and use it. #MondayMotivation #Station19 https://t.co/dYZjZOiBaN" +03/25/2018,Actors,@JasonWGeorge,"Check the poster y’all that’s: +a human being +a woman +a person of color +but most of all +a KID + +They should just be a… https://t.co/KmJLTh7p7u" +03/25/2018,Actors,@JasonWGeorge,#thankyou & #Muchlove to @AMarch4OurLives @Emma4Change @cameron_kasky & everybody igniting this spark that’s gonna… https://t.co/m09EwBgydT +03/24/2018,Actors,@JasonWGeorge,"We must find #commonground on #Guns & #Gunviolence + +I support the #SecondAmendment but we need real conversations &… https://t.co/B3XnTyu3QS" +03/24/2018,Actors,@JasonWGeorge,"America, + +This is your #wakeupcall + +#marchforourlives +@barrett_doss @D_SAVRE @GiacomoKG @sean_m_maguire https://t.co/LajDeMEDiR" +03/23/2018,Actors,@JasonWGeorge,"RT @Everytown: More than 2,700 children and teens are shot and killed and over 14,000 more are shot and injured every year. That violence d…" +03/23/2018,Actors,@JasonWGeorge,"To My Young Friends +Who #MarchForOurLives + +#ThankYou & #ImSorry + +Your biggest concern should be Prom + +Not trying t… https://t.co/ZeNatRxQHE" +03/23/2018,Actors,@JasonWGeorge,"This young lady is #myhero + +But she shouldn’t have to be + +This is why we #MarchForOurLives + +Hope to see you there… https://t.co/bs4k9aRHgV" +03/23/2018,Actors,@JasonWGeorge,"Right!?! + +That got to me too + +@Station19 #Station19 https://t.co/wxCM2tLFH5" +03/23/2018,Actors,@JasonWGeorge,https://t.co/ksbU7YWGHJ +03/23/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen, I give you... + +...#BlueFire !! + +...playing #Coachella this summer + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"Will the real #slimshady please stand up + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"Ain’t nothing wrong with a little friendly competition.....in bed + +Says your ex-boyfriend/bootycall + +#MuchLove… https://t.co/kjh4YWuWGD" +03/23/2018,Actors,@JasonWGeorge,"#HoldOn ! Ben’s day and the episode ain’t done yet + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"@OakSmash and @BrendaSong are so much damn fun to watch + +@Station19 #Station19 https://t.co/O33FYd6MqF" +03/23/2018,Actors,@JasonWGeorge,"@OakSmash and @BrendaSong are so much fun to watch + +@Station19 #Station19 https://t.co/O33FYd6MqF" +03/23/2018,Actors,@JasonWGeorge,"Hi Tuck +Who’s your friend? + +#babieshavingbabies +@Station19 #station19" +03/23/2018,Actors,@JasonWGeorge,"Where are my #FireNerds at? + +@Station19 #station19" +03/23/2018,Actors,@JasonWGeorge,@sarahdrew @Station19 @JainaLeeOrtiz ##MuchLove @sarahdrew you have no idea how much your support and #friendship m… https://t.co/r2eYeo9ZZF +03/23/2018,Actors,@JasonWGeorge,"How great was that “Get your game face on” scene with @EllenPompeo and @JainaLeeOrtiz + + @Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"@jayhayden00 is my boy but it didn’t feel good for Ben to get #schooled like that + +@Station19" +03/23/2018,Actors,@JasonWGeorge,"I’ve actually held beating hearts in my hand....also, I have a name.”—#BenWarren + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Y’all ready for the 2hr premiere of @Station19 ?" +03/23/2018,Actors,@JasonWGeorge,"#MuchLove @barrett_doss + +Such great stuff coming up on @Station19 https://t.co/ZGrFzqpUIF" +03/23/2018,Actors,@JasonWGeorge,"#realtalk + +#MuchLove @Harparbar https://t.co/z8mxG4psIo" +03/23/2018,Actors,@JasonWGeorge,#Muchlove to my fellow #southerners https://t.co/dzhwa8Wj3k +03/23/2018,Actors,@JasonWGeorge,"@greys_duh No +😉" +03/23/2018,Actors,@JasonWGeorge,"#Teapot in the middle of #bluefire was so damn hard and so much fun at the same time. + +How great is @barrett_doss… https://t.co/OA6HGqpzPM" +03/23/2018,Actors,@JasonWGeorge,"I know how you fee +@stacysmckee16 https://t.co/3otHzLNXKS" +03/23/2018,Actors,@JasonWGeorge,https://t.co/uYXlMRKsxs +03/23/2018,Actors,@JasonWGeorge,"It’s what happens when I’m trapped on a plane when I’d rather be with y’all + +#askjainajason +@Station19 https://t.co/rp3aU3x3g6" +03/23/2018,Actors,@JasonWGeorge,"#goodeye 👍🏾 + +#askjainajason +@Station19 https://t.co/NLOqlMROtW" +03/23/2018,Actors,@JasonWGeorge,#askjainajason https://t.co/8AmsIT3UIH +03/23/2018,Actors,@JasonWGeorge,"Depends on the episode + +Cutting open your best friend’s wife in a thunderstorm is pretty intense.... + +...But wait t… https://t.co/8BAmVeGgpO" +03/23/2018,Actors,@JasonWGeorge,"#MostDef + +Are you watching the 2nd hour of @Station19 ? + +#askjainajason https://t.co/Eo6Echt7MD" +03/23/2018,Actors,@JasonWGeorge,"I tried to make evey day a #poleday but the producers won’t let me. + +Sum’n bout #insurance + +#askjainajason https://t.co/fla3x79HWA" +07/01/2018,Actors,@chy_leigh,@WonderlandYears 😘 +06/29/2018,Actors,@chy_leigh,"Absolutely!! No one more qualified and more creative than you, My Friend. Thank you for all the hard work and passi… https://t.co/VqXG3gBl0P" +06/29/2018,Actors,@chy_leigh,@reginaYhicks I don’t even... I can’t ... it’s perfect. +06/29/2018,Actors,@chy_leigh,@Airstripyaks OMG... you’re amazing +06/29/2018,Actors,@chy_leigh,This is AWESOME Bianca! https://t.co/jkEsRWBTpN +06/29/2018,Actors,@chy_leigh,@DavidHarewood Can’t wait to hear about it my friend. +06/29/2018,Actors,@chy_leigh,UHMAZING! @eastofeli & 1 are so grateful for all the hard work you’ve done for all the right reasons ❤️ https://t.co/GTsbWlZSjZ +06/29/2018,Actors,@chy_leigh,@Sue__Ing @eastofeli @GibusClubParis Nous aimons Paris!! +06/29/2018,Actors,@chy_leigh,AWESOME!! We love you Sue ❤️ https://t.co/9H7z9OnKrN +06/27/2018,Actors,@chy_leigh,RT @createchange_me: Bullying comes in many forms and wears different masks. How did you overcome the bully (or bullies) in your life? Subm… +06/26/2018,Actors,@chy_leigh,"😎🇨🇦 Cast yer votes, friends! https://t.co/uyQC7UHnbV" +06/24/2018,Actors,@chy_leigh,@wrighteousj OMG OMG OMG... we did it!!! Oh Friends... it’s the little things in life that bring @eastofeli & mysel… https://t.co/GbvZSfdBnU +06/24/2018,Actors,@chy_leigh,@wrighteousj https://t.co/sD9kuluBZF +06/24/2018,Actors,@chy_leigh,@wrighteousj RTs 👀 +06/24/2018,Actors,@chy_leigh,@wrighteousj https://t.co/egKhmYmkdS +06/24/2018,Actors,@chy_leigh,@wrighteousj 🎶Ohhhhhhhh we’re halfway there!! Oh ohhhhh... Jordan’s living on a prayer! https://t.co/07dlLrQTO6 +06/24/2018,Actors,@chy_leigh,"@clan_dec @wrighteousj Well, I should think so! Release the mathematicians!! I think you can collect retweets from anywhere 🤷🏻‍♀️" +06/24/2018,Actors,@chy_leigh,@brittanylainey Any puppy you want Darling ❤️ +06/24/2018,Actors,@chy_leigh,@wrighteousj Gosh... maybe they’ll name the puppy #Krypto ... or Cupcake (cuz Jordan will have to call him/her that every time) 🤩 +06/24/2018,Actors,@chy_leigh,FRENDZ keep retweeting @wrighteousj ‘s post. Wifey wants a puppy and Jordan will get her one if there are 1K retwee… https://t.co/tzxgwlrqv3 +06/24/2018,Actors,@chy_leigh,@wrighteousj Wow... you actually posted this. Challenge accepted. RT RT RT +06/24/2018,Actors,@chy_leigh,@wrighteousj RETWEET RETWEET https://t.co/gjG5Sb4KFd +06/24/2018,Actors,@chy_leigh,@eastofeli I got you Sis! FRENDZ... WIFEY NEEDS A PUPPY! RT the hell outta this... Love you Lil’ Bro ❤️ https://t.co/eWGCRRiWMj +06/24/2018,Actors,@chy_leigh,THIS IS AWESOME!! I’m so proud of our #Supergirl family 🤗 Woo hoo!! https://t.co/1BdYZaK7wV +06/23/2018,Actors,@chy_leigh,"OMG... I LOVE READING ABOUT ALL OF YOUR WINS!! Big or little, wins come when we find moments of peace in the chaos… https://t.co/Lt34mXHOUB" +06/22/2018,Actors,@chy_leigh,@relyhc_eoe OMG THIS IS AMAZING ❤️ +06/22/2018,Actors,@chy_leigh,"@Lustranimation 😱 Whoa... that’s amazing, you gifted Little Angel!" +06/22/2018,Actors,@chy_leigh,"Sharing a personal little win for myself. Today, I did something with slightly less OCD. I didn’t mop the floor in… https://t.co/3D124lZUMx" +06/22/2018,Actors,@chy_leigh,"@yosox In all fairness (and because he’s sitting right next to me) my husband, @eastofeli came up with the idea. Wh… https://t.co/th85ITTJAf" +06/22/2018,Actors,@chy_leigh,❤️🧡💛💚💙💜 https://t.co/sPTaC9lXWN +06/21/2018,Actors,@chy_leigh,"@yosox This last Christmas, my girls got me a year’s subscription for... SOCKS. Like, literally one of my all time… https://t.co/tt29rLhazM" +06/21/2018,Actors,@chy_leigh,"Let’s do this, Friends! #RepresentationMatters https://t.co/Hmi8w1aSjl" +06/10/2018,Actors,@chy_leigh,BIFL fo RIZZLE @_TNTCreative https://t.co/TryzrRja29 +06/05/2018,Actors,@chy_leigh,J’adore Paris!! Venez nous rejoindre pour une nuit incroyable! https://t.co/QJk4SRpD9w +06/01/2018,Actors,@chy_leigh,🙌🏻🙌🏻🙌🏻 https://t.co/ZnuWdGiXGK https://t.co/hpaNUpqqH4 +05/25/2018,Actors,@chy_leigh,We LOVE LOVE LOVE you all so much!! Thank you for allowing us to be on your journey and for you to grace us with yo… https://t.co/Rhq22qk87T +05/20/2018,Actors,@chy_leigh,To Our #Newcastle #ThinkTank? Friends... a heads up 😓 https://t.co/KihJPcu12Y +05/18/2018,Actors,@chy_leigh,"@eastofeli & I are so grateful for our beautiful family... every single one of us, every single day. Family first.… https://t.co/Kjf2H2uxmS" +05/18/2018,Actors,@chy_leigh,"Friends, @eastofeli & I had a lovely time in Ireland & after much needed rest & quality time together, we realize t… https://t.co/Q8G8844saI" +05/10/2018,Actors,@chy_leigh,RT @eastofeli: The lovely & VERY #generous @reginaYhicks you are absolutely incredible... Thank you for always spreading the love😘 https://… +05/09/2018,Actors,@chy_leigh,#SimplyTheBest https://t.co/GiEdjibsBZ +05/09/2018,Actors,@chy_leigh,RT @LRudd1992: Come and see @eastofeli & @chy_leigh in Liverpool at @cavernliverpool on May 24th! Don’t miss TWO unforgettable shows! 4pm b… +05/09/2018,Actors,@chy_leigh,RT @AngLives: I'm so stoked about the #NoPowerOverMe t-shirts that I got to design with @chy_leigh 💪 Based on her latest anti-bullying arti… +05/06/2018,Actors,@chy_leigh,#LoveLitTheSkyForMeAndEOE #BeautifulDay #ThankYouVancouver https://t.co/2BNWGQcbGO +05/01/2018,Actors,@chy_leigh,"🤯 OMG YAAAAAAS BRIANA!! Blackpool Friends, you have NO IDEA what’s comin’ atcha now 😎@JeremyMJordan + @TheVenskus +… https://t.co/8ENmhlYZlu" +04/28/2018,Actors,@chy_leigh,#VegasBaby BE THERE 😎 https://t.co/zyHFJ8ZVi9 +04/26/2018,Actors,@chy_leigh,@raulson_ @eastofeli You are a force to be reckoned with! Well done for taking care of YOU ❤️ #YouMatter +04/26/2018,Actors,@chy_leigh,"@LRudd1992 What a lovely and generous lady you are, Miss Leah ❤️ Can’t wait to see you soon" +04/26/2018,Actors,@chy_leigh,THIS. IS. INCREDIBLE. I can’t even... Such a powerful testament to how authentic and relatable Maggie’s journey has… https://t.co/eQD1iHjYBY +04/26/2018,Actors,@chy_leigh,This absolutely took my breath away. A beautiful song in a beautiful setting sung by the most beautiful person I’ve… https://t.co/hy0kosZRi6 +04/25/2018,Actors,@chy_leigh,On Friday @createchange_me will publish an article I wrote called “The Bully and The Beast” on our site. @AngLives… https://t.co/9Uyzt7L3LO +04/24/2018,Actors,@chy_leigh,YAAAAAS!! Thanks for the support @TWLOHA - @eastofeli & I are glad to have you there! Tix for @PubRockLive -… https://t.co/01TvmR9DoV +04/24/2018,Actors,@chy_leigh,#MyFavoriteGals ❤️ https://t.co/caqezltlc1 +04/24/2018,Actors,@chy_leigh,@lordmesa strikes again!! Killin it Dude! I love your art work 💥👊🏻💥 https://t.co/pAnFI62huA +04/23/2018,Actors,@chy_leigh,Never been to #Scottsdale before! @eastofeli & I can’t wait to meet you all at @PubRockLive this Saturday!! Get you… https://t.co/B4fXIT9xCu +04/22/2018,Actors,@chy_leigh,Amazing music + big hugs + Friends + lifelong memories = The #EOExperience Don’t miss this giveaway!! https://t.co/wmPjbW0ron +04/22/2018,Actors,@chy_leigh,"Friends- I am awed by your #SanversMatters banner in the sky the other day. I wasn’t on set to see it for myself, b… https://t.co/43wgMhIEpU" +04/19/2018,Actors,@chy_leigh,Y’ALL... Who’s ready for some #VegasHeat🔥?! @eastofeli & I are playing an exclusive One-Of-A-Kind LIVE RECORDED aco… https://t.co/EVvhNz8boT +04/18/2018,Actors,@chy_leigh,LOVE LOVE LOVE this beautiful video created by the amazing #TeamJamber from @_TNTCreative Get a glimpse of what th… https://t.co/k6OBWj1qHR +04/18/2018,Actors,@chy_leigh,Friends... you SOOOO want to be here!! #VegasVIP #EOExperience #eoeXtour https://t.co/YYvDOCHzYa +04/18/2018,Actors,@chy_leigh,It’s Confirmed!!! YAAAAAS! FRENDZ... there are ONLY 100 TIX AVAILABLE!!! DO. NOT. MISS. THIS. https://t.co/BvaKWrx2NG +04/17/2018,Actors,@chy_leigh,YAAAAAAS!!! https://t.co/EHhoIKGkMb +04/17/2018,Actors,@chy_leigh,Friends - @eastofeli & I are SO honored to work with 2 UHMAZING organizations to bring support and awareness about… https://t.co/Y2tFEV0Ka0 +04/17/2018,Actors,@chy_leigh,@sanverscentral @TrueColorsFund @florianalima This... this warms my heart ❤️ +04/17/2018,Actors,@chy_leigh,@laurenhkramer @jonnabeer https://t.co/toGhGm3dXa +04/17/2018,Actors,@chy_leigh,@kennykraly @DavidHarewood @CarlLumbly @SupergirlRadio Some of my all time faves +04/17/2018,Actors,@chy_leigh,@sparklydanvers @TheCWSupergirl @JeremyMJordan @CarlLumbly I’ll see what I can do 🤣 +04/17/2018,Actors,@chy_leigh,@jonnabeer LOL +04/17/2018,Actors,@chy_leigh,@chyIersIeighs @TheCWSupergirl @JeremyMJordan @CarlLumbly LOL - SOOO TRUE 😎 +04/16/2018,Actors,@chy_leigh,Friends!! I’m SO EXCITED about tonight’s episode of @TheCWSupergirl !! @JeremyMJordan is phenomenal and with… https://t.co/s5EaCo3rfF +04/13/2018,Actors,@chy_leigh,Always grateful 🙏🏻❤️ https://t.co/FxvNKN0BE1 +04/07/2018,Actors,@chy_leigh,@TheVenskus @ClexaCon I LOVE YOU DUDE... #hatgameisstrong +04/07/2018,Actors,@chy_leigh,@englishride @eastofeli LOVE THIS. THANK YOU +04/06/2018,Actors,@chy_leigh,Hey @eastofeli fans... make sure you get to The Cowan Nashville tonight for free GA Tickets!! Doors open an 6pm Don… https://t.co/Zhi5r1zUHR +04/06/2018,Actors,@chy_leigh,Hey @ClexaCon friends!!! Gettin ready 2 head your way!!! Keep your eyes out for @_TNTCreative (The amazing… https://t.co/pdzdPdDynX +04/05/2018,Actors,@chy_leigh,Hey Friends - I’m getting geared up & ready for #Clexacon2018 !! Gotta make sure I get to #Vegas on time so I’m hea… https://t.co/t7PtSATtsW +04/04/2018,Actors,@chy_leigh,@ClexaCon CLEXACON CLEXACON CLEXACON!!! #AlexDanvers & I will be there Saturday FRENDZ 😎 ... Who’s gonna come by an… https://t.co/yN4cRZiVrc +04/04/2018,Actors,@chy_leigh,@AlexNPittman @eastofeli YOU ARE A DOLL!! Nathan and I loved speaking with you ❤️ +04/03/2018,Actors,@chy_leigh,"Friends, I hope y’all have an amazing time tonight w/ @eastofeli in NJ!! Wish I could teleport there. Production te… https://t.co/rUpM0Oq3XE" +04/03/2018,Actors,@chy_leigh,@reginaYhicks @TheCWSupergirl 😘 +04/03/2018,Actors,@chy_leigh,Get there quickly Friends!! Those @eastofeli tix get snatched up fast! Each #EOExperience has been completely uniqu… https://t.co/3eDvnoe1r4 +04/02/2018,Actors,@chy_leigh,"@MaddyAsi THERE YOU ARE!! It’s currently in my closet. You most certainly did not need to do that, Lady... to kindl… https://t.co/bCS7vHJ5b3" +04/02/2018,Actors,@chy_leigh,🙌🏻 https://t.co/n63alzJ0iB +04/02/2018,Actors,@chy_leigh,YAAAAAS #SupergirlSeason4 I’m so grateful for another year of the #DanversSisters and honored to represent our… https://t.co/hWXunrWHmR +03/29/2018,Actors,@chy_leigh,Thank you @TMobile for this AMAZING opportunity for the #NYC @eastofeli fans! Make sure you get to #TimesSquare ASA… https://t.co/AdJ4hfqX3g +03/28/2018,Actors,@chy_leigh,My friend @MehcadBrooks - @eastofeli and I are grateful for the shout out. Love my #Supergirl family https://t.co/nteDNPNupq +03/28/2018,Actors,@chy_leigh,"FRENDZ - @eastofeli and I are gettin’ our caffeine on right now, preparing for an amazing night at @hrcpittsburgh !… https://t.co/dAD0TJk05m" +03/28/2018,Actors,@chy_leigh,RT @AngLives: Since you've been good bunnies—hopping around w EOE shoutouts—here's a very special @eastofeli Easter Egg Goodie!🐣 Official #… +03/28/2018,Actors,@chy_leigh,YAAAS... #ChooseToBeFree 💥 #LostTransmission https://t.co/AkoCZD3F1q +03/28/2018,Actors,@chy_leigh,🔥❤️🔥 https://t.co/8Eht8K5nFy +03/27/2018,Actors,@chy_leigh,"RT @eastofeli: Still got some GA, VIP Platinum & VIP Silver tix left & wanted to make sure all you #Supergirl fans get a chance to see @chy…" +03/27/2018,Actors,@chy_leigh,"RT @DavidHarewood: Big shout out to @chy_leigh! +Best of luck for your upcoming shows on the East Coast. That’s some tour! Looks like a lot…" +03/27/2018,Actors,@chy_leigh,Thank you Friend!! https://t.co/c5zw8QyQLq +03/27/2018,Actors,@chy_leigh,@OdetteAnnable ❤️❤️❤️ +03/26/2018,Actors,@chy_leigh,"Go go go get @eastofeli #eoeXtour tix for #Pittsburgh, #NewYork, #Baltimore, #Teaneck, #Nashville & #Scottsdale ...… https://t.co/U3xI9slarO" +03/26/2018,Actors,@chy_leigh,"Whoop whoop!! Y’all in the loop! Get those tix, FRENDZ! https://t.co/HFQzxMZzna https://t.co/HKTEjzeJPy" +03/25/2018,Actors,@chy_leigh,#eoeXtour HERE WE COME EAST COAST... here’s the flier for ❤️NY @eastofeli https://t.co/qXUKYVsiX4 +03/24/2018,Actors,@chy_leigh,YES!!! #MarchForOurLives https://t.co/Id5o1H7QWb +03/24/2018,Actors,@chy_leigh,RT @eastofeli: Our NJ #EOEfamily looking forward to sharing 2 very unique & amazing #EOExperiences with you🙌🏻 email: info@eastofeli.com wit… +03/23/2018,Actors,@chy_leigh,"FRENDZ - I’m SO EXCITED for the @eastofeli #eastcoast run!! To answer u all... I’ll B in PA, on the boat in NY, MD,… https://t.co/YNy5UybTos" +03/21/2018,Actors,@chy_leigh,https://t.co/jAA710hlcw +03/21/2018,Actors,@chy_leigh,#SeeYaLaterSkaterz https://t.co/F15sphXxgN +03/17/2018,Actors,@chy_leigh,Just posted... Love you @eastofeli https://t.co/k8HQoPrlro https://t.co/Too1j71Pxf +03/12/2018,Actors,@chy_leigh,@_ariamaze @faultmypride @swinghouse ❤️❤️❤️ +03/12/2018,Actors,@chy_leigh,EPIC!!!! YAAAAS NICOLE 😍 https://t.co/KYCWRlhlju +03/12/2018,Actors,@chy_leigh,@eastofeli goers tonight... take pics for me! Make sure you’re extra loud ❤️ And tell my hubby I love him }{ +03/12/2018,Actors,@chy_leigh,"Friends, just got word from SG that they had to rearrange the schedule for Monday and they need me back 1st thing t… https://t.co/MArVInXO7n" +03/10/2018,Actors,@chy_leigh,Just FYI ... https://t.co/UGcUTZ7yNw +03/10/2018,Actors,@chy_leigh,RT @AngLives: So excited to see you all this weekend for @eastofeli ft @chy_leigh #eoeXtour LA @swinghouse 🎶 It’s been so awesome talking t… +03/10/2018,Actors,@chy_leigh,Just posted on @instagram https://t.co/vlgh27Icrk https://t.co/HFQzxNhaeI @eastofeli +03/10/2018,Actors,@chy_leigh,"RT @oahfoah: What are you doing tonight #LA? +@eastofeli #NewMusic #TONIGHT #SaturdayNight #tickets #supergirl #SwingHouse https://t.co/oe0…" +03/10/2018,Actors,@chy_leigh,@Lustranimation @eastofeli 😲 😍 +03/10/2018,Actors,@chy_leigh,"See you there, Friends!! #eoeXtour https://t.co/xuQMdyZNij" +03/10/2018,Actors,@chy_leigh,@swinghouse tonight!! Can’t wait to take the stage with @johannfrank and that sexy @eastofeli guy 😎 https://t.co/tkB52OkUMU +03/10/2018,Actors,@chy_leigh,https://t.co/jDN84J3udn +03/09/2018,Actors,@chy_leigh,@aley_leah @eastofeli Wait what? You bought ten?? +03/09/2018,Actors,@chy_leigh,"Your generosity is unparalleled, Regina Hicks. You are the queen of kindness ❤️ @eastofeli and I are so grateful fo… https://t.co/i16SPncbcT" +03/09/2018,Actors,@chy_leigh,We’z about to #GetDown so let’s turn it up @slimssf #SanFrancisco #BeThere https://t.co/LGcA3pH5yp +03/09/2018,Actors,@chy_leigh,"RT @Sue__Ing: For new and current listeners to @eastofeli @chy_leigh and @TheCityofSound, I hope you guys will have an amazing time this we…" +03/09/2018,Actors,@chy_leigh,RT @jynxisme98: #SanFrancisco the #eoeXtour featuring @TheCityofSound @eastofeli & @chy_leigh is coming 3/9! New music & merch + @TWLOHA wi… +03/09/2018,Actors,@chy_leigh,RT @createchange_me: Make it a #FabFriday #SuperSaturday & #SundayFunday by jammin w @eastofeli ft @chy_leigh in SF/LA. Visit our table & h… +03/07/2018,Actors,@chy_leigh,"Was nice to see you, Babe! Been a while 😘 Love every chance we get to sing together }{ Come see for yourself Friend… https://t.co/yS5DDCVdDG" +03/07/2018,Actors,@chy_leigh,"Late night jam w/ @eastofeli - singing, laughing, talking about tour info, @johannfrank with us for a super special… https://t.co/8avRG1Rb0Z" +03/07/2018,Actors,@chy_leigh,https://t.co/DKueSJZ9d3 +03/07/2018,Actors,@chy_leigh,"#SanFrancisco - @eastofeli & I are playing @slimssf this Friday, the 9th! Don’t miss out... Make sure you get your… https://t.co/fYA82lGJ3V" +03/06/2018,Actors,@chy_leigh,"Seeing double? @eastofeli & I are playing 2 shows in LA at @swinghouse this weekend, March 10th & 11th. The ONLY WA… https://t.co/p2t9T9QIwO" +03/05/2018,Actors,@chy_leigh,@eastofeli and I wanna see you here!! Hurry hurry!! https://t.co/bIdEMbYl07 +03/05/2018,Actors,@chy_leigh,It’s a #WestLeigh rehearsal for #eoeXtour Seattle ... Getting ready to rock @ElCorazonSEA someone snagged the phone! https://t.co/w3HSxyocEI +03/05/2018,Actors,@chy_leigh,@JAS11724 @photo_ego @ElCorazonSEA @united I’m so sorry you’re having trouble! @eastofeli & I hope you make it!! +03/03/2018,Actors,@chy_leigh,@eastofeli & I are SO honored to have @TWLOHA with us on the #eoeXtour !! Friends... make sure to stop by their boo… https://t.co/3NYl5dSOUv +03/03/2018,Actors,@chy_leigh,Tix link - https://t.co/HFQzxNhaeI https://t.co/0LCwSyfzr8 +03/03/2018,Actors,@chy_leigh,ARE U READY FOR SOME #ChildsPlay ? Here’s a little #SaturdayMotivation for what 2 expect @ an @eastofeli show 😎 Get… https://t.co/1a7U7IUVFz +03/02/2018,Actors,@chy_leigh,YAAAAY! More hugs 🤗 https://t.co/Zan5r7h61J +03/02/2018,Actors,@chy_leigh,Hey friends! make sure you check out @LollipopTheater and learn about the great work these folks are doing for some… https://t.co/bHr4Gpo0Zj +03/02/2018,Actors,@chy_leigh,OMG Friends... @eastofeli & I are SO EXCITED for this super special event! Tickets going fast 😎 Don’t miss out... T… https://t.co/4loNMcxDnV +03/01/2018,Actors,@chy_leigh,RT @eoexperience: @eastofeli #eoeXtour update: Hermosa Beach Show on March 14th has been canceled by venue. All ticket VIP/GA tickets can b… +03/01/2018,Actors,@chy_leigh,"This man makes me laugh everyday. He’s the light of my life, the apple of my eye, the catalyst for smile lines on m… https://t.co/8pGnfnl8RQ" +03/01/2018,Actors,@chy_leigh,"RT @eoexperience: 2 ALL #sanvers, #SupergirlCW & #GreysAnatomy fans b sure 2 catch @chy_leigh singing her heart out with @eastofeli At @ElC…" +03/01/2018,Actors,@chy_leigh,@eastofeli @_TNTCreative Dork Status Confirmed ✔️ +03/01/2018,Actors,@chy_leigh,💃🏻💥🕺🏻 https://t.co/ZP6cDvfEjI +02/28/2018,Actors,@chy_leigh,@ThatKevinSmith @ThatKevinSmith - I’m SO glad you’re home with your wonderful family. All of us (and I mean ALL) at… https://t.co/GFoFOcjkWt +02/28/2018,Actors,@chy_leigh,"We’re on a countdown!! In 3 days, @eastofeli @TheCityofSound & I are kicking off the #eoeXtour in #Portland and… https://t.co/oszCeox5CG" +02/28/2018,Actors,@chy_leigh,"RT @MusicOTFuture: This SATURDAY @eastofeli heads out to #Portland on the firsts stop of the #eoeXtour , grab your tix here https://t.co/i1…" +02/27/2018,Actors,@chy_leigh,#NewMusicMonday FRIENDS... make sure you (and your friends/family 😘) get tix for Portland AND Seattle this weekend… https://t.co/LUh0len63T +02/26/2018,Actors,@chy_leigh,This song is incredibly special. Our little Anni has been thru SO much in her first 8 yrs. From seizures to cross c… https://t.co/9kRdPM0RWF +02/26/2018,Actors,@chy_leigh,"RT @Sue__Ing: THIS WEEKEND! #Portland! Come join us for a night of #NewMusic from @eastofeli and @TheCityofSound, with very special Guest @…" +02/26/2018,Actors,@chy_leigh,"THIS IS EVERYTHING TO ME!! I’m SO proud of you, My Love! You’re the most passionate, most sincere, most gifted arti… https://t.co/0c58LYw2tK" +02/25/2018,Actors,@chy_leigh,RT @AngLives: Racial slurs or hate speech are not allowed and any person caught using them will be BANNED on the @createchange_me @eoexperi… +02/25/2018,Actors,@chy_leigh,"RT @AngLives: To report a specific violation of our organization's anti-bullying policy, send us a detailed message at https://t.co/zgaXGKO…" +02/25/2018,Actors,@chy_leigh,"RT @AngLives: 7️⃣of🔟 #eoeXtour Europe General Discussion is on our FORUM, all fans are welcome to post their efforts to get EOE to Europe.…" +02/25/2018,Actors,@chy_leigh,RT @AngLives: There are many fans using social media to get #eoeXtour to Europe. We love that! @MusicOTFuture runs the official European to… +02/25/2018,Actors,@chy_leigh,RT @AngLives: In partnership with @createchange_me & @MusicOTFuture we have also created the official MOTF FORUM! We invite you to check it… +02/25/2018,Actors,@chy_leigh,"RT @AngLives: 3️⃣of🔟 Every registered member of our website must agree to our Character Pledge developed by me, CEO @eastofeli & CCO @chy_l…" +02/24/2018,Actors,@chy_leigh,"AHHHHH!! I LOVE THIS @eastofeli PROMO! Well done @_TNTCreative ! Friends, this is just a glimpse of what’s to come… https://t.co/Jp6duEg3nz" +02/24/2018,Actors,@chy_leigh,Ask @eastofeli session - tomorrow at 11 PST 😎 https://t.co/n2clOP70fc +02/21/2018,Actors,@chy_leigh,Ooooooooo... that’s SEXY!! The screen are pretty cool too 😉😎 #iloveyoueoe #eoeXtour https://t.co/Sa24fr4lvN +02/21/2018,Actors,@chy_leigh,"Make sure y’all come to the #seattle #eoeXtour show! Classic venue, epic show, family and friends! @eastofeli… https://t.co/y6PE9Tlani" +02/21/2018,Actors,@chy_leigh,Retweeting my own tweet because it’s just that good! SEE Y’ALL IN PORTLAND!! Get tix now for you and your friends!… https://t.co/bcuHvb0ufN +02/19/2018,Actors,@chy_leigh,Seattle- Some of you will be at #ECCC March 3rd and I wish I could’ve been there too BUT I’m SO excited to be on s… https://t.co/bYCB0ZIp2d +02/17/2018,Actors,@chy_leigh,"PORTLAND... Where u at?! CANT WAIT to join @eastofeli & @TheCityofSound Saturday, March 3rd at the Hawthorne Theate… https://t.co/Q8fAAvRcY2" +02/14/2018,Actors,@chy_leigh,#TinselTownBaby https://t.co/iK6362Rit1 +02/13/2018,Actors,@chy_leigh,@eastofeli ❤️ Just posted on @instagram ... https://t.co/PH0HGqiU12 #eoeXtour +02/13/2018,Actors,@chy_leigh,FRENDZ!! Take the poll and let us know! I’m working overtime on my SG schedule to be at these shows! It ain’t easy… https://t.co/pLVCswVoD0 +02/07/2018,Actors,@chy_leigh,❤️ #eoeXtour ❤️ https://t.co/1PhEBNacvc +02/05/2018,Actors,@chy_leigh,👏🏻🙌🏻☝🏻 https://t.co/Bb7xaXmcfq +02/05/2018,Actors,@chy_leigh,I love love love this!!! I’m SO excited Babe!!! And what a Beautiful job @AngLives !! #eoeXtour https://t.co/AK4R1EZY0p +02/03/2018,Actors,@chy_leigh,@TheCityofSound @eastofeli #SavageSis 💥🧝🏻‍♀️💥 +01/29/2018,Actors,@chy_leigh,Alicia... OH MY HEART... This is insanely beautiful and inspiring and totally made me cry 😌 @eastofeli & I are so h… https://t.co/vtLOCH5Ak2 +01/24/2018,Actors,@chy_leigh,OMG... so many responses to @eastofeli ‘s call to arms and then his phone died!! 😆 He’s gonna start fresh tomorrow… https://t.co/2H9i7Hj4pE +01/24/2018,Actors,@chy_leigh,@_sernali 🍀 +01/24/2018,Actors,@chy_leigh,@_TNTCreative @leighslima ❤️❤️❤️ +01/24/2018,Actors,@chy_leigh,@thusspokebianca @eastofeli Love ❤️ +01/24/2018,Actors,@chy_leigh,@saanversx You got this!! +01/24/2018,Actors,@chy_leigh,@badassluthor @lgbtella @eoeftleigh @likemywaverly @fayekc_ !!! ❤️ +01/24/2018,Actors,@chy_leigh,@Ally_Mcdreamy 💘 +01/24/2018,Actors,@chy_leigh,@Nuriia_H 😍 +01/24/2018,Actors,@chy_leigh,@detectivedanvrs #Queen +01/24/2018,Actors,@chy_leigh,@leighslima 💥❤️💥 +01/24/2018,Actors,@chy_leigh,@cuddlyreyes It’s Muh Boiiiii Ryder!! ❤️ +01/24/2018,Actors,@chy_leigh,"@caIzonatorres Hey Luv, we’re still planning but we will DEF be in the UK 🇬🇧❤️" +01/24/2018,Actors,@chy_leigh,@iswearmyfealty 😍 +01/24/2018,Actors,@chy_leigh,@abbiedanvers Where are you? +01/24/2018,Actors,@chy_leigh,"Friends, there are so many more cities to announce for the #eoeXtour but we gotta show serious promise to venues &… https://t.co/R4YBFlnFjZ" +01/23/2018,Actors,@chy_leigh,RT @reginaYhicks: This! Y’all are not gonna want to miss the #eoeXtour with @eastofeli @TheCityofSound @chy_leigh kicking off in March.… +01/22/2018,Actors,@chy_leigh,FRIENDS!! GA/VIP tix 4 the #eoeXtour are on sale now!! Its a whole new experience!! #UPGRADE 😎The more cities we se… https://t.co/wUmDRbeMOr +01/21/2018,Actors,@chy_leigh,@MelissaBenoist @florianalima @caitylotz @TheVenskus @OdetteAnnable #KatieMcgrath @reginaYhicks @rreiffer12… https://t.co/6mfT4HVTWU +01/20/2018,Actors,@chy_leigh,@imjustincharles Happy birthday @imjustincharles !! ❤️ from @eastofeli & I +01/20/2018,Actors,@chy_leigh,@caitylotz @shethority #same +01/20/2018,Actors,@chy_leigh,I have so much respect for this woman! @Zendaya ... I know you don’t know me but as a mom of 2 young girls that ado… https://t.co/y2k9V0Up9C +01/20/2018,Actors,@chy_leigh,@chyleighdnvrs 😱😍 +01/20/2018,Actors,@chy_leigh,@ItsATwinThingYT This is a BEAUTIFUL video... I love that @MelissaBenoist lady. She’s pretty special 👯‍♀️ +01/19/2018,Actors,@chy_leigh,@melanie_sv2sh Hairspray and 🍀 +01/19/2018,Actors,@chy_leigh,@siqqsnaps #10 +01/19/2018,Actors,@chy_leigh,@Lustranimation This is incredible!! As always ☺️ +01/19/2018,Actors,@chy_leigh,@badassluthor @eastofeli ❤️🎵 +01/19/2018,Actors,@chy_leigh,@chylerspaget @eastofeli 😍 +01/19/2018,Actors,@chy_leigh,@sawyerregui Yaaaas!! +01/19/2018,Actors,@chy_leigh,@radziczek007 Oh my... oh oh my... this is AWESOME! 😂 +01/19/2018,Actors,@chy_leigh,@lilysbenoist @eastofeli @florianalima This means so much to @eastofeli & I! And the fact that the flower is in hon… https://t.co/Zlpx0ym7Rl +01/19/2018,Actors,@chy_leigh,"RT @starfuryevents: Don't miss out as we reunite these two amazing ladies, @chy_leigh and @florianalima at Starfury: Ultimates next May! It…" +06/30/2018,Actors,@katewalsh,Caturday relaxation goals 😴 https://t.co/6J3p1TN97k +06/29/2018,Actors,@katewalsh,"Samples are hereeee ❤️ If ur dying to smell @Boyfriend, grab this little guy. It’s only $4 AND ships for free! Get… https://t.co/hSLn0yq1AO" +06/29/2018,Actors,@katewalsh,RT @iamamyrhodes: Me listening to the new Drake album. https://t.co/mjjEqwb9bJ +06/28/2018,Actors,@katewalsh,#TBT Kickin up my feet and relaxin. https://t.co/1Kw7nwtVqP +06/28/2018,Actors,@katewalsh,Office. https://t.co/vhkhagbjse +06/28/2018,Actors,@katewalsh,U guys. I just discovered shelfies. 😱 I mean...who knew these were a thing?! What's on ur beauty shelf besides… https://t.co/K91jmggdXX +06/27/2018,Actors,@katewalsh,It’s #NationalSunglassesDay u say? We all know I love a good pair. 😎 https://t.co/7hrbaxSnUu +06/26/2018,Actors,@katewalsh,I mean… #ifyousayso https://t.co/tHai0Qii6P +06/26/2018,Actors,@katewalsh,This is pretty beautiful... https://t.co/6hUDpEuazN +06/25/2018,Actors,@katewalsh,Shimmie shimmie for Monday & white denim. 💃🏻💃🏻 https://t.co/0goPCkZEBe +06/24/2018,Actors,@katewalsh,"RT @DanRather: A true Sunday feel good story. Amidst the bleak news, let's try to hold on to our common humanity and foster empathy. Kudos…" +06/24/2018,Actors,@katewalsh,Sun cat catnap. ☀️ https://t.co/aYE4TFgmEc +06/24/2018,Actors,@katewalsh,some pure joy... https://t.co/IoLa3ETRTy +06/23/2018,Actors,@katewalsh,"❤️ this @MusingsofaMuse. Thanks, gal! So glad you like @Boyfriend. https://t.co/IZuEGDdMYM" +06/23/2018,Actors,@katewalsh,Don’t forget it 💕 https://t.co/wmuNu2oo1X +06/23/2018,Actors,@katewalsh,This is absolute madness. https://t.co/Qbig0WWtkh +06/22/2018,Actors,@katewalsh,#FBF So much glitz & glamour for my old #BillionaireBoyfriend shoot in 2012. ✨✨ We're letting go of Billionaire Boy… https://t.co/Q1FHWxxfUi +06/22/2018,Actors,@katewalsh,Happiest of birthdays to one of my favorite gals @AmyBrenneman! 😘😘 https://t.co/yXaFZwzjDx +06/22/2018,Actors,@katewalsh,What an incredible creature... https://t.co/zJ80ZY8IqO +06/21/2018,Actors,@katewalsh,"Glow + @Boyfriend = the perfect selfie! 🤳🏼 If u haven’t already, now’s the time to get ur selfie partner! Use the c… https://t.co/f1RGnJc4Ta" +06/20/2018,Actors,@katewalsh,In times like these an emotional support cat is essential. #pablo https://t.co/ouM9cOJ4Ve +06/19/2018,Actors,@katewalsh,Some good news...❤️ https://t.co/6UuIt4bPsq +06/19/2018,Actors,@katewalsh,We heard uuuuu…. Excited to share that we’ve been testing @Boyfriend Body Creme! Can u tell that I’m loving it alre… https://t.co/I8nUtljI3p +06/19/2018,Actors,@katewalsh,RT @iamamyrhodes: Help if you can. ❤️ https://t.co/r8nPtQxDqP +06/19/2018,Actors,@katewalsh,So proud & thrilled to honor @CovenantHouse & the lovely @AudraEqualityMc w/ @StephenAtHome 💕 https://t.co/bwGfeAkFsw +06/18/2018,Actors,@katewalsh,This can't be who we are as a country. Please call your senators: 202-224-3121 #EndFamilySeparation… https://t.co/WIBAJhL4e0 +06/18/2018,Actors,@katewalsh,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Actors,@katewalsh,Same Lisa. Same. #MondayMood https://t.co/yJ21zEwHh4 +06/17/2018,Actors,@katewalsh,Anyone else get cyborg vibes? 💙 https://t.co/o2gFyhbayq +06/16/2018,Actors,@katewalsh,What’s better than a morning puppy-rito? https://t.co/LjZeWkeP0x +06/15/2018,Actors,@katewalsh,Spending the day in bed. Thanks @casper for the comfy gift. I'm never leaving. https://t.co/KwhPgs8ncQ +06/14/2018,Actors,@katewalsh,"As the @Boyfriend team & I are creating amazing new products and scents, it's time for me to break up with our Bill… https://t.co/oIgtJ86BG0" +06/14/2018,Actors,@katewalsh,Ahhh #throwback to sobbing on the beach while filming my old Billionaire Boyfriend campaign in 2012. 😭 It may not l… https://t.co/nKMNuymu9P +06/14/2018,Actors,@katewalsh,#TBT @sergiowastaken working his magic on me in the early days. 💋 https://t.co/gpHYglxZNk +06/14/2018,Actors,@katewalsh,Whoahhh.... https://t.co/jhMbKozKy7 +06/13/2018,Actors,@katewalsh,"Ugh, the utter disrespect! https://t.co/MfLBTVCBQZ" +06/13/2018,Actors,@katewalsh,RT @asad_abdullah20: What a majestic creature. https://t.co/6nVcqtHKMs +06/12/2018,Actors,@katewalsh,Loving all of the new @Boyfriend love! 😘 The team & I are working on many more exciting things to come. What would… https://t.co/PCtuZ83PWP +06/12/2018,Actors,@katewalsh,Thisssssssss...!!! 💪🏽 ❤️⚡️😊 https://t.co/TQ9YSyyz2S +06/11/2018,Actors,@katewalsh,It’s fine - everything’s fine. #mood #morecoffee https://t.co/mx0wpWDFOV +06/10/2018,Actors,@katewalsh,Easy like Sunday morning 🦋 https://t.co/ztnpkAkuRN +06/09/2018,Actors,@katewalsh,I love this. Thank u @CovHousePrez https://t.co/GCkMyOIKhh +06/09/2018,Actors,@katewalsh,Her life is so ruff 💤 🐶 #RosieTheDog https://t.co/EYk2yPnhvd +06/08/2018,Actors,@katewalsh,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/08/2018,Actors,@katewalsh,"Can you name a better duo?! 👯👯 +In honor of #NationalBestFriendsDay, @Boyfriend paired these besties up for a limit… https://t.co/dsNlP7i2FN" +06/07/2018,Actors,@katewalsh,YES - things like taking cookies out of the oven before they’re “ready” #begreat #thursdaythoughts https://t.co/a1qVABIwdS +06/07/2018,Actors,@katewalsh,"RT @ABC: 74 years ago today, the United States armed forces and its allies invaded the beaches of Normandy, France, to liberate Europe from…" +06/06/2018,Actors,@katewalsh,"Looks like ur @Boyfriend orders are starting to get to u! I’m loving all the pics! 💕 + +Keep em coming and make sure… https://t.co/XIUS77pgcW" +06/06/2018,Actors,@katewalsh,ecneics <> science https://t.co/DFUp64ZclW +06/05/2018,Actors,@katewalsh,"RT @zachbraff: Don’t give up. People love you. + +National Suicide Prevention Lifeline: 1-800-273-8255" +06/05/2018,Actors,@katewalsh,I’m on the FIRST EVER episode of #DENtalks podcast w @DENmeditation. Meditation has become a huge part of my life &… https://t.co/D8xuE888ue +06/04/2018,Actors,@katewalsh,Pablo has some thoughts about Mondays… https://t.co/LRMnykH42e +06/03/2018,Actors,@katewalsh,Hi there 😽 #meow https://t.co/lo8u1JQYla +06/03/2018,Actors,@katewalsh,💕❤️ https://t.co/lMUrnJx5kk +06/02/2018,Actors,@katewalsh,I’m just so in love with @Boyfriend’s new look! And the smell… don’t even get me started - SO delicious. The same s… https://t.co/T4huKIrMSW +06/01/2018,Actors,@katewalsh,"Today, I #WearOrange to give a voice to the 96 Americans who die and the hundreds more who are injured by gun viole… https://t.co/4urtSfZ2Sy" +06/01/2018,Actors,@katewalsh,Amen https://t.co/FRBYHOyc9C +05/31/2018,Actors,@katewalsh,"#TBT to Malibu beach days and posing carefree with my Aperol Spritz ☀️🍸 + +📸: #amandarowanimagery https://t.co/h7m4fB7AEV" +05/31/2018,Actors,@katewalsh,These little guys are so cute & convenient. 😊 The @Boyfriend Pulse Points also ship internationally! Get ur own:… https://t.co/Rw8KiE3XTT +05/30/2018,Actors,@katewalsh,I’m thrilled to share that I’m judging a crowdsourcing competition sponsored by @conservationorg @NatGeo @rare_org… https://t.co/lIwTIXipdB +05/30/2018,Actors,@katewalsh,@kellyoxford This is everything +05/29/2018,Actors,@katewalsh,RT @healthmediagal1: TY again @katewalsh Here is our #interview on #health #mentalhealth #13reasonwhy #13ReasonsWhyS2 #13ReasonsWhySeason2… +05/29/2018,Actors,@katewalsh,The day has finally come! @Boyfriend pre-orders are on their way to u starting today! Miss out on the pre-order? No… https://t.co/bEPVMYmZFz +05/29/2018,Actors,@katewalsh,We heard you! @Boyfriend is now shipping ur pre-orders 😽This is all for (and because of) YOU! Can't wait for u to g… https://t.co/kzyx9otBe7 +05/29/2018,Actors,@katewalsh,I’m live on @Boyfriend’s Instagram RIGHT NOW! 😽 Come chat all things Boyfriend w me → https://t.co/sZoDQRXrv0 +05/28/2018,Actors,@katewalsh,Hope everyone is enjoying #MemorialDay. Thank you to the servicemen and women who have fought for us. https://t.co/qyPofoaLhO +05/27/2018,Actors,@katewalsh,😹😹😹 https://t.co/4kVJv8zWeu +05/27/2018,Actors,@katewalsh,"#BoyfriendPerfume is having a sweet #MemorialDayWeekend sale! With a @Boyfriend purchase, you’ll get a free Billion… https://t.co/8KLTwFm82B" +05/26/2018,Actors,@katewalsh,A little sparkle filter never hurt. https://t.co/zPMcRoVf0j +05/26/2018,Actors,@katewalsh,RT @laurafleur: Irish women who have come #hometovote arriving at Dublin airport. https://t.co/jTMm1xg9a1 +05/26/2018,Actors,@katewalsh,❤️this https://t.co/JG55sJ9J8G +05/25/2018,Actors,@katewalsh,The fight for equality CAN’T stop in our own backyards. I’m so proud to stand with @ONECampaign and the… https://t.co/z1ybd8Ghop +05/25/2018,Actors,@katewalsh,#Pablo TGIF kitties. https://t.co/DmVzWmSDM6 +05/24/2018,Actors,@katewalsh,It’s not too late to pre-order these beauties. 🌺 Can’t wait for you to get your hands on your #BoyfriendPerfume. Pr… https://t.co/24iAsSrMPB +05/24/2018,Actors,@katewalsh,Had a blast chatting w/@healthmediagal1 ❤️💕 https://t.co/KMk6j17FF4 +05/24/2018,Actors,@katewalsh,"Umm, can someone please toss me that beach ball? #tbt +@sergiowastaken https://t.co/TUqu8d85Ds" +05/23/2018,Actors,@katewalsh,"Title X gives women access to contraception and more control over their lives, health, careers, & economic security… https://t.co/2C4Tk9Qojw" +05/23/2018,Actors,@katewalsh,So excited for this! 💕 https://t.co/SsoDgpF2CD +05/23/2018,Actors,@katewalsh,Gosh I love this...😊 https://t.co/DZRGMMb3Vq +05/23/2018,Actors,@katewalsh,"RT @oceana: It's #WorldTurtleDay, break out of your shell! https://t.co/FEgfYVcNJE" +05/23/2018,Actors,@katewalsh,My bro Joe aka The Better Walsh ❤️ https://t.co/yLlqYm4VCI +05/22/2018,Actors,@katewalsh,"Isn’t the #BoyfriendPerfume box b-e-a-utiful?! Excited to finally share it with you. Not only does it look good, bu… https://t.co/3z7a5Trfv5" +05/22/2018,Actors,@katewalsh,Rosie posie 💐 (I know those are tulips…just really needed that rhyme) https://t.co/5z1YJxfXYH +05/22/2018,Actors,@katewalsh,Happy birthday @cher #queen https://t.co/uM1M8OZVIz +05/21/2018,Actors,@katewalsh,The Holy Grail 🙌🏻 There’s still time to pre-order your #BoyfriendPerfume! Don’t forget: If you pre-order the fragra… https://t.co/Y76wkbRw94 +05/20/2018,Actors,@katewalsh,My spirit animal #yougogirl https://t.co/uzNqw8KEO3 +05/19/2018,Actors,@katewalsh,#Caturday mood. 😴 #pablo https://t.co/1w8LXerrYA +05/18/2018,Actors,@katewalsh,It’s officially officially out! U can stream all episodes of @13ReasonsWhy season 2 on @netflix now! I give u permi… https://t.co/xeTnOnmCmT +05/18/2018,Actors,@katewalsh,"RT @dylanminnette: @netflix Season 2 of 13 Reasons Why, like season 1, can be unflinching, dark and even hard to watch at times. please vie…" +05/18/2018,Actors,@katewalsh,RT @13ReasonsWhy: The truth doesn't always make things right. Season 2 of #13ReasonsWhy is now streaming. https://t.co/OTDMrzwzIt +05/17/2018,Actors,@katewalsh,Hey everyone! Tune into @HomeandFamilyTV today at 10am/9c to find out how you can join me and #PerkUpWithProtein 💪🏻… https://t.co/QiN74IufAB +05/16/2018,Actors,@katewalsh,❤️💕 https://t.co/nCrk3aCFkT +05/16/2018,Actors,@katewalsh,▶️🖤 May 18th - @13ReasonsWhy Season 2 on @Netflix. #13ReasonsWhy https://t.co/tIq96hrjOd +05/16/2018,Actors,@katewalsh,Oh. This is happening. In just a couple of days. https://t.co/lz1l37kFKX +05/16/2018,Actors,@katewalsh,"RT @TheRealDaytime: Love #GreysAnatomy, #PrivatePractice AND #13ReasonsWhy? Then don’t miss it tomorrow when @KateWalsh stops by! 💋We’re LI…" +05/15/2018,Actors,@katewalsh,Takin’ care of business. But gotta stay comfy ✌🏼 https://t.co/aExE0ptLkf +05/14/2018,Actors,@katewalsh,🤣🔥 https://t.co/I3XjkRVe2Y +05/14/2018,Actors,@katewalsh,Monday. https://t.co/EMxWyhADg0 +05/13/2018,Actors,@katewalsh,❤️💕 https://t.co/qjdnLrv0Ri +05/13/2018,Actors,@katewalsh,Me and sweet mama angela aka il duce aka Angela Embree - thanks for giving me life ❤️ #MothersDay https://t.co/zuQqxkOSWN +05/12/2018,Actors,@katewalsh,"A moment in time when I wasn’t in PJs with a messy bun on my head ✨ thanks again @makeupqueennyc , + @ryantrygstad &… https://t.co/LcD3TqBu6b" +05/12/2018,Actors,@katewalsh,❤️💕 https://t.co/xbN3cnwKRJ +05/12/2018,Actors,@katewalsh,Aka supes hot smarty 👖 https://t.co/YCBYrZekEW +05/11/2018,Actors,@katewalsh,"RT @Boyfriend: Loving all the feedback on Boyfriend’s return! 💕💕 Check out @sanjapekic’s write up on @fragrantica! + +https://t.co/rL3hkmrTV6" +05/11/2018,Actors,@katewalsh,#FBF to that time @kalpenn & I toured w/ @the_USO & I went down when not 1 but 2 military 🐶s chased me wearing a ru… https://t.co/R6V1QIzxw8 +05/10/2018,Actors,@katewalsh,@AmyBrenneman ! I LAVA u https://t.co/OIKn8IoWn0 +05/10/2018,Actors,@katewalsh,"But first…coffee ☕️ #tbt to the #EnsureMaxProtein launch & sharing my #healthgoals. Getting enough protein is key,… https://t.co/hHumkRIEqx" +05/09/2018,Actors,@katewalsh,The @Boyfriend Pulse Point is puuurfect for stashing in your bag for an afternoon pick-me-up. 💁🏼AND this little guy… https://t.co/LZIzZTvhQV +05/09/2018,Actors,@katewalsh,More of me on @Netflix! Excited to join Umbrella Academy! From now you can refer to me as #TheHandler 😏 https://t.co/0o59BW9J0F +05/08/2018,Actors,@katewalsh,RT @AlishaBoe: 10 days 👋 https://t.co/Zdfu76wexd +05/08/2018,Actors,@katewalsh,AND the song in this trailer is by my sweet pal @anyamarina! ❤️ +05/08/2018,Actors,@katewalsh,Are u ready? #13ReasonsWhy Season 2 coming May 18 @13ReasonsWhy @netflix https://t.co/8nKLwJNBLL +05/07/2018,Actors,@katewalsh,I mean… the audacity! (This literally happens every day) 📹 @hellogiggles https://t.co/NM10uGwo84 +05/07/2018,Actors,@katewalsh,Cruel.... https://t.co/P3KVPJt8eE +05/06/2018,Actors,@katewalsh,"I’m on tonight’s episode of #LongIslandMedium - check it out on @TLC at 8/7C! Such a cool experience. Thanks,… https://t.co/dQ3DKXQjzM" +05/06/2018,Actors,@katewalsh,Sometimes my hair gives me a little faux mustache 👨🏻 https://t.co/wKRJ7Lekx2 +05/05/2018,Actors,@katewalsh,Happy #CincoDeMayo from Pablo! And never forget - taco cat spelled backwards is still taco cat 🐱 https://t.co/05crg4VvRi +05/05/2018,Actors,@katewalsh,Sweet dreams... #billiam #heavensentheavenbound https://t.co/ctJJp4V6mk +05/04/2018,Actors,@katewalsh,Billy’s go-to move: “Bathe Pablo and then beat his ass” 😹💞 #RIPBilly https://t.co/wigJeOb7JU +05/04/2018,Actors,@katewalsh,"This little guy saw me through so much and slept in the crook of my arm every night I was home, through long hours… https://t.co/diJSuzEKHz" +05/04/2018,Actors,@katewalsh,"The lovely Derek Brake saw him out of this world at home in NYC, along with Pablo and Rosie. I got to say goodbye t… https://t.co/Nh9Gp9BGyw" +05/04/2018,Actors,@katewalsh,"Hey friends, I just wanted to let you all know that Billy the Cat, aka Billiam E. Pants, aka Billiam, aka Billy Pan… https://t.co/kp3y48BGrG" +05/04/2018,Actors,@katewalsh,💕 https://t.co/4J4oXbXRxe +05/03/2018,Actors,@katewalsh,"Olivia Baker is back. May 18th. @13ReasonsWhy + +#Season2 #13ReasonsWhy https://t.co/NoBVvbOHpn" +05/02/2018,Actors,@katewalsh,"Side note: ​Pre-sale purchasers get first access to our private Facebook group, Boyfriend Confidential. Members get… https://t.co/bhYVrdy3bs" +05/02/2018,Actors,@katewalsh,Lean on me 🎶 Pre-Sale for #​Boyfriend​Perfume​ is still happening. ​It's the same scent you know and love! ​Get urs… https://t.co/TwMLqC8VlI +05/01/2018,Actors,@katewalsh,Spring has sprung in #NYC 😍 Love seeing these little beauties on my walk. https://t.co/hsKbPDDM3J +04/30/2018,Actors,@katewalsh,"Here we go! May 18th. Season 2. #13ReasonsWhy + +@13ReasonsWhy @netflix https://t.co/cr5XgHs4gV" +04/30/2018,Actors,@katewalsh,"#ThankYouCecile for helping to grow Planned Parenthood from 3 million supporters to nearly 12 million, and inspirin… https://t.co/uynk2Koxw3" +04/30/2018,Actors,@katewalsh,RT @13ReasonsWhy: The truth is developing. https://t.co/rwCobzhbC0 +04/30/2018,Actors,@katewalsh,Shared my pick with @InStyle for your mamas on #MothersDay! Take a look to see what I chose. (hint hint: @boyfriend) https://t.co/FujgVtYMzp +04/30/2018,Actors,@katewalsh,Sunday night vs Monday morning. #mood https://t.co/colRzkrFpd +04/29/2018,Actors,@katewalsh,Happy birthday #katherinelangford! Hope your day is filled with so much ❤️ #13ReasonsWhy https://t.co/3gO8fc3GbY +04/28/2018,Actors,@katewalsh,😍😘 https://t.co/WXlznjNLFr +04/28/2018,Actors,@katewalsh,Oh hi there 🐱| 📷 @TheVampiresWife https://t.co/7HVUi31UxJ +04/27/2018,Actors,@katewalsh,Yes lady! https://t.co/4zccsFXD4m +04/27/2018,Actors,@katewalsh,I'll never tell... https://t.co/EAxGPhxu9X +04/27/2018,Actors,@katewalsh,"Oh hi. It’s just me, Circa 1998, leaning longingly in a doorway, 👄 parted, eyes saying ‘please fucking hire me so I… https://t.co/nejhypB8QA" +04/26/2018,Actors,@katewalsh,The OG Boyfriend bottle evolution… some things just get better with time 😘 Pre-order ur #BoyfriendPerfume here →… https://t.co/tVO8vn6ary +04/25/2018,Actors,@katewalsh,This is perfect 😂 @wendimclendonco (via @BritandCo) https://t.co/1vyet58roE +04/24/2018,Actors,@katewalsh,"#BoyfriendPerfume is Back! ⚡️ + +https://t.co/aZ85y4cNLd" +04/24/2018,Actors,@katewalsh,From Mary Oliver 💞 https://t.co/JqllXap2CK +04/24/2018,Actors,@katewalsh,😳💕 https://t.co/mEtMD9fuli +04/23/2018,Actors,@katewalsh,I need this guy to come say this to me most mornings! ❤️💔❤️ https://t.co/fw27jK1fH5 +04/23/2018,Actors,@katewalsh,We poured our heart and soul into bringing @Boyfriend back for you guys. I can’t wait for u to have it in ur cute l… https://t.co/waJNhQVPuy +04/22/2018,Actors,@katewalsh,"Happy #EarthDay! Want to help save forests? You can do so by buying paper, wood, or other forest products with the… https://t.co/w4EBUjDeC4" +04/21/2018,Actors,@katewalsh,This “cat”sterpiece brought to you by @ninamillin 😻#caturday https://t.co/dM1PJECmaV +04/21/2018,Actors,@katewalsh,😺😺 https://t.co/V37Actvggo +04/20/2018,Actors,@katewalsh,RT @trvpism: sometimes u just gotta clean your room and apply an elaborate skincare routine and pretend that’s equivalent to getting ur lif… +04/20/2018,Actors,@katewalsh,Boom! 💕🥂 https://t.co/yPF1aubtTu +04/20/2018,Actors,@katewalsh,To my international bbs.... Did u know the OG @Boyfriend Pulse Point ships internationally?! 🤗 Now you do! Get urs… https://t.co/e3m7A1Z79u +04/20/2018,Actors,@katewalsh,YES https://t.co/yYFo5xydV9 +04/20/2018,Actors,@katewalsh,Is that too much to ask? 🍩 > 🥗 https://t.co/FQjU3lI2nN +04/19/2018,Actors,@katewalsh,So immensely proud of @tiffanyhaddish. #TIME100❤ https://t.co/PDIT3eKEIM +04/19/2018,Actors,@katewalsh,#TBT to this amazing dress. It reminds me of saltwater taffy… anyone else see it? Just me? …Okay cool. https://t.co/ZimrHqUzeO +04/19/2018,Actors,@katewalsh,So great to see ya gal! Had a blast getting to chat with u 😊 https://t.co/U20PWGewpb +04/18/2018,Actors,@katewalsh,"So much fun getting to chat with @WendyWilliams about working on #GirlsTrip, #13ReasonsWhy and much much more! Chec… https://t.co/MrM9xhUZ3d" +04/18/2018,Actors,@katewalsh,Can’t wait to share Season 2 of #13ReasonsWhy with you guys! Spilled a few deets w #DailyPop yesterday 🙃 https://t.co/ZwmPUJCzCL +04/18/2018,Actors,@katewalsh,Did you hear? Your #BoyfriendsBack!! Pre-sale for the Original @Boyfriend perfume is happening now! Who already pre… https://t.co/X8sLfwB6PF +04/18/2018,Actors,@katewalsh,Got to talk about my health journey the past few years + #13ReasonsWhy w #ExtraTV. Watch it tonight! https://t.co/RYrPjd3WFC +04/18/2018,Actors,@katewalsh,We’re going LIVE in 5 mins! Head over to @AbbottGlobal’s Facebook page now to chat with me about all things healthy… https://t.co/oDLMVo4Lih +04/18/2018,Actors,@katewalsh,this! #Her https://t.co/2WEBdcN0Yn +04/18/2018,Actors,@katewalsh,"I’m excited to be teaming up w/ @AbbottGlobal to introduce their new nutrition drink, #EnsureMaxProtein! It’s a gre… https://t.co/ImoaIPzU2v" +04/17/2018,Actors,@katewalsh,"There's a description of the fragrance here --> https://t.co/0qxr1mkzl7 + +Top notes are Night Blooming Jasmine & ju… https://t.co/x3bYAbxHeG" +04/17/2018,Actors,@katewalsh,I always say: 2 Boyfriends r better than one 😍! #BoyfriendPerfume https://t.co/Q7sesBjtiy +04/17/2018,Actors,@katewalsh,The Boyfriend Pulse Point ships internationally! 🙃 https://t.co/Zz4qcWTwqb https://t.co/ekBaC7Wib3 +04/17/2018,Actors,@katewalsh,Loved getting to chat with @wwd about @Boyfriend and why we decided to bring it back! We put so much ❤️ into gettin… https://t.co/iQVIwJDUxg +04/17/2018,Actors,@katewalsh,"Today is the day!! 🎉🎉 Pre-Sale for the Original @Boyfriend EDP and Pulse Point starts NOW! Oh, and the pulse point… https://t.co/LPlVEvZ6Q8" +04/17/2018,Actors,@katewalsh,"Loved spending my AM w/ @klgandhoda! We talked #13ReasonsWhy, the perks of protein & reaching our #healthgoals. Vis… https://t.co/RThwZVSfgh" +04/16/2018,Actors,@katewalsh,TOMORROW! Pre-Sale for @Boyfriend starts! 😍 9am PST - Set ur clocks and get reeeaadddy! https://t.co/wioazEZUz5… https://t.co/v9YFBwoJyc +04/16/2018,Actors,@katewalsh,Happy Monday! Catch me on the season 2 premiere of my fave @sonyawalger’s podcast @bookishsonya! Chatting about som… https://t.co/I6gQnZwm0B +04/16/2018,Actors,@katewalsh,Some 💕for Monday https://t.co/7gyal5s2Jb +04/16/2018,Actors,@katewalsh,"I’ve got a surprise coming your way soon! Hint, hint: Tune into @AbbottGlobal’s FB page on April 18 at 3:30 PM ET f… https://t.co/b9uhOHxGLq" +04/15/2018,Actors,@katewalsh,Sunday https://t.co/kwBIDoFsCK +04/15/2018,Actors,@katewalsh,This...❤️💕😳 https://t.co/Ifou0dmEzm +04/14/2018,Actors,@katewalsh,Been dealin’ with this all day 🏝💕🙏🏽 https://t.co/0pRTBvYXQ9 +04/13/2018,Actors,@katewalsh,@bader_diedrich 🤣🤣 +04/13/2018,Actors,@katewalsh,"Ahh, I ❤️this & ❤️ u @ConanOBrien https://t.co/ESHgCmJFzO" +04/13/2018,Actors,@katewalsh,RT @nowthisnews: People are paying to nap at this new cafe https://t.co/H5hdjaJx1w +04/13/2018,Actors,@katewalsh,#FBF to flowery spring dress vibes 💐🌷 https://t.co/fMbYgfob6t +04/12/2018,Actors,@katewalsh,Finishing touches w the @Boyfriend team 🙌🏻 #NewLookSameBoyfriend OG is #ComingSoon! Sign up to get the deets first!… https://t.co/PwsmKiPGoQ +04/12/2018,Actors,@katewalsh,Aww! Had a blast with this one. 💞 Don’t miss the Season 2 premiere of Bookish on Monday to hear me chat about some… https://t.co/H57WuIHUDs +04/12/2018,Actors,@katewalsh,#tbt to the #bahamas when we shot our #billionaireboyfriend perfume commercial & I channeled my inner bedazzled/psy… https://t.co/iyYyENUuhq +04/12/2018,Actors,@katewalsh,This makes me 😢it’s so true! What would I do w/o my #rosiethedog? Adopted her 10yrs ago 🐶⚡️#rescuedogs https://t.co/AT9VDsf9EW +04/11/2018,Actors,@katewalsh,💕sending u all big love today https://t.co/qqdrr8Tq1A +04/10/2018,Actors,@katewalsh,Today is #EqualPayDay. A day to symbolize how far into the future the average woman has to work to earn the same am… https://t.co/ulK80ab8Nt +04/10/2018,Actors,@katewalsh,STILL the baby of the family😍 What would I do without my bros & sis? #NationalSiblingDay https://t.co/iQtsuTEZ0R +04/10/2018,Actors,@katewalsh,I need the buddy benching my life! 💕❤️ https://t.co/MfjNLsJBHN +04/09/2018,Actors,@katewalsh,Getting all our ducks in a row…. Original Boyfriend will be here sooner than you think! Stay up to date here →… https://t.co/PlXyYPcf4y +04/09/2018,Actors,@katewalsh,monday (burrito) mood 📷: Jean Jullien https://t.co/1gDNc5iVrE +04/08/2018,Actors,@katewalsh,Keeping watch. Careful… he’s a highly trained guard cat. #meow #meOUCH https://t.co/RWgDIgxZYO +04/07/2018,Actors,@katewalsh,The handiwork of #ChadWood & @sergiowastaken - thanks fellas https://t.co/MxgqUR6pSh +04/06/2018,Actors,@katewalsh,THIS guy! Full recovery #billythecat #mantlecat #homesweethome🏡💕 😻 https://t.co/TYSSNLDYyA +04/06/2018,Actors,@katewalsh,Oops > what if 🤷🏻‍♀️ https://t.co/Z07qmADKCf +04/05/2018,Actors,@katewalsh,How’s this for a #TBT… we were babies! @Mariska @ChristaBMiller 😍 https://t.co/kOBrPPwQVX +04/04/2018,Actors,@katewalsh,Pretty much a dream come true to work w/these vocal gods on @bestfiends - @hamillhimself @MAURICELAMARCHE &… https://t.co/e0Qswx4GwZ +04/04/2018,Actors,@katewalsh,"Hey heeyyyy! Starting today, every Billionaire @Boyfriend purchase will come with a FREE sample of the Original Boy… https://t.co/rUovPS1Bk5" +04/03/2018,Actors,@katewalsh,"This LA sunshine is just the worst, right? 😏 https://t.co/od0KQp3I8K" +04/02/2018,Actors,@katewalsh,Loved getting to chat about @boyfriend perfume (the countdown is ON!) and the inspiration behind the Boyfriend Cand… https://t.co/rHHFiB0jan +04/02/2018,Actors,@katewalsh,Maybe I’ll just stay in bed...but can someone bring me more coffee? 💓 https://t.co/4ufPkni2bn +06/30/2018,Actors,@KellyMcCreary,Obviously. https://t.co/ERUtKh5f0Y +06/30/2018,Actors,@KellyMcCreary,"RT @ShanaRedmond: The “greatest legal minds” in the US just broke the already weak back of organized labor. + +I don’t want to see one more…" +06/29/2018,Actors,@KellyMcCreary,"RT @laurenduca: The shooting today in the Capital Gazette newsroom in Annapolis, Maryland cannot reasonably be separated from the President…" +06/29/2018,Actors,@KellyMcCreary,RT @harikondabolu: Don’t tell me it’s just a “few” bad apples. This system is racist to the core. This man did not deserve this. https://t.… +06/29/2018,Actors,@KellyMcCreary,"RT @broadwaybabie36: A true case of art holding up a mirror to life in the #SkeletonCrewGP @GeffenPlayhouse. Thank you @A_Cheatom, @KellyMc…" +06/28/2018,Actors,@KellyMcCreary,RT @B_Hay: Meet the Harvey Street design team! I want to live under their pink skies! #HarveyStreetKids https://t.co/9sDXmsB37Z +06/28/2018,Actors,@KellyMcCreary,"@snozberries44 @petechatmon So much fun to hang out with you, TQ!" +06/28/2018,Actors,@KellyMcCreary,"RT @BetteMidler: Call #MitchMcConnell and tell him you expect him to wait until the midterms are over, as he did, when President Obama put…" +06/28/2018,Actors,@KellyMcCreary,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/28/2018,Actors,@KellyMcCreary,"Hey hey Angelenos I’ll be on @GDLA in about 30 minutes! Thanks, Annette Chaisson, for getting me looking right, bri… https://t.co/Fk5Tz34LTH" +06/27/2018,Actors,@KellyMcCreary,"RT @RepAdamSchiff: McConnell held a Supreme Court seat open for a year, insisting no Justice be confirmed in an election year without voter…" +06/27/2018,Actors,@KellyMcCreary,"RT @SenSanders: We should listen to what Sen. McConnell said in 2016. President Trump should not nominate, and the Senate should not confir…" +06/27/2018,Actors,@KellyMcCreary,RT @laurenlapkus: Aww a new clip from #HarveyStreetKids! Premiering Friday on @netflix! https://t.co/oSozqn4QZP @StephyLems @KellyMcCreary… +06/27/2018,Actors,@KellyMcCreary,"So great to chat with you, George! https://t.co/uy2ysWUTV3" +06/26/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: ✔️Detain the LatinX immigrants +✔️Ban the Muslims +✔️Jail the Black folks +✔️Ruin the Indigenous folks’ water +✔️Attack the po…" +06/26/2018,Actors,@KellyMcCreary,Thread. https://t.co/XKytg77a3i +06/26/2018,Actors,@KellyMcCreary,"RT @LaBeautyologist: Neither can gay couples. Black people. Muslims. Sikhs. Spanish speakers. + +Join the club. https://t.co/B0ceLoiTXl" +06/26/2018,Actors,@KellyMcCreary,RT @aparnapkin: your right to #civility ended when you started taking away civil rights +06/26/2018,Actors,@KellyMcCreary,"RT @sistergoldie: On respectability politics for black playwrights, “Don’t sir your dirty laundry”...they say. “But the laundry gotta get…" +06/26/2018,Actors,@KellyMcCreary,"Thank you, Sheila! Wonderful to see you again! https://t.co/ZyKkX7DWKF" +06/26/2018,Actors,@KellyMcCreary,"RT @billyeichner: Hey COLORADO, MARYLAND, NEW YORK, OKLAHOMA and UTAH - get out and VOTE tomorrow!!! https://t.co/Tr5GRWvhlV" +06/26/2018,Actors,@KellyMcCreary,"RT @KristaVernoff: 2 hours left to vote for Emmys! Wanna vote for some WOMEN? +FYC: +TV MOVIE - Paterno +TV COMEDY - SMILF +TV comedy writ…" +06/26/2018,Actors,@KellyMcCreary,RT @johnlegend: Let's make a deal with the Trump Administration. Reunite all these families immediately and you can go out to eat wherever… +06/25/2018,Actors,@KellyMcCreary,"RT @ClintSmithIII: ""You cannot spit in the plates and then demand your dinner. The best way to receive civility at night is to not assault…" +06/25/2018,Actors,@KellyMcCreary,@TheJasikaNicole Jitlada +06/25/2018,Actors,@KellyMcCreary,"RT @CleverTitleTK: GOP: ""Why are we worrying about these foreign children at the border instead of American children?"" + +Also GOP: https://t…" +06/24/2018,Actors,@KellyMcCreary,"RT @jacobsoboroff: We can track our @FedEx packages down to the *second* if we want to. + +Why can’t the United States government figure out…" +06/24/2018,Actors,@KellyMcCreary,"RT @RachelGonKCMO: Did you know that 4 MILLON 17-year-olds turn 18 before the November election? + +If you are 17 1/2 you can register to vo…" +06/24/2018,Actors,@KellyMcCreary,Listen to Finchie. Finchie will never steer you wrong. https://t.co/3IP52gADqa +06/24/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: That’s called a dictatorship. https://t.co/4r2137trJ3 +06/24/2018,Actors,@KellyMcCreary,"RT @ashleyn1cole: Look all we want to do is kick a bunch of people out of the country, and get rid of your health insurance, and say and do…" +06/24/2018,Actors,@KellyMcCreary,RT @aparnapkin: Getting politely asked to leave a restaurant for human rights crimes still beats getting the cops called on you for existin… +06/23/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: .@domorisseau’s Skeleton Crew is now #OvationRecommended! Bravo to our cast, crew & design team! See what the buzz is…" +06/23/2018,Actors,@KellyMcCreary,"RT @kathleenantonia: ""We are in a war fighting evil. We need to be clear about that."" ~ @evapaterson, a role model for stepping into the ri…" +06/23/2018,Actors,@KellyMcCreary,"RT @natasharothwell: What they're doing while we freak out about a sh*tty Zara jacket. +🚨CALL YOUR REPS🚨 +(202) 224 - 3121 https://t.co/OxJl…" +06/23/2018,Actors,@KellyMcCreary,RT @LeslieProll: Thank you @evapaterson @equaljustice for hosting conference on fighting racism & bias across issue areas. Desperately need… +06/23/2018,Actors,@KellyMcCreary,"RT @BerniceKing: #AntwonRose’s death is devastating. If you’re blaming his death on him running from police, I suggest you enlarge your und…" +06/22/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: Week 3 is quickly coming to an end. That means final weeks to see @domorisseau’s Skeleton Crew! Don’t wait. Must close… +06/22/2018,Actors,@KellyMcCreary,Calling now. #SingleStagingArea https://t.co/ojfyhhMvf5 +06/22/2018,Actors,@KellyMcCreary,RT @BlackNLA: These four. Take the Gil Cates Theater stage to bring @domorisseau's words to spectacular life under the direction of #Patric… +06/22/2018,Actors,@KellyMcCreary,"RT @ShaunKing: I kid you not, he was just convicted of sexually assaulting three different women and strangulating and stalking two others.…" +06/21/2018,Actors,@KellyMcCreary,RT @equaljustice: Our #mindscience2018 conference is sold out! Thank you to all our registered attendees and especially to our conference f… +06/21/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: A family concentration camp is still a concentration camp. +• +• +In my freshman political science seminar, we learned about…" +06/21/2018,Actors,@KellyMcCreary,"RT @ShaunKing: This is #AntwonRose. + +Shot in the back and killed yesterday by police in East Pittsburgh, Pennsylvania. https://t.co/xZn87f…" +06/20/2018,Actors,@KellyMcCreary,"@LilHay I have and I agree— “TIME: The Kalief Browder Story,” is a harrowing examination of the devastating impacts… https://t.co/cYDAcYjUdL" +06/20/2018,Actors,@KellyMcCreary,While I have your attention: https://t.co/OzItRKgqdF +06/20/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: THANK U to all our patrons for attending last night's #SkeletonCrewGP #TalkBackTuesday! Special thanks to our moderato… +06/20/2018,Actors,@KellyMcCreary,@BLACKWlDCWS I believe in you. +06/20/2018,Actors,@KellyMcCreary,RT @caterinatweets: For profit prisons lead to trafficking in human beings. Follow the money. https://t.co/wZltRCi4U7 +06/20/2018,Actors,@KellyMcCreary,RT @iJesseWilliams: 👀👂🏽 https://t.co/cTzASU0q61 +06/20/2018,Actors,@KellyMcCreary,RT @jurneesmollett: Y’all please donate to this. These 8 orgs are working on the ground to combat this criminal behavior that is tearing ki… +06/20/2018,Actors,@KellyMcCreary,"Some things are just wrong & have no moral justification. None. No if, ands, or political equivocating. So FYI for… https://t.co/UquLigx74i" +06/20/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: Donald Trump has built prisons for babies. Donald Trump has built prisons for babies. Donald Trump has built prisons fo… +06/20/2018,Actors,@KellyMcCreary,"RT @chrislhayes: Since the president is lying about this, I'll reiterate that we obtained internal CBP documents that show that ****91%****…" +06/20/2018,Actors,@KellyMcCreary,“Tone deaf” doesn’t even begin to describe this tweet. https://t.co/4wQoLHlfXA +06/19/2018,Actors,@KellyMcCreary,RT @marwilliamson: The fraud is not being committed by immigrants trying to game the system; ICE admits 1% of asylum seekers found to be fr… +06/19/2018,Actors,@KellyMcCreary,RT @itsgabrielleu: 👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾 https://t.co/GueHe3HehW +06/19/2018,Actors,@KellyMcCreary,RT @barvonblaq: I don’t understand how a country obsessed with superhero movies doesn’t recognize supervillainy. +06/19/2018,Actors,@KellyMcCreary,RT @DanRather: Let’s be clear - tearing children away from their parents is but a logical extension of this administration’s immigration po… +06/19/2018,Actors,@KellyMcCreary,"This is major. Congrats, @ACLU! https://t.co/bvfiZAvFLy" +06/18/2018,Actors,@KellyMcCreary,"RT @VanJones68: STOP IT! Choice isn’t “open borders” or “scar children for life.” Unless there is a damn good reason, families should be ke…" +06/18/2018,Actors,@KellyMcCreary,RT @jsmooth995: Please never speak to me again about how we need to appeal to Trump's base through compassion and empathy https://t.co/1scK… +06/18/2018,Actors,@KellyMcCreary,"RT @caterinatweets: This is a really easy way to help the babies, children and parents who are being separated and traumatized at the borde…" +06/18/2018,Actors,@KellyMcCreary,RT @timkaine: The real Trump Hotel. https://t.co/PP6nIbzNQR +06/18/2018,Actors,@KellyMcCreary,RT @DreamUndeferred: THIS. How many times do we have to say THIS? https://t.co/dhOJUSm1h9 +06/18/2018,Actors,@KellyMcCreary,"Whatever your politics, you know that separating children as young as infants from their parents is cruel and inhum… https://t.co/GQUwJ6cfMW" +06/18/2018,Actors,@KellyMcCreary,RT @iamedigathegi: Our government has cancer. You can be part of the cure. Call your senator at 202-224-3121 and demand the cessation of fa… +06/18/2018,Actors,@KellyMcCreary,RT @SenFeinstein: UPDATE: The entire Democratic caucus supports our bill to bar children from being taken from their parents at the border.… +06/18/2018,Actors,@KellyMcCreary,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Actors,@KellyMcCreary,Also THIS. https://t.co/o9lY2rkh69 +06/18/2018,Actors,@KellyMcCreary,"RT @RVAwonk: Trump keeps trying to blame Democrats, but here's John Kelly in March 2017 talking about implementing forced separation for im…" +06/18/2018,Actors,@KellyMcCreary,"RT @isi_kbreen: yes. crossing the border without documentation is illegal. + +being black without a white owner was illegal. + +walking into a…" +06/17/2018,Actors,@KellyMcCreary,RT @Juliacsk: @amahnke @kumailn Repeat after me: I will vote in the midterm election. I will vote in the midterm election. I will vote in t… +06/17/2018,Actors,@KellyMcCreary,RT @reformlajails: To all the fathers who are separated from their children. To all the children who are separated from their fathers. +06/16/2018,Actors,@KellyMcCreary,"RT @equaljustice: Attorneys Needed to Help Immigrants Oppressed by ICE, via @AILANational https://t.co/eO6V1F7XWx https://t.co/5wiiXgFgE4" +06/16/2018,Actors,@KellyMcCreary,"RT @equaljustice: #HappyBirthday to our champion-in-chief, @evapaterson! The staff and board of EJS express our love and appreciation to Ev…" +06/16/2018,Actors,@KellyMcCreary,RT @PoliteMelanie: Those who were mad at Michelle Obama because she said that kids should eat vegetables are completely fine with Trump put… +06/16/2018,Actors,@KellyMcCreary,RT @SarahKSilverman: It’s nuts- she’s blaming Dems 4not stopping Trump from making this pure-evil policy. Man -they repeatedly point2 Dems… +06/16/2018,Actors,@KellyMcCreary,THAT PART. #Pride #SkeletonCrewGP https://t.co/m20n2R7IwZ +06/16/2018,Actors,@KellyMcCreary,"RT @ananavarro: This shameful moment in American history is squarely on Trump and his Republican enablers in Congress. Remember this, next…" +06/15/2018,Actors,@KellyMcCreary,Discounts! https://t.co/zf3ZoL1W0P +06/15/2018,Actors,@KellyMcCreary,RT @waltisfrozen: Scolding Democrats for saying “Fuck” while the President is constructing prison camps for children and praising foreign d… +06/14/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: ICYMI: @KellyMcCreary shares about her character Shanita in @domorisseau's Skeleton Crew: ""She's a bit of a dreamer. S…" +06/14/2018,Actors,@KellyMcCreary,@octarell lol yes holla. +06/14/2018,Actors,@KellyMcCreary,"This. I second this, @octarell. https://t.co/kb30drffqI" +06/14/2018,Actors,@KellyMcCreary,"RT @nhannahjones: The Bible was used to justify slavery, too. https://t.co/BFFsoVAMqX" +06/14/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: These four. Raised the roof last night!!! DO NOT MISS THIS CAST. Now on stage thru July 8. #AboutLastNight #SkeletonCr… +06/13/2018,Actors,@KellyMcCreary,RT @eveewing: This is a moment where all the hemming and hawing over civil disobedience and “is it okay to punch a nazi?” comes back to bit… +06/13/2018,Actors,@KellyMcCreary,"RT @theatermania: PIX: See @KellyMcCreary, @dbwofficial & the cast of @GeffenPlayhouse's SKELETON CREW → https://t.co/EZmExPhTA3 https://t.…" +06/13/2018,Actors,@KellyMcCreary,"Thanks, Surveyed Audience Member! Excited to open this thing tonight! It’s been a blast so far... #SkeletonCrewGP… https://t.co/9xFGrMOTH6" +06/13/2018,Actors,@KellyMcCreary,@DreamUndeferred I love this story 😂 +06/13/2018,Actors,@KellyMcCreary,RT @laurenduca: Families Belong Together is organizing marches against this horrifyingly inhumane bullshit. Please consider joining the one… +06/13/2018,Actors,@KellyMcCreary,"RT @laurenduca: This is what that piece of garbage means when he says ""Make American Great Again."" It almost seems like an understatement t…" +06/13/2018,Actors,@KellyMcCreary,"RT @paolamendoza: This is the youngest child I have heard of being taken from their parents. + +A 4 month old baby ripped away from his fath…" +06/13/2018,Actors,@KellyMcCreary,"RT @THEkarliehustle: Thread: + +Kenyata Bullard, 20, was one of 4 young men in a car that was shot up in Jacksonville last week. + +He is the…" +06/12/2018,Actors,@KellyMcCreary,Looking forward to watching this. https://t.co/cK6YOMmSSS +06/12/2018,Actors,@KellyMcCreary,"RT @Phil_Lewis_: ""Freedom has never been free."" + +Medgar Evers, a civil rights leader and World War II veteran, was assassinated in his driv…" +06/12/2018,Actors,@KellyMcCreary,"Dear #SCOTUS, + +As you consider Trump's racist ban, here are a few comments to consider from the president. + +Since… https://t.co/vYJaVsvVpF" +06/12/2018,Actors,@KellyMcCreary,"Oklahoma, I’m looking at you. #vote https://t.co/2IjG9APoaL" +06/12/2018,Actors,@KellyMcCreary,"RT @davidhogg111: This is America, right now + +This is the % of African Americans not able to vote in just a few states. + +VA 21% + +FL 21%…" +06/12/2018,Actors,@KellyMcCreary,Please vote. Please help protect our access to voting. https://t.co/kRzTNGQNnT +06/12/2018,Actors,@KellyMcCreary,RT @equaljustice: Robert Mueller's investigation has already uncovered serious crimes. 5 guilty pleas. 19 indictments. And more than 50 c… +06/12/2018,Actors,@KellyMcCreary,RT @mayawiley: We can’t stop fighting for #netneutrality https://t.co/5Bf415DCYe +06/12/2018,Actors,@KellyMcCreary,"RT @billyeichner: If you live in Virginia, Maine, Nevada, North Dakota or South Carolina - it's Primary day! Get out there and vote TODAY!!…" +06/12/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: IF VOTING DIDN’T MATTER, THEY WOULDN’T BE TRYING TO TAKE AWAY YOUR RIGHT TO DO IT. + +‘Supreme Court Upholds Ohio’s Purge o…" +06/12/2018,Actors,@KellyMcCreary,"RT @rashadrobinson: This is not democracy. This is an attempt to erase the voices of millions of Black voters who vote infrequently, all to…" +06/12/2018,Actors,@KellyMcCreary,RT @RepAdamSchiff: #NetNeutrality protections end today because House Republicans refused to act. Congress still has the power to restore a… +06/12/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: Skeleton Crew is ""...loyalties & finding family outside of family. It is about love & fighting & surviving & unity acr…" +06/11/2018,Actors,@KellyMcCreary,RT @RepJayapal: What I heard from the women being held at the federal detention facility today was saddening and disturbing. They cried so… +06/11/2018,Actors,@KellyMcCreary,RT @HillaryClinton: Here we go again. The Trump Admin is trying to take away your health care by ending protections for ppl w/ pre-existing… +06/11/2018,Actors,@KellyMcCreary,RT @SenKamalaHarris: We just introduced a bill to stop the Trump Administration’s immoral zero-tolerance policy of ripping immigrant childr… +06/11/2018,Actors,@KellyMcCreary,"RT @adamcbest: ""The Democrats are not making any of this easy. They've decided it's more fun to be the resistance than to do their job and…" +06/10/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: It’s our first double-header show day for Skeleton Crew! Our matinee audience is in the house & our awesome four take… +06/09/2018,Actors,@KellyMcCreary,"RT @xuhulk: If you have citizenship in the US, please be mentally prepared to do this on behalf of your neighbors. This is not a drill. htt…" +06/07/2018,Actors,@KellyMcCreary,"Thank you, Dennis!! https://t.co/eXNf5vCTsI" +06/07/2018,Actors,@KellyMcCreary,"RT @itsgabrielleu: Today’s #WCW goes out to Kelly Marie Tran. While I don’t know her, I FEEL her. She was recently driven off of social med…" +06/07/2018,Actors,@KellyMcCreary,RT @Sifill_LDF: Stop calling them entitlements. The safety net is in crisis. https://t.co/2B6IKB8q6g +06/07/2018,Actors,@KellyMcCreary,RT @lsarsour: People will say “but the police followed the law” military followed the law” “ICE followed the law” History has shown us that… +06/06/2018,Actors,@KellyMcCreary,RT @Sifill_LDF: I have been saying this incessantly about Baltimore. Bad policing actually makes the community less safe. Community members… +06/06/2018,Actors,@KellyMcCreary,Previews begin tonight!! https://t.co/JtSyLeFIo3 https://t.co/Eh5Negur5q +06/05/2018,Actors,@KellyMcCreary,RT @Amy_Siskind: WHY ISN’T THIS THE TOP STORY AT EVERY MEDIA OUTLET????!!! https://t.co/dEGwIY9IoP +06/04/2018,Actors,@KellyMcCreary,"RT @cmclymer: Michael Jordan wins Game 5 of the '97 NBA Finals with the flu = ""one of the greatest performances ever"" + +Tiger Woods wins 200…" +06/02/2018,Actors,@KellyMcCreary,Come on @ABCNetwork!! Give us @michellechel!!!! https://t.co/u3dQ4WjZMU +06/02/2018,Actors,@KellyMcCreary,"RT @samswey: Black organizers successfully restored voting rights to an estimated 2,000-3,000 people in Louisiana today. https://t.co/QhrWv…" +06/02/2018,Actors,@KellyMcCreary,RT @sundanceorg: #SundanceTheatre Lab project SKELETON CREW by @domorisseau kicks off on 6/5 at @GeffenPlayhouse. A stellar cast brings her… +06/01/2018,Actors,@KellyMcCreary,This cast is 🍌🍌🍌. #HarveyStreetKids https://t.co/wX9QX68Zph +06/01/2018,Actors,@KellyMcCreary,"Audrey, Lotta and Dot and their friends are finally@here!! Check out the trailer for #HarveyStreetKids!! https://t.co/SgKYfFRTdi" +06/01/2018,Actors,@KellyMcCreary,FINALLY!!! I’ve been dying to share this project for soooo long! It has been an absolute blast playing with… https://t.co/w9LGmezkTa +06/01/2018,Actors,@KellyMcCreary,Nice to meet you. See you @GeffenPlayhouse for #SkeletonCrewGP. https://t.co/f9dU5kzIWu +06/01/2018,Actors,@KellyMcCreary,"@iamedigathegi I love you, brother. https://t.co/jKlq7VkpSV" +05/31/2018,Actors,@KellyMcCreary,Thread thread thread thread thread https://t.co/kuGuuEMoiL +05/30/2018,Actors,@KellyMcCreary,Hungry for a story about working class people facing the vulnerabilities caused by a changing economy? We’ve got so… https://t.co/lgDSlJuDtH +05/30/2018,Actors,@KellyMcCreary,"RT @netflix: Reminder: @OneDayAtATime is a sitcom about a tight-knit, working class family that tackles extremely topical social issues in…" +05/30/2018,Actors,@KellyMcCreary,RT @laurenduca: .@therealroseanne The drug to blame for your behavior is white privilege. +05/30/2018,Actors,@KellyMcCreary,"RT @bcsproul: In Roseanne’s defense, it’s hard to know the difference between racism that gets you fired versus racism that gets you electe…" +05/29/2018,Actors,@KellyMcCreary,"RT @goodblacknews: Starbucks Is Closed This Afternoon, So Try These Black-Owned Coffee Shops Instead https://t.co/6IGtoAXsId" +05/29/2018,Actors,@KellyMcCreary,"RT @equaljustice: As Starbucks closes for bias training, Black-owned coffee shops open their doors wider https://t.co/tAnwhhhxpP" +05/29/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: ROSEANNE HAS BEEN CANCELLED. + +Why? + +Because the people spoke up. + +Why? + +Because we’ve seen enough to that racist tweet…" +05/29/2018,Actors,@KellyMcCreary,This thread! #abolishICE https://t.co/fvHYN5HkUf +05/29/2018,Actors,@KellyMcCreary,"So great to chat with you, Michael! https://t.co/HiAh12I2mm" +05/27/2018,Actors,@KellyMcCreary,"RT @EWErickson: Pro-lifers, if you’re upset about ripping a child out of his mother’s womb, please be upset about ripping a child out of hi…" +05/26/2018,Actors,@KellyMcCreary,RT @samswey: Genocide. He’s celebrating genocide. https://t.co/3ndZ57XnvN +05/24/2018,Actors,@KellyMcCreary,"RT @VictoriaDahl: *deep breath* I'll just say this. Women are raised from the cradle to be hyperconscious of what we say & wear, how we wal…" +05/24/2018,Actors,@KellyMcCreary,👇🏾👇🏾👇🏾👇🏾 https://t.co/kIu1f9lVUD +05/24/2018,Actors,@KellyMcCreary,"RT @BreeNewsome: This is NOT about the anthem. It's about using the NFL, a sport dominated by Black athletes, as a way to publicly reinforc…" +05/24/2018,Actors,@KellyMcCreary,RT @Kappa_Kappa: NFL is pretty chill when it comes to violence against women and brain damage but i guess free speech is where they draw th… +05/24/2018,Actors,@KellyMcCreary,"RT @rashadrobinson: This is white supremacy, period. A blatant and disgusting attempt to strip Black athletes of their voice and reduce the…" +05/24/2018,Actors,@KellyMcCreary,"RT @caterinatweets: Words are important and powerful. Categorizing people in groups and making them seem less than human, less than individ…" +05/24/2018,Actors,@KellyMcCreary,"RT @michellechel: Today there is hope. Warm, sweet, and blessed hope. https://t.co/YXqMQw1Tqo" +05/23/2018,Actors,@KellyMcCreary,"Dozens of groups, affected residents just launched a new Pennsylvania #Fracking Health Impacts campaign! See the st… https://t.co/92YCOQ1OAM" +05/23/2018,Actors,@KellyMcCreary,Then stop lying. https://t.co/3mqbEM9Wdy +05/23/2018,Actors,@KellyMcCreary,Thread. https://t.co/Qw9jEdTB48 +05/23/2018,Actors,@KellyMcCreary,RT @PPact: JUST IN: @realDonaldTrump just imposed a gag rule to cut funds to any health care provider that refers their patients for aborti… +05/23/2018,Actors,@KellyMcCreary,"Thank you, Nae! 😘 https://t.co/28KX3PbnUO" +05/22/2018,Actors,@KellyMcCreary,"RT @ValerieJarrett: Our government is only as good as we, the people, insist that it be. That begins with voting. Please vote for @stacey…" +05/22/2018,Actors,@KellyMcCreary,This woman right here stays adding gems to the American Theater canon! We are so lucky to witness her carrying the… https://t.co/Ssnol6lAAP +05/20/2018,Actors,@KellyMcCreary,RT @LeftStandingUp: Men are afraid women will laugh at them. Women are afraid men WILL KILL THEM. https://t.co/HRwnFXEXiR +05/18/2018,Actors,@KellyMcCreary,RT @laurenduca: 2018 has been twice as deadly for schoolchildren than members of the military. This is not what a civilized country looks l… +05/18/2018,Actors,@KellyMcCreary,"RT @shondarhimes: ""A generation of young people who have spent their entire childhoods traumatized by gun violence, both in their communiti…" +05/18/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: The shooter in the Santa Fe High School shooting was wearing a shirt with a Nazi symbol on it. The rise of white suprem… +05/18/2018,Actors,@KellyMcCreary,Do you have your tickets yet?? What are you waiting for?? #SkeletonCrewGP https://t.co/wjgSiFqLNk +05/16/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: @AnnieHu16891475 @A_Cheatom @KellyMcCreary @dbwofficial @domorisseau Tickets for Skeleton Crew start at $25 plus fee A… +05/16/2018,Actors,@KellyMcCreary,🙋🏽‍♀️ https://t.co/jR6QTleJng +05/16/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: Our Skeleton Crew cast are deep in rehearsal, gearing up for previews to begin on June 5. Got tickets yet? What are yo…" +05/16/2018,Actors,@KellyMcCreary,This child is me pretty much at least once a day— figuratively if not literally. But mostly literally. https://t.co/2GMAgSZpNb +05/15/2018,Actors,@KellyMcCreary,If you are on twitter right now you will probably want to MAKE THIS CALL TODAY. #netneutrality https://t.co/zWppuwlefV +05/15/2018,Actors,@KellyMcCreary,"RT @RavMABAY: I am a rabbi. + +I love Israel. + +I condemn without reservation the bloodshed in #Gaza. + +Not so hard. + +You can challenge the…" +05/15/2018,Actors,@KellyMcCreary,RT @deray: The Palestinian protestors are being murdered. And the media needs to name it as such. It is simply wrong. +05/14/2018,Actors,@KellyMcCreary,"RT @KamalaHarris: This + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +#NetNeutrality + +ends + +on + +June 11 + +unless + +we + +stop + +it + +retweet + +to…" +05/14/2018,Actors,@KellyMcCreary,"RT @keithboykin: White privilege is invading a country, killing the native population, importing another continent's residents as your slav…" +05/13/2018,Actors,@KellyMcCreary,"I am talking about people who have not been tried or convicted of any crime, but who are held in jail simply becaus… https://t.co/SYNq0PuPxi" +05/13/2018,Actors,@KellyMcCreary,"Higher rates of arrest and detention, and an average of 35% higher bail means too many black mothers are in jail on… https://t.co/ofwLNPKK40" +05/13/2018,Actors,@KellyMcCreary,"RT @TheDweck: Maybe if we post enough GIFs, NBC will bring back Obama" +05/12/2018,Actors,@KellyMcCreary,"RT @sarahdrew: I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had the aweso…" +05/12/2018,Actors,@KellyMcCreary,"RT @shondarhimes: People. This is a good Friday. Why? Because #GreysAnatomy, #HowToGetAwayWithMuder, #Station19, AND #ForThePeople are rene…" +05/11/2018,Actors,@KellyMcCreary,"RT @anildash: How come we have to listen to the voice of the poor working class when they back white supremacists, but not when they pull o…" +05/11/2018,Actors,@KellyMcCreary,Thanks for hanging folks. See ya at Jolex’s wedding! 😎 +05/11/2018,Actors,@KellyMcCreary,“April would want us to pray.” #greysanatomy +05/11/2018,Actors,@KellyMcCreary,It’s coming up in next week’s episode... #GreysAnatomy https://t.co/i4YPsCfw7X +05/11/2018,Actors,@KellyMcCreary,Every bit. #GreysAnatomy https://t.co/Z6Vtiid5tM +05/11/2018,Actors,@KellyMcCreary,RT @EllenPompeo: I'm not going to lie... it's a lot tonight...we are the best heartbreakers in the game but don't hate the player...😂😂😂 htt… +05/11/2018,Actors,@KellyMcCreary,I KNOW RIGHT? https://t.co/nslPGnq4to +05/11/2018,Actors,@KellyMcCreary,"Technically speaking, the OR stuff is tricky for me, but Maggie’s mom’s passing was a doozy. https://t.co/ZJkY86xud5" +05/11/2018,Actors,@KellyMcCreary,RT @shondarhimes: This entire cast. Thank you. #GreysAnatomy #TGIT +05/11/2018,Actors,@KellyMcCreary,RT @sarahdrew: I’m watching west coast!! I’ve got some pics to post on Instagram!!! +05/11/2018,Actors,@KellyMcCreary,The love the fun the funny the inspiration the talent the all of it https://t.co/OOkiyGS4hx +05/11/2018,Actors,@KellyMcCreary,I don’t think anyone likes cheese as much as Maggie. https://t.co/z2kxIoA9pe +05/11/2018,Actors,@KellyMcCreary,"Prolly, if the high leads to a cheese plate. https://t.co/Tjrm0XmApt" +05/11/2018,Actors,@KellyMcCreary,RT @brianschatz: They are ripping you off on prescription medicine. They ripped you off on the tax bill. They are ripping you off with insu… +05/11/2018,Actors,@KellyMcCreary,Yaaaaaay Dr. Herman is back! Thank you Geena Davis for gracing us with your genius once more! #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Arizona offers her resignation and already I’m 😭. #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Baby Leo is so stinkin’ adorable I can’t take it. #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Easier to name the eps when I didn’t cry. #greysanatomy https://t.co/xQORww2EeM +05/11/2018,Actors,@KellyMcCreary,Hey peeps! Sorry to have missed the east coast airing but I’ll be here for the west coast... Who wants to live tweet? #greysanatomy +05/04/2018,Actors,@KellyMcCreary,"@IHeartKMcCreary @timolyyyyn_ @ABC123TLC Oh my gosh, congratulations!!! I’m so proud of you! Keep shining, AJ!" +05/04/2018,Actors,@KellyMcCreary,"RT @baratunde: Bad news: organized racists targeted black girl scientists from DC by trying to rig the online vote. + +Good news: NASA interv…" +05/04/2018,Actors,@KellyMcCreary,Hey hey who’s watching @iJesseWilliams’ directorial debut?? #greysanatomy @GreysABC +05/03/2018,Actors,@KellyMcCreary,She-ro!! https://t.co/44sbhY5mQV +05/02/2018,Actors,@KellyMcCreary,Transforming “trust Black women” into policy and practice. #TeamAbrams https://t.co/pv0QgnE8of +05/01/2018,Actors,@KellyMcCreary,RT @DreamUndeferred: Y’all are killing me with this R. Kelly defense. This is the most non-secret ever. It’s not new! If you grew up in Ch… +06/28/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/8FbolLqfQa +06/28/2018,Actors,@IWashington,Dr. Mary McLeod Bethune was BLACK EXCELLENCE... https://t.co/hyVFlpF0nY +06/28/2018,Actors,@IWashington,I’m disappointed at how unbothered I’m with how filthy many public restaurant restrooms are. When I see shit like t… https://t.co/RKVgPGbonJ +06/28/2018,Actors,@IWashington,G’mornafternoovening twittersphere! #SoftshellCrabsInABun https://t.co/DqHDplONEN +06/27/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/n0Kjt373Rt +06/27/2018,Actors,@IWashington,This Moon tho... https://t.co/hgdQmne6WS +06/27/2018,Actors,@IWashington,TV interview hosts; Willie Love and Sarita Mason are the interviewers. Tokeema Hall and Mariah Franklin are your ca… https://t.co/tqhfGOvBKM +06/26/2018,Actors,@IWashington,"I truly enjoyed closing the BCU conference on Education and Social Justice. “If Not Us, Who? If Not Now, When?” https://t.co/aqo7e39mzr" +06/26/2018,Actors,@IWashington,Dr. Randy Nelson and I at B-CU today to talk about Social Justice. I will see him one more time at 1:30PM in the MM… https://t.co/xJ0fP8rHgI +06/26/2018,Actors,@IWashington,RT @HowardUAlumni: Actor and alumnus Isaiah Washington to serve as closing keynote speaker at Bethune -Cookman University's Education and S… +06/26/2018,Actors,@IWashington,RT @bethunecookman: @IWashington stopped by B-CU today to talk about social justice. Hear him one more time at 1:30PM in the MMB Performing… +06/26/2018,Actors,@IWashington,RT @Boski__: Got the opportunity of a lifetime to interview @IWashington it went great it’s just a Leo connection y’all won’t understand… +06/26/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/ELlOZ0aogp +06/26/2018,Actors,@IWashington,"@MissErika Nope! Boarding door shut, engines started and being pushed out to taxi..." +06/26/2018,Actors,@IWashington,"Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justi… https://t.co/iuZxN9tSb2" +06/26/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/VpoZdqZXn2 +06/22/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/ClW8Kqv3V3 +06/22/2018,Actors,@IWashington,"RT @IWashington: Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justice: Mul…" +06/22/2018,Actors,@IWashington,Truth is Stranger Than Fiction... https://t.co/sNT2tkJ6GZ +06/21/2018,Actors,@IWashington,"Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justi… https://t.co/CnLMiqvBN1" +06/21/2018,Actors,@IWashington,@anxne_ Yes. +06/21/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/nMnVyE3Gvj +06/21/2018,Actors,@IWashington,#MySleepTweet I’m just sayin’...THIS: https://t.co/0CrECfuYgv +06/21/2018,Actors,@IWashington,#MySleepTweet cc: @ShaunKing THIS: https://t.co/nFDO8jR741 I know many want to act like this period in American His… https://t.co/83JsvVKDaS +06/17/2018,Actors,@IWashington,"#MySleepTweet DDT was a welcomed treat in Houston, Texas in the 1970’s, because it meant relief from mosquitoes. Ne… https://t.co/MiMGqliZOP" +06/17/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/ES2DvLdE8G +06/16/2018,Actors,@IWashington,You build it and they will come. #Truthdom +06/16/2018,Actors,@IWashington,"Won’t God Do It? I now have my own Televsion Business Affairs, my own Casting Director and now my own funding sourc… https://t.co/JmHGezQGVT" +06/16/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/miLqkFK0T9 +06/16/2018,Actors,@IWashington,G’nite twittersphere...#LazarusRisingMovie https://t.co/wwkfSW3YTY +06/16/2018,Actors,@IWashington,Just had a GREAT production meeting for a new Pilot script I’m starring in and Executive Producing. Y’all. Ain’t. R… https://t.co/7ipCaPAxMr +06/16/2018,Actors,@IWashington,I haven’t walked these Beverly Hills streets in year’s... https://t.co/zNb6QguGDN +06/15/2018,Actors,@IWashington,I woke up this morning to birds singing and it hit me really hard that I have another day and another chance to be… https://t.co/Nd1clswlUj +06/15/2018,Actors,@IWashington,"I’m so proud to be one of the Speakers at The 4th Annual Social Justice Conference @bethunecookman June 26, 2018. G… https://t.co/nMlzihhjd1" +06/15/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/5d8DUDFwm5 +06/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/Bqwwq7G19x +06/14/2018,Actors,@IWashington,#DNAHasMemory https://t.co/9T2ek4X6F1 +06/14/2018,Actors,@IWashington,@DreamLoveCrys Set It Off is musical like love jones?! +06/14/2018,Actors,@IWashington,RT @IWashington: I’m humbled and honored.@chadwickboseman Let’s continue the #HUYouKnow Legacy! 🙅🏾‍♂️ THIS: https://t.co/3wEF8OKTnq +06/14/2018,Actors,@IWashington,"You can hate the man all you want, but I’m a History Buff and this right here is historic... https://t.co/nBUaCrOHos" +06/14/2018,Actors,@IWashington,"@DreamLoveCrys You mean like The Color Purple, Into The Woods and The Lion King?" +06/14/2018,Actors,@IWashington,Damn...I’ve lived long enough to see movies coming out this summer that are remakes of the originals that I saw whe… https://t.co/qYxs1A9FjL +06/14/2018,Actors,@IWashington,Uh-Oh...I just heard from the PR firm promoting this gem of a movie 🎥 directed by .@RZA Y’all. Are. Not. Ready. https://t.co/ab62e4dbcs +06/14/2018,Actors,@IWashington,"Yes, I’m also an Author... https://t.co/urkT9LQDOz" +06/14/2018,Actors,@IWashington,🙏🏾👇🏾🙏🏾 https://t.co/LQs5mFv5ya +06/14/2018,Actors,@IWashington,So we jes gonna ak lak correck spellin’ an gramma don’t matta no mo’ on sochel metia!!!?!!! 🤷🏾‍♂️ +06/14/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/yPJxvatkv3 +06/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/nhVxm2MnPU +06/14/2018,Actors,@IWashington,"I’m not used to chasing anything, so I can’t start now... https://t.co/mqtq9v8SIa" +06/14/2018,Actors,@IWashington,"The older I get, the more I understand my Grandfather, Mr. Willie H. Holmes of Houston, Texas. https://t.co/jjVPogBOAC" +06/14/2018,Actors,@IWashington,Can we talk about this for a second? No? https://t.co/iM4GfNrW8V +06/13/2018,Actors,@IWashington,"Time to be somewhere where I don’t speak the language and when I do speak, its having conversations more interestin… https://t.co/QyE7n7bQPP" +06/13/2018,Actors,@IWashington,"Everybody and Everything has Up’s and Down’s. That’s LIFE, but when you get that second chance, NEVER forget those… https://t.co/scrJENMYYp" +06/13/2018,Actors,@IWashington,These streets stay talking to me... https://t.co/RUlkhEcRNs +06/13/2018,Actors,@IWashington,Shit! I’m mature enough now to finally realize that we don’t wear the mask that grins and lies. It’s our grins and… https://t.co/UCsbT6jAMO +06/13/2018,Actors,@IWashington,I’m humbled and honored.@chadwickboseman Let’s continue the #HUYouKnow Legacy! 🙅🏾‍♂️ THIS: https://t.co/3wEF8OKTnq +06/13/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/UBXT5hdskY +06/12/2018,Actors,@IWashington,#MySleepTweet Gone In 43 Seconds...@MrRickyWhittle https://t.co/ReQ7jkztw3 +06/12/2018,Actors,@IWashington,#MySleepTweet Gone In 43 Seconds...@MrRickyWhittle https://t.co/Vrmnokwn1b +06/09/2018,Actors,@IWashington,#MySleepTweet I’m unbelievably shocked and saddened by the loss of Anthony Bourdain. My wife and I have been inspir… https://t.co/rcT4zYB8eB +06/08/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/1DOL19itMD +06/07/2018,Actors,@IWashington,"I’m feel most empowered with my Black Orchid - The Black Orchid is the most highly coveted of ornamental plants, th… https://t.co/DBOsUVpwv5" +06/07/2018,Actors,@IWashington,"I’m not at peace without my Phalaenopsis White Orchid - Symbolism White: The White Orchid signifies innocence, eleg… https://t.co/FvLJEHZvdu" +06/07/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/KczPinpd0L +06/07/2018,Actors,@IWashington,RT @IWashington: G’nite twittersphere...#TheYellowBirds https://t.co/YEHlT7lwZs +06/07/2018,Actors,@IWashington,Alexandre Moors and Dylan Park. Two Writer/Directors that I fuck with. #BlueCaprice #LazarusRisingMovie .@dyllyp https://t.co/sDalVudzvd +06/07/2018,Actors,@IWashington,A Blue Caprice Reunion at the Yellow Birds Screening in Los Angeles at the London Hotel 6/6/2018 #TheYellowBirds… https://t.co/B3CiG3TViR +06/07/2018,Actors,@IWashington,G’nite twittersphere...#TheYellowBirds https://t.co/YEHlT7lwZs +06/07/2018,Actors,@IWashington,RT @ShaunKing: This is 50 seconds of brilliance. Listen to this. We’ve made progress when we get white leaders like this openly calling out… +06/06/2018,Actors,@IWashington,"RT @IWashington: I can’t wait to see Alexandre Moors, my friend and director of .@BlueCapriceFilm new movie today! https://t.co/Jcd48fpQwM" +06/06/2018,Actors,@IWashington,"RT @IWashington: Men Of IMPACT 2018 with our Fearless Leader Tunisha Brown, Editor-in-Chief of IMPACT Magazine.@impact_magazine The “first”…" +06/06/2018,Actors,@IWashington,"RT @IWashington: I’m so proud to have met Demetria L. Graves, Esq. and a few of these powerful women with .@elitefirmla https://t.co/WvlxF7…" +06/06/2018,Actors,@IWashington,"For some reason, I keep thinking about my Momma asking me to give her some “sugar”. Why you messing with me today F… https://t.co/BxD6bVgOan" +06/06/2018,Actors,@IWashington,"15% of all people that come in contact with you aren’t going to ‘like’ you no matter what you do, so focus more on… https://t.co/BKeqZPVG20" +06/06/2018,Actors,@IWashington,"I’m so proud to have met Demetria L. Graves, Esq. and a few of these powerful women with .@elitefirmla https://t.co/WvlxF7PSwO" +06/06/2018,Actors,@IWashington,We were all born with ‘special powers’. You just have to realize what they are and use them for good. #Truthdom +06/06/2018,Actors,@IWashington,If .@Twitter ended tomorrow. Could you live without it? Just asking for a friend. 🤔 +06/06/2018,Actors,@IWashington,"The American legal system has a history of accusing, indicting and convicting innocent citizens in our courts all t… https://t.co/wfyS6ottKA" +06/06/2018,Actors,@IWashington,"Americans talk a lot about violence and killings, but I don’t hear about how many careers and lives have been destr… https://t.co/JTwfVjsaEf" +06/06/2018,Actors,@IWashington,"I can’t wait to see Alexandre Moors, my friend and director of .@BlueCapriceFilm new movie today! https://t.co/Jcd48fpQwM" +06/06/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/xRC8P1ucMy +06/06/2018,Actors,@IWashington,G’nite twittersphere...THIS: https://t.co/pXCXp6SK3F +06/06/2018,Actors,@IWashington,Who did they call when they needed to get it done? #BuffaloSoldiers .@Skillsetmag https://t.co/RUHdxYX2r7 +06/06/2018,Actors,@IWashington,"@dyllyp @Skillsetmag The results of sweat, gunpowder, dust and tears covering the lens. You know about it." +06/06/2018,Actors,@IWashington,My Shooting Team Is Strong...No More Excuses. No More Apologies. .@Skillsetmag 🤙🏾 🇺🇸 https://t.co/unuHg59fFR +06/05/2018,Actors,@IWashington,Does her Momma know? https://t.co/5rsUBRbG1n +06/05/2018,Actors,@IWashington,I wonder what George W. Bush is doing right now...🤔 +06/05/2018,Actors,@IWashington,Platform Envy is real...#Truthdom +06/05/2018,Actors,@IWashington,"If you think ish in America is crazy today, try remembering Jesse James, Billy the Kid, Butch Cassidy and the Sunda… https://t.co/eHUaOd57BV" +06/05/2018,Actors,@IWashington,"@DvineExpression Neely Fuller, Jr. would be proud. Stay the course, create and build." +06/05/2018,Actors,@IWashington,When in doubt. Eat some cheesecake... https://t.co/Jx2E24SHQ6 +06/05/2018,Actors,@IWashington,The 46th President and Vice President of the United States of America? 🇺🇸 https://t.co/Fx2HzHButB +06/05/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/FMzf4wUCwM +06/05/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/y8H3ddy0FP +06/05/2018,Actors,@IWashington,People ask me why don’t I “march” against injustice. Really? My entire body of work has “marched” against injustice. Wake Up! #Truthdom +06/05/2018,Actors,@IWashington,"When you decide to monetize your passion, then it will never be work. #Truthdom" +06/05/2018,Actors,@IWashington,I’m not afraid. Never have been. Never will be. #Truthdom https://t.co/X2sWnUliHT +06/05/2018,Actors,@IWashington,@Lexialex Any song from this album will work... https://t.co/T7wl52tSb5 +06/05/2018,Actors,@IWashington,I’ve been in Los Angeles for 22 year’s now and I have never seen The Watts Towers. I’m gonna change that this week.… https://t.co/DVmnuttKWq +06/05/2018,Actors,@IWashington,"Men Of IMPACT 2018 with our Fearless Leader Tunisha Brown, Editor-in-Chief of IMPACT Magazine.@impact_magazine The… https://t.co/3LnTlPvysi" +06/05/2018,Actors,@IWashington,Big Brandon! New to .@Twitter with only 3 Tweets and 2 of them are to me. I’m honored sir! 🤙🏾 https://t.co/LA0EaBad4A +06/05/2018,Actors,@IWashington,I’m so there for this one... https://t.co/RKKsrC9n1p +06/05/2018,Actors,@IWashington,Sounds like a plan as long as you are there on the line with me. https://t.co/mBgLjxEbmg +06/04/2018,Actors,@IWashington,Missing my family at Thunder Ranch...#LazarusRisingMovie https://t.co/3bCZvFS1mp +06/04/2018,Actors,@IWashington,I’m not interested in taking someone else’s throne. I’m too busy building my own...#Truthdom https://t.co/tTF3ZOb7Y3 +06/04/2018,Actors,@IWashington,"I’m blown away at how much #The100Fans on Instagram, on airlines, in the airport, in Whole Foods and on the streets… https://t.co/3WSEFmmbFn" +06/04/2018,Actors,@IWashington,Men Of IMPACT @impact_magazine THIS: https://t.co/mRAKFFa398 #IMPACTMagazine #MenOfIMPACT .@steviebaggsjr https://t.co/94chZqdrrd +06/04/2018,Actors,@IWashington,You can’t burn a bridge that wasn’t built with You in mind. #Truthdom +06/04/2018,Actors,@IWashington,Loving my bracelets from @impact_magazine designed by @omoyeni_jewelry Fit for the Modern King 👑 #IMPACTMagazine… https://t.co/dQESYAwVWn +06/04/2018,Actors,@IWashington,Goodbye Atlanta. Hello Los Angeles! +06/04/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/7XYufRxlke +06/04/2018,Actors,@IWashington,G’nite twittersphere...@impactmagazine https://t.co/HyOnhfCHIF +06/04/2018,Actors,@IWashington,"I’ve been in many rooms where awards & honors have been given, but I have never been in a room where u are given ‘g… https://t.co/JIRTxR7CR1" +06/03/2018,Actors,@IWashington,The EIGHTY5 is a really good cigar...@ochocinco Thank You @impact_magazine for the cigar gift and introduction.… https://t.co/tmiEFFvtCV +06/03/2018,Actors,@IWashington,Tonight is the Night....@impact_magazine 🙌🏾🙌🏾🙌🏾 https://t.co/eg4J3qGbw9 +06/03/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/4CohjuUma7 +06/03/2018,Actors,@IWashington,G’nite twittersphere...@impact_magazine #MenofIMPACT https://t.co/Rffv6ayZX5 +06/02/2018,Actors,@IWashington,Impressive Pick-Up from the airport in Atlanta today. Thank You 👌🏾@impact_magazine and @czartheearner… https://t.co/bwy2pxpLVc +06/02/2018,Actors,@IWashington,RT @IWashington: Goodbye Los Angeles. Hello Atlanta! https://t.co/nrR5nIOQ1A +06/02/2018,Actors,@IWashington,😳 https://t.co/5xqXIclYiL +06/02/2018,Actors,@IWashington,And now...it’s their turn! Thank You Black Panther Movie 🎥 #BuffaloSoldiers #AmericanHistory 🇺🇸 https://t.co/B0v1D3iiwZ +06/02/2018,Actors,@IWashington,You can’t rationalize crazy. #Truthdom +06/02/2018,Actors,@IWashington,"The day I can fit 98K people in my house, is the day I’ll be disappointed with how many Followers I have here on Tw… https://t.co/4cjW6Vo7rk" +06/02/2018,Actors,@IWashington,I need to get my eyeglasses checked. Thought I saw 988K Followers for a minute...😏 +06/02/2018,Actors,@IWashington,Goodbye Los Angeles. Hello Atlanta! https://t.co/nrR5nIOQ1A +06/02/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/EaKGq3WTIl +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/FWUnqyrg9L +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/CpDDNm2qgB +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/XIpjh9iFKF +05/26/2018,Actors,@IWashington,#MySleepTweet I don’t believe in serendipity anymore. LAZARUS RISING is our DESTINY. 🤙🏾 🇺🇸 https://t.co/jqiDxFJ5f4 +05/26/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/Gc0wmtfShS +05/26/2018,Actors,@IWashington,Trying to find that Tweet spot... +05/25/2018,Actors,@IWashington,Steve Kerr just nailed a political 3 Pointer... https://t.co/3VtjLdB41I +05/25/2018,Actors,@IWashington,Seasons 1 thru 5...#The100Season5 https://t.co/OzGw8v2kkg +05/25/2018,Actors,@IWashington,You can WATCH IT on .@TIDAL #TheyDieByDawn https://t.co/W6vMuoawxG +05/25/2018,Actors,@IWashington,My Son brought me a gift from Berlin...#Breznak https://t.co/yHyGe5b2It +05/25/2018,Actors,@IWashington,Back in the gym... https://t.co/yufaLQsKNx +05/25/2018,Actors,@IWashington,She knows she wants to ride that .@BirdRide https://t.co/WFiPhoNvGE +05/25/2018,Actors,@IWashington,Waiting on tomorrow’s Game 6 like... https://t.co/5RVvAvaPPD +05/25/2018,Actors,@IWashington,#Justice... https://t.co/DAzO8aZpNr +05/25/2018,Actors,@IWashington,#Mood https://t.co/ErC2ce2T6r +05/25/2018,Actors,@IWashington,Me when I realize it’s a 3 Day Weekend.. https://t.co/E3cehc48iD +05/25/2018,Actors,@IWashington,I can’t wait... https://t.co/RL8b0su0cu +05/25/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/O87tYuoore +05/25/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/8r1bukX1bT +05/25/2018,Actors,@IWashington,My oldest son just returned home safely today from a 5 week tour of Europe. That means...he listened to his Mother… https://t.co/C3jQqrXPhJ +05/25/2018,Actors,@IWashington,"Twitter sucks, but I love it! #Truthdom" +05/25/2018,Actors,@IWashington,🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾 https://t.co/3hpc48n0bA +05/25/2018,Actors,@IWashington,"I know I not supposed to have ‘free speech’ anymore, but I’m going to act like I do until they shut me up for good.… https://t.co/HNjpevZrxU" +05/25/2018,Actors,@IWashington,"There are Producers saying, “Isaiah is ‘a pain in the ass to work with’. We can’t hire him.” Hmmm...why don’t they… https://t.co/1SYkyVHa5A" +05/25/2018,Actors,@IWashington,They got Morgan Freeman and he’s 81...who’s next? https://t.co/iMSAjGts2E +05/25/2018,Actors,@IWashington,Nah. You don’t get to holla at me on the sneak tip here on Twitter. It’s been waaaaaaayyyy too long. Hit me in my D… https://t.co/VjnM8kObTv +05/25/2018,Actors,@IWashington,"If I’m quiet, it means I working. Never think otherwise...#LazarusRisingMovie https://t.co/RAwm5GKeeH" +05/25/2018,Actors,@IWashington,You mad???? https://t.co/WV9R3nylq5 +05/25/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/BRwOiR43wh +05/24/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/U9fZLMsOVT +05/23/2018,Actors,@IWashington,"I’m the guy that will run towards the fire, when other’s choose to run away. I’m just built like that...#Truthdom https://t.co/Pctf9N1Cez" +05/23/2018,Actors,@IWashington,#The100Fandom .@cwthe100 is so remarkably talented and passionate. 👊🏾💯 Just Look at THIS: https://t.co/UXv0HY99It +05/23/2018,Actors,@IWashington,I have found that Discussing Commonality over a good meal is much more Productive than Fighting over Ideologies. I’… https://t.co/j8X73n6sB3 +05/23/2018,Actors,@IWashington,"“Hot off his 5 Day Training at the world renowned Thunder Ranch, Isaiah Washington is convinced that his new compan… https://t.co/ypMNs6o4DZ" +05/23/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/gAyOLiljAo +05/23/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/1nUAClIWxl +05/23/2018,Actors,@IWashington,"The victimized victimize others, because they were victimized. Don’t let their victimization victimize you. It’s not your fault. #Truthdom" +05/22/2018,Actors,@IWashington,#TBT The 100 Best Movies On Netflix .@netflix .@BlueCapriceFilm THIS: https://t.co/xPiiDzXi1m https://t.co/WdBLB3siVc +05/22/2018,Actors,@IWashington,"Meet “Lazarus Richard Bonner”. Currently a High School History Teacher, a Persian Gulf War Veteran and a former Cap… https://t.co/q6scBcGyzC" +05/22/2018,Actors,@IWashington,A Man Can Dream Can’t He? #AdamBrashear .@KevinGrevioux https://t.co/zYdRB2PSmv +05/22/2018,Actors,@IWashington,I’m Ten Toes Down and available to be the Blue Marvel... https://t.co/PMNHCB42YE +05/22/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/JZizrm6cZ8 +05/22/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/DhUSZB23mJ +05/22/2018,Actors,@IWashington,I’ve talked a lot with cops and criminals and they both are just trying to “do their jobs” to feed their families.… https://t.co/X8ttVX0zGd +05/22/2018,Actors,@IWashington,"I trained with these Warriors, Fathers, Husbands, Sons, Brothers, Cousins and each one of them ripped off their pat… https://t.co/HWAgUmUgkn" +05/21/2018,Actors,@IWashington,RT @IWashington: Goodbye Reno. Hello Los Angeles! https://t.co/rhgMiKCvuc +05/21/2018,Actors,@IWashington,Thank You for the T-Shirt .@Skillsetmag 🤙🏾 https://t.co/VRBwhFS1hw +05/21/2018,Actors,@IWashington,Goodbye Reno. Hello Los Angeles! https://t.co/rhgMiKCvuc +05/21/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/Q2ku6PitTB +05/18/2018,Actors,@IWashington,#MySleepTweet That Work...@thunderranchinc https://t.co/zgz4R7em2A +05/14/2018,Actors,@IWashington,#MySleepTweet Look at God... https://t.co/rIC4Y59YOL +05/14/2018,Actors,@IWashington,#MySleepTweet I am so ready for this...#EDNixon ✊🏾🚌 https://t.co/CCACKOQGzA +05/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/aDriQhZvSF +05/14/2018,Actors,@IWashington,RT @IWashington: I love this movie and this hotel...#TheMisfits https://t.co/yswIjJRdgr +05/14/2018,Actors,@IWashington,RT @IWashington: I’m now sitting at the Longest Bar in Nevada and...#RenoNevada 😳 https://t.co/QXqMrvd8qd +05/14/2018,Actors,@IWashington,Not bad... https://t.co/paO2I6sebE +05/14/2018,Actors,@IWashington,I’m now sitting at the Longest Bar in Nevada and...#RenoNevada 😳 https://t.co/QXqMrvd8qd +05/14/2018,Actors,@IWashington,I love this movie and this hotel...#TheMisfits https://t.co/yswIjJRdgr +05/14/2018,Actors,@IWashington,RT @IWashington: Goodbye Los Angeles. Hello Reno! +05/13/2018,Actors,@IWashington,"Someone said maybe I should retire from show business, but I never was in show business. Here is the thing, I was n… https://t.co/XRQbxgoW5G" +05/13/2018,Actors,@IWashington,"Damn, what was I thinking? I’m on my Twitter page and not my Facebook page. Sorry, I got confused tweeting all this… https://t.co/aV1JRMVa3M" +05/13/2018,Actors,@IWashington,"I saw it 30 year’s ago, which is exactly why I gave the world “Kyle” in Spike Lee’s GET ON THE BUS. https://t.co/NfI4tfK82k" +05/13/2018,Actors,@IWashington,"I’m sorry, but I just had to...😏 https://t.co/XQ7Fnt2Oua" +05/13/2018,Actors,@IWashington,"Being vigorously offered to portray a number of gay African American male roles that appear to put up tough, often… https://t.co/HsKwElDCFz" +05/13/2018,Actors,@IWashington,"When a writer compliments you for doing unprecedented, fearless and groundbreaking work 22 year’s ago, but is too l… https://t.co/MCEoChxXo4" +05/13/2018,Actors,@IWashington,Always know where the exits are. #Truthdom +05/13/2018,Actors,@IWashington,"You’re not wrong for asking me, but you can’t make me wrong for saying no. That’s weak folk ish. #Truthdom" +05/13/2018,Actors,@IWashington,Goodbye Los Angeles. Hello Reno! +05/13/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/5noljjDEkv +05/13/2018,Actors,@IWashington,#MySleepTweet Me and My Bird Flyin’ thru Venice on Abbot Kinney Blvd. 😆 #Venice #Bird #Unbothered… https://t.co/m6hE6jG9bq +05/11/2018,Actors,@IWashington,#MySleepTweet #TBT I was made a Chief in 2006 and given the name Chief Gondobay Manga II and I take it very serious… https://t.co/js4OYTlugk +05/11/2018,Actors,@IWashington,#MySleepTweet I Am T’Chaka!!! I’ve been on that Black Panther ish for a long time. Actually since 1982...… https://t.co/794iGHJorD +05/08/2018,Actors,@IWashington,#MySleepTweet “How did we go from whips and chains to whips and chains?” .@CeeLoGreen 🔥🔥🔥🔥 https://t.co/2PkJk0BQEn +05/08/2018,Actors,@IWashington,#MySleepTweet I’m getting real tired of paying all these taxes only for people that look like me to be miseducated… https://t.co/CnQvGfdp5z +06/30/2018,Actors,@DohertyShannen,@KDOCTV did you really air a commercial with one of your own riding a dolphin??? Shame on you. +06/26/2018,Actors,@DohertyShannen,"Ridiculous that I’m having to post this but I refuse to let companies like American Media Inc, make even 1 dollar o… https://t.co/dL8m87Flt0" +06/26/2018,Actors,@DohertyShannen,"This guy needs a rescue ASAP!!! Please see below. #Repost urgentdogsofmiami with @repostapp +・・・ +LAST CALL🚨DIES AT 1… https://t.co/WNP7GWox1K" +06/24/2018,Actors,@DohertyShannen,About last night... #lawrencepiro Santa Monica https://t.co/7WNUBw2l4h +06/24/2018,Actors,@DohertyShannen,I really like learning new things.... happy Sunday https://t.co/dmxH6jsXxi +06/23/2018,Actors,@DohertyShannen,RT @SEIclimate: Their stomachs are so full of plastic that there is no room for food. Watch the documentary. https://t.co/PVUHn9P3PH @BBCBr… +06/23/2018,Actors,@DohertyShannen,"#Repost urgentdogsofmiami with @repostapp +・・・ +PLS WATCH THIS🙏🏻. For 3 months, we’ve watched people pass us by day a… https://t.co/m28bW07NKf" +06/22/2018,Actors,@DohertyShannen,See you in Paris!! https://t.co/dpRJLbEBA6 +06/22/2018,Actors,@DohertyShannen,"RT @AbraKazamShow: Shannen Doherty @CharmedDaily, Ricky Whittle et Orlando Jones #americangods seront les vendredi 26 et samedi 27 octobre…" +06/22/2018,Actors,@DohertyShannen,no words.... https://t.co/yb6049Erwv +06/22/2018,Actors,@DohertyShannen,Ready for takeoff missbowiedoherty 📸 alexi2842 https://t.co/Bhk6v2Pb8L +06/18/2018,Actors,@DohertyShannen,And..... happy Monday https://t.co/aFtNgVDZa2 +06/18/2018,Actors,@DohertyShannen,The dent in my heart. https://t.co/pvXdLl28kW +06/17/2018,Actors,@DohertyShannen,I’m at the 4 week mark our from surgery.… https://t.co/hvk5VK9KMq +06/17/2018,Actors,@DohertyShannen,https://t.co/7nZqj174sF +06/13/2018,Actors,@DohertyShannen,Let’s sign petition and make LA fur free!!… https://t.co/A1vQymYVle +06/13/2018,Actors,@DohertyShannen,So cute. https://t.co/P8p9FlQBPy +06/09/2018,Actors,@DohertyShannen,A rare night out for me right now but when my… https://t.co/hlxNtk2UxJ +06/07/2018,Actors,@DohertyShannen,Just look at these 2 sweet girls. Need living… https://t.co/OtUzrB83Pw +06/04/2018,Actors,@DohertyShannen,Look at this gorgeous boy!! https://t.co/LKVIEuXfsb +06/04/2018,Actors,@DohertyShannen,https://t.co/LhbDqpkDB1 +06/02/2018,Actors,@DohertyShannen,Reconstruction is no joke. Not going to lie...… https://t.co/L6Mtx0E06B +06/02/2018,Actors,@DohertyShannen,Sweet baby Duke needs help to get surgery.… https://t.co/oGWOQuQfj8 +06/01/2018,Actors,@DohertyShannen,RT @WorldAnimalNews: Sign Petition Demanding That Those Responsible For Starving Hundreds Of Horses On A South African Military Base Be Hel… +05/31/2018,Actors,@DohertyShannen,"If you’re able, please join this event. #Repost… https://t.co/3sTWsyMCdS" +05/30/2018,Actors,@DohertyShannen,RT @nywolforg: Man who intentionally killed a 10-month-old endangered Mexican gray wolf on his grazing allotment in the Gila Nat'l Forest h… +05/28/2018,Actors,@DohertyShannen,"RT @UrgentPart2: The dogs on the Super Urgent page are either high risk, injured or have previously appeared on the To Be Destroyed list an…" +05/28/2018,Actors,@DohertyShannen,Thank you. https://t.co/7XYTo2idEX +05/26/2018,Actors,@DohertyShannen,"Me, trying to figure out how I feel about… https://t.co/N3xFjta91P" +05/25/2018,Actors,@DohertyShannen,This guy could use a hero real quick. https://t.co/giAgvlNrQ7 +05/25/2018,Actors,@DohertyShannen,"RT @dodo: This guy goes undercover as a dog meat buyer to rescue as many dogs as he can — and this brave, resilient dog is proving happines…" +05/25/2018,Actors,@DohertyShannen,RT @nywolforg: The federal govt is moving to allow trophy hunters to kill wolves + pups during denning season within some national wildlife… +05/25/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Good news/ Coyote with tube has been caught and in rehab. Sad cuz she’s a mom. She also had a snare on her neck under th… +05/25/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: BREAKING NEWS + +In a shocking and secretive move, Zambian authorities have overturned their 2016 decision to suspend th…" +05/23/2018,Actors,@DohertyShannen,@chrissyteigen @realDonaldTrump 😂😂😂❤️❤️ +05/23/2018,Actors,@DohertyShannen,Last call URGENT. 1 hour left. Please see below… https://t.co/3xwGTrSqzO +05/23/2018,Actors,@DohertyShannen,RT @Protect_Wldlife: Breaking News; Introduction of ivory bill boosts fight against #Elephant poaching. The #IvoryBill introduced to Parlia… +05/22/2018,Actors,@DohertyShannen,"RT @WildlifeVt: We did it! The ban on coyote killing contests (H.636) in Vermont is a done deal! It was a long, hard, fight but we never st…" +05/22/2018,Actors,@DohertyShannen,"RT @UrgentPart2: TO BE DESTROYED 05/23/18 - Tonight's list has been posted. + +https://t.co/6HYiqjrRYS https://t.co/NYcgltAGFn" +05/22/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: ""Sport is fair. Sport is consensual. If Trophy Hunting was a sport the animal would know it was involved. It would als…" +05/22/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: The paradigm shift in understanding predators are essential & not a target is happening. 🐺⭐️🐺 +Read all about it. Vermont…" +05/21/2018,Actors,@DohertyShannen,@blagurtle This.... this is perspective. I’m sorry the world we have created is one of fear to just go get an education. +05/21/2018,Actors,@DohertyShannen,Perspective.... so important. +05/21/2018,Actors,@DohertyShannen,Perspective time.... 22 school shootings this year alone. +05/18/2018,Actors,@DohertyShannen,RT @davidsting414: RT heartbroken students were in the carriage when the tortured horse was collapsed & the students never helped the poor… +05/18/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: #ThoughtForTheDay for Trophy Hunters!! + +#BanTrophyHunting NOW!! https://t.co/3jiHOyNydb" +05/18/2018,Actors,@DohertyShannen,RT @Defenders: Today is #EndangeredSpeciesDay! We have all the tools to bring these species back before they get pushed over the edge. We j… +05/17/2018,Actors,@DohertyShannen,My view last Friday May 11. As I lay there… https://t.co/zIeY8dcZ9c +05/17/2018,Actors,@DohertyShannen,LAST CALL. Please read below to save her life.… https://t.co/7nFIOJsF43 +05/15/2018,Actors,@DohertyShannen,"#Repost @cmittermeier with @repostapp +・・・ +A… https://t.co/eaS79HrTaJ" +05/14/2018,Actors,@DohertyShannen,https://t.co/DZR2eWso2p +05/14/2018,Actors,@DohertyShannen,Happy Mother’s Day mom. I only bring you to the best… https://t.co/ZBOgK0ZKb5 +05/08/2018,Actors,@DohertyShannen,This girl.... missbowiedoherty enjoying a lazy Tuesday. #dogslife @… https://t.co/saGsgrrQem +05/08/2018,Actors,@DohertyShannen,RT @nywolforg: Wolves Are Losing Ground to Industrial Logging in Southeast Alaska https://t.co/N13TMDNHyj via @earthislandjrnl +05/08/2018,Actors,@DohertyShannen,Join me and the @ASPCA and help STOP the King Amendment! If… https://t.co/TYDXBd0KLU +05/07/2018,Actors,@DohertyShannen,Let’s get Charlie adopted before he’s put down tomorrow!!!! Please!! #Repost… https://t.co/Z6ipShyj1i +05/07/2018,Actors,@DohertyShannen,Dinner with Dr Jay Orringer and his beautiful wife Jolynne. This man is… https://t.co/emt3QBKC44 +05/06/2018,Actors,@DohertyShannen,RT @oceana: Tell your senator to support ending the use of drift gillnets in waters off California and protect at-risk species from being k… +05/06/2018,Actors,@DohertyShannen,RT @dodo: This baby elephant needed some help getting out of a river — and the sweetest thing happened 🐘💕 https://t.co/UGNJz0vHki +05/06/2018,Actors,@DohertyShannen,Day 2 of morning hike with chriscortazzo I forgot how beautiful it is to… https://t.co/tbYCzcrvWw +05/05/2018,Actors,@DohertyShannen,"Check this out. #Repost @rhinosaverz with @repostapp +・・・ +Go to… https://t.co/TtOld6I2Cu" +05/05/2018,Actors,@DohertyShannen,The road ahead. https://t.co/DFqImwQMJ1 +05/04/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: Not content with killing one Lion, this BASTARD found the need to slaughter THREE of them 🤬🤬! + +RT if you want a GLOBAL…" +05/03/2018,Actors,@DohertyShannen,"RT @ASPCA: What an amazing quote! 🐴💕 ""The adoption of one horse won't change the world but surely, it will change the world for that one ho…" +05/03/2018,Actors,@DohertyShannen,@JayOrringerMD Can I give you 10.0 star review? +05/02/2018,Actors,@DohertyShannen,"@JennyOrganic @rojoha1991 @people As a “Christian” who wants to spread light, you sure are negative and spreading l… https://t.co/FN2SSH5cYX" +05/02/2018,Actors,@DohertyShannen,My doctored had me bank some blood for my upcoming surgery. Mars P was… https://t.co/A9Sms5oM2I +05/01/2018,Actors,@DohertyShannen,It’s about time daddy paramountnetwork heathers color me impressed for your… https://t.co/MHWKazMd6u +05/01/2018,Actors,@DohertyShannen,Texas please don’t let this cute baby die. #Repost @MODrescue with… https://t.co/xwa1nIjOB7 +04/25/2018,Actors,@DohertyShannen,https://t.co/YCCnzEfvwo +04/25/2018,Actors,@DohertyShannen,Check out this cute girl. https://t.co/8KWEoiIDQ0 +04/24/2018,Actors,@DohertyShannen,"It’s always awesome seeing @anhcotranhair for a few reasons... +1. He always renews my faith in… https://t.co/a9h5dHYH63" +04/23/2018,Actors,@DohertyShannen,I went yesterday and saw this movie. Thank you @amyschumer and everyone involved for making me… https://t.co/2mzNQc88Ar +04/21/2018,Actors,@DohertyShannen,This. https://t.co/1UxFUR2fPs +04/18/2018,Actors,@DohertyShannen,I am so proud of our foundation @AHWFoundation and consultingwildhorse for getting this done.… https://t.co/6OBJ6MOgmm +04/14/2018,Actors,@DohertyShannen,"@sarahmgellar happy birthday. We have been thru some monumental moments together... weddings,… https://t.co/v8jC2PJeCj" +04/13/2018,Actors,@DohertyShannen,"If this isn’t a kick ass group of women, I don’t know what is. Love my girls @sarahmgellar… https://t.co/QLiY6heUsE" +04/13/2018,Actors,@DohertyShannen,Birthday night. Such an amazing group of people I love so much https://t.co/ZqMg8ciZbc +04/12/2018,Actors,@DohertyShannen,Ran down to my local salon to get hair done for dinner and my girl Amanda turned it out!!!… https://t.co/clPU1DuXr6 +04/12/2018,Actors,@DohertyShannen,@peta Thank you 💕🐾🐾 +04/12/2018,Actors,@DohertyShannen,@amya1996 💕💕 +04/12/2018,Actors,@DohertyShannen,@TODAYshow 😘😘😘😘 +04/12/2018,Actors,@DohertyShannen,Spa time done then got treated to lunch!!! Thanks mom. Love you. themamarosa #birthdaygirl https://t.co/Ltu5nDznNZ +04/09/2018,Actors,@DohertyShannen,Apparently it was a tiring morning for them both.... https://t.co/0K4CMHEhRM +04/09/2018,Actors,@DohertyShannen,Please read below. We need housing for 87 dogs or slaughter will be unavoidable. #Repost… https://t.co/l1IgQQ0zk1 +04/07/2018,Actors,@DohertyShannen,@RalphGarman ❤️❤️❤️ thank you kind sir. +04/05/2018,Actors,@DohertyShannen,@SeanvanderWilt Damn!!!! You look good! +04/04/2018,Actors,@DohertyShannen,Still in remission. I imagine that I’ll always worry to a certain extent but I think we all… https://t.co/cH4QAhUbq1 +04/04/2018,Actors,@DohertyShannen,"RT @ASPCA: ACT NOW: Urge the U.S. Attorney General to support the HEART Act, a federal bill that will help victims of dogfighting get rehab…" +04/02/2018,Actors,@DohertyShannen,"Went to doctor today for tumor marker test and bone density scan. Yes, that’s my mom... I… https://t.co/LTyT2X6qSB" +04/02/2018,Actors,@DohertyShannen,I know it’s a wrap on Easter but can I just wear these a little longer? https://t.co/oYJLwI6UES +04/02/2018,Actors,@DohertyShannen,Ending Easter with family. My husband is working but he’s here in spirit. I love these people.… https://t.co/i3LYklgpFC +04/01/2018,Actors,@DohertyShannen,Easter. chriscortazzo themamarosa sdjneuro kellgrom https://t.co/wqGr0JaBoy +04/01/2018,Actors,@DohertyShannen,"Me, clearly oblivious to abnormally large bunny behind me and my mom, clearly disturbed by… https://t.co/K7ASrhb48c" +04/01/2018,Actors,@DohertyShannen,Easter with sdjneuro and @ashermonroe https://t.co/dgjwGgoIei +03/31/2018,Actors,@DohertyShannen,"So my friend @seanvanderwilt said... hey let’s dance. I, being a good friend, obliged. I didn’t… https://t.co/sc2Wqg9rqV" +03/26/2018,Actors,@DohertyShannen,Today March 25 is my dads birthday. I wish he was still here. I miss his hugs. I miss his… https://t.co/pjbXrN37T6 +03/25/2018,Actors,@DohertyShannen,wedding of the year.... maybe of the decade. #marcandnoble #nyc https://t.co/AUpBAIjBMO +03/24/2018,Actors,@DohertyShannen,Proud to be included and share my story in hope of helping others https://t.co/VNWdThWH3g +03/24/2018,Actors,@DohertyShannen,RT @ASPCA: ACT NOW: Today is the LAST day the @USDA will accept public comments on a disastrous proposal to allow for-profit businesses and… +03/24/2018,Actors,@DohertyShannen,#mdastrong https://t.co/8IOxWCF6be +03/24/2018,Actors,@DohertyShannen,And we are off. https://t.co/6fqgjEuPZM +03/22/2018,Actors,@DohertyShannen,#theadventuresofindio continue with @kurt_iswarienko falling in love. #rescue https://t.co/5vh3QuVLm0 +03/22/2018,Actors,@DohertyShannen,"So I babysat this one today. Going to housebreak her, train her. I hope. So please meet Indio.… https://t.co/7CInZst79i" +03/20/2018,Actors,@DohertyShannen,"Rescued this cute little girl today. She was found by Casey, alone on the streets of Indio. No… https://t.co/Oh7ULOXveU" +03/20/2018,Actors,@DohertyShannen,Good morning. https://t.co/TUe6CxWx4R +03/15/2018,Actors,@DohertyShannen,Happy birthday annemkortright Your friendship means more to me than you’ll ever know. Your… https://t.co/vvlZ2Lm3AH +03/14/2018,Actors,@DohertyShannen,I tried to explain to her the concept of separate beds but she hates the fifties.... #problems https://t.co/k9HVFCgOet +03/14/2018,Actors,@DohertyShannen,God I’m so bored when I’m with him https://t.co/wFcbM10c2r +03/14/2018,Actors,@DohertyShannen,So I took a drive to storage or what I like to call my “clothing archive”. What was nostalgic… https://t.co/2gLkQcwVex +03/13/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: Lawsuit!!! Thank you HSUS, CBD and WEG. https://t.co/gkclr66Giy" +03/13/2018,Actors,@DohertyShannen,@amya1996 @AC50197 Yes darling it is. +03/13/2018,Actors,@DohertyShannen,"RT @ASPCA: We’re outraged! Today the @USDA officially withdrew the organic animal welfare rule, which would have improved the lives of mill…" +03/12/2018,Actors,@DohertyShannen,Seriously... 45 minutes straight is this. Neda just doesn’t understand taking it slow. But the… https://t.co/0sSE05u2iI +03/12/2018,Actors,@DohertyShannen,@katheri07_12 @CharmedDaily Ah well then I’m going to go pillage my grandmothers house +03/12/2018,Actors,@DohertyShannen,@OlgaAlekseyevna @CharmedDaily Nothing like painted on abs... +03/12/2018,Actors,@DohertyShannen,@AC50197 You are aging us both... 😩😜 +03/12/2018,Actors,@DohertyShannen,@CharmedDaily What the hell am I wearing? Fairly certain that dress was drapes prior to me... +03/12/2018,Actors,@DohertyShannen,"RT @MercyForAnimals: Farmer has change of heart, turns his farm vegan! https://t.co/rOfUgO96SA" +03/12/2018,Actors,@DohertyShannen,RT @peta: ICYMI: Elephants are beaten and have sharp hooks jabbed into their skin — all for Thailand's Annual King's Cup Polo Tournament. h… +03/11/2018,Actors,@DohertyShannen,"RT @UrgentPart2: The dogs on the Super Urgent page are either high risk, injured or have previously appeared on the To Be... https://t.co/Y…" +03/10/2018,Actors,@DohertyShannen,"RT @ohstephany_: Morgan Williams, Junior. Room 1213 https://t.co/VG9s73Mtr8" +03/10/2018,Actors,@DohertyShannen,"RT @ohstephany_: Megan Smith, Senior. Room 1254 https://t.co/pYl20Uu9d9" +03/09/2018,Actors,@DohertyShannen,#parklandstrong https://t.co/FOAVRJXEar +03/09/2018,Actors,@DohertyShannen,@xo_karmin_ox @MSD_DECA @FloridaDECA @DECAInc ❤️❤️❤️ +03/09/2018,Actors,@DohertyShannen,My heart breaks and yet is uplifted by these kids and their teacher as they try to get back to… https://t.co/TIVgGs2WHR +03/08/2018,Actors,@DohertyShannen,Marjory Stoneman Douglas. These kids.... I’m humbled in front of them. #neveragain https://t.co/FHBMQ2C9YO +03/08/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Trump Administration Makes Elephants Fair Game For Hunters As Trophy Ban is Lifted https://t.co/6kMRMQR4V4 +03/08/2018,Actors,@DohertyShannen,#internationalwomensday https://t.co/gkc951w73r +03/08/2018,Actors,@DohertyShannen,Just nothing but love and fun chriscortazzo #miami https://t.co/EHekkoQsUG +03/07/2018,Actors,@DohertyShannen,"Enough. We are coming for you. #Repost adriansteirn with @repostapp +・・・ +Please read and share.… https://t.co/4rzJXD9IBn" +03/06/2018,Actors,@DohertyShannen,"RT @nywolforg: We're not trophies. We're family. + +Lawmakers must pass an appropriations measure before midnight on March 23 + riders that s…" +03/04/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: TONIGHT!!! In response to concerns about coyotes and safety on Boxford’s trails, BTA/BOLT is sponsoring a talk... https:…" +03/03/2018,Actors,@DohertyShannen,"RT @NRDC: It’s estimated that fewer than 200 FL panthers remain in the US. And now, with oil and gas development encroaching on their habit…" +03/03/2018,Actors,@DohertyShannen,"RT @nywolforg: We are not trophies. We're family. + +URGENT -- If the omnibus spending package passes into law as is, wolves will die at the…" +03/03/2018,Actors,@DohertyShannen,RT @ASPCA: The @USDA is considering something truly despicable: allowing for-profit businesses that exploit and exhibit animals (puppy mill… +03/01/2018,Actors,@DohertyShannen,Cleaning out my airstream so it can be moved and it’s amazing what memories you run across that… https://t.co/MuqKJ9B22U +02/28/2018,Actors,@DohertyShannen,Check out my friend @RealRomaDowney and her new book at link here. https://t.co/s2kBANkTXG +02/28/2018,Actors,@DohertyShannen,I am beyond excited for my friend @RealRomaDowney and the release of her new book. Pre ordering… https://t.co/6fuBa5L3Fd +02/27/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: Challenging the deadly Coyote Challenge. End the #warOnwildlife +🐺🐾🐺🐾🐺💙🐺🐾🐺🐾🐺🐾🐾🐺 https://t.co/0mm9U6q3Du" +02/27/2018,Actors,@DohertyShannen,Good morning https://t.co/PquwJq2p01 +02/27/2018,Actors,@DohertyShannen,https://t.co/NcismvKTyN +02/27/2018,Actors,@DohertyShannen,Poser.... https://t.co/w1iDErnlYD +02/26/2018,Actors,@DohertyShannen,Please check her out. https://t.co/aXjdkKG34D +02/25/2018,Actors,@DohertyShannen,Happy birthday chelseahandler Grateful you walked into my life and steadfastly stood by me.… https://t.co/Gw6mhpjVUz +02/24/2018,Actors,@DohertyShannen,@NickRowlands Hope you feel better!! +02/23/2018,Actors,@DohertyShannen,"This. @ Santa Ynez, California https://t.co/Mql7u2AnUx" +02/22/2018,Actors,@DohertyShannen,"Planning... #happyplace @ Santa Ynez, California https://t.co/Mt7jPXZx0w" +02/22/2018,Actors,@DohertyShannen,@MrGivens_91 Awe thank you!! 💚💚❤️❤️😉😉 +02/22/2018,Actors,@DohertyShannen,@leeogrady79 @Heatherstv Im sorry 💚 +02/22/2018,Actors,@DohertyShannen,"@MrGivens_91 I hate labels. I’m for what’s best for people, this country and the world. #sappyyes" +02/22/2018,Actors,@DohertyShannen,@rachelcabbit @Heatherstv @paramountnet @Thoroughbreds 💚💚 +02/22/2018,Actors,@DohertyShannen,@Heatherstv That’s why I love you so.... you’re so very +02/22/2018,Actors,@DohertyShannen,"@rachelcabbit @Heatherstv @paramountnet @Thoroughbreds Give it a chance. Honestly, it’s great. This cast is amazing" +02/22/2018,Actors,@DohertyShannen,@jonmmargolis BQ... obvi +02/22/2018,Actors,@DohertyShannen,@Paguban I just don’t understand why an AR 15 is necessary for a civilian +02/22/2018,Actors,@DohertyShannen,@BillyWontStop It’s just wrong. +02/22/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Even the FBI knows animal abuse leads to human abuse. https://t.co/8w36eFCir7 +02/22/2018,Actors,@DohertyShannen,@Heatherstv I hope you’re not correcting the OG Heather Duke....👑💚 +02/22/2018,Actors,@DohertyShannen,@leahmgordon @damianholbrook 💚💚💚💚 +02/22/2018,Actors,@DohertyShannen,@EllenPompeo And me as well +02/22/2018,Actors,@DohertyShannen,@Heatherstv Corn nuts +02/22/2018,Actors,@DohertyShannen,RT @Heatherstv: You can watch the first episode right now. Don't need to sign in or any of that basic cable nonsense. Just press play and s… +02/22/2018,Actors,@DohertyShannen,"I try to not get political but, arm our teachers? They’re teachers. Not cops, not security, not military. They HAVE a job. #confused" +02/21/2018,Actors,@DohertyShannen,RT @Heatherstv: Are you really going to wait until March 7 to watch the series premiere of Heathers on @ParamountNet? You can stream it rig… +02/21/2018,Actors,@DohertyShannen,Heathers..... that’s all. heathers paramountnetwork https://t.co/iaTCJTKJ3t +02/20/2018,Actors,@DohertyShannen,RT @nywolforg: Anti-wolf policy riders that seek to block all spending on recovery efforts for critically endangered Mexican gray wolves ar… +02/17/2018,Actors,@DohertyShannen,@nathanwchen what a beautiful performance. So proud you represent the USA +02/15/2018,Actors,@DohertyShannen,"Can’t wait for my friends store to officially open, although it hasn’t stopped me from stopping… https://t.co/R1DpnApSeb" +02/15/2018,Actors,@DohertyShannen,Enough https://t.co/CtRFKBz4sX +02/12/2018,Actors,@DohertyShannen,Walked. Then this crap. Then done. @jammalibu Now think I’ll call uber instead of walking… https://t.co/01sAs0qRbO +02/12/2018,Actors,@DohertyShannen,Walking to my workout cause my @LandRover is in shop for 3rd week in a month. Being positive... I’m getting a double workout. #lemon +02/12/2018,Actors,@DohertyShannen,missbowiedoherty and I trying to decide what art goes where in this hallway. Lucky I’m married… https://t.co/S40WfYi0Uh +02/11/2018,Actors,@DohertyShannen,@Hystirycal Thank you 💕 +02/11/2018,Actors,@DohertyShannen,Words... so easily tossed around and yet what ramifications they have... both good and bad. https://t.co/aBAhsuk9FV +02/08/2018,Actors,@DohertyShannen,The Heathers..... it’s so very. heathers paramountnetwork https://t.co/XL7dbnvcA1 +02/08/2018,Actors,@DohertyShannen,@LandRover my car has broken down since day I got it. Same issue every month. Just got picked up yet again after being in shop for 2 weeks +02/08/2018,Actors,@DohertyShannen,@IOLANDACRESPINA @LukePerryIII @CW_Riverdale 1. That’s not Luke. 2. There was never even a convo about Riverdale +02/08/2018,Actors,@DohertyShannen,RT @peta: How many chances will @LoganPaul get? It's NEVER okay to do something like this 😠 [via @peta2] https://t.co/D8GfuHbhCj +02/08/2018,Actors,@DohertyShannen,@peta @LoganPaul @peta2 Wtf +02/08/2018,Actors,@DohertyShannen,@LukePerryIII @CW_Riverdale Hmm when was the last time I saw you? +02/08/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Another case of a wolf shot by a coyote hunter. This time in South Dakota. Poor wolf had old trapping injuries... https:… +02/07/2018,Actors,@DohertyShannen,"@ArielleKebbel @repostapp Praying for you, your sister and your family" +02/07/2018,Actors,@DohertyShannen,"#Repost @ariellekebbel with @repostapp +・・・ +🚨 ALERT 🚨 my sister Julia is still missing. Updated… https://t.co/vDlMO1y9Y8" +02/05/2018,Actors,@DohertyShannen,They flew. What an amazing game #SuperBowl2018 #FlyEagelsFly +02/05/2018,Actors,@DohertyShannen,Eagles are flying +02/04/2018,Actors,@DohertyShannen,@tuggerman @Patriots @Eagles #FlyEagelsFly +02/04/2018,Actors,@DohertyShannen,I love both teams. This is hard. @Patriots just unbelievable. @Eagles have my heart right now. +02/04/2018,Actors,@DohertyShannen,Beautiful. https://t.co/FeHj7NEeYJ +02/04/2018,Actors,@DohertyShannen,@Pink did it again. #SuperBowlSunday got me to tear up +02/04/2018,Actors,@DohertyShannen,Why do I get so excited for the #SuperBowlSunday and anxiety. It’s like I’m playing. +02/04/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: NEW! LTD ED 'LOVE US OR LOSE US - SAVE THE ELEPHANT' + +Show EVERYONE that you love Elephants when you wear a 'Love Us…" +02/04/2018,Actors,@DohertyShannen,@Protect_Wldlife These are great!! +02/04/2018,Actors,@DohertyShannen,@Stitched_Rattus @Romantic_Corpse Happy birthday! +02/04/2018,Actors,@DohertyShannen,Super bowl super bowl super bowl +02/04/2018,Actors,@DohertyShannen,"Happy place. @ Santa Ynez, California https://t.co/ACXOUYAo4C" +02/02/2018,Actors,@DohertyShannen,"RT @DalaiLama: The basic foundation of humanity is compassion and love. This is why, if even a few individuals simply try to create mental…" +02/02/2018,Actors,@DohertyShannen,Just never enough with her. missbowiedoherty https://t.co/gXEfxhZW98 +02/02/2018,Actors,@DohertyShannen,And all is right again. missbowiedoherty I just love you. https://t.co/7E9XXRgJs0 +02/02/2018,Actors,@DohertyShannen,@emilyach27 @Paguban 😂😂 +06/30/2018,Actors,@shenaegrimes,I feel so grateful to have had the opportunity that I did last night...to spend time with my grandma’s hands sharin… https://t.co/FapCDbukxM +06/28/2018,Actors,@shenaegrimes,Stoked on my new ‘do ⚡️💇⚡️ Check out my new #IGTV video to see the before/after and during! https://t.co/SuwUCVdnFR +06/26/2018,Actors,@shenaegrimes,"Raw. As. F*ck. 👊 Talking pregnancy skin, embracing insecurities and finding confidence + some helpful color correct… https://t.co/o3XFm10vYl" +06/23/2018,Actors,@shenaegrimes,SHOP THE PRODUCTS I USED IN THE VIDEO! https://t.co/DOpenpK0qT +06/22/2018,Actors,@shenaegrimes,"RT @rcinto: After @shenaegrimes has her baby someone needs to reunite her with @Angela_Griffin and @wendy_crewson and relaunch ""The Detail""…" +06/19/2018,Actors,@shenaegrimes,#TreatYoSelfTuesday New video on https://t.co/yCbqtSAMzU of an EPIC Beauty PR Haul because someone somewhere must’v… https://t.co/jiXBVadOvT +06/17/2018,Actors,@shenaegrimes,Finding clothes that fit is a basic struggle for every woman when pregnant but there are fortunately lots of materni https://t.co/gzSAVE8SHM +06/16/2018,Actors,@shenaegrimes,For those wondering why I missed out on the… https://t.co/uSUJk18Y5x +06/14/2018,Actors,@shenaegrimes,RT @WILDFOXCOUTURE: Never ask a girl with winged eyeliner why she’s late. +06/11/2018,Actors,@shenaegrimes,RT @MattLanter: We had a blast with @shenaegrimes and… https://t.co/wInVMcNdvj +06/10/2018,Actors,@shenaegrimes,"In LA, our summertime Sunday fun days are typically spent at the beach or poolside because it is hot as a motherf--. https://t.co/uxrk0E7YRr" +06/05/2018,Actors,@shenaegrimes,"RT @PhilMphela: TV: TONIGHT at 8PM #TheDetail premieres on @UniversalTVSA (@DStv 117) + +Starring @Angela_Griffin @wendy_crewson & @shenaegri…" +06/05/2018,Actors,@shenaegrimes,Myself and Josh... and baby Girl Beech makes 3!… https://t.co/mnh3gqnmUJ +06/04/2018,Actors,@shenaegrimes,I’m nervous and excited to share my first… https://t.co/tOqjn2vDH9 +06/04/2018,Actors,@shenaegrimes,I’m nervous and excited to share my first… https://t.co/1xBmxo2UkB +06/04/2018,Actors,@shenaegrimes,Canada! The last ever episode of @TheDetailCTV starts now! Sadly we will not be coming back for a second season on… https://t.co/C4lxOWZKv2 +06/03/2018,Actors,@shenaegrimes,I thought it was time to share my first pregnancy update with you guys at 24 weeks and I'm nervous but excited to fi https://t.co/v2PFrDAxOQ +05/31/2018,Actors,@shenaegrimes,We’re outfitting our Smart Nursery with ease thanks to @squaretrade! Schedule appts at participating retailers when… https://t.co/7XSRY1WrB7 +05/23/2018,Actors,@shenaegrimes,Find friends that make you laugh until you can’t see & indulge your pregnancy BBQ cravings even when the sun don’t… https://t.co/WeAPPxz3A5 +05/22/2018,Actors,@shenaegrimes,I'm sure most of you already know about my love for FabFitFun and that I have been a #fabfitfunpartner for nearly a https://t.co/CdjbJpEMdB +05/16/2018,Actors,@shenaegrimes,I finally feel confident to post about my outfits again because secret's out and the interweb now knows I'm preggers https://t.co/NNitNy4Hnx +05/14/2018,Actors,@shenaegrimes,RT @amamarino: When @shenaegrimes is interrogating her husband on #TheDetail https://t.co/VEatBo94OW +05/14/2018,Actors,@shenaegrimes,RT @CTV_Television: A new case heats up tonight on @TheDetailCTV. Don't miss it at 9! #TheDetail @shenaegrimes https://t.co/QQmjN6j5ou +05/10/2018,Actors,@shenaegrimes,RT @CTV_PR: FUN FACT: One of this week's uncooperative suspects is actually @shenaegrimes 's husband Josh Beech! https://t.co/hHdkjD9elB +05/07/2018,Actors,@shenaegrimes,#couplegoals 😝 https://t.co/shk4HjdNu2 +05/07/2018,Actors,@shenaegrimes,#couplegoals 😝 https://t.co/RbjaM4gzSh +05/04/2018,Actors,@shenaegrimes,Thank you love!!!! Xx https://t.co/2GFYb75ETc +05/03/2018,Actors,@shenaegrimes,Thank for breaking this insanely exciting news for us!!! ⚡️🖤⚡️ https://t.co/z3ofCySlW9 +05/03/2018,Actors,@shenaegrimes,Well it's official... I'm definitely a grown-up! This badass baby is on board and I am so thrilled to be able to fin https://t.co/4HPKXBgIWm +04/24/2018,Actors,@shenaegrimes,This post is all about the most badass summer must-haves delivered to your door all in one Badass Box! Literally. It https://t.co/aBGMOHRWZm +04/19/2018,Actors,@shenaegrimes,When you feelin’ those cheekbones... NEW makeup tutorial for ‘How to Contour & Highlight’ is on… https://t.co/Ni04w1WIJ0 +04/13/2018,Actors,@shenaegrimes,"RT @CTV_PR: After a young girl is found dead in the trunk of a car, Detectives Stevie Hall (@Angela_Griffin) & Jack Cooper (@shenaegrimes)…" +04/11/2018,Actors,@shenaegrimes,"I can already feel the summer heatwave slowly rolling in, which is awesome for fun in the sun but it also means the https://t.co/j90iABlOT0" +03/29/2018,Actors,@shenaegrimes,How to style a utility jumpsuit TWO ways: LA vs San Diego style post on the blog today featuring… https://t.co/bJlnLyyJuY +03/29/2018,Actors,@shenaegrimes,Today's post is an extra special one because not only does it walk you through two totally unique takes on how to st https://t.co/ggGxmDH9jM +03/27/2018,Actors,@shenaegrimes,"RT @cbcradioq: 🔊 LISTEN: @shenaegrimes & @Angela_Griffin joined guest host @lauriebrown to talk about @TheDetailCTV, a new Canadian police…" +03/26/2018,Actors,@shenaegrimes,@adelaideskxne Thank you ❤️❤️❤️ +03/26/2018,Actors,@shenaegrimes,RT @dobrevftobrosey: @shenaegrimes so glad to see you back in business but this time as a badass detective who takes no shit! Proud of you!… +03/26/2018,Actors,@shenaegrimes,RT @lantetrain: Now that’s how you do a premiere @TheDetailCTV @shenaegrimes @Angela_Griffin @MattyBGordon #TheDetail ⭐️⭐️⭐️⭐️⭐️ gold stars… +03/26/2018,Actors,@shenaegrimes,"RT @stefheartsyou: What I thought of the first episode of #TheDetail : +@shenaegrimes @Angela_Griffin @wendy_crewson @TheDetailCTV https://t…" +03/26/2018,Actors,@shenaegrimes,"RT @GagaThisWayy: A strong female led cast ✅, the perfect crime show ✅, @shenaegrimes back on TV weekly ✅! All is good in the world again!…" +03/26/2018,Actors,@shenaegrimes,"And that is how she does it, folks! Detective Cooper is a #boss! Couldn’t be more honored to be a part of this show… https://t.co/DrASSTF4fK" +03/26/2018,Actors,@shenaegrimes,RT @GagaThisWayy: @shenaegrimes YOU DID THAT #TheDetail https://t.co/eciVNrWWnn +03/26/2018,Actors,@shenaegrimes,RT @wendy_crewson: So proud of this talented group @shenaegrimes @Angela_Griffin @david_cubitt @MattyBGordon @mukadambamn @edisonmedison @… +03/26/2018,Actors,@shenaegrimes,@MattyBGordon @Angela_Griffin @TheDetailCTV #your#skillme +03/26/2018,Actors,@shenaegrimes,RT @Rachie323: @shenaegrimes you are KILLING IT babe!! Love having you back on my screen - Annie Wilson will always have a special place in… +03/26/2018,Actors,@shenaegrimes,RT @lantetrain: @shenaegrimes @TheDetailCTV @CTV_Television Hell yah I’m so glad you were cast to play her cause seriously I can’t see anyo… +03/26/2018,Actors,@shenaegrimes,@lantetrain @TheDetailCTV @CTV_Television Thank youuu!!! +03/26/2018,Actors,@shenaegrimes,@murtzjaffer I meannn... Jack and I would definitely be friends... if I was cool enough to hang with a genius homicide detective! 😂 +03/26/2018,Actors,@shenaegrimes,@Goodeeeeee @Angela_Griffin @wendy_crewson 🙏🙏🙏 +03/26/2018,Actors,@shenaegrimes,@MattyBGordon Yasss!!! 🙌🙌🙌 +03/26/2018,Actors,@shenaegrimes,"@lantetrain @TheDetailCTV @CTV_Television Everything? Badass 👮‍♀️? Check! Real, complex woman? Check! Rough around… https://t.co/QPTnNkCwVN" +03/26/2018,Actors,@shenaegrimes,RT @CTV_Television: Messy but brilliant! #TheDetail https://t.co/oh738qo28L +03/26/2018,Actors,@shenaegrimes,@Rachie323 Me too!!! 😍 +03/26/2018,Actors,@shenaegrimes,@stefheartsyou It’s meant to be based in an anonymous North American city but we certainly don’t shy away from the… https://t.co/kB8hjyS9vE +03/26/2018,Actors,@shenaegrimes,RT @Leeeeey: @shenaegrimes first day of shooting. freezing cold nigh. In her bare feet. Never stopped smiling. Can we say amazing. @TheDeta… +03/26/2018,Actors,@shenaegrimes,@Leeeeey @TheDetailCTV ❤️❤️❤️ +03/26/2018,Actors,@shenaegrimes,"Ahhhh Detective Jack Cooper, ladies and gentlemen. #hotmess #myfavoritecharacter" +03/26/2018,Actors,@shenaegrimes,RT @CTV_PR: #TheDetail is on now! @TheDetailCTV @Angela_Griffin @shenaegrimes @wendy_crewson +03/26/2018,Actors,@shenaegrimes,Ahhh!!! The moment has finally arrived! @TheDetailCTV starts now on @CTV_Television in Canada and I’ll be live twee… https://t.co/xXnxMZX9pK +03/26/2018,Actors,@shenaegrimes,RT @wendy_crewson: SO EXCITED. Join us tonight 9 pm. The beautiful and brilliant @Angela_Griffin and @shenaegrimes @TheDetailCTV https://t.… +03/26/2018,Actors,@shenaegrimes,RT @KatrinaSaville: Get ready to meet a few very cool women you’re going to want to spend the next several Sunday evenings with — @shenaegr… +03/26/2018,Actors,@shenaegrimes,"RT @Leeeeey: Twenty minutes until @shenaegrimes, @Angela_Griffin, @wendy_crewson @david_cubitt @MattyBGordon @mukadambamn @edisonmedison @C…" +03/25/2018,Actors,@shenaegrimes,"Today is the day!!! Oh 🇨🇦, thedetailctv premieres TONIGHT at 9pm on @ctv_television and I will… https://t.co/vc67pruWxY" +03/14/2018,Actors,@shenaegrimes,"Girrrl, if you know me at all, you know I love leopard print anything and everything! It's really a shock this post https://t.co/WlSVl1MHjQ" +02/27/2018,Actors,@shenaegrimes,"Spring has nearly sprung and while I'm definitely thrilled for the all the newness the upcoming season will bring, I https://t.co/D6V8KQlXL8" +02/08/2018,Actors,@shenaegrimes,"Valentine's Day is just around the corner and as always, there's a million blog posts and tutorials for uber-girly, https://t.co/qZTp2qJIp8" +02/08/2018,Actors,@shenaegrimes,"Watch my new Valentine's Day makeup tutorial for a fun, sexy spin on a classic beauty look that your lover will lov… https://t.co/w12R4xdUKu" +02/05/2018,Actors,@shenaegrimes,Finally!!! Thrilled to announce that my new series The Detail will make its Canadian TV debut on March 25th @ 9pm o… https://t.co/DxowGfMRh0 +01/24/2018,Actors,@shenaegrimes,"A lot of you have asked about my skincare routine, so I thought it was time for a 'Get Unready With Me | Nighttime… https://t.co/OkZm67Kr2U" +01/24/2018,Actors,@shenaegrimes,"This post is sponsored by Olay, but all opinions are my own. Do you ever feel like there just aren’t enough hours https://t.co/lq8W1RXiRa" +01/21/2018,Actors,@shenaegrimes,"Vinyl and fetish fantasies have typically gone hand in hand but don't worry folks, this vinyl fashion is entirely PG https://t.co/LqsjLNzUJI" +01/18/2018,Actors,@shenaegrimes,My obsession with berets has definitely followed me into 2018 but this year I'm putting a heavy metal spin on things https://t.co/nvkACNxjzF +01/16/2018,Actors,@shenaegrimes,I'm a product hoarder and it finally paid off! My 'Beauty Product Empties 2017' video is up on YouTube today! I'm l… https://t.co/2cdFrIG4BR +01/14/2018,Actors,@shenaegrimes,The turnover of a year typically brings a change of hair in my life! Every time I'm just about happy with where my o https://t.co/7pyDPrVsPj +01/11/2018,Actors,@shenaegrimes,Don’t need to wait for the weekend to be comfy when it looks this good! Talking ‘Living… https://t.co/N2eJyRlnky +01/11/2018,Actors,@shenaegrimes,"Guys, I think I found the secret to the Kardashians' success... being comfortable while looking chic as hell in a ba https://t.co/AGgYWP8Nak" +01/10/2018,Actors,@shenaegrimes,OMG... my husband did my makeup in my new video! Watch the full thing here: https://t.co/TkiLo0wPZX & don't forget… https://t.co/52B5ZXnmXm +01/04/2018,Actors,@shenaegrimes,"New year, new trends?! No thanks! The patent skirt trend is still in full effect and my obsession with it is thrivin https://t.co/iOy241o89n" +12/28/2017,Actors,@shenaegrimes,The holiday season is nearly over but there is one major night of celebrating to do and I've got my look planned and https://t.co/gtzfFHNyOj +12/23/2017,Actors,@shenaegrimes,Sister from another mister... and mother... or that would be super weird... because she’s my… https://t.co/Vg16hK1vji +12/21/2017,Actors,@shenaegrimes,"No, I'm not dressing up like Sally or Jack Skellington for Christmas BUT I do feel like Helena Bonham-Carter at some https://t.co/20o1YcLoYv" +12/19/2017,Actors,@shenaegrimes,Get your holiday party glam on point with the new video on my YouTube Channel 'GRWM: Holiday Party Hair & Makeup'!!… https://t.co/szJC2enwwp +12/18/2017,Actors,@shenaegrimes,"If you're anything like me, you've suddenly realized that Christmas is only one week away and are now scrambling for https://t.co/GI7zg7lKHO" +12/14/2017,Actors,@shenaegrimes,If you follow me on social media or have ever visited my blog before then you know I'm not the kind of gal that drea https://t.co/PQmNl7CpiI +12/12/2017,Actors,@shenaegrimes,'Tis the season for all things glitter! My new YouTube video shows you how to do one of my favorite holiday makeup… https://t.co/Ykjtgysf91 +12/11/2017,Actors,@shenaegrimes,Daydreaming about the weekend and it’s only Monday 😝 https://t.co/CrP80SPKJo +12/08/2017,Actors,@shenaegrimes,A Santa-approved day look for the books! I believe in spreading holiday cheer wherever and whenever you can and sinc https://t.co/BEs8hbyDdt +12/07/2017,Actors,@shenaegrimes,Watch the full tutorial on my favorite easy & affordable Holiday Decor DIYs here: https://t.co/bN46kYJcf7 and to se… https://t.co/YrP9ICswWQ +12/06/2017,Actors,@shenaegrimes,This is my first holiday season settled into my house and I decided to donate all of my Christmas decorations and st https://t.co/3o86cFWmTp +11/28/2017,Actors,@shenaegrimes,"Watch my review on the good, the bad and the beautiful from the GIGI HADID x MAYBELLINE DRUGSTORE MAKEUP COLLECTIO… https://t.co/FiYhX0HP7z" +11/28/2017,Actors,@shenaegrimes,This year I’m supporting #GivingTuesday by rocking my pin from @ebay in support of @FeedingAmerica! #AD Last year e… https://t.co/bIkcEgIMFR +11/23/2017,Actors,@shenaegrimes,When there’s a heat wave in LA but you insist on wearing a cozy knit sweater because it’s 🦃… https://t.co/u7c1wvGZJq +11/23/2017,Actors,@shenaegrimes,Have you ever admired somebody so much that you've literally mapped out what you would say to them if your paths eve https://t.co/PhtzfuGQF9 +11/21/2017,Actors,@shenaegrimes,When your husband’s an epic photographer and there’s a heat wave in November...📸: photosbybeech https://t.co/QiXiyUUejy +11/20/2017,Actors,@shenaegrimes,It's that time of year again! A change of season means a new delivery from my most worthwhile lifestyle expense of a https://t.co/Ev1jsBXNXi +11/17/2017,Actors,@shenaegrimes,Everyday I’m hustlin’. 🤘#domesticbadass #lostinlala https://t.co/MeeV1mJncG +11/16/2017,Actors,@shenaegrimes,My new hair tutorial shows you 6 quick & easy heatless hairstyles that you can do in a pinch and they’re a cinch! L… https://t.co/xutVstIdJJ +11/14/2017,Actors,@shenaegrimes,"@lifetimetv @AmBeautyStar Products from @FHIBrands, @BRONXCOLORS, @CBareProducts, @ColorWowHair and @HudaBeauty" +11/14/2017,Actors,@shenaegrimes,I just did another #partner FB live for @Lifetimetv and @AmBeautyStar! Check it out the video here… https://t.co/HQX7bc2BFF +11/12/2017,Actors,@shenaegrimes,Take time to remember those who fought & sacrificed for us. Honor them with a poppy on your profile #CanadaRemembers https://t.co/UFO9WDbeK7 +11/12/2017,Actors,@shenaegrimes,Show you remember Canada's Veterans. Add a poppy to your avatar here: https://t.co/wSOHrKdpx1 #CanadaRemembers +11/09/2017,Actors,@shenaegrimes,My kid sister does my makeup in this EPIC MAKEUP FAIL of our attempt at the full face using only kids makeup challe… https://t.co/fFO8HpvumG +11/08/2017,Actors,@shenaegrimes,Going LIVE on my Facebook page in one hour to unbox my full #FabFitFun winter box! Click link in… https://t.co/EKlkuBJEYB +11/07/2017,Actors,@shenaegrimes,Educational life experiences with my 8 year old sister...or skipping school on a Monday to visit… https://t.co/SOsCBjcc9c +11/03/2017,Actors,@shenaegrimes,Pretty happy to have these weirdos in town! #famjam https://t.co/6eA84vFX43 +11/01/2017,Actors,@shenaegrimes,Always a rock n roll gal at heart but this is just one of the many ways this #fabfitfunpartner… https://t.co/r0ihGgHKND +11/01/2017,Actors,@shenaegrimes,Halloween with a hometown homie 🎃💋🤘💋🎃 https://t.co/QlRQ4bZLa2 +10/31/2017,Actors,@shenaegrimes,"Happy Halloween!!! 🎃 +. +. +. +#🤡 https://t.co/Z26P9sisSe" +10/30/2017,Actors,@shenaegrimes,Need a last minute costume? Click LINK IN BIO for the full makeup tutorial and #DIYcostume of my… https://t.co/Dmsq8Wpce8 +10/30/2017,Actors,@shenaegrimes,Epic CREEPy evening spent creeplosangeles ... best Halloween experience around town! Thanks for… https://t.co/GIhHEoKEJo +10/30/2017,Actors,@shenaegrimes,Classy Clown. 🤡 #halloween2017 https://t.co/DjPc5BjQhR +10/29/2017,Actors,@shenaegrimes,Another epic Halloween with my forever partner in crime and costume @JoshBeechMusic ❤️🤡❤️ https://t.co/YkGYeCrpig +10/27/2017,Actors,@shenaegrimes,"#fbf to my bday glam grunge look. 💋 +. +. +. +LINK IN BIO for full #grwm tutorial! + +#grungemakeup… https://t.co/uUmbAyJ5Sh" +10/26/2017,Actors,@shenaegrimes,It's my birthday week so I posted my first GRWM video on YouTube!!! Watch my bday glam grunge makeup & outfit video… https://t.co/H8WXSDyz2e +10/25/2017,Actors,@shenaegrimes,Yet another amazing birthday spent wandering with the love of my life. Feeling lucky and… https://t.co/gWi840Ab89 +10/24/2017,Actors,@shenaegrimes,"28, may you be as open and free as this stretch of Mississippi! Cheers to exploration and… https://t.co/T3Z6g0KJAL" +10/24/2017,Actors,@shenaegrimes,Best. Card. Ever. // From my ❤️ @JoshBeechMusic 😍😍😍 https://t.co/HmOEozPesS +10/23/2017,Actors,@shenaegrimes,"Feeling inspired and heartbroken, motivated and moved after a day spent at this iconic sacred… https://t.co/Cawa02esrE" +10/22/2017,Actors,@shenaegrimes,Get this gorgeous vampy makeup look by watching my full Fall Drugstore Makeup Tutorial here:… https://t.co/voyHh1mlzT +10/20/2017,Actors,@shenaegrimes,"It is well and truly Fall and I couldn't be happier about it! When getting ready for day or night, it's finally the https://t.co/e8ix4YkYx6" +10/19/2017,Actors,@shenaegrimes,Get this gorgeous vampy Fall beauty look using makeup UNDER $10!!! Watch my Fall Drugstore Makeup Tutorial here:… https://t.co/xVx40oqwPi +10/19/2017,Actors,@shenaegrimes,About last night...Rocking the new @TLipstickLobby Fall red shade OUTRAGE! Obsessed with this… https://t.co/QTeUR6KWV4 +10/19/2017,Actors,@shenaegrimes,Date night with my favorite human for an incredible cause @childhelp !!!! #HollywoodHeroes… https://t.co/GPrNKoS7gM +10/17/2017,Actors,@shenaegrimes,#inspo 🤣🤣🤣 // Link in bio to my beauty tutorials where nothing remotely close to this happens! https://t.co/6Qn5MQfEIj +10/16/2017,Actors,@shenaegrimes,In the Halloween spirit on my channel! Check out my full tutorial for the ultimate glam creep clown costume here:… https://t.co/KpTQBRxucj +10/15/2017,Actors,@shenaegrimes,"For those of you who haven't checked it out already, head to my Youtube Channel for my full Halloween makeup tutoria https://t.co/IU8ccTTDzT" +10/15/2017,Actors,@shenaegrimes,Check out my NEW Creepy Clown Halloween Makeup Tutorial for how to get this scary beautiful look for Halloween HERE… https://t.co/MAfFF9XOZh +10/14/2017,Actors,@shenaegrimes,When all your nightmares come true @qmdarkharbor and you’re in Halloween heaven... 👻👻👻 https://t.co/xkt60DE3jr +10/13/2017,Actors,@shenaegrimes,"Rockin #PinsForPrevention 4 Bright Pink via @ebay for Charity, where buyers/sellers donate to charity of choice!#ad… https://t.co/AURsxl6mXp" +10/12/2017,Actors,@shenaegrimes,🐶 https://t.co/rBu7sgWZjT +10/11/2017,Actors,@shenaegrimes,Wanna know how to get picture perfect looking skin? Find out in my flawless foundation makeup tutorial here:… https://t.co/d4f9XFfg1M +10/10/2017,Actors,@shenaegrimes,"My new flawless foundation makeup tutorial works & last all day, everyday! Watch my simple step-by-step video here:… https://t.co/pC1R0QyIGY" +10/09/2017,Actors,@shenaegrimes,My husband’s brand spankin’ new band jaguarbones just launched their Instagram and released a… https://t.co/LWXL9FZW17 +10/07/2017,Actors,@shenaegrimes,When this is what Fall looks like... ☀️ https://t.co/X33zhG7ylI +10/05/2017,Actors,@shenaegrimes,SO excited to show you how I decorated my backyard for Fall on https://t.co/o2YfoxN1VG! See all the pics… https://t.co/Yz0Zyk0Pz0 +10/04/2017,Actors,@shenaegrimes,Sending love out into the universe today but not without a heavy heart. Love is vital but so is… https://t.co/BRTydJTL9v +10/02/2017,Actors,@shenaegrimes,"Cheers to quiet moments with the 🌙 @ Yucca Valley, California https://t.co/9ZHzDN1EBD" +10/01/2017,Actors,@shenaegrimes,Kicking off Breast Cancer Awareness Month by wearing my heart on my @hm x rethinkbreastcancer… https://t.co/Q6R8mqVmcX +09/30/2017,Actors,@shenaegrimes,"Had an amazing, educational and inspiring day with @childhelp touring the #Childhelp Merv… https://t.co/zIsQYqtTV3" +09/30/2017,Actors,@shenaegrimes,Another amazing kickoff to the Halloween season knottsscaryfarm !!! Thanks rossipr ❤️🎃☠️🎃❤️ https://t.co/DUEqRrQCs4 +09/27/2017,Actors,@shenaegrimes,"Happy hump day from me and my new favorite 🎩 +. +. +. +Check out https://t.co/o2YfoxN1VG for more pics,… https://t.co/1HVFihujLQ" +09/24/2017,Actors,@shenaegrimes,Lazy Sundaze. 💋 https://t.co/3UJUibghQy +09/20/2017,Actors,@shenaegrimes,Excited to #partner w @LifetimeTV and @AmBeautyStar premiering this Thurs at 10:30/9:30c! Check out my new vid: https://t.co/BhHCgMIVcW xo +09/19/2017,Actors,@shenaegrimes,"""Women who wear black lead colorful lives."" +. +. +. +So what about women who wear black and white… https://t.co/5jBJzpp9rt" +09/18/2017,Actors,@shenaegrimes,"This is me side-eyeing the new week like yeah...I got you. + +For more pics from my recent Italian… https://t.co/FKVmBELrRM" +09/16/2017,Actors,@shenaegrimes,Dreaming of another weekend in paradise. 🌹#wanderlust https://t.co/0fpoN5ThHQ +09/13/2017,Actors,@shenaegrimes,Sending good vibes your way! ✌️❤️✌️ https://t.co/3bDKnhtWYI +09/12/2017,Actors,@shenaegrimes,SO excited to be a #fabfitfunpartner on my Fall Box Review post up now on the blog! This… https://t.co/J1GyVskqOF +09/09/2017,Actors,@shenaegrimes,"Halloween came early and ""IT"" scared the shit out of me... can't wait for October!!! 🎃💀👻💀🎃 https://t.co/a1FhkmXN6y" +09/08/2017,Actors,@shenaegrimes,#fbf to stumbling upon paradise in the motherland with my better half ❤️ https://t.co/9PGYN0pBYb +09/07/2017,Actors,@shenaegrimes,The coolest kid I know @vix_adams just launched her own hat line @hatratscom and I feel one baby… https://t.co/LsRsGjqTl0 +09/06/2017,Actors,@shenaegrimes,This is me being totally casual and patient while waiting for my first Facebook Live in one… https://t.co/vmZ8mefKlR +09/06/2017,Actors,@shenaegrimes,Doing my first Facebook Live thingy tomorrow @ 1pm PST...nervous like a tween on her first day… https://t.co/l6JcOyKg5Z +09/01/2017,Actors,@shenaegrimes,Back in lalaland and missing my Brits already! 💋 https://t.co/YKS5PQdq09 +08/31/2017,Actors,@shenaegrimes,Tomorrow's the day Toronto!!! My new film bloodhoneymovie is premiering at Dundas & Yonge for a… https://t.co/vO2NXJ452L +08/30/2017,Actors,@shenaegrimes,"A lil bit streetwear, a lil bit rock n' roll. 🤘 +. +. +. +Click link in bio for more pics & my… https://t.co/W8O3tmC6Ox" +08/29/2017,Actors,@shenaegrimes,Sunburnt and burnt out. x https://t.co/iv07uhUDXD +08/28/2017,Actors,@shenaegrimes,What an unbelievable few days. Another totally surreal adventure with my love for the books! https://t.co/sJ0iI9lTau +08/27/2017,Actors,@shenaegrimes,When you discover real life magic at Lago di Garda 🇮🇹❤️🇮🇹 https://t.co/yYo9e0SinE +08/27/2017,Actors,@shenaegrimes,6am in Venezia and up for the fight of a lifetime! Representing both sides of my roots loud and… https://t.co/acavgIptHQ +08/26/2017,Actors,@shenaegrimes,But first... pizza. 🍕 https://t.co/LTikIZMwhF +08/25/2017,Actors,@shenaegrimes,✌️🇮🇹💋 https://t.co/kRKyJW99M7 +08/23/2017,Actors,@shenaegrimes,Let's make history. 🤘 https://t.co/a94ndYMx2j +08/22/2017,Actors,@shenaegrimes,🇬🇧 Fight for your right to party. 🇬🇧// #subculturearchives #carnabystreet #londoncalling https://t.co/Bb2WwrbEmw +08/20/2017,Actors,@shenaegrimes,Our friends Nina and Jason are lovely badass people who I just learned have suffered a tragic… https://t.co/7JqmEi458z +08/20/2017,Actors,@shenaegrimes,Beech babies. X ☀️😍☀️ https://t.co/sgVrpnVa2e +08/16/2017,Actors,@shenaegrimes,Finally back in the swing of #bloggerlife and it feels so good! New post live now on my @Much… https://t.co/5kjgOTbPOn +08/16/2017,Actors,@shenaegrimes,When your best friend's a hairdresser and this is what Tuesday night dinner looks like. 💇💇‍♂️💇💇‍♂️ https://t.co/G8cNyrOieU +08/10/2017,Actors,@shenaegrimes,My whole world. 😁❤️😍 https://t.co/Yf9Xx0L9af +08/05/2017,Actors,@shenaegrimes,We know how to make an entrance...🕺🕺🕺 https://t.co/ujmjY0I2Hr +08/04/2017,Actors,@shenaegrimes,"Decisions, decisions... #domesticaf https://t.co/61vWgUZYKb" +08/02/2017,Actors,@shenaegrimes,Reunited with my bestest at long last!!! 😍😍😍 https://t.co/AC0hzXmY7h +07/31/2017,Actors,@shenaegrimes,#DIY Sunday!!! 💪 #domesticpunk https://t.co/udZaMITo6s +07/30/2017,Actors,@shenaegrimes,Ahhhh!!!! Nostalgia on point @rooneyband show! First night back in LA and spent it in an episode… https://t.co/2bpuVsgMPO +07/28/2017,Actors,@shenaegrimes,Peace out 🇨🇦!!! Been another epic 🎥adventure and this one was extra special for bringing me back… https://t.co/rBWFHOpTSk +07/26/2017,Actors,@shenaegrimes,Last day on set with amazing folks like this guy @5star_gucci that I get to call my crew and… https://t.co/cpHGqGyGmu +07/25/2017,Actors,@shenaegrimes,Downtime on set with my lil monster. 💋💀🖤💀💋#bleached #setlife🎥 https://t.co/eIyrIPm1Oh +07/24/2017,Actors,@shenaegrimes,"Hot damn, my cast mates are epic human beings. Can't believe we're filming the season finale… https://t.co/05G7LKwI4V" +07/21/2017,Actors,@shenaegrimes,They say imitation is the sincerest form of flattery... right?! I ❤️ our crew!!! #tgif #classic… https://t.co/dDFcer0zLB +07/19/2017,Actors,@shenaegrimes,Outtake from upcoming post on https://t.co/o2Yfoy4CNe 💋 #streetstyle #the6ix #lostinlala // 📸 :… https://t.co/CRstaYfh6i +07/18/2017,Actors,@shenaegrimes,Baby sis is on her own set these days following in someone's footsteps!!! Ah!!!🎬🌟🎥 #minime https://t.co/xH7jIW50Nn +07/17/2017,Actors,@shenaegrimes,How was your weekend?! Deets on mine & my delicious dessert idea for summer shindigs here! #pickyourpepper #Walmart… https://t.co/wAoIW9Y2yW +07/09/2017,Actors,@shenaegrimes,💋 #SummerInThe6ix https://t.co/HlqXwBQt04 +07/07/2017,Actors,@shenaegrimes,#friyay 💋 https://t.co/ZVMY2Sdqpc +07/06/2017,Actors,@shenaegrimes,This babe's only been gone for 12 hours and I already miss him madly... #lovesick #twohalves https://t.co/8jryKroRwa +07/04/2017,Actors,@shenaegrimes,When your husband tries to photobomb your Insta vid and doesn't know you have a face mask on... 😱 https://t.co/Er70nEQvzK +07/03/2017,Actors,@shenaegrimes,Stoop chillin' in #the6ix 😎 https://t.co/45d4ZVFfaa +06/30/2017,Actors,@shenaegrimes,Outtake from a photo shoot for an indie flick I did a little while back...in select Canadian… https://t.co/wlYOAvKWWR +06/28/2017,Actors,@shenaegrimes,Dog daze. 🐶 https://t.co/0wxLq1dJ5H +06/27/2017,Actors,@shenaegrimes,"Saying hello to summer with my new fave accessory, PANDORA’s leather braided charm bracelet!… https://t.co/HfAtD3aaal" +06/26/2017,Actors,@shenaegrimes,#dutchdreams 🍦 https://t.co/Vc9a4jYboE +06/25/2017,Actors,@shenaegrimes,🌈 #bettertogether 🌈 https://t.co/5BYAwxZz3Z +06/25/2017,Actors,@shenaegrimes,🌈 #bettertogether 🌈 https://t.co/Tgo95LlcPu +06/25/2017,Actors,@shenaegrimes,"Happy #pride from me and my baby sis aka the future! Love seeing her learn, support and… https://t.co/EeklBgMd1B" +06/23/2017,Actors,@shenaegrimes,Happy #friyay !!! 😍 https://t.co/J6Z947zzUu +06/19/2017,Actors,@shenaegrimes,About last night... when I became an honorary member of DNCE ... for 2 seconds #irl but forever… https://t.co/yseM6n2Ph0 +06/19/2017,Actors,@shenaegrimes,Thanks for having me #MMVAs ... loved getting to meet so many of you! Had a blast with… https://t.co/3pP7YS3169 +06/19/2017,Actors,@shenaegrimes,At the #MMVAs waiting to present! Thanks for the beautiful makeup @fashionliterati… https://t.co/u9nC5kCd3Z +06/17/2017,Actors,@shenaegrimes,Riders on the storm...x. // 📷: @JoshBeechMusic #popart #jimmorrison https://t.co/dbwVsgC8uF +06/22/2018,Actors,@JessicaLStroup,Legit fangirling out over here to my new favorite band thetorsband. Their harmonies are what dreams are made of. https://t.co/Ge1IbHoCdD +06/20/2018,Actors,@JessicaLStroup,RT @ashleyn1cole: I still remember every single person (read: white man) who the day after the election told me to calm down it wasn't goin… +06/16/2018,Actors,@JessicaLStroup,Swooooooon #thebeachboys @ Hampton Court Palace… https://t.co/ZlUJse9FRL +06/09/2018,Actors,@JessicaLStroup,Having the best time with these weirdos at… https://t.co/ghlhRrU7WU +06/08/2018,Actors,@JessicaLStroup,"Reach out. Please, please, reach out. You are not alone. National Suicide Prevention Lifeline number is 1-800-273-8… https://t.co/bx9mJJJbkk" +06/08/2018,Actors,@JessicaLStroup,"RT @laurenduca: If you need it, after hearing of *Anthony Bourdain's death or because of something else entirely, the National Suicide Prev…" +06/04/2018,Actors,@JessicaLStroup,@JamesPurefoy Happy birthday from me in a terrifying mask of you. 🔥 https://t.co/jWSatQJLrd +06/04/2018,Actors,@JessicaLStroup,I love you. https://t.co/VoULmPk9Md +05/25/2018,Actors,@JessicaLStroup,Can’t wait to see this!!! https://t.co/DLfxdjvs9P +05/22/2018,Actors,@JessicaLStroup,I can’t... I just can’t with this. It’s amazing. https://t.co/Cx9ZuJm4g8 +05/20/2018,Actors,@JessicaLStroup,💔 https://t.co/x1TxitHvNQ +05/15/2018,Actors,@JessicaLStroup,@taogeoghegan WHAT A RIDE TODAY!!! Such a beast out there. It hurt just watching! So proud of you! 🚵🏻‍♂️ #MVP… https://t.co/nGYjYTZZ2B +05/11/2018,Actors,@JessicaLStroup,One of my favorite (and most inspiring) people on the plant has written a BOOK! @scottharrison I’m so proud and exc… https://t.co/sRzAehhErI +05/11/2018,Actors,@JessicaLStroup,@JamesPurefoy I couldn’t agree more. +05/03/2018,Actors,@JessicaLStroup,"I feel so lucky. + +@ashtonlunceford pauljames_6 @ Central Park Manhatan https://t.co/zY8wrGnXHz" +05/01/2018,Actors,@JessicaLStroup,Looking for an epic read this summer? I highly recommend Song of Blood and… https://t.co/KqAAYIYRoj +04/27/2018,Actors,@JessicaLStroup,Baby girl just turned 9!!!! Check out that action shot tho!😂💃🏻❤️ https://t.co/oc7DR1bNbN +04/18/2018,Actors,@JessicaLStroup,#moodeverydayallday https://t.co/SLVjn1mqfv +04/17/2018,Actors,@JessicaLStroup,RT @MadameGandhi: Set time 8-8:40pm tonight at the Getty Museum Los Angeles! Free show! +04/16/2018,Actors,@JessicaLStroup,I❤️U https://t.co/LmgsNsQFVz +04/13/2018,Actors,@JessicaLStroup,RT @kevinbacon: I mean come on! Look at this cast how could you not watch. https://t.co/SZQ8tFv8dt +03/25/2018,Actors,@JessicaLStroup,Thank you @jhenwick for taking me to see #Yerma last night. Still reeling. @billiepiper you are… https://t.co/BwBnZ7YzvR +03/25/2018,Actors,@JessicaLStroup,I saw Yerma last night. It’s the best show I’ve ever seen. Mind blowing. Must see. @billiepiper you are a goddess.… https://t.co/TunvEFuT2Y +03/22/2018,Actors,@JessicaLStroup,RT @scottharrison: 1894 people have joined Nora in giving $8.15 today to celebrate #worldwaterday - we’re so inspired by the heart and visi… +03/22/2018,Actors,@JessicaLStroup,"Today is #WorldWaterDay. Six-year-old Nora gave $8.15 so people can have clean water. Today, my friends at… https://t.co/BpbZmbfqcV" +03/21/2018,Actors,@JessicaLStroup,Just posted a photo https://t.co/OsxWwP49tV +03/21/2018,Actors,@JessicaLStroup,Just posted a photo https://t.co/pTuHgrocLw +03/07/2018,Actors,@JessicaLStroup,"Blue wall. @ New York, New York https://t.co/4hpp8ZiilF" +03/07/2018,Actors,@JessicaLStroup,"Blue sky. @ New York, New York https://t.co/nNC6jgs4Ee" +02/27/2018,Actors,@JessicaLStroup,"@Emma4Change Go’on girl. Speak your truth. Takes bravery to stand up for what you believe in, especially in the fac… https://t.co/NydCsQqat7" +02/22/2018,Actors,@JessicaLStroup,RT @oliviawilde: Underestimate them at your own risk. 🙌 #wcw 🙌 https://t.co/o26JIqQfoV +02/22/2018,Actors,@JessicaLStroup,RT @Emma4Change: Everyone get out there and Register/Pre-register to vote !!! It takes barely 4 minutes https://t.co/0EMgYudKqS +02/22/2018,Actors,@JessicaLStroup,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/20/2018,Actors,@JessicaLStroup,"RT @kindness_org: This act of kindness is simple, yet really profound. #choosekindness https://t.co/EgGL3Xb1qI" +02/17/2018,Actors,@JessicaLStroup,"Might have underestimated Willow’s, uh, “large personality” when I bought this bag. 🤦🏻‍♀️ https://t.co/2nCjxrEzN3" +02/16/2018,Actors,@JessicaLStroup,RT @nowthisnews: ‘Can we not acknowledge in this country that we cannot accept this?’ — This former FBI official broke down in tears on CNN… +02/15/2018,Actors,@JessicaLStroup,"RT @LettersOfNote: ‘Please keep kids safe from guns’ + +https://t.co/UECloGXfSA https://t.co/eaJnQWIPOa" +02/15/2018,Actors,@JessicaLStroup,RT @RVAwonk: daaaaaamn @NYDailyNews. https://t.co/Yhv2JN4j7K +02/11/2018,Actors,@JessicaLStroup,A great read. https://t.co/mufpBJUDOU +02/05/2018,Actors,@JessicaLStroup,"RT @ArielleKebbel: 🚨 ALERT 🚨 Updated flyer w/ new contact numbers to call if you know anything about my sister Julia. Pls read, repost prin…" +01/24/2018,Actors,@JessicaLStroup,@luhvely Whooooaaaaaaaaa +01/20/2018,Actors,@JessicaLStroup,This is incredible. Please watch. https://t.co/SpTsLLNWjs via @youtube +01/07/2018,Actors,@JessicaLStroup,RT @MsEmilyLiner: Here's the paper by Erin Hengel that's tearing up #ASSA2018 https://t.co/uJupAySs7T https://t.co/92b3Y9WvNA +01/07/2018,Actors,@JessicaLStroup,❤️❤️❤️ https://t.co/ZjRBhLDzEG +01/03/2018,Actors,@JessicaLStroup,"@TessaJeanMiller @TheCut Love me some #JodieFoster and @blackmirror but I agree, I just couldn’t get on board with… https://t.co/oWhjHodStF" +01/03/2018,Actors,@JessicaLStroup,RT @TessaJeanMiller: Eyyyyy I wrote this for @TheCut! https://t.co/iIgZVtIUON +01/03/2018,Actors,@JessicaLStroup,RT @GeorgeLakoff: Trump uses social media as a weapon to control the news cycle. It works like a charm. His tweets are tactical rather than… +01/03/2018,Actors,@JessicaLStroup,RT @EarnKnowledge: Look again at this dot... https://t.co/wpFq00BzmH +12/27/2017,Actors,@JessicaLStroup,Together again!! Finally! Love these ladies. 💗🍻🤗#highschoolbests #regram @ Sycamore Brewing https://t.co/CFXCXHtMY4 +12/27/2017,Actors,@JessicaLStroup,Christmas got me like... @ North Carolina https://t.co/b9hjEaS1F6 +12/23/2017,Actors,@JessicaLStroup,RT @HaileeSteinfeld: #PITCHPERFECT3 is OUT NOW ! https://t.co/37RPNQInCV +12/22/2017,Actors,@JessicaLStroup,"RT @martyrdumb: @HerdzJ @JessicaLStroup @youthfilm2016 So glad you liked it, @HerdzJ!" +12/13/2017,Actors,@JessicaLStroup,Kindergartner starts her own business to help others https://t.co/9E0xkn3nw1 +12/13/2017,Actors,@JessicaLStroup,So proud of my incredible 6 year old niece. Heart of gold.🎄🎁💖🎅🏻👼https://t.co/9E0xkn3nw1 +12/11/2017,Actors,@JessicaLStroup,"You may have seen this, maybe not, but this is Ryland Ward. His two sisters and his mother were… https://t.co/t7G4s6cEo7" +12/10/2017,Actors,@JessicaLStroup,"The noise they make. 😂 @ New York, New York https://t.co/IG9IYJfc2p" +12/09/2017,Actors,@JessicaLStroup,Holiday decorations 💯 @ Soho https://t.co/1TYcWTVKRt +12/09/2017,Actors,@JessicaLStroup,First snow of the season!! Willow isn’t quite as amused as me. #laughingwithyounotatyou 😂👅🧤 @ Soho https://t.co/7WCeB71EnV +12/08/2017,Actors,@JessicaLStroup,RT @thefliestcoco: Ryland lost his mom and two sisters in the Sutherland Springs Church shooting. His family is asking if we can send Chris… +12/07/2017,Actors,@JessicaLStroup,😂😂😂 https://t.co/yECBfPWSWJ +12/06/2017,Actors,@JessicaLStroup,"Wanda, I want to be your friend too. https://t.co/KHH3PtmTwj" +12/05/2017,Actors,@JessicaLStroup,Got fancy for a great cause last night! So proud to support @charitywater. They never fail to up… https://t.co/kJjlUg49v7 +12/01/2017,Actors,@JessicaLStroup,RT @TheSun: EXCLUSIVE: Hero Army dogs face being put down despite saving thousands of lives https://t.co/nawgdY19p9 +11/29/2017,Actors,@JessicaLStroup,Big fan of @waitbutwhy and @tferriss 👍🏻🙌🏻 https://t.co/WnanfhniUj +11/26/2017,Actors,@JessicaLStroup,This pic is from the Florida State game but the sentiment remains true right now. U of South… https://t.co/NbTgzzYpLa +11/25/2017,Actors,@JessicaLStroup,Just saw @LadyBirdMovie with my mom 👏🏻👏🏻👏🏻❤️😭☺️❤️👏🏻👏🏻👏🏻 +11/24/2017,Actors,@JessicaLStroup,🤔“Why Reality Is an Illusion” by @Zat_Rana https://t.co/aHD7KNLAOq +11/23/2017,Actors,@JessicaLStroup,"RT @LettersOfNote: On this day in 1963, C. S. Lewis died. John F. Kennedy was killed an hour later. 7hrs after that, Aldous Huxley also dre…" +11/20/2017,Actors,@JessicaLStroup,"I love my friends. Also, no one died. A miracle. Happy birthday @sadowski23 @ Moonlight Rollerway https://t.co/a1qNAGrPKI" +11/18/2017,Actors,@JessicaLStroup,RT @abigailspencer: Change is a coming! Love these women forging the way with their incredible intellect & fabulous work. 🙌🏼 https://t.co/h… +11/15/2017,Actors,@JessicaLStroup,Pick up by @BastienKeb 🎧🎼📞 https://t.co/wjJ4PxlpEL +11/13/2017,Actors,@JessicaLStroup,Kindness wall in London! 🤗💞#worldkindnessday #choosekindness kindnessorg https://t.co/nFlWpwe9Cl +11/13/2017,Actors,@JessicaLStroup,Happy #worldkindnessday #choosekindness kindnessorg @ North Carolina https://t.co/t8W4ATOqMR +11/13/2017,Actors,@JessicaLStroup,Happy #worldkindnessday2017 #ChooseKind 💖💗💖 https://t.co/Buc0Mo214A +11/12/2017,Actors,@JessicaLStroup,RT @EllenPage: https://t.co/GpfdK6fgFB +11/11/2017,Actors,@JessicaLStroup,Come on @UnknownAcct 😼🙌🏻!!! @ Clemson Death Valley Stadium https://t.co/OvCqXPa7Na +11/10/2017,Actors,@JessicaLStroup,"RT @kindness_org: Dear World: This World Kindness Day, I’ve got you. We’ve had some really challenging times this year that have made our h…" +11/08/2017,Actors,@JessicaLStroup,🙌 https://t.co/N1De0FtX28 +11/08/2017,Actors,@JessicaLStroup,RT @LEBassett: The man who wrote the anti-trans bathroom bill just lost the election to a trans woman. Let that sink in. https://t.co/KFEZX… +11/08/2017,Actors,@JessicaLStroup,RT @davidaxelrod: .@POTUS has pulled every trick in the book to discourage signups yet the ACA is posting record enrollment! Big message in… +11/08/2017,Actors,@JessicaLStroup,RT @TomPelphrey: If anyone will be around NYC and is interested... this is a great organization doing really good work. 😊 https://t.co/f1a… +11/07/2017,Actors,@JessicaLStroup,RT @SenFeinstein: Teachers spend $1.6 BILLION per year on school supplies. The Republican tax bill ELIMINATES their ability to deduct those… +11/07/2017,Actors,@JessicaLStroup,RT @scottharrison: 10 new jobs posted at @charitywater - join an amazing team and work with purpose in the service of others! https://t.co… +11/07/2017,Actors,@JessicaLStroup,RT @BarackObama: Every election matters - those who show up determine our future. Go vote tomorrow! https://t.co/j1wh8hLamw +11/05/2017,Actors,@JessicaLStroup,🤦‍♀️ https://t.co/EKCYzq7XZ4 +11/05/2017,Actors,@JessicaLStroup,What an inspiration. Love you Brit Marling... @britmarling on Harvey Weinstein and the economics of consent https://t.co/2DlesWhLtb +11/03/2017,Actors,@JessicaLStroup,RT @WLKY: 9-year-old cancer patient asks for cards to celebrate 'last Christmas early https://t.co/BMud72HGUd https://t.co/lUwboCC3hY +11/01/2017,Actors,@JessicaLStroup,"RT @JeffFlake: Actually, the Gang of 8, including @SenSchumer, did away with the Diversity Visa Program as part of broader reforms. I know,…" +11/01/2017,Actors,@JessicaLStroup,RT @JoeBiden: Today is the first day to sign up for 2018 health insurance through https://t.co/3CYKhP8ZoR. Deadline is December 15th! https… +11/01/2017,Actors,@JessicaLStroup,"RT @ASlavitt: It's on! 2018 ACA enrollment has begun. + +80% can find plans under $75/month. Go to https://t.co/nYl9YWdSHm. + +Spread the word." +10/31/2017,Actors,@JessicaLStroup,RT @danpfeiffer: There’s a real contradiction between Facebook saying Russian ads had no impact and Facebook telling brands to spend millio… +10/31/2017,Actors,@JessicaLStroup,@lizsczudlo 🤣🤣💖 +10/31/2017,Actors,@JessicaLStroup,Best friends in foreign lands!!! ccsolis25 @rickymabe 👏🏻👏🏻 @ Kensington Gardens https://t.co/uJwv7leuXo +10/30/2017,Actors,@JessicaLStroup,"Mmuuhahaha 🎃 @ London, United Kingdom https://t.co/Tx4ONIwWev" +10/23/2017,Actors,@JessicaLStroup,"I liked a @YouTube video https://t.co/lo4S4DbD5M Portrait of Lotte, 0 to 16 years in 4 ½ minutes." +10/20/2017,Actors,@JessicaLStroup,Fall in London. 🍁💛 https://t.co/G1RoYfMvLZ +10/18/2017,Actors,@JessicaLStroup,RT @SenKamalaHarris: The deadliest mass shooting in our country’s history was 16 days ago. Conversations about gun violence have faded. We… +10/17/2017,Actors,@JessicaLStroup,"I sit with tears falling because I see a broken, selfish, bully of a man as our “president.”… https://t.co/ybXMtIKPN6" +10/17/2017,Actors,@JessicaLStroup,#firstamendment @ The White House https://t.co/FNCMymAE3e +10/17/2017,Actors,@JessicaLStroup,"Although I can’t bring myself to detail my own experiences in tweets, I want to say I support those speaking out against abuse. #MeToo" +10/15/2017,Actors,@JessicaLStroup,Sunday morning nature walks with my buddy Price. #RichmondVA #godmother❤️ @ James River Pony… https://t.co/e4pzHDFJ1q +10/14/2017,Actors,@JessicaLStroup,RT @rosemcgowan: This is what action looks like men of Hollywood. We don’t need your ‘I stand with you’ crap now. We need you to ACT https:… +10/12/2017,Actors,@JessicaLStroup,"RT @Jenny_Trout: I feel like if people wanted Clinton to come out and address every major event in the country, they probably should have e…" +10/12/2017,Actors,@JessicaLStroup,We’re all rootin’ for you Brock. Sending you so much love. Happy Happy Happy Halloween sweet boy. https://t.co/S7G2YYzJzE +09/26/2017,Actors,@JessicaLStroup,"Sending love out to everyone in need right now. You are not forgotten. 🌎💞 +...side note,… https://t.co/sSSvPwcdWW" +09/25/2017,Actors,@JessicaLStroup,"RT @Alejandrobot: ""Do not forget us, and do not let us feel alone."" Please take six minutes and watch this. San Juan is my home +🇵🇷 +https://…" +09/25/2017,Actors,@JessicaLStroup,Really glad we chose the dinosaur bus as our background ruthkearney @ Venice Beach https://t.co/riGe8AoOfl +09/24/2017,Actors,@JessicaLStroup,"RT @Khubbard991: My husband died for your right to #TakeAKnee. He would have supported you; I support you. Sincerely, a military widow." +09/17/2017,Actors,@JessicaLStroup,RT @jonlovett: Half of all boxing photos look like gay weddings https://t.co/K3sOhm2VlK +09/17/2017,Actors,@JessicaLStroup,“‘Between Heaven and Earth’” by @charitywater https://t.co/RZOvvsTkuM +09/17/2017,Actors,@JessicaLStroup,Dying. https://t.co/bkff9bk3Cz +08/23/2017,Actors,@JessicaLStroup,RT @nowthisnews: Trump’s pick for the USDA’s chief scientist isn’t a scientist at all – he’s a homophobic radio host https://t.co/JPwf4YZ5AJ +08/21/2017,Actors,@JessicaLStroup,😎 https://t.co/ooznpVXiuC +08/18/2017,Actors,@JessicaLStroup,TGIF https://t.co/vavOpKWf1D +08/16/2017,Actors,@JessicaLStroup,"RT @nke_ise: If you have ever had a problem grasping the importance of diversity in tech and its impact on society, watch this video https:…" +08/16/2017,Actors,@JessicaLStroup,RT @MichaelEaly: This👇 https://t.co/55HmA9A9gG +08/15/2017,Actors,@JessicaLStroup,That shadow though. 🐺 https://t.co/CrhLtXk6Jg +08/14/2017,Actors,@JessicaLStroup,RT @amaryllisfox: Remember originally we're all Pangean :) https://t.co/k962okSjyv +08/14/2017,Actors,@JessicaLStroup,"RT @ShaunKing: Friends, + +This family needs our help. + +13 y/o Noelle & her mother Alexis were hit by the car. Out of surgery. + +https://t.c…" +08/14/2017,Actors,@JessicaLStroup,RT @JasonKander: No one should forget that the birther movement emboldened white supremacists. Or that it was led by @realDonaldTrump. +08/14/2017,Actors,@JessicaLStroup,RT @Phil_Lewis_: The guy that organized that White supremacist rally in #Charlottesville gets ran off during a press conference https://t.… +08/13/2017,Actors,@JessicaLStroup,RT @nowthisnews: This cafe is demonstrating the gender pay gap in a powerful way https://t.co/0eBctJGyfw +08/13/2017,Actors,@JessicaLStroup,❤️ https://t.co/1uORiiPB4p +08/13/2017,Actors,@JessicaLStroup,😍 https://t.co/0RyBCIMzPg +08/13/2017,Actors,@JessicaLStroup,RT @TeflonDom187: This needs to be retweeted and shared over and over till everyone understands #Charolettesville https://t.co/5NsC8nXzmt +08/12/2017,Actors,@JessicaLStroup,"RT @GlennKesslerWP: Trying to imagine the president's response if this had started as an pro-Islam rally. Would ""all sides"" be at fault?" +08/12/2017,Actors,@JessicaLStroup,"RT @TopherSpiro: ""on many sides"" => Trump condemns those protesting Nazis" +08/12/2017,Actors,@JessicaLStroup,"RT @jonfavs: ""On many sides"" is the low point of a presidency that's already had a record number of low points." +08/12/2017,Actors,@JessicaLStroup,@realDonaldTrump Are you joking? YOU ignited this. Your pathetic excuse of a presidency has unleashed HATE from the… https://t.co/hUiPpB8O1l +08/07/2017,Actors,@JessicaLStroup,Just cracked open this fortune cookie and found no fortune inside. Really quite... unfortunate.… https://t.co/fVWVuYnvl0 +08/04/2017,Actors,@JessicaLStroup,Happy birthday lbstroup!!! Little #fbf to you and my brother drinking champagne while the 2016… https://t.co/59dAPTHVOE +07/31/2017,Actors,@JessicaLStroup,Got me all teary eyed. Lets make sure to take care of one another as best we can. Nothing but love. https://t.co/k8WLjGdILm +07/31/2017,Actors,@JessicaLStroup,RT @charitywater: These BioSand Filters are finished and will be providing clean water for families here in Kampong Cham Province later thi… +07/31/2017,Actors,@JessicaLStroup,THIS is my JAM https://t.co/AIqnYuDhrB +07/30/2017,Actors,@JessicaLStroup,My best. My ride or die. My soul sister. I thank the heavens for you. Happy birthday. You are so… https://t.co/4Y0wbuA1K4 +07/25/2017,Actors,@JessicaLStroup,RT @charitywater: Our team is headed to Cambodia tomorrow to visit our partner org and capture stories about your impact. Get ready for a l… +07/25/2017,Actors,@JessicaLStroup,"RT @ddiamond: EIGHT YEARS AGO TODAY — Obama does 2-hour health care town hall in Ohio, takes questions and defends his plan. https://t.co/u…" +07/25/2017,Actors,@JessicaLStroup,RT @gingerthejester: Caring teachers have been paying for supplies out of pocket since I was a kid. Bless this woman. Teachers should make… +07/18/2017,Actors,@JessicaLStroup,💪🏻 https://t.co/7aRnvSum4e +07/18/2017,Actors,@JessicaLStroup,RT @cehuey: #AlwaysBeYoung https://t.co/3I01jLZi69 +07/12/2017,Actors,@JessicaLStroup,"RT @nxthompson: What +if +the +Internet +was +so +slow +it +loaded +one +word +at +a +time +— +except +on +sites +that +paid +off +your +ISP? +#netneutral…" +07/12/2017,Actors,@JessicaLStroup,Must be some dream. #willowstongue #willow https://t.co/WnC7pl5S6q +07/12/2017,Actors,@JessicaLStroup,RT @stugillard: Two space rocks worth Two Million Dollars Check out https://t.co/WtUFQ5YtsF - & watch #salvation July 12 CBS BOOM! https://… +07/11/2017,Actors,@JessicaLStroup,"RT @davidfrum: It’s important to remember that Russia intervened in 2016 not only to elect Trump, but to help congressional GOP https://t.c…" +07/10/2017,Actors,@JessicaLStroup,🍒 https://t.co/egV5G9u8yf +07/03/2017,Actors,@JessicaLStroup,RT @i_D: nadya from pussy riot is rewriting what it means to be punk https://t.co/sSDmIhoSfa https://t.co/wzYfAZwJxN +07/02/2017,Actors,@JessicaLStroup,RT @abgutman: @realDonaldTrump I just reported @realDonaldTrump to Twitter as an account that threatens violent. I hope you join me and do… +06/29/2017,Actors,@JessicaLStroup,Must go. https://t.co/a81N98tja4 +06/14/2017,Actors,@JessicaLStroup,Devastated for the families involved in the fire in London. Praying for everyone. https://t.co/eY8JscCjNY +06/13/2017,Actors,@JessicaLStroup,@realDonaldTrump @ClemsonFB NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO… https://t.co/HW4YtNmATw +06/11/2017,Actors,@JessicaLStroup,"@thisissigrid ""Don't kill my vibe"" ...🖕🏻to the ones who've tried to break my stride. Go'on girl. #boss https://t.co/PWKHBxyaGj via @youtube" +06/10/2017,Actors,@JessicaLStroup,@linneahendrix not sure what any of this means but I love the way you sing! #BrilliantMinds17 👏🏻 https://t.co/g9YUkEpK8b +06/08/2017,Actors,@JessicaLStroup,@MadameGandhi you are an inspiration 👑❤️🔥#brilliantminds2017 @SymposiumSthlm +06/06/2017,Actors,@JessicaLStroup,My monthly donation to @charitywater is providing safety to young girls. Join me ✊🏻https://t.co/qzQFouWBWu #charitywater +06/01/2017,Actors,@JessicaLStroup,😞 https://t.co/HfoUTV0zpO +06/01/2017,Actors,@JessicaLStroup,Spread compassion. Girls who survived Portland's MAX Attack https://t.co/Jvh0IzzTot via @youcaring +06/01/2017,Actors,@JessicaLStroup,👋🏻 https://t.co/MxjIVQqt2T +06/01/2017,Actors,@JessicaLStroup,"@MerlinWizDawg 😂🇺🇸❤️ ""Trump Survival TV - Episode 1 - La Resistance"" on https://t.co/yvX9NV5qQD" +05/30/2017,Actors,@JessicaLStroup,"RT @JennKaytin: For those who didn't watch it the first time I RT'd it, here's this video of @jes_chastain again because it's that fucking…" +05/29/2017,Actors,@JessicaLStroup,RT @BarackObama: Forever grateful for the service and sacrifice of all who fought to protect our freedoms and defend this country we love.… +05/26/2017,Actors,@JessicaLStroup,Everything https://t.co/P7Ppb8NMwJ +05/20/2017,Actors,@JessicaLStroup,"My dance move: all about the finger point. Congrats to the beautiful bride @claire_stroup,… https://t.co/bgZYtUvwT8" +05/20/2017,Actors,@JessicaLStroup,Annnnnnd he's out. lbstroup https://t.co/lr3H592451 +05/20/2017,Actors,@JessicaLStroup,Camera weighed as much as her. Congrats to my coolest cousin @claire_stroup who just got… https://t.co/PGv4GipEnR +05/14/2017,Actors,@JessicaLStroup,Happy Mother's Day to my everything. I love you mom 😘💕 https://t.co/Z3yQJnxis1 +05/11/2017,Actors,@JessicaLStroup,You guys are the best!! 💕 https://t.co/RyPi6HjFor +05/09/2017,Actors,@JessicaLStroup,I agree. https://t.co/T6PLXSvqgh +05/08/2017,Actors,@JessicaLStroup,Interesting 👉🏻 How magic mushrooms can help with cancer-related anxiety and depression https://t.co/yxI6r0bthA +05/08/2017,Actors,@JessicaLStroup,Go'on girl 🙌 https://t.co/csaxxgnSjj +05/07/2017,Actors,@JessicaLStroup,@mattlanter 😻(@mackwilds where you at!?) https://t.co/CsWSajp4bn +05/07/2017,Actors,@JessicaLStroup,Old school girlfriends REUNITE! Thanks for a fun night supporting LA youth education @cityyearla!! https://t.co/pdK94pgjNU +05/06/2017,Actors,@JessicaLStroup,I just rewatched this like 4 times... so freaking hilarious 😂😂 https://t.co/sH57Fpbr4O +05/04/2017,Actors,@JessicaLStroup,"Neuralink and the Brain's Magical Future - Wait But Why https://t.co/IzznxoP0HY via @waitbutwhy +MINDBLOWING!!!" +04/29/2017,Actors,@JessicaLStroup,RT @ShawnRAshmore: Mavis was rescued from a kill shelter but needs a permanent home. Reach out to @maedayrescue #maedaymavis pls share http… +04/29/2017,Actors,@JessicaLStroup,My man @DeshaunWatson4. 🤗👏🏻 https://t.co/nVzihfffw6 +04/27/2017,Actors,@JessicaLStroup,"@chadwyoung my thoughts are with you, your family and the entire racing community. https://t.co/phn7xgfuxK" +04/21/2017,Actors,@JessicaLStroup,I #StandForWildlife. Join me in the #EarthDay Challenge with a donation to @TheWCS. Ur gift will have 2x the impact: https://t.co/9Zhqn9LWCy +04/21/2017,Actors,@JessicaLStroup,Go'on Sam!! 👏🏻@samunderwood https://t.co/Xaanj8OfIi +04/20/2017,Actors,@JessicaLStroup,"RT @Khanoisseur: @SenJohnMcCain @WSJ Hey @SenJohnMcCain, YOU voted to confirm Tillerson; YOU knew this was coming; what's your next brillia…" +04/18/2017,Actors,@JessicaLStroup,@appearhere continues to inspire hope for the dreamers #ImadsSyrianKitchen https://t.co/cWcjUb8NHp via @youtube +04/15/2017,Actors,@JessicaLStroup,Just walked outside after cheering on #aprilthegiraffe and THIS was above me! Haha I love life's… https://t.co/5nvSWkNCCc +04/15/2017,Actors,@JessicaLStroup,YESSSS APRIL THE GIRAFFE! 👏🏻👶Have you been following this miracle of life? Love it. https://t.co/b5g8uZKEMG via @youtube +04/10/2017,Actors,@JessicaLStroup,Are you kidding me @CoreyStewartVA ?? Take down your damn confederate flags. I thought Virginia was for lovers... 💔 https://t.co/QrLfdkhKMQ +04/08/2017,Actors,@JessicaLStroup,My best friend and a field of poppies. Love you @jenniferbkaiser @ Antelope Valley California… https://t.co/kgT6GugdlW +04/06/2017,Actors,@JessicaLStroup,Baby girl. #willow https://t.co/JwNyI9jM0D +04/06/2017,Actors,@JessicaLStroup,@Big_Little_Lies Wow. Wow. Wow. ...just... thank you. +04/02/2017,Actors,@JessicaLStroup,Donate to this worthy cause. 🤣https://t.co/McCOicZaRV via @youtube +04/01/2017,Actors,@JessicaLStroup,Singapore you rock my world. Can't wait to come back. 👋🏻 @finnjones @TomPelphrey @benjaminkheng… https://t.co/KoIyBTJ2X3 +03/31/2017,Actors,@JessicaLStroup,We have fun. #chillicrab #fridaynightsinsingapore #needmorebibsinmylife @ Palm Beach Seafood… https://t.co/DuqB3zsbyW +03/31/2017,Actors,@JessicaLStroup,#lifegoals @ Marina Bay Singapore https://t.co/BLdPlxcg0c +03/31/2017,Actors,@JessicaLStroup,Right before our press conference here in Singapore! Been such a fun press tour. Loving this… https://t.co/I4ekQcmwGU +03/30/2017,Actors,@JessicaLStroup,This just happened. My Korea trip is complete. 😂🤖💯 @ Bandar Udara Internasional Incheon https://t.co/hx66VE85Ge +03/28/2017,Actors,@JessicaLStroup,“Four-and-a-half false statements EPA head Scott Pruitt made in just one interview” by @climateprogress https://t.co/Ydm5sIl9bw +03/28/2017,Actors,@JessicaLStroup,"Caught @finnjones checking out his huge glowing marvelironfist billboard in Seoul, South Korea!… https://t.co/gIqeoHPZcw" +03/25/2017,Actors,@JessicaLStroup,Fantastic read: You're sexist. And so am I. https://t.co/AABsn9q6rn via @usatoday +03/23/2017,Actors,@JessicaLStroup,"💗this. @sacha_dhawan is the man. Iron Fist star Sacha Dhawan talks Davos, villainy and Marvel https://t.co/n20VsmLohc via @squaremile_com" +03/23/2017,Actors,@JessicaLStroup,@ZosiaRMamet is bringing out the big guns for @ACLU at 6 PM March 31 on Facebook live. I'll be supporting b/c I stand for rights... do you? +03/23/2017,Actors,@JessicaLStroup,"This is incredibly important: Tom Hanks, Tina Fey, Alec Baldwin Set for ACLU Telethon on Facebook Live https://t.co/Q8PzbRYXTc via @variety" +03/21/2017,Actors,@JessicaLStroup,"""Aghhhh you stupid-freakin-FLY!! You will not defeat me!!!"" https://t.co/5OlHUj8xA9" +03/21/2017,Actors,@JessicaLStroup,"RT @fabiochiusi: ""a dangerous precedent that mirrors the behavior of authoritarian regimes"" https://t.co/JTQOrtlb5H via @aclu" +06/30/2018,Actors,@MattLanter,RT @woahashli: Hey fellow Clockblockers! Please check out this AMAZING artwork I commissioned from @littlemachine_ of Lyatt! I've been dyin… +06/28/2018,Actors,@MattLanter,#tbt I didn’t choose the thug life. The thug life chose me. #minimatt https://t.co/cKv76a9IgQ +06/27/2018,Actors,@MattLanter,"RT @MM_96_8: Hey look it's @MattLanter!! If u havent seen the USS Indianapolis movie on Netflix, give it a watch!! It's a great movie that…" +06/26/2018,Actors,@MattLanter,Niiiiiice! 10 years! Can’t wait for this panel. https://t.co/c8f8GQHenU +06/25/2018,Actors,@MattLanter,#deletedscene I like the *new Future Lucy better 😁 #SaveTimeless https://t.co/TIkPNVxHx3 +06/25/2018,Actors,@MattLanter,I like this guy. Put him in the Lifeboat and give Wyatt a break on the next mission! 😜 #SaveTimeless https://t.co/6e6uSDmA9b +06/24/2018,Actors,@MattLanter,"RT @arikalisanne: This guy’s my boss, so, I’d go ahead and do what the man says... Get loud. #SaveTimeless https://t.co/dvDDCwqH2s" +06/22/2018,Actors,@MattLanter,RT @THR: #Timeless has been canceled (for a second time) at NBC: https://t.co/TuOQKyHT5A +06/22/2018,Actors,@MattLanter,"RT @Sony: | ̄ ̄ ̄ ̄ ̄| +| TIME | +| TEAM | +| FOREVER | +| _____| +(\__/) || +(•ㅅ•) || +/   づ" +06/22/2018,Actors,@MattLanter,Sounds like one of our only options right now is the possibility of a 2 hour movie finale. Let @nbc know if you’d l… https://t.co/SQ7KRTCNnP +06/22/2018,Actors,@MattLanter,I love you #Clockblockers. You’ve fought so hard and deserve so much more. #Timeless https://t.co/XmIblLJRkt +06/22/2018,Actors,@MattLanter,Loved this scene. #Timeless https://t.co/809ssPnpF1 +06/21/2018,Actors,@MattLanter,Of all the shows... we ranked #1. Pretty sweet. #Timeless https://t.co/5AzrFkfrJp +06/21/2018,Actors,@MattLanter,RT @HollieJoyJoy: @MattLanter @ryan_connolly Ok... #lyatt fans... Matt talks about shooting the scene when Wyatt comes over to Lucy’s house… +06/21/2018,Actors,@MattLanter,Had a blast chatting about career and life on the new #FilmRiotPodcast thanks @ryan_connolly https://t.co/WlewfmBInx +06/21/2018,Actors,@MattLanter,Congrats Matt! https://t.co/5jiy11Aljy +06/20/2018,Actors,@MattLanter,I would LOVE to do @EAStarWars !! https://t.co/NYJC0wkuDB +06/18/2018,Actors,@MattLanter,This really says something. Our #clockblocking fans are the greatest! #RenewTimeless https://t.co/ULJpd4PHyG +06/17/2018,Actors,@MattLanter,Putting my baby’s toes in the ocean for the… https://t.co/5wT0oCAOeS +06/17/2018,Actors,@MattLanter,Thank you son. #CloneWarsxSagaMashup #StarWars @starwars https://t.co/3WYFSpSTw3 +06/17/2018,Actors,@MattLanter,RT @acofell: #writerslife is sadly really about torturing characters. Killing their dreams. Want a dramatic scene? Figure out what your… +06/14/2018,Actors,@MattLanter,Wait is this real? How do I get one? https://t.co/3XXYppxIYi +06/13/2018,Actors,@MattLanter,"If you can’t beat em, dab on em #RenewTimeless https://t.co/AApcxruONb" +06/11/2018,Actors,@MattLanter,We had a blast with @shenaegrimes and… https://t.co/wInVMcNdvj +06/11/2018,Actors,@MattLanter,Today would be a good day to #RenewTimeless #justsayin +06/08/2018,Actors,@MattLanter,RT @Sony: #NationalBestFriendsDay #Timeless https://t.co/WXfVwWncxO +06/06/2018,Actors,@MattLanter,Sweet! #renewtimeless also worth noting that the original show was called “Time” not “Timeless” https://t.co/KLzY6Fecpb +06/06/2018,Actors,@MattLanter,"RT @therealKripke: Okay, people, first: #Clockblockers are a strong, brilliant and united fandom. Second, we're still awaiting word. Frustr…" +06/06/2018,Actors,@MattLanter,Awesome posters! #RenewTimeless https://t.co/Z8bC4OQPbe +06/05/2018,Actors,@MattLanter,Newly released #Timeless script pages from one of our final scenes. #RenewTimeless https://t.co/CTbgjyTBEP +06/04/2018,Actors,@MattLanter,I’ll add “tearful puppy dog eyes” to my special skills section of my resume 😜 #RenewTimeless https://t.co/DUFYg7k470 +06/03/2018,Actors,@MattLanter,The last of the #deletedScenes #RenewTimeless https://t.co/XLsUTFtDTq +06/03/2018,Actors,@MattLanter,Check out some released script pages of episode #108 “Bonnie & Clyde” where Wyatt/Lucy kiss for the first time..… https://t.co/BoOSzBQ48F +06/02/2018,Actors,@MattLanter,#deletedscenes #moodyWyatt #RenewTimeless https://t.co/XzVonuWKUF +05/31/2018,Actors,@MattLanter,"RT @TheTimelessRoom: You're 500 retweets away from today's deleted scene. Let's see how quickly we can get there #ClockBlockers. + +And let's…" +05/29/2018,Actors,@MattLanter,#deltedScenes #Flucy https://t.co/k6XTYwXhkz +05/29/2018,Actors,@MattLanter,"New #DeletedScenes!! Lucy sings, Wyatt stares, bullets are fired! 👀👀 https://t.co/x0DcGp23Nw" +05/28/2018,Actors,@MattLanter,Playoffs. It’s a @cavs house. @nba https://t.co/tBk4xNjAXn +05/27/2018,Actors,@MattLanter,RT @TheTimelessRoom: Hey #ClockBlockers! We hope you're enjoying these deleted scenes. Please keep pounding social media with your desire t… +05/27/2018,Actors,@MattLanter,#DeletedScene Alert! #renewtimeless https://t.co/7BanZd3NTj +05/27/2018,Actors,@MattLanter,"RT @fairvictorious: Signal boost! We need to make up some ground, Clockblockers! VOTE for #Timeless, Abigail, Matt, Claudia, Goran, and Lya…" +05/26/2018,Actors,@MattLanter,"RT @David_C_Hoffman: @NBCTimeless - today’s deleted scene, #clockblockers. Can we get up to 100k views again?? #timeless #RenewTimeless #L…" +05/26/2018,Actors,@MattLanter,"#DeletedScenes Wyatt tucks and and kisses an exhausted Lucy. #RenewTimeless there ya go #Lyatt fans, Happy Saturday. https://t.co/h2fAXSkfP9" +05/25/2018,Actors,@MattLanter,My man https://t.co/9K1pI13u98 +05/25/2018,Actors,@MattLanter,More #DeletedScenes! Rittenhouse family goodness! #RenewTimeless https://t.co/3zycKZ2rK1 +05/25/2018,Actors,@MattLanter,We aren’t finished yet. #RenewTimeless https://t.co/g6tGIHo57m +05/25/2018,Actors,@MattLanter,Breaking the internet. One of our many talents. #DeletedScenes #Timeless #RenewTimeless https://t.co/NMX8qiAH4Y +05/25/2018,Actors,@MattLanter,Woohoo! #Timeless https://t.co/TrJXr6SaXU +05/25/2018,Actors,@MattLanter,RT @arikalisanne: You know what would be really awesome? 100k views by morning. Go. #Timeless #RenewTimeless https://t.co/5zkNxGBZAf +05/25/2018,Actors,@MattLanter,Once https://t.co/BWhWBfrble +05/25/2018,Actors,@MattLanter,"Actually they heated it to be super warm for us! Also, it was about 5:30am when we shot that! #deletedscene… https://t.co/fClquzMF77" +05/25/2018,Actors,@MattLanter,Uhhhhh woe. 🔥 #DeletedScene #Kiss 💦💦 #RenewTimeless https://t.co/TqPANjJVKT +05/24/2018,Actors,@MattLanter,"I’ll be honest. No, I don’t. 😐 https://t.co/VEsnDDf2pP" +05/24/2018,Actors,@MattLanter,"RT @CJsaurusB: Wyatt was there to protect the Princess, just as Lucy attended the Royal Wedding. @nbc @MattLanter @abigailspencer https://t…" +05/24/2018,Actors,@MattLanter,Went out last night. #wingman #NosesOn! Tune in… https://t.co/yXySTaFL1n +05/24/2018,Actors,@MattLanter,"RT @TheTimelessRoom: You all got to those 5,000 likes and 2,500 retweets quicker than we thought you would! Working with our post departmen…" +05/24/2018,Actors,@MattLanter,What a beautifully written article. @allisonshoe https://t.co/x16KmH1hyp +05/24/2018,Actors,@MattLanter,Congrats on your win @kelly_clarkson !! 🎼 +05/24/2018,Actors,@MattLanter,This was one of my favorite openings of the series. Picks up with #TimeTeam running through the woods already in a… https://t.co/zKBI0YmvK3 +05/23/2018,Actors,@MattLanter,Do u think @RoyalFamily @KensingtonRoyal would adopt me and @AngelaLanter in? https://t.co/YuDKCt6s04 +05/23/2018,Actors,@MattLanter,"I hear there is a pool makeout scene with Wyatt/Lucy? Can you confirm or deny. Thx, #Clockblockers https://t.co/qKqupe2XzH" +05/23/2018,Actors,@MattLanter,Oh @TheCrownNetflix why have you not come into my life sooner? +05/23/2018,Actors,@MattLanter,#renewtimeless let’s see em. #hopeidontlookafool #deletedscenes https://t.co/qKqupe2XzH +05/22/2018,Actors,@MattLanter,RT @TheTimelessRoom: UPDATE: We know it's frustrating to our fans to not have an answer yet re: #RenewTimeless. We've been led to believe a… +05/21/2018,Actors,@MattLanter,Lol ♥️ u @kelly_clarkson #RenewTimeless https://t.co/vg1FA4esNr +05/21/2018,Actors,@MattLanter,"RT @SpoilerTV: #Timeless was one of @SpoilerTV's Scenes of the Week. +@NBCTimeless @MattLanter @TheTimelessRoom @nbc @malcolmbarrett @abiga…" +05/21/2018,Actors,@MattLanter,I need to see vid stat! 😂 https://t.co/VBU43NOUNz +05/20/2018,Actors,@MattLanter,Gee I’m blushing 😘 https://t.co/BIqJbm4M7s +05/20/2018,Actors,@MattLanter,@MikeJelline Ya gotta just put em in their place. 😂 +05/19/2018,Actors,@MattLanter,This feels like one of those creepy paintings you see in Scooby Doo https://t.co/b1xFIsKrFg +05/19/2018,Actors,@MattLanter,Oh boy. Here we go again. I can totally hear both. https://t.co/h0zgMD44Vt +05/19/2018,Actors,@MattLanter,I meeeaan... https://t.co/LJit99eObQ +05/18/2018,Actors,@MattLanter,Thanks @KristaVernoff ! #RenewTimeless https://t.co/CCyT4yl8PT +05/17/2018,Actors,@MattLanter,"RT @NuviAdam: Over the last 7 days, @NBCTimeless has garnered over 400k mentions (with a spread of 348m+) on social, with 77k+ of them talk…" +05/17/2018,Actors,@MattLanter,@bryanedwardhill Thank you sir! +05/17/2018,Actors,@MattLanter,@geoffjohns Looking forward to it! +05/16/2018,Actors,@MattLanter,Clearly @angelalanter LOVES the #Timeless beard. https://t.co/GwnEBnWLmb +05/16/2018,Actors,@MattLanter,"Wow, this had to have taken a long time. Cool vid! #timeless https://t.co/3qmifm1ok1" +05/16/2018,Actors,@MattLanter,#tbt 1 year ago. Waiting on news for a #Timeless… https://t.co/1CXprnCJda +05/15/2018,Actors,@MattLanter,RT @NBCTimeless: Freshman year vs. Senior year: #Lyatt edition. #Timeless https://t.co/6lvkL4yC8f +05/15/2018,Actors,@MattLanter,RT @Lovely__Melan: Wyatt looks since season 1. Which one is your favorite ? @MattLanter @NBCTimeless @Sony #Timeless #RemewTimeless https:/… +05/15/2018,Actors,@MattLanter,RT @Hypable: Interview: @NBCTimeless star @MattLanter on Wyatt's journey in season two of #Timeless and his hopes for season three. #RenewT… +05/15/2018,Actors,@MattLanter,RT @cathycryan: Timeless: Social ratings prove it needs renewing https://t.co/c3FhboOzyR +05/14/2018,Actors,@MattLanter,"RT @abigailspencer: More hugging. Less fighting. Please? Thanks, Lucy. #Timeless https://t.co/1vQpCrzaQt" +05/14/2018,Actors,@MattLanter,This is awesome! #timeless https://t.co/gek24AcRbi +05/14/2018,Actors,@MattLanter,Future Wyatt & Future Lucy #timeless https://t.co/RqMu7zj0wt +05/14/2018,Actors,@MattLanter,Savage. #timeless https://t.co/o0aMPGvWsU +05/14/2018,Actors,@MattLanter,RT @Wersching: 🙌🏻 #Timeless https://t.co/PcYhSaBeRq +05/14/2018,Actors,@MattLanter,Truth #timeless https://t.co/Ml4TVcOHAq +05/14/2018,Actors,@MattLanter,RT @kelly_clarkson: MY MIND IS BLOWN #Timeless ....I am so happy right now I don’t know what to do. How will I sleep? What in the world?! T… +05/14/2018,Actors,@MattLanter,What!!? #FutureWyattFutureLucy #timeless https://t.co/7R0NTXjMVE +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: When the chips are down Wyatt and Flynn fight side by side. #timeless +05/14/2018,Actors,@MattLanter,Dat hug tho #timeless https://t.co/C9T8Oi258O +05/14/2018,Actors,@MattLanter,....I think ur missing something 🤨 #timeless https://t.co/8FPJfivQEg +05/14/2018,Actors,@MattLanter,The sci fi geek in me is soooo interested in Superpower Jiya. #timeless +05/14/2018,Actors,@MattLanter,Haha right. With that devilish smirk on his face! #timeless https://t.co/zfzj2Xue1Z +05/14/2018,Actors,@MattLanter,Easy when the writing’s great! #timeless https://t.co/bakJNJ2DXg +05/14/2018,Actors,@MattLanter,RT @WilliamShatner: #Timeless Harriet dreamt about Wyatt & Rufus? +05/14/2018,Actors,@MattLanter,"Fun fact: despite what you see on screen, we were losing light and shot that horse scene in about 20 minutes. That’… https://t.co/XhDQEsU2dD" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: Yep. We are. #Timeless https://t.co/RVnsDxRzSY +05/14/2018,Actors,@MattLanter,RT @kelly_clarkson: Watching #Timeless finale and I LOVE The General!! Yes!! This show is so cool. I can’t believe this might not be renewe… +05/14/2018,Actors,@MattLanter,RT @LanaJeany: I LOVE that badass entrance by Harriet Tubman AKA The General! This ep was written by @Mattney (AKA my crush!) -- who also w… +05/14/2018,Actors,@MattLanter,RT @booklover_Rita: @NBCTimeless That finale. No words to describe. Wow. #timeless +05/14/2018,Actors,@MattLanter,Lolol #timeless https://t.co/0NLdx6TZP7 +05/14/2018,Actors,@MattLanter,Stick around 😜 #timeless https://t.co/5cFvQNBZ0t +05/14/2018,Actors,@MattLanter,RT @WilliamShatner: #Timeless Time to jump +05/14/2018,Actors,@MattLanter,Me too!! #timeless https://t.co/Awy11aI1n6 +05/14/2018,Actors,@MattLanter,Whaaaaaaaaaaaat! #timeless +05/14/2018,Actors,@MattLanter,RT @NBCTimeless: He finally said it. #Timeless #Lyatt https://t.co/WMmXjGJPaI +05/14/2018,Actors,@MattLanter,#1 niiiiicce! #timeless https://t.co/4dpaZtnoMg +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: Aaaand now we’re up to this part. #Timeless https://t.co/nrsEYnYNg3 +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: Happy mother’s day from the Preston family! #Timeless https://t.co/v3XmWCStss +05/14/2018,Actors,@MattLanter,RT @samraemcgrath: WOW WHAT THE F JUST HAPPENED.... 😮😮😮 #TIMELESS holy F. Didn’t see that coming.... +05/14/2018,Actors,@MattLanter,Insane in 3..2...1.. #timeless +05/14/2018,Actors,@MattLanter,Jiya has gotten 1000% perfect more BA. #timeless +05/14/2018,Actors,@MattLanter,RT @alisongreenberg: There’s not enough beta blockers in the world to get through this finale #Timeless +05/14/2018,Actors,@MattLanter,True story #timeless https://t.co/lJZgNaPt2x +05/14/2018,Actors,@MattLanter,"I hurt for Wyatt, but Matt agrees with you. 😜 #timeless https://t.co/8E1TyXdGCG" +05/14/2018,Actors,@MattLanter,Nice job team ! #timeless https://t.co/2YMPk3Vxmx +05/14/2018,Actors,@MattLanter,RT @kevinsizemore: THANKS FOR HAVING ME ON @NBCTimeless .... @MattLanter @malcolmbarrett @Wersching .... but that @HornChristine playing #H… +05/14/2018,Actors,@MattLanter,Fun fact: I did not know @abigailspencer was going to hug me@in that moment. #timeless +05/14/2018,Actors,@MattLanter,She’s changed sooo much! #timeless https://t.co/vgx9euLNGN +05/14/2018,Actors,@MattLanter,"RT @TheAltSource: HARRIET SAW THE LIFEBOAT.😲 +HARRIET SAW THE LIFEBOAT.😲 +HARRIET SAW THE LIFEBOAT.😲 +#Timeless" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: You're going to want to take your medication before the second hour then. #Timeless https://t.co/euFTeS0DSF +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: Oops. The sleeper agent brought a 19th century pistol to a Delta Force party! #timeless +05/14/2018,Actors,@MattLanter,"RT @arikalisanne: Less than 30 minutes, East Coast. You might THINK you’re ready, but I promise... you are NOT ready for this... #Timeless" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: #5 Worldwide? Amazing. Keep it up #Clockblockers! #Timeless https://t.co/du1SwXVAH5 +05/14/2018,Actors,@MattLanter,Rhett...Butler. 😂 #timeless +05/14/2018,Actors,@MattLanter,#timeless fans of all ages! Huge #riya fan. https://t.co/cQKcQ5CFpT +05/14/2018,Actors,@MattLanter,RT @caz_mer: This episode has been great so far #timeless +05/14/2018,Actors,@MattLanter,The forbidden colors? WTH? #timeless +05/14/2018,Actors,@MattLanter,RT @arikalisanne: RT if you think @HornChristine is an amazing badass Harriet Tubman #RenewTimeless #Timeless +05/14/2018,Actors,@MattLanter,This is just wrong #timeless https://t.co/e1GLnZ1Wvk +05/14/2018,Actors,@MattLanter,Eeeyyooo keep it going! Talk about it! #timeless https://t.co/PykKq8bDg0 +05/14/2018,Actors,@MattLanter,Hah agreed #timeless https://t.co/aIolcv64O5 +05/14/2018,Actors,@MattLanter,Man @malcolmbarrett u do have a lot of one liners tonight #timeless +05/14/2018,Actors,@MattLanter,"RT @malcolmbarrett: Time team, biotch! #Timeless https://t.co/rAPN5fqrHk" +05/14/2018,Actors,@MattLanter,RT @arikalisanne: Why stop now? Make us #1 in the whole freaking world tonight! #Timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: It’s in every episode. #Timeless https://t.co/VvweJ9Fq2l +05/14/2018,Actors,@MattLanter,RT @AngelaLanter: Team #RenewTimeless in da house! #Timeless https://t.co/uXz8MSlkOL +05/14/2018,Actors,@MattLanter,RT @BelleRinger1: This is Us reference! @NBCTimeless #renewtimeless @nbc @TheTimelessRoom @abigailspencer @goranvisnjic @MattLanter @malcol… +05/14/2018,Actors,@MattLanter,Harriet in the houuuuse! #timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,Jessica acting weird. #timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,Tact? How? Byyyyy NOT telling them? #timeless https://t.co/QY76yWmWEv +05/14/2018,Actors,@MattLanter,"RT @NBCTimeless: Who has a time machine and is already trending in the United States?! + +🎉 #Timeless 🎉" +05/14/2018,Actors,@MattLanter,P-p-p-p pregnant! Bout to get a little complicated. #timeless +05/14/2018,Actors,@MattLanter,"RT @sakinajaffrey: “FOR MY SAKE? (Wyatt, silently screaming inside.) +@MattLanter #Timeless https://t.co/182gF82LWT" +05/14/2018,Actors,@MattLanter,@malcolmbarrett Or one two liner? #dadjoke #timeless #renewtimeless +05/14/2018,Actors,@MattLanter,Ok ok ok ok here we go. #Timeless #2hourfinale +05/14/2018,Actors,@MattLanter,On The plus side we can watch these kids and feel bad about ourselves that we never were and will never be the smar… https://t.co/XICdvyG9oN +05/14/2018,Actors,@MattLanter,"Uhhh ok, so I know we told you all to tune in at 9pm.. I guess @nbc had different plans? Stay tuned, it’s slightly delayed. #RenewTimeless" +05/14/2018,Actors,@MattLanter,"RT @NBCTimeless: Turns out there's a slight delay. Hang tight, #Clockblockers. #Timeless will be on soon! + +Meanwhile, this is us @ us rn.…" +05/14/2018,Actors,@MattLanter,RT @NBCTimeless: One hour to go until the #Timeless season finale!🎉 https://t.co/FKJR62xDDU +05/13/2018,Actors,@MattLanter,A final plea for #Timeless season 3 hopes. Tonight or never! 9pm. @SonyPictures @nbc @THR @Variety @DEADLINE @EW https://t.co/4cOwWgcrPV +05/13/2018,Actors,@MattLanter,MacKenlee and I sure are lucky to have this superwoman in our lives!… https://t.co/PX5iWqwlNe +05/13/2018,Actors,@MattLanter,RT @TVGuide: #Timeless fans better watch the Season 2 finale tonight if they want the show to return next season https://t.co/TxTOAZSGbZ ht… +05/13/2018,Actors,@MattLanter,It’s tonight or never. Ya gotta tune in LiVE! #renewtimeless https://t.co/RGTFgUUK23 +05/13/2018,Actors,@MattLanter,👇👇 #RenewTimeless https://t.co/Pyk8r5nRqZ +05/13/2018,Actors,@MattLanter,RT @DEADLINE: ‘Timeless’ Co-Creator Eric Kripke On Series’ Fate: “Could Go Either Way” https://t.co/tCMbFdAspo https://t.co/OkavH5SdWT +05/13/2018,Actors,@MattLanter,@rmayemsinger @alzassociation Wow. So true. +05/13/2018,Actors,@MattLanter,9pm 9pm 9pm TOMORROW night. Two hours! #Timeless https://t.co/wLt8NjxZGq +05/13/2018,Actors,@MattLanter,Oh the @AtlantaFalcons know I’m all in https://t.co/cKSmRuhcf5 +05/12/2018,Actors,@MattLanter,Ps. Should we watch the finale together orrrr? #RenewTimeless https://t.co/W95LQNjDSt +05/12/2018,Actors,@MattLanter,It’s destiny! #RenewTimeless #Season3GuestStar https://t.co/W95LQNjDSt +05/12/2018,Actors,@MattLanter,@Dan_Fogelman @MichaelAusiello So true! +05/11/2018,Actors,@MattLanter,RT @WBHomeEnt: #DeathofSuperman. Tomorrow. https://t.co/8Z1esuW6VP +05/10/2018,Actors,@MattLanter,"Coming soon #Timeless Sunday 2 hour FINALE at 9pm +Nine! +9! Yes I… https://t.co/DSbVktrnoK" +05/09/2018,Actors,@MattLanter,RT @allisonrmcmanus: #Timeless named one of the best TV shows of 2018 by Business Insider ❤️❤️❤️ #Clockblockers #RenewTimeless https://t.co… +05/07/2018,Actors,@MattLanter,RT @arikalisanne: Recreating the Reagan assassination attempt was one of the most complex historical recreations we’ve ever done... and pro… +05/07/2018,Actors,@MattLanter,Trending!!! #Timeless #RenewTimeless https://t.co/DBSvuqNH8O +05/07/2018,Actors,@MattLanter,RT @KatieGompert: Goosebumps & tears with this episode of @NBCTimeless #Timeless +05/07/2018,Actors,@MattLanter,RT @Lovely__Melan: And know we finally know why Wyatt was chosen! @MattLanter @sakinajaffrey #Timeless +05/07/2018,Actors,@MattLanter,Savage #RenewTimeless #Timeless https://t.co/vAAuEbmYdr +05/07/2018,Actors,@MattLanter,Agent Christopher...don’t ever potentially leave us again. #RenewTimeless #Timeless +05/07/2018,Actors,@MattLanter,🙆‍♂️🚙 u know what I’m talking about #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,"Wow, Christopher seeing her future in pictures. So powerful. #timeless #RenewTimeless" +05/07/2018,Actors,@MattLanter,We’re like one big Christmas package #Timeless #RenewTimeless https://t.co/joVnbKybVL +05/07/2018,Actors,@MattLanter,See even @kelly_clarkson digs it. #RENEWTIMELESS https://t.co/ljQyyPyOD7 +05/07/2018,Actors,@MattLanter,"Practice makes perfect. Wait what? +#RenewTimeless #Timeless https://t.co/jsC5LpAPZJ" +05/07/2018,Actors,@MattLanter,I feel like this might get a lot of retweets? 🤷‍♂️ #justsaying #renewtimeless #Timeless https://t.co/ffmgKMriSd +05/07/2018,Actors,@MattLanter,Also @JustDoumit with huge hair gives me life. #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,And @abigailspencer with the glasses takes the cake. 🎂 #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,I say we hurt this guy. #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,Let’s do this. #timeless viewing party!! #RenewTimeless https://t.co/zWalz9Bji9 +05/06/2018,Actors,@MattLanter,#RenewTimeless https://t.co/69xlYVfnXf +05/06/2018,Actors,@MattLanter,#RenewTimeless tonight at 10/9c https://t.co/d60PBN9MhZ +05/06/2018,Actors,@MattLanter,We can change history. #clockblockers #renewtimeless https://t.co/5muiKWGYOw +05/05/2018,Actors,@MattLanter,"Waiting for the new Ep of nbctimeless like... +Our fantastic Dp Jimmy Lindsey… https://t.co/3CRu6IL6aA" +05/05/2018,Actors,@MattLanter,Want #Timeless back for season 3? Read this 👇👇👇👀👀 https://t.co/AOlwzqJHpu +05/05/2018,Actors,@MattLanter,@chrissiefit Be careful out there +05/04/2018,Actors,@MattLanter,@sakinajaffrey @JustDoumit Hahaha possibly +05/04/2018,Actors,@MattLanter,Wouldn’t mind this show at all https://t.co/c44jCmqALN +05/04/2018,Actors,@MattLanter,"Could be a beautiful friendship. Wyatt could sit down, hand her a basketball and say, “hey champ, come on, what’s g… https://t.co/tAgrhAySqk" +05/04/2018,Actors,@MattLanter,"Fun interview about #Timeless. We talk Jessica, Lucy, Flynn and the finale https://t.co/iT10iLyaFB" +05/04/2018,Actors,@MattLanter,"RT @MichaelAusiello: .@NBCTimeless Exclusive: Stars, EP Preview the Team's Quest to Save Young Agent Christopher — Plus, Watch Jiya Swipe '…" +05/04/2018,Actors,@MattLanter,@jennifermuro I love when things brew! +05/03/2018,Actors,@MattLanter,RT @Josh_connolly: THERE’S A SPIDER ON YOU!!! https://t.co/oE7qlcHAO0 +05/03/2018,Actors,@MattLanter,RT @kelly_clarkson: ....because it’s great! #listentothepeople 😜💁🏼‍♀️ https://t.co/L6Hjzi8WIT +05/03/2018,Actors,@MattLanter,RT @allisonrmcmanus: Proof of #Timeless repeating history with their two USA Today Save Our Show Poll Wins side by side. #RenewTimeless #Re… +05/03/2018,Actors,@MattLanter,"RT @TheTimelessRoom: Getting sooooooooo close to jumping into the lead in this poll. Vote if you haven't done so already! + +https://t.co/Be…" +06/29/2018,Actors,@MACKWILDS,If you’re going thru hell... keep going! +06/29/2018,Actors,@MACKWILDS,Can’t heal a wound if you pretend it’s not there. +06/28/2018,Actors,@MACKWILDS,The NBA is weir.... interesting!!! +06/27/2018,Actors,@MACKWILDS,The fact that you aren’t where you wanna be. Should be all the motivation you need! +06/23/2018,Actors,@MACKWILDS,If you knew how much I lost it wouldn’t bother you so much to see me win +06/23/2018,Actors,@MACKWILDS,"RT @EBONYMag: The @BETExperience Youth Program supports 50 Los Angeles county teens hoping to break into the music business, they kicked of…" +06/22/2018,Actors,@MACKWILDS,Life tip: put as much effort into getting your soul rights you do getting your money right +06/21/2018,Actors,@MACKWILDS,Therapy should be FREE. +06/21/2018,Actors,@MACKWILDS,What if... everything you’re going thru is preparing you for all you wanted +06/20/2018,Actors,@MACKWILDS,Creed 2!! Looks 🔥🔥 https://t.co/g8wAwn90O8 +06/19/2018,Actors,@MACKWILDS,Today is another chance to get it right y’all +06/18/2018,Actors,@MACKWILDS,Oh no the fuck you didn’t just lol... RT @WOODY_THEGREAT: Static Shock 2020 https://t.co/hY69ymw98h +06/18/2018,Actors,@MACKWILDS,RT @ChaleyRose: We screened our new movie #DinnerForTwo at #ABFF in Miami this weekend. You can watch it September 2nd at 7pm on .@tvonetv… +06/18/2018,Actors,@MACKWILDS,"Once you cost me my peace, you gotta go. You costing me way too much" +06/17/2018,Actors,@MACKWILDS,#deadass. https://t.co/KVGQJZ5V6l +06/16/2018,Actors,@MACKWILDS,Let’s just appreciate ALL the great music. We blessed!! We supporting it ALL. +06/16/2018,Actors,@MACKWILDS,Bey & Jay!!!! +06/15/2018,Actors,@MACKWILDS,Ronaldo is the GOAT! +06/15/2018,Actors,@MACKWILDS,RT @tvonetv: Our @ABFF Celebrity Scene Stealers Finalists showed up and showed out TODAY! 👏🏽@Sylvester_Folks @BirdyNYC @ScreenGriot .🙏🏽Acto… +06/14/2018,Actors,@MACKWILDS,Life Tip: Do YOU! +06/12/2018,Actors,@MACKWILDS,Getting ready to hit the stage #FortniteProAM with @timthetatman @FortniteGame #FortniteE3 https://t.co/7gD46cFh8y +06/12/2018,Actors,@MACKWILDS,"RT @theqgentleman: .@MACKWILDS hosts ""The Brotherhood Dinner"" in NYC. https://t.co/obXTNF08g2 https://t.co/h7PztKRaJD" +06/11/2018,Actors,@MACKWILDS,Praying more and keeping to myself. +06/09/2018,Actors,@MACKWILDS,My Dynasty list: 1. 00s Lakers 2. Bulls 3a. Golden State 3b. 80s Celtics 5. 80s Lakers 6. Spurs +06/09/2018,Actors,@MACKWILDS,Congrats to the Warriors on back 2 back Ships +06/09/2018,Actors,@MACKWILDS,Idk... their celebration seems a little... bland. +06/08/2018,Actors,@MACKWILDS,Kanye making those guns noises has to be the funniest shit to me +06/07/2018,Actors,@MACKWILDS,They are KILLING THE CAVS with this Roll/Cut to the basket play. I mean DAMN!!!!!!! +06/07/2018,Actors,@MACKWILDS,🤦🏾‍♂️ Lebron can’t pass outta that high percentage shot!! +06/06/2018,Actors,@MACKWILDS,"RT @FortniteGame: More Celebrity Pro-Am duos announced! + +Left: + +@RubiuYT + @partynextdoor +@sssniperwolf + @TFlight31 +@timthetatman + @MAC…" +06/05/2018,Actors,@MACKWILDS,RT @BET_FR: Retrouvez @MACKWILDS maintenant dans #BETManCave ! https://t.co/nFE9nUD3cO +06/04/2018,Actors,@MACKWILDS,RT @RocNation: Congratulations to @angiemartinez on her @RadioHOF nomination! Show your support by voting now https://t.co/jtlMv4L4sw #Vote… +06/03/2018,Actors,@MACKWILDS,@FunnyJulius @TheOgBlackMan My boy Alexander wrote this. Bringing our culture to GQ lol +06/03/2018,Actors,@MACKWILDS,🗣🗣🗣 STOP FEEDING THE FEDS!!!!!!!!! +06/01/2018,Actors,@MACKWILDS,Slow process is better than no process +06/01/2018,Actors,@MACKWILDS,I didn’t even know the score and I’m watching the damn game. So can’t be mad at JR for that +05/29/2018,Actors,@MACKWILDS,"@meganrpayne1 You think people who work on set choose who the title actor is? First, are you aware of HOW MANY peo… https://t.co/MEG0ZQVXO8" +05/29/2018,Actors,@MACKWILDS,It’s also sad how many people have now lost their job because of #Roseannebarr tweets. +05/29/2018,Actors,@MACKWILDS,@ShenaeCurry let’s not get disrespectful. +05/29/2018,Actors,@MACKWILDS,"if you know, you know. https://t.co/LaQKofxigm" +05/29/2018,Actors,@MACKWILDS,Don’t be mad when they don’t support you. Go get your bag! You’ll see them later +05/29/2018,Actors,@MACKWILDS,"Quick Thoughts: I Feel for CP3!, GSW in 5 😩, Lebron done as a Cav!, The West is going to be even better next year" +05/28/2018,Actors,@MACKWILDS,@BENBALLER I can’t see you not rooting for the Lakers. I get it!! But that’s almost like Spike not fucking with the… https://t.co/ZAvERUSsV9 +05/28/2018,Actors,@MACKWILDS,@BENBALLER Keep that same energy next year when he’s a Laker... +05/28/2018,Actors,@MACKWILDS,LET’S GO @cavs @KingJames #whateveritakes https://t.co/8kjrP3Zh45 +05/28/2018,Actors,@MACKWILDS,You gotta Applaud 8 straight finals!!! +05/27/2018,Actors,@MACKWILDS,RT @JAYVERSACE: the demon in the corner when you having sleep paralysis https://t.co/1YHqU25HF7 +05/26/2018,Actors,@MACKWILDS,@KrisKasanova where you at? i’m heading back to the city +05/25/2018,Actors,@MACKWILDS,RT @NBASTORE: You bet actor @MACKWILDS will be cheering on the @cavs down to the wire! https://t.co/elvGLIL3rp +05/25/2018,Actors,@MACKWILDS,Daytona 🔥🔥🔥 @PUSHA_T +05/23/2018,Actors,@MACKWILDS,The NFL just... fucked up. Imma just say it. For so many reasons this is going to backfire but not consulting the NFLPA was just stupid +05/23/2018,Actors,@MACKWILDS,@TheIvyRivera https://t.co/g5ntvXNVxj +05/23/2018,Actors,@MACKWILDS,It’s going to be so entertaining watching all the women on vacation this weekend via social media lol +05/22/2018,Actors,@MACKWILDS,"RT @YoStayHungry: Special thanks to our judges @mackwilds @lonelywhitehomie @korshawilson @itsaking, it was tough but #EverybodyEatsB so it…" +05/18/2018,Actors,@MACKWILDS,@plies IN HIS BAG RIGHT NOW!!! Dropping 🔥🔥🔥 +05/18/2018,Actors,@MACKWILDS,Don’t be scared of what you want +05/17/2018,Actors,@MACKWILDS,If she prays for you. She’s looking out for you on another level. Respect that! +05/17/2018,Actors,@MACKWILDS,@capricciousa Love y’all product!! Drink of the summer +05/17/2018,Actors,@MACKWILDS,RT @REESElaflare: 😢😢😢😢🙏🏾❤️ https://t.co/ekQQDJE4vm +05/16/2018,Actors,@MACKWILDS,Korver- Q chicken!!! +05/15/2018,Actors,@MACKWILDS,"RT @PresherToBeReal: Obsession- @MACKWILDS +#Yoga #Yogi #Therapy https://t.co/a6XFCzDQ0o" +05/15/2018,Actors,@MACKWILDS,MJ not playing with y’all!!!!!! He said I HOURS OF “y’all got me fucked up” in the vault +05/15/2018,Actors,@MACKWILDS,Draymond REALLLLLL PASSIONATE tonight huh +05/15/2018,Actors,@MACKWILDS,RT @GioVanniWatson_: Listen to Gramercy Feat Mack Wilds by GiovannI #np on #SoundCloud @MACKWILDS @GioVanniWatson_ https://t.co/9oljZlhMwU +05/14/2018,Actors,@MACKWILDS,A very underrated marketing strategy is Apple’s Blue text message idea. Changed the game. +05/13/2018,Actors,@MACKWILDS,"@MISSCNH i wore it to SohoHouse. trust, i’m baking these jawns." +05/13/2018,Actors,@MACKWILDS,No matter how busy you are today or things that happened in the past or where she is. REACH OUT to your Mother toda… https://t.co/oLLlEuPTIv +05/13/2018,Actors,@MACKWILDS,RT @KDJPerspective: Got a chance to watch and 📸 @MACKWILDS at #rnbhouseparty last night. https://t.co/DzE4kGT4Ub +05/12/2018,Actors,@MACKWILDS,"RT @BET: They said Bill Cosby got his degree ""repoed"", this is too much. ""I'll Apologize Later"" host @Mouse_Jones and his first guest @MACK…" +05/11/2018,Actors,@MACKWILDS,Outwork EVERYBODY! +05/11/2018,Actors,@MACKWILDS,@Calligrafist thanks broski. always love. +05/11/2018,Actors,@MACKWILDS,"RT @Calligrafist: S/o to The Homie @MACKWILDS, Early Tonight Showed Me How Good a Dude He is... | We Have These Unrealistic Expectations of…" +05/06/2018,Actors,@MACKWILDS,Y’all wasn’t even banging with homie during *Because of the Internet days lol +05/06/2018,Actors,@MACKWILDS,@RaeSremmurd 3 for 3!! When it comes to Albums!! +05/06/2018,Actors,@MACKWILDS,R&B +05/06/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: @MACKWILDS You are Built to Win and Equipped to Soar #JC3 https://t.co/AIEP5TVSqS +05/05/2018,Actors,@MACKWILDS,Why isn’t anyone talking about how fast Black Panther and Capt. America was running to go hand out Fades in Infinity War +05/04/2018,Actors,@MACKWILDS,You’re going to flourish this year and nobodies going to stop you +05/03/2018,Actors,@MACKWILDS,"@Mr516 @TheOgBlackMan @Mouse_Jones @FunnyJulius niggas don’t want Reek to thrive, man. 😂😭😂" +05/03/2018,Actors,@MACKWILDS,@Mouse_Jones 😂😭😂 +05/03/2018,Actors,@MACKWILDS,"@BigDee_SA ***”...make money for my fam, fans outta enemies.”" +05/03/2018,Actors,@MACKWILDS,@TamicoLee @TravisGreeneTV @VaShawnMitchell @NelsonJonathan @ToddDulaney happy birthday. +04/30/2018,Actors,@MACKWILDS,Thanos a visionary! Not a villain lol +04/29/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: God’s Not Finished with You - Just Watch #JC3 https://t.co/rBplcYECiD +04/27/2018,Actors,@MACKWILDS,SAQUON BARKLEY!!!!!! #giants great pick!!! +04/25/2018,Actors,@MACKWILDS,Hey... you can be a fan of someone’s art but not agree with their opinion. #bigfact +04/24/2018,Actors,@MACKWILDS,RT @ogbishop: When you get to direct the one film you needed to direct and the film gods bless you with @MACKWILDS and @ChaleyRose. https:/… +04/24/2018,Actors,@MACKWILDS,"RT @tvonetv: How do you heal a broken heart? TVOne’s new movie ‘Dinner For Two,’ starring @MACKWILDS and @ChaleyRose, tackles the complicat…" +04/24/2018,Actors,@MACKWILDS,(grins.) https://t.co/W5GFBbc5IX +04/21/2018,Actors,@MACKWILDS,i love this. https://t.co/bHsSuYyJ3W +04/20/2018,Actors,@MACKWILDS,“He’s going to restart the world” ... 🤯 +04/20/2018,Actors,@MACKWILDS,Get a goal. Get a plan. Get up off yo ass. +04/17/2018,Actors,@MACKWILDS,@YooQTheDj WHO SAID THAT?! +04/15/2018,Actors,@MACKWILDS,Send your girl $50 to apply for Beyonce University +04/13/2018,Actors,@MACKWILDS,@Chec_CashinChat yessssurrrrr. +04/13/2018,Actors,@MACKWILDS,I see you @Gail_BeAN #atlantafx +04/11/2018,Actors,@MACKWILDS,Being calm in a tough situation is a super power +04/10/2018,Actors,@MACKWILDS,This shit 🔥🔥 https://t.co/M7aHL0KOLW +04/09/2018,Actors,@MACKWILDS,Can I please get Bickenhead Ft. Project Pat @iamcardib +04/08/2018,Actors,@MACKWILDS,God is Good. +04/06/2018,Actors,@MACKWILDS,I have a project titled “Eem” dropping later this month but it’s not complete yet. I have a obligation to this char… https://t.co/q9uShhjZMu +04/06/2018,Actors,@MACKWILDS,Not at the moment. It’s a very expensive production for such a cult based genre. It’ll find another home if the dem… https://t.co/RfTv4hKFFP +04/06/2018,Actors,@MACKWILDS,Ain’t nobodies fault but mine that I only got 2 projects lol but imma work on that this year. That I can promise https://t.co/6E65T13gZu +04/05/2018,Actors,@MACKWILDS,Don’t make moves without praying on it first +04/04/2018,Actors,@MACKWILDS,Tired as fuck +04/02/2018,Actors,@MACKWILDS,The devil will tell you a lie in your own voice +04/01/2018,Actors,@MACKWILDS,@Poetik_Tanaya “Most Young Kings Get Thier Heads Cut Off” - Basquiat. +03/31/2018,Actors,@MACKWILDS,RT @taylortee17: Why I am I just now hearing @MACKWILDS After Hours Album?! Great piece of work....Mack is really an underrated R&B artist.… +03/29/2018,Actors,@MACKWILDS,#ReadyPlayerone was Phenomenal!!! Mad nostalgic!! Visually creative. A MUST SEE! +03/28/2018,Actors,@MACKWILDS,@RAVIEB https://t.co/5jVrHDsryK +03/28/2018,Actors,@MACKWILDS,@Slim_Sass happy birthday queen! +03/27/2018,Actors,@MACKWILDS,"The Giants better better get 2 1st Round picks, their 3rd Round pick, my name on the Hollywood walk of fame and The… https://t.co/mZWZv8tMIm" +03/27/2018,Actors,@MACKWILDS,Operating within my purpose +03/26/2018,Actors,@MACKWILDS,RT @Nikyatu: Why do (so many of you) insist on defining a Woman's value based on her ability to withstand your rott… https://t.co/HA0PxCHJTY +03/26/2018,Actors,@MACKWILDS,"Listen ladies,- it’s not about withstanding - relationship or mens BS. I just admire a woman who levels up and goes… https://t.co/vbQH22nlaF" +03/26/2018,Actors,@MACKWILDS,Mental note: words can’t be heard on a screen +03/26/2018,Actors,@MACKWILDS,I agree with @chancetherapper theory on brands using racism as a subplot or marketing strategy to get a reaction from consumers +03/25/2018,Actors,@MACKWILDS,When your girl call you after any little inconvenience in her life. You gotta learn to sit there and listen. She wo… https://t.co/zOyhIQQ7s5 +03/25/2018,Actors,@MACKWILDS,@johnboyega congrats fam!! +03/25/2018,Actors,@MACKWILDS,If god blocks it. Don’t stalk it. +03/24/2018,Actors,@MACKWILDS,Use these platforms to promote what you love instead of bashing what you hate. +03/24/2018,Actors,@MACKWILDS,You gotta be sick in the head to protest against kids being killed by guns +03/24/2018,Actors,@MACKWILDS,a +03/24/2018,Actors,@MACKWILDS,The way you move says a lot about you. +03/23/2018,Actors,@MACKWILDS,Y’all ever wonder if you are what someone is praying against? +03/22/2018,Actors,@MACKWILDS,"1. Civil War +2. The Avengers +3. Winter Soldier +4. Black Panther +5. Iron Man +6. Thor: Ragnarok +7. Ant Man +8. Guardia… https://t.co/pZg4bhiETf" +03/22/2018,Actors,@MACKWILDS,The thing about a really good woman is that she remains one even after all the bullshit +03/21/2018,Actors,@MACKWILDS,I had to take some losses just to value where I am in life +03/19/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: @MACKWILDS All you have done and been through was not in Vain! In these next 8 weeks God is about to Show Up in your L… +03/19/2018,Actors,@MACKWILDS,The best thing I ever did was believe in me +03/18/2018,Actors,@MACKWILDS,Hell no. https://t.co/ZE7Nc98htt +03/16/2018,Actors,@MACKWILDS,That trailer ain’t hit... but I’m still excited to see the movie +03/16/2018,Actors,@MACKWILDS,#atlantafx is so culturally accurate +03/15/2018,Actors,@MACKWILDS,ENJOY -your- YOUTH. +03/14/2018,Actors,@MACKWILDS,A great future doesn’t require a great past +03/14/2018,Actors,@MACKWILDS,RT @kicksforsoles: We got some heat on the way.. @MACKWILDS #95 🔥🔥🔥 +03/14/2018,Actors,@MACKWILDS,"@kodaklens fuck these niggas Len!!! we can do whatever we want!!!! TOP DOWN IN THE WINTER, THATS WHAT WINNERS DO!!!!" +03/14/2018,Actors,@MACKWILDS,I can’t have beautiful dark brown eyes?? lol https://t.co/fq0Sj5ySaK +03/13/2018,Actors,@MACKWILDS,HOW DOES SAM BRADFORD KEEP GETTING PAID!!!! How???!!! +03/13/2018,Actors,@MACKWILDS,"Many will want you, few will invest in you" +03/13/2018,Actors,@MACKWILDS,"RT @Diddy: If it ain't... + +Making me money, making me better or making me happy... + +I ain't making time for it." +03/13/2018,Actors,@MACKWILDS,@Wale Just dropped some FIRE!!! #itscomplicatedep +03/12/2018,Actors,@MACKWILDS,i don't understand why dudes think loving a chick is wack. like who do u expect to hold u down forever? +03/12/2018,Actors,@MACKWILDS,@Mouse_Jones whaaaaaaaaaaa?! +03/12/2018,Actors,@MACKWILDS,Yes https://t.co/sFMHWUemwu +03/11/2018,Actors,@MACKWILDS,Get ya paper up... That’s the best revenge! +03/10/2018,Actors,@MACKWILDS,Never be mad at yourself for evolving past someone else’s comfort zone +03/10/2018,Actors,@MACKWILDS,@_cierarogers https://t.co/b0NHqcIvh8 +03/10/2018,Actors,@MACKWILDS,@RAVIEB https://t.co/VqvwS483iZ +03/09/2018,Actors,@MACKWILDS,What got into the The Browns organization lol +03/09/2018,Actors,@MACKWILDS,RT @JakeElman: Ten years since the greatest show in TV history ended. #TheWire is a damn masterpiece. Especially Season 4. https://t.co/MTU… +03/09/2018,Actors,@MACKWILDS,The Wire is #1 ... Period. +03/09/2018,Actors,@MACKWILDS,RT @Sir_Hurizzel: Anime has been the shit. Niggas just getting on it now because some celebs mentioned it https://t.co/wbeR0sHIYu +03/07/2018,Actors,@MACKWILDS,"RT @ScottieBeam: Protect @Royceda59 at all cost. + +https://t.co/QBBPx95BLP" +03/07/2018,Actors,@MACKWILDS,People be in secret competitions with you and still be losing. +03/07/2018,Actors,@MACKWILDS,RT @KarenCivil: Some @CrustaceanBH photobooth fun w/ @MACKWILDS. https://t.co/C9p4EZROcU +03/07/2018,Actors,@MACKWILDS,RT @PrettyNay21: @MACKWILDS wait..😲🤤😏 #HeyBigHead Lol jk but just saw this on ig.. caught me off guard https://t.co/x8uYcT0VhO +03/06/2018,Actors,@MACKWILDS,RT @OfficialYonni: #Yonni x @mackwilds 👀 s/o @natalieprospere Alley Oop! https://t.co/2m5TNHJo4B +03/06/2018,Actors,@MACKWILDS,Imagine a Presidential term so crazy that when Hollywood writes the script for it... none of it is exaggerated. +03/06/2018,Actors,@MACKWILDS,🤫🤫 https://t.co/gmtj7k6qqe +03/05/2018,Actors,@MACKWILDS,"25 looks good on you, mama. https://t.co/ctnysmdnzS" +03/04/2018,Actors,@MACKWILDS,@xoBritishBeauty i’m glad you fuckin’ w/ it. for real. +03/04/2018,Actors,@MACKWILDS,@geniqueeee hi. +03/04/2018,Actors,@MACKWILDS,Listen to your intuition when you out here grinding. Trust me. +03/04/2018,Actors,@MACKWILDS,Give it a listen when you can. Let me know your thoughts https://t.co/Wza5lykW0Y +03/04/2018,Actors,@MACKWILDS,RT @PapBrady: 2 MORE LIST ON @amazon #1 ON THE LIST FOR DIGITAL ART! GOD IS GOOD 🙏🏻 @MISSCNH #DoItForGram https://t.co/0Athwt4Kyo https://t… +03/03/2018,Actors,@MACKWILDS,https://t.co/kFjW0QM9G1 +03/02/2018,Actors,@MACKWILDS,Your flaws are perfect for who is meant to love you +03/02/2018,Actors,@MACKWILDS,RT @ComptonUnified: @ #emersonelementary @Yoobigives pajama jam #readacrosscompton day kicks off with special guest @MACKWILDS https://t.co… +03/02/2018,Actors,@MACKWILDS,RT @TheREALRIKISHI: #TBT Also good to see my uce @jawnmurray and pleasure to meet uce @mackwilds @theaafca awards 🤙🏾… https://t.co/MPd5GxLd… +03/02/2018,Actors,@MACKWILDS,Thanks Fam. I won’t disappoint https://t.co/AVq93Nrfmg +03/02/2018,Actors,@MACKWILDS,RT @BET: RT if you're watching the all-new episode of #MancaveBET! We got @MACKWILDS! Let's gooooo! https://t.co/7rhkOTCs0z +03/02/2018,Actors,@MACKWILDS,"RT @Jeffsnation: Tonight, Mancave is back and we’ve got @MACKWILDS stopping through to chop it up over a few confessions and his crazy grin…" +03/02/2018,Actors,@MACKWILDS,RT @BET: .@MACKWILDS took it ALL the way back for #TBT with this baby photo! 😂 Find out who else got their picture exposed TONIGHT in an al… +03/01/2018,Actors,@MACKWILDS,RT @BET: .@MackWilds is entering the Mancave! Make sure you catch him on TONIGHT's episode of #MancaveBET - 10:30/9:30c! https://t.co/b0WYR… +03/01/2018,Actors,@MACKWILDS,RT @TheRealTank: My bro bro @mackwilds will be in the #mancave #mancavebet tomorrow night! Tune in to bet at… https://t.co/zPGfktiMfq +02/27/2018,Actors,@MACKWILDS,Turn your passion into a career +02/27/2018,Actors,@MACKWILDS,RT @LilRel4: When the homies link up it’s nothing but laughs and good times @mackwilds #GreatTimes photo… https://t.co/5IYkL4tQgr +02/26/2018,Actors,@MACKWILDS,No regrets. Just lessons learned +02/24/2018,Actors,@MACKWILDS,I’m tripping. DEATH NOTE* delete Cowboy Bebop. Attack on Titan is dope but gets mad racist towards the end. *keep w… https://t.co/P3KlGxDJ2a +02/24/2018,Actors,@MACKWILDS,"1. Full Alchemist: Brotherhood +2. Naruto +3. Attack on Titan +4. Cowboy Bebop +5. DB Super +Making their way: seven… https://t.co/uiepUPMaKB" +02/24/2018,Actors,@MACKWILDS,"RT @VanLathan: This song is ridiculously good. #NowPlaying ""Choose"" by @MACKWILDS Wilds on @TIDAL https://t.co/xfaDmd4FWQ" +02/23/2018,Actors,@MACKWILDS,Give it your ALL and call it a day +02/21/2018,Actors,@MACKWILDS,"@_cierarogers eh, just a litttttle to your left." +02/20/2018,Actors,@MACKWILDS,I wouldn’t mind but the last chapter was written and that book has been shelved. By all means go back and re visit… https://t.co/f6P4BS6KHm +02/17/2018,Actors,@MACKWILDS,"RT @SummerStage: @MACKWILDS at #SummerStage in #CloveLakesPark, #StatenIsland. + +#BlackHistoryMonth https://t.co/pzrbM7yeR9" +02/17/2018,Actors,@MACKWILDS,The party continues with an exclusive Card Member @kendricklamar concert thanks to @AmericanExpress! #AmexNBA… https://t.co/SpBKyl4I0b +02/16/2018,Actors,@MACKWILDS,Going hard in the paint at the @AmericanExpress Experience. #AmexNBA #AmexAmbassador https://t.co/qTmqeqv1GI +02/13/2018,Actors,@MACKWILDS,Thx luv https://t.co/UWfhPN9RLY +02/12/2018,Actors,@MACKWILDS,If you’re coming to LA for All Star Weekend. Respect the Culture and BE HUMBLE. Then you’ll have a great weekend! A… https://t.co/NS8DrScf0y +02/12/2018,Actors,@MACKWILDS,@ThatDancer (shakes head.) +02/11/2018,Actors,@MACKWILDS,“Good Man” 🔥🔥 @NeYoCompound @HEYDJCAMPER +02/08/2018,Actors,@MACKWILDS,My silly ass studying acting & music theory when athletes out here making 137 Milly for going 7-0 https://t.co/hKdHIKCD6p +02/08/2018,Actors,@MACKWILDS,Tyron Lue here on out... https://t.co/0hypmKl55K +02/08/2018,Actors,@MACKWILDS,i really wish Quincy Jones played for the Cavs this season +02/07/2018,Actors,@MACKWILDS,Hope you nothing but success Fam https://t.co/Ds2LqT0L5k +02/07/2018,Actors,@MACKWILDS,"What a interview. Man, I️ wish we had more of these. Genuinely enjoyed that shit. Thought provoking and f**king hilarious" +02/07/2018,Actors,@MACKWILDS,QUINCY JONES!!!!!!!!!!!! https://t.co/1dElQvORbC +02/07/2018,Actors,@MACKWILDS,These vibes.. this peace... this happiness... can’t be fucked with 🙏🏾 +02/07/2018,Actors,@MACKWILDS,Strongly agree https://t.co/zPbE45oNKT +06/20/2018,Actors,@EmilyVanCamp,"RT @JoyAnnReid: Rachel, my friend and brilliant colleague, tonight you channeled the emotion and devastation every single person with a hea…" +06/19/2018,Actors,@EmilyVanCamp,"RT @chrislhayes: BREAKING: @RepJayapal just announced on @allinwithchris a nationwide mobilization against family separation on JUNE 30TH,…" +06/19/2018,Actors,@EmilyVanCamp,https://t.co/eTZthRc3rK +06/19/2018,Actors,@EmilyVanCamp,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +05/31/2018,Actors,@EmilyVanCamp,"RT @sally_field: I like Samantha Bee a lot, but she is flat wrong to call Ivanka a cunt. + +Cunts are powerful, beautiful, nurturing and hon…" +05/08/2018,Actors,@EmilyVanCamp,Such a great performance by the lovely @juliannaguill my gorgeous on screen sis 🙌🏼 Also directed by our fave… https://t.co/evFIwpBC86 +05/07/2018,Actors,@EmilyVanCamp,Yes👇🏼 https://t.co/nShn0ftpr7 +04/28/2018,Actors,@EmilyVanCamp,"RT @soledadobrien: Then maybe before you use your massive platform to support racists and bigots, read a book or google some stuff. (Start…" +04/28/2018,Actors,@EmilyVanCamp,I ❤️ U @alisongreenberg .. Just happy to be a beard or a mustache or a goatie in the MCU 😂😂😂 https://t.co/Q9j3BdAHPz +04/26/2018,Actors,@EmilyVanCamp,This is absolutely outrageous and horrible. So awful to be in a vulnerable space offering yourself to an audience w… https://t.co/u1XMDJHiOr +04/20/2018,Actors,@EmilyVanCamp,"RT @latelateshow: Stop whatever you're doing because the #LateLateShow with @BusyPhilipps, @EmilyVanCamp and @EugenioDerbez starts in 5 min…" +04/09/2018,Actors,@EmilyVanCamp,See you there! https://t.co/FFb7okCoE1 +03/26/2018,Actors,@EmilyVanCamp,Same! https://t.co/p2k1f25VKU +03/10/2018,Actors,@EmilyVanCamp,Brilliant album. One of my favorites ✨ The Miracle of Van Morrison’s “Astral Weeks” https://t.co/LiReAmADNz +02/25/2018,Actors,@EmilyVanCamp,"RT @cmclymer: Sooo... CNN released poll data a few hours ago that is pretty damn remarkable, and it's worth noting the highlights. + +First:…" +02/25/2018,Actors,@EmilyVanCamp,Amazing! 🙌🏼 https://t.co/T04hX5uqgg +02/24/2018,Actors,@EmilyVanCamp,"RT @rob_bennett: How quickly can we get @Emma4Change to surpass the @NRA in follower count? + +She’s 36,000 followers away. It’s 1PM. + +Let’…" +02/24/2018,Actors,@EmilyVanCamp,Remember This Week: It’s the Beginning of the End of the NRA’s Reign of Terror https://t.co/UDzhjdTJ7s +02/24/2018,Actors,@EmilyVanCamp,"RT @HeadCountOrg: After the shooting in #Parkland, FL, high school students around #America are getting organized and politically active. H…" +02/24/2018,Actors,@EmilyVanCamp,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/24/2018,Actors,@EmilyVanCamp,"Teachers are trained to TEACH, nurture their students, develop the minds of our future, create a safe environment o… https://t.co/O87Wy7puXj" +02/24/2018,Actors,@EmilyVanCamp,RT @BeauWillimon: Now @Emma4Change has passed the 400K mark. Another 60K in less than 24hrs. She’s on track to overtake the @NRA by the end… +02/09/2018,Actors,@EmilyVanCamp,RT @SethMacFarlane: The Trump legacy. https://t.co/VuJ690S0ug +02/08/2018,Actors,@EmilyVanCamp,Truly incredible to have been a part of this 🙏🏻 https://t.co/bvGLel1M8f +02/06/2018,Actors,@EmilyVanCamp,"RT @ArielleKebbel: 🚨 ALERT 🚨 Updated flyer w/ new contact numbers to call if you know anything about my sister Julia. Pls read, repost prin…" +02/06/2018,Actors,@EmilyVanCamp,RT @ArielleKebbel: 🚨 ALERT 🚨 My SiSTER Julia Kebbel is MISSING. Her Instagram and Twitter is @jkebbz pls go there to see more pictures of h… +01/22/2018,Actors,@EmilyVanCamp,I❤️U https://t.co/0vgnvsjAH5 +01/22/2018,Actors,@EmilyVanCamp,About to watch #TheResident with these beautiful people ✨ Truly a pleasure working with this group. Check it out on… https://t.co/NW8cSZTZAd +01/19/2018,Actors,@EmilyVanCamp,#TheResident https://t.co/hOp6ysetvV +01/18/2018,Actors,@EmilyVanCamp,#TheResident https://t.co/Euold06jTB +01/13/2018,Actors,@EmilyVanCamp,"RT @ResidentFOX: Never underestimate Nurse Nic Nevin. @EmilyVanCamp stars in #TheResident, premiering January 21. https://t.co/8ksM3T5OLE" +01/12/2018,Actors,@EmilyVanCamp,"RT @andersoncooper: A statement about #Haiti, a country I love and admire. I wanted to share it with you tonight, on the eve of the 8th ann…" +12/30/2017,Actors,@EmilyVanCamp,Help my buddy @joshadley in his initiative to distribute essential supplies to shelters and rough sleepers around t… https://t.co/3AEvbc60vZ +12/26/2017,Actors,@EmilyVanCamp,RT @DalaiLama: Karma means action and action motivated by compassion is good. To complain that what happens to you is just the result of yo… +12/15/2017,Actors,@EmilyVanCamp,"Let’s make it happen @Katysloane ! Every little bit counts. Please help in any way you can. Share, Retweet, Donate… https://t.co/JTTyFEgmZh" +12/14/2017,Actors,@EmilyVanCamp,New trailer for #TheResident January 21st on FOX https://t.co/FtqtYFkITM +12/08/2017,Actors,@EmilyVanCamp,#TheResident starts January 21st on FOX 💉 https://t.co/Yur6yvZk9I +12/02/2017,Actors,@EmilyVanCamp,"RT @MMFlint: 62 years ago today, Rosa Parks was arrested for refusing to move to the back of the bus & a revolution was ignited. Someday we…" +11/27/2017,Actors,@EmilyVanCamp,My scene partners for the week. I’ll take them all please. Thanks. ❤️ https://t.co/I4qKbsukGO +11/20/2017,Actors,@EmilyVanCamp,"RT @DalaiLama: We can change our minds. We don’t have to give in to anger and hatred. Since compassion and anger cannot co-exist, the more…" +10/28/2017,Actors,@EmilyVanCamp,Happy 6 years to my favorite human. Time really does fly when you're having fun 💕💕💕 https://t.co/Lia2kK8bt0 +10/15/2017,Actors,@EmilyVanCamp,Opinion | Sarah Polley: The Men You Meet Making Movies https://t.co/jUwe8NELgJ +10/09/2017,Actors,@EmilyVanCamp,"RT @NPRinskeep: Not “what we have done.” Not “what our military has done.” Not “what FEMA and first responders have done.” Instead, “what I…" +10/06/2017,Actors,@EmilyVanCamp,RT @Gabriel_Mann: After #LasVegas can someone pls explain the need for this anywhere..at anytime..for what purpose..to what end? https://t… +10/03/2017,Actors,@EmilyVanCamp,This. https://t.co/0uVdKXTLK8 +09/30/2017,Actors,@EmilyVanCamp,"RT @Lin_Manuel: You're going straight to hell, @realDonaldTrump. +No long lines for you. +Someone will say, ""Right this way, sir."" +They'll…" +09/30/2017,Actors,@EmilyVanCamp,"RT @ShaunKing: This is one of the most horrible, racist, despicable things Trump has ever said. + +That Puerto Ricans ""want everything to be…" +09/30/2017,Actors,@EmilyVanCamp,"RT @GeorgeTakei: In crisis, our true characters are revealed. + +Donald has shown his true self: narcissistic, petty, lacking in empathy, and…" +09/25/2017,Actors,@EmilyVanCamp,"RT @NYCMayorsOffice: We are accepting donations for: +🔘 Diapers +🔘 Baby food +🔘 Batteries +🔘 First aid supplies +🔘 Feminine hygiene products htt…" +09/25/2017,Actors,@EmilyVanCamp,Senate “hearing” on #GrahamCassidy today—call your Senators & make sure they HEAR you! #StandWithPP https://t.co/Jqv9YvqZtC #DoNoHarm +09/25/2017,Actors,@EmilyVanCamp,RT @wkamaubell: Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto… +09/25/2017,Actors,@EmilyVanCamp,"RT @NYGovCuomo: Stop arguing with football players + +Stop trying to take health care from the poor + +#PuertoRico needs our help https://t.co/…" +09/25/2017,Actors,@EmilyVanCamp,"RT @robreiner: With a non-existent POTUS, thank God we have an engaged citizenry who are willing to stand up or kneel to protect our democr…" +09/21/2017,Actors,@EmilyVanCamp,"RT @ASlavitt: The ultimate question on Graham-Cassidy. + +Feel free to share if it helps people. https://t.co/WS7Glwj5sw" +09/21/2017,Actors,@EmilyVanCamp,RT @jimmykimmel: If you too are disappointed in Sen @BillCassidy #GrahamCassidy let them know it - call (202) 224-3121 https://t.co/eswlh6B… +09/18/2017,Actors,@EmilyVanCamp,"RT @SenWarren: Let me repeat: The Graham-Cassidy @SenateGOP ""health care"" bill IS Trumpcare, & it will rip health care away from millions o…" +09/18/2017,Actors,@EmilyVanCamp,"RT @KamalaHarris: Just a reminder that this is the “health care” bill Republicans are trying to push through. We saved the ACA once, let’s…" +09/17/2017,Actors,@EmilyVanCamp,"RT @BeauWillimon: Today, on a Sunday, on #ConstitutionDay, @realDonaldTrump RTs this violent gif by a guy whose handle reads ""Fucked up min…" +09/16/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: Tomorrow: #ConfrontWhiteSupremacy will stand against the biggest alt-right gathering since Cville. In D.C. Info here http… +09/13/2017,Actors,@EmilyVanCamp,"RT @PreetBharara: A: Prosecute Comey, pardon Arpaio, excuse neo-Nazis, deport Dreamers, encourage Erdogan, laud Duterte, pet Putin. + +Q: Wh…" +09/10/2017,Actors,@EmilyVanCamp,"RT @michaelianblack: As a massive hurricane bears down on us, please remember that one American political party literally does not believe…" +09/08/2017,Actors,@EmilyVanCamp,RT @BarackObama: Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/06/2017,Actors,@EmilyVanCamp,RT @votevets: Thousands of patriotic #Dreamers who served our nation in uniform are at risk of deportation due to @realDonaldTrump's cruel… +09/05/2017,Actors,@EmilyVanCamp,RT @SenSanders: America is strongest when we come together and reject xenophobia. Congress must permanently protect Dreamers and reject Tru… +09/05/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: The fate of 800K #Dreamers & future of the nation we choose to be are at stake. Do your part to #DefendDACA today. Call.… +09/02/2017,Actors,@EmilyVanCamp,Unreal. A dedicated and honorable nurse simply trying to do her job is attacked and abused for it. This idiot bette… https://t.co/7h5sFO5mDU +08/31/2017,Actors,@EmilyVanCamp,And so it begins! ✨ https://t.co/hQJ7UkPnYi +08/29/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: NEW: Tweets about a wall while Houston drowns, pardons Arpaio. Trump's true racism: ""Make America WHITE Again"" https://…" +08/27/2017,Actors,@EmilyVanCamp,"RT @rob_bennett: The March To Confront White Supremacy: Charlottesville to D.C. + +Starts Monday and arrives in D.C.9/6. + +#Cville2DC +@cville…" +08/27/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: CHARLOTTESVILLE to D.C. March starts Mon. Help spread the word. Use #Cville2DC. Tweet & RT to trend this. Be loud. https:… +08/26/2017,Actors,@EmilyVanCamp,RT @brianefallon: Trump has pardoned Arpaio right as he threatens to deport law-abiding young Dreamers who represent the best of America. S… +08/26/2017,Actors,@EmilyVanCamp,WHEN DOES IT STOP??? #CowardInChief https://t.co/qh0OgqHBTt +08/25/2017,Actors,@EmilyVanCamp,RT @PiperPerabo: #DenierInChief Hurricane Harvey is proof that Trump administration denial of climate change puts people in danger. #Denier… +08/25/2017,Actors,@EmilyVanCamp,RT @Alyssa_Milano: Anyone else have a story like this they'd like to share? Use the hashtag #DenierInChief https://t.co/mIIDPh1emy +08/25/2017,Actors,@EmilyVanCamp,Amazing news! Can't wait to work with you Melina✨✨ https://t.co/ipuE1fEmPQ +08/19/2017,Actors,@EmilyVanCamp,A cowardly and immoral group indeed. Shameful. https://t.co/z2ER4yRH6g +08/19/2017,Actors,@EmilyVanCamp,Meet Frankie B. our sweet little rescue pup who has stolen our hearts! Thanks @wagsandwalks for… https://t.co/Sx7e6deZ5k +08/18/2017,Actors,@EmilyVanCamp,Bye Bye Bannon ❌ https://t.co/ZYJ4rSYw0A +08/17/2017,Actors,@EmilyVanCamp,"RT @RepAdamSchiff: Mr. President, it's not the removal of statutes that's tearing the country apart, but the divisive way you lead and WH t…" +08/16/2017,Actors,@EmilyVanCamp,RT @AnneFrankCenter: TODAY IS A MORAL TEST. Who in Congress will say enough? Who will quit @POTUS councils? Who will have the courage to… +08/13/2017,Actors,@EmilyVanCamp,"RT @BarackObama: ""...For love comes more naturally to the human heart than its opposite."" - Nelson Mandela" +08/13/2017,Actors,@EmilyVanCamp,"RT @BarackObama: ""People must learn to hate, and if they can learn to hate, they can be taught to love...""" +08/12/2017,Actors,@EmilyVanCamp,RT @jk_rowling: Hell of a day for the President to forget how to tweet. https://t.co/ABffmwwH8D +08/12/2017,Actors,@EmilyVanCamp,"RT @JohnDingell: I signed up to fight Nazis 73 years ago and I'll do it again if I have to. + +Hatred, bigotry, & fascism should have no plac…" +08/12/2017,Actors,@EmilyVanCamp,RT @franklinleonard: White supremacist terrorist plows vehicle into American citizens. https://t.co/7srr32Gv1o +08/12/2017,Actors,@EmilyVanCamp,RT @SenSanders: The white nationalist demonstration in #Charlottesville is a reprehensible display of racism and hatred that has no place i… +08/05/2017,Actors,@EmilyVanCamp,Love this and miss you more @Gabriel_Mann !!! ❤️❤️❤️ https://t.co/0G9LdQI3QU +08/03/2017,Actors,@EmilyVanCamp,Amazing news @smashleybell 👏🏼👏🏼👏🏼 Congrats! ❤️ https://t.co/HwsUiutgeI +08/03/2017,Actors,@EmilyVanCamp,RT @gregorythesmith: We had a family reunion today. It was so nice seeing everyone. Thanks for brining us together @GBerlanti @RinaMimoun @… +08/02/2017,Actors,@EmilyVanCamp,Insane right? Hope you are well David!! Xoxo https://t.co/SgXWCR0x2r +08/02/2017,Actors,@EmilyVanCamp,So beautiful to reunite with @GBerlanti @RinaMimoun and the incredible cast of Everwood ❤️So much love for these gu… https://t.co/MmZLI8nX9k +08/01/2017,Actors,@EmilyVanCamp,Yes Gabe!! So excited to watch ❤️❤️❤️ https://t.co/qDlrLiEhXx +07/29/2017,Actors,@EmilyVanCamp,I’m wearing this #MyIntent bracelet for the #3890 tigers that desperately need our protection.… https://t.co/vrr5mtqsjl +07/28/2017,Actors,@EmilyVanCamp,"Help @TigerBeerUS & me protect the last 3,890 wild tigers by donating to @World_Wildlife https://t.co/NOGXH9wujA –… https://t.co/RUbdBvEerL" +07/22/2017,Actors,@EmilyVanCamp,Auntie Em and Ivy time 💜💜💜 Love hanging with this sweet girl #auntielove https://t.co/DXnhTutgzv +07/19/2017,Actors,@EmilyVanCamp,RT @JoyAnnReid: Says the man who locked every Democrat and all but 13 Republicans out of the room while plotting to delete 22 million peopl… +07/15/2017,Actors,@EmilyVanCamp,The original 6 💕 https://t.co/GmiKDgEzo6 +07/11/2017,Actors,@EmilyVanCamp,tylerhenrymedium has a true gift. So honored to have had the experience of reading with him on… https://t.co/PnqkjtH2HB +06/24/2017,Actors,@EmilyVanCamp,"RT @BarrySloane: Please read this thread. It's a hard read, read it regardless if you're Republican or Democrat because this #HealthcareBil…" +06/23/2017,Actors,@EmilyVanCamp,RT @BarackObama: Health care has always been about something bigger than politics: it's about the character of our country. https://t.co/Uq… +06/22/2017,Actors,@EmilyVanCamp,"URGENT:📣 Senate released #Trumpcare bill that ""defunds"" @PPFA. TWEET YOUR SENATORS NOW & tell them to #StandwithPP https://t.co/Ic4wkqSsW4" +06/20/2017,Actors,@EmilyVanCamp,"RT @SamuelLJackson: Ga Voters, get out there & VOTE OSSOFF!! The Future is now, make a Change!! You're our First Step on the Road to Recove…" +06/18/2017,Actors,@EmilyVanCamp,Happy Father's Day to the coolest dad around! Thanks for always putting us first and teaching us… https://t.co/h6Nhh4jvh8 +06/14/2017,Actors,@EmilyVanCamp,"RT @votevets: The Commander in Chief can block @VoteVets, the voice of 500k military veterans and families, but we will NOT be silenced. ht…" +06/13/2017,Actors,@EmilyVanCamp,Yup. https://t.co/ZTm3fgOgJh +06/02/2017,Actors,@EmilyVanCamp,https://t.co/THjkXCycza +06/02/2017,Actors,@EmilyVanCamp,https://t.co/ttCp5OWyko +05/25/2017,Actors,@EmilyVanCamp,"RT @jk_rowling: You tiny, tiny, tiny little man. + https://t.co/mP3mad6cMt" +05/25/2017,Actors,@EmilyVanCamp,RT @SenWarren: Breaking news: @realDonaldTrump's illegal & unconstitutional Muslim ban is still illegal & unconstitutional. +05/23/2017,Actors,@EmilyVanCamp,Beyond saddened by this horrible attack in Manchester. Sending all my love to the victims and their families. Truly heartbreaking.. +05/18/2017,Actors,@EmilyVanCamp,Me and my sis Ali riding in style..Those outfits though!! 😳 #tbt #80s #backintheday https://t.co/Dt3zYtYLei +05/18/2017,Actors,@EmilyVanCamp,Now is more important than ever to #StandWithPP. Thank you @JOSS Whedon for joining the fight. Please watch → https://t.co/djDAOCAjLi +05/17/2017,Actors,@EmilyVanCamp,Yes @MMFlint !!! https://t.co/AMITEet1nH +05/16/2017,Actors,@EmilyVanCamp,"RT @igorvolsky: One. Just one. + +Such cowards. https://t.co/O3foGbvsea" +05/16/2017,Actors,@EmilyVanCamp,RT @21CF: Cast members of @ResidentFOX attend the 2017 #FoxUpfront party in New York City last night: https://t.co/XIe8NkYk1n +05/16/2017,Actors,@EmilyVanCamp,"RT @ResidentFOX: We’re giving you a dose of drama. FOX’s new series, #TheResident, is coming soon. #FOXUpfront https://t.co/mGFW0txNT1" +05/15/2017,Actors,@EmilyVanCamp,On her wedding day in 1979 💛So lucky to call this amazing woman mom. Happy Mother's Day!! ✨✨✨ https://t.co/akErV4ZiBV +05/15/2017,Actors,@EmilyVanCamp,Happiest of birthdays to this beautiful soul! @gabriel_mann I adore you!!! Wishing you all good… https://t.co/qkfiOQG0un +05/14/2017,Actors,@EmilyVanCamp,Good times with @BarrySloane @Gabriel_Mann @smashleybell #ConnorPaulo #JoshBowman Best bday reunion ever ❤️#revenge… https://t.co/48xFuLGk3V +05/14/2017,Actors,@EmilyVanCamp,Love you babes!! 😘😘 https://t.co/0BeVePLx1n +05/11/2017,Actors,@EmilyVanCamp,❤️ https://t.co/8lzohgxJSq +05/10/2017,Actors,@EmilyVanCamp,Thanks Ali!!!! Cannot wait to be in the same city again!!! Love you ❤️ https://t.co/AyhyHhSH2T +05/10/2017,Actors,@EmilyVanCamp,And we're off!!! 👏🏼👏🏼👏🏼 Matt Czuchry-Emily VanCamp Drama The Resident Ordered to Series at Fox https://t.co/4uV9TuA9fZ via @TVLine +05/09/2017,Actors,@EmilyVanCamp,"My happy place 🌊🌼🌿 #grateful #nofilterneeded #bigsur @ Big Sur, California https://t.co/w6RtHUzGDA" +05/08/2017,Actors,@EmilyVanCamp,Well said @DebraMessing 👏🏼👏🏼Debra Messing goes after Ivanka Trump in scathing acceptance speech https://t.co/a3Qsd1h5TE # via @huffpostqueer +05/02/2017,Actors,@EmilyVanCamp,"RT @CecileRichards: Health care should be a right, not a privilege. TY @jimmykimmel for sharing your story so folks understand. https://t.c…" +05/02/2017,Actors,@EmilyVanCamp,RT @jimmykimmel: My wife and I welcome a new baby and it is quite a story... https://t.co/VTT0oBsRFK +05/02/2017,Actors,@EmilyVanCamp,#GregBaldwin so proud!! 😘😘 https://t.co/BfRi1ALCWI +04/21/2017,Actors,@EmilyVanCamp,glsenofficial Day of Silence is the largest student-led national event in protest of anti-LGBTQ… https://t.co/ohUZs6hGLY +04/19/2017,Actors,@EmilyVanCamp,Yes Ali!! I ❤U #flipthesixth https://t.co/rzUDgX5KG3 +04/18/2017,Actors,@EmilyVanCamp,RT @elizabethforma: .@realDonaldTrump & the GOP are in a panic that GA could pick a Rep who fights for working people – not the rich & powe… +04/18/2017,Actors,@EmilyVanCamp,"RT @PPact: Like many Americans, Courtney relies on Planned Parenthood for lifesaving health care. https://t.co/2L6VsBlRi2 #CancerSurvivors4…" +04/16/2017,Actors,@EmilyVanCamp,"RT @ACLU: Not sure your point, but just a reminder that there is a constitutional right to protest. https://t.co/u0PR60vd13" +04/14/2017,Actors,@EmilyVanCamp,US may launch strike if North Korea moves to test nuclear weapon: report https://t.co/OYMhMoeybn +04/14/2017,Actors,@EmilyVanCamp,"RT @Nick_Wechsler: Hey, @realDonaldTrump, @POTUS, please stop tweeting crazy shit about North Korea. You are, without hyperbole, going to s…" +04/14/2017,Actors,@EmilyVanCamp,What a horrible human. https://t.co/uzyW8kJ23e +04/12/2017,Actors,@EmilyVanCamp,California Dreamin' 🌊 https://t.co/9S0H5G4jUk +04/09/2017,Actors,@EmilyVanCamp,Sisters night out! Missing you @katewynne ❤❤❤ https://t.co/wmInEUj2jR +04/07/2017,Actors,@EmilyVanCamp,This beautiful crisp air is doing my soul some good! #springiscoming #hometown #famtime❤️ https://t.co/COI5pGopB7 +04/07/2017,Actors,@EmilyVanCamp,Snow day ❄️❄️❄️ https://t.co/AFrIQ7oj9D +03/17/2017,Actors,@EmilyVanCamp,Excited about this one!! --Emily VanCamp To Star In ‘The Resident’ Fox Medical Drama Pilot https://t.co/iObKWMnpuM via @deadline +03/10/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: NEW: Anybody remember what Trump did 9 days ago? He gave that ""presidential"" speech. That bullshit didn't age well http…" +03/09/2017,Actors,@EmilyVanCamp,Love this!! You still look the same! Great pic 😘❤@mabelbow1 https://t.co/oP0S0z8i7y +03/09/2017,Actors,@EmilyVanCamp,"The four women who are always there, who teach me strength and love everyday. Grateful for my… https://t.co/yrP0o2kp5x" +03/06/2017,Actors,@EmilyVanCamp,Quality time watching timeaftertimeabc with this crew ❤ #gowatch #famtime #timeaftertime https://t.co/RzLzjsYvf5 +03/05/2017,Actors,@EmilyVanCamp,Don't forget to check out #joshbowman and #freddiestroma on timeaftertimeabc at 9pm on ABC… https://t.co/sxHYpOkt23 +03/05/2017,Actors,@EmilyVanCamp,Beautiful day celebrating my favorite human. Happy Birthday to my love ❤ #deervalleyresort… https://t.co/zTJRgul6nA +02/25/2017,Actors,@EmilyVanCamp,Always lovely hanging with these guys! ❤ Still laughing @katysloane and @BarrySloane 😂😂 https://t.co/ofwHWey37d +02/21/2017,Actors,@EmilyVanCamp,https://t.co/xz7hC08FSN +02/21/2017,Actors,@EmilyVanCamp,RT @JuddApatow: And never forget this. This was how he spoke to someone he didn't know. Can you imagine how he speaks to friends. Does he… +02/21/2017,Actors,@EmilyVanCamp,Wise words..(though secretly I found myself waiting for the big reveal that @BarackObama is still president. And I… https://t.co/So0k8DKDP0 +02/19/2017,Actors,@EmilyVanCamp,"RT @ava: So, we shouldn't trust the press. And he wants to talk to Americans directly. Gotcha. Let's listen to his own words. https://t.co/…" +02/18/2017,Actors,@EmilyVanCamp,RT @TIME: TIME’s new cover: Inside Donald Trump's White House chaos https://t.co/hctIFEcOSG https://t.co/1hSQNrY6JQ +02/18/2017,Actors,@EmilyVanCamp,Miss you Tolga!! So much love to you ❤😘❤ https://t.co/wVEfL7ZpXa +02/16/2017,Actors,@EmilyVanCamp,"RT @ava: This needs to happen on EVERY lie. It's up to the press to do this EVERY time. Go hard, y'all. On EVERY lie. https://t.co/TGbishcD…" +02/15/2017,Actors,@EmilyVanCamp,My funny valentine 😊❤😊 https://t.co/HUx0Vo82AG +02/11/2017,Actors,@EmilyVanCamp,This. https://t.co/U8drUUBsZv +02/10/2017,Actors,@EmilyVanCamp,#tbt to my niece running free ❤ One of my fave photos of this little beauty! #auntielove… https://t.co/myOFcHU6ak +02/10/2017,Actors,@EmilyVanCamp,Pretty sure YOU are the biggest threat to this nation. Take a seat. You lost. Now get off twitter and get back to y… https://t.co/2dSVx6cXnN +02/09/2017,Actors,@EmilyVanCamp,Nice! https://t.co/xxB0WBAlSo +02/09/2017,Actors,@EmilyVanCamp,Yes UTA! Let's see more of this.#resist UTA Scraps Usual Oscar Party; Plans Rally For Refugees Instead https://t.co/z0JR7YpJO1 via @deadline +02/08/2017,Actors,@EmilyVanCamp,Just watched FENCES. Absolutely breathtaking performances by Viola Davis and Denzel Washington. The whole cast was flawless. Loved it❤ +02/08/2017,Actors,@EmilyVanCamp,This is beyond scary! -- Mitch Mcconnell cuts off Elizabeth Warren for criticizing Jeff Sessions https://t.co/QgAaI4jvrH # via @HuffPostPol +02/07/2017,Actors,@EmilyVanCamp,RT @SethMacFarlane: Betsy DeVos confirmed. What is also confirmed is that there is not one single man of courage in the Republican Congres… +02/07/2017,Actors,@EmilyVanCamp,RT @MMFlint: The Senate Republicans have just sent a big FU to the school children of America. Even the worst countries don't shit on their… +02/07/2017,Actors,@EmilyVanCamp,This is awful. Betsy DeVos ekes out confirmation as VP casts first tie-breaker for Cabinet post https://t.co/dMmWQo6jwP # via @HuffPostPol +02/07/2017,Actors,@EmilyVanCamp,Please check out this fundraiser: 'Reuben's Fight' https://t.co/lc6mOsLK9T +02/05/2017,Actors,@EmilyVanCamp,😂😂😂 https://t.co/kdH4EIEQqS +02/03/2017,Actors,@EmilyVanCamp,"RT @HuffingtonPost: Democrats see Pat Toomey as ""best option"" for sinking DeVos' confirmation https://t.co/8anHBKczHO https://t.co/BwRMD5xo…" +02/03/2017,Actors,@EmilyVanCamp,Buy Pat Toomey's Vote https://t.co/Fj5nDoe5Y7 +02/01/2017,Actors,@EmilyVanCamp,RT @KeithOlbermann: Show the networks and media how to NOT participate in propaganda from a man who wants to destroy them: DO. NOT. WATCH.… +01/31/2017,Actors,@EmilyVanCamp,"RT @Jason_Pollock: IMPORTANT ACTION: If you're in one of these states, call your senators asap. We MUST keep pushing to block Betsy Devos f…" +01/30/2017,Actors,@EmilyVanCamp,Voices from the women's march #wewontgoaway #lovewins ❤️ A film by @emmahollyjones https://t.co/L1Gt0aLHuE +01/29/2017,Actors,@EmilyVanCamp,"RT @WajahatAli: If you do support the #MuslimBan today, remember this: you will be remembered as the villains of our children's history boo…" +01/29/2017,Actors,@EmilyVanCamp,Thank you @JustinTrudeau for reminding us that real and compassionate leadership still exists. Take note… https://t.co/ZA0pJ8hhIH +01/28/2017,Actors,@EmilyVanCamp,"I see you. I support you. #LGBTQ students, you are loved. https://t.co/ZGCZSVHVy1 #KindnessInAction" +01/26/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: He's literally not sane. How do you explain, calmly, to a Trump supporter, that thus he must resign? I tried: https://t…" +01/26/2017,Actors,@EmilyVanCamp,"RT @jonfavs: Republicans take control of Washington, and immediately charge taxpayers at least $14 billion for a concrete wall. Good voting…" +01/26/2017,Actors,@EmilyVanCamp,I certainly hope so.... or you could just resign? https://t.co/5U6Mm4asj7 +01/25/2017,Actors,@EmilyVanCamp,Following! https://t.co/2JuzgZbM9P +01/23/2017,Actors,@EmilyVanCamp,"RT @MMFlint: Rule #1: Never acknowledge to the protesters that u ""watched"" them & that they ""got"" to you. So, thank u 4 helping to organize…" +01/22/2017,Actors,@EmilyVanCamp,RT @MattMcGorry: 2day we march w women of the world 2 support their power & remember that Democracy is built 1 footstep at a time #WomensMa… +01/22/2017,Actors,@EmilyVanCamp,When love and resistance meet ❤️ #womensmarch #LoveWins https://t.co/HbKxHLPTm5 +01/21/2017,Actors,@EmilyVanCamp,No better way to protest than with a dance party! #WomensMarch #peacefulprotests #Lovewins https://t.co/kAUtUiZn10 +01/21/2017,Actors,@EmilyVanCamp,Yup. https://t.co/ds0Hjo4AGp +01/21/2017,Actors,@EmilyVanCamp,#feminists https://t.co/OVWoueDtLi +01/21/2017,Actors,@EmilyVanCamp,Love. Trumps. Hate. ❤️#womensmarch #lovetrumpshate #LoveWins https://t.co/e0UZs4jYRJ +01/21/2017,Actors,@EmilyVanCamp,Let's do this people! 💃🏼💃🏼💃🏼 https://t.co/lwGVhBK75k +01/21/2017,Actors,@EmilyVanCamp,All laughs all day with this crew.. just what the doctor ordered ❤️ thanks @unistudios and… https://t.co/97dwIwQz8b +01/21/2017,Actors,@EmilyVanCamp,Agreed. Thanks for such a lovely time! @UniStudios @smashleybell @tolga_safer @IddoG https://t.co/7oiSwt2c8L +01/20/2017,Actors,@EmilyVanCamp,#tbt to this magical day in one of my favorite places. Tomorrow will be a difficult day for many… https://t.co/Yo0V2b8E0P +01/19/2017,Actors,@EmilyVanCamp,RT @HuffingtonPost: Trevor Noah eviscerates Betsy DeVos over her confirmation hearing https://t.co/YHgARdumzm https://t.co/Ez21XhbWVI +01/19/2017,Actors,@EmilyVanCamp,https://t.co/q9JZOTd6sG +01/19/2017,Actors,@EmilyVanCamp,If you are in L.A. join us!! Time to get organized and stand up. For everyone else around the world who are doing t… https://t.co/8DwyAk0UpR +01/19/2017,Actors,@EmilyVanCamp,Emily Thorne would approve too. Now go watch people! #SIX @BarrySloane https://t.co/3jegu2xF9i +01/19/2017,Actors,@EmilyVanCamp,RT @BarrySloane: #SIX premiere night! We will be LIVE #tweeting #eastcoast at 10/9c on @history Can't wait for you to meet my #six family.… +01/19/2017,Actors,@EmilyVanCamp,Check out my buddy @BarrySloane on his awesome new show #SIX tonight! https://t.co/DGdd3UutiH +01/16/2017,Actors,@EmilyVanCamp,✨🙏🏻✨ https://t.co/3cwOcNaxnS +01/09/2017,Actors,@EmilyVanCamp,Indeed. https://t.co/r7ZVYjMOcl +05/15/2018,Actors,@Gabriel_Mann,Huge thanks for the HBD love 🎈XG +01/02/2018,Actors,@Gabriel_Mann,#newyear #newmusic #anthem #2018 - dont sleep on the new @Franz_Ferdinand / 'always ascending' (Official Video)… https://t.co/AU1cly1kJx +01/02/2018,Actors,@Gabriel_Mann,happy new year #2018 ☄️ https://t.co/4YgwgaSDuE +12/29/2017,Actors,@Gabriel_Mann,RT @DamnationTV: Creeley knows better than to get too comfortable. #DamnationTV https://t.co/T8J9U3aogI +12/29/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: The Hunting Party +#buckleup https://t.co/AXDagNzGag" +12/28/2017,Actors,@Gabriel_Mann,RT @TSElibot: I have measured out my life with coffee spoons +12/28/2017,Actors,@Gabriel_Mann,lets go hunting @TheRealElemgy @Zach_McGowan @Nicholsondk @DamnationTV #DamnationTV @USA_Network https://t.co/5fzxc3mb09 +12/28/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9C @DamnationTV EP7 @USA_Network @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/kNDSBadlgw +12/28/2017,Actors,@Gabriel_Mann,"RT @BradleyStryker: Tonight 10/9c, and for the next 4 weeks, you’ll get very familiar with this crew #damnationtv #usanetwork #nbcuniversal…" +12/27/2017,Actors,@Gabriel_Mann,RT @IndieWire: 20 Rising Female Filmmakers You Need to Know: https://t.co/g8Ki5NdZnX https://t.co/1zMudcQlNn +12/27/2017,Actors,@Gabriel_Mann,RT @TEDTalks: 10 reasons to love — and support — our teachers: https://t.co/kjglWg3S4Z +12/25/2017,Actors,@Gabriel_Mann,#MerryChristmasEve thanks for all the holiday cheer..be safe..be kind..spread love 2018 ✌🏼⭐️ XG https://t.co/IBflPDl9Hj +12/22/2017,Actors,@Gabriel_Mann,"RT @tvserieshub: #DamnationTV is one of TV Series Hub's favorite new shows of 2017! +Enjoy a new episode starting right now!! + +Check out our…" +12/21/2017,Actors,@Gabriel_Mann,RT @Dazed: How Buddhist chanting with @Courtney Love changed my life: https://t.co/yWuxvP9nLU https://t.co/Lx31kbc9Vx +12/21/2017,Actors,@Gabriel_Mann,RT @chefjoseandres: We served the @NationalGuard in Puerto Rico and again we are side by side in California providing hot meals twice a day… +12/21/2017,Actors,@Gabriel_Mann,"RT @Yeats_Quotes: Have we not everything that life can give +In having one another?" +12/21/2017,Actors,@Gabriel_Mann,go go S2 #Cardinal x KV @karinevanasse https://t.co/2Mtkn2JZp0 +12/21/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9c EP6 @DamnationTV @USA_Network @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/adQrGkh6bz +12/21/2017,Actors,@Gabriel_Mann,Tonite @DanDonohue3 #DamnationTV @USA_Network ;) #CalvinRumple@ @DamnationTV https://t.co/5hfdFfsVWr +12/21/2017,Actors,@Gabriel_Mann,"RT @CovHousePrez: This Christmas season, let's make our most radical response to darkness a heart of gratitude for all that lifts us up, al…" +12/18/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/PEH9mdNJh4 +12/15/2017,Actors,@Gabriel_Mann,#DamnationTV starts now. Enjoy #MartinEggersHydePhD @USA_Network @DamnationTV https://t.co/Ue1QLcdGLa +12/15/2017,Actors,@Gabriel_Mann,agreed..#SarahJones too. if only so they could experience the appreciation of this show’s super engaged viewers and… https://t.co/CEsjLso0AE +12/15/2017,Actors,@Gabriel_Mann,privilege to work with this cast/crew..everyone giving 150% every day on set and behind the scenes. the creativity… https://t.co/LHypuSoCqA +12/15/2017,Actors,@Gabriel_Mann,"RT @tonytost: Tonight’s episode of #DamnationTV features WWE superstar Luke Harper, a Gillian Welch song, a soothsayer named Tiresias, and…" +12/15/2017,Actors,@Gabriel_Mann,RT @DanDonohue3: Calvin Rumple... #DamnationTV https://t.co/kepr3YbPM7 +12/15/2017,Actors,@Gabriel_Mann,#Connie @MelindaPageHam 👏🏼 #DamnationTV https://t.co/fuqHEzLU7F +12/15/2017,Actors,@Gabriel_Mann,YES @chastenharmon #DamnationTV @USA_Network https://t.co/DsMAfonrgm +12/15/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: ""When you turn on the TV to watch the show... you're going in for an experience and every moment matters."" + +Don't miss Sa…" +12/15/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9c @DamnationTV @USA_Network #DenOfLostSouls @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/dlywda6OW7 +12/14/2017,Actors,@Gabriel_Mann,RT @EmLGee: @Gabriel_Mann @DamnationTV @USA_Network @TheDamnedFlock It looks like #MartinEggersHydePhD is headed back on the path to #Damna… +12/14/2017,Actors,@Gabriel_Mann,RT @WWE: Go behind the scenes of @LukeHarperWWE's appearance on @USA_Network's @DamnationTV TONIGHT at 10/9c! https://t.co/Ftr9v7Iina +12/14/2017,Actors,@Gabriel_Mann,thx sir wechs..much love https://t.co/u4UeIBgocz +12/14/2017,Actors,@Gabriel_Mann,only thing missing is you @ElleSatine ..crossover? #DamnationTV x #TheGifted https://t.co/9j9K0V6Kx4 +12/14/2017,Actors,@Gabriel_Mann,Back on the path to @DamnationTV TONITE 10/9c : EP5 #DenOfLostSouls @USA_Network @TheDamnedFlock… https://t.co/ctQGskJCPP +12/14/2017,Actors,@Gabriel_Mann,RT @tonytost: A Spotify playlist for #DamnationTV fans: BESSIE LOUVIN'S RECORD COLLECTION https://t.co/HqqHXLEoDx +12/14/2017,Actors,@Gabriel_Mann,"RT @netflix: We’re disappointed in the decision to gut #NetNeutrality protections that ushered in an unprecedented era of innovation, creat…" +12/14/2017,Actors,@Gabriel_Mann,RT @priincess_exe: I've seen far too many people saying their goodbyes assuming the FCC vote on #NetNeutrality is the end-all - be-all. It… +12/14/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: The carnival is sure to bring smiles and good times to the people of Holden, right? + +An all-new #DamnationTV begins tonig…" +12/14/2017,Actors,@Gabriel_Mann,"RT @danielletbd: #NetNeutrality +1. Go to https://t.co/sBQAJQWeRw +2. Click on the 17-108 link +2. Click on ""+express"" +3. Hit ""ENTER"" after y…" +12/14/2017,Actors,@Gabriel_Mann,RT @EmilyVanCamp: New trailer for #TheResident January 21st on FOX https://t.co/FtqtYFkITM +12/13/2017,Actors,@Gabriel_Mann,"RT @Policy: We, at Twitter, believe that #NetNeutrality is key to free expression, innovation & public safety. Tomorrow is a critical day f…" +12/13/2017,Actors,@Gabriel_Mann,"RT @iamvbs: nw Netflix's #Dark + +The distinction between the past, present and future is nothing but an illusion. +Yesterday, today and tomor…" +12/13/2017,Actors,@Gabriel_Mann,"RT @Lin_Manuel: YOOOOOOOOOOOO dropping 280 for this... +Let’s bring 10k gifts to kids in 🇵🇷 this holiday season! +@toysrus will deliver ‘em…" +12/13/2017,Actors,@Gabriel_Mann,RT @RealDebKaplan: I wasn't nominated for a Golden Globe but the cashier at Vons just loaned me her club card and I saved $19.83 so I have… +12/12/2017,Actors,@Gabriel_Mann,Love Is All We Have Left @U2 https://t.co/f4KrFLZr6M +12/11/2017,Actors,@Gabriel_Mann,"RT @openculture: Watch ""The ""Art of Flying,"" a Short Film Capturing the Wondrous Murmurations of the Common Starling https://t.co/YxN4F0dJb…" +12/11/2017,Actors,@Gabriel_Mann,"RT @irmadesmond: ""I think it would be discourteous to remake 'All About Eve' while I am alive... But after I'm gone, I'd like to look down,…" +12/11/2017,Actors,@Gabriel_Mann,RT @nowthisnews: Here's how you can use your holiday shopping to help Puerto Rico https://t.co/4JhqTedjZo +12/10/2017,Actors,@Gabriel_Mann,"RT @amnesty: Love. +Courage. +Passion. +Passion. +Passion. + +Happy #HumanRightsDay! https://t.co/35siygixzN" +12/10/2017,Actors,@Gabriel_Mann,RT @Pinter_Quotes: I can't really articulate what I feel. +12/10/2017,Actors,@Gabriel_Mann,"RT @openculture: Giant Clown Sings a Creepy Cover of Radiohead's “Creep"" https://t.co/1rwlWGebxu https://t.co/7Oo3QYo8VY" +12/10/2017,Actors,@Gabriel_Mann,"pleasure was mine, grateful to bring awareness thanks to @DilshadVadsaria https://t.co/6t6ZaNTShy" +12/10/2017,Actors,@Gabriel_Mann,RT @muldersfish: I feel so called out right now. https://t.co/zI3HoVApb9 +12/09/2017,Actors,@Gabriel_Mann,@brwneyesnbama I’m open to intelligent discussions but the video is literally right there..did you take the time to… https://t.co/5T97rUmeoV +12/09/2017,Actors,@Gabriel_Mann,aww shucks #NolanRoss https://t.co/TgCFHLZFOq +12/09/2017,Actors,@Gabriel_Mann,"RT @NatGeo: ""When scientists say bears are going extinct, I want people to realize what it looks like,"" says photographer Paul Nicklen http…" +12/09/2017,Actors,@Gabriel_Mann,can. not. wait. x https://t.co/PtWBz9MwnD +12/08/2017,Actors,@Gabriel_Mann,"RT @DalaiLama: Peace in the world depends on peace within. If we have that we can approach problems in a spirit of compassion, dialogue and…" +12/08/2017,Actors,@Gabriel_Mann,RT @andmichaelgreen: Somewhere on Twitter lurks #EmilyBrowning under an alias she has told no one not even her dog. So join me in wishing h… +12/08/2017,Actors,@Gabriel_Mann,@brwneyesnbama i wish it were +12/08/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/omdXc7IWAE +12/08/2017,Actors,@Gabriel_Mann,RT @TheFixGym: #GetYourselfFree https://t.co/oXNIgjWuEN +12/08/2017,Actors,@Gabriel_Mann,blown away by all the actors. casting is pitch perfect. top notch direction/production/writing. one of the best sho… https://t.co/RP8MzEvJxX +12/07/2017,Actors,@Gabriel_Mann,#SaveNetNeutrality https://t.co/B4FpcRXua4 +12/07/2017,Actors,@Gabriel_Mann,@appifanie Appreciate that ! ✌🏼 +12/07/2017,Actors,@Gabriel_Mann,Doesn’t matter how you spell it once it’s gone. Save #NetNeutrality #NetNuetrality https://t.co/3jomryNbDB +12/07/2017,Actors,@Gabriel_Mann,RT @mang0ld: You can call him crazy. You can also call him kind. https://t.co/P8Dt4ryBeu +12/06/2017,Actors,@Gabriel_Mann,RT @ava: Proud to stand with these talented directors. Many studios have not one woman on their upcoming slate. Props to @Disney. Three at… +12/06/2017,Actors,@Gabriel_Mann,"RT @rosariodawson: Blessings and thanks to all the volunteers and especially the firefighters risking their lives to protect people, nature…" +12/06/2017,Actors,@Gabriel_Mann,"RT @TheEllenShow: If you live anywhere in Southern California, your life is being impacted by the fires today. Please be careful and make r…" +12/06/2017,Actors,@Gabriel_Mann,RT @BarrySloane: Hard time of the year for a lot of folks.. Hotline 800-273-TALK (8255). A simple copy and paste might save someone's life.… +12/04/2017,Actors,@Gabriel_Mann,"RT @THR: On the topic of dealing with fear as an actor, Dafoe discussed how confronting the unknown can bring about ""courage"" https://t.co/…" +12/02/2017,Actors,@Gabriel_Mann,"RT @Rumi_Quote: Wealth has nothing constant, It comes in the morning and is gone at night. Have self-restraint, for patience is the key." +12/02/2017,Actors,@Gabriel_Mann,"RT @edgarwright: Among the many things 'The Shape Of Water' should be applauded for, is the chance for the amazing Sally Hawkins to shine s…" +12/02/2017,Actors,@Gabriel_Mann,"RT @TSElibot: History has many cunning passages, contrived corridors and issues, deceives with whispering ambitions, guides us by vanities.…" +12/01/2017,Actors,@Gabriel_Mann,RT @dark_shark: Project C-90: The Ultimate Audiotape Guide #cassette #recording #technology https://t.co/NX3UyoDMI2 https://t.co/dCfQp53ZGq +11/30/2017,Actors,@Gabriel_Mann,high praise..credit 95% @revenge costume guru @JillOhanneson / 5% actor input ❌ https://t.co/MGt4hORvxt +11/28/2017,Actors,@Gabriel_Mann,"RT @DilshadVadsaria: Thank u my generous friend @Gabriel_Mann for making this happen. You’re one of a kind. + +Revengers! Help me auction off…" +11/28/2017,Actors,@Gabriel_Mann,"RT @DilshadVadsaria: THE AUCTION IS LIVE! +Thank you to my amazing friend @dmorey & @HoustonRockets for your generous donation of this sign…" +11/27/2017,Actors,@Gabriel_Mann,RT @TSElibot: The end of all our exploring will be to arrive where we started and know the place for the first time. +11/24/2017,Actors,@Gabriel_Mann,RT @DalaiLama: What is important is not so much how long you live as whether you live a meaningful life. This doesn’t mean accumulating mon… +11/23/2017,Actors,@Gabriel_Mann,RT @InsightLA: Happy #Thanksgiving for all of us @Insight<<<<<<>>>>>>A Simple Mindful Practice to Ground You in Gratitude https://t.co/x3D8… +11/23/2017,Actors,@Gabriel_Mann,"RT @eveewing: Love to everyone who wants to be with their family this week, but can’t. Love to those for whom “home” is not a safe or welco…" +11/23/2017,Actors,@Gabriel_Mann,RT @nytimes: Just in case you bump into the one who got away this Thanksgiving Eve https://t.co/JqYCDCYBad +11/23/2017,Actors,@Gabriel_Mann,"RT @JohnJpshanley: There’s a Thanksgiving table. At it sit the living and the dead. They join hands, feeling the bond. My mother and father…" +11/23/2017,Actors,@Gabriel_Mann,RT @fairuza: Simple beauty https://t.co/k8X1Do3GGd +11/22/2017,Actors,@Gabriel_Mann,RT @InsightLA: Train Your Brain to Tame Holiday Stress and Anxiety https://t.co/I0iMunFUEK via @MindfulOnline +11/22/2017,Actors,@Gabriel_Mann,RT @IosrscIub: WHY IS THIS THE ONLY BULLSHIT I CAN LAUGH AT ANYMORE I CANT BREATHE https://t.co/GwOes0bPj0 +11/22/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/sMyB7rhVZn +11/21/2017,Actors,@Gabriel_Mann,yes please https://t.co/icQ26hMmHt +11/21/2017,Actors,@Gabriel_Mann,RT @cassianelwes: Please tell any female directors you know in college to opt in to @horizonaward for the chance to come to Sundance for me… +11/21/2017,Actors,@Gabriel_Mann,RT @DailyKerouac: All that old road of the past unreeling dizzily as if the cup of life had been overturned and everything gone mad. +11/21/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: We all have our time machines. Some take us back, they're called memories. Some take us forward, they're called dreams. +-J…" +11/21/2017,Actors,@Gabriel_Mann,RT @Mikel_Jollett: This is the coolest thing I've ever seen. https://t.co/5NhkbZdtTC +11/20/2017,Actors,@Gabriel_Mann,"RT @demiurge_ous: @Gabriel_Mann @ElleSatine Thank you for portraying the characters who are kind, complex, fluid, and committed when it com…" +11/20/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/rcTjU5ZGFo +11/20/2017,Actors,@Gabriel_Mann,"RT @edgarwright: If '2001: A Space Odyssey' is playing on 70mm, I'm going. Saw it again at the Egyptian. It remains, the ultimate trip. htt…" +11/20/2017,Actors,@Gabriel_Mann,RT @openculture: Consider it addition through subtraction. https://t.co/hXbDY0ee0a +11/20/2017,Actors,@Gabriel_Mann,#Flashback ace nite @erdem dinner x @chateau_marmont w the whip smart #EmilyBrowning @voguemagazine #LisaLove https://t.co/GtvwlmncNF +11/20/2017,Actors,@Gabriel_Mann,RT @FallonTonight: Every audition ever... https://t.co/dSHyMLS009 +11/20/2017,Actors,@Gabriel_Mann,always felt fortunate to contemplate a moment w @ElleSatine #revenge https://t.co/RtfM3gkwcv +11/20/2017,Actors,@Gabriel_Mann,many thanks..you sir are one of my all time acting heroes..cheers LH 🙌🏼 https://t.co/Az6dMqmm44 +11/18/2017,Actors,@Gabriel_Mann,"RT @FastCoIdeas: The world could run *entirely* on wind, solar, and hydro power by 2050—if that's what we really wanted: https://t.co/Rti8B…" +11/17/2017,Actors,@Gabriel_Mann,RT @DalaiLama: I don’t like formality. There’s no formality when we’re born and none when we die. In between we should treat each other as… +11/17/2017,Actors,@Gabriel_Mann,"RT @TheEllenShow: Please retweet & use #BeKindToElephants, and for everyone who does, we’ll make a donation to The David Sheldrick Wildlife…" +11/17/2017,Actors,@Gabriel_Mann,RT @nytimes: An Earth-sized planet about 11 light-years from Earth could hold liquid water and conditions favorable for life https://t.co/8… +11/16/2017,Actors,@Gabriel_Mann,RT @yashar: That tusk belongs to her mama and no one else...and it's not a partisan statement to say that. https://t.co/mewmOE5zUh +11/16/2017,Actors,@Gabriel_Mann,RT @NietzscheQuotes: We hear only those questions for which we are in a position to find answers. #Nietzsche +11/16/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/RlMZJoUiz1 +11/16/2017,Actors,@Gabriel_Mann,was and always will be a pleasure my friend..class act all the way. big cheers NJL https://t.co/RAqCUT7imQ +11/15/2017,Actors,@Gabriel_Mann,"RT @againststream: We invite you to take a moment to be present. + +Feel where your body meets your seat. Feel where your breath meets your…" +11/15/2017,Actors,@Gabriel_Mann,RT @TEDTalks: These heroic chefs fed 2 million meals to hungry people in Puerto Rico after Hurricane Maria. #ChefsForPuertoRico @chefjosean… +11/15/2017,Actors,@Gabriel_Mann,😉 https://t.co/irCrgmgHdu +11/15/2017,Actors,@Gabriel_Mann,#WhichSideAreYouOn EP2 @DamnationTV @USA_Network starts now #EastCoast #DamnationTv https://t.co/87ATMDWNU0 +11/15/2017,Actors,@Gabriel_Mann,love watching you two do what you do @TheRealElemgy @chastenharmon #DamnationTV https://t.co/INsuVV0GGy +11/15/2017,Actors,@Gabriel_Mann,"RT @tonytost: New episode of #DamnationTV tonight on USA at 10 pm/9 central. Episode 102: ""Which Side Are You On?"" Directed by the great Ad…" +11/15/2017,Actors,@Gabriel_Mann,working w the brilliant costume designer @Jerianadesign was a gift in itself. sheer genius. she raises the bar ever… https://t.co/0LxYsxV9Us +11/14/2017,Actors,@Gabriel_Mann,TONITE..we are all headed to @DamnationTV - @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler… https://t.co/FXGntl3eov +11/12/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/26xVWmmzie +11/08/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/a7kDXNclMY +11/08/2017,Actors,@Gabriel_Mann,Next Tues.. - @DamnationTV @USA_Network - EP2 - Which Side Are You On / This Season - Promo https://t.co/rUnjLRK4Ey via @YouTube +11/08/2017,Actors,@Gabriel_Mann,Let’s give Chas a warm twitter welcome back from 2012 😉 amazing job tonite @DamnationTV btw x https://t.co/0Dl3aKSbg1 +11/08/2017,Actors,@Gabriel_Mann,follow @USA_Network #DamnationTV Cast: @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler… https://t.co/1NdBQm6g7O +11/08/2017,Actors,@Gabriel_Mann,congrats on the @DamnationTV premiere tonite @TheRealElemgy @MelindaPageHam @chastenharmon @JpAdler @DanDonohue3… https://t.co/H7PbCsqSIb +11/08/2017,Actors,@Gabriel_Mann,so privileged to be a small part of the epic 30s depression era saga @tonytost created in @DamnationTV ..you may ha… https://t.co/hKI5Ia92pI +11/08/2017,Actors,@Gabriel_Mann,"RT @tonytost: I'm thrilled to have #DamnationTV out in the world tonight. It's a weird, bloody love letter to America. I hope folks have fu…" +11/08/2017,Actors,@Gabriel_Mann,RT @DilshadVadsaria: Cooking up something Revengey with this doll for @RoomtoRead. Can’t wait to share! @Gabriel_Mann #love #dogood #positi… +11/07/2017,Actors,@Gabriel_Mann,"RT @RockTheVote: #ElectionDay is today & if you face any problems at the polls, or have questions, @866OURVOTE has your back! https://t.co/…" +11/07/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/6ZSzsSyesJ +11/06/2017,Actors,@Gabriel_Mann,I’ve got plenty of ‘thoughts’ about politicians who offer ‘prayers’ but NO action to prevent or rectify #texas 💔 https://t.co/9qdWerFSm4 +11/06/2017,Actors,@Gabriel_Mann,RT @missipyle: Love is the only thing left that means anything. its the only currency we have left. +11/05/2017,Actors,@Gabriel_Mann,"RT @Yeats_Quotes: I see my life go drifting like a river +From change to change; I have been many things –" +11/05/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/ITjdBXUzr0 +11/05/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: “Men do change, and change comes like a little wind that ruffles the curtains at dawn, and it… https://t.co/fcKOyIxcwW" +11/04/2017,Actors,@Gabriel_Mann,RT @JoshPherigo: Watching people return this dropped hat at the parade today was unreasonably thrilling https://t.co/1ghfUJsItw +11/04/2017,Actors,@Gabriel_Mann,RT @attn: States are ditching daylight savings because it has no benefits. https://t.co/ytCvNGwc8w +11/04/2017,Actors,@Gabriel_Mann,RT @konstruktivizm: Dali https://t.co/ahg3Vc47t7 +11/04/2017,Actors,@Gabriel_Mann,RT @bymarktwain: Action speaks louder than words but not nearly as often. #MarkTwain +11/04/2017,Actors,@Gabriel_Mann,RT @Watching: This month will feature an especially impressive lineup of new TV shows https://t.co/kuDT2to4aI +11/04/2017,Actors,@Gabriel_Mann,ladies and gents meet #SarahJones..literally killing it in @DamnationTV @USA_Network - Nov 7th https://t.co/ZeImzQesrR +11/04/2017,Actors,@Gabriel_Mann,RT @DanDonohue3: Proud to be a part of this brilliant new show! https://t.co/T9u7zZyap4 +11/04/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: “Now we know. We dare to understand. Truly. Truly, the past was a dream. But this, this is… https://t.co/9lHrXN1W3b" +11/04/2017,Actors,@Gabriel_Mann,"RT @Nicholsondk: What a treat to get to work on this exciting new show. All talent and hard work, no ego. https://t.co/eNJ1pc3YES" +11/04/2017,Actors,@Gabriel_Mann,RT @tonytost: Really enjoyed talking Damnation. https://t.co/HNHbOWczZo +11/04/2017,Actors,@Gabriel_Mann,RT @BradleyStryker: “The only thing we have to fear is fear itself.” - FDR #damnationtv #comingsoon #usanetwork… https://t.co/IJjwGyIJls +11/04/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: Man’s world? Think again. + +Make sure you’re ready for @USA_Network’s newest drama #DamnationTV, premiering November 7. ht…" +11/04/2017,Actors,@Gabriel_Mann,"RT @FastCoIdeas: Humankind is now the strongest force shaping the planet, as you've probably noticed. https://t.co/ooYq9VtyN9" +11/04/2017,Actors,@Gabriel_Mann,. @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler @DanDonohue3 @Paul_Rae @BradleyStryker… https://t.co/srFUbH3Zrq +11/04/2017,Actors,@Gabriel_Mann,"RT @MindPodNetwork: Taurus Full Moon +https://t.co/fr5xyqFlBK https://t.co/hPxX7v9Hvw" +11/04/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: Some people arrive and make such a great impact on your life,that you can barely remember what life was without them.#reve…" +11/04/2017,Actors,@Gabriel_Mann,all day long https://t.co/6EL7S6XSQ3 +11/03/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: The past can't stay hidden forever - and it won't. + +#DamnationTV begins November 7 on @USA_Network. https://t.co/Z1OzFq6Jja" +11/03/2017,Actors,@Gabriel_Mann,RT @DalaiLama: The most crucial use of knowledge and education is to understand the importance of developing a good heart. +11/03/2017,Actors,@Gabriel_Mann,RT @jes_chastain: Can #RobinWright just be the lead of @HouseofCards now? We're ready for it. +11/03/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/p3tdkSNl41 +11/02/2017,Actors,@Gabriel_Mann,RT @DebraMessing: ENROLLMENT STARTS TODAY!!! #ACA https://t.co/HGmD0xtcCY +11/01/2017,Actors,@Gabriel_Mann,RT @tinybuddha: Perfectionism can be so paralyzing. We don't have to be the best at everything we do. We just have to show up & try. https:… +11/01/2017,Actors,@Gabriel_Mann,RT @Nick_Wechsler: I stopped dressing up for Halloween when I could afford my own candy. https://t.co/GSsozU7dVO +10/31/2017,Actors,@Gabriel_Mann,"RT @michaelianblack: Glad New York Halloween parade is continuing. Go be fabulous, NYC." +10/31/2017,Actors,@Gabriel_Mann,NY💧❤️✊🏼 https://t.co/wf697eufXE +10/31/2017,Actors,@Gabriel_Mann,if u missed the #JosieAndThePussycats reunion concert w @kayhanley ENJOY @RealDebKaplan @HarryElfont @RachaelLCook… https://t.co/VWK9pHTccB +10/31/2017,Actors,@Gabriel_Mann,"RT @NASA: Happy Halloween! This jack-o-lantern is 🔥…literally! It’s our Sun in 2014, w/ active regions on its surface https://t.co/2R2y25Zf…" +10/31/2017,Actors,@Gabriel_Mann,RT @azrielshields: Happy Halloween! https://t.co/4idyF9p2Gm +10/31/2017,Actors,@Gabriel_Mann,"RT @NOWNESS: ""Under severe weather conditions, life does not necessarily make any sense."" – A lo-fi portrait of an Arctic town: https://t.c…" +10/31/2017,Actors,@Gabriel_Mann,"RT @NewYorker: A Halloween-themed cover by Harry Bliss, from 1999: https://t.co/9GBLvw6V9c https://t.co/ZWfmYOPRxV" +10/31/2017,Actors,@Gabriel_Mann,@megumi0309 Tokyo yes! Worked on a film called #RamenGirl ..incredible city +10/31/2017,Actors,@Gabriel_Mann,"RT @NPR: It's a touchy subject, but we need to know: What are your thoughts on candy corn? 🎃🍬" +10/31/2017,Actors,@Gabriel_Mann,walking for @CalvinKlein in #MillennialPink before Millennials wore pink 🤘🏼#BackInTheDay #90s https://t.co/DLzp8GgYiv +10/30/2017,Actors,@Gabriel_Mann,RT @IndieWire: 10 Great Directors Who Should Make Horror Movies — IndieWire Critics Survey https://t.co/pIQmXiSWvw https://t.co/RUl4lubEJc +10/30/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/QQPEyFEda1 +10/29/2017,Actors,@Gabriel_Mann,Halloalienorcist 🎃 https://t.co/gBjOq5Qxdd +10/29/2017,Actors,@Gabriel_Mann,@troyesdance you inspire me. thank you for the kind words Hannah.. +10/29/2017,Actors,@Gabriel_Mann,RT @BrosConfessions: can’t have pomegranates https://t.co/kKY8ivExwe +10/29/2017,Actors,@Gabriel_Mann,Countdown to @DamnationTV @USA_Network https://t.co/e2JIPpYrxm +10/29/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/0kjEEkeAWq +10/29/2017,Actors,@Gabriel_Mann,#BTS @USA_Network @DamnationTV w creator: @tonytost & stars @TheRealElemgy #KillianScott #SarahJones @chastenHarmon https://t.co/yNhvOcMzoU +10/29/2017,Actors,@Gabriel_Mann,#Follow @DamnationTV @TheRealElemgy @MelindaPageHam @chastenharmon @jpadler @CHeyerdahl @Paul_Rae @DanDonohue3 @Nicholsondk @Zach_McGowan +10/29/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/gL7yOsRHmj +10/29/2017,Actors,@Gabriel_Mann,"RT @Khall_llen426_: I Miss Revenge ❌🎬 +@EmilyVanCamp @Gabriel_Mann @Nick_Wechsler +#JoshBowman +▫My favorite series❤💥 +▫Wonderful cast👏❤ http…" +10/29/2017,Actors,@Gabriel_Mann,RT @TSElibot: What we call the beginning is often the end and to make an end is to make a beginning. The end is where we start from. +10/27/2017,Actors,@Gabriel_Mann,@nothing_woman Of course. It’s more about letting people know what I stand for. +10/27/2017,Actors,@Gabriel_Mann,if you support #racism #sexism #misogyny #harassment #xenophobia #discrimination #homophobia #bullying please #unfollow ✌🏼 thx in advance ✌🏼 +10/27/2017,Actors,@Gabriel_Mann,Cheers @TommyHilfiger — @JuliensAuctions thx for having me https://t.co/JWD6Zqfe18 +10/27/2017,Actors,@Gabriel_Mann,RT @TheFixGym: Sometimes the stillness inside is all that you have to hold on to. Especially in these complicated times. https://t.co/NG5bb… +10/27/2017,Actors,@Gabriel_Mann,RT @pamelaadlon: YES YES YES YES YES YES YES. https://t.co/VZrbGgOGfm +10/27/2017,Actors,@Gabriel_Mann,RT @DalaiLama: We need to improve the current education system by introducing instructions on ways to cultivate positive emotions like warm… +10/27/2017,Actors,@Gabriel_Mann,‘Good nite’ here..but this will work for any occasion https://t.co/TAsMo9p3wS +10/27/2017,Actors,@Gabriel_Mann,RT @70s_party: I am *so* tired of boiling ox tongues https://t.co/KS4s0TXS82 +10/25/2017,Actors,@Gabriel_Mann,"RT @MuseumModernArt: “Art is a lie that makes us realize truth.”—Pablo Picasso, born #OTD in 1881 https://t.co/YYVDrl39er https://t.co/zP4b…" +10/24/2017,Actors,@Gabriel_Mann,RT @_RenaHH: Who wore ist best? Charlie Brown @Peanuts or @Gabriel_Mann ? https://t.co/uHRXbzz9YB +10/23/2017,Actors,@Gabriel_Mann,RT @PatieAzelot: I create other worlds. Photography has the ability to freeze people in this time and space.T.Shields-photo chromatic #reve… +10/22/2017,Actors,@Gabriel_Mann,"RT @Tribeca: ""Take your broken heart, make it into art."" — Carrie Fisher #bornonthisday https://t.co/gRW3nXLSLO" +10/22/2017,Actors,@Gabriel_Mann,"RT @DailyKerouac: One day I will find the right words, and they will be simple." +10/19/2017,Actors,@Gabriel_Mann,"RT @OnePerfectShot: THE SHINING (1980) + +Director of Photography: John Alcott +Director: Stanley Kubrick https://t.co/yzOgmsL1Hh" +10/18/2017,Actors,@Gabriel_Mann,"RT @nytimesarts: A posthumous novel from the Pulitzer Prize winning playwright Sam Shepard, who died in July, is coming in December https:/…" +10/18/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: I want to live, breathe, I want to be part of the human race and keep the hope of a better world. +#thomyorke #Quote +@Gabri…" +10/18/2017,Actors,@Gabriel_Mann,RT @JackKornfield: Opening the heart begins by opening to a lifetime’s accumulation of unacknowledged sorrow. https://t.co/ibG9qvWJ7c +07/01/2018,Actors,@Nick_Wechsler,@kaada Fuck yes. +06/30/2018,Actors,@Nick_Wechsler,@TaranKillam I know! Amazing. +06/30/2018,Actors,@Nick_Wechsler,RT @albz: Does anyone do a good Hannity phone impression cuz I think we figured out how to solve this fucking nightmare. +06/30/2018,Actors,@Nick_Wechsler,@LindsHollister Shut up! I can’t grow a real one and you know it! +06/30/2018,Actors,@Nick_Wechsler,"RT @TheGeekLens: My pictures from the Black List Script Reading at the 2018 ATX Television Festival featuring Franklin Leonard, Matt Lauria…" +06/29/2018,Actors,@Nick_Wechsler,New ep this Sunday. https://t.co/QwASgZykNM +06/29/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: In an apparent attempt to try to break up the European Union, Trump reportedly told French President Emmanuel Macron that the…" +06/28/2018,Actors,@Nick_Wechsler,RT @albz: This is how you sell gold plated shit to a poor person on QVC. https://t.co/KRp8es6jxC +06/28/2018,Actors,@Nick_Wechsler,RT @TheDweck: I love how much it still eats away at him that he’s the king of dumb fucks instead of Hollywood https://t.co/hEaOyIAh4z +06/28/2018,Actors,@Nick_Wechsler,@AngelOlsen Awesome! I’m a fan of both. +06/26/2018,Actors,@Nick_Wechsler,"@realDonaldTrump You rigged it to your advantage, you miserable sack of shit, get the fuck out of here with your gloating, pretend shock." +06/26/2018,Actors,@Nick_Wechsler,"Well, most people are dirt stupid, so don’t take this to heart, America. https://t.co/go14wgyoWN" +06/26/2018,Actors,@Nick_Wechsler,@LizGillies Right? Fuck. +06/26/2018,Actors,@Nick_Wechsler,@unrealfehr @davidduchovny Not fucking bad. Not fucking bad at all. +06/25/2018,Actors,@Nick_Wechsler,@JennifersWayJE I’m both mind-blown and heartbroken by Esteban’s restraint. +06/25/2018,Actors,@Nick_Wechsler,RT @hodgman: It seems to me that it’s not discrimination if she was judged specifically by the content of her character. +06/25/2018,Actors,@Nick_Wechsler,@rolldiggity Ha! +06/25/2018,Actors,@Nick_Wechsler,RT @JLo: TWEET WITH US! #SHADESOFBLUE IS BACK AND ITS ONLY GETTING STARTED! https://t.co/GMKj5MaE7n +06/24/2018,Actors,@Nick_Wechsler,"@BrandonJRouth I’ve always loved that method. Like, “If you’re so proud of your cruelty, it shouldn’t bother you if I show the world.”" +06/24/2018,Actors,@Nick_Wechsler,RT @nbcshadesofblue: Family is everything to Harlee. #ShadesofBlue https://t.co/c9jXyrfS7u +06/24/2018,Actors,@Nick_Wechsler,"RT @kumailn: I know there are a bunch of people upset at the Nazi comparisons, but the highlighting-crimes-by-immigrants move is literally…" +06/24/2018,Actors,@Nick_Wechsler,RT @davidcrosss: There's no such thing as white privilege!!! https://t.co/fV9PM1G6BW +06/24/2018,Actors,@Nick_Wechsler,RT @JLo: #SHADESOFBLUE STARTED OFF WITH A BANG...BUT THERE’S MORE TO COME‼️ TUNE-IN TOMORROW NIGHT FOR THE NEXT CHAPTER IN THE CRIME SAGA‼️… +06/23/2018,Actors,@Nick_Wechsler,@_CourtneyFord_ Congrats!!! +06/22/2018,Actors,@Nick_Wechsler,RT @LauraDern: I AM! https://t.co/fbMbIkCMe8 +06/22/2018,Actors,@Nick_Wechsler,Madman. https://t.co/OZ5rDzgS7l +06/22/2018,Actors,@Nick_Wechsler,RT @chrislhayes: I am convinced that without sustained public pressure and/or litigation they are simply not going to reunite these familie… +06/21/2018,Actors,@Nick_Wechsler,"RT @pattonoswalt: This extraordinary ad for the extraordinary @mjhegar just redeemed a shitty, frustrating week. Her story is amazing enoug…" +06/21/2018,Actors,@Nick_Wechsler,"I hate him, you guys. https://t.co/EzTozZjwtj" +06/20/2018,Actors,@Nick_Wechsler,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Actors,@Nick_Wechsler,"@albz Oh, god, yes." +06/20/2018,Actors,@Nick_Wechsler,RT @perlmutations: Remember how we watched as this piece of shit said stuff when he was running that was so unthinkable that we wrote it of… +06/20/2018,Actors,@Nick_Wechsler,"RT @JoyAnnReid: How do you reunite an infant, who can not communicate who their parent is, with a parent who is not allowed to access them,…" +06/19/2018,Actors,@Nick_Wechsler,"Sweet Christ, yes. https://t.co/RW86ADhrYA" +06/19/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: NEW: Per @CNN, the Trump administration decided not to implement its cruel family separation policy earlier in his presidency…" +06/19/2018,Actors,@Nick_Wechsler,RT @RVAwonk: Here it is. This is the policy — announced 5 days after Trump was inaugurated — that is creating the horrendous situation we'r… +06/19/2018,Actors,@Nick_Wechsler,@kellyoxford YES. +06/17/2018,Actors,@Nick_Wechsler,RT @TheDweck: You’d think a guy who looks like this would be better at getting away with evil plans https://t.co/4QLGih9zqE +06/17/2018,Actors,@Nick_Wechsler,That is also a good point. https://t.co/1XCL8oengI +06/17/2018,Actors,@Nick_Wechsler,@mirandaannW I’ll be watching with balls on. +06/17/2018,Actors,@Nick_Wechsler,"RT @TellTaleTV_: #ShadesofBlue returns tonight! ICYMI, here’s our interview with @Nick_Wechsler about his role in the final season: https:/…" +06/17/2018,Actors,@Nick_Wechsler,"She makes a good point, you guys. https://t.co/mpi4lAPxck" +06/17/2018,Actors,@Nick_Wechsler,RT @RepJoeKennedy: Arrived in Tornillo TX where first tent city for kids has gone up. Was refused entrance by HHS. Given amount of misinfor… +06/17/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: The fuck kind of country are we living in? Good God. https://t.co/3sFbnxtzYn +06/17/2018,Actors,@Nick_Wechsler,@Katysloane @BarrySloane ❤️ +06/17/2018,Actors,@Nick_Wechsler,"Happy Father’s Day, motherfuckers." +06/17/2018,Actors,@Nick_Wechsler,"@kaada Goddammit, I love your work." +06/16/2018,Actors,@Nick_Wechsler,@JasonWGeorge @Station19 Lemme know about the rest! +06/16/2018,Actors,@Nick_Wechsler,"Jesus. Jesus, Jesus, Jesus, Jesus. JESUS. https://t.co/JygtAGDCVi" +06/16/2018,Actors,@Nick_Wechsler,@KristenMichele6 @ATXFestival You got it. 😉 (And thank you very much.) +06/15/2018,Actors,@Nick_Wechsler,@KristenMichele6 @ATXFestival Ha! Aw. Please become a casting director fast. +06/15/2018,Actors,@Nick_Wechsler,RT @ashleybsumerel: I so enjoyed chatting with @Nick_Wechsler about his upcoming role on #ShadesofBlue and more during during @ATXFestival.… +06/15/2018,Actors,@Nick_Wechsler,"Wanna read an article in which I wander aimlessly through the garden of my own shattered mind, ostensibly to promot… https://t.co/bDJJLvtQwx" +06/15/2018,Actors,@Nick_Wechsler,RT @HayyyCee: Young Californian voters should all know this is a political scheme to divide up the most powerful Democratic state in the co… +06/15/2018,Actors,@Nick_Wechsler,@LykkeLi Cannot wait. +06/15/2018,Actors,@Nick_Wechsler,RT @kumailn: Are you ok with this? This has nothing to do with your political affiliation. This is a human issue. https://t.co/5FxYlbYuFk +06/15/2018,Actors,@Nick_Wechsler,"RT @SimonWDC: Grandfather, been in the US for 50 years, since he was 13. He’s a legal resident. Went to high school here. Taken away by…" +06/15/2018,Actors,@Nick_Wechsler,"RT @DaveKingThing: worried that, psychologically as a nation, there might be a little too much riding on this mr. rogers documentary" +06/14/2018,Actors,@Nick_Wechsler,RT @AllisonBlairN: I spy @Nick_Wechsler! #ShadesofBlue https://t.co/ZnjYov5yZw +06/13/2018,Actors,@Nick_Wechsler,@whatdidreneesay @ATXFestival Yup! Great to see you! +06/13/2018,Actors,@Nick_Wechsler,This is infuriating. https://t.co/97xaBXUFBn +06/13/2018,Actors,@Nick_Wechsler,"Goddammit, I love your work, @bessbell. https://t.co/v2hJs6Gk4Z" +06/13/2018,Actors,@Nick_Wechsler,@brynak13 My pleasure. You were very patient with me. +06/13/2018,Actors,@Nick_Wechsler,@whatdidreneesay @ATXFestival Sure was. +06/13/2018,Actors,@Nick_Wechsler,RT @Acosta: An astonishing moment of pure honesty from Trump... https://t.co/R8JcsoXDu7 +06/12/2018,Actors,@Nick_Wechsler,"RT @sportingnews: This high school pitcher held off celebrating with his teammates so he could console his childhood friend instead. + +(📹:…" +06/12/2018,Actors,@Nick_Wechsler,"@LPMc @jaredmunson @ATXFestival Say hello anytime, you goofball!" +06/12/2018,Actors,@Nick_Wechsler,@SBHilts87 @fi_bee_9 @jaredmunson @crashdowncom @ATXFestival Holy shit! How’s it going Brian? +06/12/2018,Actors,@Nick_Wechsler,"@jaredmunson @ATXFestival Aw, man. That’s lovely of you to say. It was great to meet you, man. I actually saw you s… https://t.co/shaZo5oJKk" +06/12/2018,Actors,@Nick_Wechsler,"@SamWitwer That’s crazy! Could you make a life-sized, anatomically correct one? Just out of curiosity." +06/11/2018,Actors,@Nick_Wechsler,"@TraceySchulz @TellTaleTV_ @ATXFestival @PhilRosenthal Ha! Hey, man!" +06/11/2018,Actors,@Nick_Wechsler,@derekwaterss @ATXFestival @Bergmaster5000 It’s legitimately the best. And I’m always sure to catch your panel. This year’s was great. +06/11/2018,Actors,@Nick_Wechsler,@TheRealElemgy Rad. I will make sure they both watch Upgrade. It’s the least they could do. +06/11/2018,Actors,@Nick_Wechsler,@povprod @ATXFestival ❤️ +06/11/2018,Actors,@Nick_Wechsler,@talli_approved TOLD YOU. +06/11/2018,Actors,@Nick_Wechsler,"@ashleybsumerel Mutual, buddy." +06/11/2018,Actors,@Nick_Wechsler,@brynak13 My pleasure. Thank you for putting up with me. +06/11/2018,Actors,@Nick_Wechsler,"@stampness @ThisIsLafferty @JasonWGeorge @Tyreljwill @theKatWillis @taylor_dearden Thank you, Elizabeth, for allowi… https://t.co/Dc40AmV6Lx" +06/11/2018,Actors,@Nick_Wechsler,"@everythingloria @ATXFestival Aw. Well, it was lovely to bump into you, Gloria. I’ll tell Mexican @fredschroeder you gals said hello." +06/10/2018,Actors,@Nick_Wechsler,@debrabirnbaum @ATXFestival @CarltonCuse @mrbobodenkirk We caught each other! Always lovely running running into yo… https://t.co/qzYaUcButg +06/10/2018,Actors,@Nick_Wechsler,"RT @adamcbest: Fox & Friends accidentally said this about the Singapore summit: ""regardless of what happens in that meeting between the two…" +06/09/2018,Actors,@Nick_Wechsler,@tiffanylopes Hotel bar. Sorry this was late. +06/09/2018,Actors,@Nick_Wechsler,RT @TellTaleTV_: Chatting with @Nick_Wechsler on last night’s @ATXFestival red carpet! Be sure to catch him on the upcoming season of #Shad… +06/07/2018,Actors,@Nick_Wechsler,"RT @theblcklst: Join us tomorrow @ATXFestival: https://t.co/uhUk5rh7hf + +Elizabeth Stamp's CLASSIFIED stars: +@ThisIsLafferty +@JasonWGeorge +@…" +06/07/2018,Actors,@Nick_Wechsler,"RT @latimesent: Actor @Nick_Wechsler (""Revenge"") and Matt Lauria (""Friday Night Lights"") give a shoutout to the L.A. Times on the flight to…" +06/07/2018,Actors,@Nick_Wechsler,"Just to be clear, I’m not busting anyone’s chops! I just think it’s funny to call a plane full of drowsy people a p… https://t.co/IPDhyrucEE" +06/07/2018,Actors,@Nick_Wechsler,@ATXFestival Duh. +06/07/2018,Actors,@Nick_Wechsler,@jaredmunson Let’s just you and I go sing in a grocery store. +06/07/2018,Actors,@Nick_Wechsler,Whatever. The 15 of us are gonna start our own little Rajneeshpuram in the sky. So I guess this @SouthwestAir fligh… https://t.co/nMRevw1FgM +06/07/2018,Actors,@Nick_Wechsler,"Oh, I’m having fun, don’t get me wrong, but this is a party plane in the same way that a handful of friends singing… https://t.co/fLdW5cStQs" +06/07/2018,Actors,@Nick_Wechsler,@cadlymack @ATXFestival @southwest Can you get Matt Lauria to stop trying to kiss me? +06/07/2018,Actors,@Nick_Wechsler,On board the @SouthwestAir Party Plane on the way to ⁦@ATXFestival⁩ with Matt. He has a deathly fear of heights. He… https://t.co/sZHw6Yxg2L +06/07/2018,Actors,@Nick_Wechsler,@BenBlacker I will be. Boarding the @SouthwestAir “Party Plane” soon. +06/07/2018,Actors,@Nick_Wechsler,"RT @BrendanNyhan: I have to log off Twitter. Seeing that this is a song the kids sing (to the tune of ""Twinkle Twinkle Little Star"") is too…" +06/07/2018,Actors,@Nick_Wechsler,RT @Warren_Kole: The Devil wants his Due. #ShadesofBlue @Jlo @rayliotta @dreadematteo @DayoOkeniyi @hampton_fluker @sarahmjeffery3 @GinoPe… +06/07/2018,Actors,@Nick_Wechsler,👀 https://t.co/xIRPBtG8Xi +06/07/2018,Actors,@Nick_Wechsler,"@BenBlacker Proud of you, man." +06/06/2018,Actors,@Nick_Wechsler,RT @stampness: Beyond excited to be heading back to @ATXFestival where @theblcklst will be doing a star-studded reading of my script Classi… +06/06/2018,Actors,@Nick_Wechsler,@ChrisAgos @ptrueagos ❤️ +06/06/2018,Actors,@Nick_Wechsler,@JarettSays Cannot fucking wait. +06/06/2018,Actors,@Nick_Wechsler,RT @funder: Congrats GOP! You just elected a white supremacist who rioted in Charlottesville. https://t.co/s8HrlesviP +06/06/2018,Actors,@Nick_Wechsler,RT @TIME: A valedictorian trolled his own classmates with an Obama quote disguised as a Trump quote https://t.co/xoDcFJowww +06/06/2018,Actors,@Nick_Wechsler,"@AvanJogia Congrats, man! That’s rad." +06/06/2018,Actors,@Nick_Wechsler,RT @jules_su: These officers should go to jail for a decade each for unprovoked assault on an innocent passerby waiting for the elevator.… +06/06/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: This is why @NFL athletes take a knee. + +This is why we aren't filled with warm fuzzies when we hear the National Anthem.…" +06/06/2018,Actors,@Nick_Wechsler,"RT @theblcklst: Join us @ATXFestival Friday for 2 pilot live reads! + +Elizabeth Stamp's CLASSIFIED stars... +@ThisIsLafferty +@JasonWGeorge +@N…" +06/06/2018,Actors,@Nick_Wechsler,"RT @jonfavs: Nearly 120k voters omitted from the voting rosters in LA County because of a printing error. Among other things, this could af…" +06/05/2018,Actors,@Nick_Wechsler,Um. Guys? https://t.co/GTSHprIXKA +06/04/2018,Actors,@Nick_Wechsler,"I’m gonna be at @ATXFestival this year, and I agreed to take part in one of these script readings. Joke’s on them,… https://t.co/UcTw4xO8SI" +06/04/2018,Actors,@Nick_Wechsler,"Just a reminder that I’m in this season of @nbcshadesofblue, which premieres later this month. https://t.co/rDczCeHfHX" +06/04/2018,Actors,@Nick_Wechsler,Cannotwait. https://t.co/x4zpE0pkcy +06/04/2018,Actors,@Nick_Wechsler,"@jesseleesoffer What?! Ugh, I already had sex with that guy!" +06/03/2018,Actors,@Nick_Wechsler,"@TheRealElemgy Dude, have you seen these? My best friend’s brother made the 1st one, and my best friend & his bro m… https://t.co/MRc1EDBNqS" +06/03/2018,Actors,@Nick_Wechsler,"RT @POLITICOMag: Trump made $50,000 per episode for season one of ""The Apprentice."" + +For season two, “he wanted a million dollars an episod…" +06/02/2018,Actors,@Nick_Wechsler,RT @MattOswaltVA: hopefully Samantha Bee has learned that if you're gonna go after one of Trump's children NEVER go after the one he wants… +06/02/2018,Actors,@Nick_Wechsler,"RT @Schwarzenegger: I eagerly await the administration’s regulations protecting pagers, fax machines, and Blockbuster. https://t.co/ykLJHT4…" +06/02/2018,Actors,@Nick_Wechsler,RT @TheRealElemgy: UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.… +06/01/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: Now seems like a good time to remember that Trump still hasn't acknowledged the recent report that nearly 5,000 Americans died…" +06/01/2018,Actors,@Nick_Wechsler,"@TaranKillam @NightSchool @almadrigal Proud of you, dude." +05/30/2018,Actors,@Nick_Wechsler,"RT @ATXFestival: If you find yourself obsessing over #WhoDrewTheDicks, you need to be at our @AVTVSeries panel on Friday, June 8, featuring…" +05/28/2018,Actors,@Nick_Wechsler,@ropappas That was you? Ha! +05/28/2018,Actors,@Nick_Wechsler,"RT @JoyAnnReid: You’d almost never know her father’s administration, to which she is an adviser, was brutally separating migrant children f…" +05/28/2018,Actors,@Nick_Wechsler,RT @JuddLegum: How would your Sunday be if the federal government ripped this child from your arms and put him in a detention facility? htt… +05/28/2018,Actors,@Nick_Wechsler,You heard the man. https://t.co/eFsnza0Nin +05/28/2018,Actors,@Nick_Wechsler,"@realDonaldTrump What the fucking shit are you even talking about, you fucking shit?" +05/28/2018,Actors,@Nick_Wechsler,"@BarrySloane @EW @SIXonHISTORY Miss you, dude!" +05/28/2018,Actors,@Nick_Wechsler,@GinaWatchesTV @kaada @ATXFestival Yup! +05/27/2018,Actors,@Nick_Wechsler,This new @kaada album is fucking gorgeous. https://t.co/10JnYvIBUs +05/25/2018,Actors,@Nick_Wechsler,@kaada 🖤 +05/23/2018,Actors,@Nick_Wechsler,RT @DlSRESPECT: i actually love this metaphor because it’s a fake target and you’ve put it there yourself. https://t.co/qF6p93RiUF +05/23/2018,Actors,@Nick_Wechsler,Jesus Christ. https://t.co/Gg1FfYHBRk +05/23/2018,Actors,@Nick_Wechsler,Please check out this article about the book my best friend @SamWitwer is making with his brother and other peeps! https://t.co/oiLz8ztAHC +05/22/2018,Actors,@Nick_Wechsler,This is nuts. https://t.co/D1GlGL517r +05/22/2018,Actors,@Nick_Wechsler,"RT @igorvolsky: Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the…" +05/22/2018,Actors,@Nick_Wechsler,Cool! Like what he’s doing for our country’s cyber security! https://t.co/zPZXmcm7fJ +05/19/2018,Actors,@Nick_Wechsler,RT @funder: BREAKING: Trump’s been buying and selling stocks while serving as president +05/19/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: The identity of the informant has been exposed. Please don't post his name, and please don't share anything that does mention…" +05/18/2018,Actors,@Nick_Wechsler,"My buddy is selling her tickets for tonight’s @taylorswift13 show at The Rose Bowl. Cheap! Go take a look: + +https://t.co/fMl3kcpdmK" +05/18/2018,Actors,@Nick_Wechsler,"“Now, I know that this makes him look like an absolute cock, but his pettiness is probably just some shortcut to gr… https://t.co/OceFIPnisT" +05/18/2018,Actors,@Nick_Wechsler,"@karterhol Prove it, pussy!" +05/18/2018,Actors,@Nick_Wechsler,"Pfft, whatEVER! https://t.co/Ju3fx5OcLS" +05/17/2018,Actors,@Nick_Wechsler,Thread. https://t.co/MTXol1dUHR +05/17/2018,Actors,@Nick_Wechsler,"RT @Yanni: @chrissyteigen I may be biased, but all I hear is Yanni..." +05/16/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: North Korea watched as Trump violated the terms of our nuclear deal with Iran. If you were in that position, would you serious…" +05/16/2018,Actors,@Nick_Wechsler,@TheRealElemgy It’s so fucking good. +05/13/2018,Actors,@Nick_Wechsler,"RT @fightfortheftr: Hey + +twitter + +this + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +that + +#NetNeutrality + +ends + +on + +June 11 + +unless…" +05/12/2018,Actors,@Nick_Wechsler,A pear is just juicy sand. +05/10/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: The only reason this officer was fired was because his brutality was exposed before the world. + +This literally happened 6 m…" +05/10/2018,Actors,@Nick_Wechsler,"(I am aware of the fact that you won’t respond to this, either.)" +05/10/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: Dear @WaffleHouse, + +Listen to me. + +I wanna be clear on something. + +I'm done with your corporation. Permanently. + +I'm aski…" +05/10/2018,Actors,@Nick_Wechsler,"Hey, @isaora, where the fuck is my stuff and how are you still in business, since you notoriously do not respond to… https://t.co/WsdDyEF4js" +05/09/2018,Actors,@Nick_Wechsler,@justslogan @jeneuston ❤️ you two. +05/09/2018,Actors,@Nick_Wechsler,HOAX! https://t.co/sXZlU9IOin +05/09/2018,Actors,@Nick_Wechsler,"Congrats to one of my favorite dudes ever, @GlennHowerton. https://t.co/7gWRHT3AqL" +05/08/2018,Actors,@Nick_Wechsler,Jesus Christ. https://t.co/Hp7oZxOw5F +05/07/2018,Actors,@Nick_Wechsler,RT @ShaunKing: Imagine him getting called to a wealthy white home and acting like this. https://t.co/TGMrOke0le +05/06/2018,Actors,@Nick_Wechsler,"Holy Christ, @donaldglover is incredible. + +https://t.co/fXVywfg8Pq" +05/05/2018,Actors,@Nick_Wechsler,"Wait, what the fuck? https://t.co/PmhKmTjTh5" +05/05/2018,Actors,@Nick_Wechsler,RT @SarahKSilverman: Im so goddamned sick of this- these cops should be fired & punished. shit HAS to change. Bad cops should be the ones s… +05/05/2018,Actors,@Nick_Wechsler,Do not spray this directly into your urethra no matter how stained the inside of your bladder theoretically is. And… https://t.co/YvCHnCa66t +05/02/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: Trump's doctor looks like if Carly Simon and George Carlin fell into a Brundlepod. https://t.co/an9j4CsZgT +05/02/2018,Actors,@Nick_Wechsler,"Oh, no way, they award the Nobel Peace Prize for being a lying sack of shit? https://t.co/umianG8tuS" +05/02/2018,Actors,@Nick_Wechsler,@bejohnce Please make posters of this available at the show. +04/30/2018,Actors,@Nick_Wechsler,"@realDonaldTrump Fuck you, like, a lot." +04/29/2018,Actors,@Nick_Wechsler,"@TyLabine Happy birthday, man!" +04/29/2018,Actors,@Nick_Wechsler,@RicaSham @EmilyVanCamp I’m in the upcoming season of @nbcshadesofblue. +04/29/2018,Actors,@Nick_Wechsler,@suchandsome I know! I miss that one. +04/28/2018,Actors,@Nick_Wechsler,@XLRECORDINGS Can I get some help tracking down my order? It was supposed to have arrived on the 26th but never did… https://t.co/jEsg6hhYEw +04/28/2018,Actors,@Nick_Wechsler,"So, uh, @isaora, you ever gonna respond to my question about where my order is? It’s been a month and no word. Guys… https://t.co/mr1g1snNNN" +04/28/2018,Actors,@Nick_Wechsler,"There is no bottom. He is endlessly, maddeningly awful. https://t.co/EAJ9VP95i8" +04/24/2018,Actors,@Nick_Wechsler,"@terriB50 @kumailn Yeah, grow up, Trump!" +04/24/2018,Actors,@Nick_Wechsler,RT @kumailn: Watch this twice. Once just her hands. Once just her face. You don’t have to look at his face. https://t.co/7h9AumXMYv +04/23/2018,Actors,@Nick_Wechsler,"Has he, um...seen the first one? https://t.co/Uaz4Ee5NTL" +04/22/2018,Actors,@Nick_Wechsler,Happy Earth Day! https://t.co/StT3cdpUuL +04/20/2018,Actors,@Nick_Wechsler,@LykkeLi ❤️ +04/18/2018,Actors,@Nick_Wechsler,Yesss!! But also: grosss!! https://t.co/y7hjxFoRT1 +04/18/2018,Actors,@Nick_Wechsler,"Oh, would you just buy your @ATXFestival badges already? https://t.co/8eaPlnVKV0" +04/18/2018,Actors,@Nick_Wechsler,"RT @TheDweck: Yeah, you do. That’s literally what the Civil War was. https://t.co/leIGOLOlCU" +04/17/2018,Actors,@Nick_Wechsler,@jeneuston Aw. I didn’t know you guys were buddies! He’s lovely. +04/16/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA. Oh my God. So much to unpack in these 43 seconds. Don't miss the part when he says he'd… +04/14/2018,Actors,@Nick_Wechsler,"RT @ChrisMurphyCT: So Mattis doesn't want to strike Syria because it risks dragging U.S. into a broader war with Russia and Iran, but he ha…" +04/13/2018,Actors,@Nick_Wechsler,@monicabarbaro 👍🏽 +04/12/2018,Actors,@Nick_Wechsler,@KaitlinOlson Yup. +04/11/2018,Actors,@Nick_Wechsler,This is fun. https://t.co/Z1q8vXdv9F +04/11/2018,Actors,@Nick_Wechsler,@monkeyforsallie Right?! Fuck. +04/10/2018,Actors,@Nick_Wechsler,I cannot fucking wait. https://t.co/fbDYIqtKI3 +04/10/2018,Actors,@Nick_Wechsler,RT @JoyAnnReid: And the @GOP quest to erase all memory of Michael Cohen begins... https://t.co/art9oqbimH +04/09/2018,Actors,@Nick_Wechsler,RT @SethAbramson: Yeah they'll understand you exempted your daughter from all of this https://t.co/5Xg9Ml9eCJ +04/08/2018,Actors,@Nick_Wechsler,"RT @JuddLegum: To review: There was a fire in the residential section Trump Tower where there are no sprinklers, in part because Trump lobb…" +04/08/2018,Actors,@Nick_Wechsler,@allison_pogan @unrealfehr @MajandraD @ShiriAppleby @ColinHanks @KatieHeigl Awesome! +04/08/2018,Actors,@Nick_Wechsler,RT @BigBoyler: Our toddler’s favorite colours are green and red. But you probably already knew that since he won’t shut the fuck up about i… +04/06/2018,Actors,@Nick_Wechsler,"@unrealfehr “Basically” is a generous way of saying “definitely, while I was asleep.” + +Love you, bro." +04/05/2018,Actors,@Nick_Wechsler,@BigBlackDelta @MellowdroneBand Holy shit! +04/05/2018,Actors,@Nick_Wechsler,@SLSparks12 Ha. ❤️ +04/04/2018,Actors,@Nick_Wechsler,"I’m in a thing, so check it out or something or whatever, you don’t have to never mind. https://t.co/rDczCeHfHX" +04/04/2018,Actors,@Nick_Wechsler,"@jimmisimpson Also: howdy to you, my digital bro. Glad to see you’re working as often as you deserve. Hope you’re great, man." +04/04/2018,Actors,@Nick_Wechsler,@jimmisimpson I’ve had one of my alarms named after him for probably about a year now to remind me to hang with him… https://t.co/B8zpGbn97Y +04/04/2018,Actors,@Nick_Wechsler,"@jimmisimpson He is. I worked with him years ago, before everybody finally realized how goddamn good he was and sta… https://t.co/GMv1hO1A5B" +04/04/2018,Actors,@Nick_Wechsler,"June 17th, suckers. https://t.co/t4rFa2ogQA" +04/04/2018,Actors,@Nick_Wechsler,@jimmisimpson I love that dude. +06/08/2018,Actors,@christabrittany,"RT @ava: Here are the 25 women directors who helmed #QUEENSUGAR over our three seasons. For 21 of them, it was their first episode of telev…" +06/07/2018,Actors,@christabrittany,"RT @tferriss: ""Anger is often what pain looks like when it shows itself in public."" — Krista Tippett (@kristatippett)" +06/07/2018,Actors,@christabrittany,"My new single is out today, anywhere you get your music! ""Unicorn"" by pour vous: https://t.co/JUrk12QvlK @JohnnyWhatMusic" +06/06/2018,Actors,@christabrittany,Misogynistic men hate me. I love that. +06/05/2018,Actors,@christabrittany,"The Valley, playing this weekend ❤️ https://t.co/NFx6y0Tjtt" +06/03/2018,Actors,@christabrittany,@SOHN @JohnnyWhatMusic is the best at that. https://t.co/9AygY8vXB1 +06/02/2018,Actors,@christabrittany,@zeldawilliams Best thread in Twitter history?! 🙌 +06/01/2018,Actors,@christabrittany,RT @tferriss: “The stupidity of people comes from having an answer for everything. The wisdom of the novel comes from having a question for… +05/29/2018,Actors,@christabrittany,god bless the internet. +05/29/2018,Actors,@christabrittany,way to go @abc for cancelling Roseanne. it is the age of social accountability. racism will not be tolerated 🙅‍♀️ +05/28/2018,Actors,@christabrittany,really really over it: mumble rap. really really into it: lo-fi hip hop. +05/27/2018,Actors,@christabrittany,It’s never too late to have a happy childhood. -Tom Robbins +05/27/2018,Actors,@christabrittany,can’t wait til it’s 2025 and @elonmusk has built us an underground bullet train so I can see my Malibu friends more than 3x a year +05/27/2018,Actors,@christabrittany,WOW get ready for life to improve 1000000%!!! how about Rufus? Rhino?Frog? :) https://t.co/YQe28ispFV +05/24/2018,Actors,@christabrittany,"First, “Your Body Is A Wonderland” was the soundtrack to countless high school makeouts. Now, memes of this music v… https://t.co/Aoc3fsEnjQ" +05/23/2018,Actors,@christabrittany,RT @katedowdcasting: We're looking for a transgender actress for a major part in a US TV series - if this is you please do get in touch! An… +05/18/2018,Actors,@christabrittany,RT @Travon: Dear 2A parents: sit your kids down tonight and explain to them why it's more important for you to have unregulated unfettered… +05/18/2018,Actors,@christabrittany,"RT @bryanboy: No. of mass shootings in 2018 (as of 15 May): + +🇦🇺 0 +🇳🇿 0 +🇩🇪 0 +🇬🇧 0 +🇧🇪 0 +🇦🇹 0 +🇩🇰 0 +🇳🇱 0 +🇸🇪 0 +🇫🇮 0 +🇮🇪 0 +🇨🇦 0 +🇱🇺 0 +🇨🇭 0 +🇺🇸 99*" +05/18/2018,Actors,@christabrittany,@IddoG 🤦‍♀️😢 +05/18/2018,Actors,@christabrittany,"RT @marwilliamson: Anytime you have a problem with someone, think of them and say this Hawaiian Ho'oponopono prayer: +Please forgive me. +I’m…" +05/16/2018,Actors,@christabrittany,"blue/black vs. white/gold, laurel vs. yanny are teaching us all that sensory experience is subjective/malleable! I… https://t.co/CsR0t3cjJK" +05/16/2018,Actors,@christabrittany,"I make a small cameo in the upcoming @GrandHotelABC, check out the trailer here and let me know what you think! https://t.co/nUmR6tbm84" +05/12/2018,Actors,@christabrittany,those moments when it feels like your @Spotify Discover Weekly playlist actually reads your mind 😍 +05/12/2018,Actors,@christabrittany,RT @marwilliamson: Prepare yourself inwardly for a life of greatness. Sometimes we’re so intent on not getting ahead of ourselves that we r… +05/11/2018,Actors,@christabrittany,#grandhotel is a show about rich people behaving badly. I happen to have a particular fondness for shows like this!… https://t.co/M5QGPuphbS +05/11/2018,Actors,@christabrittany,Congratulations to @EvaLongoria @kenolin1 and the entire cast and crew of Grand Hotel on the pickup!! I make a litt… https://t.co/NApT95hzcc +05/11/2018,Actors,@christabrittany,Dreams DO come true!! 🙌🙌🙌 https://t.co/Y03RU9V8kV +05/07/2018,Actors,@christabrittany,"I do hope you’re inspired by this video, Mr. West. Seems you’ve been a little confused of late... https://t.co/gHPdZaI5ew" +05/06/2018,Actors,@christabrittany,Donald Glover is the only Donald anyone should be talking about. Goddamn 🔥 +05/06/2018,Actors,@christabrittany,Donald Glover just blows my mind over and over and over again. +05/05/2018,Actors,@christabrittany,My film Dangerous Seduction (FKA The Queen of Sin) premieres tonight on @LifetimeMovies 8/7 c! https://t.co/8Drtfit5KC +05/04/2018,Actors,@christabrittany,Thanks for the love Gina! 💕 https://t.co/VxEBvWRFsc +05/03/2018,Actors,@christabrittany,"RT @Incendoprod: Don't miss the US premiere of #DangerousSeduction AKA ""The Queen of Sin"" - starring @christabrittany with Richard de Klerk…" +05/01/2018,Actors,@christabrittany,"we spoke to @JimEWood @axs about our new music video; ""For me, an interesting element was being crucified on a cros… https://t.co/cty4NX2Y3h" +04/30/2018,Actors,@christabrittany,RT @marwilliamson: On the level of the body all of us are different; on the level of the spirit all of us are one. The only way we will sur… +04/24/2018,Actors,@christabrittany,Thanks for the love @HollywoodLife ! https://t.co/Zi7sCYNNuO +04/24/2018,Actors,@christabrittany,"'Scorpio' is our erotic, hypnotic anthem to empowered female sexuality. We are celebrating the woman who enjoys sex… https://t.co/kJR7cqGVas" +04/23/2018,Actors,@christabrittany,"first music video for my single “Scorpio” is out now! 🌟 watch it here, and please do yourself the favor of watching… https://t.co/k2y1ncy14o" +04/15/2018,Actors,@christabrittany,"RT @ladygunn: “Why can’t you love me/Like you love your drug…?” The eternal question. Check out ""Sober,"" a heart-wrenching new song by Pour…" +04/05/2018,Actors,@christabrittany,incredible! Bravo KSA 👏👏👏 https://t.co/uICzYbNM43 +04/03/2018,Actors,@christabrittany,Congratulations Sallie!! can’t WAIT for more!! 💖💕 https://t.co/Z2Jtp0APp7 +04/03/2018,Actors,@christabrittany,I remember Darren singing and playing his acoustic guitar in the passenger van going to and from set. He was so kin… https://t.co/xPXllA2AbU +03/15/2018,Actors,@christabrittany,twitter! my debut single “The Flood” is out now. listen to it here: https://t.co/bkxQA1Jqs8 +03/14/2018,Actors,@christabrittany,"Loved speaking with @axs about my new music with @JohnnyWhatMusic, pour vous. thank you @JimEWood !https://t.co/miWl1GuK7f" +03/14/2018,Actors,@christabrittany,"RT @JimEWood: In my new @axs interview, @christabrittany and Johnny What discuss their ethereal, ""Trip Pop"" new project, Pour Vous: https:/…" +02/25/2018,Actors,@christabrittany,RT @Emma4Change: A gentle reminder that all we are aiming for here is stricter gun laws that make it harder for people to get guns (because… +02/07/2018,Actors,@christabrittany,"RT @Incendoprod: The trailer for ""The Queen of Sin"" is out! The movie stars @christabrittany with Richard de Klerk @ambergoldfarb @IngaCadr…" +01/24/2018,Actors,@christabrittany,for more updates on my new music follow the pour vous Instagram: https://t.co/D55QuMjYPF +01/24/2018,Actors,@christabrittany,the news is out about my new project: https://t.co/LSljcboYiq +12/20/2017,Actors,@christabrittany,@justinchon @GookFilm I couldn't stop crying. and saying the f word.... :) congrats mate. And big hugs!! +12/20/2017,Actors,@christabrittany,just want to quickly point everyone's attention to @GookFilm directed by and starring @justinchon. it is a stunner.… https://t.co/JHXhV9cDPD +12/14/2017,Actors,@christabrittany,"RT @Travon: In case it didn't click, last night in Alabama is why the entire Republican party works incredibly hard to keep black people fr…" +12/14/2017,Actors,@christabrittany,RIP open internet in the Divided States of America +12/14/2017,Actors,@christabrittany,"Eminem the prophet called it in 2002: the FCC won't let me be or let me be me, so let me see, they try to shut me down on MTV." +12/09/2017,Actors,@christabrittany,"RT @PopHorrorNews: Cult Hit ONE OF US, Starring Christa B. Allen (@christabrittany) is Coming To #DVD in December! #OneOfUs #Horror #Thrill…" +11/27/2017,Actors,@christabrittany,@iamthearbiter @zeldawilliams the debate over whether men or women are more objectified in the media is a) not a de… https://t.co/wmgl5GqfxU +11/27/2017,Actors,@christabrittany,"@iamthearbiter @zeldawilliams Also those dudes are in speedos, arguably a little closer to the definition of the wo… https://t.co/bsgSbKQvmn" +11/27/2017,Actors,@christabrittany,@iamthearbiter @zeldawilliams in the vastness of the internet you can find examples of absolutely any point of view… https://t.co/iuJgGsH6fY +11/27/2017,Actors,@christabrittany,I don't know but they certainly don't say that shit about men https://t.co/EP55CxcBNn +11/25/2017,Actors,@christabrittany,"""Whatever our souls are made of, his and mine are the same"" https://t.co/YzTnK2jbL7" +11/25/2017,Actors,@christabrittany,"""It was love at first sight, now it's love at every sight."" https://t.co/YzTnK2jbL7" +10/30/2017,Actors,@christabrittany,@justinhartley Congratulations Justin and Chrishell!! All the best to you both! 💖 +09/30/2017,Actors,@christabrittany,https://t.co/5TjiorsXbi to donate to Puerto Rico recovery efforts ❤️ +09/18/2017,Actors,@christabrittany,"congratulations to my former on screen dad, my David Clarke-- @MrJamesTupper-- on your Emmy win for Big Little Lies!!! 🌹" +09/05/2017,Actors,@christabrittany,"RT @MDMOLINARI: Protect & treat all victims of family violence & sexual assault Check out ""VIP Young at Heart Event"" https://t.co/Y6Mn6wJpt…" +09/04/2017,Actors,@christabrittany,happy birthday to the queen. 🐝@Beyoncé https://t.co/DQE5E4qCrI +08/12/2017,Actors,@christabrittany,"@sevdaliza unbelievable record. so smart, so sexy. I can't stop listening" +08/03/2017,Actors,@christabrittany,tune in to @theedgenz to hear me on with @JonoAndBen between 5-5:30pm today! +08/03/2017,Actors,@christabrittany,thanks for the suggestions! can't wait to explore 🌈🌱 +08/02/2017,Actors,@christabrittany,"hey twitter, what do you love to do in Auckland, NZ? Just arrived! 👋" +07/30/2017,Actors,@christabrittany,@BaldoriaDTLA favorite new restaurant in LA. oh. my. GOD!!! 😭😍🙌 +07/19/2017,Actors,@christabrittany,"fun fact!in most of the world,a horn honk indicates potential danger to other vehicles.inLA, it translates roughly to ""out of my way loser!""" +07/17/2017,Actors,@christabrittany,"RT @beautybanter: #BanterBabe @christabrittany has a pretty classic beauty vibe, read up on her can't-live-without beauty products +https:/…" +07/10/2017,Actors,@christabrittany,@kyle_newman You can! visit @the14thfactory and you can walk through it +07/01/2017,Actors,@christabrittany,currently SOBBING watching #okja. please send tissues. and hugs. +06/23/2017,Actors,@christabrittany,tired but inspired +06/18/2017,Actors,@christabrittany,RT @Attenboroughs_D: Karma's a bitch. https://t.co/LM7ZVtZGUD +06/16/2017,Actors,@christabrittany,hey but sometimes laughing is the only way to keep from crying +06/16/2017,Actors,@christabrittany,trump's lawyer gets a lawyer? the Russian doll metaphor is too easy to make +06/15/2017,Actors,@christabrittany,"RT @TheSchoolOfLife: 'The world is a book, and those who do not travel read only a page.' - Augustine" +06/12/2017,Actors,@christabrittany,"""hi sorry I'm not actually working for free at the moment!"" -email only artists ever have to send" +06/12/2017,Actors,@christabrittany,fuck you pay me +06/12/2017,Actors,@christabrittany,when u has worked 2 decades making a valuable name for yourself then all of a sudden people ask u to promo their shit for free. #no +06/12/2017,Actors,@christabrittany,when @EricRayDavidson catches me hangry https://t.co/b53XLfdvjL +06/02/2017,Actors,@christabrittany,art is universal because suffering is universal. +06/02/2017,Actors,@christabrittany,this new @alt_j album is exceptional. way to be consistently brilliant across all albums 👏 +06/01/2017,Actors,@christabrittany,@David_Bush I mean... https://t.co/VViR2pZ1zQ +06/01/2017,Actors,@christabrittany,RT @elonmusk: Am departing presidential councils. Climate change is real. Leaving Paris is not good for America or the world. +06/01/2017,Actors,@christabrittany,"clean, renewable energy is the future. why is this concept so hard for some to grasp?!" +06/01/2017,Actors,@christabrittany,America has absolutely lost the plot. +06/01/2017,Actors,@christabrittany,grab mother earth by the pussy #parisclimateaccord +05/17/2017,Actors,@christabrittany,feels https://t.co/hrbGpCRGkA +05/13/2017,Actors,@christabrittany,"@H_Esteve death, taxes, and the twitter will never be short of sass (the only three things that are certain)" +05/13/2017,Actors,@christabrittany,"cashmere, silk, and his hands (the only three things that ought to ever touch my skin)" +05/12/2017,Actors,@christabrittany,RT @NobodysChild: ⭐️ Spotted on ⭐️: @ChristaBrittany https://t.co/47J7saRZnQ +05/06/2017,Actors,@christabrittany,"trump supporters I see eating tacos and drinking margaritas for #cincodemayo today, I'll eat their tacos, drink their margs and make em pay💰" +05/05/2017,Actors,@christabrittany,"RT @existentialcoms: Sometimes I think humanity is alright, but then I meet a dog and I'm like, ""oh, that's right, humanity is garbage.""" +04/22/2017,Actors,@christabrittany,at @amoebamusic with my boyfriend buying his band's record on vinyl for #RecordStoreDay. my inner hipster is so happy +04/21/2017,Actors,@christabrittany,"""I read up on string theory today and I'm pretty sure that it's you. You're my favorite little quark.""" +03/19/2017,Actors,@christabrittany,RT @chrisdelia: Fuck boring people. I love weirdos. FUCK I LOVE WEIRD ASS MOTHERFUCKERS. +03/19/2017,Actors,@christabrittany,¯\_(ツ)_/¯ +03/14/2017,Actors,@christabrittany,Think twice before your journey down the rabbit hole—you might not come back. #OneOfUs is out now on Digital! https://t.co/RvTflEaacB +03/09/2017,Actors,@christabrittany,"when you're in the movie but it still scares the hell outta you https://t.co/kgzJUAtnuD ""One of Us"" comes out this Tuesday March 14! ⚡️" +03/03/2017,Actors,@christabrittany,I miss you every day New Orleans. https://t.co/YTDiXoltcs +03/03/2017,Actors,@christabrittany,New Orleans is the unmitigated jewel of the United States. +01/30/2017,Actors,@christabrittany,RT @aplusk: If standing for the America that doesn't discriminate makes me a left wing actor who is out of touch. Fuck it. +01/23/2017,Actors,@christabrittany,RT @tylershields: @christabrittany Shut down Santa Monica beach for some rings https://t.co/v0RNj7Oi3A +01/23/2017,Actors,@christabrittany,don't hang up the gloves. show your support for @ppfa! link to purchase this tee in my bio.… https://t.co/o9vp0r4Ufk +12/21/2016,Actors,@christabrittany,#passengers is titanic in space. so obviously I loved it +12/12/2016,Actors,@christabrittany,"RT @pattonoswalt: ""Stick to entertainment and shut your yap about politics! And stop criticizing the reality TV host I voted into the White…" +12/03/2016,Actors,@christabrittany,i want to work with tom tykwer +12/02/2016,Actors,@christabrittany,RT @existentialcoms: The fact that Hillary won the popular vote is going to be a good trivia question on quiz night in the apocalyptic wast… +11/29/2016,Actors,@christabrittany,RT @RostrumRecords: .@christabrittany stars in @bravesofficial’s video for #MeTheThief! Have you seen it yet? https://t.co/BwRYr48h0I https… +11/29/2016,Actors,@christabrittany,"less than a day to go, over 90% funded. please click to support bringing clean drinking water to those in need! https://t.co/QBI8qH4m0W" +11/29/2016,Actors,@christabrittany,clean drinking water is a basic human right. please help @msrgear bring clean water to communities around the world! https://t.co/QBI8qH4m0W +11/25/2016,Actors,@christabrittany,"RT @iJesseWilliams: Today white ""nationalists"" give thanks that indigenous people provided food, shelter & job training to sickly immigrant…" +11/24/2016,Actors,@christabrittany,RT @MarkRuffalo: This will end in more bloodshed and now will be enshrined in Obama's legacy. Power Imbalance at the Pipeline Protest https… +11/10/2016,Actors,@christabrittany,RT @DeepakChopra: Perhaps the future no longer depends on a single leader but on each of us who can quietly dedicate our life to light love… +11/09/2016,Actors,@christabrittany,good mourning. +11/09/2016,Actors,@christabrittany,"RT @GoIntoTheStory: I know this. Now more than ever, we need STORYTELLERS. Writers who humanize The Other, who move us beyond fear to openn…" +11/09/2016,Actors,@christabrittany,crying +11/09/2016,Actors,@christabrittany,RT @Paxmee: Tell me again how rape and sexual assault accusations will ruin a man's career +11/09/2016,Actors,@christabrittany,"RT @tromano: ANYONE BUT A FUCKING WOMAN, SAYS AMERICA. ANYONE." +11/09/2016,Actors,@christabrittany,"anyone with info on the candle light vigil being held tomorrow for the death of our country, let a sistah know" +11/09/2016,Actors,@christabrittany,too bad Alain de Botton can't be president https://t.co/ZEJOooZyiL +11/09/2016,Actors,@christabrittany,"RT @annetdonahue: What's even more demoralizing is knowing how hard Hillary's worked and how qualified she is, and yet... And every woman k…" +11/09/2016,Actors,@christabrittany,"@KevTheUprCTOTY fair enough, I see your point. but this is NOT the guy to lead the revolt!! he is dumb and dangerous!!" +11/09/2016,Actors,@christabrittany,Brexit --> Trumpocalypse --> ???!! +11/09/2016,Actors,@christabrittany,"this is unbelievable, America is sick. even if the orangutan loses, this many racist, sexist, xenophobic humans on our soil is bad bad bad" +11/09/2016,Actors,@christabrittany,👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👦🏾👩🏼 +11/09/2016,Actors,@christabrittany,"great read, thank you Tim 👏👏 https://t.co/zdHr8iJWi3" +10/31/2016,Actors,@christabrittany,RT @LeoDiCaprio: #BeforetheFlood starts now on @NatGeoChannel. Tune in and join the movement. +10/25/2016,Actors,@christabrittany,so inspiring! A Political Education - A short film by Emma Holly Jones https://t.co/eef5FobPVT @emmahollyjones +10/24/2016,Actors,@christabrittany,@moonlightmov is magnificent. go see it. +10/24/2016,Actors,@christabrittany,"start writing acceptance speeches @NaomieHarris, that performance was unbelievable!! @moonlightmov 🏆🏆🏆" +10/19/2016,Actors,@christabrittany,RT @RostrumRecords: Have you seen @bravesofficial’s video for #MeTheThief starring @christabrittany yet? https://t.co/BwRYr4pSpi https://t.… +10/19/2016,Actors,@christabrittany,RT @jayrmonty: I'm on the Telly tonight! Hoorah! Watch @NBCThisisUs and meet Olivia 💥 +10/12/2016,Actors,@christabrittany,"everyone should be watching @AVAETC's film @13THFilm on @netflix. so powerful, so beautifully made. thank you Ava." +10/09/2016,Actors,@christabrittany,no objections https://t.co/qtcJ9ab6MX +10/08/2016,Actors,@christabrittany,"RT @dbernstein: Meanwhile, in the world of decent people, President Obama signed the Sexual Assault Survivors’ Rights Act today." +10/08/2016,Actors,@christabrittany,I just made a donation to the St. Luke Foundation for Haiti. go to https://t.co/QvFEZngSas to do the same. @stlukehaiti #hurricanematthew +10/07/2016,Actors,@christabrittany,breathing a sigh of relief as DJT buffoon #grabembythepussy comment has guaranteed he won't be president. I already had one foot in Canada +10/07/2016,Actors,@christabrittany,"Is there even evidence of prior presidential nominees uttering the word ""pussy"" referring to anything other than a feline?!#grabembythepussy" +10/07/2016,Actors,@christabrittany,RT @UmFrankly: Donald Trump just built a wall around all of our Bushes +10/07/2016,Actors,@christabrittany,"""grab em by the pussy."" when faced with life's challenges, this will be my new mantra" +10/07/2016,Actors,@christabrittany,laughing soooo hard at our current state of political affairs (just to keep from crying) +09/25/2016,Actors,@christabrittany,when @NicolasJaar drops his LP five days early... 🙌 +09/10/2016,Actors,@christabrittany,currently watching every Les Blank doc ever +08/11/2016,Actors,@christabrittany,can't get enough of @whoismrrobot +08/09/2016,Actors,@christabrittany,RT @aerialphysique: Aerial Physique's August Aerialist of the month the lovely CHRISTA ALLEN @christabrittany!… https://t.co/1f4ilQOr19 +07/08/2016,Actors,@christabrittany,"RT @smashleybell: ""Resisting"" arrest or being compliant, it appears to me that if you're black in America the… https://t.co/vNiGC3Wvvc" +07/07/2016,Actors,@christabrittany,RT @franklinleonard: How many others when the cameras weren't rolling? #BlackLivesMatter +07/07/2016,Actors,@christabrittany,we are all so much more alike than different +07/07/2016,Actors,@christabrittany,"I cannot believe we still live in a world where our fear of one another's perceived ""differences"" results in murder" +07/07/2016,Actors,@christabrittany,"@iJesseWilliams said it best: ""we know that police somehow manage to deescalate, disarm and not kill white people everyday""" +06/29/2016,Actors,@christabrittany,RT @BabaRamDass: https://t.co/PJ5RzETXpQ +06/25/2016,Actors,@christabrittany,"on timothy leary, on ram dass. a new perspective on death and loss of loved ones. EXCELLENT new doc! Dying to Know https://t.co/FbzzTaXucc" +06/24/2016,Actors,@christabrittany,@Blitzkreigle @MonkeylandAudio can't wait to see this film!! +06/24/2016,Actors,@christabrittany,RT @SoVeryBritish: We're going to need a bigger kettle... +06/19/2016,Actors,@christabrittany,RT @JohnMayer: I’m not complicated. It just takes a minute. +06/15/2016,Actors,@christabrittany,if you are a person who believes in facts and statistics- undeniable truths- you cannot possibly argue against the need for #gunreformNOW +06/14/2016,Actors,@christabrittany,RT @GavinNewsom: In the past 72 hours...93 people have died and 205 people have been injured due to gun violence in America. This does not… +06/12/2016,Actors,@christabrittany,RT @GhostPanther: Almost 300k have died & over a million shot in last ten years & pro-gun people want nothing done or more guns? That's ur… +06/12/2016,Actors,@christabrittany,RT @EdwardNorton: A nice way to stand with the community in Orlando: https://t.co/pSNbZxDDMc +06/12/2016,Actors,@christabrittany,there are no words for how sad this is. prayers are cool but what would really be helpful is #GunReformNOW #PrayForOrlando +06/06/2016,Actors,@christabrittany,@NickGoldson of course Beyoncé !! 👑🐝 +06/06/2016,Actors,@christabrittany,"Cate Blanchett, Helena Bonham Carter, Tilda Swinton, Helen Mirren. #favorites #dreamgirls" +05/26/2016,Actors,@christabrittany,@emmahollyjones I thought the same re: talented mr ripley. and that soundtrack.... !! 🙌 +05/25/2016,Actors,@christabrittany,"GO SEE @biggersplashuk !! it's sexy, smart, funny; brilliantly paced, directed, acted, edited. perfect film 🙌" +05/21/2016,Actors,@christabrittany,RT @askjillian: See this movie. @ZoeRCassavetes is brilliant. Must be a family thing. #John #Nick #Gena #film https://t.co/ADwQI0hkQr +04/11/2016,Actors,@christabrittany,"RT @dodo: Yes, this is how baby elephants are trained for the circus. https://t.co/5rDsblzL8o https://t.co/Qlqeq3JD0p" +04/08/2016,Actors,@christabrittany,"RT @DalaiLama: Creating a better world will require will-power, vision and determination. And for that we need a strong sense that humanity…" +04/04/2016,Actors,@christabrittany,#NowPlaying Rain by Dustin O'Halloran ♫ https://t.co/X8ERrqqnYD +04/04/2016,Actors,@christabrittany,@DustinOHalloran is the very very best 🎼💕 +04/03/2016,Actors,@christabrittany,today @JakeTAustin https://t.co/XiOL15zBfE +04/03/2016,Actors,@christabrittany,7 years ago @JakeTAustin https://t.co/4hBIYmrQEb +04/02/2016,Actors,@christabrittany,Come now we start filming at 4 +04/02/2016,Actors,@christabrittany,Hey Silicon Valley! If you're college age and want to be in a movie with me come to 1632 Mariani drive 94087. wear something fun! Frat party +03/31/2016,Actors,@christabrittany,#NowPlaying Love On Top by Beyoncé best song ever ♫ https://t.co/gHkJH1VHtb +03/20/2016,Actors,@christabrittany,subtle is sexy +03/20/2016,Actors,@christabrittany,just once I'd like to meet a vegan who doesn't ever talk about it. +03/18/2016,Actors,@christabrittany,RT @beepbeauty: Had such a blast interviewing the beautiful @christabrittany today for https://t.co/YlPuQjmL0T. Video coming soon... +03/18/2016,Actors,@christabrittany,RT @RowlyDennis: Check out my Shoot with Actress @christabrittany from revenge and watch the interview at https://t.co/Kf8q2AOQ2F +03/11/2016,Actors,@christabrittany,Yay! Congratulations @Nick_Wechsler !! https://t.co/DxYUdy3snO +02/29/2016,Actors,@christabrittany,RT @LibyaLiberty: If you're an American confusedly watching the darkest forces of ur nation rally behind a demagogue-maybe u can understand… +02/29/2016,Actors,@christabrittany,Congratulations Leonardo Dicaprio!! So much respect for using your acceptance speech to talk about #climatechange https://t.co/5m5juPC8Nd +02/29/2016,Actors,@christabrittany,YES!!! #MarkRylance +02/29/2016,Actors,@christabrittany,"RT @franklinleonard: Instead of an #Oscars, can we just give Mark Rylance a ton more major roles? Like, for our benefit." +02/29/2016,Actors,@christabrittany,"RT @emilynussbaum: Mark Ruffalo is golden in both of his excellent films about journalism, Spotlight and 13 Going On 30." +02/29/2016,Actors,@christabrittany,no idea how anyone could pick just 1 winner for Supporting Actor #oscar. ALL performances were stunning! esp. Mark Rylance & Christian Bale +02/29/2016,Actors,@christabrittany,"#Oscar predictions: Leo wins best actor, Brie wins best actress, The Big Short wins best picture" +02/28/2016,Actors,@christabrittany,RT @Kurt_Vonnegut: The practice of art isn't to make a living. It's to make your soul grow. +02/23/2016,Actors,@christabrittany,"RT @thatdonsimpson: .@thatdonsimpson's review of DAY OUT OF DAYS +#DayOutOfDays @ZoeRCassavetes https://t.co/8LLQU5LtWu https://t.co/sWS3An…" +06/27/2018,Actors,@smashleybell,@zeldawilliams I love how stressed this is making you! 😹 +06/27/2018,Actors,@smashleybell,@zeldawilliams OR they develop the film and then take a picture on their phones......? This has tired me out just thinking about it. +06/27/2018,Actors,@smashleybell,.@MariahCarey could never steal from me. I’d give it to her! https://t.co/Ca5xwKjjGd +06/27/2018,Actors,@smashleybell,@zeldawilliams That sounds stressful. +06/27/2018,Actors,@smashleybell,@zeldawilliams But also Iddo shoots on 35mm and scans the negative onto his laptop. He keeps both the negative and the digital file. +06/27/2018,Actors,@smashleybell,@zeldawilliams It’s an app babe. Lol +06/23/2018,Actors,@smashleybell,@ava @PressSec @POTUS With hearts..... SCREAMING 😭😭😭 +06/21/2018,Actors,@smashleybell,"RT @EricHaywood: First: There was no hidden message. + +Then: The message refers to the media. + +Me: 🤔🤔🤔 https://t.co/qJmaDOwTRU" +06/20/2018,Actors,@smashleybell,RT @Cyndyquills: Attention white people! Here are the jobs y’all were claiming immigrants were stealing. Now is your time to apply and shin… +06/17/2018,Actors,@smashleybell,6 years married ❤️ Happy Anniversary @IddoG https://t.co/QnlgtYOY7R +06/16/2018,Actors,@smashleybell,"@KR9582 If you had to guess, what do you think his IQ is?" +06/16/2018,Actors,@smashleybell,I haven’t forgot about the IQ thing. The word you’re looking for is “COUNTRY’S”. https://t.co/2eeriAJ2pL +06/15/2018,Actors,@smashleybell,Hi 👋🏽 https://t.co/mtNBcZIzHK +06/14/2018,Actors,@smashleybell,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Actors,@smashleybell,One my favorite places to eat in Los Angeles. No… https://t.co/K0HCMRdcuP +06/13/2018,Actors,@smashleybell,"@avahodson Don’t worry, I took a picture https://t.co/yv4ej4Iqbv" +06/13/2018,Actors,@smashleybell,Thought you didn’t watch CNN? https://t.co/NXkShBxwFw +06/12/2018,Actors,@smashleybell,"Newport Beach 🖤 +📷@joeytierney https://t.co/RUSphtzgK2" +06/12/2018,Actors,@smashleybell,When you question someone’s IQ but use the wrong “too”. https://t.co/GPeRlJW0it +06/12/2018,Actors,@smashleybell,@davidwalliams Your best tweet EVER. +06/11/2018,Actors,@smashleybell,😎 https://t.co/GIXEgYBCoh +06/08/2018,Actors,@smashleybell,"RT @zeldawilliams: To anyone out there for whom living hurts so badly, the alternative seems like a viable option: I am so sorry. This life…" +06/08/2018,Actors,@smashleybell,Family portrait 🖤 https://t.co/kr9WxoYBKw +06/07/2018,Actors,@smashleybell,Pier pressure ⛱ @ Malibu Farm https://t.co/MBmZTGjafb +06/06/2018,Actors,@smashleybell,New post on https://t.co/3bpxonNmwk 🖤 https://t.co/rv0eLNFoBa +06/06/2018,Actors,@smashleybell,"RT @jonfavs: Nearly 120k voters omitted from the voting rosters in LA County because of a printing error. Among other things, this could af…" +06/04/2018,Actors,@smashleybell,Yasssss @CynthiaEriVo!!! 👏🏽👏🏽👏🏽 https://t.co/xLZT40ZZhq +05/30/2018,Actors,@smashleybell,RT @RayBLK_: Kmt. Joke ting https://t.co/4P6UciwFCB +05/27/2018,Actors,@smashleybell,@Mi55Tipper 🙌🏽👏🏽👏🏽👏🏽 +05/24/2018,Actors,@smashleybell,@MatthewACherry I can’t with you 😭😭😭😭 +05/24/2018,Actors,@smashleybell,@MatthewACherry PREACH. +05/24/2018,Actors,@smashleybell,RT @JordanUhl: Have you tried not lying? https://t.co/lDHyNBbPAl +05/22/2018,Actors,@smashleybell,RT @MuslimIQ: Accurate b/c it’s a fake target & you put it there yourself. https://t.co/vaakbMLlWh +05/21/2018,Actors,@smashleybell,RT @AzitaGhanizada: #CALIFORNIA today is your last day to register to #VOTE for June 5th primaries: https://t.co/cLRcISnPg8 @riseupandvote_… +05/21/2018,Actors,@smashleybell,Oh thanks! I had fun playing Tituba. There was a lot more I wish we explored with her. https://t.co/IQCi26Ouog +05/19/2018,Actors,@smashleybell,Saturday 🌸 https://t.co/jKr37K2gqn +05/18/2018,Actors,@smashleybell,RT @IddoG: In custody?! Oh you mean white! +05/18/2018,Actors,@smashleybell,"RT @bryanboy: No. of mass shootings in 2018 (as of 15 May): + +🇦🇺 0 +🇳🇿 0 +🇩🇪 0 +🇬🇧 0 +🇧🇪 0 +🇦🇹 0 +🇩🇰 0 +🇳🇱 0 +🇸🇪 0 +🇫🇮 0 +🇮🇪 0 +🇨🇦 0 +🇱🇺 0 +🇨🇭 0 +🇺🇸 99*" +05/17/2018,Actors,@smashleybell,@Eric_Hanke @IKEAUSA Quite sure. All the pieces are chipped and damaged 😩😩😩😩 +05/17/2018,Actors,@smashleybell,@_smithaidan @IKEAUSA I did. Twice! Zero response. Ugh. +05/17/2018,Actors,@smashleybell,How does one get a response from @IKEAUSA customer service? At this point I think they are a myth. What exactly is… https://t.co/lZ0T5ayy5V +05/15/2018,Actors,@smashleybell,RT @iamwellandgood: The travel skin-care products actress @smashleybell swears by for glowy skin https://t.co/UIVcK0uRWx +05/15/2018,Actors,@smashleybell,RT @1PhoebeJTonkin: Does anyone know any women's shelters in LA/outer Los Angeles that take clothing donations and give them directly to th… +05/13/2018,Actors,@smashleybell,@jo_elvin I love you 😹 +05/10/2018,Actors,@smashleybell,@Fashion_Critic_ She looks GORGEOUS but I’d really like designers to start making dresses with illusion netting in all skin tones. +05/09/2018,Actors,@smashleybell,W O M A N 🔮 tap for credits https://t.co/RLKZjWdpNU +05/09/2018,Actors,@smashleybell,@davidwalliams @IddoG Shot by the talented and beautiful Ashley Madekwe +05/05/2018,Actors,@smashleybell,"RT @MikelleStreet: All black celebrities have a MORAL OBLIGATION to CARRY at the Met Gala. + +THE FUCKING THEME IS ""SUNDAY BEST!"" YOU BEEN PR…" +04/29/2018,Actors,@smashleybell,How is it STILL #oldheadshotsday? +04/26/2018,Actors,@smashleybell,RT @buckotb: As part of the ‘Everyman Cinema’ music film festival ‘The Local’ are screening a film I wrote with @AshleyBelalChin called ‘Vi… +04/26/2018,Actors,@smashleybell,@ReignOfApril Tasting kitchen. Technically that’s in Venice but super close. +04/25/2018,Actors,@smashleybell,Donald Trump has got the time to tweet about Kanye but I’m still waiting for his tweets about James Shaw Jr’s heroism and the four victims. +04/25/2018,Actors,@smashleybell,I love this thread 🖤 https://t.co/xVoUjdiclQ +04/24/2018,Actors,@smashleybell,I can’t breath 💀 https://t.co/k0utOiqwF4 +04/24/2018,Actors,@smashleybell,"“These haters corny with that Russian collusion mess” +I AM DEAD 😭😭😭😭😭 https://t.co/M3GtHelPbv" +04/24/2018,Actors,@smashleybell,D E A D 💀 https://t.co/M3GtHelPbv +04/23/2018,Actors,@smashleybell,Kim says racism doesn’t exist and I’m still waiting for an answer about how and why she got a spin-off show #RHOA https://t.co/tyuDJjMtsX +04/22/2018,Actors,@smashleybell,Hey @realDonaldTrump! You gonna congratulate James Shaw Jr on his heroism or nah? +04/19/2018,Actors,@smashleybell,"When you fly home in time for lunch with your husband 🐸 @ Original Farmers Market, Los Angeles https://t.co/qRHsMu6ytO" +04/18/2018,Actors,@smashleybell,Thread! https://t.co/MCp0Yg866p +04/18/2018,Actors,@smashleybell,"Chic c'est la vie, sa bonne sa bonne https://t.co/Gt9gvkRJ6F" +04/17/2018,Actors,@smashleybell,Missing this weather and the photographer.... 📷 @IddoG 🌸 https://t.co/m4DusWm10Z +04/16/2018,Actors,@smashleybell,In flight: ‘Oprah 2020’.... a girl can dream 🤷🏽‍♀️ https://t.co/WDsXmSKjF3 +04/15/2018,Actors,@smashleybell,Bunny shoes & a top knot for last night’s date 🐰 https://t.co/epd6kTzZo4 +04/14/2018,Actors,@smashleybell,Take notes people! https://t.co/L9o9ssdsw8 +04/13/2018,Actors,@smashleybell,😎 https://t.co/HuPKPmtngm +04/13/2018,Actors,@smashleybell,@The_Lecky @NicolefcCharles +04/13/2018,Actors,@smashleybell,@The_Lecky Nicole Charles +04/12/2018,Actors,@smashleybell,Loved celebrating you last night @jamiechung1 🍾🖤 @ Skybar at Mondrian https://t.co/Ia5D5g1UJy +04/11/2018,Actors,@smashleybell,Keyboard gangster https://t.co/bUitEPCCFN +04/11/2018,Actors,@smashleybell,@SkinnyGirlFiles It’s from @whattheHELLZ! 🖤 +04/11/2018,Actors,@smashleybell,@Christiana1987 I thought the same thing when I heard people talking about Cardie’s pregnancy. +04/10/2018,Actors,@smashleybell,#MAGA Making Attorneys Get Attorneys https://t.co/n0sG81iQ6E +04/08/2018,Actors,@smashleybell,@Kevinmorosky https://t.co/1NcOYDDq0y +04/07/2018,Actors,@smashleybell,"RT @MissCooperrr: Cardi B gave us bars that have every woman's ego on 100 rn. + +Y'all thought Drake was gonna drop some arrogant music & b…" +04/07/2018,Actors,@smashleybell,"“That’s a real one in your reflection” +It’s Saturday! Tag your partner in crime 🖤 @ Girl at the… https://t.co/6kPBLp0mLz" +04/06/2018,Actors,@smashleybell,"I think all events, bars and clubs should have beds. @ TASCHEN Gallery https://t.co/BHwKQeGT9X" +04/06/2018,Actors,@smashleybell,This not how I woke up but it’s how I look now https://t.co/31LbARMwJj +04/05/2018,Actors,@smashleybell,@Christiana1987 I can’t lie. It’s mum tweets that I was mostly looking for 😹 let her live!!!!! +04/05/2018,Actors,@smashleybell,@Christiana1987 You have the tweet wedding planning updates. I insist. +04/05/2018,Actors,@smashleybell,@MontanaSymone @InternetKelvin Very eloquently put. +04/05/2018,Actors,@smashleybell,.@whattheHELLZ Um what the hellz is up with your customer service? +04/05/2018,Actors,@smashleybell,Who’s ready for the weekend? 🙋🏽‍♀️ https://t.co/upK9ws0jjk +04/03/2018,Actors,@smashleybell,Tomorrow! 😘 https://t.co/09qOAPe68Y +04/03/2018,Actors,@smashleybell,Teach you how to spell PUSSY HOLE.... you aren’t talking about a digital watch dear. #cassio https://t.co/v2VOA0TJ4p +04/03/2018,Actors,@smashleybell,@buckotb Oi hold me back +04/03/2018,Actors,@smashleybell,@Christiana1987 @Kinowolf Congratulations!!!! ❤️❤️❤️ +03/29/2018,Actors,@smashleybell,#balenciagatriples 🖤 https://t.co/CN8zYie5PR +03/28/2018,Actors,@smashleybell,So glad I held out for the silver 🖤 #balenciagatriples https://t.co/jETCvzUH10 +03/27/2018,Actors,@smashleybell,"Happy Anniversary @MariahCarey! 🦋 +(You all know I was waiting for any excuse to post this picture again!) 💖 https://t.co/gMBTlYlL4E" +03/27/2018,Actors,@smashleybell,@AnnaPaquin They held Oscar once! Turned out the vet had administered the incorrect tick treatment. He was out in 48 hours 🐯 +03/24/2018,Actors,@smashleybell,@Christiana1987 Truth 😭 +03/21/2018,Actors,@smashleybell,"RT @JaimePrimak: Twitter!!! I have an AMAZING opportunity for an African American male actor, 30s, tall, handsome (not hunky) for a dramati…" +03/20/2018,Actors,@smashleybell,ONES COUNTRY IS ENGLAND. https://t.co/1jQlnoG8wO +03/20/2018,Actors,@smashleybell,@buckotb 30.... loooooooool +03/20/2018,Actors,@smashleybell,@michcoll Always +03/20/2018,Actors,@smashleybell,@michcoll I AM D E A D +03/19/2018,Actors,@smashleybell,@bryanboy Um.... Kybella. And I'm not agreeing that you need it just being helpful! x +03/18/2018,Actors,@smashleybell,RT @nowthisnews: Everything wrong with Fox News in one video https://t.co/MhnApiQ3pG +03/17/2018,Actors,@smashleybell,RT @rizmc: Our democracies were highjacked this is insane please watch and share https://t.co/30CuT9yKgq +03/17/2018,Actors,@smashleybell,☠️ https://t.co/sDzgdvYCyN +03/15/2018,Actors,@smashleybell,@bryanboy *Downloads them all immediately +03/13/2018,Actors,@smashleybell,@Tomhopperhops @prestigeflowers I had this issue with the same company a few years ago! +03/12/2018,Actors,@smashleybell,❤️🖤❤️🖤 @ Girl at the White Horse https://t.co/KaKu0XLqUr +03/09/2018,Actors,@smashleybell,Felling Fresh Friday 🍓 @ Jon & Vinny's Restaurant https://t.co/gbfRIYAXoC +03/08/2018,Actors,@smashleybell,@NicolefcCharles 👏🏽👏🏽👏🏽👏🏽👏🏽❤️❤️❤️❤️💖 +03/07/2018,Actors,@smashleybell,Ultimate 🌟 https://t.co/iL7h5QC2ZA +03/07/2018,Actors,@smashleybell,@chrissyteigen My favorite murder +03/07/2018,Actors,@smashleybell,@Kevinmorosky @tomw_dunn No but wait... is this a blade runner parody?! +03/05/2018,Actors,@smashleybell,"RT @franklinleonard: Inclusion rider definition, for those asking. https://t.co/xc3pyM3DKL" +03/05/2018,Actors,@smashleybell,@buckotb 😭😭😭😭😭 +03/04/2018,Actors,@smashleybell,"“Or if thy mistress some rich anger shows +Imprison her soft hand, and let her rave”- Keats +I’ve… https://t.co/a9O4IjisFs" +02/26/2018,Actors,@smashleybell,But what about your bone spurs? https://t.co/gzuyEE4CyC +02/25/2018,Actors,@smashleybell,I want to work with Lynne Ramsey. Just putting that out into the universe. +02/25/2018,Actors,@smashleybell,“Difficult”: Code for “is opinionated and has a vagina”. https://t.co/u1UMrHk1T1 +02/24/2018,Actors,@smashleybell,Nope. We just went by ourselves and figured it out. Maybe a tour would have gotten the most out of our time there b… https://t.co/WOun01PTeF +02/24/2018,Actors,@smashleybell,"RT @TraceeEllisRoss: .@IssaRae, @ReginaKing and I invite u 2 come see #BlackPanther at the Baldwin Hills Crenshaw Mall Rave Cinemas tomorro…" +02/23/2018,Actors,@smashleybell,New today on #RingMyBell... my statement earring collection ⚡️ https://t.co/WKZsqKmv73 +02/23/2018,Actors,@smashleybell,Yup. It’s like listening to a nazi rally. https://t.co/GqeFz0IWXj +02/22/2018,Actors,@smashleybell,"When he says he’s “hearing more and more people say”, he’s talking about himself. https://t.co/z3v6Joil2X" +02/22/2018,Actors,@smashleybell,@zeldawilliams 😹 +02/22/2018,Actors,@smashleybell,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/22/2018,Actors,@smashleybell,"RT @Thisismlu98: Hey guys, this is my father he's been unemployed for 6 years but he is qualified up to the T. He has a Master's Degree in…" +02/22/2018,Actors,@smashleybell,"RT @jonfavs: In the wake of Sandy Hook, 54 Senators supported Obama’s push for stronger background checks, including 4 Republicans. + +Marco…" +02/22/2018,Actors,@smashleybell,RT @SarahKSilverman: So there can be an imperfect tax bill passed that “we’ll fix later” but an imperfect assault weapons ban has to be Let… +02/22/2018,Actors,@smashleybell,“But it’s too hard. Boooo hoooooo”- Marco Rubio DICKHEAD +02/22/2018,Actors,@smashleybell,#DSS 😉 https://t.co/tlaLBJhuck +02/20/2018,Actors,@smashleybell,#CFDA x @TheAlexBadia x @variety 🌸 @ Chateau Marmont https://t.co/vQIXOYxRfP +02/20/2018,Actors,@smashleybell,@Possessionista I felt the same about Ring My Bell a few years ago. I took the pressure off myself and now I just d… https://t.co/sMs4PwVTi5 +02/20/2018,Actors,@smashleybell,RT @Kevinmorosky: #WakandaForever DM me https://t.co/y0mPbLWnsf +02/19/2018,Actors,@smashleybell,🐾 https://t.co/iWcaMFzuI8 +02/19/2018,Actors,@smashleybell,"RT @francismmaxwell: The fuck are you talking about, when a police officer shoots an unarmed black man you blame the unarmed black man. htt…" +02/17/2018,Actors,@smashleybell,@erinlrrt You wanna go? Take your niece/nephew? I’ll book you tickets! #blackpanther +02/17/2018,Actors,@smashleybell,@reinedafreak I will agree that it was more of an homogenized accent rather than a specific one but it in no way de… https://t.co/s9dDLaMPF1 +02/17/2018,Actors,@smashleybell,@reinedafreak You saw it and didn't like it? I'm happy they used an African accent. We don't hear that often enough in mainstream film. +02/17/2018,Actors,@smashleybell,@Israel__lee Well I hope you get to see it soon! It’s everything they say and more 🖤 +02/17/2018,Actors,@smashleybell,@Israel__lee Where you at? I’ll get you a ticket! +02/17/2018,Actors,@smashleybell,RT @geminicollision: This guy is lying. The picture is from a 2013 Dallas Observer article about a fight outside a nightclub. Please contin… +02/17/2018,Actors,@smashleybell,Reported! https://t.co/Q4F3NeGWWi +02/17/2018,Actors,@smashleybell,@prettiestpigeon I understand. 🖤 +02/17/2018,Actors,@smashleybell,@Christiana1987 Thanks love! ❤️ +02/17/2018,Actors,@smashleybell,"Who’s going to see #BlackPanther this weekend??? And if not, why? 🖤" +02/17/2018,Actors,@smashleybell,🖤 https://t.co/MXWe2ody6v +02/17/2018,Actors,@smashleybell,@Tomhopperhops Thanks! :) +02/17/2018,Actors,@smashleybell,@Cupcake_256 You are so welcome. You deserve to see the powerful black women of Wakanda! Sending you a DM now 🖤 +02/17/2018,Actors,@smashleybell,@Christiana1987 I thought of you! +02/17/2018,Actors,@smashleybell,@Cupcake_256 I’ll book you a ticket! Which movie theatre do you want to go to? +02/17/2018,Actors,@smashleybell,".@letitiawright you KILLED it! Such an amazing performance. Nuanced, funny, warm and touching. So good. 🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤" +02/17/2018,Actors,@smashleybell,Believe the hype. “Black Panther” is amazing. +02/17/2018,Actors,@smashleybell,It’s a shame it had to end this way @IddoG https://t.co/wSDF7S216V +02/16/2018,Actors,@smashleybell,Can’t wait ☂️ https://t.co/frRHqywr5e +02/16/2018,Actors,@smashleybell,"RT @Advil: as someone named Abdul i’ll never understand what it’s like to be generalized by the actions of a few. must be rough, thank you…" +02/16/2018,Actors,@smashleybell,New look on #RingMyBell https://t.co/3bpxonNmwk 🖤 https://t.co/Y3ESaxhM5u +02/16/2018,Actors,@smashleybell,@buckotb Thank yooouuuuu! 🖤 +02/16/2018,Actors,@smashleybell,@Nick_Wechsler Thanks love! +02/16/2018,Actors,@smashleybell,@Cbyt Thanks! +02/15/2018,Actors,@smashleybell,So excited 💥 https://t.co/2DuphYTOxg +02/15/2018,Actors,@smashleybell,"RT @car_nove: I was hiding in a closet for 2 hours. It was about guns. You weren't there, you don't know how it felt. Guns give these disgu…" +02/15/2018,Actors,@smashleybell,"RT @franklinleonard: “And now I want to speak to America’s children: There are people who love you, who will do anything for you, except pu…" +02/15/2018,Actors,@smashleybell,RT @Sarah_Hyland: WE NEED TO TAKE A STAND. WE NEED TO MAKE A CHANGE. HOW MANY MORE PEOPLE HAVE TO DIE FOR THAT TO HAPPEN?! #GunControlNow #… +02/14/2018,Actors,@smashleybell,Happy Valentine’s Day 🌈 https://t.co/UdYILeJgw8 +02/13/2018,Actors,@smashleybell,@wcruz73 And it’s YOUR. Prejudice is bad enough but must they always use the wrong “your/you’re”?! +02/08/2018,Actors,@smashleybell,@JasonMaza Would love that. Keep me posted ❤️ +02/08/2018,Actors,@smashleybell,@JasonMaza Bit of both. That's the charm. +02/07/2018,Actors,@smashleybell,So overwhelmed watching @donlemon tonight. What a professional. What a man. So sorry for your loss. +02/06/2018,Actors,@smashleybell,@MatthewACherry That keeps me up at night +02/04/2018,Actors,@smashleybell,Barefoot Sundays 🌺 https://t.co/Sip0xdo9iN +02/04/2018,Actors,@smashleybell,@YetideBadaki 🖤🖤🖤🖤 +02/04/2018,Actors,@smashleybell,When women speak up and advocate for our safety on set we are labeled as “difficult”. I speak from personal experie… https://t.co/SWBr416STd +02/02/2018,Actors,@smashleybell,@CynthiaEriVo Omg. Who is this?! 😻 +02/02/2018,Actors,@smashleybell,He said “Jar Jar Binks” 😹💀😹💀 https://t.co/5pApom3RRY +02/02/2018,Actors,@smashleybell,@sethgabel So sorry Seth. 🖤 +02/02/2018,Actors,@smashleybell,@Christiana1987 And still looking YOUTHFUL. Yas gawd. 🙌🏽 +02/01/2018,Actors,@smashleybell,@buckotb I’m very good at notes! +02/01/2018,Actors,@smashleybell,"RT @shondarhimes: Okay. Entertainment industry, time to stop using the phrases ""Smart Strong Women"" and ""Strong Female Leads"". There are…" +01/31/2018,Actors,@smashleybell,RT @franklinleonard: Send some kids in Compton to see #BlackPanther! https://t.co/AXFecxMYdk +01/30/2018,Actors,@smashleybell,Eyes rolled all the way back in my head 🙄 https://t.co/xtopkzAPNy +01/27/2018,Actors,@smashleybell,Well said 🖤 https://t.co/6eZnwbdrsj +01/25/2018,Actors,@smashleybell,😭😭😭😭😭😭😭😭 https://t.co/jLyGWwufaW +01/25/2018,Actors,@smashleybell,Same 🙋🏽‍♀️ Bi-racial girl from south London and the school was drama school. https://t.co/k4ZBYq3slH +01/24/2018,Actors,@smashleybell,@chrissyteigen He’ll be flattered and is the nicest most polite guy. Say hi! And then say hi from me :) +01/24/2018,Actors,@smashleybell,😁 https://t.co/8t0ve15ikq +01/24/2018,Actors,@smashleybell,@BagSnob I love you 🖤 +01/23/2018,Actors,@smashleybell,I don’t call that an apology. Apologies should not include excuses. She all but pulled the “but I have a black frie… https://t.co/rFnHSe0iZm +01/23/2018,Actors,@smashleybell,How not to apologize by Ulyana. https://t.co/0fI1a2EIrQ +01/23/2018,Actors,@smashleybell,I am SCREAMING!!!! Yasssss!!!! https://t.co/2DwD2Tm6ss +01/22/2018,Actors,@smashleybell,Wearing galvanlondon to the EW SAG awards nominee party this weekend. I loved those tassels! @… https://t.co/LFlrg5nimn +01/19/2018,Actors,@smashleybell,🖤 by estynelan https://t.co/ba92TvhkzP +01/18/2018,Actors,@smashleybell,👏🏽👏🏽👏🏽👏🏽 https://t.co/5wasLtdSDP +01/18/2018,Actors,@smashleybell,"Damn, this fired me up. Yesssss Ellen! 👏🏽👏🏽👏🏽👏🏽👏🏽👏🏽👏🏽 https://t.co/dX0a9dNhB5" +01/17/2018,Actors,@smashleybell,🍓 https://t.co/Y35QPCqMdg +01/16/2018,Actors,@smashleybell,Today on #RingMyBell ❤️ https://t.co/KeR9DLkNkX +01/14/2018,Actors,@smashleybell,They’re worth the hangover 🎀 https://t.co/xaRuIii02K +01/12/2018,Actors,@smashleybell,@Sarah_Hyland @TomiLahren I love you Sarah. +01/12/2018,Actors,@smashleybell,@Helen_Hird @OfficialRodarte Love it! 😻 +01/12/2018,Actors,@smashleybell,"RT @ksieff: Hey Tomi, Washington Post shithole bureau chief here. Love your foreign affairs reporting. Did you know there are 8.7 million A…" +01/12/2018,Actors,@smashleybell,RT @Christiana1987: I am proud to be of shithole descent. 🇳🇬 +01/12/2018,Actors,@smashleybell,Word. https://t.co/5uC3g05Rvg +01/09/2018,Actors,@smashleybell,Girls on Film 📷: @IddoG https://t.co/ArTq2wN77s +01/09/2018,Actors,@smashleybell,@chrissyteigen Ugh. Hard eye roll 🙄 +07/01/2018,Actors,@BarrySloane,Yes Lad!! Dio 99 @LAFC 👊🏻🔥 https://t.co/KSivWofXbR +06/30/2018,Actors,@BarrySloane,"Thanks for all the support for #Six - +You guys are amazing. 💪🏻🐻👊🏻 https://t.co/QAT8jat4jM" +06/30/2018,Actors,@BarrySloane,RT @HistoryTVCanada: SEALs put their fears aside to get the job done. #SIX https://t.co/Ry9A8LcWtt +06/30/2018,Actors,@BarrySloane,"RT @Watch_LFC: 🔴 | It’s July 1st, reds. https://t.co/pY4PR3SYko" +06/30/2018,Actors,@BarrySloane,RT @ProD_Soccer: Pavard's goal belongs in the Louvre. https://t.co/PxejN2pKKx +06/29/2018,Actors,@BarrySloane,What a ride! Sorry to say that @SIXonHISTORY will not be back for a season 3. To all our amazing fans THANK YOU. 💪🏻🐻👊🏻 +06/29/2018,Actors,@BarrySloane,"See #JoeNeverMisses 💪🏻🐻👊🏻 +#SIXonHISTORY https://t.co/B6HsGyLB2B" +06/29/2018,Actors,@BarrySloane,"Daily Alarm 🚨 + +Day 3 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are doing… https://t.co/x2R0EH6W6Y" +06/28/2018,Actors,@BarrySloane,RT @oliviamunn: Did you know that a special ops veteran and his Marine veteran dad created @SIXonHISTORY ? 🙌🇺🇸 Read more here: https://t.c… +06/28/2018,Actors,@BarrySloane,Did you know that a special ops veteran and his Marine dad created @sixonhistory ? https://t.co/0Qjk4oSyPO +06/28/2018,Actors,@BarrySloane,Last nights bus ride on @SIXonHISTORY was not in the least bit awkward. Not at all. Not even a bit. Nope. 👀… https://t.co/gE9vreqgxK +06/28/2018,Actors,@BarrySloane,Great night spent with the warriors from @wwp watching #SIXonHISTORY - such an honor to represent the men and women… https://t.co/7MlAhpmXqG +06/28/2018,Actors,@BarrySloane,RT @IamDominicAdams: Life is like a box of Navy SEALs gunning for your blood. You never know if you're gonna survive #SixOnHistory #michael… +06/28/2018,Actors,@BarrySloane,"RT @EdwinHodge: Had a great time watching sixonhistory with the real hero’s from @wwp If you can’t walk a mile in their shoes, at least tak…" +06/28/2018,Actors,@BarrySloane,RT @KSamuelCohen1: I hope @HISTORY sees this tweet and realizes that @SIXonHISTORY MUST HAVE A THIRD SEASON!!!!!! Go season 3 of SIX!!!!!!!… +06/28/2018,Actors,@BarrySloane,RT @IamDominicAdams: If that bus could talk....and it worked like a dream. 'Short bus' @juanpabloraba @BarrySloane @EricLadin @EdwinHodge @… +06/28/2018,Actors,@BarrySloane,RT @SIXonHISTORY: #SIXonHISTORY https://t.co/mH1v002ar7 +06/27/2018,Actors,@BarrySloane,"Day 2 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are doing this to raise aw… https://t.co/9YJo3j1y2N" +06/27/2018,Actors,@BarrySloane,RT @EdwinHodge: TUNE IN TONIGHT! Head over to @WWP Instagram page where I and other sixonhistory cast members will be LIVE with Wounded War… +06/27/2018,Actors,@BarrySloane,"RT @IamDominicAdams: Tonight's episode of @SIXonHISTORY brought to you from inside Mikey N's head. #sixonhistory 10/9c +#michaelnasry #juras…" +06/27/2018,Actors,@BarrySloane,"TONIGHT at 10/9c +@SIXonHISTORY #SIXonHistory #SIXlive https://t.co/QjiVXA4llQ" +06/27/2018,Actors,@BarrySloane,"Day 1 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are starting this to raise… https://t.co/5T3ug5AdRr" +06/26/2018,Actors,@BarrySloane,"Monday ✔️ +Not a bad way to start the week... +#YosemiteNationalPark 🙌🏻 +@Katysloane and I will be starting our 20/20… https://t.co/SpfjaeNiGe" +06/25/2018,Actors,@BarrySloane,@IamDominicAdams @SIXonHISTORY @HISTORY Wonderful 👌🏻 #SixOnHistory #Six https://t.co/YGy4lADLZS +06/25/2018,Actors,@BarrySloane,"RT @rustyrockets: It isn't a luxury. +https://t.co/dO1pZmkW52 https://t.co/KaycjBMOKp" +06/24/2018,Actors,@BarrySloane,RT @RitaPanahi: Superb 🤣 https://t.co/EivrQbIeI4 +06/24/2018,Actors,@BarrySloane,"Once more onto the pitch dear friends, once more, to raise up these walls with our English cheer. When the whistle… https://t.co/WgIy6oBT04" +06/24/2018,Actors,@BarrySloane,RT @HISTORYUK: Join @BarrySloane for @SIXonHISTORY from the very beginning tonight at 10pm. Brand new season 2 starts August. #SIXonHISTORY… +06/24/2018,Actors,@BarrySloane,UK #SIXonHISTORY fans. Great News! Season 2 airs in August!! On @HISTORYUK - Make sure to get the word out that Sea… https://t.co/u7Is6R3KXf +06/24/2018,Actors,@BarrySloane,"Once more onto the pitch dear friends, once more, to raise up these walls with our English cheer. When the whistle… https://t.co/WEWvkYAlEm" +06/24/2018,Actors,@BarrySloane,"🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿 +@England @FIFAWorldCup +https://t.co/DCRDr80q6P" +06/24/2018,Actors,@BarrySloane,"RT @DonnieWahlberg: Next time you are about to tweet something negative about someone you dislike — STOP! + +Take a moment. + +Then try tweetin…" +06/24/2018,Actors,@BarrySloane,"RT @FootballFact101: A blind and deaf Brazilian football fan celebrating Coutinho’s goal today, dope shit.🙌🏾 Shout out to the guy helping h…" +06/22/2018,Actors,@BarrySloane,"If the guy hadn’t retreated to his ‘Prius’ Bear absolutely would have done. +😂🤣 #SIXonHistory @HerculesHandy https://t.co/FwyDNgJzEa" +06/22/2018,Actors,@BarrySloane,Proud to be representing the #UK here in #America. Watch the first series of #SIXonHISTORY Sundays at 10pm on… https://t.co/iGKTIiQ81e +06/21/2018,Actors,@BarrySloane,RT @SIXonHISTORY: There's always a turning point. What was yours? #SIXonHISTORY https://t.co/r11nJojWnh +06/21/2018,Actors,@BarrySloane,RT @classiclib3ral: How had Jordan Peterson never heard this extremely basic counter argument to his position before https://t.co/gTdLm166Hj +06/21/2018,Actors,@BarrySloane,"Wonderful performances from @iamkyleschmid and #SavannahWelch +Heartbreaking. And kudos to our writers and producers… https://t.co/6wTJva19FX" +06/21/2018,Actors,@BarrySloane,Superb!!! 😂😂😂😂 #SixOnHistory #SIXLive https://t.co/niwbJltSct +06/21/2018,Actors,@BarrySloane,"Strange Bush Girl: Hey, I like taking pictures. +Annabellle: My Dad used to be in @NarcosNetflix we should totally… https://t.co/tSEggLzeFz" +06/21/2018,Actors,@BarrySloane,"Chase drives a Prius. 👀 +@EdwinHodge #SeaFoamGreen +#SIXonHISTORY #SIXLIVE https://t.co/WvCTzD3sZ1" +06/21/2018,Actors,@BarrySloane,"RT @livelikebriana: You’re gonna do some what, Lena? #SIXLIVE #SixOnHistory https://t.co/iutViZZ2db" +06/21/2018,Actors,@BarrySloane,What the fuck is ‘plaining’?! And should you do it with another mans wife? Asking for a friend. @TheBrianneDavis… https://t.co/myXU9kbMJy +06/21/2018,Actors,@BarrySloane,https://t.co/GHDSonTNYe +06/21/2018,Actors,@BarrySloane,Tonight’s @SIXonHISTORY involves a water based op. It looks something like this. 🐻 #SIXLIVE https://t.co/Ti3Z5ye3iw +06/21/2018,Actors,@BarrySloane,"Ok #SIXonHISTORY fans, let’s start talking. Use #SIXLIVE to ask any and all questions. 💪🏻🐻👊🏻 https://t.co/Is2cLJqwVY" +06/21/2018,Actors,@BarrySloane,RT @SIXonHISTORY: What does Plan B look like? Find out Tonight at 10/9 C. #SIXonHISTORY https://t.co/t1GVvMGJja +06/21/2018,Actors,@BarrySloane,"Make sure to watch #SIXLIVE TONIGHT at 10/9c on @history #BonJovi @bonjovi +#FD1 - #JoeNeverMisses +@history 💪🏻🐻👊🏻 https://t.co/vbOv45F0gO" +06/20/2018,Actors,@BarrySloane,#WatchYourSix - Ep 5 Tonight! We’re halfway… https://t.co/mQoiC6I7PB +06/20/2018,Actors,@BarrySloane,RT @NNikolaeff: Bring it. This was a particularly psychologically hard episode for me to get my head around. To bring to life these irrever… +06/20/2018,Actors,@BarrySloane,"RT @oliviamunn: New episode of SIX tonight. #Repost @SIXonHISTORY +・・・ +She needs his information, and he needs her mercy. See their power s…" +06/20/2018,Actors,@BarrySloane,"RT @MattLittler: OK, I'm making a short film, I need your help, if you can RT, or even get involved please do. It features the brilliant @m…" +06/20/2018,Actors,@BarrySloane,"Don’t mind if I do. 👌🏻 +#JackNicholson #OneFlewOverTheCuckoosNest https://t.co/YGg9Ht4Gl0" +06/20/2018,Actors,@BarrySloane,"RT @myqkaplan: good night. + +you have done it once more. +you have lived a whole day. +you have risen and traveled and worked. + +you have seen…" +06/20/2018,Actors,@BarrySloane,RT @TheBrianneDavis: New episode tomorrow night @SIXonHISTORY @HISTORY #SixOnHistory https://t.co/YPbJ1UyJ0H +06/20/2018,Actors,@BarrySloane,"RT @IamDominicAdams: @sixonhistory tomorrow night 10/9c Michael may be loosing the plot. In fact, they all may be loosing the plot... #sixo…" +06/19/2018,Actors,@BarrySloane,"THIS SEASON on @SIXonHISTORY +💪🏻🐻👊🏻 https://t.co/uRpCWpwKtl" +06/19/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: ""Hit the deck!"" #SIXLive #SIXonHISTORY https://t.co/9yn71E9068" +06/18/2018,Actors,@BarrySloane,"RT @England: What a moment! 🙌 + +#threelions + +https://t.co/dsY0HRzZJk" +06/18/2018,Actors,@BarrySloane,"RT @Andrew_Heaton: This, by Romelu Lukaku, is truly something else. Very rare for footballers to be so open, which in itself is a shame. + +W…" +06/17/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Every mission has consequences. Witness the fallout Wednesdays at 10/9 C. #SIXonHISTORY https://t.co/sfR9YrFlX6 +06/15/2018,Actors,@BarrySloane,"RT @HerculesHandy: Yes even one of the baddest people in the @SIXonHISTORY universe enjoys going to the playground + +Joe Bear Graves +@Barry…" +06/15/2018,Actors,@BarrySloane,RT @meawwofficial: Can you teach an old dog new tricks? This show gives us a resounding YES. @SIXonHISTORY #SIXonHISTORY @BarrySloane @juan… +06/14/2018,Actors,@BarrySloane,@MiloVentimiglia Haha. Yes Bro. Get It! 💪🏻👊🏻 +06/14/2018,Actors,@BarrySloane,"We don’t just blow shit up on @SIXonHISTORY.....But when we do blow shit up, We BLOW SHIT UP. +#SIXLIVE #SIXonHISTORY" +06/14/2018,Actors,@BarrySloane,That fucking broke me @iamkyleschmid @LindsleyRegi wonderful. #SIXLIVE #SIXOnHistory +06/14/2018,Actors,@BarrySloane,"Thank you Tom, this is why we make the show. #SIXonHISTORY #SIXLIVE @SIXonHISTORY https://t.co/8rSRWlPrSO" +06/14/2018,Actors,@BarrySloane,Take a bow @TheBrianneDavis Take a bow. #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#FishTale Part2 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,@celihangout 👍🏻 #SIXLIVE #SIXonHISTORY https://t.co/pRn7q7Xb2r +06/14/2018,Actors,@BarrySloane,"#SealTeamSpace 👀🚨 #JoeNeverMissesAParkingOppertunity +#SIXLIVE #SIXonHISTORY https://t.co/XQazE28C3T" +06/14/2018,Actors,@BarrySloane,Last scene was shot in the #Vancouver Aquarium 🦈👌🏻🙌🏻 #SIXLIVE #SIXonHISTORY https://t.co/RdkprEpIBE +06/14/2018,Actors,@BarrySloane,Yes a #ChaseTale 👊🏻 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Bout time we got a #FishTale #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Remember Season 1 he had to provide a sample. #Link #SIXLIVE #SIXonHISTORY https://t.co/RnhvW6YMLO +06/14/2018,Actors,@BarrySloane,"RT @EricLadin: @BarrySloane Trevor looking back at bear. +#SIXlive #SIXonHISTORY https://t.co/RQpI7F2VXP" +06/14/2018,Actors,@BarrySloane,Bear looking at Trevor 👀 #SIXLIVE #SIXonHISTORY @EricLadin https://t.co/4WVrHsyidU +06/14/2018,Actors,@BarrySloane,@Wee3Minis @EricLadin 👀 https://t.co/EP8Qx7Yqp5 +06/14/2018,Actors,@BarrySloane,Trevor’s #Truth #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#AssToFace @juanpabloraba 😂😂😂 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Good to see Mutaqqui back 👀🎯 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#SIXLIVE will we see the #GinaCarabiner #SIXonHISTORY @oliviamunn +06/14/2018,Actors,@BarrySloane,Here we go #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,4 Mins Out #WatchYourSix @SIXonHISTORY #SIXLIVE #SIXonHISTORY https://t.co/w8jZUzEsVW +06/14/2018,Actors,@BarrySloane,RT @iamkyleschmid: Less than 10 minutes to episode 4!!! Join us as we tweet live! #sixonhistory #sixlive +06/14/2018,Actors,@BarrySloane,https://t.co/r5yRVRkLD8 +06/13/2018,Actors,@BarrySloane,RT @NNikolaeff: Thank you @TheReelTalker for the interview discussing @SIXonHISTORY and @Mile22Movie. Been a big year and I’m very grateful… +06/13/2018,Actors,@BarrySloane,Too much Ketchup? Burger Malfunction? It happens. Fear not. Be strong. 👍🏻 #SixOnHistory #SIXLIVE https://t.co/HEc5Seawls +06/13/2018,Actors,@BarrySloane,RT @oliviamunn: All-new episode of #SIXonHISTORY TONIGHT on @HISTORY at 10/9c. (Remember: this show is not suitable for your kids to watch.… +06/13/2018,Actors,@BarrySloane,"You all caught up? Make sure to watch #SIXLIVE TONIGHT!!! at 10/9c on @history +#FD1 - #JoeNeverMisses 💪🏻🐻👊🏻🇺🇸 +🐍🎯 https://t.co/XnoBo7MrMQ" +06/13/2018,Actors,@BarrySloane,"RT @TheAnfieldWrap: You: “We’ve gone from Allison and Fekir to Butland and Shaqiri. The club are a joke. We’re gonna get relegated.” 🤯 + +Jür…" +06/13/2018,Actors,@BarrySloane,#WatchYourSix - Great afternoon promoting… https://t.co/uv2jgux4FJ +06/13/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: With a mission this challenging, compromise is part of the game. #SIXonHISTORY https://t.co/Y3jceB8LMh" +06/12/2018,Actors,@BarrySloane,@celihangout @IamDominicAdams @thedanlindgren @nadinevelazquez @SIXonHISTORY @afterbuzztv @juanpabloraba… https://t.co/S1P4BUfvLm +06/12/2018,Actors,@BarrySloane,RT @oliviamunn: Sneak peek of tomorrow night’s new episode of SIX. @SIXonHISTORY on @HISTORY Wednesdays 10/9c #SIXonHistory https://t.co/LA… +06/12/2018,Actors,@BarrySloane,I won’t start playing your game. Not yet at least......👀 🐍 Vs 🐻 https://t.co/me2lEyU5Ly +06/12/2018,Actors,@BarrySloane,@IamDominicAdams @thedanlindgren @nadinevelazquez @SIXonHISTORY @afterbuzztv @celihangout @juanpabloraba… https://t.co/iMBHGFmW0L +06/12/2018,Actors,@BarrySloane,Thanks man. It’s appreciated. 👊🏻 #SIXonHISTORY #LukeCage https://t.co/pZ5hlb4Cd6 +06/12/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: Ready or not, here they come. Join SEAL Team SIX on Wednesdays at 10/9 C. #SIXonHISTORY https://t.co/tTqFvZ57fE" +06/11/2018,Actors,@BarrySloane,"RT @scotwilliams: As people go to buy The S*n today, we say to them, you have a choice... + +Fund a Tory/UKIP loving toxic rag that accused…" +06/11/2018,Actors,@BarrySloane,This is the kind of article that makes us at @SIXonHISTORY very proud. Thanks @WeAreTheMighty 👊🏻 #SixOnHistory https://t.co/bZCAMs3OFf +06/11/2018,Actors,@BarrySloane,"Wednesday 10/9C on @HISTORY +@SIXonHISTORY 💪🏻🐻👊🏻 https://t.co/NHjuL91lSj" +06/11/2018,Actors,@BarrySloane,RT @Katysloane: I’m super excited to announce that I will be… https://t.co/Nq73ALHOkd +06/11/2018,Actors,@BarrySloane,That is correct 👍🏻🇬🇧 #FatherBrown https://t.co/2l1YDYYR0V +06/10/2018,Actors,@BarrySloane,"RT @rustyrockets: How do we deal with fear? +https://t.co/dO1pZmkW52 https://t.co/b4z4JR9v8z" +06/10/2018,Actors,@BarrySloane,"RT @SachinNakrani: The “whole of London”? I was in Greenwich drinking beer and eating a burger you absolute fuckwit + +Oh, and that’s a photo…" +06/10/2018,Actors,@BarrySloane,"RT @LAFC: What an ending! + +The @SanManuelCasino Thrill of the Match: Our miraculous comeback in stoppage time! https://t.co/517iFRGnD4" +06/09/2018,Actors,@BarrySloane,"Well I highly rate this tweet Dayna. +Appreciated. 💪🏻🐻👊🏻 #SixOnHistory #Six https://t.co/6Yi20x09JD" +06/09/2018,Actors,@BarrySloane,And he’s looks a Badass! 👊🏻 🙌🏻🇬🇧 https://t.co/fcUyUIcBcQ +06/09/2018,Actors,@BarrySloane,"RT @ProfBrianCox: You can convince people to vote to abolish gravity, but they will be very pissed off with you when they hit the ground. h…" +06/09/2018,Actors,@BarrySloane,"RT @tvserieshub: Some watch TV at night @juanpabloraba exercises 😂 + +#SixOnHistory https://t.co/iqXoLekcHw" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @Beatles_27 @ABC7NY In 12 years working in the UK, I only used one weapon on stage once in a play. It… https://t.co/OtR1MND18e" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @liamgallagher I was interested in the character of Joe Graves from the outset, My beliefs, likes, wh… https://t.co/Mr9Cu8g7Mg" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @Beatles_27 @ABC7NY Yes, ‘Acting’ as a member of the US armed forces, all of whom I have no issue wit… https://t.co/RoBYdeBUui" +06/08/2018,Actors,@BarrySloane,@PAFlyFisher2 @liamgallagher So only actors who ‘like’ guns can use them in TV and Movies? Is that what you’re sayi… https://t.co/mSB43qNzMK +06/08/2018,Actors,@BarrySloane,@PAFlyFisher2 @Beatles_27 @ABC7NY I’m not doing movies. And it’s ‘Acting’ darling. 😂 +06/08/2018,Actors,@BarrySloane,"🙌🏻 #LEGEND - SIR @kennethdalglish +@LFC @LFCUSA https://t.co/Z6T0AfGyCl" +06/08/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Chase puts his emotions on the back burner when he's in the field. #SIXonHISTORY https://t.co/n26kZMbmA3 +06/08/2018,Actors,@BarrySloane,Me refreshing @NabilFekir notifications on here.......@LFC #AnnounceFekir https://t.co/QENjKxv4Dm +06/08/2018,Actors,@BarrySloane,Thanks for the shoutout today on your show @HowardStern - Glad to hear you’re enjoying @SIXonHISTORY #SIXonHistory +06/07/2018,Actors,@BarrySloane,"Can this #Fekir lad play in goal? 👀 +Yeeerse The Reds 🚨 @LFCUSA @LFC @NabilFekir 🔥" +06/07/2018,Actors,@BarrySloane,#WatchYourSix - I told you #JoeNeverMisses - So what did you guys think about last night? Let me know in the commen… https://t.co/8c3INCAur4 +06/07/2018,Actors,@BarrySloane,"RT @MensJournal: “I know Tom Cruise says this a lot, but we don’t have any stunt doubles to do any of the SEAL stuff.” https://t.co/eRI73v2…" +06/07/2018,Actors,@BarrySloane,Agreed. #SIXLive #SIXonHISTORY https://t.co/ouz1n0XMRX +06/07/2018,Actors,@BarrySloane,RT @NNikolaeff: I know!!! It looked better in theory. Toight. https://t.co/mcXxoZ6hjE +06/07/2018,Actors,@BarrySloane,Here’s us giving @Jaylen_Moore ‘support’ before he was secured to the side of a helicopter and taken up into sky 😂😂… https://t.co/cncx3C4Out +06/07/2018,Actors,@BarrySloane,RT @EdwinHodge: West Coast!! 1 minute before @SIXonHISTORY begins. This was one of my favorite episodes to film this season! #SIXLive #SIXo… +06/07/2018,Actors,@BarrySloane,"The Templars are seldom wrong, right @tom_cullen 👊🏻 #SixLive #SIXonHISTORY #KnightFall @KnightfallShow @SIXonHISTORY https://t.co/iqwOSQPRxw" +06/07/2018,Actors,@BarrySloane,"RT @islandshortie: When im watching @SIXonHISTORY , it feels like real seals on my screen, great writing and acting, @EdwinHodge @BarrySloa…" +06/07/2018,Actors,@BarrySloane,What a wonderful tweet. Thanks @CarissaPavlica 👍🏻 #SIXonHISTORY #SIXLive https://t.co/8DEMRwSIp1 +06/07/2018,Actors,@BarrySloane,"RT @EricLadin: That MMA fire fight sequence was 🔥 +#SIXLive #SIXOnHistory" +06/07/2018,Actors,@BarrySloane,I concur. 👍🏻 #SIXLive #SIXonHISTORY https://t.co/PxtmIq5EHo +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: Just saying! #SIXonHistory https://t.co/DzrVnhbxDr +06/07/2018,Actors,@BarrySloane,"RT @Katysloane: Blown away by tonight’s episode of @SIXonHISTORY ! Omg! + #SIXLive #SIXOnHistory" +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: BAD BEAR!!! https://t.co/RufYv4MBVb +06/07/2018,Actors,@BarrySloane,Indeed. #SIXlive https://t.co/Kv0zdPX0Bg +06/07/2018,Actors,@BarrySloane,Lovely Stuff. #SixLive https://t.co/uD0UVmDa8I +06/07/2018,Actors,@BarrySloane,Same. 👀 #SIXLive https://t.co/YIYjscJGQC +06/07/2018,Actors,@BarrySloane,It’s going to GO DOWN soon........#SIXLive +06/07/2018,Actors,@BarrySloane,That last scene was filmed at night in a non moving vehicle being shaken by the crew. 😂💪🏻 TV magic 👌🏻#SIXLIVE +06/07/2018,Actors,@BarrySloane,Same. 👊🏻 #SIXLIVE https://t.co/UYNjklIlRm +06/07/2018,Actors,@BarrySloane,Who’s watching #SIXLive ? https://t.co/1fWS70GoKF +06/07/2018,Actors,@BarrySloane,Snitches get stiches Mick #SixLive +06/07/2018,Actors,@BarrySloane,"RT @EricLadin: Hey look what I found! +#SixLive #SIXOnHistory https://t.co/jWotFyhoy6" +06/07/2018,Actors,@BarrySloane,Micky doin the Dua...... #SIXLive +06/07/2018,Actors,@BarrySloane,YA THINK 👀 #SIXLIVE https://t.co/LoIHiqTlh9 +06/07/2018,Actors,@BarrySloane,"RT @EdwinHodge: I know the game is on, but to those who are watching, thanks for joining us tonight east coast!!! @SIXonHISTORY #SIXLIVE #s…" +06/07/2018,Actors,@BarrySloane,"Marrisa 🎯 #JoeNeverMisses +#SixLive #SIXonHISTORY" +06/07/2018,Actors,@BarrySloane,👀 #SIXLIVE #TrevorTalks @EricLadin https://t.co/Mz4qGbCdRi +06/07/2018,Actors,@BarrySloane,Truth https://t.co/L0F9N22iC8 +06/07/2018,Actors,@BarrySloane,Fish don’t fuck about #SIXonHistory +06/07/2018,Actors,@BarrySloane,Trev is taking it UP #SIXonHistory +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: Man @iamkyleschmid hang over is a bitch ha?? #SIXonHistory #SIXLIVE +06/07/2018,Actors,@BarrySloane,Bear don’t surf #SixLive +06/07/2018,Actors,@BarrySloane,Loose lips sink ships Mickey Boy 👀 #SixLive +06/07/2018,Actors,@BarrySloane,He gonna do it? #SixLive +06/07/2018,Actors,@BarrySloane,The Prince! #SixLive +06/07/2018,Actors,@BarrySloane,#SixLive NOW https://t.co/sx6HKvEEuJ +06/07/2018,Actors,@BarrySloane,"RT @tvserieshub: Here we go!! #SixonHistory starts now! +-Kelsey" +06/07/2018,Actors,@BarrySloane,RT @IamDominicAdams: @SIXonHISTORY S2 Ep 3 #SixOnHistory #michaelnasry https://t.co/XfedAN88TM +06/07/2018,Actors,@BarrySloane,Same. #SIXonHISTORY 👊🏻 #SIXLIVE https://t.co/66sNPToDrV +06/07/2018,Actors,@BarrySloane,https://t.co/qWAybTJzfW +06/07/2018,Actors,@BarrySloane,"#Bear ♥️ #America 🇺🇸 💪🏻🐻👊🏻 +#SIXonHISTORY #SixLive #Six https://t.co/xFueVsvnFB" +06/06/2018,Actors,@BarrySloane,RT @BarrySloane: WatchYourSix - For Episode 3 of @sixonhistory Joe gets a #Shave and a #Haircut courtesy of @candices ✂️ Remember it’s impo… +06/06/2018,Actors,@BarrySloane,"RT @BarrySloane: How we shot the Blackhawk scenes midair on @SIXonHISTORY 💪🏻🐻👊🏻 +#SixOnHistory #SixLive https://t.co/veYBQADZFA" +06/06/2018,Actors,@BarrySloane,"#JoeNeverMisses 👀🎯 +#SIXonHISTORY #SixLive #Six https://t.co/8Uo4uaGary" +06/06/2018,Actors,@BarrySloane,"#Repost @andystumpf77 +・・・ +It is an odd thing,… https://t.co/odFSBYLVKi" +06/06/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: When Bear is in the zone, nothing can steal his focus. See him in action tonight, 10/9 C. #SIXonHISTORY https://t.co/5run…" +06/06/2018,Actors,@BarrySloane,"Bear is dealing with RIPs death in his own way, grief finds strange places to place itself. There will be lots more… https://t.co/7ntuZjMLNo" +06/06/2018,Actors,@BarrySloane,RT @EricLadin: One of my favorite parts of the job is the preparation. Learning & absorbing as much information as I can about the characte… +06/06/2018,Actors,@BarrySloane,"In a Van, wearing an earpiece and a hoodie,… https://t.co/gIISbQp1cS" +06/06/2018,Actors,@BarrySloane,"RT @oliviamunn: New episode of SIX on @HISTORY TONIGHT 10/9c. (And please remember this show gets dark, so please don’t let your kids watch…" +06/06/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: #1: The mission #2: Everything else. Watch @SIXonHistory on its NEW night, tonight at 10/9c. https://t.co/zYXhO8DTaG" +06/06/2018,Actors,@BarrySloane,For fans of @TheWhispersABC take a look at our inspiration from the inimitable #RayBradbury #ZeroHour @shugh100… https://t.co/VuuqAvqkp0 +06/06/2018,Actors,@BarrySloane,"Glad you enjoyed @TheWhispersABC - were all very proud of it, sadly the TV Gods at ABC decided that the story ended… https://t.co/R8LLf2wrF7" +06/06/2018,Actors,@BarrySloane,@thejamessutton Smash it lad 🍻🍾 +06/06/2018,Actors,@BarrySloane,@damianholbrook @SIXonHISTORY @TVInsider Indeed. 👍🏻👊🏻 🍻 +06/06/2018,Actors,@BarrySloane,Always great talking @SIXonHISTORY with @damianholbrook - Extra points if you can understand my accent first time.… https://t.co/ncdLHJdY0b +06/06/2018,Actors,@BarrySloane,#WatchYourSix - It’s a Capture/Kill mission… https://t.co/IcVQ9HoCLZ +06/06/2018,Actors,@BarrySloane,@Soniasuponia @elijahwood For you @DPCarv 😂👌🏻 +06/06/2018,Actors,@BarrySloane,"Check out the @SIXonHISTORY - @afterbuzztv show - Tonight! At 7pm. +💪🏻🐻👊🏻 #SixOnHistory #SIXLIVE https://t.co/N1JfGWgMAU" +06/06/2018,Actors,@BarrySloane,"Great interview with @MensJournal about @SIXonHISTORY - My prep for the role, accents, @Stranger_Things and more.... https://t.co/CMFoEJAVkL" +06/06/2018,Actors,@BarrySloane,"RT @mjfit: From scaling mountains to hiking over raging rivers, the cast of @SIXonHISTORY did it all to prepare for Season 2. + +We spoke wit…" +06/06/2018,Actors,@BarrySloane,RT @Matthew_Jussim: Loved getting to chat with the awesome @BarrySloane about Season 2 of @SIXonHISTORY.. We spoke about what it takes to p… +06/05/2018,Actors,@BarrySloane,"Great interview with @MensJournal about @SIXonHISTORY - My prep for the role, accents, @Stranger_Things and more...… https://t.co/U4iAQOXATM" +06/05/2018,Actors,@BarrySloane,RT @TellTaleTV_: Nikolai Nikolaeff Talks #SIXonHistory [Exclusive Interview] @NNikolaeff https://t.co/yJstWWLhOv https://t.co/9NjUNO84rt +06/05/2018,Actors,@BarrySloane,"RT @parentsmagazine: .@TheBrianneDavis, star of #SixonHistory, opened up about her miscarriage in our July issue: ""Tell everybody. Speak yo…" +06/05/2018,Actors,@BarrySloane,"Hey Kev, @5spiketv will be showing Season 2, not sure when. And great news that @HISTORYUK now also have the rights… https://t.co/puaVrF670D" +06/05/2018,Actors,@BarrySloane,"How we shot the Blackhawk scenes midair on @SIXonHISTORY 💪🏻🐻👊🏻 +#SixOnHistory #SixLive https://t.co/veYBQADZFA" +06/05/2018,Actors,@BarrySloane,RT @TomLangevin13: Thank you @SIXonHISTORY was happy to donate but this is just an added bonus! @BarrySloane @EricLadin #SIXonHistory https… +06/05/2018,Actors,@BarrySloane,RT @StarryMag: .@SIXonHISTORY fans get to know new star @EricLadin reading Editor @NotYerAvgChick's interview at https://t.co/dWoeTUd5I5! #… +06/04/2018,Actors,@BarrySloane,"Don’t worry I’ve just called ALL the Liverpool fans and it turns out it’s fabricated Bollocks, or I might have just… https://t.co/opseKtkVUq" +06/04/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Better to have Caulder on your team than the other team. He's a deadly weapon on SEAL Team SIX. #SIXonHISTORY https://t.c… +06/04/2018,Actors,@BarrySloane,Oh Fuck Off. https://t.co/a2TeD2c89o +06/04/2018,Actors,@BarrySloane,WatchYourSix - For Episode 3 of @sixonhistory Joe gets a #Shave and a #Haircut courtesy of @candices ✂️ Remember it… https://t.co/5pDCWnpjKP +06/04/2018,Actors,@BarrySloane,You only have till Wednesday 👊🏻 #SIXONHISTORY #SixLive https://t.co/erMczciPfF +06/04/2018,Actors,@BarrySloane,https://t.co/vp9cbhfLvv +06/04/2018,Actors,@BarrySloane,@ht_isfj They wanted ‘General Northern’ which is usual 😶 +06/04/2018,Actors,@BarrySloane,RT @Jaylen_Moore: Check out this interview I did with @tvserieshub… https://t.co/ZVVOwGR66c +06/04/2018,Actors,@BarrySloane,Nope. I have very very rarely been able to use my natural accent for a job. #Revenge #SixOnHistory https://t.co/zMUYnLVsdP +06/30/2018,Actors,@MichaelEmerson,We are serious @MLB baseball fans at our house but continue to be fascinated by the compulsive oral habits of the g… https://t.co/W9UNDAKkIG +06/29/2018,Actors,@MichaelEmerson,"A few days relaxing in Italy will be nice! No work, just sunshine, big family meals and daytrips to hill towns and… https://t.co/MgQP0NyT2y" +06/28/2018,Actors,@MichaelEmerson,I read in Deadline Hollywood that Name of the Rose will be aired in North America sometime in 2019 on AMC’s… https://t.co/jhGJ0lHPT3 +06/11/2018,Actors,@MichaelEmerson,I’m excited to watch my lady-wife do her thing on tonight’s season premiere of @ClawsTNT Such a powerful cast!… https://t.co/imlgwkGn4r +06/02/2018,Actors,@MichaelEmerson,My hat’s off to Lindy West (again and again) +06/02/2018,Actors,@MichaelEmerson,We had big fun last night in the Quarter! @HaroldPerrineau @itisIjudyreyes @carriepreston @karrueche and I dined at… https://t.co/XasILpkZsl +05/30/2018,Actors,@MichaelEmerson,What a fine time in Houston hanging out with good friends from LOST @CarbonellNestor @hicusick @FrancoisChau and th… https://t.co/RDjsNIfxpJ +05/26/2018,Actors,@MichaelEmerson,PS The photomontage (perhaps not the right word?) was created by Peter Teige and Tajmey Teige at https://t.co/upW6Mc1KiW Hats off to them! +05/26/2018,Actors,@MichaelEmerson,I met so many lovely people at Comicpalooza today— thanks for such a warm reception! Received this amazing photo-mo… https://t.co/w0pZvYI5Kv +05/25/2018,Actors,@MichaelEmerson,Wow— my first time in Houston! What a huge sprawling place it is! Staying in the CBD near the convention center for… https://t.co/lBJ1u6904i +05/22/2018,Actors,@MichaelEmerson,We stumbled upon @MaypopRestauran tonight in the CBD of NOLA— cool fusion of NewOrleans and Vietnamese flavors. We… https://t.co/1FeBt4ALXq +05/18/2018,Actors,@MichaelEmerson,It’s Tony-voting season and even wiseguy locals like Yours Truly struggle to get tix for good shows. No dismay tho… https://t.co/yyKJr6MiQs +05/06/2018,Actors,@MichaelEmerson,Carrie and I are having fun at the New Orleans Jazz Fest— a little too hot for comfort but the music is fabulous! J… https://t.co/XjK3k915He +05/03/2018,Actors,@MichaelEmerson,"I have been working with the strangest haircut of my career. +I’m hoping that 21st-century hair will soon reclaim my… https://t.co/5QdLlDCm3B" +05/03/2018,Actors,@MichaelEmerson,Last night I read “Marabou” by Joy Williams at Symphony Space. It’s a difficult piece because of how it’s written a… https://t.co/wgDLtqzPVL +04/27/2018,Actors,@MichaelEmerson,"This production of The Name of the Rose is, as far as I know, an Italian production but shot in English so presumab… https://t.co/zU9ro3s45Z" +04/26/2018,Actors,@MichaelEmerson,Last scene of my last day. The Abbot is awakened by a monk with a candle who brings bad news. Cut. Last dinner at O… https://t.co/A7LUPlaORj +04/21/2018,Actors,@MichaelEmerson,The end of a project sneaks up on you- too few days to say goodbye to your new friends and family. Too few days to… https://t.co/0lPdUBt2Rk +04/15/2018,Actors,@MichaelEmerson,"shipping crate, darn it" +04/15/2018,Actors,@MichaelEmerson,"My characters always seem to end up in a tunnel, AC duct, shopping crate or the trunk of a car. I suppose it is one… https://t.co/hsXaY2YgM9" +04/09/2018,Actors,@MichaelEmerson,Left wintry NYC for Spring in Rome- 72* F and sunny on Sunday. Everyone outdoors and the sidewalk tables full. Stun… https://t.co/aZxCzrBnfr +04/08/2018,Actors,@MichaelEmerson,Basil Twist’s abstract puppet show Symphonie Fantastique at HERE in NYC is a wonderful and elemental theatrical exp… https://t.co/WUHwi5fGht +04/01/2018,Actors,@MichaelEmerson,"Saw a great prod of Tom Stoppard’s TRAVESTIES at Roundabout Theater last night. Difficult script- art, politics and… https://t.co/VLyTDQoF94" +03/23/2018,Actors,@MichaelEmerson,"I really love the Donald Link restaurants in the Warehouse District here in New Orleans- +Herbsaint, Pêche, and Coch… https://t.co/Hm5zzz6MeS" +03/21/2018,Actors,@MichaelEmerson,Had to reschedule my return to NYC due to snowstorm. Nothing to do but try to tough it out a few more days in New Orleans. Oh well... 😎 +03/12/2018,Actors,@MichaelEmerson,We attended @thebukuproject last night- music and fashion amidst Mardi Gras parade figures. A really great set by… https://t.co/iVrW0neVZf +03/10/2018,Actors,@MichaelEmerson,"A bright warm day in New Orleans, good for a long ride on the St. Charles streetcar. Jovial crowd at the Rusty Nail… https://t.co/55M9gkadwU" +03/07/2018,Actors,@MichaelEmerson,I suspect tomorrow will be another winter-travel debacle for me. Typical. My air-travel plans seem to agitate Arcti… https://t.co/MAFwRePqhj +03/06/2018,Actors,@MichaelEmerson,The 3 biggest towers at Hudson Yards just west of us. It’s like watching the construction of Oz https://t.co/TPR1lxZl5e +03/03/2018,Actors,@MichaelEmerson,Always nice to return to the USA from work abroad. Customs continues to be exasperating but Home is Home and I can… https://t.co/w2jT6YTSUn +03/01/2018,Actors,@MichaelEmerson,Here’s what is humbling: watching your new actor friend carry on fluent conversations in 4 languages in as many hou… https://t.co/BWmt3Qumny +02/26/2018,Actors,@MichaelEmerson,Piazza Cavour https://t.co/EMuZYeS9sw +02/26/2018,Actors,@MichaelEmerson,Still- sidewalk tables packed in Piazza Navona!! Haha Intrepid +02/26/2018,Actors,@MichaelEmerson,"Surprise winter weather here in Rome! Looks like 4” of wet snow and it’s quite cold (32*F/0*C) +Schools closed, tree… https://t.co/QSDnswVvgg" +02/24/2018,Actors,@MichaelEmerson,On The Name of the Rose we spend a lot of time considering the hot topics of the Catholic Church in the 1320s. The… https://t.co/WWuOio3dOW +02/17/2018,Actors,@MichaelEmerson,Oops— again I misunderstand the Twitter system. Disregard that last one- it was for Carrie! Haha 🤓 +02/17/2018,Actors,@MichaelEmerson,Hey- stop liking me so much! 🤓 +02/17/2018,Actors,@MichaelEmerson,"This fellow says, “Yes, I’m out here in the cruel elements, but I will outlive you” https://t.co/Jt1CtCbrtQ" +02/17/2018,Actors,@MichaelEmerson,It’s one thing to draw the human figure accurately— to chip it out of a block of stone so finely that it seems to b… https://t.co/ij0y7WMDrB +02/17/2018,Actors,@MichaelEmerson,Hiked up to the Villa Borghese today where they have a stunning collection of marble statues by Bernini. https://t.co/ZIERDRIOXo +02/17/2018,Actors,@MichaelEmerson,"Haven’t been able to watch @MITJAmazon yet (I gather it’s out there). Hope it’s funny- they are a lovely, carefree… https://t.co/tjHBMbAEEB" +02/12/2018,Actors,@MichaelEmerson,Neglected to mention that il mio Italiano è pietoso. Perdonami +02/12/2018,Actors,@MichaelEmerson,Really very humbling to work with a cast of European actors who all speak English and usually several other languag… https://t.co/dVy68PXFVL +02/07/2018,Actors,@MichaelEmerson,You walk by Teatro 5 at Cinecittá and you think “Oh my! Fellini did his interiors here!” Legendary place! And I am… https://t.co/eBl8B8RAkh +02/04/2018,Actors,@MichaelEmerson,"There’s a certain thrill you get riding through the pre-dawn streets of Rome, past deserted piazzas and looming mon… https://t.co/qpZQqOM8KQ" +01/23/2018,Actors,@MichaelEmerson,Traveling to Europe today to work on an exciting project. Exciting and stressful. (Too far from my family). Hope it… https://t.co/7I1YiLzy8J +01/21/2018,Actors,@MichaelEmerson,"LOST still gets cited in an SNL sketch! Cultural longevity! +@DamonLindeloff @CarltonCuse" +01/19/2018,Actors,@MichaelEmerson,More proud than ever to be part of @CW_Arrow +01/19/2018,Actors,@MichaelEmerson,Diggle full-strength! Hooray! +01/19/2018,Actors,@MichaelEmerson,"This abandoned warehouse was SO COLD! +Insanely good stunt work" +01/19/2018,Actors,@MichaelEmerson,Who knew our heroes looked so good in blue light?!! Such great production values on @CW_Arrow +01/19/2018,Actors,@MichaelEmerson,Unbelievable stunts! David! Tobias! How’d GA shoot that sphere?! Great stuff +01/19/2018,Actors,@MichaelEmerson,"Enjoying Arrow live broadcast, complete w commercials! So many good villains! Katie! Johann! KIRK!" +01/19/2018,Actors,@MichaelEmerson,What’s to be done on the day you realize you are parent to your parents? So sobering and so sad. Real grownup stuff… https://t.co/MUNkshTp37 +01/11/2018,Actors,@MichaelEmerson,Really enjoying audiobook adventures of Inspector Maigret by Georges Simenon. Crisp detective stuff and a taste of… https://t.co/aiMVnzT3Xk +01/06/2018,Actors,@MichaelEmerson,New York is now a vast field of salt-preserved slush— unfreezable despite the arctic cold. A lot of sad dogs limpin… https://t.co/C5Fm9kVBLr +12/31/2017,Actors,@MichaelEmerson,"Carrie is whipping up traditional Southern fare for this evening- biscuits, black-eyed peas, collard greens and squ… https://t.co/CE6jpIcxA0" +12/29/2017,Actors,@MichaelEmerson,"Had a ferocious scene with @kirkacevedo on @CW_Arrow just before Christmas— he’ll make your hair stand on end! +Heal… https://t.co/ESHuq3YliL" +12/29/2017,Actors,@MichaelEmerson,No worries- I thought you meant Transmit More Images 😜 https://t.co/lMt2OVuEY1 +12/28/2017,Actors,@MichaelEmerson,"Nothing dampens the Yuletide spirit like 2 days of gastroenteritis in a hotel room! +Maybe it bodes well for the New Year? Oof." +12/17/2017,Actors,@MichaelEmerson,I want to say that @JGHorn is a wonderful interviewer and I was glad to have a chance to talk to him on #GeffenPlayhouseUnscripted +12/16/2017,Actors,@MichaelEmerson,Sorry for duplication- technical confusion. Sigh +12/16/2017,Actors,@MichaelEmerson,@JGHorn is a wonderful interviewer- so glad I had a chance to talk to him on #GeffenPlayhouseUnscripted +12/15/2017,Actors,@MichaelEmerson,@JGHorn is such a wonderful interviewer— so glad I had a chance to talk to him on #GeffenPlayhouseUnscripted +12/15/2017,Actors,@MichaelEmerson,@JGHorn is a wonderful interviewer- so glad I had a chance to talk to him! #GeffenPlayhouseUnscripted +12/14/2017,Actors,@MichaelEmerson,"Heavy work on @CW_Arrow A lot of danger, desperation and bodies flying around. Sturm und Drang. But what did I expect? Tea with crumpets? 🤓" +12/04/2017,Actors,@MichaelEmerson,And the Iliad narrative never stops being topical. (Sadly) The pride and violence of men brings death and ruin and… https://t.co/3EnGbhMwEo +12/04/2017,Actors,@MichaelEmerson,Final performance of An Iliad tonight at the Sheen Center on Bleecker in NYC. Powerful stuff +12/04/2017,Actors,@MichaelEmerson,Im totally floored by Ms Tarah Flanagan’ performance tonight in AN ILIAD by @denisohare and @Lpete88888 STUNNING +11/27/2017,Actors,@MichaelEmerson,"It’s nice to be a member of the villains club on @CW_Arrow - such a brilliant group of actors-talented, personable… https://t.co/doTREYrEOV" +11/22/2017,Actors,@MichaelEmerson,Rainy and cold in Vancouver but warm hearts and good humor on the set of @CW_Arrow. All best wishes to @MzKatieCassidy and her family. +11/18/2017,Actors,@MichaelEmerson,"Glad to hear the US Fish & Wildlife Service is on the case, making sure we can get back to hunting elephants as soo… https://t.co/SqveI9XMtD" +11/18/2017,Actors,@MichaelEmerson,Found the freshly-severed wing of a Northern Flicker on our terrace this week! (Midtown Manhattan!) The natural wor… https://t.co/lKH3P21I5O +11/18/2017,Actors,@MichaelEmerson,The men’s and women’s curling are equally interesting- I love the still focus of the curler and the madness with th… https://t.co/fvmCtEMIBn +11/18/2017,Actors,@MichaelEmerson,Watching the US Olympic curling trials (ha)— one of my favorite sports! I find it very soothing 🤓 +11/14/2017,Actors,@MichaelEmerson,"And @SeaOakAmazon is written by George Saunders, author of Lincoln in the Bardo. Such a beautiful book!" +11/14/2017,Actors,@MichaelEmerson,O wow— we love the pilot of @SeaOakAmazon our friend @benlivingston7 is great! @GlennCloseNews is OFF THE CHART +11/04/2017,Actors,@MichaelEmerson,Im so grateful to have found a seat at the the @CW_Arrow family feast. Cause for thanksgiving. Such a sweet and hospitable company. O Canada +10/29/2017,Actors,@MichaelEmerson,Proud of Iowa State's victory over TCU in college football. Two wins over top-5 teams in the space of a month! @goclones20 +10/20/2017,Actors,@MichaelEmerson,Quite a rousing essay by Lindy West in Wednesday's @NYTimes-- thrilling balance of outrage and wit +10/17/2017,Actors,@MichaelEmerson,Oops-- meant @morganlibrary Not a computer genius-- I just play one on tv ;-) +10/16/2017,Actors,@MichaelEmerson,"Amazing show of drawings at @Morganlibrary1 in nyc. I find I am partial to the French- Ingres, Degas, Daumier and the sublime Seurat" +10/13/2017,Actors,@MichaelEmerson,Have seen some fine cabaret perfs lately-- the indescribable Carol Lipnik and the fiercely eclectic Evangelia Kingsley. U gotta love NYC! +10/01/2017,Actors,@MichaelEmerson,Great to be in Georgia for the benefit at Theatre Macon-- where @carriepreston and her brother John began acting. Inspired by dear Jim Crisp +09/17/2017,Actors,@MichaelEmerson,"No better place for a going-away party than the Bohemian Hall and Beer Garden in Astoria-- fine summer night, music, beer, good friends" +09/16/2017,Actors,@MichaelEmerson,Sad to read of the passing of Harry Dean Stanton-- superb character player-- inspiration for other late-bloomers +09/11/2017,Actors,@MichaelEmerson,"Best wishes for all friends and relatives in Florida tonight. Clearwater and Jacksonville, hang in there!" +09/10/2017,Actors,@MichaelEmerson,Horrified to read that some people fleeing Irma have left their pets locked in kennels or chained to trees. Unconscionable +09/05/2017,Actors,@MichaelEmerson,Interesting speech on the subject of deportation (from the Elizabethan play Sir Thomas More) possibly written by Wm… https://t.co/2NUAzi5Ole +09/03/2017,Actors,@MichaelEmerson,"Quiet holiday weekend in NYC, chilly and wet-- takeout and Twin Peaks. All vacations completed-- summer ending, time to get serious, I guess" +08/16/2017,Actors,@MichaelEmerson,Vancouver lives up to its' rep as a lovely city-- scenic and cosmopolitan. Im getting such gracious treatment at @CW_Arrow great cast&crew! +08/08/2017,Actors,@MichaelEmerson,Glad @patrickryannyc 's #TheDreamLifeOfAstronauts is out @randomhouse I read one on #SwampRadio. U can hear it here: https://t.co/UuAZzd7tsF +08/03/2017,Actors,@MichaelEmerson,"We watched, fascinated and amazed, Derek DelGaudio's magic show @InandOfItself last night at the @DarylRoth Theatre in NYC. It's a wonder!" +07/29/2017,Actors,@MichaelEmerson,So happy to appear on @MITJAmazon - after yrs of playing dark & real I get to revert to my essential silliness. And what a lovely company! +07/28/2017,Actors,@MichaelEmerson,I think I'm Vancouver-bound! Excited to join a fabulous success like @ArrowCWTV. I'll just keep my head down and try to make a contribution +07/18/2017,Actors,@MichaelEmerson,After a few hours of sweaty NYC errands it's nice to retreat to the cool shade of Black Door and an adult beverage. Summer in the city! +07/10/2017,Actors,@MichaelEmerson,Suddenly I'm playing lots of characters in wigs and beards-- not terribly comfortable but it's fun to show @carriepreston and make her laugh +07/04/2017,Actors,@MichaelEmerson,Having a great Fourth in the Catskills-- brilliant bluegrass music ON OUR PORCH last night by Two Dollar Goat! Foot-stomping goodness! +06/29/2017,Actors,@MichaelEmerson,It gladdened my heart to be part of this acting community and a member of an honest-to-god old-school American labor union! @ActorsEquity +06/29/2017,Actors,@MichaelEmerson,Went to the unveiling of Kate Burton's caricature at Sardi's and was happy to be part of such a proud tradition. Hats off to dear Kate! +06/28/2017,Actors,@MichaelEmerson,"A grand party tonight w @AmyAcker , @TheJimmyCarp, @carriepreston, @boglesthemind, Amy C and Shelly at @PNPizza https://t.co/luZZanILoU" +06/26/2017,Actors,@MichaelEmerson,Saw Paula Vogel's @IndecentBway yesterday-- such a beautiful show! +06/15/2017,Actors,@MichaelEmerson,"Fab lunch today at @CafeAmelieNOLA on Royal in the Quarter-- great street of art, antique & jewelry shops-- but it's hot here in the sun" +06/11/2017,Actors,@MichaelEmerson,"Good times in NOLA yesterday- +Cajun Tomato Festival and dinner at @sylvainnola in the French Quarter with @julieannemery and @ferrarasusan" +06/02/2017,Actors,@MichaelEmerson,I saw a brilliant production of Government Inspector at @redbulltheater last nite! Fab cast led by the stunning @michaelurie HILARIOUS!! +06/01/2017,Actors,@MichaelEmerson,@JelloMoldEnnui Hard work but a beautiful book +05/29/2017,Actors,@MichaelEmerson,I really like @jessmendoza and her sharp commentary on baseball. Refreshing +05/24/2017,Actors,@MichaelEmerson,"One of the great features of NYC is your neighborhood 24-hour diner. +In my case, the Malibu! Every kind of character, every kind of food!" +05/18/2017,Actors,@MichaelEmerson,"I've just seen the pilot of @ClawsTNT and it is sensational! +Gripping, raunchy, funny, heart-breaking." +05/11/2017,Actors,@MichaelEmerson,"You get a pretty high order of acceptance speech at Off-B'way theater awards. Passionate, poetic, political." +05/09/2017,Actors,@MichaelEmerson,Congrats to @JOEtheMORTON on winning the @LortelAward on Sunday! Terrific actor! +05/07/2017,Actors,@MichaelEmerson,@LortelAwards tonight-- chance to hobnob with old theater friends. Might be a nice party afterwards +05/07/2017,Actors,@MichaelEmerson,Really good Portuguese restaurant in my new nabe-- @LupuloNYC great sm plates and unusual beers +05/01/2017,Actors,@MichaelEmerson,@widgetfactoryco @wwoz_neworleans Ain't it great?! +05/01/2017,Actors,@MichaelEmerson,"One of the best discoveries from my time in NOLA was radio station @wwoz_neworleans -- early jazz, blues, Cajun, Zydeco, r&b, you name it!" +04/24/2017,Actors,@MichaelEmerson,Had a grand dinner with @HaroldPerrineau in NOLA last week at Seaworthy. I think he's going to be amazing in #ClawsTNT. Such a fine actor! +04/16/2017,Actors,@MichaelEmerson,Hard to stop eating in New Orleans-- one fabulous restaurant after another-- working on a graduate degree in gumbo studies +04/16/2017,Actors,@MichaelEmerson,Easter dinner with family in New Orleans at @DelmonicoNOLA -- heavenly food! +04/10/2017,Actors,@MichaelEmerson,"I'm shocked and saddened to hear of the death of #TimPigottSmith on Friday. A lovely, funny, generous man and a mighty actor." +04/04/2017,Actors,@MichaelEmerson,Fine Bluegrass at the Flatiron Room on Mondays-- does my heart good! @AbbyHollander and crew doing it for real +04/02/2017,Actors,@MichaelEmerson,"Last performance of WAKEY WAKEY today. The show, like the winter, has given way to Spring. +Here's to Will and @justjanuary" +03/25/2017,Actors,@MichaelEmerson,"RT @carriepreston: What a lovely video, thanks @thegoodfight ! https://t.co/miy7EZpWwA" +03/20/2017,Actors,@MichaelEmerson,Your body does not know that stage grief is not real grief. The same way it doesn't know a stage kiss is not a real kiss. Hazardous terrain. +03/18/2017,Actors,@MichaelEmerson,"The audio recording of AMADEUS that I did with @LATheatreWorks sounds very good! Great pace, great sound effects. And a wonderful cast!" +03/18/2017,Actors,@MichaelEmerson,"My friend Kate Burton, an actor of tremendous power and charm, is in the new production of Present Laughter with Kevin Kline" +03/08/2017,Actors,@MichaelEmerson,"The 2-show days on a play are tough if the material is heavy and you never leave the stage. +I dont think I have the stamina I once had. Ha" +02/19/2017,Actors,@MichaelEmerson,"Tooth paint to play a drunk in O'Neill, spirit gum for a false mustache in Chekhov and an antique hand mirror given to me by Kevin Spacey" +02/19/2017,Actors,@MichaelEmerson,"My old makeup box, unopened for 11 years, is a trip to the past. Creme colors, clown white & lipstick for playing old men, old women & fools" +02/17/2017,Actors,@MichaelEmerson,"Sorry to be so out-of-touch! The play has been all-consuming. Going reasonably well, I think. Lots of nerves, lots of rituals" +01/26/2017,Actors,@MichaelEmerson,"Oops-- was #MurphysLaw a tv show? I just meant ""If it can go wrong...""" +01/26/2017,Actors,@MichaelEmerson,"Got a guy coming tomorrow to cut up a metal table that wont fit thru the apt door. Ah, the joys of home ownership! #MurphysLaw" +01/14/2017,Actors,@MichaelEmerson,"My better half @carriepreston starts shooting ""Claws"" for TNT next month. It's juicy and Southern. @NiecyNash at the vanguard in NOLA" +01/14/2017,Actors,@MichaelEmerson,"Have just finished, drop by precious drop, a gift bottle of @MichtersWhiskey 20 yr old bourbon. Finest ever. Heavenly" +01/14/2017,Actors,@MichaelEmerson,"Rehearsing a play in NYC-- had forgotten what hard, satisfying work it can be! All the old traditions, all the old rhythms. +Scary, too" +01/05/2017,Actors,@MichaelEmerson,Had a very fine lunch today at @ililiRestaurant -- Lebanese on 5th Avenue. Must revisit some evening +01/04/2017,Actors,@MichaelEmerson,"Funny how u can move 30 blocks in NYC and feel yr in another town. Where's the pharmacy, hardware, pet supply, Chinese takeout, etc? All new" +01/01/2017,Actors,@MichaelEmerson,"Family New Years Eve- 5 adults, 2 nephews, 1 dog. Hoppin John, fried chicken and Snickers cones-- great view of Times Sq from our terrace 🎉" +12/21/2016,Actors,@MichaelEmerson,Stricken last weekend with nerve inflammation in my neck-- couldnt move my head! Felt like Mr Finch! Ouch +12/10/2016,Actors,@MichaelEmerson,"Lovely fan gifts lately- glass birds, gloves, scarves, needlepoint- even an Advent calendar. We'll find good homes for all of them. Thanks!" +12/04/2016,Actors,@MichaelEmerson,"Doing housework listening to @KTUH_FM from Honolulu-- fabulous funk/r&b show and it's still Sunday morning there! +Love that station" +11/30/2016,Actors,@MichaelEmerson,Francilla from @Coreterno gave me a beautiful candle today! They are at the pop-up holiday market on Broadway in Soho +11/29/2016,Actors,@MichaelEmerson,@dinamartina was hilarious in her holiday show at B B King's this evening! Great kickoff for the season +11/28/2016,Actors,@MichaelEmerson,"Drunkle Vanya at the Russian Samovar was splendid tonight! Great food & drink too! +@DrunkleVanya @3DayHangover" +11/28/2016,Actors,@MichaelEmerson,Saw My Name is Gideon at Rattlestick Theater last night-- weird and wonderful +11/24/2016,Actors,@MichaelEmerson,Cooking for the whole clan today-- no furniture yet so we made a table out of boxes and trunks! +11/15/2016,Actors,@MichaelEmerson,"Really, @GreatCometBway has one show-stopping song after another and sensational dancing! +What a workout for this mighty cast! Amazing" +11/15/2016,Actors,@MichaelEmerson,Saw the opening of @GreatCometBway tonight and it is stunning +11/15/2016,Actors,@MichaelEmerson,Always glad to make a contribution to #Wikipedia -- I like the concept and use it a lot +11/14/2016,Actors,@MichaelEmerson,(If you grew up in Tama County in the 60s) I dont want Wolverines to be angry with me-- it's just my roots 🙂 +11/14/2016,Actors,@MichaelEmerson,A dramatic victory for the #IowaHawkeyes over Michigan yesterday- very satisfying +11/11/2016,Actors,@MichaelEmerson,Moving is truly stressful-- living in a purgatory of cardboard boxes and misplaced goods. Difficult if you depend on order (as I do) +11/11/2016,Actors,@MichaelEmerson,Doing @SelectedShorts next Wednesday at @SymphonySpace could be fun-- @harvardlampoon material +11/02/2016,Actors,@MichaelEmerson,"It's a great Series and we love MLB but we're mystified by the tradition of chewing and spitting. +Makes for some cringe-worthy closeups!" +11/01/2016,Actors,@MichaelEmerson,I had a great time at #WalkerStalkerCon -- so many enthusiastic fans and such fine hospitality +10/28/2016,Actors,@MichaelEmerson,Flying to Atlanta for #WalkerStalkerCon -- no idea what to expect! Looks like hot weather +10/25/2016,Actors,@MichaelEmerson,"Just finished #TheNightOf -- +John Turturro, @rizmc, Jeannie Berlin, Bill Camp, @amarakaran SENSATIONAL! What a stunning cast!!" +10/16/2016,Actors,@MichaelEmerson,"Reading about Astor Place riots 1849. Hard to imagine a time when Shakespeare mattered so. +Forrest vs Macready! Wow" +10/10/2016,Actors,@MichaelEmerson,"Just discovered Hi Fructose (late, as ever)-- what a cool magazine! Greg Simkins is something else!" +10/10/2016,Actors,@MichaelEmerson,Loved Stephen Greenblatt's essay in the NY Times today re Trump and Richard III +10/10/2016,Actors,@MichaelEmerson,Really enjoyed Michael Chitwood's poem The Tree in Threepenny Review. I have carried buckeyes in my pockets often and for the same reasons +10/10/2016,Actors,@MichaelEmerson,Enjoying a quiet month in NYC-- Carrie filming in NOLA and me feathering a new nest. Anxious to see The Encounter on B'way +09/29/2016,Actors,@MichaelEmerson,"#Westworld is stunning-- beautiful, terrifying, mysterious hats off to @JonathanNolan and @lisajoynolan" +09/29/2016,Actors,@MichaelEmerson,@carriepreston and I are heading to the #Westworld premiere-- @JonathanNolan and @lisajoynolan can be trusted to do something sensational +09/26/2016,Actors,@MichaelEmerson,Proud to be part of the LATW production of AMADEUS-- thanks to everyone who came and for lovely gifts +09/19/2016,Actors,@MichaelEmerson,@ItsRamiMalek !!!!How great is he?!!! We're so happy for our gifted friend #Emmys +09/19/2016,Actors,@MichaelEmerson,I can only wish https://t.co/W09cZZeLSI +09/19/2016,Actors,@MichaelEmerson,"@sterlingkb1 wins the Emmy!! +YES YES YES Loveliest man and fabulous actor! Dont know when I've been this happy about an award" +09/10/2016,Actors,@MichaelEmerson,My lady wife in perhaps her best-ever gown heading to the Emmys https://t.co/rQHPJ7SEdr +09/03/2016,Actors,@MichaelEmerson,Just before the hurricane with @carriepreston and a little canine https://t.co/y42Sm5iIdE +09/03/2016,Actors,@MichaelEmerson,Driftwood Beach on Jekyll Island-- amazing graveyard of dead trees https://t.co/68LzLxPRfm +09/02/2016,Actors,@MichaelEmerson,Rode out some wild weather last night on Jekyll Island! Hello #Hermine !!! +08/31/2016,Actors,@MichaelEmerson,"Brother, that is hilarious! https://t.co/5lqjyAQMDb" +08/29/2016,Actors,@MichaelEmerson,"Carrie&I had a ball at the #AFROPUNKBK2016 fabulous music&styles! @lauramvula wow @TVonTheRadio yes! +@CeeLoGreen fabulous" +08/25/2016,Actors,@MichaelEmerson,"So proud to have read a @patrickryannyc story on the upcoming #SwampRadio podcast. Due on Labor Day, I think. ""Fountain of Youth""" +08/25/2016,Actors,@MichaelEmerson,@carriepreston has a lovely Emmy dress-- hope my tux still fits. Very demanding day for the girls-- I feel their pain +08/25/2016,Actors,@MichaelEmerson,Very excited about @carriepreston and @HaroldPerrineau doing the pilot of #Claws with @NiecyNash ! Hell of a script +08/17/2016,Actors,@MichaelEmerson,"Saw a wonderful play #MenOnBoats at @PHnyc female cast as frontier explorers. +Hilarious and strangely moving" +08/07/2016,Actors,@MichaelEmerson,"Went to a stunning concert in London- Weimar Cabaret with @BarryHumphries1 and the heavenly @MeowTopia Her ""Surabaya Johnny"" was a marvel" +08/03/2016,Actors,@MichaelEmerson,"My thanks to Anna, Megan and Gerri and to fans bearing gifts (including two glass finches!) +#londonfilmandcomiccon" +08/03/2016,Actors,@MichaelEmerson,So nice to be reunited with @HaroldPerrineau and @DomsWildThings for a #Lost panel. 2 of the smartest & funniest! #londonfilmandcomiccon +08/03/2016,Actors,@MichaelEmerson,Had a great time meeting fans of #Lost #PersonOfInterest #Saw at #londonfilmandcomiccon So many lovely people! +07/28/2016,Actors,@MichaelEmerson,Nervous about #londonfilmandcomiccon tomorrow but it's exciting to be in this great city! +07/21/2016,Actors,@MichaelEmerson,Looking forward to #londonfilmandcomiccon It'll be great to meet the UK fans! @Showmasters +07/15/2016,Actors,@MichaelEmerson,.@carriepreston says this is now her favorite movie. Ha https://t.co/iOqhuTfOnU +06/24/2016,Actors,@MichaelEmerson,Having a quiet lunch at Blue Seafood Bar on 9th Av-- best clam chowder ever +06/22/2016,Actors,@MichaelEmerson,"And that's how we roll on #PersonOfInterest I'm satisfied. +Namaste" +06/22/2016,Actors,@MichaelEmerson,Jim C pretty fabulous on the rooftop #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,#johnreese +06/22/2016,Actors,@MichaelEmerson,Tough to say goodbye to #john reese after all this time on #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,Hard to imagine the real pain of a gunshot wound #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,@carriepreston celebrating birthday same day as #PersonOfInterest finale +06/22/2016,Actors,@MichaelEmerson,"Here we go! Last ep ever of #PersonOfInterest . Heartfelt thanks to our loyal and passionate fans! If I recall correctly, this is a good one" +06/15/2016,Actors,@MichaelEmerson,Tough scene with Greer in the airless room #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Harold's in the belly of the beast now. #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Mr Finch limping toward his fate on #Personofinterest !! +06/15/2016,Actors,@MichaelEmerson,#Tesla nice as a driverless auto on #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Hell's Kitchen full of #Lost fans today. I must watch it again (but when?) +06/15/2016,Actors,@MichaelEmerson,@katerigg and @lyrishung were formidable in #HappyLuckyGoldenTofuPandaDragonGoodTimeFunFunShow +06/15/2016,Actors,@MichaelEmerson,@carriepreston premiered her movie of #HappyLuckyGoldenTofuPandaDragonGoodTimeFunFunShow at Soho FF last night! Hilarious +06/13/2016,Actors,@MichaelEmerson,I try not to oversell #HamiltonMusical but I've never seen the like of it. THRILLING +06/29/2018,Actors,@AmyAcker,"RT @mhsutaylor: And, completing the family: Lauren + Andy = Fenris. Pick a side in the #MutantUprising @TheGiftedonFOX https://t.co/zX7qVma…" +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Supercool surprises on the way from Caitlin and Reed Strucker. #MutantUprising @TheGiftedonFOX https://t.co/D02WIjIxol +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: For fans of the Aurora Borealis. #MutantUprising @TheGiftedonFOX https://t.co/2IwwzqPgyN +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Adding to the #MutantUprising in Season 2 of @TheGiftedonFOX https://t.co/IfBMfbNOwx +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Season 2 of @TheGiftedonFOX premieres Tues Sept. 25th! And here's a sneak peek at our Comic Con art... More #MutantUprising… +06/17/2018,Actors,@AmyAcker,RT @jvagle: Fellow lawyers: Here’s how we may be able to help. https://t.co/Xo8GscYggd +06/07/2018,Actors,@AmyAcker,RT @CountryTime: Kids across the country are getting busted for operating lemonade stands without a permit. We're taking the lead to #SaveL… +06/06/2018,Actors,@AmyAcker,RT @Adam_Bartley: Cannot wait to see this doc #Longmire fans! So many other great shows too that were saved by fans like you with actors li… +05/15/2018,Actors,@AmyAcker,"RT @WhedonCon: @AmyAcker Our charity convention WhedonCon is THIS weekend in Los Angeles, and we need help spreading the word so we can rai…" +05/13/2018,Actors,@AmyAcker,Yes!! https://t.co/etgvnFDUYW +05/13/2018,Actors,@AmyAcker,Thank you❤️ https://t.co/mqKW96Ggsa +05/13/2018,Actors,@AmyAcker,Happy Mother’s Day you glorious moms who make it all happen! #momisasuperpower #X +04/28/2018,Actors,@AmyAcker,RT @_HeroesForHire: .@AmyAcker and @TheJimmyCarp in @Calgaryexpo parade! https://t.co/Hnen5TS0UJ +04/04/2018,Actors,@AmyAcker,Please check out @TheWayItBegins to see the beautiful short film directed by my friend and #POI alum #ChrisWright… https://t.co/inXfcikdsw +03/13/2018,Actors,@AmyAcker,RT @brandon_dckrsn: https://t.co/8IDr4l5Dgo +03/13/2018,Actors,@AmyAcker,RT @brandon_dckrsn: Still unplugged for the month...but if I was on Twitter I would definitely want folks to know they can now enjoy... htt… +03/08/2018,Actors,@AmyAcker,"😁❤️😁 Aw Geez, Thank you for the #RTOK !!the great thing about @brghtidea is- it’s impossible not to smile when he… https://t.co/tSIDZddvQ1" +03/08/2018,Actors,@AmyAcker,"RT @NerdAppropriate: Episode 300 is here with special guest @AmyAcker ! On this special episode with talk The Gifted, Person of Interest, A…" +02/25/2018,Actors,@AmyAcker,Congratulations on 100 episodes @AgentsofSHIELD it was so wonderful to see so many great friends and celebrate with you tonight! +02/17/2018,Actors,@AmyAcker,RT @TheSimplySweet: @AmyAcker We rqst your help. Plz help CityofBastropTX win @smbizrevolution vote 4 us at https://t.co/1Eie2vhtkl AND plz… +02/02/2018,Actors,@AmyAcker,@davidchang Thank you so much! Everything was perfect! I can’t wait to come back! +02/02/2018,Actors,@AmyAcker,Such an amazing meal majordomola and I got to meet @davidchang !! So excited we have one of his… https://t.co/I2b3lhYeTp +01/27/2018,Actors,@AmyAcker,@DistortedGhost Wow! Thank you so much!!❤️ +01/16/2018,Actors,@AmyAcker,Thank you to @GiftedTVWriters @FOXTV @MattNixTV @Marvel @ShuDonner @brghtidea @sonyamstrich all the fantastic crew.… https://t.co/b8FhcgZs4m +01/16/2018,Actors,@AmyAcker,RT @GiftedTVWriters: Mutants! Thank you so much for joining us on this incredible journey. We're incredibly proud of what we've created and… +01/16/2018,Actors,@AmyAcker,"RT @TVTango: 🌟Watch tonight @FOXTV 8-10pm Season Finale #TheGifted @TheGiftedonFOX ""eXtraction; X-roads"" w/ @smoyer @AmyAcker @seanjteale @…" +01/16/2018,Actors,@AmyAcker,"RT @MattMitovich: .@TheGiftedonFOX Finale: @AmyAcker and @SkylerSamuels Tease Dark Twists, Gun-Toting Caitlin and a Big 'Oh DAMN!' Moment h…" +01/10/2018,Actors,@AmyAcker,Happy birthday!🎁🎁 https://t.co/gvIvNr8jKX +01/04/2018,Actors,@AmyAcker,RT @TheGiftedonFOX: The war is not over. RETWEET if you can't wait for Season 2 of #TheGifted! ✖️ #MutantsUnite https://t.co/jXMofnVagI +01/04/2018,Actors,@AmyAcker,Thank you all for being such great fans!! thegiftedonfox #season2 #thegifted https://t.co/RDn0HbmZkV +01/02/2018,Actors,@AmyAcker,"RT @brghtidea: It’s okay Andy, there’s a brand new Ep of @TheGiftedonFOX on Tonight!!! 9pm!!!! #TheGifted @smoyer @AmyAcker https://t.co/D…" +12/12/2017,Actors,@AmyAcker,RT @JeffHarris7: Want your Monday to be X-Cellent? Watch the fall finale of #TheGifted tonight! @AmyAcker @smoyer @NatalieAlynLind @PercyHy… +12/09/2017,Actors,@AmyAcker,@stxphbxby I will be thinking of you. Sending you my love. Stay strong! ❤️ +12/09/2017,Actors,@AmyAcker,"#Repost @brandon_dckrsn (get_repost) +・・・ +THANK YOU ALL! who've enjoyed and shared… https://t.co/GIrRIz2gkD" +12/07/2017,Actors,@AmyAcker,"RT @KristinZiemke: If you're enjoying #HourofCode this week, pause a minute to take action for #NetNeutrality Keep the internet open and f…" +12/07/2017,Actors,@AmyAcker,"RT @aidenjamestour: If you are near the #Califonia #Wildfires + +please put out buckets of water for the animals that are exhausted, scared,…" +12/06/2017,Actors,@AmyAcker,RT @DrLawyercop: Can see the smoke and fires from my home. Absolutely terrifying. Sending huge thanks to the amazing men and women of the #… +12/05/2017,Actors,@AmyAcker,"😊thanks, Skyler! https://t.co/uo40kVGsMD" +12/05/2017,Actors,@AmyAcker,Thank you Emma💚 https://t.co/s6akmbYbBu +12/05/2017,Actors,@AmyAcker,Thank you so much 😊 me too! https://t.co/UxOopiDinY +12/05/2017,Actors,@AmyAcker,"Yes, please! https://t.co/yYYkBu5iwN" +12/05/2017,Actors,@AmyAcker,Thank you all for making it such a wonderful birthday with all your lovely bday wishes! Sending my ❤️back! Thank you! +12/05/2017,Actors,@AmyAcker,Thank you all for watching @TheGiftedonFOX tonight with us! And thank you so much for all the Birthday wishes! ❤️❤️❤️ +12/05/2017,Actors,@AmyAcker,Oh @imcobybell why do you have to ruin all our plans? @TheGiftedonFOX #TheGifted +12/05/2017,Actors,@AmyAcker,They played a blooper reel this weekend. I managed not to fall even once. I feel like this is a real achievement… https://t.co/NCkhpsE8Ws +12/05/2017,Actors,@AmyAcker,This group scene every time we “moved out” we all kept running into each other. Everybody would change directions b… https://t.co/078y6MJ1it +12/05/2017,Actors,@AmyAcker,RT @kaymanchaos: @AmyAcker @TheGiftedonFOX Those strucker powers combined! That was a wicked effect!! Also polaris wrecked the guard. +12/05/2017,Actors,@AmyAcker,"Okay, I think Esme @SkylerSamuels might be up to something🤔 @TheGiftedonFOX #TheGifted" +12/05/2017,Actors,@AmyAcker,What?! We have the coolest mutant kids ever! @NatalieAlynLind @PercyHyneWhite +12/05/2017,Actors,@AmyAcker,The gang is all here. Watching @TheGiftedonFOX #TheGifted https://t.co/znTaY2y1z6 +12/04/2017,Actors,@AmyAcker,A new episode of @TheGiftedonFOX is on tonight! #TheGifted BTS watch to see @jamiechung1 badass driving skills https://t.co/maV6GcyLGV +11/30/2017,Actors,@AmyAcker,"RT @ActuallyNPH: Great news: my book @TheMagicMisfits debuted at #3 on the @nytimes Bestseller List! Huzzah! So get a copy or two quick, be…" +11/28/2017,Actors,@AmyAcker,RT @AgentsofSHIELD: Congrats to these heroes on 💯 episodes of #AgentsofSHIELD! 🎉🎉🎉 https://t.co/O30ll0ehNN +11/27/2017,Actors,@AmyAcker,RT @newscientist: Hearing implant uses lasers to shoot sound into your ear https://t.co/41gXssjQb9 https://t.co/ISvh0KR6wI +11/22/2017,Actors,@AmyAcker,RT @peoplestyle: The skirt @AmyAcker is loving right now is perfect for the holidays https://t.co/Lw5MP4AtQs https://t.co/17JpvcBrW2 +11/21/2017,Actors,@AmyAcker,Thanks for watching everyone @TheGiftedonFOX #TheGifted see you in 2 weeks! +11/21/2017,Actors,@AmyAcker,RT @ZahiraYdelise: Hell of a twist tonight on #theGifted I am definitely tuning in for the rest of the season @TheGiftedonFOX @GiftedTVWrit… +11/21/2017,Actors,@AmyAcker,"RT @SASSYAF28: Wait til Lauren, Andy and Caitlin find out omg @AmyAcker @NatalieAlynLind @TheGiftedonFOX #thegifted" +11/21/2017,Actors,@AmyAcker,I think we all know the answer to that 😉 https://t.co/YSMOcWm4am +11/21/2017,Actors,@AmyAcker,"RT @Cailie: @AmyAcker Funny enough, both me and my friend had flashbacks to a certain POI scene when you mentioned ""experimentation in coll…" +11/21/2017,Actors,@AmyAcker,🤔 https://t.co/sTKyEfc5H8 +11/21/2017,Actors,@AmyAcker,❤️ https://t.co/iZ3R7qpAoL +11/21/2017,Actors,@AmyAcker,RT @VanessaZuber1: @AmyAcker Holy voodoo mama juju - the gifted is on! Superpowers galore - super ready for this episode 👏🏼💥😎 #thegifted +11/21/2017,Actors,@AmyAcker,You might be on to something https://t.co/ZAQi8LNJC1 +11/21/2017,Actors,@AmyAcker,We’re excited https://t.co/MbTAYYK1yD +11/21/2017,Actors,@AmyAcker,Getting comfy to watch @TheGiftedonFOX @cxsiebs found his spot #TheGifted +11/21/2017,Actors,@AmyAcker,Hi @RachaelEHarris smokin up the screen on @LuciferonFOX love seeing you on the TV! +11/20/2017,Actors,@AmyAcker,Anyone looking for something awesome to do tomorrow night in NYC? Go check out @officialnikka at… https://t.co/U2GDWFkgwK +11/15/2017,Actors,@AmyAcker,Check out this exclusive clip with me and David Arquette - AMANDA & JACK GO GLAMPING now on VOD! https://t.co/zq3SsYxH9y +11/10/2017,Actors,@AmyAcker,"RT @brandon_dckrsn: Today!!! For your Friday Enjoyment #AmandaAndJackGoGlamping is 🎥+📺 !!! @DavidArquette @AmyAcker @adancanto +Watch. Rev…" +11/10/2017,Actors,@AmyAcker,@DavidArquette and @adancanto are SO FUNNY!! You can watch it today! @brandon_dckrsn #AmandaAndJackGoGlamping https://t.co/R4pMhUFtGd +11/09/2017,Actors,@AmyAcker,I’ll take a case:) https://t.co/fls8q4vzX6 +11/09/2017,Actors,@AmyAcker,Thanks @Spoilertv! So lucky to be included with such great company❤️ https://t.co/GiGzRtfTW6 +11/07/2017,Actors,@AmyAcker,"RT @brandon_dckrsn: My SAMApodcast Ep2 is up w the amazing @AmyAcker ! We talk AMANDA&JACK film + @TheGiftedonFOX and all things ""re"" http…" +11/07/2017,Actors,@AmyAcker,"RT @detectivdimpIes: @AmyAcker i really love this family dynamic, always supporting and helping each other no matter what 💕 https://t.co/7x…" +11/07/2017,Actors,@AmyAcker,I’m feeling very nervous for my whole TV family😬 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Caitlin in the script. I like when they call me Cate. #TheGifted @TheGiftedonFOX https://t.co/rwgraamZFj +11/07/2017,Actors,@AmyAcker,@NatalieAlynLind your so good! Sorry I interrupted your moment with #Wes. 💏 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,You can throw saw blades at me anytime @EmmaDumont #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,I guess destroying a federal building actually is good father/son bonding:) @smoyer #percyhyneswhite #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Who knew Eclipse @seanjteale could absorb light too! So cool #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,I guess that’s her superpower:) https://t.co/q6FaTHDDBL +11/07/2017,Actors,@AmyAcker,Lots of cool new Mutants this week! #Skyler #Wes @TheGiftedonFOX #TheGifted +11/07/2017,Actors,@AmyAcker,Everyone just asked @Blair_Redford what the Twitter was for his hair 😂 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Hello! Watching the show with these girls! #TheGifted @TheGiftedonFOX https://t.co/1cOiWJUwZ2 +11/06/2017,Actors,@AmyAcker,It’s Monday! thegiftedonfox is on tonight! #thegifted https://t.co/HdV9MQk1Zi +10/30/2017,Actors,@AmyAcker,We’ve got the fam back! A new thegiftedonfox tonight foxtv 9/8 central #thegifted https://t.co/sEMvxNELqY +10/30/2017,Actors,@AmyAcker,Thanks for having me! https://t.co/CWOgdQpSbx +10/29/2017,Actors,@AmyAcker,"Things you only say in TX “I have queso in my hair” ....it happens +#AFF2017 #glamping" +10/24/2017,Actors,@AmyAcker,Thanks so much for watching! Can’t wait for next week! @TheGiftedonFOX #TheGifted +10/24/2017,Actors,@AmyAcker,"It is fun when you can say “oh, yeah, I’ve done that before” 💉@TheGiftedonFOX #TheGifted https://t.co/1AmwyrC0A5" +10/24/2017,Actors,@AmyAcker,Holy moly! So much happening right now!😳 @TheGiftedonFOX #thegifted +10/24/2017,Actors,@AmyAcker,That would be a fun crossover! @TheGiftedonFOX #TheGifted https://t.co/30ZNHkNQZJ +10/24/2017,Actors,@AmyAcker,RT @SASSYAF28: Caitlin is letting Andy and Lauren help!!!!! @AmyAcker @NatalieAlynLind @TheGiftedonFOX #thegifted https://t.co/lS3h77qA1B +10/24/2017,Actors,@AmyAcker,🤞@TheGiftedonFOX #TheGifted https://t.co/ZItOG4dA2d +10/24/2017,Actors,@AmyAcker,For sure! @TheGiftedonFOX #TheGifted https://t.co/YjUsydoImQ +10/24/2017,Actors,@AmyAcker,Teamwork!! @NatalieAlynLind #Percy go Strucker kids! @TheGiftedonFOX #thegifted +10/24/2017,Actors,@AmyAcker,Can’t tell- spoiler! @TheGiftedonFOX #TheGifted https://t.co/0FLsdIM9Hr +10/24/2017,Actors,@AmyAcker,RT @FaithBek: With so much bs happening in the world... make yourself happy and watch #TheGifted. You won’t regret it. @AmyAcker @NatalieAl… +10/24/2017,Actors,@AmyAcker,Do breakfast burritos count? @TheGiftedonFOX https://t.co/KWFBY9zx6i +10/24/2017,Actors,@AmyAcker,Whatcha waitin’ for 😁@TheGiftedonFOX #thegifted https://t.co/IBWQjYMrZD +10/24/2017,Actors,@AmyAcker,Watching @TheGiftedonFOX with @NatalieAlynLind #TheGifted https://t.co/5zol0LwhPj +10/24/2017,Actors,@AmyAcker,Stunt driving? @TheGiftedonFOX #thegifted https://t.co/mgXLsAiIax +10/24/2017,Actors,@AmyAcker,"RT @horowitm: One hour away, East Coast fans of #thegifted Who’s watching?" +10/24/2017,Actors,@AmyAcker,Getting ready for #TheGifted! @TheGiftedonFOX +10/22/2017,Actors,@AmyAcker,What happened to the sequel? @DavidHaydnJones how are you? I feel like Christmas is early this year:) https://t.co/DNdqkhvC0B +10/19/2017,Actors,@AmyAcker,Go purple now to take a stand against bullying and support LGBTQ youth for #SpiritDay!… https://t.co/JSpYxWWBA1 +10/17/2017,Actors,@AmyAcker,@NatalieAlynLind @TheGiftedonFOX Bahaha! I ❤️ you @NatalieAlynLind +10/17/2017,Actors,@AmyAcker,Almost time for a new episode of #TheGifted I just got off a plane so I'll have to hear from you how it goes. Hope… https://t.co/fF6oklIfp1 +10/15/2017,Actors,@AmyAcker,Oops!! Sorry! Thank you E.J. https://t.co/0sBwwf399U +10/14/2017,Actors,@AmyAcker,Thanks for having me! It was so fun talking to you https://t.co/v3ATht1jpl +10/13/2017,Actors,@AmyAcker,RT @GiftedTVWriters: Happy #NationalComingOutDay from the #MutantUnderground. Live your truth. Tell your story. Never be afraid of who you… +10/13/2017,Actors,@AmyAcker,I love this- @EmmaDumont can be my teacher:) https://t.co/LCksVAJrhY +10/12/2017,Actors,@AmyAcker,"RT @GravitasVOD: ""@DavidArquette, @AmyAcker Comedy ‘Amanda & Jack Go Glamping’ Lands At Gravitas"" https://t.co/q6xaSItW8R via @DEADLINE" +10/10/2017,Actors,@AmyAcker,Hope you all enjoyed the show! Thanks so much for watching! See you next week for episode 3! @TheGiftedonFOX #TheGifted +10/10/2017,Actors,@AmyAcker,I had that same thought when I read this script! @TheGiftedonFOX #spinoff https://t.co/m4ZAVhOYqQ +10/10/2017,Actors,@AmyAcker,@jamiechung1 killing per usual! @TheGiftedonFOX https://t.co/n3y0lSzBnX +10/10/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: It's okay to bend the rules if it means saving a friend. #TheGifted https://t.co/Am7pbzolwY +10/10/2017,Actors,@AmyAcker,Thanks @MattNixTV and @thegiftedtvwriters for that!! @TheGiftedonFOX #thegifted https://t.co/JaCaLWyVcu +10/10/2017,Actors,@AmyAcker,We were so lucky to have the super cool and talented @LenWiseman directing this episode! @TheGiftedonFOX #thegifted +10/10/2017,Actors,@AmyAcker,RT @AnnWhite75: Excited to see @AmyAcker & Stephen Moyers. Great actors! Writing is excellent. If you like syfy you need to watch this! @… +10/10/2017,Actors,@AmyAcker,RT @SuperSopranoMeg: @AmyAcker your boyfriend...??? @smoyer I think that Amy and @seanjteale have something to tell you... 😶😳😯 #TheGifted +10/10/2017,Actors,@AmyAcker,This may be my favorite compliment that I've ever gotten! @TheGiftedonFOX #TheGifted https://t.co/ZURh7RFAsN +10/10/2017,Actors,@AmyAcker,How are you liking it so far? #TheGifted I was getting my cracked phone fixed:) @TheGiftedonFOX +10/10/2017,Actors,@AmyAcker,Almost time for @TheGiftedonFOX second episode! I hope you guys love it. #TheGifted +10/09/2017,Actors,@AmyAcker,"Hey, everybody! The 2nd episode of thegiftedonfox is tonight! foxtv 9/8central https://t.co/33n5ojBDmC" +10/09/2017,Actors,@AmyAcker,RT @seanjteale: Tonight on episode 2 of @TheGiftedonFOX Caitclipse is born! 9pm/8c on fox! I’m out of action this evening but normal servic… +10/08/2017,Actors,@AmyAcker,Thanks everyone! We had a blast spending the day at #NYCC with you today! @TheGiftedonFOX +10/08/2017,Actors,@AmyAcker,"We love you too, Hayley! https://t.co/nhurb2ehpF" +10/07/2017,Actors,@AmyAcker,Hello! Wish y'all were here with us https://t.co/MyN2iXhtm4 +10/07/2017,Actors,@AmyAcker,Yes! Will you be there? https://t.co/oBnWX8bN9w +10/03/2017,Actors,@AmyAcker,Thanks again 4 watching & thanks 2 everyone who made it happen @ShuDonner @brghtidea @MattNixTV @BryanSinger… https://t.co/NPME5Qy6MK +10/03/2017,Actors,@AmyAcker,@giftedtvwriters @MattNixTV congratulations! Can't wait for everyone to see what you all have planned! @TheGiftedonFOX #thegifted +10/03/2017,Actors,@AmyAcker,Thanks so much for watching with us!! @TheGiftedonFOX #thegifted see you next week! +10/03/2017,Actors,@AmyAcker,Get ready to watch @jamiechung1 save the day! @TheGiftedonFOX #thegifted +10/03/2017,Actors,@AmyAcker,"The are called #Sentinels scary, right? https://t.co/RfqjxAwab5" +10/03/2017,Actors,@AmyAcker,RT @NatalieAlynLind: @AmyAcker BTS... to Amy slamming my hand in the door.. Still love her ❤️ https://t.co/wrKgCpfwHL +10/03/2017,Actors,@AmyAcker,This made me laugh 😂 @TheGiftedonFOX https://t.co/7QRoETlZTx +10/03/2017,Actors,@AmyAcker,RT @MoMoneyDollas: #TheGiftedonFOX had me hooked after the first 2 minutes. Doesn’t hurt that Vampire Bill & Winifred Burkle are in it! @Am… +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/jiLV6KkFrl +10/03/2017,Actors,@AmyAcker,Right!?! So cool! https://t.co/EOZxt7lTGA +10/03/2017,Actors,@AmyAcker,I kinda like being a human in a mutant world @TheGiftedonFOX #TheGifted https://t.co/8VCj88AHfj +10/03/2017,Actors,@AmyAcker,I'm afraid it will be past my bedtime. Working tomorrow https://t.co/hfa1iYDiMq +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/4blGUkvCxK +10/03/2017,Actors,@AmyAcker,RT @negative_purple: @Mandama004 @AmyAcker @TheGiftedonFOX Amanda! I “blinked” and almost missed that you’re online - I tried your puns but… +10/03/2017,Actors,@AmyAcker,Thanks! We can carpool to work if you want! https://t.co/SWMvyHBRxZ +10/03/2017,Actors,@AmyAcker,RT @negative_purple: Hi can I have a scene where Caitlin interacts with the dog bc it would be so pure and I NEED it #TheGifted @AmyAcker @… +10/03/2017,Actors,@AmyAcker,RT @seanjteale: Jefe we miss you https://t.co/F5ugZoertv +10/03/2017,Actors,@AmyAcker,This is delayed but I was reminded I accidentally slammed @natliealynlind hand in the door in the scene where we le… https://t.co/KyHBIJKj1d +10/03/2017,Actors,@AmyAcker,"RT @Amy_R00T: @AmyAcker @TheGiftedonFOX Me too, so I can teleport to comic con and finally meet you ^^" +10/03/2017,Actors,@AmyAcker,I think the final action sequence @TheGiftedonFOX #thegifted https://t.co/J1P85Ehs3r +10/03/2017,Actors,@AmyAcker,Hello! Hope you are great! I will be so impressed if you never complain again!! LMK https://t.co/NPwfy8bmKX +10/03/2017,Actors,@AmyAcker,RT @ThomasWerstein: Don't mess with Momma Strucker @AmyAcker @NatalieAlynLind Percy Hynes White @TheGiftedonFOX #TheGifted https://t.co/jhA… +10/03/2017,Actors,@AmyAcker,Probably teleportation @TheGiftedonFOX #TheGifted https://t.co/2cA7hMO5IA +10/03/2017,Actors,@AmyAcker,Trying this again- This trio makes me 😄@seanjteale @EmmaDumont @Blair_Redford who wouldn't want these three Mutant… https://t.co/v20IPhskIj +10/03/2017,Actors,@AmyAcker,The great cast and crew! @TheGiftedonFOX #TheGifted https://t.co/lPWKZP1YW9 +10/03/2017,Actors,@AmyAcker,Let's talk about @cobybell -and how incredible he is- The nicest guy I know playing the baddy on our show #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,We got to shoot in Dallas where I grew up and my parents live! @TheGiftedonFOX #TheGifted https://t.co/Q91yYEjKTD +10/03/2017,Actors,@AmyAcker,😱👝💉👨‍👩‍👧‍👦🏃‍♀️😡 @TheGiftedonFOX #TheGifted https://t.co/mLIpfL1zNp +10/03/2017,Actors,@AmyAcker,RT @ang5826: @AmyAcker @TheGiftedonFOX Watching!!!! Just as good the second time around ;) +10/03/2017,Actors,@AmyAcker,❤️❤️❤️ https://t.co/ktPWpmaSBe +10/03/2017,Actors,@AmyAcker,😬 https://t.co/SiITC7ZwZ2 +10/03/2017,Actors,@AmyAcker,RT @lo_206: @AmyAcker @TheGiftedonFOX I haven't seen my girlfriend @FaithBek this excited for tv since the finale of poi. Thanks for making… +10/03/2017,Actors,@AmyAcker,RT @giftedClaire: @AmyAcker @EmmaDumont @TheGiftedonFOX Lol “Who hasn’t been in a cage?” That’s hot!!! +10/03/2017,Actors,@AmyAcker,I went to a huge high school with dances like this but this was @NatalieAlynLind and #percyhyneswhite first dance! #thegifted @NewYorker +10/03/2017,Actors,@AmyAcker,@percyhyneswhite! You are so great! Follow Percy on Instagram. He blows me away with his talent on screen and off!… https://t.co/7xXQUM1eyK +10/03/2017,Actors,@AmyAcker,@EmmaDumont killing this scene in a cage- I feel like I know your pain girl- this may be the first part I'm not the… https://t.co/Q8RDaKhkT4 +10/03/2017,Actors,@AmyAcker,"How gorgeous is @NatalieAlynLind would you believe she as equally as smart, loving and talented?!? #thegifted… https://t.co/G95WjirgCz" +10/03/2017,Actors,@AmyAcker,Sending you our ❤️! https://t.co/Elu7gUe8di +10/03/2017,Actors,@AmyAcker,"I have the best tv family:) So lucky to get to act with @stephenmoyer. He's funny, super intelligent, kind, and jus… https://t.co/oYoRrKyia6" +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/3s54ktEe8V +10/03/2017,Actors,@AmyAcker,@Blair_Redford is going to be the prettiest one in every scene. We all should come to terms with it now:) Thunderbi… https://t.co/gg1VX8ejLZ +10/03/2017,Actors,@AmyAcker,This trio makes me 😄@seantealle @emmadumont @blairredford who wouldn't want these three Mutants as their besties! #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,GO @jamiechung1 ! She is so fantastic! Blink ☔️💜💜💜 #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,Here we go! @TheGiftedonFOX starts now! #TheGifted +10/03/2017,Actors,@AmyAcker,Whatching @LuciferonFOX and getting ready for @TheGiftedonFOX coming up next! #TheGifted https://t.co/ZMKv9s6tZK +10/02/2017,Actors,@AmyAcker,Hey everybody! @TheGiftedonFOX starts tonight! I'll be live tweeting with the cast at 9pm EST we can't wait for you… https://t.co/Sp9y1FPz4i +09/25/2017,Actors,@AmyAcker,"#Repost thegiftedonfox (get_repost) +・・・ +Family is the ultimate power. Join @AmyAcker and… https://t.co/0ztr8Sv6Cl" +09/24/2017,Actors,@AmyAcker,So happy to spend the day w/ @NatalieAlynLind @ the Grove for @TheGiftedonFOX We'll be there at 1pm if anyone is in LA and wants to say Hi! +09/23/2017,Actors,@AmyAcker,"RT @IGN: Join us LIVE this Monday at 11am PT / 2pm ET for a Q&A w/ @TheGiftedonFOX cast, plus an exclusive clip! + +MORE: https://t.co/ZEvPj6…" +09/13/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Get ready LA! Be the first to see a free screening of #TheGifted TOMORROW: https://t.co/7T04vmT5A6 https://t.co/kCJQFGV… +09/11/2017,Actors,@AmyAcker,"RT @TheGiftedonFOX: Welcome to #TheGifted family, @garretdillahunt! ✖️ https://t.co/CL2RcO9omu" +09/05/2017,Actors,@AmyAcker,I wish I did! https://t.co/IAD7ezJbGM +09/04/2017,Actors,@AmyAcker,So excited for you and the new baby!! https://t.co/6oI9ujSrUt +09/02/2017,Actors,@AmyAcker,thegiftedonfox's photo https://t.co/3CJADi0Kh7 One Month to go! +08/29/2017,Actors,@AmyAcker,What a fun night! I'm so happy you are in ATL too! Happy Birthday @jaugustrichards https://t.co/k3NoUP5ykO +08/29/2017,Actors,@AmyAcker,"RT @Mandama004: Can't wait to see you you again, @AmyAcker! As long as you get away from Sentinel Services.... https://t.co/OvTo528GIZ" +08/29/2017,Actors,@AmyAcker,RT @johnthemcnamara: Hey #Magicians. Here are a few ways we can help Texas and Louisiana. Please do -- and retweet! Abracadabra. https… +08/29/2017,Actors,@AmyAcker,RT @brghtidea: Great contest for all of you artistic fans of @TheGiftedonFOX https://t.co/V31cMNW7p0 +08/23/2017,Actors,@AmyAcker,Congratulations @brandon_dckrsn @DavidArquette and everyone involved! Hope to see y'all there! https://t.co/xJk3k5E0Xr +08/21/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: .@seanjteale is eclipsing our Instagram tomorrow! Make sure you follow #TheGifted now: https://t.co/rWT3QIUJJy #Eclipse… +08/17/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Well look who it is! Pick up a copy of @TVGuideMagazine this week to see your favorite #TheGifted stars grace the cover… +08/09/2017,Actors,@AmyAcker,RT @DEADLINE: ‘The Blacklist’ Casts James Carpinello; Ruffin Prentiss Joins ‘The Arrangement’ https://t.co/i4gdNwf60r https://t.co/uJEICZmy… +08/09/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: There's no power stronger than family. #TheGifted premieres October 2 on FOX. https://t.co/rYhYkaVENC +08/08/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Don't mess with these two! 👊 @smoyer and @imcobybell are killing it at #FOXTCA. #TheGifted https://t.co/ty1TEO7BV4 +08/04/2017,Actors,@AmyAcker,Y'all know I love @RavenAndLily here is my friend Kirsten on CNN!!Conscious Consumerism - CNN Video https://t.co/JohPA6xKED +07/29/2017,Actors,@AmyAcker,RT @TVLine: Fall TV 2017: Your Handy Calendar of 100+ Season and Series Premiere Dates https://t.co/Ajl3zz7z0e https://t.co/8gdfRqgcTZ +07/25/2017,Actors,@AmyAcker,"@widgetfactoryco @addellum @SummerBishil1 Love you, Fishy!!" +07/22/2017,Actors,@AmyAcker,Thanks for a great day at SDCC! So excited about @TheGiftedonFOX see you tomorrow! +07/13/2017,Actors,@AmyAcker,"@brghtidea @TheGiftedonFOX Derek, YOU are the best! Can't wait to start shooting! #TheGifted @TheGiftedonFOX" +07/01/2018,Actors,@sarahshahi,Can’t stop watching @CobraKaiSeries 🤼‍♂️( karate emoji needed stat) +07/01/2018,Actors,@sarahshahi,😂😂 love you roomie https://t.co/lxLQvEHKxK +07/01/2018,Actors,@sarahshahi,HAHAHAHAHAHAHHA! That’s the best thing I’ve heard yet https://t.co/q30h39N61s +06/29/2018,Actors,@sarahshahi,Couldn’t agree more https://t.co/gIwBKNSc9P +06/29/2018,Actors,@sarahshahi,"RT @Mortonopoulis: After 7 years sober, it’s F-ing nice to finally get a statement from a jury that has neither fines nor jail time. @Serie…" +06/28/2018,Actors,@sarahshahi,Me too. lol https://t.co/g5D82ffkLR +06/28/2018,Actors,@sarahshahi,❤️🙏🏼 https://t.co/aG0Sw0Wzsh +06/28/2018,Actors,@sarahshahi,"Kids! +Shoot! Ok I’m ready to tweet... what did I miss #reverie" +06/28/2018,Actors,@sarahshahi,This log cabin is my interior dream come true +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/SGlnefenox +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/SiULq5F8l7 +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/zFHt0yjx78 +06/28/2018,Actors,@sarahshahi,Whoa 😮 #reverie +06/28/2018,Actors,@sarahshahi,Hahha..: #reverie https://t.co/AAyqTvG8fq +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/MjEkfBjdU9 +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/PjSsS3peHv +06/28/2018,Actors,@sarahshahi,This actress brought it take after take... she was so good and just wait til what she does later #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/6FKJULXeeX +06/28/2018,Actors,@sarahshahi,Yes me too!!! #reverie https://t.co/9YfKi4nrmC +06/28/2018,Actors,@sarahshahi,Bacon 🥓 burgers are here #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/4zTgbTj2Kn +06/28/2018,Actors,@sarahshahi,Me and jess #reverie https://t.co/XivxAvv7IK +06/28/2018,Actors,@sarahshahi,Haha!! Uber eats is bringing bacon burgers 🍔 #reverie https://t.co/fmpR6bQW6r +06/28/2018,Actors,@sarahshahi,#reverie!! https://t.co/3npoyR1CGt +06/28/2018,Actors,@sarahshahi,These kids are killing me #Reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/lOBF2HqDwd +06/28/2018,Actors,@sarahshahi,#Reverie https://t.co/q07Jpz6eqs +06/28/2018,Actors,@sarahshahi,Love doing scenes w everyone bc I never got to see them #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/PDXxYwx5TQ +06/28/2018,Actors,@sarahshahi,Multiple uses for #reverie +06/28/2018,Actors,@sarahshahi,Thank you 🙏🏼#reverie https://t.co/nowwTKgujF +06/28/2018,Actors,@sarahshahi,Why do I always feel like I’m in trouble #reverie +06/28/2018,Actors,@sarahshahi,BOOM #REVERIE +06/28/2018,Actors,@sarahshahi,Tweeting!!!! #reverie @NBCReverie https://t.co/QZaJHMlJj3 +06/27/2018,Actors,@sarahshahi,Yeaaaaaaa https://t.co/D9fv2FEFvY +06/27/2018,Actors,@sarahshahi,RT @NBCReverie: Mind over matter. #Reverie https://t.co/MIDd4WjNcI +06/27/2018,Actors,@sarahshahi,Hahahah!! All new @NBCReverie reverie TONIGHT #Reverie https://t.co/Xrh7kCLBmb +06/25/2018,Actors,@sarahshahi,Wednesday!!!!! https://t.co/zHUxwnOnlH +06/25/2018,Actors,@sarahshahi,Love you sister https://t.co/QyKgIhT5V7 +06/22/2018,Actors,@sarahshahi,"RT @nbc: You already know #Reverie is high tech. #NationalSelfieDay + +🤳: @sarahshahi https://t.co/eLPRUfNyO5" +06/22/2018,Actors,@sarahshahi,RT @BethRiesgraf: #FamiliesBelongTogther I just pledged to hold our representatives accountable for voting on the wrong side of history. Jo… +06/21/2018,Actors,@sarahshahi,You’re heart could be mistaken for warming up.. ❤️ https://t.co/DVYbF3eW6J +06/21/2018,Actors,@sarahshahi,YESSSS https://t.co/VTiqceu0mu +06/21/2018,Actors,@sarahshahi,Bc it was asked- these are the two books I’m reading. And Wolf bought Wrinkle at his book fair for me for Mother’s… https://t.co/HYEtjzkyJA +06/21/2018,Actors,@sarahshahi,Me too!! Can’t wait!! #reverie https://t.co/63RImTqGrs +06/21/2018,Actors,@sarahshahi,Thank you!! #reverie https://t.co/C3CYGG69aT +06/21/2018,Actors,@sarahshahi,Everyone wants purple hair #reverie https://t.co/H3oKq0lE3e +06/21/2018,Actors,@sarahshahi,Ha! #reverie https://t.co/H3oKq0lE3e +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/rzjtLHPunO +06/21/2018,Actors,@sarahshahi,Thank you so much for tweeting w us tonight! We trended AGAIN! And I’m honored and humbled to be in your homes week… https://t.co/nmfXXQh5eW +06/21/2018,Actors,@sarahshahi,Maybe we could watch together!! #reverie https://t.co/GZAf6jUVAn +06/21/2018,Actors,@sarahshahi,lol.YES! #reverie https://t.co/UOBOE2eg46 +06/21/2018,Actors,@sarahshahi,YES! Thank you!! Get your whole crew ! #reverie https://t.co/Axnw2OmI7o +06/21/2018,Actors,@sarahshahi,Thank you!!! ❤️❤️ #reverie https://t.co/yoRWmMNYMj +06/21/2018,Actors,@sarahshahi,❤️❤️💋💋 #reverie https://t.co/hsgQpFpiZ4 +06/21/2018,Actors,@sarahshahi,🙏🏼🙏🏼 #reverie https://t.co/KatiqEiqLw +06/21/2018,Actors,@sarahshahi,Oh keep watching! You have no idea!!!!! #reverie https://t.co/Z9Op9bUoSn +06/21/2018,Actors,@sarahshahi,🙌🏼🙌🏼🙌🏼 #reverie https://t.co/aFKS3v8JfS +06/21/2018,Actors,@sarahshahi,And that’s what we intend to do- give you an escape. Maybe connect you with something a little deeper than normal.… https://t.co/mtnf6b6jag +06/21/2018,Actors,@sarahshahi,Oh yea. 4-10 are homeruns #reverie https://t.co/qTZKWoABvX +06/21/2018,Actors,@sarahshahi,🙂🙂 honored by your words #reverie https://t.co/7uXvQ68zEx +06/21/2018,Actors,@sarahshahi,Oooff.. it will be explored... #reverie https://t.co/8tEgKwiRV7 +06/21/2018,Actors,@sarahshahi,Oh no! Tons of spoilers #reverie https://t.co/ekS02KDqYn +06/21/2018,Actors,@sarahshahi,Yaya! Yes! #reverie https://t.co/XskRsCtSwd +06/21/2018,Actors,@sarahshahi,Thank you! #reverie https://t.co/evDYSBIT7I +06/21/2018,Actors,@sarahshahi,Yes!!! #reverie https://t.co/dtfznULhiN +06/21/2018,Actors,@sarahshahi,Haha! Hope up have coffee #reverie https://t.co/5timkngK27 +06/21/2018,Actors,@sarahshahi,Universe... #reverie https://t.co/mzl7rybv20 +06/21/2018,Actors,@sarahshahi,My mother thought I looked like a nun in this shirt. She didn’t like it. Lol I did! #reverie +06/21/2018,Actors,@sarahshahi,Yea!!!!! #reverie https://t.co/zc1tZGfzLz +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/MSnZDHz4KA +06/21/2018,Actors,@sarahshahi,Excellent. I’m tweeting with you. Uou? #reverie https://t.co/bMCC5nY8f9 +06/21/2018,Actors,@sarahshahi,I know! Just can’t get away from it #reverie https://t.co/NaBIJMCXCe +06/21/2018,Actors,@sarahshahi,Thank god theres 6 more #reverie https://t.co/rrJU9GDeFf +06/21/2018,Actors,@sarahshahi,Oh it’s not as bad as your thinking #reverie +06/21/2018,Actors,@sarahshahi,Come on Glenn!! #reverie +06/21/2018,Actors,@sarahshahi,Oh yea! I forgot! #reverie https://t.co/q3WNYGjHCf +06/21/2018,Actors,@sarahshahi,Thank god for the smurfs... twins leaving me alone #reverie +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/8nlXlieyVT +06/21/2018,Actors,@sarahshahi,:) #reverie https://t.co/Cb1hn9aZN3 +06/21/2018,Actors,@sarahshahi,Def not #reverie https://t.co/CyiagXmlLj +06/21/2018,Actors,@sarahshahi,:) thank you! 🙏🏼 #reverie https://t.co/Vzuy3EVYS2 +06/21/2018,Actors,@sarahshahi,You’ve got good taste Chris #reverie https://t.co/s1gyLhdXXL +06/21/2018,Actors,@sarahshahi,Hahah... I love Lucy. #reverie https://t.co/RZkCe7mh4z +06/21/2018,Actors,@sarahshahi,Haha... exactly. Gulp... uhhh... #reverie https://t.co/TCvYjVBDTJ +06/21/2018,Actors,@sarahshahi,I’d be scared... #reverie https://t.co/aBHdZrdTqN +06/21/2018,Actors,@sarahshahi,Hey gurl... #reverie https://t.co/RtkLazTW5C +06/21/2018,Actors,@sarahshahi,Yes!! #reverie https://t.co/MVY9xA15KE +06/21/2018,Actors,@sarahshahi,Mickey!!! #reverie https://t.co/40noYPIeV6 +06/21/2018,Actors,@sarahshahi,Dennis!!! I miss you #reverie https://t.co/tFWzdSPXbu +06/21/2018,Actors,@sarahshahi,Yea- what she said #reverie https://t.co/fCYub32h8Q +06/21/2018,Actors,@sarahshahi,#davidrogers did such an amazing job with the physicality of his condition. I asked him to be my coach if I ever ne… https://t.co/ON7ug064Zk +06/21/2018,Actors,@sarahshahi,Nobody wanted to step onto set it was so hot #reverie +06/21/2018,Actors,@sarahshahi,Ugh🤪 #reverie https://t.co/7Wwm6W0Wrr +06/21/2018,Actors,@sarahshahi,I felt like an idiot jumping down that hall. I cracked up every time #reverie +06/21/2018,Actors,@sarahshahi,How tiny is @kathrynmorris and a mother of TWINS!? #reverie +06/21/2018,Actors,@sarahshahi,#reverie Wednesday!!!! https://t.co/fXSZ6uLjwO +06/21/2018,Actors,@sarahshahi,Oh thank you! All this talk of POI is making me nostalgic #reverie https://t.co/Q9W2Grcini +06/21/2018,Actors,@sarahshahi,Yes. Lots of truth there #reverie https://t.co/p5FWyvESYt +06/21/2018,Actors,@sarahshahi,San Antonio!! What’s up!! Thank you! #reverie https://t.co/XEiKWbKdwS +06/21/2018,Actors,@sarahshahi,🙂🙂🙂😌😌😌 and there’s so much more to come. Thank you. #reverie https://t.co/FqV7LhO6tz +06/21/2018,Actors,@sarahshahi,Do you sell your 🔮? #reverie https://t.co/jeEAraW9EE +06/21/2018,Actors,@sarahshahi,Yaya! Thank you so much! #reverie https://t.co/hLwIjSzLPX +06/21/2018,Actors,@sarahshahi,#David Rogers you are crushing. U are heartbreaking #reverie +06/21/2018,Actors,@sarahshahi,Lol. I didn’t even notice that #Reverie https://t.co/vpFfD80AQs +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/tPGOXtPu7x +06/21/2018,Actors,@sarahshahi,Omg! It was so blisteringly hot when we shot this!!! Ahhhhhhh!! Like we were all melting #reverie +06/21/2018,Actors,@sarahshahi,She’s so amazing. @JessicaLu is so warm and loving. That’s how good she is. #reverie https://t.co/n8OtkorHkc +06/21/2018,Actors,@sarahshahi,Yup yup #reverie https://t.co/tQajsjYn2j +06/21/2018,Actors,@sarahshahi,I’ve known @Sendhil_Rama since Heroes and Life but this is our first time working together! #reverie +06/21/2018,Actors,@sarahshahi,Love doing scenes w my fellow Texas @Sendhil_Rama #reverie +06/21/2018,Actors,@sarahshahi,🙂🙂🙂🙂🙂🙂 #reverie https://t.co/LYyI6AEYoG +06/21/2018,Actors,@sarahshahi,Oh it’s our pleasure. We want to touch people and tell their stories. Your stories are our stories #reverie https://t.co/GC8klGXXiN +06/21/2018,Actors,@sarahshahi,Like how you think #reverie https://t.co/2EsYQK9KMr +06/21/2018,Actors,@sarahshahi,Haha! Yes I know right! #reverie https://t.co/rAyZkorF2r +06/21/2018,Actors,@sarahshahi,Yayay! Trending again! Nice Guys #reverie +06/21/2018,Actors,@sarahshahi,Haha... it is a challenge keeping he and I in the same frame. Some boxes were involved #reverie https://t.co/VUqxKRdz3w +06/21/2018,Actors,@sarahshahi,Thank you! 😌😌😌 #reverie https://t.co/WBS8gZxKkX +06/21/2018,Actors,@sarahshahi,Thank you! I love working w @MickeyFisher73 and want to forever #reverie he’s one of the best humans I’ve ever met https://t.co/9twBOvZvL3 +06/21/2018,Actors,@sarahshahi,"What are you thinking of the ep so far? +#reverie" +06/21/2018,Actors,@sarahshahi,Lots to learn in that sense. #reverie https://t.co/HeyOFUjfLb +06/21/2018,Actors,@sarahshahi,Thank you!! ❤️❤️❤️❤️ #reverie https://t.co/4i7QChQST0 +06/21/2018,Actors,@sarahshahi,Shot this in Los feliz which is one of my fave little communities. Want to move back there! #reverie +06/21/2018,Actors,@sarahshahi,Lol #okra #reverie https://t.co/rAmCIetpgA +06/21/2018,Actors,@sarahshahi,Shave it #reverie https://t.co/bB5BTVA5R8 +06/21/2018,Actors,@sarahshahi,#reverie!! YAYAYAYA!! Keep #reverie in your tweets!! https://t.co/kPSUcVadGT +06/21/2018,Actors,@sarahshahi,Yes they can #reverie https://t.co/qUjxdwc3Em +06/21/2018,Actors,@sarahshahi,Love how you caught that #reverie https://t.co/KiItASG0pY +06/21/2018,Actors,@sarahshahi,I’m honored #reverie ❤️ https://t.co/LYyI6AEYoG +06/21/2018,Actors,@sarahshahi,Exactly #reverie https://t.co/G5X53H1xid +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/T8Int4B0Fa +06/21/2018,Actors,@sarahshahi,Oh and they’re not telling me the truth #reverie https://t.co/5gyZahUYAC +06/21/2018,Actors,@sarahshahi,Haha!! I want to cut it #reverie https://t.co/cn0STW1JqZ +06/21/2018,Actors,@sarahshahi,Oh snap @DennisHaysbert #reverie +06/21/2018,Actors,@sarahshahi,I agree. And jus let keep watching #reverie https://t.co/oVjwxGiKE4 +06/21/2018,Actors,@sarahshahi,Thank you!!! Xox #reverie https://t.co/xKyef5QUUQ +06/21/2018,Actors,@sarahshahi,Oh I’m so happy to hear that! Thank you! #reverie https://t.co/B6EVUJgmsr +06/21/2018,Actors,@sarahshahi,The hardest word I’ve ever had to learn #reverie https://t.co/nLJekKP0Nq +06/21/2018,Actors,@sarahshahi,Ahhh!! Big virtual hugs! #Reverie https://t.co/MeEJyiKeVC +06/21/2018,Actors,@sarahshahi,Hmm... re reading ONENESS right now. It’s like my bible #reverie https://t.co/l6GHllfx4Y +06/21/2018,Actors,@sarahshahi,The magic realism of the show was so much fun to play!!! I still believe in magic #reverie +06/21/2018,Actors,@sarahshahi,Yo! You’re hired! #reverie https://t.co/NGi80S6l4z +06/21/2018,Actors,@sarahshahi,Thank you so much . Glad you like! #reverie https://t.co/KDBXBsOMLh +06/21/2018,Actors,@sarahshahi,Thank you!!! Thx mom #reverie https://t.co/33y14GsZQJ +06/21/2018,Actors,@sarahshahi,Anteroom was one of my fave sets to shoot bc it was filled w books. I could go broke buying books #reverie +06/21/2018,Actors,@sarahshahi,TONS!! Lol. Mara must have 3 kids we don’t know about #reverie https://t.co/1wxrTfIJ06 +06/21/2018,Actors,@sarahshahi,David Rogers is married to one of my bff’s @SallyPressman !! He’s so fantastic! #reverie +06/21/2018,Actors,@sarahshahi,Oh thank you! #reverie https://t.co/n5z7HEWSez +06/21/2018,Actors,@sarahshahi,Can Mara trust Charlie!!!?? 😜 #reverie https://t.co/YBx4gONzR2 +06/21/2018,Actors,@sarahshahi,Not at all!! #reverie https://t.co/aIgIav6la3 +06/21/2018,Actors,@sarahshahi,Right!! Oh but it DOESSSSS #Reverie https://t.co/dlHUG319xf +06/21/2018,Actors,@sarahshahi,#reverie lol https://t.co/n6Bi1kj63i +06/21/2018,Actors,@sarahshahi,Yup #reverie https://t.co/tFhwVs0aSj +06/21/2018,Actors,@sarahshahi,Corky’s in Burbank!! #reverie https://t.co/zshGXshvyB +06/21/2018,Actors,@sarahshahi,Thank you so much!! #reverie https://t.co/mDeLx2SHVS +06/21/2018,Actors,@sarahshahi,Please #reverie in your tweets! Let’s trend again! https://t.co/mLFMw2oMQK +06/21/2018,Actors,@sarahshahi,Thank you!! #reverie! Please #reverie in your tweets! https://t.co/95hSjqDqVH +06/21/2018,Actors,@sarahshahi,I ate more than he did in between takes! #reverie https://t.co/Jio5ic9TF7 +06/21/2018,Actors,@sarahshahi,@RealJonFletcher YES SO HAPPY YOURE ON THE SCREEEEENNNNNN #reverie +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/SgTgJPgaq5 +06/21/2018,Actors,@sarahshahi,Yes yes #reverie https://t.co/23ezjteMSw +06/21/2018,Actors,@sarahshahi,I was crying because I really wanted his fries #Reverie +06/21/2018,Actors,@sarahshahi,😅 #REVERIE https://t.co/oU9Y8H6CE4 +06/21/2018,Actors,@sarahshahi,It was really hard not to eat his fries. #reverie +06/21/2018,Actors,@sarahshahi,Ok!! @Sendhil_Rama and I ready!!! #reverie https://t.co/n8RFUnnK32 +06/21/2018,Actors,@sarahshahi,Snack of choice for live tweeting #reverie what’s yours? https://t.co/FmEsQgO9rV +06/21/2018,Actors,@sarahshahi,Live tweeting in 20!! #reverie shit gets dark starting this week!! You won’t wanna miss!! +06/21/2018,Actors,@sarahshahi,Thank you! https://t.co/WJkIG6EKQk +06/21/2018,Actors,@sarahshahi,Thank you!!! #reverie https://t.co/6YI2DznHjG +06/21/2018,Actors,@sarahshahi,I miss you!!!! And I can’t wait for everyone to see how much you add and how AMAZING YOU ARE!! #Reverie https://t.co/DFN8xlmStr +06/21/2018,Actors,@sarahshahi,A million kisses to everyone who joined in the q and a !! And a million more for watching #reverie TONIGHT on @nbc… https://t.co/pzIoxeHwzg +06/20/2018,Actors,@sarahshahi,#reverie tonight! https://t.co/fyiuyo2fP7 +06/20/2018,Actors,@sarahshahi,Love your method #reverie https://t.co/aDGdV2aZHY +06/20/2018,Actors,@sarahshahi,🙂🙂🙂 #reverie https://t.co/mTzHxiDnZB +06/20/2018,Actors,@sarahshahi,Tonight! #reverie #reveriewednesdays https://t.co/xkPMkk5Cs1 +06/20/2018,Actors,@sarahshahi,Yes yes yes!!!!! We’ll be live tweeting! And this is one of my fave episodes!!! #reverie https://t.co/d2kiQxCOlY +06/20/2018,Actors,@sarahshahi,Ya girl!!!!! Xox#reverie https://t.co/s10cOq0dyF +06/20/2018,Actors,@sarahshahi,I’ll see ya there!! #reverie https://t.co/rCqhisthTK +06/20/2018,Actors,@sarahshahi,Yes!!! Today is #reverie wed!! I’ll be doing a “ q and a” today on @NBCReverie instagram page at 4 (West coast time… https://t.co/BYPrXhHvmc +06/20/2018,Actors,@sarahshahi,WOWOWWOOWOW! Thank you so much!! 🙏🏼 #reverie tomorrow night!! https://t.co/9S8330v3gA +06/20/2018,Actors,@sarahshahi,TOMORROW https://t.co/mOWfKuwSTC +06/19/2018,Actors,@sarahshahi,🙏🏼🙏🏼 #reverie https://t.co/JhWOHIwhiu +06/19/2018,Actors,@sarahshahi,Much oblige!! 🙏🏼#reverie https://t.co/r6dJNXnPy1 +06/19/2018,Actors,@sarahshahi,Thank you!! Tomorrow 9/10 pm on @nbc !! https://t.co/fF7eJx3k9k +06/19/2018,Actors,@sarahshahi,Who can YOU trust!!!!?? The fun is just about to begin... https://t.co/9AscJwbhQa +06/19/2018,Actors,@sarahshahi,Yes @RokuPlayer !!! https://t.co/P8ZLr1lduR +06/16/2018,Actors,@sarahshahi,Thank you!! Xo https://t.co/DiBTy8YXis +06/15/2018,Actors,@sarahshahi,"RT @JessicaLu: You all make me so happy! 🤗 Thanks for watching #REVERIE live with us each week, we’ve all worked so hard to make this magic…" +06/15/2018,Actors,@sarahshahi,😘😘 https://t.co/wpPFMac4P3 +06/15/2018,Actors,@sarahshahi,Only to breathe ;) https://t.co/w5vIJxFAO7 +06/15/2018,Actors,@sarahshahi,"RT @jen_st0ne: Ooooooook that cliffhanger, though?! Excuse me?? To my face?? You’re gonna do that right here at my face?? ✋🏼 Rude. +(But hon…" +06/15/2018,Actors,@sarahshahi,"RT @RalphGarman: Friday's THE RALPH REPORT! Top ten FATHER'S DAY movies, as well as the NEW films in theaters! UK correspondent, @steveasht…" +06/14/2018,Actors,@sarahshahi,Thank you!!! #reverie https://t.co/hckdhwoKCo +06/14/2018,Actors,@sarahshahi,"RT @TheRealJBaxter: @sarahshahi Hey Sarah love your new show Reverie 👍 it’s fascinating and scary, that someday in the near future this cou…" +06/14/2018,Actors,@sarahshahi,Thank you so much. The show continues to amaze. Wait til next week!! #reverie https://t.co/qWz60cwZBu +06/14/2018,Actors,@sarahshahi,Wohhoooo!! Thank you 🙏🏼 https://t.co/c80oafAEGS +06/14/2018,Actors,@sarahshahi,"Thank you so much!! And trust me, starting next week— it’s about to get even more INSTENSE! Keep watching #reverie https://t.co/5EwgHOuNtN" +06/14/2018,Actors,@sarahshahi,Correct!!! Keep watching #reverie https://t.co/zQlrntP1W7 +06/14/2018,Actors,@sarahshahi,Omg. I’m so happy #MPRaccoon is safe +06/14/2018,Actors,@sarahshahi,We are TRENDING #Reverie @Sendhil_Rama @amblin @MickeyFisher73 @DennisHaysbert @kathrynmorris thank you TO EVERYONE… https://t.co/jiOMY4VcUX +06/29/2018,Actors,@TherealTaraji,"OMGGGGGG!!! mildsaucela brought Chicago to LA!!! Please do yourselves a favor and come get some of this chicken, sh… https://t.co/hw1H5rSYh7" +06/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @tarhondajay +・・・ +Season 5!!!!! SAVE THE DATE September 26th #Empire @empirefox 🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿 https://t.co/DI67NIGBCD" +06/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +There only one thing to do with a man that lies. tarajiphenson tells it like it is in… https://t.co/yMM5krvReF" +06/24/2018,Actors,@TherealTaraji,Proud of my Lil cousin @THenn24 joining the #nebraskacornhuskers #CornerBack following in his big cuz kelvinhayden… https://t.co/wwWnHzvE1c +06/21/2018,Actors,@TherealTaraji,💔💔💔 #Repost mic https://t.co/d5neBSkIXc +06/17/2018,Actors,@TherealTaraji,And that’s a wrap on #WhatMenWant OMG I CAN NOT… https://t.co/NCZ51paqaQ +06/15/2018,Actors,@TherealTaraji,So much fun with these beautiful ladies. My… https://t.co/Ne1PUzaEo2 +06/13/2018,Actors,@TherealTaraji,"Y’all, Look who I get to play with!!! Queen… https://t.co/uara0xNLqM" +06/12/2018,Actors,@TherealTaraji,"🙏🏾💋💋💋 #Repost acrimonymovie +・・・ +Oh yes she did.… https://t.co/jXzebj8ssJ" +06/07/2018,Actors,@TherealTaraji,#Tbt #classic this ish still slaps @LilKim… https://t.co/zpe2xQoFBh +06/07/2018,Actors,@TherealTaraji,#Tbt us as Cleo and Pharaoh #thatsmybestfriend 😜💋💋💋 https://t.co/Dw9sXqDLsH +06/06/2018,Actors,@TherealTaraji,"#Repost @yomicalloway +・・・ +Contact the LA County… https://t.co/A61eMmda4D" +06/05/2018,Actors,@TherealTaraji,Because she deserves this!!!! @angiemartinez 🙏🏾💋💋💋 https://t.co/c7ulPhg1K2 +05/30/2018,Actors,@TherealTaraji,WOOOOOOWWW!!! Thank you💋💋💋 #Repost… https://t.co/bbJrtyEg4O +05/30/2018,Actors,@TherealTaraji,Meet my character Yesss KnowsMore and a few… https://t.co/EoxtEs3v6c +05/30/2018,Actors,@TherealTaraji,I can NOT wait for you guys to meet Miss Yess!!!!!! #RalphbreaksTheInternet 💋💋💋 https://t.co/5wH1u8UBRN +05/30/2018,Actors,@TherealTaraji,#TurbanLife #Cookie got me wearing turbans and… https://t.co/ZdhkPr67jG +05/29/2018,Actors,@TherealTaraji,"WOW!!! 💋💋💋 #Repost @maria_mizer +・・・ +⭐️… https://t.co/8Q7cGBV56Q" +05/27/2018,Actors,@TherealTaraji,They left me. I was supposed to be in the… https://t.co/PMMQaeK2CJ +05/26/2018,Actors,@TherealTaraji,"WOOOOOWWWW!!! 💋💋💋 #Repost marthaoborska +・・・ +🍪… https://t.co/yU76m9eC26" +05/25/2018,Actors,@TherealTaraji,#FBF I felt pretty!!! 💋💋💋 #Repost… https://t.co/ZHczdCXf5X +05/24/2018,Actors,@TherealTaraji,😩😂😂😂💋💋💋 https://t.co/izO1rfTnQr +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: O shit !!!! Shit just got real 😢😢😢👀👀👀@TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,RT @BrigitteFrankln: @TherealTaraji @EmpireFOX - Speak Lucious! Speak Cookie!!! This is pure 🔥🔥🔥 +05/24/2018,Actors,@TherealTaraji,RT @Km4cc: Come through Marvin Gaye and then the Chaka Kan reference 🔥🔥 @TherealTaraji @terrencehoward +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: Karma is a bitxh 😆@TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,damn Damn DAMN #BOOBOOKITTY #Empire 😩 +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: So much is happening Jesus @TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,RT @Talibahb1: @EmpireFOX @TherealTaraji @terrencehoward He said I thought that would shut u up😂❤💪🏽 +05/24/2018,Actors,@TherealTaraji,HA!!! 💋💋💋 #Empire https://t.co/D8Whrgdv4P +05/24/2018,Actors,@TherealTaraji,RT @colette_cher: @EmpireFOX @TherealTaraji @terrencehoward Omg Omg Omg yes yes yes +05/24/2018,Actors,@TherealTaraji,RT @REALMANFORLIFE: Lol @TherealTaraji face #Empire when she seen that big rock +05/24/2018,Actors,@TherealTaraji,RT @StarryMag: Cookie's heart is breaking. Her baby boy is devastated and leaving at a time she needs her family more than ever. #Empire +05/24/2018,Actors,@TherealTaraji,"RT @EmpireFOX: 😭 Don't leave us, Jamal! #Empire https://t.co/fbgEdubyAZ" +05/24/2018,Actors,@TherealTaraji,😩😩😩😂😂😂 https://t.co/1saPrHLdJB +05/24/2018,Actors,@TherealTaraji,😩😩😩 https://t.co/F4Hd3vsNi0 +05/24/2018,Actors,@TherealTaraji,😩😩😩😂😂😂💋💋💋 https://t.co/ssFCXsDEcG +05/24/2018,Actors,@TherealTaraji,#Empire #LyonsForever 💋💋💋 https://t.co/xXGBZFcQ4N +05/24/2018,Actors,@TherealTaraji,Damn DAmn DAMN #Tori 😩😢 #Empire 💋💋💋 +05/24/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 @pmnieddu #Empire #Cookie https://t.co/qwEjoEJGkL +05/24/2018,Actors,@TherealTaraji,😱😱😱😱😱😱😱 #Empire +05/24/2018,Actors,@TherealTaraji,💅🏾😼 #Cookie is a G!!! #Empire @EmpireWriters @EmpireFOX 🙌🏾💋💋💋 https://t.co/Fulmsc0wAF +05/24/2018,Actors,@TherealTaraji,#Lucious and #Andre just broke my entire heart!!! BRAVO #PassthetissueBOX 😩😢😩 #Empire @EmpireFOX 💋💋💋 +05/24/2018,Actors,@TherealTaraji,Don’t do it Lucious!!!! #Empire #LuciousCantGoToPrison 😩 +05/24/2018,Actors,@TherealTaraji,RT @EmpireFOX: 😭 Lucious and Cookie FOREVER! #Empire https://t.co/a99g6cYpO8 +05/24/2018,Actors,@TherealTaraji,RT @FastFuriousTrav: @EmpireFOX @TherealTaraji @LadyGraceByers Anika is classy.....not trashy! Anika knows how to sparkle! @LadyGraceByers… +05/24/2018,Actors,@TherealTaraji,😂😂😂😂 https://t.co/D6ORUx5ePb +05/24/2018,Actors,@TherealTaraji,RT @MZCOLDASSICE: Anika said Cookie stole what was hers? Really? Boo Boo kitty did no research. #Empire @EmpireFOX @leedanielsent @TherealT… +05/24/2018,Actors,@TherealTaraji,RT @IAmJoseMiguel: When Anika told Cookie @TherealTaraji I'm not scared if u anymore I was like she should... still don't underestimate Co… +05/24/2018,Actors,@TherealTaraji,"RT @EmpireFOX: .@yazzthegreatest is winnin', that's a fact. 🎤 Download ""Where They At"" here: https://t.co/oAKyw4wxEV #Empire https://t.co/J…" +05/24/2018,Actors,@TherealTaraji,😂😂😂😩😩😩🙈 https://t.co/JelsJdQgIz +05/24/2018,Actors,@TherealTaraji,😩😩😩 https://t.co/L3GC0M0xCK +05/24/2018,Actors,@TherealTaraji,RT @jkh_1983: @EmpireFOX Anika better be afraid! #Empire https://t.co/uI6B3fC78x +05/24/2018,Actors,@TherealTaraji,😰😰😰 https://t.co/LSuGBVRYkb +05/24/2018,Actors,@TherealTaraji,😂😂😂😂😂😂😂😂😩 https://t.co/4z3xAFFEn3 +05/24/2018,Actors,@TherealTaraji,😂😂😂😂😩 https://t.co/gNDtkzNr9n +05/24/2018,Actors,@TherealTaraji,RT @StarryMag: Cookie's trying to cut a deal with Boo Boo Kitty. Anika wants more than a payday. She wants vengeance and everything she thi… +05/24/2018,Actors,@TherealTaraji,"RT @PrettiGirlBadd: That's right Eddie you should've pulled the trigger b****! Game on !! + @TherealTaraji @terrencehoward @EmpireFOX" +05/23/2018,Actors,@TherealTaraji,It’s going down in this #Empire finale baby!!!… https://t.co/9eugr81r7B +05/23/2018,Actors,@TherealTaraji,"RT @extratv: Tonight on #ExtraTV: Buckle up for the @EmpireFOX finale! @AJCalloway is on set with @therealtaraji, @terrencehoward & @jussie…" +05/23/2018,Actors,@TherealTaraji,Do NOT miss this finale HENNY!!! #Empire… https://t.co/k62AjETyJP +05/20/2018,Actors,@TherealTaraji,Trying to do some work buuuuuuutttt someone… https://t.co/34ry1aHt9K +05/20/2018,Actors,@TherealTaraji,YES HE DOES HAVE BOLD IDEAS!!! So grateful to… https://t.co/0FTmyW6qSI +05/15/2018,Actors,@TherealTaraji,Who is responsible for this 😩😂😂😂 #TheUndisputedInternet I can NOT… https://t.co/yA3WZgIH5C +05/14/2018,Actors,@TherealTaraji,I love my friends!!!! @R2BAFB and @2lsquared SO BASICALLY Y’ALL KNEW… https://t.co/51DGVemkfn +05/14/2018,Actors,@TherealTaraji,I said yes y’all!!! He started with the Cartier love bracelet BUT… https://t.co/Mc53o9pzql +05/13/2018,Actors,@TherealTaraji,Happy Mother’s Day to all of the kick ass mom’s out there from one… https://t.co/R0NkpJZpS8 +05/13/2018,Actors,@TherealTaraji,Also wishing my handsome son a very happy birthday. I can NOT… https://t.co/cAFRGdy9FB +05/13/2018,Actors,@TherealTaraji,She is pure unconditional love. She is grace and Mercy. She is… https://t.co/7wJAScmqvk +05/12/2018,Actors,@TherealTaraji,#ForeverKindaLove 💋💋💋 https://t.co/1Rn7TC55Fv +05/11/2018,Actors,@TherealTaraji,#BreakingInMovie THIS WEEKEND!!!! Staring the beautiful… https://t.co/n61yoogxTv +05/09/2018,Actors,@TherealTaraji,Tonight’s episode is directed by my BooBoo @jussiesmollett who is on… https://t.co/C1TIUZG3P1 +05/09/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @empirefox +・・・ +DOUBLE TAP if you'll be tuning in for all… https://t.co/57MM2l30ji" +05/08/2018,Actors,@TherealTaraji,On set with my love interest. Him so sexy 😍#KBall kballhenson… https://t.co/zEjtPEEkBZ +05/08/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @sexxy_red +・・・ +Ready to reward the awesome mom in your life?? 💕💕💕… https://t.co/GfrUyCxh7p" +05/06/2018,Actors,@TherealTaraji,I just love these two Lil peanuts!!!! GET IT BABIES!!!!! 💋💋💋 #Repost… https://t.co/bjkcM5lar0 +05/06/2018,Actors,@TherealTaraji,@donaldglover YOU ARE THE BASQUIAT OF MUSIC!!!! I adore you!!! KEEP… https://t.co/AjF80NkTqV +05/03/2018,Actors,@TherealTaraji,#TBT to that time I sat down with an icon. OH HOW I STUDIED HER BRILLIANCE!!!… https://t.co/z9To13tglA +05/02/2018,Actors,@TherealTaraji,Y’all ready for motha #Cookie or nah? #Empire in 30mins 💋💋💋 #Repost… https://t.co/KCDqc9hQHF +05/02/2018,Actors,@TherealTaraji,"#MentalHealthAwareness #mentalhealthmonth 🙌🏾💋💋💋 #Repost @ajcalloway +・・・ +May… https://t.co/Faq7JRHDgi" +05/02/2018,Actors,@TherealTaraji,"Tonight!!! #Empire 💋💋💋 #Repost @billewoodruff +・・・ +It’s going down tomorrow on… https://t.co/qEwC3PhO4b" +05/01/2018,Actors,@TherealTaraji,May is Mental Health Awareness Month! Join me and #NAMI in the fight to cure… https://t.co/z8ZaR4YwWA +04/28/2018,Actors,@TherealTaraji,🤦🏾‍♀️LMAO @adammshankman I can NOT with you!😩😂😂😂 iamjamesflopez creeping in the back!!! 👀😂😂😂… https://t.co/D1E01u1wIY +04/27/2018,Actors,@TherealTaraji,Day one of filming #WhatMenWant get ready to Lls!!! kballhenson is sooooooo ready!!! 😂💋💋💋 https://t.co/k5Sx290jI6 +04/27/2018,Actors,@TherealTaraji,"I LOVE US!!!! Get it babies. #FRIDAYSMOOD 🔥💋💋💋 #Repost @RONBROWZ +・・・ +Shake Nation ty_cash09 |… https://t.co/qXdE4hCheh" +04/26/2018,Actors,@TherealTaraji,"Yesterday in Vegas!💋💋💋 #Repost @jason_bolden +・・・ +🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯 #JSNstyleteam https://t.co/UdoAnmJmKD" +04/25/2018,Actors,@TherealTaraji,"Food for your soul💋💋💋 #Repost @therealtank +・・・ +Take notes fellas! +#happywifehappylife… https://t.co/dV7v9aAPnH" +04/24/2018,Actors,@TherealTaraji,"RT @JanelleMonae: I’m here 4 ALL OF THIS BGM . Congrats my loves ! 👑👑💓🧠 + + https://t.co/0iUdinZD03" +04/23/2018,Actors,@TherealTaraji,That lil ham hock leg and foot in the back all stretched out like that gets me EVERY TIME!!!!!… https://t.co/nHkHzstXdU +04/21/2018,Actors,@TherealTaraji,Thank you realcoleworld 🙏🏾🙌🏾✊🏽💪🏾💋💋💋 https://t.co/NoOSMW0WT4 +04/21/2018,Actors,@TherealTaraji,They just left off a couple of samiches!!! 🙋🏽‍♀️😩😂😂😂💋💋💋 https://t.co/bjwZzGwXpp +04/19/2018,Actors,@TherealTaraji,"RT @Sir_Eclectic: ""It's good to know that Bo still likes eating pound cake."" - @TherealTaraji #Empire I'm dead. 💀😭😭😂" +04/19/2018,Actors,@TherealTaraji,😫😂😂😂🤷🏾‍♀️💋💋💋 #Empire https://t.co/bqcGqY9lWq +04/19/2018,Actors,@TherealTaraji,RT @EmersonFan2000: @TherealTaraji Cookie is that girl you just wanna have by your side. 😎 https://t.co/vEumW78B0U +04/19/2018,Actors,@TherealTaraji,😂😂😂 #Empire https://t.co/CsTBgueelj +04/19/2018,Actors,@TherealTaraji,Favorite #Cookie quote from tonight’s episode of #Empire. Go...... 😂😂😂 +04/19/2018,Actors,@TherealTaraji,RT @OgTootiee_: Tiana new found attitude I’m not feeling it #EmpireFox https://t.co/esoHovVKHw +04/19/2018,Actors,@TherealTaraji,RT @BryantLaShauna: #EMPIRE pound cake story line got me like https://t.co/B46x6634fq +04/19/2018,Actors,@TherealTaraji,RT @cici_interlude: Andre can charm them out of their panties #Empire https://t.co/jJOHDNVbe1 +04/19/2018,Actors,@TherealTaraji,RT @BadLil_Specimen: I see ya Andre lil slick ass #EmpireFox https://t.co/MqyowAfHky +04/19/2018,Actors,@TherealTaraji,RT @leedanielsent: #Cookie was like...Bo is full of 💩 @EmpireFOX #Empire https://t.co/ZrRrPk8u65 +04/19/2018,Actors,@TherealTaraji,Me too 😁💋💋💋 #Empire #Cookie and #Porsha 💪🏾 https://t.co/lQqsVuy0y0 +04/19/2018,Actors,@TherealTaraji,RT @PlayerPlayer24: That boy Andre smart #EmpireFox 💪 +04/19/2018,Actors,@TherealTaraji,RT @iamLisaHunt: #Empire Alright Celeste...Watch out now. That’s Lucious Lyon you’re talking to like that. #EmpireFox https://t.co/cqOXoB1W… +04/19/2018,Actors,@TherealTaraji,Lmaooooooo😂😂😂😫💋💋💋 #empire https://t.co/voxQ0lQ4Cc +04/19/2018,Actors,@TherealTaraji,"RT @DarrellDass: Lucious got stonewalled by Eddie's ex, but don't think he's done scheming, not by a long shot #EmpireFOX #Empire" +04/19/2018,Actors,@TherealTaraji,RT @StylistMichelle: Maaad props to Hakeem's street style wardrobe! The men's glitter slip-on shoes are hot! #EmpireFox #Empire @EmpireFOX +04/19/2018,Actors,@TherealTaraji,RT @TyeLeeSmith: #Empire @EmpireFOX is 🔥 Lit Tonight. +04/19/2018,Actors,@TherealTaraji,RT @mohalyak: “THAT BITCH TRUMP TWEETIN AGAIN” bYE 😂😂💀 #Empire https://t.co/i3AjzmFaeO +04/19/2018,Actors,@TherealTaraji,RT @dFINEGr8neZZ_Me: “That bitch trump is tweeting again”!!!! #Empire https://t.co/BGZI4AVyYe +04/19/2018,Actors,@TherealTaraji,RT @IamRoyaltyOfc: This Blake vs Hakeem rap got me like :#Empire https://t.co/pUYsfmBwkZ +04/19/2018,Actors,@TherealTaraji,"RT @LifeAs_Reese: That beat 🔥. I see you Keem + +#EmpireFox #Empire https://t.co/cawye2gt1Y" +04/19/2018,Actors,@TherealTaraji,RT @Nk3play2: #Empire #EmpireFox Oh My God...... Poundcake is imagining her baby’s life. https://t.co/QM7ynGhdud +04/19/2018,Actors,@TherealTaraji,Lmaooooooo #Empire💋💋💋 https://t.co/suz8N5mtMu +04/19/2018,Actors,@TherealTaraji,RT @Rae_Bae21: Okay... #Empire https://t.co/yW6SpU8XSE +04/19/2018,Actors,@TherealTaraji,RT @therealmisscox: Cookie looking like she know something @EmpireFOX #EmpireFox @EmpireWriters @TherealTaraji +04/19/2018,Actors,@TherealTaraji,"RT @MiiMaizn: This scene right here! Whew, got the knot in my thoak! 😢 @TherealTaraji https://t.co/onoIi8ptbd" +04/19/2018,Actors,@TherealTaraji,RT @Mani__mommy: Yasssss pound cake!!!!!!! U got a friend hunny #EmpireFox @TherealTaraji you’re the best +04/19/2018,Actors,@TherealTaraji,RT @latoyathomas328: @TherealTaraji LAWD I’m in tears. Please find Poundcake’s baby... #EmpireFox https://t.co/W0yAWctd3Q +04/19/2018,Actors,@TherealTaraji,RT @dejazmin: #Empire @TherealTaraji @terrencehoward cookie sit down stop being hard headed. @EmpireFOX +04/19/2018,Actors,@TherealTaraji,RT @LaurellaWillis: @TherealTaraji O Cookie gone find Pound cake baby girl!! WATCH!! +04/19/2018,Actors,@TherealTaraji,"RT @MZCOLDASSICE: Cookie got Thirsty on the case ASAP +#Empire #Empirefox @EmpireFOX @TherealTaraji @leedanielsent" +04/19/2018,Actors,@TherealTaraji,"RT @filmwritr4: @TherealTaraji @EmpireAddicts No matter what, you just can't keep Cookie Lyon down. #Empire" +04/19/2018,Actors,@TherealTaraji,RT @MZCOLDASSICE: Cookie has heart and played right into poundcake plan. #Empire #Empirefox @EmpireFOX @TherealTaraji @leedanielsent +04/19/2018,Actors,@TherealTaraji,RT @Teamtaytay4: 😂Porcia face when Cookie said she sent her out to get tofu😣 @TaRhondajay @TherealTaraji #Empire +04/12/2018,Actors,@TherealTaraji,Enjoyed your presence!!! 🙏🏾💋💋💋 https://t.co/e5hLzRHFu7 +04/12/2018,Actors,@TherealTaraji,😩😂😂😂💋💋💋 #Empire https://t.co/gL3TXrOBK9 +04/12/2018,Actors,@TherealTaraji,TU 💋💋💋 https://t.co/Ax4I8NcRCT +04/12/2018,Actors,@TherealTaraji,😂😂😂😂😂😂💋💋💋 https://t.co/MTMkET1Gd4 +04/12/2018,Actors,@TherealTaraji,😩😂💋💋💋 #Empire https://t.co/kNhirSavXZ +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/9lXsBbPO8A +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/622qR760Ca +04/12/2018,Actors,@TherealTaraji,👀😂💋💋💋 #Empire https://t.co/fFmjeeInxl +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/hLr1hBoRub +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/zdWrIOKmh6 +04/12/2018,Actors,@TherealTaraji,RT @cclarkinspire7: @GMA @EmpireFOX @RobinRoberts @TherealTaraji @JussieSmollett @RobinRoberts did a phenomenal job ! @GMA #Empire +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/nPYNvUcGpC +04/12/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 https://t.co/Ej3S8mywbO +04/12/2018,Actors,@TherealTaraji,"RT @GMA: .@RobinRoberts joins the Lyon family! Check out her all-access journey backstage on the set of #Empire with @TherealTaraji, @Jussi…" +04/08/2018,Actors,@TherealTaraji,My fav movie 😂💋💋💋 #TalkToMe https://t.co/hBrB2JXLQE +04/08/2018,Actors,@TherealTaraji,Thank you sweetheart!!! 🙏🏾💋💋💋 #Acrimony #Acrimonymovie @AcrimonyMovie https://t.co/ril4gbwq0P +04/08/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 #Aroundthewaygirl https://t.co/bYGVxfWGgn +04/08/2018,Actors,@TherealTaraji,RT @AcrimonyMovie: He owes her everything. 💔@TherealTaraji gets even in @TylerPerry’s #Acrimony - NOW PLAYING in theaters. Get tickets now!… +04/08/2018,Actors,@TherealTaraji,On CONSTANT rotation!!! #AthemShitHERE THANK YOU @iamcardib for this!!! #MoneyBagWomen Keep… https://t.co/hY08Egu2sM +04/07/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +It’s not over until Melinda says it is. 🙅🏾‍♀️ @TherealTaraji takes… https://t.co/FA9mQ6WeHI" +04/07/2018,Actors,@TherealTaraji,@ralofamgoon Reach out +04/06/2018,Actors,@TherealTaraji,"I love us!!! 💋💋💋 #Repost @EBONYMag +[@ItsBlackCulture] https://t.co/Dc6IhYufS2" +04/06/2018,Actors,@TherealTaraji,https://t.co/jowBZGXVCT go check him out and follow him @LhLoyallane +04/05/2018,Actors,@TherealTaraji,Tune in TONIGHT!!!!! @empirefox is BACK on Fox @ 8/7c #Empire #Fox 💋💋💋 https://t.co/RbpigrJ9Xd +04/04/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @pmnieddu +・・・ +Never Not Modeling ❤️don’t forget to watch @empirefox tonight at 8pm… https://t.co/Rf0kOB10d6" +04/03/2018,Actors,@TherealTaraji,Calling all my QUEENS! I have a special offer for your #GirlsNightOut this weekend! Use my code… https://t.co/pL0vG75EQj +04/01/2018,Actors,@TherealTaraji,💋💋💋 #Acrimony @AcrimonyMovie https://t.co/0Brdes6jFL +04/01/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/yu771ohoEw +04/01/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/TBMsHZQZCm +03/31/2018,Actors,@TherealTaraji,"I’m so excited for you to see #Acrimony this weekend, that I’m buying out two theaters for you… https://t.co/iRy5jHklCx" +03/31/2018,Actors,@TherealTaraji,"THANK YOU BEAUTIFUL PPL!!! 💋💋💋 #Repost ladiesnightoutbymichelle +・・・ +Thank you @tylerperry &… https://t.co/Vt3IFvUJO6" +03/31/2018,Actors,@TherealTaraji,So glad I trusted you @tylerperry. 💋💋💋 We shot this film in 8 days!!! My portion was filmed in 5… https://t.co/sMl4LS1QPQ +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/mtaOaXj0xg +03/30/2018,Actors,@TherealTaraji,"I’m so excited for you to see #Acrimony this weekend, that I’m buying out two theaters for you… https://t.co/ZwPV2hAmR7" +03/30/2018,Actors,@TherealTaraji,"FINALLY!!! 💋💋💋 #Repost acrimonymovie +・・・ +The wait is over… 💔 Get tickets now to see… https://t.co/5JQIjdvpUX" +03/30/2018,Actors,@TherealTaraji,💋💋💋#Acrimony https://t.co/cpxFr1uiw9 +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/h6fvf1CGfd +03/30/2018,Actors,@TherealTaraji,💋💋💋 #Acrimony https://t.co/C8ygyezMmZ +03/30/2018,Actors,@TherealTaraji,RT @EmpireFOX: Queen of the Empire and the big screen. Don’t miss an exclusive first look from @TherealTaraji’s new film — @TylerPerry’s #A… +03/30/2018,Actors,@TherealTaraji,💋💋💋#Acrimony https://t.co/yJCRLgbQC0 +03/30/2018,Actors,@TherealTaraji,#Acrimony #Acrimonymovie 💋💋💋 https://t.co/REyYaohuDc +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/CLDk1Lf82m +03/30/2018,Actors,@TherealTaraji,💋💋💋 #Acrimonymovie #Acrimony https://t.co/N9rsbig23C +03/30/2018,Actors,@TherealTaraji,RT @ShelookslikeYES: #Acrimony this movie was so dope!!! @tylerperry @TherealTaraji y’all did that!!! https://t.co/tB9xZONubD +03/29/2018,Actors,@TherealTaraji,YAASSS! Proud Mary getting ready to kick some ass! The movie is out now on Digital! Get your… https://t.co/RzQ2EGjKXP +03/29/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +He promised her everything and then gave it all to his sidechick.… https://t.co/uJtQa1pAYi" +03/29/2018,Actors,@TherealTaraji,#KBall kballhenson is a natural model😂😂😂🤷🏾‍♀️💋💋💋 https://t.co/hIvYFiGdgN +03/29/2018,Actors,@TherealTaraji,RT @beanoTG: @EmpireFOX this is about to be THE LONGEST WEEK waiting for @TherealTaraji 😒 ALL THE WEEKS GONE BE LONG!! 😭💋❤️ +03/29/2018,Actors,@TherealTaraji,RT @RJ_Tube: You better not slice her throat @TherealTaraji #empire +03/29/2018,Actors,@TherealTaraji,RT @TyNewte: That Cookie is one bad mutha......shut my mouth! Yaaaasss! @TherealTaraji +03/29/2018,Actors,@TherealTaraji,#Claudia was feeling quite frogy 🐸 leaping all on #Cookie like that. This should be interesting 😂😂😂😒 #Empire 💋💋💋 +03/29/2018,Actors,@TherealTaraji,🤷🏾‍♀️😫😂😂😂 #Empire💋💋💋 https://t.co/4qDQ2rBWdn +03/29/2018,Actors,@TherealTaraji,😂😂😂😂 #ProudMary #Cookie #Empire💪🏾💋💋💋 https://t.co/GapD01FWMP +03/29/2018,Actors,@TherealTaraji,RT @DALitt731: Lucious is so obsessed with Cookie and he know it’s true. @EmpireFOX @EmpireAddicts @TherealTaraji @LadySag1219 #EmpireWedne… +03/29/2018,Actors,@TherealTaraji,😂😂😂😂😂😂😂😂😂😂😂😂😂#Acrimonymovie #Empire #Cookie #Melinda https://t.co/KAr59lFuyj +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/B6AzqZZws1 +03/29/2018,Actors,@TherealTaraji,RT @MsTiffanyBarker: Claudia is NOT going to be satisfied until the COOKIE MONSTER comes out! Doesn't she see @TherealTaraji doesn't play w… +03/29/2018,Actors,@TherealTaraji,RT @_ThirdWardTrill: Cookie coming to save the day!! @TherealTaraji #Empire +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/MIRB12P8qe +03/29/2018,Actors,@TherealTaraji,RT @itsjustme1213: @TherealTaraji I’m watching girl I’m holdin my breath and lovin every minute. 🙏🏽👍🏽😉 Demi got a problem... https://t.co/… +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/sOyRMdI9JD +03/29/2018,Actors,@TherealTaraji,RT @Tinaa43: Man Claudia don’t know WHO tf Cookie Lyon IS...She gone have one of them prison flashbacks and Whoop Claudia a$$ @EmpireFOX @T… +03/29/2018,Actors,@TherealTaraji,RT @StarryMag: Lucious is missing but Thirsty's on the case. He's got Claudia on tape but did he go with her willingly? #Empire https://t.c… +03/29/2018,Actors,@TherealTaraji,RT @EmpireFOX: We're ready to serve up that #Empire tea! 🍵 Join @tarhondajay & @terrellmusic for the #EmpirePreShow LIVE on Twitter tonight… +03/29/2018,Actors,@TherealTaraji,The #LyonBrothers scenes I always LOVE @JussieSmollett @JustTrai @YazzTheGreatest #Empire 💋💋💋 +03/29/2018,Actors,@TherealTaraji,Go get yo man #Cookie #Empire WE’RE BACK!!! 💋💋💋 +03/29/2018,Actors,@TherealTaraji,"RT @UrbanityToday: @EmpireFOX @EmpireWriters I told y""all about Claudia last season!!! Cookie you better not let her take your man again! @…" +03/29/2018,Actors,@TherealTaraji,😂😂😂😂😂 cookies blonde bombshell wig by @TrueIndianHair #Empire💋💋💋 https://t.co/nJpHlSFPUN +03/29/2018,Actors,@TherealTaraji,Who’s watching #Empire? 🙋🏾‍♀️💋💋💋 +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost biggiealkass +・・・ +Who is Ready For an al new episode of @empirefox tonight on foxtv… https://t.co/7ph0hTExX1" +03/28/2018,Actors,@TherealTaraji,✊🏿✊🏾✊🏽✊🏼✊🏻✊🙏🏾🙏🏾🙏🏾💋💋💋 #Repost @People4Bernie - This PSA played during tonight's #SacramentoKings… https://t.co/VCGSJDVoT3 +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +Take it from @TherealTaraji… revenge is only the beginning. 🖤🔥 See… https://t.co/iQy24D0uJg" +03/28/2018,Actors,@TherealTaraji,"😱😱😱😩😂💋💋💋 #Repost @empirefox +・・・ +Who’s ready for the epic return of #Empire tonight at 8/7c?!… https://t.co/Xv7wxGxijf" +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @tylerperry +・・・ +Planning a #GirlsNightOut this Friday? Buy 2 tickets to see… https://t.co/9mRBXuQxMs" +06/23/2018,Actors,@TaySchilling,RT @KamalaHarris: A few moments ago I finished visiting with mothers who were separated from their children at the border. I can tell you t… +05/30/2018,Actors,@TaySchilling,Check out my friend @legit_Rebitch in her new film THEY REMAIN @theyremainfilm w/ @dubjackharper - NOW AVAILABLE on… https://t.co/5NXnH2aBur +04/19/2018,Actors,@TaySchilling,"My friend @JenSiebelNewsom is out with her third documentary, the #GreatAmericanLie. After #MissRepresentation and… https://t.co/0eJlt5gWcu" +04/05/2018,Actors,@TaySchilling,Join me in celebrating the birthday of my friend and ally @CynthiaNixon as she takes our shared fight for advancing… https://t.co/o7CVuNDGL5 +03/22/2018,Actors,@TaySchilling,@CynthiaNixon https://t.co/1ocoFZampx +03/21/2018,Actors,@TaySchilling,🙌🏻 🙌🏻 🙌🏻 @CynthiaNixon https://t.co/nb7xRxwwUU +03/20/2018,Actors,@TaySchilling,https://t.co/DiYOHUrVy7 +03/12/2018,Actors,@TaySchilling,Whoop whoop ❤️❤️❤️🤡🤡🤡 https://t.co/snJ34tIYHm +03/08/2018,Actors,@TaySchilling,Join me & my dear friend @JessicaNeuwirth in supporting Donor Direct Action and Women's Rights Advancement and Prot… https://t.co/yau6yOarEF +03/08/2018,Actors,@TaySchilling,"more from @JessicaNeuwirth +https://t.co/HMKoE4mODV" +03/08/2018,Actors,@TaySchilling,I've learned so much from my extraordinary friend @JessicaNeuwirth. Here's an intro to some of her work. Happy Inte… https://t.co/Upu8sJqjDU +01/17/2018,Actors,@TaySchilling,On Aziz Ansari And 'Bad Sex' https://t.co/0KvvOd0MV5 +01/15/2018,Actors,@TaySchilling,https://t.co/6wvPp9aiA3 +01/09/2018,Actors,@TaySchilling,#HunterDreamerCampaign #CallPaulRyan #SaveDreamers https://t.co/J1RsuoXFPJ +12/28/2017,Actors,@TaySchilling,"RT @DreamTeamHunter: Join @GloriaSteinem and our DREAMers as they call Congress to pass a DREAM Act. Tag 3 ppl to do the same! + +@RealBambad…" +12/06/2017,Actors,@TaySchilling,"Grateful to @taranaburke, @rosemcgowan, @ronanfarrow for speaking up and making 2017 the year we finally started ta… https://t.co/xHP1xhWbqr" +12/05/2017,Actors,@TaySchilling,Congress will either fund the deportation of #Dreamers or protect them.We need a #DreamActNow!Join me &call Congress:https://t.co/XF9uztNzw5 +12/03/2017,Actors,@TaySchilling,#DreamActNow https://t.co/0iSW7YwlxR +06/15/2017,Actors,@TaySchilling,RT @jimandsamshow: Today's #JimAndSam show replay with @TaySchilling and @IanUnderCover starts in just 1 hour! Check it out on @SIRIUSXM Ch… +06/14/2017,Actors,@TaySchilling,I'm just basking in the light of @Lavernecox https://t.co/gav2CT8JF5 +06/12/2017,Actors,@TaySchilling,RT @PublicTheaterNY: #WeAreOnePublic. https://t.co/HkOKxFIKsT +06/12/2017,Actors,@TaySchilling,https://t.co/BKfIshqhhN via @youtube #OITNB #OITNBS5 +06/09/2017,Actors,@TaySchilling,"Good talk, good talk https://t.co/N86QgdImis" +06/08/2017,Actors,@TaySchilling,Thank you @WBUR and @nytimes for having me guest narrate this episode of the #ModernLovePodcast https://t.co/i0NFXI4hlQ +06/03/2017,Actors,@TaySchilling,RT @thedanieb: Unacceptable. And the audience applauds!?! So hurtful. https://t.co/V5yAk9C9ON +06/02/2017,Actors,@TaySchilling,What You Can Do About Climate Change - The New York Times https://t.co/xHQj7lH1HM +05/05/2017,Actors,@TaySchilling,(2/2)...#TakeMe is available on @iTunes https://t.co/eLBFyojscZ !! @MarkDuplass @jayduplass @meleslyn @Pat_Healy +05/05/2017,Actors,@TaySchilling,(1/2) Excited to share my latest film with the #Duplassbrothers #TakeMe opening NY/LA today &... +04/25/2017,Actors,@TaySchilling,You + 📷 means @burtsbees will plant 5k 🌸s to help save the 🐝s! Take a flower-filled #SelflessSelfie here: https://t.co/Ncx6K5DFRe #ad +04/19/2017,Actors,@TaySchilling,A #selfie 4 a good cause? Help save the 🐝s by taking a #SelflessSelfie & @burtsbees will plant 5k 🌸s! Snap a pic https://t.co/k4vvDrQ1Ck #ad +02/03/2017,Actors,@TaySchilling,This https://t.co/k3XJtyVvDZ +02/03/2017,Actors,@TaySchilling,@NYGovCuomo thank you +02/03/2017,Actors,@TaySchilling,This is amazing https://t.co/esiCc9NBID +02/03/2017,Actors,@TaySchilling,RT @SenGillibrand: Public education. Safe schools. That’s what our Education Secretary should commit to. Betsy DeVos is the wrong choice. +02/02/2017,Actors,@TaySchilling,RT @NARAL: Betsy DeVos his completely unqualified to serve as Edu Secy & she's 1 'no' vote away from defeat. Keep calling your Senators! #S… +02/01/2017,Actors,@TaySchilling,"Great ideas on how you can advance #NoBanNoWall via @JenSiebelNewson: https://t.co/JyGQPq1wbu""" +02/01/2017,Actors,@TaySchilling,"I'm asking Trump to uphold the rights of women, Muslims, immigrants, ALL people. Sign this petition: https://t.co/pCfjS7jM47 #BeAModelMan" +01/22/2017,Actors,@TaySchilling,"RT @JenSiebelNewsom: Call Paul Ryan (202) 225-0600 +Press 2 to weigh in on Healthcare issue, then PRESS 1 to support continuing the Affordab…" +01/22/2017,Actors,@TaySchilling,Pictures From Women’s Marches on Every Continent - The New York Times https://t.co/ZTEFAfbcwP +01/21/2017,Actors,@TaySchilling,@RepMaloney thank you for your service Rep.Maloney! Honor to march with you +01/21/2017,Actors,@TaySchilling,RT @RepMaloney: And we march! #WomensMarch https://t.co/h2VUQuOEBR +01/18/2017,Actors,@TaySchilling,Because we still have to say women's rights are human rights. https://t.co/ahOswRcH9X #MarchingForward @TheRepProject +01/18/2017,Actors,@TaySchilling,"Dear New York State Legislature, +Please pass this law for #KaliefBrowder. This is not partisan. +#RaiseTheAgeNY +https://t.co/vLhYKBI21q" +01/18/2017,Actors,@TaySchilling,RT @NYDailyNews: .@ShaunKing: Time for New York to do right by Kalief Browder’s family and pass reasonable criminal justice reforms https:/… +01/13/2017,Actors,@TaySchilling,#CallingAllWomen @womensmarch @ItsTimeNetwork #equalmeansequal Why is domestic violence law failing women? Find out: https://t.co/guU106yPGj +01/12/2017,Actors,@TaySchilling,https://t.co/XtCgzx1SSg +01/12/2017,Actors,@TaySchilling,"Fight back! Next big election is in Virgina, and now we have a serious progressive champion running for Governor. #GoTomGo @TomPerriello" +01/11/2017,Actors,@TaySchilling,"RT @POTUS: Thank you for everything. My last ask is the same as my first. I'm asking you to believe—not in my ability to create change, but…" +01/11/2017,Actors,@TaySchilling,Yes we can. #FarewellObama +01/09/2017,Actors,@TaySchilling,https://t.co/XC79DKtOAQ via @youtube @kamalalopez speaks eloquently on this still valid and worthy issue. +01/07/2017,Actors,@TaySchilling,"""Women, if the soul of the nation is to be saved, I believe that you must become its soul."" - Coretta Scott King @womensmarch #January21" +01/05/2017,Actors,@TaySchilling,RT @PattyArquette: 80% think gender equality is guaranteed by the Constitution? IT ISN’T. #EqualMeansEqual https://t.co/hBZPQ6Y1SG https://… +01/05/2017,Actors,@TaySchilling,RT @ananavarro: Trump siding with Assange and Putin over CIA- patriots who dedicate and risk their lives to keep us secure- is a damn disgr… +01/05/2017,Actors,@TaySchilling,RT @CoryBooker: The 115th Congress begins today. This will be a profoundly consequential year for our nation. Please join me. https://t.co/… +01/05/2017,Actors,@TaySchilling,"Facing a President who denies the reality of climate change, we need to mobilize together. Join me. https://t.co/NVa4Tk4Bio" +12/15/2016,Actors,@TaySchilling,"Informative and timely convo with the incredible @vj44 and @Piper +https://t.co/FBWzD231Z4 @WhiteHouse #CriminalJusticeReform" +12/14/2016,Actors,@TaySchilling,Wanna hang & work out with me & help my friends in @iamatheatre? All at the same time?! Only a day left to bid: https://t.co/cPeHmamMpz +12/05/2016,Actors,@TaySchilling,"RT @MarkDuplass: A peaceful, respectful protest fueled by compassion and justice has won a major victory. This is a fantastic example for a…" +12/01/2016,Actors,@TaySchilling,"How a Triathlon Helped America Ferrera Defy Her Inner Critic, via @nytimes@AmericaFerrera https://t.co/tAm6by5IYL" +11/30/2016,Actors,@TaySchilling,"#NowMoreThanEver, help ensure #safety & #equaljustice for #women.Join me in supporting @WPA_NYC this #GivingTuesday! https://t.co/s1lWE82AG1" +11/06/2016,Actors,@TaySchilling,"Dalai Lama: Behind Our Anxiety, the Fear of Being Unneeded, via @nytimes https://t.co/khKTAAQiPE" +10/15/2016,Actors,@TaySchilling,@DavidPepper thank you! Today was an inspiration +10/06/2016,Actors,@TaySchilling,I'm voting to see the ERA on Sunday's debate& so can you #ERANow @ERACoalition @OpenDebate https://t.co/w66RNSckdl +09/28/2016,Actors,@TaySchilling,Jackie and puppies! https://t.co/GnvVxtu2fL +09/27/2016,Actors,@TaySchilling,"""A man who can be provoked by a tweet should not have his fingers anywhere near the nuclear code"" #ImWithHer" +09/27/2016,Actors,@TaySchilling,"RT @chrissyteigen: annnnnnd ""400 pounds"" will be the story tomorrow." +09/27/2016,Actors,@TaySchilling,RT @sadydoyle: I see Hillary has come dressed in the blood of men who have underestimated her. +09/20/2016,Actors,@TaySchilling,Congratulations all 'round! https://t.co/zEC5qqsRvF +09/14/2016,Actors,@TaySchilling,At the @ERACoalition screening of @EqualMeansEqual. U.S. women still aren't equal under the law. We need #ERANow. https://t.co/91Jgdk4RmR +09/07/2016,Actors,@TaySchilling,J is for Jail. Literacy helps prevent crime. Please RT. https://t.co/MZ9zvzWZbg #ProjectLiteracy https://t.co/KMbiuIpZjB +07/25/2016,Actors,@TaySchilling,#ThisIsWhatMyRevolutionLooksLike https://t.co/k4PpmBf0zu +07/19/2016,Actors,@TaySchilling,RT @RepresentPledge: Let's celebrate women in politics and advocate for women-friendly policies #RepresentHer https://t.co/9VrGo0Etpv https… +07/07/2016,Actors,@TaySchilling,#TBT to unveiling the new @Origins Harvard Sq store! More on Origins NEW blog: https://t.co/eck9CmMVR3 #Ambassador https://t.co/x6OXNIIgXs +05/18/2016,Actors,@TaySchilling,"Can't wait to help @Origins unveil their newly redesigned store in Cambridge, MA tonight! So good to be home. #Ambassador" +04/22/2016,Actors,@TaySchilling,"Happy Earth Day!#KissThePlanet. pucker up, tag @OriginsUSA #KissThePlanet and #DoGoodCampaign and Origins will plant a tree. 🌲🌳#ambassador" +04/19/2016,Actors,@TaySchilling,I loved this doc! Exploring America's narrow definition of masculinity @JenSiebelNewsom's @MaskYouLiveIn on Netflix https://t.co/68sse1Yeg9 +04/19/2016,Actors,@TaySchilling,"Pucker up to help Origins plant trees for Earth Month!Tweet your smooch to @Origins,tagging #KissThePlanet & #DoGoodCampaign! #ambassador" +04/03/2016,Actors,@TaySchilling,"'The Outs’ Returns: Making the Best Gay Show (Not) on TV +Yessss @tommyheleringer!!🙌🌟@theadamgoldman @watchtheouts https://t.co/kiM3WOBr5e" +03/13/2016,Actors,@TaySchilling,Time For Change Foundation Helping women and children thrive. Join Me! https://t.co/Zsu9yc9vWV +03/09/2016,Actors,@TaySchilling,RT @HillaryClinton: Why Hillary has won nearly all the editorial board endorsements in the Democratic primary so far. https://t.co/neBtd2kS… +02/26/2016,Actors,@TaySchilling,"Video: President Obama Weighs in on Oscars Controversy https://t.co/AWqDeVIxju ""provide opportunity to everybody"" #OscarsSoWhite" +02/11/2016,Actors,@TaySchilling,"Gravitational Waves Detected, Confirming Einstein’s Theory, via @nytimes +Ripples! https://t.co/gHqBPpIA2q" +02/01/2016,Actors,@TaySchilling,@imperfect_souul @megosaurus_rawr ur brave&intelligent activism are inspiring examples of how change happens #blackatbls +02/01/2016,Actors,@TaySchilling,"BLS students standing up +@megosaurus_rawr @imperfect_souul xx https://t.co/4f0H4clXFI" +12/21/2015,Actors,@TaySchilling,GLASSbook x Jackie Cruz Holiday... by Zoe Ziirsen | Generosity looks good! https://t.co/XrpahKrYY4 +12/16/2015,Actors,@TaySchilling,Redefining masculinity in 2015: https://t.co/aTS4leqD8q #unmasked +12/10/2015,Actors,@TaySchilling,And the golden globes! Nailing it @UzoAduba. Congratulations!!! +12/10/2015,Actors,@TaySchilling,Congratulations to the magnificent @UzoAduba and @thedanieb on their SAG noms as well as the entire orange cast! +12/10/2015,Actors,@TaySchilling,"#You Ain’t No American, Bro, via @nytimes https://t.co/oUp5Z5YJzF" +11/06/2015,Actors,@TaySchilling,"Larry Smith! My #bestadviceinsix, “Right now you're ok, I promise.” is in @larrysmith's new @sixwords book https://t.co/wwZ7RNbrno" +11/05/2015,Actors,@TaySchilling,"Not a great day in Houston. + https://t.co/SDnqFAcGPq" +09/29/2015,Actors,@TaySchilling,National pink out day #StandWithPP +09/09/2015,Actors,@TaySchilling,Excited to share that my latest film @Overnight_Movie is now on @iTunesMovies! Watch now: http://t.co/2GeYHISwhg +09/09/2015,Actors,@TaySchilling,RT @AmazonVideo: This could be the start of a beautiful friendship... and you're invited. Own #TheOvernight: http://t.co/ZMsFoyLgdx https:/… +08/13/2015,Actors,@TaySchilling,Mindy Kaling's Guide to Killer Confidence http://t.co/meDJ6ZqjzV +08/13/2015,Actors,@TaySchilling,Proud to support your great work! https://t.co/XDMhWsO6XI +08/12/2015,Actors,@TaySchilling,Xx https://t.co/5KE5PmzPXa +08/10/2015,Actors,@TaySchilling,http://t.co/7sIVCkIG9B +08/10/2015,Actors,@TaySchilling,http://t.co/TMg6KaFUpY +08/08/2015,Actors,@TaySchilling,What We Learned From German Prisons - The New York Times http://t.co/vNSGZppQm0 +08/07/2015,Actors,@TaySchilling,Plus it's free @jonesarah http://t.co/v4RWAfCTNN +08/07/2015,Actors,@TaySchilling,The brilliant @jonesarah performing @ the East River amphitheater tonite 7pm. I'm a BIG fan. Humbled and awed http://t.co/v4RWAfCTNN +07/31/2015,Actors,@TaySchilling,"#FBF to before the season 3 premiere. @HarryJoshHair , your hair stylist skills always blow me away. *Pun intended. http://t.co/u5AuKkizLW" +07/17/2015,Actors,@TaySchilling,"If you want to motivate for a movie this weekend- just saying it's an option. Still in theaters,… https://t.co/Xkx1FenICT" +07/15/2015,Actors,@TaySchilling,Sage wisdom. Rub noses. http://t.co/jY3gu6chRZ @carrie_rachel corintuckerband https://t.co/9o8nhFOz72 +07/10/2015,Actors,@TaySchilling,RT @BravoWWHL: TONIGHT: @TaySchilling & @AndieMacDowell3 are in the #WWHL Clubhouse! Tune in 11/10c only on @BravoTV. +07/09/2015,Actors,@TaySchilling,RT @EqualMeansEqual: @TaySchilling speaks out in support of the #ERA. Stay tuned for the @EqualMeansEqual documentary for more info. http:… +07/08/2015,Actors,@TaySchilling,Extra hour on the tarmac just became really enjoyable with @Miguel's beautiful album #WILDHEART on repeat +07/04/2015,Actors,@TaySchilling,@SarahSoWitty @Overnight_Movie @mradamscott 🙌 +07/02/2015,Actors,@TaySchilling,@sammyx618 well... I've already seen it... But enjoooyyy +07/02/2015,Actors,@TaySchilling,@pipe_chap @Overnight_Movie thank you! +07/02/2015,Actors,@TaySchilling,#TheOvernight is the new sleepover... Go see it! @Overnight_Movie is out in theaters TOMORROW http://t.co/teuKp3Hs6d +06/30/2015,Actors,@TaySchilling,Loved sharing a good laugh with Taylor Schilling…I mean @HarryJoshHair #behindthescenes #outtakes #bellylaugh #ad http://t.co/pnSxsezkYs +06/28/2015,Actors,@TaySchilling,Pride party for 2. #stoopshenanigans #freeselfieson13thst #pride2015 #lovewins @harryjoshhair https://t.co/WMFJexdayC +06/28/2015,Actors,@TaySchilling,Pride party for 2 #stoopshenanigans #freeselfieson13thst #pride2015 #lovewins @harryjoshhair https://t.co/Jiu1HTdg8y +06/26/2015,Actors,@TaySchilling,The Supreme Court rules that the Constitution guarantees a right to same-sex marriage http://t.co/UkgHGByYyq http://t.co/kWXRKL0Dst +06/26/2015,Actors,@TaySchilling,"To all those in the UK, #TheOvernight is in cinemas today! Hope you enjoy! https://t.co/R3nn8z256w" +06/25/2015,Actors,@TaySchilling,http://t.co/6siHWCFM1t audience participation. #TheOvernight #clarification +06/25/2015,Actors,@TaySchilling,"RT @rachelzarrell: ""Masshole"" added to the Oxford English Dictionary. Along with +""TomFuckinBrady."" http://t.co/gytFQCMs7P" +06/25/2015,Actors,@TaySchilling,RT @julieburtonwmc: Actress Meryl Streep sends a letter to each and every member of Congress http://t.co/kgVdh7HeJN @womensmediacntr @eraco… +06/25/2015,Actors,@TaySchilling,"RT @NETAPORTER: She’s out of lock up and charming the socks off us, meet @OITNB’s @TaySchilling. #THEEDIT http://t.co/Or7EMTgIWE http://t.…" +06/23/2015,Actors,@TaySchilling,So much fun shooting last week with my buddy @HarryJoshHair. See the full video on @JohnFriedaUS social channels #ad http://t.co/srPwub4PAy +06/23/2015,Actors,@TaySchilling,"@tswift5everr I beg to differ. However, I sincerely appreciate the sentiment. :) x" +06/23/2015,Actors,@TaySchilling,@RheAy2 I always imagined she didn't. It's ambiguous tho. What did you think? +06/23/2015,Actors,@TaySchilling,@YaelStone @Overnight_Movie Ya Ya! Dear friend. +06/23/2015,Actors,@TaySchilling,@holz_emison soon! +06/23/2015,Actors,@TaySchilling,@givemamaasmile here! +06/23/2015,Actors,@TaySchilling,@mpride80 @OITNB thank you!! +06/23/2015,Actors,@TaySchilling,"Gender equality isn’t just about women. It’s about a world with equal +opportunity for all. I support #ERANow http://t.co/5b0GLeKrft" +06/17/2015,Actors,@TaySchilling,RT @FilmLinc: Critics are calling THE OVERNIGHT a modern-day BOB & CAROL & TED & ALICE. Sneak preview tmrw! http://t.co/jIMfdnQY3L http://t… +06/16/2015,Actors,@TaySchilling,"#Repost theovernight with repostapp. +・・・ +Tomorrow, see mradamscott, Judith Godrèche, Jason… https://t.co/dgSR3Mrhgc" +06/16/2015,Actors,@TaySchilling,"#Repost theovernight with repostapp. +・・・ +Your circle should be well rounded and supportive. Keep it… https://t.co/ihKfZ526l0" +06/12/2015,Actors,@TaySchilling,Binge watching? Check out @JohnFriedaUS to see how @HarryJoshHair did my hair for the Season 3 Fan Event #JFstyle #ad http://t.co/D9BFTJ5Udb +06/11/2015,Actors,@TaySchilling,This is happening @Oitnb #orangecon #season3 #Oitnb @msjackiecruz @netflix https://t.co/uqFlAc2atJ +06/11/2015,Actors,@TaySchilling,Headed to get styled by @HarryJoshHair for Season 3 Fan Event. Stay tuned to @JohnFriedaUS for details. #JFStyle #ad http://t.co/BUaWHbyy8V +06/10/2015,Actors,@TaySchilling,"@mradamscott,Jason Schwartzman, @Judith_Godreche, &I got a little crazy. Here's a #NSFW trailer for @Overnight_Movie: http://t.co/ddNQBt9jRW" +06/05/2015,Actors,@TaySchilling,@UzoAduba 🍎🙏❤️ +06/05/2015,Actors,@TaySchilling,Not bad @uzoaduba #Oitnb #S3 #realsightseeing #sorrynotsorry https://t.co/knl7saOkdh +06/05/2015,Actors,@TaySchilling,@uzoaduba @lavernecox @lauraprepon https://t.co/U9zmSZx9Ka +06/05/2015,Actors,@TaySchilling,RT @LauraPrepon: Behind the scenes at Rolling Stone cover shoot! Still surreal 😊 https://t.co/WXIgGG4Znm +06/03/2015,Actors,@TaySchilling,"This felt really special. Thank you so much, rollingstone #OITNB #S3 https://t.co/aETfZgbyMr" +05/21/2015,Actors,@TaySchilling,Congratulations! https://t.co/OSLLMxPzaS +05/20/2015,Actors,@TaySchilling,Beautiful work! Thank you! https://t.co/KAebESKBkE +05/20/2015,Actors,@TaySchilling,RT @The_Gilbert_23: .@TaySchilling @GameofThrones CITY should support local animal shelter #DubrovnikShame PLS Help us fight! http://t.co/i… +05/19/2015,Actors,@TaySchilling,RT @Variety: .@shondarhimes and @OITNB's Jenji Kohan Honored for 'Changing the Face of Media' http://t.co/UKNhoRavxO http://t.co/xNIewxOYTI +05/19/2015,Actors,@TaySchilling,"RT @shondarhimes: Yes, I did. https://t.co/fUld7ddLbi" +05/19/2015,Actors,@TaySchilling,"RT @MajoritySpeaks: ""My flaws are gorgeous."" - @shondarhimes #WhatAFeministLooksLike" +05/19/2015,Actors,@TaySchilling,"RT @MajoritySpeaks: ""Your singular truth, your most individual story, is what's valuable."" - Taylor Schilling introducing Jenji Kohan #What…" +05/19/2015,Actors,@TaySchilling,"RT @msmagazine: ""Jenji has always had a saying: 'If they don't like it, fuck em.'"" - Matthew Weiner introducing Jenji Kohan #WhatAFeministL…" +05/08/2015,Actors,@TaySchilling,♥️ https://t.co/dGgYVV9hrA +05/08/2015,Actors,@TaySchilling,Thank you Tasho https://t.co/0vCPVn3RZW +05/08/2015,Actors,@TaySchilling,#Overnight https://t.co/RH2ivdeSlF +05/07/2015,Actors,@TaySchilling,"Aw thanks Piper! (Come back to NYC, we miss you) https://t.co/9vkFlWgXeu" +05/06/2015,Actors,@TaySchilling,@Carrie_Rachel @CriticsChoice #portlandia 🎉🎉 +05/06/2015,Actors,@TaySchilling,@nlyonne @OITNB@LPToussaint @CriticsChoice @netflix @MichaelHarney4 @TheKateMulgrew @UzoAduba @Lavernecox @LauraPrepon @thedanieb @SheIsDash +05/06/2015,Actors,@TaySchilling,@LPToussaint @CriticsChoice 🙌💃 +05/06/2015,Actors,@TaySchilling,Yaaaaaay @OITNB #CriticsChoice https://t.co/dJJvUcfHxn +04/30/2015,Actors,@TaySchilling,"June 12th! I can't wait. Until then... +#OITNB #S3 #SorryNotSorry #SoSoon https://t.co/t96e9VZhgN" +04/28/2015,Actors,@TaySchilling,I had a wonderful experience with this. Thank you! https://t.co/7YTRE81VLb +04/23/2015,Actors,@TaySchilling,RT @WPA_NYC: One week from today! Will we see you at The Boathouse?? Tickets: http://t.co/1Txo7ue9qM http://t.co/6Hxnni8GcB +04/22/2015,Actors,@TaySchilling,@mikerocks13 @mradamscott @TribecaFilmFest yay! +04/21/2015,Actors,@TaySchilling,🙌 #TheOvernight https://t.co/Nn0VOyNWsv +04/21/2015,Actors,@TaySchilling,“@TalkStoopNBC: Thanks for STOOPing by @TaySchilling! This was a faux-llet to remember. http://t.co/Km45x5JRJP” Xoxoxox +04/21/2015,Actors,@TaySchilling,"RT @EW: .@TaySchilling, @MrAdamScott find 'parental bliss' in 'The Overnight' trailer: http://t.co/2dlsyjDfxB http://t.co/qf119w0eLm" +04/21/2015,Actors,@TaySchilling,"RT @mradamscott: Here's the first trailer for THE OVERNIGHT out June 19! +@TaySchilling @CoconutRecords @patrick_brice +http://t.co/AQYnp6vF88" +04/21/2015,Actors,@TaySchilling,"@JasonAllen127 @USATODAY was a real pleasure today, Jason!" +04/09/2015,Actors,@TaySchilling,"BRAVE Uz, I'm cheering for you. And donating. +Check out this video and lend some support! X + http://t.co/LlxQh7UWzQ" +04/08/2015,Actors,@TaySchilling,@bakedvause 13 +04/08/2015,Actors,@TaySchilling,@vausemanobs June 12th! (I'm excited too) +04/08/2015,Actors,@TaySchilling,@tardisofbones @morrillaswennn Happy Birthday! May all your wishes come true... +04/08/2015,Actors,@TaySchilling,@Halestorm54 thank you for watching! +04/08/2015,Actors,@TaySchilling,“@NextOnTCM: FONDA ON FONDA (1992) Jane Fonda recalls her father Henry's career. 11:30 PM ET [cc] #TCM” Love this. +04/04/2015,Actors,@TaySchilling,Happy Birthday @daniellethorpe_ ! I got you a puppy! (Look in your purse.) +03/27/2015,Actors,@TaySchilling,@kathrynnikols @OITNB @UzoAduba me tooooooo! +03/27/2015,Actors,@TaySchilling,@tardisofbones @badwolfs belated happy Bday! Hope all your wildest come true 💕 +03/27/2015,Actors,@TaySchilling,"""@vausemanobs:@TaySchilling still can't believe how wonderful a month in the country was!Looking forward to season 3!thank you for watching!" +03/27/2015,Actors,@TaySchilling,"""@TheG1rlWhoLived: @TaySchilling I just got accepted into Fordham university! Fellow rams?? :) Go Rams! Congratulations and enjoy!" +03/26/2015,Actors,@TaySchilling,"""@Jenna_PR: @OITNB Do you like the fanbook I made @TaySchilling? http://t.co/QXxL4XGK99…""thank you Jenna!" +03/20/2015,Actors,@TaySchilling,"""@thenarobinson: Can't believe that this sign is still relevant. http://t.co/zdcTAVS2cY"" #OtisByrd" +02/28/2015,Actors,@TaySchilling,So happy happy to see these friends @jonesarah @msjackiecruz at the closing of #amonthinthecountry… https://t.co/hFOBfC104R +02/28/2015,Actors,@TaySchilling,@mons0423 @classicstage it has been coooold! Thanks for coming :) +02/28/2015,Actors,@TaySchilling,@howironickylie @classicstage thank you for coming! +02/28/2015,Actors,@TaySchilling,@TinaTurnbowMUP thank you sweet T. Wonderful to have you there x +02/28/2015,Actors,@TaySchilling,@brianna_lynnnn Happy Birthday! +02/28/2015,Actors,@TaySchilling,Last performance of #aMonthInTheCountry this afternoon. Thank you @classicstage. It has been thrilling. +02/28/2015,Actors,@TaySchilling,RT @classicstage: Only two performances left of A MONTH IN THE COUNTRY! http://t.co/9ja5qkXapo +02/27/2015,Actors,@TaySchilling,Ferocious and firey @Sleater_Kinney amazing show last night @Carrie_Rachel @corintuckerband @jazzzhand +02/11/2015,Actors,@TaySchilling,I love my new t-shirt. @ReproRights #waronwomen http://t.co/xRReDxAUUf http://t.co/hDDRZzVBTk +02/08/2015,Actors,@TaySchilling,RT @BlackBook: From Most Terrifying Moments to Hottest New Stars: 10 #Sundance Moments That Have Us Talking http://t.co/OE3cvTxGGJ http://t… +02/08/2015,Actors,@TaySchilling,Patricia Arquette Grows Into ‘Boyhood’ http://t.co/w0BcnHZhrE via @nytvideo do I love this lady. +02/05/2015,Actors,@TaySchilling,RT @RoadsBestTravel: Added to the list of reasons why #iheartny: #AMonthInTheCountry @classicstage starring @TaySchilling & #peterdinklage … +02/05/2015,Actors,@TaySchilling,"You made my night x""@selenis_leyva: You need to see @TaySchilling and this amazing cast!! My Blanca!! #Amazing http://t.co/By0Heyj4t1""" +02/04/2015,Actors,@TaySchilling,RT @patrick_brice: HOLY MOLY! THE OVERNIGHT is headed to @sxsw! Congrats @orchtweets @mradamscott @Judith_Godreche @TaySchilling http://t.c… +01/31/2015,Actors,@TaySchilling,@joelmgarland @classicstage so good to see you tonight x +01/26/2015,Actors,@TaySchilling,Congratulationssss to @UzoAduba and the entire utterly brilliant cast of #oitnb on the @SAGawards +01/23/2015,Actors,@TaySchilling,@nlyonne @MarinIreland ❤️ +01/20/2015,Actors,@TaySchilling,RT @KellyandMichael: #OITNB's #TaylorSchilling! #KellyandMichael http://t.co/Iv8I3OwL1t +01/20/2015,Actors,@TaySchilling,Getting ready for silliness with @kellyandmichael #AMonthInTheCountry http://t.co/NXVH71wDGS +01/20/2015,Actors,@TaySchilling,@patrick_brice @mradamscott @coconutrecords #TheOvernight http://t.co/PoDrrRvjGR +01/04/2015,Actors,@TaySchilling,"""Everybody needs to be understood."" http://t.co/nFEMn5X860" +06/28/2018,Actors,@LauraPrepon,#ThrowbackThursday to some of my fav #OITNB Vause promo shots. 🍊Can’t wait for you guys to see season 6! https://t.co/8VwLVUPq6w +06/25/2018,Actors,@LauraPrepon,Fresh sugar snaps from the farmers market. Another cooking trick my mother taught me: pull the strings off before s… https://t.co/pukBRGT9Y4 +06/21/2018,Actors,@LauraPrepon,My friend @ambertamblyn wrote a powerful novel that made Vanity Fair's Ultimate Fiction List. Pre-order it today:… https://t.co/6ZPzMeH14e +06/18/2018,Actors,@LauraPrepon,"Yogurt Parfaits for breakfast this AM. SO easy to make. I love to use grassfed plain yogurt, gluten free banana gra… https://t.co/6kYz5yJt9M" +06/15/2018,Actors,@LauraPrepon,Thanks @Variety for including me in this piece on directing! #FemaleFilmmakerFriday https://t.co/GRiKFGapOe +06/13/2018,Actors,@LauraPrepon,Moms ask me how I have time to make baby food everyday… This is a great tool—it steams & blends like a food process… https://t.co/U9EXvi0N67 +06/09/2018,Actors,@LauraPrepon,"Honored to be part of LGBTQ Pride in Warsaw, Poland. #OITNB https://t.co/c1YcFopIFG" +06/08/2018,Actors,@LauraPrepon,"RT @StopThePig: @LauraPrepon @netflix A huge billboard in Warsaw, Poland for the Equality Parade (9/06)! @ParadaRownosci https://t.co/xBsQt…" +06/08/2018,Actors,@LauraPrepon,"This #Vause temp tattoo is going to be part of @Netflix’s Pride Celebration in Warsaw, Poland tomorrow! The… https://t.co/lKoNwGM9pk" +06/07/2018,Actors,@LauraPrepon,"A new movie, @heartsbeatloud - from the director of THE HERO, @brettghaley, and one of my amazing co-stars,… https://t.co/I3jOSF8Aoy" +06/05/2018,Actors,@LauraPrepon,"Bye Bye, Litchfield. Hello, #OITNBs6 - coming July 27. 🍊#OITNB https://t.co/MaHeT2C2ko" +06/05/2018,Actors,@LauraPrepon,"RT @OITNB: Bye bye, Litch. https://t.co/Y9tWQtIO37" +06/05/2018,Actors,@LauraPrepon,What I’m cooking for Ella today: fresh greens from the farmers market. Basil is finally here! Purple sweet potato &… https://t.co/2xnCYBsjC3 +06/03/2018,Actors,@LauraPrepon,Just Married! Thank you for all the love and support. Wishing all of us the good stuff! https://t.co/0UrrQbZ6D5 +05/31/2018,Actors,@LauraPrepon,Waiting for #OITNB season 6 like… https://t.co/xi09xmOPCv +05/30/2018,Actors,@LauraPrepon,My newest fav product are these great biodegradable sandwich bags! I always need things for food storage and most s… https://t.co/a51lTfGvLu +05/24/2018,Actors,@LauraPrepon,This is great opportunity for aspiring female filmmakers: @att @hellosunshine Filmmaker Lab from @FreshFilmsDT will… https://t.co/qAE4eaEtuz +05/22/2018,Actors,@LauraPrepon,Miniature spaghetti Bolognese for the 👶🏼. My mother always taught me presentation is very important! ;) https://t.co/C14DVs5rrX +05/19/2018,Actors,@LauraPrepon,Had a great time talking about last season of #OITNB with my #orangefamily last night. ❤️🍊 Can’t wait for you to se… https://t.co/oT22ULBTdD +05/17/2018,Actors,@LauraPrepon,"I was lucky enough to discover this restaurant during #Cannes2018, Le Maschou. You make your own salad, then watch… https://t.co/RY222Ki1el" +05/16/2018,Actors,@LauraPrepon,"If anyone needs me, I’ll be right here on the #FrenchRiviera. #Cannes2018 https://t.co/m5MjsBlgeM" +05/14/2018,Actors,@LauraPrepon,I spent my first official #MothersDay in Cannes! Happy belated Mother’s Day to all you bad-ass moms out there! Than… https://t.co/egBf91uCIh +05/12/2018,Actors,@LauraPrepon,#FlashbackFriday to drinking #TheStashPlan broth while warming up during our winter scenes! Congrats to everyone wh… https://t.co/TUUHkYmzpR +05/10/2018,Actors,@LauraPrepon,#ThrowbackThursday to directing my first episode of #OITNB. Looking forward to getting back behind the camera. https://t.co/Isbhk4W4RF +05/08/2018,Actors,@LauraPrepon,"Current obsession - trying to perfect my at-home latte. Any baristas out there? Advice welcome! Also, favorite coff… https://t.co/4XLb3rOufK" +05/03/2018,Actors,@LauraPrepon,#ThrowbackThursday to having a great time on the red carpet with @TaySchilling for #OITNB! Love my #orangefamily. 🍊… https://t.co/k6hkV4C5JI +05/02/2018,Actors,@LauraPrepon,"I like prepping & cooking chicken with big chicken sheers. Then, I can cut and check to make sure they are fully co… https://t.co/w0zBgFP4dJ" +04/29/2018,Actors,@LauraPrepon,"RT @ArthurKade: .@LauraPrepon joined me on the show for a terrific one on one about her cookbook #TheStashPlan, new season of @OITNB, direc…" +04/26/2018,Actors,@LauraPrepon,"#ThrowbackThursday to fishing in Cape May, NJ when I caught my first porgy. Looking forward to the nice weather so… https://t.co/mwPS0YRC7M" +04/24/2018,Actors,@LauraPrepon,It’s finally starting to feel like spring in NYC! Fresh basil and tulips from the farmers market. 🌷🌷 https://t.co/GF7FTnHTG9 +04/19/2018,Actors,@LauraPrepon,"RT @ArthurKade: Wonderful chat with @lauraprepon about #TheStashPlan, season 6 of @OITNB, becoming a mother and her #MothersDay plans, her…" +04/19/2018,Actors,@LauraPrepon,RT @thebrooklynmom: Excited to speak to @LauraPrepon today at the @themoms Mamarazzi event about #TheStashPlan book out in paperback follo… +04/19/2018,Actors,@LauraPrepon,"Post workout, pre-coffee / +post-coffee, post glam - thanks to Dayna Goldstein (hair) & Victor Henao (makeup) for ma… https://t.co/dQmVbTFhfa" +04/19/2018,Actors,@LauraPrepon,"RT @themoms: Get ready to take the 21 Day challenge to shed weight, feel great and take charge of your health with .@LauraPrepon #StashPlan…" +04/18/2018,Actors,@LauraPrepon,"Between baby, laundry, & work, getting to a cycle class (one of my fav workouts) is tough. I started to make my own… https://t.co/4UtuesiHxX" +04/17/2018,Actors,@LauraPrepon,"RT @JohnFugelsang: Today on @SXMInsight we’re airing my conversation with @lauraprepon on her excellent new book, and other matters, and it…" +04/17/2018,Actors,@LauraPrepon,So great seeing how you guys are doing on #TheStashPlan challenge! Keep sending pics of what you’re making - I love… https://t.co/SyaLnKlEPY +04/13/2018,Actors,@LauraPrepon,"RT @TouchstoneBooks: FWIW, @LauraPrepon was way ahead of the curve on bone broth. Why not make some this weekend? https://t.co/NwfdtFsEkk" +04/12/2018,Actors,@LauraPrepon,RT @JILLFRITZO: ICYMI: @LauraPrepon was om @thechew yesterday cooking up Springtime favorites! https://t.co/Ya8l1UtKAX +04/12/2018,Actors,@LauraPrepon,#ThrowbackThursday to #That70sShow on @TVGuide. PS - Such fond memories from that show! Not so much of polyester an… https://t.co/oYUONEz2Fy +04/11/2018,Actors,@LauraPrepon,RT @thechew: .@LauraPrepon dishes on Season 6 of #OrangeistheNewBlack! #OITNB #TheChew https://t.co/N0MUKNyPlv +04/11/2018,Actors,@LauraPrepon,"RT @thechew: .@lauraprepon's Poached Halibut will be one of the easiest dishes you'll ever make! Not to mention, there is hardly any clean-…" +04/11/2018,Actors,@LauraPrepon,"RT @thechew: OMG WE ARE SO EXCITED!! Also, she’s cooking up one of the easiest dishes EVER! 😍 https://t.co/JAYswYKhlw" +04/11/2018,Actors,@LauraPrepon,Watch me today on @thechew at 1pm! Always love hanging and cooking with these guys. https://t.co/wJ92QVxzwK +04/09/2018,Actors,@LauraPrepon,@sarah_bruty You can add water to that when reheating. Next time try using more water and on LOW. Every slow cooker… https://t.co/t5527DMgCa +04/09/2018,Actors,@LauraPrepon,"@sarah_bruty When that’s happened with me in the past, next time I added more water. You didn’t mess anything up! T… https://t.co/tJZk2MIMvA" +04/09/2018,Actors,@LauraPrepon,"New baby food combo I’m trying, mixing in greens with Japanese Yams. The yams are sweet and help to make spinach mo… https://t.co/sbVyi52biZ" +04/06/2018,Actors,@LauraPrepon,RT @ABC_Publicity: New Release: ABC’s @thechew Is Serving Up Food That Makes You Go ‘MMMMM!’ All Week Long With Guests @iamcamilaalves McCo… +04/05/2018,Actors,@LauraPrepon,#ThrowbackThursday to filming one of my favorite #OITNB episodes with @loripetty! I talked about it on Facebook Liv… https://t.co/dlqOOtT1ms +04/04/2018,Actors,@LauraPrepon,"RT @LiveKellyRyan: Bone Broth is good for leaky gut repair, looking and feeling young, and better sleep. For recipe: https://t.co/fvyC7BDAl…" +04/03/2018,Actors,@LauraPrepon,RT @LauraVogel: Producing a Facebook Live session for @lauraprepon’s #TheStashPlan paperback release with @catgreenleaf! Check out Laura’s… +04/03/2018,Actors,@LauraPrepon,RT @JILLFRITZO: ICYMI: @LauraPrepon was on Live with Kelly & Ryan talking #StashPlan https://t.co/az5WbDNaRl +04/03/2018,Actors,@LauraPrepon,RT @RyanSeacrest: Bone broth is the new black @lauraprepon https://t.co/QmPpOGNlNH +04/03/2018,Actors,@LauraPrepon,Watch me live on @LiveKellyRyan NOW! Thanks to my glam squad Dayna Goldstein (hair) & Victor Henao (makeup).… https://t.co/RqytCkxdVA +03/31/2018,Actors,@LauraPrepon,Come hang with me on Tuesday at 2pm EST! I’ll be doing a Facebook Live Q&A about #TheStashPlan with @CatGreenleaf.… https://t.co/qCuZ2PSr6u +03/30/2018,Actors,@LauraPrepon,"In between work and baby, it’s so easy to make excuses to skip working out. Make it work however you can! For me th… https://t.co/JxeyIlNyIH" +03/29/2018,Actors,@LauraPrepon,"Testing out a new stir fry recipe! Base sauce: bone broth, garlic, shallots, Braggs amino acids, a little farm fres… https://t.co/S3FkGNzBqB" +03/22/2018,Actors,@LauraPrepon,Looking ahead to some nicer weather in NY! Spring is out there somewhere… #tbt #ThrowbackThursday https://t.co/9doy88W2jg +03/21/2018,Actors,@LauraPrepon,It’s the first time I’m holding #TheStashPlan in paperback! So exciting to finally have it in-hand. It’s an honor t… https://t.co/xkh9Tigsr6 +03/20/2018,Actors,@LauraPrepon,"Just saw @TheNewGroupNYC’s “Good for Otto” and it was unbelievable. If you’re in NYC, I highly suggest checking it… https://t.co/ctPp9DlBl8" +03/15/2018,Actors,@LauraPrepon,I want these in my size. #laundryday ❤️💫 https://t.co/UQYoahKBRK +03/12/2018,Actors,@LauraPrepon,#TheStashPlan is coming out on paperback! Have you pre-ordered your copy? Make sure you have it in time for the cha… https://t.co/KSzCFQFRRX +03/08/2018,Actors,@LauraPrepon,Search interest in “female directors” was 30% higher in 2017 than in 2016 in the US. See more #IWD2018 trends at… https://t.co/lavb5UGAJ5 +03/08/2018,Actors,@LauraPrepon,Thanks for all the birthday wishes and messages!! +03/06/2018,Actors,@LauraPrepon,Exciting news! #TheStashPlan is coming out in paperback on April 3! We’re also doing a new 21 day challenge startin… https://t.co/W8qD51BBvv +03/05/2018,Actors,@LauraPrepon,I have some exciting #TheStashPlan news to share with you tomorrow… stay tuned! +02/28/2018,Actors,@LauraPrepon,"Even while out of town, I make a nutritious broth to nourish my family. I’ll cook most things in it for nutrients a… https://t.co/xe3YDKxkmM" +02/27/2018,Actors,@LauraPrepon,Morning coffee with the Pacific. https://t.co/W28fiWWZVp +02/20/2018,Actors,@LauraPrepon,Hope everyone had a great long weekend! A must for new parents—a staycation! First time for me. Didn’t realize how… https://t.co/IE7o5n8I9p +02/15/2018,Actors,@LauraPrepon,#ThrowbackThursday to hanging with @chelseahandler while shooting @NBCChelsea! #tbt https://t.co/7o0FsrZrbB +02/14/2018,Actors,@LauraPrepon,A pot full of organic bones makes my week! Nourishing my family with ancient ways. People have been stewing bones f… https://t.co/FXClqEcnyM +02/09/2018,Actors,@LauraPrepon,I love a change! Finished filming #OITNB for the season and chopped off the locks. https://t.co/CwImDZrHQk +02/08/2018,Actors,@LauraPrepon,Last day shooting #OITNB season 6 with my beautiful co-star. Until the next one! #orangefamily 🍊❤️ https://t.co/9nXr4mKUna +02/05/2018,Actors,@LauraPrepon,"This is my infrared sauna. It’s amazing for detox, inflammation, & overall revitalization. It helps me stay healthy… https://t.co/ArVrhZbF5H" +02/02/2018,Actors,@LauraPrepon,Directing my first short film. Thankful for the opportunity to grow as a director and for my mentors along the way.… https://t.co/Nzp54oYlxl +01/30/2018,Actors,@LauraPrepon,"Filming in the snow again. I’m an east coast girl, but filming in Hawaii sounds gooood.💁🏻‍♀️❄️😅 https://t.co/QqtwQAPKJY" +01/26/2018,Actors,@LauraPrepon,Picking up fresh veggies at the farmers market. Have you tried any fun dishes recently? Need some ideas for dinner…… https://t.co/TxexziF4Jo +01/24/2018,Actors,@LauraPrepon,Just wrapped directing this episode of #OITNB. Can’t wait for you guys to see next season! https://t.co/fUfRizoQaG +01/18/2018,Actors,@LauraPrepon,#ThrowbackThursday to directing these amazing ladies last year during Season 5 of #OITNB 🍊❤️ #tbt #orangefamily https://t.co/OLzS4bVzwA +01/16/2018,Actors,@LauraPrepon,Back behind the camera directing #OITNB! Love our amazing #orangefamily! ❤️🍊 https://t.co/RSGpkYctCF +01/13/2018,Actors,@LauraPrepon,"#OITNB doesn’t feel like work, even on a weekend. Gotta love what you do! #orangefamily https://t.co/JLoVaphwkq" +01/11/2018,Actors,@LauraPrepon,#ThrowbackThursday to my mom looking gorgeous behind the camera. Directing runs in the family ❤️ #TBT https://t.co/PYxtBkquID +01/07/2018,Actors,@LauraPrepon,"The past few days may be some of the coldest weather NYC’s ever had, but luckily it’s still warmer than the top of… https://t.co/mUiQgZkdMU" +01/05/2018,Actors,@LauraPrepon,RT @CSiriano: Loved this #goldenglobe moment with the beautiful @LauraPrepon in custom Siriano looking amazing! #TBT #glamour #awardseason… +01/01/2018,Actors,@LauraPrepon,"Time's up on silence. Time's up on waiting. Time's up on tolerating discrimination, harassment, and abuse. #TimesUp… https://t.co/vgbjnZr0Wd" +12/30/2017,Actors,@LauraPrepon,Never get tired of my recipes from #TheStashPlan. They really are my favorites! Making the quinoa tabbouleh today. https://t.co/3yCUS7tSnV +12/21/2017,Actors,@LauraPrepon,#ThrowbackThursday to Christmas last year with my nephew! I hope everyone has a wonderful holiday! #TBT https://t.co/wwSsO9xO21 +12/19/2017,Actors,@LauraPrepon,You can take the girl outta Jersey but you can’t take Jersey outta the girl . . . just got a cheetah print baby bla… https://t.co/4XqKCeXlom +12/14/2017,Actors,@LauraPrepon,So happy we got nominated again for the #SAGAwards Outstanding Performance by an Ensemble in a Comedy Series! And c… https://t.co/Sn57vIq4ux +12/11/2017,Actors,@LauraPrepon,We had the first snow of the season this weekend - guess I won’t be this hot anytime soon… #OITNB https://t.co/i5WDxe6Egr +12/07/2017,Actors,@LauraPrepon,#ThrowbackThursday to @NBCChelsea with my girl @AliWong who you can now see killing it on @AmericanWifeABC. #TBT https://t.co/BkuPT6nUTf +12/05/2017,Actors,@LauraPrepon,"With a busy schedule, falling behind on laundry, and an early call time - sometimes you gotta resort to using your… https://t.co/BP2ZVaNZqS" +12/01/2017,Actors,@LauraPrepon,Made some homemade granola for breakfast. A cool trick is to toss in an egg white before baking for golden color an… https://t.co/HbmZWkJxn8 +11/29/2017,Actors,@LauraPrepon,Always love hanging with my girl @TaySchilling! Hard at work on season 6 with my partner in crime. #OITNB… https://t.co/pIAoLRnT47 +11/22/2017,Actors,@LauraPrepon,Thanks for all the tips! You guys are the best. Hope everyone has a great Thanksgiving! +11/20/2017,Actors,@LauraPrepon,Having a little trouble with the new crib… Any tips on traveling with a newborn so I can avoid stuff like this?!… https://t.co/wylinGUhEY +11/18/2017,Actors,@LauraPrepon,"My girl @ambertamblyn released a collection with @mysisterorg to fight assault, exploitation, and trafficking. 25%… https://t.co/xRUeZNsy2J" +11/17/2017,Actors,@LauraPrepon,"#fbf to my press tour for #TheStashPlan… If you haven’t checked it out yet, you can learn more about my first book… https://t.co/jR18ofzBMR" +11/14/2017,Actors,@LauraPrepon,"Coffee shops might not be open in time for my early #OITNB call time, but luckily my own organic cold brew moonshin… https://t.co/5kp4vMe6s5" +07/01/2017,Actors,@LauraPrepon,Love this BTS pic of me and #samelliott from @theheromovie17 ---it's out nationwide now. very… https://t.co/xwUipAoAaQ +06/21/2017,Actors,@LauraPrepon,@theheromovie17 heads to more cities across the US this Friday!!! https://t.co/CHOdrlGl2S +06/20/2017,Actors,@LauraPrepon,Loved directing these amazing actors and actresses on @oitnb!! Look forward to the next one!… https://t.co/TImNkvN8ug +06/10/2017,Actors,@LauraPrepon,About last night! @oitnb Premiere event NYC. Thank you @josueperezhair for my locks! and… https://t.co/NlKINmn86t +06/09/2017,Actors,@LauraPrepon,@TheHeroMovie is now playing in NY & LA! Opens nationwide this June/July. Get tickets now: https://t.co/eDWXAKPmwO https://t.co/o2nTmGPMF1 +06/09/2017,Actors,@LauraPrepon,Season 5 of #oitnb is now streaming!!!!!!! https://t.co/PAYbDvioXO +06/09/2017,Actors,@LauraPrepon,Thank you @nytimesphoto for making us a Critic's Pick!!! @theheromovie17 ❤️ https://t.co/JgaJRWuNA4 +06/08/2017,Actors,@LauraPrepon,I WILL be strong! #oitnb @oitnb #june9th #alexvause https://t.co/ad7NhIfeQ1 +06/08/2017,Actors,@LauraPrepon,1 more day! The Hero on the big screen! @theheromovie opens NY/LA TOMORROW & nationwide in June/July! GET TICKETS:… https://t.co/mYCulKvehx +06/08/2017,Actors,@LauraPrepon,About to get my @siriusxm game on! 🤰🏻💞let's talk @theheromovie17 and @oitnb !! https://t.co/aYX28iYUvV +06/08/2017,Actors,@LauraPrepon,En route to @LiveKelly 🍓🍓🍓Breakfast of champions! @theheromovie17 @oitnb https://t.co/JgwLlMKVB8 +06/08/2017,Actors,@LauraPrepon,About last night! @theheromovie17 NYC. I hope you guys this special movie! thank you for my… https://t.co/12oRBd6p5O +06/06/2017,Actors,@LauraPrepon,Join me and Brett Haley for a special opening weekend of Q&A's! Get tickets now: https://t.co/eDWXAKxL8e https://t.co/OU60zEExwp +06/01/2017,Actors,@LauraPrepon,Jumpin for jumpsuits with @instyle #oitnb @OITNB https://t.co/asRVApj1DW +05/16/2017,Actors,@LauraPrepon,Season 5!! Comin' atcha June 9th! @oitnb #alexvause 😈 https://t.co/75BcbwzyHp +05/12/2017,Actors,@LauraPrepon,Go to manueladtla and check out this awesome event one of my fave chefs is doing. It supports… https://t.co/GZD9CyPKTR +05/12/2017,Actors,@LauraPrepon,Love this shot of @brettghaley and I going over a scene together. He taught me how to read… https://t.co/6RFlaE0WlP +05/09/2017,Actors,@LauraPrepon,Enough is enough. Get ready for June 9th! @OITNB #netflix #season5 https://t.co/KM4v1k7ytu +05/08/2017,Actors,@LauraPrepon,@oitnb season 4 is avail tmrrw to own on blueray and DVD! https://t.co/fkhPUN0wnc +05/07/2017,Actors,@LauraPrepon,Awesome fan art! #bestfansever @oitnb #season5 June 9th!! https://t.co/40W4aofK5N +04/20/2017,Actors,@LauraPrepon,Can't wait for you guys to hang out with Charlotte on June 9th!! She's pretty cool. 😁❤😎… https://t.co/Flmzi43ipU +04/17/2017,Actors,@LauraPrepon,"The trailer for @theheromovie17 is here! Very excited for you all to see this film! +https://t.co/V6xCgifdkw" +04/12/2017,Actors,@LauraPrepon,First 60 second tease of Season 5! @oitnb #season5 #june9 https://t.co/MlQQjmoJpX +04/11/2017,Actors,@LauraPrepon,Our official poster for theheromovie Can't wait for you guys to see it! Comes out same day as… https://t.co/n7nr7afdXq +04/02/2017,Actors,@LauraPrepon,Nothing says Springtime like tulips! thank you @thebouqsco for my beautiful spring flowers!… https://t.co/odBAAS1zJE +02/04/2017,Actors,@LauraPrepon,"""Sorry John...I don't remember."" #pokerdayz #johnnychan #daysofrounders https://t.co/HuyuDMrqqT" +01/30/2017,Actors,@LauraPrepon,Woohoo!!! Congrats to all of my beautiful co-stars!!! @oitnb #ladiesoflitchfield #orangefamily 🍊🍊❤ https://t.co/qJsATQ8DNJ +01/23/2017,Actors,@LauraPrepon,Spotlight Award. creativecoalition So honored. #sundance2017 #charlotte #thehero ☺☺❤🎥 https://t.co/n738rQOjC4 +01/23/2017,Actors,@LauraPrepon,Honored to receive the Spotlight award for THE HERO. Thank you creativecoalition for this!!!… https://t.co/JgtAXu0yW2 +01/22/2017,Actors,@LauraPrepon,#cappuccinoart 😊🙊 https://t.co/kI8qknYna8 +01/22/2017,Actors,@LauraPrepon,There's always a first for everything. A talented barista put my face on a cappuccino. 😊☺☕️☕️… https://t.co/0pS1gEsj41 +01/22/2017,Actors,@LauraPrepon,"Sundance close-ups, behind the scenes. thanks @tinaturnbowmup and jonathan_colombini for my snow… https://t.co/71O5V91wVI" +01/22/2017,Actors,@LauraPrepon,Behind the scenes! Press day THE HERO. #sundance2017 📷@tinaturnbowmup https://t.co/9EgWasxxOB +01/22/2017,Actors,@LauraPrepon,Press day for THE HERO! #sundance2017💕 📷@TinaTurnbowMUP https://t.co/66s9Nyul4Z +01/22/2017,Actors,@LauraPrepon,Premiere went great!! So happy to be a part of this movie. thank you @sundanceorg for having us in competition!!… https://t.co/xwpHFOYPSe +01/22/2017,Actors,@LauraPrepon,Premiere of THE HERO at @sundanceorg snow glam: @tinaturnbowmup and @jonathan_colombini ❄❄❄💓🎥 https://t.co/7dGfSA5YrA +01/22/2017,Actors,@LauraPrepon,About to head to the premiere of The Hero. Can't wait to see it! Sundance glam squad: @jonathan_colombini… https://t.co/1EOKXwcFx7 +01/22/2017,Actors,@LauraPrepon,"Women's March, Sundance. #womensrightsarehumanrights https://t.co/gnFQRvJhtM" +01/22/2017,Actors,@LauraPrepon,"""I can't believe we still have to protest this $#it!"" Love, not hate--makes America great. #womensmarch… https://t.co/rPc9XJ1aET" +01/20/2017,Actors,@LauraPrepon,Sundance here we come! Very excited and proud of this film. thank you @variety for listing us as a #mustsee 🎬🎥💓 https://t.co/kV0oKPJ5SI +12/14/2016,Actors,@LauraPrepon,Thank you @hollywoodreporter !! #BestTVof2016 https://t.co/MVQ2Rv2pnu +12/14/2016,Actors,@LauraPrepon,Congrats 2 my amazing co-stars!! Another @sagawards nom for best ensemble! & congrats to @uzoaduba on her nom!!… https://t.co/GauB7PdRIg +11/15/2016,Actors,@LauraPrepon,Directing my beautiful co-stars. What a gift and it's not even Xmas.🙌🏻💓 @TaySchilling 📸@nlyonne !! #alexandpiper https://t.co/tAyN5jRIK4 +11/15/2016,Actors,@LauraPrepon,So proud 2 be directing @oitnb ! Cast & crew r incredible & supportive Can't wait 4 u guys 2 see it! luv my 🍊fam!🎬… https://t.co/lJY9Qayadj +10/26/2016,Actors,@LauraPrepon,"Celery Root, which is a fave of mine. Roast w/olive oil, salt n pepper. #farmtotable #realveggies #healthy… https://t.co/z8PyLMp1Ti" +10/21/2016,Actors,@LauraPrepon,Awesome drawing @giulia_sabet !! #faf #ointb #alexvause #orangefamily #alexlookssoglam https://t.co/R5HNNmBAmD +10/17/2016,Actors,@LauraPrepon,My girls rock! #orangefamily #thestashplan #supportingoursisters #farmtotable #healthy #hottie @MsJackieCruz https://t.co/8Di7OcUC05 +10/17/2016,Actors,@LauraPrepon,"The streets, the buildings, it's all so...perfetto 👏🏻💗 #italy #stillloveit https://t.co/GiHmRbRmhK" +10/14/2016,Actors,@LauraPrepon,#faf. This piece is so cool! Thank you for drawing Alex Débora Paim #alexvause #ointb #coolart 🙏🏻 https://t.co/m2c5wOE9Qz +10/13/2016,Actors,@LauraPrepon,The art is everywhere in Italy! #italia #muruals https://t.co/a0qXvnd0nC +10/12/2016,Actors,@LauraPrepon,Gelato alla Florence mi amore #italy #hadtogetgelato #sogood https://t.co/X3CsXfLqyq +10/11/2016,Actors,@LauraPrepon,Happiness. Italy. yes please.🌹🌹🌹 https://t.co/Awzkn5uGfc +10/11/2016,Actors,@LauraPrepon,"Happiness, taking in the beauty of Florence. ❤️💋🌹 https://t.co/xPKcJsjOPu" +10/11/2016,Actors,@LauraPrepon,"Florence, ti amo! #Poseidon #fountain #vivaleflorence https://t.co/Tsw5504NQG" +10/08/2016,Actors,@LauraPrepon,Shoutout 2 🍊 girls Talented ladies! @uzoaduba #americanpastoral @thedanieb @lanebryant @nlyonne #antibirth… https://t.co/jBpgmGuGl5 +10/07/2016,Actors,@LauraPrepon,backstage @todayshow #TheGirlOnTheTrain https://t.co/g1XZfcvqzC +10/05/2016,Actors,@LauraPrepon,#GOTT #Premiere! TY glam: @tinaturnbowmup @josueperezhair @nhakahn @forevermarkdiamonds @hellinkay 4 my look!… https://t.co/uzSonxwglz +09/09/2016,Actors,@LauraPrepon,Wow! @bsammy2010 this is dedication! ❤️ #goals #motivation #FanFriday https://t.co/MVwkyyHabK +09/06/2016,Actors,@LauraPrepon,A much needed getaway! Peaceful weekend on the water in Maine! https://t.co/R51O3ijGLG +09/02/2016,Actors,@LauraPrepon,Love this dope piece of #fanart I found on s.m.i.m.i @instagram page! https://t.co/e3RVgmNVNB +08/22/2016,Actors,@LauraPrepon,Picked up a new Xmas ornament while visiting New Mexico! #spicysanta #nevertooearlyforxmas https://t.co/8MekI2F86j +08/19/2016,Actors,@LauraPrepon,Love seeing your #fanstashes! Keep 'em coming! #fanfriday #thestashplan #cleaneating #allaboutthatbroth 📷:@runtx79 https://t.co/M65nBWOhhZ +08/16/2016,Actors,@LauraPrepon,"Check out this beautiful video, directed by #benfoster https://t.co/uxrqdZrQfb #loveisloveisloveislove @emilywellsmusic @NoiseyMusic" +08/13/2016,Actors,@LauraPrepon,My current read 📖 Fascinating explanations by @drjoshaxe about auto immune and digestive issues #eatdirt #healing https://t.co/pkQFPi491P +08/13/2016,Actors,@LauraPrepon,"Fresh basil and heirloom tomatoes, yum! #farmfresh #summermarket https://t.co/KeFy0v8m8b" +08/12/2016,Actors,@LauraPrepon,Just a little #FBF #FanArt 😛 📷 by @lyle_o_art #that70sshow #fanartfriday https://t.co/DAz7BdGDAb +08/11/2016,Actors,@LauraPrepon,"Running out the door to get on set for @OITNB Sorry I haven't been ""social"" my schedule is crazy! Miss you guys! 💋😜" +08/05/2016,Actors,@LauraPrepon,Love that this #fanart was hand drawn!! 📷: @xbooshbaby #FanArtFriday https://t.co/bRN7l6KkZL +08/03/2016,Actors,@LauraPrepon,Who did you get? #wedhookupshiv @OITNB https://t.co/tzhjtWoqZt +07/28/2016,Actors,@LauraPrepon,@girlontrainfilm hits theaters Oct. 7th!! Check out the latest trailer https://t.co/qASCFr9mf8 +07/19/2016,Actors,@LauraPrepon,Find out why #IAmAMogul & why I believe EVERY woman can be a @onMogul https://t.co/5ciDHByj01 https://t.co/U6LtqogZkZ +07/15/2016,Actors,@LauraPrepon,Check out this awesome #fanart! Love it! #fanartfriday #fanfriday https://t.co/02hh7yTBHt +07/04/2016,Actors,@LauraPrepon,Caught my first weakfish! #deepseafishing #myhappyplace https://t.co/gwuywuKwuq +06/30/2016,Actors,@LauraPrepon,Be ‘Like a Vause’ & snag this tee that supports The Lowline in NYC! Get yours https://t.co/6YnJJUDmog @lowlinenyc https://t.co/9LSN1W6WyJ +06/29/2016,Actors,@LauraPrepon,"This cracks me up! @OITNB @sesamestreet @HBO #Orangeisthenewsnack +https://t.co/Nc8GchisI2" +06/28/2016,Actors,@LauraPrepon,#TimesTalks @nytimes @OITNB @TheKateMulgrew @UzoAduba @thedanieb @nlyonne @TarynManning @TaySchilling @samirawiley https://t.co/PyJkLN5Xub +06/28/2016,Actors,@LauraPrepon,Why thank you ☺️ https://t.co/p69CGoMJ9v +06/26/2016,Actors,@LauraPrepon,Cheers @TaySchilling Here's to us! @OITNB #OITNB #Season4 @netflix https://t.co/QG5MnN3dCD +06/24/2016,Actors,@LauraPrepon,Thank you so much for all the questions #AskOrange Till next time. Have a wonderful rest of your day!! 😊🎉😋🤓 +06/24/2016,Actors,@LauraPrepon,It's absolutely awful! NO person should be in fear of their lives because of who they love!! https://t.co/ERYeGXmEx2 +06/24/2016,Actors,@LauraPrepon,📚💡👓👩‍❤️‍👩 I don't think she could pick one https://t.co/0fvjgRNrNm +06/24/2016,Actors,@LauraPrepon,"Always black, seasonally white https://t.co/aZFaFQYDLU" +06/24/2016,Actors,@LauraPrepon,They are both so different and at such different stages of my life and career. I honestly could not compare them. https://t.co/1TJkKP9oRE +06/24/2016,Actors,@LauraPrepon,Yep https://t.co/iFjYTKk7BX +06/24/2016,Actors,@LauraPrepon,Thank YOU for watching! https://t.co/wUYQxWsZ00 +06/24/2016,Actors,@LauraPrepon,It's not easy! She's so damn good and so funny. Love working with her!! https://t.co/orLeh6rcVB +06/24/2016,Actors,@LauraPrepon,Brilliant https://t.co/B8CpodZZLH +06/24/2016,Actors,@LauraPrepon,You used my full name! Don't scare me like that. 😳😁 https://t.co/6QDzvF0AeX +06/24/2016,Actors,@LauraPrepon,"A case, definitely! https://t.co/cC3sLhaZSY" +06/24/2016,Actors,@LauraPrepon,I wish I could help. But we have to shoot the show for you!! 😊 https://t.co/iQ9ATE06OZ +06/24/2016,Actors,@LauraPrepon,"We hear very little but it'll be incredibly awesome. Like all the seasons! It's Jenji, she'll keep us on our toes. https://t.co/B9BvIy9IGo" +06/24/2016,Actors,@LauraPrepon,"Not really, just do my work!!! 😊 https://t.co/uX5GfSb3Do" +06/24/2016,Actors,@LauraPrepon,It's awesome to work with people again from other shows! I got to work with a Chelsea cast mate season 3 as well!! https://t.co/mEirKP2THX +06/24/2016,Actors,@LauraPrepon,"I hope not, you never know what could happen though! https://t.co/0FOBItj6KM" +06/24/2016,Actors,@LauraPrepon,Cool!! https://t.co/k02jhsU2ZN +06/24/2016,Actors,@LauraPrepon,"Never, easy isn't Alex and Piper. https://t.co/G2Nq4uZpui" +06/24/2016,Actors,@LauraPrepon,They are two uber talented people! I always have a great time working with them. https://t.co/4AEOIJuQ9n +06/24/2016,Actors,@LauraPrepon,I have not seen that! https://t.co/I5OZdwC9z2 +06/24/2016,Actors,@LauraPrepon,I personally have 0 https://t.co/0vSQVgf5ks +06/24/2016,Actors,@LauraPrepon,Yep! https://t.co/G7gg8Ap8uZ +06/24/2016,Actors,@LauraPrepon,"The green house scene in episode 1 was brutal, incredible but a tough one. https://t.co/9s2NvYeKla" +06/29/2018,Actors,@UzoAduba,"On Saturday, show up. Wear white. Make your voice heard. Let us stand together, because families belong together.… https://t.co/A5UhJqLalx" +06/29/2018,Actors,@UzoAduba,"RT @papermagazine: ""There's something about the speed matched with the sense of control — it's a thrilling sport."" - @UzoAduba https://t.co…" +06/29/2018,Actors,@UzoAduba,Word. https://t.co/RMLA7C14B9 +06/29/2018,Actors,@UzoAduba,@wallyworld106 Thank you for this very sweet message(and profile pic!) Very grateful to bring this show to so many.… https://t.co/823tYsiemz +06/27/2018,Actors,@UzoAduba,"@michaelstrahan @LonnieChavis What a strong, smart and brave young man you are, @LonnieChavis Well done 👊🏿❤️💪🏿" +06/27/2018,Actors,@UzoAduba,RT @Heifer: Have you heard the news? @UzoAduba is our first Ambassador to Africa! This piece from @Refinery29 shares about Uzo and how she… +06/27/2018,Actors,@UzoAduba,An honor. https://t.co/XvTRMj2nuB +06/27/2018,Actors,@UzoAduba,So PROUD. #ProudToBU @Ocasio2018 https://t.co/yPzAXECBJi +06/24/2018,Actors,@UzoAduba,"“Power is killing.” -My mother, an immigrant" +06/22/2018,Actors,@UzoAduba,"Go, #SuperEagles!!!! SOAR!!!!!!! #WorldCup #ProudlyNigerian @FIFAWorldCup @NGSuperEagles https://t.co/XN9CBToCbh" +06/22/2018,Actors,@UzoAduba,"Come on, Super Eagles!! Soar!!!! 🇳🇬🦅🇳🇬 #WorldCup2018 #TeamNigeria" +06/21/2018,Actors,@UzoAduba,RT @chescaleigh: yoooooo @jennyhan this looks so freaking good! @lanacondor is delightful! https://t.co/738ivv8VrC +06/20/2018,Actors,@UzoAduba,"“If you think you are too small to make a difference, you haven’t spent a night with a mosquito.” -African Proverb" +06/18/2018,Actors,@UzoAduba,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Actors,@UzoAduba,From a little over a year ago. Still holds true today. https://t.co/MwYvc9np15 +06/17/2018,Actors,@UzoAduba,"Proudly Nigeri- wait. You DON’T have Tidal?!? (Me, yesterday) 🇳🇬🦅🇳🇬 #WorldCup #SuperEagles #TheCarters https://t.co/nzb5idenHX" +06/16/2018,Actors,@UzoAduba,The Carters. +06/14/2018,Actors,@UzoAduba,I ❤️ NY. https://t.co/kqB5UX1Edo +06/13/2018,Actors,@UzoAduba,To recognize another person’s hurt. https://t.co/G3oWzuz4Xl +06/11/2018,Actors,@UzoAduba,Congratulations to ALL at last night’s Tonys!! Sending special love to my friends and cast mates @LindsayMendez… https://t.co/nIoWE5ZJ4w +06/11/2018,Actors,@UzoAduba,RT @TimFederle: Theater kids will save us all. +06/11/2018,Actors,@UzoAduba,Sun/day. #TonyAwards #theaterkids https://t.co/XFD6bNlVI6 +06/10/2018,Actors,@UzoAduba,@marcmalkin @AIDSLifeCycle @fabianfuentes28 @KarlJSchmid @LALGBTCenter You. Are. Loved. Congratulations on your tre… https://t.co/fm9AJdqwKB +06/10/2018,Actors,@UzoAduba,RT @lizadonnelly: Practicing being a presenter at the dress rehearsal: @UzoAduba ! #TonyAwards #thisisbroadway https://t.co/C8I8xCDAO4 +06/09/2018,Actors,@UzoAduba,I feel like Afrolocks today: the weather is juuuuuuust right! +06/08/2018,Actors,@UzoAduba,RT @Oprah: Seeing everything under one roof brought tears to my eyes. Thanks Lonnie Bunch for giving @GayleKing and I a sneak peek of “Watc… +06/08/2018,Actors,@UzoAduba,"RT @theblcklst: TV writers: submissions are now open for the inaugural @stayMACRO Episodic Lab! Learn more: https://t.co/ImIWHPxFa6 + +We're…" +06/07/2018,Actors,@UzoAduba,When you get a release date for Season 6 of #oitnb July 27th. #tbt @OITNB @netflix https://t.co/g42cuilIrx +06/07/2018,Actors,@UzoAduba,RT @1234vive: This is .... wow. 🔥🔥🔥🔥 https://t.co/RJtmI1hSig +06/06/2018,Actors,@UzoAduba,"RT @laurasaurusrex: LADIES WHO WANT TO DO CINEMATOGRAPHY BUT ARE NERVOUS: + +AFI is offering a FREE 4 DAY CINEMATOGRAPHY WORKSHOP FOR WOMEN…" +06/05/2018,Actors,@UzoAduba,Taking it to The Max. July 27th. #OITNB #S6 https://t.co/dqN4RzpiMK +06/04/2018,Actors,@UzoAduba,"Thanks so much for having us, Ken! https://t.co/70IzYlYwMa" +06/03/2018,Actors,@UzoAduba,Family. France. French Open...fantastique! #FrenchOpen2018 https://t.co/PNvSg2jvN5 +06/03/2018,Actors,@UzoAduba,"RT @TennisChannel: You just never know what to expect at #TennisChannel during #RG18. + +Thanks for the surprise visit @UzoAduba! + +@solo_ken…" +06/03/2018,Actors,@UzoAduba,What an awesome day! And a GREAT view! https://t.co/7OrNN5lb7D +05/31/2018,Actors,@UzoAduba,"RT @TwitterMoments: Kendrick Lamar's album DAMN was just awarded the Pulitzer Prize in Music, making him the first non-classical or jazz ar…" +05/31/2018,Actors,@UzoAduba,@sicurowest99 Super sweet. Thank you. I love seeing the love and support you’re extending out to another woman! Much appreciated 🙏🏿 +05/30/2018,Actors,@UzoAduba,"RT @TheTonyAwards: See @UzoAduba, @MattBomer, Claire Danes, @armiehammer, @tatianamaslany, @leslieodomjr, Jim Parsons, @ZacharyQuinto and @…" +05/30/2018,Actors,@UzoAduba,"RT @CBS: The #TonyAwards just got even better because @UzoAduba, @MattBomer, and more stars will be presenting live! Find out which other b…" +05/30/2018,Actors,@UzoAduba,"RT @playbill: Tony winner @leslieodomjr, Jim Parsons, and @UzoAduba are among the #TonyAwards2018 presenters: https://t.co/5HUJQSi867 https…" +05/29/2018,Actors,@UzoAduba,"RT @SI_Tennis: She's baaaaaaack. + +Serena Williams wins her first Slam match since January 2017 and first clay court match of the season, 7…" +05/27/2018,Actors,@UzoAduba,Pure joy. https://t.co/Ly3hDw2Uzi +05/25/2018,Actors,@UzoAduba,Whoa! This is one of the greatest honors I’ve ever received!! I still love the school mantra: “We walk...at Wheel… https://t.co/kCqSb4jmxf +05/24/2018,Actors,@UzoAduba,RT @CBSNews: NEW: Harvey Weinstein expected to turn himself into authorities in New York on Friday after inquiry into sexual assault allega… +05/23/2018,Actors,@UzoAduba,RT @nytimes: Breaking News: History in Georgia: Stacey Abrams became the first black woman to be a major party's nominee for governor after… +05/23/2018,Actors,@UzoAduba,She is the one that Georgia has been waiting for. Massive congrats to @staceyabrams on this tremendous victory!!! https://t.co/o7lNyHZWCd +05/22/2018,Actors,@UzoAduba,RT @AishaHinds: TODAY is the day!!! #Georgia VOTE! VOTE! VOTE! @staceyabrams for GOVERNOR #TeamABRAMS https://t.co/AWULJshYsd +05/22/2018,Actors,@UzoAduba,"RT @staceyabrams: After 11 months, it all comes down to tomorrow. Tuesday's election is one moment on this long journey, but it is OUR mome…" +05/20/2018,Actors,@UzoAduba,@WendiAarons @letterslive That letter was amazing!! +05/18/2018,Actors,@UzoAduba,Today’s tragedy marks the 22nd school shooting in America this year. Twenty. Second. #SantaFe +05/18/2018,Actors,@UzoAduba,"America, what’s happening? #SantaFe" +05/18/2018,Actors,@UzoAduba,Does anyone remember the TV movie Polly!?? It was soooo good. +05/13/2018,Actors,@UzoAduba,For raising me. For your strength. For guiding me. For your love. I just love you so much. Happy Mother’s Day Mummy… https://t.co/P00VZzyNVv +05/13/2018,Actors,@UzoAduba,"My favorite time on social media is when you can feel the collective love being passed round, and around, and aroun… https://t.co/bpVmjPyPtL" +05/12/2018,Actors,@UzoAduba,My. JAM. https://t.co/ofy0lhPVAF +05/12/2018,Actors,@UzoAduba,Genius. https://t.co/oY8DB6Nd11 +05/11/2018,Actors,@UzoAduba,"RT @CNN: A Georgia police officer who choked former NFL prospect Desmond Marrow during an arrest in December has been fired, officials said…" +05/11/2018,Actors,@UzoAduba,"RT @breakinginmovie: Like mother, like daughter. #BreakingInMovie in theaters May 11. Get tickets now: https://t.co/IKgAOenlV7 https://t.co…" +05/11/2018,Actors,@UzoAduba,Sending much love to @itsgabrielleu today for her film #BreakingIn which premieres IN theaters today! Buy a ticket… https://t.co/I7cUGefvVm +05/10/2018,Actors,@UzoAduba,RT @jes_chastain: 🖤 I wanted to share with you something I've been working on 🖤 #marioncotillard @Lupita_Nyongo @realBingbingFan #PenelopeC… +05/10/2018,Actors,@UzoAduba,"RT @justiceroundtab: In the United States, +2.3 million people are behind bars. +2.7 million kids have a parent locked up. +$80 billion is spe…" +05/09/2018,Actors,@UzoAduba,Stand firmly in your power. +05/09/2018,Actors,@UzoAduba,Honoring teachers on #TeacherAppreciationDay “Ok. Anyone who knows me knows how much I love teachers. They’ve been… https://t.co/poHE9mBdZV +05/08/2018,Actors,@UzoAduba,@WBLooneyTunes Without question. +05/07/2018,Actors,@UzoAduba,RT @Lupita_Nyongo: Excited to share the screen with these incredible women! @jes_chastain #MarionCotillard @realBingbingFan #PenelopeCruz #… +05/07/2018,Actors,@UzoAduba,"A quick education: when Space Jam is on TV, you watch. Space Jam. Class dismissed." +05/06/2018,Actors,@UzoAduba,Catch the message. https://t.co/PKM0q9pS79 +05/05/2018,Actors,@UzoAduba,"On the 20th, I will be especially #ProudtoBU. #ThisCouldBU https://t.co/xbtjQQhPpV" +05/02/2018,Actors,@UzoAduba,"RT @MichelleObama: On May 2, I can't wait to celebrate my 5th #CollegeSigningDay in Philly! It’s been amazing seeing this event grow into a…" +04/30/2018,Actors,@UzoAduba,"RT @CNNAfrica: To mark the 100th anniversary of Nelson Mandela's birth, former President Obama will deliver a high-profile speech in July a…" +04/29/2018,Actors,@UzoAduba,Let’s gooo!!!!! https://t.co/Bynf3O1Msg +04/27/2018,Actors,@UzoAduba,Grateful to have been part of this group. Check out #CandyJar available NOW on @netflix !! https://t.co/c8U7Nj6fCx +04/27/2018,Actors,@UzoAduba,RT @InStyle: You'll want to steal @UzoAduba's adorable tradition with her sisters. https://t.co/77ug5NbBUW +04/27/2018,Actors,@UzoAduba,"Thank you @InStyle for letting me share how nothing beats a sister. + +https://t.co/5IGKVVIBcn" +04/26/2018,Actors,@UzoAduba,@ConstanceWu @CrazyRichMovie Lady...I can’t wait! +04/26/2018,Actors,@UzoAduba,RT @ConstanceWu: Et Voilà! Here's the official trailer for @CrazyRichMovie! Love you all x https://t.co/7wjky2OiZo +04/25/2018,Actors,@UzoAduba,@JulieChen @TheTalkCBS Thanks so much for having me!!! +04/24/2018,Actors,@UzoAduba,RT @Hanhonymous: #CandyJar: New @Netflix movie about two opposites-attract debate team teens looks pretty good? w/ @UzoAduba & Christina He… +04/24/2018,Actors,@UzoAduba,RT @TheTalkCBS: TODAY: We're ready to party all day long when @UzoAduba joins us! Get the low-down on her newest movie #CandyJar when she d… +04/23/2018,Actors,@UzoAduba,RT @Luvvie: Aaahhh! @UzoAduba has my book #ImJudgingYou as one of her reading picks! Thank you! 😃😃😃 https://t.co/wBxfVcdHJR +04/23/2018,Actors,@UzoAduba,"RT @shereadsdotcom: Emmy-award winning actress and active social justice warrior, @UzoAduba is a celebrity we certainly admire. We admire h…" +04/22/2018,Actors,@UzoAduba,Wow. https://t.co/c7nZzJcYPV +04/21/2018,Actors,@UzoAduba,@tracelysette @octarell NO ONE is mad. Not a single soul. #getit +04/20/2018,Actors,@UzoAduba,“There shouldn’t be an age limit for being aware.” - The ever brilliant 11-year-old Naomi Wadler. https://t.co/UExLmfb82g +04/20/2018,Actors,@UzoAduba,@Emma4Change And love the costume choice. #JUSTICENOW +04/20/2018,Actors,@UzoAduba,Standing with you @Emma4Change and all those who have chosen to stand UP. https://t.co/nNsbQODLzl +04/20/2018,Actors,@UzoAduba,"This has been my show since Day 1. Changed the game on so many frontiers, from introducing the world to a leading l… https://t.co/I9fl3p2y8L" +04/20/2018,Actors,@UzoAduba,RT @BearGrylls: The best season we have done! @rogerfederer @ScottEastwood @DonCheadle @derekhough @IAMLenaHeadey @UzoAduba & Keri Russell… +04/18/2018,Actors,@UzoAduba,"RT @Lavernecox: #IvyPark #beyonce + +https://t.co/wAvju7kbKc" +04/16/2018,Actors,@UzoAduba,RT @Variety: .@KendrickLamar Wins Pulitzer Prize for ‘Damn’ https://t.co/p7j5istd6n +04/16/2018,Actors,@UzoAduba,"Say her name, say her NAME... #Beyonce." +04/13/2018,Actors,@UzoAduba,"RT @CNNAfrica: “Because of the success of 'Black Panther,' now Hollywood wants African stories, and I think Nigeria is at the forefront of…" +04/13/2018,Actors,@UzoAduba,RT @Backstage: @UzoAduba sets New York stage return + more theater news https://t.co/OHkeQzCwAc https://t.co/CKi6w2GyU9 +04/12/2018,Actors,@UzoAduba,@AdrieaneLinox Adriane! Thank you 😊 +04/12/2018,Actors,@UzoAduba,"RT @VWOfficial: #bts #missvirgina with the amazing @uzoaduba 🎥 #blackgirlmagic @ Los Angeles, California https://t.co/FyNyMvayVO" +04/11/2018,Actors,@UzoAduba,"They are not a headline. Not a cause for the moment. They are our countrymen who, with every passing moment, can’t help but feel forgotten." +04/11/2018,Actors,@UzoAduba,A necessary read. Let us not forget the very real need in Flint. https://t.co/VnAq792gsZ +04/11/2018,Actors,@UzoAduba,RT @melsil: .@UzoAduba and Janet McTeer are set to star in new plays from Lydia R. Diamond and Theresa Rebeck: https://t.co/6aJ4ewg5d8 http… +04/11/2018,Actors,@UzoAduba,RT @RWitherspoon: Bravo to @HBO for taking important steps to address equal pay in Entertainment. It is an privilege to work with a compan… +04/11/2018,Actors,@UzoAduba,RT @jes_chastain: On this #EqualPayDay I would like to recognize @UniversalPics #DonnaLangley & #ErikBaiers for understanding the importan… +04/10/2018,Actors,@UzoAduba,@AnnaMariaPdT Let’s gooo!!! +04/10/2018,Actors,@UzoAduba,RT @TheEllenShow: What do we want? Equal pay! When do we want it? 100 years ago. #EqualPayDay +04/10/2018,Actors,@UzoAduba,RT @KamalaHarris: It’s time to make equal pay a reality in America. #EqualPayDay https://t.co/CjdQUQ8yQU +04/10/2018,Actors,@UzoAduba,RT @MadameNoire: Actress @UzoAduba is heading to the theatre to play the first woman in the Negro Leagues! Will you be checking out this pr… +04/10/2018,Actors,@UzoAduba,"RT @Essence: .@UzoAduba is set to star in 'Toni Stone', a play about the first woman to go pro in the Negro Leagues. https://t.co/UosOvHxQm…" +04/10/2018,Actors,@UzoAduba,"@tamaratorresnyc @tellyleung Thank you, Tamara!!!!" +04/10/2018,Actors,@UzoAduba,"@ArianaDeBose Thanks, lady ❤️❤️❤️" +04/10/2018,Actors,@UzoAduba,RT @ArianaDeBose: It’s a good day indeed! Go sis @UzoAduba!! https://t.co/xhv1qZtvQg +04/10/2018,Actors,@UzoAduba,"@marcmalkin Thank you, Marc!!" +04/10/2018,Actors,@UzoAduba,"RT @marcmalkin: Congrats, @UzoAduba!!! Uzo Aduba Headed to New York Stage https://t.co/m0td3I544c" +04/10/2018,Actors,@UzoAduba,@Sports_Greats @shondarhimes Love this. +04/09/2018,Actors,@UzoAduba,"RT @THR: Janet McTeer is headed back to Broadway in Theresa Rebeck's 'Bernhardt/Hamlet,' while Uzo Aduba will play the African-American fem…" +04/09/2018,Actors,@UzoAduba,"@robinthede I ❤️ you, @robinthede . I double ❤️❤️ you. 😊" +04/09/2018,Actors,@UzoAduba,"RT @Variety: Uzo Aduba, Janet McTeer Join Roundabout Theatre Company Slate https://t.co/7BD4evf2k2" +04/09/2018,Actors,@UzoAduba,"RT @RTC_NYC: Just announced! @UzoAduba will return to the New York stage in the world premiere of Lydia R. Diamond's #ToniStone. + +For more…" +04/09/2018,Actors,@UzoAduba,"@tellyleung Thanks, Tell!! I love you, my dear friend. Can’t wait to you around “campus.”" +04/09/2018,Actors,@UzoAduba,"RT @tellyleung: YES YES YES! Get it, @UzoAduba! https://t.co/REyVK2CTOy" +04/09/2018,Actors,@UzoAduba,RT @broadwaycom: Janet McTeer & @UzoAduba to portray real-life icons in two world-premiere plays: https://t.co/rnfKlMO5OL https://t.co/7lAj… +04/09/2018,Actors,@UzoAduba,Home. https://t.co/oK9S6MARIk +04/09/2018,Actors,@UzoAduba,RT @theatermania: #JanetMcTeer & @UzoAduba to return to NY stage in upcoming @RTC_NYC productions → https://t.co/4wzjhcZneW https://t.co/ND… +04/09/2018,Actors,@UzoAduba,RT @playbill: .@RTC_NYC sets two world premieres for 2018–2019 lineup: @TheresaRebeck's Bernhardt/Hamlet starring Janet McTeer and Lydia R… +04/09/2018,Actors,@UzoAduba,"If you then you don’t +don’t love deserve +me at my… https://t.co/fdpG5BW2fp" +04/06/2018,Actors,@UzoAduba,"Morning. +The sun stretches through the sleepy cracks; +And we begin." +04/05/2018,Actors,@UzoAduba,"Ariel had like, 20 thing-a-ma-bobs and she still wants more?? Greedy 🙄." +04/04/2018,Actors,@UzoAduba,“I’m so excited!” -made timeless by The Pointer Sisters and also Jessie Spannow. +04/04/2018,Actors,@UzoAduba,"RT @cindi_leive: “Injustice must be exposed, with all the tension its exposure creates, to the light of human conscience...before it can be…" +04/04/2018,Actors,@UzoAduba,Today we are proud to partner with the amazing female funders and founders of @AllRaise as they commit to making ch… https://t.co/dopVohbLph +04/03/2018,Actors,@UzoAduba,RT @Variety: .@MatthewModine joins @UzoAduba in the drama 'Miss Virginia' (EXCLUSIVE) https://t.co/S8TXaJ6chO https://t.co/wkUfpMtoK5 +04/03/2018,Actors,@UzoAduba,RT @JohnBoyega: First official press trip to Nigeria and off to a great start! https://t.co/xY7L16TjZn +04/03/2018,Actors,@UzoAduba,RT @cnbcafrica: Tune into Power Lunch West Africa now for our interview with @JohnBoyega. #plwa410 https://t.co/hv6rfHvi0u +04/02/2018,Actors,@UzoAduba,"RT @BBCWorld: Retired South African archbishop Desmond Tutu hails Winnie Mandela, who has died aged 81, as ""a defining symbol of the strugg…" +04/02/2018,Actors,@UzoAduba,Nkosi sikelel’ iAfrika. God Bless Africa. https://t.co/YxhXe4f1Tn +04/01/2018,Actors,@UzoAduba,"Happy Easter, everybody!!" +03/31/2018,Actors,@UzoAduba,"RT @blackenterprise: Teen Wins Prestigious Writing Award That Stephen King, Capote, and Other Famous Writers Won https://t.co/BvcAy2MVMO ht…" +03/31/2018,Actors,@UzoAduba,I’m Walking On Sunshine: solid tune and always delivers. +03/30/2018,Actors,@UzoAduba,RT @WomenaHollywood: Tribeca Film Fest Adds Day-Long #TimesUp Event https://t.co/2BzrrPkhmy https://t.co/Ll4fQ64f1J +03/30/2018,Actors,@UzoAduba,@qimmahsaafir A pleasure on both sides. 😊🙏🏿😊 +03/30/2018,Actors,@UzoAduba,"RT @okayafrica: #Okay100Women: OkayAfrica talked to the multi-talented Nigerian-American actress @UzoAduba. Learn how she got into acting,…" +03/28/2018,Actors,@UzoAduba,RT @ShaunKing: I want to remind you that Colin Kaepernick had the police murder of Alton Sterling on his mind when he first took a knee.… +03/27/2018,Actors,@UzoAduba,The real question is: who DOESN’T go to AfroPunk??! https://t.co/yXYCViLsRn +03/26/2018,Actors,@UzoAduba,@MatthewModine Hey YOU! I can’t wait!!!! And Michael Wilson has my ❤️❤️. See you soon!!! +03/25/2018,Actors,@UzoAduba,@BradWalsh @FSSerengeti 😉😉❤️ +03/25/2018,Actors,@UzoAduba,@BradWalsh @FSSerengeti 🧐🧐🧐 +03/25/2018,Actors,@UzoAduba,"RT @Emma4Change: Real Quick: my speech today was abt 6 mins & 30 secs, including both my speech and my silence. The fact that people think…" +03/25/2018,Actors,@UzoAduba,On the ground and ready to start our adventures in The Serengeti with @FSSerengeti !! #familytime #myfssafari… https://t.co/jTXljPDPrm +03/25/2018,Actors,@UzoAduba,"RT @womensmarch: Naomi Wadler, we make you this promise: Where you lead, we will follow. + +With love and in solidarity, +The Women of Americ…" +03/25/2018,Actors,@UzoAduba,RT @patrickconeil: History is being made. Open your eyes and your hearts. #NeverAgain #MarchForOurLives https://t.co/rNqKDOGBAY +03/25/2018,Actors,@UzoAduba,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Actors,@UzoAduba,#MarchForOurLives #NeverAgain +03/24/2018,Actors,@UzoAduba,RT @Dionsmusica: Heading to Washington D.C for the #MarchForOurLives with a group of students! Holla! #EnoughIsEnough #ChicagoStandUp #Stud… +03/24/2018,Actors,@UzoAduba,RT @AudraEqualityMc: #MarchForOurLives Go Children Go! So so so so so proud of you! +03/24/2018,Actors,@UzoAduba,https://t.co/m90yF5En1u +03/24/2018,Actors,@UzoAduba,"There are 3,140,167 students in Florida. Politicians there have received over $3.3M from the NRA. That’s $1.05 per… https://t.co/8j6FP5hnbe" +03/23/2018,Actors,@UzoAduba,The powerful voice of Journey Jamison. Rise up. Catch the message. https://t.co/gqFfZyyKwB +03/23/2018,Actors,@UzoAduba,@laurabrown99 Holding it down for us in Tanzania! +03/23/2018,Actors,@UzoAduba,People are marching tomorrow. For their lives. Let’s never have to do this again. #neveragain #marchforourlives +03/23/2018,Actors,@UzoAduba,RT @Emma4Change: I have absolutely no words... Thank you not only for your service but for standing with us as we #MarchForOurLives tomorro… +03/21/2018,Actors,@UzoAduba,"First South, then West, now East. #letsgo #heiferinternational https://t.co/uIGoBfU28b" +03/20/2018,Actors,@UzoAduba,This MUST stop. +03/19/2018,Actors,@UzoAduba,YES. https://t.co/HZAZbjfgyO +03/18/2018,Actors,@UzoAduba,You know what movie I still really love? The Big Sick. It was just so good. +03/14/2018,Actors,@UzoAduba,"In order to stand up, you must first walk out." +03/13/2018,Actors,@UzoAduba,A very important read. https://t.co/AlsuXHCs5l +03/13/2018,Actors,@UzoAduba,"RT @kerrywashington: NYC! +https://t.co/njXXJoArv8" +03/13/2018,Actors,@UzoAduba,@darkblonde13 Love to you and thanks so much 🙏🏿🙏🏿 +03/13/2018,Actors,@UzoAduba,@anthropologistm And I you!! +03/12/2018,Actors,@UzoAduba,"RT @TIMESUPNOW: Proud to announce today the launch of @TIMESUPAD, in solidarity with our sisters in advertising. More info: https://t.co/0t…" +03/11/2018,Actors,@UzoAduba,@laurabrown99 Haaa!! And fair. +03/10/2018,Actors,@UzoAduba,"“Putting on all the bells and whistles...” + +Who wears bells and whistles?" +03/10/2018,Actors,@UzoAduba,RT @nytimes: Ida B. Wells was a 30-year-old newspaper editor living in Memphis when she began her anti-lynching campaign https://t.co/2OMqH… +03/10/2018,Actors,@UzoAduba,Thank goodness you were there. Thanks for having me! +03/10/2018,Actors,@UzoAduba,Hammered??! I don’t know if I can think of storms the same way again. It was WILD!!! https://t.co/fWPw5cgOzy +03/10/2018,Actors,@UzoAduba,"RT @TIMESUPNOW: Today, @ava makes/breaks history with @WrinkleInTime, out now. Congrats to Ava and the stellar cast and crew! #BeAWarrior #…" +03/08/2018,Actors,@UzoAduba,Happy International Women’s Day! #InternationalWomenDay +03/08/2018,Actors,@UzoAduba,RT @CNNAfrica: These are the #MeToo stories you haven’t heard - five Nigerian women share their harrowing stories of sexual abuse and haras… +03/08/2018,Actors,@UzoAduba,"RT @TessaThompson_x: YES @michaelb4jordan . This is how change happens. When we commit to making it. +#InclusionRider https://t.co/kBiRVFWc…" +03/08/2018,Actors,@UzoAduba,@TessaThompson_x @michaelb4jordan Indeed +03/08/2018,Actors,@UzoAduba,Home. You are welcome. ❤️ https://t.co/8CYLlpl15U +03/07/2018,Actors,@UzoAduba,A woman who has given so much to so many. #theaterkid https://t.co/VbCvKEvQdI +03/06/2018,Actors,@UzoAduba,I’m taking an adventure with @BearGrylls on @NBCRunningWild this summer. The season premieres May 30! #RunningWild https://t.co/mxOJnInePM +03/05/2018,Actors,@UzoAduba,Insisting while persisting. https://t.co/AerQ2E8X1L +03/05/2018,Actors,@UzoAduba,Magic Monday ✨✨. Photo by the incredible Keith Thompson. Felt like heaven. #antarctica #7for7 https://t.co/iVmYzLWHHm +03/02/2018,Actors,@UzoAduba,@adriennelwarren Love him. +03/02/2018,Actors,@UzoAduba,"Just doing it. Do it, Daniel Caesar. https://t.co/cDg2ZQCmgZ" +03/01/2018,Actors,@UzoAduba,It’s #WomensHistoryMonth and @WrinkleInTime comes out March 9th. You do the math of where you should be in 9 days. So excited. #TeamMeg +02/28/2018,Actors,@UzoAduba,@joshuahenry20 @carouselbway @playbill Here for it. +02/28/2018,Actors,@UzoAduba,No filter. No zoom. This place is beautiful. #Antarctica #7thcontinent #7for7 https://t.co/ynkg0zXRLK +02/28/2018,Actors,@UzoAduba,Day 28: First Lady Michelle Obama. @MichelleObama #thankyou #withoutyou #thereisnome #BlackHistoryMonth https://t.co/banpA5Jsyc +02/28/2018,Actors,@UzoAduba,I’ve got joy like a fountain. +02/20/2018,Actors,@UzoAduba,Worth the watch. Might we all come to the table with the open ears of the conservative farmer and liberal organizer. https://t.co/KLukJHyirU +02/20/2018,Actors,@UzoAduba,RT @UzoAduba: Day 20: Maya Angelou. #THANKYOU #withoutyou #thereisnome #BlackHistoryMonth http://t.co/jXegtD3p +02/19/2018,Actors,@UzoAduba,Means more today. https://t.co/w4l0bRzOts +02/19/2018,Actors,@UzoAduba,"RT @brielarson: If you want to buy tix for people who can’t afford to see #BlackPanther at the moment, comment below. If you are in need of…" +02/19/2018,Actors,@UzoAduba,"RT @nytimes: ""Black Panther"" blew past projections to take in an estimated $387 million worldwide over the Presidents' Day weekend, breakin…" +02/19/2018,Actors,@UzoAduba,We can either talk about it or we can be about it. +02/18/2018,Actors,@UzoAduba,RT @Emma4Change: My friends an i have been hard at work at North Community Park calling attention to @NeverAgainMSD and @AMarch4OurLives It… +02/18/2018,Actors,@UzoAduba,RT @UzoAduba: Day 18: Madame C.J. Walker. #THANKYOU #withoutyou #thereisnome #BlackHistoryMonth http://t.co/6O5qo1oW +02/18/2018,Actors,@UzoAduba,"Anger and fire are not the same, but they can be siblings at times." +02/18/2018,Actors,@UzoAduba,RT @MsSarahPaulson: Jan Maxwell Jan Maxwell Jan Maxwell Jan Maxwell Jan Maxwell. #DimforJan https://t.co/LZzfiWtzdP +02/18/2018,Actors,@UzoAduba,"RT @MichaelSkolnik: Emma Gonzalez. A student at Marjory Stoneman Douglas High School. + +An American Hero. + +Watch This. + +All of it. + +The…" +07/01/2018,Actors,@nlyonne,@jakefogelnest 😍 +06/30/2018,Actors,@nlyonne,RT @SeanMcElwee: we are living in a sick society https://t.co/Kj7SHgYe9U +06/30/2018,Actors,@nlyonne,RT @BAKKOOONN: this bus is designed to clean your moms huge butt https://t.co/MWcsTWH1rI +06/30/2018,Actors,@nlyonne,RT @harinef: shave your Whole body to techno +06/30/2018,Actors,@nlyonne,RT @lsarsour: NYC always shows up and shows out ♥️✊🏽♥️ #FamilesBelongTogetherMarch https://t.co/HzlZ5b4ChT +06/30/2018,Actors,@nlyonne,RT @SarahKSilverman: As a comic this is trite as fuck but IF MEN WERE THE ONES WHO GOT PREGNANT THIS WOULD BE A NON ISSUE https://t.co/JQ4V… +06/30/2018,Actors,@nlyonne,"RT @SenKamalaHarris: Years from now, people will ask us where we were in this moment. We don’t want the answer to be how we felt. We want t…" +06/30/2018,Actors,@nlyonne,"RT @repjohnlewis: We are sick and tired of seeing little babies taken from their mothers. That's not right, it's not fair, and history will…" +06/30/2018,Actors,@nlyonne,RT @AoDespair: Quite a national metaphor. https://t.co/lrRKBjT5R9 +06/30/2018,Actors,@nlyonne,RT @ACLU: Dissent is patriotic and families belong together ✊ https://t.co/Acxw8KJloV +06/30/2018,Actors,@nlyonne,"RT @karavoght: This is one of the dozens of joyous kids running through fire hose with their protest shirts and signs. + +The other side of t…" +06/30/2018,Actors,@nlyonne,"RT @Jennnnng: greatest grandmas ranked! +19) it’s +18) hard +17) to +16) rank +15) the +14) greatest +13) grandmas +12) because +11) they’re…" +06/30/2018,Actors,@nlyonne,"RT @thedailybeast: ""Not even Mussolini could have imagined concentration camps for babies. But that is where we are"" https://t.co/qD5TlhhFhF" +06/30/2018,Actors,@nlyonne,"Our struggles are all connected. Family separation anywhere—at the border, via the Muslim ban, via mass incarcerati… https://t.co/P6ptHwyChs" +06/30/2018,Actors,@nlyonne,RT @nowthisnews: Amsterdam will finally have a woman mayor after nearly 700 years of men in charge https://t.co/MW0GCFdZFL +06/30/2018,Actors,@nlyonne,RT @TheScaryNature: Insane reflexes https://t.co/qnyUdNgCKw +06/30/2018,Actors,@nlyonne,RT @repjohnlewis: The time is always right to do right. Find a way to get in the way and we will make a way out of no way. #goodtrouble +06/30/2018,Actors,@nlyonne,RT @MarkMacabre: @OITNB RELEASE THE TRAILER https://t.co/pLfoB8mwqt +06/30/2018,Actors,@nlyonne,RT @kerrywashington: Me! 👋🏾 #FamiliesBelongTogether FIND A MARCH NEAR YOU 👇🏾 https://t.co/yiXdUmpFmH https://t.co/dQMezH4sSA +06/30/2018,Actors,@nlyonne,I'm proud to support the thousands upon thousands of people taking to the streets on Saturday to say… https://t.co/NKbIxoYLGE +06/30/2018,Actors,@nlyonne,"RT @hannibalburess: Sorry to drop this today Drake. + +@turo https://t.co/dYMPpvFUvR" +06/29/2018,Actors,@nlyonne,"RT @JenAshleyWright: Us: Gun control? +GOP: NO +Us: Treatment for mentally ill? +GOP: NO +Us: Health care for bullet holes? +GOP: NO +Us: Anythin…" +06/29/2018,Actors,@nlyonne,RT @newscientist: Enceladus is spewing out organic molecules necessary for life https://t.co/9KDNzufQme https://t.co/wuCxIALD32 +06/29/2018,Actors,@nlyonne,@MichaelRobnalt Lol 🤥🤫🤔😕😒🧐 +06/29/2018,Actors,@nlyonne,RT @lsarsour: Urgent - we need to find 160 Spanish speaking attorneys to go to the border ASAP. If you can go and/or if you have a network… +06/28/2018,Actors,@nlyonne,RT @elizabethforma: We won't let @realDonaldTrump & @SenateMajLdr overturn Roe v. Wade & hand the rights of the American people back over t… +06/28/2018,Actors,@nlyonne,RT @MaddowBlog: “We were representing a 3-year-old in court recently who had been separated from the parents. And the child — in the middle… +06/28/2018,Actors,@nlyonne,RT @chelseaperetti: Gonna do an escape room solo. Think it will lift my spirits! +06/28/2018,Actors,@nlyonne,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/28/2018,Actors,@nlyonne,RT @UzoAduba: An honor. https://t.co/XvTRMj2nuB +06/28/2018,Actors,@nlyonne,RT @ditzkoff: Don’t you dare promise me a Mamma Mia sequel with dinosaurs and then not deliver a Mamma Mia sequel with dinosaurs https://t.… +06/28/2018,Actors,@nlyonne,@NYTimesWordplay Lol😎 +06/27/2018,Actors,@nlyonne,RT @oliviawilde: Let’s be clear: it is not a question of abortions or no abortions. It is only a question of whether women will die having… +06/27/2018,Actors,@nlyonne,New Gang Gang record #Kazuashita out now! Buy it! Listen to it!! Download your brains off! @GangGangDance… https://t.co/jG8c2d0oyI +06/27/2018,Actors,@nlyonne,"RT @Ocasio2018: This is the start of a movement. + +Thank you all." +06/27/2018,Actors,@nlyonne,RT @lurie_john: Starts out being one of the worst days in American history and then Alexandria Ocasio-Cortez happens. +06/27/2018,Actors,@nlyonne,Yes. https://t.co/tuATadwh3w +06/27/2018,Actors,@nlyonne,RT @ditzkoff: Seems about right https://t.co/3fSwiHUjtl +06/27/2018,Actors,@nlyonne,RT @TessaThompson_x: Every character I play is part Beyoncé. https://t.co/bVApMWlf3I +06/27/2018,Actors,@nlyonne,RT @kumailn: Please sign this @ACLU to fight the SCOTUS ruling on the Muslim Ban. https://t.co/g6sVzamVQx +06/26/2018,Actors,@nlyonne,RT @lsarsour: If u r ever a passenger on any flights leaving TX to any other US state - Assess your flight. 👀 Do u see groups of 6-7 kids u… +06/26/2018,Actors,@nlyonne,"RT @RinChupeco: Speaking as someone born in the last years of a dictatorship, you Americans are already several steps in one. + +Ferdinand Ma…" +06/26/2018,Actors,@nlyonne,"RT @WerewolfBathtub: Ice T, it is 8:30 in the morning https://t.co/RSpeVAwB8G" +06/26/2018,Actors,@nlyonne,"RT @perlapell: Hey Young Girls, don't ever let someone shame you for your power. It will save and elevate your life." +06/26/2018,Actors,@nlyonne,RT @WaywardWinifred: This. https://t.co/xklC8NNnrz +06/26/2018,Actors,@nlyonne,RT @HeerJeet: Finally some good news. https://t.co/s7DmZywwYS +06/26/2018,Actors,@nlyonne,RT @thedanieb: Yes it is. https://t.co/FTCmYTL12S +06/26/2018,Actors,@nlyonne,RT @openculture: Leonard Bernstein Introduces 7-Year-Old Yo-Yo Ma: Watch the Youngster Perform for John F. Kennedy (1962) https://t.co/7b3p… +06/26/2018,Actors,@nlyonne,RT @abbijacobson: Happy Pride ❤️ https://t.co/JtFP40a9om +06/25/2018,Actors,@nlyonne,RT @newscientist: What is consciousness? We're coming closer to cracking the biggest problem in neuroscience https://t.co/SCDGx9UzFe https:… +06/25/2018,Actors,@nlyonne,"RT @Sierra_Magazine: ""This mixing of racism and politics when it comes to climate change is especially dangerous because, historically, whe…" +06/25/2018,Actors,@nlyonne,RT @LeslyeHeadland: So grateful I was able to make it to the closing night of Cult of Love. I still can’t believe the “Pride” play closed o… +06/25/2018,Actors,@nlyonne,RT @Criterion: A Monday feeling: https://t.co/xQDIScQHfp +06/24/2018,Actors,@nlyonne,🔥🔥 https://t.co/hqbzWLlYz3 +06/24/2018,Actors,@nlyonne,@daddynichoIs Yas +06/24/2018,Actors,@nlyonne,"Happy Hometown Pride, NYC!! #pride 🌈🌈🌈🌈🌈♥️♥️♥️ https://t.co/dTeCwSMhXa" +06/24/2018,Actors,@nlyonne,#PossumPeople https://t.co/F1iSYC4GtB +06/24/2018,Actors,@nlyonne,@robdelaney https://t.co/AEg5Qf91li +06/24/2018,Actors,@nlyonne,RT @nicholebeattie: Something great to do today is watch @Hannahgadsby’s Nanette on Netflix. Wowzers. +06/24/2018,Actors,@nlyonne,RT @dodo: This tiny donkey’s so small he lives in the house — he even knows how to go outside with his dog siblings to pee! https://t.co/0p… +06/23/2018,Actors,@nlyonne,🔥 https://t.co/9ClzisFGxF +06/23/2018,Actors,@nlyonne,"RT @Jonny_Calderon_: dog carrier: $15 +goggles: $5 +being able to force my dog into spending time with me: priceless https://t.co/2TSaUGpIe4" +06/23/2018,Actors,@nlyonne,RT @chelseaperetti: THIS DEPRAVED PARTY HATES CHILDREN https://t.co/UAdTUVw4tQ +06/22/2018,Actors,@nlyonne,"Repost @LeslyeHeadland @mspackyetti ・・・ +A family concentration camp is still a concentration camp. +• +In my freshman… https://t.co/XFui65IXPR" +06/20/2018,Actors,@nlyonne,https://t.co/1TFG7tkvcE +06/20/2018,Actors,@nlyonne,Hbd Gena. 🎈♥️ https://t.co/iIH53w6IR0 +06/20/2018,Actors,@nlyonne,New York in the summer belongs to the rats and the roaches. +06/20/2018,Actors,@nlyonne,RT @GhostPanther: Our nation is being remade into a third world totalitarian Russian satellite country. https://t.co/NIiYJm9wuA +06/20/2018,Actors,@nlyonne,"RT @HalleyFeiffer: I often cringe at ""if childhood me could see me now"" posts so I'll just say that childhood me is sitting in the corner w…" +06/19/2018,Actors,@nlyonne,RT @laurenlapkus: I just called the number and followed the prompts and left a message for my senator. It felt a little awkward but I'm gla… +06/19/2018,Actors,@nlyonne,All-time dreamboat @MrGeorgeWallace 😍😍 all-time day. 🔥 https://t.co/lczKNflomZ +06/18/2018,Actors,@nlyonne,"RT @The_A_Prentice: Oh, to get the real illegal aliens. Got it. https://t.co/e9MWKScs3i" +06/18/2018,Actors,@nlyonne,"RT @ikebarinholtz: There needs to be a reckoning for this. Trump, Sessions, Miller should all be sent to the Hague. They are war criminals…" +06/17/2018,Actors,@nlyonne,RT @JoyAnnReid: More resources for those asking for ways to help separated migrant parents and children: https://t.co/36zwxfv4Qn +06/17/2018,Actors,@nlyonne,RT @TexasTribune: Here are photos of the tent city near El Paso that is housing immigrant children separated from their parents. Photos by… +06/17/2018,Actors,@nlyonne,RT @SarahKSilverman: Good lord https://t.co/z8kg8W57md +06/17/2018,Actors,@nlyonne,RT @kumailn: The biggest defense they have is that what they are doing is so horrific that you look like a fool talking about it. It’s beyo… +06/17/2018,Actors,@nlyonne,"RT @kumailn: There are going to be people, many people, who will be able to justify separating children from their families. They’ll say th…" +06/17/2018,Actors,@nlyonne,RT @kumailn: I don’t know what to do. Evil is being done right now and we are afraid to get too loud. This moment in time will define us fo… +06/16/2018,Actors,@nlyonne,RT @dodo: This dog is ALWAYS loyal to his best friend — except when pizza's involved 😂🍕 https://t.co/jVGR7e7WUZ +06/16/2018,Actors,@nlyonne,RT @KamalaHarris: Using kids as leverage to get billions for a wasteful border wall is outrageous and immoral. This is simple: the Administ… +06/16/2018,Actors,@nlyonne,"RT @eugenegu: As an American, it pains me to say this. + +The United Nations should investigate the United States of America for placing chi…" +06/16/2018,Actors,@nlyonne,RT @JenAshleyWright: My first book about the history of break-ups was always described as a fun beach read. The first chapter was about a h… +06/16/2018,Actors,@nlyonne,Hbd VZ 🎈 https://t.co/9vigyeqzXh +06/16/2018,Actors,@nlyonne,"RT @atlasobscura: Through his relentless experimentation, Louis Boutan created underwater photographs in the 19th century that the world ha…" +06/15/2018,Actors,@nlyonne,"RT @paulscheer: Please watch this. It shook me to my core to think of 4yr old children separated from their families, without any in charge…" +06/15/2018,Actors,@nlyonne,RT @Alyssa_Milano: The family separation policy that Trump has weaponized is Un-American and inhumane. The thread below has many resources… +06/15/2018,Actors,@nlyonne,RT @UzoAduba: I ❤️ NY. https://t.co/kqB5UX1Edo +06/15/2018,Actors,@nlyonne,RT @SarahKSilverman: Rad https://t.co/QeQctRY37b +06/15/2018,Actors,@nlyonne,"RT @TheRealDratch: Amy Poehler was named one of the 40 most powerful people in comedy and her answers to these questions are genius: +(Also…" +06/14/2018,Actors,@nlyonne,RT @SenKamalaHarris: Let’s call this policy what it is: a human rights abuse being committed by the United States government. https://t.co/… +06/14/2018,Actors,@nlyonne,RT @billyeichner: My God WTF is going on in this country? WHAT IS HAPPENING??? https://t.co/R0EAePznu7 +06/14/2018,Actors,@nlyonne,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Actors,@nlyonne,RT @oliviawilde: What do you really know about Rikers Island? Spend 8 mins getting to know the human side of this important issue. #CLOSEri… +06/14/2018,Actors,@nlyonne,Summer’s coming! 🎅🏽👨🏽‍🚀🌈 https://t.co/GVQ72ujkrj +06/13/2018,Actors,@nlyonne,July 27th is coming to town. @OITNB https://t.co/GoMM8tDhMM +06/13/2018,Actors,@nlyonne,Facts! 👇🏽👇🏽👇🏽👇🏽 https://t.co/E1P8qxpB11 +06/13/2018,Actors,@nlyonne,"RT @RuPaul: ""Everyone thinks of changing the world, but no one thinks of just wearing a Styrofoam head on top of their head”~Tolstoy https:…" +06/13/2018,Actors,@nlyonne,"RT @WesleyLowery: The President of the United States reportedly considering construction of a prison camp to hold up to 5,000 children http…" +06/12/2018,Actors,@nlyonne,"RT @SenSanders: We have a racist criminal justice system that costs us billions of dollars, ruins lives and allows private prisons to profi…" +06/12/2018,Actors,@nlyonne,@BrianStack153 Dm me for details +06/11/2018,Actors,@nlyonne,Me and Uzo going to the Emmys tonight.… https://t.co/WnpqMCkPjQ +06/11/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to comets, the sperm of outer space." +06/11/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to wrists, the neck of the arm." +06/10/2018,Actors,@nlyonne,Unmanageable. I do it for the #art. https://t.co/HcFoVp5AQU +06/10/2018,Actors,@nlyonne,RT @Rosie: FREE REALITY #JUSTICE4REALITY https://t.co/UqsDhmBVWe +06/10/2018,Actors,@nlyonne,"RT @ambermruffin: McDonald’s, you nasty. https://t.co/lDbdDPO1Pp" +06/10/2018,Actors,@nlyonne,"RT @disruptorawards: Disruptor Book of the Year Award goes too Michiko Kakutani 📖 +“This book is a passionate plea for reason” ""The Death o…" +06/10/2018,Actors,@nlyonne,RT @TheScaryNature: Tourists wake up to 3 lions licking water off their tent in Botswana https://t.co/xl6yx53ljy +06/10/2018,Actors,@nlyonne,RT @joshgondelman: I’m tired of every old timey show sounding British. I want a Game Of Thrones with over the top Italian accents. +06/10/2018,Actors,@nlyonne,"RT @MattMcGorry: Angelenos!!! Today and tomorrow at the last days to sign the @reformlajails petition!!! + +Unless you want continued lack of…" +06/10/2018,Actors,@nlyonne,RT @SarahKSilverman: This is pure evil. This makes me want to fight https://t.co/iaDsmZHKlA +06/10/2018,Actors,@nlyonne,“What is this thing called time?” -Nina Simone ♥️⚔️♥️ https://t.co/5weZeQm7c2 +06/09/2018,Actors,@nlyonne,@WaywardWinifred Nyc bb +06/09/2018,Actors,@nlyonne,RT @vausexblack: @nlyonne me all day everyday https://t.co/sPOsn0fMUb +06/09/2018,Actors,@nlyonne,Is doing nothing the best thing in the world? +06/09/2018,Actors,@nlyonne,Chilled so hard today. 🔥 +06/09/2018,Actors,@nlyonne,RT @hannibalburess: This is how I spend my downtime on movie sets. https://t.co/mck5j1MwAD +06/09/2018,Actors,@nlyonne,"Via @jjongholly Happy Pride, Warsaw!! And cool… https://t.co/NizAMebtoN" +06/09/2018,Actors,@nlyonne,"If you’re so inspired, kick in to ⁦@OITNB’s beloved script supervisor’s ⁩new children’s book! #LittleMossBigTree wr… https://t.co/2xoir0zvn5" +06/09/2018,Actors,@nlyonne,“I think the saddest people always try their… https://t.co/PxlgJJAOop +06/09/2018,Actors,@nlyonne,"In the Trump Administration, Science Is Unwelcome. So Is Advice. via @NYTimes Full tilt Idiocracy. https://t.co/QNW0AELOD6" +06/09/2018,Actors,@nlyonne,"This is why weekends exist. + +Via… https://t.co/30VfD17Cwv" +06/09/2018,Actors,@nlyonne,"RT @NickPinkerton: On @FilmLinc's Luchino Visconti retrospective, starting today, for @Artforum: https://t.co/pKifnJEDiZ" +06/09/2018,Actors,@nlyonne,@broadly @ShawkatAlia ♥️♥️♥️ +06/09/2018,Actors,@nlyonne,RT @nowthisnews: Meet the 11-year-old founder and CEO of this hair barrette company https://t.co/CScWTvpNi4 +06/09/2018,Actors,@nlyonne,"RT @BeauWillimon: Yesterday David Simon (@AoDespair) was banned from Twitter. Please read his post & share. When you do, tell @Jack to get…" +06/09/2018,Actors,@nlyonne,"RT @brainpicker: “Words are events, they do things, change things. They transform both speaker and hearer; they feed energy back and forth…" +06/09/2018,Actors,@nlyonne,Because of balloons maybe? 🎈 https://t.co/jJMhGbm4zv +06/09/2018,Actors,@nlyonne,RT @TEDTalks: 4 simple exercises to strengthen your attention and reduce distraction: https://t.co/8GxPOxBTeS https://t.co/4WaRzEzCAn +06/09/2018,Actors,@nlyonne,RT @FilmStruck: Due to the Production Code almost all of the homosexual themes from Tennessee Williams's original stage play were removed f… +06/09/2018,Actors,@nlyonne,"RT @ToledoXCTF: “If you put your mind and heart into what you want to do, you’ll be able to do more than you think is possible and you can…" +06/09/2018,Actors,@nlyonne,"RT @Jacksons: “And now I’m ready to show, that we can come together and think like one- come together now, live together underneath the sun…" +06/08/2018,Actors,@nlyonne,RT @GhostPanther: I’m heart broken. I’ve dealt with depression and some days it can get you like a beast. I encourage anyone struggling to… +06/08/2018,Actors,@nlyonne,"RT @ruths: ""In these current circumstances, one must pick a side. I stand unhesitatingly and unwaveringly with the women” https://t.co/vyVp…" +06/08/2018,Actors,@nlyonne,RT @AndyRichter: Thread https://t.co/1NsGhAd8EZ +06/08/2018,Actors,@nlyonne,"RT @PamelaPaulNYT: “And though I don’t really care about what people say about me when I’m gone, I guess Jerry Stahl would make an entertai…" +06/08/2018,Actors,@nlyonne,https://t.co/tiJX2N6p9G +06/08/2018,Actors,@nlyonne,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/08/2018,Actors,@nlyonne,RT @KamalaHarris: Let’s be clear about what this is — our government has mobilized a deportation force to break up families and deport immi… +06/08/2018,Actors,@nlyonne,RT @nowthisnews: Studies show dogs prevent more burglaries than guns — so this campaign wants you to swap your gun for a shelter dog https:… +06/08/2018,Actors,@nlyonne,"RT @ShaunKing: BREAKING: Colin Kaepernick's legal team is going to subpoena Donald Trump in the @NFL collusion case. + +Donald Trump and NFL…" +06/08/2018,Actors,@nlyonne,What am I looking at. https://t.co/hxtYpynjr5 +06/08/2018,Actors,@nlyonne,RT @MattOswaltVA: looking forward to Snooki convincing Trump to pardon Edward Snowden +06/08/2018,Actors,@nlyonne,Major babe 🔥 https://t.co/TFHVXwZGoj +06/08/2018,Actors,@nlyonne,"RT @RVAwonk: Hey, ever been pregnant? Taken medicine for acne or anxiety or asthma? Been injured? Had surgery? Or anything listed below? + +C…" +06/08/2018,Actors,@nlyonne,RT @TeganEffect: @nlyonne This is you! https://t.co/Insp1hBRty +06/08/2018,Actors,@nlyonne,Maybe I’m an alien from Mars and I’m just not telling you. +06/07/2018,Actors,@nlyonne,"RT @LaFamiliaFilm: The first lady attended a FEMA briefing, her first appearance in front of camera in almost a month. Melania did not spea…" +06/07/2018,Actors,@nlyonne,RT @agedhippiex: @nlyonne you don’t deserve to be verified +06/07/2018,Actors,@nlyonne,RT @BrandzyFoSheezy: @nlyonne Talk about it girl 💅🏽 +06/07/2018,Actors,@nlyonne,How come they’re not telling us about the aliens they know are there? +06/07/2018,Actors,@nlyonne,🤯🤯👈🏽 https://t.co/VdwHreFzkx +06/07/2018,Actors,@nlyonne,🤯👈🏽 https://t.co/YPF0UDz2gF +06/07/2018,Actors,@nlyonne,"RT @SheilaEdrummer: Happy birthday Prince. WE had some amazing times together. 38yrs of Love, Music, God. I miss you but I'm at Peace. I lo…" +06/07/2018,Actors,@nlyonne,*not sure what the teletubbies sound like +06/07/2018,Actors,@nlyonne,Zero chill. Did the teletubbies write this +06/07/2018,Actors,@nlyonne,Omg this Alaska Airlines safety song +06/07/2018,Actors,@nlyonne,RT @IncredibleCulk: Aren’t glasses are just really tiny telescopes you wear on your face? +06/07/2018,Actors,@nlyonne,"RT @WaywardWinifred: the cruelty coupled with incompetence is staggering. + +https://t.co/nbquhktmxt" +06/07/2018,Actors,@nlyonne,#mars #life #aliens +06/07/2018,Actors,@nlyonne,"RT @RuPaul: “When I was a boy and I would see scary things in the news, my mother would say to me, ‘Look for the helpers. You will always f…" +06/07/2018,Actors,@nlyonne,"RT @CookieRiverside: A massive THANK YOU PARTY awaits you -- in Hell. +Satan is baking you a cake. +Demons are painting your tiny cage bright…" +06/07/2018,Actors,@nlyonne,@LuciaAniello ♥️ +06/07/2018,Actors,@nlyonne,RT @LuciaAniello: The new me. Music videos only. RIP my tv and film career. https://t.co/DDul7ofcEx +06/07/2018,Actors,@nlyonne,RT @marykarrlit: Most any #suicide is killing the wrong person. One of the few to survive jumping off the Golden Gate Bridge said the minut… +06/07/2018,Actors,@nlyonne,"RT @christinawilkie: On April 11, I called Trump’s favorite architect to ask about jobs he did in Eastern Europe that recently drew Mueller…" +06/06/2018,Actors,@nlyonne,RT @jemimakirke: Still not convinced warren Beatty and Shirley MacLaine are siblings. +06/06/2018,Actors,@nlyonne,"RT @FilmStruck: Celebrate the life of Chantal Akerman on her birthday with SAUTE MA VILLE ('68), HOTEL MONTEREY ('72), JE TU IL ELLE ('75),…" +06/06/2018,Actors,@nlyonne,RT @fairuza: Thrilled to find “Joseph Campbell and the power of Myth” on Netflix!! Brilliant man. Yay! +06/06/2018,Actors,@nlyonne,RT @KarenKilgariff: I mean https://t.co/8q7L2DRRcQ +06/06/2018,Actors,@nlyonne,"RT @AHarmonyMusic: Ok, but let’s ultimately give the part to Janelle Monáe. https://t.co/nlzT7OyL1k" +06/05/2018,Actors,@nlyonne,Omg it just won’t end. Human race out to lunch. https://t.co/EGYN6Ldnzk +06/05/2018,Actors,@nlyonne,@shannonwoodward Ur tech unavail Bc theremin +06/05/2018,Actors,@nlyonne,"RT @SenSanders: It costs $30,000 to send a California student to UCLA for a year. To send someone to prison, it costs $75,000. + +We need to…" +06/05/2018,Actors,@nlyonne,@mradamscott @annieleibovitz She’s still got it. 🖖🏾 +06/05/2018,Actors,@nlyonne,I also plead the fifth. @OITNB @thedanieb #july27 @netflix 🧡 https://t.co/NIMwLwkKyv +06/05/2018,Actors,@nlyonne,RT @michaelianblack: Not a lawyer - is witness tampering bad? +06/05/2018,Actors,@nlyonne,RT @wesleysnipes: For everyone that sends me this photo 300 times a day ... I SEENT IT!!! I SEENT IT! I SEENT IT! 😂 https://t.co/u7vumefgO9 +06/05/2018,Actors,@nlyonne,😍😍 @shannonwoodward #biopic https://t.co/W26DSuTrLk +06/05/2018,Actors,@nlyonne,RT @brioneh: it’s that time of year again https://t.co/btFJrS2i3P +06/05/2018,Actors,@nlyonne,@johnlevenstein Lol +06/05/2018,Actors,@nlyonne,@WillWGraham Will! https://t.co/QIL2T90eDh +06/05/2018,Actors,@nlyonne,RT @BradWalsh: @nlyonne You can be a judge on So You Think You Can @ Me +06/05/2018,Actors,@nlyonne,I ♥️ this movie. https://t.co/W9tYJamOA6 +06/05/2018,Actors,@nlyonne,How come I don’t get to judge a dance competition +06/05/2018,Actors,@nlyonne,RT @OITNB: Struttin' into #PrideMonth like... https://t.co/WaeNRA3i6A +06/04/2018,Actors,@nlyonne,Kate Mulgrew! @totallykate 🖖🏾♥️ https://t.co/qZEq3Tlt2f +06/04/2018,Actors,@nlyonne,RT @rgay: The Hunger paperback isn’t even out yet (next week) and it’s already going into a second printing. Nice work team. +06/04/2018,Actors,@nlyonne,Same to the max. Must get. https://t.co/uQRoHqKHfp +06/04/2018,Actors,@nlyonne,Pitch: Baby Sheldon doing baby stuff +06/04/2018,Actors,@nlyonne,From the makers of Young Sheldon and Middle Sheldon shows +06/04/2018,Actors,@nlyonne,Pitch: Old Sheldon show +06/04/2018,Actors,@nlyonne,🌈♥️🍊✨💚💙🔮@AsiaKateDillon @StonewallGives💙💚 🧡😍♥️ https://t.co/QZuVmigT1L +06/04/2018,Actors,@nlyonne,@chelseaperetti Or just scrap the cult and shot for shot remake of Smallville instead? +06/04/2018,Actors,@nlyonne,This shit is crazier than smoking cigarettes. https://t.co/cJ8U6cR8ws +06/04/2018,Actors,@nlyonne,Is this a real owl? https://t.co/ksBhMryLNf +06/04/2018,Actors,@nlyonne,RT @kimcaramele: @nlyonne Last seen headed toward https://t.co/RsHjH0uzuE +06/04/2018,Actors,@nlyonne,@Terri_Kett @katastrophe @chelseaperetti 👹🙌🏽👌🏽🍼🐩 +06/30/2018,Actors,@thedanieb,Are you pulling my leg? #dumbomagic +06/30/2018,Actors,@thedanieb,Does this really work? #dumbomagic +06/29/2018,Actors,@thedanieb,Taking this message with me everyday. https://t.co/pK0QNUdVpw +06/29/2018,Actors,@thedanieb,She did NoT come to play congrats @aquariaofficial #DragRaceFinale https://t.co/F1sJfunbWU +06/29/2018,Actors,@thedanieb,Go head @monetxchange Of course your Ms. Congeniality #tbt #DragRaceFinale https://t.co/d5trG2xvR2 +06/29/2018,Actors,@thedanieb,@eurekaohara killed that first battle. You did not come to play!! #DragRaceFinale +06/29/2018,Actors,@thedanieb,Them bitches killed it!!! 3 different looks in 1 battle! Yes @eurekaohara https://t.co/hecXsF8jeN +06/29/2018,Actors,@thedanieb,Y’all are so rude lol https://t.co/B5bZwOoeEF +06/29/2018,Actors,@thedanieb,Damn I was rooting for her too lmao https://t.co/ut1cR15KMH +06/29/2018,Actors,@thedanieb,@_thatguyy20 Lmao +06/29/2018,Actors,@thedanieb,@asialove519 My thought exactly +06/29/2018,Actors,@thedanieb,Anybody else like me worried about the butterflies getting stepped on? #DragRaceFinale https://t.co/RpmuaDAyxW +06/29/2018,Actors,@thedanieb,Omg my heart is beating like I’m lip syncing right now! #LipSyncFinale +06/29/2018,Actors,@thedanieb,“Be yourself to free yourself” 💜💜@eurekaohara #DragRaceFinale +06/29/2018,Actors,@thedanieb,@CynthiaEriVo Girl you better find a live stream!! Now!!! +06/29/2018,Actors,@thedanieb,Love me some @AsiaOharaLand #DragRaceFinale and YESSSSS for this outfit! +06/29/2018,Actors,@thedanieb,MOTHER O!!!! #DragRaceFinale https://t.co/lFQTNRzeX7 +06/29/2018,Actors,@thedanieb,Honey they are working these dancers tonight lol if I was dancing for the finale this would be me during breaks LOL… https://t.co/jt0kBg3FEV +06/29/2018,Actors,@thedanieb,Errboday Say Love!!! #DragRaceFinale https://t.co/WfLQTpkBua +06/29/2018,Actors,@thedanieb,These queens did not come to play!!!!! I’m so ready!! @RuPaulsDragRace #DragRaceFinale https://t.co/8ReBwcrRZR +06/28/2018,Actors,@thedanieb,So lovely meeting the one and only @RepMaxineWaters last night!! She sets it straight! https://t.co/5jOb5pbNt2 +06/28/2018,Actors,@thedanieb,Had a blast chatting it up with “Stranger Things” ⁦@priahferguson⁩ She’s such an intelligent little lady! ⁦… https://t.co/JsDYvRmFig +06/25/2018,Actors,@thedanieb,"RT @strongblacklead: Last night was magical ✨ +Here's a look at how we brought Black History to Hollywood. https://t.co/Ry8QmNKMqG" +06/25/2018,Actors,@thedanieb,Yes it is. https://t.co/FTCmYTL12S +06/25/2018,Actors,@thedanieb,What a day this was... grateful for moments like these. @netflix strongblacklead https://t.co/Zpb5ttn0Jd +06/25/2018,Actors,@thedanieb,#BlackExcellence #BlackRoyalty #StrongBlackLead Why I love being apart of @netflix We all get to be authentically w… https://t.co/bORmpsWy5y +06/20/2018,Actors,@thedanieb,@michaelb4jordan @MatthewACherry @creedmovie I can’t wait +06/19/2018,Actors,@thedanieb,@DanaiGurira @WomensHealthMag @lizplosser @WattsUpPhoto @YashuaSimmons Love this +06/17/2018,Actors,@thedanieb,😍😍😍 https://t.co/aDkaYz01tL +06/17/2018,Actors,@thedanieb,Then ➡️ to now. To the man who keeps me laughing and whose words can wipe away any tear. To the man who always went… https://t.co/obmRPCHvx3 +06/17/2018,Actors,@thedanieb,I don’t know if I can handle ep 3 @QueerEye SOOO GOOOD @netflix +06/17/2018,Actors,@thedanieb,S2 Ep2 of @QueerEye had me on the floor https://t.co/jexDfkukoa +06/17/2018,Actors,@thedanieb,Season 2 episode 1 of @QueerEye had me bawling. https://t.co/xnXp3Nwzp7 +06/17/2018,Actors,@thedanieb,@jclee1230 @RuPaulsDragRace Lol hehe 🙃 +06/16/2018,Actors,@thedanieb,@jclee1230 @RuPaulsDragRace @jclee1230 explain JC Lee explain. The other queens are killing it but Eureka is super dope! +06/16/2018,Actors,@thedanieb,#TeamEureka To the moon!! @RuPaulsDragRace +06/14/2018,Actors,@thedanieb,Let ‘em know you ain’t average today. 😉 +06/13/2018,Actors,@thedanieb,@ArianaDeBose @prabalgurung @DonnaSummerBway @jennyanina She bad. +06/12/2018,Actors,@thedanieb,Thank you @Variety for keeping a girl’s dreams alive. #Emmys #EmmysContender @OITNB https://t.co/JOY9O3SY82 +06/12/2018,Actors,@thedanieb,When every day isn’t sunshine and rainbows... there is always poetry @najwazebian https://t.co/3SMUUgKA96 +06/12/2018,Actors,@thedanieb,@imannmilner Love this +06/12/2018,Actors,@thedanieb,@JonPeake @OITNB 😉 +06/11/2018,Actors,@thedanieb,I missed the opening number but I’m back on track! Omg that was close!!! This #theatrenerd almost had a serious meltdown!!! #TonyAwards2018 +06/11/2018,Actors,@thedanieb,Yo #TonyAward2018 is not coming through clearly and I’m trying not to freak out for God’s sake. Noooooooooo!!!! +06/11/2018,Actors,@thedanieb,Umm is it my tv or is something happening to everyone’s tv watching the #Tonys2018 +06/10/2018,Actors,@thedanieb,Happy #TonyAward2018 I’m so hype for all my friends nominated or performing tonight!! Rock out with your (heart) out! 😝 +06/09/2018,Actors,@thedanieb,I second what @nlyonne says. https://t.co/8Df0teM8sy +06/08/2018,Actors,@thedanieb,@kerrywashington @AmericanSonPlay @StevePasquale @iamKENNYLEON Welcome back! Can’t wait to witness. 😊 +06/08/2018,Actors,@thedanieb,"@rabaus Well from someone who has made many phone calls, having someone to talk to like a therapist or a counselor… https://t.co/5DncmSJT5m" +06/08/2018,Actors,@thedanieb,"@rabaus With loosing two major icons to suicide in one week, haven’t you noticed the “big earners” are human too?… https://t.co/FgDHutwkqt" +06/08/2018,Actors,@thedanieb,"Asking for help is a strength not a weakness. Don’t be afraid to reach out. National Suicide Prevention Hotline: +1-800-273-TALK (8255)" +06/08/2018,Actors,@thedanieb,I say the definition of... melanin. You say the definition of... ? https://t.co/5HS5X4bKuD +06/08/2018,Actors,@thedanieb,So happy for you @Oprah 💜💜 https://t.co/Rnnghu22vC +06/06/2018,Actors,@thedanieb,Umm I’m stealing this one. Lol 😂 https://t.co/RzEUleAqF3 +06/06/2018,Actors,@thedanieb,The dude with the coolest office goes to @MatthewACherry Stopped by @Monkeypaw and I’m sorry but I think they have… https://t.co/K35viuyoEV +06/05/2018,Actors,@thedanieb,@shadowandact @donaldglover Please let this be so. +06/05/2018,Actors,@thedanieb,I plead the fifth. @OITNB 🍊 https://t.co/SgdwiPxO78 +06/05/2018,Actors,@thedanieb,I’m here for this change. https://t.co/UUJHqO6mem +05/31/2018,Actors,@thedanieb,@TreshelleEdmond I’m so sorry for your loss Treshelle. Praying for you and your family. +05/30/2018,Actors,@thedanieb,"@JMunozActor @OITNB Yea you didn’t know, lol." +05/30/2018,Actors,@thedanieb,"Went out for a night on the town in my oh so comfy, oh so cute @ftfsnaps dress last night. Fell in love with this… https://t.co/ruxhxNuTmf" +05/29/2018,Actors,@thedanieb,Okay now that #RoseanneCancelled Can we please bring back #familymatters or do a #livingsingle reboot? +05/29/2018,Actors,@thedanieb,Yes! 🙌🏿 https://t.co/IeF0NrRfmu +05/29/2018,Actors,@thedanieb,@Coco_ChannelB We gotta plan something to hang out +05/29/2018,Actors,@thedanieb,@Coco_ChannelB Miss you and love you too +05/24/2018,Actors,@thedanieb,@pejvahdat I feel a hang coming soon +05/24/2018,Actors,@thedanieb,@pejvahdat love seeing on so many tv shows at one time!! Miss you bro! +05/23/2018,Actors,@thedanieb,@MrTonyHale Come through @MrTonyHale https://t.co/q0iBUcqtTC +05/22/2018,Actors,@thedanieb,Hey @KenneyGreen I think I’m gonna go to @mariescrisis Friday. Will you be there? 😊 +05/22/2018,Actors,@thedanieb,Keeping my cool. https://t.co/1RtQ1CvBjO +05/21/2018,Actors,@thedanieb,"RT @RebeccaJarvis: “All of these things that I’ve wanted to do, I’m doing because I’m saying I can and I will.” - @thedanieb on the #NoLimi…" +05/21/2018,Actors,@thedanieb,Turn up! Love the Obamas. https://t.co/ygsZqqi8TX +05/20/2018,Actors,@thedanieb,Sunday Kind of Love. 💕 https://t.co/YvG11Bul7N +05/19/2018,Actors,@thedanieb,@JaimePrimak Hey girl hey 👋🏿 +05/18/2018,Actors,@thedanieb,"Michael J. Woodard Sings ""Still I Rise"" by Yolanda Adams - Top 5 - Ameri... https://t.co/1CUcmHbIlX via @YouTube I… https://t.co/L0d4S1iVQa" +05/18/2018,Actors,@thedanieb,You are an angel Michael. It brought me so much joy to hear you sing @YolandaAdams I love how you keep God first an… https://t.co/AcG4AWcFIc +05/18/2018,Actors,@thedanieb,Woke up in the best mood 🎊 counting my blessings. +05/16/2018,Actors,@thedanieb,Closer to home means closer to him. 💕 +05/16/2018,Actors,@thedanieb,"@Churlynnn I understand and you shouldn’t stop fighting, but this is a battle that leads to a dead end. I’m on your… https://t.co/Jo3sZmgNuS" +05/16/2018,Actors,@thedanieb,"Sweetheart. Churlynnn... I deleted bc I wanted too, bc I get to choose the battles I feel are worth fighting. Tryin… https://t.co/XvFKvEPEdp" +05/16/2018,Actors,@thedanieb,"Playing @LeAndriaJ song “Better days are coming” while being stuck in the airport for over 7hrs, now I’m delayed at… https://t.co/dISrpfCI0K" +05/14/2018,Actors,@thedanieb,"It’s not always gonna be easy, but you gotta do what’s best for you." +05/14/2018,Actors,@thedanieb,"RT @seewhatsnext: #OITNB's @thedanieb on the “subconscious mentorship” that happens when women are in charge: ""When you see Jenji Kohan run…" +05/13/2018,Actors,@thedanieb,@Luvvie @NicoleArbour It’s so annoying. +05/13/2018,Actors,@thedanieb,"@TheRoot STOP!!!!! As someone that’s a woman and who’s black, I wish she would just stop! This cry for relevance is… https://t.co/uRe1ly42J7" +05/13/2018,Actors,@thedanieb,Thank you mommy for helping me become the woman I am today. Love you more than you’ll EVER know! 💕 https://t.co/p1gFOJsiac +05/13/2018,Actors,@thedanieb,@The_Oklahomie Lol. Even in flat shoes ? +05/13/2018,Actors,@thedanieb,@theSheenaB This was me. Lol and it wasn’t even that many steps to the next floor 😆 +05/13/2018,Actors,@thedanieb,@lydiajoy50 Lol +05/13/2018,Actors,@thedanieb,Bye Felicia’s. +05/13/2018,Actors,@thedanieb,@_audge_ Wrong answer lol https://t.co/hwvU0WWggF +05/13/2018,Actors,@thedanieb,I. Can’t. Wait. https://t.co/BQERHEGIec +05/12/2018,Actors,@thedanieb,This is the best thing I’ve seen all night lmbo. The #whitegirltears at the end had me rolling. 😂 https://t.co/cvfZm6IZlN +05/11/2018,Actors,@thedanieb,Thank you @essencemag Hope this encourages someone on their journey.💕 https://t.co/wmqeEoTiEr +05/11/2018,Actors,@thedanieb,If you’re a teenager or young adult don’t call me sweetie or hun. I will call you out on that ish. #petpeeve https://t.co/zHKNiF325p +05/11/2018,Actors,@thedanieb,Things to know this morning. @RepMaxineWaters I applaud you. https://t.co/1U812UkMzt +05/11/2018,Actors,@thedanieb,@Essence Shine on @Essence ✨ +05/10/2018,Actors,@thedanieb,"How do things like this just get to happen? Clearly by the way he so easily jacked him up, that officer clearly wa… https://t.co/WSnLEQWpse" +05/09/2018,Actors,@thedanieb,RT @Essence: .@thedanieb isn’t your typical fashion girl—and that’s part of her magic. https://t.co/wuhtqUHixf https://t.co/pqUJcyKi93 +05/08/2018,Actors,@thedanieb,@vulture Smart AF. +05/08/2018,Actors,@thedanieb,L.A. what time does American Idol come on? +05/08/2018,Actors,@thedanieb,@MatthewACherry Hilarious +05/07/2018,Actors,@thedanieb,"RT @Essence: .@thedanieb redefines beauty standards every time she hits the red carpet or slays the runway. Now, she's taking things a bit…" +05/07/2018,Actors,@thedanieb,@JSim07 Wow!! +05/07/2018,Actors,@thedanieb,Living fully in the grand moments! +05/06/2018,Actors,@thedanieb,Catch the message(s). https://t.co/ZTUltvdbpd +05/06/2018,Actors,@thedanieb,When you’ve told your driver you’ve been somewhere a hundred times and she still tells you the name of every block.… https://t.co/bwd1OZvl3N +05/03/2018,Actors,@thedanieb,@samirawiley Beautiful +05/03/2018,Actors,@thedanieb,I’m not gonna allow ignorance to stress me out today! Miss me with that. ☀️ https://t.co/fyKAlay4sp +05/02/2018,Actors,@thedanieb,Today is just one of them days... https://t.co/jRTsodPWUg +05/02/2018,Actors,@thedanieb,@BenSPLATT @MichaelJWoodard Totally 2nd this @BenSPLATT 😍😍he’s a winner! +05/01/2018,Actors,@thedanieb,Between this and the Kanye BS I just can’t today!!! Crazy 🤦🏿‍♀️ https://t.co/bgrplqcsuB +05/01/2018,Actors,@thedanieb,RT @JonBatiste: You’re the only version that exists. +04/30/2018,Actors,@thedanieb,Love late night karoake! https://t.co/zNZGWHZ8jS +04/28/2018,Actors,@thedanieb,@LeaMichele Congrats girl!!! +04/28/2018,Actors,@thedanieb,I’m completely obsessed with @MichaelJWoodard You have magic running all through your veins my friend. Continue to… https://t.co/kvzBvtGGFO +04/26/2018,Actors,@thedanieb,Speaking your truth so that all the “Dirty Computers” can!! Salute. https://t.co/I9XhvVfj4w +04/26/2018,Actors,@thedanieb,@IceIceHazy Watch away my friend!! 👍🏾 +04/26/2018,Actors,@thedanieb,Thank you @essence for letting me show off my vibrant style IN LIVING COLOR. Check out my 6 page spread in this mon… https://t.co/LfJtyyhCwa +04/24/2018,Actors,@thedanieb,@MadameNoire Thank you for the lovely article. +04/23/2018,Actors,@thedanieb,Sun-kissed. Wearing @CSiriano https://t.co/9mlTSN4VoJ +04/23/2018,Actors,@thedanieb,@jdgib @SpartanRace What’s your ig? Tried tagging you +04/22/2018,Actors,@thedanieb,I earned this baby!! My first @SpartanRace thank you to my amazing trainer for showing me their are more rewarding… https://t.co/Q30dE7l49Q +04/20/2018,Actors,@thedanieb,"Someone once said, “You teach people how to treat you.” Yelp, STOP second guessing me. https://t.co/JW8jxcl7MH" +04/17/2018,Actors,@thedanieb,RT @whenever: Looking for something AMAZING to do tonight? Come see @thedanieb and Ben Sinclair (@hmonhbo) on tonight's show! Get your tick… +04/16/2018,Actors,@thedanieb,Gonna be a good time. https://t.co/2f1KwkL5RP +04/16/2018,Actors,@thedanieb,Feeling good on this rainy Monday!! Hope you’re have a good day wherever you are in the world. +04/11/2018,Actors,@thedanieb,You’re one of the dopest women in Hollywood. 👑 great seeing you last night. https://t.co/GNp9TBrYRd +04/08/2018,Actors,@thedanieb,What @leslieodomjr said!!! https://t.co/miHxMF5vsn +04/07/2018,Actors,@thedanieb,"RT @universalstand: Q: are you ready for a new Brooks Overalls color? +A: yes, yes you are. +— +Designed by @thedanieb for you. #USxDB +Droppi…" +04/06/2018,Actors,@thedanieb,@PadmaLakshmi Hilariously perfect gif lol +04/04/2018,Actors,@thedanieb,@kymwhitley @LenaWaithe That’s been driving me crazy.. Mystery is solved! haha +04/04/2018,Actors,@thedanieb,"Maya Angelou, the original #PhenomenalWoman, would’ve been 90 years-old today. We’re here to remind all women, espe… https://t.co/yF2UKmWCdE" +04/04/2018,Actors,@thedanieb,Lord please let these eyelashes stay on todayyyyyy!! Intercede for the lashes Lord!! https://t.co/XROo2E7gbN +04/03/2018,Actors,@thedanieb,Story of my life 😂 https://t.co/qB474w9p0M +04/02/2018,Actors,@thedanieb,@Scarlet0o8 Take me back. +04/02/2018,Actors,@thedanieb,God wins the best April Fools prank on the ENTIRE city of New York. Yesterday I had on open toe shoes and now I got… https://t.co/yR39E1vXwy +03/30/2018,Actors,@thedanieb,Love this song by @yebbasmith called “Evergreen” Get into her. ❤️ https://t.co/3XFgzWKYBv +03/29/2018,Actors,@thedanieb,@NiaLong such a huge STANDOUT!! You were phenomenal in #RoxanneRoxanne PHE•NO•ME•NAL! +03/29/2018,Actors,@thedanieb,I’ve been on safari in Tanzania but if this happened to me. I just don’t know... 😱💀 https://t.co/5j9Z1XAAIs +03/29/2018,Actors,@thedanieb,@Essence @JoyAnnReid Of course she does!! 😊 +03/29/2018,Actors,@thedanieb,@kerrywashington Noooo!!! My heart. https://t.co/0oHiumQUqZ +03/29/2018,Actors,@thedanieb,My middle name is CrayCray. #tbt 🎥 @uptheamp https://t.co/X2fVcKLqZu +03/29/2018,Actors,@thedanieb,@Blacktress finally caught up and watched you on @2DopeQueens and you were so f**king phenom!!! 🔥 🔥 Just had to tell you! +03/28/2018,Actors,@thedanieb,Getting through the day. 🤪 +03/28/2018,Actors,@thedanieb,@annasale @Spotify Creating dreams in unexpected places. 💕 +03/26/2018,Actors,@thedanieb,@GlennJMurphy @OITNB Thank you +03/26/2018,Actors,@thedanieb,Rise and Grind. Back to work. +03/24/2018,Actors,@thedanieb,#wewantchange #EndGunViolence +03/24/2018,Actors,@thedanieb,#MARCHFOROURLIVES Listen to our youth and help them make change for the better!! +03/23/2018,Actors,@thedanieb,Great example of what it means to take care of our communities. #RP Anyone know where this kind of training is ava… https://t.co/9TwzMkqRjG +03/23/2018,Actors,@thedanieb,@MisterTrimmer @jpflannery Lovely meeting you. 💕 +03/22/2018,Actors,@thedanieb,Unconstitutional. I can’t believe this is real. https://t.co/lJOODcJJ0A +03/20/2018,Actors,@thedanieb,💋💋 https://t.co/Gu0j2bqrte +03/20/2018,Actors,@thedanieb,Come on Auntie!!! 🙌🏿 https://t.co/19LIV7HIVr +03/20/2018,Actors,@thedanieb,"When you sneeze twice, you say Excuse Me and your uber Driver doesn’t say Bless You... what I wanted to do 👇🏾lol https://t.co/jtgPJjXRbf" +03/19/2018,Actors,@thedanieb,Totally just forgot how to spell •Scissors• so I had to use the voice type feature on my 📱 to remember how to spell… https://t.co/wgntE3wS3h +03/19/2018,Actors,@thedanieb,@JohnWBrown1 @LenaWaithe @SHOTheChi Agreed lol +03/19/2018,Actors,@thedanieb,@IssaRae I am dead lol +03/19/2018,Actors,@thedanieb,"RT @universalstand: • staring down the week in style • +@thedanieb in the Dani sweater dress she designed for US. What are you looking forwa…" +03/18/2018,Actors,@thedanieb,@Love2244 Umm 😐 no I wasn’t. I had a film there but wasn’t able to make it. +03/18/2018,Actors,@thedanieb,NY ✈️ AUS ✈️ NY ✈️ DR ✈️ LA all in 3 weeks!! And I’m still standing! Say what!?! https://t.co/9R3SHLc7fB +03/18/2018,Actors,@thedanieb,Girl you made me laugh so hard. Thank you for being my blessing of the day! 😊 https://t.co/ggn0cZxGau +03/17/2018,Actors,@thedanieb,@adriennelwarren so proud of you girl!! Kill it out there in London!! +03/17/2018,Actors,@thedanieb,"RT @joshuahenry20: You could be on Broadway, in a 10 seat theater, or putting on a play in your backyard... When you’re surrounded by artis…" +03/14/2018,Actors,@thedanieb,"Sometimes you have to stand alone, but keep standing!! @justinlblackman Proud of your courage. https://t.co/bSrdjZW6p5" +03/14/2018,Actors,@thedanieb,"@JustinIBlackman Sometimes you have to stand alone, but keep standing!! @justinlblackman Proud of your courage." +03/14/2018,Actors,@thedanieb,I STAND WITH YOU ALL TODAY!! #nationalschoolwalkout +03/11/2018,Actors,@thedanieb,Miss you guys!! #sadiefilm @sxsw Wish I could be there premiering it up!! https://t.co/zS6KtYvstc +03/10/2018,Actors,@thedanieb,"These mosquitos making a full meal out of me in the DR, from my neck to my elbow to my babytoe 😭 lol" +03/09/2018,Actors,@thedanieb,Aww thanks Bud! https://t.co/vATCKK6R3d +03/09/2018,Actors,@thedanieb,HEY check this out! Artist • Activist. Is that you? 8 days left to apply to the Artist As Citizen Conference! AAC i… https://t.co/ZGg1Wh4zBQ +03/08/2018,Actors,@thedanieb,@dhalcombe I miss you. That’s it. ✌🏾 +03/07/2018,Actors,@thedanieb,My little brother knows what he’s talking about. https://t.co/b6GVdEtJsl +03/07/2018,Actors,@thedanieb,Sending so much love to Queen @ava today! So sad I’ll be missing the NY premiere of #WrinkleInTime!Sending so much… https://t.co/r1vRTgEDSV +03/07/2018,Actors,@thedanieb,@LauraBenanti @RuthieAnnMiles Just Heartbreaking. +03/07/2018,Actors,@thedanieb,Jetlagged. +03/06/2018,Actors,@thedanieb,This is everything. https://t.co/C4ntNT0yPa +03/05/2018,Actors,@thedanieb,@natasharothwell Good point +03/04/2018,Actors,@thedanieb,Gonna be my mood all week! Go head on @thebettygabriel 2 snaps for the Queen 👑 https://t.co/gE50OZZOql +03/04/2018,Actors,@thedanieb,I said I wasn’t gonna tweet about the #Oscars but the way #DeeRees just stepped out on this carpet tho!!! She looks… https://t.co/WrT742WoXy +03/03/2018,Actors,@thedanieb,"The way this DVR is set up, I can’t wait to get home. Lol https://t.co/TIRJDi2WOB" +03/03/2018,Actors,@thedanieb,"Australia, you wore me out... In the best way. ✌🏾until next time." +03/02/2018,Actors,@thedanieb,♥️♠️♥️ https://t.co/8EyeM22JkL +03/02/2018,Actors,@thedanieb,This is everything. https://t.co/hp986zpu9R +02/28/2018,Actors,@thedanieb,From Coogee to Bondi. Outchea Beachin’! 🏝 https://t.co/G56vuIoixP +02/28/2018,Actors,@thedanieb,@djbr00ks So proud of you baby brother @djbr00ks Keep striving for greatness!! +02/28/2018,Actors,@thedanieb,@jasminemihalski That works too 👍🏾 +02/27/2018,Actors,@thedanieb,"When asked where we was from, you already know... #WAKANDA ✊🏾 https://t.co/gHaWLGGgEa" +02/27/2018,Actors,@thedanieb,"Life is meant to be lived fully. I climbed the 1,654ft high Sydney Harbour Bridge yesterday. #worthit I smiled all… https://t.co/rz9XE9Hytx" +02/27/2018,Actors,@thedanieb,@steviekae @IMDb @theblackpanther Just found out it’s how many people visit their IMDb page +02/27/2018,Actors,@thedanieb,"Sydney, Australia I’m enjoying you. 🇦🇺" +02/26/2018,Actors,@thedanieb,How Cray! 🤪 We ran into @Coolio in Australia. Such a nice man. https://t.co/RMGZoCWR2Q +02/26/2018,Actors,@thedanieb,@luckyesteban Thanks for all your help today. 😎 +02/25/2018,Actors,@thedanieb,I see you @LOFT. Good move! #inclusion #stepforward +02/23/2018,Actors,@thedanieb,"Agreed, I second this. #BoycottNRA https://t.co/GBD7FL6VW1" +02/23/2018,Actors,@thedanieb,RT @NetflixANZ: Guess who's coming to Mardi Gras! https://t.co/CFzFk2B0vL +02/22/2018,Actors,@thedanieb,"On some real Prince shit, yet so uniquely her! Love it! https://t.co/nzk1VVBFwJ" +02/22/2018,Actors,@thedanieb,Wheels up 🛫 Can’t wait to Be Down Unda! 🇦🇺 see you soon Australia. +02/21/2018,Actors,@thedanieb,@thecinechick @SADIEfilm @sxsw @PitStopTheMovie @melanielynskey @JohnGallagherJr @MrTonyHale @WilliamsKre… https://t.co/egp8tL23jY +06/30/2018,Actors,@Lavernecox,"RT @ACLwoo: We must love each other harder than ever before... JUSTICE is what LOVE looks like in public. No justice, no peace!! @Lavernec…" +06/30/2018,Actors,@Lavernecox,"RT @paolamendoza: Today, let’s march. +#FamiliesBelongTogether https://t.co/tvuXLRm9pk" +06/30/2018,Actors,@Lavernecox,RT @kerrywashington: Me! 👋🏾 #FamiliesBelongTogether FIND A MARCH NEAR YOU 👇🏾 https://t.co/yiXdUmpFmH https://t.co/dQMezH4sSA +06/29/2018,Actors,@Lavernecox,"RT @TessaThompson_x: Sometimes we cheer so loudly at someone speaking their truth, that we miss what they say. (Here’s looking at you media…" +06/29/2018,Actors,@Lavernecox,RT @itsgabrielleu: 👇🏾👇🏾👇🏾👇🏾👇🏾... Some people will never get it but not for a lack of info or 1st hand accounts but due to willful ignorance… +06/28/2018,Actors,@Lavernecox,@LaurenJauregui is celebrating her 22nd birthday by supporting the inaugural #stonewallday. Text STONEWALL to 24372… https://t.co/81dW6IpIwr +06/28/2018,Actors,@Lavernecox,"RT @ozy: OZY FEST 2018 SPRING SWEEPSTAKES +1. Like❤️ this post +2. Comment on this post with who you want to see most. +3. Tag a friend. +One l…" +06/27/2018,Actors,@Lavernecox,Let's keep holding on to each other tight and fighting back. Sending you lots of love https://t.co/rh7oGjgmTQ +06/27/2018,Actors,@Lavernecox,"Wow, just wow. As if things aren't already scary https://t.co/QTiPJrqQnl" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: ""Concerned citizens are encouraged to contact the Jacksonville Sheriff’s Office at (904) 630-2133."" Please follow @equalit…" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: Antash’a English and Celine Walker, both black trans women, were two earlier deaths, the latest victim is as of yet uniden…" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: I know we're all deluged with horrible news, but there's a crisis unfolding in Jacksonville, FL that needs more attention.…" +06/25/2018,Actors,@Lavernecox,RT @janetmock: Have y'all seen @theMAJORdoc about trans icon and pioneer Miss Major Griffin-Gracy? It makes for stellar #Pride viewing. Ava… +06/25/2018,Actors,@Lavernecox,#TransIsBeautiful https://t.co/ZZm8jr78V7 +06/25/2018,Actors,@Lavernecox,Congrats to all the winners and amazing performers at tonight's #BETAwards #BETAwards2018 +06/25/2018,Actors,@Lavernecox,@IamDebraLee congratulations and thank you for the work! #BETAwards2018 #BETAwards +06/25/2018,Actors,@Lavernecox,"RT @janetmock: To learn more about “pumping,” this article is a good primer/start. https://t.co/YusD4ucorD #posefx" +06/25/2018,Actors,@Lavernecox,RT @janetmock: This episode is about the body and our choice to do with it what we want. Though we never shame our characters for doing wha… +06/25/2018,Actors,@Lavernecox,RT @JSim07: #StrongBlackLead https://t.co/YVQ26MZXQu +06/25/2018,Actors,@Lavernecox,Thank you #PoseonFX for another gorgeous episode about the truths of our lives as #lgbtq+ people of color. #TransIsBeautiful +06/25/2018,Actors,@Lavernecox,RT @browneph: @netflix got the juice https://t.co/8XXSPlC2nO +06/24/2018,Actors,@Lavernecox,I know. I live! #PoseonFX https://t.co/0QSKTUI1h7 +06/24/2018,Actors,@Lavernecox,Just trying to stay in the moment and take it as it comes. I am super grateful for this moment. https://t.co/bbcjn4YlXF +06/24/2018,Actors,@Lavernecox,RT @paolamendoza: The crowd is gather in Tornillo to say kids don’t belong in cages. Kids don’t belong with cages with their moms either!… +06/24/2018,Actors,@Lavernecox,Beautiful https://t.co/SoXEOBdZgN +06/24/2018,Actors,@Lavernecox,When she was single she did not facetime. Bad lighting can take a girl out of the game. And taking the time to lig… https://t.co/ItLIpOmsWW +06/22/2018,Actors,@Lavernecox,"RT @TransLawCenter: ""There are many issues, but what’s always pressing on my heart is the need to prioritize the safety of Black and brown…" +06/22/2018,Actors,@Lavernecox,Yassss! #BeatForTheGods https://t.co/LyIsVRfL93 +06/22/2018,Actors,@Lavernecox,WE are loved out in the open. Can't wait for the next episode of #poseFX https://t.co/UAJ5I5Vd40 +06/22/2018,Actors,@Lavernecox,She did preach. Hallelujah! https://t.co/LR2s8DRsSt +06/22/2018,Actors,@Lavernecox,RT @them: How Billy Porter Is Crafting A Legacy For Queer Youth of Color #Queeroes2018 https://t.co/YWOyJfamZf https://t.co/0vFFf9G4t0 +06/22/2018,Actors,@Lavernecox,RT @them: How Reina Gossett Is Fighting for the Unruly Queers of the World #Queeroes2018 https://t.co/wBfGKvsq8u https://t.co/c6KhIH98dl +06/22/2018,Actors,@Lavernecox,RT @them: How Director Silas Howard Is Increasing Trans Representation Behind the Scenes #Queeroes2018 https://t.co/45XcPbBUC7 https://t.c… +06/22/2018,Actors,@Lavernecox,"RT @janetmock: No, I’m not crying. 😭 Such a gorgeous #queeroes2018 tribute by my lil sis @msevareign! #girlslikeus https://t.co/n0u7folxqB" +06/22/2018,Actors,@Lavernecox,RT @them: How Lena Waithe Is Bringing Black Queer Narratives to the Media Forefront #Queeroes2018 https://t.co/zYfZlS3EtK https://t.co/oYWv… +06/22/2018,Actors,@Lavernecox,RT @them: How Ali Stroker Is Making History as a Queer Disabled Person on Broadway #Queeroes2018 https://t.co/z4xcqPKpc6 https://t.co/GFeAo… +06/22/2018,Actors,@Lavernecox,One of my #queeroes indeed. @Peppermint247 Love you girl! #TransIsBeautiful https://t.co/7k48rcCqss +06/22/2018,Actors,@Lavernecox,"""Find what makes you feel most alive and human and never let go of it. You will come to learn that this matters mor… https://t.co/v8HgDB8CcH" +06/21/2018,Actors,@Lavernecox,RT @chasestrangio: White supremacy works by traumatizing generations and then blaming people of color for their trauma and acting as though… +06/20/2018,Actors,@Lavernecox,"RT @Alyssa_Milano: Grab the tissues and turn up the sound. REAL LOUD. + +When you’re finished watching this video please call (202) 224-3121…" +06/20/2018,Actors,@Lavernecox,RT @BirkbeckUnion: #Pride is not just a day to don the glitter and wear your most fabulous outfit - Its first and foremost a protest to dem… +06/18/2018,Actors,@Lavernecox,Thank you! https://t.co/LhNbdqwXFo +06/18/2018,Actors,@Lavernecox,Let's hope and prayer https://t.co/OXwrBttQZF +06/18/2018,Actors,@Lavernecox,Exactly what I was thinking honey. Good luck with that! https://t.co/uGMMo7PxgM +06/18/2018,Actors,@Lavernecox,RT @ourladyj: The stigma around HIV/AIDS is still alive and well in 2018. It has been the responsibility of a lifetime to humanize and empo… +06/18/2018,Actors,@Lavernecox,Amen Hallelujah! https://t.co/vA9vqlxLVx +06/18/2018,Actors,@Lavernecox,Category is...#FORYOURCONSIDERATION @theebillyporter #POSEFX. Bravo Billy +06/18/2018,Actors,@Lavernecox,@JohnnySibilly you were wonderful tonight on #PoseonFX . Congrats darling +06/18/2018,Actors,@Lavernecox,RT @luisapthomson: This answer by the great @Lavernecox for the @VanityFair proust questionnaire is so perfect and I can’t stop thinking ab… +06/18/2018,Actors,@Lavernecox,#PoseFX is telling stories about dating while trans I have wanted to tell for years. Thank you to the entire cast a… https://t.co/oOTMEVOS0L +06/18/2018,Actors,@Lavernecox,"Watching #PoseFX with my bf tonight,I said from experience, ""Angel needs to learn mistresses dont get the holidays.… https://t.co/9LZ7Xyz1iY" +06/18/2018,Actors,@Lavernecox,"""Let's wait a while"" is giving me my life #PoseFX" +06/17/2018,Actors,@Lavernecox,"@chasestrangio Happy #FathersDay darling. Sending love to Dad's of all gender identities, sexual orientations, rac… https://t.co/Ft1d3c2cYd" +06/17/2018,Actors,@Lavernecox,RT @chasestrangio: For this #FathersDay also a reminder that trans folks are parents too. 🙋🏻‍♂️ +06/17/2018,Actors,@Lavernecox,This thread👇 https://t.co/aZ6Vdnwkqh +06/17/2018,Actors,@Lavernecox,Amen sister https://t.co/3aVybRF0hj +06/15/2018,Actors,@Lavernecox,Yay Johnny! https://t.co/nBAdYfKSga +06/15/2018,Actors,@Lavernecox,RT @LenaWaithe: have you applied yet? no? why? let's stop chasing our dreams and start catching them muthafuckas. okay bye! https://t.co/dE… +06/14/2018,Actors,@Lavernecox,Love this https://t.co/Rc7x9GluUW +06/14/2018,Actors,@Lavernecox,RT @davidclark: “Believing you are unworthy of love and belonging — that w ho you are authentically is a sin or is wrong — is deadly. Who y… +06/14/2018,Actors,@Lavernecox,https://t.co/rWFK3xGAso +06/14/2018,Actors,@Lavernecox,RT @Into: We interviewed @RealTCooper about @ManMadeDoc - his new film that follows trans men preparing for an all transgender bodybuilding… +06/14/2018,Actors,@Lavernecox,@chernowa @cmcasarez Ha love it +06/13/2018,Actors,@Lavernecox,RT @SamFederFilm: BIG UPDATE! @Lavernecox has joined our team as Executive Producer! https://t.co/22HQqQPmPI +06/13/2018,Actors,@Lavernecox,"So excited about this project. #Transisbeautiful +https://t.co/ucbQIxl32w" +06/13/2018,Actors,@Lavernecox,RT @PopCulture: #OITNB co-star @Lavernecox helping spread positive message with @Airbnb experience: https://t.co/fElrP5X4mM https://t.co/kW… +06/12/2018,Actors,@Lavernecox,RT @yahoolifestyle: Transgender celeb @Lavernecox talks about her greatest challenge: 'Getting out of my own way' https://t.co/qZDKW1tk3y #… +06/12/2018,Actors,@Lavernecox,https://t.co/szCFyyt8Q1 +06/12/2018,Actors,@Lavernecox,"RT @Zac_Posen: Premiering my new series on @YahooLifestyle so you can now hear these inspirational women #LoudandClear, beginning with the…" +06/12/2018,Actors,@Lavernecox,"When @Zac_Posen asked me to share my message #LoudAndClear , I told him that my journey is proof that anything is… https://t.co/eCtRhqypuZ" +06/12/2018,Actors,@Lavernecox,RT @ChrisMichaelW: More people should watch @freakshowmovie!! It has a good message and filled with great stars like @BetteMidler and @Lave… +06/12/2018,Actors,@Lavernecox,RT @rosaclemente: .@Lavernecox We knew what was happening.We went to Puerto Rico and saw refrigerated trucks filled with cadavers.The preve… +06/11/2018,Actors,@Lavernecox,"RT @VanityFair: Which historical figure does @LaverneCox most identify with? ""Eartha Kitt."" https://t.co/F7zKjzGxtp" +06/11/2018,Actors,@Lavernecox,RT @LookDifferent: “Misgendering is a form of cultural & structural violence. This leads to direct violence against trans people which dimi… +06/11/2018,Actors,@Lavernecox,"RT @DiMAwards: Vote for Cosmopolitan with Laverne Cox on the cover, to win the Diversity in Media Moment of the Year. Visit our website, vo…" +06/11/2018,Actors,@Lavernecox,"""Do what you must and I'll defend as I have to"". I love Taylor Mason so much! @SHO_Billions #BillionsFinale #Billions" +06/11/2018,Actors,@Lavernecox,What a lesson @SHO_Billions teaches us about gender neutral pronouns! Everyone respects Taylor's preferred gender p… https://t.co/DIOLNyudYt +06/10/2018,Actors,@Lavernecox,RT @Alyssa_Milano: We need the #ERANow. https://t.co/oFlJAGam6z +06/10/2018,Actors,@Lavernecox,"RT @fusetv: Four years ago, @LaverneCox made history as the first transgender person to grace the cover of TIME magazine. Keep breaking thr…" +06/09/2018,Actors,@Lavernecox,"RT @NewsMuseumEN: On the 9th June 2014 @TIME published, for the first time, a cover featuring a trangender person. @Lavernecox is an actres…" +06/09/2018,Actors,@Lavernecox,"RT @DangerLove12: ""Different levels different devils. But I am still here. I keep on keeping on and that feels like a miracle today."" thank…" +06/08/2018,Actors,@Lavernecox,"RT @BreneBrown: The news of Kate Spade’s death was a cruel reminder about the realities of depression and anxiety, and about the dangerous…" +06/08/2018,Actors,@Lavernecox,Love you @Essence https://t.co/yZs9zKDyEp +06/06/2018,Actors,@Lavernecox,"RT @ValerieJarrett: Kalief was imprisoned on Rikers for three years, and spent time in solitary confinement, for stealing a backpack. Rele…" +06/06/2018,Actors,@Lavernecox,"RT @RachGoldstein: 3 years since Kalief Browder’s death and still no action. Now is the time to honor his memory. + +Take the pledge for Kali…" +06/06/2018,Actors,@Lavernecox,RT @bobbybennn007: https://t.co/f2wxZafiej this is something that you must listen to... Knowledge is power @Lavernecox @LGBTfdn @LGBT +06/06/2018,Actors,@Lavernecox,Yas! https://t.co/laG2aXKHrm +06/04/2018,Actors,@Lavernecox,RT @ChrisMichaelW: TOMORROW: The Awesome @freakshowmovie will be out on DVD and Blu-Ray!! Our family’s copy got pre-ordered and will be de… +06/04/2018,Actors,@Lavernecox,Oh yes! What a cast! Just this trailer inspires me to be better. I hear your call fellow artists. I hear your call.… https://t.co/XdANwK1s4s +06/04/2018,Actors,@Lavernecox,@candiscayne @PoseOnFX Always! You are everything! +06/04/2018,Actors,@Lavernecox,You can join me TODAY and support the Stonewall Inn Gives Back Initiative Auctionrunning now on Charitybuzz by bidd… https://t.co/5szMSyDG5F +06/04/2018,Actors,@Lavernecox,"So proud to announce I am a Stonewall Inn Ambassador, supporting the Stonewall Inn + Stonewall Inn Gives Back Initi… https://t.co/hiq03ynH0g" +06/04/2018,Actors,@Lavernecox,"RT @octopodians: in the words of @Lavernecox: ""It is revolutionary for any trans person to choose to be seen and visible in a world that te…" +06/04/2018,Actors,@Lavernecox,"RT @DuleHill: Approximately 22 Veterans a day commit suicide. + +Would at least 22 of my Twitter friends please copy and tweet? (Not RT.)…" +06/04/2018,Actors,@Lavernecox,Congratulations darling. What a truly wonderful show! https://t.co/1Ngmvs5SeU +06/04/2018,Actors,@Lavernecox,Tonight is the premiere of @PoseOnFX. https://t.co/Aa6yHe8uwk +06/03/2018,Actors,@Lavernecox,#Doubt was such a labor of love for all of us. Thanks so much for watching! https://t.co/h5lsZ5UGwx +06/03/2018,Actors,@Lavernecox,"RT @SVU_Diehards: ""SVU is the New Black"" Marathon beginning at 10:02 on @USA_Network https://t.co/F6HXK2yZmm" +06/02/2018,Actors,@Lavernecox,"RT @paolamendoza: Disgusting does not even begin to describe what is happening to this mother and her two children. + +A 2 yr old and a 7 yr…" +06/02/2018,Actors,@Lavernecox,"RT @ETCanada: .@Lavernecox reveals she underwent conversion therapy as a child, recalls experience as ""awful, horrible and shaming"" https:/…" +06/02/2018,Actors,@Lavernecox,RT @IAmAnImmigrant: Many of our nation's immigrant stories are not so different from those of families who are striving to be part of the A… +06/01/2018,Actors,@Lavernecox,Werk!!!!!!!! https://t.co/5r8tqgp7qx +05/31/2018,Actors,@Lavernecox,"RT @healinghonestly: The goddess @Lavernecox on te newsstands of Lima, Peru! https://t.co/DWIVh6jfmX" +05/31/2018,Actors,@Lavernecox,RT @TransLawCenter: “If you have an incoming immigrant that shows signs of medical distress – including being HIV positive and having pneum… +05/31/2018,Actors,@Lavernecox,Thank you so much! https://t.co/DsLdiVM5WI +05/30/2018,Actors,@Lavernecox,Thanks so much darling https://t.co/Pw1onQUlRf +05/30/2018,Actors,@Lavernecox,RT @GospelOfAndre: We agree! Thank you @Lavernecox. #GospelAccordingToAndre is now in theaters! Find a theater near you: https://t.co/BPmEp… +05/30/2018,Actors,@Lavernecox,Thanks so much darling! https://t.co/Wu3NxGKdwe +05/30/2018,Actors,@Lavernecox,Thank you so much darling. You are the best! https://t.co/gikoOMGpMK +05/30/2018,Actors,@Lavernecox,Things are shaping up. Awesome EB https://t.co/ltYhCWoUJc +05/29/2018,Actors,@Lavernecox,"RT @aishatyler: Kudos to @ABCNetwork for their quick, decisive actions. We live in a country where you can express yourself freely, but tha…" +05/29/2018,Actors,@Lavernecox,"RT @ozy: You may have seen her in Orange Is the New Black. Now you can see @Lavernecox live in NYC's Central Park this summer, along with @…" +05/29/2018,Actors,@Lavernecox,I'm in https://t.co/MzGcEdPYxM +05/29/2018,Actors,@Lavernecox,❤❤❤❤ https://t.co/Gt48CLafLm +05/29/2018,Actors,@Lavernecox,Thanks darling. Love you! https://t.co/SILsfKMnQ2 +05/29/2018,Actors,@Lavernecox,Thank you so much ❤❤❤ https://t.co/blLofNpoYH +05/29/2018,Actors,@Lavernecox,Thanks so much Ellen. Love you! https://t.co/HcLFj4KAgA +05/29/2018,Actors,@Lavernecox,❤❤❤❤❤ https://t.co/qRHD0rzqTx +05/29/2018,Actors,@Lavernecox,What a birthday gift watching @serenawilliams make her come back in that FIERCE #catsuit. Congratulations! We love… https://t.co/m6tmSw9C0s +05/29/2018,Actors,@Lavernecox,It's my birthday. To help me celebrate please consider making a donation to @antiviolence https://t.co/ROnyXe81Fk… https://t.co/KOgUH5NfmZ +05/29/2018,Actors,@Lavernecox,@GospelOfAndre is #Everything. Love you so much #AndreLeonTally. You are a national treasure and the epitome of… https://t.co/z0B22odzlq +05/28/2018,Actors,@Lavernecox,@LittleLostBoy01 @TexasChickenUSA This was recorded by my friend @TheLadyDejaD. It happened to her and a few of my other friends last night +05/28/2018,Actors,@Lavernecox,RT @LittleLostBoy01: (Video credit to @Lavernecox) Make this shit go viral. Absolutely disgusting display of discrimination against POC/Tra… +05/27/2018,Actors,@Lavernecox,"RT @workwthecoach: To protect your energy ... + +It’s okay to cancel a commitment. +It’s okay to not answer that call. +It’s okay to change yo…" +05/27/2018,Actors,@Lavernecox,@CaptKirkeisha @Beyonce Amen +05/27/2018,Actors,@Lavernecox,"Everytime I rewatched sections of #beychella I get exhausted thinking about how much work it was to conceive, rehe… https://t.co/GWzzgoejUi" +05/27/2018,Actors,@Lavernecox,Werk! https://t.co/2PC7HELbdr +05/27/2018,Actors,@Lavernecox,RT @wdytya: Did you miss @Lavernecox's powerful journey through her family's history on the season premiere of #WDYTYA? Download the #TLCgo… +05/26/2018,Actors,@Lavernecox,Amen https://t.co/0O6atVB1rw +05/26/2018,Actors,@Lavernecox,Thanks for writing it. I am in an intense and slow process of excavating the unknown traumas lying dormant in my ce… https://t.co/vftT4vWVj5 +05/26/2018,Actors,@Lavernecox,This does sound super cool https://t.co/qJozZOooYn +05/26/2018,Actors,@Lavernecox,"""Is the opportunity to let go of trauma a privilege?Trauma is inherently layered and nuanced.Trauma holds onto us t… https://t.co/ZX16EJO8jT" +05/26/2018,Actors,@Lavernecox,Thank you @GetSpectrum. I finally have cable and wifi https://t.co/oLjgrLNXqW +05/26/2018,Actors,@Lavernecox,Omg yes. That just made my day. https://t.co/brJmM21g5t +05/26/2018,Actors,@Lavernecox,@Neety_pie Wow. That's crazy +05/26/2018,Actors,@Lavernecox,I needed that laugh. Thank you! Laughter helps with perspective. Moving is just so stressful anyway when things go… https://t.co/ecjaFQzdjU +05/26/2018,Actors,@Lavernecox,Trust me. They are https://t.co/gysv3km6Wr +05/26/2018,Actors,@Lavernecox,Oh it’s so hard to stay calm in these situations. https://t.co/OQK7afd4ok +05/26/2018,Actors,@Lavernecox,I know I am not the only person who has gone through this. Let me know I am not alone. There are worse things going… https://t.co/CecVrZGEl9 +05/26/2018,Actors,@Lavernecox,So now I have to wait potentially til next Wednesday for another person to come out and install. Trying to be in a… https://t.co/psAs5cAqgf +05/26/2018,Actors,@Lavernecox,"The tech who came to install on Wednesday, who kept misgendering me btw, couldn’t find a signal. He said a wire was… https://t.co/htzpiSzw1y" +05/26/2018,Actors,@Lavernecox,I am in the middle of a @GetSpectrum installation nightmare. I have been trying to stay calm and spiritual about th… https://t.co/VF97BK3Urc +05/25/2018,Actors,@Lavernecox,❤❤❤ https://t.co/9i4gMF20Xa +05/25/2018,Actors,@Lavernecox,❤❤❤ https://t.co/BRxrYvfkQJ +05/25/2018,Actors,@Lavernecox,What wonderful work you did this season! Obsessed with what you have created. Obsessed with #DearWhitePeople https://t.co/bhNwaHG863 +05/25/2018,Actors,@Lavernecox,"""#RaquelettaMoss speaks in the third person because she survived her own personal holocaust by stepping out of her… https://t.co/9eFPMl05z5" +05/25/2018,Actors,@Lavernecox,You all are amazing. You all had me crying like a baby. https://t.co/cJbGIUb2lm +05/24/2018,Actors,@Lavernecox,Yes https://t.co/SpKeJA4MHC +05/24/2018,Actors,@Lavernecox,"""I can't handle the tooth"" finally Lionel. Finally! Thank God! #DearWhitePeople" +05/24/2018,Actors,@Lavernecox,Living for Brooke on @DearWhitePeople #DearWhitePeople. #leftyoumynumber +05/24/2018,Actors,@Lavernecox,RT @silentmjority: @Lavernecox ‘s WDYTYA episode should be required viewing in schools when teaching about America in the post Civil War er… +05/24/2018,Actors,@Lavernecox,The killings must end. #RIPGigiPierce #TransLivesMatter https://t.co/MzLKMWskRY +05/24/2018,Actors,@Lavernecox,RT @ACLU: BREAKING: A federal appeals court has upheld the policy of Boyertown School District in Pennsylvania allowing trans students to u… +05/24/2018,Actors,@Lavernecox,Another victory for our young people and for trans folks all over this country. #transrightsarehumanrights… https://t.co/mxJwWMGR12 +05/24/2018,Actors,@Lavernecox,I have asked for that as well. Love that show. I am waiting to watch season 2 when I have a full day. I watched s… https://t.co/SG50U2Rotx +05/24/2018,Actors,@Lavernecox,"RT @StevenCanals: For @thedailybeast, I write about the experience of bringing @PoseOnFX to TV. #PoseFX +https://t.co/le9NjhjPZp" +05/24/2018,Actors,@Lavernecox,Happy birthday darling. Miss you! Love you! https://t.co/8fYdOVu5fm +05/24/2018,Actors,@Lavernecox,Amen https://t.co/Xt0etuZAEX +05/24/2018,Actors,@Lavernecox,RT @sagaftra: #Repost @tasteofadrian “SAG-AFTRA is closer than ever to it’s first spanish language TV network union contract with Telemundo… +05/23/2018,Actors,@Lavernecox,Amen ❤❤ https://t.co/IZBNwyIJy2 +05/23/2018,Actors,@Lavernecox,RT @reformlajails: The gangs all here! @MattMcGorry @shailenewoodley and @kendrick38 are helping us #ReformLAJails by collecting signatures… +05/23/2018,Actors,@Lavernecox,RT @wdytya: Miss @Lavernecox on #WDYTYA? Watch her episode now! https://t.co/Q4UMADOClZ https://t.co/p1RK7unoTv +05/23/2018,Actors,@Lavernecox,RT @PPact: JUST IN: @realDonaldTrump just imposed a gag rule to cut funds to any health care provider that refers their patients for aborti… +05/23/2018,Actors,@Lavernecox,"RT @MichaelSkolnik: If you’re the smartest person in the room, then you’re in the wrong room." +05/23/2018,Actors,@Lavernecox,This case is hugely important. Thank you @GavinGrimmVA and thank you to all the everyday people standing up for you… https://t.co/1siludn6ZF +05/23/2018,Actors,@Lavernecox,Congratulations @staceyabrams https://t.co/uZxAYsVXwi +05/22/2018,Actors,@Lavernecox,"RT @chasestrangio: In 2015 when @JoshABlock filed @GavinGrimmVA’s case, Gavin had already fought so hard and carried so many burdens. Today…" +05/22/2018,Actors,@Lavernecox,"RT @MsIsisKing: Bold is beautiful! @sephora is launching Bold Beauty for the Transgender Community- a new, FREE beauty workshop for all gen…" +05/22/2018,Actors,@Lavernecox,"I love you @SirAriGold +https://t.co/MxUssQccUf" +05/22/2018,Actors,@Lavernecox,Congrats @GavinGrimmVA. Thank you for fighting the fight for all of us. Thank you to the Virgina federal court. Tha… https://t.co/yplaMwdWm6 +05/22/2018,Actors,@Lavernecox,https://t.co/VC59TN6xUa +05/22/2018,Actors,@Lavernecox,Tearing up again watching @wdytya #WDYTYA. It's just so deep. +05/22/2018,Actors,@Lavernecox,❤❤ https://t.co/QYI7JHaL3H +05/22/2018,Actors,@Lavernecox,Thank you. West coast. It's starting right now https://t.co/lSsnO5v935 +05/22/2018,Actors,@Lavernecox,RT @MichaelSkolnik: RT if you support an assault weapons ban. +05/22/2018,Actors,@Lavernecox,Very cool https://t.co/vL6RvpBVXY +05/22/2018,Actors,@Lavernecox,I am on the west coast. Can't wait to watch yours. https://t.co/gDiP52i0pW +05/22/2018,Actors,@Lavernecox,Thank you. You are a treasure https://t.co/y10Mm6whnU +05/22/2018,Actors,@Lavernecox,RT @AnaisTGrant: @Lavernecox the strength and activism in your family is strong #WDYTYA +05/22/2018,Actors,@Lavernecox,Ah❤❤ https://t.co/cdcg9yvz4B +05/22/2018,Actors,@Lavernecox,We only had an hour. There was tons more that didnt make it to television https://t.co/vBEgh5UAR6 +05/22/2018,Actors,@Lavernecox,"Yeah what a journey. I still haven't fully processed all I have learned. So ""wow"" is just a really good word https://t.co/ioZrNaknJM" +05/22/2018,Actors,@Lavernecox,It does https://t.co/J0f1BAR64P +05/22/2018,Actors,@Lavernecox,RT @floatingonward: This episode of #WDYTYA has such an impact on me since it is showing in my own state of Alabama. We hear and learn abou… +05/22/2018,Actors,@Lavernecox,Yeah that was just wow! https://t.co/hY5bzln89p +05/22/2018,Actors,@Lavernecox,RT @wdytya: Speechless. #WDYTYA https://t.co/3AafFsedPD +05/22/2018,Actors,@Lavernecox,RT @Aksannyi: Such a chilling reminder of how difficult it was for all of the former slaves. Freedom didn't make it all better. #WDYTYA +05/22/2018,Actors,@Lavernecox,RT @DainaRameyBerry: @Lavernecox talks with @ericaadunbar on #WDYTYA about labor after 1865. +05/22/2018,Actors,@Lavernecox,RT @rosaclemente: Women of color historians unite! So awesome to see us represented and telling @Lavernecox the history of her family in th… +05/22/2018,Actors,@Lavernecox,RT @wdytya: More documents! #WDYTYA https://t.co/ZRuiJJLpAF +05/22/2018,Actors,@Lavernecox,"RT @rosaclemente: So powerdul to see my former Professor at UMASS-Amherst, @ProfMSinha showing @Lavernecox her great great grandfathers his…" +05/22/2018,Actors,@Lavernecox,Its super devastating. I had to step away and cry for about 20 minutes https://t.co/xOtiaPpCXd +05/22/2018,Actors,@Lavernecox,RT @bibliophile89: I'm not keeping up with the drinking game. I'm too caught up in the story. #wdytya @Ancestry @wdytya +05/22/2018,Actors,@Lavernecox,That was my thought too https://t.co/gg2tthwXYs +05/22/2018,Actors,@Lavernecox,RT @kmwebott: Those of us that are constantly looking at old #genealogy documents often forget how amazing it is to work with those files.… +05/22/2018,Actors,@Lavernecox,RT @MyFamilyGenie: Native American ancestry in a family is such a popular legend. Great it was discussed here. #WDYTYA +05/22/2018,Actors,@Lavernecox,❤❤❤ https://t.co/qwU3JNf0hr +05/22/2018,Actors,@Lavernecox,RT @wdytya: The results are in! #WDYTYA https://t.co/rCrTCHKpED +05/22/2018,Actors,@Lavernecox,❤❤❤ https://t.co/ROhzryQl9L +05/22/2018,Actors,@Lavernecox,Thank you. My mom doesn't do a lot of TV. So this is super special for both of us https://t.co/eArhhxq1j4 +05/17/2018,Comedians,@chrisrock,@SpikeLee & @JordanPeele bring you BLACKKKLANSMAN. Coming soon. https://t.co/Aimu9QwOO8 +04/30/2018,Comedians,@chrisrock,Yes i did bout time somebody noticed. https://t.co/orpqxEMdXV +04/28/2018,Comedians,@chrisrock,@spacetime_1 Really appreciate it. I worked on all of them but this was the hardest. +04/28/2018,Comedians,@chrisrock,@spacetime_1 That’s a lot. +04/19/2018,Comedians,@chrisrock,RT @kanyewest: me and Cudi album June 8th +04/16/2018,Comedians,@chrisrock,Check out my homie @amyschumer new movie #ifeelpretty opening this Friday 4/20 https://t.co/8KDiRY6weV +03/19/2018,Comedians,@chrisrock,Free MeekMill. Such a sad story. https://t.co/ZGiTwptE3V +03/09/2018,Comedians,@chrisrock,"RT @JosephVecsey: Myself & @KrystynaHutch comedy album ""MAYBE IT'S YOU"" is bringing back songs & sketches and now available on I-Tunes & Ba…" +03/03/2018,Comedians,@chrisrock,Prayers for Rick Ross and family please. https://t.co/GVHxIZl05z +02/27/2018,Comedians,@chrisrock,"For anyone who needed proof that I’m a better father-in-law than @adamsandler, check out the trailer to our new mov… https://t.co/qEn5cCOse5" +02/27/2018,Comedians,@chrisrock,"RT @TheWeekOf: This wedding season, it’s dad vs dad vs everything else that could go wrong. https://t.co/hNECcq4irC" +02/27/2018,Comedians,@chrisrock,https://t.co/5a5nBUUAK8 +02/27/2018,Comedians,@chrisrock,"RT @BorjaGonzalvez: Just watched #Tamborine from @chrisrock in @netflix ,and I tell you one thing. If @DCComics wants be really bold with a…" +02/20/2018,Comedians,@chrisrock,RT @NetflixIsAJoke: A history lesson from @chrisrock. https://t.co/AVXUmtMHv8 +02/19/2018,Comedians,@chrisrock,The Allstar team at the allstar game. https://t.co/U3c9TKpVTb +02/18/2018,Comedians,@chrisrock,RT @NetflixIsAJoke: M-I-S-S-T-A-K-E. https://t.co/nF1Fhl5JLj +02/17/2018,Comedians,@chrisrock,"RT @DMFSaint: Chris Rock's new Netflix special, Tamborine, was directed by Bo Burnham. + +... what?" +02/17/2018,Comedians,@chrisrock,RT @AbrissErik: I talked to Bo Burnham about directing Chris Rock’s first stand-up special in 10 years #Tamborine https://t.co/dRRe2opUeJ h… +02/14/2018,Comedians,@chrisrock,https://t.co/5eacFbCaR1 +02/13/2018,Comedians,@chrisrock,Tomorrow. Tamborine. @netflixisajoke https://t.co/RPVhPv5mmq +02/13/2018,Comedians,@chrisrock,RT @RickeySmiley: #MartinLawrence's #LITAFTour line-up is crazy!! So happy to be a part of this awesome group!!!! @realmartymar https://t.c… +02/12/2018,Comedians,@chrisrock,RT @SInow: LaVar Ball said Lonzo won’t re-sign with the Lakers if they won’t sign his two brothers also https://t.co/BJZzPCdNbL +02/12/2018,Comedians,@chrisrock,RT @anthonyjeselnik: This portrait immortalizes my two favorite things about President Obama. He placed furniture wherever. And zero alle… +02/12/2018,Comedians,@chrisrock,Black Panther opening this weekend. https://t.co/NrcWzFAGB7 +02/12/2018,Comedians,@chrisrock,@InstantRHIplay @BarackObama Just saw the Presidential Portrait. Wow. Barack Obama is the real Black Panther. +02/12/2018,Comedians,@chrisrock,RT @InstantRHIplay: President @BarackObama's official presidential portrait has now been unveiled. Kehinde Wiley produced the 44th presiden… +02/12/2018,Comedians,@chrisrock,The Cavs right now are better team than the one that lost in the finals . +02/12/2018,Comedians,@chrisrock,"ICYMI: ""Reg E. Cathey has passed . RIP Dirty Dee. Great actor great Man."" https://t.co/fIZEwd8Nu3" +02/10/2018,Comedians,@chrisrock,Reg E. Cathey has passed . RIP Dirty Dee. Great actor great Man. https://t.co/EgvBPstSaI +02/09/2018,Comedians,@chrisrock,RT @atjeffreyjoseph: Black Panther The Album and pre-sales for the movie are so dope that Wakanda will probably become completely gentrifie… +02/06/2018,Comedians,@chrisrock,"RT @CrxTime: Comedian Joey Vega in +""AmeRican"" My Life Aqui y Alla, +coming to Allentown, Reading, Bethlehem… https://t.co/11iSod0Eik" +02/01/2018,Comedians,@chrisrock,The Week Of is coming to @netflix in time to warn you against wedding season. Also i’m not saying you want me inste… https://t.co/tTi63tLQEM +01/28/2018,Comedians,@chrisrock,#TotalBlackoutTour #TheEnd https://t.co/PiPcLqkIFR +01/28/2018,Comedians,@chrisrock,"RT @anthonyjeselnik: Greatest of all time. +https://t.co/E3vaS7ReQO" +01/28/2018,Comedians,@chrisrock,"RT @NegoTrue: Chris Rock at the 02 tonight was honestly hilarious and a great experience. + +No pictures, we all had to put our phones in so…" +01/27/2018,Comedians,@chrisrock,RT @realjeffreyross: When you decide to take the underground to the biggest show of the tour... @TheO2 @chrisrock @michelleisawolf @anthony… +01/27/2018,Comedians,@chrisrock,It goes down tonight and tomorrow in LONDON at @TheO2. Last two shows of the #TotalBlackoutTour 🎤 https://t.co/OkiCMScKHN +01/27/2018,Comedians,@chrisrock,RT @JordanW25: @realjeffreyross @michelleisawolf and @anthonyjeselnik set a huge bar last night at Wembley Arena and @chrisrock topped it.… +01/26/2018,Comedians,@chrisrock,RT @DJHyphen: Chris Rock with Jeff Ross and Anthony Jeselnik opening at Wembley tonight. So good. 🙌🏼🙌🏼🙌🏼 +01/26/2018,Comedians,@chrisrock,Finishing up the tour in London this weekend. Tonight it’s going down at the @ssearena. Tomorrow and Sunday at the… https://t.co/JlCWLcARev +01/26/2018,Comedians,@chrisrock,"RT @wembleypark: He's here!! Tonight @chrisrock brings his UK tour to the @ssearena, Wembley, and we couldn't be more excited! Will any of…" +01/26/2018,Comedians,@chrisrock,"RT @mrmarkmillar: Just back from Chris Rock in Glasgow, who was amazing, but @realjeffreyross stole the show. Did anyone here catch his roa…" +01/25/2018,Comedians,@chrisrock,RT @iamcolinquinn: Unlike many my biggest fear in comedy is not bombing. It’s getting too many laughs to where I can’t hear my next set up. +01/25/2018,Comedians,@chrisrock,RT @realjeffreyross: Headed to London for a few days to perform w Rock at the @TheO2 and @ssearena. What’s the best late night food for aft… +01/25/2018,Comedians,@chrisrock,Can’t wait to get to Birmingham tonight’s show. +01/25/2018,Comedians,@chrisrock,RT @Amy__Macdonald: I went to see @chrisrock tonight and it was great. I was sooo impressed by the little phone cases. How refreshing to no… +01/25/2018,Comedians,@chrisrock,RT @dommcl: @chrisrock last night was the up there with the funniest thing I've ever seen! @realjeffreyross roasting randoms was hilarious… +01/25/2018,Comedians,@chrisrock,RT @Paul_725: Chris Rock tonight at Birmingham Arena! 2 hours of being told white people are terrible awaits me +01/24/2018,Comedians,@chrisrock,Crazy... @TheSSEHydro https://t.co/hA4nVzWA4W +01/24/2018,Comedians,@chrisrock,RT @JimCarrey: 11 school shootings in 24 days. The new Norm! https://t.co/XHnXqOmTQu +01/16/2018,Comedians,@chrisrock,"RT @nealbrennan: In honor of MLK Day, hire or recommend a person of color for a job. Even a job where they're not especially looking to hir…" +01/15/2018,Comedians,@chrisrock,"RT @jonfavs: Say it over and over again, all week long: + +Trump is shutting the government down because the bipartisan deal to keep it open…" +01/13/2018,Comedians,@chrisrock,"RT @robertvoysey: @chrisrock Just watched chris rock at the bic! The BEST performance I’ve seen in my life, the way he controlled the audie…" +01/13/2018,Comedians,@chrisrock,"RT @themissmurphy: @chrisrock In Bournemouth was amazing! Knew it would be good but my face actually hurts from laughing so much, even roas…" +01/12/2018,Comedians,@chrisrock,RT @blsec: Great night at the Manchester Arena following the @chrisrock #BlackOut Tour as usual he was fantastic. Really enjoyed the no pho… +01/11/2018,Comedians,@chrisrock,@washingtonpost Wow +01/11/2018,Comedians,@chrisrock,@LasMansiones That’s not my house. Never was +01/09/2018,Comedians,@chrisrock,RT @Diddy: Put some respect on it!! When you look at us make sure you see royalty and super natural God sent glory!! Anything else is disre… +01/07/2018,Comedians,@chrisrock,Back in DC tonight. I heard some last minute tickets just became available! #TotalBlackoutTour https://t.co/OEt7RA7aVA +01/05/2018,Comedians,@chrisrock,"RT @chrisrock: It goes down tomorrow in warm South Florida. @HardRockHolly +Tix: https://t.co/9dtAIj7a3K https://t.co/dDifBqsB1R" +01/05/2018,Comedians,@chrisrock,"It goes down tomorrow in warm South Florida. @HardRockHolly +Tix: https://t.co/9dtAIj7a3K https://t.co/dDifBqsB1R" +01/02/2018,Comedians,@chrisrock,"RT @HardRockHolly: We're excited to have @chrisrock back at Hard Rock Live THIS FRIDAY! + +Get your tickets: https://t.co/2L5pKAWQo3 +#MCM #C…" +12/19/2017,Comedians,@chrisrock,"“South Florida, I coming back for a third show at @hardrockholly on 1/5! Make sure you get your tickets before they… https://t.co/CSti0M2yY9" +12/18/2017,Comedians,@chrisrock,@nealbrennan Agree +12/17/2017,Comedians,@chrisrock,"RT @aplusk: There’s a time to make statements, a time to ask question, and a time to shut up and listen to the experts. Option 3 should be…" +12/16/2017,Comedians,@chrisrock,"I'm helping #makeHIVhistory with @glblctzn and @JNJCares for #WorldAIDSDay. Watch this video, share the facts and… https://t.co/O9fobSPRb4" +12/15/2017,Comedians,@chrisrock,@ANTMVH1 @tyrabanks Yes can’t wait to ANTM. The best comedy on television. +11/28/2017,Comedians,@chrisrock,@lapis748 Michelle wolf +11/28/2017,Comedians,@chrisrock,"RT @Megalyn: On behalf of the #NavajoNation and the #CodeTalkers, the real men and hereos without whom your sorry ass might not even be her…" +11/26/2017,Comedians,@chrisrock,@KevinHart4real Not me +11/24/2017,Comedians,@chrisrock,Two shows tonight at the Borgata in Atlantic City. One will probably be funnier than the other. +11/17/2017,Comedians,@chrisrock,RT @JordanPeele: ‘Get Out’ is a documentary. +11/15/2017,Comedians,@chrisrock,This is a major accomplishment don’t sleep. https://t.co/Qcx0iDJP4g +11/12/2017,Comedians,@chrisrock,@realDonaldTrump The President of the United States Of American just released this statement wow. +11/07/2017,Comedians,@chrisrock,RT @Megalyn: Its pretty clear prayers aren't enough. They were at fucking church! They need common sense gun laws! https://t.co/bRUeoL1Loy +11/07/2017,Comedians,@chrisrock,RT @aparnapkin: starting to get the feeling that guns DO kill people +11/07/2017,Comedians,@chrisrock,"RT @SarahKSilverman: When a plane crashes, air travel becomes exponentially safer bc of the lessons learned. But 1 mass shooting after ano…" +11/07/2017,Comedians,@chrisrock,RT @mindykaling: Who needs an AR-15? Asking practically not emotionally. Like are you overrun by violent deer? Until the Purge is legal I d… +11/07/2017,Comedians,@chrisrock,RT @RealGilbert: Where do money orders come from? The Check Republic. I apologize and I.O.U. a better joke. +11/04/2017,Comedians,@chrisrock,"ICYMI: ""Deshaun Watson’s out for the year torn ACL. To bad there aren’t any Mobil quarterbacks available to take hi… https://t.co/Y0rCW6zBSJ" +11/02/2017,Comedians,@chrisrock,Deshaun Watson’s out for the year torn ACL. To bad there aren’t any Mobil quarterbacks available to take his place. https://t.co/8mL0O7nJQ3 +11/02/2017,Comedians,@chrisrock,RT @BrianReganComic: I expect “a lot of credit” will be given at the end of the #WorldSeries! #ThisTeam #EarnHistory @MLB https://t.co/C73R… +11/02/2017,Comedians,@chrisrock,RT @realjeffreyross: Does anyone know what time Game 8 starts tomorrow ? #WorldSeries +11/01/2017,Comedians,@chrisrock,"RT @TheDailyShow: Tonight at 11/10c, Sean Hannity reacts to Mueller’s indictments by delivering a master class in bullshit. https://t.co/AR…" +10/31/2017,Comedians,@chrisrock,"RT @BrianReganComic: With #WorldSeries happening, here are my thoughts on “Must Win” games from a @Letterman appearance. #ThisTeam #EarnHi…" +10/30/2017,Comedians,@chrisrock,RT @Megalyn: Wish I could tweet this a million times. Thank you @Vote_Richardson for articulating the truth to power. 👊🏾 https://t.co/eELn4… +10/30/2017,Comedians,@chrisrock,RT @HartPerez: Last night @DaveChappelle dropped in on @ChrisRock's show. Chappelle and Rock went on to share the stage for two hours. Unbe… +10/21/2017,Comedians,@chrisrock,"ICYMI: ""Insecure in the House. Amanda seales so funny . Total blackout tour. DC first show was 🔥 three more to go.… https://t.co/SO8UE0Q3NL" +10/20/2017,Comedians,@chrisrock,RT @MGMNatlHarbor: We are excited to have @chrisrock perform the first of his four sold-out shows tonight at The Theater. #LIVEatMGM https:… +10/19/2017,Comedians,@chrisrock,Insecure in the House. Amanda seales so funny . Total blackout tour. DC first show was 🔥 three more to go. https://t.co/78xElGdKoU +10/17/2017,Comedians,@chrisrock,RT @aparnapkin: white noise machines are gonna need a new name now that we have an actual one in office +10/17/2017,Comedians,@chrisrock,RT @Megalyn: This.... rightordoyle's photo https://t.co/uBDgi8Ydut +10/16/2017,Comedians,@chrisrock,RT @Megalyn: Required viewing. https://t.co/lfamlGwPaF +10/14/2017,Comedians,@chrisrock,"ICYMI: ""It's time for a new voice."" https://t.co/plfnCyhYsZ" +10/14/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Let's look on the bright side-- This last nine months is the longest Trump has gone without criticizing the President… +10/13/2017,Comedians,@chrisrock,RT @robinthede: I humbly request that you watch the premiere of @TheRundownBET tonight at 11p/10c and live tweet with us using the hashtag… +10/12/2017,Comedians,@chrisrock,"RT @VanJones68: What can we do to defend decency & democracy in America? 4 answers, check out my new book #BeyondtheMessyTruth here: https:…" +10/12/2017,Comedians,@chrisrock,It's time for a new voice. https://t.co/BadwVY7guV +10/08/2017,Comedians,@chrisrock,RT @ericandre: I’m opening up a brunch restaurant called Planet of the Crepes. +10/08/2017,Comedians,@chrisrock,Oslo was insane last night. Amsterdam tonight the tour continues. Can't wait. +10/04/2017,Comedians,@chrisrock,"ICYMI: ""Crazy day . See your heroes perform live while you have the chance your never know. Petty damn."" https://t.co/y719w7X8qU" +10/03/2017,Comedians,@chrisrock,RT @itsgabrielleu: This https://t.co/C2orAslQrw +10/03/2017,Comedians,@chrisrock,Crazy day . See your heroes perform live while you have the chance your never know. Petty damn. https://t.co/aVWp2vaRjQ +10/02/2017,Comedians,@chrisrock,"RT @rihanna: Saying a prayer for all the victims & their loved ones, also for the residents & visitors of Las Vegas! This was a horrific ac…" +09/25/2017,Comedians,@chrisrock,"Support @GOODPlusFdn & +@TheSMHF w/ me. Buy front-row tix on +@ifonly to an upcoming show of mine & meet me after! +https://t.co/OwWLwe7JgD" +09/25/2017,Comedians,@chrisrock,"ICYMI: ""It's only a privilege to play sports if you suck at sports. It is a privilege to be born a white child in A… https://t.co/CD5UEznI0s" +09/24/2017,Comedians,@chrisrock,RT @JoyAnnReid: Reminder: the president of the United States thinks protest is perfectly fine for neo-Nazis but a firing offense for black… +09/24/2017,Comedians,@chrisrock,RT @questlove: For real I'm not even a sports dude (still love you Philly) can we still remember Puerto Rico is STILL w/o electricity? +09/24/2017,Comedians,@chrisrock,RT @itsgabrielleu: This https://t.co/VXZEjQEDdU +09/23/2017,Comedians,@chrisrock,It's only a privilege to play sports if you suck at sports. It is a privilege to be born a white child in America t… https://t.co/WIZHWRw3J8 +09/22/2017,Comedians,@chrisrock,"ICYMI: ""Kids don't want to share you have to make them."" https://t.co/dbinp2LMfW" +09/20/2017,Comedians,@chrisrock,Kids don't want to share you have to make them. https://t.co/uxlrECrx5e +09/18/2017,Comedians,@chrisrock,"RT @netflix: There, we said it. https://t.co/CIf4LfGWgn" +09/17/2017,Comedians,@chrisrock,"RT @ShadowLeagueTSL: This clip of Max Kellerman speaking on Colin Kaepernick and racial injustice as a whole is a must-watch. +https://t.co/…" +09/16/2017,Comedians,@chrisrock,"ICYMI: ""Crazy year trump is president and the only good movies this year are horror movies . Get out and now Mother… https://t.co/26bpsZG9lj" +09/15/2017,Comedians,@chrisrock,Sorry about that last tweet. 3 great movies this year. Get out / girls trip and now mother. White film is back. +09/15/2017,Comedians,@chrisrock,@cocainenat Your right sorry about that girls trip was pretty good. +09/15/2017,Comedians,@chrisrock,Crazy year trump is president and the only good movies this year are horror movies . Get out and now Mother I just … https://t.co/oVe5oyNrd1 +09/15/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Congrats to Apple for naming their best-ever iPhone after Malcom X. +09/14/2017,Comedians,@chrisrock,"ICYMI: ""Never forget."" https://t.co/SG4dbKoCqP" +09/12/2017,Comedians,@chrisrock,Never forget. https://t.co/Wzb1UhKRS4 +09/12/2017,Comedians,@chrisrock,@DuaneFinleyMMA @GusSandberg @_naelaa @NikBos @GregSain Chapelle killing me softly is better than all of them. +09/10/2017,Comedians,@chrisrock,@Lewis_Lanee You can do it. +09/10/2017,Comedians,@chrisrock,RT @aliwong: Congrats Kamau!!!! https://t.co/idYOkAYyH5 +09/10/2017,Comedians,@chrisrock,RT @cthagod: Fuck is Randy Moss talking about?? Protesting Racism Makes You A Loser now? LOL. I know for a fact i'm living in the Matrix. +09/10/2017,Comedians,@chrisrock,@DavidSpade How about the smelless driver. +09/10/2017,Comedians,@chrisrock,RT @DavidSpade: Uber is soon going to be testing the driverless car. Lets first test the talkless driver and see how that goes +09/10/2017,Comedians,@chrisrock,"RT @MrGeorgeWallace: Shout out to the top 5 keys in the world, car, piano, Florida, Alicia and Mon." +09/10/2017,Comedians,@chrisrock,"ICYMI: ""Chicago theater 4 nights. Special guest the great Hannibal Buress ripped it tonight."" https://t.co/mDanlYHY1i" +09/09/2017,Comedians,@chrisrock,@marlena9966 Your welcomed +09/09/2017,Comedians,@chrisrock,Chicago theater 4 nights. Special guest the great Hannibal Buress ripped it tonight. https://t.co/qgrakB5yZw +09/08/2017,Comedians,@chrisrock,@CadillacGabe @hannibalburess Thanks +09/08/2017,Comedians,@chrisrock,@marlena9966 Thanks +09/06/2017,Comedians,@chrisrock,"ICYMI: ""Today's the birthday of the great Beyonce Knowles and schools are closed all over America. Thank you Presid… https://t.co/qCMswhpyUh" +09/06/2017,Comedians,@chrisrock,One night wasn’t enough... 4 shows in Chi town starting Thursday. #TotalBlackOutTour click https://t.co/OcHssAcuYx… https://t.co/YKh52jlnZR +09/05/2017,Comedians,@chrisrock,"RT @BarackObama: To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co…" +09/04/2017,Comedians,@chrisrock,"RT @TheDweck: Just passed by a ""Welcome to America"" sign at airport customs and it felt like when someone forgets to take down a Christmas…" +09/04/2017,Comedians,@chrisrock,RT @realjeffreyross: Legend #JoanRivers died 3 yrs ago today. Retweet if you'd like to see this great American's facelift on the $50 bill.… +09/04/2017,Comedians,@chrisrock,Today's the birthday of the great Beyonce Knowles and schools are closed all over America. Thank you President Trum… https://t.co/cV0WEWipOM +09/01/2017,Comedians,@chrisrock,RT @RealGilbert: RIP to the very funny Shelly Berman https://t.co/dBzeKprNNw +08/26/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Tonight Conor McGregor will make history by becoming the highest paid comedian of all time. +08/26/2017,Comedians,@chrisrock,RT @NAACP: Pardon of Arpaio is explicit embrace of the racist policing practices that leave communities fearful of very ppl who should prot… +08/26/2017,Comedians,@chrisrock,RT @TVietor08: Trump's presidency is defined by having no policy vision except opposing everything Obama did and being as vindictive as pos… +08/26/2017,Comedians,@chrisrock,"RT @KenTremendous: The President is a 71 year-old racist who, during a hurricane, pardoned an 85 year-old racist sheriff who'd been convict…" +08/24/2017,Comedians,@chrisrock,"RT @aparnapkin: DID U KNO: for all we're paying for trump's security, we're paying far more for his insecurity" +08/24/2017,Comedians,@chrisrock,"RT @nealbrennan: The ""Blacks for Trump"" guy looks like every open-micer who's ever tried to hand me a business card." +08/21/2017,Comedians,@chrisrock,RT @TheEllenShow: I just invested in an eclipse sunglass company. Does anyone know when the next one is? +08/21/2017,Comedians,@chrisrock,RT @aparnapkin: tough day for sunglasses +08/21/2017,Comedians,@chrisrock,RT @ConanOBrien: When the eclipse comes I’m going to borrow the special glasses my wife uses when I’m shirtless. +08/21/2017,Comedians,@chrisrock,RT @DavidSpade: Is it still ok to stare at the moon? Let me know if anything is changed on that front +08/21/2017,Comedians,@chrisrock,RT @MrGeorgeWallace: Dick Gregory and Jerry Lewis in a 12 hour span? That shit happens in threes. I'm rollin' up in bubble wrap and layin'… +08/21/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: No eclipse spoilers please! +08/20/2017,Comedians,@chrisrock,RT @nealbrennan: Trump wouldn’t be President If we’d had spelling bees instead of debates. +08/20/2017,Comedians,@chrisrock,"RT @diddy: On August 21, 2017, the anniversary of Nat Turner's rebellion, there will be a total solar eclipse. + +Are you ready?" +08/20/2017,Comedians,@chrisrock,ICYMI: Here's what I posted yesterday... https://t.co/0jqVrA4pPo +08/19/2017,Comedians,@chrisrock,RT @danieltosh: has anyone thought to line up all our old racist statues to make the border wall +08/19/2017,Comedians,@chrisrock,"RT @anthonyjeselnik: Why tear down statues? Just change all the plaques to read: ""Get a load of this dumb, dead asshole and his bullshit h…" +08/19/2017,Comedians,@chrisrock,I'm not sure this is news but my babies are beautiful. https://t.co/lBoOTD4rj2 +08/19/2017,Comedians,@chrisrock,If you fuck one goat your a goat fucker. https://t.co/JmajYeY9gm +08/18/2017,Comedians,@chrisrock,RT @aparnapkin: Why worry about history being erased when you're so busy repeating it? +08/18/2017,Comedians,@chrisrock,RT @ConanOBrien: I heard the iPhone 15 won't have any ports or jacks or a screen and it will just be a smooth steel ball and finally we'll… +08/17/2017,Comedians,@chrisrock,RT @Sethrogen: The idea that Nazis and people who oppose Nazis are somehow equatable is the most batshit fucking crazy shit I've ever fucki… +08/17/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Why don't we just put all these confederate statues in a coal mine and make everybody happy? +08/15/2017,Comedians,@chrisrock,"RT @soopervillain: @chrisrock Seriously, how the fuck do you twist yourself up defending THIS https://t.co/a04HfNTkPo" +08/15/2017,Comedians,@chrisrock,If 10 guys thinks it's ok to hang with 1 Nazi then they just became 11 Nazis. Alt right / white supremacist it's just nazis. Fuck Nazis. +08/15/2017,Comedians,@chrisrock,"RT @ianbremmer: ""The world is a dangerous place not because of the people who are evil, but because of the people who don't do anything abo…" +08/15/2017,Comedians,@chrisrock,"RT @KenTremendous: Trump is Ron Burgandy, just repeating whatever Fox and Friends puts on his personal mental teleprompter. https://t.co/SD…" +08/15/2017,Comedians,@chrisrock,RT @aparnapkin: trump is the ghost of racist statue present +08/15/2017,Comedians,@chrisrock,RT @BryanCranston: It felt like @realDonaldTrump read the TelePrompTer message condemning hate groups like a hostage forced to read a state… +08/12/2017,Comedians,@chrisrock,"RT @jemkeegs: @RobRuggio @JuliusGoat @TheGreyKing ""When you're accustomed to privilege, equality looks like discrimination.""" +08/12/2017,Comedians,@chrisrock,RT @JamarNeighbors: Lmaoooo somebody rammed they car into a gang of Nazis 😂😂😂😂😂😂😂😂😂😂😂😂😂😂 That's some shit I'd do. I mean I'd have to get a… +08/10/2017,Comedians,@chrisrock,RT @hannibalburess: Good morning to everyone except for people that ask to take a picture and then start taking a snapchat video. +08/10/2017,Comedians,@chrisrock,RT @ChrisIsDxpe: That Chappelle show Sunday was too fucking lit. Chris Rock was 🔥🔥Arsenio Hall was funny and Jeff Ross was wilding & Chappe… +08/10/2017,Comedians,@chrisrock,@TIME Why +08/09/2017,Comedians,@chrisrock,"ICYMI: ""This is about right."" https://t.co/KosJ9ctXmx" +08/08/2017,Comedians,@chrisrock,https://t.co/n7kbQRJIt1 @PaulyShore 😂🤣😂🤣 +08/08/2017,Comedians,@chrisrock,RT @Benminster: I liked a @YouTube video https://t.co/T4yM1VsPmz Epic rap battle Chris Rock VS. Supahot Fire! +08/08/2017,Comedians,@chrisrock,This is about right. https://t.co/PaSNAsvEZG +08/03/2017,Comedians,@chrisrock,"RT @Kreeah: @Megalyn It's Megalyn Echikunwoke Day! Megalyn played Penny, Theo's sister on The Following. A Serial Killer. Beautiful but Dea…" +08/02/2017,Comedians,@chrisrock,"ICYMI: ""Lunch with my girls Brooklyn style."" https://t.co/qc3GWBph7P" +07/31/2017,Comedians,@chrisrock,Lunch with my girls Brooklyn style. https://t.co/9RLqOZmxtI +07/29/2017,Comedians,@chrisrock,"ICYMI: ""Whitch one of us should run for president."" https://t.co/8oZ9Ge1JxN" +07/27/2017,Comedians,@chrisrock,"RT @HamillHimself: A salute to the 15,000+ transgender patriots now currently serving in the United States Military. #ThankYouLGBT #TransR…" +07/27/2017,Comedians,@chrisrock,Whitch one of us should run for president. https://t.co/49HdIDq1x6 +07/27/2017,Comedians,@chrisrock,RT @TIME: Watch President Obama's message to the 2010 Boy Scout Jamboree https://t.co/mhrz2rcChv https://t.co/kGfF2d2fIy +07/27/2017,Comedians,@chrisrock,RT @nottjmiller: Men are not funny. +07/27/2017,Comedians,@chrisrock,"RT @ConanOBrien: Trump hired Anthony Scaramucci because he thought his tan qualified him as a ""person of color.""" +07/27/2017,Comedians,@chrisrock,RT @Sethrogen: I'm starting to think they don't know what these letters actually stand for. https://t.co/ieznVV5Gio +07/27/2017,Comedians,@chrisrock,"RT @TheEllenShow: We should be grateful to the people who wish to serve, not turn our backs on them. Banning transgender people is hurtful,…" +07/27/2017,Comedians,@chrisrock,"RT @Megalyn: Hey all, so this hasn't gone away. It's only gotten worse as famine tends to if not addressed. Please get involved and share.…" +07/27/2017,Comedians,@chrisrock,RT @Megalyn: Hard to believe that in 2017 20 Million people are facing famine anywhere. There are so many… https://t.co/w7BdbiCCWz +07/20/2017,Comedians,@chrisrock,"RT @RealGilbert: OJ just told the judge ""I would kill to get out of here!"" #ojparole #OJSimpsonParole" +07/18/2017,Comedians,@chrisrock,"RT @JimGaffigan: They say laughter is the best medicine. +And it is +After you’ve received real medicine from a real medical professional." +07/18/2017,Comedians,@chrisrock,RT @cthagod: I just want to know if R. Kelly let those young ladies eat today. +07/18/2017,Comedians,@chrisrock,"ICYMI: ""The great Martin Landu has passed away. He's great in so many movies but Crimes and Misdemeanors is his bes… https://t.co/N58BNqHDhS" +07/18/2017,Comedians,@chrisrock,"ICYMI: ""Summer 17."" https://t.co/ExCjSIjlGA" +07/17/2017,Comedians,@chrisrock,The great Martin Landu has passed away. He's great in so many movies but Crimes and Misdemeanors is his best in my … https://t.co/Rd2qonpuId +12/31/2009,Comedians,@JerrySeinfield,Check my website for new standup dates! +12/31/2009,Comedians,@JerrySeinfield,Just getting started on Twitter. Thanks to all you faithfuls. +06/24/2018,Comedians,@therealroseanne,Podcast from day after show cancelation. Written transcript can be found in my pinned tweet: https://t.co/EzMd929juU +06/24/2018,Comedians,@therealroseanne,My interview with @jpostjewish the day after the show cancelation: https://t.co/8tCwfsDVGP +06/20/2018,Comedians,@therealroseanne,RT @fanimate: For @TheJuanWilliams to defend Peter Fonda and say it was a poorly worded tweet is inexcusable. @FoxNews to fire him! +06/20/2018,Comedians,@therealroseanne,@fanimate @RosennesWorld @TheJuanWilliams @FoxNews he slimed me tho +06/20/2018,Comedians,@therealroseanne,"RT @John_KissMyBot: Trump Signed A Executive Order To Keep Illegal Alien Families Together + +BECAUSE Chuck Schumer And The Democrats In Con…" +06/20/2018,Comedians,@therealroseanne,RT @HAGOODMANAUTHOR: The United States government placed an unknown number of Central American migrant children into the custody of human t… +06/20/2018,Comedians,@therealroseanne,"RT @canarymission: .@OhioState student senator Shukri Ahmed promised to fight for ""transparency"" at OSU. She then voted for a secret ballot…" +06/20/2018,Comedians,@therealroseanne,RT @tracybeanz: I love the comments on this tweet. The world is waking up. https://t.co/QIJGnNeBcx +06/20/2018,Comedians,@therealroseanne,RT @Jtruzmah: Sons of Zawari launch incendiary balloons from the Northern #Gaza Strip into #Israel earlier today. https://t.co/eKCfHAgl2a +06/20/2018,Comedians,@therealroseanne,RT @canarymission: .@OhioState student senator Paige Bennett sponsored a BDS resolution where 38 people spoke against and 8 spoke in favor.… +06/20/2018,Comedians,@therealroseanne,RT @TrumpAnon61233: @katiet121 @therealroseanne @elenochle @TheJordanRachel @Jordan_Sather_ @1ambecauseweare @jennajameson @Annakhait @kate… +06/20/2018,Comedians,@therealroseanne,RT @katiet121: @elenochle @TheJordanRachel @Jordan_Sather_ @1ambecauseweare @therealroseanne @jennajameson @Annakhait @kateordie @FedupWith… +06/20/2018,Comedians,@therealroseanne,@charliekirk11 they are. +06/20/2018,Comedians,@therealroseanne,RT @Joshnewcomb4: @gramma61 @lisabarone46 @charliekirk11 Trafficking is cruel and enabled because democrats kept the border wide open knowi… +06/20/2018,Comedians,@therealroseanne,@chessienda @jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 you're… https://t.co/Wo6tBLaKtw +06/20/2018,Comedians,@therealroseanne,@JeaneHasSpoken @justbav24 they r compromised. +06/20/2018,Comedians,@therealroseanne,@JimmySmagula @libbyannehess @Amirica24 @lisa63williams classist pretending to be against racism. +06/20/2018,Comedians,@therealroseanne,"RT @seanhannity: ***BREAKING*** @realDonaldTrump will sign executive order to ""keep families together""... https://t.co/iGw2t9OF7o" +06/20/2018,Comedians,@therealroseanne,RT @Gingrich_of_PA: Oh snap! Death of a talking point caught live on Fox #ObamaCages https://t.co/Qaa0MtxWMB +06/20/2018,Comedians,@therealroseanne,"RT @therealcornett: 🚨Video footage surfaces from 2014 showing that under Obama, family separations and holding centers were EXACTLY the sam…" +06/20/2018,Comedians,@therealroseanne,"RT @1776Stonewall: Hannity tonight will show pics, videos and articles proving that the separations at border where happening during Obama…" +06/20/2018,Comedians,@therealroseanne,RT @smoss319: President Trump signs executive order to end family separations. We will still have zero tolerance for illegal entry at the b… +06/20/2018,Comedians,@therealroseanne,"RT @ScottPresler: President Trump signed an executive order keeping illegal alien families together. + +Here's yet another instance of Trump…" +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: QED https://t.co/w0RXSy9cqo +06/20/2018,Comedians,@therealroseanne,"RT @DiamondandSilk: Amazing. ....Trump Finishes Speech, Walks Straight Over to American Flag, Then Let’s His True Patriot Come Out. https:/…" +06/20/2018,Comedians,@therealroseanne,RT @StandWithUs: That time when the #BDS supporting trade union accidentally tweeted a picture of JEWISH refugees from Arab countries and f… +06/20/2018,Comedians,@therealroseanne,i abandoned the left in 2012 after seeing the shocking and vile anti semitism there-LEAVE IF YOU DARE! +06/20/2018,Comedians,@therealroseanne,RT @JackPosobiec: Love trumps hate https://t.co/G644OPUJPF +06/20/2018,Comedians,@therealroseanne,"RT @alfrich_k: WoW!! + +Mark Meadows just name dropped who he believe is: + +Attorney 1 and Attorney 2 + +They work for Trish Anderson in the Of…" +06/20/2018,Comedians,@therealroseanne,RT @WalshFreedom: The men and women of @ICEgov do a thankless job and have disgusting things said about them on a daily basis (like this im… +06/20/2018,Comedians,@therealroseanne,"RT @bennyjohnson: Dear @TwitterSafety & @jack, + +Does being investigated by the Secret Service for multiple kidnapping & rape threats agains…" +06/20/2018,Comedians,@therealroseanne,RT @DiamondandSilk: .@Janefonda's brother @iamfonda needs to be arrested and detained for suggesting that something vile and vicious should… +06/20/2018,Comedians,@therealroseanne,"RT @charliekirk11: Why is no one asking about Obama emailing Hillary on her server? + +🤔" +06/20/2018,Comedians,@therealroseanne,"RT @realDonaldTrump: “FBI texts have revealed anti-Trump Bias.” @FoxNews Big News, but the Fake News doesn’t want to cover. Total corrupti…" +06/20/2018,Comedians,@therealroseanne,RT @Cernovich: “The Flores settlement prohibits the federal government from keeping children in immigration detention — even if they are wi… +06/20/2018,Comedians,@therealroseanne,@Chrissythecraft @libbyannehess @Amirica24 @lisa63williams never-like they never get my hitler picture-they r low info trolls +06/20/2018,Comedians,@therealroseanne,@pusherlovegirl @SiddonsDan @maddow hammy-no tears for kids trafficked thru arizona or out of haiti or libya tho. +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @jessica_vasicek @AngelaSellars7 @therealroseanne @ThankfulToday1 Actually, I'm not making that comparison; ""your"" gov't.…" +06/20/2018,Comedians,@therealroseanne,@libbyannehess @Amirica24 @lisa63williams i compared no one's looks to any animal. +06/20/2018,Comedians,@therealroseanne,@ScottAnthonyUSA @Jeepgrl188 @iamfonda @ICEgov @USBPChief it's hilarious2 C certain Hollywoodys speak against racis… https://t.co/rNFYNTesjf +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 no one needs to ask again if what happened in Germany could happen here. The underlying issue is that… https://t.co/cbFwyXyX9N +06/20/2018,Comedians,@therealroseanne,RT @RealWendyBelle: @therealroseanne Omg I’m do glad you’re back on twitter!! YES!! The revolution will not be televised! +06/20/2018,Comedians,@therealroseanne,RT @JohnnyArgent: @jonbyersphotos @nicholas_wiser @octopusmind141 @therealroseanne @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 YOU us… +06/20/2018,Comedians,@therealroseanne,"RT @wolferkitten: This is beyond TDS, for @iamfonda to say something like that is down-right vile verging on criminal and @SonyPictures is…" +06/20/2018,Comedians,@therealroseanne,@nlitvin @Honeybal yes and so was gaddafi +06/20/2018,Comedians,@therealroseanne,"RT @RepStevenSmith: A white male Hollyweirdo calls two women a ""lying gash,"" with one being ""worse than a cunt"" and suggests another be ""pu…" +06/20/2018,Comedians,@therealroseanne,RT @DonaldJTrumpJr: As an FYI @SonyPictures has a movie with him dropping in a few days. I wonder if they will apply the same rules to @iam… +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @NeverGiveUpWP @JohnnyArgent @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 i have as we say in Uta… https://t.co/DyTOSJlVOx +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @NeverGiveUpWP @JohnnyArgent @therealroseanne @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 When a woman has chutzpah,…" +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @NeverGiveUpWP @JohnnyArgent @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 it's an expression we u… https://t.co/CPqU9M41J3 +06/20/2018,Comedians,@therealroseanne,@jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 Rice lied about the… https://t.co/YwxZwqAC0x +06/20/2018,Comedians,@therealroseanne,@jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 I said susan rice was a MAN +06/20/2018,Comedians,@therealroseanne,@USMCSgtKnight you need discernment and facts to see it +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I've literally just had a (Greek) salad for lunch. Albeit with lashings of pitta bread. https://t.co/JVhfib1soV +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I'm specifically talking about the children taken from their parents. Totally unnecessary & horribly cruel. https://t.co/U… +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: That's sexist. https://t.co/OhKwa3gq7t +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Scotland would have scored 1000 on this pitch. #ENGvAUS +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Many thanks to Andrew Ridgeley for being such an insufferable dick today - much appreciated! ⁦@GMB⁩ https://t.co/WlxPDHLrme +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Pathetic behaviour. https://t.co/Wol0UBMuBK +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I’ve been exposed to too much Love Island crap - it’s damaged my brain. https://t.co/OMx8jChq6X +06/20/2018,Comedians,@therealroseanne,"RT @piersmorgan: Your feed does, yes. https://t.co/cZc7b67gMF" +06/20/2018,Comedians,@therealroseanne,"@piersmorgan yes, my feed pales in comparison to the great intellectual content of yours." +06/20/2018,Comedians,@therealroseanne,"@Silentlyl0ud_ @iamfonda it's their shame, not mine. I am for the Freedom of Iranian women, unlike the left." +06/20/2018,Comedians,@therealroseanne,@jane_kjane it was cia created-so....it was the original intention perhaps +06/20/2018,Comedians,@therealroseanne,RT @Mamapaws6: @therealroseanne @YouTube https://t.co/MH8BcmsnBW +06/20/2018,Comedians,@therealroseanne,does twitter exist to spread disinformation? +06/20/2018,Comedians,@therealroseanne,RT @bell_bellgon: @RodStryker @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @Donn… +06/20/2018,Comedians,@therealroseanne,RT @USAforPOTUS: @therealroseanne Shalom Israel🇺🇸🇮🇱 https://t.co/jmlOrQoot3 +06/20/2018,Comedians,@therealroseanne,RT @Catheri88706812: @therealroseanne Anyone really wanting to understand what is going on in the Muslim world needs to check out Dr. Zuhdi… +06/20/2018,Comedians,@therealroseanne,@matchpenalty1 it's a new day in saudi arabia tho-catch up. read. +06/20/2018,Comedians,@therealroseanne,"@TheNobby grow a brain, sheep" +06/20/2018,Comedians,@therealroseanne,@Xsquader so you're pro Hezbollah? go away +06/20/2018,Comedians,@therealroseanne,"@StopTrumpRegime get off yours-it's not working, psycho." +06/20/2018,Comedians,@therealroseanne,"@JCookDC that's your feeble minded Imperialist interpretation. stfu,psycho." +06/20/2018,Comedians,@therealroseanne,@RedRebelOfDeath anti semitic +06/20/2018,Comedians,@therealroseanne,@M44023448 suck my balls! enjoy! +06/20/2018,Comedians,@therealroseanne,RT @Alaskan_Gypsy: @therealroseanne I've been alerted to the uprising in Iran as a result of your infamous Tweet! Thank you! It cost you gr… +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: The solution is rather simple. https://t.co/eNfgncBjCm +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: Peter Fonda + +2009: Says Roman Polanski “is not a criminal” Polanski drugged & raped a 13 year old girl & fled the U.S. to…" +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: Really? https://t.co/8b9q65w5mj +06/20/2018,Comedians,@therealroseanne,My friends are at the KOTEL right now-praying for the complete healing of the world-IRAN is key! Good vs Evil. The time is NOW. +06/20/2018,Comedians,@therealroseanne,@ThomasWictor @realDonaldTrump i trust you too-let's double down now. We can tip the Beast over. +06/20/2018,Comedians,@therealroseanne,why did 23 #cardinals resign under this pope? +06/20/2018,Comedians,@therealroseanne,RT @Lrihendry: @therealroseanne @TwittaChicca ONLY because you dared to show support for President Trump! 63 million Trump supporters were… +06/20/2018,Comedians,@therealroseanne,@JeaneHasSpoken @FactThis1 don't argue w dividers. lets unite and keep on! +06/20/2018,Comedians,@therealroseanne,"@Lrihendry @TwittaChicca I FOUGHT to make sure a decent representation of Trump supporters was included, and knew i… https://t.co/PgtAJun3cV" +06/20/2018,Comedians,@therealroseanne,@PimpingPolitics blaming jewish kids for the holocaust is ok with you tho- +06/20/2018,Comedians,@therealroseanne,@silveraa yes-there are good and bad ppl-in every single race religion and group. +06/20/2018,Comedians,@therealroseanne,"RT @ISurvivior: @therealroseanne They stuck my father in prison and when he came out he was more violent, adopted racist views that are for…" +06/20/2018,Comedians,@therealroseanne,"@TheBestPrezEver that isn't what I said, racist." +06/20/2018,Comedians,@therealroseanne,Follow ME if you want to force our corrupt government to address the issue of child trafficking and what… https://t.co/iAl4XEntVI +06/20/2018,Comedians,@therealroseanne,Do not be divided. Both sides need to work together to stop the abuse of children in our hemisphere NOW. +06/20/2018,Comedians,@therealroseanne,vote out ALL reps compromised by human trafficking-both parties r compromised by it. Don't be fooled-it's Republica… https://t.co/MZAF4DJk5Y +06/20/2018,Comedians,@therealroseanne,Take the RED PILL and investigate who is behind Child Trafficking at our southern border. Do not allow the Left to control this narrative. +06/20/2018,Comedians,@therealroseanne,RT @Doc_FLEO: @therealroseanne can I please have this retweeted. Thanks! 🇺🇸 https://t.co/uohjwosRbD +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: THIS IS WHY CHILDREN ARE TAKEN FROM ADULTS (""parents"") AT THE BORDER. THIS +And people want to fight for these sick peop…" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: How can anyone have a problem with properly vetting these alleged families if it means saving a child? + +https://t.co/Z…" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: Children like Maria Elena, and younger, are part of those taken from their ""parents"" People who have zero documentation…" +06/20/2018,Comedians,@therealroseanne,"RT @RealJamesWoods: Simple. No DNA match, prison sentence. https://t.co/OkvfnRs3x0" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: Under Hillary Clinton's State Dept. +Trafficking of Person's Report 2012 + +Knowing that there was an issue with trafficki…" +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: US Agencies Bust International Sex Trafficking Ring + +Group brought Tollywood and Kannada actresses into America to Indian…" +06/20/2018,Comedians,@therealroseanne,RT @kromst: @RodStryker @Bingosmurf @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU… +06/20/2018,Comedians,@therealroseanne,@RodStryker @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @DonnaWR8… https://t.co/WqTPmXPOSp +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: @therealroseanne @OpinionOnion7 Strange as it sounds, our student enrollment is down and they claim it's due to the eco…" +06/20/2018,Comedians,@therealroseanne,"RT @SiddonsDan: .@maddow is verklempt w/#FakeOutrage meltdown + +Meanwhile The ""Three Strikes Law"" under Clinton sent 2 million American men…" +06/20/2018,Comedians,@therealroseanne,"RT @USAloveGOD: @glo_mojo Report this tweet immediately if you care about children! #PeterHenryFonda is promoting child kidnapping, hate,…" +06/20/2018,Comedians,@therealroseanne,@DesslynStorm @626Robyn @MARS0411 @JohnnyArgent hitler in drag isn't instantly recognizable? you're an idiot. +06/20/2018,Comedians,@therealroseanne,RT @626Robyn: @PinkPixySprite @JohnnyArgent @therealroseanne @DesslynStorm @MARS0411 Agree..she was pointing out her involvement with the M… +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @626Robyn @PinkPixySprite @therealroseanne @DesslynStorm @MARS0411 No doubt about it, Robyn... She regrets her word choic…" +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne #DeepState & #FakeNews MSM threatened to take away everything Roseanne created, but she didn't cower. + +Her…" +06/20/2018,Comedians,@therealroseanne,@elenochle @momofmonday of course! i love u! +06/20/2018,Comedians,@therealroseanne,we r the army of truth-wwg1wga +06/20/2018,Comedians,@therealroseanne,@WilliPete @HarmonyRachell @WWG1WGA_PATRIOT @elenochle @satya123v @TheJordanRachel @jennajameson @Annakhait… https://t.co/svGRvF979N +06/20/2018,Comedians,@therealroseanne,RT @RodStryker: @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @DonnaWR8 @MAGANina… +06/20/2018,Comedians,@therealroseanne,i love u all so much! let's keep on! +06/20/2018,Comedians,@therealroseanne,@elenochle @momofmonday u do great work-don't get off track! +06/20/2018,Comedians,@therealroseanne,RT @OpinionOnion7: @therealroseanne I totally agree! I flip homes for investors in LA County and its very sad to see many lose their homes.… +06/20/2018,Comedians,@therealroseanne,@HarmonyRachell @WWG1WGA_PATRIOT @elenochle @satya123v @TheJordanRachel @jennajameson @Annakhait @katiet121… https://t.co/rnLgNRjvHf +06/20/2018,Comedians,@therealroseanne,@OpinionOnion7 i advocated for forgiveness for student loans too-i thought it would help to revive the housing market. +06/20/2018,Comedians,@therealroseanne,"RT @ScotchJLK: We would love to see, and would retweet the heck out of 5 minute vignettes: ""Rosie on the Couch"". Guest stars, monologues, a…" +06/20/2018,Comedians,@therealroseanne,@ScotchJLK you will be surprised very soon!! +06/20/2018,Comedians,@therealroseanne,"@Debradelai @gymbomom2 oh, he has a penis so it's ok to make fun of HItler." +06/20/2018,Comedians,@therealroseanne,"@granolamite @Amirica24 what exactly about Q is 'doofus""? Interested in your analysis. thanks" +06/20/2018,Comedians,@therealroseanne,"@dedreb @Amirica24 also, everyone on the left is so 'intelligent', they have few political references." +06/20/2018,Comedians,@therealroseanne,"@dedreb @Amirica24 yes, because most americans know nothing about Iran deal, capitalism, class system or anti semit… https://t.co/Oko7Xxn19S" +06/20/2018,Comedians,@therealroseanne,RT @tatobin2: @bhobunny @wfraser60 @therealroseanne @RickAnderson The Trump Administration has not separated children from their parents. T… +06/20/2018,Comedians,@therealroseanne,Occupy wall street got pissed at me bc I advocated for debt forgiveness. they preferred to ask ppl 2 finance a scam… https://t.co/h4noMbOhVq +06/20/2018,Comedians,@therealroseanne,@BeeBeeBeeLeaves @1TaxedOutSista @GREENESJ333 @robwrog @Fulcrum__News intellectual animals who survived inhuman deg… https://t.co/KhKX9BcFok +06/20/2018,Comedians,@therealroseanne,RT @GREENESJ333: @DeplorableGoldn @therealroseanne @redneckowl @robwrog @Fulcrum__News @POTUS They lied to us. It was a huge propaganda cam… +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @DeplorableGoldn @redneckowl @robwrog @Fulcrum__News @POTUS as they tried to screw Israeli elections w… https://t.co/ErLcLiraWa +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne MK ULTRA will not work on #FreeThinkers! + +Once you see the TRUTH you cannot unsee it. + +We are LIBERATED a…" +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @Amirica24 @therealroseanne Shall we be explaining the Book of Esther, next? Iran is the largest state sponsor of terror a…" +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @Amirica24 @therealroseanne ""The Iran deal was never about prevention of nuke device. It was a huge money laundering opera…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: Also Iowa. + +That's why I'm one-eighth Santee Sioux. + +Great-Grandpa had a very young Sioux maid, and everybody lied about…" +06/20/2018,Comedians,@therealroseanne,RT @elenochle: MONDAY JUNE 18TH NEWS BLAST @TheJordanRachel @Jordan_Sather_ @therealroseanne @jennajameson @Annakhait @katiet121 @1ambecaus… +06/20/2018,Comedians,@therealroseanne,@LJT_is_me i'm passionate about children because I'm human +06/20/2018,Comedians,@therealroseanne,RT @LJT_is_me: I didn't know..That explains why you have always been so passionate about this. I need to learn more. https://t.co/QAtf4QcI3x +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @therealroseanne @redneckowl @robwrog @Fulcrum__News Yes, the information has been out there all along but so has the msm…" +06/20/2018,Comedians,@therealroseanne,"RT @wfraser60: @RickAnderson What a crock of shit, 90% of these children are unaccompanied, the rest god only knows who they are, they are…" +06/20/2018,Comedians,@therealroseanne,trafficked children are used as domestic workers. This happened in Utah when I was a kid-60% of native american kid… https://t.co/4gfSAJsapG +06/20/2018,Comedians,@therealroseanne,"RT @XluvnuX: @ThomasWictor They wonder why their tactics no longer work. Anyone who refuses see through this crap, is almost complicit at…" +06/20/2018,Comedians,@therealroseanne,"RT @mangelaron: @ThomasWictor @SavtheRepublic their fake Russia-Trump collusion, it's falling down, @realDonaldTrump obstruction of justice…" +06/20/2018,Comedians,@therealroseanne,RT @RettCopple: @ThomasWictor The infuriating part of all this is the constant and organized propaganda campaign comparing the US to Nazi G… +06/20/2018,Comedians,@therealroseanne,"RT @ToddKrieger1: @ThomasWictor They have never intended to actually help children, and never will. The Trump DACA legislation could be a g…" +06/20/2018,Comedians,@therealroseanne,THERE'S TRUTH AND THERE'S DISINFO-THERE IS A WAR ON FOR YOUR MIND. don't surrender bc you won't survive. +06/20/2018,Comedians,@therealroseanne,A Jew making fun of Hitler is now assumed to be 'racist'! HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA +06/20/2018,Comedians,@therealroseanne,RT @SaRaAshcraft: @SiddonsDan @therealroseanne @realDonaldTrump That is one of my favorites. So is this: https://t.co/ZRQLBD0AJG +06/20/2018,Comedians,@therealroseanne,"RT @KathySoltani: @therealroseanne On behalf of my Iranian family, I thank you." +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne Thank you for not standing down. +Thank you for not staying silent. + +The Iranian Regime is a terror organi…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: You're a better person than me, because I wasn't shocked. + +The only three people in the world I trust to never betray me…" +06/20/2018,Comedians,@therealroseanne,RT @libbyannehess: @therealroseanne Don't give these negative trolls the time of day. Block as soon as you see them. They can't handle the… +06/20/2018,Comedians,@therealroseanne,@redneckowl @GREENESJ333 @robwrog @Fulcrum__News they lack the references to understand my tweet-they are so stupid… https://t.co/qWp760NGz1 +06/20/2018,Comedians,@therealroseanne,"@1TaxedOutSista @GREENESJ333 @robwrog @Fulcrum__News it was about her politics, not her looks, genius." +06/20/2018,Comedians,@therealroseanne,@SistaCal @GREENESJ333 @robwrog @Fulcrum__News don't be upset that I ridiculed your hero. +06/20/2018,Comedians,@therealroseanne,@Oompaqueen @GREENESJ333 @robwrog @Fulcrum__News you can do your own research-it's all there. +06/20/2018,Comedians,@therealroseanne,RT @MrNashvilleTalk: @therealroseanne Exactly. Read up on it. People don’t do their homework and are so easily swayed. When our guards are… +06/20/2018,Comedians,@therealroseanne,"RT @rockriver_: @dsade2 @therealroseanne @RealCandaceO Yes, as a descendant, I found the holocaust references very ""offensive"". For starte…" +06/20/2018,Comedians,@therealroseanne,I was saddened & shocked that ppl who knew me 4 years accused me of being a racist 4 political points. I oppose cor… https://t.co/EZiRTeKjki +06/20/2018,Comedians,@therealroseanne,"I've corrected my mistake-which was to speak against an immoral regime-Iran, which throws gays off buildings & exec… https://t.co/WsJTGqzVrJ" +06/20/2018,Comedians,@therealroseanne,@Amirica24 i am sad that ppl like you lack the intellectual references to understand my tweet. It was not a racial… https://t.co/DpR0BQwulS +06/20/2018,Comedians,@therealroseanne,@fakenoooz i apologized to ppl who lacked the references to understand my tweet. bye! +06/20/2018,Comedians,@therealroseanne,RT @AyesHavit: @therealroseanne https://t.co/mtlL1tjEDr Pedophilia and Slavery is the product of those who do nothing and say nothing. Poli… +06/20/2018,Comedians,@therealroseanne,@dmoyeweirdnews huff post is an anti semitic rag. gtfo +06/20/2018,Comedians,@therealroseanne,@PossieElizabeth learn about reading comprehension. +06/20/2018,Comedians,@therealroseanne,"RT @jerrycalvert76: @therealroseanne Roseanne, if it's a show you wanted, well, you already did that, and better than most ever will! And n…" +06/20/2018,Comedians,@therealroseanne,"@Romideol it wasn't racist, moron-it was about a murderous Iranian regime. I'm not as stupid as you are." +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @DesslynStorm @626Robyn @MARS0411 @therealroseanne You DO know that photo shoot was for a Jewish magazine, Right? HEEB, a…" +06/20/2018,Comedians,@therealroseanne,"RT @shawnsteel1: Rescued Migrant Woman Was Not Mother of Children She Brought Across Border + +Does anyone care? + +It’s called Human Trafficki…" +06/20/2018,Comedians,@therealroseanne,"RT @LionelMedia: The question that no one ever asks is whether something is worthy of a top security clearance. Stated differently, what be…" +06/20/2018,Comedians,@therealroseanne,RT @RealJamesWoods: So sad. #SanFrancisco https://t.co/pdMbuN3ATH +06/20/2018,Comedians,@therealroseanne,@thecjpearson @AFreeBlackMan they are not brought here by parents! #Coyotes +06/20/2018,Comedians,@therealroseanne,"RT @Education4Libs: Racism didn’t work. +Sexism didn’t work. +Rigging the election didn’t work. +Russia didn’t work. +Gun control didn’t work.…" +06/20/2018,Comedians,@therealroseanne,"RT @AuthorAnnBaker: @ChadPergram You've got to ask yourself, why are these people so desperate to have 2k children, some that are being acc…" +06/20/2018,Comedians,@therealroseanne,RT @Thomas1774Paine: Fired-Up Gowdy scorches Comey in blistering opening statement at IG hearing https://t.co/SvSuhecotd +06/20/2018,Comedians,@therealroseanne,"RT @AmyMek: “Pick the target, freeze it, personalize it, & polarize it” Cut off the support network & isolate the target from sympathy. Go…" +06/20/2018,Comedians,@therealroseanne,"RT @canarymission: After @ucla refuses 2 prosecute violent disruptors of pro-Israel event, students pursue justice w/ LAPD. “This case is a…" +06/20/2018,Comedians,@therealroseanne,@VLPRESL and most have poorly paid staff too +06/20/2018,Comedians,@therealroseanne,RT @AFreeBlackMan: President Trump should test the sincerity of the media on this immigration issue. Pardon Michael Flynn tomorrow. If the… +06/20/2018,Comedians,@therealroseanne,"RT @HillelNeuer: Dear @UNHumanRights Chief Zeid: +Hamas just fired over 45 rockets last night at southern Israeli communities. I support Pal…" +06/20/2018,Comedians,@therealroseanne,the mid terms are so important! VOTE OUT ALL PRO-TRAFFICKING PPL! STUDY THIS ISSUE DO NOT BE FOOLED! KNOW WHAT IS REALLY HAPPENING! +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: Pedophile Crackdown In Australia Stops ‘Hundreds’ Of Child Predators At Airports + +Sounds like a great idea for the U.S.A…" +06/20/2018,Comedians,@therealroseanne,"RT @TT45Pac: Bi-Polar Acting🏆 + +I guess he thinks his base is really stupid. +I know they are not. +Research people. +2008,2009,2010, 2011, 20…" +06/20/2018,Comedians,@therealroseanne,"RT @NabeelAzeezDXB: 🤔🤔🤔 Thoughts, @maddow? - More Than 2,300 Suspected Online Child Sex Offenders Arrested During Operation “Broken Heart”…" +06/20/2018,Comedians,@therealroseanne,"RT @SiddonsDan: Hillary there has never been anything like this. You get a subpoena, and after getting the subpoena you delete 33,000 email…" +06/20/2018,Comedians,@therealroseanne,@rnlynn1958 @michelle11502 G0D is working thru everyone these days-it's amazing to witness! +06/20/2018,Comedians,@therealroseanne,RT @ElderLansing: The new Buzz phrase used among Black Libnuts is that black conservatives have “sold our souls” because we support POTUS T… +06/20/2018,Comedians,@therealroseanne,RT @dsade2: @therealroseanne @RealCandaceO Do you find these Concentration Camp comparisons as offensive as I do? Rampant Anti-Semitism by… +06/20/2018,Comedians,@therealroseanne,"RT @Cernovich: A man stops at the border with an underage boy or girl: ""This is my child."" + +They have no paperwork or proof of this. + +Do yo…" +06/20/2018,Comedians,@therealroseanne,"RT @_ImperatorRex_: 10. They were all so certain Clinton would win, they lost their minds. + +Justice is coming. + +#MAGA + +The end." +06/20/2018,Comedians,@therealroseanne,"RT @LuetkeRachel: @therealroseanne @RealCandaceO lots of arrests and resignations and suicides .... think ppl + +..... Listen it's real sim…" +06/20/2018,Comedians,@therealroseanne,"RT @NBCchansen: If the left cares so much about children, then why has there been zero coverage of Operation Broken Heart? #Qanon #Pedogate…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: GUESS WHAT? + +Tourism in San Francisco is WAY DOWN. + +It turns out that people don't like being mugged, and they don't like…" +06/20/2018,Comedians,@therealroseanne,RT @DRUDGE_REPORT: Bill Clinton 'son' slams former president for showing compassion for immigrant children but 'abandoning his own'... +06/20/2018,Comedians,@therealroseanne,"RT @michaelbeatty3: HEARTBREAKING +Rachel Maddow breaks down while explaining late term abortion procedures. +She really cares about kids htt…" +06/20/2018,Comedians,@therealroseanne,"RT @KamVTV: Democrats are using this photo of the child on the right as a political propaganda piece to deceive its viewers/voters. + +This…" +06/20/2018,Comedians,@therealroseanne,RT @JudicialWatch: The Obama Admin proposed admitting 110000 refugees for fiscal year 2017. President Trump issued Executive Order 13769 in… +06/20/2018,Comedians,@therealroseanne,@michaeljohns @kennegansmom trafficked bc of Democrat policies including fast and furious. +06/20/2018,Comedians,@therealroseanne,RT @Agent1710: @Oompaqueen @GREENESJ333 @robwrog @therealroseanne @Fulcrum__News https://t.co/d0NjOO7mtZ +06/20/2018,Comedians,@therealroseanne,@bbusa617 @co_firing_line anti semites do that- +06/30/2018,Comedians,@TheLewisBlack,June 29 at the West Bank Cafe celebrating its opening forty years ago.Its been more than a restaurant to so many of… https://t.co/CZMTpZg1H5 +06/27/2018,Comedians,@TheLewisBlack,RT @TonyNocerino: @TheLewisBlack I found you at Disneyland https://t.co/EJkjoAM1Zi +06/26/2018,Comedians,@TheLewisBlack,"🇺🇸 Feeling Red, White, and Screwed? Express yourself in these red, white, and blue items for one-fourth off through… https://t.co/GI2vI86oUA" +06/25/2018,Comedians,@TheLewisBlack,"💢NEW show on sale to fan club members NOW!!! Sept 22 at @ColonialKeene in Keene NH. Fan Club Seats in first 4 rows,… https://t.co/2sHNE2EqvI" +06/23/2018,Comedians,@TheLewisBlack,Happy #NationalHydrationDay 💦 https://t.co/8QszeiAKSB +06/20/2018,Comedians,@TheLewisBlack,"RT @Brandonsbuddz: Happy 3rd Anniversary of Disney/Pixar's #InsideOut. This movie came out in theaters on June 19th, 2015. Featuring the vo…" +06/19/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: 2 wks ago he said Canada burnt down DC. He seriously thought that. Apologies Canada. Ur Crown Royal is delicious n Ban… +06/19/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Oh for Christ's sake. Most ppl dont wanna take their own kid on a long plane ride. Nobody's smuggling someone else's 2… +06/19/2018,Comedians,@TheLewisBlack,What we have been doing at the Border. Separating children from their parents is Indefensible. No set up. No pun… https://t.co/tEyDGJfjVY +06/17/2018,Comedians,@TheLewisBlack,A Happy Father's Day to my very happy father and all you other fathers too. https://t.co/2Um0ERmm94 +06/15/2018,Comedians,@TheLewisBlack,RT @TheDailyShow: Happy Friday! Here's a @TheLewisBlack outtake. #BetweenTheScenes https://t.co/V87hoD8To8 +06/14/2018,Comedians,@TheLewisBlack,"ICYMI: Lewis Black sounds off about the extreme safety measures used to handle mass shootings in U.S. schools, from… https://t.co/OT6RFOn3z3" +06/13/2018,Comedians,@TheLewisBlack,"TUNE IN TONIGHT!!! (Wed, June 13) for a hilarious New Back In Black segment on @TheDailyShow ​on @ComedyCentral, 11… https://t.co/AtyJlluMuo" +06/13/2018,Comedians,@TheLewisBlack,"For those of you who are fans of my parents, I was with them yesterday. They say hi. https://t.co/yyJmFLNhvq" +06/12/2018,Comedians,@TheLewisBlack,🤬 Mad about 👔 Dads & 🎓 Grads Bobblehead Sale - Dad doesn't need another stupid tie & who the hell knows what a Grad… https://t.co/qEFql0I85Y +06/12/2018,Comedians,@TheLewisBlack,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/09/2018,Comedians,@TheLewisBlack,"RT @ParamountHV: Grammy Award-winning comedian, @TheLewisBlack is coming to the Paramount in September! https://t.co/xDczxXFe1E" +06/09/2018,Comedians,@TheLewisBlack,This is a little late but I wanted to extend the moment. Congratulations to the Capitals. Thanks for a triumphant… https://t.co/MErbjQpAo5 +06/06/2018,Comedians,@TheLewisBlack,Looking forward to it. https://t.co/cq71WC3FHX +06/06/2018,Comedians,@TheLewisBlack,Thanks so much. Only College graduation speech I have ever given. It was at the Thurgood Marshall College at UCS… https://t.co/6Tzf1OGdH7 +06/06/2018,Comedians,@TheLewisBlack,⚕️ Help save lives + win tix + meet Lewis Black! ⏳Only a few days left to reach our goal for the #RunForRosogin fun… https://t.co/1a5esG6Mpw +06/05/2018,Comedians,@TheLewisBlack,🤬 Mad about 👔 Dads & 🎓 Grads Bobblehead Sale - You know Dad doesn't need another stupid tie & who the hell knows wh… https://t.co/6kwB7gDFy5 +06/01/2018,Comedians,@TheLewisBlack,It's #NationalDonutDay 🍩 https://t.co/CNw6HkGQ1z +05/31/2018,Comedians,@TheLewisBlack,#TBT from April 2002 - Lewis Black - Surviving https://t.co/6cNNbPTb0s via @comedycentral +05/29/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: I'm sick of unfunny shit being called ""jokes."" I work hard at ""jokes"" so let's not use ""it was just a joke"" when u jus…" +05/29/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: He ate it. He was rite. @TheLewisBlack https://t.co/m1lkl5Ay62 +05/26/2018,Comedians,@TheLewisBlack,Way too truuuuue!!!! https://t.co/FyR4fuwX1m +05/24/2018,Comedians,@TheLewisBlack,"ICYMI - Rant Replays from the last 3 shows at the @DCWarnerTheatre are available for viewing NOW, for a limited tim… https://t.co/dWLNu33nRv" +05/24/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Dunno how @TheLewisBlack expects greatness w 8 sweaters n a jacket on. W best caddie n drinkin pal @BrianLordan @oldhe… +05/23/2018,Comedians,@TheLewisBlack,"We're close to reaching our goal but need YOUR help to save lives! By donating, you'll have a chance for 2 comp tix… https://t.co/NwfnA7AgW6" +05/22/2018,Comedians,@TheLewisBlack,Watch Part 2 now! https://t.co/uongX5ZszR +05/20/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @DCWarnerTheatre in Washington DC: https://t.co/DKTBLOcMiZ https://t.co/Nu786I3N9t" +05/19/2018,Comedians,@TheLewisBlack,"RT @Linkville: Meet the Coleman's. ""One Slight Hitch"" opens this Friday! And runs for 4 weekends @Linkville Playhouse in Klamath Falls, OR!…" +05/19/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Washington DC: https://t.co/DKTBLOcMiZ https://t.co/1KAcUtZnx0" +05/17/2018,Comedians,@TheLewisBlack,"FINAL 3 Live-Screams til Fall start tonite, as first 1/2 of Joke's On US tour wraps up @DCWarnerTheatre. Submit ur… https://t.co/AGPNrCfH1H" +05/17/2018,Comedians,@TheLewisBlack,"RT @DCWarnerTheatre: Comedian @TheLewisBlack is back in DC for 3 shows here this Thursday, Friday & Saturday! Some great seats are still av…" +05/16/2018,Comedians,@TheLewisBlack,On way to D.C. for three shows and so I just got a chance to stop in and see the folks. Thats Frank next to me. W… https://t.co/xVMgFlXCw5 +05/16/2018,Comedians,@TheLewisBlack,A new generation of kids will know him as Anger in Pixar’s animated “Inside Out.” “My generation didn’t know it had… https://t.co/m7V7cKnWpQ +05/15/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: And me n @TheLewisBlack have made it our mission w our free time to find a cure! @CF_Foundation https://t.co/ghZvYrfU… +05/14/2018,Comedians,@TheLewisBlack,"YOU can help Team Lewis Black save lives! And have a chance for 2 comp tix, MEET Lewis & get collectibles (t-shirts… https://t.co/Dv88s84jR7" +05/13/2018,Comedians,@TheLewisBlack,And a happy mother's day to all you mothers. I'm on a plane but here's my Mom. https://t.co/k8SEKBqiLF +05/10/2018,Comedians,@TheLewisBlack,"NEW show on sale NOW! Due to demand, a second show has been added in Greensboro NC (showdate: Nov 4.) F.U.C.K.U. t… https://t.co/KcfHDVEzq5" +05/08/2018,Comedians,@TheLewisBlack,Mother's Day is THIS Sunday (May 13). She'll appreciate a gift that helps her on her way and gets her through her b… https://t.co/tTwr92zM9b +05/07/2018,Comedians,@TheLewisBlack,"RT @science2movies: @TheLewisBlack and Prof. @BGreene join @Faith_Salie to talk math jokes. + +https://t.co/aS4axAEDYS https://t.co/EkYZxNHIPB" +05/06/2018,Comedians,@TheLewisBlack,Thank you https://t.co/j4dEVMSQ50 +05/04/2018,Comedians,@TheLewisBlack,Happy Star Wars Day! May the Farce Be With You! #StarWarsDay #maythe4thbewithyou #princesslewis https://t.co/sQmGaypGS9 +05/04/2018,Comedians,@TheLewisBlack,ICYMI last night! Back in Black - The Primaries Are Working Their Stupid Magic https://t.co/fu6twzjmqq via @comedycentral +05/03/2018,Comedians,@TheLewisBlack,Looking for that perfect gift for Mom? We've got you covered. Order now to receive in time for Mother's Day (May 13… https://t.co/OjDTn2jLpH +05/03/2018,Comedians,@TheLewisBlack,"Had a lovely afternoon with the folks. They have redefined ""Keep on Truckin."" https://t.co/4bTiv0D6b4" +05/03/2018,Comedians,@TheLewisBlack,"RT @TheLewisBlack: TUNE IN UPDATE! Due to a last minute schedule change yesterday, my #BackInBlack segment will air tonight (Thurs, May 3)…" +05/03/2018,Comedians,@TheLewisBlack,"TUNE IN UPDATE! Due to a last minute schedule change yesterday, my #BackInBlack segment will air tonight (Thurs, Ma… https://t.co/7xfu77IlZl" +05/02/2018,Comedians,@TheLewisBlack,"TUNE IN ALERT! Tonight (Wed, May 2) @TheDailyShow on @ComedyCentral at 11pm/10pmC #BackInBlack https://t.co/Dg7B7tru9c" +05/02/2018,Comedians,@TheLewisBlack,"RT @cunytv: Comedian @TheLewisBlack and physicist@bgreene join forces to explain all the hidden #math puns in “The Simpsons” and “Futurama,…" +05/01/2018,Comedians,@TheLewisBlack,Fan Club tickets are on sale NOW for a NEW show on the Fall tour: Sept 23 @TheMahaiwe in Great Barrington MA. All… https://t.co/GYq2MqRxZ1 +04/30/2018,Comedians,@TheLewisBlack,Need to let off some steam? This little guy can help. Just push his button and he'll say one of five of your favori… https://t.co/ebodY8cmVT +04/30/2018,Comedians,@TheLewisBlack,"ICYMI - Rant Replays from the last 3 Texas shows are available NOW, for a limited time, for FREE at… https://t.co/hAFM9byYI9" +04/29/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @reventioncenter in Houston TX: https://t.co/DKTBLOcMiZ" +04/28/2018,Comedians,@TheLewisBlack,"RT @reventioncenter: TONIGHT — @TheLewisBlack - Joke’s on US Tour! Doors: 7PM, Show: 8PM. + +Info + tickets: https://t.co/7xfHT6h4Oj https:/…" +04/28/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @acllive in Austin TX: https://t.co/DKTBLOcMiZ https://t.co/1Q6OqQUP0t" +04/27/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from Dallas TX: https://t.co/DKTBLOcMiZ https://t.co/RDCRbAqlbS" +04/26/2018,Comedians,@TheLewisBlack,"Lewis Black on political humor, coffee - https://t.co/7GkE7U6Vpw #GoogleAlerts" +04/26/2018,Comedians,@TheLewisBlack,"35 years ago, @CityHarvest was founded by New Yorkers who came together to help our neighbors in need. Today, with… https://t.co/oQta0O1QUy" +04/25/2018,Comedians,@TheLewisBlack,"""This fundraiser means a great deal to me & my dear friend Steve Olsen. I hope a few of you will throw a couple buc… https://t.co/SUnPKHHKQd" +04/25/2018,Comedians,@TheLewisBlack,"Rant replays from the last 4 Colorado shows (Ft Collins, both nights in Denver & Colorado Springs) are up! Head ove… https://t.co/nvkessgIjL" +04/25/2018,Comedians,@TheLewisBlack,And the beat goes on. https://t.co/Gew6E3UGcv +04/24/2018,Comedians,@TheLewisBlack,Comedian Lewis Black Returns To The ‘End Of The Universe’…AKA Houston https://t.co/kJV5IoYFeZ +04/24/2018,Comedians,@TheLewisBlack,"""You don't get to say your way is the best way or it's your way or the highway... https://t.co/SxDPcGL6ha via @the_mixmaster" +04/23/2018,Comedians,@TheLewisBlack,@TylerDahl16 These lines are meant to be overlapping if that helps you +04/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @FoCoLincolnCtr in Ft Collins CO: https://t.co/DKTBLOunax https://t.co/g2AMUdNBWh" +04/22/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @ParamountCO in Denver: https://t.co/DKTBLOunax https://t.co/kEBrdyql1J" +04/21/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @ParamountCO: https://t.co/DKTBLOunax https://t.co/OCtwlGYfu3" +04/20/2018,Comedians,@TheLewisBlack,Team Lewis Black needs YOUR help to save lives! Benefiting the @rogosin Institute which helps people with kidney di… https://t.co/sGZz5Ccvbw +04/20/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Me in a meeting w my accountant about taxes. https://t.co/dWJz5t1Px5 +04/20/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @PikesPeakCenter in Colorado Springs CO: https://t.co/DKTBLOunax https://t.co/raIfoRHbbV" +04/19/2018,Comedians,@TheLewisBlack,"Holy shit! Four 'The Rant Is Due' live-screams in a row this week from Colorado, starting tonight (Apr 19) thru Sun… https://t.co/9wjKzvkArp" +04/18/2018,Comedians,@TheLewisBlack,Thanks so much for that insanely great poster and deeply appreciate being one of your favorite artists. Good luck… https://t.co/O8LHSOpFGf +04/18/2018,Comedians,@TheLewisBlack,@DanaMW @YouTube Nope just telling people where I am going to be and making sure they get the best tickets. Since… https://t.co/OwuWkIBOrf +04/18/2018,Comedians,@TheLewisBlack,My very funny and talented friend @LouieAnderson wrote a funny book I think you'll like. https://t.co/IUTlZsEDlj +04/18/2018,Comedians,@TheLewisBlack,"Fan Club tix are on sale NOW ahead of the Fri, Apr 20 public on sale date. All seats within the first 10 rows of th… https://t.co/M0ylqovIQS" +04/17/2018,Comedians,@TheLewisBlack,"🔥 Lewis Black's ""The Joke's On US"" Fall Tour tickets on sale NOW for F.U.C.K.U. members! 🚯 Join & get tix:… https://t.co/nLUJqyKVfS" +04/17/2018,Comedians,@TheLewisBlack,"Sonofabitch! 2018 Fall Tour Dates have been announced & Fan Club ticket sales start tomorrow (Tue, Apr 17). All fan… https://t.co/mTNXdAPxKE" +04/16/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @gillioztheatre in Springfield MO: https://t.co/nry8Gu2xUZ https://t.co/hcqVMb0FA6" +04/15/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @hoytsherman in Des Moines IA: https://t.co/DKTBLOcMiZ" +04/14/2018,Comedians,@TheLewisBlack,"I meant April 14th, 2018. Today. https://t.co/9wuTrsXx5I" +04/14/2018,Comedians,@TheLewisBlack,"April 15th, 2018 on way from Rochester Minnesota to Des Moines Iowa. This isn't weather. It's bullshit. https://t.co/cOXJM76pIq" +04/14/2018,Comedians,@TheLewisBlack,RT @SevereHayley: Our granddaughter Rumi consulting the Oracle... @TheLewisBlack https://t.co/k780oh6Dw6 +04/14/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @MayoCivicCenter in Rochester MN: https://t.co/DKTBLOcMiZ" +04/14/2018,Comedians,@TheLewisBlack,"Judy, a member of F.U.C.K.U. recently purchased an item from Lewis' Black Market. It caused her some frustration, b… https://t.co/SkYXOm6RpO" +04/11/2018,Comedians,@TheLewisBlack,RT @HennessyHaole: Remember when @kathleenmadigan and Lewis Black @TheLewisBlack joined Judy Gold @JewdyGold and me in studio? Nothing but… +04/10/2018,Comedians,@TheLewisBlack,"NEW show on sale NOW! Oct 5, @OldNatlCentre Indianapolis IN. All fan club seats are within the first 7 rows:… https://t.co/AwwjqXE6nn" +04/09/2018,Comedians,@TheLewisBlack,"RT @PB_507: .@TheLewisBlack talks anger, the state of U.S. politics, and whether or not the level of absurdity in reality has rendered come…" +04/09/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @PalacePA in Greensburg PA: https://t.co/DKTBLOcMiZ https://t.co/BYb6VPf7Cb" +04/08/2018,Comedians,@TheLewisBlack,RT @ecpgh: See today's Entertainment Central Cool Picks: https://t.co/tfrhyf60hO @TheLewisBlack @livenationpgh @PalacePA @City_Theatre @Pir… +04/08/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @FillmoreDetroit in Detroit: https://t.co/DKTBLOcMiZ https://t.co/YR3pALbkZz" +04/07/2018,Comedians,@TheLewisBlack,"Join us tonight (Sat, Apr 7) for our FREE, end-of-show live stream from @FillmoreDetroit . Send in your rant sugges… https://t.co/vEQTSVlRq2" +04/07/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @rialtosquare in Joliet IL: https://t.co/DKTBLOunax https://t.co/54h27fM6Jp" +04/06/2018,Comedians,@TheLewisBlack,Did you miss us last week? We're back! 🤗 Free end-of-show live streaming tonite - Sun. Send in your rants NOW to… https://t.co/RxrSaalQrE +04/04/2018,Comedians,@TheLewisBlack,Viewer Melanie Ellis takes advantage of Lewis' worldwide megaphone to announce that she is with child. Congratulati… https://t.co/DiK68VMS2M +04/04/2018,Comedians,@TheLewisBlack,How Lewis Black's Righteous Anger Has Gotten Us Through Two Decades of Craziness https://t.co/01mvxescaw +04/02/2018,Comedians,@TheLewisBlack,Spent a wonderful afternoon with my folks who keep on trucking and continue to amaze me. https://t.co/qat3cUzHqc +04/02/2018,Comedians,@TheLewisBlack,Q&A: Comedian Lewis Black on how yelling is cathartic and why politics now really isn't funny https://t.co/ziUjaKmYhx via @Joliet_HN +03/29/2018,Comedians,@TheLewisBlack,"RT @chq: Attendees of our 2017 week on ""Comedy and the Human Condition"" won't want to miss this stunning new video introduction to the @Ntl…" +03/29/2018,Comedians,@TheLewisBlack,The clock is winding down on our March Madness sale but there is still time to save BIG on bundles and sale items!… https://t.co/iSzbNJLEyG +03/26/2018,Comedians,@TheLewisBlack,Happy Birthday! https://t.co/AxYXpk62Ob +03/25/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @PeabodyDaytona In Daytona Beach FL: https://t.co/DKTBLOcMiZ https://t.co/wREHaK7Y30" +03/24/2018,Comedians,@TheLewisBlack,For all those marching don't let anyone tell you that what you are doing isn't important. My heart is with you. My… https://t.co/Tb6aYS0njW +03/24/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @vanwezel in Sarasota FL: https://t.co/DKTBLOcMiZ https://t.co/q0uyK0W8x4" +03/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Ft Pierce FL: https://t.co/DKTBLOcMiZ https://t.co/JM5Ol4KcsC" +03/22/2018,Comedians,@TheLewisBlack,It's March Merch Madness! Save up to TEN FUCKING BUCKS on these bundles and other sale items!… https://t.co/HDFkTLqARV +03/22/2018,Comedians,@TheLewisBlack,"""It's been unbelievable. Comedy's not something I ever set out to do,"" said Black. King of rant Lewis Black set to… https://t.co/PaPJkC8Pvz" +03/22/2018,Comedians,@TheLewisBlack,"Tune in alert! ""The Rant Is Due"" Live Streaming starts tonite from @SunriseTheatre Ft Pierce FL & then tmrw from… https://t.co/YiAThPyzIT" +03/21/2018,Comedians,@TheLewisBlack,"Lewis Black on tackling Trump, 'The Daily Show,' 'Inside Out' https://t.co/tINFt1pL75" +03/18/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @BorgataAC in Atlantic City: https://t.co/DKTBLOcMiZ" +03/17/2018,Comedians,@TheLewisBlack,"@Pupster_2000 Sorry, glitch on the site! Working to fix it now. We hope you'll join us for tomorrow's rant. ~Lew's Crew" +03/17/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @BorgataAC in Atlantic City NJ: https://t.co/DKTBLOcMiZ" +03/15/2018,Comedians,@TheLewisBlack,ICYMI last night. Replay of Back in Black segment - Trump's Golfing Milestone https://t.co/H2hdNrvdoI via @comedycentral +03/14/2018,Comedians,@TheLewisBlack,Great room. Great food. Great wine. Great fun. Come see me tomorrow (Mar 15) @CityWineryNYC. Tix:… https://t.co/28HGiZuNsu +03/14/2018,Comedians,@TheLewisBlack,I am on @TheDailyShow tonight (at least for now). 11/10c on @ComedyCentral https://t.co/etWoUNR4fc +03/14/2018,Comedians,@TheLewisBlack,"#NationalWalkoutDay +https://t.co/y9PtCTItBm" +03/13/2018,Comedians,@TheLewisBlack,"Good luck Nick. If he doesn't take the Under Secretary of State job, you'll have a winner that's what happens when… https://t.co/vweVSAk9TQ" +03/13/2018,Comedians,@TheLewisBlack,"Thanks for those extremely kind words, it means a lot to me. https://t.co/Q1C9xEbS1N" +03/13/2018,Comedians,@TheLewisBlack,RT @CityWineryNYC: Mastermind @TheLewisBlack performs his ONLY #NYC TOUR DATE at #CityWineryNYC on March 15! Come have a mental breakdown w… +03/12/2018,Comedians,@TheLewisBlack,I stand w/@americans4arts as they take hundreds of arts advocates to Capitol Hill today for #ArtsAdvocacy Day. Arts… https://t.co/Pc2kCLhizW +03/11/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @Lvillepalace in Louisville KY: https://t.co/DKTBLOcMiZ https://t.co/OXXMJWZTnk" +03/09/2018,Comedians,@TheLewisBlack,See you tonight at the historic Ryman Auditorium! Due to unforeseen circumstances tonight’s live stream has been ca… https://t.co/P4BSOYqX4f +03/09/2018,Comedians,@TheLewisBlack,"RT @FilmNewsNos: 🎬MOVIE HISTORY: 27 years ago today March 8, 1991, the movie 'The Hard Way' opened in theaters! + +#MichaelJFox #StephenLang…" +03/09/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live from @ThePeel in Asheville NC: https://t.co/DKTBLOcMiZ https://t.co/O30UzFjhnl" +03/08/2018,Comedians,@TheLewisBlack,RT @CityWineryNYC: Mastermind @TheLewisBlack performs his ONLY #NYC TOUR DATE at #CityWineryNYC on March 15! Come have a mental breakdown w… +03/08/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @ThePeel in Asheville NC: https://t.co/DKTBLOcMiZ https://t.co/NbFYcrrFA8" +03/07/2018,Comedians,@TheLewisBlack,"Tune in alert! ""The Rant Is Due' end-of-show Live Streaming tonight thru Sun (Mar 10). That's 4 nights in a row! 😲… https://t.co/JfoMQoGane" +03/07/2018,Comedians,@TheLewisBlack,"RT @Lightning100: Ready for @TheLewisBlack @theryman on Friday? For your shot at tickets, just share your top 5 all time favorite comedians…" +03/06/2018,Comedians,@TheLewisBlack,"On sale now! Due to popular demand, a THIRD show @DCWarnerTheatre, Wash D.C. has been added. Fan Club tickets for t… https://t.co/KPkrAYfsx5" +03/05/2018,Comedians,@TheLewisBlack,"New show added and ON SALE NOW! Mar 15, 2018 City Winery New York. Get ur tix here: https://t.co/5oMt6o5Oy2" +03/05/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @GaillardCenter in Charleston SC: https://t.co/DKTBLOcMiZ https://t.co/xq8HCuHD8H" +03/04/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Roanoke VA: https://t.co/DKTBLOcMiZ https://t.co/drTE6gIpJT" +03/04/2018,Comedians,@TheLewisBlack,Do you wish more people would just fucking vote already? Well help make that happen by volunteering with… https://t.co/5Sx8FXBbyH +03/03/2018,Comedians,@TheLewisBlack,"""The Kids Are Marching"" (2/24/18 Kingston NY) | Lewis Black https://t.co/nPZ4NTqqS9 via @YouTube" +03/03/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @DOMEnergyCenter in Richmond VA: https://t.co/DKTBLOcMiZ https://t.co/is2Ec4Ubb5" +03/02/2018,Comedians,@TheLewisBlack,"RT @GaillardCenter: Sunday night, Grammy-award winning, stand up comedian @TheLewisBlack performs at the Gaillard for a night of irreverent…" +03/01/2018,Comedians,@TheLewisBlack,Lewis Black returns to Roanoke for Berglund show on Saturday https://t.co/Qore3YtZHn via @roanoketimes +03/01/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond TOMORROW and Berglund Cente…" +03/01/2018,Comedians,@TheLewisBlack,Only 1 more day to take advantage of our 🎱Lewis Black Magic Ball Sale - now $10 (was $15) thru Mar 1. Answers to y… https://t.co/vUBLNPRp1F +02/28/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond 3/2/18 and Berglund Center…" +02/27/2018,Comedians,@TheLewisBlack,"Watch replays of last weekends The Rant Is Due portion of the show (from Princeton NJ, Binghamton NY & Kingston NY… https://t.co/MecKkRhPqc" +02/26/2018,Comedians,@TheLewisBlack,"Comedian Lewis Black disses human stupidity, politicians, internet https://t.co/nY4a6rAwYL via @postandcourier" +02/26/2018,Comedians,@TheLewisBlack,RT @nytimestravel: Why @TheLewisBlack always brings The Week magazine with him when he travels https://t.co/IVeYqh48ao +02/26/2018,Comedians,@TheLewisBlack,"RT @LvillePalace: GIVEAWAY 😆 You could WIN 2 tickets to @TheLewisBlack: The Joke's on US Tour next Saturday, 3/10! This contest ends this W…" +02/26/2018,Comedians,@TheLewisBlack,RT @table4oneplease: @HeadCountOrg @TheLewisBlack Floridians can now register to vote online if they have a FL driver license or state ID.… +02/25/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @upac in Kingston NY: https://t.co/DKTBLOcMiZ https://t.co/0fCFLlT5cj" +02/24/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from Binghamton NY: https://t.co/DKTBLOcMiZ https://t.co/kFlmy6gUR6" +02/23/2018,Comedians,@TheLewisBlack,Today is the start of MLB spring training. Lewis looks forward to the baseball season. His feelings about the NY Ya… https://t.co/ywRxofWNvb +02/23/2018,Comedians,@TheLewisBlack,"It's been awhile since the last Road Report from our favorite behind-the-scenes guy, Lenny Hughes. Let's take an in… https://t.co/5NSxnK8Btv" +02/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @mccarter in Princeton NJ: https://t.co/DKTBLOcMiZ" +02/22/2018,Comedians,@TheLewisBlack,🎱 Lewis Black Magic Ball Sale - now $10 (was $15) from now thru Mar 1. Answers to your life's questions will be rev… https://t.co/QzPb0NTSfT +02/22/2018,Comedians,@TheLewisBlack,Listen to the interview...Lewis Black At UPAC In Kingston On 2/24 https://t.co/vAOGoQjS1I +02/22/2018,Comedians,@TheLewisBlack,"Lewis Black, ahead of UPAC show in Kingston, talks Trump, Facebook and how rants can be funny https://t.co/vUgDlXPh3q via @dailyfreeman" +02/21/2018,Comedians,@TheLewisBlack,RT @GregWarren: Very funny and very nice guy needs help. https://t.co/pDkm0RChGC +02/21/2018,Comedians,@TheLewisBlack,Thanks for making a great tee. https://t.co/hbde2mdahm +02/21/2018,Comedians,@TheLewisBlack,Comedian Lewis Black at UPAC hopes to step back from the 'madness' https://t.co/DlAwkCf4pT via @pokjournal +02/20/2018,Comedians,@TheLewisBlack,Watch replays of last weekends The Rant Is Due portion of the show (from Columbus OH and Skokie IL) for a limited… https://t.co/VPerLaeWco +02/20/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond 3/2/18 and Berglund Center…" +02/18/2018,Comedians,@TheLewisBlack,RT @OttoAndGeorge: George sits down with @TheLewisBlack -Stills from The Pig Roast interview. https://t.co/fCVKIfIV52 +02/18/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @NSCPAS in Skokie IL: https://t.co/DKTBLOcMiZ" +02/17/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @NSCPAS in Skokie IL: https://t.co/DKTBLOcMiZ" +02/16/2018,Comedians,@TheLewisBlack,The Lewis Black Interview https://t.co/JOEx8FUJD1 @991thewhale +02/16/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @CAPAColumbus in Columbus OH: https://t.co/DKTBLOcMiZ https://t.co/3bn3GSJ2fI" +02/15/2018,Comedians,@TheLewisBlack,Tune In Alert! The Rant Is Due end-of-show live streams start TONIGHT (Feb 15) in Columbus OH. Submit your rant sug… https://t.co/wNyLx6nf59 +02/14/2018,Comedians,@TheLewisBlack,"""The Joke's on US"" official tour design screenprinted in red and grey on a navy tee, cozy hoodie or jumbo tote. Is… https://t.co/WHT6uIMI6V" +02/14/2018,Comedians,@TheLewisBlack,"""The holiday doesn't belong in February. It's February. The most depressing month of the year."" +~ Lewis Black on V… https://t.co/McrdEXdpCF" +02/14/2018,Comedians,@TheLewisBlack,Today is his official birthday. A 100 years of Sam. https://t.co/giEJNEQ52r +02/13/2018,Comedians,@TheLewisBlack,"RT @desusandmero: We talk to @TheLewisBlack about saying whatever you want, the idea this presidency being ""great"" for comedy, his broke th…" +02/13/2018,Comedians,@TheLewisBlack,NEW items in the Black Market - Middle Finger Portrait Tee & Jumbo Tote... perfect for when you feel like flipping… https://t.co/sMAhRPUaD3 +02/13/2018,Comedians,@TheLewisBlack,My t-shirt said Read Banned Books. Had a great time with the very funny Desus and Moro. https://t.co/bx61dql4m8 +02/13/2018,Comedians,@TheLewisBlack,"RT @zerocool1984a: @desusandmero @TheLewisBlack Just want to say, hilarious interview and I called the rainbow..😂😎 https://t.co/6ObE6Mxfhk" +02/12/2018,Comedians,@TheLewisBlack,Tune-in Alert! Tonight (Feb 12) @ 11:00pm. Desus and Mero. Channel Finder: https://t.co/nW7mZPOLYq @desusandmero https://t.co/gvuemUJv09 +02/12/2018,Comedians,@TheLewisBlack,"RT @EricLagatta: ""I did a lot of hallucinogens as a kid, and I came up with all sorts of paranoid fantasies. This was not one of them"" + +I t…" +02/11/2018,Comedians,@TheLewisBlack,Last night I had the joy of celebrating my Dad's 100th birthday with family and friends. A lovely and principled m… https://t.co/L69BTCwpNT +02/09/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: It's finally here! Woohoo! My new CD from the Netflix special ""Bothering Jesus."" Available nowwww! https://t.co/QMdCqG…" +02/08/2018,Comedians,@TheLewisBlack,😭Bummed because there are no live-streams this weekend? No worries. Watch replays of last weekends The Rant Is Due… https://t.co/7JzcGtyXCy +02/07/2018,Comedians,@TheLewisBlack,"RT @FantasySprings: Comedian @TheLewisBlack is bringing his ""The Joke's On US"" tour to Fantasy Springs on Friday, May 11th! + +Tickets go o…" +02/06/2018,Comedians,@TheLewisBlack,Lewis Black Magic Ball - for answers to all of life's questions. Conjure up Lewis' wisdom whenever you please. Get… https://t.co/VWK4g8Y6YU +02/06/2018,Comedians,@TheLewisBlack,So how's the weather? #NationalWeatherpersonsDay https://t.co/7By9rWF1jD +02/05/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: I'm pre-thanking you! It's final here! Woooohoooo! The audio CD from my latest Netflix special ""Bothering Jesus."" Limi…" +02/04/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @sdbalboa in San Diego CA: https://t.co/DKTBLOunax https://t.co/mGTIwf9sAx" +02/03/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @groveofanaheim in Anaheim CA: https://t.co/DKTBLOunax https://t.co/pbEwBmmqhW" +02/02/2018,Comedians,@TheLewisBlack,RT @theryman: ON SALE NOW: @TheLewisBlack at the Ryman March 9! >> https://t.co/sys1LMWA3i https://t.co/oZbbGgfDKX +02/02/2018,Comedians,@TheLewisBlack,RT @NtlComedyCenter: We are proud to announce the acquisition of the archive of ground-breaking comedian Shelley Berman. The archive was ca… +02/02/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @LargoLosAngeles in Los Angeles: https://t.co/DKTBLOunax https://t.co/7oqn3t1kIF" +02/02/2018,Comedians,@TheLewisBlack,🏈 Only a few more days! Scoop up some sweet gear on sale and score big savings 💰 in our Super Sale. Now through Feb… https://t.co/dY9aiJnWqZ +02/01/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @LargoLosAngeles in Los Angeles CA: https://t.co/DKTBLOunax https://t.co/JGlFIxaCUL" +02/01/2018,Comedians,@TheLewisBlack,There' still time to grab tix for tonight! https://t.co/nhNBbzNIiR +01/31/2018,Comedians,@TheLewisBlack,"I congratulate and couldn't be more thrilled for my friend, the brilliant @JaneIraBloomSax, for her well deserved G… https://t.co/uA5EE34AuX" +01/31/2018,Comedians,@TheLewisBlack,"🏈 Super Sale Kick Off! Score big savings 💰 now through Feb 4, on these items plus more in the Lewis Black Market.… https://t.co/QNTwgUVE4r" +01/31/2018,Comedians,@TheLewisBlack,"Tune In Alert! Can you handle all the laughs? The Rant Is Due, end-of-show live streams start tonight in Los Angele… https://t.co/6lPoCZVL78" +01/30/2018,Comedians,@TheLewisBlack,"Comedian Lewis Black Weighs In On Legalization, Taxation and a Certain Four-Letter Word https://t.co/FFRMyzWxCR via @ocweekly" +01/30/2018,Comedians,@TheLewisBlack,Need a laugh? We've got you covered! Watch replays of last weekends The Rant Is Due portion of the show for a limit… https://t.co/Uffkmr9mwa +01/29/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Chico CA: https://t.co/DKTBLOunax https://t.co/9Zy4WiFe8i" +01/28/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @grandsierra in Reno NV: https://t.co/DKTBLOunax" +01/25/2018,Comedians,@TheLewisBlack,"If you're asking the question, ""Can I save 20% on the Lewis Black Magic Ball right now?"" The answer is ABSO-FUCKING… https://t.co/Nc5W0vkkaS" +01/24/2018,Comedians,@TheLewisBlack,Need to let off some steam? This little guy can help. Just push his button and he'll say one of five of your favori… https://t.co/H7shihoT6q +06/27/2018,Comedians,@MelBrooks,I’ll be doing a live Q&A alongside a screening of Blazing Saddles live in London this July! Tickets are on sale now… https://t.co/GnTDEuEgn1 +06/04/2018,Comedians,@MelBrooks,RT @tcm: Thanks for coming out to the #TCMBigScreen 50th Anniversary celebration of @MelBrooks' THE PRODUCERS ('68)! ICYMI see the encore s… +05/23/2018,Comedians,@MelBrooks,Join me in London this July for ‘Back In The Saddle Again’. I’ll be doing a live Q&A alongside a screening of the f… https://t.co/D4hQXFjIrC +05/08/2018,Comedians,@MelBrooks,"RT @eventim_uk: Legendary @MelBrooks is Back In The Saddle Again at the @EventimApollo in July! Join him for an exclusive, inside look at h…" +04/30/2018,Comedians,@MelBrooks,"RT @BacklotProject: Join @MelBrooks at @NJPAC next Sunday, May 6, for an in-person conversation following a screening of SPACEBALLS! For m…" +04/11/2018,Comedians,@MelBrooks,"RT @carlreiner: If you're not doing anything tonight and even if you are, you might enjoy watching the premiere of ""G.I. Jews"" on PBS https…" +03/07/2018,Comedians,@MelBrooks,Congratulations @realrossnoble you got over the hump! Your very first Olivier nomination! I’m so very proud of you.… https://t.co/0vYQqqT5E0 +03/07/2018,Comedians,@MelBrooks,Congrats to @LesleyJosephTV on her Olivier nomination for her spectacular performance as Frau Blucher! (Whinnnnney!… https://t.co/bYZcC5Q3Ex +03/07/2018,Comedians,@MelBrooks,Congrats to the entire cast and crew of @youngfrankldn on the Olivier nomination for Best New Musical! Well done! I… https://t.co/SQl32ZYoCW +02/15/2018,Comedians,@MelBrooks,"Congrats to @cocoanglais on a great debut as Igor in @youngfrankldn. We’ve been sold out all week. By the way, if y… https://t.co/rWrj8sj2Jw" +01/30/2018,Comedians,@MelBrooks,"...to his heartbreakingly beautiful and Academy Award nominated score for The Elephant Man, he always elevated ever… https://t.co/yshYflerH3" +01/30/2018,Comedians,@MelBrooks,"John Morris, who was strangely unsung for being such a musical genius, scored almost every movie I ever made and he… https://t.co/3W6eRdrdb2" +12/21/2017,Comedians,@MelBrooks,RT @youngfrankldn: Mel Brooks behind the camera on the film set for Young Frankenstein. #ThrowbackThursday https://t.co/OHBy4nSLvD +12/14/2017,Comedians,@MelBrooks,RT @EW: Mel Brooks calls The Producers the 'miracle of my life' https://t.co/woHf76aUq5 +12/14/2017,Comedians,@MelBrooks,"RT @tcm: #TCMFF Alert! Opening night will feature a 50th Anniversary presentation of THE PRODUCERS (‘68) attended by @MelBrooks, & a tribut…" +12/13/2017,Comedians,@MelBrooks,Good news! My son @nickbrooks72 movie SAM - an hilarious sex mixup comedy - is streaming on Amazon Prime in the US! https://t.co/LITM0djAZ6 +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Ladies and Transylvanians we have been nominated for ‘Best New Musical’ at the @WhatsOnStage Awards! #WOSAwards https://… +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Congratulations to @hadleyfraser nominated for ‘Best Actor in a Musical’ at the @WhatsOnStage Awards! #WOSAwards https:/… +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Congratulations to @realrossnoble nominated for ‘Best Supporting Actor in a Musical’ at the @WhatsOnStage Awards! #WOSAw… +10/11/2017,Comedians,@MelBrooks,I am exploding with joy! Congratulations to our brilliant cast of @youngfrankldn —What a fantastic opening night. +10/10/2017,Comedians,@MelBrooks,RT @youngfrankldn: Legends @MelBrooks and Susan Stroman at the official opening night of #YoungFrankenstein in the West End ⚡️ https://t.co… +10/10/2017,Comedians,@MelBrooks,"RT @TimeOutTheatre: In photos: Mel Brooks' Young Frankenstein musical, opening TONIGHT at the Garrick https://t.co/CISAl3G3kc https://t.co/…" +09/25/2017,Comedians,@MelBrooks,Previews start this week! https://t.co/0g9eVu269x +09/23/2017,Comedians,@MelBrooks,"RT @JRossShow: DON'T MISS @rustyrockets, @MelBrooks, @LewisHamilton and @Palomafaith on the sofa with @wossy THIS SATURDAY at 09:15PM #TheJ…" +09/20/2017,Comedians,@MelBrooks,RT @youngfrankldn: Missed @MelBrooks and @HadleyFraser chatting with @GrahNort on @BBCRadio2? Catch up here! https://t.co/i97Y2v6u8Q +09/18/2017,Comedians,@MelBrooks,"You should watch me tonight on #ToTellTheTruth (@TellTruthABC) at 10|9c on ABC. Because to tell the truth, everybod… https://t.co/vDugmvN0hN" +09/14/2017,Comedians,@MelBrooks,"RT @PBSAmerMasters: In our latest podcast episode, listen to a previously unreleased interview with legendary comedian @MelBrooks: https://…" +08/23/2017,Comedians,@MelBrooks,Stunned by the news that my friend/co-writer Tom Meehan has died. I’ll miss his sweetness & talent. We have all los… https://t.co/LDiV4p0btt +07/27/2017,Comedians,@MelBrooks,Don't miss my son Max reading & signing his new book #MinecraftTheIsland this weekend at The Grove in LA! https://t.co/MgX56vEjyF +07/18/2017,Comedians,@MelBrooks,"The book is out! What are you waiting for?! +https://t.co/n4JqJ27NIT https://t.co/PhNj3JPtHU" +07/11/2017,Comedians,@MelBrooks,Bursting with pride for my talented son @maxbrooksauthor & his new #Minecraft novel Minecraft:The Island that comes out one week from today! +06/30/2017,Comedians,@MelBrooks,@EzioGreggio thanks for your crazy birthday wish. I beg to differ--you've got a much bigger nose than me! +06/28/2017,Comedians,@MelBrooks,When this movie first opened I was a bit player. Time has made me the star. https://t.co/M5az924n07 +06/08/2017,Comedians,@MelBrooks,Some words on the passing of my friend Ed Victor. https://t.co/sY4JJk72aa +04/25/2017,Comedians,@MelBrooks,RT @IndependentLens: Monday #IndieLensPBS: Has/will there ever be a topic so taboo no one will EVER find humor in it? @lastlaughfilm https:… +04/21/2017,Comedians,@MelBrooks,So happy for all the potent feelings I've stirred up among all the ardent horse racing fans with my rebuke of the @latimes - let's march! +04/18/2017,Comedians,@MelBrooks,To the @latimes - shame on you for eliminating daily coverage of horse racing (the sport of kings!) from your newspaper. +04/06/2017,Comedians,@MelBrooks,"Don Rickles. One of the bravest, funniest, and sweetest guys that ever performed. A dear pal that we will all sorely miss." +04/05/2017,Comedians,@MelBrooks,RT @nerdist: These 5 classic film comedies are not to be missed at this year's @TCM Film Fest: https://t.co/HxfqRXIpyp by @michelledeidre #… +03/15/2017,Comedians,@MelBrooks,"Thank you all for supporting the campaign raising money for the @GeffenPlayhouse. There’s 2 days left to buy at https://t.co/68lz2XEQt8 +" +03/10/2017,Comedians,@MelBrooks,There is one week left to support The @GeffenPlayhouse. You can buy the limited edition apparel at… https://t.co/Y8fHHP9bRo +03/02/2017,Comedians,@MelBrooks,"I could afford the sweatshirt, but the car is twice as much. https://t.co/utJb0KiedL" +03/01/2017,Comedians,@MelBrooks,It’s good to be the king! Get ltd. edition apparel raising money for the @GeffenPlayhouse. There’s 2 weeks to buy a… https://t.co/cVWwaAtpsp +01/28/2017,Comedians,@MelBrooks,No one could have played The Elephant Man more memorably. He carried that film into cinematic immortality. He will be sorely missed. +01/28/2017,Comedians,@MelBrooks,It was terribly sad today to learn of John Hurt's passing. He was a truly magnificent talent. +01/20/2017,Comedians,@MelBrooks,RT @hoffmanormouse: @taketwo and @kpccalex talks to THE Mel Brooks ... and it was exactly what you'd think it would be about https://t.co/S… +01/19/2017,Comedians,@MelBrooks,RT @TheAVClub: Mel Brooks didn’t try to pants the president https://t.co/hDfSjTu7jU https://t.co/4O60PhrPcw +01/18/2017,Comedians,@MelBrooks,SAM directed by my son @nickbrooks72 is on Amazon & iTunes! I talk about how much I love it here: https://t.co/54VmauGjn8 @Sibylsantiago +01/18/2017,Comedians,@MelBrooks,"If I were you, I wouldn’t miss me! Blazing Saddles & Mel Brooks in person. This Friday in Los Angeles. https://t.co/YmYr3CXxXS" +01/17/2017,Comedians,@MelBrooks,RT @KTLASpotlight: Win tickets to see @melbrooks at @RiotLA. https://t.co/DN2zKP8eYq https://t.co/zaLtcGZQhl +01/12/2017,Comedians,@MelBrooks,RT @billydiffer: Opening Nights - 25/12/2016 - @bbcradioscot still on I player @_AngelaLansbury @MelBrooks @stephenashfield ellainec https… +12/21/2016,Comedians,@MelBrooks,RT @LAmag: Riot LA Is the Comedy Showcase Our City Deserves: https://t.co/f1z4J8j41e https://t.co/wp1kxNldlv +12/14/2016,Comedians,@MelBrooks,RT @RiotLA: Break out your Sunday's Best.. @MelBrooks is at the Microsoft Theater on 1/20. https://t.co/C5x4iUwQJk https://t.co/8VUQFzW8g8 +12/14/2016,Comedians,@MelBrooks,RT @OnePerfectShot: Deal Alert: The Mel Brooks Collection on Blu-ray for $19. Preposterous: https://t.co/VmdcONNrFD https://t.co/l6ra3aXKUS +12/06/2016,Comedians,@MelBrooks,RT @RiotLA: Join us on opening night with a Q&A with Mel Brooks (!!!) + screening of Blazing Saddles on 1/20. https://t.co/vMNEX9vUnK +12/05/2016,Comedians,@MelBrooks,"RT @Studio360show: Our episode about parodies with @MelBrooks, @TheDavidZucker, Simon Pegg, @nickjfrost & @alyankovic https://t.co/waaOlphB…" +11/21/2016,Comedians,@MelBrooks,RT @OnePerfectShot: Young Frankenstein (1974) DP: Gerald Hirschfeld | Director: Mel Brooks https://t.co/fPv8cj0RPa +11/16/2016,Comedians,@MelBrooks,"RT @PasteMagazine: The surreal, singular relevance of @MelBrooks and ""Blazing Saddles"" in 2016: https://t.co/1Gxiqy32Us #film https://t.co/…" +11/04/2016,Comedians,@MelBrooks,Proud to say that the original comedy SAM - dir. by my son @nickbrooks72 is now available for your viewing pleasure https://t.co/iiuvVkFZsD +11/04/2016,Comedians,@MelBrooks,RT @JohnJMoser: How to get tickets to see @MelBrooks at Easton's @StateTheatrePA before they go on sale to the public. Read @mcall: https:/… +10/18/2016,Comedians,@MelBrooks,The YOUNG FRANKENSTEIN coffee table book is out today! I’m really proud of it. Please don’t spill any coffee on it. https://t.co/PZ4jIrooam +10/17/2016,Comedians,@MelBrooks,"RT @latimesmovies: Loud and lively at 90, Mel Brooks talks about Gene Wilder, political correctness and his classic movies https://t.co/GiD…" +10/15/2016,Comedians,@MelBrooks,RT @MSTheater: Tickets available NOW to see @MelBrooks live conversation & audience Q&A + viewing of #BlazingSaddles Tickets here: https://… +10/08/2016,Comedians,@MelBrooks,"RT @fathomevents: Back by popular demand, #YoungFrankenstein is coming back to the big screen w/ an intro from Mel Brooks 10/18. https://t.…" +10/05/2016,Comedians,@MelBrooks,"RT @fathomevents: Walk this way, Mel Brooks spooky spoof #YoungFrankenstein returns to the big screen tonight! https://t.co/Xxz1HvsnYq http…" +09/23/2016,Comedians,@MelBrooks,https://t.co/o1jKsYUBpr +09/22/2016,Comedians,@MelBrooks,"RT @DAVID_LYNCH: Dear Twitter friends, you could win 2 VIP passes to the Festival of Disruption! ENTER: https://t.co/klfV77FNs8 https://t.c…" +09/15/2016,Comedians,@MelBrooks,Want to see me at the Festival of Disruption? Win 2 VIP passes HERE: https://t.co/yC5kKOCb7r https://t.co/vFZJF1bgN8 +09/08/2016,Comedians,@MelBrooks,RT @nerdist: #YoungFrankenstein will return to theaters for one night! https://t.co/sf7YBs7z0Y https://t.co/wx9CuAz9Oi +09/08/2016,Comedians,@MelBrooks,"RT @PasteMagazine: ""Young Frankenstein"" returning to 500+ theaters in October, with intro from @MelBrooks https://t.co/8hhNnYFbcN https://t…" +09/08/2016,Comedians,@MelBrooks,RT @good: .@MelBrooks talks to GOOD about the incredibly moving tribute he's planned for Gene Wilder. https://t.co/cO1Xlr7ikM https://t.co/… +09/01/2016,Comedians,@MelBrooks,https://t.co/AwlhYdWzWo +08/31/2016,Comedians,@MelBrooks,RT @FallonTonight: .@MelBrooks remembers meeting Gene Wilder for the first time... #FallonTonight https://t.co/fiU0X9zCrY +08/31/2016,Comedians,@MelBrooks,I'm on @FallonTonight tonight! https://t.co/IIxpMc8eIa +08/29/2016,Comedians,@MelBrooks,Gene Wilder-One of the truly great talents of our time. He blessed every film we did with his magic & he blessed me with his friendship. +08/27/2016,Comedians,@MelBrooks,RT @RadioCity: RT & Follow for chance to win tix to see @MelBrooks here at @RadioCity on Sept 1! Sweepstakes ends 8/30 5pm! #MBSWP https://… +08/27/2016,Comedians,@MelBrooks,"We lost Jack Riley this week. One of the brightest, sweetest actors I've ever worked with. I will miss him so much." +08/23/2016,Comedians,@MelBrooks,Mel Brooks Looks Back: ‘Blazing Saddles’ Could Never Get Made Today https://t.co/RlFA0BHO28 via @thedailybeast +08/19/2016,Comedians,@MelBrooks,RT @nerdist: The one and only @MelBrooks is on @leonardmaltin's Maltin on Movies podcast today: https://t.co/IEfj8PKeW0 🎧 https://t.co/EChp… +08/19/2016,Comedians,@MelBrooks,"RT @carlreiner: Sept 1st Mel Brooks will be at NY Radio City Music Hall to screeh Blazing Saddles, 4500 of 6000 seats were sold so hurry.if…" +08/17/2016,Comedians,@MelBrooks,"RT @RadioCity: The one & only @MelBrooks heads to @RadioCity for a very special night on Sept 1! What's your favorite work of his? +https://…" +08/05/2016,Comedians,@MelBrooks,David Huddleston was sublime in Blazing Saddles. He helped make all those Johnsons of Rock Ridge immortal. He was one of a kind. +07/23/2016,Comedians,@MelBrooks,RT @BDLpub: Missed a shirt? 50 more #YoungFrankenstein tshirts tomorrow 10am @hachetteus booth #1116 #SDCC2016. Preorder a book https://t.c… +07/23/2016,Comedians,@MelBrooks,RT @brooklynvegan: Mel Brooks talking about and screening 'Blazing Saddles' at Radio City Music Hall https://t.co/fvB16PBity https://t.co/S… +07/22/2016,Comedians,@MelBrooks,RT @OnePerfectShot: SPACEBALLS (1987) DoP: Nick McLean | Dir: Mel Brooks | https://t.co/OJmBoFs01Y https://t.co/cYy0X5Innh +07/22/2016,Comedians,@MelBrooks,RT @marisaschein: Powerful words @MelBrooks & the Borscht Belt See what remains of the area where he got his start 10/4 @CornellPress https… +07/20/2016,Comedians,@MelBrooks,"We'll miss Garry Marshall. So talented, so funny--a sweetheart of a guy." +07/14/2016,Comedians,@MelBrooks,Loved last @SHO_RayDonovan -Terry & Daryll did a terrific word for word version of the Sheriff's hilarious scene from BlazingSaddles. Bravo! +07/14/2016,Comedians,@MelBrooks,And thanks to @EW for the great exclusive on the 'Young Frankenstein' book - just look at those photos! https://t.co/Kez6Sqa7Yq +07/13/2016,Comedians,@MelBrooks,"This book is not alive, but it is now available for pre-order! https://t.co/dC2cVpZgeD #YoungFrankenstein https://t.co/ZP59FVbJmK" +06/30/2016,Comedians,@MelBrooks,Thank you to all my friends & fans for remembering me on my birthday. I promise to remember all of you when you turn 90. +06/23/2016,Comedians,@MelBrooks,"I’ll be appearing at David Lynch's @FestDisruption in LA. Presale today, code: DISRUPT >> https://t.co/GWGoLUhnWA https://t.co/AnS2uWy3aN" +06/22/2016,Comedians,@MelBrooks,"I apologize, Taran is right. I vaguely remember someone sticking their face into an otherwise lovely picture. https://t.co/zklPP6DYb0" +06/22/2016,Comedians,@MelBrooks,"RT @DAVID_LYNCH: Dear Twitter Friends, I'm curating the first-ever @FestOfDisruption. Tickets on sale Friday! https://t.co/OuQJocfGpo https…" +06/22/2016,Comedians,@MelBrooks,Friends? I've never seen this guy before in my life. https://t.co/Qi72L0Y52c +06/06/2016,Comedians,@MelBrooks,"Attention Milwaukee! ""Mel Brooks brings 'Blazing Saddles' to Riverside"" https://t.co/clri8oxtFw" +06/01/2016,Comedians,@MelBrooks,This is a truly incredible story about filmmaking. Thanks to @blakejharrisNYC & @HDTGM for asking me to tell it. https://t.co/ha1V6Z2zjt +05/26/2016,Comedians,@MelBrooks,So proud of my son @nickbrooks72 - SAM has its European market debut @Festival_Cannes! Congrats to the whole cast & crew at @SittingCatProd +05/25/2016,Comedians,@MelBrooks,https://t.co/oCcucE7rVN +05/23/2016,Comedians,@MelBrooks,"RT @JoelGHodgson: Met my idol, the amazing Mel Brooks this weekend, he said, ""I love your show with the movies and the robots"" #bliss https…" +05/19/2016,Comedians,@MelBrooks,"RT @RadioCity: Access presale tix NOW to @MelBrooks HERE on 9/1! Use code ""SOCIAL"" thru Thurs at 10PM: https://t.co/fx2NmNJlEs +https://t.co…" +05/17/2016,Comedians,@MelBrooks,RT @mollyeichel: Pretty excited I got to talk to @MelBrooks. Even more excited I got farts on the cover https://t.co/vfUq3LUImB https://t.c… +05/17/2016,Comedians,@MelBrooks,"I'm told there are a few seats left to see Blazing Saddles with me in Hartford, CT this Sunday - don't miss it! https://t.co/QTeBSCtlgb" +05/13/2016,Comedians,@MelBrooks,RT @Jeff_Delgado: This is a good boy. @MelBrooks #youngfrankenstein https://t.co/NxXKULUjRB +05/12/2016,Comedians,@MelBrooks,"RT @TheArtsInPhilly: If you want to LOL with @MelBrooks, check out Mel Brooks: Back in the Saddle Again at @KimmelCenter May 21! https://t.…" +04/19/2016,Comedians,@MelBrooks,Today is the 15th anniversary of the opening night for 'The Producers’ on Broadway https://t.co/Rdm0l9ixaY +04/08/2016,Comedians,@MelBrooks,If you happen to be within 100miles of Denver tomorrow night don’t miss this amazing symphonic tribute to my music! https://t.co/2OWRIXu1iv +04/07/2016,Comedians,@MelBrooks,My appearance on the @david_steinberg podcast is now available wherever it is that one gets a podcast https://t.co/D8JO2wsTH1 +03/24/2016,Comedians,@MelBrooks,I'm flattered but have to decline-- there is enough comedy in the current collection of candidates. https://t.co/RqYXWa1Iwv +03/21/2016,Comedians,@MelBrooks,"Thank you @Jeopardy for naming an entire category on tonight's show ""We Love Mel Brooks."" Good move, I like that guy. #jeopardy" +03/21/2016,Comedians,@MelBrooks,A short clip from a long chat w/ pal @david_steinberg that will be available for your listening pleasure tomorrow - https://t.co/b9JjgTjPZ3 +03/21/2016,Comedians,@MelBrooks,RT @Karaszewski: @MelBrooks gets the crowd to sing Happy 94th Birthday to @carlreiner on Saturday night https://t.co/7ltUqlIDyR +03/11/2016,Comedians,@MelBrooks,RT @hbonow: Gene Wilder and Cleavon Little star in @MelBrooks' Blazing Saddles. #streamingNOW: https://t.co/79Zl2flobF https://t.co/YymV88V… +02/19/2016,Comedians,@MelBrooks,RT @tocap: Come laugh with #MelBrooks AND #BlazingSaddles @tocap 3/19/16 Pre-sale code: BROOKS https://t.co/P1DQ1qAocd https://t.co/qctM9xU… +02/19/2016,Comedians,@MelBrooks,RT @SegerstromArts: Look who's getting back in the saddle. Mel Brooks comes to OC next month. https://t.co/OJG294XnT4 #Comedy https://t.co/… +01/28/2016,Comedians,@MelBrooks,The Raisinets weren't free you know. You both owe me $1.19. https://t.co/QBMS3rnYjw +01/19/2016,Comedians,@MelBrooks,ALERT! Those fools at Amazon are practically giving away my box sets today. https://t.co/UrMhadTLsc +01/15/2016,Comedians,@MelBrooks,Great interview in @CreativeScreen with my son @nickbrooks72 taking about his wonderful film SAM! https://t.co/xrJ9RRaem2 +01/15/2016,Comedians,@MelBrooks,"RT @CreativeScreen: Hollywood icon Mel Brooks discusses his writing process, what makes a good story, and love of Fred Astaire films. https…" +01/14/2016,Comedians,@MelBrooks,Pass me the maple syrup...because I look delicious! https://t.co/RLHhOG4tRS +01/12/2016,Comedians,@MelBrooks,"Bring home the #1 Monster Comedy of the Year, #HotelT2, now on Blu-ray, DVD&VOD. https://t.co/vWIqeOKcx5" +01/08/2016,Comedians,@MelBrooks,"RT @david_steinberg: Comedy Mavens Alert! My new podcast sampler for 2016. With @MelBrooks #MartinShort +@Realeugenelevy https://t.co/…" +12/22/2015,Comedians,@MelBrooks,If you have yet to hear me as Vampa Vlad in #HotelT2 it is now available on Digital https://t.co/RZJR2ldQ7T https://t.co/BFRum2D3oK +12/18/2015,Comedians,@MelBrooks,"RT @hbonow: Get your #StarWars fix instantly. +#Spaceballs is #NOWstreaming on @HBO NOW: https://t.co/78dG6fEfwY https://t.co/PJ2YNd1XCA" +12/18/2015,Comedians,@MelBrooks,It's downright scary when sci-if become reality. https://t.co/8ka8Fo9wbu +12/17/2015,Comedians,@MelBrooks,"RT @kencen: Just Announced! This Feb, the one-and-only @MelBrooks joins us for a hilarious conversation: https://t.co/qSgHnSTpyR https://t.…" +12/17/2015,Comedians,@MelBrooks,This very tall man deserves a nomination for his Oscar-worthy performance in the terrific film @EndOfTourMovie https://t.co/TM0si1HkZ6 +12/16/2015,Comedians,@MelBrooks,Bert Fields has done it again. His new book SHYLOCK: HIS OWN STORY is one of the best portraits of that immortal character you'll ever read. +12/11/2015,Comedians,@MelBrooks,Oh I just love them. They are beautiful! https://t.co/nnyIiehWkh +12/06/2015,Comedians,@MelBrooks,RT @newbevmidnights: Mel Brooks' BLAZING SADDLES screens midnight tonight @newbeverly! https://t.co/m26n7IFKDe +12/05/2015,Comedians,@MelBrooks,"RT @carlreiner: Mel's son Nicholas Brooks's film is tilted ""SAM"" & when U see it listed at a theater near you, go there & enjoy an original…" +11/26/2015,Comedians,@MelBrooks,"I was hoping Brancusi or Jacob Epstein would take a crack at Spaceballs, but failing them you did a GREAT job Blain. https://t.co/zZRQ5gygtu" +11/24/2015,Comedians,@MelBrooks,I vant you to enjoy this: https://t.co/vWIqeOKcx5 https://t.co/bSrYAtug7W +11/17/2015,Comedians,@MelBrooks,I don't think you'll be surprised to know that this one is my favorite https://t.co/2vbCGjn4Un @nerdist @burgermike https://t.co/OdI10QffsX +11/13/2015,Comedians,@MelBrooks,.@EricBAnthony @HollywoodBowl And to get to see Gary Beach back in his Tony winning role as Roger DeBris-what a lucky audience! +11/13/2015,Comedians,@MelBrooks,No thank you! It was so wonderful to see my show performed under the stars at The Hollywood Bowl -a great memory. https://t.co/2k1vje6tH4 +11/11/2015,Comedians,@MelBrooks,I had a good time w/ the filmmakers & crew of SAM at @AFIFEST last night. Great job @nickbrooks72 & @SittingCatProd https://t.co/ALRRbKhmSK +11/05/2015,Comedians,@MelBrooks,Incredibly proud that my son @nickbrooks72 's film SAM will be shown this Monday in LA at the @AFIFEST ! More info: https://t.co/DuAUq8AWpX +11/05/2015,Comedians,@MelBrooks,People get us confused all the time. https://t.co/Xd8E1SlE1V +11/04/2015,Comedians,@MelBrooks,"I love it! But is it just me, or does your Igor look a bit like a grinning Dark Helmet? https://t.co/X1keUAm39u" +11/02/2015,Comedians,@MelBrooks,RT @Jeff_Delgado: Barf!! He's his own best friend! @MelBrooks #fanart #spaceballs #bucklethis #schwartz #johncandy https://t.co/vfzvxiAIG2 +10/29/2015,Comedians,@MelBrooks,The likeness in uncanny! That's one handsome cat. https://t.co/ppzYtJ28JB +10/23/2015,Comedians,@MelBrooks,@Jeff_Delgado @Cloris_Leachman I love it! +10/23/2015,Comedians,@MelBrooks,RT @Jeff_Delgado: Here's my painting of the incredible @Cloris_Leachman from #youngfrankenstein! @MelBrooks #Hewasmyboyfriend #Blücher http… +10/14/2015,Comedians,@MelBrooks,RT @StrazCenter: …but you WILL need a ticket. We have a few left to see @MelBrooks & Blazing Saddles tonight! http://t.co/ru7HfxdpRg http:/… +10/14/2015,Comedians,@MelBrooks,"RT @carlreiner: Folks who live in Nashville, Tampa, Newark & Schenectady are lucky. U can see Mel Brooks strut his comic stuff in your fair…" +10/12/2015,Comedians,@MelBrooks,"RT @SonyPicturesIRL: ""These two smell funny."" +Head over to @entertainmentIE to see @MelBrooks as Vlad! #HotelT2 http://t.co/op7bnX3Nfj http…" +10/10/2015,Comedians,@MelBrooks,RT @TheWallisBH: What an amazing evening with @MelBrooks & @david_steinberg. And our season just started! http://t.co/dFtjXc6KHE http://t.c… +10/08/2015,Comedians,@MelBrooks,A pleasure! https://t.co/omNaWjazqY +10/07/2015,Comedians,@MelBrooks,About to take the stage with my pal @david_steinberg at @TheWallisBH ! http://t.co/ZI6fFonvA3 +10/02/2015,Comedians,@MelBrooks,"The mad men @Harumphwines didn’t get a big enough HARUMPH the first time, so they've released a second vintage! http://t.co/t7WnnvlU7F" +09/30/2015,Comedians,@MelBrooks,...still doesn't make a lick of sense. https://t.co/L9itsOe13y +09/29/2015,Comedians,@MelBrooks,RT @latelateshow: Sooooo @MelBrooks found a cat in our studio last night. http://t.co/56C2gcjbS2 http://t.co/oJ5DTozAA1 +09/25/2015,Comedians,@MelBrooks,Vampa's still got it! #HotelT2 is IN THEATERS NOW! http://t.co/oGmIJrw97n +09/25/2015,Comedians,@MelBrooks,RT @IanKarmel: Today I got to act with @MelBrooks in a sketch I wrote. Gonna be hard to top this one. http://t.co/ulvvHtyebW +09/25/2015,Comedians,@MelBrooks,RT @JKCorden: Tonight! @MelBrooks @NotoriousROD plus Thursday night FOODBALL! CBS 12.35! PS(there might be dancing) sssshhhh x http://t.co/… +09/25/2015,Comedians,@MelBrooks,RT @latelateshow: Tonight we're joined by @NotoriousROD and the legendary @MelBrooks! #LateLateShow +09/25/2015,Comedians,@MelBrooks,Discussing very important and immensely serious official police business with @JKCorden #LateLateShow http://t.co/hUF46wLD9S +09/24/2015,Comedians,@MelBrooks,"Attention Twitter! I'll be with @JKCorden on the @latelateshow tonight! Watch it, record it, and then maybe watch it again tomorrow." +09/22/2015,Comedians,@MelBrooks,I had a great time at the Emmys last night. Congrats to everyone at VEEP on the win! (I'm never doing this again.) http://t.co/K7c3haMbUk +09/21/2015,Comedians,@MelBrooks,I nearly didn't get the role--they said I was too short! https://t.co/AFOfoWoCRS +09/21/2015,Comedians,@MelBrooks,RT @NerdistDotCom: Look at @OfficialJLD taking a selfie with @MelBrooks. @VeepHBO wins Best Comedy Series! #Emmys http://t.co/CyfVYnFbLj +09/21/2015,Comedians,@MelBrooks,RT @TheEmmys: Congrats @VeepHBO on your #Emmy win & who wouldn’t get a selfie w @MelBrooks +09/20/2015,Comedians,@MelBrooks,"RT @THR: “The CIA called me asking about the Cone of Silence,” says Mel Brooks of #GetSmart #THR100 http://t.co/9kgQo0VCpC http://t.co/NB4f…" +09/20/2015,Comedians,@MelBrooks,"You are too sweet-- also I'd misplaced that crown years ago, so nice of you to return it. https://t.co/tOGInqSAsU" +09/18/2015,Comedians,@MelBrooks,The Emmys can't get enough of me! So I'm presenting again Sunday night. (This might turn into a steady job...) https://t.co/V135yp7sNW +09/18/2015,Comedians,@MelBrooks,"RT @david_steinberg: Can't believe I do this for a living. +Oct 6th W @MelBrooks #BeverlyHills http://t.co/NlPdEwsRyF" +09/17/2015,Comedians,@MelBrooks,RT @BLUEOXPEDITION: @MelBrooks our #Spaceballs #cosplay group with @MaxBrooksUKnews . Heck of a nice guy. One of my fav pics of all time! h… +09/14/2015,Comedians,@MelBrooks,RT @FilmsInFilms: Mel Brooks’ Young Frankenstein (1974) in Dennis Dugan’s Big Daddy (1999) http://t.co/fnv2faMkZL @MelBrooks http://t.co/yq… +09/13/2015,Comedians,@MelBrooks,"Well, I lost. BUT! BUT! I managed to get on stage when a show that was ABOUT me won and I accepted the award gratefully on their behalf." +09/12/2015,Comedians,@MelBrooks,So nice meeting you both--big fan! https://t.co/e3FricOm7Q +09/12/2015,Comedians,@MelBrooks,Backstage at The Creative Arts Emmys! I'm told you'll be able to watch it next Sat on FXX (good luck finding that...) http://t.co/MmvMhBcEYa +09/11/2015,Comedians,@MelBrooks,"RT @NYTArchives: Read the 1974 review of Mel Brook's ""Young Frankenstein"" http://t.co/8xbmlo1XBk http://t.co/sA3UBvduRD" +09/03/2015,Comedians,@MelBrooks,"I love it- and your name isn't bad either! ""@FartyMeldmanEyz: I see this HATCHback every now and then @MelBrooks http://t.co/xXSkTIpda5”" +09/03/2015,Comedians,@MelBrooks,"It's twue! ""@Variety: .@melbrooks and @catdeeley are among the presenters at this year's Creative Arts Emmys http://t.co/LBIG52UgUX”" +08/31/2015,Comedians,@MelBrooks,.@soer68 I can't read a word of it--But I love it! Can I get a translation? +08/31/2015,Comedians,@MelBrooks,"RT @soer68: @MelBrooks - a Swedish newpaper thinks the #Spaceballs spaceship, is the best craft to pass a black hole with... http://t.co/o…" +08/27/2015,Comedians,@MelBrooks,"RT @GregProops: Young Frankenstein +Greg Proops Film Club +Friday 8pm @Filmhouse +Tix: http://t.co/MTm0ggxpD7 http://t.co/5Y5tvwZU3o" +08/27/2015,Comedians,@MelBrooks,"RT @TheVinylSugar: Coming Soon: Shaun of the Dead, Young Frankenstein & Fast Times at Ridgemont High Vinyl Idolz! http://t.co/NfZBTufc6C ht…" +08/21/2015,Comedians,@MelBrooks,RT @DrGotts: 'Three cross-eyed men walk into a bar...' One of my favourite shoots this year @MelBrooks @carlreiner @iammrvandy http://t.co/… +08/18/2015,Comedians,@MelBrooks,RT @dinnerpartydnld: Don't miss our parade of famous folks (like @MelBrooks) telling a few eye-roll worthy jokes http://t.co/YKQ9kRKhaz htt… +08/17/2015,Comedians,@MelBrooks,. @denisleary thank you! bless you. I know at least 2 jews who loved Rescue Me. +08/11/2015,Comedians,@MelBrooks,@EzioGreggio I just left Rudy. He's on the floor crying his eyes out. +08/07/2015,Comedians,@MelBrooks,A delicious treat for you all from @ShoutFactory & @ShoutFactoryTV -Their doc on The 2000 Year Old Man is now online! http://t.co/HHk6LOe98h +08/06/2015,Comedians,@MelBrooks,". @EzioGreggio I'm screaming ""MI MANCHI!"" When are you coming to America? When can I see your new nose?" +08/06/2015,Comedians,@MelBrooks,"RT @EzioGreggio: @MelBrooks I'm screaming ""I love youuuuu !!!"" And you ? #MelBrooks #eziogreggio #isgoodtobetheking #bignoses #MelN1 http:/…" +08/06/2015,Comedians,@MelBrooks,"Dear Jon Stewart (@TheDailyShow), What are @carlreiner and I supposed to do every night now?! Well, I guess it's back to McHale's Navy." +07/31/2015,Comedians,@MelBrooks,"RT @carlreiner: Informed Mel of response & said he'd Run With The Bulls if the Bulls & their agent can assure him that he wont be licked, t…" +07/31/2015,Comedians,@MelBrooks,".@carlreiner Thanks for the invite. But when it comes to running with bulls, as Samuel Goldwyn once said, ""Include me out!""" +07/23/2015,Comedians,@MelBrooks,. @jonahray @kcrw Thanks for the plug! Your money will be in the usual place. +07/23/2015,Comedians,@MelBrooks,"RT @jonahray: Today on @kcrw's guest DJ PROJECT I played @MelBrooks, Minor Threat (@dischordrecords), @theweakerthans, @Sleater_Kinney & @f…" +07/20/2015,Comedians,@MelBrooks,".@elonmusk -Super Bowl ad idea: I pull up to a gas station in my new Tesla & say to the attendant, ""Fill'er Up!"" Cut to his mystified face." +07/20/2015,Comedians,@MelBrooks,Loving the tweets from my fans re: @TeslaMotors news. Can't wait to try ludicrous mode on my new FREE car (please send to home address) +07/18/2015,Comedians,@MelBrooks,"RT @MarleyJayAP: Electric car maker @TeslaMotors will add ""ludicrous mode"" acceleration to its Model S. They must like @MelBrooks. http://t…" +07/17/2015,Comedians,@MelBrooks,"Louis CK and I are nominated for Emmys in the same 3 categories. I'm voting for him, but I'd like everybody else to vote for me." +07/16/2015,Comedians,@MelBrooks,"So happy that MEL BROOKS LIVE AT THE GEFFEN is nominated for 2 Emmys! Thank you, thank you! Who knew so many voters had such good taste?" +07/16/2015,Comedians,@MelBrooks,"RT @TheComedians: Congratulations, @MelBrooks! The legend scored a 2015 Emmy Nomination for Outstanding Guest Actor in a Comedy Series. htt…" +07/14/2015,Comedians,@MelBrooks,"So sorry to hear that we lost the great Roger Rees. He may have been my evil Sheriff, but he was one of the sweetest guys to work with." +07/10/2015,Comedians,@MelBrooks,RT @OnePerfectShot: HISTORY OF THE WORLD: PART 1 (1981) Director of Photography: Woody Omens | Director: @MelBrooks http://t.co/RTOUiAox7w +06/30/2018,Comedians,@JimCarrey,"If you’re wondering why Fake President @realDonaldTrump doesn’t care about the suffering of children at the border,… https://t.co/XutuMann3I" +06/30/2018,Comedians,@JimCarrey,Laurel or Yanny? Black and blue or white and gold? Alex Jones or Curly from The Three Stooges? NOTHING IS CERTAIN A… https://t.co/b3OoPgt08M +06/28/2018,Comedians,@JimCarrey,https://t.co/PiqCpzMGzG https://t.co/FkKfHeR8uN +06/28/2018,Comedians,@JimCarrey,Mammonite Fundamentalist: Release your 2000 child hostages!! https://t.co/5hl49FAkW2 +06/25/2018,Comedians,@JimCarrey,So I fixed the controversial TIME Magazine cover. This is much more appropriate. You’re welcome @time https://t.co/VMDtGTj5Zy +06/25/2018,Comedians,@JimCarrey,"Christianity, Trump style: “Jesus was a loser. A failed carpenter. He's a savior because he was crucified. I like p… https://t.co/G56reenjz3" +06/24/2018,Comedians,@JimCarrey,I wonder how many Fortune 500 companies (cc: @Apple @PepsiCo @CocaCola @JPMorgan @Citi @Walgreens @GeneralElectric… https://t.co/NYnXao9rwz +06/22/2018,Comedians,@JimCarrey,Who needs NATO when our leader has so much more in common with Russia and North Korea. REGISTER TO VOTE!… https://t.co/XT3mTCIeaB +06/22/2018,Comedians,@JimCarrey,Nothing comforts a federally-abducted refugee child like a photo op with a Slovenian model wearing a coat that says… https://t.co/7bJnucsk3M +06/20/2018,Comedians,@JimCarrey,"40% of the US doesn’t care if Trump deports ppl, kidnaps their babies and uses them as political hostages. The time… https://t.co/Sr0dqAhLmb" +06/19/2018,Comedians,@JimCarrey,"“If the Democrats would just stop the Mueller investigation, build a wall, declare me a God and pass a special law… https://t.co/X8DLs61x9C" +06/19/2018,Comedians,@JimCarrey,And as the sun set upon the White House all its windows danced with glowing eyes — and demons’ voices growled to th… https://t.co/pV7Xz9kgPo +06/17/2018,Comedians,@JimCarrey,"Sanctioned, embraced, normalized by POTUS, evil is pushing the boundaries. Sociopaths have risen to the top. This F… https://t.co/mseqoBJ1ur" +06/14/2018,Comedians,@JimCarrey,Oh how I urine for this all to be over! https://t.co/uzLULtNPLE +06/13/2018,Comedians,@JimCarrey,https://t.co/a5ntyOMdgz +06/12/2018,Comedians,@JimCarrey,Let’s Make A Deal: You’ll be a real world leader. I’ll sway the midterm elections. And together we will save the wo… https://t.co/Ar5ECS1ErQ +06/09/2018,Comedians,@JimCarrey,"Ahhh Milwaukee...where the beer flows like wine! I gotta admit, when I saw this Dumb and Dumber tribute from the Br… https://t.co/NFkPi6JTg7" +06/08/2018,Comedians,@JimCarrey,Congratulations to the Washington Capitals on their Stanley Cup victory! There’s only one thing that would have mad… https://t.co/M5cOymM67x +06/07/2018,Comedians,@JimCarrey,“Give us your huddled masses yearning to breathe free...and we will lock their children in cages with tin-foil blan… https://t.co/an7179pTda +06/05/2018,Comedians,@JimCarrey,"We sit by as children are slaughtered by the hundreds in their classrooms, taken from their refugee parents and loc… https://t.co/HS4lXOdKlY" +06/02/2018,Comedians,@JimCarrey,Don’t worry folks. Melania is fine. They’re probably just reminding her how to play well with others. https://t.co/qwlyNneX0P +06/01/2018,Comedians,@JimCarrey,"The WORST TERROR a child can experience is being taken from their parents. Would blonde, blue-eyed children ever be… https://t.co/0abX65DBz9" +05/31/2018,Comedians,@JimCarrey,"“Hey Dirty Donald, Tricky Dick Nixon, here. The dark one likes the cut of your jib. Taking people’s children away a… https://t.co/GIxXFwyVV7" +05/30/2018,Comedians,@JimCarrey,"The “wall” he intends to build is in our hearts. If you help him, you will wear his mark and your reward will be di… https://t.co/K9RQtY0qte" +05/29/2018,Comedians,@JimCarrey,NFL -- who exploits players for 3yrs then abandons them to a lifetime of pain -- sided with a draft-dodging racist… https://t.co/MsoUXjNbpY +05/27/2018,Comedians,@JimCarrey,"1500 innocent children ripped from their mothers’ arms at our border. Lost in Trump’s “system”. Give us your tired,… https://t.co/Fge6DB8tZc" +05/25/2018,Comedians,@JimCarrey,"A word to the castrato Adam Schiff and other Democrats: If you can’t win a PR war against this mobbed up, dirty, ro… https://t.co/oE9d00ccQ2" +05/22/2018,Comedians,@JimCarrey,Every morning Trump makes special breakfast sandwiches for House Republicans. Devin Nunes eagerly finishes first an… https://t.co/5DA0MsXmAJ +05/21/2018,Comedians,@JimCarrey,New Pledge for a Generation Betrayed. https://t.co/yNM27Eq1dg +05/19/2018,Comedians,@JimCarrey,"And the devil said, “Thanks a bunch Goldilocks. Enjoy the show in Santa Fe tomorrow. Someday, real soon, I’ll have… https://t.co/MBwFXzkRwF" +05/17/2018,Comedians,@JimCarrey,"Robin Williams’ mind was a quantum computer. He was the fastest gun in the West. I loved, respected and admired his… https://t.co/uZTtvBHaQJ" +05/16/2018,Comedians,@JimCarrey,"""Just take the damn meeting and pretend you’re disarming so we can keep this stooge in the White House for another… https://t.co/pzWFHEJ7kb" +05/13/2018,Comedians,@JimCarrey,Someday they’ll say we turned a blind eye to the suffering and slaughter of our own children and gave ourselves ove… https://t.co/kgtJHglBHJ +05/13/2018,Comedians,@JimCarrey,"In his desperate and neverending quest for significance, bleaching the bottom teeth just wasn’t a priority. Giulian… https://t.co/A4i0dzCzGu" +05/11/2018,Comedians,@JimCarrey,Psycho Mike-O ;^P https://t.co/HtarEIER3Y +05/09/2018,Comedians,@JimCarrey,Scam-a-gram ;^P https://t.co/9VqAzfW1fX +05/08/2018,Comedians,@JimCarrey,https://t.co/jQZgiimFYz +05/07/2018,Comedians,@JimCarrey,https://t.co/yREuxCAO46 +05/05/2018,Comedians,@JimCarrey,And let’s not kid ourselves... rotting donkeys stink too. @DNC https://t.co/h5VG6d8YO2 +05/05/2018,Comedians,@JimCarrey,Elephants take a long time to decompose... and the stench can be unbearable. @GOP https://t.co/g9nUN5lh66 +05/03/2018,Comedians,@JimCarrey,"Ukraine stops investigating Manafort (who helped destroy their democracy, and maybe ours) in exchange for a missile… https://t.co/xaoIiX3n2X" +05/02/2018,Comedians,@JimCarrey,Hippocratic oaf ;^P https://t.co/sbCsnTkdVH +04/28/2018,Comedians,@JimCarrey,"“Beware of false prophets, who come to you in sheep's clothing but inwardly are ravenous wolves” + +                 … https://t.co/A6jwbOmHC8" +04/26/2018,Comedians,@JimCarrey,"Later there would be wedgies and wet willies in the Rose Garden. Macron, it seemed, was willing to suffer anything… https://t.co/ZMN2OZC8PR" +04/25/2018,Comedians,@JimCarrey,“Take it. It’s in the contract.” https://t.co/6SecQz84ej +04/25/2018,Comedians,@JimCarrey,I never thought I’d see a tragedy like this in beautiful Toronto. There’s no way to cover your eyes anymore. My hea… https://t.co/bQCTn4BpF8 +04/23/2018,Comedians,@JimCarrey,The road to Trump’s White House was paved with good intentions. ;^\ https://t.co/YzOnLjJsxk +04/22/2018,Comedians,@JimCarrey,Will we end with a bang -- or a cacophony of cow farts? Happy McEarth Day!! ;^) https://t.co/fT6mp4IKpa +04/20/2018,Comedians,@JimCarrey,"Ghouliani: Finally, a face we can trust! 8^¥ https://t.co/IU1IG8sf0T" +04/19/2018,Comedians,@JimCarrey,Auto-moronic ASSphyxiation. ;^P https://t.co/VA6mmkjtk0 +04/18/2018,Comedians,@JimCarrey,"Is there a short bus to take ""all the best people"" to prison? ;^P https://t.co/ooHaGvZqFZ" +04/17/2018,Comedians,@JimCarrey,Sean Manatee: some endangered species aren't worth saving! ;^P #SeanHannity https://t.co/UL2wHRAzJb +04/14/2018,Comedians,@JimCarrey,"“Bombing Syria should interrupt the news cycle for a day or two, Mr. President. Moscow has agreed to act like they’… https://t.co/YNy4t5Mkly" +04/14/2018,Comedians,@JimCarrey,Another great one passes through the doorway. Milos Foreman. What a force. A lovely man. I’m glad we got to play to… https://t.co/1twEwZDF2P +04/13/2018,Comedians,@JimCarrey,Entropy: A Love Story https://t.co/lbddfQagz1 +04/12/2018,Comedians,@JimCarrey,BEWARE THE UNLOVED https://t.co/TvrZ6eobGk +04/11/2018,Comedians,@JimCarrey,"The great Mitzi Shore, owner of the famous Comedy Store, has passed away. No words can express the gratitude I have… https://t.co/5X8wZwAfOp" +04/11/2018,Comedians,@JimCarrey,Congress gets a visit from planet Zuckerberg. “I shall prevent any further election meddling by destroying the Eart… https://t.co/rvcq1WWkAJ +04/10/2018,Comedians,@JimCarrey,"🎵If you’re screwed +and you don’t know +where to go to +why don’t you bomb +where Assad sits +PUTIN ON THE RITZ. 🎶 https://t.co/nEVtWS7oFV" +04/08/2018,Comedians,@JimCarrey,"Liar, liar, evidence on fire! https://t.co/eAby9qqFmW" +04/05/2018,Comedians,@JimCarrey,I looked on Trivago. The cheapest room in Washington is a youth hostel with bunkbeds at $81 a night. The $50 room S… https://t.co/OdUXQUPM5B +04/04/2018,Comedians,@JimCarrey,MLK. The Mountaintop. https://t.co/fzax8L7izE +04/03/2018,Comedians,@JimCarrey,"If u believe wrestling is real u may even believe Fox news, Info Wars and the robotic drones on Sinclair Broadcasti… https://t.co/7zuImOfQm2" +04/02/2018,Comedians,@JimCarrey,"Coming soon! +'National Security Adviser 2: Armageddon Boogaloo' https://t.co/29XgY9WV28" +04/01/2018,Comedians,@JimCarrey,Have A Happy New You ;^) https://t.co/Y46OvEhDvA +03/30/2018,Comedians,@JimCarrey,The story of Jesus is a perfect example of the journey toward salvation through honesty and courage in the face of… https://t.co/vgfLWQ5kwF +03/30/2018,Comedians,@JimCarrey,My soul is not contained within the limits of my body. My body is contained within the limitlessness of my soul. https://t.co/6mvatrfpSo +03/29/2018,Comedians,@JimCarrey,"Dear Smithsonian National Portrait Gallery @NPG, I know it’s early but I’d like to submit this as the official port… https://t.co/CtsLPk6Zn7" +03/28/2018,Comedians,@JimCarrey,They're saying the NRA took Russian money to support the Republican party in the last election. Maybe that's why Tr… https://t.co/ACV3u6nnsJ +03/28/2018,Comedians,@JimCarrey,#teamelephant https://t.co/L8sATd4FaK +03/27/2018,Comedians,@JimCarrey,Did anyone watch 60 minutes last night? Hell of a piece about a poor kid from Greece named Giannis Antetokounmpo wh… https://t.co/ktONsMc9uo +03/24/2018,Comedians,@JimCarrey,Today our nation's youth are demanding their basic human right to go to school without dying in the name of greed.… https://t.co/2FumdiXc1n +03/23/2018,Comedians,@JimCarrey,Fifty Shades of Decay https://t.co/aurfm22ru6 +03/22/2018,Comedians,@JimCarrey,Self-Unmade Man. https://t.co/jxNWfUsrTn +03/21/2018,Comedians,@JimCarrey,Lawyer and lucky charm Joe diGenovia hopes to put Dirty Donald's troubles in the rearview mirror. But the objects i… https://t.co/MZggu20CKb +03/20/2018,Comedians,@JimCarrey,Who are you sharing your life with? #regulatefacebook https://t.co/r7B7Ajkt0V +03/19/2018,Comedians,@JimCarrey,"If you liked my last cartoon you may also enjoy... + +""THE WICKED WITCH OF THE WEST WING AND PUTIN’S FLYING MONKEYS“ https://t.co/slBG7j1s8d" +03/17/2018,Comedians,@JimCarrey,This is the portrait of a so-called Christian whose only purpose in life is to lie for the wicked. Monstrous! https://t.co/MeYLTy1pqb +03/16/2018,Comedians,@JimCarrey,MSNBC does great work but they are acting irresponsibly by constantly going on about Mueller crossing Trump’s ridic… https://t.co/ghVK2pxyzu +03/14/2018,Comedians,@JimCarrey,"Cheers to you Stephen Hawking, the greatest mental athlete of our time. You are all that is! See you around, buddy!… https://t.co/mP7vBlnerC" +03/07/2018,Comedians,@JimCarrey,https://t.co/AOWrqRlBQl +03/06/2018,Comedians,@JimCarrey,https://t.co/R2JGNq1VDR +03/05/2018,Comedians,@JimCarrey,https://t.co/3t8rvxcZWU +03/04/2018,Comedians,@JimCarrey,https://t.co/IzqnypnSFT +03/03/2018,Comedians,@JimCarrey,https://t.co/wAt17RTXBE +03/02/2018,Comedians,@JimCarrey,https://t.co/bXjq38lsGw +03/01/2018,Comedians,@JimCarrey,https://t.co/iuKOBBbesS +02/28/2018,Comedians,@JimCarrey,https://t.co/3faYLZqGJk +02/27/2018,Comedians,@JimCarrey,https://t.co/YIioI2BoZL +02/26/2018,Comedians,@JimCarrey,I'll be fading into the everything for a while. See ya soon. https://t.co/dq6kMllTOr +02/25/2018,Comedians,@JimCarrey,"Oh say, can't you see?! https://t.co/SFAgo4MkgS" +02/24/2018,Comedians,@JimCarrey,Rubio‘s agenda is clear. Keep taking millions from the NRA and wash the blood of innocent children off his hands. A… https://t.co/RKTbEIaDNF +02/24/2018,Comedians,@JimCarrey,Rick Gates pleads GUILTY to CONSPIRACY AGAINST THE UNITED STATES. It’s real! The Trump campaign was CRIMINAL! https://t.co/Hws33Natuz +02/23/2018,Comedians,@JimCarrey,Great news! The President's answer to school shootings is to arm the glee club! ;^P https://t.co/spSnwTo4Hz +02/21/2018,Comedians,@JimCarrey,Some super genius on YouTube is saying I’m a member of the Illuminati. I guess that’s a weird kind of compliment. C… https://t.co/Ki4uAnXC18 +02/19/2018,Comedians,@JimCarrey,"It’s President's Day and Chief Little Hands has been busy tweeting from his golf resort, a chip shot away from the… https://t.co/hYdakmEH8U" +02/15/2018,Comedians,@JimCarrey,Pro-life?! https://t.co/4o5LKF9fvq +02/11/2018,Comedians,@JimCarrey,All who enter his crooked carnival with integrity are doomed to leave without it. General Kelly has been trampled b… https://t.co/H0eJns9Gx6 +02/10/2018,Comedians,@JimCarrey,"Can we continue to rely on the remains of dead animals for food or fuel? Are Big Oil, Coal and Cattle ancient dinos… https://t.co/Sjobbflirh" +02/09/2018,Comedians,@JimCarrey,"It should no longer be a surprise to people that Caveman Trump would hire a man like Porter, who’s accused of beati… https://t.co/Kb9wKMqqUu" +02/06/2018,Comedians,@JimCarrey,I’m dumping my @facebook stock and deleting my page because @facebook profited from Russian interference in our ele… https://t.co/ts3ZEElBD3 +02/05/2018,Comedians,@JimCarrey,Tone deaf Paul Ryan brags that his tax bill is going to make low income voters an extra $1.50 a week! That’s almost… https://t.co/XlagyATIPY +02/05/2018,Comedians,@JimCarrey,"That was one of the greatest Superbowls ever. David slew Goliath, but Goliath has nothing to be ashamed of. Brady i… https://t.co/8qfCWXMsls" +02/04/2018,Comedians,@JimCarrey,"I’ll have my hand on my heart during the anthem today, out of RESPECT for the IDEALS this GREAT NATION is supposed… https://t.co/s1icmt8p5i" +02/03/2018,Comedians,@JimCarrey,“White House delivery boy; can I take your order?!” ;^P https://t.co/PmNeHEIu3j +02/01/2018,Comedians,@JimCarrey,@rustyrockets The word relationship denotes duality - there are no two things. So it should be said that matter IS… https://t.co/2jXQzHmCgY +01/31/2018,Comedians,@JimCarrey,Another RAT leaps from the sinking ship. Swim Willard! SWIM! #TreyGowdy https://t.co/erfuVagGyo +01/31/2018,Comedians,@JimCarrey,“...and the blind shall see and the lame shall walk and the cheats shall inherit the earth!” #StateOfTheUnion https://t.co/BYuzgzLtZF +01/31/2018,Comedians,@JimCarrey,“It’s my party and I’ll cry if I want to!” #StateOfTheUnion https://t.co/5VDr66pbBo +01/30/2018,Comedians,@JimCarrey,STATE OF THE UNION https://t.co/PotdNCvYCX +01/30/2018,Comedians,@JimCarrey,Here’s your secret memo Comrade Nunes. The GOP and Dirty Donald are now a treasonous criminal syndicate; bent on mu… https://t.co/00PYa6K4HH +01/25/2018,Comedians,@JimCarrey,The demon is strong! Exorcism is America’s only option! https://t.co/N1keZNU2nn +01/24/2018,Comedians,@JimCarrey,11 school shootings in 24 days. The new Norm! https://t.co/XHnXqOmTQu +01/18/2018,Comedians,@JimCarrey,For my birthday I want for all of us to move through these difficult times together with grace and honor...and some… https://t.co/MdlZGyqpx7 +01/16/2018,Comedians,@JimCarrey,"Happy MLK day. At a time when hateful state-sanctioned racism is trying to reassert itself, I am thankful for the i… https://t.co/ALolXJPYXn" +01/15/2018,Comedians,@JimCarrey,"Speaking of laundering operations... Dear Mr. Mueller, please remove this unsightly stain from our flag before ther… https://t.co/vGQBvb3UiB" +01/13/2018,Comedians,@JimCarrey,"I woke up this morning in Hawaii with ten minutes to live. It was a false alarm, but a real psychic warning. If we… https://t.co/GuqRCIALgG" +01/13/2018,Comedians,@JimCarrey,The only ‘Sh*%hole’ Trump should worry about is the one under his nose from which he is constantly defecating.… https://t.co/YWF28BHHeD +01/13/2018,Comedians,@JimCarrey,"@iamcardib and @BrunoMars Great song, beautiful memories. Really gave me a kick. Spank you kindly! ;^) + +https://t.co/BCAg6KUaEl" +12/04/2017,Comedians,@JimCarrey,"A 10yr old Canadian boy sends a letter to Carol Burnett asking to be on her TV show and somehow, 45 years later, it… https://t.co/riwut9DVzp" +12/02/2017,Comedians,@JimCarrey,The Trump administration has become the new Donner party. Can’t wait to find out who’s for dinner. ?;^d https://t.co/l26tOEUOeS +11/29/2017,Comedians,@JimCarrey,"The GOP and WH have become sinister conclaves of souless traitors, liars and thieves - a gangrene we must remove so… https://t.co/5h3vrO1WAz" +11/28/2017,Comedians,@JimCarrey,"🎶Oh Susanna, don’t you vote for me, I’m a creep from Alabama with your daughter on my knee!🎵 https://t.co/nYOoTl5l9q" +11/19/2017,Comedians,@JimCarrey,"Tricky Mick, always making sure the devil is in the details. }8^¥ #KillTheBill https://t.co/eFslJCetRn" +11/12/2017,Comedians,@JimCarrey,"They bailed him out, set him up and made him their stooge. With Trump in the WH, Putin may win the 3rd World War wi… https://t.co/gescegeOz6" +11/11/2017,Comedians,@JimCarrey,1968 they backed the enemy. 2016 they put their stooge in the WH. Benedict Trump and his Russian pimp in Vietnam on… https://t.co/yvFcyQw8Ls +11/10/2017,Comedians,@JimCarrey,"I don’t know yet if Roy Moore is guilty of pedophilia, but these allegations along w/ his religious extremism and i… https://t.co/khlO2UqvX4" +11/10/2017,Comedians,@JimCarrey,"Alabama GOP, if u can’t vote 4 Doug Jones at least don’t vote for an alleged pedophile. Do the decent thing and jus… https://t.co/bMHWZQsw8c" +11/10/2017,Comedians,@JimCarrey,"I’m Steve Bannon and I endorse Roy Moore for US Senate.He stands accused of molesting a 14yr old girl,but at least… https://t.co/4QkU9msMFX" +11/03/2017,Comedians,@JimCarrey,Trump is the fear of utter worthlessness hiding in arrogance and brutality. #bewaretheunloved https://t.co/X2or7MuEEK +11/01/2017,Comedians,@JimCarrey,"“Fools! It is the sugary treats through which I will possess your child. Happy Halloween! Muahahahaha!!!” +}8^¥ https://t.co/ES4vZgLrEx" +10/21/2017,Comedians,@JimCarrey,"...and if u said I was nowhere in this picture, you would also be correct. This is a msg rising out of nothing and… https://t.co/X4iXD2IW1i" +10/21/2017,Comedians,@JimCarrey,Thanks MOMA for screening Jim+Andy (Nov 17 on @netflix.) Can u see where I am in this picture? If you said everywhe… https://t.co/uzt400cNAW +09/19/2017,Comedians,@JimCarrey,"While another storm heads r way, craven republican sock puppets in service of shameless greed, try AGAIN 2 ravage h… https://t.co/gUqTcrO3WG" +09/06/2017,Comedians,@JimCarrey,"This dream is so good, I'm tempted to keep sleeping. ;^> https://t.co/cxy9YFSetB" +08/27/2017,Comedians,@JimCarrey,Ain't it great how violence can still unite us all? #enjoythefight #humansarestupid ;^P https://t.co/plLP0BFWZD +08/23/2017,Comedians,@JimCarrey,You never looked better Charlottesville! ;^) https://t.co/lCBZ0hsGmD +08/21/2017,Comedians,@JimCarrey,"While watching the eclipse, I lifted my coffee cup and this is what I saw. Coincidence? I think not! Enjoy the toge… https://t.co/2Ux10bDQUk" +08/20/2017,Comedians,@JimCarrey,"That fool was no dummy. Jerry Lewis was an undeniable genius an unfathomable blessing, comedy's absolute! I am beca… https://t.co/dtERXbMqdo" +08/18/2017,Comedians,@JimCarrey,https://t.co/HgfsxWZ99C +08/16/2017,Comedians,@JimCarrey,WHAT WILL IT TAKE for the GOP to throw this madman overboard? HOW LOW MUST WE SINK before REPS become patriotic? 8^Q https://t.co/9EJVYD5qOP +08/15/2017,Comedians,@JimCarrey,"Welcome to the last gasp of toxic white insecurity. Woe to them who blame other races for their laziness, and lack… https://t.co/W6pmT80ckD" +08/13/2017,Comedians,@JimCarrey,"When evil is not strongly denounced by the state, this is where it leads, ""Mr. President""! ;^{ https://t.co/jPbcFAwfq7" +08/12/2017,Comedians,@JimCarrey,"Season finale of I'm Dying Up Here this Sunday! What a magical time it's been. My thanks to cast and crew, a stella… https://t.co/A5iPmRlT20" +08/08/2017,Comedians,@JimCarrey,Thx 4 ur kind words @KingJames.I'd be honored 2 hang with u any time.Can u imagine 2 King James' in the same room?Sss'make it happen! ?;^•} +08/03/2017,Comedians,@JimCarrey,Tonight in West Virginia @realDonaldTrump is expected to EAT A BABY on stage to the delight of his zombie base.… https://t.co/9wBexEFs4q +07/29/2017,Comedians,@JimCarrey,Spanks 2 @justforlaughs for hosting me and cast of @SHO_DyingUpHere. Always great 2 be around my twisted comedy kin. https://t.co/owXLdOcoq2 +07/23/2017,Comedians,@JimCarrey,I have no idea where this picture came from but I fully endorse this artistic reappropriation of my 1996 film The C… https://t.co/tGgxu1GHOD +07/17/2017,Comedians,@JimCarrey,Much love sweet Martin. You were one of the greats. Enjoy forever. ;^) https://t.co/IMAPeJXPCe +07/05/2017,Comedians,@JimCarrey,There is something wrong with our environment. Governors have begun beaching themselves! ?;^P https://t.co/BXhYIQ42Jy +06/26/2017,Comedians,@JimCarrey,"EAST COAST! You have 5 minutes until @SHO_DyingUpHere +WEST COAST! You still have 3 hours to get plastic surgery! HU… https://t.co/usmxnTRFc4" +06/23/2017,Comedians,@JimCarrey,"I don't mean to toot my own horn, but HONK watch @SHO_DyingUpHere Sunday at HONK 10pm. It's ""Hollywood brotha!"" ;^P https://t.co/F21YXuRjbe" +06/11/2017,Comedians,@JimCarrey,When I was a kid POW BLAM Adam West was Batman! With his pal Robin and his tongue planted firmly in his cheek he brought me so much joy. ;^} +06/02/2017,Comedians,@JimCarrey,Let's just get our priorities straight - this whole Kathy Griffin thing is covfefe. ;^P +06/01/2017,Comedians,@JimCarrey,So proud of @sho_dyinguphere -a new series I exec produced for @Showtime THIS Sun 10pm. Watch how we put the ‘fun'… https://t.co/j4qWXICIWA +05/31/2017,Comedians,@JimCarrey,@Eminem ?B^] https://t.co/r9yfOLkbvW +05/21/2017,Comedians,@JimCarrey,This is the guitar that Chris Cornell and Soundgarden gave to me the night we did SNL together. A very special man. https://t.co/waPpDdOWvx +05/09/2017,Comedians,@JimCarrey,TRUMP FIRES COMEY! ABSOLUTE OBSTRUCTION OF JUSTICE! ABSOLUTE EVIL! ?8^¥ +04/27/2017,Comedians,@JimCarrey,RT NEWS FLASH!TRUMP NEVER CARED ABOUT GOVERNING! He sees the world as his piñata and the presidency as a big stick!… https://t.co/O4HGCungFp +04/21/2017,Comedians,@JimCarrey,;^) https://t.co/C6yrCIiQFl +04/15/2017,Comedians,@JimCarrey,Happy Easter or Passover or whatever reason you can find to feel warm and fuzzy. =(:•} https://t.co/Q5f0KT0yhq +04/06/2017,Comedians,@JimCarrey,"Don once begged me for a couple of bucks then told me to twist myself into a pretzel. Ego slayer! Comic Everest! Spank you, Mr Rickles. ;^)" +04/04/2017,Comedians,@JimCarrey,MORE MORE MORE MORE! A mantra to the end of the world.  3^( https://t.co/dh5hXe69Ux +04/01/2017,Comedians,@JimCarrey,"Give me your tired, your poor, your huddled masses...APRIL FOOOOLS!!! ;^P +('No Vacancy,' acrylic and neon on canva… https://t.co/AIn45HKOdi" +03/31/2017,Comedians,@JimCarrey,"Every citizen under 45, watch ""All the President's Men,"" a genius film about the most corrupt White House in US his… https://t.co/Ig5t0kObaN" +03/31/2017,Comedians,@JimCarrey,"""I'm gonna make great deals. GREAT GREAT DEALS!"" ();^O https://t.co/31vvhDWUj3" +03/30/2017,Comedians,@JimCarrey,I'm no lifeguard but I know a drowning man when I see one. ;^P https://t.co/W5kGhD8uIO +03/29/2017,Comedians,@JimCarrey,Ugly American Bill O'Reilly and his enablers at the Fox misinformation factory have again shown their true colors -… https://t.co/dUBLV6RZky +03/28/2017,Comedians,@JimCarrey,The Trump Presidency is a botched Russian black op and these people are NOT helping. ;^P https://t.co/hkvd01iXbr +03/27/2017,Comedians,@JimCarrey,The rotting food in @PressSec Sean Spicer's teeth is distracting and makes it hard to absorb today's WH misinformat… https://t.co/8OA7yj4y8j +03/24/2017,Comedians,@JimCarrey,;^P https://t.co/OKmF3aAJ3U +03/21/2017,Comedians,@JimCarrey,A President under FBI investigation for treason should not get a Supreme Court appointment. ;^| https://t.co/b1f05HdL0W +01/25/2017,Comedians,@JimCarrey,"Voter fraud is misdirection from what's really happening in Trump's +America. Intimidation, repression and intoleran… https://t.co/wK4CItcar5" +01/24/2017,Comedians,@JimCarrey,@netnole I think you need a hug Mikey. ;^P +01/23/2017,Comedians,@JimCarrey,"Dear @BarackObama - Already, I miss your intelligence, integrity, elegance and humor. #RESPECT ;^} https://t.co/XBSM5v3Oqc" +11/16/2016,Comedians,@JimCarrey,I'm returning to love. Something I will always control. ;^P https://t.co/Qk71P9dOcn +11/15/2016,Comedians,@JimCarrey,"Don't worry. What we are is bigger than our differences, bigger than our president, bigger than our red, white and… https://t.co/FdKzquObg6" +11/09/2016,Comedians,@JimCarrey,"Don't worry folks as long as the Sun is revolving around the Earth, we'll be fine! ;^P https://t.co/TzJufTIJHm" +11/08/2016,Comedians,@JimCarrey,"Hey check out my new gig as cartoonist at @Awl and be sure to vote. ;^P +https://t.co/PTGYIAMLAk" +11/07/2016,Comedians,@JimCarrey,Vote for goodness' sake! ;^) https://t.co/WJmiY3KFjZ +11/02/2016,Comedians,@JimCarrey,"Hi @Adele. It's Jim from the other side. Weird coincidence, I dressed up as one of your roadies for Halloween. I ab… https://t.co/lTjqcrd8Uu" +10/26/2016,Comedians,@JimCarrey,"Vote for @HillaryClinton this election day or no pussy will be safe. ₍˄·͈༝·͈˄₎◞ +#StrongerTogether #HillaryClinton… https://t.co/cHPayblJfd" +10/20/2016,Comedians,@JimCarrey,"When you stand solidly with those who bring love and goodwill to the world,every challenge makes you stronger,deepe… https://t.co/NtX9oTOrIF" +08/29/2016,Comedians,@JimCarrey,Gene Wilder was one of the funniest and sweetest energies ever to take a human form. If there's a heaven he has a Golden Ticket. ;^) +07/15/2016,Comedians,@JimCarrey,Remember this old song? 8^} https://t.co/a8DlWzD8nj +07/14/2016,Comedians,@JimCarrey,Good news. ;^D https://t.co/PFNznuQduG +04/14/2016,Comedians,@JimCarrey,Save our vaccines! Save our kids! Let the truth be known! https://t.co/zM9jupHmkF https://t.co/8zphbim3xV https://t.co/24Ejz5XZNH +04/11/2016,Comedians,@JimCarrey,"I love LA and all the kooks who live here. If u read otherwise, it's just the mischief of those who weren't their parents' 1st priority.?;^P" +04/07/2016,Comedians,@JimCarrey,I saw #Hamilton last night on Broadway. An absolute work of genius. Restores your faith in humanity. The kingdom of heaven is among us. ;^D +03/30/2016,Comedians,@JimCarrey,"THEY’RE HEEEEEEEEERE!!! +#Paranormalsnacktivity =8^O https://t.co/QemZY99BB5" +03/26/2016,Comedians,@JimCarrey,This morning for breakfast I had 'Love' disguised as quinoa with almond milk and coconunt sugar. #YUMMYYYYY!!! ?;^d https://t.co/ZGKr0tijkg +03/18/2016,Comedians,@JimCarrey,"HEY DUMMIES, LEAVE ME OUT OF IT! ;^P #Americonundrum https://t.co/nI7Amohz5c" +03/10/2016,Comedians,@JimCarrey,"Thank you @KimKardashian for showing us where you poop, and what you poop with. You must have very big poops! ;^•" +03/07/2016,Comedians,@JimCarrey,Jeez... I take a few months off and the country turns into a zoo where the main attraction is an ape who flings his sh*t at people. \};^•) +08/31/2015,Comedians,@JimCarrey,This is who I really am and that's my body in the middle. ;^) http://t.co/35qO6b1fWD +08/20/2015,Comedians,@JimCarrey,Nice move @RealHughJackman Now watch me make a meal out of your biggest role. ;^> http://t.co/GUfHB2RR4L +08/12/2015,Comedians,@JimCarrey,Do flowers have feelings? ;^\ http://t.co/dyujcu3FPH +08/11/2015,Comedians,@JimCarrey,Cellphone picture of wall phone. Feel me? B^\ http://t.co/aXycanGOnt +08/10/2015,Comedians,@JimCarrey,Dog hair on wood floor. Thoughts? ;^\ http://t.co/gIK9pKr92X +08/09/2015,Comedians,@JimCarrey,I’m not religious Pope Francis @Pontifex but I like the cut of your jib! ;^] http://t.co/1iEMoyQHCu +07/01/2018,Comedians,@KevinHart4real,"The energy that I have been witnessing from my fans on my ""Irresponsible Tour"" has honestly been mind blowing. I ju… https://t.co/iouD93k0cn" +07/01/2018,Comedians,@KevinHart4real,I genuinely love & appreciate my fans!!!! All I can say is WOOOOOOOW!!!! This is definitely my best work to date!!!… https://t.co/jGN1UgIutU +07/01/2018,Comedians,@KevinHart4real,It's Showtime Salt Lake City #irresponsibletour #LilSwag #comedicrockstarshit https://t.co/7n5V8YCc0n +06/30/2018,Comedians,@KevinHart4real,I just touched down Salt Lake City....Tonight is going to be EPIC. #irresponsibletour #comedicrockstarshit… https://t.co/UsLAf7DbOA +06/30/2018,Comedians,@KevinHart4real,Let's gooooooooo Salt Lake City. I'm on my way damn it!!!!! It's going down tonight people....Get your tickets to m… https://t.co/BaWwSBdeTM +06/30/2018,Comedians,@KevinHart4real,Facial expressions are everything damn it😂😂😂😂 #comedicrockstarshit #irresponsibletour #DopePic https://t.co/qU8gHYoxA3 +06/30/2018,Comedians,@KevinHart4real,Great music @Drake ....Proud of you man. Congrats on another amazing album!!!!! https://t.co/Ac3j79WshE +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/pOl38CkwlY +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/PPgpi1UKx7 +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/o6bFdhvlg9 +06/30/2018,Comedians,@KevinHart4real,RT @ARGreen_Sr: Kevin Hart’s Irresponsible Tour 2018 | Denver — epic @KevinHart4real https://t.co/Z0BfXqtz6G +06/29/2018,Comedians,@KevinHart4real,Caption this 😂😂😂😂😂 #irresponsibleTour #ComedicRockStarShit https://t.co/EAeh1wHLmk +06/29/2018,Comedians,@KevinHart4real,Morning work #HustleHart #MoveWithHart #Progression https://t.co/DjHGGF8HHu +06/29/2018,Comedians,@KevinHart4real,It's a celebration bitches 🍹🍹🥃🥃🥃🔥🔥🔥🔥🔥🍻🍻🍻🍻🍻🤯🤯🤯🤯🤯🤯🕺🏾🕺🏾🕺🏾🕺🏾🕺🏾 https://t.co/sg5M0UFXgd +06/29/2018,Comedians,@KevinHart4real,#TBT Priceless moments #Harts https://t.co/cowWwKilXN +06/28/2018,Comedians,@KevinHart4real,My OFFICIAL bday party and #IrresponsibleTour after party is going down Friday July 6th at @draislv with a special… https://t.co/xp7MNYKiRH +06/28/2018,Comedians,@KevinHart4real,#TBT This was one of my favorite episodes from RHOH....I tried to replace my friends with what I thought were bette… https://t.co/gq16zMHbiq +06/27/2018,Comedians,@KevinHart4real,#WCW #Harts https://t.co/DmHo6B8coX +06/27/2018,Comedians,@KevinHart4real,NEW SERIES ALERT! What would happen if Hollywood (boulevard)'s not-so-favorite superheroes started turning up dead?… https://t.co/eMiaYR6eKy +06/25/2018,Comedians,@KevinHart4real,Major thank you to my ferrari family for getting my B Day gift to me in time. I appreciate ya thegoldenjew22 .....… https://t.co/uK33walBqc +06/25/2018,Comedians,@KevinHart4real,Stand Up Philadelphia.... #CityOfBrotherlyLove https://t.co/yWjV6zFb83 +06/25/2018,Comedians,@KevinHart4real,"RT @questlove: Illadelph @markellef & @kevinhart4real & @blackthought @questlove & liluzivert #BETawards #BlackExcellence. @ Los Angeles, C…" +06/25/2018,Comedians,@KevinHart4real,#LilSwag styled by @AshleyNorth https://t.co/EvsHpTusUY +06/25/2018,Comedians,@KevinHart4real,So happy & proud of my brother @MeekMill .....Great performance...Great message...STAND UP PHILADELPHIA!!!!! +06/25/2018,Comedians,@KevinHart4real,RT @cthagod: And best use of his platform tonight goes to Meek Mill. #BetAwards +06/25/2018,Comedians,@KevinHart4real,#dopepic ....Shot by kevinkwan327 https://t.co/IsIx5lyZ7L +06/24/2018,Comedians,@KevinHart4real,Sunday Funday with the family!!! Wishing u all a happy & blessed day. #Harts #LiveLoveLaugh #SundayFunday https://t.co/IFbyH2u0ds +06/24/2018,Comedians,@KevinHart4real,It's just different....The connection that I have with my fans while I'm on that stage is unbelievable....Thank you… https://t.co/4MQDhE5yDR +06/24/2018,Comedians,@KevinHart4real,#Brothers https://t.co/siV97nDHJX +06/24/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/8FLYQdzqvK +06/24/2018,Comedians,@KevinHart4real,"RT @2thisispablo: @KevinHart4real was amazing tonight!! +Definitely one of the best comedians #IrresponsibleTour" +06/24/2018,Comedians,@KevinHart4real,RT @AJenkins95: @KevinHart4real Haven’t laughed so hard in my life. My girlfriend literally peed herself. Well done 👏🏽 #IrresponsibleTour +06/24/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QZuwIpIqTD +06/24/2018,Comedians,@KevinHart4real,RT @Lovingmylife562: Went to @KevinHart4real #IrresponsibleTour in Irvine...omg it was hilarious...I literally cried from laughing so hard!… +06/24/2018,Comedians,@KevinHart4real,RT @Brandi_lynn87: @KevinHart4real was hilarious af tonight in Irvine. 🤣 #IrresponsibleTour #kevinhart +06/24/2018,Comedians,@KevinHart4real,It's Dravet Syndrome Awareness Day.....We love you so much Taylen. Watching our brother @spankhorton & sister mua_… https://t.co/RJYFm2yMme +06/23/2018,Comedians,@KevinHart4real,Let's gooooooooo Irvine Ca....Im headed your way damn it. Tonight's show will be a show to remember for ages people… https://t.co/fyihtGEfxu +06/23/2018,Comedians,@KevinHart4real,RT @pinksapphire84: So about last night... Got to see @KevinHart4real live! What an awesome show. He had me laughing the entire time. Thank… +06/23/2018,Comedians,@KevinHart4real,Hi...My name is Kevin Hart and I love making people laugh.... #irresponsibletour #comedicrockstarshit… https://t.co/eJ1bvTyeYa +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/bC2FUiktBG +06/23/2018,Comedians,@KevinHart4real,"RT @StevenAkabwayi: The show that had my hands up +I like the God given talent in you @KevinHart4real #irresponsibletour" +06/23/2018,Comedians,@KevinHart4real,"RT @planetneeese: Thanks for the laughs tonight, @KevinHart4real. New material was awesome!💯 #TheIrresponsibleTour https://t.co/WUcvbMqNE7" +06/23/2018,Comedians,@KevinHart4real,RT @SuperstarNini: Was “SO EXCITED!!!” To see @KevinHart4real tonight!!! Thanks for a great show!!!! +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/WdpwSZAz2E +06/23/2018,Comedians,@KevinHart4real,RT @QueenGruuuumpy: @KevinHart4real your show was worth walking up those hill in heels. #TheIrresponsibleTour #BucketListCheckOff ✅🤗💙 +06/23/2018,Comedians,@KevinHart4real,I appreciate you Concord Ca....Thank you for making tonight special. Love & laughter was definitely in the air. #IrresponsibleTour +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QsSZU2WyhM +06/23/2018,Comedians,@KevinHart4real,RT @keepitjaay: @KevinHart4real this show was unbelievable!!!!! 🔥🔥🔥🔥🔥 #TheIrresponsibleTour +06/23/2018,Comedians,@KevinHart4real,RT @Nickg_16: I’ve never laughed so much before until tonight! @KevinHart4real what a show! Dream come true to see you perform! #Irrespons… +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/LzoHGMGGO7 +06/23/2018,Comedians,@KevinHart4real,4 Nominations for this year's @teenchoicefox awards....WOOOOOOOW!!! Make sure y'all go to https://t.co/Juomy8fJUd a… https://t.co/Yom53O4dcm +06/22/2018,Comedians,@KevinHart4real,#Lilswag #comedicrockstarshit #irresponsibletour https://t.co/09S8Dv7dn4 +06/22/2018,Comedians,@KevinHart4real,Make sure y'all support my brother icecube by checking out season 2 of @thebig3. Im happy as hell for you man. I kn… https://t.co/Nb2CCWSP36 +06/22/2018,Comedians,@KevinHart4real,I'm well aware...Thats why I'm coming back. Can't wait to get back over there and deliver some more funny https://t.co/fzc9DRdrSZ +06/22/2018,Comedians,@KevinHart4real,Let's gooooooooo Singapore....Im coming your way damn it!!!!! #IrresponsibleTour https://t.co/4zkUex8T86 +06/22/2018,Comedians,@KevinHart4real,"Let's gooooooooo Concord Ca....My ""Irresponsible Tour"" is in your city tonight damn it!!!!! Get yo tickets ASAP!!!!! https://t.co/OGAE193OBr" +06/22/2018,Comedians,@KevinHart4real,Laugh damn it....It's good for your soul!!! Major thank you to Mountain View Ca....We had the shoreline amphitheatr… https://t.co/8e75eoTVyw +06/22/2018,Comedians,@KevinHart4real,RT @qu33nofhearts02: @kevinhart4real is too damn funny I was cracking up the whole time!! AMAZING SHOW!! #TheIrresponsibleTour +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/xExf1f3YVf +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/3sQsY3z4O0 +06/22/2018,Comedians,@KevinHart4real,RT @kavinm95: Kevin Hart’s #IrresponsibleTour was 🔥🔥🔥 well done @KevinHart4real https://t.co/lJuBIRBoai +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/Qj3Xr7UdpR +06/22/2018,Comedians,@KevinHart4real,RT @Official_tylerg: Best day EVER!!!!! MY DREAM CAME TRUE!!!! Mr. @KevinHart4real bought my PAINTING!!!!!!!!!!!! Thank you Mr. @SpankHorto… +06/22/2018,Comedians,@KevinHart4real,Hitting theaters everywhere sept 28th......Mark your calendars damn it!!!!! #ComedyAtItsBest #NightSchool https://t.co/TMfWoMLtNA +06/22/2018,Comedians,@KevinHart4real,Kevin Hart: Irresponsible Tour Live from San Jose CA https://t.co/FRYH1Qf5cu +06/19/2018,Comedians,@KevinHart4real,"Irvine CA I'm bringing my ""Irresponsible Tour"" your way this weekend damn it....Its going down this Saturday. GET Y… https://t.co/isz3QWnj9B" +06/19/2018,Comedians,@KevinHart4real,"RT @TKOCBS: Summer, @KevinHart4real, and a whole lot of competition. Are YOU ready? #TKO https://t.co/nssNKp8Naa" +06/19/2018,Comedians,@KevinHart4real,"Mountain View Ca I am heading your way this Thursday damn it....My ""Irresponsible Tour"" will be invading your city… https://t.co/eUWTfY2WfK" +06/17/2018,Comedians,@KevinHart4real,Happy Fathers Day! #Harts https://t.co/XdefVaQye2 +06/17/2018,Comedians,@KevinHart4real,"If you need to talk to a Dad, follow this link right now!!! https://t.co/bgR72m1jso 😂😂😂 #FathersDay" +06/17/2018,Comedians,@KevinHart4real,Happy Father's to me damn it 😂😂😂😂 #DaddySwag https://t.co/3resN1gvcH +06/17/2018,Comedians,@KevinHart4real,Happy Father's Day to my Dad & My brother.....I… https://t.co/RCQTt2yJGr +06/17/2018,Comedians,@KevinHart4real,"RT @livenationsg: WE 👏CAN'T 👏WAIT 👏 + +Here's the seat map for @KevinHart4real #IrresponsibleTour in Singapore! Save your spot now and access…" +06/17/2018,Comedians,@KevinHart4real,RT @kawalzz: man I haven’t laughed like that in ages. Thank you @KevinHart4real for that amazing and hilarious show!! Definitely worth all… +06/17/2018,Comedians,@KevinHart4real,RT @Kingkevin59: @KevinHart4real thank you for giving me value for my money still cracking up right now. You my man are a goat ...#Irrespon… +06/17/2018,Comedians,@KevinHart4real,RT @Amar_Ryan: @KevinHart4real put on an unreal show tonight! I don’t think I’ve laughed that hard in a while! #IrresponsibleTour https://t… +06/17/2018,Comedians,@KevinHart4real,"RT @aisling_laura: Laughed till I cried at @KevinHart4real tonight, nothing like a grest comedy gig 🙌🏻 #IrresponsibleTour" +06/17/2018,Comedians,@KevinHart4real,"RT @ryan_alcos: @KevinHart4real was friggen hilarious, had me crying! If you get the opportunity to go see him, I HIGHLY recommend!😂😂 https…" +06/17/2018,Comedians,@KevinHart4real,Thank you Vancouver.... #irresponsibletour… https://t.co/0cCwOK9Z32 +06/17/2018,Comedians,@KevinHart4real,"RT @ToniNehl: Seeing @KevinHart4real live was amazing, best way to end finals week! 12/10 highly recommend it #irresponsibletour" +06/16/2018,Comedians,@KevinHart4real,I'm a man of the people...I love my fans. I truly mean it when I say it!!!!! https://t.co/XaIWUzWnQe +06/16/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/NIvlBOLkxi +06/16/2018,Comedians,@KevinHart4real,Walking around and getting it with my brothers… https://t.co/ehAHQnqbbg +06/16/2018,Comedians,@KevinHart4real,I'm on my way Vancouver .....Let's make tonight special damn it....If u don't have your tickets get them Noooowwwww… https://t.co/oggpQ6U9D9 +06/16/2018,Comedians,@KevinHart4real,I can’t wait for sept. This moving is funny as hell damn it!!!! Get ready people #NightSchool https://t.co/Hp6lg46Mc8 +06/16/2018,Comedians,@KevinHart4real,Wow...I genuinely appreciate you. That touched my heart. I’m hoping that she can make Vancouver as well https://t.co/puRuJCKUvt +06/16/2018,Comedians,@KevinHart4real,RT @kobebechtel20: @KevinHart4real and the Plastic Cup Boyz put on an amazing show tonight! Unbelievable! #IrresponibleTour +06/16/2018,Comedians,@KevinHart4real,They did such a good handling that situation. https://t.co/XLrfp2L6Te +06/16/2018,Comedians,@KevinHart4real,I was just told that she is doing much better...God is good https://t.co/CDue5FlnJV +06/16/2018,Comedians,@KevinHart4real,RT @krisi_stull: Just saw the Irresponsible Tour here in Portland!! @KevinHart4real did an amazing job ❤️❤️ I was laughing the whole way th… +06/16/2018,Comedians,@KevinHart4real,RT @KassAss21: Im pretty sure that for the first time ever I experienced a face cramp from laughing so hard thanks to @KevinHart4real 😂🤦🏻‍♀️ +06/16/2018,Comedians,@KevinHart4real,RT @brianhatch93: @KevinHart4real Wife and i came down to portland from seattle to watch #irrisponsible tour for our 9 year anniversary. Y… +06/16/2018,Comedians,@KevinHart4real,RT @kevjksull: I was so exxcciitttteeeddd to see @KevinHart4real tonight on the #irresponsibletour ! My whole face hurts from laughing the… +06/16/2018,Comedians,@KevinHart4real,RT @sammyseno: Kevin Hart is a true showman. One of the best shows I have ever seen. @KevinHart4real thanks for coming to Portland! +06/16/2018,Comedians,@KevinHart4real,RT @MattSanders132: @KevinHart4real was unreal tonight in Portland. 🙌🏻 Just what wifey and I needed. +06/16/2018,Comedians,@KevinHart4real,Thank you Portland....Tonight was dope as hell.… https://t.co/BB1mLsx2D6 +06/16/2018,Comedians,@KevinHart4real,It’s showtime Portland....Let’s goooooo… https://t.co/hYM4IdDtF6 +06/15/2018,Comedians,@KevinHart4real,Let’s gooooooo Portland....It’s almost showtime people....If u don’t have ur tickets get them NOOOOWWWW!!!! https://t.co/FbFzTMXUmp +06/15/2018,Comedians,@KevinHart4real,Thank you Seattle....Last night was amazing. As… https://t.co/dmAeQyQZ7c +06/15/2018,Comedians,@KevinHart4real,Shot by kevinkwan327 #DopePic https://t.co/bmrzCM3K1g +06/15/2018,Comedians,@KevinHart4real,Thank you Taylor....You are a true rockstar.… https://t.co/DaTSJMfo4s +06/14/2018,Comedians,@KevinHart4real,#TBT Me & My brother icecube ....That day was a… https://t.co/Uq4YrsJF7y +06/14/2018,Comedians,@KevinHart4real,Breaking news people....I think I grew a little bit. I just had to add a line on my height wall...This is HUGE! I a… https://t.co/vp2ok8lxZi +06/14/2018,Comedians,@KevinHart4real,Morning vibes .....Roxy X Baby Zo #Harts https://t.co/srSysXl5je +06/14/2018,Comedians,@KevinHart4real,#TBT #Harts https://t.co/d2aX5ELC8w +06/12/2018,Comedians,@KevinHart4real,Caption this 😂😂😂😂😂 #irresponsibletour… https://t.co/eK7WKFzjnx +06/12/2018,Comedians,@KevinHart4real,Tuesday morning dog work with @caliK9 ....So… https://t.co/bsMiXMdiib +06/12/2018,Comedians,@KevinHart4real,#DopePic https://t.co/RBk9poa07i +06/12/2018,Comedians,@KevinHart4real,#Facts https://t.co/JjiJIDuuD7 +06/11/2018,Comedians,@KevinHart4real,#dopepic #comedicrockstarshit #Lilswag https://t.co/5Rdf0EqPhL +06/11/2018,Comedians,@KevinHart4real,RT @olivia_136haney: for @KevinHart4real to make a whole room roll in laughter is such an amazing thing to see! Truly a blessing to see you… +06/11/2018,Comedians,@KevinHart4real,RT @cshaw_rx: @KevinHart4real was FANTASTIC tonight at the Idaho Center. Laughed hysterically the whole time! 😂 I literally cannot wait to… +06/11/2018,Comedians,@KevinHart4real,"RT @jerseyprincess6: I legit haven't laughed as hard as I did tonight in a long ass time, @KevinHart4real is amazing! What the world needs…" +06/11/2018,Comedians,@KevinHart4real,"RT @cheyannbartlett: @KevinHart4real Irresponsible Tour was so awesome 😎 funniest shit I’ve ever heard, I was crying laughing" +06/11/2018,Comedians,@KevinHart4real,RT @tinyrik: My face hurts from laughing non-stop for 3 hours! @KevinHart4real thanks for keeping it 💯. The #IrresponsibleTour was amazing! +06/10/2018,Comedians,@KevinHart4real,It's a celebration of laughter people!!!!!… https://t.co/huwUSQxIBP +06/10/2018,Comedians,@KevinHart4real,A quick recap of one of the biggest nights of my… https://t.co/orcN2nDcBb +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/ELB8VvuKyx +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/DQ2MxUcuzb +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/quMB0cKtMF +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QL1rJlmK36 +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/fYepox6FgT +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/arrJb1a8bo +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/cQi60nQlRY +06/10/2018,Comedians,@KevinHart4real,RT @holly_gervais: @KevinHart4real & the plastic cup boyz did a phenomenal show 👌🏻 my stomach aches from laughing so hard #IrresponsibleTo… +06/09/2018,Comedians,@KevinHart4real,😂😂😂😂😂 This picture just makes me happy. Look at… https://t.co/q3vZT1B7EI +06/09/2018,Comedians,@KevinHart4real,Just touched down in Edmonton AB and I am beyond… https://t.co/1yTSgaHzXI +06/09/2018,Comedians,@KevinHart4real,"Boise ID my ""Irresponsible Tour"" will be in your city tomorrow night...Get your tickets and come laugh with me damn… https://t.co/UChY5hRsCa" +06/09/2018,Comedians,@KevinHart4real,Edmonton AB I am on my way damn it!!!! Let's… https://t.co/mopBs805fW +06/09/2018,Comedians,@KevinHart4real,Edmonton AB I am on my way damn it....If you don't have your tickets for tonight's show I suggest you get them NOOO… https://t.co/iuFmugAoFx +06/09/2018,Comedians,@KevinHart4real,There is no ELEVATOR to success people....You have to take the stairs!!!! Realest quote that I ever read which is why I had to repost it!!!! +06/09/2018,Comedians,@KevinHart4real,It's a great read....U will love it!!!! https://t.co/4Y8ORdDQPe +06/09/2018,Comedians,@KevinHart4real,Marathon #2 is right around the corner....While… https://t.co/qIwFDDMlhe +06/09/2018,Comedians,@KevinHart4real,#irresponsibletour #DopePic #Harts https://t.co/3eBhaPjMc1 +06/09/2018,Comedians,@KevinHart4real,RT @dominGOLDmonsta: BOOM! Brilliance strikes again! Thank you @KevinHart4real for setting off the comicalbomb and making me die of laughte… +06/09/2018,Comedians,@KevinHart4real,RT @19Stephd: @KevinHart4real I cried from laughing! My cheeks hurt! Thank you for coming #Calgary #IrresponsibleTour +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/057Xm55qNP +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/I6ejMKxgcc +06/09/2018,Comedians,@KevinHart4real,RT @DarylWilson98: Omg that was the funniest show ever @KevinHart4real #IrresponsibleTour +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/OkvZs08rIz +06/09/2018,Comedians,@KevinHart4real,Another 1.... I love my job!!!!… https://t.co/KmkUODlqWB +06/08/2018,Comedians,@KevinHart4real,#dopepic #irresponsibletour #LilSwag… https://t.co/iBIW99NQg9 +06/08/2018,Comedians,@KevinHart4real,Calgary AB I just touched down damn it.... OPERATION destroy this city with laughter is now in session!!!!! Let's g… https://t.co/i4fVPV2O58 +06/08/2018,Comedians,@KevinHart4real,#irresponsibletour #comedicrockstarshit… https://t.co/bmRIKWD3U3 +06/08/2018,Comedians,@KevinHart4real,I am still blown away from last night's… https://t.co/4hllB81gtV +06/08/2018,Comedians,@KevinHart4real,All I can say is WOW!!!!! History was made last… https://t.co/DZZHF8pP3R +06/08/2018,Comedians,@KevinHart4real,RT @shivamvyas1211: @KevinHart4real Amazing show brother you were hilarious as always . Enjoyed soo much .❤️❤️❤️ +06/08/2018,Comedians,@KevinHart4real,RT @KristinAlayna_: Thoroughly enjoyed the laughs! Thanks @KevinHart4real we had a great night! #IrresponsibleTour #hollywoodbowl https://t… +06/08/2018,Comedians,@KevinHart4real,RT @heyitsluis11: @KevinHart4real last night with @Jewel_ee was hilarious!! #irresponsibletour I was “sooo exciiiiited!” 😂😂😂 +06/08/2018,Comedians,@KevinHart4real,RT @amiraavee: @KevinHart4real irresponsible tourrr super littttt🤩😂😅😭😭🙌🏾 +06/08/2018,Comedians,@KevinHart4real,RT @alymartinezz__: Thank you @KevinHart4real!!!! You were amazing and hilarious as always! 😂😂💛 https://t.co/1oje4tbqDY +06/08/2018,Comedians,@KevinHart4real,RT @Cpt_Locc: @KevinHart4real yooooo #IrresponsibleTour had me dying of laughter 😂😂😂 I’m going to Japan now 😭😭😂😂😂 +06/08/2018,Comedians,@KevinHart4real,Everybody wants to be famous but nobody wants to… https://t.co/hLnYAtElYG +06/07/2018,Comedians,@KevinHart4real,Let's gooooooooo los Angeles Ca.....Its going down tonight at the Hollywood Bowl damn it!!!! Get your tickets ASAP!… https://t.co/JVCQXrXucm +06/07/2018,Comedians,@KevinHart4real,"Looking out into the future of ""Tommy John""… https://t.co/RqJS0L3D35" +06/07/2018,Comedians,@KevinHart4real,It's all about progression!!!!! Shoutout to my… https://t.co/jFXEq8Phqg +06/07/2018,Comedians,@KevinHart4real,#Harts https://t.co/WI2FldwBZP +06/06/2018,Comedians,@KevinHart4real,Me & my mini mini me #Harts https://t.co/lEvs01ALNT +06/06/2018,Comedians,@KevinHart4real,On the set of my Tommy John photoshoot for the… https://t.co/7kHa5EkmXI +06/06/2018,Comedians,@KevinHart4real,Los Angeles Ca it's going down tomorrow night… https://t.co/urdXWHynqu +06/06/2018,Comedians,@KevinHart4real,Let's gooooooooo Los Angeles Ca....Its going down tomorrow night at the Legendary Hollywood Bowl in Los Angeles Ca.… https://t.co/SeymFtXfJB +06/04/2018,Comedians,@KevinHart4real,RT @Shiekdon_64: The crew tonight 💜💜🎉🎉🎉 Wakanda Forever 🙅‍♂️🙅‍♀️ #IrresponsibleTour @KevinHart4real https://t.co/PW3Nkcrmlx +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: My sister was soooo Exciteeeddddd 😂😂😂😂 ❌❌ +#IrresponsibleTour @KevinHart4real https://t.co/FHEATzJ7e1" +06/04/2018,Comedians,@KevinHart4real,RT @tashenaelaine: I'm the kind of person that can't stop talking about things that excite me. So I won't stop talking about @KevinHart4rea… +06/04/2018,Comedians,@KevinHart4real,RT @mattdayman86: Great show tonight seeing @KevinHart4real Thanks for coming back to Regina! #IrresponsibleTour +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: 😂😂😂😂😂😂😂😭😭😭😢😭 I can't breath #IrresponsibleTour left me in tears😂😂 @KevinHart4real thank you for coming back to Regina,see…" +06/04/2018,Comedians,@KevinHart4real,RT @chrislorence: @KevinHart4real Thanks for another fantastic show in Regina. This was our second time seeing you here and it was even fun… +06/04/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/NyOTp6NZi8 +06/04/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/pDShdlxnxV +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: Incredible night, S/O to @KevinHart4real And the Plastic cup boyz😂😂🤣🤣👏👏👏👏 Please come back to Regina Soon💕 #Irresponsible…" +06/04/2018,Comedians,@KevinHart4real,It's Showtime Regina Saskatchewan.....Let's… https://t.co/dwnyQAeUTy +06/03/2018,Comedians,@KevinHart4real,RT @metronewyork: @TiffanyHaddish and @KevinHart4real will combine ’no-holds barred’ and nuanced comedy in #NightSchool https://t.co/bzUZVc… +06/03/2018,Comedians,@KevinHart4real,Nobody Knows what you are capable of more than YOU!!!!! Compete against you and nobody else damn it!!!! +06/03/2018,Comedians,@KevinHart4real,Sunday Morning motivation & inspiration!!!!!… https://t.co/y2P5W1EJgC +06/03/2018,Comedians,@KevinHart4real,"Los Angeles Ca....HISTORY will be made next week on June 7th at the ""Hollywood Bowl"" damn it....If you don't have y… https://t.co/rDBzax1S5V" +06/03/2018,Comedians,@KevinHart4real,"Mpho will definitely be coming your way on my ""Irresponsible Tour"" https://t.co/ugKAOv7O4w" +06/03/2018,Comedians,@KevinHart4real,RT @CJ7Ten: #IrresponsibleTour @KevinHart4real just keeps getting better and better #SK +06/03/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/w26npXx2t3 +06/03/2018,Comedians,@KevinHart4real,RT @roamdawg: Not ready for how much my face hurts after watching @KevinHart4real #IrresponsibleTour 🤣🤣🤣 https://t.co/1jkkNODIun +06/03/2018,Comedians,@KevinHart4real,"RT @kjrnahbexie: @KevinHart4real was amazing tonight! Had Saskatoon feeling so hype 🔥🔥 +Legend!! ❤️#IrresponsibleTour" +06/03/2018,Comedians,@KevinHart4real,RT @Shannzyy1: Kevin Hart was 🔥🔥🔥🔥tonight in Saskatoon!!! #IrresponsibleTour @KevinHart4real +06/03/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/rdUBP1gVGO +06/03/2018,Comedians,@KevinHart4real,It's showtime Saskatoon Saskatchewan ....Lets… https://t.co/D1tvvlzLzw +06/02/2018,Comedians,@KevinHart4real,#irresponsibletour #comedicrockstarshit… https://t.co/4jRzQF5967 +06/02/2018,Comedians,@KevinHart4real,Let’s goooooooo Saskatoon SK .....I’m on my way damn it. Get yo tickets NOOOOOOWWWW https://t.co/QpJLuc3GIu +06/02/2018,Comedians,@KevinHart4real,#Mood 😂😂😂😂😂 #Harts #BabyZo https://t.co/X3IQAeMZdS +06/02/2018,Comedians,@KevinHart4real,#Harts https://t.co/GuylZ8mEsy +06/02/2018,Comedians,@KevinHart4real,Today's rule is simple....Wake up & be great! Enjoy ur day people +06/02/2018,Comedians,@KevinHart4real,So much fun man. Always a good time with you guys!!!!! https://t.co/rNliNDTUmR +06/02/2018,Comedians,@KevinHart4real,The real work starts after the work is done....Only the go getters will understand this tweet!!!! #Motivation #Inspiration #Focused +06/02/2018,Comedians,@KevinHart4real,Thank you for the love & amazing laughter… https://t.co/IFR3bKLeLk +06/02/2018,Comedians,@KevinHart4real,RT @kingmuyiwa: @KevinHart4real had winnipeg lit 🔥. Mad funny show #IrresponsibleTour +06/02/2018,Comedians,@KevinHart4real,RT @PREZcent: @KevinHart4real is a legend man.. Tore the MTS centre down!!! Made me die laughing! #irresponsibletour #winnipeg +06/02/2018,Comedians,@KevinHart4real,"RT @Mark_Nelson41: Got to see @KevinHart4real for the second time in Winnipeg tonight, my gut will definitely be sore in the morning #Irres…" +06/02/2018,Comedians,@KevinHart4real,"Saskatoon SK I will be in town tomorrow night damn it!!!! Get your tickets to my ""Irresponsible Tour"" Noooowwwwww https://t.co/A6H6zEKCR3" +06/02/2018,Comedians,@KevinHart4real,All I can say is WOW. My fans are literally the… https://t.co/dBNYIZ6kiQ +06/01/2018,Comedians,@KevinHart4real,RT @UniPicturesCAN: Night School is in session. Watch the trailer starring @KevinHart4real and @TiffanyHaddish now! In theatres September 2… +06/01/2018,Comedians,@KevinHart4real,RT @Fandango: .@TiffanyHaddish as our teacher? @KevinHart4real as our classmate? Sign us up for #NightSchool https://t.co/3CssF4R4B5 +06/01/2018,Comedians,@KevinHart4real,"RT @RottenTomatoes: Come for @KevinHart4real and @TiffanyHaddish, stay for @fatjoe. Watch the brand new trailer for #NightSchool https://t.…" +06/01/2018,Comedians,@KevinHart4real,I still can’t believe it....this is mind blowing!!!!! I love my fans!!!!! #IrresponsibleTour #comedicrockstarshit https://t.co/yKhJ7qg2xD +07/01/2018,Comedians,@hannibalburess,Outstanding. https://t.co/3KVyBulTDr +06/29/2018,Comedians,@hannibalburess,Produced by @TonyTrimm Directed by @Argo106 With @byronbowers +06/29/2018,Comedians,@hannibalburess,"Sorry to drop this today Drake. + +@turo https://t.co/dYMPpvFUvR" +06/29/2018,Comedians,@hannibalburess,"From podcast jingle to music video. @turo hop in the whip and you go. + +Track produced by @TonyTrimm Video… https://t.co/HNIY8Ad3Fe" +06/28/2018,Comedians,@hannibalburess,"Pop up show in Seoul tonight. + +VENUE: Club DGBG/ 홍대 DGBD +TIME: 8PM +TICKETS: 30,000W at the door +ADDRESS:: 마포구 서교… https://t.co/WJYE4ZVOLd" +06/27/2018,Comedians,@hannibalburess,@Beejoelay48 Absolutely. It was really funny to see because at first I thought he was just fed up with his job +06/27/2018,Comedians,@hannibalburess,Street promo in Seoul 😂 https://t.co/jKZ6QLgJFf +06/27/2018,Comedians,@hannibalburess,https://t.co/a20ItOs3kR +06/27/2018,Comedians,@hannibalburess,"Tomorrow night. + +Hannibal Buress stand-up in Seoul + +VENUE: Club DGBG/ 홍대 DGBD +TIME: 8PM +TICKETS: 30,000W at the… https://t.co/rgrMQ3QrAO" +06/27/2018,Comedians,@hannibalburess,I’m in Seoul. I want to do a guest verse on a big K-Pop song. How does one go about this? +06/27/2018,Comedians,@hannibalburess,@Umberellah They’re not sold out. +06/24/2018,Comedians,@hannibalburess,"RT @janellejcomic: Earth, Wind and Liar https://t.co/eowX5TsQmw" +06/22/2018,Comedians,@hannibalburess,@KOSTheProducer Mannnnn +06/21/2018,Comedians,@hannibalburess,https://t.co/jfyWOn5p03 +06/21/2018,Comedians,@hannibalburess,"Turoooooo produced by @TonyTrimm directed by Kris Merc @Argo106 + +@turo + https://t.co/vhs5IRPIq1" +06/21/2018,Comedians,@hannibalburess,@DrewFYTB @TonyTrimm Thank you for believing in me. +06/21/2018,Comedians,@hannibalburess,"RT @turo: When @hannibalburess goes out for burritos, he drives something bomb from Turo so he can stunt on everyone else in the drive-thro…" +06/21/2018,Comedians,@hannibalburess,The escalation of a podcast ad jingle. https://t.co/dJ6AKRfBp7 +06/21/2018,Comedians,@hannibalburess,"Detroit tonight. + +https://t.co/TTu0Q1Ulub https://t.co/WfPPW7At6f" +06/21/2018,Comedians,@hannibalburess,@TeaTvrtkovic @DesmundLighten Thank you 🙏🏿 +06/20/2018,Comedians,@hannibalburess,"Detroit- Tomorrow + +https://t.co/TQYuQojtVI" +06/20/2018,Comedians,@hannibalburess,It’s done https://t.co/BYkZJYTBQX +06/19/2018,Comedians,@hannibalburess,New episode of @HandsomeRambler with Jon Hamm #tagmovie in theaters now. +06/19/2018,Comedians,@hannibalburess,Detroit. Thursday. https://t.co/Vwwol2jAgY +06/19/2018,Comedians,@hannibalburess,@marievonboran @desusandmero Just go for it and have fun. Lots of action. Play with the settings. Play a song yo… https://t.co/QCnHXCYlao +06/19/2018,Comedians,@hannibalburess,RT @desusandmero: Watch the extended version of our interview with @hannibalburess here: https://t.co/Ft7rTLMXSo https://t.co/bZ1QpIFnJc +06/19/2018,Comedians,@hannibalburess,Shiny. https://t.co/4ibhcVr56L +06/19/2018,Comedians,@hannibalburess,Talking shit tonight with @desusandmero 11pm est on viceland https://t.co/LY6E6ZyY9Y +06/19/2018,Comedians,@hannibalburess,Here’s a clip from tomorrow’s @HandsomeRambler with Jon Hamm. Just a couple thespians talking art and process… https://t.co/schoNHr2NI +06/18/2018,Comedians,@hannibalburess,Solid point. https://t.co/Q7OSIRc1zb +06/18/2018,Comedians,@hannibalburess,i feel like it was helpful https://t.co/iIk9z6SgOl +06/17/2018,Comedians,@hannibalburess,@itschonzii happy birthday Alex! happy holidays. Happy fathers day. +06/17/2018,Comedians,@hannibalburess,"September and October tour dates + +LA, SF, Oakland, Santa Ynez, Dallas, Houston, Austin, Milwaukee, Minneapolis, Veg… https://t.co/Zy8f2ADODP" +06/16/2018,Comedians,@hannibalburess,Got something cooking for a Detroit show Thursday. I'll announce details Monday. +06/16/2018,Comedians,@hannibalburess,Yeahhhhhhh https://t.co/ACfx6sqF4o +06/16/2018,Comedians,@hannibalburess,"Bears Hawks Sox Bulls @serengetidave +https://t.co/LigHGJqNor" +06/16/2018,Comedians,@hannibalburess,"Here's the newest episode of @HandsomeRambler with @MrJakeJohnson #TagMovie + +https://t.co/8X0bTNR2PS" +06/16/2018,Comedians,@hannibalburess,RT @whitebearpr: .@Germaine_Franco discusses her work on scoring the newly released @newlinecinema film #TAGMovie with @Billboard: https:/… +06/16/2018,Comedians,@hannibalburess,RT @TonyTrimm: I did some red carpet interviews with @LilRel4 @Mike_Eagle @brianbabylon @WallisAnnabelle @hannibalburess @MrJakeJohnson @Ha… +06/16/2018,Comedians,@hannibalburess,Tony Trimm on the @tagthemovie Red Carpet with appearances. Lots of cameos! https://t.co/0lCdUA9KXl +06/15/2018,Comedians,@hannibalburess,Sunday on Netflix ! https://t.co/vQo04iMIxy +06/15/2018,Comedians,@hannibalburess,Today! https://t.co/P9VcRfTgNL +06/15/2018,Comedians,@hannibalburess,I also react when I hear two cats fighting in the street. https://t.co/QicBH1ZgNM +06/15/2018,Comedians,@hannibalburess,RT @roywoodjr: When ya drunk homeboy starts making a fool of himself trying to holla at women in the club https://t.co/ls6dZeMVCV +06/15/2018,Comedians,@hannibalburess,Yep! https://t.co/wFvsqMAD5n +06/15/2018,Comedians,@hannibalburess,"RT @JimmyKimmelLive: Tonight on #Kimmel Jon Hamm #TagMovie, Lil Rel Howery @LilRel4 #UncleDrew and music from @G_Eazy ft. @YoGottiKom & @YB…" +06/15/2018,Comedians,@hannibalburess,https://t.co/UVHHsEsRHA +06/15/2018,Comedians,@hannibalburess,New @HandsomeRambler with @MrJakeJohnson on the theremin. #TagMovie https://t.co/NLCSm5F7va +06/15/2018,Comedians,@hannibalburess,😂😂 https://t.co/rl5QasQrKz +06/14/2018,Comedians,@hannibalburess,"NYC press days recap. + +Shot and edited by @marcusprice + +Song - Flight of the flamingo by @MrFlamingosis https://t.co/KXsP0fKZ3O" +06/14/2018,Comedians,@hannibalburess,RT @brianbabylon: #TBT Last Thursday rolling with @hannibalburess at the #tagmovie premiere congrats to @mrtomsic on making his 1st movie.… +06/14/2018,Comedians,@hannibalburess,Talking with Tag director Jeff Tomsic on the latest @HandsomeRambler about “priest apparel licensing issues” https://t.co/A9U4acJm0F +06/14/2018,Comedians,@hannibalburess,"NEW TOUR DATES. + +Dallas, Houston, Austin, SF, Oakland, Minneapolis, Milwaukee, Madison, Eugene shows now on presale… https://t.co/fbTVniwDPK" +06/14/2018,Comedians,@hannibalburess,On @LateNightSeth tonight. https://t.co/GrqpCJIefu +06/13/2018,Comedians,@hannibalburess,"Full video episode of the podcast with @tagthemovie director Jeff Tomsic. + +https://t.co/pu2gziVVlX" +06/13/2018,Comedians,@hannibalburess,"We got the director of @tagthemovie Jeff Tomsic on the @HandsomeRambler + +https://t.co/4Ad0mkFyIa https://t.co/7HVGEViEX8" +06/13/2018,Comedians,@hannibalburess,Hannibal https://t.co/RwhdMDICR0 +06/13/2018,Comedians,@hannibalburess,@ericgwey Hannibal +06/13/2018,Comedians,@hannibalburess,@_woweewow_ I think it’s Hannibal +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs Nope. I got press. I’ll Venmo you. +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs Y’all should go get breakfast and come back. +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs How long is the line now +06/13/2018,Comedians,@hannibalburess,🔥🔥🔥 https://t.co/8hqTfExbYP +06/12/2018,Comedians,@hannibalburess,Street preaching! Thanks for having me. https://t.co/BY5zB9xVHm +06/12/2018,Comedians,@hannibalburess,The process. https://t.co/iFbwa916IR +06/11/2018,Comedians,@hannibalburess,#TagMovie https://t.co/zxxwkmthnQ +06/11/2018,Comedians,@hannibalburess,Hot take. https://t.co/M7tLviJVam +06/11/2018,Comedians,@hannibalburess,Recruiting https://t.co/VPGa15yP4N +06/11/2018,Comedians,@hannibalburess,@JoeFreshgoods Man I hate that shit. +06/10/2018,Comedians,@hannibalburess,@GeriatricGenius Appreciated Bruce. +06/10/2018,Comedians,@hannibalburess,We tried to play Dennehy the Dennehy song by @serengetidave and he was not interested at all. https://t.co/4mW0mcjmA5 +06/09/2018,Comedians,@hannibalburess,This is how I spend my downtime on movie sets. https://t.co/mck5j1MwAD +06/09/2018,Comedians,@hannibalburess,".@TwitterSafety @TwitterSupport + +Please remove this man from the platform. It’s for the best. https://t.co/8cqf5kuVLI" +06/09/2018,Comedians,@hannibalburess,I’ll be on @JimmyKimmelLive after the sweep talking red carpet impersonators and watching sports on psychedelics.… https://t.co/kILoHKVAYm +06/09/2018,Comedians,@hannibalburess,Tonight! https://t.co/gg4FjCYHqM +06/08/2018,Comedians,@hannibalburess,Vegas tonight ! At the mirage. Get your tickets at one of those kiosks on the strip that have hella tickets https://t.co/dQnwRa4h4F +06/08/2018,Comedians,@hannibalburess,RT @Mike_Eagle: it doesnt get cold in LA and thats great. but 'for your consideration' season is kind of a winter of its own +06/07/2018,Comedians,@hannibalburess,RT @parthbrahm: ESPN truly has a stat for everything this guy does https://t.co/t9c9aWqNhD +06/06/2018,Comedians,@hannibalburess,Great stuff. https://t.co/rNSXszFaK7 +06/06/2018,Comedians,@hannibalburess,"RT @hcbrockmann97: #TagMovie is very funny. + +Everybody has their time to shine. +The whole cast is at their best when they’re bouncing off o…" +06/05/2018,Comedians,@hannibalburess,LA! https://t.co/dVYpbH45G8 +06/05/2018,Comedians,@hannibalburess,Canada! https://t.co/sAsq1Dd9XB +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 Bet. How much ? +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 Yep. +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 I’ll take that action. +06/04/2018,Comedians,@hannibalburess,.@TonyTrimm new YouTube channel https://t.co/ZvUMJLJ6EF +06/04/2018,Comedians,@hannibalburess,Me because I’m going to sit in silence and not bother you. https://t.co/6Efdff3PMJ +06/04/2018,Comedians,@hannibalburess,"Dallas! This is happening tomorrow. + +https://t.co/w0SiygOhgb" +06/02/2018,Comedians,@hannibalburess,Chicago! https://t.co/zeGfNgljvl +06/02/2018,Comedians,@hannibalburess,New @HandsomeRambler up with @sad13 from @speedyortiz. Listen in https://t.co/xjqeZNPmMP or check the video at… https://t.co/1Wmu56lkNd +06/01/2018,Comedians,@hannibalburess,"Outstanding + +https://t.co/Htv2igfyr7" +05/29/2018,Comedians,@hannibalburess,"Donate here to win a chance to go to the @tagthemovie premiere in LA June 7th. $10 gets you one entry. + +https://t.co/iqXBy2kCep" +05/29/2018,Comedians,@hannibalburess,"RT @WallisAnnabelle: Want to win a trip to the LA premiere of @tagthemovie on June 7th? Who knows, you might be tagged into the game! Every…" +05/25/2018,Comedians,@hannibalburess,blew it out cool too https://t.co/penvuhiesu +05/24/2018,Comedians,@hannibalburess,RT @JoeFreshgoods: 20 pop up shops tomorrow. Ha! 2 pm every city. History. https://t.co/eRsieGRqD8 +05/22/2018,Comedians,@hannibalburess,Vegas. June 8th https://t.co/bsEodm8fwF +05/19/2018,Comedians,@hannibalburess,@joshua_allon You think I didn’t know?? +05/19/2018,Comedians,@hannibalburess,@dizzyswank @BAM_Brooklyn @joyellenicole and @jermaineFOWLER +05/18/2018,Comedians,@hannibalburess,@roywoodjr https://t.co/7wmPDdH4T6 +05/17/2018,Comedians,@hannibalburess,"RT @adultswim: We've added @hannibalburess, @Thundercat and 22 more acts to the first ever Adult Swim Festival! For tix and more info go to…" +05/15/2018,Comedians,@hannibalburess,"Great story on @comicBaldheadP and his work with Readi Chicago. + +https://t.co/f4K5vfFFnI" +05/15/2018,Comedians,@hannibalburess,"Port Chester, Brooklyn, Philly, and Vegas shows coming up. + +https://t.co/exXgW4rGZa" +05/15/2018,Comedians,@hannibalburess,"RT @OldTakesExposed: FOH, you psychopaths https://t.co/vWnkHlCY7g" +05/15/2018,Comedians,@hannibalburess,https://t.co/Q1PiDzgeAF https://t.co/liiqwd7URY +05/14/2018,Comedians,@hannibalburess,Chicago! https://t.co/4KuMNOXKPa +05/12/2018,Comedians,@hannibalburess,@PROPAYNE_BEATZ Thanks for getting one +05/12/2018,Comedians,@hannibalburess,Salt lake tonight. https://t.co/ToiEFALKwM +05/12/2018,Comedians,@hannibalburess,DC! Janelle James is in town tonight and tomorrow at the Arlington Drafthouse. check her out. https://t.co/Uf7G5ExcxS +05/11/2018,Comedians,@hannibalburess,"A handful of tickets available at the door in Spokane tonight 7pm. with @ComicEricaClark and @TonyTrimm + +https://t.co/2qfVobheei" +05/10/2018,Comedians,@hannibalburess,🔥🔥🔥 https://t.co/sQw1wvTiZP +05/09/2018,Comedians,@hannibalburess,If the Jazz win tonight I’ll rock Stockton style shorts for my Salt Lake City show on Saturday.… https://t.co/FLa8wAj4zJ +05/08/2018,Comedians,@hannibalburess,Another banger from last week's @HandsomeRambler with special guest @lizzo. We're in Boise and Spokane at The Knitt… https://t.co/h8TZ8hB80h +05/08/2018,Comedians,@hannibalburess,@lizzo snappin on the theremin during last week's @HandsomeRambler. listen to the full episode at… https://t.co/TzwM2L7zER +05/08/2018,Comedians,@hannibalburess,Titties are beautiful by @lizzo beat by @TonyTrimm. Listen to the latest episode of @HandsomeRambler at… https://t.co/oUPMqXdqqV +05/07/2018,Comedians,@hannibalburess,Who knew @TonyTrimm was so passionate about pizza? Check out this clip from the latest @HandsomeRambler with specia… https://t.co/PizYbhSO1B +05/06/2018,Comedians,@hannibalburess,"Missoula, Boise, Salt Lake City, Denver, Spokane, Vegas, Brooklyn and Philly shows coming up. Get tickets here. + +https://t.co/exXgW4rGZa" +05/02/2018,Comedians,@hannibalburess,New episode of @HandsomeRambler with @lizzo is up now https://t.co/stGSaRiDz1 +04/27/2018,Comedians,@hannibalburess,@J_Rose007 appreciated man +04/27/2018,Comedians,@hannibalburess,RT @GLCTHEISM: #ism Honored to be a part of the growth of our great city. #Chicago #ChiStateOfMind #GoodInEnglewood #Englewood #GLC #TheBoo… +04/26/2018,Comedians,@hannibalburess,@senseofnickels @chaneybarton we're doing all 3. finishing up the particulars. +04/26/2018,Comedians,@hannibalburess,"Tour dates at https://t.co/ViJDpu8eMG + +Brooklyn, Philly, Denver, Vegas, Spokane, Missoula, Boise. + +Bay Area and T… https://t.co/vnDUiTeA1m" +04/25/2018,Comedians,@hannibalburess,https://t.co/086Fkhz8JM +04/25/2018,Comedians,@hannibalburess,@ComedyHype_ April 1st was 3 weeks ago. +04/20/2018,Comedians,@hannibalburess,@techieondeck Hopefully. We’ll see what it costs to license that. +04/20/2018,Comedians,@hannibalburess,He windmilled it for everybody that had over 205.5 and we appreciate him for it. https://t.co/DxPNioeKN9 +04/19/2018,Comedians,@hannibalburess,@KendallTEdwards @carlitosgueyyy That’s a lot of god damn jokes! +04/19/2018,Comedians,@hannibalburess,In theaters June 15th @tagthemovie https://t.co/xHnAGBVh0Y +04/19/2018,Comedians,@hannibalburess,"Me: + +Lyft: we have replaced your driver with a better match that’s 6 minutes further away than the initial drive… https://t.co/aJLbH0YGCd" +04/19/2018,Comedians,@hannibalburess,@count_nickula Marijuana -chrome sparks +04/18/2018,Comedians,@hannibalburess,"RT @fakeshoredrive: once you realize Keef's ""Love Sosa"" flow is a nod to Lord Infamous on ""Stomp"" then you'll understand just how far these…" +04/18/2018,Comedians,@hannibalburess,@Snipes_Jr nope but I'll have something else cooking soon +04/17/2018,Comedians,@hannibalburess,"Full video of @HandsomeRambler live from @thirdmanrecords with @natebargatze @kevinbozeman + +https://t.co/U49OG5V1qf" +04/16/2018,Comedians,@hannibalburess,@Channing_Frye Was that you in the corner mostly bored and sporadically sticking your hands out? +04/14/2018,Comedians,@hannibalburess,@atcoops451 @LaughscomedySEA @byronbowers +04/14/2018,Comedians,@hannibalburess,Portland on Sunday! https://t.co/wVjMW80wLo +04/14/2018,Comedians,@hannibalburess,🙏🏿 https://t.co/nDeFmbKRku +04/14/2018,Comedians,@hannibalburess,@christinanthony @Postmates I’ve fallen asleep multiple times before they got there They definitely eat it I think. +04/11/2018,Comedians,@hannibalburess,"New album from comedian @dcbenny + +awesome stories. check it out. + + https://t.co/e51W9wi1zB" +04/09/2018,Comedians,@hannibalburess,#WrestleMania https://t.co/C0ukUDtRqV +04/06/2018,Comedians,@hannibalburess,In Theaters today. I’m in there for couple minutes. Same dude. Different costume. https://t.co/MG250pwQWk +04/06/2018,Comedians,@hannibalburess,"RT @Martin_Boev: ""@QuelleChris and @JeanGreasy's new collaborative album 'Everything's Fine' is a charismatic, idiosyncratic and an incred…" +04/05/2018,Comedians,@hannibalburess,@chancetherapper Did you just hit the 30 million mark and it’s causing an existential crisis? +04/04/2018,Comedians,@hannibalburess,RT @TonyTrimm: Honored to be nominated twice for the #webbyawards this year. The other is for Comedy podcast. You can vote til April 19. ht… +04/04/2018,Comedians,@hannibalburess,yessir https://t.co/dGdxbS37kr +04/04/2018,Comedians,@hannibalburess,"Portland - April 15th + +https://t.co/Z148jYZ0iA" +04/04/2018,Comedians,@hannibalburess,khabib vs ggg +04/01/2018,Comedians,@hannibalburess,Reasonable. https://t.co/0U3RQvSC9x +04/01/2018,Comedians,@hannibalburess,RT @TonyTrimm: Off to Charlotte tomorrow. Gonna miss you Nashville. https://t.co/9j5WwZYs98 +03/31/2018,Comedians,@hannibalburess,@Ksully_61 Honestly I’m not sure. +03/31/2018,Comedians,@hannibalburess,Easter gifts https://t.co/dRtiMdpeZL +03/30/2018,Comedians,@hannibalburess,"During the daytime in Little Rock, I think I wrote a pretty solid usable hook for the Migos. Some other shit happe… https://t.co/cyKTHxjJvH" +03/29/2018,Comedians,@hannibalburess,@SaintDarrell That was the worst part. I had just come off a flight 😂😂 +03/28/2018,Comedians,@hannibalburess,Untitled tour show. https://t.co/o4AKwq2pOI +03/28/2018,Comedians,@hannibalburess,"RT @video_dave: Here’s your first look at your new favorite show. The Hannibal Buress Untitled Tour Show. + +Episode 1 is A Food Show in Lit…" +03/27/2018,Comedians,@hannibalburess,"Me on morning tv in Memphis today. + +https://t.co/lcB7UORdvW" +03/27/2018,Comedians,@hannibalburess,"Never too late for now. + +https://t.co/VyFkL5Ss9e" +03/26/2018,Comedians,@hannibalburess,😑 https://t.co/4dQRPDSvNs +03/26/2018,Comedians,@hannibalburess,"RT @Chuckisdope: I tend to eat pringles a lot more than other chips ... but I don’t really like them. + +I don’t know what kinda of marketin…" +03/26/2018,Comedians,@hannibalburess,@lovelivemusiclr Um what? +03/26/2018,Comedians,@hannibalburess,"RT @LilRel4: Yo if you would like to see the live taping of my new comedy pilot produced, written and… https://t.co/6V1FOyoOUk" +03/25/2018,Comedians,@hannibalburess,"New merch up now + +https://t.co/avCOVTBnGe" +03/25/2018,Comedians,@hannibalburess,#InvictaFC28 right now! https://t.co/vjf5xPY94y +03/24/2018,Comedians,@hannibalburess,@SheilaRose_xiii @HandsomeRambler @TonyTrimm Appreciate you Sheila. Thanks +03/24/2018,Comedians,@hannibalburess,RT @MrJakeJohnson: A great text from @hannibalburess https://t.co/rc3n1cuHkU +03/24/2018,Comedians,@hannibalburess,Check out #InvictaFC28 tonight. 8pm. Thanks @shanknapp for the opportunity to be a sponsor. +03/24/2018,Comedians,@hannibalburess,.@TonyTrimm spitting Chicago food bars on an upcoming podcast episode. @lizzo on the adlibs. https://t.co/3wYRZZcjHR +03/23/2018,Comedians,@hannibalburess,@moshekasher @HandsomeRambler @nealbrennan yeah man. life hurts. how's the young one? +03/23/2018,Comedians,@hannibalburess,"RT @tagthemovie: Based on a true story (we’re not kidding). This summer, some traditions never get old. #TagMovie in theaters June 15. http…" +03/23/2018,Comedians,@hannibalburess,"New @HandsomeRambler with @nealbrennan Full video + +https://t.co/EFm0RKB7aW" +03/23/2018,Comedians,@hannibalburess,Charlotte ! https://t.co/cvEfeJaSuy +03/23/2018,Comedians,@hannibalburess,@zzuhuurr Yep. Make a friend +03/23/2018,Comedians,@hannibalburess,@dicemoneypotts 3 hours ago +03/22/2018,Comedians,@hannibalburess,"New episode of @HandsomeRambler with @nealbrennan is up now. + +https://t.co/L0EQFBCa7T https://t.co/Yi8TB4Z5hL" +03/22/2018,Comedians,@hannibalburess,"RT @stupidDOPE: When we started #theUBUNTUproject, we knew that we wanted to help people & change lives. We never thought that four years l…" +03/21/2018,Comedians,@hannibalburess,Memphis. March 27th. Design by Guarab Thakali. https://t.co/zJBDiF48dW +03/20/2018,Comedians,@hannibalburess,"Quick clip from the @nealbrennan episode of @HandsomeRambler + +Dropping tomorrow. https://t.co/T3sdcrJNDa" +03/20/2018,Comedians,@hannibalburess,June 15th! https://t.co/fokbdiQ07m +03/20/2018,Comedians,@hannibalburess,"Yeah I agreed to the content restrictions for the Loyola. + +Who hasn’t lied at a job interview before?? 😂😂😂 + +Why… https://t.co/hX0UvouYFC" +03/20/2018,Comedians,@hannibalburess,https://t.co/jS9RSTUtiQ https://t.co/X4xMgEybv6 +03/20/2018,Comedians,@hannibalburess,RT @MrJakeJohnson: I think we all really stretched our acting muscles for this one. #TagMovie #Oscars https://t.co/bciWZm1lzo +03/20/2018,Comedians,@hannibalburess,"My acting range is on full display in the new trailer for Tag. + +https://t.co/vrIbplnaGL" +03/17/2018,Comedians,@hannibalburess,RT @VicMensa: Every time you use the hashtag #yourthing or #believechicago @ATT will donate to my foundation Savemoney Savelife !!! +03/17/2018,Comedians,@hannibalburess,RT @JoeFreshgoods: #SXSW pull up to empire control room today for Bric’s block party I got a few tees that won’t last long. Trying to sell… +03/17/2018,Comedians,@hannibalburess,i have the same feeling about tunnels. https://t.co/hDchx9YZVj +03/17/2018,Comedians,@hannibalburess,Loyola tonight. They’re in the second round of the tournament plus it’s St Patrick’s day. This might be interestin… https://t.co/4fQVKzklUg +03/17/2018,Comedians,@hannibalburess,@CzariCastle open mike eagle's latest one +03/17/2018,Comedians,@hannibalburess,@PageKennedy Chilling mane +03/17/2018,Comedians,@hannibalburess,Every time???? #yourthing #believechicago #yourthing #believechicago #yourthing #believechicago #yourthing… https://t.co/qveJmUULqn +03/15/2018,Comedians,@hannibalburess,Nyc tonight. https://t.co/Tzg6g3eYhv +03/15/2018,Comedians,@hannibalburess,@SPD_NASCAR that's my homegirl Constance. she shot the cover actually +03/14/2018,Comedians,@hannibalburess,@_needle_thread_ Awesome shot. +03/13/2018,Comedians,@hannibalburess,"RT @BootsRiley: Let's do it. #sorrytobotheryou + +In theaters in July. https://t.co/HaNginbemw" +03/11/2018,Comedians,@hannibalburess,@stubhubby @Nicole_Cliffe @SolidSoundFest @mavisstaples deep cut and great catch +03/10/2018,Comedians,@hannibalburess,John Oliver switched up his look to get an easy second revenue stream. https://t.co/3WWtALYLsB +03/09/2018,Comedians,@hannibalburess,March 15th NYC https://t.co/qkgQlUoEf4 +03/07/2018,Comedians,@hannibalburess,"RT @Mike_Eagle: Dead Ass is back for a second season. + +@video_dave somehow tricked @hannibalburess into playing along with one of his schem…" +03/07/2018,Comedians,@hannibalburess,"Florida Woman interrupts Comedy Show. + +https://t.co/jS9RSTUtiQ https://t.co/NCLNPI3VZ2" +03/07/2018,Comedians,@hannibalburess,"Drunk Florida Lady tries to have separate conversation with me during my set. + + https://t.co/5CHDwJiMgM" +03/06/2018,Comedians,@hannibalburess,Seattle Show added https://t.co/qpqfJ1F48R +03/05/2018,Comedians,@hannibalburess,On this #oscars night check out @aljackson giving a very scathing review to the movie Rudy on this episode of… https://t.co/7sd9UGltLh +06/29/2018,Comedians,@StephenAtHome,Happy to have you tag in! https://t.co/HRCAw8gNUV +06/28/2018,Comedians,@StephenAtHome,"If you're on a low carb diet you're in luck, because there ain't no way to sugarcoat this. https://t.co/HzijhzFbG5" +06/27/2018,Comedians,@StephenAtHome,"Well, sure, if you set aside everything he said, it's legal. https://t.co/JLd23FGHrR" +06/27/2018,Comedians,@StephenAtHome,Donald Trump and David Lynch: A match made in the darkest nether-scape of an abandoned malt shop while a naked woma… https://t.co/Q2KehD4G73 +06/27/2018,Comedians,@StephenAtHome,"But if Harley Davidson goes away, how will retired dentists in my neighborhood wake me up on Saturdays?" +06/27/2018,Comedians,@StephenAtHome,"There are a lot of things I want to call Neil Gorsuch, and none of them are ""Justice.”" +06/26/2018,Comedians,@StephenAtHome,"If it walks like a Muslim ban and quacks like a Muslim ban, then this Supreme Court decision is ducked up." +06/26/2018,Comedians,@StephenAtHome,There's still no announcement of what they're going to do to put these stolen kids back together with their parents. https://t.co/plHSiMKRjP +06/26/2018,Comedians,@StephenAtHome,"Sure, Trump wants to kick people out of America without due process. But look on the bright side: without due proce… https://t.co/zrGw0EUBHa" +06/26/2018,Comedians,@StephenAtHome,"Harley Davidson is going to move production to Europe to avoid tariffs. Comment dit-on ""midlife crisis?""" +06/26/2018,Comedians,@StephenAtHome,"Well, at least something good came out of this weekend. I finally figured out my band name: Filthy Canopies" +06/22/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: It's been a sad week for America but we had to ask, ""Is Trump really that bad?"" #LSSC https://t.co/fhkQ15QeX5" +06/22/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Brian Kilmeade on Fox News: ""Like it or not, these aren't our kids...it's not like [Trump] is doing this to the people…" +06/22/2018,Comedians,@StephenAtHome,The story of the week has been Donald Trump's pro-baby-snatching agenda. https://t.co/mRpnoiQk1n +06/22/2018,Comedians,@StephenAtHome,"Wow, she’s really starting to seem like the kind of person who would marry Donald Trump. https://t.co/LI6ZIjMEaT" +06/22/2018,Comedians,@StephenAtHome,Here’s an eye full of year! #LateShowFYC https://t.co/GWXAFzJrYp +06/21/2018,Comedians,@StephenAtHome,https://t.co/d6rXuYznlp +06/21/2018,Comedians,@StephenAtHome,#tbt https://t.co/hpPOz3RkzV +06/21/2018,Comedians,@StephenAtHome,Donald Trump has changed his mind and decided to keep families together. https://t.co/kSwJ53S5q4 +06/21/2018,Comedians,@StephenAtHome,"Trump signed ""something” to “keep families together.” Unfortunately, it wasn't resignation papers." +06/21/2018,Comedians,@StephenAtHome,Hey. You know Dino Stamatopoulos? He’s funny. He also has a band called Sorry About Everything. If you want to chec… https://t.co/IGeX9iNUlJ +06/20/2018,Comedians,@StephenAtHome,"Simba: Dad, wake up! Dad! +Corey Lewandowski: Womp womp" +06/20/2018,Comedians,@StephenAtHome,"When it comes to the news, let's face it: we don't want to face it. https://t.co/kKgIoCUmrB" +06/20/2018,Comedians,@StephenAtHome,"This flag just earned $130,000 https://t.co/BkSeEtNK7b" +06/19/2018,Comedians,@StephenAtHome,Here's my monologue from Monday's show: https://t.co/dtmPX4pls1 +06/19/2018,Comedians,@StephenAtHome,One thing I know for sure: no one on the right side of history has ever had to nitpick what the definition of “cage” is. +06/16/2018,Comedians,@StephenAtHome,"Paul Manafort has been ordered to jail, or as President Trump put it, “Never met the guy.”" +06/15/2018,Comedians,@StephenAtHome,https://t.co/JbPVCRuwqO +06/15/2018,Comedians,@StephenAtHome,"It's time for another installment of our long running segment ""Hillary Clinton: Impeachment Watch"" https://t.co/wnuvlpalbs" +06/15/2018,Comedians,@StephenAtHome,RT @colbertlateshow: The United States is using cruelty as a deterrent on our southern border. @StephenAtHome has something to say about it… +06/14/2018,Comedians,@StephenAtHome,Now Trump must deal with an even greater threat: Robert Mueller. https://t.co/zFIYidH0cP +06/14/2018,Comedians,@StephenAtHome,RT @colbertlateshow: TONIGHT! Scaramucci and Avenatti talk Cohen with Stephen. #LSSC https://t.co/JyEP6M5wlq +06/14/2018,Comedians,@StephenAtHome,He’s got my vote! https://t.co/e7XENAy4rM +06/13/2018,Comedians,@StephenAtHome,Yeah! https://t.co/7i4Wbvsb9p +06/13/2018,Comedians,@StephenAtHome,Yesterday we all woke up in a different world. https://t.co/xZqaTgdW6P +06/13/2018,Comedians,@StephenAtHome,Some analysts believe Kim Jong Un can actually speak fluent English. Others believe the same thing about Donald Trump. +06/13/2018,Comedians,@StephenAtHome,Here's a question I never thought I'd have to ask: does Canada have nukes? +06/12/2018,Comedians,@StephenAtHome,"Our relations with Canada have not been this bad since they stole the word ""bacon."" https://t.co/4L28Dlw31o" +06/12/2018,Comedians,@StephenAtHome,"“We will be fine!” says the man who just misspelled “missile” and “stopped."" https://t.co/GdVOt6qMvd" +06/09/2018,Comedians,@StephenAtHome,Trump made his first international visit to a hostile foreign power: Canada. https://t.co/FzOOI0LAXf +06/08/2018,Comedians,@StephenAtHome,"A bunch of racist nerds bullied Star Wars actress Kelly Marie Tran off social media. As Yoda would say, “Wrong with… https://t.co/ai7qNauQxb" +06/08/2018,Comedians,@StephenAtHome,"Donald Trump: When will people start saying, “thank you, Mr. President, for firing James Comey?” + +Struggling Bookst… https://t.co/ANIYppEqlr" +06/07/2018,Comedians,@StephenAtHome,Here's a sentence I don't often say: Donald Trump did something good. https://t.co/7KXD1jtj3g +06/07/2018,Comedians,@StephenAtHome,Calling Trump “Commander of Cheese” is the first factually accurate thing Kellyanne Conway's ever said. +06/06/2018,Comedians,@StephenAtHome,"@kumailn The end of Miller’s Crossing: “Goodbye, Leo.” +The “So you’d give the devil the benefit of law?!” scene in… https://t.co/lckZlMwuGy" +06/06/2018,Comedians,@StephenAtHome,Here's my monologue from last night's show! https://t.co/Afs7B3rHhq +06/06/2018,Comedians,@StephenAtHome,"Now that Miss America has ditched the swimsuits, I think it’s time the Pulitzer Prize dropped their wet t-shirt contest." +06/05/2018,Comedians,@StephenAtHome,Yes it is. https://t.co/NUF3g5LDZj +06/05/2018,Comedians,@StephenAtHome,Caught this unruly mob in my garden #quickbeforetheyfade https://t.co/uYgFcXnZuT +06/05/2018,Comedians,@StephenAtHome,We're back! https://t.co/zT1NcO9hjR +06/05/2018,Comedians,@StephenAtHome,"Reese Witherspoon has announced they're making ""Legally Blonde 3."" Please make it be about Elle Woods joining Mueller's team." +06/05/2018,Comedians,@StephenAtHome,"Fine, Donald Trump gets to pardon himself, but only if he can spell ""Special Counsel"" on the first try." +06/03/2018,Comedians,@StephenAtHome,"Sunday Cobbler, anyone? https://t.co/a1Z5HZIAb0" +06/02/2018,Comedians,@StephenAtHome,"@AndyRichter 1. Machine sounds, large metal squeaks, take 1 2. El… https://t.co/hnqB6liXyg" +05/31/2018,Comedians,@StephenAtHome,"@labruna a bee +staggers out +of the peony +~Basho" +05/31/2018,Comedians,@StephenAtHome,"@PONYPONY Far as I know, just the movies" +05/30/2018,Comedians,@StephenAtHome,There’s a fat-faced peony in the garden. Share your #BestBlossom https://t.co/QcRJ4u9Ojz +05/30/2018,Comedians,@StephenAtHome,@edmcellig18 Yes +05/30/2018,Comedians,@StephenAtHome,Get back to work! https://t.co/RAohbn3jzF +05/25/2018,Comedians,@StephenAtHome,Hey @realdonaldtrump: https://t.co/tuSFBxFRT6 +05/24/2018,Comedians,@StephenAtHome,"South Korean official response: “We are attempting to make sense of what, precisely, President Trump means.” + +Welcome to the fucking club." +05/24/2018,Comedians,@StephenAtHome,"Not so fast, Deep State. https://t.co/Z5pqrqUuoI" +05/24/2018,Comedians,@StephenAtHome,Say hello to the NFL's newest ref! https://t.co/qf1YMSdYcQ +05/23/2018,Comedians,@StephenAtHome,How did these people get under my desk? https://t.co/d8cv0drs0E +05/23/2018,Comedians,@StephenAtHome,"Tonight’s Late Show features a special appearance by Jon Stewart. But it's a surprise, so don’t tell him!" +05/23/2018,Comedians,@StephenAtHome,"Trump aides write his tweets with bad punctuation to match the President's style. Well, at least there's not grammar Nazis." +05/22/2018,Comedians,@StephenAtHome,@MovieLeagueMike @jenspyra Sounds good to me. https://t.co/6kMYVX7sQc +05/22/2018,Comedians,@StephenAtHome,The White House is determined to stop leaks at all costs. https://t.co/MYv0z8yCBY +05/18/2018,Comedians,@StephenAtHome,RT @colbertlateshow: The Mueller investigation is a year old and we have the perfect gift to celebrate. #LSSC https://t.co/aledtqlgoI +05/18/2018,Comedians,@StephenAtHome,Last night's show is up now! https://t.co/Cy7mBbER6u +05/17/2018,Comedians,@StephenAtHome,What would a jury of Donald Trump's peers look like? https://t.co/A7SSiqZ49B +05/17/2018,Comedians,@StephenAtHome,"Trying to understand why Kim Jong Un’s threatening to break off talks with the US. Did Trump cheat with a younger, hotter Korea?" +05/17/2018,Comedians,@StephenAtHome,"The White House must be upset about the Trump Tower transcripts coming out. Especially Mike Pence, who's uncomforta… https://t.co/0Oq5Ct9iCu" +05/17/2018,Comedians,@StephenAtHome,'Pop Quiz' With Jamie & Corinne Foxx https://t.co/U3A68F1c5S via @YouTube +05/17/2018,Comedians,@StephenAtHome,Tonight! #LSSC https://t.co/cKWV6DPhuG +05/16/2018,Comedians,@StephenAtHome,11:00- Yanny again. +05/16/2018,Comedians,@StephenAtHome,"A plastic bag was found at the bottom of the world’s deepest ocean trench. Hey scientists, while you’re down there,… https://t.co/CJQfUkDWvc" +05/16/2018,Comedians,@StephenAtHome,Tonight! Lighthearted high jinks with Deadpool! (Seen here strangling Vanisher.) @deadpoolmovie #LSSC #hear https://t.co/ButMgmBy7o +05/16/2018,Comedians,@StephenAtHome,5:30 - Yanny 9:30- Laurel What...is...happening? +05/16/2018,Comedians,@StephenAtHome,Just a regular ol’ Tuesday night with @iamjamiefoxx ! #LSSC https://t.co/kjb8TscZYS +05/15/2018,Comedians,@StephenAtHome,My monologue from Monday's show is up now! https://t.co/gPRQoMXm2N +05/15/2018,Comedians,@StephenAtHome,"When Trump and Hannity talk on the phone before bed each night, who do you think is the first to say, ""No you hang up first!”" +05/15/2018,Comedians,@StephenAtHome,"If all sports gambling is legal, what’s gonna stop Trump from using that almanac he stole from Marty McFly?" +05/13/2018,Comedians,@StephenAtHome,"Some things need no explanation. Happy Mother’s Day, @mindykaling https://t.co/AsugMb2xRX" +05/11/2018,Comedians,@StephenAtHome,Boston Dynamics’ new running robot is terrifying! Imagine a bleak future where we'll be forced to listen to robots… https://t.co/TNZfjnz1fK +05/11/2018,Comedians,@StephenAtHome,It's nice when you see good things happen in Trump's America. https://t.co/PKXxZTJXEL +05/10/2018,Comedians,@StephenAtHome,My monologue from Wednesday's show is up now! https://t.co/C9Rtn4Q0yN +05/10/2018,Comedians,@StephenAtHome,Feels like we haven't heard from Jared Kushner in a while. Are we sure a large bird didn't grab him? +05/09/2018,Comedians,@StephenAtHome,"After years of saying he was going to do it, he did it. https://t.co/WPv3HTI9zf" +05/08/2018,Comedians,@StephenAtHome,"Yes, indeed! Thank you, @CSiriano !!! https://t.co/yeZZN0SUUa" +05/08/2018,Comedians,@StephenAtHome,Two altar boys ready for the #MetGala! https://t.co/yH4T9QnRU8 +05/08/2018,Comedians,@StephenAtHome,"Speaking of natural disasters, Rudy Giuliani... https://t.co/BofNS4A3F1" +05/08/2018,Comedians,@StephenAtHome,Roy Moore and Don Blankenship. A threat to minors and miners alike. +05/05/2018,Comedians,@StephenAtHome,Happy Cinco de Mayo Eve! Don't forget to leave out a margarita and chips for Father Fiesta! +05/05/2018,Comedians,@StephenAtHome,NBC News has corrected their correction: Michael Cohen’s “phone” turned out to be a stale Pop Tart. +05/05/2018,Comedians,@StephenAtHome,I plan to celebrate #StarWarsDay by having roast porg for dinner. +05/04/2018,Comedians,@StephenAtHome,It's time for another edition of #StormyWatch! https://t.co/1CNIiVzBOL +05/04/2018,Comedians,@StephenAtHome,What if the FBI finds that Michael Cohen mostly just uses his phone to call his 15 other phones? +05/04/2018,Comedians,@StephenAtHome,"Make sure to change your Twitter password. And, if you know it, Kanye’s." +05/04/2018,Comedians,@StephenAtHome,Tonight! May the best Rudy win! https://t.co/bqratSutlP +05/03/2018,Comedians,@StephenAtHome,My monologue from last night's Late Show is up now! https://t.co/abIiX4twcV +05/03/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Today is huge because we have @StormyDaniels attorney @MichaelAvenatti joining our #StormyWatch and you got 5 mins unt… +05/03/2018,Comedians,@StephenAtHome,James Comey says he once sang Beyoncé during an FBI briefing. I guess it's not easy discussing Trump's stay at the… https://t.co/j8SIii1aUc +05/03/2018,Comedians,@StephenAtHome,"Goodbye, Cambridge Analytica! We hardly knew ye, though ye knew everything about us." +05/03/2018,Comedians,@StephenAtHome,At least now Ty Cobb has more time for his true passion: tossing gumdrops and candy canes from a hot air balloon. https://t.co/QI6hByHqL7 +05/02/2018,Comedians,@StephenAtHome,RT @Zac_Posen: Excited to have the new The Late Show merchandise in the #ZacPosen showroom! Thanks for the underwear @colbertlateshow 😜 Get… +05/02/2018,Comedians,@StephenAtHome,If Trump sees the questions in advance he'll cheat! https://t.co/3TmAv4qBrY +05/02/2018,Comedians,@StephenAtHome,Facebook is launching an online dating feature. Which is different from their current online dating feature of show… https://t.co/nSyEVpV2Yl +05/02/2018,Comedians,@StephenAtHome,"Mueller apparently has 49 questions he wants to ask Trump. 50, if you count, ""Seriously, what does it mean to 'move on her like a bitch’?""" +05/01/2018,Comedians,@StephenAtHome,Here's my monologue from Monday's Late Show: https://t.co/RGX1SQKOAY +05/01/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: TONIGHT: The White House is running very smoothly despite news that Trump's chief of staff called him an ""idiot"" and ""…" +04/28/2018,Comedians,@StephenAtHome,I just saw @DisobedienceMov produced and starring the brilliant Rachel Weisz. It’s a beautiful and challenging stor… https://t.co/Ug9o56KwVW +04/28/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Our buddy #MandyPatinkin just released an album, recorded with his buddy producer/pianist Thomas Bartlett. It's Mandy'…" +04/28/2018,Comedians,@StephenAtHome,Will I understand Infinity War if I saw only 17 of the previous movies? +04/28/2018,Comedians,@StephenAtHome,I don’t remember ever being this happy in my 20s... #oldheadshotday https://t.co/XKpx1zIx3A +04/27/2018,Comedians,@StephenAtHome,"“This is a “lure."" Normally I just use free condos or offer an appearance on the Apprentice.” https://t.co/hrdg4R2Uo4" +04/27/2018,Comedians,@StephenAtHome,RT @colbertlateshow: These as-worn-on-TV #LSSC undies are up for grabs on @eBay right now! Proceeds benefit @ETAForg. Thanks @Zac_Posen for… +04/27/2018,Comedians,@StephenAtHome,Donald Trump called in to Fox & Friends yesterday... https://t.co/WR00ghfG64 +04/27/2018,Comedians,@StephenAtHome,#DraftDay is trending so I assume Donald Trump is somewhere faking a limp. +04/26/2018,Comedians,@StephenAtHome,My monologue from Wednesday's show is up now: https://t.co/vA1SnAS8pe +04/26/2018,Comedians,@StephenAtHome,@HelloCullen @ArielDumas @anylaurie16 Wow +04/25/2018,Comedians,@StephenAtHome,"@hwinkler4real Thank you for being here, Henry! It was a Joy!" +04/25/2018,Comedians,@StephenAtHome,Bienvenue a Ratatouille! https://t.co/yzGWrEaWTy +04/25/2018,Comedians,@StephenAtHome,.@HankAzaria New Late Show in five minutes. Twitter explosion in act three. +04/25/2018,Comedians,@StephenAtHome,"Because... he's guilty? +https://t.co/iXSGdsZJ3a" +04/24/2018,Comedians,@StephenAtHome,The leader of the free world tweeted 25 times last weekend... https://t.co/4aZ967B5rr +04/24/2018,Comedians,@StephenAtHome,"Trump: ""There were gooooood boyyyyyyys on both sides."" +https://t.co/YCGWVERRNQ" +04/24/2018,Comedians,@StephenAtHome,"Congratulations to the new royal baby! He has his mother's eyes, and his father's hair." +04/19/2018,Comedians,@StephenAtHome,James Comey made some new friends at Late Show! https://t.co/R5wtlFvtY6 +04/18/2018,Comedians,@StephenAtHome,Watch my Tuesday monologue here! https://t.co/YOx2KhaRvd +04/18/2018,Comedians,@StephenAtHome,There was too much Comey to fit in the show! Hard choices where to cut. So here’s the whole damn thing. https://t.co/0eeL8pN6TO +04/18/2018,Comedians,@StephenAtHome,"Not saying that Trump has Hannity in the palm of his hand, but... https://t.co/ctJkjI62RW" +04/18/2018,Comedians,@StephenAtHome,@OfficialJLD Some of us know how to rock an asymmetrical hemline. https://t.co/iL14XCQJte +04/18/2018,Comedians,@StephenAtHome,High level summit! Tonight! #WuTangForever #Comey https://t.co/EjUakcIqjl +04/18/2018,Comedians,@StephenAtHome,"Stormy Daniels said that the mystery man who threatened her didn’t have a weapon, but I disagree: You could cut gla… https://t.co/HMt4flxlCh" +04/17/2018,Comedians,@StephenAtHome,"Always great talking to you, Father! https://t.co/jfl2g194aa" +04/17/2018,Comedians,@StephenAtHome,Ongoing troubles for the man who paid off Stormy Daniels... https://t.co/UHZuD6qfMD +04/17/2018,Comedians,@StephenAtHome,"NOT THE MOST PRESSING THING ON YOUR TO-DO LIST, GUYS! https://t.co/p8ZXh7BfrV" +04/17/2018,Comedians,@StephenAtHome,Funny how when James @Comey writes a book about the 2016 election and how he lost his dream job and drank wine nobo… https://t.co/8dCXooI0LS +04/17/2018,Comedians,@StephenAtHome,"Firing Comey last May must be Trump’s biggest regret, since it means he can’t fire him now." +04/17/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Sneak peek of 'Hannity' tonight... https://t.co/qud8et2cba +04/16/2018,Comedians,@StephenAtHome,Can't wait! https://t.co/mHxKlndExG +04/13/2018,Comedians,@StephenAtHome,"RT @SarahHuckabee: When you're attacking FBI agents because you're under criminal investigation, you're losing https://t.co/SIoAxatCjp" +04/13/2018,Comedians,@StephenAtHome,I’ve got a date for the weekend https://t.co/7pSayaJYcB +04/13/2018,Comedians,@StephenAtHome,Stop the presses! https://t.co/jY18IwmDvM +04/13/2018,Comedians,@StephenAtHome,ARE YOU MY SECRET LOVE CHILD I PAID A DOORMAN TO KEEP QUIET?! https://t.co/cL2irm9c2L +04/13/2018,Comedians,@StephenAtHome,"Chivalry isn't dead! +https://t.co/qzqsGepuYx" +04/13/2018,Comedians,@StephenAtHome,"Take it from me, @Comey, it is! https://t.co/X83xa2AWaW" +04/12/2018,Comedians,@StephenAtHome,The President is not happy... https://t.co/kEfHt0Ukz8 +04/12/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Stephen and Jon are writing a song in honor of Paul Ryan. What do you think of it so far? #RehearsalRewind https://t.c… +04/12/2018,Comedians,@StephenAtHome,"When you have a warrant, they let you do it. +https://t.co/7hQD40bcul" +04/12/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Grab your tickets now for Martin Short & Steve Martin, on the road together in their hilarious show 'An Evening You Wi…" +04/12/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: In honor of the House Speaker's decision not to seek reelection, #LSSC presents this look back at Paul Ryan's most cou…" +04/11/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Cookie's Carpool #NationalPetDay #LSSC https://t.co/VayEAqQdGy +04/11/2018,Comedians,@StephenAtHome,My friends @MontclairFlim are putting the finishing touches on their Film and Education Center. Please consider mak… https://t.co/iCf8D3dVKj +04/11/2018,Comedians,@StephenAtHome,"""The porn is on the President"" https://t.co/J3dXUnslGY" +04/11/2018,Comedians,@StephenAtHome,Truth https://t.co/71rDSIL5Oo +04/11/2018,Comedians,@StephenAtHome,Almost feel bad for Zuckerberg. There’s no way he left that room full of old people without having to set up their wifi. +04/10/2018,Comedians,@StephenAtHome,"Hey look, we're back! https://t.co/lj4GQREpEI" +04/10/2018,Comedians,@StephenAtHome,Trump's lawyer got raided which means Trump's lawyer's lawyer should probably play it safe and get himself a lawyer. https://t.co/ZNEDQPh6CQ +04/09/2018,Comedians,@StephenAtHome,Carthago delenda est +04/03/2018,Comedians,@StephenAtHome,RT @MikeVanderbilt: RT these photos of character actor Mike Hagerty. https://t.co/y7zhSW6aIB +04/03/2018,Comedians,@StephenAtHome,"Reminder: @BandFlaw lays it all on the Line tomorrow @Spicolis Waterloo, Iowa (hope they play Payback) !!!!!!!Flaw!!!!!!! +#DeathGrind" +04/01/2018,Comedians,@StephenAtHome,Jinx! You owe me a Coke. https://t.co/bNitNTFAkt via @youtube +03/30/2018,Comedians,@StephenAtHome,Burn one with Kacey Musgraves! Kacey Musgraves Performs 'Slow Burn' https://t.co/Ei9Xmv6xDH via @YouTube +03/30/2018,Comedians,@StephenAtHome,"""Jefferson Beauregard Sessions III."" Just going to leave this here for anyone who needs to guess his name or he get… https://t.co/OE7JILfvzW" +03/30/2018,Comedians,@StephenAtHome,"I feel better already! Thanks @mbsings +John Bolton's Terrifying Ideas Sung By Michael Bolton https://t.co/qJhSsfBIAS via @YouTube" +03/30/2018,Comedians,@StephenAtHome,The whole damn thing! https://t.co/mSF2N0w8Rb +03/30/2018,Comedians,@StephenAtHome,The busiest person at the White House is whoever has to update the office contact list. +03/29/2018,Comedians,@StephenAtHome,"RT @BandFlaw: Playing Live: Waterloo, IA - Apr 3 at Spicoli’s https://t.co/ye1C1t5lEA" +03/29/2018,Comedians,@StephenAtHome,"Dana was very nice to credit me last night, but the Brokaw/Ford Obituary sketch was written by Robert Smigel, Louis… https://t.co/WLoTe7mILM" +03/29/2018,Comedians,@StephenAtHome,I am not making this up... https://t.co/b1iOXbaygp +03/29/2018,Comedians,@StephenAtHome,"He escaped arrest but still got sent to his room with no screen time. +https://t.co/EKXYJhG0GT" +03/29/2018,Comedians,@StephenAtHome,"Bolton seems nice, but his mustache is unhinged. @danacarvey stopped by, too! https://t.co/s0m7JBRV0D" +03/28/2018,Comedians,@StephenAtHome,The President has a new nickname! https://t.co/fKtPb6xWdj +03/28/2018,Comedians,@StephenAtHome,"The military's responsibilities according to Trump: +1. build walls +2. parades! +3. excuse bone spurs +4. war & misc." +03/28/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Stephen Colbert invites his guest #SeanPenn to play #LSSC's newest game, where guests are asked to answer completely r…" +03/28/2018,Comedians,@StephenAtHome,"I know Mueller’s busy but… +https://t.co/0InGMZDM2M" +03/27/2018,Comedians,@StephenAtHome,Looking for Monday's Late Show? Start here! https://t.co/MAFggw6mQQ +03/27/2018,Comedians,@StephenAtHome,"“Also, don't sleep with a porn star who's way smarter than you.” +https://t.co/cFCbMHrnAP" +03/26/2018,Comedians,@StephenAtHome,I always get excited when there’s a @thetrevorpotter sighting! @CampaignLegal is working for all Americans- (D) and… https://t.co/UKjN6LoxoB +03/25/2018,Comedians,@StephenAtHome,"Take that, Sauron!" +03/24/2018,Comedians,@StephenAtHome,"Hey @realdonaldtrump I thought you said you'd run TOWARD the kids, not away from them! https://t.co/7hdX2MxX3b" +03/23/2018,Comedians,@StephenAtHome,Who would win in a fistfight? +03/22/2018,Comedians,@StephenAtHome,"They’re not imaginary, @mindykaling! They’re “Maybe Coming Soon!” Fingers crossed! https://t.co/hXRnd9YYWp" +03/22/2018,Comedians,@StephenAtHome,"@JakePlunkett Will you ever truly be known, even by those you love the most?" +03/21/2018,Comedians,@StephenAtHome,Did you catch last night's monologue? https://t.co/M1Y8PlxgAB +03/21/2018,Comedians,@StephenAtHome,"D.T. phone home. +https://t.co/m4YU0HONqe" +03/20/2018,Comedians,@StephenAtHome,My monologue from Monday's show is here! https://t.co/Loa4VwH4PU +03/20/2018,Comedians,@StephenAtHome,"""Cambridge Analytica"" sounds like the scientific name for ""John Oliver.""" +03/20/2018,Comedians,@StephenAtHome,"Baseball season is only ten days away, which means we’ll soon be able to measure the longevity of Trump’s cabinet members in innings." +03/20/2018,Comedians,@StephenAtHome,"Congrats to Vladimir Putin on winning his first election since November 8, 2016!" +03/20/2018,Comedians,@StephenAtHome,"Oh, we know there's no ""plan.” +https://t.co/QOsKcN6l19" +03/17/2018,Comedians,@StephenAtHome,This “happy ending” version of Danny Boy is simultaneously one of the most beautiful and most stupid things I ever… https://t.co/1iR0jJf6es +03/17/2018,Comedians,@StephenAtHome,Never https://t.co/BmxBTqRLfD +03/15/2018,Comedians,@StephenAtHome,Grace! https://t.co/wAVCaT8yL4 +03/15/2018,Comedians,@StephenAtHome,Help us raise some $ for Art Therapy! https://t.co/29zenDVnHH +03/15/2018,Comedians,@StephenAtHome,True. Honest but Weird. So happy with the weirdness. In tonight’s Act 2. Starts in about 5 min. https://t.co/OI6UkQcG4l +03/15/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: TONIGHT: #PaulGiamatti talks the new season of @SHO_Billions, #SeanBean from @theoathcrackle, and a musical performanc…" +03/14/2018,Comedians,@StephenAtHome,"RT @NorthwesternU: NU EMERGENCY: Person with gun on Evanston campus. If on campus, seek shelter in safe place and stay until further notice…" +07/01/2018,Comedians,@billburr,"RT @allthingscomedy: Sad news today as we learned from @DougStanhope of the passing of ""Unbookable"" member Sean Rouse. A funny man gone too…" +06/29/2018,Comedians,@billburr,Ole freckles has a couple of lines in this talkie: https://t.co/hfT3qnFYTV +06/29/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast is up!! + +I interview Dave Elitch and apologize to The Specials. @thespecials… https://t.co/CZRmmbCUBW" +06/27/2018,Comedians,@billburr,RT @reuvenmoshe: @billburr @NHLBruins NHL’s first black player Willie O’Ree earns Hockey Hall of Fame induction /via @globeandmail https… +06/27/2018,Comedians,@billburr,Motorcyle doc from the 1980's: The Undrideables https://t.co/jC21IticWu These guys were fucking lunatics. +06/26/2018,Comedians,@billburr,People of Philly! Go check out the hilarious and always well dressed @_TomRhodes this week June 28-30th @punchlinephilly +06/25/2018,Comedians,@billburr,@davebrook I saw the Specials +06/25/2018,Comedians,@billburr,"the Monday Morning Podcast is up! + +I ramble about the great Vinnie Paul, music festivals, and hair transplant scars… https://t.co/zk1RCQLBad" +06/25/2018,Comedians,@billburr,RT @Danny_PJones: Jesuuuuuuuus this is terrifying @billburr https://t.co/qYL2ujE2D0 +06/25/2018,Comedians,@billburr,RT @damianfet: @billburr it happened. I'm in the garage and she brings that. Best day ever. @Ewla1986 #bestdayever https://t.co/MgiI95Z8l0 +06/25/2018,Comedians,@billburr,Fuck! I’m the worst! https://t.co/iXlQoDGpYQ +06/25/2018,Comedians,@billburr,"RT @TheMeltingPat: @billburr may have convinced me to get @butcherbox: ""If this had been around, there would be no Jeffrey Dahmer."" Gold @t…" +06/24/2018,Comedians,@billburr,RT @CoachNewman55: @billburr these animals are invading baseball games https://t.co/e85b8IR0Aa +06/24/2018,Comedians,@billburr,"Baltimore! Late show added at The Modell Lyric, October 18th. https://t.co/VPa9AMByAM" +06/23/2018,Comedians,@billburr,"RT @F1: Brollies down ✅ +Skies clearing ✅ + +Qualifying is coming your way! 🙌 + +#FrenchGP 🇫🇷 #F1 https://t.co/iTqo9swUkZ" +06/23/2018,Comedians,@billburr,"RT @sandrobot_: Tarantinos Cast 🔥 + +- Al Pacino +- Leo DiCaprio +- Brad Pitt +- Margot Robbie +- Timothy Olyphant +- Luke Perry +- Damian Lewis +-…" +06/23/2018,Comedians,@billburr,"RT @GarrisonToons: Martin Short in a brilliantly executed visual musical gag. + +Short silly-sweet. Perfect on 5 levels. + +@billburr @joerogan…" +06/23/2018,Comedians,@billburr,Devestated to hear the news of the passing of the great Vinnie Paul. Such an incredible musician and an even nicer… https://t.co/KhdXEB4bRI +06/21/2018,Comedians,@billburr,No way! https://t.co/5lycVGH9tU +06/21/2018,Comedians,@billburr,#ThursdayThoughts +06/21/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about flying home hungover, movie snobs, and Guns N… https://t.co/SC2SXTAMq2" +06/21/2018,Comedians,@billburr,"Charleston, SC!! Late show added at the Gaillard Center on September 16th. https://t.co/FofWdLguiS" +06/21/2018,Comedians,@billburr,"Houston, TX!! Late show added at the Revention Music Center July 27th. https://t.co/NIW8DWpNul" +06/20/2018,Comedians,@billburr,Thanks! https://t.co/GM1eISXJ6D +06/18/2018,Comedians,@billburr,Download the hilarious @RichVos roast here!... https://t.co/A1X2zwG3jX +06/18/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about his last days in Paris, Le Mans, and grounded sixteen year olds. https://t.co/2bpQW6CG8G" +06/18/2018,Comedians,@billburr,RT @joederosacomedy: The Roast Of @RichVos is available NOW. Go buy… https://t.co/U6W0JoHu8W +06/17/2018,Comedians,@billburr,"RT @joebartnick: Going to see Mr Rodgers movie , its PG -13 ?? +Does he tell Mr McFeely to go F himself??" +06/17/2018,Comedians,@billburr,RT @denisleary: My daughter knows how to melt my heart: https://t.co/xX3yr4Tjr0 +06/17/2018,Comedians,@billburr,"RT @SHO_DyingUpHere: When opportunity knocks, will you answer? #ImDyingUpHere #Showtime https://t.co/Q5ARuAFqgA" +06/17/2018,Comedians,@billburr,"RT @peteleetweets: I just woke up to the best Father’s Day gift in the world. +And that gift is that I’m not a dad." +06/17/2018,Comedians,@billburr,RT @TheComedyStore: Happy Father's Day Sammy and to all the dads out there! #thecomedystore #fathersday https://t.co/4dQdoNOzep +06/16/2018,Comedians,@billburr,Been watching Grizzy and the Lemmings. It’s incredible! https://t.co/VjYQNWPtDc +06/16/2018,Comedians,@billburr,R.I.P. Matt “Guitar” Murphy https://t.co/9Z1IFUpSBB +06/15/2018,Comedians,@billburr,@nshaner82 @thibsnation Those were draft picks. They didn’t all rent a yacht over the summer and then decide to pil… https://t.co/GDuP3HsBEc +06/15/2018,Comedians,@billburr,@nshaner82 @ajayi1987 @thibsnation Who did the Bulls bring in? Phil Jackson was just a former Knick turned coach wh… https://t.co/mXyEvN0Qm5 +06/15/2018,Comedians,@billburr,"RT @TheSoftServed: @billburr here is some evidence that us @theMMPodcast listeners do, in fact, listen to the ads! Saved me some cash on @t…" +06/14/2018,Comedians,@billburr,"RT @funnyordie: Jerry Seinfeld and @iamCardiB sit down with Zach Galifianakis for an interview without coffee, cars, or money moves. https:…" +06/14/2018,Comedians,@billburr,RT @bertkreischer: Hey @Uber why do I get charged 10 dollars to cancel a driver who isn’t picking up me or his phone??? https://t.co/SBnVby… +06/14/2018,Comedians,@billburr,RT @bonniemcfarlane: Um i believe that’s called the McFarlane https://t.co/m0c0urQmM5 +06/14/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about eating baguettes, speaking French, and kids l… https://t.co/imrOSJEq1h" +06/13/2018,Comedians,@billburr,Hahahaha!!!! https://t.co/8o75xwJQhS +06/12/2018,Comedians,@billburr,RT @WORLDSTAR: Robert Frank had a special guest during his Sunday night rant about LeBron James! 💪😳😂 @RobertFrank615 @SmoothSmith8 https://… +06/12/2018,Comedians,@billburr,Nice! https://t.co/bQvTr5im9i +06/12/2018,Comedians,@billburr,@thibsnation KD & OKC took you guys to a game 7 the year before and was the Warriors biggest obstacle to the finals… https://t.co/7HoQP2Y7y8 +06/12/2018,Comedians,@billburr,RT @thibsnation: @billburr Before you keep hating on the Warriors... They drafted 3 of those guys. So they got Durant. Who cares. +06/12/2018,Comedians,@billburr,@osheagt Does it send an SOS call once you’re out to sea or do you have to paddle back in? +06/11/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! + +I ramble about the French Open, evil mergers, and how to treat the wait staff. + +https://t.co/jcpJPfz26B" +06/11/2018,Comedians,@billburr,RT @Starting9: This man has life figured out https://t.co/AxyGs387i8 +06/11/2018,Comedians,@billburr,RT @ChristinaP: NYC almost sold out. San Diego too! Tix at https://t.co/2TPFLUZDnO https://t.co/mAtx3bubNK +06/11/2018,Comedians,@billburr,@StevenEYates Haha! +06/10/2018,Comedians,@billburr,"My wife untweeted my retweet because I didn’t leave a comment. So: “Of all the jerk faces in my life, you are my f… https://t.co/tCKBt0YlHv" +06/10/2018,Comedians,@billburr,"RT @bertkreischer: ALABAMA – I’ll be performing in Birmingham at the Stardome June 14, 15, & 16th + +Get your tickets here: +https://t.co/R5fb…" +06/10/2018,Comedians,@billburr,Thank you to everyone at ATC! https://t.co/4EdOXrqTbS +06/10/2018,Comedians,@billburr,@DJBazMati Haha +06/09/2018,Comedians,@billburr,@OscarRobertsUK Nice to see you didn’t get jumped! Thanks for coming out to the show! +06/09/2018,Comedians,@billburr,RT @mikepriceinla: Can LeBron join the Mets? +06/08/2018,Comedians,@billburr,"RT @o2academynewc: If you’re wondering who comedian @dougstanhope is after watching @frankieboyle's #BBC2 #NewWorldOrder, this is him and h…" +06/08/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about my performance at Royal Albert Hall. + +https://t.co/ei2oJdPXHe" +06/08/2018,Comedians,@billburr,"RT @NBCSCapitals: Hey @MGMResortsIntl remember when you promoted that whole ""#nocaps"" thing and then the @Capitals won and literally parade…" +06/08/2018,Comedians,@billburr,RT @Capitals: SHOW US YOUR TIGER EMOJIS!! #ALLCAPS #StanleyCup https://t.co/TBoia9Gb6O +06/08/2018,Comedians,@billburr,Congratulations to the @Capitals Stanley Cup championship! So great to see that organization and fan base finally r… https://t.co/aNoQqsBEC8 +06/08/2018,Comedians,@billburr,RT @Capitals: THE WASHINGTON CAPITALS ARE THE 2018 #STANLEYCUP CHAMPIONS! #ALLCAPS https://t.co/QNrMYcleBi +06/08/2018,Comedians,@billburr,RT @NickDiPaolo: Getting there guys....be with you soon. https://t.co/XhO0yWRk5O +06/08/2018,Comedians,@billburr,"RT @joerogan: MIT fed an AI data from Reddit, and now it thinks of nothing but murder https://t.co/QFb2UuKiEA via @Verge" +06/08/2018,Comedians,@billburr,RT @iFisforfamily: A few of the Voices behind F Is For Family @billburr @LauraDern @justinlong @DebiDerryberry @HaleyReinhart @FIFFNetflix… +06/07/2018,Comedians,@billburr,"RT @AJCassavell: The video is in, and it's glorious. Gabby DiMarco of San Diego, take a bow. https://t.co/CSbdAaValD" +06/07/2018,Comedians,@billburr,That's wheah I staaaaah-ED! https://t.co/yJvg1UA9nb +06/07/2018,Comedians,@billburr,Great meeting you last night. You killed it! https://t.co/SW4UqvU5H2 +06/06/2018,Comedians,@billburr,RT @shoegalshell: @dobcomedy was hilarious last night opening for @billburr ...... any Cork gigs coming up? +06/05/2018,Comedians,@billburr,Stand up comedian and bread baker @tompapa has written a hilarious new book! You can get a copy here: https://t.co/E2shnOZI4s +06/05/2018,Comedians,@billburr,RT @KamalaHarris: It is outrageous that a United States Senator would be barred from entering a federal facility while trying to check on t… +06/05/2018,Comedians,@billburr,RT @jerryferrara: July 1st is coming quick! #PowerTV @Power_STARZ https://t.co/o2SQFTp8XA +06/05/2018,Comedians,@billburr,"RT @barstoolsports: Just because you turned your tuxedo shirt into a soaking, transparent body condom doesn't mean you were on ecstasy +http…" +06/05/2018,Comedians,@billburr,"RT @ToddGlass: COMING TO THESE CITIES...CHECK MY WEBSITE TO SEE WHERE + +JUNE: +SPRINGFIELD, MO +BENTONVILLE, AR +HOPKINS, MN + +JULY: +HUNTINGBEAC…" +06/05/2018,Comedians,@billburr,RT @joebartnick: Vegas is hitting more pipes in Washington than Marion Berry +06/05/2018,Comedians,@billburr,RT @CormacComedy: Good laugh in the Comedy Shed tonight. Then @billburr shows up in the @ComedyCrunch! Unbelievable Jeff. #comedy #dublin h… +06/04/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about the Capitals, recliners, and the Irish News. https://t.co/k9U2NnGh03" +06/04/2018,Comedians,@billburr,@Breezy4sheezee @PETMpodcast @theMMPodcast @DanicaPatrick @allthingscomedy I’ll go out on a limb and say you’re projecting. Lol +06/02/2018,Comedians,@billburr,RT @MotoGP: You won't see a faster crash than this in #MotoGP!!! 😱😱😱 https://t.co/migPHdL898 +06/01/2018,Comedians,@billburr,RT @allthingscomedy: Tonight! @TinFoilHatCast is live in San Francisco @CobbsComedyClub with @samtripoli @eddiebravo @trezmala & Off the Gr… +06/01/2018,Comedians,@billburr,@Oscarbonill91 It’s all good until he locks his arm and then rolls with it underneath his body. That dude does a gr… https://t.co/YPxpXI3muU +06/01/2018,Comedians,@billburr,RT @MM_Center: Today is the first day of sale for @billburr LIVE and tickets are selling FAST!! Get your tickets before the show is SOLD OU… +06/01/2018,Comedians,@billburr,Brutal. https://t.co/BP7TpvjnDx +05/31/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast is up!! I ramble about Vegas pregame show, his temper, and nobody having the… https://t.co/93FTD7ulSK" +05/31/2018,Comedians,@billburr,RT @barstoolsports: STONEWALLED https://t.co/bjqxR2MqKm +05/31/2018,Comedians,@billburr,Very excited to be a small part of the amazing TJ Hooker reboot! https://t.co/BlHah8qIW6 #MMPodcast +05/29/2018,Comedians,@billburr,Fair enough https://t.co/0up3YyPlMO +05/29/2018,Comedians,@billburr,I think Broadway picked up a few new tricks there. https://t.co/Ko7FjTmpA6 +05/29/2018,Comedians,@billburr,"RT @JarrettBellini: @billburr I'm told it's hockey. +But I beg to differ." +05/29/2018,Comedians,@billburr,WTF am I watching? #VegasKnightsIntro +05/28/2018,Comedians,@billburr,RT @Jim_McMenamin: @billburr @theMMPodcast Wasn't Korean Foreskins a punk band from the late 70s/early 80s ? +05/28/2018,Comedians,@billburr,"RT @mamabakes3: @billburr @theMMPodcast A Babushka is a Russian or Polish old lady, but also a term of endearment for Grandma. https://t.co…" +05/28/2018,Comedians,@billburr,@ocrcove Lies! +05/28/2018,Comedians,@billburr,"the @theMMPodcast is up!! + +I ramble about losing Game 7, Hollywood vanity, and Korean Foreskins. + +https://t.co/t1g2Z5950i" +05/28/2018,Comedians,@billburr,@OldManPaLive Ok since you were a team we’ve won 6. Goidnighy +05/28/2018,Comedians,@billburr,@MarkdFL Take all those away and we STILL got 6. You have one title the Rock and Roll Hall of Fame. +05/28/2018,Comedians,@billburr,@Aaron_Torres @SGSFOX Jordan won 6 titles with Luc Longly and Bill Cartwright at Center. He completely changed the… https://t.co/MPDPcTOvYc +05/28/2018,Comedians,@billburr,You might want to go to a Cavs home game and look up at your barren rafters that are filled with division title and… https://t.co/9XTOtA2JNz +05/28/2018,Comedians,@billburr,@plkubiak Anyone but the Warriors is how I’m looking at it. +05/28/2018,Comedians,@billburr,@OCBeachDiamond Kobe wouldn’t have won with that team. He would’ve bitched to ownership the whole year. Kobe played… https://t.co/DGAXiXFrHH +05/28/2018,Comedians,@billburr,"RT @jrobhaha: @billburr When you go hard, but not like hard hard" +05/28/2018,Comedians,@billburr,I love your Game 7 face with the seatbelt on. https://t.co/7qfKl0x8Uc +05/28/2018,Comedians,@billburr,Fuckin LeBron James. Unreal. Funny thing is people will still trash him. Congrats to the Cavs. Future is bright for the Celtics. +05/27/2018,Comedians,@billburr,"RT @joerogan: US lost track of 1,500 undocumented children, but says it's not 'legally responsible' https://t.co/gheRqrlz7j" +05/27/2018,Comedians,@billburr,@mike_emerson @danielricciardo Ahhh sorry man. +05/27/2018,Comedians,@billburr,Congratulations to @danielricciardo on his first win at Monaco! +05/26/2018,Comedians,@billburr,Haha! https://t.co/4LHKDzbl33 +05/26/2018,Comedians,@billburr,Love that he’s doing a podcast! https://t.co/anhmzA5KQS +05/26/2018,Comedians,@billburr,"RT @PETMpodcast: Not sure how many of y'all listen to @billburr @theMMPodcast, but his Thursday edition this week (dude does two shows a we…" +05/25/2018,Comedians,@billburr,"thanks again @DanicaPatrick, @IMS, and @GoDaddy. give a listen if you haven't already! https://t.co/hkxEqO0Zdj" +05/25/2018,Comedians,@billburr,RT @BlindMike_: I'd recommend subscribing to the @allthingscomedy YouTube. They're putting out some funny shit like @billburr poker show an… +05/24/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I talked with professional race car driver @DanicaPatrick.… https://t.co/a9uMv9s1er" +05/23/2018,Comedians,@billburr,RT @allthingscomedy: Happy Birthday to host of Valley Vibes @brodyismefriend follow him and go watch episode 1! https://t.co/tm0LegkuLl #AT… +05/23/2018,Comedians,@billburr,That’s right! Old school flay-VAHS! https://t.co/N2wD5uahse +05/23/2018,Comedians,@billburr,@Defiant888 @A_JackElliott It was Joy Division +05/22/2018,Comedians,@billburr,RT @roseorosso: Caught a glimpse of some old @billburr standup and saw this guy with some red fuzz on the noggin! https://t.co/vam6ETs5i2 +05/21/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about Artisan ice cream, expansion franchises and the Royal Wedding. https://t.co/RhvKzanTse" +05/21/2018,Comedians,@billburr,"RT @Webster_Arena: Come laugh with Comedian @billburr at Webster Bank Arena on Saturday, October 6th! + +TICKETS: https://t.co/zR6oLHXEGu ht…" +05/21/2018,Comedians,@billburr,RT @LiveNationUK: EXTRA TICKETS RELEASED for @billburr at London's @RoyalAlbertHall next month! Be quick 👉 https://t.co/cQ41DB2WqS https://… +05/20/2018,Comedians,@billburr,Wow. https://t.co/u2gs3Y021W +05/20/2018,Comedians,@billburr,Close: “Millennial” https://t.co/rWDpgnIrhC +05/20/2018,Comedians,@billburr,"RT @Coach_Dugs: @billburr It’s a very uncommon play in the sport and specifically the league, so I get it." +05/20/2018,Comedians,@billburr,That asshole that stands up on every three point attempt. #STFDYMC +05/19/2018,Comedians,@billburr,Haha! https://t.co/tg1OVASRnn +05/18/2018,Comedians,@billburr,RT @theMMPodcast: tammp music 5-17: @Bob_Reynolds - Down South. https://t.co/kvsQ6AnkJj +05/17/2018,Comedians,@billburr,RT @questlove: yikes https://t.co/HFWFzUVM8z +05/17/2018,Comedians,@billburr,RT @FIFFNetflix: Recording ADR with @realphilhendrie and Sam Rockwell today. https://t.co/LguPpyDuaO +05/17/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about San Francisco, keeping score, and… https://t.co/ly9e8wIze6" +05/16/2018,Comedians,@billburr,RT @Jake_speare: @billburr Not bad! I see your Lars Ulrich and raise you Tony Williams from the 1982 #Zildjian Day clinic https://t.co/tI8m… +05/16/2018,Comedians,@billburr,RT @stephenasmith: Line of the night delivered by Jeff Van Gundy: “The @Cavs eye-roll one another more than folks in a bad marriage! Haaaaa… +05/15/2018,Comedians,@billburr,as mentioned on today’s podcast: This is what I do when my team gets knocked out of the NHL playoffs. (Metallica dr… https://t.co/AUE959Dyj2 +05/15/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about museums, paper shredders, and getting a lawyer. https://t.co/A7uflxyRdc" +05/14/2018,Comedians,@billburr,Dave Anthony and Gareth Reynolds have a new episode of Trash Toons today on All Things Comedy! https://t.co/8ckymNTNNK +05/14/2018,Comedians,@billburr,RT @theblood85: Chuck Knox was one of the most influential men in the early days of my career. Great coach and an even better man. #RIPChuc… +05/13/2018,Comedians,@billburr,Check out Jason Reitman’s new film Tully after thanking your Mum for doing the hardest job on the planet. https://t.co/Jzc9GvH82W +05/12/2018,Comedians,@billburr,RT @theMMPodcast: hope you’re all enjoying this hilarious interview #gfys https://t.co/Afw9vry5yr +05/12/2018,Comedians,@billburr,RT @JasonLawhead: #TBT circa Sept 2006. Not even 2 years in doing stand up w/ two of my closest comedy life influences @Hilarities owner Ni… +05/10/2018,Comedians,@billburr,the Thursday Afternoon Monday Morning Podcast is up!! I sit down with Bill Hader to talk about his new @HBO show B… https://t.co/lZLC1VpMD7 +05/07/2018,Comedians,@billburr,RT @allthingscomedy: Who do you think has slept with more women? A brand new 🔥Something's Burning🔥 with @bertkreischer is up with guests @c… +05/07/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about steak houses, the Bruins, and legal tender. https://t.co/pAeSm6wky2" +05/05/2018,Comedians,@billburr,@StoneyCJones Nothing funnier than a white rapper +05/05/2018,Comedians,@billburr,@Billybry10 No they aren’t. They are all over the map. Either let them play or call everything. Even the announcers… https://t.co/fQl3ie5lJI +05/05/2018,Comedians,@billburr,@ItsRodStebbings All I’m asking for is consistency. When the broadcasters are questing the calls too there is a problem. +05/05/2018,Comedians,@billburr,@ItsRodStebbings I thought it was because we won all those championships. +05/05/2018,Comedians,@billburr,These referees have been absolutely brutal for three straight games. When will one of their shit calls go in our favor? +05/03/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about the Hollywood sign, shitty news outlets, and… https://t.co/iTeQdisEGR" +05/03/2018,Comedians,@billburr,"RT @TheMMphotoshop: ""How dare you put me in that position Mr. and Mrs. Delta Airlines!"" https://t.co/ccbrRJ8bY0" +05/02/2018,Comedians,@billburr,@The_Grump90 Taping it! +05/01/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about Talladega, First Class, and coyotes. https://t.co/HR2eD1Ok0X" +04/30/2018,Comedians,@billburr,Nice!!! https://t.co/LKnNP3nwTt +04/30/2018,Comedians,@billburr,RT @natebargatze: At #Talladega with @billburr. #RubbinsRacin #NASCAR https://t.co/eozQWgPtdm +04/27/2018,Comedians,@billburr,"RT @boblazarstory: @billburr get on this, Billy boy.......https://t.co/Di2gZg1B2m" +04/27/2018,Comedians,@billburr,RT @THELORDmusic: Need to go to Club 290 now and tell Tommy @billburr said to spin the wheel. +04/27/2018,Comedians,@billburr,RT @theMMPodcast: 'Boston-bred loud mouth balancing rage with self-deprecation.' https://t.co/ABeA1v7O6o +04/26/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about the super cold, creating controversy and Her… https://t.co/j526CIeiTm" +04/25/2018,Comedians,@billburr,"RT @ktom8: @billburr There are two legs, one home and one away. The combined score of those two games wins. The Final however is just one g…" +04/25/2018,Comedians,@billburr,RT @ktom8: @billburr You qualify for the Champions League. You continue to play in your respectively league throughout the season but you a… +04/25/2018,Comedians,@billburr,"RT @ktom8: @billburr So every country in Europe has their own Soccer/Football League. The big 5 are The Premier League-England, La Liga-Spa…" +04/25/2018,Comedians,@billburr,"@theMMPodcast is up!! I ramble about the common cold, a 14 yr old’s dream, and being a navy seal in Australia. https://t.co/SxhdgzeLpF" +04/24/2018,Comedians,@billburr,@WMFC91 Wind knocks down Anderson. +04/24/2018,Comedians,@billburr,Every team flops but I have to give it up when a player adds the 360 pirouette! +04/24/2018,Comedians,@billburr,I’m guessing there are a lot of soccer fans on the Leafs. +04/24/2018,Comedians,@billburr,Ole freckles had to call in sick today. I will record podcast tomorrow. +04/23/2018,Comedians,@billburr,RT @DonMStahl: @billburr @IdHitThatPod great shot of Malcolm here! https://t.co/KAjXBE6EmU +04/22/2018,Comedians,@billburr,RT @oklasal81: @billburr. Animals in santa clarita https://t.co/sR6oTLNZm4 +04/22/2018,Comedians,@billburr,"RT @vikasjo: @BretErnst Heard you on @billburr podcast, checked out your special - Very funny, you have a fan in me now ! #Principal’s Offi…" +04/22/2018,Comedians,@billburr,Bridgeport CT! The @stressfactoryct opens May 3-5 with the incredible Jim Breuer! Get tickets here: https://t.co/Fm92VmlSm1 +04/20/2018,Comedians,@billburr,RT @BretErnst: Thanks to my good friend @billburr for having me on his podcast! Check it out here! https://t.co/QoG7lHwmvc +04/19/2018,Comedians,@billburr,the Thursday Afternoon @theMMPodcast is up! I sit down with comedian @BretErnst. https://t.co/HUzqRFIG4P +04/19/2018,Comedians,@billburr,RT @andrewTopHat: @billburr it goes on clear so you can see the stubble/hairs/etc otherwise you are just seeing a bunch of foam and shaving… +04/16/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about taxes, Syria and not being a rat. https://t.co/DGbvRDCCws" +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Let’s go!!! #RNR3. Starts at 7:15. Don’t miss this crew @billburr @BarstoolBigCat https://t.co/PCXh87CQKe http… +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Bill Burr is in the building. He's ready for something he's never seen before. Rough N Rowdy starts in about 2 hours.… +04/13/2018,Comedians,@billburr,Watch @kirkfox new special “That Guy” on Showtime tonight @10pm! https://t.co/vcQ2SgqHS3 +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Prediction: Pain. 👀. And there is no way he has seen Rocky 3 either which makes it scarier. We got real life… +04/13/2018,Comedians,@billburr,"RT @PardonMyTake: OMTR is officially the biggest underdog in Rough n Rowdy history. No one is giving him a shot tonight. He's older, shorte…" +04/13/2018,Comedians,@billburr,tonight!! @barstoolsports @stoolpresidente @BarstoolBigCat https://t.co/FqRgtmC9ru https://t.co/EL8UQKzlCp +04/13/2018,Comedians,@billburr,RT @lunchbawks0: @billburr there's this Irish bar we can remember the name of.. its somethin o' somethin.. so we just call it Patrice O' Ne… +04/13/2018,Comedians,@billburr,RT @TallSoHard: If y’all don’t pregame tomorrow by watching Rough N Rowdy you’re doing it wrong!! @billburr @BarstoolBigCat @stoolpresident… +04/13/2018,Comedians,@billburr,Just want to thank the great Mitzi Shore for everything she did for stand up comedy. A true legend. It’s been such… https://t.co/vHsjW391EB +04/13/2018,Comedians,@billburr,"RT @GamblingPodcast: Bill Burr (@BillBurr) calls in to talk Rough N' Rowdy 3! #RNR3 @barstoolsports +w/ @seantgreen & @kramercentric + +LISTE…" +04/12/2018,Comedians,@billburr,"I just talked about my preparation for @roughnrowdy, how the fighters like their hash browns, and old school #UFC o… https://t.co/57Ze9iY6Zx" +04/12/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast up!! I ramble about toupees, clean living and baseball fights. https://t.co/oyI2eTpf2e" +04/12/2018,Comedians,@billburr,"RT @barstoolecu: You’re going to want to watch @roughnrowdy live from Charlotte, NC this Friday night! 40+ fights featuring guest announcer…" +04/12/2018,Comedians,@billburr,thanks! https://t.co/ySGPS3cxMT +04/12/2018,Comedians,@billburr,RT @LoisReitzes: @JudahWorldChamp is smart and hilarious. Fascinating to watch him onstage. His @netflix show is up for a webbie. Listen he… +04/12/2018,Comedians,@billburr,RT @FIFFNetflix: Final retake edit for S3 E1 tonight. https://t.co/SYXF0CJ7OR +04/12/2018,Comedians,@billburr,RT @attell: She was a legend in the biz. And there will never be another one like her.  Give it up for the late great Mitzi Shore.  You wil… +04/11/2018,Comedians,@billburr,RT @BarstoolRadio: Bill Burr called into Barstool Radio as #RNR3 approaches this Friday night https://t.co/aZHQrAzd0P https://t.co/OSZDPXhL… +04/11/2018,Comedians,@billburr,FridayNight!! https://t.co/vPtmPMi7ZL +04/11/2018,Comedians,@billburr,Nice! https://t.co/qDjUpq2Inh +04/11/2018,Comedians,@billburr,"RT @jeremymarksmith: @billburr F1 telecast is coming from the ""world feed"" So ESPN doesn't actually control the feed. It's based on the F1…" +04/10/2018,Comedians,@billburr,I will be on @BarstoolRadio talking @roughnrowdy with @stoolpresidente on @SIRIUSXM Power 85. https://t.co/Pvy786YF5P +04/10/2018,Comedians,@billburr,"RT @TheMMphotoshop: ""The whole point of making music is to do it with other fuckin' people. +It's like, I get it, you have no friends."" http…" +04/10/2018,Comedians,@billburr,@Pocket_Queen Major talent! Thanks for the vids! +04/10/2018,Comedians,@billburr,RT @LSUBarstool: THRILLRIDE IS READY. Just 4 days until the Barstool LSU @roughnrowdy watch party at @Fredsbar. Rough N Rowdy 3 is coming l… +04/10/2018,Comedians,@billburr,RT @RicFlairNatrBoy: Steve Austin In The House! WOOOOO! @steveaustinBSR https://t.co/MX5DxbRZcA +04/09/2018,Comedians,@billburr,RT @allthingscomedy: Watch @bertkreischer hurt himself again on a Brand New episode of Something's Burning with @WheelerWalkerJr & @leeannw… +04/09/2018,Comedians,@billburr,".@theMMPodcast is up!! I ramble about Rough N Rowdy, Billy 'no Vice', and lunatic Sheela. https://t.co/kbxdIt7Dgi" +07/01/2018,Comedians,@davidcrosss,@karengeier I keep the other two pairs in my limousine +07/01/2018,Comedians,@davidcrosss,Portland! Just got my replacement socks at the Target down the street and I'm ready to kick ass at this SRO show at… https://t.co/JTwp7FyfCu +07/01/2018,Comedians,@davidcrosss,"Richard! You pretty much have it (winking emoji). To be specific yours is, “TINY HANDS = TINY HEART” which, come on… https://t.co/mmpgzGeUAT" +06/30/2018,Comedians,@davidcrosss,"Ross, you've got it (I think). Yours reads, ""I LOVE MAIL ORDER BRIDES.” So...yes? Good job sir. #ohcomeon https://t.co/JESxsramit" +06/29/2018,Comedians,@davidcrosss,@mike_maas @amazon Dont do it +06/29/2018,Comedians,@davidcrosss,"Okay Shelley, I'll give you everything but the last word. Yours says: “MIKE PENCE IS EVEN _____ “ You take it from… https://t.co/wy1t87sqlC" +06/29/2018,Comedians,@davidcrosss,"Hey, the show I wrote and directed in the U.K. is finally coming to what used to be America! Info about how you can… https://t.co/mAyDoa3W0H" +06/29/2018,Comedians,@davidcrosss,"RT @TVietor08: Send this article to all of your friends in Maine, Alaska, Indiana, North Dakota, West Virginia, and Missouri and tell them…" +06/29/2018,Comedians,@davidcrosss,"RT @EugeneMirman: People are really grabbing the word fuck by the pussy, huh Senator? But in all seriousness, I think it became acceptable…" +06/29/2018,Comedians,@davidcrosss,https://t.co/Dk7Oc9Q2PZ +06/28/2018,Comedians,@davidcrosss,"RT @aravosis: ANDERSON COOPER: “Jeff, I heard you say earlier that within 18 months abortion could be illegal in as many as 20 states.” + +LE…" +06/28/2018,Comedians,@davidcrosss,Darci! How are you? Long time. You got one of my faves actually. I will tell you the first couple of words: “I DIRE… https://t.co/T3pxyvx8qN +06/28/2018,Comedians,@davidcrosss,"Come on Anthony! At least try. Here's a hint, ""DO NOT TRUST"" are the first words. There are two more. And no, Donal… https://t.co/y0VUrnQCKF" +06/28/2018,Comedians,@davidcrosss,"RT @TheWhitneyBrown: When a majority of 1 in the Senate, representing a third of the US population, can put a judge on the Supreme Court fo…" +06/28/2018,Comedians,@davidcrosss,RT @EricBoehlert: reminder: https://t.co/8UO5SAql9Z +06/28/2018,Comedians,@davidcrosss,"RT @staceyabrams: Not-so-fun-fact: Every year Georgia doesn’t expand Medicaid, we miss out on $3 billion (billion, with a “B”) federal doll…" +06/27/2018,Comedians,@davidcrosss,over here! https://t.co/IZnugkzd3V +06/27/2018,Comedians,@davidcrosss,Oh... https://t.co/76Mz5womly +06/26/2018,Comedians,@davidcrosss,"Oh man, drop what you are doing (well I guess you're checking Twitter but still...) read this thread. FUN! https://t.co/ZPBtfuR3xW" +06/26/2018,Comedians,@davidcrosss,Can we start with him? https://t.co/RYV7flcClf +06/26/2018,Comedians,@davidcrosss,@olegdavydkin Bots +06/26/2018,Comedians,@davidcrosss,@Nikolaiberry Nice! I'll try to find you. +06/26/2018,Comedians,@davidcrosss,@Tjonespoc In your mother's closet? +06/26/2018,Comedians,@davidcrosss,@HammerJoeBrooks During. Don't make it weird! +06/26/2018,Comedians,@davidcrosss,@nolafilm I'm also a D.A. in Eugene Oregon and have a drill bits store in Ft. Wayne IN. +06/26/2018,Comedians,@davidcrosss,@slimjimtx Ну вот! https://t.co/HfKopqfoSo +06/26/2018,Comedians,@davidcrosss,"Chris! You got it the second time, it's: SATANISTS FOR TRUMP. Wear that and feel proud. #OhComeOn #MuellerWitchHunt https://t.co/XPuBWJORdh" +06/26/2018,Comedians,@davidcrosss,"Scott! This one you should wear next time you're in #Russia . Or at least Brighton Beach. It reads, “2018 WORLD TOU… https://t.co/qvILKAlMFp" +06/26/2018,Comedians,@davidcrosss,"Brady! Ha. No. It's: ""TWITTER MAKES ME ERECT."" It exactly translates to, ""I Have it Standing for Twitter” which is… https://t.co/TVuvA4IlYg" +06/26/2018,Comedians,@davidcrosss,"Jennifer! That is my ABSOLUTE favorite guess so far. No, it's not, ""Cinnamon Toast Crunch Cereal"". It’s, “TOO DUMB… https://t.co/i5i1v9eRDg" +06/26/2018,Comedians,@davidcrosss,Of course he can be so blatant about it. Because his fans are *literally* too dumb to realize it. Even Trump can ga… https://t.co/Js89pjIxcE +06/25/2018,Comedians,@davidcrosss,"@Nikolaiberry Hey Nick, you got; ""THIS HOLDS MY HAIR ON."" Please wear it to your next MAGA rally, point, and smile.… https://t.co/UkzbXuptS5" +06/25/2018,Comedians,@davidcrosss,"RT @Lawrence: Please keep doing this, Andrew. Please. + +(Retweet if you want more reporters to do this.) https://t.co/3VBDiMfBg8" +06/25/2018,Comedians,@davidcrosss,"RT @blackfamilyunit: White people, no one is asking you to apologize for your ancestors. We are asking you to pull down and dismantle the s…" +06/25/2018,Comedians,@davidcrosss,RT @OhNoSheTwitnt: “Be civil to bigots and they’ll be civil to you” is the new “misogynists wouldn’t be like that if women would just have… +06/25/2018,Comedians,@davidcrosss,"Ileen, you truly are life's cheerleader, yes Eugene was correct, “GOLF WILL MAKE AMERICA GREAT AGAIN."" It truly wil… https://t.co/s8eQNKQDiH" +06/25/2018,Comedians,@davidcrosss,"Donald! Close, very close, but yours specifically translates to ""Jared's Cell Mate"". We were going for, ""bunk mate""… https://t.co/snr6NtXr1A" +06/25/2018,Comedians,@davidcrosss,"@_j_cole_w_ @ScottBaio @realDonaldTrump Cole, you got it! Well to be fair in Russian it can be swapped out for, ""br… https://t.co/dNjg7RnzkO" +06/25/2018,Comedians,@davidcrosss,Dylan! Yes. Nailed it. That's exactly what it is. Good job! #ohcomeon https://t.co/V6qSAkB6Z3 +06/25/2018,Comedians,@davidcrosss,RT @camillard: My Nana asked me how to Instagram and girl I think the fuck NOT. We let your generation on Facebook for 5 mins and got a Bre… +06/25/2018,Comedians,@davidcrosss,RT @JohnJHarwood: Rubio on Trump Feb 2016: “a con man pulling the ultimate con job on the American people” https://t.co/h2WLZkMXlk +06/25/2018,Comedians,@davidcrosss,@cwwmbm @dubdunk @realDonaldTrump Oh dear. Yes that is a mistake all right. There's no word like that in Russian. O… https://t.co/ybIy2N3Qix +06/25/2018,Comedians,@davidcrosss,"RT @virgiltexas: If a Trump supporter came into my dick sucking factory, I would REFUSE to serve them. #MAGA #Resistance" +06/25/2018,Comedians,@davidcrosss,Gary! Well done. That's exactly what yours says: UNDER HIS EYE. Give Mr. Honold an extra biscuit for sporting the h… https://t.co/raSsWRRGQx +06/25/2018,Comedians,@davidcrosss,"I do, Nick. You know I do. I always have. And I always will. #ohcomeon https://t.co/enXqZIaJAo" +06/25/2018,Comedians,@davidcrosss,"Paul, this is a good one. I'll tell you the first word is ""HYPOCRITES"" and the last word is ""TRUMP."" #OhComeOn… https://t.co/OmMUI9z60f" +06/25/2018,Comedians,@davidcrosss,"Kyle! You got one of my fave's, I will tell you the first three words, +""TRUMP: PROPERTY OF ..."" You'll have to figu… https://t.co/jxGSpUR3OH" +06/25/2018,Comedians,@davidcrosss,"Another important observation by Josh Marshall + +Against ‘Civility’ https://t.co/ny4E13j2YW via @TPM" +06/25/2018,Comedians,@davidcrosss,"RT @mrbenwexler: - It cost $36/day +- 99% of asylum seekers showed up for their court dates +- trump decided to separate families at a cost o…" +06/24/2018,Comedians,@davidcrosss,https://t.co/GYt7ekWc8E +06/24/2018,Comedians,@davidcrosss,"Chris! This is the very hat I was sewing in that pic (bonus points!). The hat reads as follows: ""REGISTERED SEX OFF… https://t.co/rymueodxqx" +06/24/2018,Comedians,@davidcrosss,"Yep. 65,853,514 is definitely more than 62,984,828 --- Ha, love that you tagged @ScottBaio in that.… https://t.co/V3kwRmleWr" +06/24/2018,Comedians,@davidcrosss,"@johnnykwuhhh Johnny, you get the gist but I'm going to give you the EXACT +translation (Google can only do so much)… https://t.co/hqhFqGkeVP" +06/24/2018,Comedians,@davidcrosss,"Hi Jon. Not exactly. More like, ""Tiny Hands = Tiny Brain."" #ohcomeon https://t.co/wyF0WlwhxC" +06/24/2018,Comedians,@davidcrosss,"Thank you! Well, I'll tell ya, it means, ""I BELONG IN PRISON"" but to be EXACT, it translates to,""Prison is Crying f… https://t.co/HM9Q82BqyV" +06/24/2018,Comedians,@davidcrosss,"@stevenfischerky Ha! Understood about having traceable Russian queries +on your computer. Okay, Steve, it translates… https://t.co/IWfgckPDSQ" +06/24/2018,Comedians,@davidcrosss,"Anupam! Wear this hat at the next @realDonaldTrump rally and confuse everyone +within sight. It reads: ""YEAH, BUT HE… https://t.co/czirkk2z65" +06/24/2018,Comedians,@davidcrosss,"RT @eod1140: #ohcomeon, https://t.co/kjAe0dUiLr" +06/24/2018,Comedians,@davidcrosss,@eod1140 Agreed. https://t.co/PFmUKLQ2Do +06/24/2018,Comedians,@davidcrosss,"@dubdunk @realDonaldTrump Will- you sir, are letting the Russian-speaking world know, that you are a Secret… https://t.co/s7kva2M7Q8" +06/24/2018,Comedians,@davidcrosss,@DekeReads Hi Deke. Totally cool to wear to school! Or church or playground or airport or rally or homeless shelter… https://t.co/GfhnioFUh1 +06/24/2018,Comedians,@davidcrosss,"Well now, Thomas (or Doug? I'm confused...) I can help you out with the first part, ""Small Hands = Small ____ ."" No… https://t.co/xm6THIpQZy" +06/24/2018,Comedians,@davidcrosss,"@lucksbane Stephen! Feel bad for Grandpa Joe but your hat translates to, ""72 Year-Old Baby"" so maybe he can wear it too? #OhComeOn" +06/24/2018,Comedians,@davidcrosss,"Close Rebecca! It's, ""Resident Trump."" But I like yours better to be honest. Let's just go with that. #OhComeOn https://t.co/pgoiZ5ycHq" +06/24/2018,Comedians,@davidcrosss,@theladybeav @jfreewright Ha. Didn't even catch that. +06/24/2018,Comedians,@davidcrosss,@EugeneMirman It's really great. Very relaxing too. +06/24/2018,Comedians,@davidcrosss,"I'd like to option this story and make a short movie about it and title it, ""The Sandra Bland Story"". https://t.co/6eKaNhzydD" +06/24/2018,Comedians,@davidcrosss,@EugeneMirman You can't eat there but go to the John Rylands Library in Manchester. One of my favorite places on ea… https://t.co/doZtr8ZdnW +06/24/2018,Comedians,@davidcrosss,RT @nycsouthpaw: It’s strange to talk about a guy who lost the popular vote by three million and has rarely seen an approval rating north o… +06/24/2018,Comedians,@davidcrosss,I know these are awful and soul killing times but in between bouts of deep depression and anxiety I have thoroughly… https://t.co/z6t9dl73TR +06/24/2018,Comedians,@davidcrosss,@StallmansBeard @Pornhub Odd +06/24/2018,Comedians,@davidcrosss,Wait?!?! You have it? Holy shit. This is HUGE! Listen to me closely- do not panic. You need to do two things RIGHT… https://t.co/tRnc28prgZ +06/24/2018,Comedians,@davidcrosss,"@jfreewright ""Riddle me this"". +His whole shtick is basically fleeting pop culture detritus, an, ""anti cool kids"" p… https://t.co/W9YoHUiBpw" +06/24/2018,Comedians,@davidcrosss,@thetigersez @OhNoSheTwitnt Mike Huckabee +06/24/2018,Comedians,@davidcrosss,There's no such thing as white privilege!!! https://t.co/fV9PM1G6BW +06/24/2018,Comedians,@davidcrosss,"RT @CassLovesToTan: @joshtpm Look, I have a closet full of clothes +I know of I'm wearing a tight dress +A shirt that shows cleavage +An outfi…" +06/24/2018,Comedians,@davidcrosss,Seeing this tweet again is like finding 20 bucks in an old pair of pants...then getting a call that your script go… https://t.co/gqnBhFteGc +06/24/2018,Comedians,@davidcrosss,Sad but true. Even my dog knows this: https://t.co/8ftDDqoVMU +06/24/2018,Comedians,@davidcrosss,@TheStrongIsland @_ethiopiangold @TreatWellHealth The irony... +06/24/2018,Comedians,@davidcrosss,@rini6 @punkscience8 Thanks Irene! +06/23/2018,Comedians,@davidcrosss,@easternberg @mmschocolate Yes +06/23/2018,Comedians,@davidcrosss,@bennettcain @ambertamblyn Disturbed it is then. I was just trying to figure out the pretentious part (which is mil… https://t.co/X56VK7C2L8 +06/23/2018,Comedians,@davidcrosss,RT @_ethiopiangold: So my little cousin was selling water and didn't have a permit so this lady decided to call the cops on an 8 year old.… +06/23/2018,Comedians,@davidcrosss,"RT @bust_magazine: We talked to @ambertamblyn about her debut novel, #AnyMan; her involvement with #TimesUp; and more: https://t.co/T2hWEyv…" +06/23/2018,Comedians,@davidcrosss,"@SuzyWong1945 Sorry Suzy, facts dont care about feelings. It's the truth." +06/23/2018,Comedians,@davidcrosss,@SusanMMiller129 I will DEFINITELY be in Dallas. Literally always a fun show. +06/23/2018,Comedians,@davidcrosss,"RT @davidcrosss: Ladies & Gentlemen, tickets are now on sale to the unwashed masses for my latest stand up tour. Go to https://t.co/VXkIfIj…" +06/23/2018,Comedians,@davidcrosss,@bennettcain Distance myself from my legacy? I dont understand. How? Because I talked about my kid? Because I did s… https://t.co/dNw8d1pRQw +06/23/2018,Comedians,@davidcrosss,RT @feministabulous: Two people ran the president's campaign. One of them just mocked the harrowing trauma experienced by a ten-year-old gi… +06/23/2018,Comedians,@davidcrosss,"RT @PoliteMelanie: I have two questions about Space Force: +1) When will Puerto Rico have electricity? +2) When will Flint have clean water?" +06/23/2018,Comedians,@davidcrosss,@pattonoswalt An angry vacuum +06/23/2018,Comedians,@davidcrosss,"RT @DonCheadle: and if msm (i know you’re not including @FoxNews) paid attn, perhaps more ppl would have even known about troubling practic…" +06/23/2018,Comedians,@davidcrosss,"Not sure what the big deal is, he was at Booth 129 at Dragoncon and was announced months in advance. $50 a pop. https://t.co/n8wgeydsmy" +06/23/2018,Comedians,@davidcrosss,"RT @sarahkendzior: US officials who have committed felonies -- provable felonies like lying on clearance forms, which should have led to th…" +06/22/2018,Comedians,@davidcrosss,RT @SteveFNMayer: Was hoping to get a hat quoting caligula. Sad. #fakehat #OhComeOn really though davidcrosss please tell me what it means… +06/22/2018,Comedians,@davidcrosss,"RT @NathanHRubin: The people who hid Anne Frank were breaking the law. + +The people who killed her were following it. + +“Following orders”…" +06/22/2018,Comedians,@davidcrosss,@bennettcain In what way(s)? +06/22/2018,Comedians,@davidcrosss,@mcdoobie Had to reschedule. Is now on jury 23rd. Sorry about that +06/22/2018,Comedians,@davidcrosss,@melaniazulm Yes July 23rd now. Apologies. +06/22/2018,Comedians,@davidcrosss,@kilmeade So that means you're upset that they are not on their way to being reunited with their parents and will s… https://t.co/apl6RyNUCj +06/22/2018,Comedians,@davidcrosss,"Philadelphia friends, looking forward to tomorrow night at The Fillmore! + +Fun fact about Philly: people from Philad… https://t.co/7i8iv8F6lV" +06/22/2018,Comedians,@davidcrosss,"Come on @cazartchronicle give it the ol' Google try at least! Okay here's a hint: the last word is,""puppet.""… https://t.co/ewnosREYjI" +06/22/2018,Comedians,@davidcrosss,"@SteveFNMayer Steve, you got the one that says, (roughly) ""Ahhhh, I get it now."" +You can proudly wear it when the… https://t.co/kr0nzz9sPL" +06/22/2018,Comedians,@davidcrosss,"Thanks Dr! I know what it means and the good doctor clearly does as well but do you? Ron Perlman, you got any ideas… https://t.co/JXKqcSoxlJ" +06/21/2018,Comedians,@davidcrosss,"RT @virgiltexas: In Charles Krauthammer’s honor, here are some links to his essays that are worth reading:" +06/21/2018,Comedians,@davidcrosss,@spmoran @FillmorePhilly Thanks Sean! +06/21/2018,Comedians,@davidcrosss,"@infinitegest Yes, sorry, rescheduled to mid July" +06/21/2018,Comedians,@davidcrosss,"@davedelaney Mostly dead Kennedys, minor threat ""political ""type stuff. But many different bands X, sex pistols, and lots of ""new wave"" too" +06/21/2018,Comedians,@davidcrosss,RT @MattNegrin: this is terrifying https://t.co/ElMnqhTkvn +06/21/2018,Comedians,@davidcrosss,"RT @JuddApatow: When you support any Fox product you support THIS. Let’s all shut off Fox. There are so many channels, so many movies.…" +06/21/2018,Comedians,@davidcrosss,RT @perlmutations: So...your fake president just pussied out. That’s right! He pussied out. Of course he always been a pussy. Because talki… +06/21/2018,Comedians,@davidcrosss,"RT @benwikler: When pressure is working, ramp it UP. + +The minute after the EO, thousands of kids will still be separated from their famili…" +06/21/2018,Comedians,@davidcrosss,"RT @RBReich: The Trump administration on family separations: + +1) It’s a deterrent, zero-tolerance. +2) It’s not happening. +3) The Bible say…" +06/21/2018,Comedians,@davidcrosss,@caycefayce Excellent work. Really. +06/21/2018,Comedians,@davidcrosss,"RT @FillmorePhilly: Calling all comedy fans, this comedian is no joke! 🤣 Only a few days left until @DavidCrosss - Oh Come On Tour takes th…" +06/21/2018,Comedians,@davidcrosss,@lyanrizotte I will be there in July. Sorry about that Ryan. +06/21/2018,Comedians,@davidcrosss,@zackruskin @clusterfest I think it's in mid to late August? +06/21/2018,Comedians,@davidcrosss,RT @OhNoSheTwitnt: Well who else was going to serve the coffee? https://t.co/C7snajuqS3 +06/21/2018,Comedians,@davidcrosss,Holy moly this is AMAZING! Everything about it. Whoever wrote and directed this is a genius. And MJ Hegar is pretty… https://t.co/uCghiM0Cgk +06/21/2018,Comedians,@davidcrosss,RT @classiclib3ral: How had Jordan Peterson never heard this extremely basic counter argument to his position before https://t.co/gTdLm166Hj +06/21/2018,Comedians,@davidcrosss,RT @blainecapatch: if you took my child from me i would eventually kill you +06/21/2018,Comedians,@davidcrosss,Sweetheart check your spelling. You're referring to the porn version. https://t.co/6BYUoUkYnM +06/21/2018,Comedians,@davidcrosss,@realVitaminG Thanks. That was fun. +06/20/2018,Comedians,@davidcrosss,"RT @SRuhle: “YOU HAVE TO UNDERSTAND, +THAT NO ONE PUTS THEIR CHILDREN IN A BOAT +UNLESS THE WATER IS SAFER THAN LAND...” +- Warsan Shire" +06/20/2018,Comedians,@davidcrosss,"RT @LibyaLiberty: If we get rid of the lot of you, we won’t face either choice. https://t.co/bP7riVjk0r" +06/20/2018,Comedians,@davidcrosss,Thread https://t.co/3sG69JtN4n +06/20/2018,Comedians,@davidcrosss,"Dont forget folks, this was the end game all along. This is what Bush tried to float but nobody had the stomach for… https://t.co/V5VxeUQRmy" +06/20/2018,Comedians,@davidcrosss,@iChrisSommers Good question! I think maybe this one. What do you think @MichaelAvenatti? Too soon? #BASTA… https://t.co/6KeMMnC6wt +06/20/2018,Comedians,@davidcrosss,"@Liz_Wheeler But I thought that, according to Trump, it's a ""democratic law"" requiring him to separate families. If… https://t.co/SozTAuT7KX" +06/20/2018,Comedians,@davidcrosss,From over a year and a half ago... https://t.co/6ZQtaqMZKe +06/20/2018,Comedians,@davidcrosss,"RT @misterbumface: The Holocaust was legal. Slavery was legal. Segregation was legal. + +The brave woman who cared for and hid my 6 year-old…" +06/20/2018,Comedians,@davidcrosss,"""IF YOU WERE A FLAG I'D HUG YOU!"" https://t.co/PCpIIMt2sq" +06/20/2018,Comedians,@davidcrosss,Like vinyl? Like treason? Well do I have a product for you!!! https://t.co/hxrBsgd32o https://t.co/L5N97DjWyI +06/20/2018,Comedians,@davidcrosss,RT @ikebarinholtz: Take a look at the republicans clapping and smiling while these toddlers are being locked in cages and know that the ONL… +06/20/2018,Comedians,@davidcrosss,RT @pattonoswalt: SIGNAL BOOST THIS TO THE RIM OF THE UNIVERSE EVERYONE https://t.co/ktFpvTVHqE +06/20/2018,Comedians,@davidcrosss,"RT @WilDonnelly: The Nazi collaborators making millions from ripping children and babies from their mothers and imprisoning them are: +Compr…" +06/20/2018,Comedians,@davidcrosss,"Portland thanks so much! And thanks for the lobster roll. Burlington, Janelle and I are headed your way. Still some… https://t.co/WBiPpeww2l" +06/19/2018,Comedians,@davidcrosss,...almost done… standby for more info tomorrow (and if you’re not already on my email list… https://t.co/NppsixEPyx) https://t.co/KHVQueWOW4 +06/19/2018,Comedians,@davidcrosss,RT @robdelaney: 3/3/17 https://t.co/Eu93vH3bPl +06/19/2018,Comedians,@davidcrosss,"RT @ikebarinholtz: Yes, we hate that Trump’s name is on the ground in front of a Lady Foot Locker and is always covered in spit and/or urin…" +06/19/2018,Comedians,@davidcrosss,"RT @ACLU: The FCC may let Sinclair Broadcasting Group become the largest owner of local TV stations in history. + +Sinclair has been exposed…" +06/18/2018,Comedians,@davidcrosss,"Or, you know, the exact opposite. https://t.co/qtXw8g86wD https://t.co/SrUb185svy" +06/18/2018,Comedians,@davidcrosss,"@ianslessor ""Two wrongs"" brother." +06/17/2018,Comedians,@davidcrosss,@normmacdonald I'm talking about little kids. *most* little kids dont know any of that stuff. Look I've read Lord o… https://t.co/UfwU9hHism +06/17/2018,Comedians,@davidcrosss,"RT @shannoncoulter: This is Phebe Novakovic. She's CEO of General Dynamics, which has a lucrative contract w/ Office of Refugee Resettlemen…" +06/17/2018,Comedians,@davidcrosss,RT @Slate: A running list of how to help fight family separation at the border: https://t.co/lPFwWxmUTG https://t.co/79h9XWaYSU +06/17/2018,Comedians,@davidcrosss,RT @kumailn: The family separation stuff is too much to process. It's much easer to push it away and not think about it. But that won't sto… +06/17/2018,Comedians,@davidcrosss,This Fathers day let's not let evil and selfishness win. 4 all the children who don't know what hate or nationalism… https://t.co/RTzPTcH7vJ +06/17/2018,Comedians,@davidcrosss,"RT @RVAwonk: Trump keeps trying to blame Democrats, but here's John Kelly in March 2017 talking about implementing forced separation for im…" +06/17/2018,Comedians,@davidcrosss,"@WWEGraves @jimandsamshow I think time and mass mutual experience (at this rate eventually everyone, at some point,… https://t.co/28flbeE1G9" +06/17/2018,Comedians,@davidcrosss,@drisc_peep Sorry. Truly sorry. I'm bummed too. +06/17/2018,Comedians,@davidcrosss,@fiorski I'm disappointed too. Hopefully I'll be able to get there at some point soon. +06/17/2018,Comedians,@davidcrosss,"It’s #FathersDay, but right now, Trump is ripping children away from their fathers at the border. Together we can s… https://t.co/yo1bunKife" +06/17/2018,Comedians,@davidcrosss,RT @MediatedReality: Looking for funny this morning and instead found a great conversation from @davidcrosss about poverty & disenfranchise… +06/17/2018,Comedians,@davidcrosss,@nalbeadz It totally did Tom! Been doing it ever since. God bless. You're a good man. +06/17/2018,Comedians,@davidcrosss,@easternberg @goliathtv Thanks sir. That was fun to do +06/17/2018,Comedians,@davidcrosss,@Splinterette @goliathtv @ambertamblyn @JordanPeele @chelseaperetti Bless +06/17/2018,Comedians,@davidcrosss,@nolafilm @janellejcomic Me too! +06/17/2018,Comedians,@davidcrosss,"Providence! That was a blast! Thank you so much. Really fun show. +Does anyone know what that one incoherent (drunk… https://t.co/u9Hb6NS09t" +06/16/2018,Comedians,@davidcrosss,RT @jaketapper: Thread https://t.co/EvtEjB64aV +06/16/2018,Comedians,@davidcrosss,RT @PoliteMelanie: Those who were mad at Michelle Obama because she said that kids should eat vegetables are completely fine with Trump put… +06/16/2018,Comedians,@davidcrosss,Providence here we come! The lovely miss Janelle James and I are I95 headed your way. Looking forward to tonight. T… https://t.co/LNlHJxVwaj +06/16/2018,Comedians,@davidcrosss,"Fairsley Foods strikes again. +https://t.co/iKdahevcVu" +06/15/2018,Comedians,@davidcrosss,"Tell those catchers to stop kneeling! +https://t.co/tddWzwtgOC + +Shared from my Google feed" +06/15/2018,Comedians,@davidcrosss,I really enjoyed doing this. Thanks Michael @michaelianblack https://t.co/q7Bjhoj9OR +06/15/2018,Comedians,@davidcrosss,Let's not forget that someone made millions of dollars coming up with Russian dressing. They mixed mayonnaise with… https://t.co/bvAeU2nfiS +06/15/2018,Comedians,@davidcrosss,"RT @staceyabrams: “Abrams’ platform draws from her own experiences and those of others struggling to attain better lives for themselves, th…" +06/15/2018,Comedians,@davidcrosss,"RT @krassenstein: BREAKING: Chrystia Freeland, the Canadian Foreign Minister said today that she has not ruled out the possibility of retal…" +06/14/2018,Comedians,@davidcrosss,@kumailn That's the last time I take you for chicken 'n' biscuits. +06/14/2018,Comedians,@davidcrosss,"RT @janellejcomic: Comedian pay is so arbitrary its like ""here's 300 bucks to write for the president or 10,000 to host this rooster pagean…" +06/13/2018,Comedians,@davidcrosss,"RT @michaelianblack: New episode of ""How to Be Amazing"" with @davidcrosss just out. We GO THERE!!! (I'm not sure what I mean by that.) http…" +06/13/2018,Comedians,@davidcrosss,RT @Rob_Hoffman: did you know @realDonaldTrump once cut off healthcare benefits to his *nephew* who had cerebal palsy while the family was… +06/13/2018,Comedians,@davidcrosss,"@danharmon @stalewaffles @_mandydee He had me at, ""help I don't understand humor"".💕💕💕" +06/13/2018,Comedians,@davidcrosss,RT @kenklippenstein: https://t.co/IIaGE9X5Rx +06/13/2018,Comedians,@davidcrosss,"""Those who say making 85 million dollars in one year through illegal and treasonous corruption can not be done, sh… https://t.co/TbTuritRwz" +06/13/2018,Comedians,@davidcrosss,"But going to camp is fun right? +Wonder what are the showers at this ""camp"" are like. https://t.co/zcMCU9Lq7S" +06/12/2018,Comedians,@davidcrosss,RT @danharmon: (this is your weekly reminder that my twitter feed is not a forum and I am not here in any type of service to you and I will… +06/12/2018,Comedians,@davidcrosss,RT @JohnFugelsang: People who cheered Trump for defunding Planned Parenthood are now cheering him for meeting w/a govt that forces women to… +06/12/2018,Comedians,@davidcrosss,"@MattOswaltVA Please don't tell me the ""B"" stands for burgers. That'd be worse than an all female Oceans 11 spinoff" +06/12/2018,Comedians,@davidcrosss,I love you. Marlow loves you. Good people love you. Oh and your book is amazing. Also I got you that mortadella tha… https://t.co/FV6Q1dFkdw +06/12/2018,Comedians,@davidcrosss,RT @mattyglesias: Liberal elites may have cheered this step forward for fairness but Real Americans in the Heartland felt their values were… +06/12/2018,Comedians,@davidcrosss,"I'm back on Twitter. +Been awhile. +Is America still a shining beacon of morality and a champion of basic, human ri… https://t.co/tgw5p3mArv" +05/24/2018,Comedians,@davidcrosss,I have been off Twitter at the behest of my wife. I have apologized to Jessica in private (the way I prefer to cond… https://t.co/a9h41zYyKb +05/23/2018,Comedians,@davidcrosss,"RT @OhNoSheTwitnt: Trump yesterday: All children are a gift from God. + +Trump today: Children look so innocent but the brown ones are evil.…" +05/23/2018,Comedians,@davidcrosss,@TheWhitneyBrown No you did! I was 18. We did stand up in...Augusta I want to say? +05/23/2018,Comedians,@davidcrosss,"The beauty of late night TV. You won't see this on GMA mothereffers. +https://t.co/dMdJ67cceW" +05/23/2018,Comedians,@davidcrosss,RT @LadyBusiness_: One Weird Trick To Getting Universal Healthcare That American Insurance Companies Don't Want You To Know https://t.co/Iv… +05/23/2018,Comedians,@davidcrosss,RT @jfreewright: So at least one person from each team do it. #Next https://t.co/oAj3hVbU98 +05/23/2018,Comedians,@davidcrosss,"Picked on CONSTANTLY, had pennies and dimes thrown at me as kids said, ""pick it up jew"", my sister was urinated on… https://t.co/GN4xC1cFer" +05/22/2018,Comedians,@davidcrosss,That was fucking fun! I'm on Late Night with Stephen Colbert tonight. Had a blast. I do love that guy. Check it out if you're so inclined. +05/22/2018,Comedians,@davidcrosss,@benschwartzy Thank you Ben +05/22/2018,Comedians,@davidcrosss,@JAdomian Ha! The heat of shame rising within. +05/22/2018,Comedians,@davidcrosss,"Well now here's something that everyone, rich or poor, conservative or liberal, white or of color, American by birt… https://t.co/LhbVrEreRG" +05/21/2018,Comedians,@davidcrosss,"RT @B_Ehrenreich: Why are people poor? Because they are uneducated? No, because (1) they are paid so little for their work and (2) the pitt…" +05/21/2018,Comedians,@davidcrosss,RT @kenklippenstein: https://t.co/BLnHlz9LEH +05/21/2018,Comedians,@davidcrosss,"RT @breebxtler: hey tonya, 10 of my classmates died yesterday and 10 others were injured. i would LOVE to lecture any texan on gun laws. ht…" +05/20/2018,Comedians,@davidcrosss,"RT @somethingawful: 2017 ALT RIGHT: there is no such thing as ""white male privilege!"" + +2018 ALT RIGHT: if women refuse to fuck us, we cann…" +05/19/2018,Comedians,@davidcrosss,RT @RacismFactory: https://t.co/P346uYoGMo +05/18/2018,Comedians,@davidcrosss,Me too. Gonna be fun. https://t.co/cInhavrQay +05/18/2018,Comedians,@davidcrosss,"RT @MarcHilberer: the number of school shootings that have happened since the year 2000 around the world: + +ENGLAND: 0 +GREECE: 1 +NETHERLAN…" +06/29/2018,Comedians,@ofctimallen,Could not have come as far as I have without the love and support of my family #family #MomAndDad #Siblings… https://t.co/wWZKQkmUrJ +06/28/2018,Comedians,@ofctimallen,Mark your calendar for Sept. 28th! @LastManStanding #LastManStanding https://t.co/JMHMFzXZ0R +06/27/2018,Comedians,@ofctimallen,As promised… the long and winding road of car fabrication https://t.co/SgAATshC8U #MetalWork #Handmade #Suspension #Custom @BodieStroud +06/26/2018,Comedians,@ofctimallen,"Summer is the perfect time to get active & enjoy some sunshine. With prices like the 80’s, there's no better time t… https://t.co/hf4diqqFse" +06/26/2018,Comedians,@ofctimallen,We had great shows in Appleton and Milwaukee and got an actual press review. Laughed at the description of one of m… https://t.co/z0bb4o3qzd +06/22/2018,Comedians,@ofctimallen,Mojay Lake; A heartbreaking documentary. Welcome to summer! #summerTime #michigan #cherries #familyVacation… https://t.co/EP8ZIvXGEJ +06/20/2018,Comedians,@ofctimallen,I love art and Tobin's work is some of my favorite. @realTobinSprout #TobinSprout #photorealism #expressionism #art https://t.co/mX3YwcgQgA +06/20/2018,Comedians,@ofctimallen,As promised...Keeping all the butts together #UseItOrLoseIt #welding #fender #bumper #line @BodieStroud https://t.co/8pVd8yQ6Jr +06/19/2018,Comedians,@ofctimallen,Dodge is auctioning off the last production Viper and Demon at Barrett-Jackson June 23rd. All proceeds will be dona… https://t.co/AsHznOPO7K +06/18/2018,Comedians,@ofctimallen,If I were to take one thing from this video it’s the art of sarcasm is not lost on Michiganders #sarcasm… https://t.co/EiUNc9OB1z +06/15/2018,Comedians,@ofctimallen,Happy father's day! Proud to be a father to all my scripted & unscripted children #fathersday #work… https://t.co/4PUfefvyeD +06/13/2018,Comedians,@ofctimallen,As promised...Vegas anyone?... Mirage?... July 28th? #roadtrip #Vegas #mileage #gas #coffee @BodieStroud https://t.co/T1DzdS5Xmg +06/11/2018,Comedians,@ofctimallen,Hands down the cleanest interview I’ve ever had #mondayMadness #manCrushMonday #motivationMonday #shower #clean… https://t.co/vJbf1OVLI4 +06/09/2018,Comedians,@ofctimallen,Wow still sinking in...we will be back making shows. We are all so geeked. +06/08/2018,Comedians,@ofctimallen,Here's from one of my crazy employees #flashbackFriday #CatBallou #HomeImprovement #ToolTime https://t.co/ZhKtVVb1Lx +06/06/2018,Comedians,@ofctimallen,As promised... every hot rod has a story https://t.co/ThcYcNrdA6 #custom #build #Ford #history #story @BodieStroud +06/04/2018,Comedians,@ofctimallen,Merry Christmas Monday because who doesn’t like Christmas in July? I mean June. #santaclause #bloopers #olympics… https://t.co/W1A9ElKfux +06/01/2018,Comedians,@ofctimallen,Current demo reel #FlashbackFriday #eggs #SillyPutty #local #Birmingham #Oldsmobile https://t.co/kH6gKNsZEG +05/30/2018,Comedians,@ofctimallen,As promised... Still amazes me the things humans are capable of making with their hands #customCar #handmade… https://t.co/y94dtU11hs +05/25/2018,Comedians,@ofctimallen,Looking forward to being back with the LMS family again #LastManStanding @LastManStanding @FOXTV https://t.co/FeWBp7YYHq +05/23/2018,Comedians,@ofctimallen,As promised... the build that never ends https://t.co/fuq3mUEvgF #custom #build #engine #horsepower #Ford… https://t.co/IXrvgrkr9q +05/21/2018,Comedians,@ofctimallen,Memory Monday...here's part of my journey https://t.co/nD2Nfoocuh #neverGiveUp #neverSurrender #DoTheWork +05/18/2018,Comedians,@ofctimallen,See you tonight San Diego! 8pm at Copley Symphony Hall https://t.co/vf0vzhVLn9 +05/18/2018,Comedians,@ofctimallen,"Friday funny flashbacks...Crazy on the Outside... +https://t.co/nBzgq5kUAO #FBF #fridayfunnies #gagReel" +05/18/2018,Comedians,@ofctimallen,"If you're looking for some laughs tonight, I'll be at the @TheLaughFactory in Hollywood 7:45pm https://t.co/clDvaDZyRa" +05/17/2018,Comedians,@ofctimallen,It's ON! Thanks for keeping on people. +05/16/2018,Comedians,@ofctimallen,"Come see me live-Thurs, Fri and Sat https://t.co/2tJlF3bmw2 @TheLaughFactory #CopleySymphonyHall +@TCCTucson… https://t.co/jH8Shgyt0x" +05/16/2018,Comedians,@ofctimallen,New episodes this fall #LastManStanding @FOXTV @LastManStanding https://t.co/9I40bslKkb +05/16/2018,Comedians,@ofctimallen,As promised... https://t.co/oGxY7vhJQe I'm super geeked to see what the motor looks like in the Vik #Ford… https://t.co/Egq6CPFwro +05/14/2018,Comedians,@ofctimallen,Just a teaser for you. Looking forward to this fall #LastManStanding @FOXTV @LastManStanding https://t.co/vWBRRMT1xR +05/14/2018,Comedians,@ofctimallen,"Takes a lot of people to make a movie. However, not even Travolta can make me put my camcorder down. Camcorder, di… https://t.co/JgW6QLtHq0" +05/11/2018,Comedians,@ofctimallen,New season this fall! https://t.co/qhSdY48WT2 #LastManStanding https://t.co/REYt6yYXbV +05/11/2018,Comedians,@ofctimallen,"Thanks to all you guys for the support. +We are back!" +05/10/2018,Comedians,@ofctimallen,A strong wind just filled our main sail. +05/09/2018,Comedians,@ofctimallen,As promised... https://t.co/IAryM4ipJ8 The art of welding @BodieStroud #welding #Ford #ElectricCar #FordVicky +05/09/2018,Comedians,@ofctimallen,Come see me next weekend in San Diego & Tuscon. https://t.co/2tJlF3bmw2 @SanDiegoSymph @TCCTucson https://t.co/zjWVhb1SdE +05/08/2018,Comedians,@ofctimallen,"Check out my youtube channel. Here's an easy way to get back to it and my other social media + Scan the QR code or c… https://t.co/WxTLLWp4VC" +05/03/2018,Comedians,@ofctimallen,They heard all your voices people!! LMS just might be a reality. Keep it up. Who wants more #LastManStanding ? +05/03/2018,Comedians,@ofctimallen,stay tuned +05/03/2018,Comedians,@ofctimallen,Here's some more horsepower. Check it out tonight! https://t.co/mZMmY9TVUy +05/02/2018,Comedians,@ofctimallen,As promised... more horsepower? https://t.co/fZa8UKOSOF #horsepower #ElectricCar @BodieStroud +05/02/2018,Comedians,@ofctimallen,Check it out tomorrow night. @LenosGarage Thursday at 10p ET on CNBC! #JayLenosGarage https://t.co/ew54mHO9gP +05/01/2018,Comedians,@ofctimallen,More behind the scenes- gag reel https://t.co/7acuwFEa48 #LastManStanding #gagReel +04/30/2018,Comedians,@ofctimallen,"Ok, so I'll play too. Here's one of my first headshots #OldHeadshotDay https://t.co/x7z3BpeFg5" +04/30/2018,Comedians,@ofctimallen,Jay and I are at it again. Check us out on Thursday! #JayLenosGarage https://t.co/oqNNIQlZT1 +04/27/2018,Comedians,@ofctimallen,Continued laughs with this crew https://t.co/0q2VquWIl2 #laughter #GagReel #LastManStanding +04/27/2018,Comedians,@ofctimallen,Hanging out with an alternate personality. https://t.co/5VZmOlp45p +04/26/2018,Comedians,@ofctimallen,RT @calvertwcsx: RRR! Tim Allen @ofctimallen is back home tonight to perform a benefit concert for Forgotten Harvest. My old buddy stopped… +04/25/2018,Comedians,@ofctimallen,As promised https://t.co/mV9G9tnqvx Anyone have questions about the progress so far? Get some of your answers in th… https://t.co/5Vw7Nmck41 +04/23/2018,Comedians,@ofctimallen,We really had some good laughs on this show. I loved working with these people. We really had some good laughs on… https://t.co/TiZDV5mqgr +04/21/2018,Comedians,@ofctimallen,"Motorcity +I saw Pryor kick this place up! +Hard to believe I am working same sold out venue. https://t.co/QQMfBqH5AN" +04/18/2018,Comedians,@ofctimallen,As promised ... https://t.co/jMgcCjDIqo #hotrod #electricCar #IRS #sound +04/16/2018,Comedians,@ofctimallen,Mid-afternoon Monday pick-me-up https://t.co/xVmfg0wyZ7 #gagReel #LastManStanding #socks +04/12/2018,Comedians,@ofctimallen,TONIGHT! @ComicTreStewart @frazercomedy @TheLaughFactory #comedy #standup https://t.co/2za3qNXSVB +04/11/2018,Comedians,@ofctimallen,As promised https://t.co/CYLioBLEdT Electric? Hot rod? What do you think? #hotrod #electricCar #pedicure +04/10/2018,Comedians,@ofctimallen,Bloopers are the best! So fun to look back on these good times. https://t.co/1zF7umAsVq #LastManStanding #gagReel #bloopers #branMuffin +04/10/2018,Comedians,@ofctimallen,Merry Christmas Monday! https://t.co/ZfLfAcBKlN #SantaClause #christmas +04/05/2018,Comedians,@ofctimallen,As promised https://t.co/peh6jsKqiS - check back next week to meet more of the people who are smart enough not to… https://t.co/aviPt8vZ2j +03/28/2018,Comedians,@ofctimallen,"As promised, part deux. Check back next week to find out why I named him Viktor https://t.co/2gNDMpJIoV #crownvictoria #vicky #Ford #30s" +03/21/2018,Comedians,@ofctimallen,"As promised, meet Viktor. Check back next week to see the progress. https://t.co/5wAgaKvkyo #crownvictoria #vicky #Ford #30s" +03/17/2018,Comedians,@ofctimallen,Doors just opened for first of two sold outs in Eugene. Great crew and cool venue. https://t.co/R2DaFkKoCG +03/17/2018,Comedians,@ofctimallen,All good tonite! https://t.co/Zxt3mtB2W2 +03/17/2018,Comedians,@ofctimallen,Ah.... those damn nice folks in Stockton left us a cake to enjoy. This was a hot crowd! Great venue. https://t.co/pkIP0g60nH +03/15/2018,Comedians,@ofctimallen,Hard to believe it's been about 30 years #tbt https://t.co/vCbtew9jXC +03/13/2018,Comedians,@ofctimallen,"Thanks for helping us sell out our show in Eugene, we added a second show at 5pm! Hope to see you there!… https://t.co/P8Ck6QKVO8" +03/11/2018,Comedians,@ofctimallen,"Doors just opened +Fill her up +Get them laughing https://t.co/6NVA0CsHha" +03/10/2018,Comedians,@ofctimallen,Oakland show finished sound check now it's close to showtime https://t.co/joa6gNYdVh +03/05/2018,Comedians,@ofctimallen,Hey Northern CA- I'll be in Oakland on Saturday. Hope to see you there. #standup #Oakland @OakParamount https://t.co/Y0D0iXdtN9 +03/02/2018,Comedians,@ofctimallen,Here's another from the archives. #boxing https://t.co/LCTnPgljYu +03/02/2018,Comedians,@ofctimallen,Need some weekend plans? I'll be at the Mirage tonight and Saturday night https://t.co/d1gALrLc9X @TheMirageLV… https://t.co/PDc5H3MLZT +02/27/2018,Comedians,@ofctimallen,"One of the biggest highlights of my career #standup #goals #JohnnyCarson #TonightShow +https://t.co/J9OGqTswSb" +02/26/2018,Comedians,@ofctimallen,"We have a debate in the office about posting this video. I think it's too weird, the office thinks it's just weird… https://t.co/36mZ01bd9b" +02/23/2018,Comedians,@ofctimallen,Some of you have asked for more car videos. Here you go- from high school. #movie #filmmaker #motion #Woodward… https://t.co/4WGpQpc4Jb +02/22/2018,Comedians,@ofctimallen,Cool ride with the Blue Angels during HI. Glad I didn't vomit. https://t.co/E3RaKjnSii #homeImprovement #BlueAngels #Aviators #Navy #Flying +02/20/2018,Comedians,@ofctimallen,Glad to report I am very happy with my purchase. Stay tuned for my 1934 Ford Vicky #2017FordGT #FordVicky @Ford https://t.co/hmemSfjKNm +02/20/2018,Comedians,@ofctimallen,"Space, the final frontier https://t.co/uBDpq7UFGM #LastManStanding #vlog" +02/15/2018,Comedians,@ofctimallen,"My heart is broken for the loss of life in Florida. My deep, deep sympathy to all those families." +02/14/2018,Comedians,@ofctimallen,"Nothing like the roar of an engine. ""Licorice Special"" by Steve Moal https://t.co/xwR1wId4s5 +@MoalInc #Moal #licorice" +02/13/2018,Comedians,@ofctimallen,"If anyone needs help with their workout today, here's some tips https://t.co/pSdCYIMUAv #workout #exercise #gym #getFit" +02/13/2018,Comedians,@ofctimallen,Prepping for my stand up back in the day. https://t.co/i1De7G6nIb @Sears @Craftsman #HomeImprovement #craftsman #serious #tools #standup +02/12/2018,Comedians,@ofctimallen,I'll be at the @TheLaughFactory this Thursday at 7:45pm with @ComicTreStewart @frazercomedy #comedy #standup https://t.co/4JgWawnjGB +02/09/2018,Comedians,@ofctimallen,A quick intro to my silver spaceship. How's my hair? https://t.co/s8kGxxPXMt #FordGT #Supercar #TimAllen #morepower #2017FordGT +02/04/2018,Comedians,@ofctimallen,Stage is set..... https://t.co/leeYUmvMer +02/04/2018,Comedians,@ofctimallen,Doors open! Show in 30min https://t.co/vEvvg56xPT +02/04/2018,Comedians,@ofctimallen,Backstage gift from great staff at the Peabody Opera House https://t.co/GFAXgdiXzc +02/03/2018,Comedians,@ofctimallen,https://t.co/pSJEyLRoHg +02/03/2018,Comedians,@ofctimallen,Kansas City....its showtime! https://t.co/MJnDfjt5uD +01/18/2018,Comedians,@ofctimallen,I added a video to a @YouTube playlist https://t.co/I6EKGp5gNm My Territory +01/18/2018,Comedians,@ofctimallen,I added a video to a @YouTube playlist https://t.co/6wG2YF1Cqg Women Accessorize +01/16/2018,Comedians,@ofctimallen,Who doesn’t love a classic Monday Morning Marching Band Pick-Me-Up? https://t.co/aLoPf7oN6O +01/14/2018,Comedians,@ofctimallen,Crowd coming in Denver https://t.co/6PI2iuxjlQ +01/10/2018,Comedians,@ofctimallen,Updating the Tim Allen website and came across these video clips. Good memories. https://t.co/6nNWHB5D5p via @YouTube +12/23/2017,Comedians,@ofctimallen,@ConorHurley007 @louisviuttondon Or I have big sore thumbs +12/20/2017,Comedians,@ofctimallen,Enjoying the Lions game. Lucky to be with coach Jim Caldwell & I’m guessing his grandchild that couldn’t care less… https://t.co/k5Ky8PrR5U +12/19/2017,Comedians,@ofctimallen,On Netflix now #MerryChristmas #ElCaminoChristmas @netflix https://t.co/UGUDAJmsWQ +12/08/2017,Comedians,@ofctimallen,Check it out tomorrow! #ElCaminoChristmas on @netflix https://t.co/Mq8XZnMn5X #MerryChristmas +12/03/2017,Comedians,@ofctimallen,Signing stuff for crowd out front https://t.co/WY0ehc9aqk +12/03/2017,Comedians,@ofctimallen,I am actually somewhat larger in person. https://t.co/LgwBuDWeij +12/03/2017,Comedians,@ofctimallen,Filling Kodak Center up here in Rochester NY #comedy#timallen#standup https://t.co/NdRfxvhVqI +11/22/2017,Comedians,@ofctimallen,El Camino Christmas on Netflix Dec. 8th. Just a note to parents... this isn't a movie for kids! Check out the trai… https://t.co/InyN6oikon +11/20/2017,Comedians,@ofctimallen,El Camino Christmas- December 8th on Netflix! https://t.co/s87nHimddl https://t.co/6ENzaLXRbj +11/17/2017,Comedians,@ofctimallen,"Great fun to be interviewed by Peter Billingsley https://t.co/6HVAXrb5hv +@OfficialPeterB Wednesday, Nov. 22 at 10… https://t.co/y1dlqvpzYA" +11/17/2017,Comedians,@ofctimallen,Oh boy https://t.co/aj2c2StV6t +11/17/2017,Comedians,@ofctimallen,My opening act some local band. https://t.co/Ad3Rg4vaQB +11/17/2017,Comedians,@ofctimallen,"It's Showtime Clearwater, Florida. https://t.co/Rup3dWbpyJ" +11/03/2017,Comedians,@ofctimallen,"@DanaPerino Miracle Whip and Peter Pan on Wonder Bread, never heard that before, A Denver boys favorite as a kid too." +10/21/2017,Comedians,@ofctimallen,Sound check Tacoma https://t.co/GzSzADQpOE +10/21/2017,Comedians,@ofctimallen,Almost Showtime Salt Lake City! https://t.co/EZUfSYzTU7 +10/20/2017,Comedians,@ofctimallen,RT @liveattheeccles: Meredith & AJ of @941kodj talk with @ofctimallen about his upcoming show #AtTheEccles 10/20 https://t.co/3VhpSWaSBs +10/20/2017,Comedians,@ofctimallen,"RT @RadiofromHell: Tim Allen is coming to the Eccles Theater this Friday, October 20th and chatted with Radio From Hell's Richie T.... http…" +10/20/2017,Comedians,@ofctimallen,See you tonight @liveattheeccles in UT and Sat night at Emerald Queen Casino in WA https://t.co/jCUQsKp2J8 +10/19/2017,Comedians,@ofctimallen,RT @ComedyCastle: Some familiar faces were at the club today. @jayleno & @ofctimallen filmed a spot for @LenosGarage. Look for it on air th… +10/19/2017,Comedians,@ofctimallen,RT @ComedyCastle: Who says men won’t stop and ask for directions? We had a great time filming for @LenosGarage with @ofctimallen and @jayle… +10/19/2017,Comedians,@ofctimallen,"RT @ComedyCastle: We had an early 80s class reunion last night after @ofctimallen's show. We may have less hair, but are still just as funn…" +10/18/2017,Comedians,@ofctimallen,Hey Salt Lake City- I'll be there this Friday Oct 20th! Hope to see you there. @ecclestheater 8pm #comedy #Standup https://t.co/SS2ZzITcuB +10/11/2017,Comedians,@ofctimallen,Heading to @icehousecomedy on Friday Oct 13th 8pm. Hope to see you! #comedy #standup @ComicTreStewart @frazercomedy https://t.co/0adfCmmYY8 +10/02/2017,Comedians,@ofctimallen,Deeply sad at the horrific killing in Las Vegas. +09/28/2017,Comedians,@ofctimallen,@TheLaughFactory @ComicTreStewart @frazercomedy will be there too +09/28/2017,Comedians,@ofctimallen,"I'll be in Kansas City, MO & St. Louis, MO in Feb 2018 https://t.co/RPazuWOKQ6 https://t.co/Tf9hM8mLQ7" +09/28/2017,Comedians,@ofctimallen,"@NANCI37 @TheLaughFactory I'll be in Rochester, NY 12/2/2017 https://t.co/RPazuWOKQ6" +09/28/2017,Comedians,@ofctimallen,TONIGHT! Hollywood @TheLaughFactory 7:45pm https://t.co/ctjurXGhnN +09/28/2017,Comedians,@ofctimallen,RT @TheLaughFactory: TONIGHT! @ofctimallen returns to the Laugh Factory! #comedy #thursday #hollywood TIX: https://t.co/KQfj9TyKAp https:/… +09/27/2017,Comedians,@ofctimallen,Hope to see you tomorrow in Hollywood! 7:45pm @TheLaughFactory https://t.co/1tMzAbngT9 +09/17/2017,Comedians,@ofctimallen,Pacing backstage. https://t.co/NipRHdFsDm +09/17/2017,Comedians,@ofctimallen,Almost showtime... https://t.co/Mg3LrrBXRg +09/16/2017,Comedians,@ofctimallen,The event staff made me a special snack treat marshmallow treats https://t.co/gjTH6jmyND +09/16/2017,Comedians,@ofctimallen,"The audience still loves me doing the #Tooltime grunt. So... +#RRR" +09/15/2017,Comedians,@ofctimallen,"Landed Ames Iowa, finished sound check in this bad ass theater the sold out Stephens Auditorium off to eat and get… https://t.co/eElvmlXgZS" +09/14/2017,Comedians,@ofctimallen,Tonight! 7:45pm @TheLaughFactory @ComicTreStewart @frazercomedy https://t.co/8jLZm6ZkYC +09/14/2017,Comedians,@ofctimallen,"RT @TheLaughFactory: ALMOST 24 HOURS UNTIL @ofctimallen! +Thursday at 7:45 pm; let the really advanced lying begin. https://t.co/tDgxbJxCfs" +09/11/2017,Comedians,@ofctimallen,The laughs are actually happening a little earlier... 7:45pm Thursday @TheLaughFactory @ComicTreStewart @frazercomedy +09/11/2017,Comedians,@ofctimallen,"RT @TheLaughFactory: Rumor has it we've got an exciting week ahead of us. +Maybe some @ofctimallen? +With a little bit of @moshekasher? +Did…" +09/11/2017,Comedians,@ofctimallen,Thursday! 8pm Hollywood @TheLaughFactory @ComicTreStewart @frazercomedy https://t.co/IGtCNmZo93 +09/07/2017,Comedians,@ofctimallen,"heading to Ames, IA next Friday Sept. 15. https://t.co/RPazuWOKQ6 @StephensAud Hope to see you there!" +08/31/2017,Comedians,@ofctimallen,I'll be in Salt Lake City at @liveattheeccles on Oct. 20th. Hope to see you there! +08/29/2017,Comedians,@ofctimallen,@AJRinDC maybe a few new vlogs soon +08/29/2017,Comedians,@ofctimallen,@C_Friedel88 Dec 1 Reading as close as this tour gets +08/29/2017,Comedians,@ofctimallen,@molaitdc might just be some NEW vlogs coming stay tuned +08/22/2017,Comedians,@ofctimallen,@manymirages if you have to ask..... +08/21/2017,Comedians,@ofctimallen,RT @SlickerSusan: @ofctimallen @HRRocksinoNP Loved your show last night was totally amazing +08/21/2017,Comedians,@ofctimallen,RT @howe_stacy: @ofctimallen @HRRocksinoNP Your show was hilarious 😂 +08/21/2017,Comedians,@ofctimallen,"RT @TaylorNoyes89: Thanks so much for taking the time out to meet with fans in Aurora! Im so happy i was able to meet you, your a great g…" +08/21/2017,Comedians,@ofctimallen,@bmarch84 Friday Oct 20 +08/21/2017,Comedians,@ofctimallen,@Garden_Warrior. Nov 16 Clearwater Ruth Eckerd Hall and then Naples at the Naples Hayes Hall the 17 Nov +08/20/2017,Comedians,@ofctimallen,RT @37christopher73: You killed it @ofctimallen. Haven't laughed that hard in quite awhile! I was in tears at one point! @ParamountAurora +08/19/2017,Comedians,@ofctimallen,Try this. If Jimmy cracked corn and no one's cares why did we sing a song about him. +08/19/2017,Comedians,@ofctimallen,Maybe I will do the ape evolved bit at the gig in the wonderful Paramount theater in IL https://t.co/GfUA7JWh5x +08/18/2017,Comedians,@ofctimallen,"Looking forward to @HRRocksinoNP in Northfield, OH Saturday night" +08/17/2017,Comedians,@ofctimallen,Comedy ain't pretty and to some not so funny +08/16/2017,Comedians,@ofctimallen,"Excited to come to the Paramount Theatre in Aurora, IL on Friday! +@ParamountAurora" +08/16/2017,Comedians,@ofctimallen,If we evolved from apes why are there still apes. +08/07/2017,Comedians,@ofctimallen,"I’m coming home Detroit! + +Get tickets for Sept 17th here! +See you @RoyalOakMusic https://t.co/igG2Usf0f7" +07/09/2017,Comedians,@ofctimallen,Somebody thinks I need a new direction https://t.co/dlOvQzGZ1T +07/09/2017,Comedians,@ofctimallen,Sound check done...showtime in four https://t.co/ePlXVq2BcZ +06/23/2017,Comedians,@ofctimallen,"excited for tonight Waukegan! +@GeneseeTheatre https://t.co/XxexMPqikq" +06/01/2017,Comedians,@ofctimallen,I'll be at the Laugh Factory in Hollywood tonight at 8pm @TheLaughFactory https://t.co/h5y4PCCKfC +05/16/2017,Comedians,@ofctimallen,Stunned and blindsided by the network I called home for the last six years. #lastmanstanding +05/07/2017,Comedians,@ofctimallen,Growing a beard for my role in a movie. I think I look like the most interestingly man in the world my opening act… https://t.co/9rBbSfHnkJ +04/09/2017,Comedians,@ofctimallen,Well well well look who is in Vegas this weekend https://t.co/b51msKaydQ +04/06/2017,Comedians,@ofctimallen,"Don Rickles is one of the biggest reasons I am a comic today. I feel bad, +mostly for everyone in Heaven who will no… https://t.co/q747UcMS6c" +03/17/2017,Comedians,@ofctimallen,Shared some great laughs with @JimmyKimmel last night https://t.co/9RLxYnM84G #KIMMEL https://t.co/DRVX01irE4 +03/09/2017,Comedians,@ofctimallen,"Two more shows to tape for this season,man time flys." +03/02/2017,Comedians,@ofctimallen,Thursday 8pm I'll be at @TheLaughFactory Hollywood https://t.co/bNkYOFBO86 +02/07/2017,Comedians,@ofctimallen,"@Sterlingstoe might want to watch it again, it was all about respect" +01/24/2017,Comedians,@ofctimallen,Thursday 8pm at @TheLaughFactory Hope to see you there https://t.co/9aqluiZUAM +01/23/2017,Comedians,@ofctimallen,@ScottWalker great to meet you and your family anyway +12/30/2016,Comedians,@ofctimallen,@coreyelam a steel statue in Mexico +12/29/2016,Comedians,@ofctimallen,Merry late Christmas and Happy new year to all yall https://t.co/evgynZxgFF +12/24/2016,Comedians,@ofctimallen,@HNLbob Sony RX100 V +12/19/2016,Comedians,@ofctimallen,@YourLocalRave thx for sharing +12/17/2016,Comedians,@ofctimallen,@DudeWithAGuita1 You answered your own question. +12/14/2016,Comedians,@ofctimallen,Check it out tonight- https://t.co/CZeiv95cEQ @LenosGarage #JayLenosGarage +12/10/2016,Comedians,@ofctimallen,@debitdoctor good eye +12/08/2016,Comedians,@ofctimallen,don't forget to vote! People's Choice Awards 2017 https://t.co/novajdEAII +12/06/2016,Comedians,@ofctimallen,"@DebBruce21 And loved the line"" committees ljke this don't want us to get along they're want us to go along""" +12/06/2016,Comedians,@ofctimallen,@mystarcollector its a 62 409 bubble top model just like the real one in my actual garage +12/01/2016,Comedians,@ofctimallen,"at the office, getting ready for Christmas https://t.co/twSTDTn6il" +11/25/2016,Comedians,@ofctimallen,RT @mulho2mj: Caption this. @KeeganMKey @ofctimallen #OnePride #LionsVikings #Lions https://t.co/3pDxpx2BK6 +11/18/2016,Comedians,@ofctimallen,"I like to constantly test out different phones (brands & models). More than often, I get to test and return devices… https://t.co/DkJVsAfrtP" +11/16/2016,Comedians,@ofctimallen,Catch me tomorrow talking with @IAmSteveHarvey https://t.co/XYr5dlVEoa +11/04/2016,Comedians,@ofctimallen,Vegas! tonight & tomorrow https://t.co/IO84EqUYrl @TheMirageLV +10/31/2016,Comedians,@ofctimallen,@samhuntington hey that's mine! +10/30/2016,Comedians,@ofctimallen,@AMBJanitorial yes went to Dora Moore elemtary +10/27/2016,Comedians,@ofctimallen,Walked by the dog's toy in my office & I felt like Sid from Toy Story had been here #ToyStory https://t.co/bKWQPWswGw +10/20/2016,Comedians,@ofctimallen,Sitting in in WGN morning show https://t.co/nXlGZiXA0I +10/09/2016,Comedians,@ofctimallen,RT @NathanBlixt: @ofctimallen great show! +10/09/2016,Comedians,@ofctimallen,RT @LunaCrist: @ofctimallen killed it in Vegas. Haven't laughed that hard in a while. +10/09/2016,Comedians,@ofctimallen,RT @WillisShepherd: @ofctimallen just saw your show in Vegas.... One of the funniest standup routines I've😂 ever seen in my life!!! Loved i… +09/26/2016,Comedians,@ofctimallen,Here's a clip from my ET interview with @nischelleturner https://t.co/Tipt9NzlUV +09/23/2016,Comedians,@ofctimallen,"season premiere of #LastManStanding, tonight at 8|7c on ABC! @NancyATravis @MollyEphraim @amandafuller27 … https://t.co/GsG8T6rplE" +09/22/2016,Comedians,@ofctimallen,TOMORROW! Season 6 premiere #LastManStanding @NancyATravis @MollyEphraim @amandafuller27 @KaitlynDever @StophSanders https://t.co/zU1opk999m +09/21/2016,Comedians,@ofctimallen,@buzzleys do I have chocolate in my teeth +09/21/2016,Comedians,@ofctimallen,Looking at audience for show number four https://t.co/fIGBrSEfaX +09/20/2016,Comedians,@ofctimallen,Look where I am today. Check your local listings to tune in @TheTalkCBS https://t.co/rwCqMAXJAg +09/15/2016,Comedians,@ofctimallen,@DidPatCallOut I have the entire Tool time set in my shop. +09/14/2016,Comedians,@ofctimallen,"Love our last Man set, feel like shopping here. https://t.co/27YN8Jw3bb" +09/09/2016,Comedians,@ofctimallen,Next Thursday I'll be at the Laugh Factory in Hollywood https://t.co/uriuFDBnuY @TheLaughFactory +09/08/2016,Comedians,@ofctimallen,"Got to test the new Blackberry DTEK50. Very light and streamlined. Quality feel, responsive & quick. With BlackBerr… https://t.co/OT5VXjZTFc" +09/02/2016,Comedians,@ofctimallen,Loved having these heroes on set #Navy #Marines #LastManStanding https://t.co/SItDYbUL8i +08/31/2016,Comedians,@ofctimallen,Fleet week guests on our Tuesday taping https://t.co/vij7ZpSyuq +06/28/2018,Comedians,@JimBreuer,RT @The7Line: Hang with @JimBreuer and @DarrenJMeenan on @orangebluething tomorrow night. 6pm EDT on FB Live and Periscope. https://t.co/w5… +06/27/2018,Comedians,@JimBreuer,"RT @joerogan: Pre-sale tickets for Philly and Columbus go on pre-sale today at 12pm local time. Password is: STRANGE +https://t.co/QaS20jiV…" +06/27/2018,Comedians,@JimBreuer,https://t.co/n9Kg7vj4pV +06/27/2018,Comedians,@JimBreuer,"RT @The7Line: Some say laughter is the best medicine, so we hit up our boy @JimBreuer for a little therapy this week. He'll be hanging in s…" +06/27/2018,Comedians,@JimBreuer,https://t.co/p99vFNvvST +06/25/2018,Comedians,@JimBreuer,"RT @StressFactoryNJ: Tomorrow!! Tues, June 26th! Come out to see the hilarious @JimBreuer “work it all out” His last two shows @Vinnie_Bran…" +06/25/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @Vinnie_Brand: It's #MondayMorning and I'm planning my week. Monday @Maddiebranddd graduates! Tues… +06/25/2018,Comedians,@JimBreuer,"RT @ComedyPlugs: RT @StressFactoryNJ: Tomorrow!! Tues, June 26th! Come out to see the hilarious @JimBreuer “work it all out” His last two s…" +06/25/2018,Comedians,@JimBreuer,@papazildjian Next time say hello :) +06/25/2018,Comedians,@JimBreuer,"RT @richmacleod: Hansel Robles made his Angels debut today, and allowed a go-ahead home run in the 10th inning. + +........he pointed. https:…" +06/17/2018,Comedians,@JimBreuer,@1zombie3 No sweeping in AZ :) MATZmerized +06/16/2018,Comedians,@JimBreuer,@Tinabobina808 This week +06/16/2018,Comedians,@JimBreuer,@TheGarofaholic @ImRobKelly Me too! +06/16/2018,Comedians,@JimBreuer,https://t.co/E9v9rHu0tK +06/15/2018,Comedians,@JimBreuer,@D10011980 Bring me over !!!! +06/15/2018,Comedians,@JimBreuer,@masonkeith25 Thank you ! +06/15/2018,Comedians,@JimBreuer,@gwenluv22 @train @patmonahan @TheParamountNY I’m especially looking forward to that one ! +06/15/2018,Comedians,@JimBreuer,@Tinabobina808 Soon ! I promise +06/15/2018,Comedians,@JimBreuer,@gwenluv22 @train @patmonahan Thanks Amy +06/15/2018,Comedians,@JimBreuer,@peterth90230029 Ha ha no ! +06/15/2018,Comedians,@JimBreuer,Train last night at MSG was amazing ! https://t.co/rM5f0h3szE +06/13/2018,Comedians,@JimBreuer,RT @TigersJUK: How have I never seen this with the audio before? https://t.co/SGg9KNZk2l +06/11/2018,Comedians,@JimBreuer,See you all TOMORROW NIGHT in NEW BRUNSWICK NJ for another night of “working it out “ at the Stress Factory ! +06/11/2018,Comedians,@JimBreuer,@MFaretty @MichaelMatolchi HOLY HOLY HOLY $&@% +06/11/2018,Comedians,@JimBreuer,@stewspringsteen Looking good ????? +06/11/2018,Comedians,@JimBreuer,@MPardoski @SoCalValerie @IAmJericho @jericho_cruise @JRsBBQ @RealDDP @FOZZYROCK @RealMickFoley @reymysterio… https://t.co/JiFLfSOufH +06/11/2018,Comedians,@JimBreuer,HEY METS FANS !!! Mets vs Yanks ? Is that a Bigfoot ? Or a Mets victory ? https://t.co/XQ6799VsqW +06/09/2018,Comedians,@JimBreuer,Mets fan THERAPY VENT https://t.co/PNGL0EMQmj +06/08/2018,Comedians,@JimBreuer,@danny10070222 You got it +06/08/2018,Comedians,@JimBreuer,@MikeDHernandez1 @Guitarmacist @StressFactoryNJ Giant Stadium ?? Parking lot ? Was that you ? +06/08/2018,Comedians,@JimBreuer,@OchoDeano Thank you - Netflix doesn’t want me .. +06/08/2018,Comedians,@JimBreuer,@Squale_63 I don’t even think about hits ??? +06/08/2018,Comedians,@JimBreuer,@Kellyc32674 @CitiField No - I can’t watch . +06/08/2018,Comedians,@JimBreuer,@BrentStaggs4 South Pacific +06/08/2018,Comedians,@JimBreuer,@The7Line @The7LineArmy GOD knows we ALL need the laughs !!! +06/08/2018,Comedians,@JimBreuer,"RT @The7Line: SAVE THE DATE! August 18th at the Paramount in Huntington. @JimBreuer reserved the entire upper mezz, lower mezz, and skybar…" +06/08/2018,Comedians,@JimBreuer,@djdemand @StressFactoryNJ @Vinnie_Brand @derick_stress See you Tues! +06/08/2018,Comedians,@JimBreuer,RT @Guitarmacist: Great night with @JimBreuer! His one man show in the works! I told him we camped out for tickets to the show. @StressFact… +06/08/2018,Comedians,@JimBreuer,@nic_linz That was a fun night too ! Thank you - hopefully see you again this Tues +06/08/2018,Comedians,@JimBreuer,@The7Line @The7LineArmy We’re gonna need to some LAUGHS by this MONDAY !!! +06/08/2018,Comedians,@JimBreuer,RT @The7Line: Thanks to @JimBreuer for setting aside special tickets for @The7LineArmy on August 18th at the Paramount out in Huntington. T… +06/08/2018,Comedians,@JimBreuer,@OchoDeano Thank you ! +06/08/2018,Comedians,@JimBreuer,RT @StressFactoryNJ: @JimBreuer IS BACK!!! June 12th at @Vinnie_Brand’s @StressFactoryNJ ! GET TIX ASAP!! Will sell out!! Go to: Stress htt… +06/08/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: @JimBreuer IS BACK!!! June 12th at @Vinnie_Brand’s @StressFactoryNJ ! GET TIX ASAP!! Will sell out!!… +06/08/2018,Comedians,@JimBreuer,@Guitarmacist Ha ha ha ... thank you .. +06/08/2018,Comedians,@JimBreuer,https://t.co/0TLCTsV4FM +06/05/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: Tuesday!!! @JimBreuer the most hilarious man on earth will be doing new material at @Vinnie_Brand ‘s… +05/25/2018,Comedians,@JimBreuer,@ultimatebrownie It is! +05/24/2018,Comedians,@JimBreuer,RT @Mighty1ne: @JimBreuer https://t.co/1be9rrjti6 +05/24/2018,Comedians,@JimBreuer,@Mighty1ne Omg Hilarious ! +05/24/2018,Comedians,@JimBreuer,@JuliaElleneSage Whoops ! Ok +05/24/2018,Comedians,@JimBreuer,@clydeallfie Easy +05/24/2018,Comedians,@JimBreuer,@theonlyjohnnyo @Slayer @Metallica See you in Madison ! +05/24/2018,Comedians,@JimBreuer,@FayeHunter @BigNoseKatesAZ Regulator ! +05/24/2018,Comedians,@JimBreuer,@BMSMaxContract Ahhhhhhhh +05/24/2018,Comedians,@JimBreuer,Watching the Mets Play https://t.co/PS9JrKAqGn +05/23/2018,Comedians,@JimBreuer,@ChrisFlanders8 @FigSNY I guess so - I’m not very bright you know ! +05/23/2018,Comedians,@JimBreuer,@joehates @FigSNY Ok +05/23/2018,Comedians,@JimBreuer,@BMSMaxContract My favorite song +05/23/2018,Comedians,@JimBreuer,@JerseyTerp @MrBrianKenny Long live Paint ! +05/23/2018,Comedians,@JimBreuer,@carnage526 @ryanBoucher7 Every metallica show +05/23/2018,Comedians,@JimBreuer,@jolojr55 @FigSNY Ha ha ha - I’m gonna Plunk him with my 53 MPH fastball! +05/23/2018,Comedians,@JimBreuer,@FigSNY Love Nelson Figueroa ! He should be a coach or analyst ! I can listen to him breakdown pitching mechanics &… https://t.co/H1X3xHMo0O +05/22/2018,Comedians,@JimBreuer,@JB511L94 That would of been cool +05/22/2018,Comedians,@JimBreuer,@Jfierro17 Hopefully ! +05/22/2018,Comedians,@JimBreuer,@ryanBoucher7 That’s a Metallica show . I’m not doing stand up comedy that night . Comedy yes ! Great rock game sho… https://t.co/ID7X2BABEQ +05/22/2018,Comedians,@JimBreuer,@Tinabobina808 Oh man! Heebie Geebies +05/22/2018,Comedians,@JimBreuer,A METS fan recap of tonight’s game https://t.co/iNoxP7O4PC +05/22/2018,Comedians,@JimBreuer,@GaffinSr @ScollinCollin Not stand up ! It’s a pre party Rock game show arena style ! +05/21/2018,Comedians,@JimBreuer,@cozcav “You’re welcome Canada !” Ha Ha Ha ha +05/21/2018,Comedians,@JimBreuer,@ngl0917 Family +05/21/2018,Comedians,@JimBreuer,"RT @Vinnie_Brand: You've been begging Me for @JimBreuer @StressFactoryNJ so here it is. + +One Show. June 5th. Jim is working out his one ma…" +05/21/2018,Comedians,@JimBreuer,"RT @Vinnie_Brand: You've been begging Me for @JimBreuer @StressFactoryNJ so here it is. + +One Show. June 5th. Jim is working out his one ma…" +05/21/2018,Comedians,@JimBreuer,@LarryCT @OpieRadio @JimNorton Sorry to hear about your mom . Glad I could help somehow :) +05/21/2018,Comedians,@JimBreuer,@Alex172005_ Ha ha the Vanisher ! +05/21/2018,Comedians,@JimBreuer,@treysuschrist Definitely ! +05/21/2018,Comedians,@JimBreuer,@ImRobKelly @ItsKaranSoni So many lines - I have to see it again +05/21/2018,Comedians,@JimBreuer,@NoCoothJoe Yes :) +05/21/2018,Comedians,@JimBreuer,@Beezer1971 Thank YOU +05/21/2018,Comedians,@JimBreuer,@ScollinCollin Ha ha ha - no it’s staged - it was a long time ago +05/21/2018,Comedians,@JimBreuer,@DonnieA21 Not at all! First one was hilarious too +05/21/2018,Comedians,@JimBreuer,"Ryan Reynolds kills it in Deadpool 2! +I thought it was FUNNIER than the first one !!!" +05/21/2018,Comedians,@JimBreuer,@odendog77 Thank you David! +05/21/2018,Comedians,@JimBreuer,@ngl0917 Just left Tampa! +05/21/2018,Comedians,@JimBreuer,@ajf5150 @pizzahut It’s staged :) +05/21/2018,Comedians,@JimBreuer,@Tinabobina808 Saw this ! +05/21/2018,Comedians,@JimBreuer,@DBREM81 Sorry for the sweep +05/21/2018,Comedians,@JimBreuer,@Toughmutter Have a safe flight :) +05/18/2018,Comedians,@JimBreuer,@Jfierro17 Possibly :) +05/18/2018,Comedians,@JimBreuer,@Tdot71 @JohnnyG_012 See you then ! +05/18/2018,Comedians,@JimBreuer,@ngl0917 Ha ha ha +05/18/2018,Comedians,@JimBreuer,"RT @Tinabobina808: @JimBreuer’s Podcast 88 spoke to me & my family’s fight with cancer. The insight Jim & Dee provided “heart felt, beautif…" +05/18/2018,Comedians,@JimBreuer,@Tinabobina808 @PAUmaui Done !!! +05/17/2018,Comedians,@JimBreuer,@JohnnyG_012 Wow !!! That was a few years back !!! At the end of the show +05/16/2018,Comedians,@JimBreuer,@wbd18258 Ha ha ha +05/16/2018,Comedians,@JimBreuer,@Tinabobina808 Podcast tomorrow ! You might want to listen . Hitting your life big time +05/16/2018,Comedians,@JimBreuer,@PizzaManJim @HRRocksinoNP See you then ! +05/15/2018,Comedians,@JimBreuer,@TarN8tion @vicdibitetto Yes I reached out after he started . Not sure how to pull it off but we may figure something out +05/15/2018,Comedians,@JimBreuer,@nytexpat @BComptonNHL This was last Saturday +05/15/2018,Comedians,@JimBreuer,@PeabodyBaseball It’s was time for both to move on +05/15/2018,Comedians,@JimBreuer,@nytexpat @BComptonNHL This past Saturday at the Paramount Huntington NY . We film every show :) +05/15/2018,Comedians,@JimBreuer,The state of METS & YANKEE FANS https://t.co/k96JqnUBpn +05/15/2018,Comedians,@JimBreuer,@PeabodyBaseball Thanks John +05/15/2018,Comedians,@JimBreuer,RT @PeabodyBaseball: Met fans vs Yankee fans by @JimBreuer https://t.co/cieEHoml6v +05/15/2018,Comedians,@JimBreuer,@loveg30 @bernieandsid @sidrosenberg Love their show +05/15/2018,Comedians,@JimBreuer,RT @BMSMaxContract: @JimBreuer on Mother's Day #BREUERRRRRRRR 🤣🤣🤣🤣 https://t.co/gm54vhY7SD +05/14/2018,Comedians,@JimBreuer,@RudyinQueens Sorry to hear about your Grandpa .. glad the goat cheered you uuuuuup +05/14/2018,Comedians,@JimBreuer,@nancy24195771 Thank YOU ! Hope so see you there again +05/12/2018,Comedians,@JimBreuer,@aderb66 No . They SOUND like them . Act like them +05/12/2018,Comedians,@JimBreuer,@DebbieYoung1 I did . I’d like to see how they grow +05/12/2018,Comedians,@JimBreuer,@ZepFan Same +05/12/2018,Comedians,@JimBreuer,@DebbieYoung1 Fair enough +05/12/2018,Comedians,@JimBreuer,@MScardinoJr I will see if I can make it +05/12/2018,Comedians,@JimBreuer,@AlexChipperson So far so good ..thanks for asking +05/12/2018,Comedians,@JimBreuer,@ajignatz Same +05/12/2018,Comedians,@JimBreuer,@RandaGary1 We did ! Lost three adults to injuries lol !! Not even kidding. +05/12/2018,Comedians,@JimBreuer,@MrWilliamTyler They were great . Curious to see their growth a year or two from now +05/12/2018,Comedians,@JimBreuer,RT @tweedrules: LONG LIVE PAINT!!!! @JimBreuer https://t.co/u3zNjrmMs7 +05/12/2018,Comedians,@JimBreuer,@ngl0917 Who knows ? Maybe a MONTH from now it’s back on the table ?! ..... yeah .. NO +05/12/2018,Comedians,@JimBreuer,Waiting at the Starland Ballroom . Can’t wait ! https://t.co/Pl0aaL2Z1w +05/11/2018,Comedians,@JimBreuer,@Baldassano Clearly he’s a tad slow.. +05/10/2018,Comedians,@JimBreuer,"Little Rascals ? No , Long Island kids back in the day https://t.co/pbaGyftaSe" +05/07/2018,Comedians,@JimBreuer,@curly_girl7326 That place was great ! +05/07/2018,Comedians,@JimBreuer,@RicKnight203 @StressFactoryCT Wow - I remember looking at that noggin of yours too! Glad you had a good time . Ev… https://t.co/34btZADTaZ +05/07/2018,Comedians,@JimBreuer,@BMSMaxContract Ha ha ha ha SUP +05/07/2018,Comedians,@JimBreuer,"@ngl0917 Yeah , I’m no dummy" +05/07/2018,Comedians,@JimBreuer,@EaglesAnarchy Text Breuer at 42828 to join the mailing list . Then you will know next time . See you then hopefully +05/07/2018,Comedians,@JimBreuer,@JMinichowski Yes it is :) +05/06/2018,Comedians,@JimBreuer,Mets fan - Yankees & Rehab https://t.co/iWwh3bf1Rb +05/03/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @JimBreuer: I will be at the Grand Opening is the Stress Factory Bridgeport Ct Thursday ! https://… +05/03/2018,Comedians,@JimBreuer,RT @991PLRFM: Exciting day in #Bridgeport as it was the big ribbon cutting ceremony at @Vinnie_Brand’s @StressFactoryCT Comedy Club. See @J… +05/03/2018,Comedians,@JimBreuer,"RT @959thefox: See @JimBreuer this grand opening weekend at the new +@Vinnie_Brand @StressFactoryCT in Bridgeport! +https://t.co/seqmcGMoZq…" +05/03/2018,Comedians,@JimBreuer,@PenzenikGeorge Ha ha ha +05/03/2018,Comedians,@JimBreuer,A Mets fan recap https://t.co/xSK0geqXNQ +05/02/2018,Comedians,@JimBreuer,RT @Vinnie_Brand: IT's here! @StressFactoryCT opens MAY 3- 5 @JimBreuer @garyowencomedy & @TheRealDiceClay @artiequitter @mariabamfoo @Titu… +05/02/2018,Comedians,@JimBreuer,"I will be at the Grand Opening is the Stress Factory Bridgeport Ct Thursday ! +https://t.co/i7lpaVXcy1" +05/01/2018,Comedians,@JimBreuer,Today I will be on MLB Network Live 4 pm https://t.co/kuseqRROR0 +05/01/2018,Comedians,@JimBreuer,@marty140722 Me too ! It was great to have you both there +05/01/2018,Comedians,@JimBreuer,@PenzenikGeorge This cracks me up every time I see it +05/01/2018,Comedians,@JimBreuer,@makeitepic @943TheShark @TheParamountNY It was nice to meet you the other morning +05/01/2018,Comedians,@JimBreuer,https://t.co/BAYtAtl5d4 +04/30/2018,Comedians,@JimBreuer,@CJBroschart Great to hear! +04/30/2018,Comedians,@JimBreuer,@ClosetsByML That was the best when I read that ! Thank you for the moment ! +04/30/2018,Comedians,@JimBreuer,"RT @AndoodTX: Woke up with this in my head. 🤘🤘Jim Breuer and the Loud & Rowdy ""Thrash"" https://t.co/DtG3zhN71t via @YouTube @JimBreuer" +04/30/2018,Comedians,@JimBreuer,@Mets4aces This week +04/30/2018,Comedians,@JimBreuer,@InfoSec_Brian Congrats ! I met her at Bernies . I remember +04/30/2018,Comedians,@JimBreuer,"@AndrewSuydam @StressFactoryNJ I’m opening Vinny’s New Place THIS weekend in Bridgeport Ct, I’ve played the State T… https://t.co/oG9lUY8zHB" +04/30/2018,Comedians,@JimBreuer,@BrosanMichael “My Bad!” Glad you had a good time +04/30/2018,Comedians,@JimBreuer,@ngl0917 Your team is a given . Mine is a hope :) +04/29/2018,Comedians,@JimBreuer,@FoodNetworkGuru That was a great spot ! +04/29/2018,Comedians,@JimBreuer,@WGCR Can’t wait to be back +04/29/2018,Comedians,@JimBreuer,@nsolddomains Bahhh +04/29/2018,Comedians,@JimBreuer,@AndrewSuydam Not in the near future :( +04/29/2018,Comedians,@JimBreuer,@laughrodite4u @FRESYEPP Ha ha ha +04/29/2018,Comedians,@JimBreuer,@janelliebelly See you next time hopefully +04/29/2018,Comedians,@JimBreuer,@nickley20 Nora - glad you both had a good time ! +04/29/2018,Comedians,@JimBreuer,@SundayLeith Don’t piss the GRIZZLY OFF +04/29/2018,Comedians,@JimBreuer,@leemooreTIS Thank YOU LEE +04/29/2018,Comedians,@JimBreuer,@garlicNonions Dani- glad you made it +04/29/2018,Comedians,@JimBreuer,@mikepmcs Mike ! Much appreciated +04/29/2018,Comedians,@JimBreuer,@chrisgojet Thank YOU for making me part of your night ! +04/29/2018,Comedians,@JimBreuer,@gnbrotz Thank YOU! +04/29/2018,Comedians,@JimBreuer,@janelliebelly Hope you had a great time !! Happy Birthday +04/29/2018,Comedians,@JimBreuer,See you all NEXT WEEKEND in BRIDGEPORT CT !!! Grand Opening of the STRESS FACTORY +04/27/2018,Comedians,@JimBreuer,RT @1023WBAB: Clear your schedule for the next hour. @RogerandJP are replaying their hang out with @JimBreuer from earlier this week now. L… +04/26/2018,Comedians,@JimBreuer,@Notsofunny78 And they went ! +04/26/2018,Comedians,@JimBreuer,@Thejoke_err Thanks Johnny ! Hopefully you can make it ! +04/23/2018,Comedians,@JimBreuer,@WGCR Unfortunately that’s not shared with anyone . +04/23/2018,Comedians,@JimBreuer,@EvansParreira @RobertDowneyJr @normmacdonald @iamcolinquinn Wow forgot about one . I liked when Norm was in sketch… https://t.co/eu18691Mx0 +04/23/2018,Comedians,@JimBreuer,@WGCR Garret you Metal Head !!! Glad I had a moment to say hello ! Thank you for being there brutha +04/23/2018,Comedians,@JimBreuer,@sobba564 @StanleyHotelCO Leo! It was Great to meet you and your lovely wife ! Thank you again !! +04/23/2018,Comedians,@JimBreuer,@PSCaramel @amazon Thank you ! Just made my morning +04/23/2018,Comedians,@JimBreuer,RT @PSCaramel: @JimBreuer I have watched your new special on @amazon three times now and every single time I have a headache and my ribs hu… +04/22/2018,Comedians,@JimBreuer,@CO_bunni @JoeSib Thank you for being there ! +04/22/2018,Comedians,@JimBreuer,@ThomasKetchum5 Working on it Thomas ! +04/22/2018,Comedians,@JimBreuer,@joeymook @TheRealDiceClay @StressFactoryCT See you then ! +04/22/2018,Comedians,@JimBreuer,@ynot_23 @DBS_BR No... +04/22/2018,Comedians,@JimBreuer,@robberger70 @Metallica Thank you ! See you in Vegas! Metallicaaaaaa +04/22/2018,Comedians,@JimBreuer,@PenzenikGeorge Ha ha ha +04/22/2018,Comedians,@JimBreuer,@ddouma75 Animals!! +04/22/2018,Comedians,@JimBreuer,RT @joeymook: @JimBreuer @TheRealDiceClay Looking forward to seeing you guys at the new @StressFactoryCT ! +04/22/2018,Comedians,@JimBreuer,Bill Burr you are a living legend ! Hope all is well in Burr World! https://t.co/kRkLmXfCf4 +04/22/2018,Comedians,@JimBreuer,Thank You Rich! https://t.co/yv22uGh9tb +04/22/2018,Comedians,@JimBreuer,"@DBS_BR 3-0 , 1st and 2 nd 1 our dick in the 8 th Dick" +04/22/2018,Comedians,@JimBreuer,@DBS_BR I am dick +04/22/2018,Comedians,@JimBreuer,This is how to PARTY AT 50!!! https://t.co/JhSBoTSxbb +04/20/2018,Comedians,@JimBreuer,@FreeSpirited001 @jennifermulson @StanleyHotel @tompapa Me too! +04/20/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryCT: RT @BizSuperstar: @JimBreuer to headline Bridgeport comedy club’s opening https://t.co/8UukAypnre #co… +04/19/2018,Comedians,@JimBreuer,@ngl0917 What do I get ? +04/19/2018,Comedians,@JimBreuer,"RT @jennifermulson: New pavilion @StanleyHotel in #estespark will offer robust entertainment lineup, including @JimBreuer and @tompapa this…" +04/19/2018,Comedians,@JimBreuer,"RT @WBESBrandonLowe: Huge guest announcement for next Tuesday's show. We will have . @JimBreuer +He is coming to Charles Town, WV April 28t…" +04/19/2018,Comedians,@JimBreuer,RT @Marisu62: @JimBreuer biggest fan ever!! love you Can you retweet please. For the Veterans. Check us out. Plllleeeease???? https:… +04/19/2018,Comedians,@JimBreuer,7 line Army RULES !!!! Thank YOU !!! Let’s Go Mets ! https://t.co/CXpoJk9ccX +04/18/2018,Comedians,@JimBreuer,RT @Tinabobina808: Dress up for your date. Bring it back to your first date! Dee you are so on it!!! I like to look pretty for my husband w… +04/18/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @BizSuperstar: @JimBreuer to headline Bridgeport comedy club’s opening https://t.co/8UukAypnre #co… +04/17/2018,Comedians,@JimBreuer,@peterth90230029 Ha ha ha +04/17/2018,Comedians,@JimBreuer,@Tinabobina808 @Mets @TommyBahama Love it !!! +04/17/2018,Comedians,@JimBreuer,Mets and Nationals .. fear https://t.co/QewbCzEML6 +04/16/2018,Comedians,@JimBreuer,House of Breu’s https://t.co/wo0wOHqSLA +04/16/2018,Comedians,@JimBreuer,RT @Joey_Paints: Walking off a bad loss with a walk-off ! #LGM  #Mets #MetsTwitter @keithhernandez @JonHeyman @pgammo @FigSNY @AnthonyDiCom… +06/28/2018,Comedians,@ericandre,Starting a band with @TVCARNAGE and @Ocasio2018 🎸 🎶 🎷 https://t.co/7ZCgywrIcW +06/28/2018,Comedians,@ericandre,RT @philiplouie01: Going LIVE with @TVCARNAGE at NOON @BUILDseriesNYC and https://t.co/ul3lrtr4Bd! #Mostly4Millennials https://t.co/iwXy92r… +06/28/2018,Comedians,@ericandre,"RT @colbertlateshow: TONIGHT: Stephen sits down with @MMFlint, @ericandre and @TVCARNAGE talk #Mostly4Millenials, and we chat with @Ocasio2…" +06/28/2018,Comedians,@ericandre,"RT @BUILDseriesNYC: ""It was kismet, baby!"" - @TVCARNAGE reveals how he became friends with @ericandre. #Mostly4Millenials @adultswim https:…" +06/28/2018,Comedians,@ericandre,"Matt Groening’s ‘Disenchantment’ First-Look Teaser: Elf, Demon &amp; Party Princess https://t.co/HvfYXza74B via @deadline" +06/28/2018,Comedians,@ericandre,Disenchantment | Teaser [HD] | Netflix https://t.co/V5PCfaJurC via @YouTube +06/28/2018,Comedians,@ericandre,I’m performing in Madison! https://t.co/05Ub3ERlG6 +06/27/2018,Comedians,@ericandre,https://t.co/05Ub3ERlG6 +06/27/2018,Comedians,@ericandre,@VeraPapisova I saw at it at a wine bar. It’s called Salami 😂 +06/17/2018,Comedians,@ericandre,I’m back in Paris https://t.co/Y60P216M9J +06/15/2018,Comedians,@ericandre,I’m crying my eyes out watching this Mr. Rogers doc. 😭MISTER ROGERS' NEIGHBORHOOD | Lady Aberlin and Daniel Tiger T… https://t.co/C5gsdpt39W +06/13/2018,Comedians,@ericandre,Upgrade is a fucking incredible movie 🎥 🍿 +06/12/2018,Comedians,@ericandre,"RT @SenSanders: We have a racist criminal justice system that costs us billions of dollars, ruins lives and allows private prisons to profi…" +06/12/2018,Comedians,@ericandre,RT @morgan_murphy: why does the news tonight look like the exit confessional from a reality show called batshit house? https://t.co/tFLWTrX… +06/12/2018,Comedians,@ericandre,"RT @gray: Have to wait another three months for Matt Groening’s @disenchantment, but already obsessed with @ericandre’s personal demon, Luc…" +06/11/2018,Comedians,@ericandre,"RT @thefader: Watch a trailer for Adult Swim’s Mostly 4 Millenials, produced by @ericandre https://t.co/RzlphaH0VP https://t.co/g1F8dhjpSe" +06/11/2018,Comedians,@ericandre,RT @okayplayer: Watch the wild trailer for @ericandre's new Adult Swim TV series 'Mostly 4 Millennials.' https://t.co/411H7SPKc9 https://t.… +06/11/2018,Comedians,@ericandre,RT @PasteMagazine: Watch @joeyBADASS watch Derrick Beckles (@TVCARNAGE) get peanut butter licked off his feet in the batshit trailer for @e… +06/11/2018,Comedians,@ericandre,"RT @thefader: Watch a trailer for Adult Swim’s @ericandre-produced 'Mostly 4 Millenials.' +https://t.co/RzlphaH0VP https://t.co/usiAoXvSpo" +06/11/2018,Comedians,@ericandre,RT @okayplayer: Watch the wild trailer for @ericandre's new Adult Swim TV series 'Mostly 4 Millennials.' https://t.co/411H7SPKc9 https://t.… +06/11/2018,Comedians,@ericandre,@RuPaul I love you! +06/11/2018,Comedians,@ericandre,"@munchies Can you introduce me to Clovis! I'm headed to Paris! i want to DRINK +https://t.co/7KtGIBFTh4" +06/11/2018,Comedians,@ericandre,@munchies Introduce me to Clovis! I'm headed to Paris! thank you! https://t.co/7KtGIBFTh4 +06/06/2018,Comedians,@ericandre,Derrick Beckles and Eric Andre’s New Show Looks Insane and Disgusting https://t.co/75TnblP8g8 via @vulture +06/05/2018,Comedians,@ericandre,Vote 4 the Queen Gayle McLaughlin for Lt. Governor - CA! +06/02/2018,Comedians,@ericandre,Nardwuar's questions give priceless reactions https://t.co/Mqx4lh0pVD via @YouTube +05/23/2018,Comedians,@ericandre,"RT @rickkosick: Here’s another photo from @tonyhawk’s big 50th birthday party and this ones with @christianhosoi. Oh yeah, I’m also with @e…" +05/23/2018,Comedians,@ericandre,RT @thefader: .@ericandre to star in new cartoon from Simpsons creator Matt Groening. https://t.co/yutWx14DTT https://t.co/ptPEwFRc6G +05/23/2018,Comedians,@ericandre,RT @IndieWire: Matt Groening's new series #Disenchantment will premiere August 17 on @netflix. Here's your first look at the series which f… +05/23/2018,Comedians,@ericandre,"Netflix Sets ‘Disenchantment’ Premiere Date, Unveils First Look At Matt Groening Animated Series https://t.co/1GJXCT7eRg via @deadline" +04/17/2018,Comedians,@ericandre,How do we convince @iamcardib to give birth on stage? #freesyria +02/21/2018,Comedians,@ericandre,"RT @eric_sennse: Si vous croisez @ericandre à Paris, ce n'est pas moi ! Comme disait Coluche : ""un chapeau, pas de sac, c'est une faute de…" +02/19/2018,Comedians,@ericandre,Me and @alejodorowsky https://t.co/DdvtvKC0ES +12/16/2017,Comedians,@ericandre,Me and Freddy Mercury share the same opinion of Star Wars. +10/07/2017,Comedians,@ericandre,I’m opening up a brunch restaurant called Planet of the Crepes. +08/02/2017,Comedians,@ericandre,"""Yo Pierre you wanna come out here?"" is the ""Damn son where'd you find this?"" Of 2017" +07/16/2017,Comedians,@ericandre,"Real quick, what's everyone's political opinion?" +06/26/2017,Comedians,@ericandre,"Next year, I want Richard Dreyfuss to host the BET Awards." +06/04/2017,Comedians,@ericandre,They should have a cash cab option on uber. +05/18/2017,Comedians,@ericandre,Old health nut Roger Ailes passed away?!?! +05/04/2017,Comedians,@ericandre,"My drag name is Steve ""Shannon"" Bannon. @RuPaul do you approve?" +04/29/2017,Comedians,@ericandre,Taylor Swift assassinated Patrice Lumumba. +04/29/2017,Comedians,@ericandre,Taylor Swift helped put Pinochet in power. +04/27/2017,Comedians,@ericandre,Taylor Swift sold arms to Iran illegally then funneled the money into Nicaraguan contras. +04/26/2017,Comedians,@ericandre,@taylorswift13 is a hatchet man for a New World Order +04/26/2017,Comedians,@ericandre,Taylor Swift is an errand boy for grocery clerks sent to collect a bill +04/26/2017,Comedians,@ericandre,Taylor Swift is a false prophet +04/19/2017,Comedians,@ericandre,I actually thought Aaron Hernandez would replace Bill O'Reilly... 😳 +04/11/2017,Comedians,@ericandre,@united coach is like a fucking juggalo mosh pit. #fuckunitedairlines +04/11/2017,Comedians,@ericandre,Happy Sibling Day https://t.co/WnAvTUQqXy +04/03/2017,Comedians,@ericandre,With Jon Stewart gone I get most of my news from World Star's Instagram. +03/03/2017,Comedians,@ericandre,Washington Phillips is the Daniel Johnston of Robert Johnsons. +03/03/2017,Comedians,@ericandre,I'm the Super Nintendo In Charge. #hnic +11/09/2016,Comedians,@ericandre,"Really excited about Trump's cabinet: Christie, Gingrich, George Zimmerman, Robert Durst, Skeletor, & the Cobra Kai." +11/09/2016,Comedians,@ericandre,How do we get rid of the electoral college? Also who the fuck is in the electoral college? +11/09/2016,Comedians,@ericandre,I want to see @realDonaldTrump 'a birth certificate. +11/03/2016,Comedians,@ericandre,You think the owner of The Indians will pass out smallpox blankets if they lose? #retirechiefwahoo +11/01/2016,Comedians,@ericandre,Disappointed no one went as @hannibalburess brother for Halloween https://t.co/7DNkFZKixG +10/31/2016,Comedians,@ericandre,@KingJames can you convince your town to get rid of their racist ass baseball mascot? It's 2016. Tell Larry Dolan to read some Howard Zinn +10/28/2016,Comedians,@ericandre,How do I convince @hannibalburess to be Kimbo Slice for Halloween?? +10/27/2016,Comedians,@ericandre,https://t.co/BZSEw1GkvK +10/17/2016,Comedians,@ericandre,Did you know that everyone from the movie The Sandlot is dead...? +10/08/2016,Comedians,@ericandre,U'r right internet! Comedy & politics don't mix! Fuk u George Carlin! Richard Pryor! Bill Hicks! Lenny Bruce! What do u know about comedy! +09/24/2016,Comedians,@ericandre,I feel like The Civil War AND The Crusades never officially ended. I also feel like Eddie Murphy doesn't age. He looks fantastic! #Unrelated +09/11/2016,Comedians,@ericandre,Just saw American Sniper! They forgot to include Chris Kyle bragging about killing black people during Hurricane Katrina! That's his #1 hit! +09/04/2016,Comedians,@ericandre,Trying to patent a crystal meth Vape pen. Library of congress not responsive. +08/30/2016,Comedians,@ericandre,Leaked photo of a Bernie Sanders lemon party. Not photo shopped. 100% real. #wikileaks https://t.co/qRRAwouppb +08/02/2016,Comedians,@ericandre,Boba Tea in my lap and it's freezin my balls #ripeazye +07/28/2016,Comedians,@ericandre,@hannibalburess https://t.co/tuZ8379zwF +06/25/2016,Comedians,@ericandre,I just want to meet a woman who could butt chug a bong rip +06/23/2016,Comedians,@ericandre,How satisfying would it be to shave @RickRubin +06/16/2016,Comedians,@ericandre,What ever happened to El Chapo fighting ISIS? Kinda bummed that didn't happen. ;( +06/09/2016,Comedians,@ericandre,Christie Brinkley is 82 years old and still looks hotter than most 26 year olds. +05/23/2016,Comedians,@ericandre,What do you think Ariana Grande got on her SAT's? +05/20/2016,Comedians,@ericandre,Happy 5:20 bro https://t.co/uGhaVQIv9Z +05/19/2016,Comedians,@ericandre,Tyler Perry should remake Salo +05/15/2016,Comedians,@ericandre,If young metro don't shoot ya I don't trust you. #halloween #taliban +05/13/2016,Comedians,@ericandre,Can @rihanna write a song about kale please? 🌿 +05/11/2016,Comedians,@ericandre,I'm thinking about getting goat pupil contact lenses. +04/16/2016,Comedians,@ericandre,I can't believe it's 2016 and George Zimmerman hasn't been murdered yet. #zimmermanhollagramatcoachella? +04/09/2016,Comedians,@ericandre,I'm at the age where I still pick my nose but I throw my boogers in the garbage like a gentleman. +03/29/2016,Comedians,@ericandre,"I will join any band that asks me for, for one show." +03/27/2016,Comedians,@ericandre,I walked in on my parents 69'ing. +03/24/2016,Comedians,@ericandre,Let's make up new sex moves. #sexmoves 1. French Exit 2. Tuxedo Surprise. 3. Potato Boy +03/24/2016,Comedians,@ericandre,I'm just looking for a narcissist who looks better in pictures... +03/24/2016,Comedians,@ericandre,"Im just looking for a nice high maintenance girl who uses the dogface on snapchat, takes tons of selfies, and listens to Taylor Swift." +02/27/2016,Comedians,@ericandre,@kanyewest @adampally BILL COSBY IS A NARC!!!!! +02/10/2016,Comedians,@ericandre,JEFFREY DAHMERS INNOCENT!!! +01/19/2016,Comedians,@ericandre,Yo @hannibalburess You get that new Jared From Subway mix tape? +12/10/2015,Comedians,@ericandre,I bought a house. Now I just need a wife and a dog. Maybe I can just marry Air Bud. Kill two birds with one dog. https://t.co/FX1KcxTHcV +12/09/2015,Comedians,@ericandre,"You think I'll get sued if I name my comedy album, ""A Very Bieber Christmas."" ??" +11/27/2015,Comedians,@ericandre,Can someone photo shop Betty White with Fetty Wap? #BettyWap +08/06/2015,Comedians,@ericandre,I think I grew up hating Florida because everyone looked like Guy Fieri but acted like George Zimmerman. +05/18/2015,Comedians,@ericandre,"""Only I can judge God."" -Tupac" +05/10/2015,Comedians,@ericandre,Do you think Tom Cruise and David Miscavige fuck... or make love? #goingclear +05/10/2015,Comedians,@ericandre,I wanna fuck that ex machina robot +04/20/2015,Comedians,@ericandre,4/20 is the 311 of Cinco de Mayo. #420 #311 +03/19/2015,Comedians,@ericandre,I'm a B cup +03/18/2015,Comedians,@ericandre,Do you know that the first hipster was Otto the Caddy from Happy Gilmore? http://t.co/M1LVtv3frN +03/13/2015,Comedians,@ericandre,The worst time to go down on a woman is while she's giving birth. @TVCARNAGE +02/24/2015,Comedians,@ericandre,Tweet While Driving Day. #NewHolidays #celebratingitrightnow +02/24/2015,Comedians,@ericandre,Can drug dogs smell acid? +02/17/2015,Comedians,@ericandre,Im gonna get dog semen injected into my balls so my girlfriend can give birth to puppies. +02/03/2015,Comedians,@ericandre,http://t.co/KyBTsAit6V +01/19/2015,Comedians,@ericandre,"If the pope admits that all animals go to heaven, that'll mean heaven has roaches." +01/03/2015,Comedians,@ericandre,I want to start a petition that says it's illegal to marry @PamBondi #homophobia #Florida +01/03/2015,Comedians,@ericandre,20 bucks says that I hated The Theory of Everything. +01/03/2015,Comedians,@ericandre,20 bucks says that Stephen Hawking hated The Theory of Everything +01/01/2015,Comedians,@ericandre,Anyone know where I can buy the Stephen Hawking wheelchair? +01/01/2015,Comedians,@ericandre,I wanna start a band with R. Kelly & R. Crumb called The R's +12/11/2014,Comedians,@ericandre,I'm a Jew. Which is Hebrew for atheist. +11/17/2014,Comedians,@ericandre,Rita Ora sounds like an STD +11/05/2014,Comedians,@ericandre,I wanna make a cartoon called Bobby Shmurda's World +11/01/2014,Comedians,@ericandre,@SarahKSilverman I just uploaded a bunch of dick picks to my Friendster account. +07/10/2014,Comedians,@ericandre,My porn name is Sasha SW 13th Avenue. +07/06/2014,Comedians,@ericandre,@Madonna what's your email? +04/25/2014,Comedians,@ericandre,I'm trying to get Matthew Barney to wear a Barney the dinosaur outfit on my show and perform cremaster. +04/20/2014,Comedians,@ericandre,"Happy 4:20. Smoke a birthday blunt with Hitler, you fucking nazis! #Columbine" +04/15/2014,Comedians,@ericandre,My rap name is Lil' Yung +04/15/2014,Comedians,@ericandre,Dear Hollywood: Please stop making comic book movies. Comics are humorless and boring. Reading sucks. +04/08/2014,Comedians,@ericandre,CBS didn't want me to announce it but... I'm replacing Letterman. +03/24/2014,Comedians,@ericandre,I would've been the first runaway slave to jerk off while being lynched. #autoeroticlynching +03/12/2014,Comedians,@ericandre,Just had Dave Matthews Band release their tour bus septic tank all over me. Happy 311! +03/11/2014,Comedians,@ericandre,In the future everyone will be in Arcade Fire... for fifteen minutes. +03/11/2014,Comedians,@ericandre,Happy 311 y'all. +03/10/2014,Comedians,@ericandre,Happy 311 Eve! +03/09/2014,Comedians,@ericandre,Trying to start a conspiracy that Aaron Paul had Paul Walker killed. #NeedForSpeed +03/07/2014,Comedians,@ericandre,"You ever just text ""hi NSA!!"" To see if they'll text back. If they don't, just type #AlQaeda" +03/06/2014,Comedians,@ericandre,you guys mind if I jerk off to The Mouse and The Motorcycle? #BeverlyCleary +03/06/2014,Comedians,@ericandre,Where my polyamorous Brazilian atheists at?!! +03/03/2014,Comedians,@ericandre,I pee sitting down but I poop standing up. +02/27/2014,Comedians,@ericandre,I'm starting a kickstarter for a Zach Braff bio-pic. +02/27/2014,Comedians,@ericandre,R. Budd Dwyer is my biggest comedic influence +02/12/2014,Comedians,@ericandre,@heathercampbell 's notes from the season 3 writers room. #ericandreshow http://t.co/LPT8n4CG4J +02/08/2014,Comedians,@ericandre,Athlete's Foot? More like Athlete's VAGINA!!! +02/07/2014,Comedians,@ericandre,Peace in the Middle Yeast Infection +02/05/2014,Comedians,@ericandre,I want Pussy Riot to open up for the Russian Olympics. +01/20/2014,Comedians,@ericandre,what's the new silk road? i need speed!!!!!!! +01/16/2014,Comedians,@ericandre,Send me the most embarrassing talk show moments you can find! (besides my show) I need to do some research! +01/15/2014,Comedians,@ericandre,How do I get Kid 606 and Venetian Snares to write for season 3?????? +01/14/2014,Comedians,@ericandre,AM radio still exists.. +01/11/2014,Comedians,@ericandre,any new visual artists I should check out???? +01/09/2014,Comedians,@ericandre,I'm writing a screenplay called Oscar Bait. It's about a dying gay British Aristocrat sold into slavery. +01/09/2014,Comedians,@ericandre,"Dear auto correct: ""Hell"" and ""Yo"" are pretty common words. Please stop changing them to ""He'll"" and ""To"" #enoughisenough" +01/08/2014,Comedians,@ericandre,Working title for my stand up special: It's All Peaches and Kumail Nanjiani. (Note it has nothing to do with @kumailn ) +01/08/2014,Comedians,@ericandre,I want to start a really terrible band. Who's coming with me? +01/07/2014,Comedians,@ericandre,"I'm a parodox wrapped in an enigma stuffed inside another paradox wrapped in a taco shell, deep fried and beer battered... I'm hungry." +12/15/2013,Comedians,@ericandre,I just chugged a lava lamp +12/13/2013,Comedians,@ericandre,My mom just told me she didnt like South Park til she watched the Human Centipede one & now she loves it. She just blew the dick off my mind +12/08/2013,Comedians,@ericandre,I hope Kanye West's next album is just 45 minutes of him complaining. +12/01/2013,Comedians,@ericandre,Did you know that David Grohl is the lead singer of Haim +11/24/2013,Comedians,@ericandre,Make some noise if your parents still fuck!!!!!! +11/20/2013,Comedians,@ericandre,Abacuses are meaningless... +11/16/2013,Comedians,@ericandre,Am I the only one that thinks smoking crack isn't that big of a deal???? 4 more years Rob Ford!!!! +11/13/2013,Comedians,@ericandre,send me a song i've never heard before or a video i've never seen before +11/10/2013,Comedians,@ericandre,I wanna give Jay-Z molly. #TomFord +10/23/2013,Comedians,@ericandre,Did you know Miley Cyrus and Justin Bieber... are the same person??? +10/08/2013,Comedians,@ericandre,Always remember: No one that works at the airport gives a shit about you... +09/09/2013,Comedians,@ericandre,Legalize Silk Road!!!! +09/09/2013,Comedians,@ericandre,I wonder what Georgia O'Keeffe's vagina looked like... +09/07/2013,Comedians,@ericandre,"RT @Alfredlt: @ericandre STAY AWAY FROM ME + MY FAMILY YOU ARE SICK TRYING TO RENT AN APARTMENT IN MY BUILDING TO STALK ME, LEAVE ME ALONE" +09/07/2013,Comedians,@ericandre,"RT @Alfredlt: @ericandre Oh please, get some relevance and then talk about Madonna." +09/06/2013,Comedians,@ericandre,A hahahah so weird that madonna has this huge racist following! Who knew?! +09/06/2013,Comedians,@ericandre,RT @Alfredlt: #GetErikAndreAndBlackPeopleOutOfTwitter @ericandre +09/06/2013,Comedians,@ericandre,RT @Alfredlt: @ericandre Are you jealous because she has 30 years in the industry? And you can't be relevant after all this time v +09/06/2013,Comedians,@ericandre,RT @Amen_Madonna: @ericandre Suck it harder next time. Closet case. +09/06/2013,Comedians,@ericandre,RT @Amen_Madonna: @btsmgl @ericandre Not worked up! Obvi he wants to suck peen but can't cause he's in the closet. So he'd rather tell a ba… +09/06/2013,Comedians,@ericandre,"RIP Madonna - Aug 16, 1958 - September 6, 2013" +09/02/2013,Comedians,@ericandre,"Change ""bitch"" to ""cunt"" in any rap song to remind yourself how comfortable you've become with pop misogyny. #casualsexism" +09/01/2013,Comedians,@ericandre,Mom's mind being blown!!! http://t.co/8NblTirRa2 +08/31/2013,Comedians,@ericandre,Swear I didn't know the fashion police writers were striking!!! Power to the people! I'm sorry! +08/27/2013,Comedians,@ericandre,"NYC = New YUPPIE City, am I right?!?! #therentistoodamnhigh" +08/15/2013,Comedians,@ericandre,I have a theory that Futurama is always on at least one channel at all times. +08/08/2013,Comedians,@ericandre,poop +07/16/2013,Comedians,@ericandre,@twittels Rony Seikaly-Cell Anemia +07/15/2013,Comedians,@ericandre,"It's a strange country: We outcast Paula Deen for saying nigger, but we let people racially profile , stalk, & murder unarmed black children" +07/14/2013,Comedians,@ericandre,Can we arrest the jurors? +07/13/2013,Comedians,@ericandre,Every time someone farts an angel loses its wings. +07/12/2013,Comedians,@ericandre,I like going up to people with motorcycle helmets and asking them for Daft Punk's autograph. +07/12/2013,Comedians,@ericandre,I feel like procedural dramas are the elevator music of television +07/10/2013,Comedians,@ericandre,"People who say ""darn it"" instead of ""dammit"" weird me out" +07/09/2013,Comedians,@ericandre,Am I still an atheist if I believe in God Shammgod??? +06/22/2013,Comedians,@ericandre,I'm trying to pitch Celebrity To Catch A Predator to NBC. +06/03/2013,Comedians,@ericandre,"I'm the only superstitious atheist. I'm like, ""Bullshit there's a God--! Better not walk under this ladder...""" +05/21/2013,Comedians,@ericandre,Can we as a community just please please stop instagramming pictures of food?... Enough is enough. +05/08/2013,Comedians,@ericandre,I wanna pitch a show to the food network that teaches people how to cook speed #anarchistcookbooktv +05/01/2013,Comedians,@ericandre,I cant wait until French Montana and Hannah Montana go on tour... +04/26/2013,Comedians,@ericandre,Does anyone in the world understand the archaic pronounciation guides in dictionaries and encyclopedias? #(pron.: /ˈdɒmɨnɨk ˈmɒnəhæn/; ) +04/18/2013,Comedians,@ericandre,"the world is ending soon, right?" +04/09/2013,Comedians,@ericandre,out of all the drugs i've done i think that Tums is my favorite +04/04/2013,Comedians,@ericandre,I figured by 30 I'd stop huffing nitrous and jacking off by humping my pillow... Nope. +03/29/2013,Comedians,@ericandre,"Just over heard a homeless dude talking to himself say, ""yeah, the presidents black too, bitch.""" +03/28/2013,Comedians,@ericandre,"Whenever a girl tells me they're in long-distance relationship, I say ""Oh that's cool. I'm single too.""" +03/26/2013,Comedians,@ericandre,happy co-opted pagan equinox celebration! #zeitgeist +03/26/2013,Comedians,@ericandre,"just mass texted everyone with a Cohen last name in my phone ""Chag Pesach sameach"" #happypassover" +02/16/2013,Comedians,@ericandre,i just found out eye-ball tattooing is a real thing and had to sit down and softly weep for 20 minutes. +02/06/2013,Comedians,@ericandre,Who do you think would win if Ray Lewis fought O.J. to the death??? +07/01/2018,Comedians,@SandraBernhard,Oh yes Barack that’s the damn truth https://t.co/z7nEohae9N +07/01/2018,Comedians,@SandraBernhard,RT @AllMattNYT: BREXIT & RUSSIA EXCLUSIVE: Previously unreported emails suggest Brexit moneyman Arron Banks was more engaged with Russian d… +07/01/2018,Comedians,@SandraBernhard,RT @lizzwinstead: 👇🔥💜 https://t.co/Ubvj4nHBJN +07/01/2018,Comedians,@SandraBernhard,What do they want that they don’t already have? https://t.co/057gqLSA9S +07/01/2018,Comedians,@SandraBernhard,RT @TrueFactsStated: Yep. We’re going for subtle. https://t.co/Y35dAclY7d +07/01/2018,Comedians,@SandraBernhard,In solidarity with my brothers and sisters who deserve the promise of the American Dream #Resist ignorance greed an… https://t.co/phZBFVjlxe +06/29/2018,Comedians,@SandraBernhard,Thank you darling https://t.co/sY8tNq27r9 +06/29/2018,Comedians,@SandraBernhard,Go Elizabeth yes! https://t.co/kV5tuoHGQC +06/29/2018,Comedians,@SandraBernhard,Thank you darling Carole https://t.co/kWKq2MGHuS +06/29/2018,Comedians,@SandraBernhard,Thank you! https://t.co/JR2ZzIjCpV +06/29/2018,Comedians,@SandraBernhard,yes baby you are 100% correct https://t.co/dkU8YqKJB6 +06/28/2018,Comedians,@SandraBernhard,this Woman must seal her fate on this nomination or spend her life looking in the mirror of shame and regret… https://t.co/9srmFZArwY +06/28/2018,Comedians,@SandraBernhard,Madame do not let them force a new Supreme on us until the mid terms fight with all of your heart and soul https://t.co/qufQ7ika6s +06/28/2018,Comedians,@SandraBernhard,lets not imagine how many our #FakePresident has arranged and paid for that's for damn sure https://t.co/tpuTFiK81t +06/28/2018,Comedians,@SandraBernhard,"again and again and again ""thoughts and prayers"" like empty vessels filled with the dust of your insincerity and li… https://t.co/W0Qu2ofZHm" +06/28/2018,Comedians,@SandraBernhard,beat the guns into plowshares isn't that what the bible says? since that seems to be last word is government these… https://t.co/XpMihC5Pim +06/28/2018,Comedians,@SandraBernhard,Nancy you are so right on https://t.co/IfpUZvHib0 +06/28/2018,Comedians,@SandraBernhard,listen to Ahhnold on this one kids https://t.co/nUWoG0yJWU +06/28/2018,Comedians,@SandraBernhard,read it read it read it and remember it https://t.co/PokjHKVeTd +06/28/2018,Comedians,@SandraBernhard,and they never will it's a hoax a fakery of would be morality judgement hypocrisy racism misogyny contempt for the… https://t.co/OqAPKBxZhU +06/28/2018,Comedians,@SandraBernhard,Resist! https://t.co/dCp3qhitVf +06/28/2018,Comedians,@SandraBernhard,Ladies who know the score ⁦@debimazar⁩ keeping it fresh and real in #Sandyland that’s the truth baby ⁦@RadioAndySXM⁩ https://t.co/UaRUXxtFdd +06/28/2018,Comedians,@SandraBernhard,"RT @DanRather: To give in to despair, to be paralyzed by inaction, is to let them win. I've seen generations of Americans not give up on ou…" +06/28/2018,Comedians,@SandraBernhard,Yes Auntie Maxine my northern star your voice rises above the din of ignorance and we carry you upon our shoulders https://t.co/Wms2CVu5Vq +06/28/2018,Comedians,@SandraBernhard,RT @ChelseaClinton: The first comment. https://t.co/5Uo2oDmoBw +06/28/2018,Comedians,@SandraBernhard,Call call call! https://t.co/cpJq2MA38M +06/28/2018,Comedians,@SandraBernhard,Watching now essential viewing ⁦@Lawrence⁩ thank you for dropping into #Sandyland bringing your brilliance and grea… https://t.co/0RXznIBeDJ +06/28/2018,Comedians,@SandraBernhard,thank you can't wait to watch @dodo is an innovative respite from the cruelty of the human condition https://t.co/RYVZJjJboH +06/27/2018,Comedians,@SandraBernhard,agreed but you should still get out and do something to help the fight! https://t.co/V1cXU46HVJ +06/27/2018,Comedians,@SandraBernhard,this is not true i think wise people choose their words carefully there is great power in restraint and meditation… https://t.co/fGMsobGwAB +06/27/2018,Comedians,@SandraBernhard,come on Arizona blow everyone's mind stand like an ancient Saguaro and let them have it! https://t.co/Eqki6nVxWU +06/27/2018,Comedians,@SandraBernhard,to crush and control and walk over 99% of humanity this is the motivation of all these people to destroy happiness… https://t.co/3n2LxwUXpz +06/27/2018,Comedians,@SandraBernhard,its a Westward dystopian shit show Jeffrey but i know we will persevere thank you brilliant friend https://t.co/S1xjnDJPsF +06/27/2018,Comedians,@SandraBernhard,we need to advocate for ourselves with the support of fearless senators like you https://t.co/QUokDZbQoL +06/27/2018,Comedians,@SandraBernhard,Auntie Maxine is my northern star never stop warrior-ess @RepMaxineWaters let's get back to matters at hand reuniti… https://t.co/A2irIU6JPd +06/27/2018,Comedians,@SandraBernhard,progressive revolutionary game changing status quo killer go go go! https://t.co/PRHuQDtIi0 +06/27/2018,Comedians,@SandraBernhard,if this doesn't tear open you heart then nothing can! https://t.co/ceeUUBOYRX +06/27/2018,Comedians,@SandraBernhard,always classy! so glad he snuck into the White House! https://t.co/OJgmYofuuf +06/27/2018,Comedians,@SandraBernhard,a fight to the end of civilization is at hand https://t.co/xyAqjuMLuq +06/27/2018,Comedians,@SandraBernhard,a delight to have Mr ODonnell back in Sandyland always a calming force! https://t.co/YRrHgZOOr5 +06/27/2018,Comedians,@SandraBernhard,now more than ever you need to escape into #Sandemonium kids @GuildHall this Saturday June 30th see you there https://t.co/PdrzxPr27f +06/27/2018,Comedians,@SandraBernhard,if we can sleep soundly tonight than truly we have lost our moral compass we will continue to #StandWithMuslims unt… https://t.co/uP4tPYz84x +06/26/2018,Comedians,@SandraBernhard,S #Sandyland double header ⁦@LisaLeslie⁩ ⁦@theebillyporter⁩ bringing true beauty to the land ⁦@RadioAndySXM⁩ https://t.co/FCv1qkp4qC +06/26/2018,Comedians,@SandraBernhard,There’s no one more talented or chic than my friend @thebillyporter #PrayTell ⁦@PoseOnFX⁩ watch for us on episode 6… https://t.co/yF6802H7bJ +06/26/2018,Comedians,@SandraBernhard,"when we get to the edge of democracy will we persevere? i believe we will, but it's not going to be pretty. https://t.co/v4Bwu1pDGG" +06/26/2018,Comedians,@SandraBernhard,Words of wisdom from my brillian daughter https://t.co/woLGjFS7RQ +06/26/2018,Comedians,@SandraBernhard,go Jim go https://t.co/8LmrIAmQzR +06/26/2018,Comedians,@SandraBernhard,it's unforgivable and irreparable if we don't stand up now then no one can expect our support when the shit hits th… https://t.co/8i9OYNAB36 +06/26/2018,Comedians,@SandraBernhard,come see me this Saturday @GuildHall #Sandyland live kids! https://t.co/yXrXzWN9Kw +06/25/2018,Comedians,@SandraBernhard,The woman who lit up New York nights ⁦@amysacco⁩ entrepreneur moving it it all up #Sandyland summer Monday ⁦… https://t.co/0UBWAfUywQ +06/25/2018,Comedians,@SandraBernhard,as old as the republic we must be constantly vigilant https://t.co/IiyEV4kE3f +06/25/2018,Comedians,@SandraBernhard,this is brutal hard to take we must find some alternative to petroleum based products before we destroy the planet https://t.co/HyopR6dwCO +06/25/2018,Comedians,@SandraBernhard,we cannot back off this man made disaster keep calling your congress people and reunite these families asap https://t.co/FnGPvNUOGu +06/25/2018,Comedians,@SandraBernhard,Whew! just glad you'll still be bringing scents and scentsiblilty to NYC adore you kids come talk to me about perf… https://t.co/CqLM0s6aIm +06/25/2018,Comedians,@SandraBernhard,everyone needs to get woke now! https://t.co/sF2MFBxBiS +06/23/2018,Comedians,@SandraBernhard,boom https://t.co/phOBEk8FkP +06/23/2018,Comedians,@SandraBernhard,"RT @robreiner: This November Donald Trump is not on the ballot. But inhumanity is. So are racism, Incompetence, corruption, immorality and…" +06/23/2018,Comedians,@SandraBernhard,glad we made it home baby! https://t.co/MxxUz1IMJ8 +06/22/2018,Comedians,@SandraBernhard,This is what I keep imagining shattering https://t.co/X94ydDKKUT +06/22/2018,Comedians,@SandraBernhard,"RT @DannyZuker: Somehow, on their 1000 mile journey, these parents were able to protect their kids from gangs, human traffickers, rapist, m…" +06/22/2018,Comedians,@SandraBernhard,Give some sisters a break! #Sandyland was rich today darling ⁦@JeniferLewis⁩ ⁦@MacyGraysLife⁩ packed with righteous… https://t.co/fPH7LQz9Xr +06/21/2018,Comedians,@SandraBernhard,We demand to know what is happening to these children! https://t.co/gLFDIwTPxP +06/21/2018,Comedians,@SandraBernhard,Full disclosure we want to know what is happening to these children! https://t.co/DDfSc6qUYI +06/21/2018,Comedians,@SandraBernhard,I love the good heart if this country https://t.co/1WpOzxvpq8 +06/21/2018,Comedians,@SandraBernhard,RT @Lawrence: Anyone wanna bet against @MichaelAvenatti eventually revealing some important news with ICE whistleblowers? https://t.co/z4bT… +06/20/2018,Comedians,@SandraBernhard,RT @robreiner: The President of the United States is a monster. Decent loving Republicans must now stand up. America can not be a country t… +06/20/2018,Comedians,@SandraBernhard,Ellen can you believe this one chiming in? A Shonda https://t.co/7cEPRNKuEj +06/20/2018,Comedians,@SandraBernhard,Please check this out https://t.co/58p7vckV9S +06/20/2018,Comedians,@SandraBernhard,Yes brothef https://t.co/i451Ymnc6u +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: You will never hear this on @foxnews because immigration is a wedge issue to get people to vote for republicans so business… +06/20/2018,Comedians,@SandraBernhard,No shit they can’t find them https://t.co/PkhRkNzP98 +06/20/2018,Comedians,@SandraBernhard,"RT @ABC: Hugging a child, Rep. John Lewis vows action to stop practice of family separation. + +""Just tell me whatever you want me to do. I w…" +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: Now would be the time to cut the montage of how @FoxNews said he couldn’t fix it and then said he could when he made an adj… +06/20/2018,Comedians,@SandraBernhard,Don’t stop the music! https://t.co/0Fm9123nSa +06/20/2018,Comedians,@SandraBernhard,We went so deep in #Sandyland just getting back up with ⁦@ourladyj⁩ the discussion continues America we bring the g… https://t.co/iHMMRrJgFP +06/20/2018,Comedians,@SandraBernhard,RT @RepJoeKennedy: Arrived in Tornillo TX where first tent city for kids has gone up. Was refused entrance by HHS. Given amount of misinfor… +06/20/2018,Comedians,@SandraBernhard,RT @Bro_Pair: Simpering Nazi fuck Stephen Miller is smugly taking credit for the family separations. Maybe he wouldn’t like protestors at h… +06/20/2018,Comedians,@SandraBernhard,"RT @KamalaHarris: It’s time for Secretary Nielsen to resign. The government should be keeping families together, not tearing them apart. Ad…" +06/20/2018,Comedians,@SandraBernhard,RT @JamilSmith: You really have to be a special kind of motherfucker to mock a 10-year-old girl with Down syndrome separated from her immig… +06/20/2018,Comedians,@SandraBernhard,RT @American_Bridge: WATCH as attendees arrive at a fundraiser at Trump Hotel while the cries of children being ripped away from their pare… +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: That’s right. Call @FoxNews and let them know you are boycotting all Fox businesses until they stop supporting all of this… +06/20/2018,Comedians,@SandraBernhard,The height of utter madness https://t.co/oiLtHXCNRU +06/20/2018,Comedians,@SandraBernhard,RT @jamieleecurtis: Child actor. Not a child actor. @AnnCoulter Shame on you. https://t.co/af9mEgTBfX +06/20/2018,Comedians,@SandraBernhard,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Comedians,@SandraBernhard,"RT @ABC: Experts say psychological impact of family separation on par with abuse: + +""No amount of colorful rooms with lots of great toys, r…" +06/20/2018,Comedians,@SandraBernhard,Listen to this then call your congress person and blast them into action https://t.co/sjohcYvcek +06/20/2018,Comedians,@SandraBernhard,"RT @MSNBC: ""If kids don’t eat in peace, you don’t eat in peace"" + +Demonstrators interrupted Homeland Security Sec. Nielsen’s dinner at an up…" +06/20/2018,Comedians,@SandraBernhard,RT @AndrewFeinberg: Not sure who’s tweeting for FLOTUS but this is another “Let then eat cake” moment https://t.co/Sarw3xGXgO +06/20/2018,Comedians,@SandraBernhard,RT @danagould: Congrats to Corey Lewandowski on the five second clip that will define his life. https://t.co/RXZXXohPvv +06/20/2018,Comedians,@SandraBernhard,Thank you Mr Avenatti https://t.co/aYi6CWmQqM +06/20/2018,Comedians,@SandraBernhard,RT @KamalaHarris: Secretary Nielsen must resign. The human rights abuses being committed against children — many are just toddlers — by the… +06/20/2018,Comedians,@SandraBernhard,Imagine how much further we’d be now if only @HillaryClinton had not been robbed of the presidency https://t.co/oYzGZdWgNS +06/20/2018,Comedians,@SandraBernhard,We second this motion https://t.co/lIzN0iHQYl +06/19/2018,Comedians,@SandraBernhard,"RT @business: “Modern Family” co-creator plans to leave 21st Century Fox’s TV studio, saying that he’s “disgusted” by the company’s ties to…" +06/19/2018,Comedians,@SandraBernhard,RT @NYMag: President Trump has reached a new rhetorical low https://t.co/0AUig6JZ1l +06/19/2018,Comedians,@SandraBernhard,"RT @MiaFarrow: ‘On the Texas side of the Mexican border today, thousands of children, by order of the Trump Administration, are learning wh…" +06/19/2018,Comedians,@SandraBernhard,"RT @BettyBuckley: Dear US Attorneys—Sue this horrid, monstrous regime for Child Abuse & the abuse of Human Rights! https://t.co/UYSV4yH8OK" +06/19/2018,Comedians,@SandraBernhard,"RT @nytimes: Here is what is happening to migrant families on the border, and what’s behind it https://t.co/1tItGvWcg8" +06/19/2018,Comedians,@SandraBernhard,@MonaHannaA brilliant new book https://t.co/v66m7PlYcz +06/19/2018,Comedians,@SandraBernhard,An American hero https://t.co/ZHoPJjeOTF +06/19/2018,Comedians,@SandraBernhard,This woman is an American hero her new book What The Eyes Don’t See is about the #FlintWaterCrisis is mandatory rea… https://t.co/jBD1cMBItz +06/19/2018,Comedians,@SandraBernhard,Won’t you join me June 30 #Sandyland live #GuildHall the Hamptons baby! https://t.co/flvIwDx66u +06/19/2018,Comedians,@SandraBernhard,Captain Winstead may i see you in the control room please. immediately. https://t.co/ntvhYxcm4t +06/18/2018,Comedians,@SandraBernhard,end of discussion https://t.co/WGRVxdxDBe +06/18/2018,Comedians,@SandraBernhard,This is America ⁦@AlexanderWangNY⁩ multicultural approach to fashion raising the conversation with a street edged e… https://t.co/72tXgQAwSt +06/18/2018,Comedians,@SandraBernhard,so proud to have you in #Sandyland Tuesday Mona how perfect that you were in discussion with the brilliant… https://t.co/EQTd8q3ARh +06/18/2018,Comedians,@SandraBernhard,Mr Clinton this would never have happened under your watch that's for damn sure https://t.co/Sket96YlsS +06/18/2018,Comedians,@SandraBernhard,lizz laughing and crying at the same moment over this https://t.co/WyryoJ8DgJ +06/18/2018,Comedians,@SandraBernhard,ice cold https://t.co/P4nwWnEHcF +06/18/2018,Comedians,@SandraBernhard,i will! can't wait for the new season of #TheAffair you are terrific https://t.co/5pvem1N0ey +06/17/2018,Comedians,@SandraBernhard,"RT @kylegriffin1: The United Methodist Church is calling on Jeff Sessions — who is Methodist — to ""immediately reverse"" the Trump admin's f…" +06/17/2018,Comedians,@SandraBernhard,The sickness is inoperable https://t.co/hufPVZNctV +06/17/2018,Comedians,@SandraBernhard,RT @IvankaTrump: My ♥️! #SundayMorning https://t.co/CN5iXutE5Q +06/17/2018,Comedians,@SandraBernhard,on fathers day everyday let's not stop until we've untied this hateful knot https://t.co/H87jWMPJMd +06/17/2018,Comedians,@SandraBernhard,you have to ask where did it all go so wrong for this person? and then you have to say we're not going to let him i… https://t.co/0UVBopsldi +06/17/2018,Comedians,@SandraBernhard,happy fathers day to my favorite dads on twitter @robreiner @DannyZuker @JuddApatow for your fearless defense on be… https://t.co/HfoHPXPyp8 +06/16/2018,Comedians,@SandraBernhard,chilling https://t.co/l7yNtEL6jY +06/16/2018,Comedians,@SandraBernhard,Danny never stop talking you hit it hard and deep every time thank you https://t.co/ckqeFuEKyx +06/16/2018,Comedians,@SandraBernhard,this is what he was fired for? that is tragic what a weak flimsy ego barely running this country sad really https://t.co/IRAKuU0OaL +06/15/2018,Comedians,@SandraBernhard,he is so cheap this man separate it kids all of it state and religion the twain shell never meet https://t.co/68yO9geiJ1 +06/15/2018,Comedians,@SandraBernhard,it's time to take a stand! https://t.co/k7PJvDtrxW +06/15/2018,Comedians,@SandraBernhard,you know we do B this is fantastic xo https://t.co/Q4n7gd5lGZ +06/15/2018,Comedians,@SandraBernhard,yes Rose i am very much alarmed and yet not at all surprised kindred spirits these two and all the other despots https://t.co/PPVDMWGJrl +06/15/2018,Comedians,@SandraBernhard,Mr Reiner we thank you https://t.co/DgZRDYPp9r +06/14/2018,Comedians,@SandraBernhard,thank you Christine this is a wonderful gift! https://t.co/lK57gTSiB3 +06/14/2018,Comedians,@SandraBernhard,RT @DannyZuker: Doing nothing in the face of monstrous acts is itself kind of monstrous. If you think tearing children from their parents’… +06/14/2018,Comedians,@SandraBernhard,read it and weep https://t.co/FJ7iN55j0c +06/14/2018,Comedians,@SandraBernhard,and start watching the streaming tonight @BroadwayHD break a leg baby! https://t.co/ziiq4y1dpW +06/14/2018,Comedians,@SandraBernhard,thank you for this i use all of these so i'll add in the gargle! you are lovely x sandy https://t.co/WQhuluSYTP +06/14/2018,Comedians,@SandraBernhard,The incredibly talented #AlexandraShiva with her new doc about Syrian refugees #ThisIsHome ⁦@EpixHD⁩ sure June 20… https://t.co/POv5zHp2oT +06/14/2018,Comedians,@SandraBernhard,The girls stepped into #Sandyland with panache! ⁦@LeaKThompson⁩ ⁦@maddiedeutch⁩ ⁦@zoeydeutch⁩ thank you ladies! ⁦… https://t.co/q25de9RCx2 +06/13/2018,Comedians,@SandraBernhard,i adore you both forever and ever! https://t.co/qx7Uvc0Uhr +06/13/2018,Comedians,@SandraBernhard,Bat wing dolman sleeve new moon in Gemini @mxjustinVbond weaves their magic in #Sandyland soul mates forever… https://t.co/i7ae8PTURI +06/13/2018,Comedians,@SandraBernhard,i adore you Chelsea you are really funny too smart we already knew! https://t.co/LRLseY8wNE +06/13/2018,Comedians,@SandraBernhard,this is brilliant! https://t.co/9dARFZeqmN +06/13/2018,Comedians,@SandraBernhard,bring it baby can't wait to see you in #Sandyland tomorrow @RadioAndySXM https://t.co/8Qqdl0eFC2 +06/12/2018,Comedians,@SandraBernhard,with that magnetic smile and smooth approach what woman could possible resist! https://t.co/8DYZswX6qw +06/12/2018,Comedians,@SandraBernhard,gas light time. https://t.co/fwvOWVVfs4 +06/12/2018,Comedians,@SandraBernhard,Yes children this the chic & fabulous ⁦@TayeDiggs⁩ he’s back in #Sandyland bringing style love this man ⁦… https://t.co/ASr5BF1Zb0 +06/12/2018,Comedians,@SandraBernhard,The divine ⁦@HollandTaylor⁩ in #Sandyland don’t miss her brilliant show #Ann streaming June 14 ⁦@BroadwayHD⁩ a tour… https://t.co/xwK2jFvePU +06/12/2018,Comedians,@SandraBernhard,The Hamptons darling a glass of Rose and #Sandyland live June 30 ⁦@GuildHall⁩ https://t.co/8uct5wTWVR +06/11/2018,Comedians,@SandraBernhard,someone doing something about the problem read this https://t.co/QILSI7BjgF +06/11/2018,Comedians,@SandraBernhard,he's a lousy little man Coretta Scott King called him out for his racist behavior years ago shows you what kind of… https://t.co/CilBFToXHB +06/11/2018,Comedians,@SandraBernhard,What like destroying our country? https://t.co/cUucedZFWR +06/11/2018,Comedians,@SandraBernhard,Let’s start now https://t.co/h2Za04gTvh +06/11/2018,Comedians,@SandraBernhard,This disgusting small man holds enough hatred for a giant https://t.co/zjKxCT50go +06/11/2018,Comedians,@SandraBernhard,Can’t wait to talk all about her tomorrow in #Sandyland Holland! @RadioAndySXM tune in! https://t.co/o0SqYqz5WL +06/11/2018,Comedians,@SandraBernhard,Send this racist fool into the desert https://t.co/znzjX6kRMu +06/11/2018,Comedians,@SandraBernhard,Yes please! https://t.co/1xfGPfP2sA +06/11/2018,Comedians,@SandraBernhard,She’s divine @arianatherose fab new music love of @britneyspears and summer fun #Sandyland Monday @RadioAndySXM https://t.co/XchnqrLWGh +06/11/2018,Comedians,@SandraBernhard,it was @britneyspears day in #Sandyland stay tuned https://t.co/OT0MMHzvZJ +06/11/2018,Comedians,@SandraBernhard,So thrilled for my friend #LaurieMetcalf on her #ThreeTallWomen @TheTonyAwards she is a superstar! +06/11/2018,Comedians,@SandraBernhard,you must read this #FlintWaterCrisis @MonaHannaA who will be my guest in #Sandylad June 19 @RadioAndySXM https://t.co/MMypx9gNJg +06/10/2018,Comedians,@SandraBernhard,"as the minutes sweep pass the face of the true moral justice clock we watch peoples lives tick away, how close to t… https://t.co/Ypsd6FQCxJ" +06/10/2018,Comedians,@SandraBernhard,breathing deeply waiting for the shoe to drop but when we ask when? https://t.co/D8iAF8NYXq +06/10/2018,Comedians,@SandraBernhard,thank you honey #GayPride DC was incredible thank you again #WashingtonBlade for a stellar night https://t.co/eJUQprC7qZ +06/10/2018,Comedians,@SandraBernhard,"RT @Shareblue: “They had to use physical force to take the child out of his hands.” +https://t.co/G5jdMTb0PP" +06/09/2018,Comedians,@SandraBernhard,"yes Jim and we all know how true that is now more than ever just look at our hmmm ""President""! https://t.co/5VVFLKEycB" +06/09/2018,Comedians,@SandraBernhard,Jeffrey thank you again https://t.co/fb9NHtVYf8 +06/09/2018,Comedians,@SandraBernhard,You begin to know people in a different way once they are gone what a terrible loss https://t.co/NS23Her7zL +06/09/2018,Comedians,@SandraBernhard,And never forget it https://t.co/yq6oZVPR6u +06/08/2018,Comedians,@SandraBernhard,Wearing your gold boots on stage rockin! https://t.co/pPP5heGQvE +06/08/2018,Comedians,@SandraBernhard,"RT @jfreewright: Throwing pardons around like paper towels to the rich in Puerto Rico - vicious song & dance politricks - when, outside, th…" +06/08/2018,Comedians,@SandraBernhard,Fabulous chat with #Veronica @abc7gmw #LGBTQ… https://t.co/fhjzGfphNL +06/07/2018,Comedians,@SandraBernhard,RT @MonaHannaA: This is cruel. This is abusive. This is an abject violation of human rights. This is the type of trauma a child may never r… +06/07/2018,Comedians,@SandraBernhard,RT @CharlesMBlow: I just can’t take this anymore. His green card app is in progress. His wife and kids are citizens. This is in my neighbor… +06/07/2018,Comedians,@SandraBernhard,Pigs are clean and highly intelligent as well Dick https://t.co/oYAtGIhmfR +06/07/2018,Comedians,@SandraBernhard,thank you for all of my wonderful birthday wishes you kids really know how to make a gal feel special love it! +06/07/2018,Comedians,@SandraBernhard,this is how i demand to be read! https://t.co/Atttyw3AWt +06/07/2018,Comedians,@SandraBernhard,to my soul brother who i adore always! thank you baby! https://t.co/VYaKbbPNcs +06/07/2018,Comedians,@SandraBernhard,i'm always in the mood for a little bit of Burt! https://t.co/ydJKk4Rxqx +06/07/2018,Comedians,@SandraBernhard,my gemini twin and generally great person https://t.co/TxdkpNhOwW +06/07/2018,Comedians,@SandraBernhard,love you Lois always a delight! https://t.co/WBOjxes9jj +06/07/2018,Comedians,@SandraBernhard,everyone get out to #Sandyland live tonight #Philly baby! https://t.co/kwdiRO1psX +06/07/2018,Comedians,@SandraBernhard,i love you both looking forward to so many more great matches! https://t.co/BxVzUGcWhD +06/06/2018,Comedians,@SandraBernhard,Thank you kids love you Beth and Mitchy! https://t.co/ldwodUyPVS +06/06/2018,Comedians,@SandraBernhard,My birthday show with dear friend @BettyBuckley guru virtuoso wisdom seeker her new album #Hope is a masterpiece ge… https://t.co/oVfb13hKrc +06/06/2018,Comedians,@SandraBernhard,you're up to bat Mikey happy early birthday to you! https://t.co/Vb5Ha3xOOt +06/06/2018,Comedians,@SandraBernhard,for my birthday let's fix #FlintWaterCrisis once and for all! https://t.co/wYELBCouWk +06/06/2018,Comedians,@SandraBernhard,im comin philly! #Sandyland live tomorrow night June 7th be there! https://t.co/KqzaiZycMA +06/06/2018,Comedians,@SandraBernhard,WMC you are the best what a sweetheart your friendship means the world to me! love you and Greg wow! https://t.co/3UiY05VxVg +06/06/2018,Comedians,@SandraBernhard,Philly get your asses in gear! #Sandyland live tomorrow don't let me down! https://t.co/9SrBtLyJ9e +06/06/2018,Comedians,@SandraBernhard,thank you! let's rock it x s https://t.co/CuoURg44hn +06/06/2018,Comedians,@SandraBernhard,you are a doll T love you baby thank you xo sandy https://t.co/B7rVgRy29H +06/05/2018,Comedians,@SandraBernhard,#90210 #Melroseplace #Younger #DarrenStar brings all his characters to life shining bright in #Sandyland… https://t.co/IeLRxUPKNj +06/05/2018,Comedians,@SandraBernhard,#WorldEnvironmentDay #BeatPlasticPolution @belindaofficial accepting your challenge! Inching toward a plastic free… https://t.co/npxyAORaZX +06/05/2018,Comedians,@SandraBernhard,Vote today https://t.co/7PHTLpFusd +06/05/2018,Comedians,@SandraBernhard,yes you know we do! https://t.co/rPBezbTgHZ +06/05/2018,Comedians,@SandraBernhard,bring it B! https://t.co/yFY34ydmmH +06/05/2018,Comedians,@SandraBernhard,and we are looking out for you! https://t.co/IF4i4ore2O +06/04/2018,Comedians,@SandraBernhard,yes that's right thank you @MsSarahPaulson for bringing your A game to the land of Sandy memorable funny brilliant! +06/04/2018,Comedians,@SandraBernhard,memo to #SupremeCourt we don't want those bleached white flour sugar cakes anyway we like to aim a little higher i'… https://t.co/YYrRMIVUjm +06/04/2018,Comedians,@SandraBernhard,A brilliant “two hander” in #Sandyland starring the one & only #sarahpaulson #Oceans8 baby she’s my friend & a supe… https://t.co/NMOIXnj5Hb +06/04/2018,Comedians,@SandraBernhard,get to #Sandyland live this thursday June 7 Philly baby! https://t.co/pfnxhWxm6q +06/04/2018,Comedians,@SandraBernhard,"someone stop the madness of ""King Donald"" in the name of democracy everywhere! https://t.co/bIgBFGol82" +06/03/2018,Comedians,@SandraBernhard,"watch me host tonight the fabulous https://t.co/gDTn3nUzaW +#Collection1 live streaming at 7:30 chic!" +06/02/2018,Comedians,@SandraBernhard,#GayPride #Sandyland live! June 8n https://t.co/xKFMpLZr9x +06/02/2018,Comedians,@SandraBernhard,happy birthday Andy here's to a new fabulous decade filled with fun love and adventures xo sandy https://t.co/2WPzxQVt2e +06/01/2018,Comedians,@SandraBernhard,Thank you Chelsea for rerouting this conversation back to what matters brilliant woman https://t.co/GPdQpbD9OF +06/01/2018,Comedians,@SandraBernhard,ICYMI: Here's what I posted yesterday... https://t.co/7sjgMK0HcG +06/30/2018,Comedians,@BillyCrystal,Cool! Where did yu get that? https://t.co/9nAjPYKxEW +06/30/2018,Comedians,@BillyCrystal,Thanks Scott- it’s my fav.#isaw https://t.co/LwazADjSQh +06/29/2018,Comedians,@BillyCrystal,"RT @ShaunKing: Of course @realDonaldTrump has endangered American journalists. + +He frequently says we are ""the enemy"" and the ""greatest thr…" +06/27/2018,Comedians,@BillyCrystal,RT @SenWarren: Mitch McConnell should follow the Mitch McConnell rule. Let the American people have a say when women’s health and equal rig… +06/27/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Anthony Kennedy to retire from Supreme Court. Let’s pray to God Putin appoints someone reasonable. +06/17/2018,Comedians,@BillyCrystal,Have a Monster Father’s Day! Disneyland I’ve got my eye on you.! https://t.co/u3HdVvbwXX +06/17/2018,Comedians,@BillyCrystal,RT @ShaunKing: Generations from now we will be talking about the awful camps and jails and detention centers where immigrant children were… +06/17/2018,Comedians,@BillyCrystal,RT @SenWarren: Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice heard and… +06/12/2018,Comedians,@BillyCrystal,Please watch! https://t.co/v73HK86FMS +06/12/2018,Comedians,@BillyCrystal,"RT @ShaunKing: The notion that this is irrelevant is outrageous. + +The man literally cheated and lied on all three of his wives. He broke h…" +06/12/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Trump was so pleased with his meeting with Kim Jong Un that he announced the United States will now hold peace talks with… +06/11/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: I really hope Trump makes friends with Kim because everyone else wants us dead. +06/11/2018,Comedians,@BillyCrystal,RT @SenSanders: I find it very strange that President Trump has such a hard time getting along with the leaders of the world's major democr… +06/10/2018,Comedians,@BillyCrystal,"RT @Amy_Siskind: Republicans in Congress- if you remain silent after yesterday’s debacle, you are truly cowards and traitors to our democra…" +06/10/2018,Comedians,@BillyCrystal,"RT @SenJohnMcCain: To our allies: bipartisan majorities of Americans remain pro-free trade, pro-globalization & supportive of alliances bas…" +06/09/2018,Comedians,@BillyCrystal,"Hey kid, “Vats Nu”? https://t.co/oWIxBInDZZ" +06/09/2018,Comedians,@BillyCrystal,That is from “Midnight Train to Moscow” HBO special. First American comedian to play the Soviet Union. #proud https://t.co/ykwMq5MocD +06/09/2018,Comedians,@BillyCrystal,RT @paulshipper: Latest artwork for @shoutfactory just dropped! I absolutely love this movie #CitySlickers! Big thanks to @billycrystal for… +06/06/2018,Comedians,@BillyCrystal,"RT @MMFlint: So he cancels the SuperBowl party at the WH, disinvites the PhiladelphiaEagles, says he’s holding a patriotic ceremony instead…" +05/30/2018,Comedians,@BillyCrystal,"RT @MMFlint: So @therealroseanne woke up this morning & posted hateful, slanderous tweets about me, Valerie Jarrett, George Soros & Chelsea…" +05/28/2018,Comedians,@BillyCrystal,Goat https://t.co/3aMI0ddaCu +05/25/2018,Comedians,@BillyCrystal,RT @jayleno: Taking my pal @BillyCrystal in Muhammad Ali's 1976 Alfa Romeo Spider. #JayLenosGarage https://t.co/uSWtamMMdC +05/25/2018,Comedians,@BillyCrystal,Had great time with Jay tonight at 10pm on@lenosgarage on CNBC #ali’s car +05/22/2018,Comedians,@BillyCrystal,"RT @LenosGarage: ""The Greatest"" boxer and sports car of all time. + +Don't miss Muhammad Ali's 1976 Alfa Romeo Spider on #JayLenosGarage Thur…" +05/09/2018,Comedians,@BillyCrystal,RT @BarackObama: There are few issues more important to the security of the US than the potential spread of nuclear weapons or the potentia… +05/09/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Breaking News: Trump to back out of Louisiana Purchase. +05/01/2018,Comedians,@BillyCrystal,RT @HenryMaxwellCHI: Wow @FXNetworks really dropped the ball with “The Comedians” @BillyCrystal and @joshgad are so funny. That’s show was… +04/29/2018,Comedians,@BillyCrystal,"RT @baseballhall: 17 years ago today, 61* made its debut. Thanks to donations from director @BillyCrystal and actor @ThomasJane, the movie'…" +04/19/2018,Comedians,@BillyCrystal,Please vote— this is for Don. https://t.co/IfLKeCr2Mm +04/19/2018,Comedians,@BillyCrystal,〈( ^.^)ノCheering for Dinner with Don Rickles in 2nd place in #Webby People’s Voice! RT + VOTE: https://t.co/pNLBbybO1Rヽ(^。^)丿 +04/05/2018,Comedians,@BillyCrystal,RT @BetteMidler: #DreamStillLives https://t.co/H62t8Psyzo +04/05/2018,Comedians,@BillyCrystal,my dream is that all the hate and violence we have seen can someday become compassion and acceptance.… https://t.co/xsIhvnIzCk +04/04/2018,Comedians,@BillyCrystal,https://t.co/Gfks9KcJpW +03/30/2018,Comedians,@BillyCrystal,“Have the unleavened experience of a lifetime”. Your friend Joe Franklin #snl84-85 https://t.co/tiAP67kcAx +03/24/2018,Comedians,@BillyCrystal,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Comedians,@BillyCrystal,Proud to march in solidarity. https://t.co/S7nikUz6km +03/17/2018,Comedians,@BillyCrystal,Your birthday tweets are great! Much appreciated. +03/14/2018,Comedians,@BillyCrystal,"Today is my 70th b’day. +Sending you my love and thanks for all the years of your support." +02/24/2018,Comedians,@BillyCrystal,"RT @MichaelSteele: The president and others promoting arming teachers are delusional. Wake the hell up people. There was a uniformed, armed…" +02/24/2018,Comedians,@BillyCrystal,RT @Emma4Change: Excuse me while I Sob https://t.co/ZDJCivwiEq +02/24/2018,Comedians,@BillyCrystal,"RT @SenBillNelson: Instead of listening to students & parents, Gov. Scott’s plan bows to the NRA’s demands. It does not expand criminal bac…" +02/23/2018,Comedians,@BillyCrystal,More Trump lies. https://t.co/EPmQ2mnSm1 +02/15/2018,Comedians,@BillyCrystal,RT @JamieOGrady: This cartoonist deserves an award. https://t.co/GZ6SQZHAJ4 +02/15/2018,Comedians,@BillyCrystal,"RT @AlbertBrooks: Another tragic school shooting. 18 just this year! Hey Congress, your thoughts and prayers aren't working. Try somethin…" +02/10/2018,Comedians,@BillyCrystal,@derek_del #inandofitself is the show you must experience . Saw it last night and it has stayed with me. +02/10/2018,Comedians,@BillyCrystal,"@derek_del This show is remarkable. +Magical, mystifying and ultimately moving as well. A great audience experience." +02/10/2018,Comedians,@BillyCrystal,RT @AlanZweibel: Had a great time (again) being entertained and totally mystified by Derek Delgaudiio @derek_del and his amazing show #inan… +02/02/2018,Comedians,@BillyCrystal,"@BaileeMadison @1010WINS Mr? That was my father. Love watching you grow B. +Billy" +02/02/2018,Comedians,@BillyCrystal,@1010WINS @BaileeMadison Thank you B... meant a lot to me. +01/09/2018,Comedians,@BillyCrystal,"RT @NickLaparra: America, your President—you know, the #MAGA guy—doesn’t know all the words to our national anthem. This is a gross display…" +12/29/2017,Comedians,@BillyCrystal,"RT @nytimes: President Trump cast doubt on the reality of climate change, but he appeared unaware of the distinction between weather and cl…" +12/16/2017,Comedians,@BillyCrystal,"RT @SenWarren: The FCC just voted to hand control of the internet over to giant internet companies, but this isn’t over. Congress must step…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: This is important. + +Mitch McConnell, who my late grandmother in Kentucky despised, just announced that he is going to refus…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Tonight was a complete repudiation if Donald Trump. + +He won Alabama by 28% last year. +Tonight Roy Moore lost by 2%. + +A 30…" +12/13/2017,Comedians,@BillyCrystal,RT @ShaunKing: The @NYDailyNews cover tomorrow https://t.co/oxtgKsgJ6O +12/13/2017,Comedians,@BillyCrystal,RT @BetteMidler: #DougJones has won the Alabama Senate seat vacated by #JeffSessions. I believe he will bring not just honor and pride to… +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Now that Republicans just lost a Senate seat in Alabama, think of just how outrageous it was for the Republican Party to bac…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Grateful that Doug Jones ended his speech tonight w/ this: “As Dr. King said, the moral arc of the universe is long but it b…" +12/13/2017,Comedians,@BillyCrystal,RT @ShaunKing: Looking at the numbers and young white people in Alabama rejected Roy Moore even though most of their parents and grandparen… +12/13/2017,Comedians,@BillyCrystal,What are you going to tweet now potus? https://t.co/Keobk4TBUk +12/13/2017,Comedians,@BillyCrystal,RT @AP: BREAKING: Democrat Doug Jones won election to the U.S. Senate from Alabama in a sharp blow to President Trump that narrows the GOP’… +12/11/2017,Comedians,@BillyCrystal,RT @nowthisnews: This father with a fatal disease could die if the GOP tax bill is passed — watch the emotional plea he makes to his senato… +12/04/2017,Comedians,@BillyCrystal,"RT @ShaunKing: To be clear, Trump has NO PROBLEM eliminating monuments. + +Strange how vehemently he defended Confederate monuments and how…" +12/02/2017,Comedians,@BillyCrystal,"RT @CharlesMBlow: Wait, WHAT?!!! https://t.co/DJZmPn8SW1 https://t.co/HKCGyrcYvg" +12/02/2017,Comedians,@BillyCrystal,RT @ShaunKing: Flynn did not plead guilty to lying to Pence or Trump. He plead guilty to lying to the FBI and for lying on multiple forms.… +11/29/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Yesterday North Korea launched a missile that went over 2,000 miles into outer space - fully capable of hitting the United S…" +11/29/2017,Comedians,@BillyCrystal,"RT @TheMuslimGuy: Dear @Twitter... + +By tweeting Anti-Muslim conspiracy theory videos which are fake... + +@RealDonaldTrump has violated your…" +11/29/2017,Comedians,@BillyCrystal,RT @RhonddaBryant: Donald Trump is inciting religious hatred in this country by retweeting the convicted racist Jayda Fransen's vile views.… +11/29/2017,Comedians,@BillyCrystal,Had a great time on @ModernFam watch it Wednesday night https://t.co/585KmmVa5F +11/25/2017,Comedians,@BillyCrystal,RT @seanhannity: I call total Bullshit on Time. Answer the question; did you or did you not call the WH and say @realDonaldTrump @POTUS was… +11/25/2017,Comedians,@BillyCrystal,"RT @ShaunKing: In all of my life, I don't think I have ever heard of a human being so cravenly desperate for praise and adulation like Dona…" +11/20/2017,Comedians,@BillyCrystal,Had great time with @rejectedjokes Ben Schwartz on @We are Unsatisfied our new film. He's hilarious. Excited about our pairing. +11/20/2017,Comedians,@BillyCrystal,"RT @djkevlar: Here’s a first behind the scenes look at #WeAreUnsatisfied, with @mattratner directing @BillyCrystal & @rejectedjokes. #VeryS…" +11/20/2017,Comedians,@BillyCrystal,Paul Reiser has a funny new show on Hulu. Here's the trailer. https://t.co/eWNzRN1IXE +10/24/2017,Comedians,@BillyCrystal,"Sad to hear of the passing of Robert Guillaume. He was a great support to me on ""Soap"". +Great timing, charisma and class. Rest in Peace." +10/18/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Trump said he spoke to every military family who lost a loved one. + +Turns out half have never heard from him. + +A blatant li…" +10/17/2017,Comedians,@BillyCrystal,"RT @DeliliaOMalley: .@realDonaldTrump When my brother was killed, Pres Bush listened while I screamed at him & then held me as I sobbed, yo…" +10/14/2017,Comedians,@BillyCrystal,RT @jilevin: What's he on? https://t.co/9dywxdwZ1i +10/14/2017,Comedians,@BillyCrystal,"RT @SenWarren: Cutting off payments that help low-income families afford health insurance is petty, cruel, & just plain dumb." +10/14/2017,Comedians,@BillyCrystal,"RT @SenWarren: Responsible nations stick to their agreements. Responsible Presidents put America's safety first. If this President won't, C…" +10/13/2017,Comedians,@BillyCrystal,"RT @pierre: This direct statement, which plainly repudiates the uncontroversial First Amendment, is evidence of his abandonment of his oath…" +10/13/2017,Comedians,@BillyCrystal,RT @ChristophGolden: Sheriff upset about his slaves being freed. Holy fucking shit. https://t.co/rZWmoZdO2g +10/12/2017,Comedians,@BillyCrystal,Amazing comeback. So happy for all my friends with the Yankees. https://t.co/yqjo2KTO6k +10/12/2017,Comedians,@BillyCrystal,"RT @BetteMidler: $242,000 to fly to Indiana to leave a football game? Are they fucking nuts??!?? https://t.co/XfisGx2ZqD" +10/11/2017,Comedians,@BillyCrystal,"RT @ShaunKing: We should never forget this. He should be asked about it at every press conference. + +Powerful men must not be given passes…" +10/11/2017,Comedians,@BillyCrystal,"The EPA says climate change is not one of their priorities In their new four year plan. +Scott Pruitt is a menace to our planet." +10/10/2017,Comedians,@BillyCrystal,My brother wrote a beautiful book about his recovery from heart surgery. https://t.co/QlcVLVHBBy +10/10/2017,Comedians,@BillyCrystal,"RT @SI_PeterKing: Pence2 +So @VP took a taxpayer-funded airplane knowing he’d be walking out right after the anthem to protest. Swell use of…" +10/07/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Also, Stephen Paddock KILLED COPS. The Blue Lives Matter crew has said NOTHING. https://t.co/tkzIlGed8H" +10/06/2017,Comedians,@BillyCrystal,Looking forward to talking with @billmaher tonight on HBO +09/30/2017,Comedians,@BillyCrystal,"RT @SenWarren: The definition of ""poor leadership"" is sitting at your golf club while millions of US citizens beg for your help, @realDonal…" +09/27/2017,Comedians,@BillyCrystal,One of the funniest comedians ever. This is a classic. Take a knee and listen. https://t.co/fyLsnutWpH +09/25/2017,Comedians,@BillyCrystal,https://t.co/IEp72InOYt +09/25/2017,Comedians,@BillyCrystal,"RT @Variety: #ThePrincessBride turns 30: @RobReiner, @RealRobinWright, @BillyCrystal dish about making the cult classic https://t.co/0KNmQV…" +09/25/2017,Comedians,@BillyCrystal,RT @reelhoneymag: THE PRINCESS BRIDE turns 30 today! What's your favourite line from the cult classic? #PrincessBride30th (Photo: @EW) http… +09/25/2017,Comedians,@BillyCrystal,I had the honor of sitting with Don Rickles shortly before he passed away. https://t.co/SoCuS5ZKAq +09/20/2017,Comedians,@BillyCrystal,RT @AlbertBrooks: At the U.N. Trump threatened to totally destroy North Korea. And then everybody had lunch. +09/20/2017,Comedians,@BillyCrystal,RT @SenFranken: Help sound the alarm. New GOP health care bill to repeal the ACA is gaining steam. My response: https://t.co/2RaFSX5ssp +09/13/2017,Comedians,@BillyCrystal,Soap debuted 40 yrs ago today! https://t.co/UKWZN5Qf4L +09/12/2017,Comedians,@BillyCrystal,Join me @8pmET as the nation comes together to help those affected by Hurricane Harvey and Irma. Call 1-800-258-6000 or text GIVE to 80077 +09/04/2017,Comedians,@BillyCrystal,RT @tinyrevolution: Kudos to humanity for manuevering ourselves into a situation where all our lives depend on the wisdom of Kim Jong-un an… +09/03/2017,Comedians,@BillyCrystal,RT @ShaunKing: SHAME on the Salt Lake City Police Department for arresting and assaulting this nurse. She was following policy to protect h… +08/24/2017,Comedians,@BillyCrystal,"@thealisonmann @RealMegRyan @robreiner I love it! Next, "" Baby Fish Mouth""" +08/11/2017,Comedians,@BillyCrystal,3 years later and words still don't come easily. Think of Robin today and smile. +07/30/2017,Comedians,@BillyCrystal,RT @attn: President Trump should listen to this ex-cop about police brutality. https://t.co/kGay8ve8zR +07/30/2017,Comedians,@BillyCrystal,@ClaireSmith became the first woman sportswriter and the fourth African American voted into the Baseball Hall of Fame. Bravo. +07/28/2017,Comedians,@BillyCrystal,@Shananighan @JohnMcCain Absolutely -- admire people who stand up for what is good for the country and won't be bullied. +07/28/2017,Comedians,@BillyCrystal,Great respect to @JohnMccain who put country over party. +07/26/2017,Comedians,@BillyCrystal,RT @SenFranken: Paul Wellstone said politics is about improving people's lives. I urge GOP colleagues to reject health care plans that woul… +07/24/2017,Comedians,@BillyCrystal,@JimmyKimmelLive is repeating the show I did last week this coming Thursday. https://t.co/fWXqn0CT08 +07/24/2017,Comedians,@BillyCrystal,"RT @RealDanielStern: Felt inspired to write something when I heard about the passing of my friend, John Heard... https://t.co/zi7gdQZYOa" +07/16/2017,Comedians,@BillyCrystal,Looking forward to being on @JimmyKimmelLive Monday night. Been on a break since my tour ended. Time to get back to work. +06/30/2017,Comedians,@BillyCrystal,@IndecentBway the greatest bway experience I have ever had! Run to see it! https://t.co/jNaLXYBtBI +06/02/2017,Comedians,@BillyCrystal,RT @BernieSanders: With or without the support of Trump and the fossil fuel industry we must transition rapidly away from fossil fuels to r… +06/02/2017,Comedians,@BillyCrystal,"RT @MarkRuffalo: Shame on you @realDonaldTrump as people lose their lives, homes and economic opportunities to your childish refusal to hon…" +06/01/2017,Comedians,@BillyCrystal,RT @MMFlint: America First! Earth Last! #ParisClimateAccord +06/01/2017,Comedians,@BillyCrystal,Sending love to my dear friend @AlanZweibel who lost his sister Fran today. +05/14/2017,Comedians,@BillyCrystal,"@BillyJoel and Pink 2nite DodgerStadium I opened for BJ in '74 +One of my first gigs. +Awesome show tonight. https://t.co/hls1mI3gDI" +05/13/2017,Comedians,@BillyCrystal,RT @AllanMargolin: #Climate Movie Meme: Miracle Max Knows We MUST Storm The Castle Of Climate Denial - @RisingSign @rob_bieber @rosieperezb… +05/02/2017,Comedians,@BillyCrystal,"Tour ended last night thanks to all the awesome audiences. Loved working for you. +Nice to have a night off. bc https://t.co/C1qKmMMFP3" +04/28/2017,Comedians,@BillyCrystal,Look where I am https://t.co/zQjLtdvvlq +04/12/2017,Comedians,@BillyCrystal,Billy Crystal Remembers Don Rickles: ‘There Was No One Like Him’ https://t.co/U4b6DRP1Ks via @variety +04/06/2017,Comedians,@BillyCrystal,"Don Rickles has passed away. +A giant loss." +03/27/2017,Comedians,@BillyCrystal,Excited to be at the State Theatre Wednesday Nite in Cleveland.@KingJames are you in town? +03/18/2017,Comedians,@BillyCrystal,"Sorry to my fans in Philly for postponing my show dates. +Fighting a nasty flu. New dates are April 14-15." +02/27/2017,Comedians,@BillyCrystal,Amazing ending. Wish that had happened on Election Day. +02/27/2017,Comedians,@BillyCrystal,Loved what you did Jimmy! +02/25/2017,Comedians,@BillyCrystal,Can't wait for the show tonight at the Majestic Theatre in San Antonio! https://t.co/jmfNbh6afk +02/21/2017,Comedians,@BillyCrystal,"Honoured that Icon @Carol Burnett came to our show! +San Antonio next stop Friday. https://t.co/SdrcLra2qP" +02/21/2017,Comedians,@BillyCrystal,https://t.co/OoqDP56hUj check this out +02/10/2017,Comedians,@BillyCrystal,"Bay Area! Don’t miss me at @foxoakland on 3/1 doing what I love to do best, make you laugh! Get tickets at https://t.co/0Qhwany9Mt" +02/02/2017,Comedians,@BillyCrystal,RT @RealDanielStern: Mitch and Phil are finally reunited... at #Westworld! What could possibly go wrong? @funnyordie @BillyCrystal https://… +02/02/2017,Comedians,@BillyCrystal,RT @ptolemy: City \W/ Slickers! me and @Hemsdog take on two BAD hombres... (@RealDanielStern @BillyCrystal... comedy idols!) https://t.co/… +02/02/2017,Comedians,@BillyCrystal,RT @AngelaSarafyan: My dream came true when I got to work with @BillyCrystal and @RealDanielStern for a brief moment as Clementine in this… +02/02/2017,Comedians,@BillyCrystal,"Mitch & Phil from 'City Slickers' are back & they're in @WestworldHBO! Thanks, @funnyordie & @RealDanielStern! https://t.co/afiqigFYAb" +02/01/2017,Comedians,@BillyCrystal,Clearwater was fantastic last night. Orlando tonight. +01/28/2017,Comedians,@BillyCrystal,"RT @jerryspringer: Enjoyed seeing @BillyCrystal last night...the consummate entertainer...and gentleman. Oh, and did I say funny? https://t…" +01/25/2017,Comedians,@BillyCrystal,"RIP Mary Tyler Moore. +Love is all around you..." +01/24/2017,Comedians,@BillyCrystal,"3 new shows on sale Fri! +Oakland Fox Theatre 3/1 +Wallingford Ct Toyota Oakdale Theatre 3/25 +Atlanta Fox Theatre 4/27. See you there!" +01/24/2017,Comedians,@BillyCrystal,"RT @OakdaleTheatre: JUST ANNOUNCED -- @BillyCrystal on Saturday, March 25th! Tickets go on sale next Friday (1/27) at 10AM: https://t.co/la…" +01/24/2017,Comedians,@BillyCrystal,"RT @NelsonHicksWSB: The one and only @BillyCrystal returns to Atlanta at @TheFoxTheatre on Thursday, April 27. https://t.co/nTbUf0u2tc" +01/23/2017,Comedians,@BillyCrystal,"Excited to perform in Jacksonville Wednesday Night at the Times Union Center. Miami and W Palm have been great, so Jacksonville….no pressure" +01/09/2017,Comedians,@BillyCrystal,"RT @ChicagoTheatre: Due to overwhelming demand, @BillyCrystal has added a 2nd show at The Chicago Theatre on 4/2! Tix on-sale 1/13. +https:…" +12/31/2016,Comedians,@BillyCrystal,A New Year's wish for a peaceful and healing new year. Let's all work together to make this world the best that it can be. +12/27/2016,Comedians,@BillyCrystal,@TomMuench1 so shocked to hear this! Heard from him a few weeks ago. +12/27/2016,Comedians,@BillyCrystal,RT @mrgosling: A legend in Star Wars and hilarious in When Harry Met Sally. Another sad loss... #whenharrymetsally #StarWars #ripcarrie #mo… +12/27/2016,Comedians,@BillyCrystal,@Carrie Fisher's loss is devastating. Her wit-her inspiration to those with mental illness was monumental. Loved working on WHMS with her. +12/15/2016,Comedians,@BillyCrystal,Sad to hear about the loss of Craig Sager a real champion. https://t.co/5fQnN1m8D4 +12/15/2016,Comedians,@BillyCrystal,"RT @jarrodbcecil: Homemade coloring sheets, featuring Mike Wazowski from @DisneyPixar Monsters Inc! #drawsomething #freehand @billycrystal…" +12/15/2016,Comedians,@BillyCrystal,RT @Future_Beat: MARYLAND: presale for @BillyCrystal at @MGMNatlHarbor on April 29th & 30th is happening now! Purchase here: https://t.co/… +12/09/2016,Comedians,@BillyCrystal,"Happy Birthday to Kirk Douglas who is 100 yrs old today. +You will always be Spartacus!" +12/07/2016,Comedians,@BillyCrystal,"RT @latelateshow: Who's got ten fingers and a seat on the #LateLateShow couch tonight? Mr. @BillyCrystal, that's who. https://t.co/FZwm4xR2…" +12/07/2016,Comedians,@BillyCrystal,Great fun with @JKCorden tonight https://t.co/UqeuXtcEbP +12/06/2016,Comedians,@BillyCrystal,Going to have a great time tonight with @jkcorden +12/06/2016,Comedians,@BillyCrystal,Looking forward to being on @latelateshow tonight with @jamescordenreal +12/02/2016,Comedians,@BillyCrystal,"RT @TheRealPaolo_B: - I'm having some of the Academy over for dinner. Care to join me? +- Yes, anytime +@BillyCrystal @AnthonyHopkins #Academ…" +11/24/2016,Comedians,@BillyCrystal,Happy Thanksgiving to all. +11/18/2016,Comedians,@BillyCrystal,"RT @JennaCNguyen: Hi @BillyCrystal, can you please retweet to help us get books like yours in the hands of children across the US? #thegrea…" +11/17/2016,Comedians,@BillyCrystal,"Excited to be on @JimmyKimmelLive 2nite! +Last time was cool https://t.co/pVrfQjYPg3 #prop64" +11/15/2016,Comedians,@BillyCrystal,RT @Variety: Congrats @billycrystal! The comedian was honored at Women's Guild @CedarsSinai Annual Gala. https://t.co/5kJA9W2w1x https://t.… +11/15/2016,Comedians,@BillyCrystal,"RT @RuthEckerdHall: Don't miss your chance to see @BillyCrystal for his very first performance in the Tampa Bay area Tue, Jan 31! https://t…" +11/14/2016,Comedians,@BillyCrystal,Excited to start touring this show. 30 cities starting in Miami Jan.21. https://t.co/0gOxi0Ej29 +10/17/2016,Comedians,@BillyCrystal,I am hosting this event tonight that is being live streamed tonight.https://t.co/o8FGakw4WK +10/03/2016,Comedians,@BillyCrystal,https://t.co/EypUEZ5Zhc +09/12/2016,Comedians,@BillyCrystal,@chancetherapper do you want the President of FX's phone number? +09/12/2016,Comedians,@BillyCrystal,RT @gregorcorp: @mrbenwexler 👏👏👏 https://t.co/GoDAsgzgyJ +09/09/2016,Comedians,@BillyCrystal,RT @natecallens: I just finished @marcmaron's latest @WTFUpdate podcast w/ @BillyCrystal. I didn't want it to end! Check it out here: https… +09/09/2016,Comedians,@BillyCrystal,RT @guybannister: Great episode this week from @marcmaron with @BillyCrystal https://t.co/E4cTPVeXIj +09/08/2016,Comedians,@BillyCrystal,Great time talking with @MarcMaron https://t.co/3OMTqPqDON +09/08/2016,Comedians,@BillyCrystal,RT @MediaREDEF: WTF with Marc Maron: Episode 740 -- Billy Crystal (@marcmaron @BillyCrystal - @WTFpod) https://t.co/uatA567rVF +09/08/2016,Comedians,@BillyCrystal,RT @JayHemsworth: Not in on this podcast series @WTFpod ? This is a gr8 1 2 start U off #Comedian #interview @BillyCrystal @marcmaron https… +09/08/2016,Comedians,@BillyCrystal,RT @kevin_joachim1: @BillyCrystal Please retweet to help my friend with ALS. Every $ will help her family. Thank you Billy. https://t.co/H… +09/08/2016,Comedians,@BillyCrystal,RT @marcmaron: Today is @BillyCrystal day on @WTFpod! Legend! Great talk! Do it up! https://t.co/TRZkCfr7QU +08/29/2016,Comedians,@BillyCrystal,Gene Wilder was a giant of comedy. His legacy of films is inspiring. A true genius.. +08/22/2016,Comedians,@BillyCrystal,So proud of USA bball team..Deandre was awesome. https://t.co/DAQ00udVQW +08/12/2016,Comedians,@BillyCrystal,"RT @Rockettes: #TBT to sharing the @RadioCity stage with @BillyCrystal, @WhoopiGoldberg and the late, great #RobinWilliams in 1990. https:/…" +08/04/2016,Comedians,@BillyCrystal,Thank you Australia! This tour was one of the best times I've ever had. Sorry it's over. bc https://t.co/G4NCj7yYVE +08/02/2016,Comedians,@BillyCrystal,RT @TessNobile: I laughed. I cried. I now reflect. One of my favourite life moments. Thank you @BillyCrystal #beyondthewords https://t.co/c… +08/02/2016,Comedians,@BillyCrystal,"RT @TEGDAINTY: .@BillyCrystal Melbourne Live Review: ""Laughing all night long"" https://t.co/kM81wJhSxX https://t.co/7uZTDYV26x" +07/28/2016,Comedians,@BillyCrystal,"RT @DaintyGroup: .@BillyCrystal REVIEW: ""the packed house was doubled over with laughter"" https://t.co/NRSHVBj4f5 https://t.co/M2A42TMJn8" +07/24/2016,Comedians,@BillyCrystal,"Adelaide Australia tonight Perth 2morrow. +Fantastic audiences! https://t.co/prpKSitJQG" +07/19/2016,Comedians,@BillyCrystal,Thank you Brisbane! Great audiences! Auckland NZ next stop. +07/19/2016,Comedians,@BillyCrystal,"RT @twenty3group: .@BillyCrystal LIVE REVIEW: ""The best thing I've seen this year"" https://t.co/AmzfTVi314 https://t.co/l5Ymia3qCF" +07/19/2016,Comedians,@BillyCrystal,"RT @artscentremelb: ""★★★★★ As once-in-a-lifetime events go, it’s pretty impressive.” https://t.co/tOAYiywMpC + +@BillyCrystal will be on our…" +07/12/2016,Comedians,@BillyCrystal,Sydney – you’ve been fantastic! It's my last show tonight and we've released final tickets here: https://t.co/k9146lBRak +07/11/2016,Comedians,@BillyCrystal,"Now that's a crab! +Sydney has been great. Audiences sensational-wonderful people. Next show Wednesday. bc https://t.co/ZLSmyBXWRH" +07/06/2016,Comedians,@BillyCrystal,Great time at Taronga zoo in Sydney. https://t.co/o7a8HT3KlK +07/06/2016,Comedians,@BillyCrystal,Now that's a selfie https://t.co/P1FLPkLtjR +07/05/2016,Comedians,@BillyCrystal,I’ve landed in Australia! Why don’t you join me for a hilarious night of laughs? Get your tickets at https://t.co/9ve8LkbdPI +06/22/2016,Comedians,@BillyCrystal,My Adelaide show is on sale now: https://t.co/wgdviU1hcz. I’m looking forward to seeing you soon! +06/18/2016,Comedians,@BillyCrystal,"Hey Australia, I’ve added one special new show in Adelaide! Go to https://t.co/9ve8LkbdPI for all the details." +06/13/2016,Comedians,@BillyCrystal,RT @AlbertBrooks: Trump congratulates himself on being right on terrorism. That's how he responds after this horrific tragedy. Nuff said. +06/09/2016,Comedians,@BillyCrystal,"RT @thearcadeshow: The comedy City Slickers came out this day in 1991 w/ @BillyCrystal, @RealDanielStern, & won Jack Palance an Oscar. http…" +06/03/2016,Comedians,@BillyCrystal,For the greatest man I have ever known. https://t.co/OUZHVZWBHY +06/03/2016,Comedians,@BillyCrystal,Have a great retirement Joey. Miss seeing you in the finals. https://t.co/mJ1W0Qu9ou +05/30/2016,Comedians,@BillyCrystal,"@GarmanSports Mantle signed it that day and 21 yrs later I met him and he signed it again. +It was on Dinah Shore t.v show." +05/30/2016,Comedians,@BillyCrystal,60 years ago today I went to my first Yankee Game! Mickey hit homer off the old facade. Can still see it. https://t.co/lXJazBpnYV +05/25/2016,Comedians,@BillyCrystal,I’ve just added new shows in Melbourne and Sydney! Go to https://t.co/9ve8LjTCr8 for all the details. See you in July. +05/21/2016,Comedians,@BillyCrystal,RT @FallonTonight: .@BillyCrystal hasn't fully grasped modern technology yet... https://t.co/EKO0TeYNaV https://t.co/8V8gjifVn5 +05/21/2016,Comedians,@BillyCrystal,RT @KrisWilliams: This is freaking hilarious! 😂😂 https://t.co/3XrZfRxTRf @jimmyfallon @BillyCrystal Anyone else see this? +06/29/2018,Comedians,@arjbarker,@nickpahls u bet! +06/28/2018,Comedians,@arjbarker,@BetsyHodges thank you! +06/28/2018,Comedians,@arjbarker,Hello Denver!!! https://t.co/GpBEWdJZCx +06/23/2018,Comedians,@arjbarker,"@bakingnurple it’s totally fine. Like I said in the show, we don’t even know we’re taking our phone out half the time these days :)" +06/23/2018,Comedians,@arjbarker,@KBtheFirst we missed you too! :) +06/23/2018,Comedians,@arjbarker,@TomBarnardShow thanks for having us! Always great fun :) +05/21/2018,Comedians,@arjbarker,@PilsnerPodcast yeah sure I love Pilsner!! +05/18/2018,Comedians,@arjbarker,@jeetsheth thank you Jeet! +05/18/2018,Comedians,@arjbarker,Auckland! I’m home. 2 shows tonight and tomorro. Please do come along if you’re in town :) https://t.co/QXOJLNHu0H +05/17/2018,Comedians,@arjbarker,@BR4DY thank you for coming along! +05/17/2018,Comedians,@arjbarker,"@BR4DY a) as opposed to ‘figuratively this week…’? b) they didn’t eat the poor thing, only bit and shook to death." +05/03/2018,Comedians,@arjbarker,Beautiful shot! https://t.co/17vFHmMLMI +05/03/2018,Comedians,@arjbarker,@KingyDaSickC thank you! +04/21/2018,Comedians,@arjbarker,@Dhfnfkdirurndms have not! Any good? +02/21/2018,Comedians,@arjbarker,@dlean05 thank you! +02/21/2018,Comedians,@arjbarker,@HaStavrou thank you! +02/09/2018,Comedians,@arjbarker,Build your own INSANE Dog Stairs!!!: https://t.co/HuMPHNmkFt via @YouTube +02/04/2018,Comedians,@arjbarker,"Adelaide Fringe? Yes, please. :) https://t.co/dk9JM5bZdA" +02/04/2018,Comedians,@arjbarker,"Great to see you too, Pete :) https://t.co/k32gG6rdoG" +01/30/2018,Comedians,@arjbarker,"I’ll give $500 to any who calls the ‘president’ a racist during the speech (must be live, and he must hear you). #Trumpchallange" +01/26/2018,Comedians,@arjbarker,"@Alex__Briggs @ellen_briggs @GordonSouthern great meeting you, Alex! Safe travels :)" +01/21/2018,Comedians,@arjbarker,My pal Big Rob’s new album is ouuuuuuuuutttt!!! https://t.co/S3rAX32Eiy +01/11/2018,Comedians,@arjbarker,HONG KONG!!! https://t.co/I3mstO71fN +12/28/2017,Comedians,@arjbarker,The Holidays do have their ups and downs. https://t.co/HndO13itaX +12/28/2017,Comedians,@arjbarker,Ultra Shelf Party: https://t.co/ONpdGT8hOi via @YouTube +12/04/2017,Comedians,@arjbarker,"Nimbin, NSW https://t.co/1I09a01F6l" +12/01/2017,Comedians,@arjbarker,@ByClare @TheDanBarrett great restaurant huh? +11/24/2017,Comedians,@arjbarker,Land ho!! Happy to be in Sydney this weekend for 2 shows at the Stare theatre. If you’re in the… https://t.co/hSGgVr1si3 +10/27/2017,Comedians,@arjbarker,"The hilarious https://t.co/BdDodH09vE is touring oz right, don’t miss Canadas best!!" +10/25/2017,Comedians,@arjbarker,Ultra Shelf: Ultimate Garage Storage Vol 3/3: https://t.co/kQx5Kcue8C via @YouTube +10/22/2017,Comedians,@arjbarker,@mup_patricia thank u! Hope u had fun! +10/11/2017,Comedians,@arjbarker,Aussie friends don’t miss @chrisdelia when he’s here. Hilarious dude!! +09/23/2017,Comedians,@arjbarker,@aussie_abroad15 I only remember great acting all around :) see u soon! +09/14/2017,Comedians,@arjbarker,@LeonHuxtable see u there! +08/25/2017,Comedians,@arjbarker,"Sydney friends! Dont miss one of the best comedians on the planet: @_TomRhodes at the Comedy Store, Sat sept 2. https://t.co/wFwDpftuWI" +08/24/2017,Comedians,@arjbarker,Ultra Shelf: Episode 2 is here! https://t.co/JFDnqqmJuq +08/23/2017,Comedians,@arjbarker,Meme it up! #newhobby #moretocome https://t.co/fcbbcxGIGO +08/22/2017,Comedians,@arjbarker,"SPOILER ALERT +only look at my new meme if you’re caught up on GOT :)) xox arj https://t.co/nST0j8r2f7" +08/18/2017,Comedians,@arjbarker,@john_bspoke you aren’t even following me you LUN!!! +08/10/2017,Comedians,@arjbarker,@KBtheFirst @TomBarnardShow @AshleyJudd didn’t strike me as inappropriate:) hope all well! Good to see the gang! +08/06/2017,Comedians,@arjbarker,@therealhansds dang it! Ok thank u :) +08/05/2017,Comedians,@arjbarker,@therealhansds @hardwick @midnight did I get it!? +08/04/2017,Comedians,@arjbarker,@therealhansds that’s big! +08/04/2017,Comedians,@arjbarker,Yes! https://t.co/U997yLH6Cc +08/01/2017,Comedians,@arjbarker,MINNEAPOLIS here I come :) ACME all week with @tonycamin who’s onboard? +07/26/2017,Comedians,@arjbarker,@ItsTheBrandi great! See u soon :) +07/25/2017,Comedians,@arjbarker,@ocularnervosa I see :) thanks! +07/25/2017,Comedians,@arjbarker,@ocularnervosa @midnight how come? It wasn’t the last episode? +07/25/2017,Comedians,@arjbarker,@mustlovekittehs thank u! +07/22/2017,Comedians,@arjbarker,This was a fun day :) https://t.co/fjVE2eGS96 +07/21/2017,Comedians,@arjbarker,Can they be as awesome as the first night audience was? I hope so :)) https://t.co/dMQLilFccr +07/21/2017,Comedians,@arjbarker,Thanks Steve!! You kilt it!! :) https://t.co/cxzXAJq3py +07/20/2017,Comedians,@arjbarker,Shows start tonight in Montreal :) https://t.co/LNwSiOG5is +07/17/2017,Comedians,@arjbarker,@JesseFernandez @Brav3NewAmerica thanks Jesse! Enjoy your work too :) +07/15/2017,Comedians,@arjbarker,Only two more shows in the 6 #DrakeCountry https://t.co/AA1OQewRI8 +07/15/2017,Comedians,@arjbarker,@luiscoderque thanks Luis nice to meet u! +07/13/2017,Comedians,@arjbarker,On Comedy Central tonight :) https://t.co/FZnyUCJqOh +07/13/2017,Comedians,@arjbarker,@pennjillette great to work with you again after a few years :) best for your show tonight! +07/13/2017,Comedians,@arjbarker,Great to see you guys! When does our episode air? TONIGHT!! https://t.co/J58nxvhUCu +07/11/2017,Comedians,@arjbarker,@HotTub_Show thanks for having me that was lots of fun :) +07/10/2017,Comedians,@arjbarker,Toronto this weekend!! https://t.co/EEQOsJshnl +07/03/2017,Comedians,@arjbarker,@CobbsComedyClub pleasure! Thank you too :) see you next year! Xo +06/30/2017,Comedians,@arjbarker,I shaved before the show I promise!! https://t.co/Q0dD2294eu +06/29/2017,Comedians,@arjbarker,SF shows!! https://t.co/Ee1Qh3xOVw +06/27/2017,Comedians,@arjbarker,Sure why not! https://t.co/a0dJF16BVR +06/26/2017,Comedians,@arjbarker,SF I’m comin home! https://t.co/NuHVRAd17A +06/26/2017,Comedians,@arjbarker,Bethlehem PA Show :) https://t.co/UGaFaMgsPW +06/25/2017,Comedians,@arjbarker,Glad to hear. He’s a great dude!! Hope you and whole family are very well! https://t.co/i3K5GCvZTi +06/25/2017,Comedians,@arjbarker,@DustinCrandell it was a very last minute thing #popupshow +06/24/2017,Comedians,@arjbarker,Portland Show tonight :) https://t.co/bXtr1ylQkZ +06/24/2017,Comedians,@arjbarker,See you soon Holmes https://t.co/ejMdrSrC6j +06/23/2017,Comedians,@arjbarker,@willh21 thank you will! +06/22/2017,Comedians,@arjbarker,@Walshy thanks Dave see u soon! +06/22/2017,Comedians,@arjbarker,The Shpanthem!!!! https://t.co/mRvrnR4uw0 +06/17/2017,Comedians,@arjbarker,Seattle! I love you! Hope to see you :) https://t.co/MUzn6zNCXf +06/16/2017,Comedians,@arjbarker,See u there! https://t.co/2BckkgbEbr +05/29/2017,Comedians,@arjbarker,Lookout Toronto! https://t.co/yGg2yRrm0k +05/28/2017,Comedians,@arjbarker,Vancouver show! https://t.co/8ruBnDZFl5 +05/17/2017,Comedians,@arjbarker,Haha https://t.co/gxc6IUgW8Z +05/14/2017,Comedians,@arjbarker,Vancouver. Yes! https://t.co/7GKJsOG0eo +05/11/2017,Comedians,@arjbarker,"Melb! Come have a fun night and support Big Bros & Big Sis of Australia, a great org :) https://t.co/iTGK2HVFX2" +05/10/2017,Comedians,@arjbarker,@moniquesavin dan Dion thank you!! +05/09/2017,Comedians,@arjbarker,Toronto here I come https://t.co/DHfUUP578O +05/06/2017,Comedians,@arjbarker,The owners came and got him! Hope they more careful in the future 😬 +05/06/2017,Comedians,@arjbarker,Sydney Found Dog: Found this German Shepard wandering around Kent st in The Rocks alone and no id. Pls RT https://t.co/duwVTUNqUz +05/05/2017,Comedians,@arjbarker,Melbourne! This is a fun night for a great cause :) https://t.co/YpOJO0DO9C +05/05/2017,Comedians,@arjbarker,Baltimore here I come 😬 https://t.co/69cS5WzWzL +04/23/2017,Comedians,@arjbarker,"Waiheke Island, NZ https://t.co/JRqynn1ezE" +04/20/2017,Comedians,@arjbarker,"It’s true. I have new, informative web series. Enjoy! https://t.co/uth1jszN0h" +04/18/2017,Comedians,@arjbarker,Bay Area here I come! https://t.co/3Gi8Nnou8N +04/11/2017,Comedians,@arjbarker,Vancouver! https://t.co/QATrBVVayf +04/10/2017,Comedians,@arjbarker,Thank you Joanne :) https://t.co/0Pjjqu0ZCe +04/10/2017,Comedians,@arjbarker,@Defender1995 what’s that? +04/09/2017,Comedians,@arjbarker,"Lego Tower St Kilda, shot thru uber window #nofilter #organic https://t.co/7LzayJ4a9L" +03/30/2017,Comedians,@arjbarker,RT @ColumbusTheatre: JUST ANNOUNCED - @arjbarker on July 5th! Tickets on sale now at https://t.co/levlnljtfo . +03/26/2017,Comedians,@arjbarker,@AusBreweryTours good to meet you guys! +03/23/2017,Comedians,@arjbarker,@kinggizzardband thanks for awesome show!! https://t.co/nu1vsBH4X1 +03/23/2017,Comedians,@arjbarker,Shows in Ballina and Cairns this weekend. Then onto Melbourne! #Organic https://t.co/gWKJViJvYf xxx +03/20/2017,Comedians,@arjbarker,@markakaboz don’t think so :( one day tho! +03/19/2017,Comedians,@arjbarker,@squirrel_comedy we need to make new episodes!! @derriman +03/19/2017,Comedians,@arjbarker,@ComicConPod sure why not. Can Gatesy join? +03/10/2017,Comedians,@arjbarker,"@kinggizzardband comin to see you guys on 22 in melb. Can’t wait! If possible, can u please play rattlesnake? 🐍 ps congrats on new album!!" +02/15/2017,Comedians,@arjbarker,She makes me very proud and so should @AnimalsAsia be for what you do for these precious bears https://t.co/9bMVtkxR5v +01/15/2017,Comedians,@arjbarker,Yes! For one glorious weekend only :) I’ll put it on my site asap https://t.co/WC1BGXMOfR +01/10/2017,Comedians,@arjbarker,Hey man!! Are you in BC? I’m comin!! https://t.co/QXOJLNHu0H +01/09/2017,Comedians,@arjbarker,@Roger_Ca714 many thanks +01/09/2017,Comedians,@arjbarker,@Roger_Ca714 what’s his name? I had to look closely to see if you’d photoshopped that! +12/19/2016,Comedians,@arjbarker,PERTH don’t miss epic show with @mrcraigrobinson and the superb #TheNastyDelicious TONIGHT. i seen the show in melb and it’s amazing :)) +12/10/2016,Comedians,@arjbarker,@regandalyhaha classic! +12/08/2016,Comedians,@arjbarker,@AndrewGobbo you get most of the games for about 12 bucks on iOS called ‘lost treasures of infocom’ +12/08/2016,Comedians,@arjbarker,"@AndrewGobbo yes and no. I was either playing The Lurking Horror, or Enchanter. Both infocom games. As good as ever!" +12/07/2016,Comedians,@arjbarker,@cjdh87 thank you Chris! +12/07/2016,Comedians,@arjbarker,@ratebeer not at the moment. I’ll be back in jan tho! +12/03/2016,Comedians,@arjbarker,Glad to help! Well done everybody :) https://t.co/8TrgcsIenZ +12/02/2016,Comedians,@arjbarker,I’m excited! Look forward to meet you Pete :) https://t.co/FIdJ7q42po +11/28/2016,Comedians,@arjbarker,@jnelson01 thank you James! +11/23/2016,Comedians,@arjbarker,@lokie2189 I don’t think so. It’s possible tho +11/23/2016,Comedians,@arjbarker,@AshleighJade05 thank you! Hope alls well +11/19/2016,Comedians,@arjbarker,"@NickJon27328485 sure, one of these days :)" +11/17/2016,Comedians,@arjbarker,@penguinpunk 8 +11/13/2016,Comedians,@arjbarker,@xaeromarine @SarahMillican75 thank you :) +11/11/2016,Comedians,@arjbarker,@andyisyoda thank you very much! +11/11/2016,Comedians,@arjbarker,@hughp1970 thank you! +11/08/2016,Comedians,@arjbarker,All true! :) https://t.co/jRaZmSQzwd +10/26/2016,Comedians,@arjbarker,Oh Canada. Can’t wait! https://t.co/fSNnnr3NbQ +10/25/2016,Comedians,@arjbarker,@mindsight_tweet dm me +10/20/2016,Comedians,@arjbarker,Thank you guys. Lotsa fun :)) https://t.co/pw2Wz4X8ve +10/20/2016,Comedians,@arjbarker,@RoveAndSam great to see you two 😘 thanks for having me on the show! +10/18/2016,Comedians,@arjbarker,@MrSimonTaylor punchline green room? +10/08/2016,Comedians,@arjbarker,@TroyKinne great working with you Troy! Hilarious set! +10/05/2016,Comedians,@arjbarker,@tomallencomedy thank buddy! You killed it! Congrats :) +10/04/2016,Comedians,@arjbarker,"@SarahMillican75 thank you, you too! Glad I got to be on your show :)" +10/03/2016,Comedians,@arjbarker,@Iansmithcomedy you too Ian :) it was real nice thAnks! +10/02/2016,Comedians,@arjbarker,Thank you for having me in the show tonight! And for the dinner tip https://t.co/3mEzocLw28 +10/02/2016,Comedians,@arjbarker,Thank you for having me on the shows this week. Lotta fun :) https://t.co/BFgSocejhZ +09/21/2016,Comedians,@arjbarker,News to me too! I better start practicing :u Thanks Matt https://t.co/KieLBnLyNa +09/19/2016,Comedians,@arjbarker,@cam98_1 thanks cam! +09/09/2016,Comedians,@arjbarker,"My beauty treatment is nearly finished, just in time for Wagga show TONIGHT and Leeton tomoro.… https://t.co/fD3NYWQpry" +09/08/2016,Comedians,@arjbarker,Thanks for telling me! https://t.co/D53In86G5j +09/07/2016,Comedians,@arjbarker,Where's that goddamn house phone at?! https://t.co/Nktnj4lOvi +08/29/2016,Comedians,@arjbarker,@macgyverpete thanks! +08/28/2016,Comedians,@arjbarker,@macgyverpete thanks which special is it? What country you watching it in? +08/06/2016,Comedians,@arjbarker,¿ https://t.co/0Pz9e9jXN8 +07/20/2016,Comedians,@arjbarker,RT @AcmeComedyCo: Get ready to laugh because tonight we have @arjbarker @tonycamin @SayGCole 8pm show. 612-338-6393 #callnow #hotcomedy +07/19/2016,Comedians,@arjbarker,And @tonycamin !! https://t.co/2UXHodE8q9 +07/19/2016,Comedians,@arjbarker,Minneapolis! I’m stoked to be performing all this week at @AcmeComedyCo with legendary @tonycamin thru sat night! Hope to see you there :) +07/16/2016,Comedians,@arjbarker,@marnivinluan you’re welcome no prob :) +07/16/2016,Comedians,@arjbarker,@Randalroche do it :) +07/16/2016,Comedians,@arjbarker,@adamwrobinson thank u! +07/15/2016,Comedians,@arjbarker,@antitoxicalex thanks Alex. I was seriously not expecting to play a song with them! +07/14/2016,Comedians,@arjbarker,U know it https://t.co/A8W10FaLlw +07/14/2016,Comedians,@arjbarker,RT @realchillwall: Get ready to laugh #Minneapolis because @arjbarker is LIVE on July 19! Details: https://t.co/R38hhIRZ0L https://t.co/YwC… +07/10/2016,Comedians,@arjbarker,@BrianYogiDennis great meeting and working with you too Brian :) +07/09/2016,Comedians,@arjbarker,"@FunyunsNFugeez one day brother, one day. Hope alls well! Arj" +07/07/2016,Comedians,@arjbarker,#Portland what up dawg I’m doing one show at @mississippistudios this Sunday night. Hope to see you!! +07/07/2016,Comedians,@arjbarker,See you soon you beauty https://t.co/f2s8ZbwDHw +07/07/2016,Comedians,@arjbarker,Seattle come catch my show at @parlorlive with the great @tonycamin This weekend thru sat 😁 +07/07/2016,Comedians,@arjbarker,See u soon! https://t.co/dasJAmUXI9 +07/05/2016,Comedians,@arjbarker,@CobbsComedyClub thank you! Always great to see you too :) +06/28/2016,Comedians,@arjbarker,Cobbs SF this weekend :) https://t.co/2UQktxHJiV +06/28/2016,Comedians,@arjbarker,"2 of the best guys, warming up for the best show, in one of the best cities #sf… https://t.co/D3uK7DPrJx" +06/23/2016,Comedians,@arjbarker,Thank you! See u soon https://t.co/8eF0C23AxD +06/23/2016,Comedians,@arjbarker,RT @SportsGuyMike: @arjbarker joins me in studio tomorrow on The @SGMShow He'll be at @ComedyWorks Thu-Sat https://t.co/BXlCjia8vW https://… +06/23/2016,Comedians,@arjbarker,Thanks for having me on the show! https://t.co/CqMHtFwrH3 +06/23/2016,Comedians,@arjbarker,Thanks for having me on the show! https://t.co/mb9i5cgEwL +06/22/2016,Comedians,@arjbarker,I’m coming home. https://t.co/BGhbY3cvxY +06/22/2016,Comedians,@arjbarker,Hello Denver! https://t.co/orO1mvRSwN +06/17/2016,Comedians,@arjbarker,RT @changefurpaws: @arjbarker @theheraldsun @ABSCBNNews @SwannyQLD @ChinaMissionGva @okkimss @bbcchinese @PDChina @HuffPostUK https://t.co… +06/13/2016,Comedians,@arjbarker,"Soundcheck at the Wolf Trap, VA #flightoftheconchords #2016NorthAnericanTour https://t.co/kdEZ7P4ead" +06/13/2016,Comedians,@arjbarker,@faithie_g thank u! +06/13/2016,Comedians,@arjbarker,@MzKikii @AJemaineClement thank u! +06/13/2016,Comedians,@arjbarker,@ElisaBlessing thank u! +06/13/2016,Comedians,@arjbarker,@Case4Cleveland thank u! +06/13/2016,Comedians,@arjbarker,@Beuford2Beuford thank u! +06/12/2016,Comedians,@arjbarker,Wow. Cleveland audience was incredible!!!Makes you want to stay here forever. But The Road… https://t.co/sMWHe2hYcK +06/10/2016,Comedians,@arjbarker,An honor to play you :) https://t.co/1JaRiPnScn +06/10/2016,Comedians,@arjbarker,@yourenickaragon @142Throckmorton hope so! Great set too :) +06/10/2016,Comedians,@arjbarker,"Rockin crowd in Port Chester, NY as #flightoftheconchords kick off their 2016 North American… https://t.co/F57bjIs4zA" +05/23/2016,Comedians,@arjbarker,Ok drive safe brother! https://t.co/PA05r2KChH +05/22/2016,Comedians,@arjbarker,Love you Portland! https://t.co/mlUY9S8I8Y +05/20/2016,Comedians,@arjbarker,See you soon! https://t.co/WjW5pk9PKF +05/14/2016,Comedians,@arjbarker,@AlisonGrills ok fair enough. +05/14/2016,Comedians,@arjbarker,SF love #home https://t.co/pv5eXLWwCa +05/11/2016,Comedians,@arjbarker,I’m very psyched to be supporting Flight of the Conchords this summer in the states. All details at https://t.co/8a8OzUGq8D +05/09/2016,Comedians,@arjbarker,Portland! Yes! https://t.co/FAUkj8HgO6 +05/05/2016,Comedians,@arjbarker,@Pauly_Riordan @theprojecttv yeah I do actually. +05/05/2016,Comedians,@arjbarker,@LittleAussie_Me u bet +05/05/2016,Comedians,@arjbarker,@theprojecttv I said MAYBE the best city. I was careful to be diplomatic. Please don’t misquote me. My favourite city is wherever I am. +05/05/2016,Comedians,@arjbarker,@VickiWardMP @theprojecttv I didn’t actually state that. Please don’t misquote me. +05/05/2016,Comedians,@arjbarker,For the record I said Melb MAYBE the best city in Oz. And it was to set up a gag. I don’t pick faves. I enjoy everywhere I go. +05/05/2016,Comedians,@arjbarker,RT @theprojecttv: Tonight comedian @arjbarker joins us at #TheProjectTV desk! https://t.co/4LAyBoD5SL +05/01/2016,Comedians,@arjbarker,I thought that was you!!! https://t.co/hnfzuFwj9d +04/29/2016,Comedians,@arjbarker,@shootsbands thank u!! +04/29/2016,Comedians,@arjbarker,@Stormchaser__23 probably +04/28/2016,Comedians,@arjbarker,I hope I don’t end up having to explain my offshore YouTube acct. #panamapapers +04/28/2016,Comedians,@arjbarker,"@Zoe_inwondrland ok I’ll try again, thanks!" +04/28/2016,Comedians,@arjbarker,I’m interested in purchasing a last minute ticket to see Black Sabbath in Auckland tonight. Anybody got an extra? +04/22/2016,Comedians,@arjbarker,Thanks for having me on the show! Was fun :) https://t.co/deSEg4vhlm +04/20/2016,Comedians,@arjbarker,"https://t.co/377okXc6Mk +Self promoting sentence here." +06/30/2018,Comedians,@RealCarrotTop,Enjoying @FIFAWWC #soccer #worldcup ⚽️ @ Luxor Hotel and Casino https://t.co/NIArEbQAkj +06/30/2018,Comedians,@RealCarrotTop,Have you had your #VIP #CTMeetNGreet yet? Come on out tot he @LuxorLV for yours! tickets are available at the box o… https://t.co/2tE3qwLmO8 +06/30/2018,Comedians,@RealCarrotTop,"#botox at a #gasstation ? Ok FILLER... up! 💉⛽️😂 @ Las Vegas, Nevada https://t.co/pA5qDw8OYo" +06/29/2018,Comedians,@RealCarrotTop,"I know where I’m going tonight..👀🥕🔝 @ Las Vegas, Nevada https://t.co/S3CTGTrL8T" +06/27/2018,Comedians,@RealCarrotTop,Wanna escape the #vegas heat? Come on out to the @LuxorLV for the #VIP #CTMeetNGreet! #meetandgreet passes are avai… https://t.co/tekrEbWFNf +06/24/2018,Comedians,@RealCarrotTop,Bring your #SundayFunday to the @LuxorLV for the #CTMeetNGreet! #VIp #meetandgreet passes available at the box offi… https://t.co/qRiYRTSHqn +06/24/2018,Comedians,@RealCarrotTop,Wtf?.#cornhole #championships on espn ? Really??? https://t.co/wpXNrrZWO1 +06/21/2018,Comedians,@RealCarrotTop,It's the first day of #summer. Come on out to the @LuxorLV for the #CTMeetNGreet! Get yours today at the box office… https://t.co/99cHomeyRV +06/18/2018,Comedians,@RealCarrotTop,"It's Monday, Why not make the work week more fun by coming out to the #VIP #CTMeetNGreet at the @LuxorLV Tickets… https://t.co/SWhowwlBb4" +06/16/2018,Comedians,@RealCarrotTop,So great to see a #funny #friend #comic #legend… https://t.co/JzZcbTsSLU +06/16/2018,Comedians,@RealCarrotTop,😂✂️ #ponytail #dreads #dreadlocks @ Luxor Hotel… https://t.co/j1YMJVK9DD +06/15/2018,Comedians,@RealCarrotTop,What a great way to kick off your weekend with a #CTMeetNGreet at the @LuxorLV Get yours at the box office or… https://t.co/zKNprcADCi +06/14/2018,Comedians,@RealCarrotTop,Holy #tbt me and my #funny #friend Doug Doane… https://t.co/mGlu46MCFO +06/14/2018,Comedians,@RealCarrotTop,Love meeting the next generation of #fans. So… https://t.co/13Wmjh49rX +06/13/2018,Comedians,@RealCarrotTop,"Nice brisk day!🔥🔥🍳🔥🔥 @ Las Vegas, Nevada https://t.co/3VjpuCavrU" +06/12/2018,Comedians,@RealCarrotTop,True #love in #singapore . ❤️ this took time to… https://t.co/JQeBRtDoY3 +06/10/2018,Comedians,@RealCarrotTop,❤️🐾💋 @anythymelv https://t.co/EeEw7JpCEW +06/10/2018,Comedians,@RealCarrotTop,Time to shave my vegasgoldenknights #hockey… https://t.co/YnppkkO9LK +06/10/2018,Comedians,@RealCarrotTop,What a strange encounter at my #meetandgreet… https://t.co/5QEP4JxBFV +06/09/2018,Comedians,@RealCarrotTop,So awesome hanging with two great #friends and… https://t.co/hW9ahAa9ha +06/08/2018,Comedians,@RealCarrotTop,Gotta love #pottery shopping! 👀👀👀👀😂 @ Clay Arts… https://t.co/fHsR2ZeAte +06/08/2018,Comedians,@RealCarrotTop,How cute... little #bird on her #nest 🦅 @ Las… https://t.co/gkR7b8RqP2 +06/08/2018,Comedians,@RealCarrotTop,There's still a chance for our… https://t.co/x7r9O6wMO8 +06/06/2018,Comedians,@RealCarrotTop,Thank god my new #phonebook came in.. now I can… https://t.co/0daEWdSFrf +06/05/2018,Comedians,@RealCarrotTop,#vacation over.. ✈️back to #vegas https://t.co/CrQB0gDwW0 +06/01/2018,Comedians,@RealCarrotTop,Boom boom WHAAAT⁉️ https://t.co/GTRQ5LGhXE +06/01/2018,Comedians,@RealCarrotTop,https://t.co/wepcZoCPJO +06/01/2018,Comedians,@RealCarrotTop,#tbt @marilynmanson vinniepaul3 @djashba… https://t.co/qYjjDR8Y9T +05/30/2018,Comedians,@RealCarrotTop,"We're off this week, why not come out for the #CTMeetNGreet at the @LuxorLV when we get back! https://t.co/luYeEw9OU6" +05/30/2018,Comedians,@RealCarrotTop,amazon ..? You ripped me off! .😮😠😡😂 https://t.co/TsMuMXKyaB +05/28/2018,Comedians,@RealCarrotTop,#memorialday 🇺🇸 https://t.co/Ygb9rFASkl +05/27/2018,Comedians,@RealCarrotTop,Duhhhh! https://t.co/YHVTBJqeBt +05/26/2018,Comedians,@RealCarrotTop,This chicken didn't have a chance! Lunch with… https://t.co/1BeAeJ6ckM +05/25/2018,Comedians,@RealCarrotTop,Oops! 😂🌝🌚 https://t.co/NFIjLE5p2u +05/24/2018,Comedians,@RealCarrotTop,So great! @lateshow on @sethmeyers tonight! So… https://t.co/3Ylo9Rxr2A +05/22/2018,Comedians,@RealCarrotTop,Thanks again everybody for awesome #road… https://t.co/wYaAlnXsvI +05/20/2018,Comedians,@RealCarrotTop,Long day today #royalwedding #windsor #england… https://t.co/Vc9YkDjvu1 +05/19/2018,Comedians,@RealCarrotTop,#Utah #nevada #stateline https://t.co/y9SHizLSRd +05/18/2018,Comedians,@RealCarrotTop,Love all my #fanmail .. 📪📫✏️📝👨‍✈️ https://t.co/XPxfwc2oaI +05/17/2018,Comedians,@RealCarrotTop,On the #road .. see ya resortsatwendover and… https://t.co/AvsjHAn2P1 +05/16/2018,Comedians,@RealCarrotTop,Following #thelmaandlouise to #grandcanyon 🚘 https://t.co/UKnMU7HRiv +05/15/2018,Comedians,@RealCarrotTop,Loading out to do #roadshows . Come see us... @ Luxor Hotel and Casino https://t.co/wh4HHNURFz +05/14/2018,Comedians,@RealCarrotTop,"#election #billboards.. 🇺🇸 @ Las Vegas, Nevada https://t.co/yUm2mOIT0E" +05/13/2018,Comedians,@RealCarrotTop,So great my #brother and I can be with our #mother #happymothersday ❤️🌸 https://t.co/stRQog64Ik +05/10/2018,Comedians,@RealCarrotTop,Great having Jesse and dean from @CollectiveSoul and trey from… https://t.co/8PXCMUVkHy +05/08/2018,Comedians,@RealCarrotTop,Awesome news! @queenwillrock #queen @adamlambert 👏🎼🎹🎤 https://t.co/0DfRwiH5M4 +05/07/2018,Comedians,@RealCarrotTop,Thanks @anythymelv for my awesome new #espresso cups! nespresso https://t.co/MXVfbiMV23 +05/07/2018,Comedians,@RealCarrotTop,"#morning #run 🏃to find #shade @ Las Vegas, Nevada https://t.co/NT4vJ7T18J" +05/07/2018,Comedians,@RealCarrotTop,RT @croon1: I’m off to Texas today to do two things: 1) Do an interview about Angie and 2) Ask the Governor of Texas to issue a Sleep Apnea… +05/06/2018,Comedians,@RealCarrotTop,Thanks @nytimes for the great review! https://t.co/7jgYo8zMbK +05/06/2018,Comedians,@RealCarrotTop,Let watch our @GoldenKnights close out the @SanJoseSharks tonight! #goknightsgo #vegasborn #nhl #stanleycup… https://t.co/BCqRjNrJBY +05/06/2018,Comedians,@RealCarrotTop,Come see me resortsatwendover may 18 and sparksnugget may 19 🐴 https://t.co/ffVH92Md4H +05/05/2018,Comedians,@RealCarrotTop,Happy #cincodemayo 😂 @ Wolfgang Puck Bar & Grill Summerlin https://t.co/IrQ2l8c2xv +05/04/2018,Comedians,@RealCarrotTop,Hope to see you may 18 resortsatwendover #peppermill #show #roadtrip #comedy https://t.co/PpL6yqSarG +05/04/2018,Comedians,@RealCarrotTop,"RT @SteveMartinToGo: Marty Short and I will be on Fallon tonight. (This is the vanilla, pared-down, no-hype announcement. Flowery, all-hype…" +05/04/2018,Comedians,@RealCarrotTop,"RT @SteveMartinToGo: Here is the elaborate, thought-out announcement. https://t.co/HB2pNE7Lf6" +05/04/2018,Comedians,@RealCarrotTop,RT @SteveMartinToGo: I’m so ashamed. https://t.co/PfbvxSyD6x +05/04/2018,Comedians,@RealCarrotTop,@SteveMartinToGo legendary #comedy you and #Martinshort @jimmyfallon SO great!! #heros +05/03/2018,Comedians,@RealCarrotTop,"DfrxrcbnyfI'm not de @ Las Vegas, Nevada https://t.co/350RgqaDsI" +05/02/2018,Comedians,@RealCarrotTop,All flowered out thanks to @missdaisyfloral 🌸🌼🌺🌹 Awesome lunch at new place… https://t.co/uDxaLiH78p +05/02/2018,Comedians,@RealCarrotTop,Check out the #industrystandard #podcast with @BarryKatz with yours truly. Uncut and Uncensored. Head to the… https://t.co/BxaXLwI2mE +05/02/2018,Comedians,@RealCarrotTop,RT @BarryKatz: A unique & different look @ the career of CARROT TOP (Part 1of 2) @RealCarrotTop (31 Tonight Shows/Family Guy/Ellen/ESPN/CSI… +05/02/2018,Comedians,@RealCarrotTop,Had to get my last fix eltonjohn @caesarspalace 🎼🎤👏🎹 #legend #rocknroll… https://t.co/RT2ZFSPaa2 +05/01/2018,Comedians,@RealCarrotTop,It's #military appreciation month! All month long tickets are 1/2 off for all military! Head to the @LuxorLV box of… https://t.co/A1t0wEBKXT +04/28/2018,Comedians,@RealCarrotTop,"RT @NHLonNBCSports: There's nothing like @GoldenKnights hockey! + +Don't take it from us, ask @RealCarrotTop himself https://t.co/fP4iqzPdVY" +04/28/2018,Comedians,@RealCarrotTop,Went from a #run to a crawl with zippy_the_tortoise @ Wolfgang Puck Bar & Grill Summerlin https://t.co/4hLrWOyEvB +04/28/2018,Comedians,@RealCarrotTop,ronaldmcdonaldhouse_ 5k time 26:23 🏅🏃👍👏 @ Ronald McDonald House Charities of Greater Las Vegas https://t.co/xHecbR3HMI +04/28/2018,Comedians,@RealCarrotTop,Off to #run #5k ronaldmcdonald #charity @ Ronald McDonald House Charities of Greater Las Vegas https://t.co/KRQFJZrqkK +04/27/2018,Comedians,@RealCarrotTop,"What a fun lunch with 2 #funny #friends @louieanderson realnickswardson 😀 @ Las Vegas, Nevada https://t.co/4QH5IF6LoI" +04/27/2018,Comedians,@RealCarrotTop,Gotta love #gifts from #fans #tank #top 😂😂 https://t.co/YtQbKNVcWB +04/26/2018,Comedians,@RealCarrotTop,🥃+⛳️ @ Las Vegas National Golf Club https://t.co/i4xzKrVkjj +04/26/2018,Comedians,@RealCarrotTop,Fun #golf day for @southwestair #charity @queenwillrock helps!🎼⛳️ @ Las Vegas National Golf Club https://t.co/7U8RCxupLt +04/26/2018,Comedians,@RealCarrotTop,officialalanjackson's photo https://t.co/KGecdJ6VB5 +04/25/2018,Comedians,@RealCarrotTop,RT @croon1: Brian Evans and Jesse Stenger’s new song “A Beautiful Game” will be coming soon to #soccer fields around the world! Produced by… +04/23/2018,Comedians,@RealCarrotTop,Time for #maniquinmonday https://t.co/CbD5V5jrkH +04/23/2018,Comedians,@RealCarrotTop,How #awesome @tomfordintl https://t.co/bwQeDqWe8H +04/23/2018,Comedians,@RealCarrotTop,Come on out to the @LuxorLV for your #VIP #meetandgreet ! Tickets available at https://t.co/34TbZqM6NW. https://t.co/CrFhrjhxdc +04/22/2018,Comedians,@RealCarrotTop,Hanging w my #funny #friend @georgelopez @OgdenFoundation @ Red Rock Casino Resort & Spa https://t.co/iSrGgCli0g +04/22/2018,Comedians,@RealCarrotTop,Off to good start! @OgdenFoundation @ Red Rock Casino Resort & Spa https://t.co/Wt9vDjHqjX +04/22/2018,Comedians,@RealCarrotTop,Great to be part of @OgdenFoundation #bowling # wearing my @nfl #halloffame #ring https://t.co/JA5jGSw7bW +04/21/2018,Comedians,@RealCarrotTop,"Come on out to the May #roadshows starting in West Wendover at The Peppermill, @sparksnugget in Sparks then the… https://t.co/qxgaXdPC82" +04/21/2018,Comedians,@RealCarrotTop,New #prop for @starbucks #emplyees @ Luxor Hotel and Casino https://t.co/uP8Mg1OetF +04/20/2018,Comedians,@RealCarrotTop,Happy #420 https://t.co/FmEB7P3r6v +04/20/2018,Comedians,@RealCarrotTop,#fbf my #brother Garrett and omg..me on #beach in #Aruba ☀️ @ Aruba https://t.co/nqcacurEdh +04/19/2018,Comedians,@RealCarrotTop,"#tbt oh god!!! 19.. something 😂🎤🌸🌼🌺 @ Hampton Beach, New Hampshire https://t.co/kFoF9hnxKP" +04/19/2018,Comedians,@RealCarrotTop,"Got some #roadshows next month! In West Wendover at the Peppermill, the @SparksNugget in Sparks and the @FremontSLO… https://t.co/zVIZhosPjx" +04/18/2018,Comedians,@RealCarrotTop,Omg!!! vegasgoldenknights sweep!! #goknights @nhl #stanleycup 🏒🥃👏 #lasvegas https://t.co/C2i5pASru9 +04/17/2018,Comedians,@RealCarrotTop,"It's that time again... #flowers in your hair.🎼 🌸🌺🌼🌻 @ Las Vegas, Nevada https://t.co/uRrDDPU0AC" +04/16/2018,Comedians,@RealCarrotTop,Just watched... well READ a great #movie on americanair #bjornborg #johnmcenroe #tennis 🎾 https://t.co/jTajXBHL69 +04/15/2018,Comedians,@RealCarrotTop,"Goodbye #sunny #florida #home 🌞🚤 @ Orlando, Florida https://t.co/EMnK4d8cEe" +04/14/2018,Comedians,@RealCarrotTop,Pretty cool! Watching #rocket #launch #capecanaveral from my backyard. #orlando #florida 🚀 @… https://t.co/zVV6FKu23v +04/13/2018,Comedians,@RealCarrotTop,"My eltonjohn #glasses #project done.. or close to done! @ Winter Park, Florida https://t.co/bKAhcmpzS5" +04/13/2018,Comedians,@RealCarrotTop,"I found out what keeps waking me up.. little fucker! @ Winter Park, Florida https://t.co/1o8DZ6w15O" +04/13/2018,Comedians,@RealCarrotTop,"How do you spend your #vacation ? eltonjohn #glasses swarovski 🎼🎹👀👓🕶 @ Winter Park, Florida https://t.co/j5bPG6FhLl" +04/12/2018,Comedians,@RealCarrotTop,Head over to the @spreaker Website to catch the podcast i did with @Comickoz https://t.co/xgHSwUVp70 +04/11/2018,Comedians,@RealCarrotTop,"Great article by @Comickoz in the @VC_Reporter Check it out here... +https://t.co/6nMfIoDAIP" +04/11/2018,Comedians,@RealCarrotTop,#goknights @nhl #stanleycup #playoffs tonight on @nbc #hockey 🏒👏 @ Luxor Hotel and Casino https://t.co/uu0fNoM5Nq +04/10/2018,Comedians,@RealCarrotTop,🐾🥃✈️ @ McCarran International Airport https://t.co/uiWTfbxhbv +04/09/2018,Comedians,@RealCarrotTop,Having fun #backstage #movie #voiceover #nab #hollywood 🎤🎧🎬 thanks Tommy blaze. @ Luxor Hotel… https://t.co/1Z2aToOTLp +04/08/2018,Comedians,@RealCarrotTop,True #love ❤️ #stanleycup @nhl #playoffs begin April 11 on @nbc NBCSN @nhlonnbcsports… https://t.co/BegdfwQlNk +04/08/2018,Comedians,@RealCarrotTop,How awesome mercedesbenz #seat #toaster kelloggsus @poptarts411 #poptarts 👏 @ Luxor Hotel and… https://t.co/gp8oJKxdhB +04/07/2018,Comedians,@RealCarrotTop,Having a little fun with @crissangel #car 🚘 #stickers #lasvegas @ Las Vegas Strip https://t.co/iBp0kOAyHg +04/06/2018,Comedians,@RealCarrotTop,Brilliant! #cannabis #foodtruck #munchies #lasvegas @ Las Vegas Strip https://t.co/ILwC7DiPNy +04/05/2018,Comedians,@RealCarrotTop,Staying current w themasters #golf #augustanational pgatour ⛳️ @tigerwoods @ Luxor Hotel and Casino https://t.co/vy0uVcpe0W +04/03/2018,Comedians,@RealCarrotTop,Beautiful day for #golf! ⛳️ @anythymelv @ Angel Park Golf Club https://t.co/dxyyGoVAxR +04/03/2018,Comedians,@RealCarrotTop,Getting ready for themasters @tigerwoods #golf #pga ⛳️ @ Angel Park Golf Course https://t.co/RAPMq2xWyh +04/01/2018,Comedians,@RealCarrotTop,This is gonna be interesting.. #tsa #airport #security ✈️ @ Orlando International Airport (MCO) https://t.co/ZLmLBqm4rg +04/01/2018,Comedians,@RealCarrotTop,#happyeaster 🐰 https://t.co/F2W3npnB3q +04/01/2018,Comedians,@RealCarrotTop,"This is happening.. 25,years later. #speedo #sorry🏆🏊🏻🎪. @ Winter Park, Florida https://t.co/5t66xvYg7y" +03/31/2018,Comedians,@RealCarrotTop,"🐟🐠. #koi .. but all I see a 🦈 #shark ! @ Winter Park, Florida https://t.co/bYPXZoD5qj" +03/31/2018,Comedians,@RealCarrotTop,Now all I need is a stupid #teeshirt 👕 https://t.co/AIr4sWo0hk +03/30/2018,Comedians,@RealCarrotTop,"Look for some more upcoming #roadshows in West Wendover at the Peppermill, the @SparksNugget in Sparks and the… https://t.co/ulfksQTERL" +03/30/2018,Comedians,@RealCarrotTop,"Talk about a #birdseyeview .. cool #bird 🦅 pad. #orlando #florida 🌞 @ Winter Park, Florida https://t.co/EAnaI2Uafc" +03/28/2018,Comedians,@RealCarrotTop,A little @queenwillrock always helps a long #flight✈️ #queen #queenband #freddiemercury ❤️👍🎼🎹🎤🥁🎸🌈 https://t.co/j87RumIRWW +03/28/2018,Comedians,@RealCarrotTop,"I always keep my boo bear by me... even when I'm away from #home ❤️🐾 @ Winter Park, Florida https://t.co/lEgOgwpAIO" +03/27/2018,Comedians,@RealCarrotTop,Thank god #college 🏀 #basketball is down to #finallyfour #finalfour ncaabasketballtournament… https://t.co/DoNUh6Xb1E +03/27/2018,Comedians,@RealCarrotTop,Thanks everybody who came out to see us on the road.. on way back to @luxorlv #lasvegas 🚌 https://t.co/RrOsocyeIp +03/26/2018,Comedians,@RealCarrotTop,Great seeing my friend @BarrySobel and meeting dannyduncan69 at my show last night. Fun times!😄 https://t.co/TiTCduWPrb +03/26/2018,Comedians,@RealCarrotTop,Excited for tonight's show! @canyonconcerts #agorahills #california @ The Canyon Club & Special… https://t.co/A9j6z4ziml +03/25/2018,Comedians,@RealCarrotTop,"Awesome! Throwback #setlists from years #coachella #setlist #rocknroll @ Coachella, California https://t.co/8vPiifCPlw" +03/25/2018,Comedians,@RealCarrotTop,"Getting ready for #show tonight spotlight29casino #coachella @ Coachella, California https://t.co/1LmjbWxIHG" +03/24/2018,Comedians,@RealCarrotTop,"Rough day ! 🦆#duck #ducklife @ Palm Springs, California https://t.co/Mrs816qLtq" +03/23/2018,Comedians,@RealCarrotTop,"Mmmmmmmm! 😂 @ Palm Desert, California https://t.co/69Hagf7LtA" +03/23/2018,Comedians,@RealCarrotTop,On way to #coachella .. never rains in #california? ☔️ https://t.co/1YAibgwBbe +03/21/2018,Comedians,@RealCarrotTop,Well.. #tour starts tomorrow! Come say hi..🥕 https://t.co/550bfSRnFz +03/21/2018,Comedians,@RealCarrotTop,RT @croon1: Hope to see everyone at the show this Friday on Maui. I will be spending time in Las Vegas and Los Angeles to work on new music… +03/21/2018,Comedians,@RealCarrotTop,✌️❤️😊🌈.. https://t.co/wV2sVxQ93J +03/20/2018,Comedians,@RealCarrotTop,@anythymelv just sent me the cutest post from @theeverygirl_ ...why can't we all share this kind… https://t.co/p8f56t2ptW +03/19/2018,Comedians,@RealCarrotTop,Come too us next week on the #road new #merchandise #california #shows 🌞🥕 https://t.co/ZQrPcy5j4p +03/17/2018,Comedians,@RealCarrotTop,Happy #stpattysday 🍀🍀 #greenbeer 🍺 https://t.co/BLYVzfWhg9 +03/16/2018,Comedians,@RealCarrotTop,"Hi all, word just came down that the show in Beverly Hills just got canceled. Please come see me at the Canyon in S… https://t.co/iY7Ip7bXpm" +03/14/2018,Comedians,@RealCarrotTop,Can you guess which one is my #hair or #palmtree #dreads ✂️ https://t.co/D2Quco3m3a +03/13/2018,Comedians,@RealCarrotTop,Ok! Found the video.. playing #drums eltonjohn 🥁👍❤️ #bucketlist #dream @ The Colosseum at… https://t.co/dzoiYWX7nX +03/13/2018,Comedians,@RealCarrotTop,#happybirthday to my #nephew @lilcarrot__ 🎉🎂❤️ https://t.co/pz8mNGajs7 +03/10/2018,Comedians,@RealCarrotTop,Coming up soon. March 22 thecanyonsc #comedy #canyonclubsantaclarita #carrottop https://t.co/Y5RSeheU4n +03/09/2018,Comedians,@RealCarrotTop,Never imagine who I ran into.. @danreynolds @RealAjaVolkman @imaginedragons @hbo… https://t.co/uuTr99YB5g +03/05/2018,Comedians,@RealCarrotTop,Such a great day lvmotorspeedway @nascar @nascaronfox 🏁🏁 💯🏎 https://t.co/AlFxTu6dCN +03/04/2018,Comedians,@RealCarrotTop,Let's go #racing!🏁🏁 lvmotorspeedway https://t.co/VFjBcCD9a4 +03/04/2018,Comedians,@RealCarrotTop,RT @MLR1515: @RealCarrotTop Carrot Top hanging out with Michael Waltrip at the Las Vegas speedway.. . https://t.co/xlNS6mdEzH +03/04/2018,Comedians,@RealCarrotTop,"RT @LVMotorSpeedway: When in Vegas! + +@RealCarrotTop | @DylanMcDermott | #Pennzoil400 | #NASCARGoesWest https://t.co/PLRWG5jRRr" +03/04/2018,Comedians,@RealCarrotTop,RT @JonSchwartz1: Among those in attendance today at @LVMotorSpeedway are @DylanMcDermott @RealCarrotTop @AntronBrown #NASCARGoesWest https… +03/04/2018,Comedians,@RealCarrotTop,RT @xsthoughts: @CopaCavanna @AJDinger @RealCarrotTop I hear @AJDinger is a little guy. Don't think he's going to fit. +03/04/2018,Comedians,@RealCarrotTop,"RT @CopaCavanna: If @AJDinger needs a tag partner, @RealCarrotTop appears ready to go https://t.co/T77m0lY3WS" +03/04/2018,Comedians,@RealCarrotTop,RT @JTGRacing: .@AJDinger meeting @RealCarrotTop on the red carpet for the drivers meeting. https://t.co/OdqOky0shL +03/04/2018,Comedians,@RealCarrotTop,RT @TracksideShop: Look what @RealCarrotTop just found! @AJDinger has got some ‘splaining to do. 🤣🤣🤣 https://t.co/ZRPu5l1GIb +03/04/2018,Comedians,@RealCarrotTop,RT @JennChapple: Thanks @JeffMolitz for saying howdy and sending the pic of @AJDinger @RealCarrotTop @LVMotorSpeedway .. Hope to see ya in… +03/04/2018,Comedians,@RealCarrotTop,Thanks maverickhelicopters for the ride to lvmotorspeedway 🏎🚁🏁🏁 https://t.co/NvofwsPYwn +03/03/2018,Comedians,@RealCarrotTop,Just another normal day in #lasvegas feeding #llama Marley a 🥕 @FergusonsDT @ Downtown Las Vegas https://t.co/mMAm1vYCgI +03/02/2018,Comedians,@RealCarrotTop,🏂❄️.. this @shaunwhite thing will never end! Lol😂 @ Lee Canyon https://t.co/zyi60iQYdL +03/01/2018,Comedians,@RealCarrotTop,What a great #concert! eltonjohn 💯🎼🎻🎉 #legend #rocknroll @ The Colosseum at Caesars Palace https://t.co/Du6V9sfgEj +02/28/2018,Comedians,@RealCarrotTop,"RT @ekohmusic: how many other rappers do you know who have sang a hook on the back of a moped w/ @RealCarrotTop ? + +don’t worry, i’ll wait..…" +02/28/2018,Comedians,@RealCarrotTop,"RT @canyonconcerts: Carrot Top - March 25 +Carrot Top’s shows are a spectacle worthy of most arena rock bands and features lights, music, fo…" +02/28/2018,Comedians,@RealCarrotTop,"RT @SabanTheatre: Carrot Top - March 23 +Making audiences around the world laugh for more than three decades. Carrot Top has soared to succe…" +02/28/2018,Comedians,@RealCarrotTop,Surreal moment.. thanks John Mehon and eltonjohn for letting me play #drums 🥁🎼🎻. #eltonjohn… https://t.co/0tPQ5Q0SfY +02/27/2018,Comedians,@RealCarrotTop,Thanks for my surprise #birthday .. how many times can we say #cake? 🎂🎉 @ Luxor Hotel and Casino https://t.co/yU5WosgYnZ +02/25/2018,Comedians,@RealCarrotTop,Have you heard? I’ll be at the #canyonclub in #AgouraHills on March 25! Head to https://t.co/Jrh6UOBYkW to get your… https://t.co/7xWOTrM2sR +02/25/2018,Comedians,@RealCarrotTop,I'm gonna miss my #snowboard 🏂❄️ thanks buddy.❤ back to #Vegas ✈️ @ Reno-Tahoe International… https://t.co/aqj03Rp1w5 +02/25/2018,Comedians,@RealCarrotTop,"Awesome #birthday 🎂🥃 #laketahoe 🏂❄️🏂❄️ @ South Lake Tahoe, California https://t.co/VdfeOzqB2Q" +02/25/2018,Comedians,@RealCarrotTop,What an awesome #hotel @edgewoodtahoe #laketahoe 💯 @ Edgewood Tahoe https://t.co/I9f5luPvs6 +02/24/2018,Comedians,@RealCarrotTop,Ahh!!! 🏂❄️🥃 @ Heavenly Valley Ski Resort https://t.co/2pf0dsxNht +02/24/2018,Comedians,@RealCarrotTop,Can you feel the love at the @Spotlight29 on March 24! #tickets and #VIP #meetandgreet packages are available on… https://t.co/JAHYfcGieE +02/24/2018,Comedians,@RealCarrotTop,Don't try this at #home! Or on a #mountain..❄️🏂 https://t.co/XxQXT7UpeT +02/24/2018,Comedians,@RealCarrotTop,🏂❤❄️.... https://t.co/W0RESzUTTo +02/23/2018,Comedians,@RealCarrotTop,I’ll be at the @SabanTheatre on March 23! Get your #tickets and #VIP #meetandgreet at https://t.co/V0o1FPf0ea… https://t.co/6lDKLtdfeH +02/23/2018,Comedians,@RealCarrotTop,Hoping my #olmpics #nails will help my #snowboarding 🌈🏂❄️ @ Heavenly Valley Ski Resort https://t.co/nieydlpWjo +02/23/2018,Comedians,@RealCarrotTop,The #snow gods came! ❄️❄️🏂 @ Heavenly Mountain Resort https://t.co/VB3f9e7KN2 +02/23/2018,Comedians,@RealCarrotTop,"Hello? Yes, I’m Coming to @TheCanyonSC in Santa Clarita on March 22. Get your #tickets at https://t.co/Jrh6UOkmWm… https://t.co/vhsaRVk8ru" +02/23/2018,Comedians,@RealCarrotTop,Going for the gold! #laketahoe #snowboarding 🏂🥇 @ Heavenly Mountain Resort https://t.co/iPUU8RD3WH +02/21/2018,Comedians,@RealCarrotTop,Thanks @southwestair for great flight ❤️✈️ #vacation #laketahoe 🏂🌨❄️ https://t.co/xhts59YYMS +02/21/2018,Comedians,@RealCarrotTop,Oh SH....T! 👀👣 https://t.co/pElYPwYHK8 +02/20/2018,Comedians,@RealCarrotTop,Congratulations to marctheroberts and Kelly on your new #babygirl ❤️ @bluemangroup https://t.co/Fjio5t4TRg +02/19/2018,Comedians,@RealCarrotTop,😮😳💧 https://t.co/6R9zOJd7gw +02/18/2018,Comedians,@RealCarrotTop,Gotta love #winter in #lasvegas 76 ☀️☀️☀️ https://t.co/RFbY2TdgwV +02/17/2018,Comedians,@RealCarrotTop,Congrats again to me @shaunwhite @olympics #olympics 🏂🥇 https://t.co/oA8Fa5BPY1 +02/17/2018,Comedians,@RealCarrotTop,What a great #photo. 🌈👍❤️👣 https://t.co/eXErVZyC8S +02/16/2018,Comedians,@RealCarrotTop,#fbf #losangeles 199...? 😂 https://t.co/TLuHaGu021 +02/16/2018,Comedians,@RealCarrotTop,Perfect #song by @annemurray1 and #art by banksy ❤️🙏 https://t.co/j8NenQybks +02/16/2018,Comedians,@RealCarrotTop,🙏🙏 https://t.co/Rt2YXLi6kM +02/15/2018,Comedians,@RealCarrotTop,Come check me out on #tour. #road #shows 🎤🕺🥕 https://t.co/5TAKulhFx6 +02/14/2018,Comedians,@RealCarrotTop,Thanks @anythymelv for the awesome vase you made me! 💕 #happvalentinesday #handmadepottery https://t.co/ERchVEI6GV +02/14/2018,Comedians,@RealCarrotTop,#happyvalentinesday ❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/QGgYzczqjh +02/13/2018,Comedians,@RealCarrotTop,Come see me #valentinesday ❤️ code _4D @luxorlv .. #fb #photo from #Venice #Rome ❤️ https://t.co/F7eyZvOKxR +02/13/2018,Comedians,@RealCarrotTop,Very sad to hear the passing of #Marty Allen. He was a sweet #funny #legendary #comic and a… https://t.co/1h7Eb0Kfjm +02/12/2018,Comedians,@RealCarrotTop,Thanks to #freshballs for the awesome #asswipes! #bestfans 🍆🍌 https://t.co/VOLVMlowKh +02/11/2018,Comedians,@RealCarrotTop,Thanks @genesimmons for my awesome #vault #book #gift! 👋🕺🎸 https://t.co/360Ud4znfs +02/11/2018,Comedians,@RealCarrotTop,I think @genesimmons is asking ..why is #axlrose in this shot? https://t.co/Hk6dNdthPZ +02/10/2018,Comedians,@RealCarrotTop,This is starting to get creepy. @shaunwhite #chairmanoftheboard 🏂🏄 https://t.co/alrtpDTiww +02/10/2018,Comedians,@RealCarrotTop,These stairs should be an @olympics event! 👣🚶🏻‍♀️👟🥇 https://t.co/udrfqCC7U9 +02/10/2018,Comedians,@RealCarrotTop,Wish me luck tonight @olympics @shaunwhite 😂🏂 https://t.co/EG8pV4cp0I +02/09/2018,Comedians,@RealCarrotTop,Tour continues at the Canyon Club in Agoura on March 25! Get your #tickets at the @canyonconcerts box office or at https://t.co/Jrh6UOBYkW +02/09/2018,Comedians,@RealCarrotTop,Dear god!! thejerryspringershow #baggage #show gsntv 👋😂 https://t.co/nNlgqUaW1s +02/09/2018,Comedians,@RealCarrotTop,fiftyshadesmovie 🎬 @ Luxor Hotel and Casino https://t.co/YvBWiMhZYA +02/08/2018,Comedians,@RealCarrotTop,Love ❤️ my new shoes! I know they aren't for everybody! 🕺👟 https://t.co/RjFIjcKsUa +02/08/2018,Comedians,@RealCarrotTop,Come see me #valentines day❤️ Get your #tickets for 25% off with code _4D. @Luxorlv box office… https://t.co/EoToD3sTvp +02/07/2018,Comedians,@RealCarrotTop,Just posted a photo https://t.co/ceEkTONngZ +02/05/2018,Comedians,@RealCarrotTop,"#Repost @anythymelv with get_repost +・・・ +#goeagles !!!!!!!!! 🦅🦅🏈🦅🦅 https://t.co/KofNy1MFHl" +02/04/2018,Comedians,@RealCarrotTop,GO @eagles GO! @nfl #superbowl #nfl #football 🏈🦅 https://t.co/wThJxShcdq +02/04/2018,Comedians,@RealCarrotTop,You only see what your eyes want to see... Let them see me at the @29casino March 24. #tickets and #VIP… https://t.co/Pn8BoNc1gq +02/03/2018,Comedians,@RealCarrotTop,Thanks @converse for my #customshoes #customdesign 🥕👣👟 https://t.co/zaxiGAf45t +06/30/2018,Comedians,@PreacherLawson,"Awwwwwwwwwww SNAP!!! It’s evieclair y’all!!! Great seeing you! Glad you seen my show last night, keep killing it gi… https://t.co/4HWslniN1D" +06/30/2018,Comedians,@PreacherLawson,😂 https://t.co/Qk0N5Ng9mg +06/30/2018,Comedians,@PreacherLawson,@DarrenCarter HEY MAN!!! You in Phoenix?! +06/30/2018,Comedians,@PreacherLawson,LETS GO PHOENIX!!!! +06/30/2018,Comedians,@PreacherLawson,Guess who’s doing an ALL ages show in Los Angeles on July 8th...I’ll give you a hint he’s six foot four and his nam… https://t.co/arZTaV2X0o +06/29/2018,Comedians,@PreacherLawson,How was your last night? 😎 @OnlyBlackJustin #LawsonBros @ Copper Blues Rock Pub & Kitchen - Phoenix https://t.co/TqmuxAdPZN +06/28/2018,Comedians,@PreacherLawson,#TBT When I was 20 years old I lied on Craigslist and said I was Eddie Murphys nephew. So I could host a family reu… https://t.co/JrgGtrBplq +06/28/2018,Comedians,@PreacherLawson,"Shake that Laffy Taffy 😎🍬 + +#SeeYouThisWeekendPhoenix ☀️ @ Laugh Factory https://t.co/dWhphxhILp" +06/27/2018,Comedians,@PreacherLawson,RT @LisaKearth: Love this guy @PreacherLawson @AGT @BobHopeUSO @kearth101 #radiothon #flex4force #comedy #HumpDayHappiness https://t.co/Vqm… +06/26/2018,Comedians,@PreacherLawson,How To Make The GREATEST Green Juice EVER!!! - #CookingWithAComedian: https://t.co/ZZ4GsBNBwL via @YouTube +06/26/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/ZZ4GsBNBwL How To Make The GREATEST Green Juice EVER!!! - #CookingWithAComedian +06/26/2018,Comedians,@PreacherLawson,@PallaviGunalan You lost your tweeting privileges for the rest of the week +06/26/2018,Comedians,@PreacherLawson,@DPadrta lol I’ll be back in a two months +06/26/2018,Comedians,@PreacherLawson,THATS RIGHT!!! See you in a few days Phoenix!!! https://t.co/RVhMaCwLrV +06/26/2018,Comedians,@PreacherLawson,@RossBMR92 Working on it +06/26/2018,Comedians,@PreacherLawson,@TheRealEricMack https://t.co/tyGBngG3MC +06/26/2018,Comedians,@PreacherLawson,"@youngspice8 That doesn’t count! That’s like family guy, Simpson’s category" +06/26/2018,Comedians,@PreacherLawson,"@BobbyDigitaI @sreekyshooter First off I want to hear your best one, if it’s not spongebob..." +06/26/2018,Comedians,@PreacherLawson,@joeynajar I was JUST there last week!! +06/26/2018,Comedians,@PreacherLawson,Spongebob is the greatest cartoon of all time and I will fight anybody that disagrees!!! 👊🏾 +06/26/2018,Comedians,@PreacherLawson,"RT @Ali_Speaks: I am Back Cleveland @cleveimprov @cle_cavs_nation June 29-30th July 1 +#itsbiggerthanthesebars https://t.co/FJmRtu2HhS https…" +06/26/2018,Comedians,@PreacherLawson,"PHOENIX!!!! + +Get your tickets before we sell out this weekend!!! +https://t.co/dA1Fxb6CbO" +06/26/2018,Comedians,@PreacherLawson,Me: “Why are Flys called Flys but Horses aren’t called Gallops?! Huh am I right?! Nobody else thinks that’s weird?”… https://t.co/TmeA8B7QF2 +06/24/2018,Comedians,@PreacherLawson,Awwwwwwwww feel so good to be back home in my airplane chair #IMissedYou #SeriouslyThough… https://t.co/xatOHj3zrD +06/24/2018,Comedians,@PreacherLawson,North Carolina y’all were so dope 😊😍 +06/23/2018,Comedians,@PreacherLawson,"Haven’t been inside a gym in almost 3 months! Just body weight in hotel rooms LETS GET IT!!! 💪🏾 +#HotelWorkout… https://t.co/FH7VNH6GOk" +06/23/2018,Comedians,@PreacherLawson,"You can wear a shoe on your left foot, but there’s always a tomorrow that’ll never be found.... #Deep https://t.co/XVyUnUV6YQ" +06/22/2018,Comedians,@PreacherLawson,@mumbie12 Next time +06/22/2018,Comedians,@PreacherLawson,"@slyborg06 I meet everybody after the show, but I don’t think they’ll let her in because she’s 7. BUT just show the… https://t.co/pKWBqNAx7M" +06/22/2018,Comedians,@PreacherLawson,"RT @AndiCodes: @PreacherLawson Awesome show tonight! Can’t remember last time I laughed so damn hard, so please come back to Raleigh soon!!…" +06/22/2018,Comedians,@PreacherLawson,RT @ChefDSimpson: @PreacherLawson Amazing show tonight in Raleigh NC +06/22/2018,Comedians,@PreacherLawson,RT @JoshHagerNC: @PreacherLawson What an awesome show! I went and bought 2 Snickers bars afterward and I am now in my race car bed. You wer… +06/21/2018,Comedians,@PreacherLawson,NORTH CAROLINA!!!!! I’m here!!!! 🙌🏾😊 +06/21/2018,Comedians,@PreacherLawson,"RT @RenRaleigh: Get ready for a night filled to the brim with laughter! @PreacherLawson , as seen on America's Got Talent, is performing at…" +06/21/2018,Comedians,@PreacherLawson,Do it now so you don’t worry about it later +06/21/2018,Comedians,@PreacherLawson,THIS WEEKEND!!!!! https://t.co/KGPPcqCydP +06/20/2018,Comedians,@PreacherLawson,I’m having a blast co hosting on Access Live… https://t.co/LeW9PyFCGY +06/20/2018,Comedians,@PreacherLawson,@bbrownphotos88 @YouTube Thanks brother! 🙌🏾 +06/20/2018,Comedians,@PreacherLawson,@valerie_tosi Congratulations 🍾🎊🎈🎉 +06/20/2018,Comedians,@PreacherLawson,I’m on @accesslive 🙌🏾 +06/20/2018,Comedians,@PreacherLawson,This looks like me vs my alarm clock in he morning https://t.co/kDx9pGcMKu +06/20/2018,Comedians,@PreacherLawson,How To Make The Most AMAZING Vegan Burger of ALL TIME!!! #CookingWithAComedian: https://t.co/BbaReZdHVi via @YouTube +06/20/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/BbaReZdHVi How To Make The Most AMAZING Vegan Burger of ALL TIME!!! +06/20/2018,Comedians,@PreacherLawson,Happy 5 Year anniversary!!! I appreciate all the love you showed me! 🙌🏾 https://t.co/esQOn1k5tv +06/18/2018,Comedians,@PreacherLawson,GET READY!!! Because I’m about to randomly talk… https://t.co/roJjMadNna +06/18/2018,Comedians,@PreacherLawson,"RT @IntThings: 3 things to keep quiet.. + +1) Your love life. +2) Your income. +3) Your next move" +06/17/2018,Comedians,@PreacherLawson,@James_Metoudi LOOK AT EM!!! +06/17/2018,Comedians,@PreacherLawson,@animalchin24 😂🙌🏾 +06/17/2018,Comedians,@PreacherLawson,"Sucks when you’re a hugger around people that hate to be hugged 😫 + +WHO AM I GONE GIVE THIS LOVE TOO?! 😭" +06/17/2018,Comedians,@PreacherLawson,"I’m a GROWN man dad, I hate when you tickle me! Haha but you always find a way to make me laugh! Even if I don’t wa… https://t.co/EjnGI6CmvC" +06/17/2018,Comedians,@PreacherLawson,@GHurricane Yoooooooooooo!!!!! https://t.co/WWbmW6uOUZ +06/16/2018,Comedians,@PreacherLawson,Everybody should right now get on their knees… https://t.co/P7EgONol2G +06/16/2018,Comedians,@PreacherLawson,"What’s up BURBANK (Los Angeles) I’ll be headlining an all ages show July 8th get your tickets!! + +https://t.co/Sd9XwcPPsz" +06/16/2018,Comedians,@PreacherLawson,"@TheDrewLynch @CarrieHulon THATS RIGHT!!! + +The Drew and Preacher Show +💪🏾😂💪🏻" +06/16/2018,Comedians,@PreacherLawson,RT @SnwbrdrXoXo7: Here to see .@PreacherLawson! One of our favorites from #AGT! https://t.co/mtIyk7mkkU +06/14/2018,Comedians,@PreacherLawson,With my dog @thedrewlynch and his dog… https://t.co/Gh246XFlKW +06/13/2018,Comedians,@PreacherLawson,How To Make Amazing Hummus - #CookingWithAComedian: https://t.co/jO2QRyp4lv via @YouTube +06/13/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/jO2QRyp4lv How To Make Amazing Hummus - #CookingWithAComedian +06/13/2018,Comedians,@PreacherLawson,@rachklaus @SamuelJComroe @AGT Great job tonight!!! “I took that as a challenge” 😂🙌🏾 +06/13/2018,Comedians,@PreacherLawson,Level 10 +06/13/2018,Comedians,@PreacherLawson,RT @TheDrewLynch: International house of pancakes is changing to international house of burgers. We truly are in the darkest of times. +06/13/2018,Comedians,@PreacherLawson,Hey Ohio I know you lost a championship… https://t.co/O4I9JURG9x +06/12/2018,Comedians,@PreacherLawson,I’m changing my car alarm to gun shot sound effects. That way I’ll never get towed again 💡 +06/11/2018,Comedians,@PreacherLawson,Work hard be patient #GoodMorning 😊☀️ https://t.co/L93HbGycec +06/10/2018,Comedians,@PreacherLawson,Getting to do comedy with my brothers @woods_akeem @OnlyBlackJustin tonight!!! I can’t wait! #SittingInTheGreenRoom… https://t.co/zzJIfh3ncl +06/09/2018,Comedians,@PreacherLawson,😱😱😱😱 https://t.co/kska7CwmpL +06/09/2018,Comedians,@PreacherLawson,RT @KevinHart4real: There is no ELEVATOR to success people....You have to take the stairs!!!! Realest quote that I ever read which is why I… +06/09/2018,Comedians,@PreacherLawson,Just scooting through life like a gangsta 🛴🔥🙌🏾 https://t.co/BkQxvzivsT +06/09/2018,Comedians,@PreacherLawson,@weswillia Wat?! +06/08/2018,Comedians,@PreacherLawson,@Ian_Ex_Actor Doing great thanks bro +06/08/2018,Comedians,@PreacherLawson,@SeanConnaghan Hahahahahahaha +06/08/2018,Comedians,@PreacherLawson,They hit me so hard I missed spelled *Duct tape +06/08/2018,Comedians,@PreacherLawson,This lady hit me on my motorcycle and just to give you an idea how she drives. The duck tape was on the car BEFORE… https://t.co/dnoFQdR6mo +06/08/2018,Comedians,@PreacherLawson,RT @TheLaughFactory: Stop what you’re doing and get some @PreacherLawson in your life. You need a shot of his comedic energy. https://t.co/… +06/07/2018,Comedians,@PreacherLawson,@eshaknowsmma_ I agree 100% 🙌🏾 +06/07/2018,Comedians,@PreacherLawson,Hey everybody I was in @thedrewlynch cartoon and it was fun! Make sure you check out the full video on YouTube unde… https://t.co/bD6fiMQKhz +06/07/2018,Comedians,@PreacherLawson,I’m at icehouse Saturday doing an hour 😉 https://t.co/60j4OGrWJw +06/07/2018,Comedians,@PreacherLawson,Look everybody!!! I’m teaching everybody how to be hyper 😜🙌🏾 https://t.co/nFnEPXBIZR +06/05/2018,Comedians,@PreacherLawson,Hemp Milk: https://t.co/1fUYChzEtd via @YouTube +06/05/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/1fUYChi3BF Hemp Milk +06/05/2018,Comedians,@PreacherLawson,Crowd Makes Preacher Laugh: https://t.co/jO4Oz9fD1e via @YouTube +06/05/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/jO4Oz9fD1e Crowd Makes Preacher Laugh +06/04/2018,Comedians,@PreacherLawson,I love when the crowd catches me off guard with a good laugh! Fun times Chattanooga 😂🙌🏾 https://t.co/vUXEDvT81q +06/04/2018,Comedians,@PreacherLawson,Gooooooooooood MORNING!!!!!! +06/03/2018,Comedians,@PreacherLawson,@RonFunches 😂😂😂 +06/03/2018,Comedians,@PreacherLawson,It takes hours to make minutes look good #CookingWithAComedian 🙌🏾❤️ https://t.co/4w8qzN31qu +06/02/2018,Comedians,@PreacherLawson,"Don’t cry because it’s over, Smile because it happened" +06/02/2018,Comedians,@PreacherLawson,HEY EVERYBODY!!! I just did a hilarious cartoon with @TheDrewLynch check it out!! https://t.co/OvRD84h3J2 +06/02/2018,Comedians,@PreacherLawson,@JohnHeffron lol that’s insane +06/02/2018,Comedians,@PreacherLawson,GET YOUR TICKETS HERMOSA!!! https://t.co/DfUjVh75EI +06/02/2018,Comedians,@PreacherLawson,"Everybody has that one friend who they’ve known for years, but till this day can’t pronounce their name properly" +06/01/2018,Comedians,@PreacherLawson,Me watching the game last night... #JRSmith https://t.co/yprjN60FHq +06/01/2018,Comedians,@PreacherLawson,Y’all better get my little sisters album!!!!! 🙌🏾❤️ https://t.co/vwHxkxcWfx +06/01/2018,Comedians,@PreacherLawson,@CandaceMounts 100% ❤️ +06/01/2018,Comedians,@PreacherLawson,@yourgalHeather @EDC_LasVegas No ma’am +06/01/2018,Comedians,@PreacherLawson,@CandaceMounts Can you see that point of view Candace? https://t.co/6wgGOkxFxG +06/01/2018,Comedians,@PreacherLawson,@melissadlrosa You feel me 😡 +06/01/2018,Comedians,@PreacherLawson,@JackieVukovich I like it! +06/01/2018,Comedians,@PreacherLawson,"It’s bad when my first thought is + + “At least they didn’t shoot her..” https://t.co/oU4bha7dVY" +05/31/2018,Comedians,@PreacherLawson,@JohnHeffron Is that you?! +05/31/2018,Comedians,@PreacherLawson,@GHurricane Lol man leave me alone!! 😂 +05/31/2018,Comedians,@PreacherLawson,"@FollowTheMenace Bruh!!! 😂😂😂 + +I want to wait on Drake’s reply, I feel like he has to have something up his sleeve" +05/31/2018,Comedians,@PreacherLawson,"Most people know me from being a stand up comedian, but I have other hobbies and I encourage everyone to follow the… https://t.co/1KxCznmWep" +05/31/2018,Comedians,@PreacherLawson,@4FinalDraft @AGT @angiegreen @chasegoehring @angelicahale @Kechi @nbc #AGT12 gang!!! +05/31/2018,Comedians,@PreacherLawson,Hey everybody I did a podcast with @adamraycomedy and @funnybrad CHECK IT OUT!!! https://t.co/WxRlVjExn7 +05/30/2018,Comedians,@PreacherLawson,@analisa_ruiz27 @SimonCowell @AGT ❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@angiegreen @SimonCowell @AGT ❤️❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@stacyda30 @SimonCowell @AGT Good thing I’m a comedian that’s just joking +05/30/2018,Comedians,@PreacherLawson,That hurt my feelings @SimonCowell when you said on @Agt she was the funniest comedian on the show! Now I pray that… https://t.co/WblaRf93av +05/30/2018,Comedians,@PreacherLawson,"RT @ALNpodcast: The hilarious Preacher Lawson makes his ALN DEBUT to talk about what he was like growing up, (briefly) being homeless and l…" +05/30/2018,Comedians,@PreacherLawson,"I miss it too, but I PROMISE I’ll be on it again. Keep a look out 😉 https://t.co/JCCX3DKoWo" +05/30/2018,Comedians,@PreacherLawson,@ItsDarciLynne @AGT @nbc 😜❤️ +05/30/2018,Comedians,@PreacherLawson,@angiegreen @4FinalDraft @AGT @chasegoehring @angelicahale @Kechi @nbc Miss you back ❤️❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@KeonPolee Hahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha +05/30/2018,Comedians,@PreacherLawson,#BARS @Flaujae +05/30/2018,Comedians,@PreacherLawson,This is the greatest dancing grass I’ve ever seen! https://t.co/oV7DBLGdlK +05/30/2018,Comedians,@PreacherLawson,That’s what my mom did and I turned out fine! Good job @VickiBarbolak 🙌🏾 https://t.co/1HfyHOV2f3 +05/29/2018,Comedians,@PreacherLawson,Happy Tuesday all! If you haven't checked out my latest #CookingWithAComedian right now would be a great time! It's… https://t.co/QOHLLJWQYz +05/29/2018,Comedians,@PreacherLawson,Hey everybody!!! I did a freestyle rap for @AGT season premiere tonight!!! Watch it on @nbc 😉🙌🏾 https://t.co/xUwnCLMUDf +05/28/2018,Comedians,@PreacherLawson,"This was fun, take a listen 🙌🏾 https://t.co/lKYFqeldGq" +05/28/2018,Comedians,@PreacherLawson,@Princess_Tara79 @HeliumComedyPdx @OnlyBlackJustin +05/27/2018,Comedians,@PreacherLawson,RT @TaylorYeo1: Don’t think you’re too cool for your parents +05/27/2018,Comedians,@PreacherLawson,"You’re INSANE 😱 +Crushed it! Nice to meet you and anytime 🙌🏾 https://t.co/gRKA1V5UhE" +05/27/2018,Comedians,@PreacherLawson,@JohnHeffron Doing GREAT! Still in shock of how awesome my life is! I hope you’re doing just as well 🙌🏾 +05/26/2018,Comedians,@PreacherLawson,FAMILY TIME!!! Hanging with the sister Jenecia!… https://t.co/uCA8JlW7xU +05/26/2018,Comedians,@PreacherLawson,#Work 💡 https://t.co/X8jEd8dyBv +05/26/2018,Comedians,@PreacherLawson,@johnrodolfo That’s where I’m staying this weekend 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@RipCityRadio620 @dwightjaynes @AaronJFentress Thanks for having me 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@jennilutz I’m home! Gotta spend that time with family! But any other city I’m down! +05/25/2018,Comedians,@PreacherLawson,@zackgallinger See you soon buddy 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@deadbrew1 @ewjjr1 @TonyHinchcliffe Thank you brother!! Working on Houston in the next few months!! I promise I’m coming!!! 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,If you’ve heard of me within the last two… https://t.co/CeLvzDdLVo +05/25/2018,Comedians,@PreacherLawson,@HardcorePooper @HeliumComedyPdx @RipCityRadio620 100% take a picture and handshake! Can’t wait! 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@ewjjr1 @TonyHinchcliffe Doooooooooioipe!!! Can’t wait to see you man! Make sure you say what’s up after the show! +05/25/2018,Comedians,@PreacherLawson,"After y’all see me this weekend Portland, make sure you come back to watch the roast master @TonyHinchcliffe 🙌🏾 https://t.co/pwYuPK5IjH" +05/25/2018,Comedians,@PreacherLawson,@Janine Lol Stupid 😂 +05/25/2018,Comedians,@PreacherLawson,😜🙌🏾 https://t.co/ltfGY7dqjw +05/25/2018,Comedians,@PreacherLawson,@MryPunkin I say God Bless you too 😉 +05/25/2018,Comedians,@PreacherLawson,@PlatinumPerry @TWooodley I would pay money to see you say that in ANY hood. Punches can’t block bullets and darce… https://t.co/W0WTZ4ZRpe +05/25/2018,Comedians,@PreacherLawson,Thank you @tc73 for being me to @pdxmuaythai and beating me up today! My legs hurt from kicking! Thanks again! See… https://t.co/awP1c6rJMb +05/25/2018,Comedians,@PreacherLawson,@nicolebyer See you Saturday 😉 +05/25/2018,Comedians,@PreacherLawson,"Mom: If you don’t finish your plate you ain’t getting desert! + +Me: ... https://t.co/i4xXUQAHrz" +05/25/2018,Comedians,@PreacherLawson,YES!!! See you soon! 🙌🏾 https://t.co/BNbT9XIxxs +05/25/2018,Comedians,@PreacherLawson,@fusconed When?! I’m down! +05/25/2018,Comedians,@PreacherLawson,@nancynazari Haha the image in my head if you waiting is hilarious +05/25/2018,Comedians,@PreacherLawson,Hahahahaha just realized I can’t spell +05/25/2018,Comedians,@PreacherLawson,Vegan Jalapeno Poppers - #CookingWithAComedian: https://t.co/WNPJ6bxAwc via @YouTube +05/25/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/WNPJ6bxAwc Vegan Jalapeno Poppers - #CookingWithAComedian +05/25/2018,Comedians,@PreacherLawson,@CassidyQuinn @HeliumComedyPdx I got got a question! How about...what’s the address?! 🙃 +05/24/2018,Comedians,@PreacherLawson,"RT @francis_ngannou: From nobody to somebody !!! +#trust #believe #dreams #hope #goals ... https://t.co/QiDsXUNuGH" +05/24/2018,Comedians,@PreacherLawson,#TBT Yes I was ALWAYS like this! Trademarked my… https://t.co/8aG58e5amf +05/24/2018,Comedians,@PreacherLawson,"@jamiekilstein You’re a vegan, mma, comic?! 😱 + +Thanks my dude nice to meet you! 🙌🏾" +05/24/2018,Comedians,@PreacherLawson,PORTLAND OREGON LETS GAVE FUN THIS WEEKEND!!! @HeliumComedyPdx +05/24/2018,Comedians,@PreacherLawson,Who made the rule you only get one “Bless you” for sneezing +05/23/2018,Comedians,@PreacherLawson,RT @HollywoodImprov: .@the88show w/ @AveryFunny is back in #TheLab THIS WED at 10:15! @PreacherLawson @ArdenMyrin @jeremiahstandup & more h… +05/23/2018,Comedians,@PreacherLawson,RT @_TomRhodes: TRR Smart Camp #263 with @PreacherLawson! Get to know the first comedian ever to have abdominal muscles! I think he is pure… +05/23/2018,Comedians,@PreacherLawson,"PORTLAND OREGON!!!! +If we are not sold out ever show this weekend I will be HOT!!!! Come see your boy! #Helium… https://t.co/t2AV2gqgZR" +05/22/2018,Comedians,@PreacherLawson,🙌🏾❤️ https://t.co/EVmBHMbTtf +05/21/2018,Comedians,@PreacherLawson,"Me: “Take THIS life!” +Life: “.......” + +Hahaha… https://t.co/LlvNJdCFBj" +05/20/2018,Comedians,@PreacherLawson,@RandalNevin Thanks brother 🙌🏾 +05/20/2018,Comedians,@PreacherLawson,@USMAN84kg good work bruh 🤙🏾 +05/19/2018,Comedians,@PreacherLawson,@Jtaylor1040 Thank you for coming out! 🙌🏾 +05/19/2018,Comedians,@PreacherLawson,RT @IsobelKaraNight: Getting roasted by @PreacherLawson Tonight was the best!!! Add on top hearing a good new song to listen to because of… +05/19/2018,Comedians,@PreacherLawson,@ukpharmd06 You were great 🤙🏾 +05/19/2018,Comedians,@PreacherLawson,"Icehouse In Pasadena this Sunday +Hollywood Improv Tuesday 8pm +Hollywood Improv Wednesday at 10pm 🤙🏾 https://t.co/oE5yc9CIkX" +05/19/2018,Comedians,@PreacherLawson,RT @jeremiahstandup: I'm on this great show on Wednesday doing standup then an original song w/ @AveryFunny & @PreacherLawson @ArdenMyrin &… +05/19/2018,Comedians,@PreacherLawson,"RT @alharufai: Watch @PreacherLawson on YouTube, he light my life up" +05/18/2018,Comedians,@PreacherLawson,"That last move though 😂😂😂 +#ImDying https://t.co/0jPrtXBiUB" +05/18/2018,Comedians,@PreacherLawson,I needed a song for all them times I got fired 😂 https://t.co/HnWCeE3z0J +05/18/2018,Comedians,@PreacherLawson,@danhardymma Looking SHARP can’t wait to see you back in there 🤙🏾 +05/18/2018,Comedians,@PreacherLawson,@rianalorraine I still love you 😜❤️ +05/17/2018,Comedians,@PreacherLawson,RT @SeanSJordan: My mom just joined Insta. This is all I have left. +05/17/2018,Comedians,@PreacherLawson,If you take 100 selfies and 99 of them look the same...that’s how you look +05/16/2018,Comedians,@PreacherLawson,Nobody wants to SEE ME IN PULL UPS!!!!!!! #Nobody #GetYourWeightUp #ImAMagician #DoYouEvenLiftBro 😜💪🏾 https://t.co/Wo9CvanUMB +05/16/2018,Comedians,@PreacherLawson,Life’s a journey enjoy the ride 😉🏍 https://t.co/z1ntcR8jgQ +05/15/2018,Comedians,@PreacherLawson,Vegan Mushroom Tikka Masala - #CookingWithAComedian: https://t.co/sRu4I9j6CI via @YouTube +05/15/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/sRu4I9j6CI Vegan Mushroom Tikka Masala - #CookingWithAComedian +05/14/2018,Comedians,@PreacherLawson,I look like a half brother that came back from over seas after my t… https://t.co/G6yp1CGTL3 +05/14/2018,Comedians,@PreacherLawson,RT @dasmith23: @PreacherLawson was everything I expected and more! Must see!!! +05/14/2018,Comedians,@PreacherLawson,@FakeMeats could y’all sponsor me already! I’m going broke buying all this jerky off of amazon! +05/14/2018,Comedians,@PreacherLawson,Hahahahahahahahahaha #This https://t.co/nB4GYTw0Ve +05/13/2018,Comedians,@PreacherLawson,#HappyMothersDay to my favorite mom! Thank you for being my biggest… https://t.co/fQnNVijzg0 +05/13/2018,Comedians,@PreacherLawson,Two sold out shows KANSAS Crossing Casino!!! Thank you I had a blast… https://t.co/1Gag0xcPQj +05/12/2018,Comedians,@PreacherLawson,Ever wake up in the morning and look in the mirror like “I’m getting in great shape!” To only realize you’re just starving +05/12/2018,Comedians,@PreacherLawson,@mattjack99 On April 1st bruh 😂 +05/12/2018,Comedians,@PreacherLawson,I appreciate the love brother 🙌🏾❤️ https://t.co/6ri4NtrTwI +05/12/2018,Comedians,@PreacherLawson,@AmandaRTubbs I love me some me ❤️ +05/12/2018,Comedians,@PreacherLawson,@djlando You da man 🤙🏾😊 +05/12/2018,Comedians,@PreacherLawson,@Lerette_Adam I’VE BEEN TO MAINE TWICE IN THE LAST 8 months!!! +05/12/2018,Comedians,@PreacherLawson,@mriahowson Thank you for coming out! I’ll be back! +05/12/2018,Comedians,@PreacherLawson,I live for this 🎤 https://t.co/PAxyr0QAcs +05/12/2018,Comedians,@PreacherLawson,@baybeejj_xoxo See you soon 😉 +05/12/2018,Comedians,@PreacherLawson,@MelALehman Excited to see you BACK 🙌🏾😊 +05/11/2018,Comedians,@PreacherLawson,Stupid 😂 https://t.co/KfXs1jjsJd +05/11/2018,Comedians,@PreacherLawson,@kenmiller30 Hahahahahahahahahahahaha +05/11/2018,Comedians,@PreacherLawson,"Me: Hey @AppleSupport The Apple Watch I purchased is broken, can you fix it? + +Apple: Yes! For $20,000! + +Me: But I h… https://t.co/WOjEtTOnF8" +05/11/2018,Comedians,@PreacherLawson,@itsaskymouse @daganmccombs @BoeKnows32 @francis_ngannou @CoachJayNorvell He gassed because he threw everything he… https://t.co/JEf8HTcTpj +05/11/2018,Comedians,@PreacherLawson,@IamBrianOneil On the plane now with my SERIOUS FACE!!! https://t.co/2oER7QSOYD +05/11/2018,Comedians,@PreacherLawson,@IamBrianOneil Not even close +05/11/2018,Comedians,@PreacherLawson,I feel like meditation is just awake sleeping +07/01/2018,Comedians,@attell,"He was so smart, fearless and just did not care what the crowd thought. It was beautiful.  .I loved him like a brot… https://t.co/cQMyTMeCmZ" +07/01/2018,Comedians,@attell,It took me a while to process the loss of Sean Rouse.  Sean was a great friend and probably one of the funniest guy… https://t.co/VXEXyzeahy +06/29/2018,Comedians,@attell,"RT @ComedyCellarUSA: When we do something special we do it BIG! This Friday, Saturday and Sunday @attell and @realjeffreyross are taking…" +06/24/2018,Comedians,@attell,Mohegan sun.  We did it!!!!!   #Bumpingmics fans rock!! https://t.co/Z8ajKVaaWP +06/23/2018,Comedians,@attell,RT @realjeffreyross: CONNECTICUT @MoheganSun TONIGHT 8pm. #BumpingMics with @attell & special guest @yamaneika !!! https://t.co/EvKb4qSXgc +06/23/2018,Comedians,@attell,"see yah at @BananasComedyNJ tonite! + +tix: https://t.co/ZwYEQSSscY +(more on https://t.co/C1JS5AVNa2) https://t.co/ts13IR6lC9" +06/16/2018,Comedians,@attell,Thank you Bruce for the cool painting. I love it!!! @goodnightscc #raleigh https://t.co/6r2Z7IZsxg +06/15/2018,Comedians,@attell,RT @realjeffreyross: NEW YORK FUCKIN CITY THIS MAKES ME SO HAPPY #BumpingMicsNYC @attell https://t.co/oSvtvFkTQS +06/10/2018,Comedians,@attell,RT @realjeffreyross: Watch your fingers kids. #bumpingmics Vegas tonight @TheMirageLV https://t.co/tx6YQMKXiW +06/04/2018,Comedians,@attell,Heading to @TheMirageLV Vegas w/ @realjeffreyross on June 9 & @ComixMoheganSun June 23 - tickets on my site:… https://t.co/KfyK02v6Gw +05/24/2018,Comedians,@attell,Comics rocked & crowds took it to a new level in Seattle & Portland. Thx to all the super comedy fans for making it… https://t.co/5ElzzbQDgx +05/23/2018,Comedians,@attell,"The next stop with @realjeffreyross on the #BumpingMics tour: +👑👑VEGAS June 9th!👑👑 +Tickets at… https://t.co/Mz2Mvtvmz3" +05/22/2018,Comedians,@attell,RT @realjeffreyross: Not sure how I got @attell to sit still for an hour but I did... Here’s our #BumpingMics podcast https://t.co/krnVT8dA… +05/18/2018,Comedians,@attell,RT @realjeffreyross: Come see us in Seattle tonight you coffee drinking umbrella carrying hippies #BumpingMics ! https://t.co/hJuCj9n5GV @a… +05/17/2018,Comedians,@attell,With @realjeffreyross in #Seattle tomorrow & #Portland Saturday - 2nd show added! #bumpingmics for tix… https://t.co/vZicnO3KkV +05/17/2018,Comedians,@attell,See yah in #Seattle & #Portland this weekend! #BumpingMics https://t.co/vJqDwgTbo7 +05/17/2018,Comedians,@attell,"RT @realjeffreyross: What cities should we come to next ? Anything’s gotta be better than Thackerville, Oklahoma? #BumpingMics @attell http…" +05/13/2018,Comedians,@attell,Congrats @amyschumer great job xox +05/09/2018,Comedians,@attell,"I had a blast on the podcast @realjeffreyross - can't wait for the live shows + +https://t.co/VuuGiQhC7F" +05/09/2018,Comedians,@attell,".@realjeffreyross IT’S ON! Can’t wait til we’re in Portland and Seattle +2 weeks away! +2 great towns! +3 awesome s… https://t.co/kerU2W7wzG" +05/07/2018,Comedians,@attell,"Way to go Dr @KenJeong!!!   You rock !!!  + +https://t.co/3rSVOzvI1L" +05/03/2018,Comedians,@attell,"Congrats on the new @StressFactoryCT club, @Vinnie_Brand ... @StressFactoryNJ is one of my favorites, and I can't w… https://t.co/SSHYf1b5Qc" +04/30/2018,Comedians,@attell,"RT @Stand4Heroes: Great news San Francisco! Dave Attell to join @billburr and @realjeffreyross for Stand Up for Heroes: Bay Area, May 17 at…" +04/30/2018,Comedians,@attell,Congratulations on the #WHCD @michelleisawolf!!!!  can’t wait to see the @netflix show! +04/21/2018,Comedians,@attell,Congrats on the new movie @amyschumer!! xox @IFeelPretty #IFeelPretty https://t.co/b4OUXLczCz +04/12/2018,Comedians,@attell,@StudioSheila @ComedyCentral @CarolinesonBway Wow i like it!!! thanks Sheila…I feel like the burger king’s king. +04/12/2018,Comedians,@attell,She was a legend in the biz. And there will never be another one like her.  Give it up for the late great Mitzi Sho… https://t.co/wsCQLFKrvJ +04/08/2018,Comedians,@attell,It’s great to be  back on the island doing shows at my favorite club  @ComedyGovs. It was a fun time and great week… https://t.co/65BmOl8tNP +04/06/2018,Comedians,@attell,RT @TheBonfireSXM: This week we had @attell on the show and talked to Chrissy from Long Island... Catch Dave Attell at @ComedyGovs this Fri… +04/04/2018,Comedians,@attell,Check out @artiequitter's new book – it's great! https://t.co/trU2L9yLFV +04/03/2018,Comedians,@attell,love it! https://t.co/XAoq8P1sRF +04/03/2018,Comedians,@attell,"Finally! The funnest club is opening in the funnest town! +Check it out @NYCComedyCellar is opening in #Vegas at th… https://t.co/FAWgrmY2PG" +03/23/2018,Comedians,@attell,Great time at the @CountBasieThtr in Red Bank NJ with @realjeffreyross & @yamaneika Saunders on the… https://t.co/W0Kckn70LK +03/18/2018,Comedians,@attell,Happy Saint Patrick's Day from the Bumping Mics tour! https://t.co/tlKnNalCbU +03/17/2018,Comedians,@attell,RT @realjeffreyross: Headed to Lake Tahoe for our big show tonight @MontBleuResort #BumpingMics @attell ⛷ https://t.co/YJTyDNwhsB +02/25/2018,Comedians,@attell,It was sooooo cool playing @americancomco again.  San Diego rocks!!! Thanks to some great comics and amazing crowds… https://t.co/eqP40apwN1 +02/22/2018,Comedians,@attell,"RT @nicoleaimee: SAN DIEGO! 5 shows starting tonight at one of my favorite comedy clubs ever, @americancomco with my favorite mensch @attel…" +02/21/2018,Comedians,@attell,This was a wild show for a great cause !!!  Give it up for the late great Patrice!  Miss you now and always https://t.co/Bck898ObYQ +02/19/2018,Comedians,@attell,Great time in Phoenix & Tempe check out this great crew of comics   It was awesome !!! Can’t wait to come back.  Ne… https://t.co/9xHdUU87IQ +02/18/2018,Comedians,@attell,"RT @PMendoza602: Mr. @attell I'm gonna teach my kids your fabulous recipe for Hobo Chili! An Onion, A shoelace and the @mrcoffee at home. Y…" +02/14/2018,Comedians,@attell,RT @PaulyPeligroso: #PHOENIX I'll be opening for @attell this Friday and Saturday at @tempeimprov and Sunday at @standuplive. Let's talk ab… +02/08/2018,Comedians,@attell,"Happy Birthday, @RussMeneve ! https://t.co/7YGC6ZIWUK" +01/28/2018,Comedians,@attell,"We rocked the mall, @IamJustinSilver , Valerie & @PeteDominick !!!  @LevityLive is an awesome club!!!  Next stop… https://t.co/0Q9v9HPLYl" +01/25/2018,Comedians,@attell,"See yah at @LevityLive this weekend, @IamJustinSilver https://t.co/43w413i6iK" +01/25/2018,Comedians,@attell,RT @military_family: @attell Check out this amazing #HarleyDavidson being auctioned tomorrow - proceeds support #MilitaryFamilies https://t… +01/19/2018,Comedians,@attell,"It was a great night! xox +@NYCComedyCellar @realjeffreyross @DaveJuskow @toddbarry @Sherrod_Small @NikkiGlaser… https://t.co/1EBZBEGWXB" +01/19/2018,Comedians,@attell,Yummers!!!! Great cake fun nite. Xox https://t.co/ln1tBPIRvN +01/16/2018,Comedians,@attell,RT @IamJustinSilver: These shows are gonna be “fire” as the kids say these days! I’ll be opening for the great @attell Jan 26th & 27th at… +01/09/2018,Comedians,@attell,Great time at the @NYCComedyCellar post-holiday party tonight! See yah on the road this weekend Jan 12-14 at… https://t.co/0ngOCbtiDd +01/01/2018,Comedians,@attell,Great show at @sfmasonic . It was blast from beginning to end w/ @nickvatterott @heybubbles @morgan_murphy &… https://t.co/mveacbxGCp +12/24/2017,Comedians,@attell,Holidays shows are always fun but at @Hilarities in Cleveland we took it to the next level big thanks to The crowds… https://t.co/FUVyqgEcd0 +12/22/2017,Comedians,@attell,RT @Hilarities: Uncle Dave has arrived to spread Christmas Joy to all good little boys & girls & tell tales of skanky memories past! The fa… +12/21/2017,Comedians,@attell,Happy holidays to all the @jimandsamshow listeners. You rock!!   See yah at a club sometime soon. (New dates up on… https://t.co/4r34tcMzxo +12/21/2017,Comedians,@attell,"RT @joemachi: I'll be opening for @attell December 27-30 @CarolinesonBway. +#fun #hashtag" +12/17/2017,Comedians,@attell,I had so much funny hitting the stage with @iamjustinsilver and @maryradzinski at the legendary @UNCLEVINNIESCC. … https://t.co/W5BqGbzX6R +12/13/2017,Comedians,@attell,RT @CarolinesonBway: Get tickets to see Dave @attell LIVE in NYC at Carolines on Broadway Dec 27 - Dec 30 HERE: https://t.co/hj13xMg8EJ!! h… +12/13/2017,Comedians,@attell,Added more dates - next stop @UNCLEVINNIESCC in NJ and @Hilarities in Cleveland - Tickets on https://t.co/C1JS5AVNa2 https://t.co/rUBVowT6ij +12/12/2017,Comedians,@attell,Congratulations @JuddApatow on your first hour special! Check it out on @netflix +12/03/2017,Comedians,@attell,RT @HeliumComedyBUF: Easily one of the best weekends we have had this year! Big thanks to @rjpurpura and @iamShaunmurphy and of course to t… +12/03/2017,Comedians,@attell,It was great to be back in buffalo i love the crowds and staff at the @HeliumComedyBUF club.  And it was a pleasure… https://t.co/9mjhquRSEs +12/03/2017,Comedians,@attell,Congratulations on the new @hbo special @michelleisawolf !! #MichelleWolfNiceLady https://t.co/V4zLG0YXq4 +12/01/2017,Comedians,@attell,RT @HeliumComedyBUF: Four shows left with the amazing @Attell! Best availability at the late shows! Grab yours here: https://t.co/WTAtL87yN… +12/01/2017,Comedians,@attell,Thanks for the delicious chocolate treats @howardcadmus @OhPourLamour https://t.co/Yzyacw7btU +12/01/2017,Comedians,@attell,It was a great start of the week @HeliumComedyBUF - the crowd was pumped. And super fan Howard brought some delicio… https://t.co/R3ZopVof0h +11/25/2017,Comedians,@attell,"I hope everyone had a Happy T Day. xoxo +Let's give it up for the troops it's rough being away from family over the… https://t.co/x0jyRgzE0r" +11/23/2017,Comedians,@attell,"Happy Thanksgiving! + +Gobble up these dates & I'll see yah on the road! +(Tickets at https://t.co/vC07ePilDC) https://t.co/ZjZUfGNDuF" +11/21/2017,Comedians,@attell,"Great weekend @WiseguysUtah in SLC.... love the new club - BIG thanks to the Wiseguys' staff! +Next stop...… https://t.co/Nr15FhcDlU" +11/17/2017,Comedians,@attell,.@realjeffreyross Goal!!!! Congratulations on the new special Jeff. Xox #roasttheborder +11/16/2017,Comedians,@attell,It was a weds show but it rocked like a Friday. Full tilt great show with comics Chris & @nicoleaimee . Thanks Bake… https://t.co/OQWQwJjOZV +11/15/2017,Comedians,@attell,"@joerogan @HollywoodImprov Always a fun hang, Joe. Great to see yah!" +11/15/2017,Comedians,@attell,RT @joerogan: Beautiful to run into my friend @attell at the @hollywoodimprov tonight! https://t.co/PuXpYx6JUg +11/11/2017,Comedians,@attell,.@NateRockQuarry Thank you for inviting me to @vetspeakPDX .  It was  a very moving experience.  Much respect to  a… https://t.co/zxTt6S5Yv6 +11/10/2017,Comedians,@attell,"@T_h_e_D_u_d_e_ will be in San Diego in Feb. +my site has info https://t.co/C1JS5AVNa2" +11/10/2017,Comedians,@attell,RT @HeliumComedyPdx: Five shows left with the amazing @Attell! Limited tickets remain for Sunday Night! Grab yours here: https://t.co/rJiG8… +11/07/2017,Comedians,@attell,.@JudahWorldChamp you did it!!!  Congratulations on the new special +11/07/2017,Comedians,@attell,You gotta love a good bingo nite !! For a great cause.  #TeamRubicon @TeamRubicon w/ Michael Che https://t.co/S4aE7uWG8t +11/05/2017,Comedians,@attell,Had a blast w/ @louiskatz & @nicoleaimee @IrvineImprov It’s a big club but we packed it out! Next stop Portland >… https://t.co/ZOmwpWFIRY +10/31/2017,Comedians,@attell,What a fun nite!!! Check out the living legend @RealGilbert's documentary. Gilbert.  I laughed I cried I wet the be… https://t.co/jmKEZPTg4Y +10/24/2017,Comedians,@attell,"Weekend went from good to great @VTcomedy when the king himself Elvis P, dropped by to hang w/ me & the other comic… https://t.co/niRWt5JLvt" +10/17/2017,Comedians,@attell,Me and @mikefinoia at one of my favorite clubs Always fun times - the staff and crowds rock.  Happy 25 years… https://t.co/ivHikpxgea +10/14/2017,Comedians,@attell,"comedy fans! My buddy @wilsylvince is making a film - it's really cool - check out the clip +https://t.co/Ba9O3WnSYl" +10/12/2017,Comedians,@attell,RT @mikefinoia: Washington D.C! I’ll be with @attell this weekend at @dcimprov Friday - Sunday. 5 shows. Almost… https://t.co/sCbJSS4FFD +10/12/2017,Comedians,@attell,.@artiequitter you made it!!! Happy birthday brother. Xox https://t.co/CktEfobJbK +10/06/2017,Comedians,@attell,The Road Gods have taken another great one... We miss you Ralphie!! +09/22/2017,Comedians,@attell,See yah tonight @Red5Nord ! https://t.co/FN499YkmHl +09/17/2017,Comedians,@attell,"RT @joemachi: Hey CT! I'm opening for @attell at Foxwoods 9/22! +https://t.co/CqIcicuxJW" +09/17/2017,Comedians,@attell,Me & @KingJasonAllen @ComedyZoneCLT - @cliffcashcomedy was also on the show but had to drive to next gig. Go see… https://t.co/LonDGFLlCR +09/17/2017,Comedians,@attell,"Drawn by one of the staff Sarah at the @ComedyZoneCLT + +Way to go Sarah P I love it!! https://t.co/jRo57XakAV" +09/15/2017,Comedians,@attell,RT @woodyandwilcox: Thnx again Dave. Always great. Go see @Attell @ComedyZoneCLT this wknd!! #ComedyLegend #Attell #Woodying https://t.co/B… +09/14/2017,Comedians,@attell,"Happy Birthday, @realjeffreyross ! 💕 https://t.co/Nw0t2eDdCX" +09/12/2017,Comedians,@attell,This will be a fun show. Check it out . https://t.co/iRm0uQeZNi +09/09/2017,Comedians,@attell,"RT @ArtieandAnthony: Check out today's episode of #TheAAShow w/ @artiequitter, @AnthonyCumiaxyz, @attell, & @robertkelly in the archives be…" +09/04/2017,Comedians,@attell,.@lacelarrabee & Jarrod Harris killed at @punchlinecomedy and are getting married!!!  Give em a hand!!! https://t.co/TTyugSJdaE +09/04/2017,Comedians,@attell,I made it!!   I had a great weekend playing the new @punchlinecomedy. Check out this club - The crowds rocked! https://t.co/FYuAs9bzYS +09/01/2017,Comedians,@attell,"RT @punchlinecomedy: This Weekend Dave Attell is only at The Punchline. Friday, Saturday, Sunday. Make your plans to see @attell https://…" +08/18/2017,Comedians,@attell,See yah tonight @ 8pm. Still a few tix left. https://t.co/Er9CxgHSsX +08/16/2017,Comedians,@attell,"Can't wait, @joemachi - it's gonna be a great night! https://t.co/hK9hGoQ7fN" +08/15/2017,Comedians,@attell,Check out this documentary... https://t.co/xwhUBn5tJs +08/07/2017,Comedians,@attell,RT @kevinbrennan666: @SteveTorelli @DaveJuskow @attell @RachelFeinstein @NYCComedyCellar That pos @attell can only like it? No retweet? Wha… +08/07/2017,Comedians,@attell,"It would be an honor & a privilege to write a blurb for your 2nd installment, @DougStanhope https://t.co/p1zyfYwBwv" +07/30/2017,Comedians,@attell,".@CraigyFerg you are the man!!! + +Thanks for doing the show!! https://t.co/AfLVZdhQkY" +07/24/2017,Comedians,@attell,"RT @TheBonfireSXM: FUN FACT! @ComicMikeV @louiskatz & @bigjayoakerson were all consultants on @attell's ""Dave's Old Porn""... https://t.co/L…" +07/21/2017,Comedians,@attell,RT @FoxwoodsCT: .@Attell is bringing the laughs to the #Foxwoods stage this fall! Don’t miss the comedian live on Sep 22 https://t.co/xdq6o… +07/19/2017,Comedians,@attell,RT @realjeffreyross: Nice piece about my upcoming live shows with my best pal @attell #BumpingMics at Montreal's @justforlaughs is next wee… +07/18/2017,Comedians,@attell,RT @realjeffreyross: Excited to share the stage w my brother @attell during the Montreal Comedy Festival next week @justforlaughs Info at h… +07/18/2017,Comedians,@attell,Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for doing the… https://t.co/0rEKhuXn2T +07/18/2017,Comedians,@attell,Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for doing the… https://t.co/W0Oo2pUCOh +07/18/2017,Comedians,@attell,RT @ChristineMEvans: Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for @attell's Military Fa… +07/13/2017,Comedians,@attell,Great nite @NYCComedyCellar with one of the best of the best. My friend Artie Lange @artiequitter https://t.co/nRBQbHGV2Z +07/06/2017,Comedians,@attell,Thanks for letting me hang on @TheBonfireSXM today @bigjayoakerson & @DanSoder https://t.co/tKt74KZq4Y +07/06/2017,Comedians,@attell,Watch @DanSoder's @netflix special! https://t.co/WFfw1IqHWm +06/22/2017,Comedians,@attell,"See yah this Fri & Sat, Annapolis @RamsHeadOnStage + +https://t.co/QrkhxQuKyY https://t.co/kmq1gYGgQ1" +06/19/2017,Comedians,@attell,RT @TheBonfireSXM: .@bigjayoakerson & @DanSoder are on @attell's National Military Family Association benefit MON 7/17 @NYCComedyCellar htt… +06/19/2017,Comedians,@attell,See ya this weekend Annapolis @RamsHeadOnStage it's gonna be a hot one! https://t.co/LZOWfSRdQW +06/18/2017,Comedians,@attell,Me and the comics had a great one @HeliumComedySTL !!!  I love them St. Louis crowds.  Xox https://t.co/8UG1r1du3V +06/17/2017,Comedians,@attell,RT @NYCComedyCellar: July 17th @attell and friends at the Village Underground to support the @military_family tkts: https://t.co/9vhhE7U8… +06/15/2017,Comedians,@attell,"RT @justforlaughs: One stage might not be enough for these two... +@realjeffreyross and @attell: Bumping Mics July 26-28! +Tix: https://t.co/…" +06/15/2017,Comedians,@attell,RT @HeliumComedySTL: #TBT to an episode of The Up-and-Comer with @Attell at our Philly club a few years back! He'll be here all weekend! ht… +06/15/2017,Comedians,@attell,"@rainebates Hi,  Samantha .. I  really like your drawing..You nailed it, big time.  thanks again." +06/11/2017,Comedians,@attell,.@ComedyWorks Rocks!! #Denver https://t.co/MTc5nlJJso +06/07/2017,Comedians,@attell,"RT @bertkreischer: NEW PODCAST IS UP!!! + +#237 – @attell , @TomSegura, & ME https://t.co/Jti7hTHQfl" +06/06/2017,Comedians,@attell,Doing a show for @military_family at @NYCComedyCellar on 7/17. Tickets here: https://t.co/0oveM0IpZJ https://t.co/Tf15VCBqvM +06/05/2017,Comedians,@attell,See ya in Denver this weekend @ComedyWorks https://t.co/RkTkVsVWFD https://t.co/jdibhhSB1o +06/02/2017,Comedians,@attell,Happy Bday @amyschumer & @NikkiGlaser !! +06/02/2017,Comedians,@attell,Summer's here and I'm on the road. Check & see if I'm at a club near you. Tickets at https://t.co/vC07ePilDC xoxo https://t.co/j5PdZ9abp1 +05/24/2017,Comedians,@attell,3 Beards!!! Fun hanging with @bertkreischer & do the @bertcast . Check these guys out live.  They're great!!! https://t.co/NiXJbA8EGD +05/19/2017,Comedians,@attell,The llama crushed it! Next stop @Netflix! @funnybrad @CrapshootComedy https://t.co/F2gUZui4LI +05/14/2017,Comedians,@attell,It was a wet rainy nite but the Boston crowds came out in droves. @The_Wilbur is the best. Xox https://t.co/CEO4uWniz2 +05/12/2017,Comedians,@attell,Check Mark N’s 1st hour special tonite.  @marknorm is one of my favorites. He's a killer joke writer & I can’t wait… https://t.co/6N2etVSxcu +05/05/2017,Comedians,@attell,.@funnybrad it's just a few weeks till vegas @CrapshootComedy fest. After the show we are going for steaks !! My treat. +05/04/2017,Comedians,@attell,.@JimGaffigan I am thinking of you & your family and wishing @jeanniegaffigan a speedy recovery. +04/30/2017,Comedians,@attell,@NickLongworth08 Thanks for coming to the show. You and your crew were great!!! +04/28/2017,Comedians,@attell,"RT @StressFactoryCC: Doors are open for @attell's first show of the weekend! Still a few tickets left for tonight's shows, tomorrow is sold…" +04/28/2017,Comedians,@attell,". @Vinnie_Brand & @mikefinoia guys, Its gonna be a hot weekend at the club. I am pumped for the shows - https://t.co/PuusuKprmX" +04/27/2017,Comedians,@attell,"RT @StressFactoryCC: This Weekend - @Vinnie_Brand Thursday & @attell Friday & Saturday. Shows are selling out, so don't wait to get tickets!" +04/27/2017,Comedians,@attell,RT @mikefinoia: NJ! This fri & sat I'm opening for @attell at @StressFactoryCC get tix it's gonna be life changing https://t.co/hqSIwsqGWf +04/23/2017,Comedians,@attell,Amazing shows. I love this town!! @AcmeComedyCo https://t.co/xneBVee1rL +04/23/2017,Comedians,@attell,"RT @mikefinoia: New Jersey friends. Next fri & sat I'm opening for @attell at @StressFactoryCC 4 shows. Get tickets, poop, shower, eat, & c…" +04/21/2017,Comedians,@attell,Go to this - @RoryAlbanese taping his first 1-hr special - check him out live - https://t.co/3GncYlbGzV https://t.co/Uf38z2apdm +04/18/2017,Comedians,@attell,RT @DirJordanBrady: “I am Battle Comic” Documents Stand Up Comedy for Troops & Donates Ticket Sales to NMFA https://t.co/i3bR5I36PK w @geor… +04/11/2017,Comedians,@attell,It was a wild nite at the palace theatre. There is nobody better than Chris. It was an honor to be a part of the sh… https://t.co/f3UEvLpu6s +04/11/2017,Comedians,@attell,RT @chrisrock: Total blackout tour Albany NY. The great Dave Attell just ripped it. https://t.co/JyKZ4eUoSO +04/09/2017,Comedians,@attell,"4 sold out shows!!  Thanks Madison, Mike Stanley, & Nick Hart @ComedyOnState https://t.co/YFklZZcF0p" +04/07/2017,Comedians,@attell,"Another sad loss in the comedy world. Don was a hero of mine. He was fast, loose & never quit. + +https://t.co/OnDpRF9wRF" +04/01/2017,Comedians,@attell,"Great show jay and dave killed it!!   Check em out at @CarolinesonBway saturday & sunday +@bigjayoakerson… https://t.co/iXwGqS3d61" +03/30/2017,Comedians,@attell,.@bigjayoakerson 1st ever Carolines gig !!! https://t.co/DUsf1o08nX +03/27/2017,Comedians,@attell,Congrats @DaveJuskow on your episode of @CrashingHBO ! https://t.co/cx92Zsr1Hm +03/22/2017,Comedians,@attell,"RT @The_Wilbur: Presale: @attell 5/13 - Enter code ""WT22"" to get the best seats before the public! +TIX: https://t.co/9SbDeZsJk0 https://t.c…" +03/19/2017,Comedians,@attell,"The @BorgataAC .  This was great!!!  Two amazing shows!!! Me, @sammorril & @realjeffreyross https://t.co/rUp9iQO4g6" +03/17/2017,Comedians,@attell,"RT @realjeffreyross: I'm probably the first person ever to say ""I'm so excited to be in Bethlehem, PA!"" Big show at @Sands_Bethlehem with…" +03/06/2017,Comedians,@attell,RT @DirJordanBrady: .@artiequitter march 10th please tell your #Detroit fans to see @IAmBattleComic April 5th. Doc on comedy for troops w @… +02/27/2017,Comedians,@attell,What fun club. I had a blast. Thanks again @parlorlive https://t.co/xgwWwncwyd +02/24/2017,Comedians,@attell,It's gonna be a good night... https://t.co/twrTdkSmIo +02/18/2017,Comedians,@attell,"RT @CrashingHBO: He's lost everything but his sense of humor. #CrashingHBO premieres Sunday, Feb. 19 at 10:30pm. https://t.co/KrbiKADLnP" +02/13/2017,Comedians,@attell,Congrats @pattonoswalt on the Grammy win! +02/06/2017,Comedians,@attell,RT @luisjgomez: I'm opening for the great Dave @Attell at Levity Live in W Nyack NY all weekend! Come out! +02/05/2017,Comedians,@attell,The @RussMeneve Birthday Pre-Game! https://t.co/uKiiQFNvxb +01/27/2017,Comedians,@attell,RT @CrapshootComedy: @CrapshootComedy is proud to announce the addition of #DaveAttell to the 2017 lineup #Headliner #Legend https://t.co/J… +01/24/2017,Comedians,@attell,"TONIGHT: tix avail at the door starting at 6:30pm: $40 cash/credit + +https://t.co/XaG6ZmcMPX" +01/23/2017,Comedians,@attell,A rocking time in at @Magoobys. Big thanks to the crowds this weekend https://t.co/P4Hbv7cis6 +01/19/2017,Comedians,@attell,Thanks everybody for all the birthday shoutouts   Xox. https://t.co/HFXbrXpnN1 +01/10/2017,Comedians,@attell,"RT @dcimprov: Friday and Saturday, @ComicMikeV kicks off our Next Wave comedy series. Check him out: https://t.co/mt8xDPAx8T" +01/10/2017,Comedians,@attell,RT @dcimprov: Dave @attell picked @ComicMikeV for our Next Wave series ... and he's here Friday and Saturday! https://t.co/3GFlaC0F50 +01/10/2017,Comedians,@attell,Yessss https://t.co/SeCCU6xjrR +01/02/2017,Comedians,@attell,Happy New Year @kevinbrennan666 and Carrie thanks again for having me on your @mlcpodcast +01/01/2017,Comedians,@attell,"Cellar New Years Shows +#2017 +@nyccomedycellar +#happynewyear https://t.co/HJpnnVa52d" +12/31/2016,Comedians,@attell,One of the best shows of the year.  Big thanks to the staff and fans for coming down to @CarolinesonBway .   Have a… https://t.co/CUqkTTmvmG +12/27/2016,Comedians,@attell,"RT @RiotCast: A brand new @MLCPodcast, Happy Hanukkah with @Attell’ is up now on iTunes, Stitcher & https://t.co/eCA9Zg51F9!" +12/22/2016,Comedians,@attell,RT @DaveJuskow: Good morning everyone. It's an all new classic pcast to last you through the holidays with the great @attell :) +12/22/2016,Comedians,@attell,RT @CarolinesonBway: Dave @Attell headlines the week in between Christmas & New Years. Tickets are going fast! -> https://t.co/DUA3ATzvc5 h… +12/20/2016,Comedians,@attell,"RT @truTV: No more eggnog jokes. +@attell wrote the BEST ONE: + +“Eggnog, who thought that up? 'I wanna get a little drunk, but I also want…" +12/13/2016,Comedians,@attell,RT @jimandsamshow: Thanks to @jameyjasta and @attell for coming in! #JimandSam replay is on NOW! Sirius 206 / XM 103 https://t.co/0foUEQiBrw +12/07/2016,Comedians,@attell,"Happy Birthdays, @bigjayoakerson & @wilsylvince xox" +12/06/2016,Comedians,@attell,"The Grand Master of comedy, #RobertKlein!!! @laughforsight #benefit w/ @judahworldchamp + #gotham #nyc https://t.co/fckaSc9hIH" +12/06/2016,Comedians,@attell,At the @laughforsight #benefit with @JudahWorldChamp tonight. #gotham #nyc https://t.co/rRServ2vMw +12/06/2016,Comedians,@attell,Great night at the @laughforsight #benefit with @jimgaffigan & brian fischler https://t.co/LfGkM9cTTo +11/30/2016,Comedians,@attell,RT @luisjgomez: You wanted @attell. You got him! Tonight @LegionOfSkanks LIVE 9pm @creekandcave! Come hang out! +11/23/2016,Comedians,@attell,.@PaulMecurio Thanks paul. for having me on the show Have a great turkey day buddy +11/19/2016,Comedians,@attell,RT @RealBenBailey: Today's the day!!! NEW STAND-UP SPECIAL short films & new podcasts are all available at https://t.co/zsXrEHtzCq https://… +11/19/2016,Comedians,@attell,"RT @artiequitter: First time I've seen my name up in print for ""Crashing"". On HBO. Worked w Pete Holmes & Judd Apatow! Starts Feb 19! https…" +11/11/2016,Comedians,@attell,"RT @ComedyCastle: It's Friday and we are ready for the weekend with @attell, @nicoleaimee & Steve Sabo. 🎟: https://t.co/1eC1YsxVCU https://…" +11/10/2016,Comedians,@attell,RT @nicoleaimee: HEADS UP DETROIT! Doing 5 shows with @attell this weekend at @comedycastle! Come see us tell… https://t.co/JJ07qxmbgM +11/07/2016,Comedians,@attell,.@ChicagoImprov we did it!! https://t.co/3yYQji3TgX +11/03/2016,Comedians,@attell,Me and the guys at last night's Hedberg Vinyl Release show @RealGilbert @artiequitter https://t.co/R9nMs8t42H +11/02/2016,Comedians,@attell,The vinyl box set of the greatest of the great... https://t.co/Rvh3aH96aD https://t.co/UaWW5Rf81A +11/02/2016,Comedians,@attell,RT @ChristineMEvans: Had such a great time tonight at the live @TheBonfireSXM for @nycomedyfest w/ @bigjayoakerson @DanSoder & @attell!! #C… +10/30/2016,Comedians,@attell,Me and the comics at @Hilarities #Cleveland rocks !! https://t.co/nLufBUJcPO +10/29/2016,Comedians,@attell,Fan art from Mike @ the @Hilarities show tonite. Thanks  Mike!!  Super cool. Love it!! https://t.co/TONwFC28hJ +10/22/2016,Comedians,@attell,"Kevin Meaney was a classy guy on & off stage. One of my favorite bits, ""We're Big Pants People"" is timeless. https://t.co/ntwHGIysKT RIP" +10/21/2016,Comedians,@attell,Happy birthday @DanNaturman ! +10/15/2016,Comedians,@attell,All star show Tonite at the sun arena I was just glad to be a part of it.   Happy 20th anniversary @MoheganSun!!… https://t.co/tv2gEmfERD +10/14/2016,Comedians,@attell,RT @artiequitter: @attell thx Dave! I love this picture! Signed your favorite Ghostbuster Melissa Mcarthy! +10/13/2016,Comedians,@attell,What a meal!! What a nite!!  Happy birthday @artiequitter Xox https://t.co/bDPitAoHcu +10/11/2016,Comedians,@attell,Happy Birthday Artie L You made it ! Xox @artiequitter +10/09/2016,Comedians,@attell,Big thanks to the crowds and staff at @zaniesnashville The other comics on the show - @maryjayberger… https://t.co/8h6fX4SLIp +10/03/2016,Comedians,@attell,See yah this weekend @zaniesnashville https://t.co/LKeYPYACZN +09/18/2016,Comedians,@attell,RT @TimJDillon: Great night @dcimprov with @attell and @matty_litwack #comedy https://t.co/e7Yw7jO6Ux +09/14/2016,Comedians,@attell,RT @kevinbrennan666: Also special thanks to @robertkelly @RobSprance @DanSoder @ComicMikeV @attell @AnthonyCumia for all doing great @mlcpo… +06/30/2018,Comedians,@ElayneBoosler,@EddieSarfaty You give me hope. xoxooxxoxoxo +06/30/2018,Comedians,@ElayneBoosler,@AngryBlackLady Spoilers!!!! +06/30/2018,Comedians,@ElayneBoosler,"Happy #Caturday. My nationwide Tails of Joy is funding the ""Bedford Cares TNR"" program in Lynchburg, VA, helping th… https://t.co/fq46NPtIJN" +06/30/2018,Comedians,@ElayneBoosler,@maraleia @AngryBlackLady Worth waiting for. +06/30/2018,Comedians,@ElayneBoosler,"@KoHoSo Yes, thank you so much! We're Tails of Joy in Studio City." +06/30/2018,Comedians,@ElayneBoosler,"@BluToonz Of course. You're not shopping, you're rescuing lol. https://t.co/jnWGcI17vr for Tails of Joy, Studio City. oxox" +06/30/2018,Comedians,@ElayneBoosler,"@Vondulce Well, some of us continue on, but thank you for the very lovely words. Have a beautiful weekend. oxox" +06/30/2018,Comedians,@ElayneBoosler,@gregpliska I was so young. But i remember us laughing a lot. He was a nice friend in those years. I collected unic… https://t.co/a1oQGHlsfF +06/30/2018,Comedians,@ElayneBoosler,@gregpliska Agreed. But he certainly left so much beauty and wonder behind. +06/30/2018,Comedians,@ElayneBoosler,"@bettinamhornsby @stutteringjohnm Ironically, this might be the only prank call where the receiver actually might h… https://t.co/3AAe5ZweEs" +06/30/2018,Comedians,@ElayneBoosler,"RT @billprady: Remember when everyone was upset that Hillary’s server was a security risk? + +Stuttering John just got through to the preside…" +06/30/2018,Comedians,@ElayneBoosler,Je suis Charlie. :( +06/30/2018,Comedians,@ElayneBoosler,@D0GSAREFAMILY Awesome! +06/30/2018,Comedians,@ElayneBoosler,@KennethWReid Yayyyy!!!!! +06/30/2018,Comedians,@ElayneBoosler,"@AngryBlackLady Repeat after me: Jodie Whittaker, Jodie Whittaker, Jodie Whittaker..." +06/29/2018,Comedians,@ElayneBoosler,Thank you so much! Every donation helps. Choose #tailsofjoy at https://t.co/jnWGcI17vr and they donate to us when y… https://t.co/DaZhFlQ0va +06/29/2018,Comedians,@ElayneBoosler,@AngryBlackLady Can't wait. They don't say when she's coming. +06/29/2018,Comedians,@ElayneBoosler,@Scone_Mason We did not shtup!!! We had some fun dates that didn't go further. :) +06/28/2018,Comedians,@ElayneBoosler,"When I was a young comic new to LA, I had a few dates w/ Harlan Ellison. Never went beyond friendship, & what a wor… https://t.co/ViHfu1nxMd" +06/28/2018,Comedians,@ElayneBoosler,@AngryBlackLady Bring on Jodie Whittaker! +06/28/2018,Comedians,@ElayneBoosler,"“I can’t wait for the vigilante squads to start gunning journalists down on sight."" -Muslim American now in jail fo… https://t.co/8V2cUdk0Ei" +06/28/2018,Comedians,@ElayneBoosler,@D0GSAREFAMILY Enjoy your wonderful new family!!!!!! +06/27/2018,Comedians,@ElayneBoosler,@wilkravitz @AARP We've seen this a lot. Dogs can get a bit of dementia when they're old. So sorry.. +06/27/2018,Comedians,@ElayneBoosler,"@wilkravitz @AARP My cousin wrote them down, but nothing tastes the way it did when she made it." +06/27/2018,Comedians,@ElayneBoosler,"RT @TopRopeTravis: When Joe Biden was refused service by a bakery in 2012, Republicans absolutely loved it. As a matter of fact, Paul Ryan,…" +06/26/2018,Comedians,@ElayneBoosler,@Camonghne Congratulations!! +06/26/2018,Comedians,@ElayneBoosler,@BettyBuckley Watched @PreacherAMC last nite. YOU ARE FANTASTICALLY AMAZINGLY SPELLBINDING!!!!!!! Loved it from top… https://t.co/PJPHzoDnM3 +06/26/2018,Comedians,@ElayneBoosler,@Shaddow13 @AARP I'm so glad you had a wonderful mother. oxxo +06/26/2018,Comedians,@ElayneBoosler,@BoutinJoan @AARP Thank you so much Joan. Food always saves the day. +06/26/2018,Comedians,@ElayneBoosler,@wilkravitz @AARP Sounds like a plan. Thank you for the kind words. +06/26/2018,Comedians,@ElayneBoosler,Sanity before civility. Then we can talk. +06/26/2018,Comedians,@ElayneBoosler,ICYMI A sweet story. https://t.co/68wgRea1qR https://t.co/QvR3VgD6uL +06/25/2018,Comedians,@ElayneBoosler,"RT @megan19: The sheer balls of the GOP to cry about ""civility"" when they openly support pedophiles, criminals and nazis is enraging, hypoc…" +06/25/2018,Comedians,@ElayneBoosler,@NicolleHunsberg @RedHenLex @PressSec LOLOL! +06/25/2018,Comedians,@ElayneBoosler,"@JohnEdwardBake1 @waitwait Oh, you are so kind. Thank you!" +06/25/2018,Comedians,@ElayneBoosler,@TGrant622 @DannyZuker i can live with that! +06/25/2018,Comedians,@ElayneBoosler,@KouklaKim Thanks Kimberly. So sad. +06/25/2018,Comedians,@ElayneBoosler,A personal short story for #DisruptDementia #MondayMotivation @AARP https://t.co/68wgRea1qR https://t.co/JNn6INMkTu +06/25/2018,Comedians,@ElayneBoosler,"Dear Sir, thank you for your service. May you rest in peace and may your memory be a blessing to your fellow firefi… https://t.co/ZKF683BjqG" +06/24/2018,Comedians,@ElayneBoosler,"It's fine. After @PressSec Sanders and her family left the @RedHenLex, they stopped off at Hobby Lobby, then went a… https://t.co/osN7IQEHAe" +06/24/2018,Comedians,@ElayneBoosler,"RT @BettyBuckley: “Preacher” is coming back! Tweet @PreacherAMC + #PreacherLore + 😜👊👍Season 3 starts tonight at 9 PM Central, 10 PM Eastern…" +06/24/2018,Comedians,@ElayneBoosler,@noradunn @washingtonpost @jamielbridgers @mogaffney @LALGBTCenter @maddow Are they kidding? He's busy letting the… https://t.co/TCw1SCQUEN +06/24/2018,Comedians,@ElayneBoosler,@BettyBuckley @RedHenLex @PressSec Miss you! oxxoxo +06/24/2018,Comedians,@ElayneBoosler,Hey right- wingers -freaking -out about the @RedHenLex politely asking @PressSec Sanders to leave. You can all calm… https://t.co/5iF0egznnF +06/24/2018,Comedians,@ElayneBoosler,"@alphawhiskey77 @RedHenLex @PressSec There is a space for a note to the restaurant, put it in there. Where it said… https://t.co/SeXh3rS5x8" +06/24/2018,Comedians,@ElayneBoosler,@Communic8n0w @DannyZuker Broadway in the 40's. +06/24/2018,Comedians,@ElayneBoosler,"@Communic8n0w @DannyZuker An orange ""shake""." +06/24/2018,Comedians,@ElayneBoosler,@TGrant622 @DannyZuker Miami is NY. +06/23/2018,Comedians,@ElayneBoosler,"Last one I promise, for New Yorkers: Orange Judas. + +#Restaurants4Sarah @DannyZuker https://t.co/a1gJxEdEsq" +06/23/2018,Comedians,@ElayneBoosler,"@renegadecop @RedHenLex @HoarseWisperer Ahh, well I saw your tweet. And now three of us bought gift certificates an… https://t.co/Q4uEHdZi4c" +06/23/2018,Comedians,@ElayneBoosler,@BluthX @DannyZuker Yes! +06/23/2018,Comedians,@ElayneBoosler,@DannyZuker No YOU! +06/23/2018,Comedians,@ElayneBoosler,RT @johnlundin: #SarahSanders 'Red Hen' https://t.co/lwx7MYBNF3 +06/23/2018,Comedians,@ElayneBoosler,@TimfromDa70s Do you know how much we drink? What are you telling us now for? +06/23/2018,Comedians,@ElayneBoosler,"RT @thistallawkgirl: How dare these parents try to bring their children to America in search of a better life. Who do they think they are,…" +06/23/2018,Comedians,@ElayneBoosler,Indeed her actions do. They say she is a true patriot @RedHenLex. That she believes so strongly in America hearing… https://t.co/P3E1ahYO5t +06/23/2018,Comedians,@ElayneBoosler,I just bought a gift certificate 2 @RedHenLex 2 support their patriotism. Donated it 2 them 4 the needy. They stood… https://t.co/6tjbUtMkfS +06/23/2018,Comedians,@ElayneBoosler,"Omarosa Steakhouse. Fact Checkers. White Supremacist Rally's. + +#Restaurants4Sarah @DannyZuker https://t.co/hid5Nl1kvi" +06/23/2018,Comedians,@ElayneBoosler,"KKKFC. +#Restaurants4Sarah @DannyZuker" +06/23/2018,Comedians,@ElayneBoosler,"Deny's. Menu: Build Your Own Grand Sham. + +#Restaurants4Sarah @DannyZuker https://t.co/Dkhe6s2hhY" +06/23/2018,Comedians,@ElayneBoosler,Great idea. I am buying a gift card now too. Donate it to a needy person who's hungry. Thanks @RedHenLex for being… https://t.co/YxrVyvoQQ1 +06/22/2018,Comedians,@ElayneBoosler,"RT @bslxo_: Instead of reposting that poor boy being abused and dying on the street, post the pictures of the ones who did this to him. #Ju…" +06/22/2018,Comedians,@ElayneBoosler,Study these photos. https://t.co/YbcbF1pyOv +06/22/2018,Comedians,@ElayneBoosler,"@DannyDeraney I think it means he loves only one person, and will kill everybody else." +06/22/2018,Comedians,@ElayneBoosler,"@Scareythoughts2 She doesn't ""have to"". She made a choice." +06/22/2018,Comedians,@ElayneBoosler,"Happy #TakeYourDogToWorkDay If u didn't have a doggie 2 take 2 work 2day, how bout beautiful Luna, a 2 yr old Cane… https://t.co/MNhwRWve8G" +06/22/2018,Comedians,@ElayneBoosler,@noradunn @mogaffney @janefmorris @UnCabaret @robreiner LOL. +06/22/2018,Comedians,@ElayneBoosler,@DrCherylllP Yay!!! +06/22/2018,Comedians,@ElayneBoosler,@davidpom2000 Serrated. +06/22/2018,Comedians,@ElayneBoosler,"You know, if The Third Lady really wanted to eliminate cyber bullying, she could take out 90% of it with a steak knife. #FridayFeeling" +06/22/2018,Comedians,@ElayneBoosler,@BettyBowers Bingo. +06/22/2018,Comedians,@ElayneBoosler,@Karoli @CNN Every time. +06/22/2018,Comedians,@ElayneBoosler,"@doughtywench Ah come on, nobody knits like you." +06/22/2018,Comedians,@ElayneBoosler,"@TheWileyMiller Hahaha. The happiest puppy in the world, and the cutest, with the cutest puppy bark. Thank you so m… https://t.co/qAfamRjDhw" +06/21/2018,Comedians,@ElayneBoosler,@valkyrie64 Thank you for the heads up. I will. +06/21/2018,Comedians,@ElayneBoosler,"Honey, you don't need to write it on your jacket. It lives on your face. #MelaniaTrump" +06/21/2018,Comedians,@ElayneBoosler,RT @AngryBlackLady: This by @Sonja_Drimmer is so vitally important. Do not fall for the administration’s attempts to cast Melania as the wo… +06/21/2018,Comedians,@ElayneBoosler,"RT @SantaInc: So now First Lady Melania Trump is going to the US/Mexico border to meet with immigrant children. + +Nice photo op. + +Anyways, h…" +06/21/2018,Comedians,@ElayneBoosler,Happy #NationalSelfieDay https://t.co/Fg2lGt1naI +06/20/2018,Comedians,@ElayneBoosler,@ComedyMontreal Labrador and Newfie would have made me 2/3 Canadian. +06/20/2018,Comedians,@ElayneBoosler,@ibookery I have to open it up first. +06/20/2018,Comedians,@ElayneBoosler,"@HeidiEly But Boxers are the comedians of the dog world, and they are so AWESOME and silly. I love Rotties too, the… https://t.co/A5SjGaJ0Mp" +06/20/2018,Comedians,@ElayneBoosler,@TheWileyMiller Are you kidding? Their entire focus is food. +06/20/2018,Comedians,@ElayneBoosler,@KennethWReid How great. She was an amazing sidekick and fantastic in Penny Dreadful. You must be a master as they… https://t.co/lqZv1r5A3W +06/20/2018,Comedians,@ElayneBoosler,"@HeidiEly I thought there would be some Boxer in there as well, a bit disappointed." +06/20/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Wellll.... that was very kind. Thanks. +06/20/2018,Comedians,@ElayneBoosler,@Evil_Ashe @DannyDeraney It is. It's always pivotal times in history mixed with sci fi. A perfect blend. And anti-v… https://t.co/WFEGUcBW7G +06/20/2018,Comedians,@ElayneBoosler,@LaPazzaFugata @Evil_Ashe @DannyDeraney True. I have the boxed set of the early years. +06/20/2018,Comedians,@ElayneBoosler,"@KennethWReid How excellent. Tennant and Smith were my favorite doctors, so jackpot. And Smith was incredible in Th… https://t.co/DHaOrKuRrT" +06/20/2018,Comedians,@ElayneBoosler,@kcory @FunctionalNerd Thanks! +06/20/2018,Comedians,@ElayneBoosler,@agilewavedoug Hahahaha. +06/20/2018,Comedians,@ElayneBoosler,"Decent human beings are so against separating children from their parents, we're going to put Eric, Ivanka and Don.… https://t.co/TRAD0mrxMd" +06/20/2018,Comedians,@ElayneBoosler,"I found out I'm Hungarian, Rumanian, and Labrador Retriever. #23andme" +06/20/2018,Comedians,@ElayneBoosler,"I didn't know we had so many Whovians in the house. In that case, not to make anybody jealous, but this is what I b… https://t.co/Ryq1wzHZoV" +06/20/2018,Comedians,@ElayneBoosler,@KennethWReid Oh my goodness how was THAT???!!!!!!!! Did you love it? +06/20/2018,Comedians,@ElayneBoosler,@Evil_Ashe @DannyDeraney It's the best. You have to. +06/20/2018,Comedians,@ElayneBoosler,@thesavageballet @kathygriffin Everybody does. No worries. :) +06/20/2018,Comedians,@ElayneBoosler,@literateartist @LenHochberg @LyleMSpencer It was. +06/20/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Awwww **blushy blushy blush*** +06/20/2018,Comedians,@ElayneBoosler,@newcybersol xoxoxoxoox +06/20/2018,Comedians,@ElayneBoosler,@MsDarcyFarrow @HollandTaylor @BettyBuckley Mazel tov! +06/19/2018,Comedians,@ElayneBoosler,@TruthsMinister Thanks. I loved Matt Smith. Didn't care for Capaldi though. And loved ALL the women. +06/19/2018,Comedians,@ElayneBoosler,@DannyDeraney No. Sadly. +06/19/2018,Comedians,@ElayneBoosler,@Jar_O_Cats Would be good for rats and roaches. +06/19/2018,Comedians,@ElayneBoosler,@Lolly_Jean I have the teapot. No sound though. +06/19/2018,Comedians,@ElayneBoosler,"How old am I, right? The only souvenirs I brought back from Canada, and I was so excited. #DrWho #Ood… https://t.co/E14HHakldR" +06/19/2018,Comedians,@ElayneBoosler,@TheLadyAye It comes naturally to you because you are wonderful. +06/18/2018,Comedians,@ElayneBoosler,@DAvallone Well of course the republicans support separation of parents and kids. Look at their kids! +06/18/2018,Comedians,@ElayneBoosler,@krassenstein Hello beautiful sweet boy. +06/18/2018,Comedians,@ElayneBoosler,"@BOCArnie @BevVincent We see many ""Restrooms Are For Customers Only"" signs all across America." +06/18/2018,Comedians,@ElayneBoosler,"@bjb1124 Plus, they wash and wax your car before they tow it." +06/18/2018,Comedians,@ElayneBoosler,@MsDarcyFarrow We all have. The men's room is usually open. +06/17/2018,Comedians,@ElayneBoosler,"Another way in which Canada treats people better than America does. Snapped this last month on our trip, because it… https://t.co/hx5n0VSvAz" +06/17/2018,Comedians,@ElayneBoosler,@Jerry_at_Rick @nerdist @alisonhaislip @mlthaller @altonbrown @gordlittle Hahahahaha. Very bad Tardis. +06/17/2018,Comedians,@ElayneBoosler,@billscheft @NYTimesWordplay Thanks! +06/17/2018,Comedians,@ElayneBoosler,"@DebAmlen @billscheft @NYTimesWordplay Ok Bill, then we'll marry you." +06/16/2018,Comedians,@ElayneBoosler,"@noradunn @nytimes @nanhunt @jamielbridgers @mogaffney Oh god, they're turning into comedians." +06/15/2018,Comedians,@ElayneBoosler,Locking them up is too good for them. Lock them down. #FridayFeeling +06/15/2018,Comedians,@ElayneBoosler,@iammoshow @OregonHumane Love! +06/15/2018,Comedians,@ElayneBoosler,Support the Blue Wave. #FF. https://t.co/kkS1ranXfh +06/15/2018,Comedians,@ElayneBoosler,@Stonekettle May your memories of your courageous family keep you warm and proud. +06/15/2018,Comedians,@ElayneBoosler,"@thistallawkgirl Oh no, I'm so sorry. Did you go to that cake place?" +06/15/2018,Comedians,@ElayneBoosler,"@AngryBlackLady It's got the perfect ""Heil Hitler"" rhythm to it." +06/15/2018,Comedians,@ElayneBoosler,@greatfailures Beautiful. Happy Father's Day Steve. +06/15/2018,Comedians,@ElayneBoosler,@recovlitigator @HillaryClinton No doubt! +06/15/2018,Comedians,@ElayneBoosler,@HillaryClinton No more tweets. We have a winner. +06/15/2018,Comedians,@ElayneBoosler,"Quilts-a-Palooza! Pillow-Cases-Palooza! Our sewing angel Judy Isaacs outdid herself with these summer weight, handm… https://t.co/uJ9mcrD2jN" +06/15/2018,Comedians,@ElayneBoosler,@HillaryClinton i love you. Marry me. +06/14/2018,Comedians,@ElayneBoosler,@skjdrama Thank you! Be safe. +06/14/2018,Comedians,@ElayneBoosler,@atrupar @JoeWatchesTV Damage. More damage. +06/14/2018,Comedians,@ElayneBoosler,"RT @RepJoeKennedy: In @realDonaldTrump’s eyes, brutal dictators get the benefit of the doubt but parents & kids fleeing unimaginable violen…" +06/14/2018,Comedians,@ElayneBoosler,@BoringEnormous This made me laugh out loud. +06/14/2018,Comedians,@ElayneBoosler,@Globetoppers That's how I know my dogs will stay by me. As long as i fall down around 5pm. +06/12/2018,Comedians,@ElayneBoosler,"RT @JudyTenuta: Throwback Thursday, June 2014: ⁦@ElayneBoosler⁩ & ⁦@JudyTenuta⁩ celebrate the Summer with Princess Cake! #itcouldhappen #yu…" +06/12/2018,Comedians,@ElayneBoosler,@paddydee56 @QuiltingMuriel Well put and so true. oxxo +06/12/2018,Comedians,@ElayneBoosler,@noradunn @janefmorris @mogaffney @nanhunt @jamielbridgers LOL. +06/12/2018,Comedians,@ElayneBoosler,@newcybersol @QuiltingMuriel Thank you so much. She misses her as do we all. +06/12/2018,Comedians,@ElayneBoosler,Haven't seen @QuiltingMuriel's little Tiger for over 2 yrs. Muriel's wonderful daughter Marcia is in NYC visiting a… https://t.co/GZchL8VI9u +06/11/2018,Comedians,@ElayneBoosler,@KingRhiNOLa Oh yes. Such a deft touch. +06/11/2018,Comedians,@ElayneBoosler,@djdi Montawk Lawng Giland. +06/11/2018,Comedians,@ElayneBoosler,"@aerwaves_ If you don't take a minute to breathe every few years, you can't possibly keep on fighting. Liking a thi… https://t.co/NdyjuVcWgY" +06/11/2018,Comedians,@ElayneBoosler,@NYSF89 Antique carved wooden angels. +06/11/2018,Comedians,@ElayneBoosler,@BradTassell No. We tiptoed.. +06/11/2018,Comedians,@ElayneBoosler,"@Rickagain They re-created the original Stanford White house, down to the flaws and cracks in the floors. Truly amazing." +06/11/2018,Comedians,@ElayneBoosler,@davidpom2000 Did they make Chex Mix? +06/11/2018,Comedians,@ElayneBoosler,"Btw, just saw Deadpool 2 for a second time, so if you need a break from news stress and want to laugh for 90 minute… https://t.co/0WtIm2ylen" +06/11/2018,Comedians,@ElayneBoosler,Thanks amigo! Today is the last day for Guide Dogs for the Blind auction so check them out. And check us out too!… https://t.co/17kq3E7rhP +06/11/2018,Comedians,@ElayneBoosler,"We donated totes, earrings to Guide Dogs auction (https://t.co/x6WHFozpb8). Bids r already 3x higher than what we s… https://t.co/H02t1EddLQ" +06/11/2018,Comedians,@ElayneBoosler,A few more pix of Cavett's house. #MondayMotivation https://t.co/WqHpVuzFCH +06/11/2018,Comedians,@ElayneBoosler,Thought u might enjoy some pix of Dick Cavett's beautiful Montauk estate. #MondayMotivation https://t.co/62KrUxQZrL +06/11/2018,Comedians,@ElayneBoosler,Following IHOP's lead: FlapJacks in the Box. #IHOP #IHOB +06/11/2018,Comedians,@ElayneBoosler,@RobinShorr @villepique @LosFelizPodcast @morgan_murphy .@morgan_murphy and I are on for lunch when I get back to L… https://t.co/ONdlW7ltmB +06/11/2018,Comedians,@ElayneBoosler,RT @geoff9cow: There are angels amongst us: #ff @ElayneBoosler https://t.co/iGJMuqXaAL & https://t.co/kPfxn5Oo9f https://t.co/H2cOum6uAU +06/11/2018,Comedians,@ElayneBoosler,@letsplaythisbro I stomped it bro. +06/11/2018,Comedians,@ElayneBoosler,@Jerry_at_Rick @mariamenounos @WhitneyCummings @DohertyShannen @H_Combs @Sia @MelissaJoanHart That's incredible. I… https://t.co/JvHkab47lK +06/11/2018,Comedians,@ElayneBoosler,"@IngaProgressive Hey, I'm right there with you. I only took two nights off!" +06/11/2018,Comedians,@ElayneBoosler,@TheRealMorley LOL. +06/11/2018,Comedians,@ElayneBoosler,"@HeidiEly Between the Times and national papers, around 60. It's always fun." +06/11/2018,Comedians,@ElayneBoosler,@CJamescorry Hahahaha. +06/10/2018,Comedians,@ElayneBoosler,"Hey, if you’re doing the New York Times crossword puzzle today, why don’t you drop by 100 down and say hello. https://t.co/wkYw3d3o5y" +06/10/2018,Comedians,@ElayneBoosler,A beautiful night in Montauk. Re-setting the sanity button. https://t.co/8Xf5RCzcUX +06/09/2018,Comedians,@ElayneBoosler,"Spending the weekend at Dick Cavett’s Montauk estate. “Cavett’s Cove” private beach, our great tote holds everythin… https://t.co/aetqgOZYGn" +06/08/2018,Comedians,@ElayneBoosler,"""Depression is a flaw in chemistry, not character."" Reach out, you'd be amazed at how many friends you'll find. And… https://t.co/Yq33Vrfzjl" +06/07/2018,Comedians,@ElayneBoosler,"@SidecarAndCoffe ""Cruz"" is the new synonym for ""Santorum""." +06/07/2018,Comedians,@ElayneBoosler,@thistallawkgirl Preferred even! +06/07/2018,Comedians,@ElayneBoosler,Another happy story. #tailsofjoy #ThursdayThoughts https://t.co/y8q24X2olK +06/07/2018,Comedians,@ElayneBoosler,@aroguegardener @AngryBlackLady Whenever I have a large pittie or other large dog we are working with or fostering… https://t.co/HP8odTGD6M +06/07/2018,Comedians,@ElayneBoosler,"@matto You are so funny. Well, boxed set coming out on Sept 26th, so you'll be able to catch up on all the shtuff.... oxxoox" +06/07/2018,Comedians,@ElayneBoosler,@matto Yes. Timeless though. +06/07/2018,Comedians,@ElayneBoosler,@EasyVeganEats @AngryBlackLady He has very good taste in art. +06/07/2018,Comedians,@ElayneBoosler,@JoceH @BillSiddons Nevah! +06/07/2018,Comedians,@ElayneBoosler,@lisaaherbst @BillSiddons Open invitation and you know it. Come out and see us! +06/06/2018,Comedians,@ElayneBoosler,@MilaXX @AngryBlackLady You know my #tailsofjoy pays for TNR across the country. Email us if you need us to pay the… https://t.co/Tm2Ev7tDW9 +06/06/2018,Comedians,@ElayneBoosler,@MarlyDee1 @AngryBlackLady Beautiful cat family! +06/06/2018,Comedians,@ElayneBoosler,@aroguegardener @AngryBlackLady Some people are just afraid of dogs. +06/06/2018,Comedians,@ElayneBoosler,"@RebeccazWriting @allanbrauer @AngryBlackLady Beautiful Scooby! I still cry over all of mine, and miss them like it was yesterday." +06/06/2018,Comedians,@ElayneBoosler,@RedpineFour @AngryBlackLady oxxoxoxoxo +06/06/2018,Comedians,@ElayneBoosler,@ProfessorIsIn @AngryBlackLady Squeeee! +06/06/2018,Comedians,@ElayneBoosler,@AngryBlackLady Our Wiley. https://t.co/LawW6Urci5 +06/06/2018,Comedians,@ElayneBoosler,@PinkFulfyUnicon @AngryBlackLady Gorgeous! +06/06/2018,Comedians,@ElayneBoosler,@Chriswb71 @AngryBlackLady He's very formal and beautiful. +06/06/2018,Comedians,@ElayneBoosler,@Chriswb71 @atliberalandold @AngryBlackLady Yay for black dogs! +06/06/2018,Comedians,@ElayneBoosler,@Chriswb71 @atliberalandold @AngryBlackLady What a beautiful pup. So much soul. +06/06/2018,Comedians,@ElayneBoosler,@Ellelque Too sweet. oxxooxxo +06/06/2018,Comedians,@ElayneBoosler,"On Sunday my cousin's boyfriend got down on one knee and proposed. She said yes, and New York Jets chairman Christo… https://t.co/jXBnz4rzrQ" +06/06/2018,Comedians,@ElayneBoosler,"@AngryBlackLady It's actually called ""Black Dog Syndrome"", and we in #rescue work extra hard to get these wonderful… https://t.co/LPxsFd9ero" +06/06/2018,Comedians,@ElayneBoosler,"SCROTUS wants a military parade but stands among them while they sing ""God Bless America"", and he doesn't know the… https://t.co/wdHbrbRDGT" +06/06/2018,Comedians,@ElayneBoosler,@StacyMichelleB @Rosie @margaretcho @jmendrews oxxoxooxxo +06/06/2018,Comedians,@ElayneBoosler,@StacyMichelleB @Rosie @margaretcho @jmendrews Deepest condolences. Lucky to have enjoyed life right up to the end. +06/06/2018,Comedians,@ElayneBoosler,Happy Birthday to rockin' hubby @BillSiddons. https://t.co/lJth3nBIhE +06/06/2018,Comedians,@ElayneBoosler,@TopherBrophy @rosenbergthedog @TheDogStyler Magnificent. +06/05/2018,Comedians,@ElayneBoosler,"Well of course you can't pardon yourself. You can't even win ""Crazy 8s"" with an eight. https://t.co/pK5Fw3dcCG" +06/04/2018,Comedians,@ElayneBoosler,"""Gay Cake"" by @davekonig. LOL. NSFW. https://t.co/GRFquLVoMf" +06/04/2018,Comedians,@ElayneBoosler,@bessbell Hilarious. +06/04/2018,Comedians,@ElayneBoosler,"@Michaelhorowicz @HillaryClinton I disagree with your disagreeing. She had a solid lead in the polls, and even ppl… https://t.co/HRS8Vd2oKH" +06/04/2018,Comedians,@ElayneBoosler,@IngaProgressive @HillaryClinton @Comey @SusanSarandon With no ketchup! +06/04/2018,Comedians,@ElayneBoosler,@johnmce1 @TerryPond1 Scrotum + POTUS. +06/04/2018,Comedians,@ElayneBoosler,"You will never be forgiven for handing the election to SCROTUS, by reopening, illegally, a bogus investigation when… https://t.co/9bn5Rz7qSO" +06/04/2018,Comedians,@ElayneBoosler,@TheRickyDavila Or a sane one. +06/04/2018,Comedians,@ElayneBoosler,"@Daishikaze Yes. In fact an actress friend of mine did it with a coat in NYC. Woman walking up the block, my friend… https://t.co/8NjRuCqi4e" +06/29/2018,Comedians,@Ornyadams,@stevebyrnelive Congrats! +06/28/2018,Comedians,@Ornyadams,Just want to state for the record @HowardStern I love your show and so I don’t feel bad if I say it again — I’ve be… https://t.co/wBAJujIJ05 +06/27/2018,Comedians,@Ornyadams,RT @TheLaughFactory: #comedy #TheLaughFactory #Hollywood #Wednesday @JayDavisComedy @Ornyadams @donnellrawlings @DaneCook @TeamIanBagg… +06/27/2018,Comedians,@Ornyadams,@Sherm100 He can say it to my face! +06/27/2018,Comedians,@Ornyadams,I hate chase scenes in books. I hate chase scenes in movies. They are such overused over bloated unrealistic cliche… https://t.co/3paiGV0ClI +06/27/2018,Comedians,@Ornyadams,Hey @duranduran your version of Bowie's Starman just changed my entire day. Lifetime guest passes to any of my show… https://t.co/dn3ju5LGJf +06/26/2018,Comedians,@Ornyadams,I ate an impossible burger and it tasted very possible to me. +06/26/2018,Comedians,@Ornyadams,"I'm working on making cows taste more like plants. We will win this battle! And then I will have the ""Impossible salad"" made of cow." +06/26/2018,Comedians,@Ornyadams,I keep seeing restaurants serving a plant based “Impossible burger.” Is there anything more annoying than cocky veg… https://t.co/5hivpPOlCA +06/24/2018,Comedians,@Ornyadams,Anybody want to nominate this for a “Shot on iPhone X” billboard? https://t.co/TTmg3BKF3A +06/24/2018,Comedians,@Ornyadams,Can somebody please explain what’s going on here? Do I need to break this up? https://t.co/Y2cPLBZLA9 +06/23/2018,Comedians,@Ornyadams,Always enjoy talking with you Ron. Thanks for loving comedy so much. https://t.co/gaMRqQelRl +06/23/2018,Comedians,@Ornyadams,And tonight in LA @HollywoodImprov 8pm show. https://t.co/qWJ6TdqB1B +06/23/2018,Comedians,@Ornyadams,Tonight in LA @TheComedyStore 7pm show. https://t.co/kySWhaNuuY +06/22/2018,Comedians,@Ornyadams,My summer home Montreal! See you in a few weeks @justforlaughs #TheEthnicShow https://t.co/kqEwnKHUCq +06/21/2018,Comedians,@Ornyadams,@BillyTheG33 Great. Did you have a name of the reservation? +06/20/2018,Comedians,@Ornyadams,Tonight in LA @HollywoodImprov https://t.co/qiGr5hXSFa +06/19/2018,Comedians,@Ornyadams,Hey Kevin I appreciate this... thank you. https://t.co/VYQCyUa05N +06/18/2018,Comedians,@Ornyadams,Another dumb street sign. Who approves this stuff? #WhatsWrong https://t.co/okC4OcXc6g +06/18/2018,Comedians,@Ornyadams,Another dumb street sign. Who approves this stuff? https://t.co/uT5MknLLy2 +06/16/2018,Comedians,@Ornyadams,RT @HollywoodImprov: Don’t miss this 🔥🔥🔥 line up TMRW at 10:30! 🎟️🎟️https://t.co/PuJTZbwPtV https://t.co/R6XCaVHIKa +06/16/2018,Comedians,@Ornyadams,RT @TheLaughFactory: #comedy #TheLaughFactory #Hollywood #Saturday @JayDavisComedy @jeremypiven @tomdreesencomic @Face_Law @Ornyadams… +06/16/2018,Comedians,@Ornyadams,RT @TheComedyStore: 7pm Main Room A Surprise Guest with @steveo @iliza @Ornyadams @JuddApatow +more! Use promo code JUNE at checkout for di… +06/16/2018,Comedians,@Ornyadams,And also in LA tonight at 10:30pm @HollywoodImprov. I'll be wearing the same outfit for all LA shows tonight. https://t.co/iNEEQ4i1Fi +06/16/2018,Comedians,@Ornyadams,Tonight in LA I'll be on a 7pm show @TheComedyStore https://t.co/n83ZxsaT71 +06/16/2018,Comedians,@Ornyadams,Tonight in LA I'll be on a show at 7:30pm @TheLaughFactory https://t.co/4Ms3NtLMRM +06/15/2018,Comedians,@Ornyadams,"Why do I think the only people that will visit this are comedians to see if we’re in it? +https://t.co/mFLfh23ixK" +06/15/2018,Comedians,@Ornyadams,This is how I feel at weddings too. Fine dining? I pay more to eat so this doesn’t happen! https://t.co/ZCSqd1HSSw +06/14/2018,Comedians,@Ornyadams,I did a private show for @elavon last night. Heading home tomorrow. Maybe I’m coming to your city soon? Check my to… https://t.co/Xeg87snMj2 +06/14/2018,Comedians,@Ornyadams,If I had a family this is how I’d make them stand at the beach too. This is good parenting. Like we’re filming the… https://t.co/EBSJOY5iQe +06/14/2018,Comedians,@Ornyadams,Found half my Instagram followers here. (Kidding kids. Love you. Now eat your vegetables.) https://t.co/W7GeMTaMdd +06/14/2018,Comedians,@Ornyadams,Quick lesson on sea turtles for all you kids. https://t.co/uZLGhjbfsQ +06/14/2018,Comedians,@Ornyadams,Congrats buddy! https://t.co/B5H8uWs3IP +06/14/2018,Comedians,@Ornyadams,Am the only one who's iPhone thinks they're 12? Every time one of my lame friends texts me LOL it gives me emoji op… https://t.co/c3Wd27IKAe +06/13/2018,Comedians,@Ornyadams,See you tonight @atlantisbahamas rain or shine! https://t.co/m4LpBcxL8D +06/12/2018,Comedians,@Ornyadams,@LoniLove @StandUpLiveHSV I was just there. Great club. Great staff. Christian will take care of you. And there’s a… https://t.co/lq470H2R6L +06/12/2018,Comedians,@Ornyadams,Unless your job involves saving lives do it. Howard Stern used to say people would sit outside work listening to hi… https://t.co/38rWIn4gLU +06/12/2018,Comedians,@Ornyadams,I’ve been on @Spotify for years. I now have three comedy albums up there. Enjoy. Thanks. https://t.co/FkLQhzTYUa +06/12/2018,Comedians,@Ornyadams,RT @alley__jean: can now finally listen to my favorite comedian @Ornyadams thanks spotify. https://t.co/xkWkzCwh9n +06/12/2018,Comedians,@Ornyadams,This makes my day! Of course I’m flying all day so the bar is low. EXPECTATIONS LOWERED! But regardless I know my M… https://t.co/yMjpGVJPAk +06/11/2018,Comedians,@Ornyadams,@imangelalonzo @MTVteenwolf Yeah I think that would be cool! +06/11/2018,Comedians,@Ornyadams,@MaybeAWerewolf Thanks Cat! See you the next time I am @zaniesnashville --- bring more @MTVteenwolf fans. They deserve to NOT breathe too. +06/11/2018,Comedians,@Ornyadams,Well who the hell wears a Hawaiian shirt in Nashville! Only someone that is out to hurt me! Kidding. So glad you we… https://t.co/zNglW3h0jG +06/11/2018,Comedians,@Ornyadams,It was so nice meeting you guys in Nashville. Always fun meeting @MTVteenwolf fans all over the world. https://t.co/7pcaOg1Okc +06/10/2018,Comedians,@Ornyadams,@Uber_Support Done +06/10/2018,Comedians,@Ornyadams,@Uber why is my app stuck on this screen? Have deleted and reloaded app twice https://t.co/8rpcPMYlez +06/09/2018,Comedians,@Ornyadams,Just got my shoes repaired and now they look and sound like every other pair of shoes. Guess I went to the wrong pl… https://t.co/mchbUrWVrL +06/09/2018,Comedians,@Ornyadams,"Yes, after every show people line up and give me gifts like I am the leader of a communist regime. I present my han… https://t.co/Nvc3gBiFCe" +06/08/2018,Comedians,@Ornyadams,Thanks enjoyed talking with you today.... #Nashville https://t.co/2q6TPvCYBu +06/08/2018,Comedians,@Ornyadams,Fantastic! #Nashville https://t.co/EUn8rC1kUy +06/08/2018,Comedians,@Ornyadams,@green_fury77 @HarlandWilliams will come to your home and sing lullabies to your kids. +06/08/2018,Comedians,@Ornyadams,The best part about La-Z-boy is even the spelling is La-Z. +06/08/2018,Comedians,@Ornyadams,Any takers? https://t.co/OZXSF3oY1Z +06/08/2018,Comedians,@Ornyadams,I’m not too sure if I am going to make dvds on this one. Maybe I should just make thumb drives for the few people t… https://t.co/PXOjvjY5TF +06/08/2018,Comedians,@Ornyadams,@kyphur I’ll be back @StandUpLiveHSV and we’ll do it again. Thanks for the kind tweet! +06/08/2018,Comedians,@Ornyadams,@raerae_9500 @StandUpLiveHSV Thanks for the dirt shirt! Love it!!! See you the n ft one I’m in Hunty +06/08/2018,Comedians,@Ornyadams,You guys deserved 10. See you the next time I’m in Huntsville. @StandUpLiveHSV https://t.co/ap614LLmJ8 +06/08/2018,Comedians,@Ornyadams,@jfischervo Thanks Jerome. That was a fun show. We’ll do it again at @StandUpLiveHSV !!! +06/07/2018,Comedians,@Ornyadams,Great minds think alike— that’s what I think when I repeat myself. +06/07/2018,Comedians,@Ornyadams,Guns disguised as walking canes are the only illegal firearms in Alabama. Walker rocket launchers are permissible in all counties. +06/07/2018,Comedians,@Ornyadams,It’s 95 degrees in Huntsville. I don’t know what that is in kilometers but it’s hot. +06/07/2018,Comedians,@Ornyadams,@HaleyBakerWAFF @StandUpLiveHSV Thanks for the interview Haley! +06/07/2018,Comedians,@Ornyadams,Fantastic. Wish I saw more tweets like this. https://t.co/wGUf30Gxr3 +06/06/2018,Comedians,@Ornyadams,This plane takes off at 7:50pm from Atlanta and lands in Huntsville at 7:45pm. What should I do with this 5 minutes? +06/06/2018,Comedians,@Ornyadams,@raerae_9500 Looking forward to meeting you in Huntsville @StandUpLiveHSV +06/04/2018,Comedians,@Ornyadams,Here come the VILLES! NASHVILLE and HUNTSVILLE YOU'RE UP! Huntsville Alabama and surrounding areas this Thursday co… https://t.co/HCjPBZTeYA +06/04/2018,Comedians,@Ornyadams,I think I ate some bad soy. +06/04/2018,Comedians,@Ornyadams,About to start watching... can't wait for more gold like this https://t.co/x7U8FAn2iQ #90DayFiance +06/03/2018,Comedians,@Ornyadams,This week I’m doing shows in Huntsville Alabama and Nashville. Details are on on my website. +06/03/2018,Comedians,@Ornyadams,It’s my cheat day. The one day a week I diet. +06/03/2018,Comedians,@Ornyadams,I'd be happy to do a show you could attend JM... where do you suggest? https://t.co/VrO15KzfIg +06/03/2018,Comedians,@Ornyadams,@GoldfarbIrwin @StandUpLiveHSV Thanks Irwin... I appreciate hearing that. +06/02/2018,Comedians,@Ornyadams,"RT @StandUpLiveHSV: 🐺Teen Wolf's Coach!🐺 +@Ornyadams played Coach on Teen Wolf for 6 seasons, released his newest Showtime special ""More Tha…" +06/02/2018,Comedians,@Ornyadams,Me. Alabama. Thursday night. Huntsville. You. Go. Thank you. https://t.co/9DdsAIwaCq +06/02/2018,Comedians,@Ornyadams,@xoJohnD @Showtime Newest. Came out in December. +06/02/2018,Comedians,@Ornyadams,My current special MORE THAN LOUD is airing on @Showtime. Have you seen it!? It’s on demand too. https://t.co/ib0R4SbCKm +06/02/2018,Comedians,@Ornyadams,@brandbogard No dates. But that could change. +06/02/2018,Comedians,@Ornyadams,@vfp111 I don’t know about that... but thanks. +06/02/2018,Comedians,@Ornyadams,@CeliaR81 @Puce31 Hope to see you at one of my @justforlaughs shows in July. +06/02/2018,Comedians,@Ornyadams,"No, thank you Jeff. I’m just getting started. https://t.co/b332wbbS45" +06/02/2018,Comedians,@Ornyadams,@EMJW03092014 Thanks Elaine! +06/01/2018,Comedians,@Ornyadams,Google music’s got MORE THAN LOUD. Link below. https://t.co/JNArKE7Ss2 +06/01/2018,Comedians,@Ornyadams,SPOTIFY me. Link below for my new stand up special MORE THAN LOUD. Thanks Sarah for posting. https://t.co/RbPxXVmI2i +06/01/2018,Comedians,@Ornyadams,Is that @Spotify? I don't subscribe so if one of you subscribers could post a clean link to my new special ORNY ADA… https://t.co/dD4DF3omYU +06/01/2018,Comedians,@Ornyadams,Amazon Prime subscribers can listen to my newest stand up special MORE THAN LOUD for free! Available for download t… https://t.co/dfalXSdKV4 +06/01/2018,Comedians,@Ornyadams,My newest stand up special MORE THAN LOUD is now available on iTunes. It says explicit but that's now how I would d… https://t.co/HpJqIDjc1x +06/01/2018,Comedians,@Ornyadams,MORE THAN LOUD audio it’s everywhere as of right now. iTunes. Amazon. Spotify. And so on. +05/31/2018,Comedians,@Ornyadams,@showmesometatas I do that on planes. +05/31/2018,Comedians,@Ornyadams,I disagree I blame baby aspirin for everything that has gone wrong in my career. https://t.co/G59M0eAUNZ +05/31/2018,Comedians,@Ornyadams,Wow those were the days before the internet boom when we offended people blissfully unaware. You know it was lupus… https://t.co/0jKVmfG4BC +05/31/2018,Comedians,@Ornyadams,I apologize to anybody offended by my last tweet I took a baby aspirin earlier today and was baby aspirin tweeting. +05/31/2018,Comedians,@Ornyadams,I wonder if I was a doctor if every Uber driver would tell me “I’m a doctor too?” +05/29/2018,Comedians,@Ornyadams,It’s Tuesday. Keep that in mind when you’re parking. They don’t care that you thought it was Monday. +05/29/2018,Comedians,@Ornyadams,@green_fury77 Regardless I like your dad. Tell him Orny says hi. +05/28/2018,Comedians,@Ornyadams,90 Day Fiancé recapping when Mohamed left Danielle. I'm starting to think maybe this marriage isn't so real... https://t.co/Ci6yhzqhoW +05/27/2018,Comedians,@Ornyadams,@chachadawn Wasn’t that YEARS ago? +05/27/2018,Comedians,@Ornyadams,@CanyonDentalCen Thanks dentist Bob. Wish I had done my flossing joke now. Which show tonight @TheComedyStore or @HollywoodImprov? +05/27/2018,Comedians,@Ornyadams,I needed that. Thanks @TheComedyStore crowd. +05/27/2018,Comedians,@Ornyadams,Did you know Facebook and Google's analytics are so good they can predict what I'm going to complain about on stage before even I know? +05/26/2018,Comedians,@Ornyadams,RT @TheComedyStore: 7pm Main Room @DaneCook @steveo @bobbyleelive @Ornyadams @brianmonarch https://t.co/Q0hdesQ50q #thecomedystore +05/26/2018,Comedians,@Ornyadams,Let’s discuss this commercial. Now everyone’s doing dishwasher bits like me? https://t.co/EcMQRxrBPh +05/26/2018,Comedians,@Ornyadams,@legendnatalie1 @MickJagger Mick? +05/26/2018,Comedians,@Ornyadams,Listen @MickJagger you’ve done so much for my comedy. Let me repay the favor... let me write you some solid materia… https://t.co/myudYVXcXp +05/26/2018,Comedians,@Ornyadams,@tlynch2 Ditty mao! +05/26/2018,Comedians,@Ornyadams,Am I the only one live tweeting The Deer Hunter right now? I feel so alone. +05/26/2018,Comedians,@Ornyadams,Dozed off for a minute and now we’re in Vietnam. I missed something. Lots of pigs running around. No deers here either. +05/26/2018,Comedians,@Ornyadams,At 57 minutes. Insert of a deer running. Clearly a studio note “Hey guys maybe we should see a deer in the first ho… https://t.co/Aqbw5i22qW +05/26/2018,Comedians,@Ornyadams,49 minutes in and still haven’t scene a deer. Wedding is over! But now some guy is running down the street in his u… https://t.co/i5cljwxUlM +05/26/2018,Comedians,@Ornyadams,@ngildvilll Dammit +05/26/2018,Comedians,@Ornyadams,That’s right I’m live tweeting a movie that came out in 1979. +05/26/2018,Comedians,@Ornyadams,Anybody watching Deer Hunter right now wondering if this wedding scene is going to end before the end of Memorial D… https://t.co/ZMqT0BZiqb +05/26/2018,Comedians,@Ornyadams,@Dylan0addicted You’re my new favorite person. +05/26/2018,Comedians,@Ornyadams,I’m getting too old for this should not be my response to EVERYTHING. +05/25/2018,Comedians,@Ornyadams,RT @HollywoodImprov: Don’t miss this killer show TMRW at 8! @SherriEShepherd @KevinNealon @RafinhaBastos @OrnyAdams & @MaxComedian are taki… +05/25/2018,Comedians,@Ornyadams,Looking forward to it Nashville! https://t.co/o1YZYY0hi0 +05/25/2018,Comedians,@Ornyadams,Last night I almost posted a Michelangelo quote and I wasn’t even drunk. +05/24/2018,Comedians,@Ornyadams,90 day fiancé on TLC “The idiot.” Anybody else watching this train wreck? https://t.co/0QpSOmfI9f +05/24/2018,Comedians,@Ornyadams,"@CovinoandRich I’m sorry what part of my I DON’T GIVE COMPS TO DUDES policy don’t you guys get. Ok, I’ll see what I can do. Miss you guys!" +05/24/2018,Comedians,@Ornyadams,If you need help writing commercials that don't annoy so many of us... let me know https://t.co/DTnkqMl3V8 +05/24/2018,Comedians,@Ornyadams,@ImkenmacMaclean Thanks. Check out my other two-- I think they are online.... someplace. Audio for sure. +05/24/2018,Comedians,@Ornyadams,@Nancernoodle @grapecrime Being called a king by someone from the UK always means a LITTLE bit more. Thank you. +05/24/2018,Comedians,@Ornyadams,I can't believe I'm the same age as Bob Dylan. +05/24/2018,Comedians,@Ornyadams,What ever happened to that beret? https://t.co/qzZ8T0x6uj +05/24/2018,Comedians,@Ornyadams,What ever happened to that beret? https://t.co/KnlX3GruQz +05/24/2018,Comedians,@Ornyadams,In case you find yourself with 120 seconds and nothing to do in a world full of way too many distractions https://t.co/DTnkqMl3V8 +05/24/2018,Comedians,@Ornyadams,@DawnMDix I'm working on new material for one... +05/23/2018,Comedians,@Ornyadams,@519lucha Would you be willing to clone yourself to help me get more well known? +05/23/2018,Comedians,@Ornyadams,No! I’ve done enough for you people. https://t.co/yD0mMKh179 +05/23/2018,Comedians,@Ornyadams,Thanks. I have a youtube channel with plenty of content. Check it out. This is were I’d post a link to it if I wasn… https://t.co/pWF11fKTUW +05/23/2018,Comedians,@Ornyadams,@invisibleeggs I have a youtube channel with plenty of context. Check it out. +05/23/2018,Comedians,@Ornyadams,I didn't even know I was watching a car commercial. https://t.co/cFkKqvkFlC +05/21/2018,Comedians,@Ornyadams,It’ll be nice to be home. https://t.co/QudlyZVnmm +05/21/2018,Comedians,@Ornyadams,This made me laugh. Why do you even bother @Delta no one’s following the signs. I mean NOT one person using this bi… https://t.co/90DGz0QvMv +05/21/2018,Comedians,@Ornyadams,@loujo333 @YouTube Fantastic. Love hearing this. I’ll be in Montreal this summer for @justforlaughs if you wanna see me live. +05/21/2018,Comedians,@Ornyadams,Don’t kid yourself parents PICK ME A WINNER is nothing short of nose picker shaming and I won’t have it. These kids… https://t.co/PrkE2Pku2j +05/20/2018,Comedians,@Ornyadams,@519lucha You've lowered it THAT much? +05/20/2018,Comedians,@Ornyadams,@MelissaClaire93 Congrats! Not about my show being canceled but the other thing. +05/20/2018,Comedians,@Ornyadams,@ilavfd Why do you have to be so difficile? +05/20/2018,Comedians,@Ornyadams,About 45 minutes into my show alarms go off to remind old people to take their medication. +05/20/2018,Comedians,@Ornyadams,Yeah a lot of you Teen Wolf fans should be 21 by now... what's the hold up? https://t.co/Zj6V7bUJ8z +05/20/2018,Comedians,@Ornyadams,“Orny you must meet a lot of women after your shows.” Uhm not really... THIS IS MY FANBASE. https://t.co/Gp4ZAqrCdb +05/20/2018,Comedians,@Ornyadams,This is what my fan base has turned into. The good news is I can retire soon because it looks like my fans and I ha… https://t.co/xkDeqJzR6Y +05/20/2018,Comedians,@Ornyadams,Spies everywhere! I had never put Tobasco on my pancakes before and it is SO me. I'd like it named after me. Even i… https://t.co/5FoMNKUBVh +05/20/2018,Comedians,@Ornyadams,That's ONE vote for me. https://t.co/KdPiwvffri +05/20/2018,Comedians,@Ornyadams,Did you lose weight? https://t.co/QOr8rJceYw +05/20/2018,Comedians,@Ornyadams,Hey @howiemandel if I lose five pounds can I be one of the briefcase models? I feel like we talked about this at on… https://t.co/ijI6svsiOg +05/19/2018,Comedians,@Ornyadams,You'll be seeing mostly a new show tonight but I'll throw in a few favorites from #MoreThanLoud... hope that's ok.… https://t.co/HQrllFyCOS +05/19/2018,Comedians,@Ornyadams,Prepping for my shows tonight in Cleveland @Hilarities. https://t.co/MPjcrne2s3 +05/19/2018,Comedians,@Ornyadams,"Can you supply us with the exact percentage of POSITIVE @yelp reviews that are removed for NOT ""Including enough de… https://t.co/NfRiInsP0L" +05/19/2018,Comedians,@Ornyadams,@claybob7 @Hilarities I look forward to returning to Dallas sooooon! Glad you enjoyed my special. I think you can g… https://t.co/XtRjxepxd6 +05/19/2018,Comedians,@Ornyadams,Hope you enjoyed the show! 2 more tonight CLEVELAND and one tomorrow night @Hilarities downtown. https://t.co/OaP9B1j1Vk +05/18/2018,Comedians,@Ornyadams,For the record @yelp has NEVER deleted one of my positive reviews for not having enough details about my experience. +05/18/2018,Comedians,@Ornyadams,"Hey @yelp ""IT SUCKED AND THEY WERE RUDE"" is plenty of detail for a restaurant review. The problem with most yelp re… https://t.co/nGgQ7wSgbQ" +05/18/2018,Comedians,@Ornyadams,@ShaniCAWCAW @Yelp Yup just posted this-- Done with @Yelp they delete REAL negative reviews from actual customers w… https://t.co/oMfnxojMNu +05/18/2018,Comedians,@Ornyadams,Done with @Yelp they delete REAL negative reviews from actual customers who have had REAL experiences and let busin… https://t.co/PByEUraLHs +05/18/2018,Comedians,@Ornyadams,"Just got this from @Yelp for a review I left months ago ""I'm reaching out to let you know that our moderators remov… https://t.co/kiNcAkZIdu" +05/18/2018,Comedians,@Ornyadams,The dream continues. Now I'm in Cleveland doing shows this weekend @Hilarities downtown. Times and tickets https://t.co/wkzoYZklKG +05/18/2018,Comedians,@Ornyadams,Found this old picture of my great grandfather taking a selfie. https://t.co/Z3dGbogpqt +05/18/2018,Comedians,@Ornyadams,@itslizblanc @Hilarities @DowntownCLE Thanks Liz! We’re gonna have a great weekend @Hilarities!!! +05/18/2018,Comedians,@Ornyadams,@theHurt_Locker @Hilarities Glad you enjoyed my show! +05/18/2018,Comedians,@Ornyadams,@TheNolanNation @Hilarities @majic1057 Thanks for having me on. Had a blast. +05/17/2018,Comedians,@Ornyadams,I have a really crappy attitude about this royal wedding... am I supposed to care at all? +05/17/2018,Comedians,@Ornyadams,@rissy207 I can’t keep track of my schedule when was I supposed to be there? +05/17/2018,Comedians,@Ornyadams,@NoraPrinciotti I’ll be there alone too. Don’t feel self conscious. See you soon. +05/17/2018,Comedians,@Ornyadams,"RT @StandUpLiveHSV: Thursday, June 7! Fresh off of his Showtime special ""More Than Loud,"" @Ornyadams is coming to Rocket City for one night…" +05/15/2018,Comedians,@Ornyadams,I think I did and now it looks like I’m wearing braces. Do I have to explain this one? The melted plastic stuck to… https://t.co/ChBA7N231l +05/15/2018,Comedians,@Ornyadams,Ha! All new lazy low for @Starbucks... didn’t even take the pasty out of the plastic wrap. It’s ok I shouldn’t be e… https://t.co/1Ddqyfmzt1 +05/15/2018,Comedians,@Ornyadams,It keeps my comedy real https://t.co/RRk1UKM4ZN +05/15/2018,Comedians,@Ornyadams,Tomorrow night Rochester! Let’s go! https://t.co/UhtbftKCwf +05/15/2018,Comedians,@Ornyadams,Sometimes I look in the mirror and think I hope I look this good when I'm my age. +05/14/2018,Comedians,@Ornyadams,Absolutely. I’ll be around. https://t.co/pgCYmNWecv +05/13/2018,Comedians,@Ornyadams,But Castro is dead. Zuck is scarier than a dead person? I mean how many people are leaving America on flotillas to… https://t.co/Mtvfg5vCnu +05/13/2018,Comedians,@Ornyadams,@JonDonahue I am so grateful that stupid Budweiser strawberry festival brought us together last night! Thanks Jon. It was great to meet you. +05/13/2018,Comedians,@Ornyadams,@SandyStec @cannoncomedy @LevityOxnard It was such a pleasure working with you. I can not wait to do it again. Than… https://t.co/UE1pv8inrD +05/13/2018,Comedians,@Ornyadams,Whoever wrote this doesn’t understand me. https://t.co/bluhoyWaQI +05/12/2018,Comedians,@Ornyadams,The cheaper the hotel the louder the couples fight in room next door. Say what you want about rich people but they… https://t.co/1vcYlaRNUX +05/12/2018,Comedians,@Ornyadams,The cheaper the hotel the louder the couples fight in room next door. Say what you want about rich people but they… https://t.co/GTkAHeVPce +05/12/2018,Comedians,@Ornyadams,Yes Oxnard CALIFORNIA... 2 more shows tonight @LevityOxnard and if last night is any indication we are going to hav… https://t.co/uFRMEhP9az +05/12/2018,Comedians,@Ornyadams,It’s official Crest has run out health benefits to claim. Nothing like a bullshit gum detox that our gums have all… https://t.co/8eBavwKcVN +05/12/2018,Comedians,@Ornyadams,@SandyStec @LevityOxnard @maijareturns Great job last night Sandy! Thanks for being such a pro. Looking forward to tonight. +05/12/2018,Comedians,@Ornyadams,Guy on this show Safe has been dead for 4 days and gets pulled out of a lake and he looks better than me and I’ve b… https://t.co/u1PNXxeXhC +05/11/2018,Comedians,@Ornyadams,@JonDonahue @LevityOxnard Good news because you are verified you qualify to have @cannoncomedy valet your car for free too. +05/10/2018,Comedians,@Ornyadams,I am with these wonderful comedians this Friday and Saturday in Oxnard CA @LevityOxnard. And... free parking! https://t.co/YmIk71mrIk +05/10/2018,Comedians,@Ornyadams,@showmesometatas I'll be in Huntsville June 7th @StandUpLiveHSV if you still live close or know people who do... thanks! +05/10/2018,Comedians,@Ornyadams,Doing a show next month in Alabama and it got me thinking about boiled peanuts and the time I got pulled over in Do… https://t.co/UvQQ40rD1I +05/09/2018,Comedians,@Ornyadams,@gideonemery Now that I think about it Gideon sounds like something you catch in Vegas on one of those WHAT HAPPENS… https://t.co/P4764gKgYx +05/09/2018,Comedians,@Ornyadams,"I still consider myself a catch. Though, confidence waning." +05/08/2018,Comedians,@Ornyadams,I’m at this restaurant and this woman is staring at me. Finally she says hi. I said you’re looking at me like a pie… https://t.co/K11GjnnzVt +05/08/2018,Comedians,@Ornyadams,@SkinnerPm I’d prefer when you watch my stand-up comedy it not be when you’re naked soaking in your iron tub. Thanks. @NewYorker @bentaub91 +05/07/2018,Comedians,@Ornyadams,I have shows this FRIDAY/SATURDAY in Oxnard CA @LevityOxnard... info in tweet below. https://t.co/qo5EI9cp9f +05/07/2018,Comedians,@Ornyadams,I have the answer! START SWIMMING CLEVELAND. See you May 16-20th @Hilarities https://t.co/zNjegL5aZn https://t.co/nfrc7yv2f2 +05/05/2018,Comedians,@Ornyadams,"Everyone in this film @TheDaughterFilm deserves an award. Even the two girls in the bar. Spectacular writing, direc… https://t.co/pESHyrYfkU" +05/05/2018,Comedians,@Ornyadams,@GrandmaPams Thanks! I think you mean @Showtime +05/04/2018,Comedians,@Ornyadams,@schnelly2 @Hilarities START DRIVING NOW to @Hilarities +05/03/2018,Comedians,@Ornyadams,"It’s all heights! Cleveland, Ohio shows May 17-20 at Hilarities @Hilarities https://t.co/rcahMmlVOH" +05/03/2018,Comedians,@Ornyadams,@mariobosco @Hilarities And I look forward to meeting you one day too Mario-- especially after getting this tweet. +05/03/2018,Comedians,@Ornyadams,Next Fri/Sat doing shows in OXNARD CA! Yes! @LevityOxnard This club rocks! https://t.co/LKLykeVftI +05/03/2018,Comedians,@Ornyadams,Tickets for Cleveland @Hilarities https://t.co/TRbTfyH6eQ +05/03/2018,Comedians,@Ornyadams,Put on your bathing suit and start swimming to see my show in Cleveland May 17-20th @Hilarities https://t.co/lVvMOUDswB +05/02/2018,Comedians,@Ornyadams,Coming this fall Beacon Hills Elementary. Find out who was always dumb and annoying. #teenwolf @mtv @mtvteenwolf ..… https://t.co/Xaqkcsx5HL +06/27/2018,Comedians,@amyschumer,"I’m coming to @NtlComedyCenter in Jamestown, NY with my friends for #LucyComedyFest on 8/3! Get tix here https://t.co/KwLT2TGcOj" +06/25/2018,Comedians,@amyschumer,"In solidarity with the survivors of the Las Vegas shooting, I’m telling the ATF to ban bump stocks. The public comm… https://t.co/H0pRF1sdcr" +06/21/2018,Comedians,@amyschumer,It's official. We've launched! Check out #3Girls1Keith on @Spotify https://t.co/cDOepm2Iqx +06/20/2018,Comedians,@amyschumer,@NYCCuomo & political leaders have the power to protect farmworkers TODAY. Read why farmworker women have been wait… https://t.co/HcbfW4HJxg +06/20/2018,Comedians,@amyschumer,"Hey New York, I’m coming to @Pier17NY with my friends on 8/1! Tickets available here https://t.co/wNTBnIXmaT" +06/14/2018,Comedians,@amyschumer,"Make sure to tune into my @spotify Original Podcast Amy Schumer Presents: 3 Girls, 1 Keith on 6/21. #3Girls1Spotify https://t.co/5NE7elf0lX" +06/13/2018,Comedians,@amyschumer,"I’m coming to @WinStarWorld in Thackerville, OK with my friends on 7/28! Tickets available now! https://t.co/VvFUjDi9Mz" +05/29/2018,Comedians,@amyschumer,Come see me and my friends this weekend in San Fran! June 2nd at 9pm https://t.co/LKq0x8vZGV +05/15/2018,Comedians,@amyschumer,LA and NYC and the world don’t miss @kathygriffin she’s a true killer! https://t.co/L8mjnfEx5L +05/11/2018,Comedians,@amyschumer,I'm doing a few shows with my friends this Summer! Tickets on sale now! https://t.co/h2qfwlTuLL +05/07/2018,Comedians,@amyschumer,Tickets are on-sale THIS FRIDAY starting at 10AM EST for my summer tour! Get your tickets now! https://t.co/kGplNTY3Kw +05/05/2018,Comedians,@amyschumer,Please watch this https://t.co/NTPcQ91FB8 +05/04/2018,Comedians,@amyschumer,RT @LearyFF: The Second Annual Denis Leary FDNY Firefighter Challenge is in full force! #WeCanBeHeroes #FFChallenge #IFFD https://t.co/dofD… +05/02/2018,Comedians,@amyschumer,We're calling on corporations to cut all ties with R. Kelly and insist on safety and dignity for women of all kinds… https://t.co/ki0glwZNCV +04/24/2018,Comedians,@amyschumer,"Hear my full conversation with @Oprah in the latest Oprah's #SuperSoulConversation Podcast, out TODAY! @OWNTV… https://t.co/qaH3ws2568" +04/23/2018,Comedians,@amyschumer,"Hear my full conversation with @Oprah in the latest Oprah's #SuperSoulConversation Podcast, out TODAY! @OWNTV… https://t.co/tlcwwuINpQ" +04/19/2018,Comedians,@amyschumer,@IFeelPretty hits theaters TOMORROW! Get your tickets now: https://t.co/Zr84FZ2aYh https://t.co/YDJ6OZwLaP +04/19/2018,Comedians,@amyschumer,"RT @IFeelPretty: ""While I mostly feel good about myself now, I know plenty of other women don't. I wanted to make I Feel Pretty to empower…" +04/17/2018,Comedians,@amyschumer,Watch @emrata Aidy Brant and I show you the last thing on our phones @glamourmag https://t.co/kYrFlY9e3G +04/16/2018,Comedians,@amyschumer,@IFeelPretty is in theaters in 4 DAYS!!! Get your tickets now: https://t.co/TQykSePthJ https://t.co/FUnpR80L5T +04/14/2018,Comedians,@amyschumer,6 DAYS‼️‼️‼️‼️get your tickets NOW https://t.co/BXfFVDaRcD https://t.co/zSWCL7ZJ19 +04/13/2018,Comedians,@amyschumer,@IFeelPretty is out in theaters in ONE WEEK!! Get your tickets! https://t.co/TQykSf74Gj https://t.co/wZpIXv0vJ2 +04/10/2018,Comedians,@amyschumer,@katiecouric is unpacking the most complicated issues we're facing as a country today on #AmericaInsideOut. Join us… https://t.co/uz4DiFuZfy +04/10/2018,Comedians,@amyschumer,Get your tickets for @IFeelPretty now! Open in theaters April 20th! https://t.co/BXfFVDaRcD https://t.co/YWXj8cEIKV +04/06/2018,Comedians,@amyschumer,"No one tells funnier stories than my friend, old school comedian D.C. Benny, whose new album drops today. He's the… https://t.co/fYV6bZzaUA" +04/06/2018,Comedians,@amyschumer,RT @TommyMcFLY: Don’t call @amyschumer a “Lady Boss” she schooled me on how we should talk about women who lead. Thoughts? Thanks Amy Schum… +04/02/2018,Comedians,@amyschumer,Love a good TED talk https://t.co/fX6ZxmqSkL +04/02/2018,Comedians,@amyschumer,RT @jimmykimmel: this is extremely dangerous to our democracy https://t.co/D1T8Z7J2Wn +03/26/2018,Comedians,@amyschumer,We are @Twitter! #IFeelPretty https://t.co/EV3OG4QQO8 +03/25/2018,Comedians,@amyschumer,"RT @SenSchumer: Yesterday, I marched alongside amazing kids and worried families who are doing things Congress & NRA loyalists have long re…" +03/22/2018,Comedians,@amyschumer,Watch my homies!@RachelFeinstein @aparnapkin @ginayashere https://t.co/WWs94qcavm +03/14/2018,Comedians,@amyschumer,RT @emilymusilchrch: Stand with these students & @pvpspringfield today to hold @SmithWessonCorp accountable! #HowManyMore #BePartOfTheSolut… +03/14/2018,Comedians,@amyschumer,"On Saturday, March 24th, #IWillMarch in solidarity with Parkland students for common-sense gun safety laws. Will yo… https://t.co/o5ISuk3600" +03/03/2018,Comedians,@amyschumer,APRIL 20th! Woot woot! @IFeelPretty #ifeelpretty https://t.co/eSAMEv5puo +02/27/2018,Comedians,@amyschumer,Please call your congressperson today to vote YES on HR1865 #FOSTA #SESTA: https://t.co/ZjujurMiXT… https://t.co/SgZltpi9JE +02/23/2018,Comedians,@amyschumer,"The NRA’s media arm, NRATV, uses dangerous rhetoric to spread fear so people will buy more guns. + +Add your name to… https://t.co/i9d7ZR5sJL" +02/21/2018,Comedians,@amyschumer,RT @Lynetterice: Get a first look at the @JuddApatow documentary about the one and only Garry Shandling @HBODocs https://t.co/xj41kOLN59 ht… +02/18/2018,Comedians,@amyschumer,"On March 24, students are leading marches in DC & across the country to demand that lawmakers do their jobs and tak… https://t.co/895fFZt18q" +02/18/2018,Comedians,@amyschumer,"RT @AngeloRoefaro: SHOCKING BUT TRUE: Despite tragic mass shootings, just-released White House budget would cripple the gun background chec…" +02/14/2018,Comedians,@amyschumer,Get your tickets now for @clusterfest! https://t.co/YNJIdVUzpX +02/08/2018,Comedians,@amyschumer,"Change everything, without changing anything. Watch the trailer for my new comedy, I Feel Pretty – coming soon to t… https://t.co/OtQiPN38DM" +02/07/2018,Comedians,@amyschumer,Check out the poster for @IFeelPretty! Trailer tomorrow! https://t.co/b7ybRcXBgb +02/05/2018,Comedians,@amyschumer,"RT @ComedyCentral: Lady Doritos are here to kill satire. #InsideAmy +https://t.co/gg2ejiSRgc" +02/03/2018,Comedians,@amyschumer,RT @msjwilly: Heyyy Hoochies! Tonight is THE night! The first of our FOUR @2DopeQueens specials premieres this evening on HBO at 11:30pm!!… +02/01/2018,Comedians,@amyschumer,Thanks for having me on Katie! https://t.co/XgFIDwTwxA +02/01/2018,Comedians,@amyschumer,"RT @TIMESUPNOW: Members of Congress, standing for safety and equity in the workplace at the #SOTU. Across all industries, the message is st…" +01/30/2018,Comedians,@amyschumer,Please give what you can to help Luke! https://t.co/oQpHDYgvrU +01/30/2018,Comedians,@amyschumer,"RT @rosemcgowan: Today, I rise. ✊ +#CitizenRose #BeBrave https://t.co/2hV9WK6lij" +01/27/2018,Comedians,@amyschumer,Still don’t have a copy of #TheGirlWithTheLowerBackTattoo? Get the audiobook edition read by yours truly at the new… https://t.co/yGvBzj57Vr +01/23/2018,Comedians,@amyschumer,"Today's school shooting in KY was at least the 10th school shooting nationwide in 2018, and third in JUST TWO DAYS,… https://t.co/GzriVb1mhi" +01/18/2018,Comedians,@amyschumer,RT @shondarhimes: Just in case you’re wondering how to dismiss foolishness: https://t.co/ErvHKPsFF4 +01/16/2018,Comedians,@amyschumer,"RT @BBCNewsPR: In an interview with the BBC’s @StephenSackur, @AshleyJudd talks about the #MeToo movement, Weinstein and James Franco. For…" +01/14/2018,Comedians,@amyschumer,RT @ambertamblyn: Hi @Disney and @RobertIger . It looks like you’re about to have two seats open on your board of directors. We call on you… +01/12/2018,Comedians,@amyschumer,"Our fight for the rights of immigrants and #Dreamers is a fight for racial justice, for the end of anti-Blackness &… https://t.co/8QywUcAfGO" +01/11/2018,Comedians,@amyschumer,WATCH: https://t.co/SZI14o3THn JOIN US: We need to urge Congress to amend #CDA230 on National Human Trafficking Aw… https://t.co/gvQ5IMoreC +01/07/2018,Comedians,@amyschumer,"RT @AmericaFerrera: Grateful to our Activist Sisters for gracing the red-carpet today with their extraordinary work and voices, which repre…" +01/07/2018,Comedians,@amyschumer,RT @AmericaFerrera: Wonder Woman says #TIMESUP !!!!! #WhyWeWearBlack https://t.co/NJTsJ07CXW +01/04/2018,Comedians,@amyschumer,RT @MichelleObama: So proud of my friend and former chief of staff @TinaTchen and the other strong women banding together to fight sexual h… +12/27/2017,Comedians,@amyschumer,"New Orleans! Spend New Year’s Eve with me and @anidifranco, @RachelFeinstein, @vanessabayer and other special guest… https://t.co/lsHoq922gw" +12/26/2017,Comedians,@amyschumer,"""Thanks for loaning me the #Q7 @audi I loved it! """ +12/19/2017,Comedians,@amyschumer,"Tonight, I’m on #FindingYourRoots discovering my ancestry with @HenryLouisGates. We’ll be on your local @PBS statio… https://t.co/x0ymzrKRUg" +12/06/2017,Comedians,@amyschumer,"DEAR GOP: Pass the #DreamActNow or families will be destroyed. Watch this video feat @rosariodawson & tell + us whic… https://t.co/UuXom5PctF" +12/05/2017,Comedians,@amyschumer,"Right now, the NRA and its allies in Congress are pushing through a bill that would force YOUR state to abide by th… https://t.co/9q0hMo6wgo" +11/29/2017,Comedians,@amyschumer,New Orleans show on New Years Eve! Come see me and my favorite musician of all time @anidifranco and I’ll be perfor… https://t.co/uxblxrGuBu +11/19/2017,Comedians,@amyschumer,Republican tax bill includes tax break for those with private jets. Wonder if it comes with free peanuts? https://t.co/SAsPy7iNcc +11/17/2017,Comedians,@amyschumer,"HELL YES! @ambertamblyn released a collection with @mysisterorg to fight assault, exploitation and trafficking. 25%… https://t.co/NyTFwDwLV4" +11/15/2017,Comedians,@amyschumer,RT @SenWarren: The news just broke – Senate Republicans want to rip health insurance away from 13 million Americans... through the tax bill… +11/09/2017,Comedians,@amyschumer,Let’s share how Americans can get health insurance. Open enrollment happens now thru Dec. 15. If you aren't covered… https://t.co/IG8M0gAJf1 +11/06/2017,Comedians,@amyschumer,https://t.co/He1aR7N5kg Spread the word! This film has every element of what never giving up can do for you.… https://t.co/9zTtVUToFF +11/03/2017,Comedians,@amyschumer,"Do not miss my girl @rachelfeinstein taping her new @netflix special in LA this Sunday, Nov 5! Get free tickets here +https://t.co/xXyaLUaX28" +10/18/2017,Comedians,@amyschumer,"RT @MeteorShowerBwy: .@AmySchumer, @KeeganMKey, @LauraBenanti and @JeremyShamos challenge @Springsteen to the #WaitressPieChallenge for @Ko…" +10/18/2017,Comedians,@amyschumer,Tell Congress to #RejectTheNRA's radical agenda. Text REJECT to 64433 & @Everytown will connect you with your Rep. https://t.co/5JNMjSZ11U +10/17/2017,Comedians,@amyschumer,Watch me on @JimmyKimmel – Tonight on ABC! #KimmelINBrooklyn https://t.co/Q2ICQurtoY +10/06/2017,Comedians,@amyschumer,"FYI to @WhiteHouse: Mad-men era, when the boss decided what kind of hlthcare a woman is entitled 2 is thing of past! https://t.co/YKUvx4rF3c" +10/02/2017,Comedians,@amyschumer,"Today we mourn for Las Vegas, tomorrow we fight for them. +Join the movement to end gun violence: Text ACT to 64433.… https://t.co/RTrZjyoR1H" +09/13/2017,Comedians,@amyschumer,RT @ambertamblyn: My Open Letter to James Woods by Amber Tamblyn | Teen Vogue https://t.co/7LEzRc8q4M +09/06/2017,Comedians,@amyschumer,Call your Senator/Representative to amend #CDA230. Join me in supporting trafficking survivors. #IamJaneDoeFilm… https://t.co/4cG142358n +09/01/2017,Comedians,@amyschumer,Happy Labor Day weekend! Make sure to pack your copy of #TheGirlWithTheLowerBackTattoo. https://t.co/vdp6oT9G8s +08/27/2017,Comedians,@amyschumer,My girls and I have a new Girls Night tradition- putting our $ where our mouths are. Join us in donating #DACA… https://t.co/eW7dn0yMf0 +08/24/2017,Comedians,@amyschumer,Why yes my book is very artsy https://t.co/vdp6oT9G8s https://t.co/sLO43ZYBH1 +08/16/2017,Comedians,@amyschumer,Want to write your own version of #TheGirlWithTheLowerBackTattoo? Amy Libs: https://t.co/J5BNpdS5XS +08/12/2017,Comedians,@amyschumer,It’s my book on a table! I hope you get it too! https://t.co/vdp6oT9G8s https://t.co/Lx36EHeHhp +08/08/2017,Comedians,@amyschumer,#TheGirlWithTheLowerBackTattoo is out in paperback today! https://t.co/LrTGDaOnjr +08/07/2017,Comedians,@amyschumer,.@stevemartintogo wrote a hilarious play @MeteorShowerBwy & I get to do it w/ @KeeganMKey @LauraBenanti @AlanTudyk… https://t.co/UMW6HZVQOD +08/04/2017,Comedians,@amyschumer,The paperback of my book #TheGirlWithTheLowerBackTattoo comes out on Tuesday! Don’t forget to pre-order your copy. https://t.co/vdp6oT9G8s +07/26/2017,Comedians,@amyschumer,"CAN'T STOP WON'T STOP #SaveACA & protect care @PPFA - tweet your Senators +NOW and tell them to vote NO #StandwithPP https://t.co/PDaKJw8702" +06/26/2017,Comedians,@amyschumer,THIS WEEK millions of patients could lose health care access at @PPFA. Tell your Senator to #StandWithPP now! https://t.co/PDaKJwpIoC +06/22/2017,Comedians,@amyschumer,"Senate released #Trumpcare bill that ""defunds"" @PPFA. TWEET YOUR +SENATORS NOW & tell them to #StandwithPP https://t.co/PDaKJw8702" +06/14/2017,Comedians,@amyschumer,".@clairecmc🔥-calling out Senators secretly moving a bill that would gut healthcare & ""defund"" PP👎#StandWithPP https://t.co/ZxE1GaFWqd" +06/14/2017,Comedians,@amyschumer,Please consider donating to mental illness here and reading the story of my brothers childhood friend https://t.co/6VggAhZARH +06/05/2017,Comedians,@amyschumer,Climate change denier https://t.co/XC5HUWJVFY +06/05/2017,Comedians,@amyschumer,Boston! Go see @RachelFeinstein this Thurs thru Saturday! Get them tickets now https://t.co/Cb1DGF5ATZ +06/05/2017,Comedians,@amyschumer,Birth control! Such a great time for women! https://t.co/xsYCQahknH +06/05/2017,Comedians,@amyschumer,Dr. Congress https://t.co/Ys7zfWaE5m +06/02/2017,Comedians,@amyschumer,"I #WearOrange for Ronique Williams. One of the 93 killed, and hundreds injured by gun violence every day in America." +05/20/2017,Comedians,@amyschumer,Nyc go see @ambertamblyn in #CanYouForgiveHer @VineyardTheatre you will love every second like I did. https://t.co/md3eXGN13J +05/18/2017,Comedians,@amyschumer,Turn hashtags into action! Watch #ActivismIRL live panel https://t.co/O8rN9BbDUB 5pm ET. @iwillharness @Twitter… https://t.co/aaGEbPw6bq +05/14/2017,Comedians,@amyschumer,Mom always has your back. #SnatchedMovie🌴 is in theaters now! #MothersDay https://t.co/PvrUTIEJU1 +05/13/2017,Comedians,@amyschumer,#SnatchedMovie🌴 is now playing in theaters everywhere! https://t.co/5sVxJZR8Qy https://t.co/CFEtz6ycwp +05/12/2017,Comedians,@amyschumer,"RT @JuddApatow: Let's raise some money for @ACLU to fight Trump! May 17 at @LargoLosAngeles @ThatKevinSmith, FRED ARMISEN & more!!! https:…" +05/12/2017,Comedians,@amyschumer,"The local flavor, the third wheel and the survivor. See #SnatchedMovie🌴 in theaters today! https://t.co/5sVxJZR8Qy https://t.co/KSMaV5L49M" +05/12/2017,Comedians,@amyschumer,Don't know what to get Mom for Mother's Day? 👉 Get your #SnatchedMovie🌴 tickets now 🎟: https://t.co/5sVxJZR8Qy https://t.co/aPpvstMhiv +05/11/2017,Comedians,@amyschumer,Whale what? #SnatchedMovie🌴 is in theaters tonight! Get your tickets: https://t.co/5sVxJZR8Qy https://t.co/ypRLKqqhOu +05/10/2017,Comedians,@amyschumer,Get Snatched this Friday. Get your tickets now: https://t.co/5sVxJZR8Qy #SnatchedMovie🌴 https://t.co/444UpRSnbO +05/10/2017,Comedians,@amyschumer,Send thoughts and prayers… and wine. 🍷🙏 #SnatchedMovie🌴 https://t.co/Drvo2WgY0N +05/08/2017,Comedians,@amyschumer,"Watch Wanda and I get out a of a tough situation that was completely, 100% not my fault. #SnatchedMovie #May12… https://t.co/6KP7foL82Y" +05/04/2017,Comedians,@amyschumer,"🚨ALERT🚨 House just voted to repeal the ACA & ""defund"" @PPFA. Call your Senators to stop the bill→ +https://t.co/qDeHgGFq3o #IStandWithPP" +05/03/2017,Comedians,@amyschumer,Watch me with @stephenathome on @colbertlateshow tonight! https://t.co/Whtr5ZKbVJ +04/28/2017,Comedians,@amyschumer,Congratulations @maryjblige on your inspirational album #StrengthofaWoman https://t.co/l7JgauEp5A +04/18/2017,Comedians,@amyschumer,RT @ambertamblyn: Full trailer for PAINT IT BLACK is up. Get ready for two incredible performances by Janet McTeer and @ShawkatAlia https:… +04/13/2017,Comedians,@amyschumer,"RT @EW: .@amyschumer & @goldiehawn take us on the set of the summer’s funniest, wildest and blondest comedy #SnatchedMovie! https://t.co/CR…" +04/12/2017,Comedians,@amyschumer,"RT @Snatched_Movie: This is it. You’re in the middle of it. @AmySchumer & @ParkRandall star in this exclusive clip from #SnatchedMovie🌴, in…" +04/11/2017,Comedians,@amyschumer,"RT @ambertamblyn: OH LOOK. Teaser trailer for PAINT IT BLACK, the film I wrote/directed exploring women's grief is now live. Link in bio. I…" +04/05/2017,Comedians,@amyschumer,Proud to be on the cover of @instyle! Thank you @laurabrown99 @kimmykuppkakes @andrea_tiller @cristinaehrlich… https://t.co/gTeZ7BdH7R +04/04/2017,Comedians,@amyschumer,See what life is like with 20% less. Seem crazy? So is the gender pay gap. #20PercentCounts https://t.co/nTWbF24W9y +04/04/2017,Comedians,@amyschumer,#quitthisshit https://t.co/wY7zPWfban +03/30/2017,Comedians,@amyschumer,...It works! See me and @goldiehawn in #SnatchedMovie🌴 this Mother's Day https://t.co/0MdgiH6V8y +03/28/2017,Comedians,@amyschumer,Word to your Mother. See me and @GoldieHawn in #SnatchedMovie🌴 https://t.co/crVmif9rAt +03/25/2017,Comedians,@amyschumer,ahhhhhhhhhhhhhhhhh https://t.co/qdNcLQMO3G +03/23/2017,Comedians,@amyschumer,House couldn’t get their vote on today to “defund” @PPFA-so they’re trying tomorrow. Tweet your Rep. https://t.co/YdGCOJZ158 #IStandwithPP +03/21/2017,Comedians,@amyschumer,When your boss asks you to come in an hour early #SnatchedMovie🌴 https://t.co/hIyUb8sL7j +03/21/2017,Comedians,@amyschumer,Couldn't be prouder of my sisters https://t.co/3MzYuaESNw +03/20/2017,Comedians,@amyschumer,.@JimNorton's new special on Netflix is hilarious https://t.co/dapyscckGe +03/14/2017,Comedians,@amyschumer,Only thing better than getting the final rose? Drinking rose on a vacay with your momay #TheBachelor #SnatchedMovie… https://t.co/kJIf9m23Yr +03/13/2017,Comedians,@amyschumer,#Snatchedmovie poster is here! https://t.co/KTYYp2gVo5 +03/07/2017,Comedians,@amyschumer,"RT @Skype: Tonight till Fri, you're invited to chat all things comedy with @RachelFeinstein. Just add SkypeComedy as a contact to join #Sky…" +03/07/2017,Comedians,@amyschumer,Blow the whistle. #SnatchedMovie🌴 https://t.co/skdEOFgpRM +03/02/2017,Comedians,@amyschumer,Mom hugs 😬 #SnatchedMovie🌴 https://t.co/hty3FVSvKB +03/02/2017,Comedians,@amyschumer,Watch me tonight on @latenightseth #theleatherspecial https://t.co/XLEp0im9tn +03/01/2017,Comedians,@amyschumer,2 days til my show at @FoxwoodsCT. https://t.co/sENv7TAzS7 +02/28/2017,Comedians,@amyschumer,RT @enews: Lessons in posting a nude selfie: @amyschumer spills in a sneak peek of her new @netflix special. Tonight on #ENews! https://t.c… +02/28/2017,Comedians,@amyschumer,March 7th! #TheLeatherSpecial https://t.co/HeqgIm0ESS +02/28/2017,Comedians,@amyschumer,Going on vacation with your mother #SnatchedMovie🌴 https://t.co/NBvo0KGa9a +02/23/2017,Comedians,@amyschumer,This is an @oldnavy commercial I did about pants #oldnavystyle #aboutpants https://t.co/WzmhPGGePI +02/22/2017,Comedians,@amyschumer,NOT YOU. #SnatchedMovie🌴 https://t.co/HK5fuyWEeJ +02/22/2017,Comedians,@amyschumer,"LA, please help bring Milek home safely! Contact the police if you have any info! RT https://t.co/NOdtqEjU37" +02/07/2017,Comedians,@amyschumer,Watch me and @GoldieHawn get Snatched Mother’s Day Weekend. Watch the new trailer now. #SnatchedMovie🌴 https://t.co/KaWyzeuoX8 +02/03/2017,Comedians,@amyschumer,"Can't wait to see @katiecouric's #GenderRevolution. It airs Feb. 6 at 9/8c on @NatGeoChannel, don't miss it!! https://t.co/ZRwDtGmo5r" +02/03/2017,Comedians,@amyschumer,RT @SenGillibrand: .@AmySchumer Got your voicemail! Thanks for the call—and thanks to all NYers who gotten #offthesidelines to make calls.… +02/01/2017,Comedians,@amyschumer,"RT @SarahKSilverman: My friend @SuliMcCullough made DyingLaughing, w/ @amyschumer @chrisrock @KevinHart4real available 4 preorder: https://…" +01/29/2017,Comedians,@amyschumer,RT @Adweek: How Airbnb and Lyft are taking action against Trump’s immigration ban (as #DeleteUber becomes a trending topic): https://t.co/Q… +01/29/2017,Comedians,@amyschumer,RT @SenSchumer: The Elias Family has been in the US for a month. I asked Hazem what he wants to be when he grows up: A policeman. And his s… +01/24/2017,Comedians,@amyschumer,I am adding a 2nd show at FOXWOODS on March 2nd! Tickets on-sale now:https://t.co/hgIodtrHHU +01/20/2017,Comedians,@amyschumer,"I had the pleasure of hanging with @neiltyson, this video is not to promote anything but I hope it makes you smile https://t.co/w9tLvJrZXG" +01/17/2017,Comedians,@amyschumer,"RT @nowthisnews: This is the little-known history behind America's most famous health care provider – thanks to @lenadunham, @mindykaling a…" +01/14/2017,Comedians,@amyschumer,I'll be at FOXWOODS on March 2nd! Get tickets here: https://t.co/hgIodtrHHU +01/10/2017,Comedians,@amyschumer,RT @netflix: Totally fearless and always hilarious: @AmySchumer's new stand-up special debuts March 7 https://t.co/XR8dLwAyHd +12/16/2016,Comedians,@amyschumer,.@TheRock Thank you so much! Please camp out all night in your living room to simulate. +12/16/2016,Comedians,@amyschumer,Watch me get snatched with @GoldieHawn this Mother’s Day weekend. Watch the new trailer for #SnatchedMovie🌴 https://t.co/02IWiIx7af +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Rachel D'Avino, 29, had just started as a teacher's aide + +#SandyHook https://t.co/dyoJVJTCy4" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Dawn Hochsprung, 47, was the school principal + +#SandyHook https://t.co/OpPk76AWZl" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Teacher's aide Anne Marie Murphy, 52, was found having tried to shield one of the 6 year old students + +#SandyHook https://t…" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Lauren Rousseau, 30, was a teacher + +#SandyHook https://t.co/oj916yznSY" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Mary Sherlach, 56, was the school psychologist + +#SandyHook https://t.co/XmzGeyauMT" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: 1st grade teacher Victoria Leigh Soto, 27, was killed protecting her students + +#SandyHook https://t.co/VHJik6k0P5" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Charlotte Bacon, 6 + +#SandyHook https://t.co/bKUZsxRveX" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Daniel Barden, 7 + +#SandyHook https://t.co/9Oq2RcpqiC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Olivia Engel, 6 + +#SandyHook https://t.co/MOGCJDPa5E" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Josephine Gay, 7 + +#SandyHook https://t.co/mpw4x4glsS" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Dylan Hockley, 6 + +#SandyHook https://t.co/Vu0WWWp6BF" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Madeleine Hsu, 6 + +#SandyHook https://t.co/hVIBvIDwg2" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Catherine Hubbard, 6 + +#SandyHook https://t.co/1b7SmW9Q69" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Chase Kowalski, 7 + +#SandyHook https://t.co/uTCpfJTj5D" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jesse Lewis, 6 + +#SandyHook https://t.co/xXHWyCJpIC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Ana Márquez-Greene, 6 + +#SandyHook https://t.co/GByT82JFaC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: James Mattioli, 6 + +#SandyHook https://t.co/hvAgW57rQj" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Grace McDonnell, 7 + +#SandyHook https://t.co/LZ8Ysf3axH" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Emilie Parker, 6 + +#SandyHook https://t.co/ShakzuvOOs" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jack Pinto, 6 + +#SandyHook https://t.co/VDq3NKNPNS" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Noah Pozner, 6 + +#SandyHook https://t.co/kxGifxAqzU" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Caroline Previdi, 6 + +#SandyHook https://t.co/s1aLnmDeVN" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jessica Rekos, 6 + +#SandyHook https://t.co/Uv3ndK76qp" +12/15/2016,Comedians,@amyschumer,RT @jaketapper: Four years ago today. #SandyHook https://t.co/WTTvTCZes4 +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Avielle Richman, 6 + +#SandyHook https://t.co/G5xPTSrizz" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Benjamin Wheeler, 6 + +#SandyHook https://t.co/0BmMVGda9h" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Allison Wyatt, 6 + +#SandyHook https://t.co/ZCHVZ8IbnP" +12/13/2016,Comedians,@amyschumer,Nothing worse than bumping into an ex while holiday shopping. How embarrassing for him. @oldnavy #oldnavystyle https://t.co/pdmo2CJOVV +12/12/2016,Comedians,@amyschumer,I'm on Ellen +12/12/2016,Comedians,@amyschumer,our movie has a title! @Snatched_Movie @goldiehawn https://t.co/A94Fw3fHM4 +12/12/2016,Comedians,@amyschumer,RT @TheEllenShow: OMG @AmySchumer is hilarious. Wait till you hear this story tomorrow. https://t.co/PeiLK54gsN +12/07/2016,Comedians,@amyschumer,I made a commercial with my sister who loves me and is very psyched to hang out with me @oldnavy #oldnavystyle https://t.co/wBNXOLBGiy +12/01/2016,Comedians,@amyschumer,Cousin @SenSchumer's law to stop cyber BOTS passed! Makes it easier for fans to see shows they love! #BOTSBeGone https://t.co/sk7ARFlZyb +12/01/2016,Comedians,@amyschumer,Today is World AIDS Day and this just happened. All for @RED!https://t.co/qAHbkqmHb8 +11/28/2016,Comedians,@amyschumer,.@IAmJericho just send me my call time #blessedtwin +11/19/2016,Comedians,@amyschumer,On the road reading material: @andy's #Superficial book. So GOOD! +11/19/2016,Comedians,@amyschumer,Renew your faith in humanity... grab @annakendrick47's new book #ScrappyLittleNobody +11/19/2016,Comedians,@amyschumer,Can't get over how good @joerogan's new stand-up special on Netflix. https://t.co/v6WLMTrl5Q +11/18/2016,Comedians,@amyschumer,My favorite thing I've seen all year @iamcolinquinn #TheNewYorkStory on @netflix +11/06/2016,Comedians,@amyschumer,Listen to @Lin_Manuel and make sure you vote on Tuesday. Find out where you can here: https://t.co/Zc9DGfrKLI https://t.co/F12pbefgRM +11/05/2016,Comedians,@amyschumer,RT @ambertamblyn: Nasty girls we nasty @AmericaFerrera @lenadunham @amyschumer #HillOrado #COPolitics https://t.co/cFE5cU7ILM +11/05/2016,Comedians,@amyschumer,.@TheRock I gotchu. But stay alive! +11/03/2016,Comedians,@amyschumer,#iwillvote.com https://t.co/1LDjOAxBie +11/02/2016,Comedians,@amyschumer,Louie knows what's up https://t.co/5lCs0aU9n7 also go cubs! +11/01/2016,Comedians,@amyschumer,RT @tweet_elva: @MomsDemand volunteers making tons of calls to #GOTV & having fun doing it! #ImWithHer #MomsDemandHillary https://t.co/kTF1… +11/01/2016,Comedians,@amyschumer,"RT @C_EmilyDurbin: MI moms register voters w @GloriaSteinem. ""Change comes from the bottom up"".#MomsDemandHillary @MomsDemand https://t.co/…" +11/01/2016,Comedians,@amyschumer,"RT @Rebecca_221B: Missouri @MomsDemand supporters in Springfield, Columbia & St. Louis got together today to get out the vote for @HillaryC…" +11/01/2016,Comedians,@amyschumer,RT @sbeergon: Beautiful day for phone bank! PDX @MomsDemand making calls for our Gun Sense Champ Rep Paul Evans #GunSenseMajority #MomsDema… +10/27/2016,Comedians,@amyschumer,"Information about My ""Formation"": https://t.co/xqZ4LGwxJl" +10/27/2016,Comedians,@amyschumer,I’ve picked your memoir title – find out what it is now! https://t.co/ZtdUxMz4Qo +10/24/2016,Comedians,@amyschumer,thank you @ELLEmagazine for including me! +07/01/2018,Comedians,@SarahKSilverman,RT @chrisinsilico: IMPORTANT: There is now a money trail that leads from Russia to Brexit. LeaveEU associates accepted huge financial deals… +07/01/2018,Comedians,@SarahKSilverman,"Friggin Sheen, always pandering for RTs https://t.co/QnVZ4ehucC" +07/01/2018,Comedians,@SarahKSilverman,We live in fucking insanity https://t.co/oIlGpXjcUW +07/01/2018,Comedians,@SarahKSilverman,@TriumphICDHQ @davidalangrier Yay!!! You wrote that!! You must have because I loved it +07/01/2018,Comedians,@SarahKSilverman,@jimvitola @_TheLeader @jdhlsc169 @Armi7119 @michaelianblack @DLoesch Every citizen of israel is trained to use a g… https://t.co/5Ucqnr6yzZ +07/01/2018,Comedians,@SarahKSilverman,"This hashtag is objective truth. As Mr Rogers says, “Love is at the root of everything… Love or the lack of it” https://t.co/8IdmJlIWlS" +07/01/2018,Comedians,@SarahKSilverman,"RT @bust_magazine: Sarah Silverman On ""I Love You, America"" And Trying To Understand Trump Supporters https://t.co/rl5RNj9alK https://t.co/…" +07/01/2018,Comedians,@SarahKSilverman,"RT @matthewjdowd: @SarahKSilverman @michaelianblack I am a gun-owning Texan, and want gun reform regulation, as do a majority of gun-owners…" +07/01/2018,Comedians,@SarahKSilverman,The acoustics were insane https://t.co/GsKPbHQhts +07/01/2018,Comedians,@SarahKSilverman,"I don’t think he’s talking about the members, the majority of whom want reasonable gun regulation. I think he’s tal… https://t.co/0lesnCXWeZ" +07/01/2018,Comedians,@SarahKSilverman,FUCK YOU TODD YOURE WHATS WRONG WITH HIS COUNTRY https://t.co/O6SNE5FoR2 +07/01/2018,Comedians,@SarahKSilverman,❤️ https://t.co/AmlF7LYGoZ +06/30/2018,Comedians,@SarahKSilverman,https://t.co/nqfwRuKCG3 +06/30/2018,Comedians,@SarahKSilverman,RT @lisang: Rabbi Waskow is the founder of the Jewish Renewal Movement. He was active in the civil rights movement and in the non violent p… +06/30/2018,Comedians,@SarahKSilverman,The politicians involved are mostly white men but YES- TRUTH - the same white women that voted Trump in office. As… https://t.co/lisOYDYzsv +06/30/2018,Comedians,@SarahKSilverman,♥️ https://t.co/4MK6pgt1ru +06/30/2018,Comedians,@SarahKSilverman,https://t.co/ecr059TMzX +06/30/2018,Comedians,@SarahKSilverman,The difference between humans and animals used to be that humans possess reason. Now it’s that animals have an ins… https://t.co/Er08oYpE7G +06/30/2018,Comedians,@SarahKSilverman,@chrissyteigen My first draft called him a pig’s twat but im tryin ta better myself❤️ +06/30/2018,Comedians,@SarahKSilverman,RT @dsam4a: The UK's National Health Service spared @robdelaney's family from financial stress while they endured the grief of losing their… +06/30/2018,Comedians,@SarahKSilverman,As a comic this is trite as fuck but IF MEN WERE THE ONES WHO GOT PREGNANT THIS WOULD BE A NON ISSUE https://t.co/JQ4VpEsYsX +06/30/2018,Comedians,@SarahKSilverman,"RT @billmaher: For Republicans, the Supreme Court is all about abortion - to which they remain staunchly opposed, right up to the moment th…" +06/30/2018,Comedians,@SarahKSilverman,"I hope when he cries you show him he’s loved, & I hope when he grows up he cares more about truth than winning. https://t.co/0DLX9hif3n" +06/29/2018,Comedians,@SarahKSilverman,@Weiss_Tea @jash Forwarded to head of jash he’ll def look into it and help in any way he can +06/29/2018,Comedians,@SarahKSilverman,The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships sta… https://t.co/DcfCgqPg4I +06/29/2018,Comedians,@SarahKSilverman,⬇️⬇️⬇️⬇️⬇️⬇️⬇️ https://t.co/FhZepiZ5Ig +06/29/2018,Comedians,@SarahKSilverman,3 days ago in South Carolina Trump said (once again) that journalists were the enemy of the people https://t.co/3dbpIvTbWV +06/28/2018,Comedians,@SarahKSilverman,RT @democracy4ppl: #Annapolis #NoNRAMoney https://t.co/6wQwcTWr9w +06/28/2018,Comedians,@SarahKSilverman,"RT @_rajdesai: Top 3 lazy nicknames: + +1. Big Guy +2. Boss +3. Dr. Eugene M. Devireau" +06/28/2018,Comedians,@SarahKSilverman,Our democracy is being murdered by frauds wearing american flag pins. HAVE A GREAT THURSDAY!! +06/28/2018,Comedians,@SarahKSilverman,"Show some emotion +Put expression in your eyes +Light up if you're feeling happy +But if it's bad then let those tears… https://t.co/z0jQQpMHN7" +06/28/2018,Comedians,@SarahKSilverman,"Trumps admin tells govt officials to lie. One wouldn’t, and quit. Intimidation followed. BE ON THE RIGHT SIDE OF HI… https://t.co/5Z7ZMdOiva" +06/28/2018,Comedians,@SarahKSilverman,"“The American people should have a voice in the selection of their next Supreme Court Justice."" @SenateMajLdr when… https://t.co/k80ghS9BD7" +06/27/2018,Comedians,@SarahKSilverman,"RT @misslaneym: This is why Ocasio-Cortez won. + + https://t.co/FbWyvAJHOq" +06/27/2018,Comedians,@SarahKSilverman,RT @iamcardib: LIVE YOUR BEST LIFE AND DRINK CRANBERRY JUICE !!! https://t.co/ReVW844aXb +06/27/2018,Comedians,@SarahKSilverman,Not giving a single fuck must be terrific. It puts the ick in terrific but I’m def jelly I’m middle aged +06/27/2018,Comedians,@SarahKSilverman,what changed? Attn: @VP https://t.co/Xw58RLnxdE +06/27/2018,Comedians,@SarahKSilverman,"RT @matthewstoller: I'm going to show you just who @Ocasio2018, Justice Democrats, and DSA beat tonight. it isn't @JoeCrowleyNY. It's the m…" +06/27/2018,Comedians,@SarahKSilverman,#FollowTheMoney https://t.co/WBz5nr4Vch +06/27/2018,Comedians,@SarahKSilverman,So @scotus ruled today that the religious right’s huge # of FAKE abortion clinics are allowed to continue purposely… https://t.co/D4ZetlACx7 +06/26/2018,Comedians,@SarahKSilverman,Yes https://t.co/jcB62scX5A +06/26/2018,Comedians,@SarahKSilverman,YO NASHVILLE!!! https://t.co/dkws88AXz8 +06/25/2018,Comedians,@SarahKSilverman,"RT @JuddApatow: I wonder if @FoxNews will air this information. Hey Lachlan, what will your children think of how you responded to this hu…" +06/25/2018,Comedians,@SarahKSilverman,RT @JamesMartinSJ: Here’s a list of organizations that are mobilizing to help immigrant children separated from their families https://t.co… +06/25/2018,Comedians,@SarahKSilverman,"RT @AndyRichter: “Decorum” is mostly a tool designed to keep the ppl w the power from losing power. You have the leverage, you fuck people…" +06/25/2018,Comedians,@SarahKSilverman,RT @Travon: The America I want to live in. https://t.co/6AKho5MLJH +06/25/2018,Comedians,@SarahKSilverman,RT @JuddApatow: This is what @realDonaldTrump doesn’t want you to read because if he doesn’t have the immigration issue to run on he loses… +06/25/2018,Comedians,@SarahKSilverman,"RT @ilyamerica: We’re back Sept 6, babies! https://t.co/6a2rOuxv26" +06/25/2018,Comedians,@SarahKSilverman,♥️ #ILoveYouAmerica ❤️https://t.co/kQMBT3jUtj +06/25/2018,Comedians,@SarahKSilverman,Why don’t they call fireworks what they really are: dog terrorists. Can y’all just google image fireworks? Maybe go… https://t.co/BROT3NKpmB +06/25/2018,Comedians,@SarahKSilverman,Ah haha https://t.co/OuncFRfBmP +06/25/2018,Comedians,@SarahKSilverman,First Sunday game with my sweet ass @MooreMaya #Jordan 11s #RookToQueen https://t.co/JweljHylEx +06/25/2018,Comedians,@SarahKSilverman,Yo r u kookoo bananas? He took a pic w the kids and declined a pic w a man complicit in consciously diminishing th… https://t.co/hBzrTkEviH +06/25/2018,Comedians,@SarahKSilverman,RT @Alyssa_Milano: Hey guess what everyone? @realDonaldTrump hired undocumented immigrants for $4 an hour for a demolition project. Here ar… +06/25/2018,Comedians,@SarahKSilverman,Look for the helpers⬇️⬇️⬇️ https://t.co/G4ikxfsgcK +06/25/2018,Comedians,@SarahKSilverman,Omg you guys would love orgasms +06/24/2018,Comedians,@SarahKSilverman,RT @JoeNBC: Trump’s Centralized State is even banning the Red Cross from visiting those infants and toddlers being incarcerated by Trump. W… +06/24/2018,Comedians,@SarahKSilverman,I’m so sorry but I have to say it is exhilarating to hear THE Christine Baranski say my name. #Legend… https://t.co/YoHghQwKNm +06/24/2018,Comedians,@SarahKSilverman,RT @guybranum: Things that white children do that are adorable become crimes when black and brown children do them. Crimes that create grou… +06/24/2018,Comedians,@SarahKSilverman,RT @ilyamerica: .@SarahKSilverman is here to talk about the hard stuff –– and to maybe make a difference along the way. #ILYAmerica https:/… +06/24/2018,Comedians,@SarahKSilverman,"RT @danrsena: @GovMikeHuckabee No, @GovMikeHuckabee. You got the wrong picture. These are the Hispanic staff at the @DCCC who are fighting…" +06/24/2018,Comedians,@SarahKSilverman,"Well gee u lie 2 us so much, and U defend a man who lies pathologically &commits crimes against humanity on the reg… https://t.co/aaNswsLYup" +06/23/2018,Comedians,@SarahKSilverman,RT @ilyamerica: .@SarahKSilverman knows how to handle tough conversations –– some might even call her work prophetic. #ILYAmerica https://t… +06/22/2018,Comedians,@SarahKSilverman,RT @WestWingReport: Safety problems with the water that U.S. military members and their families drink - and the White House and EPA chief… +06/22/2018,Comedians,@SarahKSilverman,RT @Variety: .@SarahKSilverman tells @joelmchale why she can't watch his @Netflix show with her dog https://t.co/LCNjzU5XXf https://t.co/lD… +06/22/2018,Comedians,@SarahKSilverman,RT @chelseaperetti: THIS DEPRAVED PARTY HATES CHILDREN https://t.co/UAdTUVw4tQ +06/22/2018,Comedians,@SarahKSilverman,"RT @TopherSpiro: Whoa conservative George Will: Vote against the GOP and flip both houses of Congress. ""Ryan traded his political soul for.…" +06/22/2018,Comedians,@SarahKSilverman,RT @DEADLINE: .@ilyamerica's @SarahKSilverman on breaking out of the echo chamber #DeadlineContenders https://t.co/e4S6ZtO7o0 +06/22/2018,Comedians,@SarahKSilverman,"Oh, Lil Marco, it’s very common to defend your abuser. (Not as common to defend the man guilty of crimes against hu… https://t.co/rCroC3V6e6" +06/22/2018,Comedians,@SarahKSilverman,This pastor really “Gets it”https://t.co/ap5Mi4dLrD https://t.co/nrELtG0QNN +06/22/2018,Comedians,@SarahKSilverman,"RT @vulture: .@SarahKSilverman on bridging seemingly impossible political divides, and how it's changed her view of (maybe) running for off…" +06/22/2018,Comedians,@SarahKSilverman,@KayKayCannon Kay! +06/22/2018,Comedians,@SarahKSilverman,"RT @hemantmehta: The video was removed, but a mirror is here: https://t.co/DgaZc9Nhao https://t.co/T0DHZiW5ym" +06/22/2018,Comedians,@SarahKSilverman,Trump sucks (Big Oil’s dick) (and tickles their balls) https://t.co/RbFbu9qz9v +06/22/2018,Comedians,@SarahKSilverman,"RT @MykeCole: I was activated and deployed to the gulf for Deepwater Horizon. We killed ourselves out there, up to our armpits in toxic che…" +06/22/2018,Comedians,@SarahKSilverman,"RT @birbigs: Today was my birthday. No gifts please. But if you like me and you're into reuniting families, maybe kick 5 or 10 bucks to the…" +06/22/2018,Comedians,@SarahKSilverman,Oh my. https://t.co/ap5Mi4dLrD +06/22/2018,Comedians,@SarahKSilverman,FYC https://t.co/TIr5xvzTfw +06/22/2018,Comedians,@SarahKSilverman,RT @ilyamerica: Dinner conversation just got a lot more interesting now that @SarahKSilverman is at the table. #ILYAmerica. https://t.co/0f… +06/22/2018,Comedians,@SarahKSilverman,RT @LibyaLiberty: We’re...we’re at number 8 aren’t we. https://t.co/fHTMcuuAIM +06/22/2018,Comedians,@SarahKSilverman,"RT @chrislhayes: First time illegal entry into the United States is a misdemeanor. + +Lying on or omitting materially relevant information fr…" +06/22/2018,Comedians,@SarahKSilverman,"RT @votevets: Today the House GOP voted to rip food away from the 1.5 million veteran and 23,000 active duty households who rely on SNAP be…" +06/21/2018,Comedians,@SarahKSilverman,What’s for dinner? Me https://t.co/vYnLUImwo4 #ILYA @HULU +06/20/2018,Comedians,@SarahKSilverman,"RT @RepJoeKennedy: You might not know this about me, but I'm a white guy. And as a white guy, I would encourage @realDonaldTrump & his fell…" +06/20/2018,Comedians,@SarahKSilverman,RT @ahamedweinberg: The season finale of Please Understand Me is out today starring @Punkiejohnson and my damn self #bitchonchristmas https… +06/19/2018,Comedians,@SarahKSilverman,RT @GavinNewsom: Trump tried to use DREAMers as bargaining chips. That didn't work. Now he's threatening a shutdown and using children — to… +06/19/2018,Comedians,@SarahKSilverman,RT @GeorgeTakei: For your consideration. I would appreciate a read—and a share. https://t.co/llCUna6kXB +06/19/2018,Comedians,@SarahKSilverman,RT @SteveLevitan: Let me officially join @SethMacFarlane in saying I’m disgusted to work at a company that has anything whatsoever to do wi… +06/19/2018,Comedians,@SarahKSilverman,"RT @GavinNewsom: This makes me sick to my stomach. Children separated from their parents, crying out for help. Border Patrol joking that th…" +06/19/2018,Comedians,@SarahKSilverman,"RT @thejoshpatten: Please enjoy this clip of Tucker Carlson, who went to a K-12 boarding school that costs $59,750/year, and a college that…" +06/19/2018,Comedians,@SarahKSilverman,RT @OshaDavidson: Here's another way to funnel outraged into action: Donate to @HumaneBordersAZ I just did. #KeepFamiliesTogether https://t… +06/18/2018,Comedians,@SarahKSilverman,"RT @jonfavs: Family separation isn’t just a Trump policy, it’s a Republican policy. They control both houses of Congress and haven’t lifted…" +06/18/2018,Comedians,@SarahKSilverman,"RT @SarahThyre: The world is watching us, and they are appalled. https://t.co/I4so7lYSha" +06/18/2018,Comedians,@SarahKSilverman,RT @ikebarinholtz: This motherfucker pardoned Dinesh D’Souza in five minutes but when it comes to stopping children from being caged his li… +06/18/2018,Comedians,@SarahKSilverman,RT @jzipple: I don't think drawing a moral equivalence between criminal activity & fleeing violence/poverty to save your family is the best… +06/18/2018,Comedians,@SarahKSilverman,"RT @JamesMartinSJ: Like many, I've resisted using this word but it's time: the deliberate and unnecessary separation of innocent children f…" +06/18/2018,Comedians,@SarahKSilverman,RT @jacobsoboroff: JUST IN: Video from inside our tour of the Border Patrol's processing station in McAllen -- the epicenter of family sepa… +06/18/2018,Comedians,@SarahKSilverman,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Comedians,@SarahKSilverman,"RT @hwinkler4real: ON this FATHER'S DAY i just cant stop thinking about the children we have locked up , who cant get a hug , who wonder w…" +06/18/2018,Comedians,@SarahKSilverman,CC: @MELANIATRUMP @FLOTUS #BeBest https://t.co/46ts4MZSAa +06/17/2018,Comedians,@SarahKSilverman,RT @KaivanShroff: FLASHBACK: “I don’t want to rip families apart. I don’t want to send parents away from children.” — @HillaryClinton stand… +06/17/2018,Comedians,@SarahKSilverman,Good lord https://t.co/z8kg8W57md +06/17/2018,Comedians,@SarahKSilverman,"RT @MattBors: Employee quits job at for-profit child prison camp after being told to order three siblings not to hug each other. + +“[they w…" +06/17/2018,Comedians,@SarahKSilverman,Yo! @BetoORourke currently leading a march to the detention center in Tornillo. Follow live on Beto’s FB page… https://t.co/rfrKtl36oZ +06/17/2018,Comedians,@SarahKSilverman,"RT @Pontifex: Children must be able to play, study and grow in a peaceful environment. Woe to anyone who stifles their joyful impulse to ho…" +06/17/2018,Comedians,@SarahKSilverman,Take a break from the madness and watch a turtle who thinks he’s a dog https://t.co/rh1tZRA5CD +06/17/2018,Comedians,@SarahKSilverman,RT @SenJeffMerkley: Children are being ripped away from their parents at the U.S. border. WATCH this video to learn how you can fight back… +06/17/2018,Comedians,@SarahKSilverman,Proof https://t.co/5xvrOJvv7z +06/17/2018,Comedians,@SarahKSilverman,"RT @ProudResister: Dear @GOP, + +Putting children in prison camps. +WE’LL REMEMBER IN NOVEMBER. + +Targeting preexisting conditions. +WE’LL REMEM…" +06/17/2018,Comedians,@SarahKSilverman,RT @LupeValdez: I’m proud to be joining @BetoORourke @vgescobar @latinovictoryus and other Texans to let the world know that we are against… +06/17/2018,Comedians,@SarahKSilverman,"RT @PolitiFact: 11 wrong or misleading statements from @realDonaldTrump's Friday morning with reporters. +https://t.co/fNhsFJDfaZ https://t.…" +06/17/2018,Comedians,@SarahKSilverman,RT @mradamscott: The children being held in cages at our border have fathers too. Fathers who don’t know where their children are. You are… +06/16/2018,Comedians,@SarahKSilverman,RT @GeorgeTakei: The lies are never ending. via @actdottv https://t.co/z5wzeFp4xF +06/16/2018,Comedians,@SarahKSilverman,"RT @JamesMartinSJ: Federal regulations will not protect anyone from the Last Judgment. +""I was a stranger and you did not welcome me."" (Mt.…" +06/16/2018,Comedians,@SarahKSilverman,"RT @DevonRomanoff: It hurts knowing this kid since he was in diapers & knowing he’s spending his young life, in prison, while this other fu…" +06/16/2018,Comedians,@SarahKSilverman,RT @pattonoswalt: Here's a link to help fund DACA recipients renewal fees. I've kicked in 1K. To my fellow godless Hollyweird colleagues --… +06/16/2018,Comedians,@SarahKSilverman,RT @ShaunKing: Tomorrow’s cover for the @NYDailyNews. https://t.co/vCRWwALxb3 +06/15/2018,Comedians,@SarahKSilverman,RT @BaltimoreBobby3: #EarlyVoting for @BenJealous! Maryland has an opportunity to elect a real progressive as our governor. Let’s do it! ht… +06/15/2018,Comedians,@SarahKSilverman,"RT @SRuhle: The average age of a Korean War vet is 87 +@realDonaldTrump has taken a tangible positive outcome from the #SingaporeSummit & tu…" +06/15/2018,Comedians,@SarahKSilverman,RT @fakedansavage: This fucking thread. https://t.co/i1b0XVrOTa +06/15/2018,Comedians,@SarahKSilverman,"RT @ASlavitt: Yes, you are reading this right. The gun lobby is trying to remove pre-existing condition protections. + +People need to know.…" +06/15/2018,Comedians,@SarahKSilverman,RT @JamesMartinSJ: Disgraceful. Do not use St. Paul to justify unjust laws and acts of cruelty. St. Paul was an apostle not of laws (we are… +06/15/2018,Comedians,@SarahKSilverman,Im gonna hold these children hostage until Dems agree to all the shitty things I want = this is on the Dems. You’r… https://t.co/867F4n74aF +06/15/2018,Comedians,@SarahKSilverman,It’s nuts- she’s blaming Dems 4not stopping Trump from making this pure-evil policy. Man -they repeatedly point2 D… https://t.co/MvpF0vC2du +06/15/2018,Comedians,@SarahKSilverman,Had fun on @latelateshow last night but didn’t wanna touch the audience’s cummy jizzy hands https://t.co/kQhtZmFSk5 +06/15/2018,Comedians,@SarahKSilverman,RT @rweb333: @SpeakerRyan @SteveScalise https://t.co/SyI94mc4jp +06/15/2018,Comedians,@SarahKSilverman,"Fucking bot. +(sept 6th- thanks!!) https://t.co/tGJMHJwBsK" +06/15/2018,Comedians,@SarahKSilverman,@Maddyjaykurtz We’re hard at work and start back sept 6 booboo +06/15/2018,Comedians,@SarahKSilverman,@Sethrogen Holy fucking shit I’m jellyyyy +06/15/2018,Comedians,@SarahKSilverman,RT @birbigs: These people in charge are real life monsters. https://t.co/A2ajxuICS2 +06/15/2018,Comedians,@SarahKSilverman,Wow https://t.co/hGi3TYGpVR +06/15/2018,Comedians,@SarahKSilverman,This is us https://t.co/bYUEx3x3zQ +06/15/2018,Comedians,@SarahKSilverman,Rad https://t.co/QeQctRY37b +06/15/2018,Comedians,@SarahKSilverman,"RT @SimonWDC: Grandfather, been in the US for 50 years, since he was 13. He’s a legal resident. Went to high school here. Taken away by…" +06/15/2018,Comedians,@SarahKSilverman,Ok someone made this extremely random montage of me and it made me laugh https://t.co/suGkWDdBXc +06/14/2018,Comedians,@SarahKSilverman,RT @RealRonHoward: Honest question to #MAGA minders. When was America at its greatest? Can you tell me an era that reflects the “Again” tha… +06/14/2018,Comedians,@SarahKSilverman,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Comedians,@SarahKSilverman,RT @latelateshow: This is your warning that the #LateLateShow with @SarahKSilverman and @mrbobodenkirk starts right now. https://t.co/Fv29k… +06/14/2018,Comedians,@SarahKSilverman,@WilliamMatt22 Thanks for making it. You did this. Thank you +06/13/2018,Comedians,@SarahKSilverman,RT @ahamedweinberg: My favorite episode of Please Understand Me is here! I made it with @stevenfeinartz @jetzotime and @SarahKSilverman and… +06/13/2018,Comedians,@SarahKSilverman,"RT @TelevisionAcad: Now LIVE: Our Summer Auction, benefiting the @TelevisionAcad Foundation's education programs. +➤Shop & bid by June 27th!…" +06/13/2018,Comedians,@SarahKSilverman,RT @SarahKSilverman: Yo - Watch this and Love America with me! Catch up ‘cause we’re back Sept 6 babieees https://t.co/tqF3Afn2pG +06/13/2018,Comedians,@SarahKSilverman,ATTN: @JeffBezos @tim_cook @amazon @Apple https://t.co/Ttv1mDq9Ut +06/13/2018,Comedians,@SarahKSilverman,RT @TheDailyShow: Sean Hannity EVISCERATES Sean Hannity https://t.co/EOxp0FSrAR +06/12/2018,Comedians,@SarahKSilverman,Yo - Watch this and Love America with me! Catch up ‘cause we’re back Sept 6 babieees https://t.co/tqF3Afn2pG +06/12/2018,Comedians,@SarahKSilverman,"RT @sportingnews: This high school pitcher held off celebrating with his teammates so he could console his childhood friend instead. + +(📹:…" +06/12/2018,Comedians,@SarahKSilverman,@SarahThyre Oh ya cbd cream! +06/11/2018,Comedians,@SarahKSilverman,He definitely has had 3 miracles. 1) could be when he got $20M government funding for public television /children’s… https://t.co/5ogMNxn5vv +06/11/2018,Comedians,@SarahKSilverman,For a really long time the comedy women did in movies was tripping/falling I’m so jazzed that’s over +06/11/2018,Comedians,@SarahKSilverman,i smell like tiger balm a lot +06/11/2018,Comedians,@SarahKSilverman,I love you so much George https://t.co/ossKrPiouo +06/11/2018,Comedians,@SarahKSilverman,https://t.co/HKvTAkQD4n +06/11/2018,Comedians,@SarahKSilverman,"I love Bruce Springsteen. He makes us all come from Freehold, NJ" +06/11/2018,Comedians,@SarahKSilverman,@dana_vesley @LPJLeague Omg I love this +06/11/2018,Comedians,@SarahKSilverman,"And just so you don’t think birthday girl @LauraJSilverman is just a comedy level singer, here she is singing her f… https://t.co/dollgCnaiK" +06/11/2018,Comedians,@SarahKSilverman,Another @LauraJSilverman birthday song from TSSP — “The Baby Penis in Your Mind” enjoy https://t.co/Q5qEv2ZeE7 +06/11/2018,Comedians,@SarahKSilverman,In honor of bday girl sissy @LauraJSilverman here is a song we sang on the Sarah silverman program in a scene where… https://t.co/46zj7vCqNT +06/11/2018,Comedians,@SarahKSilverman,It scrambles my brain that people clutch their mfing pearls bc a comedian used a crude word while speaking truth 2… https://t.co/d8096IW7cW +06/11/2018,Comedians,@SarahKSilverman,OMG @joshgroban & @SaraBareilles are KILLING it CHILLS #TonyAwards +06/10/2018,Comedians,@SarahKSilverman,"RT @elongreen: I remember when top reporters were chastising us for reading too deeply into Trump's remarks about immigrants and ""animals""…" +06/10/2018,Comedians,@SarahKSilverman,RT @sza: I’m not brave everyday but when i am its LIFE CHANGING ! PLEASE DONT WAIT TO GET OUT OF UR HEADS !! SAY WHAT U WANT NOW !! BE WHO… +06/10/2018,Comedians,@SarahKSilverman,RT @GhostPanther: Our modern media just isn’t built to handle a story as massive as global warming. Respectable journalists are reluctant t… +06/10/2018,Comedians,@SarahKSilverman,"I stand with Puerto Rico. Join me in making a donation to support Puerto Rico, @Google is matching up to $2M!… https://t.co/AjEX4T7gcE" +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @AmarilloKenja @phoenixkhost It’s a reaction to what we are seeing. How do you see these pictures and no… https://t.co/j7nnchXZn8 +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @shoeluver67 That’s what you get from watching this monologue or is that what you get from reading the h… https://t.co/nmTUfBeYge +06/10/2018,Comedians,@SarahKSilverman,@phoenixkhost @LeoRules1 Ha wrong. Your vision of my life is wrong. 1 br apartment baby. +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @AmarilloKenja @phoenixkhost No I think we’ve all been acknowledging that. It’s a heinous stain that Tru… https://t.co/o7W4Sq6NiL +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @daniepedia Touché my friend. That said- even if the adults we are talking about were criminals (they ar… https://t.co/u3d7Ob7sl4 +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @daniepedia Why are you hanging onto this? Criminals are criminals. Who is lying about seeking asylum? T… https://t.co/H41AyES44U +06/10/2018,Comedians,@SarahKSilverman,This is pure evil. This makes me want to fight https://t.co/iaDsmZHKlA +06/10/2018,Comedians,@SarahKSilverman,"This is what divides us. People learn about who the left is by watching foxnews or reading breitbart, twitchy etc.… https://t.co/aJjkGUNDgq" +06/10/2018,Comedians,@SarahKSilverman,"RT @ChrisMurphyCT: For years Republicans said they would protect people with pre-existing conditions. They lied. + +Instead, the Trump admin…" +06/10/2018,Comedians,@SarahKSilverman,"@CurrentGiant @Butterwomp @LeoRules1 They are people seeking asylum. +You can say that’s not true or somehow decide… https://t.co/1xSGd6YH41" +06/09/2018,Comedians,@SarahKSilverman,@wyattcenac Aww! I agree that would be incredible +06/09/2018,Comedians,@SarahKSilverman,@LeoRules1 That’s how you see refugees? +06/09/2018,Comedians,@SarahKSilverman,RT @Alyssa_Milano: We need the #ERANow. https://t.co/oFlJAGam6z +06/09/2018,Comedians,@SarahKSilverman,This show is great ♥️Go Wyatt https://t.co/fBK5fz2aCV +06/09/2018,Comedians,@SarahKSilverman,Dad Performs Ballet With Stage-Fight Stricken Daughter ❤️❤️❤️https://t.co/WbxYbsYTns via @YouTube +06/09/2018,Comedians,@SarahKSilverman,"RT @THR: “If I’m an advocate for anything, it’s to move. As far as you can, as much as you can. Across the ocean, or simply across the rive…" +06/09/2018,Comedians,@SarahKSilverman,RT @LauraJSilverman: Sickle Cell Anemia is on this list. I have nothing else to say. https://t.co/3n93FKdhNw +06/09/2018,Comedians,@SarahKSilverman,"He’s a Republican, he‘s a devout Christian, and he’s my hero + +Every single person needs to go see WON’T YOU BE MY N… https://t.co/yaUU9QLnpV" +06/08/2018,Comedians,@SarahKSilverman,"RT @Lin_Manuel: Gmorning. +YOU ARE SO LOVED AND WE LIKE HAVING YOU AROUND. +*ties one end of this sentence to your heart, the other end to ev…" +06/08/2018,Comedians,@SarahKSilverman,I love the Ramadan Diary webisodes check this out babeees https://t.co/CRpqiNEpti +06/08/2018,Comedians,@SarahKSilverman,"RT @BenJealous: Dave’s comedy and my politics have the same origin: + +Growing up in an era when more black boys & young men were headed to…" +06/08/2018,Comedians,@SarahKSilverman,RT @ablington: Anthony Bourdain had one of the only shows on tv that tried with all its might to teach Americans not to be scared of other… +06/08/2018,Comedians,@SarahKSilverman,"RT @ShaunKing: It's genuinely baffling to see people who love Muhammad Ali but hate Colin Kaepernick. + +Or how people hate Black Lives Matt…" +06/08/2018,Comedians,@SarahKSilverman,@tallfreak @LauraJSilverman Hahaha he’s a Sara-sseur! +06/08/2018,Comedians,@SarahKSilverman,"RT @ACLU: A 5 year old boy named José was sobbing on the floor, asking for his mother and father. + +This isn’t the America we want to live i…" +06/08/2018,Comedians,@SarahKSilverman,Dear members of ICE: “just following orders” is what nazis said during the Nuremberg trials. It is YOU who are doi… https://t.co/oGdyCjFWF3 +06/08/2018,Comedians,@SarahKSilverman,Omg this is 100% right! HE’S SO SHOWBIZ https://t.co/32ttqnzESR +06/08/2018,Comedians,@SarahKSilverman,Who is the actor in this? He’s playing it way over the top https://t.co/dyV0vi5FlZ +06/08/2018,Comedians,@SarahKSilverman,"I looked it up and, fun fact: the director’s name was John Whitesell https://t.co/hqSzn9SuVW" +06/07/2018,Comedians,@SarahKSilverman,RT @mansoortshams: Muslims/Veterans in high gear! US Army Vet @mattczeller spends a night with #MuslimMarine as part of the “29/29 #Ramadan… +06/07/2018,Comedians,@SarahKSilverman,"RT @BrendanNyhan: I have to log off Twitter. Seeing that this is a song the kids sing (to the tune of ""Twinkle Twinkle Little Star"") is too…" +06/07/2018,Comedians,@SarahKSilverman,"RT @SenJohnMcCain: America is the land of the immigrant’s dream. For centuries, people have come to this country for the opportunities free…" +06/07/2018,Comedians,@SarahKSilverman,So there are people that read this and think “yes. This feels right.” https://t.co/KkzA79kMbE +06/07/2018,Comedians,@SarahKSilverman,"RT @IfNotNowOrg: In 1939 more than 900 Jews left Germany on the MS St. Louis, seeking refuge from the Nazis. The US and Canada turned every…" +06/07/2018,Comedians,@SarahKSilverman,Texas is lucky https://t.co/qjeZaoJmKo +06/07/2018,Comedians,@SarahKSilverman,RT @FullFrontalSamB: Sam addresses the controversy from last week's show. https://t.co/RtqBOhOCVf +06/30/2018,Comedians,@TheEllenShow,Happy #SaturKay! @TheKalenAllen https://t.co/r8QgEJnRDf +06/29/2018,Comedians,@TheEllenShow,Remember to make some time for yourself this summer. https://t.co/AB7tgGqdvB +06/29/2018,Comedians,@TheEllenShow,Macey’s RV went to Las Vegas! Grandma went ziplining! Check out Episode 2 right here. #ThanksSponsor https://t.co/tV1ZLUNqBu +06/29/2018,Comedians,@TheEllenShow,".@AliWong is hilarious. Please, no one ever make me have a baby. https://t.co/B4Gom4PeA0" +06/29/2018,Comedians,@TheEllenShow,"West Coast, you’re gonna see this and so much more on tonight’s episode of #LittleBigShots! https://t.co/oLCQON5Oxr" +06/28/2018,Comedians,@TheEllenShow,.@TheMandyMoore is really bucking good at this game. https://t.co/VFwRG8gZVc +06/28/2018,Comedians,@TheEllenShow,Marrying Portia was the best thing I ever got to do. I hope everyone gets to experience that joy. (You can’t all ma… https://t.co/GyJIfhgu91 +06/28/2018,Comedians,@TheEllenShow,"Happy birthday, @KelliePickler! Nobody pickles like you." +06/28/2018,Comedians,@TheEllenShow,There’s nothing better on a hot summer day than some @TheKalenAllen and Snickers Ice Cream. #ThanksSponsor https://t.co/idptN645wk +06/27/2018,Comedians,@TheEllenShow,"Someone watching Go RVing with Macey on @ellentube is gonna win $25,000! Is it you? #ThanksSponsor https://t.co/Qqu1ihTnR4" +06/27/2018,Comedians,@TheEllenShow,"Sometimes, being true to yourself can feel like the biggest risk, but there’s no greater reward. @ellentube #Pride https://t.co/8QonEn1Ddu" +06/27/2018,Comedians,@TheEllenShow,Clear the beaches. https://t.co/mBraCW7AS9 +06/27/2018,Comedians,@TheEllenShow,"Someone watching my show this week is gonna win $10,000 in my Road to Riches app! If you watched, download it here… https://t.co/GwfuiI4BpU" +06/27/2018,Comedians,@TheEllenShow,#LittleBigShots is on tomorrow night! Get ready for some major talent from some minor performers. https://t.co/Fo8svt3h0m +06/27/2018,Comedians,@TheEllenShow,"Happy birthday, @khloekardashian! This tweet is good for one hour of babysitting from Auntie Ellen. (Offer excludes… https://t.co/TLiPtgo3zB" +06/26/2018,Comedians,@TheEllenShow,"Get a head start on your 4th of July gear in The Ellen Shop! +🇺🇸 Promo code: ellenjuly20 https://t.co/PeXDMNEw4d https://t.co/9VI6IMffe1" +06/26/2018,Comedians,@TheEllenShow,Who do we think will take home the final rose? Who will drink too much rosé? Find out on this week’s Bachelorette R… https://t.co/UFNusw8pIt +06/26/2018,Comedians,@TheEllenShow,Throwback to the first time Elton John was on my show. @eltonofficial #Pride2018 https://t.co/s7ElrEumlj +06/26/2018,Comedians,@TheEllenShow,"This is my producer Alissa’s dog, Fanny, named after Fanny Brice. This felt appropriate for #Pride Week. https://t.co/AwD3y3yZXe" +06/26/2018,Comedians,@TheEllenShow,I’ll never forget the moment when @BarackObama became the first sitting president to support marriage equality. Hap… https://t.co/ohVfXtPcu7 +06/26/2018,Comedians,@TheEllenShow,.@RuPaul brought the extravaganza eleganza to my show. Celebrating #Pride on @ellentube this week! https://t.co/CjL6oa52xf +06/26/2018,Comedians,@TheEllenShow,"Happy birthday, @SeanHayes and @ArianaGrande! You have so much in common. You’re gay icons, you can hit a high E ov… https://t.co/VQ8Ot4rQGT" +06/25/2018,Comedians,@TheEllenShow,"This week, you can pay forward the adoption fee for a dog or a cat in need. Seems like a great thing to do for $25.… https://t.co/F6pDIC2hyu" +06/25/2018,Comedians,@TheEllenShow,"Happy birthday, @RickyGervais! I hope you have a ball. https://t.co/8KSfvVp51O" +06/25/2018,Comedians,@TheEllenShow,"It’s so hot! How bad do you wish you could play ""Make It Rain"" right now? https://t.co/jl0ymjiDLG" +06/25/2018,Comedians,@TheEllenShow,"Claire and @DaveCrosby are about to take you, wonder by wonder. https://t.co/xa0MxsnJNX" +06/25/2018,Comedians,@TheEllenShow,This week on @ellentube is #Pride Week! We’ve come so far. We’ve helped so many. We’re ready to fight for what come… https://t.co/Kydt3NWor4 +06/24/2018,Comedians,@TheEllenShow,.@HeadsUp has a new soccer deck! Something tells me you might wanna play it today. #WorldCup https://t.co/A71CUsU09j https://t.co/27ipi4lVX9 +06/23/2018,Comedians,@TheEllenShow,Happy #NationalPinkDay! https://t.co/CneBM8RUmK +06/23/2018,Comedians,@TheEllenShow,"It wouldn’t be #SaturKay without @TheKalenAllen! + +Watch the full clip here: https://t.co/yezQ7MhisU https://t.co/or9ekXgBPI" +06/22/2018,Comedians,@TheEllenShow,Summer vibe. https://t.co/7x4r3BNzLk +06/22/2018,Comedians,@TheEllenShow,Macey is back on the road! Check out all the fun she had in San Francisco in the first episode of Season 2 of Macey… https://t.co/a8iuUZ8Kx8 +06/22/2018,Comedians,@TheEllenShow,Amy came here all the way from China to dance on my show. It was definitely worth the trip. https://t.co/qp3i468S6a +06/22/2018,Comedians,@TheEllenShow,"Happy birthday, Meryl Streep! I hope you have a wonderful day and don’t have to give birth while reporting on the t… https://t.co/WBwVPVelVi" +06/22/2018,Comedians,@TheEllenShow,Chacha is the world’s tiniest fitness guru. She’s a Fitbit. #LittleBigShots https://t.co/eedBLQmHdE +06/21/2018,Comedians,@TheEllenShow,Pool security. https://t.co/rzxD3SMuRj +06/21/2018,Comedians,@TheEllenShow,This @KobeBryant surprise was a slam dunk. @Arike_O https://t.co/258ruascEj +06/21/2018,Comedians,@TheEllenShow,"The first time Beyoncé was on my show, she was a single lady. #TBT https://t.co/XGd7fM9hbN" +06/21/2018,Comedians,@TheEllenShow,.@StephenCurry30 and @AyeshaCurry really know how to spice things up. https://t.co/VNXaAFs7cS +06/21/2018,Comedians,@TheEllenShow,"Happy birthday, @prattprattpratt. I’ll see you tomorrow. #JurassicWorld" +06/21/2018,Comedians,@TheEllenShow,"Happy #NationalSelfieDay, Bradley Cooper. https://t.co/BoUFC6ZHuD" +06/20/2018,Comedians,@TheEllenShow,These singers are ridiculously good. #LittleBigShots is on tomorrow night! https://t.co/1EFw39t8td +06/20/2018,Comedians,@TheEllenShow,She really is brielle-iant. https://t.co/3hGgZH02Pa +06/20/2018,Comedians,@TheEllenShow,"Happy birthday, Nicole Kidman! Did you know your husband @KeithUrban has his own online dictionary? I’m learning so much from it." +06/20/2018,Comedians,@TheEllenShow,Dwayne Johnson and Kevin Hart make me happy. @TheRock @KevinHart4real https://t.co/NRnl14Qzv3 +06/20/2018,Comedians,@TheEllenShow,It’s #WorldRefugeeDay. Do an act of kindness for a refugee today. https://t.co/0JYZBYmibu +06/20/2018,Comedians,@TheEllenShow,"Bruce @Springsteen, I love you. https://t.co/8Ta0aSGumU" +06/20/2018,Comedians,@TheEllenShow,"Rachel @Maddow is a brilliant journalist, but this news was too much for her. It’s too much for me too. https://t.co/EoZ4y5bIit" +06/19/2018,Comedians,@TheEllenShow,Sounds like @RyanGosling and Harrison Ford got along great. https://t.co/CRM3TefJLU +06/19/2018,Comedians,@TheEllenShow,Who watched #TheBachelorette this week? My recap is back! https://t.co/Ygsw42ZD9f +06/19/2018,Comedians,@TheEllenShow,"This photo haunts me, but I thank @JBMoorephoto for posting it, because it captures the heartbreaking truth of what… https://t.co/raGp3BWGaN" +06/19/2018,Comedians,@TheEllenShow,Now that’s some good material. https://t.co/aKlMgvkC8S +06/19/2018,Comedians,@TheEllenShow,Are you watching my show this week? Of course you are. Can you win $10K in my Road to Riches game? Of course you ca… https://t.co/5cC6ns7Lze +06/19/2018,Comedians,@TheEllenShow,I hope @KanyeWest is happy about this. @KimKardashian https://t.co/DOZVapr6KX +06/19/2018,Comedians,@TheEllenShow,"Happy birthday, @Macklemore! I’m popping tags in your honor. Whatever that means." +06/18/2018,Comedians,@TheEllenShow,#Summer https://t.co/JRL209OdS7 +06/18/2018,Comedians,@TheEllenShow,Maura’s Navy boyfriend wrote me a letter since he knew she was going to be in my audience. He wished he could be he… https://t.co/bQ5fUwInIN +06/18/2018,Comedians,@TheEllenShow,This one’s for all the dog lovers. https://t.co/uBsMwqltfW +06/18/2018,Comedians,@TheEllenShow,Ayrton and Alex have big dreams of going to college. Watching them come true was one of my favorite things this sea… https://t.co/NAhC7X0uhb +06/18/2018,Comedians,@TheEllenShow,"I don’t care what your politics are, we can’t be a country that separates children from their parents. Do something… https://t.co/4a52Tnzi8q" +06/18/2018,Comedians,@TheEllenShow,"Happy birthday, @BlakeShelton! I wanted you to have the biggest, most wonderful birthday gift, but you already have @GwenStefani." +06/17/2018,Comedians,@TheEllenShow,"Happy birthday, @kendricklamar. You won a Grammy and a Pulitzer this year. Good luck staying humble with all that." +06/16/2018,Comedians,@TheEllenShow,".@theKalenAllen has a whole new roundup of the internet’s best videos. #SaturKay + +Watch the full clip on @ellentube… https://t.co/yc4IwlgJR1" +06/15/2018,Comedians,@TheEllenShow,Who’s ready for the weekend? https://t.co/UoeYa0PVjo +06/15/2018,Comedians,@TheEllenShow,Happy birthday to my friend @CourteneyCox! I adore you. +06/15/2018,Comedians,@TheEllenShow,I thought this would make you extra joyful today. @TiffanyHaddish @Oprah https://t.co/djKfFJssbA https://t.co/GOkRFdG9UV +06/15/2018,Comedians,@TheEllenShow,#RelationshipGoals @ChrissyTeigen @JohnLegend https://t.co/0xAysQcYMJ +06/15/2018,Comedians,@TheEllenShow,"Maesi is an incredible young dancer. I’m a big fan. West Coast, it’s almost your turn! #LittleBigShots https://t.co/rLv7QhpT4w" +06/14/2018,Comedians,@TheEllenShow,Tonight’s episode of #LittleBigShots has some amazing little ninja warriors. Don’t miss it! +06/14/2018,Comedians,@TheEllenShow,@USFigureSkating @HeadsUp @KaitlinHawayek @jeanlucbaker #NewOlympicEvent +06/14/2018,Comedians,@TheEllenShow,It’s not every day a billionaire stops by your stage. @BillGates https://t.co/WtnNGwZZSG +06/14/2018,Comedians,@TheEllenShow,This is one of my favorite performances of the season. #Havana Ooh na na @Camila_Cabello https://t.co/aRcUxbwrcy +06/14/2018,Comedians,@TheEllenShow,"I’m doing my first standup shows in 15 years. I’m coming to Seattle, San Francisco and San Diego. Come see me.… https://t.co/69iyHZZgPo" +06/14/2018,Comedians,@TheEllenShow,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/13/2018,Comedians,@TheEllenShow,This little girl is a ninja. Seriously. Don’t miss #LittleBigShots tomorrow night! https://t.co/baAHDogUdX +06/13/2018,Comedians,@TheEllenShow,Threepee https://t.co/P9brJ0D8ks +06/13/2018,Comedians,@TheEllenShow,"I’m nominated for a #TeenChoice Award! You can vote for me right here, or Snapchat a GIF of a meme or something. I’… https://t.co/j987hL0Hou" +06/13/2018,Comedians,@TheEllenShow,.@TheKalenAllen is what the internet was created for. https://t.co/oQ16WIVdMZ +06/13/2018,Comedians,@TheEllenShow,Guess who’s taking over my show today? @thekalenallen https://t.co/msfoYjid5j +06/12/2018,Comedians,@TheEllenShow,There were two very special guests in my Bachelorette Recap this week. Find out what @AshleyIaco and @Haibon_Jared… https://t.co/0UYvemvNUD +06/12/2018,Comedians,@TheEllenShow,It doesn’t get much more adorable than father-daughter singing duo Claire and @DaveCrosby. https://t.co/wQVqrPawDy +06/12/2018,Comedians,@TheEllenShow,New episodes of #LittleBigShots start Thursday! Is your little big shot ready? https://t.co/ytYIooazJb +06/12/2018,Comedians,@TheEllenShow,Nate Seltzer has to be one of my favorite guests of the season. Watch this and you’ll see why. https://t.co/yTAa5LmNTu +06/12/2018,Comedians,@TheEllenShow,Much better. #Oceans8 Week https://t.co/DQbeJVNIhl +06/11/2018,Comedians,@TheEllenShow,Send me your cute summer photos! Summer great. Summer better than great. #ellen15 https://t.co/67LY5B2mGU +06/11/2018,Comedians,@TheEllenShow,".@HowieMandel told me about Meghan Markle’s days on ""Deal or No Deal."" + +Watch the full clip on @ellentube:… https://t.co/GiPzigOjGz" +06/11/2018,Comedians,@TheEllenShow,"I was unprepared for how funny @Shaq with tiny hands would be. + +Watch the full clip on @ellentube:… https://t.co/4mb05m9E8n" +06/11/2018,Comedians,@TheEllenShow,It’s #Oceans8 Week on @ellentube! I love these women. https://t.co/8L7xqnfZ3I +06/11/2018,Comedians,@TheEllenShow,The young people will win. #MarchForOurLives #RoadToChange https://t.co/hBI32F5Rqo +06/09/2018,Comedians,@TheEllenShow,"Nobody recaps the week on the internet like @TheKalenAllen. #SaturKay + +Watch the full clip on @ellentube:… https://t.co/783774bL7u" +06/08/2018,Comedians,@TheEllenShow,"#Oceans8 opens tonight, and next week on @ellentube is ""Ocean’s 8"" Week! You don’t wanna miss either.… https://t.co/ZFQeXF6JYB" +06/08/2018,Comedians,@TheEllenShow,"#FathersDay is next weekend! You know the old saying – dads love Ellen underwear. https://t.co/PeXDMNEw4d + +Discount… https://t.co/MLkGp9iiNT" +06/08/2018,Comedians,@TheEllenShow,Cousins. https://t.co/bIqr2LAC8w +06/08/2018,Comedians,@TheEllenShow,"It’s #WorldOceansDay. By 2050, there will be more plastic waste in the sea than fish. We can change this. Sign here… https://t.co/mSj2u00faJ" +06/08/2018,Comedians,@TheEllenShow,"To everyone who’s reading this... I see you. I know the world can be a dark place, but it's better with you in it.… https://t.co/Jy1KMgaDLz" +06/07/2018,Comedians,@TheEllenShow,Hanging out with elephants at @DSWT was a dream come true. #BeKindToElephants https://t.co/sjA1tMPlCl +06/07/2018,Comedians,@TheEllenShow,"It sounds like Anne Hathaway really bonded with @Rihanna. + +Watch the full clip on @ellentube:… https://t.co/cvoZO4jku7" +06/07/2018,Comedians,@TheEllenShow,.@DarrenCriss is good at everything. Accents included. @HeadsUp https://t.co/nkG0Wx9PrL +06/07/2018,Comedians,@TheEllenShow,"Anne Hathaway is fearless... except when you scare her. + +Watch the full clip on @ellentube: https://t.co/vcyPuSgEAP https://t.co/V2Wu8E86UV" +06/07/2018,Comedians,@TheEllenShow,I ❤ Prince. I miss him. https://t.co/1uEj5CMRPi +06/07/2018,Comedians,@TheEllenShow,@DarrenCriss @HeadsUp ❤️ +06/06/2018,Comedians,@TheEllenShow,"Happy #GlobalRunningDay, everybody! I know the best way to get people to start running. https://t.co/cLijj38LfW" +06/06/2018,Comedians,@TheEllenShow,"Apparently, the “L” in @SamuelLJackson stands for ""Language Alert.” https://t.co/CAP3bK4D2k" +06/06/2018,Comedians,@TheEllenShow,"In this game you have to taste foods blindfolded while your friend is on your back. If that sounds strange, it abso… https://t.co/CPUnwQsc43" +06/06/2018,Comedians,@TheEllenShow,".@SamuelLJackson can have as many seconds as he needs in this round of ""5 Second Rule."" + +Watch the full clip here:… https://t.co/5T1jxQ1Gjv" +06/06/2018,Comedians,@TheEllenShow,@DanReynolds I told you! ❤ +06/06/2018,Comedians,@TheEllenShow,@Imaginedragons @DanReynolds This was great. Next time bring dragons. +06/06/2018,Comedians,@TheEllenShow,".@DanReynolds' new documentary, “Believer,” details his questions about his Mormon faith, and his belief in LGBT eq… https://t.co/gw5JSl7ORT" +06/05/2018,Comedians,@TheEllenShow,#TheBachelorette Recap has a special guest star this week – @TheKalenAllen! https://t.co/4PhXz7rMqn +06/05/2018,Comedians,@TheEllenShow,"Sometimes, Tuesday can feel more like Sundae. https://t.co/7XfC69UeBO" +06/05/2018,Comedians,@TheEllenShow,This game combines Tic Tac Toe and hunks... if you’re into that kind of thing. https://t.co/ktw02VCHkA +06/05/2018,Comedians,@TheEllenShow,My friend Jim Parsons told me about his new role and his dogs. https://t.co/XqxUnTFVef +06/05/2018,Comedians,@TheEllenShow,#BurningQuestions with @Diddy! That’s what I’m talking about. https://t.co/85cubgtWIq +06/05/2018,Comedians,@TheEllenShow,"Young Dylan is humble. + +Watch the full clip here: https://t.co/cVouGhCL2m https://t.co/57HXY4UNfu" +06/05/2018,Comedians,@TheEllenShow,"Happy birthday, @MarkWahlberg. Today should be a national holiday. https://t.co/xg4rtx2XEh" +06/05/2018,Comedians,@TheEllenShow,"If you want to see change in our country, today is your chance. Get up. Get out. Vote. California, Montana, Alabama… https://t.co/2n7rXgJcQj" +06/05/2018,Comedians,@TheEllenShow,RT @mindykaling: “Act natural” @TheEllenShow https://t.co/UKzVTsfGnm +06/04/2018,Comedians,@TheEllenShow,"Thank you to all of the amazing people I met on my trip, who helped make it so special. https://t.co/w4sQop7yfR" +06/04/2018,Comedians,@TheEllenShow,"This is my foster elephant, Enkesha. She was found as a baby with her trunk caught in a snare. The David Sheldrick… https://t.co/9jJ7Afv6K5" +06/04/2018,Comedians,@TheEllenShow,@Michaelraymusic Come back soon please. Your new friend already misses you. +06/04/2018,Comedians,@TheEllenShow,This love story is so surprising and absolutely beautiful. https://t.co/fKZ08yBONE +06/04/2018,Comedians,@TheEllenShow,I love giving away big checks. I never thought about how to cash them. https://t.co/f1j9TXfnAR +06/04/2018,Comedians,@TheEllenShow,.@DavidSpade listing the things you won’t find in his house is the funniest thing you’ll see all day. https://t.co/OUd2r23rSr +06/04/2018,Comedians,@TheEllenShow,".@MindyKaling and I texted all the stars of #Oceans8. Guess who texted back. + +Watch the full clip here:… https://t.co/tlV2jNvg4n" +06/04/2018,Comedians,@TheEllenShow,"I loved meeting the President of Rwanda. Thank you, @PaulKagame, for supporting @EDWildlifeFund and gorilla conserv… https://t.co/9lkgpztvNO" +06/03/2018,Comedians,@TheEllenShow,"Thank you, Angela and Robert for an incredible day at the David Sheldrick Wildlife Trust @DSWT. What you’re doing t… https://t.co/KiZ4dmB6mq" +06/02/2018,Comedians,@TheEllenShow,"Kickin’ the weekend off right with @theKalenAllen. #SaturKay + +Watch it on @ellentube: https://t.co/mjA70aXqic https://t.co/1pdromXJFF" +06/02/2018,Comedians,@TheEllenShow,This was us about to start our three-mile trek up the mountain to see the gorillas. Every moment of it was incredib… https://t.co/08SvYWjGxF +06/01/2018,Comedians,@TheEllenShow,This trip has been pretty great sofari. https://t.co/CYi2QAAuvL +06/01/2018,Comedians,@TheEllenShow,I loved every minute of this new series with @official_tWitch. Watching him surprise these students made me very ha… https://t.co/zdVZfUJeiv +06/01/2018,Comedians,@TheEllenShow,Happy birthday to one of the funniest blondes I know. It takes one to know one. @AmySchumer https://t.co/thLHQ9p696 +06/01/2018,Comedians,@TheEllenShow,".@iamcardib is a lot of fun to talk to, like a lot of fun. https://t.co/a6dlw1eDDy" +06/01/2018,Comedians,@TheEllenShow,Everything is better with @JLo. https://t.co/YilegsYkAU +06/01/2018,Comedians,@TheEllenShow,".@KymDouglas, I’m sending you love, light, and healing thoughts. From me and everyone at my show. https://t.co/kMFHmhi6YW" +05/31/2018,Comedians,@TheEllenShow,This is Dian Fossey’s desk in Rwanda. Sitting here and helping carry on her mission moved me more than I can expres… https://t.co/0WZA3yu45E +05/31/2018,Comedians,@TheEllenShow,I’ve waited my whole life to make this trip. https://t.co/J2GNciu9Oy +05/31/2018,Comedians,@TheEllenShow,"I can’t imagine what it would be like to have @iamJamieFoxx as a dad, but it sounds amazing and scary at the same t… https://t.co/yHI8widiqD" +05/31/2018,Comedians,@TheEllenShow,"Lil' Mushroom is here all the way from China! Big Crouton was very excited about it. + +Watch the full clip here:… https://t.co/SrIO0vJrmU" +05/31/2018,Comedians,@TheEllenShow,".@FallOutBoy performed their new hit, “The Last of The Real Ones.” Watch it here. https://t.co/26GTHFycLp" +05/31/2018,Comedians,@TheEllenShow,"Happy birthday, Clint Eastwood and Colin Farrell. Seems like an extra-handsome day to be born." +05/31/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: Today is the last day you can enter to win a trip to visit a wildlife sanctuary with @EllenPompeo! We can’t imagine any… +05/31/2018,Comedians,@TheEllenShow,I asked @IMKristenBell to guest host my show. She wound up dangling 30 feet in the air with @iamjamiefoxx’s daughte… https://t.co/ZGnCmYmMvA +05/31/2018,Comedians,@TheEllenShow,.@IMKristenBell picked up my hosting duties perfectly. Step 1: Scare @AndyLassner. https://t.co/iRF6QgBC98 https://t.co/wpUlTJyXpg +05/31/2018,Comedians,@TheEllenShow,".@IMKristenBell is my guest host today, and she had a lot of questions to answer about Elsa. https://t.co/SPJl19Ux3G" +05/31/2018,Comedians,@TheEllenShow,"I love being a part of this video, and I love you, @AdamLevine. @Maroon5 #GirlsLikeYou https://t.co/Jn5ly9t5Yy" +05/31/2018,Comedians,@TheEllenShow,@DebraMessing @SeanHayes It worked for my DJ. +05/31/2018,Comedians,@TheEllenShow,@SeanHayes You were hilarious and charming and wonderful just like I knew you would be. +05/30/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: Spending time with these gorillas changed my life. Thank you to everyone who is helping Dian Fossey Gorilla Fund @Savin… +05/30/2018,Comedians,@TheEllenShow,"I can’t begin to describe what this experience was like, or how much it means to me. I’m so grateful. https://t.co/nuoRaPsVnu" +05/30/2018,Comedians,@TheEllenShow,We found them. @EDWildlifeFund @SavingGorillas https://t.co/MXpe7gudsA +05/30/2018,Comedians,@TheEllenShow,"Zoey is only 6, and she already knows more Shakespeare than @SeanHayes. https://t.co/elNxT01fY3" +05/30/2018,Comedians,@TheEllenShow,"It’s Wednesday, but it feels more like Munnday. @OliviaMunn @SeanHayes + +Watch the full clip here:… https://t.co/op344VTluh" +05/30/2018,Comedians,@TheEllenShow,.@SeanHayes is guest-hosting my show today... in case you’re confusing him with someone else. https://t.co/lw96pQ80fs +05/29/2018,Comedians,@TheEllenShow,"#TheBachelorette is BACK, and so is my staff recap! Who are your top picks this season? https://t.co/3h3wYfdSNg https://t.co/stngILAuCy" +05/29/2018,Comedians,@TheEllenShow,This new series with @official_tWitch may be one of our best ideas yet. Watch the whole #tWitchPlease episode this… https://t.co/QUPu26J1mI +05/29/2018,Comedians,@TheEllenShow,I demanded @BrandiCarlile to perform this on my show. She literally had no choice. https://t.co/pzUl76WL7B +05/29/2018,Comedians,@TheEllenShow,The only thing better than watching people on my Scary Go Round is watching teams of people on my Scary Go Round. https://t.co/bOsxHurvHH +05/29/2018,Comedians,@TheEllenShow,"Jon Hamm told me about his first acting gig, which happened to be with my wife! https://t.co/PfnQEmyXsf" +05/29/2018,Comedians,@TheEllenShow,"Happy birthday, @LaverneCox! I hope you’re somewhere dancing with Beyoncé." +05/29/2018,Comedians,@TheEllenShow,"RT @EDWildlifeFund: Ellen, Portia, Dr. Tara Stoinski in Rwanda working with Dian Fossey Gorilla Fund @SavingGorillas. You can help! Get you…" +05/28/2018,Comedians,@TheEllenShow,It’s an itsy bitsy teeny weeny coral polka dot bikini. https://t.co/4Irj0inwR8 +05/26/2018,Comedians,@TheEllenShow,"I love this amazing proposal @official_tWitch pulled off for this couple. Thank you, @Buick, for making this show p… https://t.co/JkotGpeEHh" +05/26/2018,Comedians,@TheEllenShow,Giraffes! #giraffemanor #discoverthesafaricollection https://t.co/5mzVASvPex +05/26/2018,Comedians,@TheEllenShow,Just ordering breakfast on our vacation. #giraffemanor #discoverthesafaricollection https://t.co/UlIZmkOIxL +05/26/2018,Comedians,@TheEllenShow,Quick question: Who likes a good deal? #MemorialDayWeekend2018 https://t.co/HDBOosvc6J https://t.co/tMfNdj7Xbh +05/26/2018,Comedians,@TheEllenShow,She could’ve used a little more rehearsal. https://t.co/166wcczuMs +05/25/2018,Comedians,@TheEllenShow,.@BTS_twt has an amazing army of followers. Even Panda Express is a fan. #ThanksSponsor #BTSxEllen https://t.co/5O9lOBg24z +05/25/2018,Comedians,@TheEllenShow,He’s gonna teach that baby so much... like where to get a perm. https://t.co/wcbBfVqs3O +05/25/2018,Comedians,@TheEllenShow,How did you do in this Weally Wacky Walmart Wace? #ThanksSponsor https://t.co/AwCGtzplpH +05/25/2018,Comedians,@TheEllenShow,@donnyosmond ❤️ +05/25/2018,Comedians,@TheEllenShow,.@official_tWitch helping this sweet guy propose is absolutely going to make your whole weekend. #tWitchplease https://t.co/g3UwMIgHUk +05/25/2018,Comedians,@TheEllenShow,"I played ""What’s in My Honeypot?"" with Ewan McGregor. You heard me. @mcgregor_ewan #WinnieThePooh https://t.co/eC8i6GUbw3" +05/25/2018,Comedians,@TheEllenShow,Raise your hand if you have real love for #FakeLove. @BTS_twt #BTSxEllen https://t.co/6BbmWlt9jw +05/25/2018,Comedians,@TheEllenShow,"Happy birthday, @OctaviaSpencer! I love everything you do, even though you asked that lady about her fish-boyfriend’s penis." +05/25/2018,Comedians,@TheEllenShow,"I scared the S out of BTS. @BTS_twt #BTSxEllen + +Watch the full clip here: https://t.co/yb6o0xw9dT https://t.co/a7nuSmZ6Pv" +05/25/2018,Comedians,@TheEllenShow,#WinniethePooh is back! Check out the exclusive #ChristopherRobin trailer debut right here. It’s in theaters August… https://t.co/ZoDBKEph9Q +05/25/2018,Comedians,@TheEllenShow,You are not gonna believe what happens tomorrow. @BTS_twt #BTSxEllen https://t.co/BU63ndELj7 +05/25/2018,Comedians,@TheEllenShow,"Happy 5th birthday, @HeadsUp! Check out all the exciting new content in our birthday update! https://t.co/DghgP4rqvB https://t.co/U2C93ZWqT8" +05/24/2018,Comedians,@TheEllenShow,"Amy Poehler and @Nick_Offerman are here with some lumber. + +Watch the full clip here: https://t.co/CKVza8To7K https://t.co/irUPvZPdKr" +05/24/2018,Comedians,@TheEllenShow,#RedNoseDay is tonight on @NBC. Don’t just donate because @official_tWitch is so adorable. Do it for the kids. But… https://t.co/DK0AA24qIj +05/24/2018,Comedians,@TheEllenShow,"Now I know exactly what I’m getting @TigNotaro’s twins for their birthday. Garbage. + +Watch the full clip here:… https://t.co/4FcFY6sgE3" +05/24/2018,Comedians,@TheEllenShow,.@SterlingKBrown told me the beautiful reason why he changed his name. https://t.co/XTvpELFXLW +05/24/2018,Comedians,@TheEllenShow,"@brandicarlile @nbc I love you, and I think you’re absolutely incredible." +05/24/2018,Comedians,@TheEllenShow,"Amy Poehler and @Nick_Offerman told me if they’d ever do another season of ""Parks and Rec."" https://t.co/EMpJD2YqQr" +05/24/2018,Comedians,@TheEllenShow,"We’ve been scaring people for at least 10 years, and @SterlingKBrown may be my favorite so far. + +Watch the full cli… https://t.co/tqu3IvgdyR" +05/24/2018,Comedians,@TheEllenShow,"Here’s the first look at the new #ChristopherRobin poster. I’m still not quite sure what a “pooh” is, but this is a… https://t.co/eqNZc7l80K" +05/23/2018,Comedians,@TheEllenShow,"@Ripple @aplusk @guyoseary @EDWildlifeFund If this is what they mean by the ripple effect, I’m into it and I’m so grateful to you." +05/23/2018,Comedians,@TheEllenShow,Two. More. Days. @BTS_twt #BTSxEllen https://t.co/YB8luHx7Gi +05/23/2018,Comedians,@TheEllenShow,".@MarkWahlberg on the #RoyalWedding. + +Watch the full clip here: https://t.co/2BVLX5JleN https://t.co/M1NOS4LV2K" +05/23/2018,Comedians,@TheEllenShow,I definitely think they can dance. #SYTYCD https://t.co/ZmHxtkWA4v +05/23/2018,Comedians,@TheEllenShow,"Dickson didn’t know he was a finalist in my Dance Dare Challenge, and he definitely didn’t know he was the winner.… https://t.co/PMXNg2K9Te" +05/23/2018,Comedians,@TheEllenShow,"Thank you, @NickiMinaj, for putting me in another music video. #ChunLi #Blessed + +Watch the full clip here:… https://t.co/DOe8Cn9DNt" +05/23/2018,Comedians,@TheEllenShow,"I don’t surprise easily, but this really got me. I am so grateful. I love you both so much. @aplusk @guyoseary https://t.co/BITMK0vF5E" +05/23/2018,Comedians,@TheEllenShow,West Coast! The season finale of #SplittingUpTogether is on! Then you’ll have all summer to get excited for season 2! +05/23/2018,Comedians,@TheEllenShow,The season finale of #SplittingUpTogether starts in 5 minutes! Stop looking at this little screen and start looking… https://t.co/5I6qySmspB +05/22/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: The new EDWF #EDEllenDeGeneres shoes are perfect for any occasion... like sitting on a couch and thinking about gorilla… +05/22/2018,Comedians,@TheEllenShow,OMG. I scared @bts_twt. #BTSxEllen https://t.co/wJMrZJoU0f +05/22/2018,Comedians,@TheEllenShow,"Chewbacca bouncin’ around, bouncin’ around, bouncin’. https://t.co/Fk4LG2vxqC" +05/22/2018,Comedians,@TheEllenShow,"I caught @JackBlack hiding in my audience today. + +Watch the full clip here: https://t.co/CnTIbcxilB https://t.co/v0G5q7H32I" +05/22/2018,Comedians,@TheEllenShow,I love my pets. That’s why I support the #DogMeatFreeIndonesia by @HSIGlobal. Take action here.… https://t.co/4Z8gK5dZyZ +07/01/2018,Comedians,@chelseahandler,"People who stand up against these violations of basic human rights are necessary and should be applauded, because t… https://t.co/AgWlItJqm9" +07/01/2018,Comedians,@chelseahandler,"@AlyssaMastro44 @JFKairport Girl, Igor you a segway for a reason" +07/01/2018,Comedians,@chelseahandler,To tell him they’re sorry that our president is such a dumb ass. https://t.co/HXJLNOovdT +07/01/2018,Comedians,@chelseahandler,"RT @thebryanpaulk: Since you’re a Republican, have you tried putting him in a cage and separating him from his mother for 2 months? https:…" +07/01/2018,Comedians,@chelseahandler,You can also vote for @Lina4HC who is running for Harris County judge and who will do more to fix this broken syste… https://t.co/aNP72TNB4S +06/30/2018,Comedians,@chelseahandler,"Now more than ever, it's crucial that we elect more pro-choice Democratic women to the House and Senate who will de… https://t.co/QQJKFR4wOL" +06/30/2018,Comedians,@chelseahandler,I like this woman. Missouri’s 1st. @CoriBush https://t.co/uPfYVl8Pe7 +06/30/2018,Comedians,@chelseahandler,RT @tedlieu: House Republicans held an emergency hearing into the investigation of Hillary's emails. They did not hold a hearing on the tho… +06/30/2018,Comedians,@chelseahandler,We need to be focused on supporting the candidates who can win and change these terrible practices this administrat… https://t.co/iKhIkYYjsu +06/30/2018,Comedians,@chelseahandler,RT @emilyslist: The Supreme Court is at stake. We need to flip two seats to take back the Senate. And we've endorsed two pro-choice Democra… +06/29/2018,Comedians,@chelseahandler,Please retweet this and make sure thes “officers” lose their jobs. https://t.co/JMkmaomJBS +06/28/2018,Comedians,@chelseahandler,If anyone thinks comparing what’s happening in our country to the Holocaust or to the handmaids tale is “ridiculous… https://t.co/LvYRz2lZ8n +06/28/2018,Comedians,@chelseahandler,You have my support @JanzforCongress https://t.co/MOrfJFDG1X +06/28/2018,Comedians,@chelseahandler,"RT @cmclymer: Sweetie, white men make up 67% of Congress, 56% of Supreme Court seats, 94% of Fortune 500 CEOs, and 44 of 45 U.S. presidents…" +06/28/2018,Comedians,@chelseahandler,"Wait. #Progressive NJ @GovMurphy protected @PPACtionNJ, voting rights, toughened gun laws, sued Trump over Dreamers… https://t.co/EnmDjDscVl" +06/28/2018,Comedians,@chelseahandler,Trump and Putin are going to meet on July 16th in Finland… Which means Trump has two weeks to get in shape to fit i… https://t.co/Qo6Z6Nqelm +06/28/2018,Comedians,@chelseahandler,"After Joe Crowley's loss, the Center for American Progress and End Citizens United are calling for Democrats to ref… https://t.co/2yjzoJQZEH" +06/28/2018,Comedians,@chelseahandler,"RT @JackiSchechner: If @realDonaldTrump ever paid for your abortion, now would be a really good time to speak up." +06/28/2018,Comedians,@chelseahandler,"From @emilyslist +Here's some good news: Nine of our candidates on the ballot yesterday in Colorado, Maryland, and… https://t.co/Qh3dFeZ13x" +06/27/2018,Comedians,@chelseahandler,You inspire me. Thanks for reminding us of our voices and our duty of goodness to each other. https://t.co/d05dWuWkGZ +06/27/2018,Comedians,@chelseahandler,"Please vote, people. https://t.co/rE781IYzZU" +06/27/2018,Comedians,@chelseahandler,I want to hear from you. What issues matter most this election year? Take 30 seconds to record a video by following… https://t.co/N85UOpdK8h +06/27/2018,Comedians,@chelseahandler,It’s about time. https://t.co/9UjkvvPLK5 +06/27/2018,Comedians,@chelseahandler,RT @ava: Ignore the women of color replacing the old guard at your own peril. Three words: Alexandria Ocasio-Cortez. https://t.co/yoXFNb4Z… +06/27/2018,Comedians,@chelseahandler,Waking up to this woman gives me a lot of hope for the future of our party and for the future of our country.… https://t.co/pcNQHCqYTD +06/27/2018,Comedians,@chelseahandler,RT @emilyslist: Congrats to @RepDMB on winning her primary! https://t.co/Z8y6XSvyoF +06/27/2018,Comedians,@chelseahandler,Congratulations! https://t.co/QML7FV7wVq +06/27/2018,Comedians,@chelseahandler,"RT @funder: Republicans in Congress are a joke. + +They just moved to censure Maxine Waters and demand her resignation. For saying people wil…" +06/27/2018,Comedians,@chelseahandler,RT @emilyslist: Congrats to @JenaGriswold on advancing through her primary! https://t.co/uQwIQfhVxk +06/27/2018,Comedians,@chelseahandler,RT @GwenGraham: It is unbelievable that @realDonaldTrump is cutting off housing assistance for hundreds of Puerto Rican families in Florida… +06/27/2018,Comedians,@chelseahandler,"RT @PodSaveAmerica: ""For the first time in history, we have recruited a Democratic candidate for every single seat in the legislature. 77 o…" +06/26/2018,Comedians,@chelseahandler,Trump has reportedly told Sarah Huckabee that he is going to “grade” her appearances in public. What a fun time tha… https://t.co/SNo1UXMktR +06/26/2018,Comedians,@chelseahandler,"RT @rgoodlaw: Further plunge into civil rights nightmare for America: + +Leaked audio footage of employee at child migrant detention facility…" +06/26/2018,Comedians,@chelseahandler,"RT @swingleft: YOU: college student dedicated to putting a check on Trump and the GOP. +WE: will train and mobilize you for the midterm elec…" +06/25/2018,Comedians,@chelseahandler,"@tedlieu I know how much scotch you drink, and you’re right. It’s not a lot." +06/25/2018,Comedians,@chelseahandler,"New York, Maryland, Colorado. There is an election on Tuesday with these @emilyslist endorsed candidates running! T… https://t.co/w3bWzVmzNF" +06/24/2018,Comedians,@chelseahandler,"New York - Get out the vote for these three women running for the House this Tuesday, June 26. +@ErinCollier2018 @liuba4congress @RepMaloney" +06/24/2018,Comedians,@chelseahandler,"Sounds like we need more people of color in office. If the consequence of Obama is Trump, then the consequence of T… https://t.co/NIbtMmJFys" +06/24/2018,Comedians,@chelseahandler,@TimChap45336298 @RepDMB @CaryKennedy That’s right! +06/24/2018,Comedians,@chelseahandler,"There’s an election in Colorado Colorado - On Tuesday, June 26, vote for @RepDMB for representative and… https://t.co/TtKdtUP7Tr" +06/23/2018,Comedians,@chelseahandler,"Maryland, on Tuesday vote for @arunamiller for representative. https://t.co/1drFzVwAwl" +06/23/2018,Comedians,@chelseahandler,"Hey New York. Get out and vote for these three women running for the House this Tuesday, June 26. +@ErinCollier2018… https://t.co/sSex8MrWUe" +06/23/2018,Comedians,@chelseahandler,"@CNN Well, what in the fuck is he waiting for?" +06/23/2018,Comedians,@chelseahandler,"@JimmyV08070562 Well, that’s nice for you, but some people need to be reminded that there is a lack of diversity at the table." +06/23/2018,Comedians,@chelseahandler,@LobotomyForABC @FLOTUS She’s an idiot who is married to a wannabe dictator. I can promote women who are strong and… https://t.co/JS4tjLEnxD +06/23/2018,Comedians,@chelseahandler,@debsstar57 Why are you following me? Why do you spend your time like that? +06/23/2018,Comedians,@chelseahandler,Who is going to enforce the rules of “decorum” with our president? https://t.co/vcTI1rxyjz +06/23/2018,Comedians,@chelseahandler,RT @tedlieu: 2300 kids were ripped away from parents with no real plan to reunite them. I can't play the @ProPublica audio of their cries f… +06/22/2018,Comedians,@chelseahandler,"This weekend, join people across the country and #StandForKids by starting a lemonade stand to raise money for grou… https://t.co/NgCUpQHRc4" +06/22/2018,Comedians,@chelseahandler,"This is a woman of color who I’ve hosted at my house, too. She’s incredible. When people tell me not to mention whe… https://t.co/qDk40Ega9h" +06/22/2018,Comedians,@chelseahandler,@deann_soqui I have plenty of Texan reps who are running. Go to my Facebook or countable page and look up Lina hidalgo! +06/22/2018,Comedians,@chelseahandler,RT @DavidLeopold: Good morning @SecNielsen. Kids don’t sleep in peace. You don’t sleep in piece. https://t.co/ha7NiTXFSZ +06/22/2018,Comedians,@chelseahandler,RT @TopherSpiro: BREAKING: The House GOP just voted a budget bill out of committee that fast tracks ACA repeal and $2 TRILLION in cuts to M… +06/22/2018,Comedians,@chelseahandler,"As i sit on a layover in Frankfurt, Germany, i have been asked by multiple people- do Americans understand what thi… https://t.co/fhUWRzhZar" +06/21/2018,Comedians,@chelseahandler,@Alyssa_Milano Love this +06/21/2018,Comedians,@chelseahandler,Another badass female running in Texas #23. I had this woman at my house and she inspired the shit out of everyone… https://t.co/PyUobBT2qr +06/21/2018,Comedians,@chelseahandler,"@debidevens @FLOTUS No, DONALD trump expedited her immigration for her. Look it up" +06/21/2018,Comedians,@chelseahandler,Maybe she’s just talking to you. https://t.co/ejzz1OLlXu +06/21/2018,Comedians,@chelseahandler,"RT @ActivateAmerica: @chelseahandler @FLOTUS SEEN ON TWITTER: +""We need to pause for a moment to appreciate the absurdity of the First +Lady…" +06/21/2018,Comedians,@chelseahandler,"@MatthewEnders2 @FLOTUS @realDonaldTrump @POTUS You’re the same person who says you can’t just vote for a woman, be… https://t.co/69rrJFRLiM" +06/21/2018,Comedians,@chelseahandler,The hypocrisy of @FLOTUS going down to the border to speak broken English to our refugees in that dumb jacket is a… https://t.co/WkA71WnYCm +06/21/2018,Comedians,@chelseahandler,Please read this article whether or not you believe refugees should be allowed in this country. They are placing ch… https://t.co/VvyxVE8cAz +06/21/2018,Comedians,@chelseahandler,"Yeah, female veterans are running throughout our country in NOVEMBER. This woman is running in Texas. Get on board! https://t.co/vG8IHzrTRF" +06/20/2018,Comedians,@chelseahandler,This is the guy running against @tedcruz in Texas and has a very good chance of beating him. We need real progressi… https://t.co/k7mKqz8Woj +06/20/2018,Comedians,@chelseahandler,"When people send their children to countries alone, it is because they are desperate to save their children from th… https://t.co/Qdv1LoscVh" +06/20/2018,Comedians,@chelseahandler,RT @TopherSpiro: .@SecAzar is this why you signed up for public service? To run baby jails? Your reputation will forever be tarnished. You… +06/20/2018,Comedians,@chelseahandler,"Guys, this is not right. This could be human trafficking. https://t.co/2zNbCfeLBk" +06/20/2018,Comedians,@chelseahandler,Alyssa Milano Discusses Trump & Crimes Against Humanity https://t.co/IXyq65aMIw via @YouTube +06/20/2018,Comedians,@chelseahandler,RT @franklinleonard: @kumailn There's an argument to be made that they actually love them more since they've established a willingness to r… +06/20/2018,Comedians,@chelseahandler,@ikebarinholtz I can’t take this anymore +06/20/2018,Comedians,@chelseahandler,This is what a leader looks like. #ChildInternmentCamps https://t.co/2fFIX9MCFK +06/20/2018,Comedians,@chelseahandler,"We just quit the UN citing “human rights abusers.” Um..,hello? All women from Trump’s administration should resign. https://t.co/xyp51UZCUq" +06/20/2018,Comedians,@chelseahandler,And here’s the woman who can flip CA #45 @katieporteroc https://t.co/QGXRAq6yBM +06/20/2018,Comedians,@chelseahandler,This is the man to flip CA #49 https://t.co/WM6U20mYjo +06/19/2018,Comedians,@chelseahandler,@mobracing1 @IngrahamAngle @AnnCoulter Anyone sending their child to a foreign botder without them is desperate for… https://t.co/XuLysPN3JT +06/19/2018,Comedians,@chelseahandler,@kumailn Congrats +06/19/2018,Comedians,@chelseahandler,"Hey @IngrahamAngle, if these detention centers are “essentially summer camps” why don’t you send your children ther… https://t.co/RlVY8yI9Gc" +06/19/2018,Comedians,@chelseahandler,"RT @TopherSpiro: 🚨🚨 BREAKING: The House GOP just released a budget bill that fast tracks ACA repeal, massive Medicare and Medicaid cuts, an…" +06/19/2018,Comedians,@chelseahandler,I’m sure all those crying babies are MS-13 members. The way to ensure permanent damage and create criminals is by p… https://t.co/kX5POV4Jrh +06/19/2018,Comedians,@chelseahandler,"RT @marycmccormack: We are very aware of the seriousness of the situation, and we're just very lucky that our children weren’t in the car.…" +06/19/2018,Comedians,@chelseahandler,RT @JasonKander: 👁❤️🇺🇸 https://t.co/btuirrf2r2 +06/19/2018,Comedians,@chelseahandler,More voter suppression in Kansas City. Pence and Trump’s guy. ⁦@KrisKobach1787⁩ let’s vote this guy out. thank you… https://t.co/2wpxAneJqI +06/19/2018,Comedians,@chelseahandler,"RT @renato_mariotti: When you have to explain to people why your policies aren't exactly like Nazi Germany, it's time to rethink your polic…" +06/19/2018,Comedians,@chelseahandler,https://t.co/WjlzryGC57 +06/19/2018,Comedians,@chelseahandler,"RT @renato_mariotti: If you live near Chicago, join me and many others on June 30th to protest the Administration's policy of separating im…" +06/19/2018,Comedians,@chelseahandler,@billyeichner Agreed +06/18/2018,Comedians,@chelseahandler,"RT @Alyssa_Milano: You are the only senator in the Democratic Party that has not signed on to the #KeepingFamiliesTogetherAct, @Sen_JoeManc…" +06/18/2018,Comedians,@chelseahandler,@jonfavs Seriously. +06/18/2018,Comedians,@chelseahandler,@Craig_Deas It doesn’t matter. Kids can’t be put in cages. That’s how you create mental problems. The parents are o… https://t.co/emIvMtIBlc +06/18/2018,Comedians,@chelseahandler,@metalnv @waltshaub Just did. Thanks +06/18/2018,Comedians,@chelseahandler,@DearBelva @waltshaub Just did +06/18/2018,Comedians,@chelseahandler,@Onlyonelov3 @Schmol55 Go fuck your self. +06/18/2018,Comedians,@chelseahandler,@breezinnn There is annonuncement on all in with Chris Hayes tonight. A march announcement +06/18/2018,Comedians,@chelseahandler,@tamralee68 @waltshaub Just reached out. Thank you +06/18/2018,Comedians,@chelseahandler,@tamralee68 @waltshaub Will do. Thanks +06/18/2018,Comedians,@chelseahandler,@mdalcorobbo @SimpleeKatyLee @GlennonDoyle @togetherrising @AbbyWambach I know them both. Already reached out. +06/18/2018,Comedians,@chelseahandler,@SimpleeKatyLee @GlennonDoyle @togetherrising Thank you. +06/18/2018,Comedians,@chelseahandler,"@alexburnsNYT @maggieNYT Not much. Everyone who works for him that seems normal in the beginning, turns evil rather… https://t.co/YlIsaySZtA" +06/18/2018,Comedians,@chelseahandler,Can someone please DM who knows of an organized movement to revolt against this latest trump abomination at the bor… https://t.co/n2xmiir5sI +06/18/2018,Comedians,@chelseahandler,@Marcus_OTF @MichaelSkolnik My god. This country is in shambles. +06/18/2018,Comedians,@chelseahandler,"Puerto Rico, #BlackLivesMatter, brown babies and children being ripped from their mothers and put in cages. Notice… https://t.co/4KBzVdC8rp" +06/18/2018,Comedians,@chelseahandler,This organization is helping Latinos to why out the vote. We need Latinos to be mobilized all across the country an… https://t.co/soZ0IS2NOh +06/18/2018,Comedians,@chelseahandler,@TheTessMorris Someone is back! +06/18/2018,Comedians,@chelseahandler,@JohnFugelsang Ya think??? +06/18/2018,Comedians,@chelseahandler,Here’s a great candidate to get rid of @DevinNunes who has obstructed justice and will break any law in the name of… https://t.co/tYE0kG8qUg +06/18/2018,Comedians,@chelseahandler,How about you just call your husband from whichever room you’re trapped in? https://t.co/dID5Cuooko +06/16/2018,Comedians,@chelseahandler,Everyone with an early model Tesla needs to be aware of this. I have one that I will not be driving again. @Tesla… https://t.co/U7rkt6Gfdl +06/16/2018,Comedians,@chelseahandler,"RT @madlinbmek: New: @BetoORourke to lead a “March to Tornillo” on Sunday (Father’s Day), to protest separation of migrant kids from their…" +06/16/2018,Comedians,@chelseahandler,@madlinbmek @BetoORourke @elpasotimes Ok. Let me see if I can get down there. +06/16/2018,Comedians,@chelseahandler,"@FollowingDougK_ @marycmccormack @Tesla First of all, this has happened before. Many times. Look it up." +06/16/2018,Comedians,@chelseahandler,@DYINGtoLlVE @marycmccormack @Tesla Any car catching on fire for no reason is not acceptable. Are you saying they d… https://t.co/wzu1rIJ6Aq +06/16/2018,Comedians,@chelseahandler,This woman is running for a very important Harris county judge position. She would be charge of many issues in Texa… https://t.co/73JsV4Fmbw +06/16/2018,Comedians,@chelseahandler,"RT @tedlieu: Dear @realDonaldTrump: Um, what elections are you talking about? Since your relatively small inauguration, DEMS WON: + +-Alabama…" +06/16/2018,Comedians,@chelseahandler,"Schlimm noted that people often misuse the Bible. In fact, the same passage Sessions cited has been used to justify… https://t.co/EhpskWanWv" +06/16/2018,Comedians,@chelseahandler,It’s more than that. Every Republican is complicit in human rights violations. https://t.co/q7vB4jljFE +06/16/2018,Comedians,@chelseahandler,@MrRetroManiac @NatashaBertrand He should have been in one 5 years ago. +06/16/2018,Comedians,@chelseahandler,"RT @thehill: Cardinal Dolan fires back at Sessions: There is ""no Bible passage"" that would justify family separation https://t.co/HIbNVpOeN…" +06/16/2018,Comedians,@chelseahandler,RT @TomSteyer: Mr. Trump and his administration are locking children in prison camps and tearing families apart at our borders. That’s why… +06/16/2018,Comedians,@chelseahandler,"@LondonBreed @SFAAACC Go, girl" +06/16/2018,Comedians,@chelseahandler,"@thegarance @kevintripp @elonmusk @Tesla I use my megaphone for everyone. Not just people I know. If you know me, you know that." +06/16/2018,Comedians,@chelseahandler,This happened to my bff today. Who drives 3 girls daily in this car. @elonmusk @Tesla I have the same model and mak… https://t.co/8uPCoqzELr +06/16/2018,Comedians,@chelseahandler,"I can’t wait until there’s (more) irrefutable proof that trump has cheated, scammed the IRS, and colluded,—and the… https://t.co/jjtmlHzgCS" +06/15/2018,Comedians,@chelseahandler,"@Rosie @NicolleDWallace Yeah, she’s awesome." +06/15/2018,Comedians,@chelseahandler,This is the man who won his primary for #CA49 and will flip this seat blue. He is the kind of candidate I am prou… https://t.co/DDZSkwTQbc +06/15/2018,Comedians,@chelseahandler,"Hey syphilis brain. It’s nice you have such sympathy for high level criminals, yet not for kids being ripped from t… https://t.co/RtBbjNqbp1" +06/15/2018,Comedians,@chelseahandler,"I always knew orange was Paul Manafort’s color. See ya later, girl." +06/15/2018,Comedians,@chelseahandler,@jonfre75 Seriously +06/15/2018,Comedians,@chelseahandler,"@craigmccu Oh, fuck you. All I do is campaign and post and advocate for candidates who are positive and care about… https://t.co/ceN07qx8pR" +06/15/2018,Comedians,@chelseahandler,@mattrett We have got to get that turtle’s emails. +06/15/2018,Comedians,@chelseahandler,@fleccas Yeah. Nothing there as usual. Trump is the problem. Not someone who ran and lost. +06/15/2018,Comedians,@chelseahandler,@COostvogels Magazines worth. While those innocent children’s photos are spread all over the walls of his cell. +06/15/2018,Comedians,@chelseahandler,@stealth_singer I can’t take it. +06/15/2018,Comedians,@chelseahandler,"I hope that when you go to prison, someone has a flag and a pole. https://t.co/F6xDERuChS" +06/15/2018,Comedians,@chelseahandler,@AwesomeTSpears Or ketamine therapy. +06/15/2018,Comedians,@chelseahandler,@MadKarmaBomber Thank you. +06/15/2018,Comedians,@chelseahandler,@onesoldiersmom That doesn’t mean anything to me except the source that it’s coming from is bored and spending his… https://t.co/FwSFAPVhii +06/15/2018,Comedians,@chelseahandler,@acehanna54 Thanks. That looks about right +06/15/2018,Comedians,@chelseahandler,@manders42019 I believe that +06/15/2018,Comedians,@chelseahandler,"@therealFranGSF @howroute Agreed. I’m angry at how much of my day this administration robs me off, but not speaking… https://t.co/7o7y3SroST" +06/15/2018,Comedians,@chelseahandler,Im pretty sure we have something called a separation between church and state in this country. Why is our attorney… https://t.co/KF6Rf0EF71 +06/15/2018,Comedians,@chelseahandler,RT @SenWarren: Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice heard and… +06/14/2018,Comedians,@chelseahandler,Thank you @briankarem for calling her on her unconscionable complicity. I’m not a mother and I know how wrong this… https://t.co/ADCJzTsbYR +06/14/2018,Comedians,@chelseahandler,@HokiePolkie @jacobsoboroff @HHSGov @chrislhayes You’re a pig. +06/14/2018,Comedians,@chelseahandler,@funder Yeah! +06/14/2018,Comedians,@chelseahandler,This is what Fox News is talking about today. Oklahoma fishermen catch 'behemoth' alligator snapping turtle - Fox N… https://t.co/uaMHgJ0AKK +06/14/2018,Comedians,@chelseahandler,"RT @JoyAnnReid: This is a must-read thread, and incredibly disturbing... a child “detention center,” in America, complete with a Trump pro…" +06/14/2018,Comedians,@chelseahandler,@Newsweek That’s what your approval rating is when you’re held hostage. +06/14/2018,Comedians,@chelseahandler,@thehill Get it. The criminality is beyond. +06/14/2018,Comedians,@chelseahandler,"What kind of world is this? Why would any American including Democrats, Republicans, and everything in between—be o… https://t.co/K6u4atCTIR" +06/14/2018,Comedians,@chelseahandler,RT @RepAdamSchiff: Lawsuit against Trump Foundation for using charity money for campaign purposes highlights need to follow the money in Ru… +06/14/2018,Comedians,@chelseahandler,"@TheMainRyan85 Yeah, that means a lot." +06/14/2018,Comedians,@chelseahandler,"RT @MadKarmaBomber: @chelseahandler . +Confucious say... +. https://t.co/9ewkuNZqwt" +06/14/2018,Comedians,@chelseahandler,@BobWilliams2057 He is the grossest +06/14/2018,Comedians,@chelseahandler,@OldGibsonND He’s too unathletic to have any aim. +06/14/2018,Comedians,@chelseahandler,@JoeVito12 Sorry/ I don’t find being controlled by Russia funny. I don’t find children at our borders—in cages—funny. +06/14/2018,Comedians,@chelseahandler,@starlasworld I’m glad. +06/14/2018,Comedians,@chelseahandler,It was the great Ivanka Trump who made up and tweeted the Chinese proverb which isn’t a Chinese proverb—“those who… https://t.co/BgAnYWrc85 +06/14/2018,Comedians,@chelseahandler,@jiffywild Check your ambien +06/13/2018,Comedians,@chelseahandler,"We had major female wins last night. This is just Virginia. Virginia Breakdown: + 4/4 @emilyslist endorsed candidat… https://t.co/vA8ajpvQJm" +06/13/2018,Comedians,@chelseahandler,"We support @dconefairwage. #VoteYeson77 on June 19 in DC to support fair wages, decent working conditions & access… https://t.co/bC7jpTNRtD" +06/13/2018,Comedians,@chelseahandler,I can’t believe Farrah Abraham got arrested before Donald Trump. What a horrible day for reality stars. +06/13/2018,Comedians,@chelseahandler,"Women are going to win so much, we are going to be tired of winning. https://t.co/Q8Nbxr4CgY" +06/13/2018,Comedians,@chelseahandler,Only republicans try to prevent elections. They don’t even deserve a capital “R.” https://t.co/ODn8HW3bUs +06/13/2018,Comedians,@chelseahandler,@SarahEMcBride @laurenduca This is what we all need to read every day to remind people that there is good within ba… https://t.co/eYVqEIZPDR +06/13/2018,Comedians,@chelseahandler,"RT @JasonKander: Nevadans voted to make universal background checks the law of the land, and the state's current attorney general has refus…" +06/13/2018,Comedians,@chelseahandler,Tonight was a great night for @emilyslist and for women throughout the country. We will stand together and see this… https://t.co/3ddpigaiwY +06/13/2018,Comedians,@chelseahandler,RT @kurteichenwald: Gee what a surprise. A January piece in the Wall Street Journal - five months ago - reported that Trump had been told b… +06/13/2018,Comedians,@chelseahandler,RT @JohnFugelsang: People who cheered Trump for defunding Planned Parenthood are now cheering him for meeting w/a govt that forces women to… +06/13/2018,Comedians,@chelseahandler,RT @Acosta: Dear Brad.. dictatorships take away press credentials. Not democracies. https://t.co/TqgCHOW0t6 +06/12/2018,Comedians,@chelseahandler,@shannonrwatts @NRA @PattyMurray It’s sick. Not protecting our children from guns is tantamount to pulling the trigger. +06/12/2018,Comedians,@chelseahandler,Trump doesn’t need notes from his meeting with Kim Jong Un because he has “one of the great memories of all time.”… https://t.co/Q18f7K2L71 +06/12/2018,Comedians,@chelseahandler,SCOTUS has sided with vote suppressors. That's why we need to win the political fight for voting rights. Join me an… https://t.co/4SXSSPNESd +06/12/2018,Comedians,@chelseahandler,"RT @TomSteyer: We knocked on 10,000 doors with @NextGenAmerica in anticipation of today’s primary in Virginia, where voters are headed to t…" +06/12/2018,Comedians,@chelseahandler,This is an organization that is doing very important work to make sure that Latinos get out the vote and that we he… https://t.co/KhOX1Qp3DG +06/12/2018,Comedians,@chelseahandler,@krassenstein @Rosie Me +06/12/2018,Comedians,@chelseahandler,"@BetteMidler Because his plan is to become a dictator and with this Republican Congress, they’ll allow it." +06/12/2018,Comedians,@chelseahandler,Today is voting day. https://t.co/J1MSZrVeKO +06/12/2018,Comedians,@chelseahandler,For Nevada and Virginia. Today is voting day. https://t.co/2Lk7M1H6hp +06/12/2018,Comedians,@chelseahandler,Today’s election guide. https://t.co/SuOg39Ldem +06/12/2018,Comedians,@chelseahandler,The Supreme Court ruling that people who haven’t voted in past elections can have their names purged from voter reg… https://t.co/Cak5FlJwZP +06/12/2018,Comedians,@chelseahandler,You mean like making enemies with all of our allies and sucking a dictator’s ass? We won’t interrupt. https://t.co/BNB9EJRg3S +06/12/2018,Comedians,@chelseahandler,RT @JasonKander: An American President celebrates the disenfranchisement of eligible voters. UnAmerican. https://t.co/a7YTDPSen0 +06/12/2018,Comedians,@chelseahandler,RT @ajplus: What's happening to immigrant kids who are separated from their parents at the border? This U.S. Senator was blocked from findi… +06/12/2018,Comedians,@chelseahandler,There is only one political party that wants to prevent people from voting. They are the Republican Party. They ar… https://t.co/8KXsNifIaJ +06/12/2018,Comedians,@chelseahandler,@kcs7272 Go take a xanax +06/12/2018,Comedians,@chelseahandler,Was on a plane and just landed. Assuming trump fixed everything with kimmy? +06/12/2018,Comedians,@chelseahandler,I wonder how many “u up?” texts Putin is going to send Trump after his meeting with Kim Jong Un. #TrumpKimSummit +06/11/2018,Comedians,@chelseahandler,The only thing we can do to counteract this disgraceful administration is vote. We must get out the vote. Every min… https://t.co/ab4lgkamen +06/11/2018,Comedians,@chelseahandler,Maine! You've got your primary election on Tuesday. There are only two pro-choice Democratic women governors in the… https://t.co/YqeRvkK6Hc +06/11/2018,Comedians,@chelseahandler,"Here's this week's @emilyslist endorsements: +✅ @Deb4CongressNM in #NM01 (She could be one of the first Native Ameri… https://t.co/QkpujMGhRZ" +06/11/2018,Comedians,@chelseahandler,Putin is giving trump talking points and actions to take to help undermine the very country he is from. We have a… https://t.co/jvolk9ok4L +06/11/2018,Comedians,@chelseahandler,"RT @KevinMKruse: You know you're a member of the United States Senate, right? You can actually do a lot more than send out some sad tweets.…" +06/11/2018,Comedians,@chelseahandler,@SethAbramson Putin +06/11/2018,Comedians,@chelseahandler,"RT @katieporteroc: Ready to #FlipTheHouse in November? I know I am. +Current polling shows us beating @RepMimiWalters— +who has voted with T…" +06/10/2018,Comedians,@chelseahandler,Nevada! Your primary election is this Tuesday. Polls will be open between 7 a.m. and 7 p.m. Confirm your polling pl… https://t.co/IWcQT7Mx5w +06/10/2018,Comedians,@chelseahandler,It’s happening tonight. This big ball of hair @Riedle and I are @ImperialTheatre at 7. #civilizedlife https://t.co/M5HXt1YGpI +06/09/2018,Comedians,@chelseahandler,@WhitfordBradley It helps. +06/09/2018,Comedians,@chelseahandler,Virginia! Your primary election is Tuesday. Polls will be open between 6 a.m. and 7 p.m. Confirm your polling place… https://t.co/TuRNCOcqZB +06/09/2018,Comedians,@chelseahandler,Let’s please get @DevinNunes out of office. @JanzforCongress is the person we want to elect that isn’t compromised… https://t.co/vrE9617Byx +06/09/2018,Comedians,@chelseahandler,Republicans: defund children’s health care. Allow children to be ripped apart from their parents at our borders & s… https://t.co/kcz3CtzVbF +06/30/2018,Comedians,@TigNotaro,"I've been @drewjanda, and tweeting for Tig has been an honor. Be kind. I'll leave you with my favorite sketch serie… https://t.co/XjgDS2gJtX" +06/30/2018,Comedians,@TigNotaro,"Here's the thing about the movie Goodfellas: the ""fellas"" are actually bad" +06/30/2018,Comedians,@TigNotaro,"RT @drewjanda: Doctor: I'm sorry, your son is very cool +Me: my god. can he still go to school +doctor: I hate to be the one to say this" +06/30/2018,Comedians,@TigNotaro,"*An episode of Chopped: We Have Food At Home Edition* +Chefs, your ingredients are: + +one hamburger bun +hot dogs +tort… https://t.co/sBDU1K8D7M" +06/29/2018,Comedians,@TigNotaro,"Have you watched Tig's new special yet? It's called ""Happy To Be Here"" and it's streaming now on @netflix! https://t.co/yXhRm7RBnl" +06/29/2018,Comedians,@TigNotaro,"RT @TransWrites: RT so your trans followers can see! + +If you are a trans comedy writer, please send an email to gracethomas@transwrites.or…" +06/29/2018,Comedians,@TigNotaro,"RT @drewjanda: This land is my land +This Al is Borland https://t.co/GNIXnoc0vr" +06/29/2018,Comedians,@TigNotaro,Oh and the lady will be having the Bud Lite *Platinum* +06/29/2018,Comedians,@TigNotaro,"Hello, and welcome to Twitter. I'm @drewjanda, your Tig today. + +MY DREAM is to write for television. If you like m… https://t.co/j8qeCFWSfQ" +06/29/2018,Comedians,@TigNotaro,"This has been so fun! +You are all welcome to hire me as a standup comic or a writer for your shows. +I have an alb… https://t.co/nFjxWl1yCW" +06/29/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Sister: have you met any nice men lately? +Me: we are failing the Bechdel test." +06/29/2018,Comedians,@TigNotaro,"RT @JenniferJokes: *updates iOS* +*looks up from phone* +*finds herself chained to a million other slaves dragging monolith to the pyramids…" +06/29/2018,Comedians,@TigNotaro,RT @JenniferJokes: please dont be mean to me cause im very soft but also dont be nice cause i fall in love very easily +06/28/2018,Comedians,@TigNotaro,"Me: can I get pregnant from handjobs? +Doctor: *pinching bridge of nose, flipping to my age on the chart* +Me: I wen… https://t.co/eJz9PAlmUd" +06/28/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Instead of asking people to watch my laptop at a café, I just leave an open google search for “how to clean a yeast infe…" +06/28/2018,Comedians,@TigNotaro,As a Catholic I was raised to be so private about romance that I’m not even sure if my parents are dating +06/28/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Her: what do you feel like? +Me: really sad all the time. idk what to do +Her: I meant for dinner +Me: OHH lol pizza would…" +06/28/2018,Comedians,@TigNotaro,"[pulls out easel with enormous notepad] + +Me: Welcome to my crafting workshop, using your period to show dominance on office furniture" +06/28/2018,Comedians,@TigNotaro,Hi! I’m Jennifer McAuliffe @jenniferjokes and I’m going to be tweeting for Tig today. As a stand up and writer I ta… https://t.co/WM1aCijPNr +06/28/2018,Comedians,@TigNotaro,"Here I am, driving away! Thank you for reading. May several really good things happen to you today, and, I don't kn… https://t.co/iVc5LogWhf" +06/28/2018,Comedians,@TigNotaro,"RT @abbycohenwl: Me (texting): Help I'm in the pantry hiding from the murderer +Murderer: Probably shouldn't have used speech-to-text" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: She: But WHY are you breaking up with me? Please tell me honestly. +He (sigh): Ok It's...your ""signature sex move"" +She: Jud…" +06/27/2018,Comedians,@TigNotaro,"For every million you make, the government lets you break a law. Can't wait to violate thermodynamics!" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: Realized I never said ""unquote"" after reciting a famous poem in 10th grade. Sorry if you thought everything I've said sinc…" +06/27/2018,Comedians,@TigNotaro,"Friend: She picked dare over truth +Friend2: Oh god, she’s doing it! +Me: *reveals my actual personality*" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: How to apply mascara: +Pull wand from tube +Open your eyes like a haunted doll coming to life" +06/27/2018,Comedians,@TigNotaro,"Sadly, as one of many million Americans born with the Inability to Be Cool, I failed to mention my twitter handle.… https://t.co/qWY2lnOXdJ" +06/27/2018,Comedians,@TigNotaro,"As I was giving a dollar to a girl singing on the street today, I realized: it was Helen Henny, former vocalist fro… https://t.co/mUXp7ncpg8" +06/27/2018,Comedians,@TigNotaro,Not sure how I got the distinct privilege of tweeting for the incredibly fantastic Tig Notaro today! I hope I have… https://t.co/LVitelw1fJ +06/27/2018,Comedians,@TigNotaro,"Well folks, I’ve been @mikebigby and that’s a wrap! Thanks for the favs and, if you’re wondering if you should foll… https://t.co/kDA7J9kIY3" +06/27/2018,Comedians,@TigNotaro,RT @MikeBigby: Would be funny if like a guy who was a werewolf got mooned by some dudes ass and it worked +06/27/2018,Comedians,@TigNotaro,"It’s late and it’s dark so I threw something appropriately spooky together for you, enjoy! https://t.co/kzWrGBoKc3" +06/26/2018,Comedians,@TigNotaro,"RT @MikeBigby: u guys do know that when u say ""frig"" we ALL know what you mean? At this point u might as well just say ""frog pig"" its not e…" +06/26/2018,Comedians,@TigNotaro,"Hey @beyonce it’s me tig, your close personal friend, just wanted to let u know about this cool guy I discovered… https://t.co/HRz35XciRZ" +06/26/2018,Comedians,@TigNotaro,RT @MikeBigby: https://t.co/vFVrdb6QXe +06/26/2018,Comedians,@TigNotaro,"As well as jokes, I want to use this platform for something good, something I really care about - pressuring… https://t.co/Ny7Mg2PSMu" +06/26/2018,Comedians,@TigNotaro,"Again, Just kidding, I respect @lin_manuel. I respect him and he respects me. It’s mutual. He knows who I am. Don’t… https://t.co/TvPWVLWjSL" +06/26/2018,Comedians,@TigNotaro,"I’m just kidding, I’ve not seen Hamilton. I’m from the UK. Not heard of it? Oh, it’s just this little old place whe… https://t.co/nyPuPs3qfd" +06/26/2018,Comedians,@TigNotaro,"Got major stagefright, like when you’re trying really hard to pee but you can’t go because you feel like people are… https://t.co/rz26XY4bZQ" +06/26/2018,Comedians,@TigNotaro,Hey it’s ya boy @mikebigby or should I say mike TIGBY!! Off to a good start. Anyway my best friend tig and i were h… https://t.co/5vC9GDiKlD +06/26/2018,Comedians,@TigNotaro,"Hey everyone, it's been really awesome being Tig for a day. Be kind to each other! + +🌵💚 + +- Dave" +06/25/2018,Comedians,@TigNotaro,"RT @batkaren: LOOK AT ME, she screamed from a tiny corner on a speck of dust circling a small star, one of billions in a galaxy, one of bil…" +06/25/2018,Comedians,@TigNotaro,"After you die, do you get to see the deleted scenes from your life?" +06/25/2018,Comedians,@TigNotaro,"HIM: No sensible man will take you dancing in your bikini! +ME: It's OK. I'm going with a little moron." +06/25/2018,Comedians,@TigNotaro,"RT @Woody_B_: {Things I know about bears} +Bear in an ascot = sort of funny dork. +Bear in a hat and tie = funny bear who steals food. +Bear i…" +06/25/2018,Comedians,@TigNotaro,"ME: I'm building airplanes from these blueprints. +ROB: They'll never fly. +ME: Yeah, I have to fold them first." +06/25/2018,Comedians,@TigNotaro,RT @dave_cactus: A fart is a wish a butt makes. +06/25/2018,Comedians,@TigNotaro,"If a tree falls in the woods and no one is around, will anyone know? Yes, thanks to the TreeAlert™ Pendant!" +06/25/2018,Comedians,@TigNotaro,"Good morning! It's me, @dave_cactus, and today I'll be TIG NOTARO. + +T- The +I- Internet's +G- Greatest + +N- Nonsense +O… https://t.co/VlAiRaQ2pU" +06/23/2018,Comedians,@TigNotaro,"Friends, it's been my pleasure to entertain you today! If anyone is in the market for a silly writer, I strongly re… https://t.co/BKf9MI92M5" +06/22/2018,Comedians,@TigNotaro,RT @caraweinberger: 10 Women You Won't BELIEVE until a Man Says the Exact Same Thing +06/22/2018,Comedians,@TigNotaro,"Me: I have to pee +Dad: [pulling over] Go in the woods +Me: [walking through the woods for an hour] I don't see a sin… https://t.co/LpKRWY8ZJd" +06/22/2018,Comedians,@TigNotaro,Sometimes the big spoon is the most fragile spoon of all. +06/22/2018,Comedians,@TigNotaro,"RT @markedly: Always the ice tray refiller, never the ice cube enjoyer" +06/22/2018,Comedians,@TigNotaro,"RT @markedly: You're darn right I abuse drugs. I see a drug, I punch the crap out of it. Get lost, drugs." +06/22/2018,Comedians,@TigNotaro,"Hello, yes, I couldn't help noticing you from across the room. If it's not too forward, may I have the pleasure of… https://t.co/Yu4jk70ekg" +06/22/2018,Comedians,@TigNotaro,"RT @markedly: Spanish: The h is silent +English: Many letters can be silent +French: All letters are meaningless, every living thing is born…" +06/22/2018,Comedians,@TigNotaro,"Hiya, folks! This is @markedly tweeting for the amazing Tig Notaro and enjoying a persimmon for the first time ever… https://t.co/MkziN8O9Mu" +06/22/2018,Comedians,@TigNotaro,Heyyyyy Tulsa!!! https://t.co/C2rus1d78V +06/22/2018,Comedians,@TigNotaro,"RT @emilyrschmidt: It's so super easy to wear a jacket that *doesn't* say ""I don't really care,"" like, I've gone my whole life not even wea…" +06/21/2018,Comedians,@TigNotaro,"Friends, that’s it for me today!! This has been rad. Thanks for reading my words and looking at my dang face. + +Fol… https://t.co/96lecbKWBk" +06/21/2018,Comedians,@TigNotaro,RT @ohheyohhihello: stop naming your babies James. name him Jame. he is one Jame. +06/21/2018,Comedians,@TigNotaro,Walking out of a doctor's office and realizing you forgot how to get back to the lobby is one of those human experi… https://t.co/SEbhUUZ99A +06/21/2018,Comedians,@TigNotaro,"RT @ohheyohhihello: Today I drove through a huge puddle that splashed up under my car and laughed to myself as I whispered, ""car bidet.""" +06/20/2018,Comedians,@TigNotaro,"Friends, you deserve to be in love with someone who respects you, treasures you, and doesn’t order chicken tenders at every restaurant." +06/20/2018,Comedians,@TigNotaro,RT @ohheyohhihello: one or two questions about the third picture https://t.co/lrSxa2TEO9 +06/20/2018,Comedians,@TigNotaro,The bicycle was invented over 200 years ago and we still haven’t invented a seat that supports more than the middle third of a butt. +06/20/2018,Comedians,@TigNotaro,I recently met a girl who always carries an extra pair of underwear in her bag. Anyone with that level of crisis pr… https://t.co/GVFBKMCi6d +06/20/2018,Comedians,@TigNotaro,RT @ohheyohhihello: life hack https://t.co/y8Ia9P8cLc +06/20/2018,Comedians,@TigNotaro,Hellooooooo my friends! I’m @ohheyohhihello (or Kelly for short) and I have the pleasure of tweeting for Tig today!… https://t.co/IkwcarqhBe +06/20/2018,Comedians,@TigNotaro,"Whoooo I had a blast being Tig today thanks y'all +If you liked my jokes and are hungry for more, you can: head ove… https://t.co/iDWwOe4BPK" +06/20/2018,Comedians,@TigNotaro,RT @isabelzawtun: We cut open the cake at the gender reveal party and out spill thousands of fire ants. The guests howl. FIRE ANTS ARE MOST… +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: The local children surround me, trying to build a pyre. I'M NOT A WITCH, I shriek, my witch-like shrieking doing me no fa…" +06/19/2018,Comedians,@TigNotaro,"It's not WEIRD, eating 8 spiders per year makes me AVERAGE" +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: When I was 6 my uncle caught a moth in his mouth, walked outside, opened up and the moth flew away into the night. I thin…" +06/19/2018,Comedians,@TigNotaro,"""Oh, I don't want to be pushy, whatever you want is fine,"" I smile nervously + +The genie sighs, exasperated" +06/19/2018,Comedians,@TigNotaro,"The biggest baseball on record weighed 23 lbs and was thrown by Bo ""Meat Fist"" Jibbson, who missed home plate entir… https://t.co/NFInsqEoIv" +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: The scene in which The Little Mermaid learns the true purpose of a toilet, having lived her whole life bereft of a human…" +06/19/2018,Comedians,@TigNotaro,Excuse me but have you considered spending your entire day googling Russian glamour shots https://t.co/TnR7RMi029 +06/19/2018,Comedians,@TigNotaro,"Put your hands together for THE INDIGO GIRLS! Haha just kidding it's me, @isabelzawtun, freaky-fridaying with Tig t… https://t.co/FwLPEagCcQ" +06/19/2018,Comedians,@TigNotaro,"It's been amazing tweeting for Tig today! That's a picture of me and my fam below! If you liked the tweets today, f… https://t.co/Gshjj5zvhe" +06/19/2018,Comedians,@TigNotaro,"RT @AdamBroud: (Doctor's Office) +Me: So I guess some have innies and some just have outies huh? + +Gynecologist: No" +06/19/2018,Comedians,@TigNotaro,"Me: Welcome to my vegan zoo! + +Friend: This…this is just a garden + +Me: *holding up baby carrots* They've had a litter" +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: Me trying to communicate that I'd rather not do something: Sure +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: Person who loves LaCroix: *Eating a scented candle* this is also good +06/18/2018,Comedians,@TigNotaro,"Jesus: If your right eye offends thee, pluck it out. Like Carl here did. Right Carl? + +One-eyed Carl: Once again, I… https://t.co/D13Q2FnBBk" +06/18/2018,Comedians,@TigNotaro,RT @TheFoxTheatre: We're two days away from an unforgettable night of comedy with @IAmWandaSykes & @TigNotaro on 6/20 😂🤣 Secure great seats… +06/18/2018,Comedians,@TigNotaro,"RT @AdamBroud: HER:I love Tolstoy's take on the human moral struggle +ME:*Trying to impress* See I prefer Tolstoyee 3 where Woody was in the…" +06/18/2018,Comedians,@TigNotaro,RT @ppacutah: Get your laughs on for a good cause: @TigNotaro will be here next week! Get your tickets now before they are gone with code '… +06/18/2018,Comedians,@TigNotaro,"Scientist: Sure, we can discuss string theory + +Scientist that's actually a bunch of cats stacked in a lab coat: Oh hell yeah" +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: My hostages' family is going to eat this up. https://t.co/8mBTGdo7h4 +06/18/2018,Comedians,@TigNotaro,"I'm @AdamBroud and I'll be tweeting for Tig today! I perform improv at @ImprovBroadway, I write sketch for… https://t.co/JqvjOeTDMX" +06/16/2018,Comedians,@TigNotaro,"Hello, thank you for letting me (@sug_knight) tweet as Tig today. + +Here’s a picture of me when I looked most like… https://t.co/2KCCuucGIL" +06/16/2018,Comedians,@TigNotaro,"I'm writing a book, it's basically like War & Peace but it's not set in the napoleonic era & it's about snakes and the snakes are on a plane" +06/16/2018,Comedians,@TigNotaro,People who take fast showers just don't spend enough time pondering their own mortality while they're in there. +06/16/2018,Comedians,@TigNotaro,I don’t have anything I want to plug on here but I DO want to remind everyone that Alanis Morisette and Dave Coulie… https://t.co/hPPwK2xBaO +06/16/2018,Comedians,@TigNotaro,RT @sug_knight: https://t.co/qza1GO9Nzy +06/16/2018,Comedians,@TigNotaro,Oh it’s different than I remember but I trust the process https://t.co/ebk0WlLV10 +06/15/2018,Comedians,@TigNotaro,"RT @sug_knight: I’ll find you, Richard https://t.co/L6k7WolF3r" +06/15/2018,Comedians,@TigNotaro,What if true enlightenment is just accepting that abs are made in the kitchen? +06/15/2018,Comedians,@TigNotaro,"RT @sug_knight: Me: while you're up there let's do a Spider-Man kiss +My dental hygienist: still no" +06/15/2018,Comedians,@TigNotaro,"Hello everyone it’s me, @sug_knight, tweeting for Tig. Everything I say will be a subtweet at Taylor Dayne. EVERYTH… https://t.co/Z17U8UioCE" +06/15/2018,Comedians,@TigNotaro,guys I've been @zakagan and I'm done tweeting for today. A lot of people don't know this but I'm actually a minor-l… https://t.co/t15xCnQWhj +06/15/2018,Comedians,@TigNotaro,"toy story 3 would be more emotional if the toys were bionicles, and instead of Andy it was me, and [i’m sobbing now… https://t.co/wLSeoueVp9" +06/14/2018,Comedians,@TigNotaro,"it's cool when a dessert has a hint of something, like i'm biting into a tart and suddenly it goes ""your wife's death was not an accident""" +06/14/2018,Comedians,@TigNotaro,why does Charles Darwin always look like you could insert a CD-ROM into his mouth https://t.co/zMJXDYyJzs +06/14/2018,Comedians,@TigNotaro,why aren’t there more satanic masses at the pentagon? seems perfect for it +06/14/2018,Comedians,@TigNotaro,Tig is in Atlanta June 20! Tix here: https://t.co/Nuu3nI26II +06/14/2018,Comedians,@TigNotaro,"AVOCADO RIPENESS + +underripe = wet styrofoam +ripe = god's unsalted butter +overripe = sunscreen that's been cursed by a witch" +06/14/2018,Comedians,@TigNotaro,thought I would use this opportunity to share my tinder bio. looking for someone special!! https://t.co/tD5RqvfmCs +06/14/2018,Comedians,@TigNotaro,"RT @zakagan: Old M&M’s commercials: the chocolate that melts in your mouth, not your hand + +New M&M’s commercials: hey, maybe you can fuck t…" +06/14/2018,Comedians,@TigNotaro,hey gang I'm @zakagan and I'll be tweeting for Tig today. True story: I once got written up at work for listening t… https://t.co/SviOb91JPp +06/14/2018,Comedians,@TigNotaro,hi! this is still @freshhel 😈 if u liked all this nonsense please follow me On Here & maybe come to a show if you’r… https://t.co/EoRSXOwK7B +06/14/2018,Comedians,@TigNotaro,"is bi visibility an issue? yea +is it our fault for wearing so much camo? absolutely" +06/14/2018,Comedians,@TigNotaro,would love an ice cold glass of $700 +06/13/2018,Comedians,@TigNotaro,CARTOON CATS: WHO'S HOT & WHO'S NOT pt 2 https://t.co/TWz20QaUXj +06/13/2018,Comedians,@TigNotaro,CARTOON CATS: WHO'S HOT & WHO'S NOT pt 1 https://t.co/YuqEYrMcgU +06/13/2018,Comedians,@TigNotaro,"people think that being bi means you are confused. No, it means you wanna fuck the double dragon from Dragon Tales" +06/13/2018,Comedians,@TigNotaro,me stealing batteries from work to put in my vibrator: This Is What A Femnist Looks Like :) +06/13/2018,Comedians,@TigNotaro,"baby in flip flops: cute +5 yr old in flip flops: cute +10 yr old in flip flops: please keep this THING very far away from me !!!!!!" +06/13/2018,Comedians,@TigNotaro,hello it is me @freshhel 🚨 pictured here getting brunch with your mom https://t.co/vFTzeZY7HX +06/13/2018,Comedians,@TigNotaro,RT @DogDaysTheFilm: Unleash the love August 10 💙 Watch the official trailer for #DogDays now 🐾 https://t.co/VzYF9YnNs6 +06/13/2018,Comedians,@TigNotaro,"I've been @GraceGThomas. + +I'm a Senior Contributing Writer @ClickHole, I contribute to @TheOnion and I'm trans as h… https://t.co/4mQ61sapYr" +06/13/2018,Comedians,@TigNotaro,recent art project https://t.co/Wby92LpTVB +06/12/2018,Comedians,@TigNotaro,"When I visited the Pulse memorial last year, I was struck by how busy it was. Huge Wendy's across the street, a man… https://t.co/n3QECz6BPw" +06/12/2018,Comedians,@TigNotaro,We must stop Jim Davis from making Garfield real. https://t.co/sPMtUUEqgs +06/12/2018,Comedians,@TigNotaro,Utah!! Tig will be there supporting Planned Parenthood next week. Grab discounted tickets below! https://t.co/He7otijbHq +06/12/2018,Comedians,@TigNotaro,"Jackie Chan Killed My Dad But 'Rush Hour 2' Made Up For It + +Mr. Bekemeyer 2nd Hour Health Class - Mental Health Uni… https://t.co/dV7lAmfzhR" +06/12/2018,Comedians,@TigNotaro,"AM I TURNING INTO SPIDER-MAN? + +A Science Project For The 3rd Grade Science Fair + +By Grace Thomas https://t.co/RWcYUyM9aK" +06/12/2018,Comedians,@TigNotaro,"These are my notes on The Great Gatsby. + +Please let me know if I missed anything, the test is tomorrow!! https://t.co/S1P1xfi2tF" +06/12/2018,Comedians,@TigNotaro,RT @GraceGThomas: Man Caves are OUT! Genderless Crying Dens are IN! +06/12/2018,Comedians,@TigNotaro,"Wow, hello! I'm @GraceGThomas! Tig adopted me so that I'm legally required to manage her Twitter account. + +I'll be… https://t.co/FmNUFhsgDQ" +06/12/2018,Comedians,@TigNotaro,"What a wild ride it’s been! Thanks for tuning in. Folks, the terrible truth is that I’m a very talented painter, an… https://t.co/fFH9QD5IRP" +06/12/2018,Comedians,@TigNotaro,Imagining mr bean getting his huge ass stuck in a vase at the horse track. that guy is almost unbelievable +06/12/2018,Comedians,@TigNotaro,RT @coolturtleneck: This Trans Person's Selfies Before and After Transitioning Will Leave You Speechless... https://t.co/mR3yGdndJC +06/11/2018,Comedians,@TigNotaro,"Welcome to the kissing factory!! 😗 I’ll be ur foreman and shift manager :) :) :) +You may not join a union" +06/11/2018,Comedians,@TigNotaro,RT @rachel_kaly: me being sworn into the Supreme Court: I solemnly swear I am the femme Bruce almighty +06/11/2018,Comedians,@TigNotaro,"I want to b urban planner :) “Hello, mayor? Yes the train will go here... and of course it will be free. Any questions bich?”" +06/11/2018,Comedians,@TigNotaro,I live with my parents and just had a very real escalation with my dad that ended in me yelling “if you touch my p… https://t.co/hIwiliTNG6 +06/11/2018,Comedians,@TigNotaro,"Dear diary, + +I am jealous of every shark" +06/11/2018,Comedians,@TigNotaro,RT @coolturtleneck: Just got back from the gender summit. Cis ppl said trans ppl can get guaranteed safety in public spaces if we stop draw… +06/11/2018,Comedians,@TigNotaro,Good morning to my new friends and many new enemies! My name is Lukey Walden (@coolturtleneck) and due to circumsta… https://t.co/reEuXkGcFu +06/10/2018,Comedians,@TigNotaro,RT @Honda5gs: @TigNotaro @netflix I’m happiest when I’m grilling. https://t.co/fj9YU96X4V +06/10/2018,Comedians,@TigNotaro,"Have you watched Tig's new @netflix special ""Happy To Be Here""? Tweet a pic of the place where you're happy to be! #happytobehere" +06/09/2018,Comedians,@TigNotaro,this has been such a wild day for me....... the good news is that the high of this day will continue forever and i… https://t.co/bFYwgvFi94 +06/09/2018,Comedians,@TigNotaro,pic of me giving myself space to think about an emotionally turbulent day but then accidentally also thinking about… https://t.co/w3LFLcmW0X +06/09/2018,Comedians,@TigNotaro,i’m sorry everyone :((( the pressure got to me and all i could think to do was retweet tylenol promotional content… https://t.co/IN1dGfru8G +06/09/2018,Comedians,@TigNotaro,"a ship in a harbor is safe. the good news is that that is precisely what ships are for. if ur ship is in a harbor,… https://t.co/ulysk6Sw14" +06/08/2018,Comedians,@TigNotaro,BEST case scenario broadly speaking???? a cat and a bird become friends :) +06/08/2018,Comedians,@TigNotaro,today is a really hard day for a lot of ppl. i know that i am personally working to counter my negative thoughts wi… https://t.co/sqXLxL5NWY +06/08/2018,Comedians,@TigNotaro,RT @ALT1057FM: Go see @iamwandasykes and @tignotaro at @TheFoxTheatre for a Night of PRIDE Comedy! Your chance at tickets coming this hour!… +06/08/2018,Comedians,@TigNotaro,"this pic of mariah is all of us - living through pain, honestly and as best we can. not hiding it, but not letting… https://t.co/AhZo6hfBRe" +06/08/2018,Comedians,@TigNotaro,RT @chunkbardey: kinda absurd that I still constantly have to explain that Dora was a good explorer because of (not in spite of) her abilit… +06/08/2018,Comedians,@TigNotaro,hmmm i guess my VERY quick question is this: am i good enough +06/08/2018,Comedians,@TigNotaro,"RT @AM2DM: Full interview: @TigNotaro joins #AM2DM to talk about her new Netflix special, #MeToo, working with Jennifer Aniston, and more h…" +06/08/2018,Comedians,@TigNotaro,hello everyone i am @chunkbardey and i am tweeting for tig today. i know everyone is sad so i thought i would share… https://t.co/LeBJxcpxHC +06/08/2018,Comedians,@TigNotaro,"well folks.. i am @rachel_kaly and this has been a doozy! I’d like to quickly come out to my estranged father, a Mo… https://t.co/PrYaxMcUN4" +06/08/2018,Comedians,@TigNotaro,"RT @NetflixIsAJoke: .@tignotaro is the life of the party, but mainly when she doesn't know anyone there. Happy To Be Here, now streaming. h…" +06/08/2018,Comedians,@TigNotaro,"i am totally just like one of the guys! +1) my favorite hobby is posting a picture of my significant other on social… https://t.co/AqlzvJN3SS" +06/08/2018,Comedians,@TigNotaro,I actually originally pitched cash cab but da set up was diff: I hail every cab in NYC looking for my estranged fat… https://t.co/hVmAVeNBjI +06/07/2018,Comedians,@TigNotaro,"rough draft of my bucket list: +-get @KellyRipa to call me sir +-get an award for getting asthma from 9/11 or learn t… https://t.co/x6ScKF1qah" +06/07/2018,Comedians,@TigNotaro,RT @rachel_kaly: Hi sluts👋 im a thin and white 20-something girl who weArs sheer clothes so u can always see my nipples 🤷‍♀️ i co-opt black… +06/07/2018,Comedians,@TigNotaro,howdy.I have a new idea for episode of “friends” reboot. as it turns out chandler died as a roadie for Dane cook so… https://t.co/5ROSktVosF +06/07/2018,Comedians,@TigNotaro,"just got kicked out of the army bc all I knew in morse code was ""dam Daniel"" :( I understand why they let me go but I can still Be Upset :(" +06/07/2018,Comedians,@TigNotaro,"RT @rachel_kaly: doctor: do you have any history of eating disorders +me: no +doctor: ok well that’s g— +me: I have a HERstory of eating dis…" +06/07/2018,Comedians,@TigNotaro,#BentzenBall tickets are available now! Feat: @dopequeenpheebs @cameronesposito @jvn @RheaButcher @MichelleButeau… https://t.co/RExL7tH7Gw +06/07/2018,Comedians,@TigNotaro,I go to da Apple store and I raise my hand like it is school. Usually I will stay there all day and I do not get ca… https://t.co/izvKCstEYI +06/07/2018,Comedians,@TigNotaro,"hello, wats up, my name is @rachel_kaly and i will unfortunately for u being tweeting for tig today! tig and I have… https://t.co/QaQH6CuSWs" +06/07/2018,Comedians,@TigNotaro,RT @manicsocratic: @MonicaLewinsky @TigNotaro @colbertlateshow Snagged an HQ vrsion of the clip. Hope this helps! https://t.co/3mfPPk71g9 +06/07/2018,Comedians,@TigNotaro,RT @MonicaLewinsky: so. apparently the badass @TigNotaro said something generous about me last night on the @colbertlateshow but i can only… +06/07/2018,Comedians,@TigNotaro,"omg it wasn’t a bug LOL!!!! shaking my head ! i have to go make dinner for my Family and the neighbors + +Logging Off… https://t.co/jN7JoD7Dul" +06/06/2018,Comedians,@TigNotaro,this is my Fave part of #Hitch the movie -Tig N. https://t.co/R3Jne9E87i +06/06/2018,Comedians,@TigNotaro,KNew It!!!!!!! Jen is crazy!!!!! i’m gunna give her pink eye w my finger so we can be bedridden together (as i have… https://t.co/Tx3SfhecAk +06/06/2018,Comedians,@TigNotaro,okay...what the FUCK....WHO put this BABADOOK in my ROOM!!!! I am Not smiling this is a Strained face bc the bug l… https://t.co/YzGcYqi8MA +06/06/2018,Comedians,@TigNotaro,BREAKING NEWS!!! i will be playing Big Fuck in PENCIL: The Movie!!!!!!!!! omw 2 Dr. Plippy for the Bug has burrowed… https://t.co/6vLsYH7PYj +06/06/2018,Comedians,@TigNotaro,Tig was on @colbertlateshow last night talking @StarTrek! https://t.co/pzTN2XaJiO +06/06/2018,Comedians,@TigNotaro,MFW THE BUG IS CRAWLJNG AROUND THE PERIMETER OF MY HOLE NOW I COAXED IT OUT BY PLAYING HOT CROSS BUNS ON RECORDER L… https://t.co/y2vpCxgly8 +06/06/2018,Comedians,@TigNotaro,uhhhh ya.....there’s a story behind this candle...so my Wife and I were on a @CarnivalCruise and the Captain asked… https://t.co/fxbzIH8OFK +06/06/2018,Comedians,@TigNotaro,"LITERALLY HILARIOUS HOW THE #MEDIA #LIES 2 US!!!!!! +1.not vegan as I ONLY eat burger and peas +2. ALICIA SILVERST… https://t.co/3U40WVVvyA" +06/06/2018,Comedians,@TigNotaro,ok so dis baby farted and Jen Anniston wer like..Tig did U toot?? i were like no it were UR BABY! jen hit me &my ea… https://t.co/ymylY7EYPV +06/06/2018,Comedians,@TigNotaro,hi dis is actually tig today i’m in the garden thinking about a deliciosó pot sticker from @CheesecakeFactory and u… https://t.co/0Chf3iNdS2 +06/06/2018,Comedians,@TigNotaro,"RT @colbertlateshow: I have no idea what I’m saying on that show, all joking aside. - @TigNotaro who is on this new season of #StarTrek #LS…" +06/06/2018,Comedians,@TigNotaro,"goodbye.... this has been brian ffidymen... it sure was fun tweeting from this account for a while... + +tomorrows ju… https://t.co/DbgPSYuI66" +06/06/2018,Comedians,@TigNotaro,"self care night: +👍phone OFF +👍bottle of raspberry stoli +👍play nba 2k15 on easy + win by 90 points in my room (favorite light on) +👍4x a week" +06/05/2018,Comedians,@TigNotaro,Hope this is helpful. Guide to choosing a bank: https://t.co/gmD62X0DOs +06/05/2018,Comedians,@TigNotaro,I’ve had a really long day of being really calm y’all! needless to say now I am really pissed off... +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: Anyone care to explain this? #trumpsballproblem https://t.co/UiuBjE0Hu5 +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: i took the #DunkinDonutsChallenge https://t.co/HQUBnSLL11 +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: 20 $ bank prank https://t.co/YmhGSWG5Bw +06/05/2018,Comedians,@TigNotaro,I hate tables. It’s stupid that you have to lean over it to get close enough to your friend to talk- usually knocki… https://t.co/EGZ07b7kMT +06/05/2018,Comedians,@TigNotaro,"RT @brian4showbiz: 2018 is the year that I finally do something that I’ve been meaning to for a while, carry my controller around https://t…" +06/05/2018,Comedians,@TigNotaro,"hello yall!!!! my name is brian fiddybment @brian4showbiz + +I’m very passionate about cardio, red wine, whatever re… https://t.co/UdI6uYTOaS" +06/05/2018,Comedians,@TigNotaro,"Alright folks. That’s all for me, @joecastlebaker ... all in all this day has been one of THE days of my life... Hi… https://t.co/RhOvcbkXqu" +06/05/2018,Comedians,@TigNotaro,"“Mom. Dad... I’m same sex...” -me coming out. + +I think Tig is really gonna like this one :)" +06/04/2018,Comedians,@TigNotaro,I just found out on Ancestry dot com that my great great grand pa was a golden retriever 🤯🤯🤯 +06/04/2018,Comedians,@TigNotaro,"I am so excited :) my pilot “What if Spider Man Was In World War 1” has just been picked up LinkedIn :-) + +I think… https://t.co/F4fqM06khn" +06/04/2018,Comedians,@TigNotaro,"RT @joecastlebaker: I hate how on HBO when a character's throat is slit, they die immediately. As someone whose throat has been slit countl…" +06/04/2018,Comedians,@TigNotaro,"Hello... I’m @joecastlebaker .... + +i’m tweeting for Tig tod ay :) + +A pic of me below... I think Tig is really gonn… https://t.co/wgX1JFd59o" +06/02/2018,Comedians,@TigNotaro,"""Soooooo... who's the bottom and who's the top?"" - me talking to a disassembled box. + +Happy pride month. This has b… https://t.co/IOUrV0171B" +06/02/2018,Comedians,@TigNotaro,"A fourth #comic, because everything I write needs visual aids. https://t.co/86h3SHk8qf" +07/01/2018,Comedians,@mariabamfoo,"RT @STAR999radio: Enter to win tix to @mariabamfoo playing @StressFactoryCT July 6th! + +https://t.co/SFYvaQffq4" +06/30/2018,Comedians,@mariabamfoo,RT @chrissyteigen: There are 600+ #FamiliesBelongTogether events happening TOMORROW. I’ll be speaking and introducing @johnlegend in downto… +06/30/2018,Comedians,@mariabamfoo,RT @wkamaubell: Whoah! #PrivateSchoolNegro on @NetflixIsAJoke is Revolutionary Ballet Dancer Approved! #RBDA https://t.co/GfTzFLDWrR +06/30/2018,Comedians,@mariabamfoo,"RT @MHKollock: Thank you so much for the laughs, @mariabamfoo and @jackiekashian! I am grateful for your visit to the Land of Enchantment.…" +06/30/2018,Comedians,@mariabamfoo,"RT @TransWrites: RT so your trans followers can see! + +If you are a trans comedy writer, please send an email to gracethomas@transwrites.or…" +06/29/2018,Comedians,@mariabamfoo,"Yay, team! https://t.co/BLYm3GF7mr" +06/29/2018,Comedians,@mariabamfoo,RT @MHKollock: I can’t believe I finally get to see the magical @mariabamfoo tonight here in #ABQ! She is by far my favorite professional f… +06/29/2018,Comedians,@mariabamfoo,Thank you for coming out to the CASINO! 7 and 9:40 (?) PM shows- we'll see you there. I have been to to kick ass… https://t.co/anxw5dy5aV +06/29/2018,Comedians,@mariabamfoo,So nice to meet you as well! We did it! https://t.co/XDkjvmSdGI +06/29/2018,Comedians,@mariabamfoo,"Thanks so much for coming out and listening to my act across a tiny coffee shop table, @awoo_crouse! Very fun. Saf… https://t.co/q7nT5ObpVK" +06/28/2018,Comedians,@mariabamfoo,@LWVNewMexico Hello! I'm a comedian who will be doing shows at the Santa Ana Casino! If you would like to register… https://t.co/fSs18pNETR +06/28/2018,Comedians,@mariabamfoo,RT @MeowWolf: @alynes @mariabamfoo @jackiekashian We'd love for y'all to be our guests here in Santa Fe. Four passes will be under Maria's… +06/27/2018,Comedians,@mariabamfoo,"RT @PickleCatShow: @mariabamfoo ABQkarting. +Always. +Be. +Qkarting. + +Put that down, Qkoffee is for Qklosers!" +06/27/2018,Comedians,@mariabamfoo,RT @SwoopNine: Maria Bamford at an ABQ casino? What luck! https://t.co/NWNcA8KuTd +06/27/2018,Comedians,@mariabamfoo,Its actually fine- it will help me rehearse! Fresh crowd! https://t.co/LXXHpWraiN +06/27/2018,Comedians,@mariabamfoo,"Of course. But no pastries. NO PASTRIES. Ok, 70/30 split on pastries. https://t.co/B1o4qYa4Nz" +06/27/2018,Comedians,@mariabamfoo,Yes! message me and I can do morning of Friday? I'll pick a place near me. https://t.co/TlaxzHdMV9 +06/27/2018,Comedians,@mariabamfoo,@awoo_crouse Hey Wyatt. Message me if you'd like to meet for coffee. I'm not joking! It is for reals. I always like to rehearse. +06/27/2018,Comedians,@mariabamfoo,7 AND 9 PM SHOWS!! New Mexico! Friday! https://t.co/Q49pmSetoq +06/27/2018,Comedians,@mariabamfoo,RT @OfTheRose6: @TerilynnS This will be an incredible show. If you don’t go at least get @jackiekashian latest album. https://t.co/1BELDcxW… +06/27/2018,Comedians,@mariabamfoo,"RT @bradengw: Drop everything, run downstairs (using the hand rail of course) and go see @mariabamfoo and @jackiekashian in @NewMexico @505…" +06/27/2018,Comedians,@mariabamfoo,"RT @zaniesnashville: 💥Here Comes Lady Dynamite!💥 +@mariabamfoo is heading to Zanies July 15 for one night only! Tickets are on sale now and…" +06/27/2018,Comedians,@mariabamfoo,RT @MattRogersTho: Today is very genuinely a great day 'cause @mariabamfoo is on @LasCulturistas and ya i guess it's an honor or whatever!… +06/26/2018,Comedians,@mariabamfoo,"RT @JFLLive: The star of @netflix's ""Lady Dynamite"", @mariabamfoo, will be LIVE in #Ottawa on September 26th at the @CentrepointeT! Tix: ht…" +06/26/2018,Comedians,@mariabamfoo,"Huh. That blows. I apologize for the limited thinking of my tour. If you can drive to a coffee shop, I will do t… https://t.co/qCX4tRXT2P" +06/26/2018,Comedians,@mariabamfoo,ABQkarting! Noted. https://t.co/Z30AQc5wmE +06/26/2018,Comedians,@mariabamfoo,NEW MEXICO! This FRIDAY at 7 PM w @jackiekashian! This is the only time I've been to New Mexico or Albuquerque. T… https://t.co/fKQpFiZsWm +06/26/2018,Comedians,@mariabamfoo,"@roryalsop Wowee! So nice to hear from you, Rory! Good times in Edinburgh basements!" +06/26/2018,Comedians,@mariabamfoo,RT @janetvarney: Any selfie that puts @mariabamfoo front-and-center is a.o.k. with me! @ifc #stanagainstevil https://t.co/GbnhJCFynN +06/26/2018,Comedians,@mariabamfoo,RT @RightOnPR: Need a laugh? @NPR recs comedy specials by @harikondabolu @solomongeorgio @cameronesposito @birbigs @mariabamfoo @guybranum… +06/26/2018,Comedians,@mariabamfoo,RT @ColorOfChange: RT to tell @amazon & @Apple to reject racism and protect the voting rights of Black and poor people in North Carolina. #… +06/23/2018,Comedians,@mariabamfoo,So cool to meet you and see your terrifying boot height! https://t.co/mhHvwfy4Jr +06/23/2018,Comedians,@mariabamfoo,"RT @Glibbyglopgloob: @asis @BuzzFeed @sweatmoustache @mariabamfoo +Let him do your hair next time! https://t.co/RQZDl7vPR2" +06/23/2018,Comedians,@mariabamfoo,It is true. I wish @angelcomedy was here. It's awesome. https://t.co/XCCgrttexn +06/23/2018,Comedians,@mariabamfoo,OHMIGOD! You give me hope that I can keep going. Happy you are a co-worker in the biz! Always room for more wonde… https://t.co/RYP0l7yPqU +06/23/2018,Comedians,@mariabamfoo,"This is a metaphor for Bamfooco, Inc. sales and marketing push. https://t.co/523QFHMtMl" +06/23/2018,Comedians,@mariabamfoo,RT @BellHouseNY: SEPT. 15: Few tickets remain for @mariabamfoo at The Bell House - get them while you can! https://t.co/OC6b0Y5F7Y https:/… +06/22/2018,Comedians,@mariabamfoo,RT @grantimahara: I’m doing an offbeat trivia show with @mariabamfoo called @GoFactYourPod this Sunday 6/24 at 7pm at Angel City Brewery in… +06/22/2018,Comedians,@mariabamfoo,"So saddened by this. Glad there were at least a few thousand, hardy protesters. https://t.co/pswQ1VrRzD" +06/22/2018,Comedians,@mariabamfoo,"RT @danagould: Willard’s Mill Hospital has a great staff. With Rob Cohen, @braunger and @mariabamfoo on the set of #stanagainstevil…" +06/20/2018,Comedians,@mariabamfoo,"RT @GoFactYourPod: https://t.co/lIdIi2IWK8 + +Los Angeles! + +5pm: @MattBesser vs. @lyricsaidwhaaa +7pm: @mariabamfoo vs. @grantimahara + +Plus…" +06/20/2018,Comedians,@mariabamfoo,"RT @bikebrh: @kathygriffin @jackiekashian @mariabamfoo @Anylaurie16 @LisaLampanelli and you. + +The @JackieandLaurie show has a great list of…" +06/20/2018,Comedians,@mariabamfoo,so nice to do! Putting a word in for my pal @jackiekashian and @JackieandLaurie ! https://t.co/7QT7ppaiPm +06/20/2018,Comedians,@mariabamfoo,"RT @amyschumer: Hey New York, I’m coming to @Pier17NY with my friends on 8/1! Tickets available here https://t.co/wNTBnIXmaT" +06/19/2018,Comedians,@mariabamfoo,"RT @J_Keith: I am excited for you to come see this show for free. + +Tickets here: https://t.co/i2D1MCxbDO + +@MattBesser @mariabamfoo @lyricsa…" +06/19/2018,Comedians,@mariabamfoo,RT @wkamaubell: What happens when someone is killed by law enforcement officers and there’s a lack of justice for this killing? How is the… +06/19/2018,Comedians,@mariabamfoo,RT @splcenter: Manuel Duran was simply doing his job as a journalist when he was unlawfully arrested and sent to a remote ICE detention cen… +06/19/2018,Comedians,@mariabamfoo,"RT @splcenter: In our efforts to provide legal representation to detained immigrants, we have seen multiple cases of fathers being separate…" +06/19/2018,Comedians,@mariabamfoo,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/19/2018,Comedians,@mariabamfoo,RT @barvonblaq: I don’t understand how a country obsessed with superhero movies doesn’t recognize supervillainy. +06/19/2018,Comedians,@mariabamfoo,"RT @pattonoswalt: Some audio while you joylessly chew on your KFC, @realDonaldTrump https://t.co/a6kkvVPFiI" +06/19/2018,Comedians,@mariabamfoo,"RT @wkamaubell: ""How is this not child abuse?"" - CNN's Jeff Zeleny +""Be more specific, please."" - Secretary Kirstjen Nielsen + +SHE👏🏿DOESN'T👏🏿…" +06/19/2018,Comedians,@mariabamfoo,RT @meganamram: Can some cool country please declare war on us and win?? +06/17/2018,Comedians,@mariabamfoo,RT @PortlandDSA: #AbolishICE https://t.co/Ye33GO87wC +06/17/2018,Comedians,@mariabamfoo,"Thanks for coming! Tonight @JoinTheDynasty, we raised $2,000 for the @ACLU_SoCal - so THANK YOU! https://t.co/G1LW43yum7" +06/17/2018,Comedians,@mariabamfoo,Thank you!!!! https://t.co/yo4WfXg8fL +06/17/2018,Comedians,@mariabamfoo,"RT @lapazylaunidad: If @netflix does not stop displaying the confederate flag on its home page every single day in order to promote ""White…" +06/16/2018,Comedians,@mariabamfoo,RT @thatsfunny: heyLA @JoinTheDynasty 8pm tonight @mariabamfoo 8:30pm @LargoLosAngeles @JuddApatow @BethStelling & more 10pm @ucbtla @guybr… +06/15/2018,Comedians,@mariabamfoo,@roadieric @jayemcbride @roadsidephil @rickoverton @PaulProvenza @jackiekashian @AniriaComedian @SarahKSilverman… https://t.co/2GlU3Hetob +06/15/2018,Comedians,@mariabamfoo,"RT @JFL42: .@JuddApatow describes @mariabamfoo as the ""funniest comedian in the world"" and who are we to disagree with that? Come see Maria…" +06/15/2018,Comedians,@mariabamfoo,Nice! https://t.co/Nj3y5QoRFU +06/15/2018,Comedians,@mariabamfoo,"@jcolburn1, I'm at Dynasty Typewriter downtown on Saturday and I'd love to make it a benefit for the @ACLU_SoCal. I… https://t.co/bSbGtwjU07" +06/14/2018,Comedians,@mariabamfoo,RT @DenofGeekUS: Stan Against Evil booked some seriously awesome guest stars to play monsters of the week in season three. https://t.co/oXb… +06/14/2018,Comedians,@mariabamfoo,RSVP to protest in your area! https://t.co/YqKXIAsYkg +06/14/2018,Comedians,@mariabamfoo,Just called! Let me know where to sit-in. https://t.co/bN65uz7OUR +06/14/2018,Comedians,@mariabamfoo,RT @emilynussbaum: Interesting thread https://t.co/DUlHtjWdcw +06/14/2018,Comedians,@mariabamfoo,GORGEOUS! https://t.co/yJcw1DKxaf +06/14/2018,Comedians,@mariabamfoo,RT @wkamaubell: My debut @NetflixIsAJoke stand-up comedy special #PrivateSchoolNegro comes out on June 26 WORLDWIDE! Here's a trailer NOW!… +06/14/2018,Comedians,@mariabamfoo,"RT @AFLCIO: Of the 10 most common jobs in Ohio, just two pay enough for a worker to afford a modest two-bedroom apartment. https://t.co/1ZB…" +06/14/2018,Comedians,@mariabamfoo,"RT @SenFeinstein: Happy #FlagDay! Today, let’s remember what our flag stands for: equality, opportunity, freedom and refuge for so many per…" +06/14/2018,Comedians,@mariabamfoo,"RT @SmartAssJen: I saw Cam do this live and was floored. It covers a lot of ground, goes in unexpected directions, is damn funny throughout…" +06/14/2018,Comedians,@mariabamfoo,"RT @TranslateRealDT: Imagine how much wasteful spending we’d save if we didn’t have... + +...Trump spending $67,000,000 on golf; +...Mnuchin s…" +06/14/2018,Comedians,@mariabamfoo,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Comedians,@mariabamfoo,"DULUTH, MN PROTEST TRUMP RALLY June 20th! It's happening! @perfectduluth https://t.co/MWH1Ii6W85" +06/14/2018,Comedians,@mariabamfoo,"Hilarious. Well, I'll ask around see what's going on in Duluth! I'd like to help. https://t.co/xmTTFvy1rg" +06/14/2018,Comedians,@mariabamfoo,"RT @JFLLive: The star of @netflix's ""Lady Dynamite"", @mariabamfoo, will be performing live for the first time in #Ottawa at the @Centrepoin…" +06/14/2018,Comedians,@mariabamfoo,DULUTH! @perfectduluth! https://t.co/MR5bla4au5 +06/14/2018,Comedians,@mariabamfoo,"RT @laurakrabappel: @mariabamfoo Hi Maria, There are protest actions planned across the US tomorrow in response to the Trump administration…" +06/14/2018,Comedians,@mariabamfoo,I feel similarly disappointed. I don't know what to do. https://t.co/nCvq5wriAK +06/14/2018,Comedians,@mariabamfoo,"RT @jacobsoboroff: Just finished tour, don’t even know where to start. + +One of the first things you notice when you walk into the shelter…" +06/14/2018,Comedians,@mariabamfoo,RT @cameronesposito: My new special is AVAIL NOW!! https://t.co/mrdDRgIvPt to stream free or purchase to benefit @RAINN https://t.co/bxied9… +06/14/2018,Comedians,@mariabamfoo,"YAY, @cameronesposito!!!!!!!!!! https://t.co/8HmU7BPawy" +06/14/2018,Comedians,@mariabamfoo,OH MY LORD. That's really disheartening. https://t.co/KhRsoNWm1l +06/14/2018,Comedians,@mariabamfoo,"My god, that is a typo. I do 60 minutes and then, tip into the nearest curtain. https://t.co/ZnC6oO9gkq" +06/12/2018,Comedians,@mariabamfoo,You look great! https://t.co/9lkGl7iEjU +06/12/2018,Comedians,@mariabamfoo,"RT @marcellacomedy: We have a super stacked and hilarious line up this week at Women Crush Wednesdays with Casey Balshem, Pallavi Gunalan,…" +06/12/2018,Comedians,@mariabamfoo,"RT @mindykaling: Guys! It's a good day! #Champions, the comedy show I wrote, produced, and star in, is now available on #Netflix internatio…" +06/12/2018,Comedians,@mariabamfoo,"RT @cameronesposito: Yesterday u raised $8k for @RAINN. What if we did it again today? + +Go to https://t.co/VfwqhnFlsz, watch ‘Rape Jokes’…" +06/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: Ophira Eisenberg is a national treasure and our accents are alike. See her in Philadelphia!! https://t.co/lpku4SzwnT +06/12/2018,Comedians,@mariabamfoo,RT @anylaurie16: https://t.co/TObKIG9esm https://t.co/zv45QJuxLB +06/12/2018,Comedians,@mariabamfoo,@drunkhistory @derekwaterss Have a drunk history pitch for the next season: The History of Alcoholics Anonymous. Th… https://t.co/e63zrfkTa6 +06/12/2018,Comedians,@mariabamfoo,"thanks for the shout-out, Dulce! So great seeing you on the Daily Show and killing it. https://t.co/fpQhMCSkFF" +06/12/2018,Comedians,@mariabamfoo,PHILLY! JULY 18th! My pal @ophiraeisenberg is coming to see you at 8 PM! She's WONDERFUL! https://t.co/GcB48blX2B +06/12/2018,Comedians,@mariabamfoo,RT @michaelianblack: Cameron is a goddamned national treasure is what she is. https://t.co/srCSXaZG2Y +06/12/2018,Comedians,@mariabamfoo,"RT @DivaDelux: Loving all the hilarious people on this list, especially @rileyjsilverman @chrissymeds @Party_Harderson @BisHilarious @Marga…" +06/12/2018,Comedians,@mariabamfoo,Very niiice! https://t.co/oY7cqgeftt +06/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: New hour from Esposito! You can stream it free from the website (https://t.co/jaWbpB4rZz) or donate to download a copy w… +06/12/2018,Comedians,@mariabamfoo,@cameronesposito NEW SPECIAL IS FREE! AND DONATES ALL PROCEEDES TO RAINN! ENJOY! https://t.co/JuTNLuLDXk +06/12/2018,Comedians,@mariabamfoo,Los Angeles! I'm at Dynasty Typewriter headlining downtown on SATURDAY! COME BY! Or take care of yourself and fal… https://t.co/i7R66CXbaG +06/12/2018,Comedians,@mariabamfoo,RT @andriakbarratt: Almost missed this! Don't make the same mistake! https://t.co/1Ce8ypt9ho +06/10/2018,Comedians,@mariabamfoo,"RT @guybranum: My book ""My Life As A Goddess"" was supposed to come out in June for #PrideMonth but I missed several deadlines! Pre-order it…" +06/10/2018,Comedians,@mariabamfoo,"Really loved this column by @SarajBenincasa (as well as her book, Real Artists Have Day Jobs!) https://t.co/lHDyApBQbn" +06/10/2018,Comedians,@mariabamfoo,"RT @thecomedybureau: #OnTheHorizon: +@jointhedynasty presents Season 1: The Prototype +https://t.co/M8pOKO12Hf https://t.co/ciLqWvohzp" +06/10/2018,Comedians,@mariabamfoo,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/09/2018,Comedians,@mariabamfoo,"RT @SteelStacks: These 11 NEW SHOWS are ON SALE NOW including @mariabamfoo, @MavericksMusic, @traecrowder, @JewdyGold, @luccadoes & more! I…" +06/08/2018,Comedians,@mariabamfoo,RT @justforlaughs: Every. Time. #TBT to 2006 with @mariabamfoo. https://t.co/WIDCOqH5kO https://t.co/mGwgiKBfzK +06/06/2018,Comedians,@mariabamfoo,You can - any time. They are complete and I'll tweet my next daytime show where I'm trying the new hour. And when… https://t.co/FrqlPaMEaA +06/06/2018,Comedians,@mariabamfoo,Hello T-shirt Lovers/Psych facility supporters: These are the final numbers in this Awesome Style. I'll then move… https://t.co/BFk7N3GCUc +06/06/2018,Comedians,@mariabamfoo,You had a great set! I love your stuff! Heard about you on dork forest radio with my pal @jackiekashian! I love t… https://t.co/OCYVuSU2hm +06/06/2018,Comedians,@mariabamfoo,"If it was cafe de leche in Altadena, it was me! I have been here all day. Always say hello and hello to your bf. https://t.co/FnURm9mom1" +06/06/2018,Comedians,@mariabamfoo,"RT @JFLLive: #Ottawa! @mariabamfoo is coming to the @CentrepointeT! + +#PugLife #MondayMood #MondayMotivation https://t.co/PY93imMrxn" +06/05/2018,Comedians,@mariabamfoo,"RT @800273TALK: You are enough. If you find yourself struggling, remember that the Lifeline is here for you, 24/7, at 1-800-273-TALK (8255)…" +06/04/2018,Comedians,@mariabamfoo,@derekwaterss Hey Derek! Great to see you at the Clusterfest. I had a Drunk History pitch (just for fun- might be good for someone) +05/31/2018,Comedians,@mariabamfoo,Agh. Can't do it due to RICH PERSONAL LIFE! But thank you!!!!!! https://t.co/CD64FXfbA2 +05/31/2018,Comedians,@mariabamfoo,"RT @thetinashow: @aparnapkin hello funny lady. @mariabamfoo is coming to Ottawa in the autumn...can you be next, please? <3" +05/31/2018,Comedians,@mariabamfoo,"RT @hoperhenderson: @Mother_Faulkner also if you have a spotify account, there are some great stand-up albums on there - I forever love @ma…" +05/31/2018,Comedians,@mariabamfoo,RT @AcmeComedyCo: We’re SUPERSIZING our marketing game for the queen @mariabamfoo!!! Don’t miss her at @theordway on October 20th! Tickets… +05/31/2018,Comedians,@mariabamfoo,RT @nsilverberg: I'm so excited for @clusterfest!! @RachelWenitsky and I will be doing the @Reductress podcast with two of my favorite comi… +05/31/2018,Comedians,@mariabamfoo,RT @JFLMTL: Add @mariabamfoo's love of pugs to the list of the hundred things we love about her 🐾 😍 #ArtistoftheWeek #JFLMTL https://t.co/… +05/29/2018,Comedians,@mariabamfoo,TORONTO! I’ll be @JFL42 in September! Pre-sale passes available now w/password 42COMICS https://t.co/eHVCVMQZHG +05/29/2018,Comedians,@mariabamfoo,NASHVILLE! I’ll be @zaniesnashville Sun. July 15! Two shows – on sale now! https://t.co/JLkdX1C2TX +05/29/2018,Comedians,@mariabamfoo,ORLANDO! I’ll be at Plaza Live Sat. July 14! Tix on sale this Friday. https://t.co/ZXe1Hx0lAp +05/29/2018,Comedians,@mariabamfoo,RT @karlhungus76: @TheDallasBatman @mariabamfoo https://t.co/wAQadElFjP +05/29/2018,Comedians,@mariabamfoo,RT @JFLMTL: This week's #ArtistoftheWeek is one dynamite lady! See @MariaBamfoo shake things up in Montreal at #JFLMTL on July 27. https:/… +05/29/2018,Comedians,@mariabamfoo,RT @standup: Your Joke of the Day from @mariabamfoo. https://t.co/d2gzy6Y4Pf +05/29/2018,Comedians,@mariabamfoo,"RT @Proteautype: This festival has become a vital part of Toronto. And once again, the lineup rocks. The Bammer, @mariabamfoo! The honorary…" +05/29/2018,Comedians,@mariabamfoo,"RT @pksfrk: Woot! Just got tix to see @mariabamfoo at @zaniesnashville in July! I've lost track of how many times I've seen her now, but A…" +05/29/2018,Comedians,@mariabamfoo,RT @GregProops: @ouldsmobile @JFL42 @sethmeyers @Jokoy @iamwandasykes @hannibalburess @chrisdelia @kenjeong @anthonyjeselnik @mariabamfoo @… +05/28/2018,Comedians,@mariabamfoo,Was just there. Ah well. https://t.co/49efdjH0Aj +05/28/2018,Comedians,@mariabamfoo,"RT @clusterfest: Go ahead - get your mouth on! + +@Reductress is bringing @itsmouthtime to #Clusterfest with special guests @mariabamfoo and…" +05/28/2018,Comedians,@mariabamfoo,"Thank you for this- hilarious. I go down fairly quickly, but with a mixed green salad, fresh raspberries, pine nuts… https://t.co/FW97F8KUk3" +05/27/2018,Comedians,@mariabamfoo,Thanks for the kind words!!! https://t.co/89Anh9j275 +05/27/2018,Comedians,@mariabamfoo,"It stuck! I went to Dr. Rodney Boone in glendale, CA and he has a bunch of therapists that work with him. I don't… https://t.co/HDno7cqsRe" +05/27/2018,Comedians,@mariabamfoo,Great to meet you too! See you around comedy! https://t.co/PDlt1EZ53i +05/27/2018,Comedians,@mariabamfoo,I'm so sorry- we had a really early flight to Cincinnati the next morning and Mama get ti-ti! Apologies! https://t.co/zfHEnw8b2r +05/27/2018,Comedians,@mariabamfoo,Thanks for driving so far!!! https://t.co/eB8f5WJYUk +05/27/2018,Comedians,@mariabamfoo,"Wowee Albe! I've never been and though I am a few years older than the billboard, I feel hopeful that I will be rec… https://t.co/miIoCj4Tum" +05/27/2018,Comedians,@mariabamfoo,RT @jbendery: Harvard labor professor: The NFL’s “take a knee” ban is flatly illegal https://t.co/d8AjWXwiKn +05/27/2018,Comedians,@mariabamfoo,"Thanks so much for coming out! My cousins came and were very impressed with the crowd. So, GOOD JOB! https://t.co/93yMa6JvbY" +05/27/2018,Comedians,@mariabamfoo,Thanks so much for coming all the way! https://t.co/eB8f5WJYUk +05/27/2018,Comedians,@mariabamfoo,Thanks so much for coming! What a lovely crowd!! https://t.co/bwFZ2G6Fqq +05/25/2018,Comedians,@mariabamfoo,"RT @jackiekashian: if this is my last tweet: +Republicans are upset because kneeling players are disrespecting white supremacy. That’s what…" +05/25/2018,Comedians,@mariabamfoo,"RT @AWolfeful: @GreenFrieda @mariabamfoo Current needs include: a freezer to store donated meals, rent for shelter, bus passes, pillows, un…" +05/25/2018,Comedians,@mariabamfoo,Wowee! https://t.co/i1tx1z7qPc +05/25/2018,Comedians,@mariabamfoo,RT @jerseylightning: I just finished watching @TigNotaro new special on Netflix. Absolutely amazing. And I realized the last few specials… +05/25/2018,Comedians,@mariabamfoo,RT @moviesandcool: Review: #LadyDynamite: Season 2' - The best show on television that you're not watching. @Netflix @mariabamfoo https://t… +05/25/2018,Comedians,@mariabamfoo,RT @TaftTheatre: .@MariaBamfoo is an empath & advocate & also so so funny!! Don’t miss her show at the Taft THIS SATURDAY! https://t.co/u7z… +05/25/2018,Comedians,@mariabamfoo,"RT @GayHorseDerek: .@mariabamfoo making @MayaRudolph break on Comedy Bang Bang pitching a business idea as ""home free conservative"" Claire…" +05/25/2018,Comedians,@mariabamfoo,RT @metrotimes: A delightfully awkward conversation with comedian Maria Bamford https://t.co/Ly0GBDOwNG @mariabamfoo +05/23/2018,Comedians,@mariabamfoo,RT @CincinnatiUSA: Come laugh with us when @mariabamfoo comes to @TaftTheatre: https://t.co/97jrYNk1nL https://t.co/9wHzJN7k1e +05/23/2018,Comedians,@mariabamfoo,"Very true. I had a problem with that myself. I apologize! Also, everyone was wearing shoes and speaking to each o… https://t.co/4IIpbmYs9L" +05/23/2018,Comedians,@mariabamfoo,"RT @AWolfeful: For any folks who live in Highland Park/Eagle Rock/Glassell Park areas of Los Angeles, i.e. NELA, Recycled Resources is in d…" +05/22/2018,Comedians,@mariabamfoo,"HEY NYC AND PHILLY! Check this out @ellen_forney is coming!: NEW YORK +Wed, 5/23, 7:30PM +The Strand… https://t.co/vyJlL7zr6N" +05/22/2018,Comedians,@mariabamfoo,So sorry but need to cancel Clubhouse 1 pm show tomorrow (wednesday) due to work opportunity. #livebetterworkunion… https://t.co/WiViv8ECga +05/22/2018,Comedians,@mariabamfoo,I will end with a hat-trick. https://t.co/QMV4lRlSzV +05/22/2018,Comedians,@mariabamfoo,RT @billyeichner: Incomprehensibly cruel. Vote out all Republicans and Trump supporters on Nov. 6th. https://t.co/KPfEcrmLKx https://t.co/6… +05/22/2018,Comedians,@mariabamfoo,OTTAWA! I’ll be @CentrepointeT Sep. 26! Pre-sale code: BAMFORD https://t.co/Mssae8eOrl +05/22/2018,Comedians,@mariabamfoo,So sad to hear the passing of @sadikifuller. He was a great person and a wonderful comedian and I had the pleasure… https://t.co/1PIImIBMR9 +05/22/2018,Comedians,@mariabamfoo,RT @elizaskinner: If you are a comic - especially a new or female comic - and you’re not listening to @JackieandLaurie you’re missing out o… +05/22/2018,Comedians,@mariabamfoo,"RT @easternblot: @mariabamfoo And if you’re worried the movie dog might meet a tragic end, you can check https://t.co/R2TPs6JSwA before wat…" +05/21/2018,Comedians,@mariabamfoo,I registered to vote online in California at https://t.co/BsWFt3rm1T #VoteCalifornia. +05/21/2018,Comedians,@mariabamfoo,RT @billyeichner: California friends! TOMORROW (Monday May 21st) is the LAST day you can register to vote in order to vote in the CA primar… +05/21/2018,Comedians,@mariabamfoo,"RT @therealmollymcg: 🗣🗣🗣🗣🗣🗣toronto, don’t miss this angel!! https://t.co/5EzM306B5r" +05/21/2018,Comedians,@mariabamfoo,"RT @cameronesposito: Come see me tape a special this Thursday 7 & 9PM at @ucbtla! + +Tix: https://t.co/mrdDRgIvPt https://t.co/l5Jd05H9ks" +05/21/2018,Comedians,@mariabamfoo,Wow. @jackiekashian ? Lighting pull you? https://t.co/PiPqXF07vZ +05/21/2018,Comedians,@mariabamfoo,"RT @deenatypedthis: Thanks to @nikkidelamotte +from @clevelanddotcom for writing the story. Includes shoutouts to heroes @mariabamfoo and @M…" +05/21/2018,Comedians,@mariabamfoo,"RT @PortCityPCMH: Last call for Maria Bamford tickets at PCMH on July 7, only a handful left: https://t.co/u4K5YTt70P @mariabamfoo" +05/21/2018,Comedians,@mariabamfoo,DOES IT HAVE DOGS? Movie Reviews! So helpful. https://t.co/LZW3wAHAV9 +05/21/2018,Comedians,@mariabamfoo,"RT @MrEmilyHeller: SEATTLE! I'm shooting a special at the Showbox on June 16! NO MEN ALLOWED!!!!!!* +Early Show: https://t.co/aqe9dH5Py3 +La…" +05/21/2018,Comedians,@mariabamfoo,RT @ellen_forney: @AndyKindler How is it we didn’t get a photo with you me and @mariabamfoo at @vromans ?? So I photoshopped one!🤔✂️Eh? htt… +05/21/2018,Comedians,@mariabamfoo,That is a really nice couch. You are lucky. We have not thought out our couch system as well and it is seriously… https://t.co/av3uVtFwWQ +05/21/2018,Comedians,@mariabamfoo,Thank you. I will wear your t-shirt in solidarity. https://t.co/0fl2ha4r1e +05/21/2018,Comedians,@mariabamfoo,"RT @ellen_forney: Book tour update!! My favorite pic from Friday: me & @mariabamfoo @vromans. We agree that side effects suck, & @bpHopeMag…" +05/19/2018,Comedians,@mariabamfoo,"A PR person? I'd miss out on the social anxiety that is the internet! Only I will benefit! I like to ""like"" and ""f… https://t.co/SvwYGbQjRo" +05/19/2018,Comedians,@mariabamfoo,"FREE SHOW! Mon &Wed at 1 pm, I'll be doing my new hour at The Clubhouse 1607 N. Vermont Avenue, East Hollywood, CA,… https://t.co/m8u8JMKWcV" +05/19/2018,Comedians,@mariabamfoo,"She is an American (and had she competed in Eurovision and taken every prize, European) Treasure. A woman of iron… https://t.co/QFWHNwNCtX" +05/18/2018,Comedians,@mariabamfoo,You have set your bar at a leap-able height. https://t.co/Vt02RZc02Z +05/18/2018,Comedians,@mariabamfoo,"TONIGHT at 7 pm @vromans pasadena w ms @ellen_forney! Her new book ROCK STEADY is immensely helpful, hilarious and… https://t.co/XOZo6YLciC" +05/18/2018,Comedians,@mariabamfoo,Niiiice merch! Wahoo! https://t.co/AhZ4PUTrl9 +05/17/2018,Comedians,@mariabamfoo,"RT @JFLMTL: Just for Laughs is the world's largest stand up comedy festival and the biggest party in comedy. If last year looks fun, just w…" +05/17/2018,Comedians,@mariabamfoo,RT @fantagraphics: Los Angeles! Don't miss out on an amazing two-for-one show with cartoonist @ellen_forney and comedian @mariabamfoo FREE… +05/17/2018,Comedians,@mariabamfoo,So fun! Excited to see you on Friday at VROMANS! https://t.co/siMrayyITa +05/16/2018,Comedians,@mariabamfoo,Montreal! Join me at @JFLMTL July 27! Pre-sale code: JFLMTL https://t.co/2843ASWdU8 https://t.co/sSx2NvBBYz +05/15/2018,Comedians,@mariabamfoo,CINCY! (CINCINNATI) May 26th SATURDAY! @jackiekashian opens! We will be there at 7:30 PM but the show begins at 8… https://t.co/u6wyeOTjCi +05/15/2018,Comedians,@mariabamfoo,"DETROIT! ROYAL OAK! ONE NIGHT, ONE SHOW! TWO HEADLINERS FOR THE PRICE OF ONE! WHY AM I YELLING? FRIDAY MAY 25th… https://t.co/QNcYDUESVq" +05/14/2018,Comedians,@mariabamfoo,"RT @billmurraypub: Hey @mariabamfoo, you own a part of The Bill Murray now! Thank you for supporting us. You, Scott and the pugs are welcom…" +05/12/2018,Comedians,@mariabamfoo,THANK YOU!!!! so fun with Kate and Aaron! https://t.co/KxJm42vOnE +05/12/2018,Comedians,@mariabamfoo,RT @moshekasher: Literally a plot line from The Handmaids Tale. https://t.co/062p8cYJ60 +05/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: First show last night @FlappersComedy I mentioned my dad is 81 and it got an applause break. Huh. So I stare at the audi… +05/12/2018,Comedians,@mariabamfoo,RT @goodgoodcomedy: #Philly! TONIGHT. 8:30 PM. Come see the hilarious @KateWillett & special guest @samlymatters. Cheap tix: https://t.co/W… +05/12/2018,Comedians,@mariabamfoo,GORGEOUS WORK! Strut with pride. https://t.co/Y6mLUHRBJQ +05/10/2018,Comedians,@mariabamfoo,Thanks for coming! https://t.co/JaUiaDHrmr +05/09/2018,Comedians,@mariabamfoo,Nope! https://t.co/EzvTSjAKBw +05/07/2018,Comedians,@mariabamfoo,PHILADELPHIA! 7:30 PM with Michelle Biloon! Tickets still available for general admit at $25. Come if you have th… https://t.co/MzucfjAZ0Y +05/07/2018,Comedians,@mariabamfoo,"RT @HeliumComedy: #ThisWeekAtHelium we graduate a new crop of students, one night with @SteveHofstetter, @TheJoeMatarese stops by for the w…" +05/07/2018,Comedians,@mariabamfoo,"RT @amiblue29: Love @mariabamfoo on #WorstCooks . . . . and, she is coming to Maine! Can't wait to see her at the @statetheatreME. . . . T…" +05/04/2018,Comedians,@mariabamfoo,"RT @elizaskinner: Thank you, Chad. You have impeccable taste in Comedy. https://t.co/QAGMRGi2WX" +05/04/2018,Comedians,@mariabamfoo,"RT @splcenter: 50 years ago, the Fair Housing Act sought to increase integration & end racial discrimination. But many of America's cities…" +05/04/2018,Comedians,@mariabamfoo,RT @billyeichner: Praying for Impeachment. #NationalDayOfPrayer +05/03/2018,Comedians,@mariabamfoo,I can’t believe I’m still in. Or maybe my hair and makeup are still in. They were definitely on fire. Thank you to… https://t.co/0PuoXn5sed +06/30/2018,Comedians,@margaretcho,Happy Saturday. #beauty #glam https://t.co/TQLazvfKVG +06/30/2018,Comedians,@margaretcho,"500,000 OF YOU TOLERATE MY TWITTER FEED! THANK YOU FOR THE LOVE AND SUPPORT! https://t.co/UNPdk5SzDV" +06/30/2018,Comedians,@margaretcho,Fixed it! https://t.co/njdV9noP8N +06/29/2018,Comedians,@margaretcho,RT @MAKERSwomen: Comedian @MargaretCho reflects on the resilience and sense of community she gained while growing up in San Francisco durin… +06/29/2018,Comedians,@margaretcho,RT @MikePMoffatt: @rywadams Amazing idea! My remake of Sanford and Son is starring @margaretcho and @IncredibleCulk. +06/29/2018,Comedians,@margaretcho,RT @steemee: ⁦@POTUS⁩ DID THIS! BLOOD ON HIS HANDS! ⁦@cher⁩ ⁦@Madonna⁩ ⁦@margaretcho⁩ ⁦@kathygriffin⁩ ⁦@DebraMessing⁩ ⁦@chelseahandler⁩ ⁦@… +06/29/2018,Comedians,@margaretcho,My face has really slimmed down from my @equinox workouts. It’s weird that’s where I lose weight! https://t.co/URfGIi37s2 +06/29/2018,Comedians,@margaretcho,@BruceDevlin @MontBleuResort REPLY +06/29/2018,Comedians,@margaretcho,TOMORROW NIGHT! Get ready Nevada. Tickets are still available. https://t.co/2MVf2NJpC0 @MontBleuResort +06/28/2018,Comedians,@margaretcho,"RT @KaleidoscopeFF: Margaret Cho: ‘Nobody Has Ever Really Accepted That I’m Truly Bisexual’ + +HuffPost #TheFutureIsQueer https://t.co/8EBigN…" +06/27/2018,Comedians,@margaretcho,"With Kennedy retiring, the right to access abortion in this country is on the line. Pres. Trump has promised to onl… https://t.co/usT6UZaZ2d" +06/27/2018,Comedians,@margaretcho,I don’t know about this. Purple glitter too much? https://t.co/bIvLtNpZFy +06/25/2018,Comedians,@margaretcho,Here’s me from the #LimestoneComedyFestival. I really look like a comedian. If you're in Nevada this Saturday the 3… https://t.co/QsU1ivgjw8 +06/24/2018,Comedians,@margaretcho,"To support @votolatino and #StopSeparation, @lenadunham and @JenniKonner will be matching your donations to Voto La… https://t.co/OKUCiDWQc2" +06/22/2018,Comedians,@margaretcho,RT @BillNyeSaves: .@BillNye and @MargaretCho welcome you to flavortown. https://t.co/lTlU9rT1lB +06/22/2018,Comedians,@margaretcho,"RT @Refinery29: We sat down with @jvn and @margaretcho to talk about #Pride, coming out, twerking and why the B in LGBTQ+ is still waiting…" +06/22/2018,Comedians,@margaretcho,RT @FARNOOSH: In convo with @margaretcho and how hamburgers fed her early money lessons. https://t.co/N85GrFrFWf #SoMoney https://t.co/6nj… +06/22/2018,Comedians,@margaretcho,RT @stvrsnbrgr: @robreiner @StephenAtHome @iamsambee @chelseahandler @kathygriffin @margaretcho @kathynajimy https://t.co/MtWxciEHi2 +06/22/2018,Comedians,@margaretcho,"It's Friday afternoon and I know you're not working, SO GO BUY YOUR TICKETS NOW! See you on the 30th at the… https://t.co/vxRjGEZQGz" +06/20/2018,Comedians,@margaretcho,Come see me June 30th at the @MontBleuResort You can buy your tickets here: https://t.co/SrlpCRGj4S https://t.co/FAhYujTwpM +06/20/2018,Comedians,@margaretcho,Happy #Pride Month! Check out this inspiring project I was part of with @LogoTV to highlight our LGBTQ+ family with… https://t.co/CcRAMJtppx +06/19/2018,Comedians,@margaretcho,Honored to be on the LOGO 30 https://t.co/yTnymwCDy9 +06/19/2018,Comedians,@margaretcho,RT @noahmichelson: I recently caught up with @MargaretCho to talk about Pride but the most powerful part was when she opened up about the s… +06/18/2018,Comedians,@margaretcho,Come see me at #JFL42! Tickets on sale at https://t.co/LQgWhz6XiQ https://t.co/cR3p49qa7y +06/15/2018,Comedians,@margaretcho,RT @ProudTimes: @margaretcho is still on tour! You won't want to miss this comedy queen! For more info on tickets check out https://t.co/er… +06/14/2018,Comedians,@margaretcho,RT @DanPasternack: Here's a @margaretcho Throwback Thursday to 1994. The 8th Annual American Comedy Awards with the great Jonathan Winters… +06/14/2018,Comedians,@margaretcho,RT @ProudTimes: Preview of our June issue -online tomorrow morning! We are so excited to bring you this issue with cover story @margaretcho… +06/11/2018,Comedians,@margaretcho,"Tickets available now for #JFL42 and I’ll be there 9/22!!! + +https://t.co/LQgWhz6XiQ https://t.co/ZN585prSzE" +06/10/2018,Comedians,@margaretcho,"HAPPY PRIDE TO ALL YOU LOVERS, LIVERS, AND LIFEGIVERS 🌈🌈🌈 https://t.co/NBGdgayjim" +06/08/2018,Comedians,@margaretcho,"RT @Jayson510: @BreedLittle @margaretcho A favor please, don’t use gay as a way to say lame or stupid. Thanks" +06/06/2018,Comedians,@margaretcho,THIS GIRL IS A FORCE TO BE RECKONED WITH AND THERE WILL BE NO SLANDER AGAINST HER NAME. #KellyMarieTran https://t.co/dbe1saJlDi +06/06/2018,Comedians,@margaretcho,RT @MAKERSwomen: Comedian @MargaretCho reflects on the resilience and sense of community she gained while growing up in San Francisco durin… +06/05/2018,Comedians,@margaretcho,"THIS FRIDAY & SATURDAY - JUNE 8 & 9TH!! IM BACK AT IT NEW JERSEY!!! HEADING TO @StressFactoryNJ, GET TICKETS TODAY… https://t.co/SDdRVWCDPy" +06/05/2018,Comedians,@margaretcho,Girl have you had dinner with her? I have. HMU for tips! https://t.co/R5A3IoAaGX +06/05/2018,Comedians,@margaretcho,RT @ComedyPlugs: RT @StressFactoryNJ: @margaretcho this FrI @ Sat at @Vinnie_Brand’s Stress Factory!! Come out for a hilarious night of com… +06/05/2018,Comedians,@margaretcho,"RT @DivaDelux: Thanks for the love @margaretcho 🙌🏾❤️ +I can't wait to perform with @SeleneLuna & @GregWalloch https://t.co/q9NQTbz6CK" +06/04/2018,Comedians,@margaretcho,Please check out my friend @seleneluna's show TOMORROW in LA. She's an amazing talent and this is going to be a gre… https://t.co/doiyIp5vhq +05/29/2018,Comedians,@margaretcho,"RT @JFL42: We're baaaaaaack! #JFL42 2018 coming at you HARD this September! We've got @sethmeyers, @JoKoy, @iamwandasykes, @hannibalburess,…" +05/25/2018,Comedians,@margaretcho,Share this! https://t.co/jyIdir3qLX +05/25/2018,Comedians,@margaretcho,Thanks for having me!😘 https://t.co/PbIBYBQmGr +05/25/2018,Comedians,@margaretcho,Hey-O https://t.co/dAzdMPnWg2 +05/22/2018,Comedians,@margaretcho,"RT @ahmedcomedy: Hey everyone Ep#2 of “LOLNOW” is up! I talk about @margaretcho show in KL, my comedy special picks of the week, Mitzi Shor…" +05/22/2018,Comedians,@margaretcho,Shut up https://t.co/q5d4eDCwXw +05/22/2018,Comedians,@margaretcho,RT @HRC: Out #bisexual comedian @MargaretCho uses her platform for #LGBTQ representation. @HRC is proud to honor her and many other incredi… +05/22/2018,Comedians,@margaretcho,"RT @MemphisMeats: .@BillNye after tasting our clean duck: ""This is just cool!"" The full episode—featuring @margaretcho and our CEO @UmaVale…" +05/19/2018,Comedians,@margaretcho,"ICYMI, I was a clue on @Jeopardy earlier this week! https://t.co/1G7bsWUaUH" +05/16/2018,Comedians,@margaretcho,"Thank you @TIME #FreshOffTheBloat +READ AND WATCH HERE: https://t.co/2nTgFXGAip https://t.co/Fyy85tr8il" +05/14/2018,Comedians,@margaretcho,Hey! I eat algae-shrimp and mealworms and SCORPIONS with @billnye on @billnyesaves. Season 3 on @netflix now!… https://t.co/9BGfjepGVD +05/14/2018,Comedians,@margaretcho,RT @lacomedylive: TAIWAN! Are you ready for @margaretcho’s debut show? It’s gonna be a night full of laughs so don’t miss out!! 🙏 https://t… +05/01/2018,Comedians,@margaretcho,HAPPY #MAYDAY! TOUR DATES IN ASIA FILLING UP FAST! #HONGKONG #SINGAPORE #KUALALUMPUR! https://t.co/hpB2vCceKS +04/28/2018,Comedians,@margaretcho,I like where your heads at. Sorry about you and Brittany. https://t.co/rTRi074E6Y +04/28/2018,Comedians,@margaretcho,Caption This. #OldHeadShotDay https://t.co/T4ppJmVV7L +04/26/2018,Comedians,@margaretcho,Had fun sitting with Tara from @next_fem! https://t.co/gGNqUQ1u0L +04/25/2018,Comedians,@margaretcho,Yassssssssss snap snap https://t.co/89hvoHNZrl +04/24/2018,Comedians,@margaretcho,"RT @ComedyPlugs: RT @GoodnightsCC: #ThisWeekAtGoodnights we've got Good Joke / Bad Joke Bingo, @margaretcho stops by for the weekend, and R…" +04/24/2018,Comedians,@margaretcho,"RT @lacomedylive: Check out @margaretcho's meeting with DIM SUM Magazines here!! 🙂 +https://t.co/7hzdwU7ApE https://t.co/SKjQstLjQF" +04/24/2018,Comedians,@margaretcho,Can’t wait to come to you! https://t.co/34tVypfNP0 +04/24/2018,Comedians,@margaretcho,👍🏼👍🏼👍🏼 https://t.co/ibfEMsAwIg +04/24/2018,Comedians,@margaretcho,Always a good time chatting with @outinjersey! Extending #FreshOffTheBloat (we're even going to Asia) (No North Kor… https://t.co/yPYq5QDx29 +04/23/2018,Comedians,@margaretcho,👄 🍒 https://t.co/RNVNpi65QV +04/23/2018,Comedians,@margaretcho,RT @MiikeyGrey: I finally get to see @margaretcho tonight at the Addison improv! I feel like this shirt would be super gay & appropriate!… +04/22/2018,Comedians,@margaretcho,"RT @lyndseyparker: In honor of #RecordStoreDay, here are some clips of me vinyl-shopping with awesome people. #RecordPlayers + +@MargaretCho…" +04/22/2018,Comedians,@margaretcho,THATS THE PLAN! LOVE YOU AND YOUR GUNT! https://t.co/T511Tupe2z +04/21/2018,Comedians,@margaretcho,It’s 4/20! Happy Margaret Cho Day! +04/21/2018,Comedians,@margaretcho,Special counsel? I dunno...what are words... https://t.co/fsOuaFAD6d +04/21/2018,Comedians,@margaretcho,RT @yashar: Big headlines re North Korea tonight and instead of reveling in the moment..... https://t.co/ORiHDKuUnU +04/21/2018,Comedians,@margaretcho,Can’t wait for this!!!! https://t.co/thRdJfmK1w +04/21/2018,Comedians,@margaretcho,We know he likes that tho. But let’s make sure he has a target! (NOT IT) https://t.co/0gMEHVtmXJ +04/21/2018,Comedians,@margaretcho,We don’t all know each other https://t.co/cpIg4onUgS +04/20/2018,Comedians,@margaretcho,"RT @leezy911: Getting to teach @MrEddieHuang’s hilarious and real memoir today with @margaretcho’s stand-up comedy - humor, politics, race,…" +04/20/2018,Comedians,@margaretcho,RT @AmandaGThang: @margaretcho you have inspired us to start our own queer run podcast called Near and Queer to My Heart (iTunes/Spotify) w… +04/18/2018,Comedians,@margaretcho,We're taking #FreshOffTheBloat to Singapore! I talked about it to @aprilmag - check it out here:… https://t.co/nyrCarbWeQ +04/12/2018,Comedians,@margaretcho,What's up Orlando? See you this weekend. #FreshOffTheBloat https://t.co/1F09tCkZ3z +04/12/2018,Comedians,@margaretcho,A very cute interview with #Meaww https://t.co/HtoypFblL4 https://t.co/RD1bpxqTlc +03/30/2018,Comedians,@margaretcho,I GOT THREE DATES IN ASIA COMING UP AND NONE OF THEM ARE KOREA CAUSE I AM TOO CONTROVERSIAL TO GET INTO THAT MESS R… https://t.co/x8VBs49Npd +03/27/2018,Comedians,@margaretcho,Had the pleasure of spending time with this extremely witty voice of a generation so I encourage you to making the… https://t.co/Ny2ejc6L9T +03/26/2018,Comedians,@margaretcho,"#HappyBdayStevenTyler!!! 70 YEARS YOUNG, BABY! https://t.co/OIrR7JHmFP" +03/22/2018,Comedians,@margaretcho,APOCALYPSE READY https://t.co/2PKMBRy2KF +03/19/2018,Comedians,@margaretcho,"RT @bowenyang: Look, @margaretcho and @roccocomedy are on this week and it’s a really special ep. Very very very thankful @mattrogerstho an…" +03/19/2018,Comedians,@margaretcho,Fun little interview with @michaelraver. READ IT HERE: https://t.co/MLQvrX3c7Q https://t.co/nBfgAm70fi +03/12/2018,Comedians,@margaretcho,"RT @PBImprov: The one and only @margaretcho takes the stage THIS WEEKEND, bringing her Fresh Off The Bloat Tour to Palm Beach! Get TIX: htt…" +03/12/2018,Comedians,@margaretcho,LOVE YOU @AnnaAkana <3 https://t.co/hN4S3nmLhK +03/09/2018,Comedians,@margaretcho,"🏝 WEST PALM BEACH 🏝 SHOW ME A GOOD TIME! I’m there next weekend, March 16/17 for #FreshOffTheBloat special engageme… https://t.co/72dxKnYggE" +03/09/2018,Comedians,@margaretcho,You help make it happen! https://t.co/7VRcItncyP +03/08/2018,Comedians,@margaretcho,The world is searching for “gender equality” on @Google more than ever before. Keep fighting for progress. Check ou… https://t.co/7YsjbiLTGh +03/02/2018,Comedians,@margaretcho,RT @WendyLowySloane: Special thx to @margaretcho for joining me this morning. Lots of laughs & great tease for what to expect tonight & tom… +03/01/2018,Comedians,@margaretcho,RT @mskason3: Share my daddy’s picture please https://t.co/V7QoEmtfqd +03/01/2018,Comedians,@margaretcho,Heading to Nyack Levity Live this weekend! TICKETS HERE IN THIS LINK HERE! (Don't live in Nyack? There's other date… https://t.co/9W0wSucwuE +02/28/2018,Comedians,@margaretcho,Can’t say don’t be a dick anymore because of you @DICKS. At least it’s for a good reason. #GunControlNow +02/28/2018,Comedians,@margaretcho,"I'm still #FreshOffTheBloat and ready to spread that magic all over you New York! Come one, come all - tickets stil… https://t.co/YYf1nKwYdd" +02/24/2018,Comedians,@margaretcho,RT @standuplive: THIS WEEKEND! Don't miss @margaretcho Friday and Saturday night! Get TIX: https://t.co/qEbYjw8673 https://t.co/OgqC3Teimk +02/19/2018,Comedians,@margaretcho,"THE FACE OF THE FUTURE HAS HAD ENOUGH OF YOUR BULLSHIT! Nothing but love for #EmmaGonzalez, a TRUE leader.… https://t.co/KOGmqdEAWI" +02/18/2018,Comedians,@margaretcho,MORE #FRESHOFFTHEBLOAT DATES! THIS WEEK IM IN PHOENIX! LAST DATES OF FEBRUARY! MORE DATES THRU JUNE!! COME GET TICK… https://t.co/2nE2yIKN4m +02/13/2018,Comedians,@margaretcho,If you’re in need of a red hot lovah this #ValentinesDay join me at the Improv in Hollywood for saucy uproarious la… https://t.co/xooLF7bZV9 +02/12/2018,Comedians,@margaretcho,"I think you'll like the vibe of this interview, I enjoyed sitting down with @SmashingIntvws I think you'll like thi… https://t.co/4Tj200t9Jr" +02/08/2018,Comedians,@margaretcho,It’s about time we prioritized female pleasure. Thanks @TrystNetwork and @JessicaBiel for spreading the word.… https://t.co/Uzbj822Elq +02/06/2018,Comedians,@margaretcho,🚨🚨🚨NEW U.S. DATES FOR #FRESHOFFTHEBLOAT!!! Tickets on sale now at https://t.co/1VdtmqDyjB!!! 🚨🚨🚨 https://t.co/Rihy15rsQ8 +02/05/2018,Comedians,@margaretcho,I sat with my longtime makeup artist @johntstapleton for a chat while he slapped up my mug using the best of… https://t.co/W5I7mfp3fs +02/02/2018,Comedians,@margaretcho,"You asked for it, INCOMING even MORE #FreshOffTheBloat including a VALENTINE'S DAY show for you Los Angeles… https://t.co/52BvU1dmIi" +01/31/2018,Comedians,@margaretcho,"RT @BenJealous: Trump was wrong to demagogue immigrant communities tonight. + +Period." +01/31/2018,Comedians,@margaretcho,RT @yashar: You are the last person in media that is allowed to speak about anything related to women ever again. https://t.co/Fxk0IzpN3S +01/30/2018,Comedians,@margaretcho,ICE HOUSE PASADENA - TOMORROW NIGHT!!! 8PM SPECIAL SHOW! DONT BE LATE! TIX HERE: https://t.co/69EQ4dCBqM #icehouse https://t.co/JSrwQuvgIk +01/25/2018,Comedians,@margaretcho,RT @GAYWhistler: A very special message to everyone in Whistler for #whistlerpride2018 from MARGARET CHO! Join us for the Night of Comedy W… +01/25/2018,Comedians,@margaretcho,Cause Frances McDormand would have that ass shook! https://t.co/xQVT6FMRGe +01/24/2018,Comedians,@margaretcho,RT @DanielNewman: Are you guys coming to snowboard with me Jan 24-28 at #Whistler? @margaretcho is coming! https://t.co/1OKfRFdOIZ +01/22/2018,Comedians,@margaretcho,"Fuck Nazis. I don’t care how cool your Christmas parties are. FUCK. YOU and the clique you claim. + +That’s all." +01/22/2018,Comedians,@margaretcho,"This wasn’t once or twice, this was constant interaction. I feel like @xychelsea used me and others because we are… https://t.co/gUU9pDFTog" +01/22/2018,Comedians,@margaretcho,"I supported @xychelsea through her ordeal and especially because I was consistently told she was either near death,… https://t.co/KLCoxsXKAN" +01/22/2018,Comedians,@margaretcho,RT @buddhistchick75: Important: @margaretcho needs your help to win the #ShortyAwards. Join me and vote https://t.co/y6rWGHWsM0 +01/21/2018,Comedians,@margaretcho,RT @LGBTPlusProud: Hate is far more of a choice... #NOH8 https://t.co/LhW7e0NDit +01/21/2018,Comedians,@margaretcho,#LetKathyBackIn https://t.co/AxwdRVNhg2 +01/19/2018,Comedians,@margaretcho,RT @beautycon: GIANNI VERSACE BROKE ALL THE RULES! LEARN HOW THE LATE FASHION MOGUL CHANGED GAME. #ACSVersace https://t.co/VYAIu6vLo1 +01/15/2018,Comedians,@margaretcho,RT @KendraHulbert: @margaretcho The Cranberries made my high school years more bearable. Very sad news today. +01/15/2018,Comedians,@margaretcho,"REST IN POWER #doloresoriordan - a voice like no other, a beauty like no other, a fierce resister that inspires all… https://t.co/CL3bhbaSEo" +01/04/2018,Comedians,@margaretcho,I start my mornings with @yashar and let it tumble from there. Always a treat! +01/04/2018,Comedians,@margaretcho,RT @jaketapper: Yesterday: https://t.co/cXCZAEtpKN +01/04/2018,Comedians,@margaretcho,I did die tho https://t.co/2EH0v6UWiT +01/04/2018,Comedians,@margaretcho,RT @arturo1gonz: Watched Margaret Cho's stand up comedy Beautiful on Hulu. Absolutely loved it. Love you @margaretcho 👅😘🙌👑 +01/04/2018,Comedians,@margaretcho,Not gonna be in Bright 2 but someone call Will Smith and lobby for it. Maybe I can be regenerated https://t.co/Y0nakdS9O0 +01/04/2018,Comedians,@margaretcho,"RT @Shmartemis: ARE YOU READY FOR SOME not FOOTBALL?! +Mother May I Dance With Mary Jane's Fist?: A Lifetone Original Movie for @adultswim…" +01/03/2018,Comedians,@margaretcho,I'm heading to Whistler because I want to freeze my tits off and heard this is the place to do that right now! I'm… https://t.co/D6SUIaVaZH +01/03/2018,Comedians,@margaretcho,Thanks to this amazing cover story from #OutinJersey! READ: https://t.co/vlAcrxHNol https://t.co/EpiFjmXJzH +12/20/2017,Comedians,@margaretcho,"Over 12,000 Dreamers are at risk of deportation TODAY because Trump ended DACA. That number will only keep growing.… https://t.co/P4kFm0ugQz" +12/19/2017,Comedians,@margaretcho,I'm on @michaelianblack's wonderful podcast @HTBA_Show which of course I am... https://t.co/49BQj0v81f +12/13/2017,Comedians,@margaretcho,"I cant stop watching this #DougJones congrats, #RoyMoore get lost! https://t.co/0EcXCKx8j9" +12/12/2017,Comedians,@margaretcho,RT @DarkMattersProj: .@margaretcho on Surviving Sexual Abuse and Evolving into a Political Comic https://t.co/3eEPdDcpTH https://t.co/0S6y7… +12/10/2017,Comedians,@margaretcho,"RT @broadly: @margaretcho ""With all the stuff about Harvey Weinstein and Louis CK—and what I talk about in my show now, too—is how we have…" +12/10/2017,Comedians,@margaretcho,"RT @o2sbe: Check out the @guardian's review of @margaretcho's wild show in Bristol!👏 https://t.co/Gci2J5JRZN +You just know her show 'Fresh…" +12/10/2017,Comedians,@margaretcho,"RT @HarvBlue: Fuck the snow, yo, we’re still coming to see you @margaretcho #rhyminggamestrong. #london" +12/09/2017,Comedians,@margaretcho,@farrah0000 @MooreSenate The character count! ❤️ +12/09/2017,Comedians,@margaretcho,"Hey @MooreSenate, the last time America was great was before AfAm were dragged here against their will, Native Amer… https://t.co/0fOuV9qBR5" +12/08/2017,Comedians,@margaretcho,COPENHAGEN! Lets get raw! #freshoffthebloat will begin shortly! https://t.co/C3Y5BkkCct +12/07/2017,Comedians,@margaretcho,Guess what? Let me record your new voicemail for you and proceeds from the auction will benefit @ACLU_SoCal! Bid on… https://t.co/UXr6anGu2B +12/04/2017,Comedians,@margaretcho,"Only 6 more shows, #Amsterdam #Antwerp #Copenhagen #London #Vienna #Oslo https://t.co/PZrIcoPY1L… https://t.co/vzuponimx4" +12/03/2017,Comedians,@margaretcho,ZING! 🤣 https://t.co/JNn5KuNyFK +11/27/2017,Comedians,@margaretcho,The #FashionPolice walks its final beat tonight on E! @e_FashionPolice - tune in at 8P EST! https://t.co/doHEv5xZQ3 +11/27/2017,Comedians,@margaretcho,Thank you Metro Edinburgh for the lovely review for #FreshOffTheBloat https://t.co/PVNhVQ4pzA https://t.co/AWrtz9YXX0 +11/23/2017,Comedians,@margaretcho,"Whoops, make that 11:45 y'all. #bbctw @bbcthisweek https://t.co/5ErRkCyniC" +11/23/2017,Comedians,@margaretcho,Happy Thanksgiving y’all and good evening London! I’m on “This Week” @bbcthisweek tonight on BBC One at 10:30 UK time! #bbctw 🦃 🇬🇧 +11/22/2017,Comedians,@margaretcho,"Before I head out on tour overseas for #FreshOffTheBloat, I had to share #WhatsInMyBag! +https://t.co/rxxukPZz1P https://t.co/pjyxAwCZl9" +11/17/2017,Comedians,@margaretcho,Good idea https://t.co/uycD9thYMO +11/17/2017,Comedians,@margaretcho,"RT @FestivalBristol: #Bristol #competitions win a pair of tickets to see @margaretcho new comedy show, Fresh Off The Bloat, @stgeorgesbris…" +11/16/2017,Comedians,@margaretcho,"Sorry #SouthDakota, we definitely tried. https://t.co/IZwJd63Hyg" +11/15/2017,Comedians,@margaretcho,#FreshOffTheBloat tix avail now click the link in my bio and join me in the UK and Europe! https://t.co/ERvwJjHP7V https://t.co/YLq3gweuYK +11/11/2017,Comedians,@margaretcho,Right. https://t.co/vG35IYwXeo +11/11/2017,Comedians,@margaretcho,I’m at @katyperry tonight in a sea of kids whose lives will be made better by the brave actions of a few #metoo +11/07/2017,Comedians,@margaretcho,Europe! UK! Special message for you 📫💌 https://t.co/PZrIcoPY1L https://t.co/5aBHY5fmcv +11/03/2017,Comedians,@margaretcho,Philly! Read my latest in @thephillyvoice ahead of my show this weekend! https://t.co/Iz79ZsF5eA https://t.co/PPMw9zPs9e +11/03/2017,Comedians,@margaretcho,"Be one of the first to #jointhedynasty, support an amazing new LA venue for comedy! https://t.co/xeCkJWhDkk" +11/03/2017,Comedians,@margaretcho,"Philly, I'm bringing my show ""FRESH OFF THE BLOAT"" to you this weekend! Get tickets here: https://t.co/PZrIcoPY1L https://t.co/AzKxeqI53S" +11/03/2017,Comedians,@margaretcho,Tickets are on sale for #FreshOffTheBloat in Europe and the U.K.! Go to my site to get them now:… https://t.co/HxRvjBFEQC +10/29/2017,Comedians,@margaretcho,"Hopefully tomorrow, from the mind of @1oneclone https://t.co/zWJh7bw1Xj" +10/28/2017,Comedians,@margaretcho,#Mueller time got me like...ayyyyyyy https://t.co/s2D9KdeVqx +10/27/2017,Comedians,@margaretcho,Always so fun running into old friends @tomgreenlive 😎 https://t.co/lwxIdOYowk +10/26/2017,Comedians,@margaretcho,OH YES⚡️⚡️ I want y’all in my coven ❤️ https://t.co/E5V0lIIT9z +10/22/2017,Comedians,@margaretcho,RT @AranORoe: Headed to see @margaretcho tonight! Loves her so much. +10/22/2017,Comedians,@margaretcho,RT @DowntownDonna69: Excited to see @margaretcho 'Fresh off The Bloat' @Castro_Theatre. Gonna be a great! https://t.co/k5eFTG8VIe +10/22/2017,Comedians,@margaretcho,"RT @ryanzhelp: Yay @MargaretCho! (@ Castro Theatre for Margaret Cho: Fresh Off the Bloat in San Francisco, CA) https://t.co/T2xSrPQY3O" +10/22/2017,Comedians,@margaretcho,RT @RickyTweetsToo: Second row to see @margaretcho tonight! Hilarious woman that constantly breaks the boundaries… https://t.co/EWGBwh0Lyt +10/22/2017,Comedians,@margaretcho,RT @Militant_Asian: Hey @margaretcho that was us cheering the Jesus joke stage right. Thank you for making us laugh our asses off. 💜 +10/22/2017,Comedians,@margaretcho,"RT @ChinHuaLu: Just saw @margaretcho perform: Not only was she hilarious, I could see her highlighter poppin' from the balcony damn 👏🏼 #Fre…" +10/22/2017,Comedians,@margaretcho,I wore my most Asian outfit for you San Francisco. See you tonight #FreshOffTheBloat https://t.co/Stc3YMuzVp +10/21/2017,Comedians,@margaretcho,RT @mitten82: I've always been a fan of @margaretcho so I designed this as a token of my love for Margaret. :) https://t.co/ILbu4bQ4K3 +10/21/2017,Comedians,@margaretcho,Thank you Santa Cruz! Love the neon 👌🏼💥⚡️ https://t.co/pB1VI3r2Iq +10/20/2017,Comedians,@margaretcho,Yessss!!!!😘 https://t.co/U3Y7Q46bbU +10/20/2017,Comedians,@margaretcho,RT @DIVAmagazine: The November issue starring @margaretcho is out now! Here's how to get your hands on a copy... #FridayFeeling 🎉 https://t… +10/20/2017,Comedians,@margaretcho,RT @centralcitydigs: @margaretcho thank you for the Sac show! Go #grrrl +10/20/2017,Comedians,@margaretcho,RT @mcespino: @margaretcho Thank you for an amazing show!!!! https://t.co/UVBKu0o5Ed +10/19/2017,Comedians,@margaretcho,"#SpiritDay, stop the bullying - don’t wait for Melania to finish her gloss and injections to tell you this. Thank y… https://t.co/ZbXzArBYlR" +10/19/2017,Comedians,@margaretcho,@Kevin_byDesign Come thru! +10/19/2017,Comedians,@margaretcho,"RT @bust_magazine: ""After more than 30 years in stand up, it is no exaggeration to say that @margaretcho is at the top of her game. "" https…" +10/19/2017,Comedians,@margaretcho,https://t.co/ERvwJjZpZt for tix!!! https://t.co/iRDdhB9pMK +10/19/2017,Comedians,@margaretcho,Can’t wait to see you either hunty https://t.co/kLE69mFVwd +10/19/2017,Comedians,@margaretcho,"Isss gone, girl https://t.co/lsSliKWltR" +10/19/2017,Comedians,@margaretcho,RT @OurMilkMoney: SO done w/ #toxicMasculinity & #patriarchy. #womenleaders this is how we #unite & #stopsilence https://t.co/5DT4WQnbts #s… +10/19/2017,Comedians,@margaretcho,"Prayers up, only got one or two AZN’s in the NBA and we need them all! #JEREMYLIN https://t.co/pdFBtivk90" +10/14/2017,Comedians,@margaretcho,Some fine words from @washingtonpost about #FreshOffTheBloat (it’s not #fakenews!) https://t.co/oWsqOnfiJ1 +10/13/2017,Comedians,@margaretcho,RT @DJchaotic: @margaretcho @GramercyTheatre You were on fire last night. Loved your set. Brought so much joy at a time when it's truly nee… +10/13/2017,Comedians,@margaretcho,Thank you to @HuffPost and fuck Harvey Weinstein. https://t.co/sovHCTDpg5 https://t.co/3u92wy3eme +10/13/2017,Comedians,@margaretcho,Thank you @GramercyTheatre and NEW YORK CITY! 🗽 #FreshOffTheBloat https://t.co/dIYtrJeNJ4 +10/13/2017,Comedians,@margaretcho,RT @patrickglee: @margaretcho thank u for tonite & for blazing a path. we were the gaggle of korean gays in front! also: our film on asians… +10/13/2017,Comedians,@margaretcho,RT @Kizzbeth: Tonight I went to see @margaretcho with @mimiferraro but we were laughing so hard we forgot to… https://t.co/ZdMkyQSv48 +10/13/2017,Comedians,@margaretcho,RT @tatianatenreyro: There is nothing more therapeutic than hearing @margaretcho call out rapists tonight during her set and talk about her… +10/13/2017,Comedians,@margaretcho,RT @jeremycolemusic: @margaretcho SLAYED per usual🙌🏼 loaughed so hard I couldn’t breathe 😂😂😂 #margaretcho #comedy… https://t.co/kqpBcJeLlG +10/13/2017,Comedians,@margaretcho,"RT @adith1801: With this crowd, @margaretcho's show might as well be sponsored by @Grindr" +10/13/2017,Comedians,@margaretcho,RT @gayinfj: Can’t wait to see @margaretcho tonight!! I have a feeling she will be exactly what I need after the last 10 months of this Tru… +10/13/2017,Comedians,@margaretcho,RT @FranciscoNYC: Over the top excited to see my inspiration for LIFE tonight: @margaretcho + @SeleneLuna!!!! https://t.co/aWgVYS2eOd +10/12/2017,Comedians,@margaretcho,"NEW YORK! You wanna get involved with a movement, come see me in #FreshOffTheBloat tonight at the Gramercy - tix:… https://t.co/mOAIW1k8Ys" +10/10/2017,Comedians,@margaretcho,"RT @BeautyconTweets: #BenAffleck done slipped up. https://t.co/Uar5XkkiRO +#HarveyWeinstein #WhyWomenDontReport https://t.co/qmBDw0LUFa" +10/06/2017,Comedians,@margaretcho,RIP Raphie May. Way too soon. Way too young. It just sucks. Love you. +10/06/2017,Comedians,@margaretcho,ShoutOUT I love you and you can beat this!!! ❤️ https://t.co/nIAJuPqb8r +10/06/2017,Comedians,@margaretcho,RT @heidyv: Getting my rofls on at @margaretcho and @SeleneLuna! Love these ladies! 😂😂😂😂 https://t.co/DX3KyF1NN3 +10/06/2017,Comedians,@margaretcho,"RT @RyTheGuy915: @margaretcho @SeleneLuna Thank-you for an amazingly hilarious show! It was my friend's first comedy show, and you made it…" +10/06/2017,Comedians,@margaretcho,RT @CurvyPervy: Hahahaha nalgas @margaretcho I love her. She's so real. @ The Wiltern https://t.co/9tNRS25iz5 +10/06/2017,Comedians,@margaretcho,"RT @jeffleach: Saw @margaretcho's 'Fresh Off The Bloat' live tonight and it was hilarious. Wonderful material, calmly executed. https://t.c…" +10/06/2017,Comedians,@margaretcho,RT @strawberrycindy: Saw @margaretcho's live stand-up comedy tonight. She's so hilarious and raunchy and seriously so perf. Thank u soo muc… +10/06/2017,Comedians,@margaretcho,RT @DJLisaFoxx: Cuz yesssss...@margaretcho was THAT FUNNY!!! thank uuu for the MUCH NEEDED giggles ;) oh and my date was fun too haa xoxo @… +10/06/2017,Comedians,@margaretcho,RT @cherryteresa: Fun times last night seeing @margaretcho and Selena Luna with Brad at the #Wiltern! #freshoffthebloat https://t.co/KAmZ8V… +06/05/2018,Comedians,@WhoopiGoldberg,Also last night @CFDA I saw the amazing @NaomiCampbell who got an award as did the wonderful @KimKardashian. It wa… https://t.co/81xJ3yE6f5 +06/05/2018,Comedians,@WhoopiGoldberg,"I was at the CFDA awards, @CSiriano decided to take me and put me in a bright beautiful color,THANK YOU so much 4 a… https://t.co/0p94fSqb6q" +05/22/2018,Comedians,@WhoopiGoldberg,"@NesterMt Umm, when John McCain says water boarding doesn’t work because he actually knows, also YOU care what I ha… https://t.co/Lr9bQmS14o" +05/01/2018,Comedians,@WhoopiGoldberg,Excited to bring my 9 animated shorts to @Tribeca ’s film festival this year to celebrate imaginative storytelling.… https://t.co/ouJZjAjJXO +04/26/2018,Comedians,@WhoopiGoldberg,Yesterday I spent the afternoon immersed in Summer the Donna Summer musical at the Lunt on Broadway. She had a 1 of… https://t.co/zuQnHqTzF2 +04/23/2018,Comedians,@WhoopiGoldberg,I just spent the whole day in the theatre watching Harry Potter & the Cursed Child pt 1 &2. The show is off the hoo… https://t.co/NsMLbfIq9c +03/09/2018,Comedians,@WhoopiGoldberg,"@KillerMartinis I read your piece in today’s @thedailybeast, story 3. I tried 2 post but I kept messing it up, hope… https://t.co/8jNyyWAlQC" +03/05/2018,Comedians,@WhoopiGoldberg,RT @LoriGreiner: Luv to laugh?! See what in the world @LouieAnderson & I are up to on the HILARIOUS TV comedy @BasketsFX w/ @galifianakisz… +02/24/2018,Comedians,@WhoopiGoldberg,"RT @Ike_Saul: Students have: + +- forced CNN town hall +- got new commitments from Rubio +- pressured POTUS to call for bump stock ban +- led a…" +02/24/2018,Comedians,@WhoopiGoldberg,RT @BetteMidler: And to you Hertz! Well done! https://t.co/b5uQZrdLKJ +02/24/2018,Comedians,@WhoopiGoldberg,"RT @helenhousandi: I've watched this GIF at least 100 times now, cry-laughing the entire time. https://t.co/Hih7VJe28T" +02/23/2018,Comedians,@WhoopiGoldberg,@FLGovScott THANK YOU for of choosing the well-being of Kids & Teachers FIRST https://t.co/JaNFzpvsHZ +02/14/2018,Comedians,@WhoopiGoldberg,@darlenebearden @auburnrunnermom @plusaphoto @ABC @TheView @JoyVBehar @foxandfriends @sunny @MeghanMcCain… https://t.co/3jb2hYvMN5 +02/14/2018,Comedians,@WhoopiGoldberg,@_Makada_ @delorose propaganda much Makada? If VP feels some type of way..he should not have attended the olympics… https://t.co/jT7n4rkufa +02/14/2018,Comedians,@WhoopiGoldberg,@JordanPeele @Ryyyanne Can I say this on the view? +02/14/2018,Comedians,@WhoopiGoldberg,@darlenebearden @ABC @TheView @JoyVBehar why are you watching Darlene you still have free will save yourself the ag… https://t.co/c0HsA4vee6 +02/14/2018,Comedians,@WhoopiGoldberg,"Oh hell AND Happy Valentine’s Day, these are for you all❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️… https://t.co/Sy11HFDv2q" +02/14/2018,Comedians,@WhoopiGoldberg,Kudos NOT kiddos +02/14/2018,Comedians,@WhoopiGoldberg,Kiddos.. not kiddos😱 +02/14/2018,Comedians,@WhoopiGoldberg,"kiddos to this director@RyanCoogler 4 getting it done damn well, Lupita, Dani, Letitia, & Florence r messing people… https://t.co/RoTm7tSicz" +02/14/2018,Comedians,@WhoopiGoldberg,"Just watched Black Panther, RUN 2 this Film, Chadwick Boseman, Michael B Jordan off the hook, & EVERY woman in thi… https://t.co/1x0qKpU0U3" +02/05/2018,Comedians,@WhoopiGoldberg,"RT @sallykohn: Trayvon Martin would have turned 23 years old today. George Zimmerman shot and killed him, but… https://t.co/XVvLV8eLvM" +01/31/2018,Comedians,@WhoopiGoldberg,RT @EdKrassen: Neil Gorsuch dined w/ high ranking GOP Senators at the home of GOP Senator John Cornyn. Why is it wrong for an FBI agent to… +01/31/2018,Comedians,@WhoopiGoldberg,"No mention of Niger or of Sgt LaDavid Johnson, no mention of those Soldiers. Why not.. just asking." +01/31/2018,Comedians,@WhoopiGoldberg,"RT @RepDwightEvans: President Trump talked a whole lot about the black unemployment rate, but has his aides misinformed–yet again—he should…" +12/21/2017,Comedians,@WhoopiGoldberg,I just was sent this from a friend& so I figured I’d Shae it with you..makes a great point.. https://t.co/61PlwbIzxt +12/19/2017,Comedians,@WhoopiGoldberg,"Hey everyone I feel I have been remiss in wishing +Happy Chanukah Merry Christmas, Happy Holidays +Happy New Year to… https://t.co/vG7aYDmpVJ" +10/05/2017,Comedians,@WhoopiGoldberg,https://t.co/xPdNWiaAMh +08/20/2017,Comedians,@WhoopiGoldberg,"I realize I may be late with all this but all know is,losing Dick Gregory & Jerry Lewis is a gain 4 heaven, but big loss for comedy" +08/20/2017,Comedians,@WhoopiGoldberg,"Jerry Lewis passed today,millions around the world loved him,millions of kids he helped w/his telethons. R.I.P. &condolences 2 his family" +08/20/2017,Comedians,@WhoopiGoldberg,"About being black in America Dick Gregory has passed away, Condolences to his family and to us who won't have his insight 2 lean on +R.I.P" +08/20/2017,Comedians,@WhoopiGoldberg,"Dick Gregory, Truth teller, make you fall on your face laughing Comedian, health man before it was cool & crazy expensive unapologetic" +08/16/2017,Comedians,@WhoopiGoldberg,U all R the reasons This behavior will NOT fly +08/16/2017,Comedians,@WhoopiGoldberg,"To ALL those denominations who continue2come out &protest wrongs you C,2 all U different races that come out &protest the wrongs U C THANK U" +08/16/2017,Comedians,@WhoopiGoldberg,The silence of the Christian Right about the Charlottesville Attack is deafening. +08/16/2017,Comedians,@WhoopiGoldberg,Allowing this hate a new place to fester with permission from the man in office.laying blame on both sides is LUDICROUS WTF +08/16/2017,Comedians,@WhoopiGoldberg,"Why R people surprised that ""new guy "" in office who started HIS run out w/hate speech that many overlooked in order to justify voting 4him" +08/07/2017,Comedians,@WhoopiGoldberg,"Hey there y'all have been on my mind and just wanted 2 say thank you 4 all your support over the years,& haven't said that you in a while🙂" +07/28/2017,Comedians,@WhoopiGoldberg,"@MarkReardonKMOX Mark, that's how u ask a question you want their ans. You ask, you don't tell them & Ur on the radio you know that" +07/28/2017,Comedians,@WhoopiGoldberg,To sit down and make ACA work for the majority and not respective parties.Bravo 2 those who remembered it's about the People NOT the Party +07/28/2017,Comedians,@WhoopiGoldberg,That was never done with ACA Mitch McConnell led his party into a stance not good for the https://t.co/I54jgf7NHl both side will have +07/28/2017,Comedians,@WhoopiGoldberg,"Thank2John McCain Claire McCaskill&Susan Collins,ACA was not perfect, no bill is, both sides then take it and make it work 4 the people" +07/25/2017,Comedians,@WhoopiGoldberg,"Congrats!!!!!! +https://t.co/Ptoo0geNJX" +06/30/2017,Comedians,@WhoopiGoldberg,"I'm crazy excited & amazed 2 b selected as 1 of the Board of Governors 4 @TheAcademy. I'm really thrilled!!! Thanks Academy, thanks voters!!" +05/17/2017,Comedians,@WhoopiGoldberg,Watch this powerful film by @JOSS Whedon & then join the fight to #StandWithPP → https://t.co/qi3aTTq08a +05/09/2017,Comedians,@WhoopiGoldberg,"So excited,1 of the smartest people I know launches Deadline:White House on MSNBC at 4 go @NicolleDWallace, can't wait to watch!!!" +04/06/2017,Comedians,@WhoopiGoldberg,"One of the all time great men & comics Don Rickles passed, always a class act & funny as hell. RIP condolences to his family & to America" +03/06/2017,Comedians,@WhoopiGoldberg,"Ben Carson..please read or watch Roots, most immigrants come here VOLUNTARILY,cant't really say the same about the slaves..they were stolen" +03/02/2017,Comedians,@WhoopiGoldberg,Important clarification about fake news attributed to me. Thank you @snopes for debunking #FakeNews:… https://t.co/auFP2yBFmj +03/01/2017,Comedians,@WhoopiGoldberg,"RT @FIRE_THE_FOOL: ""Education is civil rights issue of our time"" -45. I'd argue CIVIL RIGHTS is the civil rights issue of our time. #fireth…" +03/01/2017,Comedians,@WhoopiGoldberg,RT @waltb31: Been watching @MSNBC all day Not one mention of Rachel @maddow's blockbuster exposé of the Wilbur Ross Russian bank ties. Wond… +03/01/2017,Comedians,@WhoopiGoldberg,"RT @sallykohn: FACT CHECK: Obama actually CUT the deficit by almost three-quarters. + +https://t.co/YhyU42vK1N #JointAddress" +03/01/2017,Comedians,@WhoopiGoldberg,RT @thesherylralph: #THEGREATWALL Joshua fought the battle of Jericho and you know what happened! +03/01/2017,Comedians,@WhoopiGoldberg,"RT @PolitiFact: ""94 million Americans"" out of the labor force. That's misleading. https://t.co/hVBWNWBUAl https://t.co/h1CRYDswTx" +03/01/2017,Comedians,@WhoopiGoldberg,"RT @JCTheResistance: #DontGetTrumped +#BlackOutTrump + +Don't get complacent. + +Don't back down + +Stay pissed off. https://t.co/cGvTs62KNF" +03/01/2017,Comedians,@WhoopiGoldberg,A Great Great Wall? What the hell? +02/27/2017,Comedians,@WhoopiGoldberg,"I'm so honored to be part of #WhenWeRise, starting Tonight 9|8c on ABC. Hope you’ll check it out. https://t.co/tUKqpa2W8k" +02/25/2017,Comedians,@WhoopiGoldberg,“LETTER TO IVANKA” by @woke_nation https://t.co/EKqtalWK0t A beautiful request +02/22/2017,Comedians,@WhoopiGoldberg,"Hey everyone who re-tweeted that young man's info, @SherriEShepherd just let me know he's been found alive and he is now safe. YOU ALL ROCK!" +02/21/2017,Comedians,@WhoopiGoldberg,https://t.co/zrOj8JnYpQ +02/21/2017,Comedians,@WhoopiGoldberg,Hey @SherriEShepherd asked me to tweet this out & to get folks 2 retweet PLEASE HELP https://t.co/0Mtml6hgGP +02/17/2017,Comedians,@WhoopiGoldberg,"@StephenKing been re-listening 2 Salems Lot &into my dreams comesJohn Zacherley (also watched as a kid)message 2 U from him ""I am a story""" +02/16/2017,Comedians,@WhoopiGoldberg,"WellG'nite, I wish us all the good fortune 2 sleep & wake up tomorrow & do our best 4 R family & friends & the occasional stranger" +02/16/2017,Comedians,@WhoopiGoldberg,@Susang1979 @TiffanyATrump silly woman I said I would sit with her at any of the fashion shows do your home work +02/16/2017,Comedians,@WhoopiGoldberg,@Wyattladelle @TiffanyATrump omg do ur homework dude wtf r u talking about do u even know? You don't watch the show & now u look stupid. +02/16/2017,Comedians,@WhoopiGoldberg,"@BrentJManners @TiffanyATrump yes when she was a little girl," +02/16/2017,Comedians,@WhoopiGoldberg,@Argos5USA @TiffanyATrump sorry did u know that I said I would sit with her at the next fashion show?Nothing about the view.. do ur homework +02/16/2017,Comedians,@WhoopiGoldberg,"RT @EKeratsis: @WhoopiGoldberg How kind, your thoughts toward Tiffany Trump. I am no Trump supporter. DONALD Trump. But the kid? You're a m…" +02/16/2017,Comedians,@WhoopiGoldberg,@whoosdat @TiffanyATrump u have no idea what ur talking about do u? U heard something that u didn't bother to check +02/16/2017,Comedians,@WhoopiGoldberg,@JT3cool @TheDailyBeast_ @thedailybeast I mean no matter who you voted for does ANYONE think this is a good idea? +02/16/2017,Comedians,@WhoopiGoldberg,@BPoppel what? Look if ur going 2bitch bout the view at least know what your talking about & clearly U don't get your the facts right +02/16/2017,Comedians,@WhoopiGoldberg,@lemon_meringues thank you I'll try to remember that🙋🏾 +02/16/2017,Comedians,@WhoopiGoldberg,"@garza_anabella I hope people will continue to support them. +🙋🏾" +02/16/2017,Comedians,@WhoopiGoldberg,"Senate Does NRA’s Bidding, Lets 75,000 Mentally Ill People Buy Guns https://t.co/dcq34kAKfl via @TheDailyBeast_" +02/15/2017,Comedians,@WhoopiGoldberg,"I JUST saw this, I ADORED your dad!!& nice to say hi to you as well https://t.co/jj9yPhli6g" +02/15/2017,Comedians,@WhoopiGoldberg,@HeyMisfit he was the best +02/15/2017,Comedians,@WhoopiGoldberg,@Yuridianocun LOVE Cancun!! +02/15/2017,Comedians,@WhoopiGoldberg,@JT3cool hey Joe!! 😀 +02/15/2017,Comedians,@WhoopiGoldberg,"Whatever your belief's I wish for us and all our friends, lovers, kids, strangers a really good day and laughter somewhere in the day." +02/15/2017,Comedians,@WhoopiGoldberg,"@ru4boo if you wish it, hello my sister💃🏽" +02/15/2017,Comedians,@WhoopiGoldberg,"@melbourneminker nope I'm still here, I'd say check your facts, but if facts actually mattered to u, you'd have sent a smarter tweet" +02/15/2017,Comedians,@WhoopiGoldberg,RT @OhMyGOFF: Please RT 27-Year-Old Woman Reported #Missing In Maryland: https://t.co/zepagaM6Fj via @nbcwashington +02/15/2017,Comedians,@WhoopiGoldberg,"Fake News huh?..So Fake Mr.Flynn resigned..Wow does this mean all those u were blaming 4 Mr. Flynn's problems +was the actual FAKE news?" +02/15/2017,Comedians,@WhoopiGoldberg,@JuniorPoulton I was bitching then as welI &bitched only 1 group was being deported when it was supposed 2 be about folks here illegally +01/19/2017,Comedians,@WhoopiGoldberg,RT @FrenchGetem: My president is black today's the last day 😭retweet this😭 https://t.co/u83C7Z7wsa +01/11/2017,Comedians,@WhoopiGoldberg,U R the last President my mom & brother were alive 4 the last president we all shared so U will always represent the best of times 2me 😂❤🙋🏾 +01/11/2017,Comedians,@WhoopiGoldberg,"RT @WhiteHouse: “My fellow Americans, it has been the honor of my life to serve you.” —@POTUS #OamaFarewell" +01/11/2017,Comedians,@WhoopiGoldberg,And BOOM...THAT is the way a President drops the microphone and moves on down the road +01/11/2017,Comedians,@WhoopiGoldberg,WTF we are going frmPresident Obama's farewell address 2discussing possibility of prostitutes & Golden showers comprising the next prez +01/11/2017,Comedians,@WhoopiGoldberg,"RT @NARAL: ""It's about acknowledging that the effects of Jim Crow and Slavery didn't end in the 1960's."" #ObamaFarewell" +01/11/2017,Comedians,@WhoopiGoldberg,Not special treatment but equal treatment we as a nation have to try harder.. +01/11/2017,Comedians,@WhoopiGoldberg,This is what a REAL victory lap looks like and that only works if you have actually done something to to take a lap for. +01/06/2017,Comedians,@WhoopiGoldberg,"(9/9)I'm thrilled 2 b invited 2perform. I keep my fingers crossed, that these exchanges between us have given u some insight into me. +Whoop" +01/06/2017,Comedians,@WhoopiGoldberg,(8/9)more than perform because this is a quick trip that keeps my performance soul lubricated as being in just 1 place can feel constrained. +01/06/2017,Comedians,@WhoopiGoldberg,"(7/9)my life and where I come from & it might help u find a more gracious way to solicit a donation. +Unfortunately I won't be able to do" +01/06/2017,Comedians,@WhoopiGoldberg,"(6/9)b lost on me. Perhaps if u look me up & saw me as a real person instead of just some stereotype u disagree with, you'd know how I live" +01/06/2017,Comedians,@WhoopiGoldberg,(5/9)disabuse u of this idea that I don't know what it's like to work for a living or that somehow the work this school does would somehow +01/06/2017,Comedians,@WhoopiGoldberg,(4/9)employees & more taxes for the business. Understand I'll never make enough money 2 b entitled 2 NOT pay my taxes. I tell u all this 2 +01/06/2017,Comedians,@WhoopiGoldberg,"(3/9)2 folks who booked the show (agents), fees to 2 bus drivers & fuel. Also, I run a company & pay business managers, lawyers and 9" +01/06/2017,Comedians,@WhoopiGoldberg,"(2/9)a number was put out there by u, let's discuss. Because of my tax bracket, about 50% of that fee will go to state and local taxes, 10%" +01/06/2017,Comedians,@WhoopiGoldberg,"(1/9)Dear @WoodyWhite5, +Thank u 4 ur interesting & informative response. I don't normally discuss financial matters w/ strangers but since" +01/06/2017,Comedians,@WhoopiGoldberg,@ArthurRHill3 wishful thinking on many peoples part Arthur sorry 2 break hearts again😀 +01/06/2017,Comedians,@WhoopiGoldberg,"@zanne68 in fact it's the only time we HEARD him say it.. +Would u want someone 2 talk about u, your daughter or mother sister that way ever?" +01/05/2017,Comedians,@WhoopiGoldberg,(9/9)known as the man excusing the bad behavior of another grown man who should've known better. +01/05/2017,Comedians,@WhoopiGoldberg,"(8/9)if nobody buys tkts, I won't come, but u will lose all credibility as a 1st amendment guy - oh, wait, that's not u - u'll still be" +01/05/2017,Comedians,@WhoopiGoldberg,(7/9)thing then Im surprised u r OK w/ that & questioning me. It just makes me glad my mother raised me 2 know what is truly offensive. So +01/05/2017,Comedians,@WhoopiGoldberg,"(6/9) someone who thinks grabbing women by the genitalia and also saying out loud ""that if you are famous, woman will allow that kind of" +01/05/2017,Comedians,@WhoopiGoldberg,"(5/9) That's neither here nor there, but the fact that it would not occur to u that women & girls would be offended about the prospect of" +01/05/2017,Comedians,@WhoopiGoldberg,"(4/9) tho I don't expect u will because if u were interested in facts or truth, u wouldn't have had any basis for what u wrote about me." +01/05/2017,Comedians,@WhoopiGoldberg,(3/9)advantage to remain ignorant of the facts but for what it's worth I never said I would leave if Trump became President U can look it up +01/05/2017,Comedians,@WhoopiGoldberg,"(2/9) Well, if u r going 2 talk about me, get it right. I get that it's 2 ur" +01/05/2017,Comedians,@WhoopiGoldberg,(1/9) This appeared 2day & I want 2 set it str8 https://t.co/gF2VWGqry2 +12/31/2016,Comedians,@WhoopiGoldberg,"Debbie Reynolds once said to me surviving the bullshit requires a keen sense of self & of humor. condolences Todd Fisher &Billie Lourde +RIP" +12/27/2016,Comedians,@WhoopiGoldberg,"Carrie Fisher has passed, she was funnier&smarter than anyone had the right to be. Sail On Silver Girl. Condolences Debbie & Billie +R.I.P." +12/26/2016,Comedians,@WhoopiGoldberg,"R.I.P. George Michael... +Thankful for the music..." +12/12/2016,Comedians,@WhoopiGoldberg,Thankful for @rachaelray's generosity! She donated $10K to support @MainLineRescue. Follow her pet food brand @nutrish 4 more.#SantaPaws2016 +11/19/2016,Comedians,@WhoopiGoldberg,The fabulous Sharon Jones has passed tonight she & her band The DapKings made great music together & she sang her butt off. Condolences RIP +11/16/2016,Comedians,@WhoopiGoldberg,Show your support for #WorldCOPDDay by posting a Straw Selfie and tag @Philips #BreatheBoldly for #COPD #Sponsored https://t.co/JVD3sXhIKQ +11/13/2016,Comedians,@WhoopiGoldberg,"The magnificent Leon Russell amazing musician, true superstar ""Long ago and so far away,I fell in love with you..After the 2nd show"" R.I.P" +11/09/2016,Comedians,@WhoopiGoldberg,"RT @Crutnacker: 2016. We've lost Bowie, Prince, Gene Wilder, Muhammad Ali and the United States all in the same year. #ElectionNight" +11/08/2016,Comedians,@WhoopiGoldberg,"I do not think all those voting for Donald Trump are racist, but I do think ALL the racists will be voting." +11/01/2016,Comedians,@WhoopiGoldberg,Just tweeted a really wonderful article that was on @voxdotcom this email madness.. +11/01/2016,Comedians,@WhoopiGoldberg,https://t.co/yNp9tm7Viz via @voxdotcom +10/20/2016,Comedians,@WhoopiGoldberg,"RT @CNN: On Donald Trump's #DebateNight performance, @VanJones68 quotes @llcoolj: ""He lied about the lies that he lied about"" https://t.co/…" +10/20/2016,Comedians,@WhoopiGoldberg,"RT @kkalmes2: Jake Tapper: Trump saying he won't support election results is ""stunning... https://t.co/XIrtTVLl3Y via @YouTube" +10/20/2016,Comedians,@WhoopiGoldberg,OMG WHATS HAPPENING here??? +10/20/2016,Comedians,@WhoopiGoldberg,The wall too??? +10/20/2016,Comedians,@WhoopiGoldberg,"I want to know how many decisions he's been involved with in terms of abortion, what does he know about this?" +10/20/2016,Comedians,@WhoopiGoldberg,Bad hombres? +10/20/2016,Comedians,@WhoopiGoldberg,"RT @JoshElliott32: Hillary Clinton, on Roe v Wade: ""I will defend women's rights to make their own health decisions. We have come too far t…" +10/10/2016,Comedians,@WhoopiGoldberg,RT @BuzzFeed: https://t.co/HOCSP2KJeN +10/10/2016,Comedians,@WhoopiGoldberg,"New York suddenly lost Brooklyn D.A. Ken Thompson 2cancer, worked tirelessly for the rights of all people RIP& condolences 2 his family" +10/10/2016,Comedians,@WhoopiGoldberg,"RT @NorahODonnell: ""If Donald Trump was trying to broaden his appeal tonight, where in the speech did he do that?"" @bobschieffer @CBSNews" +10/10/2016,Comedians,@WhoopiGoldberg,at the end of the day we have to answer the question to whom are we willing to give the stewardship of America's credibility +10/10/2016,Comedians,@WhoopiGoldberg,Gee Donald do you think some of that hate is your fault? +10/10/2016,Comedians,@WhoopiGoldberg,RT @chrisrock: My mother is 71 years old. Black don't crack . https://t.co/l6jB7Ju8a8 +10/10/2016,Comedians,@WhoopiGoldberg,"RT @GeorgeTakei: NAFTA was signed by President Bush, you knucklehead." +10/10/2016,Comedians,@WhoopiGoldberg,WTF is he talking about my god.. Wait...that's Alec Baldwin!! +10/10/2016,Comedians,@WhoopiGoldberg,OMG!! It's like a really BAD high!! +10/10/2016,Comedians,@WhoopiGoldberg,When four former presidents say your not fit to be president.. +10/10/2016,Comedians,@WhoopiGoldberg,"When they go low, you go high!" +10/08/2016,Comedians,@WhoopiGoldberg,"@ananavarro out there telling truth tothe GOP, HER own party, not only is she saying ""he needs to drop out right now"" & then lays it out 4 u" +10/06/2016,Comedians,@WhoopiGoldberg,"Hey just want to say thank you all again for the support you've given the cast of Strut,@oxygen and me" +10/06/2016,Comedians,@WhoopiGoldberg,@HowardStern Howard thank you for making our cast of Strut feel like a jillion bucks and for having their back's it means the world 2 us all +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia I am your fan and yr student, thank you 4 being U🙋🏾" +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia Bird Set Free & California Dreaming r two that ur voice paints, ur artistry is thrilling, whatever u got from me you've given back 2me" +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia First.. We adore you & yr talent, I can say ask so thank you for your kind words about our show,Strut & love that your watching it.🙋🏾" +10/06/2016,Comedians,@WhoopiGoldberg,RT @Sia: In love with the new reality tv show STRUT about our trans brothers and sisters trying to make it in the modeling biz! Love you gu… +10/02/2016,Comedians,@WhoopiGoldberg,@TyDurdz why not share it +10/02/2016,Comedians,@WhoopiGoldberg,"RT @mamatator1: @WhoopiGoldberg @nytimes The IRS went after Pete Rose, Wesley Snipes, Willie Nelson, and Redd Foxx. Why have they not arres…" +10/02/2016,Comedians,@WhoopiGoldberg,"Hell I forgot to thank everyone 4all the support you all have given Strut, I know how much help & love y'all have shown me & lot that I do🙋🏾" +10/02/2016,Comedians,@WhoopiGoldberg,"So this has been fun nice to connect to folk with a different opinion who don't call you names. +Good night y'all sleep well" +10/02/2016,Comedians,@WhoopiGoldberg,@Rayrobby11 in what country did he releases his taxes think @KellyannePolls his campaign manager would have mentioned it.oh well +10/02/2016,Comedians,@WhoopiGoldberg,"@Boch56 @nytimes hey boch it's been a long time!Family good, my best to everyone." +10/02/2016,Comedians,@WhoopiGoldberg,@jessie2u I work everyday Sharon I pay about close to 50 percent of my income and I don't get a return at the end is the year.. And you? +10/02/2016,Comedians,@WhoopiGoldberg,"@usmsmom it's not business call it what it is,the screwing of fellowAmericanswho don't get to blow off their cos of a bad year." +10/02/2016,Comedians,@WhoopiGoldberg,"@jessie2u you haven't annoyed me, +my mom worked hard made not a lot of money & SHE paid all her taxes sometime over time, why can't he" +10/02/2016,Comedians,@WhoopiGoldberg,@JT3cool @HillaryClinton Joe if people saw stuff in our past with today's eyes we WOULD b in jail😂 & thank u 4 honoring fallen soldiers btw +10/02/2016,Comedians,@WhoopiGoldberg,@jessie2u 4 everyone who clearly missed this & u keep tweeting the same question Answer: Clintons taxes were made public a long time ago +10/02/2016,Comedians,@WhoopiGoldberg,"@Richard555 tell that to the millions o people who struggle every day & still pay their tax, don't they'd like a loop hole too?" +10/02/2016,Comedians,@WhoopiGoldberg,Question Did u pay yr taxes hell yea Ans. #not wealthy enough for a loophole +10/02/2016,Comedians,@WhoopiGoldberg,@JT3cool @HillaryClinton not sure ur info is correct Joe but I'm sure someone will look into it as they have looked into everything else +10/02/2016,Comedians,@WhoopiGoldberg,@Chandra0816 girl I pay them every penny's they say I owe cos u know the IRS doesn't play😂 +10/02/2016,Comedians,@WhoopiGoldberg,"@jessie2u Clintons tax returns been public 4A while, yr 2nd question Yes I pay my tax all 50 percent of it, not wealthy enough for loop hole" +10/02/2016,Comedians,@WhoopiGoldberg,RT @WhoopiGoldberg: Trump Tax Records Obtained by The Times Reveal He Could Have Avoided Paying Taxes for Nearly Two Decades https://t.co/c… +10/02/2016,Comedians,@WhoopiGoldberg,@NicolleDWallace @nytimes hey Nichole a friend got the tinkle called me.. So I thought I'd share it.. Crazy right a trueWTF moment +10/02/2016,Comedians,@WhoopiGoldberg,Trump Tax Records Obtained by The Times Reveal He Could Have Avoided Paying Taxes for Nearly Two Decades https://t.co/cb0e4gCQaz +09/27/2016,Comedians,@WhoopiGoldberg,@strut episode 2 tonight on @oxygen 9pm/8central +09/27/2016,Comedians,@WhoopiGoldberg,"Proud of @HillaryClinton had a vision and a plan and did her thing, she was on point well done" +09/27/2016,Comedians,@WhoopiGoldberg,"I Think with all those emails everyone always talking about it's kind of amazing that no one has hacked her server," +09/27/2016,Comedians,@WhoopiGoldberg,"This is some crazy shit, wtf!! he's gone crazy. He just said i settled that lawsuit with no admission of guilt.." +09/21/2016,Comedians,@WhoopiGoldberg,Hey UK & Ireland! You can watch our new show #Strut on @hayu_uk every Wednesday! You can sign up at https://t.co/4Ogws6oAST. Enjoy! +09/20/2016,Comedians,@WhoopiGoldberg,(4/4) Was even possible doesn't make sense +09/20/2016,Comedians,@WhoopiGoldberg,(3/4) So the idea that anyone would think that I was making fun of the possible divorce without knowing if it +09/20/2016,Comedians,@WhoopiGoldberg,(2/4) The view it was unsubstantiated and therefore gossip - to me if u know anything about me you know I hate talking about +09/20/2016,Comedians,@WhoopiGoldberg,(1/4) I'm hearing that people thought I was making fun of the Angel/brad split 1 at 11 am when I was asked to do it on +09/14/2016,Comedians,@WhoopiGoldberg,You can watch the 1st episode of #Strut on my Facebook page before it premieres 9/20 8/9c on @oxygen https://t.co/sUKpPcXFKH +08/12/2016,Comedians,@WhoopiGoldberg,"one of my fav shoe spots is closing. Solestruck +had some of the shoes out there & u made my feet stand out so THANK U SOLESTRUCK" +08/09/2016,Comedians,@WhoopiGoldberg,"Here is a look at our new show #Strut premiering on @oxygen Tuesday, September 20th at 9/8c. Enjoy! https://t.co/pZFOdnskxB" +08/09/2016,Comedians,@WhoopiGoldberg,"We are announcing our new show #Strut today premiering Tuesday, Sept. 20 at 9/8c on @oxygen So proud! Hope you enjoy!" +08/03/2016,Comedians,@WhoopiGoldberg,"correction daily beast well done + +https://t.co/GyD4KcHARK" +08/03/2016,Comedians,@WhoopiGoldberg,Someone my age would do. For goodness sake the only botch fest is the one in talks minds.no fight here just clearing up an untruth +08/03/2016,Comedians,@WhoopiGoldberg,"Anything I think?? No daily mail I wouldn't, so if your going to continue to accuse me of doing this kind of thing could you make something" +08/03/2016,Comedians,@WhoopiGoldberg,Also daily mail knowing that people talk A lot do you honestly think I would talk or act in such a way that would give u ANY ability to know +08/03/2016,Comedians,@WhoopiGoldberg,"Rule the entire universe, I have enough to do in my life than to take mean girl pleasure at some one else WRONGLY perceived change." +08/03/2016,Comedians,@WhoopiGoldberg,I'm not responsible 4 firing or moving people around or negotiating my coworkers contracts. I LIKE having a gig and as much as I'd like to +08/03/2016,Comedians,@WhoopiGoldberg,"Contrary to what u might read in the I do NOT run ABC nor do I own or produce,not involved in hiring4 the View so don't send ur resumes" +07/28/2016,Comedians,@WhoopiGoldberg,So proud to support @amfAR & @kiehls for #LifeRide7. Join the conversation and help us find a cure! https://t.co/Se8KmPKFl9 +07/26/2016,Comedians,@WhoopiGoldberg,Ok @HilliaryClinton...History made...your turn now...Take care of business +07/12/2016,Comedians,@WhoopiGoldberg,"My friend Nicolle Wallace got some insight into Jeb Bush in her interview last night, Your STILL a Great interviewer & we miss u here.." +07/11/2016,Comedians,@WhoopiGoldberg,"Ok NOW it's official, I have re-upped for 1 year returning to @TheView 4 the 2016/2017 season. Will continue 2 annoy some, delight others" +06/23/2016,Comedians,@WhoopiGoldberg,"A little more on our new show + +https://t.co/fWFIYCjO5h" +06/23/2016,Comedians,@WhoopiGoldberg,"Our new show with @44blue for @oxygen. + +https://t.co/S7NLc0oFCn" +06/04/2016,Comedians,@WhoopiGoldberg,"RIP Muhammad Ali u elevated the art of the fight in the ring &out of it,a truly funny man,&remains the greatest my condolences to the family" +05/24/2016,Comedians,@WhoopiGoldberg,For all my young fans... https://t.co/kXx5PJgHIK +05/23/2016,Comedians,@WhoopiGoldberg,"RT @oxygen: Get ready for Strut, a new series about transgender models breaking down barriers! https://t.co/XbS90HOgAc https://t.co/xtm1PDX…" +05/23/2016,Comedians,@WhoopiGoldberg,@oxygen So proud of our new show! Coming Sept. #Strut https://t.co/8S5MJpFcEL +05/05/2016,Comedians,@WhoopiGoldberg,Today on The View https://t.co/PvL7DSaVER +07/01/2018,Comedians,@aparnapkin,oh my god https://t.co/Hg38FsSyFX +07/01/2018,Comedians,@aparnapkin,"RT @Todd_Spence: This just made my year. + +JURASSIC PARK, but everyone including the dinosaurs is wearing high heels. (source Imgur) https:…" +07/01/2018,Comedians,@aparnapkin,"RT @jonnysun: me, before the party: ok ok u got this. just try to fit in. talk to ppl. stay cool. dont turn into a big duck. ull be fine +me…" +06/30/2018,Comedians,@aparnapkin,@jonnysun jonny i love this so much thank you +06/30/2018,Comedians,@aparnapkin,@mattingebretson @corporate God is half shaved +06/30/2018,Comedians,@aparnapkin,takes one to know one https://t.co/QlNKOXyXWC +06/30/2018,Comedians,@aparnapkin,@mattingebretson @corporate Matt u finally found god +06/30/2018,Comedians,@aparnapkin,@morninggloria MS-13 came for my bilingual charter school core curriculum & then MSNBC came for my self-taught pundits +06/30/2018,Comedians,@aparnapkin,RT @RomancingNope: Maxine Waters has had to cancel events due to death threats. The Red Hen's owner has had to step down from a local leade… +06/30/2018,Comedians,@aparnapkin,Protests are a safe space for reading every sign that I pass out loud & I do not take it for granted +06/30/2018,Comedians,@aparnapkin,boyfriend took great pic. #familiesbelongtogether https://t.co/txXtxHyLhe +06/30/2018,Comedians,@aparnapkin,#familiesbelongtogether ❤️ great signs think alike (not sure who made this but it’s rul good!) https://t.co/6rNn9M5tab +06/30/2018,Comedians,@aparnapkin,Maybe everyone can clear up that their bigotry & calls for violence are sarcasm by finishing their thought with “pl… https://t.co/aW91drFB5R +06/30/2018,Comedians,@aparnapkin,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Comedians,@aparnapkin,"RT @Jordan_Morris: Sorry websites, I prefer to get my news the old fashioned way: With a bunch of other people crowded around the window of…" +06/29/2018,Comedians,@aparnapkin,Sometimes I will download so many podcasts it’s like “Are you even hearing yourself right now?” +06/29/2018,Comedians,@aparnapkin,RT @weismanjake: Today is the last day of shooting season 2 of @corporate. The cast and crew were incredible. You are going to fucking love… +06/29/2018,Comedians,@aparnapkin,@JoshRadnor the struggle is REAL +06/29/2018,Comedians,@aparnapkin,"""Just trolling"" means words don't matter. Words do matter. Journalism matters. Consequences matter. https://t.co/yPdtVgCbGF" +06/29/2018,Comedians,@aparnapkin,RT @SarahKSilverman: The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships start… +06/29/2018,Comedians,@aparnapkin,@words_is_money i felt lucky to see the incredible work being done! +06/29/2018,Comedians,@aparnapkin,@nolairfan so nice to meet you! +06/29/2018,Comedians,@aparnapkin,@JudahWorldChamp i believe it +06/28/2018,Comedians,@aparnapkin,Just texted my psychiatrist a “:(“ hello breakthrough +06/28/2018,Comedians,@aparnapkin,"@erikaabdelatif back in ny, sorry friend!" +06/28/2018,Comedians,@aparnapkin,Nothing destroys an otherwise functional relationship like trying to help someone parallel park +06/28/2018,Comedians,@aparnapkin,@IHeartApplejack @nytimesarts @nytimes thanks friend <3 +06/28/2018,Comedians,@aparnapkin,bloomington! hey! https://t.co/glbDZFLC0g +06/28/2018,Comedians,@aparnapkin,yeah she is! and i am as well! https://t.co/z3vydNRhZ4 +06/27/2018,Comedians,@aparnapkin,"My old gynecologist’s office just sent me an e-vite to a blow-dry party & it’s like “This isn’t your way back in, bb.”" +06/27/2018,Comedians,@aparnapkin,"RT @ACLU: UPDATE — +Just over 24 hours later, the court ordered: +✅ all children must be reunited within 30 days; +✅ children under five must…" +06/27/2018,Comedians,@aparnapkin,"PRIORITIES: +❌ Holding a rally for yourself +❌ Tweeting at late night hosts +❌ Listening to a podcast with said late n… https://t.co/B04K9pdRwP" +06/27/2018,Comedians,@aparnapkin,RT @GhostPanther: Very exciting. Time to create a New Democratic Party https://t.co/1ZiE0Y0C8o +06/27/2018,Comedians,@aparnapkin,"RT @KenTremendous: McConnell stole a SCOTUS seat, and now SCOTUS is gutting antitrust law, banning immigration based on religion, and uphol…" +06/27/2018,Comedians,@aparnapkin,"Grateful to have been a part of this & glad for what it’s helped to manifest! +https://t.co/gSjWSzNryA" +06/27/2018,Comedians,@aparnapkin,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/27/2018,Comedians,@aparnapkin,@VimanaRob yup i am also a tennis shoe +06/27/2018,Comedians,@aparnapkin,"@GregProops was just waiting for my assist, thank you, greg" +06/27/2018,Comedians,@aparnapkin,His name was Antwon Rose Jr. #BlackLivesMatter https://t.co/dRs7oDKBdD +06/27/2018,Comedians,@aparnapkin,RT @laurenduca: Fuck civility. https://t.co/oRn1R2mLLU +06/27/2018,Comedians,@aparnapkin,"World Cup, Super Bowl, wake me up when it’s time for the Intergalactic Gravy Boat" +06/26/2018,Comedians,@aparnapkin,RT @michaelianblack: Thank you to the good people at Breitbart for picking up my book announcement about masculinity. The responses have ma… +06/26/2018,Comedians,@aparnapkin,RT @washingtonpost: Amber Tamblyn’s novel about sexual assault will upset some people. She’s okay with that. https://t.co/erNIi14v9C +06/26/2018,Comedians,@aparnapkin,"the news is beyond terrible right now but dont forget, despite all your care & concern, to make a little room for y… https://t.co/7ChEkPn4bj" +06/26/2018,Comedians,@aparnapkin,RT @KarenKilgariff: This is THE SHIT https://t.co/ktaEt3ULZe +06/26/2018,Comedians,@aparnapkin,@weismanjake jake u r jazz +06/26/2018,Comedians,@aparnapkin,"“It’s not a Muslim ban, it’s just a ban against Muslim-majority countries” is gaslighting at its finest" +06/26/2018,Comedians,@aparnapkin,"RT @meganamram: New word: ""Civillain"" -- someone who is willing to throw the needs of innocent people and the country under the bus in an e…" +06/26/2018,Comedians,@aparnapkin,RT @chrislhayes: Hey New Yorkers: You've got an election day Tuesday! Lots of interesting races. Go vote! +06/26/2018,Comedians,@aparnapkin,"if you aren’t going to count trump’s bigotry in his decisionmaking, when exactly are you going to count it? recreational racists dont exist" +06/26/2018,Comedians,@aparnapkin,RT @CecileRichards: SCOTUS today: upholds the immoral Muslim ban and says it’s just fine for fake clinics paid for with tax $ to lie to wom… +06/26/2018,Comedians,@aparnapkin,RT @OhNoSheTwitnt: Pretty sure civility died the day Trump offered to pay legal fees for his supporters if they beat up protestors. +06/26/2018,Comedians,@aparnapkin,A supreme court is only as fair as how its members got there +06/26/2018,Comedians,@aparnapkin,"RT @voxdotcom: The 2014 election had the lowest turnout in 72 years, in part because a lot of Democrats didn’t think they mattered. Tuesday…" +06/26/2018,Comedians,@aparnapkin,@peteabides @Refinery29 @kingfirestorm ha! thanks pete! +06/26/2018,Comedians,@aparnapkin,"RT @joncoopertweets: Sonia Sotomayor condemns Trump’s “unrelenting attack on the Muslim religion and its follow­ers” + +Sotomayor read Trump’…" +06/26/2018,Comedians,@aparnapkin,"RT @ACLU: Despite what the Supreme Court just decided, Congress can pass legislation to rescind the president's Muslim ban. + +It's up to us…" +06/26/2018,Comedians,@aparnapkin,RT @brhodes: The breakdown in civility and our politics occurred when a sitting President couldn't even get a hearing on a Supreme Court no… +06/26/2018,Comedians,@aparnapkin,social media is such a great place to mute new people +06/26/2018,Comedians,@aparnapkin,@Gwionbach well he did say maybe gary johnson because of course everyone almost remembers gary johnson +06/26/2018,Comedians,@aparnapkin,"did David Lynch mean ""He could go down as one of the greatest PRECEDENTS in history because he has disrupted the th… https://t.co/OioSSXoZV2" +06/26/2018,Comedians,@aparnapkin,your right to #civility ended when you started taking away civil rights +06/26/2018,Comedians,@aparnapkin,RT @MikeDrucker: Fun that the people who spent 10 years complaining about PC culture are now deeply upset whenever someone dares be rude to… +06/26/2018,Comedians,@aparnapkin,"RT @laurenduca: At this point, Twitter is just Yelp for the presidency" +06/26/2018,Comedians,@aparnapkin,"RT @ohJuliatweets: Colin Jost is dating Scarlett Johansson and Pete Davidson is dating Ariana Grande and every female comedian is like, ""I…" +06/25/2018,Comedians,@aparnapkin,Via: @JenaFriedman. https://t.co/qnpSug7HbH +06/24/2018,Comedians,@aparnapkin,no shirt no conscience no service +06/24/2018,Comedians,@aparnapkin,You know who else came into this country illegally? The people who created the whole government so +06/24/2018,Comedians,@aparnapkin,"RT @NickMiroff: We finally know how many children were taken from their parents since May 5, when the govt says its separation system went…" +06/24/2018,Comedians,@aparnapkin,"RT @marcushjohnson: How you gonna be on Team Trump, team ""fuck you feelings,"" team ""let's hurt minorities,"" and then you get mad when other…" +06/24/2018,Comedians,@aparnapkin,RT @morninggloria: Weird that the president thinks he can reduce crime with border security measures he comes up with when he wasn’t even a… +06/24/2018,Comedians,@aparnapkin,happy pride. tolerance is free. acceptance is free. love is free. being yourself is priceless. https://t.co/OKIz67VgsX +06/24/2018,Comedians,@aparnapkin,"hey white women, can i speak to YOUR manager" +06/24/2018,Comedians,@aparnapkin,"RT @Shakestweetz: White People: Pull yourself up by the bootstraps! + +Black Girl: Okay. + +White People: *calls police* + +#PermitPatty" +06/23/2018,Comedians,@aparnapkin,"RT @morninggloria: Statistically, men in Jared Kushner's immediate family are much more likely to commit felonies than undocumented immigra…" +06/23/2018,Comedians,@aparnapkin,RT @mbieseck: BREAKING ⁦@AP:⁩ Immigrant children as young as 14 housed at a juvenile detention center in Virginia say they were beaten whil… +06/23/2018,Comedians,@aparnapkin,"Getting politely asked to leave a restaurant for human rights crimes still beats getting the cops called on you for existing, no?" +06/23/2018,Comedians,@aparnapkin,"@kimnewmoney this is a beautiful poem, kim" +06/23/2018,Comedians,@aparnapkin,"RT @guybranum: If you oppose gay marriage and immigration to this country, you don't get farm to table dining. You picked a side in the cul…" +06/23/2018,Comedians,@aparnapkin,does treating people respectfully not include separating families? https://t.co/vf3hxNSiiX +06/23/2018,Comedians,@aparnapkin,@dannystearns @elizaskinner thanks danny +06/23/2018,Comedians,@aparnapkin,I'm at a point in my life where I log out like I'm walking away from a burning car +06/22/2018,Comedians,@aparnapkin,@BebeNeuwirth Bebe!!! <333 +06/22/2018,Comedians,@aparnapkin,"Ever deflected a compliment so hard it falls to the ground, shatters & everyone just stares at it sadly" +06/22/2018,Comedians,@aparnapkin,@elizaskinner This was just so good i muttered it to myself +06/22/2018,Comedians,@aparnapkin,@RickyCarmona Ricky!!!!!!!!!! Cmon!!!!!!! +06/22/2018,Comedians,@aparnapkin,@elizaskinner Sloppy chests +06/22/2018,Comedians,@aparnapkin,RT @ksieff: It is shockingly difficult for immigration attorneys to locate children separated from their parents at the border. Today I spo… +06/22/2018,Comedians,@aparnapkin,Lance is the king!!!! https://t.co/ejafZ43938 +06/22/2018,Comedians,@aparnapkin,@reb_says_what @NetflixIsAJoke @ModCloth thanks for watching! +06/21/2018,Comedians,@aparnapkin,Who wore this statement worse? Melania Trump's jacket or Donald Trump's entire Presidency? https://t.co/rHJ3o4IkZ4 +06/21/2018,Comedians,@aparnapkin,RT @Susan_Hennessey: This is a good time to recall that we have never been given an even remotely satisfactory response to strong evidence… +06/21/2018,Comedians,@aparnapkin,"This is one of the most incredible, powerful, wrenching pieces of comedy and art I have ever seen. Watch, watch, wa… https://t.co/aJE7q6k6Ey" +06/21/2018,Comedians,@aparnapkin,"Thanks for getting in my head, @vulture & @e_alexjung! +https://t.co/tqZ0T4QfpV" +06/20/2018,Comedians,@aparnapkin,A refugee is a human being. Let’s start there. #WorldRefugeeDay +06/20/2018,Comedians,@aparnapkin,"RT @ACLU: We are systematically tearing apart thousands of families — to scare others from seeking refuge. + +Does THIS reflect the deeply he…" +06/20/2018,Comedians,@aparnapkin,o i see you are worried about “monsters” coming into the country and ruining everything because you were actually t… https://t.co/tqLflhGwrH +06/20/2018,Comedians,@aparnapkin,The Statue of Liberty should replace her torch with a gaslight until further notice +06/20/2018,Comedians,@aparnapkin,RT @laurenduca: Today Kirstjen Nielsen drafted executive action to end the policy of family separation that she said did not exist less tha… +06/20/2018,Comedians,@aparnapkin,@jayweingarten @KyleMizono remember when we performed in a bar +06/20/2018,Comedians,@aparnapkin,RT @AndyRichter: I hope that every Latinx US citizen is registering to vote today so that they can go to the polls & remember those who wer… +06/20/2018,Comedians,@aparnapkin,To borrow from “A Time to Kill”...now imagine if all the children in those detention centers were white +06/20/2018,Comedians,@aparnapkin,the sound of the last of your humanity leaving the body https://t.co/kVSJVqGYuw +06/20/2018,Comedians,@aparnapkin,RT @Geniusbastard: It positively chills you to the bone the degree to which white people will accept almost any atrocity if you convince th… +06/20/2018,Comedians,@aparnapkin,"RT @GhostPanther: This is what the jailing of kids, the racism, the xenophobia, homophobia, the assault rifles, attacks on education, all o…" +06/20/2018,Comedians,@aparnapkin,RT @ashleyn1cole: I still remember every single person (read: white man) who the day after the election told me to calm down it wasn't goin… +06/19/2018,Comedians,@aparnapkin,If you're still holding rallies for yourself when you're currently sitting on unchecked human rights abuses...U MIGHT BE A DICTATOR +06/19/2018,Comedians,@aparnapkin,"RT @laurenduca: Infest. To describe human beings. The president is an unabashed white supremacist, and journalists have no valid reason to…" +06/19/2018,Comedians,@aparnapkin,RT @ambermruffin: Celebrate Juneteenth by remembering they’re coming for you next! +06/18/2018,Comedians,@aparnapkin,"RT @davidhogg111: Human beings are not illegal +Human beings are not illegal +Human beings are not illegal +Human beings are not illegal…" +06/18/2018,Comedians,@aparnapkin,RT @HuffPost: The nearly eight-minute recording is of 10 Central American children who were separated from their parents last week by immig… +06/18/2018,Comedians,@aparnapkin,"RT @isi_kbreen: as more information about the child detention camps comes out, and more conservatives bend over backwards to defend them, i…" +06/18/2018,Comedians,@aparnapkin,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/18/2018,Comedians,@aparnapkin,"RT @LadyGodiva83: Hey Twitter family, if you’re in a position to - please donate to the #EurydiceDixon memorial fund. She was a brilliant c…" +06/18/2018,Comedians,@aparnapkin,RT @clementine_ford: 1. Some thoughts. It was not a lack of ‘situational awareness’ that ended the life of Eurydice Dixon - it was a person… +06/17/2018,Comedians,@aparnapkin,RT @itsmeheidi_h: Y’all this #Apeshit video has me losing my shit. This moment right here is the fulfillment of my art history degree. Beyo… +06/17/2018,Comedians,@aparnapkin,"in honor of father’s day, turn off google maps and ask your nearest dad for directions" +06/17/2018,Comedians,@aparnapkin,i’d rather be wrong about being concerned than be right about doing nothing +06/17/2018,Comedians,@aparnapkin,"RT @GeorgeTakei: If you think authoritarianism cannot happen here in America, I lived through a time when it already did: to 120,000 Japane…" +06/17/2018,Comedians,@aparnapkin,"RT @ZackBornstein: Remember when people didn’t vote bc they said there was no difference between Hillary and Trump, and now there are child…" +06/17/2018,Comedians,@aparnapkin,RT @kashanacauley: “Let’s spell immigration in a way that emphasizes how much we know about the issue.” https://t.co/JvIGfKp4wr +06/17/2018,Comedians,@aparnapkin,"Happy Father’s Day! Here are ways to take action against families being separated at the border: +https://t.co/VHScZ7Nx7n" +06/17/2018,Comedians,@aparnapkin,@aBerginthehand @washingtonpost @birbigs hahah +06/17/2018,Comedians,@aparnapkin,@mediocremujer ❤️ +06/17/2018,Comedians,@aparnapkin,@thelilynews i was a stage 5 clinger +06/17/2018,Comedians,@aparnapkin,@RebesaurusRex thanks for watching! +06/15/2018,Comedians,@aparnapkin,no one’s hands are tied when it comes to basic human rights. laws can change. children are not political capital an… https://t.co/RjbQWQS1Uj +06/15/2018,Comedians,@aparnapkin,@SamJayComic yay!!!! +06/14/2018,Comedians,@aparnapkin,RT @joshgondelman: Okay I finally get why they say New York is the greatest city in the world. https://t.co/iVD2Lp4bRn +06/14/2018,Comedians,@aparnapkin,"RT @leedsgarcia: I'm on a plane, so might as well do this. Feeling helpless about the family separations at the border? Guess what, there a…" +06/14/2018,Comedians,@aparnapkin,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Comedians,@aparnapkin,@jonnysun jonny!!! you’re always the best +06/14/2018,Comedians,@aparnapkin,@nkuchibhotla @washingtonpost hi! +06/14/2018,Comedians,@aparnapkin,@kramdas kavita ❤️❤️❤️ +06/14/2018,Comedians,@aparnapkin,@aspiegelnpr thanks alix :) +06/14/2018,Comedians,@aparnapkin,@motherseer @washingtonpost @wkamaubell !!! +06/14/2018,Comedians,@aparnapkin,@eleanortiernan I catch it breathlessly +06/14/2018,Comedians,@aparnapkin,@maevehiggins Marve!!! +06/13/2018,Comedians,@aparnapkin,Go lizz! And lady parts justice! https://t.co/DBp5HTFaH4 +06/13/2018,Comedians,@aparnapkin,@KennethWReid thanks ken ❤️❤️❤️ +06/13/2018,Comedians,@aparnapkin,"@_chrisgarcia @HollywoodImprov @washingtonpost Thanks, chris 🙃🙃🙃" +06/13/2018,Comedians,@aparnapkin,"Thank you, @washingtonpost, for this deep cut origin story profile! (I was bitten by my radioactive parents.) +https://t.co/xd7N4vxIW0" +06/13/2018,Comedians,@aparnapkin,Best new drama of 2018 https://t.co/Kjb99psF9C +06/13/2018,Comedians,@aparnapkin,"Probably a bad sign that I now watch ""The Handmaid's Tale"" to unwind from the news" +06/13/2018,Comedians,@aparnapkin,@K0h4ku @ROBOTCAITLIN @DailyZeitgeist @ROBOTCAITLIN is the cat's PJs! And the dog's nightie! +06/13/2018,Comedians,@aparnapkin,"RT @IndieWire: David Simon on Anthony Bourdain: ""To lose him now, amid so many fear-mongering, xenophobic tantrums by those engaged in our…" +06/13/2018,Comedians,@aparnapkin,"RT @SopanDeb: Uh, David Simon (Yes, from ""The Wire"") is banned from Twitter currently. It is very bizarre who is allowed to remain on this…" +06/12/2018,Comedians,@aparnapkin,Ocean’s 8 makes me feel seen as a woman but also as someone who has tried to organize anything with more than 3 people +06/12/2018,Comedians,@aparnapkin,"Keep it together, scones" +06/12/2018,Comedians,@aparnapkin,Shame recognize shame https://t.co/mbwtn6FqNl +06/12/2018,Comedians,@aparnapkin,dictator rule: be so bad they have no choice but to rave over things like you sitting quietly +06/12/2018,Comedians,@aparnapkin,dis a good ting ! https://t.co/WLeDo1g6rc +06/12/2018,Comedians,@aparnapkin,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/12/2018,Comedians,@aparnapkin,RT @nathanfielder: Emmy voting is now open. Good luck to all the shows! https://t.co/1UAG0qLOA9 +06/12/2018,Comedians,@aparnapkin,"@sejhammer thank you, friend 🤡🤡🤡™️" +06/12/2018,Comedians,@aparnapkin,@PictureThisShow @mexopolis I love all of this!!! ❤️🤡❤️ +06/10/2018,Comedians,@aparnapkin,@mikeymeitbual thank you! +06/10/2018,Comedians,@aparnapkin,@mikeymeitbual it was me +06/10/2018,Comedians,@aparnapkin,“‘...We need preventive public-health initiatives on managing depression and anxiety in the pre-crisis stage...’ We… https://t.co/Rot86mmsz4 +06/10/2018,Comedians,@aparnapkin,"HAPPY PRIDE, EVERYONE!!! Take this dog’s lead and express your truest self!!! 🌈🌈🌈🌈🌈🌈🌈 https://t.co/OLCfeIAzmJ" +06/10/2018,Comedians,@aparnapkin,@mexopolis @PictureThisShow you were so wonderful! what an honor 🙃 +06/08/2018,Comedians,@aparnapkin,"RT @toastasaurus: I met Anthony Bourdain only once, while waiting in line at a food festival. Instead of hello he said ""hey kid, you hungry…" +06/08/2018,Comedians,@aparnapkin,❤️ https://t.co/6DJGDzSuRp +06/08/2018,Comedians,@aparnapkin,RT @MikeDrucker: Depression isn’t a form of sadness. It’s not something that goes away if you just think about how good you have it or how… +06/08/2018,Comedians,@aparnapkin,"RT @Caissie: So many messages telling those who are struggling to reach out. Fair enough, but part of what depression does is mutes your ab…" +06/08/2018,Comedians,@aparnapkin,boy are you an indie movie because you are projecting a boldly unresolved narrative onto me +06/07/2018,Comedians,@aparnapkin,@nathanwpyle I knew this was real!!!! +06/07/2018,Comedians,@aparnapkin,@bassamshawl @jbrogie @brckhmptn @kevinabstract @merlynwood @JOBAISREAL Yes +06/07/2018,Comedians,@aparnapkin,I always feel sorry for the “dogs in blankets who look like tacos” who don’t crack the Buzzfeed list +06/07/2018,Comedians,@aparnapkin,RT @STLFoodbank: Just a few more hours (until 10p) to get in on the #HungerIsNoJoke pre-sale. Get your tickets now before they go on-sale t… +06/07/2018,Comedians,@aparnapkin,@jbrogie @brckhmptn @kevinabstract @merlynwood @JOBAISREAL I dont follow!!! +06/07/2018,Comedians,@aparnapkin,"@biloon @AndyKindler what is mojos, she asked earnestly" +06/07/2018,Comedians,@aparnapkin,@sejhammer 😍😍😍 +06/07/2018,Comedians,@aparnapkin,@mgiant the algorithm is gonna getchoo +06/07/2018,Comedians,@aparnapkin,@AndyKindler you don't miss a beat! +06/07/2018,Comedians,@aparnapkin,"since reality got canceled awhile ago, let's at least keep the quality programming https://t.co/OsdtTrVHDG" +06/07/2018,Comedians,@aparnapkin,"it’s not delivery, it’s depression" +06/07/2018,Comedians,@aparnapkin,"RT @davidhogg111: .@BetsyDeVosED as you are secretary of education I respect your decision. However, as a citizen and survivor of a school…" +06/07/2018,Comedians,@aparnapkin,@seawardt September i believe but emily is first!!! +06/07/2018,Comedians,@aparnapkin,@KyleFollett kyle we are soul horses +06/07/2018,Comedians,@aparnapkin,@Kito_Ashbey @vulture awwww ❤️❤️❤️💎⚡️🤡🌈 +06/07/2018,Comedians,@aparnapkin,@aidanisagirl STL !!!!! +06/07/2018,Comedians,@aparnapkin,@FrankConniff Frank you are frankly my favorite +06/07/2018,Comedians,@aparnapkin,RT @dylanmarron: Seeing brands go rainbow for pride is cool but it has the same bittersweet feeling of that popular person who ignored you… +06/07/2018,Comedians,@aparnapkin,@eclipsetaekook u mean the right way? +06/07/2018,Comedians,@aparnapkin,Go see this brilliant firecracker!!! https://t.co/Gl5bGFoRwN +06/07/2018,Comedians,@aparnapkin,"RT @SarahThyre: This afternoon, I received text alerts from my kids' school that they were on lockdown. I thought you might like to know wh…" +06/07/2018,Comedians,@aparnapkin,what a greatie this one is https://t.co/BgxNgWgQLP +06/07/2018,Comedians,@aparnapkin,I’m not a hero but I have made it through many a summer where I was not in consensus with the purported top jams +06/07/2018,Comedians,@aparnapkin,@drtrentbow nope!!! +06/06/2018,Comedians,@aparnapkin,Mindy is the best best best photog slash person slash gem https://t.co/oXnb4WdxjX +06/06/2018,Comedians,@aparnapkin,@KyleFollett i am so sorry i had to back out due to scheduling! +06/05/2018,Comedians,@aparnapkin,"Mental health is more than what we think we can see or tell about someone else, always always always. https://t.co/lwmW8c3YE6" +06/05/2018,Comedians,@aparnapkin,*NODS* BLESS UM ERICA +06/05/2018,Comedians,@aparnapkin,Scott Pruitt raises the bar on lowering the bar +06/05/2018,Comedians,@aparnapkin,"@BumphBean oh ya, fall tour!" +06/05/2018,Comedians,@aparnapkin,@aercourt it moved to union hall in BK at 10 and i am actually no longer hosting! +06/05/2018,Comedians,@aparnapkin,@poetlawyerette ha i hope to!!! +06/05/2018,Comedians,@aparnapkin,@thetinashow @mariabamfoo yay maria!!! i hope to come through soon! +06/05/2018,Comedians,@aparnapkin,St Louis I am rollin thru in August wheeeeeee chugga chugga https://t.co/H43nmYWrfn +06/21/2018,Comedians,@LisaLampanelli,"I love this interview! Thanks, @ThriveLouD https://t.co/sGMlcUGXFH" +06/20/2018,Comedians,@LisaLampanelli,"Within 10 minutes, one fan on the street said “you look greatl and the other one said “why’d you lose weight? I thi… https://t.co/iavrh5Y6EH" +06/20/2018,Comedians,@LisaLampanelli,"You know you wanna see me in CT! My storytelling show is happening @FTCPresents! Less than 400 tickets to spare, so… https://t.co/ueBUlwSXYS" +06/19/2018,Comedians,@LisaLampanelli,"Listen in, Thursday, folks! This guy is a great interviewer, and I'm, well . . . you know. https://t.co/8ELovdpNMh" +06/13/2018,Comedians,@LisaLampanelli,Just when you thought I gave it to that guy in SJ! Listen to this for an epic heckler story!!! https://t.co/zCMmoUzlp3 +05/11/2018,Comedians,@LisaLampanelli,There's only a few more hours until #Taskmaster on @ComedyCentral airs tonight at 11pm/10pm CT! https://t.co/Lrh3EBOiFG +05/11/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tonight at 11pm/10pm CT to see me on #Taskmaster! https://t.co/pFMrKcu4Dj +05/04/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tonight at 11/10c to see me on two brand-new episodes of #Taskmaster! https://t.co/WFB9ijDKOZ +05/01/2018,Comedians,@LisaLampanelli,"So proud of @amyschumer - TONY NOMINEE! You werk, mama! #GirlKnowsNoBounds" +04/29/2018,Comedians,@LisaLampanelli,Watch me on the #trumproast tonight on @ComedyCentral at 11/10c! https://t.co/qAWNcNSl7q +04/27/2018,Comedians,@LisaLampanelli,And THIS YouTube video by @2buffoons is why I can't be spiritual! https://t.co/JhOpWHPkJC https://t.co/WGiBB3rYP6 +04/27/2018,Comedians,@LisaLampanelli,Watch me tonight on @ComedyCentral at 11pm/10pm CT on its brand-new game show #Taskmaster! https://t.co/b6PJActozF +04/26/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tomorrow at 11pm/10pm CT to see me on its new game show #Taskmaster! https://t.co/39BDGl9DJO +04/12/2018,Comedians,@LisaLampanelli,"Looking forward to playing @WellmontTheater in Montclair, NJ on Sat, 4/14! https://t.co/r2ABdFRhbt" +03/24/2018,Comedians,@LisaLampanelli,Detroit! Come see me @MotorCityCasino on 4/19! Get your tickets now! https://t.co/at84N74diK +03/08/2018,Comedians,@LisaLampanelli,New Jersey! Come see me @WellmontTheater in Montclair on 4/14! https://t.co/dWLvQcVAXv +03/05/2018,Comedians,@LisaLampanelli,Atlanta! I’m coming back to see you on March 24. Tickets to my show @CenterStageATL are available now! https://t.co/lOCDxoDzmp +03/03/2018,Comedians,@LisaLampanelli,New fan of @ashleyprimis - author of amazing article on Gen Xers in 2/18 Philadelphia magazine. Great insights! Mad… https://t.co/G5F0Q9JN8D +02/23/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my shows on 5/18 and 5/19 at the Seneca Niagara Casino in Niagara Falls, NY! https://t.co/Eq3hMjve19" +02/23/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 4/13 show @20MonroeLive in Grand Rapids, MI! https://t.co/MKYJr0gae7" +02/21/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my Grand Rapids, MI show on 4/13! https://t.co/j7oKLTJ0bG" +02/02/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 5/5 show @rivercitycasino in St. Louis, MO! https://t.co/r0pMo3Htjc" +01/31/2018,Comedians,@LisaLampanelli,Pre-sale tickets are now available for my 5/5 show @rivercitycasino in St. Louis! https://t.co/8zQsxDmf9a +01/26/2018,Comedians,@LisaLampanelli,"Tickets are now available for my 3/23 show @AmeristarKC in Kansas City, MO! https://t.co/6ckoNkvvT6" +01/23/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my 3/23 show @AmeristarKC in Kansas City, MO! https://t.co/KKpPwAdavk" +01/14/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/1 show @ParamountHV in Peekskill, NY! https://t.co/xcPVFkQfSu" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/9 show @groveofanaheim in Anaheim, CA! https://t.co/wDY0P9YgpN" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/10 show @SJTheaters in San Jose, CA! https://t.co/Bg6JrZ2cy4" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 4/20 show @GeneseeTheatre in Waukegan, IL! https://t.co/itDPk6d7oX" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 5/12 show @theSBEC in Bethlehem, PA! https://t.co/pkCaybkGXI" +01/11/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my show on 6/1 @ParamountHV in Peekskill, NY! https://t.co/KBhc3ACLDT" +01/10/2018,Comedians,@LisaLampanelli,"Pre-sales happening now for 5/12 Bethlehem, PA, 6/9 Anaheim, CA & 6/10 San Jose, CA! https://t.co/Eq3hMjve19" +12/22/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on April 14th @WellmontTheater in Montclair, NJ! https://t.co/dWLvQcVAXv" +12/22/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on March 24th @CenterStageAtl in Atlanta, GA! https://t.co/lOCDxoDzmp" +12/15/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on February 2nd @TheatreWestbury in Westbury, NY! https://t.co/wDDeF1UqGu" +12/08/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on February 3rd @hardrockliveorl in Orlando, FL! https://t.co/PBCVGk6wlu" +12/05/2017,Comedians,@LisaLampanelli,"RT @centerstage_md: Comedy's Lovable Queen of Mean, @LisaLampanelli , is coming to Baltimore Center Stage for one night only! Don't miss…" +12/01/2017,Comedians,@LisaLampanelli,Tix are now on sale for my stand-up show at the Ohio Theatre @playhousesquare in Cleveland on 6/23! https://t.co/HDumtpLLCc +12/01/2017,Comedians,@LisaLampanelli,"Tix are now on sale for my stand-up show @FiveFlagsCenter in Dubuque, IA, on 3/31! https://t.co/ci3aUixee0" +11/28/2017,Comedians,@LisaLampanelli,Save more animal lives this #GivingTuesday by making a donation to my @AnimalLeague pals! Donate TODAY & @Zappos Fo… https://t.co/f7MP6RduR3 +11/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Stuffed will have its final performance tonight at 7pm! Get your tickets at https://t.co/3hYVkLHnFw for your last chance t… +11/15/2017,Comedians,@LisaLampanelli,"Barbara, Could love you, @nypost or this piece more! Thank you so so much! https://t.co/Nvy7JAYnTq" +11/10/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: .@LisaLampanelli takes @LaurenScala4NY from @newyorklivetv on a tour of her favorite NYC eateries, @PressedJuicery & @BBQN…" +11/10/2017,Comedians,@LisaLampanelli,Tune-in on @nbc’s @newyorklivetv for my interview about @StuffedPlay filmed at @PressedJuicery and @BBQNYC! https://t.co/4B68fponmW +11/08/2017,Comedians,@LisaLampanelli,RT @FeralAudio: talking body image & food stuff on a new GET STUFFED w/ @LisaLampanelli & guest @OHEden ! https://t.co/d82vBZHSKz +11/06/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Join @LisaLampanelli tomorrow at 2pm EST on @usweekly's page for a LIVE Q&A with @XtinaGaribaldi & @Heytravhey! https://t.… +11/04/2017,Comedians,@LisaLampanelli,RT @TimeOutNewYork: Comedian @LisaLampanelli is taking over our Instagram Story! Watch to see what happens backstage at @StuffedPlay: https… +11/03/2017,Comedians,@LisaLampanelli,Congratulations to @GreerBarnes1 on a great season of Red Oaks on Amazon. So proud of what an amazing actor you are!!! +11/02/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in on @NPR's @hereandnow to @LisaLampanelli's interview about #StuffedPlay! Click LISTEN LIVE on the left! https://t.… +11/01/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: @realdonjamieson @JaneGreen @clayaiken @Savage937 And some more pictures with @LisaLampanelli, @OHEden, @SayconSengbloh, @…" +11/01/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: In honor of last night's opening, here are some pictures from our @StuffedPlay celebration! https://t.co/QE3fTl0FQ3" +10/31/2017,Comedians,@LisaLampanelli,Love my new friends on the @stufdtruck! Come stop by get some bites and $30 tix tonight ONLY to @StuffedPlay! https://t.co/Lxn9caZo68 +10/31/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@LisaLampanelli coming at you LIVE from the @stufdtruck at the Westside Theatre! Come stop by for treats and $30 tix TONI… +10/31/2017,Comedians,@LisaLampanelli,Watch me on @Cheddar at 3:40pm ET #CheddarLive https://t.co/hSshqQo9jd +10/31/2017,Comedians,@LisaLampanelli,RT @andreaboehlke: Comedian @LisaLampanelli from @StuffedPlay stops by #PeopleNow to talk the importance of comedy in darker times 👉🏼 https… +10/31/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in LIVE on https://t.co/O7S4P89YAI at 1PM EST for @LisaLampanelli’s @Backstage interview on @StuffedPlay! https://t.c… +10/31/2017,Comedians,@LisaLampanelli,About to go on with @JrzyJoePiscopo on NY 970AM! Listen now!!! +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: A sneak peek at @LisaLampanelli's Roast Beef of the Week! View the full video on @StuffedPlay's Facebook. https://t.co/Z0T… +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: 1 day only! Get $30 tix to @StuffedPlay TOMORROW by using code STHW30 for performances 10/31-11/30. We'll have treats fro… +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in TODAY at 5:00pm on @TheCumiaShow for a Facebook LIVE interview with @LisaLampanelli on @ArtieandAnthony! https://t… +10/27/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: #FlashbackFriday to our very first performance at the Westside Theatre! https://t.co/80s5TUqviW +10/26/2017,Comedians,@LisaLampanelli,"Watch me on @People giving the full scoop about my journey with @StuffedPlay! +Check it out: https://t.co/p0voOkGtwo https://t.co/EdKgUpiaND" +10/24/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: TUNE IN TODAY at 5:30pm for a LIVE interview with @LisaLampanelli on @BroadwayWorld! Send questions with #AskLisaBWW—https… +10/20/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: Ready for her glamour shot and some doughnuts, it’s @OHEden! https://t.co/uYfF09YkMn" +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@LaurenABrickman is ready to take a bite! 🍩 https://t.co/Ef9FaY61RQ +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Here to get Stuffed and celebrate! 🍩 https://t.co/weqmstPXTF +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: We are kicking off the party with doughnuts at @BBQNYC!! 🍩 https://t.co/yBslnzcYHX +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: A bow to kick off our @StuffedPlay celebration!!! 🍩 https://t.co/3VnZZKQK3Y +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli is ready for a party! Chow down all night with #StuffedPlay! https://t.co/RL3Pq77oNJ +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Apprentice reunion! @clayaiken and @lisalampanelli and ready to chow down with @stuffedplay. 🍩 https://t.co/z6rj6GNHlS +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tonight is our celebration! Dig in on our Twitter & Instagram for a treat behind-the-scenes at the Westside Theatre & @BBQ… +10/18/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tomorrow is our @StuffedPlay celebration so we gave @LisaLampanelli some healthy snacks to get her energy up. https://t.co… +10/18/2017,Comedians,@LisaLampanelli,Tomorrow is our @StuffedPlay celebration so the show gave me some healthy snacks for energy. Check out how THAT tur… https://t.co/5S2TlXJg2O +10/17/2017,Comedians,@LisaLampanelli,Love the new recipes @RoccoDiSpirito! Congrats on the new cookbook #RoccosHealthyAndDelicious! Get your copy here:… https://t.co/ItFb6Cj1dg +10/17/2017,Comedians,@LisaLampanelli,In honor of my mom's fave game show: Would you like to buy a vowel? https://t.co/W9dnAXXXP1 +10/16/2017,Comedians,@LisaLampanelli,"#MotivationMonday — drop the healthy snack and treat yourself. Have a donut or cupcake and tell 'em ""Lisa Made Me D… https://t.co/RyltPADMQE" +10/16/2017,Comedians,@LisaLampanelli,Thanks for coming @clayaiken 💚 https://t.co/JlXpcDn54T +10/10/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Today is #NationalCakeDecoratingDay. Special shout out to anyone who can make a cake look like a doughnut. https://t.co/TO… +10/10/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli takes over Instagram today! DOUGH-NOT miss out on a behind-the-scenes sneak peek. 🍩 https://t.co/56A1sVDf… +10/09/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Our assistant director is getting ready to dig in! Opening night is only 10 days away! https://t.co/NRb0UWvLv7 +10/08/2017,Comedians,@LisaLampanelli,My castmates @MarshaSBlake and @NikkiBlonsky agree – doughnuts are greater than salads. 🍩 🥗 https://t.co/GzIGKHRCNT +10/06/2017,Comedians,@LisaLampanelli,"It’s Friday, so you deserve a treat! Break out the cookies & come see @StuffedPlay. https://t.co/fNhkiELikj" +10/05/2017,Comedians,@LisaLampanelli,Listen to me chat with my pal @PaulMecurio about @StuffedPlay RIGHT NOW!! https://t.co/Tr108HIpPu +10/05/2017,Comedians,@LisaLampanelli,Thanks to @playbill I feel official!!! https://t.co/lvf8IXuszB +10/05/2017,Comedians,@LisaLampanelli,Proudest moment since I resisted an entire chocolate cake! Starting @stuffedplay previews TONITE! https://t.co/B1QdCGgEhK #dreamsdocometrue +10/04/2017,Comedians,@LisaLampanelli,Stay up late tonight and catch me on @CelebrityPageTV for an interview with @ArthurKade! Tune in at 1AM EST and 10P… https://t.co/CzPvhlehYC +10/04/2017,Comedians,@LisaLampanelli,Tune in right now to @BUILDseriesNYC for the scoop on @StuffedPlay! https://t.co/OWROerDVzp https://t.co/NISzTLJOHF +10/04/2017,Comedians,@LisaLampanelli,Everybody better tune in to @fox5ny #GDNY at 9:45am! I’m dishing out everything on my new play @StuffedPlay. https://t.co/FT0iOZYNEp +10/03/2017,Comedians,@LisaLampanelli,Returning to #GDNY tomorrow morning to chat about my play @StuffedPlay with @rosannascotto and @gregkellyfox5. Can'… https://t.co/Y87go4SYES +10/03/2017,Comedians,@LisaLampanelli,It’s @NikkiBlonsky from…my play @StuffedPlay! Took her a few tries to get it right. https://t.co/7BZqfNudZI +10/02/2017,Comedians,@LisaLampanelli,Take a bite of my new play @StuffedPlay during previews for only $30 through @TodayTix! https://t.co/3E9EL8dUFd +10/02/2017,Comedians,@LisaLampanelli,"A lil' bite of LL on @NewYorkLiveTV! I took @LaurenScala4NY around the city to my favorite places, including… https://t.co/rbMivd2qr2" +09/29/2017,Comedians,@LisaLampanelli,See what's pissing me off this week in my #RoastBeefoftheWeek @StuffedPlay. Pass it on! https://t.co/4csWA01s0h +09/29/2017,Comedians,@LisaLampanelli,"@Tom_Bergeron @DancingABC Such an honor to hear from you, @TomBergeron - u are my favorite host since Wink Martinda… https://t.co/m0SrCSlLym" +09/28/2017,Comedians,@LisaLampanelli,"This week's question: When you've tried to lose weight or lost weight, were your friends:" +09/28/2017,Comedians,@LisaLampanelli,"Listen now, folks!!! https://t.co/595sXPPeyP" +09/28/2017,Comedians,@LisaLampanelli,One long poem or one big grocery list for my show @StuffedPlay? #NationalPoetryDay! https://t.co/Qk1n2PaVTh +09/28/2017,Comedians,@LisaLampanelli,#ThrowbackThursday to our 1st reading of @StuffedPlay on Sept 7th! Only a week away from the 1st performance! Shoul… https://t.co/dUdHsPThF3 +09/27/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli found herself on the street! See if you can spot our delicious new kiosks around NYC! https://t.co/KB9cGp… +09/27/2017,Comedians,@LisaLampanelli,Here it is! My new @DancingABC recap on @Vulture. What I learned from this episode? There’s a lot of dry-humping in… https://t.co/z3EMNMB4qp +09/26/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: A lifelong yo-yo dieter, a bulimic, a confident overweight gal, and a permanent size zero who can’t gain weight walk into…" +09/26/2017,Comedians,@LisaLampanelli,Check me out tonite at 8P EST with @KennedyNation on @FoxBusiness in celebration of #FreeSpeechWeek - and I don't even say CUNT!!! +09/26/2017,Comedians,@LisaLampanelli,Keep the stacks piled high — it’s National Pancake Day! Celebrate with some tickets to @StuffedPlay https://t.co/RPYZKCME0v +09/26/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show @The_Wilbur in Boston, MA on March 10th! Get your tix here! https://t.co/ieQyzzGYbw" +09/25/2017,Comedians,@LisaLampanelli,Guess who's got a new gig?!?! Hint: it's me!! Check it out! https://t.co/BLs5YGBcAq +09/25/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show @FoxwoodsCT in Mashantucket, CT on February 23rd! Get your tix here! https://t.co/TJhpHnOEOT" +09/25/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@mikeymusto from @NewNowNext sat with @LisaLampanelli to talk about a feast of titillating topics including @StuffedPlay!… +09/25/2017,Comedians,@LisaLampanelli,Nothing like a talk with @mikeymusto from @NewNowNext to remind me how much I love lettin' it all hang out! https://t.co/j4cuIBB3Vf +09/25/2017,Comedians,@LisaLampanelli,Listen to me live NOW on @SIRIUSXM 102 with my bud @SandraBernhard to talk @StuffedPlay +09/24/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: #ICYMI, @theatermania is excited to have a second helping of @StuffedPlay this Fall! +https://t.co/WQwrXvt2hk" +09/23/2017,Comedians,@LisaLampanelli,Sat down with my pal @ComedyDaddy for @KPCurtainCall to chat about @StuffedPlay ! Loved every second! Listen here: https://t.co/sf04fMCEzm +09/22/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: It’s the first day of Fall! You know what that means…give us all the pumpkin spiced treats. https://t.co/RgeYSCH7GO +09/22/2017,Comedians,@LisaLampanelli,"It’s the first day of fall, so you know what THAT means. Three words: PUMPKIN SPICED EVERYTHING! https://t.co/cK4f6LXn9C" +09/22/2017,Comedians,@LisaLampanelli,"Miss my podcast this week? Well, LISTEN NOW! It's about acceptance - and I DON'T accept you NOT listening! Go to: https://t.co/5Zx1qbRvzI" +09/21/2017,Comedians,@LisaLampanelli,RT @broadwaycom: We can't wait to chat with @LisaLampanelli about @StuffedPlay and more! https://t.co/dksGZiwzno https://t.co/LWJE613WCG +09/21/2017,Comedians,@LisaLampanelli,Getting ready to go LIVE on @broadwaycom at 5!!! Will take ur questions & dish about @StuffedPlay & me!!! https://t.co/B1QdCGyfGk +09/21/2017,Comedians,@LisaLampanelli,"Wanna big bite of LL in @StuffedPlay? Well, hurry! Just two weeks left until performances begin! https://t.co/VJ0SPKXA8z" +09/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@NikkiBlonsky & @LisaLampanelli are two peas in a pod at @StuffedPlay rehearsals. https://t.co/NRDR5sLYGW +09/20/2017,Comedians,@LisaLampanelli,Absolutely thrilled to join @GeffenPlayhouse for a good chat and a few laughs :) Listen on @PodcastOne https://t.co/eHodEvyhjn +09/19/2017,Comedians,@LisaLampanelli,"If you're not an @AudienceRewards member, join! My @StuffedPlay page has lots of treats for you at… https://t.co/tpIjyFRCFa" +09/19/2017,Comedians,@LisaLampanelli,The great gals on the great @ATWWDpodcast hosted me this week to talk @StuffedPlay ! Listen here for lots of laughs! https://t.co/nbC31PWAGG +09/18/2017,Comedians,@LisaLampanelli,"#MondayMotivation If you can get thru a Monday, you deserve a treat. https://t.co/BTW27E2qke" +09/17/2017,Comedians,@LisaLampanelli,"Ever since @StuffedPlay, my favorite day of the week is . . . Sundae! LIKE for a banana split or HEART for a milksh… https://t.co/A10BzdJxwJ" +09/15/2017,Comedians,@LisaLampanelli,All you Bway actresses need to back off! I'm the new triple threat in town! Check out my audition reel on @Playbill. https://t.co/C0zVK3GNxi +09/14/2017,Comedians,@LisaLampanelli,Don't forget to meet me at https://t.co/uiOw99wvV0 at 10 PM EST/7 PM PST for my live chat. Have your @StuffedPlay & podcast questions ready! +09/14/2017,Comedians,@LisaLampanelli,Break out the Boston Cream! It’s National Cream-Filled Donut Day! #ProofThatGodExists https://t.co/OAlfq6JInx +09/13/2017,Comedians,@LisaLampanelli,"Wanna talk? Go to https://t.co/uiOw99wvV0 Thurs at 10PM EST/7PM PST to talk @ my podcast, @StuffedPlay or to get some help from urs truly!" +09/13/2017,Comedians,@LisaLampanelli,"The 1st episode of my podcast, Get Stuffed, is here to help you get your life on track (or not). Get it on iTunes:https://t.co/BXRZi1X7cT" +09/12/2017,Comedians,@LisaLampanelli,My masterpiece @StuffedPlay is in the @broadwaycom Fall Preview! Wanna bite? Go to https://t.co/hBfqJfadk0. https://t.co/w8HNN2k0tl +09/12/2017,Comedians,@LisaLampanelli,Do you think therapy is: +09/12/2017,Comedians,@LisaLampanelli,"Only 1 more day until my podcast, ""Get Stuffed with Lisa Lampanelli"" is up & running. Go to https://t.co/5Zx1qbRvzI right now and subscribe!" +09/11/2017,Comedians,@LisaLampanelli,"Got a funny, interesting, horrifying or truly heinous story about therapy? Send it to https://t.co/hE4Z4n0M5U - u may end up on my podcast" +09/11/2017,Comedians,@LisaLampanelli,"Your pleas have been heard! My podcast ""Get Stuffed w/LL"" starts this week! Check out the preview & subscribe now at https://t.co/5Zx1qbRvzI" +09/10/2017,Comedians,@LisaLampanelli,Much to my amazement -- and delight -- you don't have to be dead to get your own chair at the @FriarsClub https://t.co/UiTk4oQBE9 +09/08/2017,Comedians,@LisaLampanelli,"Unlike in real life, you can pick only ONE dessert. Choose wisely! RETWEET for cupcakes or HEART for muffins! https://t.co/99L9hPlrEs" +09/08/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: First day of rehearsals at #StuffedPlay… welcome to the “circle of trust”. 🍩 https://t.co/nkGj18nE3U +09/07/2017,Comedians,@LisaLampanelli,"It's the first day of @StuffedPlay rehearsal, and I just ate my own placenta -- and I wasn't even pregnant. https://t.co/hBfqJfadk0 for tix" +09/07/2017,Comedians,@LisaLampanelli,#ThrowbackThursday - a taste-test of last week’s @StuffedPlay photoshoot with @JeremyDanielPix! More coming soon!! https://t.co/KAqUnMrbfp +09/07/2017,Comedians,@LisaLampanelli,Our pals at @playbill got a taste of what the @StuffedPlay cast has in store for u in Oct! https://t.co/krg1eBSJXP +09/05/2017,Comedians,@LisaLampanelli,1 MONTH til @StuffedPlay starts! To win a chance to meet ME get ur tix at https://t.co/B1QdCGyfGk & comment below w… https://t.co/6w7L3hWg7j +09/05/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: 1 MONTH until 10/5! Reply w/ the friend you're bringing for a chance to win a meet & greet with @LisaLampanelli! https://t… +09/01/2017,Comedians,@LisaLampanelli,"Thanks, guys!!! https://t.co/oLXhbtv7UG" +09/01/2017,Comedians,@LisaLampanelli,"Yassss, @playbill ! Thanks for the love!!! https://t.co/Rq5fEOQT6I" +09/01/2017,Comedians,@LisaLampanelli,"Bad Pun of the Day: Donut miss out! @StuffedPlay begins 10/5. For tix, go to https://t.co/B1QdCGyfGk! https://t.co/pR8EkmLaJx" +08/31/2017,Comedians,@LisaLampanelli,Thanks 2 @rdmcphee @TylerGMount & all the folks at @playbill for the 1st Look video of @StuffedPlay - watch it here! https://t.co/A6ZyBs6il7 +08/31/2017,Comedians,@LisaLampanelli,"With @StuffedPlay starting soon, wondering: What do you ""stuff"" yourself with -- food, booze, relationships, what? Weigh in, folks!" +08/30/2017,Comedians,@LisaLampanelli,QUESTION OF THE DAY: What have u tried to change about urself or ur life that u need to accept? And is acceptance powerlessness or power? +08/30/2017,Comedians,@LisaLampanelli,"A blast today at the @stuffedplay photoshoot! I'm FULL of laughs from my cast members @NikkiBlonsky, @MarshaSBlake,… https://t.co/DdyJ9qC5pu" +08/29/2017,Comedians,@LisaLampanelli,All my fans like 2nd helpings! So check out @broadwaycom & its story on our @StuffedPlay event! https://t.co/OtTgWadDlZ +08/27/2017,Comedians,@LisaLampanelli,"Had an amazing with the great @MorganSpurlock on the 3rd episode of is""Week in the Knees"" podcast! Listen here! https://t.co/XBFIlVIdnH" +08/27/2017,Comedians,@LisaLampanelli,Ms @ChristineBurr did it again on @PageSix - thx 4 the 2 gr8 pieces about @StuffedPlay -- https://t.co/hUj09JJMom & https://t.co/fl573fb4Q2 +08/25/2017,Comedians,@LisaLampanelli,"You @NikkiBlonsky are a pro! Even with laryngitis, you shined like the star you are last night at @FriarsClub - a million thanks & hugs!" +08/25/2017,Comedians,@LisaLampanelli,"Hey Ms. @MarshaSBlake - you are my dream ""Katey""! Thank you so much for signing on to do @StuffedPlay & for being at @friarsclub last nite!" +08/25/2017,Comedians,@LisaLampanelli,So excited that you @OHEden are part of @StuffedPlay - hanging with u last nite at @friarsclub was a dream! Can't wait to start! +08/25/2017,Comedians,@LisaLampanelli,"RT @theatermania: PIX: @LisaLampanelli, @NikkiBlonsky & the cast of @StuffedPlay meet the press → https://t.co/KtlbmpjDIj https://t.co/h9z9…" +08/25/2017,Comedians,@LisaLampanelli,"RT @BroadwayWorld: Get to know the cast of @LisaLampanelli's @Stuffedplay! +https://t.co/tLjEcauSdo" +08/25/2017,Comedians,@LisaLampanelli,RT @broadwaycom: .@LisaLampanelli & the cast of STUFFED prep for off-Broadway bow: https://t.co/YTPnef1JpH https://t.co/mYQoDwZ0QT +08/25/2017,Comedians,@LisaLampanelli,https://t.co/VahLuxftVP +08/25/2017,Comedians,@LisaLampanelli,https://t.co/BDqvuvLfMn +08/24/2017,Comedians,@LisaLampanelli,Yours truly will be LIVE tomorrow from Facebook HQ! Send ur questions about @StuffedPlay & all things ME for Friday… https://t.co/QP9PqouncJ +08/23/2017,Comedians,@LisaLampanelli,"Hey all got a question about food, weight loss, body image or @StuffedPlay ? Just tweet me by 10AMThurs & I might just answer u! Now, type!" +08/23/2017,Comedians,@LisaLampanelli,Wanna hear the inside scoop on @StuffedPlay? I gave an extra helping of truth to @ShelliSonstein on @iHeartRadio -… https://t.co/HUDIOZCRe6 +08/22/2017,Comedians,@LisaLampanelli,Big @StuffedPlay casting announcement! @OITNB alums @MarshaSBlake & @OHEden join me & @NikkiBlonsky! Beyond psyched… https://t.co/2ov8Ir7sdf +08/21/2017,Comedians,@LisaLampanelli,Don't let the sun eclipse your chance to meet a star! Buy tix for @StuffedPlay by midnite & win a chance to meet me! https://t.co/yWBQz6Vx1R +08/20/2017,Comedians,@LisaLampanelli,"Hey, @BenSPlatt - in the audience chomping at the bit to see you today in @DearEvanHansen - try not to disappoint me! Lol" +08/17/2017,Comedians,@LisaLampanelli,Loved doing this interview last year on @AOL @BUILDseriesNYC talking about how I created @StuffedPlay!… https://t.co/y4189fVyGk +08/16/2017,Comedians,@LisaLampanelli,It's National Tell A Joke Day so give me your CORNiest joke. Best ones get a shout out from @StuffedPlay! Holler no… https://t.co/vnAdldcxxD +08/15/2017,Comedians,@LisaLampanelli,I do believe @NYTimes is hungry for more of lil ol' me! Can’t wait for @StuffedPlay to return in October. Go to… https://t.co/PvJVJ2t2JW +08/14/2017,Comedians,@LisaLampanelli,Thanks @RealSway for the fun interview talking about two of my favorite things: food and @StuffedPlay! https://t.co/dbntPLf1oP +08/10/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show at Sound Board @MotorCityCasino on 4/19 in Detroit, MI! https://t.co/at84N6MBUa" +08/10/2017,Comedians,@LisaLampanelli,Talk about making lemonade outta lemons! GORGEOUS!!! https://t.co/zINa1RGdb9 +08/08/2017,Comedians,@LisaLampanelli,Thank u for the amazing interview!!! https://t.co/Ibq1VIKXPV +08/08/2017,Comedians,@LisaLampanelli,"Girl, couldn't be prouder of you and your Emmy mom! Glad the world caught up to what we knew all along. https://t.co/1swvTSncZj" +08/08/2017,Comedians,@LisaLampanelli,"Pre-sale tickets are now on sale for my stand-up show at Sound Board @MotorCityCasino on 4/19 in Detroit, MI! https://t.co/y2Cit3WCxt" +08/02/2017,Comedians,@LisaLampanelli,Listen or else! XOXO Mom https://t.co/xTMmkem32f +07/28/2017,Comedians,@LisaLampanelli,"Hey, @NikkiBlonsky - we're on @PageSix ! Thanks, @ChristineBurr - so excited for @StuffedPlay ! Read about it here: https://t.co/PLCuwUfjyU" +07/27/2017,Comedians,@LisaLampanelli,My girl @NikkiBlonsky from Hairspray is doing @STUFFEDPlay! How f-in' cool is that?!? Get tix to see us at… https://t.co/xWCVcYSw2v +07/10/2017,Comedians,@LisaLampanelli,RT @SXMInsight: What was it like being on The Apprentice with @realDonaldTrump @LisaLampanelli talks with @wjcarter https://t.co/Pyrn8XU… +07/10/2017,Comedians,@LisaLampanelli,"An honor, Bill!!! XOXO https://t.co/xcDmOg5Bwc" +07/10/2017,Comedians,@LisaLampanelli,It's exactly two months til I start rehearsal for @StuffedPlay at the Westside Theatre NYC. How should I spend those last months of freedom? +07/07/2017,Comedians,@LisaLampanelli,"U da man, @RealSway https://t.co/68jIr8pTDN" +07/07/2017,Comedians,@LisaLampanelli,"Man, did I love talking to you guys!!! Thanks a million! https://t.co/bVMvFWnhYD" +07/07/2017,Comedians,@LisaLampanelli,"See u tonite at 9EST/6PST for a LIVE CHAT on https://t.co/uiOw99wvV0 - bring all ur weight, food, Trump, roast & @StuffedPlay questions." +07/05/2017,Comedians,@LisaLampanelli,So so thrilled to see my second favorite flag - the @StuffedPlay’s flag flying above the Westside Theatre in NYC! S… https://t.co/hiqAGQE7kW +07/05/2017,Comedians,@LisaLampanelli,What is the best subtitle for @StuffedPlay ? +06/30/2017,Comedians,@LisaLampanelli,"Tickets for my TWO stand-up shows at @VFCasinoResort in King of Prussia, PA, on 2/24 are now on sale! https://t.co/jLFtZJ83ke" +06/29/2017,Comedians,@LisaLampanelli,"Tickets are on sale now for my stand-up show @RegLenna on 8/5 in Jamestown, NY! #lucilleballcomedyfestival https://t.co/RIMASIKgsx" +06/26/2017,Comedians,@LisaLampanelli,Listen to me with @RealSway NOW on @Shade45 !!! +06/26/2017,Comedians,@LisaLampanelli,Wanna hear the joke @JimNorton liked best on the roast? Listen at 10A EST! @jimandsamshow @StuffedPlay +06/26/2017,Comedians,@LisaLampanelli,How cool is it that I'm talking @StuffedPlay w/@jimandsamshow at 10AEST! Haven't spent time w/ @JimNorton since the Gene Simmons roast! +06/23/2017,Comedians,@LisaLampanelli,Quick! Go to https://t.co/yQ4bPFg3gc or tune in to @Z100NewYork to hear us compare gunts & talk @StuffedPlay ! 8:35… https://t.co/hIhs2RTD8v +06/23/2017,Comedians,@LisaLampanelli,My pal @elvisduran & I laugh it up & talk @StuffedPlay at 8:35A. Listen in NY on @Z100NewYork & everywhere on https://t.co/yQ4bPFg3gc +06/23/2017,Comedians,@LisaLampanelli,"I love those puppies almost as much as I love all of you at @PIX11News - enjoy your new doggie, Dan! https://t.co/cgQPaTjQ4v" +06/23/2017,Comedians,@LisaLampanelli,Thanks for a truly fun-filled morning! XOXO https://t.co/OFG578sp1V +06/22/2017,Comedians,@LisaLampanelli,Excited to be talking @AnimalLeague & @StuffedPlay on @PIX11News w/ @TheBettyNguyen & @DanMannarino at 8:50A! https://t.co/JV4XrP40Z2 +06/20/2017,Comedians,@LisaLampanelli,"On Facebook Live @ 6 EST to talk weight struggles, life changes, political correctness & @StuffedPlay - go to https://t.co/IAvIEeICMO 2 chat" +06/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Don’t wait to take a bite out of Stuffed! Tickets on sale now at https://t.co/3hYVkLHnFw. https://t.co/8Ip0n2TWC2 +06/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: We're proud to celebrate and stand with our LGBTQ fans this week during NYC Pride Week! 🏳️‍🌈 https://t.co/AG1JOIlB5A +06/20/2017,Comedians,@LisaLampanelli,TONITE I'll be on Facebook Live 2 talk @StuffedPlay NYC! Chat with me at 6EST/3PST. And get ur tix for my play NOW https://t.co/zs99wEdB09 +06/20/2017,Comedians,@LisaLampanelli,Tickets are now on sale to the general public for @StuffedPlay! Returning to NYC in October! Get tickets here: https://t.co/zs99wEdB09 +07/01/2018,Comedians,@kathygriffin,RT @MollyJongFast: Jared is as good at world peace as he is at switchboard operator. https://t.co/689eNxvz6U +07/01/2018,Comedians,@kathygriffin,"RT @Toure: In the picture below you see an adult woman screaming at a 14 yo child. She is Roslyn La Liberte, a MAGA zealot racist who runs…" +07/01/2018,Comedians,@kathygriffin,https://t.co/4tuBolSsyo +07/01/2018,Comedians,@kathygriffin,RT @EricHaywood: We been knew https://t.co/Kw87WEQWTs +07/01/2018,Comedians,@kathygriffin,"Last day of Pride! In honor of Pride, I’m donating $2 for every ticket sold on my US tour to the @TrevorProject whi… https://t.co/J36ZzJZcwY" +07/01/2018,Comedians,@kathygriffin,But of course https://t.co/dgsxblYXhx +07/01/2018,Comedians,@kathygriffin,RT @cher: I wish bots were funny +07/01/2018,Comedians,@kathygriffin,RT @davidmackau: threeeeeeeeeeeeead https://t.co/C3eDFqJKLX +06/30/2018,Comedians,@kathygriffin,RT @DebraMessing: https://t.co/xlyYZd0fpR +06/30/2018,Comedians,@kathygriffin,"Good...she is a brilliant, empathetic woman who should be our president. And just because she's not going to run fo… https://t.co/iFmLfRXbDR" +06/30/2018,Comedians,@kathygriffin,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Comedians,@kathygriffin,"RT @Diane_Warren: Oh shit, if she is picked we r fuuuuuucked. #handmaids #cantmakethisshitup https://t.co/g5GeE6Mk3o" +06/30/2018,Comedians,@kathygriffin,"RT @HoarseWisperer: MSNBC cancels Hugh Hewitt's show. + +Happy Saturday. + +https://t.co/BzGIecbr00" +06/30/2018,Comedians,@kathygriffin,RT @Sia: #stopseparation https://t.co/BtmcHOewti +06/30/2018,Comedians,@kathygriffin,RT @KrangTNelson: very powerful https://t.co/Qh8dN5ICJb +06/30/2018,Comedians,@kathygriffin,RT @shannonrwatts: This is a 40 year old @NRA lobbyist. My 17 year old wouldn’t even behave like this 👇 https://t.co/oePDej3d8j +06/30/2018,Comedians,@kathygriffin,👏🏻👏🏻👏🏻👏🏻 https://t.co/haskaVTtFi +06/30/2018,Comedians,@kathygriffin,RT @kenolin1: I get the feeling most Americans don’t like to see kids put in cages. +06/30/2018,Comedians,@kathygriffin,Harris/Booker 2020 +06/30/2018,Comedians,@kathygriffin,RT @KamalaHarris: We’ve already seen the President’s list of potential SCOTUS nominees — they are conservative ideologues who would put a w… +06/30/2018,Comedians,@kathygriffin,"RT @andylassner: Reminder: + +The President of the United States of America is such a colossal, fuck brain of a moron that he took a prank ca…" +06/30/2018,Comedians,@kathygriffin,"RT @AndrewKirell: In just the past year, @DineshDSouza has said C-Ville was “staged,” shared conspiracy that Vegas killer was anti-Trump, d…" +06/30/2018,Comedians,@kathygriffin,RT @DannyZuker: .@realDonaldTrump thinks you guys who still support him are SO stupid that he can lie to you this obviously and you won’t n… +06/30/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: ""If it was that easy to dupe him, there's every chance in the world Putin duped him,"" says comedian ""Stuttering John""…" +06/30/2018,Comedians,@kathygriffin,"RT @WisePaxCat: How TF was this not ALREADY a hate crime????? + +3 Black U.S. Senators Introduce Bill to Make Lynching a Federal Hate Crime h…" +06/30/2018,Comedians,@kathygriffin,RT @MollyJongFast: Owning the libs by completely contradicting yourself 3 days later. https://t.co/rQR2FPT0U1 +06/30/2018,Comedians,@kathygriffin,"RT @Marmel: The word is “Lies.” +Shorter. +Less characters. +Why is that so hard? https://t.co/iiGLhO4WNP" +06/30/2018,Comedians,@kathygriffin,"RT @davidmackau: The Best, Most Creative Signs From The ""Families Belong Together"" Protests https://t.co/w0h0EPJAhr via @ambiej" +06/30/2018,Comedians,@kathygriffin,RT @MattNegrin: @realDonaldTrump hahahahahahah omg this is so sad +06/30/2018,Comedians,@kathygriffin,"RT @danpfeiffer: @realDonaldTrump If you don’t like Trump (or Sean Spicer), buy Yes We (Still) Can and a portion of the proceeds of every b…" +06/30/2018,Comedians,@kathygriffin,"RT @CharlesMBlow: #OnThisDay in 1917 the legendary entertainer and activist Lena Horne was born in Brooklyn, the original “livest one from…" +06/30/2018,Comedians,@kathygriffin,RT @yashar: Is This the Year Women Break the Rules and Win? https://t.co/initHFAxzh +06/30/2018,Comedians,@kathygriffin,"RT @rmayemsinger: if Stuttering John is able to prank Donald Trump and get a live call from Air Force One, what THE HELL IS VLADIMIR PUTIN…" +06/30/2018,Comedians,@kathygriffin,"RT @michaelianblack: Have never felt continual, daily dread about my country before. I wake up with it, go to sleep with it. It’s exhaustin…" +06/30/2018,Comedians,@kathygriffin,RT @michaelkruse: Nearly 200 anti-lynching bills were introduced in Congress from 1882 to 1986. None were approved. https://t.co/HRzvh4Fpmu +06/30/2018,Comedians,@kathygriffin,RT @rgay: I am so tired. +06/30/2018,Comedians,@kathygriffin,"Brilliant column by @KarenAttiah —-> + +I no longer have hope in white America https://t.co/EKTEWObHGE" +06/30/2018,Comedians,@kathygriffin,"RT @AmbassadorRice: Folks, this is huge, if true: NK has a secret, third nuclear facility. They have been hiding it. The US intell commu…" +06/30/2018,Comedians,@kathygriffin,"RT @BetteMidler: Yup. Trump and Putin are meeting in Finland next month. Which is more appropriate than you’d think, since if these two kee…" +06/30/2018,Comedians,@kathygriffin,RT @andylassner: @kathygriffin This is the dude that slept with both @IngrahamAngle and @AnnCoulter. What a delightful trio they make. +06/30/2018,Comedians,@kathygriffin,"Sorry Kim and Kanye, there’s a new romance in town https://t.co/dPcRHMTbCC" +06/30/2018,Comedians,@kathygriffin,RT @Diane_Warren: Is this all just a fucking reality show to U? The show we r waiting for is American Indictments. And it's coming soon. ht… +06/30/2018,Comedians,@kathygriffin,RT @The_A_Prentice: Translation: “I tried to tell you motherfuckas” https://t.co/W7C63HPFJw +06/30/2018,Comedians,@kathygriffin,RT @maxwelltani: it's true do not ever exaggerate the physical harm you experience as a journalist https://t.co/PrjJc2kR6r +06/30/2018,Comedians,@kathygriffin,RT @brianklaas: Dinesh D’Souza has been retweeting some pretty vile hashtags while trying to promote his film. https://t.co/EamljeWC6c +06/30/2018,Comedians,@kathygriffin,Dinesh D’Souza says he did Nazi that someone used the hashtag #burnthejews in a tweet he retweeted. https://t.co/TAvXnvL36u +06/30/2018,Comedians,@kathygriffin,RT @jeremymstamper: Should @kathygriffin stop using the bad f-word in order to be more ladylike? +06/30/2018,Comedians,@kathygriffin,RT @THR: .@KathyGriffin jumps back to No. 1 on Top Comedians social media ranking https://t.co/WBkJffCld2 https://t.co/OablGZ9ixM +06/30/2018,Comedians,@kathygriffin,"RT @nadabakos: “Fear of Donald Trump is not enough for me to support Clinton, with her record of corruption.” +— Susan Sarandon https://t.co…" +06/30/2018,Comedians,@kathygriffin,Thank you! Kathy Griffin Jumps Back to No. 1 on Top Comedians Social Media Ranking https://t.co/yVvJV7tYGZ via @THR +06/30/2018,Comedians,@kathygriffin,RT @ParkerMolloy: .@dominicholden put together a list of anti-LGBT actions taken by the Trump administration. If you’re not completely glue… +06/30/2018,Comedians,@kathygriffin,RT @ira: I don’t need to hear Bon Jovi in a gay bar +06/30/2018,Comedians,@kathygriffin,RT @JoyAnnReid: Why NFL players kneel: https://t.co/cLCLXlMiSE +06/30/2018,Comedians,@kathygriffin,"RT @rosemcgowan: .@terrycrews You are a HERO! Assault happens to boys and Men too. You are brave, you are good, you are strong. I’m so plea…" +06/30/2018,Comedians,@kathygriffin,RT @JuddApatow: Lachlan Murdoch and his @FoxNews has no interest in bringing our country together with accurate information and thoughtful… +06/30/2018,Comedians,@kathygriffin,RT @MattOswaltVA: Milo Yiannopolous is what happens when you sprinkle glitter on Alex Jones https://t.co/ekKOWQuc5w +06/30/2018,Comedians,@kathygriffin,"RT @MattOswaltVA: waiting for Twitter to expand to 280,000 characters before I tackle this https://t.co/iOFT3RAeZI" +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: To everyone preaching “civility” just a friendly reminder that nothing anyone calls Trump is as bad as the worst thing p… +06/30/2018,Comedians,@kathygriffin,@Spencer4Texas @TrevorProject Thank you! 😘 +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: The guy who can’t stop talking about Hillary’s emails got prank called on Air Force One then called the prank call back… +06/30/2018,Comedians,@kathygriffin,ooops https://t.co/1SvOFwX3Kl +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: GREAT JOB SENATOR MENENDEZ WE’RE PROUD OF YOU https://t.co/GmkPbC9o1k +06/30/2018,Comedians,@kathygriffin,"RT @HillaryClinton: Given the news coming out of the Supreme Court this week, I'm excited to support @WeDemandJustice's critical work by we…" +06/30/2018,Comedians,@kathygriffin,"RT @andylassner: Keep fighting the good fight, Jim. + +You’re yelling at him for millions of us. https://t.co/RRykSe0hAN" +06/30/2018,Comedians,@kathygriffin,RT @BetteMidler: #JoeJackson is d-e-a-d- and Hallelujah!! A monster who ate his own children; like in an old Grecian myth. I hated every… +06/30/2018,Comedians,@kathygriffin,"Hmmmmm tbd on the meeting part - you just followed me so I’d like to see how you behave! + +As for Texas, I’m doing t… https://t.co/q7jIJ5YWpX" +06/30/2018,Comedians,@kathygriffin,RT @RepSwalwell: Scary. A constituent just confronted me and told me I support open borders. I told her that’s not true and I’ve never said… +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: It’s because he’s a fucking idiot how is this hard https://t.co/iE106KedHa +06/30/2018,Comedians,@kathygriffin,Her clients thought she was selling their homes...but she was selling them out. https://t.co/1kTwTYv5NE +06/30/2018,Comedians,@kathygriffin,RT @JuddApatow: This is where Lachlan Murdoch and @FoxNews are especially evil. This promotion of the idea that the next Supreme Court Jus… +06/30/2018,Comedians,@kathygriffin,RT @brianklaas: The guy who rode to the White House arguing that his opponent couldn’t be trusted with classified information runs such a t… +06/30/2018,Comedians,@kathygriffin,@robbie_couch You just saved yourself. @ParkerMolloy was kind enough to tell me what she thought of the show...sile… https://t.co/adErkmU1Ee +06/30/2018,Comedians,@kathygriffin,@robbie_couch did you make it to my show? +06/30/2018,Comedians,@kathygriffin,"RT @billprady: Remember when everyone was upset that Hillary’s server was a security risk? + +Stuttering John just got through to the preside…" +06/30/2018,Comedians,@kathygriffin,"RT @elijahdaniel: GOD HATES LIL PHAG + +PREORDER + NEW SINGLE DROPS JULY 13TH +FULL ALBUM DROPS JULY 27TH https://t.co/JLV5jKQwz6" +06/30/2018,Comedians,@kathygriffin,"RT @LibyaLiberty: Hey as long as you’re civil for the photo op, right? Ew. https://t.co/IHfhWVeXcx" +06/30/2018,Comedians,@kathygriffin,@maggieNYT @MZHemingway Fuck @MZHemingway - she’s just pro trump now cause it’ll get her attention and on TV. +06/30/2018,Comedians,@kathygriffin,RT @maggieNYT: Actually @MZHemingway I was making a totally different point re what my colleague was saying about both sides in a long pres… +06/30/2018,Comedians,@kathygriffin,Hungry for attention honey? Here it is. That photo was from a reality show taping many years ago. What’s your point… https://t.co/w3Tj3fxjJn +06/30/2018,Comedians,@kathygriffin,Provocateur? He’s not Madonna. He’s a racist asshole and a criminal. https://t.co/bb8rtPvIPz +06/30/2018,Comedians,@kathygriffin,RT @KamalaHarris: Women aren’t just marching — they’re running and fighting for our future. https://t.co/2zHSZsub7z +06/30/2018,Comedians,@kathygriffin,JESUS https://t.co/hoZhwqbgsT +06/30/2018,Comedians,@kathygriffin,"RT @selfstyledsiren: A visitor to Hollywood encounters incivility, 1938. https://t.co/13ph92EdXR" +06/30/2018,Comedians,@kathygriffin,Amazing https://t.co/n6mBTiwb6l +06/30/2018,Comedians,@kathygriffin,Like you give a fuck about immigrant communities @mschlapp https://t.co/uRpnb6yHJY +06/30/2018,Comedians,@kathygriffin,Forgive me...I should have included a comma.... https://t.co/XaiYP0S7aG +06/30/2018,Comedians,@kathygriffin,RT @shannonrwatts: How’s this going? https://t.co/G5I7pw04Nl +06/30/2018,Comedians,@kathygriffin,Brother and Sister ❤️ https://t.co/3rhfBH000m +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: The Annapolis shooter once stalked and harassed a woman to the point where she fled the state. If you don’t want to blam… +06/30/2018,Comedians,@kathygriffin,RT @TVietor08: This asshole destroyed people’s lives when he spent four years demagoging the many Benghazi investigations. https://t.co/fM7… +06/30/2018,Comedians,@kathygriffin,RT @PreetBharara: Breaking: Dictators lie. Wannabe dictators lie too. https://t.co/kYmjPKNyx1 +06/30/2018,Comedians,@kathygriffin,RT @justinmclachlan: I'm so on board with I Don't Give a Fuck What Anyone Thinks Hillary https://t.co/sXy1HYyPBN +06/30/2018,Comedians,@kathygriffin,RT @PreetBharara: Yeah but North Korea denies it. So it’s ok. https://t.co/kYmjPKNyx1 +06/30/2018,Comedians,@kathygriffin,"Thank you @HillaryClinton for always saying what needs to be said. + +https://t.co/HY5bYi5XT4 https://t.co/YZcvHpdv45" +06/30/2018,Comedians,@kathygriffin,"RT @mehdirhasan: Worse: she said Hillary was more dangerous than Trump and still stands by that, even now. https://t.co/pchy6vUTFO" +06/30/2018,Comedians,@kathygriffin,"RT @kylegriffin1: Hillary Clinton on incivility: ""Give me a break! What is more uncivil and cruel than taking children away? It should be m…" +06/30/2018,Comedians,@kathygriffin,"RT @ava: Just so you know, @RTraister came to snatch all wigs and edges in this power-packed piece that had me in full black church call an…" +06/30/2018,Comedians,@kathygriffin,"RT @terrycrews: Why didn’t you say something? + +I did. + +Why didn’t you push him off? + +I did. + +Why didn’t you cuss him out? + +I did. + +Why did…" +06/30/2018,Comedians,@kathygriffin,But I thought there was little to no difference between Trump and Hillary? https://t.co/H6unxTAVVJ +06/29/2018,Comedians,@kathygriffin,"RT @andylassner: Yet you tweeted at me. +You’re bad at Twitter. https://t.co/tyAHqwRgSQ" +06/29/2018,Comedians,@kathygriffin,RT @MalcolmNance: BOT ALERT. This is hilarious when read with a Russian accent! Enjoy! #SaveDemocracy https://t.co/SUIMKjXn5F +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: Unspeakable. Don’t stop speaking about it. https://t.co/CgyuMfGoo0 +06/29/2018,Comedians,@kathygriffin,"Certainly not you bitch. + +@ACTBrigitte https://t.co/cneX2pmvSq" +06/29/2018,Comedians,@kathygriffin,RT @PattyArquette: I didn’t hear one hannity type condemn Milo or call it a bad joke like they did with Kathy Griffin. You know why? They k… +06/29/2018,Comedians,@kathygriffin,RT @SortaBad: When you call someone a pussy it’s actually short for the word pusillanimous which means timid. It doesn’t reference a body p… +06/29/2018,Comedians,@kathygriffin,"RT @freedominguez: Dear @marcorubio + +From one child of Cuban immigrants to another - where the fuck are the children ? And why are they sti…" +06/29/2018,Comedians,@kathygriffin,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Comedians,@kathygriffin,RT @yashar: Or maybe Kushner could listen to people for once and not think he’s the smartest man in the room as he often does? https://t.co… +06/29/2018,Comedians,@kathygriffin,You guys are hilarious - how about you get an administration that doesn't get fooled by a comedian. https://t.co/bAeWLfCqSZ +06/29/2018,Comedians,@kathygriffin,HAHAHAHAHAHAHA https://t.co/bAeWLfCqSZ +06/29/2018,Comedians,@kathygriffin,"My two LA shows are just around the corner! Both shows are at the Dolby Theatre! + +July 19th:… https://t.co/9V53oOwiYn" +06/29/2018,Comedians,@kathygriffin,"Go fuck yourself you useless, spineless piece of shit. Fuck you and Fuck Trump. https://t.co/jbedYvQQ1C" +06/29/2018,Comedians,@kathygriffin,RT @AlyssaMastro44: i have to be honest i am a polite person whose language has become more caustic bc I don’t believe in violence and it’s… +06/29/2018,Comedians,@kathygriffin,"RT @kenolin1: What is your deal? Your political career was a disaster. Your ethics are nonexistent. Your daughter is a liar, a bully, and a…" +06/29/2018,Comedians,@kathygriffin,Is this a fucking joke? https://t.co/Kl280uHyZR +06/29/2018,Comedians,@kathygriffin,RT @yashar: The Trump campaign just sent out this text-message to supporters. https://t.co/DkRmq381ne +06/29/2018,Comedians,@kathygriffin,"I'm doing three shows in Texas motherfucker. + +Get Tickets Here: https://t.co/Nq0HnqTHFK https://t.co/vLL0AreCvy" +06/29/2018,Comedians,@kathygriffin,"“Force for positive change..” + +😂😂😂 https://t.co/3oLfqjKwJC" +06/29/2018,Comedians,@kathygriffin,Yup...every other word https://t.co/fXHwOTMnph +06/29/2018,Comedians,@kathygriffin,"Chicago, thank you for an amazing welcome last night!!! + +Next up: Two shows in LA, San Diego, and Charlotte! + +Get… https://t.co/yFlXv9GQvs" +06/29/2018,Comedians,@kathygriffin,"RT @EricHaywood: Proposal: Let Black Twitter name everything from now on. + +#BBQBecky +#PermitPatty +#PoolPatrolPaula https://t.co/MZXYNudOgC" +06/29/2018,Comedians,@kathygriffin,"RT @thistallawkgirl: By your description, he sounds like he’ll make a perfect ninth husband for Kim Davis one day. https://t.co/JXPSPZqgCM" +06/29/2018,Comedians,@kathygriffin,Must be nice to spend time with your grandson...other people’s grandchildren are in internment camps. https://t.co/yZk114hOim +06/29/2018,Comedians,@kathygriffin,RT @ChelseaClinton: This is monstrous. https://t.co/spMcxNzYAe +06/29/2018,Comedians,@kathygriffin,"RT @BetteMidler: I don't believe #Trump cares one iota about abortion, nor would I be surprised to find out he owns stock in a coat-hanger…" +06/29/2018,Comedians,@kathygriffin,"RT @aparnapkin: ""Just trolling"" means words don't matter. Words do matter. Journalism matters. Consequences matter. https://t.co/yPdtVgCbGF" +06/29/2018,Comedians,@kathygriffin,RT @michelleisawolf: Hey @GOP thanks for the free publicity 😘 #Unhinged2018 https://t.co/jLcfGdXCbE +06/29/2018,Comedians,@kathygriffin,"RT @DrClawMD: Just checking in: When @kathygriffin does this it's ""unacceptable"" but when the @GOP uses it for more political mind games an…" +06/29/2018,Comedians,@kathygriffin,"RT @ColMorrisDavis: .@DLoesch and her @NRA collaborators are enemies of democracy and a clear & present danger. + +@Morning_Joe https://t.co/…" +06/29/2018,Comedians,@kathygriffin,"RT @ShaunKing: This police officer in Lancaster, Pennsylvania should be fired immediately. After he is fired, the District Attorney should…" +06/29/2018,Comedians,@kathygriffin,Thank you for coming! 🍿👑 https://t.co/O9MlBfVAAu +06/29/2018,Comedians,@kathygriffin,Thank you!! 💋❤️ https://t.co/ruwurMjb1W +06/29/2018,Comedians,@kathygriffin,A pleasure working for you! https://t.co/NqwzmIo8N0 +06/29/2018,Comedians,@kathygriffin,"RT @AndyRichter: McDonald's CEO scolds employees for making burgers ""too burgery"" https://t.co/rcFPxzK6DY" +06/29/2018,Comedians,@kathygriffin,"RT @dodo: Bear and Bull have a habit of getting into trouble, especially when mail carriers leave the door of their truck open. https://t.c…" +06/29/2018,Comedians,@kathygriffin,RT @rgay: lol Martha Stewart on this episode of chopped saying “it’s spicy” with such Caucasian disdain. https://t.co/LT9Qyy22jQ +06/29/2018,Comedians,@kathygriffin,"RT @JulieOwenMoylan: I tweet this every single time this issue is raised and I always lose some followers and I never care. + +Fact..There is…" +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: An unassuming-looking man with glasses is bigger and braver than most. A hero of the resistance. https://t.co/5md667whYm +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: ❤️ https://t.co/hhLEeGFGUK +06/29/2018,Comedians,@kathygriffin,"RT @JuddLegum: Am eternally grateful to @capgaznews for the thoughtful way they covered my father's death two years ago. + +Thinking of ever…" +06/29/2018,Comedians,@kathygriffin,"@judois Yep! Friday, August 3rd! Come see me! https://t.co/yzvkFY84TF" +06/29/2018,Comedians,@kathygriffin,"RT @BetteMidler: Trump and Putin are meeting in Finland next month. That's a long way to travel for a blowjob, but hey -- Putin's got the m…" +06/29/2018,Comedians,@kathygriffin,RT @CorkyGirl32: Best night ever thanks to @kathygriffin!! 3 hours of truth telling and laughs. No one does stand up like her. https://t.co… +06/29/2018,Comedians,@kathygriffin,RT @JillWineBanks: Just laughed my head off with @kathygriffin at the Chicago Theater. Sold out show with an adoring audience. She is smart… +06/29/2018,Comedians,@kathygriffin,"RT @JillWineBanks: Can''t resist one more photo from the fun of being with @kathygriffin tonight. See her show. Also, met lots of enthusias…" +06/29/2018,Comedians,@kathygriffin,RT @SarahKSilverman: The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships start… +06/29/2018,Comedians,@kathygriffin,Gowdy is one angry lady. Too many facials. https://t.co/eu8UYDuUSJ +06/29/2018,Comedians,@kathygriffin,@darrenhayes They save us. Thank you for giving him a great life. +06/29/2018,Comedians,@kathygriffin,RT @LilahMonster: .@kathygriffin was amazing tonight in Chicago. 3 hours of pure entertainment and tea spilling. 👏🏻✌🏻 +06/29/2018,Comedians,@kathygriffin,"So excited! I love playing Atlanta! + +Tickets here: https://t.co/qFQCNjvvnv https://t.co/1KnSCmA19d" +06/29/2018,Comedians,@kathygriffin,That means so much to me! thank you! https://t.co/puKzFyW9jC +06/29/2018,Comedians,@kathygriffin,@Culpepperthecat Thank you! +06/29/2018,Comedians,@kathygriffin,Thank you!! 😘😍 https://t.co/4gmsifZWzW +06/29/2018,Comedians,@kathygriffin,Thank you!! https://t.co/fWDroObxV4 +06/29/2018,Comedians,@kathygriffin,"RT @KaylaPekkala: When you literally have no fucks to give, you put on one hell of a show. + +So much name dropping and juicy gossip from @k…" +06/29/2018,Comedians,@kathygriffin,"RT @ParkerMolloy: Oh wow, this was a lot of fun! 3 hours(!!!) of jokes, stories, gossip, and more. Totally different than any other comedy…" +06/29/2018,Comedians,@kathygriffin,Thank you @ParkerMolloy!!! https://t.co/T5gSqUIa8c +06/29/2018,Comedians,@kathygriffin,"Chicago - thank you for welcoming me back with open arms as you always do! You were amazing!!! + +XOXO +KG https://t.co/7glwJ41UeR" +06/29/2018,Comedians,@kathygriffin,Omg! An honor and a pleasure! Thank you! https://t.co/lFYxeKiQw8 +06/29/2018,Comedians,@kathygriffin,"RT @RepSwalwell: Rest In Peace, John. You saw some pretty good ball watching the @umterps as a student and covering them as a reporter. Our…" +06/29/2018,Comedians,@kathygriffin,. @JillWineBanks it was so nice to finally meet you! Thank you for coming to my show at the Chicago Theatre! https://t.co/rmqLeWC2ww +06/29/2018,Comedians,@kathygriffin,"RT @tamaraholder: We wouldn’t miss seeing THE most fearless, badass comedian @kathygriffin. Trump tried to bring her down. She got canned f…" +06/29/2018,Comedians,@kathygriffin,"Chicago, my beautiful hometown, I’m ready for you...are you ready for me?" +06/29/2018,Comedians,@kathygriffin,Yaaaass honey https://t.co/ZhFrzDo4Ur +06/29/2018,Comedians,@kathygriffin,RT @kristindecker: Cant wait to see my queen @kathygriffin !!! #laughyourheadoff https://t.co/oEjqIUVsl7 +06/28/2018,Comedians,@kathygriffin,RT @AndyHerren: Missing tonight’s #BB20 episode and #DragRace finale so I can see @kathygriffin. I have my gay priorities. +06/28/2018,Comedians,@kathygriffin,Talk about loyalty https://t.co/VDJcKkbft3 +06/28/2018,Comedians,@kathygriffin,"RT @washingtonpost: Rep. Maxine Waters cancels events due to ""very serious death threat"" https://t.co/E2peI0IpxY" +06/28/2018,Comedians,@kathygriffin,"RT @ShawnReynolds_: If you know / love a journalist, even if they’re not connected to this newspaper, reach out to them this evening. We al…" +06/28/2018,Comedians,@kathygriffin,"RT @amymrusso: Responding to our story @Mediaite about his encouragement of violence against reporters, Milo Yiannopoulos sent me an ominou…" +06/28/2018,Comedians,@kathygriffin,"RT @nycsouthpaw: In your commentary, I hope you’ll refrain from saying “society has decided to accept” current levels of gun violence, as C…" +06/28/2018,Comedians,@kathygriffin,RT @thistallawkgirl: Deport Milo Yiannopoulos +06/28/2018,Comedians,@kathygriffin,RT @kimmasters: . @FoxNews is the ultimate source on polarizing coverage. https://t.co/j9q1LRnDaA +06/28/2018,Comedians,@kathygriffin,"Fuck you @seanhannity, seriously. Now you’re putting @MaxineWaters’ life in danger. https://t.co/h8TKRiJo9H" +06/28/2018,Comedians,@kathygriffin,"RT @AP: Report: Multiple people shot at The Capital newspaper in Annapolis, Maryland. https://t.co/I9hTIBIb7K" +06/28/2018,Comedians,@kathygriffin,"RT @JohnFugelsang: Multiple people shot in Annapolis. +Ppl on the right will say it was a Muslim. +Ppl on the left will say it's a right wing…" +06/28/2018,Comedians,@kathygriffin,@rosedommu This was the other day! And at night! +06/28/2018,Comedians,@kathygriffin,My going for a walk in NYC look https://t.co/ZSp0EEKW1O +06/28/2018,Comedians,@kathygriffin,RT @nycsouthpaw: Bill Shine taking a high level White House job while v likely being a subject of an ongoing federal investigation is under… +06/28/2018,Comedians,@kathygriffin,"RT @kylegriffin1: Several billionaires with deep ties to Russia attended exclusive, invitation-only receptions during Trump's inauguration…" +06/28/2018,Comedians,@kathygriffin,RT @matthewjdowd: Democrats do not need to win over diehard Trump supporters to win elections. That group only composes about 25% of all v… +06/28/2018,Comedians,@kathygriffin,Exactly!!! https://t.co/AJh6nLrbqK +06/28/2018,Comedians,@kathygriffin,RT @mj_lee: Michael Cohen wants an apology >> https://t.co/ZsILqIDweQ +06/28/2018,Comedians,@kathygriffin,"RT @JonathanLanday: Ken Starr's Whitewater investigation lasted 4 years, produced nothing. 7 congressional committees, including Gowdy's,…" +06/28/2018,Comedians,@kathygriffin,"RT @slpng_giants: Fired from @foxnews for covering for sexual harassers and settling their lawsuits for them? + +Have we got a job for you! h…" +06/28/2018,Comedians,@kathygriffin,"RT @ShaneGoldmacher: She's 28. She literally can't run for president 2020. + +But leading Drudge now... https://t.co/Sf2aT6Cd7k" +06/28/2018,Comedians,@kathygriffin,RT @Diane_Warren: When is Bob Mueller going to indict your crime family??? https://t.co/wnVPkVVeYj +06/28/2018,Comedians,@kathygriffin,"RT @ChelseaClinton: More beautiful, honest writing from ⁦@rgay⁩: https://t.co/Efjpu4SFjg" +06/28/2018,Comedians,@kathygriffin,RT @karaswisher: Hero https://t.co/dCL8lgFSpB +06/28/2018,Comedians,@kathygriffin,"RT @ChicagoMag: This weekend! @kathygriffin comes to town, @SummerDanceChi returns, a celebration of footwork @mcachicago, and more: https:…" +06/28/2018,Comedians,@kathygriffin,"RT @ananavarro: Next time some Trump-apologist calls for civility, might want to refer back to this... https://t.co/KCu3Fjqpws" +06/28/2018,Comedians,@kathygriffin,How bad does Rosenstein wish he could tell Jordan to fuck off https://t.co/a34aBgVzuz +06/28/2018,Comedians,@kathygriffin,Ahhh you’re one of those fools who doesn’t get what a photo is and what a Halloween mask covered in ketchup is… https://t.co/4Y76VWDUwH +06/28/2018,Comedians,@kathygriffin,"Midterm Elections are in 131 days + +Register To Vote: https://t.co/QfF2eLAEZQ" +06/28/2018,Comedians,@kathygriffin,Fuck Jim Jordan +06/28/2018,Comedians,@kathygriffin,"RT @andylassner: Settle down. +You’re not getting nominated, drunky. https://t.co/gR59In684R" +06/28/2018,Comedians,@kathygriffin,RT @TVietor08: What a surprise that @JeffFlake surrendered before the fight started. https://t.co/LP7K3ZsRzm +06/28/2018,Comedians,@kathygriffin,RT @kimmasters: Wherein I disclose how low Lisa Bloom stooped to try to kill my story. https://t.co/aS1KHxX6gK +06/28/2018,Comedians,@kathygriffin,RT @tubefilter: .@ShaneDawson has remained relevant a decade after launching his YouTube channel by pushing the platform's boundaries. http… +06/28/2018,Comedians,@kathygriffin,RT @yashar: CBS News interview with ICE whistleblower interrupted by surprise visit from government agents https://t.co/7EwyF8VD12 +06/30/2018,Comedians,@cameronesposito,"grateful to have friends who talk politics over dinner, wake up early to rally or march & generally give a shit" +06/30/2018,Comedians,@cameronesposito,#familiesbelongtogether https://t.co/VwWXqkw0l5 +06/30/2018,Comedians,@cameronesposito,"Queer as Folk finale was on. The final words of the series, from 2005 https://t.co/5LrTq1eTJz" +06/29/2018,Comedians,@cameronesposito,"Los Angeles: will u be at this tmo? + +Hope so!! #FamilesBelongTogether https://t.co/1I31SEgeNW" +06/29/2018,Comedians,@cameronesposito,"@martcw12 @MNUFC Stoked for you, Collin." +06/29/2018,Comedians,@cameronesposito,@albinokid @RheaButcher @ClubhousePod oh wow cannot wait to listen +06/29/2018,Comedians,@cameronesposito,"@flyFoxfromNJ it was a coincidence! It’s that rad? + +I’ve totally talked w/ @threebarebears about how happy it makes me" +06/29/2018,Comedians,@cameronesposito,@jackiekashian @elizaskinner @aparnapkin @MrEmilyHeller @anylaurie16 @mariabamfoo seconded! +06/29/2018,Comedians,@cameronesposito,IM A FUCKING JOKE PROFESSOR +06/29/2018,Comedians,@cameronesposito,"No, that’s not a joke + +Jokes use an emotional reaction to an event or phenomenon to point to universal human truths… https://t.co/gAWTLAraS1" +06/29/2018,Comedians,@cameronesposito,"woke Rhea up at 7AM by screaming + +“TESSA!!!”" +06/28/2018,Comedians,@cameronesposito,"i guess im asking every queer person to go to law school or run for office + +OR BOTH" +06/28/2018,Comedians,@cameronesposito,"can’t stop thinking about an entirely queer Supreme Court + +Where all the dissenting opinions are justices calling e… https://t.co/sMXQTwA3Hd" +06/28/2018,Comedians,@cameronesposito,"Last night we passed the $50k mark in donations to support @rainn!! + +Thank you, friends. + +Watch the rest of this… https://t.co/bLhMQjbzdJ" +06/27/2018,Comedians,@cameronesposito,"45 getting another SCOTUS seat makes me nauseated + +im w/ u, other queer folks & anyone who’s part of a marginalized… https://t.co/5cZGEdtHVh" +06/27/2018,Comedians,@cameronesposito,"@waxpancake this is rad, Andy. + +thanks" +06/27/2018,Comedians,@cameronesposito,Portland! Come see me at @xoxo. https://t.co/HcGoYA9584 +06/27/2018,Comedians,@cameronesposito,@jeannakadlec @brookshelley @xoxo uh I’m a Libra moon +06/27/2018,Comedians,@cameronesposito,@tedleo @RheaButcher @pyhtshow @knottyyarn @caseywley 💜💜💜💜🎟 +06/27/2018,Comedians,@cameronesposito,"Alexandria Ocasio-Cortez!!!!!! + +!!!!!!!!!!!!!!! 😁 + +okay. Goodnight." +06/27/2018,Comedians,@cameronesposito,@Lawthreeper Hahahaha +06/27/2018,Comedians,@cameronesposito,‘Rape Jokes’ has raised over $43k for @rainn!! Watch FREE & donate at https://t.co/mrdDRgIvPt https://t.co/JfXLwIXjgt +06/27/2018,Comedians,@cameronesposito,i *am* Big Dick Energy +06/26/2018,Comedians,@cameronesposito,"RT @skgway: Number One Feeling. + +(🎥: @cameronesposito #RapeJokes) https://t.co/6NhqWcAFW5" +06/26/2018,Comedians,@cameronesposito,@skgway Yes. Yes every day. +06/26/2018,Comedians,@cameronesposito,@IjeomaOluo damn ur good w/ words +06/26/2018,Comedians,@cameronesposito,"Did u know that if u get really mad that i talk about being gay, ill still talk about it but u’ll be a mad sad baby… https://t.co/RAL5VDw4fU" +06/26/2018,Comedians,@cameronesposito,"Whoa cool. + +‘Rape Jokes’ in @MsMagazine +https://t.co/0Oxmd2t0EX https://t.co/SAS2GxuQKN" +06/26/2018,Comedians,@cameronesposito,"obvs SCOTUS doesn’t actually give a shit about religious freedom (Muslim ban) + +I do think w/ abortion specifically… https://t.co/m4k5eqggkI" +06/26/2018,Comedians,@cameronesposito,"@carrie1ou @designsponge @queerycast to recommend something adjacent, my new standup special has captions + +It’s fre… https://t.co/N7zEIKUoDC" +06/26/2018,Comedians,@cameronesposito,"Faith is a personal + +Evangelism as medical care is not faith and today’s Supreme Court decision is bogus + +Access… https://t.co/eROheVBKRZ" +06/26/2018,Comedians,@cameronesposito,"Brokebutch Mountain, right?? Also see u tonight 8PM at @ucbtla https://t.co/GBRnSV22JQ" +06/26/2018,Comedians,@cameronesposito,@ColinAnder @carrie1ou @designsponge @queerycast Yes yes yes yes PLS DO pls do +06/26/2018,Comedians,@cameronesposito,RT @PFTompkins: ICYMI: Spontaneanation Ep 169 continues our #PrideMonth celebration with our old pals Rhea Butcher & Cameron Esposito! With… +06/26/2018,Comedians,@cameronesposito,RT @designsponge: Hands down the most personal discussion I’ve ever had publicly. Thank you to @cameronesposito for making me feel safe to… +06/26/2018,Comedians,@cameronesposito,@katekillet much love Kate! +06/26/2018,Comedians,@cameronesposito,"@hanawith1n Hahahaha + +🗣 T O W E R" +06/26/2018,Comedians,@cameronesposito,@notarealpigeon much love!! +06/26/2018,Comedians,@cameronesposito,watch the rest of this set FREE & donate to support @RAINN at https://t.co/mrdDRgIvPt +06/26/2018,Comedians,@cameronesposito,ive been asked if ‘rape jokes’ can be funny for yrs. A: joke about whatever u want but BE GOOD AT IT & assume there… https://t.co/MEocBWa9Cj +06/25/2018,Comedians,@cameronesposito,"You better BIRD + +- Cover Girl!!! - + +BIRD and Rap-ine-oooooh + +Do ur thing on the cover https://t.co/XpnVtL9lFc" +06/25/2018,Comedians,@cameronesposito,"shoutout to my long-haired butches + +i once walked amongst u https://t.co/qvCsM9MF3S" +06/25/2018,Comedians,@cameronesposito,"@designsponge @queerycast Grace! Keep going w/ ur work. + +I’m always following & I’m such a fan." +06/25/2018,Comedians,@cameronesposito,"RT @designsponge: This was so much fun. Talking about work, life, finding our own version of #pride and everything in between with @cameron…" +06/25/2018,Comedians,@cameronesposito,"@Felonious_munk i can do 28 pretty easily + +u have a strong foundation; now build!" +06/25/2018,Comedians,@cameronesposito,@Che3fNuggz NAME 37 LESBIANS +06/25/2018,Comedians,@cameronesposito,FACT: you can tell a straight man’s value by how many lesbian standup comics he can name +06/25/2018,Comedians,@cameronesposito,"RT @earwolf: Design*Sponge founder Grace Bonney (@designsponge) sits down with @cameronesposito to discuss her new magazine Good Company, s…" +06/25/2018,Comedians,@cameronesposito,Stoked ‘Rape Jokes’ is included as the only indie special on this list ✌️ https://t.co/kM6b73jFSW +06/25/2018,Comedians,@cameronesposito,@DaylorTavidson thanks Taylor. +06/25/2018,Comedians,@cameronesposito,@Jesse_Hirsch hey thanks Jesse. +06/25/2018,Comedians,@cameronesposito,@j_n_foster wow look at her. +06/24/2018,Comedians,@cameronesposito,@ConorWalshy @RAINN I know hahaha. +06/24/2018,Comedians,@cameronesposito,"In honor of Pride, here’s what it felt like to kiss a woman for the first time + +Watch the rest of my special ‘Rape… https://t.co/ZH4ksh95Nk" +06/24/2018,Comedians,@cameronesposito,"Last night there was a moment when rhea & I didn’t laugh but just said “that’s a really good joke.” + +Highest compli… https://t.co/Frs1H2i0bl" +06/24/2018,Comedians,@cameronesposito,"i refuse to not exist + +Or make myself smaller + +I’m up for listening and learning + +enjoying my time here + +And holding the door open" +06/24/2018,Comedians,@cameronesposito,"RT @ColinAnder: .@cameronesposito's new special is free to stream now, benefits @RAINN, and is a brilliant, thought-provoking, emotional an…" +06/24/2018,Comedians,@cameronesposito,@TheOpposition wow i can’t believe Jordan had Spike from Buffy as a guest. Big get!! +06/24/2018,Comedians,@cameronesposito,"RT @TheOpposition: .@cameronesposito explains why her new stand-up special ""Rape Jokes"" is so funny. ► https://t.co/gH72wK7lpL https://t.co…" +06/24/2018,Comedians,@cameronesposito,Got to be on my hometown radio w/ someone ive seen make a lot of art!! https://t.co/dnOOhrdeP4 +06/24/2018,Comedians,@cameronesposito,@anitasarkeesian thanks Anita! +06/24/2018,Comedians,@cameronesposito,"Finally, i remember the Speedos + +pls enjoy ur Pride, Chicago + +Send me photos of ur Speedos" +06/24/2018,Comedians,@cameronesposito,"this is a reminder for white ppl + +Obvs POC don’t need this white lesbian’s permission to exist" +06/24/2018,Comedians,@cameronesposito,"even at my first Pride, i noticed the division btwn the white dudes who lived in Boystown & POC who likely didn’t (… https://t.co/5W6FB34118" +06/24/2018,Comedians,@cameronesposito,i was still full-on Catholic. The bull-horned protestors w/ slur filled signs didn’t shock me but I was like “what… https://t.co/LHtagyZtFh +06/24/2018,Comedians,@cameronesposito,"my parents demanded that i not come out to my lil sis, then a young teen, & she wasn’t allowed to come w/ us to the… https://t.co/AY009YZEdN" +06/24/2018,Comedians,@cameronesposito,"When i was first coming out & my only access to the queer community was an L Word msg board, my older sister took m… https://t.co/kcyEHrhyd4" +06/24/2018,Comedians,@cameronesposito,@teganandsara 😘😘 +06/24/2018,Comedians,@cameronesposito,"Tonight: stream ‘Rape Jokes” free on https://t.co/mrdDRgIvPt + +Or tomorrow. Or Monday. + +And then donate to support @RAINN" +06/24/2018,Comedians,@cameronesposito,This Pride i hope u wear a rainbow bandana & are held next to a painting of yourself https://t.co/QAlD7Phiqo +06/23/2018,Comedians,@cameronesposito,"RT @junethomas: On this week's episode of The Waves, @c_cauterucci, @latifalyles, @veralynmedia, and I talked about the Carters' album, @ca…" +06/23/2018,Comedians,@cameronesposito,@trixiemattel @RheaButcher oh that was my “keep going” face +06/23/2018,Comedians,@cameronesposito,@trixiemattel @RheaButcher https://t.co/xm68fpnj9c +06/23/2018,Comedians,@cameronesposito,"i, a gay, refuse Sarah Sanders service in my bakery* + +also Kirstjen Nielsen + +And Stephen Miller + +*i don’t have a b… https://t.co/UalNFHZ9zV" +06/23/2018,Comedians,@cameronesposito,In ten yrs of standup & 15 yrs of professional comedy ive walked ppl once & it was earlier this yr bc i said tr*mp… https://t.co/xb7piNnJtF +06/22/2018,Comedians,@cameronesposito,"cannot believe i got to wear this outfit & say these words on tv + +Thanks @jordanklepper & @ComedyCentral https://t.co/c13643TwQr" +06/22/2018,Comedians,@cameronesposito,Blair & Rhea doing the work. ✊ https://t.co/yqn1OCfRdD +06/22/2018,Comedians,@cameronesposito,"@junethomas @c_cauterucci @latifalyles @veralynmedia this was rad to listen to! + +Thanks for the kind words." +06/22/2018,Comedians,@cameronesposito,"RT @JWhitePubRadio: Love that I got to talk to @cameronesposito about her new comedy special. Really fascinating convo about identity, surv…" +06/22/2018,Comedians,@cameronesposito,imagine having such a low opinion of women that u don’t think Melania can be criticized +06/22/2018,Comedians,@cameronesposito,"RT @RAINN: In her new comedy special (now with closed captioning), @cameronesposito discusses complex issues surrounding sexual violence, m…" +06/22/2018,Comedians,@cameronesposito,@leffjakin @thepinhook i love the Pinhook and I think the shows will def sell out - ur city is good indeed +06/22/2018,Comedians,@cameronesposito,"sooooo white folks: + +Call Senators. Be loud. Make sure ur ass is registered to vote & talk w/ ur family. + +Demand c… https://t.co/eU9lnyxUQf" +06/22/2018,Comedians,@cameronesposito,That thing where the president thinks he earned anything he has & that a crappy hotel and steak empire is worth pro… https://t.co/Ii8ztgIblh +06/22/2018,Comedians,@cameronesposito,Did u catch @jordanklepper & lil guest me on @TheOpposition tonight? We were adorable. https://t.co/SURfMdsYFR +06/22/2018,Comedians,@cameronesposito,"@TheOpposition I have a secret which is that u are kind & also nice + +Hahaha I’ve exposed u Mr Klepper + +And ur show" +06/22/2018,Comedians,@cameronesposito,"RT @chicagotribune: ""I thought of the title first,"" said comedian Cameron Esposito of her newest stand-up special. + +It’s called ""Rape Jokes…" +06/21/2018,Comedians,@cameronesposito,"RT @TheOpposition: Tonight's opponent is comedian and actor @cameronesposito. I prefer *my* Camerons ""Despacito."" https://t.co/KN6HTMhjCN" +06/21/2018,Comedians,@cameronesposito,"RT @HuffPost: ""It felt like this entire press cycle could potentially complete without ever exploring anything about the survivors."" –– @ca…" +06/21/2018,Comedians,@cameronesposito,"home tmo. wknd agenda for things to yell about w/ Rhea: + +- politics +- politics +- POLITICS +- Mackenzie Davis/Terminator set photos +- politics" +06/21/2018,Comedians,@cameronesposito,@lpolgreen Thanks Lydia. ‘ppreciate ya! +06/21/2018,Comedians,@cameronesposito,"@noahmichelson @RAINN Thank u Noah! Thanks for coming to see the show live, too. Cool of you." +06/21/2018,Comedians,@cameronesposito,RT @lpolgreen: Her hourlong comedy special “Rape Jokes” takes lessons from the Me Too movement as far as they will go. @cameronesposito is… +06/21/2018,Comedians,@cameronesposito,"Gun violence +Healthcare +Aging Boomer population +Mass incarceration +Automation replacing the worker +Integrating un… https://t.co/Ow7Fq64eyi" +06/21/2018,Comedians,@cameronesposito,@MaryKoCo @RAINN thanks Mary. (Sent from the east coast when this isn’t an ungodly early time) +06/21/2018,Comedians,@cameronesposito,@scalzi oh thank u sir! +06/21/2018,Comedians,@cameronesposito,@MaryKoCo @RAINN Mary! U are my friend & I like u! +06/21/2018,Comedians,@cameronesposito,"Today we hit $35k for @RAINN!! + +Stream ‘Rape Jokes’ free & donate if u can all via https://t.co/mrdDRgqUXV https://t.co/jIrIMLNsDi" +06/21/2018,Comedians,@cameronesposito,@rachelleetweets Thanks Rachel! +06/20/2018,Comedians,@cameronesposito,"@RheaButcher @RAINN Thanks for supporting me, human." +06/20/2018,Comedians,@cameronesposito,"RT @sealln: Thank you for this, @cameronesposito. Everyone watch. And donate! https://t.co/CmgPQoSTJM #rapejokes" +06/20/2018,Comedians,@cameronesposito,RT @smrtgrls: .@cameronesposito is using stand-up comedy to start a conversation about the difficult topic of sexual assault. All proceeds… +06/20/2018,Comedians,@cameronesposito,"Our jobs are: + +- CALL (202) 224-3121, enter your zip, state that u want Family Separation to end + +- MARCH June 30th… https://t.co/q1wIS0SVqP" +06/20/2018,Comedians,@cameronesposito,"Before standup, i worked at a home for kids who couldn’t be placed in foster care + +Vibrant, awesome kids & also war… https://t.co/OjcZ0VoWHU" +06/19/2018,Comedians,@cameronesposito,"RT @gibblertron: .@cameronesposito built this hilarious, touching performance on her personal trauma and is using that to help others and h…" +06/19/2018,Comedians,@cameronesposito,@gibblertron this is beautiful & thank u +06/19/2018,Comedians,@cameronesposito,I’m outta town so can u pls go see this human do standup tonight 8PM at @ucbtla?? I miss them. https://t.co/N3LF91JM31 +06/19/2018,Comedians,@cameronesposito,@ParkerMolloy not really in town - hanging w/ my folks in the burbs +06/19/2018,Comedians,@cameronesposito,A spot of brightness: pls enjoy my mom welcoming u to “Gayvy Pier” https://t.co/ih72p1Yulg +06/19/2018,Comedians,@cameronesposito,@kthawbaker great to meet you! +06/19/2018,Comedians,@cameronesposito,RT @UnapologeticAMC: Visit https://t.co/AwULsGMh39 to stream @cameronesposito’s new “Rape Jokes” special for free or donate to benefit @RAI… +06/19/2018,Comedians,@cameronesposito,took my dad to the @Cubs game & it was rained out but i got this photo of Theo Epstein & Dave Roberts 🤷‍♂️ https://t.co/SRlUAWWapp +06/19/2018,Comedians,@cameronesposito,I got to talk about my new special & why i think it’s important to focus on survivors on tv!! Watch tonight. https://t.co/Av3GWpKBpY +06/18/2018,Comedians,@cameronesposito,RT @brooklynvegan: Stream Cameron Esposito's 'Rape Jokes' special - it's free and you can purchase it to benefit RAINN: https://t.co/c8zhr5… +06/18/2018,Comedians,@cameronesposito,"‘Rape Jokes’ went live on my website one week ago today + +So far $30k raised for @RAINN + +My goal is $100k for rape… https://t.co/8gHEmos2AW" +06/18/2018,Comedians,@cameronesposito,@DueOrDie @RheaButcher 💜💜 always in ur corner +06/18/2018,Comedians,@cameronesposito,This week’s @queerycast guest is @Travon!! Second pic is evidence of how much i liked talking with him.… https://t.co/fF0ufpdkRV +06/18/2018,Comedians,@cameronesposito,"why i am an angry lesbian + +When I should be a furious one" +06/18/2018,Comedians,@cameronesposito,And our god is money. +06/18/2018,Comedians,@cameronesposito,"The U.S. is a + +1. Carry all pregnancies to term +2. But don’t expect support or insurance +3. And same sex couples… https://t.co/hpcDZyvyMR" +06/18/2018,Comedians,@cameronesposito,"👆posting in case this is helpful to anyone going thru shit w/ ur family of origin + +But also: if ur queer, ur my fam… https://t.co/Qu2vP7JJ0I" +06/18/2018,Comedians,@cameronesposito,"A few yrs ago i interviewed my dad about our relationship, Catholicism, my being gay. Father’s Day repost: +https://t.co/dECs490xMM" +06/17/2018,Comedians,@cameronesposito,"@JoCoCruise @RAINN Thank u, delightful cruise ship!" +06/17/2018,Comedians,@cameronesposito,follow-up: happy daddy’s day to me https://t.co/HGSKBCX7x5 +06/17/2018,Comedians,@cameronesposito,Happy Daddy’s Day to all butches. +06/17/2018,Comedians,@cameronesposito,RT @katemicucci: ❤️❤️❤️ Check out the wonderful @cameronesposito’s special and benefit @RAINN while you do! ❤️❤️ https://t.co/1N76sXYziU +06/17/2018,Comedians,@cameronesposito,@quietbonnie Hahahah amazing. +06/17/2018,Comedians,@cameronesposito,@ramona_von_punk @ayyy_bibii Bloomington +06/17/2018,Comedians,@cameronesposito,@DanEngler @RAINN @LALGBTCenter thanks Dan. +06/17/2018,Comedians,@cameronesposito,Feeling very welcome at this coffee shop in Indiana altho honestly i think it was scones that turned me https://t.co/IfwpwLk2Et +06/17/2018,Comedians,@cameronesposito,@shmemschmidt Ugh yes Carrie Fisher. +06/17/2018,Comedians,@cameronesposito,"RT @vulture: Watch @cameronesposito's new remarkable comedy special on rape jokes and sexual assault, here on @vulture https://t.co/pDKe8wh…" +06/17/2018,Comedians,@cameronesposito,"an older fella just told me i look like a young Denis Leary + +And I’m truly floored/grateful he saw me as the dude w… https://t.co/4Q7SBjHbik" +06/17/2018,Comedians,@cameronesposito,RT @laurenlapkus: Go watch @cameronesposito's new special and donate to @rainn!! https://t.co/zK5bHTV7h1 +06/16/2018,Comedians,@cameronesposito,"Me, when I ascend to heaven: https://t.co/zqgOUReZHl" +06/16/2018,Comedians,@cameronesposito,"@Galaxy_Allie @MsMagazine hey there! Followed u. + +Go ahead and DM me" +06/16/2018,Comedians,@cameronesposito,Had a great time talking w/ Larkin! https://t.co/6VlCMYTwCu +06/16/2018,Comedians,@cameronesposito,@amycbecker @RAINN thank u Amy. +06/16/2018,Comedians,@cameronesposito,@maureenjohnson @RAINN thnx Maureen! Appreciate u. +06/16/2018,Comedians,@cameronesposito,@CharmedChancer thanks for this Tristan! +06/16/2018,Comedians,@cameronesposito,"‘Rape Jokes’ now has captioning!! + +Stream free at https://t.co/mrdDRgqUXV https://t.co/FuJjDpsh5v" +06/16/2018,Comedians,@cameronesposito,"fellow white ppl: we ARE a country that separates black & brown children from parents + +that’s why telling POC to sh… https://t.co/T98Y0opUc5" +06/16/2018,Comedians,@cameronesposito,@caitlinrcruz wow congrats +06/16/2018,Comedians,@cameronesposito,@Pixiesnix @RAINN @IndieWire @Refinery29 @MotherJones @RealMickFoley definitely not weird. +06/16/2018,Comedians,@cameronesposito,@_AmyScanlon @RAINN hello to ur beautiful dog! +06/15/2018,Comedians,@cameronesposito,@Allison_Yvonne get over here! +06/15/2018,Comedians,@cameronesposito,"My standup special ‘Rape Jokes’ has raised $25k for @RAINN in 4 days + +It’s free on https://t.co/mrdDRgqUXV + +Give it… https://t.co/3Agyd9ZZfA" +06/15/2018,Comedians,@cameronesposito,@RheaButcher @RAINN guess what it’s now $25k 😎 +06/15/2018,Comedians,@cameronesposito,Dispatch from Indiana. It’s good to remember many businesses don’t want restrictive bathroom laws. https://t.co/HFuy07TDGu +06/15/2018,Comedians,@cameronesposito,"This wknd: Bloomington, IN + +And see you in July, Durham + +Lots of dates for fall. Info/tix here:… https://t.co/T2ws9mJO5J" +06/15/2018,Comedians,@cameronesposito,"RT @tweedmandan: At the end of @cameronesposito 's special, I simply refused to believe an hour had passed. I found myself scrolling back a…" +06/15/2018,Comedians,@cameronesposito,@CintaRose @RheaButcher wow we look like we love each other +06/15/2018,Comedians,@cameronesposito,"RT @wearewildfang: Go buy @cameronesposito's new standup special! It's heartfelt, brilliant and to top it off, all the proceeds go to @RAIN…" +06/15/2018,Comedians,@cameronesposito,@sierraackman this is EXACTLY RIGHT +06/15/2018,Comedians,@cameronesposito,"As Jesus said: “That’s not what the Bible means, asshole.” + +*this really applies to a lot" +06/15/2018,Comedians,@cameronesposito,"if offered the chance to go to the local queer bar, always always go https://t.co/HsLlXO8vEG" +06/15/2018,Comedians,@cameronesposito,@JenKirkman @jonahray @RAINN giving it a shot! +06/14/2018,Comedians,@cameronesposito,"Bloomington, IN! I’m in town all wknd + +Almost barfed going to the airport early this morn FOR YOU +https://t.co/KyvUlm3Lkp" +06/14/2018,Comedians,@cameronesposito,@janl Wow thanks for this Jan! +06/14/2018,Comedians,@cameronesposito,"You know I love you, @autostraddle. + +Thnx for covering ‘Rape Jokes’!! +https://t.co/XYRWIjjLV5" +06/14/2018,Comedians,@cameronesposito,@kyliesparks thanks Kylie! +06/14/2018,Comedians,@cameronesposito,@ElenaStofle Code is CAMERON +06/14/2018,Comedians,@cameronesposito,"@JustineEEgner @RAINN Whoa Justine; this is rad! + +where do u teach?" +06/14/2018,Comedians,@cameronesposito,"I’m floored by press for ‘Rape Jokes’ + +Stream free at https://t.co/mrdDRgIvPt + +Over $20k raised for @RAINN & rape c… https://t.co/IABSGjWQRs" +06/14/2018,Comedians,@cameronesposito,"RT @rosemakesart: A portrait of @cameronesposito, whose new work of comedy to benefit @RAINN just completely shattered me in all the best w…" +06/14/2018,Comedians,@cameronesposito,@rosemakesart @RAINN I love this! +06/14/2018,Comedians,@cameronesposito,"RT @janetvarney: Nice work, Ms. Esposito! https://t.co/Yo1gxiGnhn" +06/14/2018,Comedians,@cameronesposito,@SarahThyre I’d happily do cute bits instead +06/14/2018,Comedians,@cameronesposito,"RT @MikeBatesSBN: I watched this exceptionally funny +(free) special last night with my partner. This morning, she and I both made donation…" +06/14/2018,Comedians,@cameronesposito,@MikeBatesSBN hey thanks Mike +06/14/2018,Comedians,@cameronesposito,@showermanb thanks Brent. +06/14/2018,Comedians,@cameronesposito,@carolinefives that’s incredible. +06/14/2018,Comedians,@cameronesposito,"@ErinMayaDarke Erin! i loved meeting u today + +And thank u" +06/14/2018,Comedians,@cameronesposito,"i see u all tagging ur posts about ‘Rape Jokes’ #getintheway + +It’s beyond. Ur too much. I honestly didn’t know that… https://t.co/eozgl9ACcC" +06/14/2018,Comedians,@cameronesposito,"RT @Variety: Cameron Esposito on 'Rape Jokes,' her new comedy special tackling sexual assault and consent https://t.co/lBxGYQD9H0" +06/14/2018,Comedians,@cameronesposito,@mariabamfoo MARIA U R THE GREATEST +06/14/2018,Comedians,@cameronesposito,@livhewson thank u liv +06/14/2018,Comedians,@cameronesposito,@SmartAssJen @RAINN same my friend 💜 +06/13/2018,Comedians,@cameronesposito,"If i had a thesis for ‘Rape Jokes’ it’d be “she’s in control of her narrative, while challenging what it means to b… https://t.co/0qV2RUVqhN" +06/13/2018,Comedians,@cameronesposito,RT @teganandsara: Loved every minute of this. https://t.co/5zY7xE2HC0 +06/13/2018,Comedians,@cameronesposito,@SmartAssJen @RAINN Jen u just made me cry. +06/13/2018,Comedians,@cameronesposito,"RT @SmartAssJen: I saw Cam do this live and was floored. It covers a lot of ground, goes in unexpected directions, is damn funny throughout…" +06/13/2018,Comedians,@cameronesposito,"@teganandsara ugh u loved my art, artists i adore?!! + +Cool. That’s cool." +06/13/2018,Comedians,@cameronesposito,@JorCru thank u Jordan! +06/13/2018,Comedians,@cameronesposito,@bjcolangelo thanks BJ! +06/13/2018,Comedians,@cameronesposito,RT @TheAVClub: .@CameronEsposito’s Rape Jokes offers humor and empathy at a time when they’re most needed https://t.co/jzPqRI27Xn https://t… +06/13/2018,Comedians,@cameronesposito,RT @RheaButcher: My wife has raised $20k in 2 days putting out her completely independent special with NO NETWORK https://t.co/5CADLvDxLJ +06/13/2018,Comedians,@cameronesposito,@maureenjohnson thanks Maureen! +06/13/2018,Comedians,@cameronesposito,@carlylane thanks Carly! +06/13/2018,Comedians,@cameronesposito,@QueerXiChisme @RAINN yep! Working on it now. +06/13/2018,Comedians,@cameronesposito,"Stream my new special ‘Rape Jokes’ FREE or donate to benefit @rainn. + +So far $20k raised in 2 days!! + +Watch at… https://t.co/79yddTE7wv" +06/13/2018,Comedians,@cameronesposito,"@theadamgoldman @queerycast @tobinlow @_kathytu @SueYacka ooohh I’m gonna listen back to this, Adam + +Was a good chat!" +06/13/2018,Comedians,@cameronesposito,"RT @glaad: ""If you want to bust through but you don't want to hold the door, then I have nothing in common with you."" -@cameronesposito on…" +06/13/2018,Comedians,@cameronesposito,@carolineframke thanks for saying that +06/13/2018,Comedians,@cameronesposito,@pickle__bitch code: CAMERON +06/13/2018,Comedians,@cameronesposito,"RT @carolineframke: I admire the hell out of @cameronesposito's ""Rape Jokes,"" her searing (and v funny!) new special tackling trauma head o…" +06/13/2018,Comedians,@cameronesposito,Very excited to have ‘Rape Jokes’ covered by @Variety. Stream the special FREE or donate to @RAINN. All at… https://t.co/HUmcb38eaZ +06/13/2018,Comedians,@cameronesposito,"@carolineframke thank u, Caroline!" +06/13/2018,Comedians,@cameronesposito,RT @bessbell: Please watch this extremely good comedy special. Go in cold. Just watch and listen to Cameron. https://t.co/XcWhWdVww9 +06/13/2018,Comedians,@cameronesposito,"@iamcarriesoom @eddiephlash @amyyyela absolutely! On this project only, I’m not getting paid, director, producers,… https://t.co/AoZxaWr0le" +07/01/2018,Comedians,@WhitneyCummings,Please don’t forget I was on Tylenol PM by accident when I recorded this. https://t.co/kFkkJ4ZnIc +07/01/2018,Comedians,@WhitneyCummings,I love you. I’m so glad it’s over! ❤️ https://t.co/EN6zQDJiN3 +06/30/2018,Comedians,@WhitneyCummings,@marishannah Gah!!! Damn it! ❤️ +06/30/2018,Comedians,@WhitneyCummings,This made me cry so this day is already off to a banging start. https://t.co/jKlxc8B3B2 +06/30/2018,Comedians,@WhitneyCummings,🙌🏼Thank you 🙌🏼 https://t.co/h0bRAbXiNg +06/30/2018,Comedians,@WhitneyCummings,RT @billyeichner: We need to fight this with everything we’ve got. The vast majority of the country is Pro-Choice. And I can’t even imagine… +06/29/2018,Comedians,@WhitneyCummings,San Jose tickets are UP! https://t.co/L948Z0V5ug +06/28/2018,Comedians,@WhitneyCummings,💔 https://t.co/mEmhgFiQ4N +06/28/2018,Comedians,@WhitneyCummings,"RT @maddow: Real headline. + +https://t.co/SyRaPbgamC" +06/28/2018,Comedians,@WhitneyCummings,@robintran04 @TheoVon HAHAHAHAHAHAHAHAH +06/28/2018,Comedians,@WhitneyCummings,I took two Tylenol PM by accident and did Theo’s podcast. Enjoy! https://t.co/aIyKV4x4bR +06/27/2018,Comedians,@WhitneyCummings,"New York: tickets for July shows here. New material, old need to make drunk strangers laugh. https://t.co/Aruas7k0kq" +06/27/2018,Comedians,@WhitneyCummings,Is this administration one giant scam to get more people to buy blood pressure medication? +06/27/2018,Comedians,@WhitneyCummings,Okay yes I love the Handmaids Tale - that doesn’t mean I want to live in it. https://t.co/JkGnZbH088 +06/27/2018,Comedians,@WhitneyCummings,"This isn’t a party issue, this is a humanity issue. https://t.co/MME4Rhek96" +06/27/2018,Comedians,@WhitneyCummings,Well this made my day. Neurology and horses is my favorite combination of things next to Laverne and Shirley https://t.co/1yNQQ4H5Ep +06/27/2018,Comedians,@WhitneyCummings,🤦🏻‍♀️ https://t.co/r5NmXHPhtR +06/26/2018,Comedians,@WhitneyCummings,Melania is going to pay a second visit to immigration facilities and I’m on pins and needles about what she will we… https://t.co/vVE3NMVqLv +06/26/2018,Comedians,@WhitneyCummings,@GoodThymeHefe What is this company? +06/26/2018,Comedians,@WhitneyCummings,Lets go then. https://t.co/U12jhssGtO +06/26/2018,Comedians,@WhitneyCummings,I'm trying to find GOOD news online and so far this is all I've found https://t.co/2t4pNy7BlY +06/25/2018,Comedians,@WhitneyCummings,Now Walgreens sucks? I don’t know how much more i can take of this. +06/25/2018,Comedians,@WhitneyCummings,August 17/18 I’m doing shows in CHICAGO. Tix just went on sale my lovelies. https://t.co/TmzSK0qrwk +06/25/2018,Comedians,@WhitneyCummings,"So when we attack Trump, his approval rating goes up? 😞 https://t.co/hs5EbZmrII" +06/24/2018,Comedians,@WhitneyCummings,"Whoever is building these, please stop? https://t.co/SkaIMYiqO3" +06/24/2018,Comedians,@WhitneyCummings,Don’t know who made this...but exactly. https://t.co/UyTeM5pmxf +06/24/2018,Comedians,@WhitneyCummings,I didn’t realize how badly I needed this. https://t.co/fSDt6qOnnH +06/23/2018,Comedians,@WhitneyCummings,@carlyincontro HAHA that you noticed that! +06/23/2018,Comedians,@WhitneyCummings,Don’t cry! 😞 https://t.co/JnqXieeHe6 +06/22/2018,Comedians,@WhitneyCummings,"I’m starting to lose faith in CNN. It’s discouraging how click bait driven they’ve become, and now they aren’t even… https://t.co/SId1D5oBot" +06/22/2018,Comedians,@WhitneyCummings,Please sit in the front row. https://t.co/9f9dzEN6EC +06/22/2018,Comedians,@WhitneyCummings,Add to cart. https://t.co/TIglY89rQ1 +06/22/2018,Comedians,@WhitneyCummings,@dogtalesrescue hey I am doing shows there this weekend and would love to visit-possible? +06/22/2018,Comedians,@WhitneyCummings,@SarahKSilverman Is he from Gilead? +06/22/2018,Comedians,@WhitneyCummings,"Not gonna lie, I was a bit surprised to find out Melania shops at Zara. I'm a bit annoyed we have something in common." +06/22/2018,Comedians,@WhitneyCummings,I think the weirdest part of this jacket saga is that Melania was implying that at one point she did care? +06/21/2018,Comedians,@WhitneyCummings,Is this a joke? I literally can’t tell anymore. https://t.co/nOuPa1ufq6 +06/21/2018,Comedians,@WhitneyCummings,"If you're coming to Ontario shows this weekend, I will sign books if you bring them. I'll be there Friday, Saturday… https://t.co/fkkFrrqs5Q" +06/21/2018,Comedians,@WhitneyCummings,"There's no shortage of things we all need to read and watch, but this is worth the time. Take care of your body, be… https://t.co/SptEFFaIrV" +06/21/2018,Comedians,@WhitneyCummings,"I mean, I don't know why I'm even shocked anymore. Of course a pussy grabber would also be a baby snatcher." +06/21/2018,Comedians,@WhitneyCummings,"If you me thinking toddlers and parents should stay together makes me a “snowflake”, then... https://t.co/Tk7nNqeWfg" +06/20/2018,Comedians,@WhitneyCummings,"I may need to leave the internet. +https://t.co/i1OoTTjj6I" +06/20/2018,Comedians,@WhitneyCummings,For breaking news watch the Handmaids Tale https://t.co/rRfqMcqYA3 +06/20/2018,Comedians,@WhitneyCummings,Please call please call https://t.co/DATskZnvBz +06/20/2018,Comedians,@WhitneyCummings,👏🙌🏼 @KamalaHarris https://t.co/5IrlQqSlFo +06/20/2018,Comedians,@WhitneyCummings,I tend not to retweet too much because I assume anyone who follows me already knows this is sickening but what the… https://t.co/4B1UHMAJUa +06/20/2018,Comedians,@WhitneyCummings,Child actors have parents on set at all times and can only work in 8 hour increments. At least have the decency to… https://t.co/oFYM0rzSsm +06/19/2018,Comedians,@WhitneyCummings,Unconscionable. https://t.co/l5CLH5GksT +06/19/2018,Comedians,@WhitneyCummings,Separating children from their parents is traumatizing whether they’re put in cages or not. So yes the cages should… https://t.co/e5heuqYdAD +06/18/2018,Comedians,@WhitneyCummings,"Who is coming to Ontario, CA shows this weekend? https://t.co/QNmhZrOr1M" +06/17/2018,Comedians,@WhitneyCummings,@KathiaVC Hahahahahhaah +06/17/2018,Comedians,@WhitneyCummings,RT @joerogan: ‘America is better than this’: What a doctor saw in a Texas shelter for migrant children https://t.co/4fqHNpcHIy +06/16/2018,Comedians,@WhitneyCummings,"Next weekend I’ll be doing and hour of new material in Ontario - an hour from LA. Come for the comedy, stay for the… https://t.co/T0WvsTIo1q" +06/16/2018,Comedians,@WhitneyCummings,@kayeezus_ Got it now delete +06/16/2018,Comedians,@WhitneyCummings,@kayeezus_ Send me your address +06/15/2018,Comedians,@WhitneyCummings,"I’ll be performing in San Jose in August - all new material, all same weird dynamic of telling my secrets to strang… https://t.co/jwLlRr9dTt" +06/15/2018,Comedians,@WhitneyCummings,IHOB? Whoever came up with this new name please STOB making decisions +06/15/2018,Comedians,@WhitneyCummings,So we are just Gilead now? https://t.co/KgDr8shHG0 +06/15/2018,Comedians,@WhitneyCummings,It’s back up on digital 7/3! Right now it’s on planes 👋🏻 https://t.co/fbxVF2vXxU +06/15/2018,Comedians,@WhitneyCummings,@tiffanyredford @amazon @iTunes It’s back up on 7/3! It’s on planes right now! +06/14/2018,Comedians,@WhitneyCummings,@SebastianComedy Is that your house? +06/14/2018,Comedians,@WhitneyCummings,San Diego shows are sold out. Thank you my lovers. I will be down there again in September for the Kaboo festival a… https://t.co/Uu3we3RL3s +06/14/2018,Comedians,@WhitneyCummings,Just added shows in SAN JOSE the second week of August. who is coming? tix here. https://t.co/TIqO1siVAz +06/14/2018,Comedians,@WhitneyCummings,"WAIT. Did everyone but me know that Handmaids Tale was a MOVIE in 1990? +https://t.co/eQUgA7Ff8A" +06/14/2018,Comedians,@WhitneyCummings,New Handmaids Tale = me crying alone in my sports bra. This is all your fault @maxminghella https://t.co/1HQiMzk3Jl +06/13/2018,Comedians,@WhitneyCummings,Should we just start calling Ivanka Trump Mrs. Waterford? (IF YOU GET THIS YOU GET ME) +06/13/2018,Comedians,@WhitneyCummings,My “daily mix” on Spotify is really holding up a mirror I’d rather not look in +06/13/2018,Comedians,@WhitneyCummings,I never thought the day would come where I liked Delta. @nealbrennan https://t.co/qL1cZpNIEx +06/12/2018,Comedians,@WhitneyCummings,I’m performing @KAABOODelMar on SAT SEPT 15! Single and three-day passes are available at https://t.co/1h79u7PaEv… https://t.co/2bMFnJap4s +06/12/2018,Comedians,@WhitneyCummings,My bar for sanity has gotten so low I actually thought Dennis Rodman was making some sense. +06/11/2018,Comedians,@WhitneyCummings,The Trump administration just dropped protections for domestic violence victims. I would give anything for this to have surprised me. +06/11/2018,Comedians,@WhitneyCummings,"Come see me and my pals do some LOLs in Pasadena, CA June 27. https://t.co/lTFpda44tW https://t.co/k5nbZFEa3m" +06/11/2018,Comedians,@WhitneyCummings,"Per usual, I'm sorry about something. The Female Brain is now on planes, so not on iTunes and Amazon, but it will b… https://t.co/OtepktKp87" +06/11/2018,Comedians,@WhitneyCummings,The Parkland students singing Seasons Of Love just wrecked me so hard-goodbye forever dry eyes +06/11/2018,Comedians,@WhitneyCummings,"I can't with this. +https://t.co/4dIrb2znCh" +06/10/2018,Comedians,@WhitneyCummings,"Delta, in the past we’ve certainly had our differences, but now that you’re showing The Female Brain, I’ll forgive… https://t.co/7tAiTq6zeE" +06/10/2018,Comedians,@WhitneyCummings,@err_bear8 I love this! +06/09/2018,Comedians,@WhitneyCummings,When is United just going to admit that it’s Southwest? +06/09/2018,Comedians,@WhitneyCummings,Snippets of it are on my Instagram story 👍🏼 https://t.co/GQk4ExlIEW +06/08/2018,Comedians,@WhitneyCummings,Where did we land on muting people’s instagrams? Can we do that now? Need to know because it’s ruining some of my friendships thanks! +06/08/2018,Comedians,@WhitneyCummings,"PASADENA, CA. I'll be working on New Material with some pals this Sunday at the Ice House at 9pm. Come, let's navig… https://t.co/RDR9aaxeMl" +06/08/2018,Comedians,@WhitneyCummings,This is important. https://t.co/cv01WedUlc +06/07/2018,Comedians,@WhitneyCummings,Please consider signing this 🦄 https://t.co/usXRhLxVqI +06/07/2018,Comedians,@WhitneyCummings,Well at least I got this pal out of that whole mess. @sarahchalke https://t.co/5ITvW5C5F3 +06/07/2018,Comedians,@WhitneyCummings,@marisamode YES I WILL! CAN'T WAIT! +06/06/2018,Comedians,@WhitneyCummings,"San Diego, I'll be performing in you in two weekends, so come, let's be sunburnt and laugh together. Tix here https://t.co/aUiddxCD29" +06/06/2018,Comedians,@WhitneyCummings,@inthehenhouse @Variety No women are available they all have shows! +06/05/2018,Comedians,@WhitneyCummings,"That said, all man-babies are welcome at my shows! https://t.co/0bJbzLdHpm" +06/05/2018,Comedians,@WhitneyCummings,Don’t panic everyone. You can still find women in swimsuits on instagram whenever you want. https://t.co/aacRFldpgt +06/04/2018,Comedians,@WhitneyCummings,Every day on Facebook https://t.co/W9HCO3veql +06/03/2018,Comedians,@WhitneyCummings,Should we just start calling Melania OfDonald? +06/03/2018,Comedians,@WhitneyCummings,Weddings are super fun if you love hearing people talk about what time their flight got in +06/03/2018,Comedians,@WhitneyCummings,@Shteyngart I’m opening a competitor across the street called Beauty and the Yeast +06/03/2018,Comedians,@WhitneyCummings,@NikkiGlaser It’s the end of us +06/03/2018,Comedians,@WhitneyCummings,I have a feeling “active now” on instagram is going to ruin a couple relationships +06/03/2018,Comedians,@WhitneyCummings,What happened to stores having things? https://t.co/Oc8t6jqAIG +06/03/2018,Comedians,@WhitneyCummings,@msmashaarielle @BNBuzz @amazonprimenow Sorry! +06/02/2018,Comedians,@WhitneyCummings,This is the only way I can get through the Handmaids Tale without a complete emotional meltdown https://t.co/XsqJtfMdMI +06/02/2018,Comedians,@WhitneyCummings,I really feel like I cracked Instagram Live. https://t.co/kiX77y9yo1 +06/02/2018,Comedians,@WhitneyCummings,Why does throwing phones at walls feel so good? +06/01/2018,Comedians,@WhitneyCummings,RT @lcmoser: The thing that’s most fascinating about Samantha Bee is that 4600 people died in Puerto Rico. +06/01/2018,Comedians,@WhitneyCummings,@SebastianComedy This is off brand to say the least +05/31/2018,Comedians,@WhitneyCummings,@lizastrof Lol +05/30/2018,Comedians,@WhitneyCummings,"RT @Dictionarycom: The name Ambien is thought to come from the word ""ambient"" or similar words in French. Ambient does not mean ""prone to m…" +05/29/2018,Comedians,@WhitneyCummings,I love you Sara. https://t.co/77tHCzb29H +05/29/2018,Comedians,@WhitneyCummings,@MsDafneRuiz Yes! I love this! +05/28/2018,Comedians,@WhitneyCummings,thank you to everyone Tweeting me that they are watching The Female Brain today! Weird way to celebrate Memorial da… https://t.co/1lUCIv5kfm +05/28/2018,Comedians,@WhitneyCummings,I don’t program names into my phone because I like the thrill of getting texts like “I miss you” from some random number +05/28/2018,Comedians,@WhitneyCummings,Be nice to yourself! Being mean to yourself is so 90s. https://t.co/hVs83QTLe3 +05/26/2018,Comedians,@WhitneyCummings,@mke2112 Genius +05/26/2018,Comedians,@WhitneyCummings,AND he misspells my name?! https://t.co/6WoqSE8Zyv +05/26/2018,Comedians,@WhitneyCummings,🔥first date shirt https://t.co/AQQkoDsUzz +05/26/2018,Comedians,@WhitneyCummings,This is the greatest compliment I could ever get. https://t.co/XrrlDDG7uV +05/25/2018,Comedians,@WhitneyCummings,I just voted by mail and it’s very very easy so there is no excuse not to vote my lovers. Democracy is sexy 😛 https://t.co/7OGVAjv2mx +05/25/2018,Comedians,@WhitneyCummings,"OXNARD, CA. next weekend i'll be working on my new hour in your great city. also where is OXNARD? https://t.co/sKi0jaPbSU" +05/24/2018,Comedians,@WhitneyCummings,New Handmaids Tale! @maxminghella you did this! https://t.co/NehuRSCtB0 +05/23/2018,Comedians,@WhitneyCummings,I’m working on my new hour of stand up in NYC in July thank the good lord https://t.co/QNmhZrOr1M https://t.co/Ms3Xfb8YIE +05/23/2018,Comedians,@WhitneyCummings,If you had told me that the little toddlerl who I loved on Full House when I was ten would be charging me 200 dolla… https://t.co/rJpZkW1D2O +05/22/2018,Comedians,@WhitneyCummings,👋 https://t.co/7PW88A2PGL +05/20/2018,Comedians,@WhitneyCummings,@err_bear8 I LOVE YOU! what an honor to meet you. +05/19/2018,Comedians,@WhitneyCummings,Pre show ritual: hurt myself. https://t.co/ufLGKCHuHy +05/19/2018,Comedians,@WhitneyCummings,@nealbrennan You can’t be stopped! +05/18/2018,Comedians,@WhitneyCummings,A map of the shootings since Sandy Hook. Stay angry. https://t.co/3seFnV82IZ +05/18/2018,Comedians,@WhitneyCummings,"If you’re going to troll me about my feet, please just do me a favor and unfollow me. My feet are a size ten and ha… https://t.co/H3ZglndZm4" +05/17/2018,Comedians,@WhitneyCummings,I was just given this fruit plate. Is this sexual harassment? https://t.co/dgOfepECfL +05/17/2018,Comedians,@WhitneyCummings,@bluechuck49 To attack women’s biology and decision to have kids are not is not a left v right issue-it’s a human i… https://t.co/c93mrheBPn +05/17/2018,Comedians,@WhitneyCummings,@err_bear8 Come up after the show! +05/17/2018,Comedians,@WhitneyCummings,@doctorcherokee She apologized for that. focus on the other 30 years of her career as well. If people don’t want to… https://t.co/cYwD4QKn7H +05/17/2018,Comedians,@WhitneyCummings,@JoshRadnor @benleemusic @Qantas It’s so fancy! +05/17/2018,Comedians,@WhitneyCummings,@MelissaMermaid @RoseanneOnABC I was the liberal voice on the show +05/16/2018,Comedians,@WhitneyCummings,Regarding Laurel and Yanny: I hear the dress is blue +05/16/2018,Comedians,@WhitneyCummings,@johndfountain @PBImprov Yay +05/16/2018,Comedians,@WhitneyCummings,Be careful how fun you come off on instagram—you’re really setting yourself up for being underwhelming in person 👍🏼 +05/15/2018,Comedians,@WhitneyCummings,@kevingchristy Nightmare +05/15/2018,Comedians,@WhitneyCummings,I will sign books if y’all bring them to shows. See what cities I’m coming to on my website obvs. Who is coming to… https://t.co/YeOPTYcnhq +05/15/2018,Comedians,@WhitneyCummings,If you get this joke I love you. https://t.co/QEiaS7QI72 +05/14/2018,Comedians,@WhitneyCummings,@betsy7b golden goose +05/13/2018,Comedians,@WhitneyCummings,I can’t wait for the day that my kid wishes me a happy Mother’s Day via text after I spent tens of thousands of dollars on their education. +05/13/2018,Comedians,@WhitneyCummings,It’s nice to see so many of my friends posting how much they love their mom when all they do with me is complain about her 👍🏼 +05/11/2018,Comedians,@WhitneyCummings,"@MsJuneDiane I just spent some time on that guys Twitter page. His bio is just ""Seriously?!"" So. You won that round." +05/11/2018,Comedians,@WhitneyCummings,"Feminism just means women want suuuuper basic things like respect, safety, and to earn the same as men for the same… https://t.co/fktWqX7jd2" +05/11/2018,Comedians,@WhitneyCummings,"Fans freaking out that their show gets cancelled, but won’t watch the show when it airs, which is what makes it cancelled 🙄" +05/10/2018,Comedians,@WhitneyCummings,You can’t fart on a plane and have bad breath. You gotta pick one. +05/09/2018,Comedians,@WhitneyCummings,I feel like we are gonna reach a point where you text someone “how are you?” and they’ll just respond “link in bio” +05/09/2018,Comedians,@WhitneyCummings,Whenever people on twitter troll comedians I just want to yell at them “they’re giving you jokes for free!” What ot… https://t.co/e2FFEk0PHa +05/09/2018,Comedians,@WhitneyCummings,@nealbrennan God damn it now i have to go read whatever that is +05/09/2018,Comedians,@WhitneyCummings,@Mychasiw The late shows yes! +05/09/2018,Comedians,@WhitneyCummings,@FeldyNBCS you should be on list +05/09/2018,Comedians,@WhitneyCummings,@deandelray @CobbsComedyClub DUDE THANK YOU! I'LL BE WITH THE ONE AND ONLY @kevingchristy +05/09/2018,Comedians,@WhitneyCummings,"Let's stop eating palm oil? +https://t.co/cZcQ1eiyU5" +05/09/2018,Comedians,@WhitneyCummings,@FeldyNBCS Is it sold out? I’ll put your name on the list +05/09/2018,Comedians,@WhitneyCummings,@sirgregmoore iTunes! +05/09/2018,Comedians,@WhitneyCummings,Twitter making me angry about politics makes me miss the good ole days when twitter made me angry about people post… https://t.co/Gh2oUrlElw +05/08/2018,Comedians,@WhitneyCummings,Arizona. I’ll be running new material in your hot as hell state this summer. Tix avail now if you’re into comedy in… https://t.co/ogTp4xD2a4 +05/08/2018,Comedians,@WhitneyCummings,@fadedcalic0jack What! +05/08/2018,Comedians,@WhitneyCummings,"To the guy who just tweeted at me “I’m so sick of feminism.” Copy that, but think of feminism as women trying to ma… https://t.co/QVHxbreHEe" +05/07/2018,Comedians,@WhitneyCummings,Melania’s campaign for kids is called “Be Best.” Does she mean “Be THE Best?” Or is she just approaching grammar th… https://t.co/VtPYoF2Uhz +05/07/2018,Comedians,@WhitneyCummings,@shannonrwatts @Alyssa_Milano @NRA Sickening. +05/06/2018,Comedians,@WhitneyCummings,Trumps catch phrase used to be “you’re fired!” Now it’s “please don’t quit” +05/06/2018,Comedians,@WhitneyCummings,Anyone else feeling weirdly cat called by Instagram filters recently? https://t.co/5BixWbPqaf +05/05/2018,Comedians,@WhitneyCummings,"San Fran shows are next weekend! Let’s LOL, shall we? https://t.co/1pCBnHZHlO" +05/05/2018,Comedians,@WhitneyCummings,@kevingchristy You two got a lot of posts out of this face time sesh-congrats! +05/05/2018,Comedians,@WhitneyCummings,@Khushbu_Juneja What is the delay?! Let me know I you have a problem and I’ll send you one - dm your address +05/05/2018,Comedians,@WhitneyCummings,"I finished it in about 3,700 sittings🙋🏻‍♀️ https://t.co/UjbRBcJIud" +05/05/2018,Comedians,@WhitneyCummings,@DJWOLFD reming me closer to the date +05/05/2018,Comedians,@WhitneyCummings,@nealbrennan wasn't the pint that the audience is kind of the reviewer? +05/05/2018,Comedians,@WhitneyCummings,Is anyone else having insta accounts in their feed that you never chose to follow? There’s no way I followed this m… https://t.co/R04UjixshX +05/05/2018,Comedians,@WhitneyCummings,"The Kentucky Derby is terrible. This is a day that always hurts my heart. +https://t.co/gPYM0aoc85" +05/05/2018,Comedians,@WhitneyCummings,"I know everyone is upset DJ Khaled won’t go down on his wife, but i feel like that isn’t close to the biggest disap… https://t.co/s8cbePiCq0" +05/04/2018,Comedians,@WhitneyCummings,@tonya_nance thank u +05/04/2018,Comedians,@WhitneyCummings,@juliebeann_ grinberg method +05/04/2018,Comedians,@WhitneyCummings,"To the guy who was texting for most of the Bruce Springsteen Broadway show and ruined it for many people, including… https://t.co/yjsXzPHq7q" +05/04/2018,Comedians,@WhitneyCummings,@KateUpton @RuPaulsDragRace I am jealous +05/04/2018,Comedians,@WhitneyCummings,@brizmullen Yay! +05/03/2018,Comedians,@WhitneyCummings,@nealbrennan I’m dying to know why you thought of this +05/02/2018,Comedians,@WhitneyCummings,Why does Trumps doctor look like guy who puts up tents at Lollapalooza https://t.co/auc42vy1u2 +05/02/2018,Comedians,@WhitneyCummings,"I feel like the best way to get even with Kanye is to say “sit down, be humble.”" +05/02/2018,Comedians,@WhitneyCummings,"Kanye says “the world is my therapist."" No buddy, the world is why you get a therapist." +05/01/2018,Comedians,@WhitneyCummings,Kanye's meltdown is making me miss Britney's meltdown +05/01/2018,Comedians,@WhitneyCummings,"slavery wasn't a choice, but not buying Kanye's music anymore is?" +05/01/2018,Comedians,@WhitneyCummings,"I THINK this is a compliment. If you didn’t mean for it to be, thanks anyway! https://t.co/edtU4R3c2D" +05/01/2018,Comedians,@WhitneyCummings,"I realize I am a child but this was in my horoscope and it made me laugh: ""Uranus is usually explosive""" +04/30/2018,Comedians,@WhitneyCummings,"if conservatives want liberals to stop making fun of them so much, maybe stop doing so many ridiculous things that can be made fun of?" +04/30/2018,Comedians,@WhitneyCummings,"maybe if the journalists who were so offended by @michelleisawolf did their jobs as well as she did hers, people wo… https://t.co/PPGojALfkV" +04/30/2018,Comedians,@WhitneyCummings,I wish the right was half as outraged about school shootings as they are about Michelles jokes. +04/30/2018,Comedians,@WhitneyCummings,"who is coming to the San Fran shows and what should I do during the day while I'm there? +https://t.co/v93ZAWoAvR https://t.co/9tF7KxHWup" +04/30/2018,Comedians,@WhitneyCummings,"I think conservatives are so mad at Michelle Wolf because they realized that when liberals play their insult game,… https://t.co/2KzPSqKhFW" +04/30/2018,Comedians,@WhitneyCummings,It's so funny to me to picture Dennis Miller trying to write jokes about Michelle Wolf. +04/30/2018,Comedians,@WhitneyCummings,"I think conservatives are so mad at Michelle Wolf because they realized that when liberals play your insult game, w… https://t.co/srlrNl7yrQ" +04/30/2018,Comedians,@WhitneyCummings,"I know other people have mentioned this already, but in case you want to be mad at Michelle Wolf about talking abou… https://t.co/PQRVs1YInu" +04/30/2018,Comedians,@WhitneyCummings,Feminism isn't about walking on eggshells around other women that are doing silly things and giving them a free pas… https://t.co/9mHwCffvbT +04/30/2018,Comedians,@WhitneyCummings,Of course conservatives are upset about Michelle Wolf. They haven’t heard the truth in so long they forgot how rough it can be +04/29/2018,Comedians,@WhitneyCummings,Dragon Energy sounds like a shitty caffeine drink I would have paired with Popov vodka when I was 20 +04/29/2018,Comedians,@WhitneyCummings,@b_raeholla Yay! +04/29/2018,Comedians,@WhitneyCummings,I like you. https://t.co/vLQgJATDCr +04/29/2018,Comedians,@WhitneyCummings,@andrew_harmon Send me that video! +04/29/2018,Comedians,@WhitneyCummings,@andrew_harmon Hahahah amazing! +04/29/2018,Comedians,@WhitneyCummings,@karlikko @kevingchristy +04/27/2018,Comedians,@WhitneyCummings,@Cdawg224 @GregJennings YES +06/19/2018,Comedians,@iamsambee,RT @FullFrontalSamB: A quick refresher. https://t.co/vo2TT9xiz6 +05/31/2018,Comedians,@iamsambee,I would like to sincerely apologize to Ivanka Trump and to my viewers for using an expletive on my show to describe… https://t.co/bwphm63ZAb +05/26/2018,Comedians,@iamsambee,RT @AllanaHarkin: .@FullFrontalSamB has been here for 7 hours waiting for the results. EXCITED!!! #repealthe8th #irelandreferendum #ta http… +05/25/2018,Comedians,@iamsambee,RT @FullFrontalSamB: Get your official Sam/Kim peace summit coin! It's definitely going to happen. https://t.co/fPALCv9KgK +05/23/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: And a fuck ton of women who will fight you. +https://t.co/fMx95ORTT9" +05/09/2018,Comedians,@iamsambee,"@SebGorka Aw, I thought we were friends 😥 https://t.co/P4qNZj2C5M" +05/01/2018,Comedians,@iamsambee,"When my BFF @davidduchovny told me he was writing a book about a smart, funny woman living in New York City I assum… https://t.co/vButUaao5R" +04/30/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: See @michelleisawolf, this is how you tell a non-offensive joke that everyone likes. https://t.co/JCQ3ii1h7H" +04/16/2018,Comedians,@iamsambee,RT @FullFrontalSamB: TONIGHT ON HANNITY: Are the endangered rhinos at the zoo TOO horny? +04/16/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: ""Jesus is my co-counsel."" https://t.co/coYCkk9aMv" +04/10/2018,Comedians,@iamsambee,RT @FullFrontalSamB: I don’t take normal #NationalLibraryWeek photos... https://t.co/ZFvtGQ8erT +03/29/2018,Comedians,@iamsambee,RT @FullFrontalSamB: There are many ways to help Puerto Rico. Buying a t-shirt from https://t.co/Z97dKW4Amp or moving your t-shirt producti… +03/28/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Thanks! We're pleased, too! #GreatAmericanPuertoRico https://t.co/z82w59N47t" +03/28/2018,Comedians,@iamsambee,My husband @jonesinforjason is a G-D force of nature and the season finale of @DetourTBS is 🔥 Tonight at 10:30 on @TBSnetwork. +03/24/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: We’re here and we have signs, chargers and love. #marchforourlives #neveragain #WeCallBS https://t.co/QweAQ1DpUq" +03/07/2018,Comedians,@iamsambee,Tonight’s @DetourTBS is in no way inspired by my actual marriage to @jonesinforjason. I hope. 10:30/9:30c on @TBSNetwork #getsome +02/28/2018,Comedians,@iamsambee,RT @FullFrontalSamB: When you hear Hope Hicks is resigning after testifying for just 8 hours. https://t.co/8POqm0Hzag +02/26/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 🤔 https://t.co/ZNU9b7s73B +02/13/2018,Comedians,@iamsambee,"Tonight on @DetourTBS @ToddPalinUSA fights @jonesinforjason and it wasn’t because of something I said on @FullFrontalSamB! +10:30 on @tbs" +02/12/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Dear @realdonaldtrump, hate to interrupt you while you're planning your big parade, but wanted to update you on the po…" +02/12/2018,Comedians,@iamsambee,RT @FullFrontalSamB: We're shooting a special in #PuertoRico and this happened. Not sure if there are enough paper towels to fix it. #black… +01/30/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 1. Denial 2. Guilt 3. Anger 4. Depression 5. Acceptance https://t.co/CH3t5z2WAs +01/24/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: New season of #TheDetour starts TONIGHT, starring the amazing @NatalieZea and Sam’s babysitter @jonesinforjason! Tune…" +01/15/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 1) You would have called for him to be fired. 2) You wouldn't have rented an apartment to him. 3) You call the people… +01/15/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Three months ago, you walked out of an event in disgust because of a non-violent protest by black athletes. +https://t.…" +01/10/2018,Comedians,@iamsambee,Emissaries of peace @michaelsrubens @AllanaHarkin @ashleyn1cole @amy_hoggart Don’t forget to bring me back souvenirs! #apologyrace +01/10/2018,Comedians,@iamsambee,For 2 weeks we’ll go anywhere an apology is needed. Hint: it’s a lot of places #apologyrace https://t.co/JURMM961Cz +12/15/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Hey @PressSec were so excited about you and @AprilDRyan's pie conversation we wanted to share our favorite recipe! htt… +12/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Office cake is how we self care. Thanks @SenGillibrand! https://t.co/EoELAltzvk +12/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: May this tweet be @SenGillibrand's superhero origin story and ignite her 2020 campaign to replace your sexist ass. 🙏 h… +12/01/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Oh we are saying Merry Christmas now! https://t.co/JMS02GU16N +11/30/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We know. https://t.co/DG0qQxmp55 +11/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Our friend @JakeTapper is hosting an auction for the troops! Lots of pretty good items and one just absolutely excepti… +10/12/2017,Comedians,@iamsambee,RT @AllanaHarkin: Lit. @FullFrontalSamB https://t.co/lR7Q0iVe3r +10/08/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: “...And also because the cheerleaders made me feel wrong in my bathing suit area.” +https://t.co/ck1iAJ2amT" +10/03/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Republicans: Kneeling for the National Anthem is offensive. +Trump: What if I throw paper towels at hurricane survivor…" +09/29/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Safe travels, Secretary Price! +https://t.co/z2BIkKByo5" +09/29/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We've got to get #BigWater out of politics. https://t.co/rk7KKZoO97 +09/29/2017,Comedians,@iamsambee,@StephenAtHome @nickkroll This photo brought to you by Sun-In ™ and my grandma’s Liz Claiborne separates. #PuberMe… https://t.co/GxJPSL1VFv +09/27/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Lock her up. +https://t.co/MRMah4ibyt" +09/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Trump to Puerto Rico: See you next Tuesday https://t.co/pc7dLNbw4R +09/25/2017,Comedians,@iamsambee,"Everybody watch @TheOpposition tonight at 11:30 on Comedy Central, featuring my Mortal Enemy @jordanklepper" +09/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Just making sure we’ve got this straight. https://t.co/2Xs9eUQJMs +09/24/2017,Comedians,@iamsambee,"RT @BlitznBeans: * New Freedom of Speech Hours: + +Monday - Friday: 7pm - 7am + +Saturday and Sunday - CLOSED FOR GOLF + +(*does not apply to naz…" +09/22/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Wondering how you can help the people of Mexico and Puerto Rico? We were too, so we did some research. +https://t.co/YT…" +09/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We sent @AllanaHarkin and @MichaelsRubens to Netroots to find hope for 2018 and/or lean in to our misery. Produced by… +09/14/2017,Comedians,@iamsambee,RT @FullFrontalSamB: BREAKING: @missbreton's “Who Is Paying For The Wall” list has been updated. Please make a note. https://t.co/78mYaPtVvm +09/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Please stop circulating this image. It has been reported to Twitter and support has been contacted. https://t.co/nLuz4… +09/09/2017,Comedians,@iamsambee,@Travon AAAAAAHHHHH I LOVE IT! +09/06/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Savage @POTUS subtweet from @FLOTUS. https://t.co/rFSbC0G950 +08/18/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Leaving to spend more time with his pets. https://t.co/ClfrJXte8b +08/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Punching Nazis doesn't help. But you can put that energy somewhere that does. Feels just as good, we swear. +https://t.…" +08/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meet the Iraqi women who are queens of the land, bosses of alllll the shit, and whose fearlessness inspired us. Produc…" +08/04/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We went to the one place where Trump is universally beloved: Iraq. Produced by @RazanGhalayini_ #SamanthaBee https://… +08/03/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Sam went all the way to Iraq and met a Bernie Bro. Tune in tonight at 10:30/9:30c on TBS for more surprises from her t… +07/31/2017,Comedians,@iamsambee,RT @JMunozActor: Something's brewing....@FullFrontalSamB https://t.co/hobEzqVBY0 +07/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: .@Scaramucci, you forgot to delete this one. +https://t.co/w6ZWv57MeP" +07/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: After consultation with our staff, here is our current statement regarding @POTUS's transgender service tweets. ""FUCK…" +07/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meanwhile, at Full Frontal... https://t.co/qyDYmfM831" +07/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: “Sean Spicer crawled to freedom through five hundred yards of shit smelling foulness I can’t even imagine…” https://t.… +07/17/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Congratulations on Doctor Who, ladies, but stay vigilant. We’ve got a lot more work to do. https://t.co/eWALnfoJ8o" +07/16/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Hey @Delta, heard you ruined some poor woman's life. #MoreLegroomForNanCoulson +https://t.co/1NxkVeSFhD" +07/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Congrats, Beyoncé! Three gorgeous babies! 🙏🏽❤️👨🏽👩🏽👧🏽👶🏾👶🏾👨🏼 https://t.co/7EUiwwa1BP" +07/14/2017,Comedians,@iamsambee,I'll be chatting with my good friend @katiecouric on July 22nd LIVE in Central Park at #OZYFEST - get your tickets… https://t.co/QmcsnGk3QS +07/13/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Best day at work ever! Thanks to our team, our fans, and all the #NastyWomen and Thundercunts, wherever you are. #Emmy…" +06/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: No @PressSec at this White House briefing?? What are we supposed to do with this puppet then? https://t.co/85XwbMRd9n +06/20/2017,Comedians,@iamsambee,@AllanaHarkin @ashleyn1cole @michaelsrubens too late +06/20/2017,Comedians,@iamsambee,People you should definitely know--the BEST people @AllanaHarkin @ashleyn1cole @michaelsrubens https://t.co/5b5RcxpR8M +06/15/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: .@HannahAWright doesn’t normally reply to PR emails, but... https://t.co/0Up7rLrrvk" +06/02/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Thanks for all the new seasons, @POTUS and @ScottPruittOK! +https://t.co/7ail1hQL7i" +05/31/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Oh, hi @SenFranken! (Psst, new show tonight.) https://t.co/T1ygH2M4g2" +05/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""They may even call you a nasty woman."" Yasssss, @HillaryClinton. https://t.co/AFLBGeNGZs" +05/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Gianforte Campaign Statement (First Draft) https://t.co/f8pHrc7GBk +05/24/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""Can you please not post this on any social media? I don’t want my boss seeing.” - Pope Francis https://t.co/o4IKtD16Oj" +05/12/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: If you enjoyed the #NotTheWHCD, it’s because of @kevermantweets and @KimmieDisco. Show them some love! https://t.co/5R…" +05/12/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Florida: the surf, the sun, the sand, the fight for basic voting rights! #SamanthaBee https://t.co/KiaRBKhBI7" +05/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Tonight, we’re discussing Ivanka’s book. If you haven’t read it yet, don’t worry, we made you a guide. + +Download: http…" +04/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Trump’s almost 100 days in. Only @GeorgeTakei can express what we’re feeling. #NotTheWHCD https://t.co/6Og8a2F8Bx +04/24/2017,Comedians,@iamsambee,RT @FullFrontalSamB: When everyone has something to do on Saturday night but you. #NotTheWHCD https://t.co/7QvD1mNBHR +04/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: If you had a big bowl of chili for lunch and your memory’s a little fuzzy, here’s your friendly reminder that #NotTheW…" +04/21/2017,Comedians,@iamsambee,"My backstage ritual is ""looming over the tech crew."" #IWCTFF @Tribeca @IWC https://t.co/t64zXU5Kys" +04/19/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Resigning is a very funny response to being told to “Do your job.” https://t.co/9SBJTT3cDS +04/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Georgia! Don’t forget tomorrow’s special election. It’s either take one hour and vote or go to a town hall every week… +04/13/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: How Sean Spicer Should Quit: +9 Blaze-Of-Glory Ideas (That Have Nothing To Do With Hitler) https://t.co/uJmjSZmPpZ" +03/31/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: This conclusion to our original Rape Kits story was so good, we had to go full School House Rock on it. #SamanthaBee h…" +03/31/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Because nothing else has worked. https://t.co/VCyHZ7hKli +03/29/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@POTUS Fixed this tweet. https://t.co/vYvoufUr4B +03/27/2017,Comedians,@iamsambee,RT @AllanaHarkin: Happy #worldtheatreday @wecomefromaway! Long may your big jib draw! @iamsambee and I loved the show. photo: @mcoppola5/@G… +03/24/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Bye, Bill. #AHCA https://t.co/GGfVOpVob7" +03/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Delaying the health care vote today to try to figure out what a woman is. https://t.co/ezu5p4r40A +03/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Local journalism is failing and we need to save it! But what's in it for us? #SamanthaBee https://t.co/6iiejmZlZs +03/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: One of our staffers has been keeping an actual log of who's paying for Trump's wall. https://t.co/P1C6xW41vd +03/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@RachelFeltman We connected the whales. https://t.co/baZ6EVnt35 +03/15/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Sorry you're having trouble finding a new job, @PatMcCroryNC. Here, we wanted to help! https://t.co/jSSfugIHwN" +03/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Getting ready to spin those CBO numbers like... https://t.co/5FCN9dmlN5 +03/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: A new cornerstone of the conservative platform: media whiplash for all Americans! #SamanthaBee https://t.co/3IxtbPyRvp +03/09/2017,Comedians,@iamsambee,@meg_kelly16 We deeply apologize for offending you and @_that_kyle. We only learned of his condition today & have removed him from the piece +03/08/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: The Trump WH is so feminist, EVERY day is Day Without a Woman. https://t.co/rYZeYo04kn" +03/08/2017,Comedians,@iamsambee,Get some of #TheDetour TONIGHT at 10/9c. Watch in wonder as comedy BEAST @nataliezea shows us all how it's done. +02/28/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Fav if you're planning to shotgun Maalox through the whole thing. +https://t.co/NlSq6IfqBh" +02/28/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@VP Pence unveils his plan to be more likable than @JoeBiden in tonight's #JointSession. https://t.co/5T0UesGsyC http… +02/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@realDonaldTrump 🐔 +02/22/2017,Comedians,@iamsambee,"Climbing out of my panic bunker tonight to watch #TheDetour 2-ep season premiere at 10/9c on @TBSNetwork! +(Commercial free because eff it)" +02/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: We're on hiatus this week, but check out our Russia playlist on youtube! No reason in particular. https://t.co/9KQScaB…" +02/20/2017,Comedians,@iamsambee,"Doing a Q&A for #TheDetour @PaleyCenter Feb 21 at 6:30pm w/ @jonesinforjason & @nataliezea +(Like an ACA town hall but with *more* yelling)" +02/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@ScottPruittOK Congrats on your confirmation. They'll probably tell you this at orientation but just in case: climate… +02/17/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Did you know that handsome people can be bad, too? We've got just the Paul Ryan to prove it. https://t.co/wJGMMi1Bws" +02/16/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Watching this @POTUS presser. https://t.co/95Q9UOo5QJ +02/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Happy Valentine's Day, @POTUS! https://t.co/99dcuRbn2A" +02/14/2017,Comedians,@iamsambee,".@LindseyGrahamSC heyyyy, call me! https://t.co/VJ02WPijRo" +02/14/2017,Comedians,@iamsambee,RT @paleycenter: Hey NY! Come see @jonesinforjason @iamsambee & @nataliezea at the @DetourTBS premiere on 2/21! #TheDetour Tix: https://t.c… +02/14/2017,Comedians,@iamsambee,".@LindseyGrahamSC I have important info you need to hear! It's that I like you & think we should chat on the phone. (I'm serious, DM me)" +02/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Sending Trudeau to stand attractively next to Trump while speaking French is actually the closest thing Canada has to… +02/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: President Snowflake is feeling very unsafe in places where people are treated like people. #SamanthaBee https://t.co/P… +02/08/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We premiered one year ago today! Right before Sam was raptured into the current timeline. Working on a way to get back… +02/02/2017,Comedians,@iamsambee,@FullFrontalSamB All in on the #MuslimBan tonight. ALL THE FUCK IN. 10:30 on @TBSNetwork +02/01/2017,Comedians,@iamsambee,RT @FullFrontalSamB: LEAKED: The White House’s #BlackHistoryMonth Program Of Events https://t.co/qpQTeA9bg6 +01/29/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""You don't get to be the shining city on the hill by cowering in fear & putting your head in the sand..."" @philklay +h…" +01/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Are we done giving Trump a chance now? https://t.co/UpPBF2TAWT +01/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: A bunch of girls hurt Trump's feelings. #SamanthaBee https://t.co/1M3tKqUAXB +01/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We're still bringing you the hard-hitting reporting you've come to expect from a satire show. Tune in TONIGHT at 10:30… +01/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: National Park Service Temporarily Ordered To Stop Tweeting: Reactions From Wildlife https://t.co/iEfPHxW3Ry +01/22/2017,Comedians,@iamsambee,"RT @DetourTBS: Want to see what it's like to be stuck in a van with these guys for days on end? + +Binge Season 1 NOW, only on @Hulu: https:/…" +01/22/2017,Comedians,@iamsambee,RT @AllanaHarkin: @FullFrontalSamB represent! #WomensMarch https://t.co/PTPNVThkDE +01/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We're giving away 1000 Feminist shirts at the bus this morning. Come find us! #WomensMarchWashington https://t.co/fgsd… +01/20/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Noticed you had to use an old Obama inauguration photo for your banner, so we fixed it for you. https://t.co/qTkPCuGUY9" +01/20/2017,Comedians,@iamsambee,RT @FullFrontalSamB: You can watch this as many times as you need to get through today. https://t.co/rkv4Gi3DbT +01/20/2017,Comedians,@iamsambee,"How I'm feeling. +https://t.co/7RvJmbDzca via @youtube" +01/19/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Even if the sky rains blood in D.C. on Saturday it will be more fun than this. #TrumpInauguration +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Is it just us or does that ""USA"" firework look suspiciously like ""USR?"" #TrumpInauguration https://t.co/4zktBfYArv" +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: We love @MashaGessen for so many things, but chief among them is her calming way of reminding us we're fucked. #Samant…" +01/19/2017,Comedians,@iamsambee,RT @MarkForwardd: How great would it be if the Lincoln statue got up and left. #Inauguration +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meet Secretary of the Treasury and Swamp King, Steve Mnuchin. #SamanthaBee https://t.co/QulK72pr46" +01/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Good luck to Giuliani on his new cyber security role! #RudyGiuliani https://t.co/N7jBkQ1mLr +01/11/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Quote of the day: ""I've never walked into an office where so many people are screaming at their TVs."" - Breakfast cate…" +01/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Trump's Movie Blurbs +https://t.co/qblj0CYBh3" +12/16/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We hired the nation's top linguists to translate what Putin's dog was saying to Japanese journalists. https://t.co/AGx… +11/27/2016,Comedians,@iamsambee,Looking down the barrel of the next four years like https://t.co/BKlxXRHXlr +11/14/2016,Comedians,@iamsambee,We are all Lesley Stahl. https://t.co/fDgQMEdJRk +11/10/2016,Comedians,@iamsambee,"So proud to present tonight's post election @FullFrontalSamB. Watch to the end, it's worth it I promise." +11/08/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Full Frontal's official endorsement of the baddest bitch ever to run for president. #SamanthaBee https://t.co/4GAp3ca1… +11/02/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Trump says Russia isn't influencing our election, and so do these Russian trolls who are being paid to influence our e…" +11/01/2016,Comedians,@iamsambee,RT @katiecouric: Did you catch @FullFrontalSamB last night? @iamsambee joined #CouricPodcast & had even more insight on #Election2016 https… +11/01/2016,Comedians,@iamsambee,RT @FullFrontalSamB: It's not a conspiracy theory if it's true. #TrumpCantRead #SamanthaBee https://t.co/RShLm5Za2B +11/01/2016,Comedians,@iamsambee,"New @FullFrontalSamB starts now! I went to Russia and everything, just for you." +11/01/2016,Comedians,@iamsambee,RT @TheMattWilstein: All I've got to say is watch @FullFrontalSamB's Facebook Live broadcast at 9:30pm tonight: https://t.co/LRsr6QTabR #Tr… +10/21/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: The Clinton Campaign Can Chill With The Emails +https://t.co/O2deh7gP8T" +10/21/2016,Comedians,@iamsambee,RT @FullFrontalSamB: This came straight from our private fax line with Julian Assange. Information has not been authenticated. https://t.co… +10/19/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: And now, an extra special Real or Fake with two GOP women whose votes Donald Trump did not manage to grab by the pussy…" +10/19/2016,Comedians,@iamsambee,RT @AllanaHarkin: My #debate drinking game for tonight is to do a shot every time Trump says something factual because I need to feel refre… +10/10/2016,Comedians,@iamsambee,Post debate mood https://t.co/tn7pP9Wzjn +10/06/2016,Comedians,@iamsambee,New @FullFrontalSamB tonight at 10:30 on @TBSNetwork! Prepare thyself +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@GOP finally figured out how to set their time machine to the future. https://t.co/2W5nUK9cLB +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@GOP has got to do better at the cyber. #VPDebate https://t.co/2MfrdAeQZ8 +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Let us allow Pence to reintroduce himself. #VPdebate #VPdebate2016 https://t.co/ifMBqDJaCp +09/29/2016,Comedians,@iamsambee,RT @AllanaHarkin: Well hi there Wednesday! TONIGHT at 10:30pm on @TBSNetwork @iamsambee brings you her @FullFrontalSamB oh so special debat… +09/28/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We fact-checked and Full Frontal's Debate Special is in fact on tonight at 10:30! #SamanthaBee +09/27/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We found the epicenter of an upsetting new hearing loss epidemic. https://t.co/3OjCyIboJL +09/21/2016,Comedians,@iamsambee,Workin' hard on next Wednesday's show! https://t.co/5hwsFv2yzx +09/20/2016,Comedians,@iamsambee,@iamTannenbaum @DonaldJTrumpJr Oh. The tweet that broke my heart... +09/15/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We got an exclusive first look at Trump’s medical records. https://t.co/muLWfudwrC +09/13/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Look who got kicked out of the TN house. Don’t let the bathroom door hit you on the way out. https://t.co/ZxCOjm3qhW +09/13/2016,Comedians,@iamsambee,.@DrJillStein @HillaryClinton https://t.co/1Ci7hsfcKf +09/12/2016,Comedians,@iamsambee,"Quivering with excitement to get back on the air tomorrow. QUIVERING. +New episode of @FullFrontalSamB Monday at 10:30." +09/07/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Donald Trump saw ""Letters to Hillary"" on Tumblr. This is his response. https://t.co/H2JPubIghb https://t.co/shNSViGhwf" +08/01/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Our staff, chasing celebrities as always! https://t.co/79kPKCrxQl" +07/29/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@realDonaldTrump Congrats! https://t.co/eLATz0FgNA +07/27/2016,Comedians,@iamsambee,RT @FullFrontalSamB: What could the Congressional Women's Caucus do to achieve greater hotness? #TrumpAMA +07/27/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: We couldn’t get into the #TrumpAMA, so here are some of the questions we wished we could have asked. Feel free to shar…" +07/27/2016,Comedians,@iamsambee,@asvokos @CoryBooker we know how to play this game +07/26/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Hello from the first night of #DemsInPhilly, or should we say Здравствуйте to our Russian friends reading this. +https:…" +07/26/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Congrats to Hillary on selecting Tim Kaine as Joe Biden! +https://t.co/F4jd3clMad" +07/26/2016,Comedians,@iamsambee,"Tonight's @FullFrontalSamB: feast your eyes on @AllanaHarkin @ashleyn1cole and @yrnameer, doing the lord's work on the floor of the RNC" +07/21/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Final night of #RNCinCLE! Looks like they’re bringing it home with a bang! https://t.co/gzkxFaZMyL +07/20/2016,Comedians,@iamsambee,Le gasp! https://t.co/Tc064I4dnB +07/19/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We got our hands on the speaker schedule for tonight at the #RNCinCLE. https://t.co/Xoqv3yzMKt +07/15/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Breaking the mattress of America. https://t.co/M4Cq62YS2c +07/13/2016,Comedians,@iamsambee,RT @tonygoldwyn: Thx @iamsambee for letting me into the sandbox. Chk out a special @FullFrontalSamB next Wed at 10:30 on @TBSNetwork https:… +06/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We conclude with an act of kindness and compassion more powerful than any high-capacity assault rifle. #SamanthaBee ht… +06/21/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: How weird. I sent my thoughts and prayers to the gun control bills today, and they failed. Guess that shit doesn't rea…" +06/09/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Other Female Firsts Covered Like Hillary’s Historic Nomination https://t.co/qzQxnplwp9 https://t.co/W6MlroPhui +05/26/2016,Comedians,@iamsambee,"RT @iTunesTV: Created by @iamsambee & Jason Jones, @DetourTBS is our hilarious #EditorsChoice. +https://t.co/XaIRy4lVZr https://t.co/wDX9fjQ…" +05/25/2016,Comedians,@iamsambee,"Extraordinary human being @AllanaHarkin makes a whole bunch of new friends on @FullFrontalSamB #letfreedomblow +https://t.co/gEqMBylvP8" +05/24/2016,Comedians,@iamsambee,ICYMI let the full episode of last night's @FullFrontalSamB wrap you in its warm embrace https://t.co/7v8vACpYvE +05/24/2016,Comedians,@iamsambee,@BrokenFiction YES +05/24/2016,Comedians,@iamsambee,I'm doing great thanks for asking https://t.co/f93MAcdAIg +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Our show got bumped to after Conan on the East Coast. It's fine. She's coping. https://t.co/xlMOKvwIS3 +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: It wasn’t us. https://t.co/C7ulRjf6BU +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We will hunt down those responsible. #SamanthaBee https://t.co/QzzP0ihsuv +05/24/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: East Coast, our new episode is on after Conan. Trump tried to stop us from airing but his little hands were no match f…" +05/16/2016,Comedians,@iamsambee,@amyschumer I made you something! https://t.co/9Ju5awhDiR +05/09/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Full Frontal airs tonight at 10/9c AND 10:30/9:30c this week only! Set your eye clocks accordingly! #SamanthaBee https… +05/06/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: The Canadian Red Cross has a page to help evacuees from the terrible #FortMcMurray wildfire. RT, donate if you can: ht…" +05/03/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Make Your Own Lyin' Ted! We provide the Ted, YOU provide the background: https://t.co/QpSvLUJVvt #WhereIsLyinTed https…" +05/03/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Pic from morning press conference in Indiana. Can't for the life of me figure out what's on the sign behind Carly. htt… +04/19/2016,Comedians,@iamsambee,Local satirist earnestly performs civic duty #NYPrimary https://t.co/bGzN4trjyQ +04/12/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Yachts, mansions, diapers—just some of the luxury lifestyle goods out of reach for low-income parents. #SamanthaBee +ht…" +04/04/2016,Comedians,@iamsambee,"The Detour sneak preview tonight @tbs featuring @jonesinforjason and his (preferred) second wife @nataliezea! +https://t.co/mLSyPGKl2Y" +03/16/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Ladies, it's very important that you #SmileForJoe. +https://t.co/hy6CBbLwdY https://t.co/Z8asKguNdv" +03/09/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Behavioral Difficulties +Please Stand By +#GOPDebate https://t.co/o11BDgQ6WN" +07/01/2018,Comedians,@chelseaperetti,"RT @tedlieu: Dear @SecNielsen: You need to resign not just because you brazenly lied to the American people, but also because you are gross…" +07/01/2018,Comedians,@chelseaperetti,RT @RAICESTEXAS: Remember this: Children with representation are 5 times more likely to be successful in their case than children who go to… +06/30/2018,Comedians,@chelseaperetti,#FamiliesBelongTogether +06/30/2018,Comedians,@chelseaperetti,RT @lsarsour: NYC always shows up and shows out ♥️✊🏽♥️ #FamilesBelongTogetherMarch https://t.co/HzlZ5b4ChT +06/30/2018,Comedians,@chelseaperetti,@GovMikeHuckabee I bet you said this to someone in your family and they laughed so you got super excited to post it… https://t.co/2U09R8goj8 +06/30/2018,Comedians,@chelseaperetti,RT @tedlieu: House Republicans held an emergency hearing into the investigation of Hillary's emails. They did not hold a hearing on the tho… +06/30/2018,Comedians,@chelseaperetti,RT @fvmero: me commenting on @chelseaperetti’s Instagram photos like we’re friends https://t.co/VwdAWlSqRL +06/30/2018,Comedians,@chelseaperetti,@natica24 the audacity of nope +06/30/2018,Comedians,@chelseaperetti,"RT @TheAlanvargas: We deserve to be safe at school. +We deserve to listened to by our elected officials. +We deserve to be safe at a concert.…" +06/30/2018,Comedians,@chelseaperetti,Perfect photo of two asswipes https://t.co/S3mEYVJ9li +06/30/2018,Comedians,@chelseaperetti,RT @AyeshaASiddiqi: Simi Valley California https://t.co/SCcpAFjxSu +06/30/2018,Comedians,@chelseaperetti,"RT @AndyRichter: From Wikipedia: ""A curb stomp... is a form of assault in which a victim's mouth is forcefully placed on a curb and then st…" +06/30/2018,Comedians,@chelseaperetti,RT @abogada_laura: An attorney for ICE used info taken from their database and files to open lines of credit and get loans under the names… +06/30/2018,Comedians,@chelseaperetti,RT @missmayn: If I can’t go to Planned Parenthood for a routine pap smear without being screamed at and harassed by Christian protestors th… +06/30/2018,Comedians,@chelseaperetti,RT @lsarsour: Urgent - we need to find 160 Spanish speaking attorneys to go to the border ASAP. If you can go and/or if you have a network… +06/29/2018,Comedians,@chelseaperetti,@thepubhistorian @Brooklyn99FOX hi cutie! +06/29/2018,Comedians,@chelseaperetti,@WeaselShop @laurachese 😒nightmare for your students +06/29/2018,Comedians,@chelseaperetti,@maggiehutch14 @Taniel lol +06/29/2018,Comedians,@chelseaperetti,@bjaeger11 @SpeakerRyan lol +06/28/2018,Comedians,@chelseaperetti,RT @Alyssa_Milano: TRUMP SHOULD NOT BE ABLE TO CHOOSE A LIFETIME APPOINTEE WHILE HE IS UNDER FEDERAL INVESTIGATION. FULL STOP. +06/28/2018,Comedians,@chelseaperetti,@daxshepard MME +06/28/2018,Comedians,@chelseaperetti,@daxshepard ahhaha +06/28/2018,Comedians,@chelseaperetti,RT @aravosis: 10) So why aren’t we doing the same? +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 9) Had Pres. Hillary, at this late date, continued to take Russia’s side in the election hack, with another election on the h…" +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 8) Had Hillary done what Trump has done, the GOP would shut down Washington. They would shut down govt. They would refuse to…" +06/28/2018,Comedians,@chelseaperetti,RT @aravosis: 4) Defending the nation from foreign attack is a core requirement of the presidency. If Trump can’t even muster the patriotis… +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 3) If Trump doesn’t think Russia hacked the election, then Trump doesn’t think Russia is STILL hacking our elections. That me…" +06/28/2018,Comedians,@chelseaperetti,RT @kurteichenwald: Having been subjected to hundreds of death threats from Republicans (as have many reporters) without Republican leaders… +06/28/2018,Comedians,@chelseaperetti,"RT @Sil_Lai: ""When we speak we are afraid our words will not be heard or welcomed. But when we are silent, we are still afraid. So it is be…" +06/28/2018,Comedians,@chelseaperetti,@JuddLegum @ChelseaClinton they simply lie +06/28/2018,Comedians,@chelseaperetti,"RT @JuddLegum: On June 20, Paul Ryan promised that the House of Representatives will vote to end family separation the very next day. + +It…" +06/28/2018,Comedians,@chelseaperetti,RT @NBCNews: LIVE: Police in tactical gear have moved in as agents dismantle protesters' makeshift blockade of ICE facility in P… https://t… +06/28/2018,Comedians,@chelseaperetti,"RT @nedprice: 2018 Bolton, who said yesterday that he'd ""like to hear someone say"" it's a bad idea to meet with Putin, should be introduced…" +06/28/2018,Comedians,@chelseaperetti,"RT @Taniel: updating big board for Automatic Voter Registration: +—is law: AK, CA, DC, IL, MD, NJ, OR, RI, VT, WA, WV +—passed one legislat…" +06/28/2018,Comedians,@chelseaperetti,"RT @ChristFinnegan: Dem senators, repeat after me: + +“The President of the United States is under investigation for collusion with a foreig…" +06/28/2018,Comedians,@chelseaperetti,RT @timheidecker: Good question! @MickJagger why do you allow your songs to be used at @realDonaldTrump rallies? https://t.co/pwUsFMONDd +06/28/2018,Comedians,@chelseaperetti,had a peanut butter sundae last night +06/28/2018,Comedians,@chelseaperetti,They will go over the few remaining items on their checklist of goals https://t.co/CYWXKPIRbR +06/28/2018,Comedians,@chelseaperetti,RT @PhilipRucker: An ICE whistleblower who resigned because his administration superiors told him to lie to the public had his CBS News int… +06/28/2018,Comedians,@chelseaperetti,"RT @JStein_WaPo: I put this together yesterday, but look at @Ocasio2018's reliance on small donors vs. that of the entire NYC Congressional…" +06/28/2018,Comedians,@chelseaperetti,"RT @ewg: .@EPAScottPruitt's EPA is doing the bidding of the chemical industry by giving it the green light to continue business as usual, a…" +06/28/2018,Comedians,@chelseaperetti,"RT @PreetBharara: Regarding the SCOTUS opening, this president and his enablers have zero standing to lecture others about norms, standards…" +06/28/2018,Comedians,@chelseaperetti,RT @danpfeiffer: I feel compelled to point out yet again that the man decrying the elites is the Ivy-league educated heir to a real estate… +06/28/2018,Comedians,@chelseaperetti,RT @csdickey: We are rapidly approaching the moment when we should stop referring to the American government and start referring to the Tru… +06/28/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: Less than 48 hours ago, we launched a portal for kids legal service providers to try and find parents of separated kids. W…" +06/28/2018,Comedians,@chelseaperetti,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/28/2018,Comedians,@chelseaperetti,RT @nytimes: A Kansas City immigration lawyer said she broke her foot after being pushed to the ground by an ICE officer. She was trying to… +06/28/2018,Comedians,@chelseaperetti,https://t.co/UGBzxauRX1 +06/28/2018,Comedians,@chelseaperetti,"RT @EricBoehlert: on eve of 2016 elections, Republicans vowed NEVER to confirm ANY justices nominated by Clinton if she won." +06/28/2018,Comedians,@chelseaperetti,"RT @PoliticusSarah: ""I tell you, the Dem base is wired now for a revolt. This will be trigger for it. They shouldn’t have a mtg w any of hi…" +06/28/2018,Comedians,@chelseaperetti,@apexwinter @buzzf82 @terrycrews im sorry for your pain. glad you have been able to get counselling ❤️stay strong +06/28/2018,Comedians,@chelseaperetti,@Jilli_Beans what was he like +06/28/2018,Comedians,@chelseaperetti,@JoelMcKMiller @UMDBulldogs dirk looks different +06/28/2018,Comedians,@chelseaperetti,RT @BuzzFeedNews: Do you know a family separated at the border? We're looking for information about the children held by the US government… +06/28/2018,Comedians,@chelseaperetti,@marieclaire .....thaaaanks? +06/28/2018,Comedians,@chelseaperetti,RT @fshakir: Guatemalan migrant alleges officers mockingly said 'Happy Mother's Day' before they separated her from 8-year-old daughter htt… +06/28/2018,Comedians,@chelseaperetti,NEVER APOLOGIZE TO THESE REPUBLICANS NEVER https://t.co/rIYm9ynyk9 +06/28/2018,Comedians,@chelseaperetti,AGREE SIR THANK YOU FOR STANDING STRONG IN FAIRNESS AND CONVICTION. THE AMERICAN PEOPLE APPRECIATE YOUR ETHICAL STA… https://t.co/2T2uxlcsp0 +06/28/2018,Comedians,@chelseaperetti,cnn is trash #basura 🚮🚮🚮🚮🚽 +06/28/2018,Comedians,@chelseaperetti,RT @davidhogg111: We WILL win. We WILL live. We WILL save lives. https://t.co/oYWULXjY1Y +06/28/2018,Comedians,@chelseaperetti,RT @ChrisMurphyCT: Let’s call it like it is: the Supreme Court is turning itself into a political arm of the Republican Party. Weakening or… +06/28/2018,Comedians,@chelseaperetti,WHAT JUDGES ARE ALLOWING THIS????? LOOKING AT A TODDLER ALONE AND DELIVERING SENTENCES? ITS DEMONIC https://t.co/5kzEPhyqw0 +06/28/2018,Comedians,@chelseaperetti,THANK YOU MAXINE WATERS FOR STATING WHAT SHOULD BE OBVIOUS TO THESE PEARL-CLUTCHING THEATRICAL MANIPULATIVE HYPOCRI… https://t.co/NJICfD1z9j +06/28/2018,Comedians,@chelseaperetti,RT @kathygriffin: Fuck civility https://t.co/2U54qpnZs5 +06/28/2018,Comedians,@chelseaperetti,"RT @Taniel: one remedy against the coming SCOTUS: elect govs who'll veto abortion restrictions & gerrymanders, state lawmakers who'll expan…" +06/28/2018,Comedians,@chelseaperetti,@evanasmith @KHNews @SecondLady @FLOTUS TODDLERS. +06/28/2018,Comedians,@chelseaperetti,RT @tedlieu: Dear @SecNielsen: Resign. https://t.co/xIj540VGLZ +06/28/2018,Comedians,@chelseaperetti,"RT @kylegriffin1: VICE has obtained audio of what they say is ""a distraught Guatemalan child call[ing] his mother from a U.S. immigration s…" +06/28/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: ""Immigrant children as young as three years old are being ordered into court for their own deportation proceedings"" + +https…" +06/28/2018,Comedians,@chelseaperetti,"RT @KevinMKruse: I'm sure @SenMajLdr, being a man of firm principle and clear honor, will refuse to hold any hearings on a SCOTUS nominee u…" +06/28/2018,Comedians,@chelseaperetti,WOKE UP AN HOUR AND A HALF BEFORE MY ALARM should be a great day +06/28/2018,Comedians,@chelseaperetti,RT @VincentIntondi: No nominee should be considered until after the Mueller investigation is complete. +06/28/2018,Comedians,@chelseaperetti,"RT @melissafumero: I don’t live in a gated community, but if I did and if someone jumped over my gate because they were running for their l…" +06/28/2018,Comedians,@chelseaperetti,Gonna do an escape room solo. Think it will lift my spirits! +06/28/2018,Comedians,@chelseaperetti,@buzzf82 @terrycrews stay strong and live in your truth - you didnt deserve it and you’re not alone ❤️ +06/28/2018,Comedians,@chelseaperetti,https://t.co/CCyNojyK2t +06/28/2018,Comedians,@chelseaperetti,@robdelaney did i get a role i sent tape +06/28/2018,Comedians,@chelseaperetti,@laurenleti @JordanPeele BBRO STARTS TONITE PLS RECORD +06/28/2018,Comedians,@chelseaperetti,need it more than ever JERSEY SHORE IS CURRENTLY MY DRUG OF CHOICE 😩😢 https://t.co/LOHSyYfgy3 +06/28/2018,Comedians,@chelseaperetti,"RT @matt_cam: UPDATE: Client arrested in #EastBoston court still in #ICE custody. Fighting to get him out, but that's not what this thread…" +06/28/2018,Comedians,@chelseaperetti,RT @BlairImani: I believe in retribution. Let’s go! https://t.co/oNVWoQQCk6 +06/28/2018,Comedians,@chelseaperetti,Couple next to me (Im dining solo) at a restaurant. He went to b room for a whiiiiile. Wud it b ok to ask him “Did u shit” +06/27/2018,Comedians,@chelseaperetti,how does meditation work +06/27/2018,Comedians,@chelseaperetti,Does anyone have the initials “BLT”? Wud be a pretty cool idea +06/27/2018,Comedians,@chelseaperetti,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/27/2018,Comedians,@chelseaperetti,"RT @IBJIYONGI: 1850s: this is the time period we need to study. In the years leading up to the Civil War, resistance to the Fugitive Slave…" +06/27/2018,Comedians,@chelseaperetti,RT @IBJIYONGI: We were sold a bag of rocks in the form of the American political dream (which was in fact a nightmare for so many around th… +06/27/2018,Comedians,@chelseaperetti,RT @IBJIYONGI: I want to call on folks who do social studies/ethnic studies/movement studies and who may consider themselves elders to thin… +06/27/2018,Comedians,@chelseaperetti,hell https://t.co/uiJ9tlc1SP +06/27/2018,Comedians,@chelseaperetti,"RT @WomenintheWorld: Woman, 26, first person charged by Trump administration with leaking, pleads guilty: +https://t.co/cNSpdlyAuk https://t…" +06/27/2018,Comedians,@chelseaperetti,"RT @ACLU: The appointment of a new Supreme Court justice determines our future as a nation of people whose humanity must be respected. + +We'…" +06/27/2018,Comedians,@chelseaperetti,"RT @slack2thefuture: Remember sitting in history, thinking “If I was alive then, I would’ve…” + +You’re alive now. Whatever you’re doing is w…" +06/27/2018,Comedians,@chelseaperetti,RT @KHNews: Defendants In Diapers? Immigrant Toddlers Ordered To Appear In Court Alone https://t.co/OKMFgBRpjV via @By_CJewett and @shefalil +06/27/2018,Comedians,@chelseaperetti,RT @MichaelSLinden: Will @SenatorCollins really cast the deciding vote to confirm a a supreme court justice who will overturn Roe V. Wade?… +06/27/2018,Comedians,@chelseaperetti,RT @JoyceWhiteVance: The Democratic Party has called for more accountability from Congresswoman Maxine Waters in the last 24 hours than the… +06/27/2018,Comedians,@chelseaperetti,RT @ikebarinholtz: .@CNN WHY DO YOU KEEP LETTING THIS INFECTED COCK ZIT ON YOUR AIRWAVES https://t.co/p9drm1xd4s +06/27/2018,Comedians,@chelseaperetti,"RT @ChrisMurphyCT: Wait, so the thing about “the American people should have a voice in the selection of their next Supreme Court Justice”…" +06/27/2018,Comedians,@chelseaperetti,"RT @JuddLegum: The good news is, since Mitch McConnell is a man of principle, the Senate won’t consider any Supreme Court nominee until aft…" +06/27/2018,Comedians,@chelseaperetti,@bthomas9 @peterdaou @CBSNews Insane response as usual. Be well +06/27/2018,Comedians,@chelseaperetti,ITS ALMOST AS IF THESE MOTHERS ARE *RUNNING FROM* THE GANGS TRUMP & HIS RACIST LACKEYS SAY THEY & ALL IMMIGRANTS *A… https://t.co/oHQfRLORHf +06/27/2018,Comedians,@chelseaperetti,RT @lsarsour: Separating black and brown families is the policy of this administration. Whether it be stripping babies from their mothers a… +06/27/2018,Comedians,@chelseaperetti,RT @AP: BREAKING: Pennsylvania police officer who shot unarmed black teenager charged with criminal homicide. +06/27/2018,Comedians,@chelseaperetti,I think of this daily in light of the children separated from their mothers. They wont be understood and it will ha… https://t.co/JucGCtq1JH +06/27/2018,Comedians,@chelseaperetti,"RT @WesleyLowery: You know, when you look at electoral results and ignore the political pundits, you almost get the sense that the Dems pat…" +06/27/2018,Comedians,@chelseaperetti,"RT @tedlieu: I predict that in the future, Congress will apologize for this discriminatory SCOTUS decision the same way Congress apologized…" +06/27/2018,Comedians,@chelseaperetti,HEY @SpeakerRyan *BABIES* ARE CRYING FOR THEIR MOTHERS IN *CAGES*- YOU SHOULD APOLOGIZE! YOU ARE SICKENING. YOU HAV… https://t.co/mrHIuoTrId +06/27/2018,Comedians,@chelseaperetti,RT @MatthewACherry: Nah we’re not doing this. https://t.co/LUT4i02I94 +06/27/2018,Comedians,@chelseaperetti,@peterdaou @CBSNews @SecondLady do something @FLOTUS visit is nothing to a child that wants her mother. These are b… https://t.co/4ukRfOvWNn +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: Heartbreaking. This cellphone image is of a crying girl who couldn't talk to her mother. (via @CBSNews) + +#ImmigrantChildren…" +06/27/2018,Comedians,@chelseaperetti,RT @anylaurie16: #MAGA is a suicide cult. https://t.co/m4n6QHK1bx +06/27/2018,Comedians,@chelseaperetti,"do the wives of republican politicians read the news? they read about moms being told “say bye” to their infants, b… https://t.co/3r3l03XX7n" +06/27/2018,Comedians,@chelseaperetti,"RT @slpng_giants: Still nothing from @united. + +Are your planes being used to fly children separated from their parents at the border or are…" +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: REMINDER: + +There is no Trump without McConnell. +No Trump without Ryan. +No Trump without Sessions. +No Trump without Pence. +No…" +06/27/2018,Comedians,@chelseaperetti,"RT @jacobsoboroff: Just before going on air with @Lawrence, @HHSGov got back to me to say they still *are* receiving newly-separated migran…" +06/27/2018,Comedians,@chelseaperetti,"RT @jonfavs: The only way to stop Trump from packing SCOTUS with more Trumpists is to win the Senate. + +Help @RosenforNevada, @kyrstensinem…" +06/27/2018,Comedians,@chelseaperetti,"RT @jonfavs: Truly one of the best ads of 2018, if you haven’t seen it yet https://t.co/VzNiNjr8k0" +06/27/2018,Comedians,@chelseaperetti,RT @ACLU: This is not the America we want to live in. https://t.co/X3oj0OamNK +06/27/2018,Comedians,@chelseaperetti,"RT @thedailybeast: After fleeing her abusive husband in Guatemala, Maria and her 12-year-old daughter sought asylum in the U.S. After cross…" +06/27/2018,Comedians,@chelseaperetti,"RT @thedailybeast: EXCLUSIVE: Border agent threatened to put immigrant's daughter up for adoption, ACLU says https://t.co/0y64CXWyJc" +06/27/2018,Comedians,@chelseaperetti,"Rape, harassment & assault are often approached as “womans issues” where boys and men are sidelined as silent victi… https://t.co/xTFu8Yxbnj" +06/27/2018,Comedians,@chelseaperetti,@kennfujioka do u put on repellant every time you leave your house? What about children +06/27/2018,Comedians,@chelseaperetti,REMINDER THAT EVEN ONE DAY WITHOUT KNOWING WHERE YOUR CHILD IS - IS HELL. one minute https://t.co/GcNx6reqiv +06/27/2018,Comedians,@chelseaperetti,RT @ACLU: These families thought they might never see each other again. Tonight's court ruling will change lives. #FamiliesBelongTogether h… +06/27/2018,Comedians,@chelseaperetti,"RT @ACLU: 📣 The judge ruled that the Trump administration must reunite separated families within 30 days, and children under 5 must be reun…" +06/27/2018,Comedians,@chelseaperetti,RT @dsam4a: Want to win? Here’s a tip: https://t.co/Lff4no2eWt +06/27/2018,Comedians,@chelseaperetti,"RT @Ocasio2018: “The people closest to the pain should be closest to the power.” + - @AyannaPressley. + +Vote her in next, Massachusetts. + +Th…" +06/27/2018,Comedians,@chelseaperetti,RT @AP: BREAKING: Judge orders US to reunite families separated at border within 30 days; sooner for children under 5. +06/27/2018,Comedians,@chelseaperetti,RT @SeanMcElwee: Alexandria Ocasio Cortez was one of the first candidates to support abolishing ICE. She led on the issue. Simple clear mor… +06/27/2018,Comedians,@chelseaperetti,"RT @robdelaney: I am a registered Democrat in Maxine Waters’ state & I stand with her, erect, with chest out. As do the 1.5 million #teens…" +06/27/2018,Comedians,@chelseaperetti,RT @laurenduca: Fuck civility. https://t.co/oRn1R2mLLU +06/27/2018,Comedians,@chelseaperetti,"RT @AyeshaASiddiqi: another anti ICE pro healthcare candidate, check out Megan Hunt in Nebraska 🎶 https://t.co/91CN4k2wts" +06/27/2018,Comedians,@chelseaperetti,RT @tedlieu: Dear @SecNielsen: Resign. https://t.co/cVSM1aSscQ +06/27/2018,Comedians,@chelseaperetti,"RT @theGregJohnson: I like when a shitty movie has 4+ writers. Man, all y’all fuckin bombed." +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: We're in a fight for survival, and within lawful and non-violent limits, we MUST take unwavering stands in defense of our co…" +06/27/2018,Comedians,@chelseaperetti,RT @peterdaou: DEM FRIENDS: We need new leadership for our party that is willing to take strong progressive stands and willing to fight enc… +06/27/2018,Comedians,@chelseaperetti,@simbaspaw my heart is broken ❤️stay strong +06/27/2018,Comedians,@chelseaperetti,❤️ +06/27/2018,Comedians,@chelseaperetti,RT @maddow: ...the distraught child verbalized that he wanted to jump because he missed his parents. 12 other young kids who were separated… +06/27/2018,Comedians,@chelseaperetti,"RT @maddow: New York AG: ""A boy who was separated from his father at the border was rushed to the hospital because he was about to jump ou…" +06/27/2018,Comedians,@chelseaperetti,RT @PaulRieckhoff: Just when we all assumed tomorrow’s Senate confirmation hearings would be a breeze for Wilkie. This is ugly stuff. He ab… +06/27/2018,Comedians,@chelseaperetti,"RT @PaulSonne: NEW: Trump’s nominee to lead the VA defended Confederate insignia, attended Confederate memorial events, joined and then lef…" +06/27/2018,Comedians,@chelseaperetti,sleep well innocent babies +06/27/2018,Comedians,@chelseaperetti,sleep well racist demons +06/27/2018,Comedians,@chelseaperetti,"RT @Sifill_LDF: We need answers and information given UNDER OATH from Secys Azar, Sessions and Nielsen. It’s Congress’s job to compel that…" +06/27/2018,Comedians,@chelseaperetti,RT @Sifill_LDF: .@SenAlexander chairs the committee that has oversight of HHS (Azar). Sen @ChuckGrassley chairs the committee w/oversight o… +06/27/2018,Comedians,@chelseaperetti,RT @Sifill_LDF: I implore you to direct some attention to Congress which has the power to make @SecAzar account for these children & provid… +06/27/2018,Comedians,@chelseaperetti,RT @ft_variations: Take a look at this map of ICE facilities across the US to understand just how widespread this monstrous apparatus is.… +06/27/2018,Comedians,@chelseaperetti,"RT @rdevro: Those efforts are currently colliding with realities on the ground, including a clear legal prohibition against the prolonged d…" +06/26/2018,Comedians,@chelseaperetti,RT @mizsant: So Velveeta isn’t allowed to call itself “cheese” but an unlicensed crisis pregnancy center can pretend to be a medical facili… +06/26/2018,Comedians,@chelseaperetti,RT @KaraRBrown: ARE YOU SERIOUSLY WASTING OUR TIME WITH THIS STUPID BULLSHIT WHILE CHILDREN ARE LITERALLY IN CAGES AND A BOOTLEG SUPREME CO… +06/26/2018,Comedians,@chelseaperetti,"THANK YOU FOR STANDING BY YOUR MORAL CONVICTIONS, SIR! WE APPLAUD YOUR CONSISTENCY AND STRENGTH! https://t.co/UR1dq1uvqA" +06/26/2018,Comedians,@chelseaperetti,RT @KenTremendous: Agree! https://t.co/Yw66uhnlnC +06/26/2018,Comedians,@chelseaperetti,TALK BABIES AND THE WEAPONIZATION OF BABIES https://t.co/9hgDLYAeP1 +06/26/2018,Comedians,@chelseaperetti,"RT @Miajmerrill: @chelseaperetti While you're here, a progressive Congressional candidate for Maryland is @AllisonforMD" +06/26/2018,Comedians,@chelseaperetti,@srosner @LanghartCohen or both +06/26/2018,Comedians,@chelseaperetti,"@RachelRumbelow Hi Rachel, more useful to convince an apathetic liberal to vote than spend energy on someone who th… https://t.co/3u1SHA13DJ" +06/26/2018,Comedians,@chelseaperetti,RT @nyuravlivker: @chelseaperetti Two generations heeding the call! #MDvotes https://t.co/UPLtuT3qMy +06/26/2018,Comedians,@chelseaperetti,RT @SenSanders: Rep. @PeterWelch visited a border patrol “processing facility” in Texas holding hundreds of children. Here is what he saw.… +06/26/2018,Comedians,@chelseaperetti,RT @MrEmilyHeller: Hello my fellow touring stand ups! Now is a great time to start hitting up volunteers in every city we visit to register… +06/26/2018,Comedians,@chelseaperetti,PLEASE https://t.co/D1imTX2p4q +06/26/2018,Comedians,@chelseaperetti,RT @LanghartCohen: Remember the next president gets to pick the next Supreme Court justice when you vote in November! #SCOUTUS #CourtsMatte… +06/26/2018,Comedians,@chelseaperetti,"RT @JoyAnnReid: Muslim ban +Separating migrant parents and children, even babies +Planned internment camps +Puerto Rico & USVI left to suff…" +06/26/2018,Comedians,@chelseaperetti,RT @lsarsour: Sitting in my daughter’s high school graduation in tears. I have to tell my daughter who has been asking me for updates that… +06/26/2018,Comedians,@chelseaperetti,"RT @deray: Before the election, someone said that if Trump won that us trying to undo the damage would be like trying to un-ring a bell. Th…" +06/26/2018,Comedians,@chelseaperetti,RT @justinjm1: BREAKING: Immigration attorney tells @woodruffbets ICE broke her foot and locked her up this morning https://t.co/3J1eHqHpof… +06/26/2018,Comedians,@chelseaperetti,RT @michaelianblack: Wow. Thread. https://t.co/jhODCbh160 +06/26/2018,Comedians,@chelseaperetti,"RT @splcenter: When the #POTUS starts talking about taking due process rights away, we shouldn’t shrug it off as just rhetoric meant to ene…" +06/26/2018,Comedians,@chelseaperetti,"RT @HuffPost: ""What happened to me has happened to many, many other men... I have had thousands and thousands of men come to me and say, 'M…" +06/26/2018,Comedians,@chelseaperetti,RT @CREWcrew: A reminder that countries where Trump does business are not hit by the travel ban https://t.co/a0xg2kxdY3 +06/26/2018,Comedians,@chelseaperetti,@Simon_Wynne great point 🙄 +06/26/2018,Comedians,@chelseaperetti,"IF YOU ARE TRANSPORTING THE CHILDREN, BUILDING THEIR CAMPS, TEARING THEM FROM THEIR FAMILIES, RULING AGAINST THEIR… https://t.co/2FYUfnYHs8" +06/26/2018,Comedians,@chelseaperetti,WHO ARE THE HUMANS PHYSICALLY TAKING BABIES FROM THEIR PARENTS? WHAT DOES THAT DO TO YOUR SOUL? YOU HAVE TO KNOW YO… https://t.co/dQoFKDXZP6 +06/26/2018,Comedians,@chelseaperetti,"RT @EricHolder: Here’s another zero tolerance program for the Trump Administration: EVERY child, EVERY baby has to be reunited with his or…" +06/26/2018,Comedians,@chelseaperetti,"RT @ambiej: I spent today at the El Paso immigration court, where a 3-year-old boy who'd been separated from his father had his removal hea…" +06/26/2018,Comedians,@chelseaperetti,RT @Alyssa_Milano: President Trump tweeted that he advocates for eliminating due process for immigrants. What the president suggested was b… +06/26/2018,Comedians,@chelseaperetti,CAN THEY SAVE US???? https://t.co/F4ODRABAbN +06/26/2018,Comedians,@chelseaperetti,"RT @keithellison: Like the Korematsu decision that upheld Japanese internment camps or Plessy v. Ferguson that established ""separate but eq…" +06/26/2018,Comedians,@chelseaperetti,"RT @washingtonpost: ""Get your son ready, because we are taking him."" + +Parents describe being separated from their children at the border. h…" +06/26/2018,Comedians,@chelseaperetti,"RT @ezraklein: In 2014, Dem turnout was abysmal and Rs picked up 9 Senate seats. That gave them the votes to block Obama from replacing Sca…" +06/26/2018,Comedians,@chelseaperetti,RT @ACLU: We must make it crystal clear to our elected representatives: If you are not taking action to rescind and dismantle Trump's Musli… +06/26/2018,Comedians,@chelseaperetti,👀 https://t.co/EIC0a1Ql4e +06/26/2018,Comedians,@chelseaperetti,RT @robdelaney: 🚨#NY14! You are very powerful today. Get out there & vote for @Ocasio2018! Her policies are THE antidote to the for-profit… +06/26/2018,Comedians,@chelseaperetti,"RT @chrisgeidner: Sotomayor: ""History will not look kindly on the court's decision today, nor should it.""" +06/26/2018,Comedians,@chelseaperetti,"RT @HuffPost: Sonia Sotomayor and Ruth Bader Ginsburg say Trump's travel ban was ""motivated by anti-Muslim animus.” https://t.co/eme8uXNias" +06/26/2018,Comedians,@chelseaperetti,RT @UltraViolet: The Supreme Court just ruled that fake clinics can continue to lie to pregnant women about abortion. This is a disgraceful… +06/26/2018,Comedians,@chelseaperetti,RT @deray: nah. https://t.co/KMXubr16TZ +06/26/2018,Comedians,@chelseaperetti,RT @deray: I just keep thinking about all of the people who didn’t believe Trump during the election and who told people that the president… +06/26/2018,Comedians,@chelseaperetti,RT @RinChupeco: The first requirement when approaching any discussion with civility is that both sides must come to the table with it. The… +06/26/2018,Comedians,@chelseaperetti,"RT @RinChupeco: ""So much for the tolerant left."" This is why they say this all the fucking time. This is the bait they expect you to fall f…" +06/26/2018,Comedians,@chelseaperetti,RT @RinChupeco: People invested in putting kids in cages don't want your civility. They don't want you to extend them the same courtesy the… +06/26/2018,Comedians,@chelseaperetti,"RT @ananavarro: -#BarbecueBetty called cops on black fam grilling +-#PermitPatty called cops on black girl selling water +-#LandscapeLucy ber…" +06/26/2018,Comedians,@chelseaperetti,NEW YORK https://t.co/MVmEGMgwAd +06/26/2018,Comedians,@chelseaperetti,How is there such a lack of understanding re asylum? Why do you think a parent would undertake a journey with so mu… https://t.co/PBuWVu0WaF +06/26/2018,Comedians,@chelseaperetti,"RT @ACLU: Our government cannot be allowed to hold children hostage in order to sabotage the legal claims of people seeking refuge. +#Famili…" +06/26/2018,Comedians,@chelseaperetti,RT @robdelaney: Love it. Shut the country off for the day. (Except for essential services like the NHS & production on Catastrophe series 4… +06/26/2018,Comedians,@chelseaperetti,"RT @deray: If there is a hell, folks like Sarah Sanders will be scorched for eternity. https://t.co/lai9Fx3bOc" +06/26/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: Young people will lead the way. + +A @Stand_for_Kids lemonade stand in Atlanta raised $13,000 for our work —$1,100 in perso…" +06/26/2018,Comedians,@chelseaperetti,@realDonaldTrump @jimmyfallon #WhereAreTheGirls #WhereAreTheBabies +06/26/2018,Comedians,@chelseaperetti,PENCE ON HIS FAKE FAMILY VALUES TOUR #WHERE #ARE #THE #PHOTOS #OF #THE #BABIES @VP @SecondLady KAREN WHERE ARE THE… https://t.co/dhUXoagTrG +06/26/2018,Comedians,@chelseaperetti,@TwinTurboTeban sending u light and love ❤️❤️❤️❤️❤️ +07/01/2018,Comedians,@mindykaling,@Yassir_Lester Disagree +06/29/2018,Comedians,@mindykaling,"Families belong together. Tomorrow, thousands of people across the country are wearing white and taking to the stre… https://t.co/QCQiX4S533" +06/28/2018,Comedians,@mindykaling,You got it! 👍🏾 https://t.co/vCRXhzs5Ja +06/28/2018,Comedians,@mindykaling,"Congratulations to @Ocasio2018, the nation is rooting for you! How can I help?" +06/28/2018,Comedians,@mindykaling,"@bjnovak This has to be a sponsored post, it’s sunglasses day, this is not real" +06/28/2018,Comedians,@mindykaling,"RT @HRC: .@HRC was proud to present actor J.J. Totah with the HRC Visibility Award at the 2018 HRC Salt Lake Gala. Thank you, @JJTotah, fo…" +06/27/2018,Comedians,@mindykaling,Because summer 🌞 and #NationalSunglassesDay 😎✌️🎉 https://t.co/4IIQn3dXaC +06/27/2018,Comedians,@mindykaling,#paulruddisawitch +06/27/2018,Comedians,@mindykaling,Paul Rudd has been handsome for 40 years and is somehow still like 32 +06/26/2018,Comedians,@mindykaling,👍🏾 this crew too! @TheAcademy ✨ https://t.co/XA1O9tWXKX +06/26/2018,Comedians,@mindykaling,It’s an incredible honor to be asked to join @theacademy! Thank you!!! 🙌 https://t.co/WCOnQfSRWY +06/26/2018,Comedians,@mindykaling,"Thank you, Seth! 💕❤️💕 https://t.co/CDfbSW9Doa" +06/25/2018,Comedians,@mindykaling,@LitsaDremousis @oceans8movie Thanks Litsa! So happy you liked it! +06/25/2018,Comedians,@mindykaling,@MatthewACherry Thank you!! 💕💕💕 +06/25/2018,Comedians,@mindykaling,@iamthepuma @nicolette819 @robsimonsen @TheAcademy ❤️❤️❤️ +06/25/2018,Comedians,@mindykaling,Whoa!!! Congrats @oceans8movie! $100 million!?! 💵 #SequelMuch https://t.co/xCPVhXETRK +06/25/2018,Comedians,@mindykaling,"@jimmyfallon I see the da Vinci code is not an option, I beg you to reconsider" +06/25/2018,Comedians,@mindykaling,@chrissyteigen @netflix I want Jonathan to help me find my inner diva with new bob and for Antoni to transform my s… https://t.co/1KT5zeK8mP +06/25/2018,Comedians,@mindykaling,I’m gonna say what we’re all thinking: whoever cast the @netflix #queereye did an incredible job +06/25/2018,Comedians,@mindykaling,@jimmyfallon Yaaaaaaasss +06/25/2018,Comedians,@mindykaling,My less important birthday wish is that Pepe the Frog would no longer be a symbol of hate groups. Pepe holding cham… https://t.co/GF4b7B3Zfq +06/25/2018,Comedians,@mindykaling,"Thank you for all the birthday wishes! I get to live with my daughter which is better than any present, and makes m… https://t.co/AuCyo9tfay" +06/25/2018,Comedians,@mindykaling,"Thank you, you know this gif is my favorite gif on the internet https://t.co/HYXyNulrjd" +06/24/2018,Comedians,@mindykaling,@Yassir_Lester I know! I felt like it seemed like I was angling for you to give me birthday greetings but it wasn’t!!! +06/24/2018,Comedians,@mindykaling,@PRanganathan Twins! +06/24/2018,Comedians,@mindykaling,"I love my Reese dawg, you are the personification of the 💯 emoji. https://t.co/ynCsGiQR2b" +06/24/2018,Comedians,@mindykaling,@daliaganz Yay! Thanks!! 💃🏻 +06/24/2018,Comedians,@mindykaling,"@bestofmindy Oh my god, thanks! I obvs love your take on the world heheheh" +06/24/2018,Comedians,@mindykaling,@cschleichsrun This is ridiculous +06/24/2018,Comedians,@mindykaling,I didn’t know anything about Sanfilippo Syndrome until I read about it here. It’s devastating. Help Carter and his… https://t.co/zHWEcwXa2B +06/23/2018,Comedians,@mindykaling,Oh my did I miss @Yassir_Lester’s birthday? I’m obsessed with him. +06/23/2018,Comedians,@mindykaling,Because of the twirl. #Werk https://t.co/iPX1jppLtw +06/22/2018,Comedians,@mindykaling,"This is so funny, I never wanted it to end. #SheReady alright https://t.co/6r9tmpczAz" +06/21/2018,Comedians,@mindykaling,@mullallying @MsSarahPaulson THANK YOU for blurring out all those other losers +06/20/2018,Comedians,@mindykaling,Go over to guiding light @Ava’s twitter feed right now to be inspired. It’s very special and reminds us that we wer… https://t.co/tFvXQG3zyv +06/20/2018,Comedians,@mindykaling,RT @ava: I look at myself as a girl and imagine having to travel unsafely in a quest for safety. Be forcibly separated from my mother. Cage… +06/20/2018,Comedians,@mindykaling,Oooh it’s @LaLigneNYC 👌🏾 https://t.co/HZB9tzWogY +06/20/2018,Comedians,@mindykaling,That feeling when you come home from work and you’re sure the baby is already asleep but she’s awake and babbling a… https://t.co/An1oJ9vaVb +06/19/2018,Comedians,@mindykaling,"As a mother and a daughter of immigrants, I am heartbroken about children being separated from their families at Am… https://t.co/lkggiCARZW" +06/19/2018,Comedians,@mindykaling,It's always sunny when you're visiting your friends on @alwayssunny #Season13 https://t.co/5LxgymfTSG +06/19/2018,Comedians,@mindykaling,"If it’s true that the arc of the moral universe bends towards justice, let’s please help it bend a little faster, f… https://t.co/AhMY58lP8k" +06/19/2018,Comedians,@mindykaling,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/19/2018,Comedians,@mindykaling,"RT @FridaGhitis: Under the orders of armed men, a mother pulls the shoestrings from her daughter's shoes before being dragged away from her…" +06/19/2018,Comedians,@mindykaling,"RT @SenFeinstein: UPDATE: 48 senators now support the Keep Families Together Act. We're making progress, but we still need Republicans to j…" +06/18/2018,Comedians,@mindykaling,Binged the entire season #KillingEve. May never sleep the same way again. Thank you...I think? @IamSandraOh… https://t.co/TGxCafnRZC +06/17/2018,Comedians,@mindykaling,"@MsSarahPaulson @FelicityHuffman Sarah and I were in another scene that got cut, Felicity you should come over, I will show you" +06/16/2018,Comedians,@mindykaling,So many great movies coming out this weekend but only one where you can see me take apart a $150 million dollar nec… https://t.co/CtquqwiYo9 +06/15/2018,Comedians,@mindykaling,"Eid Mubarak, my friend! And all my Muslim friends. ❤️ https://t.co/BFHQ5oBwyR" +06/14/2018,Comedians,@mindykaling,"In honor of my friend @davidstassen’s birthday, here he is doing all the things he’s best at: being in a writers ro… https://t.co/m2iafHRXAg" +06/14/2018,Comedians,@mindykaling,Awww @jjtotah @AndyFavs @ders808 @fortunefunny #ChampionsOnNetflix https://t.co/6PoLi1yLtB +06/14/2018,Comedians,@mindykaling,🤗🤗🤗 #ChampionsOnNetflix @AndyFavs https://t.co/CQFx6TuAot +06/14/2018,Comedians,@mindykaling,"London Premiere 💎 #Oceans8 +Styled by #JasonBolden +💁🏾‍♀️: #DayaRuci +💄: @kaymontano +👗: @albertaferretti +👠:… https://t.co/Vgt9Lxo4o1" +06/14/2018,Comedians,@mindykaling,@ultimatefan1 @cindy_2627 You were a delight (as usual!) +06/13/2018,Comedians,@mindykaling,🇬🇧 💎✌️#Oceans8 https://t.co/sJ7Eg336mc +06/13/2018,Comedians,@mindykaling,"I love this woman. She makes beautiful clothes, but more importantly, finds beauty in women of every background and… https://t.co/cedyQZRxSD" +06/13/2018,Comedians,@mindykaling,We love it! Catch us on @NetflixUK and tweet me what you think! ❤️ https://t.co/1RDtK4SQsu +06/13/2018,Comedians,@mindykaling,Party in my backyard? https://t.co/JtlyBKVlOD +06/12/2018,Comedians,@mindykaling,Loved seeing the iconic @StellaMcCartney in her gorgeous new London store! #23oldbond https://t.co/2LwrjpBOH1 +06/12/2018,Comedians,@mindykaling,Congrats @StellaMcCartney ❤️✨🇬🇧 https://t.co/NuhZC0KOgS +06/12/2018,Comedians,@mindykaling,Agree @jjtotah! #ChampionsOnNetflix forever! 🙌 https://t.co/iJqcxmIt9h +06/12/2018,Comedians,@mindykaling,RT @jjtotah: y’all can share me❤️ https://t.co/gHHumo5lHY +06/12/2018,Comedians,@mindykaling,I actually wish @jjtotah was my kid! He’s another nice woman’s child though 😩 https://t.co/1pYVaGGSvj +06/12/2018,Comedians,@mindykaling,@AndyFavs is the best. Episode 10 especially! Tweet me when you see it! https://t.co/OFuOKRc9Ie +06/12/2018,Comedians,@mindykaling,Working on it cutie https://t.co/qOJm9cHNQ1 +06/12/2018,Comedians,@mindykaling,I will if we come back for another season! 😘 https://t.co/I8wOMnMTln +06/12/2018,Comedians,@mindykaling,RT @CourtneyKofeldt: You need to be your own cheerleader 📣... and root for those around you! @mindykaling. Love this powerful message! http… +06/12/2018,Comedians,@mindykaling,"I'm in London, streaming #Champions! This is awesome! International folks - if you share photos & posts with the ha… https://t.co/5r6Z3oE1Dj" +06/12/2018,Comedians,@mindykaling,👍🏾👍🏾👍🏾 https://t.co/SyEAtQNFHS +06/12/2018,Comedians,@mindykaling,"Guys! It's a good day! #Champions, the comedy show I wrote, produced, and star in, is now available on #Netflix int… https://t.co/sVr9MljUYi" +06/12/2018,Comedians,@mindykaling,RT @theregos: OMG Champions is finally on @NetflixMENA! Eid binging sorted! @mindykaling https://t.co/fDUb6M1Cq7 +06/11/2018,Comedians,@mindykaling,@chrismcquarrie Three great scenes and no shitty ones! I love it! I love practical writing advice! Thank you! +06/11/2018,Comedians,@mindykaling,"@ConstanceWu @oceans8movie @awkwafina Thank you, my hilarious new friend. You’re the best." +06/11/2018,Comedians,@mindykaling,@awkwafina That all sounds fun but we miss you in London +06/10/2018,Comedians,@mindykaling,"Thank you @dartmouth, my Alma Mater, for welcoming me back to deliver today’s commencement speech. To say it was an… https://t.co/EvGI9I32CM" +06/10/2018,Comedians,@mindykaling,Back at @dartmouth! Oh heyyyy old dorm room ✌🏾 https://t.co/efdyjcVgEv +06/09/2018,Comedians,@mindykaling,@itsgabrielleu I travel with an economy sized eucerin +06/09/2018,Comedians,@mindykaling,@itsgabrielleu hahahahahahhahahaha until I die +06/09/2018,Comedians,@mindykaling,RT @ava: This matters. 🖤 https://t.co/z6JiPAO9fg +06/09/2018,Comedians,@mindykaling,It’s a party today at @POPSUGAR #POPSUGARPlayground https://t.co/hdQC4D1gB3 +06/09/2018,Comedians,@mindykaling,@willxcheng @dartmouth Thanks Will! Can’t wait to come to campus! Save some Hop fries for me. +06/09/2018,Comedians,@mindykaling,"Congratulations to Emma Thompson, who is now a dame commander of the order of the British Empire. She is also my fr… https://t.co/EmNiGcKch2" +06/08/2018,Comedians,@mindykaling,"I didn't know I needed this until now. Thanks, @tomlenk. https://t.co/3xJcAgmfdQ" +06/08/2018,Comedians,@mindykaling,"I saw #oceans8, it was so good. The ensemble is fantastic and the jeweler is particularly convincing! She sure know… https://t.co/kigpv8xn1H" +06/08/2018,Comedians,@mindykaling,RT @ikebarinholtz: I can’t wait to see #Ocean8Movie today starring my dear friend @mindykaling and my ex-girlfriend @rihanna +06/08/2018,Comedians,@mindykaling,@davidstassen Cerulean +06/07/2018,Comedians,@mindykaling,"Thanks for having me @TodayShow! 🌈 + +https://t.co/mPkHBGzq1m https://t.co/stgd4q1hkT" +06/07/2018,Comedians,@mindykaling,"THANK YOU, SCOTT https://t.co/ICXYNrpw9t" +06/07/2018,Comedians,@mindykaling,"I was at @TODAYshow all morning and would have stayed all afternoon but they were like “go home, Barry Manilow is n… https://t.co/8DJgK5RnDv" +06/07/2018,Comedians,@mindykaling,Crew’s all here. #Oceans8 https://t.co/20VePv4cme +06/07/2018,Comedians,@mindykaling,@anildash @prabalgurung ❤️❤️❤️❤️ +06/06/2018,Comedians,@mindykaling,🖤 #Oceans8 https://t.co/lSFGFi1dFX +06/06/2018,Comedians,@mindykaling,RT @DavidSpade: Katy at my book signing. I love this pic of her. So pretty. I dont think everyone knew how fucking funny she was... Its a… +06/05/2018,Comedians,@mindykaling,"All this sparkle, brought to you by @prabalgurung & @Cartier. Thank you, I love! 💎 #Oceans8 (Styled by… https://t.co/88lVjswUGC" +06/05/2018,Comedians,@mindykaling,"California, Montana, Alabama, Iowa, Mississippi, New Jersey, New Mexico, South Dakota - Get your vote on! https://t.co/LzMjq4xx0F" +06/05/2018,Comedians,@mindykaling,"I am heartbroken about the news of Kate Spade. I have worn her clothes many, many times. They were colorful, bold,… https://t.co/uvW3Housz7" +06/05/2018,Comedians,@mindykaling,Hugh Dane was one the funniest actors ever. I loved writing and acting with him. ❤️ https://t.co/kOlcofYxIn +06/04/2018,Comedians,@mindykaling,“Act natural” @TheEllenShow https://t.co/UKzVTsfGnm +06/04/2018,Comedians,@mindykaling,When I see @nickkroll is gonna be a nemesis in a movie I get https://t.co/y0jYQcA7fl +06/04/2018,Comedians,@mindykaling,"A shark named Meg? What’s next, a lion named Gretchen? Cmon" +06/04/2018,Comedians,@mindykaling,Uncle Drew is already my favorite movie of the year +06/03/2018,Comedians,@mindykaling,"❤️ this chat @bostonglobe. And see you soon @dartmouth!! 🙌 + +https://t.co/0M5mDKga2x" +06/03/2018,Comedians,@mindykaling,@TessaThompson_x Tell me more!! +06/03/2018,Comedians,@mindykaling,@cschleichsrun I have a very interested baby. I would love to get her in the DGA +06/02/2018,Comedians,@mindykaling,@MarkHarrisNYC But Mark I was gonna live-tweet Perestroika for my followers. Is that gonna be an issue +06/01/2018,Comedians,@mindykaling,It’s all happening today. #NationalDonutDay 🍩 https://t.co/O3tZKddmir +06/01/2018,Comedians,@mindykaling,"@carriecoon @people If you’re in it, I’ll watch it! https://t.co/o2lVUg5XSm" +06/01/2018,Comedians,@mindykaling,@davidstassen @ikebarinholtz Yeah maybe it was good actually +06/01/2018,Comedians,@mindykaling,@ikebarinholtz @davidstassen It’s pretty dumb +06/01/2018,Comedians,@mindykaling,@davidstassen Look at this old photo of him and his sons. I die https://t.co/KhayO2fIma +06/01/2018,Comedians,@mindykaling,@gracie_x24 @maht_in_chicago @MeCookieMonster It’s a great recommendation. Just might do it! +05/31/2018,Comedians,@mindykaling,These are promising but not for sale https://t.co/pgwjQBCboo +05/31/2018,Comedians,@mindykaling,"Guys I’m looking for a Cookie Monster cookie jar. Can anyone help me please, it’s v. important. @MeCookieMonster" +05/31/2018,Comedians,@mindykaling,"@ava Nothing would make me happier than to tell you, but I need it to be three days." +05/31/2018,Comedians,@mindykaling,@janna_joyner Whoa! Thank you so much! +05/31/2018,Comedians,@mindykaling,👏🏾👏🏾👏🏾👏🏾 https://t.co/NCem0WSPjD +05/30/2018,Comedians,@mindykaling,@CAPEUSA @IWGroup @Kollaboration @oceans8movie @awkwafina @OsricChau @ch8i @yoshi_sudarso @PeterSAdrian… https://t.co/gvsRQqemIa +05/30/2018,Comedians,@mindykaling,Thanks @time! We love @NBCChampions too! @ders808 @jjtotah @AndyFavs @CBGrandy https://t.co/DBLnuOeEkx +05/30/2018,Comedians,@mindykaling,Love this guy. Smart and dreamy. https://t.co/OuJeyq3PYO +05/30/2018,Comedians,@mindykaling,Laurie Metcalf and John Goodman let me write things for you +05/29/2018,Comedians,@mindykaling,@davidstassen I wrote on The Office! 😏 +05/28/2018,Comedians,@mindykaling,hahaha I’m an Annie stan https://t.co/NA3wvA4zUq +05/28/2018,Comedians,@mindykaling,RT @DaveKingThing: lebron is underrated +05/28/2018,Comedians,@mindykaling,“This is a close game.” - me just now about this game. @nba need a commentator? +05/27/2018,Comedians,@mindykaling,@chrissyteigen Beware! Tumeric was the death of my manicure. After I cook with it i look like a yellow nailed side… https://t.co/iDYVDVm4qB +05/27/2018,Comedians,@mindykaling,"Proud of Ireland for #RepealedTheEighth. Savita Halappanavar died because she did not have the right to choose, but… https://t.co/MKQUvL2EUs" +05/26/2018,Comedians,@mindykaling,RT @TorieTheriot: Did #champions just reference a baseball team as “Baton Rouge Humidity”?!?! @mindykaling ❤️ it! https://t.co/W2WRqu8kY6 +05/26/2018,Comedians,@mindykaling,RT @thestormwithin: Do not change the channel! There is another episode of #Champions! +05/26/2018,Comedians,@mindykaling,💁🏾‍♀️❤️ https://t.co/NoHgXDs4qC +05/25/2018,Comedians,@mindykaling,I didn’t ask him to tweet this! https://t.co/m0ukfmNnvf +05/25/2018,Comedians,@mindykaling,"RT @damianholbrook: two NEW episodes tonight! @NBCChampions +watch this show so we get more next season! + +#IdLikeFiveDrugsPlease https://t…" +05/25/2018,Comedians,@mindykaling,2 back-to-back episodes tonight - including the season finale of @NBCChampions! 8/7c! https://t.co/cDoR64KlQD +05/25/2018,Comedians,@mindykaling,@_juliescharf @MsSarahPaulson Paulson is my khaleesi and I am Jorah mormont +05/25/2018,Comedians,@mindykaling,Coming for ya @sethmeyers @LateNightSeth https://t.co/NgPYdwEcSR +05/25/2018,Comedians,@mindykaling,RT @hulu: #TBT to the set of Mindy. The show might be over but you can watch all episodes only on Hulu. https://t.co/4Y9B8fAXCo #FYC https:… +05/24/2018,Comedians,@mindykaling,All for clowning around especially for a good cause! Watch #RedNoseDay tonight on @nbc! Donate:… https://t.co/iOx1LXy4va +05/23/2018,Comedians,@mindykaling,"Not your typical LBD... @FallonTonight +👗: #celine +👠: @LouboutinWorld +💎: @KMD_Jewelry +😘😍 @jason_bolden @Marcmena… https://t.co/1YJ0bOfLzK" +05/23/2018,Comedians,@mindykaling,HIIIIiiiiiiiiiiiiii @FallonTonight @jimmyfallon https://t.co/utdT9f4VBR +05/23/2018,Comedians,@mindykaling,@jackburditt Don’t do it Jack!! +05/23/2018,Comedians,@mindykaling,SRSLY. Sandy brought shakes. ❤️❤️❤️ #Oceans8 https://t.co/Wj8g1gumLJ +05/23/2018,Comedians,@mindykaling,My heart hurts this kid is so cute https://t.co/ea2iEH72cU +05/23/2018,Comedians,@mindykaling,Posse. #Oceans8 https://t.co/paq5I03FEB +05/22/2018,Comedians,@mindykaling,Pearls on pearls on pearls for @oceans8movie press day. I play a jeweler after all. https://t.co/5rzYIRIgIe +05/19/2018,Comedians,@mindykaling,In custom Stella! https://t.co/D8BAXIW3rH +05/19/2018,Comedians,@mindykaling,The excitement on her face is heart crushing. This little girl could’ve been my daughter. We must do more than just… https://t.co/Gs5BmMZwaa +05/18/2018,Comedians,@mindykaling,Heartbroken by the news from #SantaFe Texas. #EnoughIsEnough +05/18/2018,Comedians,@mindykaling,@dannychun @ConstanceWu Me too! The decor and cocktail list are also so good. +05/18/2018,Comedians,@mindykaling,@ConstanceWu Selfridges! Gymkhana! 221b Baker Street! +05/18/2018,Comedians,@mindykaling,@DaveKingThing Are you fucking kidding me Dave. Forget it. Enemies +05/17/2018,Comedians,@mindykaling,The only person who can pull off tiny sunglasses https://t.co/EfvLiX3nFA +05/17/2018,Comedians,@mindykaling,@DaveKingThing Yanny and laurel has revealed a new layer to your comedy voice that I love so much +05/16/2018,Comedians,@mindykaling,I love retweeting Canada! And I extra love this insanely talented young woman! https://t.co/Kb99cEeB8j +05/16/2018,Comedians,@mindykaling,".@Shape_Magazine was like, “Cover?” and I was like, “YASS!” 🤩😍😘 https://t.co/BzKaLqGdNw https://t.co/vBM5MlcHrD" +05/16/2018,Comedians,@mindykaling,@megynkelly Feels so good to ignore. +05/16/2018,Comedians,@mindykaling,When they drag you just hoping you will @ them and you don’t https://t.co/CPYUWdfARB +05/16/2018,Comedians,@mindykaling,"Obsessed with this romper, @shivan_narresh are so talented. Love repping Indian fashion! ❤️ https://t.co/o1SUXaarCT" +05/16/2018,Comedians,@mindykaling,RT @SaltyShep: If you’ve had a tough creative day— remember it happens to everyone who creates art. Here’s Kubrick on 2001 set... https://t… +05/16/2018,Comedians,@mindykaling,@MiniB622 @GWillowWilson She’s incredible! Just want to support her any way I can! +05/16/2018,Comedians,@mindykaling,Yup! https://t.co/RMnqVOe8lf +05/16/2018,Comedians,@mindykaling,"Also it’s yanny not yanni, let’s not be cute about it" +05/16/2018,Comedians,@mindykaling,It’s Yanny https://t.co/p03ljzpomJ +05/16/2018,Comedians,@mindykaling,@yashar You’re insane. This is like me not seeing elephants in your posts about elephants +05/16/2018,Comedians,@mindykaling,@chrissyteigen I bought your cookbook. I loved it. And now you betray me? #yanny +05/16/2018,Comedians,@mindykaling,@SashaBanksWWE Hi! +05/16/2018,Comedians,@mindykaling,"Riz! I am obsessed with this comic book, I’ve read them all. I love Kamala Khan. https://t.co/f3PevhfUzv" +05/15/2018,Comedians,@mindykaling,2018 Graduation is lit. 🔥 Kelly would be proud. https://t.co/9Mzi6JPxuG +05/15/2018,Comedians,@mindykaling,Ain’t it shocking what love can do? https://t.co/PaqCAyMJUS +05/15/2018,Comedians,@mindykaling,The song that most encapsulates my soul is “So Emotional” by Whitney Houston. I was so lucky to grow up waiting for… https://t.co/fUVfIPjFAB +05/15/2018,Comedians,@mindykaling,@jackburditt @TraceyWigfield he would go on the ride and say loudly “that’s a lot of dinosaurs!” over and over. He needed to go +05/14/2018,Comedians,@mindykaling,I think we will regret this tiny sunglasses look +05/14/2018,Comedians,@mindykaling,"@AkashaRichmond hi Akasha, I love Akasha and miss Sambar. I wanted to get in touch with you! ❤️" +05/14/2018,Comedians,@mindykaling,"@ChrisEvans Oh my god, your mother is stunningly beautiful." +05/14/2018,Comedians,@mindykaling,@HAbbaraju What a wonderful message! She must be so proud of you! +05/14/2018,Comedians,@mindykaling,@BethGrantActor Oh I love this so much. Happy Mother’s Day Beth! ❤️ +05/14/2018,Comedians,@mindykaling,"Happy Mother’s Day to those of us who miss our moms. I have a kid now who is the joy of my life, but each year that… https://t.co/L85DBXpBk9" +05/13/2018,Comedians,@mindykaling,"I’ll just let this picture explain itself. Happy Birthday, @StephenAtHome 🎉 https://t.co/RP6BiirvFa" +05/13/2018,Comedians,@mindykaling,Saturday smoothness. Thanks to #FawltyTowers https://t.co/HwpMqSOUbO +05/12/2018,Comedians,@mindykaling,“WOOOOW! So PROUD of these women standing up for change! #TimesUp #Cannes https://t.co/bAYOHtlmlH +05/11/2018,Comedians,@mindykaling,THIS 👏🏾 IS 👏🏾 A 👏🏾 MOOD! 👏🏾 @JLo @rihanna https://t.co/qvlfyB5zLC +05/11/2018,Comedians,@mindykaling,RT @awkwafina: Man this is inspiring as hell https://t.co/PjKTvIB2jN +05/11/2018,Comedians,@mindykaling,"RT @xor: ""Marisa Tomei"" is an anagram for ""It's-a me, Mario""" +05/10/2018,Comedians,@mindykaling,Photo bombing is the worst. We didn’t want you in the photo!! +05/10/2018,Comedians,@mindykaling,It takes 8. #Oceans8 🎱 https://t.co/nyeKOBkCo8 +05/09/2018,Comedians,@mindykaling,@bjnovak your mailbox is full and I take it as a personal affront. Go get your mailbox. +05/09/2018,Comedians,@mindykaling,It is a beautiful night to walk home tipsy in New York City and that is precisely what I’m doing +05/08/2018,Comedians,@mindykaling,"After all, I gave my word....My @Cannes Jury lewks reviews is up now on my Insta-Story! 👀💁🏾‍♀️👠😍🌴🌟👯‍♀️👙🙌😘 https://t.co/tn5BsIc2r3" +05/08/2018,Comedians,@mindykaling,"It’s finally out! I love these two, I wrote the foreword to their book, pick up a copy today! https://t.co/fhZW1fC7SU" +05/08/2018,Comedians,@mindykaling,I SAT NEXT TO HIM! #WakandaForever https://t.co/bQfQWZv5zG +05/08/2018,Comedians,@mindykaling,My greatest joy of social media. @ikebarinholtz https://t.co/ZKnAC1XO9w +05/08/2018,Comedians,@mindykaling,#MetGala 🌟 https://t.co/mkdCyUdvw4 +05/08/2018,Comedians,@mindykaling,#MetGala 👋 https://t.co/ow7DA8nxlw +05/07/2018,Comedians,@mindykaling,"“You can be the king but watch the queen conquer.” 👑👑👑 #MetGala2018 Styled by @CristinaEhrlich +Makeup:… https://t.co/Infp4lOfWn" +05/07/2018,Comedians,@mindykaling,@RahulMishra_7 Love love loved this +05/07/2018,Comedians,@mindykaling,@PRanganathan Whoa. THANK YOU! what a dream you are +05/07/2018,Comedians,@mindykaling,#MetGala mood. ❤️ https://t.co/k0jzVrn7xp +05/07/2018,Comedians,@mindykaling,Hiro and Donald forever +05/05/2018,Comedians,@mindykaling,"@ivadixit CPST is one of my all-time faves. We had fake snow, Christmas party kissing, and ike in some questionable… https://t.co/tLvhGeOZ1l" +05/05/2018,Comedians,@mindykaling,@ivadixit I loved meeting you!! +05/04/2018,Comedians,@mindykaling,"For those of you who think I’m busy, I ain’t busy enough not to do a Cannes Jury lewks review over on my insta stor… https://t.co/5jvuooOtqJ" +05/04/2018,Comedians,@mindykaling,Second from the right 🔥#Oceans8 https://t.co/AoKwpYgz4H +07/01/2018,Comedians,@dopequeenpheebs,"RT @nowthisnews: 'If you shoot me, you better shoot straight. There's nothing like a wounded animal.' — Rep. Maxine Waters had a powerful m…" +06/30/2018,Comedians,@dopequeenpheebs,"@mariluza_dias @daniDpVox @alison_wanders @U2 @U2Community One of my close friends, Alison! 😍" +06/29/2018,Comedians,@dopequeenpheebs,"So excited, boo boos! I teamed up with @Nordstrom to help celebrate their upcoming Anniversary sale. Early access f… https://t.co/RHVbrrZyxq" +06/29/2018,Comedians,@dopequeenpheebs,@Allie_Cat_Swag 🙏🏾🙏🏾🙏🏾🙏🏾 +06/27/2018,Comedians,@dopequeenpheebs,"OMG! First Phoebe Robinson & Friends sold out on Monday, so we’re adding a late show! Get your tix now before they’… https://t.co/5vUDJrWlgR" +06/27/2018,Comedians,@dopequeenpheebs,@mindykaling https://t.co/iYJptPAkjh +06/27/2018,Comedians,@dopequeenpheebs,@maggiebertram @HubSpot @2DopeQueens @LenaWaithe @INBOUND Omg! Bring your Bono is the highest honor. We must meet when I’m in town! +06/26/2018,Comedians,@dopequeenpheebs,@jayohtaytho I was there!!! Did you enjoy the show??? +06/25/2018,Comedians,@dopequeenpheebs,😑😑😑😑😑. Mar-a-lago had 15 health code violations and I 10000% hate that I had to go on Fox News’s Trash ass website… https://t.co/yC6k5GXZ5L +06/25/2018,Comedians,@dopequeenpheebs,Hi Q Hi! I’m doing a show at @UnionHallNY with some of my favorite ppl on July 24th. Get your tix now before they’r… https://t.co/S5Zh76DWFA +06/24/2018,Comedians,@dopequeenpheebs,"@klmenard Lmaooo. Not weird. Final confirmation that it’s me, boo boo!" +06/23/2018,Comedians,@dopequeenpheebs,“Illegally selling water without a permit.” That little girl is 8 years old. Motherfucking white kids are constantl… https://t.co/9DrqFeXRkM +06/23/2018,Comedians,@dopequeenpheebs,@lovesfiercely @FunnyAsianDude He was one of my all-time favorite guests. So funny and wise. I can’t wait for him t… https://t.co/wBzSvqpZqR +06/23/2018,Comedians,@dopequeenpheebs,"Biiiiiiiiiiiiiitch, can you assemble all the black & brown families who’ve had loved ones killed by police so they… https://t.co/6ZvIJOhJ9T" +06/23/2018,Comedians,@dopequeenpheebs,@icecreamtamales Masterchef Junior is sooooooo good! +06/22/2018,Comedians,@dopequeenpheebs,Who. 👏🏾 Da. 👏🏾 Fuck. 👏🏾 Said 👏🏾 This?! #Lies https://t.co/TqYimGAvBK +06/22/2018,Comedians,@dopequeenpheebs,"A day and woman we all need to celebrate. Also, let’s give her some royalties! 👏🏾👏🏾👏🏾 https://t.co/qimUaaqg5K" +06/21/2018,Comedians,@dopequeenpheebs,@rgay #Goals. Congrats! You’re so inspiring! https://t.co/gka9DSxVDZ +06/20/2018,Comedians,@dopequeenpheebs,"@MattRogersTho Lmaooooooo. This is so ignorant. Straight ppl, please sit down, shut the fuck up, and quit making it… https://t.co/mSMlYg3ued" +06/20/2018,Comedians,@dopequeenpheebs,ARE YOU KIDDING?! Here’s an idea! Stop putting babies in fucking cages. The audacity that you two have to be out in… https://t.co/YOUgPVQ8Xr +06/19/2018,Comedians,@dopequeenpheebs,@barberjohn @katiefward @YouDonKnowMe @vanessabayer @GillianJacobs @_richardmadden I loved THE BIG SICK so much! +06/19/2018,Comedians,@dopequeenpheebs,If this Keebler elf looking mofo doesn’t sit his ass down somewhere and read a damn book and understand that what h… https://t.co/TvkxZEMtmt +06/19/2018,Comedians,@dopequeenpheebs,RT @saladinahmed: these people are more upset seeing black athletes kneeling than they are hearing 4-year-olds screaming in terror. just *t… +06/19/2018,Comedians,@dopequeenpheebs,"@thunderup09 @msjwilly I would def do something ig. Jess would mostly do something pretty smart, but where’s the fun in that? Haha. 😜" +06/18/2018,Comedians,@dopequeenpheebs,"@JustDesmund @msjwilly @jessicabennett See ya there, boo boo!" +06/18/2018,Comedians,@dopequeenpheebs,"@nikkidjensen Welcome to the tribe, honey! https://t.co/a27MiOYlHt" +06/16/2018,Comedians,@dopequeenpheebs,"RT @thatonequeen: Sometimes Drag Race makes me realize other things about the world. NOT ALL, but a lot of the most popular queens fall int…" +06/16/2018,Comedians,@dopequeenpheebs,@ashleyn1cole https://t.co/WsxKlIAcze +06/15/2018,Comedians,@dopequeenpheebs,RT @cameronesposito: My new special is AVAIL NOW!! https://t.co/mrdDRgIvPt to stream free or purchase to benefit @RAINN https://t.co/bxied9… +06/15/2018,Comedians,@dopequeenpheebs,@aflorall 🤣🤣🤣🤣 +06/15/2018,Comedians,@dopequeenpheebs,@karilebby @netflix You can make it!! https://t.co/u2LohQWnr9 +06/14/2018,Comedians,@dopequeenpheebs,"RT @kendrickmaslany: some girl at my job said “I’m not scared to admit I’m homophobic”, so I told my superior and she got fired today lmao" +06/13/2018,Comedians,@dopequeenpheebs,@Marix82 THANK YOU! 😘 +06/12/2018,Comedians,@dopequeenpheebs,"🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣😭😭😭😭😭😭😭😭😭😭😭😭How you gonna try and drag him when you misspelled the word “too?” It’s three letters, bruh. https://t.co/1NQbuGo3GU" +06/11/2018,Comedians,@dopequeenpheebs,"@marenjmitchell I got invited to go, but I’m in Atlanta shooting a movie. Absolutely devastated!" +06/11/2018,Comedians,@dopequeenpheebs,@MorganJerkins @tylercoates https://t.co/4X0r52tMEz +06/11/2018,Comedians,@dopequeenpheebs,"RT @havingfunsaving: #ad OMG The Slay Team @ElizabethBanks, @LauraBellBundy, @ChrissieFit, @DopeQueenPheebs & Cecily Strong are totally ""Cr…" +06/10/2018,Comedians,@dopequeenpheebs,@ragsmurph @U2 Haha. I’m going to all the MSG shows! +06/09/2018,Comedians,@dopequeenpheebs,@JasonFarrJokes Totally. +06/09/2018,Comedians,@dopequeenpheebs,@ashleympetrey Resisting. Like how ppl act like MLK Jr.’s was mostly peaceful when the reality is he was under thre… https://t.co/YP082V3ij4 +06/09/2018,Comedians,@dopequeenpheebs,@ashleympetrey Exactly. Forgot to mention that part. Haha. I’m just so mad at #45. Idk who he thinks he’s fooling o… https://t.co/0rFLd3YbMN +06/09/2018,Comedians,@dopequeenpheebs,@AlePlaysWStars Lmaoooo. This was a very bad game. 🤣🤣😭😭 +06/08/2018,Comedians,@dopequeenpheebs,Huh? I guess he’s gonna pretend Ali’s didn’t protest America’s injustices. To consider this empty ass “gesture” whe… https://t.co/8VveDZjsEJ +06/08/2018,Comedians,@dopequeenpheebs,"@SymoneDSanders Ummmmm, this person is so ignorant. https://t.co/htPnlmDTtB" +06/08/2018,Comedians,@dopequeenpheebs,"RT @CBSThisMorning: .@GayleKing had an emotional reaction to the new #WatchingOprah exhibit at @NMAAHC: ""She really is a good human who jus…" +06/07/2018,Comedians,@dopequeenpheebs,@TheNelsman Thank you! “Zooropa” is such an overlooked album when it had so many amazing songs on it! 🙌🏾🙌🏾🙌🏾 +06/07/2018,Comedians,@dopequeenpheebs,@KristinDavis @SJP @KimCattrall @CynthiaNixon Congrats! What a beautiful photo and a beautiful show. You touched so… https://t.co/5gIckSHRVM +06/07/2018,Comedians,@dopequeenpheebs,@fee_therese @U2 ⚰️⚰️⚰️⚰️ +06/06/2018,Comedians,@dopequeenpheebs,@alladinsan3 @U2BROTHR OMG! Hi!!! +06/06/2018,Comedians,@dopequeenpheebs,@fee_therese @U2 😭😭😭😭😭😭🤣🤣🤣🤣🤣🤣 +06/06/2018,Comedians,@dopequeenpheebs,@laurensieben Yay! We like the same people! Aren’t we cute! +06/06/2018,Comedians,@dopequeenpheebs,"@shreyann 😘😘😘. I got you, boo!" +06/05/2018,Comedians,@dopequeenpheebs,"@Carrie_Bland @_bacongod_ @ashleydianette Oh! Didn’t know it was your tweet, Ashley! Thanks for the laughs!!!" +06/05/2018,Comedians,@dopequeenpheebs,🤣🤣🤣🤣😭😭😭😭⚰️⚰️⚰️⚰️ https://t.co/pn2xo6YdoQ +06/05/2018,Comedians,@dopequeenpheebs,@TinyT_I_M Thank you! It’s @StellaMcCartney!! +06/05/2018,Comedians,@dopequeenpheebs,@corriepurcell https://t.co/gdnSjo9XNS +06/04/2018,Comedians,@dopequeenpheebs,"RT @2DopeQueens: ""She could pull a full Beyoncé — speaking through her work expressly — without filtering her thoughts through an interlopi…" +06/04/2018,Comedians,@dopequeenpheebs,@curlycomedy 😘😘😘😘 +06/04/2018,Comedians,@dopequeenpheebs,@carsonfrae https://t.co/wvmBGndYEX +06/03/2018,Comedians,@dopequeenpheebs,@annadrezen @vanessabayer 😘😘😘😘 +06/03/2018,Comedians,@dopequeenpheebs,@jimwilbourne @2DopeQueens https://t.co/a4uBba8YRw +06/03/2018,Comedians,@dopequeenpheebs,RT @Travon: 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 464… +06/01/2018,Comedians,@dopequeenpheebs,@raeleejgrimm It’s the seas finale! +06/01/2018,Comedians,@dopequeenpheebs,@hellodcro https://t.co/0kTkz0SAlc +06/01/2018,Comedians,@dopequeenpheebs,@katietombstone Liked it better sleeveless* Jeez. Auto correct is a mess. +05/31/2018,Comedians,@dopequeenpheebs,"@katietombstone Hahaha. They cut the sleeves off because I liked it Breyer sleeveless, too! Send me a pic when you’re done!" +05/31/2018,Comedians,@dopequeenpheebs,@SimoneRSM Ooooh! I hope you like the movie! https://t.co/zvFuTwuWG5 +05/31/2018,Comedians,@dopequeenpheebs,@rachel_handler https://t.co/DAvan30FJZ +05/31/2018,Comedians,@dopequeenpheebs,All of the love and hugs to @adamlevine & @maroon5 for asking me to be a part of the amazing “Girls Like You” music… https://t.co/KK20MqqsrL +05/30/2018,Comedians,@dopequeenpheebs,@awkwafina https://t.co/YkZR3NlR9d +05/30/2018,Comedians,@dopequeenpheebs,@leonardmaltin @YouDonKnowMe @jessiemaltin @DanielleHope26 @NetflixUK @GillianJacobs @vanessabayer @_richardmadden… https://t.co/LAXJtwFNxO +05/30/2018,Comedians,@dopequeenpheebs,@MissNyle 😘😘😘😘 +05/30/2018,Comedians,@dopequeenpheebs,"@MorganJerkins Honestly, I tried reading it and got 50 pgs in and stopped. Never picked it up again. 🤷🏽‍♀️🤷🏽‍♀️🤷🏽‍♀️" +05/29/2018,Comedians,@dopequeenpheebs,BLOOP! I’m so pumped to join the cast of #WhatMenWant! Can’t wait for y’all to watch this!: https://t.co/gx2pUCtegd +05/29/2018,Comedians,@dopequeenpheebs,@ScottAukerman You are truly a gem! Please have me on more of your podcast so I can be a mediocre guest and laugh a… https://t.co/FbSITFpYrF +05/28/2018,Comedians,@dopequeenpheebs,@AmberSeva Link?!?! This is nuts! +05/28/2018,Comedians,@dopequeenpheebs,RT @BravoWWHL: TONIGHT at 11/10c it’s #WWHL w/ @GillianJacobs @vanessabayer & @dopequeenpheebs! https://t.co/5PUeV8DYEe +05/27/2018,Comedians,@dopequeenpheebs,@bekahparrish Just stare and scream. Haha. +05/26/2018,Comedians,@dopequeenpheebs,@NateMartinTO Ooooo! I like that! +05/25/2018,Comedians,@dopequeenpheebs,@iKeralot THANK YOU SO MUCH! +05/24/2018,Comedians,@dopequeenpheebs,Hell. Yes. None of us are equal until all of us are. @ONECampaign’s #PovertyisSexist movement is so vital that I’m… https://t.co/sxsWrlG8sw +05/23/2018,Comedians,@dopequeenpheebs,"Exciting news, boo boos! I went on @LateNightSeth to reveal the cover from my upcoming book “Everything’s Trash, Bu… https://t.co/e1gGWLWIcr" +09/26/2014,Comedians,@dopequeenpheebs,"RT @amandaseales: i need to publish a book of our greatest #scandal tweets cc: @Bossip +@MadameNoire @imcharlaface @PRobinsonComedy @Blacktr…" +09/24/2014,Comedians,@dopequeenpheebs,RT @amandaseales: Lookin like 4 sides of a Shea butter box! Laughs w/ @chescaleigh @PRobinsonComedy @msjwilly at @UCBTheatreEast http://t.c… +07/01/2018,Comedians,@iliza,This is tonight. Two shows. Gonna do my new hour twice. 🦊 will be there. ❤️🇺🇸🎉✌️ @ Ice House Comedy Club https://t.co/5pPtVZo9Ij +06/30/2018,Comedians,@iliza,@danielletbd @NetflixIsAJoke I would never leave her out! https://t.co/Ok7nSgrFY7 +06/29/2018,Comedians,@iliza,#montreal I will be doing ONE NIGHT @justforlaughs JULY 27! Get your tickets at https://t.co/zUHxXXLnfP and see me… https://t.co/RynSnQppWM +06/28/2018,Comedians,@iliza,RT @rejects: I’m all-in on the new @iliza. https://t.co/tksGOthSjP +06/28/2018,Comedians,@iliza,BREAK OUT YOUR RAZR PHONE AND TEXT YOUR FRIENDS TO WATCH MY NEW @NetflixIsAJoke SPECIAL #ElderMillennial on JULY 24… https://t.co/hrOlwZzapT +06/28/2018,Comedians,@iliza,@LucysGorge YES! Come see me in Maui or Honolulu! https://t.co/dxmHR7oaxt +06/28/2018,Comedians,@iliza,"Tonight, #partygoblin ©️ got to the her story of how she came to be. 💚It was tearful, true and super gross. Thank y… https://t.co/5osYNMGvy2" +06/27/2018,Comedians,@iliza,@bennallsop @NetflixIsAJoke @UGG @juicycouture @netflix soon +06/27/2018,Comedians,@iliza,@JenniMarie684 @channingtatum OH MY GOD AND GET A PICTURE!!!! +06/26/2018,Comedians,@iliza,Today @billnye gave me a pin off his own lapel and now I have space credentials and I’m gonna send a picture to my… https://t.co/j1ThwyNAaF +06/26/2018,Comedians,@iliza,"#dogfear Anytime, anywhere. https://t.co/HVOEtixOZu" +06/26/2018,Comedians,@iliza,"Today I showed @billnye the densest body in our galaxy, a star in the Lamb Cluster nebula, Star SmalliusRarian384… https://t.co/vtLdZpqy8X" +06/25/2018,Comedians,@iliza,"2 SHOWS THIS SATURDAY IN #PASADENA 🦊 WILL BE THERE! +#standupcomedy #comedy #lastandup #standup #eldermillennialtour… https://t.co/xMOLES1GqN" +06/25/2018,Comedians,@iliza,I’ll be at The Mirage @themiragelv for #4thofjuly weekend! Come see me and @hunter_hill and grab your VIP 🎟🤝 ❤️at… https://t.co/OOD6jMozNz +06/25/2018,Comedians,@iliza,@SrhHdlw Me and the people putting out all the artwork and promo stuff for the #ElderMillennial @NetflixIsAJoke special! +06/25/2018,Comedians,@iliza,"RT @_ChelseaChelsea: @hannahrae97 @brookespencer22 BOOM, Gladys. LET’S. PARTY. +-bags of deli turkey +-local pharmacy employees +-pregaming wi…" +06/25/2018,Comedians,@iliza,@HaydenCreates @dejecteddog hmmmmmmmmmmm? +06/25/2018,Comedians,@iliza,@jakesonaplane Force'em! +06/25/2018,Comedians,@iliza,Are you planning an #ElderMillennial watch party? We want to know about it! +06/25/2018,Comedians,@iliza,@urbostonceltics @EmersonCollege We actually were friends haha +06/25/2018,Comedians,@iliza,1997- Present: An autodidactic education in comedy. ❤️There is no right or wrong way to love comedy. Some people ha… https://t.co/32eIUSpRul +06/24/2018,Comedians,@iliza,We would get our fake IDs from #oklahoma because they didn’t have holograms so they were easy to replicate. “Just a… https://t.co/DIcoh2fvt0 +06/24/2018,Comedians,@iliza,Found my @emersoncollege senior yearbook. #boston #emerson #emersoncollege #yearbook #salad https://t.co/jxRZxlDZgh +06/23/2018,Comedians,@iliza,RT @Hunter_Hill: Two sold out shows @RecRoomHB w/ @iliza tonight! Super excited. +06/23/2018,Comedians,@iliza,"We have to start having real conversation with each other, not from anger but to further understanding.I don't like… https://t.co/vKh1h4yHRE" +06/23/2018,Comedians,@iliza,"@tyger429 I'm saying this not from a place of anger but education. You don't start with murder, you start with gal… https://t.co/iO1I2JHTXa" +06/22/2018,Comedians,@iliza,"And the saddest part is, you can't bring up immigration without people saying ""oh so just let them all in?"" or ""LET… https://t.co/rlBSnrS8o1" +06/22/2018,Comedians,@iliza,"I was not a Trade Unionist.Then they came for the Jews, and I did not speak out—Because I was not a Jew. Then they… https://t.co/cMMzw8HYuf" +06/22/2018,Comedians,@iliza,I can't believe this isn't the first time I've felt compelled to post this... Remember the words of Martin Niemölle… https://t.co/XQmJ0AEjYn +06/22/2018,Comedians,@iliza,never see your kid again and their life is ruined as well? That is insane. That's like cutting off a hand for steal… https://t.co/MgZHFrmjxJ +06/22/2018,Comedians,@iliza,Of course you should be punished for crossing illegally but... Do we not think these punishments are exceeding the… https://t.co/lfi5VBFYpo +06/22/2018,Comedians,@iliza,"He's creating an enemy, coming up with an excessive solution, having YOU pay for it as a tax payer and getting a pe… https://t.co/pDSppBJEGt" +06/22/2018,Comedians,@iliza,You can trot out 100s of people from any group and claim them as the face of a problem. The minority doesn't repres… https://t.co/fMBwWJSst3 +06/22/2018,Comedians,@iliza,This has all the makings of a Holocaust. It's not enough to keep saying #neveragain if we stand by. I'm all for bor… https://t.co/kBMuU7iP0Q +06/22/2018,Comedians,@iliza,RT @AmericanGreedTV: @iliza @HollywoodImprov @TheComedyStore Hey July 24th! What's keepin' ya? New @iliza Special on @netflix . +06/22/2018,Comedians,@iliza,TONIGHT! I'm @HollywoodImprov 8pm show and @TheComedyStore at 9:30! +06/22/2018,Comedians,@iliza,"Oh wow, this gets really good at 1:27!! + +https://t.co/KYrca7U9qs" +06/22/2018,Comedians,@iliza,@kimh0013 I never got through +06/22/2018,Comedians,@iliza,@Kristen_Bashaw That's a trend that's still alive and well in many suburbs of America +06/22/2018,Comedians,@iliza,"@BunsAndBites I cut up so many tights to go under my skirt, ugh" +06/22/2018,Comedians,@iliza,Thanks @Variety https://t.co/ZeA5tDyuM3 !! +06/21/2018,Comedians,@iliza,"4- And I could wake up with a full face of last night's make up, eat 2 burritos, do some odd job, 7 minutes of okay… https://t.co/xBzdqbTk3d" +06/21/2018,Comedians,@iliza,3- I had worn these like 20 dollar trash boots I had gotten at some garbage store on Melrose and they hurt my feet… https://t.co/qJ0THXWyxN +06/21/2018,Comedians,@iliza,"2- monster club promoter, this awful woman in, of course, a fedora, made me pay her for the carton, she wouldn't ev… https://t.co/nwOo5QECiv" +06/21/2018,Comedians,@iliza,"1 - Being an LA #Eldermillennial was gross. I got a job at the coat check for, what was, Pray (now Nightingale Plaz… https://t.co/iFCD1i5Xk2" +06/20/2018,Comedians,@iliza,My greatest #eldermillennial memory is being 23 and thinking we were crushing life because we got into garbage club… https://t.co/QtTZelahX9 +06/20/2018,Comedians,@iliza,@danielletbd THANK YOU FOR THE SUPPORT! +06/20/2018,Comedians,@iliza,"@danielletbd totally, you just have to whisper ""trademarked"" every time you say it." +06/20/2018,Comedians,@iliza,"@danielletbd Hey, thank you for not tagging me in that, I appreciate that. I have no idea how you ended up blocked,… https://t.co/VNsRQBGjvt" +06/20/2018,Comedians,@iliza,"@no_day_but_2day I'd always be like ""it's not Saved by the Bell, but it will do.""" +06/20/2018,Comedians,@iliza,RT @kittykatelc: Let me tell you about my girl crush @iliza and her latest comedy show #ElderMillennial https://t.co/rPLnVapNF4 https://t.c… +06/20/2018,Comedians,@iliza,@kittykatelc Hey! Thank you for this! +06/20/2018,Comedians,@iliza,"@AmberRetro so much, all over everyone." +06/20/2018,Comedians,@iliza,@dayvidgrad Bahahaha devil sticks on every outdoor promenade and in the quad of every college. +06/20/2018,Comedians,@iliza,@LisaKayyye Did? Do. Still do. +06/20/2018,Comedians,@iliza,"Well guys, I'm gonna use all my minutes calling you on my LG Chocolate because @ParisHilton liked my tweet. The… https://t.co/nmWojyk9dF" +06/20/2018,Comedians,@iliza,"#eldermillennial memories also included lot of lower belly exposure, wrist sweatbands, leopard print belts and thin… https://t.co/ypaKD8o254" +06/20/2018,Comedians,@iliza,"@heidig121011 hated handkerchief tops but loved butterfly clips. Ew yeah, those straps fooled no one." +06/20/2018,Comedians,@iliza,@TheHezzEffect Waiting for seconds at a time! +06/20/2018,Comedians,@iliza,"@kisoumcg She was the early 2000s, she guided us. @ParisHilton was our God." +06/20/2018,Comedians,@iliza,"@itschelsfoster And you'd always think ""oh great, I'll make all my calls then"" but somehow I never felt I got my money's worth" +06/20/2018,Comedians,@iliza,@BeingZhenya and roll over minutes +06/20/2018,Comedians,@iliza,"@TehSoundTehFury ""Mom, raving is a way of life. PLUR.""" +06/20/2018,Comedians,@iliza,@Sarah__Deline OMG THE WORST hahaha +06/20/2018,Comedians,@iliza,"What are some of your #eldermillennial memories? Mine are all nightmares: low rise jeans, body glitter, tinted sung… https://t.co/td0sxggH2h" +06/20/2018,Comedians,@iliza,My new and 4th @NetflixIsAJoke special comes out July 24th! So grab your @UGG boots and @juicycouture sweatsuits an… https://t.co/Cs7ZeVSQ4G +06/20/2018,Comedians,@iliza,I’m excited to announce the premiere date of my… https://t.co/vBduCFirzb +06/20/2018,Comedians,@iliza,"I have a very special announcement for you at all 11am PST tomorrow morning... + +https://t.co/1lDsjbte0U https://t.co/692Rp94hQV" +06/19/2018,Comedians,@iliza,HUNTINGTON BEACH! This SATURDAY! I’m running… https://t.co/FQV58M5BXB +06/19/2018,Comedians,@iliza,"@SaltLifeGirl14 Party Goblin says AGN498792O23^*OI&%ROH:HIONVWN'IO43[HOWIGBV;BVJN/LWNKL)*%) + +She has claws, she can't type" +06/19/2018,Comedians,@iliza,@ldisalmostfunny I was just there. I'll be back. Also that drink sounds amazing. +06/19/2018,Comedians,@iliza,Wow! At https://t.co/t3hNHRfBvs When you buy a 💚🦊🍤 pin set you… https://t.co/C4h3XE4IYF +06/19/2018,Comedians,@iliza,"#Newyork in November. 🦊🍁🍂 +See you… https://t.co/bB5GpERwuR" +06/18/2018,Comedians,@iliza,"#Boston 💚🦊🍤 +. +. +. +. +#boston #bostoncomedy… https://t.co/n4ha9uV5Gv" +06/18/2018,Comedians,@iliza,"Your #4thofjuly plans should be as follows: +1)… https://t.co/x1AOHMxbob" +06/16/2018,Comedians,@iliza,You just have to know what’s in these burritos… https://t.co/7tlARdnSgc +06/16/2018,Comedians,@iliza,Oooooo see me headline Kaaboooooo! Get tickets… https://t.co/PyKATezwcH +06/15/2018,Comedians,@iliza,@iliza only looked mildly worried about her… https://t.co/u6z9EYCQ24 +06/15/2018,Comedians,@iliza,NO ONE GETS TO HAVE BLONDE HAIR BUT ME! Jk. Fun… https://t.co/4EOVgPnmTF +06/15/2018,Comedians,@iliza,This was our wedding ode to Velasquez’s “Las… https://t.co/dxf5U3sW0B +06/15/2018,Comedians,@iliza,The one I posted before was blurry so here it is… https://t.co/2OWInsJm1q +06/15/2018,Comedians,@iliza,The one I posted before was blurry so here it is… https://t.co/yIT5jhsL5b +06/15/2018,Comedians,@iliza,Yes I put LED lights in my hair for our first… https://t.co/BOF5Nv4EEZ +06/15/2018,Comedians,@iliza,@wolfegrrl @netflix so soon +06/14/2018,Comedians,@iliza,"Priorities were- +1- Balloon cloud sculpture +2-… https://t.co/YBePcmMlP3" +06/14/2018,Comedians,@iliza,I picked my best friend and threw the bouquet… https://t.co/uiMB6HrEnT +06/14/2018,Comedians,@iliza,I loved my #chuppah - that room was so perfect… https://t.co/X5SEC6sxFO +06/13/2018,Comedians,@iliza,Our wedding 🤵🏻👰🏼🦊 and the full story is at… https://t.co/X6SzfhrMGN +06/12/2018,Comedians,@iliza,@MikeDrucker Putting this on a Father's Day card +06/12/2018,Comedians,@iliza,@cpmcclennan Fish vaginas! +06/12/2018,Comedians,@iliza,@1AndrewRose Such a long walk for the shortest sip of water +06/12/2018,Comedians,@iliza,"I'm HEADLINING kaaboodelmar on Saturday,… https://t.co/xe3hdR7xoW" +06/12/2018,Comedians,@iliza,@MyKneeShakes To let others know they are not alone! *Blows dust *disappears +06/12/2018,Comedians,@iliza,See me in #Montreal at @justforlaughs for one… https://t.co/mnQW9kL5GD +06/10/2018,Comedians,@iliza,"🎉TONIGHT🎉 +Come see me @thecomedystore… https://t.co/3BpynAnKCh" +06/08/2018,Comedians,@iliza,RT @TheComedyStore: 9pm Original Room tonight see @marcmaron @iliza @SklarBrothers @TheoVon +more til 2! Less than 20 tickets left: https:/… +06/08/2018,Comedians,@iliza,@JohnMZ91493 Thank you for reading! +06/07/2018,Comedians,@iliza,RT @lorigibbs: Calgary & Edmonton. I will be opening for @iliza… https://t.co/UEEON6UfEr +06/07/2018,Comedians,@iliza,Today’s… https://t.co/HHaMRbpkD8 +06/07/2018,Comedians,@iliza,RT @HollywoodImprov: TMRW! @Iliza @JamieKennedy @TheoVon @SklarBrothers @RafinhaBastos & @BrianMonarch are taking the stage! Get your ticke… +06/06/2018,Comedians,@iliza,So much rural #canada so little time.… https://t.co/WIXubi8jEQ +06/06/2018,Comedians,@iliza,THIS WEEK I'll be @TheComedyStore TONIGHT: 9:15. THURSDAY: 9:45 FRIDAY: 10:45 SATURDAY: 8:30 & 10:30 AND @HollywoodImprov THURSDAY at 10:15! +06/06/2018,Comedians,@iliza,@CB__Comedy Can't stop won't stop +06/05/2018,Comedians,@iliza,"When my friend @pbernon showed me this hilarious photo mix up in @THR today my first thought was ""Finkle is Einhorn… https://t.co/tZ0hUwsMUd" +06/05/2018,Comedians,@iliza,"May this sticker shame, inspire and or motivate… https://t.co/vXPPMdnShp" +06/04/2018,Comedians,@iliza,"SECOND SHOW ADDED IN PORTLAND! 🌲☕️🧘‍♀️🍻🌥👓🎒 +GET… https://t.co/k2W1nBzmBB" +06/04/2018,Comedians,@iliza,Me looking for places to go for our trip: “I… https://t.co/qqDwOKqTbn +05/31/2018,Comedians,@iliza,"I’M COMING TO EAT YOU, NEW YORK! BLANCHE IS… https://t.co/aHAjhYIPoh" +05/30/2018,Comedians,@iliza,https://t.co/UpNX7h5Bns for your 🎟&🤝 https://t.co/KT01qjxjcf +05/29/2018,Comedians,@iliza,"PORTLAND: We’ve added a second show! Tickets for August 25th go on sale this Friday, June 1st. 🎟 https://t.co/if1Pu3ZKnD" +05/29/2018,Comedians,@iliza,Loving #1968 @CNNOriginals - great history lesson/recap for #MemorialDayWeekend @CNN +05/29/2018,Comedians,@iliza,“The Shade Of It All” https://t.co/651qyHpA76 +05/28/2018,Comedians,@iliza,Add some beauty to your life and follow her… https://t.co/6I8VRWe05k +05/27/2018,Comedians,@iliza,Thank you to thejointstaff @the_uso for… https://t.co/xOk0Zkg5nh +05/27/2018,Comedians,@iliza,My fans remembered that a year ago today I got… https://t.co/oAX7whrvsU +05/26/2018,Comedians,@iliza,"@KelseyEIngram Nice try, pretty girl! 🤗😍" +05/26/2018,Comedians,@iliza,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 +Patrick Henry said “Give me… https://t.co/NgEZWRUmEs" +05/26/2018,Comedians,@iliza,@smallpools I AM ON MY HONEYMOON AND I AM SO SAD I MISSED THIS! I got your new single and will be listening to your… https://t.co/q3VaTTncbI +05/26/2018,Comedians,@iliza,RT @HOT107Edmonton: She is the only female and youngest comedian to hold the title of NBC's Last Comic Standing! @iliza Shlesinger will be… +05/24/2018,Comedians,@iliza,"#eldermillennialtour has bar laced its sneakers,… https://t.co/g4rTPLlqFw" +05/24/2018,Comedians,@iliza,"#eldermillennialtour has bar laced its sneakers,… https://t.co/ZZJv4R3GaN" +05/21/2018,Comedians,@iliza,The #eldermillennialtour is selling OUT! And we… https://t.co/fefJS2tTtP +05/18/2018,Comedians,@iliza,Tickets are now on sale for #JFLMTL! https://t.co/y02GKu9I5I https://t.co/MmbG1gRLQ8 +05/17/2018,Comedians,@iliza,"I can hear both. But if you never said “yanny” which isn’t a thing, everyone would hear Laurel. Just like when som… https://t.co/tqu9sbVjxF" +05/17/2018,Comedians,@iliza,@ditzkoff Oh wow I am very much looking forward to checking this out! Been a fan of yours for a while and this looks awesome!! +05/17/2018,Comedians,@iliza,"RT @exclaimdotca: Just for Laughs adds names to the #JFLMTL lineup, continues bid to become comedy's Coachella: https://t.co/TJAmkXNBS6 htt…" +05/17/2018,Comedians,@iliza,@CraigGeraghty Awwedding twins!!! +05/17/2018,Comedians,@iliza,MONTREAL! Every few years I return to your city… https://t.co/wT1OrwlA5I +05/16/2018,Comedians,@iliza,RT @iliza: Hey Party Goblins! Join me for Just For Laughs Montreal July 27th! Pre-sale tickets are available now with code JFLMTL. https://… +05/16/2018,Comedians,@iliza,It’s in print so it has to be true! Thanks @usweekly https://t.co/mmJYMsHpBY +05/16/2018,Comedians,@iliza,Hey Party Goblins! Join me for Just For Laughs… https://t.co/heGFtUxRGa +05/16/2018,Comedians,@iliza,Hey Party Goblins! Join me for Just For Laughs Montreal July 27th! Pre-sale tickets are available now with code JFL… https://t.co/NJvPkEqxLY +05/16/2018,Comedians,@iliza,RT @wlcmdistraction: #GirlLogic by @iliza is $1.95 on @audible_com TODAY ONLY!!! Go buy it now! You have no excuses... unless you're a chea… +05/16/2018,Comedians,@iliza,"@united can someone DM me about why, stuck in Austria, you guys kicked me off my flight and put me on a later fligh… https://t.co/C05uVDi3fE" +05/15/2018,Comedians,@iliza,RT @the_USO: Thanks @iliza for joining us as a Force Behind the Forces! #BeTheForce https://t.co/btUXarkV6X +05/15/2018,Comedians,@iliza,See you in a few weeks my special lamb. In 🇮🇹 you are piccolo e… https://t.co/DeBnE4vAmG +05/15/2018,Comedians,@iliza,I'm proud to wear my support of our service men & women! #BeTheForce Behind the Forces with @the_USO by supporting… https://t.co/O03dqxpaZs +05/14/2018,Comedians,@iliza,RT @GreyEagleResort: Congratulations to @iliza and @galuten on their beautiful wedding! Catch her in all her newlywed hilarity this August… +05/14/2018,Comedians,@iliza,"@KAABOODELMAR @galuten Aw, thank you. See you guys in September 🎤☀️🌴" +05/14/2018,Comedians,@iliza,RT @usweekly: Former 'Last Comic Standing' winner Iliza Shlesinger marries chef Noah Galuten https://t.co/FdzroQD99N @iliza @galuten +05/14/2018,Comedians,@iliza,And here are the 534 rhinestones and pearls I glued to my Nikes. Thanks for mentioning that detail @usweekly… https://t.co/ms85V6gJkd +05/14/2018,Comedians,@iliza,"Turns out, “Thanks so much for coming out tonight” applies to ending comedy shows and weddings. On behalf of me and… https://t.co/4wEYn5nYVb" +05/14/2018,Comedians,@iliza,@AmericanGreedTV @ChuckCNBC Thanks guys! +05/13/2018,Comedians,@iliza,"#Repost @usweekly with get_repost +・・・ +Comedian Iliza Shlesinger has… https://t.co/CErXyqYMxK" +05/13/2018,Comedians,@iliza,RT @usweekly: Comedian Iliza Shlesinger marries chef Noah Galuten https://t.co/FdzroQD99N @iliza @galuten +05/13/2018,Comedians,@iliza,Comedian Iliza Shlesinger Marries Chef Noah Galuten https://t.co/zPkDOFhDYk SMOKEY HUSKY HAS A REAL NAME!!! +05/12/2018,Comedians,@iliza,"RT @LilMsShrtCake: @iliza wanted2say Congrats🍾🍀👰🏼🎩I’ve been👀all ur adventures w Smokey @galuten he’s def the1, he truly adores U & Bebo💛 &…" +05/12/2018,Comedians,@iliza,21 Jumpsuit @ Drago Centro https://t.co/YWmGDKsMsI +05/10/2018,Comedians,@iliza,RT @RecRoomHB: Just announced & tickets are MOVING! Don’t miss our BFF @iliza! One night. Two shows. Share the gospel. https://t.co/8qEtl3Q… +05/10/2018,Comedians,@iliza,"RT @TheCrofoot: Did you hear? We're bringing @iliza to @michigantheater on September 28th. +Tix: https://t.co/fAYxhcXYUa https://t.co/XX8wuh…" +05/10/2018,Comedians,@iliza,"@BassTrilogy @jimjefferies Like a slow Phoenix, i will rise and return..." +05/10/2018,Comedians,@iliza,@UncleWolfox No bottled water. Most people are not that dehydrated that we need compacted water within arm’s reach at all times. +05/10/2018,Comedians,@iliza,@TheMrWulff12 Why would I have a lawn when there is a drought! Now step away from my SUV! +05/10/2018,Comedians,@iliza,"Smoking cigarettes looks cool, there is no denying it. But aside from that? It’s a vile selfish habit and you compo… https://t.co/My96wlnUvf" +05/10/2018,Comedians,@iliza,I did it. I finally said “try a trash can next time” to someone who threw their LIT cigarette into the street. I’m… https://t.co/O1kYNIbaEB +05/10/2018,Comedians,@iliza,@AmyKinLA No one who would carry that is actually eating that. +05/09/2018,Comedians,@iliza,LAS VEGAS! Come for the 🇺🇸 stay for the #partygoblin #4thofjuly… https://t.co/nBFXJui1Y1 +05/09/2018,Comedians,@iliza,"RT @GregLongstreet: Why are the closing credits to ""Predator"" like the opening credits to a 70s/80s era sitcom? https://t.co/n2xzqRxDFD" +05/09/2018,Comedians,@iliza,SECOND SHOW ADDED IN #Boston @the_wilbur GO TO https://t.co/H8ipefMDIP for 🎟 VIP… https://t.co/ULKXNMks8U +05/09/2018,Comedians,@iliza,"RT @rBostonComedy: Second show added to see +@Iliza: Elder Millennial tour at @The_Wilbur +Saturday, September 22nd - 9:45PM +Presale HAPPENIN…" +05/09/2018,Comedians,@iliza,"RT @rBostonComedy: Second show added to see +@Iliza: Elder Millennial tour at @The_Wilbur +Saturday, September 22nd - 9:45PM +Presale begins N…" +05/09/2018,Comedians,@iliza,"RT @Do617: ☀️ Good morning, millennials! LATE SHOW ADDED BY POPULAR DEMAND for @iliza #ElderMillenial at @The_Wilbur! Use Code DO617 to get…" +05/09/2018,Comedians,@iliza,"Thank you @WeAreTheMighty and @the_USO for using a picture of me when I had like, really good hair! Support our tro… https://t.co/TlECKRcMZY" +05/09/2018,Comedians,@iliza,Tonight was my last set as a non married woman and I'm glad I got it out of my system because I FUCKED THAT CROWD t… https://t.co/kr4knw8k9g +05/09/2018,Comedians,@iliza,@vanessa_dews YES! Hopefully this winter! (American winter) +05/09/2018,Comedians,@iliza,RT @TheComedyStore: 9pm Original Room @madflavor @realjeffreyross @iliza @SebastianComedy @bobbyleelive @thechrisspencer @SteveRannazzisi @… +05/08/2018,Comedians,@iliza,@unrulyhooly AND MY DOG! +05/08/2018,Comedians,@iliza,@drewmagary @mattufford Just read this- @drewmagary is hilarious and @mattufford i will now follow you into traffi… https://t.co/9c6YDudqvT +05/08/2018,Comedians,@iliza,"RT @drewmagary: Your FUNBAG guest host this week is the incomparable @mattufford, so dig in. https://t.co/n4MeShlhid" +05/08/2018,Comedians,@iliza,"@piersmorgan K, this is what white women would look like with payot... https://t.co/SUoMOZ77bV" +05/08/2018,Comedians,@iliza,I didn’t want to interrupt him while he was having a conversation so… https://t.co/Z9kkkOhHDI +05/08/2018,Comedians,@iliza,@davejorgenson @laurenduca Hahaha +05/08/2018,Comedians,@iliza,Tickets 🎟🎟 VIP 🤝 meet and greet for my #eldermillennialtour at… https://t.co/SQHUbnDXtv +05/08/2018,Comedians,@iliza,#MetGala https://t.co/THFxKOBr44 +05/07/2018,Comedians,@iliza,A “Good Vibes Only” sign in your business is a great way to let people know your staff is incapable but anyone who notices that too uptight. +05/07/2018,Comedians,@iliza,"SECOND SHOW ADDED TO #BOSTON +Venue Presale: Wednesday, 5/9 @ 12PM EST – Thursday, 5/10 @ 11:59PM EST +Presale Code:… https://t.co/Mn400kNAX4" +05/07/2018,Comedians,@iliza,"@hankypanty @JeeyaDhadkDhadk @TheComedyStore Oh wow, thank you!" +05/07/2018,Comedians,@iliza,@lorigibbs @thatonequeen What you need to know about her? ENTER THAT ROOM #PURSEFIRST 👛☝️ +05/06/2018,Comedians,@iliza,@lorigibbs @thatonequeen Also @TheBiancaDelRio is so witty and so quick she makes us look like we just woke up. She is an assassin! +05/06/2018,Comedians,@iliza,@lorigibbs @thatonequeen He is hilarious! +05/06/2018,Comedians,@iliza,@lorigibbs OH MY GOD CALL ME IF YOU HAVE ANY QUESTIONS ABOUT ANY EPISODE EVER +05/06/2018,Comedians,@iliza,@wyldride Omg that is genius hahahahahahah +05/06/2018,Comedians,@iliza,Just a close up of my wedding dress because I want the judgement to be granular and blossom into something I can ca… https://t.co/4w03jDeafo +05/06/2018,Comedians,@iliza,Making these for the honeymoon plane ride that way when i flip out at an airline and get detained in a foreign jail… https://t.co/E1D0Q71OCo +05/06/2018,Comedians,@iliza,"@jakesonaplane Hey man, thanks 🍤" +05/05/2018,Comedians,@iliza,RT @HOT107Edmonton: Iliza Shlesinger brings her Elder Millennial Tour to @RiverCreeCasino on August 18th! Enter now to win tickets to see c… +05/05/2018,Comedians,@iliza,RT @TheComedyStore: 7pm Main Room @DaneCook @marcmaron @iliza @brianmonarch +more! Only 39 tickets left: https://t.co/yvyhW7ekJ2 +05/05/2018,Comedians,@iliza,We overhype mediocrity because we look for anything to represent hope and change... and not all are always capable… https://t.co/qn3pr6SL03 +05/05/2018,Comedians,@iliza,RT @AccessVegas: Iliza Shlesinger Performing Live in #Vegas July 7. Tickets: https://t.co/VOHjpymiNl @iliza https://t.co/xJv9Augss3 +05/05/2018,Comedians,@iliza,I don’t care what a fucking DJ thinks. +05/04/2018,Comedians,@iliza,See you guys Saturday @TheComedyStore SATURDAY AT 9 and 10:30. Main Room. Get 🎟🎟 now. +05/03/2018,Comedians,@iliza,Hair inquiry and tutorial. #hair #bun #fashiom #juice #blonde #caleb… https://t.co/3U155lxEaA +05/02/2018,Comedians,@iliza,Get your tickets at https://t.co/t3hNHRfBvs and don’t yip at me about your city not being… https://t.co/64Oe31nYYj +05/02/2018,Comedians,@iliza,@Taurustempest Beautiful! +05/02/2018,Comedians,@iliza,"RT @Taurustempest: @iliza So happy you're coming to Indy! Tickets: bought! Now, do I make a new shirt or stick with the Kinnamon one? Hmmm.…" +05/02/2018,Comedians,@iliza,@MeganShook Pretty sure i already have this dog +05/01/2018,Comedians,@iliza,I’ll be @TheComedyStore this Saturday night for 2 shows. Starting at 9! +04/30/2018,Comedians,@iliza,🎟and 🍖🤝 (Tickets and meat and greet with 🦊) available for you at https://t.co/UpNX7h5Bns https://t.co/hVFBawLM2J +04/30/2018,Comedians,@iliza,@JoshMartin85 IT HAS BEEN WRITTEN! +04/30/2018,Comedians,@iliza,@Coloradotrv @DLisaShayn1 Actually- not since the Dean Martin ones have they come with love and respect. +06/04/2018,Comedians,@aliwong,#FYC https://t.co/wy77yUlBL3 +05/30/2018,Comedians,@aliwong,!!!!!!!!!!! https://t.co/01YveutU2c +05/25/2018,Comedians,@aliwong,Is Sunday here yet????!!!! https://t.co/XMAlqjNQsl +05/21/2018,Comedians,@aliwong,This made my day! https://t.co/HV159BlzUW +05/16/2018,Comedians,@aliwong,Thank you for watching https://t.co/M6geV7jq0c +05/16/2018,Comedians,@aliwong,RT @ImMegDonnelly: WHO’S WATCHING #AMERICANHOUSEWIFE TONIGHT?!?!?!? 🤩🤩🤩 +05/15/2018,Comedians,@aliwong,RT @MadyColey: My mom trying to watch the new @aliwong Netflix special and DYING https://t.co/bXbpk2u5Nn +05/14/2018,Comedians,@aliwong,@mulaney 😭😭😭😭😭 +05/13/2018,Comedians,@aliwong,"Happy Mother’s Day to the true, original #HardKnockWife https://t.co/2KSfpqsW8P" +05/08/2018,Comedians,@aliwong,#fysee https://t.co/xeKs0kZNqK +05/07/2018,Comedians,@aliwong,RT @TheAVClub: .@aliwong joins @TiffanyHaddish in #BoJackHorseman team's new show https://t.co/1zvzogRmWD https://t.co/WWBoCVEdFt +05/05/2018,Comedians,@aliwong,I have watched this 10 times today. I plan on watching it 10 more times before I sleep. https://t.co/S0RMBV3P3a +05/03/2018,Comedians,@aliwong,@davidchang @uglydelicious @colbertlateshow !!!!!! +05/02/2018,Comedians,@aliwong,https://t.co/dqLshTINdY +05/02/2018,Comedians,@aliwong,RT @WendyMolyneux: Dennis Miller all night tonight figuring out those perfect Michelle Wolf burns for tomorrow. https://t.co/gapdqQsSOF +05/01/2018,Comedians,@aliwong,RT @ItsMeCathi: James Shaw Jr. is paying for the funeral of each of the four Waffle House shooting victims out of the gofundme monies raise… +04/30/2018,Comedians,@aliwong,"@mulaney sold out a bajillion shows at Radio City, and if you watch this special, you'll see why. i cannot wait. https://t.co/8wjsmSIyGP" +04/30/2018,Comedians,@aliwong,BOSTON! The first 3 shows are SOLD OUT but there are a few tix left for the 4th this Saturday. Tix here: https://t.co/8IazHOyzlr +04/30/2018,Comedians,@aliwong,RT @neiltyson: When did it become okay to be more offended by what someone with no power says than by what someone with power does? +04/29/2018,Comedians,@aliwong,@michelleisawolf was freaking AMAZING tonight at the #WHCD !!!!! +04/29/2018,Comedians,@aliwong,@michelleisawolf SHE WAS AMAZING!!!! https://t.co/TsrDvLP0Xh +04/29/2018,Comedians,@aliwong,RT @iamwandasykes: This man is a Hero! I want him in the next Black Panther movie! #bravery #compassion I ❤️ this dude! https://t.co/sEVz8… +04/29/2018,Comedians,@aliwong,RT @Emma4Change: my hero James Shaw Jr. https://t.co/BRnuYEURdv +04/19/2018,Comedians,@aliwong,@TheComedyStore THANK YOU!!! +04/19/2018,Comedians,@aliwong,"RT @anthonyjeselnik: Ali Wong is one of the absolute funniest comics working right now. And watching this trailer, it's impossible to see…" +04/18/2018,Comedians,@aliwong,@Bradleyduaneinc May 13! +04/17/2018,Comedians,@aliwong,THESE ARE MY FRIENDS AND I LOVE THEM SO MUCH! https://t.co/TGdpiIrH4N +04/16/2018,Comedians,@aliwong,My homie @amyschumer stars in a new movie #ifeelpretty opening this Friday!!!! https://t.co/41KwJhq0EM +04/13/2018,Comedians,@aliwong,RT @TheEllenShow: .@AliWong has suffered enough. https://t.co/O5FpB8GloO +04/13/2018,Comedians,@aliwong,"RT @NetflixIsAJoke: .@AliWong is back, she's twerking, and she's ready to deliver. Mother's Day 2018. #HardKnockWife https://t.co/afNg4ZTEkN" +03/30/2018,Comedians,@aliwong,Oh my gahds!!!!! https://t.co/RgUHshJowz +03/28/2018,Comedians,@aliwong,"RT @kumailn: ICE arrests have increased 30%. The fastest-growing category of arrests? Those with no criminal records. + +That's why I joined…" +03/27/2018,Comedians,@aliwong,RT @dianeguerrero__: The #WeHaveRights series by @ACLU empowers you to know and defend your rights in encounters with ICE. https://t.co/Iy… +03/26/2018,Comedians,@aliwong,"RT @kearnystreet: Celebrating 45 brave years @kearnystreet, the first multidisciplinary API arts org that has supported artists like @aliwo…" +03/23/2018,Comedians,@aliwong,RT @Variety: 'Fresh Off the Boat' showrunner Nahnatchka Khan is reteaming with @aliwong and @parkrandall for a @netflix romantic comedy htt… +03/23/2018,Comedians,@aliwong,🙌 https://t.co/WCTnmsAxue +03/15/2018,Comedians,@aliwong,@bader_diedrich 😘😘😘 +03/14/2018,Comedians,@aliwong,RT @KaplanAaron: Catch an all-new episode of @AmericanWifeABC TONIGHT at 9:30/8:30c on @ABCNetwork!! @KatyEMixon @bader_diedrich @ImMegDonn… +03/14/2018,Comedians,@aliwong,"RT @rBostonComedy: FOURTH SHOW ADDED to see @aliwong +at @TheChevalierMA Theatre in Medford +Saturday, May 5th - 9:45pm +Get tickets before an…" +03/14/2018,Comedians,@aliwong,@aparnapkin I ADORE U +03/13/2018,Comedians,@aliwong,🙌 https://t.co/FJUoORqL59 +03/13/2018,Comedians,@aliwong,"Everyone go see @aparnapkin live. She is and has always been, one of my favorites https://t.co/kkqaoUm6Pm" +03/07/2018,Comedians,@aliwong,RT @KaplanAaron: An all-new episode of @AmericanWifeABC airs TONIGHT on @ABCNetwork -- don't miss it! @KatyEMixon @bader_diedrich @DDiMaggi… +03/05/2018,Comedians,@aliwong,"While peeps spent the day getting ready for the Oscars, I was over here... https://t.co/neM4pAzy1c" +03/03/2018,Comedians,@aliwong,@MekitaRivas 2019 or 2020 +03/03/2018,Comedians,@aliwong,BOSTON! https://t.co/ks0cxUE2PU +02/28/2018,Comedians,@aliwong,BOSTON! https://t.co/lGCLiEMsQd +02/28/2018,Comedians,@aliwong,BOSTON! The presale for my May 4th show at the Chevalier Theatre begins now. Go to… https://t.co/5jijyc1kS2 +02/28/2018,Comedians,@aliwong,@lizamarie1022 CVR28 +02/22/2018,Comedians,@aliwong,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/19/2018,Comedians,@aliwong,I love this so much. Congrats! https://t.co/c1PmYJUyew +02/19/2018,Comedians,@aliwong,#AllStarWeekend #2kids #TheJoyOfMotherhood https://t.co/oPnZlRU34u +02/18/2018,Comedians,@aliwong,"RT @MichaelSkolnik: Emma Gonzalez. A student at Marjory Stoneman Douglas High School. + +An American Hero. + +Watch This. + +All of it. + +The…" +02/12/2018,Comedians,@aliwong,I CANNOT WAIT FOR THIS!!!!! https://t.co/vLL2O44XjU +01/21/2018,Comedians,@aliwong,@JohnTheCho All sorts of joy shooting through my heart! +01/08/2018,Comedians,@aliwong,"RT @goldenglobes: “I want all of the girls watching here now to know, that a new day is on the horizon.” @Oprah accepts the 2018 Cecil B. d…" +12/30/2017,Comedians,@aliwong,RT @aparnapkin: social media is just a long line of other people trying to sell you mixtapes of their mental demons +12/30/2017,Comedians,@aliwong,RT @JohnTheCho: https://t.co/MjaVc8q2f1 +12/25/2017,Comedians,@aliwong,"RT @dianaphamfatale: Forget Sheryl Sandburg, I take my motivational quotes from @aliwong. #tea #christmasjoy https://t.co/EeJv85K57p" +12/15/2017,Comedians,@aliwong,"RT @netflix: We’re disappointed in the decision to gut #NetNeutrality protections that ushered in an unprecedented era of innovation, creat…" +12/15/2017,Comedians,@aliwong,RT @jodikantor: Excellent questions from the wall of my daughter’s classroom. https://t.co/ntgKHYG9eU +12/14/2017,Comedians,@aliwong,"RT @JarettSays: #NetNeutrality could vanish in TWO DAYS!!!! + +PLEASE call Congress NOW: 202-759-7766 https://t.co/6g7hwCHRMa" +12/13/2017,Comedians,@aliwong,All new episode tonight! https://t.co/ddR6OjqpBa +12/13/2017,Comedians,@aliwong,RT @wkamaubell: Salma Hayek: Harvey Weinstein Is My Monster Too https://t.co/D56eysbHpT +12/13/2017,Comedians,@aliwong,RT @guybranum: I just want to wish everyone with Jewish lawyers a very happy Hanukkah. +12/13/2017,Comedians,@aliwong,WOOOOOOOOO HOOOOOOOOOOO!!!!! +12/12/2017,Comedians,@aliwong,"RT @ELLEmagazine: Jada Pinkett Smith: ""I have so much to say on why @TiffanyHaddish was not nominated for a Globe... but I won't"" + +Also Jad…" +12/11/2017,Comedians,@aliwong,RT @ong_going: I have never wanted a shirt more. @aliwong https://t.co/4Ga7bmREVC #colonizethecolonizer +12/08/2017,Comedians,@aliwong,RT @billyeichner: It's that time of year - the AMY POEHLER CHRISTMAS CAROL AMBUSH from BILLY ON THE STREET! A HOLIDAY CLASSIC! #tbt #Billyo… +12/07/2017,Comedians,@aliwong,"RT @LailaLalami: Woman reports a predator anonymously. +""Anonymous accusations aren't credible!"" +Woman reports under her name. +""She just wan…" +12/07/2017,Comedians,@aliwong,RT @goldengateblond: This photo belongs in the Louvre. https://t.co/oyrqrhpPSP +12/07/2017,Comedians,@aliwong,RT @LauraPrepon: #ThrowbackThursday to @NBCChelsea with my girl @AliWong who you can now see killing it on @AmericanWifeABC. #TBT https://t… +12/01/2017,Comedians,@aliwong,"RT @SInow: It is a rare person who gives up what he loves in exchange for what he believes. + +Colin Kaepernick is the winner of SI’s Muhamm…" +11/28/2017,Comedians,@aliwong,"RT @Todaysparent: .@aliwong has ""got the power"" in her hilarious new Instagram video. 😂💪🤰 —> https://t.co/CMXhTrUQaI https://t.co/o3DZiBzrJV" +11/28/2017,Comedians,@aliwong,RT @nowthisnews: President Obama said repealing net neutrality would ‘end the internet as we know it’ https://t.co/n5wn3JMgpu +11/28/2017,Comedians,@aliwong,"RT @MikeDrucker: Remember when we used to be mad that social media was mostly photos of people’s meals, and now when we see photos of peopl…" +11/25/2017,Comedians,@aliwong,"RT @clarewxy: Queen @aliwong just dropped her new #BabyCobra apparel line 👀 https://t.co/ktFospKIw9 + +""I don't want to lean in. I want to li…" +11/22/2017,Comedians,@aliwong,"If you haven’t already, watch this!!! One of my favorite movies this year. https://t.co/RiMzYBR0E3" +11/16/2017,Comedians,@aliwong,RT @AmericanWifeABC: Thanksgiving with the Ottos will definitely be stuffed with surprises. 🦃 https://t.co/kTErhwRojm +11/13/2017,Comedians,@aliwong,"RT @Kaepernick7: I'm honored to be recognized by @GQMagazine as Citizen of the Year. + +https://t.co/s6wBZTa6tH" +11/12/2017,Comedians,@aliwong,TIFFANY is on @nbcsnl TONIGHT TONIGHT TONIGHT! https://t.co/SNjfhT9BX1 +11/08/2017,Comedians,@aliwong,"RT @CNN: - Openly transgender candidates won races + +- Minneapolis: First openly transgender person of color elected + +- New Jersey: First Si…" +11/06/2017,Comedians,@aliwong,RT @Alyssa_Milano: Amazing news! Open enrollment happening right now at https://t.co/GE3NsxPjww! #GetCoveredNow https://t.co/76c9dHOQXZ +11/02/2017,Comedians,@aliwong,RT @oliviamunn: In 2011 it didn't matter enough to make a lasting effect 😕 Thank God it's a new day. ❤️❤️❤️🌤 https://t.co/fwKWGUbYh4 +11/02/2017,Comedians,@aliwong,Tonight after Modern Family! https://t.co/enozYrnWoy +10/31/2017,Comedians,@aliwong,RT @curlycomedy: I was so committed to playing @aliwong from her #BabyCobra special I got a real human to play the bump. #SchtickOrTreat #c… +10/31/2017,Comedians,@aliwong,I love this woman https://t.co/eLX6CXiEPF +10/30/2017,Comedians,@aliwong,RT @hannibalburess: 🔥 https://t.co/7kbsdaRXcb +10/30/2017,Comedians,@aliwong,YES YES YES https://t.co/lyvPommGuB +10/30/2017,Comedians,@aliwong,"RT @Alyssa_Milano: Need you to take 3 minutes out of your evening to watch this, get angry, and then HELP ME get #FreeRosa to trend NOW! ht…" +10/29/2017,Comedians,@aliwong,RT @RebsL: Wasssuuppp it’s Halloween 2017! @netflix @angryasianman @hasanminhaj @aliwong #lowbudget #aapi https://t.co/bP4jBzcPaN +10/29/2017,Comedians,@aliwong,RT @nokwestion: @aliwong sighting https://t.co/PUh4HRaDmp +10/27/2017,Comedians,@aliwong,RT @mcgboye: This boy's career path is already set. The parents shouldn't bother wasting their time and money. https://t.co/A2hCcx3nQZ +10/27/2017,Comedians,@aliwong,"RT @jemelehill: A quote that will make you cringe from Texans owners Bob McNair, re: anthem protests: “We can't have the inmates running th…" +10/27/2017,Comedians,@aliwong,RT @kumailn: Right. Cuz all brown people are famous. https://t.co/gyM1zsMZUJ +10/24/2017,Comedians,@aliwong,I cannot wait for this!!! Michelle is INCREDIBLE https://t.co/IpV3aFiQc8 +10/24/2017,Comedians,@aliwong,RT @GlennWhipp: UPDATE: 38 women contacted me for this story. That number has now doubled since it was published. https://t.co/beVGHWGOKM +10/23/2017,Comedians,@aliwong,"RT @bader_diedrich: Thanks for the great interview Jessica!! +I really went off the rails at the end there! + +But happy to talk about my quee…" +10/20/2017,Comedians,@aliwong,"RT @aparnapkin: As the daughter of a father, I think the lot of you could do better" +10/20/2017,Comedians,@aliwong,RT @ava: Saluting my sister @Lupita_Nyongo and all the women who speak out. And all the women who don't. All who survive this. And all who… +10/19/2017,Comedians,@aliwong,RT @davidchang: Incredible https://t.co/iJiyreuiYi +10/18/2017,Comedians,@aliwong,RT @AmericanWifeABC: We're itching to see how Katie handles everything tonight! #AmericanHousewife https://t.co/DbrYodDEVw +10/15/2017,Comedians,@aliwong,"RT @meganamram: Sometimes it's like, who's responsible: the victims or the person who's responsible?" +10/11/2017,Comedians,@aliwong,"RT @AmericanWifeABC: #AmericanHousewife’s Katie Otto is unapologetic and real. +Watch the best mom ever tonight at 9:30|8:30c on ABC! https…" +10/11/2017,Comedians,@aliwong,RT @BET: The FULL verse that EVERYBODY is talking about! @eminem BODIED THIS! #HipHopAwards https://t.co/zoS0wEwjQF +10/11/2017,Comedians,@aliwong,"RT @nytimes: An NYT reader's reaction to Gwyneth Paltrow, Angelina Jolie and +others saying Harvey Weinstein harassed them https://t.co/apUs…" +10/09/2017,Comedians,@aliwong,Rooting for #KellyMarieTran so hard!!! https://t.co/mdXaxburPK +10/08/2017,Comedians,@aliwong,"RT @aparnapkin: if you think taking a knee is unbelievably disrespectful, imagine what drove people to do it in the first place" +10/05/2017,Comedians,@aliwong,RT @laurenduca: MOM & DAD PLEASE COME HOME THE BABYSITTER IS REALLY WEIRD https://t.co/qBRnK3NhSl +10/05/2017,Comedians,@aliwong,"RT @jk_rowling: There is so much truth in this, it hurts. @MichelleObama on the fools who get free passes to the top table... + https://t.co…" +10/04/2017,Comedians,@aliwong,SF! Go see my dear friend @mulaney tonight. There are a few tix left. He's BRILLIANT. https://t.co/5vbDApydN9 +10/04/2017,Comedians,@aliwong,👑@KatyEMixon 👑 https://t.co/adjIwHEBqT +10/02/2017,Comedians,@aliwong,RT @nowthisnews: THIS is how you respond to racism https://t.co/Ebo4ohctlO +09/28/2017,Comedians,@aliwong,RT @MrTonyHale: We love this woman. https://t.co/EqvF6HXpj0 +09/28/2017,Comedians,@aliwong,RT @janetmock: Doreen (@dstfelix) writing about Cardi's ascendence to the TOP for @NewYorker has me in all my feels. YES! https://t.co/s0do… +09/27/2017,Comedians,@aliwong,"RT @thehill: ""All in the Family"" producer tweets message of solidarity with NFL protesters https://t.co/TBRpQBDBmY https://t.co/xSISToc9rF" +09/27/2017,Comedians,@aliwong,"RT @AmericanWifeABC: Today's the day! ❤️ +RT if you're excited for the premiere of #AmericanHousewife tonight! https://t.co/fg7HkFDnEc" +09/27/2017,Comedians,@aliwong,"RT @AmericanWifeABC: She may not be America's #1 mom, but she's our favorite. #AmericanHousewife returns tomorrow at 9:30|8:30c on ABC! htt…" +09/25/2017,Comedians,@aliwong,"RT @shondarhimes: I think: By kneeling, players don’t disrespect the flag.They ask US to respect the flag. They ask us to make the anthem t…" +09/24/2017,Comedians,@aliwong,"RT @OmarKelly: Dolphins safety Michael Thomas started breaking up when talking about Trump calling him ""a son of a b!tch."" https://t.co/Z4w…" +09/24/2017,Comedians,@aliwong,@morgan_murphy hi!!! missed you but see you in LA +09/22/2017,Comedians,@aliwong,This made my day!!!! https://t.co/EbbsXZsT9n +09/16/2017,Comedians,@aliwong,RT @KamalaHarris: Remember when we saved health care for millions of Americans? We have to do it again. Call your reps now: (202) 224–3121. +09/12/2017,Comedians,@aliwong,Houston! See you on Friday https://t.co/8kx4yFidu7 +09/10/2017,Comedians,@aliwong,Congrats Kamau!!!! https://t.co/idYOkAYyH5 +09/07/2017,Comedians,@aliwong,RT @nowthisnews: ‘I’m gonna be sent back to a country that I’ve ever been to and I’m gonna lose every opportunity that I have.’ https://t.c… +09/06/2017,Comedians,@aliwong,"RT @BarackObama: To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co…" +09/06/2017,Comedians,@aliwong,"RT @AmericaFerrera: Dreamers- you have led your own movement from the start w/ courage, dignity & beauty. I feel privileged to follow & sta…" +09/06/2017,Comedians,@aliwong,"RT @janetmock: Beautiful campaign, starring @Lavernecox! #Ivypark take my 💰 https://t.co/qO035Zh84x" +09/05/2017,Comedians,@aliwong,RT @kumailn: #TheBigSick is on all streaming platforms! iTunes. Amazon. On Demand. Google Play. Check out this rave review! https://t.co/aD… +09/05/2017,Comedians,@aliwong,RT @KamalaHarris: The heartless move to rescind DACA is a betrayal of our promise to Dreamers. It’s now on Congress to pass the Dream Act.… +09/02/2017,Comedians,@aliwong,RT @ELLEmagazine: This 8-year-old boy loves transforming into drag queen Lactatia—& he won't let other people stop him from doing what make… +08/31/2017,Comedians,@aliwong,RT @NPR: Still wondering how you can help those affected by #Harvey? Here is our list: https://t.co/ybaj4nsjl0 +08/30/2017,Comedians,@aliwong,RT @JarrettHill: THIS. https://t.co/NobnCCVJCF +08/30/2017,Comedians,@aliwong,RT @decider: .@RyanHamilton's #HappyFace is highly contagious. Watch it on @netflixcomedy: https://t.co/eib7MVv09N https://t.co/i1IqgB2xbM +08/29/2017,Comedians,@aliwong,RT @MichaelSkolnik: American hero. https://t.co/0z9nQ2RjTA +08/20/2017,Comedians,@aliwong,"RT @ShaunKing: We've provided authorities: + +7 videos. +142 images. +2 confirmed identities. +1 address. + +7 days later, NO ARRESTS. + +https://t.…" +08/19/2017,Comedians,@aliwong,RT @ChelseaClinton: The story of Lucifer-who rebelled against God-is part of many Christians' traditions. I've never been in a church with… +08/16/2017,Comedians,@aliwong,RT @VICE: Watch @vicenews' full report from the front lines in Charlottesville: https://t.co/6QgDdm0zF9 https://t.co/NJbxEd1FKL +08/16/2017,Comedians,@aliwong,"RT @StephenAtHome: ""I don't agree with the Nazis, but they had a permit for Normandy & the Allies didn't."" -Donald Trump https://t.co/0WeIM…" +08/15/2017,Comedians,@aliwong,"RT @THR: .@AliWong, @ParkRandall to star in Netflix feature romantic comedy https://t.co/wmWxTxNefg https://t.co/5rSCVqAmOU" +08/15/2017,Comedians,@aliwong,RT @nycjayjay: Amazing. https://t.co/jSCM8sDb5q +08/15/2017,Comedians,@aliwong,RT @Seth_Lemon: #UnionSquare https://t.co/ymqofeEPGa +08/14/2017,Comedians,@aliwong,EVERYONE WATCH THIS!!! Tiffany has been funny forever and she's also the most wonderful human being. https://t.co/AR1m0uc5xH +08/13/2017,Comedians,@aliwong,RT @MrGeorgeWallace: That little baby grew up believing in goodness and justice and standing up to hate. Heather Heyer. Say her name. https… +08/13/2017,Comedians,@aliwong,"RT @ShaunKing: Heather Heyer. + +An American martyr. A hero. My hero. + +Last words on FB ""If you're not outraged, you're not paying attentio…" +08/13/2017,Comedians,@aliwong,"RT @NYMag: “I want her death to be a rallying cry for justice and equality and fairness and compassion,” says Heyer's mother https://t.co/T…" +08/13/2017,Comedians,@aliwong,"RT @JohnDingell: I signed up to fight Nazis 73 years ago and I'll do it again if I have to. + +Hatred, bigotry, & fascism should have no plac…" +08/13/2017,Comedians,@aliwong,RT @JoeBiden: There is only one side. #charlottesville +08/12/2017,Comedians,@aliwong,RT @oliviamunn: 💔 #Charlottesville https://t.co/le6zTIMxR8 +08/12/2017,Comedians,@aliwong,RT @TheEllenShow: Is this America now? We cannot let this stand. #Charlottesville +08/02/2017,Comedians,@aliwong,"RT @sfmasonic: The 1st of 7(!) SOLD OUT shows with @aliwong is tonight! Doors open at 6, Kevin Camia starts things off at 7 & Ali Wong is o…" +08/02/2017,Comedians,@aliwong,"RT @ACLU: Happy birthday, James Baldwin! https://t.co/aw40QndS2O" +08/02/2017,Comedians,@aliwong,RT @kumailn: Thread. Must read. It's very good. https://t.co/nKZLZmoHzn +08/01/2017,Comedians,@aliwong,"My remaining stand up dates for the year. Few tix still left for DENVER, HOUSTON, DALLAS late… https://t.co/JoAQVZOHNN" +08/01/2017,Comedians,@aliwong,Please read this article. Thank goodness for @JanetMock https://t.co/nVOqL5sgqy +07/31/2017,Comedians,@aliwong,"RT @thepharcyde: 😂😂😂 GET THAT @aliwong #DemCrossoverMovesTho #ThePharcyde +・・・ +DALLAS! Pre sale for my second… https://t.co/4NWtpOTYxO" +07/28/2017,Comedians,@aliwong,"RT @KamalaHarris: Tonight health care was saved for millions of Americans. This is your victory. Your calls, letters, and courage made this…" +07/27/2017,Comedians,@aliwong,RT @tracelysette: In solidarity with the thousands of trans folk who are currently serving our country in the military. You are not expenda… +07/26/2017,Comedians,@aliwong,"RT @HamillHimself: A salute to the 15,000+ transgender patriots now currently serving in the United States Military. #ThankYouLGBT #TransR…" +07/26/2017,Comedians,@aliwong,"RT @TheEllenShow: We should be grateful to the people who wish to serve, not turn our backs on them. Banning transgender people is hurtful,…" +07/26/2017,Comedians,@aliwong,DALLAS! Pre sale for my second added show is on now. The first show sold out quick so I suggest… https://t.co/HflPiKoE8L +07/26/2017,Comedians,@aliwong,RT @smeagolsfree: My mom has Stage 4 breast cancer and will die without Medicaid. My rage is powerful and insane. They should be afraid of… +07/20/2017,Comedians,@aliwong,"RT @janetmock: Tiffany is a damn STAR, and a stellar storyteller. https://t.co/WBC3JSZQn2" +07/20/2017,Comedians,@aliwong,RT @AccessVegas: Ali Wong playing #Vegas October 7. Tickets: https://t.co/4Y3kH2UjVl @aliwong https://t.co/FMaGbGh7Gb +07/19/2017,Comedians,@aliwong,"RT @reventioncenter: PRESALE — @AliWong on Friday, September 15th! Use offer code TEMPO to lock down advanced tickets at https://t.co/D4i23…" +07/19/2017,Comedians,@aliwong,RT @hennepintheatre: Hurry! 36 hours only - get your presale tickets for @aliwong with code: BABY – October 14 at the State Theatre https:/… +07/19/2017,Comedians,@aliwong,Houston and Minneapolis! The presale has begun. Get your tickets now before the shows sell… https://t.co/XZ3DUhdZ04 +07/15/2017,Comedians,@aliwong,RT @SilverLegacy: Raise your hand if your seeing @aliwong tonight? 🙋 #SilverLegacy #AliWong #BabyCobra #ItsARenoThing https://t.co/ghsDwCyB… +07/08/2017,Comedians,@aliwong,That's because SHE IS! I fucking love @aparnapkin https://t.co/Ca8Sp61as6 +07/05/2017,Comedians,@aliwong,"RT @KamalaHarris: This #FourthofJuly, a reminder that eight immigrants signed the Declaration of Independence." +06/29/2017,Comedians,@aliwong,Atlantic City and Philadelphia! See you on Saturday https://t.co/CcrMgmS0mO +06/28/2017,Comedians,@aliwong,RT @iamwandasykes: It's time that more women held political office. @aliwong nominated…me! Who would you nominate to run? @ELLEmagazine #We… +06/26/2017,Comedians,@aliwong,Woooooooo!!!!! https://t.co/Gl9EY1igpL +06/22/2017,Comedians,@aliwong,"RT @sanfranmag: July cover story: How @aliwong grew up, cracked filthy jokes, got pregnant, and became the next big thing in comedy https:/…" +06/22/2017,Comedians,@aliwong,RT @sanfranmag: Our annual Best of SF issue drops soon! Cover story: @aliwong on how she shot to the top of comedy (and she's just getting… +06/20/2017,Comedians,@aliwong,RT @BorgataAC: We're ready to LOL with @aliwong at the Event Center on July 1! Purchase Tickets: https://t.co/JSk94Y6hiK https://t.co/Scdf… +06/17/2017,Comedians,@aliwong,"If you're looking for a summer read, pickup Jessi Klein's brilliant book. I savored every page.… https://t.co/Vtt6Nro5TZ" +06/17/2017,Comedians,@aliwong,"RT @TheKingCenter: Extol #PhilandoCastile's virtues, but know: Even if he didn't serve children, even if he didn't love his family, he shou…" +06/17/2017,Comedians,@aliwong,Imma watch this and I suggest you do too. Nikki is so fucking funny. https://t.co/zTMNePtEQk +06/15/2017,Comedians,@aliwong,@themodernageorg hi it's working now sorry for the glitch! +06/14/2017,Comedians,@aliwong,LAS VEGAS and THOUSAND OAKS! The presale has begun. Denver and Dallas tomorrow morning at 10am.… https://t.co/FNMxyPRRRp +06/09/2017,Comedians,@aliwong,Anaheim this weekend! https://t.co/XyElDTa9gD +06/02/2017,Comedians,@aliwong,"RT @MikeDelMoro: Countries committed to the Paris Climate Accord shaded in blue, via @mashable https://t.co/1RGVGjUUyu" +06/02/2017,Comedians,@aliwong,RT @EmmanuelMacron: https://t.co/3g5LYO9Osj +06/02/2017,Comedians,@aliwong,"RT @michelleisawolf: Congressman: god will take care of climate change. + +God: bitch I sent you scientists." +06/01/2017,Comedians,@aliwong,SANTA BARBARA! See you on Saturday. Few tix still left for the LATE show. https://t.co/DLA90Hgqud +06/01/2017,Comedians,@aliwong,This haircut is everything #happyinternationalChildrensDay https://t.co/TVCYOSp7DU +05/31/2017,Comedians,@aliwong,"RT @moshekasher: Ah I see now, ""covfefe"" is the guttural gurgle your grandchild will choke out as they are overtaken by rising sea water." +05/29/2017,Comedians,@aliwong,"RT @ChrisEvans: They did not die because of you. They died because of a hateful, ignorant, pathetic, EMBOLDENED piece of trash. https://t.c…" +05/29/2017,Comedians,@aliwong,RT @JoyAnnReid: We await their commander in chief's acknowledgement of them and their families. https://t.co/PzfspiIDge +05/28/2017,Comedians,@aliwong,"RT @resisterhood: 3 Americans were murdered this past week for standing up to white terrorists. + +Richard Collins III +Taliesin Myrddin Namk…" +05/28/2017,Comedians,@aliwong,RT @patrick_brice: I can't stop thinking about these guys. Our time on this planet is short and hard. Let's take care of each other. https:… +05/28/2017,Comedians,@aliwong,"RT @HillaryClinton: Heartbreaking. +No one should have to endure this racist abuse. +No one should have to give their life to stop it. +https:…" +05/27/2017,Comedians,@aliwong,RT @WendyMolyneux: I would just absolutely love it if someone would put a fake arm up their shirt sleeve and let Trump rip it off during on… +05/27/2017,Comedians,@aliwong,RT @aparnapkin: IDEA: marie kondo method to clean out the presidential cabinet. does this bozo bring me joy? no? then carefully mark as don… +05/27/2017,Comedians,@aliwong,RT @VanityFair: It’s enough to make Patti LuPone proud https://t.co/XlQTrgnngs +05/26/2017,Comedians,@aliwong,"RT @GranadaSB: Comedian, writer & actress @aliwong brings her incredibly hilarious stand-up performance to the Granada on Sat. 6/3! https:/…" +06/16/2018,Comedians,@msjwilly,@LashanaLynch @FlawlesslyGeeky Ahhh! Thank you queen! Can’t wait to see you in the movie!! +06/16/2018,Comedians,@msjwilly,@markhughesfilms @WonderWomanFilm @PattyJenks @jermainedesign This rules! I’ve gotta research. I don’t know much ab… https://t.co/AgMqFgZxAy +06/14/2018,Comedians,@msjwilly,@FantasticBeasts He da best! +06/14/2018,Comedians,@msjwilly,I *Really* want to play a superhero. I just want to kick some ass. And get in shape. Mostly I want to get paid to get in shape. #6feettall +06/14/2018,Comedians,@msjwilly,@chloedreyfus @BigBoyler Hahaha he didn’t tell me wtf? And thank you! It looks like y’all had a fun night. 😉 +06/14/2018,Comedians,@msjwilly,@eddiotsavant Hahahaha I’ll see what I can do! +06/14/2018,Comedians,@msjwilly,@molly_blooom She was amazing! It’s never too late for a good thing. +06/14/2018,Comedians,@msjwilly,@FlawlesslyGeeky @LashanaLynch THANK YOU. KEEP ME IN YOUR THOTS. I wanna play a superhero SO BAD. +06/14/2018,Comedians,@msjwilly,@TVElle Hahaha I loved that line. That Jessica was so extra. Thanks for watching! +06/14/2018,Comedians,@msjwilly,@AmandaGeisel That’s awesome Amanda! Thanks for letting me know! +06/14/2018,Comedians,@msjwilly,@choitotheworld @ClaraRose @TheCut Thank you lady! 😘 +06/14/2018,Comedians,@msjwilly,"@ClaraRose @choitotheworld @TheCut @BigBoyler THANK YOU! 😊 and yes, @bigboyler is aiight. 😉" +06/14/2018,Comedians,@msjwilly,@FantasticBeasts Y’all are getting me PUMPED! +06/08/2018,Comedians,@msjwilly,@christinefriar @itsjameskennedy Let them know! And Jesus no more take out orders +06/08/2018,Comedians,@msjwilly,@cameronesposito Hahahahaha this made me lol. +06/08/2018,Comedians,@msjwilly,@christinefriar ⚰️ I expect songs like this on our road trip. Thank you. +05/30/2018,Comedians,@msjwilly,"RT @the_wing: Hot and dewy off the presses, our #NOMANSLAND covergirl is @msjwilly !!! Issue 02 drops June 4th, but you can pre-order your…" +05/30/2018,Comedians,@msjwilly,"RT @the_wing: Don't know if you heard, but we made a magazine!!!! #NOMANSLAND!!! and @msjwilly is on our cover!!! and it drops June 4th but…" +05/19/2018,Comedians,@msjwilly,@Travon You’re a mad man! +05/19/2018,Comedians,@msjwilly,@Travon Hahahahaha +05/19/2018,Comedians,@msjwilly,@JohnMilhiser @TODAYshow hahaha his facial hair is wild. +05/09/2018,Comedians,@msjwilly,WE BOUTA MAKE A MOOVVVIE SHARON!!!! Hi @patrick_brice 💕 https://t.co/9NJOTitnQE +05/07/2018,Comedians,@msjwilly,RT @CecileRichards: Great news: There are still a few tickets left for this! Come join @msjwilly and me at the @92Y tomorrow night.👇🏻 https… +05/05/2018,Comedians,@msjwilly,@christinefriar Hahahahaha +04/24/2018,Comedians,@msjwilly,"@susanheyward @Jessie_BBA Y’all/ you were AMAZING! Congrats, sis!! 😍😍😍😍" +04/23/2018,Comedians,@msjwilly,@blanip @indieabby88 Lmaooo I’m ⚰️ +04/23/2018,Comedians,@msjwilly,@jk_rowling Yassss Ilvy!!!!!!!!!!!!!!!! 🙌🏾 +04/22/2018,Comedians,@msjwilly,RT @jk_rowling: Professor Eulalie (Lally) Hicks of Ilvermorny School of Witchcraft and Wizardry with some random woman during the interval… +04/17/2018,Comedians,@msjwilly,"RT @CecileRichards: Kind of can’t believe I get to say this: On May 8th, I’ll be sitting down with @msjwilly at @92Y to talk about activism…" +04/13/2018,Comedians,@msjwilly,@shanpop @SarahSlutsky hahaha it's ALWAYS Sephora's brand of blue eyeliner. Enjoy! ;] +03/13/2018,Comedians,@msjwilly,Yooo!! I LOVE my pack of rainbow dogs. And the best part? They don’t give me allergies! 🤓 @TheSims #ad… https://t.co/Zdhczc5yJg +03/10/2018,Comedians,@msjwilly,@lindseyweber Of course it was +02/23/2018,Comedians,@msjwilly,Heyyy! TONIGHT at 11:30pm is our FINAL episode of @2dopequeens on @hbo. @dopequeenpheebs and I… https://t.co/W2HzefwYei +02/16/2018,Comedians,@msjwilly,RT @corimurray: Returning with the newness: @dopequeenpheebs @msjwilly from @2DopeQueens are on #yesgirlpodcast #2DopeQueensHBO - https://t… +02/16/2018,Comedians,@msjwilly,DONT FORGET: AN ALL NEW EPISODE OF OUR 2 DOPE QUEENS @HBO SPECIALS AIR TONIGHT AT 11:30pm!… https://t.co/ZsC7MWMZDA +02/13/2018,Comedians,@msjwilly,@KristinDavis @2DopeQueens @TigNotaro @SJP @RheaButcher Omg thank you for watching @KristinDavis! 💕💕💕 you’ve made m… https://t.co/tkpXbIMZau +02/10/2018,Comedians,@msjwilly,@MichaelaAngelaD @fentybeauty 😂😂😍lmaooo I am all about @fentybeauty. Thanks for watching the second episode! +02/09/2018,Comedians,@msjwilly,Ayyy call up the squad & tell them to bring over the cocoa butter and the rosé because we have… https://t.co/oYgM6eR4Lg +02/09/2018,Comedians,@msjwilly,RT @RobinRoberts: We're celebrating #BlackHistoryMonth with a brand new series highlighting women who are game changers & showcasing their… +02/06/2018,Comedians,@msjwilly,"RT @TheDailyShow: Ayyyy see you at 11/10c, @msjwilly & @dopequeenpheebs! #2DopeQueensHBO https://t.co/OSsxpDbOqY" +02/05/2018,Comedians,@msjwilly,"RT @TheDailyShow: This week, Trevor welcomes @msjwilly & @dopequeenpheebs, @yford, the heroes and stars of @1517toParis, and @steveaoki! ht…" +02/03/2018,Comedians,@msjwilly,@PiaGuerra Ahh thank you! Damn. I love her. That would be my dream role! +02/03/2018,Comedians,@msjwilly,@jdry @2DopeQueens @dopequeenpheebs Thank you! It’s great!!! +02/03/2018,Comedians,@msjwilly,Lmaooooooo I know today is a crazy day but also Happy birthday to @TheSims! 🎉Thanks for an… https://t.co/rM2kiyGdsD +02/02/2018,Comedians,@msjwilly,"RT @davidcicilline: I’ve reviewed the Nunes memo and the Democratic memo (which Republicans are refusing to release). + +I can’t divulge the…" +02/02/2018,Comedians,@msjwilly,Hey Hoochies! Who else is staying in tonight to watch #2DopeQueensHBO? The first special starts… https://t.co/QZYoWQ5xmg +02/02/2018,Comedians,@msjwilly,Heyyy Hoochies! Tonight is THE night! The first of our FOUR @2DopeQueens specials premieres this evening on HBO at… https://t.co/y77VXYtPBb +02/01/2018,Comedians,@msjwilly,"RT @ditzkoff: My Q&A with the hilarious @dopequeenpheebs and @msjwilly, who are bringing @2DopeQueens to HBO. https://t.co/QvivvDHCGC" +01/31/2018,Comedians,@msjwilly,"RT @CBSThisMorning: Jessica Williams and Phoebe Robinson blend a unique brand of conversation, stand up comedy and storytelling in their po…" +01/31/2018,Comedians,@msjwilly,"RT @colbertlateshow: TONIGHT's #LSSC is LIVE following the #SOTU: @TVietor08, @jonfavs, and @jonlovett from @PodSaveAmerica, @dopequeenphee…" +01/19/2018,Comedians,@msjwilly,"RT @danikwateng: While y'all are skimming through the latest @Essence make sure to read my first in-book story!! + +I interviewed @dopequeen…" +01/12/2018,Comedians,@msjwilly,45 minutes after we took this photo my mother asked me to clarify what part the guy on the left played in the Harry… https://t.co/epvd9rg4Il +01/12/2018,Comedians,@msjwilly,RT @HBO: 2 dope hosts. 4 dope specials. @msjwilly and @dopequeenpheebs are the @2DopeQueens. Premieres February 2 on #HBO. https://t.co/8y2… +01/12/2018,Comedians,@msjwilly,@nealjustin hello Neal. : ] +01/11/2018,Comedians,@msjwilly,@WheresAmaya @jk_rowling hahahah i am pretty sure she has. (this is not confirmed by me but lmaooo) +01/11/2018,Comedians,@msjwilly,"Me with the shade when they give house points to Gryffindor at the last minute for being pretty reckless, thereby a… https://t.co/Sll9zWGFwl" +01/11/2018,Comedians,@msjwilly,Lmaoooo at #blackhogwarts trending. Screaming. #onbrand +01/02/2018,Comedians,@msjwilly,RT @Maccadaynu: When your Sims are waiting for instructions https://t.co/IqkGODapdL +12/19/2017,Comedians,@msjwilly,Serving while wearing this ruff around my neck! Our 4 @HBO specials start airing February 2nd at 11:30pm! See you t… https://t.co/Db54LzI5Fv +12/19/2017,Comedians,@msjwilly,Hey Hoochies! Our 4 @HBO specials start airing February 2nd at 11:30pm! (Definitely NOT after Game of Thrones.) See… https://t.co/RN1otdpjjv +12/15/2017,Comedians,@msjwilly,So excited to get to interview @HillaryClinton at the #Girlsbuild Summit today! This is amazing! And there are so m… https://t.co/RfUNhqpjcc +11/21/2017,Comedians,@msjwilly,Hiiiii! Check out me holding the Sims version of me in my hand! Thank you @TheSims for recreating my iconic comedic… https://t.co/pf7qC3iFe6 +11/17/2017,Comedians,@msjwilly,RT @TeenVogue: SAME. https://t.co/V6OotMBSHG +11/17/2017,Comedians,@msjwilly,@lindseyweber Dark! +11/16/2017,Comedians,@msjwilly,@jk_rowling That's hot. +11/16/2017,Comedians,@msjwilly,"RT @pottermore: A familiar world. A new story. Return to the Wizarding World with Fantastic Beasts: The Crimes of Grindelwald, coming late…" +11/01/2017,Comedians,@msjwilly,RT @2DopeQueens: Unbutton your pants. @marcmaron visits us this week from his podcast kingdom. https://t.co/XVlSjOjaQt +10/27/2017,Comedians,@msjwilly,@lindseyweber Yes. +10/12/2017,Comedians,@msjwilly,"RT @noredavis: I'm on @2dopequeens #41 JessBDshow! ❤️her& pheebs. Show🔥&link below. thx 2 new followers & who hit my Venmo🔌⚡️😎 + +https://t.c…" +10/11/2017,Comedians,@msjwilly,RT @noredavis: blessed to be on this episode and finally meet @msjwilly family who has adopted me & Jessica has to accept that❣️#HBD https:… +10/06/2017,Comedians,@msjwilly,"RT @jk_rowling: @msjwilly There's no purple heron emoji, so 🦉💕" +10/06/2017,Comedians,@msjwilly,@jk_rowling Hahaha! 😏 +10/06/2017,Comedians,@msjwilly,@jk_rowling Thank you thank you thank you. ⚡️✨⚡️❤️ +10/06/2017,Comedians,@msjwilly,@ditzkoff THIS IS NOT A DRILL DAVE!!! ⚰️ +10/06/2017,Comedians,@msjwilly,"RT @pottermore: @msjwilly Welcome to the Wizarding World family, Jessica!" +10/06/2017,Comedians,@msjwilly,@pottermore Thank you! https://t.co/8aQPwfmC2B +10/06/2017,Comedians,@msjwilly,HELLO THERE. I AM SCREAMING BECAUSE I AM GOING TO BE IN FANTASTIC BEASTS. 😩😃😃 https://t.co/k4UAT9y5gc +10/06/2017,Comedians,@msjwilly,@AlannaBennett Thank you!!!! 🎉🎊 https://t.co/SSTcbM83Wz +10/04/2017,Comedians,@msjwilly,@Pallystyle @TheSims https://t.co/NP513bOSml +10/04/2017,Comedians,@msjwilly,@stonercinderlla @TheSims Me too! https://t.co/JTMjjolst5 +10/04/2017,Comedians,@msjwilly,@hereforparrilla @TheSims Me too!!! Gonna be silly! +10/04/2017,Comedians,@msjwilly,@Pallystyle @TheSims It’s me! +10/04/2017,Comedians,@msjwilly,@davimachaado @TheSims You know what? Imma look into it. +10/04/2017,Comedians,@msjwilly,"RT @TheSims: Jessica Williams is taking over @TheSims Twitter this Friday, 10/6 at 11:30AM PDT! +More: https://t.co/WZ91yO4poz #JWillyAMA @…" +10/04/2017,Comedians,@msjwilly,RT @2DopeQueens: You've got 1 shot to see special guest co-host @Blacktress joining @msjwilly for a 2DQ show you'll never forget. Tix https… +09/25/2017,Comedians,@msjwilly,ITS SO GOOD AND BEAUTIFUL! https://t.co/KoESMS9agc +09/22/2017,Comedians,@msjwilly,RT @SaintHeron: Darling & daring comedy-sweetheart @msjwilly is headed to @Showtime where she will star in a self-written comedy. https://t… +09/22/2017,Comedians,@msjwilly,@kscoult @TheDailyShow Thank you so much! <3! +09/22/2017,Comedians,@msjwilly,"RT @DEADLINE: Jessica Williams To Topline Comedy In Works At Showtime, Jim Strouse To Direct https://t.co/KjF4YxI72H https://t.co/pZm18iJD5P" +09/15/2017,Comedians,@msjwilly,Due to POPULAR DEMAND WE'VE ADDED ONE MORE SHOW FOR OUR @2DopeQueens HBO SPECIAL TAPINGS NEXT MONTH. BUY NOW!! https://t.co/vPpulGPiHK +09/13/2017,Comedians,@msjwilly,RT @2DopeQueens: Queens! Oct 5 is date night with your girl @msjwilly! Come see 2DQ out in La La Land with guest co-host @Blacktress: https… +08/30/2017,Comedians,@msjwilly,@HollywoodDebi @fromoldharlem i got you Debi. Mistakes happen. Deleting your original tweet. Take care! +08/30/2017,Comedians,@msjwilly,@HollywoodDebi @bymeg waiiiiiittt what? so how is this what the situation is? You literally thought I was a complet… https://t.co/RV5Y1vAsZl +08/30/2017,Comedians,@msjwilly,@fredrickthomps6 No worries. Someone screen grabbed it earlier in this thread! +08/30/2017,Comedians,@msjwilly,@Guari1x Thank you. +08/26/2017,Comedians,@msjwilly,RT @KPCCInPerson: Watch @msjwilly and @Blacktress do their thing at the live taping of @2DopeQueens. Get your tickets now! https://t.co/bxX… +08/25/2017,Comedians,@msjwilly,@tkconch @UVA Thank you Tess! +08/25/2017,Comedians,@msjwilly,@ajLevy363 Yasss my maxxinister!!!!! Thank you for coming! +08/25/2017,Comedians,@msjwilly,@lmillernpr @ramenshopradio @2DopeQueens @JadAbumrad Yassssss!!! Y'all look cute! Thank you for coming! 😍 +08/22/2017,Comedians,@msjwilly,"ANNNNNNNNND HERE IS ANOTHER THE LINK TO OUR @2DopeQueens HBO special taping✨✨✨https://t.co/9zNCu2nt07 +HURRY!!" +08/22/2017,Comedians,@msjwilly,PRESALE Password is DOPE +08/22/2017,Comedians,@msjwilly,Link to our @2DopeQueens HBO SPECIAL TAPING https://t.co/1XlHVFZVr6 +08/21/2017,Comedians,@msjwilly,"RT @2DopeQueens: Set your alarm! Pre-sale for our special taping is happening tomorrow at 10amEST. Baes, you're getting the code first. ✅ i…" +08/21/2017,Comedians,@msjwilly,The partial darkness of this eclipse is my preferred lighting level tbh. #romanticdimlighting +08/21/2017,Comedians,@msjwilly,@iluvbutts247 Hahahaha +08/15/2017,Comedians,@msjwilly,Existing in a world where racism and hate grasp desperately for control while we fight and plead for something as simple as being free. +08/15/2017,Comedians,@msjwilly,"Being black in a country that was not made for me, I carry my sadness and anger with me always- responses to that which I cannot see." +08/15/2017,Comedians,@msjwilly,I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am hurt I am sad +08/13/2017,Comedians,@msjwilly,@rellativity @wocfilmclub ah okay! noted! thank you! +08/11/2017,Comedians,@msjwilly,RT @CharlieRoseShow: The incomparable @msjwilly is here tonight! Tune in on @PBS. https://t.co/Avra0XGq12 +08/10/2017,Comedians,@msjwilly,@HBOPR @2DopeQueens @dopequeenpheebs @HBO NOT A DRILL. THIS IS HAPPENING!!! +08/10/2017,Comedians,@msjwilly,"RT @HBOPR: Hit comedy podcast @2DopeQueens, from @msjwilly & @dopequeenpheebs, will come to @HBO next year: https://t.co/aQ0Bbmdb3F https:/…" +08/02/2017,Comedians,@msjwilly,"Ah, you're the best! Thank you Angelica. I REALLY appreciate the love! https://t.co/t8wKD4P76t" +08/02/2017,Comedians,@msjwilly,@jonweisman @SoWeirdonDisney Yes! MASSIVE fan! It was ahead of it's time! Can you tell me some cool fact about the show??? 😩😩😩 +08/02/2017,Comedians,@msjwilly,"RT @RottenTomatoes: New, captivating, & a star-making performance from @msjwilly has made The Incredible Jessica James #CertifiedFresh! + +ht…" +08/02/2017,Comedians,@msjwilly,@DevanshiDPatel @jk_rowling @BuzzFeed Lmaoooooo don't drag buzzfeed into this!!! 😩😂😂😂😂😂😂😂 +08/01/2017,Comedians,@msjwilly,RT @jk_rowling: .@msjwilly and I celebrating our birthday yesterday (my tiara really pinched). https://t.co/jf2vdILopS +07/31/2017,Comedians,@msjwilly,@evanrosskatz Oh wow thank you Evan!!! 😩😩😩 +07/31/2017,Comedians,@msjwilly,@hotpatooties @netflix Lmaoooooooooo thank you!!!! +07/31/2017,Comedians,@msjwilly,@TheEmperorJahi @TheRoot Yes! +07/31/2017,Comedians,@msjwilly,@urweedmom Hahahah Awww thanks beautiful! +07/30/2017,Comedians,@msjwilly,@LydiaDYork @TheRoot Me! +07/30/2017,Comedians,@msjwilly,"RT @radioopensource: Check out our own @susansmusings's ~subversive~illustrations in the new @msjwilly film, The Incredible Jessica James,…" +07/30/2017,Comedians,@msjwilly,"RT @StrouseJames: @omfgthelife @msjwilly These are my favorite songs from it: +William Onyeabar/Body and Soul, Fantastic Man +Sofi Tukker/Dr…" +07/30/2017,Comedians,@msjwilly,@vkeithley 🙌🏾🙌🏾🙌🏾yasss khaleesi!!!! Y'all look cute!! 😍 +07/30/2017,Comedians,@msjwilly,@matt_kleinmann 🙌🏾🙌🏾🙌🏾🙌🏾yasssss!! Thank you! +07/30/2017,Comedians,@msjwilly,@el_Rod_1976 @netflix OMG thank you SO much!! I appreciate it! +07/30/2017,Comedians,@msjwilly,@_LIVoutLOUD YESSSSSSS!!!! +07/30/2017,Comedians,@msjwilly,@katieislawsome Well thank you!!!!! +07/30/2017,Comedians,@msjwilly,@ohwhatevan Heyyyyyyyy girl!!!!!! +07/29/2017,Comedians,@msjwilly,@amoore9 Ahhhh You're just the best. Thank you love! #leolove +07/29/2017,Comedians,@msjwilly,"@mrbowline @jk_rowling Ahhhhh! Happy Early birthday, bb!!!!!" +07/29/2017,Comedians,@msjwilly,@techchickk Oh my gosh! I'm so sorry. I'm glad you're okay and thank you for the love. +07/29/2017,Comedians,@msjwilly,@k_bubbs THANK YOU!!! +07/29/2017,Comedians,@msjwilly,@ava Wow! Thank you! Happy Friday!! +07/28/2017,Comedians,@msjwilly,@igotawywitwords Thank you so much!!!! +07/28/2017,Comedians,@msjwilly,@nadiethebaddie @netflix THANK YOU!!! +07/28/2017,Comedians,@msjwilly,Hey Everybody! My new movie The Incredible Jessica James is out today! Check it out on @netflix ! Thank you for your support! +07/28/2017,Comedians,@msjwilly,@Laura_K_A Um.... I Adore this photo. thank you for watching!! +07/28/2017,Comedians,@msjwilly,RT @hunteryharris: hi i interviewed @msjwilly and she is regal https://t.co/H1M9031R0U +07/28/2017,Comedians,@msjwilly,@hunteryharris Thank you! You're such a great interviewer! +07/28/2017,Comedians,@msjwilly,"@QueenSurya No, love!" +07/28/2017,Comedians,@msjwilly,@eddiequintana @Sarahparga @CSzLA Lmaooooooook +07/27/2017,Comedians,@msjwilly,"RT @desusandmero: Tonight, comedian and former Daily Show correspondent @msjwilly. 11pm. https://t.co/SONjkQtcBy" +07/27/2017,Comedians,@msjwilly,@BenjaminJS Thank you!!!! +07/26/2017,Comedians,@msjwilly,@janetmock AHHHHHHH you're the best! Thank you Janet!! +07/26/2017,Comedians,@msjwilly,@anthony_gunk Thank you! Welcome!!! +07/26/2017,Comedians,@msjwilly,RT @gotagirlcrush: Have you chipped in to our @kickstarter yet? 4 days left! You can even get yr voicemail recorded by @msjwilly! https://t… +07/26/2017,Comedians,@msjwilly,"RT @TheDailyShow: Guess the ""T"" is silent? https://t.co/LTGUYJ6rxw" +07/25/2017,Comedians,@msjwilly,@troytheboyy @BellHouseNY NO WAY! Excited to hang!! +07/25/2017,Comedians,@msjwilly,"RT @nprfreshair: ""OK, Ter-Ter. I've always wanted to call you that."" @msjwilly with Terry Gross: https://t.co/HyCF4TuXIH" +07/25/2017,Comedians,@msjwilly,@pilothodge80 Thank you!! +07/25/2017,Comedians,@msjwilly,RT @TheGreeneSpace: 🚨 A few tix released for screening of @netflix's 'The Incredible Jessica James' + Q&A w @msjwilly + @StrouseJames: htt… +07/25/2017,Comedians,@msjwilly,"RT @KamalaHarris: Today’s the day. Keep focused: +Health care +Health care +Health care +Health care +Health care + +Call your Senators now at (20…" +07/25/2017,Comedians,@msjwilly,@veganshaun @nprfreshair @TheDailyShow @2DopeQueens Umm duh. Also thank you for you kind words! +07/25/2017,Comedians,@msjwilly,@sometimesJon @2DopeQueens @dopequeenpheebs Lmaooo DO IT +07/25/2017,Comedians,@msjwilly,"RT @RobertEFenton: . @msjwilly calling Terry Gross ""Ter-Ter"" on @nprfreshair is the best thing I think I've ever heard on this show." +07/25/2017,Comedians,@msjwilly,"RT @colbertlateshow: 🚨🚨 #LSSC TONIGHT:🚨🚨 @charlierose from @CBSThisMorning, @msjwilly of #IncredibleJessicaJames, and @maxbrooksauthor of @…" +07/25/2017,Comedians,@msjwilly,"RT @nprfreshair: TODAY: Jessica Williams @msjwilly on The Incredible Jessica James, getting her @TheDailyShow job at 22, and her podcast @2…" +07/24/2017,Comedians,@msjwilly,RT @nprfreshair: Recording now: Jessica Williams (@msjwilly) on her new @netflix film 'The Incredible Jessica James.' Airs tomorrow! https:… +07/19/2017,Comedians,@msjwilly,"RT @gotagirlcrush: Pledge $275 & you'll get an voicemail recording from our favorite funny woman & Issue 04 featured gal, @msjwilly! https:…" +07/18/2017,Comedians,@msjwilly,@Britnerene Jesus. Are you okay? +07/17/2017,Comedians,@msjwilly,@brooklynmag I just had a chicken salad while playing the sims & now I'm getting ready for my 2 Dope Queens show tonight. +07/17/2017,Comedians,@msjwilly,"@VivalaEmiliaa @brooklynmag AH, thank you!!!" +07/17/2017,Comedians,@msjwilly,"RT @TheRoot: Comedian @msjwilly has a new rom-com coming out on Netflix called ""The Incredible Jessica James."" + +Here's why you should be e…" +07/17/2017,Comedians,@msjwilly,@EvanRomano @brooklynmag @dopequeenpheebs @WNYC @2DopeQueens @TheDailyShow @Trevornoah @jordanklepper @hasanminhaj THANK YOU FOR HAVING ME! +07/17/2017,Comedians,@msjwilly,RT @brooklynmag: @msjwilly @dopequeenpheebs @2DopeQueens @TheDailyShow @Trevornoah @jordanklepper @WNYC Jessica Williams has a leading role… +07/17/2017,Comedians,@msjwilly,RT @brooklynmag: The cover star for our Summer 2017 issue is @msjwilly! https://t.co/jyV8OpwS2B https://t.co/O719BVRf09 +07/15/2017,Comedians,@msjwilly,@emilyvgordon THANK YOU EMILY!!! +07/14/2017,Comedians,@msjwilly,"RT @vulture: .@msjwilly is friggin’ dope in this new trailer for @netflix's ""The Incredible Jessica James"" https://t.co/RMlrbzKB98" +07/08/2017,Comedians,@msjwilly,RT @TheGreeneSpace: Just announced! Preview screening + talkback with @msjwilly and writer/director @StrouseJames: https://t.co/W8o8obVaSU +06/29/2017,Comedians,@msjwilly,RT @2DopeQueens: IT'S TIME! Get your tix to our 7/17 shows at @boweryballroom now! Early show: https://t.co/teMfg6eqe8 Late show: https://t… +06/25/2017,Comedians,@msjwilly,@SidneyCherubin Okay great! I just saw this and was worried!!! +06/25/2017,Comedians,@msjwilly,"RT @wmag: @MsJWilly's first trailer for ""The Incredible Jessica James"" is here: https://t.co/bTX7VBcqqL" +06/23/2017,Comedians,@msjwilly,RT @2DopeQueens: Stop whatever you're doing and watch @msjwilly's trailer for 'The Incredible Jessica James' right now 😍😍😍 https://t.co/2pg… +06/23/2017,Comedians,@msjwilly,RT @ELLEmagazine: EXCLUSIVE: Here's the first trailer for @netflix's 'The Incredible Jessica James' starring @msjwilly: https://t.co/WzHqyK… +06/22/2017,Comedians,@msjwilly,RT @SaintHeron: Next month on July 28th be sure to tune into @msjwilly's 'The Incredible Jessica James' on @netflix: https://t.co/FoSEuL0OX… +06/14/2017,Comedians,@msjwilly,RT @TimeOutNewYork: This week we talk to Jessica Williams on black roles and being a leading lady: https://t.co/H8xLVPKopX @msjwilly https:… +06/13/2017,Comedians,@msjwilly,KAMALA!!!!!! +06/13/2017,Comedians,@msjwilly,@danny_yu Thank you danny!!!!!!! It was such a fun shoot! +06/09/2017,Comedians,@msjwilly,RT @2DopeQueens: We're looking 💣💣💣 at #Bonnaroo2017! We're LIVE on Facebook! https://t.co/r2cXDtvRE1 https://t.co/1rHTWGxrd2 +06/03/2017,Comedians,@msjwilly,@abiolaismyname @CentralPictureH Yes!! See you there! +05/27/2017,Comedians,@msjwilly,@oneilllo @sundancefest @StrouseJames AHHHH THANK YOU @oneilllo!!!! I can't wait for you to see it! +05/27/2017,Comedians,@msjwilly,RT @sundancefest: #London: See the European premiere of @StrouseJames' THE INCREDIBLE JESSICA JAMES starring @msjwilly https://t.co/wS0vVIZ… +05/27/2017,Comedians,@msjwilly,RT @jk_rowling: Muahahahahaha... https://t.co/tjtCcSuYdt +05/26/2017,Comedians,@msjwilly,@anngav Yes! Just one but come through anyway!!! +05/26/2017,Comedians,@msjwilly,London! Come see me Sunday!!! https://t.co/CKDHuNMuLj +05/25/2017,Comedians,@msjwilly,@brocktalbot Yes! Thank you so much! see you there!!! +05/22/2017,Comedians,@msjwilly,Oy! UK! My new movie The Incredible Jessica James is coming to #SundanceLondon 1-4 June @CentralPictureH Tickets > https://t.co/JbhjWR5qqG +05/07/2017,Comedians,@msjwilly,NYC! Tonight at 6:30 I'm doing a staged reading of a REAL HOUSEWIVES OF NY EPISODE AT LITTLEFIELD IN BROOKLYN: https://t.co/cYpi1zGHFe +05/05/2017,Comedians,@msjwilly,"RT @GreggyBennett: This Sunday! Me, @msjwilly, @BrianJMoylan, @RyanHoulihan, @itgetsbedder & more read the RHONY Berkshires ep.Get tix: htt…" +05/04/2017,Comedians,@msjwilly,@anittygritty @Spotify @2DopeQueens It's a podcast. +05/04/2017,Comedians,@msjwilly,"@anittygritty @Spotify @2DopeQueens But...did you know that dope could mean...""very good""? We should be proud of that?" +05/04/2017,Comedians,@msjwilly,"@anittygritty @CapitolEthan @Spotify @2DopeQueens But...it is a usual genre for like, everyone? They have sold over… https://t.co/mdyYgMR2Q3" +05/04/2017,Comedians,@msjwilly,@anittygritty @CapitolEthan @Spotify @2DopeQueens They are literally one of the greatest rock bands in history. Do… https://t.co/rKZYv89dzP +04/29/2017,Comedians,@msjwilly,"@unfoRETTAble On it, khaleesi!" +04/10/2017,Comedians,@msjwilly,"RT @2DopeQueens: We're nominated for the #Webbys, and we're in third place. Come on. We can do better than that. https://t.co/sEqvxaHM4b ht…" +04/05/2017,Comedians,@msjwilly,@moochavsky Yaiansksns! (Yasssss in simlish) +04/05/2017,Comedians,@msjwilly,@MaggieSmet @2DopeQueens Yours too? Haha it's iconic!! +04/05/2017,Comedians,@msjwilly,RT @itsgabrielleu: Meet today's #WCW @msjwilly and @dopequeenpheebs! Read more about these incredible and hysterical ladies below. https://… +06/30/2018,Comedians,@JenKirkman,RT @MCSnugz: I find it endlessly amusing that I am wearing my “childfree” necklace (by @JenKirkman) in the photo that accompanies this awes… +06/30/2018,Comedians,@JenKirkman,@JElvisWeinstein @HollywoodImprov If has now become when +06/30/2018,Comedians,@JenKirkman,A very important person @robertAbooey just tweeted Baba booey https://t.co/ibpwB9wdS3 +06/30/2018,Comedians,@JenKirkman,No thank YOU! Super hilarious! And thanks to the great audience who came to laugh at our jokes about death and matc… https://t.co/uuvpzsOI1i +06/30/2018,Comedians,@JenKirkman,Hope you outgrow cruel jokes about a child. He’s probably worried that you’re a Republican. https://t.co/HqDZqsyI8A +06/30/2018,Comedians,@JenKirkman,@LaLaLandJen @guybranum Wait I was in the same room with @guybranum And didn’t know it??? +06/29/2018,Comedians,@JenKirkman,Huh. Tad Devine - former partner to Paul Manafort in electing Putin puppet in Ukraine - information the Senator kne… https://t.co/Fi9nR5xgxb +06/29/2018,Comedians,@JenKirkman,Read this thread. Find your state. Register to vote. Or add your state. Helps others register to vote. https://t.co/Mnd66HpBFM +06/29/2018,Comedians,@JenKirkman,"@ArleBear Simple easy read on how to register to vote in CALIFORNIA +https://t.co/OKj87G0uB9 + +And direct link to reg… https://t.co/6PbcMD9UNQ" +06/29/2018,Comedians,@JenKirkman,@TrumpPrisonDate I always forget the time travel option. I female feel better 😂 +06/29/2018,Comedians,@JenKirkman,“female pilot” 🤦🏻‍♀️ https://t.co/XdENbrelLj +06/28/2018,Comedians,@JenKirkman,RT @solomongeorgio: White Americans that are horrified by today’s SCOTUS news. This is a real good time to wield your privilege for the gre… +06/28/2018,Comedians,@JenKirkman,"RT @BilgeEbiri: Hitler propagandist Leni Riefenstahl denied service at Hollywood nightclubs and studios in 1938. Leaves fuming, her feeling…" +06/28/2018,Comedians,@JenKirkman,@lauferlaw @asmith702 @LouiseBagshawe @DrDenaGrayson @thespybrief @TheDemocrats It would be Devine if we didn’t have to wait a Tad longer +06/27/2018,Comedians,@JenKirkman,@SpicyFiles @LouiseMensch Me too. +06/27/2018,Comedians,@JenKirkman,@TheRickWilson @LouiseMensch We got your back. +06/24/2018,Comedians,@JenKirkman,@chelseaperetti But is there still gonna be a scene where a guy shows up a a lady’s wedding or something and says h… https://t.co/RCcCNqlqhx +06/24/2018,Comedians,@JenKirkman,@steveblats @Stapes It doesn’t. Go show your wife and kids this tweet. +06/23/2018,Comedians,@JenKirkman,@annielederman 👍 +06/22/2018,Comedians,@JenKirkman,@annielederman Aw thanks. Didn’t take four hours or anything for me to get the right sun lighting +06/22/2018,Comedians,@JenKirkman,Retweeting my podcast account @iseemfunpodcast https://t.co/BewLQtcNom +06/22/2018,Comedians,@JenKirkman,@PFTompkins God Bless it +06/22/2018,Comedians,@JenKirkman,@kelly_carlin And make an awesome daughter!! ❤️🙏🏻 with you today. +06/21/2018,Comedians,@JenKirkman,@anylaurie16 👌🏼👍 +06/21/2018,Comedians,@JenKirkman,@TrannaWintour @Alanis @10x10TO @michaelvenus @neverapartmtl Whoa!! Totally good look +06/20/2018,Comedians,@JenKirkman,@EugeneMirman Omg now everyone is gonna cancel their tix to Flight of the Concords Friday.... +06/18/2018,Comedians,@JenKirkman,@20committee @counterchekist @TheRickWilson I get it! And “I like it! Especially if it’s later in summer...” +06/18/2018,Comedians,@JenKirkman,@counterchekist ❤️🙏🏻👍👍👍👍 +06/18/2018,Comedians,@JenKirkman,@adriann_ramirez @lsqtheatre Ok cool 🧚‍♀️🧚‍♀️🧚‍♀️can you delete this tweet tho 😂 it’s ok for podcast but if I wante… https://t.co/EonZSNeAaG +06/18/2018,Comedians,@JenKirkman,👇🏼 (thread) https://t.co/Oxadgwzchy +06/18/2018,Comedians,@JenKirkman,Just in case any of you were still unclear about how comedians are prophets. https://t.co/kCmoczJai6 +06/17/2018,Comedians,@JenKirkman,@whocharted is there a pic of us from when I was on or a link or didn’t it air yet +06/17/2018,Comedians,@JenKirkman,@anylaurie16 😂😂😂😂😂😂😂😂😂😂 +06/17/2018,Comedians,@JenKirkman,Been trying to compose a ❤️tweet ❤️about Mamma Tammye for days. But I’ve lost fifty pounds in water weight from cry… https://t.co/ZVnu3pxvpg +06/16/2018,Comedians,@JenKirkman,@sedavenport I’m the luckiest girl. I don’t get cramps! +06/16/2018,Comedians,@JenKirkman,@JesseRikart It’s the everything. I don’t even watch the show but I’ve found him so appealing for decades +06/16/2018,Comedians,@JenKirkman,@notbeforenoon Yes. That’s what I mean and it’s not dawning on him that that’s wrong and not American +06/16/2018,Comedians,@JenKirkman,Guys wanna know how PMS feels? It's like the moment of provocation before a testosterone fueled bar fight and in th… https://t.co/Ko2xScBcgj +06/16/2018,Comedians,@JenKirkman,Why would you ever be happy to run into someone you only sort of know. +06/16/2018,Comedians,@JenKirkman,@michaelianblack “Accidentally” +06/16/2018,Comedians,@JenKirkman,@krazykernal Yeah I saw the transformation too on my end with people. It’s terrifying. +06/16/2018,Comedians,@JenKirkman,@lauferlaw That’s what I keep telling myself!! ❤️🙏🏻🙏🏻 +06/16/2018,Comedians,@JenKirkman,@TundraEatsYou I doubt my mom and him would appreciate that 😂 +06/16/2018,Comedians,@JenKirkman,@lauferlaw Why would those heavies that we need resign? Seems cutting off one’s nose....what then happens to the investigation +06/16/2018,Comedians,@JenKirkman,@TomArnold Why tmrw +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe Hey any excuse to toss up a caddy shack clip 😂 +06/15/2018,Comedians,@JenKirkman,"Me, as a get more confused about where America is headed. https://t.co/pZMnwWffn9" +06/15/2018,Comedians,@JenKirkman,Dear @HouseGOP @SenateGOP you can end this. https://t.co/K3P2ABDQW8 +06/15/2018,Comedians,@JenKirkman,@laurenduca @Allen Cc @mattbelknap +06/15/2018,Comedians,@JenKirkman,@KennethWReid 😂😂 +06/15/2018,Comedians,@JenKirkman,If his account were a purposeful parody of himself it would be genius. https://t.co/bZPuJdM4RC +06/15/2018,Comedians,@JenKirkman,@TheRickWilson I’ve been in bed since 630pm. No joke. +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe This is the most satisfying thing I have ever watched +06/15/2018,Comedians,@JenKirkman,@cameronesposito @jonahray @RAINN I can’t wait to watch!!!! I will so soon! +06/15/2018,Comedians,@JenKirkman,"She’s a hateful, hateful, gaslighting sociopath. https://t.co/rRVeeoppcv" +06/15/2018,Comedians,@JenKirkman,@cameronesposito @jonahray @RAINN 🙏🏻🙏🏻🙏🏻❤️👍👍 +06/15/2018,Comedians,@JenKirkman,@MrJonCryer I read this quickly and thought you wrote “anyone who doesn’t look like Anne Hathaway.” And I was like… https://t.co/YgeBm3iDiH +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe I’m greedy. I want both. +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe Hmm well ok then for “birthday weekend” 😂😂🎁🎁🎁🎁 +06/14/2018,Comedians,@JenKirkman,❓ https://t.co/jp0gEhqRUg +06/14/2018,Comedians,@JenKirkman,@jdouglaslittle @ryrysven @tarabea80 @Maggie_Klaus @thehill He didn’t even win a primary so save your kremlin talki… https://t.co/O71SvyTXUP +06/13/2018,Comedians,@JenKirkman,@DitMusic Please lemme know how it goes?????? +06/12/2018,Comedians,@JenKirkman,@DitMusic You’ve always been funnier than me so you’re gonna be amazing. Just open your mouth and say what you feel… https://t.co/NPA9V6LepL +06/12/2018,Comedians,@JenKirkman,"Hey @Newsweek a better headline would be “Just last year, Trump thought Kim Jong Un was his deceased father, Kim Jo… https://t.co/0vAlDptJOx" +06/12/2018,Comedians,@JenKirkman,@gametheorytoday Beta male start own business drop out of college interconnected.....do go on? +06/12/2018,Comedians,@JenKirkman,@MrJonCryer My guess? Destiny Pictures is a woman who is about to be represented by Michael Avenatti. +06/12/2018,Comedians,@JenKirkman,@donnabrazile @counterchekist @realDonaldTrump This is a fucked up thing to tweet Donna. RU serious +06/12/2018,Comedians,@JenKirkman,Who is the third Kim that Trump will meet with this month? +06/12/2018,Comedians,@JenKirkman,@Brotherwags I will never forget we kept saying “this is really gonna happen...” +06/12/2018,Comedians,@JenKirkman,@Hannahgadsby @netflix I’m so excited and so glad the world gets to see this. I tell everyone about it all the time! 🙏🏻❤️🙏🏻 +06/12/2018,Comedians,@JenKirkman,RT @Hannahgadsby: HERE IT IS! THE @netflix TRAILER FOR NANNETFLIX!! gosh.... https://t.co/qYpHDZ7gLm +06/12/2018,Comedians,@JenKirkman,Young people who came to see me on tour this year - remember when I told you guys about Dennis Rodman’s past with K… https://t.co/HKhNxvHZ2x +06/12/2018,Comedians,@JenKirkman,@allistillo @iseemfunpodcast How do I decide what to have for breakfast lunch tmrw. I need advice. +06/12/2018,Comedians,@JenKirkman,Omg https://t.co/wUAjNxma3f +06/12/2018,Comedians,@JenKirkman,@annielederman @AndyKindler 😂 +06/11/2018,Comedians,@JenKirkman,@JElvisWeinstein @AndyKindler Well if Andy is doing all of the speaking it sounds like the dummy DOES get to speak. #hey-o +06/11/2018,Comedians,@JenKirkman,@AuthorKimberley @NRA What a bunch of pussies (forgive use of word pussy) +06/11/2018,Comedians,@JenKirkman,@AndyKindler People often ask me “what’s it like being a woman in comedy”? This is my new answer. https://t.co/FYur0xuuAU +06/11/2018,Comedians,@JenKirkman,@AkilahObviously Omg 😮 the yelling part sounds horrifying and also just omg you poor thing. +06/11/2018,Comedians,@JenKirkman,@AkilahObviously Omg did you have to sit in the brace position for landing. And was it rough landing so glad all is ok 🙏🏻❤️ +06/11/2018,Comedians,@JenKirkman,I strongly feel the Never Trump Republicans and conservatives should make a documentary (much like the Fox News one… https://t.co/XTUvyryULs +06/11/2018,Comedians,@JenKirkman,@Caissie Bless you 🙏🏻❤️ +06/11/2018,Comedians,@JenKirkman,Delete your presidency. https://t.co/jrKBG6tqh3 +06/11/2018,Comedians,@JenKirkman,@kelly_carlin But I have a feeling DT will nuke us before NK does +06/11/2018,Comedians,@JenKirkman,@kelly_carlin You'll be so happy you didn't waste the 20 minutes of your life it takes to reach us worrying - you'l… https://t.co/00mR7XpGx0 +06/10/2018,Comedians,@JenKirkman,"Please wipe off your baby and cut the umbilical cord before you take the announcement pic, cool? Cool." +06/10/2018,Comedians,@JenKirkman,@JElvisWeinstein Shit. Now I’ve been activated. All I wanna do is think of more puns. +06/10/2018,Comedians,@JenKirkman,Indie-rock loving housewives sit around the house eating Bon-Bon..Ivers. +06/10/2018,Comedians,@JenKirkman,@ChrisFranjola “Jingle” is worse than “push pins” if you’re talking about old people expressions +06/10/2018,Comedians,@JenKirkman,@Brotherwags 😂😂😂 I don’t know if I’ve ever laughed so fucking hard +06/09/2018,Comedians,@JenKirkman,@sarahcolonna ❤️❤️❤️ +06/09/2018,Comedians,@JenKirkman,@janiehaddad I talk fast and it mostly confuses everyone then nothing happens 😂 +06/09/2018,Comedians,@JenKirkman,Please calm down. You don’t have to stand this far away from someone in a prescription line. He’s ruining the entir… https://t.co/KsHQoEfLK1 +06/09/2018,Comedians,@JenKirkman,@20committee @FelisDave Happy Caturday. My sister’s cat Mittens never takes a day off from trying to figure out the… https://t.co/uHfExmKvU5 +06/09/2018,Comedians,@JenKirkman,@DeanWardVenice @ChrisFranjola One time Chris wanted me to write a Porky Pig doesn’t wear pants joke +06/08/2018,Comedians,@JenKirkman,@ChrisFranjola Deep +06/08/2018,Comedians,@JenKirkman,@mrdavehill as #vip #celebs I bet we can still get into any cockpit we want tbh +06/08/2018,Comedians,@JenKirkman,@mrdavehill I really do. My dad took me on my first flight when I was 8 and before take off we walked in and pilot… https://t.co/FM3OInraxE +06/07/2018,Comedians,@JenKirkman,"This is important. And thank you @RepSwalwell for using common sense about, ya know, maybe not letting people help… https://t.co/D7xe6bbtCE" +06/07/2018,Comedians,@JenKirkman,I don't wanna alarm my parents but most of the music from your era involved men singing about wanting to have sex with teenaged girls. +06/07/2018,Comedians,@JenKirkman,@reznor68 @ACLU I’m sorry but you do not have correct Information on this. +06/07/2018,Comedians,@JenKirkman,@CandiceMcD Been vegetarian for 30 years so for me no +06/06/2018,Comedians,@JenKirkman,@roxydavis99 Wow. I didn’t know we were allowed to say all this. I must’ve missed the Deep State declassified meeti… https://t.co/aLMHC91j0G +06/06/2018,Comedians,@JenKirkman,@AndyKindler Did he use a word processor and then print it up on his DOT MATRIX printer? #choochoo +06/06/2018,Comedians,@JenKirkman,@michaelianblack @toddbarry I just said “omg watch this. Michael gonna eat this up.” +06/06/2018,Comedians,@JenKirkman,@michaelianblack @toddbarry IS it fun to goof around?? That’s the real question. +06/06/2018,Comedians,@JenKirkman,@toddbarry @michaelianblack @NBCNewsTHINK Todd what I text you privately while I’m tweeting must remain private. Thanks. Is this a DM +06/06/2018,Comedians,@JenKirkman,@michaelianblack @NBCNewsTHINK You’re a lovely human ❤️🙏🏻 +06/06/2018,Comedians,@JenKirkman,@Eviljohna @rbsmashp @joncoopertweets I asked him once on Twitter didn’t answer 😂 +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets I did a 92 point thread (no longer up but archived) about how trump and Bernie made sim… https://t.co/1BVw6G8geV +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets Russian indictments indicate B was helped and the media lets him go. Wife under FBI inv… https://t.co/zFvo8joZP6 +06/05/2018,Comedians,@JenKirkman,@ChrisFranjola You remind me of an old Dennis Miller +06/05/2018,Comedians,@JenKirkman,Biblical prophets haven't warned us of their prophecies with the intensity that Los Angeles cashiers deliver the ne… https://t.co/LVCQcaTs03 +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets Been scream/asking this since late 2016. I. Don’t. Get. It. We heard whispers of every… https://t.co/6iFsQ91nil +06/05/2018,Comedians,@JenKirkman,@nemack007 @counterchekist @lukeobrien @subverzo I’m blocked too +06/05/2018,Comedians,@JenKirkman,@michaelianblack I hear she owns all the jails and that’s why she hasn’t been jailed yet. She gave speeches in jail… https://t.co/eNSsL4pJnB +06/05/2018,Comedians,@JenKirkman,@michaelianblack No. Not as bad as what Hillary did. +06/05/2018,Comedians,@JenKirkman,@aliasvaughn You can. But this isn’t some freestyle stuff. It’s a very choreographed dance that comes with a song c… https://t.co/6VxJ7bQqrQ +06/05/2018,Comedians,@JenKirkman,@aliasvaughn And then Manafort turns on Tad Devine and I do a happy dance. +06/05/2018,Comedians,@JenKirkman,@jean_yoon @marilyn555 @lauferlaw @sparkycollier 100% +06/04/2018,Comedians,@JenKirkman,@KenPlume Thank you ken!! I hope you have 200 friends +06/03/2018,Comedians,@JenKirkman,@JamesFourM @mattgreenfield @RVAwonk @Vbiii241 BAM 🔥 +06/03/2018,Comedians,@JenKirkman,@QeyeTDogbytes @Pinche_Pi Maybe he will once Mueller talks to him about Tad Devine +06/03/2018,Comedians,@JenKirkman,@anylaurie16 He talked to you that way in front of your son??????? +06/02/2018,Comedians,@JenKirkman,"“Jennifah, good talking to you. Your father says hi but he’s busy right now watching Crocodile Dundee.”" +06/02/2018,Comedians,@JenKirkman,@1WomanProblem @SaraJFruman Never does. Thanks for making me laugh....at my own joke I guess. 😂😂😂😂 +06/02/2018,Comedians,@JenKirkman,@BrianStack153 @anylaurie16 I know. Why do people talk in elevators or ask personal questions. Who cares. And he wo… https://t.co/b3LEqayuc2 +06/02/2018,Comedians,@JenKirkman,"Pilot of my flight is a woman. And she’s going through the aisles shaking hands, saying her name, and “I’m driving… https://t.co/IYBFzd1vnO" +06/02/2018,Comedians,@JenKirkman,@anylaurie16 Why would you ever answer anyone 😂 +06/02/2018,Comedians,@JenKirkman,@Brotherwags 6:33 am in nyc and I have learned to no surprise that I’ve already experienced some sexism +06/01/2018,Comedians,@JenKirkman,"@RelativelySane0 @counterchekist @KremlinTrolls So you're saying ""baby, he was born that way?""" +06/01/2018,Comedians,@JenKirkman,@lauferlaw @LouiseMensch BAM! +06/01/2018,Comedians,@JenKirkman,@Tru7hS33kR @counterchekist @KremlinTrolls This is why I ONLY wear Saran Cling Wrap hats +06/01/2018,Comedians,@JenKirkman,@counterchekist @KremlinTrolls Wait I'm OLDER than Alex Jones? He looks like shit +06/01/2018,Comedians,@JenKirkman,“I’m literally dead” - tombstones in the future +05/31/2018,Comedians,@JenKirkman,@fortunefunny Oh good. She’s having some fun. +05/31/2018,Comedians,@JenKirkman,@fortunefunny FIND MELANIA!!! +05/31/2018,Comedians,@JenKirkman,@Brotherwags NO +05/31/2018,Comedians,@JenKirkman,@Brotherwags And that this feckless cunt is LITERALLY selling out America because she's a Russian fucking agent +05/31/2018,Comedians,@JenKirkman,@MCSnugz totally. lol. who am i kidding. +05/31/2018,Comedians,@JenKirkman,@johnmoe 😢 +05/31/2018,Comedians,@JenKirkman,@BVPcomedy I was JUST thinking about you today - no lie. I'm STILL in NYC - and have been all year :( :( :( But OBV… https://t.co/cecJrYtSOc +05/31/2018,Comedians,@JenKirkman,Yup. Stopped myself in the middle of a Google search. I'm too old for adhesive hair jewels. +05/30/2018,Comedians,@JenKirkman,@AndyKindler @dvdjbrn You really need your agent to reach out. Your Russian agent +05/30/2018,Comedians,@JenKirkman,@TheRickWilson 😂 +05/30/2018,Comedians,@JenKirkman,"Oh, sure. I'll take that receipt and then complete an online survey about your service once I finish MAKING MY LIFE WHAT I WANT IT TO BE." +05/30/2018,Comedians,@JenKirkman,How come confetti or balloons don't fall from the ceiling when I put a whole dollar bill in the counter tip jar?!?!? +05/30/2018,Comedians,@JenKirkman,@dvdjbrn @AndyKindler Block all of them. You don’t want any of them able to read your posts as you’re just handing them their research +05/30/2018,Comedians,@JenKirkman,@AndyKindler @dvdjbrn Hot tip cuz I study this stuff due to having been attacked by Russian trolls for two years ha… https://t.co/tFJxewfcHW +05/30/2018,Comedians,@JenKirkman,I've been on Twitter since the beginning when it was in black and white and we had to put a rabbit ear antenna on top of the computer. +05/29/2018,Comedians,@JenKirkman,If you're going to put your home videos of your cat on YouTube - please take the dirty sheets that you use as curta… https://t.co/KnsCCth0DB +05/29/2018,Comedians,@JenKirkman,If @ABCNetwork had just made my pilot - maybe they could’ve avoided this Roseanne mess. https://t.co/rjERp9Sqof +05/28/2018,Comedians,@JenKirkman,Is it ok that today I’m also remembering https://t.co/tLWgsL07b4 +05/28/2018,Comedians,@JenKirkman,A lovely day of remembrance to everyone. From me & Fleet Week. Thanks to those who have sacrificed their lives for… https://t.co/sdQjokuyEB +05/27/2018,Comedians,@JenKirkman,What?? This sounds like fan fiction about a modeling agency. https://t.co/HWaiBjXApJ +05/26/2018,Comedians,@JenKirkman,"My podcast @iseemfunpodcast is now available on @Spotify - and here's how to find it! +https://t.co/ZmnwMnY5Mn" +05/25/2018,Comedians,@JenKirkman,I judge people who have to physically stop what they're doing to answer a question. +05/25/2018,Comedians,@JenKirkman,This isn’t an apology. https://t.co/I3namDtAD6 +05/24/2018,Comedians,@JenKirkman,"I have a ""white noise"" machine in my bedroom. It blares the sounds of people discussing how expensive and competiti… https://t.co/s07kibsPeG" +05/23/2018,Comedians,@JenKirkman,"🇬🇧 LONDON! 🇬🇧 +Me. June 22nd. One night only. One show only. +Tickets here: https://t.co/l1uFeItbAv +@lsqtheatre https://t.co/DVglZByD1W" +05/20/2018,Comedians,@JenKirkman,"I'm gonna be rich once I open this funeral home/florist shop franchise called ""Making Arrangements.""" +05/20/2018,Comedians,@JenKirkman,She was a teenager 30 years his junior. I’m so over this shit. Let’s get some new heroes. https://t.co/W5tbUNwr8w +05/20/2018,Comedians,@JenKirkman,Please do not pawn your snooze of a wife off on me at a party thinking that we'll have things in common because we are both gals. +05/17/2018,Comedians,@JenKirkman,"""CAN MUELLER INDICT A SITTING PRESIDENT OR NOT?"" https://t.co/Aypysst9pu" +05/17/2018,Comedians,@JenKirkman,"""Stella McCartney clothes are so affordable!"" - anyone named McCartney" +05/16/2018,Comedians,@JenKirkman,"""We have no space in our home."" ""What? You have tons of space! You just have too many kids."" -me, if I hosted any HGTV show." +05/16/2018,Comedians,@JenKirkman,"Guys, nevermind Yanny and Laurel. Let’s never forget Yanni and Linda. https://t.co/e7hSGOegQ6" +05/15/2018,Comedians,@JenKirkman,"This is a great thing about a terrible thing. +https://t.co/oQvEMvOP4m" +05/15/2018,Comedians,@JenKirkman,Incredible thread. Only YOU can screw up the 2018 midterms by not speaking up about propaganda aimed at Dems and by… https://t.co/33H6qMx57O +05/15/2018,Comedians,@JenKirkman,Thank God for texting so you can quickly Google a reference rather than getting caught pretending to know face to f… https://t.co/ifDvMNbkmb +05/14/2018,Comedians,@JenKirkman,"Sometimes I just sit around thinking about the time Robert Reed pronounced weekend as ""week-END"" in an episode of the Brady Bunch." +05/14/2018,Comedians,@JenKirkman,"Hearing someone's phone ring in the middle of the day and their ring is my wake-up alarm, is the most disorienting… https://t.co/a2MUFdS6Cy" +05/14/2018,Comedians,@JenKirkman,@michellelkeen I looked it up - it's near the commons on Bowdoin street - near the state house-ish +05/14/2018,Comedians,@JenKirkman,I would like to fix- I try to get this out every way I can. I was wrong. There is a sculpture of Mary Dyer in Bosto… https://t.co/BEHtnlnmhp +05/13/2018,Comedians,@JenKirkman,"My Mother’s Day Call with my mom: + +“Jennifah, I saw Tom Jones. He sang Sex Bomb and he sings, “‘take off your shoes… https://t.co/HwJGUUrPM5" +05/13/2018,Comedians,@JenKirkman,Men when us women take over the world and install Matriarchy we promise we won't creepily watch you eat in restaurants alone. We don't care. +05/13/2018,Comedians,@JenKirkman,Your yearly reminder that Mother’s Day was originally a proclamation by Julia Howe Ward that women worldwide unite… https://t.co/M3rIHQxoyK +05/12/2018,Comedians,@JenKirkman,"Summer here I come! My beach body is READY! I am made of sand, bird poop, and syringes." +05/12/2018,Comedians,@JenKirkman,We have shit to do. https://t.co/REGwugxlLo +05/12/2018,Comedians,@JenKirkman,Jared @comedyattic (my fave comedy club booker) secretly taking me doing my vocal warm up video. https://t.co/JbUJEcOeHc +05/11/2018,Comedians,@JenKirkman,Spiritual Melania: “Best Be.” +05/11/2018,Comedians,@JenKirkman,@Merrillmarkoe He looks cooler and more awesome than most dudes my age and younger. He would never be caught dead w… https://t.co/e3l7xST6zI +05/11/2018,Comedians,@JenKirkman,"I am overhearing two 20-somethings discuss Keith Richards. +“I think he’s like 95.” +“No. He just looks 95 but I thi… https://t.co/kVvcJI5rcc" +05/11/2018,Comedians,@JenKirkman,The only carefree thing I do is toss out the extra button that comes with some clothes. +05/10/2018,Comedians,@JenKirkman,"Just another morning at the airport where everyone is impeccably dressed, smelling nice and making healthy food choices!" +05/10/2018,Comedians,@JenKirkman,"Male TSA agent to me. ""You're flying all alone today?"" I said, ""God. I wish! But I think there's going to be 200 other people on the plane.""" +05/09/2018,Comedians,@JenKirkman,BROOKLYN - I added this additional show on 7/29 because 7/22 sold out within a week - so don't sleep on these ticke… https://t.co/63SONjp77N +05/09/2018,Comedians,@JenKirkman,Sometimes I wonder if I'm really a woman because I don't enjoy watching Law & Order or Breakfast at Tiffany's. +05/09/2018,Comedians,@JenKirkman,I couldn't be less interested in what day of the week it is and how you're feeling about it and what day you want it to be +05/09/2018,Comedians,@JenKirkman,If you have abused any women I will kick your fucking ass.... https://t.co/af8MQfCui2 +05/08/2018,Comedians,@JenKirkman,LOS ANGELES!! My show LAB TEST is back for 3 more dates in 2018. It's been selling out since 2017 and so who are yo… https://t.co/mTWa17L35C +05/08/2018,Comedians,@JenKirkman,If you can't take the heat - get out of my bitchin' +05/08/2018,Comedians,@JenKirkman,"Nobody ever makes inspirational wood carvings that say, ""If you love something set it free. It will be totally fine… https://t.co/XzyQJ2LxSz" +05/08/2018,Comedians,@JenKirkman,I was in a good mood until someone just reminded me of when Scarlett Johansson covered a bunch of Tom Waits songs. +05/07/2018,Comedians,@JenKirkman,I’m done arguing with idiots who don't know that Ray Parker Jr. is totally Dorothy Parker’s nephew. +05/07/2018,Comedians,@JenKirkman,It's been a long day and night & I'm too tired to go through the steps of washing my face. I'll just take an entire… https://t.co/yYMgRfypu0 +05/07/2018,Comedians,@JenKirkman,I'm looking for more of a farm-to-couch dining experience. +05/06/2018,Comedians,@JenKirkman,I bet necrophiliacs have good time management skills. They've taken the two things people obsess over every three minutes & combined them. +05/06/2018,Comedians,@JenKirkman,"I wanna close every last business that still says ""www"" when giving out their website over the phone." +05/06/2018,Comedians,@JenKirkman,"Well, one good thing that I think is happening on Twitter is that a lot less people are saying “like a boss” these days." +06/24/2018,Musicians,@taylorswift13,"Angels 😇 +@RobbieWilliams +https://t.co/A6rx5WA0ie" +05/25/2018,Musicians,@taylorswift13,Amazing @JamesBayMusic! 👏👏👏👏👏👏👏👏👏👏👏👏👏 https://t.co/9RDrCEbKBc +05/22/2018,Musicians,@taylorswift13,Thanks @vmagazine ❤️ See you tonight Seattle!! https://t.co/VB78rGXO7C +05/12/2018,Musicians,@taylorswift13,RT @Variety: Taylor Swift Dazzles on Opening Night of 'Reputation' Tour @taylorswfit13 https://t.co/lGp9dgDYSr +05/12/2018,Musicians,@taylorswift13,RT @RollingStone: Taylor Swift kicked off her 'Reputation' tour last night in Arizona. Rob Sheffield on why this trek is her finest yet htt… +05/12/2018,Musicians,@taylorswift13,RT @mercnews: Review: Taylor Swift delivers near-perfect pop show in Bay Area https://t.co/aOoOAMGCGV https://t.co/EQa5YuTRO9 +05/11/2018,Musicians,@taylorswift13,RT @charli_xcx: 💕CHARLI💕CAMILA💕TAYLOR💕 SEE U 2NIGHT SANTA CLARA !!!!!! https://t.co/dCaEIaFmRR +05/05/2018,Musicians,@taylorswift13,"RT @Camila_Cabello: ALSO ""10 SONGS FROM PAST ALBUMS"" MY HEAD IS SPINNING?!! WILL A HEY STEPHEN, OR CHANGE BE THROWN IN? ENCHANTED?! LONG LI…" +05/05/2018,Musicians,@taylorswift13,RT @Camila_Cabello: THERE’S FOUR DAYS TILL THE REPUTATION TOUR HOLD MY WIG +04/11/2018,Musicians,@taylorswift13,It's National Siblings Day! Check out Austin's movie 😁 https://t.co/Zqx5hLj6of +03/30/2018,Musicians,@taylorswift13,Vertical video for #Delicate out now. Only on @Spotify ✨ https://t.co/ZHvrH7k1PN https://t.co/nhcfIv97gR +03/29/2018,Musicians,@taylorswift13,New video for #Delicate at midnight EST tonight. Only on @spotify  ✨ https://t.co/AHEY6LOSTz +03/12/2018,Musicians,@taylorswift13,I know that it’s delicate... https://t.co/0H5EpgcFtd +03/11/2018,Musicians,@taylorswift13,DELICATE VIDEO WORLD PREMIERE ON @iHeartRadio MUSIC AWARDS ON @TBSNetwork!!! ✨💃✨ https://t.co/hhILI7bwn9 +03/05/2018,Musicians,@taylorswift13,✨✨✨✨✨✨✨✨✨✨✨✨✨ https://t.co/KHNRCaKfU0 +03/01/2018,Musicians,@taylorswift13,I have a very exciting update to share... @Camila_Cabello and @charli_xcx will be the opening acts on the… https://t.co/cN3Wfgbvb3 +02/05/2018,Musicians,@taylorswift13,"Songs I’m loving right now 🎶 +https://t.co/K62TYfJht6" +01/12/2018,Musicians,@taylorswift13,#EndGameMusicVideo out now. @edsheeran @1future https://t.co/z6EiFsLniY +01/11/2018,Musicians,@taylorswift13,"Tonight at midnight eastern. #EndGameMusicVideo +@1future @edsheeran https://t.co/XHRS02IXfY" +12/24/2017,Musicians,@taylorswift13,RT @taylornation13: #TheSwiftLife is now available for Android! Get it on Google Play now: https://t.co/qguJHJ3qPL https://t.co/93evBchcNl +12/16/2017,Musicians,@taylorswift13,RT @AppStore: .@taylorswift13's first app has arrived—and it’s only on the App Store. (Early reviews are in: Meredith and Olivia give it tw… +12/13/2017,Musicians,@taylorswift13,North American dates on sale now! https://t.co/o8bU3G9HMl https://t.co/4ZV2mczOPt +12/11/2017,Musicians,@taylorswift13,RT @RIAA: Congratulations @taylorswift13. #reputation is 3X Platinum + RIAA’s top certified 2017 album to date! @BigMachine https://t.co/D1… +12/11/2017,Musicians,@taylorswift13,RT @RIAA: There’s more! Look What You Made Me Do is 3X Platinum + ... Ready For It? is Platinum @taylorswift13! @BigMachine https://t.co/St… +12/11/2017,Musicians,@taylorswift13,RT @RIAA: #Fearless joins the RIAA 10X Diamond club! @taylorswift13! @BigMachine https://t.co/DSnfIt2Nmc +12/07/2017,Musicians,@taylorswift13,"RT @taylornation13: 🚗❤️🚨 The perfect road trip song! Watch @taylorswift13 find her “Getaway Car” breakthrough on #TaylorSwiftNOW, only from…" +12/07/2017,Musicians,@taylorswift13,"""...Ready For It?"" (@BloodPop ® Remix) out now - https://t.co/BhnUlUqUD7 https://t.co/rsKdAQzd2q" +12/04/2017,Musicians,@taylorswift13,"Thank you @Edward_Enninful, Mert Alas and Marcus Piggott for your passion, spirit and contagious laughter on set.… https://t.co/HTJMTNJlrt" +12/02/2017,Musicians,@taylorswift13,Absolutely stunning. https://t.co/6itJC1bk6W +11/30/2017,Musicians,@taylorswift13,RT @taylornation13: https://t.co/WWpP1tpRmU +11/16/2017,Musicians,@taylorswift13,This week has been unforgettable. I love you guys. Thanks a million 😉 https://t.co/qjspCA7NJ7 +11/15/2017,Musicians,@taylorswift13,The Making of #Delicate ✨ #reputation #TaylorSwiftNow https://t.co/tn78pMCoVV +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/CbTqn2F6Xs +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/JhZNUZ7MxK +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/f4135JnNhM +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/JtblVbBa5u +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/sAtTLVzfw3 +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/pOEpn6Dk5p +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/2OV2DvvIyN +11/14/2017,Musicians,@taylorswift13,RT @jimmyfallon: Taylor Swift performs 'New Year's Day' from her new album Reputation #FallonTonight https://t.co/20GPtmFWzf +11/13/2017,Musicians,@taylorswift13,RT @etnow: Taylor Swift defends her 'reputation' as a great 'SNL' musical guest with 2 epic performances. https://t.co/BGvqX6H1Sn https://t… +11/13/2017,Musicians,@taylorswift13,RT @people: Taylor Swift Takes SNL Stage with Snake-Shaped Mic In Hand — then Goes Acoustic https://t.co/cnH2ESn93x +11/13/2017,Musicians,@taylorswift13,RT @Metro_Ents: Taylor Swift slays the first live performances of the Reputation era on #SNL https://t.co/gYKn3UjLBW +11/13/2017,Musicians,@taylorswift13,RT @usweekly: Taylor Swift slays on 'SNL' and Tiffany Haddish makes history: see the best moments https://t.co/ZdWzK8e3Qj +11/13/2017,Musicians,@taylorswift13,RT @InStyle: Watch Taylor Swift crush her performances from last night's SNL. https://t.co/7zSCBEerxB +11/12/2017,Musicians,@taylorswift13,"THANK YOU SO MUCH!! AHHHH!!! PS, I ADORED your CMA performance 👏👏👏 https://t.co/RGEvOTYEhd" +11/11/2017,Musicians,@taylorswift13,"Tonight. + +📷: Mary Ellen Matthews https://t.co/mbQdDHz5Dn" +11/11/2017,Musicians,@taylorswift13,"My cousins in St. Louis sent this to me. I LOVE YOU @LauraKHettiger +https://t.co/OvC349nq8y" +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/WPWiwPodY1 +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/hEGz0GQFqc +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/PRkjzCmoAc +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/NPcA5WsgVL +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/hxD5n2KrxW +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/9n2rvbzXph +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/K3tUWVvmpd +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/18sg97Oshp +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/3p2sIX7WGU +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/z5HoBkxUQy +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/O8sznXy3vX +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/sygCHKoJvu +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/tDWpcN4MGx +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/eS6JDjsWuF +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/rOXGOsBDae +11/10/2017,Musicians,@taylorswift13,RT @babyhaim: give me dress all day everyday....dress dress dress dress yes yes yes yes @taylorswift13 https://t.co/0RfSI1QHpY +11/10/2017,Musicians,@taylorswift13,"RT @latimes: Taylor Swift's talent remains intact on ""Reputation,"" her most focused, most cohesive album yet https://t.co/9OWWyhLppb https:…" +11/10/2017,Musicians,@taylorswift13,RT @robsheff: good lord I love this album https://t.co/pUVZtUg4t5 +11/10/2017,Musicians,@taylorswift13,#reputation is out now. Let the games begin. https://t.co/oExj2XFGvH https://t.co/GzA6cTEwjf +11/10/2017,Musicians,@taylorswift13,RT @taylornation13: Get an exclusive first listen of ‘New Year’s Day’ at 9:29p ET tonight on @ABC and hang with us as we countdown to #repu… +11/09/2017,Musicians,@taylorswift13,"Waiting for #reputation like... + +https://t.co/oExj2XFGvH https://t.co/LCCRtKnQXz" +11/09/2017,Musicians,@taylorswift13,ABC tonight during Scandal #reputation #TGIT https://t.co/kOhx1vAXoV +11/09/2017,Musicians,@taylorswift13,In NYC for SNL rehearsals. I️ LOVE YOU @littlebigtown and CMAs. https://t.co/3QT7bX6yOe +11/09/2017,Musicians,@taylorswift13,"RT @GMA: CMA Awards Song of the Year: ""Better Man"" - @taylorswift13 + +@CountryMusic #cmaawards2017 #CMAawards https://t.co/QJlUQXHh64" +11/09/2017,Musicians,@taylorswift13,"Two days until #reputation. +https://t.co/oExj2XFGvH https://t.co/z4bk0thC5c" +11/08/2017,Musicians,@taylorswift13,"Three new behind-the-scenes videos available now. + +Only on @AppleMusic: https://t.co/nNtHaYzZrp https://t.co/a4E6cNaD3B" +11/08/2017,Musicians,@taylorswift13,RT @courtneyforce: Let the games begin! Running a @taylorswift13 FunnyCar w/ @AdvanceAuto & @BigMachine at @NHRA Finals! Taylors #reputatio… +11/08/2017,Musicians,@taylorswift13,Forgot to show the back of the Target magazines 😂 on Friday you can get your hands on this quality reading material… https://t.co/r626FRMtI2 +11/08/2017,Musicians,@taylorswift13,"3 days until #reputation. + +https://t.co/oExj2XFGvH https://t.co/sjr8hMqPxV" +11/07/2017,Musicians,@taylorswift13,"Two unique magazines. Poetry, paintings, lyrics & polaroids. +Available Friday: https://t.co/fPhRA1wB6F https://t.co/frFIILyrqa" +11/07/2017,Musicians,@taylorswift13,Inside the reputation Secret Sessions - https://t.co/aotQtPBzer +11/03/2017,Musicians,@taylorswift13,The #CallItWhatYouWant lyric video is out now! Watch it here: https://t.co/FKYJ3dADib +11/03/2017,Musicians,@taylorswift13,"“Call It What You Want” available now. @applemusic +Pre-order #reputation: https://t.co/oExj2XFGvH https://t.co/EWxoTpSzIT" +11/02/2017,Musicians,@taylorswift13,Call It What You Want. Midnight Eastern. https://t.co/nTmlQUzmFN +11/01/2017,Musicians,@taylorswift13,"RT @ATT: ⏰ The Making of a Song premieres 11/13 on @DIRECTVNOW, only from AT&T! https://t.co/emXplX8gjo #TaylorSwiftNOW https://t.co/VIXXYd…" +10/27/2017,Musicians,@taylorswift13,#ReadyForItMusicVideo https://t.co/HYBhBqNVo3 +10/02/2017,Musicians,@taylorswift13,There are no words to express the helplessness and sorrow my broken heart feels for the victims in Vegas and their families. +09/29/2017,Musicians,@taylorswift13,https://t.co/EIXRjnE9Gw +09/22/2017,Musicians,@taylorswift13,"RT @RollingStone: All 115 of Taylor Swift's songs, ranked https://t.co/mdD4f04rQ8 https://t.co/Bm317v6fib" +09/22/2017,Musicians,@taylorswift13,RT @TheEllenShow: #LookWhatYouMadeMeDo @TaylorSwift13 https://t.co/8rUDDtwbdH +09/22/2017,Musicians,@taylorswift13,😍😍😍 https://t.co/oIAruxj8ZH +09/07/2017,Musicians,@taylorswift13,😃☎️ @ATT https://t.co/I6mCnlan8g https://t.co/mjjELwz7L8 +09/07/2017,Musicians,@taylorswift13,Some real tough questions I had for Olivia. https://t.co/VeLIN3iYRY +09/07/2017,Musicians,@taylorswift13,Such a taxing day when they're like 'eat some cookie dough' and you're like 'ok I'll make this sacrifice for my art… https://t.co/oddvslRGXe +09/03/2017,Musicians,@taylorswift13,A second glance into #reputation...ready for it? https://t.co/e495xJi3M8 https://t.co/HF35pISj2N +08/28/2017,Musicians,@taylorswift13,The #LWYMMDvideo is out now - https://t.co/6ajIH45CnX +08/25/2017,Musicians,@taylorswift13,"Official #LWYMMDvideo world premiere. +Sunday 8/27 at the @vmas https://t.co/tjAxr8qdsY" +08/25/2017,Musicians,@taylorswift13,"New single #LookWhatYouMadeMeDo out now. Pre-order #reputation: https://t.co/oExj2XFGvH + +Merch & ticket info at… https://t.co/YFctYldpic" +08/23/2017,Musicians,@taylorswift13,https://t.co/xMBBukfZPs +08/23/2017,Musicians,@taylorswift13,https://t.co/xqhhDZ0y7c +08/22/2017,Musicians,@taylorswift13,https://t.co/12Rfi8bso4 +08/21/2017,Musicians,@taylorswift13,https://t.co/p2DyY0e2M3 +06/30/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 🌫 https://t.co/kgaHLWjUeK https://t.co/pi5FukIk0W +06/30/2018,Musicians,@ArianaGrande,@onelovesbutera me fuckin too but he’s busy being an eyebrow / lash extension king ! so proud of him +06/30/2018,Musicians,@ArianaGrande,@grandesliving ☕️ +06/30/2018,Musicians,@ArianaGrande,@arianasgrnds omg honeymoon ave duhhhhh +06/30/2018,Musicians,@ArianaGrande,@agbdavidson kb 100% +06/30/2018,Musicians,@ArianaGrande,@jonygrandee oh trust me so do we lmao 🙈 he’s very wonderful at what he does tho +06/30/2018,Musicians,@ArianaGrande,@bettersoffs sksjsjs don’t it’s ok i understand +06/30/2018,Musicians,@ArianaGrande,@blowsitaIl yuh yuh yuh ! +06/30/2018,Musicians,@ArianaGrande,@nyczach yooooo wanna hear something i was afraid to tell y’all bc i didn’t want u to worry but i didn’t even do th… https://t.co/iZ7zF9zGA7 +06/30/2018,Musicians,@ArianaGrande,luh you so much https://t.co/W9i76NWFGj +06/30/2018,Musicians,@ArianaGrande,sksjsjsj https://t.co/w4B87oxUdV +06/30/2018,Musicians,@ArianaGrande,oh ........... https://t.co/MIcTrVFgJY +06/30/2018,Musicians,@ArianaGrande,@bettersoffs @rightheresus good bb. love you guys. have a good night pls! +06/30/2018,Musicians,@ArianaGrande,@grandesrole @rightheresus thank u sm +06/30/2018,Musicians,@ArianaGrande,@rightheresus i’m like ...... pretty good +06/30/2018,Musicians,@ArianaGrande,@justgrandeit @ttylgrande mmm hmmmm ! +06/30/2018,Musicians,@ArianaGrande,@remdrops @theIightiscomin sksjsjsj we’ve literally been working on getting our lil dwt project to u nonstop ! thes… https://t.co/SHya6iWTTL +06/29/2018,Musicians,@ArianaGrande,@bigtitsariana IT WAS A BDAY GIFT +06/29/2018,Musicians,@ArianaGrande,@moonlightmiguel amdjsksjjsjs +06/29/2018,Musicians,@ArianaGrande,@fvocus . +06/29/2018,Musicians,@ArianaGrande,@rightheresus @notearsnjh @lightissgrande @blazedbyari @apeshitdeluxe indeed +06/29/2018,Musicians,@ArianaGrande,@notearsnjh @lightissgrande @blazedbyari @apeshitdeluxe yummy ones +06/29/2018,Musicians,@ArianaGrande,"@moonofari you’ll never know +only one +dw & be alright are tied" +06/29/2018,Musicians,@ArianaGrande,@lightissgrande @blazedbyari @apeshitdeluxe it’s so me +06/29/2018,Musicians,@ArianaGrande,@godisawomanag ! +06/29/2018,Musicians,@ArianaGrande,@grandekordei @blazedbyari @apeshitdeluxe collect me +06/29/2018,Musicians,@ArianaGrande,@defendgrande @blazedbyari @apeshitdeluxe 🍴 +06/29/2018,Musicians,@ArianaGrande,@minajcum @blazedbyari @apeshitdeluxe oof r we fighting +06/29/2018,Musicians,@ArianaGrande,@blazedbyari @apeshitdeluxe for now +06/29/2018,Musicians,@ArianaGrande,@bettersoffs for now +06/29/2018,Musicians,@ArianaGrande,@bettersoffs only one +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe i’m back & i feel like they’re tied although so very different +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe like i love u SO much im laughing +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe omG you’re the meanest i love u so so so much tho even tho tasteless sksjsjshsks +06/29/2018,Musicians,@ArianaGrande,@behoeright @apeshitdeluxe @grandesliving anys i love u +06/29/2018,Musicians,@ArianaGrande,@gagasgrande omg love u. hugging u from here. +06/29/2018,Musicians,@ArianaGrande,@privilegedboca @JasperButera @sunkissedhanna i love u more +06/29/2018,Musicians,@ArianaGrande,@sidestoside @JasperButera @sunkissedhanna no but i love u sm +06/29/2018,Musicians,@ArianaGrande,@betteroffdeIuxe @JasperButera @sunkissedhanna ok all of them +06/29/2018,Musicians,@ArianaGrande,@grandesliving oooo i meant single +06/29/2018,Musicians,@ArianaGrande,@collectcaIls @JasperButera @sunkissedhanna ! +06/29/2018,Musicians,@ArianaGrande,@arianaclout @JasperButera @sunkissedhanna so r u my cutie omg +06/29/2018,Musicians,@ArianaGrande,@JasperButera @sunkissedhanna i don’t like to hype y’all up but a hundred percent +06/29/2018,Musicians,@ArianaGrande,@mariesweeteners @badcisions @jonygrandee you’ll see +06/29/2018,Musicians,@ArianaGrande,@Ieftstocry @badcisions @jonygrandee can’t +06/29/2018,Musicians,@ArianaGrande,@remslovato @badcisions @jonygrandee yea +06/29/2018,Musicians,@ArianaGrande,@buterassheesh @jonygrandee ok tru +06/29/2018,Musicians,@ArianaGrande,@badcisions @jonygrandee 🌘🌫👩🏼‍⚖️☁️🌎🕯🌙🐱🎨👼🏼🌌🐺 +06/29/2018,Musicians,@ArianaGrande,@jonygrandee babies it’s not that deep ! these are jus the emojis i like 🙈 +06/29/2018,Musicians,@ArianaGrande,⚡️ https://t.co/Q2qZE5DFBS +06/29/2018,Musicians,@ArianaGrande,i love u +06/29/2018,Musicians,@ArianaGrande,@sweetnrsus it’s coming +06/29/2018,Musicians,@ArianaGrande,@letmeIoveyou @GRANDESDEVOTlON ok werk even tho we’re celebrating at midnight. u in ? +06/29/2018,Musicians,@ArianaGrande,@sweetenersammy this ones jus for me 🙈😇 +06/29/2018,Musicians,@ArianaGrande,@GRANDESDEVOTlON is it 48 or 49 i- +06/29/2018,Musicians,@ArianaGrande,@bealrightdeluxe @notearsttocry @theway fuck i love y’all both sooooo much more fr +06/29/2018,Musicians,@ArianaGrande,@notearsttocry i cant tell u how hard we just laughed +06/29/2018,Musicians,@ArianaGrande,"@selfloveari hi it’s courtney +1. r.e.m. +2. better off +3. sweetener +4. pete +5. goodnight n go" +06/29/2018,Musicians,@ArianaGrande,@selfloveari omg inquiring now +06/29/2018,Musicians,@ArianaGrande,we could jus ... https://t.co/d172UF5KcS +06/28/2018,Musicians,@ArianaGrande,🌫 +06/28/2018,Musicians,@ArianaGrande,if u can beliiiieeeeeeeve mmmm you’re such a dream to me +06/28/2018,Musicians,@ArianaGrande,sleeeeeeeeeep +06/28/2018,Musicians,@ArianaGrande,yuh +06/28/2018,Musicians,@ArianaGrande,boy you’re sucha dream to me +06/28/2018,Musicians,@ArianaGrande,"RT @RepublicRecords: 𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 +𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 +𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 + +Pre-order @ArianaGrande's new album // Out 8.17 +↳ https://t.co/7rXownGX5Q https://t.c…" +06/28/2018,Musicians,@ArianaGrande,@RAINEGRANDE i do +06/28/2018,Musicians,@ArianaGrande,@grandemeester HAHAHAH +06/28/2018,Musicians,@ArianaGrande,@notearslexi omg my sometimes pants look great hello +06/28/2018,Musicians,@ArianaGrande,@ntltckay love u more +06/28/2018,Musicians,@ArianaGrande,@kelanigrande never +06/28/2018,Musicians,@ArianaGrande,@invisibleseas @sweetaner sksjsjskjsjsn +06/28/2018,Musicians,@ArianaGrande,@sweetaner i tried wearing jeans today i felt like my legs were braided. we’ll see. +06/28/2018,Musicians,@ArianaGrande,@minajcum i’m crying wtf is this +06/28/2018,Musicians,@ArianaGrande,i’d literally do this tonight if i could https://t.co/HbUodEXBqd +06/28/2018,Musicians,@ArianaGrande,@arianashijabi i’m pete +06/28/2018,Musicians,@ArianaGrande,hey i miss singing for u guys bye https://t.co/OpQuGtRovU +06/27/2018,Musicians,@ArianaGrande,hi love u more https://t.co/L4jM4iSQsh +06/27/2018,Musicians,@ArianaGrande,omg https://t.co/OiTSyRpWkn +06/27/2018,Musicians,@ArianaGrande,🌘 ♡ https://t.co/SzncBFvnqQ +06/27/2018,Musicians,@ArianaGrande,@juhaynatdjebara @shadeofari tis the whole intro :’) +06/27/2018,Musicians,@ArianaGrande,@sweetenerlilly yes :) +06/27/2018,Musicians,@ArianaGrande,@gotwelIsoon no u already have raindrops now ! my bad. this was confusing. i decided to give u raindrops last minut… https://t.co/rOFN9IjEGz +06/27/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs bundles https://t.co/8wbV2UN8yL https://t.co/cPDH2OqAsa +06/27/2018,Musicians,@ArianaGrande,bitch a mood https://t.co/7UNMLml7vQ +06/27/2018,Musicians,@ArianaGrande,i still don’t think y’all understand how much i love u ........ like .... at the fuck all +06/27/2018,Musicians,@ArianaGrande,issa countdown https://t.co/Us5T2AWutC +06/27/2018,Musicians,@ArianaGrande,@tbyarianagb thank u baby +06/27/2018,Musicians,@ArianaGrande,@grandesbenefit full mood i can’t wait +06/27/2018,Musicians,@ArianaGrande,@dangerousbwoman r we fighting +06/27/2018,Musicians,@ArianaGrande,@selrianarunpop omg cutie ! thank you ! i’m ......... the most excited for you to hear the rest ..... ever +06/27/2018,Musicians,@ArianaGrande,@grandesweeter love u way more +06/27/2018,Musicians,@ArianaGrande,@arianashijabi omg they’re so fun +06/27/2018,Musicians,@ArianaGrande,@flamesariana love u way more +06/27/2018,Musicians,@ArianaGrande,@cutepiegrande u too my sweet +06/27/2018,Musicians,@ArianaGrande,@knewitgrande missed u +06/27/2018,Musicians,@ArianaGrande,@touchedher the best ever i love u +06/27/2018,Musicians,@ArianaGrande,@aintnotearleft @sweetenerlilly i love u more +06/27/2018,Musicians,@ArianaGrande,@godisawomanag hi baby ! +06/27/2018,Musicians,@ArianaGrande,@sweetenerlilly the most grateful ever +06/27/2018,Musicians,@ArianaGrande,“i found the perfect dress for lafayette today” - a tipsy @victoriamonet +06/26/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 🌫 https://t.co/kgaHLW2iQa https://t.co/JOyKQL2iup +06/25/2018,Musicians,@ArianaGrande,@offlinehunk werk +06/25/2018,Musicians,@ArianaGrande,i’m so i’m so !!! +06/25/2018,Musicians,@ArianaGrande,caption dis https://t.co/O7EN8BNO9T +06/25/2018,Musicians,@ArianaGrande,remember when i was the SHADIEST BABY IN THE WORLD https://t.co/WWVqgTJzJM +06/25/2018,Musicians,@ArianaGrande,i - https://t.co/vqiHXSXdOu +06/25/2018,Musicians,@ArianaGrande,ily @troyesivan +06/25/2018,Musicians,@ArianaGrande,@grandekordei i already know qt +06/25/2018,Musicians,@ArianaGrande,@bottomlineari @grandekordei love u more +06/25/2018,Musicians,@ArianaGrande,@grandekordei sksjshakshaksj i love u more +06/25/2018,Musicians,@ArianaGrande,@grandekordei how tFYCK is this a drag i LOVE U and tweet u like 79 times a day relax i love u goodbye +06/25/2018,Musicians,@ArianaGrande,@joangrande @grandekordei @blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @NICKIMINAJ ur so cute i’m out +06/25/2018,Musicians,@ArianaGrande,@joangrande @grandekordei @blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @NICKIMINAJ “expand their mus… https://t.co/qj7YOKwlRJ +06/25/2018,Musicians,@ArianaGrande,ok i love u i gtg find troye +06/25/2018,Musicians,@ArianaGrande,@seattlekarev @teasybutera @nucleargrande @focusondiley @selfloveari which is also what i want on my tombstone btw +06/25/2018,Musicians,@ArianaGrande,@seattlekarev @teasybutera @nucleargrande @focusondiley @selfloveari a bitch ate +06/25/2018,Musicians,@ArianaGrande,@badlyariana i love u sm more always +06/25/2018,Musicians,@ArianaGrande,@teasybutera @nucleargrande @focusondiley @selfloveari sexual female empowerment & how women are literally everythi… https://t.co/xjsS4VrJov +06/25/2018,Musicians,@ArianaGrande,@whenyouready it’s the best +06/25/2018,Musicians,@ArianaGrande,@nucleargrande @focusondiley @selfloveari it’s so fun to like............ go places ! some days will always be bett… https://t.co/Anr67Cq88r +06/25/2018,Musicians,@ArianaGrande,@remsbutera bc at first i was nervous about like....... it coming true. if that makes sense. more honest than i was… https://t.co/QuDRjLXZYP +06/25/2018,Musicians,@ArianaGrande,@purposerealest @selfloveari duh +06/25/2018,Musicians,@ArianaGrande,@focusondiley @selfloveari me too ! it’s lit ! no anxiety ! who is she +06/25/2018,Musicians,@ArianaGrande,"@notearstocryy @selfloveari your humor, understanding, honesty & kindness ! and your ability to make me feel human… https://t.co/zaBD8IRzxp" +06/25/2018,Musicians,@ArianaGrande,@tearsleftocry @notearsalright oh fuck she’s in my favorites too +06/25/2018,Musicians,@ArianaGrande,@selfloveari yo same +06/25/2018,Musicians,@ArianaGrande,@Iouisrem @agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande fuck and borderline. i really c… https://t.co/Uz4Q39GBQH +06/25/2018,Musicians,@ArianaGrande,@notearsalright nope +06/25/2018,Musicians,@ArianaGrande,i know we’re not really doing snippets but i do wanna give u sum special for my birthday if that’s ok .... might po… https://t.co/pCoCDQXE8e +06/25/2018,Musicians,@ArianaGrande,@Iouisrem @agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande i don’t really have a top 5 i k… https://t.co/kwF0QtNLaY +06/25/2018,Musicians,@ArianaGrande,"@agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande rosh says: +Not in order... can't do that.… https://t.co/kcBIxBAOS0" +06/25/2018,Musicians,@ArianaGrande,@leavemeloona @alemoonlightbae @arisweetwaffle @bealrightdeluxe @joangrande everyone’s sleeping ! i’ll ask him too +06/25/2018,Musicians,@ArianaGrande,"@blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande hi it’s doug!!! +- Better Off +- Get Better S… https://t.co/jVYlRNMYq6" +06/25/2018,Musicians,@ArianaGrande,@blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande handing phone over +06/25/2018,Musicians,@ArianaGrande,@alemoonlightbae @arisweetwaffle @bealrightdeluxe @joangrande i’ll ask him in a lil omg +06/25/2018,Musicians,@ArianaGrande,@selfloveari @arisweetwaffle @bealrightdeluxe @joangrande omG i’ll ask when she’s awake +06/25/2018,Musicians,@ArianaGrande,@Buterasbieberrx @arisweetwaffle @bealrightdeluxe @joangrande omg i’ll ask tonight +06/25/2018,Musicians,@ArianaGrande,"@arisweetwaffle @bealrightdeluxe @joangrande it’s frankie !!!! goodnight n go, no tears left to cry, light is comin… https://t.co/z5UM5d0h85" +06/25/2018,Musicians,@ArianaGrande,@arisweetwaffle @bealrightdeluxe @joangrande ok lemme ask +06/25/2018,Musicians,@ArianaGrande,@bealrightdeluxe @joangrande https://t.co/qbQqTqoB16 +06/25/2018,Musicians,@ArianaGrande,"@bealrightdeluxe @joangrande 1. No Tears, 2. God is a Woman, 3. Breathing, 4. Light is Coming, 5. Raindrops - from Joan" +06/25/2018,Musicians,@ArianaGrande,@onelovesbutera @joangrande omg my 3rd bday was Jaws themed & everyone left but i was lit +06/25/2018,Musicians,@ArianaGrande,@bealrightdeluxe @joangrande lemme text her & ask +06/25/2018,Musicians,@ArianaGrande,@joangrande oh my GOD i fucking remember that balloon mom i mentioned it yesterday that shit was so cool omg thank u +06/25/2018,Musicians,@ArianaGrande,@aintnotearleft @fIatlineari omg maybe ! that’d be fun +06/25/2018,Musicians,@ArianaGrande,@leighsometimes @fIatlineari a n x i e t y 🌫 +06/25/2018,Musicians,@ArianaGrande,@sweetaner @fIatlineari oh wow +06/25/2018,Musicians,@ArianaGrande,@fIatlineari bc it’s about people & their loud ass opinions making them deaf to others & the light +06/25/2018,Musicians,@ArianaGrande,@sweeteneramb @knewitgrande @tbyarianagb @touchyit ty ! excited for u to see the rest +06/25/2018,Musicians,@ArianaGrande,@knewitgrande @tbyarianagb @touchyit love u more +06/25/2018,Musicians,@ArianaGrande,@tbyarianagb @touchyit yo same +06/25/2018,Musicians,@ArianaGrande,@touchyit L ! so snuggly n dope +06/25/2018,Musicians,@ArianaGrande,https://t.co/M7ZWJNgZDS +06/25/2018,Musicians,@ArianaGrande,luv u +06/25/2018,Musicians,@ArianaGrande,@nyczach omg +06/25/2018,Musicians,@ArianaGrande,@wegotnotears 🌫👶🏼🙈 +06/25/2018,Musicians,@ArianaGrande,@joangrande what was da surprise i forgot bc it was 22 years ago +06/25/2018,Musicians,@ArianaGrande,https://t.co/DZHoPEHiCA +06/24/2018,Musicians,@ArianaGrande,@beereilish same tbh +06/24/2018,Musicians,@ArianaGrande,yuh https://t.co/oDZbkuGSNU +06/24/2018,Musicians,@ArianaGrande,(indeed the beat did get sicker) +06/24/2018,Musicians,@ArianaGrande,jus sneezed on beat god bless me +06/24/2018,Musicians,@ArianaGrande,be happy 🌫 +06/24/2018,Musicians,@ArianaGrande,grateful n so excited. still listening to sweetener. i’ve...... never been this excited ab anything ever. love u th… https://t.co/U3GARGGioz +06/24/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 💭 preorder https://t.co/kgaHLWjUeK https://t.co/PhD87rBp3Y +06/24/2018,Musicians,@ArianaGrande,see u soon my sweet https://t.co/wKhBfnYGQi +06/24/2018,Musicians,@ArianaGrande,"RT @RepublicRecords: .@ArianaGrande ☾ 𝐒 𝐰 𝐞 𝐞 𝐭 𝐞 𝐧 𝐞 𝐫 ☾ Merch avail now ✨ + +Grab yours here: +https://t.co/LasjaSG58M https://t.co/zhoplLCB…" +06/24/2018,Musicians,@ArianaGrande,"universe must have my back, fell from the sky into my lap" +06/23/2018,Musicians,@ArianaGrande,ʞɹoʎ ʍǝu ǝʌol ᴉ +06/23/2018,Musicians,@ArianaGrande,☕️ ♡ +06/23/2018,Musicians,@ArianaGrande,yuh +06/23/2018,Musicians,@ArianaGrande,n girl you too you are so young n beautiful n so succcesssful +06/23/2018,Musicians,@ArianaGrande,listen bae +06/23/2018,Musicians,@ArianaGrande,love u have a good day +06/23/2018,Musicians,@ArianaGrande,hi i’m listening to sweetener +06/23/2018,Musicians,@ArianaGrande,♡ 🌫 https://t.co/OCkf5g6JzJ +06/23/2018,Musicians,@ArianaGrande,💭 https://t.co/o3UsUHDrb6 https://t.co/PgKM1pDndk +06/22/2018,Musicians,@ArianaGrande,@sidestoside no tears ! i was jus posting pretty things +06/22/2018,Musicians,@ArianaGrande,told u .... it’s uncanny https://t.co/IyKREeFpE1 +06/22/2018,Musicians,@ArianaGrande,https://t.co/VwpaKVujjW +06/22/2018,Musicians,@ArianaGrande,no tears is #3 on pop radio this weeeeeeeek ! thank u so much ♡ 🖖🏼 +06/22/2018,Musicians,@ArianaGrande,@minajcum @grandesecIipse @ifwonIy @beenthereallday @tearsbuteras :’) +06/22/2018,Musicians,@ArianaGrande,@grandesecIipse @ifwonIy @beenthereallday @tearsbuteras funny ass btch +06/22/2018,Musicians,@ArianaGrande,@ifwonIy @beenthereallday @tearsbuteras she loves u & says hi +06/22/2018,Musicians,@ArianaGrande,@goodnightrem @beenthereallday @tearsbuteras nah i got paint onnnn :P +06/22/2018,Musicians,@ArianaGrande,@THEFUTUREISGAY @beenthereallday @tearsbuteras ilysm +06/22/2018,Musicians,@ArianaGrande,@Iovableariana oh absolutely but ......... innnnnnnaaaaawhile 🙈 +06/22/2018,Musicians,@ArianaGrande,@beenthereallday @tearsbuteras sure +06/22/2018,Musicians,@ArianaGrande,@remtrilogy @tearsbuteras i forgot +06/22/2018,Musicians,@ArianaGrande,@divinefeminist @tearsbuteras ☁️♡🥚 +06/22/2018,Musicians,@ArianaGrande,@tearsbuteras mood for the next few years til i’m actually ready #fertilequeen +06/22/2018,Musicians,@ArianaGrande,@sidestoside @blazsed @arianashijabi @gratefulconnor @theonlygrande @davidsonbutera @dagoodshit same ! im so lucky eep +06/22/2018,Musicians,@ArianaGrande,@blazsed @arianashijabi @gratefulconnor @theonlygrande @davidsonbutera @dagoodshit i love u so much more my phone is glitching +06/22/2018,Musicians,@ArianaGrande,@itsnotkelly none of y’all muted ! this is so sweet +06/22/2018,Musicians,@ArianaGrande,@willfulariana @arianashijabi @gratefulconnor @theonlygrande @davidsonbutera @dagoodshit ur so cute. life’s too short my love. +06/22/2018,Musicians,@ArianaGrande,@arianagrandes @arianashijabi @gratefulconnor @theonlygrande @davidsonbutera @dagoodshit omg skjssj love u +06/22/2018,Musicians,@ArianaGrande,@ClassicButerax oh no i didn’t know who they were ! it was a random account .. so weird +06/22/2018,Musicians,@ArianaGrande,@willfulariana @gratefulconnor @theonlygrande @davidsonbutera @dagoodshit let that man live y’all +06/22/2018,Musicians,@ArianaGrande,@arianashijabi @gratefulconnor @theonlygrande @davidsonbutera @dagoodshit oh whateva ☺️ let them have fun +07/17/2017,Musicians,@edsheeran,"This year continues to be equally surreal and amazing. Watch out for this one, me and Lisa have… https://t.co/fNL3aOdkQ4" +07/17/2017,Musicians,@edsheeran,Just posted a photo https://t.co/2iJDDGH7bc +07/17/2017,Musicians,@edsheeran,"First time @itsbennyblanco has seen an episode, here's his review https://t.co/yKwpjetrL4" +07/17/2017,Musicians,@edsheeran,Throwback to the time I was a Lannister https://t.co/QEt6TiexbA +07/16/2017,Musicians,@edsheeran,"Sunday = cat picture. Also, watch Game of Thrones tonight x https://t.co/YG31hfqieH" +07/16/2017,Musicians,@edsheeran,Mohegan sun night #2 ! https://t.co/QC5xOkno1Z +07/15/2017,Musicians,@edsheeran,Filming something cool with @jamielawsonuk and jamesblunt today https://t.co/6W31sFaXRj +07/15/2017,Musicians,@edsheeran,Mohegan Sun ! https://t.co/vMpCqZucct +07/14/2017,Musicians,@edsheeran,Ur a long way from howum now seabiscuit buh https://t.co/CTZp9Mmo5T +07/13/2017,Musicians,@edsheeran,Philly night #2 ! https://t.co/pMqO9pBqYs +07/12/2017,Musicians,@edsheeran,Philly night #1 ! https://t.co/0lZxTEjOkb +07/10/2017,Musicians,@edsheeran,"More stadium dates going up tomorrow in Europe too, as pretty much all of that has gone too.… https://t.co/itFgkPXjrq" +07/10/2017,Musicians,@edsheeran,"More uk stadiums announced, this is bonkers x https://t.co/YzscG67TeJ" +07/10/2017,Musicians,@edsheeran,Buffalo ! https://t.co/S4OWtVsRDW +07/09/2017,Musicians,@edsheeran,Toronto night #2 ! https://t.co/eWbN8CyHUf +07/08/2017,Musicians,@edsheeran,"UK stadium tour sold out this morning so we are adding more dates due to overwhelming demand,… https://t.co/FIyjKl0XRv" +07/08/2017,Musicians,@edsheeran,Toronto night #1 ! https://t.co/LVNbmTdzjm +07/05/2017,Musicians,@edsheeran,"Q magazine is out now. Also loads of Hoo-har about me quitting stuff. I haven't quit anything,… https://t.co/pZqrifrFiW" +07/04/2017,Musicians,@edsheeran,Reppin' on July 4th https://t.co/MLLty4u2Xa +07/02/2017,Musicians,@edsheeran,Sunday Funday #giveitsomewelly https://t.co/TbboZhfAK2 +07/02/2017,Musicians,@edsheeran,St. Paul ! https://t.co/gz0Ifg2Eq7 +07/01/2017,Musicians,@edsheeran,Puerto Rico tour diary x https://t.co/sbXDUtLfVt +07/01/2017,Musicians,@edsheeran,Des Moines ! https://t.co/tUIYcebmIa +06/30/2017,Musicians,@edsheeran,"Check out @FuseODG's brand new banger #WindowSeat & campaign to build a school in Ghana https://t.co/4ryXJHU4GN +#NewAfricaNation" +06/30/2017,Musicians,@edsheeran,Kansas City ! https://t.co/cyClTGylLn +06/30/2017,Musicians,@edsheeran,"Got the fantastic jamesblunt opening up the whole USA tour, his set is brilliant, you're in for… https://t.co/UiRqBs34V9" +06/29/2017,Musicians,@edsheeran,"Starting the first leg of the North American tour today in Kansas, very excited. Also, check out… https://t.co/ScbOOJ7ycj" +06/28/2017,Musicians,@edsheeran,"That's not the end of the stadium tour, watch this space x" +06/28/2017,Musicians,@edsheeran,"Here are the dates for the European stadium tour, tickets on sale Saturday 8th of July -… https://t.co/CIxA7LKXCF" +06/28/2017,Musicians,@edsheeran,"Thank you to @tdtomdavies for making me loads of great specs, lad x https://t.co/JRwbR8bewU" +06/27/2017,Musicians,@edsheeran,🚀 https://t.co/6joHdTll4g +06/27/2017,Musicians,@edsheeran,Announcing UK and Europe stadium tour tomorrow. This was the only picture I could find at short… https://t.co/kBEqb141u6 +06/26/2017,Musicians,@edsheeran,"Anyway, great night, great atmosphere, family, friends, fun. Love you all x" +06/26/2017,Musicians,@edsheeran,"Never thought I'd have to explain it, but everything I do in my live show is live, it's a loop station, not a backing track. Please google x" +06/26/2017,Musicians,@edsheeran,Glastonbury ! https://t.co/iMf1Uo2pPS +06/25/2017,Musicians,@edsheeran,"Closing the Pyramid stage tonight at Glastonbury, tune in on BBC from 21:30pm x https://t.co/c0D7vI7mXJ" +06/24/2017,Musicians,@edsheeran,Bogota tour diary x https://t.co/O1OWsWHdAB +06/22/2017,Musicians,@edsheeran,Glasto warm up show at the O2 ! https://t.co/OHizXjK4RC +06/22/2017,Musicians,@edsheeran,"New merch on https://t.co/W2vnTwszLX, made by @hoax1994 - cruisin' https://t.co/p6GWKlgGS1" +06/21/2017,Musicians,@edsheeran,London Koko ! https://t.co/RI6YR3OgpI +06/17/2017,Musicians,@edsheeran,"Chuffed to be awarded an MBE for services to charity and music, thanks for all your lovely… https://t.co/XLVyGWRqtn" +06/15/2017,Musicians,@edsheeran,Rusty + Calippo https://t.co/UWmsILSQXx +06/15/2017,Musicians,@edsheeran,Monterrey ! https://t.co/iyEv0cqiC4 +06/15/2017,Musicians,@edsheeran,@FuseODG @killbeatz We dey vibe ! +06/15/2017,Musicians,@edsheeran,Sonny & ted https://t.co/ImOfqMVrwF +06/14/2017,Musicians,@edsheeran,Thanks to the lovely people at Jim Dunlop for sorting out my tour capo's and plectrums x https://t.co/Suy7yWNQSW +06/14/2017,Musicians,@edsheeran,Or any of these locations. Please give anything x https://t.co/p3miLUkZ5a +06/14/2017,Musicians,@edsheeran,"anyone with spare clothes/toys/supplies or anything they can part with, please donate to 210 Latimer Rd in West London as soon as you can x" +06/14/2017,Musicians,@edsheeran,Here's a picture of me with a taco and another margarita #mexico #believe #achieve #wot https://t.co/NGf6XSxECS +06/13/2017,Musicians,@edsheeran,Throwback to coconuts on the roadside in Ghana with @fuseodg and @killbeatz https://t.co/dAU65KlCvG +06/13/2017,Musicians,@edsheeran,Homeslice https://t.co/Kt1ZLSn4Pi +06/13/2017,Musicians,@edsheeran,Guadalajara ! https://t.co/szmLm5o0Yi +06/13/2017,Musicians,@edsheeran,Having a drink with this fine gent in Mexico https://t.co/N0yl217TQH +06/13/2017,Musicians,@edsheeran,"Ted, Tedd and Teddy https://t.co/3uDxNHwnFb" +06/11/2017,Musicians,@edsheeran,Mexico City ! https://t.co/g8xFiB0OW8 +06/07/2017,Musicians,@edsheeran,Carpool karaoke is finally here ! Check it out - https://t.co/yYNwLG5z6L +06/07/2017,Musicians,@edsheeran,San José ! https://t.co/6GVO7pgl26 +06/07/2017,Musicians,@edsheeran,Brazil diary x https://t.co/aYG4Lq9djo +06/05/2017,Musicians,@edsheeran,San Juan ! https://t.co/BoV9wTVT08 +06/04/2017,Musicians,@edsheeran,thinking of Manchester today x https://t.co/sobyTO5EH3 +06/03/2017,Musicians,@edsheeran,Bogota ! https://t.co/KNDyRlUw0K +06/02/2017,Musicians,@edsheeran,Argentina tour diary x https://t.co/5LAee1hCRs +06/01/2017,Musicians,@edsheeran,@JKCorden Woof +05/31/2017,Musicians,@edsheeran,@AnneMarieIAm Deep +05/31/2017,Musicians,@edsheeran,Belo Horizonte ! https://t.co/PMfKU7LyOm +05/29/2017,Musicians,@edsheeran,Sao Paolo ! https://t.co/DAC8r1eBLx +05/28/2017,Musicians,@edsheeran,"mini bar raid, pringles and m&m's for dinner don't stop me" +05/26/2017,Musicians,@edsheeran,Santiago diary x https://t.co/6O2Am0W4JQ +05/26/2017,Musicians,@edsheeran,No. No no no no no. https://t.co/fUguQ19cQE +05/26/2017,Musicians,@edsheeran,"New single by @ritaora, me and Steve Mac on writing duties, I love it, check it out people x https://t.co/0IJO3rgVWw" +05/26/2017,Musicians,@edsheeran,Rio ! https://t.co/20pkn8T7HH +05/24/2017,Musicians,@edsheeran,Curitiba ! https://t.co/XnQUiXG5yq +05/23/2017,Musicians,@edsheeran,So heartbreaking. Love and prayers for Manchester. https://t.co/hxTQQAnMfS +05/21/2017,Musicians,@edsheeran,Buenos Aires ! https://t.co/71Sajvi8Ij +05/20/2017,Musicians,@edsheeran,Lima tour diary x https://t.co/vb0r5WTh03 +05/19/2017,Musicians,@edsheeran,"For anyone that missed it, you can get my desert island discs on their podcast now for free x https://t.co/h0lfWyDEj9" +05/19/2017,Musicians,@edsheeran,Woof https://t.co/ToGAlma93A +05/19/2017,Musicians,@edsheeran,"This song came out today that I helped write, check it out x https://t.co/029eTuuOk3" +05/18/2017,Musicians,@edsheeran,Today is a sad day. Rest in peace. +05/18/2017,Musicians,@edsheeran,RT @sortrehearsals: We’ve scrapped our marketing budget to support unsigned bands instead. Here’s why: https://t.co/h7VqHlAZ5J Please RT!… +05/17/2017,Musicians,@edsheeran,Santiago night #2 ! https://t.co/O67w8Lai8j +05/16/2017,Musicians,@edsheeran,Santiago night #1 ! https://t.co/yMBvEZjhmK +05/15/2017,Musicians,@edsheeran,Kev doing a good deed for @greatormondst https://t.co/2vtoAgTBui +05/15/2017,Musicians,@edsheeran,"Pre-sale for my Australian & New Zealand tour starts Tuesday, all the details here x https://t.co/PXZJE1Lvm2 https://t.co/GXzrPuPk1b" +05/14/2017,Musicians,@edsheeran,"RT @JmeBBK: Remember, don't just vote for someone on recommendation. Do your own research. +BUT MAKE SURE YOU REGISTER: +https://t.co/OOXc9Ui…" +05/14/2017,Musicians,@edsheeran,"RT @JmeBBK: RT: Listed by process +Numbered by importance. + +2. Register to vote + +4. Know who you are voting for + +1. Know why you are voting…" +05/14/2017,Musicians,@edsheeran,Lima ! https://t.co/toOOeNllcw +05/13/2017,Musicians,@edsheeran,Machu Picchu https://t.co/scP52ZHWvk +05/13/2017,Musicians,@edsheeran,"'I wasn't made for rain, where's the sun!?' https://t.co/22sDqdnv7f" +05/05/2017,Musicians,@edsheeran,"off into the wilderness for a week, in a bit x" +05/04/2017,Musicians,@edsheeran,"Here's the Galway Girl video, shot by me, thanks to everyone who featured in it! x https://t.co/Z2xjzTSWvU" +05/03/2017,Musicians,@edsheeran,London night #3 ! https://t.co/BNgEpBHTzQ +05/03/2017,Musicians,@edsheeran,"Video for Galway Girl dropping tomorrow, look out for it x https://t.co/ui6q6HwhLL" +05/02/2017,Musicians,@edsheeran,Double pudding +05/02/2017,Musicians,@edsheeran,London night # 2 ! https://t.co/nCO8f5hMUm +05/02/2017,Musicians,@edsheeran,London night #1 ! https://t.co/Xu1h0nKIE3 +05/02/2017,Musicians,@edsheeran,Portrait of me by the wonderful Colin Davidson is on exhibition from tomorrow onwards at the… https://t.co/lxpTMqYHCm +05/01/2017,Musicians,@edsheeran,pudding +05/01/2017,Musicians,@edsheeran,@RyanTedder grabbin' yo nutz +04/29/2017,Musicians,@edsheeran,"@ashtonmiranda @Pret And I just had a dirty burger, the shame of it" +04/29/2017,Musicians,@edsheeran,Birmingham night #2 ! https://t.co/QHzYNOT13A +04/28/2017,Musicians,@edsheeran,@SianAnderson i got some competition it seems ! +04/28/2017,Musicians,@edsheeran,Birmingham night #1 ! https://t.co/KFNZ9659Jh +04/27/2017,Musicians,@edsheeran,@robdelaney watching catastrophe for the first time. ur funny +04/26/2017,Musicians,@edsheeran,Travelling to stage in style on @StuartCamp https://t.co/NHkWxDTFHX +04/26/2017,Musicians,@edsheeran,Nottingham night #2 ! https://t.co/nLC3QV1VBT +04/26/2017,Musicians,@edsheeran,Nottingham night #1 ! https://t.co/XWRJj0jPbs +04/26/2017,Musicians,@edsheeran,Manchester night #2 ! https://t.co/1WXsputL5K +04/24/2017,Musicians,@edsheeran,pre order yo x https://t.co/sh6xZHmdeQ +04/24/2017,Musicians,@edsheeran,Das Bollocks https://t.co/psh7jEeS90 +04/22/2017,Musicians,@edsheeran,Manchester night #1 ! https://t.co/BsQ9K5v4Cz +04/20/2017,Musicians,@edsheeran,Newcastle night #2 ! https://t.co/7UVEqUSNlG +04/20/2017,Musicians,@edsheeran,"Support act for my Central & South American dates will be @antoniolulic, get down early to check him out. Dates at https://t.co/Shphh4csSf" +04/20/2017,Musicians,@edsheeran,"@GreggsOfficial thanks for your gift. I ate 7 sausages rolls in a row and had to go to bed, I love you" +04/19/2017,Musicians,@edsheeran,Calippo is my mood https://t.co/bJyVvTaflK +04/19/2017,Musicians,@edsheeran,Newcastle night #1 ! https://t.co/1RdtkaKuuz +04/19/2017,Musicians,@edsheeran,Random clips from the first month of tour in Europe x https://t.co/NOyIly6mJ5 +04/19/2017,Musicians,@edsheeran,Playing Galway Girl with Beoga on Jools Holland - https://t.co/ZsWsvAW3Se +04/18/2017,Musicians,@edsheeran,big love to @beogamusic for always being amazing x +04/18/2017,Musicians,@edsheeran,"this was one of my favourite things i've done. May 7th, tune in x https://t.co/6ueYlvgmp1" +04/18/2017,Musicians,@edsheeran,"playing on Later... with Jools Holland tonight, 3 songs, BBC2 10PM live, tune in !x" +04/17/2017,Musicians,@edsheeran,"@zaralarsson fries on a pizza too, lets not forget that" +04/16/2017,Musicians,@edsheeran,Glasgow night #1 ! https://t.co/DBLYifpBKJ +04/14/2017,Musicians,@edsheeran,@BBCR1 genuinely am +04/14/2017,Musicians,@edsheeran,@AnneMarieIAm pure bantz +04/14/2017,Musicians,@edsheeran,whoop ! https://t.co/fbhtCa7q7X +04/13/2017,Musicians,@edsheeran,getting to play Nancy Mulligan and Galway Girl today and yesterday with @beogamusic in Dublin was something else +04/13/2017,Musicians,@edsheeran,Dublin night #2 ! https://t.co/asfJkVTlIR +04/12/2017,Musicians,@edsheeran,Dublin night #1 ! https://t.co/tbvbUUvbc8 +04/12/2017,Musicians,@edsheeran,Thank you to Galway and all the wonderful people in it for helping us shoot a music video… https://t.co/OfJUeQLohX +04/09/2017,Musicians,@edsheeran,playing Barcelona tonight in Barcelona was a moment. love you guys x +04/09/2017,Musicians,@edsheeran,@JazminSawyers this is awesome +04/09/2017,Musicians,@edsheeran,Barcelona ! https://t.co/cmlAET1SUb +04/09/2017,Musicians,@edsheeran,Madrid ! https://t.co/SKkGffXWHf +04/09/2017,Musicians,@edsheeran,@WimbledonHC congrats !x +04/09/2017,Musicians,@edsheeran,@WimbledonHC @cristacullen5 @stxhockey whoop !! +04/06/2017,Musicians,@edsheeran,Paris ! https://t.co/dkVdk3t4TR +04/05/2017,Musicians,@edsheeran,Loving discovering this tv show. Worth a watch X https://t.co/bgn5cJf1d4 +04/05/2017,Musicians,@edsheeran,Antwerp ! https://t.co/UAdUysSYZS +04/04/2017,Musicians,@edsheeran,This guy @ryanmcmusic is opening up my Europe tour alongside Anne Marie. Caught him practicing… https://t.co/OaQBGg8m8C +04/04/2017,Musicians,@edsheeran,Amsterdam night #2 ! https://t.co/GlFI7JvZ6h +04/03/2017,Musicians,@edsheeran,Amsterdam night #1 ! https://t.co/FVcxEhNd9p +04/01/2017,Musicians,@edsheeran,Herning ! https://t.co/DiQzQUXoSH +03/31/2017,Musicians,@edsheeran,thank you ! amazing x https://t.co/OfCKIvDPHE +03/30/2017,Musicians,@edsheeran,Stockholm ! https://t.co/0Nc9KkrlFR +03/30/2017,Musicians,@edsheeran,Just posted a photo https://t.co/yFmyHhvnhe +03/29/2017,Musicians,@edsheeran,Teenage cancer trust ! https://t.co/rv6PYgtSZS +03/27/2017,Musicians,@edsheeran,Berlin ! https://t.co/TJyNrfdocW +03/26/2017,Musicians,@edsheeran,Hamburg ! https://t.co/16pEGtOhJY +03/25/2017,Musicians,@edsheeran,@KuruptFM pleasure working with you boiz +03/24/2017,Musicians,@edsheeran,"Pussles reppin Red Nose Day, thanks for all who donated to such a great cause x https://t.co/aw3wgMOOtR" +03/24/2017,Musicians,@edsheeran,"Comic relief Red Nose Day today. Tune in tonight, il be on a fair bit, and so will lots of awesome people. BBC One, 7pm x" +03/24/2017,Musicians,@edsheeran,"Happy friday everyone. James Blunts new album is out today, I co wrote this one with him and… https://t.co/Gsz0a9dqXM" +03/23/2017,Musicians,@edsheeran,Cologne ! https://t.co/arA68apGXX +03/23/2017,Musicians,@edsheeran,CLASH magazine https://t.co/46feWE5tum +03/22/2017,Musicians,@edsheeran,Mannheim ! https://t.co/nJ3kVA0C5x +03/22/2017,Musicians,@edsheeran,Rupert you lad x - https://t.co/nNJdJYI84O +03/22/2017,Musicians,@edsheeran,#WorldWaterDay is TODAY - so lets help kids get #CleanWaterHere by lending your social voice here: https://t.co/i7klqoXkhF +03/20/2017,Musicians,@edsheeran,Munich ! https://t.co/lVHFUKaBPC +03/20/2017,Musicians,@edsheeran,Happy to announce my opening act on my North American tour is @jamesblunt x +03/19/2017,Musicians,@edsheeran,Zurich ! https://t.co/QOdI3Lfj3R +03/17/2017,Musicians,@edsheeran,Turin night #2 (sorry I missed night one !) https://t.co/aGJIrlqvtc +03/17/2017,Musicians,@edsheeran,"For anyone interested, here is the band that play on Galway Girl @beogamusic, and this is the song we sampled x - https://t.co/o5AJNb3X4K" +03/17/2017,Musicians,@edsheeran,"Got a lyric video for my next single Galway Girl, check it out x https://t.co/E8rrgOFeUB" +03/17/2017,Musicians,@edsheeran,Blimey https://t.co/98Hq4WuUGR +03/17/2017,Musicians,@edsheeran,Zara Larsson album out today. We wrote this song together and I love it. Check it out X https://t.co/R9fWKs04vc +03/16/2017,Musicians,@edsheeran,"Great way to start a tour, thank you Turin. Forgot to take a photo of the crowd though, sorry, tomorrow I shall remember. Love y'all x" +03/16/2017,Musicians,@edsheeran,Can't wait @glastofest x https://t.co/BGoKXVqUZp +03/16/2017,Musicians,@edsheeran,Tickets for my US tour on sale Friday at 10am local time. Links & details at https://t.co/DsQUFNY5Lt x https://t.co/ctOLhau3fM +03/15/2017,Musicians,@edsheeran,"@gregjames no worries, i tried to trend it with @JamesBlunt a week ago to no avail, you are my hero" +03/13/2017,Musicians,@edsheeran,This is insane. Thanks to everyone who has a copy xx https://t.co/emXSfqRKtA +03/13/2017,Musicians,@edsheeran,"RT @CHABUDDYGEEZY: ""I'm in love with Chabuddy"" - @edsheeran https://t.co/3IeYoPD7zx" +03/13/2017,Musicians,@edsheeran,Playing an extra show at @theO2 on 22nd June for their 10th Birthday shows. Tickets on sale at 5pm x https://t.co/bKrfdPyNPy +03/12/2017,Musicians,@edsheeran,guess the cats out the bag... https://t.co/9GCDUp9HPN +03/12/2017,Musicians,@edsheeran,"Blimey Milan, thanks for the warm welcome ! https://t.co/dW9cKdiXaA" +03/12/2017,Musicians,@edsheeran,"been working with @KuruptFM for @comicrelief, check it out - https://t.co/U0syjMyCwo" +03/11/2017,Musicians,@edsheeran,Munich to Milan +03/11/2017,Musicians,@edsheeran,Kev took a picture of me sleeping and I sleep with one eye open https://t.co/DN9WGNtsEP +03/11/2017,Musicians,@edsheeran,One more week of promo then tour starts and I can't wait +03/11/2017,Musicians,@edsheeran,@CalvinHarris ❤️ +03/10/2017,Musicians,@edsheeran,@gregjames absolutely bonks +03/10/2017,Musicians,@edsheeran,Did a secret show in NYC for @SIRIUSXM . Hear it on @SiriusXMHits1 and @SiriusXMPulse all weekend: https://t.co/tNQ8TUxSC7 +03/08/2017,Musicians,@edsheeran,"Coming to North American this summer, go here https://t.co/Hjpv5qcz1K for details on the fan pre-sale that starts t… https://t.co/DEtdGAdbv0" +03/07/2017,Musicians,@edsheeran,RT @StuartCamp: Come on down!!! https://t.co/YLgByPloSQ +03/07/2017,Musicians,@edsheeran,"Spent 2 weeks with @PatrickDoyleRS, we had ourselves a good time. Read all about it here x https://t.co/4NBMfaVNqN" +03/07/2017,Musicians,@edsheeran,"Going on Howard Stern today, tune in yo" +03/07/2017,Musicians,@edsheeran,"My first Rolling Stone cover, everywhere friday x https://t.co/H30VzjsiDN" +03/07/2017,Musicians,@edsheeran,Everything's coming up Milhouse +03/06/2017,Musicians,@edsheeran,"Happy Independence Day to Ghana! I had a wonderful time there with @FuseODG last year, such a wonderful, beautiful, vibrant place x 🇬🇭" +03/06/2017,Musicians,@edsheeran,"Thank you iheart, New York bound now X" +03/06/2017,Musicians,@edsheeran,Thank you ! https://t.co/ZNY77euZXW +03/05/2017,Musicians,@edsheeran,chicken for breakfast. wingz an dat +03/05/2017,Musicians,@edsheeran,"Just got to LA, iheart radio awards tomorrow, tune in !" +03/04/2017,Musicians,@edsheeran,Thank you to Blunty for presenting my Goldene Kamera award to me tonight in Hamburg https://t.co/dwWnQNqGxr +03/03/2017,Musicians,@edsheeran,@valstones this is beautiful and exactly the reason why I make music. Thank you x +03/03/2017,Musicians,@edsheeran,"RT @AtlanticRcrdsUK: Happy album release day to @edsheeran! It's been a long wait but '÷' is so worth it, have you listened yet? https://t.…" +03/03/2017,Musicians,@edsheeran,"Quitting music, found a new job. New album out now - https://t.co/zcIzlFOm8C https://t.co/mr0nJPb7gk" +03/03/2017,Musicians,@edsheeran,Lovely seeing all the reactions to the record. Keep sharing x +03/03/2017,Musicians,@edsheeran,@JamesBlunt lets celebrate our albums coming out this month with an album party ! #analbumparty +03/03/2017,Musicians,@edsheeran,RT @JamesBlunt: Fed up of @edsheeran in your feed? Here's a new song of mine to listen to instead. Oh... I wrote it with Ed. https://t.co/X… +06/30/2018,Musicians,@BrunoMars,Paris with the game changer @virgilabloh Before we rock Stade De France 🇫🇷 #24kmagicworldtour https://t.co/CmqeKgkjyP +06/29/2018,Musicians,@BrunoMars,I don’t know what this tweet says but this video makes me happy. I love you all!! https://t.co/dMKg4u2zQQ +06/27/2018,Musicians,@BrunoMars,Found this video in my phone. This is @BRODYTHEGR8 and I trying to figure out the groove for 24k Magic in 2015. W… https://t.co/ZTFkGONhGe +06/27/2018,Musicians,@BrunoMars,RT @Listenary: Bruno Mars. https://t.co/YDb00NIx43 +06/25/2018,Musicians,@BrunoMars,😂 https://t.co/68giC02s0j +06/25/2018,Musicians,@BrunoMars,Steady callin me out!! They act like they luuhhhh me but tweet otherwise. 😏Mmm mmm mmm #CruelWorld https://t.co/xEySzTdWbo +06/25/2018,Musicians,@BrunoMars,🎼 I don’t ever make a promise that I can’t keep 🎶 ~ Bruno Mars 😎 https://t.co/X183syoupW +06/25/2018,Musicians,@BrunoMars,@BET THANK YOU! THANK YOU! THANK YOU! I know I missed the party but I know I’ll see y’all real soon. 🥂 +06/25/2018,Musicians,@BrunoMars,Last night in Lisbon I got to sing for like 2 miliion people. Nah it was more like 1 million. I ain’t going less th… https://t.co/fLfncdvZoc +06/23/2018,Musicians,@BrunoMars,Don’t back pedal now baby we here! 😂 https://t.co/UkswejRij7 +06/23/2018,Musicians,@BrunoMars,Oh the ole what words should I say to get a reply trick huh 😒 https://t.co/UQ54aFWlcs +06/23/2018,Musicians,@BrunoMars,You always gonna twist my tweets and use it against me huh? 😒 https://t.co/DBBlzOYgso +06/23/2018,Musicians,@BrunoMars,You always got somethin to say 😏 https://t.co/f9pKLWho35 +06/23/2018,Musicians,@BrunoMars,"Yo I’m poppin in Madrid!! 😎 Thank you all for always bringin it at the concerts. Can’t wait to come back! Love, E… https://t.co/K96z9zmBI3" +06/22/2018,Musicians,@BrunoMars,😂 THE BEST! Drink lots of agua and say a prayer tonight Chicas. For El Capitan and his hermanos are showing up with… https://t.co/RzgLYiC321 +06/22/2018,Musicians,@BrunoMars,Madrid it is I. El Capitan 🔥. Feels good to be back. Tonight we dance! 🥂 #24KMagicWorldTour +06/21/2018,Musicians,@BrunoMars,Thank you Lucy. It was an honor to sing for y’all last night. ♥️ https://t.co/H787ncgl74 +06/17/2018,Musicians,@BrunoMars,The man that taught me everything I know. From… https://t.co/eeVcl12is6 +06/15/2018,Musicians,@BrunoMars,🎼 Daylight 🎵 https://t.co/wHl1OG7atJ +06/14/2018,Musicians,@BrunoMars,I love you Hawaii! ♥️ Thank You so much. The band and I are gonna have that stadium Shakin!!! https://t.co/PdvTv94sdB +06/11/2018,Musicians,@BrunoMars,One day imma figure out what to do with this… https://t.co/h5hadudLZJ +06/10/2018,Musicians,@BrunoMars,Shut up Dwayne! I shred that shit! https://t.co/NuDjmuYHhq +06/10/2018,Musicians,@BrunoMars,NAH! https://t.co/wIfIJ5ILnw +06/10/2018,Musicians,@BrunoMars,You right. https://t.co/1pT9eMyMOa +06/10/2018,Musicians,@BrunoMars,Nah! https://t.co/G2iS9MO3tS +06/10/2018,Musicians,@BrunoMars,😂😂😂😂😂 How Could I forget? https://t.co/uCKoJhVcnE +06/10/2018,Musicians,@BrunoMars,A song by Santana called Europa. The band will tell you. I play it every soundcheck. @jamareoartis always asks me… https://t.co/nZHAuR1Dbp +06/10/2018,Musicians,@BrunoMars,🙌♥️ https://t.co/Smur0SDV08 +06/10/2018,Musicians,@BrunoMars,Thank You Thank You Thank You! https://t.co/8iPr8XOTBd +06/10/2018,Musicians,@BrunoMars,Thank you 😊 see you soon. https://t.co/ck6kPCUyBd +06/09/2018,Musicians,@BrunoMars,Nah! https://t.co/7zbswauW10 +06/09/2018,Musicians,@BrunoMars,ITS COMING. I GOT YOU https://t.co/bPnE94U7db +06/09/2018,Musicians,@BrunoMars,Have no fear kissy face! Braddah gotta plan 😎 https://t.co/pBvSuKXTZv +06/09/2018,Musicians,@BrunoMars,HAWAII I HEAR YOU!! WERE DOING IT!!! TWO SHOWS AT ALOHA STADIUM!!! #CHEEEHOOOO 🤙 +06/09/2018,Musicians,@BrunoMars,🤔 https://t.co/uWLtMUfzmT +06/09/2018,Musicians,@BrunoMars,"RT @_palolooo: Yoooo @BrunoMars, you gotta add a second show in Hawaii for the homies my dude 🙏🙏🙏" +06/09/2018,Musicians,@BrunoMars,RT @CamMtess: @BrunoMars 2nd show please! Tickets sold out in 20 min. #showyourAloha 🤙🏼 +06/06/2018,Musicians,@BrunoMars,🙌 ♥️ https://t.co/WEUQqQrmOB +06/04/2018,Musicians,@BrunoMars,@DwayneDuggerII 😒 +06/04/2018,Musicians,@BrunoMars,@JoHnJohnThE1 😒 +06/02/2018,Musicians,@BrunoMars,Ok ok ok that’s enough. https://t.co/BpQwK1zUEF +06/02/2018,Musicians,@BrunoMars,Alright calm down 😂 https://t.co/h1vfBxV0Mu +06/02/2018,Musicians,@BrunoMars,👇It’s pretty close actually 😢 #Fuck +06/02/2018,Musicians,@BrunoMars,😒 https://t.co/bqDoQB0bGM +06/02/2018,Musicians,@BrunoMars,😒 https://t.co/D0xKVInZlg +05/31/2018,Musicians,@BrunoMars,TBT https://t.co/aC2wGFqkqs +05/30/2018,Musicians,@BrunoMars,😂 https://t.co/Hi8GlS3vDY +05/30/2018,Musicians,@BrunoMars,No scraps! All love! We’ll figure it out! Brada love da Aina and Aina love da brada! 🤙😜 https://t.co/hA0paMsffG +05/30/2018,Musicians,@BrunoMars,Live In Hawaii #24KMagicWorldTour https://t.co/TNXz9c4WVV +05/30/2018,Musicians,@BrunoMars,Super fail! I tried 😜 https://t.co/zjruCQxvWs +05/30/2018,Musicians,@BrunoMars,I’m https://t.co/MweCfxj6T4 +05/30/2018,Musicians,@BrunoMars,Home https://t.co/Yza3svl2dM +05/27/2018,Musicians,@BrunoMars,@JoHnJohnThE1 I can talk as loud as I want!! And if I choose to summer in Bruges best believe you gon hear about it! Thanks 💅 +05/26/2018,Musicians,@BrunoMars,NAH! https://t.co/EnbNTZeLz0 +05/21/2018,Musicians,@BrunoMars,Just posted a photo https://t.co/cpsd2scPhv +05/21/2018,Musicians,@BrunoMars,👑 https://t.co/aq0kKpfUkt +05/21/2018,Musicians,@BrunoMars,Ms. Jackson ❤️ https://t.co/4b5WbCFcew +05/19/2018,Musicians,@BrunoMars,But nah! https://t.co/n603cf39i5 +05/19/2018,Musicians,@BrunoMars,That was beautiful 😢 https://t.co/n603cf39i5 +05/19/2018,Musicians,@BrunoMars,han backwards is guess what? Nah! https://t.co/XN9frsqrUp +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/d0fT7TO20i +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/T5mtjr2soC +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/x45nPAYjAr +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/fURfenCcqU +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/3hyiMCyvLA +05/19/2018,Musicians,@BrunoMars,I’m in the shadows babbbbyyyy https://t.co/BtSFLWJyQ6 +05/19/2018,Musicians,@BrunoMars,"RT @E40: E-40 New album +“ THE GIFT OF GAB “ +June 29th 2018 🚀🚀🚀🚀🚀 https://t.co/gXdZA84Upg" +05/14/2018,Musicians,@BrunoMars,"*me: tells camera man to stop + +*also me: immediately posts on… https://t.co/0VhPFtSUYX" +05/14/2018,Musicians,@BrunoMars,*Serenaded 🤪 +05/14/2018,Musicians,@BrunoMars,You got it!!! If you ain’t here to party take yo ass back home!! And if you ain’t got yo phone out come get serinat… https://t.co/s6gcXXcLPF +05/13/2018,Musicians,@BrunoMars,Last show tonight in Hong Kong 🇭🇰 #24kmagicworldtour LETS GOOOOOO! https://t.co/rtdZCYsOXg +05/12/2018,Musicians,@BrunoMars,https://t.co/EtQave5NWl Morning inspiration. Tomorrow is not promised. Let’s Rebuild! I wanna see a glimpse before I exit. Don’t you? +05/07/2018,Musicians,@BrunoMars,Thank you all for another session of #AskTheDragon. Gotta get ready for tonight’s show in Singapore. Love on Love o… https://t.co/ugpEGmPdKc +05/07/2018,Musicians,@BrunoMars,Baby steps https://t.co/zXYkke1fK0 +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/oCS8HJMvge +05/07/2018,Musicians,@BrunoMars,Uuuuuhhhhh. https://t.co/Hbv6qJFWhD +05/07/2018,Musicians,@BrunoMars,Molly’s Game https://t.co/1GocAyL0bJ +05/07/2018,Musicians,@BrunoMars,He don’t return my calls no more 😒 after that basketball game shit ain’t never been the same. #RIP https://t.co/JA9NjGRP3Y +05/07/2018,Musicians,@BrunoMars,"The Beach Boys, Gucci Mane and last night the band and I were listening to nine inch nails, System of a Down and in… https://t.co/gpSl9IpUTj" +05/07/2018,Musicians,@BrunoMars,😂 https://t.co/yAob6u3oEm +05/07/2018,Musicians,@BrunoMars,Both of those are fire! Thank you https://t.co/lzIhUHAQC2 +05/07/2018,Musicians,@BrunoMars,E-panda https://t.co/sVBgQMpukf +05/07/2018,Musicians,@BrunoMars,Always! https://t.co/6JpVYqK9PJ +05/07/2018,Musicians,@BrunoMars,I haven’t written my best album yet https://t.co/duWjodkimr +05/07/2018,Musicians,@BrunoMars,Always! https://t.co/D8qfr9aNfH +05/07/2018,Musicians,@BrunoMars,What you mean?? It’s one of my favorites https://t.co/HV9rc36XHT +05/07/2018,Musicians,@BrunoMars,Two diffrent shows starring one magnificent unicorn. https://t.co/IZYGQ7Mn10 +05/07/2018,Musicians,@BrunoMars,Again It’s not true at all. I love Michael too much. If there was a song he wanted to release I’m sure it would’v… https://t.co/NFBzccWskY +05/07/2018,Musicians,@BrunoMars,Childish Gambino. From his show Atlanta to his music and new video. All around incredible. https://t.co/yooD3AHxir +05/07/2018,Musicians,@BrunoMars,No that is not true https://t.co/luCOpHqOS8 +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/L6hjWrzato +05/07/2018,Musicians,@BrunoMars,Everyone!! I wanna go on a collaboration spree. Jump from studio to studio and start writing again. https://t.co/s8ajCiw0X7 +05/07/2018,Musicians,@BrunoMars,I don’t know bout all that. but I will do my best to leave y’all wit something to rock to https://t.co/QgwYeXOjT6 +05/07/2018,Musicians,@BrunoMars,It’s been a while let’s do it!!! #AskTheDragon 🔥 🔥 +05/07/2018,Musicians,@BrunoMars,Shit https://t.co/bs5jqnOz0f +05/07/2018,Musicians,@BrunoMars,Yo Dwayne when I’m tweeting Back Back. https://t.co/wXKCoxmGod +05/07/2018,Musicians,@BrunoMars,BET! https://t.co/SE19gOUcwh +05/07/2018,Musicians,@BrunoMars,You really are. ✨ https://t.co/BGBatruVSK +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/10oWsmnI3i +05/07/2018,Musicians,@BrunoMars,Nah it’s not that serious. But the truth is why would I want to sing to a bunch of screens when I much rather be s… https://t.co/j02958iXYP +05/07/2018,Musicians,@BrunoMars,@kameronwhalum with the phone choreography! 😂 #PutYourPhoneDown!#FeelSomething! https://t.co/xHLwJKrbMf +05/06/2018,Musicians,@BrunoMars,Brace yourself Singapore. For I have returned. 😎 #24kmagicworldtour Tonight!! https://t.co/6595pYKVXI +05/06/2018,Musicians,@BrunoMars,Incredible 😂👏👏👏 https://t.co/hVMb1EoziE +05/06/2018,Musicians,@BrunoMars,Feelin myself in Manila 🇵🇭 #24kmagicworldtour https://t.co/xyIk2je0cF +05/01/2018,Musicians,@BrunoMars,Thank you Bangkok!!! #24kmagicworldtour https://t.co/h6UshK85Zw +04/30/2018,Musicians,@BrunoMars,https://t.co/pkIIb6e3Dl +04/23/2018,Musicians,@BrunoMars,I use to dream about this shit!! 😜🙌 #StillDreamin https://t.co/mYlaB0BU2z +04/21/2018,Musicians,@BrunoMars,Mood https://t.co/pvlRlJsyJM +04/19/2018,Musicians,@BrunoMars,Sending love and prayers to Bruno Sammartino’s family. He was such a gentleman when I met him & really meant a lot to my father & I. RIP👑 +04/17/2018,Musicians,@BrunoMars,💥💥💥💥💥💥music💥💥💥💥💥 +04/17/2018,Musicians,@BrunoMars,Congrats 2 @iamcardib on her #1 album 💥 Congrats 2 @kendricklamar for winning The Pulitzer💥 Congrats to @Beyonce for killin it @ Coachella 💥 +04/16/2018,Musicians,@BrunoMars,Cuz I can’t get a hold of Yoooooouuuuuu🎶 https://t.co/wI0jiLcUWq +04/13/2018,Musicians,@BrunoMars,You can’t stop what was meant to be +04/12/2018,Musicians,@BrunoMars,Thank You Tokyo!!! 🇯🇵 🎶 🍣 😴 https://t.co/BrO9sJ2AKm +04/10/2018,Musicians,@BrunoMars,日本の皆さん。 あなたがコンサートに参加しているのなら、明日は叫び、歌って、汗を流して一晩中踊ってください! パーティーしよう🇯🇵 #24KMagicWorldTour +03/29/2018,Musicians,@BrunoMars,When it comes to spittin that hot fire 🔥 I’m over koalafied! Thank you Australia for… https://t.co/rkynsNZcbR +03/26/2018,Musicians,@BrunoMars,It’s been great Sydney 🇦🇺! Thank you for 5 awesome shows #Hooligans #24kmagicworldtour https://t.co/3cshxYryns +03/25/2018,Musicians,@BrunoMars,Front row last night in Sydney. Her sign said “Brno Mars I think I want to marry you will you… https://t.co/9mDCVTDE1m +03/24/2018,Musicians,@BrunoMars,Everyone head over to snap and get your finesse on!! @iamcardib 🔥 https://t.co/BOZJIyshaV +03/24/2018,Musicians,@BrunoMars,tonight’s our last show in Sydney🇦🇺 Let’s go out in style! Thank you to everyone who showed up… https://t.co/SaSDb6RcpW +03/24/2018,Musicians,@BrunoMars,RT @AtlanticRecords: Limited Edition @BrunoMars & @iamcardib ‘Finesse’ Vinyl & $10.00 T-Shirt! Only Available until March 29th! https://t.c… +03/23/2018,Musicians,@BrunoMars,Who remembers this? https://t.co/sz0L2YcITV +03/23/2018,Musicians,@BrunoMars,I’m bumpin her song right now! That’s Just the way you make me feel 🎶 🎶 https://t.co/AHF6rRqx37 +03/22/2018,Musicians,@BrunoMars,Love this!!! Thank you ladies ❤️ https://t.co/Guf8WRTfkO +03/22/2018,Musicians,@BrunoMars,RT @BET: Look out! '@BrunoMars Presents: 24K Magic Live at the Apollo' hits BET this Saturday night at 8/7c! 🕺🏾💃🏽 https://t.co/c0H4yvq7kZ +03/22/2018,Musicians,@BrunoMars,"RT @lollapalooza: We’re bringing The Weeknd, Bruno Mars, Jack White, Arctic Monkeys + more to Grant Park for #Lolla 2018! Grab your 4-Day T…" +03/19/2018,Musicians,@BrunoMars,You know why I Love Australia? Everywhere I go they serve guava juice. What 👆this picture has to… https://t.co/oTAr9GFZWd +03/15/2018,Musicians,@BrunoMars,Thank you Brisbane 🇦🇺 #Hooligans #24kmagicworldtour https://t.co/JHELoquVu7 +03/13/2018,Musicians,@BrunoMars,Thanks for the love Melbourne 🇦🇺 #24kmagicworldtour 🥂 https://t.co/BD6WucXB7r +03/08/2018,Musicians,@BrunoMars,Melbourne 🇦🇺 #24kmagicworldtour https://t.co/jczXLZJ7ae +03/07/2018,Musicians,@BrunoMars,#24kMagicWorldTour makes its first appearance in Australia tonight 🇦🇺 ✨✨✨#Melbourne #NightOne. Its on!!! +03/05/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/htZmse9elH +03/03/2018,Musicians,@BrunoMars,RT @MissyElliott: I BELIEVE in the Power of Prayer Sending Prayers up for Rick Ross🙏🏾 +03/02/2018,Musicians,@BrunoMars,We must preserve the body roll at all cost. +02/28/2018,Musicians,@BrunoMars,RESPECT! https://t.co/NEznEVNR7V +02/27/2018,Musicians,@BrunoMars,And just like that... WE BACK! Thank you Auckland NZ 🇳🇿 Night 1✨✨ #24kmagicworldtour https://t.co/hnIvur7wiS +02/26/2018,Musicians,@BrunoMars,What an angel . Who knew this little boy would grow up and turn down an NBA contract just so he could pursue his mu… https://t.co/Owm9HigayY +02/26/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/WbBkxEgfjf +02/26/2018,Musicians,@BrunoMars,Hangin With Mr Cooper 🔥 https://t.co/DZ4SGIY5VI +02/26/2018,Musicians,@BrunoMars,This is my favorite gif 👇 https://t.co/h6ivYo6QZr +02/20/2018,Musicians,@BrunoMars,LIKED! https://t.co/JMBIZjMSib +02/20/2018,Musicians,@BrunoMars,https://t.co/SF3RUDjqv6 😂 https://t.co/xF64LX0zgU +02/20/2018,Musicians,@BrunoMars,No. You’re gonna need that. https://t.co/jWizw7CKOS +02/20/2018,Musicians,@BrunoMars,🤔 https://t.co/kgC7fMUO20 +02/20/2018,Musicians,@BrunoMars,Nah! https://t.co/PhtUR7j4My +02/20/2018,Musicians,@BrunoMars,One could argue they never left 😎 https://t.co/X8xbfMJctD +02/20/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/AtANFE3N5s +02/20/2018,Musicians,@BrunoMars,RT @ChantalSumiye: @BrunoMars Only good vibes 😎 +02/20/2018,Musicians,@BrunoMars,Oooohhhh word?!?!? 🍾🍾🍾🍾 I’m playing her whole album in her honor! Happy birthday @rihanna https://t.co/Vu6uRU8iLZ +02/20/2018,Musicians,@BrunoMars,What we talkin bout today twitter? We being positive and uplifting or we being weird? Let me know. 😎 +02/20/2018,Musicians,@BrunoMars,Uncle Quincy 🙌 https://t.co/1qwrdV7oPU +02/16/2018,Musicians,@BrunoMars,Tomorrow is the big day! I hope I see you all at the show and we can celebrate one last time! #24KMagicTour… https://t.co/wSnD4lhWIt +02/15/2018,Musicians,@BrunoMars,I love you Hooligans. Thank you so much. https://t.co/u1Hbbcz1og +02/14/2018,Musicians,@BrunoMars,When Beyonce is having a conversation with Jesus and you over here reflecting about all the… https://t.co/GGpFYVHPzV +02/13/2018,Musicians,@BrunoMars,Ayyyeee! Thanks @kobebryant! #LA https://t.co/cn0qmVFU38 +02/12/2018,Musicians,@BrunoMars,🚨🚨🚨 https://t.co/BqyF9O4tLv +02/08/2018,Musicians,@BrunoMars,Give Me timeeeeee 🎶 https://t.co/G9bytjMpEH +02/08/2018,Musicians,@BrunoMars,#AtlantaHipHopRoyaltyHalftime @NFL I can see it! 😎 https://t.co/p2cD3efTks +02/06/2018,Musicians,@BrunoMars,"GRACIAS MONTERREY, MEXICO CITY AND GUADALAJARA! 🇲🇽 WE HAD SO MUCH FUN IN YOUR COUNTRY. THANKS FOR THE LOVE. #24KMagicTour" +02/05/2018,Musicians,@BrunoMars,See! This the type of tweets that warm my heart. God bless you. ❤️ https://t.co/nIu8Q5HtqB +02/05/2018,Musicians,@BrunoMars,I really tried but there was no availability’s at the venues 😞 forgive me. https://t.co/FIl8XU9F1u +02/05/2018,Musicians,@BrunoMars,. @NFL all jokes aside please lets make that happen +02/05/2018,Musicians,@BrunoMars,". @NFL Shit I just wanna help curate that show, and I’ll only charge like a billion😂" +02/05/2018,Musicians,@BrunoMars,". @NFL Outkast. T.I Gucci, lil jon, Jeezy, Jermaine Dupri just to name a few. it would be the best party Tv has ever seen!" +02/05/2018,Musicians,@BrunoMars,. @NFL you have the opportunity to celebrate incredible Hip Hop Artist from Atlanta Next year. +02/05/2018,Musicians,@BrunoMars,Awesome! https://t.co/HjRH3JyBfs +02/05/2018,Musicians,@BrunoMars,Yo is it true that the next Super Bowl is in Atlanta? +02/05/2018,Musicians,@BrunoMars,The band and I had a lot of fun watching the Super Bowl last night in Mexico. Congrats to philly!! +02/05/2018,Musicians,@BrunoMars,Two sold out stadium shows in Mexico City! Thank you guys for welcoming us with so much love and… https://t.co/l2COEJMNt4 +02/04/2018,Musicians,@BrunoMars,Nah! https://t.co/XW9Z4OmOJB +02/04/2018,Musicians,@BrunoMars,🎥 Rehearsal @sb_jbwkz @tjlewis_916 https://t.co/i8O3jf7XlH +02/04/2018,Musicians,@BrunoMars,👑👑👑 https://t.co/JmTCk0uy0C +02/02/2018,Musicians,@BrunoMars,"The Finale. 🍾🥂 +#24kmagicworldtour https://t.co/LqRf3Zjsof" +02/02/2018,Musicians,@BrunoMars,Announcement Tomorrow! #24kMagicFinale #Hooligans 💥💥💥💥💥💥💥💥💥💥💥💥💥💥💥 I’m doin it! +02/02/2018,Musicians,@BrunoMars,Wooh!!!! 💥💥💥💥💥 +02/02/2018,Musicians,@BrunoMars,Annndddd...what if I told u imma bring my lil sis @iamcardib on tour so we can really turn your city upside down! Make this finale a party!! +02/02/2018,Musicians,@BrunoMars,To be honest maybe 10 to 12 years.... *slowly looks out the window and exhales 😞 #DramaQueen #StillGotIt 😜 https://t.co/QYGg7KMdMS +02/02/2018,Musicians,@BrunoMars,I promise I’m going into hibernation after this. https://t.co/SacDJO1Lp2 +02/02/2018,Musicians,@BrunoMars,And Denver I didn’t forget about you. 😉 +02/02/2018,Musicians,@BrunoMars,🤔 https://t.co/upszwGqaSZ +02/02/2018,Musicians,@BrunoMars,What if I told you I wanna do one more U.S tour so we could celebrate 24k Magic together one last time..... +02/02/2018,Musicians,@BrunoMars,A celebration must commence!! +01/30/2018,Musicians,@BrunoMars,Still on cloud 100! This shit right here was so fun!!! Thank you to everyone in attendance and… https://t.co/0HXu5g6BS0 +01/29/2018,Musicians,@BrunoMars,Unreal!! I love you all!!! ✨ https://t.co/EoDRh9Q5lp +01/25/2018,Musicians,@BrunoMars,Laugh at me all u want but I’m hittin the gym as we speak!!! And by gym I mean slim Jim. I just ate 14 slim Jim’s.… https://t.co/Teipdxl18a +01/24/2018,Musicians,@BrunoMars,If you missed us playing at the the world famous @apollotheater have no fear! CBS is re airing the show THIS FRIDAY… https://t.co/m3biYNzf41 +01/16/2018,Musicians,@BrunoMars,When you got one song in the top 10 but Cardi B got three.😂 LETS GO @iamcardib !!! Thank you to… https://t.co/BiwQ7QWBbf +01/15/2018,Musicians,@BrunoMars,.. @naacpimageaward Thank you for making me feel outstanding this morning. I’m beyond grateful for these awards. https://t.co/U5GozppMsi +01/15/2018,Musicians,@BrunoMars,A true leader. Happy #MLKDay https://t.co/KJF7datN9M +01/14/2018,Musicians,@BrunoMars,#Blessings 🥂 https://t.co/v2DFsi9kg2 +01/14/2018,Musicians,@BrunoMars,Jeez. https://t.co/b0FetmQBbE +01/14/2018,Musicians,@BrunoMars,For real though...What’s wrong with the one I got? What makes a good profile pic? https://t.co/BRJTJjehWk +01/14/2018,Musicians,@BrunoMars,Happy Sunday! ✨✨ https://t.co/TpyS2wmzAx +01/12/2018,Musicians,@BrunoMars,Absolutely! https://t.co/suIO1cmU1U +01/12/2018,Musicians,@BrunoMars,Exactly! I love it you too. https://t.co/kf1gcrscZg +01/12/2018,Musicians,@BrunoMars,Then u must teach the world sweet Delaney. Show them the powers of finesse & the joy it brings. Don’t do it for me.… https://t.co/753t21MPFh +01/12/2018,Musicians,@BrunoMars,"If you don’t know, I’m afraid you’ll never know. Good luck Kyle. I Wish you all the best. https://t.co/BoBlvSt92X" +01/10/2018,Musicians,@BrunoMars,💥💥💥💥💥💥💥💥💥💥💥💥💥 https://t.co/FWLyIT4kPa +01/10/2018,Musicians,@BrunoMars,Hopefully by morning we celebrate. 😎Goodnight beautiful people. +06/30/2018,Musicians,@selenagomez,"Families seeking safety in our country need protection, understanding and opportunity, not detention. This is a mor… https://t.co/9w0w0v6Eo5" +06/29/2018,Musicians,@selenagomez,"RT @HotelT: Grab some 🍿 and get your 🎟️🎟️’s to join Selena, Andy, Joe, and Keegan in #HotelT3 on July 13th! https://t.co/dA7RDCexPr https:/…" +06/21/2018,Musicians,@selenagomez,This is so beautiful thank you Chris https://t.co/XProHkb5Kj +06/13/2018,Musicians,@selenagomez,Help my friend @kidkelly get into the @RadioHOF by voting at https://t.co/OygZajk8vp +06/06/2018,Musicians,@selenagomez,"Donate to #savecarter if you can. If you can’t, please spread the word. Every bit helps! https://t.co/G8NmOlIdFD" +06/06/2018,Musicians,@selenagomez,RT @seewhatsnext: #13ReasonsWhy has been renewed for a third season. All 13 episodes will premiere in 2019. https://t.co/UPtOWyIvJq +06/05/2018,Musicians,@selenagomez,"You can never be too passionate. The video for Back To You Video is out now! +https://t.co/NmFG8RhDJm https://t.co/kkd5OCXw5F" +06/04/2018,Musicians,@selenagomez,Me when I finally get to tell you guys the #BackToYou Video is out tomorrow. 😁 https://t.co/nsamBO5mAX +06/04/2018,Musicians,@selenagomez,😜 https://t.co/aRu5KlJSOz +06/03/2018,Musicians,@selenagomez,(COMING SOON) https://t.co/aeQrrHIKH4 +06/02/2018,Musicians,@selenagomez,https://t.co/myvzHOdwzk +06/02/2018,Musicians,@selenagomez,https://t.co/wNhISpoDio +06/01/2018,Musicians,@selenagomez,https://t.co/p3f6shFw2l +06/01/2018,Musicians,@selenagomez,https://t.co/Dz4xSYbInU +05/31/2018,Musicians,@selenagomez,https://t.co/Pl9aOBsLjE +05/31/2018,Musicians,@selenagomez,https://t.co/A3g9Iurj9e +05/19/2018,Musicians,@selenagomez,My thoughts are with the families of #SantaFe who were supposed to be looking forward to summer break with their lo… https://t.co/g9IcMdeRim +05/19/2018,Musicians,@selenagomez,I am at a complete loss for words watching yet another school shooting. This time in my home state of Texas. Congr… https://t.co/K37Ox4TTdj +05/15/2018,Musicians,@selenagomez,Preorder exclusive @13reasonswhy soundtrack bundles and a portion of the proceeds will go to @TrevorProject and… https://t.co/4abfryhyj0 +05/13/2018,Musicians,@selenagomez,Excited that #BackToYou is the next #HitBound Song of the Week and on the @SiriusXMHits1 playlist! Thank you… https://t.co/v1d4j843EC +05/11/2018,Musicians,@selenagomez,"Thank you @spotify for featuring #BackToYou from @13ReasonsWhy on New Music Friday! +https://t.co/8C2HI06fis https://t.co/VsQm1tFoNK" +05/11/2018,Musicians,@selenagomez,"RT @amazonmusic: 💞 @selenagomez 💞 +🎧#BackToYou https://t.co/zy2xifR2Se https://t.co/2cgcq2QKsm" +05/11/2018,Musicians,@selenagomez,Check out #BackToYou on @AppleMusic’s Selena Gomez Essentials Playlist! https://t.co/uwSrgwqJJY +05/11/2018,Musicians,@selenagomez,Get #BackToYou out now on @AppleMusic 💫 https://t.co/nDiLJ8PZj8 https://t.co/NsLvVot8K9 +05/10/2018,Musicians,@selenagomez,Check out an exclusive vertical video (and a first look at the official video 👀 ) for #BackToYou on @Spotify!… https://t.co/NzDYuROkNi +05/10/2018,Musicians,@selenagomez,"#BackToYou is out now! Preorder the @13ReasonsWhy Season 2 Soundtrack and get it +instantly. 🔙… https://t.co/HcyYZHBLzU" +05/10/2018,Musicians,@selenagomez,"Tune in to @beats1 at 9 am PT to hear my interview with @ZaneLowe about #BackToYou. +https://t.co/KXAm08Dg7h https://t.co/u0psoxX3XU" +05/09/2018,Musicians,@selenagomez,"RT @Beats1: #Selenators! ❣️ +New music from @selenagomez is on the way. #BackToYou is Thursday's #WorldRecord. @zanelowe has it at 9AM LA /…" +05/04/2018,Musicians,@selenagomez,I wanna hold you when I’m not supposed to… https://t.co/Q03X6VCF64 +05/03/2018,Musicians,@selenagomez,Are you guys ready for @13ReasonsWhy Season 2 on May 18? Listen to all the music from the series on my @Spotify pla… https://t.co/6GpG0DemwM +05/02/2018,Musicians,@selenagomez,Presave #BackToYou and you’ll be entered to win a @Puma Phenom Lux Prize Pack!👟 https://t.co/RTnaL0ZAoX https://t.co/dpk6bAAd0x +05/01/2018,Musicians,@selenagomez,"#BackToYou. Out May 10th, part of the @13ReasonsWhy S2 soundtrack. I’m so excited for you guys to hear it.❣️ https://t.co/BsWAQEx0RW" +05/01/2018,Musicians,@selenagomez,RT @13ReasonsWhy: The tapes were just the beginning. May 18. https://t.co/MZczjM1fP3 +04/21/2018,Musicians,@selenagomez,So inspired by your work ♥️ https://t.co/bkQdReyjbZ +03/28/2018,Musicians,@selenagomez,RT @LupusResearch: Learn more about the @PUMA and @selenagomez collaboration benefiting Lupus Research Alliance https://t.co/1oRAjlTIRk htt… +03/26/2018,Musicians,@selenagomez,RT @HotelT: New adventures? ✅ New monsters? ✅ New trailer for #HotelT3? ✅ 🧛🚢 https://t.co/aqdbPEdHUD +12/20/2017,Musicians,@selenagomez,"Go behind the scenes of Wolves, directed by the amazing Colin Tilley. 💕 https://t.co/KP8aLfkbrW" +12/19/2017,Musicians,@selenagomez,Get a look behind the scenes of the Wolves video tomorrow! https://t.co/sOdGjBu3xt +12/01/2017,Musicians,@selenagomez,Thank you @billboard https://t.co/3zkRR6C5BO +11/20/2017,Musicians,@selenagomez,RT @LupusResearch: The @EmpireStateBldg has lit NYC skyline tonight in honor of our Breaking Through Gala celebrating lupus research & the… +11/18/2017,Musicians,@selenagomez,"RT @AMAs: .@selenagomez’s WOLVES VIDEO IS UP ON YOUTUBE! First LIVE performance is tomorrow at 8/7c on ABC. 🌑🐺 #SELENAxAMAs + +https://t.co/…" +11/17/2017,Musicians,@selenagomez,Wolves video x @marshmellomusic is out now! Watch it first on @applemusic. 🐺 https://t.co/gKCG3e9ef0 https://t.co/yaBVR97DSZ +11/17/2017,Musicians,@selenagomez,WOLVES video x @marshmellomusic tomorrow. Watch it first on @applemusic. https://t.co/dJ6Z1W1raX https://t.co/soW8kpzcG0 +11/16/2017,Musicians,@selenagomez,RT @HotelT: Kick back with the Drac pack in the all-new #HotelT3 teaser trailer now and don’t miss them in theaters next summer! 🧛🚢 https:/… +11/15/2017,Musicians,@selenagomez,RT @1027KIISFM: .@SelenaGomez loves seeing #Selenators give back 😊. Tweet a pic/vid completing today's KIISGiving task of telling someone a… +11/08/2017,Musicians,@selenagomez,"LA! Check out the Wolves Wall on Sunset & Stanley, now through the @AMAs on November 19th. Tag your photos of the m… https://t.co/ik58QdidCB" +11/06/2017,Musicians,@selenagomez,Here’s a first look at the music video for Wolves! Tune-in to the @amas Nov 19th to see me perform it live for the… https://t.co/7WGNWDp1CT +10/31/2017,Musicians,@selenagomez,Thank you @billboard! https://t.co/VVhjZjJQjN +10/28/2017,Musicians,@selenagomez,Love to @BBCR1 for making #Wolves their Tune of the Weekend 🐺 listen in to hear it https://t.co/TwcYr05pJ3 +10/27/2017,Musicians,@selenagomez,Thanks to everyone for listening to Wolves and to @spotify for all the support! https://t.co/9SVBJRULSW https://t.co/R2SuSTZTOn +10/27/2017,Musicians,@selenagomez,"RT @Beats1: #BestOfTheWeek headlines: +@selenagomez x @marshmellomusic +@samsmithworld +@cleanbandit +@tydollasign x @LaurenJauregui +https://t.…" +10/26/2017,Musicians,@selenagomez,Wolves x @MarshmelloMusic is out now! 🐺 https://t.co/vyXkNxLOJC https://t.co/oZA8d8gRWI +10/26/2017,Musicians,@selenagomez,Can't wait- 🐺 https://t.co/HG24wMONMh +10/25/2017,Musicians,@selenagomez,"Check out an exclusive visual for Wolves with @marshmellomusic, out now on @Spotify’s Today’s Top Hits Playlist.… https://t.co/c5iJ0LGA17" +10/24/2017,Musicians,@selenagomez,"Check out the official lyrics for Wolves x @marshmellomusic, before it's out tomorrow: https://t.co/ccVY1ERY64 https://t.co/urXYA72RFz" +10/24/2017,Musicians,@selenagomez,"RT @zanelowe: THIS IS BIG! New @selenagomez x @marshmellomusic +#WOLVES #WorldRecord. WEDNESDAY 9AM LA/12PM NYC/5PM LDN +📲 https://t.co/CpoxV…" +10/24/2017,Musicians,@selenagomez,Presave Wolves x @marshmellomusic now and tune in tomorrow for an exclusive vertical video on @Spotify.… https://t.co/rx5TvOwcMY +10/24/2017,Musicians,@selenagomez,Wolves is out tomorrow morning. @marshmellomusic https://t.co/1Gz7ZOVLu6 +10/23/2017,Musicians,@selenagomez,Presave my new song Wolves with @marshmellomusic to be the first to hear it on @spotify Wednesday!… https://t.co/Bz1AQ0aaoa +10/23/2017,Musicians,@selenagomez,"I've been running through the jungle, I've been crying with the wolves. 10.25. https://t.co/ZN9vZTcPnZ" +10/19/2017,Musicians,@selenagomez,Coming 10.25... WOLVES x @marshmellomusic https://t.co/DdctDKXgtc +10/19/2017,Musicians,@selenagomez,"Selenators, meet the mellogang. https://t.co/46Ed4x3Xg4" +09/20/2017,Musicians,@selenagomez,Praying for everyone in Mexico City. So devastated. +09/19/2017,Musicians,@selenagomez,Enter to win the @Coach Selena Grace bag by listening on @Spotify. Top Selenators get their name on my site! 😏… https://t.co/baWT96VtVp +09/04/2017,Musicians,@selenagomez,You can now listen to ‘Fetish’ (@WeAreGalantis Remix) on @spotify’s dancePOP playlist!! https://t.co/JOahGijb1W +08/30/2017,Musicians,@selenagomez,So devastated about the crisis in my home state of Texas. Let's all help- donating here in case you can too: https://t.co/ZTrYu04jAn +08/23/2017,Musicians,@selenagomez,Fetish (@WeAreGalantis Remix) is out now! Listen here: https://t.co/Vo7E89nmbW https://t.co/1deEHoWGLU +08/22/2017,Musicians,@selenagomez,Surprise! @wearegalantis remix of ‘Fetish’ comes out at midnight ET and YOU GUYS helped inspire the art.😝 Can’t wai… https://t.co/rHH0M3O8FQ +08/16/2017,Musicians,@selenagomez,Stream ‘Fetish’ to unlock an exclusive look behind the scenes of the Fetish video before anyone else.… https://t.co/mds1EtEx7j +08/14/2017,Musicians,@selenagomez,I have to run but maybe I should do this more often! Thx for hanging & listening to my music. xo #StreamWithSelena https://t.co/jwzIlxAjIZ +08/14/2017,Musicians,@selenagomez,My little sister Gracie. She's 4 and cooler than me. https://t.co/nYVSZCIMGL +08/14/2017,Musicians,@selenagomez,Depends on my mood! #streamwithselena https://t.co/u1zhynoOVn +08/14/2017,Musicians,@selenagomez,Remind myself what I stand for https://t.co/Do8pztYOLu +08/14/2017,Musicians,@selenagomez,Chocolate https://t.co/56EyYc3jyY +08/14/2017,Musicians,@selenagomez,"My experiences, people just help pull it out of me https://t.co/Im4rqdnYv7" +08/14/2017,Musicians,@selenagomez,Who's listening to 'Love You Like A Love Song' with me? #StreamWithSelena https://t.co/jwzIlxAjIZ +08/14/2017,Musicians,@selenagomez,Eat and talk about everything and nothing https://t.co/jc6NOQhs31 +08/14/2017,Musicians,@selenagomez,Alice in Wonderland https://t.co/U1FxVg5tiv +08/14/2017,Musicians,@selenagomez,Or 16 Candles https://t.co/Nae7ifyv67 +08/14/2017,Musicians,@selenagomez,Wizard of Oz https://t.co/Nae7ifyv67 +08/14/2017,Musicians,@selenagomez,Spanish would be my top but then French https://t.co/dqliHA7kQy +08/14/2017,Musicians,@selenagomez,French https://t.co/dqliHA7kQy +08/14/2017,Musicians,@selenagomez,Treat others how you wish to be treated. #streamwithselena https://t.co/FWkGt6KE3c +08/14/2017,Musicians,@selenagomez,Anything with cream cheese frosting https://t.co/l89MroxGHj +08/14/2017,Musicians,@selenagomez,I'll always go home. It's where my heart is. https://t.co/0QiQuWI7il +08/14/2017,Musicians,@selenagomez,Now Playing: The Heart Wants What It Wants 💕https://t.co/jwzIlxAjIZ https://t.co/pPAwL8BGZR +08/14/2017,Musicians,@selenagomez,Sometimes I have to even if it's not perfected https://t.co/2a4758R9dS +08/14/2017,Musicians,@selenagomez,Camouflage https://t.co/euALfE0Fe3 +08/14/2017,Musicians,@selenagomez,A deep blue https://t.co/VW5AJTWHDN +08/14/2017,Musicians,@selenagomez,Are you serious?!!!! I was literally just listening to her yesterday. She's SUCH a legend. #streamwithselena https://t.co/PHY3afxwxP +08/14/2017,Musicians,@selenagomez,A Heart Like His https://t.co/ViwliJSXQk +08/14/2017,Musicians,@selenagomez,"Up next: My favorite song from Revival, Me & The Rhythm (Sober was a close second.) #StreamWithSelena https://t.co/R1kHNK7hPh" +08/14/2017,Musicians,@selenagomez,Quail egg https://t.co/3ywFl1RVUB +08/14/2017,Musicians,@selenagomez,"I really like ""me and the rhythm"" https://t.co/LziNrkOpaq" +08/14/2017,Musicians,@selenagomez,Now playing: Hands To Myself! #StreamWithSelena https://t.co/dtJhwZfavf +08/14/2017,Musicians,@selenagomez,It was so much fun. I was in a room full of boys. They were all on their phones. https://t.co/0MNEGlEOvP +08/14/2017,Musicians,@selenagomez,"I like feeling like i'm creating a whole new sound each time I collaborate. @KygoMusic's sound is so unique, I love… https://t.co/rm4Q4BkFco" +08/14/2017,Musicians,@selenagomez,I don't have favorites. I have recents. I just watched Lake Mungo https://t.co/eVmaZ38UyJ +08/14/2017,Musicians,@selenagomez,I always have that on every album! https://t.co/x9Kz0OK2YL +08/14/2017,Musicians,@selenagomez,Slow Down https://t.co/KqK997ycfq +08/14/2017,Musicians,@selenagomez,Eminem! #StreamWithSelena https://t.co/3r1CMal9ar +08/14/2017,Musicians,@selenagomez,I love my Brazilian fans! https://t.co/SBSIATagUd +08/14/2017,Musicians,@selenagomez,I don't know. I have always preferred piano https://t.co/bLEqcoQTaE +08/14/2017,Musicians,@selenagomez,Now let’s listen to ‘It Ain’t Me’ with @kygomusic. This was such a fun one to make! https://t.co/jwzIlxAjIZ #StreamWithSelena +08/14/2017,Musicians,@selenagomez,Most of the time I am. I'm just really good at covering it up 😀 https://t.co/M5wlRtqhT2 +08/14/2017,Musicians,@selenagomez,Lately? That I'm moving to Europe... so random. #StreamWithSelena https://t.co/ioxlycLXCC +08/14/2017,Musicians,@selenagomez,The collaboration and being a part of their family #streamwithselena https://t.co/BecVPY5ICb +08/14/2017,Musicians,@selenagomez,"With confidence, you just have to believe it until it's natural. Don't just say it. Believe it. #StreamWithSelena https://t.co/bQ1trCjSrv" +08/14/2017,Musicians,@selenagomez,The album making process because I learned so much about myself as an artist #streamwithselena https://t.co/HkmD8BGiv6 +08/14/2017,Musicians,@selenagomez,Kill Em With Kindness is up next… a song that’s close to my heart now more than ever. https://t.co/jwzIlxAjIZ… https://t.co/Ebe3tpJvOR +08/14/2017,Musicians,@selenagomez,I have to always grow #streamwithselena https://t.co/OmCzml3Bzr +08/14/2017,Musicians,@selenagomez,Yes - there's one that is really special to me. It's ballad. https://t.co/uvTd2elMBi +08/14/2017,Musicians,@selenagomez,I got the most inspiration during seasons of change https://t.co/NVL5yTGdgs +08/14/2017,Musicians,@selenagomez,Connecting with my fans! And filters. https://t.co/lXXhrngwug +08/14/2017,Musicians,@selenagomez,Now let’s throw it back to Revival with Good For You. https://t.co/jwzIlxAjIZ #StreamWithSelena https://t.co/GRbCzRCkqe +08/14/2017,Musicians,@selenagomez,#GameOfThrones I finished the third season yesterday. No spoilers! #streamwithselena https://t.co/Mgc0lImL2r +08/14/2017,Musicians,@selenagomez,"I like ""Wild Thoughts"" with Rihanna https://t.co/4a12NuEbj9" +08/14/2017,Musicians,@selenagomez,Pieces by Amanda Cook https://t.co/oTBD2L7ode +08/14/2017,Musicians,@selenagomez,"Probably the mom character! It was such a twist at the end, I love how it all came together. #streamwithselena https://t.co/5I71V2Z9Nd" +08/14/2017,Musicians,@selenagomez,Being able to learn from someone else's sound and combining it with mine https://t.co/BU6i35L3gE +08/14/2017,Musicians,@selenagomez,Next on the playlist is Bad Liar! https://t.co/jwzIlxAjIZ #StreamWithSelena https://t.co/fgIIV8a3Mw +08/14/2017,Musicians,@selenagomez,I love being able to collaborate w/different artists & producers so every song is new and different. #streamwithsel… https://t.co/vKtVfmClC6 +08/14/2017,Musicians,@selenagomez,Not telling! https://t.co/9lRlcg2sMr +08/14/2017,Musicians,@selenagomez,"Yes, I can sing @gucci1017's part" +08/14/2017,Musicians,@selenagomez,Being able to work with @gucci1017 again. #goals +08/14/2017,Musicians,@selenagomez,"Here we go! Listen along on https://t.co/jwzIlxAjIZ. First up, Fetish ft. @gucci1017. #StreamWithSelena https://t.co/J5m2IUc8CD" +08/14/2017,Musicians,@selenagomez,#StreamWithSelena starts in 30 minutes. Get ready to push play on https://t.co/jwzIlxAjIZ on @spotify and tweet me… https://t.co/QsJ0OPNWrT +08/14/2017,Musicians,@selenagomez,Join me for a listening party and Q&A tmrw at 12 pm PT. Get ready by following https://t.co/jwzIlxAjIZ on @Spotify… https://t.co/jeeUARJ43E +08/10/2017,Musicians,@selenagomez,Press and hold on the @Snapchat camera when listening to “Fetish” to @Shazam and unlock my exclusive filter! 🍑 https://t.co/K7KzDpqHd6 +08/04/2017,Musicians,@selenagomez,TONIGHT! Watch #WEday on CBS at 8/7c. @wemovement https://t.co/1OvHa8rTM6 +08/03/2017,Musicians,@selenagomez,RT @voguemagazine: Why @SelenaGomez's new collaboration with @Coach is deeply personal. https://t.co/zVMt2lsmin +08/03/2017,Musicians,@selenagomez,Ahhh!💕thank you Instyle!! Wearing @coach for the @InStyle September cover and showing a sneak peek at my new bag I… https://t.co/XS9zt9seqf +08/03/2017,Musicians,@selenagomez,RT @MissPiggy: Watch moi & BFF @selenagomez at #WEday August 4th on CBS! Incredible kids changing the world… So inspiring that next year mo… +08/01/2017,Musicians,@selenagomez,"I push you out and you come right back… Watch Fetish now: + https://t.co/L8u81hszyO" +07/31/2017,Musicians,@selenagomez,Listen to ‘Fetish'🍑 out now on @applemusic.🍎 https://t.co/3Qts3qUdP1 https://t.co/eV2MXpiDlR +07/29/2017,Musicians,@selenagomez,Get exclusive merch inspired by the ‘Fetish’ video in my official store. https://t.co/du1Qxay1ZZ https://t.co/9IHOPCWS3W +07/26/2017,Musicians,@selenagomez,FETISH VIDEO. OUT NOW. @petracollins @gucci1017 https://t.co/CDu2oRMnY6 https://t.co/znGGr5g3h1 +07/26/2017,Musicians,@selenagomez,FETISH VIDEO. TOMORROW. https://t.co/vwDKVKqc08 +07/24/2017,Musicians,@selenagomez,The official video for Fetish… coming Wednesday. @gucci1017 @petracollins https://t.co/wf5LsQLCfg +07/22/2017,Musicians,@selenagomez,Thank you so much for all the birthday wishes! Asked my family and friends to make a donation -if you want to join: https://t.co/KONFIgjfRc +07/21/2017,Musicians,@selenagomez,Fetish video directed by @PetraCollins & ft. @gucci1017 drops next week. 🍑 https://t.co/vbFd93Ksku +07/20/2017,Musicians,@selenagomez,"I'm not surprised, I sympathize. https://t.co/NDXNsroShu" +07/14/2017,Musicians,@selenagomez,Don't see a point in blaming you... 🍑 https://t.co/Hq0MHRG86F https://t.co/YYixlYXsR0 +07/14/2017,Musicians,@selenagomez,@ddlovato Yes we have 😊 -just listening to Sorry Not Sorry! You slay as always. So happy for you! +07/13/2017,Musicians,@selenagomez,RT @Shazam: It's here! We made @selenagomez's new track #Fetish our Song of the Day!! Time to get the #Shazam party started: https://t.co/I… +07/13/2017,Musicians,@selenagomez,FETISH is here 🍑🍑🍑 @gucci1017 on @applemusic: https://t.co/DDhdmX7uY1 https://t.co/QnZpXvqHIv +07/13/2017,Musicians,@selenagomez,"FETISH, ft. @Gucci1017 out now. Watch the first visual on @Spotify: https://t.co/MnmD0obn33 https://t.co/BtR9KCHE7N" +07/12/2017,Musicians,@selenagomez,"RT @Genius: LYRIC PREMIERE: @selenagomez keepin' it a buck on her new single “fetish” with @gucci1017 💯 +https://t.co/gS40lxz0yb https://t.…" +07/11/2017,Musicians,@selenagomez,Fetish. Thursday. https://t.co/ddTsZSI2jJ +07/10/2017,Musicians,@selenagomez,Presave Fetish ft. @gucci1017 to be the first to hear it July 13th. 🍑 https://t.co/s6mcMkB78E +07/10/2017,Musicians,@selenagomez,You got a fetish for my love. https://t.co/x4rDhPJ4md +07/09/2017,Musicians,@selenagomez,"Thank you @OnAirRomeo & #MostRequestedLive, here's my #BadLiar @iHeartRadio @AskAnythingChat https://t.co/7aMy9RyiSY" +07/07/2017,Musicians,@selenagomez,JULY 13 https://t.co/0fJIwwqC8U +07/06/2017,Musicians,@selenagomez,FETISH https://t.co/wjCyId6ZsK +07/04/2017,Musicians,@selenagomez,Check out my Me & My Girls @Spotify playlist celebrating some of the amazing women topping the charts:… https://t.co/r98ujxfYmK +07/02/2017,Musicians,@selenagomez,RT @MostRequestLive: in 1 week watch our EXCLUSIVE @SelenaGomez #MostRequestedLive @AskAnythingChat w/ @OnAirRomeo. Send Q’s! https://t.co/… +06/25/2017,Musicians,@selenagomez,RT @MostRequestLive: We've got @selenagomez for a #MostRequestedLive @iHeartRadio @AskAnythingChat 7/8 w/@OnAirRomeo! Send q's https://t.co… +06/19/2017,Musicians,@selenagomez,When you get asked about Canada… love you guys 🇨🇦💕#WEdayCanada https://t.co/JGOnGn7Hjp +06/16/2017,Musicians,@selenagomez,RT @arainydream: #ShazamBadLiar supporting @selenagomez no matter what 🌟💜 @selenafanclub #BadLiar https://t.co/RHyt9kHIcv +06/16/2017,Musicians,@selenagomez,RT @worthingselena: #ShazamBadLiar #BadLiar iconic! I mean YAS 😍 https://t.co/Q3uQrkrj9V +06/15/2017,Musicians,@selenagomez,.@Shazam #BadLiar on @Snapchat to unlock exclusive Bad Liar filters! https://t.co/E5DPHm0e3V +06/15/2017,Musicians,@selenagomez,Get exclusive #BadLiar merch available now. https://t.co/GUrFQDsv5B https://t.co/jlxwnVcxSd +06/15/2017,Musicians,@selenagomez,#BadLiar music video is out by the way 😏 https://t.co/soMub0utR6 https://t.co/JcVxjNKy1n +06/12/2017,Musicians,@selenagomez,#BadLiar - a film. Coming Wednesday. https://t.co/E6j4BPJLf9 +06/10/2017,Musicians,@selenagomez,RT @iHRCountdown: Our girl @selenagomez is joining @OnAirRomeo to co-host the @iHeartRadio Countdown!Listen here: https://t.co/Z4VaBWXZAW #… +05/30/2017,Musicians,@selenagomez,RT @christiaannoval: When ur waaay to sleepy but you still wanna jam to @selenagomez .... #badliar #selenagomez #thiskid #musicislife https… +05/23/2017,Musicians,@selenagomez,My thoughts and prayers go out to everyone affected in Manchester. +05/19/2017,Musicians,@selenagomez,"AH, thank you!! https://t.co/ZFOX8yM1Rg" +05/18/2017,Musicians,@selenagomez,♥️ https://t.co/9UFy1hDMwz +05/18/2017,Musicians,@selenagomez,Watch an exclusive playlist video for 'Bad Liar' on @Spotify: https://t.co/YS9XpcTjyE #BadLiarOutNow https://t.co/ZpJo7HQuss +05/18/2017,Musicians,@selenagomez,All my feelings on fire... #BadLiar is out now. https://t.co/o4KYidITCr https://t.co/c2BboJKVtP +05/17/2017,Musicians,@selenagomez,"RT @Genius: .@selenagomez flipped a 1977 talking heads classic on her new single 💯 + +verified #badliar lyrics: https://t.co/DmOqzdTgmO https…" +05/17/2017,Musicians,@selenagomez,😏 https://t.co/2aTiaCaDhl +05/17/2017,Musicians,@selenagomez,#BadLiar 5.18 https://t.co/oohH9odA2E +05/15/2017,Musicians,@selenagomez,#BadLiar 5.18 https://t.co/T0pjPeexwY +05/13/2017,Musicians,@selenagomez,Pre-save #BadLiar on @Spotify to be the first to hear it when it comes out 5.18. https://t.co/JlTnPGbM4K https://t.co/dCcezFhQm8 +05/12/2017,Musicians,@selenagomez,#BadLiar. 5.18. https://t.co/7jFDhmgUIm +05/11/2017,Musicians,@selenagomez,#SGBadLiar https://t.co/7UNcqpse9i +05/04/2017,Musicians,@selenagomez,Something new is coming. Sign-up to be the first to know… https://t.co/Hbdo2uWOsM +04/25/2017,Musicians,@selenagomez,"RT @KygoMusic: It ain't me music video is out now!🎥 @selenagomez + +https://t.co/XZ3dKnO2h7" +04/01/2017,Musicians,@selenagomez,RT @SelenaFanClub: Our #13ReasonsWhy watch party is TODAY at 4p PST. We'll be watching Episode 1. Who's joining us?!? 🎉🎉🎉 https://t.co/J0qN… +03/29/2017,Musicians,@selenagomez,"2 days til @13ReasonsWhy… Here's a 1st listen to my cover of ""Only You” from the soundtrack, inspired by Hannah and… https://t.co/3qOAJpKGa1" +03/21/2017,Musicians,@selenagomez,RT @voguemagazine: What happened when @SelenaGomez answered #73Questions. https://t.co/vgqyhzMlAh +03/16/2017,Musicians,@selenagomez,Thrilled to share my first American @voguemagazine cover with you! Read the story and see the full spread:… https://t.co/BSdoZZuz0q +03/01/2017,Musicians,@selenagomez,RT @13ReasonsWhy: You can't bury the truth. #13ReasonsWhy revealed 3/31. https://t.co/LccZYtL8KB +02/27/2017,Musicians,@selenagomez,"RT @SelenaFanClub: .@selenagomez & all her hits (including the AMAZING new song, #ItAintMe). What more could you want?! +Listen here 👉 http…" +02/18/2017,Musicians,@selenagomez,"RT @AppleMusic: You know what to do. +@noyes, @TreySongz, #MeAndThatMan + more on the #BestOfTheWeek: https://t.co/QEAncfuZ5w https://t.co/1…" +02/16/2017,Musicians,@selenagomez,"To celebrate #ItAintMe, @KygoMusic and I took over the Teen Party playlist on @Spotify. Listen to our picks here:… https://t.co/5BGwbdiSxj" +02/16/2017,Musicians,@selenagomez,It's finally here! Listen to my new song #ItAintMe with @KygoMusic on @AppleMusic! https://t.co/jBKYNmM4GY +02/16/2017,Musicians,@selenagomez,RT @SelenaFanClub: Head over to @musicallyapp and create those #ItAintMe videos! You might get some goodies from Sel :) https://t.co/ExoJXP… +02/13/2017,Musicians,@selenagomez,#ItAintMe. Thursday. @KygoMusic https://t.co/YsB9N8CkcH +08/13/2016,Musicians,@selenagomez,"I love you, Christina. https://t.co/p2vUWvjbh0" +08/09/2016,Musicians,@selenagomez,Such a memorable show in Sydney tonight.. I'll never forget this one. Thanks for singing along with me-woke up with a sore throat 😕 I LOVE U +08/03/2016,Musicians,@selenagomez,After years of work from so many incredible people -I'm getting so excited/emotional about our show 13 Reasons Why https://t.co/qhk6VWeFaV +07/26/2016,Musicians,@selenagomez,Big news! I’m playing this year’s #GCFestival 9/24. Take action to earn your tickets https://t.co/Yxz04A6IcK https://t.co/YIuiG0Uole +07/23/2016,Musicians,@selenagomez,"I asked all my friends and family to make a donation for my birthday. If you want to, would love you for to join 💜 https://t.co/4M1SoL1GWR" +07/23/2016,Musicians,@selenagomez,"Did this on my birthday... coming soon. Thank you for all the love. I love you guys, God bless https://t.co/4Pb5usx2Pk" +07/18/2016,Musicians,@selenagomez,This industry is so disappointing yet the most influential smh +07/18/2016,Musicians,@selenagomez,"Truth is last thing we need right now is hate, in any form" +07/18/2016,Musicians,@selenagomez,There are more important things to talk about... Why can't people use their voice for something that fucking matters? +06/23/2018,Musicians,@katyperry,Was so proud to give the gift of #transcendentalmeditation to my tour mates last week lead by my beautiful friend… https://t.co/4EKlQMP9Wk +06/22/2018,Musicians,@katyperry,found my first skin tag today. I think I’m an adult now. #TGIF +06/21/2018,Musicians,@katyperry,"Never forget, everyone was once a child." +06/20/2018,Musicians,@katyperry,"My Aussies 🐨 & Kiwis 🥝! For the FINALE of #WitnessTheTour (that's right, shows #98-111 🙀), I'm bringing… https://t.co/tkXX44Dypk" +06/15/2018,Musicians,@katyperry,"I 👁 you, @RoarForJess, and I ❤ you, and I’m singing this one for you tonight!" +06/09/2018,Musicians,@katyperry,Scandinavians have figured it out. +06/09/2018,Musicians,@katyperry,Oi oi @JackGarratt remember when we locked ourselves in a room for a few days in Santa Barbara and wrote a rad song… https://t.co/qosnSJtTr0 +06/09/2018,Musicians,@katyperry,WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr https://t.co/KnC2OnWSSU +06/06/2018,Musicians,@katyperry,IM SCREAMINGOSBEJRMF$&2@!K https://t.co/SnRrHLSSLR +06/05/2018,Musicians,@katyperry,CALIFORNIANS! What’s important to you? Is it gun violence? Immigration? Women’s rights? Prison reform? The… https://t.co/tr8Pu9GmTO +06/02/2018,Musicians,@katyperry,"We just played our 80TH show for #WITNESSTHETOUR... 🤝🌎💪🏻🌍🙌🏻🌏❤️ #andwedontstop +#welloiledmachine #cookingwithgas 👵🏼" +06/02/2018,Musicians,@katyperry,bout to do Yoga to new Kanye record +06/01/2018,Musicians,@katyperry,Happy #PRIDE month. I see you and I love you 🌈❤️🧡💛💚💙💜🌈 +06/01/2018,Musicians,@katyperry,Imma #believer ♥️ https://t.co/BV2ZK9OeAX +06/01/2018,Musicians,@katyperry,Here’s something to believe in: @cynthialovely is really coming into her own 🌸 and just put out a 📹 to one of my fa… https://t.co/xQeBcn1mpl +05/30/2018,Musicians,@katyperry,RT @AmericanIdol: Did you think we were 'going going' to miss it?! Our Idol @MaddiePoppe will perform TONIGHT on @JimmyKimmelLive! #America… +05/29/2018,Musicians,@katyperry,"RT @repjohnlewis: Thank you, @ABCNetwork. You did the right thing. There is not any room in our society for racism or bigotry." +05/22/2018,Musicians,@katyperry,"Before this weekend’s American Idol finale, I… https://t.co/OcJnBWY5j5" +05/22/2018,Musicians,@katyperry,"Season 1 is ""Going, Going, Gone""! Congratulations, brilliant @MaddiePoppe ✨👏🏻 Click here for her ear 🍬:… https://t.co/wbpr1utAHc" +05/22/2018,Musicians,@katyperry,The couple that sangs together stays together... #AmericanIdolFinale https://t.co/3GPMGfRdym +05/22/2018,Musicians,@katyperry,WHEN A QUEEN MEETS ANOTHER QUEEN @adavox @mspattipatti 👑 👑 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,😭 WHAT THE WORLD NEEDS NOW IS ❤️ and more of you @michaelwoodard @YolandaAdams #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,"Look at you, you're sparkling ✨ @hashtagcatie #KatySquared #AmericanIdolFinale https://t.co/Cdek7uUi2J" +05/22/2018,Musicians,@katyperry,KATY SQUARED COMING SOON ‼️#AmericanIdolFinale https://t.co/OEss6MMn7u +05/22/2018,Musicians,@katyperry,😩LAYLAAAAA❗️DYXIIIEEEEE❗️TWO precious. God bless you @leannrimes 🙏🏼 +05/22/2018,Musicians,@katyperry,I can't believe y'all did that to me on live television @americanidol @tholmesmusic I'm coming for you next season 😈 +05/22/2018,Musicians,@katyperry,My angel @beberexha and the Idol BBs 😩 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,"Just a coupla old souls, sangin' @calebleemusic @dariusrucker #AmericanIdolFinale" +05/22/2018,Musicians,@katyperry,LAST LOOKS! #AmericanIdolFinale https://t.co/GGBChLkbpr +05/22/2018,Musicians,@katyperry,Speaking of 🔥: @CadeFoehner @dennislorenzo @GaryClarkJr #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,Me watching @MaddiePoppe and @KermitTheFrog https://t.co/r8Z6znw2XC +05/22/2018,Musicians,@katyperry,I BELIEVE MOST PEOPLE ARE GOOD TOOOOO 😩 @lukebryanonline @gabbybarrett_ +05/22/2018,Musicians,@katyperry,"I just caught up to Huntin, Fishin, Lovin, and now it's Sunrise 🌅, Sunburn 🔥, Sunset 🌅 @LukeBryanOnline? #americanidolfinale" +05/22/2018,Musicians,@katyperry,OMG is that OUR @Jurnee? 😱 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,OMG UNCLE LIONEL‼️ 😩 #AllNightLong #AmericanIdolFinale https://t.co/dQr8djp2Cc +05/21/2018,Musicians,@katyperry,It’s the ✨GRAND FINALE!✨😱 and my last show with uncle @LionelRichie and my cray brother @LukeBryanOnline this seaso… https://t.co/xJVnY5lZ8S +05/21/2018,Musicians,@katyperry,Just rewatched the 3 finale contestants' 1st auditions on the @AmericanIdol app. So proud of each of them & how far… https://t.co/nXMhGQsX7G +05/21/2018,Musicians,@katyperry,addicted/obsessed https://t.co/kHW2sRjyqz +05/21/2018,Musicians,@katyperry,🌼 @maddiepoppe Authentic AF. +05/21/2018,Musicians,@katyperry,NEVER WASTE A FRINGE @GabbyBarrett_ ☝🏻💁🏼 +05/21/2018,Musicians,@katyperry,🤠 @calebleemusic Don't Close Your Eyes is your essence and why we all fell in love with you months ago. Keep that c… https://t.co/eVhppIrGPO +05/21/2018,Musicians,@katyperry,"“Fake it until you make it and then when you make it, shake and bake it” -@LukeBryanOnline 😝🤦🏼‍♂️ #AmericanIdolFinale" +05/20/2018,Musicians,@katyperry,You can travel the 🌎 but nothing comes close to the SB coast🏠About to hit stage for a long awaited homecoming benef… https://t.co/EpTqldVs0r +05/18/2018,Musicians,@katyperry,Add me to the group of most. #gunreformnow https://t.co/14VN4jSmat +05/17/2018,Musicians,@katyperry,"#tbt to Lions and Frida and tacos, oh my! 🦁🌮😱 Mexico, I had so much fun with you. Te amo! You’re up next, Europe! 🔜 https://t.co/6My2GwoV9f" +05/17/2018,Musicians,@katyperry,"I don’t even say “I can’t wait...” anymore. That statement says I don’t have the patience and actually, I know I do… https://t.co/sLc7G0BZQo" +05/17/2018,Musicians,@katyperry,"Everything is energy, words are vibrations, remember words are ARE powerful. Change I can’t to I can. I won’t to I… https://t.co/m9YtMlXYJr" +05/16/2018,Musicians,@katyperry,"3⃣ more days until Witness: Coming Home, a benefit for the community of my ❤, Santa Barbara. Bid now for 🎟 to this… https://t.co/oAJag26DAx" +05/16/2018,Musicians,@katyperry,My 👑 queens 👑 @HookedOnDolls and my 😇 Angel 😇 @OhElleYeah are coming with me to Johannesburg! See you soon ‼️… https://t.co/wEgCELnJAh +05/16/2018,Musicians,@katyperry,LAURELLLLLLLLLLLLLLLLLL +05/16/2018,Musicians,@katyperry,@HighwayKatyCorn Pinot Noir +05/16/2018,Musicians,@katyperry,@colleenseleven No how cause I haven’t been on here in a min +05/16/2018,Musicians,@katyperry,*you’re (leaves twitter) +05/16/2018,Musicians,@katyperry,"Furthermore, it should be submitted to get its own national holiday. I’m over these made up holidays to sell more j… https://t.co/8TrrJUN5bv" +05/16/2018,Musicians,@katyperry,Honestly whoever named it a “lazy Susan” wasn’t giving it enough credit. That thing can serve several people in one… https://t.co/CN67rECqg3 +05/16/2018,Musicians,@katyperry,Who ate my snacks?! #EndARelationshipIn4Words +05/16/2018,Musicians,@katyperry,"WHAT 👏🏼 A 👏🏼 LINEUP❗️ +The #AmericanIdol finale is almost here and we are going out BIG! 💥 Watch 📺, vote ✅, and list… https://t.co/aIFnuCF4Rf" +05/14/2018,Musicians,@katyperry,AUSTRALIA! 🇦🇺 The final encore shows in Adelaide & Sydney are on sale now! Get your 🎟 at https://t.co/VNXmphRhJe an… https://t.co/jhIO18EKHx +05/14/2018,Musicians,@katyperry,Are you watching this Mother’s Day themed #AmericanIdol? I hope you’re tuning in and snuggling with your mama! ❤️… https://t.co/Y8HXzbM5YO +05/13/2018,Musicians,@katyperry,Things are HEATING UP🔥 Tune in at 5pm local time and ☑VOTE☑ for who you want to be in the #AmericanIdol FINALE! 🎤🏆 https://t.co/PdwtnPJJWu +05/13/2018,Musicians,@katyperry,Issa word 🤗👑♥️ https://t.co/fUfb0lfBTT +05/11/2018,Musicians,@katyperry,Don’t forget to take everything with a himayalain grain of salt AND laugh at the devil daily ♥️ +05/10/2018,Musicians,@katyperry,"✨3 Wise WOWmen ✨ + +#TBT 📸 @ronyalwin @ St Marks Hotel New York City https://t.co/le51JFMQX9" +05/10/2018,Musicians,@katyperry,Isn’t it so wonderful that with every new day there is a new opportunity to see things differently and live more gracefully? ♥️ +05/10/2018,Musicians,@katyperry,There’s only two states of being. Love or Fear. Which one will you choose? ♥️ +05/10/2018,Musicians,@katyperry,Love you too my Earth Angel. ♥️ https://t.co/peMHCfLNhW +05/09/2018,Musicians,@katyperry,Though I walk through the valley of the shadow of death...… https://t.co/VspKHAwjEt +05/08/2018,Musicians,@katyperry,"🇦🇺! You asked for it! I'm ADDING ✌🏼MORE SHOWS! See you in Adelaide on July 28 and Sydney August 17 +🎟 go on sale at… https://t.co/qcg5R40ayw" +05/08/2018,Musicians,@katyperry,Best dressed: Greta Gerwig #METGALA18 +05/07/2018,Musicians,@katyperry,I knew I wore that Donald Duck hat for a reason! 😝 https://t.co/Gcae66wS9O +05/07/2018,Musicians,@katyperry,Are you watching?! ♥️ #americanidol https://t.co/OxHNxCJleZ +05/07/2018,Musicians,@katyperry,“...when you gotta lil hitch in your giddy up...”- @LukeBryanOnline 😝🐴 #americanidol +05/07/2018,Musicians,@katyperry,TUNE IN NOW 📺 AND VOTE! ✅ #americanidol +05/05/2018,Musicians,@katyperry,"I need a Mai Tai, so f*ckin' sci-fi +Give me the password, to the fuckin' WiFi. (OMFG THESE LYRICS/LEWKS & VIDEO🚨IM… https://t.co/a7XGddT7d7" +05/04/2018,Musicians,@katyperry,Y’ALL! I’m having TWO ✌🏼 much fun to stop now... so why don’t we keep it going!? 🚨 🔈EXCITED TO ANNOUNCE that… https://t.co/lFerHehptK +05/03/2018,Musicians,@katyperry,#TBT This weekend marked the 10th anniversary of the release of I Kissed A Girl! 💋 Thank you for believing in me th… https://t.co/ew5vUSlmvF +04/30/2018,Musicians,@katyperry,Cindy lent me her shoes 🤷🏼‍♂️ https://t.co/2qCO8kJVyW +04/30/2018,Musicians,@katyperry,"dress for the job you want, not for the job you have... ✨ https://t.co/8SJxHOWdgW" +04/30/2018,Musicians,@katyperry,Someday my prince will come✨Today I got Happy and Dopey 😑 And now I'm Sleepy. 😴 See you next week 😘 #AmericanIdol https://t.co/9yp0MZeemR +04/30/2018,Musicians,@katyperry,VOTE ✅ VOTE ✅ VOTE ✅ https://t.co/MZVX4xCyJe @AmericanIdol @RyanSeacrest https://t.co/eejrP8Bmdm +04/29/2018,Musicians,@katyperry,"Not only is it #AmericanIdol, it's @DISNEY-THEMED so prepare for wigs to fly whilst ""letting it go"" ❄ and finding y… https://t.co/C7xDMo1oR0" +04/29/2018,Musicians,@katyperry,Honored to be in the presence of His Holiness @Pontifex's compassionate heart and inclusivity. Thank you to… https://t.co/qJXQFSZqaj +04/28/2018,Musicians,@katyperry,I’m inspired ✨ & encouraged 🤗today & grateful to share how meaningful transcendental meditation has been for me. I… https://t.co/nntQRFHRxO +04/27/2018,Musicians,@katyperry,Are you a BELIEVER❓Listen to @cynthialovely’s new song now https://t.co/q0lCHmz2yg and let me know if you’re a… https://t.co/8ICACAaFjl +04/26/2018,Musicians,@katyperry,🙌🏼🙌🏼🙌🏼 https://t.co/GGFyZwXXX9 +04/26/2018,Musicians,@katyperry,You wanna open a big door? Try the kindness key 🗝♥️ +04/24/2018,Musicians,@katyperry,"My ❤ has been on a roller coaster tonight 😭 Congratulations to the Top 🔟 America, if you truly are a fan of one of… https://t.co/wjfode9w5x" +04/24/2018,Musicians,@katyperry,"""It's time to change their minds."" THAT'S THE ATTITUDE, @dennislorenzo 🙌🏼 #americanidol" +04/24/2018,Musicians,@katyperry,One singer through 🎤 and two in the danger zone already. 😬 R! U! WATCHING ?? 👀hsiriehfjebdhdha #americanidol +04/23/2018,Musicians,@katyperry,You got the POWER✨Now you can VOTE! 🤝🇺🇸 #AmericanIdol https://t.co/HnRAo9oHBc +04/23/2018,Musicians,@katyperry,What do you mean you don't have the app yet ⁉️THE POWER IS IN YOUR HANDS (literally when you pick up the phone). VO… https://t.co/4nV0mZqVEg +04/23/2018,Musicians,@katyperry,"🚨TUNE IN TONIGHT AT 8/7c FOR YOUR FIRST CHANCE TO VOTE FOR YOUR #AMERICANIDOL⭐🚨 Download the app 📱, vote on… https://t.co/9CocdLMD9i" +04/22/2018,Musicians,@katyperry,"If the word ear is in Earth, maybe we should listen to it. Peace be with you on this beautiful #earthday 👂🏻🌎♥️" +04/21/2018,Musicians,@katyperry,"🌎 Day isn't until Sunday, but I'm proud to announce that @kpcollections will be donating 10% of your purchases from… https://t.co/ihjv75Qtiv" +04/19/2018,Musicians,@katyperry,SANTA BARBARIANS! 🌅 Join my friends at @AHASBCal in an amazing living art piece this SATURDAY! You have until noon… https://t.co/jCkkqQB0BV +04/19/2018,Musicians,@katyperry,I've officially e-scribed 🤝 https://t.co/CYRr0wr7ed +04/18/2018,Musicians,@katyperry,KatyCats! Remember that time I sent y’all on a 🕺disco ball🕺 scavenger hunt? 👀 Apparently it was cool enough to get… https://t.co/vo9G6TGFfs +04/18/2018,Musicians,@katyperry,@joshgroban go to bed dad you’re drunk +04/18/2018,Musicians,@katyperry,"high of the day: 0 cavities 🙏🏻 +low: @washingtonpost won’t deliver physical newspapers to my zip code. Alas, I guess… https://t.co/tBDKO4naeW" +04/18/2018,Musicians,@katyperry,talking and communicating are two different things - Rebecca Lynn @VCRebecca 🤝 +04/16/2018,Musicians,@katyperry,I have good news and bad news today - ☹️: I won’t be able to live stream #AmericanIdol today but 🙂: I CAN promise y… https://t.co/VSMnfhh1EG +04/15/2018,Musicians,@katyperry,"Ooh, almost time for another #americanidol! 👏🏼 Going live with my mama again in under an hour. Get ready for round… https://t.co/h5n4dRO3Nw" +04/15/2018,Musicians,@katyperry,And that’s a wrap on the Asian leg of Witness The Tour! Fell in love with many different cherry… https://t.co/3d7vpN0k75 +04/12/2018,Musicians,@katyperry,😍👃🏼 https://t.co/HnVSLRIwQD +04/12/2018,Musicians,@katyperry,"I had a wonderful chat with 👑 @dualipa for @vmagazine, coming soon to a newsstand near you. Nice catching up with h… https://t.co/D6F7CrazHN" +04/10/2018,Musicians,@katyperry,"even when you don’t believe in love, love believes in you. ❤️" +04/10/2018,Musicians,@katyperry,To @laylaspring @LegitDominique @BrandonDMusic @kaykaydna @TrevorMcBane just because your #americanidol journey has… https://t.co/dMZOgov6qL +04/10/2018,Musicians,@katyperry,Unfortunately we had to make a drastic cut of 5 😭 If the show is still stuck in your DVR you better press play! And… https://t.co/yNBh6z2spC +04/10/2018,Musicians,@katyperry,🤗@hashtagcatie gives good hugs! @DennisLorenzo sounds like a flock of beautiful doves! @jonnybrenns did ballet!💃🏻… https://t.co/eNcG8BTWPN +04/10/2018,Musicians,@katyperry,Caught up on #AmericanIdol on the ✈! Here are my highlights: +04/10/2018,Musicians,@katyperry,MFW when they tell us we have to send home 5 of the 12 contestants tonight 😩...BUT it’s time for ⭐ALL STAR DUETS⭐!… https://t.co/1AqyNy62PV +04/09/2018,Musicians,@katyperry,I can't wait for you to 👁witness👁 my baby bird @cynthialovely when she opens for me in Mexico!🎵❤Tickets at… https://t.co/nNOXNDlnDK +04/09/2018,Musicians,@katyperry,Who's ready for #americanidol ⁉️🙋🏼Live on Instagram from Singapore in 5 minutes! ⌚️ This Top 24 is so fresh n so cl… https://t.co/sFSu8jHvfK +04/07/2018,Musicians,@katyperry,"Zomg this is me everyday after I read the whole internet. Lucky, there’s so much to learn in nature... 🌳 https://t.co/s0xEcWFiqn" +04/07/2018,Musicians,@katyperry,V Cute! https://t.co/Dqgw5v9a13 +04/06/2018,Musicians,@katyperry,Oh this is just puurrfect #KatyKatGloss was named Best Lip Lustre in @InStyle's Best Beauty Buys of 2018! Thank you… https://t.co/g66qfU58bb +04/05/2018,Musicians,@katyperry,"On this day 50 years ago, they tried to silence his voice, but the #DreamStillLives ✌🏻 https://t.co/XMocaecbyI" +04/04/2018,Musicians,@katyperry,"was feeling homesick today, being on this leg of tour for over 4 weeks now and then I put on @KaceyMusgraves’s new… https://t.co/pb3WJ2hqIw" +04/03/2018,Musicians,@katyperry,❤️❤️❤️ @maddiezahm ❤️❤️❤️ #americanidol +04/03/2018,Musicians,@katyperry,You’re not going to miss this dance @effiepassero. #americanidol +04/03/2018,Musicians,@katyperry,"\m/ @CadeFoehner \m/ Keep that feather, keep catching those dreams. #americanidol" +04/03/2018,Musicians,@katyperry,HONEY! 🍯 #americanidol +04/03/2018,Musicians,@katyperry,👂🏻@calebleemusic WE ARE LISTENING 👂🏻AND WE LIKE WHAT WE HEAR! #americanidol +04/03/2018,Musicians,@katyperry,"✨@MaraJustine1 There’s not just glitter on your nails 💅🏼 It’s in every pore, and it comes out every time you sing ✨ #americanidol" +04/03/2018,Musicians,@katyperry,".@JonnyBrenns If your family being here meant that much to ME, I can only imagine how it felt to you. Nearly cried… https://t.co/Jr1dJ22GCV" +04/03/2018,Musicians,@katyperry,You DO belong here! And anywhere you want! @AdaVox #thatruntho #americanidol https://t.co/GX8B2CspFg +04/03/2018,Musicians,@katyperry,"Out of the ashes, rises the phoenix @AdaVox #americanidol" +04/03/2018,Musicians,@katyperry,"Your attitude will take you everywhere, @vmcqueenmusic 💔 I can’t wait to see what you do. #americanidol" +04/03/2018,Musicians,@katyperry,"My wig is waiting to be blown off even harder and farther next year, @noahdavis50 🌬💁🏼 #americanidol" +04/03/2018,Musicians,@katyperry,WHAT IS WITH THESE COMMERCIAL BREAKS @ABCNetwork ⁉️YOU KEEP ME HANGING LIKE ALL MY EXES #americanidol +04/03/2018,Musicians,@katyperry,@jurnee ➕ Ashley 4EVA 😭 #americanidol +04/03/2018,Musicians,@katyperry,Good luck @WillCasanovaDC. You’ll always have a leg up on the competition 👠 #americanidol +04/03/2018,Musicians,@katyperry,Are you over me @lukebryanonline? This gif looks like you are #americanidol https://t.co/FCvkLI99Pg +04/03/2018,Musicians,@katyperry,THAT IS NOT RIGHT @ABCNetwork I CAN’T BELIEVE YOU CUT TO COMMERCIAL AND KEPT PEOPLE HANGING #americanidol +04/03/2018,Musicians,@katyperry,"It’s true, I can get a little bit feisty when I’m fighting for something I believe in. Sorry not sorry @lukebryanonline #americanidol" +04/03/2018,Musicians,@katyperry,"I swear to tell the truth, the whole truth, and nothing but the truth 👏🏼 so 👏🏼 help 👏🏼 me 👏🏼 God 👏🏼 #americanidol" +04/03/2018,Musicians,@katyperry,Your dad is my hero @hashtagcatie #americanidol +04/03/2018,Musicians,@katyperry,Tears are salt. Salt is healing. Crying is good for your health. @hashtagcatie #americanidol https://t.co/mJAiGR46dK +04/03/2018,Musicians,@katyperry,DON’T TOUCH MY SAUCE! 🍝 @alyssaraghu #americanidol +04/03/2018,Musicians,@katyperry,101% IS RIGHT☝🏼@michellesussett #americanidol +04/03/2018,Musicians,@katyperry,"You are enough, and I still believe in you, put one foot in front of the other ❤ #ThaddeusJohnson #americanidol" +04/03/2018,Musicians,@katyperry,PS your dad is a beautiful man and your family deserves all the happiness in the world @gabbybarrett_ #americanidol +04/03/2018,Musicians,@katyperry,I AM READY TO BE CONVINCED! ❤ @gabbybarrett_ #americanidol +04/03/2018,Musicians,@katyperry,😭 Rest In Peace and see you in my dreams @tholmesmusic #americanidol +04/03/2018,Musicians,@katyperry,Hi Sierra 👋🏼😘 @tholmesmusic #americanidol +04/03/2018,Musicians,@katyperry,💪🏼 @LukeBryanOnline @MichaelJWoodard https://t.co/ZtxXHyx4x1 +04/03/2018,Musicians,@katyperry,.@MichaelJWoodard @LukeBryanOnline #americanidol https://t.co/XIbgd9Y7us +04/03/2018,Musicians,@katyperry,"Whenever I feel any anxiety, I just breathe through my nose and out through my mouth 💆🏼‍♀🤗" +04/03/2018,Musicians,@katyperry,🐣 Spring has SPRUNG! @LaylaSpring 🐣 #americanidol +04/03/2018,Musicians,@katyperry,Can we re-name this American IdolS? Because this is getting tough to boil it down to one person 😐 #americanidol +04/02/2018,Musicians,@katyperry,WEST COAST! I'm live-Tweeting #americanidol with you tonight before I catch a plane to Taipei. It's the FINAL JUDGMENT! +04/01/2018,Musicians,@katyperry,Catch all the feels 😍😭😳with me LIVE tonight on Instagram at 8p PT when @AmericanIdol is back for Hollywood Week sol… https://t.co/LxcLBCnnwu +04/01/2018,Musicians,@katyperry,my brokenness + God’s Divinity = my wholeness 🕊 @ Hong Kong https://t.co/8wWKmOr0N0 +03/31/2018,Musicians,@katyperry,Every day is a new opportunity to show up 🕊 +03/30/2018,Musicians,@katyperry,There's something in the 🌊: new arrivals at https://t.co/F1qKGOllSl (and buy one get one 50% off with code BUNNYHOP… https://t.co/wigQosvsTU +03/29/2018,Musicians,@katyperry,Sometimes your wig flies when you least expect it on @AmericanIdol. Today's #WigWednesday goes to @MichaelJWoodard.… https://t.co/71xaMpJsrq +03/28/2018,Musicians,@katyperry,Looking forward to performing “Act My Age” 👶🏼👧🏼👩🏼👵🏼 @ntv_sukkiri for 🌸Japan🌸! It’s going to be my first time perfor… https://t.co/rNA5IgBuCt +03/27/2018,Musicians,@katyperry,"I know it's uncouth to dip out in the middle of the show, but I must prep for my Tokyo show now. Good luck to every… https://t.co/nq4twXPdwG" +03/27/2018,Musicians,@katyperry,"TBH I still sleep everywhere - planes, trains, automobiles, corners of rooms, it doesn’t stop once you pop 💁🏼 #americanidol" +03/27/2018,Musicians,@katyperry,❗️FIND YOUR TRIBE❗️#americanidol +03/27/2018,Musicians,@katyperry,You've already won @_davidfrancisco ❤️ #americanidol +03/27/2018,Musicians,@katyperry,"When the whole world falls in love with you, this love triangle is going to turn into a rhombicosidodecahedron. Get… https://t.co/CdVlViEHZY" +03/27/2018,Musicians,@katyperry,Omg @DennisLorenzo who knew you were a gymnast #americanidol +03/27/2018,Musicians,@katyperry,Shoutout to #jurnee's wife. Thank you for your service 🙏🏼 🇺🇸 #americanidol +03/27/2018,Musicians,@katyperry,We all believe in you and it's written in the stars so trust the universe @jonnybrenns #americanidol +03/27/2018,Musicians,@katyperry,Shout out @samsmithworld. Love you buddy 🎶 #americanidol +03/27/2018,Musicians,@katyperry,"From now on, I'm not gonna say ""break a leg"" for every performance that you do @CadeFoehner, but I am kinda glad th… https://t.co/XvDwJGt667" +03/27/2018,Musicians,@katyperry,You are a dream 💘 @MaddiePoppe #americanidol +03/27/2018,Musicians,@katyperry,"I 👁 you, and I ❤️ you @zachdonofrio. Every time I wear my socks, I'll think of you #americanidol" +03/27/2018,Musicians,@katyperry,Find someone who looks at you like @hashtagcatie looks @zachdonofrio 😍 #americanidol +03/27/2018,Musicians,@katyperry,"Every time @LionelRichie cries, a dove dies 😔 #americanidol" +03/27/2018,Musicians,@katyperry,SHAKE AND BAKE AND IIIIII HELPED #MiloSposato #americanidol +03/27/2018,Musicians,@katyperry,.@noahdavis50 #americanidol https://t.co/oE5wIvaW6A +03/27/2018,Musicians,@katyperry,Take us to church 🙏🏼 @TrevorMcBane #americanidol +03/27/2018,Musicians,@katyperry,You're MY hero @AlyssaRaghu 😭 #americanidol +03/27/2018,Musicians,@katyperry,You can be like a 🌴 and you can bend and sway and you will not break @laylaspring #americanidol +03/27/2018,Musicians,@katyperry,"HOLY CRAP I'M NERVOUS. We are separating the singers from the superstars now, aren't we @LukeBryanOnline… https://t.co/gtcdanTLfT" +03/27/2018,Musicians,@katyperry,You did not just kiss your bicep @tholmesmusic 🤦🏼‍♀️ #americanidol +03/27/2018,Musicians,@katyperry,"Luck is when opportunity meets preparation, truer words were never spoken @RyanSeacrest #americanidol" +03/27/2018,Musicians,@katyperry,Welcome back! #americanidol +03/27/2018,Musicians,@katyperry,"Is it a 🦅? Is it a ✈️? No, it’s @LukeBryanOnline, @lionelrichie, @ryanseacrest and my enormous heads in an attempt… https://t.co/zeRfsMn1G5" +03/26/2018,Musicians,@katyperry,👏🏼 YOU 👏🏼 DID 👏🏼 NOT 👏🏼 COME 👏🏼 HERE 👏🏼 TO 👏🏼 PLAY 👏🏼YOU 👏🏼 CAME 👏🏼 HERE 👏🏼 TO 👏🏼 SLAY 👏🏼 @adavox #americanidol +03/26/2018,Musicians,@katyperry,Social media is a blessing and a curse. Don't let bullies behind a keyboard tell you what you're worth. Thank you f… https://t.co/vqVstlbU2w +03/26/2018,Musicians,@katyperry,"We work hard AND we play hard, right @LukeBryanOnline @LionelRichie @RyanSeacrest? (Well, not you, @RyanSeacrest. Y… https://t.co/WNrH28IJb4" +03/26/2018,Musicians,@katyperry,"It looks like you have arrived on the right path now, and we are with you on this journey @jurnee #americanidol" +03/26/2018,Musicians,@katyperry,.@lukebryanonline is the 👑 of bad dad jokes 🙌🏼 #americanidol +03/26/2018,Musicians,@katyperry,"Glad you could watch the big win 🏈 🙌🏼Now FOCUS on helping us find a big star ⭐️ on #americanidol, @LukeBryanOnline" +03/26/2018,Musicians,@katyperry,People listen with their eyes more than they listen with their ears. Truer words were never spoken. @DamianoScarfi #americanidol +03/26/2018,Musicians,@katyperry,I still think you got that sparkle 😉 ✨ #Orion #americanidol +03/26/2018,Musicians,@katyperry,Welcome to the city #SamuelSwanson. Serving up a slice of velvet pie! #americanidol +03/26/2018,Musicians,@katyperry,"Be encouraged, Lovely Rose 🌹 This is only the beginning of a beautiful journey for you #AyanaRoseLawson #americanidol" +03/26/2018,Musicians,@katyperry,"There is a ☀️ in you, and it’s lovely to see it rise. Let’s all dream the dream together with you and momma @carlymoffa #americanidol" +03/26/2018,Musicians,@katyperry,A beautiful mess @carlymoffa #americanidol +03/26/2018,Musicians,@katyperry,"Your father has fought this far for you and now we will join him on the front lines. Love you #BrielleRathbun, you… https://t.co/8teI9T0ibn" +03/26/2018,Musicians,@katyperry,"THAT’S the signature thrust, @lukebryan?? 🤔 #americanidol" +03/26/2018,Musicians,@katyperry,"Beauty can be a combination of glowing soul and skin deep and if you’ve got both, then ✨ #americanidol" +03/26/2018,Musicians,@katyperry,I’m absolutely IN LOVE with everything that is @michaeljwoodard ❤ #americanidol +03/26/2018,Musicians,@katyperry,From one weirdo to another I 👁 U #Jarom #americanidol +03/26/2018,Musicians,@katyperry,"Well, ya “zoomed” through to Hollywood @leeleevasi but be sure to keep your hands on the wheel so you don’t crash and burn ❤ #americanidol" +03/26/2018,Musicians,@katyperry,The difference between nerves and excitement is preparedness. #americanidol +06/30/2018,Musicians,@carrieunderwood,"@ChristinaLPro Happy birthday!!! I’m sorry you’re stuck in bed, but I do hope that the time you’re spending there i… https://t.co/QL2QppJve7" +06/30/2018,Musicians,@carrieunderwood,This was about 30 seconds before I went on stage tonight...❤️❤️❤️ @HardRockHCAC https://t.co/J0naKvpvJd +06/30/2018,Musicians,@carrieunderwood,"Had soooo much fun tonight playing the @HardRockHCAC !!! Atlantic City, you were so good to us!! ❤️🔥❤️ https://t.co/TtcaS7n7DW" +06/28/2018,Musicians,@carrieunderwood,"#Repost ・・・ +CELEBRATE 20 YEARS WITH @carrieunderwood! + +#deniutemuster #allroadsleadtodeni20 #carrieunderwood https://t.co/OSXJ1P7fxe" +06/27/2018,Musicians,@carrieunderwood,Tomorrow is your last chance to vote #CryPretty as your #ChoiceCountrySong. RT’s count! Vote @CarrieUnderwood… https://t.co/uyvXLnnTQN +06/27/2018,Musicians,@carrieunderwood,ICYMI: Carrie and @Ludacris performed #TheChampion for the first time together on the @RadioDisney music awards.… https://t.co/iZXgoxFhsx +06/26/2018,Musicians,@carrieunderwood,@VGcom @reba @DollyParton Ooh! Ooh! I know! Pick me!!! 😃 +06/26/2018,Musicians,@carrieunderwood,@DollyParton @EnterMissThang Congratulations!!! You continue to be a trailblazer and inspiration to us all! ❤️❤️❤️ +06/26/2018,Musicians,@carrieunderwood,"Dear London, I ❤️ you infinitely, but why does your 🌞 come up at 4:45AM? #CantAGirlGetSomeSleep #JetLag… https://t.co/jbrAS3EwXZ" +06/25/2018,Musicians,@carrieunderwood,"RT @TheLongRoadFest: Please give a warm, country welcome to our incredible headliner @carrieunderwood! One of country music’s biggest globa…" +06/24/2018,Musicians,@carrieunderwood,"Such an amazing, full circle night at the #RDMA !!! Got to perform with the incredible @Ludacris at the venue I won… https://t.co/xdQzpF7UJ4" +06/23/2018,Musicians,@carrieunderwood,Tune in tonight! Carrie is honored with the Hero award + performs #TheChampion with @Ludacris for the first time on… https://t.co/NBSjxXDg1g +06/22/2018,Musicians,@carrieunderwood,#CryPretty has been nominated for #ChoiceCountrySong! RT to vote for @CarrieUnderwood #TeenChoice… https://t.co/RD1OtqqWmG +06/21/2018,Musicians,@carrieunderwood,Behind the scenes of #CryPretty! 😭 #MusicVideo https://t.co/sjB61oIXnx +06/19/2018,Musicians,@carrieunderwood,@crowdermusic 😂 +06/19/2018,Musicians,@carrieunderwood,"Ummm...this is amazing! @prattprattpratt + +Chris Pratt is Our Generation Award Recipient | 2018 MTV Movie & TV Awar… https://t.co/VLJXoxsXS2" +06/19/2018,Musicians,@carrieunderwood,Reminder to vote for @CarrieUnderwood as your #ChoiceCountryArtist! Voting ends tomorrow at 9am PT… https://t.co/bUBVUnxIoH +06/18/2018,Musicians,@carrieunderwood,Happy Father’s Day to this handsome fella! “You… https://t.co/iXbf9fvX3V +06/15/2018,Musicians,@carrieunderwood,See Carrie in Vegas at the @iHeartRadio Music Festival on September 22nd! Get tickets + details now:… https://t.co/PkayJejwW8 +06/15/2018,Musicians,@carrieunderwood,#FBF to the set of the #CryPretty music video!! 🕶 https://t.co/ryVbINeB0m https://t.co/2IlGDz0Sb9 +06/15/2018,Musicians,@carrieunderwood,Tickets to see Carrie perform on July 4th at the @Spotify Hot Country Live concert at @Pier17ny in New York are now… https://t.co/JoJfdM84GV +06/14/2018,Musicians,@carrieunderwood,@ZMyersOfficial Congrats to you and your sweet family!!! ❤️❤️❤️ +06/14/2018,Musicians,@carrieunderwood,.@CarrieUnderwood is nominated for #ChoiceCountryArtist. RT to vote now! – TeamCU https://t.co/NDo1wDRYNC +06/14/2018,Musicians,@carrieunderwood,"RT @BBCRadio2: ✨ A seven-time Grammy Award winner. ✨ 64 million records sold around the world. ✨ +We are delighted to announce that @carrieu…" +06/13/2018,Musicians,@carrieunderwood,Visit https://t.co/tWEtpnBn4t to pre-order exclusive album packages! -TeamCU https://t.co/uct8C6Gofs +06/13/2018,Musicians,@carrieunderwood,Connect with Carrie on Spotify for a chance to fly away to New York and see her at the @Spotify Hot Country Live co… https://t.co/KhTc9Wu8Ku +06/12/2018,Musicians,@carrieunderwood,Just announced! Carrie will perform at @Spotify’s first ever Hot Country Live show on July 4th in New York! Tickets… https://t.co/CIw7zcZDmW +06/11/2018,Musicians,@carrieunderwood,❤️ these leggings!! @CALIAbyCarrie https://t.co/YbsOfRy04m +06/10/2018,Musicians,@carrieunderwood,#ICYMI – Watch Carrie’s #CMTAwards performance of #CryPretty now! -TeamCU https://t.co/ksRSoMbCNH +06/09/2018,Musicians,@carrieunderwood,RT @UMGNashville: Get an exclusive @carrieunderwood poster when you pre-order her new album at the UMGN Booth at Fan Fair X this weekend! 💖… +06/09/2018,Musicians,@carrieunderwood,Nighttime at #CMAFest 😭#timelapse #downtown #CryPretty https://t.co/gD1L0v1Uuo +06/09/2018,Musicians,@carrieunderwood,Sounds just like the original...🤪 #CryPretty https://t.co/7I0McAhutB +06/09/2018,Musicians,@carrieunderwood,#CMAfest 🔥 📸: @JeffJohnsonFilm https://t.co/rHWoLDjH7d +06/09/2018,Musicians,@carrieunderwood,"Holy hotness, Nashville! That stadium was on 🔥 🔥🔥 tonight! Dunno how I’m gonna sleep tonight after that show! #CMAfest" +06/09/2018,Musicians,@carrieunderwood,@CarriePerryFan @UMGNashville @cameronpremo @Tennessean @SPrivara 💧💧💧❤️❤️❤️😘😘😘 +06/09/2018,Musicians,@carrieunderwood,@Amanda022186 @CountryMusic I’ll keep a glitter eye out for ya’! +06/09/2018,Musicians,@carrieunderwood,@JesseHdz88 Love it!!! +06/08/2018,Musicians,@carrieunderwood,#FBF – Thanks to all the #CareBears for an amazing Fan Club Party this week! ❤️all the #CryPretty tears & Carrie-Ok… https://t.co/EQSUd0MQdk +06/08/2018,Musicians,@carrieunderwood,Stop by the @UMGNashville booth (#200) at Fan Fair X by 5pm to get your own Cry Pretty tears (available all weekend… https://t.co/hitgATorrv +06/08/2018,Musicians,@carrieunderwood,Sound check for tonight’s set at the stadium! Sooo pumped to see this place rockin’ later! #CMAfest @CountryMusic 📸… https://t.co/wXcz06xUSU +06/08/2018,Musicians,@carrieunderwood,RT @radiodisney: BREAKING NEWS! @carrieunderwood will be honored with the Hero Award at the #RDMA! And she'll be performing #TheChampion wi… +06/07/2018,Musicians,@carrieunderwood,@OfficialBoBice @ny4carrie Awww...thanks so much Bo!!! Sending you and your family lots of love ❤️❤️❤️ +06/07/2018,Musicians,@carrieunderwood,"About last night...the #CMTAwards were so much fun! Thanks, again, @ludacris for lending some of your magic to this… https://t.co/h1tjGl1Zrp" +06/07/2018,Musicians,@carrieunderwood,"Yay!!!!! I won a #CMTAward!!! Thank you, fans, for voting your fingers off! 😘 And congrats to all the other winners… https://t.co/GCXDhLBGTp" +06/07/2018,Musicians,@carrieunderwood,Congratulations to Carrie! Winner of the 2018 @CMT award for Female Video of The Year! #CMTAwards #TheChampion -Tea… https://t.co/11eZ0s6FJw +06/07/2018,Musicians,@carrieunderwood,Disco queen!!! #CMTAwards… https://t.co/X5uU0nDLcl +06/06/2018,Musicians,@carrieunderwood,Tonight! Carrie is nominated and performs on the #CMTawards! Tune in at 8/7c! -TeamCU https://t.co/y3olLXPkZD +06/06/2018,Musicians,@carrieunderwood,So glad you love it!!!  We will send you more!  😘 https://t.co/o12rRuSRUM +06/06/2018,Musicians,@carrieunderwood,@KelseaBallerini 😳 +06/06/2018,Musicians,@carrieunderwood,Thanks to everyone who came out to the @opry tonight!!! You all (and this dress) made me feel like an Opry princess… https://t.co/QCCNLKcXeM +06/06/2018,Musicians,@carrieunderwood,Soooo grateful for my fans who come from near and far to be at the Fan Club party year after year!! You guys are th… https://t.co/ZZTnqxZScG +06/05/2018,Musicians,@carrieunderwood,Anyone see this on the bridge today? Isaiah… https://t.co/Vlly1ZnIbH +06/03/2018,Musicians,@carrieunderwood,Don’t forget! Today is the last day to vote for the 2018 #CMTMusicAwards! Vote as many times as you want all day.… https://t.co/KTLMarvSYB +06/02/2018,Musicians,@carrieunderwood,❤️❤️❤️ https://t.co/O7H9CjYIk3 +05/31/2018,Musicians,@carrieunderwood,@KarrisInHaiti This is amazing! 😂 +05/29/2018,Musicians,@carrieunderwood,Just announced! Carrie will perform at the 2018 #CMTMusicAwards – TeamCU https://t.co/aDKzuvG0QK +05/25/2018,Musicians,@carrieunderwood,@CareBear4CU @ny4carrie I’m sorry...I’ve failed us all...😔🤦‍♀️🤪 +05/24/2018,Musicians,@carrieunderwood,"😭 #CryPretty +Watch: https://t.co/ryVbINeB0m     +Stream or download: https://t.co/S8iq7b92Br -TeamCU https://t.co/0Yw3nNxOcM" +05/23/2018,Musicians,@carrieunderwood,🏈🏈 The 2019 #NFLDraft is headed to Music City! Can’t wait!!! @visitmusiccity @NFL #TheFutureIsComing +05/22/2018,Musicians,@carrieunderwood,"Congratulations, @MaddiePoppe ! What a fun finale! You all should be so proud! Can’t wait to catch you out on the r… https://t.co/VgbgMyGGGB" +05/20/2018,Musicians,@carrieunderwood,Dearest @calebleemusic @GabbyBarrett_ and @MaddiePoppe ...best of luck and lots of ❤️ for the finale tonight! Whate… https://t.co/FRyrXD6rHE +05/19/2018,Musicians,@carrieunderwood,@CUfan1021 @liveinvineyard I can’t believe you guys traveled so far!!! Thanks for coming! ❤️❤️❤️ +05/19/2018,Musicians,@carrieunderwood,Carrie has been nominated for 4 #CMTMusicAwards! Voting is unlimited! Vote now and vote often at… https://t.co/gUgOYphiYb +05/18/2018,Musicians,@carrieunderwood,Summer vibes! 👙 😎☀️ @CALIAbyCarrie https://t.co/7sxHveA8Ix +05/18/2018,Musicians,@carrieunderwood,"RT @OklahomaHoF: Welcome to the Oklahoma Hall of Fame, class of 2018! #OKHighestHonor + +- Paul Allen +- Mo Anderson +- Charlie Christian +- Ree…" +05/17/2018,Musicians,@carrieunderwood,"What a great night! Thanks for having me, @liveinvineyard !🍷 https://t.co/a1VdO2q3FT" +05/14/2018,Musicians,@carrieunderwood,ICYMI: Carrie performed #CryPretty last night on @AmericanIdol. Click to watch now. -TeamCU https://t.co/yeV4Cgc0Ct +05/14/2018,Musicians,@carrieunderwood,Hear the hits performed on tonight’s @AmericanIdol as well as much more on the “Carrie Underwood: American Idol Pla… https://t.co/iWOIBwDsI0 +05/14/2018,Musicians,@carrieunderwood,These idols are BRINGING IT tonight!!! @AmericanIdol +05/13/2018,Musicians,@carrieunderwood,Carrie returns to @AmericanIdol as tonight's guest mentor + performs her new hit single #CryPretty! Tune in at 8e|5… https://t.co/TmvghUBpsx +05/13/2018,Musicians,@carrieunderwood,"Hey, Mom, I hope you feel like this today! Happy Mother’s Day!!! Love you so much!!!!! https://t.co/PUgvOwUQu9" +05/13/2018,Musicians,@carrieunderwood,"My shirt for today...unfortunately, my kid can’t read, so I have,… https://t.co/lRl3NQaOgl" +05/13/2018,Musicians,@carrieunderwood,At @AmericanIdol rehearsals today!!! So good to be back! Feels like coming home! Don’t forget to tune in tomorrow..… https://t.co/f4q1wriqgC +05/12/2018,Musicians,@carrieunderwood,Tomorrow night! 🎤🎉🎶@AmericanIdol https://t.co/bXClfIVcA7 +05/12/2018,Musicians,@carrieunderwood,"What an incredible night celebrating 10 years of being in this amazing @opry family. Thank you, @randytravis for al… https://t.co/apmmslTK8q" +05/12/2018,Musicians,@carrieunderwood,I am so blessed to be a part of this family!!! Thanks to all who made tonight happen! https://t.co/RH2RJ9Pp59 +05/12/2018,Musicians,@carrieunderwood,@CUnews4Fans @opry Yay!!! +05/12/2018,Musicians,@carrieunderwood,10 year anniversary #OprySelfie @opry ❤️❤️❤️ https://t.co/sEmabbpQIZ +05/12/2018,Musicians,@carrieunderwood,Soooo excited to play at the @opry tonight! Can’t believe it’s my 10 year anniversary! This is truly the ❤️ and sou… https://t.co/3wBGFwxbka +05/12/2018,Musicians,@carrieunderwood,"@DeannaRilling @goldenpipeslv @GoldenKnights Hey man, was just offering up my services as someone who loves me some… https://t.co/T82wQjZ54M" +05/11/2018,Musicians,@carrieunderwood,ICYMI: Carrie will be performing at the @HardRockHCAC on June 29th. Tickets + details: https://t.co/V2dlwEhlGq -Tea… https://t.co/h3urXXtQHN +05/11/2018,Musicians,@carrieunderwood,"@NashCntryDaily @reba I was looking for a gif about the elephant gun, but this’ll do... https://t.co/Hoq1qADUkY" +05/11/2018,Musicians,@carrieunderwood,"Oh my goodness, I NEED this in my life! Loved the original! Such a classic! This looks soooooo good! https://t.co/tUVaeIgN4Y" +05/11/2018,Musicians,@carrieunderwood,"And one last thing...if the @GoldenKnights need an anthem singer, I’m 2-0 in the playoffs...just saying...🤷‍♀️ + +Goo… https://t.co/1RvyVurD10" +05/11/2018,Musicians,@carrieunderwood,"PS, this @PredsNHL crowd was amazing tonight from beginning to end!!! So amazing and loud...like, REAL loud...you know what I mean. 😜" +05/11/2018,Musicians,@carrieunderwood,"And I’ll also say, until next season, I am officially a @GoldenKnights fan! I’ll enjoy seeing them make a little history!!" +05/11/2018,Musicians,@carrieunderwood,"Welp, to me & our 3 year-old, @mikefisher1212 is the greatest hockey player alive & the @PredsNHL are now & forever… https://t.co/NTzxyL1tYW" +05/08/2018,Musicians,@carrieunderwood,Congrats to Carrie on 4 @CMT Music Awards nominations!! Vote as often as you can here: https://t.co/2xYEzu3Znh… https://t.co/niVOhd7FGX +05/07/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Sometimes staying the path is spinning while your laundry is. https://t.co/XOIET4GJuO +05/07/2018,Musicians,@carrieunderwood,Carrie to return to @AmericanIdol May 13th as superstar guest mentor and to perform #CryPretty! Details:… https://t.co/RPcCuSAx2V +05/07/2018,Musicians,@carrieunderwood,"Congrats on the album, guys! You put on a great show tonight! Lots of love ❤️ from the Nashvegas crew! https://t.co/1rTirLDI5G" +05/07/2018,Musicians,@carrieunderwood,Watch the official #CryPretty music video now! -TeamCU https://t.co/ryVbINeB0m +05/06/2018,Musicians,@carrieunderwood,Watch @AmericanIdol tonight to get a worldwide exclusive look at my new music video for #CryPretty !! Live show sta… https://t.co/u3kvI6wUju +05/05/2018,Musicians,@carrieunderwood,Dear all @PredsNHL fans coming to the game tonight: accept the fact that you will not have a voice tomorrow. Bring… https://t.co/OCO9bdeOxu +05/05/2018,Musicians,@carrieunderwood,Watch @AmericanIdol on @ABCNetwork Sunday night at 8e/5p for a sneak peek of my new music video for #CryPretty ! https://t.co/dZorKrAvDk +05/05/2018,Musicians,@carrieunderwood,"An amazing group of women joined me, my mom, and @CALIAbyCarrie for an afternoon of fashion, fitness, and fun! Such… https://t.co/A3SD6Q7e9l" +05/05/2018,Musicians,@carrieunderwood,"Had a great time in NYC! If I can, when I’m there, I love to see talented people doing amazing things! So, naturall… https://t.co/At8CAV9TWp" +05/04/2018,Musicians,@carrieunderwood,Coming soon… #CryPretty https://t.co/Rc0ZotYYlC +05/01/2018,Musicians,@carrieunderwood,"As a child, I wanted nothing more than to make my parents proud of me...and… https://t.co/MehykVylsM" +04/30/2018,Musicians,@carrieunderwood,Glorious... +04/30/2018,Musicians,@carrieunderwood,@MattEaton1 @PredsNHL Right?! Mama needs to go night night...😜😴 I turn into a pumpkin at 9! +04/27/2018,Musicians,@carrieunderwood,Can’t wait!! June 5 @Opry 🎉🎉🎉 https://t.co/Iry9Qq0A3m +04/26/2018,Musicians,@carrieunderwood,New #CryPretty merch has been added to the Official Carrie Underwood Store. Shop now: https://t.co/iJDfjxchPe -Team… https://t.co/OEwWD80Y1F +04/25/2018,Musicians,@carrieunderwood,This @CALIAbyCarrie reversible tank top is one of my favorites! #StayThePath 🏋️‍♀️💪 https://t.co/m7HxvDccnB +04/24/2018,Musicians,@carrieunderwood,Want to see Carrie perform at this year’s @liveinvineyard festival? Enter now for your chance to win a flyaway trip… https://t.co/rqmJkvHIuT +04/24/2018,Musicians,@carrieunderwood,"Sometimes, you’re swinging on a tree swing in Oklahoma and you look up and think, “Wow, that’s beautiful.” ❤️😊 https://t.co/ON9juNTqA4" +04/23/2018,Musicians,@carrieunderwood,😁👍👊 https://t.co/LalHUqpPpb +04/21/2018,Musicians,@carrieunderwood,"Today, we celebrated my parents’ 50th anniversary...We listened to stories of how they met and… https://t.co/9RBcixThpZ" +04/21/2018,Musicians,@carrieunderwood,Ready to cheer on the boys tonight! Especially that #12! I hear he’s alright!😘 @mikefisher1212 @predsnhl… https://t.co/VGnWwsIWip +04/20/2018,Musicians,@carrieunderwood,✨Trying out new @CALIAbyCarrie #StayThePath✨ https://t.co/MvsNjjkJSg +04/20/2018,Musicians,@carrieunderwood,Looking forward to #CMAFest this year! #itstartswithME #musiceducation #CMAFoundation https://t.co/gaj6SII7J6 +04/18/2018,Musicians,@carrieunderwood,"RT @iHeartCountry: We just added @carrieunderwood's single ""Cry Pretty"" to our New Country Weekly Playlist! Listen here: https://t.co/VkGjJ…" +04/18/2018,Musicians,@carrieunderwood,#CryPretty the album…coming September 14!! 😭 💗 🎶 https://t.co/M1QVdbuquE https://t.co/UzoxBTc9Af +04/17/2018,Musicians,@carrieunderwood,It’s such an honor to be a part of the @Opry family! Can’t wait to celebrate 10 years! ❤️ https://t.co/IzVxuF8PLR +04/16/2018,Musicians,@carrieunderwood,ICYMI! Watch Carrie’s performance of #CryPretty from the #ACMawards below! -TeamCU https://t.co/T9I3ko2xFu +04/16/2018,Musicians,@carrieunderwood,"RT @ACMawards: And the winner for Vocal Event of the Year goes to... @KeithUrban and @CarrieUnderwood for “The Fighter"" #ACMawards https://…" +04/15/2018,Musicians,@carrieunderwood,Tune in tonight to watch the world television premiere of #CryPretty! @ACMawards -TeamCU https://t.co/bBXt6mS1ok +04/15/2018,Musicians,@carrieunderwood,My boys...(and Uncle @budfisher 😜) I wonder if he’ll remember seeing his daddy play...I sure… https://t.co/Sa87yJCdvH +04/15/2018,Musicians,@carrieunderwood,Had a great rehearsal for the @acmawards ! Can’t wait until tomorrow night! #CryPretty #ACMAwards https://t.co/hGLjmCdubn +04/14/2018,Musicians,@carrieunderwood,Amazing! @BradPaisley !!! Way to kick us off!!! Go Preds!!! +04/14/2018,Musicians,@carrieunderwood,"RT @pandoramusic: .@carrieunderwood returns with ""Cry Pretty"" -- as in, you can't. You can ""pretty lie"" and ""pretty smile,"" ""pretty much fa…" +04/14/2018,Musicians,@carrieunderwood,Getting ready for the weekend…#CryPretty #ACMawards @CALIAbyCarrie https://t.co/R2BX6QAvAK +04/14/2018,Musicians,@carrieunderwood,YES @Spotify #NewMusicFriday! ☺️😭🎉🎶#CryPretty #TimesSquare https://t.co/Zd4dD0kj59 https://t.co/vlN5iqpuH6 +04/12/2018,Musicians,@carrieunderwood,Check out Carrie Underwood’s Cry Pretty Playlist -TeamCU https://t.co/x7uASDtJdc https://t.co/RO0shCydIA +04/12/2018,Musicians,@carrieunderwood,@LoriMcKennaMA Tiny part...ha ha! You’re too humble! 😘 Thank you (and Liz and Hillary) for allowing me to be in the room with greatness! +04/11/2018,Musicians,@carrieunderwood,"@mrBobbyBones Thanks! Why isn’t there a hug emoji? 👻 This dude’s got his arms out, so he’ll do! You get it..." +04/11/2018,Musicians,@carrieunderwood,Lyric video for #CryPretty is available here: https://t.co/VuzoJ0Yphk -TeamCU https://t.co/5hHKYSQTvs +04/11/2018,Musicians,@carrieunderwood,It’s here! #CryPretty I hope you love it as much as I do!!! https://t.co/S8iq7b92Br https://t.co/YEgPodfYba +04/11/2018,Musicians,@carrieunderwood,So excited to perform #CryPretty at the @ACMawards this weekend!! https://t.co/k65hGmZzuV +04/11/2018,Musicians,@carrieunderwood,I can’t wait for you to hear my new single tomorrow! #CryPretty #iHeartCountry #WorldPremiere https://t.co/ZrAh0o4ssR +04/10/2018,Musicians,@carrieunderwood,Good morning! Just a couple of updates to share with you…😉 https://t.co/gfbFNEkP40 https://t.co/YuGXY4JkRK +04/09/2018,Musicians,@carrieunderwood,"This Wednesday, April 11. 6am ET. https://t.co/7n4eDMcfdd" +04/07/2018,Musicians,@carrieunderwood,"Whatever, girl, I voted for you! 😘 + +But seriously, I do wish more publications would just celebrate women’s succes… https://t.co/AYJNcPrEKq" +04/06/2018,Musicians,@carrieunderwood,Missed these guys. #bandrehearsals https://t.co/cB2hlxgCQM +04/06/2018,Musicians,@carrieunderwood,"Wow! Way to go, boys! So proud of you! https://t.co/nGmdXs51eq" +04/06/2018,Musicians,@carrieunderwood,"Yay! Congrats, guys!!! ❤️👊 https://t.co/sHCbrbgXTj" +04/05/2018,Musicians,@carrieunderwood,So proud of my sisters...Making a difference for the best reason...KIDS! Here’s hoping OK schools get the funding t… https://t.co/reyuTn21I8 +04/04/2018,Musicians,@carrieunderwood,https://t.co/2QDk7Dxqp6 +04/04/2018,Musicians,@carrieunderwood,"@mikefisher1212 I love you, baby! 😘" +04/04/2018,Musicians,@carrieunderwood,RT @RealKiefer: Dear @nhl I love you and I always will but @PredsNHL were robbed tonight. +04/04/2018,Musicians,@carrieunderwood,Yup... https://t.co/C68ItXkhtv +04/04/2018,Musicians,@carrieunderwood,"I am seriously livid. @NHL , fix this." +04/04/2018,Musicians,@carrieunderwood,"RT @TomAWillis: You decide on this one: + +#Preds | #NSHvsFLA https://t.co/h2JRuCWFM6" +04/04/2018,Musicians,@carrieunderwood,Biggest pile of 💩 ever! Preds we’re straight up robbed. https://t.co/sdr8kkMa1A +04/04/2018,Musicians,@carrieunderwood,"RT @budfisher: That was a good game that the @NHL ruined. + +Ghost goaltender interference. + +Can anyone explain this rule to me?" +04/04/2018,Musicians,@carrieunderwood,Goaltender interference? Are you out of your mind? On what planet? #WorstCallEver @PredsNHL #NSHvsFLA +04/02/2018,Musicians,@carrieunderwood,I put my kid down for “night nights” an hour and a half ago...why is he still rolling around in his bed singing son… https://t.co/kGoqMGIcUL +03/30/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Sometimes it’s spinning while your laundry is. Sometimes it’s turning work breaks into sweat breaks. How do you work it… +03/30/2018,Musicians,@carrieunderwood,"Can we all just agree that @Logancouture has the coolest name in the @NHL ??? That said, go @PredsNHL !!! This game… https://t.co/f4x7uupYac" +03/27/2018,Musicians,@carrieunderwood,@PS22Chorus @Ludacris Amazing!!!! Thank you!! ❤️🎶 +03/27/2018,Musicians,@carrieunderwood,Each and every one of you is most definitely a champion! So much love for the @PS22Chorus ❤️ This made my day!!!… https://t.co/tddiLfNhgm +03/26/2018,Musicians,@carrieunderwood,"Happy Birthday, Steven! ❤️🎂🎉 #sexyat70 #HappyBdayStevenTyler https://t.co/DxYCD7q5B0" +03/23/2018,Musicians,@carrieunderwood,#TheChampion https://t.co/2A0FyD8k9s @richchiassaro @SpecialOlympics @bethanyhamilton @ShalaneFlanagan… https://t.co/Tg8y5yWoZz +03/22/2018,Musicians,@carrieunderwood,Finally getting to catch up on this week’s @AmericanIdol !!! Love to see some more ❤️ for Checotah with @kenritt !… https://t.co/Gceoj6AAnn +03/17/2018,Musicians,@carrieunderwood,"Here we go again...congrats, boys! https://t.co/i9VhP9WrrM" +03/15/2018,Musicians,@carrieunderwood,This makes me cry every single time. Thank you for welcoming me into the family 10 years ago. ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/2rMk7G8ij1 +03/12/2018,Musicians,@carrieunderwood,This will definitely be my go-to bag for spring! #convertiblebag #backpack #tote #StayThePath 💐 https://t.co/PnIF2G33yG +03/11/2018,Musicians,@carrieunderwood,"Thanks so much, everyone, for the sweet birthday wishes! Can’t wait to share with you all the things I’ve been work… https://t.co/f17La1cD1j" +03/10/2018,Musicians,@carrieunderwood,"Happy Birthday, Carrie! +Take 15% off storewide today only using code CUBDAY15. +Plus free gift with orders over $35… https://t.co/xB6vy3dnhB" +03/09/2018,Musicians,@carrieunderwood,.@Spotify added an exclusive vertical version of #TheChampion to the #HotCountry playlist! Click here to watch 👀… https://t.co/hdSe0SCTVf +03/08/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Happy International Women’s Day to all the strong women out there! You continue to inspire us every day. 💕 https://t.co/… +03/07/2018,Musicians,@carrieunderwood,RT @PredsNHL: Franchise record win # NINE in a row for your #Preds. New guy Ryan Hartman with the GWG and Pekka with the shoutout. What a n… +03/07/2018,Musicians,@carrieunderwood,"@PredsNHL @ElectronicXpres I have lots of headphones at the house, but I would love it if you played A: “The Champion” 😜😆🤪" +03/04/2018,Musicians,@carrieunderwood,@KarrisInHaiti I knew you had to be bad at SOMETHING! 😜 +03/03/2018,Musicians,@carrieunderwood,@PredsNHL Hawt...I’d marry him! +03/02/2018,Musicians,@carrieunderwood,"Check out the brand new official music video for #TheChampion here! https://t.co/2A0FyD8k9s -TeamCU + +More info:… https://t.co/AwPjMccoa6" +03/02/2018,Musicians,@carrieunderwood,RT @TODAYshow: .@CarrieUnderwood debuts powerful new video for #TheChampion — watch it here https://t.co/Ops7WTfVly https://t.co/j538zOIXKc +03/02/2018,Musicians,@carrieunderwood,RT @TODAYshow: Coming up: A first look at @carrieunderwood’s official music video for #TheChampion! https://t.co/u03iy2vGCC +03/02/2018,Musicians,@carrieunderwood,Tune in! First look of #TheChampion’s official music video tomorrow morning on the @TODAYshow! -TeamCU https://t.co/rsGLrQdLNy +03/02/2018,Musicians,@carrieunderwood,Congratulations Carrie on your @ACMawards nominations - Female Vocalist of the Year and Vocal Event of the Year! -T… https://t.co/i77dVPHL6R +02/28/2018,Musicians,@carrieunderwood,How is my sweet baby 3 years old? Thank you all for the sweet birthday wishes for the little man! He knows he is loved! ❤️❤️❤️ +02/26/2018,Musicians,@carrieunderwood,Boo-Hooing at an episode of @TheWalkingDead like it’s an episode of This is Us... +02/25/2018,Musicians,@carrieunderwood,Forever a fan (and friend) of these guys! @TheSwonBrothers always love to hear new music from ya’! https://t.co/nCOhbidoF9 +02/25/2018,Musicians,@carrieunderwood,"RT @NBCOlympics: The #WinterOlympics have been filled with moments and memories that will last a lifetime. + +🎵: The Champion, @CarrieUnderwo…" +02/25/2018,Musicians,@carrieunderwood,Too cute to eat (but we did anyway)! @iveycakestore did it again!!! Isaiah loved his Mickey Mouse Clubhouse cake! T… https://t.co/xpDLGOEYTF +02/21/2018,Musicians,@carrieunderwood,"Amazing...Rest in the arms of the Lord. Surely right now He is saying “Well done, my son.” https://t.co/I6i62JQlvD" +02/18/2018,Musicians,@carrieunderwood,These. Are. Amazing! ❤️🐟 @mikefisher1212 @predsnhl https://t.co/K0MkDfasPc +02/17/2018,Musicians,@carrieunderwood,"Congrats, Annie! #TheChampion https://t.co/hyDRDw1uUk" +02/17/2018,Musicians,@carrieunderwood,"RT @NBCOlympics: Some of the best moments of the #WinterOlympics. + +And we've got more great moments coming your way! + +🎶: The Champion, @Ca…" +02/16/2018,Musicians,@carrieunderwood,So inspiring! Love seeing this little warrior go! #TheChampion https://t.co/jCzJ3673iW +02/15/2018,Musicians,@carrieunderwood,"Congrats, Amy and the Shamrocks! #FierceGirls #TheChampion https://t.co/8bHySjZqDy" +02/14/2018,Musicians,@carrieunderwood,What a comeback! @PredsNHL +02/14/2018,Musicians,@carrieunderwood,"Yes! #TheChampion as a hype song! Thanks, Gabby! https://t.co/FmGkXkyeOl" +02/13/2018,Musicians,@carrieunderwood,"RT @billboard: Fans upload videos using Carrie Underwood's triumphant ""The Champion"" as a soundtrack to overcoming struggle https://t.co/1I…" +02/13/2018,Musicians,@carrieunderwood,"Wow, so great to see how you start your day – thank you!! #okieschoolsrock #TheChampion https://t.co/ASjS9FgfTA" +02/11/2018,Musicians,@carrieunderwood,"Love seeing all the Champion-inspired posts! Keep them coming! Love this, Marqos! #TheChampion https://t.co/3hHYbVrhla" +02/11/2018,Musicians,@carrieunderwood,He is a TRUE champion! #Inspired #TheChampion https://t.co/GIwrKcJfMk +02/10/2018,Musicians,@carrieunderwood,"My boys make work outs fun (and a bit less productive, but that’s ok)! #StayThePath @CALIAbyCarrie 📸: @ErinOprea https://t.co/8oRPxAM9n6" +02/10/2018,Musicians,@carrieunderwood,"Congrats, Nicole! #StayThePath #TheChampion https://t.co/tH2rIAdECI" +02/09/2018,Musicians,@carrieunderwood,You guys inspire ME! #WallOfChampions #wilburinspired #TheChampion https://t.co/EME9aOFNc9 +02/08/2018,Musicians,@carrieunderwood,"RT @AppleMusic: From the #SuperBowl to the #WinterOlympics, #TheChampion is the ultimate anthem. Find out the inspiration from @carrieunder…" +02/05/2018,Musicians,@carrieunderwood,"Congrats, @Eagles and Eagles fans! That was a great game from the anthem to the halftime show to the confetti! So m… https://t.co/iMyGpuQdFo" +02/04/2018,Musicians,@carrieunderwood,"RT @SNFonNBC: .@carrieunderwood kicks us off on the biggest Sunday Night of them all. + +Watch the #SuperBowl now on NBC or stream: https://…" +02/04/2018,Musicians,@carrieunderwood,RT @SNFonNBC: Two teams enter #SBLII but only one can be #TheChampion https://t.co/ceaMgFZieI +02/03/2018,Musicians,@carrieunderwood,Are you ready for Super Bowl LII? #TheChampion will kick it all off tomorrow at 6pm ET/3pm PT! #SBLII… https://t.co/64uaIrN42w +02/03/2018,Musicians,@carrieunderwood,"RT @SNFonNBC: Champions will be crowned this month on NBC at #SBLII & the #WinterOlympics + + 🎵: @carrieunderwood #TheChampion https://t.co/P…" +02/02/2018,Musicians,@carrieunderwood,I’m so honored that you guys took the time to do this!! ❤️ #MyChampions #TheChampion https://t.co/cRMKAN1rZ2 +02/02/2018,Musicians,@carrieunderwood,Carrie has taken over @Spotify’s #Workout playlist. Listen here! https://t.co/pR8vSV2lDK -TeamCU #TheChampion https://t.co/IhrclYIMSc +02/01/2018,Musicians,@carrieunderwood,"#TheChampion, as featured on NBC’s Super Bowl LII and XXIII Winter Olympic Games, is available now! Download or add… https://t.co/JLV3TC2G25" +02/01/2018,Musicians,@carrieunderwood,You guys are amazing - this made my day! #TheChampion #ReadersAreLeaders https://t.co/o4YcREeC6n +07/01/2018,Musicians,@KeithUrban,TORONTO 6.29 & 6.30 • #GraffitiUWorldTour • Happy #CanadaDay https://t.co/YIgWcW2Anl +07/01/2018,Musicians,@KeithUrban,"It’s gonna be a HUGE night tonight Toronto!!!!!! - KU +#GraffitiUWorldTour https://t.co/x98As9A9fG" +06/30/2018,Musicians,@KeithUrban,Mornin Toronto.... wakin up on bus backstage .... gonna be a kickass nite 2nite!!!! - KU https://t.co/bSNI1Hd9Z0 +06/29/2018,Musicians,@KeithUrban,Yo @DanAndShay.... It’s a great song!!!!!!! - KU https://t.co/mMtwuRvR4D +06/28/2018,Musicians,@KeithUrban,#TBT to the #GraffitiU Release Party with @iHeartRadio! ✨ Relive the party and performances:… https://t.co/igcUflPPwc +06/28/2018,Musicians,@KeithUrban,"Saratoga Springs, NY • 6.27.18 • #GraffitiUWorldTour https://t.co/W21qFg4gQd" +06/27/2018,Musicians,@KeithUrban,🚨 Please be aware of IMPOSTERS pretending to be artists on social media. Know how to spot the signs of fake account… https://t.co/vtrQSiY9JL +06/27/2018,Musicians,@KeithUrban,"RT @FallonTonight: Turn up that volume...@KeithUrban is performing ""Coming Home""! #FallonTonight https://t.co/C14EOGq1Fh" +06/26/2018,Musicians,@KeithUrban,"See u tonight on @jimmyfallon! - KU +#FallonTonight https://t.co/cXrjdxYA1O" +06/26/2018,Musicians,@KeithUrban,Get ready! 🎤 Keith is performing on @FallonTonight TONIGHT! 📺 https://t.co/FgjtR5g6iJ +06/26/2018,Musicians,@KeithUrban,"RT @FallonTonight: Tonight on the show: @SHAQ, @jennadewan, and music from @KeithUrban! #FallonTonight https://t.co/jsU5iWN3ar" +06/26/2018,Musicians,@KeithUrban,"RT @jimmyfallon: Tonight on the show: @SHAQ is here and @jennadewan stops by! Plus, a performance from @KeithUrban! #FallonTonight" +06/25/2018,Musicians,@KeithUrban,12 years of celestial synergized soul dancing. Happy anniversary Babygirl!!! I love you SO much. - KU https://t.co/sBwz7fvslO +06/25/2018,Musicians,@KeithUrban,Looking for the perfect way to commemorate seeing the #GraffitiUWorldTour?! 🎤 Now you can customize a 3D Souvenir T… https://t.co/hkLbtrJ7CR +06/24/2018,Musicians,@KeithUrban,"THANK YOU for having us this weekend, Detroit and Pittsburgh!!! ✨ +#GraffitiUWorldTour weekend 2 in the books! https://t.co/ISpcXgCB2k" +06/24/2018,Musicians,@KeithUrban,"Pittsburgh, PA • 6.23.18 • #GraffitiUWorldTour https://t.co/fxfFINeshg" +06/24/2018,Musicians,@KeithUrban,"We’re ready for a great night, Pittsburgh!!! #GraffitiUWorldTour https://t.co/DVvXKmJNIK" +06/23/2018,Musicians,@KeithUrban,"See you tonight, Pittsburgh!!! #GraffitiUWorldTour https://t.co/eC2f7ppEyE" +06/23/2018,Musicians,@KeithUrban,"Clarkston, MI • 6.22.18 • #GraffitiUWorldTour https://t.co/M8zp2oJ1iA" +06/22/2018,Musicians,@KeithUrban,"We're SO ready for another weekend of the #GraffitiUWorldTour!!! 🙌 +See you soon, Clarkston and Pittsburgh! https://t.co/P8kJ0PRXVD" +06/21/2018,Musicians,@KeithUrban,RT @opry: @KeithUrban There's only one Music City! ❤️🎶 #ComingHome https://t.co/7mbCzoOaqH +06/20/2018,Musicians,@KeithUrban,RT @xokatic: @KeithUrban Nothing like the Missouri hills. 😉💛 https://t.co/Y4Odpfm2Si +06/20/2018,Musicians,@KeithUrban,"RT @_DefyinGravity_: @KeithUrban Love my home state, Ky! Bluegrass music, UK basketball, horses, and fried chicken! Love the bluegrass stat…" +06/20/2018,Musicians,@KeithUrban,RT @countrymuzikfn: @KeithUrban There’s nothing like #ComingHome to Wisconsin. https://t.co/EvVnKQKicv +06/20/2018,Musicians,@KeithUrban,RT @nclement372: @KeithUrban What's not to love!!!!❤🏡#ComingHome #Canada https://t.co/MCHdRluxDW +06/20/2018,Musicians,@KeithUrban,RT @Whobugs: @KeithUrban I love that it shows how beautiful #Utah is in the summertime. If you look closely it shows how much we love summe… +06/20/2018,Musicians,@KeithUrban,"""There's nothing in the world that feels like coming home."" ✨ +Find the #ComingHome postcard for your home and shar… https://t.co/RrjIVPtDMM" +06/19/2018,Musicians,@KeithUrban,"Congrats to @leannrimes and @StevieNicks on BORROWED!!!!!! - KU +https://t.co/nsNb7ngeVu" +06/19/2018,Musicians,@KeithUrban,Keith and @JuliaMichaels are taking you behind the scenes of their music video for #ComingHome! 🎬 https://t.co/o8Y5hieidI +06/18/2018,Musicians,@KeithUrban,"THANK YOU for a killer opening weekend, St. Louis and Indy!!! 💥 #GraffitiUWorldTour https://t.co/KpyI22wJgK" +06/17/2018,Musicians,@KeithUrban,RT @LarkinPoe: The head-bang crew 💀💀💀 Round two with @KeithUrban tonight in Noblesville! #GraffitiU #larkinpoe https://t.co/d5AgVTtqhr +06/17/2018,Musicians,@KeithUrban,"Indianapolis, IN • 6.16.18 • #GraffitiUWorldTour • @larkinpoe https://t.co/7FFsvuEGIF" +06/16/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour officially kicked off last night! 🎤 We'll see you tonight, Indianapolis! 🙌 @ruoffmusicenter https://t.co/uwup11Urag" +06/16/2018,Musicians,@KeithUrban,"ST. LOUIS, MO • 6.15.18 • #GraffitiUWorldTour OPENING NIGHT https://t.co/JDZpj64kBq" +06/16/2018,Musicians,@KeithUrban,"RT @LarkinPoe: Tonight is the kick-off show of @KeithUrban’s #GraffitiU Tour! +St. Louis, we’re stoked to be here!@HollywoodAmpSTL #keithurb…" +06/15/2018,Musicians,@KeithUrban,"We had a crazy final day of rehearsals, but we're ready to ROCK the opening night of the #GraffitiUWorldTour in St.… https://t.co/URVVSfQVNR" +06/15/2018,Musicians,@KeithUrban,TOMORROW • #GraffitiUWorldTour https://t.co/HkMaAjelmP +06/14/2018,Musicians,@KeithUrban,"The setlist is finalized, the trucks are loaded, and we are ready to hit the road! 🙌 See you tomorrow, St. Louis! 🎸… https://t.co/a58GArClkl" +06/14/2018,Musicians,@KeithUrban,RT @people: Keith Urban Preps for Graffiti U Tour: All the Behind-the-Scenes Photos https://t.co/2DXLLlJY9E +06/14/2018,Musicians,@KeithUrban,#GraffitiUWorldTour • FRIDAY!!! https://t.co/yqN8pMqLt3 +06/14/2018,Musicians,@KeithUrban,We’re gettin’ ready to roll! 🙌 #GraffitiUWorldTour https://t.co/bZZD9i7QVw +06/13/2018,Musicians,@KeithUrban,A quick update from Keith from the #GraffitiUWorldTour rehearsals! 🎸🎤 https://t.co/AMHQxEiGAy +06/13/2018,Musicians,@KeithUrban,Celebrate the 4th of July with Keith! 🎆 Don't miss his #MacysFireworks performance this year on @NBC. https://t.co/bP5YLzxlsw +06/13/2018,Musicians,@KeithUrban,Keith and @JuliaMichaels are taking you behind the scenes of the #ComingHome music video! 🎬 WATCH:… https://t.co/Yggac3xpPd +06/13/2018,Musicians,@KeithUrban,"The bass(es) are loaded and we’re #ComingHome! 🎸😉 +#GraffitiUWorldTour https://t.co/bPbxfsTWYD" +06/12/2018,Musicians,@KeithUrban,RT @LarkinPoe: We’re excited to announce that @KeithUrban has asked us to join him as featured performers on his #GraffitiU World Tour this… +06/12/2018,Musicians,@KeithUrban,RT @KelseaBallerini: finishing #CMAFest and starting the #GraffitiUWorldTour!! My heart is happy. so ready for this @KeithUrban!! Who’s com… +06/12/2018,Musicians,@KeithUrban,RT @TasteOfCountry: The new video from @KeithUrban is so cool! Get a look behind the scenes with him and @JuliaMichaels. https://t.co/pUHq… +06/12/2018,Musicians,@KeithUrban,RT @SoundsLikeNash: Is @KeithUrban's #GraffitiU Tour coming to a city near you? https://t.co/BpDoXiEEpL +06/12/2018,Musicians,@KeithUrban,The band has some fun surprises in store for the #GraffitiUWorldTour! 🎸🎹🥁 Check it out: https://t.co/GpMhis8fhj https://t.co/0TdLwKXDbO +06/11/2018,Musicians,@KeithUrban,"“...like context in a modern debate, I just took it out.” - Sage commentary @Truman_Black - love the new song!! - KU" +06/11/2018,Musicians,@KeithUrban,RT @TasteOfCountry: Heck YES! @KeithUrban's tour kicks off this week and we are puuuumped! https://t.co/e668lnqbt4 +06/11/2018,Musicians,@KeithUrban,"We’re ready to rock, St. Louis! 🙌 +#GraffitiUWorldTour https://t.co/rx57tk3T0h" +06/10/2018,Musicians,@KeithUrban,Last day to find the #GraffitiU murals around #CMAfest! We can’t wait to see your pictures! https://t.co/RrSbnVRFg1 +06/10/2018,Musicians,@KeithUrban,#CMAfest • 6.9.18 • @CountryMusic https://t.co/dsc9awr4Aj +06/10/2018,Musicians,@KeithUrban,"RT @visitmusiccity: Sing it w/us! + +🎶 ""All That Wasted Ti-i-i-ime!"" 🎶 + +@KeithUrban #CMAfest https://t.co/okl7fEDij8" +06/10/2018,Musicians,@KeithUrban,RT @NissanStadium: No better way to end the night! #CMAfest https://t.co/RXET2k0dUr +06/09/2018,Musicians,@KeithUrban,"Less than a week to go! 🎹🙌 +#GraffitiUWorldTour https://t.co/XB2YFozNEl" +06/09/2018,Musicians,@KeithUrban,#CMAfest TONIGHT!!! https://t.co/D9MdecDsDl +06/08/2018,Musicians,@KeithUrban,One week from now we’ll be rockin’ the first night of the #GraffitiUWorldTour in St. Louis! 🎸🙌🎶 https://t.co/q2HSzyVC2r +06/08/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour kicks off ONE WEEK from today! 🎤 +Don't miss Keith and @KelseaBallerini out on the road thi… https://t.co/3w7Z7kPcrZ" +06/08/2018,Musicians,@KeithUrban,"“There’s a place that I know +where they all know me...” +#GraffitiUWorldTour +#ComingHome https://t.co/PmJEeD8e4b" +06/07/2018,Musicians,@KeithUrban,In Nashville for #CMAfest? ☀ Find the #GraffitiU murals around town and post a picture using #GraffitiU and… https://t.co/OXhKfmveNE +06/07/2018,Musicians,@KeithUrban,"We're headed into #CMAFest like... 🤟🎤 +#ComingHome @juliamichaels https://t.co/Cn8ldXzyLn" +06/07/2018,Musicians,@KeithUrban,The band is ready to get this show ON THE ROAD! 🎸 @Raderator #GraffitiUWorldTour https://t.co/khctn5st8P +06/06/2018,Musicians,@KeithUrban,"The first stop on the #GraffitiUWorldTour is just 9 DAYS away! 🙌 +Celebrate by tweeting us your favorite concert mem… https://t.co/RL7AXKxaGL" +06/06/2018,Musicians,@KeithUrban,RT @EW: Here's a behind-the-scenes look at @KeithUrban's 'Graffiti U' tour https://t.co/O559SHhdgZ +06/05/2018,Musicians,@KeithUrban,"🔟🎸🔟✨🔟🎤🔟🔥🔟🎶🔟 +#GraffitiUWorldTour https://t.co/5ouTz3oAh4" +06/04/2018,Musicians,@KeithUrban,"RT @RecordingAcad: GRAMMY winner @KeithUrban has released a brand-new video for his upbeat collaboration with @JuliaMichaels, ""Coming Home.…" +06/03/2018,Musicians,@KeithUrban,"Keith is taking you inside his studio to see how ""Coming Home"" was written and recorded! 🎶 @juliamichaels +FULL VIDE… https://t.co/u5roz1qgzI" +06/01/2018,Musicians,@KeithUrban,"2 WEEKS! 🎤 2 WEEKS! 🎤 2 WEEKS! +#GraffitiUWorldTour https://t.co/RXAfltYcG1" +06/01/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour is just 2 WEEKS AWAY! 🙌 Which song are you most excited to hear LIVE?! 🎤 +TICKETS:… https://t.co/6dXFil9FRL" +06/01/2018,Musicians,@KeithUrban,RT @ClaireHKU_Fan: HAPPY JUNE ☀️!!! THAT MEANS ONLY 15 DAYS UNTIL @KeithUrban EMBARKS ON HIS #GraffitiUWorldTour 💃🤩💥!!! BRING IT ON 🤘!!! +06/01/2018,Musicians,@KeithUrban,I got your back @NileRodgers ALWAYS! CONGRATS and love!!!! - KU https://t.co/567eqcdr5E +06/01/2018,Musicians,@KeithUrban,Congrats @BrandonRayMusic!!!! - KU https://t.co/O1khjLgXRd +05/31/2018,Musicians,@KeithUrban,Spotted at #GraffitiUWorldTour rehearsals... 🙌🎤 https://t.co/ND1Z5cIA1v +05/31/2018,Musicians,@KeithUrban,RT @Vevo: You know you're going to have a good night when you walk into a bar and @KeithUrban & @juliamichaels are performing. Watch their… +05/31/2018,Musicians,@KeithUrban,"RT @flickeringjulia: OMG THE COMING HOME MV IS OUT IM FLIPPING OUT + +@juliamichaels @KeithUrban https://t.co/eH6IrNYchs" +05/31/2018,Musicians,@KeithUrban,@flickerlives @juliamichaels Thanks for letting us know! We’re on it! - Team KU +05/31/2018,Musicians,@KeithUrban,@lucy_arden @juliamichaels Thanks for letting us know! We’re on it! - Team KU +05/31/2018,Musicians,@KeithUrban,Check out the brand new music video for #ComingHome featuring @juliamichaels! 🎤 https://t.co/VtIZoI17Rc +05/30/2018,Musicians,@KeithUrban,We want to know which songs YOU want to hear on the #GraffitiUWorldTour! 🎤 SURVEY: https://t.co/lIDwF3leMl https://t.co/mAtLCgWdyj +05/30/2018,Musicians,@KeithUrban,"LAST DAY to enter! 🚨 Join Keith's fan club for the chance to win a pair of 4-day passes to #CMAfestl! 🎟 +Enter HERE:… https://t.co/KloSM5YKg1" +05/30/2018,Musicians,@KeithUrban,#ComingHome • TOMORROW https://t.co/waqkasp2JP +05/29/2018,Musicians,@KeithUrban,"Have you heard Keith's version of @LittleBigTown's hit #BetterMan? 🎶 +https://t.co/Ub9xxFnuoW" +05/29/2018,Musicians,@KeithUrban,#ComingHome • 5.31.18 https://t.co/tviL9WLJwg +05/27/2018,Musicians,@KeithUrban,"Forest City, IA • 5.26.18 • @TreeTownFest https://t.co/bo7Y7zfLg7" +05/27/2018,Musicians,@KeithUrban,Deep into training for the #GraffitiUWorldTour!!!!! - KU https://t.co/U76GlBC2UR +05/25/2018,Musicians,@KeithUrban,We're coming for you @TreeTownFest! 🤘 Can’t wait to see you all there TOMORROW! 🎤 TICKETS: https://t.co/EXboQ3snqR 🎟 https://t.co/vAdvZjw1yF +05/25/2018,Musicians,@KeithUrban,Go inside Keith's studio and see how his current single #ComingHome was written and recorded! 🎶 https://t.co/2Y5cp3gIsv +05/24/2018,Musicians,@KeithUrban,#CMAfest is only 2 WEEKS AWAY! 🎉 Join Keith's fan club for the chance to win a pair of 4-day passes to the festival… https://t.co/5vZyqRg32D +05/24/2018,Musicians,@KeithUrban,"#TBT to this epic version of #TheFighter from the #CMTawards! +VOTE for it to win CMT Performance of the Year:… https://t.co/FE8ciwiNfQ" +05/23/2018,Musicians,@KeithUrban,"How awesome for all of us here in Nashville that the 2019 @NFL draft is coming to our town!!!!!!! - KU 🏈 +#NFLDraft… https://t.co/292KMHZrWB" +05/21/2018,Musicians,@KeithUrban,"Keith is #ComingHome to play @BrdgstoneArena in August, and you could win a trip to Nashville to see the show! ✈ EN… https://t.co/rg1ypbhH2F" +05/16/2018,Musicians,@KeithUrban,Keith chatted with @TheKellySutton about the songs of #GraffitiU! Check out their @TuneIn Conversation:… https://t.co/qMYdHRlgTc +05/16/2018,Musicians,@KeithUrban,"We'll see you on September 9th, #CCMAawards! 🎤 Tickets on sale now! 🎟 @CCMAofficial @CBCMusic 🇨🇦 https://t.co/0iLbum15JJ" +05/15/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour kicks off ONE MONTH from today! +TICKETS: https://t.co/ISgkDPKADz 🎤 +MERCH:… https://t.co/3GEJFy9QCd" +05/14/2018,Musicians,@KeithUrban,How about a little #ParallelLine from #GraffitiU on this #MusicMonday? 🎶 https://t.co/LOK4idqf5R +05/13/2018,Musicians,@KeithUrban,Happy #MothersDay! Use code MOTHERSDAY today to get 13% off of new #GraffitiUWorldTour merchandise and the rest of… https://t.co/WesjGWocOa +05/13/2018,Musicians,@KeithUrban,HAPPY MOTHER'S DAY MOM- and for Moms everywhere!!!!!!! - KU https://t.co/juHfwiwZ4H +05/11/2018,Musicians,@KeithUrban,We've got our shades on dancing with our hands up high! 🙌 Crank up #DropTop featuring @KassiAshton to get that… https://t.co/7ROycsLWNr +05/10/2018,Musicians,@KeithUrban,.@JESSICAMAUBOY - YOU ROCK GIRL!!!!!!!! - KU +05/10/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour is just around the corner! 🎶 Which songs would make it on to your dream set list?! +https://t.co/ZLh5twIUdu" +05/10/2018,Musicians,@KeithUrban,"RT @amazonmusic: ""He's the real deal."" @KeithUrban closes out his week guest hosting #SOTD w/ a track from @ericchurch! #JustAsk, ""Alexa, p…" +05/10/2018,Musicians,@KeithUrban,"RT @AppleMusic: When two of your faves collab. 🙌 +@KeithUrban talks working with @juliamichaels on #ComingHome. +Listen now to #GraffitiU: ht…" +05/09/2018,Musicians,@KeithUrban,A friendly reminder from Team KU: Beware of Keith Urban imposters on social media! 🚨 Tips on how to spot and report… https://t.co/ITvZtlkaGa +05/09/2018,Musicians,@KeithUrban,"☀ ""You gotta watch out for the shine blockers!"" ☀ +#WednesdayWisdom #MyWave +https://t.co/Ra3oLCU7av" +05/09/2018,Musicians,@KeithUrban,"RT @EMIMusicAU: Head down to Brekky Central this Friday, before 7am, for your chance to meet @KeithUrban. He'll be meeting fans on the red…" +05/08/2018,Musicians,@KeithUrban,Keith has two performances nominated for CMT Performance of the Year at the #CMTawards! 🏆 https://t.co/CONZdZmbUC https://t.co/UDFJhmTCqt +05/07/2018,Musicians,@KeithUrban,RT @cleanbandit: ty @KeithUrban for picking i miss you as @amazonmusic’s song of the day! #AskAlexa to play the song of the day to hear it… +05/07/2018,Musicians,@KeithUrban,"RT @amazonmusic: ""She is one of the great, great songwriters. Period."" @KeithUrban with the love for @taylorswift13! #JustAsk, ""Alexa, play…" +05/06/2018,Musicians,@KeithUrban,Back on #TexasTime 🎤 #iHeartCountry https://t.co/VpsdhTtGnG +05/06/2018,Musicians,@KeithUrban,"RT @bobbybonesshow: Don’t miss @KeithUrban performance coming up & he’s got a surprise collab you DON’T want to miss!!! + +watch live: https…" +05/06/2018,Musicians,@KeithUrban,"RT @iHeartRadio: TONIGHT! @LukeBryan, @KeithUrban and more take the stage at the #iHeartCountry Festival by @ATT! Watch now. +https://t.co/…" +05/05/2018,Musicians,@KeithUrban,We'll see you on the Plaza in August! 😎 @TODAYShow #KeithTODAY https://t.co/ntCD9dqBVr +05/05/2018,Musicians,@KeithUrban,"RT @Jason_Aldean: Thank you @KeithUrban for picking “You Make It Easy” as @amazonmusic’s Song of the Day! To check it out, just #AskAlexa “…" +05/05/2018,Musicians,@KeithUrban,The #iHeartCountry Festival starts TONIGHT! 🙌 Head over to @ATT at 8/7c to stream Keith performing new songs from… https://t.co/Y0JZ5fA85V +05/05/2018,Musicians,@KeithUrban,RT @TODAYshow: Here it is! The lineup for the Citi Concert Series! https://t.co/j6w3OH7OOQ +05/05/2018,Musicians,@KeithUrban,Can you feel it?! 🎶 Watch Keith perform #NeverCominDown from #GraffitiU on @LateNightSeth! https://t.co/Y5sv46KPtd +05/04/2018,Musicians,@KeithUrban,"#ComingHome is @AmazonMusic’s Song of the Day! 🎶 To check it out, just #AskAlexa “Play the Song of the Day.” #SOTD https://t.co/bsGAh3W3aw" +05/04/2018,Musicians,@KeithUrban,RT @LateNightSeth: Don’t miss @KeithUrban chatting with @SethMeyers and performing #NeverCominDown on #LNSM tonight! https://t.co/qOlM1UprOe +05/03/2018,Musicians,@KeithUrban,TONIGHT! • @LateNightSeth https://t.co/HYIHZngZHT +05/03/2018,Musicians,@KeithUrban,"RT @LateNightSeth: TONIGHT! Seth welcomes @KeithUrban and @iamstephbeatz! Plus, #ACloserLook! https://t.co/M1jsHAQFWd" +05/03/2018,Musicians,@KeithUrban,Hear Keith talk about the making of #ComingHome and working with @JuliaMichaels at his @iHeartRadio Album Release P… https://t.co/IOIwYYCPSL +05/03/2018,Musicians,@KeithUrban,".@DwightYoakam and @BrothersOsborne joined Keith on stage at @Stagecoach for a rockin' version of #FastAsYou! +https://t.co/dk3Sr4jChP" +05/03/2018,Musicians,@KeithUrban,Catch Keith performing songs from #GraffitiU on @LateNightSeth TONIGHT! 🎤 https://t.co/fmyNhnTDNC +05/02/2018,Musicians,@KeithUrban,RT @pandoramusic: Go to #GraffitiU with @KeithUrban as he works with a graffiti artist Troy Duff to bring his sound to life. Then listen to… +05/02/2018,Musicians,@KeithUrban,"RT @Spotify: Studio playdates with @KeithUrban sound like the best way to spend an afternoon 🙌 + +Watch the full episode on #HotCountry ⭐️ h…" +05/01/2018,Musicians,@KeithUrban,#ComingHome feat. @JuliaMichaels is on the #TheAListCountry Playlist on @AppleMusic! 🎶 Check it out:… https://t.co/JvY8AXDCfA +05/01/2018,Musicians,@KeithUrban,"RT @iHeartRadio: The iHeartRadio Artist Of The Week Is: @KeithUrban. Friday, the four-time Grammy winner dropped his 9th studio album, #Gra…" +05/01/2018,Musicians,@KeithUrban,Watch Keith perform songs from #GraffitiU on @JimmyKimmelLive TONIGHT at 11:35/10:35c! 🎤 https://t.co/ooXyx6YLDu +04/30/2018,Musicians,@KeithUrban,HUGE thx to @brothersosborne and @DwightYoakam for gracing our stage with your mythical mojo!!!!!! - KU 🎤… https://t.co/c38fHbumdC +04/29/2018,Musicians,@KeithUrban,#Stagecoach • 4.28.18 https://t.co/5KQ2rKgu80 +04/28/2018,Musicians,@KeithUrban,🙌 @STAGECOACH - IT IS GOIN DOWN TONIGHT!!!!!!!! - KU https://t.co/9gXD55uN9Q +04/28/2018,Musicians,@KeithUrban,Hey @barclayscenter... SO lookin forward to Oct 27 - it’s gonna be  OFF THE HOOK!!!!!!! - KU https://t.co/1PnPfJEYvF +04/27/2018,Musicians,@KeithUrban,LOS ANGELES • TONIGHT • FREE • 18+ https://t.co/wKFuUUWdfU +04/27/2018,Musicians,@KeithUrban,"RT @Spotify: ""You get a jeep! And you get a jeep! Everybody gets a jeep!"" Watch the full @KeithUrban episode on #HotCountry ⭐️ https://t.co…" +04/27/2018,Musicians,@KeithUrban,RT @Bose: Check out ‘Drop Top’ featuring @KassiAshton on @KeithUrban’s new album #GraffitiU. #QC35 II https://t.co/PHbMg1Kn2U https://t.co/… +04/27/2018,Musicians,@KeithUrban,"RT @AppleMusic: Eat. Sleep. Listen to @KeithUrban's new album. Repeat. #GraffitiU +https://t.co/wPpNQLRGQD" +04/27/2018,Musicians,@KeithUrban,RT @KassiAshton: ME ALL DAY HELLLOOOO #DROPTOP #GRAFFITIU @KeithUrban https://t.co/Z2BwWENDQA +04/27/2018,Musicians,@KeithUrban,Huge thanks to @Spotify for featuring #Horses from #GraffitiU on the #NewMusicFriday playlist! 🎶 Check it out:… https://t.co/8mS5qZxqJH +04/27/2018,Musicians,@KeithUrban,"RT @amazonmusic: NEW from @KeithUrban, get a hold of #GraffitiU! https://t.co/F8hGUWisvC #CountryHeat https://t.co/eM37JbmOau" +04/27/2018,Musicians,@KeithUrban,"RT @SIRIUSXM: Hear a special @KeithUrban performance this morning at 9am ET on @SXMTheHighway (Ch. 56)! +Click to listen now online and on t…" +04/27/2018,Musicians,@KeithUrban,#GraffitiU is finally here! 🎶 LISTEN: https://t.co/MCfsAhiCUv https://t.co/CqCW1G0jDJ +04/27/2018,Musicians,@KeithUrban,RT @TIDAL: 'Graffiti U' makes @KeithUrban's 9th studio album! Listen now on TIDAL: https://t.co/7XY2RP1HDd https://t.co/chzpcK2OUd +04/27/2018,Musicians,@KeithUrban,RT @lindsayell: When you are so excited for the new @keithurban album to come out.... you show up at #Walmart early.....#GraffitiU is now o… +04/26/2018,Musicians,@KeithUrban,"RT @RIAA: For 20 years, @KeithUrban has made #Platinum album after #Platinum album! Be sure to check out his latest, #GraffitiU, out TMRW #…" +04/26/2018,Musicians,@KeithUrban,#GraffitiU is available everywhere TOMORROW! 🙌 Which song are you most excited to hear? https://t.co/Ti285jep2H +04/26/2018,Musicians,@KeithUrban,LOS ANGELES • #GraffitiU https://t.co/szPyutHgLI +04/26/2018,Musicians,@KeithUrban,"Thank you, @iHeartRadio! #GraffitiU https://t.co/vUhwJ40WDU" +04/26/2018,Musicians,@KeithUrban,Watch LIVE as Keith celebrates the release of #GraffitiU with @iHeartRadio! 🎤 https://t.co/Y9Q8p2fZWk +04/26/2018,Musicians,@KeithUrban,#GraffitiU 🎤 https://t.co/Cx5030KTvl +04/25/2018,Musicians,@KeithUrban,"RT @iHeartRadio: Tonight we're celebrating @KeithUrban 's Album Release Party at 7PM PT / 10PM ET live from the @iHeartTheaterLA! + +Watch it…" +04/25/2018,Musicians,@KeithUrban,Let’s be lost and young. • #Horses feat. @LindsayEll • #GraffitiU out FRIDAY https://t.co/55cTKRilbG +04/24/2018,Musicians,@KeithUrban,Keith's new album #GraffitiU will be available everywhere FRIDAY! 🎤 https://t.co/MCfsAhiCUv https://t.co/6VbOnY3JAz +04/24/2018,Musicians,@KeithUrban,#ParallelLine • #SpotifyFansFirst • #GraffitiU https://t.co/9MEAsq6Su3 +04/24/2018,Musicians,@KeithUrban,"RT @TheEllenShow: I love @KeithUrban, and if you love him too, tell me why you should be here Thursday to see him perform live! keithurbano…" +04/23/2018,Musicians,@KeithUrban,RT @UMGNashville: Want a behind the scenes look at the making of @KeithUrban’s new album? Pre-order #GraffitiU in exclusive packages to get… +04/23/2018,Musicians,@KeithUrban,"RT @opry: #OpryMember @KeithUrban's new album #GraffitiU is out FRIDAY ... It's gonna be a good week! 🙌🙌 + +Pre-order the album 💿 here: https…" +04/23/2018,Musicians,@KeithUrban,"RT @NHL: The @PredsNHL are moving on to the Second Round and according to @KeithUrban, the city of Nashville is ready. #StanleyCup https://…" +04/22/2018,Musicians,@KeithUrban,Join Keith's email list and be the first to know about all things #GraffitiU and the #GraffitiUWorldTour! 📧 JOIN:… https://t.co/6PDNSMBrzU +04/22/2018,Musicians,@KeithUrban,"WE LOVE YOU PREDS! GOOD LUCK IN COLORADO!!!!! - KU +#StandWithUs @PredsNHL https://t.co/MqBBwDDM8F" +04/21/2018,Musicians,@KeithUrban,RT @iHeartRadio: We have your chance to celebrate @KeithUrban's #GraffitiU Album Release Party with us in the @iHeartTheaterLA on April 25!… +04/20/2018,Musicians,@KeithUrban,"Want to win a trip to Nashville to see the #GraffitiUWorldTour? 🎤 Stream, watch, and listen to earn your points for… https://t.co/WohZZZ6IMa" +04/19/2018,Musicians,@KeithUrban,Rock out to #ComingHome featuring @JuliaMichaels on @DigsterPlaylist's #CountryHits playlist on @AppleMusic! 🎶… https://t.co/9pcqLl4i6e +04/18/2018,Musicians,@KeithUrban,"""Yeah I know it's only one call away, but it's not the same..."" 🎶 #ComingHome @JuliaMichaels ✨… https://t.co/hjGqM2YggI" +04/17/2018,Musicians,@KeithUrban,We're celebrating the release of #GraffitiU with an @iHeartCountry Album Release Party at the @iHeartTheaterLA on A… https://t.co/cElRjunQYF +04/17/2018,Musicians,@KeithUrban,"RT @iHeartRadio: 🚨 @KeithUrban will be celebrating the release of his new album, #GraffitiU, with an @iHeartCountry Album Release Party at…" +04/16/2018,Musicians,@KeithUrban,"RT @ACMawards: And the winner for Vocal Event of the Year goes to... @KeithUrban and @CarrieUnderwood for “The Fighter"" #ACMawards https://…" +04/16/2018,Musicians,@KeithUrban,#ACMawards • #ComingHome • @JuliaMichaels https://t.co/RqbFZ6ngnf +04/15/2018,Musicians,@KeithUrban,Don't miss Keith and @JuliaMichaels performing #ComingHome at the #ACMawards TONIGHT at 8/7c on @CBS! https://t.co/f371NAN00d +04/14/2018,Musicians,@KeithUrban,Wishing @LorettaLynn a very happy birthday today! 🎂 #HappyBirthdayLoretta https://t.co/rUevvpUJ7H +04/14/2018,Musicians,@KeithUrban,At the iconic @CapitolRecords building in LA today and saw this in the hallway. Miss you Glen! - KU https://t.co/h5kE6swBfH +04/13/2018,Musicians,@KeithUrban,"The release of Keith's new album #GraffitiU is just 2 weeks away! 🎶 +Pre-order it in exclusive packages:… https://t.co/2hSg6H6id1" +04/11/2018,Musicians,@KeithUrban,JUST ANNOUNCED: @JuliaMichaels is joining Keith to sing #ComingHome at Sunday's @ACMawards! 🎤 https://t.co/R64dFypx9v +04/11/2018,Musicians,@KeithUrban,"RT @danceon: Serious question, are you thinking about the summer right now like we are? 😋#CountryMusic #YouCanDanceToCountry #StageCoach…" +04/09/2018,Musicians,@KeithUrban,RT @UMGNashville: .@KeithUrban's #GraffitiU is now available for pre-order. Get in on the action here: https://t.co/5OMer8PM86 https://t.co… +04/08/2018,Musicians,@KeithUrban,Hey Lindsay- can't wait for everyone to hear HORSES!!! And hey- we get to tour some too!!!!!! - KU https://t.co/UDGYWwiWiZ +04/08/2018,Musicians,@KeithUrban,"Ft. Lauderdale, FL • 4.7.18 • @FestivalTortuga https://t.co/wuzUaAfyBd" +04/06/2018,Musicians,@KeithUrban,The honor's all mine KA. You are THE REAL DEAL!!! - KU https://t.co/LGCMIkndmU +04/06/2018,Musicians,@KeithUrban,Pre-order #GraffitiU in exclusive packages and gain a first look at behind-the-scenes content in the Graffiti U Dig… https://t.co/a47AbxzIBV +04/06/2018,Musicians,@KeithUrban,PA & OH: The #GraffitiUWorldTour is coming to a city near you! 🎤 Tickets on sale TODAY: https://t.co/0hf0KmVUmq 🎟 https://t.co/TeYiQrdQ7V +04/06/2018,Musicians,@KeithUrban,TRACK LIST • GRAFFITI U • 4.27.18 https://t.co/wFRdeRvuJe +04/05/2018,Musicians,@KeithUrban,JUST ANNOUNCED: Keith's new album #GraffitiU will be available everywhere 4.27.18! 🎶 https://t.co/erYT9rRS8g +04/04/2018,Musicians,@KeithUrban,"Keith is playing the @GrandOleRager in Augusta, GA during #TheMasters TOMORROW, April 5th with Russell Dickerson &… https://t.co/neDD60QGZh" +04/04/2018,Musicians,@KeithUrban,"Likewise Russell....... on both!!!! - KU +@GrandOleRager https://t.co/1Cr8KTrRM5" +03/31/2018,Musicians,@KeithUrban,"Have you heard Keith's new single #ComingHome featuring @JuliaMichaels!? +🎶 https://t.co/yCieKtRDmj https://t.co/nteHHrigqw" +03/26/2018,Musicians,@KeithUrban,Last chance to get official merchandise from Keith's #ripCORDWorldTour! 🎸 On sale while supplies last:… https://t.co/wLNWMarbbm +03/25/2018,Musicians,@KeithUrban,"RT @AppleMusic: All the feels on #ComingHome from @KeithUrban x @imjmichaels. +Give it a listen. +https://t.co/EB1oganDYM" +03/24/2018,Musicians,@KeithUrban,"RT @TIDAL: #NowPlaying @KeithUrban's new song ""Coming Home"" on TIDAL: https://t.co/DsuJlPwqKQ https://t.co/lXLQfIrye0" +03/23/2018,Musicians,@KeithUrban,Check out #ComingHome on @AmazonMusic's #BrandNewMusic playlist! 🎧 https://t.co/Qk4DcjEEgv https://t.co/jRJulf9sLe +03/23/2018,Musicians,@KeithUrban,RT @festivaltortuga: Are you ready to Rock The Ocean?! By joining your favorite artists on the beach at #TortugaFest you're helping raise m… +03/23/2018,Musicians,@KeithUrban,"Keith is bringing the #GraffitiUWorldTour to a city near you! 🎤 +Tickets on sale TODAY: https://t.co/0hf0KmVUmq https://t.co/4PSMsuG5KI" +03/22/2018,Musicians,@KeithUrban,"Missed @SXSW? Check out Keith's conversation with @ScottLGoldman from The @GRAMMYMuseum! +https://t.co/lSlUF4jrDh" +03/22/2018,Musicians,@KeithUrban,"RT @Spotify: Nothin' feels like coming home, right @keithurban? Hear his new jam with @imjmichaels right here 👉 https://t.co/694KdTKcn4 htt…" +03/22/2018,Musicians,@KeithUrban,Keith is performing at @CountryMusic’s #CMAfest in support of the #CMAFoundation and music education in June! ☀… https://t.co/9ifOOl5CXx +03/21/2018,Musicians,@KeithUrban,"RT @etnow: Listen to @KeithUrban's collaboration with @imjmichaels, 'Coming Home'! https://t.co/0HrGRLDn92 https://t.co/uq0gsJ1uxd" +03/21/2018,Musicians,@KeithUrban,Check out the lyric video for #ComingHome on @Vevo! 🎶 https://t.co/1m3mIczEeo https://t.co/7sLJCTQiiT +03/21/2018,Musicians,@KeithUrban,"RT @billboard: Keith Urban shares new single ""Coming Home"" https://t.co/N9cBLxZNT1 https://t.co/mYPWPeh3Ps" +06/30/2018,Musicians,@PaulMcCartney,"Paul during the recording of #EgyptStation at @AbbeyRoad, 2017 https://t.co/tgAfcxOAg8" +06/28/2018,Musicians,@PaulMcCartney,"Paul @AbbeyRoad during the recording of #EgyptStation, 2017 https://t.co/9Yi4VUV2Ph" +06/26/2018,Musicians,@PaulMcCartney,Paul during the recording of #EgyptStation at @AbbeyRoad 2017 https://t.co/MxlegiEwm3 +06/26/2018,Musicians,@PaulMcCartney,"RT @CapitolRecords: 🗣 All aboard, #Hollywood! + +Next stop: #EgyptStation. The journey begins September 7th 🎶 @PaulMcCartney https://t.co/De…" +06/25/2018,Musicians,@PaulMcCartney,'I Don't Know' taken from Paul's forthcoming album #EgyptStation. In stores 7th September. Listen / Download / Pre-… https://t.co/SpCH0JMtfx +06/25/2018,Musicians,@PaulMcCartney,"Paul during the recording of #EgyptStation @AbbeyRoad, November 2017 https://t.co/RWEtRQu5qf" +06/24/2018,Musicians,@PaulMcCartney,"""I saw you flash a smile"". Listen to Paul's new single 'Come On To Me' on @Spotify: https://t.co/J5CV5nJIsG https://t.co/cMVN6tNjqu" +06/23/2018,Musicians,@PaulMcCartney,"""I've got so many lessons to learn"". Listen to Paul's new single 'I Don't Know' on @Spotify:… https://t.co/3dDAriR7JW" +06/23/2018,Musicians,@PaulMcCartney,RT @YouTube: You need this. https://t.co/q3ny7VgDa4 https://t.co/NhCtqbwgkp +06/22/2018,Musicians,@PaulMcCartney,RT @diymagazine: .@PaulMcCartney talks new album 'Egypt Station' and working with @RyanTedder and @GregKurstin in an exclusive DIY intervie… +06/22/2018,Musicians,@PaulMcCartney,"RT @JKCorden: Ok, so here it is. Quite possibly the best #CarpoolKaraoke we’ve done so far. I hope you like it. I’ll never ever forget it.…" +06/21/2018,Musicians,@PaulMcCartney,'Come On To Me' taken from Paul's forthcoming album #EgyptStation. In stores 7th September. Listen / Download / Pre… https://t.co/DWXeNc7vyH +06/21/2018,Musicians,@PaulMcCartney,RT @BBC6Breakfast: LISTEN BACK to @matteveritt's extended chat with @PaulMcCartney - https://t.co/IYpUWUSDO8 https://t.co/BR9VYPpnxs +06/20/2018,Musicians,@PaulMcCartney,New album 'Egypt Station' arriving 7th September featuring singles ‘I Don’t Know’ and ‘Come On To Me'. Pre-order HE… https://t.co/ynIJUAFY94 +06/20/2018,Musicians,@PaulMcCartney,"RT @RadioX: TONIGHT. On the Evening Show. +@gordonsmart in conversation with the incredible @PaulMcCartney. +They talk new double A-side sing…" +06/20/2018,Musicians,@PaulMcCartney,"RT @BBC6Music: Woo! @PaulMcCartney speaks to @MattEveritt on the @BBC6Breakfast show, this Thursday from 8.30am. Not that anyone's getting…" +06/20/2018,Musicians,@PaulMcCartney,🎧 https://t.co/fD9898XWkE +06/19/2018,Musicians,@PaulMcCartney,Paul to release all-new double A-side single ‘I Don't Know’/‘Come On To Me’. Full details HERE!… https://t.co/qTHh9SsT8Q +06/18/2018,Musicians,@PaulMcCartney,#PaulMcCartney #EgyptStation https://t.co/40o6Mo81lB +06/18/2018,Musicians,@PaulMcCartney,https://t.co/351RbE9Agh +06/17/2018,Musicians,@PaulMcCartney,https://t.co/znKZ84KRH8 +06/17/2018,Musicians,@PaulMcCartney,https://t.co/ptpbhvghNt +06/16/2018,Musicians,@PaulMcCartney,https://t.co/3znWdt9yrF +06/15/2018,Musicians,@PaulMcCartney,https://t.co/XpyHOvKQtj +06/14/2018,Musicians,@PaulMcCartney,https://t.co/CwYXidsMnA +06/13/2018,Musicians,@PaulMcCartney,https://t.co/iLeL2UU45j +06/13/2018,Musicians,@PaulMcCartney,"RT @latelateshow: It’s happening! + +#CarpoolKaraoke with @PaulMcCartney premieres next week during our four nights in London! https://t.co/m…" +06/12/2018,Musicians,@PaulMcCartney,https://t.co/mZlAscFFq1 +06/11/2018,Musicians,@PaulMcCartney,https://t.co/hMdNSl36kw +06/10/2018,Musicians,@PaulMcCartney,https://t.co/TZ8VeKEv8f +06/08/2018,Musicians,@PaulMcCartney,I think it would be really nice to see this pregnant cow given a reprieve. She’s done nothing wrong. Join us if you… https://t.co/OaxF7qjCV3 +06/05/2018,Musicians,@PaulMcCartney,🌼#OTD in 1989 'Flowers in the Dirt' was released...🌼 What's your favourite track from the album? https://t.co/F46GGezPmE +06/03/2018,Musicians,@PaulMcCartney,"""It wasn’t like we were following a trend; we were in the trend..."" Paul talks about how @TheBeatles kept up with s… https://t.co/UyiipxrOjC" +06/02/2018,Musicians,@PaulMcCartney,#ICYMI Read the https://t.co/eEFPgd3GIu May newsletter HERE: https://t.co/n1OxusIoHw https://t.co/VuqOjM3DNM +05/31/2018,Musicians,@PaulMcCartney,Paul in Jamaica. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/bIDk50ctKk +05/30/2018,Musicians,@PaulMcCartney,"RT @ESA_History: Speaking of anniversaries, we see that congratulations are in order to Sir @PaulMcCartney, whose spacey titled #Wings albu…" +05/27/2018,Musicians,@PaulMcCartney,Ever wondered what happens backstage at Paul’s shows? Go behind-the-scenes with publicist Stuart Bell in his tour b… https://t.co/LfBIiPkjE0 +05/26/2018,Musicians,@PaulMcCartney,"#ICYMI Learn more about 'Eat At Home', taken from 'Thrillington' HERE: https://t.co/bSVwc5ck9g + +Get your reissue co… https://t.co/t61GkCuKel" +05/25/2018,Musicians,@PaulMcCartney,Did you know the album artwork for ‘Chaos and Creation in the Backyard’ features Paul’s name styled as an ambigram.… https://t.co/6hru1RQWz2 +05/23/2018,Musicians,@PaulMcCartney,🎧 https://t.co/UbcFyxb7Lg +05/18/2018,Musicians,@PaulMcCartney,"'NEW', 'Chaos and Creation in the Backyard', 'Wings Greatest' and 'Thrillington' are back in stores today in single… https://t.co/vFjirEouJW" +05/17/2018,Musicians,@PaulMcCartney,🤔 #ThrowbackThursday #TBT Photo by Linda McCartney #Thrillington https://t.co/KVEc7u1pHZ +05/16/2018,Musicians,@PaulMcCartney,"The story of ‘Eat At Home’ has had a fun telling, starting off life as a co-written song on Paul and Linda McCartne… https://t.co/Y8zdnvKeT7" +05/14/2018,Musicians,@PaulMcCartney,"""But darling, doesn't EVERYONE know Percy Thrillington?"" +In stores 18th May: https://t.co/e9bgu55aC4 https://t.co/MEsuUHMv5P" +05/13/2018,Musicians,@PaulMcCartney,Fond memories of my Mum. Happy Mother’s Day to all you Mothers! https://t.co/hEnEQRRIQ2 +05/12/2018,Musicians,@PaulMcCartney,“I'm the man on the flaming pie” What are your favourite songs from Paul’s 1997 album? #PaulMcCartney https://t.co/MSEEBENsBX +05/10/2018,Musicians,@PaulMcCartney,"""Bit flat, mate?"" #WingsGreatest #ThrowbackThursday #TBT +In stores 18th May: https://t.co/e9bgu55aC4 https://t.co/GzQRRbbG0a" +05/07/2018,Musicians,@PaulMcCartney,"""With A Little Love, We Can Lay It Down / Can't You Feel The Town Exploding?..."" +Available for the first time in li… https://t.co/pCaClzhgVU" +05/04/2018,Musicians,@PaulMcCartney,"This week in 1973, Wings released 'Red Rose Speedway' 🌹 What are your favourite songs from the album? https://t.co/05RFi8h6wJ" +05/04/2018,Musicians,@PaulMcCartney,Paul at Buckingham Palace earlier today where he was made a Companion of Honour by the Queen for services to music.… https://t.co/Il5DZ8O0zC +05/03/2018,Musicians,@PaulMcCartney,"Wrecked Car. Portugal, 1969 #ThrowbackThursday #TBT +One of 63 prints by Linda McCartney, donated by Paul and famil… https://t.co/LGgVsM8X3k" +05/02/2018,Musicians,@PaulMcCartney,"""I often think 'How did @thebeatles get together?'"" Does Paul believe in destiny or fate? Find out HERE:… https://t.co/QTuau6UdSU" +05/01/2018,Musicians,@PaulMcCartney,"Austin, Paul is coming to see you in October at #ACLFest! Get your tickets HERE: https://t.co/glEFCMAIS2 https://t.co/r9uqtTpwdM" +05/01/2018,Musicians,@PaulMcCartney,May your #MayDay be the best! https://t.co/6Xg693AIdz +04/30/2018,Musicians,@PaulMcCartney,"""With a little luck we can help it out / We can make this whole damn thing work out""... Dive a little deeper into '… https://t.co/8xDze10hJm" +04/27/2018,Musicians,@PaulMcCartney,"RT @virgisketch: Paul McCartney 🌹 + +portrait made with Prismacolor coloured pencils on Fabriano paper. + +#whatsnewpaul #PaulMcCartney #fanart…" +04/27/2018,Musicians,@PaulMcCartney,RT @treg817: #painting I did of @PaulMcCartney #FanArtFriday #beatles #macca #bass #guitar #wings #whatsnewpaul https://t.co/v6fl2iUltw +04/27/2018,Musicians,@PaulMcCartney,"RT @virgisketch: Paul McCartney ❤️ I drew it at school 😂 +#whatsnewpaul #PaulMcCartney #drawing #FanArtFriday #fanart https://t.co/rKBIT3eQ4K" +04/26/2018,Musicians,@PaulMcCartney,"Paul, Linda and Denny, 1977. Photo by Clive Arrowsmith #ThrowbackThursday #TBT #Wings https://t.co/AHrS6alY0g" +04/25/2018,Musicians,@PaulMcCartney,"""Looking through the backyard of my life / Time to sweep the fallen leaves away..."" Dive into 'Promise To You Girl'… https://t.co/yuAAU3onMa" +04/23/2018,Musicians,@PaulMcCartney,Happy George’s Day! #StGeorgesDay https://t.co/fqQYIGhHxX +04/22/2018,Musicians,@PaulMcCartney,Happy #EarthDay! There is a simple but significant way to help protect the planet and all its inhabitants and it st… https://t.co/ga0vedIiV4 +04/22/2018,Musicians,@PaulMcCartney,Happy #EarthDay! Help save it. 🌏 https://t.co/LbFXqbEIkQ +04/19/2018,Musicians,@PaulMcCartney,'Creating Chaos at @AbbeyRoad.' Photo by Richard Haughton #ThrowbackThursday #TBT https://t.co/wchG7F9Bju +04/18/2018,Musicians,@PaulMcCartney,"""But the day will come / Jenny Wren will sing / When this broken world / mends its foolish ways..."" +'Chaos and Crea… https://t.co/QNZFfe3OyH" +04/17/2018,Musicians,@PaulMcCartney,Remembering Linda with love today. Beautiful memories. https://t.co/sfREUMl0ey +04/16/2018,Musicians,@PaulMcCartney,"""On my way to work / But all the time I thought of you..."" #MondayMotivation 👣 💞 +Listen to 'On My Way To Work' HERE… https://t.co/DVOwwhlBhv" +04/13/2018,Musicians,@PaulMcCartney,#FanArtFriday by Instagram user eszterbudavari_art! Share your #fanart with the hashtag #whatsnewPaul! 🎨😎 https://t.co/lXmQhZ7eZz +04/12/2018,Musicians,@PaulMcCartney,Dive into Paul's track 'On My Way To Work' taken from his album 'New'... https://t.co/5FHOt40sQe....… https://t.co/iFyUu8ddqT +04/09/2018,Musicians,@PaulMcCartney,#ICYMI Read the https://t.co/eEFPgd3GIu March newsletter HERE: https://t.co/PMdCCn9XiO https://t.co/5PVoipKFJb +04/06/2018,Musicians,@PaulMcCartney,RT @THEmodmother: my #drawing of @PaulMcCartney for #FanArtFriday from a photo by @BaileyQuotes #whatsnewpaul #pencil #art #portrait htt… +04/06/2018,Musicians,@PaulMcCartney,"RT @Kunigami_Maaji: Love you @PaulMcCartney !! +#whatsnewPaul +@MJKIM_lalala Thank you for a wonderful photo !! https://t.co/vWYBLQuepS" +04/05/2018,Musicians,@PaulMcCartney,50 years ago on April 4th Dr. King’s life was cut short but his dream still lives. My dream is for everyone to live… https://t.co/Elkm9rOXni +04/05/2018,Musicians,@PaulMcCartney,The 'Chaos and Creation in the Backyard' album cover featured this photo taken by Paul's brother Mike at their home… https://t.co/GxcTs3v1c4 +04/04/2018,Musicians,@PaulMcCartney,"""I never knew what I could be / What I could do / Then we were new..."" +Available for the first time in limited edit… https://t.co/CMmftA2vzP" +04/01/2018,Musicians,@PaulMcCartney,Have a glorious Easter! #HappyEaster https://t.co/HAC1O1oslQ +04/01/2018,Musicians,@PaulMcCartney,Easter tweeting greeting! https://t.co/oiju9y4vh0 +03/29/2018,Musicians,@PaulMcCartney,'NEW' Abbey Road Recording Sessions. Photo by @maryamccartney #ThrowbackThursday #TBT https://t.co/hhsuejEKMD +03/28/2018,Musicians,@PaulMcCartney,"Paul will reissue four catalogue titles on 18th May via MPL/Capitol: 'NEW,' 'Chaos and Creation in the Backyard,' '… https://t.co/1fLVQ5De8l" +03/23/2018,Musicians,@PaulMcCartney,#FanArtFriday by @Instagram user babicheva_lerP ! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/I3ofshFXtY +03/22/2018,Musicians,@PaulMcCartney,"On the Bakerloo Line, London. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/oPGFl1GnZZ" +03/21/2018,Musicians,@PaulMcCartney,🌼 I’d rather be listening to McCartney 🌼 Listen to your favourite Paul McCartney songs on @Spotify:… https://t.co/NLPZg6BaHr +03/20/2018,Musicians,@PaulMcCartney,#InternationalDayOfHappiness https://t.co/NsluVcwyMr +03/20/2018,Musicians,@PaulMcCartney,Which song makes you feel the happiest? 😁 #InternationalDayOfHappiness +03/19/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: “What we’re doing with #MeatFreeMonday is urging people to just try it, because it will make a difference if the idea s…" +03/17/2018,Musicians,@PaulMcCartney,Go green on St Paddy’s Day! #StPatricksDay https://t.co/wujlCH90gY +03/16/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagram user moixonada ! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/okZ1dcxwO5 +03/16/2018,Musicians,@PaulMcCartney,"RT @ShineMsd: OUR SONG SHINE, which was performed live at the @CNN Town Hall, is now streaming everywhere! All proceeds will go to #ShineMS…" +03/15/2018,Musicians,@PaulMcCartney,"The McCartney's visit to East Hampton. New York, 1975 #ThrowbackThursday #TBT https://t.co/MPXDAEhOoq" +03/12/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: ""Nobody’s forcing anyone to do anything; you just try one day meat free, because it’s a good idea..."" Read @PaulMcCartn…" +03/12/2018,Musicians,@PaulMcCartney,Paul on Ken Dodd... https://t.co/ytd8SyRtip +03/11/2018,Musicians,@PaulMcCartney,Fond memories of my Mum. Happy Mother’s Day to all you Mothers! https://t.co/sKl5D94D9m +03/09/2018,Musicians,@PaulMcCartney,Paul playing guitar at home in London. Photo by Linda McCartney #FlashbackFriday https://t.co/NPtASvvkVk +03/08/2018,Musicians,@PaulMcCartney,"To all the women in my life. Happy International Women’s Day! You go, girls! #IWD2018 https://t.co/eLStqkbnpM" +03/07/2018,Musicians,@PaulMcCartney,“How many days will the wet weather last?” Download exclusive audio and other treats HERE! https://t.co/ZWME3UCzjq https://t.co/VDrYHD7zPN +03/05/2018,Musicians,@PaulMcCartney,#ICYMI Paul describes how he overcomes the effects of jet lag... https://t.co/2IULuw4eLx https://t.co/81o0SFX5HW +03/02/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagramuser https://t.co/XqWQ1q853V! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/YTX5K5JCsg +03/01/2018,Musicians,@PaulMcCartney,#ICYMI Catch up on all the latest from https://t.co/eEFPgd3GIu in February's newsletter: https://t.co/OXofXSJzK6 https://t.co/5bX0FVxOz0 +03/01/2018,Musicians,@PaulMcCartney,Paul in Nashville 😎 Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/Yys4PLO33T +02/28/2018,Musicians,@PaulMcCartney,"Paul answered, 'The Long and Winding Road.' What question do you think he was asked? Find out HERE:… https://t.co/fGclSvZHlP" +02/25/2018,Musicians,@PaulMcCartney,I just saw this great video that @WarChildUK have produced. They do such great work which is needed these days more… https://t.co/qXY74zsx1P +02/25/2018,Musicians,@PaulMcCartney,Happy Birthday Georgie. Wonderful memories. https://t.co/JklMJ79Zeo +02/23/2018,Musicians,@PaulMcCartney,RT @DarkSweetSadie: #drawing #fanartSaturday🌸 #PaulMcCartney #whatsnewpaul https://t.co/r7IbDxLjOL +02/22/2018,Musicians,@PaulMcCartney,Paul in Scotland. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/oc9tA52AEY +02/21/2018,Musicians,@PaulMcCartney,RT @MeatFreeMonday: #NowPlaying on #MeatFreeMusic: Let Me Spring Roll It – @PaulMcCartney 💚🎶🌿 https://t.co/PGcXBNzUwB +02/19/2018,Musicians,@PaulMcCartney,"“Someone's knocking at the door, somebody's ringing the bell. Do me a favour, open the door and let 'em in” Sign up… https://t.co/qdzIaSXrjL" +02/15/2018,Musicians,@PaulMcCartney,"Paul in London, 1969. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/UbUjrTROKp" +02/14/2018,Musicians,@PaulMcCartney,"“And she was right, this love of mine. My Valentine...” ❤️🌹 +Send Paul's song 'My Valentine' along with your own per… https://t.co/KmPeDwtK3t" +02/14/2018,Musicians,@PaulMcCartney,All the love in the world on Valentine's Day. Have a great one!🌹#14feb https://t.co/QCV0K7kvRx +02/13/2018,Musicians,@PaulMcCartney,Enjoy your pancakes! Happy Mardi Gras! 🙂 https://t.co/AAvshA3pra +02/12/2018,Musicians,@PaulMcCartney,If you had the chance to ask Paul one question - what would it be? 🤔 https://t.co/YszD6AuDlj +02/11/2018,Musicians,@PaulMcCartney,Explore a selection of Paul's lesser-known tracks in the online series 'Sticking Out Of My Back Pocket' 🧐 ...… https://t.co/V1C5zg6B6E +02/08/2018,Musicians,@PaulMcCartney,"In the bath. London, 1969. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/f3RfzZwdgX" +02/06/2018,Musicians,@PaulMcCartney,Congratulations to all of us on the 100th anniversary of the Suffragette movement. Amazing to think that #100years… https://t.co/GXx6qH05fE +02/04/2018,Musicians,@PaulMcCartney,"""We asked a group of 100 people: What is Paul’s favourite American TV show?"" Find out the answer in this month’s 'Y… https://t.co/ajvudpofAj" +02/03/2018,Musicians,@PaulMcCartney,"“A love so fine, My Valentine” ❤️🌹 https://t.co/zPTDdOfg9g https://t.co/i97sYqnMms" +02/02/2018,Musicians,@PaulMcCartney,#FanArtFriday by @Instagram user _charlizart! Submit your #fanart with the hashtag #whatsnewPaul on Twitter and Ins… https://t.co/5tEE7EOHRd +02/01/2018,Musicians,@PaulMcCartney,Paul at The 100 Club in 2010 #ThrowbackThursday #TBT #IVW18 https://t.co/9tnWs1WTrA +01/31/2018,Musicians,@PaulMcCartney,Hiya 2018 👋 Find out about Paul's favourite binge-worthy American TV shows and go behind-the-scenes of his… https://t.co/LFctaVEj9E +01/28/2018,Musicians,@PaulMcCartney,#ICYMI Read Paul's publicist Stuart Bell's touring diary 'For Whom The Bell Tells - Australia and New Zealand':… https://t.co/Mj8O2SoTTI +01/26/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagram user henrique_marinelli! Submit your #fanart with the hashtag #whatsnewPaul! https://t.co/stv2gacoSW +01/25/2018,Musicians,@PaulMcCartney,#ThrowbackThursday #TBT🕺 https://t.co/PjOrpcOHvi +01/24/2018,Musicians,@PaulMcCartney,A note from Paul about the work of @AustMarConsSoc and the fight for our reef... https://t.co/8IZs61ZnjS https://t.co/QveVrZVaHN +01/22/2018,Musicians,@PaulMcCartney,Paul's publicist Stuart Bell shares his wonderful experiences from Australia and New Zealand in the latest instalme… https://t.co/6CWLJTpf5b +01/18/2018,Musicians,@PaulMcCartney,"Paul. Venice, 1976. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/M9Wa6FxwHV" +01/17/2018,Musicians,@PaulMcCartney,#HumpDay remedy: https://t.co/VbzWuFWYZf https://t.co/OREaJueGiD +01/15/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: ""We love the way @ArchersMark has captured the excitement of Meat Free Monday as well as the variety of colours and fla…" +01/14/2018,Musicians,@PaulMcCartney,Don't miss the last few days of the winter sale... https://t.co/uMyqh10Qrq https://t.co/JLr7Bi0feC +01/13/2018,Musicians,@PaulMcCartney,Is your favourite song on the 'Best Of' Paul McCartney @Spotify playlist? Listen HERE: https://t.co/KBsVzoPjpf https://t.co/fuR6SA9HJZ +01/12/2018,Musicians,@PaulMcCartney,"#FanArtFriday by Instagram users rachxnaomi, u.ndreamlike, maryamtdraws and https://t.co/XqWQ1q853V! Submit your… https://t.co/Zg7zQh8ycN" +01/11/2018,Musicians,@PaulMcCartney,Paul during the orchestral sessions for the ‘Thrillington’ album in New York #ThrowbackThursday #TBT… https://t.co/YXlSrMDzb5 +01/10/2018,Musicians,@PaulMcCartney,What song would you most like to see Paul perform live? Listen to the Paul McCartney Live @Spotify playlist HERE:… https://t.co/neBmtuLOS7 +01/06/2018,Musicians,@PaulMcCartney,Check out the winter sale HERE: https://t.co/uMyqh10Qrq https://t.co/Wf6Evj0Nhk +01/05/2018,Musicians,@PaulMcCartney,Live and Let's Diet #MakeASongLessInteresting +01/04/2018,Musicians,@PaulMcCartney,"Paul outside Trident Studios, London, 1968. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/E0mnbMb40A" +01/03/2018,Musicians,@PaulMcCartney,"RT @UMG: Complete your @PaulMcCartney collection with the first 8 Paul McCartney Archive Collection titles, available on 180g black vinyl,…" +01/02/2018,Musicians,@PaulMcCartney,#ICYMI Read the December newsletter HERE: https://t.co/qmGKfwlEOE https://t.co/HUyp7UoUxe +01/01/2018,Musicians,@PaulMcCartney,"""Happy New Year! Should auld acquaintance be forgot... +I hope that everyone has a really brilliant New Year. And th… https://t.co/463bSJW3vp" +12/30/2017,Musicians,@PaulMcCartney,Huge congrats Sir Ringo! Sir Richard Starkey has a nice ring to it. Best drummer best pal! X Paul https://t.co/ew5PuxhEv1 +12/29/2017,Musicians,@PaulMcCartney,#ICYMI Download the Club Sandwich Quiz HERE! https://t.co/z1nXrO5KIw https://t.co/TA0tIFjGiL +12/26/2017,Musicians,@PaulMcCartney,There are 31 key moments from Paul's year hidden in our 2017 wordsearch. 🎄How many can you find? Download HERE:… https://t.co/pRPHZyzPRP +12/25/2017,Musicians,@PaulMcCartney,Happy Chrissie to y'all! I hope everyone has a really wonderful Christmas and has a great time with their loved one… https://t.co/OJSkqmQ3Yk +12/23/2017,Musicians,@PaulMcCartney,Paul tells us about his all-time best Christmas and shares his plans for 2018 in a special edition of 'You Gave Me… https://t.co/9R3GV325ik +12/22/2017,Musicians,@PaulMcCartney,"#FanArtFriday by Instagram users memeleine and halord_lalala, submit your #fanart with #whatsnewPaul! https://t.co/KwX7mB4dlm" +12/22/2017,Musicians,@PaulMcCartney,Find out which song I chose as my most precious childhood music memory for @HopeandHomes HERE:… https://t.co/b5hM3mf2kD +12/21/2017,Musicians,@PaulMcCartney,Can you spot the visual clues to 75 of Paul's song titles? #ThrowbackThursday #TBT https://t.co/z1nXrO5KIw https://t.co/yDCVlqyYPi +12/19/2017,Musicians,@PaulMcCartney,"One song, eight albums! Can you match the song to the album? Colour vinyl in stores now: https://t.co/2glcBidVDy https://t.co/DiysP8DV7z" +12/19/2017,Musicians,@PaulMcCartney,Get in the Christmas spirit with #HolidaysRule Vol. 2! 🎄Listen now: https://t.co/dWhOoNYTvQ https://t.co/95VTEq1JY0 +12/17/2017,Musicians,@PaulMcCartney,"""The party's on, the feeling's here"" 🎅🏼 https://t.co/6pV8QTjggt https://t.co/zKawDatnda" +12/14/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: 'Drive My Car'🚗 Please check your inbox to find out whether you've… https://t.co/Li7tzD0oSt +12/14/2017,Musicians,@PaulMcCartney,"Memories of Mexico! #ThrowbackThursday #TBT +Paul's publicist Stuart Bell shares some of Paul's fantastic experienc… https://t.co/LOWh3JWjIr" +12/14/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul #OneOnOne in Auckland 16th December by answering the following question: Paul ope… https://t.co/Ui0WixNWpD +12/14/2017,Musicians,@PaulMcCartney,Lovin NZ. Been a long time! x 🇳🇿 https://t.co/3K8j82ISeU +12/13/2017,Musicians,@PaulMcCartney,"'The party's on, the spirit's up...'🎄 Christmas merchandise available now: https://t.co/uMyqh10Qrq https://t.co/NT78gI6AfR" +12/13/2017,Musicians,@PaulMcCartney,Up on Sydney Harbour Bridge! Last day in Oz. Had a great time. Thanks! 🇦🇺 https://t.co/zZu6WvBuyk +12/12/2017,Musicians,@PaulMcCartney,Have the happiest of Hanukkahs! #HappyHanukkah https://t.co/tJbSXwKmw5 +12/11/2017,Musicians,@PaulMcCartney,Let us know if you're heading to see Paul's second show @qudosbankarena this evening and don't forget to use the… https://t.co/CQ89rgXoye +12/11/2017,Musicians,@PaulMcCartney,Rocking with Kyles in Syd 🇦🇺#oneonone https://t.co/5Vpd0ZnZC6 +12/11/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: The New World Tour. Please check your inbox to find out whether you… https://t.co/Xok28W280o +12/10/2017,Musicians,@PaulMcCartney,We’ve heard that the 1972 Wings tour bus is back on the road in the UK. Have info on this? Send us a DM! https://t.co/IZ7DUwZNiB +12/10/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul play #OneOnOne in Sydney 11th December by answering the following question: Paul… https://t.co/QgaLGyI4Jf +12/09/2017,Musicians,@PaulMcCartney,Take a look at my daughter Mary’s limited edition silk scarves and write Santa a note! https://t.co/av4wqX59nB https://t.co/56dV7xytlu +12/08/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: 1975! Please check your inbox to find out whether you've won a pair… https://t.co/ZZlpxsXtcb +12/07/2017,Musicians,@PaulMcCartney,Paul’s forthcoming #OneOnOne show in Brisbane will be his first solo performance in the city... #ThrowbackThursday… https://t.co/ifkhhL6OlL +12/07/2017,Musicians,@PaulMcCartney,Paul spoke with @zanrowe on Australia’s @triplej earlier this week: https://t.co/WkoDTGgbSp #OneOnOne https://t.co/3fujbQkVkL +12/07/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul play #OneOnOne in Brisbane 9th December by answering the following question: In w… https://t.co/Cd4wmzHiGH +12/06/2017,Musicians,@PaulMcCartney,RT @davidwalliams: Sir @PaulMcCartney paying tribute to @GeorgeHarrison by singing ‘Something’ https://t.co/MyapnsHXR0 +12/06/2017,Musicians,@PaulMcCartney,"RT @Melbourne: Two epic sell-out shows @aamipark, thank you Sir @PaulMcCartney. Love us #oneonone https://t.co/XIjaUimN79" +12/06/2017,Musicians,@PaulMcCartney,RT @frontiertouring: Just a few of you here at @AAMIPark tonight Melbourne! #OneOnOne @PaulMcCartney https://t.co/QhMHZDh31O +12/06/2017,Musicians,@PaulMcCartney,RT @AAMIPark: Seriously!!! @PAULMCCARTNEY is HERE!!!! 🙌 #AAMIPark #OneOnOne https://t.co/lqgr8zkXxy +12/05/2017,Musicians,@PaulMcCartney,Listen to Paul talk in-depth about five songs from his catalogue to @zanrowe on Australia’s @triplej Take 5 tomorro… https://t.co/FulutXp88b +12/04/2017,Musicians,@PaulMcCartney,Consider donating to @1010 and @NRDC at https://t.co/S8Nx2mb4h6 to help defend our planet from climate change and y… https://t.co/SjgbqTAjOl +12/04/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: Sidney Myer Music Bowl! Please check your inbox to find out whether… https://t.co/c72pPUeVTj +12/03/2017,Musicians,@PaulMcCartney,Win tickets to see Paul play in Melbourne on 5th December by answering the following question: Name the Melbourne v… https://t.co/D0s3YIMdgV +12/03/2017,Musicians,@PaulMcCartney,Warm up by the fire with the #HolidaysRule Vol. 2 Yule Log video for 'Wonderful Christmastime'🎄https://t.co/95VTEq1JY0 +12/02/2017,Musicians,@PaulMcCartney,Bagpipes of peace in Perth #oneonone 🇦🇺 https://t.co/XhxUKp2kbg +11/30/2017,Musicians,@PaulMcCartney,"McCartney Recording Session, 1970. Photo by LindaMcCartney #ThrowbackThursday #TBT https://t.co/O9gUb6Fq3e" +11/28/2017,Musicians,@PaulMcCartney,“Help me to learn / Songs of joy instead of / Burn baby burn / Won’t you show me how to play / The pipes of peace..… https://t.co/qXxiZE6yfR +11/27/2017,Musicians,@PaulMcCartney,Climate change is a real issue and no effort is too small when it comes to protecting and preserving our planet. A… https://t.co/7WNu3Clt8i +11/24/2017,Musicians,@PaulMcCartney,Getting really excited about returning to Australia and New Zealand. Can’t wait to rock out with our Aussie and Kiw… https://t.co/UXVAjAmxxU +11/23/2017,Musicians,@PaulMcCartney,Happy Thanksgiving! Thanks for the support. Paul x https://t.co/ekF8pVvtoN +11/21/2017,Musicians,@PaulMcCartney,"""Take it away / Want to hear you play / Till the lights go down / Take it away / Don't you want to stay / Till ther… https://t.co/Q13CO0yoS1" +11/21/2017,Musicians,@PaulMcCartney,Don’t forget to support your local record store this Saturday and be part of the #ShopSmall movement founded by our… https://t.co/cOJWqKOkRI +11/19/2017,Musicians,@PaulMcCartney,"""You want a love to last forever / One that will never fade away / I want to help you with your problem / Stick aro… https://t.co/o8FZjJcQwq" +11/17/2017,Musicians,@PaulMcCartney,The first eight Archive Collection titles are available in stores or online today in limited edition 180g coloured… https://t.co/m49fwdP0fP +11/16/2017,Musicians,@PaulMcCartney,“Some people want to fill the world with silly love songs / and what’s wrong with that? I’d like to know cos here I… https://t.co/vg6p30RXN8 +11/14/2017,Musicians,@PaulMcCartney,"""A good friend of mine / Follows the stars – Venus and Mars / are alright tonight..."" What’s your favourite song fr… https://t.co/KrqGdrLa9D" +11/13/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: Be inspired to protect the planet from climate change! Start today with just #OneDayAWeek #MeatFreeMonday https://t.co/… +11/12/2017,Musicians,@PaulMcCartney,"""Well, the rain exploded with a mighty crash, As we fell into the sun..."" What’s your favourite song from the 'Band… https://t.co/0PBYCpVU2e" +11/10/2017,Musicians,@PaulMcCartney,"""Ram on, give your heart to somebody soon..."" What’s your favourite song from the 'RAM' album? #FlashbackFriday Com… https://t.co/tZGGQjSXPU" +11/10/2017,Musicians,@PaulMcCartney,"#FanArtFriday by @Instagram users https://t.co/pMr11odDsT, marmalade_skies_art_, izzy.ferraro and aljeensane! Share… https://t.co/c3bkjrd4Ug" +11/09/2017,Musicians,@PaulMcCartney,"When you see it… #ThrowbackThursday #TBT +What’s your favourite song from the 'McCartney' album? Complete your coll… https://t.co/bDKHHle06m" +11/08/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: Watch our new short film featuring @PaulMcCartney @maryamccartney @stellamccartney #EmmaStone and @WoodyHarrelson and t… +11/07/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: #COP23 starts today! See why diet plays such a huge rule in #climatechange and watch our new documentary short HERE: ht… +11/06/2017,Musicians,@PaulMcCartney,Taken at the launch of @MeatFreeMonday's new documentary short #OneDayAWeek @lilycole @JoannaLumley Watch it HERE:… https://t.co/PQlPPWIesa +11/06/2017,Musicians,@PaulMcCartney,RT @GaryBarlow: An extremely important cause ! #MeatFreeMonday #OneDayAWeek https://t.co/u2pipO5R7D +11/06/2017,Musicians,@PaulMcCartney,RT @rickygervais: Watch #MeatFreeMonday’s short film narrated by @PaulMcCartney and go meat free #OneDayAWeek https://t.co/csfQgSpMqH +11/05/2017,Musicians,@PaulMcCartney,Happy Bonfire Night! 🔥 https://t.co/0CISQGgQs3 +11/05/2017,Musicians,@PaulMcCartney,Great fun rocking out last night with my friend @StevieVanZandt and his band at @RoundhouseLDN - Welcome to Britain guys 🇬🇧 +11/03/2017,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: Watch #MeatFreeMonday’s new documentary short #OneDayAWeek with the McCartney family, Woody Harrelson and Emma Stone ht…" +06/29/2018,Musicians,@ladygaga,RT @THWofD: Cynthia Germanotta (@momgerm) explains what she learned about #mentalhealth from @ladygaga and why the @BTWFoundation has teame… +06/24/2018,Musicians,@ladygaga,#Pride Dance for your life. #equality https://t.co/8WZIHGUuMf +06/24/2018,Musicians,@ladygaga,#HappyPrideMonth #pride #equality https://t.co/lq5kjeGQs2 +06/24/2018,Musicians,@ladygaga,I love the lgbtq 🏳️‍🌈 community more than I can say. So I’ll sing it instead. Forever. And that’s a NY promise. One… https://t.co/CaojJolSxD +06/24/2018,Musicians,@ladygaga,HAPPY PRIDE THIS IS SUCH A WONDERFUL TIME TO CELEBRATE https://t.co/ioplYXfFZO +06/24/2018,Musicians,@ladygaga,"Loved performing and watching @itstonybennett sing last night. He’s a dream. That’s showbiz, baby! https://t.co/8YmhwIr07d" +06/22/2018,Musicians,@ladygaga,Untitled Original 11383 John Coltrane WOW 🎷🎼 +06/21/2018,Musicians,@ladygaga,RT @Variety: Exclusive Interview: @ladygaga on MTV documentary win and reinventing herself through the pain https://t.co/87R9pZmfiq https:/… +06/19/2018,Musicians,@ladygaga,So happy that #GagaFiveFootTwo won Best Music Documentary at the #MTVAwards! Thank u Little Monsters & @MTV!! 😘 https://t.co/Hba41WNgzM +06/17/2018,Musicians,@ladygaga,"RT @AMENARTPOP: 7 years ago today, Lady Gaga performed on The Paul O'Grady Show in London, UK. https://t.co/JiL7Q54jdg" +06/11/2018,Musicians,@ladygaga,"RT @allyslays38: I'm beautiful in my way +'Cause God makes no mistakes +I'm on the right track, baby +I was born this way +Don't hide yourself…" +06/11/2018,Musicians,@ladygaga,"My mother and I, as well as the whole @BTWFoundation wish you a HAPPY PRIDE !!! 🎉🌈💕 https://t.co/mIz0qVbyje" +06/06/2018,Musicians,@ladygaga,"It’s a dream come true and an honor to be a part of this incredible movie. Bradley's ability as a director, actor a… https://t.co/cgL9ROMGFn" +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Lady Gaga. #AStarIsBorn https://t.co/pYtRPed2bv +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Bradley Cooper. #AStarIsBorn https://t.co/JMAhnjpxGL +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Bradley Cooper & Lady Gaga in #AStarIsBorn. In theaters October 5. https://t.co/03kSXHkoOF +06/05/2018,Musicians,@ladygaga,"RT @LadyGagaUpdates: Exactly 9 years ago today, Lady Gaga released the epic music video for ""Paparazzi"". It was directed by Jonas Åkerlund…" +06/02/2018,Musicians,@ladygaga,"RT @gagasyuyi: Lady Gaga 6 years ago: ""#HappyBirthdayMarilyn They'll never take our blonde hair and lipstick."" 💋 https://t.co/2QEDx7sRc3" +05/30/2018,Musicians,@ladygaga,"Nothing like New York, Baby https://t.co/4a60i6trQl" +05/27/2018,Musicians,@ladygaga,Happy Birthday to my manager and best friend @bobby_campbell love you to the moon and back. Thank you for taking su… https://t.co/uGkxFXztLD +05/23/2018,Musicians,@ladygaga,#HappyBirthdayBornThisWay https://t.co/Qp1jyqOazz +05/23/2018,Musicians,@ladygaga,I’m emotional. It’s been 7 yrs since the release of “Born This Way.” It’s a celebration of love & diversity that br… https://t.co/qJyLVBE7St +05/17/2018,Musicians,@ladygaga,That was the night @itstonybennett asked me to make a record with him. ❤️ Tony https://t.co/aXsgqdmbDf +05/16/2018,Musicians,@ladygaga,"#MentalHealthAwarenessMonth is an important time to learn how to be there for your friends, family and community me… https://t.co/AYSAR0Dx0E" +05/16/2018,Musicians,@ladygaga,"RT @GagaLoverNE: Lady Gaga’s documentary, Gaga: Five Foot Two is nominated for an MTV Movie and TV award in the ""Best Music documentary"" ca…" +05/15/2018,Musicians,@ladygaga,"This is the #MentalHealthMinute, an important message to support @heads_together & the UK’s… https://t.co/3YXG2EbIB9" +05/13/2018,Musicians,@ladygaga,Tiny Dancer flies to see the Rocket Man. 4 more show left baby. How wonderful life is while you’re in the world… https://t.co/2ZwPvYo6sq +05/10/2018,Musicians,@ladygaga,RT @weeklygaga: Have you voted today #LittleMonsters Remember you can vote daily for #ladygaga‘s “Gaga: Five Foot Two” for “Best Music Docu… +05/10/2018,Musicians,@ladygaga,Thank you so much for this award! We are so honored and grateful @bmi Thankful for Million Reasons that we have you… https://t.co/yTlhcQeVDm +05/07/2018,Musicians,@ladygaga,In honor of the Met Gala and its theme I’ll post the “Judas” video. Here we explored Christianity through fashion s… https://t.co/m4aMWRQLeW +05/07/2018,Musicians,@ladygaga,https://t.co/SLbwyiFdbr +05/07/2018,Musicians,@ladygaga,🙌 #ThisIsAmerica https://t.co/HGKTBa41OA +05/07/2018,Musicians,@ladygaga,"RT @LGMonsterFacts: 7 years ago today, after traveling around the world for 2 years and 203 performances, Lady Gaga played the last Monster…" +05/07/2018,Musicians,@ladygaga,Love. https://t.co/O31fOeiSNb +05/06/2018,Musicians,@ladygaga,💕💋 https://t.co/dQd7nldRZs +05/06/2018,Musicians,@ladygaga,RT @MTV: @ladygaga congrats!!! you've been nominated at the 2018 #mtvawards and can vote now at https://t.co/B6c16HKCG5 🌈 https://t.co/HQec… +05/03/2018,Musicians,@ladygaga,"RT @AMENARTPOP: Lady Gaga's documentary ""Gaga: Five Foot Two"" is nominated as Best Music Documentary at the 2018 MTV Movie & TV Awards! VOT…" +04/28/2018,Musicians,@ladygaga,"RT @gagasyuyi: • And after the show, some fans could meet and take pictures with Lady Gaga. 💕 https://t.co/evVqbCpVfB" +04/28/2018,Musicians,@ladygaga,It’s the 6 year anniversary of the Born This Way Ball. Such a special time and such a special show that I will neve… https://t.co/BuxO0Gfuzl +04/27/2018,Musicians,@ladygaga,Words from me that my mom spoke on my behalf receiving a Didi Hirsch Erasing the Stigma Leadership Award.… https://t.co/20b9en9Bbp +04/27/2018,Musicians,@ladygaga,So proud of my mom and The Born This Way Foundation. We can all learn more about suicide prevention and mental heal… https://t.co/ju8Wnw36F7 +04/26/2018,Musicians,@ladygaga,Making music n’ stuff. 💕 https://t.co/pfbzkWGDAG +04/25/2018,Musicians,@ladygaga,"RT @TheWebbyAwards: Congrats Monsters! ⚡️🙌🎉 @ladygaga won FOUR #Webbys! + +🏆 @LiveNationProds ➡️ https://t.co/Yq996ZchrJ + +🏆 @intel ➡️ https:/…" +04/22/2018,Musicians,@ladygaga,Do it https://t.co/hVUjE15KhO +04/19/2018,Musicians,@ladygaga,@boysnoize But then I resurrected it with a blow dryer it was a christening ☠️ +04/15/2018,Musicians,@ladygaga,"Love you #BeyHive @Beyonce Have fun celebrating all that love in the desert. When it’s dry and we are thirsty, musi… https://t.co/nDdDxt2HyL" +04/12/2018,Musicians,@ladygaga,So crazy!!! Happened in 2010! 💕🙏 https://t.co/2fGEHhPewF +04/11/2018,Musicians,@ladygaga,Don’t forget to watch!! I had so much fun performing for my pops! #EltonSalute #EltonREVAMP https://t.co/pR2kTySaop +04/11/2018,Musicians,@ladygaga,@tc_littles Fall down 9 times but I get up 10! @iamcardib SPEAK WOMAN.💕 https://t.co/KnqkjYGebb +04/11/2018,Musicians,@ladygaga,I LIVE @iamcardib 🙌❤️🔥 https://t.co/DFQXBO63tu +04/09/2018,Musicians,@ladygaga,This video is so cool!! Thank you for believing in me 💕 https://t.co/wumFjeA3GS +04/09/2018,Musicians,@ladygaga,I love you little monsters 4eva. The last decades been a blast I will never forget. I can’t wait for the next. If y… https://t.co/WGWVfDkKsq +04/08/2018,Musicians,@ladygaga,I can’t believe it’s been ten years since the release of Just Dance. It’s very emotional and I am so grateful to li… https://t.co/Bfehav2MC7 +04/06/2018,Musicians,@ladygaga,@iamcardib Love you girl. +04/01/2018,Musicians,@ladygaga,"HAPPY EASTER from me, my friends, family and especially Gustave! My swimming spotted Easter BunnyBatPig! 🐰🐣🌸 https://t.co/zUQmDv6wJ4" +04/01/2018,Musicians,@ladygaga,💕💕love you🧚‍♀️🧚‍♀️ https://t.co/Ls3FGzCpqm +03/29/2018,Musicians,@ladygaga,"HERE WE ARE!!! Here's my cover of one of the greatest songs of all time. Elton John and Bernie Taupin’s ""Your Song… https://t.co/U0B0ezTHhF" +03/28/2018,Musicians,@ladygaga,Thank you so much 🤗for all your beautiful birthday🎂messages. I love you so much. If you’re compelled to give me a g… https://t.co/SEvXlL5D1W +03/28/2018,Musicians,@ladygaga,Here’s me in 2007 right before I dyed my hair blonde and released Just Dance. It’s now 2018 and I’m so blessed to b… https://t.co/qkxtKsDUPL +03/26/2018,Musicians,@ladygaga,Happy Ten Year Twitter Anniversary! It’s been willlllld ride 🧚‍♀️ https://t.co/wljWKdXkwH +03/24/2018,Musicians,@ladygaga,"Today and every day, listen to young people. #MarchForOurLives #guncontrol. Follow @ChnlKindness for more reports f… https://t.co/ZIMvJ3PNM5" +03/24/2018,Musicians,@ladygaga,#March4OurLives we say #BeKind !! https://t.co/PUWghs405G +03/24/2018,Musicians,@ladygaga,DISARM HATE https://t.co/VNmeJunFy5 +03/24/2018,Musicians,@ladygaga,Proud to share these photos of the brave young people from #StreetCornerResources as they join with other youth lea… https://t.co/XyvwBKdVPQ +03/24/2018,Musicians,@ladygaga,"Our bus will be one of 17 buses, representing the lives lost in the Parkland shooting and those lost every day to g… https://t.co/JzVsTSAuo5" +03/24/2018,Musicians,@ladygaga,.@BTWFoundation & I believe in the power of young people to create a better future. We’re so proud to stand with… https://t.co/jtbOADrlRO +03/22/2018,Musicians,@ladygaga,💕🌈 https://t.co/r8e3jymlZC +03/19/2018,Musicians,@ladygaga,@Shout_LGaga Hang in there I love you +03/19/2018,Musicians,@ladygaga,"I miss you Sonja, everyday. #BreastCancerAwareness https://t.co/IDKndqIuhN" +03/19/2018,Musicians,@ladygaga,"RT @ladygagaIoo: Lady Gaga photographed in early 2008 by street photographer Geordie Wood. + +When he asked her name she said: ""I am Lady Ga…" +03/15/2018,Musicians,@ladygaga,❤️🤗 https://t.co/5zjaDBAbnN +03/14/2018,Musicians,@ladygaga,RT @BTWFoundation: Young people are powerful when they work together! So proud of the students nationwide today who peacefully came togethe… +03/11/2018,Musicians,@ladygaga,"RT @PopCrave: 8 years ago today, Lady Gaga & Beyoncé released the music video for their smash hit ""Telephone."" The video shook pop culture…" +03/10/2018,Musicians,@ladygaga,Happy Birthday to my precious angel of a sister. An artistic design genius and loyal caring woman. I feel exactly t… https://t.co/8N7Qcc2tS2 +03/10/2018,Musicians,@ladygaga,Thank you so much to all the little monsters who wrote these thoughtful lovely notes to me. I am deeply touched and… https://t.co/ncLSRFRJKJ +03/08/2018,Musicians,@ladygaga,Happy International Women’s Day to every single woman in the world. Cheers to your strength and bravery to thrive i… https://t.co/DUEih9Zg52 +03/05/2018,Musicians,@ladygaga,So wonderful to watch the joy of all these artists shine on that beautiful stage tonight. We are so lucky to have art in the world #Oscars +03/03/2018,Musicians,@ladygaga,🤷‍♀️🤦‍♀️ https://t.co/mEwf65rT83 +03/01/2018,Musicians,@ladygaga,@ladygaga_JWT Or what did I do to deserve to have all of you? 💕 Miss you all and that stage I call home. +03/01/2018,Musicians,@ladygaga,@maitemisonrisa I love you too 💕🐰 +03/01/2018,Musicians,@ladygaga,@moonrisejoanne I love you 😘 +03/01/2018,Musicians,@ladygaga,"I remember that day, it was so fun was with so much of my fashion family. https://t.co/bsqPJkTlp4" +02/26/2018,Musicians,@ladygaga,"RT @ladygaga_JWT: Lady Gaga on the cover of Billboard’s February 26, 2011 issue— 7 years ago today. Her single ‘Born This Way’ had just bec…" +02/22/2018,Musicians,@ladygaga,Thanks for remembering guys!! 💕 https://t.co/XErZpFvfSs +02/19/2018,Musicians,@ladygaga,Parkland Survivors and others that are standing up through the media are so brave and are true role models. I’m spe… https://t.co/MlZPTZB3is +02/19/2018,Musicians,@ladygaga,I miss u. #LittleMonsters https://t.co/lOTUiSQWdd +02/10/2018,Musicians,@ladygaga,RT @BTWFoundation: Friendly reminder to follow your dreams! Reply with your hopes + dreams for the week. 💭 https://t.co/lsAcvVBxFd +02/08/2018,Musicians,@ladygaga,RT @Ddleonardo: my little sister doing Lady Gaga's touch down in the super bowl @ladygaga #Halftime #SuperBowl https://t.co/VSPdAgp5ZV +02/07/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/NNkgmK9tBs +02/07/2018,Musicians,@ladygaga,It’s been just about 1 year since my Super Bowl Haltime show! Celebrate by watching here 🤗🐰💕https://t.co/mMGjxWT1rB +02/07/2018,Musicians,@ladygaga,While I’m resting I’ll be spending more time on our social media website/app for fans... get app for free here.… https://t.co/0YYCkj4Qlz +02/07/2018,Musicians,@ladygaga,A must watch....the littlest and sweetest #Joanne https://t.co/E7g7ptHPuS +02/05/2018,Musicians,@ladygaga,@antpats2videos @jaakemeIIor I am the luckiest girl in the world to have fans like you. +02/05/2018,Musicians,@ladygaga,https://t.co/iUe2fTmiUN +02/04/2018,Musicians,@ladygaga,Playing the Super Bowl last year was indescribable. It changed my life! So excited to see what Justin’s going to d… https://t.co/jF4PVm84zI +02/03/2018,Musicians,@ladygaga,https://t.co/w5mTZsSb0X +02/01/2018,Musicians,@ladygaga,Are you ready Birmingham? (watch the whole video) #JoanneWorldTourBirmingham https://t.co/ohmtFDdusA +02/01/2018,Musicians,@ladygaga,"RT @AppleMusic: She never disappoints. Listen to the 🎹 version of @ladygaga's #Joanne. +https://t.co/BbktTgmi15" +02/01/2018,Musicians,@ladygaga,"Thank you, Birmingham. This photo says it all. #JoanneWorldTour #JoanneWorldTourBirmingham https://t.co/JeaFwuV4EP" +01/31/2018,Musicians,@ladygaga,What an 👼 🐶. He just gave me a million reasons to love him!! https://t.co/XhK8WDEsaT +01/31/2018,Musicians,@ladygaga,We are filming the show tonight Birmingham so bring that little monster fire!!!!!! #JoanneWorldTour https://t.co/gb0YzSlOh6 +01/29/2018,Musicians,@ladygaga,Here’s the Piano Version of “Joanne” music video. I sang it in one take. In a way I think I sang it to myself. https://t.co/PqOp1SBQMp +01/29/2018,Musicians,@ladygaga,Thank you to the fans and #TheGrammys for such a special night. It was very emotional singing. Soul shaking and hum… https://t.co/pHy4N7Kb8l +01/28/2018,Musicians,@ladygaga,#GRAMMYS #FASHION Armani Privé @giorgioarmani I’m so excited to have been nominated twice tonight and to be a part… https://t.co/Uq6eQqI8M7 +01/28/2018,Musicians,@ladygaga,RT @enews: Where do you think you're going? Sit back down and watch @LadyGaga's Glambot at the #GRAMMYs. https://t.co/TVw9JPLvRb +01/28/2018,Musicians,@ladygaga,A message from me on the day of #TheGrammys with a picture of me and @MarkRonson writing #Joanne. I love you little… https://t.co/5ukO3yyJtV +01/28/2018,Musicians,@ladygaga,"Pre Grammy Night! Music music and more music. Rehearsal, food, friends, and FASHUN. #Grammys https://t.co/cgQo42o62E" +01/26/2018,Musicians,@ladygaga,"Buy or Stream The Song/Video of this new Piano Version of #Joanne. + +https://t.co/czJwynauHX" +01/25/2018,Musicians,@ladygaga,#Joanne https://t.co/rPvDUaAWEP +01/25/2018,Musicians,@ladygaga,"RT @ChnlKindness: Introducing our 2018 Class of #ChannelKindness Reporters! We can’t wait for you to read, watch, and listen to their amazi…" +01/24/2018,Musicians,@ladygaga,"Sneak Peek: +Joanne (Where Do You Think You’re Goin’?) Piano Version +#Joanne #music #video + +The +@LupusResearch All… https://t.co/EMqYv2QOel" +01/24/2018,Musicians,@ladygaga,I have a surprise. #Joanne +01/20/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/ppocaRFY3l +01/18/2018,Musicians,@ladygaga,CIAO ITALIA in custom @Versace love you Donatella. Tonight I met family I never met before because of this album “… https://t.co/wuUoSukZlV +01/18/2018,Musicians,@ladygaga,RT @BTWFoundation: BREAKING NEWS: We’re donating everything we raise through January 19th (that’s tomorrow!) to our #ChannelKindness tour p… +01/17/2018,Musicians,@ladygaga,Ciao Milano!!! We are here!! #JoanneWorldTour https://t.co/vAC29TLqBV +01/17/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/xhtdFbJCvc +01/17/2018,Musicians,@ladygaga,"Adios Barcelona, Ciao Milano #JoanneWorldTour https://t.co/39rR3F6eVR" +01/16/2018,Musicians,@ladygaga,#JoanneWorldTourBarcelona https://t.co/OxNlmzYwGq +01/16/2018,Musicians,@ladygaga,I ‘ve decided to play the documentary made about me every night before the show. If you get there early it will be… https://t.co/APmOKJdvLl +01/15/2018,Musicians,@ladygaga,SOLD OUT!! And another one day after tomorrow ❤️ TE AMO BARCELONA https://t.co/2uPgj72e3Z +01/13/2018,Musicians,@ladygaga,#JoanneWorldTourBarcelona where’s the 🔥 at? @Versace https://t.co/16b0KawgYf +01/10/2018,Musicians,@ladygaga,RT @LGMonsterFacts: It’s been 2 years since legendary musician and artistic pioneer David Bowie passed away. His legacy will live on foreve… +01/08/2018,Musicians,@ladygaga,Oprah for president? She’s got my vote. +01/03/2018,Musicians,@ladygaga,"Happy New Year. To happiness. Health. Love. And to the simplicity of beautiful unforgettable nature, life. https://t.co/dpdN1eXeeS" +12/23/2017,Musicians,@ladygaga,Wishing you the happiest possible of holidays and remembering we’re all in this as one family: Humanity. #BeKind th… https://t.co/MdOT2IoOzn +12/19/2017,Musicians,@ladygaga,The rumors are true! I will have my own residency at MGM’s Park Theater. Get ready for a brand new show!! It’s been… https://t.co/qA0KBKaEvQ +12/19/2017,Musicians,@ladygaga,"Today is the anniversary of my father’s sister Joanne’s passing. 12-18-1974 +It also happens to be our last… https://t.co/0PEhP05OkF" +12/18/2017,Musicians,@ladygaga,RT @runs_w_woIves: Reveal https://t.co/ElbgNeG1H7 +12/18/2017,Musicians,@ladygaga,It’s holiday time baby! Wishing you all a beautiful time filled with smiles and wishes coming true in many forms! 💋… https://t.co/HhnhyE4VPt +12/15/2017,Musicians,@ladygaga,"When my mind begins to wander I spend it being creative with my friends. Much better place to put your dreams, in t… https://t.co/J5jPoVXKbT" +12/13/2017,Musicians,@ladygaga,Another killer sold-out show at #JoanneWorldTourDenver next stop 🛑 Salt Lake City! 😎 https://t.co/kgGSH0LsNF +12/12/2017,Musicians,@ladygaga,"I’ve seen a lot of rumors on the internet that for “A Star Is Born” I’ll be billed as Stefani, but that’s not the c… https://t.co/s4QUAx8lEB" +12/12/2017,Musicians,@ladygaga,My new babies ❤️🐴👼 https://t.co/s4ejQD6V4l +12/11/2017,Musicians,@ladygaga,Happy Holidays from the Germanotta sisters and the #HausOfGaga. Mrs. Claus and Mistress Claus. Can’t we all just ge… https://t.co/hOI8B3gs7u +12/10/2017,Musicians,@ladygaga,We made it from #Dallas to #JoanneWorldTourOklahomaCity can’t wait to get out there and have some real fun with you… https://t.co/LrXzggTOnf +12/09/2017,Musicians,@ladygaga,What a night Dallas! @Verizon Up members get your stage side tickets for Oklahoma City tomorrow! Come sing with me… https://t.co/zjLzGAZ2U2 +12/09/2017,Musicians,@ladygaga,Backstage at #JoanneWorldTourDallas getting ready for the show in Gianni @Versace circa 1990. I LOVE VINTAGE AND I… https://t.co/G6HtMqZHI6 +12/09/2017,Musicians,@ladygaga,ME<————who has the coolest bestest most monstrous fans in the whole world? #pawsup #LittleMonsters 🐾Up!… https://t.co/nhzhbWFb9h +12/08/2017,Musicians,@ladygaga,https://t.co/QRWTyeAbVm +12/08/2017,Musicians,@ladygaga,RT @BTWFoundation: We're partnering with @MHFirstAidUSA to provide a FREE #mentalhealth workshop in Denver next week. Register today! https… +12/06/2017,Musicians,@ladygaga,Saying a prayer and sending loving thoughts to those suffering in California due to these horrible fires. No one de… https://t.co/SqA7YgIx3Z +12/06/2017,Musicians,@ladygaga,This is where our party’s at tonight! ❤️ https://t.co/P7FQgCVDcK +12/04/2017,Musicians,@ladygaga,RT @BTWFoundation: Thank you so much to our amazing partners @Minted and everyone who’s helped us write thank you notes to first responders… +12/04/2017,Musicians,@ladygaga,Memories ❤️😭 https://t.co/VRrEmnasn3 +12/04/2017,Musicians,@ladygaga,"RT @BTWFoundation: Recovering - physically, mentally, emotionally- from natural disasters takes time + the work isn’t over yet. Thanks @Tea…" +12/04/2017,Musicians,@ladygaga,Before the #JoanneWorldTourHouston tonight me and @btwfoundation teamed up with @teamrubicon to do some demolition… https://t.co/mu9IJ6xZG6 +12/03/2017,Musicians,@ladygaga,"Sexy Sunday! + #HAUS #HausEditorial +Photographer @hannah_khymych +Hair @fredericaspiras +Makeup @sarahtannomakeup +S… https://t.co/HFJzn7gpss" +12/03/2017,Musicians,@ladygaga,#NewProfilePic https://t.co/E6vWZXJ4m2 +12/01/2017,Musicians,@ladygaga,#BlackLivesMatter  Section 112 in the concourse at the Amalie Arena has https://t.co/18dEhUwPBB tonight at my show.… https://t.co/AkrEzKQ9zN +12/01/2017,Musicians,@ladygaga,1 in 4 Black Residents are ineligible to vote in Florida: here’s your chance to give 1.6 million people the ability… https://t.co/sQneMWxrjF +12/01/2017,Musicians,@ladygaga,#JoanneWorldTourTampa here we come! 🌞 https://t.co/X0Qd1LchFE +11/30/2017,Musicians,@ladygaga,blond silver and gold curls with dark blond root. Feline flicker eyeliner with rose gold metallic mouth. #beauty… https://t.co/m8vcFQL0BT +11/30/2017,Musicians,@ladygaga,Favorite Mascara love to layer and layer it. @MarcBeauty Velvet Noir https://t.co/r60G8JJijq +11/30/2017,Musicians,@ladygaga,#JoanneWorldTourMiami https://t.co/FpV0jFZs88 +11/29/2017,Musicians,@ladygaga,RT @momgerm: Check out our curated store https://t.co/2mVCZ2kiA3 on our amazing partner @Minted website. They are doing amazing work and y… +11/29/2017,Musicians,@ladygaga,"So glad to be back on the #JOANNEworldtour tonight after Thanksgiving, thank u Atlanta 💖 If u couldn't get tickets… https://t.co/GChuS805AE" +11/29/2017,Musicians,@ladygaga,RT @BTWFoundation: We had the best time teaming up today with @PayAwayLayaway to surprise local families! YOU can help us spread kindness e… +11/28/2017,Musicians,@ladygaga,And a MASSIVE Congratulations to all @theGRAMMYs nominees!!!! What a night we will have to celebrate music. Cheers… https://t.co/mgleSDYGo8 +11/28/2017,Musicians,@ladygaga,I never knew her and she never knew me. But my knowledge of her strength in my ancestry through her struggle with… https://t.co/ZrZ64DGGgt +11/28/2017,Musicians,@ladygaga,RT @BTWFoundation: Today's the day! Will you be a part of our movement to build a kinder world this #GivingTuesday? https://t.co/topUJQbE7H… +11/28/2017,Musicians,@ladygaga,"Thank u @Starbucks & @Spotify for celebrating artists who #GiveGood with a donation to @BTWFoundation, and to great… https://t.co/E6JH9hdGnD" +11/28/2017,Musicians,@ladygaga,I’m humbled & grateful that my album “Joanne” was nominated & also my song “Million Reasons.” Thank u so much Monst… https://t.co/VN8EX19u1A +11/27/2017,Musicians,@ladygaga,"This Thanksgiving I thought a lot about all the blessings I have: my fanily, my friends and extended family, and al… https://t.co/fpeb9Gkd5w" +11/25/2017,Musicians,@ladygaga,RT @KensingtonRoyal: You can watch the #StopSpeakSupport campaign animation here → https://t.co/5A35bfGWfM +11/22/2017,Musicians,@ladygaga,"Watch “The Cure” HERE: +https://t.co/e10ddYfSDP" +11/21/2017,Musicians,@ladygaga,#NewProfilePic https://t.co/AV9xBe3dME +11/20/2017,Musicians,@ladygaga,RT @BTWFoundation: We're partnering with @Minted to #ChannelKindness this holiday season! Check out the beautiful cards we’re using to than… +11/20/2017,Musicians,@ladygaga,Behind the Scenes Last night getting ready for the #AmericanMusicAwards2017 show with Hair @faspiras Makeup… https://t.co/m7ZyViw1dC +11/20/2017,Musicians,@ladygaga,We had a killer time performing and I’m so honored that we won Favorite Pop/Rock female I was so surprised I “ugly… https://t.co/w6E3xw6Enl +11/20/2017,Musicians,@ladygaga,Last night was one of the best nights of my life! We loved performing “The Cure” I was honored to win… https://t.co/DG6OiYpk50 +11/20/2017,Musicians,@ladygaga,#AMAs #AMAsRedCarpet Me in #Alaïa and ready to perform!! https://t.co/xekuFGSYbD +11/19/2017,Musicians,@ladygaga,When the #AMAs brings the red carpet to you! #AMAsRedCarpet #AMAsxGAGA wearing the one and only #Alaïa https://t.co/qFroGBt4Fx +11/19/2017,Musicians,@ladygaga,Behind the scenes of #AMAs getting for my performance in #Alaïa https://t.co/C9Q5mpX6Bu +11/19/2017,Musicians,@ladygaga,"I’M SOOOO EXCITED TO PERFORM FOR YOU TONIGHT!!! #AMAs +If I Can’t Find #TheCure , I’ll Fix You With My L💓ve !!! https://t.co/ilWXhLH0Xe" +11/19/2017,Musicians,@ladygaga,"RT @LadyGagaPopNet: Exactly 8 years ago today, Lady Gaga released her Grammy winning EP “The Fame Monster”. An iconic album that defined, i…" +11/19/2017,Musicians,@ladygaga,These were my last moments w/ Azzedine Alaïa. He was just behind the door to my right as I sat on his stoop & sang… https://t.co/aeNSVUFvGN +11/18/2017,Musicians,@ladygaga,❤️ #AMAs https://t.co/WRZkDAYY6c +11/18/2017,Musicians,@ladygaga,https://t.co/DG4S1DjWuV +11/18/2017,Musicians,@ladygaga,My mom is the best. @BTWFoundation #BeKind Spread #Kindness & #Bravery https://t.co/qOPokXfr4I +11/18/2017,Musicians,@ladygaga,RT @ELLEmagazine: Gaga explains that her love for helping others and activism goes far beyond a pop star. https://t.co/oJVwGKlvjI +11/17/2017,Musicians,@ladygaga,"RT @BTWFoundation: Team @BTWFoundation is in DC this morning, talking the #BusinessOfKindness with @USCCFBiz4Good + @DeloitteUS. Tune in to…" +11/17/2017,Musicians,@ladygaga,#JoanneWorldTourStLouis ARE U READY?!!! I’m warming up ❤️#JOANNEWorldTour Let me see your costumes!!! https://t.co/p4T7rico4W +11/16/2017,Musicians,@ladygaga,Can’t wait! 💋 https://t.co/75stNXujcD +11/16/2017,Musicians,@ladygaga,#HAUS #HausEditorial Hair @faspiras Makeup @SarahTanno and me in Couture @JPGaultier Styled by @TomEerebout and San… https://t.co/QKMr6pgPn5 +11/16/2017,Musicians,@ladygaga,Happy Anniversary to my self-directed video. Triangle bangs in muscle cars 🤘fighting for my dream from the street t… https://t.co/Wld7NHC17o +11/16/2017,Musicians,@ladygaga,"Tonight was so killer +#JoaneWorldTourKansasCity #JoanneWorldTour https://t.co/GsFAKHfzJf" +11/16/2017,Musicians,@ladygaga,"@gagadaily More sweat, more focus, more drive and practice to spread a message of love. That’s what little monsters… https://t.co/sNZyEo9WRs" +11/15/2017,Musicians,@ladygaga,NOW THATS WHAT IM TALKIN’ ABOUT! #MarriageEquality https://t.co/AIVdbq7EEG +11/14/2017,Musicians,@ladygaga,#HappyTuesday wishing you a sunny day from the inside out. 🖤🤘 https://t.co/LUjVuC2e9b +11/14/2017,Musicians,@ladygaga,RT @AMAs: .@LadyGaga is bringing 'The Cure' from the #JoanneWorldTour to the #AMAs! 💥 She's performing this Sunday at 8/7c on ABC. #GAGAxAM… +11/13/2017,Musicians,@ladygaga,Happy #worldkindessday #WorldKindnessDay THIS IS THE BEST DAY EVER❤️ my wish is for you all to know how happy it ma… https://t.co/cVhU3A7WOA +11/13/2017,Musicians,@ladygaga,"RT @BTWFoundation: The students of @WMSFA, @LPASlou + everyone else @JCPSKY deserve ALL the applause for collecting more than +2K toiletrie…" +11/12/2017,Musicians,@ladygaga,On the road to Kentucky. Gas stop. Why do we look like 3 teenagers waiting for an adult to buy us 40s.… https://t.co/ohagYJIRJA +11/12/2017,Musicians,@ladygaga,Happy 4 yr Anniversary #ARTPOP Thank u for allowing me to release my rage & passion & fear into this music. “I️ try… https://t.co/7hpUYpxqTt +11/11/2017,Musicians,@ladygaga,Last show for #JoanneWorldTourConnecticut SOLD OUT LOVIN PERFORMIN 4 U! ❤️❤️lets see ur outfits!! #JoanneWorldTour… https://t.co/HSYVZEUkP3 +11/11/2017,Musicians,@ladygaga,You certainly did make me cry. https://t.co/mkwZIe5VQx +11/09/2017,Musicians,@ladygaga,"The show is tonight!! Get your #JoanneVibes ready for the +#JoanneWorldTourConnecticut #JoanneWorldTour @SarahTanno… https://t.co/HNQl0PJgkJ" +02/28/2018,Musicians,@bobdylan,"Check out @TheAvenerMusic’s rework of Masters of War, out this Friday. https://t.co/wtrTPUMX7B" +02/07/2018,Musicians,@bobdylan,"It’s Bob Dylan like you’ve never seen him. +'Trouble No More' premieres Monday, February 26 at 10PM on #Cinemax. https://t.co/0KL6D5uEXm" +02/05/2018,Musicians,@bobdylan,"Check out Bob Dylan’s performance of “It Takes a Lot to Laugh, It Takes a Train to Cry” with the @wyntonmarsalis Se… https://t.co/IQAIR3mIin" +11/10/2017,Musicians,@bobdylan,There’s a slow train comin’. ‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’ is available now. https://t.co/nvodovsQW5 +11/06/2017,Musicians,@bobdylan,Discover rare memorabilia from the period covered in ‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’:… https://t.co/MZMRolFvNm +11/03/2017,Musicians,@bobdylan,‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’ is available today: https://t.co/n9phC2eJKF https://t.co/rtMMP4HvM6 +11/02/2017,Musicians,@bobdylan,"Trouble No More concert film screenings in five cities tonight! +https://t.co/816GQGl4WI…" +11/02/2017,Musicians,@bobdylan,"Esquire’s Jeff Slate: When Bob Dylan Saw God +https://t.co/a6JoUOWv5m" +11/02/2017,Musicians,@bobdylan,https://t.co/a16TZ5C0yN +11/01/2017,Musicians,@bobdylan,A clip featuring a performance of “What Can I Do For You?” can be viewed exclusively at The @nytimes: https://t.co/Jl1eRLyR1F +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +San Francisco: https://t.co/NVH0vEa0gP" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Philadelphia: https://t.co/xobPCjaKNi" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Chicago: https://t.co/QYqL7FzSGf" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +New York: https://t.co/c60bYiTtOd" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Boston: https://t.co/ODEgrqK908" +10/29/2017,Musicians,@bobdylan,"Recorded live in London in 1981, this version features a faster tempo and two guitar solos. #SlowTrainSundays https://t.co/21PUpmaptx" +10/26/2017,Musicians,@bobdylan,Head to @NPR for an exclusive first listen to tracks from ‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’:https://t.co/iK1bgJk3zQ +10/26/2017,Musicians,@bobdylan,"“The Groom’s Still Waiting At the Altar” was originally a B-side to the single “Heart of Mine,” but was later added… https://t.co/9Mqsc8fOkb" +10/24/2017,Musicians,@bobdylan,https://t.co/0dYqI0jynH +10/22/2017,Musicians,@bobdylan,“It’s been coming a long time and it’s picking up speed...” #SlowTrainSundays https://t.co/Icrq9rJ3xP +10/19/2017,Musicians,@bobdylan,"If you bought the “Gotta Serve Somebody” single in Holland, your record would have come in this picture sleeve. https://t.co/OQ1d0DrvY1" +10/18/2017,Musicians,@bobdylan,“One of the finest songs to come out of that period.” https://t.co/sP9JvjkZGk +10/15/2017,Musicians,@bobdylan,This unique rehearsal version of “Slow Train” offers a fascinating listen of what could have been. #SlowTrainSundays https://t.co/IIquBO0NMq +10/12/2017,Musicians,@bobdylan,Hear never-before-heard performances on ‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’:… https://t.co/vk7LV4Ud2g +10/11/2017,Musicians,@bobdylan,“…A Lost Gospel Masterpiece…” https://t.co/ji5ELEXc0a +10/08/2017,Musicians,@bobdylan,"All through October, enjoy a series of “Slow Train Sundays,” featuring unreleased versions of “Slow Train.” https://t.co/YnGm3HppNz" +10/06/2017,Musicians,@bobdylan,‘Trouble No More: A Musical Film’ made its premiere this week at @TheNYFF. https://t.co/fvndsvF6da +10/05/2017,Musicians,@bobdylan,Here are the original LP and cassette art proofs for ‘Shot of Love.’ https://t.co/5dnfc0388n +10/05/2017,Musicians,@bobdylan,"This British ad for ‘Saved’ features the original cover, which was later changed to a painting of Dylan from the al… https://t.co/QJZeipeocZ" +09/26/2017,Musicians,@bobdylan,Bob Dylan’s singles have been heard all over the world. Here’s a Spanish release of the single “Heart of Mine” off… https://t.co/uqhd1qYtK6 +09/20/2017,Musicians,@bobdylan,‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’ showcases one of the richest periods of Bob Dylan’s care… https://t.co/jpD6XyYoJU +09/11/2017,Musicians,@bobdylan,"Bob Dylan and his Band will tour the U.S. this Fall. + +Tickets on sale this week, Amex pre-sale on Wednesday.… https://t.co/I18d84Uhc3" +09/05/2017,Musicians,@bobdylan,"Joan Osborne’s excellent new album Songs of Bob Dylan is out now! Check it out! +https://t.co/JPq5F2Oyty https://t.co/wbTePBOem1" +08/21/2017,Musicians,@bobdylan,"Bob Dylan remembers rockabilly legend Roland Janes +https://t.co/hCpZk12rkk" +08/06/2017,Musicians,@bobdylan,"Girl From the North Country, one of the standout hits of the season on London’s West End. +https://t.co/hFQc8XwVrk… https://t.co/OvZeAwbvfS" +06/12/2017,Musicians,@bobdylan,"Girl From The North Country +The Old Vic, London +8 July to 7 October +https://t.co/jOmsixrfls https://t.co/YfcULMvvYy" +04/25/2017,Musicians,@bobdylan,"Bob Dylan’s new exhibition, The Beaten Path: The Silkscreen Collection, now open at @HalcyonGallery #DylanAtHalcyon… https://t.co/L8spK5wYUe" +04/07/2017,Musicians,@bobdylan,"Bob Dylan was presented with the Nobel Prize in Literature in Stockholm: + +https://t.co/Forbi304CO" +04/05/2017,Musicians,@bobdylan,Bob Dylan’s Triplicate is today’s album of the day on BBC 6 Music. Tune in throughout the day to hear tracks.… https://t.co/L3Rxirmh93 +04/02/2017,Musicians,@bobdylan,"Bob Dylan's new album Triplicate is available now. Get 30 brand new recordings of classic American songs on iTunes. +https://t.co/YWsYsRIKo3" +03/31/2017,Musicians,@bobdylan,RT @RollingStone: Bob Dylan's 'Triplicate' is majestic in its own right. Our review https://t.co/xj9XhooDaK https://t.co/jdp5v1urnu +03/31/2017,Musicians,@bobdylan,A limited number of Triplicate Deluxe Ltd Edition LPs in a numbered case are available now on the Bob Dylan Store:… https://t.co/5jwSAX6TN5 +03/31/2017,Musicians,@bobdylan,Bob Dylan's new 3-disc album 'Triplicate' is available now on @AmazonMusic. https://t.co/h9xbDF4t7p +03/31/2017,Musicians,@bobdylan,"Bob Dylan's new album 'Triplicate,' which features 30 recordings of classic American songs, is available now:… https://t.co/vyTcfTnzDy" +03/29/2017,Musicians,@bobdylan,"RT @nprmusic: #FirstListen: Stream selections from @bobdylan's new three-disc set, 'Triplicate,' before it's out. https://t.co/bJqggMOCpc h…" +03/24/2017,Musicians,@bobdylan,10 tracks from 'Triplicate' are now available to stream at @nprmusic. https://t.co/y2Lm30QWUu +03/23/2017,Musicians,@bobdylan,"RT @nprmusic: #FirstListen: Stream selections from @bobdylan's new three-disc set, 'Triplicate,' before it's out. https://t.co/bJqggMOCpc h…" +03/23/2017,Musicians,@bobdylan,"Exclusive to bobdylan .com, a new interview with Bob Dylan: + +https://t.co/HxlrZhCN5B" +03/10/2017,Musicians,@bobdylan,"Listen to ""Stardust"" off Bob Dylan's upcoming 3-disc album 'Triplicate' now on @AppleMusic. https://t.co/Q6RCb3hzcQ" +03/10/2017,Musicians,@bobdylan,"Pre-order the 3-disc album now to get ""Stardust"" and two more tracks instantly: https://t.co/VeBSNghcAI https://t.co/pZPGO83DYR" +03/10/2017,Musicians,@bobdylan,"""Stardust"" off Bob Dylan's upcoming three-disc album 'Triplicate' is available today. https://t.co/paFsPPbZUS" +03/06/2017,Musicians,@bobdylan,The Triplicate deluxe limited 180 gram vinyl comes in a numbered case-made book. Pre-order now:… https://t.co/9P5z6lJPKs +02/17/2017,Musicians,@bobdylan,"Pre-order #Triplicate on @AppleMusic to get ""My One and Only Love"" and ""I Could Have Told You"" instantly. https://t.co/XiuvpogUKj" +02/17/2017,Musicians,@bobdylan,'Triplicate' will be released on March 31. Pre-order now and get two tracks instantly. https://t.co/VeBSNghcAI +02/17/2017,Musicians,@bobdylan,"""My One and Only Love"" off Bob Dylan's upcoming 3-disc album 'Triplicate' is available now. https://t.co/Y9lLTisxIr" +02/08/2017,Musicians,@bobdylan,"Bob Dylan and his Band will perform at the London Palladium on April 28, 29 and 30. Tickets on sale Friday at 10AM:… https://t.co/TgXyC4C9wT" +02/07/2017,Musicians,@bobdylan,"RT @BNBuzz: RT by 12PMET Weds 2/8/17 for chance to win signed vinyl of @bobdylan's ""Fallen Angels""! #Sweeps Rules https://t.co/zzfq487lAL…" +01/31/2017,Musicians,@bobdylan,'Triplicate' is available to pre-order on CD and vinyl now in the https://t.co/2JlPRaopp9 store:… https://t.co/lqWOdgkoun +01/31/2017,Musicians,@bobdylan,"Pre-order 'Triplicate' now on @amazonmusic: https://t.co/h9xbDF4t7p + +3-LP Deluxe Vinyl Limited Edition:… https://t.co/CqK812Bw82" +01/31/2017,Musicians,@bobdylan,"'Triplicate' features 30 brand new recordings of classic American songs including ""I Could Have Told You"" https://t.co/UvcvdOhuFR" +01/31/2017,Musicians,@bobdylan,Bob Dylan’s first three-disc album — 'Triplicate' — set for March 31 release. Learn more: https://t.co/5u6QWz5sGl https://t.co/6KWOWgRbv0 +01/27/2017,Musicians,@bobdylan,Bob Dylan and his Band at Firefly Festival in June. Tickets on sale today! @LifeAtFirefly +12/13/2016,Musicians,@bobdylan,"Nobel Presentation Speech by Professor Horace Engdahl, 10 Dec 2016: +https://t.co/02uDEc6dKg" +12/08/2016,Musicians,@bobdylan,"Bob Dylan and his Band will tour the UK next May. Tickets to go on sale 13 December! + +Info here! +https://t.co/oNa4cWaknX" +11/30/2016,Musicians,@bobdylan,"Bob Dylan's ""Chronicles: Volume One"" on sale today only for $2.99 at the Kindle Store +https://t.co/mInAQXtlcK" +11/07/2016,Musicians,@bobdylan,"No Direction Home: Bob Dylan, the Deluxe 10th Anniversary Edition, available now for the first time on @iTunesMovies +https://t.co/Bl6ja3QCrg" +10/14/2016,Musicians,@bobdylan,"RT @POTUS: Congratulations to one of my favorite poets, Bob Dylan, on a well-deserved Nobel. https://t.co/c9cnANWPCS" +10/13/2016,Musicians,@bobdylan,Bob Dylan was awarded the 2016 #NobelPrizeLiterature “for having created new poetic expressions within the great American song tradition.” +10/04/2016,Musicians,@bobdylan,"No Direction Home: Bob Dylan, the Deluxe 10th Anniversary Edition to be released on October 28th. More info: https://t.co/g5f0GbZwwf" +09/28/2016,Musicians,@bobdylan,"The 1966 Live Recordings: +36 CD set to be released on Nov. 11. +Pre-order: https://t.co/IRaMpRLnbm" +08/15/2016,Musicians,@bobdylan,Bob Dylan's Fallen Angels blue vinyl is available now exclusively at @BNBuzz. #BNVinylDay https://t.co/zhkTZiwjni https://t.co/VYHagnWjNS +06/04/2016,Musicians,@bobdylan,"On Muhammad Ali: [2/2] + +“.. then he truly was the greatest. In every way he was the bravest, the kindest and the most excellent of men.”" +06/04/2016,Musicians,@bobdylan,"On Muhammad Ali: [1/2) + +“If the measure of greatness is to gladden the heart of every human being on the face of the earth…" +06/01/2016,Musicians,@bobdylan,.@courtneymelba shares her 5 essential Bob Dylan songs with @WFUV https://t.co/lnJ5lDbSSi +05/24/2016,Musicians,@bobdylan,"RT @AppleMusic: The story continues... +@bobdylan's 37th studio album #FallenAngels, now on #AppleMusic: +https://t.co/DfQiLpafjS https://t.c…" +05/22/2016,Musicians,@bobdylan,Exclusive “Fallen Angels” lithographs and bundles are now available here: https://t.co/29Azq2EGMz https://t.co/ou6KD02l6m +05/21/2016,Musicians,@bobdylan,Get the limited blue vinyl edition of “Fallen Angels” exclusively at @BNBuzz https://t.co/zhkTZiNUeQ +05/20/2016,Musicians,@bobdylan,“Young at Heart” from the new album Fallen Angels is featured on @AppleMusic’s Best of the Week Playlist https://t.co/xSJOcw51fF +05/20/2016,Musicians,@bobdylan,“Fallen Angels” is available now on @AppleMusic! https://t.co/3psdNaDGIe +05/20/2016,Musicians,@bobdylan,Get the new album “Fallen Angels” now on @amazonmusic https://t.co/AGz62mXyfc +05/18/2016,Musicians,@bobdylan,RT @ColumbiaRecords: Only two more days until the release of @bobdylan's album #FallenAngels! Pre-order here: https://t.co/ekIKd4xK0d https… +05/12/2016,Musicians,@bobdylan,"RT @nprmusic: First Listen: Bob Dylan, 'Fallen Angels' @bobdylan https://t.co/wCQ5JSa1Zf https://t.co/AMrWXAT2y3" +05/08/2016,Musicians,@bobdylan,#DesertTrip passes on sale tomorrow at 10am PT. https://t.co/4kV4HM3TJy https://t.co/zCi5dFlrgs +05/07/2016,Musicians,@bobdylan,#DesertTrip passes on sale Monday at 10am PT at https://t.co/4kV4HM3TJy https://t.co/KjA1hrFaVl +05/07/2016,Musicians,@bobdylan,"#DesertTrip passes on sale Monday at 10am PT at https://t.co/4kV4HLMikY +https://t.co/bfZAHShU20" +05/03/2016,Musicians,@bobdylan,"Passes on sale Monday, May 9, 10 am PT! https://t.co/EIqAH9Icjp" +04/30/2016,Musicians,@bobdylan,"RT @AppleMusic: Reimagining a Sinatra favorite, @bobdylan shares #AllTheWay. +#FallenAngels coming soon! +https://t.co/jszQlkCyJt https://t.c…" +04/30/2016,Musicians,@bobdylan,“All The Way” is featured on @AppleMusic’s Best of the Week Playlist! Listen here: https://t.co/xSJOcw51fF +04/29/2016,Musicians,@bobdylan,“All The Way” from Bob Dylan’s upcoming album #FallenAngels is now available on @AppleMusic: https://t.co/lFKmRn9DrK +04/29/2016,Musicians,@bobdylan,"October… +https://t.co/m2S0Mrh1xF" +04/29/2016,Musicians,@bobdylan,"Hear ""All The Way"" off #FallenAngels out May 20: https://t.co/wGqohxDcYw https://t.co/MSfrug79Vh" +04/16/2016,Musicians,@bobdylan,Celebrate @recordstoreday by picking up this rare 7” EP with songs from the upcoming album Fallen Angels! #RSD16 https://t.co/00UrtDgPrz +04/12/2016,Musicians,@bobdylan,Only 3 more days to save 30%-50% on select shirts at the https://t.co/zJo1wDxtrQ Spring Cleaning Sale! https://t.co/8xxWgrJRZi +04/11/2016,Musicians,@bobdylan,“Melancholy Mood” is featured on @AppleMusic’s Best of the Week Playlist! Listen here: https://t.co/xSJOcw51fF +04/07/2016,Musicians,@bobdylan,Bob Dylan's new studio album “Fallen Angels” to be released May 20: Pre-order today! https://t.co/mqqs1nAVv6 https://t.co/EMMcyTjtXL +03/16/2016,Musicians,@bobdylan,"@JeffBuckley's #YouAndI ft. a cover of ""Just Like A Woman"" is out now. +link: https://t.co/5d03iWHi4u" +03/14/2016,Musicians,@bobdylan,"Bob Dylan’s 7/8 show at Forest Hills Stadium in Queens, NY, on pre-sale for Amex holders: https://t.co/4sffWIwjkR +(corrected link)" +03/07/2016,Musicians,@bobdylan,"Bob Dylan summer tour with Mavis Staples. +Tix: https://t.co/oNa4cWaknX +Amex pre-sales start tomorrow! https://t.co/svLOZ1Ozgf" +02/15/2016,Musicians,@bobdylan,"The Basement Tapes: Complete, Grammy winner for Best Historical Album. + +Order: https://t.co/Pyjgb8B57g https://t.co/gyEbuEwKJO" +01/14/2016,Musicians,@bobdylan,"Listen now to @JeffBuckley’s cover of ""Just Like A Woman"" from his upcoming album 'You and I.' https://t.co/66VecmGdg5" +01/02/2016,Musicians,@bobdylan,The evolution of Bob Dylan’s “Sitting On A Barbed Wire Fence” #CuttingEdge https://t.co/dInNxt4OQR +12/30/2015,Musicians,@bobdylan,Exclusive: Check out the newly released “One of Us Must Know” stems with #CuttingEdge: https://t.co/HBnkZs8KGA https://t.co/Xh5NGpaczW +12/27/2015,Musicians,@bobdylan,Did any fans out there own these classic Bob Dylan albums on 8-track? #CuttingEdge https://t.co/VGRukDarAF +12/26/2015,Musicians,@bobdylan,"""It's very complicated to play with electricity..."" - Bob Dylan in the summer of '65 #CuttingEdge https://t.co/YQHSmCpL63" +12/24/2015,Musicians,@bobdylan,Learn where Bob Dylan shot the iconic cover to 'Blonde on Blonde' with @PopSpotsNYC​! #CuttingEdge https://t.co/r2hHDbc1aB +12/23/2015,Musicians,@bobdylan,The 3 Bob Dylan albums highlighted on #CuttingEdge are all on @RollingStone's 500 Greatest Albums of All Time. https://t.co/duYIYvyuU6 +12/22/2015,Musicians,@bobdylan,Bob Dylan and his Band will tour Japan in April 2016. Tix go on sale in January. See the dates: https://t.co/QF7rNUtq8l +12/21/2015,Musicians,@bobdylan,Go check out take 13 of “Stuck Inside of Mobile with the Memphis Blues Again” from #CuttingEdge: https://t.co/buACDLkfT9 +12/19/2015,Musicians,@bobdylan,Think you can sing like Bob Dylan? Experience Studio A. Revisited here: https://t.co/MafSaRIzwv #CuttingEdge https://t.co/ThY68y5HqX +12/18/2015,Musicians,@bobdylan,"""All I can be is me--whoever that is."" #CuttingEdge https://t.co/nie75Q3MKh" +12/17/2015,Musicians,@bobdylan,"Go watch “Visions of Johanna,” off Bob Dylan’s #CuttingEdge! https://t.co/2N33uxDFjm" +12/15/2015,Musicians,@bobdylan,"""...you almost might not notice that it’s poetry."" - Allen Ginsberg on Bob Dylan #CuttingEdge https://t.co/ENsTLlleae" +12/14/2015,Musicians,@bobdylan,Don’t be a complete unknown. Sing “Like a Rolling Stone” like Bob Dylan: https://t.co/Joax8CfUkR #CuttingEdge https://t.co/MPbqt2qawk +12/13/2015,Musicians,@bobdylan,Hear “Leopard-Skin Pill-Box Hat (Take 8)” from Bob Dylan’s #CuttingEdge https://t.co/RMbYfARI0I +12/12/2015,Musicians,@bobdylan,".@nprmusic on the twelfth installment of Bob Dylan’s Bootleg Series, #CuttingEdge. https://t.co/hC8YKyBx1G" +12/10/2015,Musicians,@bobdylan,Have you picked up your copy of Bob Dylan’s #CuttingEdge? Get it today: https://t.co/fcED104yDh https://t.co/UvPuddfXzi +12/09/2015,Musicians,@bobdylan,Watch the video for Bob Dylan’s “Subterranean Homesick Blues” featuring never-before-seen outtakes: https://t.co/Driyu0qk5E #CuttingEdge +12/08/2015,Musicians,@bobdylan,"""I wrote it. I didn't fail. It was straight."" -Bob Dylan on ""Like a Rolling Stone"" #CuttingEdge https://t.co/rGJW3gLlq2" +12/07/2015,Musicians,@bobdylan,'Shadows in the Night' and 'The Basement Tapes Complete' are nominated for @TheGRAMMYs! https://t.co/PzMpzthlas +12/05/2015,Musicians,@bobdylan,Here’s the new video for Bob Dylan’s “Just Like Tom Thumb’s Blues” #CuttingEdge https://t.co/6mEh83M1K8 +12/04/2015,Musicians,@bobdylan,Watch the premiere of the new video for “Just Like Tom Thumb’s Blues” off #CuttingEdge on @nprmusic: https://t.co/YaiS3Jyfdw +12/02/2015,Musicians,@bobdylan,Here’s how “Stuck Inside of Mobile with the Memphis Blues Again” developed to its final version. #CuttingEdge https://t.co/mq0hT1Qi3Y +11/30/2015,Musicians,@bobdylan,Celebrate today by listening to the original. #CuttingEdge https://t.co/254RY0YRny https://t.co/nI1YFsczOO +11/29/2015,Musicians,@bobdylan,A collection of Bob Dylan concert tickets throughout 1965. Have you attended any of these shows? #CuttingEdge https://t.co/j5hDX1YAq2 +11/28/2015,Musicians,@bobdylan,"""The closest I ever got to the sound I hear in my mind was on individual bands in the 'Blonde on Blonde' album."" https://t.co/uVGddrDy2Q" +11/27/2015,Musicians,@bobdylan,"Get the #CuttingEdge, Bob Dylan outtakes, rehearsals and more from the mid 60’s. https://t.co/254RY0YRny https://t.co/AIuO8y7qLY" +11/25/2015,Musicians,@bobdylan,"D. A. Pennebaker's Dylan documentary, 'Dont Look Back,' is now available in a new deluxe edition from @Criterion! https://t.co/g1F1P1njgE" +11/24/2015,Musicians,@bobdylan,Hear unheard Dylan outtakes and early versions of some of the greatest songs of all time on the #CuttingEdge! https://t.co/YALaMoiRih +11/23/2015,Musicians,@bobdylan,Listen to the previously unreleased 1st take of Subterranean Homesick Blues https://t.co/254RY1gsM8 #CuttingEdge https://t.co/BPVGOmGckh +11/21/2015,Musicians,@bobdylan,Studio is all yours! Play with the stems of “Like a Rolling Stone” just like it was 50 years ago. https://t.co/254RY0YRny #CuttingEdge +11/20/2015,Musicians,@bobdylan,What are your earliest memories of Bob Dylan? #CuttingEdge https://t.co/gKcFe7Kh2g +11/18/2015,Musicians,@bobdylan,Watch to find out where the cover of 'Highway 61 Revisited' was photographed. #CuttingEdge https://t.co/SzAuvnH6jo https://t.co/2TXRrIucM2 +11/17/2015,Musicians,@bobdylan,"""It's impossibly good…how can a human mind do this?"" - Phil Ochs on 'Highway 61 Revisited' #CuttingEdge https://t.co/B1dsZgS3oJ" +11/15/2015,Musicians,@bobdylan,#CuttingEdge highlights one of Dylan's most creative periods! Pick it up on @amazonmusic: https://t.co/SzAuvnpuUO https://t.co/ja5ddY2XOL +11/14/2015,Musicians,@bobdylan,"By '66, Bob Dylan was a musical icon, influencing not only how others sounded but how others dressed! #CuttingEdge https://t.co/m6BD5Lpx8D" +11/12/2015,Musicians,@bobdylan,#CuttingEdge documents Bob Dylan's transition from folk hero to rock and roll legend: https://t.co/SzAuvnpuUO https://t.co/jFTqGlZqor +11/11/2015,Musicians,@bobdylan,"You've never heard ""Subterranean Homesick Blues"" like this! + +#CuttingEdge out now: https://t.co/SzAuvnH6jo https://t.co/SayJFKObDc" +11/11/2015,Musicians,@bobdylan,"UK fans! Missed Paul Sexton playing tracks from #CuttingEdge on @BBCRadio2 over the weekend? Listen here: +https://t.co/2HiV3FBFJi" +11/10/2015,Musicians,@bobdylan,RT @amazonmusic: Bob Dylan collects alternate versions of his classic songs on 'The Best of the Cutting Edge' https://t.co/FMnOkVHDsK https… +11/10/2015,Musicians,@bobdylan,"UK! Want this limited edition of the ""Like A Rolling Stone"" 7”? Buy it from @hmvtweets & get £2 off #CuttingEdge https://t.co/LMWMWeA4Ae" +11/10/2015,Musicians,@bobdylan,#DidYouKnow most of 'Highway 61 Revisited' was recorded in 1 week? https://t.co/254RY0YRny #CuttingEdge https://t.co/Xoek1nxdrl +11/09/2015,Musicians,@bobdylan,#CuttingEdge features 100+ unreleased tracks and the full 16 takes of “Like A Rolling Stone.” Get it here: https://t.co/SzAuvnH6jo +11/09/2015,Musicians,@bobdylan,RT @SonyMusicIre: Ireland!! #CuttingEdge from @bobdylan is in @TowerDublin @HMVIreland @GoldenDiscs Preview: https://t.co/dcTW49ogws https:… +11/08/2015,Musicians,@bobdylan,"#CuttingEdge takes you inside the creative process of “Desolation Row” off ‘Highway 61 Revisited.’ + +gif via @Genius https://t.co/wKEm26ZFqz" +11/07/2015,Musicians,@bobdylan,The limited Collector's Edition of the #CuttingEdge is now available! Get yours here: https://t.co/kM4HGLSDAZ https://t.co/Pkq8vERhpB +11/06/2015,Musicians,@bobdylan,#Exclusive: Now you can make Bob Dylan's “Like a Rolling Stone” your own with #CuttingEdge: https://t.co/254RY1gsM8 https://t.co/aBiVOA9Rfv +11/06/2015,Musicians,@bobdylan,"RT @RollingStone: Remix Bob Dylan's ""Like a Rolling Stone"" using individual song parts on a new site https://t.co/hbCQywnToy https://t.co/K…" +11/06/2015,Musicians,@bobdylan,Bob Dylan's #CuttingEdge which features alternate versions of Dylan classics is out now! https://t.co/TpwEoW1a1l https://t.co/Z949SD0sVl +11/05/2015,Musicians,@bobdylan,UK fans! Buy the @hmvtweets exclusive of “Like A Rolling Stone” 7” single for £4.99 and get £2 off #CuttingEdge! https://t.co/zfiJAg3fSi +11/04/2015,Musicians,@bobdylan,"Listen to Take 3 of Bob Dylan’s ""It Takes a Lot to Laugh, It Takes a Train to Cry” off #CuttingEdge on @esquire​: https://t.co/t3qP6znCdt" +11/03/2015,Musicians,@bobdylan,Check out the premiere of the alt take of “Just Like A Woman” on @Vulture: https://t.co/ynmJnjODSV #CuttingEdge https://t.co/UWrmP9JQ4p +11/02/2015,Musicians,@bobdylan,Watch the world premiere of ‘Visions Of Johanna’ directed by John Hillcoat on @guardian: https://t.co/eoo5jx0mYd #CuttingEdge +11/01/2015,Musicians,@bobdylan,"Get an in-depth look at the limited Collector’s Edition of the #CuttingEdge, out 11/06. Watch here: https://t.co/PS5m62l72J" +10/31/2015,Musicians,@bobdylan,Here’s a closer look at the deluxe edition of Bob Dylan's upcoming #CuttingEdge: https://t.co/s6FC5OMrcK +10/30/2015,Musicians,@bobdylan,The release of Bob Dylan’s #CuttingEdge is one week away! Stream an exclusive sampler on @nprmusic: https://t.co/HSNe0NW5Hz +10/29/2015,Musicians,@bobdylan,Read @uncutmagazine's extensive review of Bob Dylan's #CuttingEdge: https://t.co/Fj51PMduJV https://t.co/TyVrDd2wkI +10/29/2015,Musicians,@bobdylan,"Bob Dylan's secret history! A bonus, 52-page Bootleg Series book comes w/ new @MOJOmagazine +https://t.co/p9x2HjTLII https://t.co/TWZB8y25JV" +10/28/2015,Musicians,@bobdylan,Exclusive Premiere! Listen to “Leopard-Skin Pill-Box Hat” off #CuttingEdge on @YahooMusic: https://t.co/HYWbVu9X4A https://t.co/PCzYh1Moto +10/27/2015,Musicians,@bobdylan,Photographer Jerry Schatzberg search for the 'Blonde on Blonde' cover location https://t.co/Wh8btSFLwO #CuttingEdge https://t.co/VETgTG8wHz +10/27/2015,Musicians,@bobdylan,"Watch the final album cover location video, The Story of the ‘Blonde on Blonde’ cover, on @RollingStone https://t.co/Wh8btSXmVo #CuttingEdge" +10/26/2015,Musicians,@bobdylan,"Earlier, @Genius released ‘Evolution of A Song’ dedicated to Dylan’s classics: https://t.co/hMJA1U5UZn #CuttingEdge https://t.co/smtNFyINYD" +10/26/2015,Musicians,@bobdylan,.@Genius explores the making of Dylan’s classics in new ‘Evolution of A Song.' More on @RollingStone: https://t.co/hMJA1U5UZn #CuttingEdge +10/25/2015,Musicians,@bobdylan,Pre-order your copy of Bob Dylan's #CuttingEdge today: https://t.co/TpwEoW1a1l https://t.co/UngncYwcdA +10/24/2015,Musicians,@bobdylan,"""I'm going back to New York City, I do believe I've had enough…"" + +#CuttingEdge out 11/6! https://t.co/SzAuvnH6jo https://t.co/IgIRrlpg43" +10/23/2015,Musicians,@bobdylan,"""The most influential album of its era..."" -Clinton Heylin on 'Bringing It All Back Home’ #CuttingEdge https://t.co/oTFo8pTdsp" +10/22/2015,Musicians,@bobdylan,#CuttingEdge offers an unprecedented journey into the 14 months in which Bob Dylan changed rock and roll! Pre-order: https://t.co/SzAuvnH6jo +10/21/2015,Musicians,@bobdylan,Priceless! Watch angry fans back in '66 complain about Dylan ‘going electric.’ #CuttingEdge https://t.co/s5Yt1O0ND7 https://t.co/MD4HNq5nlH +10/20/2015,Musicians,@bobdylan,Watch the unreleased version of “Subterranean Homesick Blues” on @coslive: https://t.co/W5iHJ85F4H #CuttingEdge https://t.co/zTFxUimqk9 +10/19/2015,Musicians,@bobdylan,Here’s another track off #CuttingEdge. Listen to Take 1 of “It Takes a Lot to Laugh It Takes a Train to Cry.” https://t.co/HDHQOenpM2 +10/18/2015,Musicians,@bobdylan,"Many covered Bob Dylan's songs in the '60s, but as this ad put it: No one sings Dylan like Dylan. #CuttingEdge http://t.co/YS6ShgKz1z" +10/17/2015,Musicians,@bobdylan,The 3-LP 180-G vinyl of Bob Dylan's #CuttingEdge is now available for pre-order! http://t.co/OtXsql2fyE http://t.co/kMMJbUwYT8 +10/16/2015,Musicians,@bobdylan,Here’s Take 1 of “Can You Please Crawl Out Your Window?” off the upcoming #CuttingEdge: https://t.co/0Mes2gpEW8 +10/15/2015,Musicians,@bobdylan,Watch @PopSpotsNYC​’s Bob Egan break down how the cover of ‘Highway 61 Revisited’ came about. #CuttingEdge https://t.co/ofS07zLugO +10/15/2015,Musicians,@bobdylan,You can now listen to “Can You Please Crawl Out Your Window” off #CuttingEdge exclusively on @thedailybeast: http://t.co/9UWl5xhAqW +10/13/2015,Musicians,@bobdylan,Watch the second album cover location video featuring Bob Dylan’s ‘Highway 61 Revisited’ on @RollingStone: http://t.co/awBHmL7ddH +10/09/2015,Musicians,@bobdylan,"Listen to “Sitting On A Barbed Wire Fence” off Bob Dylan’s upcoming Bootleg Series, The #CuttingEdge: http://t.co/xDUaVnYjdr" +10/08/2015,Musicians,@bobdylan,Listen to the premiere of the alternate version of “Sitting On A Barbed Wire Fence” off #CuttingEdge on @WSJ: http://t.co/Qi5TGuRfjO +10/07/2015,Musicians,@bobdylan,"#CuttingEdge includes the complete 16-take session of “Like A Rolling Stone."" Pre-order: http://t.co/5ZyM327L5S http://t.co/ch8WbWLEiG" +10/06/2015,Musicians,@bobdylan,Read @NYTimes’ coverage of Bob Dylan’s #CuttingEdge: http://t.co/GE9nD7Iq8i http://t.co/dWqs3hQZDz +10/05/2015,Musicians,@bobdylan,"In case you missed it, here’s the story of Bob Dylan’s upcoming Bootleg Series The #CuttingEdge: http://t.co/uJrEUjsmM3" +10/03/2015,Musicians,@bobdylan,#CuttingEdge out November 6th! Pre-order today: http://t.co/7Y3VHpyaOF http://t.co/Fhfak3raTG +10/02/2015,Musicians,@bobdylan,"""...a definitive look at the development of Dylan's plugged-in sound."" - @greeneandy, @RollingStone on #CuttingEdge http://t.co/bmLMXCaGdW" +09/30/2015,Musicians,@bobdylan,Watch the story of the cover of ‘Bringing It All Back Home’ #CuttingEdge http://t.co/ezgiWksgzZ +09/29/2015,Musicians,@bobdylan,Watch @PopSpotsNYC break down the cover of ‘Bringing It All Back Home’ on @RollingStone: http://t.co/qr2P9wugWP http://t.co/l4nvRcu1IV +09/24/2015,Musicians,@bobdylan,#CuttingEdge takes listeners into some of Bob Dylan's legendary studio sessions. Pre-order: http://t.co/7Y3VHpgzX7 http://t.co/31DKlc8Mz6 +09/24/2015,Musicians,@bobdylan,#CuttingEdge takes you inside the studio during the recording of three of Bob’s most iconic albums. http://t.co/uJrEUjaLUv +05/20/2015,Musicians,@bobdylan,"Watch Bob Dylan perform ""The Night We Called It A Day"" from Shadows In The Night on @Letterman: https://t.co/fUXZdibj04" +05/20/2015,Musicians,@bobdylan,Bob Dylan is about to close out The Late Show With David @Letterman. #Shazam to see the new video and more. http://t.co/BDs2Dqy9vP +05/20/2015,Musicians,@bobdylan,"Bob Dylan is performing on tonight’s penultimate episode of the Late Show with David @Letterman , starting now on CBS." +05/19/2015,Musicians,@bobdylan,Don’t miss Bob Dylan performing on The Late Show With David @Letterman tonight at 11:35pm EST on CBS. +05/15/2015,Musicians,@bobdylan,"In a rare TV appearance, Bob Dylan will perform on one of the final @LETTERMAN shows, Tuesday, May 19th at 11:35 PM ET/PT on #CBS." +03/16/2015,Musicians,@bobdylan,"Four live videos from The New Basement Tapes, just released: +http://t.co/DmxOAwU9rV" +03/02/2015,Musicians,@bobdylan,"""The Night We Called It A Day,"" the new video from Bob Dylan's album Shadows In The Night, directed by Nash Edgerton. http://t.co/R2yoYlbxrU" +02/13/2015,Musicians,@bobdylan,"Bob Dylan in conversation with Bill Flanagan, February 2015 + +http://t.co/HI0zXy70iS" +02/12/2015,Musicians,@bobdylan,"Bob Dylan and his Band will perform concerts in the U.S. in April and May + +Tickets on sale next week! + +http://t.co/QF7rNUtq8l" +02/11/2015,Musicians,@bobdylan,"""Shadows in the Night"" becomes a worldwide hit debuting in the top ten in 13 countries! Read more at http://t.co/PxkVlhNzQ6" +02/05/2015,Musicians,@bobdylan,Bob Dylan’s new album “Shadows In The Night” is available now at @BestBuy​. Find it in a store near you: http://t.co/zlgCcruNgd +02/03/2015,Musicians,@bobdylan,"Bob Dylan's new album Shadows In The Night is available now on CD, Vinyl and MP3 on @amazonmusic. Get it today: http://t.co/jXAXMAnT1G" +02/03/2015,Musicians,@bobdylan,"RT @iTunesMusic: Ol’ Blue Eyes would be proud. +@bobdylan goes Sinatra with Shadows In The Night +http://t.co/B0RGMfm2P2 http://t.co/uODOIZD…" +02/03/2015,Musicians,@bobdylan,"Bob Dylan’s first new album in three years, Shadows In The Night, arrives in stores and online today. http://t.co/jXAXMAnT1G" +06/27/2018,Musicians,@MileyCyrus,BFF’S @MarkRonson 🔥🔥🔥 https://t.co/YDJV04CIE3 +06/26/2018,Musicians,@MileyCyrus,https://t.co/8ohDGgIEei +06/26/2018,Musicians,@MileyCyrus,#EndFamilySeperation #KeepFamiliesTogether @happyhippiefdn @supportKIND https://t.co/Kv2lDFGMEn +06/25/2018,Musicians,@MileyCyrus,#ConversePride https://t.co/c13zJNwEjT +06/25/2018,Musicians,@MileyCyrus,thanks for showing your PRIDE rockin the Converse X Miley pride collection!! #ConversePride https://t.co/36loAcWuVu +06/23/2018,Musicians,@MileyCyrus,💚 @wizkhalifa https://t.co/yhUCXSH42X +06/21/2018,Musicians,@MileyCyrus,backstage before my #GeorgeClooneyAFI performance! Airs tonight at 10/9c on TNT! https://t.co/Ct1K6jGo5S +06/21/2018,Musicians,@MileyCyrus,https://t.co/Iq31XI7CAI +06/18/2018,Musicians,@MileyCyrus,NO ONE could ever love you more than I do! Even the thousands would never add up to how much space you take in my s… https://t.co/wrhR8QVk4U +06/17/2018,Musicians,@MileyCyrus,https://t.co/UQQv1fkJWB +06/17/2018,Musicians,@MileyCyrus,Happy Daddy’s Day to the best Dad on the planet! @billyraycyrus https://t.co/BW3wupu3Bx +06/13/2018,Musicians,@MileyCyrus,"RT @fweakysus: @StylishCyrus @MileyCyrus oh yes girllll, u already know i copped!!🌈💖 #ConverseXMiley @MileyCyrus https://t.co/snV3uXcE1C" +06/13/2018,Musicians,@MileyCyrus,Even my trees are GAY! Happy pride! https://t.co/vaIiBf5bud +06/13/2018,Musicians,@MileyCyrus,Stan legends @Wyattish @billyraycyrus https://t.co/8WvhXsRtfF +06/12/2018,Musicians,@MileyCyrus,RT @SofiaChiostri: @MileyCyrus ❤️❤️❤️❤️❤️❤️ https://t.co/JyJTMm3IRU +06/12/2018,Musicians,@MileyCyrus,RT @StylishCyrus: Who got their Miley x Converse Pride Merch?! Tweet me pics! 🌈🌈🌈 #ConverseXMiley @MileyCyrus https://t.co/8BAf4Ogu7w +06/12/2018,Musicians,@MileyCyrus,🌈 https://t.co/u7eEtng9dv +06/11/2018,Musicians,@MileyCyrus,RT @EleLovesBritney: Wrecking Ball @ RomaPride @MileyCyrus 🏳️‍🌈❤️ https://t.co/mJccCYQUjI +06/11/2018,Musicians,@MileyCyrus,"AN ICON + +AND THE FUCKING PRESIDENT https://t.co/newAEGMbYT" +06/11/2018,Musicians,@MileyCyrus,💖🌈 https://t.co/ibsNxt4AQA +06/10/2018,Musicians,@MileyCyrus,"IT’S STILL THE WEEKEND SO PARTY LIKE ME & MURRAY + +Watch us honor the bad ass life and career of George Clooney Jun… https://t.co/Mi0IO2cPFN" +06/09/2018,Musicians,@MileyCyrus,🌈🌈🌈🌈❤️❤️❤️ https://t.co/I4ErmvHRuK +06/09/2018,Musicians,@MileyCyrus,🌈🌈🌈🌈 https://t.co/K8DYuiJMTn +06/09/2018,Musicians,@MileyCyrus,"RT @elizabethforma: Get ready, #BostonPride – @metheridge and I are ready to dance! #RainbowResistance #Pride2018 https://t.co/qnucmd11qf" +06/09/2018,Musicians,@MileyCyrus,.@voguemagazine https://t.co/GlopaCsEdN 🌈 +06/09/2018,Musicians,@MileyCyrus,"RT @voguemagazine: .@MileyCyrus has debuted a special @Converse capsule collection dedicated to #Pride 2018, with all proceeds going to LGB…" +06/06/2018,Musicians,@MileyCyrus,"Share your #prideposterproject with us, and look out for these at your Pride parades. @happyhippiefdn @ItGetsBetter… https://t.co/br9RNhegMB" +06/05/2018,Musicians,@MileyCyrus,https://t.co/bzhwxzwwRX https://t.co/ywfltcUscG +06/05/2018,Musicians,@MileyCyrus,All net proceeds of the Converse Pride collection will support our LGBTQ+ youth community partners globally!… https://t.co/WmYBmL1wI7 +06/05/2018,Musicians,@MileyCyrus,"Happy Pride! 🌈 +@HappyHippiefdn and I support being yourself everyday, and Pride is an extra special time to celebr… https://t.co/Ak2nhZQOhO" +06/02/2018,Musicians,@MileyCyrus,"RT @Spotify: Hey @MileyCyrus, no one can resist the emotional power of ""Wrecking Ball."" Not even the two guys in our new commercial, enjoyi…" +06/02/2018,Musicians,@MileyCyrus,💚💚 @Spotify https://t.co/O7cMLvhICE +06/01/2018,Musicians,@MileyCyrus,Like nappin with floyd 🌈 https://t.co/O5dpgyU3sw +05/31/2018,Musicians,@MileyCyrus,"Always a beautiful start to the day +When a piece of art finds its right & grateful owner https://t.co/85AAH9ZK3H" +05/31/2018,Musicians,@MileyCyrus,step yo pussy up https://t.co/9oW87gfjuv +05/27/2018,Musicians,@MileyCyrus,"Happy Birthday 🎊 @BrandiCyrus +Throwback! Sissy time! Love you! https://t.co/Igh9bdmGwd" +05/25/2018,Musicians,@MileyCyrus,COME THRU 🌞 https://t.co/ntkYgF9CPi +05/24/2018,Musicians,@MileyCyrus,❤️🔥❤️🔥 https://t.co/hnCwRXeqmk +05/24/2018,Musicians,@MileyCyrus,❤️❤️❤️ @chrishemsworth https://t.co/Z2PJqEkRdr +05/22/2018,Musicians,@MileyCyrus,https://t.co/Tw5Dr0x4Ek @jimmykimmellive #kimmel https://t.co/phyNwSxHEr +05/22/2018,Musicians,@MileyCyrus,RT @aliciakeys: Calling every member of #TeamAlicia out there! 🌍 It's all led up to THIS! We need to work together to get @BrittonBuchanan… +05/22/2018,Musicians,@MileyCyrus,RT @jimmykimmel: A trespasser named @MileyCyrus breaks into my house in the middle of the night. #WreckingBall https://t.co/gYHEVvzPKd +05/21/2018,Musicians,@MileyCyrus,RT @JimmyKimmelLive: .@MileyCyrus invades Jimmy’s home TONIGHT! #Kimmel https://t.co/3wwRH5Xe8S +05/21/2018,Musicians,@MileyCyrus,https://t.co/yKbFDOi9UL +05/20/2018,Musicians,@MileyCyrus,"Face Mask ✔️ +Facts AF tee ✔️ +Weed Panties✔️ + +MC Sunday Checklist https://t.co/pIdv8tRkJv" +05/18/2018,Musicians,@MileyCyrus,RT @eltonofficial: Two surprise and very special guests at Elton's final @CaesarsPalace show last night! @MileyCyrus @LiamHemsworth #LasVeg… +05/18/2018,Musicians,@MileyCyrus,https://t.co/b1rVjO0MF1 +05/17/2018,Musicians,@MileyCyrus,Laurel Vs Yammy lol https://t.co/Ew6HwWV5Va +05/16/2018,Musicians,@MileyCyrus,"If this isn’t a definition of a “Time” i don’t know wtf + +#AnEra https://t.co/9EbBfgQHM9" +05/13/2018,Musicians,@MileyCyrus,3 Generations of GO GETTIN’ WOMEN. Happy mother’s day to ALL! https://t.co/CeTm4T2gZe +05/13/2018,Musicians,@MileyCyrus,https://t.co/8b51kKbuvb +05/13/2018,Musicians,@MileyCyrus,"Happy B-Day Mommy @TishCyrus! + +& Happiest Mother’s Day to mamas everywhere! https://t.co/58OjROdJpU" +05/11/2018,Musicians,@MileyCyrus,https://t.co/ZIAo4xhmL1 +05/11/2018,Musicians,@MileyCyrus,https://t.co/qi7obQE4mn +05/11/2018,Musicians,@MileyCyrus,Not killing animals is fucking hot! It’s so much cuter to NOT kill animals! ❤️ https://t.co/6nxrWEgx8d +05/10/2018,Musicians,@MileyCyrus,Kiley Cyrushian https://t.co/cXUxK6BtaG +05/09/2018,Musicians,@MileyCyrus,Happiest Birthday to my baby brother bear! @BraisonCyrus 🐻 🐻🐻🐻 https://t.co/5DgFUc6uw5 +05/09/2018,Musicians,@MileyCyrus,Been in this together since the beginning! Love ya sister @katyperry https://t.co/HPJ2apI8jL +05/09/2018,Musicians,@MileyCyrus,#sustainablestyle @StellaMcCartney https://t.co/uuhxmfHKL1 +05/09/2018,Musicians,@MileyCyrus,"RT @StellaMcCartney: Heavenly bodies! Stella, @MileyCyrus and @rihanna at the 2018 #MetGala last night. + +#HeavenlyBodies #StellaMcCartney h…" +05/08/2018,Musicians,@MileyCyrus,Thank you @StellaMcCartney for having me as your date & shining a bright light on sustainable non violent fashion! https://t.co/kmdeWymxmU +05/08/2018,Musicians,@MileyCyrus,RT @StylishCyrus: I’m dead at @MileyCyrus singing “Jolene” in the very beginning Kim Kardashian’s snap and you can hear her saying “I’m jus… +05/08/2018,Musicians,@MileyCyrus,https://t.co/CPK9OaFXwc +05/08/2018,Musicians,@MileyCyrus,.@StellaMcCartney girls!!! @ParisJackson https://t.co/24mTp37eLO +05/08/2018,Musicians,@MileyCyrus,https://t.co/Tg9ZcWTux6 +05/08/2018,Musicians,@MileyCyrus,https://t.co/iGWxJZTX1Y +05/08/2018,Musicians,@MileyCyrus,https://t.co/wi4txkYu5P +05/07/2018,Musicians,@MileyCyrus,Punk ball! Babies first MET! @marcjacobs 🍒 https://t.co/3hNT2vhRpU +05/07/2018,Musicians,@MileyCyrus,MET with @AlexanderWangNY a few years ago! https://t.co/qYp1be14pR +05/07/2018,Musicians,@MileyCyrus,Lol Bad A$$ @Converse edit! Throwback to my first MET! Can’t wait for tonight! #ConverseXMiley https://t.co/yz4zreGNBt +05/05/2018,Musicians,@MileyCyrus,You taught me how to LOVE without fear of loss... Every second of happiness together....was worth every minute of s… https://t.co/LXjQtQplnr +05/04/2018,Musicians,@MileyCyrus,MOOD AF https://t.co/WyUF4KH75F +05/04/2018,Musicians,@MileyCyrus,who got my #ConverseXMiley collection?? I wanna see y’all in the line!! https://t.co/wVJCHrUqI4 +05/04/2018,Musicians,@MileyCyrus,RT @arviedizon: #MileyXConverse serving Manila traffic some glits and fun. @MileyCyrus @Converse https://t.co/lhLljWrKm7 +05/04/2018,Musicians,@MileyCyrus,"My @Converse line is suppppper cute, you should totally swoop!!!! #ConverseXMiley https://t.co/0ehXp14G1o" +05/03/2018,Musicians,@MileyCyrus,RT @AliGutyy: @MileyOfficial @instagram @Snapchat #MileyXConverse @MileyCyrus ❤️ https://t.co/Y1beZt694m +05/03/2018,Musicians,@MileyCyrus,RT @MyFabulousMiley: @MileyOfficial @instagram @Snapchat I am living for the gifs #ConserveXMiley @Converse @MileyCyrus https://t.co/RXCJe5… +05/03/2018,Musicians,@MileyCyrus,RT @CyrusIsMyVirus: @MileyOfficial @instagram @Snapchat https://t.co/9cWSKmSiMw +05/03/2018,Musicians,@MileyCyrus,RT @MileyCyrusIntl: In Mexico it's also already on sale! 😍💜 #ConverseXMiley @MileyCyrus @Converse https://t.co/8bqwlNjCfb +05/03/2018,Musicians,@MileyCyrus,RT @lauramiley97: Look what I found!!!!! 😱❤️ #MILEYxCONVERSE @Converse @MileyCyrus #SPAIN https://t.co/jB8HTO9FPy +05/03/2018,Musicians,@MileyCyrus,"RT @zacheese1: Converse in SOHO went full out!!!! +Come party in NYC @MileyCyrus! https://t.co/Em9xBHqB1B" +05/03/2018,Musicians,@MileyCyrus,"RT @Francescapanda: OH MY GOD, Bershka in Milan, Italy @MileyCyrus @Converse #MileyXConverse https://t.co/Eclhtw8Mrp" +05/03/2018,Musicians,@MileyCyrus,Bts of my #ConverseXMiley @converse shoot on @Tumblr! https://t.co/Bj9FhlgtLq https://t.co/xomdajWOZC +05/03/2018,Musicians,@MileyCyrus,Don’t forget to check out my @converse collection out now! #ConverseXMiley https://t.co/7cMzAeVLV4 +05/03/2018,Musicians,@MileyCyrus,#ConverseXMiley @wonderlandmag https://t.co/sZhlXXxl3T +05/03/2018,Musicians,@MileyCyrus,RT @wonderlandmag: Who's that chick that's rockin' kicks? 💕 Our Spring cover babe @MileyCyrus has teamed up with @Converse to create the sh… +05/02/2018,Musicians,@MileyCyrus,my #ConverseXMiley @Converse collection is out NOW! https://t.co/soXhDEX5nR to get em!!! 🚨🎉💖 https://t.co/CIxi6zIFec +05/02/2018,Musicians,@MileyCyrus,RT @HeartBeatsMiley: I'm at a loss for words. I can't thank you enough @MileyCyrus for sending me this package and thinking of me. You're s… +05/02/2018,Musicians,@MileyCyrus,wanna thank my awesome fans who were a part of the campaign and everyone who’s got a pair of my #ConverseXMiley col… https://t.co/EdTGLatLr8 +05/02/2018,Musicians,@MileyCyrus,"YAY!!! The #ConverseXMiley @converse collection is out everywhere! + +Shop at https://t.co/soXhDEX5nR! + +❤️ 💰 🎉 https://t.co/Hrjx3eJyqd" +05/02/2018,Musicians,@MileyCyrus,Don’t forget to watch @jimmykimmellive #KIMMEL #ConverseXMiley https://t.co/nis0B0qwrD +05/02/2018,Musicians,@MileyCyrus,🚨 🚨 #ConverseXMiley COLLECTION DROPS AT MIDNIGHT 🚨🚨 @Converse https://t.co/69jc7BcbfM +05/02/2018,Musicians,@MileyCyrus,see y’all soon!! #ConverseXMiley https://t.co/JFFOEYSbQZ +05/02/2018,Musicians,@MileyCyrus,Headed to the grove soon! See ya there #ConverseXMiley https://t.co/YWvh89xIQ0 +05/02/2018,Musicians,@MileyCyrus,Excited to meet my fans @ nordstrom at the grove!!! #ConverseXMiley https://t.co/nGINbFz0Ge +05/01/2018,Musicians,@MileyCyrus,Yup! Bringing some for @JimmyKimmelLive tonight in HIS size! https://t.co/hFcOHK95jz +05/01/2018,Musicians,@MileyCyrus,Can’t wait for everyone to get their #ConverseXMiley!! if you’re in La meet @ the grove at 6! https://t.co/rhRQvJFF1a +05/01/2018,Musicians,@MileyCyrus,LA... Who’s headed to nordstrom at the grove later day?? see you there around 6 ;) #ConverseXMiley @Converse https://t.co/hqswMHvLm9 +05/01/2018,Musicians,@MileyCyrus,#ConverseXMiley https://t.co/KSiRoXHeBN +05/01/2018,Musicians,@MileyCyrus,my bad ass fans modeling my @converse collection! OUT MAY 2! #ConverseXMiley https://t.co/Be5IU8aKI8 +05/01/2018,Musicians,@MileyCyrus,CATCH ME ON @JimmyKimmelLive TONIGHT AT 11:35|10:35c TO TALK ABOUT MY @Converse COLLECTION 💖💖 (Ps how cute are my b… https://t.co/iCMehPr9Xt +05/01/2018,Musicians,@MileyCyrus,OUT MAY 2. #ConverseXMiley @Converse https://t.co/HfFtnebHUu +04/30/2018,Musicians,@MileyCyrus,#ConverseXMiley https://t.co/PuolTo2D82 +04/29/2018,Musicians,@MileyCyrus,"IM NOT SORRY + +Fuck YOU #10yearsago https://t.co/YTJmPHKwLX" +04/29/2018,Musicians,@MileyCyrus,Sooo Harpers Bazaar https://t.co/XFjuIdfiHB +04/29/2018,Musicians,@MileyCyrus,Feeling myself... I’ll never forget the day I got this shirt from Fred Segal https://t.co/jpQ3rAocHO +04/29/2018,Musicians,@MileyCyrus,A picture says 1000 words... but this one only says two... FUCK YOU https://t.co/57JJZIDCbV +04/29/2018,Musicians,@MileyCyrus,Being extra AF! Thanks mom! @tishcyrus https://t.co/1iiBnxjY3O +04/27/2018,Musicians,@MileyCyrus,Slay diva! https://t.co/u3QXEb01bQ +04/24/2018,Musicians,@MileyCyrus,"Partyin w @LykkeLi +Bringing her some cons as a “fuck yeah bad ass record” present https://t.co/OUtRcH3lL8" +04/24/2018,Musicians,@MileyCyrus,Last night w big sis was LIT @aliciakeys https://t.co/55tAsYYzj9 +04/22/2018,Musicians,@MileyCyrus,I fucking hate when he does this shit https://t.co/kpmcHnW4Cz +04/22/2018,Musicians,@MileyCyrus,Happy Sunday! Have fun and get as me$$y as my hurr! https://t.co/hshMSmbU3g +04/20/2018,Musicians,@MileyCyrus,Mood! BECUZZ ‘Party In The USA’ is now #BRITcertified Platinum! 👅🇬🇧💿 https://t.co/dEvuJdRgtu +04/18/2018,Musicians,@MileyCyrus,https://t.co/fG2oeeBDLB +04/16/2018,Musicians,@MileyCyrus,HomeCHELLA! https://t.co/6RnCq6jKEu +04/14/2018,Musicians,@MileyCyrus,Guess where I’m at! https://t.co/VhtEEcxmqz +04/11/2018,Musicians,@MileyCyrus,💋👅💋👅 @eltonofficial https://t.co/ilgFI86rcg +04/11/2018,Musicians,@MileyCyrus,"RT @eltonofficial: I didn’t know about those fabulous glasses until @MileyCyrus put them on. Needless to say, I wanted a pair for myself! E…" +04/11/2018,Musicians,@MileyCyrus,RT @eltonofficial: Here we go and what a way to start this #EltonSalute! @MileyCyrus gives her all to everything she does and she took the… +04/11/2018,Musicians,@MileyCyrus,RT @eltonofficial: A superstar #EltonSalute begins in one hour with Elton John: I'm Still Standing - A GRAMMY® Salute! 9/8pm CT only on @CB… +04/10/2018,Musicians,@MileyCyrus,Tune in tonight! @RecordingAcad CBS https://t.co/kTiGecZAZw +04/08/2018,Musicians,@MileyCyrus,Thanks for a rockin night @MFPLA !!!! https://t.co/NjWu9EoG0A +04/08/2018,Musicians,@MileyCyrus,"Freaking out! @jackblack +The MFP gala has only been over for an hour & “Dude... I totally miss you...” https://t.co/gM2akiOrHh" +04/06/2018,Musicians,@MileyCyrus,https://t.co/oQj5qr6bel https://t.co/EMm1jBhXO4 +04/06/2018,Musicians,@MileyCyrus,BTS up! https://t.co/X11tlJq1RH https://t.co/Q310ViWXPY +04/06/2018,Musicians,@MileyCyrus,two new @eltonofficial covers for my fans… hope you like! ❤️❤️ https://t.co/mKFKy0FxDa #EltonREVAMP +04/06/2018,Musicians,@MileyCyrus,"RT @eltonofficial: A #NewMusicFriday with @edsheeran, @ladygaga, @QOTSA, @MileyCyrus + many more superstars all on one album! Join our #Elt…" +04/06/2018,Musicians,@MileyCyrus,Check out my reimagined cover of ‘Don’t Let The Sun Go Down On Me’ taken from REVAMP an album celebrating the songs… https://t.co/VvwCRNbZ5n +04/06/2018,Musicians,@MileyCyrus,#EltonREVAMP @eltonofficial https://t.co/4BB7Fw5MnA +04/01/2018,Musicians,@MileyCyrus,@iHeartRadio ❤️🐰❤️🐰 +04/01/2018,Musicians,@MileyCyrus,https://t.co/Cx5VLbjBNY +04/01/2018,Musicians,@MileyCyrus,Hoppy Eastahhhhh! https://t.co/hDJInanRNg +04/01/2018,Musicians,@MileyCyrus,https://t.co/wwRqqyVlon +03/31/2018,Musicians,@MileyCyrus,Check out my tumblr https://t.co/6LZZIKjvRu for BTS pics from my Easter shoot! https://t.co/VaQRX8WPdA +03/30/2018,Musicians,@MileyCyrus,Have a Hoppy Easter!!! https://t.co/Q3uVmZrBWo +03/30/2018,Musicians,@MileyCyrus,https://t.co/bIVkuBYX88 +03/30/2018,Musicians,@MileyCyrus,❤️🐰❤️🐰 https://t.co/55atM9Coiz +03/30/2018,Musicians,@MileyCyrus,@Z100NewYork @ArianaTodayNet ❤️❤️❤️❤️ +03/30/2018,Musicians,@MileyCyrus,Hoppy Easter Erbody! https://t.co/kgc1y9wuW5 +03/30/2018,Musicians,@MileyCyrus,https://t.co/6jU6k55l5N +03/30/2018,Musicians,@MileyCyrus,https://t.co/xmdUN3x7xb +03/30/2018,Musicians,@MileyCyrus,🐰🐰🐰 https://t.co/jbmUcv1Rs1 +03/30/2018,Musicians,@MileyCyrus,https://t.co/A6dXCaJ7M1 +03/30/2018,Musicians,@MileyCyrus,https://t.co/WL6hyms8wF +03/30/2018,Musicians,@MileyCyrus,https://t.co/nrw7A7CQm3 https://t.co/9XDxWjiPkw +03/27/2018,Musicians,@MileyCyrus,👅 Like mommy like daughter... https://t.co/rsO1B6qrvt +03/26/2018,Musicians,@MileyCyrus,love to make it to a show 💖 https://t.co/6gVIOS0NoJ +03/25/2018,Musicians,@MileyCyrus,Never Again! Gonna post pics from DC on my tumblr ! ❤️ https://t.co/X11tlJq1RH https://t.co/lM72JXqTBc +03/25/2018,Musicians,@MileyCyrus,@TheEllenShow ❤️❤️❤️ +03/25/2018,Musicians,@MileyCyrus,Look at how beautiful everyone in this crowd is!!!! Singing with all their heart! Makes me so happy and honored to… https://t.co/jPXohFNPha +03/25/2018,Musicians,@MileyCyrus,"our open wounds , on all our hurt , anger and resentment..... it was a beautiful day to experience.... that stage h… https://t.co/EXAjDQfnpr" +03/25/2018,Musicians,@MileyCyrus,I will never forget this moment..... don’t forget this feeling of unity we had the joy of experiencing yesterday...… https://t.co/zukJwEYfBR +03/24/2018,Musicians,@MileyCyrus,Been friends forever & happy to stand with you on important days like this! https://t.co/gtb5GnFaDp +03/24/2018,Musicians,@MileyCyrus,https://t.co/BRtkTur1QE +03/24/2018,Musicians,@MileyCyrus,https://t.co/uqvQjYX4LN +03/24/2018,Musicians,@MileyCyrus,"RT @AMarch4OurLives: Watch LIVE as we #MarchForOurLives in the streets of Washington, DC to demand that we end gun violence and mass shooti…" +03/24/2018,Musicians,@MileyCyrus,"If you can't join us at #MarchForOurLives today, watch LIVE starting at 12pm EST on https://t.co/sxLIqHxnXN" +03/24/2018,Musicians,@MileyCyrus,Selfies and Licks w @noahcyrus ! It’s a very special morning #MarchForOurLives https://t.co/aWuFWweOKt +03/24/2018,Musicians,@MileyCyrus,Millennials taking over! 🖤 #MarchForOurLives https://t.co/Kuj2uBQYtB +03/24/2018,Musicians,@MileyCyrus,Surrounded by heroines! Lucky to be here at this moment in history with the ones I love! #MarchForOurLives https://t.co/xVF4sDVofh +03/24/2018,Musicians,@MileyCyrus,These lyrics mean more to me now than ever. I won’t ever give up & neither will the millions that march with us tod… https://t.co/ml9jAjww7e +03/24/2018,Musicians,@MileyCyrus,NEVER AGAIN! We call BS! Love Wins! https://t.co/cfA91u5tm8 +03/24/2018,Musicians,@MileyCyrus,Proud to be apart of the #MarchForOurLives here in DC! ❤️❤️❤️ https://t.co/ZXKnEFyR28 +03/23/2018,Musicians,@MileyCyrus,Meeting the amazing #SHINEMSD group! Can’t wait for their performance https://t.co/Ge9vbAhOu2 +03/23/2018,Musicians,@MileyCyrus,Be there!!! https://t.co/HsxTbsXYoM https://t.co/yc4NZEaxiX +03/23/2018,Musicians,@MileyCyrus,Big sissy day! So happy @BrandiCyrus is with me for such a special moment! #MarchForOurLives PS I Love DC! Such an… https://t.co/rdR8vuSmBr +03/23/2018,Musicians,@MileyCyrus,So excited to be here and apart of the @AMarch4OurLives! #MSDStrong #NeverAgain https://t.co/1XemF2VdgG +03/23/2018,Musicians,@MileyCyrus,Happiest Bday 2 THE dude! @MikeWiLLMadeIt My life is complete because you’re in it! Let’s keep makin HITz till we’r… https://t.co/VVrM38sCrp +03/20/2018,Musicians,@MileyCyrus,So inspired by the incredible students behind #MarchForOurLives. Can’t wait to join them in DC to perform and show… https://t.co/ViP9HFLw8R +03/20/2018,Musicians,@MileyCyrus,Thanks dude! ❤️❤️❤️❤️ https://t.co/1tQYaOuHha +03/20/2018,Musicians,@MileyCyrus,https://t.co/GtLNq6RqQe +03/20/2018,Musicians,@MileyCyrus,BE YOU 2 FUL #BeautyTime https://t.co/TVU5djA5BP +03/20/2018,Musicians,@MileyCyrus,Pamper YoSELF! #DateNightWithME! https://t.co/ZqenP7SWms +03/19/2018,Musicians,@MileyCyrus,RU-TOX! Perfect start to a week! Is watching old @RuPaulsDragRace episodes you’ve seen a million times and sweatin… https://t.co/MSPGjOBD1F +03/19/2018,Musicians,@MileyCyrus,"Fun is a rainbow +Friends are the pot of gold! https://t.co/TpGClsMeQq" +03/17/2018,Musicians,@MileyCyrus,https://t.co/nSGYWCImul +03/17/2018,Musicians,@MileyCyrus,RFD @OffsetYRN @iamcardib https://t.co/AOvYlJJThH +03/17/2018,Musicians,@MileyCyrus,https://t.co/RDzsP3FDWo +03/17/2018,Musicians,@MileyCyrus,Itszzzzz EZ being green! Happy St Pattys https://t.co/A8PCR0VAq0 +03/16/2018,Musicians,@MileyCyrus,https://t.co/42iunNnGeD https://t.co/VQzWOwMbIS +03/16/2018,Musicians,@MileyCyrus,.@shineMSD #MSDStrong #NeverAgain @AMarch4OurLives 💛💛💛 @happyhippiefdn +03/16/2018,Musicians,@MileyCyrus,"Please support the powerful message of change, unity and healing from student survivors of the #StonemanDouglas sho… https://t.co/B5jxkUd1vy" +03/16/2018,Musicians,@MileyCyrus,https://t.co/vv1scZaAhL +03/15/2018,Musicians,@MileyCyrus,"I’ve never wanted to be boxed in by anything, especially genre, and @eltonofficial gave me the freedom to participa… https://t.co/sKkKANr0gy" +03/14/2018,Musicians,@MileyCyrus,https://t.co/REXBbq1yfA +03/14/2018,Musicians,@MileyCyrus,"Proud of all of you! Never give up! You are THE change! + +So amazing to see young peo… https://t.co/sOiFn1EQAM" +03/13/2018,Musicians,@MileyCyrus,https://t.co/iu20fBpqi2 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack https://t.co/0tY7aAVfQ9 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack https://t.co/vUZvC3XLD0 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack April 10th on CBS! @eltonofficial #ImStillStanding #GRAMMYSalute https://t.co/YGNcWWcSOJ +03/13/2018,Musicians,@MileyCyrus,"Proud to be opening the I’m Still Standing @eltonofficial #GRAMMYSalute April 10 at 9p.m., ET/PT on @CBS. Don't miss it! #BitchIsBack" +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack Announcement today! @eltonofficial https://t.co/nmRBUwD6MD +03/08/2018,Musicians,@MileyCyrus,Happy International Women’s Day! https://t.co/PMOsOuwI86 +03/07/2018,Musicians,@MileyCyrus,https://t.co/Bj9FhlgtLq 💋 https://t.co/TevKrnXOZY +03/07/2018,Musicians,@MileyCyrus,Behind the scene of @wonderlandmag !!! Check out more pics on my tumblr! https://t.co/Bj9Fhly5a0 https://t.co/nGEzFERiBc +03/06/2018,Musicians,@MileyCyrus,https://t.co/wLOTq2SToc +03/05/2018,Musicians,@MileyCyrus,https://t.co/ahhHIv8KU6 +03/05/2018,Musicians,@MileyCyrus,https://t.co/ehLyA03vrx +06/29/2018,Musicians,@kelly_clarkson,Yaaasssss!!!! Please let me know when y’all play in LA!! So proud of y’all!!!! https://t.co/nHLeYeqyhn +06/26/2018,Musicians,@kelly_clarkson,"✨Well that was fun @radiodisney Music Awards! ✨ - Team KC + +https://t.co/fVjdNpbqgL" +06/26/2018,Musicians,@kelly_clarkson,Now we are ready for the 4th of July. Thanks @Macys 😜 🎆 – Team KC https://t.co/Vt1jU2voGG +06/23/2018,Musicians,@kelly_clarkson,Y’all ready?! The 2018 @radiodisney Music Awards airs tonight at 8:00 pm ET/PT on the @DisneyChannel ! – Team KC https://t.co/QjephGLhq4 +06/20/2018,Musicians,@kelly_clarkson,"🔥Have y’all seen this!? Watch Kelly perform “Heat” live in the studio! 🔥 – Team KC + +https://t.co/DNDoPlOnJH" +06/15/2018,Musicians,@kelly_clarkson,We love the @iHeartRadio Music Festival! It’s a great weekend and we hope to see you there! Get your… https://t.co/uYnjJFl5au +06/15/2018,Musicians,@kelly_clarkson,I’m thrilled to be part of this incredible track by @DanAndShay ! Check out #KeepingScore today and stay tuned for… https://t.co/wOAT1R43ZV +06/15/2018,Musicians,@kelly_clarkson,Is it odd that going to the bathroom for a parent feels sort of like a tiny vacation just for you away from tiny hu… https://t.co/gPteQcWaNN +06/14/2018,Musicians,@kelly_clarkson,"Make sure to watch the @radiodisney music awards #RDMA Saturday, June 23 at 8p on @DisneyChannel! – Team KC https://t.co/YbLCcrxQ20" +06/14/2018,Musicians,@kelly_clarkson,RT @boringcompany: We’re really excited to work with the Mayor and the City to bring this new high-speed public transportation system to Ch… +06/13/2018,Musicians,@kelly_clarkson,Y’all! Kelly is up for a #TeenChoice @TeenChoiceFox Award! RETWEET this to vote for @kelly_clarkson as… https://t.co/NEyRrbRzug +06/13/2018,Musicians,@kelly_clarkson,RT @TeenChoiceFOX: Get ready to move those thumbs — voting is officially OPEN for the 2018 #TeenChoice Awards! 🙌🎉 Submit your vote by tweet… +06/13/2018,Musicians,@kelly_clarkson,🤣🤣🤣💁🏼‍♀️ https://t.co/wzRZgMB4Mo +06/13/2018,Musicians,@kelly_clarkson,"Yes, but the first computer was enormous and now one fits in my back pocket.... so I’m just saying we can’t be that… https://t.co/1GVKOFoCw3" +06/13/2018,Musicians,@kelly_clarkson,Yes!! https://t.co/kq71MjObhU +06/12/2018,Musicians,@kelly_clarkson,Who wants to celebrate July 4th with us?! Don’t miss Kelly’s #MacysFireworks performance on @nbc ! 🎆 - Team KC https://t.co/c1l1rDpiEn +06/12/2018,Musicians,@kelly_clarkson,Once they do figure it out imagine the possibilities 4 not only all forms of transportation but solar everything. I… https://t.co/swCXz9nzuf +06/12/2018,Musicians,@kelly_clarkson,Ooh Audi is doing it! Thanks @jasonhalbert for the info. https://t.co/0Zvcbg1QLv +06/12/2018,Musicians,@kelly_clarkson,"Hahaha! Okay, but imagine all the money you spend regularly on gas. I haven’t been to a gas station in like 3 years… https://t.co/suIn3zlHWw" +06/12/2018,Musicians,@kelly_clarkson,This is probably a dumb question but why doesn’t @Tesla install their solar energy capabilities on their cars? Then… https://t.co/nBJ6LopaRc +06/09/2018,Musicians,@kelly_clarkson,Loving my recent pick. Great read! #KCBookClub #NerdsAreCool 😜 https://t.co/PfPi1eDbga +06/09/2018,Musicians,@kelly_clarkson,Proud of you @AlexaCappelli now go conquer the world! 😊🙌😎👣👩🏼‍🎓🎤 https://t.co/ymZ2ziTvlr +06/09/2018,Musicians,@kelly_clarkson,Congrats @BrittonBuchanan and proud mama @Sybuchanan1 😊🙌 https://t.co/2kqxIC5Emw +06/08/2018,Musicians,@kelly_clarkson,So proud of my girl @BrynnCartelli for killing it on @TODAYshow this morning. https://t.co/CDwv6LqGqi +06/08/2018,Musicians,@kelly_clarkson,Sweet.... where does one enter to sing with you? #AskingForAFriend 😏 https://t.co/cswrZ7jawn +06/08/2018,Musicians,@kelly_clarkson,Tonight’s the night for @americanwomantv ! Now we can watch the premiere tonight at 10/9c on @paramountnet . - Team… https://t.co/1tiklyndHI +06/07/2018,Musicians,@kelly_clarkson,"RT @Shazam: #Shazam @kelly_clarkson's performance on the @TODAYshow tomorrow morning for the chance to win a signed limited edition gold ""M…" +06/07/2018,Musicians,@kelly_clarkson,I FINALLY GOT BLAKE TO HOLD UP HIS END OF THE DEAL AND CALL ME QUEEN FOR WINNING!! 🤣🤣 LOVED that it happened at his… https://t.co/Lr7hkjDyVK +06/07/2018,Musicians,@kelly_clarkson,She is one of my favorites 😊 nothing like a girl in jeans simply singing a great song and creating an intimate envi… https://t.co/8J9YCOTvJl +06/06/2018,Musicians,@kelly_clarkson,In case you missed it! ✨ Kelly is officially performing at the @CMT Music Awards TONIGHT!! #AmericanWoman ✨ - Team… https://t.co/VlLX1PB3en +06/06/2018,Musicians,@kelly_clarkson,I’m gonna buy it on iTunes and vinyl!! #SupportArt #FanForLife 🙌💁🏼‍♀️ https://t.co/W6V9iI7KoH +06/06/2018,Musicians,@kelly_clarkson,Exactly! 😂 https://t.co/4gPkpqqpJv +06/06/2018,Musicians,@kelly_clarkson,Yaaassss!!! See y’all soon!! ❤️😊 https://t.co/c7e7LkiNZm +06/06/2018,Musicians,@kelly_clarkson,Yes and yes!!! From this video alone I am certain we could be friends 🤣💁🏼‍♀️😎 https://t.co/A2fTwqUzK7 +06/06/2018,Musicians,@kelly_clarkson,LOVE these two!! https://t.co/p07UU4y3CX +06/06/2018,Musicians,@kelly_clarkson,If it had anything to do with poking fun at me I full on give you permission 🤣💁🏼‍♀️ #LetBobbyTellHisJoke… https://t.co/Xm7jdexLOa +06/06/2018,Musicians,@kelly_clarkson,@ZacharyRob37 @carrieunderwood I’m so sorry. The love received from a four-legged friend is priceless. +06/05/2018,Musicians,@kelly_clarkson,Thank you @carrieunderwood This apparel cake idea was adorable! I’m just now receiving it because it’s been at Star… https://t.co/iifDDzFWdr +06/05/2018,Musicians,@kelly_clarkson,Um.... I am incredibly excited about this!! 🎉🙌❤️ https://t.co/pkQBgXwlwq +06/05/2018,Musicians,@kelly_clarkson,🌈 Happy Pride Month 🌈 Shop the Official Webstore now to get your FREE gift with any purchase at… https://t.co/krxpTXizyy +06/05/2018,Musicians,@kelly_clarkson,Come be in the PIT while Kelly performs at the 2018 CMT Music Awards on June 6! Request FREE tickets to join her v… https://t.co/JzsOwpvAFF +06/04/2018,Musicians,@kelly_clarkson,This little nugget has me wrapped around his little finger ❤️💁🏼‍♀️😊 #RemyB #FarmLife https://t.co/lK0C4GnD2d +06/04/2018,Musicians,@kelly_clarkson,Love it @JmpSings #LoveNHate get it girl!! 🙌❤️ https://t.co/0C0CzM6OPS +06/03/2018,Musicians,@kelly_clarkson,Thanks for having me again #WarriorGames It’s always an honor to perform for y’all and it’s always a great time!… https://t.co/kPgiuxT5UN +06/02/2018,Musicians,@kelly_clarkson,"Um.... YES!! Also, I can’t wait to see @gwenstefani in Vegas!!! https://t.co/b3EHwsWx99" +06/02/2018,Musicians,@kelly_clarkson,This might be my new favorite tweet 🤣 #ChristmasInJune #NeverTooSoon https://t.co/94ZsPANevf +06/02/2018,Musicians,@kelly_clarkson,Tweet 💁🏼‍♀️ https://t.co/5mfPm6cL6G +06/02/2018,Musicians,@kelly_clarkson,Yes ladies!! Can’t wait to do this live!! 😎 https://t.co/xzJAbe9NnE +06/01/2018,Musicians,@kelly_clarkson,Had such a great time @topgolf #Nashville 🙌❤️👍 if you haven’t been you HAVE to go!! #TheLeague #RockyRocks ❤️#IActuallyWasntHorrible 💁🏼‍♀️ +05/30/2018,Musicians,@kelly_clarkson,Absolutely nothing is wrong with natural. I sport it every day of my life unless I’m working because at the end of… https://t.co/LeKADYhy08 +05/30/2018,Musicians,@kelly_clarkson,Oh my gosh you’re hilarious! 🤣 if I could I would totally be there! Y’all go check out my boy @WILKESmusic 😎 https://t.co/RANoA1QnzM +05/30/2018,Musicians,@kelly_clarkson,Yes!!! #WalkMyWay @BrynnCartelli https://t.co/9AodXxsqXY +05/29/2018,Musicians,@kelly_clarkson,The night @BrynnCartelli won #TheVoice me & my glam squad decided show people the before/after so every little girl… https://t.co/Rh9NYYcxxB +05/29/2018,Musicians,@kelly_clarkson,Is it just me or is @ChrisStapleton looking at me in this picture longing to sing a duet with me?? 🤣💁🏼‍♀️😎… https://t.co/ZOAD1jBHhn +05/29/2018,Musicians,@kelly_clarkson,@jasonhalbert + @iamjessicollins = How that monologue happened 🙌❤️ and it was so much fun!! https://t.co/Omo7XDcuG8 +05/29/2018,Musicians,@kelly_clarkson,Yes!! 🎉🎉🎉❤️❤️❤️🙌🙌🙌😎😎😎 https://t.co/dyUW9XtmUh +05/29/2018,Musicians,@kelly_clarkson,"I think I’m gonna take a chance and kiss him ..... +💁🏼‍♀️ https://t.co/7SVApgP3KJ" +05/27/2018,Musicians,@kelly_clarkson,Thank you so much @IMS for having me!! Y’all know how to have good time 😜 #Indy500 https://t.co/bD0FUMPRN7 +05/27/2018,Musicians,@kelly_clarkson,YES WE CAN!!! C’mon y’all #SameOleJaneDoe https://t.co/2g7fhK8VRc +05/27/2018,Musicians,@kelly_clarkson,Oh my gosh I just saw @JohnMayer new video for #NewLight and it’s my favorite thing EVER!!! You are the funniest pe… https://t.co/aKyXZTdXBZ +05/27/2018,Musicians,@kelly_clarkson,Yes girl 😜 I call it the #ModernMullet https://t.co/5pUXVJWRqc +05/27/2018,Musicians,@kelly_clarkson,"Anyone trying out 4 #TheVoice next season that sounds remotely like this angel, I want u on my team! Please pick me… https://t.co/6m1BB8UiY4" +05/24/2018,Musicians,@kelly_clarkson,@BrynnCartelli @NBCTheVoice @TwitterLA #AskBrynn What are some of your favorite artists that I know you love but ma… https://t.co/PEVJGgWjem +05/24/2018,Musicians,@kelly_clarkson,"@kalebleemusic @itsjackieverna @BairdPryor I missed y’all on the finale BUT that’s okay, it just means I’ll have to… https://t.co/yMElE1iq3p" +05/23/2018,Musicians,@kelly_clarkson,@CedEntertainer is so competitive 😜🤣💁🏼‍♀️ https://t.co/7eH0rswhpb +05/23/2018,Musicians,@kelly_clarkson,"We did it.. and we couldn’t have done it without y’all!! As a special thank you, use code ‘BRYNNFORTHEWIN’ for a sp… https://t.co/4WTedqYRtC" +05/23/2018,Musicians,@kelly_clarkson,So lovely to see you girl! Love the new hair and you sounded amazing! https://t.co/sLpywQyotQ +05/23/2018,Musicians,@kelly_clarkson,"Y’all can now go behind the scenes of the “Meaning Of Life” music video! Check it out! + +Watch it here: https://t.co/q2oZ9UAkcq + +- Team KC" +05/23/2018,Musicians,@kelly_clarkson,We did it y’all!!! @BrynnCartelli is your Season 14 winner of @NBCTheVoice !! 🌟 - Team KC https://t.co/TgvEzXRyWs +05/23/2018,Musicians,@kelly_clarkson,✨We can’t wait for this y’all! Kelly is officially performing at the @CMT Awards!! #AmericanWoman ✨ - Team KC https://t.co/1lmkcvCaRP +05/23/2018,Musicians,@kelly_clarkson,OH MY GOSH I AM SO HAPPY FOR HER HODA!!!!! https://t.co/ULT4KAdIis +05/23/2018,Musicians,@kelly_clarkson,Because you’re always so supportive! Thank you for being so kind and funny 😊🙌😎❤️ https://t.co/5MlVkZ7mWU +05/23/2018,Musicians,@kelly_clarkson,"Um I completely rushed the stage to meet you because I’m such an uber fan! 🤣 Seriously, what an amazing gift it was… https://t.co/9OLKuTxgnE" +05/23/2018,Musicians,@kelly_clarkson,YAAASSSSS #TeamKelly thank y’all so much for making my world work and for being supportive and loving and such awes… https://t.co/GQxBbnSol3 +05/23/2018,Musicians,@kelly_clarkson,The Voice Finale outfit!! ✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Nails: @nailsbytsha Dre… https://t.co/YBpWmR0gNm +05/22/2018,Musicians,@kelly_clarkson,Yaaasssss @itsjackiefoster 🎉🎉🙌🙌❤️❤️ #WalkMyWalk https://t.co/VE3DFzpIh5 +05/22/2018,Musicians,@kelly_clarkson,"In case you missed the @BBMAs check out Kelly’s performance of “Whole Lotta Woman”! + +See it here: https://t.co/ApulU4MTyO + +– Team KC" +05/22/2018,Musicians,@kelly_clarkson,I can’t wait!! 😊🎉🙌💁🏼‍♀️❤️ https://t.co/mHomKwYMc3 +05/22/2018,Musicians,@kelly_clarkson,Yes. Yes it was. 🤣🤣🤣 https://t.co/9tJgcX0LVg +05/22/2018,Musicians,@kelly_clarkson,ABSOLUTELY YES!!!! https://t.co/AcrF5mY71Q +05/22/2018,Musicians,@kelly_clarkson,"Don’t mind me, just jammin’ to my girl @BrynnCartelli new single #WalkMyWay YAAASSSSS!!!! 🎉🙌❤️😎 I love this girl y’… https://t.co/qqu7UBNMdF" +05/22/2018,Musicians,@kelly_clarkson,The @NBCTheVoice finale is here! Do y’all remember the jersey’s that were given to contestants in the blind auditio… https://t.co/3TxroiU1Vf +05/21/2018,Musicians,@kelly_clarkson,Can’t wait to hang in New York soon! Miss y’all 😊💁🏼‍♀️❤️ #TodayShow #KathieLeeAndHoda #GoodTimesPartyForAll https://t.co/JZUp0TR2zv +05/21/2018,Musicians,@kelly_clarkson,I CANNOT WAIT FOR TONIGHT!BRYNN’S NEW SINGLE #WalkMyWay duet #DontDreamItsOver new cover #Skyfall BRYNN 4 THE WIN Y… https://t.co/FpxnIjS7te +05/21/2018,Musicians,@kelly_clarkson,"You and your team are so rad man! Everything you make me is so unique, sassy, and gorgeous!! Thank you again… https://t.co/JPYMF76M3V" +05/21/2018,Musicians,@kelly_clarkson,"Sir, coming from you that is quite the compliment 😊❤️ https://t.co/1Ufm62pZC2" +05/20/2018,Musicians,@kelly_clarkson,✨ Here we go @BBMAs ! #BBMAs ✨ -Team KC https://t.co/PE9U8RLjeP +05/20/2018,Musicians,@kelly_clarkson,I love this @ambersauer 🎉🎉🎉🙌❤️ https://t.co/s0F0nCSPMI +05/18/2018,Musicians,@kelly_clarkson,"Check this out! You can now duet with Kelly on @smule ! Sing ""I Don't Think About You"" and ""Whole Lotta Woman""! –… https://t.co/2b8stYYjoY" +05/18/2018,Musicians,@kelly_clarkson,I wish!! I loved y’alls performance! Y’all had me dancing and singing 😆🎉❤️ https://t.co/dHyU4QYHym +05/18/2018,Musicians,@kelly_clarkson,Love this ❤️ killer job @DBradbery https://t.co/gaWb27i8Ju +05/18/2018,Musicians,@kelly_clarkson,Are you guys ready for the @BBMAs this Sunday?! #BBMAs – TEAM KC https://t.co/G5O08ts0Wj +05/18/2018,Musicians,@kelly_clarkson,THANKS GIRL ❤️😊 I’ve been a fan since #Clueless https://t.co/sxAvRL15OH +05/18/2018,Musicians,@kelly_clarkson,My disco diva nailed her first performance ever!! #RiverRose #ProudMomAlert 😊❤️ kid concerts are the greatest! https://t.co/VSoUqKY3qM +05/17/2018,Musicians,@kelly_clarkson,✨The premiere of @AmericanWomanTV is almost here! Tune in June 7th at 10/9c on @Paramountnet #AmericanWomanTV ✨- T… https://t.co/bfM8s1iBy3 +05/16/2018,Musicians,@kelly_clarkson,This ❤️🙏😊 #TeamKalebForever https://t.co/0o10JSENyY +05/16/2018,Musicians,@kelly_clarkson,We are behind the scenes at the @BBMAs photoshoot! Catch Kelly hosting AND performing on MAY 20th! #BBMAs - Team KC https://t.co/v51SgofFks +05/16/2018,Musicians,@kelly_clarkson,I’m not even sad for @kalebleemusic tonight because this is just the beginning and he was incredible tonight! Thank… https://t.co/mGSehaOeM5 +05/16/2018,Musicians,@kelly_clarkson,RT @NBCTheVoice: Retweet to #VoiceSaveKaleb https://t.co/aS7tLQEL5K +05/16/2018,Musicians,@kelly_clarkson,Please y’all! Let’s save @kalebleemusic ! Make sure to use #VoiceSaveKaleb when the voting window opens! We need as… https://t.co/M1Q7PcozUR +05/16/2018,Musicians,@kelly_clarkson,Get ready to Instant Save @kalebleemusic on @NBCTheVoice !!! Wait until the voting window opens! Let’s save him! +05/15/2018,Musicians,@kelly_clarkson,YAAASSSS!!!! https://t.co/80xM7vo7Ar +05/15/2018,Musicians,@kelly_clarkson,I love all this female power and energy!! Yes ladies!! #TeamBrynn 😊❤️😎 https://t.co/yqlrDqZIfw +05/15/2018,Musicians,@kelly_clarkson,HELL YES!!!! https://t.co/8KqwB56Y4T +05/15/2018,Musicians,@kelly_clarkson,The lives got me like.. #VoteBrynn #VoteKaleb #TheVoice @nbcthevoice https://t.co/yn9qqMyqAY +05/15/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 MUA: @gloglomakeup Hair: @robertramoshair Jumpsuit: @temperleylondon Belt: @dolcegabbana Jew… https://t.co/d8Y1GXX67d +05/14/2018,Musicians,@kelly_clarkson,MY MIND IS BLOWN #Timeless ....I am so happy right now I don’t know what to do. How will I sleep? What in the world… https://t.co/Fz28xglQE5 +05/14/2018,Musicians,@kelly_clarkson,Watching #Timeless finale and I LOVE The General!! Yes!! This show is so cool. I can’t believe this might not be re… https://t.co/2ZTgTD9KmA +05/14/2018,Musicians,@kelly_clarkson,For Mother’s Day I am watching my 3 year old on her baby cam pacing her room and acting out times she’s been in tro… https://t.co/B9BpQucGbo +05/13/2018,Musicians,@kelly_clarkson,ACTIVATING @BBMAs ONE WEEK COUNTDOWN. 05.20 at 8 ET/5 PT on NBC. #KELLY_BBMAs - Team KC https://t.co/GVwPiafllm +05/13/2018,Musicians,@kelly_clarkson,"Happy Mother’s day to all the moms out there! Here is our gift to you! + +WATCH HERE: https://t.co/Rzy8BJW6sS +– Team… https://t.co/vPj1JuAVIW" +05/13/2018,Musicians,@kelly_clarkson,I LOVE THIS!!!! 😊 https://t.co/OADUd8iESy +05/12/2018,Musicians,@kelly_clarkson,"RT @people: Blake Shelton & Kelly Clarkson Team Up for @NBCTheVoice Edition of @hqtrivia to Help Fans Win $50,000 https://t.co/9gfdV7BPHn #…" +05/12/2018,Musicians,@kelly_clarkson,"WHAT IS LIFE??!!!!! I can’t believe I just ran into WYATT!!!!! Literally, best mother’s day weekend ever!!! +PLEASE… https://t.co/PBARTNS8YG" +05/11/2018,Musicians,@kelly_clarkson,"This whole experience is a beautiful moment that @BrittonBuchanan his mother, & his family are sharing. Please don’… https://t.co/Dsl1rv6cZK" +05/11/2018,Musicians,@kelly_clarkson,HACKED!! Big #TheVoice announcement from @IAMJHUD ... https://t.co/7ZSCSVF5HR +05/10/2018,Musicians,@kelly_clarkson,RT @IMS: BREAKING: Grammy Award-winning superstar @kelly_clarkson will perform the National Anthem before the start of the #102ndRunning of… +05/10/2018,Musicians,@kelly_clarkson,I’m so happy you like it! #madewithlovenotperfection 😜😂❤️💁🏼‍♀️ https://t.co/h0TrjXuC4B +05/09/2018,Musicians,@kelly_clarkson,We made it! 🙌 #Top8 #thevoice @NBCTheVoice https://t.co/36VsQx9kzm +05/09/2018,Musicians,@kelly_clarkson,Oh my gosh Dylan HAPPY BIRTHDAY!!!!!! 🎉🎂🎈#SameOleJaneDoe https://t.co/F2TLbkeAMQ +05/09/2018,Musicians,@kelly_clarkson,"✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Shirt & Skirt @gucci Belt @altuzarra +Shoes… https://t.co/GYIEe1wwZk" +05/08/2018,Musicians,@kelly_clarkson,"Go ahead with those sexy, mysterious cowboy poses @kalebleemusic 😎💁🏼‍♀️🙌 https://t.co/CtHY4CB1Zm" +05/08/2018,Musicians,@kelly_clarkson,🤣🤣🤣 we were going for that 80’s rock band ballad look 😜 miss hearing you on the show Wilkes! https://t.co/GOEaGha7QJ +05/08/2018,Musicians,@kelly_clarkson,"Stranger asking my mom: “What’s your name?” +Mom to Stranger: “I’m Kelly Clarkson’s mom.” 🤣🤣🤣 (by the way I wasn’t… https://t.co/2C56ZvwS02" +05/08/2018,Musicians,@kelly_clarkson,@tamyragray Thanks girl!! I literally just finished talking about you in an interview! +05/08/2018,Musicians,@kelly_clarkson,In case you missed the performance of “I Don’t Think About You” on @NBCTheVoice here you go!! ✨💕 - Team KC https://t.co/YLhVl0xIww +05/08/2018,Musicians,@kelly_clarkson,@ajgeagan5800 HAPPY BIRTHDAY 🎈 🎉🎂 +05/08/2018,Musicians,@kelly_clarkson,....the part where Joe Fox comes around the corner 2 meet Kathleen Kelly for the big reveal #YouveGotMail 😭💁🏼‍♀️❤️… https://t.co/U7NC52MObl +05/08/2018,Musicians,@kelly_clarkson,Yaaaassss! #quiltingismyjam ....but don’t look 2 closely because it sort of looks like a high school home economics… https://t.co/Y2MY5Viyl1 +05/08/2018,Musicians,@kelly_clarkson,Here is how to vote for @BrynnCartelli!! Get to voting!!! https://t.co/gmumDZ52sK +05/08/2018,Musicians,@kelly_clarkson,This girl is special y'all! Get your votes in for @BrynnCartelli https://t.co/w8hFk4R37M +05/08/2018,Musicians,@kelly_clarkson,@BrynnCartelli This girl is special y'all!! Get your votes in! https://t.co/w8hFk4R37M +05/08/2018,Musicians,@kelly_clarkson,✨ The Voice show look - Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @dolcegabbana Belt:… https://t.co/zujyJ7Wvsc +05/08/2018,Musicians,@kelly_clarkson,✨IDTAY performance look - Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @moniquelhuillier… https://t.co/kjo7DIRLZ0 +05/08/2018,Musicians,@kelly_clarkson,Remember that time I said vote for @kalebleemusic!!? #VoiceTop10 +05/08/2018,Musicians,@kelly_clarkson,Listen to @kalebleemusic! https://t.co/BWwCOnUP2e +05/08/2018,Musicians,@kelly_clarkson,Y'all better be voting for @kalebleemusic!! #VoiceTop10 https://t.co/XfINWQq3hC +05/07/2018,Musicians,@kelly_clarkson,"Make sure to @Shazam the performance of ""I Don't Think About You"" on @NBCTheVoice tonight for a chance to win a sig… https://t.co/pVfUVgWfau" +05/07/2018,Musicians,@kelly_clarkson,In case you missed it! Kelly is stepping out of the chair and onto @NBCTheVoice stage✨ TONIGHT ✨ to sing her single… https://t.co/rVlYO7opyu +05/07/2018,Musicians,@kelly_clarkson,You’re gonna kill it @brynncartelli 😜❤️🙌 #Vote https://t.co/0jzJOEISGg +05/07/2018,Musicians,@kelly_clarkson,Um 😐....hi 😊💁🏼‍♀️ ....and yes please! 😂 #IHopeYouEndUpWithFlynn ....I know you’re a real person but in my brain mov… https://t.co/9k2qjbZxlF +05/07/2018,Musicians,@kelly_clarkson,Exactly! ....nice pun 😎 live tweet #Timeless Let’s do this! I literally don’t know ANYONE on this show and have no… https://t.co/s5K0AFn1I1 +05/07/2018,Musicians,@kelly_clarkson,"@luanh2001 Super, thanks for asking 😜" +05/07/2018,Musicians,@kelly_clarkson,That’s the spirit!! 🤣 it’s so great! You should watch or DVR if you’re busy. I love it! #RenewTimeless https://t.co/GFqpU5Uv7B +05/06/2018,Musicians,@kelly_clarkson,#Timeless got me feelin’ like.... https://t.co/k4OftNlskq +05/06/2018,Musicians,@kelly_clarkson,"In a world where reality can be terrifying and depressing, isn’t it great to have a show on that is fun, historical… https://t.co/oHa5z7l50b" +05/06/2018,Musicians,@kelly_clarkson,#RenewTimeless https://t.co/L8PgBCwUI3 +05/06/2018,Musicians,@kelly_clarkson,You are 100% correct. I actually forgot the song #Timeless even existed 🤣🤣🤣 but thank you for the reference!… https://t.co/33rdOhLaF1 +05/06/2018,Musicians,@kelly_clarkson,I once recorded a duet titled #Timeless and although it was good it was nothing compared to #NBCTimeless the show.… https://t.co/2jKmIhqFHV +05/06/2018,Musicians,@kelly_clarkson,"Hosting the Billboard Awards on May 20th is gonna be #Timeless ....RENEW TIMELESS PLEASE 😊💁🏼‍♀️ ....yep, I’m not even close to being done." +05/06/2018,Musicians,@kelly_clarkson,Just sitting here thinking about how #Timeless #TheVoice is 😜 ....see what I did there. Oh yes there are so many mo… https://t.co/CJNgP0Hyex +05/06/2018,Musicians,@kelly_clarkson,"Y’all I love this show! Please everyone tweet tonight so they renew it! It’s creative, different from everything el… https://t.co/FIQDfzO5Ml" +05/04/2018,Musicians,@kelly_clarkson,"The Gold #MeaningOfLife Vinyl is available NOW! Pick up your Limited Edition copy today, only at… https://t.co/MwFx5XF7t7" +05/04/2018,Musicians,@kelly_clarkson,Um.... I feel I should apologize in advance if I ever see y’all around on the lot and totally nerd out 😬 ....and YE… https://t.co/9XqmBEKDUw +05/04/2018,Musicians,@kelly_clarkson,Yes!!! Vote Vote Vote!!! https://t.co/Xdj2TGRxrW +05/03/2018,Musicians,@kelly_clarkson,🤔 https://t.co/IrYiZIXey8 +05/03/2018,Musicians,@kelly_clarkson,YAAASSSS!!!! https://t.co/dIzyypBDdM +05/03/2018,Musicians,@kelly_clarkson,....because it’s great! #listentothepeople 😜💁🏼‍♀️ https://t.co/L6Hjzi8WIT +05/03/2018,Musicians,@kelly_clarkson,✨Hope y’all love the ‘American Woman’ cover for @AmericanWomanTV! We can’t wait for the premiere June 7th at 10/9c… https://t.co/N23h14XuQz +05/03/2018,Musicians,@kelly_clarkson,Mia might be one of the most beautiful babies I’ve ever seen! How precious is that face?! 😊❤️ https://t.co/xXSZyByQiN +05/03/2018,Musicians,@kelly_clarkson,Excited to announce that I am not just HOSTING the @BBMAs but I am PERFORMING as well! Tune-in May 20 at 8e|5p on N… https://t.co/40tSRIME6V +05/03/2018,Musicians,@kelly_clarkson,Okay somebody has got to get this man a pass 🤣🤣🤣 he deserves it! 😜💁🏼‍♀️ https://t.co/PQjLXe4JmH +05/03/2018,Musicians,@kelly_clarkson,I LOVE MY TEAM!!!!!!!! #Brynn #Kaleb ❤️❤️❤️ https://t.co/vlGXtgulTl +05/02/2018,Musicians,@kelly_clarkson,"These are some real heroes, y’all! Proud to announce Kelly will be performing for our service members at… https://t.co/nzWKi2g4aO" +05/02/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Leather: @balmain Dress: @dolcegabbana Shoes:… https://t.co/E9MU6nG43r +05/01/2018,Musicians,@kelly_clarkson,"Hey Los Angeles! Kelly is throwing a concert live from The Voice stage in LA and you can enter to attend!! + +Click… https://t.co/m3G96EWBws" +05/01/2018,Musicians,@kelly_clarkson,Yes and yes girl!!!!! https://t.co/oDk42EEWgy +05/01/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @carolinaherrera Shoes: @valentino Belt:… https://t.co/gs7O4RH4Yb +04/30/2018,Musicians,@kelly_clarkson,Are y’all ready for Team Kelly tonight on @NBCTheVoice !!? – Team KC https://t.co/ubgRWpTfQB +04/30/2018,Musicians,@kelly_clarkson,Get it Dylan!!!! https://t.co/se6Riu9YC5 +04/29/2018,Musicians,@kelly_clarkson,Thanks girl! 😊 https://t.co/ZTz1bnis3L +04/28/2018,Musicians,@kelly_clarkson,Yes girl!! https://t.co/68CcXqNLqA +04/27/2018,Musicians,@kelly_clarkson,I just saw this!! Thanks @tishhayneskeys 😊 we miss you 😩 https://t.co/Ku2tnx82Gx +04/27/2018,Musicians,@kelly_clarkson,"RT @BBMAs: #BBMAs 05.20 ON NBC +_User: @DUALIPA /CONFIRMED https://t.co/FEGkqfWaSN" +04/27/2018,Musicians,@kelly_clarkson,"RT @BBMAs: #BBMAs 05.20 ON NBC +_User: @Camila_Cabello /CONFIRMED https://t.co/b2GBfjwlUG" +04/27/2018,Musicians,@kelly_clarkson,We ❤️ Team Kelly @NBCTheVoice - Team KC https://t.co/9PnpAAk9ef +04/26/2018,Musicians,@kelly_clarkson,"Make sure to Shazam the performance of ""I Don't Think About You"" on Ellen DeGeneres for a chance to win a signed go… https://t.co/ArRbyhVtu5" +04/26/2018,Musicians,@kelly_clarkson,"It may be over, but we are still celebrating with another Minute + Glass of Wine! 🍷🎂 🎉 - Team KC + +Watch here:… https://t.co/H0J5U4MT3d" +04/26/2018,Musicians,@kelly_clarkson,Hanging with the real @TheEllenShow this afternoon 😂 - Team KC https://t.co/6PYWIaO3dl +04/26/2018,Musicians,@kelly_clarkson,Thank you @BigSugarBakeshp for creating such amazing cakes for #TeamKC @NBCTheVoice and my birthday. They were beau… https://t.co/FnMSAUKJ6G +04/25/2018,Musicians,@kelly_clarkson,Did y’all catch the Team Kelly performance last night on the @NBCTheVoice !? ✨✨ – Team KC https://t.co/qv4MLdTbIu +04/25/2018,Musicians,@kelly_clarkson,Y’all were so great!! I forgot to say this last night but what an incredibly gifted group of singers y’all are?! Se… https://t.co/JijI8w05iq +04/25/2018,Musicians,@kelly_clarkson,Oh my gosh I just saw this! Thanks guys 😊 https://t.co/4189gZ1pVd +04/25/2018,Musicians,@kelly_clarkson,Y'all want to be a part of the Team Kelly Facebook Group? Click the link below to join! - Team KC… https://t.co/R6zeqjSDsI +04/25/2018,Musicians,@kelly_clarkson,@RyanSeacrest Thanks Ryan 😊 +04/25/2018,Musicians,@kelly_clarkson,Well that was a crap birthday present 😭😔😩 I can’t believe @DRKingnyc just went home. You will find him on stage wit… https://t.co/g4kfb9un1y +04/25/2018,Musicians,@kelly_clarkson,Please vote for @DRKingnyc #voicesaveDRking https://t.co/Cn2jenrf5x +04/25/2018,Musicians,@kelly_clarkson,RT @NBCTheVoice: Retweet to #VoiceSaveDRKing https://t.co/j7zKjJdwiW +04/25/2018,Musicians,@kelly_clarkson,It's time y'all let's save @DRKingnyc ! RETWEET THIS!!! #VoiceSaveDRKing +04/25/2018,Musicians,@kelly_clarkson,RT @kelly_clarkson: @DRKingnyc killed it! Get ready to save him! https://t.co/6c5Tt0DiZt +04/25/2018,Musicians,@kelly_clarkson,@DRKingnyc killed it! Get ready to save him! https://t.co/6c5Tt0DiZt +04/25/2018,Musicians,@kelly_clarkson,Y'all! Get ready to save @DRKingnyc !! https://t.co/xTrPuLgfaG +04/25/2018,Musicians,@kelly_clarkson,Yaaaaaas!!! It’s my birthday!! 🎉🎂✨#Stylist @cdicelove13 #Hair @robertramoshair #Mua @gloglomakeup #Dress:… https://t.co/7lrep5I15Y +04/25/2018,Musicians,@kelly_clarkson,Got to celebrate my birthday with a queen! @aliciakeys https://t.co/tRbhTdMOqV +04/24/2018,Musicians,@kelly_clarkson,Going live on FaceBook at 1:45 PST. Tune in! +04/24/2018,Musicians,@kelly_clarkson,You are literally one of my longest friendships haha! What year was this?? 2003?? https://t.co/DYMY6wj1ID +04/24/2018,Musicians,@kelly_clarkson,"""I Don’t Think About You” on @TheEllenShow !!? Ohh yes! Please! – Team KC https://t.co/McQ9VnaQtd" +04/24/2018,Musicians,@kelly_clarkson,Happy Birthday to another talented woman who shares the same birthday and also happens to have been my favorite cha… https://t.co/HIkpjcsRYp +04/24/2018,Musicians,@kelly_clarkson,#birthdaymood Happy Birthday to one of my favorites who happens to share the same birthday ❤️ #barbra #feelinfancy https://t.co/Eg1aqkipet +04/24/2018,Musicians,@kelly_clarkson,Thanks Jim 😊 https://t.co/ceepaayAkD +06/20/2018,Musicians,@StevieWonder,"Hey Western Mass, Boston & Connecticut! I want to personally invite you to my party, The Stevie Wonder Song Party:… https://t.co/6tit1bA1s5" +06/18/2018,Musicians,@StevieWonder,"Hey DMV! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love and Musi… https://t.co/QD8CSAZTr1" +06/15/2018,Musicians,@StevieWonder,"Hey Jersey, Philly & Delaware! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrati… https://t.co/O0YMcS9uYX" +06/13/2018,Musicians,@StevieWonder,"Hey Vegas & LA! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love a… https://t.co/mYiBdARmYv" +06/11/2018,Musicians,@StevieWonder,"I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love and Music. Get re… https://t.co/2Knm5RTHBc" +06/08/2018,Musicians,@StevieWonder,President @BarackObama and Mrs. @MichelleObama's dreams. Share your dream & post your own #DreamStillLives video.… https://t.co/orUV5ugSMP +06/06/2018,Musicians,@StevieWonder,.@DariusRucker's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/aSOyGSASMs +06/06/2018,Musicians,@StevieWonder,.@NaomiCampbell's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/oDrkc26Cgw +06/06/2018,Musicians,@StevieWonder,.@Lecrae's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/J03trrofZl +06/04/2018,Musicians,@StevieWonder,.@WhoopiGoldberg's full dream. Share your dream in the comments below or post your own Dream Still Lives video wit… https://t.co/eDi1hA2bs5 +06/04/2018,Musicians,@StevieWonder,.@MariahCarey's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/X5dm60BPke +06/04/2018,Musicians,@StevieWonder,.@RepRichmond's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/w3xWegCSB0 +06/01/2018,Musicians,@StevieWonder,.@YaraShahidi's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/J0YCjmn14p +06/01/2018,Musicians,@StevieWonder,.@KirkFranklin's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/3rfLk43iq0 +05/30/2018,Musicians,@StevieWonder,.@ChadwickBoseman’s full dream. Share your dream in the comments below or post your own Dream Still Lives video wi… https://t.co/n2E4HLIfu9 +05/30/2018,Musicians,@StevieWonder,Senator @KamalaHarris' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread h… https://t.co/fipnuD2w5h +05/29/2018,Musicians,@StevieWonder,.@MarkRonson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/2V10MSuAIG +05/29/2018,Musicians,@StevieWonder,.@RevJJackson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/mkmYlKiQcr +05/29/2018,Musicians,@StevieWonder,Meryl Streep's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/f8TQfGlJTP +05/25/2018,Musicians,@StevieWonder,.@ddlovato's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/9ELjoX7FPO +05/25/2018,Musicians,@StevieWonder,.@RyanTedder's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bQaakZEDmN +05/25/2018,Musicians,@StevieWonder,.@SerenaWilliams' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/I01fxNvS6Q +05/23/2018,Musicians,@StevieWonder,.@Noah_Schnapp's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/kehkFfz6Aj +05/23/2018,Musicians,@StevieWonder,.@KeshaRose's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/naGpvMUadq +05/23/2018,Musicians,@StevieWonder,.@SadiqKhan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/iUP3tR8Llp +05/21/2018,Musicians,@StevieWonder,.@MarcMorial's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/odOhqwPvG0 +05/21/2018,Musicians,@StevieWonder,.@MeganNicole's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/O7H9wUgBGV +05/21/2018,Musicians,@StevieWonder,.@JKCorden's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/mdWdTPQeaz +05/18/2018,Musicians,@StevieWonder,Dr. Keith Black's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/1jXZSi3yDk +05/18/2018,Musicians,@StevieWonder,.@RitaWilson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/L115DNn4KA +05/18/2018,Musicians,@StevieWonder,Secretary @AntonioGuterres' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spr… https://t.co/7TkU5X8sEw +05/16/2018,Musicians,@StevieWonder,.@CarmeloAnthony's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/FZDSf1A5uu +05/16/2018,Musicians,@StevieWonder,.@IISuperwomanII (Lilly Singh)'s full dream. Share your dream & post your own #DreamStillLives video. Spread love.… https://t.co/xM9mJzrK7Z +05/16/2018,Musicians,@StevieWonder,.@Harry_Styles' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ZcGH3pr3G0 +05/14/2018,Musicians,@StevieWonder,.@LuisFonsi’s full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/lh8bAtauEj +05/14/2018,Musicians,@StevieWonder,.@HowardStern's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/REAHlBVLkj +05/14/2018,Musicians,@StevieWonder,.@MaryJBlige's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ZAi7LSl1vB +05/11/2018,Musicians,@StevieWonder,.@TylerOakley's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ph3hPxNKcv +05/11/2018,Musicians,@StevieWonder,.@SamuelLJackson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/TN7Era0BvG +05/11/2018,Musicians,@StevieWonder,.@itstonybennett's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/C4kkcFKAGR +05/09/2018,Musicians,@StevieWonder,.@TheChainsmokers' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/B0JGHxMDhH +05/09/2018,Musicians,@StevieWonder,.@Lupita_Nyongo's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/4jEaBY6jEc +05/09/2018,Musicians,@StevieWonder,.@GarthBrook's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/l14GMdWdCH +05/07/2018,Musicians,@StevieWonder,.@BTS_twt's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bV4U3SPSe5 +05/07/2018,Musicians,@StevieWonder,.@NickJonas' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/Xi3tnSRMMe +05/07/2018,Musicians,@StevieWonder,.@TrevorNoah's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/1qBRl6PAWP +05/04/2018,Musicians,@StevieWonder,Arturo Sandoval's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/o8SABxp8uh +05/04/2018,Musicians,@StevieWonder,.@LionelRichie's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/N57Sdv87cz +05/04/2018,Musicians,@StevieWonder,.@JimmyKimmel's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/RghLqGJNfB +05/02/2018,Musicians,@StevieWonder,.@Common's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/kJT4ifrTK9 +05/02/2018,Musicians,@StevieWonder,Sir @PaulMcCartney's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hop… https://t.co/rtnMeh1uNb +04/30/2018,Musicians,@StevieWonder,.@MichaelStrahan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/JA26bki933 +04/30/2018,Musicians,@StevieWonder,.@KatyPerry's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/dMeDRk5jCV +04/30/2018,Musicians,@StevieWonder,.@BonJovi's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/YoujfTVf0u +04/27/2018,Musicians,@StevieWonder,.@iamjamiefoxx's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/xp7O8hm7Jq +04/27/2018,Musicians,@StevieWonder,.@JanelleMonae's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/aPbWyH6ihc +04/27/2018,Musicians,@StevieWonder,.@CharliePuth's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope https://t.co/7sVzexlQvY +04/25/2018,Musicians,@StevieWonder,.@SZA's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/zePoRnkL1S +04/25/2018,Musicians,@StevieWonder,Bruce @Springsteen's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hop… https://t.co/yuZl7ZLbL7 +04/25/2018,Musicians,@StevieWonder,.@GloriaEstefan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/yUKD8zkwuM +04/23/2018,Musicians,@StevieWonder,.@TigerWoods' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/81AGG5dAX3 +04/23/2018,Musicians,@StevieWonder,.@GayleKing’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/uxzhPMsX8t +04/23/2018,Musicians,@StevieWonder,.@DaveMatthewsBnd's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/njd2z5ri0z +04/20/2018,Musicians,@StevieWonder,.@EvaLongoria’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/0F1LVmEneN +04/20/2018,Musicians,@StevieWonder,.@DaveChappelle’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/0BosqOOebv +04/20/2018,Musicians,@StevieWonder,.@BillieJeanKing’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/VP30vN96Yy +04/18/2018,Musicians,@StevieWonder,.@CondoleezzaRice's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/9urLJmDTYp +04/18/2018,Musicians,@StevieWonder,Berry Gordy’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/7BIes3QTz9 +04/18/2018,Musicians,@StevieWonder,.@Cher’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/p93J5wgNmb +04/16/2018,Musicians,@StevieWonder,.@Smokey_Robinson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/qbpf8MsewP +04/16/2018,Musicians,@StevieWonder,.@CliveDavis’ full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/in39oy3XOb +04/16/2018,Musicians,@StevieWonder,.@BetteMidler's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ENIPB9WPy5 +04/10/2018,Musicians,@StevieWonder,.@Tim_Cook's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bvlsbXw1Qj +04/10/2018,Musicians,@StevieWonder,.@AndraDayMusic's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/AlBLf97o7c +04/10/2018,Musicians,@StevieWonder,.@EltonOfficial's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/4uZVT2cijM +04/06/2018,Musicians,@StevieWonder,Robert De Niro’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/HvLKXbfRxR +04/05/2018,Musicians,@StevieWonder,"On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for h… https://t.co/XVJ9Gis9zp" +06/27/2018,Musicians,@kanyewest,https://t.co/keACtfDvtD +06/27/2018,Musicians,@kanyewest,https://t.co/hUzYzgu45U +06/23/2018,Musicians,@kanyewest,https://t.co/GFmMQMI2rI +06/22/2018,Musicians,@kanyewest,I love you brother congratulations https://t.co/bHZApDf3Ol +06/22/2018,Musicians,@kanyewest,https://t.co/gy60h56Izv +06/22/2018,Musicians,@kanyewest,the universe is on our side bro +06/22/2018,Musicians,@kanyewest,RT @TEYANATAYLOR: Teyana Taylor's album listening #KTSE https://t.co/WI9JxL0SVO +06/18/2018,Musicians,@kanyewest,rest in peace 🙏🙏🙏 I never told you how much you inspired me when you were here thank you for existing https://t.co/QU7DR3Ghbw +06/16/2018,Musicians,@kanyewest,😍😍😍 https://t.co/lRkpsQ94iN +06/16/2018,Musicians,@kanyewest,1...2...3...🔥🔥🔥🔥🔥 https://t.co/IPhCypJOhC +06/16/2018,Musicians,@kanyewest,https://t.co/sxOn37QP0h +06/15/2018,Musicians,@kanyewest,RT @Nas: My album release party tonight LIVE with @YouTubeMusic → https://t.co/KF1DIxFaw4 #NASIR +06/15/2018,Musicians,@kanyewest,RT @Nas: The Kids Are Our Future. NASIR out everywhere tomorrow! Executive Produced by @kanyewest #NASIR https://t.co/gpRUBT7FPU +06/14/2018,Musicians,@kanyewest,sometimes I have trouble saying no because I want to help everyone +06/14/2018,Musicians,@kanyewest,this is new for me but it’s just how I feel now. I don’t know why. I thought my ego protected me from doubters so t… https://t.co/pC1d7C5UkK +06/14/2018,Musicians,@kanyewest,Who or what is Kanye West with no ego? Just Ye +06/14/2018,Musicians,@kanyewest,I killed my ego +06/14/2018,Musicians,@kanyewest,your pride can be and will be used against you +06/14/2018,Musicians,@kanyewest,be great without pride +06/14/2018,Musicians,@kanyewest,give without pride +06/14/2018,Musicians,@kanyewest,https://t.co/GBaHHmLIL3 +06/14/2018,Musicians,@kanyewest,"RT @s_lomba1: Thank you for #KidsSeeGhosts , @KidCudi and @kanyewest . Reborn’s meaning is as beautiful as the album artwork. Thanks a bunc…" +06/14/2018,Musicians,@kanyewest,"RT @LuisRagon7: ""Everybody want world peace, till your niece gets shot in the dome-piece, then you go and get your own piece, hoping it'll…" +06/14/2018,Musicians,@kanyewest,😢🙏🙏🙏🙏 https://t.co/0Z5HDZFnx4 +06/14/2018,Musicians,@kanyewest,RT @Bubbabue: @kanyewest Your album #ye is an inspiration. I can completely relate to every song. I’m going through my own issues right no… +06/14/2018,Musicians,@kanyewest,RT @danicapelli: i remember tweeting about synchronicities but this whole era really takes the cake for me. this man call bipolar disorder… +06/13/2018,Musicians,@kanyewest,Leaders create leaders +06/13/2018,Musicians,@kanyewest,https://t.co/PEeKDDUrSl +06/13/2018,Musicians,@kanyewest,Supermoon YEEZY desert rat campaign shot by Eli Linnetz 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +06/13/2018,Musicians,@kanyewest,https://t.co/ZZyma1RDde +06/13/2018,Musicians,@kanyewest,https://t.co/D6ubUZF11o +06/13/2018,Musicians,@kanyewest,https://t.co/0rZFimqlOb +06/13/2018,Musicians,@kanyewest,https://t.co/bgaE5M6Pq0 +06/13/2018,Musicians,@kanyewest,https://t.co/hbtCFijEVT +06/13/2018,Musicians,@kanyewest,https://t.co/lUYf1h5MBe +06/13/2018,Musicians,@kanyewest,https://t.co/MU16ssRl6E +06/13/2018,Musicians,@kanyewest,https://t.co/N7RRqUiY0f +06/13/2018,Musicians,@kanyewest,https://t.co/pPafVRL2ai +06/13/2018,Musicians,@kanyewest,https://t.co/v0dMpbHO4s +06/13/2018,Musicians,@kanyewest,https://t.co/CLrZhCuPfV +06/13/2018,Musicians,@kanyewest,https://t.co/ldZmPj3ZL5 +06/13/2018,Musicians,@kanyewest,https://t.co/elaym8M5nD +06/13/2018,Musicians,@kanyewest,https://t.co/DxKBC17uLE +06/13/2018,Musicians,@kanyewest,https://t.co/t92ZyCK5Jv +06/13/2018,Musicians,@kanyewest,https://t.co/tElIvc7ujx +06/13/2018,Musicians,@kanyewest,https://t.co/9v3l7dAo2k +06/13/2018,Musicians,@kanyewest,https://t.co/9sp8bwb6Ko +06/13/2018,Musicians,@kanyewest,https://t.co/VdJKyDmcVJ +06/13/2018,Musicians,@kanyewest,https://t.co/ajULgsReUe +06/13/2018,Musicians,@kanyewest,https://t.co/tFwZXfZjH9 +06/13/2018,Musicians,@kanyewest,https://t.co/X4V2wyDhVq +06/13/2018,Musicians,@kanyewest,https://t.co/onz2qOLATS +06/13/2018,Musicians,@kanyewest,https://t.co/6bASsjft0i +06/13/2018,Musicians,@kanyewest,https://t.co/mrAGKDdxwo +06/13/2018,Musicians,@kanyewest,https://t.co/3F7rlUTQzS +06/13/2018,Musicians,@kanyewest,https://t.co/CJh6fxxT1W +06/13/2018,Musicians,@kanyewest,https://t.co/ahgFhhq9QD +06/13/2018,Musicians,@kanyewest,https://t.co/ZN5OHzjTsj +06/13/2018,Musicians,@kanyewest,https://t.co/wIReZapSje +06/13/2018,Musicians,@kanyewest,https://t.co/Qe113Iwx2N +06/13/2018,Musicians,@kanyewest,https://t.co/0ZwE3jnBw4 +06/13/2018,Musicians,@kanyewest,https://t.co/x4q8U34qUS +06/12/2018,Musicians,@kanyewest,freeeeeeeeeee https://t.co/ioKUaaVy2a +06/12/2018,Musicians,@kanyewest,I be taking naps +06/12/2018,Musicians,@kanyewest,Bloody Dior in Wyoming hoodie https://t.co/RkRAtb0BfL +06/12/2018,Musicians,@kanyewest,https://t.co/V7ZeBuufOB +06/12/2018,Musicians,@kanyewest,your guys writing and approach is so innovative … I love how you guys break the 4th wall… thank you for being innov… https://t.co/fkay133ewy +06/12/2018,Musicians,@kanyewest,I love both Deadpool movies🔥🔥🔥🔥🔥🔥🔥🔥🔥… I heard tracks in it that sound similar to mine… bro I would have cleared my music for Deadpool … +06/12/2018,Musicians,@kanyewest,Thank you to my wife for throwing me the most beautiful fun and intimate birthday party https://t.co/1ZR4DlCtMc +06/12/2018,Musicians,@kanyewest,https://t.co/bw7xN9wl8g https://t.co/ri1kM8GUEh +06/12/2018,Musicians,@kanyewest,Thank you to everyone who supported our 8th number 1 album 🙌🙌🙌🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 all love all great energy… https://t.co/AdUmHGnfd7 +06/12/2018,Musicians,@kanyewest,https://t.co/PsUa8R6g67 +06/12/2018,Musicians,@kanyewest,https://t.co/4wDx2pfzew +06/12/2018,Musicians,@kanyewest,😢 https://t.co/c5v5fuSBgz +06/12/2018,Musicians,@kanyewest,https://t.co/fopemnwiMI +06/11/2018,Musicians,@kanyewest,7 deadly sins https://t.co/YczOcBEMdY +06/11/2018,Musicians,@kanyewest,We’re trying new ideas without the fear of not being perfect… It’s just a gut feeling sometimes… just making stuff with your friends… +06/11/2018,Musicians,@kanyewest,We’re here creating in real time just having fun. I hear the albums blasting out of the cars when I walk down t… https://t.co/Btr6jZBeYP +06/11/2018,Musicians,@kanyewest,Just wanted to say I’m up in the morning working on the Nas album and I’m so humbled by all the love we’re getting… https://t.co/0KpWPPvzt0 +06/11/2018,Musicians,@kanyewest,😂 https://t.co/zD0cQryW3j +06/11/2018,Musicians,@kanyewest,😂 https://t.co/0cbuZDQSuO +06/08/2018,Musicians,@kanyewest,Download the @WAV_Media app https://t.co/HxSvFHiSrY to watch the livestream of the KIDS SEE GHOSTS listening party tonight @ 8pm PST +06/07/2018,Musicians,@kanyewest,RT @tylerthecreator: see if i was tryna relate to more people i would say im struggling with loving myself because that seems like a common… +06/07/2018,Musicians,@kanyewest,https://t.co/ssV4UeFpiL +06/07/2018,Musicians,@kanyewest,"RT @CNN: BREAKING: Alice Marie Johnson has just been released from prison after Trump commuted her sentence. ""I'm just so thankful. I feel…" +06/06/2018,Musicians,@kanyewest,RT @mic: BREAKING: President Trump has granted clemency to #AliceMarieJohnson after meeting with @KimKardashian West to talk about her case… +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: BEST NEWS EVER!!!! 🙏🏼🙏🏼🙏🏼 https://t.co/JUbpbE1Bk0 +06/06/2018,Musicians,@kanyewest,"RT @KimKardashian: So grateful to @realDonaldTrump, Jared Kushner & to everyone who has showed compassion & contributed countless hours to…" +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: I hope to continue this important work by working together with organizations who have been fighting this fight for much… +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: The phone call I just had with Alice will forever be one of my best memories. Telling her for the first time and hearing… +06/06/2018,Musicians,@kanyewest,https://t.co/r2idQETRCQ +06/06/2018,Musicians,@kanyewest,RT @KidCudi: KIDS SEE GHOSTS ALBUM ART https://t.co/MVt5vIzlA1 +06/06/2018,Musicians,@kanyewest,https://t.co/bYVgnuMASB +06/06/2018,Musicians,@kanyewest,🙏🙏🙏 all love to her family https://t.co/p3cu3CUdw5 +06/06/2018,Musicians,@kanyewest,#1 in 83 countries 🙌🙌🙌 https://t.co/Z8FC9LPL7W +06/06/2018,Musicians,@kanyewest,https://t.co/FQUdTnViNC +06/04/2018,Musicians,@kanyewest,I feel so blessed. For everyone that didn't turn they back. I'm in tears right now. I love all of you https://t.co/8jwIALBsDu +06/03/2018,Musicians,@kanyewest,😍😍😍 https://t.co/PfxbSlZTNw +06/02/2018,Musicians,@kanyewest,"For all my dogs that stayed down, we up again 🙌🙌🙌 https://t.co/HSSyZeTI30" +06/02/2018,Musicians,@kanyewest,https://t.co/mramWmhY1S +06/02/2018,Musicians,@kanyewest,I’ve never been about beef    I’m about love    lines were crossed and it’s not good for anyone    so this is dead now +06/02/2018,Musicians,@kanyewest,https://t.co/gtu95VUe64 +06/02/2018,Musicians,@kanyewest,https://t.co/ngNMZjM7tN +06/01/2018,Musicians,@kanyewest,"https://t.co/SScskeUWQs + +https://t.co/qMCfkQTjLy + +https://t.co/pa0iHEIdZT" +06/01/2018,Musicians,@kanyewest,https://t.co/xYu7lH1rZ7 +06/01/2018,Musicians,@kanyewest,"Download the @WAV_Media app https://t.co/HxSvFHiSrY  to watch the livestream of my album listening tonight in Jackson Hole, Wyoming 7PM MDT" +05/25/2018,Musicians,@kanyewest,https://t.co/3YFh8MIHIH +05/25/2018,Musicians,@kanyewest,New Flacko 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/F3lAEVGX4A +05/25/2018,Musicians,@kanyewest,https://t.co/QAZmYHt4eA +05/25/2018,Musicians,@kanyewest,🔥🔥🔥 This is one of my favorite moments. https://t.co/LLhZlU7fAG +05/25/2018,Musicians,@kanyewest,gratitude and happiness best describe what my wife means to me. I’m deeply grateful and purely happy 😊 +05/24/2018,Musicians,@kanyewest,Daytona is the first project out of Wyoming. I’m really proud of what we put together. We’ve spent a year and a… https://t.co/rnQ2uXTSeE +05/24/2018,Musicians,@kanyewest,album 1 PUSHA T DAYTONA dropping 2mrw https://t.co/M1UPvax5fa +05/21/2018,Musicians,@kanyewest,before Edward Bernays Americans purchased things based off needs There was a a time in the 20s when women did… https://t.co/FQMq29vChC +05/21/2018,Musicians,@kanyewest,the century of self https://t.co/JVvJby2TFq It’s 4 hours long but you’ll get the gist in the first 20 minu… https://t.co/6h5mjB1qih +05/21/2018,Musicians,@kanyewest,Google dopamine +05/21/2018,Musicians,@kanyewest,there was a time when we completely operated without phones. We're addicted to our phones. +05/21/2018,Musicians,@kanyewest,Look at your phone as tool not an obligation. Would you walk around with a hammer in your pocket? You would p… https://t.co/U7lY1tRZXH +05/21/2018,Musicians,@kanyewest,Amma Mata had given over 32 million hugs https://t.co/OBotiHWZUU +05/21/2018,Musicians,@kanyewest,sometimes we all need hugs +05/20/2018,Musicians,@kanyewest,Very cozy. Sleeping in the studio https://t.co/hZk0UEW81G +05/17/2018,Musicians,@kanyewest,"🤣🤣🤣 +https://t.co/I8lcHB8gxf" +05/15/2018,Musicians,@kanyewest,https://t.co/o5GyOkB2hg +05/15/2018,Musicians,@kanyewest,for anyone whose tried to text or call me in the past 2 weeks I got rid of that phone so I could focus on these albums +05/14/2018,Musicians,@kanyewest,The United Nations introduced the Sustainable Development goals and platform in 2015 to transform the world by 2030 https://t.co/ufbZlURwPA +05/12/2018,Musicians,@kanyewest,rules are structure for people who can’t carve their own path successfully +05/11/2018,Musicians,@kanyewest,100% I love the way you think. I’ll reach out https://t.co/MVqBKd0vaM +05/10/2018,Musicians,@kanyewest,approved 700 V2 color way Q4 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/IWAzItCnEK +05/10/2018,Musicians,@kanyewest,https://t.co/eUnzwhr72z      This is the greatest news      This is my favorite show     I’ve seen every episode at least 5 times each +05/08/2018,Musicians,@kanyewest,free thinking is a super power +05/08/2018,Musicians,@kanyewest,🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/yEYJP7qrvf +05/07/2018,Musicians,@kanyewest,https://t.co/5Fe6LJqAQo +05/07/2018,Musicians,@kanyewest,https://t.co/y2DHIlfl9Q +05/07/2018,Musicians,@kanyewest,original 350 sample https://t.co/MVn5J579t8 +05/07/2018,Musicians,@kanyewest,It’s about the feeling first https://t.co/4x2wkCMidR +05/07/2018,Musicians,@kanyewest,I’m hyper focused on the now +05/07/2018,Musicians,@kanyewest,https://t.co/pRxvzbTu7c +05/06/2018,Musicians,@kanyewest,Childish Gambino - This is America https://t.co/sknjKSgj8c +05/06/2018,Musicians,@kanyewest,😂😂😂🔥🔥🔥 https://t.co/KmvxIwKkU6 +05/06/2018,Musicians,@kanyewest,we’re starting a Yeezy architecture arm called Yeezy home. We’re looking for architects and industrial designers wh… https://t.co/0DGrDZ9DEz +05/06/2018,Musicians,@kanyewest,naps are awesome +05/06/2018,Musicians,@kanyewest,All music coming out of Yeezy sound has to ride like the new Tesla Yeezy sound is Tesla radio +05/06/2018,Musicians,@kanyewest,hologram https://t.co/yx0N61hrcr +05/05/2018,Musicians,@kanyewest,I love the 700 V2s https://t.co/tVCUz4GZpL +05/05/2018,Musicians,@kanyewest,take a walk outside. Fresh air is healing +05/04/2018,Musicians,@kanyewest,"In a moment of inspiration, energy and excitement I had posted this sketch and would like to acknowledge the true c… https://t.co/e6rRdA9Ae4" +05/04/2018,Musicians,@kanyewest,Today I learned that a newly hired designer on the Yeezy team presented work that was not of their own. This person… https://t.co/56QUEjfpA7 +05/04/2018,Musicians,@kanyewest,enjoy the present +05/04/2018,Musicians,@kanyewest,if you’re in the way of your own life you’ll end up in the way of other people’s lives too +05/04/2018,Musicians,@kanyewest,I can’t wait for electric planes. Elon please hurry up with the ⚡️ jets😭 +05/04/2018,Musicians,@kanyewest,I can still feel the love +05/03/2018,Musicians,@kanyewest,@yeezy https://t.co/hVoaVm3EUY +05/03/2018,Musicians,@kanyewest,https://t.co/IxydIAseI0 +05/03/2018,Musicians,@kanyewest,https://t.co/5smCEzqTmA +05/03/2018,Musicians,@kanyewest,https://t.co/d3FttWufBL +05/03/2018,Musicians,@kanyewest,https://t.co/jZ62l9x8GV +05/03/2018,Musicians,@kanyewest,https://t.co/jCkREE9NzP +05/03/2018,Musicians,@kanyewest,https://t.co/MO7BYwIB0b +05/03/2018,Musicians,@kanyewest,https://t.co/IeNUbKXIZH +05/02/2018,Musicians,@kanyewest,https://t.co/cGFzbVSNS6 +05/02/2018,Musicians,@kanyewest,this is so helpful. I'm always a student. I'm learning about love https://t.co/IknblRx4Pk +05/02/2018,Musicians,@kanyewest,most fear is learned +05/02/2018,Musicians,@kanyewest,energy meeting. Beings from all different backgrounds https://t.co/iJteS5MMbY +05/02/2018,Musicians,@kanyewest,"when the media masses and scholars talk about what started today. Here's a title ... + +the overground hell road" +05/01/2018,Musicians,@kanyewest,in school we need to learn how magic Johnson built his business not always about the past. Matter fact I've never e… https://t.co/pbEjTJeCgR +05/01/2018,Musicians,@kanyewest,we are programmed to always talk and fight race issues. We need to update our conversation. +05/01/2018,Musicians,@kanyewest,the universe has a plan. I knew that TMZ would be awesome. +05/01/2018,Musicians,@kanyewest,we need to have open discussions and ideas on unsettled pain +05/01/2018,Musicians,@kanyewest,https://t.co/sq66Kaz3yc +05/01/2018,Musicians,@kanyewest,https://t.co/alJp679tHp +05/01/2018,Musicians,@kanyewest,Thank you Shade room for the love https://t.co/kiclvIpFSS +05/01/2018,Musicians,@kanyewest,we got love. Doing TMZ live with Harvey and Candace Owens https://t.co/yoZdHwpdis +05/01/2018,Musicians,@kanyewest,https://t.co/Br5kIafXtG Charlamagne interview also on YouTube +05/01/2018,Musicians,@kanyewest,https://t.co/V7ZeBuufOB Charlamagne interview +05/01/2018,Musicians,@kanyewest,Making of ye vs the people https://t.co/1xvft3175J +05/01/2018,Musicians,@kanyewest,stop thinking about things for a long time without saying what you think +04/30/2018,Musicians,@kanyewest,Eli with the drip https://t.co/FlNgliReGv +04/30/2018,Musicians,@kanyewest,Open letter from Jan Adams    This is amazing. Thank you so much for this connection brother. I can't wait to sit w… https://t.co/ZRRDi0r8GY +04/30/2018,Musicians,@kanyewest,we're starting WORLD LOVE 1 right now the opposite of a WORLD WAR +04/30/2018,Musicians,@kanyewest,Through speech it may be saying simply the word love at the end of a phone call or just saying much love. +04/30/2018,Musicians,@kanyewest,"I feel it was heavy handed for me to tell people to tell people ""I love you"" I would ask that we show love how eve… https://t.co/3HX9nQOMzu" +04/30/2018,Musicians,@kanyewest,We are all great artists. I said something ego driven in the Charlamagne interview that I'd like to update. I said… https://t.co/vOcA8SE8du +04/30/2018,Musicians,@kanyewest,https://t.co/sIVjyPJslJ +04/30/2018,Musicians,@kanyewest,Adi Shankar   We got love https://t.co/dyJyLRF79e +04/30/2018,Musicians,@kanyewest,https://t.co/KTgTcvfsAC +04/30/2018,Musicians,@kanyewest,love is infinite +04/30/2018,Musicians,@kanyewest,infinite possibilities https://t.co/SogcrHMmx3 +04/30/2018,Musicians,@kanyewest,https://t.co/kuyAZxv85h +04/30/2018,Musicians,@kanyewest,https://t.co/DMqCuG5DP8 +04/30/2018,Musicians,@kanyewest,Axel Vervoordt the globe +04/30/2018,Musicians,@kanyewest,Candace Owens wrote this at the Office yesterday https://t.co/3utFm74k75 +04/30/2018,Musicians,@kanyewest,https://t.co/HrkNlEAxMc +04/30/2018,Musicians,@kanyewest,we’re opening up the conversation to the psychologists sociologists and philosophers of the world and we're moving… https://t.co/AifFGXQd7f +04/30/2018,Musicians,@kanyewest,"Yeezy is also food shelter communication education and now a VC + +we've invested in 3 companies since last week" +04/30/2018,Musicians,@kanyewest,There has never been a Disney or Apple of apparel and now there is. We are hiring the greatest technical and indust… https://t.co/ybClLIhfeH +04/30/2018,Musicians,@kanyewest,"🔥🔥🔥 +this is where a YEEZY study for base layer starts. I'm so excited about our new design team. Yeezy is no longer… https://t.co/dKOcgLFGOE" +04/30/2018,Musicians,@kanyewest,🔥🔥🔥😊😊😊 just great energy bro 🐉 https://t.co/QYLzHkCLHg +04/30/2018,Musicians,@kanyewest,Try to avoid repetition do meetings in different places and at different times than the normal break the normal +04/30/2018,Musicians,@kanyewest,https://t.co/NmkDiG5IbM +04/30/2018,Musicians,@kanyewest,https://t.co/CeVEZmJBHb +06/16/2018,Musicians,@kendricklamar,Proud of the bro for this one. Growth. https://t.co/iSYFQ2uaew +06/09/2018,Musicians,@kendricklamar,🌊 https://t.co/2kiP5TAkM1 +06/05/2018,Musicians,@kendricklamar,RT @jayrock: Road to #Redemption Trailer https://t.co/sqUyjsnd6E +05/25/2018,Musicians,@kendricklamar,https://t.co/zg5m9qEf2D ☠️ +05/25/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +5/25 ATLANTA, GA | WISH | 453 MORELAND AVE NE, ATLANTA, GA 30307 | 11AM - 7PM | #TDE https://t.co/UDlZHnmlwd" +05/24/2018,Musicians,@kendricklamar,RT @inglewoodSiR: Tickets On Sale Starting Now @ArinRayCamp 🌊🌊🌊 https://t.co/zH6quCdkMl https://t.co/87HgmMyCxZ +05/22/2018,Musicians,@kendricklamar,RT @dangerookipawaa: Championship Tour Update... https://t.co/7w1i9q6WwZ +05/22/2018,Musicians,@kendricklamar,RT @jayrock: NEW ALBUM “REDEMPTION” COMING 06/15/18 #TDE 📷: @miyatola https://t.co/kwntXcFwum +05/19/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +5/19 - 5/20 HOUSTON, TX | SOCIAL STATUS | 1201 FANNIN ST, HOUSTON, TX 77002 | 9AM - 7PM | #TDE… https://t.co/4pOJnbBO4G" +05/18/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THECHAMPIONSHIPSHOP +5/18 AUSTIN, TX | SOUTH OF EVERYWHERE | 2324 S LAMAR BLVD,  AUSTIN, TX 78704 | 11AM - 7PM https://t.co…" +05/16/2018,Musicians,@kendricklamar,RT @dangerookipawaa: WIN WIN WIN. https://t.co/NGmRiZUqyW https://t.co/mbQCRLCzM3 +05/13/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THECHAMPIONSHIPSHOP +5/13 SAN DIEGO, CA | GYM STANDARD | 2903 EL CAJON BLVD, SAN DIEGO, CA 92104 | 11AM - 7PM https://t.co/…" +05/10/2018,Musicians,@kendricklamar,"LA, pull up. @Lyft enter the code CHAMPIONLA - get 25% off a ride to and from the Forum. #GiftfromLyft https://t.co/lDbWeGE68e" +05/10/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: Access to The Championship Shop - Los Angeles will be given on a FIRST COME, FIRST SERVED BASIS. All previously raffled wri…" +05/09/2018,Musicians,@kendricklamar,RT @TopDawgEnt: NIKE X TDE AT @blendsla TODAY. DOORS NOW OPEN. #TDE https://t.co/iNVuPnGve4 +05/08/2018,Musicians,@kendricklamar,"2DAY! #THECHAMPIONSHIPSHOP +05/08 OAKLAND, CA | @ OAKLANDISH | 1444 BROADWAY OAKLAND, CA 94612 | 11AM - 7PM #TDE https://t.co/jrYpEjrVwe" +05/07/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: At the first stop of the six-city TDE x NIKE Championship Shop Tour, Blends DTLA will host a live raffle for access to shop…" +05/06/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +05/06 PORTLAND, OR | MACHUS | 542 E BURNSIDE ST. PORTLAND, OR 97214 | 11AM - 7PM #TDE https://t.co/67u9dS1exc" +05/04/2018,Musicians,@kendricklamar,RT @inglewoodSiR: D’Evils // 🎥 Dir. by Karena Evans https://t.co/ZqdO3sZe4Y // https://t.co/AcDP7la2Nr https://t.co/BTeDO0D6NT +05/03/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: FRI 05/04 #THECHAMPIONSHIPSHOP +5/04 VANCOUVER, BC | LIVESTOCK | 141 E PENDER ST, VACOUVER, BC V6A 1T6, CANADA | 11AM - 7PM…" +04/30/2018,Musicians,@kendricklamar,".@TOPDAWGENT Presents: The CHAMPIONSHIP Shop | Pop-Up shops across North America, select locations produced in conj… https://t.co/VUjgTAkCSc" +04/29/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: TICKETS ON SALE TODAY @kendricklamar #DAMN (AUSTRALIA/NEW ZEALAND) + +AUS: https://t.co/HTpnm9vXBN + +NZ: https://t.co/x8Y9Egf…" +04/27/2018,Musicians,@kendricklamar,RT @dangerookipawaa: . @TopDawgEnt Presents: “The CHAMPIONSHIP Shop” https://t.co/DfEOAAh6Kc #TDE https://t.co/TDAdbD8VoQ +04/17/2018,Musicians,@kendricklamar,RT @miyatola: #TDE 🏆 Tour - https://t.co/fIN30IwxLz +04/08/2018,Musicians,@kendricklamar,RT @dangerookipawaa: It’s time to show our fans some love! #TDE Fan Appreciation Free Tees!!! Follow my ig page… https://t.co/iyKepFF6I4 +04/06/2018,Musicians,@kendricklamar,https://t.co/TDvrcY6t3R 🌊🌊🌊 +03/29/2018,Musicians,@kendricklamar,RT @dangerookipawaa: Let’s get it DG #TDE https://t.co/qBsnNU1oVr +03/28/2018,Musicians,@kendricklamar,Big Mingo said pull up champion... https://t.co/aqGVNboR5p +03/26/2018,Musicians,@kendricklamar,https://t.co/l5F0aYwLDo 🔥🔥🔥 +03/10/2018,Musicians,@kendricklamar,RT @stro: Stro - Steal & Rob. #RIPBIG https://t.co/HAkevYrxbF https://t.co/Aa9fbPPQIN +03/10/2018,Musicians,@kendricklamar,RT @jayworthy142: https://t.co/FgxfiWeIxG +03/08/2018,Musicians,@kendricklamar,https://t.co/v1K8meoDX8 +03/01/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP FRI - 03/02 OSLO, NORWAY| STRESS | +KIRKGATA 34, 0153 OSLO, NORWAY https://t.co/L8yF0YlakC" +02/28/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP THUR - 03/01 COPENHAGEN, DENMARK | STORM | STORE REGNEGADE 1, 1110 COPENHAGEN, DENMARK https://t.co/Jv3shEj4XI" +02/27/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP TUES - 02/27 ANTWERPEN, BELGIUM | VIER | KAMMENSTRAAT 62, 2000 ANTWERPEN, BELGIUM https://t.co/BMFQOYAFK6" +02/26/2018,Musicians,@kendricklamar,https://t.co/DgtQnyPv94 +02/23/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP SAT 02/24 PARIS, FRANCE | NOUS | 48 ROU CAMBON, 75001 PARIS, FRANCE https://t.co/Ze6lDvlFIl" +02/22/2018,Musicians,@kendricklamar,@Luxxkjr Goodlookin on my watch brick head toddler...I'm on! +02/21/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP THU 02/22 - FRI 02/23/18 ROTTERDAM, NETHERLANDS| ANSH46 | VAN OLDENBARNEVELTSTRAAT 99, 3012 GS ROTTER… https://t.co/LItXZaMibP" +02/19/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP TUES 02/20 - LONDON, UK | SELFRIDGES & CO.| 400 OXFORD ST., +MARLYLEBONE, LONDON, W1A 1AB U.K. https://t.co/DKl64uyOr5" +02/19/2018,Musicians,@kendricklamar,Honorable https://t.co/rs7aLqixWO +02/17/2018,Musicians,@kendricklamar,https://t.co/IHDNKhR27l +02/16/2018,Musicians,@kendricklamar,https://t.co/eV0h7S1k7N +02/15/2018,Musicians,@kendricklamar,"RT @dangerookipawaa: NEW VIDEO ""King's Dead"" https://t.co/f0FutwoWcG #TDE" +02/15/2018,Musicians,@kendricklamar,@Eazee OG Eazee +02/14/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THEDAMNPOPUP 02/15 - FRANKFURT, GERMANY | THE LISTENER | STEPHANSTRAßE 3, 60313 FRANKFURT AM MAIN, GERMANY https://t.co/St…" +02/14/2018,Musicians,@kendricklamar,https://t.co/qpPL1oqlTV | EUROPE https://t.co/7ws81hMUDW +02/11/2018,Musicians,@kendricklamar,"Black Panther + +Respect to all the artist/producers that allowed me to execute a sound for the soundtrack. + +The con… https://t.co/UJ5BtdTWxa" +02/11/2018,Musicians,@kendricklamar,All-Star Weekend Night Game. https://t.co/7pKX7abYt5 https://t.co/rnzNkwfjlY +02/09/2018,Musicians,@kendricklamar,@Jayrhome_gh 😂 +02/09/2018,Musicians,@kendricklamar,https://t.co/v1K8meoDX8 https://t.co/m1uqjPJimj +02/06/2018,Musicians,@kendricklamar,https://t.co/RExuaFTtQc +02/06/2018,Musicians,@kendricklamar,"THIS FRIDAY, 2/9. https://t.co/v1K8meoDX8 https://t.co/3muVKs7zTg" +01/31/2018,Musicians,@kendricklamar,Black Panther The Album 2/9 https://t.co/MqhsEcj6iF +01/30/2018,Musicians,@kendricklamar,"RT @thefader: Meet Charm La’Donna, the unforgettable dancer Kendrick Lamar brought to the Grammys. https://t.co/UvkrUOq8id https://t.co/ZYh…" +01/24/2018,Musicians,@kendricklamar,Snapped! https://t.co/Q5Av09NDQR +01/24/2018,Musicians,@kendricklamar,@iambekon get with the times!https://t.co/WYO8Mcl9uQ +01/24/2018,Musicians,@kendricklamar,"@iambekon get with the times! + +https://t.co/WYO8Mcl9uQ" +01/22/2018,Musicians,@kendricklamar,Amazing https://t.co/a3LVkFKpOJ +01/22/2018,Musicians,@kendricklamar,RT @dangerookipawaa: . @TopDawgEnt PRESENTS: THE CHAMPIONSHIP TOUR https://t.co/UOCPJIcyQh +01/19/2018,Musicians,@kendricklamar,https://t.co/3FWQ23NJI8 +01/17/2018,Musicians,@kendricklamar,RT @inglewoodSiR: “Summer in November” directed by Karena Evans | https://t.co/tqfbnxteSW | https://t.co/0IgCTymW75 https://t.co/5RC1W15fbV +01/12/2018,Musicians,@kendricklamar,"RT @dangerookipawaa: Chess Moves 2018 ""King's Dead"" https://t.co/f3B3mURhuV @jayrock #TDE https://t.co/7LdLduLiMx" +01/10/2018,Musicians,@kendricklamar,@dopeboySHAKE Minor setbacks for major comebacks. Push through it. Culture will need you. More. +01/05/2018,Musicians,@kendricklamar,"RT @MarvelStudios: .@KendrickLamar, @DangerooKipawaa, and @TopDawgEnt will curate and produce #BlackPanther: The Album, Music from and Insp…" +01/04/2018,Musicians,@kendricklamar,RT @dangerookipawaa: 1st move of 2018. #TDE https://t.co/p49N4tOZEq +12/28/2017,Musicians,@kendricklamar,RT @pharoahemonch: My life is all I have. https://t.co/pgFGfEeDEc +12/27/2017,Musicians,@kendricklamar,RT @inglewoodSiR: Something Foreign https://t.co/1RPcKMT9Nz +12/22/2017,Musicians,@kendricklamar,https://t.co/N74YuZqAPW +12/20/2017,Musicians,@kendricklamar,RT @dangerookipawaa: 🎶 Schest nuts roash-ting on a open fyah... Jack Frossh nipping from your nosehhhh 🎶 @rihanna @E40 #TDEXMAS17 https://t… +12/19/2017,Musicians,@kendricklamar,DON'T TRIP. CORTEZ KENNY https://t.co/KK0FemMsH3 +12/15/2017,Musicians,@kendricklamar,RT @dangerookipawaa: We back home. 4th Annual @TopDawgEnt holiday concert n toy giveaway 12/21 #TDEXMAS17 https://t.co/TdTfbrS9xa +12/15/2017,Musicians,@kendricklamar,It’s snow season @jeezy #Pressure out now 💎 #TrustYaProcess https://t.co/v6iSPvkD5K https://t.co/vXILb3S3s4 +12/08/2017,Musicians,@kendricklamar,RT @kendricklamar: COLLECTORS EDITION. https://t.co/gxWq1aCVCn https://t.co/DzMtsAvv6L +12/08/2017,Musicians,@kendricklamar,COLLECTORS EDITION. https://t.co/gxWq1aCVCn https://t.co/DzMtsAvv6L +12/07/2017,Musicians,@kendricklamar,"RT @HotNewHipHop: Check out the latest from @kendricklamar collaborator @iambekon. #coldasice + +https://t.co/AqbJZXEeRn" +11/30/2017,Musicians,@kendricklamar,RT @TopDawgEnt: #THEDAMNPOPUP WARPED.12/9/17-12/10/17 (12-8PM) #TDE https://t.co/BTDEqaPifw +11/29/2017,Musicians,@kendricklamar,"RT @inglewoodSiR: https://t.co/3JwkkzcU98 +https://t.co/z71kZfhPnO https://t.co/kesAp6pR7I" +11/28/2017,Musicians,@kendricklamar,https://t.co/6Batsbiyfe +11/27/2017,Musicians,@kendricklamar,RT @TopDawgEnt: ALL NEW ORDERS 30% OFF #BLACKFRIDAY Use Discount code: TDEHOLIDAY17 NOW @ https://t.co/qdvbJlkGc3 #TDE https://t.co/pLHAUg… +11/20/2017,Musicians,@kendricklamar,https://t.co/GZmXVodkkI +11/09/2017,Musicians,@kendricklamar,"11/18 - 11/19/17 (11AM-7PM) #THEDAMNPOPUP - TOKYO, JAPAN - MONKEYTIME HARAJUKU 6-13-9 JINGUMAE SHIBUYA-KU, TOKYO 15… https://t.co/6vqmcqG63V" +11/07/2017,Musicians,@kendricklamar,"#THEDAMNPOPUP - TOKYO, JAPAN https://t.co/x2E1rOJ3vZ" +10/27/2017,Musicians,@kendricklamar,https://t.co/cphnbDbsuS 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +09/21/2017,Musicians,@kendricklamar,https://t.co/raOcufOxPd Rapsody at her best. +08/26/2017,Musicians,@kendricklamar,Cortez. Since day one. #teamnike #TDE @nike @nikelosangeles https://t.co/HEfReKy6zd +08/26/2017,Musicians,@kendricklamar,5th listen. +08/26/2017,Musicians,@kendricklamar,https://t.co/ovjuQN8weO listen to this album if you feel anything. raw thoughts. https://t.co/ovjuQN8weO +08/24/2017,Musicians,@kendricklamar,"2DAY: 08/24 (11AM-7PM) #THEDAMNPOPUP MONTREAL - 407 Saint Pierre St. Montreal, Quebec H2Y 2M3 https://t.co/nQBalBEH2u" +08/24/2017,Musicians,@kendricklamar,RT @dangerookipawaa: Another night in the stu with @jayrock & @MixedByAli .... we need y'all help.. who shud we feature on this trk? https:… +08/23/2017,Musicians,@kendricklamar,RT @TopDawgEnt: Be sure to download and use the @turnstilelive app to be ONE of several lucky winners to meet @KendrickLamar tonight @AirCa… +08/22/2017,Musicians,@kendricklamar,RT @Complex: A&R and music industry veteran @BrockyMarciano is on our latest episode of 'The Culture.' WEDNESDAY @ 10 AM. https://t.co/6v1p… +08/22/2017,Musicians,@kendricklamar,"2DAY: 08/22 (11AM - 7PM) #THEDAMNPOPUP DUBLIN, OH - @SOLECLASSICS 6391 SAWMILL ROAD DUBLIN, OH #TDE https://t.co/E0HpFy6ybW" +08/06/2017,Musicians,@kendricklamar,"2DAY: 08/06 (11AM) #THEDAMNPOPUP @BLENDSLA 725 S Los Angeles St. Los Angeles, CA 90014 https://t.co/gqw4CNAmhR" +08/05/2017,Musicians,@kendricklamar,"2DAY: 08/05 (11AM) #THEDAMNPOPUP LAS VEGAS - INSTITUTION 918 S Main St. Las Vegas, NV 89101 https://t.co/b4EMzVYmIj" +08/04/2017,Musicians,@kendricklamar,"2DAY: 08/04 (11AM) #THEDAMNPOPUP SAN FRANCISCO - 45 Wentworth Place San Francisco, CA 94108 https://t.co/66pjkYbgkX" +08/01/2017,Musicians,@kendricklamar,"2DAY: 08/01 (11AM-7PM) + +#THEDAMNPOPUP SEATTLE - ALIVE & WELL 705 E PIKE ST SEATTLE, WA 98122 https://t.co/7w0dxxRs9K" +07/29/2017,Musicians,@kendricklamar,"2DAY: 07/29 (11AM) + +#THEDAMNPOPUP DENVER - ABSTRACT 84 S BROADWAY DENVER, CO 80209 https://t.co/8cWZl4W8Mq" +07/28/2017,Musicians,@kendricklamar,LOYALTY. https://t.co/m3bUZONMqb +07/27/2017,Musicians,@kendricklamar,"2DAY: 07/27 (11AM) + +#THEDAMNPOPUP CHICAGO - NOTRE 118 N PEORIA 1N CHICAGO, IL 60607 https://t.co/pqbtaCOy3z" +07/25/2017,Musicians,@kendricklamar,"2DAY: 07/25 (11AM) + +#THEDAMNPOPUP TORONTO - LIVESTOCK 116 SPADINA AVENUE TORONTO, ON M5V 2K6 https://t.co/cBZGxjyPBv" +07/22/2017,Musicians,@kendricklamar,"2DAY: 07/22 (11AM) + +#THEDAMNPOPUP CAMBRIDGE, MA @ CONCEPTS - 9 JFK ST. CAMBRIDGE, MA 02138 https://t.co/StuUXV5DWj" +07/21/2017,Musicians,@kendricklamar,"2DAY: 07/21 (11AM) + +#THEDAMNPOPUP WASHINGTON, DC - UBIQ 3124 M ST NW WASHINGTON DC, 20007 https://t.co/QjQiWVd6NM" +07/20/2017,Musicians,@kendricklamar,"2DAY: 07/20 (11AM) + +#THEDAMNPOPUP NEW YORK - 39 Spring Street New York, NY 10012 #TDE https://t.co/s4z3zlWI5V" +07/19/2017,Musicians,@kendricklamar,"2DAY: 07/19 (11AM) + +#THEDAMNPOPUP PHILADELPHIA - UBIQ +1509 Walnut Street +Philadelphia, PA 19102 https://t.co/fyMf4gpJ1s" +07/17/2017,Musicians,@kendricklamar,"2DAY: 07/17 (11AM) + +#THEDAMNPOPUP +ATLANTA - 117 MLK JR. DRIVE SW ATLANTA, GA 30303 https://t.co/qiRDNuGl52" +07/15/2017,Musicians,@kendricklamar,"2DAY: 07/15 (11AM) + +#THEDAMNPOPUP +HOUSTON - The Tipping Point: 214 Travis St. Suite A Houston, TX 77002 https://t.co/O3X55uUHLr" +07/14/2017,Musicians,@kendricklamar,https://t.co/9dMG6l1sa7 Congrats champ. @TheJay305 +07/14/2017,Musicians,@kendricklamar,"2DAY: 07/14 (11AM) + +#THEDAMNPOPUP +DALLAS - Black Market USA: 5509 W. Lovers Ln Dallas, TX 75209 https://t.co/OALcvWfhJs" +07/13/2017,Musicians,@kendricklamar,THE WILDEST SHOW IS BROUGHT TO YOU BY KUNGFU KENNY TRAVIS SCOTT AND DRAM. ARIZONA. AMAZING START. +07/11/2017,Musicians,@kendricklamar,"RT @MackWop: ""if it wasn't for wayne' Mix on the Cizoud now!! + +play games like ya favorite rapper aint study him + +https://t.co/aEXAxKWd9E" +07/10/2017,Musicians,@kendricklamar,https://t.co/zuPd6pqkSx https://t.co/yxgejmZsdm +07/10/2017,Musicians,@kendricklamar,RT @TopDawgEnt: https://t.co/bOZMTafQ58 @daynnightfestoc #TDE https://t.co/Q0uiYvTqF8 +07/07/2017,Musicians,@kendricklamar,https://t.co/MO3qBpExO8 +07/06/2017,Musicians,@kendricklamar,https://t.co/iNYpzYFSlF +06/30/2017,Musicians,@kendricklamar,4:44. WOW. MASTER TEACHER. +06/27/2017,Musicians,@kendricklamar,https://t.co/ByaRPv7vL4 +06/20/2017,Musicians,@kendricklamar,RT @sza: drew barrymore ☺️✨ https://t.co/MnA0iKchy7 +06/20/2017,Musicians,@kendricklamar,JAY HALL OF FAME. NIPSEY MORE BLACK BUSINESS MOVES. LIL MEECH NAILED HIS PAC DEBUT. 2CHAINZ SNAPPIN THE WHOLE ALBUM. RAP RUN IT 4EVER! +06/15/2017,Musicians,@kendricklamar,Stellar performance and story telling. Very proud of this woman. @SZA https://t.co/KIAQz9oTqS +06/09/2017,Musicians,@kendricklamar,"RT @sza: I made this, here it go #Ctrl https://t.co/14S37bgAhN" +05/30/2017,Musicians,@kendricklamar,"RT @MikeWiLLMadeIt: 🚨🦍🚨 + +#PerfectPintsVideo is live + +FT: Kendrick Lamar, Rae Sremmurd, Gucci Mane + +#RANSOM2 + +https://t.co/bdV7egQDUK" +05/25/2017,Musicians,@kendricklamar,RT @dangerookipawaa: a word from RZA https://t.co/vKIMyOBscA +05/11/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +05/01/2017,Musicians,@kendricklamar,DAMN. https://t.co/QKX5FEEidd +04/25/2017,Musicians,@kendricklamar,RT @AmericanExpress: Card Members can get #AmexPresale tix now thru 4/27 to see @KendrickLamar! https://t.co/hj9o9EqRWa https://t.co/W5hDI0… +04/24/2017,Musicians,@kendricklamar,THE DAMN. TOUR https://t.co/RK89UlBayi +04/22/2017,Musicians,@kendricklamar,https://t.co/yRJKuUM8TH +04/22/2017,Musicians,@kendricklamar,RT @dshyman: Got the low down on the new Kendrick from his main man @SounwaveTDE for @GQMagazine https://t.co/hxXhzXBKO0 +04/21/2017,Musicians,@kendricklamar,KenFolk. ThankU 4 the desire of always anticipating new music of my own. None is coming. My work will be in our future TDE dates tho. 💯#DAMN +04/20/2017,Musicians,@kendricklamar,COMPTON. https://t.co/OGxQK6drtX +04/19/2017,Musicians,@kendricklamar,vinyl. https://t.co/fuRHqbg57B +04/19/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +04/18/2017,Musicians,@kendricklamar,RT @DonCheadle: DNA. https://t.co/vN15jKbh2r +04/18/2017,Musicians,@kendricklamar,physicals. https://t.co/334a2Jp27N +04/16/2017,Musicians,@kendricklamar,https://t.co/9aK87Qi8Dt +04/16/2017,Musicians,@kendricklamar,"RT @ESPNNBA: The NBA playoffs start at 3 ET on ABC. + +Something to sit down for, right @kendricklamar? https://t.co/QwXVyJx92x" +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/rWvi04oCTE +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/oJ9UDztNML +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/0nyaf30vtA +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/oqPIAkOCNL +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +04/11/2017,Musicians,@kendricklamar,DAMN. by Kendrick Lamar. https://t.co/ucQcg0PuzG +04/06/2017,Musicians,@kendricklamar,HUMBLE. https://t.co/8WpQ628QIQ +04/04/2017,Musicians,@kendricklamar,"RT @trvisXX: GOOSEBUMPS VIDEO +https://t.co/13PW2RUwNk" +04/02/2017,Musicians,@kendricklamar,RT @S_C_: Kalief is a prophet. His story will save lives . You guys watching and your compassion made this happen. Thank you . https://t.co… +03/31/2017,Musicians,@kendricklamar,Mr. 1-5 +03/31/2017,Musicians,@kendricklamar,Kung Fu Kenny. +03/31/2017,Musicians,@kendricklamar,https://t.co/jAapTgpTEN +03/31/2017,Musicians,@kendricklamar,https://t.co/f5IoSdCANQ +03/31/2017,Musicians,@kendricklamar,https://t.co/y7wjvh5mZo +03/31/2017,Musicians,@kendricklamar,https://t.co/ODrJikuh19 +03/30/2017,Musicians,@kendricklamar,https://t.co/E2STAyQ7GT +03/30/2017,Musicians,@kendricklamar,RT @PROBLEM354: I've slept a total of 3 hours on the last 2 days +03/24/2017,Musicians,@kendricklamar,The Heart Part 4 https://t.co/XcDcxJtvCt +03/24/2017,Musicians,@kendricklamar,The Heart Part 4 https://t.co/C9M7ZH1o4v +03/01/2017,Musicians,@kendricklamar,RT @S_C_: This is important. spike tv 10pm/9c https://t.co/JkRZxJ1YHT +02/24/2017,Musicians,@kendricklamar,I love it Nicki Minaj. 😍👑🤕 +02/22/2017,Musicians,@kendricklamar,"RT @S_C_: By the way, this is a win for US. I remember when rap was said to be a fad . We are now alongside some of the greatest writers in…" +02/07/2017,Musicians,@kendricklamar,RT @dangerookipawaa: https://t.co/g8m5doKMtN @sza +01/21/2017,Musicians,@kendricklamar,RT @fatbellybella: Never Forget... https://t.co/fRvrSa6vcD +01/20/2017,Musicians,@kendricklamar,@potus We really gonna miss you champ. The good you've done & opportunity's you've given. Truly never know what we got til its gone. Thank u +01/19/2017,Musicians,@kendricklamar,RT @dangerookipawaa: Welcome home kid #JohnDoe2 @inglewoodSiR https://t.co/hvSE8rcoEl #TDE +01/13/2017,Musicians,@kendricklamar,@sza 😍. https://t.co/omjNdjjYx1 Amazing writer. Thank you. +12/20/2016,Musicians,@kendricklamar,2DAY. Family. #TDEXMAS2016 https://t.co/uJTOkTk1gl +12/15/2016,Musicians,@kendricklamar,"RT @ScHoolboyQ: #BlankFaceTour - Groovy Tony [EPISODE 5] +https://t.co/0pfFN4ndob" +12/15/2016,Musicians,@kendricklamar,"RT @abdashsoul: Do What Thou Wilt. +https://t.co/VvbDguXSsO" +12/14/2016,Musicians,@kendricklamar,next stop with @americanexpress… Brooklyn. https://t.co/4SNi3yFXBp +12/09/2016,Musicians,@kendricklamar,RT @abdashsoul: Not Ye. https://t.co/qSxcHhDLxi https://t.co/zaFzVeIuUE +11/30/2016,Musicians,@kendricklamar,Music Meets Art. My exclusive concert experience with @americanexpress and @Shantell_Martin Tomorrow. Miami.… https://t.co/3E3vfy49lV +11/27/2016,Musicians,@kendricklamar,RT @MoosaTDE: @KEMBE_X 'Oxygen' https://t.co/owKqy4jvUs +11/16/2016,Musicians,@kendricklamar,@VSattenXXL https://t.co/kpSk0zamJO +10/24/2016,Musicians,@kendricklamar,#LilSunnyTour #TDE https://t.co/671ca9NZ5s +10/20/2016,Musicians,@kendricklamar,RT @GQStyle: Kendrick Lamar covers the Holiday issue of GQ Style https://t.co/G2JUjjshE6 https://t.co/yMyttfiPqs +10/13/2016,Musicians,@kendricklamar,"RT @maroon5: The wait is over. Our new single #DontWannaKnow, Ft. @KendrickLamar​ is out now on @AppleMusic https://t.co/f4dsNRwVoE https:/…" +10/07/2016,Musicians,@kendricklamar,Look. https://t.co/Z6x9VRifW8 +10/03/2016,Musicians,@kendricklamar,https://t.co/cXU0aDNnAl +09/27/2016,Musicians,@kendricklamar,Pimp pimp! available now. https://t.co/uooPMbe3Qe https://t.co/TqR7hpamh0 +09/02/2016,Musicians,@kendricklamar,RT @isaiahrashad: Thanks for holding us down.. and thanks to our parents for keeping our phones on https://t.co/XOuMg2mxJw +08/24/2016,Musicians,@kendricklamar,Blonde and Endless. Encore to Frank. +08/05/2016,Musicians,@kendricklamar,"RT @skiiiwalker: ""All Stops"" https://t.co/OSoWQaWNBD" +07/29/2016,Musicians,@kendricklamar,RT @iamstillpunch: Shout out to Oran Juice Jones. He was pretty pissed when he caught his lady walking in the rain with that other nigga. L… +07/24/2016,Musicians,@kendricklamar,Isaiah Copper. Go young man! Go!https://t.co/pWzlKnxFKs +07/23/2016,Musicians,@kendricklamar,RT @TopDawgEnt: [NEW MERCH ALERT] @kendricklamar #PanoramaNYCFestival Purchase yours today and tmrw!!! #TDE https://t.co/rpqA6PwN5l +07/21/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: new video. joHn muir: https://t.co/a1eQtq21iZ +07/08/2016,Musicians,@kendricklamar,#BlankFaceLP https://t.co/KrV7Rwjz6X +07/08/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: THat OtHer Part. Black Hippy REMIX. #BlankFaceLP drops in 1Hr!!! https://t.co/Em7DvFuqmv https://t.co/lipjpQsrLw +07/04/2016,Musicians,@kendricklamar,tune in https://t.co/IxoEMyLOPG @WhiteHouse 645PM EST +06/25/2016,Musicians,@kendricklamar,"London. 7/2 @BSTHydePark +https://t.co/0gVYPdS18g https://t.co/mEcFS4pSDO" +06/16/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: OFFICIAL - JULY 8tH https://t.co/exxCxblb12 +05/11/2016,Musicians,@kendricklamar,. @skiiiwalker ? +05/01/2016,Musicians,@kendricklamar,@Luxxkjr gmoms food it is... +05/01/2016,Musicians,@kendricklamar,@Luxxkjr u must got a few dollas on you. Steak and lobster. Let me hold somethin. +04/14/2016,Musicians,@kendricklamar,No pressure. THE GREAT ONE. @kobebryant . Thank you for the journey champ. +04/12/2016,Musicians,@kendricklamar,.@JCrossover https://t.co/MEupLv6p32 +04/12/2016,Musicians,@kendricklamar,"RT @SportsCenter: ""How do empires last when there's no longer an emperor?"" + +@kendricklamar honors @kobebryant. https://t.co/iTWKDfY53M" +04/06/2016,Musicians,@kendricklamar,https://t.co/o711uZ7bBJ ....super. +04/06/2016,Musicians,@kendricklamar,Miles Ahead by the incredible @IamDonCheadle. Must see. +04/05/2016,Musicians,@kendricklamar,Q season. +06/30/2018,Musicians,@OzzyOsbourne,"The North American leg of #NoMoreTours2 kicks off in just 2 MONTHS! + +Go to https://t.co/mlduswcZH5 to see the list… https://t.co/de69cH94V9" +06/29/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Warehouse Summer Sale! + +Get 20% OFF EVERYTHING in our @eBay Store now thru Sunday night! +https://t.co/pHLOvgnrE0 + +Plus 10%…" +06/29/2018,Musicians,@OzzyOsbourne,"on stage 1978 +#fbf https://t.co/WNgJlnvBB7" +06/29/2018,Musicians,@OzzyOsbourne,RT @DKMS_us: Thank you @OzzyOsbourne for supporting us in the fight against blood cancer. https://t.co/t9EVrKm4Sw +06/28/2018,Musicians,@OzzyOsbourne,https://t.co/RVhNph0rw0 +06/28/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: Cultureshock: @TheOsbournesTV airs July 2nd on @AETV +Set your DVR's and RSVP at https://t.co/vBjlfQ7ERP https://t.co/Uy…" +06/28/2018,Musicians,@OzzyOsbourne,"Please #GetOnTheList with @LHSF AND consider donating to help delete blood cancer! +@DKMS_us @DKMS_uk + +https://t.co/BahNozGIrr" +06/28/2018,Musicians,@OzzyOsbourne,"My life is free now, my life is clear +I love you sweet leaf—though you can’t hear. + +#tbt https://t.co/MpHQSUvslU" +06/27/2018,Musicians,@OzzyOsbourne,"RT @AETV: Watch Ozzy and Jack tonight at 9pm to welcome a new member to the A&E family, Minnie Theodora Osbourne! https://t.co/RQ2Lc3DmUT" +06/27/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: . @AETV's Cultureshock: @TheOsbournesTV airs July 2nd, Set your DVR's! +RSVP at https://t.co/kTN26dYmTB + + And don't for…" +06/27/2018,Musicians,@OzzyOsbourne,"RT @AETV: ""Namaste Dad!"" Keep up with @OzzyOsbourne and @KellyOsbourne tonight at 9 PM on #OzzyandJack. https://t.co/mgn5oybmMr" +06/27/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Grab the Ice Cream and get ready for an all new episode of #OzzyAndJack's and #Kelly’s World Detour TONIGHT on @AETV! ht… +06/27/2018,Musicians,@OzzyOsbourne,Get FIRED UP for an all new episode of @OzWorldDetour airing TONIGHT on @AETV! https://t.co/EwkLin5FcI +06/26/2018,Musicians,@OzzyOsbourne,"with Glenn Tipton a couple nights ago in Belgium + +Photo: @RossHalfin https://t.co/a4CfHqgO8y" +06/25/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: All new episode this Wednesday at 9pm on @AETV! #OzzyAndJack https://t.co/NkE4qi0QAj +06/25/2018,Musicians,@OzzyOsbourne,"Hey @Channel4 move to Birmingham + +#WMGeneration +@Channel4News +@BhamCityCouncil https://t.co/49h4IHjaSw" +06/25/2018,Musicians,@OzzyOsbourne,"""Hand of the Enemy"" + +https://t.co/dUowi7ABaZ https://t.co/KgQHM9cfXa" +06/24/2018,Musicians,@OzzyOsbourne,Tune in to Wednesday's all new @OzWorldDetour on @AETV! https://t.co/6zHD3kuZSY +06/23/2018,Musicians,@OzzyOsbourne,on stage 1977 https://t.co/yypZgUY1vA +06/23/2018,Musicians,@OzzyOsbourne,"RT @AETV: ICYMI: Last night on #OzzyandJack, @OzzyOsbourne and @KellyOsbourne head to Arizona and see sites that would make @JackOsbourne j…" +06/22/2018,Musicians,@OzzyOsbourne,Who would like to see @TheOzzfest happen in the New York area this year? Post your answers at… https://t.co/rB6zXAP4Jf +06/22/2018,Musicians,@OzzyOsbourne,1977 #fbf https://t.co/Y5yokOQ5Ju +06/21/2018,Musicians,@OzzyOsbourne,"on stage in Illinois 1974 + +I return to the Chicago area in only 3 MONTHS! #NoMoreTours2 + +https://t.co/wj6aIKJIuI https://t.co/fanhadaCPW" +06/21/2018,Musicians,@OzzyOsbourne,RT @AETV: Superhero Ozzy! #OzzyandJack https://t.co/pIhDgWRBEK +06/21/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: We're back tonight! Check out the hijinks at 9pm on @AETV! #OzzyAndJack https://t.co/n7GsE9pRjb +06/20/2018,Musicians,@OzzyOsbourne,On tonight’s episode of @OzWorldDetour on @AETV https://t.co/5Hh38m932v +06/19/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: On this week’s World Detour https://t.co/XZriQMTuzA +06/19/2018,Musicians,@OzzyOsbourne,RT @LHSF: Just about two months until #lovehopestrength… https://t.co/WOoKU8n6bf +06/19/2018,Musicians,@OzzyOsbourne,Traveled to the Prague show last week this @AudiUK #audiSQ7. Nice ride! https://t.co/2HZFZJtSms +06/18/2018,Musicians,@OzzyOsbourne,on stage in the early days https://t.co/UJBcsi5ce0 +06/17/2018,Musicians,@OzzyOsbourne,"Happy Father’s Day! + +Photo: @markweissguy https://t.co/4J9VzOJkmW" +06/17/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: Happy Father’s Day to this guy right here. He’s… https://t.co/BhHgx05arh +06/16/2018,Musicians,@OzzyOsbourne,Lazy Saturday at Home 1990 https://t.co/jQRWcdF2J7 +06/15/2018,Musicians,@OzzyOsbourne,"Just me and Johnny hanging in Prague + +Photo: @RossHalfin https://t.co/bJSvP3orMC" +06/14/2018,Musicians,@OzzyOsbourne,Great to see my old friend @JDavisOfficial when we were gigging together in Prague. https://t.co/rVTGrtX3Fu +06/14/2018,Musicians,@OzzyOsbourne,"June 13 & 14, 1986 +with @Metallica at Long Beach Arena +#tbt https://t.co/2QOCGCvnmg" +06/13/2018,Musicians,@OzzyOsbourne,"Season 3 of Ozzy & Jack's @OzWorldDetour begins TONIGHT on @AETV! + +#ozzyandjack https://t.co/NUOQAnfNZY" +06/12/2018,Musicians,@OzzyOsbourne,with my old friend Baldric https://t.co/xsWOtRHgir +06/12/2018,Musicians,@OzzyOsbourne,"RT @MSOPR: .@OzzyOsbourne hit it hard @DownloadFest in the U.K with 80,000 fans on hand. https://t.co/p6qtIJNwkV" +06/11/2018,Musicians,@OzzyOsbourne,RT @PCFnews: Thank you! https://t.co/q1Yo2ZjcQv +06/11/2018,Musicians,@OzzyOsbourne,"Released June 11, 2010 + +https://t.co/SpKHTOrJYl" +06/11/2018,Musicians,@OzzyOsbourne,RT @MrsSOsbourne: From @OzzyOsbourne’s show yesterday at @DownloadFest https://t.co/OixXJpMFVt +06/11/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @OzzyOsbourne at #Ozzfest 2001 https://t.co/10XCeg0eqP +06/11/2018,Musicians,@OzzyOsbourne,"at the @HollywoodBowl in 1975 + +I return to The Bowl in 4 MONTHS for #NoMoreTours2 on Oct 11 with @StoneSour… https://t.co/6xvx179ppJ" +06/11/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Thank you @DownloadFest. +I hope you had a great time, I know I did. + +Next stop for #NoMoreTours2 us the Czech Republic! h…" +06/10/2018,Musicians,@OzzyOsbourne,"Thank you @DownloadFest. +I hope you had a great time, I know I did. + +Next stop for #NoMoreTours2 us the Czech Repub… https://t.co/Hvg2BVuTOv" +06/10/2018,Musicians,@OzzyOsbourne,"TRI-STATE AREA! + +Less than 3 Months until #NoMoreTours2 at @NorthwellJBT followed by @PNCArtsCenter + +Show list:… https://t.co/MlBQs2iSpb" +06/09/2018,Musicians,@OzzyOsbourne,Season 3 of #OzzyAndJack’s @OzWorldDetour starts this Wednesday June 13th on @AETV https://t.co/tINlNf6Cqj +06/09/2018,Musicians,@OzzyOsbourne,RT @AETV: Buckle Up and watch this SNEAK PEEK from the upcoming season of #OzzyandJack premiering Wednesday June 13th at 9PM! https://t.co/… +06/08/2018,Musicians,@OzzyOsbourne,"Thank you and goodnight @SwedenRockFest! + +Next stop for #NoMoreTours2 is @DownloadFest on Sunday https://t.co/cBn4Vhhftd" +06/08/2018,Musicians,@OzzyOsbourne,RT @TheOsbournesTV: . #OzzyAndJack’s @OzWorldDetour Season 3 begins on WEDNESDAY on @AETV! https://t.co/CL46aqzOtL +06/08/2018,Musicians,@OzzyOsbourne,"June 8, 1984 edition of +The Weekend Dallas Times Herald +#fbf https://t.co/iyVRib1KxA" +06/07/2018,Musicians,@OzzyOsbourne,"Ozzy & Jack's @OzWorldDetour Season 3 Premier is this Wednesday June 13th on @AETV! + +#ozzyandjack https://t.co/bBIhzigufc" +06/07/2018,Musicians,@OzzyOsbourne,"RT @RollingStone: Ozzy Osbourne tells us about roadtripping with his kids, blowing stuff up and trying goat yoga https://t.co/RKUvuMWAmj ht…" +06/07/2018,Musicians,@OzzyOsbourne,"RT @AETV: Whose ready for a rockin' ride?! Ozzy, Jack, and Kelly are headed out on the road in the season premiere of #OzzyJack June 13th a…" +06/06/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts airing 1 WEEK from today on @AETV! https://t.co/uLelncLXk1 +06/06/2018,Musicians,@OzzyOsbourne,"BOSTON!! + +Only 3 MONTHS until #NoMoreTours2 hits the @XfinityCenter! + +https://t.co/wj6aIKJIuI https://t.co/WH9rCEZrAq" +06/06/2018,Musicians,@OzzyOsbourne,"RT @JackOsbourne: Season 3 of #OzzyandJack starts at 9PM Wednesday June 13th on @AETV! +#ozzyandjack https://t.co/zNGadi1FFz" +06/05/2018,Musicians,@OzzyOsbourne,"Thank you Russia for an amazing kickoff to the 2nd leg of #NoMoreTours2! + +Head to https://t.co/mlduswcZH5 to see a… https://t.co/MqaqgOA06M" +06/05/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Season 3 of @OzWorldDetour begins Wednesday June 13th on @AETV! + +https://t.co/NpObSjfBub + +#ozzyandjack https://t.co/VrDP4…" +06/05/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: In honor of June being Men's Health Month, 10% of all proceeds in the #Ozzfest @eBay Store will go directly to the Prostate…" +06/04/2018,Musicians,@OzzyOsbourne,"RT @OzzysBoneyard: NEW EPISODE of Ozzy Speaks!!! +Today @ 5 & 8pm ET hear @OzzyOsbourne @BillyMorrison #OzzySpeaks on Ozzy’s Boneyard! 🤘🏼 +Re…" +06/04/2018,Musicians,@OzzyOsbourne,New episode of #OzzySpeaks airs TODAY at 5pm ET/2pm PT on @SIRIUSXM @OzzysBoneyard! https://t.co/HbIH59QpCj +06/03/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts at 9PM Wednesday June 13th on A&E! https://t.co/N6yt4gH1tm +06/03/2018,Musicians,@OzzyOsbourne,"Street Plaques in 3 Countries: +Moscow, Russia; Hollywood, CA and Birmingham U.K. https://t.co/xYb6wLCbqb" +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Last night in Moscow. +Tomorrow night is St. Petersburg! https://t.co/mlduswcZH5 + +Photo: @RossHalfin https://t.co/VITekK7d…" +06/02/2018,Musicians,@OzzyOsbourne,"Last night in Moscow. +Tomorrow night is St. Petersburg! https://t.co/mlduswcZH5 + +Photo: @RossHalfin https://t.co/VITekK7dsd" +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzzysBoneyard: Ozzy Osbourne: ‘My problem, really, is I don’t remember I’m 70’ [He’s 69] https://t.co/vgWDHvY1Z0" +06/02/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts on Wednesday June 13th on @AETV https://t.co/gIRFGsTprx +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: Happy Friday! +#ozzyandjack https://t.co/26A9qnSKT1" +06/02/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: Season 3 of @OzWorldDetour begins Wednesday June 13th on A&E! + +#ozzyandjack https://t.co/AQzCg72gc9" +06/01/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Yesterday at the Vegas Center in Moscow + +2 Russian Shows This Week: +Moscow Today and St. Petersburg on Sunday! +https://t.…" +06/01/2018,Musicians,@OzzyOsbourne,"Yesterday at the Vegas Center in Moscow + +2 Russian Shows This Week: +Moscow Today and St. Petersburg on Sunday!… https://t.co/LXBDnwFLvY" +06/01/2018,Musicians,@OzzyOsbourne,"RT @AETV: ""The Prince of Darkness...Look where I've ended up!"" The new season of #OzzyandJack begins June 13th at 9PM. https://t.co/DMpa2jW…" +06/01/2018,Musicians,@OzzyOsbourne,RT @axs: In two weeks The Dark Lords of Metal will shine their black sun upon @OzzyOsbourne! https://t.co/AofypCWVuU https://t.co/K4h7GWIzUg +06/01/2018,Musicians,@OzzyOsbourne,"RT @LIPALiverpool: Then this afternoon Ozzy and Sharon Osbourne chat to Noddy Holder about picking up the pieces after #BlackSabbath split,…" +05/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Less than 1 WEEK until https://t.co/2D2tbXx3Fy in Hyvinkää! + +TIX: https://t.co/egyqL8NGcL https://t.co/LVMVE7Hj5O" +05/31/2018,Musicians,@OzzyOsbourne,"Less than 1 WEEK until https://t.co/2D2tbXx3Fy in Hyvinkää! + +TIX: https://t.co/egyqL8NGcL https://t.co/LVMVE7Hj5O" +05/31/2018,Musicians,@OzzyOsbourne,"on stage at Cal Jam 1974 +#tbt https://t.co/1OkYV0M7FG" +05/31/2018,Musicians,@OzzyOsbourne,RT @MetalHammer: .@OzzyOsbourne is coming to the Golden Gods! https://t.co/WM0OqDhI4v +05/31/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: Announcing the #Ozzfest 2004 Lineup with @OzzyOsbourne @MrsSOsbourne @Slayer @JudasPriest @ZakkWyldeBLS @DownNola @Lacuna_C… +05/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Which show are you coming to? +https://t.co/mlduswcZH5 + + #NoMoreTours2 https://t.co/tw6IAzbDQv" +05/30/2018,Musicians,@OzzyOsbourne,"Which show are you coming to? +https://t.co/mlduswcZH5 + + #NoMoreTours2 https://t.co/tw6IAzbDQv" +05/30/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @OzzyOsbourne at #Ozzfest 2002 https://t.co/dclaLQvHRV +05/30/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: 35 Years Ago Today + +https://t.co/xdAXmzhkSq" +05/29/2018,Musicians,@OzzyOsbourne,"35 Years Ago Today + +https://t.co/xdAXmzhkSq" +05/28/2018,Musicians,@OzzyOsbourne,"Season 3 of @OzWorldDetour begins Wednesday June 13th on @AETV! + +https://t.co/NpObSjfBub + +#ozzyandjack https://t.co/VrDP4T9OHK" +05/27/2018,Musicians,@OzzyOsbourne,Pick up the current issue of @MetalHammer https://t.co/DqQJXCw4NU +05/26/2018,Musicians,@OzzyOsbourne,"Want to hear an episode of ""Ozzy Speaks"" but don't have @SiriusXM? Now is your FREE chance!! + +Head to the link bel… https://t.co/jzcqAoCvpq" +05/25/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack begins Wednesday June 13th on @AETV! https://t.co/4ZxXxgR8Ao +05/25/2018,Musicians,@OzzyOsbourne,"Only 1 WEEK until the next leg of #NoMoreTours2 kicks off! +Head to https://t.co/mlduswcZH5 to see the list of shows… https://t.co/yf4RIRBfY2" +05/25/2018,Musicians,@OzzyOsbourne,RT @WSJ: Ozzy Osbourne tells the story of the song that helped put him and Black Sabbath on the map https://t.co/eKpQ45kSRa +05/25/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Ozzy Osbourne - ""Perry Mason"" Live at Ozzfest 1996 https://t.co/e2XO63pb36" +05/24/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: #ozzyandjack https://t.co/9q0iJ8YQY5 +05/24/2018,Musicians,@OzzyOsbourne,#tbt https://t.co/nd5QNjMC2j +05/24/2018,Musicians,@OzzyOsbourne,RT @MetalHammer: ...but that’s not all that’s inside our new issue. We got together some of metal’s biggest names to interview The Prince O… +05/23/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Thank you South America! +Next stop for #NoMoreTours2 is Russia! + +Upcoming shows http:/:https://t.co/mlduswcZH5 + +Photo: Al…" +05/23/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Released May 22nd 2007 + +https://t.co/uE5QvCo1M5" +05/22/2018,Musicians,@OzzyOsbourne,"Released May 22nd 2007 + +https://t.co/uE5QvCo1M5" +05/22/2018,Musicians,@OzzyOsbourne,"Thanks to my friends at @MetalCasino, I have 2 extra of the festival’s VIP tickets to Sweden Rock Festival! + +To win… https://t.co/dCzSvOYgp3" +05/22/2018,Musicians,@OzzyOsbourne,"Thank you South America! +Next stop for #NoMoreTours2 is Russia! + +Upcoming shows http:/:https://t.co/mlduswcZH5 + +Pho… https://t.co/yQFX0FxF7D" +05/22/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Don't forget you can roll to #NoMoreTears with a VIP Package! + +Europe: https://t.co/aEdD9AApiJ +North America: https://t.c…" +05/21/2018,Musicians,@OzzyOsbourne,Riffing into a Monday like... https://t.co/6rvT7TXI2a +05/20/2018,Musicians,@OzzyOsbourne,Time to read the Sunday paper https://t.co/4j0t8bWofb +05/19/2018,Musicians,@OzzyOsbourne,"Don't forget you can roll to #NoMoreTears with a VIP Package! + +Europe: https://t.co/aEdD9AApiJ +North America:… https://t.co/jFqwpu09yg" +05/18/2018,Musicians,@OzzyOsbourne,"on stage in the 70's +#fbf https://t.co/Dj0E6NrImw" +05/17/2018,Musicians,@OzzyOsbourne,"Double Picture Disc LP versions of 'Memoirs of a Madman' on sale TODAY at @PopMarketMusic! + +https://t.co/gur6xHglEj" +05/17/2018,Musicians,@OzzyOsbourne,"on the cover of Faces Magazine May 1984 +#tbt https://t.co/k5s0Bu56bi" +05/17/2018,Musicians,@OzzyOsbourne,RT @OzzysBoneyard: https://t.co/nDS7prehOK +05/17/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: RSVP to let us know you'll be watching! +https://t.co/yjsxWeshWm" +05/16/2018,Musicians,@OzzyOsbourne,"Wish you could check out @OzzysBoneyard for FREE? +Now is your chance - May 29th! +https://t.co/4GHZ4FybAx + +Your inac… https://t.co/cCXcMeoEO8" +05/15/2018,Musicians,@OzzyOsbourne,"On way to Curitiba for tomorrow's concert! +#NoMoreTours2 at Pedreira Paulo Leminski +https://t.co/mlduswcZH5 + +Photo:… https://t.co/RHrnkj3tvc" +05/15/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: SEASON 3 OF ‘OZZY & JACK’S WORLD DETOUR’ RETURNS WEDNESDAY, JUNE 13 AT 9PM ET/PT + +#OzzyandJack are back this summer on…" +05/15/2018,Musicians,@OzzyOsbourne,"RT @OsbournePodcast: Here’s a snippet of Jack interrogating his 6-year-old daughter, Pearl. When cornered, Pearl does the right thing and b…" +05/14/2018,Musicians,@OzzyOsbourne,Whaddya mean it’s Monday? https://t.co/TKU2Wk3Igt +05/13/2018,Musicians,@OzzyOsbourne,Happy #MothersDay @MrsSOsbourne! https://t.co/VbeeLrWGbO +05/13/2018,Musicians,@OzzyOsbourne,"CZECH REPUBLIC! + +Only 1 MONTH from today + +TIX: https://t.co/wdT16aRRxO + +VIP: https://t.co/eBBqC1QURA https://t.co/8gh6yBLzFR" +05/13/2018,Musicians,@OzzyOsbourne,"Tonight is the first of 4 #NoMoreTours2 concerts in Brazil! +https://t.co/mlduswcZH5 https://t.co/G5LbT02hJI" +05/11/2018,Musicians,@OzzyOsbourne,"Only 3 WEEKS until the 2nd leg of #NoMoreTours2 kicks off in Moscow! + +TIX: https://t.co/OhskNbOZ3j + +VIP Packages:… https://t.co/a4OFBZ839n" +05/10/2018,Musicians,@OzzyOsbourne,"on our way to #NoMoreTours2 in Argentina happening tomorrow at #EstadioObras +https://t.co/mlduswcZH5 + +Photo:… https://t.co/ieOK37d0GV" +05/09/2018,Musicians,@OzzyOsbourne,"SAN DIEGO! + +5 MONTHS until #NoMoreTours2 at @MattressFirmAmp with @StoneSour! + +TIX: https://t.co/wj6aIKJIuI + +VIP Pa… https://t.co/kJtAMMAQqu" +05/08/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: TONIGHT in Chile at @MoviStarArena! +https://t.co/mlduswcZH5 +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/wDItaDEnEC" +05/08/2018,Musicians,@OzzyOsbourne,Bid on a #NoMoreTours2 @VIPNation Meet & Greet Package with all proceeds benefiting the @ACLU! Available now on… https://t.co/rtqsHcgLyj +05/08/2018,Musicians,@OzzyOsbourne,"TONIGHT in Chile at @MoviStarArena! +https://t.co/mlduswcZH5 +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/wDItaDEnEC" +05/08/2018,Musicians,@OzzyOsbourne,"RT @MrsSOsbourne: Ozzy on his way to Mexico and performing in front of 80,000 people and I had to miss the whole thing as I forgot my passp…" +05/07/2018,Musicians,@OzzyOsbourne,"On way to Chile! + +Photo: @RossHalfin https://t.co/VROpCD1Rqu" +05/06/2018,Musicians,@OzzyOsbourne,"Last night in Mexico City. Next stop Chile! +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/Fnu9szxW2b" +05/05/2018,Musicians,@OzzyOsbourne,"Today at @HHFest! +#NoMoreTours2 https://t.co/iJlymawVIJ" +05/05/2018,Musicians,@OzzyOsbourne,"outside Las Ventas Bullring, Madrid April 1989 + +I return to Spain in July for @DownloadFestMad and @BCNRockfest https://t.co/tBADzhyHAf" +05/04/2018,Musicians,@OzzyOsbourne,"Tomorrow At @HHFest in Mexico City! +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/5eXN7MvlBQ" +05/04/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: A Look Back at #Ozzfest 2016 +#tbt https://t.co/zChoNONc9P" +05/03/2018,Musicians,@OzzyOsbourne,"with Bernie Torme at @TheGarden on the Diary of a Madman Tour April 1982 +#tbt https://t.co/ec9Vr1krma" +05/02/2018,Musicians,@OzzyOsbourne,"TOMORROW on @OzzysBoneyard, @SiriusXM Ch 38, 5/3 at 5PM ET + +Hear an all new episode of #OzzySpeaks - Ozzy is joine… https://t.co/TTMyR317v9" +05/02/2018,Musicians,@OzzyOsbourne,RT @josemangin: Holy F moment of my Florida weekend...starting @OzzyOsbourne chant before The Prince Of Darkness @ZakkWyldeBLS & the guys s… +05/02/2018,Musicians,@OzzyOsbourne,On this week’s @OsbournePodcast available for FREE from @ApplePodcasts and https://t.co/rTvg75JlEc https://t.co/LadQXRiAnV +05/02/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: NEW MONTH = NEW CHARITY!! + +For the month of May, 10% of all proceeds from @TheOzzfest @eBay Store, containing mostly the la…" +05/01/2018,Musicians,@OzzyOsbourne,"1 MONTH TILL MOSCOW! + +TIX: https://t.co/OhskNbOZ3j + +VIP: https://t.co/Aeb24ptKqO https://t.co/3roHtBXKb7" +04/30/2018,Musicians,@OzzyOsbourne,"Thank you Ft. Lauderdale! +Next stop Mexico City on Saturday! #NoMoreTours2 + +Photo: @RossHalfin https://t.co/JsDWj47UCO" +04/29/2018,Musicians,@OzzyOsbourne,"Tonight #NoMoreTours2 in Ft. Lauderdale! + +Photo: @RossHalfin from Jacksonville, FL on Friday… https://t.co/v68xFVbP0m" +04/28/2018,Musicians,@OzzyOsbourne,"Thank you Jacksonville! +Tomorrow night in Ft. Lauderdale +#NoMoreTours2 +https://t.co/mldusvVoPx https://t.co/2ZVIOneSRp" +04/27/2018,Musicians,@OzzyOsbourne,Who is ready for the kickoff of #NoMoreTours2 today at @RockvilleFest with @FortRockFest performance on Sunday! https://t.co/BYVFBDo5Fq +04/27/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: #NoMoreTours2 starts tomorrow at @RockvilleFest and @FortRockFest on Sunday! +https://t.co/mldusvVoPx https://t.co/PJ0IHsb…" +04/26/2018,Musicians,@OzzyOsbourne,"#NoMoreTours2 starts tomorrow at @RockvilleFest and @FortRockFest on Sunday! +https://t.co/mldusvVoPx https://t.co/PJ0IHsbxkD" +04/24/2018,Musicians,@OzzyOsbourne,"The #NoMoreTours2 concerts start with 2 festivals in Florida this weekend! + +Show listings at… https://t.co/0FhzRuD5MW" +04/23/2018,Musicians,@OzzyOsbourne,"INDIANA! + +5 MONTHS until #NoMoreTours2 in Noblesville with @StoneSour! + +TIX: https://t.co/wj6aIKJIuI + +VIP:… https://t.co/Y4PvWatW6j" +04/22/2018,Musicians,@OzzyOsbourne,Flying High Again https://t.co/bk4vgqM6Wa +04/22/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Last 5 of these @BlackSabbath patches from #TheEnd Tour! +https://t.co/pHLOvgnrE0 https://t.co/VjpwljRYC8" +04/21/2018,Musicians,@OzzyOsbourne,I wonder what's for lunch today... https://t.co/wz2RyZPDIU +04/20/2018,Musicians,@OzzyOsbourne,"Happy 420! +#fbf https://t.co/lCXNATXWKE" +04/20/2018,Musicians,@OzzyOsbourne,RT @T4FBizarro: No te pierdas la última oportunidad de disfrutar del sonido de @OzzyOsbourne en Chile este 8 de mayo en @movistararena . Co… +04/20/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: April 19, 1986 issue of Cashbox Magazine +#tbt https://t.co/IrdLpiVywG" +04/19/2018,Musicians,@OzzyOsbourne,"April 19, 1986 issue of Cashbox Magazine +#tbt https://t.co/IrdLpiVywG" +04/18/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until Ozzy in Belo Horizonte! + +#NoMoreTours2 + +https://t.co/EGplM9fsbH https://t.co/HMEh3m5FeK" +04/17/2018,Musicians,@OzzyOsbourne,on tour in 1978 https://t.co/dCv3L94jrZ +04/16/2018,Musicians,@OzzyOsbourne,New episode of The @OsbournePodcast featuring @RossHalfin available TODAY at @ApplePodcasts or… https://t.co/MHjbOCiNKz +04/16/2018,Musicians,@OzzyOsbourne,"RT @duffgoldman: We should #FlashbackFriday for this #CakeOfTheWeek: when @Charm_CityCakes made a cake for the Prince of Darkness himself,…" +04/15/2018,Musicians,@OzzyOsbourne,"Logo Magazine April 1989 +#UltimateSinSundays https://t.co/fBpZw9PxSj" +04/14/2018,Musicians,@OzzyOsbourne,April 1984 https://t.co/8hXh7F8avN +04/13/2018,Musicians,@OzzyOsbourne,"Loading in for #NoMoreTours2 rehearsals + +Show list: https://t.co/3lI792GbB3 https://t.co/mrb2Yo82WI" +04/13/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until Ozzy in São Paulo at @AllianzParque ! + +https://t.co/EGplM9fsbH https://t.co/50cRddSXjf" +04/12/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: 5 MONTHS from today is #NoMoreTours2 in Camden at @BBTPavilion! + +https://t.co/wj6aIKJIuI https://t.co/weg3zl5Bs3" +04/12/2018,Musicians,@OzzyOsbourne,"5 MONTHS from today is #NoMoreTours2 in Camden at @BBTPavilion! + +https://t.co/wj6aIKJIuI https://t.co/weg3zl5Bs3" +04/11/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until the concert in Chile! + +https://t.co/BPMEHnuSRq https://t.co/M0qgGF9GHJ" +04/10/2018,Musicians,@OzzyOsbourne,"On the road + +Upcoming #NoMoreTours2 concerts listed at https://t.co/3lI792GbB3 https://t.co/v71duoDjwU" +04/09/2018,Musicians,@OzzyOsbourne,New @OsbournePodcast episode released today!! Download for FREE from @ApplePodcasts or https://t.co/rTvg75JlEc https://t.co/brZgqkuCU7 +04/09/2018,Musicians,@OzzyOsbourne,Getting ready for the week like... https://t.co/tPgbI3DRaC +04/08/2018,Musicians,@OzzyOsbourne,"on the Diary of a Madman tour, April 1982 at @TheGarden + +I return to NY on Sept 8 +https://t.co/3lI792GbB3 https://t.co/ZfzxiSoEfI" +04/08/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 La despedida de los escenarios del gran icono del rock @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫📲 Tickets…" +04/08/2018,Musicians,@OzzyOsbourne,RT @T4FBizarro: @OzzyOsbourne nos deja esta reflexión. 8 de Mayo en Chile Más info en: https://t.co/cvf0m4Qkz3 #conciertost4fbizarro https:… +04/08/2018,Musicians,@OzzyOsbourne,"RT @VIPNation: Got your @OzzyOsbourne VIP yet? HURRY! + +https://t.co/QTcpNrYAUs & +https://t.co/qXSfHQHwX7 https://t.co/XugFlHhsVy" +04/07/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: NEW MONTH = NEW CHARITY + +10% of ALL proceeds in the #Ozzfest @eBay Store will go directly to @SoCalBulldog + +https://t.co/p…" +04/07/2018,Musicians,@OzzyOsbourne,"with Captain Lou Albano on April 7, 1986 at @WWE #Wrestlemania 2 https://t.co/htIgJJcMHp" +04/06/2018,Musicians,@OzzyOsbourne,"Fun with Funicello Part 2 +#fbf https://t.co/TAOmfidxp1" +04/05/2018,Musicians,@OzzyOsbourne,"Record Review April 1982 +#tbt https://t.co/X4YrX8iUzH" +04/04/2018,Musicians,@OzzyOsbourne,https://t.co/gMj0acAN7O +04/03/2018,Musicians,@OzzyOsbourne,"Classic Rock Russia April 2007 + +I return to Russia in less than 2 months +https://t.co/3lI792GbB3 https://t.co/UmyIKVWAKB" +04/02/2018,Musicians,@OzzyOsbourne,All new episode of The @OsbournePodcast released TODAY! Get it for FREE from @ApplePodcasts or the family podcast… https://t.co/eShuyioQ28 +04/01/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: HAPPY #EASTER! + +Photo: @MarkWeissguy https://t.co/XXnTDKhDUZ" +04/01/2018,Musicians,@OzzyOsbourne,"HAPPY EASTER! + +Photo: @MarkWeissguy + +If you would like to be entered for a chance to win a FREE print of this phot… https://t.co/nSPmWcMB3N" +04/01/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 No te quedes afuera de este show que va a ser increíble @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫 Tickets…" +03/31/2018,Musicians,@OzzyOsbourne,Raging into the weekend like... https://t.co/T04bTQZkXO +03/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Just added to @TheOzzfest @eBay Store! +The very last of the @BlackSabbath The End 2016 baseball hats! +https://t.co/OvJRJ…" +03/30/2018,Musicians,@OzzyOsbourne,"Just added to @TheOzzfest @eBay Store! +The very last of the @BlackSabbath The End 2016 baseball hats!… https://t.co/7jqhitzY4i" +03/30/2018,Musicians,@OzzyOsbourne,"Metal Hammer March 1987 +#FBF https://t.co/l0qNs81MV3" +03/29/2018,Musicians,@OzzyOsbourne,"in Italy 1973 +#tbt https://t.co/HztQBT8Aul" +03/28/2018,Musicians,@OzzyOsbourne,Middle of the week vibes... https://t.co/kcYkIfkUU2 +03/28/2018,Musicians,@OzzyOsbourne,RT @OzzyOsbourne: LAST DAY to bid on this @VIPNation Meet & Greet Package for 2 People to an upcoming show on #NoMoreTours2 of their choosi… +03/27/2018,Musicians,@OzzyOsbourne,LAST DAY to bid on this @VIPNation Meet & Greet Package for 2 People to an upcoming show on #NoMoreTours2 of their… https://t.co/X42WjquDGf +03/27/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 No te quedes afuera de este show que va a ser increíble @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫 Tickets…" +03/27/2018,Musicians,@OzzyOsbourne,"at The Palladium in NYC 1981 + +Photo: @RossHalfin https://t.co/TLL89ENIEU" +03/26/2018,Musicians,@OzzyOsbourne,"New episode of @OsbournePodcast release today! +Get it for FREE at @ApplePodcasts or https://t.co/rTvg75JlEc https://t.co/vZ58PTux7K" +03/25/2018,Musicians,@OzzyOsbourne,Sunday lounging https://t.co/bAkqWdeneY +03/24/2018,Musicians,@OzzyOsbourne,It's the weekend! https://t.co/lEfWnwhsH7 +03/23/2018,Musicians,@OzzyOsbourne,"Just added to @theOzzfest @eBay Store: +The last remaining #Ozzy / #Ozzfest 2017 Long Sleeve Shirts! +Previously only… https://t.co/zZ53vNrijP" +03/23/2018,Musicians,@OzzyOsbourne,RT @LHSF: Don forget about meeting #ozzyosbourne to benefit #lhsf Meet Ozzy Osbourne with 2 Tickets to an Upcoming No More T... https://t.c… +03/23/2018,Musicians,@OzzyOsbourne,"Just added! +The last of the #Ozzy @TheOzzfest Long Sleeve Shirt! + +10% to @HealTheBay on everything in the store!… https://t.co/A5A16tAAYl" +03/22/2018,Musicians,@OzzyOsbourne,"Ozzy Flannels are perfect for cold snowy or rainy days +https://t.co/OvJRJLOTIt https://t.co/8jf2olbPRa" +03/22/2018,Musicians,@OzzyOsbourne,"with @ZakkWyldeBLS in Burrn! Magazine +March 1988 #tbt https://t.co/lqVgg9eHye" +03/22/2018,Musicians,@OzzyOsbourne,"RT @VIPNation: Go VIP to @OzzyOsbourne and ASK ANYTHING at the Q&A session in the Prince of Darkness' dressing room! + +https://t.co/QTcpNrY…" +03/22/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @BlackSabbath at #Ozzfest 2001 https://t.co/72XYm45DUV +06/14/2018,Musicians,@WillieNelson,In case you missed it Willie was featured on an episode of @WorldCafé from @NPRMusic. Listen as Willie sits for a w… https://t.co/U4RAdrbgiS +05/08/2018,Musicians,@WillieNelson,"RT @RaelynNelson: Aw Hell #mmhmm single: +https://t.co/A7oRQIug7k +https://t.co/fHxXeVzcXZ" +05/08/2018,Musicians,@WillieNelson,"RT @lukasnelson: STARTING TODAY - If you don't have a vinyl copy of our record yet, and you live near a @CrackerBarrel Old Country Store (o…" +04/30/2018,Musicians,@WillieNelson,"RT @lukasnelson: I would like to wish a very happy 85th birthday to my dad, @WillieNelson with this special @flyLAXairport rendition of “Bl…" +04/27/2018,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @WillieNelson #LastManStanding special #HappyBirthdayWillie w/ @PaulaNelsonBand @buddycannon @SIRIUSXM Ch59 & @SXMO… +04/18/2018,Musicians,@WillieNelson,"Help Willie, Go see #SuperTroopers2 on 4/20 + +https://t.co/wyFmcZMVJw" +04/15/2018,Musicians,@WillieNelson,Two Super Troopers inspect the bus before tonight's concert. #SuperTroopers2 https://t.co/EpSPyzfDwt +04/03/2018,Musicians,@WillieNelson,@BioAnnie1 @WillieN55660955 Thank you. Fraud! +04/03/2018,Musicians,@WillieNelson,@Shotnfreud @WillieN55660955 You are communicating with a fraud. +03/23/2018,Musicians,@WillieNelson,Support the work of @REVERBrocks by bidding on signed instruments and art from @WillieNelson and other artists. The… https://t.co/mLuM5cm840 +03/16/2018,Musicians,@WillieNelson,Last Man Standing at Luck https://t.co/PoLMaIEV0i https://t.co/i5dYzWGUbe +02/16/2018,Musicians,@WillieNelson,RT @gatlinbrothers: Good memories with our long-time friend @WillieNelson https://t.co/re5J9c0nFn +02/16/2018,Musicians,@WillieNelson,"Willie’s new album ‘Last Man Standing’ is available April 27! +Check out the title track here: +https://t.co/u24ec8BFMJ" +02/15/2018,Musicians,@WillieNelson,RT @MrChuckD: Had to pull car over having listened to a Flawless song written and sang by Willie Nelson called You Ought To Hear Me Cry. O… +02/15/2018,Musicians,@WillieNelson,@MrChuckD @SIRIUSXM Thank you @MrChuckD #SXMWillie @SXMWillie +01/25/2018,Musicians,@WillieNelson,Willie Nelson - Living in the Promiseland https://t.co/jl2IemC67Q via @YouTube +12/21/2017,Musicians,@WillieNelson,Nothing holds Willie back. So check out holiday deals to hear Willie present classic country his way on Willie’s Ro… https://t.co/QGAwgymcGM +11/21/2017,Musicians,@WillieNelson,"RT @FarmAid: Farm Aid founder @WillieNelson: On #Thanksgiving, remember family #farmers and their challenges. They're the economic bedrock…" +11/14/2017,Musicians,@WillieNelson,Have you seen this clip of @WoodyHarrelson as #LBJ? https://t.co/bTvHraziak +11/09/2017,Musicians,@WillieNelson,"Glen Campbell, Willie Nelson Win Musical Event of the Year at the 2017 CMAs https://t.co/eXpxw2hMb7 @tasteofcountry" +11/09/2017,Musicians,@WillieNelson,"Thank you! #GlenCampbell , Willie Nelson Win Musical Event of the Year at the 2017 #CMAs https://t.co/eXpxw2hMb7 @tasteofcountry" +11/07/2017,Musicians,@WillieNelson,Congratulations @lukasnelson and @POTR on your #1 record. https://t.co/j7r7oAch28 +11/07/2017,Musicians,@WillieNelson,". @WoodyHarrelson as #LBJ is creative. Take a look at the ""preview"" we just received https://t.co/NmNo7s6krC" +11/03/2017,Musicians,@WillieNelson,@TexasGalWaxi @SXMWillie @NelsonWillieFam @SIRIUSXM @PaulaNelsonBand @WillieN18997625 I am the real. +10/20/2017,Musicians,@WillieNelson,"RT @SXMWillie: TUNE IN: @WillieNelson #WillieAndTheBoys #Lukas #Micah album special @SIRIUSXM Ch59 w/ @PaulaNelsonBand info +here: https://…" +10/18/2017,Musicians,@WillieNelson,"Get a first look at the video to “My Tears Fall” at CMT. ‘Willie and The Boys,’ the new album is available Friday. https://t.co/oCstXUW2hJ" +10/17/2017,Musicians,@WillieNelson,Watch Willie Nelson and His Sons Detail Unbreakable Family Bond on Tour Bus https://t.co/u7sRD7NM8I +10/06/2017,Musicians,@WillieNelson,https://t.co/mGacGoikQV +09/29/2017,Musicians,@WillieNelson,"Check out Willie, #LukasNelson and #MicahNelson perform “Healing Hands of Time” The new album in stores Oct 20. https://t.co/oM7FccwWLf" +09/29/2017,Musicians,@WillieNelson,RT @TasteOfCountry: What a moment! When @WillieNelson and #KrisKristofferson join forces we're all the way in! https://t.co/FaOtXOkYt9 +09/27/2017,Musicians,@WillieNelson,Exclusive premiere: Watch Willie Nelson’s new video with sons Lukas and Micah https://t.co/JrM8EOSJ2P +09/23/2017,Musicians,@WillieNelson,RT @SkinAndTonicATX: I took this pic last night at the most AMAZING benefit show! @willienelson I love you!… https://t.co/jAuoCCyeXX +09/22/2017,Musicians,@WillieNelson,Tune-In & Donate tonight! #HarveyCantMessWithTexas via https://t.co/8ffZR5zRWm 9-10pm CT. Proceeds benefit Rebuild… https://t.co/wGS2CA9Uty +09/16/2017,Musicians,@WillieNelson,RT @AXSTV: We're ALL #FarmAid ALL Saturday! Make sure to set your DVR NOW! #SaturdayStack https://t.co/SodcittKOn +09/16/2017,Musicians,@WillieNelson,RT @FarmAid: Watch and listen to #FarmAid2017 live on Sept. 16. Get all the details at: https://t.co/a3OIFgnssl https://t.co/RB8gMvzhKp +09/15/2017,Musicians,@WillieNelson,"Willie Nelson sets Hurricane Harvey benefit concert + +https://t.co/Xa1I9XoHUL" +09/14/2017,Musicians,@WillieNelson,"Garth Hudson of The Band came by to join in on the fun with Willie and Family in Poughkeepsie, NY. https://t.co/MbmVeHZxGf" +09/13/2017,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @FarmAid 2017 concert broadcast SAT 9/16 @SIRIUSXM Ch59 noon-11:30pmET info here: https://t.co/d1mJ728J2K https://t… +09/06/2017,Musicians,@WillieNelson,".@FarmAid is working with partners in TX & LA to support the needs farmers & ranchers. +Donate today: https://t.co/y1NHQuiWnv #Harvey" +09/06/2017,Musicians,@WillieNelson,Living in the Promiseland https://t.co/jl2IemC67Q +08/25/2017,Musicians,@WillieNelson,RT @lukasnelson: Our new album is out TODAY! Get it here or at your favorite record store: https://t.co/594PZkuSHw +08/21/2017,Musicians,@WillieNelson,Willie Nelson - Darkness on the Face of the Earth (Live at Farm Aid 1998) https://t.co/KLeC4zxXus via @YouTube +08/20/2017,Musicians,@WillieNelson,Willie Nelson felt like an infinitely renewable resource at the Shrine https://t.co/qkb0Zbhl0j +08/20/2017,Musicians,@WillieNelson,@ShellyPicarella @SnoopDogg Willie has a statue in Austin Texas +08/20/2017,Musicians,@WillieNelson,Tonight @KaceyMusgraves and the band came to say goodbye after her set at The Greek Theater. https://t.co/WBHHJVd18Q +08/19/2017,Musicians,@WillieNelson,"We had a wonderful night in LA. +https://t.co/1GU6ajZB1H" +08/18/2017,Musicians,@WillieNelson,RT @lukasnelson: Check out this great review of the new record in @soundboard_blog! https://t.co/vQUOxR2VUT +08/18/2017,Musicians,@WillieNelson,RT @BioAnnie1: Hey @PaulBegala You should be here! Willie talking to @billclinton right now. Headed to a show. https://t.co/TRRCGY2qyG +08/18/2017,Musicians,@WillieNelson,RT @PEcom_news: Willie Nelson proves that he’s not quite dead yet with spirited set at the Shrine https://t.co/6KPOCKHR8z https://t.co/smft… +08/18/2017,Musicians,@WillieNelson,"RT @livepositive11: Once you replace negative thoughts with positive ones, you'll start having positive results. -Willie Nelson" +08/17/2017,Musicians,@WillieNelson,"RT @SXMOutlaw: WIN trip for 2 #OutlawMusicFestival 9/17 Camden, NJ @WillieNelson @ericchurch @SherylCrow @theavettbros +more! GO to https:/…" +08/16/2017,Musicians,@WillieNelson,"For Sinead O'Connor, Love Willie - Don't Give Up - https://t.co/xbFXnQsH3i via @YouTube" +08/14/2017,Musicians,@WillieNelson,This is Willie I am sorry to have to cut the SLC show short tonight The altitude got to me I am feeling better now & headed for lower ground +07/28/2017,Musicians,@WillieNelson,".@WillieNelson sat down with @washingtonpost @libcasey to talk about his historic career, @WilliesReserve and more https://t.co/l9afI35x3Z" +07/13/2017,Musicians,@WillieNelson,"We love you Loretta - +Loretta Lynn Postpones Release of New Album - Rolling Stone +https://t.co/wcn1ErZrUq" +07/12/2017,Musicians,@WillieNelson,Every musician hates canceling a show. https://t.co/lpoesPefew +07/11/2017,Musicians,@WillieNelson,An amazing album! https://t.co/jXpRbNH1lQ +07/11/2017,Musicians,@WillieNelson,"RT @WilliesReserve: Nice hat @SnoopDogg! +Get your #WilliesReserve official cap here: https://t.co/H6Uy5ouHrx +(( @TeamCoco )) +#CannabisCom…" +07/04/2017,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @WillieNelson #4thOfJulyPicnic broadcast LIVE @Austin360Amp 4pm-1amET @SIRIUSXM Ch59 set times & more info: https:/… +06/27/2017,Musicians,@WillieNelson,Living in the Promiseland https://t.co/jl2IemC67Q +06/16/2017,Musicians,@WillieNelson,Don't miss your chance for a once in a lifetime VIP package to @FarmAid The auction is open for a limited time https://t.co/mbyw5BwXMA +06/13/2017,Musicians,@WillieNelson,"RT @FarmAid: Have you head the moos, er.... news! + +Farm Aid 2017 is coming to the Pittsburgh area! Join us on Saturday, Septemb… https://t.…" +06/05/2017,Musicians,@WillieNelson,@1DeborahHyde @WillieNelson000 @YouTube You are talking to a scamming account. Report it! +06/05/2017,Musicians,@WillieNelson,@1DeborahHyde @WillieNelson000 @YouTube @WillieNelson000 willienels is a fraud/ scam account +06/05/2017,Musicians,@WillieNelson,@Christy1043 @WillieNelson000 @YouTube This account is a scam account. +05/27/2017,Musicians,@WillieNelson,"RT @WilliesReserve: #PhotoContest @LivWellCannabis w/ a signed @WillieNelson guitar +#MemorialDay +Stapleton 10:30-12:30pm +Garden City 1:30…" +05/20/2017,Musicians,@WillieNelson,@Di3G02020 Better than ever +05/20/2017,Musicians,@WillieNelson,RT @NewYorkConcert: Don't miss the @willienelson at Battery Park on Jun 10! → https://t.co/uqEF0oSLw3 https://t.co/BMvAYX0doP +05/20/2017,Musicians,@WillieNelson,RT @GigsRaleigh: Did you know that @willienelson is ROCKING on Jul 14 in Cary? Don't miss this concert! → https://t.co/BpIGjVWYk6 https://t… +05/20/2017,Musicians,@WillieNelson,@awnaves That is a good question. +05/20/2017,Musicians,@WillieNelson,@bettyco33617316 Yup still not dead again. https://t.co/mPZqVR1XOa +05/20/2017,Musicians,@WillieNelson,@KJC135 @RollingStone It is priceless +05/20/2017,Musicians,@WillieNelson,@gunds_up It is a Good morning +05/20/2017,Musicians,@WillieNelson,"RT @MakeAWish: Ava, who has a GI disorder, wished to meet & play guitar with @WillieNelson, because his songs helped her get through her tr…" +05/20/2017,Musicians,@WillieNelson,RT @ReaperToolsInc: Willie Nelson explaining the dangers of #marijuana. https://t.co/0nUIL7qzP7 +05/20/2017,Musicians,@WillieNelson,"RT @ChuckCanady: Once you replace negative thoughts with positive ones, you'll start having positive results. - Willie Nelson #quote" +05/20/2017,Musicians,@WillieNelson,@StillerAndrew I Woke Up Still Not Dead Again https://t.co/mPZqVR1XOa +05/20/2017,Musicians,@WillieNelson,"RT @RollingStone: Willie Nelson discusses Trump, his marriage, why Jeff Sessions should try smoking pot and more https://t.co/Cla8XPF0sZ ht…" +05/20/2017,Musicians,@WillieNelson,"RT @thebootdotcom: .@WillieNelson gets write-in votes during elections, but don't expect to see him running for office for real: https://t.…" +05/20/2017,Musicians,@WillieNelson,"RT @FarmAid: Farm Aid's director Carolyn Mugar and co-founder @johnmellencamp introduced our film, Homeplace Under Fire, at @du… https://t.…" +05/20/2017,Musicians,@WillieNelson,RT @TerryVJennings: 1986 @WillieNelson @JohnnyCash Kris Kristofferson & @OfficialWaylon star in @CBS remake of the movie Stagecoach https… +05/20/2017,Musicians,@WillieNelson,RT @Linda_Colo: Why Colorado Tokers Love Red Headed Stranger @williesreserve @bioannie1 @willienelson https://t.co/SqIw5eiN16 via @denverw… +05/11/2017,Musicians,@WillieNelson,"Critics can’t get enough of ‘God’s Problem Child’! What do you think of Willie’s new album? + +https://t.co/N2z4Vr6UKZ https://t.co/PcKhrz3eTC" +05/11/2017,Musicians,@WillieNelson,"RT @RollingStone: Chris Stapleton on covering Willie Nelson on his new album, leaving Nashville and more https://t.co/sifqz1pB0G https://t.…" +05/11/2017,Musicians,@WillieNelson,"RT @livepositive11: Once you replace negative thoughts with positive ones, you'll start having positive results. -Willie Nelson" +05/11/2017,Musicians,@WillieNelson,RT @FarmAid: John Mellencamp and Oklahoma Farm Advocate Mona Lee Brock share a moment on the Farm Aid 30 stage in 2015. On Thur… https://t.… +05/05/2017,Musicians,@WillieNelson,"Willie Nelson's Birthday Party at the Bowl +https://t.co/ecVjSZa4UC" +04/28/2017,Musicians,@WillieNelson,‘God’s Problem Child’ is available today! https://t.co/rlrj3nN2gz https://t.co/W78ppFUIIj +04/27/2017,Musicians,@WillieNelson,"You’ve heard about the song, now check out the video for “Still Not Dead”! https://t.co/DmF6Ju5usy +https://t.co/cWTU0VMuLR" +04/26/2017,Musicians,@WillieNelson,"RT @SXMWillie: TUNE IN: @WillieNelson 84th birthday weekend #GodsProblemChild special @SIRIUSXM info here: https://t.co/FdQfWv1nBf +https:/…" +04/26/2017,Musicians,@WillieNelson,"“I woke up still not dead again today…” +https://t.co/mPZqVR1XOa" +04/24/2017,Musicians,@WillieNelson,RT @SnoopDogg: Shouts to @djwhookid with @willienelson biggn me up on @shade45 #BurnSlow mix 💨💨💨💨💨💨💨💨💪🏽 #whoolywoodshuffle +04/21/2017,Musicians,@WillieNelson,"Get your tickets for Willie Nelson's 4th of July Picnic in Austin, TX, onsale today! Tickets:… https://t.co/JPuGP0Daa0" +04/20/2017,Musicians,@WillieNelson,"Listen to the incredible new album ‘God’s Problem Child’ on NPR First Listen. +https://t.co/hPYZZfKMWZ" +04/18/2017,Musicians,@WillieNelson,"RT @thebootdotcom: Willie Nelson, Bob Dylan, Jason Isbell Set to Headline 2017 Outlaw Music Festival Tour https://t.co/CkIeiXgfqZ https://t…" +04/18/2017,Musicians,@WillieNelson,Willie Nelson Plans 44th Annual Fourth of July Picnic https://t.co/we8DTskAjQ @thebootdotcom +03/28/2017,Musicians,@WillieNelson,"The Daily Beast has the exclusive first look at the video to “Old Timer”! +https://t.co/Mq1ToOO05Y" +03/21/2017,Musicians,@WillieNelson,RT @FarmAid: Wildfires are ravaging over 2 mil. acres of ranch land. You can help by donating to our Family Farm Disaster Fund. https://t.c… +03/09/2017,Musicians,@WillieNelson,"Head to @latimes for an exclusive first look at Willie’s new video, “It Gets Easier,” from ‘God’s Problem Child’ +https://t.co/ILyChf7WYS" +03/08/2017,Musicians,@WillieNelson,"RT @FarmAid: Asked about retirement, @WillieNelson says ""Which would I give up: music or golf?"" Turns out farmers feel the same. https://t.…" +03/08/2017,Musicians,@WillieNelson,RT @sunherald: Reporter @thejeffclark spoke with @WillieNelson's harmonica player -- here's the skinny. https://t.co/hPbO69qTzZ https://t.c… +03/08/2017,Musicians,@WillieNelson,"Here’s a clip of “It Gets Easier” from Willie's upcoming new album ‘God’s Problem Child,’ -- full video tomorrow. https://t.co/aFRcmZHwsH" +03/05/2017,Musicians,@WillieNelson,.@DwightYoakam was on the show at the @PompanoAmp and dropped by the bus after his set. https://t.co/XPZu6Y8CBS +03/02/2017,Musicians,@WillieNelson,"Check out a sneak peak of the new track from 'God's Problem Child.’ https://t.co/0GDPo3v9f1 +Pre-Order: https://t.co/8bdg0UPboa" +03/01/2017,Musicians,@WillieNelson,RT @WilliesReserve: #WilliesReserve apparel is now available on our new website. And it's legal in all 50 states! Visit https://t.co/pxXnub… +02/21/2017,Musicians,@WillieNelson,RT @PinewoodBowl: JUST ANNOUNCED: @WillieNelson with special guest @DwightYoakam + Robert Earl Keen are coming to @PinewoodBowl 6/7. https:… +02/21/2017,Musicians,@WillieNelson,"RT @Southern_Living: ""I've never seen worrying about anything change it, so I decided not to do it."" —@WillieNelson https://t.co/AuLjvCaFER…" +02/21/2017,Musicians,@WillieNelson,Remember when Willie hosted SNL? Check out Redneck Tanning Parlor on https://t.co/p50vN92Vv9 — https://t.co/q33MgTv45F +02/17/2017,Musicians,@WillieNelson,"Willie and Bono Team for Miraculous Movie +https://t.co/x0s7Q1CMIf" +02/16/2017,Musicians,@WillieNelson,RT @BioAnnie1: williesreserveofficial's photo https://t.co/Bq3nGdQtxx @WilliesReserve @willienelson @jacmnelson3 #EndTheCannabisProhibiti… +02/14/2017,Musicians,@WillieNelson,"Happy Valentine’s Day! Video premiere of ""A Woman’s Love,"" from 'God’s Problem Child.' https://t.co/KPKnG9w5B8" +02/14/2017,Musicians,@WillieNelson,"Happy Valentine's Day! +https://t.co/It2n6IGqXX" +02/14/2017,Musicians,@WillieNelson,Willie is headed to Tx for 2 nights @ Whitewater Music Amp this April! Club Pre-Sale tixs & Pkgs on sale @ 10am CT! https://t.co/3neHJPpeNL +02/14/2017,Musicians,@WillieNelson,RT @SnoopDogg: True. 💨💨💨 https://t.co/jW6XgBLbdn https://t.co/vxCtFyntNN +02/13/2017,Musicians,@WillieNelson,"What an honor to win last night. + +https://t.co/9B1YimZ4gY" +02/13/2017,Musicians,@WillieNelson,RT @SnoopDogg: #Legend ✨ music video. world premiere !! Watch it right now @WORLDSTAR https://t.co/WfxmWubgjT #DoggyStyleRecords https://t… +02/13/2017,Musicians,@WillieNelson,"RT @SweetRelief: You can pre-order the NEW @WillieNelson album ""God’s Problem Child"" and get exclusive merchandise on @PledgeMusic! https:/…" +02/13/2017,Musicians,@WillieNelson,RT @colbertlateshow: Congratulations to our good friend @WillieNelson on his #GRAMMY win for Best Traditional Pop Vocal for #Summertime! ht… +06/30/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: .@JTimberlake shows off multiple ""Air Higher"" Air Jordan 3 JTH options. https://t.co/93q96tGdA8" +06/24/2018,Musicians,@jtimberlake,RT @TheSinnerUSA: A performance you won't forget. Consider @JessicaBiel for Outstanding Lead Actress in a Limited Series or Movie. #TheSinn… +06/15/2018,Musicians,@jtimberlake,Bwahahaha! My hero. https://t.co/Fy6Xyheti4 +06/15/2018,Musicians,@jtimberlake,"Yoooooo! “Right there, right there!” https://t.co/hiSH4bOuBW" +06/15/2018,Musicians,@jtimberlake,"Young yellow beanie vibes... lol + +🙌 https://t.co/ASAjEUwE6r" +06/15/2018,Musicians,@jtimberlake,👀 https://t.co/vzBHtE1Mlr +06/13/2018,Musicians,@jtimberlake,Thank you guys for nominating Say Something for a surfboard! We’re honored. Vote here ✔️ https://t.co/tSUgerlkyK… https://t.co/58wL5mRRrp +06/09/2018,Musicians,@jtimberlake,"RT @NBCSports: Hey @jimmyfallon, who do you want to win @BelmontStakes? + +Also... what’s your favorite @jtimberlake album? 😂 https://t.co/xg…" +06/07/2018,Musicians,@jtimberlake,GET’M PUFF!!! 💯💯💯 https://t.co/ABKveClsXG +06/06/2018,Musicians,@jtimberlake,"Hey man, when someone tells you they’ll make a drink based on a fake (but very real) fruit you made up…you just don… https://t.co/GVyNrVGGX3" +06/04/2018,Musicians,@jtimberlake,2 JT’s and a Wanamaker! 🙌 https://t.co/DzsoMSaaN8 +06/04/2018,Musicians,@jtimberlake,Thank you to Philly for helping us wrap up the last show of the first leg of #MOTWTOUR. We’re taking a little break… https://t.co/tuBCN4kGCp +06/03/2018,Musicians,@jtimberlake,Last chance! https://t.co/KWHICooMfC +05/28/2018,Musicians,@jtimberlake,🥃 @swish41 https://t.co/jq2YY2ig4z +05/27/2018,Musicians,@jtimberlake,"TEXAS STRONG + +https://t.co/wGcSWAVO6X https://t.co/6Vbs2k537G" +05/26/2018,Musicians,@jtimberlake,"RT @JJWatt: Cheers to good times with great friends and the beautiful city of Houston. +@jtimberlake https://t.co/93a6j6cL70" +05/25/2018,Musicians,@jtimberlake,"RT @brkicks: ""DETAILS"" @jtimberlake @virgilabloh https://t.co/zLFWwvLIs0" +05/25/2018,Musicians,@jtimberlake,".@JJWatt bro, you could really use a trip to the gym. Congrats to the 🚀!!! + +https://t.co/7v3e1XqgpX https://t.co/QBAgasoau0" +05/22/2018,Musicians,@jtimberlake,Google’s having a rough night. @SHAQ @NBAonTNT https://t.co/ehqGOxFeM5 +05/21/2018,Musicians,@jtimberlake,Why is the net already bracing for that dunk?!?! 😂 https://t.co/8ItjY7SNpq +05/20/2018,Musicians,@jtimberlake,"Custom 501’s in action last night. Thank you @Levis...Happy #501Day. + +https://t.co/w5RQADyKsG https://t.co/XYIyeWNJqX" +05/19/2018,Musicians,@jtimberlake,RT @adamblackstone: YUPPPP... ITS TRUE... I'm BACK rocking w @jtimberlake & my @THETNKIDS FAMILY 2NITE!!! Gonna have a great time here in… +05/19/2018,Musicians,@jtimberlake,😂 https://t.co/Ia1AUSNuJU +05/19/2018,Musicians,@jtimberlake,🙌 https://t.co/Hvt2aQTU0N +05/18/2018,Musicians,@jtimberlake,🔥 https://t.co/0kyvoa1twH +05/17/2018,Musicians,@jtimberlake,YES. https://t.co/smNRIbszi6 +05/15/2018,Musicians,@jtimberlake,"RT @TheFieldhouse: Dang @jtimberlake, we see you 👀 + +We'll have to get you on the @Pacers Practice Court when #MOTWtour comes to #Indy in De…" +05/15/2018,Musicians,@jtimberlake,"I should have put this thing on silent... + +https://t.co/bMyKEj4CT3 https://t.co/5WRBiOXAFL" +05/15/2018,Musicians,@jtimberlake,https://t.co/jClsoOdLFe +05/14/2018,Musicians,@jtimberlake,Three out of the four of us are moms! Celebrating my MVP’s today and everyday. Happy Mother’s Day! 🏆… https://t.co/gg13F5DyVl +05/12/2018,Musicians,@jtimberlake,Sounds like...@Jumpman23. S/O @virgilabloh @trvisXX https://t.co/oPrFG7ovJo https://t.co/gzo0HK2sh1 +05/11/2018,Musicians,@jtimberlake,Thank you to the one and only @ChrisStapleton for making an appearance last night in Nashville. Always honored to s… https://t.co/B6Ce0yHkO7 +05/09/2018,Musicians,@jtimberlake,Who’s coming? https://t.co/BOhjzhYz5f +05/08/2018,Musicians,@jtimberlake,"Last night. For the record, you were by far our loudest crowd so far, Columbus. + +https://t.co/HoH7bEBaW7 https://t.co/2LYxaPKEO7" +05/08/2018,Musicians,@jtimberlake,🙌 https://t.co/S3TaDIOAjG +05/08/2018,Musicians,@jtimberlake,RT @joywilliams: In exactly one week I’ll be getting ready to take the stage @eddiesattic to perform (mostly) new music for a sold out crow… +05/07/2018,Musicians,@jtimberlake,Thank you Tulsa! https://t.co/bgQWuk5wPB +05/05/2018,Musicians,@jtimberlake,"RT @Suns: JT keeping the court warm until the boys are back 👀 + +@jtimberlake https://t.co/K7ImYuZaeG" +05/03/2018,Musicians,@jtimberlake,BRASPBERRY. Google it. https://t.co/7ne1MFmTle +05/02/2018,Musicians,@jtimberlake,"Why’d I even ask. #OREOS + +https://t.co/S0fZ1IvLud https://t.co/11DbjSErmm" +05/01/2018,Musicians,@jtimberlake,🔥 https://t.co/1ZYf96D9xl +04/30/2018,Musicians,@jtimberlake,Wait for it 😂l https://t.co/TjSECg4q0x +04/30/2018,Musicians,@jtimberlake,Honored to be up here with my brothers today. Thank you #WalkofFame for the star...and thank you @TheEllenShow and… https://t.co/WVrSx9q3Do +04/30/2018,Musicians,@jtimberlake,"RT @TheEllenShow: Congratulations, @NSYNC! You got a star on the Walk of Fame! All without a vowel. Congratulations! https://t.co/QuRcHPglwP" +04/30/2018,Musicians,@jtimberlake,RT @theforum: JT backstage with our custom #MOTW neon sign. 🔥 @jtimberlake #JTForum #MOTWTour @THETNKIDS (📷: Mark Nguyen) https://t.co/b4ha… +04/29/2018,Musicians,@jtimberlake,"Time for round two, tonight at @theforum... https://t.co/41WKOOgcE8" +04/29/2018,Musicians,@jtimberlake,Check it out 💯 https://t.co/r5wRZeIr7o +04/27/2018,Musicians,@jtimberlake,RT @ComplexStyle: .@jtimberlake's Man Of The Woods Tour merch designed by @heronpreston + 4 exclusive products in collaboration with @RSVPG… +04/27/2018,Musicians,@jtimberlake,RT @RSVPGallery: RSVP GALLERY X JUSTIN TIMBERLAKE X HERON PRESTON POP-UP LIVE NOW. Exclusive collab merch by RSVP and tour merch from @jtim… +04/27/2018,Musicians,@jtimberlake,RT @Spotify: .@jtimberlake is changing it up on his #ManOfTheWoods tour. Get a taste with live performances 👉https://t.co/7UDWaCYmOt https:… +04/27/2018,Musicians,@jtimberlake,New videos up on @Spotify today! Check them out: https://t.co/sGxDvEf8qA https://t.co/m7K5GpIBDr +04/27/2018,Musicians,@jtimberlake,RT @wwd: .@jtimberlake's concert merch will be sold at L.A. boutique RSVP Gallery: https://t.co/8PHDxYk2Km https://t.co/P1wAaLCCii +04/24/2018,Musicians,@jtimberlake,We’re invading The Bay. See you tonight San Jose! https://t.co/pPL9jUFkYR https://t.co/drzdKK4iPE +04/22/2018,Musicians,@jtimberlake,"We’re so lucky to call this place home. #earthday + +https://t.co/mCLcd2wlEc https://t.co/yQ9EnwW73K" +04/20/2018,Musicians,@jtimberlake,"Dad life. His toys = my toys. @PJMasksUS + +https://t.co/x8sCRb8GZE https://t.co/qj4QAnVhWK" +04/18/2018,Musicians,@jtimberlake,What they said👇 https://t.co/kUnerWPCsy +04/16/2018,Musicians,@jtimberlake,"Thank you Vegas + +https://t.co/c2i022uqXm https://t.co/nCpCOqhk0J" +04/16/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: me every time I open new sneakers, @jtimberlake. 😂 https://t.co/qSgEEencVy" +04/14/2018,Musicians,@jtimberlake,🙌 https://t.co/Wjn2A0hVu4 +04/14/2018,Musicians,@jtimberlake,"Loved hanging out with you last night, Salt Lake! #MOTWTOUR https://t.co/3JXKSZ4Oal https://t.co/idSKEpewtK" +04/12/2018,Musicians,@jtimberlake,"RT @LEVIS: Our limited-edition flannels, co-designed with @jtimberlake, are part of the @AmericanExpress OUTSIDE IN shoppable mixed reality…" +04/12/2018,Musicians,@jtimberlake,"RT @HYPEBEAST: #hypebeastart: @Pharrell and @jtimberlake with their new BFFs. ""SEEING/WATCHING"" - @fyKAWS. https://t.co/xF88W205wF" +04/10/2018,Musicians,@jtimberlake,"Next stop: SLC... + +https://t.co/Ry9pUgkOXb https://t.co/3DJvQfdDBL" +04/06/2018,Musicians,@jtimberlake,RT @SoleCollector: .@JTimberlake's Air Jordan 3s releasing again today in LA and Boston: https://t.co/3VndNNfeES https://t.co/OTl1HstIBV +04/06/2018,Musicians,@jtimberlake,"So...now there's two of me? + +https://t.co/Vx5jREAU7m https://t.co/wsOeVStV1q" +04/06/2018,Musicians,@jtimberlake,"RT @freestylesteve: Who’s Next?? #MotwTour #DjLife @ Montreal, Quebec https://t.co/6bLZ5zVzza" +04/06/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake wearing the “UNDFTD” Nike Zoom Kobe 1 Protro in Boston #MOTWTOUR + +📸 @marklashark https://t.co/caL9YISCxS" +04/05/2018,Musicians,@jtimberlake,Night 2 @tdgarden #MOTWTOUR https://t.co/ydwCCfiZXJ +04/05/2018,Musicians,@jtimberlake,💯 https://t.co/NLm9pKbBw5 +04/05/2018,Musicians,@jtimberlake,"Happy birthday, brother. @Pharrell https://t.co/Yd1LT4Vy4Y https://t.co/wuM8s5VDZy" +04/05/2018,Musicians,@jtimberlake,Anything with you LEGEND! @jimmyfallon you can get your feature game up! https://t.co/bAwJ3IrYjp +04/05/2018,Musicians,@jtimberlake,🙌 https://t.co/DDJcyQnWbB +04/05/2018,Musicians,@jtimberlake,🙌 https://t.co/GswZPdEJHA +04/05/2018,Musicians,@jtimberlake,🔥⛳️ https://t.co/3FfeVCiDLF +04/03/2018,Musicians,@jtimberlake,"Detroit, we’re here... + +https://t.co/ZVm65fgAx8 https://t.co/CIyMZXTJ8l" +04/02/2018,Musicians,@jtimberlake,"See you soon, Detroit. https://t.co/iAG9881ejX" +04/02/2018,Musicians,@jtimberlake,Every kid deserves an equal education...but millions don't have access to the technology they need to succeed. I'm… https://t.co/wavKUuu3ne +04/01/2018,Musicians,@jtimberlake,"RT @BleacherReport: GOT EMM! + +@AntDavis23, Master #AprilFools prankster! https://t.co/V40Y18XGC7" +04/01/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: Nike boys in Cleveland. + +@jtimberlake in the mismatched ‘Equality’ LeBron 15s and @kingjames is a Red PE of the ‘Prime…" +04/01/2018,Musicians,@jtimberlake,"A MOMENT. Had no idea @kingjames was jumping on stage tonight. Thanks for celebrating with us, Cleveland...cheers!… https://t.co/e5rj7yZn1W" +03/31/2018,Musicians,@jtimberlake,RT @brkicks: Justin Timberlake at the Cavs game in the Nike LeBron 15 “Diamond Turf” https://t.co/LjzZOyToMB +03/30/2018,Musicians,@jtimberlake,"Sound on + +https://t.co/R57iBBY3aj https://t.co/zFXEcO00s9" +03/28/2018,Musicians,@jtimberlake,Legends never die https://t.co/fPSPmSNsyO +03/28/2018,Musicians,@jtimberlake,https://t.co/oVEl3e2nXe +03/27/2018,Musicians,@jtimberlake,RT @THETNKIDS: In case you missed it! “GUY time” OR “GOT time?” https://t.co/tDeyIUM6vZ +03/26/2018,Musicians,@jtimberlake,Get too close to the stage and I might steal your phone...https://t.co/SZvBc5qqsq +03/26/2018,Musicians,@jtimberlake,THANK YOU JERSEY! #MOTWTOUR https://t.co/vK3ERmoETO +03/26/2018,Musicians,@jtimberlake,On the road with @theshadowboxers for #MOTWTOUR and they just released their debut EP APOLLO. Check it out / put it… https://t.co/sKK5SmxVwA +03/25/2018,Musicians,@jtimberlake,RT @NBA: This week’s JAM SESSION on #InsideStuff features “Supplies” by @jtimberlake! https://t.co/Uh0vZAm6Qy +03/24/2018,Musicians,@jtimberlake,This is the future. So proud to see you all using your voices and marching today. #NeverAgain #MarchforOurLives… https://t.co/hfht1bf5jV +03/24/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake in the Off-White Air Jordan 1 at @TheGarden + +📸 @marklashark https://t.co/viaqBYboIa" +03/23/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake performs wearing the Nike LeBron 15 ""Orange Box"" in New York City #MOTW https://t.co/XYqAw7hgYD" +03/23/2018,Musicians,@jtimberlake,"RT @THETNKIDS: New York, we love you. @jtimberlake @TheGarden #MOTWTOUR https://t.co/8cDBLXUaUT" +03/23/2018,Musicians,@jtimberlake,"RT @TheGarden: ""On top of the world at the greatest venue in the world, Madison Square Garden!"" - @jtimberlake + +#JustinTimberlakeMSG +(Phot…" +03/22/2018,Musicians,@jtimberlake,"Again, so sorry we had to postpone last night’s show. BUT we have a new date for our next concert at @TheGarden. I’… https://t.co/MG5MLABS8n" +03/21/2018,Musicians,@jtimberlake,I’m sorry to announce the show tonight at Madison Square Garden has been POSTPONED due to the snow. BUT we’re still… https://t.co/pvQjXeLyps +03/20/2018,Musicians,@jtimberlake,RT @Timbaland: Repost from @Tidal. You can't deny @jtimberlake and @timbaland's studio chemistry. Press play on their collaborations: https… +03/20/2018,Musicians,@jtimberlake,RT @brkicks: Justin Timberlake performs in the Kith x Nike LeBron 15 Lifestyle at Washington D.C. #MOTW https://t.co/TtHZeiuWjh +03/19/2018,Musicians,@jtimberlake,I’m so inspired by the #MarchForOurLives students out there owning their voices. We need to demand action. Get out… https://t.co/uv6uq78va2 +03/17/2018,Musicians,@jtimberlake,"RT @Jumpman23: ""Keep jumping."" - @jtimberlake + +Toronto got a first look at the new 🔥 from JT. https://t.co/1eMBfmQ0uO" +03/17/2018,Musicians,@jtimberlake,"Down time. #MOTWTOUR + +https://t.co/xauP4ixkst https://t.co/NXCManMJm3" +03/16/2018,Musicians,@jtimberlake,"That’s a wrap Toronto. We’d stay longer but DC’s callin’...#MOTWTOUR + +https://t.co/gtEQ0zr7yh https://t.co/2EPDDFD3DE" +03/15/2018,Musicians,@jtimberlake,Thank you @StellaMcCartney! https://t.co/18WcUsoAiD +03/15/2018,Musicians,@jtimberlake,"Surprised Toronto with some 2-Minute Warnings #MOTWTOUR + +https://t.co/F3NpBIRJur https://t.co/iwKgQSFOTN" +03/14/2018,Musicians,@jtimberlake,6:23 @Jumpman23 https://t.co/SW8oqsZSTD +03/14/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: 🚨 EXCLUSIVE + +@jtimberlake + @Jumpman23 are celebrating the start of his tour by dropping a limited number of JTH 3s a…" +03/14/2018,Musicians,@jtimberlake,"RT @Jumpman23: 👟: @jtimberlake +📍: 306 Yonge St., Toronto +⏰: 6:23pm ET +📅: 3.14 https://t.co/TQFVyvcU2U" +03/14/2018,Musicians,@jtimberlake,"RT @Complex: 🚨 EXCLUSIVE 🚨 + +@jtimberlake's Jordan 3s release tonight in Toronto + +https://t.co/mFWaXmdljY https://t.co/F8EXpR9nia" +03/14/2018,Musicians,@jtimberlake,"RT @HYPEBEAST: The @jtimberlake x @Jumpman23 kicks are headed to the 6. +https://t.co/MOgSaFJcEf" +03/13/2018,Musicians,@jtimberlake,.@Jumpman23 https://t.co/yISACD4Hiq +03/13/2018,Musicians,@jtimberlake,"Goin’ on tour. #MOTWTOUR + +https://t.co/9TnZeau94A https://t.co/kqhgusmokp" +03/11/2018,Musicians,@jtimberlake,"GOAT @Jumpman23 + +https://t.co/ir25iTAeFX https://t.co/Wof5NZSTNS" +03/02/2018,Musicians,@jtimberlake,Was a honor to share the stage with my brother @ChrisStapleton at the @BRITs last week. Full performance of… https://t.co/E2JWsAEQbX +03/01/2018,Musicians,@jtimberlake,RT @brkicks: P.J. Tucker had options tonight 👀 https://t.co/clEkU82gtA +02/26/2018,Musicians,@jtimberlake,RT @BR_Kicks: P.J. Tucker wearing the Air Jordan 3 JTH against Denver https://t.co/MswcNfuVsO +02/22/2018,Musicians,@jtimberlake,After the show it’s the afterparty. Good times @Spotify #AboutLastNight https://t.co/v3dRQlC7yt +02/22/2018,Musicians,@jtimberlake,Thanks for having us @brits! 🙌 @thetnkids @chrisstapleton #MidnightSummerJam #SaySomething https://t.co/AhGLDfAeh0 +02/21/2018,Musicians,@jtimberlake,RT @BRITs: The Man of the Woods 🌲 is now Man of The #BRITs - we've taken over @jtimberlake's emoji! #JustinTimberlakeBRITs +02/21/2018,Musicians,@jtimberlake,"Here we go... @BRITs #JustinTimberlakeBRITs + +https://t.co/LqhblzG4vX" +02/21/2018,Musicians,@jtimberlake,Excited to be here... #BritAwards https://t.co/14lxTTdbX9 +02/20/2018,Musicians,@jtimberlake,#britawards tomorrow night... I’m the one in the beanie. https://t.co/C725A5fHhc +02/14/2018,Musicians,@jtimberlake,RT @BR_Kicks: P.J. Tucker in the Air Jordan 3 “Legends of the Summer” #Rockets https://t.co/609dk2wTVh +02/09/2018,Musicians,@jtimberlake,"Friday...Volume up! #MOTW +(Exclusive orange vinyl only Target​) +https://t.co/Q0NTBruMDZ https://t.co/iJC5p7kB5Z" +02/08/2018,Musicians,@jtimberlake,RT @pandoramusic: Mood:@jtimberlake's #MOTW. Listen now: https://t.co/rdFE5uWEKG https://t.co/iopMq8QNqb +02/08/2018,Musicians,@jtimberlake,"Behind ""Montana"" and more...... +#MOTW #DeconstructionWithJT on @AmazonMusic: +https://t.co/h4CEWOMF0B https://t.co/mtkFZ6A0Df" +02/07/2018,Musicians,@jtimberlake,"RT @TheEllenShow: Thanks for my secret signal, @JTimberlake. #SuperBowl https://t.co/RkfBc6Zjm8" +02/07/2018,Musicians,@jtimberlake,#MOTW @applemusic https://t.co/Po8obBEjho https://t.co/6nBvtAYca1 +02/07/2018,Musicians,@jtimberlake,"#ManOfTheWoods out now! + +https://t.co/L9yGfZpcbg https://t.co/2LhnVAdksZ" +02/06/2018,Musicians,@jtimberlake,"Thank you, THANK YOU #SBLII @nfl @pepsi! Congrats @Eagles🏆! We out!! @thetnkids #PepsiHalftime 🏈 https://t.co/xjcjqAyBAc" +02/06/2018,Musicians,@jtimberlake,About last night… @thetnkids and I just added more US and Canada #MOTWTour dates. Europe and UK announced!… https://t.co/57Y75ue4VT +02/06/2018,Musicians,@jtimberlake,"Love you, bro!! Thank you! https://t.co/cDZcxgdpOJ" +02/05/2018,Musicians,@jtimberlake,"#MOTW + +https://t.co/rMIkpl3yp3 https://t.co/nW9WVEvQTX" +02/05/2018,Musicians,@jtimberlake,.@THETNKIDS and I brought #Supplies onto @FallonTonight! ⚠️ Limited merch as seen in video available now for only 2… https://t.co/6zgTxmnLoE +02/05/2018,Musicians,@jtimberlake,#SuperBowlSelfie https://t.co/JAJWoDmUFc +02/05/2018,Musicians,@jtimberlake,RT @TheEllenShow: My friend @JTimberlake just killed it. #SuperBowl #JustinTimberlake https://t.co/oZv0YcxsrN +02/05/2018,Musicians,@jtimberlake,🙌🙌🙌 #SBLII #PepsiHalftime @Pepsi @NFL #MOTW @thetnkids https://t.co/blsaV3b8x8 +02/05/2018,Musicians,@jtimberlake,#SBLII #PepsiHalftime @Pepsi @NFL #MOTW https://t.co/EwZnemHzWU +02/05/2018,Musicians,@jtimberlake,#SBLII #PepsiHalftime @Pepsi @NFL #MOTW @thetnkids https://t.co/8RVE5pxW1D +02/05/2018,Musicians,@jtimberlake,⚠️ Two minute warning. ⚠️ @Jumpman23 #SBLII https://t.co/yBo3PZFAJJ +02/04/2018,Musicians,@jtimberlake,My band @theTNKids looking good @RamTrucks! 🙌#CountryBoy #SBLII https://t.co/pt4A2XcqYl +02/04/2018,Musicians,@jtimberlake,"I see you @Spotify #NYC #MOTW + +https://t.co/aOlte4eNgy https://t.co/b3tEJU42dN" +02/03/2018,Musicians,@jtimberlake,"Weekend plans? THIS VIBE. Playin’ all day long. #MOTW + +@AppleMusic +https://t.co/Po8obBmIpQ https://t.co/nmHMhhapZW" +02/03/2018,Musicians,@jtimberlake,"Love love love to you, sis!!!! You saaaang on that!! 🙌 https://t.co/8i2XF0K0qC" +02/03/2018,Musicians,@jtimberlake,"Casual Friday + +#SBLII https://t.co/wNhTMP9vwp" +02/02/2018,Musicians,@jtimberlake,Just made a #targetrun and got my limited edition vinyl there.. Also left a gift for 5 of y’all at the Super… https://t.co/SE7fazStl3 +02/02/2018,Musicians,@jtimberlake,"When @twitter makes your logo an emoji!!! + +#ManoftheWoods +#MOTW +#MOTWTour +#JustinTimberlake +#JTSuperbowl" +02/02/2018,Musicians,@jtimberlake,"RT @iHeartRadio: Yup, it's true! @jtimberlake is hooking you up! His entire new album ""Man Of The Woods"" is available for free with the iHe…" +02/02/2018,Musicians,@jtimberlake,The album & my interviews about the stories behind the songs up on @AmazonMusic now. https://t.co/h4CEWOv493 https://t.co/hSyr9YuaqF +02/02/2018,Musicians,@jtimberlake,"Man of the Woods music video. 🎥: #PaulHunter / @Prettybirdpic +https://t.co/TSJbPA4xle" +02/02/2018,Musicians,@jtimberlake,Man of the Woods... out now! https://t.co/L9yGfZpcbg https://t.co/jcSuUxHiX0 +02/02/2018,Musicians,@jtimberlake,Live from Paisley Park! Teamed up with @AmericanExpress to livestream my official album release – #ManoftheWoods https://t.co/beOZ4nqUPz +02/02/2018,Musicians,@jtimberlake,"Let’s GOOOO! I’m so excited for y’all to hear this all from top to bottom! + +This is a song called MIDNIGHT SUMMER J… https://t.co/9zkDoPb4Iu" +02/02/2018,Musicians,@jtimberlake,4 of 4. Man of the Woods music video out midnight ET. 🎥 : #PaulHunter / @Prettybirdpic https://t.co/q1DgjoCQov +02/01/2018,Musicians,@jtimberlake,Whooooo! It’s a VIBE y’all! ⚠️More New Music Alert⚠️ This is a song called MORNING LIGHT feat. @aliciakeys You bett… https://t.co/ulDCgoAbBC +02/01/2018,Musicians,@jtimberlake,What’s that? Oh yeah... we’re still partying. ⚠️More New Music Alert⚠️ This is a song called WAVE. @pharrell… https://t.co/iemcCqz239 +02/01/2018,Musicians,@jtimberlake,💪💪💪 @adamblackstone @SoiRodgers @BrianFrasierM & all @THETNKIDS https://t.co/TVjTowc8l8 +02/01/2018,Musicians,@jtimberlake,Still my bday!! I’m having too much fun! ⚠️More new music alert ⚠️ This is a song called HIGHER HIGHER. @Pharrell… https://t.co/0njI8nFsJi +02/01/2018,Musicians,@jtimberlake,"Gotta stay hydrated for bro biking, BRO! Btw... it’s COLD in MN. Snow-bro biking when you get here?? https://t.co/oE5ml5c97a" +02/01/2018,Musicians,@jtimberlake,@adamblackstone 🙌 +02/01/2018,Musicians,@jtimberlake,"Bday rehearsals. Still feeling myself..? YES. + +This is a song called MONTANA. @Pharrell @ChadHugo +Man Of The Woods.… https://t.co/QCIAW7EKVc" +02/01/2018,Musicians,@jtimberlake,Talked about the process of creating Man of the Woods with @amazonmusic. First 3 episodes are up now; stayed tuned… https://t.co/7BW82YgjtC +01/31/2018,Musicians,@jtimberlake,@tinyambo 🙌 +01/31/2018,Musicians,@jtimberlake,"I feel like @djkhaled right now!!! NEW SONG ALERT! Birthday vibes! +Thanks everybody for the bday love! https://t.co/Al1qonrZyK" +01/31/2018,Musicians,@jtimberlake,"Man of the Woods is out Friday. And yes, this is how cold it is in Minnesota right now 😉 + +https://t.co/L9yGfZpcbg https://t.co/Zo8ICyQ0g3" +01/30/2018,Musicians,@jtimberlake,#Superbowl #SBLII https://t.co/PEYofvPPlv +01/30/2018,Musicians,@jtimberlake,Excited to be performing #Brits! See you soon UK. https://t.co/KWg4JgoWLY +01/29/2018,Musicians,@jtimberlake,Behind: Say Something @ChrisStapleton https://t.co/QLLwVBeq9y +01/29/2018,Musicians,@jtimberlake,LET’S GO! #Superbowl #SBLII https://t.co/ub3h1ctRbl +01/29/2018,Musicians,@jtimberlake,"Congrats, Jedi!!!!! You all deserve it! https://t.co/xjG7Va94l1" +01/29/2018,Musicians,@jtimberlake,"Happy Bday, Big Spain! https://t.co/d5GIdztpNt" +01/28/2018,Musicians,@jtimberlake,I wish I could be there to support all of the artists on what will undoubtedly be a special night tonight. Sending… https://t.co/09lsQz4uak +01/28/2018,Musicians,@jtimberlake,So inspired by Jay’s words from last night’s pre-Grammy party (Congrats Hov! @S_C_ )...and it reminded me of times… https://t.co/ib8nH7Wjwy +01/28/2018,Musicians,@jtimberlake,#SaySomething acoustic version https://t.co/HXLgYnG05b +01/27/2018,Musicians,@jtimberlake,"It’s always a pleasure when we get to play tunes together, my friend. Honored! @ChrisStapleton… https://t.co/QfhtomXZeE" +01/27/2018,Musicians,@jtimberlake,"Thank you, bro!!! 🙌 https://t.co/wGW2tlIUJd" +01/26/2018,Musicians,@jtimberlake,#SaySomething from #ManoftheWoods up now on @AmazonMusic. Check it! https://t.co/h4CEWOMF0B https://t.co/riT49OCn5K +01/26/2018,Musicians,@jtimberlake,#Superbowl rehearsals are going well... @Jumpman23 #SBLII https://t.co/kuBEoIofIp +01/26/2018,Musicians,@jtimberlake,Aww. Honored to celebrate YOU! Happiest Born Day from me and @TheTNKids! @TheEllenShow #HappyBirthdayEllen https://t.co/IkyaoNdmGo +01/26/2018,Musicians,@jtimberlake,"Man that was fun! @ChrisStapleton @TheTNKids @blogotheque @artperezjr +#SaySomething https://t.co/u2u2dmMrMh https://t.co/GT1pR7yZAT" +01/26/2018,Musicians,@jtimberlake,"RT @blogotheque: ""Maybe one of the most ambitious video shoots I’ve ever been a part of. One take, live performance, in the Bradbury Buildi…" +01/25/2018,Musicians,@jtimberlake,"#SaySomething on @Spotify! +https://t.co/oSnRjHozC9 https://t.co/Ogz8aNIwGa" +01/25/2018,Musicians,@jtimberlake,"Say Something. 3 of 4. feat. @ChrisStapleton +https://t.co/KPzApHWFTG https://t.co/UfzTM4flL2" +01/25/2018,Musicians,@jtimberlake,"Folks, the #SaySomething song + video feat. @chrisstapleton is now up @applemusic... https://t.co/tLFlEo1uII https://t.co/W8MNFkK8zJ" +01/25/2018,Musicians,@jtimberlake,"""Say Something"" feat. @chrisstapleton. 🎥 @blogotheque @artperezjr. +https://t.co/SIe37byPIT" +01/25/2018,Musicians,@jtimberlake,🙌 https://t.co/SEgYusC55r +01/24/2018,Musicians,@jtimberlake,"#SaySomething. @ChrisStapleton +Tomorrow. 12 PM ET. https://t.co/F5vheaMpOZ" +01/24/2018,Musicians,@jtimberlake,.@ChrisStapleton and me. #SaySomething. Tomorrow! https://t.co/0iKwJAovUJ +01/23/2018,Musicians,@jtimberlake,“At a club? Are you f*cking crazy?” - @tylerthecreator #jerrodcarmichael #Supplies https://t.co/2MtTcTqFWh +01/23/2018,Musicians,@jtimberlake,"THANK YOU! Day changed. + +#StillPieOverCake https://t.co/gbyezn2hhs" +01/23/2018,Musicians,@jtimberlake,"Also... I prefer pie, I think." +01/23/2018,Musicians,@jtimberlake,"Random question: Can someone please explain the saying, “You just want your cake and to eat it too.” + +What else am… https://t.co/tiNyeiFVZC" +01/22/2018,Musicians,@jtimberlake,Behind : Supplies @Pharrell https://t.co/GahdZPIYzL +01/22/2018,Musicians,@jtimberlake,Me? 🙌 https://t.co/9hdLkknSHG +01/22/2018,Musicians,@jtimberlake,RT @adamblackstone: WHAT A WIN... IM SPEECHLESS.... this is like a dream come true... IM PLAYING SBOWL HALFTIME... ANNNNDDD MY TEAM IS PLA… +01/21/2018,Musicians,@jtimberlake,"Supply-eye-ies... + +https://t.co/PlAckfOawg https://t.co/CmFkb5V6yM" +01/19/2018,Musicians,@jtimberlake,"RT @Beats1: Let's go! +@jtimberlake x @zanelowe +#ManOfTheWoods + more. +👀 https://t.co/URmOxfJJGn https://t.co/osXQ48Av2r" +01/19/2018,Musicians,@jtimberlake,"RT @Beats1: ""I always want to write music. I always want to make movies. I always want to go on tour. I don't know how long my body will le…" +01/18/2018,Musicians,@jtimberlake,Supply-eye- ies!!!! 🙌 https://t.co/PFrL4kjv9p +01/18/2018,Musicians,@jtimberlake,🙌 https://t.co/Gnc0S2vyXt +01/18/2018,Musicians,@jtimberlake,"SUPPLIES. 🎥: @_DaveMeyers + +@eizamusica @pharrell + +https://t.co/vJQoPB7jbf" +06/30/2018,Musicians,@ShawnMendes,Goiania xx https://t.co/MNcx2q9DdO +06/27/2018,Musicians,@ShawnMendes,❤️ +06/25/2018,Musicians,@ShawnMendes,Thank you #RDMAs! https://t.co/HsMybSBTGt +06/19/2018,Musicians,@ShawnMendes,"Brazil, see u soon. Can’t wait to play for you again. X" +06/19/2018,Musicians,@ShawnMendes,. @billieeilish i think you are just really crazy talented and everybody who hasn’t listened to your music is seriously missing out. +06/18/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnMendesCollection now available in select @UrbanOutfitters stores and online at https://t.co/EWswWsKSh8 https://t.co/… +06/18/2018,Musicians,@ShawnMendes,Honestly doesn’t get better than this!! @DanielCaesar https://t.co/rdjLSLmYqm +06/18/2018,Musicians,@ShawnMendes,"#ShawnMendesCollection launches with @urbanoutfitters today. In select stores in NY, LA, & Toronto and online at… https://t.co/RYWxOviKfF" +06/18/2018,Musicians,@ShawnMendes,RT @UrbanOutfitters: It’s here! Shop @ShawnMendes The Collection online now: https://t.co/jxvt8FVnjr https://t.co/bwD8omgwL5 +06/16/2018,Musicians,@ShawnMendes,#ShawnMendesFestivalTour this summer. Tickets https://t.co/bEmQqHS8Gq https://t.co/6nsVKox3Yg +06/16/2018,Musicians,@ShawnMendes,https://t.co/2PegoPX29v +06/16/2018,Musicians,@ShawnMendes,I ABSOLUTELY LOVE YOU GUYS. I REALLY REALLY LOVE U +06/15/2018,Musicians,@ShawnMendes,3rd London show is onsale now x https://t.co/qAZaGlclFv https://t.co/l3YxQ0uaqh +06/14/2018,Musicians,@ShawnMendes,https://t.co/G1zT7InoQV +06/13/2018,Musicians,@ShawnMendes,Hahaha thank you so much!!!! https://t.co/87Y2VrwF6q +06/13/2018,Musicians,@ShawnMendes,"Vamos, família! Força Portugal! 🇵🇹 ⚽️ ❤️❤️ @selecaoportugal" +06/13/2018,Musicians,@ShawnMendes,Did the official World Cup song for @selecaoportugal! Go watch here https://t.co/XUC4xcJeF8 #InMyBloodPortugal https://t.co/KXDHgQuoD7 +06/13/2018,Musicians,@ShawnMendes,RT @selecaoportugal: Notícia de última hora: Shawn Mendes chamado à Seleção de Portugal. Aqui está a sua música oficial de apoio à equipa p… +06/12/2018,Musicians,@ShawnMendes,Haha i love this!!!! ❤️ https://t.co/H7QGOdqE2N +06/12/2018,Musicians,@ShawnMendes,Performing @iHeartFestival Sept 22nd! X https://t.co/RcrUwNEzr5 +06/11/2018,Musicians,@ShawnMendes,"Go watch #NervousMusicVideo now! +https://t.co/Y6cj0lpZLR https://t.co/tz0D23WYKt" +06/11/2018,Musicians,@ShawnMendes,#NervousMusicVideo drops in full color at noon EST x https://t.co/WoyqtCWJa5 +06/10/2018,Musicians,@ShawnMendes,https://t.co/FNZObhEZn7 +06/10/2018,Musicians,@ShawnMendes,"If money comes my way, i wont be complaining, though it wouldn’t mean a thing without you" +06/09/2018,Musicians,@ShawnMendes,Thank you @capitalofficial for having me!!! ❤️ https://t.co/2SYOqxXXwM +06/08/2018,Musicians,@ShawnMendes,3rd London show added! https://t.co/qAZaGltX45 x https://t.co/4rqTgYEwBK +06/08/2018,Musicians,@ShawnMendes,https://t.co/t4dY6dzALm +06/08/2018,Musicians,@ShawnMendes,Perfectly wrong. https://t.co/SpAjNURnGZ +06/08/2018,Musicians,@ShawnMendes,#LateLateShawn final night tonight thank you @latelateshow @JKCorden for such a wonderful week https://t.co/uUeLoqvyWA +06/08/2018,Musicians,@ShawnMendes,"RT @JKCorden: Today @ShawnMendes made our entire staff #LateLateShawn merchandise! It was the sweetest gift from an incredibly kind, funny,…" +06/08/2018,Musicians,@ShawnMendes,📷: @JosiahVanDien https://t.co/NWdhtvMZoT +06/08/2018,Musicians,@ShawnMendes,"RT @latelateshow: That was awesome. Thanks for all the great questions! + +Be sure you join us tonight at 12:37/11:37c for the last night of…" +06/07/2018,Musicians,@ShawnMendes,RT @latelateshow: .@AidaWen3 #AskLateLateShawn https://t.co/5BuK0R1sDA +06/07/2018,Musicians,@ShawnMendes,"RT @latelateshow: It's been a crazy, wonderful week here at the #LateLateShow and we bet it's left you with some questions for @ShawnMendes…" +06/07/2018,Musicians,@ShawnMendes,RT @JKCorden: Me and @ShawnMendes both busk on the same subway. https://t.co/nAfgrafU2U +06/07/2018,Musicians,@ShawnMendes,“Like To Be You” with @juliamichaels on @latelateshow https://t.co/HquRhMfJj5 https://t.co/KU8uLkGLcj +06/07/2018,Musicians,@ShawnMendes,RT @latelateshow: This GIF of @ShawnMendes can actually save lives. #LateLateShawn https://t.co/kvH4zXya88 +06/07/2018,Musicians,@ShawnMendes,RT @JKCorden: Tonight’s @latelateshow might be one of my favorites of all time x @CBS 12.30 x #LateLateShawn +06/07/2018,Musicians,@ShawnMendes,Tonight night 3 of #LateLateShawn with @juliamichaels https://t.co/2vX8LrXnJw +06/07/2018,Musicians,@ShawnMendes,Cez and I got a flow https://t.co/HGOWkfUzY7 +06/06/2018,Musicians,@ShawnMendes,New campaign with @EmporioArmani coming soon x #EAwatches https://t.co/h0Y2vjCjEy +06/06/2018,Musicians,@ShawnMendes,RT @billboard: .@ShawnMendes returns to No. 1 on the Billboard Artist 100 chart https://t.co/1LK9gBOF2Q https://t.co/YgtaSc9Ixr +06/06/2018,Musicians,@ShawnMendes,“Lost In Japan”.. Thank you @latelateshow! Night 3 Tonight x https://t.co/YNLOKRPJO7 https://t.co/ivWgeN4L56 +06/06/2018,Musicians,@ShawnMendes,Im a sucker for a good topical joke Ben! https://t.co/YWSR3Jn0Bw +06/06/2018,Musicians,@ShawnMendes,Dan & Shay man!!!! Country music ! Im back baby! +06/06/2018,Musicians,@ShawnMendes,RT @latelateshow: 🎶 Do you got plans tonight? I'm a couple hundred miles from Japan. 🎶 #LateLateShawn https://t.co/2z850Etr4a +06/06/2018,Musicians,@ShawnMendes,😂 @latelateshow @JKCorden #LateLateShawn https://t.co/ftaMdeMhD4 +06/06/2018,Musicians,@ShawnMendes,"RT @whymutual: ""I'm your host, Shawn Mendes"" #LateLateShawn https://t.co/40axy9LoXD" +06/06/2018,Musicians,@ShawnMendes,"RT @latelateshow: It's time for the ""shawnologue"" with @ShawnMendes. #LateLateShawn https://t.co/iaeoTlKnhf" +06/06/2018,Musicians,@ShawnMendes,Night 2 of #LateLateShawn tonight! @latelateshow https://t.co/jdBL323gJ0 +06/05/2018,Musicians,@ShawnMendes,"RT @latelateshow: .@ShawnMendes CRUSHED this performance of ""Nervous"" on last night's show. https://t.co/BaWAEGJdqY" +06/05/2018,Musicians,@ShawnMendes,"RT @TwitterMusic: Looking through your timeline +Seeing all the Tweets 🎶 + +@ShawnMendes stopped by to read what fans are Tweeting.👇 https://t…" +06/05/2018,Musicians,@ShawnMendes,"RT @JKCorden: I swear if @ShawnMendes steals my parking spot again, it won’t end pretty. https://t.co/InNLqNxsn4" +06/05/2018,Musicians,@ShawnMendes,"RT @latelateshow: You know, this @ShawnMendes guy might have a future in the music biz. #LateLateShawn https://t.co/LvecfhgkSg" +06/05/2018,Musicians,@ShawnMendes,Thank you @latelateshow @JKCorden #ShawnCarpool x https://t.co/l35p1k74vp https://t.co/ToaTbLMaeS +06/05/2018,Musicians,@ShawnMendes,"RT @benwinston: His fans have been asking for this for a while and its finally here.... @ShawnMendes carpool, is carpool at its best. He is…" +06/05/2018,Musicians,@ShawnMendes,RT @Hopefully5sos: i was literally dying of laughter mood is james #ShawnCarpool #LateLateShawn https://t.co/YCoISIrd8e +06/05/2018,Musicians,@ShawnMendes,RT @latelateshow: But what Hogwarts house would @ShawnMendes be part of? #ShawnCarpool https://t.co/9Q1kaH5e1r +06/05/2018,Musicians,@ShawnMendes,#ShawnCarpool tonight on the first night of the week takeover @latelateshow #LateLateShawn x https://t.co/bPPcC0DDJs +06/05/2018,Musicians,@ShawnMendes,RT @latelateshow: It's official: Nobody will be needing stitches if @ShawnMendes and @JKCorden show up to a fight 🥊🙈😬 #ShawnCarpool https:/… +06/04/2018,Musicians,@ShawnMendes,RT @latelateshow: .@JKCorden and @ShawnMendes have a little something they’d like to tell you about tonight’s show... https://t.co/PbEG3Ceo… +06/04/2018,Musicians,@ShawnMendes,https://t.co/3bq5cCTM7P +06/04/2018,Musicians,@ShawnMendes,https://t.co/15fGZlwosw +06/04/2018,Musicians,@ShawnMendes,Its all about the connection. Truly is. +06/04/2018,Musicians,@ShawnMendes,https://t.co/u9dsKdrg6Z +06/04/2018,Musicians,@ShawnMendes,Unreal. Thank you to every single person who made this happen! I love u guys so much!!!!!!!!❤️❤️❤️❤️❤️❤️ https://t.co/AFGaSetCuU +06/03/2018,Musicians,@ShawnMendes,@latelateshow @JKCorden Great idea! Haha x +06/03/2018,Musicians,@ShawnMendes,@latelateshow @JKCorden @JKCorden @latelateshow https://t.co/meLHzjdHAQ +06/03/2018,Musicians,@ShawnMendes,RT @latelateshow: .@ShawnMendes #ShamesCorndes week starts tomorrow!! 🙌💃✨🎉 https://t.co/yqLK9st1rR +06/03/2018,Musicians,@ShawnMendes,"RT @iHeartRadio: TONIGHT. We relive all the best moments from the 2018 iHeartRadio Wango Tango AGAIN! + +Watch our #WangoTangoOnFreeform at…" +06/03/2018,Musicians,@ShawnMendes,@latelateshow .@JKCorden @latelateshow https://t.co/4HWFoNGRIT +06/03/2018,Musicians,@ShawnMendes,RT @1027KIISFM: OMG @shawnmendes is RIGHT THERE! 😭😭😭 #WangoTango https://t.co/Mh7Ij1sPyC +06/02/2018,Musicians,@ShawnMendes,!!!!!!!!!!!!!! 😍 https://t.co/WuntfHwfm9 +06/02/2018,Musicians,@ShawnMendes,Wow ❤️ https://t.co/pTzsTuAULx +06/02/2018,Musicians,@ShawnMendes,Unreal. Thank you. @govballnyc https://t.co/d2oPJuH2ns +06/01/2018,Musicians,@ShawnMendes,RT @TODAYshow: .@ShawnMendes is rocking the plaza! #ShawnTODAY https://t.co/1pAXTdJmjf +06/01/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnTODAY 8:30am ET tune in! +05/31/2018,Musicians,@ShawnMendes,Tomorrow performing on @TODAYshow come down to Rockefeller Plaza before 8am to watch! https://t.co/XgPtE4rNeC +05/30/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum - “Lost In Japan” x https://t.co/xfrqTMHH3h +05/30/2018,Musicians,@ShawnMendes,RT @billboard: .@ShawnMendes' new album is heading for No. 1 on the #Billboard200 chart https://t.co/TgkumAizk4 https://t.co/RPTSmJ5Okd +05/30/2018,Musicians,@ShawnMendes,Today come listen to the album on @Spotify with me https://t.co/rmlow132qi https://t.co/S0FrNyZplb +05/29/2018,Musicians,@ShawnMendes,https://t.co/gYlBGfAM0X +05/29/2018,Musicians,@ShawnMendes,"RT @pandoramusic: .@ShawnMendes gets real with us discussing how he is breaking down genres with his new self-titled album, #ShawnMendesThe…" +05/28/2018,Musicians,@ShawnMendes,Will be on at 5:25p @GovBallNYC this Friday go get tickets now at https://t.co/aDve3S2DhF x +05/28/2018,Musicians,@ShawnMendes,London Popup open today only x https://t.co/h40gIMWguV +05/27/2018,Musicians,@ShawnMendes,"RT @JaredLeto: Thx again for joining us on stage at #BiggestWeekend for #RescueMe, @ShawnMendes!! 🙏🏼 @30SECONDSTOMARS https://t.co/pTa1Yd29…" +05/27/2018,Musicians,@ShawnMendes,❤️ https://t.co/N8ukd5xpd8 +05/27/2018,Musicians,@ShawnMendes,https://t.co/IJnvRlj390 +05/27/2018,Musicians,@ShawnMendes,https://t.co/5TXuX8YerC +05/27/2018,Musicians,@ShawnMendes,https://t.co/LaGb685TGL +05/27/2018,Musicians,@ShawnMendes,"RT @BBCR1: Are you excited about @ShawnMendes? + +Because we SURE are 😱🎉 + +Watch the full performance on the @BBCiPlayer ➡️ https://t.co/pBz5i…" +05/27/2018,Musicians,@ShawnMendes,Limited vinyl at https://t.co/KEz4lLaNb4 https://t.co/fuiNvQmRE5 +05/27/2018,Musicians,@ShawnMendes,5:30pm BST tune in @BBCR1 x https://t.co/ewhp1hmhxj https://t.co/9Nh9moA3uq +05/26/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum Pt II. Get the album here x https://t.co/RRpkfGE1tC https://t.co/rqaDCqMsg4 +05/26/2018,Musicians,@ShawnMendes,Wow ive never seen so many different answers! That makes SO happy because they all are super important to me for different reasons ❤️ +05/26/2018,Musicians,@ShawnMendes,Okay favourite songs HIT ME! +05/26/2018,Musicians,@ShawnMendes,Secret pop-up shop in London on May 28th #ShawnLondonPopup https://t.co/zeWAtVejmQ https://t.co/V2fhcl0Eak +05/25/2018,Musicians,@ShawnMendes,https://t.co/oRA9dmRo2S +05/25/2018,Musicians,@ShawnMendes,RT @Target: #ShawnMendesTheAlbum is available now! Our Target exclusive includes extra songs. NY and LA @ShawnMendes has a surprise for you… +05/25/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum  packaging & credits. Thank you x https://t.co/tzLVMY7yk2 +05/25/2018,Musicians,@ShawnMendes,RT @andrewgertler: #ShawnMendesTheAlbum @ShawnMendes https://t.co/NyB53jin9C +05/25/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum Pt I below. Get the album here x https://t.co/JkjwPG2pEd https://t.co/xJgVhN7Jq1 +05/25/2018,Musicians,@ShawnMendes,"Go get the album on @applemusic #ShawnMendesTheAlbum + +iTunes: https://t.co/mnTsXhlJCq +AppleMusic:… https://t.co/OFCtxLw2Kh" +05/25/2018,Musicians,@ShawnMendes,Go stream the album & watch the “Nervous” vertical video on @Spotify! https://t.co/QNp4tNFHOz https://t.co/OmuOFSMcD0 +05/25/2018,Musicians,@ShawnMendes,"Thank you, with all of my heart thank you!! I LOVE YOU!!!! ❤️" +05/25/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawMendesTheAlbum out now! https://t.co/VVprIExL1g https://t.co/4o0N5rpUZQ +05/25/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum is out now go listen & download! x https://t.co/JkjwPG2pEd https://t.co/cZhAskqrXp +05/25/2018,Musicians,@ShawnMendes,my favorite lyrics is the first phrase I say in Like To Be You and the first phrase Julia says #ShawnMendesTheAlbum https://t.co/CSoeEBnEDq +05/25/2018,Musicians,@ShawnMendes,"Everything will be different, a new album lets me be creative with the show all over again. Also. Using lots of fl… https://t.co/7AsT7rzewH" +05/25/2018,Musicians,@ShawnMendes,I wanted to stamp this moment in time at 19 because ive never felt so true to myself #ShawnMendesTheAlbum https://t.co/GDjrMLAWY9 +05/25/2018,Musicians,@ShawnMendes,This is almost impossible to answer but if i had to choose it’d be a fight between In My Blood & where were you in… https://t.co/TGY9i9zV1G +05/25/2018,Musicians,@ShawnMendes,"Depends, some days a couple of hours and sometimes a few days! #ShawnMendesTheAlbum https://t.co/iJGsjAa8aJ" +05/25/2018,Musicians,@ShawnMendes,Im excited for people to see how ive grown and to listen to the stories ive wrote! https://t.co/m36xi7j0R7 +05/25/2018,Musicians,@ShawnMendes,Where were you in the morning!!!!!! #ShawnMendesTheAlbum https://t.co/a8cjbvsDyu +05/25/2018,Musicians,@ShawnMendes,"RT @shawnallofme: I'm very Excited for Midnight @ShawnMendes +#ShawnMendesTheAlbum" +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum Midnight https://t.co/C3oXJ4AOKF https://t.co/BPRFpbSEeV +05/24/2018,Musicians,@ShawnMendes,Twitter Q&A at 11pm ET send your questions with #ShawnMendesTheAlbum https://t.co/chU4sVTax8 +05/24/2018,Musicians,@ShawnMendes,RT @janzenstarr: MIDNIGHT!!!!! @ShawnMendes #ShawnMendesTheAlbum +05/24/2018,Musicians,@ShawnMendes,RT @mendesgoodness: You did it #ShawnMendesTheAlbum https://t.co/f5XnbgFaj3 +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum tonight at midnight x https://t.co/C3oXJ4AOKF https://t.co/cbjOhCcBkZ +05/24/2018,Musicians,@ShawnMendes,RT @nbtscarpenter: I CANT BELIEVE WE’RE GETTING SM3 AT MIDNIGHT IM SO HAPPY #ShawnMendesTheAlbum +05/24/2018,Musicians,@ShawnMendes,That was in my blood i think! Haha https://t.co/5rOW6I8RIJ +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum Midnight x. https://t.co/C3oXJ4AOKF https://t.co/TjmMX8YZmN +05/24/2018,Musicians,@ShawnMendes,"RT @ShawnAccess: #ShawnMendesTheAlbum +#ShawnMendesTheAlbum +#ShawnMendesTheAlbum" +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum out tonight at midnight!!! https://t.co/C3oXJ4AOKF https://t.co/avP3AGBeoJ +05/23/2018,Musicians,@ShawnMendes,#ShawnSecretListening thank you @Bose x https://t.co/5PTzSAxi9I https://t.co/MK9vFWmDqE +05/23/2018,Musicians,@ShawnMendes,Limited tee collection available now x https://t.co/KEz4lLaNb4 https://t.co/J7oLKIO5Tx +05/23/2018,Musicians,@ShawnMendes,2 days until #ShawnMendesTheAlbum x https://t.co/C3oXJ4AOKF https://t.co/nkJKlfkGwW +05/23/2018,Musicians,@ShawnMendes,"New song #Nervous from the album, go download it now https://t.co/YWLwOFozbG" +05/23/2018,Musicians,@ShawnMendes,#Nervous out now x https://t.co/w1znlD9iIP https://t.co/7U6YiFNZJG +05/23/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum - “#Nervous” x Preorder now to get it at midnight https://t.co/C3oXJ4AOKF https://t.co/4r43dinxfK +05/22/2018,Musicians,@ShawnMendes,RT @lightsondoshawn: I'm #Nervous #Nervous #Nervous #Nervous ... +05/22/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #Nervous #Nervous #Nervous +05/22/2018,Musicians,@ShawnMendes,#Nervous Midnight https://t.co/6gMUiyYcXS +05/22/2018,Musicians,@ShawnMendes,3 days until #ShawnMendesTheAlbum! Pre-order now to get #Nervous at midnight tonight x https://t.co/C3oXJ4AOKF https://t.co/0rv8HMpY0z +05/22/2018,Musicians,@ShawnMendes,RT @shawnsmusical: NERVOUS https://t.co/Gh89iLRnKW +05/22/2018,Musicians,@ShawnMendes,RT @aliciakeys: Calling every member of #TeamAlicia out there! 🌍 It's all led up to THIS! We need to work together to get @BrittonBuchanan… +05/21/2018,Musicians,@ShawnMendes,#Nervous comes out Wednesday! Get it when you preorder the album https://t.co/C3oXJ4SpCd https://t.co/27Xpuz1uOr +05/21/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum “In My Blood” x https://t.co/C3oXJ4AOKF https://t.co/t2d5SR4rV7 +05/21/2018,Musicians,@ShawnMendes,Performing new music live outside from Rockefeller Plaza on @TODAYshow June 1st 8am ET. Come watch! x #ShawnTODAY https://t.co/kUUXYBpMmg +05/21/2018,Musicians,@ShawnMendes,"RT @billboard: Shawn Mendes & Khalid put on a powerful performance of ""Youth"" at the #BBMAs https://t.co/giS3J9FphU https://t.co/8IJYbEbS1Q" +05/21/2018,Musicians,@ShawnMendes,RT @ShawnAccess: VIP Ticketless Upgrades for all #ShawnMendesTheTour dates start today at 4pm local time! https://t.co/kydnQeKowN +05/21/2018,Musicians,@ShawnMendes,Love you. +05/21/2018,Musicians,@ShawnMendes,RT @TwitterMoments: The Marjory Stoneman Douglas Show Choir joined @ShawnMendes and @thegreatkhalid on stage for a powerful performance at… +05/21/2018,Musicians,@ShawnMendes,RT @BBMAs: Chills from this moving @ShawnMendes & @thegreatkhalid performance. A huge thank you to the Marjory Stoneman Douglas Show Choir… +05/21/2018,Musicians,@ShawnMendes,RT @BBMAs: 🌹🌹🌹 + 🎸+ @ShawnMendes + 'In My Blood' = 😍😍😍 #BBMAs #SHAWN_BBMAs https://t.co/a11LIery6G +05/20/2018,Musicians,@ShawnMendes,"RT @BBMAs: .@ShawnMendes looks AMAZING tonight, right Mendes Army?🤘#SHAWN_BBMAs https://t.co/zGw29Kt09f" +05/20/2018,Musicians,@ShawnMendes,Tonight tune in @BBMAs will be performing twice x +05/20/2018,Musicians,@ShawnMendes,You can watch #ShawnOneNightOnly now on @AppleMusic! x https://t.co/SCsUptGNIc https://t.co/af0eFHET96 +05/19/2018,Musicians,@ShawnMendes,https://t.co/EQP4CGerBG +05/19/2018,Musicians,@ShawnMendes,North America shows are onsale now! x https://t.co/qAZaGlclFv https://t.co/OUMPLDczC2 +05/19/2018,Musicians,@ShawnMendes,North America Public onsales start today at 10am local time x https://t.co/qAZaGlclFv +05/18/2018,Musicians,@ShawnMendes,UK & Europe shows are onsale now & 2nd Amsterdam date added! x https://t.co/qAZaGlclFv” https://t.co/E75H4LZtsH +05/18/2018,Musicians,@ShawnMendes,#InTheMorning out now x https://t.co/WK9bG4FNtr https://t.co/ujsrHQ1VTT +05/18/2018,Musicians,@ShawnMendes,#ShawnOneNightOnly live now x https://t.co/NGnWWPIYMX https://t.co/jktMrt6dvw +05/18/2018,Musicians,@ShawnMendes,"Watch now! X #ShawnOneNightOnly + +YouTube: https://t.co/NGnWWPIYMX +AppleMusic: https://t.co/vdX2l1OMKz https://t.co/vwmgB4iKvJ" +05/18/2018,Musicians,@ShawnMendes,RT @Shawn_M_Up: Tickets for #ShawnOneNightOnly 😻 https://t.co/jjuHtq9Qxg +05/18/2018,Musicians,@ShawnMendes,#InTheMorning Midnight x https://t.co/v5Uy7HRC8W +05/17/2018,Musicians,@ShawnMendes,RT @ShawnMendes: #InTheMorning Midnight x https://t.co/TG6wSl3Kfq +05/17/2018,Musicians,@ShawnMendes,#InTheMorning Midnight x https://t.co/TG6wSl3Kfq +05/17/2018,Musicians,@ShawnMendes,"Live concert + Q&A with @applemusic starts at 8:30PM PT tonight! Send me your questions with #ShawnOneNightOnly + +Wa… https://t.co/CT9ZSumyaJ" +05/17/2018,Musicians,@ShawnMendes,North America ShawnAccess presale for #ShawnMendesTheTour is happening now x https://t.co/qAZaGlclFv https://t.co/58ERDgsnrs +05/17/2018,Musicians,@ShawnMendes,"North America ShawnAccess presale starts today at 10am local time x +https://t.co/qAZaGlclFv" +05/17/2018,Musicians,@ShawnMendes,UK & Europe General fan presales for #ShawnMendesTheTour are happening now x https://t.co/qAZaGlclFv https://t.co/onwultjRlc +05/17/2018,Musicians,@ShawnMendes,UK & Europe General fan presale starts today at 10am local time x https://t.co/qAZaGlclFv +05/17/2018,Musicians,@ShawnMendes,#InTheMorning Friday! x https://t.co/raYGOCuQU8 https://t.co/6rWdCicnfa +05/17/2018,Musicians,@ShawnMendes,RT @ShawnAccess: Tomorrow make sure to tune into @ShawnMendes #OneNightOnly with @AppleMusic at 7:45pm PT for a live performance & special… +05/16/2018,Musicians,@ShawnMendes,Performing on @TheEllenShow tomorrow x https://t.co/uIMddyaodY +05/16/2018,Musicians,@ShawnMendes,Woa. Next friday. +05/16/2018,Musicians,@ShawnMendes,"FirstAccess presale for the UK & EU, & O2 Priority presale for the UK are happening now x https://t.co/qAZaGlclFv https://t.co/cAS2kUR3MB" +05/16/2018,Musicians,@ShawnMendes,Priority tickets for #ShawnMendesTheTour UK dates with @O2Music are on sale now at https://t.co/SZzStwEme2 https://t.co/6T7aDVBwqa +05/16/2018,Musicians,@ShawnMendes,"FirstAccess presale for UK & EU, & O2 Priority presale for the UK, start today 10am Local! Details at https://t.co/qAZaGlclFv" +05/16/2018,Musicians,@ShawnMendes,Thank youuuuuu ❤️❤️❤️ https://t.co/MTsBWMC1PR +05/15/2018,Musicians,@ShawnMendes,"RT @ShawnAccess: North America! For fans that did not get into the FirstAccess or General Presale via Verified Fan, we’re releasing more ti…" +05/15/2018,Musicians,@ShawnMendes,Thank you @BBMAs! Vote with #IVoteShawnBBMAs or at https://t.co/yMF4IJLaMF +05/14/2018,Musicians,@ShawnMendes,Thursday night performing new music + doing a Q&A live from the John Anson Ford Theater in LA for @applemusic… https://t.co/XWnVoWSu5Z +05/13/2018,Musicians,@ShawnMendes,Love you guys forever! X https://t.co/q1X5soguB2 +05/13/2018,Musicians,@ShawnMendes,All North America General Fan presales for #ShawnMendesTheTour are happening now x https://t.co/qAZaGltX45 https://t.co/4xRNKZwow2 +05/13/2018,Musicians,@ShawnMendes,North America General Fan and Merch presales for #ShawnMendesTheTour start today at 10am & 12pm local time x https://t.co/qAZaGltX45 +05/12/2018,Musicians,@ShawnMendes,All North America FirstAccess presales for #ShawnMendesTheTour are happening now x at https://t.co/qAZaGltX45 https://t.co/L4ePS7znmz +05/11/2018,Musicians,@ShawnMendes,#InMyBloodAcoustic out now x https://t.co/e45V3Uovu9 https://t.co/bklV43GFJi +05/10/2018,Musicians,@ShawnMendes,Thank you @wonderlandmag @TommyHilfiger. Preorder the summer issue at https://t.co/r37Fyv1ejc x https://t.co/3RPQt1j8lG +05/10/2018,Musicians,@ShawnMendes,RT @youthkhalid: @ShawnMendes we love manny THE legend himself +05/10/2018,Musicians,@ShawnMendes,"Old mans bday today, always learning from you. Thank you for being a friend as much as a dad. Love you x" +05/10/2018,Musicians,@ShawnMendes,❤️❤️❤️❤️ +05/09/2018,Musicians,@ShawnMendes,RT @ShawnAccess: You can now buy all of the limited tour prints to access a special merch presale at https://t.co/giwl9RtBJ9 https://t.co/w… +05/09/2018,Musicians,@ShawnMendes,Shot this amazing ad with @O2music for #ShawnMendesTheTour UK. Get priority presale ticket info at… https://t.co/s47YKzlG6t +05/09/2018,Musicians,@ShawnMendes,Sign up for verified fan for the North America presales here x https://t.co/GRdPFzAUMT +05/08/2018,Musicians,@ShawnMendes,"Promise for any cities not yet announced, there will be many more dates added later x #ShawnMendesTheTour" +05/08/2018,Musicians,@ShawnMendes,Ticket presales for #ShawnMendesTheTour start this weekend. All info at https://t.co/qAZaGltX45 https://t.co/N2DeBvOiEk +05/08/2018,Musicians,@ShawnMendes,#ShawnMendesTheTour dates & ticket info all at https://t.co/qAZaGltX45 https://t.co/uXiaIvTYIm +05/08/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnMendesTheTour announces today. Follow along for each date reveal on @ShawnMendes’ IG story & here on @shawnaccess. A… +05/08/2018,Musicians,@ShawnMendes,#ShawnMendesTheTour today x https://t.co/xdbFX7j2OY +05/06/2018,Musicians,@ShawnMendes,it’s crazy to me that you can physically feel your heart skip when you see or hear something you really care about +05/04/2018,Musicians,@ShawnMendes,#Youth hoodie + Album collection available now. Will be donating a portion of all Youth collection sales to… https://t.co/980dK0JyYy +05/04/2018,Musicians,@ShawnMendes,https://t.co/iQZ2NgWg4D +05/04/2018,Musicians,@ShawnMendes,All the love on Youth! Thank you SO much! So proud of it!! X +05/04/2018,Musicians,@ShawnMendes,"RT @zanelowe: #Youth “I said when we get together, we have to make a statement. We have to move. We have to write about what’s going on in…" +05/03/2018,Musicians,@ShawnMendes,"RT @Spotify: No one can take their #Youth away. +@ShawnMendes and @thegreatkhalid created magic with this one ⚡️ https://t.co/V6XwEMdYVB htt…" +05/03/2018,Musicians,@ShawnMendes,"RT @davidhogg111: “Pain no I won’t let it turn into hate, no I won’t let it change me, you cant take my youth away.” -@thegreatkhalid @Shaw…" +06/26/2018,Musicians,@BritneySpears,I think he knew it was coming 😏🙃🙃🤓🙄 https://t.co/ciqC7lDYBI +06/26/2018,Musicians,@BritneySpears,😴🧚‍♀️✨🌸 🎀 https://t.co/ZEWlkEZkW0 +06/25/2018,Musicians,@BritneySpears,🐠🐠🐠 https://t.co/CAq44sJYWh +06/19/2018,Musicians,@BritneySpears,"Happy, happy birthday to my beautiful niece, Maddie!! Can’t believe this sweet girl is 10 years old 💕 https://t.co/zNchaLjgeG" +06/17/2018,Musicians,@BritneySpears,Wishing my daddy a very happy #FathersDay today!!! I love you! ❤️ +06/12/2018,Musicians,@BritneySpears,Love > Hate 🌈 We will not forget those we lost 2 years ago in Orlando 💛 #OrlandoUnited https://t.co/aah5fCRrXp +06/11/2018,Musicians,@BritneySpears,Great trip to Miami! Thank you @TheSetai 🌞 #thankyouforthisgift https://t.co/y8FIXVp5hk +06/11/2018,Musicians,@BritneySpears,Having the best time with my other half ❤️ https://t.co/9z58FfI3Rn +06/10/2018,Musicians,@BritneySpears,"Sending all my love to everyone at #LAPride today!! And wishing a very happy Pride Month to the brave, strong, and… https://t.co/Mk7tDfXojO" +06/09/2018,Musicians,@BritneySpears,Look who I found in Miami 🍎😻 https://t.co/XvVE5z4xnq +06/07/2018,Musicians,@BritneySpears,Magic is everywhere https://t.co/7Sd81F2AJT +06/07/2018,Musicians,@BritneySpears,When you make your kids your famous ice cream sundae and forget to put their favorite thing in it... the banana...… https://t.co/Qw1YfHaI1H +06/06/2018,Musicians,@BritneySpears,Me and Pres having a chill day at our favorite spot in Miami! 🎨🍒🍇🍎🌸🌼☘️🍀🐠🐯🐭👙👗👡 https://t.co/TeMmTLnBwD +06/04/2018,Musicians,@BritneySpears,"Cheering on my home away from home, Las Vegas in the #StanleyCup Finals! Best of luck to the @GoldenKnights in Game… https://t.co/zkSMHJk4qy" +06/04/2018,Musicians,@BritneySpears,Let’s play 🏀 https://t.co/tabt1uCTTP +06/04/2018,Musicians,@BritneySpears,My first photo with Portrait Mode just before having sushi with friends last night!!!!! 🍎👛🍎👠🍀🍏⭐️🌸🐯 https://t.co/rmKPapkEd1 +06/02/2018,Musicians,@BritneySpears,👛😜😜👛 #FBF https://t.co/rymGXwzvzn +06/01/2018,Musicians,@BritneySpears,It’s been way too long since I’ve seen these boys! Had an amazing time on set 😜😜🍎🍎👠🍎 https://t.co/pTyYjWjP4p +06/01/2018,Musicians,@BritneySpears,"Don’t you just love Pretty Woman!! +🍀🍏🍀🍎👠🍎 https://t.co/LYc4JdBzLL" +05/30/2018,Musicians,@BritneySpears,🍏🍎🍏 https://t.co/TVh2P3h40I +05/29/2018,Musicians,@BritneySpears,Love when we go to our favorite spot on Sundays 💕🥞 The boys are bigger than me now!!!!! 😜 https://t.co/p2EGNVFZrj +05/29/2018,Musicians,@BritneySpears,"This is great! + +🎥: @aaroncmusic_ https://t.co/d7jUontjc6" +05/25/2018,Musicians,@BritneySpears,"Don’t you just love jokes +🙃🧝‍♀️😂 https://t.co/RY0dhejFZP" +05/16/2018,Musicians,@BritneySpears,Painting feels so therapeutic to me! Getting to do this with my boys on a beautiful day like this is such a blessin… https://t.co/GWeVaECtyF +05/15/2018,Musicians,@BritneySpears,Love watching these boys succeed when they put their minds to something... even if they cheat on their pull ups 😉🙈🙊 https://t.co/3Z6HrRQ776 +05/15/2018,Musicians,@BritneySpears,Nothing makes me happier as a mom than watching these boys grow and smile and laugh!! They are my world and I love… https://t.co/CH6LRF9YWQ +05/05/2018,Musicians,@BritneySpears,Perfect start to the weekend!! 🍳🥓🍽 https://t.co/VphyJ91gcn +05/05/2018,Musicians,@BritneySpears,https://t.co/jTX03JvhuY +05/04/2018,Musicians,@BritneySpears,"👒👒👒 #fbf +📷: Gilles Bensimon https://t.co/2XvfKnnD0c" +05/04/2018,Musicians,@BritneySpears,"I’m so grateful for the guidance my mother has given me throughout my life! My intuition, will to be stronger and l… https://t.co/U1csZfN6OA" +05/03/2018,Musicians,@BritneySpears,Stronger together 👯‍♀️🍏👯‍♀️ https://t.co/wtXt10SclD +04/30/2018,Musicians,@BritneySpears,💃🏼💃🏼💃🏼 https://t.co/SR82xbZVi8 +04/28/2018,Musicians,@BritneySpears,#FBF 👠👠👠 photo by Steven Klein https://t.co/sGz207mCEL +04/27/2018,Musicians,@BritneySpears,"🎩 #tbt +📷: @EllenVUnwerth https://t.co/UPsSl2wv42" +04/25/2018,Musicians,@BritneySpears,RT @COTA: Gimme more. Tickets on sale Friday at https://t.co/JafXlc8WRR https://t.co/QjfBBgldUN +04/24/2018,Musicians,@BritneySpears,love getting to watch my boys at the skate park!! https://t.co/7m1mVZG3qY +04/24/2018,Musicians,@BritneySpears,Switching up my workout routine in the gym as I get ready for the #PieceOfMe Tour!! 🎀 https://t.co/dqZJkHzsRs +04/24/2018,Musicians,@BritneySpears,Sending my love to the people of Toronto and all those affected ❤️ https://t.co/sJW1D7Mr3F +04/21/2018,Musicians,@BritneySpears,This video shoot was incredible!!! What dreams are made of... #Slave4U https://t.co/XIvSzazUwH +04/19/2018,Musicians,@BritneySpears,Happy birthday to my big brother Bryan!!! He means the world to me and I hope he has the best b-day ever!!!! https://t.co/5SRfYHJckO +04/19/2018,Musicians,@BritneySpears,I think it's impossible for me to go a day without dancing 😜🌹 https://t.co/TQnNSZWdIU +04/18/2018,Musicians,@BritneySpears,RT @TheBritneyArmy: Don't miss @britneyspears on the @GLAAD Awards airing tonight on @logotv at 8/7c!! #GLAADawards https://t.co/9FnnSBQG0s +04/18/2018,Musicians,@BritneySpears,🍎✏️🍎✏️🍎 https://t.co/gBVJhtw7oO +04/17/2018,Musicians,@BritneySpears,🌸 https://t.co/DxjtIUjMpW +04/16/2018,Musicians,@BritneySpears,Channeling my inner Aretha Franklin - the woman has got so much soul!!!! ⭐️🍎⭐️ https://t.co/peq2KiOV0M +04/14/2018,Musicians,@BritneySpears,https://t.co/YaaKwCz6pT +04/14/2018,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/vHKsU8JVDl +04/13/2018,Musicians,@BritneySpears,some days you just got to dance! https://t.co/Lhc3s9C894 +04/13/2018,Musicians,@BritneySpears,What an incredibly moving evening celebrating love and acceptance at the #GLAADawards! I'm so proud to be an ally o… https://t.co/rhRa0fXRZx +04/13/2018,Musicians,@BritneySpears,✨@glaad awards tonight ✨ #GLAADawards https://t.co/dO5CBc1Txx +04/12/2018,Musicians,@BritneySpears,I could not be more excited to welcome baby Ivey to this world. Congrats to @jamielynnspears and the whole family -… https://t.co/ZNmLFxgnTS +04/05/2018,Musicians,@BritneySpears,"RT @glaad: Enter to win a chance to go to the #GLAADawards and see @britneyspears, @iamwandasykes, Jim Parsons and MORE! https://t.co/AufjU…" +04/04/2018,Musicians,@BritneySpears,Wishing my sister @jamielynnspears a very happy 27th birthday today!! 🎀💕 +03/31/2018,Musicians,@BritneySpears,Heaven gained a beautiful angel this week with the passing of Christopher Metsker. His strength and fighting spirit… https://t.co/LsAGbiBLGK +03/30/2018,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/73RuOK6HXc +03/26/2018,Musicians,@BritneySpears,Just want to wish happy birthday to my friend @iamstevent!!! You're a true rock star and inspiration!! Love you! 💕 #HappyBDayStevenTyler +03/24/2018,Musicians,@BritneySpears,"⭐️⭐️ +📷: Mark Seliger https://t.co/nRBkQC133x" +03/24/2018,Musicians,@BritneySpears,Found my white booty shorts 😉😉😉😉 https://t.co/CLcSChcVsm +03/23/2018,Musicians,@BritneySpears,🎀🌹🎀 https://t.co/wae4zvI3Zi +03/22/2018,Musicians,@BritneySpears,Support the #CleanWaterHere2018 campaign to help give children access to safe drinking water. Everyone deserves… https://t.co/k6zJei3qA5 +03/22/2018,Musicians,@BritneySpears,🌹 #tbt https://t.co/mxC3G0Usin +03/20/2018,Musicians,@BritneySpears,"La Collection Memento No2 from @KENZO +📷: @peterlindbergh #kenzolovesbritney #collectionmemento2 https://t.co/gC8C6WXAcB" +03/20/2018,Musicians,@BritneySpears,So excited to announce my new campaign for @KENZO’s La Collection Memento No2 shot by @peterlindbergh!!!… https://t.co/tMBr1tPvni +03/19/2018,Musicians,@BritneySpears,"☕️☕️☕️ +🎨: Make and Tell https://t.co/AVU0YEcdr3" +03/16/2018,Musicians,@BritneySpears,"Feeling so inspired by #SHINE, a song written and performed by students from Stoneman Douglas who survived the trag… https://t.co/NOW6SBCVsA" +03/16/2018,Musicians,@BritneySpears,"🎀🌹🎀 #tbt +📷: Mark Liddell https://t.co/tKLj6gMff7" +03/15/2018,Musicians,@BritneySpears,👒👯‍♀️☘️🕊☘️👯‍♀️👒 https://t.co/440RgEvlQh +03/15/2018,Musicians,@BritneySpears,🎀🎀🎀 https://t.co/Xv6H2DOKjz +03/09/2018,Musicians,@BritneySpears,"just give me a kiss, like this #tbt https://t.co/q4PaPhm2X3" +03/09/2018,Musicians,@BritneySpears,Talk this way https://t.co/CvB5DSB4t9 +03/08/2018,Musicians,@BritneySpears,Walk this way https://t.co/epO9LdGL3S +03/08/2018,Musicians,@BritneySpears,"💕#InternationalWomensDay +🎨: Kasi Turpin https://t.co/E47utGRwQt" +03/05/2018,Musicians,@BritneySpears,Sometimes you’re just trying to get out the door and go to your favorite restaurant when your girlfriend pulls out… https://t.co/7Fwc9JOKMQ +03/03/2018,Musicians,@BritneySpears,Filmed this with the boys and just noticed the guy on the TV says “Dream Within A Dream” at the beginning... that p… https://t.co/WvmG8lP6Ao +03/03/2018,Musicians,@BritneySpears,"Just a little game of tennis with my man!!! Not professional, but it’s really fun!!!!!!!!!!😉😉😉😉😉 https://t.co/JJjrrfmgcx" +03/03/2018,Musicians,@BritneySpears,🕊🕊🕊 https://t.co/bxi51ryazi +03/03/2018,Musicians,@BritneySpears,Going out tonight!! Found my red dress!!!!! 👠👠👠 https://t.co/DMGgKtP2Gv +02/27/2018,Musicians,@BritneySpears,Who doesn’t love Sinatra?? https://t.co/kZBXPzEA67 +02/27/2018,Musicians,@BritneySpears,…and this is the after! Thank you to all the people behind the scenes who help us look and feel beautiful - you are… https://t.co/G5ckccZtTw +02/27/2018,Musicians,@BritneySpears,Had to get a quick shot wearing my favorite dress right before I went into hair and makeup to get ready for the… https://t.co/ygWftHlYmB +02/26/2018,Musicians,@BritneySpears,Went hiking on one of my favorite trails and I looked up and saw this glow and it warmed my heart!!! 💖 https://t.co/HizD6bCvCv +02/23/2018,Musicians,@BritneySpears,Quite the goal by @jocelyneUSA17!! Congrats to the women’s @usahockey team on bringing home the #Gold!! #Olympics +02/17/2018,Musicians,@BritneySpears,"So proud of #TeamUSA!! Hey @guskenworthy, gimme, gimme more on the slopes today!! #ItsGusBitch 👍😉⛷" +02/17/2018,Musicians,@BritneySpears,I posted my leap over a year ago and had to see if I could go higher... well... I did!!! But I really should take a… https://t.co/yu0aUxzEWs +02/16/2018,Musicians,@BritneySpears,Who doesn't love to twirl all day?? 😉😉😉 https://t.co/z7gpLUb9it +02/16/2018,Musicians,@BritneySpears,"Hey @Adaripp.... I just wanted let you know that I am a fan, I am not in denial, and that you are THE MOST FUN!! Ke… https://t.co/0JrATIxdrO" +02/15/2018,Musicians,@BritneySpears,Just heard the tragic news about Florida. My heart breaks for the students of Marjory Stoneman Douglas High School.… https://t.co/0fHsqfWGky +02/14/2018,Musicians,@BritneySpears,Don't underestimate the power of batwoman!!! #happyvalentinesday ❤️❤️❤️ https://t.co/DXVwUDGd1B +02/13/2018,Musicians,@BritneySpears,Honored to be receiving the Vanguard Award at the @GLAAD Media Awards this year! The LGBTQ community means the abso… https://t.co/MkgvjHXLrq +02/09/2018,Musicians,@BritneySpears,Excited to announce that the talented @pitbull will be joining me on select #PieceOfMe shows this summer!! AND we’v… https://t.co/Bjrv9DpUl9 +02/09/2018,Musicians,@BritneySpears,Great day behind the lens!!!! https://t.co/1ATJ784pWD +02/08/2018,Musicians,@BritneySpears,Gearing up for summer!!! ⭐️🎀⭐️ https://t.co/91pzIh1phC +02/07/2018,Musicians,@BritneySpears,Wow! Thank you #HollywoodBeautyAwards!!! So honored to have Fantasy In Bloom named #FragranceoftheYear 💖 https://t.co/AMm9eW0auV +02/06/2018,Musicians,@BritneySpears,📷: Thierry Le Gouès https://t.co/2kxtfz5DNQ +02/05/2018,Musicians,@BritneySpears,I’ve been with this man for over a year... everyday he inspires me to be a better person and that makes me feel lik… https://t.co/nf2J5g2Ksf +02/01/2018,Musicians,@BritneySpears,Some things are just timeless 😉 Thank you for letting me be apart of your story @Pepsi! Watch the #SBLII commercial… https://t.co/1F7KSBx8CI +01/31/2018,Musicians,@BritneySpears,"YES!!! That is right @LouMTaylor!! You do step up every single day, and so do so many other ladies in the music bus… https://t.co/lq4tbQi6Mh" +01/30/2018,Musicians,@BritneySpears,This was from our lil trip to see Aladdin. What a great show!!!! https://t.co/1qFJwWpXpD +01/30/2018,Musicians,@BritneySpears,🎀 https://t.co/g3JRl9jEyA +01/30/2018,Musicians,@BritneySpears,🎀🍎🎀 https://t.co/zRpoOCJho9 +01/29/2018,Musicians,@BritneySpears,"I love cardio and sweating, but over doing anything just isn’t good. It’s been nice working out a little less these… https://t.co/iRyBEVmTEB" +01/27/2018,Musicians,@BritneySpears,Tickets and VIP packages are on sale now for all of the #PieceOfMe dates! 💖 https://t.co/SBF4WxXT31 https://t.co/qW3hTpGENk +01/26/2018,Musicians,@BritneySpears,Can’t wait for this summer!!!! Tickets for select #PieceOfMe dates will go on sale on Friday! All the details are a… https://t.co/lCntLyhmjN +01/25/2018,Musicians,@BritneySpears,RT @LucasMacha: Finally Britney is bringing her tour to Europe! 🔥👍🏻 Join the @britneyspears Tour Club so you’ll have chance to buy presale… +01/25/2018,Musicians,@BritneySpears,Awww thank you!!! See you this summer ❤️ https://t.co/y5RXDICW7X +01/25/2018,Musicians,@BritneySpears,@JericaSwag see you in the big apple!! 🍎🍎🍎✨💜 +01/25/2018,Musicians,@BritneySpears,RT @IfUSeekDrew: just joined the @britneyspears Tour Club so that i can score fan presale tickets for #PieceOfMe bright and early tomorrow… +01/25/2018,Musicians,@BritneySpears,UK + Europe... in case you missed this while you were sleeping❤️✨ https://t.co/EXaohqPzMo +01/24/2018,Musicians,@BritneySpears,Can’t wait to get back on the road this summer #PieceOfMe 🍏🍏🍏 https://t.co/fzcfD7z5Vp +01/23/2018,Musicians,@BritneySpears,"I'm so excited to announce that we're bringing the #PieceOfMe tour to select cities in North America, Europe and th… https://t.co/GP2aEctF0n" +01/18/2018,Musicians,@BritneySpears,🌊🌊🌊 #tbt https://t.co/wCppFRkDnO +01/18/2018,Musicians,@BritneySpears,My son is fantastic! 🎉🎉 https://t.co/6V7a61X8PF +01/15/2018,Musicians,@BritneySpears,Proud mommy moment! https://t.co/KeRYfwAnWv +01/14/2018,Musicians,@BritneySpears,Seriously though... what more could you ask for? 🔥👒😜 Nachos all the way!! https://t.co/EmUOf51FBl +01/11/2018,Musicians,@BritneySpears,🤓👠📚 https://t.co/kDXpNqtq8f +01/10/2018,Musicians,@BritneySpears,🐠🦋🐠 So much fun at this beautiful place https://t.co/9rKsn8Tp7u +01/07/2018,Musicians,@BritneySpears,👒🎀 https://t.co/LZoWB1mGmP +01/07/2018,Musicians,@BritneySpears,🏖🏖 https://t.co/aSEh0URVfA +01/06/2018,Musicians,@BritneySpears,👒🏖👒 Just a sprinkle of paradise!!!!!! https://t.co/ZEUPRDixJ8 +01/03/2018,Musicians,@BritneySpears,Me and my boys enjoying the warm weather!!! 🕶🌴🌊⭐️ https://t.co/3ElQb1lg5R +01/03/2018,Musicians,@BritneySpears,"Thank you, Vegas ❤️ +📷: Randee St. Nicholas https://t.co/MAAgeqN9V1" +01/01/2018,Musicians,@BritneySpears,2018 shenanigans with Sam 🤷‍♀️👒🤷‍♀️ https://t.co/1zGePhJoyM +01/01/2018,Musicians,@BritneySpears,"It’s almost showtime! I just want to say thank you to the #PieceOfMe cast and crew, the city of Las Vegas, and all… https://t.co/lKpeQgL5zT" +12/31/2017,Musicians,@BritneySpears,"Tonight is the night! Saying goodbye both to Vegas and 2017! It’s bittersweet, but I’m looking forward to an amazin… https://t.co/rZAUkaHGsc" +12/30/2017,Musicians,@BritneySpears,"RT @TheBritneyArmy: Get ready for @NYRE with the official @spotify playlist featuring @britneyspears!!! 🎉 #BRITNEYxRockinEve +https://t.co/O…" +12/29/2017,Musicians,@BritneySpears,Enjoying the holiday break! 👟🍎 https://t.co/iht7brTk9f +12/24/2017,Musicians,@BritneySpears,Maddie is going to be the best big sister!!! So happy for you @jamielynnspears!!!! Love you all sooo much!!! 💕 https://t.co/aTQnCrmh6V +12/24/2017,Musicians,@BritneySpears,Awwww your family is so adorable!!! Merry Christmas to you all ❤️🎄 https://t.co/Y83hpTUhBH +12/23/2017,Musicians,@BritneySpears,We are all Dreamers ✨ Tell Congress to pass the #DreamAct https://t.co/VRw2xORG97 https://t.co/TjAbL8UiYi +12/22/2017,Musicians,@BritneySpears,Denmark!! See you at @Smukfest on August 8th!! ✨ #SMUK18 https://t.co/MI3yu6DKq7 +12/21/2017,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/txYPEpxIJK +12/21/2017,Musicians,@BritneySpears,Going to be ending 2017 with the last #PieceOfMe show ever and a special performance on @NYRE!! Tune in to ABC on 1… https://t.co/ouavykB0dD +12/19/2017,Musicians,@BritneySpears,https://t.co/7dmZe9a0QA +12/11/2017,Musicians,@BritneySpears,Today is the last day to enter to win a trip for 2 to Las Vegas and join me for the final #PieceOfMe show! Don’t mi… https://t.co/lDIonrOsdT +12/06/2017,Musicians,@BritneySpears,👠 https://t.co/h0XVqESSPI +12/05/2017,Musicians,@BritneySpears,👒👠👒 https://t.co/1V1s3Wz3Pf +12/03/2017,Musicians,@BritneySpears,"Thanks again for all the birthday love yesterday!!! For those who donated to the LSBA, show me a screenshot of your… https://t.co/7GivtUXnu2" +12/03/2017,Musicians,@BritneySpears,@TheEllenShow You always crack me up!!! Thanks Ellen!! ❤️ +12/03/2017,Musicians,@BritneySpears,@MileyCyrus Thanks Miley ❤️❤️❤️ +12/03/2017,Musicians,@BritneySpears,@charli_xcx Thanks girl!!!!! ✨ +12/03/2017,Musicians,@BritneySpears,@jamielynnspears Thanks sis!!! Love you 💕🎀 +12/02/2017,Musicians,@BritneySpears,I decided my birthday wish this year will be to make sure we help the Louisiana School Boards Association as much a… https://t.co/YKWTw71Qk2 +12/02/2017,Musicians,@BritneySpears,Couldn’t ask for a better way to kick off my birthday ❤️🎂 https://t.co/CnEXXw8lYB +12/02/2017,Musicians,@BritneySpears,❤️🌎 #WorldAIDSDay https://t.co/2xa2rLuwJN +12/01/2017,Musicians,@BritneySpears,🎄🎁👠🎄 https://t.co/d3Q5joFPGK +11/30/2017,Musicians,@BritneySpears,🎄🌹 https://t.co/2gWD2RDZ5V +11/28/2017,Musicians,@BritneySpears,Don’t miss your chance to hang out with me at the final #PieceofMe show in Vegas!! Donate to the Louisiana School B… https://t.co/jzUuR8HgA4 +11/23/2017,Musicians,@BritneySpears,My favorite boys at my house for Thanksgiving!!!! 🦃🦃 https://t.co/qwMDKEjFST +11/23/2017,Musicians,@BritneySpears,Happy Thanksgiving!!!! 🦃 https://t.co/h0RCDpve0i +11/23/2017,Musicians,@BritneySpears,Don’t you just love getting ready for the holidays?? I think I need another pumpkin spice latte 😜 ☕️ https://t.co/N6H687PBKA +11/22/2017,Musicians,@BritneySpears,Found this clip from a photoshoot with the kiddos from a few years ago... it got a little silly 🎀🎀🎀🍎🍎🍎 https://t.co/vwPdR55vaN +11/22/2017,Musicians,@BritneySpears,Can’t believe it’s been a year since the #SlumberParty video was released! This was my favorite scene and outfit!! https://t.co/7YzWb2IZ5l +11/21/2017,Musicians,@BritneySpears,Went for a hike the other day and this was my view... so beautiful 👒👒 https://t.co/XfaUhyimxQ +11/16/2017,Musicians,@BritneySpears,Always have a ball with this crew... so much fun!! #TBT 🎉🌺🎀🌸🤓😉 https://t.co/2zydCeHzH4 +11/15/2017,Musicians,@BritneySpears,Support the LSBA for the chance to join me in Vegas on New Year's for the FINAL #PieceofMe show! Donate today for y… https://t.co/t4avdUnvoo +11/14/2017,Musicians,@BritneySpears,🌺🍎🌺🍎 https://t.co/IO1qfB8yjJ +11/13/2017,Musicians,@BritneySpears,😳😳😳😳 https://t.co/y5cwLGGOyi +11/13/2017,Musicians,@BritneySpears,"Wow!!! So honored to be named Best Resident Performer, Best Production Show, Best Bachelorette Party and Best Bache… https://t.co/nXngqInGPh" +11/10/2017,Musicians,@BritneySpears,Secret project 😜🍎🌺🍎 https://t.co/tMKdlpGfD8 +11/09/2017,Musicians,@BritneySpears,We’re getting creative at our house lately... 🌺🌸🌷🌸🌺🌸🌷 https://t.co/Ju853q1cCb +11/09/2017,Musicians,@BritneySpears,"Tammy Richardson, one of the amazing volunteers from the @NVCCF is nominated for the @NASCAR_FDN #BJFHAward! Let's… https://t.co/FMJ9FZgXVx" +11/06/2017,Musicians,@BritneySpears,I’m gonna marry chocolate 👠 https://t.co/H8zJlCQDNK +11/06/2017,Musicians,@BritneySpears,Support the LSBA for your chance to win a trip to hangout with me in Vegas and see the final #PieceOfMe show on NYE… https://t.co/bg2DgeEzpo +11/05/2017,Musicians,@BritneySpears,My heart breaks over the news coming out of Texas 💔 My prayers are with the Sutherland Springs community 🙏 +11/05/2017,Musicians,@BritneySpears,Donny always makes me smile and happy 💗🍎💗 #PieceOfMe https://t.co/0DgnYR5P6L +11/05/2017,Musicians,@BritneySpears,Honored to be part of the grand opening of the new @NVCCF campus today!! This amazing facility is going to help so… https://t.co/aTng5eKefU +11/03/2017,Musicians,@BritneySpears,Always love getting to spend an afternoon at one of my favorite spots in Los Angeles 💓💓👠👠🎀 #tbt https://t.co/ZvkXemDDlX +11/02/2017,Musicians,@BritneySpears,Wow!! Look at these gorgeous heels!! Thank you so much @JLo!!!! 💋👠💎#GiuseppexJennifer https://t.co/uG8DGAQMu4 +11/02/2017,Musicians,@BritneySpears,Vegas always looks so pretty from above! Happy to be back! See you guys tonight!!!! https://t.co/QwMGi7TLxE +11/01/2017,Musicians,@BritneySpears,Sending my love to NYC and those affected by yesterday's senseless tragedy ❤️ +10/31/2017,Musicians,@BritneySpears,"So in love with this puppy 🐶 +🎃🎃👻🎃🎃 #HappyHalloween https://t.co/eHXfmtiwlb" +10/31/2017,Musicians,@BritneySpears,LOVE IS BLIND. https://t.co/BlPHzN5SQF +10/31/2017,Musicians,@BritneySpears,It’s almost Halloween... wonder what clever neighborhood scares there will be.. 😜😜😜😜😜😜😜😜 Trick or treat!! https://t.co/lQsK0ceTh8 +10/30/2017,Musicians,@BritneySpears,🖤💛🖤💗 #Blackout10 https://t.co/5rBjdtE6pZ +10/25/2017,Musicians,@BritneySpears,Wanted some candy 🍭🍡🍬🍭🍬🍡🎂but I ate an acorn instead 🍩🦋🦄👙💋😜🤓 https://t.co/0MCHx3u1jW +10/25/2017,Musicians,@BritneySpears,These hoodies are a huge hit at our house!! 🍎🎀🍎🎀🍎 https://t.co/DI0kEtPhqr +10/20/2017,Musicians,@BritneySpears,"I did this shoot two years ago with my friend @glennnutley... I remember being on my knees, making sure my sons’ ha… https://t.co/cKKlyBKFjI" +10/20/2017,Musicians,@BritneySpears,👯🍎👯 https://t.co/P97a8gO7Vd +10/20/2017,Musicians,@BritneySpears,Let's stand together against bullying and show our support the LGBTQ youth for #SpiritDay! Go purple! 💜  … https://t.co/McyVhaZjTH +10/19/2017,Musicians,@BritneySpears,Back on stage tonight! See ya soon!!!! 😜🤓🍎🎉 https://t.co/zN6UJiqOjf +10/18/2017,Musicians,@BritneySpears,🍎🍎 https://t.co/dNir4yE5YF +10/16/2017,Musicians,@BritneySpears,🎹🎻🌹C L A S S I C   M O O D 🌹🎻🎹 with Sam #mylove https://t.co/abmZyutp1K +10/16/2017,Musicians,@BritneySpears,"RT @glaad: On October 19th, join millions and go purple to take a stand against bullying for #SpiritDay. 💜 + +Are you in? Take the pledge no…" +10/13/2017,Musicians,@BritneySpears,Sometimes you just gotta play!!!!!! 🤓😜💋💅🏻👩‍🎨🎨👯👗👛👒👠🦄🦋🐠🌹💥💥 https://t.co/T3ne9oCZyc +10/13/2017,Musicians,@BritneySpears,https://t.co/943cwqOfWw +10/13/2017,Musicians,@BritneySpears,More from last night ✨#PieceOfMe https://t.co/trOXzIBSVm +10/12/2017,Musicians,@BritneySpears,"Vegas, we felt your love and your strength last night ❤️ #VegasStrong https://t.co/r2Sao8WmkO" +10/10/2017,Musicians,@BritneySpears,Dinner with the boys!!! 🍔🍔🍔 https://t.co/MEVaOf7bP9 +10/09/2017,Musicians,@BritneySpears,❤️🐶🐻 https://t.co/uP1VvRLloL +10/06/2017,Musicians,@BritneySpears,We’ll get through this together ❤️ See you Wednesday #VegasStrong https://t.co/tKqeFMfTiy +10/05/2017,Musicians,@BritneySpears,❤️ #VegasStrong https://t.co/3FkeMRAzj6 +10/02/2017,Musicians,@BritneySpears,Completely heartbroken over the news this morning. Keeping the victims of last night's tragedy in Las Vegas in my p… https://t.co/T3mbcNPmie +09/29/2017,Musicians,@BritneySpears,"When the crew came to town, we dressed alike, blabbed all day and danced at night to ""Tootsee Roll""!!!!! Here's to… https://t.co/uFgZW9jHdF" +09/26/2017,Musicians,@BritneySpears,👠👠👠👠👠💄💄💄💄💄💄 https://t.co/jV3oZprsLH +09/26/2017,Musicians,@BritneySpears,👙👠👗👯💃🏼💅🏻👅 https://t.co/uxGCcfdGvF +09/25/2017,Musicians,@BritneySpears,So... I totally have a girl crush on @EWagmeister! She seems so sweet and I think she is absolutely lovely 🌟 +09/22/2017,Musicians,@BritneySpears,Keeping the people of Puerto Rico and those affected by #HurricaneMaria in my thoughts ❤️🇵🇷 +09/20/2017,Musicians,@BritneySpears,"You never know who you’re going to meet at dinner parties!! 🎉 Great night! So much fun, thank you Cade! 🍃🍃 https://t.co/jFR4pzwmwZ" +09/19/2017,Musicians,@BritneySpears,Sending my love to Mexico ❤️🇲🇽 #PrayForMexico #FuerzaMexico https://t.co/m0oYhRj4pp +09/19/2017,Musicians,@BritneySpears,Fun day yesterday at gymnastics! So excited to hear the Olympics are coming to LA in 2028... already getting in the… https://t.co/23IiVeHfFS +06/29/2018,Musicians,@LukeBryanOnline,Thank you Raleigh #WhatMakesYouCountryTour https://t.co/k7ODtksJm7 +06/28/2018,Musicians,@LukeBryanOnline,Want to meet Luke backstage? Support the amazing work of St. Jude and enter to win: https://t.co/30rLjEY3II https://t.co/4TrXrNFDk0 +06/28/2018,Musicians,@LukeBryanOnline,Can't wait to see y'all on the #WhatMakesYouCountryTour this weekend https://t.co/bXpeEFlHAJ +06/28/2018,Musicians,@LukeBryanOnline,Can't wait to get back out on the farm. Tickets are on sale now for #FarmTour2018 https://t.co/RkUNIerfYw https://t.co/HJFjufysYM +06/27/2018,Musicians,@LukeBryanOnline,"RT @cb30music: When Brody forgets what today is 🤦🏻‍♂️ #NationalSunglassesDay +Listen to @LukeBryanOnline’s 🕶 playlist now to hear #LikeIts…" +06/27/2018,Musicians,@LukeBryanOnline,"RT @UMGNashville: We're celebrating #NationalSunglassesDay at the UMG Nashville office with @LukeBryanOnline! 😎☀️ + +Stream his custom playli…" +06/27/2018,Musicians,@LukeBryanOnline,"RT @carlypearce: Not only am I on @LukeBryanOnline's WHAT MAKES YOU COUNTRY tour this summer, but I am also on his #NationalSunglassesDay p…" +06/27/2018,Musicians,@LukeBryanOnline,"Hey Nashville, check out my Instagram Story to find out where we’ve hid some #SunriseSunburnSunset sunglasses. Post… https://t.co/ugMZUlkavB" +06/27/2018,Musicians,@LukeBryanOnline,We got your #NationalSunglassesDay playlist covered. Put on your shades and hit play. https://t.co/YhGXkJvtFD https://t.co/vKA2Xcw1gr +06/27/2018,Musicians,@LukeBryanOnline,"It’s #NationalSunglassesDay & we’ve got somethin’ for ya a little later on. Stay tuned, Nashville. https://t.co/BStBsIVLW4" +06/26/2018,Musicians,@LukeBryanOnline,"RT @mossycreekstore: #Repost @LukeBryanOnline (get_repost) +・・・ +Just happy. +@LukeBryanOnline with his first bass fishing his custom abelreel…" +06/22/2018,Musicians,@LukeBryanOnline,Want to win tickets to the What Makes You Country Tour? Enter Here: https://t.co/mFAYJeQN6A +06/22/2018,Musicians,@LukeBryanOnline,Good to be back in West Palm #WhatMakesYouCountryTour https://t.co/p3xh2bj1KP +06/21/2018,Musicians,@LukeBryanOnline,Can’t believe the #CrashMyParty video came out 5 years ago today. Always been one of my favorites. #TBT https://t.co/eyWBTuydVq +06/20/2018,Musicians,@LukeBryanOnline,Summertime is just fun and I wanted to showcase some people in my world doing just that. #SunriseSunburnSunset https://t.co/QEL1VkAQXH +06/19/2018,Musicians,@LukeBryanOnline,TOMORROW #SunriseSunburnSunset https://t.co/BYr2ovxJXm +06/19/2018,Musicians,@LukeBryanOnline,Want to win the ultimate Luke Bryan experience at Wrigley Field? Get Luke’s App to enter for your chance to win.… https://t.co/jKMJZHzu8P +06/18/2018,Musicians,@LukeBryanOnline,Excited to see where you go @MaddiePoppe https://t.co/tEj8jfMRgh +06/16/2018,Musicians,@LukeBryanOnline,Check out Luke’s gallery of Musical Notes to share with your dad on this #FathersDayWeekend. https://t.co/e95u09rsYN +06/16/2018,Musicians,@LukeBryanOnline,Everybody knew that was our summer. #SunriseSunburnSunset https://t.co/dO4UGbl2gJ +06/16/2018,Musicians,@LukeBryanOnline,RT @CMThot20: We're making waves at the @CCMFLive this weekend with your favorite stars @LukeBryanOnline @OldDominion @Michaelraymusic @Dea… +06/15/2018,Musicians,@LukeBryanOnline,Looking forward to playing the @iHeartRadio Music Festival in September. Tickets are on sale now:… https://t.co/FwWby73FfO +06/15/2018,Musicians,@LukeBryanOnline,"Thank you Columbia, MD #WhatMakesYouCountryTour https://t.co/Mlfo4yaOTr" +06/14/2018,Musicians,@LukeBryanOnline,We always love the #CMTawards. Thanks for having us. #tbt https://t.co/eV75fDEnsf +06/14/2018,Musicians,@LukeBryanOnline,Want to hang with Luke backstage in Lake Tahoe? Support the amazing work of St. Jude Children’s Research Hospital b… https://t.co/lROFRbTmXS +06/12/2018,Musicians,@LukeBryanOnline,Y’all ready for #FarmTour2018? Tickets are on sale now: https://t.co/RkUNIerfYw https://t.co/9vvLRgsWov +06/12/2018,Musicians,@LukeBryanOnline,Enjoyed surprising fans during #CMAFest with help from @Chevrolet. #ChevyCMA #Sponsored https://t.co/uQig7SREXF +06/12/2018,Musicians,@LukeBryanOnline,RT @TasteOfCountry: There's a lot of reasons why @LukeBryanOnline is crushing it. You may not have thought of this one 🤔 https://t.co/A3Ej5… +06/11/2018,Musicians,@LukeBryanOnline,What a great week at #CMAFest. #itstartswithME @ShearerPhoto @GettyImages https://t.co/MZg4kGWiVz +06/10/2018,Musicians,@LukeBryanOnline,Let’s close this thing out #CMAfest! https://t.co/WKVJAC4AV8 +06/10/2018,Musicians,@LukeBryanOnline,Don’t forget to tune in this morning on @cbssunday to get a BTS look at my @musiciansoncall visit. #MOConCBS +06/09/2018,Musicians,@LukeBryanOnline,Thanks for such an amazing day yesterday. Couldn’t do this with you. Love y’all. https://t.co/Nk7yh1Wbat +06/09/2018,Musicians,@LukeBryanOnline,Tune in to @CBSSunday 6/10 and go behind the scenes on my @musiciansoncall visit. What an honor to deliver the heal… https://t.co/btRc4MtrG4 +06/08/2018,Musicians,@LukeBryanOnline,"RT @dariusrucker: Had the best time stirring up a little trouble with my brothers @Jason_Aldean, @LukeBryanOnline and @CharlesKelleyLA! Y’a…" +06/07/2018,Musicians,@LukeBryanOnline,I want to meet one of y’all in Tahoe! Win tix to the show and meet me backstage—all by supporting St. Jude. ENTER:… https://t.co/txCWZYJbGM +06/07/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Warm up those vocal chords! 🎤🎶 Think you could be #TheNextIdol? Auditions are starting soon! 🚌 Visit https://t.co/2ruYWen… +06/07/2018,Musicians,@LukeBryanOnline,RT @TomCrean: The greatest orientation verse. EVER!! Our @universityofga student orientation group are not only great students but TALENTED… +06/06/2018,Musicians,@LukeBryanOnline,I’m taking over @Esquire’s IG Story tonight for the #CMTAwards. Follow along. https://t.co/dGetHWXpTI +06/06/2018,Musicians,@LukeBryanOnline,Luke’s new single #SunriseSunburnSunset is on @AppleMusic. Listen here: https://t.co/xc4MgBDcHs https://t.co/fvlZZsmuxx +06/05/2018,Musicians,@LukeBryanOnline,Thank you @Billboard for sharing my story and taking the time to get to know me. Appreciate the support and making… https://t.co/jPMghCwEkX +06/05/2018,Musicians,@LukeBryanOnline,"RT @extratv: Exclusive! We're with @lukebryanonline on his #whatmakesyoucountrytour, dishing on his kids, the #CMTawards & more! https://t.…" +06/04/2018,Musicians,@LukeBryanOnline,Excited to have #SunriseSunburnSunset as my next single. https://t.co/oysyFtvSHD +06/04/2018,Musicians,@LukeBryanOnline,"RT @TasteOfCountry: Massive, but somehow intimate 🤔 @LukeBryanOnline broke some personal records Saturday night! https://t.co/PGGcWzSqOQ" +06/03/2018,Musicians,@LukeBryanOnline,Shout out to Verizon Up for hooking fans up with stageside tickets tonight at MetLife. #VZup #ad… https://t.co/6IEBE4Xt6y +06/02/2018,Musicians,@LukeBryanOnline,"Harvest Time VIP Experiences are back. Get early entry, VIP viewing and restrooms plus charging station access and… https://t.co/LxyIzDiRp7" +06/02/2018,Musicians,@LukeBryanOnline,@Forever_TeamTLB You were great. So fun +06/01/2018,Musicians,@LukeBryanOnline,Presale tickets for #FarmTour2018 are available today. Get em’ https://t.co/irQYI9X5ef +05/31/2018,Musicians,@LukeBryanOnline,.@BayerUS presents the 10TH YEAR of Farm Tour. Fan club presale starts tomorrow. Join the Nut House now for access:… https://t.co/XodrNRsErM +05/30/2018,Musicians,@LukeBryanOnline,Get your votes in for #LightItUp at the #CMTAwards at https://t.co/M6IPRWGYjV https://t.co/u1JQtMf1iL +05/29/2018,Musicians,@LukeBryanOnline,#SunriseSunburnSunset Repeat. https://t.co/cJeN2efjCP +05/26/2018,Musicians,@LukeBryanOnline,We’ve got your summertime playlist covered. Listen to the #SunriseSunburnSunset playlist on @Spotify… https://t.co/sQ5EVYBRQ7 +05/25/2018,Musicians,@LukeBryanOnline,Our store exclusive. Available at https://t.co/Y67SPQEa2i @shorethingcigar https://t.co/TBcgztWM79 +05/25/2018,Musicians,@LukeBryanOnline,RT @BoogSciambi: Hey @LukeBryanOnline fans!!! How bout a chance to bid on two tix to his show at Fenway Park AND meet him!!! Proceeds go to… +05/25/2018,Musicians,@LukeBryanOnline,Luke Bryan’s Farm Tour presented by @Bayer is back! Tickets go on sale soon. #FarmTour2018 #HeresToTheFarmer… https://t.co/bLk2SRNuR0 +05/24/2018,Musicians,@LukeBryanOnline,Stay tuned... https://t.co/2kiUtbVuR9 +05/23/2018,Musicians,@LukeBryanOnline,"#ICYMI: I performed my new single, “Sunrise, Sunburn, Sunset” Monday night on #AmericanIdol. Listen here:… https://t.co/GgUyJLUUPk" +05/23/2018,Musicians,@LukeBryanOnline,I’ll be performing at this year’s @CMT Awards on June 6. Be sure to tune in. https://t.co/N6ijrcvAbo +05/23/2018,Musicians,@LukeBryanOnline,Excited that the 2019 @NFL Draft is coming to Nashville. Check out the official announcement here:… https://t.co/LmssrENwZk +05/23/2018,Musicians,@LukeBryanOnline,Tickets are on sale now for @CrashMyPlaya #5YearFiesta. See y’all in Mexico. https://t.co/fcD2EtVsFX +05/22/2018,Musicians,@LukeBryanOnline,Definitely learned the definition of WIG this season...@calebleemusic @maddiepoppe y’all are great together https://t.co/ozJzNX1aXE +05/22/2018,Musicians,@LukeBryanOnline,Amazing. https://t.co/V3lZeoJP5y +05/22/2018,Musicians,@LukeBryanOnline,Papa @lionelrichie has lost all control #AmericanIdol https://t.co/WD3WcFKD6z +05/22/2018,Musicians,@LukeBryanOnline,That was fun @GabbyBarrett_ #AmericanIdol #SunriseSunburnSunset https://t.co/CPaGaIemIJ +05/22/2018,Musicians,@LukeBryanOnline,"Just performed my new single “Sunrise, Sunburn, Sunset” on the #AmericanIdol Finale. How’d we do? https://t.co/862R7fjy4H" +05/22/2018,Musicians,@LukeBryanOnline,@jimmykimmel @AmericanIdol @RyanSeacrest @katyperry @LionelRichie See you soon +05/22/2018,Musicians,@LukeBryanOnline,#Americanidol got us like... https://t.co/YRLXtRffVH +05/22/2018,Musicians,@LukeBryanOnline,RT @katyperry: It’s the ✨GRAND FINALE!✨😱 and my last show with uncle @LionelRichie and my cray brother @LukeBryanOnline this season 😭 Turn… +05/21/2018,Musicians,@LukeBryanOnline,Performing my new single on #AmericanIdol tonight. Which song do you think it'll be? Tune in at 9/8c to find out. G… https://t.co/rlIrnMfyXz +05/21/2018,Musicians,@LukeBryanOnline,That’s a wrap on night one of the #IdolFinale. Tune in tomorrow at 9/8c to find out who your new @AmericanIdol is.… https://t.co/zgI4xwlClH +05/21/2018,Musicians,@LukeBryanOnline,I mean it is the #AmericanIdolFinale. https://t.co/IdSQa8Oh0N +05/21/2018,Musicians,@LukeBryanOnline,"Round 3, let’s see what you got @GabbyBarrett_ @MaddiePoppe @calebleemusic #americanidol #IdolFinale" +05/21/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Oh hayyyy night 1 @AmericanIdol finale! 🎉 @LukeBryanOnline @katyperry #americanidol https://t.co/sbHgzcAFlF +05/21/2018,Musicians,@LukeBryanOnline,"Fake it till you make it, when you make it, shake and bake it. Right @katyperry? #AmericanIdol https://t.co/9G62kqEkiD" +05/21/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: .@MaddiePoppe is going, going for the crown with a performance like that! Download her song here: https://t.co/iC7RUGnuH9…" +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Will @GabbyBarrett_ RISE UP to win the crown with that performance? She just might after that song! Download it here: htt… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: .@calebleemusic is ready to win America’s ❤️(and vote) with songs like that! Download it here: https://t.co/i1KooTnXaJ… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Walking to the set like... @katyperry @lionelrichie and @lukebryanonline are ready for #IdolFinale! 💃🏻🙌 https://t.co/B4y… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: It’s time! It’s time for the Top 3 to take the stage! Our 2 Night Finale Event starts right NOW! #AmericanIdol #IdolFinal… +05/20/2018,Musicians,@LukeBryanOnline,You never know what will happen during the two night finale of #AmericanIdol. Tune in LIVE tonight starting at 8pm… https://t.co/8498mjwzyl +05/20/2018,Musicians,@LukeBryanOnline,"Wow, this one means a lot. Thank you to the fans for showing up. #BBMAs https://t.co/eS5RwwAejp" +05/17/2018,Musicians,@LukeBryanOnline,We're down to the Top 3. Follow their journeys to the finale with your @AmericanIdol backstage pass! https://t.co/zjgBsN4dEF +05/17/2018,Musicians,@LukeBryanOnline,"Excited to let y'all know I'll be the #CMAfest Artist of the Day on Friday, 6/8 at Music City Center! Get your tick… https://t.co/EY8NjFurs0" +05/16/2018,Musicians,@LukeBryanOnline,Monday is the #AmericanIdol finale and I’ll be performing. I promise you don’t want to miss this one. Special guest… https://t.co/tqUWVYBSMN +05/15/2018,Musicians,@LukeBryanOnline,#ICYMI my appearance on @JimmyKimmelLive is airing again tonight. Tune in at 11:35p ET https://t.co/sCu8rzzBYf +05/15/2018,Musicians,@LukeBryanOnline,Keep saying it like you say it brother! Proud of you and love listening to your music. https://t.co/43RQc6GiwJ +05/15/2018,Musicians,@LukeBryanOnline,Excited for another year of #CrashMyPlaya. Grab your friends and come on down to Mexico with us. https://t.co/Qu0nhF069S +05/14/2018,Musicians,@LukeBryanOnline,Excited for y’all. Congrats on making the #IdolTop3. https://t.co/durSmPBBdG +05/14/2018,Musicians,@LukeBryanOnline,That feeling when your mom surprises you on #AmericanIdol. https://t.co/Wp6agPI1W2 +05/14/2018,Musicians,@LukeBryanOnline,Beautiful performance @MaddiePoppe. I’ve loved seeing you grow throughout this process #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,I just got a glimpse into your future @calebleemusic #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,"I don’t know what’s happening, @MichaelJWoodard. I do know that performance was amazing. #AmericanIdol" +05/14/2018,Musicians,@LukeBryanOnline,Perfect song choice. That is exactly who you are @CadeFoehner...#AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,@LionelRichie Not so sure about glitter but I’m always in for a good black jacket +05/14/2018,Musicians,@LukeBryanOnline,"I don’t want to speak after that, but I can tweet. @GabbyBarrett_ that was incredible. Great job girl. #AmericanIdol" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @MaddiePoppe, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below! 👇…" +05/14/2018,Musicians,@LukeBryanOnline,#AmericanIdol night with my 2 other favorite judges. https://t.co/A6nbBJf3wY +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @calebleemusic, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below!…" +05/14/2018,Musicians,@LukeBryanOnline,@AmericanIdol @LionelRichie you can see him from a mile away. Ha #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @CadeFoehner, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below! 👇…" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @GabbyBarrett_, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below!…" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @MichaelJWoodard, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below…" +05/13/2018,Musicians,@LukeBryanOnline,The #AmericanIdol Top 5 need your votes. Tune in from coast to coast at 5pm PST / 8pm EST and vote until the end of… https://t.co/THeCPRdmfT +05/13/2018,Musicians,@LukeBryanOnline,Happy Mother’s Day to the best mama in the D worlds. https://t.co/dWsetuchNw +05/12/2018,Musicians,@LukeBryanOnline,RT to vote #LukeBryan for #TheBestest at the #RDMA’s! @radiodisney https://t.co/OJj291NzLt +05/11/2018,Musicians,@LukeBryanOnline,Make sure to catch the #AmericanIdol Top 7 on tour this summer. Tickets on sale now https://t.co/7h6Ku3v1JK https://t.co/SusDkmVHIy +05/08/2018,Musicians,@LukeBryanOnline,“Light It Up” is nominated for Male video of the Year at the #CMTAwards. Vote now: https://t.co/M6IPRWGYjV https://t.co/PnyNLAKWwF +05/07/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Nothing compares to #Prince! 💜Beautiful night on @AmericanIdol paying tribute to his music... @SheilaEdrummer @katyperry… +05/07/2018,Musicians,@LukeBryanOnline,I’ll be on @JimmyKimmelLive tonight. Make sure to tune in. https://t.co/61uchMUQkK +05/07/2018,Musicians,@LukeBryanOnline,.@Jurnee and @hashtagcatie are 2 special humans. The ride is just beginning. Good luck on the next chapter girls.… https://t.co/sES2MABoDt +05/07/2018,Musicians,@LukeBryanOnline,Waiting on #AmericanIdol results like... https://t.co/kkxHGYcrEa +05/07/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: The #AmericanIdolTour is hitting the road this summer! Pre-sales start Tues. at 10am local time & onsale is this Fri. at… +05/07/2018,Musicians,@LukeBryanOnline,It’s @CadeFoehner’s fault @LionelRichie...we just can’t control ourselves. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,True God given talent @MichaelJWoodard. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,When you can’t think of anything country to say to @MaddiePoppe...#AmericanIdol https://t.co/SpjCdAYYSS +05/07/2018,Musicians,@LukeBryanOnline,Way to keep getting better every week @calebleemusic. Good job buddy. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,"Maybe I need a hug from @nickjonas too, ha. Great job @hashtagcatie. Keep being you. #AmericanIdol" +05/07/2018,Musicians,@LukeBryanOnline,That was so special @GabbyBarrett_. Well done girl. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,.@jurnee kicking us off tonight like... #AmericanIdol https://t.co/ILJSIjaPsY +05/06/2018,Musicians,@LukeBryanOnline,RT @EW: .@LukeBryanOnline is taking over our Instagram Story from the #AmericanIdol set! Follow along here: https://t.co/ichtck6aAF https:/… +05/06/2018,Musicians,@LukeBryanOnline,Getting fired up for @AmericanIdol tonight. Y’all ready to tune for live voting? See you at 8pm EST / 5pm PST https://t.co/8k0ndJlX4S +05/06/2018,Musicians,@LukeBryanOnline,Thanks for having me. https://t.co/4AfdLiJZz9 +05/06/2018,Musicians,@LukeBryanOnline,"RT @iHeartRadio: TONIGHT! @LukeBryanOnline, @KeithUrban and more take the stage in Austin for the party of the year. Watch #iHeartCountry F…" +05/05/2018,Musicians,@LukeBryanOnline,"If you’re not in Austin, don’t worry - you can stream the #iHeartCountry Festival online tonight… https://t.co/9Q15sOegFY" +05/04/2018,Musicians,@LukeBryanOnline,It’s happening. Season 2. @americanidol https://t.co/SsNJTLFF6p +05/03/2018,Musicians,@LukeBryanOnline,RT @lukecombs: Make them turkeys go boom boom... @LukeBryanOnline https://t.co/E9l4SK24qF +05/03/2018,Musicians,@LukeBryanOnline,Announcing Luke’s MVP Stadium Experience for select stadium shows this year. Download Luke’s App now for more info:… https://t.co/qO4j1WRYuH +05/03/2018,Musicians,@LukeBryanOnline,"Austin, y’all coming out to @iHeartCountry Fest Saturday? #iHeartCountry https://t.co/3HLu13CYEa" +05/02/2018,Musicians,@LukeBryanOnline,Y’all go listen to @amazonmusic’s new #CountryHeat playlist that features #MostPeopleAreGood https://t.co/O15fktZdBq https://t.co/lxbyX0oRgF +05/02/2018,Musicians,@LukeBryanOnline,RT @iHeartCountry: The countdown is on! Only 4 more days until the #iHeartCountry Festival in Austin 🤠 Who are you most excited to see? htt… +05/02/2018,Musicians,@LukeBryanOnline,RT @dariusrucker: Ladies and Gentleman.....The Troublemakers!! https://t.co/XyPQ1iVPHI +04/30/2018,Musicians,@LukeBryanOnline,It’s #MusicMonday! Kick it off with Luke’s #MostPeopleAreGood playlist on @Spotify. Listen here: https://t.co/5FufQ3UFea +04/30/2018,Musicians,@LukeBryanOnline,"America, THIS is your Top 7: @Jurnee, @MaddiePoppe, @GabbyBarrett_, @HashtagCatie, @CadeFoehner, @MichaelJWoodard,… https://t.co/U7llBMYlff" +04/30/2018,Musicians,@LukeBryanOnline,".@AdaVox, @DennisLorenzo, @MichelleSussett so sad to see y’all go. Keep pursuing your dreams. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,"America, you have a tough job on your hands. I’m not jealous of ya tonight. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,Way to close out the Top 10 @DennisLorenzo. Great performance. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,.@hashtagcatie you were inspiring tonight. I’m speechless. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,You did @RandyNewman proud @calebleemusic. Way to bring it buddy #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,As magical as #DisneyNight itself @MichaelJWoodard. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,We aren’t having any fun tonight. #AmericanIdol #DisneyNight #VOTE https://t.co/qUf1JnZ87z +04/30/2018,Musicians,@LukeBryanOnline,You’ve got it all @GabbyBarrett_. Great job girl. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Make sure to vote for your favorite everyone! What do you guys think so far?! @lukebryanonline #mickeymouse #AmericanIdol… +04/30/2018,Musicians,@LukeBryanOnline,Nailed it @MichelleSussett. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,.@AdaVox you’re truly honing your skills and your voice. Amazing performance. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,Shoutout to #DisneyNight for bringing that out of ya @CadeFoehner. Great job. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,"Keep dreamin’ and believin’ on your journey, @Jurnee. Ha. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,Your voice is timeless @MaddiePoppe. I just want to keep listening. #AmericanIdol +04/29/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: We're breaking new ground on #AmericanIdol with Disney Night, airing LIVE coast-to-coast! Join in the fun TONIGHT at 8e|5…" +04/29/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: It's going to be a magical night! #DisneyNight at #AmericanIdol starts LIVE coast-to-coast at 8e|5p! https://t.co/SaLjTWw… +04/29/2018,Musicians,@LukeBryanOnline,Catch Disney night on @AmericanIdol tonight with coast to coast live voting from 8/7c until the end of the show! https://t.co/wDkq3ycW1s +04/28/2018,Musicians,@LukeBryanOnline,Y’all go check out @cb30music’s new song. I’m very proud of them. #LikeItsABadThing https://t.co/PJiRodowgS https://t.co/7cQ9vU9xdo +04/25/2018,Musicians,@LukeBryanOnline,Can’t wait to see y’all out on the road this summer. Which show are ya comin’ to? https://t.co/Kt8QDt1IHQ +04/24/2018,Musicians,@LukeBryanOnline,".@MaraJustine1, @JonnyBrenns, @MarcioDonaldson, @Garrett_Jacobs_ y’all have come so far from the first time we hear… https://t.co/s9BSWFMUuo" +04/24/2018,Musicians,@LukeBryanOnline,"Congratulations @Jurnee, @MichelleSussett, and @DennisLorenzo we are so proud to see y’all in the Top 10. #AmericanIdol" +04/24/2018,Musicians,@LukeBryanOnline,Our final judgement. @LionelRichie @katyperry #AmericanIdol https://t.co/goq9RKHfQH +04/24/2018,Musicians,@LukeBryanOnline,"@hashtagcatie , you just keep bringing it girl. @AdaVox you are incredible. Welcome to the Top 10. #AmericanIdol" +04/24/2018,Musicians,@LukeBryanOnline,RT @liz_dae_: When you remember there can only be one #AmericanIdol 💔 https://t.co/LPVrIV9Sct +04/24/2018,Musicians,@LukeBryanOnline,Hi https://t.co/3fGDUxPy49 +04/24/2018,Musicians,@LukeBryanOnline,.@MichaelJWoodard so great to see ya make it through. Way to go #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@briaxbeauty @AmericanIdol https://t.co/0qofaJWCPU +04/24/2018,Musicians,@LukeBryanOnline,Huge congrats @CalebLeeMusic. Pumped to see ya in the Top 10 #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@_a_lwsn_ Don’t do that +04/24/2018,Musicians,@LukeBryanOnline,That was crazy fun @gabbybarrett_. Good job and welcome to the top 10. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,No Instagram Lives were ruined in the making of this pic #AmericanIdol https://t.co/fMcGfHCWHu +04/24/2018,Musicians,@LukeBryanOnline,Couldn’t be happier to see ya in the Top 10 @CadeFoehner. Congrats. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@2DeCee @IdolTweethearts I mean...I’m here. +04/24/2018,Musicians,@LukeBryanOnline,Try being at the judges table #AmericanIdol https://t.co/Zl6EHot8RH +04/24/2018,Musicians,@LukeBryanOnline,Congrats @MaddiePoppe. Excited to see you in the Top 10. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,I’m with you Julia #AmericanIdol https://t.co/ZfjXAzZCWo +04/23/2018,Musicians,@LukeBryanOnline,When you’re about to be live on #AmericanIdol https://t.co/hEGR3nAkkz +04/23/2018,Musicians,@LukeBryanOnline,Catch the first live results show of this season’s @AmericanIdol TONIGHT! https://t.co/G2lUBUOmMG +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Which 10 will continue on to next week? Find out tonight at 8/7c! #AmericanIdol https://t.co/qR3g1q2zmj +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: That’s it for the Top 14! Be sure to vote for your favorites - then find out who is making it to the Top 10 tomorrow at 8… +04/23/2018,Musicians,@LukeBryanOnline,When you remember #AmericanIdol is on again tomorrow. Tune in at 8/7c. https://t.co/QHZeSx6zEX +04/23/2018,Musicians,@LukeBryanOnline,Best vocal performance of the night. Well done @GabbyBarrett_ #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,"You make us love you more and more each time, @MichaelJWoodard. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,"Somebody showed up. Amazing job, @jurnee. @jonnybrenns way to have fun and attack those notes. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,@garrett_jacobs_ tricky little underscore you've got at the end there buddy haha +04/23/2018,Musicians,@LukeBryanOnline,Did y’all feel that from @MaddiePoppe? #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,You definitely gave your mom something to be proud of @DennisLorenzo. #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,".@hashtagcatie that was amazing, but stop looking at the internet. @cadefoehner you never disappoint, but please st… https://t.co/mi2foCn9OE" +04/23/2018,Musicians,@LukeBryanOnline,"Biggest voice I’ve ever heard, @AdaVox. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,"Dynamic performance, @Garrett_Jacobs. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,Keep showing us those layers @MarcioDonaldson & bring that emotion every night @MaraJustine1 #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,I think you made it obvious why you’re here @MichelleSussett #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,.@calebleemusic starting us off right! Good job buddy. #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Voting is open now! Watch tonight and vote for your favorite contestant! 👇👇👇10 votes per contestant per method. #American… +04/22/2018,Musicians,@LukeBryanOnline,De-shined and ready for tonights show. Who’s watching? Let’s go! https://t.co/NxgWcJbvpN +04/22/2018,Musicians,@LukeBryanOnline,It’s your turn America. #VOTE #americanidol @LionelRichie https://t.co/ROQlzbSoOT +04/22/2018,Musicians,@LukeBryanOnline,Don’t miss the Top 14 of #AmericanIdol tonight at 8/7c. Be sure to tune in! https://t.co/9Jjna8vNGt +04/20/2018,Musicians,@LukeBryanOnline,We’ve had some good times so far on #AmericanIdol https://t.co/35lWQbzdQD +04/18/2018,Musicians,@LukeBryanOnline,Get ready for upcoming stadium dates with the #WhatMakesYouCountryXL playlist on @Spotify: https://t.co/JQx9RxlrA0 +04/18/2018,Musicians,@LukeBryanOnline,"RT @LionelRichie: Hey @LukeBryanOnline... how about this... is this ""cowboy cool""? #AmericanIdol https://t.co/zYi1jcf9xv" +04/17/2018,Musicians,@LukeBryanOnline,"ICYMI: You can watch Luke's @ACMawards performance of ""Most People Are Good"" here: https://t.co/knw9JROlkD" +04/17/2018,Musicians,@LukeBryanOnline,Excited to be nominated for this year's @BBMAs Top Country Tour! #BBMAs https://t.co/Rc9wLMr6hH +04/17/2018,Musicians,@LukeBryanOnline,".@AlyssaRaghu @AmeliaHammer @ShannonOhara @EffiePassero @RonBultongez, we love all of you and can’t wait to see wha… https://t.co/2Ofc1pHYNO" +04/17/2018,Musicians,@LukeBryanOnline,.@EffiePassero had us in the palm of her hands with @CamCountry’s #Diane. #AmericanIdol +04/17/2018,Musicians,@LukeBryanOnline,.@marajustine1 you definitely shined bright tonight with @RachelPlatten. Way to take what we’ve said and learn from… https://t.co/UmL7UQ86nY +04/17/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: That performance from @MaraJustine1 and @RachelPlatten got us like 😭#AmericanIdol #IdolDuets https://t.co/rfUVUN6ZPy +04/17/2018,Musicians,@LukeBryanOnline,"Keep taking those kinds of steps, @Garrett_Jacobs_ and you are going to go far. You brought it with @ColbieCaillat. #AmericanIdol" +04/17/2018,Musicians,@LukeBryanOnline,"I can’t stop saying effortlessness with you, @jurnee. I’m just floored by your performance with @LeaMichele. #AmericanIdol" +06/29/2018,Musicians,@SantanaCarlos,"ABOVE ALL WE ASPIRE TO HEAL OURSELVES AND THE WORLD +truth kindness compassion mercy oneness empathy unity harmony +T… https://t.co/lkvq0BJEAk" +06/29/2018,Musicians,@SantanaCarlos,"ABOVE ALL WE ASPIRE TO HEAL OURSELVES AND THE WORLD +truth kindness compassion mercy oneness empathy unity harmony +T… https://t.co/fTu3kxD0g9" +06/26/2018,Musicians,@SantanaCarlos,"Compassion mercy kindness is +The Living CHRIST WAY +The light of JESUS +Knows NOT words like +ALIEN REFUGEES nor IMM… https://t.co/AaSIBkQvdy" +06/19/2018,Musicians,@SantanaCarlos,"DIVINE LIGHT does not recognize space nor time +This why the frequency of the LIVING CHRIST +Is TOTALLY ALIVE TODAY +L… https://t.co/X3wox42Rhe" +06/19/2018,Musicians,@SantanaCarlos,"World CITIZENS open your HEART +CHRIST CONSCIOUSNESS is about HEALING +Being your SISTER and BROTHERs Keeper +Is the o… https://t.co/pFChptWCF9" +06/16/2018,Musicians,@SantanaCarlos,"IT IS SUBJECTIVE FOLKS +If you STOP and ask JIMI HENDRIX +Who’s your favorite guitar player +He most certainly will de… https://t.co/EsjALBx7uO" +06/16/2018,Musicians,@SantanaCarlos,"WE are ever so grateful for the opportunity +To be invited to come to London and share +Our music and energy with our… https://t.co/fD0R6iSO2C" +06/12/2018,Musicians,@SantanaCarlos,"MY LIGHT Will SEE ME THROUGH +Suicide prevention HOT LINE +Offering people words of wisdom that have +Light powers to… https://t.co/eGAxekeRAB" +06/08/2018,Musicians,@SantanaCarlos,"From Team Santana: +On Sunday, June 10 Santana’s iconic performance from the 1982 Us Festival will air on AXS TV 10:… https://t.co/gE40AXTkAq" +06/04/2018,Musicians,@SantanaCarlos,RT @drumstress: Carlos and I had a great time playing the #Anthem at the #NBA https://t.co/aQuYpl1e2x +06/04/2018,Musicians,@SantanaCarlos,Carlos Santana performs national anthem at Game 2 of 2018 NBA Finals | ESPN https://t.co/Nu1ZMsBHDX +06/02/2018,Musicians,@SantanaCarlos,"From Team Santana: The NBA Finals, presented by Youtube announced that Carlos Santana & Cindy Blackman Santana will… https://t.co/6jEUTEkw9a" +05/29/2018,Musicians,@SantanaCarlos,Fear is the parasite that infects the minds of those who have no awareness of their own spirit. Any business that p… https://t.co/QED2b63nBw +05/19/2018,Musicians,@SantanaCarlos,"COMPASSION MERCY FORGIVENESS +these words have the ingredient spiritual power +We desperately need to HEAL and bring… https://t.co/lOF24c02oE" +05/18/2018,Musicians,@SantanaCarlos,"WORLD CHANGE AGENT +1 Constantly creates effortlessly +For the highest good of ALL +2 think good thoughts and CHANGE… https://t.co/4perWYy84e" +05/17/2018,Musicians,@SantanaCarlos,"When you raise your consciousness +By MEDITATING PRAYING OR SELFLESS SERVICE +You see that EVERYONE and EVERYTHING +In… https://t.co/SwBXldNlKq" +05/16/2018,Musicians,@SantanaCarlos,From Team Santana: Own a stage played guitar from Carlos’ personal collection with proceeds going to the Milagro Fo… https://t.co/sPtGrJ51qj +05/12/2018,Musicians,@SantanaCarlos,"Woodstock nation Embody the frequency of a Planetary consciousness +The spiritual world breathing with unity And har… https://t.co/49FO48kNaF" +05/11/2018,Musicians,@SantanaCarlos,"The solution to all humanity’s problems +Raise your consciousness +The 60s slogan turn on tune in drop out +Simply mea… https://t.co/s4vwK970kd" +05/09/2018,Musicians,@SantanaCarlos,"Unwavering highest good is my hearts aim +Therefore the sound and feel of SANTANA +Will always BE a frequency of HEAL… https://t.co/gpYJ26D4r1" +05/05/2018,Musicians,@SantanaCarlos,"Looking through the EYES of GOD +We take the high road +Look at the aerial view +We see the BIG PICTURE +THE HIGHEST G… https://t.co/NAexVtSnnf" +05/03/2018,Musicians,@SantanaCarlos,"Yield real fruit of consciousness creativity +Collect your thoughts feelings emotions +Words deeds and arrange them l… https://t.co/gV30zRMvCq" +05/03/2018,Musicians,@SantanaCarlos,"Moments of awakening +When you realize your beyond the EGO laws +Of this planet plane +Beyond religion politics govern… https://t.co/LGOL8MK6Vj" +05/01/2018,Musicians,@SantanaCarlos,"GOOD to know +Our SALVATION is within Reach +Self realization is attainable and available +When we surrender our mind… https://t.co/Qqa3RjSqo7" +04/28/2018,Musicians,@SantanaCarlos,"Wealthy with wisdom +Some people have many many zeros +To the right yet .... they hardly know +The ONE on the left ..… https://t.co/mZMvFZdcUy" +04/22/2018,Musicians,@SantanaCarlos,"The human spirit / soul +does not complicate nor muddles +The universal oneness with all +The human mind however being… https://t.co/SFPUvmnZrj" +04/19/2018,Musicians,@SantanaCarlos,"FOR THE HIGHEST GOOD +Sentient benevolent autonomy +Meditate raise your consciousness +Activate your awareness knowing… https://t.co/SFc3MTN1aX" +04/07/2018,Musicians,@SantanaCarlos,"This side of heaven +1 CLARITY +2 INTEGRITY +3 GOOD HEALTH +4 PEACE OF MIND +5 JOY +We had a glorious glaring concert las… https://t.co/DKZXVGEti1" +03/27/2018,Musicians,@SantanaCarlos,"RT @billboard: .@SantanaCarlos says Dolores Huerta film will inspire ""sisters of all ages"" https://t.co/FnOzmMOXQQ https://t.co/UomN7R8Hao" +03/27/2018,Musicians,@SantanaCarlos,"RT @Dolores_Movie: .@Dolores_Movie is coming to @PBS! Tune into the TV premiere - Tuesday, March 27 at 9pm. Follow @IndependentLens for upd…" +03/26/2018,Musicians,@SantanaCarlos,"From Team Santana: From the inside out, Carlos by Carlos Santana Men’s Shoes are designed with you and your impecca… https://t.co/VKgAwHqtzI" +03/20/2018,Musicians,@SantanaCarlos,"War is not the answer +For only love can conquer fear +Brother Marvin Gaye + +War in the east War in the west +War up no… https://t.co/mnwi8ih7sI" +03/19/2018,Musicians,@SantanaCarlos,"From Team Santana: We invite you to catch up on the latest news from the Milagro Foundation. +#themilagrofoundation https://t.co/kYH0WG2Sfn" +03/12/2018,Musicians,@SantanaCarlos,"My spirits LIGHT floods my consciousness with +Illumination liberation wisdom power peace +Beauty grace strength... https://t.co/oXL5fXdk7T" +03/07/2018,Musicians,@SantanaCarlos,From Team Santana: We are proud to announce that Zappos has debuted the new Anthony Veer – Carlos by Carlos... https://t.co/VVmS5YkX3x +02/26/2018,Musicians,@SantanaCarlos,"Immutable impeccable indestructible incorruptible +Unwavering unyielding unaffected purity and innocence +At our... https://t.co/VPI1OI9Exb" +02/26/2018,Musicians,@SantanaCarlos,"We propose and present +a new movie rating +We have now +PG .. R .. and so on +We propose adding with accurate... https://t.co/dO79AvKLad" +02/21/2018,Musicians,@SantanaCarlos,"We are here to express the love of GOD +Let us BE present with the divine gifts of +Beauty grace excellence... https://t.co/eZ0SP2wtdH" +02/14/2018,Musicians,@SantanaCarlos,"With love in your heart +And belief in GOD +Anything is possible +Claim what is already yours +Miracles and... https://t.co/GN4cuGYSYc" +02/13/2018,Musicians,@SantanaCarlos,"Dance with the unknown +Take a leap of faith +Go out on a limb +Stick your neck out +Face your fears +Re invent... https://t.co/9tjDDn4e3D" +02/06/2018,Musicians,@SantanaCarlos,"The mechanics of spiritual code of conduct +Will help you build a powerful house +For your soul heart mind and... https://t.co/zDk4v5pVrN" +02/02/2018,Musicians,@SantanaCarlos,"GOD is the motor operandum +He allows us to get behind the drivers seat +And select an assign destination +Beauty and grace" +01/29/2018,Musicians,@SantanaCarlos,"THE LOVING HAND OF THE DIVINE +Last night …In my dream +My angel said don’t worry +Everything is going to be... https://t.co/w8L1pgaPhc" +01/22/2018,Musicians,@SantanaCarlos,"War starts with the letter W +Because it is Weak +Peace starts with the letter P +Because it is Powerful" +01/21/2018,Musicians,@SantanaCarlos,"This is the journey of remembrance +Regardless of your perceptions or beliefs +Regardless of your hue or... https://t.co/AvhOUkvFR9" +01/21/2018,Musicians,@SantanaCarlos,"Change the molecular structure +ALTER the DNA of this planet +Thoughts infected with fear worry anger sadness... https://t.co/dVyRGh2HD2" +01/17/2018,Musicians,@SantanaCarlos,"A Sentient being +is like a Christmas tree +What adorns him/her are these virtues +Honesty +Kindness +Compassion... https://t.co/QAoAnINHP1" +01/15/2018,Musicians,@SantanaCarlos,"1 Spontaneous Remission +2 Total restoration +3 Better than new +4 No Fear Here +5 Whole and sound +6 My recuperation... https://t.co/GiPjcQF0hS" +01/14/2018,Musicians,@SantanaCarlos,"Lead me from the unreal to the…REAL +Lead me from darkness to…LIGHT +Lead me from death to..IMMORTALITY" +01/14/2018,Musicians,@SantanaCarlos,"The LIGHT in us ONLY sees LOVE +FEAR does not see or feel beauty or GRACE what GOD created all around the WORLD... https://t.co/UdYaxtRhPO" +01/09/2018,Musicians,@SantanaCarlos,"YOU ARE DESIGNED TO BE AN EVER- EVOLVING CONSCIOUSNESS +IGNITE NEWNESS …TRANSFORM FEAR …EVERYWHERE +HEAL ALL AND... https://t.co/t94KLuVeme" +12/31/2017,Musicians,@SantanaCarlos,"Happy New Year 2018 +Let us go forward knowing we will +Heal all the wounds forgive all mishaps +restore all beauty... https://t.co/QOPWeKgt3n" +12/30/2017,Musicians,@SantanaCarlos,"Nightmares ... hound you +torture you torment you +Well ... let’s do something totally effective +About that ..,... https://t.co/JX73d0poXZ" +12/25/2017,Musicians,@SantanaCarlos,"Now is the time to invest in promoting +Respect honor spiritual values peace +Yielding with kindness on the road... https://t.co/cAWFmqPiyt" +12/21/2017,Musicians,@SantanaCarlos,"Happy birthday JELLI +May your SPIRIT guide you to your light +May your SOUL comfort you with LOVE +May your HEART... https://t.co/uYcU2uQL0i" +12/20/2017,Musicians,@SantanaCarlos,"I offer deepest gratitude +To the great spirit for allowing +Me to reason and understand +The ways of light love... https://t.co/N7gCGOG7QO" +12/04/2017,Musicians,@SantanaCarlos,From Team Santana: We are proud to announce the first dates of the 2018 ‘Divination' Tour! We just announced... https://t.co/SHoUpDVdog +11/20/2017,Musicians,@SantanaCarlos,"TIME STANDS STILL +For those that ascend into divine LOVE +For those that dance with grace +For those that sing the... https://t.co/vee5npMQax" +11/15/2017,Musicians,@SantanaCarlos,https://t.co/MamsZXflW0 +11/11/2017,Musicians,@SantanaCarlos,"Lower is a Slower frequency vibration +Higher is a faster velocity traction +It’s an individual choice selection... https://t.co/URlNBVImCQ" +11/09/2017,Musicians,@SantanaCarlos,RT @PBS: Ever looked inside the mind of a genius? Stream CHASING TRANE from @IndependentLens through 11/20. #IndieLensPBS https://t.co/KxW5… +11/01/2017,Musicians,@SantanaCarlos,"We are creatures of identification +When we see beauty grace elegance +Excellence integrity high consciousness... https://t.co/qxteNPiyka" +11/01/2017,Musicians,@SantanaCarlos,"The high road to excellence +is reached by every step of integrity +The eternal songs Have a perfect balance +Of... https://t.co/OEfX27Vprs" +10/31/2017,Musicians,@SantanaCarlos,"When you think of divine organizations +Like +DOCTORS WITH NO BORDERS +UNICEF …And others +I visualized a safety... https://t.co/06XSNa94U6" +10/30/2017,Musicians,@SantanaCarlos,"An opinion view and decision of one person +If is for the highest good of all +Should totally have merit and power... https://t.co/8laCCb32MX" +10/25/2017,Musicians,@SantanaCarlos,"Do you remember what was given to you +Before you were born ? +True essence … Light Divine +Perfect Perfection... https://t.co/UANscfrWy8" +10/25/2017,Musicians,@SantanaCarlos,"If you so desire with intense willingness +Please listen to SUN RA +“ Search light blues “ +Tenor saxophone +John... https://t.co/awzqXwQrGg" +10/20/2017,Musicians,@SantanaCarlos,https://t.co/g0dIwe7gPO +10/20/2017,Musicians,@SantanaCarlos,"Let’s be accurate and clear +I said ( during a recent interview )! What makes you think, +I am your poodle and I... https://t.co/Ym8D0QcCdA" +10/18/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: A tribute to an important woman who has received few tributes because she’s a woman | via @SFWeekly | https://t.co/t12CU… +10/18/2017,Musicians,@SantanaCarlos,Help members of music community affected by recent hurricanes. Donate to the @MusiCares Hurricane Relief Fund: https://t.co/cnMvWiroGt +10/18/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: See the story of #DoloresHuerta on the big screen → https://t.co/iCmwBmdkDJ https://t.co/33lHppQxiM +10/18/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #BootSeason is the best. #carlossantana #bootsale #ankleboots #fallfashion #weekendstyle #fashionblogger @lily_glam_ http… +10/18/2017,Musicians,@SantanaCarlos,RT @drumstress: Performing at @DailysPlace on October 24th with @SantanaCarlos and the Santana Band at 7pm. https://t.co/XIb5fU8xvZ +10/12/2017,Musicians,@SantanaCarlos,"Give yourself the gift of brilliant peace +calm clarity beauty grace and elegance +Stop take a deep breath and... https://t.co/0f6BdMuaDF" +10/09/2017,Musicians,@SantanaCarlos,"The Raiders and Kaepernick +are a winning combination" +10/08/2017,Musicians,@SantanaCarlos,"Oh, here is an idea......All of the property and money that is owned by the Las Vegas shooter should be forfeited... https://t.co/PAZ6qFAlgo" +10/05/2017,Musicians,@SantanaCarlos,"Carlos Santana, through his Milagro Foundation, is supporting UNICEF USA's work for children with a gift of... https://t.co/oBLOZBaDIw" +10/05/2017,Musicians,@SantanaCarlos,"Following three recent devastating earthquakes in Mexico, I am making a $100,000 donation through The Milagro... https://t.co/tIIgIHhF5M" +10/03/2017,Musicians,@SantanaCarlos,"Listen to +WHAT THE WORLD NEEDS NOW +MERCY MERCY ME +From the POWER OF PEACE CD +And be uplifted into a place of +QUALITY OF PEACE" +10/03/2017,Musicians,@SantanaCarlos,"My light will see me through +For honest to goodness +Clarity +I don’t belong to the left far left +Or right or far... https://t.co/E6DB8cfgxK" +10/02/2017,Musicians,@SantanaCarlos,"LOVE ONLY SEES LOVE +AINT NO FUTURE WITHOUT +FORGIVENESS +COMPASSION +MERCY" +10/02/2017,Musicians,@SantanaCarlos,"To everyone that lost loved ones in Las Vegas, we stand with you. To those of you who are wounded and hurt, we... https://t.co/pZHJBi5NEj" +10/02/2017,Musicians,@SantanaCarlos,"Congratulations to Mr. Clive Davis ! Your bigger than life movie, ""THE SOUNDTRACK OF OUR LIVES"", is a testament... https://t.co/o9DnWJDtKI" +10/01/2017,Musicians,@SantanaCarlos,DOLORES HUERTA DOCUMENTARY.......I would like to respectfully invite everyone to come and see the Dolores Huerta... https://t.co/iVlGwYqAa1 +09/26/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out this video about Carlos' Milagro Foundation, our Licensing... https://t.co/OZ98eREHoM" +09/26/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out this video to learn more about Carlos' Milagro Foundation, our... https://t.co/P9129MLppL" +09/25/2017,Musicians,@SantanaCarlos,"Last night in my dream +I was being honored by the Academy +Of Arts and Science +And just before they gave me the... https://t.co/e4N2RAqin2" +09/21/2017,Musicians,@SantanaCarlos,"We send our collective hearts, light, love and compassion to our sisters and brothers in Mexico. We feel your... https://t.co/gzUaadSe0P" +09/19/2017,Musicians,@SantanaCarlos,"This the +TIME SPACE AND PLACE + To + HEAL + The +TWISTED and... https://t.co/D1MiBqZ8lN" +09/18/2017,Musicians,@SantanaCarlos,RT @Cricketnation: No games here—enter for a chance to win a trip to see @SantanaCarlos in #LasVegas! https://t.co/Y6Y3Kmo9UM https://t.co/… +09/07/2017,Musicians,@SantanaCarlos,"FEEL SENSE BE TOTALLY AWARE +TAKE A DEEP BREATHE BE PRESENT +CRYSTALIZE YOUR PRIORITIES +GRASP THE NOTION WHOLLY... https://t.co/UwdNSlOA6C" +09/05/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""#DoloresHuerta is the real #WonderWoman,” says @SantanaCarlos via @sfchronicle https://t.co/FyPR2yxfMM (NOW PLAYING at…" +09/05/2017,Musicians,@SantanaCarlos,"RT @AliceRadio: The legendary Carlos Santana joins Sarah & Vinnie today at 8:00AM!! We talk ""DELORES"", music, and much more ONLY @ https://…" +09/05/2017,Musicians,@SantanaCarlos,"Above all INTEGRITY and HONESTY +FOR THE HIGHEST GOOD +COMPASSION FOR ALL AND EVERYTHING +IS the frequency of... https://t.co/a6N81Jw4Lm" +09/01/2017,Musicians,@SantanaCarlos,"RT @NBCLatino: Rock Legend @SantanaCarlos Gives Us ‘Power of Peace’ With New Album, Documentary https://t.co/tOiLpKLqQV https://t.co/vrwCFo…" +09/01/2017,Musicians,@SantanaCarlos,https://t.co/Xk52EX5BLM +09/01/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: #NYC, our 9/1 premiere is here! Q&A screening @IFCCenter w. #DoloresHuerta, filmmaker #PeterBratt + @monifabandele @msla…" +09/01/2017,Musicians,@SantanaCarlos,"RT @gretschdrums: . @drumstress 's ""Fun Party Splash"" is available for pre-order. Feat, @SantanaCarlos & co-written w/ @NaradaMWalden https…" +09/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Make a style statement with every stunning step.#carlossantana #mules #floralheels #statementshoes #embroideredshoes http… +09/01/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""In the fight for #socialjustice there is no 'right' time to act""—#BenjaminBratt. How #DoloresHuerta inspires him and hi…" +09/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Celebrate #LaborDay early with 20% OFF + #FreeShipping (#promocode CELEBRATE17) thru 9/4!👢👠 #carlossantana #shoesale http… +09/01/2017,Musicians,@SantanaCarlos,"Dear Friends of Dolores Huerta......In case you haven't heard, the life story of our beloved Dolores Huerta is... https://t.co/cqccUkf3wy" +08/25/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""Her contributions have gone unrecognized—until now"" | via @Latina | https://t.co/eSw8FJC3h2 +SCREENINGS: https://t.co/9…" +08/25/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: ‘Dolores’ the movie (opens Sept 1) seeks to inspire all generations → https://t.co/KOKA77oSuX via @monitornews #DoloresH… +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Join me at 3 pm PST on Facebook LIVE. I want to tell you about my new single FUN PARTY SPLASH! https://t.co/QVUtk7ayZI +08/25/2017,Musicians,@SantanaCarlos,"RT @Carlos_Shoes: Slide... into the weekend, in comfort & style! ➡️👡 #carlossantana #slidesandals #weekendready #slides #whitesandals http…" +08/25/2017,Musicians,@SantanaCarlos,https://t.co/ZU1IvEUZLJ +08/25/2017,Musicians,@SantanaCarlos,"RT @SFMFoodBank: Our newest members of the 🍏Brigrade: @SantanaCarlos & @Milagro_kids! Won't you join too? #HeartCore #FoodForAll + +https:…" +08/25/2017,Musicians,@SantanaCarlos,From Team Santana: Cindy Blackman Santana's Fun Party Splash Single is out today! We invite you to check it out.... https://t.co/PB7JFslVkm +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Today is the release of my new single. I am singing as well as playing drums. Let me know what you think! https://t.co/kbEX… +08/25/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: To @FBI she was a threat. To Sen. Robert Kennedy, she was a friend. See #DoloresHuerta’s remarkable story @IFCCenter htt…" +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Thankful for all these great reviews of my new single https://t.co/1YoBJ50rC7 +08/24/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Step into the must-have #cowboyboot of the season… #carlossantana #cowgirlboot #westernboot #bootseason #studdedboot http… +08/23/2017,Musicians,@SantanaCarlos,"RT @AXSTV: This Saturday, we're hanging out with @SantanaCarlos & few of our other favs from the #SummerofLove. https://t.co/XsKiGHxmBg" +08/23/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""At 87, she’s the kind of wonder woman we should all admire and hope to emulate"" — @REMEZCLA on #DoloresHuerta. https://…" +08/23/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""I cannot praise enough #PeterBratt’s @Dolores_Movie which opens in Sept"" | via @IndieWire | https://t.co/O2nJN6QKm4" +08/23/2017,Musicians,@SantanaCarlos,"RT @QuinnSullivan1: Words from the greatest, @SantanaCarlos lots of love https://t.co/MLmm854ufM" +08/23/2017,Musicians,@SantanaCarlos,RT @StanleyNelson1: Had the honor of hosting a lunch for @Dolores_Movie produced by legendary @SantanaCarlos and super talented director #P… +08/23/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: Reunited for a preview screening! @Dolores_Movie opens Sept. 1 at @IFCCenter. Tickets available NOW → https://t.co/30JCN… +08/23/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: I love #embellishedshoes… jewelry for your feet!✨👣 #carlossantana #slides #slidesandals #fromwhereistand #iloveshoes http… +08/23/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #IWish that every time I liked #shoes on Twitter they would magically appear in my closet.#carlossantana #cagedheels http… +08/23/2017,Musicians,@SantanaCarlos,"RT @drumstress: This Friday is release! Fun, Party, Splash https://t.co/GrEP78lQBg" +08/21/2017,Musicians,@SantanaCarlos,RT @BorgataAC: RT if you'll be jammin' with @SantanaCarlos at his SOLD OUT show at the Event Center tonight! https://t.co/2RQH2MpkNL +08/21/2017,Musicians,@SantanaCarlos,RT @QuinnSullivan1: Jamming with @SantanaCarlos last night! @MoheganSun https://t.co/qAijfGkaN1 +08/21/2017,Musicians,@SantanaCarlos,RT @drumstress: Photos from @MoheganSun https://t.co/GXJG5jQjwv https://t.co/hdrBcAZr8t +08/21/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Slide this-a-way... ➰💙👡 @shoes_sashimi #fashionblogger #slides #summerstyle #slidesandals #poolslides #carlossantana http… +08/21/2017,Musicians,@SantanaCarlos,https://t.co/SKE99bLYGi +08/20/2017,Musicians,@SantanaCarlos,"I feel a deep sense of GRATITUDE +This wonderful Sunday morning +Last night's concert filled me with +SUPREME... https://t.co/Aej0GmqXUH" +08/18/2017,Musicians,@SantanaCarlos,RT @nprmusic: Carlos Santana teamed up with The Isley Brothers for a new album dedicated to peace through music. https://t.co/1BKytR9Tjr ht… +08/18/2017,Musicians,@SantanaCarlos,RT @drumstress: Keep eye out in #NYC cabs for @CarlosSantana #IsleyBrothers clip on our album 50 years in the making https://t.co/6ABEv0EX… +08/17/2017,Musicians,@SantanaCarlos,RT @MoheganSun: Don’t miss the electric sound of @SantanaCarlos on 8/19 at #MoheganSunArena! https://t.co/AJY2U8ojtY https://t.co/Vy2fqa2tUK +08/17/2017,Musicians,@SantanaCarlos,"RT @LatinoVoices: Watch how Dolores Huerta inspired Barack Obama's ""Yes we can"" slogan https://t.co/goz3R2LwzF" +08/17/2017,Musicians,@SantanaCarlos,RT @LookingGlassSMM: She’s got that #magic in her sole... 🌸👢✨ @Carlos_Shoes #shoefie #floralboots #showusyoursole #magiclv #carlossantana h… +08/17/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: #Elvis wasn't the only rockin' Blue Suede shoes. Get inspired by the King today w/ our Royal Blue Suede “Spirit” #Penn… +08/17/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Last Day! Brighten up #summertofall with $20 OFF $100 + #FreeShipping (#promocode SUNNY17). #carlossantana #shoesale http… +08/17/2017,Musicians,@SantanaCarlos,RT @drumstress: I have released a vocal single- pre order is up now​:​https://t.co/kbEXO17NeQ​ thanks for all your support. https://t.co/A7… +08/16/2017,Musicians,@SantanaCarlos,"Dolores — in theaters beginning Sept. 1. +https://t.co/52xd4G2gnJ https://t.co/ZjUjWMlZFD" +08/15/2017,Musicians,@SantanaCarlos,RT @HOBLasVegas: ON SALE NOW — @SantanaCarlos dates for January & February 2018! Grab your tickets at https://t.co/Yn1baT6wGN https://t.co/… +08/15/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: .@SantanaCarlos' 'Shangó,' which featured the hit single “Hold On,” turns 35 today! Rediscover the album: https://t.co/…" +08/15/2017,Musicians,@SantanaCarlos,RT @MoheganSun: The legendary @SantanaCarlos comes to #MoheganSunArena on 8/19! https://t.co/AJY2U8ojtY https://t.co/4doqWAwgU2 +08/15/2017,Musicians,@SantanaCarlos,We invite you to check out the trailer for the movie 'Dolores' https://t.co/c4fFqaHKTY +08/14/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out the trailer for ‘Dolores’, a film close to Carlos’ heart about the... https://t.co/HRKFRyn6ae" +08/11/2017,Musicians,@SantanaCarlos,"Learn to SOAR +No matter what Gets in front of you +No matter who approves or disapproves +No matter where you... https://t.co/5KFgEfHaXI" +08/11/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to pre-order the new single, by Cindy Blackman Santana, ""Fun Party Splash""... https://t.co/TDybWbLcPL" +08/09/2017,Musicians,@SantanaCarlos,"WHOLEHEARTEDLY Cindy and I +We LOVE sharing our LIGHT +With GOD the WORLD …PEOPLE +And we have the audacity to... https://t.co/myFLC46a5V" +08/08/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: We take pride in our designs. Would you? Browse our latest styles https://t.co/FEp0dkCXcv https://t.co/Xqc1X33rQo +08/08/2017,Musicians,@SantanaCarlos,RT @AnnWilson: Playing with @SantanaCarlos tonight! #awoh #rock #live https://t.co/gXJ2MPQ9qU +08/08/2017,Musicians,@SantanaCarlos,RT @drumstress: Information about the new album with @SantanaCarlos and @TherealRonIsley Brothers via @ABC7NY https://t.co/NkemsUD7Cv +08/08/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Cuz glamour never takes a day off…✨👡💯 #carlossantana #studdedsandals #weekendready #glamvibes #carlosbycarlossantana http… +08/08/2017,Musicians,@SantanaCarlos,RT @HOBLasVegas: JUST ANNOUNCED — New @SantanaCarlos date for January & February 2018! Tickets on sale Friday at 10AM: https://t.co/mAsKc0Z… +08/06/2017,Musicians,@SantanaCarlos,"What IF … +There is NO such thing as +DEVIL LUCIFER SATAN +What if you arrive at knowing +It's just DENSE... https://t.co/K2fuAgcfHj" +08/06/2017,Musicians,@SantanaCarlos,"""The poorest of the poor "" +Somewhere somehow +There is someone living in the street +With NO place to GO +And... https://t.co/TH1iVeo1Pu" +08/06/2017,Musicians,@SantanaCarlos,"""The poorest of the poor "" +Somewhere somehow +There is someone living in the street +With NO place to GO +And... https://t.co/ACEe4e6sml" +08/01/2017,Musicians,@SantanaCarlos,"RT @SonyMusicUK: When the Isley Brothers and @SantanaCarlos get together in the studio, magic happens 🎸✨ https://t.co/MMcJjOhMGJ https://t.…" +08/01/2017,Musicians,@SantanaCarlos,Power of Peace Available now! https://t.co/TcB115jbn2 https://t.co/qBGWqiGBF3 +08/01/2017,Musicians,@SantanaCarlos,RT @drumstress: Second stop in August is @BethelWoods Center for the Arts on August 5th at 8pm. https://t.co/bmtKCuYzct +08/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Who says you can’t wear #boots in the summer?! #summerboots #ankleboots #coolboots #summerstyle #carlossantana https://t.… +07/29/2017,Musicians,@SantanaCarlos,"RT @MomsRising: Produced by Peter Bratt & @SantanaCarlos, Dolores is a powerful #doc abt #feminist & labor activist #DoloresHuerta https://…" +07/28/2017,Musicians,@SantanaCarlos,"RT @CarlosShoes4Men: Introducing the ""Essential Collection"". Hand crafted #mens #shoes from music legend @SantanaCarlos https://t.co/akLD6z…" +07/27/2017,Musicians,@SantanaCarlos,"RT @HOBLasVegas: Pre-Order @SantanaCarlos’ new album (out this Friday): https://t.co/og4hXwyhCZ. See him in Sept & Nov, tix: https://t.co/…" +07/27/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: .@SantanaCarlos and #TheIsleyBrothers, together on one album. ‘Power of Peace’ is out tomorrow! Preorder now: https://t…" +07/27/2017,Musicians,@SantanaCarlos,"RT @CBSSunday: How did legends #TheIsleyBrothers & @SantanaCarlos end up collaborating on new album ""Power of Peace?"" Find out Sun! https:/…" +07/27/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: My #flipflops are cuter than yours! #carlossantana #cutesandals #strappysandals #silversandals #thursdaythought https://t… +07/25/2017,Musicians,@SantanaCarlos,"Dearest Mark Zuckerberg & Priscilla, + +Driving around the SF Mission District, I couldn't help but notice the... https://t.co/4OJKPQl4q1" +07/20/2017,Musicians,@SantanaCarlos,"Dearest ONES +Your outpouring of light / love +and sharing your highest wishes +Floods my heart with profound... https://t.co/HlnmOHnIlt" +07/20/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #LastChance to get 20% OFF all #CarlosSantana #shoes (#promocode 20SUMMER)! 👡⬇#shoesale #sandalsale #slidesandals https:/… +07/20/2017,Musicians,@SantanaCarlos,"From Team Santana: “Mercy Mercy Me"" showcases Ronnie Isley’s spectacular ballad singing on a song that is even... https://t.co/D0PwtixQbr" +07/20/2017,Musicians,@SantanaCarlos,We invite you to check out Mercy Mercy Me from Power of Peace on @npr https://t.co/wraqqTZPMQ +07/20/2017,Musicians,@SantanaCarlos,RT @AXSTV: Latin rock legend @SantanaCarlos is celebrating the big 7-0! We're happy to show his #BigInterview episode this morning at 10a/… +07/20/2017,Musicians,@SantanaCarlos,"RT @GuitarWorld: Happy 70th to @SantanaCarlos! Check out this clip of him jamming with +Stevie Ray Vaughan and @JimmieVaughan in 1988 https…" +07/19/2017,Musicians,@SantanaCarlos,Power of Peace - Available July 28th - Pre Order Today https://t.co/lrNdNMd4Hk https://t.co/voUcHcq3yF +07/19/2017,Musicians,@SantanaCarlos,"RT @JimMimna: . @SantanaCarlos played @RedRocksCO last week and I was there to photograph it! +@listenupdenver + +https://t.co/UjfQVQyTRJ ht…" +07/19/2017,Musicians,@SantanaCarlos,RT @caleresinc: Shoe of the Week: the @Carlos_Shoes Emma. https://t.co/i8JB9LWJH0 #shoeoftheweek https://t.co/1lB3Uq63Jr +07/19/2017,Musicians,@SantanaCarlos,RT @drumstress: Excited! W/ @SantanaCarlos @ErnieIsley and @TheRealRonIsley on a new album Power of Peace avail. 8/4 @SonyLegacyRecs https:… +07/19/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: We are thrilled to launch the @SantanaCarlos Shoes For Men website https://t.co/P3ULUTmWM6 #Legendary #Mensfashion #me… +07/19/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Sitting pretty in #CarlosSantana #sliponsneakers! #slipons #casualstyle #whitesneakers #fashionblogger @ginadiazh https:/… +07/17/2017,Musicians,@SantanaCarlos,"RT @RedRocksCO: Earlier this week, @SantanaCarlos was inspired by some serious air guitar shredding to share a special gift... #RedRocksCO…" +07/17/2017,Musicians,@SantanaCarlos,RT @TIDALHiFi: It's always a treat when legends come together. Check out “Are You Ready” by #TheIsleyBrothers & @SantanaCarlos: https://t.c… +07/17/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Preorder ‘Power of Peace,’ a collaboration between music legends @SantanaCarlos and #TheIsleyBrothers, out 7/28: https:…" +07/17/2017,Musicians,@SantanaCarlos,RT @drumstress: https://t.co/1sKM8c4zgk +07/17/2017,Musicians,@SantanaCarlos,RT @drumstress: https://t.co/KIwlAuKFYY +07/14/2017,Musicians,@SantanaCarlos,https://t.co/ir0uEpKXyP +07/12/2017,Musicians,@SantanaCarlos,From Team Santana: We would like to share the premiere of ‘Are You Ready’ from the forthcoming Santana - Isley... https://t.co/qsqkIj8GZG +07/12/2017,Musicians,@SantanaCarlos,From Team Santana: We would like to share the premiere of ‘Are You Ready’ from the forthcoming Santana - Isley... https://t.co/mInXYb5z9r +07/06/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Going gaga for GAMMA! #carlossantana #summerboots #redboots #suedeboots #anklebooties #thursdaythought https://t.co/yZRmC… +07/06/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Get a closer look at The Isley Brothers & @SantanaCarlos’ new album, ‘Power of Peace,’ available July 28: https://t.co/…" +07/06/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: All you need is a #recordplayer & #CarlosSantana. @noel_labb #bloggerstyle #ankleboots #cuteboots #vinylsoundsbetter http… +07/06/2017,Musicians,@SantanaCarlos,'Power of Peace' EPK Video Album available July 28th! @drumstress @TheRealRonIsley https://t.co/33qWsiKHW4 +07/05/2017,Musicians,@SantanaCarlos,"7 Steps to uplifting the consciousness of PLANET EARTH + +CO CREATE HEAVEN ON EARTH +1 ) MASTER YOUR THOUGHTS +2 )... https://t.co/TRL51IWKSJ" +07/02/2017,Musicians,@SantanaCarlos,"We are at the point in time +Where we see clearly +Faith is a blessing use it +Miracles are tangible apply them... https://t.co/sqYx0c42RC" +06/28/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Can't think of a better look in time for #CanadaDay than Dose of Haute's #Canadiantuxedo & #CarlosSantana #sneakers! http… +06/28/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Preorder ‘Power of Peace,’ a collaboration between music legends @SantanaCarlos and #TheIsleyBrothers, out 7/28: https:…" +06/27/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #FlipFlops are my favorite #summershoes. #carlossantana #favoriteshoes #sandalweather #summerstyle #jeweledsandals https:… +06/27/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Music icons @SantanaCarlos and #TheIsleyBrothers join forces on ‘Power of Peace,’ out 7/28. Preorder here: https://t.co…" +06/26/2017,Musicians,@SantanaCarlos,"RT @rbgconcerts: Concert fans! are you ready for @SantanaCarlos this Wednesday? There is no opener, so be at the amphitheatre early to get…" +06/26/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Get a wedge up on the week in #CarlosSantana #corkwedges!🌞👡❤️ #wedgesandals #platformwedges #redsandals #summerstyle http… +06/26/2017,Musicians,@SantanaCarlos,"RT @drumstress: Fun gig tonight w/ @SantanaCarlos in Seattle !!!! Great crowd, thanks for your energy!!!!!🌺❤️🌺❤️ Photos- Jeff Ocheltree htt…" +06/22/2017,Musicians,@SantanaCarlos,"ABOVE ALL… Is imperative we elevate…raise higher… uplift ourselves +OUR COLLECTIVE CONSCIOUSNESS… into a... https://t.co/Cw5Z2hAkut" +06/22/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Soak up the sun & #SAVE w/ 20%OFF #CarlosSantana #sandals (#promocode CARLOS20) thru 6/23!#sandalsale #sandalweather http… +06/30/2018,Musicians,@jlo,Hi. ✨ https://t.co/NZ5K1ypni2 +06/28/2018,Musicians,@jlo,"Luce sexy en todo momento con mi colección #JLOxCoppel +https://t.co/8OCOgVE5Jv https://t.co/wZY9bIEzlk" +06/27/2018,Musicians,@jlo,💔😢 #justiceforjunior https://t.co/br5FPQeMg0 +06/27/2018,Musicians,@jlo,"Which mood are you? +♥️😎 ♥️ +#NationalSunglassesDay https://t.co/GAIZejgIVc" +06/27/2018,Musicians,@jlo,THE SHOW MUST GO ON! AND IT WILL!!! WEST COAST YOURE UP! 10/9 @NBCWorldofDance #WORLDOFDANCE!!! https://t.co/i8MDeVbO7X +06/27/2018,Musicians,@jlo,It’s a pleasure! ♥️♥️♥️ https://t.co/S3iv7BFCEl +06/27/2018,Musicians,@jlo,She is bold. This is so dicey #worldofdance +06/27/2018,Musicians,@jlo,RT @EGTisme: I love @RoyalFluxDance on @NBCWorldofDance +06/27/2018,Musicians,@jlo,Oh no!! 🙈 #worldofdance +06/27/2018,Musicians,@jlo,STINKYFUNKY™️ https://t.co/vM8Nkjo6zz +06/27/2018,Musicians,@jlo,"RT @WannaBeLikeJLo: Dance doesn’t know age, borders, race, limits... it connects people in the most passionate way. @JLo @EGTisme this epis…" +06/27/2018,Musicians,@jlo,RT @NBCWorldofDance: .@silverbeatworld’s story is SO inspiring! #WorldofDance https://t.co/qfXMWN7D6K +06/27/2018,Musicians,@jlo,From now on it’s stinky funky everything. All day. 🙌🏼🙌🏼🙌🏼 #worldofdance https://t.co/CA2JzeiDug +06/27/2018,Musicians,@jlo,RT @jloverbby: #ShadesofBlue commercial YES!!! Hurry up Sunday! @JLo +06/27/2018,Musicians,@jlo,"RT @dredis92: Those kids are doing good, I love it! @JLo @NeYoCompound @derekhough @jennadewan #WorldOfDance" +06/27/2018,Musicians,@jlo,RT @Aly_Siragusa: it’s crazy how once you find your passion in life everything just opens up regardless of your circumstances #worldofdance… +06/27/2018,Musicians,@jlo,"When a momma cries, I cry 😢 #WorldOfDance" +06/27/2018,Musicians,@jlo,👠👠👠👠👠👠 https://t.co/JotZoxsllU +06/27/2018,Musicians,@jlo,You know I love a hair flip 💁🏻‍♀️ https://t.co/8O9wx0hd3L +06/27/2018,Musicians,@jlo,RT @Aly_Siragusa: Ohhh yes already feeling the girl power #WorldOfDance @JLo +06/27/2018,Musicians,@jlo,Elaine noticing you got me to notice this. Thank Elaine @egtisme 😘 https://t.co/39atFb8iqm +06/27/2018,Musicians,@jlo,What the world needs right now....TEN YEAR OLD BALLROOM DANCERS #worldofdance @alla_and_daniel +06/27/2018,Musicians,@jlo,"RT @NBCWorldofDance: CUTENESS OVERLOAD. @alla_and_daniel are mini ballroom royalty! +#WorldofDance https://t.co/HWhJmj0Dth" +06/27/2018,Musicians,@jlo,Look at them go! #worldofdance 🕺🏼 💃🏻 +06/27/2018,Musicians,@jlo,Derek’s mini me 😝 @derekhough #WORLDOFDANCE +06/27/2018,Musicians,@jlo,Watching dancers do what they love! 😘 https://t.co/d7zT8cWlD4 +06/27/2018,Musicians,@jlo,RT @KrystalAlese: They definitely made me a believer 😍 @NBCWorldofDance #WorldOfDance +06/27/2018,Musicians,@jlo,RT @NBCWorldofDance: We’re feeling inspired to take on the WORLD after that @JLo pep talk. 👑🔥#WorldofDance https://t.co/WOQmUhoJ3B +06/27/2018,Musicians,@jlo,"Loved the performance, choreography and power! Great job @Dance11Rudy 👌🏼👌🏼#WorldOfDance" +06/27/2018,Musicians,@jlo,Everyday! ♥️♥️♥️ https://t.co/t7XfZ1wJB7 +06/27/2018,Musicians,@jlo,LOOK AT RUDY!!!! 🙌🏼🙌🏼 https://t.co/Wk4bdpNRpn +06/27/2018,Musicians,@jlo,⚠️HERE I AM! LET’S GO!!! ⚠️ https://t.co/y5XgfMe8Gz +06/26/2018,Musicians,@jlo,#WORLDOFDANCE TONIGHT! STAKES ARE GETTING HIGHER AND THE PRESSURE IS TOO REAL! TUNE-IN AT 10/9c ON @NBC… https://t.co/io3rXsXSyu +06/26/2018,Musicians,@jlo,"Thank you @teenchoicefox for nominating #Dinero for #ChoiceLatinSong!!!! + +Voting is open NOW so LET’S GO! 💋👑💰… https://t.co/tWepFTXZP5" +06/26/2018,Musicians,@jlo,FAMILIA ♥️♥️♥️♥️♥️ https://t.co/emZKxc7azZ +06/25/2018,Musicians,@jlo,HAPPY PRIDE #loveislove ❤️🧡💛💚💙 https://t.co/6582A0l0Dx +06/25/2018,Musicians,@jlo,"♥️♥️♥️😘 thank you for watching, love doing this with you guys #shadesofblue https://t.co/AIHbly2sBb" +06/25/2018,Musicians,@jlo,"RT @LivinJENeration: ""It's good to be back."" OMFGGG. @JLo @EGTisme @nbcshadesofblue #ShadesOfBlue" +06/25/2018,Musicians,@jlo,RT @EGTisme: Now it's up to Harlee to find his killer and bring him/her/them to justice @nbcshadesofblue https://t.co/95nMtO3hxs +06/25/2018,Musicians,@jlo,"Christina...pure heart, true grit! ♥️👩🏻👧🏻 #shadesofblue" +06/25/2018,Musicians,@jlo,RT @EGTisme: Nava's dead and his killer probably wears a badge. @jlo @nbcshadesofblue +06/25/2018,Musicians,@jlo,"RT @nbcshadesofblue: ""Everything that I know is broken. I'M broken."" - Harlee Santos. 💔 #ShadesofBlue" +06/25/2018,Musicians,@jlo,"RT @WannaBeLikeJLo: “Not the terms you agreed on?” +Shady Harlee... @JLo @EGTisme #ShadesOfBlue" +06/25/2018,Musicians,@jlo,RT @nbcshadesofblue: Harlee's reached her breaking point. 💔 #ShadesofBlue https://t.co/73Dt8GKpDI +06/25/2018,Musicians,@jlo,🔦 down... #shadesofblue +06/25/2018,Musicians,@jlo,RT @sarahmjeffery3: When Harlee gives tough love but also defends her baby for standing tf up... 😭❤️ #shadesofblue @JLo @nbcshadesofblue ht… +06/25/2018,Musicians,@jlo,RT @ashjlover1102_: the fact the hr goes by to quick while watching #shadesofblue @EGTisme @jlo https://t.co/tLGiXWVTno +06/25/2018,Musicians,@jlo,"RT @BrittanyBeese: It’s the last laugh that counts, you know it when you hear it!! + +Yass woz #Shadesofblue @JLo" +06/25/2018,Musicians,@jlo,Thank you 🙏🏼👏🏼 https://t.co/43P9yLd6Ru +06/25/2018,Musicians,@jlo,RT @lovejlopez1: Okurrrrr Cristina don’t let them talk about ya mama like that @sarahmjeffery3 @JLo #Shadesofblue https://t.co/ats8N3OXDO +06/25/2018,Musicians,@jlo,Lookin our for her mama https://t.co/aYxW8wDhYt +06/25/2018,Musicians,@jlo,RT @WannaBeLikeJLo: “I confuse you with the furniture.” LOL gotta love Woz @JLo @EGTisme #ShadesOfBlue 💙😂 +06/25/2018,Musicians,@jlo,"Both of em! Maybe more, she’ll figure it out 😂🤣😂 https://t.co/WjtClCjyWP" +06/25/2018,Musicians,@jlo,RT @EGTisme: Tess has put the crew in hot water @nbcshadesofblue +06/25/2018,Musicians,@jlo,RT @megs_xo10: Ok imma really need Harlee to kick some ass cuz all these sad flashbacks make me want to personally take the intelligence te… +06/25/2018,Musicians,@jlo,Yep. https://t.co/I9dqF4SmBJ +06/25/2018,Musicians,@jlo,I 👏🏼 CANT! 👏🏼 #SHADESOFBLUE +06/25/2018,Musicians,@jlo,RT @EGTisme: With you! @nbcshadesofblue https://t.co/nQiycLlTva +06/25/2018,Musicians,@jlo,Can’t handle this #SHADESOFBLUE +06/25/2018,Musicians,@jlo,I wouldn’t. And that’s me. 🤣😂🤣 https://t.co/Xn8IVl3Htt +06/25/2018,Musicians,@jlo,Do you think Harlee saw Stahl? #SHADESOFBLUE +06/25/2018,Musicians,@jlo,.@EGTisme watch my next tweet https://t.co/pBkfGn8G6T +06/25/2018,Musicians,@jlo,OOH HARLEE SHOULDER CHECKED HER!!! OMG! SHE IS NOT PLAYIN! #shadesofblue +06/25/2018,Musicians,@jlo,Struggle! Ask @EGTisme she will be more objective!! https://t.co/6Gx7wLCUa7 +06/25/2018,Musicians,@jlo,Same. https://t.co/d0JRFSbJoi +06/25/2018,Musicians,@jlo,💔💔💔 https://t.co/uKNQBOpVrq +06/25/2018,Musicians,@jlo,This is gonna be a tough one...#shadesofblue +06/25/2018,Musicians,@jlo,“They took him from me!” 😭😭😭 #shadesofblue @EGTisme +06/25/2018,Musicians,@jlo,They don’t EVEN know! #ShadesofBlue https://t.co/Yj8JvSLntw +06/25/2018,Musicians,@jlo,RT @gpolson37: Im not crying youre crying!!! 😩😭😭 #ShadesOfBlue @JLo +06/25/2018,Musicians,@jlo,Tweet with me and @EGTisme ‼️ https://t.co/CG1TkTzzFz +06/25/2018,Musicians,@jlo,"RT @Gorgeous_jlo_: I was in a good mood waiting for Shades, but I remembered that Nava is dead and my heart broke all over again. 😫 nooooo…" +06/25/2018,Musicians,@jlo,TWEET WITH US! #SHADESOFBLUE IS BACK AND ITS ONLY GETTING STARTED! https://t.co/GMKj5MaE7n +06/24/2018,Musicians,@jlo,#SHADESOFBLUE STARTED OFF WITH A BANG...BUT THERE’S MORE TO COME‼️ TUNE-IN TOMORROW NIGHT FOR THE NEXT CHAPTER IN T… https://t.co/zFfACqUDx1 +06/22/2018,Musicians,@jlo,"RT @Univision: .@JLo descubre un punto débil de @AROD con una singular perdida (y así salvó a su ""macho bello"") https://t.co/tT6u2Vkj07 htt…" +06/22/2018,Musicians,@jlo,https://t.co/IfAtIqQhEu +06/22/2018,Musicians,@jlo,"RT @NBCWorldofDance: G - L - A - M - O - R - O - U - S = @JLO, obviously. ✨💅 #WorldofDance https://t.co/xdnOygyKZn" +06/22/2018,Musicians,@jlo,"ITS ALL IN OUR HANDS. Supporting one another in these troubled times, we can remain on the right side of history: t… https://t.co/bxqfIOMZxc" +06/21/2018,Musicians,@jlo,"but I also want you to remain hopeful—hold fast to hope, faith and Love. We first need to admit we have a problem b… https://t.co/j6Wfz8gNbt" +06/21/2018,Musicians,@jlo,"have concern for the lack of transparency about this disastrous display, in full view to the world in general, I e… https://t.co/Kl8XvZA8oe" +06/21/2018,Musicians,@jlo,"we and the people of all different races, roots, and culture have enriched this country. But the recent rhetoric an… https://t.co/1cLR4GMF6h" +06/21/2018,Musicians,@jlo,"I feel we will never forget this moment in time. Bearing witness to these atrocities and that’s what they are, I ca… https://t.co/LFqCd1ERnE" +06/21/2018,Musicians,@jlo,"Reading the news about the separation of children from their families, I can’t help but think about my own children… https://t.co/x8b1Q78k7T" +06/21/2018,Musicians,@jlo,"☀️ 😎 ✅ 🍗 🍖 ✅ 💰 💰 ✅ + +#SummerSolstice #TheLongestDay +#dinero #dinero #dinero https://t.co/Sbpv5ZWEGj" +06/21/2018,Musicians,@jlo,🌊 https://t.co/4pHltm0XBp +06/20/2018,Musicians,@jlo,#ballin’biggerthanlebron #WORLDOFDANCE #dancersareathletes #putsomerespectontheirnames +06/20/2018,Musicians,@jlo,Looking out and thinking how lucky I am...oh and yes these #Niyamasol leggings are becoming a staple to my… https://t.co/lmp0hdK0W1 +06/20/2018,Musicians,@jlo,"RT @MarioJimen69: @evaigo @JLo @evaigo Last year you were amazing. This year you are scaring me, and I mean that in a good way..😊😁😍 Congrat…" +06/20/2018,Musicians,@jlo,#relatable https://t.co/iaKYNh2BJU +06/20/2018,Musicians,@jlo,RT @theofficaltay: @JLo put some hood on off the chain sis said “off the chainezzzz” I fell out 🤣💗 #worldofDance @NBCWorldofDance @EGTisme +06/20/2018,Musicians,@jlo,RT @EGTisme: Gives me motivation too! @NBCWorldofDance https://t.co/XUi29fsPFs +06/20/2018,Musicians,@jlo,It’s a global movement 🙌🏼🙌🏼⚡️ https://t.co/oNiD09KlLc +06/20/2018,Musicians,@jlo,RT @jloverbby: #shadesofblue commercial making me want this week to fly by already!! Can’t wait😍 @JLo +06/20/2018,Musicians,@jlo,RT @theofficaltay: The fact @JLo started as a dancer and helping people achieve their goals on #WorldOfDance is truly a blessing 💗 we love… +06/20/2018,Musicians,@jlo,These kids don’t mess around. They come to play and come correct. I like that. 💥🔥🔥💥 https://t.co/POusVFCvhZ +06/20/2018,Musicians,@jlo,Incredible prowess. Loved!♥️ https://t.co/vMAuNZURwQ +06/20/2018,Musicians,@jlo,Thanks baby!! https://t.co/sypQV64veK +06/20/2018,Musicians,@jlo,Oh! @EGTisme - SEASON 4 💡??? https://t.co/EjQdTMaDkG +06/20/2018,Musicians,@jlo,Out of this world!! https://t.co/9RPv0Za29W +06/20/2018,Musicians,@jlo,Mine too. Keep it up. ♥️ https://t.co/Hzlk2hFRU5 +06/20/2018,Musicians,@jlo,RT @gpolson37: Dance is my safe haven and i dont know what id do without having dance a part of my life.Thank you #WorldOfDance for existin… +06/20/2018,Musicians,@jlo,RT @NBCWorldofDance: Tonight's #WorldofDance was filled with certified bops. 💯 What was your favorite song? 🎶 https://t.co/3QH2GJFLUy +06/20/2018,Musicians,@jlo,"RT @NBCWorldofDance: .@jonasterleckas and @rubylcastro are bringing that ballroom FIRE to @thescoremusic’s ""Legend!"" #WorldofDance +https:/…" +06/20/2018,Musicians,@jlo,"Have to hand it to my dynamite Co-panel of judges, they know it when they 👀 it!!! @NeYoCompound @derekhough https://t.co/Sbp8eBkjQM" +06/20/2018,Musicians,@jlo,"RT @EGTisme: So they found Jonas in Lithuania?!?? WOW, that's commitment right @jlo? These dances #jonasandruby mean business on @NBCWorldo…" +06/20/2018,Musicians,@jlo,Never want to discourage-only encourage! https://t.co/N0vA3oNS0h +06/20/2018,Musicians,@jlo,HERE WE GO! @EGTisme https://t.co/pMk5zzB3st +06/20/2018,Musicians,@jlo,"Everyone tonight, I felt that. Great job 👌🏼#WORLDOFDANCE https://t.co/bbL8yRp82v" +06/20/2018,Musicians,@jlo,Agree agree agree https://t.co/orCF9AXGX8 +06/20/2018,Musicians,@jlo,EVA! Whoooo! #worldofdance +06/20/2018,Musicians,@jlo,I know! Flies by doesn’t it? @EGTisme https://t.co/3f6Ch5L2Wg +06/20/2018,Musicians,@jlo,Oh you guys are gooooood https://t.co/MCdRuLJjEq +06/20/2018,Musicians,@jlo,"RT @NBCWorldofDance: We all were thinking it, @JLo said it. 👌 #WorldofDance https://t.co/tPS5nH49Ui" +06/20/2018,Musicians,@jlo,"RT @EGTisme: I mean, #expressionz are so in sync it's crazy. Those spins were wild on @NBCWorldofDance" +06/20/2018,Musicians,@jlo,RT @derekhough: Nailed it ! https://t.co/Imt5ausEPm +06/20/2018,Musicians,@jlo,♥️@NBC! https://t.co/QQEzozltyc +06/20/2018,Musicians,@jlo,RT @TaylorJLover724: Omg @JLo stopppp I can’t you’re too cute with these facial expressions on #WorldOfDance 😩😩😩❤️ PS They were INCREDIBLE +06/20/2018,Musicians,@jlo,"Savion Glover, Gregory Hines, Nicholas Brothers! World’s greatest tap men, Lucas has to work to get there. But he h… https://t.co/6hpR5PDy7A" +06/20/2018,Musicians,@jlo,Really hard! Don’t make me choose (yet!) 😉 https://t.co/q1SPyMGaKg +06/20/2018,Musicians,@jlo,Omg Lucas’ style! @EGTisme #WorldofDance +06/20/2018,Musicians,@jlo,Look at that @EGTisme @NeYoCompound @jennadewan @derekhough 👌🏼👌🏼 https://t.co/RcmaKciW8t +06/20/2018,Musicians,@jlo,RT @Gorgeous_jlo_: I like #TheBradas a loooottt. #WorldofDance @JLo sooo sick 😍👏🏼🔥 +06/20/2018,Musicians,@jlo,Wow! That bag was a helluva prop. FLAWLESS #WORLDOFDANCE https://t.co/waI6vckhb3 +06/20/2018,Musicians,@jlo,RT @EGTisme: thank you for noticing! Love tweeting and interacting with @jlo fans and fans of @NBCWorldofDance and @nbcshadesofblue https:… +06/20/2018,Musicians,@jlo,"Passion, intensity, technique. 👌🏼 #worldofdance https://t.co/XaTdO4mWja" +06/20/2018,Musicians,@jlo,"What do you think @EGTisme ? Rough, right? https://t.co/lWwtcYe2wD" +06/20/2018,Musicians,@jlo,Y’all ready for @evaigo?? #worldofdance +06/20/2018,Musicians,@jlo,Give me all the SPARKLE. You know I love a sparkle ⚡️ ✨ https://t.co/arskIcHTxg +06/20/2018,Musicians,@jlo,Sorry LeBron! @EGTisme and I love you tho! 🙌🏼 https://t.co/KWJGTKzV60 +06/20/2018,Musicians,@jlo,"Great performance, very strong. Intensity! https://t.co/M4fWwwCh5c" +06/20/2018,Musicians,@jlo,What a saucy duo Jonas and Ruby are #WORLDOFDANCE +06/20/2018,Musicians,@jlo,TWEET WITH US! https://t.co/JGRvmgBTsC +06/20/2018,Musicians,@jlo,GO TIME YALL #WORLDOFDANCE 💃🏻 https://t.co/DGGUY08nkd +06/19/2018,Musicians,@jlo,THE PASSION AND THE 🔥!!WE GOT IT! 👌🏼 #WORLDOFDANCE TONIGHT!! @NBC 10/9c https://t.co/Q1888Z8Tg3 +06/19/2018,Musicians,@jlo,A FAN FAVE IS BACK! CAN’T WAIT FOR YOU ALL TO SEE WHO IS BRING-ING IT‼️#WORLDOFDANCE TUESDAYS 10/9c ON @NBC 💃🏾 🕺🏻💃🏻… https://t.co/EL57Xr2lUy +06/18/2018,Musicians,@jlo,Thank u all for watching! WOW! Helluva season ahead #shadesofblue https://t.co/28pFZjKfiM +06/18/2018,Musicians,@jlo,Things will never be the same.... #SHADESOFBLUE +06/18/2018,Musicians,@jlo,Nava... 😢😢😢 +06/18/2018,Musicians,@jlo,SHOOK‼️ SHOOKETH‼️‼️ #shadesofblue +06/18/2018,Musicians,@jlo,Can’t have it both ways! #Shadesofblue +06/18/2018,Musicians,@jlo,"RT @EGTisme: Harlee: they killed one of their own men, WOZ. WOZ: so@did we... #ripsaperstein @nbcshadesofblue" +06/18/2018,Musicians,@jlo,"RT @TaylorJLover724: If you thought Harlee was badass before, clearly you were wrong. She just keeps getting better. Great job @JLo @EGTism…" +06/18/2018,Musicians,@jlo,🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️ https://t.co/U2TPhGNRlJ +06/18/2018,Musicians,@jlo,Is having the time of her life rn 🤣🥊 https://t.co/lHeF45e7DS +06/18/2018,Musicians,@jlo,Yup @EGTisme https://t.co/fsBYkovDEK +06/18/2018,Musicians,@jlo,He knows...something...ok there you go #Shadesofblue +06/18/2018,Musicians,@jlo,RT @CJaskowski: @JLo happy fathers day to harlee!! +06/18/2018,Musicians,@jlo,Omg #ShadesofBlue +06/18/2018,Musicians,@jlo,But she’s being vulnerable too... https://t.co/rTkmJzr4Gc +06/18/2018,Musicians,@jlo,Gotta be 💪🏼 https://t.co/d83pNUnaIA +06/18/2018,Musicians,@jlo,I didn’t give him a chance to explain... #Harleesantos #shadesofblue +06/18/2018,Musicians,@jlo,Imagine going home to your novio and tell him about your day...Harlee is trying to ✌🏼keep it together✌🏼...she’s sti… https://t.co/ts6A4sPgH5 +06/18/2018,Musicians,@jlo,This scene! @EGTisme https://t.co/FEeoXPAQTK +06/18/2018,Musicians,@jlo,MORE INCENTIVE TO STAY TUNED‼️‼️ https://t.co/mFkMXk6ZZF +06/18/2018,Musicians,@jlo,WHELP!! #shadesofblue DAMN!!! +06/18/2018,Musicians,@jlo,Oh this is dark 👀 #ShadesOfBlue +06/18/2018,Musicians,@jlo,It be like that sometimes!🤷🏽‍♀️ https://t.co/EEM7AgQOMB +06/18/2018,Musicians,@jlo,So twisted. Beyond twisted. https://t.co/3Qac4UVwG4 +06/18/2018,Musicians,@jlo,Go watch with papi! I always say FAMILY FIRST...thennnn you watch #shadesofblue💙 https://t.co/8IeOENtOOb +06/18/2018,Musicians,@jlo,@jloverbby 👍🏼 +06/18/2018,Musicians,@jlo,RT @mlo_jlo: Let’s make #ShadesOfBlue trend before it start @JLo @EGTisme 💙💙 +06/18/2018,Musicians,@jlo,HARLEE BEEN THRU IT!! WHOOO!! 💙💙💙 #shadesofblue https://t.co/MySrQvzCqe +06/18/2018,Musicians,@jlo,Watch with me!💙💙💙 https://t.co/nEWUkKEZID +06/18/2018,Musicians,@jlo,"Appreciating you and loving you today and everyday for being our fearless leader, our everyday hero, for making us… https://t.co/5dVXnuHw5p" +06/18/2018,Musicians,@jlo,"HAPPY “FARTER” DAY FLACO 🤣🤣🤣 @MarcAnthony + +🥥 ♥️🥥 ♥️🕺🏻 https://t.co/WrlBz4x75U" +06/17/2018,Musicians,@jlo,FAMILY FIRST 💙@nbcshadesofblue RETURNS TONIGHT! 10/9c ON @NBC! #ShadesOfBlue https://t.co/naiHEVo2Ax +06/17/2018,Musicians,@jlo,"RT @nbcshadesofblue: One. Day. Away! 👏 + +Tell us what you're most excited to see in the final season of #ShadesofBlue. 👇 https://t.co/uSVZFA…" +06/16/2018,Musicians,@jlo,💯 MILLION @VEVO VIEWS AND ⬆️ MUCHAS GRACIAS MI GENTE/THANK YOU TO EVERYONE FOR SUPPORTING #ELANILLO ♥️🌟♥️ https://t.co/p3ydqeM9fW +06/16/2018,Musicians,@jlo,LET’S TALK ABOUT IT 🔥 https://t.co/EctRmnhXXC +06/16/2018,Musicians,@jlo,"2 DAYS...THE FINAL CHAPTER BEGINS THIS SUNDAY... +#SHADESOFBLUE on @NBC. https://t.co/2wzwtmrcGR" +06/15/2018,Musicians,@jlo,RT @BonnieFuller: ‘World Of Dance’ Recap: Teen Duo Blow The Judges Away With Their Insane Hip-Hop Routine https://t.co/A424kio6rI via @Holl… +06/15/2018,Musicians,@jlo,"RT @nbcshadesofblue: There's nothing Harlee Santos can't do. + +#ShadesofBlue returns Sunday, June 17 at 10/9c on @NBC. https://t.co/azDQbxBI…" +06/15/2018,Musicians,@jlo,Much love to my friends @djkhaled and @diddy on #TheFour!!!! Lotta talent out there! Congrats 🌟🌟🌟 +06/15/2018,Musicians,@jlo,@TheFourOnFOX @zelayasteph AYYYYYYYYYY! +06/14/2018,Musicians,@jlo,Un bolso blanco es un must esta temporada. Descubre mi colección #JLOxCoppel https://t.co/8OCOgVmuRX https://t.co/5HJO0G06Ai +06/14/2018,Musicians,@jlo,💋☝🏼🗽#OnThe6 4-Eva 🙌🏼 https://t.co/i4qhm1OwdC +06/14/2018,Musicians,@jlo,#familiaprimero ♥️ https://t.co/yzobwnbpqj +06/13/2018,Musicians,@jlo,I'm lookin...who's comin out!? https://t.co/ztLzHNby6z +06/13/2018,Musicians,@jlo,"RT @SonyMusicSpain: .@JLo ya es Disco de Oro en España con ""El Anillo"". + +#YElAnilloPaCuando + +Mira aquí el videoclip oficial de “El Anillo”:…" +06/13/2018,Musicians,@jlo,"Good Morning, America. https://t.co/CvxrsK3hPU" +06/13/2018,Musicians,@jlo,Today and everyday ♥️🏳️‍🌈♥️ https://t.co/pEGOC2eHSY +06/13/2018,Musicians,@jlo,ANOTHER GREAT #WORLDOFDANCE! SO GOOD...SEE YOU SUNDAY —HARLEE’S AT YOUR 🚪 🤣😉 #SHADESOFBLUE https://t.co/96tMUhbPWF +06/13/2018,Musicians,@jlo,"RT @ODedOnRealityTV: @NBCWorldofDance @ElektroBotz That ""windmill"" spin was awesome! #worldofdance" +06/13/2018,Musicians,@jlo,#elektrobotz when robots have emotion... ugghhh... loooove #WorldOfDANCE #neverceasestoamazeme +06/13/2018,Musicians,@jlo,"RT @XJLxverX: Wow I’m getting more in love with this show than I was last year, enjoy art watching #WorldOfDance 🙌🏻💃🏻🔥❤️ @JLo @NBCWorldofDa…" +06/13/2018,Musicians,@jlo,EVERY SHOW!!!🙌🏼🙌🏼🙌🏼🙌🏼🙌🏼 https://t.co/bxFVflDpW1 +06/13/2018,Musicians,@jlo,LIL MAMA SOBBING!! my ❤️ 😘😘#worldofdance +06/13/2018,Musicians,@jlo,The lil ones!! 💙❤️💙😪😍 #WorldOfDANCE +06/13/2018,Musicians,@jlo,LIL MAMA IS ALL HEART <3 #WORLDOFDANCE +06/13/2018,Musicians,@jlo,"(While we wait for the score, still thinking about @jennadewan 's pop n'lock)" +06/13/2018,Musicians,@jlo,"Me checking you work, after you send me videos of what you've learned after taking @derekhough's Master Class!!… https://t.co/eNjQ8RW3uW" +06/13/2018,Musicians,@jlo,Thank you baby... love tweeting w everyone #WorldOfDANCE https://t.co/folcD0UtgK +06/13/2018,Musicians,@jlo,Love you back!!! 🧡🧡🧡 https://t.co/pQ3gk6xyCQ +06/13/2018,Musicians,@jlo,RT @Jess_a_jlover: RT if you love #WorldOfDance as much as I do 😍 @JLo +06/13/2018,Musicians,@jlo,WOW!!!!! #michealdameski ladies and gentlemen!! #MERCY +06/13/2018,Musicians,@jlo,RT @NBCWorldofDance: We are begging for more @MichaelDameski! He’s pouring his heart out to “Mercy” by @ShawnMendes! 😭 #WorldofDance https:… +06/13/2018,Musicians,@jlo,You guys make me smile!!! 😁😁😁 https://t.co/t1mlT3nyQV +06/13/2018,Musicians,@jlo,Everybody knows I love a costume change!!! #WorldOfDANCE #lockandlol +06/13/2018,Musicians,@jlo,Done! 😘 https://t.co/OJ4DsOJy9o +07/01/2018,Musicians,@BebeRexha,Needed it badly. I’m still very sick but feeling a bit better. I’m so sorry to have missed Summerfest but there was… https://t.co/ygifxFtNNZ +07/01/2018,Musicians,@BebeRexha,I just slept for 20 hours. +07/01/2018,Musicians,@BebeRexha,Omg. I love you so much @lenadunham. 😭 https://t.co/XHUR46putr +06/29/2018,Musicians,@BebeRexha,"Current mood: happy, over fuck boys, damn this iced coffee is good, my butt looks good in these jeans, this drake album is so good." +06/29/2018,Musicians,@BebeRexha,I’ve been so emotional lately and I’m not even pmsing. 💁🏼‍♀️ +06/29/2018,Musicians,@BebeRexha,RT @BebeRexhaHQ: Congratulations on the release of #Expectations @BebeRexha! We made this video to show you how proud and happy we are for… +06/29/2018,Musicians,@BebeRexha,"This a roley not a stopwatch, shit don't ever stop." +06/29/2018,Musicians,@BebeRexha,RT @MrsSOsbourne: . @BebeRexha is an absolute breath of fresh air. She is honest and talented with an energy and charisma that doesn’t sto… +06/29/2018,Musicians,@BebeRexha,@CBSDaytime ❤️🙏🏻 +06/29/2018,Musicians,@BebeRexha,❤️❤️❤️❤️ @JulieChen https://t.co/fe4i7BSacK +06/29/2018,Musicians,@BebeRexha,I adore you beyond words @MrsSOsbourne. I idolize you and your strength. Thank you for this. ❤️❤️❤️ https://t.co/8GDB9lJQfb +06/28/2018,Musicians,@BebeRexha,@justPEREZplay @kiss957 ❤️❤️❤️ +06/28/2018,Musicians,@BebeRexha,RT @justPEREZplay: Have you heard @BebeRexha's #ImAMess? I'm blastin it NEXT on @kiss957! 📻 https://t.co/HbXNXeaLlZ #BebeRexha https://t.co… +06/28/2018,Musicians,@BebeRexha,RT @PopCraveNet: Bebe Rexha tears up about being on 'The Talk': “I literally watched this show at home when I was in Staten Island trying t… +06/28/2018,Musicians,@BebeRexha,@livinqhere Yes babe +06/28/2018,Musicians,@BebeRexha,She wasn’t there. I missed you Queen @JulieChen 😞 https://t.co/XTQmjeLgoU +06/28/2018,Musicians,@BebeRexha,I had the time of my life today on @TheTalkCBS. Thank you to all of the amazing ladies and the whole team there for… https://t.co/85eTLEgmW6 +06/28/2018,Musicians,@BebeRexha,RT @jaymichaels13: Fav new song #ImAMess @BebeRexha 💥🔥🎉 @justtranter ❤️❤️❤️ @wbr https://t.co/iQoGuf1plB +06/28/2018,Musicians,@BebeRexha,@kiwisays ❤️🙏🏻 +06/28/2018,Musicians,@BebeRexha,"RT @MikeAdamOnAir: CONGRATS #BEBEREXHA!!! #Expectations, the first official studio album from @BebeRexha, has debuted in the top ten on iTu…" +06/28/2018,Musicians,@BebeRexha,"RT @Fresh1027NY: CONGRATS #BEBEREXHA!!! #Expectations, the first official studio album from @BebeRexha, has debuted in the top ten on iTune…" +06/28/2018,Musicians,@BebeRexha,Adore you @DellaCrews12 https://t.co/f16yn3Iy3i +06/28/2018,Musicians,@BebeRexha,@997now @ArianaGrande @STJOHNSOFIERCE Thank youuuuu #ImAMess +06/28/2018,Musicians,@BebeRexha,Omg I love all threeeee of you so much. @SofiaCarson @TanyaRad @paudacchar ❤️ https://t.co/HnugQDQOqu +06/28/2018,Musicians,@BebeRexha,@DDLECOURS ❤️❤️❤️❤️ +06/28/2018,Musicians,@BebeRexha,Standing united for equality and justice tonight on #TrailblazerHonors at 9:30/8:30c on @VH1. Tune in ❤️ (📸:… https://t.co/PHk2xLfimr +06/28/2018,Musicians,@BebeRexha,I’m A Mess this morning on @TheTalkCBS. Special versions of In The Name Of Love and Meant To Be on @VH1 #TrailblazerHonors tonight. ❤️ +06/28/2018,Musicians,@BebeRexha,RT @VH1: The girl can SING! We celebrated game changers and everyday activists for Trailblazer Honors. Catch @BebeRexha open #TrailblazerHo… +06/28/2018,Musicians,@BebeRexha,"RT @TheTalkCBS: TODAY: We're sizzling hot when the talented @BebeRexha joins us to perform music from her new album #Expectations! Plus, th…" +06/27/2018,Musicians,@BebeRexha,Happy birthday to the amazing @Shelley_Rome Thank you for always making me feel welcomed at the radio station 💕💕💕 +06/27/2018,Musicians,@BebeRexha,Love you Tanya. You’re the best ever https://t.co/IglKMMe9b8 +06/27/2018,Musicians,@BebeRexha,You Guys I’m so excited I saw the first incredibles this week and I was obsessed. now I’m gonna go watch the second one today in 3D woooo. +06/27/2018,Musicians,@BebeRexha,"RT @ChartsBebeRexha: 🇪🇸 iTunes: Spain + +38. @BebeRexha — “Shining Star” (+22) *peak #32* https://t.co/EZ6uBc6LH0" +06/27/2018,Musicians,@BebeRexha,RT @SiriusXMHits1: We had SO much fun with @BebeRexha! You are a firecracker girl!! We love ya and congrats on #Expecations 💖💖 https://t.co… +06/27/2018,Musicians,@BebeRexha,RT @SamarSamierr: Look who’s number one ☝️ in iTunes Egypt !! @BebeRexha https://t.co/FsCqlApE7O +06/27/2018,Musicians,@BebeRexha,Lolol https://t.co/93swW1PTpP +06/27/2018,Musicians,@BebeRexha,RT @BebeUpdater: Update| ‘Knees’ has now become the 4th best selling New Release of the week. https://t.co/CdyWApHzYG +06/27/2018,Musicians,@BebeRexha,WHAT https://t.co/J0bKcKFBBB +06/27/2018,Musicians,@BebeRexha,😱 what https://t.co/Fs6vF3Kl2u +06/27/2018,Musicians,@BebeRexha,RT @TeenChoiceFOX: .@BebeRexha + @FLAGALine = #ChoiceCountrySong. Is it Meant To Be? 🤷‍♀️ You can make it happen: RT to vote! #TeenChoice h… +06/26/2018,Musicians,@BebeRexha,"If someone tells you, you can’t. You don’t scream, you dont yell. You just do it and that will be the loudest thing they’ve ever heard." +06/26/2018,Musicians,@BebeRexha,"I can’t believe this.I finally put out an album.All the no’s I got, All the nonbelievers, All the haters.They never stopped me & never will." +06/26/2018,Musicians,@BebeRexha,It’s okay baby. Stream it online. I love you no matter what https://t.co/GgapUiUh57 +06/26/2018,Musicians,@BebeRexha,Lol. Do you guys want one? Let me talk to my team. Hold please. https://t.co/8sx5eyDpnH +06/26/2018,Musicians,@BebeRexha,😍😍😍. https://t.co/kv5kn13Wda +06/26/2018,Musicians,@BebeRexha,EXACTLY!!! https://t.co/sn57rhtMBd +06/26/2018,Musicians,@BebeRexha,Yay to being imperfect and a mess and a little crazy sometime! Woooo!!! +06/26/2018,Musicians,@BebeRexha,"RT @headlineplanet: Pop Radio Add Leaders: +1) @BebeRexha +2) @KygoMusic & @Miguel +3t) @nickiminaj & @ArianaGrande +3t) @alessiacara +5) @5sos…" +06/26/2018,Musicians,@BebeRexha,I just found out I’m A Mess is #1 Most Added at Top 40 today!!!!!!!!!!!!!!!!!!! Thank you to my incredible @wbr tea… https://t.co/bwZU0B4gpy +06/26/2018,Musicians,@BebeRexha,Best @Target run of my life. Thank you so much for supporting #Expectations ❤️❤️❤️ https://t.co/GRoqs9YrlN +06/26/2018,Musicians,@BebeRexha,I’m a mess for your love it ain’t new. +06/26/2018,Musicians,@BebeRexha,"RT @livycone: When Bebe Rexha said “I’m a Mess” +I felt that." +06/26/2018,Musicians,@BebeRexha,😱 https://t.co/m4zlMhHBi1 +06/26/2018,Musicians,@BebeRexha,Thanks @hmvtweets! #Expectations is out now xo https://t.co/ivlLOgPdE9 https://t.co/bX6Cmz4VGX https://t.co/EACD3Ivz1y +06/26/2018,Musicians,@BebeRexha,"RT @billboard: .@BebeRexha performs emotional new single ""I'm A Mess"" on ""The Tonight Show"" https://t.co/oQB8A7hSv2 https://t.co/mbFu8ZEtva" +06/26/2018,Musicians,@BebeRexha,I LOVED this performance so much. One of my favorite moments ever. “IM A MESS” LIVE: https://t.co/PWGSg1sejs +06/26/2018,Musicians,@BebeRexha,Woah https://t.co/yYKXPRDnDI +06/26/2018,Musicians,@BebeRexha,"RT @PFBRreal: Acompanhada de bailarinos e cenário hospitalar, @BebeRexha faz performance de “I’m a Mess” no The Tonight Show - https://t.co…" +06/26/2018,Musicians,@BebeRexha,Thank you https://t.co/kF3zRtYNiB +06/26/2018,Musicians,@BebeRexha,RT @xMusicMayhemx: WOW! @BebeRexha's performance on The Tonight Show Starring @jimmyfallon tonight was INCREDIBLE! 🔥😍 #IMAMESS #Expectation… +06/26/2018,Musicians,@BebeRexha,"RT @FallonTonight: .@BebeRexha debuts her new song ""I'm a Mess"" https://t.co/h84M68Xbe1 https://t.co/uoNoPkvUwa" +06/26/2018,Musicians,@BebeRexha,EAST COAST!!!! 2 mins until “I’m A Mess” on @FallonTonight. Turn on NBC right now!!!! +06/26/2018,Musicians,@BebeRexha,"RT @billboard: These are 6 of @BebeRexha's most intoxicating lyrics from new ""Expectations"" album https://t.co/O57mvK2857 https://t.co/H24t…" +06/26/2018,Musicians,@BebeRexha,I’ll be on Watch What Happens Live at 11pm Don’t miss it!!!! On @Bravotv https://t.co/MISf9kKHSY +06/26/2018,Musicians,@BebeRexha,RT @Andy: Tweet me Qs all night for MUSIC SUPERSTARS @BebeRexha & @bryanadams! They're on #WWHL tonight - live at 11! +06/26/2018,Musicians,@BebeRexha,RT @BravoWWHL: TONIGHT at 11/10c we’re LIVE w/ @BebeRexha & @bryanadams! Start tweeting in your questions to @Andy! https://t.co/ASWeyt4T5c +06/26/2018,Musicians,@BebeRexha,RT @BravoWWHL: Keep tweeting in your questions to @Andy for @BebeRexha & @bryanadams! +06/25/2018,Musicians,@BebeRexha,Tonighttttt https://t.co/Hyj3bNLIhd +06/25/2018,Musicians,@BebeRexha,😱😱😱😱 https://t.co/tvDpcH3DOH +06/25/2018,Musicians,@BebeRexha,"RT @BebeRexhaHQ: UK Top Albums Midweek Chart: +18. @BebeRexha - #Expectations +Keep buying, UK Rexhars!" +06/25/2018,Musicians,@BebeRexha,😱😱😱😱😱😱 https://t.co/q2oM0T702n +06/25/2018,Musicians,@BebeRexha,What’s your fav song on Expectations? +06/25/2018,Musicians,@BebeRexha,RT @arjanwrites: #ICMYI The state of Pop is strong... I'm playing you all the bops... Listen to this week's @Beats1 #AListPopLive on demand… +06/25/2018,Musicians,@BebeRexha,Okay. I’ve got to go to sleep now because I’m performing on @FallonTonight Tomorrow. Here is a clip of rehearsal fo… https://t.co/zvvTXVXMqJ +06/25/2018,Musicians,@BebeRexha,Forever. https://t.co/vw0CmHns6F +06/25/2018,Musicians,@BebeRexha,"Anyways, I’m always here. Just listen to my songs and I’m right there with you. Always." +06/25/2018,Musicians,@BebeRexha,"You are only really “alone,” unless you want to be. And sometimes I like it." +06/25/2018,Musicians,@BebeRexha,The truth is you’re never really alone. +06/25/2018,Musicians,@BebeRexha,I’m a mess https://t.co/nx7DNy0KCk +06/25/2018,Musicians,@BebeRexha,"Do you ever sleep, troubles in your head? Wrapped up in regrets? +Reaching for the help you gotta find inside yourself. Stuck inside a spell" +06/25/2018,Musicians,@BebeRexha,"Do you ever sit in silence all alone +Drowned out by your thoughts +Trying to get a grip but just keep on spiraling down +Voices getting loud" +06/25/2018,Musicians,@BebeRexha,"Baby Maybe, I’m just comfortable being sad." +06/25/2018,Musicians,@BebeRexha,Thank you Pete 💕🙏🏼 https://t.co/Rh9GHbPaj2 +06/25/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: iTunes WW 🌎 + +#3. Expectations (=) *peak #3 for 3 days* https://t.co/jmzvjHYQoj" +06/24/2018,Musicians,@BebeRexha,Ask Me Anything on @reddit: https://t.co/bgxCft9R1h https://t.co/kWYKUiGytX +06/24/2018,Musicians,@BebeRexha,🙇🏼‍♀️🙆🏼‍♀️🙏🏼 https://t.co/uCDnQxX3yM +06/24/2018,Musicians,@BebeRexha,😭 https://t.co/Ul68Sa2FzU +06/24/2018,Musicians,@BebeRexha,RT @simply__sarai: @BebeRexha It’s a stomach virus going around be careful y’all... +06/24/2018,Musicians,@BebeRexha,For real?! https://t.co/1rHdWIrCuO +06/24/2018,Musicians,@BebeRexha,😬 https://t.co/yKHGYaaYbq +06/24/2018,Musicians,@BebeRexha,I wonder if there is a virus going around +06/24/2018,Musicians,@BebeRexha,Okay. I’ve been throwing up all day and now my manager is sick. Hot Sweats and throwing up and all and we are on a plane. God help us. 🤮🤮🤮 +06/23/2018,Musicians,@BebeRexha,Playing @B96Chicago @Pepsi #SummerBash TODAY! Get tix at the Allstate Arena box office. Come party with me… https://t.co/TyGptonAlO +06/23/2018,Musicians,@BebeRexha,Just took my 53rd flight of the year +06/23/2018,Musicians,@BebeRexha,😭🙆🏼‍♀️🙇🏼‍♀️ https://t.co/NWarq17nvd +06/23/2018,Musicians,@BebeRexha,I want an owl 🙇🏼‍♀️ like the one Harry Potter has. But I wanna rescue one. I dunno. Is that weird? +06/23/2018,Musicians,@BebeRexha,The twist on Expectations. Every song is about bear. https://t.co/DrhJvIffTM +06/23/2018,Musicians,@BebeRexha,I’m A Mess https://t.co/gr633qpvMS +06/23/2018,Musicians,@BebeRexha,“Ferrari” https://t.co/fd421KOXWw +06/23/2018,Musicians,@BebeRexha,RT @pandoramusic: .@BebeRexha's anticipated debut album is here. Find out what 3 words the pop singer-songwriter chose to describe ‘Expecta… +06/23/2018,Musicians,@BebeRexha,Going to bed with the biggest smile on my face. I’ll never forget this day. Ever. Thank you to everyone around the… https://t.co/d55dwjkeBh +06/22/2018,Musicians,@BebeRexha,Got one. https://t.co/nZ2Hi0sGkS +06/22/2018,Musicians,@BebeRexha,Going to target on 34th street nyc to buy my album 🙇🏼‍♀️ +06/22/2018,Musicians,@BebeRexha,My mood all day @radiodisney #RDMAS https://t.co/TI15vbH27y +06/22/2018,Musicians,@BebeRexha,Holy shit #3 worldwide 🌎 🌍😭 https://t.co/pxFJT9gHjR +06/22/2018,Musicians,@BebeRexha,RT @GMA: SURPRISE! Congrats to @BebeRexha for winning #TheFreshest and #PlayItAgain at the #RDMA! Make sure to watch the @RadioDisney Music… +06/22/2018,Musicians,@BebeRexha,"RT @chartdata: US Certifications (@RIAA): @BebeRexha, Expectations Gold (500,000)." +06/22/2018,Musicians,@BebeRexha,Expectations is certified GOLD on the first day. I am speechless. Taking it all in. At breakfast with my family and friends. ❤️❤️❤️ +06/22/2018,Musicians,@BebeRexha,"RT @billboard: .@BebeRexha rocks Central Park with ""I'm a Mess"" performance on ""GMA"" https://t.co/cqMdsqi4wJ https://t.co/xp1ZNliw77" +06/22/2018,Musicians,@BebeRexha,RT @radiodisney: We have our first #RDMA winner! Congrats to @BebeRexha on winning #TheFreshest AND #PlayItAgain for #MeantToBe with @FLAGA… +06/22/2018,Musicians,@BebeRexha,"RT @Spotify: Everything you expected. +@beberexha's debut album is here. Listen now https://t.co/EyFjWT5Ank https://t.co/3YUiYD4Ad3" +06/22/2018,Musicians,@BebeRexha,RT @WhaleReport: Bebe Rexha’s just released her new album #Expectations and it has already reached the top ten in 47 countries around the w… +06/22/2018,Musicians,@BebeRexha,"RT @BBRexhaCharts: WE DID IT, REXHARS! + +@BebeRexha won two categories on Radio Disney Music Awards at the categories ""The Freshest: Best Ne…" +06/22/2018,Musicians,@BebeRexha,#Expectations is out everywhere now. https://t.co/y3ag0j8lKz https://t.co/XVW9GqW46b +06/22/2018,Musicians,@BebeRexha,"RT @GMA: STILL AHEAD ON @GMA: @BebeRexha performs LIVE in Central Park! GET TO A TV! + +RT if you're excited! + +Tweet us using #BEBEREXHAonGM…" +06/22/2018,Musicians,@BebeRexha,Just got to @GMA!!!!!! https://t.co/pzsmanVtt6 +06/22/2018,Musicians,@BebeRexha,Unreal. I’ll never forget this. https://t.co/FjvqgV74hN +06/22/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: .@BebeRexha's 'Expectations' is charting in the top 10 of 26 countries, including the UK." +06/22/2018,Musicians,@BebeRexha,"RT @amazonmusic: .@BebeRexha insta takeover happening NOW https://t.co/6nBtmpSoBA +#ExpectationsIsComing https://t.co/M8P5VJhLuo https://t.…" +06/21/2018,Musicians,@BebeRexha,"RT @GMA: GET READY. #BEBEREXHAonGMA tomorrow in Central Park! Who's excited?! + +See you bright and early, @beberexha! https://t.co/6qh1dgcrCQ" +06/21/2018,Musicians,@BebeRexha,😭🙏🏼 https://t.co/YVDzZ2Defo +06/21/2018,Musicians,@BebeRexha,"RT @eshaangill: @BebeRexha Congratulations! You’re already #1 at the Pop Charts on iTunes (India🇮🇳) +and +#4 on iTunes Chart (India🇮🇳) +In…" +06/21/2018,Musicians,@BebeRexha,RT @stylesmitchwll: @BebeRexha PLEASE LOOK THIS 😭😭😭😭 https://t.co/MHRFbvogyb +06/21/2018,Musicians,@BebeRexha,Okayyy UK. 😁😁😁 https://t.co/ZqLjjEhMJT +06/21/2018,Musicians,@BebeRexha,Wow https://t.co/ZLP6M7FC4X +06/21/2018,Musicians,@BebeRexha,🙇🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️ https://t.co/nUQkR1MGsF +06/21/2018,Musicians,@BebeRexha,"RT @BebeRexhaHQ: #Expectations is Top 10 in 7 countries already! @BebeRexha + +iTunes: +#2 Fiji +#4 New Zealand +#4 Taiwan +#6 Indonesia +#7 Aust…" +06/21/2018,Musicians,@BebeRexha,Yesssss. Airing next week though xoxo https://t.co/ZxHEbC4ZiI +06/21/2018,Musicians,@BebeRexha,Got you https://t.co/rsZ52qmjLw +06/21/2018,Musicians,@BebeRexha,My favoriteeeeee hoodie ever 😭 https://t.co/sRTd6roN1w https://t.co/wY3eOlsWeP +06/21/2018,Musicians,@BebeRexha,🛒 🛍 https://t.co/sRTd6roN1w +06/21/2018,Musicians,@BebeRexha,I always knew I loved Brazil 🙇🏼‍♀️ +06/21/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: ITunes BR 🇧🇷: + +30. I'm a mess - @BebeRexha (+10) NEW PEAK + +#ExpectationsTomorrow https://t.co/m87xw5bYgT" +06/21/2018,Musicians,@BebeRexha,Me waiting for everyone’s reactions on expectations... https://t.co/bP50GahgQF +06/21/2018,Musicians,@BebeRexha,Pre-save #Expectations on @Spotify before it comes out TONIGHT: https://t.co/yBcnEr5xYW +06/21/2018,Musicians,@BebeRexha,Good morning everyone. My album comes out at midnight tonight. I’m low key freaking out. #Expectations +06/21/2018,Musicians,@BebeRexha,"RT @BebeRexha_Peru: Countdown: +#ExpectationsTomorrow +@BebeRexha https://t.co/8GjKJk5Nd6" +06/21/2018,Musicians,@BebeRexha,RT @gabriel5souza: 1 Day Expectations @BebeRexha https://t.co/roZc5NqT0S +06/21/2018,Musicians,@BebeRexha,RT @Andr3w_95: This album is like I Don’t Wanna Grow Up meets All Your Fault. It’s cohesive yet experiments. Honestly the album of 2018 😭😭😭… +06/21/2018,Musicians,@BebeRexha,Hear #Expectations the second it comes out on Friday 💗 Pre-add it now on @AppleMusic: https://t.co/no15DAEqt2 https://t.co/oFE2VRqc87 +06/20/2018,Musicians,@BebeRexha,Yes https://t.co/rY4pUXnoFg +06/20/2018,Musicians,@BebeRexha,Sometimes I just go to the bathroom and sit on the toilet to get away from everyone and have me time. +06/20/2018,Musicians,@BebeRexha,I’m cominggggggg @ElvisDuranShow stuck in a little traffic!!! Don’t miss it everyone!!!!! 8:35am est https://t.co/gfTOwAyFfj +06/20/2018,Musicians,@BebeRexha,RT @ElvisDuranShow: WEDNESDAY: We have our girl @beberexha 🔥😍 LIVE in-studio with us at 8:35 AM ET for some quality BFF time. 😊💯 Tune in: h… +06/20/2018,Musicians,@BebeRexha,@fcknjaaay you are amazing +06/20/2018,Musicians,@BebeRexha,RT @fcknjaaay: I heard it was the one year anniversary of @BebeRexha’s iconic instagram live so I had to do this 💀 if you’re a pervert get… +06/19/2018,Musicians,@BebeRexha,Thank you Rexhars #ImAMess https://t.co/4DMOMJ43dY +06/19/2018,Musicians,@BebeRexha,https://t.co/fHBv7avSBG +06/19/2018,Musicians,@BebeRexha,Thank you @BBCR1 for playing #ImAMess on Best New Pop 💗 https://t.co/AbwQxOOngl +06/19/2018,Musicians,@BebeRexha,😱OH MY GOD https://t.co/L5MrzVNyOP +06/19/2018,Musicians,@BebeRexha,https://t.co/4nmaxQFqRo +06/19/2018,Musicians,@BebeRexha,Lmfaoooooo 😂😂 https://t.co/l8906SUFUU +06/19/2018,Musicians,@BebeRexha,RT @chayennemjq: @BebeRexha What happens when you are in the store and ferrari comes on https://t.co/mp61ZCxRvl +06/19/2018,Musicians,@BebeRexha,3 days till expectations. +06/19/2018,Musicians,@BebeRexha,He banged on the door. Trust me the driver saw him. https://t.co/UFflSjSmGD +06/19/2018,Musicians,@BebeRexha,Power trip https://t.co/rB4c7dLA7U +06/19/2018,Musicians,@BebeRexha,I just saw someone run to the bus and literally touch the door and the driver closed the door on him and drove away. 😔 @MTA +06/19/2018,Musicians,@BebeRexha,"Dear @MTA bus drivers, if you see someone running for the bus, waiting 2 secs won’t kill you but will make someone’s day better." +06/19/2018,Musicians,@BebeRexha,Cool beans +06/19/2018,Musicians,@BebeRexha,🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️ https://t.co/2ll7dVh55c +06/19/2018,Musicians,@BebeRexha,Yay new Merch done. Comingggg +06/19/2018,Musicians,@BebeRexha,💕💕💕💕❤️ https://t.co/EGWY0Qse7t +06/19/2018,Musicians,@BebeRexha,RT @dirtydannyyy: me & my 2 bebe rexha mutuals next friday when the album comes out https://t.co/pHE2wHr15A +06/19/2018,Musicians,@BebeRexha,RT @vinrago5: Thanks @BebeRexha for coming back to Tville to talk to the Student Organization!! It was so great and inspirational to hear s… +06/19/2018,Musicians,@BebeRexha,"RT @nikki_hinz: thank you so much for coming to tottenville!! my friends and I had the best time ever, also btw you sound amazing live 💜💜💜💜…" +06/19/2018,Musicians,@BebeRexha,😌😌😌 https://t.co/eRx1KNLDOV +06/19/2018,Musicians,@BebeRexha,"RT @RoTierno: Today @TottenvilleSO18 had a Sing-a-Long with @BebeRexha , how was your day? @THSSTEAM @PirateTVTHS @SIBFSC #PirateFam #Pirat…" +06/18/2018,Musicians,@BebeRexha,"RT @TIDAL: Celebrate #Pride with playlists from @BebeRexha, @AnneMarie, @musicpronoun and more on https://t.co/DOEFADJLse https://t.co/OC33…" +06/18/2018,Musicians,@BebeRexha,"RT @lottieslilo: I made makeup inspired by #MeantToBe music video + +@BebeRexha I'm so proud of you, queen. You deserve everything that you…" +06/18/2018,Musicians,@BebeRexha,"I’m looking for allllll your #ImAMess videos. Covers, musicallys, reactions, dances, reply them to me 💞" +06/18/2018,Musicians,@BebeRexha,"RT @amazonmusic: Spend your #MusicMonday w. @BebeRexha! #JustAsk, ""Alexa, play the Song of the Day"" to stream ""I'm a Mess"" https://t.co/aZC…" +06/18/2018,Musicians,@BebeRexha,RT @stoesselsabby: i'm a mess by @BebeRexha is a masterpiece +06/18/2018,Musicians,@BebeRexha,RT @JDudleyRowe: Just finished watching @BebeRexha’s On the Record @AppleMusic film. I love her so much because she continues to inspire me… +06/18/2018,Musicians,@BebeRexha,RT @Jessie88967722: ‘I’m a mess’ by Bebe Rexha is actually amazing I recommend that everyone gives it a listen and downloads it she deserve… +06/18/2018,Musicians,@BebeRexha,"RT @IhlenAmber: Hey @BebeRexha I’m a mess over you and obsessed with your new single “I’m a mess” because it’s so relatable! +Coincidence? I…" +06/18/2018,Musicians,@BebeRexha,RT @Mbreezy_xo: I’m in love with song & i can’t wait for Friday @BebeRexha https://t.co/NX57mkKr21 +06/18/2018,Musicians,@BebeRexha,😱 https://t.co/OUV7xpmTsg +06/18/2018,Musicians,@BebeRexha,Yesterday. https://t.co/nnyKJsn3Ht +06/18/2018,Musicians,@BebeRexha,RT @UpdatesBeRexha: 📷| Bebe na ściance #Kiss108kissConcert 😍 https://t.co/NFJJvNDBz3 +06/18/2018,Musicians,@BebeRexha,@LokiIsOurKingxx My pleasure babe +06/18/2018,Musicians,@BebeRexha,Done. https://t.co/IkxoNV6p1l +06/18/2018,Musicians,@BebeRexha,@Austinn_Blakee ❤️❤️❤️ +06/18/2018,Musicians,@BebeRexha,"RT @CVanBramer: Honestly cannot stop listening to I’m a mess @BebeRexha , it’s such a bop!" +06/18/2018,Musicians,@BebeRexha,RT @_Cmnunez_: Can’t wait to hear her new album that’s coming up this Thursday and can’t wait to see her too at @GMA @BebeRexha 😭😭😭❤️❤️❤️💗😂… +06/18/2018,Musicians,@BebeRexha,@nickrvaz373 @Kiss108 Looooove +06/18/2018,Musicians,@BebeRexha,RT @loufromdonny: THIS WEEK WE FINALLY GOING TO HAVE EXPECTATIONS IN OUR HANDS AND MY WIG ISN’T READY @BebeRexha +06/18/2018,Musicians,@BebeRexha,"RT @BebeRexha_Peru: I'm a Mess = HIT +#ExpectationsIsComing 🔥 @BebeRexha https://t.co/cljcww4xoK" +06/18/2018,Musicians,@BebeRexha,Can’t wait. @B96Chicago @EBUNC1 https://t.co/kNzSWC2loC +06/18/2018,Musicians,@BebeRexha,RT @lizlyngad: ⁦@BebeRexha⁩ has made ⁦@blainelyngad⁩’s night she’s in TEARS!! IT IS LOVELY!! https://t.co/f7oZtbvmCU +06/18/2018,Musicians,@BebeRexha,@hargrove_carter Thank you so much for watching Babe. +06/18/2018,Musicians,@BebeRexha,RT @guivibo: I hope you’re able to read the letter I gave you! You made me so happy today! Til’ the next time ♥️🇪🇸 @BebeRexha https://t.co/… +06/18/2018,Musicians,@BebeRexha,@Scoots12 @Kiss108 ❤️❤️❤️ +06/18/2018,Musicians,@BebeRexha,RT @BadVitxhRexha: I absolutely cannot wait for the studio version of Shining Star 😍✨ actually I can’t wait for the whole album I’m so jitt… +06/18/2018,Musicians,@BebeRexha,RT @bebe_xcx: Bebe’s “I’m a Mess” is my life right now. It’s my therapeutic song now. Thanks @BebeRexha for releasing this +06/18/2018,Musicians,@BebeRexha,@KINGTUTTONB 😘😘😘 +06/18/2018,Musicians,@BebeRexha,@ohhjasminerose @Kiss108 @alessiacara @DUALIPA @backstreetboys 💕 +06/18/2018,Musicians,@BebeRexha,RT @LifeStayStrong: EXPECTATIONS by @BebeRexha is gonna be soooo lit 💙✨ +06/18/2018,Musicians,@BebeRexha,RT @cvrsen: I can't wait for #Expectations 😩😩😩😩 the docu was SOOO good @BebeRexha i cant wait to hop up on stage with you again boo 😉 +06/18/2018,Musicians,@BebeRexha,I had the greatest night with @Kiss108. Thank you guys so much for the major love. ❤️❤️❤️ https://t.co/PWfwJZDTCb +06/17/2018,Musicians,@BebeRexha,See you sooonnnn I go on at 6:10pm https://t.co/8KQdu85VFC +03/26/2018,Musicians,@imjmichaels,Little gems! I switched my twitter & Instagram handles to @juliamichaels today! Just giving you a heads up!!! +06/30/2018,Musicians,@CalvinHarris,1 year today since Funk Wav Bounces Vol.1 came out! https://t.co/jLeseR6bFE +06/24/2018,Musicians,@CalvinHarris,Yes I’m Scottish but I don’t care the legend Harry Kane picked our song hahahahaha https://t.co/r0JclobgzN +06/22/2018,Musicians,@CalvinHarris,"Full One Kiss remix pack is out now with Extended, @R3HAB @Jauzofficial @OliverHeldens @ValentinoKhan… https://t.co/5UiA8qbpNz" +06/15/2018,Musicians,@CalvinHarris,"This guy is already a radio icon, make it official by voting for him to get in radio hall of fame : https://t.co/r6CFCXoM7N" +06/15/2018,Musicians,@CalvinHarris,The @ValentinoKhan mix of One Kiss is out now ! Listen here: https://t.co/0rgtNoj20E +06/13/2018,Musicians,@CalvinHarris,"One Kiss @ValentinoKhan remix is out Friday !! +Presave here: +https://t.co/O89pwabIGx" +06/08/2018,Musicians,@CalvinHarris,"One Kiss 8 weeks at number 1 in UK now! Back at number 1 WW iTunes. Unbelievable! So happy you’re enjoying it, than… https://t.co/QP5s57h8id" +06/06/2018,Musicians,@CalvinHarris,"One Kiss @R3HAB remix this Friday !! Presave here !! +https://t.co/4j9Nj4X38L" +06/02/2018,Musicians,@CalvinHarris,RT @DUALIPA: WHAT A DAY @CalvinHarris 💥💥 https://t.co/9mutRQUfFY +06/01/2018,Musicians,@CalvinHarris,https://t.co/gf95qr4iRg https://t.co/UbRQguG6YD +06/01/2018,Musicians,@CalvinHarris,"7 weeks at number 1 in UK now !! Magical +Thank u +@DUALIPA @Jessiereyez" +06/01/2018,Musicians,@CalvinHarris,RT @DUALIPA: 7 BABY 7!!!!! #ONEKISS COME ONNNNN @CalvinHarris https://t.co/bdvkbaUlbW +06/01/2018,Musicians,@CalvinHarris,"One Kiss @OliverHeldens remix is out now !! + +https://t.co/0w9ZdYC12d" +05/28/2018,Musicians,@CalvinHarris,"One Kiss @DUALIPA is the biggest song in the world rn number 1 global iTunes, Apple Music & Spotify thank you so much !!!!!! 🤯🤯🤯" +05/28/2018,Musicians,@CalvinHarris,"The @OliverHeldens remix of One Kiss is coming on Friday ... +https://t.co/O89pwabIGx" +05/28/2018,Musicians,@CalvinHarris,"Made a Funk Wav playlist for those of you who keep asking me where Vol 2 is + +https://t.co/DdZxB1sRNH" +05/26/2018,Musicians,@CalvinHarris,Spot on https://t.co/B2UcFcCT84 +05/25/2018,Musicians,@CalvinHarris,"RT @BBCR1: SIX WEEKS at the top of the #OfficialChart? + +@CalvinHarris and @DUALIPA have got it in the bag with 'One Kiss', which is going a…" +05/25/2018,Musicians,@CalvinHarris,Thank you ! https://t.co/PVaVNQvCtk +05/25/2018,Musicians,@CalvinHarris,RT @DUALIPA: Sooo #OneKiss w @calvinharris is number 1 for 6 weeks and has just gone PLAT PLAT 💿 I have been found staring into the abyss (… +05/25/2018,Musicians,@CalvinHarris,One Kiss @ZHUmusic remix is out now ! https://t.co/Uf1MW58via +05/22/2018,Musicians,@CalvinHarris,"One Kiss Zhu remix coming Friday ! @ZHUmusic + +Presave here https://t.co/uRHnPdhGyS https://t.co/nBqRfECG1t" +05/21/2018,Musicians,@CalvinHarris,"#1 global iTunes +#2 global Spotify +with @DUALIPA thank you world !!!! ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️" +05/19/2018,Musicians,@CalvinHarris,"RT @CalvinHarris: ONE KISS w/ @DUALIPA out now ! + +iTunes - https://t.co/krYlw0IF0z + +Apple Music - https://t.co/P94kZJ8FnD + +Spotify - https:…" +05/19/2018,Musicians,@CalvinHarris,Blessed to have put Frank and Migos on the same record #HumbleBragAboutSomething +05/18/2018,Musicians,@CalvinHarris,RT @Jauzofficial: ONE KISS REMIX IS OUT NOW!!! Thx @CalvinHarris @DUALIPA for letting me put my touch on such a dope record! OUT NOW EVERYW… +05/18/2018,Musicians,@CalvinHarris,5️⃣ !!!!!!!! https://t.co/7kImLJ6M4t +05/17/2018,Musicians,@CalvinHarris,"Thank you ! +Also how deep is your love on Jimmy Fallon was one of my favourites https://t.co/ZoknShQroP" +05/17/2018,Musicians,@CalvinHarris,Listen for the premiere of One Kiss @Jauzofficial Remix 10am EST tomorrow w/ @Ridanaser on #BPM @sxmelectro https://t.co/X7xv1oBIeW +05/15/2018,Musicians,@CalvinHarris,"Jauz remix coming ! + +One Kiss w @DUALIPA @Jauzofficial remix coming Friday presave here !! +https://t.co/uRHnPdhGyS https://t.co/tJUDqhyhWl" +05/15/2018,Musicians,@CalvinHarris,Back at #1 WW iTunes with @DUALIPA thank u world !!! xxx 🙏🙏🙏 +05/12/2018,Musicians,@CalvinHarris,Thank you!!!!! https://t.co/tCzppNAEcN +05/11/2018,Musicians,@CalvinHarris,4 weeks !!! https://t.co/63KXGqv4Ze +05/09/2018,Musicians,@CalvinHarris,https://t.co/QzZfZdrRZ9 One Kiss behind the scenes w @DUALIPA @emilnava +05/08/2018,Musicians,@CalvinHarris,5th in the world @Spotify that’s maddddd thank you !!! 🏴󠁧󠁢󠁳󠁣󠁴󠁿 https://t.co/kOw28UDou6 +05/08/2018,Musicians,@CalvinHarris,Thank you @KidKelly and @MikeyPiff for putting One Kiss on the @SiriusXMHits1 playlist !! 🙏🙏🙏 https://t.co/5xrm1WWZeL +05/05/2018,Musicians,@CalvinHarris,Looool https://t.co/FpxvTY6CWb +05/04/2018,Musicians,@CalvinHarris,Thank you!!!!!!! https://t.co/zwaQRXCPt4 +05/03/2018,Musicians,@CalvinHarris,NEW VIDEO ALERT @DUALIPA https://t.co/j9UUDgVHPz +05/03/2018,Musicians,@CalvinHarris,😀😀😀 https://t.co/1yXjQCvHqF +05/03/2018,Musicians,@CalvinHarris,I love this video thank you @emilnava https://t.co/j9UUDgVHPz +05/02/2018,Musicians,@CalvinHarris,Appreciate your confidence but I’m Scottish https://t.co/wrUyvejHjT +05/02/2018,Musicians,@CalvinHarris,RT @clockworkbea: @CalvinHarris King of holding a glass for 10 seconds +05/02/2018,Musicians,@CalvinHarris,Welcome 2 my world https://t.co/rSaMbvuzyT +05/02/2018,Musicians,@CalvinHarris,"ONE KISS VIDEO @DUALIPA + +https://t.co/bA5eoyzcph" +05/02/2018,Musicians,@CalvinHarris,Rollin platinum in US ! @thegreatkhalid @1future https://t.co/BhoYhJPPkB +05/02/2018,Musicians,@CalvinHarris,"RT @AppleMusic: The official video for #OneKiss is here! +@CalvinHarris x @DUALIPA +Watch now, only on Apple Music: https://t.co/o2igWNvhlJ h…" +05/01/2018,Musicians,@CalvinHarris,Official video for One Kiss w/ @DUALIPA now streaming exclusively on @AppleMusic https://t.co/lZGO9BE2Mr +04/30/2018,Musicians,@CalvinHarris,"One Kiss w/ @DUALIPA video premieres tomorrow on @AppleMusic ! +https://t.co/Waq9WdJKJf https://t.co/OgC8eCwpCS" +04/27/2018,Musicians,@CalvinHarris,Thank you !! https://t.co/EONApRrHNZ +04/27/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/6MWiVrJ6ud +04/27/2018,Musicians,@CalvinHarris,"RT @AppleMusic: The #Alone (@CalvinHarris Remix) with @halsey x @stefflondon needs to be on your weekend playlist. +https://t.co/NrSjK6StM0" +04/24/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS VIDEO W @calvinharris COMING VERY SOON!!! BUT 4 NOW STREAM IT LINK IT SHARE IT W YO FRENDS https://t.co/5vLjJSbyEO 💕💕… +04/24/2018,Musicians,@CalvinHarris,"One Kiss video on it’s way 🍸 + +https://t.co/6OGEyd3QOF https://t.co/TiDOCkF44W" +04/24/2018,Musicians,@CalvinHarris,👋 https://t.co/PjKFQc3iXT +04/23/2018,Musicians,@CalvinHarris,@LaidbackLuke Me too what a tune +04/23/2018,Musicians,@CalvinHarris,Thank you 🙏 @DUALIPA https://t.co/njdearbI0Z +04/20/2018,Musicians,@CalvinHarris,"Devastating news about Avicii, a beautiful soul, passionate and extremely talented with so much more to do. My hear… https://t.co/v4kho3FXmq" +04/20/2018,Musicians,@CalvinHarris,RT @DUALIPA: Catch @CalvinHarris and I on The Graham Norton Show TONIGHT on BBC One from 22:30! #OneKiss ❤️ https://t.co/b1KXZDZ15q +04/20/2018,Musicians,@CalvinHarris,RT @Ingrosso: @CalvinHarris @halsey Sick remix +04/20/2018,Musicians,@CalvinHarris,"RT @KDariiidah: 🚀🚀🚀🚀 + +@CalvinHarris is so legit. https://t.co/4mLg2apESs" +04/20/2018,Musicians,@CalvinHarris,RT @17xlm: .@CalvinHarris just keeps dropping banger after banger. 💥💥 https://t.co/7RGNCnM5AI +04/20/2018,Musicians,@CalvinHarris,😀 https://t.co/qMMvF4LLmU +04/20/2018,Musicians,@CalvinHarris,@Ingrosso @halsey Thank you and happy birthday !!!! +04/20/2018,Musicians,@CalvinHarris,"Brand new @halsey remix out now! + +Apple Music - https://t.co/iT3H6UQd0z + +Spotify - https://t.co/to8ziic4Or + +iTunes… https://t.co/GyK7jgGpyP" +04/20/2018,Musicians,@CalvinHarris,"RT @billboarddance: .@CalvinHarris teases killer remix of @Halsey's ""Alone"" feat. @StefflonDon https://t.co/QUMAx4saRI https://t.co/VL1dsMh…" +04/19/2018,Musicians,@CalvinHarris,RT @dancingastro: Welcome to Calvin Harris season 🔥 https://t.co/oyO9snYVaj +04/18/2018,Musicians,@CalvinHarris,My remix of @halsey Alone w/ @stefflondon is out this Friday ! https://t.co/DMggdFPS8z +04/17/2018,Musicians,@CalvinHarris,Ah thank you boss !! https://t.co/uJNgy4Eoy1 +04/17/2018,Musicians,@CalvinHarris,And thank U once again ! @BBMAs https://t.co/rojdEsZJOz +04/17/2018,Musicians,@CalvinHarris,Thank u very much @BBMAs https://t.co/py2oZFY1tN +04/17/2018,Musicians,@CalvinHarris,I can’t find the old man emoji https://t.co/Eeumaq3CkL +04/16/2018,Musicians,@CalvinHarris,🌞🌞🌞 https://t.co/ETaMIpZ8Zl https://t.co/oDVtt2hV5f +04/16/2018,Musicians,@CalvinHarris,RT @MTV: Pro-tip: Start off your day by blasting @DUALIPA x @CalvinHarris' #OneKiss 😘 https://t.co/TStab3qY5g +04/15/2018,Musicians,@CalvinHarris,@brothersosborne https://t.co/jaQRJC6Zxq +04/12/2018,Musicians,@CalvinHarris,RT @DUALIPA: This is craaaaazyyy!! Lets keep this up https://t.co/LCDMBzvi3w ❤️❤️ https://t.co/EBpVQwDtbp +04/11/2018,Musicians,@CalvinHarris,"Calvin Harris Radio is on Apple Music now too 🤠 +https://t.co/jn8yzokFCl" +04/11/2018,Musicians,@CalvinHarris,Wowwww thank you !!! https://t.co/bqmw1DrSaY +04/11/2018,Musicians,@CalvinHarris,2 songs i wish were on streaming platforms Cevin fisher burning up original mix & Snoop Dogg raphael saadiq midnight love +04/10/2018,Musicians,@CalvinHarris,Sharing link w my friends 😁 https://t.co/R7RdJLAdMe +04/10/2018,Musicians,@CalvinHarris,RT @ConnorBrosnan: @CalvinHarris @DUALIPA safe for releasing probably the biggest banger of the year❤️ +04/10/2018,Musicians,@CalvinHarris,RT @emilyhoban95: Well @CalvinHarris & @DUALIPA song is a little summer sizzler +04/10/2018,Musicians,@CalvinHarris,RT @Louisemoran30: Nice one @CalvinHarris and @DUALIPA I love it! ⭐️💕🎼🎤📀😘 +04/09/2018,Musicians,@CalvinHarris,"Calvin Harris Radio just updated + +New tracks from @djsnake @Jauzofficial @toddedwards3000 @DUALIPA & me 🤠 + +https://t.co/IxlDxR7ehB" +04/09/2018,Musicians,@CalvinHarris,Listen to One Kiss with @DUALIPA on @AppleMusic https://t.co/P94kZJ8FnD +04/09/2018,Musicians,@CalvinHarris,Lol https://t.co/6BVkgXPZFc +04/08/2018,Musicians,@CalvinHarris,RT @_patrii26: Just in love with this song🔥🔥🇮🇹 @CalvinHarris @DUALIPA this is insane man! https://t.co/zVASG6Tjfr +04/08/2018,Musicians,@CalvinHarris,RT @clockworkbea: Listening to one kiss by @CalvinHarris and @DUALIPA I’m so obsessed! +04/08/2018,Musicians,@CalvinHarris,RT @charewall: Obsessin' over ONE KISS 💋 @CalvinHarris @DUALIPA it's on repeat 🔥 https://t.co/vOwlgMMs5i +04/08/2018,Musicians,@CalvinHarris,"RT @_MJCN_: The track ""One kiss"" by @CalvinHarris & @DUALIPA is fire 🔥" +04/08/2018,Musicians,@CalvinHarris,RT @K3llzie: Little bit obsessed with One Kiss 😍 @DUALIPA @CalvinHarris +04/08/2018,Musicians,@CalvinHarris,RT @sarahmac_ox: in love with @DUALIPA and @CalvinHarris new tune; one kiss 💋 +04/08/2018,Musicians,@CalvinHarris,"Thank u +Refreshment is my primary aim ! https://t.co/10xf1rfBCe" +04/08/2018,Musicians,@CalvinHarris,RT @Too8oo: @DUALIPA and @CalvinHarris made a bop. One Kiss is my favorite song right now and I can't stop playing that song. What a great… +04/08/2018,Musicians,@CalvinHarris,RT @Found_Squilly: @DUALIPA x @CalvinHarris 👀🔥🔥🔥 +04/08/2018,Musicians,@CalvinHarris,"RT @ojas_gupta_: Was waiting so much for a new song to obsess with , one kiss ♥️♥️ thank you @CalvinHarris @DUALIPA" +04/08/2018,Musicians,@CalvinHarris,RT @vicctorlcc: I CAN’T STOP LISTENING ONE KISS @CalvinHarris and @DUALIPA 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +04/08/2018,Musicians,@CalvinHarris,@jonjace24 @luiferarancibia @MrDkbza @samsheffer @rihanna I wrote the lyrics 🙃 +04/07/2018,Musicians,@CalvinHarris,RT @lifeofrickey: ONE KISS IS MY MOOD😭😭🙌 https://t.co/EKurjMHwzZ +04/07/2018,Musicians,@CalvinHarris,RT @DrewChadhall: That new @CalvinHarris @ @DUALIPA my goodness 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥💃💃💃💃💃💃💃💃💃💃💃💃 +04/07/2018,Musicians,@CalvinHarris,RT @arsenalking7: One kiss 🔥🔥🔥🔥 @CalvinHarris @DUALIPA +04/07/2018,Musicians,@CalvinHarris,RT @J18Jordan: Ok I am now hooked on the song “one kiss” @CalvinHarris @DUALIPA you done well #tune +04/07/2018,Musicians,@CalvinHarris,RT @fxckdelano: One kiss is so good tho @CalvinHarris @DUALIPA +04/07/2018,Musicians,@CalvinHarris,"RT @amazonmusic: #JustAsk, ""Alexa, play the Song of the Day"" & stream the new collab from @CalvinHarris & @DUALIPA, ""One Kiss"" https://t.co…" +04/07/2018,Musicians,@CalvinHarris,RT @DUALIPA: Ofcourse!! We’re very excited cc @CalvinHarris 💕💥 https://t.co/TsXrGHJkBV +04/07/2018,Musicians,@CalvinHarris,👋 https://t.co/RbWLGPV0CX +04/07/2018,Musicians,@CalvinHarris,RT @DuaReport: Check out the #OneKiss Snapchat filter available now! @DUALIPA @CalvinHarris 💋💥 https://t.co/8DZPAMNwsR +04/06/2018,Musicians,@CalvinHarris,"RT @Shazam: #OneKiss by @CalvinHarris & @DUALIPA will make you dance till your heart's content 💙💃🕺 + +Listen to our Song of the Day on @Appl…" +04/06/2018,Musicians,@CalvinHarris,"One Kiss w @DUALIPA is out today! Thank you @Spotify !!! +https://t.co/9OuOUKFRR2 https://t.co/LIRB3HgQbJ" +04/06/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS @CalvinHarris 🍒💥 https://t.co/sPsNU7FSWr +04/06/2018,Musicians,@CalvinHarris,"Listen to the world premiere of “One Kiss"" on @iHeartRadio https://t.co/TCq08fKwWa https://t.co/qwOZUy409B" +04/06/2018,Musicians,@CalvinHarris,😁❤️ https://t.co/PJe7JGl76M +04/06/2018,Musicians,@CalvinHarris,RT @BBCR1: Tonight's Hottest Record for @AnnieMac goes to the huge collab @CalvinHarris & @dualipa. Is this going to be big or what?! 😱🌶🌶🌶… +04/06/2018,Musicians,@CalvinHarris,Listen to One Kiss on @TIDAL !  https://t.co/Y4IMapPJUL +04/06/2018,Musicians,@CalvinHarris,Get #OneKiss with @DUALIPA on @AmazonMusic now: https://t.co/GbmwsBXPOr +04/06/2018,Musicians,@CalvinHarris,RT @Melvin_SK_: One Kiss by @CalvinHarris and @DUALIPA is the summer song I always wanted! 😍🍒🥥💖 +04/06/2018,Musicians,@CalvinHarris,"RT @AppleMusic: It's a bop. +Listen to @CalvinHarris x @DUALIPA's #OneKiss. +https://t.co/Fwz0Qbe85O" +04/06/2018,Musicians,@CalvinHarris,RT @harday: Listening to @CalvinHarris @DUALIPA #OneKiss for the 46th time this morning like https://t.co/4KzqdTr5jC +04/06/2018,Musicians,@CalvinHarris,RT @djalice1075: That new @DUALIPA x @CalvinHarris song though 🔥 +04/06/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS w/ @CalvinHarris is out!! I hope this makes you wanna dance till your hearts content xxx https://t.co/5vLjJSt9wm http… +04/06/2018,Musicians,@CalvinHarris,RT @capliverpool: When you listen to the new @CalvinHarris and @DUALIPA 🔥😳😍 https://t.co/sM9298QrGz +04/06/2018,Musicians,@CalvinHarris,RT @__Avion__: This new @DUALIPA x @CalvinHarris is a fucking TUNE +04/06/2018,Musicians,@CalvinHarris,RT @itsAliStone: I’m loving “One Kiss” by @CalvinHarris & @DUALIPA 🙌🏻 let the House vibes in!!!! +04/06/2018,Musicians,@CalvinHarris,"RT @KarlaCardenas08: Thank you @CalvinHarris & @DUALIPA for blessing us with One Kiss + +2 of my absolute favs, I knew it’d be amaze 😍" +04/06/2018,Musicians,@CalvinHarris,RT @samuel_rider1: On repeat 😍 @CalvinHarris is a God of sound and @DUALIPA is an angel of vocals in this one. Don’t DM me #OneKissOutNow h… +04/06/2018,Musicians,@CalvinHarris,RT @waldosoboojie: OH MY GOD!! @DUALIPA @CalvinHarris WHAT DID YOU GUYS CREATE!!? THIS IS A BANGER! I LOVE IT 💥💥💥 https://t.co/sgFAcHdosE +04/06/2018,Musicians,@CalvinHarris,RT @zookepermusic: @CalvinHarris @DUALIPA you are a fuckin madman this record is so good goddamn +04/06/2018,Musicians,@CalvinHarris,RT @chemis_523: @DUALIPA @CalvinHarris best song I’ve heard in 2018 🤟🏻🤟🏻 https://t.co/6dXnYtYCHG +04/06/2018,Musicians,@CalvinHarris,RT @daniiiizle: @CalvinHarris @DUALIPA you guys did it 🤩🤩🤩 https://t.co/wXuXkA1wlw +04/06/2018,Musicians,@CalvinHarris,"ONE KISS w/ @DUALIPA out now ! + +iTunes - https://t.co/krYlw0IF0z + +Apple Music - https://t.co/P94kZJ8FnD + +Spotify -… https://t.co/rdUpCmw6Qn" +04/06/2018,Musicians,@CalvinHarris,https://t.co/P94kZJ8FnD +04/06/2018,Musicians,@CalvinHarris,RT @RaveenaSharma19: @CalvinHarris @DUALIPA One Kiss is everything & more than I expected it to be ! New Fav 💯💃🏻💋🙌🏻 +04/06/2018,Musicians,@CalvinHarris,RT @theknocks: oh fuck yeah @DUALIPA and @CalvinHarris coming with the eaaarly 90s house vibe +04/06/2018,Musicians,@CalvinHarris,"RT @itsmeluizfelipe: One kiss is all it takes, Fallin' in love with me @DUALIPA @CalvinHarris https://t.co/x2iX0uySgu" +04/06/2018,Musicians,@CalvinHarris,🙏🙏🙏❤️❤️❤️ https://t.co/31lJ45KG48 +04/05/2018,Musicians,@CalvinHarris,"🤠🤠🤠 +Presave here : +https://t.co/UjLPmsGEqu https://t.co/yhEQzTCIkg" +04/03/2018,Musicians,@CalvinHarris,https://t.co/UjLPmsGEqu +04/02/2018,Musicians,@CalvinHarris,"Soon! +@DUALIPA +Presave here +https://t.co/pVU0dHTrzQ https://t.co/fWCcnHekjv" +03/30/2018,Musicians,@CalvinHarris,"New record coming very soon . . . +Presave on Spotify here +https://t.co/O89pwabIGx" +03/27/2018,Musicians,@CalvinHarris,Lol exactly https://t.co/HKjHozHcts +03/27/2018,Musicians,@CalvinHarris,Whatever do u mean ? https://t.co/wfsNswl7Tl +03/27/2018,Musicians,@CalvinHarris,☄️☄️☄️ https://t.co/hQA9Aj7kEO +03/26/2018,Musicians,@CalvinHarris,@GrooveArmada Legend +03/21/2018,Musicians,@CalvinHarris,😁 https://t.co/9GtxmMYJfJ +03/20/2018,Musicians,@CalvinHarris,"Calvin Harris Radio updated 🏂 + +https://t.co/JXCVPWCqVC" +03/19/2018,Musicians,@CalvinHarris,😭 https://t.co/F4XufsiXys +03/17/2018,Musicians,@CalvinHarris,❤️ https://t.co/snSF7IZlUW +03/13/2018,Musicians,@CalvinHarris,"RT @billboarddance: .@CalvinHarris shares new Spotify playlist featuring @virtual_self, @FatboySlim & more https://t.co/kxhIWpn9lI https://…" +03/10/2018,Musicians,@CalvinHarris,@Ingrosso Big tune +03/09/2018,Musicians,@CalvinHarris,Follow my new playlist on Spotify to hear what I’m listening to .... this week tracks by @virtual_self @MarcKinchen… https://t.co/ncFYe6ApGQ +03/09/2018,Musicians,@CalvinHarris,Omnia Las Vegas tonight for my first Vegas show of the year ! 😵 +02/28/2018,Musicians,@CalvinHarris,Big tune https://t.co/l0OdqpbL7W +02/27/2018,Musicians,@CalvinHarris,"RT @CalvinHarris: NUH READY NUH READY +W/ @PARTYNEXTDOOR +Spotify https://t.co/JnkHHvDcn1 +Apple Music https://t.co/YhrOQllf05 +Video https://t…" +02/23/2018,Musicians,@CalvinHarris,Slide is 1 year old today ! 🎂🎂🎂 https://t.co/OwhesrXWZj +02/22/2018,Musicians,@CalvinHarris,🚨🚨🚨 https://t.co/PJDclqDxAf +02/20/2018,Musicians,@CalvinHarris,@kaskade That’s great i might start using that one +02/17/2018,Musicians,@CalvinHarris,Thanks Henry! https://t.co/tcBIw4pKuh +02/16/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/o5L4Uo691r +02/16/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/zByVNYORaZ +02/14/2018,Musicians,@CalvinHarris,RT @XXL: This video is extremely trippy https://t.co/rbGNpBV2sE +02/14/2018,Musicians,@CalvinHarris,2 songs on this list?!?! I’ve peaked https://t.co/rfQVnucj5W +02/14/2018,Musicians,@CalvinHarris,Thank you @AppleMusic ! Nuh Ready Nuh Ready is in the #BestoftheWeek playlist https://t.co/4OnyuSVFeK +02/14/2018,Musicians,@CalvinHarris,🙌❤️ https://t.co/KC065P2adM +02/11/2018,Musicians,@CalvinHarris,I love Through the keyhole with Keith lemon +02/09/2018,Musicians,@CalvinHarris,Thank you Annie !! https://t.co/VSAV7LZBMr +02/09/2018,Musicians,@CalvinHarris,"“Nuh Ready Nuh Ready” with @PARTYNEXTDOOR available on @Spotify !!!!!!! #NewMusicFriday +https://t.co/JnkHHvDcn1 https://t.co/JyMf7PRoCw" +02/09/2018,Musicians,@CalvinHarris,❤️ https://t.co/jfC1HsCzWJ +02/09/2018,Musicians,@CalvinHarris,🙏 https://t.co/iMztY4QxrE +02/09/2018,Musicians,@CalvinHarris,Thank you Pete ! https://t.co/TjmahhE1pw +02/09/2018,Musicians,@CalvinHarris,🇬🇧🇬🇧🇬🇧 https://t.co/TdakHWOFSq +02/09/2018,Musicians,@CalvinHarris,Thank u vevo ❤️ https://t.co/vuL6mnhCnz +02/09/2018,Musicians,@CalvinHarris,Thank you!!! https://t.co/IqQ34Mbptu +02/09/2018,Musicians,@CalvinHarris,Thank you!!! https://t.co/ORkZXXBuPJ +02/08/2018,Musicians,@CalvinHarris,"NUH READY NUH READY +W/ @PARTYNEXTDOOR +Spotify https://t.co/JnkHHvDcn1 +Apple Music https://t.co/YhrOQllf05 +Video… https://t.co/v8zOuFBsIO" +02/08/2018,Musicians,@CalvinHarris,https://t.co/JnkHHvDcn1 +02/08/2018,Musicians,@CalvinHarris,https://t.co/eoESolIHSJ +02/08/2018,Musicians,@CalvinHarris,https://t.co/wuvlmrR4Wc +02/08/2018,Musicians,@CalvinHarris,RT @billydakiduk: OMFG new @CalvinHarris @partynextdoor just hit the inbox and it's ABSOLUTE FIRE!!!! 🔥🔥🔥 +02/08/2018,Musicians,@CalvinHarris,RT @TODDLAT: Final eve of holdin it for @DJTarget on @1Xtra and gonna be chattin to @CalvinHarris about lots of random ish .. 📻🤷🏼‍♂️ .. 7pm… +02/08/2018,Musicians,@CalvinHarris,"RT @Beats1: 🚨 BREAKING NEW MUSIC! 🚨 +@CalvinHarris joins @zanelowe to talk 2018 + the new track #NuhReadyNuhReady! Listen: +11AM LA / 2PM NYC…" +02/08/2018,Musicians,@CalvinHarris,https://t.co/YhwljQaF9C +02/06/2018,Musicians,@CalvinHarris,"No sir, a whole new experience ⬆️ https://t.co/cFrpJ8z9Ed" +02/06/2018,Musicians,@CalvinHarris,"Thursday +Nuh Ready Nuh Ready +w/ @partynextdoor https://t.co/16EcGeDpE8" +02/04/2018,Musicians,@CalvinHarris,https://t.co/ihrRvdAe3Y +01/31/2018,Musicians,@CalvinHarris,"Now my beard is gone, the experiment completed and I can move forward with 2018! +God bless and thank you for your support !!!" +01/31/2018,Musicians,@CalvinHarris,"But unfortunately this weekend I learned that even a new beard has its limitations. +On Sunday I lost out to the in… https://t.co/7hAtpFkCBq" +01/31/2018,Musicians,@CalvinHarris,"Last year I grew a big ol beard in order to be taken seriously by the Grammys as a producer. +It worked to an exten… https://t.co/05GyZV3fWk" +01/27/2018,Musicians,@CalvinHarris,Amusement arcade in Moscow +01/26/2018,Musicians,@CalvinHarris,Eternally grateful +01/18/2018,Musicians,@CalvinHarris,In 2018 movin on from Funk Wav sound thank u for joining me on my musical journey haha +01/17/2018,Musicians,@CalvinHarris,Thank u!! https://t.co/Qr06PBIQqG +01/17/2018,Musicians,@CalvinHarris,@enterwboldness Unbelievable work x +01/17/2018,Musicians,@CalvinHarris,Thank you Danny ! X https://t.co/n0Yhu5CjqD +01/17/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/mMV3ljdZm1 +01/17/2018,Musicians,@CalvinHarris,Belter x https://t.co/iMAZCWuurf +01/17/2018,Musicians,@CalvinHarris,Happy birthday to you too my friend 🎉🎉🎉 https://t.co/UK2vyoPXBK +01/17/2018,Musicians,@CalvinHarris,"Thank you for your birthday wishes +Been blessed with another year on earth !!! +Thank you universe !!!!!" +01/13/2018,Musicians,@CalvinHarris,Virtual self ghost voices is an absolute beast of a tune +01/13/2018,Musicians,@CalvinHarris,Inside the place +01/07/2018,Musicians,@CalvinHarris,Hope everybody is enjoying their Sunday ❤️ +07/01/2018,Musicians,@DuaLipa,I KNEW THIS WOULD BE A GREAT SONG TO PLAY AFTER THE SHOW!! LOVE LOVE LOVE https://t.co/zDWGOzT6qu +07/01/2018,Musicians,@DuaLipa,We are a lil fam and i’m so lucky to have them https://t.co/jVDviBbLPV +07/01/2018,Musicians,@DuaLipa,RT @clairo: san francisco when i tell u this venue is big as hell.. it is big as hell +06/30/2018,Musicians,@DuaLipa,"RT @L0STlNDUA: my friend just sent me this from london! it makes me so happy seeing you everywhere, i’m so proud of you, have fun tonight a…" +06/30/2018,Musicians,@DuaLipa,"Thank you San Diego. Last night was the ultimate bounce back. Thank you for so much fun! The self-titled tour, 29.0… https://t.co/1D7OLKK5Ju" +06/30/2018,Musicians,@DuaLipa,San Diego pre-show 🖤 https://t.co/BIiMQSitLh +06/29/2018,Musicians,@DuaLipa,RT @ChartsDuaLipa: “One Kiss” has already sold over 3.5 million copies worldwide! Huge congrats @CalvinHarris & @DUALIPA. https://t.co/5C5H… +06/29/2018,Musicians,@DuaLipa,@heavenforgaves There are two more dates to be added in China but we can’t announce exactly where and what dates un… https://t.co/ULVIfXt8Tz +06/29/2018,Musicians,@DuaLipa,@vanillahalsey No m&g just a show rescheduling x +06/29/2018,Musicians,@DuaLipa,@aworldaIone No i’ll be doing some radio shows in the US then xx +06/29/2018,Musicians,@DuaLipa,Rescheduled Denver date xx https://t.co/MRxzYwB4g3 +06/29/2018,Musicians,@DuaLipa,"I love you guys. Thank you for being so caring, kind and sweet. Goodnight xx" +06/29/2018,Musicians,@DuaLipa,@tuliplipa @hotlightsiz It sucks but the painkillers help!! +06/29/2018,Musicians,@DuaLipa,@hotlightsiz Thanks iz i’ll try that tonight. Ive seen a doctor too and hopefully with your help and his I can go b… https://t.co/SES3JNyhzf +06/29/2018,Musicians,@DuaLipa,I can’t hear very well in my right ear due to the ear infection but ive been put on some medication that should hop… https://t.co/6Dgc4iYaqe +06/29/2018,Musicians,@DuaLipa,After a whole day in bed I went out on a sunset hike in Arizona and it was wonderful. 🌵🏜🌄💕 https://t.co/jO4mUidqt9 +06/28/2018,Musicians,@DuaLipa,❤️❤️❤️❤️ https://t.co/7JcnTn2ttX +06/27/2018,Musicians,@DuaLipa,No but now that im in bed for a couple days I would love some recommendations xx https://t.co/VfgtQQDaVq +06/27/2018,Musicians,@DuaLipa,With the prettiest girl @clairo ☁️ https://t.co/dOffyhAxAZ +06/27/2018,Musicians,@DuaLipa,Thank you for all your well wishes and hashtags they mean a lot. Still upset about last night and I wish it didnt i… https://t.co/8o8jsw9Z7R +06/27/2018,Musicians,@DuaLipa,RT @TeenChoiceFOX: Rule 1️⃣: You HAVE to retweet to vote for New Rules by @DuaLipa as #ChoiceSongFemaleArtist! #TeenChoice https://t.co/iDD… +06/27/2018,Musicians,@DuaLipa,RT @TeenChoiceFOX: One vote is all it takes. RETWEET now to vote One Kiss by @CalvinHarris and @DUALIPA for #ChoiceElectronicDanceSong! 😘 #… +06/27/2018,Musicians,@DuaLipa,@sighzach Happy Birthday darling!! Here’s to many more wonderful years! Love always xxx +06/27/2018,Musicians,@DuaLipa,Dua Diary - Atlanta https://t.co/4xezwYCPjh 💕 +06/27/2018,Musicians,@DuaLipa,Denver ❤️ https://t.co/8GCRnsyYkc +06/27/2018,Musicians,@DuaLipa,Somewhere over the rainbow https://t.co/zEAVDsPO2s +06/26/2018,Musicians,@DuaLipa,"My favourite poem. @rupikaur_ you are a force. It is truly all about togetherness, love, friends and family. What i… https://t.co/CUVY8L4V3O" +06/26/2018,Musicians,@DuaLipa,GRACIAS ESPAÑA ❤️❤️❤️❤️ https://t.co/SlxmqmzAVi +06/26/2018,Musicians,@DuaLipa,💓💓💓💓💓 https://t.co/NTYBAsTVoz +06/25/2018,Musicians,@DuaLipa,RT @vmagazine: Catch a glimpse inside @DUALIPA's V113 cover signing that shut down Soho. https://t.co/8l6lI2CttL https://t.co/9KtO8u2Jxf +06/25/2018,Musicians,@DuaLipa,"RT @DeezerFR: Gagnez vos places pour assister à la #DeezerSession de @DUALIPA le 4 juillet à Paris ➡️ https://t.co/HXKJBQrYMt 💃 +🎶 Concours…" +06/25/2018,Musicians,@DuaLipa,"Thank you Minneapolis, The self-titled tour, 24.06.2018 💖💥 // shot by Pixie Levinson https://t.co/WzQfSRw6Yk" +06/25/2018,Musicians,@DuaLipa,RT @dlipanews: Dua Lipa performing in Minneapolis tonight! (via huntr.elijah) https://t.co/GthjDXnr83 +06/25/2018,Musicians,@DuaLipa,RT @beech_lo: BIG MOOD @DUALIPA https://t.co/RgpYvbLwBT +06/25/2018,Musicians,@DuaLipa,My heart ❤️❤️❤️❤️❤️ https://t.co/jt0SjadGEQ +06/25/2018,Musicians,@DuaLipa,LOVE YOU GUYS! Tonight was sooo much fun! 💕💕💕 https://t.co/XstlLfGPAL +06/24/2018,Musicians,@DuaLipa,RT @CalvinHarris: Yes I’m Scottish but I don’t care the legend Harry Kane picked our song hahahahaha https://t.co/r0JclobgzN +06/24/2018,Musicians,@DuaLipa,Haaaa legend https://t.co/MZ2qVXt5eZ +06/24/2018,Musicians,@DuaLipa,We’ve released some extra tickets for the show tonight Minneapolis!! Come down after pride if you wanna party 💗💗 +06/24/2018,Musicians,@DuaLipa,"RT @henrywinter: ""One Kiss by Calvin Harris and Dua Lipa..."" Kane's choice after a Brazilian reporter tells him top player with a hat-trick…" +06/24/2018,Musicians,@DuaLipa,Ballerina batme for B96 Summer Bash 💗⚔️💗 shot by Pixie Levinson https://t.co/03CNVtkxrg +06/23/2018,Musicians,@DuaLipa,RT @PopCrave: “One Kiss” by @CalvinHarris & @DUALIPA now has over 300 MILLION streams on Spotify. This is Calvin’s tenth & Dua’s fourth son… +06/23/2018,Musicians,@DuaLipa,RT @deezeruk: Be in with a chance of winning a trip to Paris to see @DUALIPA perform an intimate Deezer Session on July 4th! Find out more… +06/23/2018,Musicians,@DuaLipa,RT @Spotify: When @dualipa met @shawnmendes... 🚗💚 https://t.co/Nv9axFQ410 +06/23/2018,Musicians,@DuaLipa,So sick!!! https://t.co/GEr6hBwaNm +06/23/2018,Musicians,@DuaLipa,Stopping traffic w @diplo in Chi https://t.co/68HknH08Ys +06/22/2018,Musicians,@DuaLipa,ABSOLUTELY!!!! My loves my heart my fam! Thank you xxxxx https://t.co/KcyrVHaTBG +06/22/2018,Musicians,@DuaLipa,My @youtubemusic fam holding down the fort in London town!! ITS ALL HERE ❤️❤️ @YouTube ❤️❤️ https://t.co/g7MmLycMcj +06/22/2018,Musicians,@DuaLipa,RT @DeezerDE: .@DUALIPA Fans aufgepasst! Wir schicken einen glücklichen Gewinner plus Begleitung nach Paris zur exklusiven #DeezerSession a… +06/22/2018,Musicians,@DuaLipa,Okkkkkkk chef!!! A BOOK! A COOK BOOK! the stuff we’d dream about ☁️☁️☁️☁️☁️☁️☁️☁️☁️ https://t.co/A6pb8BFBl5 +06/22/2018,Musicians,@DuaLipa,@frangilana Thank you!!! And Happy Birthday gorgeous girl have the best most extra day in the world! Big kisses xxxx +06/22/2018,Musicians,@DuaLipa,People of Tomorrow I'm ready for you! 🦋 @tomorrowland https://t.co/Zc30JDFYor +06/22/2018,Musicians,@DuaLipa,KISS 98.5 Radio show in Buffalo NY 💓 thank you xx // shot by Pixie Levinson https://t.co/c3gIV6t5eG +06/21/2018,Musicians,@DuaLipa,Melania makes first public appearance in 27 days... she shouldve stayed in hiding longer we probably would’ve liked her better that way. +06/21/2018,Musicians,@DuaLipa,#Chicago! I’m playing @B96Chicago #SummerBash June 23rd! Grab your tickets at the Allstate Arena box office and… https://t.co/YLkTXuiFve +06/21/2018,Musicians,@DuaLipa,"RT @vmagazine: Greeted by more than a thousand fans, V113 cover star @DUALIPA took over SoHo for a signing that Mercer Street will remember…" +06/21/2018,Musicians,@DuaLipa,More pix from pix @vmagazine ✨ https://t.co/WZsxNz7KiV +06/21/2018,Musicians,@DuaLipa,RT @headlineplanet: .@CalvinHarris & @DUALIPA's One Kiss is headed for the Top 10 at pop radio https://t.co/EgciD0uoEU +06/21/2018,Musicians,@DuaLipa,RT @lipasrules: @DUALIPA https://t.co/HzVZj4ruL6 +06/21/2018,Musicians,@DuaLipa,RT @renanwho: @DUALIPA I found these here: https://t.co/0yEwBB30hl https://t.co/iK2dSKHBaM +06/21/2018,Musicians,@DuaLipa,RT @cruelworId: @DUALIPA https://t.co/pN5xp3Cjsn +06/21/2018,Musicians,@DuaLipa,RT @MELLETMAGIC: @DUALIPA if you’re calling from outside the US add +1 before the phone number and say a random state https://t.co/z08shr4i… +06/21/2018,Musicians,@DuaLipa,RT @clairo: redownloaded twitter app to say that there are still many families who have already been separated and children that don’t know… +06/21/2018,Musicians,@DuaLipa,If there are any other ways to send help to those families please comment below and i’ll RT onto my feed. ❤️ +06/21/2018,Musicians,@DuaLipa,Everything thats happening in the world is breaking my heart. Children being seperated from their parents is the mo… https://t.co/MQ0pKJX2Ap +06/21/2018,Musicians,@DuaLipa,@godknowsilost Happy Birthday sugar pie xxxx +06/21/2018,Musicians,@DuaLipa,@L0STlNDUA @vmagazine Absolutely x +06/21/2018,Musicians,@DuaLipa,@perfectlplaces @vmagazine Not for a little while but im working on it babe! I’m really excited xxx +06/21/2018,Musicians,@DuaLipa,💋💋💋💋 https://t.co/0EJ7FLjKSx +06/21/2018,Musicians,@DuaLipa,Yesterday was so much fun! Thank you to my @vmagazine fam for giving me the chance to get to see my bbys in NYC! So… https://t.co/42F5n8YHQU +06/20/2018,Musicians,@DuaLipa,An angel and a light. Thank you for having me as a part of your world. You mean a lot to me xxx https://t.co/keuS7aXwmA +06/20/2018,Musicians,@DuaLipa,KRZ Summer Smash // 📸 Pixie Levinson https://t.co/7iz7TOmNx7 +06/20/2018,Musicians,@DuaLipa,Looking gorgey! See you soon xx https://t.co/OGcIB0U342 +06/20/2018,Musicians,@DuaLipa,Come meet me at 11 Mercer in SoHo today from 4-5:30pm to get your signed copy of my @vmagazine cover! AND CELEBRATI… https://t.co/lpiaguKoJL +06/19/2018,Musicians,@DuaLipa,@dualipanoticias @vmagazine This isnt correct. This whole segment is about the journalist who wrote the piece. Not about me. X +06/19/2018,Musicians,@DuaLipa,"RT @vmagazine: To clarify, admittance to meet @dualipa tomorrow is free! Special editions will be for sale, which will also come with a tot…" +06/19/2018,Musicians,@DuaLipa,@getalilhigh @begsforyou That whole segment is what the journalist said at the top of the article +06/19/2018,Musicians,@DuaLipa,I would never agree to anything like this so i have my team finding out but im sure its just a miscommunication. Th… https://t.co/8l8FAgpVT4 +06/19/2018,Musicians,@DuaLipa,@sighzach I dont know anything about this? Im doing this all for free. I don’t know who said any of this but i don’t think its true +06/19/2018,Musicians,@DuaLipa,RT @vmagazine: What @DUALIPA's success says about the immigrant dream. https://t.co/4RRQtuTT4Q https://t.co/bXgDsEUhSx +06/19/2018,Musicians,@DuaLipa,My bro @ActionBronson and I after his show in NYC. Come see us both this summer at Sunny Hill festival and in the w… https://t.co/Fej9XZc1ib +06/19/2018,Musicians,@DuaLipa,@angelsvices I was literally just at MoMA idk what im meant to explain +06/19/2018,Musicians,@DuaLipa,"RT @ChartsDuaLipa: “One Kiss” has now reached #1 on iTunes in 60 countries! Congrats @DUALIPA & @CalvinHarris, you did that. 🔥🌎 https://t.c…" +06/19/2018,Musicians,@DuaLipa,RT @sighzach: Dula Peep is finally doing IDGAF promo in NYC 😍✊❤️ https://t.co/cWuuRTnxpn +06/18/2018,Musicians,@DuaLipa,RT @vmagazine: 2 days... @DUALIPA https://t.co/Q2eOI9LTeg +06/18/2018,Musicians,@DuaLipa,WOW!!!! 😭😭😭 https://t.co/SOp2a0U5cH +06/18/2018,Musicians,@DuaLipa,"RT @angelsvices: look at those streams honey!!!!!!! that's insane. also, new rules has over 800 milli streams. damn ma. look at u <3 congr…" +06/18/2018,Musicians,@DuaLipa,Lady birdin’ https://t.co/Cu9irap2AN +06/18/2018,Musicians,@DuaLipa,Seee you sooon!!! ❤️❤️❤️❤️ https://t.co/DnKl9OwRuh +06/18/2018,Musicians,@DuaLipa,Last night at Kiss108 shot by Pixie Levinson ✨ https://t.co/Z8q4nQN3A5 +06/18/2018,Musicians,@DuaLipa,RT @jamietworkowski: To those with no pictures to post. To those recovering from his absence. To those recovering from his presence. To tho… +06/17/2018,Musicians,@DuaLipa,ZACH!!! 😭❤️ thank you for your kind words. Always! I’m proud of all of us together xxx https://t.co/2lNBYK5YRQ +06/17/2018,Musicians,@DuaLipa,"RT @dukagjinlipa: @caIIofduaty @DUALIPA We are looking into creating charter flights for the festival. 🤞 +Hopefully we can get a budget air…" +06/17/2018,Musicians,@DuaLipa,@caIIofduaty @dukagjinlipa Flights are really expensive because there is so rarely a direct flight. Hopefully soon… https://t.co/00X6ORb5AR +06/17/2018,Musicians,@DuaLipa,Wow thank you for the support! Cc @dukagjinlipa https://t.co/R7O0ck92d3 +06/17/2018,Musicians,@DuaLipa,Love it sidney xx https://t.co/dX8R6jq1TS +06/17/2018,Musicians,@DuaLipa,RT @vmagazine: Come meet V113 cover star @DUALIPA at V Magazine this Wednesday from 4 - 5:30pm! Get to 11 Mercer early because this signing… +06/17/2018,Musicians,@DuaLipa,"RT @MikeAdamOnAir: As an #Albanian, this makes me so, so proud... #DuaLipa and father created a festival for Kosovo. I love this. And on an…" +06/17/2018,Musicians,@DuaLipa,"RT @TwitterMoments: So, @dualipa and daddy Lipa @dukagjinlipa have created their own festival in Kosovo this summer. https://t.co/jP5VFBrnK2" +06/17/2018,Musicians,@DuaLipa,Tonight at KTUPhoria // shot by Pix 💕 https://t.co/TI8z9VAjj4 +06/17/2018,Musicians,@DuaLipa,THIS IS CRAZY! WOW! Thank you bb 💜💜💜 https://t.co/TKs0xOgrnE +06/17/2018,Musicians,@DuaLipa,Haaa the second half of this https://t.co/1fM2gtySIK +06/17/2018,Musicians,@DuaLipa,Such a surreal moment in my life https://t.co/4PrlKwbl6O +06/17/2018,Musicians,@DuaLipa,Beyonce is my favourite rapper +06/16/2018,Musicians,@DuaLipa,I just watched Sting perform. I wish I could frame that moment. It was an experience. +06/16/2018,Musicians,@DuaLipa,@MNEK Thank you bb! Miss u xxx +06/16/2018,Musicians,@DuaLipa,Thanks for coming to my Ted talk https://t.co/D5t3I4yuIb +06/16/2018,Musicians,@DuaLipa,Francesca Brazzo doing the absolute most https://t.co/abpy5vPumo +06/16/2018,Musicians,@DuaLipa,RT @AgonMaliqi: Giving back to the community back home in #Kosovo. Great job @DUALIPA @dukagjinlipa https://t.co/TNkEn8ubbm +06/16/2018,Musicians,@DuaLipa,Awwwww bby. This is so thoughtful. Thank you ✨✨✨✨ https://t.co/vSszMXxYq2 +06/16/2018,Musicians,@DuaLipa,Sunny Hill is the neighbourhood my parents grew up in Kosova. Its always been home to me and thats why its the name… https://t.co/fJ7Kx4eMe3 +06/16/2018,Musicians,@DuaLipa,I’ll post my full caption about Sunny Hill festival here bc twitter count isnt enough! Tickets on… https://t.co/tI2OSRjg9v +06/16/2018,Musicians,@DuaLipa,Sunny Hill festival is coming this summer to Germia Park!! I’m so excited to head down a few days prior to the fes… https://t.co/qNNF9ORyl2 +06/16/2018,Musicians,@DuaLipa,Thanks bb! Proud of this one ❤️❤️❤️ https://t.co/ChhPgihoeD +06/16/2018,Musicians,@DuaLipa,Nina 💓💓💓💓💓 https://t.co/wpLXc2Ifaq +06/16/2018,Musicians,@DuaLipa,LOVE YOU https://t.co/nraq2jT8eQ +06/16/2018,Musicians,@DuaLipa,Omg i remember when i posted this on twitter and my manager was like “dont panic but someone has leaked a pic from… https://t.co/rYajYDiIdd +06/16/2018,Musicians,@DuaLipa,Obsessed w nyc 💓 https://t.co/p7xKFE5GAr +06/16/2018,Musicians,@DuaLipa,💖 #BLISummerJam shot by Pixie Levinson https://t.co/bYmsYR5Adl +06/16/2018,Musicians,@DuaLipa,4EVER!! https://t.co/QgrvPWchvp +06/16/2018,Musicians,@DuaLipa,Sun in my eyes https://t.co/RnuLMyShuy +06/16/2018,Musicians,@DuaLipa,My bb @itsgracecarter has just released her EP!! Check it out my loves she’s a good one 💓 https://t.co/c4Yt39Zwtw +06/15/2018,Musicians,@DuaLipa,@itsmekaram Beauty queen +06/15/2018,Musicians,@DuaLipa,@tumultuousbrain I gave up babe it was fun for a day but I think im over it hahaha +06/15/2018,Musicians,@DuaLipa,"@lovelikelipa Hey Erin, im sorry you’re not feeling well! I hope you have a super speedy recovery and i’ll get to see you soon 💓💓💓" +06/15/2018,Musicians,@DuaLipa,@builtzara Idk baby a lady did them for me in Atlanta but the gel colour is peeling off ALREADY i cant believe it so i’m mad :( +06/15/2018,Musicians,@DuaLipa,@lovelylonds Wowee congrats hard working gal! Proud of u bb xx +06/15/2018,Musicians,@DuaLipa,@lovelylonds Hi babyyyy +06/15/2018,Musicians,@DuaLipa,@ale_alejandro I havent seen any on my TL really +06/15/2018,Musicians,@DuaLipa,@sighzach NEVER +06/15/2018,Musicians,@DuaLipa,@tragichaIsey Miss you lea xxxx +06/15/2018,Musicians,@DuaLipa,Awww Manu love this. Hope you’re feeling better. Xxx https://t.co/Gt1ywcVojQ +06/15/2018,Musicians,@DuaLipa,Queer Eye season 2. Today should be a national holiday. +06/15/2018,Musicians,@DuaLipa,Congrats bb angel xx https://t.co/zF6DpygpDu +06/15/2018,Musicians,@DuaLipa,@heartednotes I’m so confused maybe i said dual nationality but im not jewish. Where is this from?? +06/15/2018,Musicians,@DuaLipa,Eid Mubarak from our family to yours ❤️✨ +06/15/2018,Musicians,@DuaLipa,2 CUTE!! https://t.co/pychYDmNme +06/15/2018,Musicians,@DuaLipa,Safe to say i’ve never seen anyone throw cheese steaks into the crowd. My bro @ActionBronson killed it in NY tonigh… https://t.co/e3fswVpTgT +06/14/2018,Musicians,@DuaLipa,I like wines from Chateauneuf du Pape 🇫🇷 https://t.co/6shpPY0uUa +06/14/2018,Musicians,@DuaLipa,Wine mum in full effect https://t.co/NZuusStWju +06/14/2018,Musicians,@DuaLipa,An icon of our generation. An outspoken legend. https://t.co/aQ9tkKKvGH +06/14/2018,Musicians,@DuaLipa,Yes all the money goes to the UN foundation to support free & equal - A campaign for LGBTI equality 🌈💋 https://t.co/mYZqy7VJPT +06/14/2018,Musicians,@DuaLipa,🌈 HAPPY PRIDE ANGELS 🌈 we made a lil special pride IDGAF tank top and all proceeds go to united nations foundation… https://t.co/Qg7UZZ9SqV +06/14/2018,Musicians,@DuaLipa,Thank you Orlando!! We ❤️ you! The self-titled tour 13.06.2018 // shot by Pixie Levinson https://t.co/qqafzOJbM0 +06/14/2018,Musicians,@DuaLipa,Thinking of you London on this sad day. A year ago today. We will never forget. Justice for Grenfell. Forever in ou… https://t.co/VoFMxs1ZqK +06/14/2018,Musicians,@DuaLipa,I LOVE THEM!! This is actual goals!!! https://t.co/NfpuJSdR7g +06/13/2018,Musicians,@DuaLipa,That is my name https://t.co/eqEWrecZmX +06/13/2018,Musicians,@DuaLipa,I love the drama with uppercase way too much https://t.co/vPPTuh9mdY +06/13/2018,Musicians,@DuaLipa,Thanks bb xx https://t.co/CkZNMR5aWI +06/13/2018,Musicians,@DuaLipa,⚔️❤️⚔️❤️⚔️ https://t.co/pE4yJ2fP8E +06/13/2018,Musicians,@DuaLipa,LOL ITS IS MY BABY AFTER ALL https://t.co/4TyyTdkLVK +06/13/2018,Musicians,@DuaLipa,HEYOOOOO!!! THIS IS CRAZY!! https://t.co/O8qSEa7DyX https://t.co/ndlyEfpVDn +06/13/2018,Musicians,@DuaLipa,"We mustn’t encourange unkind words and bullying of any form! We must work together to encourage love, kindness and… https://t.co/ZEjlLNLHKp" +06/13/2018,Musicians,@DuaLipa,CRYING!!!! 📀✨✨✨✨ https://t.co/3x6TjCZj8Y +06/13/2018,Musicians,@DuaLipa,Hola Miami!!! We felt so lucky to play in an open-air amphitheatre last night. Felt like our own mini festival. Swe… https://t.co/zcc509xl1v +06/13/2018,Musicians,@DuaLipa,Soundcheck yday in Miami // shot by Pixie Levinson https://t.co/rCwDIYZfBl +06/13/2018,Musicians,@DuaLipa,"RT @dlipanews: .@DUALIPA's debut album 'Dua Lipa' is now certified GOLD in the US, 'IDGAF' is now certified GOLD in the US and 'Blow Your M…" +06/13/2018,Musicians,@DuaLipa,The happiest kid ever!!! https://t.co/9ZlN2060wP +06/13/2018,Musicians,@DuaLipa,I just found out i’m the #1 artist on youtube in the Netherlands 🇳🇱 ❤️ my dutchies I love you! You go hard. Thank you xxxx +06/13/2018,Musicians,@DuaLipa,Omg it was so hot MY KNEES WERE SWEATING!!! Miami you were unbelievable tonight ILY 💓💓 https://t.co/pb5JYvO1So +06/13/2018,Musicians,@DuaLipa,@sighzach Stress over what? +06/12/2018,Musicians,@DuaLipa,No please. Let us not. https://t.co/PlmDf6WCpO +06/12/2018,Musicians,@DuaLipa,For tonights show I need your help. Which song would you prefer to hear? GO 💥 +06/12/2018,Musicians,@DuaLipa,Woweeeee https://t.co/OR12VrdDmg +06/12/2018,Musicians,@DuaLipa,Thank you to all the radio stations that invited me over yesterday to perform for you all! I feel so lucky to get t… https://t.co/FyykI8AdzN +06/12/2018,Musicians,@DuaLipa,Beautiful Anna xx https://t.co/G5dF9Ltrzf +06/12/2018,Musicians,@DuaLipa,Love is the most wonderful thing in the world. Dont be afraid to love with all youve got. When it doesnt go your wa… https://t.co/JlwqiBAe1s +06/12/2018,Musicians,@DuaLipa,Oh my darling I think a bigger fear is allowing yourself to stay around toxic people for too long. You’ll recognise… https://t.co/O0TWYCJLqx +06/12/2018,Musicians,@DuaLipa,"You should keep your friends and loved ones close, trust your gut and go with your instinct. Never let go of the pe… https://t.co/xkDZ0K2gYX" +06/12/2018,Musicians,@DuaLipa,"RT @duadior: ""homesick"" vs ""new rules"" https://t.co/wBfQJDyW6I" +06/12/2018,Musicians,@DuaLipa,I got to meet so many sweethearts today! Love miami 💗💗 https://t.co/Uu3wl9gV0W +06/11/2018,Musicians,@DuaLipa,In Miami in that @NathalieBallout drip 💧 https://t.co/1CdT6j9Lgg +06/11/2018,Musicians,@DuaLipa,LOVE YOU BBYS 💕 +06/11/2018,Musicians,@DuaLipa,@frangilana Youre a special one Nat. You a real one 💕 +06/11/2018,Musicians,@DuaLipa,RT @frangilana: we are such babies!!!!! sticking with u forever sis https://t.co/wpPeeJds1O +06/11/2018,Musicians,@DuaLipa,I’m gonna follow some new people on twitter so put it on my feed who I should follow! Going into an interview but o… https://t.co/Yxm3gSVkxq +06/11/2018,Musicians,@DuaLipa,And I wrote ur tattoo x https://t.co/yAFGslzxHs +06/11/2018,Musicians,@DuaLipa,Omg in Chicago and you guys were so sweet and singing along to Thinking bout you you made me cryyyy!! Such a specia… https://t.co/nj0Z8q73sq +06/11/2018,Musicians,@DuaLipa,Thank you for the memories and the love you are all so special to me ❤️ +06/11/2018,Musicians,@DuaLipa,Ofcourse!!! https://t.co/JCEJ6T51Hf +06/11/2018,Musicians,@DuaLipa,Love you!! That was such a good day https://t.co/aOXTIKg733 +06/11/2018,Musicians,@DuaLipa,@newrulesdua Get well soon 💕 +06/11/2018,Musicians,@DuaLipa,You! I was like “awww cute she wanted me to get my daily potassium intake... they really care for my health” 😝😝😝 https://t.co/XzZD59Ans4 +06/11/2018,Musicians,@DuaLipa,ME! https://t.co/n6rMacVCmR +06/11/2018,Musicians,@DuaLipa,I LITERALLY SPOKE ABOUT THIS AT MY RADIO Q&A TODAY!! R U PSYCHIC https://t.co/WJU6q1LuUY +06/11/2018,Musicians,@DuaLipa,I’m lucky to do it with you all. I only wanna make you guys proud and happy xxx https://t.co/IoNLbAOkRT +06/11/2018,Musicians,@DuaLipa,Colline!!!! I remember this so well when! Love you xxx https://t.co/Oi9TXekL9c +06/11/2018,Musicians,@DuaLipa,Thanks @rulesdua for putting that onto my TL all those memoriesssss +06/11/2018,Musicians,@DuaLipa,Omggggg 😭😭💗💗 https://t.co/WtQaFbWZot +06/11/2018,Musicians,@DuaLipa,Bonnaroo that was crazy thank you so much 💥 10.06.2018 // shot by Pixie Levinson https://t.co/z7w9A0FBdg +06/11/2018,Musicians,@DuaLipa,Go on girlllll https://t.co/jA2ohLFL6z +06/11/2018,Musicians,@DuaLipa,RT @visitkingdoms: u always provide me w a night i’ll never forget @DUALIPA thank u 💓🌟 https://t.co/x8BLk1OSdW +06/11/2018,Musicians,@DuaLipa,"🧡 Join me, @aalayaheastmond, @breebxtler and @team_enough in the fight to prevent gun violence. Text “Roo” to 877-8… https://t.co/9faOK6WjnV" +06/11/2018,Musicians,@DuaLipa,RT @IzzyRosa216: EVERYONE KNOWS NOT TO GIVE A FUCK.🖕🏻@DUALIPA https://t.co/tm6zu8EGCA +06/11/2018,Musicians,@DuaLipa,WOOOH BONNAROO THAT WAS SWEATY AF!!! I WANNA DO IT AGAIN +06/11/2018,Musicians,@DuaLipa,RT @dlipanews: Dua Lipa via @RollingStone! https://t.co/Yb8Js5xnr6 +06/10/2018,Musicians,@DuaLipa,BONNAROO https://t.co/ZxZv9ACuU6 +06/10/2018,Musicians,@DuaLipa,I try to be here with you guys as much as I can! https://t.co/hLthqJ5LG7 +06/10/2018,Musicians,@DuaLipa,MY BABIES! You two make me SWOON!!!! https://t.co/0eO0bKz6Ed +06/10/2018,Musicians,@DuaLipa,I love you guys and I hope you’re having a lovely day 💓 +06/29/2018,Musicians,@JessGlynne,RT @hmvtweets: .@JessGlynne is back with a new album! Pre-order Always In Between & get a #hmvExclusive Blue Dreams box with art cards & po… +06/29/2018,Musicians,@JessGlynne,Im so excited that the the preorder for my new album Always In Between is live!!!! Another moment I can’t quite bel… https://t.co/KHYMseI6S3 +06/28/2018,Musicians,@JessGlynne,I can’t believe I’m finally announcing the new chapter... Always In Between my new album will be with you in just a… https://t.co/rCuEZFPP1p +06/15/2018,Musicians,@JessGlynne,"I can’t believe it! Truly blessed! As I said, I’ll keep giving you guys the music you deserve ... Some really huge… https://t.co/HoPlhl830L" +06/13/2018,Musicians,@JessGlynne,Just being real out here. Showing you the truth behind the scenes.. How you feel? 💋 https://t.co/sA0mkjX13j +06/13/2018,Musicians,@JessGlynne,I’ll Be There is #1 in the @bigtop40 for a 2nd week 🙌 https://t.co/ipsDtNSm52 +06/13/2018,Musicians,@JessGlynne,Thank you so much for having me @CapitalOfficial. To all my fans I love you X https://t.co/ud0rQyLoqX +06/13/2018,Musicians,@JessGlynne,"#2 in New Hits UK, thank you Deezer, my love is unconditional https://t.co/FfFvityQTE https://t.co/DAVAHOIMva" +06/13/2018,Musicians,@JessGlynne,"AND #1 in Hot Hits UK, thank you so much for your support @Spotify https://t.co/oWZzEhabea" +06/13/2018,Musicians,@JessGlynne,"I'll Be There #1 in Today's Hits, thank you so much @applemusic https://t.co/F8FfPPjibq https://t.co/OuZzLFZ6AA" +06/12/2018,Musicians,@JessGlynne,Can’t believe I’ll Be There is Number one in the midweeks.. I have so much warmth in my heart right now! https://t.co/3OvdU1AFDM +06/11/2018,Musicians,@JessGlynne,I promise you I don’t take one day of my life for granted. I am so grateful for all the support and love. I can’t t… https://t.co/8Ov3zO9B8G +06/08/2018,Musicians,@JessGlynne,So much love for @banxnranx for remixing I’ll Be There! 💙 y’all can listen here https://t.co/LADxGDZIOi +06/04/2018,Musicians,@JessGlynne,See you on 4th August Bedford Park! Can’t wait 😍 https://t.co/aGHwNHo2AQ https://t.co/qnDzupDdad +06/03/2018,Musicians,@JessGlynne,Thank you @BigTop40 I feel so blessed! I don’t know how to express how much these things mean to me. Just the fact… https://t.co/k1lkYKTiOu +06/03/2018,Musicians,@JessGlynne,@BigTop40 Thank you so much! To everyone who’s bought or streamed I’ll Be There... I can’t thank you enough and I’m… https://t.co/mWVHmPQmWm +06/03/2018,Musicians,@JessGlynne,"RT @BigTop40: The moment you find out you're No. 1... 😍 + +@JessGlynne has done it again! I'll Be There becomes her EIGHTH No. 1 on The Offic…" +06/01/2018,Musicians,@JessGlynne,Hope you guys like this acoustic version of I’ll Be There.. It’s out today. I really love this and I hope y’all lov… https://t.co/J8XnnGPokJ +05/31/2018,Musicians,@JessGlynne,Tomorrow morning I’ll be on the telly 📺 BBC Breakfast from 9 +05/25/2018,Musicians,@JessGlynne,See you tomorrow Swansea!!! https://t.co/2wVdhZSEKS +05/24/2018,Musicians,@JessGlynne,#TBT to the the I'll Be There launch party. Was so special.. Thank you everyone who came and shared that evening wi… https://t.co/xwjYouIm2u +05/22/2018,Musicians,@JessGlynne,Loved my Sunday morning! Go catch up on All 4 if you fancy 💜 https://t.co/PTWQQCnwOl +05/19/2018,Musicians,@JessGlynne,"Thank you for being with me on Thursday, it was a special night at the Jazz Cafe in London.. my Home. I don’t know… https://t.co/vb5C74qn5v" +05/17/2018,Musicians,@JessGlynne,Tonight... you coming? 💙 https://t.co/ql8pLllpM6 +05/14/2018,Musicians,@JessGlynne,I’m doing a special performance this Thursday at the Jazz Café in Camden. Very limited tickets available right now… https://t.co/r3WSNQGuBj +05/10/2018,Musicians,@JessGlynne,What a moment! Thank you everyone who came down to this.. you got me! 💕 https://t.co/qGrHve2GP3 +05/09/2018,Musicians,@JessGlynne,"On @BBCTheOneShow tonight tune in at 7 📺 Or come down and watch the performance, 7:45 pm at BBC Broadcasting house. https://t.co/ZArdXLM4lw" +05/09/2018,Musicians,@JessGlynne,.@Deezer put I’ll Be There in Brand New UK. Big up ❤ https://t.co/bjtNMfJiMT +05/08/2018,Musicians,@JessGlynne,Thanks @Spotify! X https://t.co/IljMIK1RyA +05/04/2018,Musicians,@JessGlynne,"A small hint to those that really want to come to the launch party. First come first serve, limited space X https://t.co/upN8qKv53y" +05/04/2018,Musicians,@JessGlynne,From day ONE I’m in Today’s Hits on @AppleMusic with I’ll Be There! Thank you so much x https://t.co/yLIVmLwHpx https://t.co/9h720qZD5a +05/04/2018,Musicians,@JessGlynne,Big love @Spotify for all the support! X https://t.co/Tihh6GzAzu +05/04/2018,Musicians,@JessGlynne,"My new single I’ll Be There is out now, and so is the video. It’s been a while and I’m so excited for you to hear i… https://t.co/l7wzdT9Gvw" +05/03/2018,Musicians,@JessGlynne,💙https://t.co/4KrWQUC2Ed https://t.co/slvnB5xjMb +05/02/2018,Musicians,@JessGlynne,See you in 2... 💧 https://t.co/ZHFAJcS838 +05/02/2018,Musicians,@JessGlynne,Hey my friends.. So this Friday I’m coming for you finally! I wanted to put on a special event for my fans and for… https://t.co/iZY1GHXkFu +05/01/2018,Musicians,@JessGlynne,When you're lost... I’ve got enough love for 2... https://t.co/4KrWQUC2Ed https://t.co/QAIwDzBbR7 +05/01/2018,Musicians,@JessGlynne,Ayyyy! Happy Birthday Land Rover! You guys have been too good to me 💙! @LandRoverUKPR #landrover70years 👅 https://t.co/9heRRI1CJG +05/01/2018,Musicians,@JessGlynne,New Single 04.05.18. PreOrder https://t.co/4KrWQUC2Ed https://t.co/fmtknXDOxN +04/30/2018,Musicians,@JessGlynne,I'll Be There https://t.co/8nEeV8ja5H +04/30/2018,Musicians,@JessGlynne,#ILLBETHERE https://t.co/Gpb6d6sbEn +04/30/2018,Musicians,@JessGlynne,"Can't wait! @CapitalOfficial's Summer Time Ball, see you soon! #CapitalSTB https://t.co/PCLbOyGC4r" +04/25/2018,Musicians,@JessGlynne,Thank you so much @SiriusXMHits1 for having These Days as their #HitBound Song of the Week!!! Big love to @KidKelly… https://t.co/3prUmsGCnn +04/03/2018,Musicians,@JessGlynne,This is so insane and kinda hard to believe... The love is so real! Thank you 💙 https://t.co/wq4ikadFqq +03/30/2018,Musicians,@JessGlynne,We Number 1!! Fully emotionally excited and so damn happy for everyone involved in this song… https://t.co/AaZmraMWik +03/29/2018,Musicians,@JessGlynne,Mind On It... go check it on YouTube now gorgeous people 💞 https://t.co/uGd4V2lpQv +03/26/2018,Musicians,@JessGlynne,Ain’t no one complaining out here FYI! Just singing my feels! Sometimes I just need to put my… https://t.co/U9XckEbCI6 +03/24/2018,Musicians,@JessGlynne,Never mind 💙 https://t.co/US7dhliGHG +03/22/2018,Musicians,@JessGlynne,"Please help play a part in turning the tide against one of our biggest killers, dementia. Simply watch and share th… https://t.co/Vl50mKcEAp" +03/15/2018,Musicians,@JessGlynne,Hey people.. Me and my friend @YungenPlayDirty have a little treat for you.. “Mind On It” will… https://t.co/oSbdaklh12 +03/13/2018,Musicians,@JessGlynne,"W O W so These Days is number 1 in the midweeks, I can’t believe it! Please show the love for… https://t.co/xw0drWsULH" +03/11/2018,Musicians,@JessGlynne,"Happy mummy’s day! No words can describe the love I have for you, my number 1 woman xxxx https://t.co/PWLFNxYeE8" +03/10/2018,Musicians,@JessGlynne,A moment for me 🌴 https://t.co/AUwF44FSCJ +03/08/2018,Musicians,@JessGlynne,WOMAN IS POWER! DON’T EVER FORGET IT! 💞 https://t.co/39IxLaaVKb +03/07/2018,Musicians,@JessGlynne,That time I wore that suit... 👅 https://t.co/sS4HYaBH1I +02/28/2018,Musicians,@JessGlynne,I am not perfect. https://t.co/YzNS5Oa439 +02/28/2018,Musicians,@JessGlynne,Insecure and I don’t care https://t.co/sYD1mnEelT +02/22/2018,Musicians,@JessGlynne,🕊 https://t.co/JZYb0mjuBD +02/22/2018,Musicians,@JessGlynne,I am a woman with a platform and I’m so grateful for where I stand. I didn’t go to the Brits… https://t.co/BGDPtprcig +02/22/2018,Musicians,@JessGlynne,2018 https://t.co/fHdHrqsy62 +02/19/2018,Musicians,@JessGlynne,These Days at Abbey Road with these lovely bunch of boys... @Rudimental @dancaplen @macklemore all the love! 👅 https://t.co/WJYRzipM9D +02/16/2018,Musicians,@JessGlynne,These Days acoustic out today 👅 https://t.co/IX44AIJdpE and the live video is out Monday hunnies https://t.co/aI3cFr9Cko +02/09/2018,Musicians,@JessGlynne,One step at a time... 👀 https://t.co/Hy0ygoNTDI +02/07/2018,Musicians,@JessGlynne,Get ready my people... I’m coming for you👅... #biggestweekend https://t.co/eHDW7kcXlo +02/06/2018,Musicians,@JessGlynne,Meet me tomorrow night 7pm.. bbconeshow 👅 https://t.co/AXRNiQQLJ9 +02/04/2018,Musicians,@JessGlynne,@BigTop40 @Rudimental @macklemore @dancaplen So blessed I can’t believe it! Big love everyone that is so special xxx +02/04/2018,Musicians,@JessGlynne,"RT @BigTop40: 🥇 Imagine romping up 12 places, to get the #BigTop40's No. 1 spot. 'Cause @Rudimental, @JessGlynne, @macklemore and @dancaple…" +01/31/2018,Musicians,@JessGlynne,My protector 💞 https://t.co/Muyc644Ytz +01/25/2018,Musicians,@JessGlynne,Hey people.. here’s a little video for you.. hope y’all like it 💞 https://t.co/7OMPKq7gcp +01/24/2018,Musicians,@JessGlynne,#THESEDAYS video soon come @rudimental @dancaplen @macklemore https://t.co/2uald2lK6G +01/22/2018,Musicians,@JessGlynne,I’m out here in the trees what y’all saying? https://t.co/1wGsKkwtmh +01/19/2018,Musicians,@JessGlynne,2018... slowly coming for you. Don’t be scared just be ready... https://t.co/TkZ1KHXNbq +01/19/2018,Musicians,@JessGlynne,"Listen up.. #TheseDays is out! Enjoy 👅 https://t.co/5obo8iV1lp + +@Rudimental @Macklemore @DanCaplen https://t.co/zBNgT8aetj" +01/18/2018,Musicians,@JessGlynne,I’m on a new tune with @Rudimental and y’all can get... #TheseDays at midnight!!! https://t.co/5obo8iV1lp https://t.co/1ZoygjhBHz +01/17/2018,Musicians,@JessGlynne,💙 https://t.co/kVUQmfy9ev +01/16/2018,Musicians,@JessGlynne,"T H E S E D A Y S + +#TheseDays https://t.co/kqJUpayTLC" +01/15/2018,Musicians,@JessGlynne,"Are you ready... +@Rudimental @macklemore @dancaplen #2018 https://t.co/dDBMSrL4UM" +12/31/2017,Musicians,@JessGlynne,So I hope everyone is ready for 2018 cause I am and I’m nearly ready to share the love. Let’s… https://t.co/X84OwZcubb +12/31/2017,Musicians,@JessGlynne,I’ve been doing me for a little minute finding some balance and I’ve also been working… https://t.co/vayIjc2Ocz +12/31/2017,Musicians,@JessGlynne,"Hey, it’s been a while... https://t.co/ZSbUbk4WDq" +09/26/2017,Musicians,@JessGlynne,I got you.. Don't rush me. I got you 💜 +09/23/2017,Musicians,@JessGlynne,When I say thank you I mean... Thank You from the bottom of my heart 🖤 https://t.co/teZ1s0rv7o +08/21/2017,Musicians,@JessGlynne,I am lying in my bed.. the washing machine is on and I am having a moment. I Cry When I Laugh… https://t.co/g4yvfjx91X +08/09/2017,Musicians,@JessGlynne,My mask... that's what I need right now x https://t.co/VwlERtW1uY +07/14/2017,Musicians,@JessGlynne,London I'm so excited to see you! We home & I'm bringing you some summer of love! Here's a little something for you 💗https://t.co/G0wg9NI2ZV +07/08/2017,Musicians,@JessGlynne,Happy Pride! Celebrate Love and be YOU!Today and every day. We are one my people! I LOVE YOU… https://t.co/Nahgo79fto +12/23/2016,Musicians,@JessGlynne,This journey so far has involved so much that I thought I would only dream of. I can't tell you… https://t.co/xUbCNmXUPK +12/22/2016,Musicians,@JessGlynne,I want to be like Helen Mirren when I'm older 💜 +12/20/2016,Musicians,@JessGlynne,Just say it how it is... makes life a lot simpler you know 👌🏼 +12/20/2016,Musicians,@JessGlynne,You cool? 👀 https://t.co/TbpDBmzYW8 +12/19/2016,Musicians,@JessGlynne,Have you heard about this oil? Honestly! The ONE!!!!!!!! 💜 https://t.co/OundOzm294 +12/17/2016,Musicians,@JessGlynne,Monster Munch 💜 +12/17/2016,Musicians,@JessGlynne,RT @Jolene_Henry: I love people +12/16/2016,Musicians,@JessGlynne,"I announced some new UK live dates over the past few weeks. They’re all below in case you missed any, tix & info at… https://t.co/gSMBFafuZV" +12/15/2016,Musicians,@JessGlynne,Thank you @belvederevodka for my bespoke bottle of vodka for the Take Me Home tour and thank you… https://t.co/wOAGcIINFf +12/15/2016,Musicians,@JessGlynne,https://t.co/D0BTMEcvfQ 💜 +12/13/2016,Musicians,@JessGlynne,Baes 💓 https://t.co/xVbtUNxMg7 +12/12/2016,Musicians,@JessGlynne,Kahlil Joseph | m.A.A.d https://t.co/QUij1al2rY +12/12/2016,Musicians,@JessGlynne,Bed 💜 https://t.co/OeKCMEnf7S +12/12/2016,Musicians,@JessGlynne,Chemical Brothers #robot https://t.co/xCIAxLpxwq +12/11/2016,Musicians,@JessGlynne,😂💜 https://t.co/RJvcNqBoHF +12/11/2016,Musicians,@JessGlynne,Wow thank you so much BBC Awards!! So grateful to be recognised!! So much love xxxx https://t.co/vF2k9jIXas +12/10/2016,Musicians,@JessGlynne,Nicole to win +12/10/2016,Musicians,@JessGlynne,Sleep deprived.. I'm so sad right now! +12/08/2016,Musicians,@JessGlynne,HAPPY BIRTHDAY TO A SPECIAL BANANA HEAD! May this next year bring you even more happiness and… https://t.co/1QZ5XS1Gz6 +12/08/2016,Musicians,@JessGlynne,When you know ... you know +12/07/2016,Musicians,@JessGlynne,@grimmers same page!!! +12/07/2016,Musicians,@JessGlynne,About that... 👄 https://t.co/ul4zna6JJt +12/05/2016,Musicians,@JessGlynne,Last night was nothing short of a big fat load of fun loving wilin' out!!!! Thank you to… https://t.co/e7LWx4uBgo +12/05/2016,Musicians,@JessGlynne,If you have my phone.. please can I have it back? Please 🙏🏻 +12/04/2016,Musicians,@JessGlynne,T O N I G H T 👌🏼 +12/03/2016,Musicians,@JessGlynne,Can someone help me out.. I want to go for dinner in town (London) but everywhere is booked up.. I know it's Saturday but come on!? +12/02/2016,Musicians,@JessGlynne,Thank you to every single person who came and joined me on the Take Me Home tour... I can't… https://t.co/qrJFS0QjUU +12/02/2016,Musicians,@JessGlynne,"Tickets on sale now for summer dates in Aintree, Wincanton, Carlisle, Newmarket, Llanelli, Newbury & York...… https://t.co/DSTjMfkkKc" +12/01/2016,Musicians,@JessGlynne,London you stole my heart last night. I can't even put it in to words. I will never forget… https://t.co/yDdAvaYrJv +11/30/2016,Musicians,@JessGlynne,LONDON ARE YOU READY!!?? 👅 https://t.co/H1X8fd5Vc5 +11/30/2016,Musicians,@JessGlynne,"Pleased to announce 4 very special summer dates! Tickets on sale Friday 2nd Dec. Presale starts tomorrow, sign up a… https://t.co/lXQPKhvTHd" +11/30/2016,Musicians,@JessGlynne,O2 Arena... I can't believe I am coming for you... 💜 https://t.co/Sx8VO8zXe2 +11/29/2016,Musicians,@JessGlynne,Late nights https://t.co/X88sAedM4i +11/29/2016,Musicians,@JessGlynne,Take Me Home https://t.co/NzhOSZsyos +11/27/2016,Musicians,@JessGlynne,Merch / Hoody Crew https://t.co/PQ245bqUK9 +11/27/2016,Musicians,@JessGlynne,See true https://t.co/2FoVW7mdj6 +11/27/2016,Musicians,@JessGlynne,Brighton... what you got for me 👄 +11/27/2016,Musicians,@JessGlynne,💜 https://t.co/E1w3UuWHdx +11/26/2016,Musicians,@JessGlynne,Apple Crumble and custard in Brighton 💜 +11/26/2016,Musicians,@JessGlynne,I'm yours 💜 https://t.co/Vf6GICuMX4 +11/26/2016,Musicians,@JessGlynne,@emily_JG_ I'm so sorry I didn't get to meet you. I hope you're ok and thank you for all your support. Sending you a big hug 💜Jx +11/25/2016,Musicians,@JessGlynne,'Love Me'. by nadineijewere https://t.co/TGeyzDRVNb +11/25/2016,Musicians,@JessGlynne,NEWCASTLE !!! I'm so excited 💜 +11/24/2016,Musicians,@JessGlynne,A few last min tickets for were just made available for the tour. QUICK Brighton https://t.co/OzxnZnER1O | Plymouth https://t.co/oclnY4I1jT +11/23/2016,Musicians,@JessGlynne,Amelia... I got you 💜 https://t.co/mCPKShRTFO +11/22/2016,Musicians,@JessGlynne,I see you 👁 https://t.co/pGEHlfG1qJ +11/22/2016,Musicians,@JessGlynne,💜 https://t.co/9wELTv5jyX +11/21/2016,Musicians,@JessGlynne,#TAKEMEHOMETOUR https://t.co/neDar1d2nJ +11/21/2016,Musicians,@JessGlynne,Liverpool!!!!!!! WOW!!!!!!! Thank you 💜💜💜💜💜 so loud and so special xxxxx +11/20/2016,Musicians,@JessGlynne,💜. Artwork @jolene_henry / Photo nadineijewere https://t.co/Me6RnQ03Da +11/20/2016,Musicians,@JessGlynne,Just posted a photo https://t.co/GAaUJvSXza +11/20/2016,Musicians,@JessGlynne,Aloha Liverpool 👀 +11/19/2016,Musicians,@JessGlynne,#TAKEMEHOMETOUR https://t.co/8tVrnxgZTw +11/19/2016,Musicians,@JessGlynne,Birmingham... I can't thank you enough for kicking this tour off with so much love! What a… https://t.co/jDbKdj0izx +11/18/2016,Musicians,@JessGlynne,Birmingham... I will be on stage at 8:15pm! You ready!? 💜 +11/18/2016,Musicians,@JessGlynne,BIRMINGHAM ARE YOU READY!!!??? https://t.co/0VNQmvhg9I +11/17/2016,Musicians,@JessGlynne,2 F***ING DAYS!!!!! 😱 https://t.co/RYdH9W4klr +11/16/2016,Musicians,@JessGlynne,T R E E J 💜 https://t.co/B0cv0nXemy +11/15/2016,Musicians,@JessGlynne,Bid on my shoes https://t.co/VFoEG9iQGZ in #CelebrityShoeAuction so @SmallStepsDocs can help kids on rubbish dumps https://t.co/zQzmv6IJOa +11/15/2016,Musicians,@JessGlynne,TOUR IS COMING!! Are you READY!? https://t.co/Scdiw7Xxz9 +11/14/2016,Musicians,@JessGlynne,Just posted a video https://t.co/xxbTmVcPTc +11/14/2016,Musicians,@JessGlynne,T M H T https://t.co/v0LTbcwquJ +11/13/2016,Musicians,@JessGlynne,We tried something like this.... 👄#mannaquinchallange https://t.co/6RlozqaIfy +11/12/2016,Musicians,@JessGlynne,@Jolene_Henry you're telling me +11/11/2016,Musicians,@JessGlynne,I’m working on a special project & need your help. If you’re coming to my tour I want to see where you’ve enjoyed m… https://t.co/SLv339n71b +11/08/2016,Musicians,@JessGlynne,Pull It https://t.co/rNmVA7E2Pe +11/07/2016,Musicians,@JessGlynne,Stand up for women! Let's make history... We didn't fight for nothing. Make sure you vote!… https://t.co/zXSvtHbAej +11/04/2016,Musicians,@JessGlynne,That time at Arsenal https://t.co/sZCzvrKqux +11/04/2016,Musicians,@JessGlynne,That time in America https://t.co/FH2FHCExUB +11/04/2016,Musicians,@JessGlynne,I only have a cup of tea so I can have a biscuit +11/02/2016,Musicians,@JessGlynne,Us / @itslyndell https://t.co/wa9c7ElDFt +11/01/2016,Musicians,@JessGlynne,So excited to announce the supports for my UK tour... We got mr @wretch32 and miss @raye... YOU READY!? X https://t.co/SdSAQMv6gJ +11/01/2016,Musicians,@JessGlynne,I tried... 👄 https://t.co/aivSXN9JlC +11/01/2016,Musicians,@JessGlynne,Just posted a photo https://t.co/fG4s6az1h8 +10/28/2016,Musicians,@JessGlynne,This girl!! @RayBLK_ https://t.co/qKaHXVt0rH 💜 +10/27/2016,Musicians,@JessGlynne,To NYC or NO? +10/26/2016,Musicians,@JessGlynne,Where is the ginger hair emoji? I think it's rude that there isn't one.. +10/26/2016,Musicians,@JessGlynne,Yo / https://t.co/PymD5QPPCk +10/25/2016,Musicians,@JessGlynne,Love #ChrisLevine https://t.co/H48moLGIAJ +10/25/2016,Musicians,@JessGlynne,Thank you R1 Teen Awards 💜 https://t.co/nUmIZx6dMK +10/25/2016,Musicians,@JessGlynne,Sometimes it just works +10/25/2016,Musicians,@JessGlynne,Had an amazing time with you all at the @BBCR1 #TeenAwards on Sunday! Watch it back 👉 https://t.co/NhvLb4Wg6A https://t.co/lXaA2FXkjP +10/24/2016,Musicians,@JessGlynne,Some of my loves 💜 https://t.co/zS01sijUKo +10/23/2016,Musicians,@JessGlynne,@JoFrostMakeUp @Eyeko what a dream!!! 💜 +10/23/2016,Musicians,@JessGlynne,G Y A L S 💓 https://t.co/g4YbIRxvsb +10/23/2016,Musicians,@JessGlynne,@TinieTempah thank you mr! 🙈x +10/22/2016,Musicians,@JessGlynne,3X PLATINUM ALBUM!!! I can't believe it!!!!!! THANK YOUUUUU 😭 +10/22/2016,Musicians,@JessGlynne,To my fans.. I got your cards and I read your messages and your tweets and I can't thank you enough for all the love and support you give! 💓 +10/22/2016,Musicians,@JessGlynne,"I have the best family, friends and team anyone could wish for! I've had the best birthday… https://t.co/FtNJ46Y9dj" +10/19/2016,Musicians,@JessGlynne,Thank you for having me Triumph! Beautiful bikes 💜@officialtriumph #brutalbeauty https://t.co/xZeuMU6n9S +10/18/2016,Musicians,@JessGlynne,@Sweetstix but I missssss YOU +10/17/2016,Musicians,@JessGlynne,👄 https://t.co/YPgM7aN5cE +10/16/2016,Musicians,@JessGlynne,Love my T big thank you nandes_clbb 💓 https://t.co/5TRK9wyM5v +10/14/2016,Musicians,@JessGlynne,@bbdiamond you are too funny!! 😂 +10/13/2016,Musicians,@JessGlynne,@Annarbanannar me too minus the hot choc! 💜 +10/13/2016,Musicians,@JessGlynne,@_kerry93 me too 💓 +10/13/2016,Musicians,@JessGlynne,@AliciaWoodwardx I'm ok xx +10/13/2016,Musicians,@JessGlynne,@bloodygalore xxx +10/13/2016,Musicians,@JessGlynne,How is everyone? 💜 +10/13/2016,Musicians,@JessGlynne,Did you vote? https://t.co/XqLKew15uU +10/13/2016,Musicians,@JessGlynne,"Watch my performance of “Take Me Home”, “Hold My Hand” and “Rather Be” on PBS’ Live at 9:30! https://t.co/pOfuvLJrbH https://t.co/FqUCVLL1DE" +10/12/2016,Musicians,@JessGlynne,"My Love from Austin City Limits ❤ +https://t.co/wLutTZLTUV" +10/10/2016,Musicians,@JessGlynne,@mtvema thank you! 💜 +10/07/2016,Musicians,@JessGlynne,O ok. https://t.co/Cp7UZkPSPu +10/06/2016,Musicians,@JessGlynne,"You can vote as many times as you like, so please take 5 mins to go and vote like crazy! https://t.co/XqLKew15uU" +10/06/2016,Musicians,@JessGlynne,"I'm nominated for the 'Best World Stage’ award at the @MTVEMA's, but I need your votes to win!… https://t.co/5zrLL4Accd" +10/06/2016,Musicians,@JessGlynne,Have you heard about @jinjinofficial and @lovefromcamille ... cause they just too much 👌🏼💜 +10/05/2016,Musicians,@JessGlynne,Salt fish patty and Orange Is The New Black 💓 #Ochiyougotme +10/04/2016,Musicians,@JessGlynne,Vegas 💸 https://t.co/QzuQ2O8BBI +10/04/2016,Musicians,@JessGlynne,Summer is officially done... I just have to say.. Thank you so much! Next stop... Arenas 😱🙈xxx https://t.co/frseNv3Ftq +10/03/2016,Musicians,@JessGlynne,Touch DOWN 🇬🇧 +10/03/2016,Musicians,@JessGlynne,I'm coming home! 🇺🇸✈️🇬🇧 ... +10/01/2016,Musicians,@JessGlynne,Austin!!! I LOVE YOU!!!! Thank you so much!!!!! Austin City Limits festival was such a treat… https://t.co/UV0FZtuehg +10/01/2016,Musicians,@JessGlynne,Not long now! 💜 https://t.co/R7MAbgsNNv +06/18/2018,Musicians,@EllaHenderson,🙌🏼 STUNNING @itsgracecarter https://t.co/SHhptomsGF +05/26/2018,Musicians,@EllaHenderson,Still best vocals in the game @samsmithworld @bbcr1 🎶❤️🙌🏼🙏🏼 #BiggestWeekend x E +05/19/2018,Musicians,@EllaHenderson,That moment you open your take out pizza box & they delivered to you with extra toppings & stuffed crust!! 🧡🙌🏼🍕😂… https://t.co/IBpTsUY8Vd +05/18/2018,Musicians,@EllaHenderson,Wishing @GabbyBarrett_ all the love & luck in the world for @AmericanIdol final!! ✍️ Loved writing #RiversDeep & yo… https://t.co/aGkYuGDBMk +05/18/2018,Musicians,@EllaHenderson,"RT @HollywoodRecs: ✨ @GabbyBarrett_'s #RiversDeep is out now! 🎶 Listen on @AppleMusic: https://t.co/MDfRDmyBwr + +The LIVE, two-night @Americ…" +05/18/2018,Musicians,@EllaHenderson,"RT @GabbyBarrett_: My new single “Rivers Deep” IS OUT RIGHT NOW! GO GRAB IT on Itunes, Spotify, ETC. ❤️ https://t.co/rWlkHLl1dD" +04/22/2018,Musicians,@EllaHenderson,RIP @Avicii 💔 https://t.co/vVkOZ6eTZq +03/08/2018,Musicians,@EllaHenderson,Feel honoured to be amongst some very incredible & inspiring women @adele @DUALIPA @littlemix .. here’s to making… https://t.co/MCX1wOESnT +02/23/2018,Musicians,@EllaHenderson,ᴛᴜɴᴇ ɪɴᴛᴏ ʏᴏᴜ🎛 https://t.co/u2EFT2lt8W +02/20/2018,Musicians,@EllaHenderson,Completely obsessed @JamesBayMusic 🙌🏼👏🏼 https://t.co/EGkszUCmaF +02/20/2018,Musicians,@EllaHenderson,ᴄʀᴇᴀᴛɪɴɢ✍️ @ArrowBenjamin x. E https://t.co/oZ49UaDYpL +02/20/2018,Musicians,@EllaHenderson,"RT @officialcharts: Loads of artists have assured us they're releasing new albums in 2018, including @EllaHenderson and @RitaOra. Full list…" +02/03/2018,Musicians,@EllaHenderson,RT @KinkyBootsUK: Ella + Kinky Boots = FABULOUS! ❤ https://t.co/n7adarUdhH +02/01/2018,Musicians,@EllaHenderson,HAPPY 10 YEARS @Fabulousmag 🙌🏼❤️😘💛 x. X Thank you for all your support throughout the years! Here’s to an exciting… https://t.co/btRVTwvEtj +01/29/2018,Musicians,@EllaHenderson,Congrats @alessiacara 🙌🏼 so well deserved!! X. E https://t.co/8xkIk8cxg0 +01/20/2018,Musicians,@EllaHenderson,AUSTRIA 🇦🇹 https://t.co/YEjuzqRcox +01/19/2018,Musicians,@EllaHenderson,"@ScarlettMoffatt Ps. You’re beautiful @ScarlettMoffatt ... your not a shape, size or a label... your a woman. ❤️" +01/19/2018,Musicians,@EllaHenderson,🙌🏼❤️ yess https://t.co/Mzvsd9b38i +01/12/2018,Musicians,@EllaHenderson,twenty- two⚜️ https://t.co/1LRs0cYrhZ +01/07/2018,Musicians,@EllaHenderson,sᴀʏ ᴛʜᴇ ᴡᴏʀᴅs... ᴇxᴀᴄᴛʟʏ ᴀs ᴛʜᴇʏ ᴀʀᴇ. #ᴀʟʙᴜᴍ2 https://t.co/oRrlKviwIs +01/06/2018,Musicians,@EllaHenderson,👀🙌🏼 https://t.co/zumcgz3kvw +12/21/2017,Musicians,@EllaHenderson,❤️ https://t.co/TjIbd6hVWa +12/21/2017,Musicians,@EllaHenderson,Driving home for Christmas ❄️🎄@LincsFM x. E https://t.co/K1nXnoQcUd +12/15/2017,Musicians,@EllaHenderson,Thank you @Spotify for an amazing 2017!! Here’s to wrapping up this year & to an exciting 2018 filled with new sou… https://t.co/TgDT9vkrmA +12/10/2017,Musicians,@EllaHenderson,Me when it snows... ❄️❄️❄️ https://t.co/NUWTZLzJlU +12/08/2017,Musicians,@EllaHenderson,Let’s gooo Fridayyy!!! 💋 https://t.co/3X8oQFdt3v +12/07/2017,Musicians,@EllaHenderson,Huge congrats to @JorjaSmith for winning the 2018 @BRITs #CriticsChoiceAward 🙌🏼❤️ ... yassss gurll!! X. E https://t.co/0IAqlgOosq +12/01/2017,Musicians,@EllaHenderson,First day off since tour... & watching @thismorning with @Rylan just makes me so happy ☺️. X x love waking up to you!! X haha. E x +12/01/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Last night of the tour tonight in Bournemouth! Big shout out to everybody who came!! and my amazing band and crew!! Spec… +11/29/2017,Musicians,@EllaHenderson,#EllaAlbum2 https://t.co/hOPSC0dVpZ +11/29/2017,Musicians,@EllaHenderson,GLASGOW ... you were unreal last night!! 🙌🏼💙 thank you Scotland! Xx. E https://t.co/AEoYeZruRw +11/27/2017,Musicians,@EllaHenderson,RT @candycain_: I really feel like 2018 is a good year for some new @EllaHenderson music +11/27/2017,Musicians,@EllaHenderson,Aww glad you enjoyed it!! ❤️🙏🏼 x. E. X x https://t.co/LY4enk3S6v +11/27/2017,Musicians,@EllaHenderson,RT @officialkione: @JamesArthur23 & @EllaHenderson you both were amazing tonight in Nottingham. Defiantly could not stop dancing. 😆 +11/27/2017,Musicians,@EllaHenderson,RT @hollyjames4: Amazing performances tonight by @JamesArthur23 and @EllaHenderson !! 🎶🎶 +11/26/2017,Musicians,@EllaHenderson,RT @gemma_geer: So amazing to see @EllaHenderson and @JamesArthur23 singing together. Beautiful! Thanks for an incredible show x +11/26/2017,Musicians,@EllaHenderson,❤️❤️❤️ https://t.co/IM4jycHXyw +11/26/2017,Musicians,@EllaHenderson,@meggyban 😘 xx E +11/25/2017,Musicians,@EllaHenderson,RT @ellastearn: What a brilliant way to kick off the night! @EllaHenderson was amazing and her new album is beaaaautiful! 🙌🏻❤️ #BackFromThe… +11/25/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Thanks E!! Xx https://t.co/v3pFKockvS +11/25/2017,Musicians,@EllaHenderson,"RT @sonyatvpubuk: #FollowFriday shout-out to just a few of the amazing live shows out & about this weekend +@damianlazarus @hello_operator @…" +11/25/2017,Musicians,@EllaHenderson,@DeanoG1234 😘🙌🏼 x E +11/25/2017,Musicians,@EllaHenderson,RT @DeanoG1234: My guilty pleasure @EllaHenderson rocked Dublin 🙌🏽👌🏼😍 +11/25/2017,Musicians,@EllaHenderson,RT @sonoffisher: @LauraFerns @GentingArena @EllaHenderson @JamesArthur23 Ella is making a comeback after two years away from the music scen… +11/25/2017,Musicians,@EllaHenderson,So glad you enjoyed tonight 😘 x. E https://t.co/idZQNfNQ9O +11/25/2017,Musicians,@EllaHenderson,Last night 🥂❤️ @NicoleScherzy @JamesArthur23 #BackFromTheEdgeTour x. E https://t.co/DXvr4YKa3M +11/24/2017,Musicians,@EllaHenderson,A little bit excited for tonight WEMBLEY!!! @JamesArthur23 #BackFromTheEdgeArenaTour x. E https://t.co/bwmSNLJKEY +11/24/2017,Musicians,@EllaHenderson,Late night tour bus drives just got a lot better ... @JamesArthur23 I can’t cope with you!! 😍😍 x. E… https://t.co/Mh74kH4B1y +11/24/2017,Musicians,@EllaHenderson,❤️ @JamesArthur23 https://t.co/oI8LCp0mMK +11/23/2017,Musicians,@EllaHenderson,"Dressing room vibes, Cardiff I’m a bit excited for tonight!! X @OfficialSteps @Ianhwatkins x. E https://t.co/oafdYsVIyy" +11/22/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Dublin you were sensational last night 🤘🏻 +11/22/2017,Musicians,@EllaHenderson,Last night in Dublin @JamesArthur23 x 🍀❤️ x E https://t.co/MzVOYDJM0m +11/22/2017,Musicians,@EllaHenderson,RT @Michaela_Langan: What a night that was at the 3Arena.. @JamesArthur23 & @EllaHenderson were so good last night 👏👏 +11/21/2017,Musicians,@EllaHenderson,DUBLIN🇮🇪 https://t.co/4D9VIdLP8P +11/21/2017,Musicians,@EllaHenderson,"BELFAST ... I ❤️U + +E x https://t.co/zYMJmWOXdo" +11/19/2017,Musicians,@EllaHenderson,NEWCASTLE ... you blew my mind last night! Thank you!! X. E #BackFromTheEdgeArenaTour https://t.co/AL7jdgmbJG +11/18/2017,Musicians,@EllaHenderson,NEWCASTLE! Who’s ready for tonight?! X I can’t wait! I’ll be on stage at 7:30pm... see you soon 😘 x. E x… https://t.co/uqFbFGGZC2 +11/17/2017,Musicians,@EllaHenderson,SO proud of this amazing woman & thank you for having be a part of writing on this record!! 🙌🏼❤️🎼 If you haven’t al… https://t.co/aNHNrFYFZs +11/17/2017,Musicians,@EllaHenderson,RT @samsmithworld: @EllaHenderson ❤️❤️❤️❤️❤️ +11/17/2017,Musicians,@EllaHenderson,LIVERPOOL who’s ready for tonight?! #BackFromTheEdgeTour x. E https://t.co/HzWNIP1v1a +11/17/2017,Musicians,@EllaHenderson,LEEDS #BackFromTheEdgeTour https://t.co/o3NPpNdOQf +11/17/2017,Musicians,@EllaHenderson,I can’t wait either! X x E https://t.co/fTyDfaBrVF +11/17/2017,Musicians,@EllaHenderson,@Jxrdd Ahhh 🙈🙌🏼🙌🏼😘 +11/17/2017,Musicians,@EllaHenderson,RT @Shaye_Rose: What a show!!!! @JamesArthur23 & @EllaHenderson were absolutely fantastic tonightt!!! What a great night!!! @gingercon97 ❤ +11/17/2017,Musicians,@EllaHenderson,@Chxrlotteclxy ❤️❤️❤️❤️❤️ +11/17/2017,Musicians,@EllaHenderson,@Chxrlotteclxy @JamesArthur23 🙌🏼 +11/17/2017,Musicians,@EllaHenderson,"RT @Chxrlotteclxy: You know you had a good night when you literally have lost your entire voice ✌ +And I got work tomorrow ✌ thanks for a si…" +11/17/2017,Musicians,@EllaHenderson,@katiebrough1023 Ahhh ... so glad you had an amazing night!! X. X big love ❤️ x. E +11/16/2017,Musicians,@EllaHenderson,It’s TOUR TIME!!!! X See you soon LEEDS! X #BackFromTheEdgeTour E x. https://t.co/4Bdh1W08Pk +11/13/2017,Musicians,@EllaHenderson,I CAN'T WAIT to get out on the road with my band in a few days time & perform some NEW music! #BackFromTheEdgeTour… https://t.co/waF3PzoDzX +11/12/2017,Musicians,@EllaHenderson,#LestWeForget 🙏🏼 +11/11/2017,Musicians,@EllaHenderson,Nope! 🙌🏼😍 https://t.co/v2MStiplTB +11/11/2017,Musicians,@EllaHenderson,About last night... LIVERPOOL you were AMAZING!! Felt amazing being back up on stage!! Thank you @RadioCity967 x E x https://t.co/yPAybF0oD6 +11/10/2017,Musicians,@EllaHenderson,❤️🙌🏼 I’ll be back soon ;) x. E https://t.co/MfrEaH6uea +10/18/2017,Musicians,@EllaHenderson,"Secondly, my words can’t even express how phenomenal @emelisande was tonight!! Thank you for being the soulful trut… https://t.co/7DMHicqFxv" +10/18/2017,Musicians,@EllaHenderson,First of all... tonight @calumscott you blew me away 🎵 those vocals!! Wowwww!! X can’t wait for the album Mr! X. E… https://t.co/YbybKdeQN4 +10/11/2017,Musicians,@EllaHenderson,All I can say is ... I can't bloody wait to get back out on that stage!! @RadioCity967 Xxx #ItsBeenAWhile x x. E https://t.co/YtKzMLJ2ti +10/11/2017,Musicians,@EllaHenderson,She inspires me everyday @theashleygraham 🙌🏼 #OwnWhoYouAre #SizeSexy x E. x https://t.co/jrhaU9772w +10/07/2017,Musicians,@EllaHenderson,Had so much fun yesterday on my first magazine shoot back 👀 https://t.co/X4vjaaMM9G +09/28/2017,Musicians,@EllaHenderson,@BBCR1 @JamesArthur23 The prank Tour War is on... starting from NOWWW! 👻 x E +09/28/2017,Musicians,@EllaHenderson,"RT @BBCR1: ""I can't do this anymore..."" 😂 + +Scott & Chris made @JamesArthur23 prank call tour mate @EllaHenderson using speech jammer and it…" +09/15/2017,Musicians,@EllaHenderson,Congrats @samsmithworld for going No.1 in UK!! ❤️❤️❤️ have an amazing show tonight 😘. E x https://t.co/GaY3lTFOqw +09/11/2017,Musicians,@EllaHenderson,So I watched 'IT' the movie last night in 4DX ... 🤡 I'm now officially terrified of clowns. https://t.co/AgPKRFSwED +09/11/2017,Musicians,@EllaHenderson,My thoughts & prayers are with you & your family gorgeous girl ❤️❤️❤️❤️❤️ xxx lots of love & a big hug ... Ella x https://t.co/XltZAjsDlk +08/18/2017,Musicians,@EllaHenderson,It's definitely that #FridayFeeling ... @annalingis !! X x. E. X https://t.co/QnuYIwr4hb +08/07/2017,Musicians,@EllaHenderson,@Annaloveskat @JessieWare @SpotifyUK @Spotify Love it 😍 +08/06/2017,Musicians,@EllaHenderson,Obsessed 😍🔥 @JessieWare @SpotifyUK @Spotify 🎵🎵 x E https://t.co/4eqHWBFUon +08/03/2017,Musicians,@EllaHenderson,RT @LincsFM: @EllaHenderson We can't wait to hear it! 😁 x +08/02/2017,Musicians,@EllaHenderson,Writing this album has & still is one of the most incredible creative processes I will ever go through in life... I can't wait for u to hear +08/02/2017,Musicians,@EllaHenderson,My two faves @thescript & @JPCooperMusic 🙌🏼🙌🏼 x. X. E https://t.co/C3l6v8TOo2 +07/18/2017,Musicians,@EllaHenderson,This makes me so happy... Because flaws are ok 👌🏼@ASOS x x. E https://t.co/YNrrqHmoQ1 +06/21/2017,Musicians,@EllaHenderson,Lets spread the LOVE today ❤️❤️❤️ .... https://t.co/pMssH17qOg xxx. E Donate here: https://t.co/J1KejsYUiG +06/20/2017,Musicians,@EllaHenderson,"RT @SimonCowell: As well as buying the single, we hope people can support those affected by the Grenfell fire by donating. https://t.co/071…" +06/20/2017,Musicians,@EllaHenderson,"RT @SimonCowell: Tomorrow at 8am across major UK radio stations, you will be able to hear Bridge Over Troubled Water. https://t.co/Bgg8u6oU…" +06/20/2017,Musicians,@EllaHenderson,"RT @officialcharts: .@SimonCowell confirms Grenfell Tower charity single, featuring @Louis_Tomlinson, @EllaHenderson & loads more: https://…" +06/01/2017,Musicians,@EllaHenderson,Amazing https://t.co/vH1rQ0iuFY +05/26/2017,Musicians,@EllaHenderson,@LincsFM Have a fabulous bank holiday!! Xx I'll come in to see you & play you the new music soon ;) x. Till then- e… https://t.co/1oNPD4JvTu +05/26/2017,Musicians,@EllaHenderson,Feels good to be home 🌳🍃🌺🌸Lincolnshire !! X @LincsFM x. E https://t.co/jVrYxQpNgj +05/25/2017,Musicians,@EllaHenderson,I just can't process this right now... my heart is broken. Love to all the families that have lost their loved ones… https://t.co/8lkJf5Qw3a +05/23/2017,Musicians,@EllaHenderson,🙏🏼 https://t.co/7OGmJgfzXN +05/23/2017,Musicians,@EllaHenderson,RT @ollyofficial: No one should go to a concert and never come home 💔 +05/22/2017,Musicians,@EllaHenderson,Sending love & prayers to anyone affected by the Ariana concert tonight 🙏🏼 #ConcertsShouldBeSafe x. E +05/22/2017,Musicians,@EllaHenderson,Excited to be part of the @fusionfest line up this year! Tickets go on sale this Friday!! Link here...… https://t.co/0yobTfMPhJ +05/19/2017,Musicians,@EllaHenderson,Time flies ... 5yrs on .. 🎼❤️ @nilerodgers @sonyatvpubuk x. E https://t.co/ib71kuqYnG +05/15/2017,Musicians,@EllaHenderson,"RT @MileyCyrus: #Malibu is available now!!! @AppleMusic - https://t.co/qAciiFlJcg +@Spotify - https://t.co/6aqG2oEfZs https://t.co/Sfx9GcxCjS" +05/15/2017,Musicians,@EllaHenderson,Fucking love this songgg!! I have to meet you one day @MileyCyrus ... So nice to see & feel honesty❤️ x. E https://t.co/PTzR84Je3a +05/10/2017,Musicians,@EllaHenderson,We're all human. Same wants ... same needs... similar desires... & we all love making love. 🌍❤️ x. E https://t.co/h79zD0ZRkq +05/06/2017,Musicians,@EllaHenderson,HAHAAAAA https://t.co/OoqN7uE0ZO +05/03/2017,Musicians,@EllaHenderson,RT @edsheeran: London night #3 ! https://t.co/BNgEpBHTzQ +05/03/2017,Musicians,@EllaHenderson,INCREDIBLE. As always @edsheeran ➗🎼💪🏼 X. E https://t.co/B9H1wcM4qO +05/02/2017,Musicians,@EllaHenderson,Love is a losing game ❤️ ... when Amy comes on in the cab & you're reminded that females can make such a difference to the world🎼 x E X +04/27/2017,Musicians,@EllaHenderson,Such an amazing week in Copenhagen X 🎼 x. E https://t.co/i0d9g08jO7 +04/20/2017,Musicians,@EllaHenderson,#1in4 of us will experience mental health issues. I’m helping @BBCR1 spread the message. Let's stop the stigma! x X… https://t.co/cG0v9RdQFc +04/17/2017,Musicians,@EllaHenderson,RT @CalvinHarris: This shouldn't work but somehow 🤔 https://t.co/4FOrCzxEiy +04/14/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Great day in the studio today with @TMSLDN and @EllaHenderson thanks for drawing on my piano tonight Ella! #NBAAllStar 😉 +04/06/2017,Musicians,@EllaHenderson,@nadiadkins Love @zaralarsson ❤️ +04/06/2017,Musicians,@EllaHenderson,@NicoLovesElla Honesty +04/06/2017,Musicians,@EllaHenderson,@ShanMcA2 anything with Rachel Mcadams !!! ❤️❤️❤️😢😢😢 x. E +04/06/2017,Musicians,@EllaHenderson,@ohitskatieeee Well this tour... it will be performing the new music for the first time!! X +04/06/2017,Musicians,@EllaHenderson,@restyourlouve This song!!!! X obsessed 😍😍 https://t.co/xBDZGenO4e +04/06/2017,Musicians,@EllaHenderson,@ShanOdonnellX Yayyy!! X can't wait !! X. E +04/06/2017,Musicians,@EllaHenderson,@welshmixer_tich 😘😘 +04/06/2017,Musicians,@EllaHenderson,@SEXGRAHAM @JamesArthur23 Of course!!! It's gonna be such a good tour... you coming? X. E +04/06/2017,Musicians,@EllaHenderson,@enchantedlerrie @edsheeran ⭐️⭐️⭐️ +04/06/2017,Musicians,@EllaHenderson,@meganfowlerr12 Soon!! I can't give any specific date yet ...it's changing constantly ... but I feel like I'm bout… https://t.co/fGx42AqSVV +04/06/2017,Musicians,@EllaHenderson,💧💔👄 https://t.co/PqzAKPolH7 +04/06/2017,Musicians,@EllaHenderson,@NicoLovesElla I do 😘👀👀 !! You will know about it soon ! X. E +04/06/2017,Musicians,@EllaHenderson,@kardashianxslay ❤️❤️❤️ +04/06/2017,Musicians,@EllaHenderson,Ok ... 3 1/2 hours late ... but I'm here!! Hit me with the Qs !! X. E +04/06/2017,Musicians,@EllaHenderson,👧🏼 Have a good day guys 😘 x. E gonna be back for 12pm if anyone wants a chat! X. E https://t.co/22Pit2nO3b +04/05/2017,Musicians,@EllaHenderson,RT @stayceexa: Tickets purchased for @JamesArthur23 arena tour. Twice in one year #happylady cant wait to see @EllaHenderson 😍 +04/05/2017,Musicians,@EllaHenderson,Yes!! 🙌🏼 @Pharrell @ArianaGrande @CalvinHarris https://t.co/rz2V8F7SdB +04/04/2017,Musicians,@EllaHenderson,@culeix Hey Poland !! X 👋🏼 x. E +04/04/2017,Musicians,@EllaHenderson,@sjtn_514 I can't wait for you to hear it!! #EllaAlbum2 x. E +04/04/2017,Musicians,@EllaHenderson,For sure 😂😂😂 https://t.co/gwsXJ1KTP4 +04/04/2017,Musicians,@EllaHenderson,@jodeyagg @Sarahjanevg 🙌🏼🙌🏼🙌🏼. X E +04/04/2017,Musicians,@EllaHenderson,RT @All_stars92: @EllaHenderson Saw @JamesArthur23 perform live in London recently... night have to but more tickets to witness the great @… +04/03/2017,Musicians,@EllaHenderson,@mattycaplin 😘😘 +04/03/2017,Musicians,@EllaHenderson,"RT @EchoArena: NEWS: @JamesArthur23 brings his #BackFromTheEdge tour here on 17 November and will be joined by @EllaHenderson! +https://t.c…" +04/03/2017,Musicians,@EllaHenderson,"RT @hotpress: . @JamesArthur23 set for @3arenadublin with the help of @EllaHenderson +https://t.co/em8OrrLeQW" +04/03/2017,Musicians,@EllaHenderson,"RT @Georgie2306: Can't wait to recreate this one day, hopefully it will be soon 🙏🏻 miss you ❤️💜 @EllaHenderson https://t.co/yd1w4gVvbI" +04/03/2017,Musicians,@EllaHenderson,@ShanOdonnellX See you then 😘😘 (hopefully before 😉 #Album2 ) x X. E +04/03/2017,Musicians,@EllaHenderson,Album 2 .... is close ;) x. E https://t.co/F3KFfMAa8Q +04/03/2017,Musicians,@EllaHenderson,@Lucyell_xo Yesss!! 😘😘🎶🎶🙌🏼 x. E +04/03/2017,Musicians,@EllaHenderson,Yayyy!! We need to catch up way before then babe !! @DaniellePeazer X X. E https://t.co/6SqpgB22pN +04/03/2017,Musicians,@EllaHenderson,RT @unrealitytv: .@JamesArthur23 & @EllaHenderson are going on tour together! https://t.co/OPQ4Ebu9jd https://t.co/48BQ2AnffD +04/03/2017,Musicians,@EllaHenderson,Well this is gonna be fun... @jamesarthurinsta23 UK ARENA TOUR this November!! ... tickets go on sale this Friday!… https://t.co/fUKuJbQC0x +04/03/2017,Musicians,@EllaHenderson,🔥🔥🔥 https://t.co/5n2Bhc3Ja7 +04/01/2017,Musicians,@EllaHenderson,My winner .... @meeshjohn 👸🏽 wow... stunning voice & stunning woman 🙌🏼 @thevoiceuk x. E +03/21/2017,Musicians,@EllaHenderson,It's onnnn @Chris_Stark @scott_mills 💦💦 !! X E https://t.co/UREatF1c9P +03/21/2017,Musicians,@EllaHenderson,Ahhh @scott_mills @BBCR1 I'm so coming back for #InnuendoBingo Round 2 soon with #Album2 🙏🏼 xx E… https://t.co/1u1Cwspahn +03/21/2017,Musicians,@EllaHenderson,I'm ready when @cleanbandit are! 👀😘 x E https://t.co/42EUND0Lpl +03/20/2017,Musicians,@EllaHenderson,@shafiqnajib 😘 can't wait for summer 2017!! X x. E +03/17/2017,Musicians,@EllaHenderson,Happy St Paddys Day @thismorning 😂💚💚🍀 ... you never fail to have me breaking into laughter @Rylan !! #LoveYouAll x.… https://t.co/VBa6r0mqwY +03/07/2017,Musicians,@EllaHenderson,#Life https://t.co/XDmj98hKe0 +02/21/2017,Musicians,@EllaHenderson,RT @NeilOrmandy: @EllaHenderson @SILOMusicTV @StvnSolomon @PrettyGreenltd #studiotime 🇬🇧🤘🏻 https://t.co/E6jENanhOz +02/20/2017,Musicians,@EllaHenderson,That green lighting though... Shrek made me his Fiona!! Haha 😂 fun times with the family 💚@ShreksAdventure xx. E https://t.co/EBGFpLWnd3 +02/20/2017,Musicians,@EllaHenderson,Hope you all had a great Monday👊🏼 x. E https://t.co/52heIgbVA1 +02/19/2017,Musicians,@EllaHenderson,Family time❤️😝🍃 @RainforestCafe x. E https://t.co/NIcKJeJgdj +02/15/2017,Musicians,@EllaHenderson,"Drake, you have to be one of the best artists I've ever seen live!! Incredible show tonight! #StartedFromTheBottom… https://t.co/Ku4WXEQiwZ" +02/14/2017,Musicians,@EllaHenderson,😂 Happy Alentines Ay ❤️ xx E https://t.co/VnOoG0R3qg +02/03/2017,Musicians,@EllaHenderson,❤️🎶🎶🎶 was a pleasure! Let's catch up soon! X E https://t.co/fYI9MN4ZYR +01/27/2017,Musicians,@EllaHenderson,🎶 https://t.co/6dCXe7DHJs +01/11/2017,Musicians,@EllaHenderson,@MusicTvOfficial need to get myself over to Italy 🇮🇹... maybe for #EllaAlbum2 ;) x. E +12/20/2016,Musicians,@EllaHenderson,@isthatperryd aww haha!! Not to worry ! I'll be back! 🙌🏼❤️ x. E +12/15/2016,Musicians,@EllaHenderson,Oh Christmas Tree 🎄 https://t.co/SXVxKHpRCN +12/11/2016,Musicians,@EllaHenderson,❤️🙏🏼 #JustHoldOn Sending love & congrats on the new tune! ✨ @Louis_Tomlinson @steveaoki xxxx. E X. X +12/10/2016,Musicians,@EllaHenderson,@RagNBoneManUK @brits congrats Mr!!! 💛💛🙏🏼🙏🏼 x. E +12/10/2016,Musicians,@EllaHenderson,"RT @brits: It was tough, but the winner of #BRITs 2017 Critics' Choice Award is the amazing @RagNBoneManUK! Congratulations!! 🙌 https://t.c…" +12/10/2016,Musicians,@EllaHenderson,"Just watching back #CapitalsJBB & @BrynChristopher you absolutely smashed it!! Those vocals 🙌🏼🔥🔥 on ""Sweet Lovin"" @SigalaMusic !!! E. x." +12/03/2016,Musicians,@EllaHenderson,❤️❤️❤️ https://t.co/i9Cz7kxS7k +12/03/2016,Musicians,@EllaHenderson,Obsessed with this ... my mood right now @lizzo !! ❤️🌟🌎 https://t.co/K1aKvzeQwR +12/02/2016,Musicians,@EllaHenderson,🙏🏼 https://t.co/kqspfLCz8Y +11/29/2016,Musicians,@EllaHenderson,"🦄when I love, it's like fire in my bones https://t.co/HC845TmNHH" +11/22/2016,Musicians,@EllaHenderson,@BethanSellers need this for my Insta +11/16/2016,Musicians,@EllaHenderson,@ASCAPUK @ASCAP ❤️🙏🏼🙏🏼🙏🏼 xx E +11/15/2016,Musicians,@EllaHenderson,Me & my very first @ASCAPUK award!! Thank you so much 🏆🏅💛🙏🏼 x. X x makes me so excited for Album 2 now!! X. E https://t.co/djqKLyhp0S +11/14/2016,Musicians,@EllaHenderson,🙏🏼👀 https://t.co/sRHYcGnHe7 +11/11/2016,Musicians,@EllaHenderson,"RT @CapitalLONnews: Congrats to @yearsandyears, @MNEK, @JessGlynne & @EllaHenderson who have all won @ASCAPUK awards for songwriting #Capit…" +11/09/2016,Musicians,@EllaHenderson,🐶 https://t.co/veEcb7Ixx4 +11/06/2016,Musicians,@EllaHenderson,Sick performance!! 🙏🏼🙌🏼🙌🏼🙌🏼@mtvema @OneRepublic E. x +11/06/2016,Musicians,@EllaHenderson,RT @mtvema: What a DREAMY @OneRepublic performance ☔️💙☁️ https://t.co/av0Y7ApEdO +10/31/2016,Musicians,@EllaHenderson,Such a fun night @Tulleys_Shock 🎉👻☠️💛x. E https://t.co/ZdM3kCgWI2 +10/25/2016,Musicians,@EllaHenderson,@Rylan happy birthday gorgeous 🎈🎉🎉🎉 xx E +10/23/2016,Musicians,@EllaHenderson,Flawless performance @calumscott on #XtraFactor @TheXFactor tonight! X. E +10/22/2016,Musicians,@EllaHenderson,🔥🔥🔥 https://t.co/OvQdJGNoZh +10/21/2016,Musicians,@EllaHenderson,@thismorning @Rylan 💛 ... see you soon with Album 2 😘 x. E +10/21/2016,Musicians,@EllaHenderson,""" I once gave up bread- don't judge, I was frail"" - @emilywarrennnn 🙌🏼😂🙏🏼💛 x. E" +10/21/2016,Musicians,@EllaHenderson,Getting ready for studio today... & got @thismorning on in the background... @Rylan - YOU MAKE MY DAY😂😂😂 #TGIF x. E +10/19/2016,Musicians,@EllaHenderson,HUGE THROWBACK!! Two years ago today my album Chapter One went Number One in the UK official charts!! E. X https://t.co/9OaPp3Jjfp +10/12/2016,Musicians,@EllaHenderson,Bye Finland 👋🏼🇫🇮✈️...Until next time! X. E https://t.co/0the3EJdAK +10/11/2016,Musicians,@EllaHenderson,"RT @qatarairways: Helsinki, we've arrived! Our first flight to Finland has officially landed, and we can't wait to start exploring. #Helsin…" +10/11/2016,Musicians,@EllaHenderson,Had such a great time tonight performing at the @qatarairways #HelsinkiTogether gala. Can't wait to fly with them s… https://t.co/Br8wh6JwHA +10/08/2016,Musicians,@EllaHenderson,What an incredible evening dining with an elephant ❤️🐘 @RainforestCafe x E https://t.co/pX4lwWTH8l +10/04/2016,Musicians,@EllaHenderson,Too much talent ... can't handle @JoeJaniak x x E https://t.co/ORZI3qTtJf +10/04/2016,Musicians,@EllaHenderson,💯👊🏼 https://t.co/yrrJfOttaU +10/01/2016,Musicians,@EllaHenderson,Current vibes @JaxJones @ministryofsound #SaturdayNight x. E https://t.co/jSH8dJULO7 +10/01/2016,Musicians,@EllaHenderson,Good morning to the weekend ☕️ @NespressoUK x x. E https://t.co/ShXRRnN2fT +09/30/2016,Musicians,@EllaHenderson,@SeanKMooney love my 🍍🍍 it's in my fruit bowl !! X. E +06/30/2018,Musicians,@samsmithworld,Driver roll up the partition please https://t.co/tOFcVhSLl8 +06/29/2018,Musicians,@samsmithworld,So ready for this https://t.co/aHqHFr5h7t +06/29/2018,Musicians,@samsmithworld,MSG 🙌🏻 https://t.co/OCwjH2Adat +06/27/2018,Musicians,@samsmithworld,Boston. Had me in tears last night. Brooklyn tonight. Can’t fucking wait x https://t.co/Sh8XOMUJ5I +06/21/2018,Musicians,@samsmithworld,"Beautiful people. Me and my wonderful friends filmed a special video for Baby You Make Me Crazy in Verona, one of t… https://t.co/6aF2bi6wvx" +06/19/2018,Musicians,@samsmithworld,Montreal. The sun is out and we can’t wait for tonight x pic by @jamesmsbarber https://t.co/TaGMFDGuJe +06/17/2018,Musicians,@samsmithworld,Beautiful few weeks off in California. Ready to kick off our North American tour in @Drake‘s Kingdom - Toronto - TO… https://t.co/t9aBgu2PSL +06/17/2018,Musicians,@samsmithworld,"There's dread in my heart +And fear in my bones +I just don't know what to say https://t.co/p7tIllhWiz" +06/15/2018,Musicians,@samsmithworld,Too Good At Goodbyes. The Thrill Of It All 🖤 https://t.co/ox0CoCL0gm https://t.co/oMZMzS3hyf +06/14/2018,Musicians,@samsmithworld,💚Always and forever in our hearts https://t.co/xwu5U4t0QM +06/13/2018,Musicians,@samsmithworld,"Shanghai x +Bringing The Thrill Of It All World Tour to you this October. Tickets go on sale 10am local 22nd June 🖤 https://t.co/qajdM4PKCF" +06/13/2018,Musicians,@samsmithworld,THRILLS https://t.co/SLUNn8UCo2 +06/12/2018,Musicians,@samsmithworld,https://t.co/80njGEj0U1 +06/11/2018,Musicians,@samsmithworld,"#TheThrillOfItAllWorldTour North America +ONE WEEK!! +I've missed performing for you so much, can't wait to see all y… https://t.co/pwQra7nhss" +06/11/2018,Musicians,@samsmithworld,"Bangkok 🖤 +So excited to see you this October! Tickets go on sale June 30th x https://t.co/s08FFw75oy" +06/10/2018,Musicians,@samsmithworld,"Music was my first love, and it will be my last https://t.co/HQ2gb2lgXO https://t.co/JfzNtE6xSn" +06/07/2018,Musicians,@samsmithworld,"Bejing x +Tickets for my show at Cadillac Center have just gone on sale https://t.co/j7KEXaFGc8 See you in October 🖤 https://t.co/S5IVZSavMQ" +06/05/2018,Musicians,@samsmithworld,https://t.co/2elJz6hvAm +06/03/2018,Musicians,@samsmithworld,Why am I so emotional +06/01/2018,Musicians,@samsmithworld,This made me cry xx thank you so much xx https://t.co/fOdILPzBDj +05/31/2018,Musicians,@samsmithworld,"Beijing! So excited to bring The Thrill Of It All World Tour to you 🖤 Tickets go on sale 10am, June 7th x https://t.co/26DQOQVMJq" +05/29/2018,Musicians,@samsmithworld,‘Me and my confidence. We are now more than friends. We’re growing up slowly’ - @mariamena_no +05/27/2018,Musicians,@samsmithworld,"RT @BBCR1: We laughed, we cried (a lot) - that performance had it all @samsmithworld 👏 + +We're no good at goodbyes - so let's just say see y…" +05/27/2018,Musicians,@samsmithworld,RT @huwstephens: Last week I was in a shop in Swansea and the nice ladies there said ‘Can you deliver a Love Spoon to Sam Smith from our fr… +05/24/2018,Musicians,@samsmithworld,"SATURDAY 🖤 +@BBCR1 https://t.co/4z2xsN1QTM" +05/21/2018,Musicians,@samsmithworld,"Shooting PRAY. +Thank you to everyone watching the official video, over 10 million views 🖤 +https://t.co/HcJ1gbuou9 https://t.co/dFe7BFerfl" +05/21/2018,Musicians,@samsmithworld,"PRAY live on The Thrill Of It All World Tour x +These shows have been INCREDIBLE. North America next 🖤 https://t.co/GQ5LsZUHjz" +05/21/2018,Musicians,@samsmithworld,@adamlambert ❤️ +05/21/2018,Musicians,@samsmithworld,@TheEllenShow LOVE YOU ELLEN X +05/21/2018,Musicians,@samsmithworld,"RT @TheEllenShow: Happy birthday, @samsmithworld! I hope you have a year filled with joy and an album filled with heartbreak." +05/19/2018,Musicians,@samsmithworld,Thank you so much to everyone donating to @WarChildUK for my 26th Birthday. There’s still a few hours of the fundr… https://t.co/3MOJM6QY5X +05/19/2018,Musicians,@samsmithworld,Xx https://t.co/9HBKKRAmtU +05/19/2018,Musicians,@samsmithworld,Thank you x https://t.co/au1Oi9XsZx +05/19/2018,Musicians,@samsmithworld,TWENTY - SIX https://t.co/P1rSnELeL3 +05/19/2018,Musicians,@samsmithworld,It’s my birthday and I’ll cry if I want to https://t.co/BaGIeht1ad +05/17/2018,Musicians,@samsmithworld,Australia & New Zealand... the gorgeous @PalomaFaith will join me for my #TheThrillOfItAllWorldTour shows. Such an… https://t.co/Hlia20Cfow +05/17/2018,Musicians,@samsmithworld,THANK YOU SO MUCH to everyone who's donated to my 26th Birthday fundraiser for @WarChildUK... just two days to go!!… https://t.co/jJceE6FpMm +05/16/2018,Musicians,@samsmithworld,Blue https://t.co/V0VgaXmZ8r +05/15/2018,Musicians,@samsmithworld,🖤 @WarChildUK https://t.co/B1LDXwJzOW +05/14/2018,Musicians,@samsmithworld,"Italy x the last few shows have been out of this universe. Thank you for giving me your all. I’m so thankful, and f… https://t.co/8gntbI1JCh" +05/12/2018,Musicians,@samsmithworld,Thank you all so much for my birthday donations to @WarChildUK so far 🖤 Just one week left for us to hit our target… https://t.co/VXBL5lZbXd +05/11/2018,Musicians,@samsmithworld,"North America... x +So excited to see you again next month for The Thrill Of It All World tour! You can find shows… https://t.co/lmj9c40jNG" +05/11/2018,Musicians,@samsmithworld,RT @HYPEBEASTMusic_: .@samsmithworld and @Logic301's @Timbaland-produced single gets a reflective visual https://t.co/pGJ9Jh5sRr +05/10/2018,Musicians,@samsmithworld,Im not a saint. Im more of a sinner. https://t.co/HcJ1gbLZlH https://t.co/XHzzUlOyCS +05/10/2018,Musicians,@samsmithworld,"RT @RecordingAcad: What better music video backdrop for a spiritual track such as ""Pray"" than an Italian villa? Directed by @JoeVConnor, @S…" +05/10/2018,Musicians,@samsmithworld,BELLA VITA 🇮🇹 https://t.co/62pQGbm5fE +05/10/2018,Musicians,@samsmithworld,"Singapore! My October 2nd show has sold out, thank you all 🖤 We've just added a second date at Singapore Indoor Sta… https://t.co/WwM9smCODC" +05/09/2018,Musicians,@samsmithworld,"PRAY ft @Logic301 x +https://t.co/DNZcBpAAiM" +05/09/2018,Musicians,@samsmithworld,"I'm so happy to share this with you... the official video for PRAY ft @Logic301 https://t.co/HcJ1gbuou9 +The vision… https://t.co/IPAauIx0Aa" +05/09/2018,Musicians,@samsmithworld,"PRAY. +OFFICIAL VIDEO 6PM BST +@Logic301 https://t.co/LQntZfiuui" +05/08/2018,Musicians,@samsmithworld,CANNOT WAIT for you to see this. Pray feat. @Logic301 official video. TOMORROW https://t.co/B32oW7irMu +05/08/2018,Musicians,@samsmithworld,£26K – could support 85 families in Yemen for 4 months OR could pay for 300 children to attend a Child Friendly Space for a month. +05/08/2018,Musicians,@samsmithworld,"They can play, learn and gain the support of specialist child protection staff who can help them deal with all they have faced." +05/08/2018,Musicians,@samsmithworld,£10K - could pay for 150 children to attend a Child Friendly Space for a month. Keeping them off the streets and in… https://t.co/96EbUjGavi +05/08/2018,Musicians,@samsmithworld,5K - could save 5 children's lives by reuniting them with their family or being placed in a safe foster family. +05/08/2018,Musicians,@samsmithworld,"Please share this link, spread the word and donate what you can. +https://t.co/B1LDXwJzOW +Again, a huge thank you fo… https://t.co/DAlKpW0AvZ" +05/08/2018,Musicians,@samsmithworld,Guys... Thank you so so much for your donations. It means the world to see such incredible support for such an impo… https://t.co/JtAwJySvE5 +05/05/2018,Musicians,@samsmithworld,Release the leg type of day https://t.co/ty0n0eKdNj +05/04/2018,Musicians,@samsmithworld,"Pray feat @Logic301 +Thank you for all the love you've shown this track. It was amazing to collaborate with Logic, a… https://t.co/MRpqpYyTbJ" +05/03/2018,Musicians,@samsmithworld,TOMORROW @spotify @Logic301 https://t.co/P0OMvfgoqD +05/03/2018,Musicians,@samsmithworld,"RT @PearlThusi: Sam smith. Any time. ANY.TIME.!!!!!!! +“Nothing left for you.” @samsmithworld ❤️❤️❤️ https://t.co/jKmErX2de9" +05/02/2018,Musicians,@samsmithworld,"PRAY +https://t.co/m8xpKAiaG8 https://t.co/D3oMT0u1UL" +05/02/2018,Musicians,@samsmithworld,"Singapore, I’m so excited to bring The Thrill Of It All World Tour to you. Tickets are on sale now… https://t.co/uOVuQV4kF1" +05/01/2018,Musicians,@samsmithworld,Me and my divas https://t.co/a1eSEkG3LD +05/01/2018,Musicians,@samsmithworld,Paris🌹photo by @jamesmsbarber https://t.co/EiT8LB1uPD +05/01/2018,Musicians,@samsmithworld,Hello beautiful people.. Plans are underway to open an LGBTQ centre in East London - this will be a safe & support… https://t.co/RcxlJc68vr +04/30/2018,Musicians,@samsmithworld,"I'm Still Standing, the @eltonofficial Special, airs on @ITV tonight at 10.45pm. Such an honour to be a part of thi… https://t.co/tHyC43Ynx8" +04/29/2018,Musicians,@samsmithworld,...who have been affected both physically and mentally by war. Let’s keep donating and spreading the word. Love is… https://t.co/vQCIq8wvpZ +04/29/2018,Musicians,@samsmithworld,Happy Sunday everyone. I’m absolutely blown away and so touched by all your donations already! Thank you all for yo… https://t.co/suIsMtghOK +04/24/2018,Musicians,@samsmithworld,Day off in Berlin. Not leaving this spot https://t.co/aHOfoUpzga +04/24/2018,Musicians,@samsmithworld,Was so lovely to sit down with @george_ezra a few weeks ago and do his podcast xxxx it’s out now!! George Ezra and… https://t.co/clvcLIBi62 +04/24/2018,Musicians,@samsmithworld,Oslo. Thank you so much x I love you all. https://t.co/FZ25AGQjg9 +04/22/2018,Musicians,@samsmithworld,I want to live in Copenhagen https://t.co/buNE2AiuKN +04/22/2018,Musicians,@samsmithworld,@charlieputh Can’t wait to hear it sir x +04/21/2018,Musicians,@samsmithworld,@natashabdnfield ❤️😭❤️ +04/20/2018,Musicians,@samsmithworld,I have just found out that ‘Too Good At Goodbyes’ has sold 10 MILLION COPIES worldwide. My heart is crying right no… https://t.co/hph1QJEUIc +04/20/2018,Musicians,@samsmithworld,"RT @camcountry: Ok you asked for it, so I made my version of Palace available everywhere! (Spotify, iTunes, Apple Music, Google Play, Amazo…" +04/20/2018,Musicians,@samsmithworld,Last night in Stockholm x https://t.co/renJtSIKkJ +04/19/2018,Musicians,@samsmithworld,The European tour BEGINS 🚀 xx Stockholm that blew my mind. Thank you for singing your hearts out and coming away wi… https://t.co/ROJjcuWc1v +04/19/2018,Musicians,@samsmithworld,Me and my wonderful singing teacher Yvie Burnett x my life saver on this tour https://t.co/w4ADaxebPM +04/18/2018,Musicians,@samsmithworld,"Maybe I’ll pray... +https://t.co/m8xpKAiaG8 https://t.co/P85KCYivsP" +04/18/2018,Musicians,@samsmithworld,“Gratitude is riches. Complaint is poverty.” - Doris Day +04/18/2018,Musicians,@samsmithworld,"RT @BBCR1: 🔁 @claraamfo wants to rewind a @SamSmithWorld cover from the Live Lounge at midday, but which one to choose?! + +@EdSheeran, @Pin…" +04/18/2018,Musicians,@samsmithworld,"Seoul, so excited to bring The Thrill Of It All World Tour to you this October. Tickets are on sale now… https://t.co/Z7hCaKGWUX" +04/17/2018,Musicians,@samsmithworld,MANILA! Tickets for my show at @MOAArena are on sale now https://t.co/gKgYsJFfRa. So excited to see you x… https://t.co/WcrpZ1fLKs +04/16/2018,Musicians,@samsmithworld,Curls https://t.co/T5Isaban4g +04/15/2018,Musicians,@samsmithworld,❤️🌹@JohnNewmanMusic https://t.co/RzhzYaF3Ye +04/15/2018,Musicians,@samsmithworld,Beyoncé at coachella looks out of this world 🔥🌹❤️ +04/14/2018,Musicians,@samsmithworld,@aaronamoso03 See you there babe x +04/14/2018,Musicians,@samsmithworld,RT @aaronamoso03: gotta spoil your best friend sometimes😁 ready for @samsmithworld ! https://t.co/j3nDwl5YpL +04/12/2018,Musicians,@samsmithworld,I love these humans so fucking much. https://t.co/egWOX2ti35 +04/11/2018,Musicians,@samsmithworld,@AttitudeMag ❤️❤️❤️❤️❤️❤️❤️❤️ +04/11/2018,Musicians,@samsmithworld,@littlebigtown Thank you ❤️❤️ you guys are sensational 🌹🌹🌹🌹🌹🌹🌹🌹 +04/10/2018,Musicians,@samsmithworld,"TONIGHT. Watch the @eltonofficial special 'I'm Still Standing' from 9pm on @CBS, in celebration of the new album… https://t.co/bTDh4gOIia" +04/08/2018,Musicians,@samsmithworld,"RT @HenryFricker: @samsmithworld was just awe inspiring last night. One of the best concerts I’ve witnessed, thank you 🙏🏼 https://t.co/V65w…" +04/08/2018,Musicians,@samsmithworld,RT @jemmataylxr: Just when I thought I couldn’t love @samsmithworld more than I did. Last night was incredible 🖤 https://t.co/3kd8nTFGUe +04/08/2018,Musicians,@samsmithworld,"RT @camcountry: ✨ P A L A C E ✨ +Live from London tonight with @samsmithworld @TheO2 https://t.co/7RXNQ4VUIK" +04/07/2018,Musicians,@samsmithworld,En route x https://t.co/8SCPsi4plk +04/07/2018,Musicians,@samsmithworld,RT @MrBrunoMajor: Tonight will be my final arena show with @samsmithworld ...see you onstage at 7:45pm 🌙✨ 📸 @andytsv https://t.co/bRfWp9mOpL +04/07/2018,Musicians,@samsmithworld,RT @TfLRail: @SamSmithworld plays @TheO2 this evening. You may ask us How Will I Know travel plans to see him? That’s easy. Just click here… +04/07/2018,Musicians,@samsmithworld,@camcountry @TylerSamJ You are out of the world. Honoured to have you on stage & know you and call you a friend x +04/07/2018,Musicians,@samsmithworld,"RT @camcountry: Wrote #Palace with @samsmithworld & @TylerSamJ...and tonight, I got to sing it w/Sam for the 1st time...AT THE O2!!! 😭 + +Sam…" +04/07/2018,Musicians,@samsmithworld,RT @TheO2: That moment when #TheO2 lights up with @samsmithworld ✨😍 https://t.co/NQLoeNJlH6 +04/06/2018,Musicians,@samsmithworld,LONDON. LET’S GO https://t.co/Qo2rVLKRIp +04/06/2018,Musicians,@samsmithworld,#TheThrillOfItAllWorldTour https://t.co/oe6kLPTtBd +04/05/2018,Musicians,@samsmithworld,Gratitude +04/05/2018,Musicians,@samsmithworld,BIRMINGHAM 🌹Thank you so much for two beautiful shows xxxxxx I love you with all my heart. Singing scars in the cit… https://t.co/0nkKM2aKDy +04/05/2018,Musicians,@samsmithworld,@MrBrunoMajor I love you Bruno xx so honoured to tour with you man!! ❤️ +04/04/2018,Musicians,@samsmithworld,@paulaparsons45 @joeykanowee1 Love you xx miss you xx +04/03/2018,Musicians,@samsmithworld,RT @supadupastacey: @samsmithworld HIM was EVERYTHING! Love IS Love 🏳️‍🌈 my Him is a her and I too am PROUD 🏳️‍🌈❤️ +04/03/2018,Musicians,@samsmithworld,@_alicetilly ❤️thank you x +04/03/2018,Musicians,@samsmithworld,RT @caitlin_bean: i aspire to be as dramatic as @samsmithworld was tonight +04/03/2018,Musicians,@samsmithworld,"RT @amazonmusic: .@samsmithworld gives ""Pray"" a remix, with @Logic301 making a guest appearance. #JustAsk, ""Alexa, play the Song of the Day…" +04/03/2018,Musicians,@samsmithworld,MERCH https://t.co/llZMvCK4jc +04/03/2018,Musicians,@samsmithworld,Thank you @claraamfo. Pray feat. Logic is Tune of the Week on @BBCR1 🖤 +04/02/2018,Musicians,@samsmithworld,Take me to your river https://t.co/PMFG2v5vej +04/02/2018,Musicians,@samsmithworld,🖤 https://t.co/A5deGXHvOf +04/02/2018,Musicians,@samsmithworld,Be real. Be you. Start your week of with a smile and a coffee everyone xx +04/01/2018,Musicians,@samsmithworld,Happy Easter from me and my chicken wings https://t.co/Tjun9k0tc9 +04/01/2018,Musicians,@samsmithworld,I love singing so much +04/01/2018,Musicians,@samsmithworld,"I'm young and I'm foolish, +I make bad decisions https://t.co/zvXxSgRt3a" +04/01/2018,Musicians,@samsmithworld,Farewell Ireland xx I’ll miss you +04/01/2018,Musicians,@samsmithworld,Listening to the lord of the rings film music. Howard Shore is a genius x +03/31/2018,Musicians,@samsmithworld,You lift my heart up https://t.co/cjOFpJ8Y4r +03/31/2018,Musicians,@samsmithworld,007 called and said we need EXTRA drama https://t.co/VHl8kahXoV +03/30/2018,Musicians,@samsmithworld,Honoured to have @Logic301 join me on PRAY. I’m such a fan of his work & his inspiring lyrics. Thank you logic for… https://t.co/0fwrC2lgP9 +03/29/2018,Musicians,@samsmithworld,@krischin Successful +03/29/2018,Musicians,@samsmithworld,RT @Logic301: This is the most important feature I've ever done. Writing from the perspective of someone who feels unwanted and un accepted… +03/29/2018,Musicians,@samsmithworld,RT @AnnieMac: ❤️🚀 https://t.co/tnojcIYLH1 +03/29/2018,Musicians,@samsmithworld,". @AnnieMac @BBCR1 today from 7.30pm 🖤🖤 +https://t.co/VH4XU9h0Md https://t.co/kz357aDQTq" +03/29/2018,Musicians,@samsmithworld,RT @AmiyahYoung: best thing to wake up to 😍😍😍 https://t.co/gQJOBnqYQP +03/29/2018,Musicians,@samsmithworld,"RT @getstiggywidit: Already loved Pray @samsmithworld but Logic 👌 brilliant choice, can’t wait to see you next Friday 🙌" +03/29/2018,Musicians,@samsmithworld,"Gorgeous people... my new single Pray featuring @Logic301 is officially out now 🖤🖤🖤 +Listen at:… https://t.co/TRM7He4zLM" +03/29/2018,Musicians,@samsmithworld,@thedannybeard ❤️ +03/29/2018,Musicians,@samsmithworld,I love my job. Thank you for making this tour possible x https://t.co/sv3UDdZKND +03/28/2018,Musicians,@samsmithworld,"PRAY ft @LOGIC301 +TOMORROW https://t.co/D28N6wZDLK" +03/28/2018,Musicians,@samsmithworld,Manchester. I am floating after last nights show! The energy was OUT OF THIS UNIVERSE! ❤️ Thank you xx https://t.co/MTo8V5gmM8 +03/27/2018,Musicians,@samsmithworld,"My new single is PRAY feat. @Logic301 +I am so excited for you to hear this new version of one of my favourite trac… https://t.co/9zad0CPcav" +03/27/2018,Musicians,@samsmithworld,So happy to announce I've partnered with @PLUS1org so £1 from every ticket on #TheThrillOfOtAllWorldTour goes to… https://t.co/2yIWDqR7FK +03/27/2018,Musicians,@samsmithworld,https://t.co/cihdAqKoE7 +03/26/2018,Musicians,@samsmithworld,"So happy and overwhelmed by the The Thrill Of It All shows!! +Thank you for supporting me, it honestly means so much… https://t.co/jSkZYqT8bI" +03/25/2018,Musicians,@samsmithworld,Grammys 2018 @Logic301 🌹 https://t.co/o7H6gKlR0u +03/24/2018,Musicians,@samsmithworld,RT @nwiggins02: Love this @TheSSEHydro all rainbow for the man himself @samsmithworld which by the amazing concert!!! Yeah I will keep twee… +03/24/2018,Musicians,@samsmithworld,@MsnHeyder ❤️❤️ +03/24/2018,Musicians,@samsmithworld,RT @lisamcd2612: Sing song in the clyde tunnel leaving glasgow hydro after seeing the fabulous @samsmithworld 😍💖 @chris101285 https://t.co/… +03/24/2018,Musicians,@samsmithworld,RT @Kaaayss: @samsmithworld didn't think I could love you any more than what I did but you just blew my mind tonight .. incredible 💖 #Glasg… +03/24/2018,Musicians,@samsmithworld,RT @honestlyspn: One of the most emotional parts of tonight. Such an amazing night. Thank you @samsmithworld for coming to Glasgow and allo… +03/24/2018,Musicians,@samsmithworld,"RT @SammyMactaggart: Another concert over with.... girlies had a great night! Have to say, the staff at Hydro are great too!! Great seats!!…" +03/23/2018,Musicians,@samsmithworld,RT @katycatcaitlin: @samsmithworld 💕💕💕💕what a night !!!! https://t.co/MpZOfNWPTd +03/23/2018,Musicians,@samsmithworld,RT @Leeziooooo: @samsmithworld I am proud to call myself a gay man in this generation 🏳️‍🌈 you made us feel at home and welcome and I thank… +03/23/2018,Musicians,@samsmithworld,I can’t believe the SS HYDRO did this!! Has made me so emotional 🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈… https://t.co/nHJz6WOFkQ +03/23/2018,Musicians,@samsmithworld,@wildfreckle It wasn’t me! It was the venue! So amazing 😭 +03/23/2018,Musicians,@samsmithworld,"RT @mandychic1: @samsmithworld iv been to loads of concerts, you have beaten them all by far !! what a night your voice gets you lost in th…" +03/23/2018,Musicians,@samsmithworld,RT @Jackkbbrennan: A full on spiritual experience at @samsmithworld tonight 🙌🏽 +03/23/2018,Musicians,@samsmithworld,RT @emilyosborneexo: @samsmithworld blew everyone away tonight!! So so amazing❤️❤️❤️ +03/23/2018,Musicians,@samsmithworld,"RT @PopCrave: 'The Thrill Of It All' by Sam Smith is now certified 2x PLATINUM in the UK. + +Congratulations, @samsmithworld! https://t.co/5F…" +03/23/2018,Musicians,@samsmithworld,"RT @EllieGelsthorpe: I have absolutely no words for how amazing @samsmithworld was tonight!! I’ve said it once and I’ll say it again, you c…" +03/23/2018,Musicians,@samsmithworld,"RT @AishaAToussaint: @samsmithworld Exceptional! You did it, I forgot about reality for the last two hours!" +03/23/2018,Musicians,@samsmithworld,"Pray holds a very very special place in my heart x +@Timbaland @JimmyNapes @AppleMusic https://t.co/yq9GhiWe4T" +03/23/2018,Musicians,@samsmithworld,For every show on the tour someone from my band or crew is choosing a record of the day. I'm so excited to be intro… https://t.co/HMAijFQspA +03/23/2018,Musicians,@samsmithworld,"RT @bpi_music: Big congrats to @samsmithworld as his latest album 'The Thrill Of It All' is now 2x Platinum in the UK! + +#bpiAwards + +💿🇬🇧 h…" +03/22/2018,Musicians,@samsmithworld,@ollielarrr Oh my gosh!! This is the most thing ever! CONGRATULATIONS. She is so beautiful 😭 I’m happy to have minorly helped Hahahaha +03/22/2018,Musicians,@samsmithworld,RT @ChenoaJanice: @samsmithworld so leave your history behind let's grab a bottle and ....❤️❤️ https://t.co/NIjZVbewpW +03/22/2018,Musicians,@samsmithworld,@george_ezra @JAMESMSBARBER ❤️ +03/22/2018,Musicians,@samsmithworld,"NEWCASTLE, you never ever ever disappoint. Last night was so wonderful x @JAMESMSBARBER #THETHRILLOFITALLUKTOUR https://t.co/GHuXMQVOxQ" +03/21/2018,Musicians,@samsmithworld,RT @jaimeGjrz: I really need to see @samsmithworld https://t.co/GVpItfFuJr +03/21/2018,Musicians,@samsmithworld,RT @NadineTaylor6: I didn’t think anyone would fill the void George left. Thanks @samsmithworld tonight in Newcastle you healed the pain x +03/21/2018,Musicians,@samsmithworld,RT @hollyjadee_x: Gutted I didn’t get to see @samsmithworld tonight in Newcastle 🙁 +03/21/2018,Musicians,@samsmithworld,RT @laugh_100: The biggest compliment I could pay @samsmithworld is that I felt whether he was playing to 5 or 5000 people tonight he would… +03/21/2018,Musicians,@samsmithworld,😂😂😂😂😂😂😂😂😂😂😂😂😂😩😩😩😩😩😩😩😩😩😩😩😩 https://t.co/1C1LqOy4WV +03/21/2018,Musicians,@samsmithworld,Sheffield. You took us to the moon and back. Thank you for taking #THETHRILLOFITALLUKTOUR's virginity 🖤 https://t.co/TXradfKizr +03/21/2018,Musicians,@samsmithworld,RT @JessicaEhallxxx: @samsmithworld I’m bringing my friend to your show tonight as she went last night and her boyfriend didn’t propose whe… +03/21/2018,Musicians,@samsmithworld,RT @liv_smiithx: Best night of my life watching @samsmithworld WOWOWOW i love him so much. So amazing live i'm crying😭😭😍😍 +03/21/2018,Musicians,@samsmithworld,"RT @victoriathorpes: So went to see @samsmithworld drank tea, sang a couple riffs and left the world behind for a couple hours. What a terr…" +03/21/2018,Musicians,@samsmithworld,@paulaparsons45 @lauraalison86 I LOVE YOU PAULA +03/20/2018,Musicians,@samsmithworld,RT @Jh9Hague: Ok but have you ever seen a more iconic t-shirt??? @samsmithworld https://t.co/kkBEaMOt3D +03/20/2018,Musicians,@samsmithworld,RT @AmieBradwell: My mascaras running and my voice has gone but I’ve just had the best night of my life @samsmithworld 😍😭🤪❤️❤️❤️(everyone p… +03/20/2018,Musicians,@samsmithworld,RT @_annaguest8: Swear we don’t deserve @samsmithworld what an amAZing opening night😭❤️ 🌈also: voice is officially gone +03/20/2018,Musicians,@samsmithworld,RT @chloetayls: .@samsmithworld puts on quite the show 👌🏻 https://t.co/znsFOrWjSV +03/20/2018,Musicians,@samsmithworld,RT @leah_till: @samsmithworld was unbelievable tonight... without doubt my favourite gig I've been to! ❤️❤️❤️ +03/20/2018,Musicians,@samsmithworld,RT @Shan12xox: The best night ever @samsmithworld thank you https://t.co/NiQ3zyNtsw +03/20/2018,Musicians,@samsmithworld,"WE HAVE LIFT OFF!! SHEFFIELD 🖤 +@jasonsherwooddesign #THETHRILLOFITALLUKTOUR https://t.co/MHlQAR71qP" +03/20/2018,Musicians,@samsmithworld,U.K TOUR LIFT OFF IS HOURS AWAY. LET’S GET SPIRITUAL ✨🖤 #THETHRILLOFITALLUKTOUR https://t.co/ghJJO7DZVc +03/19/2018,Musicians,@samsmithworld,FIFTH HARMONY!!!!! NO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +03/19/2018,Musicians,@samsmithworld,"TOMORROW ❤️🌈🇬🇧 +https://t.co/YO6uidRvHP #THETHRILLOFITALLWORLDTOUR https://t.co/6U2eYv2eJ7" +03/18/2018,Musicians,@samsmithworld,@MrBrunoMajor @Selimmunir @lithophyte_vw Fuck yeaaaaaaaaaaaaaah +03/18/2018,Musicians,@samsmithworld,@clairebooth3003 ❤️ I’ll see you Tuesday Claire xx your courage and bravery is so inspiring to me xx +03/17/2018,Musicians,@samsmithworld,Me and my dad https://t.co/rSJOWSRczy +03/17/2018,Musicians,@samsmithworld,"Three Days. #THETHRILLOFITALLWORLDTOUR 🖤🖤🖤 +If you'd like the chance to win a pair of tickets to one of my UK shows.… https://t.co/toenOYfZ8X" +03/16/2018,Musicians,@samsmithworld,4 DAYS 🌈🌈🌈🌈 #THETHRILLOFITALLWORLDTOUR https://t.co/RJGeT6IDHr +03/16/2018,Musicians,@samsmithworld,RT @TheGarden: Tickets are ON SALE NOW for @SamSmithWorld's newly-added second show due to phenomenal demand at The Garden on June 30! Don'… +03/16/2018,Musicians,@samsmithworld,"New US shows on sale from 9am local today 🖤 +https://t.co/YO6uidRvHP #THETHRILLOFITALLWORLDTOUR https://t.co/o6uo0v9B2T" +03/15/2018,Musicians,@samsmithworld,5 DAYS #THETHRILLOFITALLWORLDTOUR https://t.co/LD6K4jJwxS +03/14/2018,Musicians,@samsmithworld,"So honoured to receive this from the sensational @vincekamp, I am such a huge fan of his work. His paintings take m… https://t.co/6INtdq8QpE" +03/14/2018,Musicians,@samsmithworld,"‘Science is not only a disciple of reason but, also, one of romance and passion’ - what an incredible human. Every… https://t.co/Lk3ZtWP5RG" +03/14/2018,Musicians,@samsmithworld,Happy Birthday @QuincyDJones ❤️ Thank you for everything x +03/13/2018,Musicians,@samsmithworld,@andrew2themic Thank you for listening. Your voice sent shivers all over my body! Don’t you EVER EVER EVER stop singing! Ever! ❤️ +03/13/2018,Musicians,@samsmithworld,@merrellgomez This made me cry 😭 I can’t wait to see you gorgeous girl ❤️ I’ll be looking out for you xx +05/18/2018,Musicians,@TantrumJas,"Honored to be a part of Spotify’s Asian Pacific Heritage Month. Listen to my brand new playlist here +https://t.co/vI0qBB5TUR" +05/05/2018,Musicians,@TantrumJas,My cover of Avicii’s “Lonely Together” is available everywhere now. Listen at https://t.co/YPFlegQyAG https://t.co/WHilKBxD57 +05/03/2018,Musicians,@TantrumJas,"I'm going to LA next saturday 🌸 so excited for the sun, the beach and also going to write some more music while i'm out there 💛" +04/22/2018,Musicians,@TantrumJas,"@cowboyrobert @mrocznoduszki Haha yes of course, i need to get back into social media, i feel like i have been in m… https://t.co/6GEjm2yXtF" +04/22/2018,Musicians,@TantrumJas,@illegaljbieber I missed you too ❤❤ +04/22/2018,Musicians,@TantrumJas,"@mrocznoduszki Ahh, haha you are so sweet. I am doing really well, life is good and i feel so ready to do music. How are you??" +04/22/2018,Musicians,@TantrumJas,"@AliceSi67284770 I am good, feels amazing to be on youtube again. Hope you are good aswell" +04/22/2018,Musicians,@TantrumJas,@illegaljbieber Why on earth would i not remember you +04/22/2018,Musicians,@TantrumJas,In tribute to @Avicii. My cover of Lonely Together ft @RitaOra https://t.co/8TYGZOTXzB https://t.co/KTd6n7Gv4h +11/15/2017,Musicians,@TantrumJas,"Love you guys a lot, just need to spend some time focusing on home and being happy" +11/15/2017,Musicians,@TantrumJas,"Hey guys, sorry i have been unactive on social media recently. I've just been quite tired, and been trying not to go on my phone too much" +11/14/2017,Musicians,@TantrumJas,@LuckyShot2002 Aw ty hunny! Love u ❤️ +11/14/2017,Musicians,@TantrumJas,@chloelouiseh_x Love u too +11/14/2017,Musicians,@TantrumJas,@jasxjana Very!!! +11/14/2017,Musicians,@TantrumJas,@jasxjana Me too! +11/14/2017,Musicians,@TantrumJas,@jasxelle I’m so grateful ❤️ +11/14/2017,Musicians,@TantrumJas,@Ginny099 Love u BB +11/14/2017,Musicians,@TantrumJas,@levi_less Thank u Hun! +11/14/2017,Musicians,@TantrumJas,@TantrumLance Miss u too lance! +11/14/2017,Musicians,@TantrumJas,@Will_Hall_00 I’m good thank u! How r u will? +11/14/2017,Musicians,@TantrumJas,@TantrumLance Yeah! 💖 +11/14/2017,Musicians,@TantrumJas,@Hvandelft16 Ty Henk! +11/14/2017,Musicians,@TantrumJas,@tantrumemily Love u loads emi +11/14/2017,Musicians,@TantrumJas,@tantrumemily Seems like yesterday! +11/14/2017,Musicians,@TantrumJas,@chloelouiseh_x Aw yay! +11/13/2017,Musicians,@TantrumJas,Just wanted to do a lil shout out to everyone who was a part of this video for my birthday last week. I love you a… https://t.co/QwVareLyMf +11/13/2017,Musicians,@TantrumJas,Christmas came early 😜 Thanks so much for the beautiful gifts Michael!! https://t.co/3TGHySVqsa +11/13/2017,Musicians,@TantrumJas,Look what just arrived! This is the sweetest thing. Thanks so much @fede_bonatesta 😘 https://t.co/Z9C6LNe1YY +11/08/2017,Musicians,@TantrumJas,@RFMFrance Thank you!! ❤️❤️ +11/08/2017,Musicians,@TantrumJas,Wow! Dirk! These are so incredibly beautiful. Thank you so much❤️❤️❤️ https://t.co/bn9YDwR57w +11/08/2017,Musicians,@TantrumJas,@rufis313 Such a lovely message ❤️❤️❤️ +11/08/2017,Musicians,@TantrumJas,@TheOnyx3 Hope you’re okay honey x +11/08/2017,Musicians,@TantrumJas,@PulsefireLoL You’re not late 😂 +11/08/2017,Musicians,@TantrumJas,@Gimpanzee123 😂 +11/08/2017,Musicians,@TantrumJas,Smiling so much bby 😘😘 https://t.co/vj3EVasvsf +11/08/2017,Musicians,@TantrumJas,"So sweeeeeet ❤️ TySM Thys, @hvandelft16 & Ole https://t.co/Av5xee1Chm" +11/08/2017,Musicians,@TantrumJas,"Ahhh you guys, thank you for the birthday wishes. Love you guys 🌸" +11/08/2017,Musicians,@TantrumJas,@Dreamer_Colour THANK YOUUUU ❤❤❤ +11/08/2017,Musicians,@TantrumJas,"@jasxjana You are so kind! Thank you for writing such sweet words to me. Love you so much, and i am so happy to hear that we are family 💛" +11/08/2017,Musicians,@TantrumJas,@charlycarmona00 Thank you so much!!! Hope you are well 🌸💛 +11/08/2017,Musicians,@TantrumJas,@s_xrry Thank you ❤❤❤❤ +11/08/2017,Musicians,@TantrumJas,@lightseekerLegi Thank you so much ❤❤ +11/08/2017,Musicians,@TantrumJas,@ineedarishug__ ty marti! ❤️ +11/08/2017,Musicians,@TantrumJas,@AdelineEtLapsus I want to! +11/08/2017,Musicians,@TantrumJas,@livelifelively3 tysm!! +11/08/2017,Musicians,@TantrumJas,@ananasftluke @FelixJaehn yes poland!! +11/08/2017,Musicians,@TantrumJas,@jasxelle one day!! +11/08/2017,Musicians,@TantrumJas,@eliza2thompson thank u babe! +11/08/2017,Musicians,@TantrumJas,@cindyarcillo TYSM Cindy!! ❤️❤️❤️ +11/08/2017,Musicians,@TantrumJas,@Mhae_Putri thank youuuuu! +11/08/2017,Musicians,@TantrumJas,@hannienggggg this is the nicest thing ever ty 💕 +11/08/2017,Musicians,@TantrumJas,@hannienggggg Thank you so much BB +11/07/2017,Musicians,@TantrumJas,@dolcethompson just chilling with friends and fam! +11/07/2017,Musicians,@TantrumJas,@Dreamer_Colour Thank you so much!! 💕 +11/07/2017,Musicians,@TantrumJas,@dolcethompson I'm at home! :) x +11/07/2017,Musicians,@TantrumJas,@brinirescueme this is cool!! +11/07/2017,Musicians,@TantrumJas,@TantrumLance this is so sweet lance ty for everything 💕 +11/07/2017,Musicians,@TantrumJas,@marylouisse607 thank u so much 💕 +11/07/2017,Musicians,@TantrumJas,@WildGirl48 exciting!! +11/07/2017,Musicians,@TantrumJas,@jasthomps thank u so much hun 💕 +11/07/2017,Musicians,@TantrumJas,"@Dreamer_Colour this is so sweet, ily 💕" +11/07/2017,Musicians,@TantrumJas,@TheMayDJMH @galaxyart babe u r talented!! +11/07/2017,Musicians,@TantrumJas,@juanenr98274817 thank u honey! +11/07/2017,Musicians,@TantrumJas,@_selenasvojce_ ily2! +11/07/2017,Musicians,@TantrumJas,@cowboyrobert sending hugs Rob! +11/07/2017,Musicians,@TantrumJas,@pavlyuchenko37 im gd thank u sweetie how r u? +11/07/2017,Musicians,@TantrumJas,@JUCEGALU ur so sweet! +11/07/2017,Musicians,@TantrumJas,@pavlyuchenko37 that would be fun! +11/07/2017,Musicians,@TantrumJas,@BrunoSigwela happy studying! 😇 +11/06/2017,Musicians,@TantrumJas,@charlycarmona00 omg hope u feel better hun!! so glad my music can be there to soothe u right now. feel better real soon 💕 +11/06/2017,Musicians,@TantrumJas,@xitssxrx @jasxjana 😂 xx +11/06/2017,Musicians,@TantrumJas,@jasminefangroup night night hunny ❤️ +11/06/2017,Musicians,@TantrumJas,@Hvandelft16 good thank u honey how r u ? 💕 +11/06/2017,Musicians,@TantrumJas,@MaciejPasik night lovely! +11/05/2017,Musicians,@TantrumJas,@maravllrt @FelixJaehn aw this is so cute! +11/05/2017,Musicians,@TantrumJas,@TantrumLance ha! knew I'd never live this down 😂 princess from day 1 💁😂 +11/05/2017,Musicians,@TantrumJas,@JelieberPenguin wooo! +11/05/2017,Musicians,@TantrumJas,@Jasmine_Fanpage omgggg three years! +11/05/2017,Musicians,@TantrumJas,@Hvandelft16 gd thanks Henk how was urs? +11/05/2017,Musicians,@TantrumJas,@selenasnasty u ok hunny? we're here for u +11/05/2017,Musicians,@TantrumJas,@adrianpeter254 love that u love this song +11/05/2017,Musicians,@TantrumJas,@cindyarcillo thanks Cindy! hope you're well honey!! +11/05/2017,Musicians,@TantrumJas,@jasxjana it's been good thanks! reconnecting with a lot of my friends which has been so nice +11/05/2017,Musicians,@TantrumJas,@laurxpearce I knoooow it's come round so soon! +11/05/2017,Musicians,@TantrumJas,@jasxjana so cool! +11/05/2017,Musicians,@TantrumJas,@xitssxrx @jasxjana omg this makes me so so happy! +11/05/2017,Musicians,@TantrumJas,@xitssxrx aw thanks for the recommendation lovely! +11/05/2017,Musicians,@TantrumJas,@tantrumemily u can do it boo! +11/05/2017,Musicians,@TantrumJas,@JasThompson_Fan miss u too bb! +11/05/2017,Musicians,@TantrumJas,@radionob ok? +11/05/2017,Musicians,@TantrumJas,@ineedarishug__ haha so exciting! +11/05/2017,Musicians,@TantrumJas,@LNISHO_ @smule I love this! +11/05/2017,Musicians,@TantrumJas,@jasxjana that sounds so fun! +11/04/2017,Musicians,@TantrumJas,"@jasxelle Oh wonder, i'm so excited haha" +11/04/2017,Musicians,@TantrumJas,"@jasminefangroup It was alright, very chilled. What about you?" +11/04/2017,Musicians,@TantrumJas,"@Will_Hall_00 Heyyyy willllll!! Haha i am good thanks, how are you? Hope your weekend is going good" +11/04/2017,Musicians,@TantrumJas,"@WildGirl48 Miss you too, sorry i've been a little inactive on social media recently. Just needed to hibernate for a little bit haha" +11/04/2017,Musicians,@TantrumJas,"@jasxelle Haha, i'm just going to a concert. Not really going to do much this year, just spend time with friends" +11/04/2017,Musicians,@TantrumJas,@TantrumLance Why what is wrong? I'm sorry +11/04/2017,Musicians,@TantrumJas,"@MaciejPasik Haha yess, i finished it on the first day. Did you?" +11/04/2017,Musicians,@TantrumJas,"@Hvandelft16 Hey! I am good thanks, just spent the morning with my friends at home. How are you?" +11/02/2017,Musicians,@TantrumJas,@JUCEGALU twins! +11/02/2017,Musicians,@TantrumJas,😱😱😱TYSM Naba for sending this all the way from Indonesia! This is such a sweet bday present 😘😘 https://t.co/iey7nkTX13 +11/02/2017,Musicians,@TantrumJas,❤️❤️❤️ https://t.co/SN1msK5YlA https://t.co/XbCub4koap +11/02/2017,Musicians,@TantrumJas,Check out the video from my #GiveaHome performance last month in solidarity with refugees: https://t.co/SN1msJOnu2 @amnestyUSA @sofarsounds +11/01/2017,Musicians,@TantrumJas,@charlycarmona00 aw I miss u too honey! I'm always here 💕 +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan mmmmm this looks so good! +11/01/2017,Musicians,@TantrumJas,@tantrumemily @selenasnasty of course! I keep everything you guys send ❤️ +11/01/2017,Musicians,@TantrumJas,@Gimpanzee123 @WarriorWeirdoDK @Jasmine_Fanpage 😂😂😂 +11/01/2017,Musicians,@TantrumJas,@Will_Hall_00 omg! 😂😂😂😂😂 +11/01/2017,Musicians,@TantrumJas,@AshimGiri1 thank u Ashim! happy haloweeeen! +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan i love popcorn everything 😂 +11/01/2017,Musicians,@TantrumJas,@xlilouis my fans are awesome I'm so lucky +11/01/2017,Musicians,@TantrumJas,@Hvandelft16 ty Henk! +11/01/2017,Musicians,@TantrumJas,@TantrumAziza you too Aziza! ❤️❤️ +11/01/2017,Musicians,@TantrumJas,@JUCEGALU omg this looks so cool! +11/01/2017,Musicians,@TantrumJas,@selenasnasty ily2! happy halloween too lovely! +11/01/2017,Musicians,@TantrumJas,@PVerdina big love to indonesia!! +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan aw that's so sweet! ty! +11/01/2017,Musicians,@TantrumJas,@Gimpanzee123 @Jasmine_Fanpage 😂😂 +10/31/2017,Musicians,@TantrumJas,Happy Halloween everyone! ty Stefan for this edit! 🔥💀👻 https://t.co/qXYfm0QWgd +10/31/2017,Musicians,@TantrumJas,@radionob 😂😂😂 this makes me happy +10/30/2017,Musicians,@TantrumJas,@selenasnasty I ❤️ Love it +10/30/2017,Musicians,@TantrumJas,@BIC1YT I love reading them ❤️ +10/30/2017,Musicians,@TantrumJas,thank you for the lovely letters and gifts. Really grateful for you guys 💛 https://t.co/H5doprZZbr +10/30/2017,Musicians,@TantrumJas,@selenasnasty I am! +10/30/2017,Musicians,@TantrumJas,@Will_Hall_00 Good thanks will how are uuu? +10/30/2017,Musicians,@TantrumJas,@selenasnasty Good thank u bb +10/30/2017,Musicians,@TantrumJas,@jasminefangroup Night lovely ❤️ +10/30/2017,Musicians,@TantrumJas,@Dreamer_Colour Sending hugs!! +10/30/2017,Musicians,@TantrumJas,@xxmelcixx0612 I love America but England will always be home +10/30/2017,Musicians,@TantrumJas,@BrunoSigwela Aw this is a cute idea! +10/30/2017,Musicians,@TantrumJas,@TheMayDJMH @Dreamer_Colour @GalaxyArtt Mmmmm pizza 🍕 +10/30/2017,Musicians,@TantrumJas,@Hvandelft16 I always write every day! 😄 +10/30/2017,Musicians,@TantrumJas,@warrai711 this means so much ty ❤️ +10/29/2017,Musicians,@TantrumJas,@TantrumLance sending hugs bbe! +10/29/2017,Musicians,@TantrumJas,@TheMayDJMH @branxroeux @tumblr @taylorswift13 I'm not at the mo! :) +10/29/2017,Musicians,@TantrumJas,@adimeindc this means so much to hear ❤️ +10/29/2017,Musicians,@TantrumJas,"@jasxelle u're never alone babe, we're always here for u❤️" +10/29/2017,Musicians,@TantrumJas,@Hvandelft16 great thank u Henk! how was urs? +10/29/2017,Musicians,@TantrumJas,@Dreamer_Colour yay I love it when u guys hear my music out and about! 😘 thank u for being awesome!! +10/29/2017,Musicians,@TantrumJas,@SusydjPoesia thank u 😘😘 good night! +10/29/2017,Musicians,@TantrumJas,@MaciejPasik goodnight lovely +10/28/2017,Musicians,@TantrumJas,@selenasnasty kocham cie! +10/28/2017,Musicians,@TantrumJas,@nathgarces ❤️❤️ +10/28/2017,Musicians,@TantrumJas,@TheMayDJMH @Dreamer_Colour @GalaxyArtt hmmm maybe I need to revise for this one before I do... *turns on tetris* +10/28/2017,Musicians,@TantrumJas,@MaciejPasik sending huge hugs 💕💕 +10/28/2017,Musicians,@TantrumJas,@_RitaBright_ aw ur cute too! +10/28/2017,Musicians,@TantrumJas,@Dreamer_Colour ily2!! 💕 +10/28/2017,Musicians,@TantrumJas,"@GlindonDavids1 ty! I rly just wanted to sing about everything thats going on rn. its such a beautiful song, it's g… https://t.co/JXaLG4SGI0" +10/28/2017,Musicians,@TantrumJas,@AshimGiri1 this is so nice to hear ty 💕 +10/28/2017,Musicians,@TantrumJas,@loyalMaddians tysm hunny +10/28/2017,Musicians,@TantrumJas,@jasminefangroup ily2 😘 +10/28/2017,Musicians,@TantrumJas,@ineedarishug__ ty for always looking out for me hun 💕 +10/28/2017,Musicians,@TantrumJas,@Hvandelft16 yeah it's very autumnal in London atm! +10/28/2017,Musicians,@TantrumJas,@jasxelle hey lovely! long time no speaaakk! u ok? I've been gd ty! :D +10/28/2017,Musicians,@TantrumJas,@Dreamer_Colour @TantrumLance oh ... my ... god ... this genuinely made me feel a bit light headed 😅 hope he is ok!! +10/28/2017,Musicians,@TantrumJas,@jasxjana ah this was so fun! look how long my hair was!! +10/28/2017,Musicians,@TantrumJas,@JUCEGALU I knowww! omg this year has gone so fast. What should I do for my birthday?? +10/28/2017,Musicians,@TantrumJas,@jasxjana this is so sweet!! +10/27/2017,Musicians,@TantrumJas,@onewshii ❤️ ty for listening 😘😘 +10/27/2017,Musicians,@TantrumJas,@WarriorWeirdoDK goodnight hun! 💕 +10/27/2017,Musicians,@TantrumJas,@TheMayDJMH @Devon_k01 like an L - shaped tromino? think of tetris! 😂 (see - I knew playing video games would pay off one day) +10/27/2017,Musicians,@TantrumJas,@monsieuraudio @Mhae_Putri @Jasmine_Fanpage yes? 😂 +10/27/2017,Musicians,@TantrumJas,@eddierom205 tysm Eddie ❤️ +10/27/2017,Musicians,@TantrumJas,@jasthomps how r u ? +10/27/2017,Musicians,@TantrumJas,@jasthomps hey Nadya! woooo! I'm gd ty hun 💕 +10/27/2017,Musicians,@TantrumJas,@TantrumnatorUK omg amazzziiing!! +10/27/2017,Musicians,@TantrumJas,@TantrumLance miss u always Lance +10/27/2017,Musicians,@TantrumJas,@patrik_kara 😘😘😘 sounds like a good day! +10/27/2017,Musicians,@TantrumJas,@loyalMaddians sending HUGE love to Indonesia! +10/27/2017,Musicians,@TantrumJas,@tadeo_eleazar hey bb! ilysm tooooooo! +10/27/2017,Musicians,@TantrumJas,@DDaaash aw this is so sweet ha thanks! practice practice practice is all I can say! :D +10/27/2017,Musicians,@TantrumJas,@adam_adrac1 @Mhae_Putri @Jasmine_Fanpage mmm coffee +10/27/2017,Musicians,@TantrumJas,@TheMayDJMH @AshimGiri1 cool - what song r u singing??? +10/27/2017,Musicians,@TantrumJas,@tantrumemily u give me strength hunni +10/27/2017,Musicians,@TantrumJas,@_selenasvojce_ great song! ty for the suggestion +10/27/2017,Musicians,@TantrumJas,@selenasnasty Kocham Cie Milena! +10/27/2017,Musicians,@TantrumJas,@meggymic12 sending huge hugs! 😘😘😘 +10/26/2017,Musicians,@TantrumJas,@TantrumLance Great thanks ❤️ +10/26/2017,Musicians,@TantrumJas,@TheMayDJMH @Mhae_Putri @Jasmine_Fanpage Ty ☺️☺️ +10/26/2017,Musicians,@TantrumJas,@tantrumemily ily❤️ +10/26/2017,Musicians,@TantrumJas,@jasxjana Sending huggggss!!! +10/26/2017,Musicians,@TantrumJas,@navas_gertru @tantrumemily Happy birthday! +10/26/2017,Musicians,@TantrumJas,@Devon_k01 It’s ok honey! School is important! 💖 +10/26/2017,Musicians,@TantrumJas,@Dreamer_Colour So grateful for every view +10/26/2017,Musicians,@TantrumJas,@Dreamer_Colour Thats so sweet ty! +10/26/2017,Musicians,@TantrumJas,@WildGirl48 @SapphireSing @DoveCameron @TTBate Omg how exciting! Do u have an outfit? +10/26/2017,Musicians,@TantrumJas,@MaciejPasik Can’t believe it! +10/25/2017,Musicians,@TantrumJas,Yaaassss ❤️ https://t.co/2ZhSa23OEa +10/25/2017,Musicians,@TantrumJas,Lil fan mail from @tantrumemily ❤️❤️❤️ https://t.co/TnjO4f3WIo +10/24/2017,Musicians,@TantrumJas,@TantrumLance Congratulations!!!! So happy for you +10/24/2017,Musicians,@TantrumJas,@tantrumemily Love and miss you girly +10/24/2017,Musicians,@TantrumJas,"@dolcethompson It was good thank you, been writing new music, how are you?" +10/24/2017,Musicians,@TantrumJas,@Hvandelft16 Yours? +10/24/2017,Musicians,@TantrumJas,@Hvandelft16 Yellow haha +10/23/2017,Musicians,@TantrumJas,Thank you @Spotify for adding the remix of my track “Know Love” from @DVBBS to New Music Friday! Listen now!… https://t.co/rMsRXNLyKa +10/23/2017,Musicians,@TantrumJas,"Have you heard the amazing remix @DVBBS of my song “Know Love”? Listen to it now on @AppleMusic ! +https://t.co/SBr1PMXkjs" +10/23/2017,Musicians,@TantrumJas,@loyalMaddians Goodnight! I am okay thank you! Hope you are well +10/23/2017,Musicians,@TantrumJas,@TantrumLance @SINIZTER15 HAPPY BIRTHDAY!!! Hope you have an amazing day!! +06/30/2018,Musicians,@ParsonJames,Happy belated to my angel!!! @NicoleScherzy https://t.co/np07l5cGus +06/30/2018,Musicians,@ParsonJames,Happy birthday to my beautiful mamaaaa! Constantly thankful and proud to have an outstanding woman like you in my l… https://t.co/4GIjMjuZsU +06/29/2018,Musicians,@ParsonJames,Baby!!!! https://t.co/eshiRv4t4s +06/29/2018,Musicians,@ParsonJames,@cheapyxo How dare u disrespect 1991 binch!!!! +06/29/2018,Musicians,@ParsonJames,Omg hearing Michael on this drake record just got me deeeeep in my feels 😩 +06/28/2018,Musicians,@ParsonJames,😘😘😘😘😘 Love love loveeee !! Best weekend! https://t.co/SonZa2N2lR +06/27/2018,Musicians,@ParsonJames,This incredibly important and powerful film is finally available everywhere. I had the privilege of seeing this fil… https://t.co/r9tMp5hihc +06/25/2018,Musicians,@ParsonJames,thank u @tommydorfman @glaad @ASOS for having me come perform in a literal boxing ring at @OverthrowNYC for #pride… https://t.co/NMOkuSMGnz +06/25/2018,Musicians,@ParsonJames,"RT @Fool_4_Music: This past week has been 🙌🏻. Got to support @ParsonJames at an amazing @amfAR event, got to see @ToveLo spread her message…" +06/25/2018,Musicians,@ParsonJames,literally have the time of my life performing with this beauty. #nycpride #Pride you were AMAZING!!! Thank you… https://t.co/83fuWO7PJw +06/24/2018,Musicians,@ParsonJames,"RT @diorexha: @ParsonJames @Daya okay oh my fucking shit they are so beautiful, look at these smiles softs. appreciation post" +06/23/2018,Musicians,@ParsonJames,Over 100k streams in one day :) thank you guys! @Spotify @CAZZETTE https://t.co/AP3srSaoFv +06/22/2018,Musicians,@ParsonJames,RT @musiqchild007: @ParsonJames https://t.co/DBcGcgSkVR +06/22/2018,Musicians,@ParsonJames,omg Hotel manager DMed me on IG happens to love my music and just upgraded me to a suite WHAT AN ICON +06/22/2018,Musicians,@ParsonJames,"RT @amfAR: Proud to have @ParsonJames lending his voice (literally!) to the fight for an HIV cure at last night's #amfARgenCURE. + +Are you…" +06/22/2018,Musicians,@ParsonJames,Missing You w/ @CAZZETTE is out now. https://t.co/bR0CYtfWZP https://t.co/2z2qxm0NuJ +06/22/2018,Musicians,@ParsonJames,What a fucking incredible privilege to be able to release music for a living. Sometimes in the midst of all the mad… https://t.co/Uwv5zBX4ec +06/22/2018,Musicians,@ParsonJames,The homieeeeeeee @jakemiller https://t.co/r8HABlsS9s +06/22/2018,Musicians,@ParsonJames,@drunkinjames 😘😘😘 +06/21/2018,Musicians,@ParsonJames,Let’s go @amfAR #amfARgenCURE ! Excited to perform tonight and raise money for a cure!!! 🌈🌈🌈💚🧡❤️💙💜 https://t.co/PnWsIQVEaa +06/21/2018,Musicians,@ParsonJames,I’ll be honest one time I bought IG followers when I was in a bind and just starting to release music do u love me less +06/21/2018,Musicians,@ParsonJames,@_Ollie2505 @fernlovesmcfly I felt this +06/21/2018,Musicians,@ParsonJames,@JHartMusic Noooo +06/21/2018,Musicians,@ParsonJames,@JHartMusic Our songs are gonna scissor sissy!! +06/21/2018,Musicians,@ParsonJames,@lex727 University and e 8th! At 12! +06/21/2018,Musicians,@ParsonJames,I’m way too fucked up ocer #koko dying 😩 +06/21/2018,Musicians,@ParsonJames,Tomorrow! @CAZZETTE x @ParsonJames ‘Missin You’ pre save on @Spotify meow https://t.co/WMryCAHAWd https://t.co/qX2ZkGeGZa +06/21/2018,Musicians,@ParsonJames,RT @prmdmusic: Out tomorrow! | @CAZZETTE feat. @ParsonJames - 'Missing You' | https://t.co/lJCE3XR7QH https://t.co/P9c2tZIjPt +06/21/2018,Musicians,@ParsonJames,Woo Chile the ghetto +06/21/2018,Musicians,@ParsonJames,@stivenhg Hahahaha aw! It’s okay! Literally everyone does that nice to meet u! +06/21/2018,Musicians,@ParsonJames,"RT @stivenhg: So I meet @ParsonJames today and he was super sweet even tho I called him “James Parson” +(Sorry I was really excited) https:…" +06/20/2018,Musicians,@ParsonJames,@noyes I don’t know how it slipped my mind hahahahahahah literally can’t stop laughing now +06/20/2018,Musicians,@ParsonJames,@noyes 😩😩😩 +06/20/2018,Musicians,@ParsonJames,Omg What show was it where the girl said u shouldn’t have called me a fat ass Kelly price 😂😩😭 +06/20/2018,Musicians,@ParsonJames,Flew in just in time to catch up with my baby muva last evening. Things got touchy feely per usual but it was a civ… https://t.co/3DzRn3Pr80 +06/19/2018,Musicians,@ParsonJames,On today’s episode of Parson crying on a plane we present hysterical tears featuring Pixar’s Coco. +06/19/2018,Musicians,@ParsonJames,"So excited to be performing at @amfAR ‘s #amfARgencure Solstice party this Thursday, June 21st. Raising funds and… https://t.co/tGEVEgXF4z" +06/18/2018,Musicians,@ParsonJames,@iamjojo OKAY JOANNA THIS FUCKING OUTFITTTTTTT BINCHHHH!!!!! +06/15/2018,Musicians,@ParsonJames,"Thanks so much for including me @BillboardPride ! Talking the moments that I associate with coming out, why you all… https://t.co/5P3diFZF23" +06/14/2018,Musicians,@ParsonJames,"RT @iamsheadiamond: Chattin and being cute with @billboard @BillboardPride ! + +https://t.co/yIt17BN4Fk" +06/14/2018,Musicians,@ParsonJames,"RT @amfAR: One week until our #amfARgenCURE Solstice party with a performance by @ParsonJames and music by @samantharonson. + +For a limited…" +06/14/2018,Musicians,@ParsonJames,"RT @LAFW: .@tovelo in designer @marymejimmypaul, as seen on the @lafw runway 🌈 this past @lapride ⚡️⚡️⚡️ft. @ParsonJames ✨ https://t.co/1sF…" +06/14/2018,Musicians,@ParsonJames,#BelieveinMEAF #MeafMafia https://t.co/hrnBlB9kzf +06/13/2018,Musicians,@ParsonJames,Aw omg thank you @TheSurfLodge https://t.co/OQuSQxjoxB +06/12/2018,Musicians,@ParsonJames,"RT @HOLLYWIRE: Watch @ParsonJames play Happy, Joyous and Free at #Pride as well as sharing the meaning behind #OnlyYou 🎼🎙️https://t.co/Pre…" +06/12/2018,Musicians,@ParsonJames,@Sairahnina Omg +06/12/2018,Musicians,@ParsonJames,@drunkinjames That is a loaded wu +06/12/2018,Musicians,@ParsonJames,y r we ok w our own farts but not farts of others +06/11/2018,Musicians,@ParsonJames,Full video of me & and @ToveLo performance from @lapride is up now! https://t.co/u9aI31GEgL +06/11/2018,Musicians,@ParsonJames,@ToveLo_Daily @almacyber @iconapop 💙💛💙 +06/11/2018,Musicians,@ParsonJames,"RT @ToveLo_Daily: You can now find some of LA Pride's performance highlights on my YT channel. 👀🎉🦄 + +https://t.co/4q9677nRH9 https://t.co/pI…" +06/11/2018,Musicians,@ParsonJames,Best fucking time ever w/ my angel unicorn @ToveLo last night!! Thank you for bringing me out for @lapride !!!! I w… https://t.co/mORXf7NVRD +06/09/2018,Musicians,@ParsonJames,"RT @amfAR: Tickets are now on sale for the #amfARgenCURE Solstice Party! Join us as we kick off summer with a performance by @ParsonJames,…" +06/08/2018,Musicians,@ParsonJames,@Ragenlov It’s not out! Chain Gang :) +06/07/2018,Musicians,@ParsonJames,THANK U FOR THE B DAY LOVE U ICONIC BUNCH OF BEAUTIES. IN NASHVILLE SMILING ABOUT TO PLAY A SHOW FOR @GLAAD W MY FA… https://t.co/wrmg0jR1JN +06/07/2018,Musicians,@ParsonJames,"Proud to be performing at @amfAR’s #amfARgenCURE Solstice Party on Thursday, June 21 in NYC. Come out and support a… https://t.co/xroTGW1DuR" +06/07/2018,Musicians,@ParsonJames,@PCA_Angel @glaad @calumscott Hahaha I’m DOWN! +06/07/2018,Musicians,@ParsonJames,@omfgbruce Aw!!!! Thank you! Just as I land in Nashville!! +06/07/2018,Musicians,@ParsonJames,Haha yasss! Thank you! https://t.co/dUFI49LSdQ +06/07/2018,Musicians,@ParsonJames,On the way to Nashville for @glaad #concertforloveandacceptance ! Give me hot chicken and kisses for my burfday Nashville! +06/07/2018,Musicians,@ParsonJames,RT @melalelou: Happy Birthday to the man who always steals the show with his great dance moves on stage!🕺🏼🎉I wish you continued success wit… +06/07/2018,Musicians,@ParsonJames,"RT @JDudleyRowe: Happy 2️⃣4️⃣ birthday to this incredible & inspiring legend king @ParsonJames! +I love you so much babycakes. +I hope you ha…" +06/07/2018,Musicians,@ParsonJames,RT @b_money_z: .@ParsonJames gracing spotify roof w motivational words and music that’s real 🌱💞 https://t.co/3Ch4qaodrQ +06/07/2018,Musicians,@ParsonJames,💛💛💛💛 love u thank u! https://t.co/pHlAXtZkqU +06/07/2018,Musicians,@ParsonJames,My birthday is tomorrow and I just played a show for @Spotify !!!! https://t.co/5sAbDsi2nY +06/06/2018,Musicians,@ParsonJames,"RT @GMA: JUST IN: Pres. Trump commutes the sentence of Alice Johnson, a 63-year-old great-grandmother, who has served almost 22 years in fe…" +06/06/2018,Musicians,@ParsonJames,literal love this playlist name & appreciate uuuu! 💛💛💛 https://t.co/m6TEyRqzQn +06/05/2018,Musicians,@ParsonJames,"RT @NewNowNext: Rest In Power, Antash'a English! https://t.co/VBeTDwiasD @HRC @TransEquality @equalityfl" +06/05/2018,Musicians,@ParsonJames,SO excited to be performing at the @GLAAD + @TyHerndoncom Concert for Love & Acceptance during #CMAFest on June 7!… https://t.co/EVVmp3VGZ3 +06/05/2018,Musicians,@ParsonJames,@lovelivelife811 @MordecaiNuccio All you have to do is refer to my past tweets before coming at me with a tweet lik… https://t.co/o79MXSBgjT +06/05/2018,Musicians,@ParsonJames,Didn’t realize we were almost b day twins !! Happy birthday Gemini bb! 💛💙 @troyesivan +06/04/2018,Musicians,@ParsonJames,RT @Jon_ALi: My June #QueerNecessities playlist is here!! ✨🏳️‍🌈✨ @MNEK @troyesivan @LelandOfficial @VINCINT_ @yearsandyears @kwaye @QueensC… +06/04/2018,Musicians,@ParsonJames,@OneCanDoLots Aw man that makes my heart swell. So glad you received the music in that way. Appreciate u +06/04/2018,Musicians,@ParsonJames,Yass thank you love! 💛💙💛🌈 https://t.co/vBXy1tSBo7 +06/04/2018,Musicians,@ParsonJames,@thefader Hung out w the cover girl yesterday. Insightful/Playful/Wild #bitch 😂 cc @ToveLo @elliphantmusic https://t.co/ZvxP5uL4cX +06/04/2018,Musicians,@ParsonJames,RT @thefader: .@ToveLo shares artwork for upcoming song “bitches.” https://t.co/C8GGusweZc https://t.co/EvXLAECrTK +06/03/2018,Musicians,@ParsonJames,RT @ArianaGrande: i literally woke up this morning with a sigh of relief and said to myself......... I’m really that bitch huh +06/02/2018,Musicians,@ParsonJames,Throwback to performing at @1027KIISFM #WangoTango ! Going to see some friends kill it today! Who’s going?? 💛💛💛💛 https://t.co/HlDysd2rmQ +06/02/2018,Musicians,@ParsonJames,HAPPY PRIDE IMMA THIQQ THOT https://t.co/bDX53L9zQT +06/02/2018,Musicians,@ParsonJames,@chrissyteigen Chrissy keeps this country together +06/02/2018,Musicians,@ParsonJames,😘😘😘😘 duh bitch. Congrats on release day!!!! https://t.co/YL5GBsnWpS +06/02/2018,Musicians,@ParsonJames,💛💛💛 https://t.co/DhEOQrI8yl +06/02/2018,Musicians,@ParsonJames,RT @noyes: reasons why I love June : ITS PRIDE MONTH!!!!!! 💖❤️💛💚💙💜Happy pride my loves! Shine bright like the diamonds that you are and be… +06/01/2018,Musicians,@ParsonJames,"My 🌈look alive, it’s pride🌈 playlist is up on @Spotify now! Head over to check out some of my fave LGBTQ+ and LGBTQ… https://t.co/ovLRbme9FE" +06/01/2018,Musicians,@ParsonJames,RT @VINCINT_: 🗣YOU’RE THE BEST ❤️💋 https://t.co/jJZHDHRi3l +05/31/2018,Musicians,@ParsonJames,@MordecaiNuccio Representation. I have had to fight double duty to also not have my blackness discredited just bc m… https://t.co/rYn3KU49Wj +05/31/2018,Musicians,@ParsonJames,@MordecaiNuccio I am a black man that like Adam and anyone else was invited with no + 1 and no view of the guest li… https://t.co/DPQkaCdMLh +05/30/2018,Musicians,@ParsonJames,Okay just did Pilates for the first time and she really is that bitch huh. I’m wobblin +05/30/2018,Musicians,@ParsonJames,Thanks @MartinGarrix for chucking broken love onto #themartingarrix show! 💛💛💛🙌🏽 https://t.co/zfNdR2Pjfw +05/30/2018,Musicians,@ParsonJames,SO excited to be performing at the @GLAAD + @TyHerndoncom Concert for Love & Acceptance during #CMAFest on June 7!… https://t.co/v3MqOtX7L4 +05/30/2018,Musicians,@ParsonJames,I AM SO EXCITED !!!! https://t.co/0hBUrHtCI1 +05/30/2018,Musicians,@ParsonJames,@TroyBlackwelljr 🙋🏽‍♂️ +05/29/2018,Musicians,@ParsonJames,@cheapyxo U know miss Barr been forever doing the most 😂 she beeeen blatantly racist but the she got got this mornting! +05/29/2018,Musicians,@ParsonJames,"@cheapyxo She out here calling people Apes, Wylin" +05/29/2018,Musicians,@ParsonJames,@kaggyj1 Thankfully flying domestic isn’t so bad without ID just had to do some verification things! Quite painless! +05/29/2018,Musicians,@ParsonJames,"RT @them: Let’s create a community where everyone is celebrated for who they love, who they are, and how they look. https://t.co/kRidkjTGTH" +05/29/2018,Musicians,@ParsonJames,we need that #BrokenLove New single out now via @SpinninRecords @thehim https://t.co/mf2S2WC3lw https://t.co/R3W8CYwVDW +05/29/2018,Musicians,@ParsonJames,DEVELOPMENT: I still got thru TSA https://t.co/cGep8tMq38 +05/29/2018,Musicians,@ParsonJames,Got pick pocketed at penn station yay no wallet or ID for my flight 😩 +05/28/2018,Musicians,@ParsonJames,Omg What !!! Thank you!!!! 😩😍 this is amazing ! https://t.co/tjl2htf5SQ +05/27/2018,Musicians,@ParsonJames,@Vintagecaption Omg Ily! +05/27/2018,Musicians,@ParsonJames,@Fool_4_Music @thehim ILY! +05/27/2018,Musicians,@ParsonJames,@PhoebeRyan @gladiusjames @JamesNewmanUk @AdventureJames @JamesBayMusic HAHAHAAAA ILYSM +05/26/2018,Musicians,@ParsonJames,MY SHOE GAME LOOKIN LIKE MY BOO GAMEEEE AYYYYY!!!! https://t.co/E5R6Vxxy4R +05/26/2018,Musicians,@ParsonJames,wow suddenly im a @LilMama Stan. https://t.co/ZAm5I1gkAX +05/26/2018,Musicians,@ParsonJames,@PothMaxwell @KeiynanLonsdale @JaredGelman @VINCINT_ @SUP3RFRUIT @jessesaintjohn @HeyItsMarioJose @LelandOfficial… https://t.co/RPRilHnrtl +05/26/2018,Musicians,@ParsonJames,!!!!!!!!!!!!!! https://t.co/AWwDeQJJuf +05/25/2018,Musicians,@ParsonJames,See u tomorrow @TheSurfLodge 💛💛 https://t.co/8CPUgVTxTU +05/25/2018,Musicians,@ParsonJames,omg crying bc this low key sounds like an eric vetro “ssss” exercise interrupted by cutting tf up 😩😩 https://t.co/37Bhg0BKjy +05/25/2018,Musicians,@ParsonJames,#BrokenLove with @thehim is out now via… https://t.co/iXNbzzYVZz +05/25/2018,Musicians,@ParsonJames,Thank you @spotify ! #BrokenLove is on #NewMusicFriday today! Go peep. Cc @thehim @SpinninRecords… https://t.co/4iaQ0TnytJ +05/25/2018,Musicians,@ParsonJames,RT @SpinninRecords: This new tune by @thehim ft. @ParsonJames is a definite must-have! https://t.co/G6HGvcuS4s +05/25/2018,Musicians,@ParsonJames,👏🏽👏🏽👏🏽🙌🏽🙌🏽🙌🏽 congrats @ShawnMendes !!!!! https://t.co/xgsj9Dz2qB +05/25/2018,Musicians,@ParsonJames,"RT @billboarddance: Thousands of ""Kids In Love"": How @KygoMusic became an arena act https://t.co/SZGV30XBo9 https://t.co/l8SmDMdsET" +05/25/2018,Musicians,@ParsonJames,"@alexx_reidd Haha I totally respect and value opinions and I’ll never be EVERYONES cup of tea, im realistic there!… https://t.co/KCrx9VrVFk" +05/25/2018,Musicians,@ParsonJames,@lex727 @thehim Haha I just landed !! Have some shows this weekend in hamptons :) and yassss +05/25/2018,Musicians,@ParsonJames,RT @JDudleyRowe: @ParsonJames @thehim https://t.co/JCfRXbqRlm +05/25/2018,Musicians,@ParsonJames,@alexx_reidd No worries man. All good 🙏🏽 +05/25/2018,Musicians,@ParsonJames,💔💔💔midnight💔💔💔 #BrokenLove @thehim https://t.co/OhmtOW1R8B +05/24/2018,Musicians,@ParsonJames,@cheapyxo IM LINING UP AND BRINGING MY OWN TUPPERWARE TO TAKE LEFTOVERS. +05/24/2018,Musicians,@ParsonJames,@JHartMusic mhm and i was smiling +05/24/2018,Musicians,@ParsonJames,"@alexx_reidd Lol mate go to bed. Must be quite bothered to provide such a dull opinion. Spell check, it’s “eccentri… https://t.co/ZHVdWLCn74" +05/24/2018,Musicians,@ParsonJames,"@Kris4Equity Hi! I am a black gay male (which I have to keep repeating for some reason), and my sentiments are quit… https://t.co/LYlompNoMl" +05/24/2018,Musicians,@ParsonJames,Flying economy but pooping in the first class bathroom rn lol +05/24/2018,Musicians,@ParsonJames,@UrGewdJoodie 😩😩😘😘😘😘💛💛💛 +05/24/2018,Musicians,@ParsonJames,@Into & ALL of our community and those extensions of it deserve and desperately NEED to be celebrated. we have SO f… https://t.co/Hs703dC1MX +05/24/2018,Musicians,@ParsonJames,@Into i did gain a lot of knowledge from this sit down and it was glaringly obvious from the jump what needed to be… https://t.co/oP7PuuKokm +05/24/2018,Musicians,@ParsonJames,"@Into just read ur article and agree wholeheartedly on many levels. I was invited, as a guest, no knowledge of the… https://t.co/pv3peQKQ8c" +05/23/2018,Musicians,@ParsonJames,@TheSurfLodge is about to be lit this #MemorialDayWeekend !!! I’m playing Saturday and the vocal BIBLE @JessieJ is… https://t.co/XJNCFISQH0 +05/23/2018,Musicians,@ParsonJames,RT @SpinninRecords: This absolute gem by @thehim ft. @ParsonJames is coming this Friday! https://t.co/RdHPNLcKNX +05/23/2018,Musicians,@ParsonJames,So much more to be done though. I am extremely thankful for this conversation starter and the opportunity to gather… https://t.co/44CyUS5uGB +05/23/2018,Musicians,@ParsonJames,I was there! & while it was definitely surprising to be the only POC at this initial event i am genuinely excited a… https://t.co/oxI2wKIaWP +05/22/2018,Musicians,@ParsonJames,@MJE4Peace @adamlambert Omg 😂 +05/22/2018,Musicians,@ParsonJames,@TheGlamourGuy @shirleyhalperin @Variety @troyesivan @adamlambert @justintranter16 @IlseyJ @ferras @TOMofLA… https://t.co/Ns8sjwCeVo +05/22/2018,Musicians,@ParsonJames,"RT @TheGlamourGuy: Grateful to @shirleyhalperin for letting me write about homophobia in the biz for @Variety! Thank you to @troyesivan, @a…" +05/22/2018,Musicians,@ParsonJames,Had a little Sunday brunch with some remarkable LGBTQ+ artists and writer and spoke to @Variety_Music @Variety abo… https://t.co/dmU6IKQZ3g +05/22/2018,Musicians,@ParsonJames,@zainab13rw Step away from my mans!!!! +05/22/2018,Musicians,@ParsonJames,@adamlambert 💛💛 so much love for u! +05/22/2018,Musicians,@ParsonJames,RT @adamlambert: What a wondering Sunday brunch ! And thanks for the kind words @ParsonJames !! https://t.co/YOOTe2hT5t +05/22/2018,Musicians,@ParsonJames,RT @jonboy79: “Forcing people into the closet - or making them feel that they can’t be themselves without facing some sort of criticism - c… +05/22/2018,Musicians,@ParsonJames,ILYSM 💛 https://t.co/kDfZ37FB02 +05/22/2018,Musicians,@ParsonJames,@LykkeLi IS PLAYING IN LA TOMORROW AND I AM JUST FINDING OUT!!! WHERE R THE TIX!!! OMG !!!! +05/22/2018,Musicians,@ParsonJames,@thatgirlbishop @jess_earnshaw @LarryFlick @Refinery29 @LiveKellyRyan @KellyRipa @SIRIUSXM Larry!!!!!! +05/21/2018,Musicians,@ParsonJames,RT @thehim: @ParsonJames @SpinninRecords F YEA!!!!! +05/21/2018,Musicians,@ParsonJames,Friday. 5/25. @thehim @SpinninRecords #brokenlove https://t.co/mN4JDgefyo +05/21/2018,Musicians,@ParsonJames,It’s Gemini seasonnnnnnnnnn! My crazy ass and all my other crazy ass Gemini’s are rejoicing! +05/21/2018,Musicians,@ParsonJames,omg @iamcardib shot her video in the same church as my first video it’s litttt. I miss this song. #Temple https://t.co/ppt6nyVyOF +05/19/2018,Musicians,@ParsonJames,Not again. #SanteFe 😢 +05/18/2018,Musicians,@ParsonJames,"RT @ChrChristensen: 22 years ago, a gunman entered Dunblane Primary School in Scotland, killing 16 kids and a teacher. The UK govt responde…" +05/18/2018,Musicians,@ParsonJames,"@TheSurfLodge is going to be lit this summer. Memorial Day weekend I’ll be singing you songs. Also, @JessieJ !!!! I… https://t.co/cOZqMzPaV1" +05/18/2018,Musicians,@ParsonJames,@HENRiAYO Thank you ! 💛💛💛 +05/18/2018,Musicians,@ParsonJames,My brother. We’ve seen the highest of highs and lowest of lows together and I truly love the shit out of you. You a… https://t.co/JtNmNwbsmc +05/17/2018,Musicians,@ParsonJames,RT @theacesofficial: SHAZAM OUR @LateNightSeth PERFORMANCE TONITE AND MAYBE WIN A DOPE AF VINYL BUNDLE @Shazam https://t.co/m4gOkk7Uks +05/17/2018,Musicians,@ParsonJames,RT @theacesofficial: LATE NIGHT ✔️ TUNE IN TONIGHT BABIES @LateNightSeth https://t.co/FkG4zICfio +05/16/2018,Musicians,@ParsonJames,@JSepulvedaNY It’s just time bro. It really hurt me when u said I looked like a fat ass Kelly price. +05/16/2018,Musicians,@ParsonJames,The last few months have brought forth some pivotal changes. All extremely crucial for me to move forward and learn… https://t.co/sLDbZx8kG3 +05/16/2018,Musicians,@ParsonJames,it’s fucking laurel https://t.co/J6e1b4Ly5E +05/16/2018,Musicians,@ParsonJames,"Oh fuck, u gotta go drop this shit like I haven’t walked out your show 4 times crying over this song https://t.co/0bpyzD2PKj" +05/15/2018,Musicians,@ParsonJames,This is me every day https://t.co/8oABr5gBrv +05/14/2018,Musicians,@ParsonJames,C u Memorial Day weekend @TheSurfLodge 💛 https://t.co/1ZLTqdxLJb +05/14/2018,Musicians,@ParsonJames,Whooo said dat???????? **RHOA VOICE** https://t.co/APOBsd12mb +05/14/2018,Musicians,@ParsonJames,What a fucking ride. Thank you to all the cities across the US who… https://t.co/1b0fwlpMo4 +05/13/2018,Musicians,@ParsonJames,#HappyMothersDay Queen. 💛 https://t.co/uiKoKAZOaA +05/13/2018,Musicians,@ParsonJames,@lilyallen HAHAHAHAH LILY! How iconic how progressive. I live +05/13/2018,Musicians,@ParsonJames,Happy Mother’s Day Queen. Not enough words in the world to describe… https://t.co/5C5GQ1UXKF +05/12/2018,Musicians,@ParsonJames,Thank you @barclayscenter you were absolutely magical and I’m still in shock. Tonight we close the tour in Boston’s… https://t.co/Alo4NtTrMH +05/12/2018,Musicians,@ParsonJames,@HeyItsMarioJose Omg my fucking queen ilysm +05/12/2018,Musicians,@ParsonJames,"RT @HeyItsMarioJose: #NowPlaying - “Only You” by @ParsonJames. + +A GODDAMN TUUUUUNE. +Love you, boo. 😍❤️❌💯" +05/12/2018,Musicians,@ParsonJames,I performed at Barclays center last night but immediately went to @MetropolitanBK and @BagelsmithNY after bc im👏🏽that👏🏽kinda👏🏽girl ! +05/12/2018,Musicians,@ParsonJames,@morgxn This !!!!!!!!!!! +05/11/2018,Musicians,@ParsonJames,Full @houseofsolomag spread on stands soon! 💛💛 thank you… https://t.co/rAW3ni7OoK +05/11/2018,Musicians,@ParsonJames,"RT @Fool_4_Music: Oh man, tonight’s gonna be a good night. Pumped for the @KygoMusic show with my bb’s @ParsonJames + @BonnieMcKee PLUS Bon…" +05/10/2018,Musicians,@ParsonJames,RT @BonnieMcKee: Check out @billboard’s premiere of my new single #MadMadWorld! I talked a little about the inspiration for the song and wh… +05/10/2018,Musicians,@ParsonJames,It’s ya boy! @houseofsolomag 💛💛💛 https://t.co/HQjnLtALzl +05/10/2018,Musicians,@ParsonJames,@houseofsolomag on stands soon! shot by @emighernandez 💛💛💛 @… https://t.co/SucExqeehC +05/10/2018,Musicians,@ParsonJames,Thanks for quoting me babes! 💛💛 @into https://t.co/AoGem4Ar0t +05/09/2018,Musicians,@ParsonJames,Tonight! My party returns to NYC’s @PublicHotels !! Will be a cute night of live music and surprises.… https://t.co/O21gB1vU3K +05/09/2018,Musicians,@ParsonJames,little ol me for @houseofsolomag shot by the wonderful Emilio Hernandez💛 full issue out soon!! https://t.co/xc6gLSaJF7 +05/08/2018,Musicians,@ParsonJames,Donald can I talk to u for a min imma make it quick @ The White House https://t.co/NwOHspxgoX +05/08/2018,Musicians,@ParsonJames,Wearing my formation tour jacket to the private White House tour im getting rn bc it’s what I need to do +05/07/2018,Musicians,@ParsonJames,RT @VINCINT_: @JaredGelman @jessesaintjohn There aren’t any ugly people! Just people who are led to believe that because they don’t have ce… +05/07/2018,Musicians,@ParsonJames,Missing my @artecareyes fam 😩💛 @ Careyes https://t.co/eCrLCN2eu5 +05/07/2018,Musicians,@ParsonJames,DC! I’m in You! Playing @TheAnthemDC this eve and tomorrow! 💃🏼💃🏼💃🏼💃🏼 what’s good in these parts?? Xx +05/07/2018,Musicians,@ParsonJames,🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/uBSOhaTQwh +05/06/2018,Musicians,@ParsonJames,@JHartMusic @LelandOfficial Omg +05/06/2018,Musicians,@ParsonJames,@ryankazmarek wow so then im actually heroic +05/06/2018,Musicians,@ParsonJames,@Chinfullthought 😂😂😂 +05/06/2018,Musicians,@ParsonJames,@Deedseramma Yas!!! +05/06/2018,Musicians,@ParsonJames,"RT @Deedseramma: Better gahtdamb believe it! The always will, and I'm more than okay with that. Love. My. Body. #BodyLove #SelfLove #ILoveM…" +05/06/2018,Musicians,@ParsonJames,"hats off to a beautiful Sunday. Amazing show in Chicago last night, now on to DC! 💛💛💛 https://t.co/54KpuX4kd3" +05/06/2018,Musicians,@ParsonJames,My thighs touch but I am still a good person +05/06/2018,Musicians,@ParsonJames,@pcrowl @glaad @jvn Go off!!!!!! 💛💛💛💛 +05/05/2018,Musicians,@ParsonJames,Billy Gilman is the OG Mason Ramsey +05/05/2018,Musicians,@ParsonJames,"RT @SheaCoulee: Happy Cinco De Mayo everyone! And by EVERYONE, I mean the individuals who are paying homage to Mexico's victory in the Batt…" +05/04/2018,Musicians,@ParsonJames,There are some points she has made https://t.co/nGVzlB9uO6 @NICKIMINAJ +05/04/2018,Musicians,@ParsonJames,. @NICKIMINAJ ate that +05/04/2018,Musicians,@ParsonJames,"Today is a significant learning lesson for me. On so many levels. Self care, relationships, responsibility. The bea… https://t.co/aoMgfekaCQ" +05/04/2018,Musicians,@ParsonJames,@hoecakegal Who said anything about race here? These are direct quotes from this man that contradict himself. It’s… https://t.co/S7AMTuMVhH +05/03/2018,Musicians,@ParsonJames,I just watched a video of @rihanna applying makeup for 10 mins and caught myself smiling a lot +05/03/2018,Musicians,@ParsonJames,"RT @TIDAL: .@xtina is back. + +Stream #Accelerate featuring @tydollasign and @2chainz: https://t.co/fxZuGnbZtQ https://t.co/7ftFkxCtnB" +06/29/2018,Musicians,@JamesArthur23,"RT @JAShows_: 🎥 || @JamesArthur23 performing a cover of The Fugee’s ‘READY OR NOT’ at the Jounieh Summer Festival 2018 in Jounieh, Lebanon…" +06/29/2018,Musicians,@JamesArthur23,💖 https://t.co/WremTS2pJI +06/29/2018,Musicians,@JamesArthur23,"#YouDeserveBetterAcoustic + +https://t.co/TV54Zq7PII" +06/29/2018,Musicians,@JamesArthur23,"Thank you Lebanon you were electric tonight, you reminded me how much I’m still in love with the live aspect of the… https://t.co/BamXxFoHin" +06/29/2018,Musicians,@JamesArthur23,After this album I’m retiring. Love James x +06/29/2018,Musicians,@JamesArthur23,🐐 #Scorpion #Drake +06/28/2018,Musicians,@JamesArthur23,https://t.co/ywEuxdXN1D +06/28/2018,Musicians,@JamesArthur23,@ZingyTheRobot Of course we didn’t throw the game there’s a few highlights of us genuinely trying to score +06/28/2018,Musicians,@JamesArthur23,@ReochReoch Begging.. Or performing music in front of millions of people which takes balls big man 😂 there’s a diff… https://t.co/OJwug76nj7 +06/28/2018,Musicians,@JamesArthur23,RT @SpotifyUK: #TBT to when to @rudimental and @JamesArthur23 made us dance until sunrise. Get your #SummerRewind ☀️⏪https://t.co/pgm323EwJ… +06/28/2018,Musicians,@JamesArthur23,RT @CapitalOfficial: It's the #WorldCup match we've all been waiting for: #ENGBEL. ⚽️ Let's just hope the #ThreeLions don't get thrashed as… +06/28/2018,Musicians,@JamesArthur23,I’m the best there is https://t.co/TNU0mH2Q9F +06/28/2018,Musicians,@JamesArthur23,Do we really wanna win today 😕 #ENGBEL +06/27/2018,Musicians,@JamesArthur23,Nirvana nevermind still sounds so good in 2018 #Nirvana #Nevermind +06/27/2018,Musicians,@JamesArthur23,Head to https://t.co/nltKgE62Lw for details & tickets for all my upcoming live shows this summer! +06/27/2018,Musicians,@JamesArthur23,"#YouDeserveBetter @AppleMusic + +https://t.co/09RoHUdW43" +06/26/2018,Musicians,@JamesArthur23,@triglarrrrrrr And a record deal and the opportunity to work with some of the best musical minds in the world and a… https://t.co/MpJc87SZWT +06/26/2018,Musicians,@JamesArthur23,#YouDeserveBetter video coming soon! https://t.co/x2VnSWlqMk +06/26/2018,Musicians,@JamesArthur23,"RT @BBCR1: Set your reminders, @JamesArthur23 fans! 🗓 + +James will be joining us in the Live Lounge on Tuesday 3rd July at 12pm. What would…" +06/26/2018,Musicians,@JamesArthur23,RT @ShottyHorroh: Listen to #Shudehill on all streaming platforms now https://t.co/HM1l1HLnTJ https://t.co/iTgtaeoXSx +06/25/2018,Musicians,@JamesArthur23,"@triglarrrrrrr Pretty stupid comment, that was a competition with a completely different premise 🤨" +06/25/2018,Musicians,@JamesArthur23,@simybv81 I like Dani and jack they’re a cute little cockney couple +06/25/2018,Musicians,@JamesArthur23,@rosieheadland Hahaha I’m giving it a chance! Only watched a bit of tonight’s 😂 +06/25/2018,Musicians,@JamesArthur23,@JohannRed16 Yeah to be fair I’m not with the plot but I’m slowly picking it up +06/25/2018,Musicians,@JamesArthur23,@Lois_Talia Yeah I feel that +06/25/2018,Musicians,@JamesArthur23,Can someone explain to me why our country gets so excited about stuff like Love island? Tonight was my first night… https://t.co/dBvHQy4UsS +06/25/2018,Musicians,@JamesArthur23,"https://t.co/MX97Ve5YaY + +@ShottyHorroh You are just fucking sick bro" +06/25/2018,Musicians,@JamesArthur23,RT @Official_Jamal: Obsessed with @JamesArthur23 ‘s two new tunes 😍😍 +06/24/2018,Musicians,@JamesArthur23,Wow #EnglandvPanama +06/24/2018,Musicians,@JamesArthur23,See I knew he’d score!! #EnglandvPanama @JesseLingard +06/24/2018,Musicians,@JamesArthur23,"Rashford or vardy would be a so effective in that position Sterling is playing in, just my opinion #EnglandvPanama" +06/24/2018,Musicians,@JamesArthur23,One of the best pens I’ve ever seen 😕 #EnglandvPanama +06/24/2018,Musicians,@JamesArthur23,Jon stones first goal #EnglandvPanama 🙄 +06/24/2018,Musicians,@JamesArthur23,Lingard first goal #EnglandvPanama +06/23/2018,Musicians,@JamesArthur23,Had Belgium 5-1 Mexico 2-1 and Germany 2-1 today cashed out Belgium at 5-1 and had Toni kroos to score as well. Lov… https://t.co/YEX4Jk7mOh +06/23/2018,Musicians,@JamesArthur23,Phil Neville whispering the commentary on #BelgioTunisia love it #SaturdayMotivation +06/22/2018,Musicians,@JamesArthur23,😂 https://t.co/mzucNYU9Sk thanks for this dad @Neilarthur1Neil +06/22/2018,Musicians,@JamesArthur23,"Thanks so much @lorraine for having us on the show this morning, here is the interview https://t.co/Nto3GMJkS7 the… https://t.co/mSNDuJfHzG" +06/22/2018,Musicians,@JamesArthur23,"RT @MTVMusicUK: Check out this week's MTV Music (Sky 350/Virgin 310) playlist featuring new entries from... +@JamesArthur23 +@5SOS +@heyitsa…" +06/22/2018,Musicians,@JamesArthur23,Thank you for having me Lorraine! Always so nice to talk to you 🙂🙂😘😘 https://t.co/mooAeEwfSP +06/22/2018,Musicians,@JamesArthur23,RT @JAShows_: MAKE SURE you tune into @ITV to catch @JamesArthur23’s chat and performance on @lorraine this morning! 📺 https://t.co/odAke66… +06/21/2018,Musicians,@JamesArthur23,@Rickahir 😂😂 +06/21/2018,Musicians,@JamesArthur23,"Reach out to that friend you haven’t heard from in a while, you never know what they might be going through. We all… https://t.co/Af7gyxp8Tc" +06/21/2018,Musicians,@JamesArthur23,Happy 90th birthday to the vegan axe wielder @Rickahir your licks and beard get more ripe and juicy by the year.… https://t.co/5BHfPbr0p7 +06/20/2018,Musicians,@JamesArthur23,"RT @KissFMUK: It's that age-old question, #LoveIsland or the #WorldCup? @JamesArthur23's weighed in, where do you stand? 🤔 #POLSEN + +WATCH…" +06/18/2018,Musicians,@JamesArthur23,"RT @KissFMUK: TOMORROW we'll be chatting to @JamesArthur23 on #KISSBreakfast and it all kicks off from 7am! 🙌 + +LISTEN here 👉 https://t.co/…" +06/18/2018,Musicians,@JamesArthur23,#TheCarters album is Great +06/18/2018,Musicians,@JamesArthur23,"Summer 2018 issue for  +@euphoriazine #EUPHORIA8 +📸 @jackalexanderuk + +https://t.co/ytCYBfsyAB https://t.co/cCMZCfEFtL" +06/17/2018,Musicians,@JamesArthur23,Never has anybody eaten so many carbs in one weekend 😔 +06/17/2018,Musicians,@JamesArthur23,The whole world should be listening to the new @Miguel album #warandleisure +06/16/2018,Musicians,@JamesArthur23,"RT @Z100NewYork: Wanna know what @MaxwellsHouse is listening to this weekend?? Here are his 🖐🏾 NEW #MaxwellApproved tracks! + +@alessiacara -…" +06/16/2018,Musicians,@JamesArthur23,FUCK OFF FLY +06/15/2018,Musicians,@JamesArthur23,https://t.co/GtxYFfTyJi https://t.co/PBOoW6aGOZ +06/15/2018,Musicians,@JamesArthur23,I listen to the used when I meditate +06/15/2018,Musicians,@JamesArthur23,"RT @iHeartRadioAU: The @iHeartRadioAU artist of the week is @JamesArthur23 ❤️🎶 + +Tune into the #iHeartRadioCountdown this Sunday from 6pm AE…" +06/14/2018,Musicians,@JamesArthur23,"@dapperlaughs All good, no hard feelings. Much respect for apologising takes a big man." +06/14/2018,Musicians,@JamesArthur23,The World Cup opening later getting me through this grey arse morning in London +06/13/2018,Musicians,@JamesArthur23,"RT @BBCRadio2: 🎶 New to the Radio 2 Playlist this week... + +🆕 @KylieMinogue +🆕 @LennyKravitz +🆕 @JamesArthur23 + +Find out more about the mus…" +06/13/2018,Musicians,@JamesArthur23,@finers9 @dapperlaughs I was also in Marbella last night so.. +06/13/2018,Musicians,@JamesArthur23,@dapperlaughs To be fair mate back in 2012 she could well hv got DM’d along with the rest of the babestation cast b… https://t.co/a7WVNxRNXM +06/13/2018,Musicians,@JamesArthur23,"I promise! And I promise to sing it better + +Better + +Better ..🙄 https://t.co/G75dxdLiCe" +06/13/2018,Musicians,@JamesArthur23,@DanielTheFiRowe @dapperlaughs That and multi platinum records yeah 😂 read a book mate +06/13/2018,Musicians,@JamesArthur23,"@dapperlaughs Mugged your mate off? I did a meet a greet with all 500 people that were there off my own back, how a… https://t.co/rqvo0PpjP4" +06/12/2018,Musicians,@JamesArthur23,"RT @MTVMusicUK: 🚨 If you've always wanted to ask @JamesArthur23 something, THIS IS YOUR CHANCE! Head here >>> https://t.co/7oTX36awVF and J…" +06/12/2018,Musicians,@JamesArthur23,"RT @SonyMusicUK: Were you lucky enough to see @JamesArthur23 perform to this HUGE crowd at @CapitalOfficial's #capitalSTB? + +What an incredi…" +06/12/2018,Musicians,@JamesArthur23,"#AtMyWeakest +https://t.co/VpAyWl3ynL" +06/11/2018,Musicians,@JamesArthur23,RT @Pressparty: .@JamesArthur23’s “Back From The Edge” went straight to No.1 in the UK charts & has gone multi platinum worldwide https://t… +06/10/2018,Musicians,@JamesArthur23,"#capitalSTB @CapitalOfficial + +https://t.co/ivo0LrPH2g https://t.co/ZonvwnCBIo" +06/09/2018,Musicians,@JamesArthur23,Thank you @CapitalOfficial 🙌🏻 #SummerTimeBall https://t.co/zhekEtKW37 +06/09/2018,Musicians,@JamesArthur23,"RT @officialcharts: Check out this week's Official Singles Chart in full, incl. You Deserve Better, a definite future hit from @JamesArthur…" +06/08/2018,Musicians,@JamesArthur23,@GeorgiaGarrod97 Happy birthday x +06/08/2018,Musicians,@JamesArthur23,"RT @AppleMusic: Two amazing singles from @JamesArthur23. Listen now. +#YouDeserveBetter +#AtMyWeakest +https://t.co/a6pO1R4Qmb" +06/08/2018,Musicians,@JamesArthur23,Thank you very much! https://t.co/gMdz7NCJyD +06/07/2018,Musicians,@JamesArthur23,Big love Australia ! ❤️ https://t.co/mXqB7KQ8hh +06/06/2018,Musicians,@JamesArthur23,"RT @Pressparty: .@JamesArthur23’s ""Say You Won’t Let Go” has sold more than 9.6 million copies globally https://t.co/y6FlwGbLNS https://t.c…" +06/06/2018,Musicians,@JamesArthur23,🎥 #YouDeserveBetter https://t.co/gIVbWEXJMs +06/06/2018,Musicians,@JamesArthur23,@pandoratweets @KissFMUK Thank you :) x +06/05/2018,Musicians,@JamesArthur23,"RT @Sianwelby: Get ready, he’s here! 😝@JamesArthur23 on the show next! @thisisheart #YouDeserveBetter https://t.co/Zy5ifwuehr" +06/05/2018,Musicians,@JamesArthur23,".@AmazonMusicUK + +https://t.co/tcMFPdcUNO https://t.co/IVoJSfKxAP" +06/05/2018,Musicians,@JamesArthur23,RT @officialcharts: The UK believes that @JamesArthur23's new single 'deserves' a spot on the Official Trending Chart! Listen to You Deserv… +06/05/2018,Musicians,@JamesArthur23,"#NewMusicFriday MusicFriday @Spotify + +https://t.co/OzLMqKpWuf https://t.co/hgXX40fq2l" +06/04/2018,Musicians,@JamesArthur23,RT @JAShows_: 🎥 || CHECK OUT @ShawnMendes telling his fan base to check out @JamesArthur23's new song #YouDeserveBetter 🎵 - (via: @BeIlasMe… +06/04/2018,Musicians,@JamesArthur23,"You deserve better, better... @TheVoiceAU https://t.co/SDJnHBSkzu" +06/04/2018,Musicians,@JamesArthur23,"RT @ColumbiaRecords: Two new songs from @JamesArthur23? Yes, please! https://t.co/RPVvgBlLwS https://t.co/ICFM3ks4Js" +06/03/2018,Musicians,@JamesArthur23,@redrose7221 @TheVoiceAU The last post chorus of the song needed to be on track so that I could sing the signature… https://t.co/aH3cPrwFDU +06/03/2018,Musicians,@JamesArthur23,Thank you @TheVoiceAU #YouDeserveBetter https://t.co/s1UyypS871 +06/03/2018,Musicians,@JamesArthur23,RT @SonyMusicAU: See @JamesArthur23's world premier performance of #YouDeserveBetter tonight on @TheVoiceAU | starts at 7pm AEST 🕺 https://… +06/03/2018,Musicians,@JamesArthur23,TONIGHT! @TheVoiceAU #YouDeserveBetter https://t.co/BGznk7xszw +06/02/2018,Musicians,@JamesArthur23,RT @syco: 🎶 You Deserve Better 🎶 @JamesArthur23 👌 https://t.co/16QPf8RRQu https://t.co/tw98ljknN4 +06/02/2018,Musicians,@JamesArthur23,RT @_kris_ashley_: When you’re in the car listening to @JamesArthur23 ‘s new shit and the MF in the car with you won’t shut TF up! 🤬 #YouDe… +06/02/2018,Musicians,@JamesArthur23,Beyond belief https://t.co/nuiCOoFt6E +06/02/2018,Musicians,@JamesArthur23,Thanks! Im glad you’re feeling it x https://t.co/pXU4a9iCiY +06/02/2018,Musicians,@JamesArthur23,"RT @AilsaBailliex: 'And I hope you find somebody else +That'll love you like nobody else' 🎧 @JamesArthur23 #YouDeserveBetter is 🔥🔥" +06/02/2018,Musicians,@JamesArthur23,"RT @stanecy: @JamesArthur23 Loving the Song!!! ❤️❤️😍 +Feel like this album is going to be So Much Of Your Style - Like how you first came ou…" +06/02/2018,Musicians,@JamesArthur23,"Yo! Are you all enjoy #YouDeserveBetter ? + +https://t.co/yOmhv9wS2R" +06/02/2018,Musicians,@JamesArthur23,RT @MTVMusicUK: The video of the week on @ClubMTV is 'You Can Cry (ft. @JamesArthur23)' by @marshmellomusic x @therealjuicyj 💚 Watch it her… +06/02/2018,Musicians,@JamesArthur23,RT @SonyMusicAU: Tune in to @TheVoiceAU tomorrow night to see the world premier live performance of @JamesArthur23’s new bop #YouDeserveBet… +06/02/2018,Musicians,@JamesArthur23,RT @syco: .@JamesArthur23 releases two brand new songs today 'You Deserve Better' and 'At My Weakest'! 🎶 Out now everywhere! 🙌 https://t.co… +06/02/2018,Musicians,@JamesArthur23,"RT @chunxlix: I- @JamesArthur23 boiii it's sick i love it +#YouDeserveBetter https://t.co/idxacofCeb" +06/01/2018,Musicians,@JamesArthur23,I see :) thank you xxxx https://t.co/J1wXfMXlp1 +06/01/2018,Musicians,@JamesArthur23,"RT @Charllouiseox: My timeline is such a happy place and it's all thank to you @JamesArthur23! ❤ + +#YouDeserveBetter + #AtMyWeakest are both…" +06/01/2018,Musicians,@JamesArthur23,❤️💗 https://t.co/b1uazsY4cO +06/01/2018,Musicians,@JamesArthur23,RT @TrollopeLucy: i think I’ve found a voice i will listen to for the rest of my life - @JamesArthur23 +06/01/2018,Musicians,@JamesArthur23,"This is what it’s all about. I hope your daughter gets well soon, thanks for the love x https://t.co/6ZDCDrTtNr" +06/01/2018,Musicians,@JamesArthur23,RT @zaynabmm: #YouDeserveBetter and #AtMyWeakest are beyond perfect. @JamesArthur23 never fails to amaze me 😭💜💜💜 +06/01/2018,Musicians,@JamesArthur23,RT @SienPuttemans: Even if @JamesArthur23 will never notice me. He will forever be the best artist in my opinion. And he did it again #YouD… +06/01/2018,Musicians,@JamesArthur23,RT @nygmarose: Omg what is this magic?!?? Everything by @JamesArthur23 are magical!! I wanna cry coz it’s so beautiful 😭 followed him for s… +06/01/2018,Musicians,@JamesArthur23,I see you 💗 https://t.co/n3lUyWlfIr +06/01/2018,Musicians,@JamesArthur23,RT @INKEDSTYLES94: @JamesArthur23 literally me after hearing #YouDeserveBetter for the first time https://t.co/jSzx9hw8Ta +06/01/2018,Musicians,@JamesArthur23,RT @okokTJ: @JamesArthur23 new album in the works? 😏 cause #YouDeserveBetter and #AtMyWeakest are complete bangers 😍 +06/01/2018,Musicians,@JamesArthur23,RT @iscoftramos: you killed it love @JamesArthur23 #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,RT @SassyTexan: This week really sucked. The release of the video for #YouCanCry and the songs #YouDeserveBetter and #AtMyWeakest were the… +06/01/2018,Musicians,@JamesArthur23,Yep hahahahaha https://t.co/MqbQugJwoD +06/01/2018,Musicians,@JamesArthur23,RT @nadhira86: @JamesArthur23 Jamie our son loves your song!!! #YouDeserveBetter I am so proud of you!! You are incredibly talented https:/… +06/01/2018,Musicians,@JamesArthur23,RT @MacarenaEC: Que no sé si me quedo con #YouDeserveBetter o #AtMyWeakest!! 😍 Las dos tan diferentes y tan geniales al mismo tiempo... Muy… +06/01/2018,Musicians,@JamesArthur23,RT @neonbelle: @JamesArthur23 After hearing #YouDeserveBetter #Atmyweakest can’t wait to hear the new album and see how your music has ev… +06/01/2018,Musicians,@JamesArthur23,"RT @Esbranza: @JamesArthur23 +In my eyes you’re a fabulous flawless man you can never do wrong, I love & adore you and i see your music as…" +06/01/2018,Musicians,@JamesArthur23,Aw thank you!! ❤️ https://t.co/pprnZgrjsj +06/01/2018,Musicians,@JamesArthur23,RT @LBannatyne: @JamesArthur23 only way i can describe it is beautiful!👌 #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,I’m here 😜 thanks for all your comments ❤️ https://t.co/cBAgB3FG50 +06/01/2018,Musicians,@JamesArthur23,☺️ thanks mate https://t.co/7daFOryk1k +06/01/2018,Musicians,@JamesArthur23,Thank you so much I’m very glad you like them x https://t.co/dktBB09FiC +06/01/2018,Musicians,@JamesArthur23,"RT @https_breeze: I loved the songs very much,your music is art and beautiful!!! #YouDeserveBetter #AtMyWeakest @JamesArthur23 ❤😍 @Jame…" +06/01/2018,Musicians,@JamesArthur23,RT @Niallirish_lad: My 2 favorites love them your music is amazing you diserve everything you got you are truly amazing @JamesArthur23 http… +06/01/2018,Musicians,@JamesArthur23,RT @DeanJohnWilson: Big Congratulations to the Talent and friend @JamesArthur23 on his two new releases which are nothing short of #RI-DOPE… +06/01/2018,Musicians,@JamesArthur23,RT @MrsRow: When you did all your best #YouDeserveBetter tweets this morning and @JamesArthur23 hasn't noticed them but you're too tired to… +06/01/2018,Musicians,@JamesArthur23,"RT @allana1309: @JamesArthur23 +Loved you from the get go... You just keep getting better and better ♥ +#YouDeserveBetter +#AtMyWeakest +Canno…" +06/01/2018,Musicians,@JamesArthur23,Haha 😂 you’re too kind x https://t.co/Ozvnpu2DzD +06/01/2018,Musicians,@JamesArthur23,Haaa yes please https://t.co/pkCCrJbZHU +06/01/2018,Musicians,@JamesArthur23,RT @tomnye9: @JamesArthur23 hope you get to number 1 man with #youdeservebetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,RT @MabroukaC: @JamesArthur23 I fell even more in love with you today ❤️❤️ the new tracks are 🔥🔥🔥 #youdeservebetter #atmyweakest +06/01/2018,Musicians,@JamesArthur23,RT @aanahernandes: Thank you for release the song on my birthday @JamesArthur23 ❤️ #YouDeserveBetter #Atmyweakest https://t.co/CdBRil6kiV +06/01/2018,Musicians,@JamesArthur23,"RT @JoLArroyo: @JamesArthur23 #YouDeserveBetter on repeat and a challenge to sing. Keep it up, can't wait to see you live. 👏🏻" +06/01/2018,Musicians,@JamesArthur23,RT @albaadp: I’m quite excited for @JamesArthur23 new musical era this year! Those new songs are so good 💗 #AtMyWeakest #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,"RT @btwtay: @JamesArthur23 I’ve only just been able to listen and all I can say is I’m in loveeee, release the album soon pls :)) x #AtMyWe…" +06/01/2018,Musicians,@JamesArthur23,RT @introsbutera: @JamesArthur23 i'm obsessed with your new songs....good job 👏🏻💥☄ #YouDeserveBetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,Thank you ❤️ https://t.co/ySObOcGnV3 +06/01/2018,Musicians,@JamesArthur23,RT @parkerhllnd: @JamesArthur23 i'm so proud of you and the masterpieces you always do like really thank YOU for blessing us with your musi… +06/01/2018,Musicians,@JamesArthur23,Now 🙋🏼‍♂️ https://t.co/yhKWqfqurJ +06/01/2018,Musicians,@JamesArthur23,Thank you love you to! X https://t.co/w6wjTB5rLE +06/01/2018,Musicians,@JamesArthur23,"RT @agicampos: @JamesArthur23 +Brazil loves its music. So happy with new songs! #YouDeserveBetter" +06/01/2018,Musicians,@JamesArthur23,Thank you ! https://t.co/xkIbXZ2BEo +06/01/2018,Musicians,@JamesArthur23,Thank you brother much love and respect to you x https://t.co/pivsGeVTkv +06/01/2018,Musicians,@JamesArthur23,😍 https://t.co/ZBWUBcVR68 +06/01/2018,Musicians,@JamesArthur23,RT @Andreathatgirl: @JamesArthur23 I am proud of you. I love your new songs so much. Come to Spain soon please! 🙏🏻🙏🏻#YouDeserveBetter #AtM… +06/01/2018,Musicians,@JamesArthur23,Thank you so much for listening and supporting me. Much love and respect x https://t.co/ULycvhbfnh +06/01/2018,Musicians,@JamesArthur23,Bless you x https://t.co/MqIDluML2D +06/01/2018,Musicians,@JamesArthur23,Thanks bro! https://t.co/rQ0ZrFCH7b +06/01/2018,Musicians,@JamesArthur23,"RT @_heyitsgem: @JamesArthur23 at it again boy, smashing it👊🏽😍 #YouDeserveBetter #AtMyWeakest" +06/01/2018,Musicians,@JamesArthur23,RT @megss_1412: Literally hooked on #youdeservebetter and #atmyweakest literally didn’t think this man could get any better 😍 you surprise… +06/01/2018,Musicians,@JamesArthur23,"RT @ChloeRGoodridge: Didn’t know I could love @JamesArthur23 anymore, but then he brought out #AtMyWeakest and #YouDeserveBetter 😍😍😍😍 xx" +06/01/2018,Musicians,@JamesArthur23,"RT @buzolerrie: you deserve better is such a bop, i love it so much i can’t get it out of my head. great job @JamesArthur23 🙌🏼😻 #YouDeserve…" +06/01/2018,Musicians,@JamesArthur23,"RT @Arta_Styles: @JamesArthur23 ok I have to confess this after all this time , I'm in love with you and your angelic voice, bye. #YouDese…" +06/01/2018,Musicians,@JamesArthur23,"RT @dudebaker123: #YouDeserveBetter is a BOP , I am so excited to hear your new album . You are so talented and you have an AMAZING voice .…" +06/01/2018,Musicians,@JamesArthur23,RT @BeckyJaaynee97x: @JamesArthur23 I’ve had you deserve better in my head all day! Absolutely LOVE IT BRING ON THE ALBUM😍😍😍 +06/01/2018,Musicians,@JamesArthur23,"RT @MARCH006: @JamesArthur23 +#YouDeserveBetter I can not wait for your new album ... your music blow my mind !!... Thanks for composing for…" +06/01/2018,Musicians,@JamesArthur23,RT @ssami_: . @JamesArthur23 just keeps on giving us amazing songs. This is such a catchy tune! 🎶 https://t.co/RnPcPmE2P5 +06/01/2018,Musicians,@JamesArthur23,RT @JArmySpain: You’re doing an amazing job @JamesArthur23. You always put all your soul in your songs and that’s what make them even more… +06/01/2018,Musicians,@JamesArthur23,RT @OutsidersMel: @JamesArthur23 I’m gonna be listening #YouDeserveBetter & #AtMyWeakest non stop. Amazing👏🏻♥️ +06/01/2018,Musicians,@JamesArthur23,RT @ElliexGuy: Sorry but every song @JamesArthur23 brings out is an absolute banger! #YouDeserveBetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,RT @dionsellars1: @JamesArthur23 I’ve converted my mates 😍 #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,You’re so kind! Album is coming this year I promise x https://t.co/ANlF172sDw +06/01/2018,Musicians,@JamesArthur23,😘 https://t.co/gCplLhLuWM +06/01/2018,Musicians,@JamesArthur23,RT @TheJarmyRules: This new @JamesArthur23 music gets me so excited for the new album🙌 #AtMyWeakest #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,RT @SarahhPerezz3: Literally everything to me😍 @JamesArthur23 https://t.co/88dMlwnf3D +06/01/2018,Musicians,@JamesArthur23,RT @sarcitrin: hi @JamesArthur23 i just wanna day i will have these two songs on repeat for the next year ok great that’s it — they’re amaz… +06/01/2018,Musicians,@JamesArthur23,RT @GottaBeNere: I adore @JamesArthur23’s tunes. They’re masterpieces. #AtMyWeakest. 😍 https://t.co/z9lLQIM7uC +06/01/2018,Musicians,@JamesArthur23,"RT @sara_ankersen: the king @JamesArthur23 is back with new music, and im in love !!#atmyweakest #youdeservebetter https://t.co/WgnT1sBijB" +06/01/2018,Musicians,@JamesArthur23,RT @ilwethh: @JamesArthur23 “you deserve bettet” totally became my summer song thx😍 +06/01/2018,Musicians,@JamesArthur23,Thank you 👊🏻 https://t.co/jx0y3C2QXi +06/01/2018,Musicians,@JamesArthur23,RT @jesshedrick: @JamesArthur23 Honestly can’t wait for this album of yours!! These SINGLES ARE AMAZING😍😍😍 #AtMyWeakest Hits you right in t… +06/01/2018,Musicians,@JamesArthur23,RT @harri_purd1e: @JamesArthur23 you deserve better is such a bop and I bloody love it!!!😆😆 +06/01/2018,Musicians,@JamesArthur23,RT @TheBestRombout: @JamesArthur23 so so proud of you. Absolutely love your new songs. Come to New Zealand please!!! #YouDeserveBetter #AtM… +06/01/2018,Musicians,@JamesArthur23,RT @mckenzi54389989: @JamesArthur23 #AtMyWeakest #YouDeserveBetter been on repeat all day! In love with them both 😍💓 +06/01/2018,Musicians,@JamesArthur23,RT @emmaPmcewanx: One of the best ❤️❤️ @JamesArthur23 https://t.co/QX1jYeKwmq +06/01/2018,Musicians,@JamesArthur23,Haha ❤️❤️ https://t.co/quDsBHwaiH +06/01/2018,Musicians,@JamesArthur23,"RT @cerys_harvey: I am officially in love....with @JamesArthur23 new songs #YouDeserveBetter and #AtMyWeakest +James, thank you so much for…" +06/01/2018,Musicians,@JamesArthur23,Thank you!! Xx https://t.co/ceAiy0CFMK +06/01/2018,Musicians,@JamesArthur23,RT @TameraKirkwood: I don't have a favorite song @JamesArthur23 You have made me fall in love with these two songs from the first tune! 😍🎤🎶… +06/01/2018,Musicians,@JamesArthur23,I am proud to give you both I suppose it depends on what mood your in :) that’s the beauty of 2 ends of the spectru… https://t.co/eLtMKYb762 +06/01/2018,Musicians,@JamesArthur23,"RT @kellyW2480: @JamesArthur23 #Youdeservebetter is such a banger , your music keeps evolving, love it 😍🙌🏻🙌🏻" +06/01/2018,Musicians,@JamesArthur23,❤️❤️❤️❤️❤️ https://t.co/KlTaWAEWxS +06/01/2018,Musicians,@JamesArthur23,"RT @A_n_g_e_l_i_e_: @JamesArthur23 ‘s RT spree are making me dizzy!! Love it! So happy and digging your new songs!! +#YouDeserveBetter…" +06/01/2018,Musicians,@JamesArthur23,RT @TheScript_Fan3: @JamesArthur23 I completely idolize you and and have quickly fallen in love with these two new amazing tunes!! 💙💙💙 #You… +06/01/2018,Musicians,@JamesArthur23,RT @sarcitrin: @JamesArthur23 really puttin me in my feels #atmyweakest #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,RT @narry_my_love: Catch me getting down to this song 24/7 @JamesArthur23 #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,Thank you that means a lot x https://t.co/z0rZ6LrGSa +06/01/2018,Musicians,@JamesArthur23,RT @geraldine96Lew: @JamesArthur23 just listened to your brand new song #YouDeserveBetter what an amazing song love it love it!!😍 +06/01/2018,Musicians,@JamesArthur23,Thank you sir https://t.co/TKZOYEwrJR +06/01/2018,Musicians,@JamesArthur23,RT @TheXFactor: It changed @JamesArthur23’s life and it could change yours too! #XFactor Open Auditons are happening this weekend! Sunday 3… +06/01/2018,Musicians,@JamesArthur23,RT @ClaireJayneJLS: @jamesarthur23 #NowPlaying #YouDeserveBetter JAMES YOU HAVE TOTALLY OUTDONE YOUURSELF THESE TRACKS ARE FANTASTIC https:… +06/01/2018,Musicians,@JamesArthur23,RT @alyssa_fryer: James Arthur never disappoints @JamesArthur23 #atmyweakest #youdeservebetter +06/29/2018,Musicians,@ddlovato,Sister I am slayed. 😍 https://t.co/BwVRX7P3VF +06/27/2018,Musicians,@ddlovato,"To my fans, my family, and my supporters, the ones who never left me, you are my light. I am forever grateful 🙏🏻 https://t.co/0BVzp5wP8p" +06/26/2018,Musicians,@ddlovato,#Sober 🖤https://t.co/RArIHOpNNq https://t.co/f0kaRDkn2t +06/26/2018,Musicians,@ddlovato,🔋💚💪🏼 @Fabletics Nori Outfit #Demi4Fabletics https://t.co/t8YYlLunqV https://t.co/DGDBxBiEm2 +06/26/2018,Musicians,@ddlovato,"I’m celebrating Pride by raising money for GLAAD, an organization that has been fighting for LGBTQ+ inclusion and j… https://t.co/foe05LMySl" +06/25/2018,Musicians,@ddlovato,"RT this to vote for me or tweet ""My #TeenChoice for #ChoiceSnapchatter is Demi Lovato @ddlovato” https://t.co/wm86nmfbjc" +06/25/2018,Musicians,@ddlovato,"RT this to vote for me or tweet ""My #TeenChoice for #ChoiceLatinSong is Échame La Culpa @LuisFonsi @ddlovato” https://t.co/G9pXnQNWA3" +06/25/2018,Musicians,@ddlovato,"I got three more Teen Choice Nominations! RT this to vote for me or tweet ""My #TeenChoice for… https://t.co/EHVb2hrC1z" +06/24/2018,Musicians,@ddlovato,"Tonight I took the stage, a new person with a new life. Thank you to everyone who has supported me throughout this… https://t.co/CaDgNiWe1O" +06/21/2018,Musicians,@ddlovato,"My truth... https://t.co/tmDhhBGLNQ +#sober out now https://t.co/Uwfg6PFPk9" +06/20/2018,Musicians,@ddlovato,My heart is broken with what’s going on in the US right now. +06/19/2018,Musicians,@ddlovato,Zaddy issues 💁🏻‍♀️ https://t.co/2Y9ya1eUp5 +06/19/2018,Musicians,@ddlovato,Did you hear the acoustic version of Solo with @cleanbandit? Love the vibe. https://t.co/3YaNtb3Uyn https://t.co/DGl78V3cmZ +06/18/2018,Musicians,@ddlovato,Solo with @cleanbandit is #1 on the UK mid-week chart! Let's make sure it stays there until Friday 🙏🏼… https://t.co/afkg8HNlR6 +06/16/2018,Musicians,@ddlovato,Manchester.. it was an honor to perform for you all. Thank you for being such an incredible audience.. you are so strong.. 🙏 +06/15/2018,Musicians,@ddlovato,Sorry Not Sorry was nominated for #ChoiceSongFemaleArtist! Let’s win this thing. RT to vote for me or tweet “My… https://t.co/i0S2Oy0ZHs +06/15/2018,Musicians,@ddlovato,"Thank you so much for the Teen Choice Nomination for #ChoiceFemaleArtist! 😍 RT this to vote for me or tweet ""My… https://t.co/VnX56snAUE" +06/15/2018,Musicians,@ddlovato,.@xtina this ALBUM!!! 😍 Guys it’s sooo good. Do yourself a favor and listen here: https://t.co/IPPSO1911X… https://t.co/Xv2QoyRRnb +06/15/2018,Musicians,@ddlovato,Feeling cute in my @Fabletics Stretto II 🌊☀️ https://t.co/LTXFrCiNHU https://t.co/Rpe69XOXVJ +06/14/2018,Musicians,@ddlovato,Who else can’t sleep? +06/14/2018,Musicians,@ddlovato,Is it bad that I can’t focus on it because of how hot the son Todd is? +06/14/2018,Musicians,@ddlovato,Watching the staircase on Netflix... it’s sooooo good. Anybody else watching it? +06/14/2018,Musicians,@ddlovato,RT @tatted_up_dolly: https://t.co/SyCb0T4ybA. Please help support a good cause! We are a local recovery center in… +06/14/2018,Musicians,@ddlovato,Life is a balancing act. Had so much fun working with @COREdrinks on this new campaign. Check it out. … https://t.co/1prF3NS5V7 +06/13/2018,Musicians,@ddlovato,Well guys I made it through the show!! I’ve never sang in falsetto so much in my life but I still had fun!! Thank you Glasgow!!! ❤️ +06/13/2018,Musicians,@ddlovato,I still have to protect my voice so y’all may have to hit the high notes for me tonight 😜😝 +06/13/2018,Musicians,@ddlovato,"I feel sooooo much better, thank you for all your well wishes!!!! You guys are the best!!!" +06/13/2018,Musicians,@ddlovato,At the venue... so ready to get back on stage!!! Who’s ready?!! +06/11/2018,Musicians,@ddlovato,Still less invasive than paparazzi +06/11/2018,Musicians,@ddlovato,I’m so bored I might start playing fortnite +06/11/2018,Musicians,@ddlovato,Most exciting part of my day? Getting a camera shoved up my nose and down my throat to look at my vocal chords 😑 +06/11/2018,Musicians,@ddlovato,"This seriously sucks.. haven’t left my hotel room in 2 days now. Sick, bored and bummed out." +06/11/2018,Musicians,@ddlovato,I’m literally gutted that I have to postpone this next show in Birmingham.. I’ve never had to miss shows due to my… https://t.co/P0PjfUsDW4 +06/10/2018,Musicians,@ddlovato,My fans are seriously the best... I can’t believe how much love and support I’ve received today.. the video of my f… https://t.co/fip5YJLb2l +06/10/2018,Musicians,@ddlovato,❤️ https://t.co/QpkPZtMXyP +06/10/2018,Musicians,@ddlovato,💔 https://t.co/Rs7ZWMCvcQ +06/09/2018,Musicians,@ddlovato,Loving the Canon II from @Fabletics. Pretty in pink 🌸 #Demi4Fabletics https://t.co/EcSO0BkW0i https://t.co/J7yWHmZBZU +06/09/2018,Musicians,@ddlovato,Help me get @kidkelly in the @RadioHOF by texting the number 200 to 96000 (and also voting at https://t.co/BMxzD3LNzJ) – he deserves it! +06/09/2018,Musicians,@ddlovato,RT @xtina: It sets a tone of returning to the youthful innocence and feeling of limitless possibility that 'Liberation' is all about. Shout… +06/08/2018,Musicians,@ddlovato,"I loved working on my room, Power Parlor, for #29Rooms and can't wait to share it with all of my Chicago friends.… https://t.co/wZNA1ltkgT" +06/08/2018,Musicians,@ddlovato,RIP Anthony Bourdain.. I always wanted to meet you and talk jiu jitsu with you. May you sleep with the angels now. 🙏🏼 +06/07/2018,Musicians,@ddlovato,Hey guys!!! #TheFour is BACK!!! Tune in tonight at 8/7c on FOX! https://t.co/NRWFCSvqyl +06/07/2018,Musicians,@ddlovato,So psyched about these new @Fabletics styles! What do you think of this one? #Demi4Fabletics https://t.co/uhCeVYTQmt +06/05/2018,Musicians,@ddlovato,So excited to announce that @iambeckyg is supporting the #TellMeYouLoveMeTour in Argentina and Brazil!❤️ 🇧🇷 https://t.co/TXPBowyJF3 +06/03/2018,Musicians,@ddlovato,That’s just the thing... people DON’T know my full story.. https://t.co/0x8uU7gdDv +06/03/2018,Musicians,@ddlovato,So sorry if anyone was offended 😔 +06/03/2018,Musicians,@ddlovato,"For all of those coming at me rn, listen to the lyrics of Warrior and maybe you’ll have more compassion for someone… https://t.co/Su4tu6KsDD" +06/03/2018,Musicians,@ddlovato,@iamwithjb Listen to warrior and the lyrics. Maybe you’ll have more compassion for a simple mistake. +06/03/2018,Musicians,@ddlovato,I swear I could tweet something about craving jelly beans and it would offend someone. +06/03/2018,Musicians,@ddlovato,I can remember what I was wearing on this day 5 years ago but I can’t remember if I’ve ever milked a cow.. +06/03/2018,Musicians,@ddlovato,Okay guys I gotta go!! I love you all! +06/03/2018,Musicians,@ddlovato,Stop tweeting https://t.co/RZFUOiCJJ2 +06/03/2018,Musicians,@ddlovato,The fact that people in other countries know the words to my songs 😭 https://t.co/OepWlfSP0s +06/03/2018,Musicians,@ddlovato,The one coming out soon https://t.co/xkMphF44JY +06/03/2018,Musicians,@ddlovato,I DREAMT ABOUT THAT LAST NIGHT https://t.co/9YHxXejXOf +06/03/2018,Musicians,@ddlovato,I love this https://t.co/e3parnwxsW +06/03/2018,Musicians,@ddlovato,Nah https://t.co/F6ZVHt48MU +06/03/2018,Musicians,@ddlovato,I did! https://t.co/3XL1vh1Whb +06/03/2018,Musicians,@ddlovato,Lions... duh 😝 https://t.co/lr9j8dLBYl +06/03/2018,Musicians,@ddlovato,Yes!! I love horses https://t.co/YwsW3C9jn4 +06/03/2018,Musicians,@ddlovato,Poot is locked up. She’s allergic to sunlight. https://t.co/NCOUU2btBI +06/03/2018,Musicians,@ddlovato,I legit can’t remember if I have..... is that weird? https://t.co/Has9kTRnVJ +06/03/2018,Musicians,@ddlovato,Pink 💗 https://t.co/HqvggzqJVH +06/03/2018,Musicians,@ddlovato,Night in https://t.co/7LiS8tUiJT +06/03/2018,Musicians,@ddlovato,I haaaaaaate scuba diving https://t.co/PvqTCknndg +06/03/2018,Musicians,@ddlovato,Batman. He’s my first born so naturally he’s my favorite. #savage https://t.co/Bnv0YAvK0O +06/03/2018,Musicians,@ddlovato,"I can’t... they’re amazing, non-judgemental, funny, loyal... etc. https://t.co/x2ckiH4p5K" +06/03/2018,Musicians,@ddlovato,I think so 😊 https://t.co/N8EE7pxIy4 +06/03/2018,Musicians,@ddlovato,THANK YOU https://t.co/BBiD1Dcj6B +06/03/2018,Musicians,@ddlovato,I don’t think so https://t.co/9XRWXAJ8Sa +06/03/2018,Musicians,@ddlovato,Of course boo https://t.co/ig436uB6LW +06/03/2018,Musicians,@ddlovato,Bora bora 😍 https://t.co/T63fvmFb8n +06/03/2018,Musicians,@ddlovato,Yes!! I want to go in Dubai!! https://t.co/wr766mZhxc +06/03/2018,Musicians,@ddlovato,Their loyalty 😍 https://t.co/oHnSagHIL8 +06/03/2018,Musicians,@ddlovato,That I leak my own pictures/captions from my private account 🙄 https://t.co/KDb82J2VU6 +06/03/2018,Musicians,@ddlovato,😏 https://t.co/DCiVBJSCMb +06/03/2018,Musicians,@ddlovato,The fans and the architecture https://t.co/j6GfC8IFqM +06/03/2018,Musicians,@ddlovato,😳 https://t.co/NJzxDwGpp6 +06/03/2018,Musicians,@ddlovato,Savage https://t.co/ev6ujGzso6 +06/03/2018,Musicians,@ddlovato,Cereal first https://t.co/G6My87x8BE +06/03/2018,Musicians,@ddlovato,Yes!!! I love Amsterdam!! https://t.co/c6XakrJEQc +06/03/2018,Musicians,@ddlovato,C*** https://t.co/HawkMES9IR +06/03/2018,Musicians,@ddlovato,Not in the iPhone 😩😩😩 https://t.co/C31FsVNcBc +06/03/2018,Musicians,@ddlovato,Yes!!! I know what I’m getting too 😁 https://t.co/R8zAAzBCMv +06/03/2018,Musicians,@ddlovato,"Raw, emotional, heavy https://t.co/aOM5fWMK52" +06/03/2018,Musicians,@ddlovato,The one where he texts me back https://t.co/q2xLl5z4sH +06/03/2018,Musicians,@ddlovato,Is this a trick question? https://t.co/a843NzpOEa +06/03/2018,Musicians,@ddlovato,I love girls period https://t.co/V65tB7EUXr +06/03/2018,Musicians,@ddlovato,I’m always sane at work... except when I have to do video liners. (Those videos where I have to memorize shit and s… https://t.co/RmnpoHZFdW +06/03/2018,Musicians,@ddlovato,Teenage dream.... good memories to that one https://t.co/yJg5rIjQF0 +06/03/2018,Musicians,@ddlovato,YES https://t.co/wrw2UiveI7 +06/03/2018,Musicians,@ddlovato,JPG (@jillpowellglam) https://t.co/Bko86OAmwD +06/03/2018,Musicians,@ddlovato,Being myself 😁🌈 https://t.co/MAMD1pVWFt +06/03/2018,Musicians,@ddlovato,I wish 🙁 https://t.co/YwZco97HBe +06/03/2018,Musicians,@ddlovato,Yessssss 😍 https://t.co/v6YAYwALVe +06/03/2018,Musicians,@ddlovato,I wish 😩😩😩 https://t.co/hLlPdZx8pU +06/03/2018,Musicians,@ddlovato,Thank you!! I just need a beat and I’ll write to t. When I write by myself it always ends up country now 😂 https://t.co/aDuqfQqqhE +06/03/2018,Musicians,@ddlovato,You can’t always trust people who you once thought saved you https://t.co/RP35m52hOT +06/03/2018,Musicians,@ddlovato,Coffee & workout! https://t.co/cKrZRunQZH +06/03/2018,Musicians,@ddlovato,I want Brazilian girls 😍 https://t.co/H1iFSODcXY +06/03/2018,Musicians,@ddlovato,I hate Swedish meatballs yesterday! https://t.co/DMEMGnVwoo +06/03/2018,Musicians,@ddlovato,AMA’s last year https://t.co/CFPhy8Mct4 +06/03/2018,Musicians,@ddlovato,Red 😂 https://t.co/YkDd840ZsZ +06/03/2018,Musicians,@ddlovato,Sparking water with lemon or pineapple juice https://t.co/0nwJbqHBkQ +06/03/2018,Musicians,@ddlovato,Margot Robbie and Dua Lipa https://t.co/k3NRtl3LDm +06/03/2018,Musicians,@ddlovato,Not next week but maaaayyyyybbbbeeeeee the week after............. https://t.co/QdDuFO4VmY +06/03/2018,Musicians,@ddlovato,Getting better but still not great ☹️ https://t.co/tKXleZklK7 +06/03/2018,Musicians,@ddlovato,Gummy bears https://t.co/bfDS87OSPK +06/03/2018,Musicians,@ddlovato,I’m not in Paris yet! https://t.co/H319T6LKG1 +06/03/2018,Musicians,@ddlovato,Ask me questions!!! Let’s do a q&a!!! +06/03/2018,Musicians,@ddlovato,Help me I’m bored +06/03/2018,Musicians,@ddlovato,@LarryCsgo @hellgrnemelie So cute!!! +06/03/2018,Musicians,@ddlovato,"RT @LarryCsgo: Celebrated 1 year wedding anniversary with @hellgrnemelie together with Queen @ddlovato + +Even our August baby (same as @ddlo…" +06/03/2018,Musicians,@ddlovato,Never trust a website that claims they’re posting from my private account with captions and everything. It’s called photoshop. +06/02/2018,Musicians,@ddlovato,Ps. I’ve known @druidDUDE for almost 20 YEARS NOW.... WTFFFFFF +06/02/2018,Musicians,@ddlovato,"Stockholm.. you were gorgeous, incredible and amazing. I love you 💗" +06/01/2018,Musicians,@ddlovato,I feel like I’ve grown more in the past two months than I have in years. I feel like a new woman and I’m so grateful for my life today. +06/01/2018,Musicians,@ddlovato,OSLO!!! You were incredible.. what a night!! +06/01/2018,Musicians,@ddlovato,I wanna wear heels already 😩😩😩 +06/01/2018,Musicians,@ddlovato,NEWMARKET! I can't wait to headline Summer Saturday Live for a special outdoor show on 9th June! 💕Tickets on sale n… https://t.co/elkbDD3tGN +05/31/2018,Musicians,@ddlovato,The video is out for SOLO with @cleanbandit!! Hope you guys love it. https://t.co/FjZvgbnIWU https://t.co/HVscb35Lsc +05/31/2018,Musicians,@ddlovato,💚 #Demi4Fabletics https://t.co/mdv9313pSX https://t.co/sMMERAlYDe +05/31/2018,Musicians,@ddlovato,RT @cleanbandit: THE SOLO VIDEO IS OUT NOW @ddlovato ➡ https://t.co/Yt0KTk5hsY +05/30/2018,Musicians,@ddlovato,RT @cleanbandit: TOMORROW 10am BST https://t.co/eR4I7veMjt +05/30/2018,Musicians,@ddlovato,Hahahahaha https://t.co/Z5sh2tz6ur +05/30/2018,Musicians,@ddlovato,Can you handle the truth? #newmusiccomingsoon +05/30/2018,Musicians,@ddlovato,Sometimes you have to end an era to begin talking about a new chapter of your life. #D7 +05/29/2018,Musicians,@ddlovato,Some of you may not like or understand my truth but it’s me.. take it or leave it.. +05/29/2018,Musicians,@ddlovato,I’ll share my truth soon +05/29/2018,Musicians,@ddlovato,"There’s nothing like the truth. The honest to God, uncomfortable and shocking truth. Sometimes you have to share yo… https://t.co/5eMNMbiJ0N" +05/29/2018,Musicians,@ddlovato,I’m just gonna let my lyrics say it all... new music coming very soon +05/29/2018,Musicians,@ddlovato,You’re so vain you probably think this tweet is about you 😂😂😂 +05/29/2018,Musicians,@ddlovato,😝😊🤗 https://t.co/xzZVf4FOLS +05/29/2018,Musicians,@ddlovato,What do you guys think of this @Fabletics Flare outfit? #Demi4Fabletics https://t.co/t8YYlLunqV https://t.co/YYLxCDRYCe +05/29/2018,Musicians,@ddlovato,Yes please!!! https://t.co/5CK5bTIAFA +05/29/2018,Musicians,@ddlovato,Today marks two years without my Mimaw... I’m still heartbroken because she was my world but she’s in a better plac… https://t.co/gJdnlmT3Yw +05/29/2018,Musicians,@ddlovato,Okay guys! Thanks for keeping me company.. gotta go! Love you all +05/29/2018,Musicians,@ddlovato,"True friends don’t ask anything of you.. they don’t take, they give... nothing but love, acceptance and loyalty" +05/29/2018,Musicians,@ddlovato,Matthew Scott and Sirah https://t.co/XLfRBG1JrP +05/29/2018,Musicians,@ddlovato,Beach always https://t.co/LPTO8moP8R +05/29/2018,Musicians,@ddlovato,Lion https://t.co/2WUCIiXuNr +05/29/2018,Musicians,@ddlovato,HA https://t.co/AGJjfAnWwZ +05/29/2018,Musicians,@ddlovato,iPhone https://t.co/Q9EJdBeX7f +05/29/2018,Musicians,@ddlovato,Yes 😑 https://t.co/JxVSNCbVOO +05/29/2018,Musicians,@ddlovato,Too embarrassing to say https://t.co/7Hb8BRC9ar +05/29/2018,Musicians,@ddlovato,Waffles https://t.co/fNB5nqvwRF +05/29/2018,Musicians,@ddlovato,Production issues https://t.co/0swBn7qSmA +05/29/2018,Musicians,@ddlovato,Be careful https://t.co/qkTJLloN2y +05/29/2018,Musicians,@ddlovato,It was to a really cute boy 😝😍 https://t.co/0KviivSFGG +05/29/2018,Musicians,@ddlovato,Nope https://t.co/wYlJGkAsv2 +05/29/2018,Musicians,@ddlovato,My babies Batman and Cinderella https://t.co/1ReIX6oR2Z +05/29/2018,Musicians,@ddlovato,Skittles https://t.co/82bgpLEe8E +05/29/2018,Musicians,@ddlovato,Pizza https://t.co/xGP4oOXMS5 +05/29/2018,Musicians,@ddlovato,🤢🤮 https://t.co/bXxwjkTdWU +05/29/2018,Musicians,@ddlovato,NARS https://t.co/DbSUgaq03V +05/29/2018,Musicians,@ddlovato,Very VERY soon.... could be a matter of weeks actually https://t.co/vOciaHp5mD +05/29/2018,Musicians,@ddlovato,Barbecues with family and friends https://t.co/AdkGYFbnK3 +05/29/2018,Musicians,@ddlovato,Concealer!! https://t.co/4yKVpx8D7J +05/29/2018,Musicians,@ddlovato,Everything and more https://t.co/0DQFNPuCAZ +05/29/2018,Musicians,@ddlovato,You have to be able to make me laugh... https://t.co/1xJgy4F8Qn +05/29/2018,Musicians,@ddlovato,"Right now, yes https://t.co/mYsVBGjrjL" +05/29/2018,Musicians,@ddlovato,😩😩😩 https://t.co/FjfnARF7WC +05/29/2018,Musicians,@ddlovato,Speechless by Dan + Shay https://t.co/LNdXdrf1Jc +05/29/2018,Musicians,@ddlovato,LAUREL https://t.co/23AwoXMCWA +05/29/2018,Musicians,@ddlovato,Dogs are better https://t.co/DTwmKlhxda +05/29/2018,Musicians,@ddlovato,Miss Dior https://t.co/ReUhY0QnP5 +05/29/2018,Musicians,@ddlovato,Nope https://t.co/vkWPtjBzhi +05/29/2018,Musicians,@ddlovato,I’m the happiest I’ve ever been in my life... #free https://t.co/CIFwodGTTI +05/29/2018,Musicians,@ddlovato,😉 https://t.co/CfWsxiIxvq +05/29/2018,Musicians,@ddlovato,Nearly peed my pants https://t.co/cZf9VFT6aV +05/29/2018,Musicians,@ddlovato,Yes!! I plan on getting back into acting this next year https://t.co/kx6hzPo04c +05/29/2018,Musicians,@ddlovato,Someday I hope!! I love her 💖☁️ https://t.co/4IQ2R3o4AQ +05/29/2018,Musicians,@ddlovato,I can skateboard but I don’t because I’m clumsy as fuck https://t.co/0642id1cf1 +05/29/2018,Musicians,@ddlovato,Pretty much... I have so much new music to release very VERY soon!!! https://t.co/EaAaiJ4mjD +05/29/2018,Musicians,@ddlovato,@ConfidentGirl65 Single! +05/29/2018,Musicians,@ddlovato,A brand new song called........ https://t.co/jbgx6dU1MI +05/29/2018,Musicians,@ddlovato,Batman is with my mom!! I miss him soooooo much. And cinderella https://t.co/obmHiARtyX +05/29/2018,Musicians,@ddlovato,It’s on the mend. I wanted to try it out to see how it felt without the boot. We’ll see https://t.co/X4zZfFBBn6 +05/29/2018,Musicians,@ddlovato,I’m loving Fall In Line.. I just wish Christina was with me to perform it every night! https://t.co/oKKS3IvvZu +05/29/2018,Musicians,@ddlovato,Ask me questions! I’m bored. Hahaha +05/29/2018,Musicians,@ddlovato,Wide awake on the bus this morning.. what are y’all up to? +05/28/2018,Musicians,@ddlovato,You should see the other guy.... 😜 jk.. thanks for understanding Antwerp!!!! Incredible audience tonight!! I love you!! 😎😎😎 +05/28/2018,Musicians,@ddlovato,"To every brave soldier and individual who gave their lives and service to ensure our freedom, thank you and Happy M… https://t.co/pGz8hSUQq1" +05/28/2018,Musicians,@ddlovato,@DDNCLA I love you all!! +05/28/2018,Musicians,@ddlovato,RT @DDNCLA: @ddlovato We’re waiting for you babe #tellmeyoulovemetourantwerp https://t.co/9Su1OJGoAt +05/28/2018,Musicians,@ddlovato,I don’t think I’ve ever felt happier or more free... +05/26/2018,Musicians,@ddlovato,I love you Dublin +05/25/2018,Musicians,@ddlovato,BTS from my shoot with @COREdrinks. 💦 More coming soon! https://t.co/eEZDc1Xsnp +05/25/2018,Musicians,@ddlovato,Love wearing activewear as regular clothes. Lazy yet fierce. Featuring @Fabletics Stretto II #Demi4Fabletics… https://t.co/QDbtLZPC5l +05/25/2018,Musicians,@ddlovato,Btw wouldn’t y’all rather have NEW songs from a NEW album and choose a NEW single from that?! +05/25/2018,Musicians,@ddlovato,And no that’s not the next single... just my life right now +05/25/2018,Musicians,@ddlovato,I fucking love Belfast... thank you guys for an awesome first show!!! +05/25/2018,Musicians,@ddlovato,You don’t do it for me anymore +05/24/2018,Musicians,@ddlovato,Surprise! Spotify and I teamed up to create this exclusive crop-hoodie for my fans on @Spotify. Check your email to… https://t.co/0xyuio8H8d +05/24/2018,Musicians,@ddlovato,Tickets are now on sale for my ONLY East Coast show of the summer - July 26th on the beach in Atlantic City with sp… https://t.co/7NgJXCkxOd +05/24/2018,Musicians,@ddlovato,RT @xtina: Fall In Line is as much about supporting each other as it is about self-empowerment. I wanted to convey that in this video by vi… +05/24/2018,Musicians,@ddlovato,@LaurenJauregui @xtina Love you tons girl.. so happy you understood the message 💗💗💗 +05/24/2018,Musicians,@ddlovato,RT @LaurenJauregui: So powerful. @xtina @ddlovato you two have been such huge inspirations for me since I️ was a child. Christina was my fi… +05/23/2018,Musicians,@ddlovato,So proud to be a part of this powerful video. The message of women supporting each other through their struggles is… https://t.co/uv4d5GCHWL +05/23/2018,Musicians,@ddlovato,See you tomorrow Europe and UK. #TellMeYouLoveMeTour https://t.co/wHDnxb2QeY +06/30/2018,Musicians,@ollyofficial,Fly-Dab-boarding head first 😝 https://t.co/4qLv6TEIZq +06/30/2018,Musicians,@ollyofficial,Life’s for living 🙌🏻 https://t.co/3k0QnpXeUd +06/27/2018,Musicians,@ollyofficial,Get involved 😝😝😝 hope to see you men and ladies later this year 🤞🏻😝 https://t.co/e98koVAuyD +06/27/2018,Musicians,@ollyofficial,@c_haynesbrown1 @joshuapolard755 Got beaten by me in everything ✅ +06/27/2018,Musicians,@ollyofficial,Size of my forehead 🙄😂could cook ya dinner on it https://t.co/T2O7h0aozg +06/27/2018,Musicians,@ollyofficial,@MarkWright_ Need my hairdryer back! Hairs in bits! 😝😂 +06/27/2018,Musicians,@ollyofficial,😂😂😂 most likely https://t.co/UyTqlhqvr2 +06/27/2018,Musicians,@ollyofficial,Did I just hear I’m nominated for two awards 🤔what are we saying 😝👌🏻🤷🏻‍♂️ +06/27/2018,Musicians,@ollyofficial,Can’t be arsed it’s Wednesday face 😝 https://t.co/ht54GiemOp +06/26/2018,Musicians,@ollyofficial,😂😂 you don’t scare me 😂 https://t.co/b4AmsZRmjs +06/26/2018,Musicians,@ollyofficial,@milliemarrison1 @MelanieCmusic @GeriHalliwell @victoriabeckham @EmmaBunton But Mills you’ve got about 1000 pictures with me 😝 +06/26/2018,Musicians,@ollyofficial,@lauragwales @MelanieCmusic @GeriHalliwell @victoriabeckham @EmmaBunton I’ve met her but never got a picture I don’t think 🤔 +06/26/2018,Musicians,@ollyofficial,Nearly..... 1 more to go!! 😝😉 https://t.co/82AQAKJhRM +06/26/2018,Musicians,@ollyofficial,4th spice girl added to my collection... GINGER SPICE! one more to go! #ifyouknowyouknow 🔥❤️😘 https://t.co/wcIkRQKBrV +06/25/2018,Musicians,@ollyofficial,But on a serious note! To get 9 awesome years in this mad world called Showbiz is not something I take for granted! Love ya long time ❤️😘 +06/25/2018,Musicians,@ollyofficial,@maybeitsmurs 😂😂 +06/25/2018,Musicians,@ollyofficial,#9YearsOfMe ain’t you lot lucky 😉😝🤷🏻‍♂️ +06/25/2018,Musicians,@ollyofficial,Me: Jamie I have an idea 🤔 50 shades of Murs? 😝🤷🏻‍♂️🤪 https://t.co/e38UwOp8lO +06/24/2018,Musicians,@ollyofficial,"@EssexPR Fantastic day mate! Roast dinner on point, football on point, drinks on point! Was great to see ya 👍🏻 I’ll… https://t.co/Qrm3h6grUO" +06/24/2018,Musicians,@ollyofficial,This shirt is never coming off now specially after winning 6-1 😱🔥 https://t.co/lH3aVmZXcR +06/24/2018,Musicians,@ollyofficial,Come on England 🏴󠁧󠁢󠁥󠁮󠁧󠁿 we go again #ENG #ThreeLions #WorldCup https://t.co/ogTQC8xwnv +06/24/2018,Musicians,@ollyofficial,@ToniKroos Unreal! Superb Toni 🔥 +06/24/2018,Musicians,@ollyofficial,Fantastic night at the Horan&Rose 2018 event! Huge amounts raised that will benefit and help so many children / fam… https://t.co/SlWEFtTrT1 +06/23/2018,Musicians,@ollyofficial,"I’m not weird, I’m limited edition 👍🏻" +06/23/2018,Musicians,@ollyofficial,@aliceeeeee_xo I’m not weird I’m limited edition 😝 +06/23/2018,Musicians,@ollyofficial,Missing this 😵 https://t.co/yrDPUf3XW5 +06/22/2018,Musicians,@ollyofficial,https://t.co/A4Egx87PlY +06/22/2018,Musicians,@ollyofficial,Nice day for a dip 😎☀️💦 https://t.co/cAToFrGhJN +06/22/2018,Musicians,@ollyofficial,It’s Friday people... Last day in the office 😝😜🤪 https://t.co/pkMDjP6CIY +06/22/2018,Musicians,@ollyofficial,@JKCorden Phenomenal!! 🔥 wow at the end “hey Jude” 😭❤️ +06/21/2018,Musicians,@ollyofficial,Got a tenner on this lad getting Golden Boot at the #Worldcup Come on @HKane can’t wait for the game Sunday #tbt… https://t.co/IuCnNGJwRp +06/21/2018,Musicians,@ollyofficial,Check out my little announcement with a special guest... ⁉️ 🏃🏻‍♂️🏃‍♀️@Great_Run @Mo_Farah @fayzeewoo_loves… https://t.co/CRkAGtULBq +06/21/2018,Musicians,@ollyofficial,All about the beauty spots @NiallOfficial 😝😂 wicked seeing ya! https://t.co/GoCEs4Q3Zb +06/21/2018,Musicians,@ollyofficial,Check out these crackers 😝😂🙈 #niallhoran https://t.co/fiXjHpZ8k3 +06/20/2018,Musicians,@ollyofficial,@officialdonel @LaurenBannon1 Love you both! 👍🏻🔥😘 +06/19/2018,Musicians,@ollyofficial,Every Red light 🔴 gotta say an England player!… https://t.co/Vq4Z7NSYNQ +06/19/2018,Musicians,@ollyofficial,@PeteBlay @Mo_Farah @lewis_damian @usainbolt Love Harry! Top guy and absolutely buzzing he rates me as a player 👍🏻 +06/18/2018,Musicians,@ollyofficial,@EssexPR @England @HKane @TheThreeColts Next one I’m there son 👍🏻🏴󠁧󠁢󠁥󠁮󠁧󠁿💯 +06/18/2018,Musicians,@ollyofficial,Unreal scenes tonight! Loved it @England Some great positives to take from the game! Captain @HKane you legend! Wel… https://t.co/GQvZsocz5f +06/18/2018,Musicians,@ollyofficial,I’m hoping this is the ENGLAND team talk tonight!! Get @JKCorden in there!! This gets me pumped every time... geniu… https://t.co/E37cJrR7WA +06/18/2018,Musicians,@ollyofficial,Come on ENGLAND 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🦁🦁🦁 #worldcup https://t.co/glcVf5M2Fc +06/17/2018,Musicians,@ollyofficial,Love ya dad 😘❤️ https://t.co/NwMMsXbrvN +06/17/2018,Musicians,@ollyofficial,Happy #FathersDay to all the awesome dads out there today but also to those who aren’t here with us 💯❤️🙏🏻 +06/15/2018,Musicians,@ollyofficial,Finally the #WorldCup2018 is here What a game! @Cristiano this guy 🔥🔥 +06/15/2018,Musicians,@ollyofficial,Next album cover Rob? 😝🤷🏻‍♂️ https://t.co/SOpFXOjcny +06/15/2018,Musicians,@ollyofficial,Loved it thanks for having me! 😘👍🏻 https://t.co/bAqXjoWujv +06/14/2018,Musicians,@ollyofficial,How many songs could we put over @davidguetta ft @justinbieber 2U 🤔 loved this @ConorMaynard #TBT https://t.co/Y5bCwmvzoS +06/13/2018,Musicians,@ollyofficial,"After an emotional, exhausting, unbelievable weekend... THIS is the reason we do @socceraid and we can’t thank you… https://t.co/YafV5d0frD" +06/13/2018,Musicians,@ollyofficial,❤️ this photo #ProudUncle 😭 https://t.co/plpnmbEIDb +06/13/2018,Musicians,@ollyofficial,😂😂😂 love this Starky! Can I give you my USA 94 panini sticker album please?! any chance you can finish that NOW tha… https://t.co/LQhfwzCXBY +06/12/2018,Musicians,@ollyofficial,"This picture says it all... + +Highest attendance ever ✅ + +Over £5.5 million raised ✅ + +England Win ✅ + +This is… https://t.co/i9w4q7i5Ae" +06/12/2018,Musicians,@ollyofficial,"RT @SportsBreakfast: ""I've been playing with Ozil for many years"" 😂😂 + +@ollyofficial talks us through THAT #SoccerAid assist for @DarrenBent…" +06/12/2018,Musicians,@ollyofficial,@ChristinaHibbs Eh what you chatting about +06/12/2018,Musicians,@ollyofficial,"Missing the lads already, not sure they’re missing me 😂😝 @PaddyMcGuinness @socceraid https://t.co/5wj9va5skH" +06/11/2018,Musicians,@ollyofficial,@Rudimental @socceraid Yes lads! For sure 😂😂 thanks for the message! 👌🏻 +06/11/2018,Musicians,@ollyofficial,Just a casual shoot dance after we scored last… https://t.co/5FWqEwdC1O +06/11/2018,Musicians,@ollyofficial,When ya nephew dabs on TV 😂😝 #legend… https://t.co/X7YVgyj2wX +06/10/2018,Musicians,@ollyofficial,"Love this photo! What a night! +Thank you to everyone who donated and supported @socceraid this year! We’ve raised… https://t.co/sW0UfxSHaF" +06/10/2018,Musicians,@ollyofficial,😂😂😂 https://t.co/nIENOmBdOK +06/10/2018,Musicians,@ollyofficial,@AndersonNatalie Indeed it does 🙌🏻👍🏻❤️ +06/10/2018,Musicians,@ollyofficial,"It’s big, it’s round, it’s shiny and I’ve Finally got my hands on it #winners #captain 😝🍾🏆⚽️ https://t.co/V8yK4OmPF6" +06/10/2018,Musicians,@ollyofficial,COME ON ENGLAND!! 👍🏻🔥😝#TeamRobbie https://t.co/4lexUkrk4N +06/10/2018,Musicians,@ollyofficial,THE KING IS HERE “Oh Ah CANTONA” 👌🏻🔥 https://t.co/Go7NOtFmz5 +06/09/2018,Musicians,@ollyofficial,Riding solo 🎩🍾🇬🇷😉 https://t.co/zV4DRYz77s +06/09/2018,Musicians,@ollyofficial,"One’s the fastest person in the world +One runs the country and another has almost completed tinder! +I’ll let you d… https://t.co/lU2p4VxsHQ" +06/08/2018,Musicians,@ollyofficial,Yesssssss @robbiewilliams loved it! Let’s get on stage together soon mate 😉😝👍🏻 https://t.co/nF8ZdYVLRD +06/08/2018,Musicians,@ollyofficial,Look at these right couple of mugs 😂😝 @loosewomen vs #loosemen @itv @socceraid special today at 12.30pm!! Don’t mis… https://t.co/nHABrJvtS0 +06/07/2018,Musicians,@ollyofficial,Heads up @TheF2 😂😂 https://t.co/5oMhkCo3xX +06/07/2018,Musicians,@ollyofficial,Pads only got Sir @Mo_Farah 😂😂😂 https://t.co/c2gDcASgBm +06/07/2018,Musicians,@ollyofficial,My favourite part of the week @MarkWright_ ‘s NOT so favourite 😂😂 https://t.co/1ZmWhbJADg +06/07/2018,Musicians,@ollyofficial,All the gear no idea 😝 @socceraid @UNICEF_uk 👍🏻🔥 https://t.co/jNgwOaPTZ0 +06/07/2018,Musicians,@ollyofficial,RT @GranadaReports: @socceraid stars met the PM ahead of their game at Old Trafford this weekend. @ollyofficial was well impressed with th… +06/06/2018,Musicians,@ollyofficial,Honoured to be at No.10 Celebrating the partnership between @socceraid for @UNICEF_uk and the governments aid match… https://t.co/mOCl1qKh9R +06/06/2018,Musicians,@ollyofficial,"RT @DailyMirror: Olly Murs visited African tip and met kids who are his Soccer Aid inspiration +https://t.co/ME1EdsUaPg https://t.co/GfXS0p1…" +06/06/2018,Musicians,@ollyofficial,That moment when ya beating @usainbolt at… https://t.co/RarBHenl5D +06/06/2018,Musicians,@ollyofficial,"Unbelievable afternoon at 10 Downing Street for @socceraid +@UNICEF 👍🏻⚽️ https://t.co/NtmEbUox3q" +06/06/2018,Musicians,@ollyofficial,New boyband alert 👍🏻😝🔥 https://t.co/m9e8gCVNma +06/06/2018,Musicians,@ollyofficial,So the week begins @socceraid 👍🏻🔥 https://t.co/5ClwzChclu +06/05/2018,Musicians,@ollyofficial,RT @JustinRose99: Last chance #Team🌹for earlybird tickets! Offer ends on Sunday 10th June with up to 30% savings. @british_masters @waltonh… +06/04/2018,Musicians,@ollyofficial,Tribute to my showbiz dad on his birthday… https://t.co/w8TrMluNVk +06/04/2018,Musicians,@ollyofficial,Oooooooooo it’s nearly here!! 6 days till @socceraid @UNICEF whose coming?!?! 😉👍🏻 https://t.co/ZD4cf8whU8 +06/04/2018,Musicians,@ollyofficial,RT @loosewomen: SCORE! Don't miss the Loose Women & Men @socceraid special this Friday with @robbiewilliams @ollyofficial @BrendanCole & @P… +06/02/2018,Musicians,@ollyofficial,@KamilleXX I was with you aswell and I must say I hope we can sort out our differences and can you love me again please Kamille 😝😉 +06/01/2018,Musicians,@ollyofficial,😂😂 @louis_tomlinson It works every time 😂😂… https://t.co/fzfMwyOXHn +05/30/2018,Musicians,@ollyofficial,This guy! The winner of #BGT this year for me! Just watched it back about 4times! Absolutely brilliant! 👏🏻 https://t.co/cnEOtWNqCr +05/30/2018,Musicians,@ollyofficial,@aboutIeigh Excuse me I’m doing alrite thanks 😂 Im with RCA 😝👍🏻 but appreciate the concern +05/29/2018,Musicians,@ollyofficial,I will never break up with gym we just seem to “workout” 😉😝 https://t.co/vGQHGMqTSC +05/28/2018,Musicians,@ollyofficial,@OllyMursMemes 😂😂😂 +05/27/2018,Musicians,@ollyofficial,@EchoArena Loved it! Top night +05/27/2018,Musicians,@ollyofficial,Wow met the main man @danawhite everything I expected & more! What a guy!! Top night & congrats to @darrentill2… https://t.co/iC2S2sShYv +05/27/2018,Musicians,@ollyofficial,IBIZA is calling me!! I’ll be over soon... ☀️🍹🏖😎 https://t.co/Dw1Otssvcb +05/24/2018,Musicians,@ollyofficial,"I’m not going to say good luck Saturday for obvs reasons 😂🙈🙄but I must say top guy, great banter and loved chatting… https://t.co/w5SIhzsl0P" +05/23/2018,Musicians,@ollyofficial,"So 😂🙈 Here’s my attempt at @DFID_UK ‘s keepy-uppy challenge! Challenge yourself, raise money for @SoccerAid for… https://t.co/sd4jBUrn4x" +05/22/2018,Musicians,@ollyofficial,https://t.co/1RTOxoV5jE +05/22/2018,Musicians,@ollyofficial,Loved surprising the amazing @RaysofSunshine Children’s Choir today! (Good job they knew the lyrics 😂) They were th… https://t.co/mgbJCzeyyN +05/22/2018,Musicians,@ollyofficial,Never forgotten and always in our hearts! What happened that day 1 year ago will live with us forever! No one shoul… https://t.co/RSwIcXkqiR +05/22/2018,Musicians,@ollyofficial,RT @ManUtd: Always Remember. Never Forget. Forever Manchester. #ManchesterTogether https://t.co/TFOVM0Cx1S +05/22/2018,Musicians,@ollyofficial,RT @GranadaReports: Here's how #Manchester will mark one year since the terror attack at the city's Arena which killed 22 people. #Manchest… +05/21/2018,Musicians,@ollyofficial,Eh actually buzzing.... 🤪 https://t.co/bXgpWYUHe3 +05/21/2018,Musicians,@ollyofficial,Well well well what can I say #Deadpool2 was everything I wanted and more after the 1st one!! I love @VancityReynolds what a guy! 👍🏻💯🔥 +05/21/2018,Musicians,@ollyofficial,"Awwww what a night with the @CoggeshallTown boys this was Saturday😝🔥💯 + +Thanks @sugarhut for having the best looking… https://t.co/4Rl74dLTak" +05/21/2018,Musicians,@ollyofficial,Only 3 weeks till @socceraid @UNICEF_uk bloody excited about it!! Are you????? 😆👍🏻💯🔥 https://t.co/6HNZ3C4ULB +05/20/2018,Musicians,@ollyofficial,"RT @socceraid: Just 3️⃣ weeks to go until @robbiewilliams’ England take on @usainbolt’s World XI 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽️🌎 + +🎟 Don’t miss a game like no ot…" +05/20/2018,Musicians,@ollyofficial,@JasonManford @howlettspark 😂😂😂 +05/19/2018,Musicians,@ollyofficial,On my way to @sugarhut with the @CoggeshallTown last night till we hit pre-season 🔥😝👍🏻 +05/19/2018,Musicians,@ollyofficial,Ffs lost my keys again 🤷🏻‍♂️ https://t.co/N9QyceYmlX +05/18/2018,Musicians,@ollyofficial,@Sianwelby 😂😂😂 +05/18/2018,Musicians,@ollyofficial,@CapitalOfficial @MarvinHumes Just you wait and see 😝👍🏻 +05/17/2018,Musicians,@ollyofficial,@officialroycey Happy birthday Roycey ❤️😘 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Thanks babe see ya soon! Make sure you have Hooch next time 😝👌🏻 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Classic keyboard warrior and never said anything! I’m gutted you have plenty to say 😂😂 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Cheers 😂🤷🏻‍♂️👌🏻 +05/16/2018,Musicians,@ollyofficial,RT @CoggeshallUtd: Our team are seeking a kit sponsor for the coming 2 seasons. If interested please message us for details. please RT akke… +05/15/2018,Musicians,@ollyofficial,@officialroycey Love ya mate! ❤️👍🏻 check ya dms +05/15/2018,Musicians,@ollyofficial,"Stop making me laugh your make me @PUMA pants 😝 + +Great meeting & exciting to work with you guys @pumafootball movin… https://t.co/LiXr0F5QP8" +05/15/2018,Musicians,@ollyofficial,"Woke up this morning and it just hit me that you lot.... + +Thanks for every tweet yesterday! Best fans ever! Love ya… https://t.co/8NRQ1f6bk1" +05/15/2018,Musicians,@ollyofficial,@VasJMorgan Thanks Vas 😊👍🏻 +05/15/2018,Musicians,@ollyofficial,@EssexPR Thanks brooksy 😘 +05/15/2018,Musicians,@ollyofficial,@Popprince Thanks kev 😘 +05/15/2018,Musicians,@ollyofficial,@BroadcastMoose Thanks moose 👍🏻 +05/15/2018,Musicians,@ollyofficial,@Tallia_Storm Cheers Tallia +05/15/2018,Musicians,@ollyofficial,@RickyRayment Thanks Ricky +05/14/2018,Musicians,@ollyofficial,@BRITs Thanks Brits ❤️😘 +05/14/2018,Musicians,@ollyofficial,Thanks official charts see you soon 😏😉😘 https://t.co/UhKAzvSclz +05/14/2018,Musicians,@ollyofficial,Awwww thanks you lot ❤️❤️❤️ https://t.co/TpQPQjw0j6 +05/14/2018,Musicians,@ollyofficial,Keeping it cool since 1984!! Thanks for all the love today! You lot are awesome!! Love ya ❤️😘 https://t.co/VmDRhXpa2H +05/14/2018,Musicians,@ollyofficial,@Luke_Wilson89 @CoggeshallTown Thanks skipper 😝 +05/13/2018,Musicians,@ollyofficial,😂😂😂 @sueperkins killed me there 👏🏻 But very funny!! #BAFTATV +05/13/2018,Musicians,@ollyofficial,I’ve had so many nightmares over this since last soccer aid! Can’t believe I missed it 🙈 https://t.co/INxEqhWtUC +05/12/2018,Musicians,@ollyofficial,"Winners smile tonight 😝 +@thurlownunnECL presentation night!! 👍🏻⚽️⚫️🔴⚫️🔴 https://t.co/Qd22eVMbLy" +05/11/2018,Musicians,@ollyofficial,"Wow what a final day of the season for us @CoggeshallTown 🔥💯😝 + +Big thanks to @joshfilmmaker for this video he did!… https://t.co/yMEi3ZpAOs" +05/11/2018,Musicians,@ollyofficial,Oh F%#k !! Can’t believe it!! What a honour It will be to meet this legend... OH AH CANTONA 🙌🏻🔥💯 https://t.co/hGTSsBbyOp +05/09/2018,Musicians,@ollyofficial,@undateables_jb @Withamtownfc @CoggeshallTown Was it nice seeing a team lift a trophy??! 😝 nah only messing was gre… https://t.co/k9qO8L58RW +05/09/2018,Musicians,@ollyofficial,"RT @socceraid: When you realise there’s 3️⃣6️⃣ days until the @FIFAWorldCup but only 3️⃣2️⃣ days until #SoccerAid 😁 + +🎟 https://t.co/ihLTUR4…" +05/09/2018,Musicians,@ollyofficial,@JoeKnightyy9 @scotthiskey Great season actually! You melons 🍉 🍉🍉🍉🍉🍉🍉🍉🍉🍉 +05/08/2018,Musicians,@ollyofficial,@JoeKnightyy9 Shame you get Injured every 5mins 😂😂 +05/07/2018,Musicians,@ollyofficial,"RT @BBCEssexSport: ICYMI: “These are the moments you will cherish for the rest of your life.” + +@ollyofficial on @CoggeshallTown’s promotion…" +05/06/2018,Musicians,@ollyofficial,@BBCEssexSport @CoggeshallTown @ThurlowNunnFL Thanks for all the support 👍🏻💯🔥 +05/06/2018,Musicians,@ollyofficial,"RT @BBCEssexSport: “We’re not th biggest club in the world but it’s been a great season.” + +@ollyofficial reflects on @CoggeshallTown becom…" +05/06/2018,Musicians,@ollyofficial,@IainvanderRee @rickandrews65 You guys yesterday were an embarrassment singing and swearing in front of all the kid… https://t.co/eclOdxJqkp +05/06/2018,Musicians,@ollyofficial,@rickandrews65 😂😂👍🏻🏆you can have Division 1 will take the Premier 🔥💯🤣 +05/05/2018,Musicians,@ollyofficial,"RT @CoggeshallTown: WE ARE THE CHAMPIONS‼️ @CoggeshallTown 2017/18 @thurlownunnECL + +#SeedGrowers 🔴⚫️👍🏻🔥💯 https://t.co/yqo7DbLa3B" +05/05/2018,Musicians,@ollyofficial,Taken me all year to get my hands on this biggun 😝💯🔥#seedgrowers #champions https://t.co/9lSjZ4aAMG +05/05/2018,Musicians,@ollyofficial,"What a day! Sun is out, legs are out +Back home and straight over to… https://t.co/pzTslD3tIA" +05/04/2018,Musicians,@ollyofficial,Note to self 🤔 Tequila was a bad choice🤷🏻‍♂️😂🙈 @ The Highlight Room https://t.co/ZInoYnWPxW +05/04/2018,Musicians,@ollyofficial,"RT @5liveSport: ""Me and my brother had Cantona shirts, a Sharpe shirt and a Giggs shirt"" + +@Ollyofficial on his love of #MUFC growing up.🔴⚪…" +05/04/2018,Musicians,@ollyofficial,Flossing’ell 😝‼️ https://t.co/3HYVlhsQxD +05/04/2018,Musicians,@ollyofficial,Me & Wrighty out out ! His killing me for my shirt? What we saying... 😝 https://t.co/mpM8pICjvp +05/03/2018,Musicians,@ollyofficial,Buckle up you lot! Rest of this year gunna be fun 😝😝👊🏻🔥 https://t.co/OG4hRDJfsv +05/03/2018,Musicians,@ollyofficial,Doing the Harlem Shake 😂 #family #birthdaymonth #TBT https://t.co/kDwa6bXPVY +05/01/2018,Musicians,@ollyofficial,RT @CoggeshallTown: Excitement is electric and we can’t wait to lift the trophy on Saturday at Home. Can’t wait to see you all there. Huge… +05/01/2018,Musicians,@ollyofficial,"One word “CHAMPIONS” +@CoggeshallTown 🏆 #SeedGrowers 🔴⚫️🔴⚫️⚽️ https://t.co/KyQfqJGSEx" +05/01/2018,Musicians,@ollyofficial,"Gutted lads @CoggeshallTown I won’t be there tonight against @Felixseasiders I only turn up for the big games 😝 +Nah… https://t.co/N06GvquRVl" +05/01/2018,Musicians,@ollyofficial,In case you was wondering... https://t.co/hyZS1Sk7eX +04/30/2018,Musicians,@ollyofficial,Soccer aid June 4th..... er no it’s June 10th @GordonRamsay 🤣 plus @MarkWright_ send me a postcard next time bud 😝🤣… https://t.co/6Ojxjz8Ksx +04/29/2018,Musicians,@ollyofficial,I’ve got my Sunday smile on!! https://t.co/fgqdgVr2kM +04/29/2018,Musicians,@ollyofficial,Put your filthy hands all over me 😝 @ Justin Timberlake Man of the Woods https://t.co/AAw95hRTca +04/29/2018,Musicians,@ollyofficial,What a show this was 🔥💯👍🏻 https://t.co/yIaRJ1yOTn +04/28/2018,Musicians,@ollyofficial,"Loving it mate @NiallOfficial 😝👊🏻🔥 + +https://t.co/yUjqEa7mpG" +04/28/2018,Musicians,@ollyofficial,What a little star 🌟 yes I’ll sort out a signed pic for the little man! 👍🏻💯 https://t.co/9d6suipIuE +04/28/2018,Musicians,@ollyofficial,"@foreverourolly 😂 but truth is you gotta learn to love yourself before you can love another + +or I’m just abit of a loner 🤣" +04/28/2018,Musicians,@ollyofficial,@loubeylou What a little star 🌟 +04/28/2018,Musicians,@ollyofficial,@ZoeSoraff_OM Oh sorry Grammar police 🙄can’t help it! It’s what I do 😝 +04/28/2018,Musicians,@ollyofficial,@ged_coyne @warwickroad69 Just abit of banter lads 😂😂 +04/28/2018,Musicians,@ollyofficial,I’ll be watching Kaano! 🔥💯👊🏻 https://t.co/WQZx7LlzWQ +04/28/2018,Musicians,@ollyofficial,@jamier1977 That’s the joke 😂😂 +04/27/2018,Musicians,@ollyofficial,I’m READY for the weekend are YOU⁉️😝 https://t.co/VBrZ8szNob +04/27/2018,Musicians,@ollyofficial,Yessssssss #PrinceLouis great name choice but I’m afraid ive already got my own Prince Louis and he loves selfies w… https://t.co/MOoiYIOBlF +04/27/2018,Musicians,@ollyofficial,@ourrachblogs Worse!! I was reading her a blog about abstaining in April about crisps 😂😝 +04/27/2018,Musicians,@ollyofficial,@ourrachblogs That’s what she said last night 😝😂😏 +04/27/2018,Musicians,@ollyofficial,@ourrachblogs Oh well thanks for listening Rach👌🏻appreciate your positive feedback😂 Shame I didn’t come to you earl… https://t.co/9c5u1Sv6ZM +04/27/2018,Musicians,@ollyofficial,"Well, for future reference this is my serious face 😝👊🏻 https://t.co/DimlXbYIki" +04/26/2018,Musicians,@ollyofficial,"Yesterday’s gone, Tomorrow is a Mystery, Today is a gift! LIVE IT 🔥💯👊🏻 https://t.co/4KSUab0m8v" +04/26/2018,Musicians,@ollyofficial,@TheXFactor 😂😂😂 +04/26/2018,Musicians,@ollyofficial,@officialroycey Sending you my love mate 😘☹️ +04/26/2018,Musicians,@ollyofficial,A random picture outside A random door 😝 @ Warner Bros. Entertainment https://t.co/WocXF4wLRi +04/25/2018,Musicians,@ollyofficial,Last time the Eithad was full 😂😝 #robbiewilliams #tour #2013 #troublemaker https://t.co/uheDlDv15V +04/25/2018,Musicians,@ollyofficial,@eddiebrett @CoggeshallTown Thanks Eddie 🤓 +04/25/2018,Musicians,@ollyofficial,Don’t you chicken curry! New music is coming... 😝🔥💯 https://t.co/9hCwAoR63m +04/24/2018,Musicians,@ollyofficial,Big hand selfie 👋🏻😎🇺🇸 https://t.co/S5q5Nhrp7m +04/24/2018,Musicians,@ollyofficial,"Let’s just enjoy the next 3 games lads! What will be will be! +Promotion was what we wanted @CoggeshallTown & we’ve… https://t.co/OmGPYTV2ie" +04/24/2018,Musicians,@ollyofficial,"RT @CoggeshallTown: PROMOTION FOR THE #SeedGrowers🔥💯👊🏻 + +What an effort from the lads with back to back promotions!Unbelievable! + +The hosts…" +04/24/2018,Musicians,@ollyofficial,Wow 😮 see you there 😝🔥‼️ https://t.co/TWVJ6UVhQU +04/24/2018,Musicians,@ollyofficial,3rd wheeling at its finest! You just can’t compete with @realsirtomjones ☹️😂💯 https://t.co/z7ZVSreZAF +04/23/2018,Musicians,@ollyofficial,"New Monday, New Week, New sneaks! LETS DO THIS 💯😝👊🏻 https://t.co/9ljvnLc9TR" +04/23/2018,Musicians,@ollyofficial,@VickNHope 😂😂 +04/22/2018,Musicians,@ollyofficial,#LondonMarathon 💯👍🏻🔥 +04/22/2018,Musicians,@ollyofficial,Yesssss @JBransgrove our GK @CoggeshallTown is doing it today @LondonMarathon I’m watching mate! His doing it for… https://t.co/6WMnwaE32Q +04/22/2018,Musicians,@ollyofficial,To everyone running the london marathon today! Nothing but love and respect! The hard work / dedication you’ve put… https://t.co/hfxu06uKXH +04/21/2018,Musicians,@ollyofficial,"RT @ManUtd: Wembley is red. + +#MUFC #EmiratesFACup https://t.co/f6wrsU8v4P" +04/21/2018,Musicians,@ollyofficial,"RT @ManUtd: FT: #MUFC 2 Tottenham 1. + +Goals from @Alexis_Sanchez and @AnderHerrera see the Reds into the #EmiratesFACup final... + +Let the c…" +04/21/2018,Musicians,@ollyofficial,"Huge guys!! Get in!! +Can’t be more prouder of the effort & dedication you lads have put in! 23pts behind and we are… https://t.co/JnLHUj0UiT" +04/21/2018,Musicians,@ollyofficial,Oops Morning 🙊😝🤪 https://t.co/JIFa9fj5q1 +04/20/2018,Musicians,@ollyofficial,@LiamPayne 🤪💯👍🏻 +04/20/2018,Musicians,@ollyofficial,YESSSSS @LiamPayne ‼️🔥TUNEEEEE MATE! #Familiar https://t.co/JY4T6dbgp9 +04/20/2018,Musicians,@ollyofficial,@mynameisbrooke @bekahxlouise_ 😂😂😂❤️ +04/20/2018,Musicians,@ollyofficial,@EssexPR Dya remember ‘Shadow’ ?! He used to rip geezers heads off in dual! +04/20/2018,Musicians,@ollyofficial,Without a shadow of a doubt yes! Only if “Jet” is back doing it 😝 https://t.co/5XB3F4gMuq +04/20/2018,Musicians,@ollyofficial,My reaction to Arsene Wenger saying his leaving arsenal! Nooooooooooo 😂😝 #MUFC https://t.co/zEiMHEp8uZ +04/20/2018,Musicians,@ollyofficial,"Dear Paddy, i miss you very much and the way you touch! See you soon for our showers & ice baths together 😝😘😂… https://t.co/S4c8FRFFxV" +06/29/2018,Musicians,@elliegoulding,"RT @marcocaselli_: @elliegoulding and @duttypaul 's new song is a BOP +#Badlove https://t.co/49QGzpqdje" +06/29/2018,Musicians,@elliegoulding,❤️ https://t.co/DKcqgL5Z3l +06/29/2018,Musicians,@elliegoulding,"RT @caitlinmoran: And so it has been left to Danny Dyer to speak the simplest and greatest truth about Brexit. Especially with the second ""…" +06/27/2018,Musicians,@elliegoulding,RT @duttypaul: @JheneAiko @elliegoulding @iambeckyg @MAJORLAZER @stefflondon @Migos @torylanez @DUALIPA!!! SOON COME!!! #madloveEP RRR!!! +06/26/2018,Musicians,@elliegoulding,It was a privilege to visit @NordoffRobbins1 yesterday to take part in a music therapy session! The sessions are fr… https://t.co/hjM5j2UnhJ +06/26/2018,Musicians,@elliegoulding,RT @NordoffRobbins1: Congratulations to the incredible @elliegoulding for winning the @lizhobbs_group Best Female Award at this year's @Nor… +06/25/2018,Musicians,@elliegoulding,"RT @CaroRance: Disgraceful result from Westminster tonight as 415 MPs vote to approve #Heathrow third runway, approve unabated climate chan…" +06/25/2018,Musicians,@elliegoulding,Until I’m back I just gotta keep doing the right thing! https://t.co/gTZnzZTi5g +06/25/2018,Musicians,@elliegoulding,RT @Ed_Miliband: We owe it to future generations not just to have good environmental principles but to act on them. That is why I will be v… +06/25/2018,Musicians,@elliegoulding,I like you Matthew https://t.co/S6ByFDT5no +06/25/2018,Musicians,@elliegoulding,"RT @mtpennycook: I’ll be voting against #Heathrow expansion later today. The project is expensive, risky, and the financing still doesn't a…" +06/25/2018,Musicians,@elliegoulding,"RT @HomeHouseLondon: We are delighted to announce The Marylebone Project as our charity for 2018/19, London's largest women only homeless p…" +06/25/2018,Musicians,@elliegoulding,@mytaxiuk Improve your app +06/23/2018,Musicians,@elliegoulding,Congrats @akalamusic https://t.co/Av4PXPQ2VM +06/21/2018,Musicians,@elliegoulding,@Benfogle Fair play! +06/20/2018,Musicians,@elliegoulding,“Bestie” “supper” “yummy” 😷 https://t.co/YNgcfLxKsx +06/19/2018,Musicians,@elliegoulding,"RT @AmnestyUK: If you don't have #humanrights, you don't have humanity. https://t.co/yAp6EHFN2I" +06/18/2018,Musicians,@elliegoulding,RT @MarylebonePrjct: Happy #RefugeeWeek2018 We are going to be taking part in the 20 #SimpleActs Here we have shared our welcome banner & a… +06/18/2018,Musicians,@elliegoulding,"RT @TheNewsAtGlenn: I really took @elliegoulding to task here. It's like Paxman. Move over, Dimbleby, Moore's in town. https://t.co/VrK55sX…" +06/14/2018,Musicians,@elliegoulding,"RT @UN_EMG: Are YOU ready for World Sea Turtle Day? #BeatPlasticPollution #SDG14 + +Watch this video with @UNEnvironment Goodwill Ambassador…" +06/14/2018,Musicians,@elliegoulding,@grimmers Haha +06/14/2018,Musicians,@elliegoulding,@GabrielleAplin Vaseline around the inside of your nostrils 😂 +06/08/2018,Musicians,@elliegoulding,@alisonleung1989 No +06/08/2018,Musicians,@elliegoulding,Indeed. https://t.co/QC73FDTiDW +06/07/2018,Musicians,@elliegoulding,Amazing! Kudos to the teachers!!!! 👏🏼👏🏼👏🏼 https://t.co/jOerynW0uH +06/07/2018,Musicians,@elliegoulding,@elliehamilton38 @reallorraine Hahaha +06/06/2018,Musicians,@elliegoulding,@RowForTheOcean @lucysiegle @UNEnvironment You are AWESOME +06/06/2018,Musicians,@elliegoulding,"RT @RowForTheOcean: @elliegoulding @lucysiegle @UNEnvironment Hey Ellie, we are rowing 3,000 miles across the Atlantic to spread the messag…" +06/05/2018,Musicians,@elliegoulding,RT @halcyon_leah: @elliegoulding We stand together! +06/05/2018,Musicians,@elliegoulding,Let’s do Instagram tagging tomorrow? Been a long studio day 🤯 Goodnight beautiful people x #BeatPlasticPollution +06/05/2018,Musicians,@elliegoulding,They were super early supporters of me. Thank you @Lookmagazine ❤️ https://t.co/b3U3DdwyIJ +06/05/2018,Musicians,@elliegoulding,🤩 https://t.co/N7y7kqfkYZ +06/05/2018,Musicians,@elliegoulding,"RT @GeorgeMonbiot: In the midst of a climate emergency, the government is imposing a 3-line whip on its MPs, to force acceptance of a Third…" +06/05/2018,Musicians,@elliegoulding,RT @CarolineLucas: Can't quite believe Chris Grayling's statement on #Heathrow didn't mention climate change even once. The biggest crisis… +06/05/2018,Musicians,@elliegoulding,Seeing as few politicians are brave enough to try to implement any kind of serious planet 🌍 saving legislation (blo… https://t.co/971aXsRrQh +06/05/2018,Musicians,@elliegoulding,Later on I want you to tag me in your #beatplasticpollution pics on insta pleeeease will let you know when x @UNEnvironment +06/05/2018,Musicians,@elliegoulding,Happy World Environment Day to all my beautiful fans and beyond. Remember you can still be a bad b*tch and care abo… https://t.co/Mh096hJoIA +06/04/2018,Musicians,@elliegoulding,Shoutout to anyone making a difference +06/04/2018,Musicians,@elliegoulding,@bittersweeteg That’s because these pictures are not supposed to be out +06/03/2018,Musicians,@elliegoulding,RT @guardian: Whale dies from eating more than 80 plastic bags https://t.co/iTImrYhcES +06/01/2018,Musicians,@elliegoulding,@Tonygardner I wouldn’t have got that +06/01/2018,Musicians,@elliegoulding,🎉🎉🎉 https://t.co/70AEL86Ayd +06/01/2018,Musicians,@elliegoulding,RT @Dania_H_: Whatever is going through @elliegoulding s mind right now-I can 100% relate to that. +05/31/2018,Musicians,@elliegoulding,RT @guardian: Avoiding meat and dairy is ‘single biggest way’ to reduce your impact on Earth https://t.co/pejsoEG7uD +05/31/2018,Musicians,@elliegoulding,"RT @Channel4News: No, this viral video doesn't show Muslims attacking cars in Britain. + +They're football hooligans in Switzerland. https://…" +05/31/2018,Musicians,@elliegoulding,@grimmers ❤️ +05/30/2018,Musicians,@elliegoulding,https://t.co/YTLU8dk7W8 +05/30/2018,Musicians,@elliegoulding,Amazing ❤️ https://t.co/eb3RHKaNST +05/30/2018,Musicians,@elliegoulding,@jamal_andreas @_AndyGrover That headshot tho +05/30/2018,Musicians,@elliegoulding,@YogaWorks it has legit taken me about an hour just to try and book a class online/on the app 😕 still havnt managed to! +05/29/2018,Musicians,@elliegoulding,@nikla_1 Crikey +05/28/2018,Musicians,@elliegoulding,@herminecornish_ Lately I’ve been finishing songs! :) +05/26/2018,Musicians,@elliegoulding,"This is just wonderful, Ireland 💚" +05/26/2018,Musicians,@elliegoulding,RT @CalvinHarris: Spot on https://t.co/B2UcFcCT84 +05/25/2018,Musicians,@elliegoulding,@cattleyaEG I am good! ❤️ +05/25/2018,Musicians,@elliegoulding,RT @AnnieMac: I'm feeling the tension in Ireland all the way over here in London. Sending love and solidarity to all those women and men fe… +05/21/2018,Musicians,@elliegoulding,@HEAVYCR0WN Yes is fake x +05/21/2018,Musicians,@elliegoulding,"RT @dpcarrington: Since the rise of human civilisation, 83% of wild land mammals, 80% of marine mammals and 50% of plants have been lost ht…" +05/21/2018,Musicians,@elliegoulding,"RT @dpcarrington: “I would hope this gives people a perspective on the very dominant role that humanity now plays on Earth,” Prof Ron Milo…" +05/21/2018,Musicians,@elliegoulding,RT @guardian: Human race just 0.01% of all life but has destroyed over 80% of wild mammals – study https://t.co/xNu6DTLr9U +05/17/2018,Musicians,@elliegoulding,"@ellieandbanks Bless you, not long x" +05/17/2018,Musicians,@elliegoulding,"RT @vaughnwallace: Our latest @NatGeo cover is one for the ages + +#PlanetorPlastic https://t.co/NssiHOtaYc" +05/16/2018,Musicians,@elliegoulding,Excited to headline @RockCorpsJapan concert on Sept 1st. Sign up here to earn your ticket! https://t.co/YnNTVzdgTM… https://t.co/5qTcj7UYcH +05/15/2018,Musicians,@elliegoulding,@ThisLully Cheers +05/15/2018,Musicians,@elliegoulding,@ThisLully https://t.co/xidxLFCjj7 +05/13/2018,Musicians,@elliegoulding,@JasminRicard 😘 +05/13/2018,Musicians,@elliegoulding,"RT @elliegoulding: @goulding_eg4 Until I spend the next three years fully immersed in my new music, for now, ain’t nothing wrong with a par…" +05/13/2018,Musicians,@elliegoulding,"@goulding_eg4 Until I spend the next three years fully immersed in my new music, for now, ain’t nothing wrong with… https://t.co/St8gnaKJmb" +05/10/2018,Musicians,@elliegoulding,@getglucky @CalvinHarris U missin London guh +05/09/2018,Musicians,@elliegoulding,@JessicaAlstonxx ❤️ +05/08/2018,Musicians,@elliegoulding,@fieldsofgould 🙂 +05/08/2018,Musicians,@elliegoulding,@goulden_heart Thank you! +05/07/2018,Musicians,@elliegoulding,@DILLONFRANCIS @IntrigueVegas Haha +05/04/2018,Musicians,@elliegoulding,https://t.co/VeGXXhNpGT +05/03/2018,Musicians,@elliegoulding,@leahdarmanin Lyrics!! +05/01/2018,Musicians,@elliegoulding,@CSuonATC :) +05/01/2018,Musicians,@elliegoulding,@salihughes Realising that something switched mentally and physically months after being veggie. I felt much more a… https://t.co/IoOFTrLkkz +05/01/2018,Musicians,@elliegoulding,RT @NosaIsabor: .....keep messing with nature and see what happens https://t.co/z90aWKeqkk +04/25/2018,Musicians,@elliegoulding,RT @karliekloss: Goulden Hour 🌞 cc @elliegoulding https://t.co/vrEbtGX14C +04/24/2018,Musicians,@elliegoulding,"RT @Kwabs: Yo @IvyChelsGarden, at this point you ought to give out some sort of public response to Raye that explains your position undismi…" +04/22/2018,Musicians,@elliegoulding,"RT @UNFCCC: How much do you know about #ClimateChange? https://t.co/GZMa8Y73oc This #EarthDay, take this #climate quiz and get informed abo…" +04/22/2018,Musicians,@elliegoulding,RT @narendramodi: I compliment all those individuals and organisations who are working towards promoting harmony with nature and ensuring s… +04/22/2018,Musicians,@elliegoulding,@Shelter Legends!! +04/22/2018,Musicians,@elliegoulding,Sending good vibes to all the London Marathon runners today. You are brilliant x +04/20/2018,Musicians,@elliegoulding,"Rest easy Avicii, you inspired so many of us. Wish I could have said that to you in person x" +04/20/2018,Musicians,@elliegoulding,No brainer smh https://t.co/3LuOcFALfn +04/20/2018,Musicians,@elliegoulding,"RT @goul_ding: @elliegoulding said ""I need your love I need your time"" + +Well, I say ""I need your fucking new music now"" + +Bye 🐒" +04/19/2018,Musicians,@elliegoulding,@martindavis111 ❤️ +04/18/2018,Musicians,@elliegoulding,@MelissaHooker3 Thank you! +04/18/2018,Musicians,@elliegoulding,I did that! Seemed like a fun idea at the time 🤷🏼‍♀️😷 https://t.co/XjssFlGyIj +04/17/2018,Musicians,@elliegoulding,@SoccerAM @EddieHearn Ha! +04/17/2018,Musicians,@elliegoulding,@grimmers Ha ive had a few grumpy-ish texts saying the same 😬⛈💦🌧🌦 +04/16/2018,Musicians,@elliegoulding,"RT @JonathanBadyal: Great evening at the UK reception for the Commonwealth Forums and Heads of Government meeting 2018. + +Opened by the Duke…" +04/16/2018,Musicians,@elliegoulding,OMFG Gordon https://t.co/y9507jvPPz +04/16/2018,Musicians,@elliegoulding,"RT @tictoc: Buckingham Palace has been transformed into a rainforest, as part of a global conservation initiative led by the @RoyalFamily's…" +04/15/2018,Musicians,@elliegoulding,RT @richardbranson: By 2050 there is going to be more plastic (by weight) than fish in the sea. Learn about this - and more ocean plastic f… +04/15/2018,Musicians,@elliegoulding,These are really good https://t.co/yoyKBJkN40 +04/14/2018,Musicians,@elliegoulding,RT @YeomanMichael: @keyofDom @elliegoulding @timkubart @sesamestreet @bshe Beautiful message for children including my son# earth is the on… +04/14/2018,Musicians,@elliegoulding,Ugh I love you guys so much for GETTING IT xxx https://t.co/XIlPlZL5Hz +04/14/2018,Musicians,@elliegoulding,RT @keyofDom: So excited that this is in the universe. @timkubart and I wrote this song a while back and it's such a dream to hear @elliego… +04/10/2018,Musicians,@elliegoulding,@getglucky @SylviaObell Me on every night out #foreverTired +04/10/2018,Musicians,@elliegoulding,RT @LouieBanks: Hi @instagram you seem to have deleted my account (@louiebanksshoots) and I believe it to be an error. I’d hugely appreciat… +04/10/2018,Musicians,@elliegoulding,"@claraamfo Oh wow, 😔❤️" +04/10/2018,Musicians,@elliegoulding,@hollandnigel @BBCR1 @claraamfo Huh?! +04/07/2018,Musicians,@elliegoulding,@JustinTrudeau ? https://t.co/a4CiYDR6Go +04/07/2018,Musicians,@elliegoulding,@kndrptr 😃 +04/04/2018,Musicians,@elliegoulding,@ConorMcDPhoto @BBCR1 @AnnieMac @benhowardmusic Do you like Ben Howard? I never knew that +04/04/2018,Musicians,@elliegoulding,@foolishm0rtals ❤️❤️❤️ +04/03/2018,Musicians,@elliegoulding,RT @GabrielleAplin: I wish we didn't treat other beings like such shite. Humans and animals. Elephants are so peaceful I hate seeing footag… +04/02/2018,Musicians,@elliegoulding,@cqmerqn The Blaze and George Fitzgerald +04/02/2018,Musicians,@elliegoulding,@Gouldingoddess Really good thank you! ❤️ +04/01/2018,Musicians,@elliegoulding,Wishing everyone a lovely lovely Easter 😊 +04/01/2018,Musicians,@elliegoulding,"Finally watched the fight, congratulations @anthonyfjoshua 🙏🏼 much respect as ever! Why do Brits love to boo so much tho 😑" +03/29/2018,Musicians,@elliegoulding,https://t.co/xsFnJVrq3B +03/27/2018,Musicians,@elliegoulding,"RT @guardian: John Bercow, the Speaker of the House of Commons, tells off foreign secretary Boris Johnson for using 'inappropriate and sexi…" +03/25/2018,Musicians,@elliegoulding,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Musicians,@elliegoulding,@Dania_H_ Fair play 😂❤️ +03/23/2018,Musicians,@elliegoulding,RT @sarfow11: the great cake-eating saga on @elliegoulding’s instagram story is pretty much the only thing keeping me going rn. they NEED t… +03/23/2018,Musicians,@elliegoulding,Um.... yeah! https://t.co/LG0zsG1X6y +03/21/2018,Musicians,@elliegoulding,"RT @DesiJV: @elliegoulding What a Dame! Ellie's devotion to inspire, challenge, impact, and change the way our world thinks and works is so…" +03/21/2018,Musicians,@elliegoulding,@shannonn2323 Bless you ❤️ I’ll be back soon x +03/20/2018,Musicians,@elliegoulding,RT @StylistMagazine: . @elliegoulding shares her tiny tips for saving the planet https://t.co/q7HF67gvNj #earthhour #climatechange #plastic… +03/18/2018,Musicians,@elliegoulding,Cool 😑 https://t.co/7l3xzaPuUa +03/18/2018,Musicians,@elliegoulding,Why are you so great Pret https://t.co/SzTp4d7c9t +03/16/2018,Musicians,@elliegoulding,RT @StreetsofL: Thank you to everyone who placed a bid/bought items in our recent eBay auction of signed memorabilia + a big thank you to e… +03/15/2018,Musicians,@elliegoulding,@mccordsbutera 😘 +03/15/2018,Musicians,@elliegoulding,@halcyonsdays Hi 🐶 +03/15/2018,Musicians,@elliegoulding,RT @BronteFarenden: The lovely @elliegoulding doing her thing by sharing this - there’s no reason why we can’t all do our bit to help reduc… +03/15/2018,Musicians,@elliegoulding,RT @Dania_H_: A concept; @elliegoulding in oversized shirts. +03/15/2018,Musicians,@elliegoulding,"RT @paulocoelho: Don't panic +Loneliness, when accepted, is a gift that will lead us to find a purpose in life." +03/15/2018,Musicians,@elliegoulding,Back to the stars for Stephen Hawking 💫 Thank you for your remarkable intelligence and perseverance. As a pioneer i… https://t.co/I8trmLjmBw +03/15/2018,Musicians,@elliegoulding,RT @ConorMcDPhoto: BEN HOWARD JUST POSTED A TEASER VIDEO https://t.co/GCHkJrmp1v +03/14/2018,Musicians,@elliegoulding,@JessicaAlstonxx @Everlast_ Caspar and I are very grateful for the beautiful flowers x +03/13/2018,Musicians,@elliegoulding,@gouldingglitter Have a wonderful birthday ☺️ +03/12/2018,Musicians,@elliegoulding,Impossible burger 😍😍😍😍😍 https://t.co/e3BdSoz3r3 +03/10/2018,Musicians,@elliegoulding,@AAllexl I’m glad!! You should! ❤️ +03/09/2018,Musicians,@elliegoulding,#HappyInternationalWomenDay To the courageous women who paved the way for us to thrive today. To all the hardworkin… https://t.co/2PXge69vcG +03/07/2018,Musicians,@elliegoulding,"We need to act now, World https://t.co/6JsKg1z8hs" +03/06/2018,Musicians,@elliegoulding,RT @jennypackham: Ellie Goulding wearing the Calypso gown from the AW18 Collection to the 2018 Vanity Fair Oscar Party @elliegoulding #jenn… +03/05/2018,Musicians,@elliegoulding,You absolutely smashed it @AndraDayMusic ❤️ #Oscars +03/03/2018,Musicians,@elliegoulding,Happy World Wildlife Day! 🦁💚🌏 https://t.co/N7dKDhWfFv https://t.co/x4GNU8zV0U +03/03/2018,Musicians,@elliegoulding,RT @GlobalGoalsUN: Big cats are under threat but you can do something about it. On #WorldWildlifeDay join a team like @elliegoulding & supp… +03/03/2018,Musicians,@elliegoulding,Ps Am already in LA that was for someone else :) ☔️☔️☔️ +03/02/2018,Musicians,@elliegoulding,@Hanaranah Unfortunately it’s true +03/02/2018,Musicians,@elliegoulding,@Gouldingoddess 💕💕💕 +03/02/2018,Musicians,@elliegoulding,My sister saw comments on @herefordtimes and was upset by it. Not sure why people are so obsessed with criticising.… https://t.co/vOtDJZxe2Q +03/02/2018,Musicians,@elliegoulding,@ellieandbanks ❤️❤️❤️ +03/02/2018,Musicians,@elliegoulding,Epic auction alert for an amazing cause... You are wonderful @StreetsofL x https://t.co/Qt0Ivf0U8y +03/02/2018,Musicians,@elliegoulding,@FrankAnne1 @HTnewsroom This a classically ignorant response. So depressing +03/02/2018,Musicians,@elliegoulding,"Thank you, and yes, that was the aim. I don’t know why Herefordians are always so quick to the negative before the… https://t.co/n1PO5FDSKr" +03/01/2018,Musicians,@elliegoulding,RT @ohmygouldness: @elliegoulding I think I remember seeing that Street Link doesn’t work in Scotland however there are these 2 numbers for… +03/01/2018,Musicians,@elliegoulding,"RT @Tell_StreetLink: If you see rough sleepers out in the snow during daytime hours, please remember that you can use our app to locate the…" +02/28/2018,Musicians,@elliegoulding,RT @UNEP: Are you ready to rise up for people and planet? We're looking for the next Young Champions of the Earth to tackle the world's env… +02/28/2018,Musicians,@elliegoulding,Best album https://t.co/mSNnUVBFAI +02/27/2018,Musicians,@elliegoulding,@djsaraht @Spotify I will make another! 😘 +02/27/2018,Musicians,@elliegoulding,@DarpinoLaura @PanteneUK Will sort x +02/27/2018,Musicians,@elliegoulding,RT @rarohde: The North Pole is warmer than much of Europe right now. https://t.co/7hWpF0EysY +02/26/2018,Musicians,@elliegoulding,@AskTSA Can you DM me? Thanks +02/26/2018,Musicians,@elliegoulding,@TSA @AskTSA Yes!! +02/26/2018,Musicians,@elliegoulding,@AskTSA Is this active?! +02/23/2018,Musicians,@elliegoulding,"RT @lcoynearmet: @elliegoulding covering ‘Vincent’ (aka, one of my top 10 favorite songs EVER) by @donmcleanonline is THE BEST PART OF MY D…" +02/23/2018,Musicians,@elliegoulding,Same difference x https://t.co/u7lgqiP4jw +02/23/2018,Musicians,@elliegoulding,I did not give Marine Le Pen permission to use my song at the CPAC. @MLP_officiel Do not use my music in future. +02/22/2018,Musicians,@elliegoulding,@jackwhitehall Nailed it +02/21/2018,Musicians,@elliegoulding,@ladyhaja I love her +02/21/2018,Musicians,@elliegoulding,"@Aliina57 Please don’t say things like that, I spread love, not “shade” 🤦🏼‍♀️" +02/21/2018,Musicians,@elliegoulding,@ohmygouldness @DineGouldDigger @Nick_Pettigrew I don’t shade. I said what I was told to say. I wouldn’t ever say a… https://t.co/y4KR0I8gQf +02/21/2018,Musicians,@elliegoulding,So so proud to celebrate British Music tonight. Such a fantastic evening... #BRITs #80sB*tch +02/21/2018,Musicians,@elliegoulding,@DineGouldDigger @Nick_Pettigrew Guys like that need a wee punch! Happy to offer! +02/21/2018,Musicians,@elliegoulding,@Nick_Pettigrew Piss off +02/21/2018,Musicians,@elliegoulding,@LaureRoosen Haha 😜😇 +02/21/2018,Musicians,@elliegoulding,@Metro_Ents Haha noooo ❤️ +02/18/2018,Musicians,@elliegoulding,https://t.co/35rA2QpBgr +02/18/2018,Musicians,@elliegoulding,@destiny_lanee What app?! +02/18/2018,Musicians,@elliegoulding,RT @Dania_H_: @elliegoulding uhhh you forgot these https://t.co/XggFOEdBPq +02/18/2018,Musicians,@elliegoulding,https://t.co/XtBKZKTwLn +02/18/2018,Musicians,@elliegoulding,https://t.co/c7KTXhea9T +02/16/2018,Musicians,@elliegoulding,"RT @BBCScienceNews: '100,000 orangutans' killed in 16 years https://t.co/XATqq3yjEs" +02/16/2018,Musicians,@elliegoulding,RT @ClassicJpow: .@elliegoulding’s cover of “Vincent” has been the only thing to keep me sane through all the madness. +02/16/2018,Musicians,@elliegoulding,RT @EllieGWiki: NEWS: Ellie Goulding has now reached 50 MILLION Shazams & is now 1 of the 3 ONLY female artists to reach this milestone alo… +02/15/2018,Musicians,@elliegoulding,@ellieandbanks Yes x +02/15/2018,Musicians,@elliegoulding,RT @BradleyKShelton: @elliegoulding cover of #Vincent by @donmcleanonline is a touching tribute. Ellie’s one of the only artists who cover… +02/14/2018,Musicians,@elliegoulding,"@donmcleanonline Thank you so much Don , that means a lot. No one could ever sing it like you! Please never forget… https://t.co/38SZ00mPaM" +02/14/2018,Musicians,@elliegoulding,RT @donmcleanonline: Hello @elliegoulding... Vincent is not an easy song to sing and you sing it very beautifully. Please know that I am de… +02/14/2018,Musicians,@elliegoulding,"Happy Valentines Day to my incredible fans. Any of you who feel lonely, single or not, I promise you’re not alone,… https://t.co/jgrY3F5Sa8" +02/14/2018,Musicians,@elliegoulding,"My album isn’t ready yet, but for the best fans in the world, here’s my offering for Valentines Day, a tribute to D… https://t.co/SK9qxjVibD" +02/14/2018,Musicians,@elliegoulding,@matheusmaus12 @chrisketley Me! +02/13/2018,Musicians,@elliegoulding,@MandiieeTS13 I’m always up for a @BBCR1 live lounge 🤓 +02/13/2018,Musicians,@elliegoulding,@DarpinoLaura I think I’m allowed a year off festivals :) +02/13/2018,Musicians,@elliegoulding,@LaureRoosen Exactly! ❤️ +02/13/2018,Musicians,@elliegoulding,@cononrwalsh No x +02/13/2018,Musicians,@elliegoulding,❤️ https://t.co/cQIl1i1FCB +02/12/2018,Musicians,@elliegoulding,"RT @RachhLoves: Dear social media apps: +PLEASE STOP MESSING WITH CHRONOLOGICAL ORDER. We live our lives chronologically, so when it jumps a…" +02/11/2018,Musicians,@elliegoulding,RT @TheDweck: Me when I say I’m five minutes away https://t.co/IcL42swdf1 +02/09/2018,Musicians,@elliegoulding,@nikla_1 That’s exactly right +02/07/2018,Musicians,@elliegoulding,RT @benhowardmusic: https://t.co/Fh9p1rWYYn +02/06/2018,Musicians,@elliegoulding,👍🏼👍🏼 @elonmusk https://t.co/gJyEDT3MdN +02/06/2018,Musicians,@elliegoulding,@RobdaBank Ok +02/06/2018,Musicians,@elliegoulding,SICK! https://t.co/pUgchN6vO5 +07/01/2018,Musicians,@IGGYAZALEA,Damn im about to. hold the line. https://t.co/zaP4ckKVPH +07/01/2018,Musicians,@IGGYAZALEA,"at least four times a week i say +""well... they had to sew sandy into her pants on grease! so- "" +in regards to why… https://t.co/hybFvYnUlz" +07/01/2018,Musicians,@IGGYAZALEA,If you consider the fact my life revolved around the movie grease as a child i think everything else really becomes self explanatory. +06/30/2018,Musicians,@IGGYAZALEA,I heard you say that to all the girls. . . +06/30/2018,Musicians,@IGGYAZALEA,https://t.co/HOT02f2bTi +06/29/2018,Musicians,@IGGYAZALEA,RICH BITCHES DONT DIE. +06/29/2018,Musicians,@IGGYAZALEA,ALWAYS. 🥰 https://t.co/UMhw2PY8YA +06/28/2018,Musicians,@IGGYAZALEA,I cant stop looking at it on 'maps' and thinking about all the times i would walk down the streets that are now jus… https://t.co/A4JjVg8f2d +06/28/2018,Musicians,@IGGYAZALEA,RT @SHANE_TMUK_NM4: @IGGYAZALEA Full circle moment. STS is going to be everything. Im so exited!!!!! Love u +06/28/2018,Musicians,@IGGYAZALEA,"awwwww, dream iggy thanks you and so does the real one. https://t.co/SKIK6io1gn" +06/28/2018,Musicians,@IGGYAZALEA,"I literally am fucking SHOOK right now. I just saw the address to somewhere that im going, and its randomly (or may… https://t.co/40iIDECI4S" +06/27/2018,Musicians,@IGGYAZALEA,"Im not going to let anything ruin my good mood or creative happy space im in lately. NOPE! +Im having my fun and im… https://t.co/Y1kahN1Dqk" +06/27/2018,Musicians,@IGGYAZALEA,"""We said modeling"" +I didnt ask for your order. +I didnt even make you a plate. +I'll serve up whatever the fuck i… https://t.co/6DnGKUKaRq" +06/26/2018,Musicians,@IGGYAZALEA,Ughhh you both always kill it. its too muchhhhhhhhh. 😍 https://t.co/np1zLQAduA +06/25/2018,Musicians,@IGGYAZALEA,RT @incufiend: @IGGYAZALEA I’ve legit cried cuz I spilled the ramen noodle seasoning packet. +06/25/2018,Musicians,@IGGYAZALEA,Love you guys. The single artwork says kream because that is the name of the song. i dont know any Norwegian DJs bu… https://t.co/NLJrrT1dzQ +06/25/2018,Musicians,@IGGYAZALEA,LMAO WHY DO I GET SO MAD ABOUT FOOD. CAN YOU RELATE?! https://t.co/VsrKhy7yHM +06/25/2018,Musicians,@IGGYAZALEA,JULY SIX. https://t.co/SN3HaC94jE +06/24/2018,Musicians,@IGGYAZALEA,RT @leflower: I’ll just leave this right here https://t.co/7eypJYPplG +06/24/2018,Musicians,@IGGYAZALEA,@Thee_LoLaMonroe 🧡 +06/24/2018,Musicians,@IGGYAZALEA,"Have a lovely day ladies! lets all be about our business and prosper. +I love you all. 🧡🧡🧡" +06/23/2018,Musicians,@IGGYAZALEA,"A shark in the water, how you found me." +06/23/2018,Musicians,@IGGYAZALEA,@illumedbeauty @JackieA025 @AdanPartida @ROBUARYY ive been battling loosing my voice all week. just worn out +06/23/2018,Musicians,@IGGYAZALEA,"FUCK. +IM LOOKING AT SOME CASTING VIDEOS FOR A VIDEO. +IF YOU ARE A DANCER WHO AUDITIONED, I JUST WANT TO SAY. +YOU… https://t.co/LpZRt9XqKl" +06/22/2018,Musicians,@IGGYAZALEA,JULY SIX. YOU WONT SURVIVE THE SUMMER. https://t.co/ePEnBnEaIL +06/21/2018,Musicians,@IGGYAZALEA,when i bounce it. drop a thousand. while you all talk. an im bout it. https://t.co/M5FfaPfXBf +06/21/2018,Musicians,@IGGYAZALEA,RT @edodb8: I got big fish money he gon’ bite the bait 🦈 https://t.co/tRzthbKkm8 +06/21/2018,Musicians,@IGGYAZALEA,"I was there the day we sung you happy birthday for 6 years sober. +I jumped a random persons fence in my PJs to com… https://t.co/cq6ZEAJltf" +06/21/2018,Musicians,@IGGYAZALEA,"waking up listening to @ddlovato ""sober"". +Im proud of you for having the guts to reveal your truth to the world ag… https://t.co/s46BrJyzcP" +06/20/2018,Musicians,@IGGYAZALEA,"@fondue4kill i be fair, i actually love the design aspect but no, i dont understand much about the functionality so… https://t.co/JTjJjnBDS4" +06/20/2018,Musicians,@IGGYAZALEA,I love.... pipes? i think. https://t.co/7WDOqHtJht +06/20/2018,Musicians,@IGGYAZALEA,"guys are so funny. someone literally just showed me an exhaust and said ""isnt this so cool"" i dunno. is it? im a gi… https://t.co/EngYnmyPYZ" +06/20/2018,Musicians,@IGGYAZALEA,"mom, if your reading this; send mini banana candies to america asap ive eaten them all already from breakfast." +06/20/2018,Musicians,@IGGYAZALEA,RT @THEmale_madonna: @IGGYAZALEA Well alrighty then. Bring on July!!!!!! https://t.co/H88BpDVVyE +06/20/2018,Musicians,@IGGYAZALEA,Anyway just know im really happy and excited but occasionally a lil overwhelmingly nervous - just cause who knows!?… https://t.co/xrDfKTQiae +06/20/2018,Musicians,@IGGYAZALEA,All the less eyebrows a bitch gotta draw on her face anTway. its less stressful. +06/20/2018,Musicians,@IGGYAZALEA,You ever have someone facetime you every call yall have for months; then suddenly only wanna regularly call yo ass… https://t.co/VfamWOcmKU +06/20/2018,Musicians,@IGGYAZALEA,Jurassic park is the first movie i ever watched that made me want to piss my pants. It was great. I wish i could be… https://t.co/GwQce58HwX +06/20/2018,Musicians,@IGGYAZALEA,RT @1D_memoriez: @IGGYAZALEA I feel the same way!!! https://t.co/Q0eSLkGL7s +06/20/2018,Musicians,@IGGYAZALEA,I dont care how many of those movies they make vs. how many of them i end up liking. they can get my money everytim… https://t.co/N0G3hJubZp +06/20/2018,Musicians,@IGGYAZALEA,jurassic park is coming jurrassic park is coming jurasicxdsijcominggggggggg ahhhhhhhhhhhhhhhhhhhhhhhh!!!!!!!!!!! +06/19/2018,Musicians,@IGGYAZALEA,Its not easy when you are fundamentally someone who struggles with depression and anxiety but im hopefull still eve… https://t.co/2lteBgSpSH +06/19/2018,Musicians,@IGGYAZALEA,im getting to the point now where i start to try to foresee the outcome of whats about to happen (an impossible thi… https://t.co/M69zbUyDPN +06/19/2018,Musicians,@IGGYAZALEA,because if it were up to me id be releasing songs at the same rate i post pictures. I really care about music and a… https://t.co/BGy6sReeq0 +06/19/2018,Musicians,@IGGYAZALEA,"and maybe its silly, but it really has been helping me lately to feel more postive and just keep my mind in a creat… https://t.co/Er0mQ0uJ6Y" +06/19/2018,Musicians,@IGGYAZALEA,"Say what you want about me posting pictures on instagram but honestly, +it gives me something else creative i can f… https://t.co/yfR6oQIOnd" +06/19/2018,Musicians,@IGGYAZALEA,Being spoiled spoils life. +06/19/2018,Musicians,@IGGYAZALEA,@jazalean SICK! +06/18/2018,Musicians,@IGGYAZALEA,"Also, unrelated but - im hungry." +06/18/2018,Musicians,@IGGYAZALEA,July 6th is so close yet so far away and i cannot stop thinking about it. +06/13/2018,Musicians,@IGGYAZALEA,I love you! the ULTIMATE SUPREME. https://t.co/pDekL0vPVa +06/12/2018,Musicians,@IGGYAZALEA,RT @IggysUpdates: Help @IGGYAZALEA & @eBay support the LGBTQ+ community by bidding Iggy’s Signed Cheerleading Uniform From BBMAS! All Proce… +06/10/2018,Musicians,@IGGYAZALEA,"@illumedbeauty @XZXIEXN @High_Mayyy @HotThocket @IGGYAZMALEA @Slave4Iggy @kremeclassic iam aware the GP likes ass, yes. lol" +06/10/2018,Musicians,@IGGYAZALEA,Did you know i laughed out loud about 22 times today? I swear to God. +06/09/2018,Musicians,@IGGYAZALEA,"@digitaIfon @fentyshole i did, dont worry." +06/09/2018,Musicians,@IGGYAZALEA,@Adidas_Head88 july 6. 😇 +06/08/2018,Musicians,@IGGYAZALEA,"@rightheresus it means, you can show someone how to help themselves - but sometimes they are so full with their own… https://t.co/eADVYoVLAc" +06/08/2018,Musicians,@IGGYAZALEA,"@DDistortion12 @DUASBOY After, i dont want anything else coming out until my full EP is out July 6th." +06/08/2018,Musicians,@IGGYAZALEA,You can lead a horse to water; but sometimes its already been drinking its own kool aid. +06/08/2018,Musicians,@IGGYAZALEA,"Also - Since i cant seem to speak about anything without being asked - +when is the EP dropping: S.T.S is dropping July 6th. #TheMoreYouKnow" +06/08/2018,Musicians,@IGGYAZALEA,Thankyou for all the birthday wishes yesterday. 🧡 +06/04/2018,Musicians,@IGGYAZALEA,https://t.co/PGXTiFpRuo +06/04/2018,Musicians,@IGGYAZALEA,https://t.co/B4SVTA9GTU +05/20/2018,Musicians,@IGGYAZALEA,"@IggyAzaleaHQ1 oh yeah you cant do that, you gotta keep your eye on it the whole time. shit gets outta hand real fa… https://t.co/XJwtAX3nfP" +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 the timing thing is really the biggest hurdle with it. the brown sugar makes it volatile. +05/20/2018,Musicians,@IGGYAZALEA,I have memories from early childhood of my mother literally running for her life alongside the parade like a crazed… https://t.co/GsvsEJ45s7 +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 yup you did! bring it to boil on medium while you stir and then let it simmer for 4mins on low heat… https://t.co/2AJkslNPxW +05/20/2018,Musicians,@IGGYAZALEA,"If you felt overwhelmed watching your timeline talk about the royal wedding today, imagine how i felt witnessing my… https://t.co/umBeJMYHVO" +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 what are they ? +05/19/2018,Musicians,@IGGYAZALEA,https://t.co/xaGRTKuV7v +05/17/2018,Musicians,@IGGYAZALEA,but i say all this to say i met up and spoke to an old friend/creative person i work with last night and we spoke f… https://t.co/i0c6UI2q2P +05/17/2018,Musicians,@IGGYAZALEA,Sometimes i feel a little overwhelmed by how many little pieces i have to get sorted out before i can say music and… https://t.co/plOYYfw1vn +05/17/2018,Musicians,@IGGYAZALEA,"Nonchalant an i kill em +team captain of the villains +they don't wanna see me winning +and i don't wanna see you live bitch" +05/15/2018,Musicians,@IGGYAZALEA,"Yup, I’m gonna take twitters advice... just drink out of cups and chill." +05/15/2018,Musicians,@IGGYAZALEA,"I really think I hurt my hand, it’s been a week and I still can’t open a bottle or water with it. I hate going to t… https://t.co/gXf53wLxVx" +05/14/2018,Musicians,@IGGYAZALEA,How to break an addiction. Decide to live. +05/14/2018,Musicians,@IGGYAZALEA,RT @newsdistortion: @IGGYAZALEA f*** me https://t.co/WuWIGR8JJC +05/14/2018,Musicians,@IGGYAZALEA,@ricktrbl @lggysBae I literally am but okay.... +05/13/2018,Musicians,@IGGYAZALEA,"27. Is where it’s at. +Just... tell them you’re sunburnt 🤔 https://t.co/5W3b2Wzvc7" +05/13/2018,Musicians,@IGGYAZALEA,Ambition & Hyperfemininity +05/12/2018,Musicians,@IGGYAZALEA,"@youllneverknow Ahhh no, it’s not. It’s love. +I think it’s “delete it fat” “she made some points” “I don’t know h… https://t.co/JtJVW3292w" +05/12/2018,Musicians,@IGGYAZALEA,@SWEETENER_18 😂😂😂 too funny. 💜 +05/12/2018,Musicians,@IGGYAZALEA,If they called me at 5am in the rain I would put my slippers on and go to the studio- even if they got wet. https://t.co/hcFbuyMOXa +05/12/2018,Musicians,@IGGYAZALEA,Hey @Meghan_Trainor you looked beautiful yesterday 💜 +05/11/2018,Musicians,@IGGYAZALEA,"Whelp, just watched wild wild country on Netflix and i finally know what was up with my neighbors as a child. lol. random." +05/10/2018,Musicians,@IGGYAZALEA,Whilst also doing normal shit that feels natural so as not to become an Android. +05/10/2018,Musicians,@IGGYAZALEA,I’m just tryna live my private life as privateLY as possible. +05/09/2018,Musicians,@IGGYAZALEA,@HausOfIggz @thynewcIassic i tweeted it weeks ago. 🤣 you know i love to tweet and delete! +05/09/2018,Musicians,@IGGYAZALEA,"Do you ever see your friend online and youre like... +thats some really great advice, but i happen to know your per… https://t.co/uJnKJKg5q6" +05/07/2018,Musicians,@IGGYAZALEA,@hourgIassfigure I’m getting ready to go out but watching until I have to leave +05/07/2018,Musicians,@IGGYAZALEA,"Jasmine sanders is fucking doing IT people! I am getting my life! That fabric, the hair!" +05/07/2018,Musicians,@IGGYAZALEA,"Grey smoke bellowing back... +Are we on fire?" +05/06/2018,Musicians,@IGGYAZALEA,@outfagged A concept! +05/06/2018,Musicians,@IGGYAZALEA,@lustforlfie @britneyspears I was never not on good terms. The internet tried to make a beef that never existed and I truly mean that. +05/06/2018,Musicians,@IGGYAZALEA,RT @mxchxen: @IGGYAZALEA Me after fucking things up +05/06/2018,Musicians,@IGGYAZALEA,RT @levels_player: @IGGYAZALEA A scientist. What’s your favorite area to experiment sis +05/06/2018,Musicians,@IGGYAZALEA,I only make poor life choices as experiments. I swear. +05/05/2018,Musicians,@IGGYAZALEA,@lustforlfie @britneyspears Bitch can dream. I still Stan. +05/05/2018,Musicians,@IGGYAZALEA,"I’m going skating on Monday and I’ve already decided that yes, a 40 inch wig is entirely appropriate for the occasion." +05/05/2018,Musicians,@IGGYAZALEA,@CupcakKe_rapper @JDudleyRowe Thicka than a Strippa but if she clap it ima tip ha 🗽 +05/04/2018,Musicians,@IGGYAZALEA,"@itsBrandonLamar Yes, June 7. And yes, I’m a serial killer." +05/04/2018,Musicians,@IGGYAZALEA,Hmmmmm? Could be great. I like the energy. https://t.co/xqk8ivApvy +05/04/2018,Musicians,@IGGYAZALEA,@rachelpage_ She looks preppy & organized. https://t.co/yKyBuROQtN +05/04/2018,Musicians,@IGGYAZALEA,@rachelpage_ No but I see you have a dog & I don’t know if they’re already employed but one of my dogs needs an ass… https://t.co/tYLNAj8OY6 +05/04/2018,Musicians,@IGGYAZALEA,"It’s May, which means it’s almost June... which means it’s practically Halloween & Everyone needs to start planning… https://t.co/Vxx4yEdWsv" +05/04/2018,Musicians,@IGGYAZALEA,RT @Phoenix_Stone09: This era Iggy is coming for blood https://t.co/obhrEUyRmm +05/03/2018,Musicians,@IGGYAZALEA,RT @silizzzle: @IGGYAZALEA GANGANG +05/03/2018,Musicians,@IGGYAZALEA,"RT @Shazam: Beauty, brains and talent 👉 @IGGYAZALEA https://t.co/SUueIx6drp" +05/01/2018,Musicians,@IGGYAZALEA,I feel my energy really coming back these days. +05/01/2018,Musicians,@IGGYAZALEA,"no exaggeration, the only thing I love more than doing my own thing... is helping girls I believe in do theirs. I j… https://t.co/YrqNMQXaZV" +04/30/2018,Musicians,@IGGYAZALEA,In other news I’m in the mood for tacos. +04/30/2018,Musicians,@IGGYAZALEA,I’m not judging I’m just watching. +04/30/2018,Musicians,@IGGYAZALEA,@PettyJBlige 😩🙂 +04/30/2018,Musicians,@IGGYAZALEA,@PettyJBlige Girl that’s just called being a picky eater 😝 +04/30/2018,Musicians,@IGGYAZALEA,Iam an endless fountain of vagina metaphors and punchlines. +04/30/2018,Musicians,@IGGYAZALEA,"Let me feel myself, yeah daddy know im cocky." +04/29/2018,Musicians,@IGGYAZALEA,"reasons to believe +dont feel like reasons at all +love i lie in the dark +light me up when you call" +04/28/2018,Musicians,@IGGYAZALEA,"If you betray anothers trust & good faith in order for us to share a secret. +The only secret I’m actually burdened… https://t.co/tWWhBe3QPd" +04/28/2018,Musicians,@IGGYAZALEA,I cannot come to grips with the fact my finger nail is entirely gone. https://t.co/bCgw6V2XLz +04/28/2018,Musicians,@IGGYAZALEA,RT @jurai: @IGGYAZALEA bad feels +04/28/2018,Musicians,@IGGYAZALEA,When you stop texting each other goodnight it’s... +04/27/2018,Musicians,@IGGYAZALEA,60% of my thoughts are pure smut. +04/27/2018,Musicians,@IGGYAZALEA,"control is safe + +but + +love is not control + +Love is + +200mph on the freeway with the door open and no seatbelts." +04/27/2018,Musicians,@IGGYAZALEA,I’m still looking for you. +04/26/2018,Musicians,@IGGYAZALEA,RT @igorehaofficial: @IGGYAZALEA https://t.co/gRfLRIhImV +04/26/2018,Musicians,@IGGYAZALEA,Profound +04/26/2018,Musicians,@IGGYAZALEA,"I have so many introspective things I’d like to lament on when it comes to men... + +But since this is Twitter & it’… https://t.co/K25zeOzeaQ" +04/22/2018,Musicians,@IGGYAZALEA,RT @slaylikeiggy: @IGGYAZALEA you're literally an insane person im ctfu this is pure gold 😂💕 +04/22/2018,Musicians,@IGGYAZALEA,"Happiness is having something to look forward to. + +And that’s it." +04/21/2018,Musicians,@IGGYAZALEA,I live in seasons that refuse to change. +04/20/2018,Musicians,@IGGYAZALEA,I know it’s still April but I just booked my birthday vacation and I’m already OD excited. Haha. +04/20/2018,Musicians,@IGGYAZALEA,"@callieazalean @ositopapasito I love you but please, I’m not giving updates on social media about my project. Thanks 🙏" +04/20/2018,Musicians,@IGGYAZALEA,"@ItsVonTae Thanks man & I agree. +Never force your pen." +04/20/2018,Musicians,@IGGYAZALEA,"The reason we have polarizing personas making up larger artistic generations is to create balance. + +Everyone shoul… https://t.co/EhnXPibBP3" +04/20/2018,Musicians,@IGGYAZALEA,@killianwjackson 😂 https://t.co/TT8V2RjOnp +04/19/2018,Musicians,@IGGYAZALEA,"I said all this to say: + +If anyone needs a freelance writer to do a think piece on chicken nuggets - + +Im available." +04/19/2018,Musicians,@IGGYAZALEA,"RULE OF THUMB + +If youre speaking about it with friends at home, you MAY care. + +If youre talking about it on your s… https://t.co/e7Pj8V8djg" +04/19/2018,Musicians,@IGGYAZALEA,@Str8witGayTaste I believe in confirmation bias +04/19/2018,Musicians,@IGGYAZALEA,Time to make a mood board. +04/19/2018,Musicians,@IGGYAZALEA,My house keeper filmed it & made me make a wish on it. She seemed sure it was scientifically valid. https://t.co/R4UrhPudJs +04/19/2018,Musicians,@IGGYAZALEA,There was a humming bird in my house today. I’m going to have good luck. Can’t tell me shit all week! Lol. +04/19/2018,Musicians,@IGGYAZALEA,RT @SARATONlN: yes https://t.co/wJZp3cbZ8w +04/15/2018,Musicians,@IGGYAZALEA,Okay now tory 🙏🙂 https://t.co/hEG6OaFswl +04/15/2018,Musicians,@IGGYAZALEA,I don’t think I’ll ever see a better show then the one I just watched Beyonce perform tonight. Iam shaken to my bones. +04/12/2018,Musicians,@IGGYAZALEA,@thynewclassic Truuuuuueeee +04/12/2018,Musicians,@IGGYAZALEA,@soares_mateus00 @iggzrey @itsiggyiggzz @ElizeuGomez9 @FranciscoAzalea @pussypowerglory @jaygoodie_ Okay +04/12/2018,Musicians,@IGGYAZALEA,@iggzrey @itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ Yup +04/12/2018,Musicians,@IGGYAZALEA,@7teenmilli @itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ 28 +04/12/2018,Musicians,@IGGYAZALEA,@itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ https://t.co/p5melVerEd +04/12/2018,Musicians,@IGGYAZALEA,@itsiggyiggzz Lmao 😆 you crazy 14! +04/12/2018,Musicians,@IGGYAZALEA,@IggyPty @igorehaofficial @thenewwclassic @nicocarciochi Okay 👌 +04/12/2018,Musicians,@IGGYAZALEA,@soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ No I’ve been on a meal plan this week although they… https://t.co/CdAKVRdHE8 +04/12/2018,Musicians,@IGGYAZALEA,@igorehaofficial @thenewwclassic @nicocarciochi 31 +04/12/2018,Musicians,@IGGYAZALEA,@pussypowerglory @bangerzantii @jaygoodie_ Lmao +04/12/2018,Musicians,@IGGYAZALEA,@Riguistan @thenewwclassic @nicocarciochi 22 +04/12/2018,Musicians,@IGGYAZALEA,@thenewwclassic @nicocarciochi Hey 46! +04/12/2018,Musicians,@IGGYAZALEA,"@iggzrey @nicocarciochi Yes, it’s on iTunes ! Ha!" +04/12/2018,Musicians,@IGGYAZALEA,"@nicocarciochi No not yet, but I read the book so that has to count for something. +I don’t go to the movies much I… https://t.co/6fumnL26Hk" +04/12/2018,Musicians,@IGGYAZALEA,@azillions I love talking about my vagina and pizza on the Internet with everyone but you know what I mean... there’s levels. +04/12/2018,Musicians,@IGGYAZALEA,"@LotteLDN That’s true! Success is dealing with rejection, it’s part of it. I was more so referring to people ie. lo… https://t.co/B2YhBOzRk0" +04/12/2018,Musicians,@IGGYAZALEA,@LaKreme2LaKreme Totally!!!! Pride is crazy. +04/12/2018,Musicians,@IGGYAZALEA,"Rejection is such a funny emotion. +It’ll trick you into feeling sad you didn’t walk away with something you never wanted anyway." +04/09/2018,Musicians,@IGGYAZALEA,I wish I could keep you safe. +04/09/2018,Musicians,@IGGYAZALEA,"@SurvivingDevone Just because I cut my hair doesn’t mean I won’t still slay a wig etc etc. +this is just what I’m d… https://t.co/DZQU6X0e2Z" +04/08/2018,Musicians,@IGGYAZALEA,"@mxchxen @SummerSurvival @iggyoutsold If you can’t laugh at yourself then life will be long and hard. I promise you, it’s all love." +04/08/2018,Musicians,@IGGYAZALEA,@SummerSurvival @iggyoutsold Why do y’all care so much? I think it’s extremely funny or I wouldn’t have made the jo… https://t.co/nVRbdKoHOK +04/07/2018,Musicians,@IGGYAZALEA,"RT @CaMidStateFair: JUST ANNOUNCED: Demi Lovato, with special guest Iggy Azalea, to perform at the #MidStateFair | JULY 22 | Tickets on sal…" +04/05/2018,Musicians,@IGGYAZALEA,@MoBounceDD @biblical_dildo they have to come to me naturally i cant force them. +04/05/2018,Musicians,@IGGYAZALEA,@biblical_dildo i really think you should its literally the best thing ive thought of in days. +04/05/2018,Musicians,@IGGYAZALEA,@digitalfon biblical_dildo +04/04/2018,Musicians,@IGGYAZALEA,"@DropNM4Nicki @thynewclassic Anddddd that’s why I fuck with you. +If you like something listen, if ya don’t? All good! +It’s logical." +04/04/2018,Musicians,@IGGYAZALEA,@nphucas This is exactly my feelings every time I log on and see “what you need to do is......” like can we please.… https://t.co/5Zd28louQt +04/04/2018,Musicians,@IGGYAZALEA,@nphucas Lmao well I love all 60 of you; I just want to come online and have fun conversations with you guys. I don… https://t.co/GcBLpH0WhR +04/03/2018,Musicians,@IGGYAZALEA,"Im on a meal plan and they really cut up a grilled chicken breast and named it ""chicken tenders"" i - + +im not cut out for this life!" +04/03/2018,Musicians,@IGGYAZALEA,@stainediggy @thynewclassic Iam so sick of these pap drones. its out of control. +04/02/2018,Musicians,@IGGYAZALEA,"@IggyPty @wdangst Yes, but the topic at hand isnt ""do you agree or disagree with non-traditional relationship dynam… https://t.co/msJjBZmbxF" +04/02/2018,Musicians,@IGGYAZALEA,@wdangst Im talking about love and sexuality in 2018; not my ex boyfriends. +04/02/2018,Musicians,@IGGYAZALEA,"@Budah96 Totally agree, i just think its funny so see so many conversations about gender and sexuality but not as m… https://t.co/BLeum9bjIf" +04/02/2018,Musicians,@IGGYAZALEA,@Azaleans_Israel I think thats an unfair thing to say. For me; its not something im personally open to in my relati… https://t.co/iHwZlAuPAI +04/02/2018,Musicians,@IGGYAZALEA,@SurvivingDevone no i order candy bars on there! +04/02/2018,Musicians,@IGGYAZALEA,@SurvivingDevone nothing +04/02/2018,Musicians,@IGGYAZALEA,"@IGGYAZMALEA yes, and you wont." +04/01/2018,Musicians,@IGGYAZALEA,"emotional co-dependancy is literally the scariest thing of all time. +Aliens could beam me into their space ship and id be less afraid." +03/31/2018,Musicians,@IGGYAZALEA,@CupcakKe_rapper @MiamiHooookah let your clit do the talking for you sis. +03/31/2018,Musicians,@IGGYAZALEA,@lcslanzzani these are not song lyrics... you're not in any danger of lack of surprise. 🙂 +03/31/2018,Musicians,@IGGYAZALEA,SAME. HELP?! https://t.co/TIe1ejEVXe +03/31/2018,Musicians,@IGGYAZALEA,RT @beccajj: @IGGYAZALEA https://t.co/TWqjWqKvid +03/31/2018,Musicians,@IGGYAZALEA,"I have legitimately drunk at least 8 bottles of water today. +Iam a fish." +03/30/2018,Musicians,@IGGYAZALEA,@IggysSaviors @AzaleaKingdom @ddlovato @KeshaRose @QuavoStuntin to clarify the qauestion asked was 'who has persona… https://t.co/yKC0a10lxt +03/30/2018,Musicians,@IGGYAZALEA,"@jasonlipshutz I really appreciate that you were fair to me, you gave me a voice and a chance to show i'm just human. Thanks Jason." +03/30/2018,Musicians,@IGGYAZALEA,Hey @MileyCyrus just wanted to say that im in completely love with your pink hair in these easter pics!!!! 😍 +03/30/2018,Musicians,@IGGYAZALEA,@ussefm @vulture IM GREAT ! 😊 +03/30/2018,Musicians,@IGGYAZALEA,"@vulture Its was because i suffered from depression, and im only writing this to you because you may be unaware but… https://t.co/EF4Oi0Q9U5" +03/29/2018,Musicians,@IGGYAZALEA,"big phantom grill, cook the streets like hibachi" +03/23/2018,Musicians,@IGGYAZALEA,NYC BTS Part 2. https://t.co/p9t0PcWr41 +03/23/2018,Musicians,@IGGYAZALEA,NYC BTS Part 1. https://t.co/LvFOhUthwM +03/23/2018,Musicians,@IGGYAZALEA,Im sorry Ale. But this is going public. https://t.co/I5m4ByD03G +03/23/2018,Musicians,@IGGYAZALEA,Probably a little too soon. https://t.co/WA3eBej98b +06/26/2018,Musicians,@TinieTempah,Nigeria vs Argentina tonight woooii +06/26/2018,Musicians,@TinieTempah,RT @Shaneduncan_: This is Peckham is out now / https://t.co/MnPG3KmebK https://t.co/DhC7Ivu1XB +06/25/2018,Musicians,@TinieTempah,Who’s Josh and how did he get into my wardrobe?? 🤔😂 +06/18/2018,Musicians,@TinieTempah,YES ENGLAND!!!!!!!!!!!!!! +06/13/2018,Musicians,@TinieTempah,TONIGHT! ⚡️ @ushuaiaibiza https://t.co/ILilxshmiW +06/13/2018,Musicians,@TinieTempah,Yesterday at the What We Wear ‘HAT TRICK’ Spring/Summer 19 Runway show in London. Love to everyone who came out to… https://t.co/ReqT1yWraG +06/12/2018,Musicians,@TinieTempah,What We Wear Spring/Summer 19 HAT-TRICK ⚽️ Many thanks to @Dailypaper_ & @FillingPieces on the collab runway music… https://t.co/xK5k5baYDW +06/10/2018,Musicians,@TinieTempah,LOND0N FASHI0N WEEK!!! @whatwewear__ M0NDAY 5PM!!!!!!! +06/10/2018,Musicians,@TinieTempah,Money heist on Netflix has got me moving like a squatter that don’t wanna leave the house. +06/06/2018,Musicians,@TinieTempah,Praise the Lord mama raised me right. Disturbing Ibiza opening party tonight! +05/28/2018,Musicians,@TinieTempah,Big up that guy from Mali that did the impossible in Paris the other day. I thought I was fit boy. +05/07/2018,Musicians,@TinieTempah,"RT @JmeBBK: CHILDISH GAMBINO + +https://t.co/Hzq29apjJS" +05/04/2018,Musicians,@TinieTempah,Minds clearer than ever. Heart’s purer than ever. +04/28/2018,Musicians,@TinieTempah,I miss @SIRSPYRO https://t.co/cDSJgEbBSc +04/28/2018,Musicians,@TinieTempah,"RT @HardyCaprio: Hardy Caprio - Naij +https://t.co/kV9efpsy8L + +warming up https://t.co/Mkb4xLb732" +04/24/2018,Musicians,@TinieTempah,Maybach SUV 😩🤤 +04/19/2018,Musicians,@TinieTempah,This is too sick bro @Dynamomagician https://t.co/MTSTEAAKcy +04/19/2018,Musicians,@TinieTempah,Watched Caroline or change at the Hampstead Theatre last night. Everyone needs to go watch it! +04/06/2018,Musicians,@TinieTempah,https://t.co/pq1otSPLWF https://t.co/KlfxMZgu2f +04/05/2018,Musicians,@TinieTempah,RT @BritishGQ: An exclusive first look at @tinietempah new @whatwewear__ collection. https://t.co/FQJTZxfieT +04/05/2018,Musicians,@TinieTempah,"48 people murdered in London already in 2018. My heart goes out to all their families and to the youts, don’t waste… https://t.co/jn9OfSxa1x" +03/27/2018,Musicians,@TinieTempah,"Shudda been on my way to Hong Kong for @ArtBasel right now, I know it’s gonna be so sick" +03/26/2018,Musicians,@TinieTempah,🔥🔥🔥🔥🔥 https://t.co/MzkBe3aKTA +03/17/2018,Musicians,@TinieTempah,Happy St Patrick’s Day. 🙏🏾🍀🇳🇬🇮🇪 +03/16/2018,Musicians,@TinieTempah,"RT @yxngbane: Out now!!! I need every1 to go crazy wit it! #Vroom we go again!! + +https://t.co/AjnyHiEEmp + +❤💎💫 https://t.co/Rb1c9dGgeg" +03/16/2018,Musicians,@TinieTempah,RT @wizkidayo: Smash on smash on smash!🔥🔥 +03/15/2018,Musicians,@TinieTempah,DXB!!!! 🇦🇪 +03/15/2018,Musicians,@TinieTempah,RT @Not3sofficial: NEW MUSIC VIDEO ALERT 🚨 Out In A Piece... Myself ft @MaleekBerry- SIT BACK DOWN 🤙🏾 More Tunes Out Soon https://t.co/NUxN… +03/14/2018,Musicians,@TinieTempah,RT @MusicWeek: 'It's like a brand new day': Tinie Tempah's hopes for the next generation of UK rap stars https://t.co/KvXmTQckO8 [📷 @paul_h… +03/12/2018,Musicians,@TinieTempah,In the flesh. https://t.co/ihzncPFCoO +03/12/2018,Musicians,@TinieTempah,God has blessed me and my family abundantly. All praise to the most high +03/05/2018,Musicians,@TinieTempah,RT @1crazysingh: Last week we were honoured to be asked by @TinieTempah to support the ww.wear pop up store at… https://t.co/yPk0jRjk0s +03/05/2018,Musicians,@TinieTempah,RT @Not3sofficial: The internet misleads the blind and the sheep 🐑 +03/02/2018,Musicians,@TinieTempah,RT @Drilloski_hs: Loski - cool kid Out now 🌪🌪 https://t.co/PGLuh8k3VX https://t.co/NLxugKc6cs +03/01/2018,Musicians,@TinieTempah,A2 sold out KOKO tonight yo!!! @A2Artist 👏🏾💪🏾 +03/01/2018,Musicians,@TinieTempah,"RT @BritishGQ: Model, activist and businesswoman @NaomiCampbell and breakthrough grime artist @Skepta talk race, sex, love and black power…" +03/01/2018,Musicians,@TinieTempah,"RT @Santandave1: 465,000 in a day. Thank you all for my most viewed video in 24 hours." +02/27/2018,Musicians,@TinieTempah,RT @Santandave1: Dave- Hangman Out Now https://t.co/MYtEvbVE7M +02/26/2018,Musicians,@TinieTempah,Save the date. 28/02/18 @whatwewear__ https://t.co/KyF4bc4D9l +02/22/2018,Musicians,@TinieTempah,"RT @HardyCaprio: First release of the year... + +Hardy Caprio - Rapper + +cc: @CallMeTheKidd @YomsTV + +https://t.co/7ul1AVf1QW https://t.co/L8…" +02/22/2018,Musicians,@TinieTempah,"RT @Not3sofficial: April 17th is My Birthday and The London date to my tour in KOKO, Camden. For the sake of the pain my mum went through o…" +02/21/2018,Musicians,@TinieTempah,@TheNotoriousMMA @mcgregorsfast 🤣🤣🤣 +02/21/2018,Musicians,@TinieTempah,RiRis 30!! Time flies when you’re enjoying life.. birthday blessings! @rihanna +02/20/2018,Musicians,@TinieTempah,"Growing up I didn’t see many films where the protagonists were the same skin tone as me especially, a super hero mo… https://t.co/K09NdUK6KG" +02/17/2018,Musicians,@TinieTempah,Manchester tonight! Eubank Jr Vs Groves 💥 +02/08/2018,Musicians,@TinieTempah,Shed your skin +02/04/2018,Musicians,@TinieTempah,Spoke too soon. +02/03/2018,Musicians,@TinieTempah,Emirates is levels man. Some of these other airlines need to step their game up..quickly! +02/02/2018,Musicians,@TinieTempah,Robo ske ske robo ske ske +02/02/2018,Musicians,@TinieTempah,🏆 https://t.co/O5e35033xV +02/02/2018,Musicians,@TinieTempah,RT @BigTobzsf: #StillWinning out right now ! https://t.co/Fzmoq6i0wj https://t.co/vxvLbcMwcL +02/02/2018,Musicians,@TinieTempah,Dubai we back!!!! Disturbing Dubai tonight!!! @whitedubaiclub https://t.co/3YeMtCtriA +01/28/2018,Musicians,@TinieTempah,You shudda said Hi 👋🏾 🤣 https://t.co/ziKn4Sz4b9 +01/26/2018,Musicians,@TinieTempah,RT @Not3sofficial: I JUST GOT THE CALL......SOLD OUT TOUR IN 15 MINUTES 😩 +01/23/2018,Musicians,@TinieTempah,RT @Not3sofficial: Proud to announce my second headline UK tour!! Tickets on sale from Friday at 10am 💥https://t.co/76Fy3Pz3tT 🤘🏾3️⃣ https:… +01/23/2018,Musicians,@TinieTempah,I need to start watching stranger things them little kids are everywhere! +01/22/2018,Musicians,@TinieTempah,You like that song by Yxng Bane & Kojo so I wrote a tune for you.. +01/20/2018,Musicians,@TinieTempah,Paris. +01/15/2018,Musicians,@TinieTempah,Wet January. +01/13/2018,Musicians,@TinieTempah,.@dolcegabbana Live Stream Now. +01/08/2018,Musicians,@TinieTempah,💛 https://t.co/w7dxv3kJp5 +01/08/2018,Musicians,@TinieTempah,"RT @whatwewear__: LOOK 1, 2, 3, 4 #AW18 #REALWORLD #WHATWEWEAR https://t.co/6H3RqlDkJQ" +01/04/2018,Musicians,@TinieTempah,Casting! @whatwewear__ +01/01/2018,Musicians,@TinieTempah,Back to the future! +12/31/2017,Musicians,@TinieTempah,Stepping into 2018 like.. https://t.co/AT5B5X9Sld +12/31/2017,Musicians,@TinieTempah,"RT @Not3sofficial: Not3s X Mabel - My Lover Remix Video Out Now 3️⃣💯💪🏾 +https://t.co/wL0XXh1YNz" +12/27/2017,Musicians,@TinieTempah,"RT @MayorofLondon: As a proud feminist at City Hall, I’m committed to taking real action to tackle gender inequality in London in 2018 - an…" +12/26/2017,Musicians,@TinieTempah,Happy Boxing Day from Barbados! X +12/25/2017,Musicians,@TinieTempah,Merry Christmas to all the fans. R.I.P to my dear friend Daniele. +12/21/2017,Musicians,@TinieTempah,Time flies on instagram boy. +12/17/2017,Musicians,@TinieTempah,This Bangs! ❄️❄️❄️ https://t.co/XKCVvFotLc @Official_Romzy +12/15/2017,Musicians,@TinieTempah,"RT @SpotifyUK: Forever is the new track by @sigmahq, feat. @QuavoStuntin, @TinieTempah, @yxngbane, & @SebastianKole. +Listen now. +https://t.…" +12/15/2017,Musicians,@TinieTempah,.@fredo @Not3sofficial ❄️❄️❄️❄️ https://t.co/nLtvFhayq1 +12/13/2017,Musicians,@TinieTempah,Ed Sheeran has clocked the game. Eminem and B in the same month. Madness. ✅✅✅ +12/13/2017,Musicians,@TinieTempah,Put God first. +12/13/2017,Musicians,@TinieTempah,RT @complex_uk: Not3s (@Not3sofficial) is up next: https://t.co/o7oT63SiY1 https://t.co/EjmJxhGxo5 +12/11/2017,Musicians,@TinieTempah,I’m hungry. +12/10/2017,Musicians,@TinieTempah,Ice cream in the snow ❄️❄️❄️ +12/08/2017,Musicians,@TinieTempah,RT @BritishGQ: Take style cues from @TinieTempah and don a shearling coat to stay warm and dapper at your black tie Christmas events. https… +12/07/2017,Musicians,@TinieTempah,"RT @donaeo: You can watch my new video “My Team” now +Click Here : https://t.co/DaxE2XE2D1 https://t.co/a9VtdJjSQ5" +12/07/2017,Musicians,@TinieTempah,Available Everywhere @JBLaudio ⚡️ https://t.co/gxylnytnSo +12/07/2017,Musicians,@TinieTempah,https://t.co/nw7GmLYIvj 🎁 +12/05/2017,Musicians,@TinieTempah,Great day raising money @ICAPCharityDay supporting @centrepointuk and homeless young people in the UK 🇬🇧 https://t.co/7af9F99hWR +12/05/2017,Musicians,@TinieTempah,"RT @Burberry: .@Stormzy1 dressed in a @Burberry tuxedo with @TinieTempah in @Burberry Tartan trousers, outerwear and Topstitched Derby shoe…" +12/03/2017,Musicians,@TinieTempah,Disturbing Manchester. 🚨 2/12/17 @Not3sofficial @DanielSturridge @Gfrsh @BigTobzsf https://t.co/wwTlt7aXCw +11/29/2017,Musicians,@TinieTempah,Good luck to everyone at the @MOBOAwards tonight! +11/28/2017,Musicians,@TinieTempah,Maybach 😍😍😍 @MercedesBenzUK +11/28/2017,Musicians,@TinieTempah,RT @DisturbingLDN: Big congratulations to @yxngbane for being listed on the official @bbcmusic #Soundof2018 longlist. This is only the star… +11/28/2017,Musicians,@TinieTempah,RT @JmeBBK: Stunting on your headteacher. +11/27/2017,Musicians,@TinieTempah,Try to live the kind of life someone might wanna make a movie about one day. Make your mark. +11/25/2017,Musicians,@TinieTempah,🙌🏾🙌🏾🙌🏾 https://t.co/ipPhWxUMTT +11/24/2017,Musicians,@TinieTempah,Happy Thanksgiving American family. +11/23/2017,Musicians,@TinieTempah,New drop tomorrow. https://t.co/nw7GmLYIvj @whatwewear__ https://t.co/NKB34q6q6L +11/23/2017,Musicians,@TinieTempah,👏🏾🙏🏾❤️ https://t.co/hNE5nxzhWA +11/21/2017,Musicians,@TinieTempah,RT @Fahim__k: No Drama is a pure banger 💪@iAmShakka @Not3sofficial @TinieTempah +11/20/2017,Musicians,@TinieTempah,Congrats @NiallOfficial on winning an American Music Award. 💪🏾🇬🇧 +11/19/2017,Musicians,@TinieTempah,"RT @FuseODG: Boa Me Official Video OUT NOW + +https://t.co/INyVYvR5T2 + +Watch, Enjoy and Share 🙏 + +@edsheeran +@mugeezxmugeez +@killbeatz + +#Ne…" +11/17/2017,Musicians,@TinieTempah,Let’s go my G! 👑🙏🏾💪🏾 @Not3sofficial 📝📝📝 #TAKENOT3S https://t.co/2bB6Tv4EcO +11/14/2017,Musicians,@TinieTempah,New Joint from my bro. @Reblah_Artist https://t.co/Jxx47URbeB +11/14/2017,Musicians,@TinieTempah,"RT @TheBugzyMalone: Man like Big Shaq in the 0161 🔥 +Watch full video >>> https://t.co/54PYN2nJ3Q @MichaelDapaah https://t.co/po4JhSn9S3" +11/13/2017,Musicians,@TinieTempah,I got four hours to kill in Trindad and Tobago. Where the roti spots at? +11/13/2017,Musicians,@TinieTempah,Santiago has been vibey. +11/12/2017,Musicians,@TinieTempah,RT @AlexAdeosun: Always good to have little victories that let you know you’re making progress! Catch myself alongside @Leomie_Anderson and… +11/12/2017,Musicians,@TinieTempah,💥 https://t.co/MvVk1z8g9j +11/11/2017,Musicians,@TinieTempah,The other night at @IkoyiLondon 💉❤️ https://t.co/r8IZlIHUll +11/10/2017,Musicians,@TinieTempah,RT @officialAvelino: Proud 2 present the 'No Bullshit' the playlist. I put my heart & soul into this shit & it made gr8ness. 1 Love https:/… +11/10/2017,Musicians,@TinieTempah,"RT @yxngbane: HBK D.TOUR|@yxngbane x @dopechef collab tee dropping Monday 13th November 8PM on https://t.co/hxXmlo88J7 + +In Distressed Or Re…" +11/05/2017,Musicians,@TinieTempah,My lil bro just hit another MILLION views with 'My Lover' @Not3sofficial 👏🏾 https://t.co/vap4uokcXa +11/03/2017,Musicians,@TinieTempah,RT @Santandave1: Super happy to say Game Over is finally out. Listen to it here. https://t.co/jPTk11wnkq +11/03/2017,Musicians,@TinieTempah,You've gotta give it to the guy. Hats off to you man. Definitely one for the book collection. https://t.co/WIvt8kcUxU +11/02/2017,Musicians,@TinieTempah,"'If I hit it one time Ima pipe her, if it hit it two times then I like her..'" +10/31/2017,Musicians,@TinieTempah,Working towards that Billion. https://t.co/2OGPTKK29J +10/31/2017,Musicians,@TinieTempah,Man like Oluwatobi! @BigTobzsf https://t.co/CLbDx9kC9F +10/27/2017,Musicians,@TinieTempah,It wasn't me. https://t.co/ZoY0Jn3xYT +10/27/2017,Musicians,@TinieTempah,"RT @YungenPlayDirty: *NEW VIDEO* + +YUNGEN FEAT MR EAZI - ALL NIGHT 🌚🌚 + +https://t.co/nMQF9kQaXI + +@mreazi + +RT!! + +AVAILABLE TO BUY AND STREAM…" +10/25/2017,Musicians,@TinieTempah,"RT @marshmellomusic: Never be afraid to create what you want to create. What one person may dislike, ten others may love ❤" +10/24/2017,Musicians,@TinieTempah,That's my cousin on the Phone. Wo Wo Wo +10/24/2017,Musicians,@TinieTempah,😂😂 https://t.co/oAnPxf21La +10/24/2017,Musicians,@TinieTempah,I'm so proud of this guy. 4 years on. @je1bc 💪🏾🙏🏾 https://t.co/MYkZ5sjKM7 +10/24/2017,Musicians,@TinieTempah,💪🏾💪🏾💪🏾 https://t.co/wBancr7Asd +10/23/2017,Musicians,@TinieTempah,Pop immigrants. +10/22/2017,Musicians,@TinieTempah,Wrist cudda got froze. ❄️❄️❄️ +10/22/2017,Musicians,@TinieTempah,Deeply profound. She might be onto something. 😂😅 https://t.co/hPTNpJIIGm +10/22/2017,Musicians,@TinieTempah,Celebrate your happiness & achievements with your ppl and enjoy your success in peace that's what Its about yo. +10/22/2017,Musicians,@TinieTempah,"RT @yxngbane: #FROZE. OUT TONIGHT 6PM +LETS GO CRAZY!!! +🇬🇧💎🇬🇧!! +VIA @linkuptv https://t.co/LPvOo3uHsg" +10/19/2017,Musicians,@TinieTempah,"RT @GRMDAILY: 💪 @Callmecadet takes names in ""RMF"" freestyle + +➡️ https://t.co/cVejtSPhc1 https://t.co/sKcpS2gaAE" +10/19/2017,Musicians,@TinieTempah,At lot of institutions teach ppl in their workforce to be assholes or to feel entitled because of a position. I'm doing things so different +10/19/2017,Musicians,@TinieTempah,Voting for the whole gang at the @MOBOAwards this year. Let's bring home some trophies 💪🏾🏆 +10/13/2017,Musicians,@TinieTempah,Amsterdam with the gang. +10/13/2017,Musicians,@TinieTempah,🏌🏾🏌🏾🏌🏾 https://t.co/sL3UDvarus +10/13/2017,Musicians,@TinieTempah,🙏🏾 https://t.co/YQT2BK9ZlP +10/11/2017,Musicians,@TinieTempah,Mental health is real. +10/07/2017,Musicians,@TinieTempah,"RT @ajtracey: HAPPY SECURE THE FUCKING BAG DAY! 🎒 + +https://t.co/uPFcRVOn0M https://t.co/0dkR4b0Xo9" +10/06/2017,Musicians,@TinieTempah,At @OneYoungWorld in Bogota. Tune in here from 10pm BST for my keynote and Q&A. https://t.co/LVb9ISzziJ +10/06/2017,Musicians,@TinieTempah,Oh shit!!! #BESTIE is officially in the top 10 congratulations brothers @YungenPlayDirty @yxngbane here's to many m… https://t.co/H12P20QpOt +10/05/2017,Musicians,@TinieTempah,RT @DisturbingEvent: Manchester… We’ll be bringing the🔥to @VicWarehouse on Sat 2nd Dec! Tickets here 👉https://t.co/4V3dGxyRSw https://t.co/… +10/04/2017,Musicians,@TinieTempah,"Just touched down in Bogota, Colombia to talk to some of our generations future leaders. @OneYoungWorld #YOUTH2017 🇨🇴" +10/03/2017,Musicians,@TinieTempah,Thanks. 👍🏾 https://t.co/SEmyFC7A8t +10/03/2017,Musicians,@TinieTempah,@ClareParslow That's my good deed done for the week. What was the question? +10/03/2017,Musicians,@TinieTempah,"RT @Y2SHAF: ""Granddad"" is a funny way of spelling terrorist https://t.co/RX72IA4LNR" +10/03/2017,Musicians,@TinieTempah,RT @DGGroupUK: 8 weeks to go 4 the party of all time & final race of season.Headlining Sat @TinieTempah @djcharlesy & Sun @AleshaOfficial @… +10/02/2017,Musicians,@TinieTempah,RT @DisturbingLDN: 🔊Seven years of Disc-Overy. What was your favourite track from @TinieTempah's debut album? https://t.co/KN7PEVC5Rl +10/02/2017,Musicians,@TinieTempah,I hear that. 😌 https://t.co/btVpUaCwsS +10/02/2017,Musicians,@TinieTempah,Damn. What is this world coming to? Prayers go out to anyone affected by the shootings in Las Vegas. +10/02/2017,Musicians,@TinieTempah,The insane help keep the sane sane. +10/01/2017,Musicians,@TinieTempah,Free up all my aunties and uncles. +10/01/2017,Musicians,@TinieTempah,Nigerian Eagle. 🦅🇳🇬 Happy Independence Day to all my people dem. +09/30/2017,Musicians,@TinieTempah,From people who aren't genuine yes. https://t.co/KR55bxcCR2 +09/30/2017,Musicians,@TinieTempah,"I can't stop I'm a busy man, holding fire for hella man." +09/29/2017,Musicians,@TinieTempah,"RT @Yungfumelitm: "" Yung Fume Alot On My Back "" 😰 + +OUT NOWWWWWW ................. + +@linkuptv - https://t.co/EvNpYCJWCz. https://t.co/m8KaYj…" +09/27/2017,Musicians,@TinieTempah,Vote for me to win best Video at this years @GRMDAILY awards for my 'Lightwork' video if you feel like it. Thanks https://t.co/8RuxzTNCx7 +09/27/2017,Musicians,@TinieTempah,RT @thebobpalmer: @ShortList I talked to @TinieTempah about his favourite trainers of the last ten years https://t.co/mCQcKJnkY1 +09/26/2017,Musicians,@TinieTempah,RT @MichaelDapaah: *ATTENTION* Mans Not Hot -is officially OUT ! Click this link 👉🏾: https://t.co/WnqTAZo1ij Thank you my G's in advance #M… +09/26/2017,Musicians,@TinieTempah,RT @robynxcole: @TinieTempah @whatwewear__ 😎 #whatwewear https://t.co/mDaVfzd0xr +09/26/2017,Musicians,@TinieTempah,".@whatwewear__. For a chance to WIN a pair of the new socks in black, follow the page and tweet me a screenshot wit… https://t.co/d0DdTqzhGf" +09/26/2017,Musicians,@TinieTempah,. @VanessaKingori now I'm gonna get onto twitter about making sure they give you that blue tick! +09/26/2017,Musicians,@TinieTempah,Superstar Status. 👑 Congratulations @VanessaKingori @BritishVogue https://t.co/upEdFVXWJX +09/25/2017,Musicians,@TinieTempah,RT @je1bc: A year ago I emailed the CEO of @NandosUK about connecting with more young people! Today we launched a project at the HQ! So tha… +09/25/2017,Musicians,@TinieTempah,.@kidekomusic X Tinie Tempah X @iambeckyg… #DUMDUM. Out NOW. Check it out here. https://t.co/0QjRTRQir2 https://t.co/XoVm07Tkbp +09/25/2017,Musicians,@TinieTempah,There can never be another me.. just like there can never be another you. +09/22/2017,Musicians,@TinieTempah,My first Friday off in a while. Feels weird. #IbizaBlues +09/22/2017,Musicians,@TinieTempah,Big love to @Scott_Mills for dropping #DUMDUM. @kidekomusic @iambeckg @BBCR1 +09/21/2017,Musicians,@TinieTempah,RT @DisturbingEvent: We've made some amazing memories this summer… https://t.co/7Vacl23emw +09/21/2017,Musicians,@TinieTempah,#FR32 🎈 +09/20/2017,Musicians,@TinieTempah,RT @wizkidayo: Ft @1future https://t.co/Rw9tEDqM1i +09/20/2017,Musicians,@TinieTempah,"#DisturbingIbiza 2017. 15 shows. 70 artists. 50,000 people. Same again next year? https://t.co/ZnjICqR4AQ" +09/19/2017,Musicians,@TinieTempah,RT @kidekomusic: Pre-save my new single w/ @TinieTempah and @iambeckyg on @Spotify! Might get yourself 2 tix to @WHP_Mcr 😉 https://t.co/Seq… +09/19/2017,Musicians,@TinieTempah,@MisguidedMinx You sure can. +09/19/2017,Musicians,@TinieTempah,Anyone can be anything they want in this world...especially on Instagram. +09/18/2017,Musicians,@TinieTempah,.@kidekomusic X Tinie Tempah X @iambeckyg… #DUMDUM. Out on Friday. https://t.co/HBoUajdVoN +09/15/2017,Musicians,@TinieTempah,#DisturbingIbiza https://t.co/yC57l6Je8u +09/15/2017,Musicians,@TinieTempah,One last time... Times for tonight. #DisturbingIbiza. Who are you most excited to see? https://t.co/9Q2ZmXiXIA +09/15/2017,Musicians,@TinieTempah,Follow me to #DisturbingIbiza… https://t.co/zpaKFUCNab +09/13/2017,Musicians,@TinieTempah,RT @DisturbingEvent: THIS is how we're lining up for our FINAL #DisturbingIbiza this Friday... IT's MUAD 🔥👇 https://t.co/X23pEBC7qb +09/13/2017,Musicians,@TinieTempah,"RT @TheBugzyMalone: Bugzy Malone - We Don't play (Official Video) +https://t.co/5h4g9nlxaB 🎞" +09/13/2017,Musicians,@TinieTempah,"RT @realmostack: Not3s x MoStack - Celebration. + +VIDEO OUT NOW ON GRM DAILY. https://t.co/TRgSvMWE7O" +09/12/2017,Musicians,@TinieTempah,"RT @DisturbingEvent: When it's 5am in Ibiza and your mate says 'let's head back' ! "" +@TinieTempah https://t.co/vXccW7oF1C" +09/11/2017,Musicians,@TinieTempah,RT @LethalBizzle: New Dench Fragrance advert. RT for a chance to win a signed bottle 😆💥🌹👊🏾 https://t.co/I6zkwiCLeI +09/10/2017,Musicians,@TinieTempah,Narcos S3 +09/09/2017,Musicians,@TinieTempah,Penultimate night #DisturbingIbiza Happy birthday @djcharlesy. One of my closest friends for the last 9 years. https://t.co/5Vhkdz5HvL +09/09/2017,Musicians,@TinieTempah,24hrs +09/09/2017,Musicians,@TinieTempah,RT @joel_duncan89: Last night was a movie @TinieTempah @Kwame_Augustine @DrewMula #disturbingIbiza https://t.co/DTa8Isxfxq +09/08/2017,Musicians,@TinieTempah,RT @DisturbingEvent: 💥💥 @TinieTempah shutting down Ushuaia #DisturbingIbiza💥💥 ... Who's joining us next week at our last #DisturbingIbiza e… +09/08/2017,Musicians,@TinieTempah,Here are the set times for the Penultimate #DisturbingIbiza today. Who are you excited to see the most. Vote with t… https://t.co/S8eOh7KRgY +09/08/2017,Musicians,@TinieTempah,Big love to everyone who's bought YOUTH on vinyl. Still chance to win one by following my @Spotify playlist here.… https://t.co/5OkXAu9lqM +09/07/2017,Musicians,@TinieTempah,"RT @OneAcen: U might be the one I been 👀 for! + +#Verified ✔️🦋 +prod. by me & @CallMeTheKidd +https://t.co/fbcMcXbAgA + +Gang pleaseee RT & enjo…" +09/06/2017,Musicians,@TinieTempah,RT @MOBOAwards: So much excellence in one pic 🙌🏾🙌🏾🙌🏾 https://t.co/C5WnH3JpwW +09/06/2017,Musicians,@TinieTempah,RT @cnbcipr: Don't forget to tune into #Trailblazers tonight on @CNBCi at 10PM BST. @TaniaBryer is in #London with @TinieTempah https://t.c… +09/06/2017,Musicians,@TinieTempah,RT @mrdavidhaye: Always good catching up with my brother @TinieTempah 😎👌🏾 https://t.co/VnsnDMFVl3 +09/06/2017,Musicians,@TinieTempah,https://t.co/pd2RKOWxq0 👔 https://t.co/JT48RcakBO +09/05/2017,Musicians,@TinieTempah,RT @DisturbingEvent: Your girl watching our ting 😏 #DisturbingIbiza WEEK 14 line-up... https://t.co/0RCrnETLtY +09/05/2017,Musicians,@TinieTempah,Join me and @TaniaBryer on Wednesday night on @CNBCi's. Trailblazers. Tune into Sky 505 from 10pm. https://t.co/c265SlqP3e +09/04/2017,Musicians,@TinieTempah,RT @cnbcipr: Don't miss a very special episode of #Trailblazers this Wednesday at 10PM BST on @CNBCi... @TaniaBryer meets music legend @Tin… +09/04/2017,Musicians,@TinieTempah,UnFazed +09/04/2017,Musicians,@TinieTempah,Gibraltar was sick @MTVUK 🌪🌪 https://t.co/rDVktndlEf +09/04/2017,Musicians,@TinieTempah,"RT @fusionfest: Music, events, fashion and vehicles - is there anything @TinieTempah can't do?! See what he had to say in his interview wit…" +09/04/2017,Musicians,@TinieTempah,RT @LizzieBriggerz: I've waited over ten years to see @TinieTempah live and he did not disappoint 🔥😍🔥#bestofgib +09/04/2017,Musicians,@TinieTempah,RT @MTVMusicUK: IT 👏🏻 WENT 👏🏻 OFF for @TinieTempah at @MTV_Presents Gibraltar Calling! 🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/7EtSEm51Am +07/01/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUXGr1 https://t.co/jYzFm8Sq6G +06/29/2018,Musicians,@chrisbrown,AUSTIN!!! WE HERE! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/s60hp1xrK1 +06/29/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/xTbRJ14G8t +06/29/2018,Musicians,@chrisbrown,"Woodlands, TX TONIGHT! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/tAdZQbfppb" +06/28/2018,Musicians,@chrisbrown,When GOD knows what he’s doing!❤️ IM SO IN LOVE WITH THIS LITTLE GIRL. Thank YOU https://t.co/yhu8FwKbmX +06/26/2018,Musicians,@chrisbrown,https://t.co/mg37Mp7HQ5 +06/26/2018,Musicians,@chrisbrown,https://t.co/qCv0bJ6FaU +06/26/2018,Musicians,@chrisbrown,https://t.co/4IRtjBkVRd +06/26/2018,Musicians,@chrisbrown,Do shit yourself so if you ever fail you can be ok with it because you have given it your all. LEARN AS FAST OR AS… https://t.co/f7xLGJkgya +06/24/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUXGr1 https://t.co/yv6dT3SoVh +06/22/2018,Musicians,@chrisbrown,RT @Vevo: This is the kind of Breezy we like to hear! Here's a quick addition to your #QuietStorm playlist for the night. Watch @chrisbrown… +06/22/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/7WHbYW6TbH +06/22/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUG52r https://t.co/yV2czay12Q +06/21/2018,Musicians,@chrisbrown,CONCORD TONIGHT! #HeartbreakOnAFullMoonTour https://t.co/fccn78riKK https://t.co/VfgLvNR2Mj +06/21/2018,Musicians,@chrisbrown,#TOMYBED VIDEO WORLD PREMIERE! @Vevo https://t.co/4hvSFUG52r +06/19/2018,Musicians,@chrisbrown,SEATTLE!!! First show is tonight! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/Ovn4H11MRS +06/17/2018,Musicians,@chrisbrown,#HOPEYOUDO. @Vevo https://t.co/jDDjJA0ioc +06/12/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/vLJjWVXvBx +06/12/2018,Musicians,@chrisbrown,“HOPE YOU DO” I hope you STREAM REQUEST DOWNLOAD PURCHASE https://t.co/jDDjJA0ioc +06/10/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/mcRpd9Fhui +06/08/2018,Musicians,@chrisbrown,#HOPEYOUDO. https://t.co/jDDjJAhTfK +06/08/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/SmlN43e604 +06/07/2018,Musicians,@chrisbrown,RT @Shazam: .@chrisbrown always comes thru with the moves! 🔥 Watch his brand new music vid for #HopeYouDo now ---> https://t.co/HQmnTQ29S8… +06/06/2018,Musicians,@chrisbrown,RT @RCARecords: 🔥🔥 OUT NOW! The world premiere for @chrisbrown's #HopeYouDo 🔥🔥WATCH HERE>>> https://t.co/W6Xg4SDvRu https://t.co/LZomXipfRA +06/06/2018,Musicians,@chrisbrown,"RT @Vevo: ""Hope You Do"" is basically four minutes of @chrisbrown's best dance moves and we're here for it. 🙌🏽 https://t.co/8MyuEfbtRQ https…" +06/06/2018,Musicians,@chrisbrown,"RT @RIVETING_ENT: #HopeYouDo video out now! + +Directed by @chrisbrown + @DanielCzerni + +Produced by @RIVETING_ENT + +https://t.co/h9OYm6PJXC…" +06/06/2018,Musicians,@chrisbrown,https://t.co/DwpbluVesW +06/06/2018,Musicians,@chrisbrown,#HopeYouDo WORLD PREMIERE!!! @Vevo https://t.co/jDDjJAhTfK +06/06/2018,Musicians,@chrisbrown,https://t.co/DxlswETOiI +06/04/2018,Musicians,@chrisbrown,https://t.co/nhwLXH7joG +06/04/2018,Musicians,@chrisbrown,https://t.co/igGQZEyqu2 +06/03/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sFbHv5gBTS +06/02/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/gjt7D70W1o +06/02/2018,Musicians,@chrisbrown,https://t.co/nAnmYDES8l +05/31/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/pqRagWAVzf +05/31/2018,Musicians,@chrisbrown,https://t.co/kI6TDdjxUR +05/30/2018,Musicians,@chrisbrown,https://t.co/pNm6StART0 +05/30/2018,Musicians,@chrisbrown,Started the SUMMER off right! +05/30/2018,Musicians,@chrisbrown,RICK AND MORTY https://t.co/uUM3HbOj4I +05/28/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! https://t.co/fccn78riKK https://t.co/acCPfqqMxF +05/28/2018,Musicians,@chrisbrown,https://t.co/vZzK49FxMS +05/23/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/lSTAivDcQK +05/23/2018,Musicians,@chrisbrown,https://t.co/aHfiQPvtvX +05/22/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/dGxW6je1Zb +05/21/2018,Musicians,@chrisbrown,https://t.co/P9MOIc2sza +05/21/2018,Musicians,@chrisbrown,https://t.co/DzypC7Nh2Q +05/20/2018,Musicians,@chrisbrown,https://t.co/vc3jz07afs +05/20/2018,Musicians,@chrisbrown,Directing BTS with @RIVETING_ENT https://t.co/cplycku87D +05/19/2018,Musicians,@chrisbrown,THANK U TO THE FANS AND THE PEOPLE WHO LOVE WHAT WE CREATE! ❤️ https://t.co/vuGRuKKL4N +05/19/2018,Musicians,@chrisbrown,https://t.co/B70e0XUJC0 +05/19/2018,Musicians,@chrisbrown,RT @ellamai: *sings taina theme song* https://t.co/5dmQW2ygws +05/18/2018,Musicians,@chrisbrown,Think positive.... it will be what it will be. The goal is happiness! ❤️ https://t.co/MDDAHwS2CU +05/17/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/QCarmPObSb +05/17/2018,Musicians,@chrisbrown,Which city are you coming to?! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/oiqC3mJde0 +05/16/2018,Musicians,@chrisbrown,https://t.co/TnfgX3QQ5A +05/16/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/FWp3WyI7LK +05/15/2018,Musicians,@chrisbrown,https://t.co/PMf2llb7CD +05/14/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/LKUWHcNhef +05/14/2018,Musicians,@chrisbrown,HAPPY MOTHERS DAY! https://t.co/MzEoe74Nku +05/12/2018,Musicians,@chrisbrown,TOUR! #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/jLOrk3R0oj +05/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/KWCeVxCk9f +05/11/2018,Musicians,@chrisbrown,❤️💝❤️ https://t.co/WOwIpoLVoJ +05/09/2018,Musicians,@chrisbrown,SUMMER TOUR #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/D9uH53Br4n +05/09/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/taihC9flUT +05/08/2018,Musicians,@chrisbrown,Almost done. SUMMER TIME https://t.co/ABTyOqQvqc +05/08/2018,Musicians,@chrisbrown,We on some shit!!! 🔥🔥🔥🔥🔥 https://t.co/xe7fWUb1nx +05/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/ripjxP9KxE +05/06/2018,Musicians,@chrisbrown,SUMMER. #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/xG2vttmdAl +05/04/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/5EGsAcRMda +05/04/2018,Musicians,@chrisbrown,RT @Tee_Grizzley: One of my favorite songs https://t.co/mp6WevgT5D +05/03/2018,Musicians,@chrisbrown,GET YOUR TICKETS NOW! #HeartbreakOnAFullMoonTour! https://t.co/fccn78IU9k https://t.co/Q5mETZ2dEG +05/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/zMzSFW1zdA +05/03/2018,Musicians,@chrisbrown,DOUBLE DRAGONS https://t.co/6mZV6dZiJY +05/03/2018,Musicians,@chrisbrown,RT @JoynerLucas: They wanna see us dead... @chrisbrown https://t.co/qqdaPIaz8m +05/03/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour Tickets: https://t.co/fccn78IU9k https://t.co/WtQgyXw7Fg +05/02/2018,Musicians,@chrisbrown,#IDONTDIE @JoynerLucas https://t.co/JBEEX3m9PG +05/02/2018,Musicians,@chrisbrown,“I DONT DIE” IS OUT!!! Thoughts? https://t.co/KFfiunH8D6 +05/02/2018,Musicians,@chrisbrown,https://t.co/uKeEHY8TcU +05/01/2018,Musicians,@chrisbrown,Whenever u ready.... SO AM I🔥 https://t.co/rHAxGPWSfT +04/30/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/IIQWHhpYQj +04/30/2018,Musicians,@chrisbrown,https://t.co/MhiiDdEOLQ +04/30/2018,Musicians,@chrisbrown,GET YOUR TICKETS NOW! #HeartbreakOnAFullMoonTour! https://t.co/fccn78IU9k https://t.co/C6Nhb6Ox8s +04/29/2018,Musicians,@chrisbrown,Getting to it . https://t.co/MPPpG6e9P5 +04/29/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! Tickets: https://t.co/fccn78IU9k https://t.co/oBFkit3Agi +04/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/KKszkazhfD +04/25/2018,Musicians,@chrisbrown,JUST CANT WAIT TO BE KING 👑! ( in my simba voice) https://t.co/1NFgNSZx6k +04/24/2018,Musicians,@chrisbrown,❤️ LA https://t.co/hZLemvFRay +04/23/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! Tickets: https://t.co/fccn78IU9k https://t.co/xxTEqo1wpE +04/23/2018,Musicians,@chrisbrown,TEEN TITANZ OHB. EXPRESSION https://t.co/mMQliDtRUs +04/19/2018,Musicians,@chrisbrown,Be creative. LET NOTHING STOP YOU. Don’t put yaself in a box unless it’s your funeral! I’m thankful to have a team… https://t.co/mphiZQiHGZ +04/19/2018,Musicians,@chrisbrown,See what’s happening. LOVE YA TIME TO SHINE! #OHB https://t.co/nlbK3aWGb3 +04/18/2018,Musicians,@chrisbrown,🌊https://t.co/4Iq2qt9WVS https://t.co/NH93xrqSB3 +04/18/2018,Musicians,@chrisbrown,🙌 https://t.co/pDskAHXCZS +04/17/2018,Musicians,@chrisbrown,The BOYZ ARE BACK IN TOWN https://t.co/aC8XJPbk6U +04/17/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sRC4BVBzbY +04/16/2018,Musicians,@chrisbrown,‘I DON’T DIE’ video coming soon... @JoynerLucas https://t.co/giZdwIazb5 +04/16/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/Jzm427OYor +04/15/2018,Musicians,@chrisbrown,#Tempo https://t.co/2wOmw9FW5s https://t.co/1Ux6YJvloD +04/12/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/vwZ5pyvbir +04/10/2018,Musicians,@chrisbrown,Tickets available now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/GiUTFewsce +04/10/2018,Musicians,@chrisbrown,https://t.co/12t7KDse6Y +04/09/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/a72SNNh0k1 +04/09/2018,Musicians,@chrisbrown,YOU ARE MORE THAN WHO THEY WANT U TO BE https://t.co/cR8ICRKobJ +04/09/2018,Musicians,@chrisbrown,100 MILLION!! @lildickytweets #VevoCertified https://t.co/WQ64lwBuAA +04/08/2018,Musicians,@chrisbrown,❤️ https://t.co/d5M5dScG3l +04/06/2018,Musicians,@chrisbrown,RT @officialcharts: It's Freaky Friday! @lildickybeats and @chrisbrown's body swap collaboration claims Number 1 on this week's Official Si… +04/05/2018,Musicians,@chrisbrown,"RT @HERMusicx: I can’t wait for this summer! #HeartbreakOnAFullMoonTour tickets are available everywhere now! + +Visit https://t.co/RyFR710V…" +04/04/2018,Musicians,@chrisbrown,Tickets available now! #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/xSUblCIgNF +04/04/2018,Musicians,@chrisbrown,https://t.co/gJNy7VnqWn +04/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/i4rmSSfbAQ +04/03/2018,Musicians,@chrisbrown,New painting https://t.co/9M60jrCkAP +04/02/2018,Musicians,@chrisbrown,🙏🏽 https://t.co/8FkakQ2vfE +04/02/2018,Musicians,@chrisbrown,Which show are you going to?! #HeartbreakOnAFullMoonTour Tickets: https://t.co/fccn78riKK https://t.co/lrV9q7RcIv +04/02/2018,Musicians,@chrisbrown,RT @lildickytweets: My track “Freaky Friday (feat. Chris Brown)” made #TheBeats1List. Hear it on @Beats1 this week! https://t.co/W3HiyS8jsZ +04/01/2018,Musicians,@chrisbrown,Grab your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/TCqdc9InTJ +03/30/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/6sqIX8nEqD +03/30/2018,Musicians,@chrisbrown,TICKETS ARE AVAILABLE EVERYWHERE NOW! https://t.co/fccn78IU9k #HeartbreakOnAFullMoonTour https://t.co/9rrTVhLTD9 +03/28/2018,Musicians,@chrisbrown,PRESALE starts today! Enter presale code “HEARTBREAK” for exclusive early access to tickets for the tour.… https://t.co/kqQDEFF61M +03/28/2018,Musicians,@chrisbrown,"RT @LiveNation: JUST ANNOUNCED: @chrisbrown is heading out on the Heart Break On A Full Moon Tour with @6LACK, @HERMusicx, and @richthekid…" +03/27/2018,Musicians,@chrisbrown,https://t.co/2vHEssXV9u +03/27/2018,Musicians,@chrisbrown,"TOUR!!! Excited to be heading out on the road for the Heartbreak On A Full Moon Tour with @HERMusicx @6LACK, and… https://t.co/1ksDoSsmlz" +03/27/2018,Musicians,@chrisbrown,"RT @billboardhiphop: .@LilDickytweets scores his first #Hot100 top 10, as ""Freaky Friday,"" featuring @chrisbrown, debuts at No. 9! https://…" +03/26/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/bkML6SmmmO +03/25/2018,Musicians,@chrisbrown,#TEMPO https://t.co/2wOmw9FW5s +03/25/2018,Musicians,@chrisbrown,https://t.co/LVazVJvIS7 +03/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/m09daUK7tS +03/24/2018,Musicians,@chrisbrown,RT @billboardhiphop: .@lildickytweets' #FreakyFriday featuring Chris Brown is aiming for a top 20 #Hot100 debut https://t.co/nwTzfuMRDA htt… +03/23/2018,Musicians,@chrisbrown,https://t.co/g0E2WcGeFi +03/23/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/XB4bMGJRvg +03/23/2018,Musicians,@chrisbrown,https://t.co/cJlsxXl5tE +03/22/2018,Musicians,@chrisbrown,The GREATEST 🔥SQUAD LIT https://t.co/Ix842oJIJd +03/20/2018,Musicians,@chrisbrown,https://t.co/oDnAYmWc9b +03/20/2018,Musicians,@chrisbrown,Take time to recharge 👍🏾 https://t.co/yTWmncvLf9 +03/19/2018,Musicians,@chrisbrown,😂😂😂https://t.co/WQ64lwT5Za +03/19/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/iL2E3wxdM0 +03/17/2018,Musicians,@chrisbrown,555. 333. 11.11 https://t.co/SfUJlpeST5 +03/16/2018,Musicians,@chrisbrown,#FREAKYFRIDAY @lildickytweets https://t.co/WQ64lwBuAA +03/16/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9XwX0 +03/15/2018,Musicians,@chrisbrown,I woke up in @lildickytweets body??? 🧐 #FreakyFriday https://t.co/O2QIjTnknn +03/15/2018,Musicians,@chrisbrown,https://t.co/waOBnT81r1 +03/13/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s +03/13/2018,Musicians,@chrisbrown,A🎉 https://t.co/BrJgLmNO73 +03/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/6pfg6QRQDq +03/10/2018,Musicians,@chrisbrown,Can I switch up the #Tempo? https://t.co/2wOmw9XwX0 +03/10/2018,Musicians,@chrisbrown,Flyest 3year old On EARTH https://t.co/MbILUvzNO5 +03/10/2018,Musicians,@chrisbrown,👀 https://t.co/gSSW8qMvNn +03/09/2018,Musicians,@chrisbrown,RT @WorIdOfDancing: Rock Your Body 😍 https://t.co/raJCLr7Uy3 +03/08/2018,Musicians,@chrisbrown,#GIRLPOWER #tempotakeover 😳🔥🔥🔥🔥🔥https://t.co/2wOmw9FW5s https://t.co/sd697Xhbd8 +03/07/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s https://t.co/Aq08sEmvwS +03/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/yJ5RszoFKK +03/06/2018,Musicians,@chrisbrown,MOOD https://t.co/FecS06uWKj +03/05/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9XwX0 +03/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/B1P9icLh2k +03/03/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s +03/02/2018,Musicians,@chrisbrown,#TEMPO VIDEO WORLD PREMIERE!!! Available everywhere now. #TempoTakeover https://t.co/2wOmw9XwX0 +03/01/2018,Musicians,@chrisbrown,TEMPO VIDEO WORLD PREMIERE COMING FRIDAY #tempotakeover https://t.co/QC2glx490n +03/01/2018,Musicians,@chrisbrown,https://t.co/sAmpYFv8xF +02/27/2018,Musicians,@chrisbrown,.@JakeMiosge :PHOTO https://t.co/Ko5oI3mrpU +02/26/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/g3WemzBqEd +02/25/2018,Musicians,@chrisbrown,#STRANGERTHINGS @JoynerLucas https://t.co/JSl2RbSc4y +02/25/2018,Musicians,@chrisbrown,"“ STRANGER THINGS “ X @JoynerLucas on @AppleMusic, @Spotify & @TIDAL NOW! https://t.co/Yvgw8T8kMt" +02/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/uCZhUMVgF3 +02/24/2018,Musicians,@chrisbrown,💔🌕 https://t.co/DSgT1oHFQG https://t.co/D96U7kfabS +02/22/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/LpHBYu1FzV +02/22/2018,Musicians,@chrisbrown,Clone 👽 https://t.co/jnxOxxaiLu +02/19/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/pmHKv7Rz2X +02/19/2018,Musicians,@chrisbrown,LOVED THE FILM https://t.co/YZkW3O07TZ +02/18/2018,Musicians,@chrisbrown,BRUDDAH https://t.co/BTh3kG8urY +02/18/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/bydNPWFgc5 +02/18/2018,Musicians,@chrisbrown,https://t.co/ejAxiYepd1 +02/16/2018,Musicians,@chrisbrown,https://t.co/zMd4cNax2g +02/14/2018,Musicians,@chrisbrown,RT @RealRemyMa: #MELANINMAGICVIDEO out now! @chrisbrown https://t.co/mcPfGAibS9 https://t.co/MApRMOTxCI +02/13/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/V7wtvHkdTu +02/13/2018,Musicians,@chrisbrown,SAY WHAT U WANT... really wouldn’t matter at this point. ❤️🏆. GREATNESS DEFENDS AND SPEAKS FOR ITSELF https://t.co/nCJfHwComY +02/12/2018,Musicians,@chrisbrown,https://t.co/dLl3sQDDjt +02/12/2018,Musicians,@chrisbrown,ALLSTAR @snoopdogg they gone get this work! https://t.co/9v97s7Hlea +02/11/2018,Musicians,@chrisbrown,Excited for the THINGS TO COME https://t.co/moY95SQ1lz +02/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/duYlYFB4OT +02/10/2018,Musicians,@chrisbrown,TEMPO.... COMING SOON 😏 https://t.co/La7ACqiwIm +02/09/2018,Musicians,@chrisbrown,NAME THIS GROUP.... https://t.co/bRSDot7uVc +02/09/2018,Musicians,@chrisbrown,"Just thinking.... A CRAZY WORLD TOUR would BEYONCE, RIHANNA, BRUNO MARS, CHRIS BROWN. “2 for 2”. And if y’all deci… https://t.co/7RTls3wnT5" +02/09/2018,Musicians,@chrisbrown,MUSIC ALL IN MY HEAD... can’t record fast enough “ SIDE NIGGA OF THE YEAR” 😂 https://t.co/pMedznwVeX +02/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/UXFEwHrkE0 +02/07/2018,Musicians,@chrisbrown,😳 https://t.co/wDyWHaRopp +02/06/2018,Musicians,@chrisbrown,#TEMPOTAKEOVER https://t.co/FsWyJDfgio +02/05/2018,Musicians,@chrisbrown,LATE NIGHT https://t.co/qn4e6s2er3 +02/04/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/iTXlYnO2mi +02/03/2018,Musicians,@chrisbrown,💔🌕 https://t.co/DSgT1oHFQG https://t.co/d1hyfn39eG +02/03/2018,Musicians,@chrisbrown,RT @jtimberlake: Man of the Woods... out now! https://t.co/L9yGfZpcbg https://t.co/jcSuUxHiX0 +02/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/QznSGAAov2 +02/03/2018,Musicians,@chrisbrown,❤️ https://t.co/1Ll5OA3GT3 +02/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/GWm4WB8kPx +02/01/2018,Musicians,@chrisbrown,When u realize it’ll be too late https://t.co/1swAYQhZwY +01/31/2018,Musicians,@chrisbrown,"""State Of The Union"" available on my soundcloud now https://t.co/vlFZpgfhrA" +01/31/2018,Musicians,@chrisbrown,🙏🏽 https://t.co/qOCDnpzHDd +01/30/2018,Musicians,@chrisbrown,#TEMPOTAKEOVER https://t.co/FsWyJDfgio +01/30/2018,Musicians,@chrisbrown,https://t.co/7Wh0kmd69K +01/29/2018,Musicians,@chrisbrown,https://t.co/eGJ9XC9AYv +01/29/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/zWUXNC57z1 +01/29/2018,Musicians,@chrisbrown,https://t.co/riIQZfyVFU +08/18/2015,Musicians,@justinbeiber,Who else is excited? http://t.co/aJuH3466Kx +01/16/2014,Musicians,@justinbeiber,RT @IslandRecords: Help to complete @JustinBieber's #Journals here - http://t.co/jNuS5RAqOv +01/15/2014,Musicians,@justinbeiber,check out my main man when it comes to reviews: @XerexusReviews follow him on a roll tonight. ans be ready for #BelieveMoviePremiereJBAO +01/15/2014,Musicians,@justinbeiber,"RT @XerexusReviews: This is my twitter. Here I will do updates on what reviews I will be coming up with next. So check my tumblr blog ""xere…" +07/30/2012,Musicians,@justinbeiber,"https://t.co/a3r5t2sa the beautiful talents I wish I could meet. I'm a fan of theirs, you guys should check out their videos and follow too!" +07/18/2012,Musicians,@justinbeiber,http://t.co/Exo2u7XT #YouDontKnowStruggle check this out guys. +06/30/2018,Musicians,@jasonderulo,#DeruloLive https://t.co/EHFszywiHZ +06/29/2018,Musicians,@jasonderulo,RT @motorpoint: JASON DERULO | To celebrate that #FridayFeeling Motorpoint is giving away its last pair of complimentary tickets to see @ja… +06/28/2018,Musicians,@jasonderulo,RT @LIVmiami: Let’s get WILD with @IRIE @irieweekend this SATURDAY! Live performances by @jasonderulo @JustineSkye and guest appearance by… +06/28/2018,Musicians,@jasonderulo,https://t.co/Ye8PRk7Nok +06/27/2018,Musicians,@jasonderulo,Best caption gets a FaceTime tomorrow #LiveMore https://t.co/XO7nFYVGXR +06/26/2018,Musicians,@jasonderulo,Mood for the summer ??Smile or Smize ➡️ https://t.co/sqSh5r2ufn +06/25/2018,Musicians,@jasonderulo,Miami I'm coming home to perform live @irieweekend for the @Sprint BBQ Beach Bash presented by @Samsungmobileusa on… https://t.co/b0o4i4AABW +06/23/2018,Musicians,@jasonderulo,The comeback is always more important than the set back +06/23/2018,Musicians,@jasonderulo,@im_so_cash Well I co-wrote it 🤷🏾‍♂️ 9 yrs ago +06/21/2018,Musicians,@jasonderulo,"You calling the shots for 4 days, where we sailing to? https://t.co/iSWgj8DT3y" +06/20/2018,Musicians,@jasonderulo,The World Cup is ON! And #Colors is the @CocaColaCo anthem for the 2018 @FIFAWorldCup To celebrate enter now for a… https://t.co/CWZMG1vFAP +06/18/2018,Musicians,@jasonderulo,Ice nearly passed out at Runyon Canyon this morning. Tried to bring Ghost too but he ain’t friendly enough to be am… https://t.co/HdhlDyeWUm +06/16/2018,Musicians,@jasonderulo,Imagine yourself surrounded by ancient tombs in a desertlike landscape where the only sounds are waves crashing on… https://t.co/sFh72flcid +06/15/2018,Musicians,@jasonderulo,Family! I collaborated with @stingraymusic to curate my own channel FOR THE SECOND TIME! All my favorite songs are… https://t.co/3dRNVuKaT8 +06/15/2018,Musicians,@jasonderulo,"Not everything needs an explanation... + +Don’t believe everything you read ✈️ +https://t.co/Oh5AqlE0fy https://t.co/3fqk8OSRWv" +06/12/2018,Musicians,@jasonderulo,THIS IS AMERICA 🇺🇸 and this is what happens when me n broski @MattSteffanina got 15 mins by my pool in Miami to coo… https://t.co/OmVBirXmhU +06/11/2018,Musicians,@jasonderulo,"Summer Ready?? +No shirt shawty allll summer long starting in 2 weeks. It’s hot af!!!! https://t.co/WyKRu7vVdg" +06/10/2018,Musicians,@jasonderulo,"3 mins before show time but first.... DRIP + +Stage Ready +Designed by the legend +@forthestarsfashionhouse Jacob https://t.co/44WCdz9KdZ" +06/10/2018,Musicians,@jasonderulo,@Kryp04 Errrthing you could possibly imagine.. +06/08/2018,Musicians,@jasonderulo,Миллион голосов поёт со мной! Эту песню поёт свобода. Я люблю тебя #russia #stbasilscathedral… https://t.co/dhqTCHGv0X +06/04/2018,Musicians,@jasonderulo,RT @bobbybonesshow: So @FLAGALine is working on collabs with @Jason_Aldean & @jasonderulo + looking for a female artist for a collab all on… +06/03/2018,Musicians,@jasonderulo,"It’s Time for that Switch Up +Anticipation is killing me #2Sides #Album #Tour https://t.co/JQjhC8gM2Z" +06/02/2018,Musicians,@jasonderulo,Chk the new Coca Cola commercial #colors #WorldCup https://t.co/06jI5902GV +05/28/2018,Musicians,@jasonderulo,Appreciate 🙏🏾🙏🏾the love https://t.co/cH2A1NYmwd +05/28/2018,Musicians,@jasonderulo,I’m into it https://t.co/u3kKy1MvzL +05/28/2018,Musicians,@jasonderulo,"@LVLXIII_BRANDS x @LuisaViaRoma +https://t.co/VDK9JEv4FX https://t.co/wekQz4ktzO" +05/27/2018,Musicians,@jasonderulo,RT @eventim_uk: Get ready to Wiggle as @jasonderulo tours the UK in September –if you enjoyed his BBC Biggest Weekend performance then grab… +05/25/2018,Musicians,@jasonderulo,RT @MTVMusicUK: Calling all @jasonderulo fans! 🗣 We need your help! Head here to submit your questions for him & they might be answered on… +05/24/2018,Musicians,@jasonderulo,Ever wanted to see the Cayman Islands?! Come see me perform at @KAABOOCayman on Feb 15th & 16th 2019. Plus use the… https://t.co/Ce9EG1V6Kv +05/23/2018,Musicians,@jasonderulo,"2Sides Tour Arena +Tickets Avail Now! +https://t.co/0sQXHDmzKI https://t.co/emGmvxMefL" +05/21/2018,Musicians,@jasonderulo,🤫Sshhh https://t.co/saILwgN2ka +05/18/2018,Musicians,@jasonderulo,Are y’all ready to show your pride during the @FifaWorldCup! I wanna see you represent your country on this one 🔥… https://t.co/c30Z2p64xQ +05/14/2018,Musicians,@jasonderulo,Still carrying me 28yrs strong after those 1st 9 months. I love you mommma & sending big love to all moms out there… https://t.co/rdOZn8lc1U +05/13/2018,Musicians,@jasonderulo,"RT @LuisaViaRoma: @jasonderulo in store +15 May 17.00-19.00 +See you there! https://t.co/YlMfbwFnqj" +05/13/2018,Musicians,@jasonderulo,I want you.. I can’t lie.. Imma give it to you.. Hang tight.. https://t.co/uIu0ezD0o5 +05/11/2018,Musicians,@jasonderulo,Better late than never love😘 https://t.co/HareUbWobL +05/11/2018,Musicians,@jasonderulo,@Elizabethkayem Love u more +05/11/2018,Musicians,@jasonderulo,I’m wheezing!!!!!😂😂😂 ya’ll are INSANE! 👏🏾👏🏾👏🏾Someone pls help me find him. #jasonderulokid #internetisundefeated https://t.co/S4lNA0vTzC +05/10/2018,Musicians,@jasonderulo,I’m so excited to announce I’ll be coming back to the beautiful island of Malta for @IsleofMTV. Can’t wait to perf… https://t.co/fd6nChdSBR +05/10/2018,Musicians,@jasonderulo,I wrote “Ridin Solo” in my cousins basement at 3am on a couch we found in the street. I wrote “Whatcha Say” in a bo… https://t.co/qGUF7csTMD +05/10/2018,Musicians,@jasonderulo,"Bruhhh 😂😂😂😂 I’m dead +#metgala https://t.co/h9OyKdu6fL" +05/09/2018,Musicians,@jasonderulo,Don’t you worry bout the seasons... cause we gon’ fly out every weekend https://t.co/URRxbPKn0z +05/04/2018,Musicians,@jasonderulo,RT @CassperNyovest: .@jasonderulo feat Cassper Nyovest - Colours (Official Music Video) https://t.co/1nUzXtD4ru +04/30/2018,Musicians,@jasonderulo,"Dogs or Cats + +#Ghost #Ice https://t.co/IwwoDXKw2g" +04/28/2018,Musicians,@jasonderulo,"Portugal-I'll be performing at @MEOSudoeste on August 9th! See you there! + +https://t.co/ixCuFHe11g https://t.co/f2aRc6nrZu" +04/27/2018,Musicians,@jasonderulo,🔥 https://t.co/Hc1PCdthhY +04/27/2018,Musicians,@jasonderulo,"3 more months till tour, what city am I meeting you in? https://t.co/Q1IzSk7Ey0" +04/26/2018,Musicians,@jasonderulo,What country has the best beaches? https://t.co/zjmybfe8bp +04/21/2018,Musicians,@jasonderulo,"Grand prize winner for #colorschallenge is flying to the WORLD CUP with me! +I’ll also be posting tons of… https://t.co/Scb9fcmR2a" +04/21/2018,Musicians,@jasonderulo,Check out my latest insta post to see how you can fly with me to the World Cup! https://t.co/C8LWEX7IH7 +04/21/2018,Musicians,@jasonderulo,"Bout that green +Ever golfed? https://t.co/vSQJ8Uy9kz" +04/19/2018,Musicians,@jasonderulo,Too lit bro bro https://t.co/Kr309qGvGO +04/18/2018,Musicians,@jasonderulo,How long does it take u to get date ready? https://t.co/E4tm8lJJp0 +04/16/2018,Musicians,@jasonderulo,Drip drip 💦 https://t.co/qPllzqS1ye +04/15/2018,Musicians,@jasonderulo,New band who dis @ShawnMendes https://t.co/exP6dOffyV +04/14/2018,Musicians,@jasonderulo,Derulo & @maluma new video out now! #colors #worldcup https://t.co/aupwtVgpGj +04/14/2018,Musicians,@jasonderulo,Derulo & @maluma go see the new video posted today https://t.co/LfetbWW3cH +04/14/2018,Musicians,@jasonderulo,"RT @maluma: Video oficial disponible en @Vevo +#Colors @jasonderulo / available on @vevo #HandsUpForYourColors https://t.co/iCXDgT52b0" +04/13/2018,Musicians,@jasonderulo,Golden Carpet #echoawards #germany https://t.co/twpXVxuTlz +04/12/2018,Musicians,@jasonderulo,"Look How Far We've Come! Colors video is out now! Watch & Comment https://t.co/1YDHcZmThD +Colors is the @CocaColaCo… https://t.co/tMIMiRFECD" +04/11/2018,Musicians,@jasonderulo,My brother!! https://t.co/BmY3pPeGMe +04/11/2018,Musicians,@jasonderulo,Darlin I’m here in Germany & there’s diversity here. Ur missing the entire point of the song. It’s all about unity… https://t.co/4hcDkqNSS2 +04/11/2018,Musicians,@jasonderulo,"COLORS OFFICIAL VIDEO OUT NOW! https://t.co/1YDHcZmThD +The Coca-Cola Company Anthem for the 2018 @FIFA World Cup https://t.co/C3zHhFsp3i" +04/10/2018,Musicians,@jasonderulo,C O L O R S Video Dropping Tomorrow @ 7am PST!! Colors is the @CocaColaCo anthem for the 2018 @FIFAWorldCup https://t.co/Ua8VZ4IS87 +04/10/2018,Musicians,@jasonderulo,Let’s get it @RitaOra 🔥 https://t.co/mGxbHo0zzf +04/07/2018,Musicians,@jasonderulo,You can tell I' been workin #beardgang https://t.co/UhFsVuP56Q +04/06/2018,Musicians,@jasonderulo,Have you raised your flag yet?! #RepYourCOLORS now and watch the new lyric video for COLORS on… https://t.co/2OC573MI1I +04/06/2018,Musicians,@jasonderulo,RT @AllThingsSNT: .@jasonderulo will Perform in the End Of the Show Show for the #SaturdayNightTakeaway Finale Tomorrow - Aaron https://t.c… +04/05/2018,Musicians,@jasonderulo,Love more #unity https://t.co/nVqF1RY6bQ +04/03/2018,Musicians,@jasonderulo,Congrats kings.. Welcome to Miami #michaeljordan #derekjeter https://t.co/MRoLDIkjXl +04/02/2018,Musicians,@jasonderulo,Last Night https://t.co/C7BXpvx0Ch +03/27/2018,Musicians,@jasonderulo,RT @Marlins: #OpeningDay keeps on getting better! @jasonderulo will perform the first National Anthem of the season. Be there: https://t.co… +03/23/2018,Musicians,@jasonderulo,Hands Up For Your Colors! Represent your country - Represent your flag. @TheCocaColaCo anthem for the 2018… https://t.co/AyhEtA0w8v +03/22/2018,Musicians,@jasonderulo,@maluma ready? #colors https://t.co/Hsc3ReNah3 +03/16/2018,Musicians,@jasonderulo,Tune into the brand new music series #LiveAtTheBBC tonight! I’ll be co-hosting and performing. Premieres on… https://t.co/v6erCMM9lO +03/16/2018,Musicians,@jasonderulo,"C O L O R S Lyric Video live now! +https://t.co/OunUQmtMzV" +03/15/2018,Musicians,@jasonderulo,https://t.co/Jfgf7mTVZA +03/15/2018,Musicians,@jasonderulo,RT @billboard: .@jasonderulo made a surprise visit to a Boys and Girls Club in Miami https://t.co/TgX4vDHhvF https://t.co/HcMOLwcPbM +03/12/2018,Musicians,@jasonderulo,Thank God for family https://t.co/1B3W6cSb7S +03/11/2018,Musicians,@jasonderulo,Excuse me if I get you W E T 💦 https://t.co/khHTnJAmkI +03/09/2018,Musicians,@jasonderulo,.@DonaldTrump. We're all united in the fact that we're different. Hands up 4 my #colors Haiti🇭🇹 RT YOUR FLAG https://t.co/FYo2Meqnx5 +03/09/2018,Musicians,@jasonderulo,@Shazam got #Colors (The Coca-Cola Anthem for the 2018 FIFA World Cup) as the Song of the Day! https://t.co/GayuB1Hg0c +03/09/2018,Musicians,@jasonderulo,@DonaldTrump We're all united in the fact that we're different. Hands up for my #colors Haiti🇭🇹 Rep YOUR country RT… https://t.co/VwMI3tNye3 +03/09/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag +Be proud of where you're from & who you are. +#Ready… https://t.co/XQfFF0fR5R" +03/08/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag +Be proud of where you’re from & who you are. +@CocaColaCo An… https://t.co/z76EEy5FSZ" +03/08/2018,Musicians,@jasonderulo,"If this was a movie, what we callin it??? +#Miami https://t.co/yCnKzFdqNV" +03/06/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag. +Be proud of where you're from. World Cup Anthem 2018… https://t.co/u5wbA4prda" +03/05/2018,Musicians,@jasonderulo,"Home Sweet Home +You ever been to #miami? +#southbeach #oceandrive https://t.co/9QpPhG9fPD" +03/03/2018,Musicians,@jasonderulo,Happy B-day Baby Noah uncle got you https://t.co/hhFc7rhHTi +03/01/2018,Musicians,@jasonderulo,I try to humble myself enough to know there’s always room to grow. https://t.co/wZVhhxcCO5 +02/28/2018,Musicians,@jasonderulo,@TonyAguilarOfi @SoSofiaReyes @Del40al1_es @DeLaGhettoReal Much love +02/27/2018,Musicians,@jasonderulo,W O N D E R O U T https://t.co/YGJ4wdzw0Q +02/26/2018,Musicians,@jasonderulo,Best caption gets a FaceTime https://t.co/uoUTWfsVCT +02/24/2018,Musicians,@jasonderulo,Live like there’s no tomorrow https://t.co/TOAZIO7u5R +02/19/2018,Musicians,@jasonderulo,"You wanna meet me in Dubai this week??? Comment & tag a friend to get that chance + +#beautifuldestinations… https://t.co/vSneOVz2UE" +02/18/2018,Musicians,@jasonderulo,@TwitterMusic @CocaColaCo Classic man +02/14/2018,Musicians,@jasonderulo,Also who tf is taking playa advice from you lame$??? https://t.co/nZFa2QQCnu +02/14/2018,Musicians,@jasonderulo,Stop posting old news @playaspoint! That’s y u only have 100 followers. Every1 now knows I was on the tv show… https://t.co/Q0WghZrqup +02/14/2018,Musicians,@jasonderulo,@fijiwawta My +02/14/2018,Musicians,@jasonderulo,@fijiwawta Relax ppl I was on the tv show #safeword smh. The show hacked me pages +02/09/2018,Musicians,@jasonderulo,Candace sheesh 👐🏼👐🏼👐🏼 !!!!!! #TheFour what's your thoughts on this @djkhaled +02/09/2018,Musicians,@jasonderulo,Holly shit evvie wow #TheFour +02/09/2018,Musicians,@jasonderulo,RT @Diddy: My brother @FrencHMonTanA is about perform. Tune in!!! #TheFour +02/09/2018,Musicians,@jasonderulo,Who y'all got this final round ? #TheFour +02/09/2018,Musicians,@jasonderulo,Yoo @diddy you can’t send Zaviah home yet she just came wit it !!!!#TheFour @thefouronfox +02/06/2018,Musicians,@jasonderulo,Yuuup🔥🔥🔥 https://t.co/aD0UA5YTCp +02/05/2018,Musicians,@jasonderulo,Family WE reached 1 Billion Views on Swalla today! We now have about 5 Billion views on my YouTube page!!! That's w… https://t.co/kJlEWP7pVc +01/30/2018,Musicians,@jasonderulo,That’s a Insensitive af. I broke my neck last time I cancelled which was 5 YRS AGO. Sorry you’re upset but it hurts… https://t.co/bwjQiFGLUy +01/30/2018,Musicians,@jasonderulo,Pls send him my apologies and tell him I can’t wait to meet him https://t.co/yh1MW4EAt2 +01/30/2018,Musicians,@jasonderulo,Good Mawninn! +01/29/2018,Musicians,@jasonderulo,I C E & G H O S T https://t.co/IkX5qekKpO +01/26/2018,Musicians,@jasonderulo,Chest day https://t.co/W0Kh6PMCQb +01/25/2018,Musicians,@jasonderulo,"@MattSteffanina and crew dancin to #TipToe! 🔥 +https://t.co/HoOMCMEBkb" +01/24/2018,Musicians,@jasonderulo,😂😂🕺🏾 https://t.co/ODNd1qD3s9 +01/23/2018,Musicians,@jasonderulo,Check me out teaching a @zumba class! #TipToeZumba https://t.co/UfnYugVvUg +01/21/2018,Musicians,@jasonderulo,2 days vacation to whatever location.. where u goin? https://t.co/TTgif6ZnFD +01/20/2018,Musicians,@jasonderulo,Shmood or nah? https://t.co/hFKEv4IiRF +01/20/2018,Musicians,@jasonderulo,First emoji that comes to mind https://t.co/pasCDHtBjU +01/19/2018,Musicians,@jasonderulo,RT @officialcharts: .@JasonDerulo has tip-toed his way to a 13th UK Top 10 single! His latest single makes a big climb on this week's Offic… +01/19/2018,Musicians,@jasonderulo,Crazy leg day! @SimeonPanda put the boys through a monstrous one. I love training with different ppl everyone has t… https://t.co/NXSvzEK9FS +01/18/2018,Musicians,@jasonderulo,https://t.co/KoinBm55QD +01/17/2018,Musicians,@jasonderulo,RT @MTVMusicUK: Say hello to this week's Official Trending Chart No.1 - it's #TipToe from @jasonderulo & @FrencHMonTanA! Check out this wee… +01/17/2018,Musicians,@jasonderulo,Just crashed the @zumba with my friends and taking over LA Beatbox Los Angeles #tiptoewithzumba… https://t.co/5SLRJ0ORCC +01/16/2018,Musicians,@jasonderulo,It's my dawg birthday! Follow @JaeMurphy https://t.co/hiUrYg22Mi +01/15/2018,Musicians,@jasonderulo,We celebrate you https://t.co/BAoW9R7hET +01/15/2018,Musicians,@jasonderulo,Writing Camp https://t.co/iG4V0dOIm6 +01/12/2018,Musicians,@jasonderulo,Damn where tf am I supposed to get my black t-shirts? 😂 https://t.co/B9Y016mgc0 +01/09/2018,Musicians,@jasonderulo,Yes I did thank u for letting us know first🙌🏾🙌🏾 https://t.co/Yga6df47KD +01/09/2018,Musicians,@jasonderulo,It begins family!!! Top ten in the UK. #TipToe 🙏🏾 let’s take it to #1 #blessup https://t.co/lLXLkSW99j +01/09/2018,Musicians,@jasonderulo,"""Tip Toe” Zumba Takeover has begun #TipToe #TipToeWithZumba https://t.co/V7IseuB0wz" +01/08/2018,Musicians,@jasonderulo,https://t.co/Lfd7BkEEgh +01/06/2018,Musicians,@jasonderulo,Good job homie. #blessup https://t.co/5JQtRwxZ9N +01/06/2018,Musicians,@jasonderulo,"Crazy!!!!! This is ""Our accomplishment"" 🙏🏾 #16andcounting #TipToe https://t.co/VhDDjglMeh" +01/05/2018,Musicians,@jasonderulo,I love you more than you know 😩 https://t.co/zGgLTZwlhj +01/04/2018,Musicians,@jasonderulo,Thank u for making me one of the most listened to artists on Spotify so consistently! 🙏🏾#TipToe made a huge jump af… https://t.co/x6UjvBH51d +01/04/2018,Musicians,@jasonderulo,Just before this photo I was milly rockin tryna get the bats out my face https://t.co/s8Y39LwGbt +01/03/2018,Musicians,@jasonderulo,"They say your New Year’s Eve KISS sets the tone for the New Year. +#tagyours #tagwhoshouldvebeen https://t.co/EijoLpcujE" +01/02/2018,Musicians,@jasonderulo,First emoji that comes to mind https://t.co/Os38ZWGhfY +01/01/2018,Musicians,@jasonderulo,Everyone that asks always thinks they’re the first https://t.co/qvxI7Eyk7A +01/01/2018,Musicians,@jasonderulo,just so u know on my New Years evening I took 200+ pics honestly. Them denying is just Me trying 2make it 2my bed.… https://t.co/GdoQ1pINTC +12/31/2017,Musicians,@jasonderulo,Finish this caption 2018 is gonna be... https://t.co/E8Uu7XNR3f +12/28/2017,Musicians,@jasonderulo,#TBT #Phillipplein https://t.co/jvLZdEogTx +12/27/2017,Musicians,@jasonderulo,RT @jasonderulo: What city has the best beach in the world? https://t.co/lIKwoWhFW4 +12/27/2017,Musicians,@jasonderulo,What city has the best beach in the world? https://t.co/lIKwoWhFW4 +12/26/2017,Musicians,@jasonderulo,Merry Christmas from Miami https://t.co/zqM6TpgysP +12/25/2017,Musicians,@jasonderulo,Miss my Christmas Day show on @BBCR1? You can listen back right here:https://t.co/Pur12wcPD6 +12/25/2017,Musicians,@jasonderulo,What’s Up people! I’ll be taking over @BBCR1 on Christmas Day from 2pm GMT– listen here:https://t.co/Pur12wcPD6 +12/25/2017,Musicians,@jasonderulo,Where are we going for Christmas dinner? https://t.co/wnzvMNSNzI +12/23/2017,Musicians,@jasonderulo,S/O to @AtariLife for the exclusive SpeakerHat 🔥 Now how did @JaeMurphy get his before me!!! #Speakersinthebrim… https://t.co/EagDpSEJEj +12/18/2017,Musicians,@jasonderulo,@MoonPie Your page is amazing +12/18/2017,Musicians,@jasonderulo,"RT @BestCoverEver: Where our #derulers at!? Name this @JasonDerulo #BestCoverEver song without the sound. RT w/ your answer. + +(Need help? A…" +12/17/2017,Musicians,@jasonderulo,"RT @XXL: Watch @frenchmontana and @jasonderulo team up in the new video for ""Tip Toe"" https://t.co/oXWUzhTzZG https://t.co/lg4OUMrozH" +12/16/2017,Musicians,@jasonderulo,"RT @Fact: A person who sleeps too much, sits too much and isn’t physically active enough is more than 4 times as likely to die early." +12/15/2017,Musicians,@jasonderulo,🙏🏾 https://t.co/HKVKneN94I +12/15/2017,Musicians,@jasonderulo,RT @LiamPayne: .@JasonDerulo your uncle is a Legend 🤣🤣🤣 https://t.co/A7eF92Y5OU +12/15/2017,Musicians,@jasonderulo,RT @Popdust: We love Jason Derulo's new music video. It's W I L D ! ( #📷 @jasonderulo via @latermedia ) https://t.co/EjRpWk1TGe +12/13/2017,Musicians,@jasonderulo,Thank you God for waking me up this morning https://t.co/55nxXlnifm +12/13/2017,Musicians,@jasonderulo,"#thiscouldbeusbutitswinter +Tag who would like this https://t.co/gBiI5oTY3W" +12/13/2017,Musicians,@jasonderulo,@PopeDave8 😂 +12/12/2017,Musicians,@jasonderulo,When you’re about to raise 10’s of thousands for charity @KekePalmer https://t.co/VD7GwTOTCw +12/12/2017,Musicians,@jasonderulo,Share the joy and #ShareYourEars! Help make wishes come true this holiday with Disney parks and Make-A-Wish. For ev… https://t.co/9rx1ij8Txx +12/12/2017,Musicians,@jasonderulo,"RT @BBCR1: 🎄 BIG FESTIVE NEWS 🎄 + +We've invited some of your favourite stars to take over Radio 1 on Christmas Day! + +Get ready for Superstar…" +12/11/2017,Musicians,@jasonderulo,I’ll be at your door at 8. Then we’ll take a jet to anywhere you wanna go. WHERE WE GOIN? https://t.co/8pPHD6KCnA +12/09/2017,Musicians,@jasonderulo,"Proud new owner of my 2nd horse. +What should I name this beauty?? https://t.co/9cSTYUf41h" +12/09/2017,Musicians,@jasonderulo,What time zone are you in? Is it bedtime? Or breakfast in bed time? https://t.co/YwYASinCPM +12/07/2017,Musicians,@jasonderulo,"RT @DJcity: ""Tip Toe"" was DJcity’s 4th most-downloaded song of November. + +https://t.co/o1LglHFUZE" +12/07/2017,Musicians,@jasonderulo,"RT @idolator: .@jasonderulo's ""Tip Toe"" video is a sexy, choreography-filled adventure: https://t.co/n1bmNAi5FN https://t.co/sCsEP2Dnyz" +12/07/2017,Musicians,@jasonderulo,RT @SincereShow: @jasonderulo w/ Another On #Tiptoevideo Out Now Ft. @frenchmontana https://t.co/xXZZtx8yIM +12/07/2017,Musicians,@jasonderulo,"RT @DoctorMusicTuit: Selva, nieve y calaveras doradas en el vídeo oficial de #TipToe de @jasonderulo y @FrencHMonTanA 🐯🌴❄️⛩️ https://t.co/k…" +12/07/2017,Musicians,@jasonderulo,RT @WarnerMusicBR: .@JasonDerulo tem mais uma dança irresistível no clipe de “Tip Toe”! Vem ver e se jogar com o hitmaker: https://t.co/MQu… +12/07/2017,Musicians,@jasonderulo,"RT @ComplexMusic: Premiere: Watch @jasonderulo's new video for ""Tip Toe"" f/ @FrencHMonTanA. https://t.co/D85l5tgt7v https://t.co/biKmvvtnKM" +12/07/2017,Musicians,@jasonderulo,"Official Video for Tip Toe feat. @FrencHMonTanA O U T N O W https://t.co/zSqaQThtdE +https://t.co/CzrMwhr38B https://t.co/cuVK6t3PLd" +12/05/2017,Musicians,@jasonderulo,Peanut-butter or chocolate? https://t.co/3JHBDQZYcb +12/05/2017,Musicians,@jasonderulo,A G E N T: #777 need protection? https://t.co/jwainpFAos +12/03/2017,Musicians,@jasonderulo,https://t.co/wRWd9VVbA7 +12/02/2017,Musicians,@jasonderulo,Comment with two emojis https://t.co/3EeFyUlhvX +12/01/2017,Musicians,@jasonderulo,@km_hamilton15 😘thanks love. I'm a sucker for falsetto +12/01/2017,Musicians,@jasonderulo,So glad to hear that. Peace be with u https://t.co/nVAn6Ua2pB +12/01/2017,Musicians,@jasonderulo,RT @jamiebirdie13: @jasonderulo has an incredible voice omg 😍😭 +12/01/2017,Musicians,@jasonderulo,"RT @RyanBartholomee: Such range and such a beautiful tone, @jasonderulo! ""Silent Night"" was 🔥🔥🔥! 👏🏽👏🏽👏🏽 #DisneyHolidayCelebration" +12/01/2017,Musicians,@jasonderulo,RT @Mack2death: @jasonderulo better sing! Lol taking them to church #DisneyHolidayCelebration +12/01/2017,Musicians,@jasonderulo,RT @kellss_XO: Can we talk about @jasonderulo vocals performing silent night 😍😍😍😍😍😍 +12/01/2017,Musicians,@jasonderulo,A D I O S C H I L E. 🇨🇱 Tag who you ridin in your Lambo wit. #thispiclit https://t.co/UCWVO3gCTx +11/30/2017,Musicians,@jasonderulo,If today was f$cked up. It's all good cuz there's always a fresh start in the morning. +11/29/2017,Musicians,@jasonderulo,Say good morning in your native language https://t.co/4vFmpDkmAa +11/29/2017,Musicians,@jasonderulo,Breaking bad #WalterBlack https://t.co/L3pTDIQgO1 +11/28/2017,Musicians,@jasonderulo,M U S C L E https://t.co/trEL30cVub +11/26/2017,Musicians,@jasonderulo,Just landed in #Chile 🇨🇱 first things first 💦 https://t.co/KOijGSVFPQ +11/25/2017,Musicians,@jasonderulo,Summertime in #Chile 🇨🇱 with my niece skylar https://t.co/OgNSJAmnV8 +11/24/2017,Musicians,@jasonderulo,Stopped by a random shelter today in Detroit to give back. Shoutout to https://t.co/oy5QZRymzl 🙌🏾🙌🏾 https://t.co/JETxRSRiyp +11/24/2017,Musicians,@jasonderulo,Thankful 🙏🏾 https://t.co/htxAS9t5VK +11/23/2017,Musicians,@jasonderulo,🙌🏾 https://t.co/3L6csDQUd2 +11/23/2017,Musicians,@jasonderulo,RT @_OfficialFree: @jasonderulo Great performance at the game bro 💯 #DetroitLions +11/23/2017,Musicians,@jasonderulo,RT @JosieAve: The best part of the whole Lions/Vikings game is @jasonderulo halftime show 🤷🏻‍♀️😍 #sorrynotsorry +11/23/2017,Musicians,@jasonderulo,RT @idfkrow: here I am bawling my eyes out bc jason did so good at the halftime show today I MISS HIM holy shit what a great highlight to m… +11/22/2017,Musicians,@jasonderulo,Pls don't trust these mf's. If it's not from my verified account it's not from me. https://t.co/CTcEo9VF9q +11/22/2017,Musicians,@jasonderulo,@JaeMurphy Family bro! Excited to make history wit u bro +11/22/2017,Musicians,@jasonderulo,It takes a village. You're only as strong as the ppl you surround yourself with. I Love my team 🙌🏾 https://t.co/VEK4ap1B4N +11/21/2017,Musicians,@jasonderulo,"Turkey with a side of #TipToe and #WantToWantMe, on Thanksgiving day! Halftime Performance @Lions https://t.co/G7R7oC40Jm" +11/21/2017,Musicians,@jasonderulo,Christmas time yet? https://t.co/YycBsExksC +06/28/2018,Musicians,@MeekMill,Watch the entire live performance of #StayWoke from the #BETAwards: https://t.co/9yoRoZV3pX https://t.co/jJJ3KSBgBL +06/28/2018,Musicians,@MeekMill,"RT @MeekMill: ""The odds against you and they double stacked...stay woke"" + +Listen to #SayWoke ft. @Miguel now: https://t.co/iA3SWlaICH https…" +06/28/2018,Musicians,@MeekMill,"""The odds against you and they double stacked...stay woke"" + +Listen to #SayWoke ft. @Miguel now:… https://t.co/Hp2lPxvIcB" +06/27/2018,Musicians,@MeekMill,Follow my #StayWoke playlist on @Spotify: https://t.co/cMo0V7blYf https://t.co/PIaQTksJlE +06/27/2018,Musicians,@MeekMill,Shout out #TheBeats1List for including Stay Woke. Hear it on @Beats1 this week https://t.co/rkQwl9BIHH https://t.co/zU1jSrhvn2 +06/27/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke with @Miguel on #RapCaviar: https://t.co/P4uxy6C8SX @Spotify https://t.co/oU6U5oXmtP +06/27/2018,Musicians,@MeekMill,RT @MeekMill: #StayWoke on @AppleMusic A List Hip-Hop: https://t.co/Qe37dgB61r https://t.co/VVpVKCbPZ6 +06/27/2018,Musicians,@MeekMill,"👁 @KingJames 👁 + +Listen to #StayWoke: https://t.co/cMo0V7blYf https://t.co/nfkXwncd3S" +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke on @TIDAL's THORO playlist: https://t.co/3sLdx7cMKh https://t.co/PyIHCMzf2e +06/25/2018,Musicians,@MeekMill,#StayWoke on @AppleMusic A List Hip-Hop: https://t.co/Qe37dgB61r https://t.co/VVpVKCbPZ6 +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke with @Miguel on #RapCaviar: https://t.co/P4uxy6C8SX @Spotify https://t.co/oU6U5oXmtP +06/25/2018,Musicians,@MeekMill,"RT @SpotifyUSA: Motivation music 💪 +Stream @MeekMill's new track #StayWoke with @Miguel on #RapCaviar now https://t.co/e0ZMe0Powq https://t.…" +06/25/2018,Musicians,@MeekMill,"RT @AppleMusic: Brand new @MeekMill featuring @Miguel. Listen to #StayWoke. +https://t.co/7V0TguR8vm" +06/25/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke ft. @Miguel now on @Spotify: https://t.co/4j8Vyhystg https://t.co/YpP6vRv3kE +06/25/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke ft. @Miguel now on @AppleMusic: https://t.co/MRRTkRkmSi https://t.co/T6guMPLvZz +06/25/2018,Musicians,@MeekMill,"RT @MeekMill: #StayWoke ft. @Miguel 👁 + +Listen now: https://t.co/inBU60WCnh https://t.co/3kQYWUDSbm" +06/25/2018,Musicians,@MeekMill,RT @KevinHart4real: So happy & proud of my brother @MeekMill .....Great performance...Great message...STAND UP PHILADELPHIA!!!!! +06/25/2018,Musicians,@MeekMill,"Kept the hood motivated, this the thanks I get? + +#StayWoke: https://t.co/iA3SWlaICH https://t.co/Q6VuRykeby" +06/25/2018,Musicians,@MeekMill,"I stay way from them clowns, watch how I move thru the circus + +#StayWoke: https://t.co/iA3SWlaICH https://t.co/wTbVuwzvFw" +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @AppleMusic: https://t.co/MRRTkRkmSi https://t.co/T6guMPLvZz +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @Spotify: https://t.co/4j8Vyhystg https://t.co/YpP6vRv3kE +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @TIDAL: https://t.co/HOk9wCaf3K https://t.co/uEJ4y5GR2t +06/25/2018,Musicians,@MeekMill,"#StayWoke ft. @Miguel 👁 + +Listen now: https://t.co/inBU60WCnh https://t.co/3kQYWUDSbm" +06/25/2018,Musicians,@MeekMill,"RT @RocNation: ⚡️ “Meek Mill - Stay Woke” by @RocNation + +https://t.co/36odNVICfA" +06/25/2018,Musicians,@MeekMill,#StayWoke ft. @miguel out tonight 👁 !!! +06/24/2018,Musicians,@MeekMill,RT @NYjusticeleague: Thanks to our brother @MeekMill for designing these #Woke tees exclusively for @PUMA —& donating the proceeds to #TheG… +06/24/2018,Musicians,@MeekMill,#staywoke https://t.co/qI30ggGeNg +06/23/2018,Musicians,@MeekMill,RT @RocNation: .@MeekMill is performing tonight at the #BETExperience at @STAPLESCenter in Los Angeles. https://t.co/hQtrlJbgaz +06/23/2018,Musicians,@MeekMill,#staywoke https://t.co/7ush13RKkh +06/22/2018,Musicians,@MeekMill,#staywoke https://t.co/WrFyc96yhS +06/19/2018,Musicians,@MeekMill,"RT @pandoramusic: For #BlackMusicMonth, we’re celebrating iconic artists who have over a billion spins on Pandora and we've passed the aux…" +06/16/2018,Musicians,@MeekMill,RT @NYjusticeleague: #Philly come thru!! On Monday @MeekMill and local community leaders will be at the Philly Criminal Justice Center call… +06/15/2018,Musicians,@MeekMill,RT @NYjusticeleague: We're going back to #Philly. And we're gonna keep going back til we get #Justice4Meek. Come out and show support and… +06/15/2018,Musicians,@MeekMill,"RT @NYjusticeleague: When @S_C_ says ""probation is a trap"" -that's TRUTH! After finally being released from prison for a probation violatio…" +06/09/2018,Musicians,@MeekMill,🚁🏍🎤🎬 LEGENDS OF THE SUMMER! Stream my #SummerJam performance tomorrow on @TIDAL at https://t.co/30WvWTJINs https://t.co/4Gk7Cj6IuB +06/06/2018,Musicians,@MeekMill,I’m taking over @BET weekend. Performing at #BETAwards and #BETX in LA https://t.co/iwBjZWflnK +06/06/2018,Musicians,@MeekMill,Listen to the Litty City playlist on @AppleMusic for #BlackMusicMonth https://t.co/HCavkU8uSs https://t.co/1EbekvsMIZ +05/28/2018,Musicians,@MeekMill,RT @BleacherReport: Cavs singing @meekmill’s “Dreams & Nightmares” in the locker room after the win 🔥 *NSFW* (Via @jordanclarksons) https:/… +05/14/2018,Musicians,@MeekMill,RT @TIDAL: M.I.A. in Miami this past weekend for #RollingLoud? Relive @MeekMill's comeback performance at the festival with this: https://t… +05/13/2018,Musicians,@MeekMill,"RT @RollingStone: Watch Meek Mill's surprise, first post-jail concert at Rolling Loud https://t.co/xayiDLTBHS" +05/13/2018,Musicians,@MeekMill,RT @Diddy: WELCOME HOME @MEEKMILL https://t.co/bzACRSrPCQ +05/10/2018,Musicians,@MeekMill,RT @RocNation: Tune into @espn to see @MeekMill live on @FirstTake right now! +05/10/2018,Musicians,@MeekMill,RT @fox5ny: Rapper @MeekMill tells his story of incarceration and now freedom to @rosannascotto @loristokes during #GDNY Watch online at th… +05/09/2018,Musicians,@MeekMill,"RT @Deena_CNN: Check out my CNN interview with @meekmill ahead of his speech at the @Innocence Project gala: ""Meek Mill's fight is not fini…" +05/08/2018,Musicians,@MeekMill,RT @TIDAL: .@angiemartinez is sitting down with @MeekMill today at 12pm EST. Watch the livestream exclusively on https://t.co/tPvxVkHkao ht… +05/08/2018,Musicians,@MeekMill,RT @CBSThisMorning: COMING UP: Rapper @MeekMill will join us LIVE on @CBS. https://t.co/yPDM509nUp +05/07/2018,Musicians,@MeekMill,"RT @billboard: TIDAL announces new series special ""One of One"" with Angie Martinez. + +The first guest will be rapper Meek Mill! https://t.co…" +05/07/2018,Musicians,@MeekMill,"RT @TIDAL: ""These are the vibes that kept my spirits up while I was incarcerated feeling like I was in a situation that was hell on earth.""…" +05/07/2018,Musicians,@MeekMill,"RT @billboard: Watch Meek Mill's interview with ""Dateline NBC"" detailing his incarceration https://t.co/sXFlY4ivLU https://t.co/NUpVUdE1kt" +05/07/2018,Musicians,@MeekMill,RT @TIDAL: .@angiemartinez is going live on TIDAL with @MeekMill tomorrow. Watch the livestream at 12pm EST/9am PST. For more info visit ht… +05/07/2018,Musicians,@MeekMill,RT @angiemartinez: going live on TIDAL with @MeekMill. 🙌🏼TOMORROW watch the livestream at 12pm EST/9am PST. for more info visit https://t.c… +05/07/2018,Musicians,@MeekMill,Going live with @angiemartinez tomorrow on @TIDAL. Watch the livestream at 12pm ET/9am PT. For more info visit… https://t.co/Rlb1uuEQrd +05/07/2018,Musicians,@MeekMill,"RT @DatelineNBC: NOW: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @LesterHo…" +05/06/2018,Musicians,@MeekMill,RT @RocNation: https://t.co/iivNdpfquI +05/06/2018,Musicians,@MeekMill,"RT @ColorOfChange: If you’re on probation you can go to prison for: + +-Missing a meeting with your probation officer. +-Having a work commi…" +05/06/2018,Musicians,@MeekMill,RT @NYjusticeleague: We also have to remember the initial arrest has been contested from jump. In @MeekMill own words... #Dateline #MeekMi… +05/06/2018,Musicians,@MeekMill,"RT @cut_50: ""I had 8 years probation. it turned into 16 years of probation. I'm still doing time for that case."" Watch the exclusive interv…" +05/06/2018,Musicians,@MeekMill,Tune into @DatelineNBC now in EST and CST timezones to watch “Dreams and Nightmares: The Meek Mill Story.” (Airs 6p… https://t.co/VLPMsSq1Zq +05/06/2018,Musicians,@MeekMill,"Tune into @DatelineNBC tonight at 7e/6c to watch “Dreams and Nightmares: The Meek Mill Story."" Hosted by… https://t.co/9QQeaPgHD3" +05/06/2018,Musicians,@MeekMill,RT @NBCNews: Why rapper Meek Mill wants to fix broken justice system https://t.co/4IYDzIQrcn +05/06/2018,Musicians,@MeekMill,"RT @DatelineNBC: Tonight on #Dateline at 7/6c, @LesterHoltNBC talks with rapper @MeekMill about the new path he's charting to reform the U.…" +05/06/2018,Musicians,@MeekMill,RT @TIDAL: Celebrate the warmer weather with @MeekMill's Pool Party playlist on https://t.co/Azgv5ZEpUs https://t.co/PhutrfrcNn +05/06/2018,Musicians,@MeekMill,"RT @LesterHoltNBC: Tune in to @DatelineNBC tonight at 7p/6c for “Dreams and Nightmares: The Meek Mill Story,” my exclusive in-depth interv…" +05/06/2018,Musicians,@MeekMill,"RT @NBCNightlyNews: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @LesterHolt…" +05/06/2018,Musicians,@MeekMill,RT @DatelineNBC: He had a dream that a helicopter was going to pick him up when he got out of prison. Go inside @MeekMill’s chopper ride fr… +05/05/2018,Musicians,@MeekMill,"RT @sixers: .@MeekMill, @questlove, @MNightShyamalan and @ZERTZ_86 in the house for today’s game! + +#PhilaUnite x #HereTheyCome https://t.c…" +05/05/2018,Musicians,@MeekMill,"RT @FairPunishment: .@MeekMill: ""A lot of these laws are made to keep most of these minorities trapped forever. … Let’s retire the #FreeMee…" +05/05/2018,Musicians,@MeekMill,RT @DatelineNBC: Musicians @questlove and @blackthought from @theroots talk about rapper @MeekMill’s place in Philadelphia’s hip-hop histor… +05/04/2018,Musicians,@MeekMill,RT @angiemartinez: talking to @LesterHoltNBC on air about sunday’s #Dateline #meekmill special. tune in on @Power1051 +05/04/2018,Musicians,@MeekMill,"RT @DatelineNBC: Rapper @MeekMill tells @LesterHoltNBC: ""It's about chasing your dreams no matter what you do in life."" Watch more of Meek'…" +05/04/2018,Musicians,@MeekMill,RT @billboard: Meek Mill & Pennsylvania Gov. urge criminal justice reforms https://t.co/ufPqyIudgM https://t.co/cYnOHYb6Gj +05/04/2018,Musicians,@MeekMill,RT @BostonGlobe: New England Patriots owner Robert Kraft chatted with rapper Meek Mill in their courtside seats at Game 2 of the Celtics NB… +05/04/2018,Musicians,@MeekMill,"RT @SBNation: Just Gucci Mane, Robert Kraft, and Meek Mill having a conversation https://t.co/ZGZbDeagXB" +05/04/2018,Musicians,@MeekMill,RT @NBCPhiladelphia: .@meekmill is in the building as the @sixers take on the @celtics #PhilaUnite #HereTheyCome https://t.co/oQxCfchrqN +05/04/2018,Musicians,@MeekMill,"RT @sixers: .@MeekMill in the building! + +#PhilaUnite x #HereTheyCome https://t.co/8PQ8DyLO49" +05/03/2018,Musicians,@MeekMill,RT @DatelineNBC: He had a dream that a helicopter was going to pick him up when he got out of prison. Go inside @MeekMill’s chopper ride fr… +05/03/2018,Musicians,@MeekMill,RT @RollingStone: Is the Meek Mill case a sign of substantial criminal justice reforms on the way? https://t.co/qgTyDYEJe4 https://t.co/Xjm… +05/03/2018,Musicians,@MeekMill,RT @tictoc: ⚡️ @MeekMill is calling for criminal justice reform in Pennsylvania to “speak for the voiceless” https://t.co/ffHk1GBpI1 +05/03/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: I’m proud to join state legislators, @sixers co-owner @MichaelGRubin, and artist @MeekMill today to announce proposals…" +05/03/2018,Musicians,@MeekMill,"RT @GovernorsOffice: Today at 11:00 AM, @GovernorTomWolf will join @RepDwightEvans, @sixers co-owner @MichaelGRubin, artist @MeekMill, and…" +05/03/2018,Musicians,@MeekMill,RT @EW: Meek Mill teaming with Amazon for six-part docuseries https://t.co/PtM2Our6au +05/03/2018,Musicians,@MeekMill,RT @RIAA: .@MeekMill's latest album Wins & Loses is officially Gold. It's Meek's third RIAA Album Award: https://t.co/ohedbtVnA4 @Atlantic… +05/02/2018,Musicians,@MeekMill,"RT @DatelineNBC: EXCLUSIVE: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @Le…" +04/29/2018,Musicians,@MeekMill,"RT @TIME: Rapper Meek Mill will be released from prison on bail +https://t.co/tz4jsojiXn" +04/27/2018,Musicians,@MeekMill,"RT @RollingStone: In one of his first post-jail interviews, Meek Mill reflects on the toll of prison https://t.co/mKHDS4oW2Y https://t.co/D…" +04/26/2018,Musicians,@MeekMill,RT @NBCNightlyNews: WATCH: Rapper Meek Mill speaks out to @LesterHoltNBC in an exclusive interview following his release from prison. https… +04/25/2018,Musicians,@MeekMill,"RT @RepKarenBass: There are thousands of men and women in jail right now for the same, unjust reasons that Meek Mill was put in jail for. I…" +04/25/2018,Musicians,@MeekMill,"RT @LesterHoltNBC: In an exclusive interview for an upcoming @DatelineNBC , Philadelphia rapper Meek Mill talks to me about his release fro…" +04/25/2018,Musicians,@MeekMill,RT @djkhaled: Bless up meekmill God is The Greatest 🙏🏽 https://t.co/19Jh2JvjTF +04/25/2018,Musicians,@MeekMill,RT @NYjusticeleague: “Ain’t this what we been waiting for?!” MEEK MILL IS FREE!!! Read this statement from Meek on his release. This is who… +04/25/2018,Musicians,@MeekMill,RT @KevinHart4real: Back like we never left....Welcome home meekmill ....Lets gooooooooo Sixers #PhillyStandUp… https://t.co/aLgGWH60Tv +04/25/2018,Musicians,@MeekMill,"RT @Spotify: Welcome home, Meek Mill 🙏 +https://t.co/92e0izlkJk https://t.co/aMRng5LdI1" +04/25/2018,Musicians,@MeekMill,RT @TIDAL: #MeekMill is finally a free man 🙌. RT if you’re blasting “Dreams and Nightmares”: https://t.co/DUpqAKYGD4 https://t.co/oc6P1TZL0D +04/25/2018,Musicians,@MeekMill,"RT @amazonmusic: ""I roared with the lions."" Here's to Philly's own Meek Mill! #MeekisFree https://t.co/Qlbm1llAxF https://t.co/U8FOqfsMo0" +04/25/2018,Musicians,@MeekMill,RT @TG3II: Yessirrr welcome home @MeekMill https://t.co/F5nz0VxXlL +04/25/2018,Musicians,@MeekMill,"RT @billboard: JAY-Z on Meek Mill prison release: ""A son of Philadelphia is a free man"" https://t.co/V2kVAgmUah https://t.co/9d9WZYpte7" +04/25/2018,Musicians,@MeekMill,"RT @RollingStone: Jay-Z celebrates Meek Mill's release from prison: ""Today, Meek Mill, a son of Philadelphia, is a free man"" https://t.co/j…" +04/25/2018,Musicians,@MeekMill,"RT @NBA: Joined by @KevinHart4real, @MeekMill rings the 🔔 in Philadelphia ahead of @MiamiHEAT/@Sixers Game 5! #NBAPlayoffs https://t.co/dOr…" +04/24/2018,Musicians,@MeekMill,"In the meantime, I plan to work closely with my legal team to overturn this unwarranted conviction and look forward… https://t.co/TVE1J7AD4Z" +04/24/2018,Musicians,@MeekMill,"To the Philly District Attorney’s office, I’m grateful for your commitment to justice. I understand that many peopl… https://t.co/nKUemVQLWJ" +04/24/2018,Musicians,@MeekMill,"I’d like to thank God, my family, and all my public advocates for their love, support and encouragement during this… https://t.co/2cQXcKgip7" +04/24/2018,Musicians,@MeekMill,RT @TMZ: Kevin Hart Visits Meek Mill in Philadelphia Prison https://t.co/6lnUfjiEM7 +04/24/2018,Musicians,@MeekMill,RT @Tip: #FreeMeek https://t.co/ekEbIc6rRu +04/24/2018,Musicians,@MeekMill,"RT @ShannonSharpe: Meek Mill didn’t kill anyone and can’t get a bond, but that’s none of my business. https://t.co/TTdtlSFlk1" +04/22/2018,Musicians,@MeekMill,RT @XXL: Boxer @Gervontaa wears a @MeekMill shirt in the ring after knocking out Jesus Cuellar https://t.co/6WUWGGXW6M +04/21/2018,Musicians,@MeekMill,"RT @RickRoss: #FreeMeek + +RT." +04/20/2018,Musicians,@MeekMill,RT @thefader: Meek Mill gives statement on cases involving his arresting officer being dismissed. https://t.co/6PW4IMoavi https://t.co/iQnI… +04/18/2018,Musicians,@MeekMill,"RT @TheRevAl: Attorney @TacopinaLaw talks about his client Meek Mill, the criminal justice system, policy reform, and more at the 2018 Nati…" +04/18/2018,Musicians,@MeekMill,RT @breakfastclubam: Meek Mill's Lawyer Discusses The Judge's Obsession & Unfair Treatment https://t.co/hEPEpIWbiy +04/18/2018,Musicians,@MeekMill,".@MeekMill's Lawyer, Joe Tacopina, Discusses The Judge's Obsession & Unfair Treatment In The Courtroom on… https://t.co/EWbARAnj2b" +04/18/2018,Musicians,@MeekMill,RT @breakfastclubam: We got #meekmills lawyer #joetacopina in the building >> he’s updating us and letting us know… https://t.co/M0jLcwQpGl +04/18/2018,Musicians,@MeekMill,RT @angiemartinez: so here’s what i learned today about the @meekmill case.... https://t.co/rL1P03sCfy +04/18/2018,Musicians,@MeekMill,RT @djenvy: meekmill attorney Joe Tacopina is here discussing everything going on with his case... Tune… https://t.co/UL0IEOIfxQ +04/18/2018,Musicians,@MeekMill,"RT @angelayee: We have meekmill lawyer Joe Tacopina giving us the details of meek’s case, the corrupt officer… https://t.co/DaAnRfbqC1" +04/18/2018,Musicians,@MeekMill,"RT @breakfastclubam: .@MeekMill's lawyer, Joe Tacopina joins The Breakfast Club tomorrow morning to discuss Meek's case. Make sure to tune…" +04/18/2018,Musicians,@MeekMill,".@MeekMill's lawyer, Joe Tacopina, will be on @breakfastclubam tomorrow morning to discuss Meek's case. https://t.co/gTZoTR3kHn" +04/17/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: When Meek Mill was resentenced to prison for parole violations, his case brought hundreds of thousands to call for cha…" +04/17/2018,Musicians,@MeekMill,"RT @XXL: Watch Meek Mill's interview with CNN +https://t.co/HmlAY5Hq0M" +04/17/2018,Musicians,@MeekMill,RT @okayplayer: #FreeMeekMill https://t.co/egJjSD2MzS +04/17/2018,Musicians,@MeekMill,"RT @FairPunishment: Meek Mill's case has been plagued by a staggering number of allegations of judicial, police, and prosecutorial miscondu…" +04/16/2018,Musicians,@MeekMill,"""Black lives matter but the system is consistently saying they don't."" - Angelo Pinto #FreeMeekMill #Justice4Meek… https://t.co/U2ZspW5ieP" +04/16/2018,Musicians,@MeekMill,RT @nytimesarts: The Philadelphia district attorney’s office threw its support behind a campaign to overturn the conviction of the rapper M… +04/16/2018,Musicians,@MeekMill,RT @XXL: The Philly D.A. is standing behind Meek Mill in support of his release from prison https://t.co/DPZcjk9chf +04/16/2018,Musicians,@MeekMill,"RT @CBSNews: Rapper Meek Mill's convictions should be vacated, Philadelphia district attorney says, arguing that he should have a new trial…" +04/16/2018,Musicians,@MeekMill,"RT @TIME: Rapper Meek Mill's conviction should be thrown out, prosector says https://t.co/tI4DSvpdmf" +04/16/2018,Musicians,@MeekMill,RT @DeSeanJackson11: Young Papi !! 💪🏾💪🏾 #freemeek https://t.co/yZ7FAagkqj +04/16/2018,Musicians,@MeekMill,RT @vicenews: Philadelphia DA is backing a new trial for rapper Meek Mill https://t.co/OHwD9ZEj7u +04/16/2018,Musicians,@MeekMill,RT @HipHopDX: 🗣 In the hood yelling #FreeMeek! The Philly DA has apparently agreed to a retrial for Meek Mill! https://t.co/TUWPGMYH6f +04/16/2018,Musicians,@MeekMill,RT @RocNation: https://t.co/t85kkJrqis +04/16/2018,Musicians,@MeekMill,"""The time is really now to create change"" - @Angelopinto720 #Justice4Meek #FreeMeekMill #ReformPhilly… https://t.co/ixDfJHr4Ao" +04/16/2018,Musicians,@MeekMill,"RT @Phillyfreezer: PHILADELPHIA – Join hundreds of community members, elected officials, celebrities, and professional athletes this Today…" +04/16/2018,Musicians,@MeekMill,RT @NBCNews: Supporters of rapper Meek Mill begin gathering outside of a Philadelphia court to rally and demand a judge overturn his convic… +04/16/2018,Musicians,@MeekMill,RT @ColorOfChange: #FreeMeekMill https://t.co/SiCSvVfYXF +04/16/2018,Musicians,@MeekMill,RT @NYjusticeleague: Listen to @marclamonthill ask the right questions!!! #FreeMeekMill https://t.co/fS5Zdfton7 +04/16/2018,Musicians,@MeekMill,"RT @RocNation: “I pledge to you, I will not rest until we reform this system...We need to free Meek!"" @SenSharifStreet @MeekMill #Justice4M…" +04/16/2018,Musicians,@MeekMill,"RT @RocNation: “Justice needs to be blind and it hasn't been...We need sanity, we need love, we need fairness."" @LtGovStack #ReformPhilly #…" +04/16/2018,Musicians,@MeekMill,"""Everyone needs to stand up for justice"" @LtGovStack #ReformPhilly #Justice4Meek #FreeMeekMill… https://t.co/RskLERAcb2" +04/16/2018,Musicians,@MeekMill,Come out to the Philadelphia Criminal Justice Center today from 8am – 12pm to show support for criminal justice ref… https://t.co/ZwrR9OCuY1 +04/15/2018,Musicians,@MeekMill,#FreeMeek https://t.co/KWzOdH3M1G +04/15/2018,Musicians,@MeekMill,RT @darrenrovell: Free Meek Mill shirts all over tonight in Philly ahead of 76ers game as grassroots effort to release the Philly born rapp… +04/14/2018,Musicians,@MeekMill,RT @ColorOfChange: What’s happening to #MeekMill is just one example of how our criminal justice system entraps thousands of Black ppl ever… +04/14/2018,Musicians,@MeekMill,RT @cut_50: Show support for @MeekMill and #CJreform nationwide by joining this rally at the Philadelphia Criminal Justice Center on MONDAY… +04/14/2018,Musicians,@MeekMill,"RT @AtlanticRecords: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MON…" +04/14/2018,Musicians,@MeekMill,"RT @Tyrese: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MONDAY from…" +04/14/2018,Musicians,@MeekMill,RT @PageSix: Frustrated Meek Mill speaks out from prison: I am a political prisoner https://t.co/yModn4sFXE https://t.co/FGCQZYtC6i +04/14/2018,Musicians,@MeekMill,RT @KevinHart4real: Just got off the phone with meekmill ....I love my guy...He’s in a really good space and wanted… https://t.co/9Z3Ff7WWnH +04/13/2018,Musicians,@MeekMill,"RT @RocNation: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MONDAY fr…" +04/13/2018,Musicians,@MeekMill,"PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this… https://t.co/xRoXFy8zGZ" +04/13/2018,Musicians,@MeekMill,"RT @CNN: ""Who is Meek Mill and why do we want to free him?"" Someone, somewhere, is in dire need of this article. https://t.co/W1ZFulgEtY ht…" +04/13/2018,Musicians,@MeekMill,RT @jasoncollins98: #FreeMeekMill https://t.co/lBCQ4ySl3V +04/13/2018,Musicians,@MeekMill,RT @NYjusticeleague: Did u see @MeekMill last night w @LesterHoltNBC talking about his push for criminal justice reform & vowing 2use his… +04/13/2018,Musicians,@MeekMill,RT @donlemon: Visited @MeekMill today. Stay tuned. #MeekMill https://t.co/pTNKKa3XdF +04/13/2018,Musicians,@MeekMill,RT @thefader: Watch Meek Mill’s interview from prison with NBC’s Lester Holt. https://t.co/GFOhaNgcEN https://t.co/ZejDHDWehd +04/13/2018,Musicians,@MeekMill,"RT @RollingStone: Meek Mill talks ""helping minorities that come from these situations like myself"" in new interview https://t.co/wxibf33j9x…" +04/13/2018,Musicians,@MeekMill,RT @KameronBennett: Free Meek +04/13/2018,Musicians,@MeekMill,RT @RickRoss: #FreeMeekMill @NBCPhiladelphia https://t.co/ZBsxCZNRlb +04/13/2018,Musicians,@MeekMill,RT @billboard: Meek Mill tells Lester Holt he always thought his probation would bring him back to prison https://t.co/oqZVgPjycf https://t… +04/12/2018,Musicians,@MeekMill,Show support for criminal justice reform across the country by joining us for a rally and sit in at the Philadelphi… https://t.co/9tXNvfM0nV +04/12/2018,Musicians,@MeekMill,RT @NYjusticeleague: Join us and Philadelphia’s criminal justice community as we give court support & rally & sit in to #FreeMeekMill ! Mor… +04/12/2018,Musicians,@MeekMill,RT @MalcolmJenkins: #FreeMeek https://t.co/gxXE8cbMox +04/12/2018,Musicians,@MeekMill,RT @NBCNightlyNews: WATCH: Rapper Meek Mill was jailed for violating probation in a case that has received national attention and calls for… +04/12/2018,Musicians,@MeekMill,RT @KevinHart4real: #FreeMeek https://t.co/09zq1EJn2U +04/12/2018,Musicians,@MeekMill,RT @LesterHoltNBC: In Philadelphia speaking by phone with imprisoned rapper Meek Mill. Why his case has drawn attention and support from Ja… +04/12/2018,Musicians,@MeekMill,"RT @NBCNightlyNews: TONIGHT on @NBCNightlyNews: ""It was always a thought in the back of my mind that ten years of probation would bring me…" +04/12/2018,Musicians,@MeekMill,"RT @ComplexMusic: Wale sends love to Meek Mill: ""It's really deeper than rap."" + +https://t.co/YCeIkFEFrE https://t.co/t5gnwwGImF" +04/12/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: When Meek Mill was recommitted to prison, hundreds of thousands of people signed petitions requesting that I step in t…" +04/11/2018,Musicians,@MeekMill,RT @billboard: Wale pens a heartfelt message about brotherhood after speaking with Meek Mill https://t.co/TC4jW0j96y https://t.co/kzHoIYinWV +04/11/2018,Musicians,@MeekMill,"RT @NBCPhiladelphia: BREAKING: @PhillyMayor visited Meek Mill in state prison today, says the rapper ""would better serve the community outs…" +04/11/2018,Musicians,@MeekMill,"RT @XXL: Meek Mill is visited in prison by the New England Patriots owner Robert Kraft and Philadelphia 76ers co-owner Michael Rubin +https…" +04/11/2018,Musicians,@MeekMill,RT @GenoSmith3: #FreeMeek +04/11/2018,Musicians,@MeekMill,RT @BleacherReport: Pats owner Robert Kraft visits Meek Mill in prison https://t.co/WZkT6aM0yb https://t.co/l2ZbwUmPZU +04/09/2018,Musicians,@MeekMill,"RT @TIDAL: Watch @MeekMill's new video for ""1942 Flows"" now on https://t.co/Azgv5ZEpUs https://t.co/s0XU2jX1SK" +04/09/2018,Musicians,@MeekMill,https://t.co/olpvgBtNvj NOW! https://t.co/9hRoBP17px +04/06/2018,Musicians,@MeekMill,"RT @VibeMagazine: The Supreme Court to look into Meek Mill’s bail release case +https://t.co/3k6zZdpMNr https://t.co/fH4CsoXpig" +04/06/2018,Musicians,@MeekMill,.@MeekMill Gets Prison Visit from 76ers Star Rookies https://t.co/bJzmKbuGTn https://t.co/B9cfoBbLNy +04/06/2018,Musicians,@MeekMill,RT @TMZ: Meek Mill Gets Prison Visit from 76ers Star Rookies https://t.co/2YQr55lt39 +04/06/2018,Musicians,@MeekMill,"RT @RollingStone: Philadelphia District Attorney ""does not oppose"" Meek Mill's bail request in new motion https://t.co/MCNeQieNvq https://t…" +04/06/2018,Musicians,@MeekMill,RT @djkhaled: meekmill https://t.co/37APtoahLW +04/05/2018,Musicians,@MeekMill,RT @Complex: Philadelphia DA officially files no opposition to releasing Meek Mill on bail: https://t.co/RZ9K0dvNC5 https://t.co/CVaSYNvGcf +04/05/2018,Musicians,@MeekMill,RT @thefader: Philadelphia D.A. files no opposition to releasing Meek Mill at the state supreme court level. https://t.co/fvth9k2S7g https:… +04/03/2018,Musicians,@MeekMill,RT @NBCSports: wow everybody wants to #FreeMeek ! https://t.co/nlWnP8TMKM +03/29/2018,Musicians,@MeekMill,"RT @spotifyartists: In the midst of the #FreeMeekMill movement, the one voice we’ve been missing is the Philly rapper himself. In this powe…" +03/28/2018,Musicians,@MeekMill,RT @youngthug: I miss my brada @MeekMill +03/28/2018,Musicians,@MeekMill,"RT @RickRoss: Meek Mill's mother pens emotional letter to Lady Justice: ""You've taken his innocence and abused his pride"" https://t.co/AG94…" +03/26/2018,Musicians,@MeekMill,"RT @thefader: Read Meek Mill’s mother’s op-ed, addressed to “Lady Justice."" https://t.co/Djl3kyHf21 https://t.co/cE2acizvgK" +03/26/2018,Musicians,@MeekMill,"RT @billboardhiphop: Meek Mill's mother's plea to Lady Justice: ""You've taken his innocence and abused his pride."" https://t.co/5m5FcGsUgs…" +03/26/2018,Musicians,@MeekMill,RT @REVOLTTV: #FreeMeekMill: Philadelphia D.A. says there is a “strong likelihood” @MeekMill’s conviction could be reversed. ➡️ https://t.c… +03/25/2018,Musicians,@MeekMill,RT @RickRoss: Free Meek Mill +03/25/2018,Musicians,@MeekMill,RT @BILLBELLAMY: Pennsylvania Governor Supports Meek Mill's Release From Prison https://t.co/ha1e6ESjMS +03/24/2018,Musicians,@MeekMill,RT @billboard: Pennsylvania governor Tom Wolf supports Meek Mill's prison release https://t.co/7ryvmQaoTw https://t.co/4pmKU8AG0A +03/24/2018,Musicians,@MeekMill,RT @RollingStone: Pennsylvania governor supports Meek Mill's release from prison https://t.co/0nDBFdHH9h +03/23/2018,Musicians,@MeekMill,"RT @TMZ: Meek Mill Gets Shout Out, Support from Pennsylvania's Governor Wolf https://t.co/Q2kWFDaBxd" +03/23/2018,Musicians,@MeekMill,RT @RepHarris: I stand with @GovernorTomWolf & @Krasner4DA in fighting for a more equitable justice system. It's time we ensure that the co… +03/23/2018,Musicians,@MeekMill,RT @GovernorTomWolf: But more needs to be done. I am calling on the PA General Assembly to pass the Justice Reinvestment II reforms to the… +03/23/2018,Musicians,@MeekMill,RT @GovernorTomWolf: I support D.A. Larry Krasner’s position in the case of Robert Williams (Meek Mill). Our criminal justice system is in… +03/21/2018,Musicians,@MeekMill,RT @WendyWilliams: Meek Mill might be a free man soon! https://t.co/EeGNgIdQfk https://t.co/8ibiSQuTPu +03/19/2018,Musicians,@MeekMill,RT @chrisrock: Free MeekMill. Such a sad story. https://t.co/ZGiTwptE3V +03/18/2018,Musicians,@MeekMill,RT @lildurk: FREE MEEK ⏰ +03/16/2018,Musicians,@MeekMill,"RT @RickRoss: Meek Mill addresses corrupt prison system & moving to Atlanta in rare prison interview with ""Rolling Stone"" https://t.co/wwJP…" +03/15/2018,Musicians,@MeekMill,RT @RollingStone: Watch Meek Mill's cousins recall the rapper's horrific arrest https://t.co/N1gcI9O0hO https://t.co/3291rNEC4W +07/01/2018,Sports_celeb,@Jumpman23,"Built for the blacktop. + +The #WhyNot Zer0.1 Low 'Black' is available now." +06/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 3 'International Flight' + +Shop 🇺🇸 https://t.co/fp1wZtfzaJ https://t.co/1hRXu9O4l0" +06/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 10 'White/University Red' + +Shop 🇺🇸 https://t.co/uOCJ7Fs3J0 https://t.co/Jbap55fzXO" +06/29/2018,Sports_celeb,@Jumpman23,"Frequent flyer. + +Explore the International Flight Collection, which pays tribute to three moments MJ elevated his g… https://t.co/MZFu3eFCYB" +06/28/2018,Sports_celeb,@Jumpman23,"Game for summer. + +Introducing the @RussWest44 #WhyNot Zer0.1 Low 'Black', dropping Sunday. https://t.co/mu4jolMKuW" +06/27/2018,Sports_celeb,@Jumpman23,"For the class of ’06. + +Inspired by @RussWest44’s high school days, the #AirJordan X ‘White/University Red’ drops Sa… https://t.co/tdf8R9tWxn" +06/26/2018,Sports_celeb,@Jumpman23,"RT @hornets: OFFICIAL: @KembaWalker is the 2017-18 NBA Sportsmanship Award Winner! + +⭐️⭐️ CONGRATS KEMBA! ⭐️⭐️ + +#BuzzCity x #NBAAwards http…" +06/26/2018,Sports_celeb,@Jumpman23,"RT @NBAonTNT: Russ has a message to all his fans that voted him for the 2017-2018 ""Best Style"" Award! https://t.co/zSjFQMfgVh" +06/26/2018,Sports_celeb,@Jumpman23,"""I took the doubt people had in me and let it fuel my fire."" - @VicOladipo  + +Learn how this year’s Most Improved Pl… https://t.co/Hwlsx3UfjR" +06/25/2018,Sports_celeb,@Jumpman23,"Designing a legacy. + +Discover the details behind the Jordan Legacy 312 and what this shoe means to designer Don C. #JUMPMAN" +06/25/2018,Sports_celeb,@Jumpman23,"Center stage. + +Explore how @billieeilish’s unique style starts with Jordans at Paris Fashion Week. #JUMPMAN" +06/23/2018,Sports_celeb,@Jumpman23,"Combining passion with performance. + +Explore the second #WhyNot collection from @RussWest44, debuted during Paris Fashion Week. #JUMPMAN" +06/23/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 12 'Michigan' + +Shop 🇺🇸 https://t.co/EbN8hyFc2c https://t.co/gUZF4287KC" +06/22/2018,Sports_celeb,@Jumpman23,Fit for fall. https://t.co/rcYNmX4IIi +06/22/2018,Sports_celeb,@Jumpman23,"Inspired by the court, led by the culture, built for the community. + +Russell Westbrook, Don C, and Billie Eilish br… https://t.co/xpFELPe9ai" +06/18/2018,Sports_celeb,@Jumpman23,"Flying high. + +Find out how the Wings Scholars Program is helping 26 incoming freshman begin their college journeys." +06/18/2018,Sports_celeb,@Jumpman23,"RT @aardodson: 26 high school students from across the country were recently named @Jumpman23 Wings Scholars, and awarded full rides to att…" +06/16/2018,Sports_celeb,@Jumpman23,"RT @russwest44: #FASHION KING 🔥🔥 These for you Mom, Thank you for inspiring me and showing me how fashion is done!!! #whynot In stores now!…" +06/16/2018,Sports_celeb,@Jumpman23,"Bow down. + +The @RussWest44 #WhyNot Zer0.1 'Fashion King' is available now." +06/14/2018,Sports_celeb,@Jumpman23,"On this day 20 years ago, the Boss won his 6th and final championship with a clutch jumper. + +In honor of that mome… https://t.co/gUKawnn5xK" +06/13/2018,Sports_celeb,@Jumpman23,"RT @TheNBPA: (7 of 12). + +The NBPA Best Side Hustle Award + + Can’t Knock the Hu$tle. Congrats @russwest44!! + +@purehoop illustrates The Brodi…" +06/12/2018,Sports_celeb,@Jumpman23,"All on the line. + +The #AirJordan XIV 'Last Shot' drops Thursday, 6/14 to celebrate the 20th anniversary of the Bos… https://t.co/GwWCy53TBw" +06/09/2018,Sports_celeb,@Jumpman23,RT @MooreMaya: It’s that time of year....Red Velvet cake Birthday shoes!!!!! So fun! Watch us hoop vs the Sun today at 2pm ET on NBA TV!! h… +06/09/2018,Sports_celeb,@Jumpman23,"Clutch gene. + +The #AJXXXII Low 'Last Shot' is available now." +06/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The Travis Scott x @Jumpman23 Air Jordan 4 + +Shop 🇺🇸 https://t.co/7HXjLecwv4 https://t.co/sA8eOtIK5q" +06/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 2 'Melo' + +Shop 🇺🇸https://t.co/vLkyGQFGAD https://t.co/I7sp51ToxG" +06/08/2018,Sports_celeb,@Jumpman23,"Fresh heat. + +The Women's #AirJordan III 'Particle Beige' is available now." +06/07/2018,Sports_celeb,@Jumpman23,"The closer. + +The #AirJordan XIV 'Last Shot' drops Thursday, 6/14 on the 20th anniversary of the Boss' final champi… https://t.co/8Qt9ahyT7E" +06/07/2018,Sports_celeb,@Jumpman23,"Back in style. + +See how @AlealiMay used classic LA hoops and the 90s as inspiration for this summer's hottest drops. #JUMPMAN" +06/07/2018,Sports_celeb,@Jumpman23,"Fully fitted. + +Preview the next two Jordan x @LEVIS collaborations, launching this month. https://t.co/RrpDIokJ0L" +06/07/2018,Sports_celeb,@Jumpman23,RT @dennyhamlin: Fireproof suede is hard to come by.. We have several different color variations but this is the material and shoe it’s cut… +06/06/2018,Sports_celeb,@Jumpman23,RT @trvisXX: JACK 4 HTX BLOCK PARTY https://t.co/wNEdhcllby +06/04/2018,Sports_celeb,@Jumpman23,"Coming up clutch. + +The #AJXXXII Low 'Last Shot' drops Saturday: https://t.co/MioWbRt7E7. https://t.co/ZCpcEN7JH9" +06/03/2018,Sports_celeb,@Jumpman23,"Back to '03. + +The #AirJordan II 'Melo' drops Saturday: https://t.co/WIPSqgQlAc. https://t.co/23VkuO4XG2" +06/02/2018,Sports_celeb,@Jumpman23,"All about the process. + +Explore how @bloody_osiris combines nostalgia and authenticity to style the #AirJordan XIV 'Last Shot'." +06/02/2018,Sports_celeb,@Jumpman23,"Taking it to the next level. + +Pulling inspiration from his brother’s graduation jacket and tie, the @RussWest44… https://t.co/K2D2U0CbU3" +06/01/2018,Sports_celeb,@Jumpman23,"Repping his hometown, @trvisXX introduces his first Jumpman collab. + +The #AirJordan IV 'Travis Scott' drops 6/9:… https://t.co/yd5Oy4qZAe" +06/01/2018,Sports_celeb,@Jumpman23,RT @russwest44: I am always inspired by you Brodie! The #WhyNot Zer0.1 “Masters” is dedicated to all the hard work you put in getting your… +06/01/2018,Sports_celeb,@Jumpman23,"Keep it real. + +The Michael Jordan Icon Edition Authentic Jersey is available now in North America:… https://t.co/4UbObkVfjO" +06/01/2018,Sports_celeb,@Jumpman23,"This is when it becomes a game of lasts. +Last games, last possessions, last shots. +To Love the Game is to own the… https://t.co/ycj88FbFoH" +06/01/2018,Sports_celeb,@Jumpman23,"Love the pressure. +Live for the Last Shot. https://t.co/R4f3cRgV69" +05/31/2018,Sports_celeb,@Jumpman23,"RT @TheNBPA: (3 of 12). + +The NBPA Freshest Award + +Style 👑. Congrats @russwest44!! + +Artist @purehoop, illustrates a portrait honoring the…" +05/28/2018,Sports_celeb,@Jumpman23,RT @NBA: 🙌 Jeff Green is an inspiration to all of us! #ThisIsWhyWePlay 🙌 https://t.co/193iSBDJzZ +05/27/2018,Sports_celeb,@Jumpman23,"🏆🏆🏆🏆🏆🏆 + +Pay tribute to the Boss and his final championship season with a limited edition jersey, available in North… https://t.co/KYVPam5oQo" +05/26/2018,Sports_celeb,@Jumpman23,"RT @GGGBoxing: My new official @Jumpman23 gear is still available, get yours before they run out again. +https://t.co/xYbhucnvTb https://t.…" +05/26/2018,Sports_celeb,@Jumpman23,"Made to impress, on and off the court. + +Read more about how the #AirJordan XI is suited for celebrating the journey." +05/26/2018,Sports_celeb,@Jumpman23,"Top honors. + +The #AirJordan XI 'Cap and Gown' is available now." +05/25/2018,Sports_celeb,@Jumpman23,"Made for medals. + +Get a closer look at the Jordan Zoom Tenacity 88 'Jasari' colorway, inspired by the shoe that dominated the '96 Olympics." +05/25/2018,Sports_celeb,@Jumpman23,"Fit for success. + +The #AirJordan XI 'Cap and Gown' drops tomorrow: https://t.co/Lf4IoKrdwK. https://t.co/yFJnaVJ9zZ" +05/25/2018,Sports_celeb,@Jumpman23,Can't beat heart. https://t.co/1hv7Gl8KyW +05/24/2018,Sports_celeb,@Jumpman23,"Stay authentic. + +The Michael Jordan Icon Edition Authentic Jersey drops in North America on 6/1:… https://t.co/t8qLngSqmk" +05/24/2018,Sports_celeb,@Jumpman23,RT @okcthunder: Thunder duo makes All-NBA. Russ (2nd team) for the 7th time and PG (3rd team) for the 4th time. #ThunderUp⚡️ https://t.co/0… +05/24/2018,Sports_celeb,@Jumpman23,"RT @spurs: LaMarcus Aldridge has been named to the league’s All-NBA Second Team. + +Read → https://t.co/fPsqSzioby https://t.co/A9VktSF7fM" +05/24/2018,Sports_celeb,@Jumpman23,"RT @Pacers: Add 2017-18 All-NBA Third Team to Vic's list of accomplishments this year ✅ + +A big congratulations to @VicOladipo! https://t.co…" +05/24/2018,Sports_celeb,@Jumpman23,"RT @Timberwolves: For the second-straight season, @JimmyButler is All-NBA. 🏅 https://t.co/v4BTnfzDB7" +05/24/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Art of a Champion + +The Women's @Jumpman23 Air Jordan 11 Low 'Rook to Queen' + +Shop 🇺🇸https://t.co/tHI2oF8HhM https://t.co/hy6…" +05/23/2018,Sports_celeb,@Jumpman23,"Top of the class. + +The #AirJordan XI 'Cap and Gown' drops Saturday: https://t.co/n54QmPbZhT. https://t.co/R4QmKeL6TV" +05/23/2018,Sports_celeb,@Jumpman23,"RT @Pacers: 🔒Led the NBA in steals and now named to the 2017-18 NBA All-Defensive First Team. + +Congrats Vic! https://t.co/eMxh1L8W4n" +05/23/2018,Sports_celeb,@Jumpman23,"👑 status. + +The Women's #AirJordan XI Low 'Rook to Queen' drops tomorrow: https://t.co/PKAQ7NDKHP. https://t.co/Sct0rtivxj" +05/23/2018,Sports_celeb,@Jumpman23,Doing it for H-Town. https://t.co/fgxgOIX61E +05/23/2018,Sports_celeb,@Jumpman23,"RT @MooreMaya: Oh, how far we’ve come! So excited to share this with the world & soar higher with my Jordan Brand Family https://t.co/CmPHs…" +05/22/2018,Sports_celeb,@Jumpman23,"@Raymondkenneth Hey @Raymondkenneth, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@doeyjavis Hey @doeyjavis, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@BenOlsem Hey @BenOlsem, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@kcantu20 Hey @kcantu20, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us with y… https://t.co/9cZIwIEUhB" +05/22/2018,Sports_celeb,@Jumpman23,"@BWash_22 Hey @BWash_22, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us with… https://t.co/8wYynVSoMP" +05/22/2018,Sports_celeb,@Jumpman23,"@AnnieB1513 Hey @AnnieB1513, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us wi… https://t.co/hT4ST8lucY" +05/22/2018,Sports_celeb,@Jumpman23,"@Morgs_theONE Hey @Morgs_theONE, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/D4rfzfjEo1" +05/21/2018,Sports_celeb,@Jumpman23,"@MsKathleenPerry Hey @MsKathleenPerry, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster… https://t.co/C25mMe5dSp" +05/21/2018,Sports_celeb,@Jumpman23,"@luramccoy81 Hey @luramccoy81, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us… https://t.co/HQ9t7lDApV" +05/21/2018,Sports_celeb,@Jumpman23,"@Lynx_Dynasty Hey @Lynx_Dynasty, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/yxux3DZT07" +05/21/2018,Sports_celeb,@Jumpman23,"@CoachWolfe13 Hey @CoachWolfe13, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/6Ujm5KuEf7" +05/21/2018,Sports_celeb,@Jumpman23,"@allieware22 @minnesotalynx @LA_Sparks @MooreMaya @WNBA Hey @allieware22, +We see you showing ❤️ to Maya Moore and w… https://t.co/kVS5PqDvTh" +05/21/2018,Sports_celeb,@Jumpman23,"@sportsiren @MooreMaya Hey @sportsiren, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poste… https://t.co/GSTMcmPcSO" +05/21/2018,Sports_celeb,@Jumpman23,"@Coach_LB_Brown Hey @Coach_LB_Brown, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster.… https://t.co/tnDv2zFtIB" +05/21/2018,Sports_celeb,@Jumpman23,"@ed_young_iii Hey @ed_young_iii, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/oA174Hxlkw" +05/21/2018,Sports_celeb,@Jumpman23,"@justicesikakane @WNBA @MooreMaya @minnesotalynx Hey @justicesikakane, +We see you showing ❤️ to Maya Moore and want… https://t.co/0AvZXfnpi4" +05/21/2018,Sports_celeb,@Jumpman23,"@houseofhenry Hey @houseofhenry, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/FmquTkpnFK" +05/21/2018,Sports_celeb,@Jumpman23,"The late Gary Warnett’s candid and prolific sneaker commentary made him one of the culture’s best writers. + +Read mo… https://t.co/BsaJmCSL4q" +05/20/2018,Sports_celeb,@Jumpman23,RT @SLAMonline: Time to soar. https://t.co/jkFRo8HRrw +05/20/2018,Sports_celeb,@Jumpman23,"No bird soars too high, +If she soars with her own wings. https://t.co/OVLkKlkoVi" +05/19/2018,Sports_celeb,@Jumpman23,"Where it all started. + +The #AirJordan I 'Homage to Home' is available now." +05/19/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 32 Low 'Neo' + +Shop 🇺🇸https://t.co/vGglzuSNIs https://t.co/8U2yIUPLyr" +05/19/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Fresh Take. + +The Women’s @Jumpman23 Air Jordan I Rebel XX + +Shop ‘Top 3’ 🇺🇸 https://t.co/ukkvrxHi5p + +Shop ‘Chicago’ 🇺🇸 htt…" +05/18/2018,Sports_celeb,@Jumpman23,"Ready to soar. + +4-time WNBA Finals Champion, @MooreMaya, is poised to build onto her legacy. https://t.co/aSgfm5rjAB" +05/18/2018,Sports_celeb,@Jumpman23,"Suited for summer. + +The #AirJordan I High Zip 'Mica Green' is available now." +05/16/2018,Sports_celeb,@Jumpman23,"New look, classic colorway. + +The Women's #AirJordan I Rebel XX 'Top 3' drops Saturday: https://t.co/HflFO059yO. https://t.co/0239r0lFGW" +05/16/2018,Sports_celeb,@Jumpman23,"Solidifying a title, a legacy and a legend. + +Celebrate the Boss’ last game as a Chicago Bull with a limited edition… https://t.co/W2OxPL3cxh" +05/16/2018,Sports_celeb,@Jumpman23,"Chi-town shoutout. + +The Women's #AirJordan I Rebel XX 'Chicago' drops Saturday: https://t.co/5NdmPElbAX. https://t.co/ycdpQAk2Rz" +05/15/2018,Sports_celeb,@Jumpman23,"Bringing it back. + +The #AirJordan I 'Homage to Home' drops Saturday: https://t.co/5jdM2cfRhT. https://t.co/rNuvQ25UO7" +05/15/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 14 'Desert Sand' + +Shop 🇺🇸 https://t.co/bScES5AVpC https://t.co/RQ68w2Yaw4" +05/15/2018,Sports_celeb,@Jumpman23,"This is the show before the show. +When conferences are claimed, +And each win is a step closer to history." +05/14/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 11 Low 'Binary Blue' + +Shop 🇺🇸https://t.co/PgGJi6fxQf https://t.co/rWaa7rJ3Zm" +05/12/2018,Sports_celeb,@Jumpman23,RT @russwest44: This one for My ManMan!! Make sure y’all grab the “NoNo” color way. Out Now!!! Love you Son! #nono #manman #whynot https://… +05/12/2018,Sports_celeb,@Jumpman23,"For Noah. + +Inspired by his son's birthstone, the @RussWest44 #WhyNot Zer0.1 'No No' is available now." +05/12/2018,Sports_celeb,@Jumpman23,"Next chapter. + +The #AirJordan III 'White/Red' is available now." +05/09/2018,Sports_celeb,@Jumpman23,"Next up. + +Cultural icon Edison Chen introduces the world to his protege and fashion up-and-comer, Elle Hu. #JUMPMAN" +05/09/2018,Sports_celeb,@Jumpman23,"This is when the Point God soars to new heights, +With sights set on a ring. https://t.co/kGI38tnOGN" +05/09/2018,Sports_celeb,@Jumpman23,Persistence pays off. Go get yours @CP3. https://t.co/vIrFgUTxes +05/07/2018,Sports_celeb,@Jumpman23,"A community cornerstone. + +The #AirJordan III 'White/Red' drops Saturday: https://t.co/sPGCHyiVpj. https://t.co/mvd5sp1u6O" +05/07/2018,Sports_celeb,@Jumpman23,"@cjallday_7 Cap ✅ +Gown ✅ +Kicks ✅" +05/06/2018,Sports_celeb,@Jumpman23,"When the stage gets bigger, +and momentum swings with every second." +05/05/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The Women's @Jumpman23 Air Jordan 1 'Satin Shattered Backboard' + +Shop 🇺🇸 https://t.co/coqBz3LOxF https://t.co/FXYplThTdW" +05/04/2018,Sports_celeb,@Jumpman23,"Made for those who shatter expectations. + +The Women's #AirJordan I 'Shattered Backboard' drops tomorrow:… https://t.co/lP4MSDefak" +05/03/2018,Sports_celeb,@Jumpman23,"Iconic inspiration. + +Reina Koyano describes how Jordans play an integral part in her illustrations. #JUMPMAN" +05/03/2018,Sports_celeb,@Jumpman23,@RedSox Mookie making noise. +05/02/2018,Sports_celeb,@Jumpman23,"Heat wave. + +The Women's #AirJordan I Premium 'Desert Sand' is available now." +05/01/2018,Sports_celeb,@Jumpman23,RT @russwest44: Do You. #whynot 🤷🏾‍♂️ Tag me when you customize your pair .... get creative cause @Jumpman23 is sending out Why Not? Tshirt… +05/01/2018,Sports_celeb,@Jumpman23,All that matters is you do you. #WhyNot https://t.co/Vc8wxKIx31 +05/01/2018,Sports_celeb,@Jumpman23,"Freestyle or stay the course. Make a statement with markers, pens or paint. #WhyNot https://t.co/Tp8ilrlTPs" +05/01/2018,Sports_celeb,@Jumpman23,"Start with a blank canvas. + +The @RussWest44 #WhyNot Zer0.1 'Do You' is available now. https://t.co/Kd1I9W4fig" +05/01/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 1 + +Shop 'Blue Moon' 🇺🇸 https://t.co/oh9ghTBg8X + +Shop 'Clay Green' 🇺🇸 https://t.co/l16CO4ORhT https…" +04/30/2018,Sports_celeb,@Jumpman23,"Late birthday present, @trvisXX. + +Coming soon. https://t.co/UlhHr5Y5KS" +04/30/2018,Sports_celeb,@Jumpman23,"@trvisXX Happy born day, fam." +04/30/2018,Sports_celeb,@Jumpman23,"Make it your own. + +The @RussWest44 #WhyNot Zer0.1 ‘Do You’ drops tomorrow with customization markers in every box. https://t.co/0txThvenAE" +04/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 3 'Tinker' + +Shop 🇺🇸 https://t.co/stcxqvlCzo https://t.co/MP0IhwJno0" +04/29/2018,Sports_celeb,@Jumpman23,"This is the second act. +When the field gets narrower, +And the margin for error gets even smaller." +04/29/2018,Sports_celeb,@Jumpman23,"RT @Jumpman23: This is when you leave it all on the court, +Or spend the summer wishing you did." +04/28/2018,Sports_celeb,@Jumpman23,"This is when you leave it all on the court, +Or spend the summer wishing you did." +04/28/2018,Sports_celeb,@Jumpman23,"Top flight. + +The #AirJordan XI Low 'Cool Grey' is available now." +04/28/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Art of a Champion + +The @Jumpman23 Air Jordan 1 'Pass the Torch' + +Shop 🇺🇸 https://t.co/ntsqWyhyEG https://t.co/JgaVosHYLn" +04/28/2018,Sports_celeb,@Jumpman23,“Series ain’t over.” - @VicOladipo https://t.co/Ou1xIYz83L +04/28/2018,Sports_celeb,@Jumpman23,.@VicOladipo means business. https://t.co/WL0q4IZkYG +04/27/2018,Sports_celeb,@Jumpman23,"More than a shoe. + +Discover the #AirJordan III’s journey from PE to the Hall of Fame and why its impact off the cou… https://t.co/KijwuIGgqF" +04/27/2018,Sports_celeb,@Jumpman23,"Thank you for your dedication to the next generation of flight, Mr. Lara. We're honored to be a part of your classr… https://t.co/dRcWFXNeCO" +04/27/2018,Sports_celeb,@Jumpman23,"RT @nikestore: MOP + +The @Jumpman23 Air Jordan 9 Melo + +Shop 🇺🇸 https://t.co/599hmzRhDu https://t.co/xVb4DMY0lY" +04/26/2018,Sports_celeb,@Jumpman23,RT @JabariParker: Humbled to be named a finalist for this year's NBA Community Assist Award for my work with @MilwaukeeMPS. Show your suppo… +04/26/2018,Sports_celeb,@Jumpman23,RT @mconley11: Honored to be recognized as a finalist for the #NBACommunityAssist Award again! I would love your support by sharing this an… +04/26/2018,Sports_celeb,@Jumpman23,Brodie’s not done yet. https://t.co/GXE6w9EpAU +04/26/2018,Sports_celeb,@Jumpman23,What he said 👇 https://t.co/HwkNMmS88H +04/25/2018,Sports_celeb,@Jumpman23,"This is when failure becomes fuel for next season, +And glory can be short lived." +04/24/2018,Sports_celeb,@Jumpman23,"Showing out. + +@AlealiMay talks summer looks as she and her friends gear up for festival season. #JUMPMAN" +04/24/2018,Sports_celeb,@Jumpman23,"RT @aardodson: Since 2015, @Jumpman23's Wings Program has given over 200 kids full rides to college. + +Getting there once seemed bleak for…" +04/24/2018,Sports_celeb,@Jumpman23,Dimes on dimes. https://t.co/jscHRDSRQG +04/23/2018,Sports_celeb,@Jumpman23,"Cool and collected. + +The #AirJordan XI Low 'Cool Grey' drops Saturday: https://t.co/KcFSBTaIKN. https://t.co/TivtqmeGv6" +04/23/2018,Sports_celeb,@Jumpman23,One Moore for the trophy case. https://t.co/lPfeaOPK7G +04/22/2018,Sports_celeb,@Jumpman23,Keeping the dream alive. https://t.co/ujOPFPLQNx +04/22/2018,Sports_celeb,@Jumpman23,Rising to the occasion. https://t.co/GKhrt6xc7a +04/20/2018,Sports_celeb,@Jumpman23,"For Chicago. + +Discover how classic colorways combine to make up the Boss' signature look on the Air Jordan I 'Homag… https://t.co/3m8D0hRa32" +04/20/2018,Sports_celeb,@Jumpman23,"A classic returns. + +The #AirJordan X 'Shadow' is available now." +04/19/2018,Sports_celeb,@Jumpman23,"Highlight reel. + +The Best Hand in the Game collection introduces four new takes on the Air Jordan I. https://t.co/wQAsG3rG4x" +04/19/2018,Sports_celeb,@Jumpman23,Take notes. https://t.co/uVSNh8qC3M +04/19/2018,Sports_celeb,@Jumpman23,Thunder and lightning. https://t.co/Tfyvfq4UCS +04/18/2018,Sports_celeb,@Jumpman23,'Tis the season. https://t.co/De4FaK8N8J +04/18/2018,Sports_celeb,@Jumpman23,"Championship fit. + +The #AirJordan X 'Shadow' drops Friday in full family sizing: https://t.co/n6GTtgqN49. https://t.co/PjVeDjshPB" +04/17/2018,Sports_celeb,@Jumpman23,Everyone wants to be Brodie. https://t.co/kvWq8wk1mf +04/17/2018,Sports_celeb,@Jumpman23,".@GGGBoxing has only one special ingredient. +#JUMPMAN https://t.co/1SsyTf5BYL" +04/16/2018,Sports_celeb,@Jumpman23,"Different mindset. + +Discover what drives @CarmeloAnthony and how he adjusted his game to get back to the playoffs. #JUMPMAN" +04/16/2018,Sports_celeb,@Jumpman23,Let 'em talk. https://t.co/3En2ETaYcr +04/16/2018,Sports_celeb,@Jumpman23,"RT @PlayersTribune: .@VicOladipo knows a thing or two about winning in Indiana. + +He and the @Pacers are looking to make some noise in the…" +04/15/2018,Sports_celeb,@Jumpman23,Ice runs through @VicOladipo’s veins. https://t.co/OqUorNTRps +04/15/2018,Sports_celeb,@Jumpman23,"RT @carmeloanthony: FROZEN MOMENT - NEW CHAPTER +@Jumpman23 +#STAYME7O +#JUMPMAN https://t.co/6tXrviSCi6" +04/14/2018,Sports_celeb,@Jumpman23,The season starts now. #NBAPlayoffs +04/14/2018,Sports_celeb,@Jumpman23,"This is when the Love of the Game shines through. +From stadium to street court, +Blacktop to your own backyard;" +04/14/2018,Sports_celeb,@Jumpman23,"This is when process meets proving ground, +Pressure meets opportunity, +And patience pays off." +04/14/2018,Sports_celeb,@Jumpman23,This is when lights get brighter and fans get louder. +04/14/2018,Sports_celeb,@Jumpman23,"This is when MVP’s become champions, +idols become rivals, +And careers become legacies." +04/14/2018,Sports_celeb,@Jumpman23,To those who Love the Game… +04/14/2018,Sports_celeb,@Jumpman23,"Standout. + +The #AirJordan I 'Shadow' is available now." +04/13/2018,Sports_celeb,@Jumpman23,"Golden rule. + +The Women's #AirJordan XI Low 'Rose Gold' is available now." +04/12/2018,Sports_celeb,@Jumpman23,"Original one. + +The #AirJordan I 'Shadow' drops Saturday: https://t.co/VGJgVLuCWy. https://t.co/xCTCkZ0dWd" +04/12/2018,Sports_celeb,@Jumpman23,"If you don’t want it, @russwest44 is gonna get it. + +The Brodie has the triple-double crown, now he’s going for a r… https://t.co/JBpfLChIzN" +04/12/2018,Sports_celeb,@Jumpman23,Reign on. #WhyNot https://t.co/mvm5IrspIV +04/12/2018,Sports_celeb,@Jumpman23,"Made for this. + +Celebrate the Brodie and his triple-double legacy with the @RussWest44 #WhyNot Zer0.1 '3D King'." +04/11/2018,Sports_celeb,@Jumpman23,"Giving back. + +Chris Young and Roy Walker talk about the values of mentorship and how the community is built around… https://t.co/9SVnZTlrAm" +04/11/2018,Sports_celeb,@Jumpman23,"@KristineLeahy @russwest44 We see you, Kristine. The ‘Why Not’ Tour shirts were hot, but we have the last one in a… https://t.co/3k0YRtISF1" +04/10/2018,Sports_celeb,@Jumpman23,"Original remastered. + +Three iconic colorways return in the Women's 2018 Summer collection. https://t.co/8FBkG3HITb" +04/10/2018,Sports_celeb,@Jumpman23,"RT @NBA: Clinched! + +The @okcthunder come back from 18 down for the 115-93 W and a playoff berth! + +Russ: 23 PTS, 18 REB, 13 AST +PG: 27 PTS…" +04/10/2018,Sports_celeb,@Jumpman23,"A look back on the legendary day that @RussWest44 took the triple-double 👑. + +https://t.co/VUOaL6ZXEC" +04/09/2018,Sports_celeb,@Jumpman23,"Why not break records? + +On 4.9.17 @RussWest44 made history. Recognize greatness with the #WhyNot Zer0.1 ‘3D King’:… https://t.co/7yWHObwAIp" +04/09/2018,Sports_celeb,@Jumpman23,"Path to glory. + +Take a closer look at the moments that inspired the Art of a Champion collection. https://t.co/USQE0pBKnO" +04/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: On this day last year, @RussWest44 changed history forever. Celebrate the day the Brodie became the Triple-Double King with…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Hand over the crown. + +@EmmittWilliams6 drops 44 points, passing @KingJames for the most ever in the Boy's Jordan Brand…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 144 +⚫️: 136 + +Victory royale. The Home team wraps up the win in the 17th annual Jordan Brand Classic. #NEXTvsNEXT htt…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 86 +⚫️: 81 + +Crunch time. The boys teams are leaving it all on the floor with 14 minutes left in the game. #NEXTvsNEXT" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 89 +⚫️: 88 + +Comeback season. The Home team overcomes a double-digit deficit to lock up the W. #NEXTvsNEXT https://t.c…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 54 +⚫️: 44 + +On the clock. The girls teams are putting in work with one half to go. #NEXTvsNEXT" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Calm before the storm. #NEXTvsNEXT + +Girls: 2:30pm ET on WatchESPN +Boys: 5:00pm ET on ESPN2 and WatchESPN https://t.co/Bs…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: New 🔥 + +The Class of XXXII is set for the main stage in their AJXXXII PEs. #NEXTvsNEXT https://t.co/rUnE5HmfZ7" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Ready for the spotlight. + +Watch the top prospects in the country battle for bragging rights at 5:00pm ET on ESPN2 and Wa…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Gametime. + +Watch the top prospects in the country battle for bragging rights at 2:30pm ET on WatchESPN. #NEXTvsNEXT htt…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Ready to ball. + +The boys from the Class of XXXII scrimmage in preparation for tomorrow’s game at 5:00pm ET on ESPN2 and…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Gameday prep. + +The girls from the Class of XXXII hit the court one more time before tomorrow’s tip-off at 2:30 ET. #NEXT…" +04/07/2018,Sports_celeb,@Jumpman23,"Under the radar. + +The #AJXXXII 'Stealth' is available now." +04/07/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 18 'Gym Red/Black' + +Shop 🇺🇸 https://t.co/qfv7k0pvBv https://t.co/mhB9S7DL6V" +04/07/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Welcome to JBC. + +Peep our Instagram Story to see the next wave kick it off court. #NEXTvsNEXT https://t.co/82e9uJjmlh" +04/06/2018,Sports_celeb,@Jumpman23,Summer heat. 🔥 https://t.co/OSs5MKDK23 +04/06/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Icons Evolved + +The Women's @Jumpman23 @nikesportswear 'The 1 Reimagined' Collection + +Shop 🇺🇸 https://t.co/Hd7tmUDFP6 https:/…" +04/06/2018,Sports_celeb,@Jumpman23,"No shortcuts to the top. + +@CP3 talks playing JV ball and his journey to the league. #JUMPMAN" +04/06/2018,Sports_celeb,@Jumpman23,The closer. https://t.co/SGdUvyY7Xa +04/05/2018,Sports_celeb,@Jumpman23,"RT @NickDePaula: Inside the delayed timeline and process of designing Chris Paul’s newest Jordan sneaker, the CP3.11. + +@CP3 becomes just th…" +04/03/2018,Sports_celeb,@Jumpman23,Going for history. #GoBlue https://t.co/XSTJ1IUzvT +04/02/2018,Sports_celeb,@Jumpman23,"High key. + +The Women's #AirJordan I Lifted 'Rose Gold' is available now: https://t.co/mc51UU0tW7. https://t.co/Q0HaBJGxs6" +04/01/2018,Sports_celeb,@Jumpman23,Not done yet. #GoBlue https://t.co/5jHRRB4Ivo +03/31/2018,Sports_celeb,@Jumpman23,"Leave it on the floor. + +@umichbball is ready to earn their spot in the National Championship. #GoBlue" +03/31/2018,Sports_celeb,@Jumpman23,Call him a Hall of Famer. https://t.co/6gpNOS20Fh +03/31/2018,Sports_celeb,@Jumpman23,"Searching for baskets. + +The #AirJordan XI Low 'Iridescent' is available now." +03/29/2018,Sports_celeb,@Jumpman23,"Ready for the show. + +The Jordan Baseball roster is geared up for Opening Day. https://t.co/H1yKmFUjGv" +03/29/2018,Sports_celeb,@Jumpman23,"RT @SLAMonline: The new all-time leading scorer in Hornets history! + +Congrats to @KembaWalker https://t.co/OJT2fCAbSF" +03/29/2018,Sports_celeb,@Jumpman23,"Proving ground. + +Al Jafiliya is where players in Dubai put their love for the game on full display." +06/26/2018,Sports_celeb,@kobebryant,Hydration fit for an MVP. Congrats @JHarden13. Check @DrinkBODYARMOR for your limited-edition bottle.… https://t.co/DVnyOBTzqr +06/22/2018,Sports_celeb,@kobebryant,Accept that the present is made to learn from the past. Watch the latest episode of Musecage Basketball Network her… https://t.co/Heqm9LU6L3 +06/22/2018,Sports_celeb,@kobebryant,My man @icecube getting back at it with the second season of @thebig3! https://t.co/mNM0yNKKEJ +06/22/2018,Sports_celeb,@kobebryant,"Attention @NBADraft Class of 2018, your first assignment is to watch tonight’s episode of #Detail. We’re going back… https://t.co/awhZBUKsWV" +06/12/2018,Sports_celeb,@kobebryant,"It's a wrap on the @warriors @cavs #NBAFinals so for the next episode of #DETAIL, we're looking ahead to next seaso… https://t.co/ShYBw349Cd" +06/12/2018,Sports_celeb,@kobebryant,RT @ZachLowe_NBA: What does Kevin Durant want? https://t.co/h11FglePQ6 +06/11/2018,Sports_celeb,@kobebryant,"RT @AlexKennedyNBA: .@KobeBryant discussed his influence on today's NBA players, whether teams have tried luring him out of retirement, how…" +06/11/2018,Sports_celeb,@kobebryant,"WE had to face the Spurs EVERY post season pretty much. Not to mention the first super team in Boston but hey, what… https://t.co/SgLpYOJfJz" +06/10/2018,Sports_celeb,@kobebryant,Will power https://t.co/BO9zTSmI2k +06/05/2018,Sports_celeb,@kobebryant,Wow 🙌🏾 https://t.co/r29Jqv18qo +06/03/2018,Sports_celeb,@kobebryant,On tonight's episode of DETAIL... We're breaking down @kevinlove's defensive looks in this @cavs @warriors series.… https://t.co/xaX0NU9Ky3 +06/01/2018,Sports_celeb,@kobebryant,Athletes as creators? Yep. Met another one this week. Congrats @MalcolmJarod on your children's book about having a… https://t.co/WE1FQFRU3s +06/01/2018,Sports_celeb,@kobebryant,💩 play. Flush it. Move on #nbafinals2018 +05/31/2018,Sports_celeb,@kobebryant,#growup https://t.co/6kVVV7bzSa +05/31/2018,Sports_celeb,@kobebryant,"It's time for the #NBAFinals and the next episode of DETAIL is up on @espn+. This time, we're looking at how… https://t.co/3JeoxKb3SI" +05/29/2018,Sports_celeb,@kobebryant,"""The Mamba Mentality: How I Play"" book comes out October 23, 2018! Learn how I approached the process and the craft… https://t.co/uUOymSgLKk" +05/28/2018,Sports_celeb,@kobebryant,"RT @alexbazzell24: First look of @PHEEsespieces new, release point. @kobebryant can validate this isn’t a fluke lol she hit 20+ in a row w/…" +05/28/2018,Sports_celeb,@kobebryant,#Annie #Oscar #Emmy safe to say I’m focused on another mountain but I’m guessing it’s hard to fathom athletes suppo… https://t.co/3YQpCHhH67 +05/28/2018,Sports_celeb,@kobebryant,We can enjoy one without tearing down one. I love what he’s doing. Don’t debate what can’t be definitively won by a… https://t.co/MHjvujWPuB +05/28/2018,Sports_celeb,@kobebryant,#Lebranium 👏🏾 +05/28/2018,Sports_celeb,@kobebryant,🙏🏾 https://t.co/X9K8jHnkmQ +05/28/2018,Sports_celeb,@kobebryant,#mambamentality 🙏🏾 #Congrats https://t.co/pQdn0mISDH +05/27/2018,Sports_celeb,@kobebryant,"RT @ConnecticutSun: New career high ✔️ + +@rachelbanham_1 showed up to work last night, locking in 14 points. https://t.co/2ZQ4yhyzNk" +05/26/2018,Sports_celeb,@kobebryant,Get em lil sis 🙌🏾 #goldmamba https://t.co/rAwJhtT8as +05/25/2018,Sports_celeb,@kobebryant,👀 @FCHWPO We're looking at the @celtics pushing hard in transition vs the @cavs in the next episode of DETAIL. It'… https://t.co/h8VLBfCeIm +05/25/2018,Sports_celeb,@kobebryant,"RT @ZachLowe_NBA: ""There is no way we can do what we do without him."" What Trevor Ariza, always playing and rarely discussed, means to the…" +05/22/2018,Sports_celeb,@kobebryant,👀 @StephenCurry30. Check out the newest Detail on the @ESPN+ app from Sunday's @warriors @HoustonRockets game. We… https://t.co/BgNnUtFrIQ +05/20/2018,Sports_celeb,@kobebryant,🙌🏾 https://t.co/g1pbTIYoZz +05/19/2018,Sports_celeb,@kobebryant,Un grande. Un mito @gianluigibuffon @juventusfc #buffon #juve +05/18/2018,Sports_celeb,@kobebryant,"RT @DrinkBODYARMOR: Basketball Legend @DianaTaurasi is #ObsessedWithBetter. 🏀🔥🐐 +Welcome to #TeamBODYARMOR. #BODYARMORLYTE +cc: @KobeBryant 🔈…" +05/17/2018,Sports_celeb,@kobebryant,Many thanks to @TheView for inviting me to the show to meet the amazing Thompson family. I'm honored to help them r… https://t.co/CLhBxUfBhq +05/17/2018,Sports_celeb,@kobebryant,🙏🏾 despite me calling them the evil empire while I was playing lol @espn has been a GREAT partner #moretocome https://t.co/DKfGC5lVlG +05/17/2018,Sports_celeb,@kobebryant,Why? Because I am incapable of coming up with and writing an idea on my own? #dearbasketball #detail #myideas… https://t.co/BjNnPEqtDq +05/17/2018,Sports_celeb,@kobebryant,👀@jaytatum0 is the next subject of DETAIL. Watch my analysis from Game 2 of the Eastern Conference Finals on the E… https://t.co/ar4wYFUgLc +05/13/2018,Sports_celeb,@kobebryant,Thank you. Will do #Detail https://t.co/JvT2cOhR1R +05/13/2018,Sports_celeb,@kobebryant,🙏🏾 #detail https://t.co/SUTvXhU3B8 +05/13/2018,Sports_celeb,@kobebryant,Haha that’s a good look @Arike_O #mambabarking lol https://t.co/rqPxTM2x1I +05/13/2018,Sports_celeb,@kobebryant,Yup #bookem https://t.co/4uTIH9N68G +05/12/2018,Sports_celeb,@kobebryant,"👀@KingJames In the next episode of Detail, I take a look at Cavs/Celtics regular season games before they head into… https://t.co/LugzwXEdBg" +05/12/2018,Sports_celeb,@kobebryant,💯 https://t.co/FwaOi0ftwJ +05/12/2018,Sports_celeb,@kobebryant,Tomorrow https://t.co/rk1mMEMK3e +05/11/2018,Sports_celeb,@kobebryant,🙌 @paugasol https://t.co/FYVk5odSHF +05/06/2018,Sports_celeb,@kobebryant,👀 @Jrue_Holiday11 is the focus for DETAIL's newest episode. Watch my analysis of Friday night's game now on the ESP… https://t.co/KfafKgOEWe +05/03/2018,Sports_celeb,@kobebryant,Lol Saturday #Detail https://t.co/5ftIsJeAOX +05/01/2018,Sports_celeb,@kobebryant,👀 @spidadmitchell is the focus for DETAIL's newest episode. Watch my analysis of yesterday's game now on the ESPN+… https://t.co/nMRpyALeEF +04/23/2018,Sports_celeb,@kobebryant,@BelieveInBlopp Sunday #Detail +04/22/2018,Sports_celeb,@kobebryant,Hahaha #congrats #round2 https://t.co/8aR028E0F4 +04/20/2018,Sports_celeb,@kobebryant,Ha! Next #detail episode will be the 30th. I haven’t decided which player will be the focus. https://t.co/N0zVcSZJUq +04/19/2018,Sports_celeb,@kobebryant,🙏🏾 #coachpop +04/18/2018,Sports_celeb,@kobebryant,"Thanks @Gatorade, @DrinkBODYARMOR will take it from here... #ObsessedWithBetter #ObsessionIsNatural @JHarden13… https://t.co/A2P5mk4VP5" +04/18/2018,Sports_celeb,@kobebryant,#ObsessedWithBetter #obsessionisnatural @DrinkBODYARMOR @darrenrovell https://t.co/CQRP827nbi +04/17/2018,Sports_celeb,@kobebryant,Nah... I coach with content #Detail https://t.co/X8z7i4UJp8 +04/17/2018,Sports_celeb,@kobebryant,My man (Denzel voice) #DETAIL https://t.co/sD2aKshSws +04/17/2018,Sports_celeb,@kobebryant,That’s what I LOVE to hear @mrcramher If he can start understanding these concepts at 12 then how high will his bas… https://t.co/EUtAiZRgzO +04/17/2018,Sports_celeb,@kobebryant,🙏🏾 #detail https://t.co/Gor8FfD4CS +04/16/2018,Sports_celeb,@kobebryant,👀 @demar_derozan #Detail. Watch Episode 2 now on ESPN+ https://t.co/qzWPnGEJUa +04/15/2018,Sports_celeb,@kobebryant,#BEYCHELLA +04/12/2018,Sports_celeb,@kobebryant,"Determination wins games, but Detail wins championships...Check out Detail, our new show from Granity Studios, on E… https://t.co/HdZUd5izg1" +04/11/2018,Sports_celeb,@kobebryant,LOVE IT https://t.co/H80FOjRuhm +04/09/2018,Sports_celeb,@kobebryant,Congrats @ivypochoda 🙌 https://t.co/nkMq703BZ5 +04/06/2018,Sports_celeb,@kobebryant,"RT @TheEllenShow: Just shooting some hoops with the star of the NCAA season @Arike_o, @KobeBryant and @IceCube. No big deal. https://t.co/D…" +04/05/2018,Sports_celeb,@kobebryant,"RT @VandyWBB: What @kobebryant said 👇🏽👇🏽👇🏽 + https://t.co/SmrYab39P9" +04/04/2018,Sports_celeb,@kobebryant,Wow! Dear Basketball nominated for three Sports Emmys and a Webby! Thank you for keeping the love going for our an… https://t.co/KKl22R3UNF +04/03/2018,Sports_celeb,@kobebryant,Congrats @NovaMBB #champs 🙌 https://t.co/2xySr5rhCA +04/02/2018,Sports_celeb,@kobebryant,WOW! @Arike_O #lifecomplete #MambaMentality +04/02/2018,Sports_celeb,@kobebryant,@Arike_O WOW +03/31/2018,Sports_celeb,@kobebryant,Shoutout to two of my all time fav @UConnWBB players on the end of an amazing collegiate career @KayNurse11 @MochaTrapuccino 🙌🙌 +03/31/2018,Sports_celeb,@kobebryant,Nah... it’s complete by finishing the job on Sunday @Arike_O #MambaMentality https://t.co/pvL95JCZHn +03/31/2018,Sports_celeb,@kobebryant,@NancyLieberman @ncaawbb Great to catch up with you @NancyLieberman and witness two epic games. The future of women… https://t.co/HGiIsUvpUd +03/31/2018,Sports_celeb,@kobebryant,Big time shot Arike! We are a @UConnWBB family but we love seeing great players making great plays. I know my lil s… https://t.co/pH6cpKARhA +03/30/2018,Sports_celeb,@kobebryant,From the Book of Antetokounmpo: The greatest gift is understanding HOW to use the gifts we’ve been given.… https://t.co/qKLB96eyAY +03/22/2018,Sports_celeb,@kobebryant,👀 @DeMar_DeRozan #kobe360 #MambaArmy https://t.co/jSuvuO3LTY +03/16/2018,Sports_celeb,@kobebryant,I LOVED IT 🙌 https://t.co/o4cfzMlh3c +03/16/2018,Sports_celeb,@kobebryant,Well deserved @tomi_adeyemi I read it in just about a day!! LOVED it #ChildrenofBloodandBone #congrats https://t.co/8wTh0OwKq2 +03/09/2018,Sports_celeb,@kobebryant,Jimmy dresses up my Oscar and I talk about what’s coming next - tonight on ABC #KIMMEL #DearBasketball https://t.co/OS2gZrZJnb +03/04/2018,Sports_celeb,@kobebryant,🙏🏾🙏🏾 https://t.co/5KH8psknD0 +03/03/2018,Sports_celeb,@kobebryant,🙌 @33katielou @UConnWBB https://t.co/mDLwSnF2cE +03/02/2018,Sports_celeb,@kobebryant,RT @judyseto: You too can get championship care for your injuries and help to prevent future ones. #GetPT1st @MoveForwardPT @kobebryant htt… +03/01/2018,Sports_celeb,@kobebryant,"When the world stops, there’s only one option - #ChooseGo #Nike https://t.co/JKJsrBpbBU" +03/01/2018,Sports_celeb,@kobebryant,Cheryl Boone Isaacs 🙌 #ICONMANN https://t.co/iHCRPNJ8AV +03/01/2018,Sports_celeb,@kobebryant,Lace up. Get out. #ChooseGo https://t.co/Yem7pKthUW +02/16/2018,Sports_celeb,@kobebryant,On my way LA! https://t.co/TZUWXqpTo3 +02/15/2018,Sports_celeb,@kobebryant,"Shark or Seal, Lion or Gazelle, Wolf or Sheep...which one are you? Watch the latest episode of Musecage Basketball… https://t.co/SVWmlY1hMY" +02/13/2018,Sports_celeb,@kobebryant,"RT @UConnWBB: BIG NEWS! CD will be inducted into the Women's Basketball Hall of Fame!! Congrats CD!! + +@WBHOF // #UConnNation // #DemandMor…" +02/12/2018,Sports_celeb,@kobebryant,Proud to have my own Granity Studios be a part of the Evolve Entertainment Fund. L.A. is a global hub of creativity… https://t.co/SzEklCEDrd +02/12/2018,Sports_celeb,@kobebryant,"Happy birthday to the 🐐, my muse, my mentor and friend @RealBillRussell" +02/09/2018,Sports_celeb,@kobebryant,Much luv to @JordanClarksons and @Larrydn22 two of my fav young guns. Do great things! You know where to find me sh… https://t.co/kVBqH4glfw +02/08/2018,Sports_celeb,@kobebryant,RT @Eagles: Watch live as the World Champion Philadelphia Eagles celebrate the city's first-ever Super Bowl. https://t.co/sctJ7uEuDp +02/08/2018,Sports_celeb,@kobebryant,I wish I could be there @greengoblin but building a studio from the ground up got me in #Mambamode not to mention m… https://t.co/fDBShmMf9N +02/07/2018,Sports_celeb,@kobebryant,Loved all the Protro thoughts. @BrianPatrickP @ImGeraLd @AirMikey were fastest and closest. Congrats and please hit… https://t.co/dJKTWszLLF +02/07/2018,Sports_celeb,@kobebryant,Dream Big things then Do Big things @WNBAPrez the @WNBA future is bright https://t.co/DrpdN2SbQh +02/07/2018,Sports_celeb,@kobebryant,Kobe 1 Protro. 2005 design. Modern day technology. Drops Feb. 17. #yourewelcome https://t.co/ltNbRYqBM2 +02/07/2018,Sports_celeb,@kobebryant,Protro = Performance Retro +02/07/2018,Sports_celeb,@kobebryant,🙏🏾 https://t.co/6lHlUpKV19 +02/06/2018,Sports_celeb,@kobebryant,"RT @jemelehill: Spent this morning chatting w/ legend @kobebryant. Got his thoughts on his relationship w/ Bill Russell, the evolution of b…" +02/06/2018,Sports_celeb,@kobebryant,"RT @TheUndefeated: Be a part of our live audience taping for our BHM special #DearBlackAthlete in Birmingham, Ala. on Feb. 7. +Doors open a…" +02/05/2018,Sports_celeb,@kobebryant,What does the word “Protro” mean? 🤔 Special prize to the first to reply with the correct guess. +02/05/2018,Sports_celeb,@kobebryant,YES!!!!!!!!!!!! #EAGLES #SUPERBOWLCHAMPS #PHILLY YES!!!!!!!!!!!!!!!!! +02/04/2018,Sports_celeb,@kobebryant,It’s go time #EaglesNation #FlyEagleFly +02/04/2018,Sports_celeb,@kobebryant,🙌 https://t.co/bMubNoZTZ0 +02/04/2018,Sports_celeb,@kobebryant,💪 https://t.co/gp5JbAZx2h +02/03/2018,Sports_celeb,@kobebryant,🙌 @VULions https://t.co/3SIgKM1VgF +02/02/2018,Sports_celeb,@kobebryant,Yup! I LOVE it @DrinkBODYARMOR #fam #ObsessionIsNatural https://t.co/Qq599gJq14 +02/01/2018,Sports_celeb,@kobebryant,Congrats and well deserved @SerenaWinters wish you nothing but epicness!! #laker4life #brightfuture https://t.co/b4sIB2VYbx +02/01/2018,Sports_celeb,@kobebryant,@MilesBrown 👍 #Blackish +02/01/2018,Sports_celeb,@kobebryant,Thank you for having me! I learned so much in just the one day!@violadavis you are truly one of the greats 🙌… https://t.co/oe8OD8w8TU +01/31/2018,Sports_celeb,@kobebryant,Rest In Peace my brother 🙏🏾#RasualButler +01/31/2018,Sports_celeb,@kobebryant,@JHarden13 #60 #tripdub @DrinkBODYARMOR #obsessionisnatural +01/30/2018,Sports_celeb,@kobebryant,Great to witness the whole @shondarhimes family doing work today. Happy early bday @kerrywashington! https://t.co/ZPJuWP8vBV +01/29/2018,Sports_celeb,@kobebryant,Congrats to my man @kendricklamar on a big night last night #GrammyAwards #damn +01/28/2018,Sports_celeb,@kobebryant,Simple @rogerfederer = 🐐 #AustralianOpen +01/27/2018,Sports_celeb,@kobebryant,Get healthy @boogiecousins You will comeback stronger. If you need anything on my end just holla 🙏🏾 +01/24/2018,Sports_celeb,@kobebryant,From #Akron to #30k @KingJames well done my brotha +01/23/2018,Sports_celeb,@kobebryant,What?? This is beyond the realm of imagination. It means so much that the @TheAcademy deemed #DearBasketball worthy… https://t.co/dC7Yxkcioo +01/22/2018,Sports_celeb,@kobebryant,Getting there wasn’t the goal @Eagles let’s finish the job #focus #superbowl +01/21/2018,Sports_celeb,@kobebryant,RT @serenawilliams: I've conquered a lot of things... blood clots in my lungs- twice... knee and foot surgeries... winning grand slams bein… +01/21/2018,Sports_celeb,@kobebryant,#clutch https://t.co/W2d1gdP0eI +01/19/2018,Sports_celeb,@kobebryant,"RT @MSU_WBasketball: 👀 the alternate @Nike uni’s and @kobebryant AD’s 👟 we’ll be rocking on Saturday 🔥 +#GoGreen #SwooshFam #Nike https://t…" +01/16/2018,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: Congrats to @Maddie_Mastro on qualifying to rep the USA in PyeongChang. 🇺🇸🇺🇸🇺🇸 #TeamBODYARMOR https://t.co/HSVMmmI6O0 +01/15/2018,Sports_celeb,@kobebryant,🙌 https://t.co/4wsJCmOuGL +01/15/2018,Sports_celeb,@kobebryant,Keep moving! #ThankYouMLK50 https://t.co/tdbHQlQb3s +01/12/2018,Sports_celeb,@kobebryant,"""Detail"" - my new show from Granity Studios - hits ESPN in March. Viewers can expect to learn how the pros better… https://t.co/TWVweCfePz" +01/12/2018,Sports_celeb,@kobebryant,Have you seen #DearBasketball yet? Let me know what you think below and check out the #BTS documentary!… https://t.co/Rcy0Kh9WMF +01/11/2018,Sports_celeb,@kobebryant,#16 https://t.co/7xS5IKVrWl +01/05/2018,Sports_celeb,@kobebryant,"“You gave a six-year-old boy his Laker dream, and I’ll always love you for it.” https://t.co/J0hxcfGtLW… https://t.co/I2ykijUseH" +01/05/2018,Sports_celeb,@kobebryant,Catch #Kimmel tonight on ABC! #DearBasketball https://t.co/fYb5FZbsrm +01/04/2018,Sports_celeb,@kobebryant,Shooting is the key that opens every door the game has to offer. Watch the latest episode of Musecage Basketball Ne… https://t.co/pU8oVw9sL6 +01/03/2018,Sports_celeb,@kobebryant,#DeRozan https://t.co/iowndyuCwQ +12/30/2017,Sports_celeb,@kobebryant,Working with @GlenKeanePrd & John Williams on #DearBasketball was surreal. So much heart and soul went into this sp… https://t.co/1fQRdzYWbi +12/28/2017,Sports_celeb,@kobebryant,RT @ramonashelburne: I always love when @ZachLowe_NBA nerds out on jerseys. But nothing about the Lakers new 🐍 uniforms nerdy. https://t.co… +12/28/2017,Sports_celeb,@kobebryant,RT @espn: Mamba Mentality inspired. https://t.co/WdMioPOtFk +12/23/2017,Sports_celeb,@kobebryant,Evolution or extinction...this is the way of ‘The Arc’. Watch the latest episode of Musecage Basketball Network her… https://t.co/OpEghnmbF2 +12/23/2017,Sports_celeb,@kobebryant,A new season of Musecage Basketball Network premieres tonight on @espn after the game! #MBN https://t.co/2H8Ml1N6nN +12/22/2017,Sports_celeb,@kobebryant,I couldn’t imagine anyone else directing and animating something so personal to me. Thank you @glenkeaneprd… https://t.co/CN2upGzeEg +12/22/2017,Sports_celeb,@kobebryant,Relive history this holiday season with #NBA2K18 w/ limited new MyTEAM cards featuring different points of my caree… https://t.co/Tu24xtX5wd +12/21/2017,Sports_celeb,@kobebryant,💪 https://t.co/tpeVb4vqk2 +12/21/2017,Sports_celeb,@kobebryant,Geno the #GOAT @UConnWBB #1000 +12/19/2017,Sports_celeb,@kobebryant,Great to see you tonight my brother. https://t.co/nf61mDG3L7 +12/19/2017,Sports_celeb,@kobebryant,"Thanks to the Lakers organization and the best fans in the world. You gave a six-year-old boy his Laker dream, and… https://t.co/3ysIsNysyE" +12/18/2017,Sports_celeb,@kobebryant,#8v24 https://t.co/DUuSb1fsup +12/18/2017,Sports_celeb,@kobebryant,"Different animal, same beast. https://t.co/1VEmcfG4Be" +12/18/2017,Sports_celeb,@kobebryant,"My love letter to basketball, Directed & Animated by @GlenKeanePrd, Original Score by John Williams. Watch it here!… https://t.co/jydH0q0mhx" +12/15/2017,Sports_celeb,@kobebryant,“You asked for my hustle - I gave you my heart.” #DearBasketball #ComingSoon @GlenKeanePrd https://t.co/ojjafQ4CMd +12/13/2017,Sports_celeb,@kobebryant,Always good to catch up with my man Coach Geno https://t.co/4V4pOdX9cQ +12/13/2017,Sports_celeb,@kobebryant,RT @judyseto: Just finished “Performing Under Pressure” course for @ACUMHPS Masters degree in High Performance Sport. Great info that appli… +12/10/2017,Sports_celeb,@kobebryant,RT @Hargraves24: This is what @kobebryant said. Don't click on @ESPN. https://t.co/mbSuZJPQl5 +12/10/2017,Sports_celeb,@kobebryant,Nope https://t.co/9qSgqC1ywT +12/10/2017,Sports_celeb,@kobebryant,RT @travelinglao: @espn @RichBTIG I'm starting to think you are right on about @espn they are getting desperate for clicks and viewership;… +12/10/2017,Sports_celeb,@kobebryant,👏 @SpectrumSN https://t.co/lLqD50hx4d +12/09/2017,Sports_celeb,@kobebryant,He and they will be just fine. They will do the necessary work and yrs from now none of u will remember the struggl… https://t.co/SRcowY1gUO +12/08/2017,Sports_celeb,@kobebryant,My man 💪 🙌 https://t.co/XjHGndD2gN +12/05/2017,Sports_celeb,@kobebryant,🙏🏻 https://t.co/jFrMKuNu9Y +12/01/2017,Sports_celeb,@kobebryant,RT @iamrapaport: If you’re looking for one or the greatest in depth athlete interviews in the history of podcasting then look no further th… +11/29/2017,Sports_celeb,@kobebryant,It’s been 2 years already? @PlayersTribune #timehaswings https://t.co/EXHypqbuZT +11/29/2017,Sports_celeb,@kobebryant,👌💪 @Djawadi_Ramin https://t.co/lTJ5IDqhtm +11/28/2017,Sports_celeb,@kobebryant,👏 @KlayThompson @DrinkBODYARMOR https://t.co/lLLmbbVHc0 +11/20/2017,Sports_celeb,@kobebryant,Maybe but Coach Smith stopped recruiting me. He thought I would go pro and wished me luck. Coach K kept at it. https://t.co/xS6OD8SmEV +11/20/2017,Sports_celeb,@kobebryant,Duke https://t.co/RDyzJ0PMUw +11/20/2017,Sports_celeb,@kobebryant,"Little known fact, I did one year of summer school at @ucla after my rookie year but now I hire @usc film students… https://t.co/wGur9fp7Du" +11/18/2017,Sports_celeb,@kobebryant,RT @MarucciBaseball: Every player in the United States should watch this video of Altuve. https://t.co/NG3lmnGYkC +11/18/2017,Sports_celeb,@kobebryant,RT @CalSwish_Nike: Thanks @kobebryant for working with us today in practice . Our @VULions loved it and learned a ton. Loved the teaching… +11/10/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/FI062fp89r +11/06/2017,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: #TeamBODYARMOR #ObsessionIsNatural 🏀🏆💥 https://t.co/nkes5HqRHd +11/06/2017,Sports_celeb,@kobebryant,#ObsessionIsNatural @JHarden13 @DrinkBODYARMOR 💪 https://t.co/As3hEuBJMs +10/24/2017,Sports_celeb,@kobebryant,The team @15SOF delivers your World Series TV appearances. Let's make some memories. Go LA! Get the app here: https://t.co/b3GXC47J0d +10/20/2017,Sports_celeb,@kobebryant,Lil bit haha @winnieharlow @neymarjr good times https://t.co/Ui076ILLNj +10/20/2017,Sports_celeb,@kobebryant,#gracias #merci 👍 https://t.co/31sUJZpFZd +10/16/2017,Sports_celeb,@kobebryant,We LOVED the match @uscwomensvolley and @StanfordWVB #MambaMentality Thank you for the hospitality #USC https://t.co/XkoxSEd4cz +10/06/2017,Sports_celeb,@kobebryant,Thank you. I had a great time on the podcast with you @ScottFeinberg https://t.co/AHTNbC5GH2 +10/05/2017,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: ❗️BREAKING: BODYARMOR is NOW the OFFICIAL Sports Drink of #UFC. 👊 #Switch2BODYARMOR #ObsessionIsNatural @UFC @UFCPI htt… +10/05/2017,Sports_celeb,@kobebryant,She’s a beast https://t.co/EgKgG6o6ro +10/05/2017,Sports_celeb,@kobebryant,Congrats to @minnesotalynx 4 championships in 7 seasons is 🙌 #wnbachamps +10/04/2017,Sports_celeb,@kobebryant,@EvMatic https://t.co/aC6jjmMP0m +10/04/2017,Sports_celeb,@kobebryant,BUT @DrinkBODYARMOR had a HOT🔥 summer! Up over 110%+ in Convenience stores @darrenrovell #gofigure… https://t.co/4Nh4DqP2h0 +10/02/2017,Sports_celeb,@kobebryant,"RT @LVMPD: For families looking to locate missing loved ones, please call 1-866-535-5654." +10/02/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/5sn9taFK7z +10/01/2017,Sports_celeb,@kobebryant,RT @ramonashelburne: When @kobebryant called @Candace_Parker and helped a kindred spirit learn how to win. https://t.co/lJmSiFmcUW +09/30/2017,Sports_celeb,@kobebryant,"Thank u Coach Frank for your deep understanding of the game, your patience & for challenging me to defend @ the hig… https://t.co/IhPuvWHhzA" +09/30/2017,Sports_celeb,@kobebryant,RT @serenawilliams: Without Billie Jean King I don't know if any of us female athletes would be here. Don't miss the… https://t.co/BBnqZhRU… +09/26/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/itdHqK1kqS +09/26/2017,Sports_celeb,@kobebryant,Thank you for the opportunity to talk about our film. To even hear Oscar contender next to Dear Basketball is beyon… https://t.co/TFsijvz0Uu +09/23/2017,Sports_celeb,@kobebryant,#mambamentality https://t.co/xzFcEmOLEH +09/23/2017,Sports_celeb,@kobebryant,"A #POTUS whose name alone creates division and anger. Whose words inspire dissension and hatred can't possibly ""Make America Great Again""" +09/20/2017,Sports_celeb,@kobebryant,"RT @paulocoelho: MEXICO, TE AMAMOS https://t.co/lhwyp8dh1Z" +09/20/2017,Sports_celeb,@kobebryant,🙏🏾 #dearbasketball https://t.co/1vo5PNQQ54 +09/20/2017,Sports_celeb,@kobebryant,RT @15SOF: Not a rumor anymore. 15 Seconds of Fame has partnered with @NFL to deliver your TV appearances at all NFL games through the Supe… +09/18/2017,Sports_celeb,@kobebryant,Just a lil daddy/daughter time #proudpappa https://t.co/DSktefRDoB +09/18/2017,Sports_celeb,@kobebryant,Gigi working on that @DianaTaurasi stroke #wristwork #wnbafinals we r hype for the rematch! https://t.co/Ly6pEjLuZS +09/15/2017,Sports_celeb,@kobebryant,Happy #2KDay You pick... play as 8 or 24 in @NBA2K! https://t.co/BrGl7dFiN0 https://t.co/AhOSgh6N9V +09/15/2017,Sports_celeb,@kobebryant,Great to be back in China earlier this week to help announce the NBA Academy @missionhillscn. I continue to be grat… https://t.co/STKesdpIhN +09/11/2017,Sports_celeb,@kobebryant,#NeverForget911 https://t.co/5ltFzooAse +09/10/2017,Sports_celeb,@kobebryant,Well deserved Tmac. You were a beast in every aspect of the game. I hope your kids know and appreciate how cold their pops was #HallOfFame +09/09/2017,Sports_celeb,@kobebryant,RT @SportsCenter: Tracy McGrady: High school star to NBA Hall of Famer. https://t.co/Mbq3pcGetP +09/07/2017,Sports_celeb,@kobebryant,Congrats hermano #grandepau https://t.co/N9SH4j3Xfw +09/06/2017,Sports_celeb,@kobebryant,RT @CNN: Read Bill Clinton's full statement on the Trump administration's DACA decision https://t.co/ndGYBfwDHY +09/02/2017,Sports_celeb,@kobebryant,RT @jewellloyd: I don't call her Legend for nothing 🙌🏽👏🏽 https://t.co/EdeuKpCfCT +09/02/2017,Sports_celeb,@kobebryant,Never thought I'd be on stage w/ the great JOHN WILLIAMS @HollywoodBowl to perform the #DearBasketball animated sho… https://t.co/kjr4UKYWYh +08/29/2017,Sports_celeb,@kobebryant,Claro #primomamba #mambasangre https://t.co/Udo2vJpZ0Q +08/28/2017,Sports_celeb,@kobebryant,Legends live on... in commentary. Had a great time recording lines for #NBA2K18. Watch & pre-order @NBA2K https://t.co/atQGu9Vozc +06/30/2018,Sports_celeb,@raylewis,"Seek improvement, not perfection. Take it one step at a time." +06/29/2018,Sports_celeb,@raylewis,RT @HamiltonESPN: #ESPN300 & 2019 Under Armour @AllAmericaGame RB @Emery4____ hanging with @raylewis & @TwentyER at Ed Reed Foundation Camp… +06/29/2018,Sports_celeb,@raylewis,The words you speak become the House you live in. - Hafiz +06/28/2018,Sports_celeb,@raylewis,My heart breaks for all in Annapolis in this senseless tragedy. Praying for families and friends of those lost toda… https://t.co/eyrVD0TdM2 +06/28/2018,Sports_celeb,@raylewis,make a difference. leave your mark +06/28/2018,Sports_celeb,@raylewis,"RT @Ravens: .@raylewis to appear in upcoming Baltimore-based movie. +📰: https://t.co/caQZV66UhK https://t.co/28wU0sqlWD" +06/28/2018,Sports_celeb,@raylewis,RT @DylanMathiot: @SNFonNBC @raylewis you inspired me to play football 🏈 https://t.co/Vn2PMJmqEL +06/28/2018,Sports_celeb,@raylewis,Stay committed +06/26/2018,Sports_celeb,@raylewis,https://t.co/FAjZzuSw96 +06/26/2018,Sports_celeb,@raylewis,"RT @Ravens: ""When it comes to Hall of Fame, you have to define the position. And @raylewis, in today's game, did just that."" -@CoachBillick…" +06/26/2018,Sports_celeb,@raylewis,RT @NFLAlumni: They say humans would never stand a chance against dinosaurs. We think we know a guy…. @RayLewis #JurassicWorld #NFLAlumni… +06/25/2018,Sports_celeb,@raylewis,chase greatness. you have to go after it! +06/22/2018,Sports_celeb,@raylewis,The greatest enemy of progress is your last success. keep grinding 💪🏿 +06/21/2018,Sports_celeb,@raylewis,to Love Is to selflessly serve. https://t.co/dwTzkpXxiG +06/21/2018,Sports_celeb,@raylewis,who remembers? 💥💥💥 https://t.co/qyniYUlzXL +06/19/2018,Sports_celeb,@raylewis,You gonna believe them?? https://t.co/q9XREAeSzF +06/19/2018,Sports_celeb,@raylewis,"RT @IMGAcademy: “Any vision that is not written is a dream.” -@raylewis + +#MotivationMonday https://t.co/7E51AqrE7w" +06/17/2018,Sports_celeb,@raylewis,RT @UAFootball: No excuses at the @raylewis Academy. #IWILL https://t.co/pv7H9tNaYC +06/17/2018,Sports_celeb,@raylewis,"family is bigger than you think, men. Stand in the gap - lead #happyfathersday https://t.co/d1LxFT737d" +06/17/2018,Sports_celeb,@raylewis,RT @DemetricDWarren: 🗣LBs Listen Up! Ray Lewis @raylewis is teaching about “Reading the Triangle” Alabama LB Mack Wilson @iam__mw3o & Michi… +06/17/2018,Sports_celeb,@raylewis,RT @EByner: Great to see #EdReed and @raylewis @IMG for #52 special linebacker camp. @Ravens https://t.co/onDC0DHGBs +06/17/2018,Sports_celeb,@raylewis,"RT @zacharylovett10: Had fun this past weekend at the Ray Lewis academy putting in work on and off the field to become better athletes,man,…" +06/17/2018,Sports_celeb,@raylewis,RT @Footdoctor_Mata: Thankful for the opportunity @raylewis & @UnderArmour https://t.co/EQboIwyETU +06/17/2018,Sports_celeb,@raylewis,"RT @RobVellinga: We need men who are fine with being MEN. - @RayLewis + +#Mentoring +#Fatherhood +#Dadfest + +@WillowCreekCC" +06/17/2018,Sports_celeb,@raylewis,RT @CarManCarl: @raylewis sharing the LOVE!!! @WillowCreekCC https://t.co/grjjaaTzoL +06/17/2018,Sports_celeb,@raylewis,"RT @RobVellinga: When I came to the RIGHT it was for the Father. +When I can to the LEFT it was for the Son. +When I came through the CENTE…" +06/17/2018,Sports_celeb,@raylewis,RT @CarManCarl: @raylewis @steveryancarter rocking the house @WillowCreekCC by challenging men to be men!!! +06/17/2018,Sports_celeb,@raylewis,"RT @WillowCreekCC: We're here with @steveryancarter & @raylewis this morning! Join us for #DadFest at 9 a.m. or 11:30 a.m.! +#WillowCreekCC…" +06/17/2018,Sports_celeb,@raylewis,Sharing from my heart today at @WillowCreekCC watch online: https://t.co/ZsyrbauL64 #HappyFatherDay +06/16/2018,Sports_celeb,@raylewis,can't wait for this hug https://t.co/LSUszvfwps +06/15/2018,Sports_celeb,@raylewis,Keep at it 🔥 the result is worth the sacrifice +06/14/2018,Sports_celeb,@raylewis,Effort. https://t.co/CD0tPFvNoU +06/14/2018,Sports_celeb,@raylewis,Stay ready +06/13/2018,Sports_celeb,@raylewis,pain. is. temporary - hang in there +06/13/2018,Sports_celeb,@raylewis,RT @jaesonma: One of the Greatest Speeches Ever | Ray Lewis https://t.co/y3WPVBnb3y via @raylewis #painistemporary +06/13/2018,Sports_celeb,@raylewis,Hope is seeing light even in the middle of darkness +06/12/2018,Sports_celeb,@raylewis,🔥🔥🔥 https://t.co/qQx4jhITo7 @ThatOtherLewis +06/12/2018,Sports_celeb,@raylewis,Book a seat with my buddy Patrick Day’s company Flyfoxtrot to the US Open and he will get you there for $695 a seat. https://t.co/k0hbJh3gRc +06/12/2018,Sports_celeb,@raylewis,discipline is choosing what u want most over what you want now +06/11/2018,Sports_celeb,@raylewis,let your work speak loudly +06/11/2018,Sports_celeb,@raylewis,https://t.co/McrsDEfOOT +06/09/2018,Sports_celeb,@raylewis,You can change the outcome +06/08/2018,Sports_celeb,@raylewis,Work to be good. Study to be great. Commit to be a legend. +06/07/2018,Sports_celeb,@raylewis,RT @JohnMichaels929: Me and the best college LB of all time @raylewis #LetsGoCanes #TheU https://t.co/eBNeIhC9Vy +06/07/2018,Sports_celeb,@raylewis,"RT @JTWilcoxSports: ICYMI +Erickson, @DanMorganJr & @raylewis Added To 2019 College HOF Ballot + +https://t.co/AL69JQK39d +(via @TribuneMiami)…" +06/07/2018,Sports_celeb,@raylewis,someone is going to be strengthened one day by your story - don't give up. +06/05/2018,Sports_celeb,@raylewis,"Work, even when no one else sees you #effort" +06/05/2018,Sports_celeb,@raylewis,If you want others to be happy - practice compassion. If you want to be happy - practice compassion +06/04/2018,Sports_celeb,@raylewis,RT @CanesFootball: Congratulations to these three Miami greats who’ve been named to the @cfbhall ballot! https://t.co/XIp24S51gM +06/04/2018,Sports_celeb,@raylewis,Giving up means you never really wanted it +06/01/2018,Sports_celeb,@raylewis,You’ve got what it takes but it will take everything you’ve got. #effort +05/31/2018,Sports_celeb,@raylewis,No one ever achieved greatness by hesitating. Pursue your goals. +05/29/2018,Sports_celeb,@raylewis,Who wants to be in a movie with me? I’ll be conducting casting calls June 24th! 🎬 https://t.co/UwsNkUTm7U +05/28/2018,Sports_celeb,@raylewis,#MemorialDay2018 https://t.co/yx4U3WBmov +05/27/2018,Sports_celeb,@raylewis,https://t.co/RKd2uKWQoD +05/27/2018,Sports_celeb,@raylewis,https://t.co/1tUEl97P5E +05/26/2018,Sports_celeb,@raylewis,Even in El Salvador - #52 - thanks for the pic my man @BrockESPN keep up the good work! https://t.co/u5F14v9lkZ +05/26/2018,Sports_celeb,@raylewis,"RT @NFLUK: Super Bowl 58 is heading to New Orleans 🎉 + +The last Super Bowl at New Orleans saw @raylewis last dance for the @Ravens 👏 + +Legend…" +05/26/2018,Sports_celeb,@raylewis,Never let a stumble be the end of your journey +05/24/2018,Sports_celeb,@raylewis,"RT @NFLFilms: WHAT ABOUT RIGHT NOW?! +🗣 @raylewis spittin’ that #WednesdayWisdom https://t.co/2OtL0ysPwq" +05/22/2018,Sports_celeb,@raylewis,effort https://t.co/WuzMxc1svu +05/22/2018,Sports_celeb,@raylewis,heat right here 🔥 talkin shop & more: https://t.co/Rh2QB44dbq https://t.co/iIeZvE15Pe +05/22/2018,Sports_celeb,@raylewis,RT @msslimgdy: @raylewis Thank you so much for sharing your wisdom & being an inspiration! +05/22/2018,Sports_celeb,@raylewis,RT @zacharylovett10: Honored to be invited to the Ray Lewis camp this summer @pbhs_football @raefsu23 @Neefy87 @EjMayes23 @raylewis https:/… +05/22/2018,Sports_celeb,@raylewis,"RT @1wayjaay: Very Thankful 🙏🏽 to be Invited to the 2018 Ray Lewis Academy‼️🦍 +@HamiltonESPN @raylewis https://t.co/zAdEks7mTJ" +05/22/2018,Sports_celeb,@raylewis,Stay focused. 🎯 +05/21/2018,Sports_celeb,@raylewis,truth https://t.co/yLcvhsk5SL +05/21/2018,Sports_celeb,@raylewis,when Lights Out stops over for some 💥 https://t.co/N1WohR05fP +05/21/2018,Sports_celeb,@raylewis,Never lessen your dream to equal your reality. Keep aiming beyond what you can see right now. +05/19/2018,Sports_celeb,@raylewis,🔥 https://t.co/MLXPOap9Q5 +05/19/2018,Sports_celeb,@raylewis,RT @Lj_era8: I should’ve did the whole thing just gave a little something 😈 https://t.co/yzRC3MTS52 +05/18/2018,Sports_celeb,@raylewis,Struggling is one thing. Quitting is another. Stick with it through the struggle. +05/16/2018,Sports_celeb,@raylewis,"RT @NFLFilms: Join us in celebrating 2018 HOF inductee, @raylewis' birthday today! 🎉🎉🎉 + +@Ravens @ProFootballHOF https://t.co/za5FiFbkWj" +05/16/2018,Sports_celeb,@raylewis,"RT @NFL: 2x @SuperBowl champion. 2x DPOY. +13x Pro Bowler. 10x All-Pro. +And @ProFootballHOF Class of 2018. + +Join us in wishing @raylewis a H…" +05/16/2018,Sports_celeb,@raylewis,"RT @NFL: One of the greatest linebackers EVER. +And soon to be enshrined into the @ProFootballHOF. + +In honor of his 43rd birthday, @raylewis…" +05/16/2018,Sports_celeb,@raylewis,"RT @Ravens: In honor of his birthday, relive the moment @raylewis officially learned what we all knew. +He is a Hall of Famer. https://t.co/…" +05/16/2018,Sports_celeb,@raylewis,@NFLOffical @SuperBowl @ProFootballHOF Thank you!! +05/16/2018,Sports_celeb,@raylewis,you know it’s yours. 💪🏿 https://t.co/qH3bwpaUzY +05/16/2018,Sports_celeb,@raylewis,The fear you refuse to face becomes your limit. +05/14/2018,Sports_celeb,@raylewis,there is power. https://t.co/MHcMuf6WYU +05/14/2018,Sports_celeb,@raylewis,Appreciate those who don’t give up on you +05/13/2018,Sports_celeb,@raylewis,RT @evanpryor3: Blessed to be invited to the 2018 Ray Lewis Academy !! @CarolinaXposure @HamiltonESPN @JibrilleFewell @raylewis https://t.… +05/13/2018,Sports_celeb,@raylewis,Happy Mother’s Day to all the Moms ♥️ +05/12/2018,Sports_celeb,@raylewis,RT @TwentyER: This is so dope https://t.co/r2YY7qCqmk +05/12/2018,Sports_celeb,@raylewis,destroy distractions. Commit https://t.co/HFRxdvVCei +05/11/2018,Sports_celeb,@raylewis,You choose. Invest in you. #effort +05/09/2018,Sports_celeb,@raylewis,Effort beats talent. +05/07/2018,Sports_celeb,@raylewis,https://t.co/cNnHWloaP5 +05/06/2018,Sports_celeb,@raylewis,RT @thecheckdown: Ray's last dance was literally lit 🔥 @raylewis (via bosnog/YT) https://t.co/5vGGZfic7z +05/06/2018,Sports_celeb,@raylewis,Let your results drive you. #effort +05/05/2018,Sports_celeb,@raylewis,worry ends where belief begins +05/04/2018,Sports_celeb,@raylewis,say it 🔥 https://t.co/5pMfW3rqeu +05/03/2018,Sports_celeb,@raylewis,it’s a slow process but quitting won’t speed it up. keep pushing through +05/02/2018,Sports_celeb,@raylewis,Hustle until your haters ask if you’re hiring. +05/02/2018,Sports_celeb,@raylewis,Master the skill of believing & you’ve mastered your legacy. https://t.co/bUYfFLnbP6 +05/01/2018,Sports_celeb,@raylewis,You don’t grow when things go easy. You grow when you face challenges. +04/30/2018,Sports_celeb,@raylewis,greatness right here! #pfhof18 #goldjacket #HallOfFame https://t.co/HVJIaCWx5D +04/30/2018,Sports_celeb,@raylewis,You make your future by what you do now. #leaveyourmark +04/30/2018,Sports_celeb,@raylewis,Have the courage to take risks. But keep the discipline to stay committed to your goals. +04/30/2018,Sports_celeb,@raylewis,RT @BelindaBalleng1: @raylewis No man can judge effort...its between you and you .....awesome #motivational words @raylewis +04/30/2018,Sports_celeb,@raylewis,RT @atgbowers: Reminiscing on Ravens 1st draft! Hoping this year is just as great! #ravens @raylewis https://t.co/E5QIB4MXS9 +04/29/2018,Sports_celeb,@raylewis,It’s yours for the taking. Go get your greatness! #effort https://t.co/oip1EZc8Mn +04/29/2018,Sports_celeb,@raylewis,"Make an effort, not an excuse." +04/29/2018,Sports_celeb,@raylewis,"RT @gladi8r013: @raylewis One of the best motivational speeches I’ve ever heard. The one when you spoke to the Miami Hurricanes +https://t…" +04/28/2018,Sports_celeb,@raylewis,RT @Power52Official: Get your tickets today for Power52 LIVE Fundraiser!! https://t.co/M5R8mNOhjU +04/28/2018,Sports_celeb,@raylewis,"RT @Muthead: Ultimate Legend @raylewis: + +https://t.co/ATiEJAUO2Q +. https://t.co/uW7lWzQ25o" +04/28/2018,Sports_celeb,@raylewis,https://t.co/kUpzhjZrlL +04/28/2018,Sports_celeb,@raylewis,Effort can take you further than talent. +04/27/2018,Sports_celeb,@raylewis,Success sits outside of your comfort zone. You have to go get it. +04/27/2018,Sports_celeb,@raylewis,"RT @Ravens: ""The first thing I thought about was me and @raylewis doing that commercial, how he made me do his laundry. And now, it's proba…" +04/26/2018,Sports_celeb,@raylewis,RT @alohajamz: @raylewis is a once in a generation player I wonder now that @raylewis is a HOF player. Who will be the next Ray Lewis that… +04/26/2018,Sports_celeb,@raylewis,RT @ThePostGame: Draft day 1996: @raylewis is second pick in @Ravens history (@jonathanogden75 went earlier in first round). #NFLDraft #TBT… +04/26/2018,Sports_celeb,@raylewis,"RT @NFL: Every #1 overall pick from the last 16 years! + +Who’s next?! + +2018 #NFLDraft starts TONIGHT (8pm ET) on NFLN/FOX/ESPN! https://t.co…" +04/26/2018,Sports_celeb,@raylewis,"the work you put in now is the legacy you live out later. +congratulations to everyone who steps into their legacy t… https://t.co/jDcUalT2l6" +04/26/2018,Sports_celeb,@raylewis,We ready! 🏈💪🏿 #NFLDraft2018 @NFL https://t.co/kpp36a9pIL +04/26/2018,Sports_celeb,@raylewis,"Let your pain push you to a greater level of power. Focus it. Use it, for good." +04/25/2018,Sports_celeb,@raylewis,It is better to be respected than liked. +04/25/2018,Sports_celeb,@raylewis,RT @MarcusAllenHOF: New Jersey! The @GTSportsMkt show is back! This wknd April 27-29 Come meet @drewbrees @raylewis @Jerryrice @deshaunwats… +04/25/2018,Sports_celeb,@raylewis,"RT @SiriusXMNFL: Who are a few Linebackers that @RoquanSmith1 enjoyed watching in the NFL? + +@raylewis and @Bwagz + +#NFLDraft https://t.co/jy…" +04/25/2018,Sports_celeb,@raylewis,Be so great that they have to notice. +04/25/2018,Sports_celeb,@raylewis,RT @Ravens: One call led to the Hall. #NFLDraft https://t.co/Xvl1AGUdRu +04/25/2018,Sports_celeb,@raylewis,Belief enables the power to achieve. +04/25/2018,Sports_celeb,@raylewis,@coachjkirk 💪🏿💥 +04/25/2018,Sports_celeb,@raylewis,RT @coachjkirk: @raylewis down here in TX trying to #ShowMeYourRay https://t.co/mSziNxh6K1 +04/24/2018,Sports_celeb,@raylewis,Dreams don’t work unless you do. Proud of you baby boy! 💯 https://t.co/Qnqo2n5nIS +04/24/2018,Sports_celeb,@raylewis,Those genes are strong. #Legacy #LionOrder https://t.co/JvnEpXXUhs +04/24/2018,Sports_celeb,@raylewis,RT @JerryRice: New Jersey! Come meet me and other legends @raylewis @kaj33 @drewbrees @EmmittSmith22 and more at @GTSportsMkt show April 2… +04/24/2018,Sports_celeb,@raylewis,Go on! You deserve that dance!! #ShowMeYourRay https://t.co/8oN2WSbWgK +04/24/2018,Sports_celeb,@raylewis,RT @jbenjaminblom: I graduate from dental school in two weeks and my mom pimped out my suit jacket for me. Can’t decide...squirrel dance ac… +04/24/2018,Sports_celeb,@raylewis,@jbenjaminblom @Ravens definitely the squirrel dance - congrats! +04/24/2018,Sports_celeb,@raylewis,"RT @DLineVids: ""Blueprint"" by #TheU alum & #NFL Hall of Famer @raylewis 💯 https://t.co/KwKBUBLXvb" +04/24/2018,Sports_celeb,@raylewis,"Almost time 2 break out those threads, men! 💥 @NFL #NFLDraft #TheFutureIsNow https://t.co/clUoCaGtGm" +04/24/2018,Sports_celeb,@raylewis,The wolf on the hill is never as hungry as the wolf climbing the hill. Never stop. Keep aiming higher. +04/24/2018,Sports_celeb,@raylewis,"RT @Thuzio: During the @Ravens' #SuperBowl season of 2000-2001, Brian Billick relied on @raylewis and @ShannonSharpe to be gatekeepers in t…" +04/24/2018,Sports_celeb,@raylewis,"RT @NFL: Top 10 @NFLDraft Classes of the Past 25 Years: + +1. ’96 @Ravens +2. ’95 @Buccaneers +3. ’04 @Chargers +4-10. https://t.co/X6j5eV484p…" +04/24/2018,Sports_celeb,@raylewis,"RT @CanesFootball: The @NFL ranked the best draft pick of all-time at every slot, from Nos. 1 to 32, and Miami has SEVEN listed — more than…" +04/20/2018,Sports_celeb,@raylewis,Achieve everything they said you never would. +04/20/2018,Sports_celeb,@raylewis,Who is ready to #partywithapurpose with us? @power52official https://t.co/DOo39DB4qD +04/20/2018,Sports_celeb,@raylewis,Two weeks! @power52official https://t.co/Wp7fMHYWJE +04/20/2018,Sports_celeb,@raylewis,"Where there is peace, there is prosperity. #RaysWords #RL52 https://t.co/YnX7RhPZ7A" +04/20/2018,Sports_celeb,@raylewis,You got to be willing to walk in a storm. #RaysWords #RL52 https://t.co/iYeXyeibZF +04/20/2018,Sports_celeb,@raylewis,"Man believes in the possible, God believes in the impossible. #RaysWords #RL52 #legends52 https://t.co/IkEF9fsinm" +04/17/2018,Sports_celeb,@raylewis,"Awesome performance at the Mountain Moving Men Summit @CityofPraiseMD +Many are called, few are… https://t.co/aKP3yrILuA" +04/15/2018,Sports_celeb,@raylewis,What comes easy doesn’t always last. What comes through difficulties & effort leaves a legacy. +04/13/2018,Sports_celeb,@raylewis,RT @SFY: .@RayLewis reacts to Odell Beckham Jr.'s (@OBJ_3) Instagram post responding to his criticism https://t.co/cApwS4vtbA +04/13/2018,Sports_celeb,@raylewis,"RT @undisputed: ""I look at Odell as a son of mine, so am I hurt? Absolutely. Why wouldn't I be hurt?"" + +@raylewis explains his comments rega…" +04/13/2018,Sports_celeb,@raylewis,Hidden in every challenge you face is an opportunity. Find it. +04/12/2018,Sports_celeb,@raylewis,Courage begins the moment you decide to be true to yourself. +04/10/2018,Sports_celeb,@raylewis,"RT @FOXSports: ""So many people saying they know so much about him [OBJ] have never had one phone call with him."" + +-- @RayLewis believes OB…" +04/09/2018,Sports_celeb,@raylewis,"Live selflessly. We all have a greater purpose, but we often have to look outside ourselves to… https://t.co/S9KsgWjqfI" +04/08/2018,Sports_celeb,@raylewis,Sometimes life is about risking everything for a dream no one can see but you. +04/05/2018,Sports_celeb,@raylewis,RT @cmorrow322: I am thankful for people that care & use their celebrity to spread a great message and make a difference . @raylewis & @Mar… +04/05/2018,Sports_celeb,@raylewis,#RaysWords #pfhof18 #legends52 #ravensnation #RL52 #IWILL #nfl #football https://t.co/kAa2jTWMQD +04/05/2018,Sports_celeb,@raylewis,"RT @AthleteNet: Advice straight from @RayLewis: ""Put your plan together & then work the plan."" https://t.co/QN0C1n3rou @fromglorydays #keep…" +04/05/2018,Sports_celeb,@raylewis,"RT @DenverGreg_: https://t.co/qiJ2Wnw1eD + +Little Thursday morning motivation. “Effort is between you and you.” @raylewis let’s get it!" +04/05/2018,Sports_celeb,@raylewis,Write your destiny. #pfhof18 #RL52 https://t.co/UjVs9LDA7C +04/02/2018,Sports_celeb,@raylewis,"One month from tomorrow, join us for our annual fundraiser! @power52official #power52 @… https://t.co/MwZuaswUPF" +04/02/2018,Sports_celeb,@raylewis,"The Power behind Power52! @power52official +robdwallace #power52 #pfhof18 #RL52 #solarpower… https://t.co/zdHodRl5C2" +04/02/2018,Sports_celeb,@raylewis,"#Repost @power52official +・・・ +Just in case you missed it!! Get your tickets today!… https://t.co/X3zGdH4Ai9" +04/01/2018,Sports_celeb,@raylewis,“He then began to teach them that the Son of Man must suffer many things and be rejected by the… https://t.co/AKzYCXgphI +04/01/2018,Sports_celeb,@raylewis,"Happy Easter, He is risen. Rejoice in His name. #amen #blessings https://t.co/ylR07Q3XIg" +04/01/2018,Sports_celeb,@raylewis,Hope is here! You’re going to make it. Only believe. +03/31/2018,Sports_celeb,@raylewis,"RT @drewbrees: Hey New Jersey! Come see me, @raylewis @shaunwatson4 jerryrice and more! @GTSportsMkt show at… https://t.co/AdYXGkzMEP" +03/31/2018,Sports_celeb,@raylewis,"Hang in there, it’s going to get better. Keep moving forward." +03/30/2018,Sports_celeb,@raylewis,#ITISFINISHED https://t.co/QAtwvJ9jVM +03/29/2018,Sports_celeb,@raylewis,#QOTD No time like the present. #RaysWords https://t.co/W3LiPy1p4Z +03/29/2018,Sports_celeb,@raylewis,"The legend and the leader. #legends52 + +📸: @thebrewergroup https://t.co/UCcq829Grm" +03/27/2018,Sports_celeb,@raylewis,Discipline is required even when no one is looking. #RaysWords #RL52 #ravensnation #pfhof18 https://t.co/GMJ52H0mDK +03/27/2018,Sports_celeb,@raylewis,@CityofPraiseMD #RL52 https://t.co/TQEf1wedhy +03/26/2018,Sports_celeb,@raylewis,"RT @Ravens: The journey to Canton. + +The first installment of our Ray Lewis Timeline series is live. + +From Bartow, Fla. to to college recr…" +03/26/2018,Sports_celeb,@raylewis,💥 https://t.co/mBhahStjfj +03/25/2018,Sports_celeb,@raylewis,"@power52official provides employment training for at-risk adults, returning citizens, and… https://t.co/qN7vqZ5OUz" +03/25/2018,Sports_celeb,@raylewis,Congratulations to the 15 trainees who graduated from our Power52 Energy Institute Baltimore… https://t.co/V7YF6A9rBJ +03/25/2018,Sports_celeb,@raylewis,RT @Gr4yson_: For my favorite player and the 🐐 MLB. Made this when the Class of 2018 was announced but never posted it. Can't wait for the… +03/24/2018,Sports_celeb,@raylewis,The Power52 Family invites you to join us for our premier event of the year Power52LIVE! “After Five”. Tickets ca… https://t.co/FkGnxECHch +03/24/2018,Sports_celeb,@raylewis,Don't rush away from something just because it's uncomfortable. Grow in it and through it. +03/24/2018,Sports_celeb,@raylewis,People only rain on your parade because they are jealous of your sun. +03/23/2018,Sports_celeb,@raylewis,I had to GRIND every day. #RL52 #legends52 #pfhof18 #GoldJacket #legends52 https://t.co/QRhfh6uRQw +03/22/2018,Sports_celeb,@raylewis,RT @andres_cadena11: “The greatest opportunity in the world is found in today” @raylewis +03/22/2018,Sports_celeb,@raylewis,RT @Houston_TheReal: @raylewis @Ravens No player I've ever seen played football with more passion and leadership than 52. Point. Blank. PER… +03/22/2018,Sports_celeb,@raylewis,RT @UsmcBobLeeSwag: That shoestring theory by @raylewis via his podcast really hit home. Thank you for that wisdom @raylewis +03/21/2018,Sports_celeb,@raylewis,Life is about being a versatile athlete and training in all realms of life. #RaysWords #RL52… https://t.co/BZNRLHbt1k +03/21/2018,Sports_celeb,@raylewis,Working towards a new type of greatness! 52legendsandleaders #legends52 https://t.co/cKjY3ApM5y +03/21/2018,Sports_celeb,@raylewis,Don’t walk through life just playing football. Don’t walk through life just being an athlete.… https://t.co/GdUVaVkUFm +03/21/2018,Sports_celeb,@raylewis,Represent! 💥 #PFHOF18 @UnderArmour collection: https://t.co/EMRiX83Fky https://t.co/DqUZs0tMGZ +03/21/2018,Sports_celeb,@raylewis,Know your mission. #RL52 https://t.co/MB1ELOETXA +03/20/2018,Sports_celeb,@raylewis,The road to Canton. #PFHOF18 #GoldJacket #RavensFlock @Ravens https://t.co/zY9aH7gLe3 +03/20/2018,Sports_celeb,@raylewis,RT @UAFootball: 😜 #IWILL https://t.co/HrVshQAzGm +03/20/2018,Sports_celeb,@raylewis,"RT @UAFootball: Speak volumes by repping a legend. #IWILL + +Snag your official @raylewis @UnderArmour collection: https://t.co/TCFfdH61Fr ht…" +03/19/2018,Sports_celeb,@raylewis,"Speak volumes without saying a word. #Family #WeWill #IWILL @UAFootball #HallofFame +https://t.co/a4KimtDYzH https://t.co/kEJmYzgr1e" +03/19/2018,Sports_celeb,@raylewis,The number one skill for success - never quit. +03/19/2018,Sports_celeb,@raylewis,Giving up means you never truly wanted it. Push through. +03/19/2018,Sports_celeb,@raylewis,Accept what is. Let go of what was. Have faith in what will be. #GodisGod +03/19/2018,Sports_celeb,@raylewis,💥 @Rolando21897 https://t.co/MUrso362Yu +03/18/2018,Sports_celeb,@raylewis,The most amazing things in life often happen right when you are about to give up. Hang in there. +03/18/2018,Sports_celeb,@raylewis,RT @Sdarley14: @raylewis https://t.co/f9CoSpsS8X this goes down in the books #grindin #3amworkouts +03/18/2018,Sports_celeb,@raylewis,You can overcome whatever you put your mind to. +03/17/2018,Sports_celeb,@raylewis,RT @RobMaaddi: Here’s the latest episode of @FaithOnTheField Show titled “The Faithful Pursuit” featuring a powerful interview with Hall of… +03/17/2018,Sports_celeb,@raylewis,"RT @kurt13warner: Virginia and all Football Fans! I will be appearing @Gtsportsmkt show in Sterling, VA with @MarcusAllenHOF @DougFlutie @r…" +03/17/2018,Sports_celeb,@raylewis,RT @RyanShazier: Thanks all the support helps me through this. 💯 https://t.co/OvExGW8koE +06/10/2018,Sports_celeb,@FloydMayweather,Play on the WinView Sports app today to have a chance to win a signed boxing glove ! #PlayPredictWin… https://t.co/juSXDhj4Vm +06/05/2018,Sports_celeb,@FloydMayweather,https://t.co/tUWTAiZ5Sn +06/03/2018,Sports_celeb,@FloydMayweather,"I challenge you! Score 15k+ points in any QTR on https://t.co/4yPtxJ9YQq for a share of $5,000! #NBAfinals https://t.co/dh1gEfzeLG" +06/03/2018,Sports_celeb,@FloydMayweather,"In boxing, I'm undefeated, but can you beat me in poker? Download and play my game @WildPokerTXHold… https://t.co/FKjJDzD9gK" +06/02/2018,Sports_celeb,@FloydMayweather,@MizzMelissia https://t.co/jVKqhNMObf +06/02/2018,Sports_celeb,@FloydMayweather,"Life is a game of chess & all I do is make power moves +Photo Credit: @mssunray https://t.co/049IBNZOS4" +06/02/2018,Sports_celeb,@FloydMayweather,"#mood +video credit: @moneyyaya +Music by: @otgenasis https://t.co/snEsqseex5" +06/01/2018,Sports_celeb,@FloydMayweather,"I’m so proud of my son @kingkoraun for doing something that I didn’t do, and that’s graduate high school. When I️ w… https://t.co/fGflOAwEAa" +06/01/2018,Sports_celeb,@FloydMayweather,"Great is Great ! No matter what, I’m a natural born hustler! https://t.co/VL0jOXGcZV" +05/26/2018,Sports_celeb,@FloydMayweather,No one makes more money watching sports than me! Come play against me at https://t.co/4yPtxJrzHY and watch the NBA… https://t.co/8AE5OfCksI +05/24/2018,Sports_celeb,@FloydMayweather,#mugshot https://t.co/W7SRNrijGC +05/24/2018,Sports_celeb,@FloydMayweather,"Royal treatment...private massage on my private jet. Y’all talking about a prince with one princess, I’m a King wi… https://t.co/fMPimntha5" +05/24/2018,Sports_celeb,@FloydMayweather,I post pictures like this to motivate my haters to get money. https://t.co/NF7Kh4Fulk +05/24/2018,Sports_celeb,@FloydMayweather,"Another one of my timepieces I designed and got customized by @mr.gregyuna . + +Photo Credit: @moneyyaya https://t.co/TnWEvNoZgQ" +05/24/2018,Sports_celeb,@FloydMayweather,"Leaving LA, heading to Las Vegas to get ready for Memorial Day Weekend. 🎥 video credit: @moneyyaya https://t.co/r7IdOIoqDg" +05/20/2018,Sports_celeb,@FloydMayweather,FOLLOW & WISH my daughter @moneyyaya a HAPPY 18th BIRTHDAY!!! https://t.co/CD631jc6TY +05/19/2018,Sports_celeb,@FloydMayweather,"Follow and wish @mayweatherpromotions ‘ fighter, @badoujack good luck as he looks to capture his 3rd World title.… https://t.co/yQRIAFVar7" +05/19/2018,Sports_celeb,@FloydMayweather,Peace & Tranquility https://t.co/tXQTHZaInb +05/19/2018,Sports_celeb,@FloydMayweather,At another private island somewhere close by the equator #photography #photooftheday #photographer https://t.co/EO5631dqae +05/19/2018,Sports_celeb,@FloydMayweather,"Sitting back smirking, making millions sitting on my ass. You can smell the bag through the photo and I’m not talki… https://t.co/pz3nmycr01" +05/18/2018,Sports_celeb,@FloydMayweather,Check out my latest interview with Fight hype https://t.co/ycABb8r6SL +05/10/2018,Sports_celeb,@FloydMayweather,"Stopped by the Wat Pho Buddhist Temple in Bangkok, Thailand. Next… https://t.co/YZt0obO0Yb" +05/05/2018,Sports_celeb,@FloydMayweather,"Bali, Indonesia. Swipe to the left👈🏽 #temple #bali #indonesia + +Photo Credit :… https://t.co/D12QFV5NSp" +05/05/2018,Sports_celeb,@FloydMayweather,"Swipe to the left ⬅️ I made a pit stop in Bali, Indonesia +#Bali +#Indonesia… https://t.co/U69a3NwdFN" +05/05/2018,Sports_celeb,@FloydMayweather,"Pool party on top of the world. + +#marinabaysands +#airmayweather @ Singapore https://t.co/mdVuDg7Wvs" +05/05/2018,Sports_celeb,@FloydMayweather,"I was bored today so I decided to fly to Singapore... Stay tuned, I’ll be in… https://t.co/ZYi9zdjNb7" +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video @ Dubai Desert https://t.co/aaInGnMJxi +05/05/2018,Sports_celeb,@FloydMayweather,Feeding the giraffes #wildlife #dubai https://t.co/MxSiNwJu0a +05/05/2018,Sports_celeb,@FloydMayweather,"Feeding Teddy Bear #wildlife #dubai @ Dubai, United Arab Emirates https://t.co/OTVIqztVjU" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing, always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/YK0n6xJd6n" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing,always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/xHx0w0UPo9" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing, always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/SgWipyuXA1" +05/05/2018,Sports_celeb,@FloydMayweather,"Traveling the world, having fun with my brother @theharlemhotboy #dubai @… https://t.co/O6YMDb9cMW" +05/05/2018,Sports_celeb,@FloydMayweather,"In living color + +#BurjAlArab +#yacht + +Photo Credit : _franktmt @ Dubai, United… https://t.co/zWqeovpGOl" +05/05/2018,Sports_celeb,@FloydMayweather,I can do this shit with no effort. @ Mayweather Boxing Gym https://t.co/wfE8GDNU59 +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video @ Mayweather Boxing Gym https://t.co/sVPUsaQGHl +05/05/2018,Sports_celeb,@FloydMayweather,"Jumped off Air Mayweather, checked into my presidential suite at the tallest… https://t.co/3gRQeBzq5N" +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video https://t.co/k8fUQ0HqKy +05/05/2018,Sports_celeb,@FloydMayweather,I just purchased 4 more Richard Mille timepieces from @rafaelloandco. Shop… https://t.co/VtG2fAPbjF +05/05/2018,Sports_celeb,@FloydMayweather,"Baby Face Little Floyd @ Grand Rapids, Michigan https://t.co/34IGHiE3te" +05/05/2018,Sports_celeb,@FloydMayweather,Time to take AIR MAYWEATHER worldwide and country hop. 🎥Credit :… https://t.co/8QsyMFbKRS +04/23/2018,Sports_celeb,@FloydMayweather,"I’m blessed! No baby mama drama @MizzMelissia + +FOLLOW @MizzMelissia https://t.co/9MxTu07Rc3" +04/23/2018,Sports_celeb,@FloydMayweather,Where should I travel to next ? https://t.co/6k4L4CQVdB +04/23/2018,Sports_celeb,@FloydMayweather,"One thing about me, I’m self made! My Dad taught me how to box and I perfected the boxing business, made my own mon… https://t.co/syDt63BvWz" +04/08/2018,Sports_celeb,@FloydMayweather,"I don't know nothing about tomorrow but I'm living for today. + +Photo Credit: @moneyyaya https://t.co/H7HC12hZGv" +04/04/2018,Sports_celeb,@FloydMayweather,"Follow one of the best pound 4 pound boxers in the world today @badoujack + +Instagram @badoujack + +Facebook Badou Jack https://t.co/zDsauAiyxA" +03/30/2018,Sports_celeb,@FloydMayweather,https://t.co/RcVFjbJgXF +03/30/2018,Sports_celeb,@FloydMayweather,https://t.co/GTEUYdULsq +03/29/2018,Sports_celeb,@FloydMayweather,Everybody follow and wish my son @zion_mayweather a Happy Birthday ! I love you Mush! https://t.co/UzfyobNklg +03/27/2018,Sports_celeb,@FloydMayweather,"Hate me or love me, you see me! https://t.co/VBfY42zwkA" +03/22/2018,Sports_celeb,@FloydMayweather,"Join me Tuesday, April 3rd at the 10th Annual Minnie’s Feed Just One Gala. Enter the fight at this epic event featu… https://t.co/aFzK0e6pDm" +03/08/2018,Sports_celeb,@FloydMayweather,Early morning selfie. https://t.co/js3pSQfUsb +03/04/2018,Sports_celeb,@FloydMayweather,Pretty Boy Floyd https://t.co/PoEmSjDPIh +03/01/2018,Sports_celeb,@FloydMayweather,https://t.co/ham7HHocux https://t.co/l6KkvVMvMF +03/01/2018,Sports_celeb,@FloydMayweather,These TMT Hublot time pieces will only appreciate in value. Go to your nearest @hublot boutique and shop right now… https://t.co/ghlvPPd2rG +03/01/2018,Sports_celeb,@FloydMayweather,Big Bottles For Those Big Moments... https://t.co/dtstgGZtIT +03/01/2018,Sports_celeb,@FloydMayweather,"Floyd Mayweather, you’re a show off. https://t.co/MgS4Zriov7" +03/01/2018,Sports_celeb,@FloydMayweather,"If you live in or are visiting Las Vegas, make sure to check out. @subzerorecovery and explore the benefits of cryo… https://t.co/bi0G55Ufxp" +03/01/2018,Sports_celeb,@FloydMayweather,I fuckin’ love my life. https://t.co/Dorf2duH4V +03/01/2018,Sports_celeb,@FloydMayweather,Buckle Up! #beltbuckle https://t.co/pDR9DXHwdf +03/01/2018,Sports_celeb,@FloydMayweather,https://t.co/XoUVKdyP26 +03/01/2018,Sports_celeb,@FloydMayweather,Unconditional Love https://t.co/zsdYrI2DDG +02/28/2018,Sports_celeb,@FloydMayweather,"The grass only gets greener on this side. +#AirMayweather +Photo Credit: @moneyyaya https://t.co/FV7fPEzJz3" +02/27/2018,Sports_celeb,@FloydMayweather,Fifty Shades of May. https://t.co/q1G30F9UKL +02/27/2018,Sports_celeb,@FloydMayweather,Mr. Chandelier Man. https://t.co/C3otqvUiNT +02/27/2018,Sports_celeb,@FloydMayweather,"I got a new jet for my birthday #AirMayweather #TMT +Photo Credit: @tmtpilot https://t.co/oDUGmD4XOR" +02/27/2018,Sports_celeb,@FloydMayweather,"I heard Chris Paul had his cowboy swag on today and so did I. I guess great minds think alike, be outside the box. https://t.co/HJ8ulpuPYI" +02/17/2018,Sports_celeb,@FloydMayweather,"Honored to launch my Big Bang Unico TMT with @HUBLOT! Shop at your nearest Hublot boutique! +#HublotMayweather #TMT… https://t.co/IgjptA41qm" +02/14/2018,Sports_celeb,@FloydMayweather,REAL TALK. #HappyValentinesDay https://t.co/vpOg4FhNBo +02/14/2018,Sports_celeb,@FloydMayweather,https://t.co/Z6RhMbgFXy +02/11/2018,Sports_celeb,@FloydMayweather,Certified Killa vs Certified Bitch https://t.co/N0GcWrycEL +02/10/2018,Sports_celeb,@FloydMayweather,"If you’re here in Las Vegas, I’m inviting you to come join me, @hublot & my team as we unveil the LIMITED EDITION… https://t.co/ro4Rv2shNE" +02/10/2018,Sports_celeb,@FloydMayweather,"Fooling around, playing my cousin Roy on my $30,000 crystal glass ping pong table. https://t.co/2PN9VbnQhI" +02/10/2018,Sports_celeb,@FloydMayweather,"Fooling around, playing my cousin Roy on my $30,000 crystal glass ping pong table. https://t.co/9nUtlyEnYd" +02/09/2018,Sports_celeb,@FloydMayweather,"Me, TMT and @hublot. Stay tuned https://t.co/WFWxyIuLEz #hublot #mayweather #tmt #tbe" +02/08/2018,Sports_celeb,@FloydMayweather,I know you can barely see me because my kitchen is bigger than your house. Can you hear the echo by looking at the… https://t.co/Aj5Rj9vkdm +02/05/2018,Sports_celeb,@FloydMayweather,"I see some of you are making comparisons to the custom $100,000.00 chinchilla fur coat I wore last night to the off… https://t.co/5uyZKEYB9d" +02/03/2018,Sports_celeb,@FloydMayweather,"@mannyfernandez You""re right ! You're muthafuckin' right!" +02/03/2018,Sports_celeb,@FloydMayweather,Billion Dollar Man https://t.co/8Vv4y1QpFK +02/01/2018,Sports_celeb,@FloydMayweather,"Come at the king, you best not miss... https://t.co/uHx4SJngHx" +01/30/2018,Sports_celeb,@FloydMayweather,https://t.co/JqWbuJ43eQ +01/30/2018,Sports_celeb,@FloydMayweather,#MCM Mayweather Crushes McGregor. https://t.co/i6p1K2QjGG +01/26/2018,Sports_celeb,@FloydMayweather,Some say there’s a difference between being smart and intelligent. Everyone knows that common sense isn’t so common… https://t.co/ct2mMZEhuo +01/26/2018,Sports_celeb,@FloydMayweather,https://t.co/Z0NWdsx3aS https://t.co/4VKWxNBcKK +01/24/2018,Sports_celeb,@FloydMayweather,Just heard a crazy song from @MaitreGims. This is why his music #1 in France. Now let’s do a crazy video for… https://t.co/2rBqIaaeeu +01/10/2018,Sports_celeb,@FloydMayweather,I already fucked you up in 2017 now they about to fuck you up in 2018. You’re about to start your new year off with… https://t.co/I8RR6oujD6 +01/09/2018,Sports_celeb,@FloydMayweather,BLACK IS BEAUTIFUL https://t.co/Q2Q1u3qg74 +01/04/2018,Sports_celeb,@FloydMayweather,Young Money May https://t.co/m6ACbbw8ol +12/26/2017,Sports_celeb,@FloydMayweather,Happy Holidays To Everyone. https://t.co/Dl9CBoBnmp +12/25/2017,Sports_celeb,@FloydMayweather,HAPPY HOLIDAYS! https://t.co/c5Cw9iRmWw +12/24/2017,Sports_celeb,@FloydMayweather,"It’s nothing like giving back to children, @icedoutbarber ,I’m so proud of you! You will always have my support.… https://t.co/Oilko743io" +12/24/2017,Sports_celeb,@FloydMayweather,"@keithandjames +#keithandjames https://t.co/FxHcSP4S68" +12/20/2017,Sports_celeb,@FloydMayweather,It’s always MONEY season. https://t.co/vdOC5xPrqB +12/15/2017,Sports_celeb,@FloydMayweather,https://t.co/zuxkthsSYK https://t.co/6jptzgl0Kw +12/10/2017,Sports_celeb,@FloydMayweather,https://t.co/tWxQCMX5Wl https://t.co/15DHdkCYmo +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/ayAbzkm6sv https://t.co/3qMnZkPRuB +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/yxhGSR1rpx https://t.co/nuwVV0PTtV +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/dyIA3zeqwS https://t.co/yZ2liznMvq +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/H58AXl4mJJ +R.I.P. Taylor https://t.co/t1j8HLZ0mt" +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/Writg5mVrF +R.I.P. Taylor https://t.co/DwLVRQKP1F" +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/w3j65h2ddF +R.I.P. Taylor https://t.co/Z4ASqPyoTq" +12/07/2017,Sports_celeb,@FloydMayweather,Taking a little food break in between gambling while on a quick visit to Macau. https://t.co/ku3fA4lTVW +12/07/2017,Sports_celeb,@FloydMayweather,https://t.co/hWA2fAXkS1 https://t.co/kvOqOSg6Yq +12/03/2017,Sports_celeb,@FloydMayweather,"Victoria Peak +Hong Kong, China +「金錢團隊」 https://t.co/LU0PQ8mXIb" +12/03/2017,Sports_celeb,@FloydMayweather,"Hong Kong, China +「金錢團隊」 https://t.co/PyZinWowSs" +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/6mBifyx7TF https://t.co/VADQ33MI61 +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/mU9kmLzjuS https://t.co/BurrqMGBi2 +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/Z1FRO8UK43 https://t.co/Z2aC3OHRS4 +12/02/2017,Sports_celeb,@FloydMayweather,https://t.co/KlXdoEVw6x https://t.co/Er4vpYNhf6 +11/20/2017,Sports_celeb,@FloydMayweather,https://t.co/XT987hqilw https://t.co/pCGLPR6JzS +11/17/2017,Sports_celeb,@FloydMayweather,"I want to wish my son, @kingkoraun a HAPPY BIRTHDAY! +Everyone FOLLOW and WISH @kingkoraun A HAPPY 18th BIRTHDAY! https://t.co/smzgkQIRIV" +11/15/2017,Sports_celeb,@FloydMayweather,RIP Grand Dad. I️ will always love you. https://t.co/ZBLBrmyFSK +11/13/2017,Sports_celeb,@FloydMayweather,"I Will Be In China In Two Weeks. +Can’t Wait!!!! See You Guys Soon https://t.co/jCF7uCgvGR" +11/09/2017,Sports_celeb,@FloydMayweather,If you’re in Las Vegas next Saturday (11/18) meet me at the Chelsea inside the Cosmopolitan to watch an exciting ni… https://t.co/UsPVP0biRM +11/08/2017,Sports_celeb,@FloydMayweather,"Let's Start Your Christmas Shopping Early And Visit @RickiBrazil Ladies Treat Yourself To Something Nice, And Fella… https://t.co/zNWlP4PIKt" +11/02/2017,Sports_celeb,@FloydMayweather,https://t.co/K7DY9vbPYk https://t.co/H0BrtadOoO +10/27/2017,Sports_celeb,@FloydMayweather,https://t.co/xwx16yD8WP https://t.co/CZ8KO5h6jS +10/23/2017,Sports_celeb,@FloydMayweather,"I got that bag...literally & figuratively. + +#Hermes +#HermesHac +#HermesDiamondHac https://t.co/8X6E4M9NQz" +10/23/2017,Sports_celeb,@FloydMayweather,"“ROCK-A-BYE-BABY” +https://t.co/E04XN3A9VV https://t.co/e5HF5jRw50" +10/23/2017,Sports_celeb,@FloydMayweather,With 3 of my 4 children at the home opener for The Clippers vs. The Lakers game. They are all grown up now & are s… https://t.co/YupLauXpO5 +10/23/2017,Sports_celeb,@FloydMayweather,https://t.co/jWUzerRgSs https://t.co/ocs170AURW +10/20/2017,Sports_celeb,@FloydMayweather,"Support my girl @keyshiacole and get her new album #1111Reset now! +@keyshiacole!! you did it! Get her new album… https://t.co/cnzluhhdWT" +10/19/2017,Sports_celeb,@FloydMayweather,https://t.co/WgwicxJ9HX +10/18/2017,Sports_celeb,@FloydMayweather,https://t.co/z6BVbn660t +10/09/2017,Sports_celeb,@FloydMayweather,Like fine wine https://t.co/AsOZxFTbIk +10/06/2017,Sports_celeb,@FloydMayweather,Best Mouthguard In The Game @IcebergGuards For $99. We Send You A Personal Kit So You Can Have A Custom Fit Guard… https://t.co/tK8NBEUWUq +10/06/2017,Sports_celeb,@FloydMayweather,Born ready. https://t.co/FVliki6lnj +10/05/2017,Sports_celeb,@FloydMayweather,"“MR. UNDEFEATED” +50-0 +‘Undefeated’ +Music by Friyie @artofvangogh +NOW AVAILABLE on iTunes +GO BUY NOW! https://t.co/OGvXljvQgw" +10/04/2017,Sports_celeb,@FloydMayweather,"My love for the city of Las Vegas is unconditional! +I put this city on my https://t.co/g9aYEl1IrH https://t.co/BLbYiVjc37" +10/04/2017,Sports_celeb,@FloydMayweather,Billion Dollar Business https://t.co/BVy2PxCxsk +09/30/2017,Sports_celeb,@FloydMayweather,EVERYONE FOLLOW & WISH @MizzMelissia A VERY HAPPY BIRTHDAY! https://t.co/ywtRyh7hTL +09/26/2017,Sports_celeb,@FloydMayweather,"Exclusive timeless artwork in my Beverly Hills home + +#BeverlyHills + +#90210 + +#TBE + +#TMT https://t.co/o4IVZZTmpu" +09/20/2017,Sports_celeb,@FloydMayweather,"On behalf of The Money Team and Myself, I want to send my sincerest condolences to the families of Mexico and to… https://t.co/Za3AZ3mmN9" +09/18/2017,Sports_celeb,@FloydMayweather,"Centra's (CTR) ICO starts in a few hours. Get yours before they sell out, I got mine https://t.co/nSiCaZ274l https://t.co/dB6wV0EROJ" +09/18/2017,Sports_celeb,@FloydMayweather,"When it comes to luxury timepieces, Hublot is in a class of its own! As a collector of great watches,… https://t.co/hTcHcLVAzh" +09/15/2017,Sports_celeb,@FloydMayweather,Spending bitcoins ethereum and other types of cryptocurrency in Beverly Hill https://t.co/q9VZ3MzpK8 https://t.co/BYyOFUnm8W +09/15/2017,Sports_celeb,@FloydMayweather,https://t.co/rFIUcblFIh https://t.co/YBjI7XnlOV +09/13/2017,Sports_celeb,@FloydMayweather,"RT @lelepons: This video is so good @FloydMayweather @awkwardpuppets @rudymancuso!!!!! + +https://t.co/Je7MkSPNn8" +09/13/2017,Sports_celeb,@FloydMayweather,"RT @tubefilter: Fresh Off His Big Win, @FloydMayweather Sits Down With @rudymancuso’s ‘@AwkwardPuppets’ https://t.co/Qn3LVPXK8H" +09/13/2017,Sports_celeb,@FloydMayweather,RT @shots: Best @FloydMayweather Interview by @awkwardpuppets via Shots Studios: https://t.co/0Z1npYb95D https://t.co/U7K0mAOR5K +09/12/2017,Sports_celeb,@FloydMayweather,I truly love & appreciate my fans. This tattoo artist is unbelievable https://t.co/oJ2kHPoXAb +09/12/2017,Sports_celeb,@FloydMayweather,I truly love & appreciate my fans. This tattoo artist is unbelievable https://t.co/w1ltFwVg4u +09/11/2017,Sports_celeb,@FloydMayweather,"Check your local TV listing on NBC today; Monday, Sept 11, 2017 and tune in on The Steve Harvey Show for my 1st TV… https://t.co/3cH7eEFAFA" +09/11/2017,Sports_celeb,@FloydMayweather,https://t.co/ve7zkkGqId https://t.co/0TL2QW7fpN +09/09/2017,Sports_celeb,@FloydMayweather,Ladies love to be spoiled. 10 Hermes Birkin Bags cause I can. #hermes #birkin #tmt #tbe https://t.co/zx7Iz4DNQt +09/08/2017,Sports_celeb,@FloydMayweather,"I do it all for them. Unconditional love. +#family #children + +https://t.co/CtdEjfq8QJ https://t.co/LnpLrZNu3K" +09/07/2017,Sports_celeb,@FloydMayweather,Follow my playlist on @Spotify https://t.co/vJUKEwz9zH +09/07/2017,Sports_celeb,@FloydMayweather,Check Out @IcebergGuards To Get The Best Mouth Guard For Athletes. #BreatheAbility https://t.co/dd0j1vE6I3 +09/05/2017,Sports_celeb,@FloydMayweather,RT @awkwardpuppets: I have the first interview with the Champ @floydmayweather since #MayweatherMcGregor fight. It's coming soon to https:/… +09/05/2017,Sports_celeb,@FloydMayweather,"Texting Bruce, my driver. https://t.co/m78dnq0ivC" +09/04/2017,Sports_celeb,@FloydMayweather,"Las Vegas, come visit @girlcollection 7 days a week. [Song is Will I See You by @Anitta] https://t.co/bhQqjJS39z" +09/04/2017,Sports_celeb,@FloydMayweather,RT @HugoGloss: O @floydmayweather bem maravilhoso no stripclub dele usando #WillISeeYou de trilha no stories!! https://t.co/vQkGVOzYR5 +09/04/2017,Sports_celeb,@FloydMayweather,RT @rudymancuso: Coming soon @FloydMayweather @awkwardpuppets @john @shots https://t.co/IJVtgFw4u9 +08/31/2017,Sports_celeb,@FloydMayweather,I'm going in the Guinness Book of World Records for that heist. @PhilippPlein78 #TMT #TBE https://t.co/2d5AdmA9lg +08/31/2017,Sports_celeb,@FloydMayweather,Smile because life is great. #TMT #TBE https://t.co/GAblmczXj6 +08/31/2017,Sports_celeb,@FloydMayweather,RT @john: thank you @idris_erba https://t.co/OzxTNAtWtB +08/29/2017,Sports_celeb,@FloydMayweather,RT @MaiaMitchell: https://t.co/Nq0qUlI0iu +08/27/2017,Sports_celeb,@FloydMayweather,@dathanvp Thank you family. +08/27/2017,Sports_celeb,@FloydMayweather,50 - 0 +08/27/2017,Sports_celeb,@FloydMayweather,Thank you to the great country of Ireland and all the countries around the world for supporting me. +08/27/2017,Sports_celeb,@FloydMayweather,@ddlovato Thank you. +08/27/2017,Sports_celeb,@FloydMayweather,Thank you everyone in Las Vegas and everyone at home who ordered PPV. Thank you @SHOsports and my team… https://t.co/7kwPA2NXRo +08/27/2017,Sports_celeb,@FloydMayweather,"Without God, none of this is possible. THANK YOU" +08/27/2017,Sports_celeb,@FloydMayweather,RT @JBALVIN: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @Anitta: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,What were the odds on that? #paddypower #alwaysbetonblack ☘️ https://t.co/EPsbCygfaR +08/26/2017,Sports_celeb,@FloydMayweather,RT @lelepons: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @rudymancuso: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @inanna: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @HannahStocking: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @ElJuanpaZurita: #TeamMayweather ⚡️🔝 +08/26/2017,Sports_celeb,@FloydMayweather,RT @awkwardpuppets: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @shots: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,"Head to the theaters tonight to witness me make history! For locations near you, go to https://t.co/lXsQk9LZN2" +08/26/2017,Sports_celeb,@FloydMayweather,#TeamMayweather https://t.co/vtUvv0hUOp +08/26/2017,Sports_celeb,@FloydMayweather,Thank you @hublot for the unconditional support over the years https://t.co/n6MPnqSkgD +08/26/2017,Sports_celeb,@FloydMayweather,Talking doesn't win fights. +08/26/2017,Sports_celeb,@FloydMayweather,RT @john: The official weigh-in with @FloydMayweather. https://t.co/wdqUbAeK4G +08/26/2017,Sports_celeb,@FloydMayweather,"RT @LEllerbe: Unbelievable atmosphere at the weigh-in, can't wait until tomorrow!!!!!" +08/25/2017,Sports_celeb,@FloydMayweather,https://t.co/tOZDszQ2Sk +08/25/2017,Sports_celeb,@FloydMayweather,Weigh-in is at 3pm PT today. Make sure to watch it live. +08/25/2017,Sports_celeb,@FloydMayweather,Conor and I take will take the center stage tomorrow. Live on PlayStation®4 (PS4™). Order #MayweatherMcGregor today https://t.co/ZTqGuv9Gst +08/24/2017,Sports_celeb,@FloydMayweather,Watch me fight on @DISH Pay-Per-View. Go to https://t.co/00sSmir6JM for details on how to order #MayweatherMcGregor +08/24/2017,Sports_celeb,@FloydMayweather,"God believes in me, America believes in me, even the Irish believe in 🤜☘️ https://t.co/0W6jFFfr6B" +08/24/2017,Sports_celeb,@FloydMayweather,"I chose @TequilaAvion, Worlds Best Tequila to commemorate my 50th fight. Grab a bottle of Avion Tequila for fight n… https://t.co/icJA5SaGcm" +08/23/2017,Sports_celeb,@FloydMayweather,RT @ConorMaples: This @Spotify workout playlist from @FloydMayweather will get you amped for the gym — or for watching the fight https://t.… +08/23/2017,Sports_celeb,@FloydMayweather,You can call me Floyd Crypto Mayweather from now on #HubiiNetwork #ICO starts tomorrow! Smart contracts for sports?… https://t.co/u5ahtljk3B +08/23/2017,Sports_celeb,@FloydMayweather,What are you waiting for? Order the fight NOW on @verizonfios and you can win a trip to a future boxing event! https://t.co/2wdaI1L7jo +08/23/2017,Sports_celeb,@FloydMayweather,https://t.co/ZLirM3UUBi +08/18/2017,Sports_celeb,@FloydMayweather,I know everyone's excited to see my biggest fight ever... but blowing up my phone isn't going to get you anywhere..… https://t.co/Azo8HoIHBL +08/17/2017,Sports_celeb,@FloydMayweather,I don't only bring the action inside the ring! Watch me on the #LateLateShow w/ @JKCorden tonight at 12:37/11:37c o… https://t.co/SvsAyTmOOL +08/16/2017,Sports_celeb,@FloydMayweather,RT @Isaiah_Thomas: Always good to see my brother @FloydMayweather. Aug 26th he will be 50-0 #TMT #TBE +08/15/2017,Sports_celeb,@FloydMayweather,RT @MayweatherPromo: What makes @FloydMayweather vs @TheNotoriousMMA intriguing https://t.co/pPV6ceP6dz +08/12/2017,Sports_celeb,@FloydMayweather,"Tune in for The Third Episode +Of Four-Part Series. Premieres Tonight at 10p.m. ET/ 7p.m. PT + On SHOWTIME… https://t.co/Qyy8LgMut1" +08/06/2017,Sports_celeb,@FloydMayweather,new photo on bigboymansion's IG https://t.co/FkUsYkZwcs +08/05/2017,Sports_celeb,@FloydMayweather,#TMT +08/05/2017,Sports_celeb,@FloydMayweather,https://t.co/zHQaFxFw1c https://t.co/IGXDiDHdC7 +08/04/2017,Sports_celeb,@FloydMayweather,@billboard @Anitta Congratulations. +08/01/2017,Sports_celeb,@FloydMayweather,https://t.co/3uljFZ24hC https://t.co/TOF5iBPoHu +08/01/2017,Sports_celeb,@FloydMayweather,"Just shooting around, working on my midrange jumper #nba +@iam_jcraw +@Alonzo_Earle +@nba https://t.co/ssDhS1DdQ4" +06/28/2018,Sports_celeb,@SHAQ,"RT @DeepakChopra: Join me in supporting @RealAfroScholar's efforts to bring @amazon's #HQ2 to #Newark, NJ. He's helping to create a more pe…" +06/28/2018,Sports_celeb,@SHAQ,MIAMI. 305. I am coming home and promise you this one is going to be legendary. Grab your tickets while you still c… https://t.co/adEGwRClLt +06/28/2018,Sports_celeb,@SHAQ,"RT @GetUpESPN: Regarding a rap battle re-match, @kenjeong has a message for you @SHAQ: https://t.co/1OAkDB3LVC" +06/27/2018,Sports_celeb,@SHAQ,"Had to do it big for last night, thanks for helping me up my suit game @jcpenney #ad https://t.co/hBAKKn9GWr" +06/27/2018,Sports_celeb,@SHAQ,"It's summertime, baby! Stay cool, hydrated, and energized with @TheRealEnergice now at every @myfamilydollar store… https://t.co/zZ5yHad6FM" +06/27/2018,Sports_celeb,@SHAQ,Congratulations to Coach Johnny Jones the head coach of Texas Southern University we wish you well brother +06/27/2018,Sports_celeb,@SHAQ,"RT @MayorLevine: .@Shaq is on #TeamLevine, are you? This is our year to change the direction of Florida! + +Growing up I worked every job, fr…" +06/26/2018,Sports_celeb,@SHAQ,Suns out guns out...Summer of SHAQ starts now @BillboardDance 🔥💪 https://t.co/fPpdHKnbsJ https://t.co/xkbEal70IQ +06/24/2018,Sports_celeb,@SHAQ,DJ DIESEL AND bayati_music HAD @chateaulv ROCKING LIKE A MUG https://t.co/gKvI8WgSqW +06/23/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: NBA draft news, MLB updates, NFL insider info... + +PodcastOne Sports along w/ @SHAQ and many others bring you all the lates…" +06/22/2018,Sports_celeb,@SHAQ,Atlantic City I am coming for you July 14 🔥🔥 Jersey Shore get ready to Turn Up!! Tickets: https://t.co/eZrigt3RKb https://t.co/JcZiJ6LB4f +06/22/2018,Sports_celeb,@SHAQ,@MikeGoldFool @PostMalone Gonna miss u to +06/22/2018,Sports_celeb,@SHAQ,Congratulations @MB3FIVE and welcome to Sacramento. You've got a big career ahead of you. Already starting in style… https://t.co/lKXClkHzTy +06/21/2018,Sports_celeb,@SHAQ,"Can’t wait to visit Wisconsin on Friday. Big day of @ChampionsTour golf, #DJShaq and more. Check out my… https://t.co/oush5LHWnX" +06/20/2018,Sports_celeb,@SHAQ,"My new game Shaq Slam is on @myVEGAS Facebook baby! Here’s some chips for you to spin & win: +Facebook –… https://t.co/cr0iTHGbj0" +06/17/2018,Sports_celeb,@SHAQ,"Enough said, y’all need to check this out, a… https://t.co/ulsxmwnLk9" +06/16/2018,Sports_celeb,@SHAQ,Caught up with @MB3FIVE at the studio to show him the ropes. @JCPenney followed us around to capture it all. Watch… https://t.co/85lq5Qp7ki +06/15/2018,Sports_celeb,@SHAQ,Thanks @dubmagazine for hooking my cars up with your new @dubirtint #tintwithtechnology installed by @aesouthbay +06/14/2018,Sports_celeb,@SHAQ,Meet Big Fella! Check me out in #UncleDrew In theaters June 29 https://t.co/rBzSVjb6DK https://t.co/qQbbEDpdj5 +06/14/2018,Sports_celeb,@SHAQ,@theofficialhesh Just send me the heat 🔥🔥🔥 and I will drop that bass cuz +06/13/2018,Sports_celeb,@SHAQ,Thank you for sending your questions. See @UncleDrewFilm in theaters June 29! #AskShaq https://t.co/VEyzO3fy2l +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @kaylaxabby .@kaylaxabby #AskShaq https://t.co/i2jwEin49H +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @RishiK19 .@RishiK19 #AskShaq https://t.co/mhnay7FX0V +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @TheMasonGaming .@TheMasonGaming #AskShaq https://t.co/CaIWS3NuWq +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @spiros602 @TwitterMovies .@spiros602 @TheGeneralAuto #AskShaq https://t.co/hhLA51r26w +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @RishiK19 .@rishik19 #AskShaq https://t.co/c38uIHidiV +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @BALLnROLL .@BALLnROLL #askshaq https://t.co/RAzeStgqNe +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @neverheardabout @UncleDrewFilm .@neverheardabout #askshaq https://t.co/jakRW5jQoi +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @AmeliaEarhart1 .@AmeliaEarhart1 @nate_robinson #AskShaq https://t.co/Rv1M7zpM9w +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @JesseAndClarke .@JesseAndClarke @KyrieIrving #AskShaq https://t.co/BQZMjGIpdS +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @LisaLeslie .@LisaLeslie #AskShaq https://t.co/FkSRdDSCVT +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @Dyl5nSmith .@Dyl5nSmith #AskShaq https://t.co/ICVMkqCWQJ +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @ChaoticProdigy_ #AskShaq https://t.co/VlX8PwEz4x +06/13/2018,Sports_celeb,@SHAQ,@kaylaxabby .@kaylaxabby #AskShaq https://t.co/i2jwEin49H +06/13/2018,Sports_celeb,@SHAQ,@RishiK19 .@RishiK19 #AskShaq https://t.co/mhnay7FX0V +06/13/2018,Sports_celeb,@SHAQ,@TheMasonGaming .@TheMasonGaming #AskShaq https://t.co/CaIWS3NuWq +06/13/2018,Sports_celeb,@SHAQ,@spiros602 @TwitterMovies .@spiros602 @TheGeneralAuto #AskShaq https://t.co/hhLA51r26w +06/13/2018,Sports_celeb,@SHAQ,@RishiK19 .@rishik19 #AskShaq https://t.co/c38uIHidiV +06/13/2018,Sports_celeb,@SHAQ,@BALLnROLL .@BALLnROLL #askshaq https://t.co/RAzeStgqNe +06/13/2018,Sports_celeb,@SHAQ,@neverheardabout @UncleDrewFilm .@neverheardabout #askshaq https://t.co/jakRW5jQoi +06/13/2018,Sports_celeb,@SHAQ,@AmeliaEarhart1 .@AmeliaEarhart1 @nate_robinson #AskShaq https://t.co/Rv1M7zpM9w +06/13/2018,Sports_celeb,@SHAQ,@JesseAndClarke .@JesseAndClarke @KyrieIrving #AskShaq https://t.co/BQZMjGIpdS +06/13/2018,Sports_celeb,@SHAQ,@LisaLeslie .@LisaLeslie #AskShaq https://t.co/FkSRdDSCVT +06/13/2018,Sports_celeb,@SHAQ,@Dyl5nSmith .@Dyl5nSmith #AskShaq https://t.co/ICVMkqCWQJ +06/13/2018,Sports_celeb,@SHAQ,@ChaoticProdigy_ #AskShaq https://t.co/VlX8PwEz4x +06/13/2018,Sports_celeb,@SHAQ,#AskShaq https://t.co/16aHnuPA19 +06/13/2018,Sports_celeb,@SHAQ,Please help my friends in Gwinnett County. Shelter is full! Adopt a new family member! This month all dogs and cats… https://t.co/LE0KigY789 +06/13/2018,Sports_celeb,@SHAQ,Who wore the 'stache better? #BigFella or #LilG #ad https://t.co/dUMOW08FMK +06/12/2018,Sports_celeb,@SHAQ,I’m answering your Uncle Drew questions live on Wednesday! Tweet them to me now using #AskShaq! https://t.co/carNdIgaLR +06/11/2018,Sports_celeb,@SHAQ,@j_spag @svddendeathdub That track had the crowd getting sick as fuh... send me some more of that fire cuz +06/10/2018,Sports_celeb,@SHAQ,In the studio with @KingsGuardGG. #SHAQramento 👑🎮 https://t.co/lNSBqxqQjO +06/09/2018,Sports_celeb,@SHAQ,Forget @FortniteGame and play a real game! Shaq Fu: A Legend Reborn is out now. U gonna love it. https://t.co/YJ3f5ZKoFh +06/09/2018,Sports_celeb,@SHAQ,Get that #FridayFeeling!!! Pick up Shaq Fu: A Legend Reborn for the weekend. It's time to settle the score of '94! https://t.co/YJ3f5ZKoFh +06/06/2018,Sports_celeb,@SHAQ,Boom! The wait is finally over and the Shaq Attack is in full effect! Grab a copy of Shaq Fu: A Legend Reborn today… https://t.co/Dqa8EI14li +06/05/2018,Sports_celeb,@SHAQ,"THE BIG DAY HAS ARRIVED!!! Shaq Fu: A Legend Reborn is available now on PS4, Xbox One, Nintendo Switch, & Steam. St… https://t.co/jK3aD1Y1tq" +06/05/2018,Sports_celeb,@SHAQ,Was such an honor to represent @NBA2K as their Legend Edition cover athlete last year. Can’t think of anyone better… https://t.co/DffoanFK7e +06/05/2018,Sports_celeb,@SHAQ,RT @espn: On This Date: @kobebryant threw it up and @SHAQ slammed it down in Game 7 against the Blazers. https://t.co/VA7rjCcsJE +06/04/2018,Sports_celeb,@SHAQ,Nice work @StephenCurry30 on getting in the #nbafinals record books! You inspired me to add a new look to my alread… https://t.co/xlla5Sovjx +06/03/2018,Sports_celeb,@SHAQ,RT @TheRealMikeEpps: Youngster got that swag 😂👌🏾 https://t.co/sgxeWAOhmb +06/01/2018,Sports_celeb,@SHAQ,RT @krispykreme: It's free. Why not? #NationalDoughnutDay is June 1st. https://t.co/77y6SENjzP +05/29/2018,Sports_celeb,@SHAQ,"Shaq's Fun House aimed to create the most legendary event on the planet. The best DJ's in the world, carnival attra… https://t.co/337RtApuuu" +05/29/2018,Sports_celeb,@SHAQ,Who could turn down a free doughnut? Not me! Head to @KrispyKreme June 1 to snag a free one of your choice for… https://t.co/fzm1pSqGG6 +05/28/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ says Chris Paul should ""man up"" and play the rest of this #HOUvsGSW series despite his hamstring injury. + +Listen to…" +05/24/2018,Sports_celeb,@SHAQ,RT @WiredP: *Announcement* We’ve teamed up with @Shaq to bring an extremely limited (just 500 in the world!) Shaq FU: A Legend Reborn Colle… +05/24/2018,Sports_celeb,@SHAQ,@jtimberlake @NBAonTNT When you need a handsome baritone It’s gonna be me @realjoeyfatone baby bye bye bye +05/24/2018,Sports_celeb,@SHAQ,RT @jtimberlake: Google’s having a rough night. @SHAQ @NBAonTNT https://t.co/ehqGOxFeM5 +05/23/2018,Sports_celeb,@SHAQ,"Big news today! As The BIG Guy in charge at @CarnivalCruise AKA CFO, I’m honored to introduce our newest ship:… https://t.co/5JS3wVec3g" +05/23/2018,Sports_celeb,@SHAQ,"RT @shaqtin: “Nominee Numba 1! Draymond Green!” -@SHAQ, probably #Shaqtin 😂 https://t.co/glMW8zSdku" +05/23/2018,Sports_celeb,@SHAQ,DC I am coming for you!! Throwing down with my boys @cashcash at Washington’s best club @echostage. Tix on sale Thu… https://t.co/nJIqwXAiMV +05/22/2018,Sports_celeb,@SHAQ,RT @PC1Sports: Before tonight's #WarriorsVSRockets game 4 @SHAQ dropped by to give a quick message about @PodcastOne! https://t.co/mkASmeiq… +05/22/2018,Sports_celeb,@SHAQ,RT @PC1Sports: 👀👀 what is @SHAQ up to with us today? https://t.co/QTOyDv35XL +05/22/2018,Sports_celeb,@SHAQ,Last chance to come hang with me in Vegas! Enter here and support the SAGERSTRONG Foundation:… https://t.co/AVx9777mGD +05/22/2018,Sports_celeb,@SHAQ,.@TheRealEnergice helps me stay hydrated and energized. Find #Energice in every @DollarGeneral store nationwide! #ad +05/22/2018,Sports_celeb,@SHAQ,"RT @NBAonTNT: ""I've come a long way since Kazaam!"" + +@SHAQ stars in Shaqanimal Shaqkingdom. https://t.co/Ch6ly9ooKt" +05/20/2018,Sports_celeb,@SHAQ,RT @richeisen: For your weekend listening: the newest “Eyes On Sports” where Suzy and I welcome two guests — @notthefakeSVP on our old ESPN… +05/19/2018,Sports_celeb,@SHAQ,Headed to The Bay this weekend #nbaplayoffs #warriors #rockets what up @G_Eazy where dem Bay Area ballers @E40… https://t.co/QuCRktI4XA +05/17/2018,Sports_celeb,@SHAQ,RT @RealBillRussell: #shaqinafool @NBAonTNT I once had an inbound pass that hit the guide wire that should qualify. @shaq +05/17/2018,Sports_celeb,@SHAQ,I’m back baby on @myVEGAS! Play my new game Shaq Slam. Here’s some chips to get you started:… https://t.co/lg1RnzPtTz +05/17/2018,Sports_celeb,@SHAQ,@kingjames I thought it was you brother but it… https://t.co/ha1yFxqh7O +05/16/2018,Sports_celeb,@SHAQ,"Me, Chuck Boy, @TheJetOnTNT and @TurnerSportsEJ back in #Houston tonight for game 2 @NBAonTNT… https://t.co/8T3OjxZ4qG" +05/16/2018,Sports_celeb,@SHAQ,‘It’s time to settle the score of ’94! I’m back baby! Pre-order the new and improved #ShaqFu at @GameStop and be re… https://t.co/AVQHGZVSiO +05/15/2018,Sports_celeb,@SHAQ,RT @JustinLockhart_: Extremely honored and blessed to have received an offer from Utah State! #GoAggies https://t.co/5Lt4chZAyG +05/09/2018,Sports_celeb,@SHAQ,"Y'all better step aside, cause @TheGeneralAuto and I have arrived! 🏀 + +Get your first look at #BigFella and #LilG p… https://t.co/H0VzrCGLrq" +05/07/2018,Sports_celeb,@SHAQ,RT @PC1Sports: A listener of The Big Podcast had a question for @SHAQ - which superstar would he choose to make NBA title runs for the next… +05/06/2018,Sports_celeb,@SHAQ,"Ready to flex on em tonight. Got something big with @jcpenney coming for you guys, catch me on @NBAonTNT #AllAtJCP… https://t.co/noZu4OlmZr" +05/06/2018,Sports_celeb,@SHAQ,Can't believe this was 25 years ago #ROOKIEOFTHEYEAR Who you got this year? https://t.co/zOazz1c4mp +05/05/2018,Sports_celeb,@SHAQ,RT @JustinLockhart_: Blessed to say I have received my 2nd offer and 1st Pac 12 offer from the University of Utah! #GoUtes https://t.co/hLY… +05/05/2018,Sports_celeb,@SHAQ,"@JalenRose you tell @paulpierce34 that’s was a different Shaq, come on truth lol I’m watching you @ paulpierce34 great job fellas" +05/04/2018,Sports_celeb,@SHAQ,"DJ Diesel X @steveaoki X @dimmak +Stay tuned this motion picture is to be continued... https://t.co/py5YZ2trdB" +05/03/2018,Sports_celeb,@SHAQ,What @mcuban used to play every time I went to the free throw line hillarious https://t.co/XYMXRgTLFN +05/03/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ makes his BOLD prediction where @KingJames & @Yg_Trece will be playing next year! + +Hear the rest of this conversation…" +05/02/2018,Sports_celeb,@SHAQ,I’m looking for a VIP... and it could be YOU! For your chance to party with me in Vegas & support a great cause go… https://t.co/rU9G5KOR0U +05/01/2018,Sports_celeb,@SHAQ,I made chuck go into his MATRIX #NBAONTNT https://t.co/0CaupkxZtG +04/30/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: A new episode of The Big Podcast with @SHAQ is out! + +Here's a clip of Shaq talking about his NBA Playoff curfew rules when…" +04/29/2018,Sports_celeb,@SHAQ,My main man ceowacko142 just hook me up with 100 dope t shirts check him out… https://t.co/MddNMeJ03T +04/28/2018,Sports_celeb,@SHAQ,Got this @G_Eazy @yogottikom and @YBNNahmir on repeat! And you know it’s from the #UncleDrew Soundtrack. Get it: https://t.co/ETPrPdHfbu +04/27/2018,Sports_celeb,@SHAQ,"RT @TheGeneralAuto: Okay, #BigFella! You know who to call if you need a 6th man for the geriatric squad, @SHAQ 😉 + +#GetBuckets #UncleDrew h…" +04/26/2018,Sports_celeb,@SHAQ,Let’s GO! The new trailer for #UncleDrew is here! See the crew in theaters June 29. uncledrewfilm https://t.co/dEtNcUExdz +04/26/2018,Sports_celeb,@SHAQ,Let’s GO! The new trailer for #UncleDrew is here! See the crew in theaters June 29: https://t.co/h2fu9SH19A @UncleDrewFilm +04/26/2018,Sports_celeb,@SHAQ,I didn’t know they had sharks and alligators in MINNESOTA LAKES they tried to attack me America… https://t.co/5F9MaR0d8S +04/25/2018,Sports_celeb,@SHAQ,"What's going on with Kawhi in San Antonio? Here's what I think went down, from this week's #Shaqcast.… https://t.co/sU40E6d6UY" +04/25/2018,Sports_celeb,@SHAQ,"When I go to Vegas, I go big. Think you can handle it? Support @SagerStrong & enter to be my VIP:… https://t.co/nVHZM35LXb" +04/25/2018,Sports_celeb,@SHAQ,"RT @MikeGoldFool: Dear @KingJames & @JoelEmbiid, here is how you can avoid winning Shaqtin MVP: + +1) tweet Shaq something nice and funny +2)…" +04/25/2018,Sports_celeb,@SHAQ,"RT @UncleDrewFilm: Squad up! Check out the new official poster for #UncleDrew in theaters June 29! Starring @KyrieIrving, @LilRel4, @Shaq,…" +04/24/2018,Sports_celeb,@SHAQ,Meek Mill Boards Chopper Heading to 76ers Game! via @TMZ https://t.co/0lKqOdHQGO https://t.co/HswaJ2EKRk +04/23/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ gives his thoughts on what he thinks went down between Kawhi Leonard and the Spurs + +Listen to the full episode here:…" +04/23/2018,Sports_celeb,@SHAQ,Be yourself be different be the best be whatever you want. https://t.co/sZwG77ui95 +04/22/2018,Sports_celeb,@SHAQ,@sickickmusic does it again the guy is crazy I seen him do it in real life daaaaaaam https://t.co/NRRUJHreTF +04/21/2018,Sports_celeb,@SHAQ,@Grabbitz had me jammin like a mug https://t.co/LZ79RfVhHR +04/19/2018,Sports_celeb,@SHAQ,"From basketball to big business, it's all about fun. Thanks to @RealSportsHBO for the feature: https://t.co/rZGvAjDK6B" +04/18/2018,Sports_celeb,@SHAQ,I want to fly you out to Vegas to live it up with me! It’s gonna be 🔥🔥🔥 Support #SAGERSTRONG & enter to win:… https://t.co/TTSizc16Yv +04/15/2018,Sports_celeb,@SHAQ,"Watch me battle @kenjeong on the premiere of @DropTheMic tonight at 10:30 on TBS."" https://t.co/1zqdQH8awX" +04/13/2018,Sports_celeb,@SHAQ,Catch us on the @latelateshow! @victoriabeckham @JKCorden Tonight at 12:37/11:37c on CBS #LateLateShow https://t.co/dCastQddNU +04/10/2018,Sports_celeb,@SHAQ,"@krispykreme Hey, what about me?! #KrispyKremePartner" +04/09/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: .@SHAQ calls out the Hall of Fame committee for not letting Chris Webber into the Hall again this year, which sparks a spir…" +04/07/2018,Sports_celeb,@SHAQ,🚨 My man @andrewhypes and I produced a crazy remix to @iamcardib “Bartier Cardi” to celebrate… https://t.co/x8JJVRMECd +04/07/2018,Sports_celeb,@SHAQ,🚨 My man @andrewhypes and I produced a crazy remix to @iamcardib “Bartier Cardi” to celebrate the release of her de… https://t.co/3WeFxjDLPo +04/06/2018,Sports_celeb,@SHAQ,RT @RoParrish: .@KGArea21 Shaq + KG choppin it up with Yours Truly @RoParrish — talkin whips 4 @KumhoTireUSA @NBAonTNT RT https://t.co/a8k7… +04/05/2018,Sports_celeb,@SHAQ,"Our squad is stacked and about to run this league. Let’s get it, @KingsGuardGG! 💯 #Shaqramento https://t.co/l4baQSUPj6" +04/04/2018,Sports_celeb,@SHAQ,Its OVER! RANE changed the GAME No Needles let’s go @IRIE @atrak @djkhaled @djcarnage @steveaoki @diplo @RaneDJ… https://t.co/ZxzKSjc5nl +04/02/2018,Sports_celeb,@SHAQ,Get ready NBA 2K League... I’m the new GM of @KingsGuardGG and we’re about to reign supreme! 👑 🎮 #Shaqramento https://t.co/TZ1ipE5Xdn +04/01/2018,Sports_celeb,@SHAQ,Just posted a video https://t.co/D7K7mHCYz8 +03/30/2018,Sports_celeb,@SHAQ,"RT @UncleDrewFilm: #GetBuckets with @KyrieIrving, @LilRel4, @SHAQ, @RealChrisWebber, @ReggieMillerTNT, @Nate_Robinson, @LisaLeslie, @TheEri…" +03/28/2018,Sports_celeb,@SHAQ,Congrats to my friend MARK EATON great book https://t.co/rDkp3uuu5S +03/28/2018,Sports_celeb,@SHAQ,"Had a wild ride to shaqsfunhouse last weekend thanks to @Lyft #ad"" https://t.co/fDCj57XZfn" +03/28/2018,Sports_celeb,@SHAQ,"Had a wild ride to shaqsfunhouse last weekend thanks to @Lyft #ad"" https://t.co/q2Fnq0y0JR" +03/28/2018,Sports_celeb,@SHAQ,RT @RealSportsHBO: TONIGHT on #RealSports (10:30 PM ET/PT): @BernardGoldberg finds out how @SHAQ turned a HOF @NBA career into a business e… +03/27/2018,Sports_celeb,@SHAQ,Listen up! Something big (and tall) is coming your way soon. @jcpenney #AllAtJCP #ad https://t.co/4yFJco8q2C +03/24/2018,Sports_celeb,@SHAQ,"Shaq X @steveaoki #MiamiMusicWeek +https://t.co/WdwsKssC1j #shaqsfunhouse https://t.co/Qwzu5LSmhg" +03/23/2018,Sports_celeb,@SHAQ,@steveaoki X SHAQ #miamimusicweek #miamiultra https://t.co/WdwsKsb19L #shaqsfunhouse https://t.co/Qwzu5LALpI +03/23/2018,Sports_celeb,@SHAQ,@Drewo93 Who said you were not good enough? +03/23/2018,Sports_celeb,@SHAQ,"I’m bringing my talents to South Beach this weekend #ShaqsFunHouse +#MiamiMusicWeek https://t.co/udzPKyt1Ed" +03/22/2018,Sports_celeb,@SHAQ,RT @shaqtin: 🚨 TRAGIC BRONSON ALERT 🚨 https://t.co/PLrisbpRfJ +03/21/2018,Sports_celeb,@SHAQ,#SnowDay so what? I'm getting my hydration on with @TheRealEnergice frozen ice bars. Now at @myfamilydollar #ad https://t.co/q1XEBPFjMh +03/21/2018,Sports_celeb,@SHAQ,Yup https://t.co/Wpfa0d9TNb +03/19/2018,Sports_celeb,@SHAQ,Only a few spots left on my guest list to the first ever @shaqsfunhouse this Friday 🎧🎡🏀 RSVP & VIP TABLE reservatio… https://t.co/JImzcwmSlH +03/18/2018,Sports_celeb,@SHAQ,@TheJetOnTNT glad u got rid of the ugly fat guy and got a sexy underwear model next to you hey Wallace ZIBIAK +03/17/2018,Sports_celeb,@SHAQ,"@TRAEABN and @youngthug team up for a melodic new track “Don’t Know Me” +https://t.co/nopqOF4zqY #HometownHero https://t.co/1jqcVyvy6N" +03/17/2018,Sports_celeb,@SHAQ,@ClarkKelloggCBS and GREG GUMBLE how y’all gonna fire @TheJetOnTNT and replace him with a aborcombie and Fitch unde… https://t.co/K9xuVuVRIB +03/17/2018,Sports_celeb,@SHAQ,"Hey Barkley and @TheJetOnTNT first the Virginia loss killed my bracket, then I just saw a TURTLE RAT" +03/17/2018,Sports_celeb,@SHAQ,"“I'm Still Laughing” my newest All-Stars comedy w/Bruce Bruce, Huggy Lowdown, Aida Rodriguez & Brian ""Da Wildcat"" S… https://t.co/yirDJEu2uJ" +03/16/2018,Sports_celeb,@SHAQ,The steph curry robot he never misses like steph curry https://t.co/9i6OVSZM3O +03/16/2018,Sports_celeb,@SHAQ,"Part Festival, Part Carnival…I'm launching @ShaqsFunHouse in Miami next week alongside the world’s best DJ’s. Y’all… https://t.co/NgwwZn6Lzp" +03/15/2018,Sports_celeb,@SHAQ,Flex on 'em after your workout with @TheRealEnergice #ad https://t.co/xL4JgA2TuG +03/15/2018,Sports_celeb,@SHAQ,"Yo #Shaqcast listeners time for you to vote for your favorites in the 2018 #Borderline Bracket, your winners will m… https://t.co/KM8L8eWiSz" +03/14/2018,Sports_celeb,@SHAQ,The #BigFella dominates this time every year. Me and the @UncleDrewFilm cast challenge you to use #UncleDrewBracket… https://t.co/13Awrs4eX2 +03/13/2018,Sports_celeb,@SHAQ,"RT @NRGgg: Samsung #GalaxyS9 & @LogitechG Keyboard, Mouse and Headset #Giveaway +-Tag Your Friends +-RT, Like & Follow @NRGgg +Click Here: ht…" +03/13/2018,Sports_celeb,@SHAQ,Would like to thank THE JEFFERSON AWARDS COMMITTEE for choosing me as award winner for… https://t.co/Nf4nM86CVo +03/12/2018,Sports_celeb,@SHAQ,The WALDORF ASTORIA AND PENNINSULA HOTEL IN NEW YORK ARE MY FAVORITE SPOTS IN NEW YORK +03/12/2018,Sports_celeb,@SHAQ,Think you can beat me and @RobRiggle? Compete against the PC1 hosts in the #PodcastOneSportsNet Bracket Challenge.… https://t.co/trBmMI0qwC +03/10/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: .@Shaq and other #PodcastOneSportsNet hosts are competing in a #BracketChallenge this year, and you can join in! Do you hav…" +03/08/2018,Sports_celeb,@SHAQ,I am proud to support the incredible students behind #marchforourlives. Join us on March 24 as we march on Washingt… https://t.co/ZIX0Y960vi +03/08/2018,Sports_celeb,@SHAQ,"Yes, you can get an @oreo Chocolate Candy Bar even if you’re not Laura McPingleton in the #OreoBirthdayGiveaway #ad… https://t.co/wPHEk2sXv3" +03/07/2018,Sports_celeb,@SHAQ,Good news: I finally found my phone. Even better news: I’m giving away 1 Million @oreo Chocolate Candy Bars!… https://t.co/VtuDFtGhDJ +03/06/2018,Sports_celeb,@SHAQ,Thanks for all the birthday wishes #moneyballonchallenge https://t.co/14qiOMNwtH +03/06/2018,Sports_celeb,@SHAQ,.@oreo and I share a birthday … and a love of giving away 1 Million free OREO Chocolate Candy Bars!… https://t.co/Hv1W9f6yEz +03/05/2018,Sports_celeb,@SHAQ,RT @Skye_chanel: @SHAQ Oh Lawd here comes the Kazaam animated short film from Dreamworks that nobody asked for😒 https://t.co/AA5aqHS4m7 +03/05/2018,Sports_celeb,@SHAQ,"Congrats to KOBE first Oscar that’s big bro #dearbasketball. Proud of you, Big honor for you and your family. I’m jealous lol" +03/04/2018,Sports_celeb,@SHAQ,Dj diesel rockin the crowd in San Antonio Texas @VeroTrueSocial https://t.co/fHXG9a8djy +03/02/2018,Sports_celeb,@SHAQ,Had to put some music to this one woo weeee dam Gina https://t.co/cmzC8V7oyP +03/02/2018,Sports_celeb,@SHAQ,"@chadwickboseman you are incredible brother , I am literally your biggest fan may you have continued success brother https://t.co/uD5vkmbQ0H" +03/01/2018,Sports_celeb,@SHAQ,"I have the coolest treehouse ever... don’t miss Watching me and @TheTreehouseMan tomorrow, Friday at 9p ET on… https://t.co/xEEWTsYriD" +03/01/2018,Sports_celeb,@SHAQ,"As Carnival CFO, I’d like to welcome royalty to the family! @IAMQUEENLATIFAH congrats on being named Godmother of… https://t.co/RBEVbfiYPi" +02/28/2018,Sports_celeb,@SHAQ,"Next month, you could win a fan's dream: a trip to San Antonio to play on MY team in a celebrity game! Don't miss y… https://t.co/5ZFN5AoiC1" +02/28/2018,Sports_celeb,@SHAQ,Since y’all scared the las #familydancechallenge I challenge @kingjames @kevinhart4real @diddy… https://t.co/zKyHrCwaPD +02/25/2018,Sports_celeb,@SHAQ,"I like my new line of kids shoes so much, I had them made in King size. #ShaqShoes #CheckThemOut https://t.co/LYl4lruSBv" +02/25/2018,Sports_celeb,@SHAQ,“Proud to Exec Produce a powerful documentary about saving the kids in the inner cities. Check it out on @Netflix “A WEEK IN WATTS”. +02/24/2018,Sports_celeb,@SHAQ,[MT] #DamnSonWheredYouFindThis: F*ck How It Turn Out Edition:: #GetItLIVE! https://t.co/gFcwR9wqqR @LiveMixtapes… https://t.co/lvHVYPMaVM +02/24/2018,Sports_celeb,@SHAQ,HQPPY BIRTHDAY TO MY NEPHEW @shaq_morris keep it going big homie u almost at the finish line https://t.co/HQNe8kXi5h +02/23/2018,Sports_celeb,@SHAQ,This needs to be a show. What do you think https://t.co/qa1jEpm56Y +02/22/2018,Sports_celeb,@SHAQ,Here is a Throwback Thursday for ya 🎤Me and Fu-Schnickens on @arseniohall 💪🏾💪🏾💪🏾 Don’t call it comeback🎤I’ve been h… https://t.co/fT6zwZPOyD +02/22/2018,Sports_celeb,@SHAQ,"When you’re 7 feet tall, you eat your #PringlesStack 7 chips tall. Vote for your chance to play on my Team… https://t.co/4WHBwOv4yG" +02/22/2018,Sports_celeb,@SHAQ,"See why @bluhazl is sleeping better with @casper +https://t.co/BBLD7wWSj1" +02/22/2018,Sports_celeb,@SHAQ,SHAQTIN A FOOL MIDSEASON AWARDS COMIN IN FIVE MINUTES DONT MISS IT +02/21/2018,Sports_celeb,@SHAQ,"U know u got nothin better to do tonight than watch my show.... dont miss it. +#ShaqtinAwards #NBATV https://t.co/W0OiVKtj3S" +02/21/2018,Sports_celeb,@SHAQ,RT @BET: Wishing a happy birthday to the amazing @rihanna! Enjoy your day sis. https://t.co/hZpdVcLrRg +02/21/2018,Sports_celeb,@SHAQ,RT @danawhite: I’m gonna knock that smirk right off your face!!! #fightweek https://t.co/e0P5UIidv2 +02/21/2018,Sports_celeb,@SHAQ,Happy birthday to the great Charles Barkley https://t.co/EnjTzJ8wBB +02/19/2018,Sports_celeb,@SHAQ,RT @MooreAshleyE: Now y’all know the #Fergie National wasn’t worse than when Carl Lewis thought he could sing it before the Bulls game... l… +02/19/2018,Sports_celeb,@SHAQ,If you haven’t seen black panther you better go now @chadwickboseman did his thing this is the… https://t.co/enWZRT4e97 +02/18/2018,Sports_celeb,@SHAQ,RT @RoParrish: .@NBATV Donovan Mitchell didn't disappoint during the dunk contest… #NBAAllStar #TakeNote https://t.co/ogVi2eSqOy +02/17/2018,Sports_celeb,@SHAQ,LA! Come hang with me at @ShoePalace tomorrow https://t.co/VpGPQrEJGB +02/16/2018,Sports_celeb,@SHAQ,Can’t wait to join #XboxLiveSessions at #OneCourt to play #XboxOneX and discuss all things #NBAAllStar. Make sure t… https://t.co/nFeFYpIKcC +02/15/2018,Sports_celeb,@SHAQ,I need to get one of these for my house. Reserve your spot now for this amazing @AmericanExpress Experience! … https://t.co/jKk0oBr3Pp +02/14/2018,Sports_celeb,@SHAQ,It’s almost time for the Big Fella to shine! Watch the brand new #UncleDrew trailer right here! The movie busts ont… https://t.co/4lr709Pazd +02/14/2018,Sports_celeb,@SHAQ,See you there https://t.co/9G5PZxIuxe +02/12/2018,Sports_celeb,@SHAQ,"Happy Birthday to the ALL TIME 🐐 +11✖️@nba 🏆 Bill Russell much love and respect https://t.co/7oyCRHF1Jj" +02/12/2018,Sports_celeb,@SHAQ,"The bigger we are, the harder we ball. Meet the #BigFella when #UncleDrew hits theaters June 29! @UncleDrewFilm https://t.co/2fdotuTGTE" +02/11/2018,Sports_celeb,@SHAQ,Fun video of my boys thanks to @overtime #overtimechallenge https://t.co/usdcRhn0Hi +02/10/2018,Sports_celeb,@SHAQ,Happy Birthday to THE SHARK @SharkGregNorman https://t.co/5qVMNXvJrK +02/09/2018,Sports_celeb,@SHAQ,I rather be blind then to not sing my favorite artist beyonce song #beyoncesbiggestfanliterally https://t.co/e2HxIjO9Kk +02/09/2018,Sports_celeb,@SHAQ,BEAT DONUTS EVER #krispykreme #krispykremedoughnuts https://t.co/BwHSri21ka +02/08/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: Look at that, Gunner and @SHAQ are the same size 😂 Don't miss his cameo on #MakeSpeidiFamousAgain with @spencerpratt & @hei…" +02/07/2018,Sports_celeb,@SHAQ,Excited to continue my partnership with @TheGeneralAuto on our mission to #MakeLifeEasier for customers! https://t.co/xB3vYoF5vD +02/07/2018,Sports_celeb,@SHAQ,RT @SHAQ: @amiller @JimmyRollins11 @ryanhoward @SFShock Let’s do this! Join me in the #BabyBayChallenge to support our commitment to youth… +02/07/2018,Sports_celeb,@SHAQ,@amiller @JimmyRollins11 @ryanhoward @SFShock Let’s do this! Join me in the #BabyBayChallenge to support our commit… https://t.co/qfv1Pi0WTS +02/07/2018,Sports_celeb,@SHAQ,Check out a young Shaq Daddy sparking the biggest rap war the NBA has ever seen in this weeks episode of… https://t.co/8OmXdgZW2x +02/06/2018,Sports_celeb,@SHAQ,Want a chance to be coached by yours truly? Then get to https://t.co/I2xfxR4XQ3 and vote for Team @Pringles!… https://t.co/uv6hIaFEQG +02/06/2018,Sports_celeb,@SHAQ,@awonderland hey Alice how r u +02/04/2018,Sports_celeb,@SHAQ,#FamilyGreatly #KraftEntry https://t.co/C41MBP0fxW +03/02/2018,Sports_celeb,@larrybirddaily,"PLAYER COMPARISON '13 LeBron James and '86 Larry Bird. + +Both players won MVP in their respective seasons.☘️🏀 https://t.co/7E7iUvCmo6" +02/07/2018,Sports_celeb,@larrybirddaily,"(1980) Back in days.. + +☘️Larry with Pistol🔫 https://t.co/CbWhffTeuD" +01/26/2018,Sports_celeb,@larrybirddaily,RT @tatonka44: @LarryBirdDaily Still my favorite https://t.co/VmFlHIyULS +01/26/2018,Sports_celeb,@larrybirddaily,RT @jeffstripp: Don’t let winning make you soft. Don’t let losing make you quit. Don’t let your teammates down in any situation. – Larry B… +01/26/2018,Sports_celeb,@larrybirddaily,"RT @designbyduncan: ""Push yourself again and again. Don't give an inch until the final buzzer sounds."" -Larry Bird @LarryBirdDaily https://…" +01/16/2018,Sports_celeb,@larrybirddaily,Three Letter Man MVP ☘️ https://t.co/UV07dkTFk1 +01/09/2018,Sports_celeb,@larrybirddaily,"""The lefty game"" Prior to a game against the Blazers, Larry Bird told the media that he was saving his right hand f… https://t.co/pKxxD1OvYk" +01/06/2018,Sports_celeb,@larrybirddaily,RT @PigasusPictures: It's safe to say it's always #NationalBirdDay in Indiana https://t.co/7Rv9AabMpK +01/06/2018,Sports_celeb,@larrybirddaily,(1987) Good old days☘️ https://t.co/50kcY89yLe +01/04/2018,Sports_celeb,@larrybirddaily,"(1979) Back in days.. + +Red & Larry☘️ https://t.co/SftxISc3Kj" +01/04/2018,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 26 years ago today in NBA History + +January 4, 1992 + +Boston's Robert Parish became the fifth player in NBA history (along wit…" +01/02/2018,Sports_celeb,@larrybirddaily,"Larry Bird's career free throw percentage☘️ + +🏀% 88.6🏀 https://t.co/W1fjfw08rh" +01/01/2018,Sports_celeb,@larrybirddaily,Larry Legend 1979☘️ https://t.co/O2mFjmvx8p +12/31/2017,Sports_celeb,@larrybirddaily,Happy new year everyone🎄☘️ https://t.co/nlsWyjzE2W +12/28/2017,Sports_celeb,@larrybirddaily,"The Historic Rivalry.. + +Magic vs. Larry, NBA style, began 38 years ago today☘️ https://t.co/Ct2ypVTP7K" +12/26/2017,Sports_celeb,@larrybirddaily,"Good old days.. + +(1977) Larry Bird and Indiana State Cheerleaders☘️ https://t.co/yxSn7bjyPJ" +12/25/2017,Sports_celeb,@larrybirddaily,"RT @CWalt419: @LarryBirdDaily +Merry Christmas Larry. Hope you and your family have a great one 😘 https://t.co/AfkIktXXez" +12/25/2017,Sports_celeb,@larrybirddaily,Merry Christmas Everyone🎄🎅 https://t.co/66cOXVGnp8 +12/24/2017,Sports_celeb,@larrybirddaily,The greatest thing about being from Boston is that you have no shortage of sports heroes.☘️ https://t.co/mJqFwdvKTS +12/23/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/uX5k2jcnl5 +12/21/2017,Sports_celeb,@larrybirddaily,💚3⃣3⃣💚 https://t.co/8vFTVom5g0 +12/19/2017,Sports_celeb,@larrybirddaily,Pick your decade? https://t.co/GnB3MSc1UP +12/19/2017,Sports_celeb,@larrybirddaily,Which behind the backboard shot was the best? https://t.co/AbonmTPzcP +12/16/2017,Sports_celeb,@larrybirddaily,1983☘️ https://t.co/L3EVYQ6n6M +12/13/2017,Sports_celeb,@larrybirddaily,Biggest 3☘️☘️☘️ https://t.co/QwUrxaOs0L +12/11/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +Larry Legend teaching us how to shoot a basketball🏀☘️ https://t.co/U3HxfGEWkN" +12/11/2017,Sports_celeb,@larrybirddaily,"I've got a theory that if you give 100% all of the time,somehow things will work out in the end.☘️ https://t.co/8Y79gsu2Hj" +12/11/2017,Sports_celeb,@larrybirddaily,Bird vs Jordan🎮 https://t.co/aZxuzvohS6 +12/09/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +(1986) Bird & Jordan https://t.co/rG8jhwbojH" +12/08/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird - Mini Biography + +📹https://t.co/OKIQEhZKFE 📹 https://t.co/sz1lZsHrhZ" +12/07/2017,Sports_celeb,@larrybirddaily,Happy 61st Birthday Legend☘️ https://t.co/sft1g12dRM +12/05/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird (29-11-12) vs. Hakeem (19-13-0) 1986 Finals Gm 6 - Bird Dominates, Finals MVP☘️ + +📹… https://t.co/m5h8HSBzrL" +12/04/2017,Sports_celeb,@larrybirddaily,"(1979) Back in days.. + +Larry Bird cuts down the net after Indiana State University won the championship game in th… https://t.co/rc6MvsqKeC" +12/03/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Good old days.. + +☘️Larry & Magic✨ https://t.co/9WmLxFPffX" +12/03/2017,Sports_celeb,@larrybirddaily,☘️Best Celtics player of all time? https://t.co/2koxDHUBYK +12/01/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +⚕️Dr. J & Larry Legend☘️ https://t.co/vJn36yOeaT" +11/30/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: ☘️27 years ago today, November 30, 1990 + +Larry Bird scored his 20,000th career point in the Celtics' 123-95 win over Washing…" +11/30/2017,Sports_celeb,@larrybirddaily,(1985) Larry Bird drops 60 points against the Hawks. Just look at the reactions on Atlanta's bench. Unbelievable☘️ https://t.co/c4le1M4Gvn +11/29/2017,Sports_celeb,@larrybirddaily,Choose your weapon🔫 https://t.co/xbY1SaV903 +11/28/2017,Sports_celeb,@larrybirddaily,Larry's last season..☘️ https://t.co/GGq1fQjHCP +11/27/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird talks about Michael Jordan's 63 points versus Celtics + +📹https://t.co/XaR6nuLNNy📹 https://t.co/PpluY0Yihj" +11/27/2017,Sports_celeb,@larrybirddaily,Bird vs Dirk☘️ https://t.co/NnHtE4SzuS +11/26/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird and Bill Walton: Basketball Magic (1986 Boston Celtics) + +📹https://t.co/r4X6caz2yS📹 https://t.co/Nu9qLVBAap" +11/26/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Yes or No? https://t.co/0X12eBWFua +11/26/2017,Sports_celeb,@larrybirddaily,RT @JasonFisher01: My son Davis snagged a picture with Larry Bird's MVP trophy while visiting family this weekend in French Lick! @LarryBir… +11/25/2017,Sports_celeb,@larrybirddaily,"1985 NBA Finals, Game 4: Larry Bird Dominates The 4th Quarter + +📹https://t.co/t65jNk11RU📹 https://t.co/JL1ewhBN5G" +11/25/2017,Sports_celeb,@larrybirddaily,"""1992"" #UsaDreamTeam https://t.co/rZBsydPBRd" +11/24/2017,Sports_celeb,@larrybirddaily,Larry Bird hits an incredible three-quarter court shot👊 https://t.co/M6Ug8wcCAn +11/23/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird schools Hakeem Olajuwon + +📹https://t.co/wE5P12M63k📹 https://t.co/ZsDrthICNe" +11/23/2017,Sports_celeb,@larrybirddaily,Old school Larry Bird sketch card☘️#ArtWork https://t.co/2HlDDym1jU +11/23/2017,Sports_celeb,@larrybirddaily,Larry Bird & Dominique Wilkins #ArtWork https://t.co/bXO5C5g3DT +11/23/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: WATCH: (1985) Magic Johnson vs. Larry Bird + +📹https://t.co/DzMfGorzgx📹 https://t.co/rKbzjNGqdn" +11/22/2017,Sports_celeb,@larrybirddaily,Larry Bird vs Detroit's Bad Boys https://t.co/OYEWgiK5H8 +11/22/2017,Sports_celeb,@larrybirddaily,"RT @WashNews: Decorated my tree last night. Only needed one ornament. Feeling good about my decision... and my @celtics.🎄☘️ + +#larrybird #ce…" +11/21/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: (1987) Larry Bird - 41/7/7 vs. Jordan's Bulls. Classic 👌 + +📹 https://t.co/VdUTxs8QE0📹 https://t.co/7hCFf3B724" +11/21/2017,Sports_celeb,@larrybirddaily,Dr. J & Larry Legend #ArtWork https://t.co/n9jHP08hfZ +11/20/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: “I hate to lose more than I like to win.” + +-Larry Bird☘️ https://t.co/DIvbwGZaI2" +11/20/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird is/was better than LeBron James (who is an inconsistent shooter) + +📹https://t.co/MtI3ivwb2P📹 https://t.co/29oWDndDh5" +11/20/2017,Sports_celeb,@larrybirddaily,"""Leadership is diving for a loose ball, getting other players involved. + +It's being able to take it as well as dish… https://t.co/xT6XI29xDE" +11/20/2017,Sports_celeb,@larrybirddaily,"WATCH: Scottie Pippen Defense on Larry Bird - 1990/91 Season + +📹https://t.co/QErxeiy6pH📹 https://t.co/k2uNoywJkL" +11/19/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird's incredible behind the backboard shot👽 + +That classic play happend during a 1986 preseason game against the Houst…" +11/19/2017,Sports_celeb,@larrybirddaily,Larry Bird helps up Magic Johnson during the 1979 NCAA Championship🤝☘️ https://t.co/l6CcjjIKzk +11/17/2017,Sports_celeb,@larrybirddaily,"Larry Bird Springs Valley High School highlights + +📹https://t.co/cD9lKdC60a📹 https://t.co/oIiZAKXvcJ" +11/17/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird asked his competitors this question before winning the 3 point contest; + +- So who is coming in second? https://t.…" +11/16/2017,Sports_celeb,@larrybirddaily,"Larry Bird - 32/18/9/4 vs. Magic's Lakers (1983) + +☘️https://t.co/6NQssWDeSI☘️ https://t.co/Ncj74ikkGV" +11/15/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird talks about the '86 Celtics☘️ + +🎧https://t.co/iprJbvnrkj🎧 https://t.co/8fJ9hnPXfq" +11/14/2017,Sports_celeb,@larrybirddaily,"With his warm-up jacket, Larry Bird put on a 3-point contest show at Chicago 1988 NBA All-Star, winning his third t… https://t.co/3KtyQ2awLu" +11/14/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird & Robert Parish ''Basketball Clinic'' vs Miami Heat (1991) + +📹https://t.co/xTkBBBU86F📹 https://t.co/ZUDjHpln3o" +11/13/2017,Sports_celeb,@larrybirddaily,"WATCH: Pistol Pete Maravich - Last game of his NBA career, rookie Larry Bird☘️ + +📹https://t.co/2wxwSaKi5K📹 https://t.co/jXcav6hqdg" +11/13/2017,Sports_celeb,@larrybirddaily,One of the best shooter in NBA History☘️ https://t.co/zgHVeMRGwf +11/13/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +(1995) NBA Looney Tunes McDonald's Commercial🍔🍟 https://t.co/Ufm6agTnQb" +11/12/2017,Sports_celeb,@larrybirddaily,Where the rivalry began.. https://t.co/XuqHtVdjDP +11/11/2017,Sports_celeb,@larrybirddaily,We never forget..☘️ https://t.co/yUOnSEJ8kh +11/11/2017,Sports_celeb,@larrybirddaily,Who is the Best SF of All Time? https://t.co/G3t7avKXR1 +11/10/2017,Sports_celeb,@larrybirddaily,"Larry Bird: ""Passing Skills Compilation""☘️ + +📹https://t.co/wf0m04TZ8L📹 https://t.co/M0vUqFIUcx" +11/10/2017,Sports_celeb,@larrybirddaily,"On This Day in 1989, Larry Bird crossed Dominique Wilkins 2 times on same night, dropped 50 points 13 rebounds 7 as… https://t.co/joOpLmWrTS" +11/10/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 36 years ago today, November 9, 1981 + +Larry Bird on Sports Illustrated Cover #LarryLegend☘️ https://t.co/uCpaxlzwgV" +11/09/2017,Sports_celeb,@larrybirddaily,"33 years ago today in NBA History + +November 9, 1984 + +Larry Bird dropped 42 points on an aging Julius Erving and to… https://t.co/P99eUwaARS" +11/09/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Celtics vs Lakers (Regular Season) +- 287 games +- 159 wins BOS +- 128 wins LAL + +Celtics vs Lakers (NBA Finals) +- 74 games +-…" +11/09/2017,Sports_celeb,@larrybirddaily,"Larry Bird - Smartest NBA Player Ever, High Basketball IQ + +📹https://t.co/nJbOcXRpxY📹 https://t.co/CmvHQv9NBT" +11/07/2017,Sports_celeb,@larrybirddaily,"Drazen was the type of Player I love. I played against him a lot of times, he was a fantastic Shooter. -Larry Bird https://t.co/U4JJRjAjj7" +11/07/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird in Space Jam + +📹https://t.co/EVqPm3kWRE📹 https://t.co/oS9f1viA2V" +11/06/2017,Sports_celeb,@larrybirddaily,1992.. https://t.co/6yNo5mUH0x +11/05/2017,Sports_celeb,@larrybirddaily,"""When I was young, I never wanted to leave the court until I got things exactly correct. + +My dream was to become a… https://t.co/ofikt04z27" +11/05/2017,Sports_celeb,@larrybirddaily,"Larry Bird Top 10 Game Winners + +📹https://t.co/YjZnQl8SUF📹 https://t.co/tN3I40OV9Q" +11/04/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird - The Clutch Shots and Buzzerbeaters + +📹https://t.co/RfV1c50Nvq📹 https://t.co/lJ0pHRmyjm" +11/03/2017,Sports_celeb,@larrybirddaily,Peter Griffin vs Larry Bird for a Big Mac🍔 https://t.co/8DPAyfpBTR +11/03/2017,Sports_celeb,@larrybirddaily,"WATCH: He was one steal away from a 30 point quadruple-double before he decided to sit the 4th quarter. + +📹… https://t.co/HMSRSwmxgZ" +11/02/2017,Sports_celeb,@larrybirddaily,Larry Bird's first game and last game ☘️ https://t.co/vbJgp0zYrc +11/02/2017,Sports_celeb,@larrybirddaily,Larry Bird & Magic Johnson #NBA2K18 https://t.co/aJCkNyLx00 +11/01/2017,Sports_celeb,@larrybirddaily,Always great to see Larry Legend! (Yesterdays @ Pacers-Kings game) https://t.co/mAsFQOxEFn +11/01/2017,Sports_celeb,@larrybirddaily,💥Bill Lambier Vs Larry Bird💥 https://t.co/sWnErtqMg6 +11/01/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 📌DeMarcus Cousins is 1st player since Larry Bird ('87-'88) to average 30 points, 10 rebounds & 5 assists through 1st 6 game…" +11/01/2017,Sports_celeb,@larrybirddaily,RT @KarlTowns: @World_Wide_Wob “You never make any of the shots you never take.”- Larry Bird +11/01/2017,Sports_celeb,@larrybirddaily,RT @taylormade2fit_: @MagicJohnson @LarryBirdDaily https://t.co/ze9osWkKkt +11/01/2017,Sports_celeb,@larrybirddaily,10 years old fan loves Larry Legend💚☘️ https://t.co/XOgdQyekdG +11/01/2017,Sports_celeb,@larrybirddaily,Push yourself again and again☘️ https://t.co/c20bKMhF9s +10/31/2017,Sports_celeb,@larrybirddaily,1992 Barcelona Olympics https://t.co/g186DF6MK6 +10/29/2017,Sports_celeb,@larrybirddaily,Luke Walton on Larry Bird's unselfish passing.☘️ https://t.co/7Q3Zzt7vOC +10/29/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: WATCH: Legends Show! + +Larry Bird 38 PTS 💥 Michael Jordan 42 PTS (1988) + +📹https://t.co/zdxguNcnX5📹 https://t.co/wRxbG83HSQ" +10/29/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Remembering Red Auerbach🙏 + +11 years ago today on October 28, 2006 Legendary Boston Celtics coach Red Auerbach died at the a…" +10/28/2017,Sports_celeb,@larrybirddaily,"Boston's attempt to make Larry Bird a dynamic ""Mini-Me"" failed when he couldn't shoot or dribble so they just let h… https://t.co/M7nrpYupZg" +10/28/2017,Sports_celeb,@larrybirddaily,"Larry Bird demonstrates why the red, white and blue ABA ball will always be cooler☘️ https://t.co/B0qZOAd89w" +10/27/2017,Sports_celeb,@larrybirddaily,Larry Bird How to Fake an Entire Team Out 😎 https://t.co/QZqbF9HJ5B +10/26/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird was faking everybody easily! Passing Skills were LIT🔥💥 https://t.co/s4Zdx0M6V5 +10/26/2017,Sports_celeb,@larrybirddaily,RT @DWilkins21: #TBT Hmmm...Wonder what's going thru our minds? 🤔 https://t.co/DFV5zsHVki +10/26/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Top 10 Craziest Larry Bird Stories😮 + +☘️https://t.co/QnrLDDebB1☘️ https://t.co/x8IWKWfS3e" +10/25/2017,Sports_celeb,@larrybirddaily,"(1979) Pistol was at the end of the line, but it's still pretty damn cool Pete Maravich and Larry Bird were teammat… https://t.co/laZ4mKrswC" +10/25/2017,Sports_celeb,@larrybirddaily,"WATCH: 1991 Playoffs, Game 5.. Larry Bird's 32pts vs. Indiana Pacers + +☘️https://t.co/g92BrTtQLe ☘️ https://t.co/rqBUgyIX9S" +10/25/2017,Sports_celeb,@larrybirddaily,Happy 69th Birthday Dave Cowens☘️ https://t.co/HdiJUNHCUN +10/23/2017,Sports_celeb,@larrybirddaily,"(1981) Back in days.. + +☘️Larry Bird Vs. Dr. J https://t.co/y6u4CHZ7YA" +10/22/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: At Pacers practice, if Larry Bird misses a free throw, all the coaches run sprints! Bird missed on purpose😆 https://t.co/pj1…" +10/22/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird Top 10 Dunks of his Career☘️ https://t.co/cm6X2hDBRO +10/21/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +Dennis & Larry☘️ https://t.co/gr3mNFFwku" +10/18/2017,Sports_celeb,@larrybirddaily,Jayson Tatum is the first Celtics player to record a double-double in their NBA debut since Larry Bird (1979). https://t.co/mXDLR0c1ZI +10/18/2017,Sports_celeb,@larrybirddaily,Back in days.. (1984) https://t.co/YTHOSIMG29 +10/16/2017,Sports_celeb,@larrybirddaily,"WATCH: Rookie Larry Bird (36pts/7rebs/4asts) vs. Clippers (1980) + +☘️https://t.co/rh56euEPuO☘️ https://t.co/sUFWN2iTsJ" +10/14/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/sIVfWkS3cv +10/12/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 38 years ago today.. + +On this date in 1979, Larry Bird made NBA debut☘️ https://t.co/vHmfuOw3YV" +10/12/2017,Sports_celeb,@larrybirddaily,"""1979"" https://t.co/Kz9r5dBtTG" +10/11/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +1981 Eastern Conference All-Stars🌟 https://t.co/2LASeEi0DM" +10/10/2017,Sports_celeb,@larrybirddaily,"""1981"" + +Larry Bird vs Bill Willoughby https://t.co/NLT1WecpWZ" +10/10/2017,Sports_celeb,@larrybirddaily,"March 1979 + +Sports Illustrated Cover https://t.co/1Srhl0WVVU" +10/10/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Good old days.. (1988 Eastern Conference Semifinals) + +Larry Legend Vs Nique https://t.co/Cgz4t9hCKH" +09/29/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/QwxWMIPwSJ +09/29/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/yuCvf3K2sL +09/28/2017,Sports_celeb,@larrybirddaily,"""1985"" + +Larry Bird had 30 pts, 12 rebs, 12 asts and 9 steals, almost the only Quad-Dbl in NBA history, in just 33 M… https://t.co/hJu30eWEJ5" +09/28/2017,Sports_celeb,@larrybirddaily,Rank the best duos in NBA history! https://t.co/hbYXDUnTem https://t.co/QUX2TPZ7fT +09/28/2017,Sports_celeb,@larrybirddaily,"Stephen King on his 70th birthday: In 80s, I was shooting free throws in the driveway pretending I was Larry Bird… https://t.co/Lqyf8DO7vv" +09/28/2017,Sports_celeb,@larrybirddaily,WATCH: What If MAGIC AND BIRD Played in the Modern NBA? https://t.co/5yCqoFz3oD https://t.co/DoCL8EZP3l +09/28/2017,Sports_celeb,@larrybirddaily,3⃣3⃣BEST 3⃣3⃣ https://t.co/MZ2L5ZbUkb +09/28/2017,Sports_celeb,@larrybirddaily,"On Indiana's legendary shoe tree, Larry Bird's sneakers could be hanging next to yours https://t.co/ZXWBKHhPGL https://t.co/si5bYw2mD1" +09/28/2017,Sports_celeb,@larrybirddaily,Converse’s NBA All Star Chuck Taylor Collection Pays Tribute To Basketball History https://t.co/uLOhsgmfBM https://t.co/KRG7MR6agy +09/28/2017,Sports_celeb,@larrybirddaily,1982 NBA Media Day https://t.co/TZiZy4tNYk +09/26/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/UL1YZNf2vf +09/26/2017,Sports_celeb,@larrybirddaily,Missing those days.. https://t.co/6hXjdJPTKo +09/25/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/2JdNvYd6JG +09/25/2017,Sports_celeb,@larrybirddaily,"WATCH: What If MAGIC AND BIRD Played in the Modern NBA? + +https://t.co/5yCqoFz3oD https://t.co/T1eANIGGR7" +09/25/2017,Sports_celeb,@larrybirddaily,3× NBA Most Valuable Player🎖️🎖️🎖️ https://t.co/UWsKUYDenn +09/25/2017,Sports_celeb,@larrybirddaily,"""1979"" + +Red & Larry https://t.co/XYWkedZA0Z" +09/24/2017,Sports_celeb,@larrybirddaily,Agree or disagree? https://t.co/8R27kCyxhu +09/23/2017,Sports_celeb,@larrybirddaily,Legends! https://t.co/vGfwhoHLg1 +09/23/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird was LIT!🔥🍀 https://t.co/4urR4363HG +09/23/2017,Sports_celeb,@larrybirddaily,(1979) Larry Legend & Pistol Pete☘️ https://t.co/sMnLzzMUK8 +02/16/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Have Good Day Everyone! #hisairness #NbaHistory https://t.co/mrwF5oi5Xt +01/26/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: June 23, 1992 - Team USA, Summer Olympics + +Larry Bird, Michael Jordan and Magic Johnson https://t.co/OrOYojlDbZ" +01/17/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: 56 years ago in #NbaHistory https://t.co/phujLGbgD6 +12/13/2016,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 23 years ago in #NbaHistory + +Dec. 13, 1983 + +Pistons 186, Nuggets 184 / Highest Scoring NBA Game Ever! + +https://t.co/QQtKKKTB…" +12/10/2016,Sports_celeb,@larrybirddaily,"Hawks erase 20-point deficit for victory over Bucks! + +https://t.co/WQVg6ZHspH https://t.co/APrCCq6ehX" +12/09/2016,Sports_celeb,@larrybirddaily,"Larry Bird's career filled with amazing accomplishments + +https://t.co/9GM3DcaLNv https://t.co/V443OG1W2q" +12/06/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Klay Thompson's 60 Points in 3 Quarters (HD VIDEO) https://t.co/U1OiFlJMco https://t.co/K2wiWa0tYp" +12/02/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Steph Curry's Circus Sitdown Layup Won't Count (HD VIDEO) https://t.co/TAE5iMIYGM https://t.co/6jjlEdjuI2" +12/01/2016,Sports_celeb,@larrybirddaily,"DeMarcus Cousins and John Wall To Boston Celtics! + +4-Team Deal Between Celtics, Kings, Nets And Wizards;… https://t.co/r1ywD6bY1a" +12/01/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Isaiah Thomas with the H.O.R.S.E Shot After the Whistle (HD VIDEO) https://t.co/Y5j5TS3UkB https://t.co/XMY7xo93q0" +12/01/2016,Sports_celeb,@larrybirddaily,"Shumpert to the Warriors: “We gon bust your ass. Period.” | KNBR-AM +https://t.co/xqlqRhOBiA" +11/30/2016,Sports_celeb,@larrybirddaily,"Shaquille O’Neal Has Message For NBA Free Agents: Trust Me, Boston Is Great +https://t.co/jm3soAq8LD https://t.co/17dRSejgvg" +11/30/2016,Sports_celeb,@larrybirddaily,"Thon Maker Made Chris Andersen Look Silly On This Step Back Jumper :) + +WATCH: https://t.co/go8uhuLlti https://t.co/YnhVaGbCOa" +11/08/2016,Sports_celeb,@larrybirddaily,"RECORD ALERT!!! + +Steph Curry's Record Breaking 13 3-Pointers (HD VIDEO) https://t.co/LuwgvFkxV4 https://t.co/nDIsSSfnct" +10/29/2016,Sports_celeb,@larrybirddaily,RT @EreenTuncay: Oyuna havası sezdim ama orada bile skor üretiyor :( https://t.co/VhWYyzwPKU +10/09/2016,Sports_celeb,@larrybirddaily,"AMAZING... + +Top 10 Longest NBA Shots of All Time (HD VIDEO) https://t.co/K4FRSdZhWo https://t.co/XzmJAzrHqj" +10/06/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!! + +Best 2016 Season Bloopers In 16 Minutes! (HD VIDEO) https://t.co/B04OkAldIl https://t.co/DNciCGHX6j" +09/25/2016,Sports_celeb,@larrybirddaily,Kevin Garnett's Top 50 Plays of His Career (HD VIDEO) https://t.co/0OoE8x8nWf https://t.co/er007i5y6m +09/18/2016,Sports_celeb,@larrybirddaily,Steve Nash's Top 13 Plays on the Suns (HD VIDEO) https://t.co/B0R4x6X6NZ https://t.co/tlBHbYtzbZ +09/12/2016,Sports_celeb,@larrybirddaily,Toronto Raptors' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/wa1Su7wns6 https://t.co/vf5wHR2CIa +09/11/2016,Sports_celeb,@larrybirddaily,Portland Trail Blazers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/MLqORX2ESx https://t.co/7CqmLL3ia1 +09/10/2016,Sports_celeb,@larrybirddaily,Los Angeles Clippers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/KTSQ9rPhd8 https://t.co/bbLnyMw2Pv +09/09/2016,Sports_celeb,@larrybirddaily,Indiana Pacers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/j5MVKv59Cb https://t.co/d7uPb4s3Hi +09/08/2016,Sports_celeb,@larrybirddaily,Oklahoma City Thunder's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/qUvh8kWrsc https://t.co/deuthzSN9z +09/07/2016,Sports_celeb,@larrybirddaily,Minnesota Timberwolves' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/rPbmZl31x8 https://t.co/e3fnghwauB +09/06/2016,Sports_celeb,@larrybirddaily,Chicago Bulls' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/IEVcNqhKrD https://t.co/IZWfpT1q0J +09/05/2016,Sports_celeb,@larrybirddaily,San Antonio Spurs' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/MsyVE9Jzxx https://t.co/RUOiCsbW9G +09/04/2016,Sports_celeb,@larrybirddaily,Phil Jackson Considered Trading Kobe Bryant for Grant Hill https://t.co/3odfueyQPO https://t.co/bK7Vz7cQyQ +09/04/2016,Sports_celeb,@larrybirddaily,Utah Jazz's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/3ExAPlFSiR https://t.co/oAdAJaFRu4 +09/03/2016,Sports_celeb,@larrybirddaily,New York Knicks' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/iexKWg0K99 https://t.co/zCCI3hgWZg +09/02/2016,Sports_celeb,@larrybirddaily,Denver Nuggets' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/kYqudJ2Lq4 https://t.co/Nhy4yWQALf +09/01/2016,Sports_celeb,@larrybirddaily,Top 50 Clutch Shots: 2016 NBA Season (HD VIDEO) https://t.co/666mQz6MAx https://t.co/A550TKz38k +08/31/2016,Sports_celeb,@larrybirddaily,Cleveland Cavaliers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/HXSbPAnPM1 https://t.co/guBINNQ3FU +08/30/2016,Sports_celeb,@larrybirddaily,Golden State Warriors' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/7RJTF61Ey9 https://t.co/MXGWlzC6yT +08/29/2016,Sports_celeb,@larrybirddaily,Top 50 Blocks: 2016 NBA Season (HD VIDEO) https://t.co/7SuzhYtoH5 https://t.co/JYOyip4Ulk +08/28/2016,Sports_celeb,@larrybirddaily,New Orleans Pelicans' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/ysk8HDBfDE https://t.co/AjohabZWcK +08/27/2016,Sports_celeb,@larrybirddaily,Top 10 Putback Dunks of the 2015-2016 Season (HD VIDEO) https://t.co/nzvLzdGfeO https://t.co/xjSbwNde7V +08/26/2016,Sports_celeb,@larrybirddaily,Memphis Grizzlies' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/mqBfSj45uC https://t.co/Utoca6c5ZI +08/25/2016,Sports_celeb,@larrybirddaily,Houston Rockets' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/U9Jju0G14u https://t.co/VxrnOiTDK3 +08/24/2016,Sports_celeb,@larrybirddaily,Dallas Mavericks' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/V8jDhGf8HP https://t.co/nphSD9toSf +08/23/2016,Sports_celeb,@larrybirddaily,Top 50 Assists: 2016 NBA Season (HD VIDEO) https://t.co/AyIco4jXAo https://t.co/mlHyy04dG8 +08/22/2016,Sports_celeb,@larrybirddaily,Washington Wizards' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/nU95Wm0sY7 https://t.co/CMsVPA4soV +08/21/2016,Sports_celeb,@larrybirddaily,Orlando Magic's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/LvuuCH9Uxb https://t.co/tLyeonYEBx +08/20/2016,Sports_celeb,@larrybirddaily,Miami Heat's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/gD0POjKSXH https://t.co/EXE9BPjkE1 +08/19/2016,Sports_celeb,@larrybirddaily,Top 10 Alley-Oops of the 2015-2016 Season (HD VIDEO) https://t.co/3SePT3DzgD https://t.co/ySb5Z9KlRD +08/19/2016,Sports_celeb,@larrybirddaily,"Warriors-Spurs, Cavs-Knicks headline opening day + +https://t.co/xTMv8wF47Y https://t.co/GFnl16pllj" +08/19/2016,Sports_celeb,@larrybirddaily,"Q&A with Celtics guard Thomas on the Olympics, KD and what makes Boston so special http:// + +https://t.co/kL5TDFTVWO https://t.co/pJ3PO8l9sd" +08/19/2016,Sports_celeb,@larrybirddaily,"Durant: ""We’re just so separated, man. It’s sad to see. I just hope... + +https://t.co/g8LzTP5i3f https://t.co/qhYrSy8Vmc" +08/19/2016,Sports_celeb,@larrybirddaily,"Lakers season preview: They project them to finish at No. 13 in the Western Conference. + +https://t.co/w5nxppJTLm https://t.co/NeYrJP91oX" +08/19/2016,Sports_celeb,@larrybirddaily,"Will Timberwolves have 3 straight Rookie of the Year winners? + +https://t.co/eMmCNYBFOa https://t.co/3LgiJqunwo" +08/19/2016,Sports_celeb,@larrybirddaily,"Caron Butler says he’d love to play for Knicks this season, do they want him? + +https://t.co/yRCwbkNpD9 https://t.co/XLX2WNY9hs" +08/19/2016,Sports_celeb,@larrybirddaily,"USA vs. France 2016 Rio Olympics final score: Sylvia Fowles comes up big in 86-67 win + +https://t.co/ERroMRXyVM https://t.co/P0RpEc7clM" +08/19/2016,Sports_celeb,@larrybirddaily,"Caron Butler eyeing New York! + +https://t.co/FqqrV6p8qk https://t.co/pTXabJJWLV" +08/19/2016,Sports_celeb,@larrybirddaily,"Lakers hold free agent minicamp with a few familiar faces in attendance + +https://t.co/bYt6plppGk https://t.co/wqANUe1bo1" +08/18/2016,Sports_celeb,@larrybirddaily,"LeBron James has plenty of respect for Kawhi Leonard! + +https://t.co/JUvOtitHte https://t.co/FJVGMrFY9s" +08/18/2016,Sports_celeb,@larrybirddaily,"Sit back & enjoy the Top 10 Putback Dunks from 2015-16! + +https://t.co/UVV8Id7CLL https://t.co/K73cBpDGR5" +06/29/2018,Sports_celeb,@RealBillRussell,Getting ready to watch it now @CBS @colbertlateshow @MMFlint @StephenAtHome https://t.co/eVBZuHcjDd +06/27/2018,Sports_celeb,@RealBillRussell,"Gongrats Grant, enjoy & please tell all your kids I say hello. https://t.co/yT8rYf7Ueg" +06/27/2018,Sports_celeb,@RealBillRussell,"Well this was PERFECT timing, when we got home today our very good friend had sent us a gift that was very fitting.… https://t.co/6dAH9cbyic" +06/26/2018,Sports_celeb,@RealBillRussell,"Only a handful of days left, then I give out a signed autographed framed Jersey to one lucky follower. Follow & RT… https://t.co/UJtQCJz4n2" +06/26/2018,Sports_celeb,@RealBillRussell,"Sorry everyone, I forgot it was live TV & I can’t help myself whenever I see Charles it just is pure instinct.… https://t.co/4Bpdov6oKN" +06/26/2018,Sports_celeb,@RealBillRussell,". #NBAAwards show just getting started, our host @anthonyanderson is wearing shorts it looks like he rode in on a… https://t.co/PDRydRKQsD" +06/24/2018,Sports_celeb,@RealBillRussell,"It is beyond words to think this is happening in America. Sorry, @realDonaldTrump this is far from America being g… https://t.co/vnjDDvgFZx" +06/23/2018,Sports_celeb,@RealBillRussell,Looking forward to attending the 2nd annual @NBA #Awards awards show on Monday. Happy to be there to support my lon… https://t.co/RmvhqNiOmk +06/17/2018,Sports_celeb,@RealBillRussell,". #Congratulations to our nephew, #Grad2018, we had a fun time today at your #graduation bbq. I think your #mom m… https://t.co/oLkzkn9xLv" +06/14/2018,Sports_celeb,@RealBillRussell,This month for my #8straightgiveaway in honor of #FathersDay I will be giving away a framed & signed Jersey to one… https://t.co/zxJSwENEoW +06/14/2018,Sports_celeb,@RealBillRussell,"Just heard the sad news of #AnneDonovan passing, my thought are with her loved ones. She was a great champion for… https://t.co/nW8vml2Aup" +06/09/2018,Sports_celeb,@RealBillRussell,People are giving @KDTrey5 a hard time for not shaking my hand. I know how it feels to get caught up in the energy… https://t.co/zODLPcY1JJ +06/09/2018,Sports_celeb,@RealBillRussell,Congratulations to #DubNation on #BackToBack Championships. @warriors @NBA #NBAfinals @StephenCurry30 @KDTrey5 https://t.co/fEm8iyyxKx +06/09/2018,Sports_celeb,@RealBillRussell,. #Game4 I’m in the building. Hope to see a good game. #GSWvsCAVS @cavs @warriors @nba #NBAFinals #quickenloans +06/07/2018,Sports_celeb,@RealBillRussell,https://t.co/upEwHZXvib +06/07/2018,Sports_celeb,@RealBillRussell,Sorry we will miss you Miles. I remember the first time we met at the @NBA All Star game a few years ago. @jrnba… https://t.co/W8wOIYbajO +06/07/2018,Sports_celeb,@RealBillRussell,Well looks like I’m heading to #Cleveland May have to give out the Bill Russell MVP Trophy. @warriors @cavs #NBAFinals @NBA @NBAonABC +06/07/2018,Sports_celeb,@RealBillRussell,Respect is a two way street. If @realDonaldTrump won't show it why sould he expect it. Very proud of these young… https://t.co/GQWty26vq8 +06/06/2018,Sports_celeb,@RealBillRussell,Well said my friend! https://t.co/Sb0xtaTy5f +06/06/2018,Sports_celeb,@RealBillRussell,. @realDonaldTrump wages war on @NFL players for being unpatriotic & disrespectful to flag & country when he him se… https://t.co/iGPHqRW38x +06/06/2018,Sports_celeb,@RealBillRussell,The best thing that happened to @Eagles since winning the #superbowl is @realDonaldTrump uninviting them to the… https://t.co/YTnmpf3b6h +06/04/2018,Sports_celeb,@RealBillRussell,Thank you @TraegerGrills for helping my wife get our grill up & running today. Getting ready to our game time grub… https://t.co/fnL0pZFSV6 +06/03/2018,Sports_celeb,@RealBillRussell,Thank you for sharing this. He was a true friend #onegreathuman https://t.co/WtI3DNYsgP +06/03/2018,Sports_celeb,@RealBillRussell,"@IsiahThomas Thanks for the follow, I follow you back. Always my pleasure my friend. @NBATV @NBA" +06/03/2018,Sports_celeb,@RealBillRussell,Getting my Pre-game Fix @NBATV with @realgranthill33 @TheJetOnTNT @BillSimmons & @IsiahThomas Should be another Gr… https://t.co/yJc5wC4dC3 +06/02/2018,Sports_celeb,@RealBillRussell,Congratulations @gedwards30 you are the winner of my #8straightgiveaway an autographed #basketball Thanks to… https://t.co/cf5Sf5FoKm +06/01/2018,Sports_celeb,@RealBillRussell,"I may have heart problems if all the #NBAFInals #CavsVsWarriors games are like this first one, OMG. What a game… https://t.co/mWURTDOQ9z" +06/01/2018,Sports_celeb,@RealBillRussell,Tomorrow I am giving away a signed Basketball for my #8straightgiveaway follow & RT I have seen a lot of bad info… https://t.co/X4KWuHVvgW +06/01/2018,Sports_celeb,@RealBillRussell,Never a doubt in my mind that was going in. @StephenCurry30 Big 3 to end the half. What a game #WarriorsvsCavs… https://t.co/8Y3Y0jibMy +05/28/2018,Sports_celeb,@RealBillRussell,This is worth repeating on #MemorialDay @SenJohnMcCain is a true Hero. #ThankYou to him & all others who serve & h… https://t.co/V4g96lPxnA +05/26/2018,Sports_celeb,@RealBillRussell,Let see some good D tonight @celtics Get that W! #CUsRise @espn @NBA #BOSvsCLE #NBAFinals @CelticsLife +05/25/2018,Sports_celeb,@RealBillRussell,#MemorialDayWeekend watch Portrait of an American Hero about @SenJohnMcCain @HBO 8pm. Agree or disagree with him h… https://t.co/razIGtORxz +05/24/2018,Sports_celeb,@RealBillRussell,Great WIN @celtics #CUsRise #CelticsVsCavs be sure to follow & RT me. I am giving away a autographed basketball th… https://t.co/8CD1OmDAiP +05/22/2018,Sports_celeb,@RealBillRussell,Check out my interview with @DangeRussWilson The LEGENDS Series Premiers 5-22-18 @TraceMe_App We had a really grea… https://t.co/sddz6eUsAT +05/21/2018,Sports_celeb,@RealBillRussell,"#NationalRescueDogDay we love our crazy girl, we adopted her 8 yrs ago. Best decision ever! Puppy love - mans best… https://t.co/rcCDmvgB4j" +05/19/2018,Sports_celeb,@RealBillRussell,I decided this month for my #8straightgiveaway I will give away a signed Basketball Follow & RT me. @espn… https://t.co/HhPymEnOYx +05/19/2018,Sports_celeb,@RealBillRussell,Back home got my water getting ready for the #CelticsVsCavs Go get a win @celtics @celticslife @nbcsports @si @espn… https://t.co/6xNRKASgLo +05/19/2018,Sports_celeb,@RealBillRussell,"Thank you everyone for the kind thoughts, yes I was taken to the hospital last night & as my wife likes to remind m… https://t.co/gyht9vvwVH" +05/17/2018,Sports_celeb,@RealBillRussell,#shaqinafool @NBAonTNT I once had an inbound pass that hit the guide wire that should qualify. @shaq +05/16/2018,Sports_celeb,@RealBillRussell,"Sorry @smart_MS3 could not find you, congratulations @celtics. Great Win" +05/16/2018,Sports_celeb,@RealBillRussell,#marcussmart has it correct always stick up for your teammates. #CelticsNation #CelticsVsCavs @Al_Horford @NBA… https://t.co/TndLUozo0x +05/16/2018,Sports_celeb,@RealBillRussell,Great playing @celtics keep up the pressure. Get that WIN! Go #CelticsNation #CelticsVsCavs @NBA @espn +05/09/2018,Sports_celeb,@RealBillRussell,. @SHAQ took a page out of my fashion playbook tonight @NBAonTNT @TheJetOnTNT @NBA https://t.co/LdhEBJyzJH +05/05/2018,Sports_celeb,@RealBillRussell,"Good game between #BOSvsPHI but in OT my $$ is on #Boston +GO @celtics @NBA @sixers are playing great though" +05/01/2018,Sports_celeb,@RealBillRussell,Thank you so much to my favorite Italian women & our favorite Italian Restaurant @2sistersnebo for an amazing lunch… https://t.co/ipeq15B7Sf +05/01/2018,Sports_celeb,@RealBillRussell,Congratulations @DaAnsahonSports you are the lucky winner of a cap with my personal logo in my #8straightgiveaway… https://t.co/QcvuIqFnJW +05/01/2018,Sports_celeb,@RealBillRussell,"#TuesdayThoughts It’s #8straightgiveaway Day, Follow & RT to be entered to win. It was a good night @celtics WIN! H… https://t.co/WRlcwEpEeL" +05/01/2018,Sports_celeb,@RealBillRussell,"I know Charles @NBAonTNT would never say he could guard me, he has a better chance of getting struck by lightning… https://t.co/yBp9XTfymU" +05/01/2018,Sports_celeb,@RealBillRussell,I’m here! Let’s go @celtics @NBA @tdgarden @NBAonTNT https://t.co/LbA0lvArWn +04/30/2018,Sports_celeb,@RealBillRussell,Hey #boston got a surprise for you tonight stay tuned. @celtics @NBA @BostonGlobe @NBCSBoston +04/29/2018,Sports_celeb,@RealBillRussell,Way to go @celtics great win! Keep up the good team play. @NBA @NBAonTNT +04/29/2018,Sports_celeb,@RealBillRussell,"Sorry I could not make it to the game tonight, but I am watching. GO @celtics @nba @nbaplayoffs2018 @NBAonTNT" +04/28/2018,Sports_celeb,@RealBillRussell,"Happy #SaturdayMorning I’m @ 99 Fordham Rd Wilmington, MA meet me @ 12-1 today & tomorrow. Meet Oscar Robertson, n… https://t.co/j5mmQPVd8l" +04/26/2018,Sports_celeb,@RealBillRussell,"RT @ Follow me to qualify, Just a handful of days left before I pick from my #8straightgiveaway list & send off ano… https://t.co/Wvq7U7o0Tu" +04/26/2018,Sports_celeb,@RealBillRussell,"Congrats to @warriors, my wife & puppy are 2 of your biggest fans! @nba @KDTrey5 Looking forward to @celtics mee… https://t.co/jxmf5YQFci" +04/20/2018,Sports_celeb,@RealBillRussell,My apologies to my very dear friend @RickWelts on my delayed Congratulations for your #18HoopClass. I am so proud o… https://t.co/8Mcmo5YWjB +04/19/2018,Sports_celeb,@RealBillRussell,I was shocked and saddened to hear on @NBAonTNT of the passing of #ErinPopovich wife of @spurs head coach Gregg Pop… https://t.co/Fk5fYfHY8D +04/19/2018,Sports_celeb,@RealBillRussell,"Looking forward to being in #Boston next week for the @RichAltmanHWC show come on out to see me, maybe get an autog… https://t.co/m4arXQydFC" +04/19/2018,Sports_celeb,@RealBillRussell,Say what!! @NBAonTNT how in the world did @TheJetOnTNT get in that play?? It reminded me of Mike TV from Willie Wo… https://t.co/04eTrIDE56 +04/18/2018,Sports_celeb,@RealBillRussell,It was a pleasure in my life to have met former First Lady #BarbaraBush. Our thoughts are with her family & friend… https://t.co/pnpZ29edme +04/16/2018,Sports_celeb,@RealBillRussell,Sad to hear of the failing health of former First Lady #BarbaraBush. Our thoughts are with the Bush Family. Once… https://t.co/C0WVioV2UC +04/16/2018,Sports_celeb,@RealBillRussell,Happy Birthday @kaj33 Enjoy your day! +04/08/2018,Sports_celeb,@RealBillRussell,Thanks to @RichAltmanHWC for getting the first #giveaway prize of my #8straightgiveaway out. RT & make sure to fol… https://t.co/TKSh7cCwks +04/08/2018,Sports_celeb,@RealBillRussell,WoW anyone who is missing the @TheMasters is really missing some amazing golf by @JordanSpieth started 9 back now t… https://t.co/DBqASwCtZP +04/08/2018,Sports_celeb,@RealBillRussell,. @JoyAnnReid enjoyed you interview with #ElginBaylor just now on @amjoyshow It was great to see all my old frien… https://t.co/9gcsB2J24G +04/07/2018,Sports_celeb,@RealBillRussell,What a great surprise to see my old friend @JoyAnnReid in LA at #ElginBaylorStatue @msnbc @NBA https://t.co/zl0QgEyj7v +04/07/2018,Sports_celeb,@RealBillRussell,So true! Great looking #ElginBaylorStatue @Lakers @celtics @NBA https://t.co/qA5JUZbpmr +04/07/2018,Sports_celeb,@RealBillRussell,"At @LALIVE ready to honor my good friend #ElginBaylorStatue +@Lakers @nba @STAPLESCenter @NBAonTNT https://t.co/rJmWpC2XrK" +04/06/2018,Sports_celeb,@RealBillRussell,Thank you for reminding me @davidaxelrod & #CharlesBarkley I have to set Charles straight so often I forgot about… https://t.co/mebd2pHBvm +04/04/2018,Sports_celeb,@RealBillRussell,"I still feel that was the correct decision, I did not want to take away from his hard work. #MLK50 https://t.co/j23cilDHGO" +04/04/2018,Sports_celeb,@RealBillRussell,"50 yrears ago today Humanity lost a great friend, and so did I. #MLK50 @Lawrence @MSNBC @NBA @celtics @espn https://t.co/UIRhSGkmJo" +04/04/2018,Sports_celeb,@RealBillRussell,Get in on this very rare chance for a photo with a really tall guy with a few extra rings. I will be in #Boston in… https://t.co/SvAqN7rvbF +04/01/2018,Sports_celeb,@RealBillRussell,Wishing everyone a #HappyEaster & #HappyPassover From the Russell's https://t.co/cAW9q677r9 +04/01/2018,Sports_celeb,@RealBillRussell,. @davidhogg111 @Emma4Change @NeverAgainMSD 1 Register & vote 2 Bullies will come for you when you make them uncomf… https://t.co/iwPTOk8fTU +03/31/2018,Sports_celeb,@RealBillRussell,Congratulations @suzyqjinx you won the first prize in my #8straightgiveaway. An 8x10 autographed photo. (Item #3)… https://t.co/gnoWRJ0hBr +03/31/2018,Sports_celeb,@RealBillRussell,RT & #follow Today I pick the first winner in my #8straightgiveaway Check out @RichAltmanHWC for all your memorabi… https://t.co/TxAsBpa6wi +03/30/2018,Sports_celeb,@RealBillRussell,"It may have evolved a bit, but nothing has changed. This is from 1 of my books & my experience in #LosAngeles… https://t.co/3FIDIProdR" +03/30/2018,Sports_celeb,@RealBillRussell,#ThursdayThoughts This is why I #TakeAKnee #StephonClark https://t.co/XMe9qSLzMY +03/30/2018,Sports_celeb,@RealBillRussell,I am so sorry for Stephon Clarks family & friends having to lay to rest their loved one This is why we #TakeAKnee… https://t.co/dPufc8xJwn +03/29/2018,Sports_celeb,@RealBillRussell,#redsox @MLB opening day. @RedSox 2016 I had the honor of throwing out 1st pitch with @davidortiz #BobbyOrr… https://t.co/7a3eadGkOK +03/29/2018,Sports_celeb,@RealBillRussell,Thank you @celtics. AM I really that old? SMH. @NBA https://t.co/cg5bJNjESO +03/28/2018,Sports_celeb,@RealBillRussell,#WednesdayWisdom A few days left for the 1st giveaway of autographed memorabilia. RT & follow 4 a chance to win. If… https://t.co/N9480hePGl +03/26/2018,Sports_celeb,@RealBillRussell,Wow I missed this dunk by @Giannis_An34 https://t.co/jD4M7IdF9o via @youtube really enjoyed getting to know his sto… https://t.co/cYSh0lL4P0 +03/26/2018,Sports_celeb,@RealBillRussell,"Thank you @MENTORnational for this supportive piece, for #MarchforOurLives held yesterday. I can always count on yo… https://t.co/nIFTyWEGqn" +03/25/2018,Sports_celeb,@RealBillRussell,If you missed #HopeAndFury last night it will replay #tonight @ 9 on @MSNBC a must see. It will not interfere watch… https://t.co/ADjrmDRGJr +03/25/2018,Sports_celeb,@RealBillRussell,#HopeAndFury I have for years told my wife we are not far from what was going on 50 yrs ago. This is a must see f… https://t.co/hGDbdYum8h +03/24/2018,Sports_celeb,@RealBillRussell,Spread the word! We will be heard! We are going to be a great generation! - Yolanda Renee King Your Grandfather wh… https://t.co/3YOVIMfMQi +03/24/2018,Sports_celeb,@RealBillRussell,Amen Zach https://t.co/hBXGayfu3q +03/24/2018,Sports_celeb,@RealBillRussell,"Thank you for the RT. You and @itsgabrielleu are making real change by standing for what is important, keep up the… https://t.co/1RX4hHiL4l" +03/24/2018,Sports_celeb,@RealBillRussell,Way to go my man Miles https://t.co/rk8azn415o +03/24/2018,Sports_celeb,@RealBillRussell,If you can get out & support @AMarch4OurLives today I am proud of this generation standing up for injustice & havin… https://t.co/Ie9MiIFoHb +03/21/2018,Sports_celeb,@RealBillRussell,RT & follow me there are only 10days left before I give away the first of my #8straightgiveaway autographed memorab… https://t.co/4VPjpjmzQo +03/21/2018,Sports_celeb,@RealBillRussell,My wife & I really enjoyed our visit last year. One of the best museum experiences I have had. The sweet home Cafe… https://t.co/A3V5EyYAWj +03/20/2018,Sports_celeb,@RealBillRussell,Happy #firstdayofspring2018 and #InternationalHappinessDay. This is my happy puppy. Princess Leaha. @NBA… https://t.co/gNZ9BUe1KP +03/19/2018,Sports_celeb,@RealBillRussell,Looking forward to seeing my good friend Oscar Roberton in Boston for @RichAltmanHWC Boston Show Come on in if you… https://t.co/7aZF1ASNoH +03/18/2018,Sports_celeb,@RealBillRussell,What a great game! @ZagMBB & @OhioState_WBB gotta love @marchmadness #marchmadness Its hard to say who will end up… https://t.co/v4BYPvG9Ut +03/17/2018,Sports_celeb,@RealBillRussell,"So sorry to hear of your families great loss. They really are part of the family, best friends, protectors & uncond… https://t.co/7m1mPWVfDL" +03/16/2018,Sports_celeb,@RealBillRussell,You got the same chance as everyone else. Good luck Miles live what you are doing for @jrnba @NBATV https://t.co/msBb4Ow69e +03/16/2018,Sports_celeb,@RealBillRussell,Enjoyed giving away a signed pair of shoes on my Bday I'm doing it again but bigger celebrating my 8 Straight champ… https://t.co/rjJdUGLZdV +03/15/2018,Sports_celeb,@RealBillRussell,Happy Birthday @StephenCurry30 It has been fun watching you progress year after year. Remember I only give the guys… https://t.co/PQ96web4mJ +03/15/2018,Sports_celeb,@RealBillRussell,"So proud of all the brave students that made the decision to participate #nationalwalkoutday with your voice, and d… https://t.co/XZzuJeRRkJ" +03/09/2018,Sports_celeb,@RealBillRussell,"Did you do something to celebrate #InternationalWomenDay ? My wife is one of the strongest women I know, so was my… https://t.co/Pg0O0qiAou" +03/05/2018,Sports_celeb,@RealBillRussell,Great job @JordanPeele on your #Oscars way to go! Keep up the good work +03/05/2018,Sports_celeb,@RealBillRussell,"Congratulations to @kobebryant on his Oscar for #DearBasketball way to go Kid! Very proud, Never #ShutUpAndDribble… https://t.co/DsuBZxtxPn" +03/04/2018,Sports_celeb,@RealBillRussell,Having a hard time picking a favorite sketch @nbcsnl #CharlesBarkley is doing great. @AlecBaldwin killed it!… https://t.co/6qANfZqp4F +03/04/2018,Sports_celeb,@RealBillRussell,"Going to take a quick nap so I can watch my good friend #CharlesBarkley Host @nbcsnl for the 4th time, that’s grea… https://t.co/bIS8XVqCjj" +03/02/2018,Sports_celeb,@RealBillRussell,Having my #morningcoffee enjoying Wilt 100 @NBATV One thing I know for sure He would have never got 100 on me! Ch… https://t.co/sl9XyrIAhw +02/22/2018,Sports_celeb,@RealBillRussell,I remember this well. Red & Walter only wanted to WIN. @NBA @NBAHistory https://t.co/dBBbmd18Q9 +02/19/2018,Sports_celeb,@RealBillRussell,"Thank you for the birthday wishes, it was great seeing you at #NBAAllStar I did not see this sooner FYI I’m on Twit… https://t.co/SqL4E768Vt" +02/19/2018,Sports_celeb,@RealBillRussell,Nice kicks Miles sorry we missed you this year https://t.co/JCTErkB2Dy +02/19/2018,Sports_celeb,@RealBillRussell,Lacing up before the game @StephenCurry30 @nba @NBAonTNT #NBAAllStar https://t.co/R4dHETzxTt +02/19/2018,Sports_celeb,@RealBillRussell,Hanging with the guys #JerryWest @kaj33 @JuliusErving ready for #NBAAllStar Game @nba @STAPLESCenter https://t.co/1KF5L71SMh +02/19/2018,Sports_celeb,@RealBillRussell,Thank you it was a real honor https://t.co/6LinjoOyaO +02/18/2018,Sports_celeb,@RealBillRussell,My thoughts exactly Thank You @Giannis_An34 This is very dear to my heart. @ nba https://t.co/CAJbifDZXu +02/18/2018,Sports_celeb,@RealBillRussell,Congratulations @realgranthill33 & Good Luck https://t.co/UwV0DDg20y +02/18/2018,Sports_celeb,@RealBillRussell,Having a laugh at the @NBA #legendsbrunch with @BillyCrystal . #NBAAllStar https://t.co/L5PkOzyQ8b +02/18/2018,Sports_celeb,@RealBillRussell,Proud of @KingJames & @KDTrey5 for speaking truth against racism ! I have never & would never #ShutUpAndDribble T… https://t.co/g4S95d748q +02/18/2018,Sports_celeb,@RealBillRussell,Well said Yara! @NBA #BlackHistoryMonth2018 https://t.co/4nAmlJO2ts +02/18/2018,Sports_celeb,@RealBillRussell,"Thanks Miles, hope to see you at the @nba #legendsbrunch #NBAAllStarWeekend https://t.co/FqayknKY6j" +02/18/2018,Sports_celeb,@RealBillRussell,Great dunk by @LarryNanceJr7 @NBA #SlamDunkContest #NBAAllStarWeekend https://t.co/AznkRjNkA9 +02/18/2018,Sports_celeb,@RealBillRussell,Warming up for #3PointContest https://t.co/1hhW4G913u +02/18/2018,Sports_celeb,@RealBillRussell,Just sat down courtside for the @NBA on @NBAonTNT #AllStarWeekend #NBAAllStars skills challenge https://t.co/ERbPw5feaw +02/17/2018,Sports_celeb,@RealBillRussell,"Super! I like the Boston flag, enjoy them. @celtics @NBA https://t.co/5JdFFMvpiZ" +02/16/2018,Sports_celeb,@RealBillRussell,"Thanks Sam, Sorry I missed this. Hope to see you at #NBAAllStar https://t.co/OWyH7Ldd9B" +02/14/2018,Sports_celeb,@RealBillRussell,"""To love someone is nothing, to be loved by someone is something, to love someone who loves you is everything"" - Bi… https://t.co/KaCMfuGdWQ" +02/13/2018,Sports_celeb,@RealBillRussell,Thank you so much for the #birthday wishes. You are a great leader for @MENTORnational https://t.co/cU7YPnqvFC +02/13/2018,Sports_celeb,@RealBillRussell,"Thanks Bill, see you at #NBAAllStar Bill Lucky for you twitter added more characters. Lol https://t.co/R04BjUsmBq" +02/13/2018,Sports_celeb,@RealBillRussell,Congratulations @Jordan_VanBeek you are the WINNER of the #BillRussellBdayGiveAway enjoy! #winner #NBAAllStar2018… https://t.co/WHPRRiUFfO +02/12/2018,Sports_celeb,@RealBillRussell,Thank you to @UnderArmour for the #StephenCurry shoes for my #BillRussellBdayGiveAway #nba #UnderArmour I am pickin… https://t.co/RSDjjH7WiF +02/12/2018,Sports_celeb,@RealBillRussell,Thank you to my great marketing team for all your hard work it is a pleasure working with all of you. https://t.co/T2ZNBypDcA +02/12/2018,Sports_celeb,@RealBillRussell,Thank you https://t.co/Uum3cto4Ko +02/12/2018,Sports_celeb,@RealBillRussell,Thank you! https://t.co/GLftsoXLZp +02/12/2018,Sports_celeb,@RealBillRussell,Thank You! https://t.co/P8iQVFuNap +02/12/2018,Sports_celeb,@RealBillRussell,THANK YOU to everyone for all the #birthday wishes. I am picking 1 FOLLOWER today to win a pair of autographed sne… https://t.co/GU5bhpfWWm +02/11/2018,Sports_celeb,@RealBillRussell,"Today is the last chance, Don't miss out. I will be picking one lucky follower for an autographed pair of sneakers… https://t.co/qeN1bbMuou" +02/11/2018,Sports_celeb,@RealBillRussell,Congratulations to @PaulPierce34 #TheTruth on a GREAT career! Very proud to have you as part of my @celtics family… https://t.co/UGKp5VnSHc +02/10/2018,Sports_celeb,@RealBillRussell,Only 2 days left before my #birthday & my BillRussellBDay #Giveaway 1 lucky follower will win a pair of autographe… https://t.co/aT7co0fxRT +02/09/2018,Sports_celeb,@RealBillRussell,Always a good laugh listening to my guys #NBAonTNT If I could get Charles to follow me he might win a autographed… https://t.co/LAIm8CUqv9 +02/06/2018,Sports_celeb,@RealBillRussell,"Looking forward to seeing my good friend ""The Big O"" at the show. https://t.co/kEB5CR9WJq" +02/05/2018,Sports_celeb,@RealBillRussell,Let #GoPats get your game face on!! #SuperBowl52 https://t.co/vw6JNdtziG +02/04/2018,Sports_celeb,@RealBillRussell,Getting ready for #superbowl GO #patriots ! Remember follow me to have a chance to win an autographed pair of shoe… https://t.co/Gc8kyaUVnG +02/02/2018,Sports_celeb,@RealBillRussell,"Follow & RT me for a chance to win an autographed pair of shoes. I will pick a winner on my birthday, February 12th… https://t.co/zhjBzhc1nb" +01/26/2018,Sports_celeb,@RealBillRussell,". @NBAonTNT Not only did I win multiple championships as player coach, a little know fact I did not have any assistant coaches." +01/24/2018,Sports_celeb,@RealBillRussell,"Congratulations, @KingJames with 30,000 points, 7,000 rebounds and 7,000 assists. THAT IS @NBAHistory #LeBronJames @NBA @NBAcom" +01/24/2018,Sports_celeb,@RealBillRussell,"Follow & RT to make sure you hear about my big announcement next week, you don't want to miss it. #NBA #sports… https://t.co/cuNgphUljE" +01/21/2018,Sports_celeb,@RealBillRussell,WOW! #JAXvsNE what a game. Congratulations to #Patriots #AFCChampionship #NFLPlayoffs +01/21/2018,Sports_celeb,@RealBillRussell,Please support @davidortiz wonderful charity and buy a cookbook @ https://t.co/8t83P2n7Mh Lots of NE legends… https://t.co/N4fiMaCET0 +01/21/2018,Sports_celeb,@RealBillRussell,.@davidortiz I'm Getting ready for #ChampionshipSunday My wife is https://t.co/8t83P2n7Mh Check out my Moms recipe… https://t.co/sxi7Nx24ZI +01/19/2018,Sports_celeb,@RealBillRussell,".@KGArea21 & @NBAonTNT @paulpierce34, Paul is correct he handled it better than what I would have. #petty" +01/18/2018,Sports_celeb,@RealBillRussell,"Hey @KevinHart4real how is this for working out? Getting in shape for @NBAAllStar See you there, if you can recogn… https://t.co/v2YWuJAvBx" +01/18/2018,Sports_celeb,@RealBillRussell,"It was my great pleasure to have worked for many years with Keith, he made my job easier. My condolences to Keith… https://t.co/xNd0PobPM4" +01/17/2018,Sports_celeb,@RealBillRussell,Today would have been my good friend & fellow activist @MuhammadAli 76th Birthday #HappyBirthdayAli You are deeply… https://t.co/R8boC9nkzO +01/17/2018,Sports_celeb,@RealBillRussell,Maybe we can get in some golf. https://t.co/X1eFtXhste +01/17/2018,Sports_celeb,@RealBillRussell,"Extremely sad to hear about the passing of @Hoophall @Celtic Great JoJo White, lost his fight with cancer. He wa… https://t.co/zYS8c92KPq" +01/16/2018,Sports_celeb,@RealBillRussell,"Congratulations @blackishabc outstanding comedy series, @anthonyanderson - actor, @TraceeEllisRoss - actress &… https://t.co/1UAhHaCpC9" +01/15/2018,Sports_celeb,@RealBillRussell,Will said my friend. https://t.co/kfRL49ClVp +01/15/2018,Sports_celeb,@RealBillRussell,“And so the challenge which confronts all of us is to respond to our circumstances with strength and courage rather… https://t.co/Ry7ZCiwXUl +01/15/2018,Sports_celeb,@RealBillRussell,"The most insidious type of #racist labels countries full of black and brown people #shitholes one day, while purpor… https://t.co/21dVmyB5Ua" +01/14/2018,Sports_celeb,@RealBillRussell,January is #mentoring month @MENTORnational #NBA @celtics @RedSox https://t.co/y66keT9T6J +01/14/2018,Sports_celeb,@RealBillRussell,"Great Job @Patriots nice defense, & I know defense. Keep up the good work @NFL @NFLonCBS #TENvsNE #NFLPlayoffs" +01/14/2018,Sports_celeb,@RealBillRussell,Let GO @Patriots https://t.co/24h4wbBChI +01/13/2018,Sports_celeb,@RealBillRussell,"Congratulations @TheShaneMissler enjoy the journey and HAVE FUN! At least you will live long enough to spend it,… https://t.co/2bxB8RfrZS" +01/13/2018,Sports_celeb,@RealBillRussell,Agreed https://t.co/Pbj995D7nD +01/13/2018,Sports_celeb,@RealBillRussell,Thank You @JoyAnnReid #AMjoy for bringing awareness to all the contributions made to OUR country by Immigrants from… https://t.co/5vu3CuGdPk +01/13/2018,Sports_celeb,@RealBillRussell,"As do I, Thank you David & everyone who helps to runs @MENTORnational Anyone who mentors someone across the globe… https://t.co/4RmLnRXRYo" +01/13/2018,Sports_celeb,@RealBillRussell,"@kaj33 this is the best compliment @realDonaldTrump could have ever given you. Can't stop laughing Best Wishes,… https://t.co/RDTQqL1RjB" +01/13/2018,Sports_celeb,@RealBillRussell,Love this my Friend https://t.co/GTfgb3qIij +01/12/2018,Sports_celeb,@RealBillRussell,The struggle continues even today for many in Haiti. Difficult to imagine 8 years have passed https://t.co/Uf3TiLvQpC +01/12/2018,Sports_celeb,@RealBillRussell,Well said https://t.co/2sTDHFgpLH +01/12/2018,Sports_celeb,@RealBillRussell,"RT @SenJohnMcCain: People have come to this country from everywhere, and people from everywhere have made America great. Our immigration po…" +01/12/2018,Sports_celeb,@RealBillRussell,"Thank you Sir for standing up against racism, and doing what is best for our Country. https://t.co/umJqGY2U6z" +01/12/2018,Sports_celeb,@RealBillRussell,"Is @realDonaldTrump aware the first people to come here from #""SHIThole"" countries did not come willingly, they cam… https://t.co/B65sNLv3xO" +01/10/2018,Sports_celeb,@RealBillRussell,Praying for all who may be in harm's way. https://t.co/A68BCn23pM +01/10/2018,Sports_celeb,@RealBillRussell,@SenFeinstein @maddow @MSNBC @Lawrence @CNN https://t.co/FZ8u445oji +01/10/2018,Sports_celeb,@RealBillRussell,Thank you #brave @SenFeinstein for #ReleaseTheTranscript 300+ pages #FusionGPS testimony of Glenn Simpson. My read… https://t.co/CjwRxBGI1a +01/10/2018,Sports_celeb,@RealBillRussell,Enjoyed the @michaeljackson ONE @cirque show in #LasVegas @MandalayBay Thank You to our security detail for the qui… https://t.co/lc4C6W3Fk4 +01/07/2018,Sports_celeb,@RealBillRussell,"Had a great time in #LasVegas for #NYE. Thank you to my good friends at @southpointlv, as always we had a great time there." +01/01/2018,Sports_celeb,@RealBillRussell,With family & friend this #NewYearsEve2017 wishing Everyone a Happy & Healthy #NewYear2018 Be safe tonight #NYE +12/26/2017,Sports_celeb,@RealBillRussell,"When I was little I wish I could sing, now I wish @NBAonTNT could sing" +12/26/2017,Sports_celeb,@RealBillRussell,"@NBAonTNT Little known fact #FrankRobinson & I were class mates & team mates. Yes, he still looks the same." +12/26/2017,Sports_celeb,@RealBillRussell,my 4 fav announcers @NBAonTNT always keep me entertained @TheJetOnTNT @SHAQ @TurnerSportsEJ #CharlesBarkley… https://t.co/tvbINWbW0E +12/26/2017,Sports_celeb,@RealBillRussell,52 yrs ago I went behind the Iron Curtain for the State Dept and I took a picture with this young man. Today on… https://t.co/lbYq074cFg +12/25/2017,Sports_celeb,@RealBillRussell,"I am very happy to have my good friend and favorite President @BarackObama, say it for me #MerryChristmas @NBA… https://t.co/iTpGZvZgQn" +12/25/2017,Sports_celeb,@RealBillRussell,Thanks for sharing this. https://t.co/foOAAPFch7 +12/23/2017,Sports_celeb,@RealBillRussell,"When I saw this in the sky this evening I felt like the poor folks on the video, I had NO idea what this was. Happy… https://t.co/jeSVWA2tA2" +12/23/2017,Sports_celeb,@RealBillRussell,@johncusack @SamuelLJackson Thanks John for not making fun of the blurry photo I put up. I’m new at this people! +12/22/2017,Sports_celeb,@RealBillRussell,Great @TheDailyShow reunion last night on @colbertlateshow @StephenAtHome reminded me of this Sam on Your Side: Bil… https://t.co/B4FvnMsYBK +12/22/2017,Sports_celeb,@RealBillRussell,Uplifting story about how having a second chance is always worth the time Reminds me of the great work… https://t.co/JUBhdw2VDe +12/22/2017,Sports_celeb,@RealBillRussell,"Do not want the day to go by without saying #HappyBirthday to my good friend @SamuelLJackson. I’m sure I beat you,… https://t.co/tUDMVdxDBV" +12/19/2017,Sports_celeb,@RealBillRussell,@kobebryant @kobebryant Thank you for allowing me to share in your special moment. Be well my friend +12/19/2017,Sports_celeb,@RealBillRussell,"Thank you @KDTrey5 for being so kind to my wife today. I had a great time watching a really good game tonight,… https://t.co/2TlUTbVqUB" +12/19/2017,Sports_celeb,@RealBillRussell,Always a fun time @kaj33 #NBA https://t.co/8hiDgOEAfo +12/19/2017,Sports_celeb,@RealBillRussell,Had a great time tonight with my good friend @kaj33 I was happy to be at #LakerNation #LakeShow to support & honor… https://t.co/PBMBgLsotK +12/18/2017,Sports_celeb,@RealBillRussell,"https://t.co/wThAX67mvX +Congrats @kobebryant I want to officially welcome you to the legend's club! #Ko8e24, they r… https://t.co/LLbSAZaC9y" +12/13/2017,Sports_celeb,@RealBillRussell,RT @1MrBigShot: With a heavy heart I send my condolences to Megan Klindt’ family. I had the pleasure of spending some time w Megan a few yr… +12/13/2017,Sports_celeb,@RealBillRussell,Congratulations @GDouglasJones. #Alabama you made the country proud. Great to see all the diversity on stage with… https://t.co/CDbN5p83fv +12/09/2017,Sports_celeb,@RealBillRussell,"Hey Steph, I know when I played at Defremery Park they can always use goodies. I love my SC @UnderArmour shoes. Ke… https://t.co/i8IvA4eIa6" +12/09/2017,Sports_celeb,@RealBillRussell,It brings me great joy to say Happy Birthday to @JoyAnnReid. I would have sent a video but did not want to ruin yo… https://t.co/8Ca3GXEyj3 +12/09/2017,Sports_celeb,@RealBillRussell,Happy to hear about the opening of CivilRightsMuseum. I stand by & with the decision of @repjohnlewis & any others… https://t.co/F7n6UwaTp1 +12/08/2017,Sports_celeb,@RealBillRussell,@SHAQ you look like a Big James Brown https://t.co/1ItX6duKGK +06/29/2018,Sports_celeb,@tonyparker,"Photo souvenir à l'occasion de la première pierre de la #TPAA, merci aux équipes de l'@ASVEL_Basket, l’… https://t.co/21RPlHUlLr" +06/29/2018,Sports_celeb,@tonyparker,"Retrouvez-moi aujourd'hui à partir de 15h pour la pose officielle de la première pierre de la @TP_A_A , à suivre en… https://t.co/yvr9bQpFqL" +06/25/2018,Sports_celeb,@tonyparker,Super moment partagé avec la famille #TeamASVEL https://t.co/7hFgLyqY88 +06/22/2018,Sports_celeb,@tonyparker,@Puressentiel a créé un kit spécial avec mes trois produits préférés 😃👌 Retrouvez la sélection sur :… https://t.co/sYLxxQPTkV +06/18/2018,Sports_celeb,@tonyparker,RT @TonyESTANGUET: Merci @tonyparker de ta présence ce matin avec #Paris2024 🏀 et les jeunes de @unss. Welcome on board for such an amazing… +06/18/2018,Sports_celeb,@tonyparker,"Fier d’être l’ambassadeur de l’éducation pour les Jeux Olympiques et Paralympiques ! #Paris2024 +Proud to be Ambass… https://t.co/rcbR9Exmm2" +06/15/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Quel bel événement lancé officiellement ce matin ! ✨ La @villedelyon accueillera en septembre la 1ère édition du Festival… +05/28/2018,Sports_celeb,@tonyparker,Happy Memorial Day #SpursCity 🇺🇸 +05/24/2018,Sports_celeb,@tonyparker,"Découvrez mon quotidien auprès de l’@ASVEL_Basket, @ASVEL_Feminin et la @TP_A_A grâce à ce documentaire. Merci aux… https://t.co/vSFWIGcnl0" +05/22/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: @ajslaughter8 @CKahudi5 VICTOIRE 💪 #MSBASVEL #PlayoffsJeepELITE https://t.co/xLvExHvV5H +05/18/2018,Sports_celeb,@tonyparker,"Merci beaucoup @Puressentiel ! Si vous avez un ami qui est né le même jour que moi, n'hésitez pas à le taguer sur c… https://t.co/yi2uhAHZeu" +05/18/2018,Sports_celeb,@tonyparker,"RT @TISSOT: A very happy birthday #TissotAmbassador @tonyparker! +#HappyBirthday #Tissot #TonyParker https://t.co/pB24qWZykM" +05/18/2018,Sports_celeb,@tonyparker,Merci à tous pour vos messages d’anniversaire ! Thanks to everybody for your bday wishes ! 3️⃣6️⃣ 🎂 +05/18/2018,Sports_celeb,@tonyparker,"RT @ASVEL_Feminin: 🎉 Bon anniversaire au Président @tonyparker ! + +#TeamASVEL https://t.co/R1f5uhgclH" +05/18/2018,Sports_celeb,@tonyparker,"RT @ASVEL_Basket: Nous souhaitons aujourd'hui un joyeux anniversaire à notre Président, @tonyparker ! 😀✌ #TeamASVEL https://t.co/qqxtfgiXJt" +05/10/2018,Sports_celeb,@tonyparker,Bravo pour cette saison ! 👍🏼@ASVEL_Feminin #TeamASVEL https://t.co/wtHttHsn2k +05/04/2018,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: Retrouvailles avec le Président @tonyparker avant le départ des Lionnes pour la demi-finale aller à @BourgesBasket ! 🔜💪… +05/04/2018,Sports_celeb,@tonyparker,"De retour en France, ça fait du bien ! 😬👍🏼 +In France for a couple of days, good to be back! 🇫🇷" +05/02/2018,Sports_celeb,@tonyparker,BRAVOOOOOOO @ASVEL_Feminin https://t.co/iz8itwDJN9 +04/23/2018,Sports_celeb,@tonyparker,💪🏼 @manuginobili #spursnation https://t.co/Xhrb8JeHce +04/23/2018,Sports_celeb,@tonyparker,"RT @spurs: With tonight’s win, Tony Parker and Manu Ginobili become the winningest duo in NBA Playoff History. + +Tony Parker and Manu Ginob…" +04/22/2018,Sports_celeb,@tonyparker,"RT @NBAFRANCE: Votre #NBASundays en grand, en très grand !! 🍿🎥 + +Le game 4 du premier tour des #NBAPlayoffs entre #DubNation et #GoSpursGo s…" +04/10/2018,Sports_celeb,@tonyparker,"Amazing Broadway Musical! Time for Playoffs now, 17 in a row!!! +#WifeyDateNoKids #SpursFamily +@MeanGirlsBway… https://t.co/df5tcRmupq" +04/08/2018,Sports_celeb,@tonyparker,Félicitations @TonyYoka 💪🏽 https://t.co/dvuoB2mkgG +04/02/2018,Sports_celeb,@tonyparker,"RT @NBA: Congrats to @tonyparker of the @spurs for moving up to 19th on the NBA’s ALL-TIME ASSISTS list! + +#GoSpursGo #ThisIsWhyWePlay http…" +04/01/2018,Sports_celeb,@tonyparker,#FinalFour #AlmaMater @LoyolaChicago 🙌🏾 https://t.co/lBWyLMP5l5 +03/30/2018,Sports_celeb,@tonyparker,YAAASS https://t.co/2aJv8J9srb +03/25/2018,Sports_celeb,@tonyparker,"Super moment avec Elodie et Sylvain, les deux gagnants du jeu concours avec @Puressentiel! +#PurChampions https://t.co/smYOH1IMYT" +03/25/2018,Sports_celeb,@tonyparker,"RT @TP_A_A: Dans le cadre de notre partenariat avec le @GroupeAdequat, Céline (Adéquat Toulon) et son client sont actuellement à San Antoni…" +03/06/2018,Sports_celeb,@tonyparker,"RT @spurs: Bringing some 🔥 off the bench + +Tony Parker scored a team-high 23 points vs Memphis #GoSpursGo https://t.co/CS455KqYLv" +03/06/2018,Sports_celeb,@tonyparker,AHAHA old pic @alexisrambur 😂 https://t.co/kmxpT1iJKh +02/25/2018,Sports_celeb,@tonyparker,"RT @NBAFRANCE: Quand le triple champion #NBA Bruce @Bowen12 revient dans son club d' @ALMEvreux ​ ! + +Il nous parle de son expérience en Fr…" +02/16/2018,Sports_celeb,@tonyparker,"RT @Puressentiel: Pour les 10 ans du Roller A&M, on vous envoie à San Antonio rencontrer @tonyparker ! Pour partir 5 jours au soleil et ass…" +02/16/2018,Sports_celeb,@tonyparker,Happy Lunar New Year to all my friends in China ! ⛩ 🇨🇳 🎊 +02/08/2018,Sports_celeb,@tonyparker,@kmoreland14 @spurs Awesome ! +02/08/2018,Sports_celeb,@tonyparker,🙌🏼 https://t.co/dTg3uCdTcX +02/08/2018,Sports_celeb,@tonyparker,👌 https://t.co/6FlkU6JVX7 +02/07/2018,Sports_celeb,@tonyparker,"RT @spurs: two years ago today. 💁🏽‍ + +CC: @selenagomez https://t.co/qCebkDPDSi" +02/07/2018,Sports_celeb,@tonyparker,"Enjoy the video that we did in #BuenosAires a few month ago, my stay there was fantastic, I really hope to come bac… https://t.co/lJODVQFBlc" +01/29/2018,Sports_celeb,@tonyparker,"Votez @MakeAWishFrance ! +Cette association qui réalise les vœux d'enfants atteints d'affections graves a été pré-sé… https://t.co/4hFxQ1s9W5" +01/24/2018,Sports_celeb,@tonyparker,RT @spurs: Tony Parker right now... https://t.co/DEnMZUV8xH +01/23/2018,Sports_celeb,@tonyparker,"Je suis heureux de vous annoncer que je rejoins la team Fruit Shoot France pour encourager les enfants à bouger, à… https://t.co/W2RuFQzlO3" +01/01/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Nous avons ce soir une très forte pensée pour Fred Forte du @limogescsp +12/31/2017,Sports_celeb,@tonyparker,"Happy New Year ✨ +Bonne Année ✨ +Feliz Año ✨" +12/25/2017,Sports_celeb,@tonyparker,"Merry Christmas from my family to yours! Joyeux Noël à tous🎄🎅🏼 +#xmas #familytime" +12/22/2017,Sports_celeb,@tonyparker,#teamwork @manuginobili 🤣 https://t.co/K3wDn5nFA4 +12/19/2017,Sports_celeb,@tonyparker,😬 https://t.co/VHZKtuzeIg +12/19/2017,Sports_celeb,@tonyparker,Congrat's on your career @kobebryant ! #Ko8e24 #Goat #Mamba +12/19/2017,Sports_celeb,@tonyparker,"RT @spurs: TP was cookin' tonight 🔥 + +16 points +7 assists +2 steals https://t.co/E5k1OtSS3A" +12/17/2017,Sports_celeb,@tonyparker,"RT @LNBofficiel: Lancement officiel des #JournéesdeNoëlLNB à l'Astroballe en compagnie de @leafrancoisoff, de Gaëtan Muller et de Sébastien…" +12/17/2017,Sports_celeb,@tonyparker,💪🏼🔥 https://t.co/eBdkmenwOF +12/17/2017,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: Coup d'envoi dans 3 minutes !🏀🔥 #ASVELBLMA #TeamASVEL https://t.co/96EK0K17Py +12/06/2017,Sports_celeb,@tonyparker,"Une rock star s’en est allée... RIP @JohnnySjh⭐️🎸🎤 +Toutes mes condoléances à sa famille! #légende" +11/29/2017,Sports_celeb,@tonyparker,"RT @spurs: ""I feel very lucky and very blessed."" + +@cayleighgriffin caught up with @tonyparker following his season debut last night: https…" +11/28/2017,Sports_celeb,@tonyparker,RT @spurs: Squad was pumped to have @tonyparker back tonight. https://t.co/9lNMnfKDfv +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: “No, it was just a lot of emotion but almost, almost. I’m always amazed by all the love from the Spurs fans.” - TP on if he shed…" +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: After seven months, @tonyparker made his return to the court last night. + +#WelcomeBackTP https://t.co/qBu1zZmwEQ" +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: 🙌 + +#WelcomeBackTP https://t.co/iomb2C1ugL" +11/28/2017,Sports_celeb,@tonyparker,Thanks Bala 👍🏽 https://t.co/LfjBFrTxzq +11/28/2017,Sports_celeb,@tonyparker,Thank you 👌🏼 https://t.co/DGDEZPfBn8 +11/28/2017,Sports_celeb,@tonyparker,Thank you my man! 🙏🏻 https://t.co/4q1N9V0p76 +11/23/2017,Sports_celeb,@tonyparker,Happy Thanksgiving y’all 🍁🦃🍰 +11/03/2017,Sports_celeb,@tonyparker,"Match contre @nicolas88batum ce soir à San Antonio, mais avant match des filles @ASVEL_Feminin! 1er match pour… https://t.co/8wv18YL23D" +11/01/2017,Sports_celeb,@tonyparker,"RT @spurs: 16 years ago today, a 19-year old @tonyparker made his @NBA debut! https://t.co/W6Fp9RtYpC" +10/31/2017,Sports_celeb,@tonyparker,💪🏽 #PurChampions https://t.co/x1r0U04KKN +10/28/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/jZNehlQ0sJ +10/19/2017,Sports_celeb,@tonyparker,@Puressentiel Pensez-vous que @JonnyWilkinson ait une chance contre moi ? #TeamTony #PurChampions https://t.co/22ZuSbNbim +10/19/2017,Sports_celeb,@tonyparker,We are back #SpursNation ⚪️⚫️ +10/12/2017,Sports_celeb,@tonyparker,👍🏼😍 https://t.co/o1DwbxYBqP +10/12/2017,Sports_celeb,@tonyparker,Merci les amis @Puressentiel ! 😬✌🏻 https://t.co/4gwdQ7UIOF +10/11/2017,Sports_celeb,@tonyparker,RT @GroupeAdequat: Notre nouvelle campagne cosignée avec @TonyParker et la @TP_A_A #Adéquat #SimplementPourVous #TPAA #LEJobAdéquat #TonyPa… +10/09/2017,Sports_celeb,@tonyparker,Joyeux anniversaire à Jean-Marc Brun et au @GroupeAdequat ! Ce n’est que le début de grandes aventures ensemble avec la @TP_A_A 😉 +10/06/2017,Sports_celeb,@tonyparker,Retour sur ce moment sympa passé il y a un an déjà avec @JonnyWilkinson et @Puressentiel #purchampions… https://t.co/8WLqQ6hAhB +10/04/2017,Sports_celeb,@tonyparker,"Concentré sur le match des filles! Match dans 10 minutes, allons chercher notre deuxième victoire ✌🏻 https://t.co/iFJmAlMiBe" +10/01/2017,Sports_celeb,@tonyparker,RT @spurs: All smiles on set today as we shoot another round of everyone's favorite @HEB commercials https://t.co/QmacRBq1OV +09/30/2017,Sports_celeb,@tonyparker,Très content du début de saison ! #OpenLFB #ASVELTGB 👌🏽🏀 https://t.co/Lg8WWs07Vb +09/30/2017,Sports_celeb,@tonyparker,Go @ASVEL_Basket 👍🏼 #ASVELCB https://t.co/aWMWBHpYsB +09/26/2017,Sports_celeb,@tonyparker,GO ASVEL GO ! https://t.co/iVjtFFwAiU +09/26/2017,Sports_celeb,@tonyparker,I tried out #RenaultTimeCapsule. You too travel to the future thanks to #RenaultSYMBIOZ https://t.co/IEeWsxoBPa https://t.co/fGfAhHChm4 +09/25/2017,Sports_celeb,@tonyparker,"RT @spurs: ""That was my main goal all summer... to be back at the level I was in the playoffs"" - @tonyparker https://t.co/U07bR87FOI" +09/24/2017,Sports_celeb,@tonyparker,Premier match de la saison pour les verts 😬🏀 #GoAsvelGo #ASVELCSP +09/24/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: H-1 ! Prêts pour le premier RDV de la saison ? 🔥🏀 #ASVELCSP https://t.co/ACQEWr7Tny +09/13/2017,Sports_celeb,@tonyparker,"RT @Paris: Notre rêve devient réalité, @Paris2024 se concrétise 😍 Les Jeux Olympiques de 2024 sont une chance pour la France🇫🇷 #ANousLesJeu…" +09/13/2017,Sports_celeb,@tonyparker,"Bravo à toute la délégation pour avoir décroché les Jeux Olympiques en France. 🇫🇷🎉 +#ANousLesJeux #Paris2024" +09/13/2017,Sports_celeb,@tonyparker,"RT @Paris2024: #ANousLesJeux 🎉 La #France accueillera les Jeux #Paris2024 🥇 +WE DID IT – 🇫🇷 will host the 2024 #Olympic and #Paralympic Game…" +09/02/2017,Sports_celeb,@tonyparker,"RT @FRABasketball: Les Bleus s'imposent face à la Grèce 95-87 💪 #GREFRA +#teamfrancebasket #EuroBasket2017 https://t.co/nOMCjvTHGZ" +09/02/2017,Sports_celeb,@tonyparker,Bravo 💪🏼🥋 https://t.co/Rt4iQeE1Ke +08/31/2017,Sports_celeb,@tonyparker,"RT @FRABasketball: Prolongations !!!!! #FRAFIN +Le scénario de 2015 se répète +#GoFrance 💪🔵⚪️🔴 +#TeamFranceBasket" +08/31/2017,Sports_celeb,@tonyparker,@FRABasketball @EvanFourmizz @basketfinland @BasketAvecCanal @EspritBasket Allez les Bleus 💪🏽🏀 #Eurobasket17 +08/31/2017,Sports_celeb,@tonyparker,"RT @Sandrine_Gruda: Légende de notre sport 🇫🇷👌 +@tonyparker https://t.co/CKN30aB1wc" +07/26/2017,Sports_celeb,@tonyparker,Super événement @GRDF ! 👍🏼😊 #GenerationBasket https://t.co/0TU6c47A2J +07/26/2017,Sports_celeb,@tonyparker,"Beijing, here I am ! Thank you @peaksportsUSA 🇨🇳🏀" +07/21/2017,Sports_celeb,@tonyparker,👍 https://t.co/wBOIOulBu9 +07/21/2017,Sports_celeb,@tonyparker,Buenos tiempos con @RenaultArg ! #TonyParkerxRENAULT https://t.co/4yY8qgsSFl +07/20/2017,Sports_celeb,@tonyparker,RT @RenaultArg: ¡Bienvenido @tonyparker a la #Argentina! 💪🏀 Seguí el paso a paso de su visita desde nuestras redes sociales. #TonyParkerxRE… +07/19/2017,Sports_celeb,@tonyparker,"RT @manuginobili: 🇦🇷Seguiré vistiendo la #20 un tiempito más!! #sigaelbaile #elpibede40  +🇺🇸Back with the @Spurs for another season #thrille…" +07/19/2017,Sports_celeb,@tonyparker,MANU IS BACK !! So happy @manuginobili ⚪️⚫️ #GoSpursGo #SpursNation +07/16/2017,Sports_celeb,@tonyparker,👏👏 https://t.co/ibAf9rSwp5 +07/14/2017,Sports_celeb,@tonyparker,"Joyeux 14 Juillet à tous ! 🇫🇷 +Happy Bastille Day ! 🇫🇷 https://t.co/BCWhHgzOWA" +06/27/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/vxsZePUFGU +06/27/2017,Sports_celeb,@tonyparker,RT @RRG_fr: @tonyparker est arrivé sur les lieux et découvre le Nouveau #RenaultKoleos https://t.co/v7IWxTgSZD +06/27/2017,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: @tonyparker @ASVEL_Basket @TP_A_A @villedelyon @nicolas88batum Photo de famille pour clôturer la conférence de présentat… +06/26/2017,Sports_celeb,@tonyparker,"RT @TP_A_A: RDV demain pour une conférence de presse de @tonyparker, Gaëtan Muller et @nicolas88batum sur les grands projets ASVEL #TPAA" +06/09/2017,Sports_celeb,@tonyparker,Fier d’avoir vu l'@ASVEL_Basket ne faire qu’UN durant ces Playoffs. Merci à tous nos soutiens et rdv l’année prochaine ! #Conquerthefuture +06/09/2017,Sports_celeb,@tonyparker,Thank you @spurs 💪🏼😎 https://t.co/QKmp9dOne8 +06/04/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: AHOU !! Allez l'@ASVEL_Basket ! 👊🏼 #ASVELSIG #WeAreASVEL https://t.co/UK46lv26pK +05/30/2017,Sports_celeb,@tonyparker,YES !!! 💪🏼 On to the next one @ASVEL_Basket #WeAreASVEL https://t.co/KUf9A46cey +05/26/2017,Sports_celeb,@tonyparker,"Fier de mon équipe @ASVEL_Basket ! Prochaine étape, la 1/2 face à @sigstrasbourg 🏀 #PlayoffsLNB #ObjectifBack2Back" +05/26/2017,Sports_celeb,@tonyparker,Dernière ligne droite ! #GoasvelGo https://t.co/NrxQ9l5wQa +05/24/2017,Sports_celeb,@tonyparker,ALLEZ @ASVEL_Basket je regarde le match en direct de San Antonio ! 🏀 #PlayoffsLNB #ObjectifBack2Back #GoAsvelGo https://t.co/QGL1YvseSH +05/24/2017,Sports_celeb,@tonyparker,"RT @spurs: All of this is nothing without you by our side. From the bottom of our hearts, thank you #SpursFamily for all your support. We l…" +05/23/2017,Sports_celeb,@tonyparker,Thank you for all the support during this season #SpursNation ! @spurs +05/17/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Happy birthday Président @tonyparker ! 😉🎉 #TeamASVEL https://t.co/rYHwKd8XMl +05/17/2017,Sports_celeb,@tonyparker,RT @LYONBF: Bon anniversaire à notre président @tonyparker ! 🎉 🎂🏀 #LBFamily +05/17/2017,Sports_celeb,@tonyparker,RT @NBA: Join us in wishing @tonyparker of the @spurs a HAPPY 35th BIRTHDAY! #NBABDAY #GoSpursGo https://t.co/qtXIHWcL6X +05/17/2017,Sports_celeb,@tonyparker,Thank you ! #GoSpursGo https://t.co/WvVPrtTglN +05/12/2017,Sports_celeb,@tonyparker,Western Conference Finals !!! #gospursgo +05/10/2017,Sports_celeb,@tonyparker,What a win! So proud of my teammates! #gospursgo +05/02/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: .@CB_officiel @CKahudi5 #CBASVEL #ProA https://t.co/2KAHqaSs7E +05/02/2017,Sports_celeb,@tonyparker,Félicitations à nos filles du @LYONBF !!! On reste en Ligue 1 ! Hâte d'être à l'année prochaine 🏀 +05/01/2017,Sports_celeb,@tonyparker,Je compte sur le public lyonnais pour faire vibrer Mado Bonnet et soutenir le @LYONBF ce mardi en finale des #PlaydownsLFB ! #MissionLFB +04/29/2017,Sports_celeb,@tonyparker,"Joyeux anniversaire Josh ! Déjà trois ans, le temps passe vite 🎂 +Happy birthday to my big boy Josh, already three y… https://t.co/0uPfxLoHRe" +04/28/2017,Sports_celeb,@tonyparker,"On to Round 2 #SpursNation ! +💪🏼👨🏽‍🍳🔥 @spurs" +04/28/2017,Sports_celeb,@tonyparker,RT @spurs: 🔥 TONY 🔥 PARKER 🔥TONIGHT 🔥 https://t.co/qcwTllyA6i +04/28/2017,Sports_celeb,@tonyparker,RT @SamuelLJackson: Tony Parker Yalllllll!!! +04/28/2017,Sports_celeb,@tonyparker,RT @DavidtheAdmiral: Vintage @tonyparker tonight. Hitting big shots all night. #Clutch +04/26/2017,Sports_celeb,@tonyparker,"Mon gars @edjacks c'est définitivement le #MVPMovistar de la @ACBCOM. Jamais un français ne l'as fait, aidez le à écrire l'histoire !! 🔥👌🏀" +04/23/2017,Sports_celeb,@tonyparker,RT @NBA: Congrats to @tonyparker of the @spurs on moving up to 6th on the #NBAPlayoffs Games Played list with 217! https://t.co/F5azjTrtw5 +04/21/2017,Sports_celeb,@tonyparker,👍 https://t.co/an4k8W4LD6 +04/15/2017,Sports_celeb,@tonyparker,"That happy face when you know today is #PlayoffsDay ! @spurs +#GoSpursGo https://t.co/rpO1n0u8cy" +04/15/2017,Sports_celeb,@tonyparker,#NBAPlayoffs 🏀 https://t.co/f9OdyDBfFd +04/06/2017,Sports_celeb,@tonyparker,Thank you for being the Best Fans in the world ! ❤️ #SpursFAN @spurs https://t.co/rPmroEiYMV +04/06/2017,Sports_celeb,@tonyparker,RT @spurs: Happy Birthday @mattbonner_15! 🎉 https://t.co/xBS7U2KkTU +04/03/2017,Sports_celeb,@tonyparker,Merci pour le soutien @AntoGriezmann ! 😊 https://t.co/spQggkRSOh +03/29/2017,Sports_celeb,@tonyparker,Très heureux d'annoncer l'arrivée de @nicolas88batum au sein de mon club de l'@ASVEL_Basket ! Une nouvelle aventure commence ensemble... +03/14/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Welcome back Casper ! 😉 #TeamASVEL https://t.co/BvmOOI4j30 +03/10/2017,Sports_celeb,@tonyparker,RT @jpsiutat: Bravo à @tonyparker nouveau président et propriétaire majoritaire de Lyon Basket Féminin ! @ffbasketball @basketlfb +03/10/2017,Sports_celeb,@tonyparker,Très fier de pouvoir officialiser l'achat du @LYONBF ! Une nouvelle aventure commence ... #lfb #basket #feminin +03/02/2017,Sports_celeb,@tonyparker,The documentary #asveldidit is now online. Le documentaire Asvel Did It est en ligne. Enjoy ! https://t.co/HSyBMvJyRB +02/26/2017,Sports_celeb,@tonyparker,"RT @spurs: Pretty nifty, @tonyparker https://t.co/k27W6PI5mv" +02/26/2017,Sports_celeb,@tonyparker,Look who came to the game ! #CasperWare #Asvel #FranceChampion2016 cc. @ASVEL_Basket https://t.co/1q8zBhkLNn +02/26/2017,Sports_celeb,@tonyparker,"RT @spurs: Okay, TP, okay! https://t.co/v86mmZsT30" +02/24/2017,Sports_celeb,@tonyparker,Family Time in L.A. 👌🏼cc. @unistudios #theparkers #love https://t.co/ymemYzQnfE +02/23/2017,Sports_celeb,@tonyparker,Concept store sympa ! Allez rencontrer des sportifs et découvrez mes vêtements @WapTwo 👌cc. @tsonga7 @lucabalo… https://t.co/NFj0auKMt9 +02/20/2017,Sports_celeb,@tonyparker,"Got to stay in shape, even during the All-Star break! Great times at Enchanted Rock. 💪🏼 https://t.co/5jj7emxMKl" +02/19/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Place à la finale #ProA !! #MonacoASVEL #LeadersCup https://t.co/12kKlkV8CV +02/12/2017,Sports_celeb,@tonyparker,Go @HollyHolm ! #ufc208 https://t.co/sGBBwPqnXZ +02/11/2017,Sports_celeb,@tonyparker,"Défiez moi sur les jeux #bootcamp #RenaultSport ! Try to challenge my scores on @RenaultSport #bootcamp games! +➡️ https://t.co/mWD92MtOEv" +02/10/2017,Sports_celeb,@tonyparker,"RT @gerardcollomb: Confidence de @tonyparker : ""Je suis tombé amoureux de #Lyon !"" +C'est réciproque, cher Tony. 😉 +🏀 Longue vie à la Parker…" +02/10/2017,Sports_celeb,@tonyparker,"RT @GroupeAdequat: Adéquat est fier de devenir partenaire de la future ""Tony Parker Adéquat Academy"" #TPAA #Adéquat #TonyParker https://t.c…" +02/10/2017,Sports_celeb,@tonyparker,https://t.co/aT5UCrJJEM 👍🏼 +02/10/2017,Sports_celeb,@tonyparker,Je suis fier de vous présenter le nom de ma future academy : la TONY PARKER ADEQUAT ACADEMY #TPAA #Adéquat @TP_A_A… https://t.co/LdQGjaFfxU +02/09/2017,Sports_celeb,@tonyparker,Retrouvez-moi demain à 15h pour l’annonce du nom de la @TP_Academy_ … #staytuned #TPAcademy #ASVEL +02/08/2017,Sports_celeb,@tonyparker,Retour des #CGB en Février ! @GRDF 👍🏻 https://t.co/PSIRGQ3Wlk +02/08/2017,Sports_celeb,@tonyparker,#GOAT 🏀 https://t.co/pfDkJkT1fK +02/06/2017,Sports_celeb,@tonyparker,RT @spurs: And #SpursRRT begins. We're Memphis bound! https://t.co/ZlPim1frnt +02/05/2017,Sports_celeb,@tonyparker,"RT @NBAHistory: Gregg Popovich #1,128; journey back to Pop's first win as @Spurs head coach https://t.co/sVHU5JUL0m" +02/05/2017,Sports_celeb,@tonyparker,"Congratulations to Coach Pop, made history yesterday with 1,128 wins as head coach! #proud @spurs" +02/04/2017,Sports_celeb,@tonyparker,"RT @NBA2K: Big news! 4x NBA champ @TonyParker joins #NBA2KCast 2/7, 4 PM PST for the @Tissot 24 Second Challenge #ThisIsYourTime https://t.…" +02/01/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/ecxC6guMEY +01/30/2017,Sports_celeb,@tonyparker,Congrats to my friend @rogerfederer ! So happy for you #goat #tennis #tbt https://t.co/aBGStmDisO +01/29/2017,Sports_celeb,@tonyparker,Merci @gadelmaleh pour ce super show hier soir ! Amazing show from my friend @gadelmaleh yesterday evening un Austi… https://t.co/SZ3yl2HivL +01/18/2017,Sports_celeb,@tonyparker,Always a great time at Coach Pop dinner for @safoodbank ! #championsagainsthunger https://t.co/zc3sKeHunf +01/18/2017,Sports_celeb,@tonyparker,"RT @spurs: Tricky, tricky @tonyparker.. https://t.co/XLKTllLwLH" +01/13/2017,Sports_celeb,@tonyparker,Amazing pic of @Thom_astro from the space ! Thanks for sharing it with me ! Huge @spurs fan ! https://t.co/kSupw5YAhl +01/13/2017,Sports_celeb,@tonyparker,Merci @Thom_astro de m'avoir envoyé cette photo ! J'espère que tout se passe bien dans l'espace avec ton nouveau po… https://t.co/fY5RMEbOHG +01/01/2017,Sports_celeb,@tonyparker,RT @lequipe: Le doc #ASVELdidit sur l'épopée de l'@ASVEL_Basket de @tonyparker en Pro A vous donne RDV dans 5mn sur @lachainelequipe ! http… +12/31/2016,Sports_celeb,@tonyparker,Happy New Yeare everyone ! Bonne année ! ✨ +12/29/2016,Sports_celeb,@tonyparker,RT @spurs: Tony was cookin' tonight. https://t.co/4LZIZQs0fd +12/28/2016,Sports_celeb,@tonyparker,A 17h50 sur @lachainelequipe découvrez « Asvel Did It » un docu sur l’@ASVELbasket et les Finales LNB 2016 ! #asveldidit @waptwo @OckeFilms +12/25/2016,Sports_celeb,@tonyparker,Joyeux Noël ! Merry Christmas ! Feliz Navidad ! 🎄🎅🏽✨ +12/24/2016,Sports_celeb,@tonyparker,I got what was at the top of my wish list! #Tissot Chemin Des Tourelles https://t.co/2F06goClmX +12/22/2016,Sports_celeb,@tonyparker,Proud to show you the amazing job made by @WapTwo recording the best moments to the Finals of my french club… https://t.co/dsDkSPQxf7 +12/18/2016,Sports_celeb,@tonyparker,"RT @spurs: 30 minutes till tipoff. Y'all ready?! + +#GoSpursGo https://t.co/NiRgmujp8P" +12/18/2016,Sports_celeb,@tonyparker,"Wearing these socks in honor of #Timmy tonight ! +Spéciale dédicace à #TD ce soir ! +#21 #spurs #ThankYouTD @spurs https://t.co/KgZ5NXF3lb" +12/15/2016,Sports_celeb,@tonyparker,RT @NBAonTNT: We are forever #SagerStrong https://t.co/t9C3x6znkb +12/11/2016,Sports_celeb,@tonyparker,Super photo @Thom_astro ! Merci du soutien en direct de l'espace 🚀✨ +12/11/2016,Sports_celeb,@tonyparker,Thank you @Thom_astro for your support of the @spurs ! Amazing picture from space 🚀 #sanantoniobynight +12/11/2016,Sports_celeb,@tonyparker,RT @Thom_astro: Good game to my friend @tonyparker & @spurs playing at home tonight in San Antonio TX. I'm a huge @NBA fan & I follow the s… +11/28/2016,Sports_celeb,@tonyparker,Fier de présenter la nouvelle collection capsule @WapTwo pour @zkidsofficial Shop ---> https://t.co/ADl6JiToXw #waptwo #Zkids #collection +11/25/2016,Sports_celeb,@tonyparker,"RT @spurs: Wherever home is for you, we hope you're enjoying time there today ❤️ https://t.co/7QjlXa22Ar" +11/24/2016,Sports_celeb,@tonyparker,"Happy Thanksgiving to everyone ! I'm thankful for my wonderful family, my friends and for you #spursnation 🙏🏻 🍁 🦃 @spurs" +11/24/2016,Sports_celeb,@tonyparker,💪🏼 @manuginobili https://t.co/7w8U1M8of5 +11/24/2016,Sports_celeb,@tonyparker,RT @spurs: .@tonyparker came up clutch with this three late in the fourth! https://t.co/oOh1JVt4p1 +11/23/2016,Sports_celeb,@tonyparker,"RT @Thom_astro: Thanks everybody for this video: it means a lot to me, and when I got to the rocket I felt fantastic https://t.co/9v4HiHRpCC" +11/18/2016,Sports_celeb,@tonyparker,Great times at George's personal court at Warner Brothers ! 🏀📽 https://t.co/URs6EvEgag +11/17/2016,Sports_celeb,@tonyparker,"RT @FRABasketball: .@tonyparker et @theborisdiaw aux côtés de @Thom_astro avant son départ pour l'espace 💫 🚀 +https://t.co/HHuVlC7QOn https:…" +11/17/2016,Sports_celeb,@tonyparker,"Bonne chance @Thom_astro pour la mission ""Proxima"" ! 🚀 +On se voit à ton retour ✨" +11/17/2016,Sports_celeb,@tonyparker,RT @Thom_astro: L-0: Lancement aujourd’hui! Tout est expliqué dans cette vidéo. Moi je connais ça par cœur ;) https://t.co/hxnfcXLPa7 +11/15/2016,Sports_celeb,@tonyparker,RT @spurs: Tony talks defense and Manu talks Tony: https://t.co/kLdSKXp1kC +11/12/2016,Sports_celeb,@tonyparker,RT @spurs: Basketball meets soccer. https://t.co/Pz1drHVbIu +11/12/2016,Sports_celeb,@tonyparker,RT @NBAFRANCE: @tonyparker a de la visite ce soir! @10APG https://t.co/PvV2Z8eAhy +11/12/2016,Sports_celeb,@tonyparker,Very happy to see you @10apg at the AT&T Center ! #spurs #tigres #france 🇫🇷👍🏼 https://t.co/oYuQxqErt0 +11/11/2016,Sports_celeb,@tonyparker,Happy #VeteransDay Spurs Nation ! +11/11/2016,Sports_celeb,@tonyparker,"RT @spurs: Tonight we honor those who have served with a special #SpursSalute game. + +#VeteransDay 🇺🇸 https://t.co/U4US3NWHQw" +11/04/2016,Sports_celeb,@tonyparker,"RT @spurs: “It’s incredible to see the way basketball has grown around the world since I was a rookie."" - @tonyparker https://t.co/jeOBtOF…" +11/01/2016,Sports_celeb,@tonyparker,Game Day #SpursNation ! #vsjazz #GoSpursGo +10/31/2016,Sports_celeb,@tonyparker,"RT @spurs: .@tonyparker has been a Spur for 44% of his life + +more fun stuff » https://t.co/jnor54AHaz https://t.co/VVRsYP0wC1" +10/31/2016,Sports_celeb,@tonyparker,RT @spurs: 💯 https://t.co/BXkr3aOCF4 +10/31/2016,Sports_celeb,@tonyparker,You can never be too accurate #TeamTissot #ThisIsYourTime https://t.co/e6yfyprJkS +06/27/2018,Sports_celeb,@Cristiano,"High @sleepscore. ✅ +Game day ready. ✅ +Try out this new app today! +https://t.co/bcfa1BItoD #WhatsYourSleepScore https://t.co/dwmu9lnVqj" +06/27/2018,Sports_celeb,@Cristiano,"Happy to launch my new #Mercurial Chapter 6 Edição Especial that celebrate 85 goals for 🇵🇹⚽️👍🏽 +Coming soon at… https://t.co/UQ6aPURYXz" +06/25/2018,Sports_celeb,@Cristiano,Objectivo cumprido. Unidos e focados para os oitavos de final. Vamos Portugal💪🏽🇵🇹 https://t.co/fEdKbFB9X8 +06/24/2018,Sports_celeb,@Cristiano,Mood👌🇵🇹💯 https://t.co/q43fbu6jsJ +06/24/2018,Sports_celeb,@Cristiano,"Leaving home at 12 was the hardest thing I ever did... but I believed. +Believe. #justdoit @nikefootball https://t.co/9ZWsz95CAz" +06/22/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/Awb3DLFAib +06/20/2018,Sports_celeb,@Cristiano,Vitória importante. Continuamos focados no nosso objectivo.⚽️🇵🇹 https://t.co/tceQUIEfFO +06/19/2018,Sports_celeb,@Cristiano,"WHEN I TALK TO THE BALL, IT LISTENS. + +BELIEVE. #JUSTDOIT @NIKEFOOTBALL https://t.co/gUSFBj26b8" +06/16/2018,Sports_celeb,@Cristiano,Feliz por ter sido eleito o melhor em campo. Bom trabalho de equipa!🇵🇹👍🏽 https://t.co/EjLIZxp3Dm +06/15/2018,Sports_celeb,@Cristiano,Vamos família!👍🏽🇵🇹 https://t.co/YjfMbdx8xN +06/14/2018,Sports_celeb,@Cristiano,Celebrating World Blood Donor Day and the start of the World Cup! Feeling strong with my young blood donors team! R… https://t.co/ihAnq4wz7N +06/14/2018,Sports_celeb,@Cristiano,"I’m so glad I went for it - it was the greatest goal I’ve ever scored. +Believe. #justdoit @nikefootball https://t.co/iSFRsSW4nc" +06/13/2018,Sports_celeb,@Cristiano,"In my mind, there’s only one winner. + +Believe. #justdoit @nikefootball https://t.co/7Z1btfgSHI" +06/10/2018,Sports_celeb,@Cristiano,Sonhar é humano …. e somos do tamanho dos nossos sonhos! @MEOpt https://t.co/8SM7UQW8Op +06/10/2018,Sports_celeb,@Cristiano,🇵🇹💪🏽😜 https://t.co/7jTQVbgrR7 +06/09/2018,Sports_celeb,@Cristiano,Guess who’s back on the cover of @EASPORTSFIFA! 😉 #FIFA19 #ChampionsRise 🎮⚽️🏆 https://t.co/7jb1euX5Fu +06/09/2018,Sports_celeb,@Cristiano,"Time to pack! +Let’s do it, team! ⚽ + +#AmericanTourister #BringBackMore https://t.co/chjLBaU4tc" +06/09/2018,Sports_celeb,@Cristiano,Good morning🇵🇹😜 https://t.co/ZoVWW8Xk5B +06/08/2018,Sports_celeb,@Cristiano,Unidos 🇵🇹👌 https://t.co/RQljR0ShqR +06/07/2018,Sports_celeb,@Cristiano,"When you believe you achieve. +@nikefootball #nikefootball #JustDoIt https://t.co/ptLV2VzhMx" +06/06/2018,Sports_celeb,@Cristiano,Ready 🇵🇹👌 https://t.co/8jwT3lbaAl +06/06/2018,Sports_celeb,@Cristiano,I’m bringing together some of the coolest heroes on the planet for my very own Super-Team. Stay tuned for… https://t.co/NjxkGECGSV +06/05/2018,Sports_celeb,@Cristiano,Os meus bebés Eva e Mateo cumprem hoje o seu primeiro aniversário! Parabéns meus queridos filhos!👏🏽🎂😘😘 https://t.co/BZuLX0OkH2 +06/04/2018,Sports_celeb,@Cristiano,The world is watching. Let’s go to work #HerbalifeNutrition #BehindTheResults #sponsored https://t.co/HSPjsRJ7JK +06/02/2018,Sports_celeb,@Cristiano,Vencedores 👌🏆 https://t.co/SN3oNC8xLY +06/01/2018,Sports_celeb,@Cristiano,"Never finished 🇵🇹 ⚽ 💪 + +Shop my latest #Mercurial in my personal store at https://t.co/E2zLOUFGP6 #Nike… https://t.co/DUgODwkruM" +05/31/2018,Sports_celeb,@Cristiano,"Are you donating blood and plasma regularly? Guess who could be next to you next time you donate!☝🏼☝🏼 BE THE 1. +Sa… https://t.co/AjD0DANeyT" +05/29/2018,Sports_celeb,@Cristiano,Família. Momentos inesquecíveis 💪🏽❤️ https://t.co/d9wa3tcFnb +05/28/2018,Sports_celeb,@Cristiano,🏆❤️ https://t.co/cNVIXvzpvk +05/28/2018,Sports_celeb,@Cristiano,História 🌎🏆 https://t.co/vhAitaP2Aw +05/27/2018,Sports_celeb,@Cristiano,🏆🏆🏆🏆🏆 https://t.co/5MhvvArz1b +05/26/2018,Sports_celeb,@Cristiano,"Believe It Done. #JustDoIt +-- +#Nike #NikeFootball #NikeSoccer https://t.co/HJSlxDRJI0" +05/24/2018,Sports_celeb,@Cristiano,"If you believe, why not? +#NIKEFOOTBALL #NIKESOCCER #MERCURIAL #BORNMERCURIAL #JUSTDOIT https://t.co/p0CnaLz5EH" +05/24/2018,Sports_celeb,@Cristiano,A caminho de Kiev 👌✈️ https://t.co/2s6bxDfov1 +05/23/2018,Sports_celeb,@Cristiano,Don’t miss my sisters Elma Aveiro e @KatiaAveiro at Madeira Fashion Weekend on June 2 and 3! The party goes on at… https://t.co/BvspSy3SBg +05/23/2018,Sports_celeb,@Cristiano,My perfect shoes for the gym.💪 #Nike #Niketraining @niketraining https://t.co/qqtYbR1lDF +05/23/2018,Sports_celeb,@Cristiano,Can’t wait to work with @Herbalife Nutrition for another 3 years! Proud to call them my partner in performance… https://t.co/2zehRd4266 +05/22/2018,Sports_celeb,@Cristiano,Good morning ☀️ ☀️ ☀️ ☀️ https://t.co/MTAHJKerh8 +05/19/2018,Sports_celeb,@Cristiano,👌⚽️ https://t.co/meWZy2b9nM +05/18/2018,Sports_celeb,@Cristiano,Paz e amor 💕 https://t.co/IUbJ7lOqNu +05/18/2018,Sports_celeb,@Cristiano,"We’ve made it last year in Funchal, let’s do it for Lisbon this year! +Click here: https://t.co/PfvzZ5oaCJ vote ;)… https://t.co/YnYKGvoVP5" +05/17/2018,Sports_celeb,@Cristiano,Pleased with this great partnership with #egyptiansteel @ahmedabohashima #A_New_Generation_Of_Steel https://t.co/4h4OHy365u +05/17/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/OXizqFk0PS +05/16/2018,Sports_celeb,@Cristiano,"Muito contente por anunciar o gesto do meu amigo @enriqueiglesias em doar 7⃣% das receitas do concerto em Lisboa,ao… https://t.co/R3Hy08T6gZ" +05/15/2018,Sports_celeb,@Cristiano,👌 https://t.co/uTmxndlUJi +05/12/2018,Sports_celeb,@Cristiano,Back on track 👌👋💪 https://t.co/WkhDmp8rAZ +05/05/2018,Sports_celeb,@Cristiano,"My thoughts and prayers are with you, my dear friend. Be strong, Boss! https://t.co/kmih28Xpsq" +05/04/2018,Sports_celeb,@Cristiano,"Madeira Island, the place where I was born, is nominated for Europes’s Leading Island Destination! Let’s all vote?… https://t.co/XuwXKOpcmb" +05/03/2018,Sports_celeb,@Cristiano,Ready for Russia? The FIFA #WorldCup comes to #FIFA18 on May 29th 🎮👌 @easportsfifa https://t.co/42DLu8MXWN https://t.co/T1VbAdifja +05/01/2018,Sports_celeb,@Cristiano,Final 👌 https://t.co/A0xnTPUPKH +04/30/2018,Sports_celeb,@Cristiano,"The perfect boot for my biggest matches. ⚽ 💪 +Get yours on https://t.co/Td9BJOXwaj. #Mercurial #Nikefootball https://t.co/yU9dTFXuHo" +04/29/2018,Sports_celeb,@Cristiano,Soon UCL ⚽️ https://t.co/BsVWt5toQw +04/25/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽 https://t.co/73bMhzwxEk +04/21/2018,Sports_celeb,@Cristiano,Chill in my hotel with my baby❤️ https://t.co/ySPQ9BP566 +04/20/2018,Sports_celeb,@Cristiano,Relaxing 👌 https://t.co/fcFt2AGsBH +04/16/2018,Sports_celeb,@Cristiano,⚽️👀 https://t.co/1wY275ywgr +04/14/2018,Sports_celeb,@Cristiano,O Cristiano foi o melhor marcador da escola! Parabéns filho!👏🏽🔝👌🏽 https://t.co/pRTxLdkxNO +04/14/2018,Sports_celeb,@Cristiano,Congratulations @egyptiansteel for the opening in “Al Ain Al Sokhna”using the newest eco-friendly technology in the… https://t.co/6Jrk1sozcK +04/13/2018,Sports_celeb,@Cristiano,Please support @able2uk today as the disabled awareness organisation celebrates its 17th anniversary #able2uk +04/12/2018,Sports_celeb,@Cristiano,Vamos equipo!!👍🏽 https://t.co/6v0jEZaX8T +04/09/2018,Sports_celeb,@Cristiano,👌 https://t.co/bTFbcvVFhw +04/06/2018,Sports_celeb,@Cristiano,"Preparing my suitcase for a new trip! Which colors look best on me? +Travel in style with #AmericanTourister… https://t.co/dHbNDGIVQx" +04/03/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽⚽️⚽️⚽️ https://t.co/NXoulxYVjU +04/02/2018,Sports_celeb,@Cristiano,UCL⚽️ https://t.co/FmU9tDJCzC +04/01/2018,Sports_celeb,@Cristiano,Feliz Páscoa!🐣 https://t.co/l77dlVmyhR +03/29/2018,Sports_celeb,@Cristiano,Double trouble ;p @cr7underwear https://t.co/1HGbZRwrPB +03/24/2018,Sports_celeb,@Cristiano,Results don’t happen overnight. It takes daily commitment. Watch my #BehindTheResults video with #HerbalifeNutrition https://t.co/1jwQxJIfmv +03/24/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/VetQvKxFAs +03/22/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/b0SUaPwbdU +03/21/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/vknrvyNRW1 +03/20/2018,Sports_celeb,@Cristiano,"Fight as one, rise together !⚽ +The new @Portugal National Team Collection, available on +March 23rd on… https://t.co/jrCUzseIWh" +03/19/2018,Sports_celeb,@Cristiano,⚽️7 https://t.co/rvYAhaDLN7 +03/18/2018,Sports_celeb,@Cristiano,Vamos Equipo!👍🏽💪🏽 https://t.co/8BTu6Fwsvw +03/17/2018,Sports_celeb,@Cristiano,😂😂 https://t.co/mcoAIPPWgm +03/17/2018,Sports_celeb,@Cristiano,"Dedicated SINCE the Beginning. #BornMercurial +Get THE Mercurial superFly 360 now at https://t.co/pzHBG6y9o5 https://t.co/497HZTdNeB" +03/15/2018,Sports_celeb,@Cristiano,"Hola Madrid, +we are on the way! #pestana #pestanacr7 #cr7 #2019 #pestanacr7madrid #spain #madrid https://t.co/Z94V4BaVba" +03/14/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/LcWYOyOR0m +03/13/2018,Sports_celeb,@Cristiano,Be strong. Have faith. Never give up. #7WordsForSyria @SavetheChildren https://t.co/WjGltzXhSV +03/12/2018,Sports_celeb,@Cristiano,Still legendary together. 10 years and counting. #ClearMen #WorldNo1MenShampoo https://t.co/9n5Ccwy3DE +03/11/2018,Sports_celeb,@Cristiano,That feeling when you reach your goal 💪 See how @herbalife is helping people achieve their goals… https://t.co/UG2amgrD7V +03/10/2018,Sports_celeb,@Cristiano,Vamos Equipo!👍🏽💪🏽 https://t.co/TU1TkArQ8W +03/09/2018,Sports_celeb,@Cristiano,Fast meets Fast ⚡ Great to meet you brother! #bornmercurial #mercurial #nikefootball https://t.co/Kfp3acbLRm +03/08/2018,Sports_celeb,@Cristiano,My SS18 CR7 Underwear campaign launches today! Go to https://t.co/D3TT7ERIz0 to check it out. ;) https://t.co/mnsPjMaewI +03/08/2018,Sports_celeb,@Cristiano,My SS18 @CR7Underwear campaign launches today! Go to https://t.co/Vlium6FXZ6 to check it out. ;) https://t.co/hnQg3EGb0N +03/06/2018,Sports_celeb,@Cristiano,Una victoria importante en Paris. Vamos Equipo!💪🏽 https://t.co/hOPilXXUgN +03/05/2018,Sports_celeb,@Cristiano,Let's go 💪👌 https://t.co/H0KgDnfECO +03/04/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/qm0fUiOjLb +03/03/2018,Sports_celeb,@Cristiano,Vamos equipo!!👍🏽 https://t.co/mJ9lu3xufv +03/01/2018,Sports_celeb,@Cristiano,🐆 #bornmercurial https://t.co/Ce55ar3ysT +03/01/2018,Sports_celeb,@Cristiano,💪Jr say daddy I'm gonna be like you!!! What do you think?? 😂🤔 https://t.co/wL7KVyCkaF +02/25/2018,Sports_celeb,@Cristiano,To more mornings like this at my @PestanaCR7 Lisbon hotel https://t.co/NBouh25NXH +02/25/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/kGyIW7xvrE +02/24/2018,Sports_celeb,@Cristiano,Feliz por haber alcanzado los 300 goles en la Liga Española por el Real Madrid. Vamos equipo!👍🏽 https://t.co/KBizM5OTdb +02/23/2018,Sports_celeb,@Cristiano,Best of luck to #Egyptian_Steel latest addition...The soon to open “AL AIN AL SOKHNA” steel plant @ahmedabohashima… https://t.co/4zHRAVzIib +02/22/2018,Sports_celeb,@Cristiano,"Try to Keep Up 🐆 #BornMercurial + +Introducing the Mercurial Superfly 360, available February 26 at… https://t.co/0CwkXBl1v2" +02/20/2018,Sports_celeb,@Cristiano,Love is in the air ❤️❤️ https://t.co/cwyBIQNaBQ +02/18/2018,Sports_celeb,@Cristiano,"Juntos, a seguir luchando!💪🏽 https://t.co/WJuUOD84ko" +02/15/2018,Sports_celeb,@Cristiano,One 🌍 where we all ❤ our children. Please help. #Rohingya #Refugee @SavetheChildren https://t.co/t2eJN244Jl https://t.co/9ZPwe5olJC +02/14/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽💪🏽 https://t.co/Z1Hon6cihl +02/13/2018,Sports_celeb,@Cristiano,I love this game 😂😄❤️😉 https://t.co/6k3CElTIy1 +02/11/2018,Sports_celeb,@Cristiano,Nice to see you bro. 👌💪 https://t.co/MMqLZDsEgJ +02/07/2018,Sports_celeb,@Cristiano,Me and my boy 💙 Rocking our @cr7limitless & @cr7junior gear | https://t.co/rIL6OxcBQk #CR7Denim #CR7Jeans #CR7Squad https://t.co/wGuGCAP2mg +02/06/2018,Sports_celeb,@Cristiano,#bornmercurial @nikefootball https://t.co/ugnl0Ef6Xb +02/06/2018,Sports_celeb,@Cristiano,#NovaFotoDoPerfil https://t.co/36nZtKDiMQ +02/05/2018,Sports_celeb,@Cristiano,"Thanks @Nike for this amazing birthday gift!🎁👟👌🏽🔝 +#24kgold #AF1 #CR7 https://t.co/LYDy58Vs13" +02/05/2018,Sports_celeb,@Cristiano,Job done with a special partner on my birthday!💪🏽❤️#livelifefit https://t.co/4hGRRssTZv +02/05/2018,Sports_celeb,@Cristiano,33!🎂🥂Thank you all for your birthday messages https://t.co/YUJGDZCsAe +02/05/2018,Sports_celeb,@Cristiano,"Not bad for my first time playing football 💪🏼 +https://t.co/oAaLFOnMn8" +02/04/2018,Sports_celeb,@Cristiano,#NovaFotoDoPerfil https://t.co/XrUiPnpEqk +02/02/2018,Sports_celeb,@Cristiano,👌 https://t.co/saZsfm4Qrp +02/01/2018,Sports_celeb,@Cristiano,New jersey. Thoughts? 😉 #Ad https://t.co/7icciDe4UR +01/31/2018,Sports_celeb,@Cristiano,#CR7Fragrance the perfect scent for Valentines day! https://t.co/gNubub7SDE +01/31/2018,Sports_celeb,@Cristiano,❤️❤️❤️ https://t.co/Njzma7SeyY +01/30/2018,Sports_celeb,@Cristiano,Denim on denim 👖 living in my CR7 jeans 👌 Get yours now on https://t.co/rIL6OwV0rK @cr7limitless #CR7Denim #CR7Jeans https://t.co/pc6ippbitm +01/30/2018,Sports_celeb,@Cristiano,"Esta noche no te pierdas “En el corazón de la 12”, en RMTV (22:30h) https://t.co/dWGZdy2sd6" +01/29/2018,Sports_celeb,@Cristiano,Glad to win the award of the 懂球帝(All Football) 2017 best player. Thanks to the Chinese fans who have voted on me. https://t.co/B92Os5fbXx +01/27/2018,Sports_celeb,@Cristiano,Vitoria importante. Juntos vamos continuar a ganhar! https://t.co/zpw72rOkZp +01/25/2018,Sports_celeb,@Cristiano,Ánimo equipo. Ánimo madridistas. Aún nos quedan muchas batallas por ganar. https://t.co/xkbCAMYmpk +01/21/2018,Sports_celeb,@Cristiano,Vamos equipo https://t.co/Sh8B2IYZdM +01/20/2018,Sports_celeb,@Cristiano,"You might see the shots I take on the field, but you don’t see what’s behind those results - countless hours of tra… https://t.co/glBAXhkRVO" +01/19/2018,Sports_celeb,@Cristiano,🇵🇹❤️☀️ https://t.co/KUdnB7iR4B +01/19/2018,Sports_celeb,@Cristiano,9️⃣9️⃣! Highest-rated player in the @easportsfifa Team of the Year! Thanks for picking me 🙌 https://t.co/ak34v7CWBe… https://t.co/ZKzJSrkK5C +01/16/2018,Sports_celeb,@Cristiano,Honored to be nominated for the 2017 Laureus Sportsman of the Year Award. This is only possible because of the grea… https://t.co/Q9wJaAxbak +01/15/2018,Sports_celeb,@Cristiano,Wearing my Signature CR7 Steel Shirt 👌 Comfort is the new luxury. Find yours now on https://t.co/rIL6OxcBQk… https://t.co/IZcXuJiYmR +01/11/2018,Sports_celeb,@Cristiano,"The wait is over, my AF1 CR7 is launching today! Now available Globally on https://t.co/hiajNcJH0B, the Nike SNEAKR… https://t.co/XKrNeXk30l" +01/10/2018,Sports_celeb,@Cristiano,Practice 👌 https://t.co/VQ5jqj55cz +01/05/2018,Sports_celeb,@Cristiano,Home away from home #pestanacr7lisbon https://t.co/LB4KiKpK13 +01/03/2018,Sports_celeb,@Cristiano,A new year can mean new goals 🏆. What are yours? #BehindTheResults https://t.co/KuCbOJswpZ +01/02/2018,Sports_celeb,@Cristiano,Quando jogava nas ruas da Madeira e sonhava chegar ao topo não pensei que tiraria uma foto assim. Dedico este momen… https://t.co/vIYRS2pZ5x +12/30/2017,Sports_celeb,@Cristiano,Celebration time…Join me and give a gift for life! Sign up to donate blood and plasma at https://t.co/4kjqXfhE25 https://t.co/yIWgzp5PZG +12/28/2017,Sports_celeb,@Cristiano,Late night chats by the pool #PestanaCR7Funchal https://t.co/sfFLYF011E +12/27/2017,Sports_celeb,@Cristiano,Gala CR7 2017!👌🏽🎉❤️ https://t.co/xnm4cYJYkX +12/27/2017,Sports_celeb,@Cristiano,Wherever. Whenever. Arrive in style. Get the full @cr7limitless look now on https://t.co/rIL6OxcBQk #CR7Denim… https://t.co/fGsG460dCJ +12/26/2017,Sports_celeb,@Cristiano,Estou PRESO a estes bebés lindos ahahahah ❤️❤️❤️ https://t.co/RogaRwDJra +12/24/2017,Sports_celeb,@Cristiano,"Feliz Natal,paz,amor Deus e saúde =FAMÍLIA❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/7PjMs4sdJu" +12/22/2017,Sports_celeb,@Cristiano,We are ready 👌 https://t.co/n8eNd125IM +12/20/2017,Sports_celeb,@Cristiano,I truly value the commitment to make a meaningful difference in people’s lives and this is what #Egyptian_Steel is… https://t.co/L7Awj16PWw +12/19/2017,Sports_celeb,@Cristiano,My new #CR7Fragrance one of my favourite presents to give my friends and family this Christmas! 🎁 https://t.co/2rAwJXQVCI +12/18/2017,Sports_celeb,@Cristiano,🏆 https://t.co/zapVkPkpVa +12/18/2017,Sports_celeb,@Cristiano,Dynamic and united…my new team of young blood and plasma donors are motivated! Like @BETHE1Donor​… #BETHE1Donor… https://t.co/UIth4ErR5X +12/17/2017,Sports_celeb,@Cristiano,🏆 https://t.co/crsE7HUXhK +12/17/2017,Sports_celeb,@Cristiano,Campeones❤️🥇 https://t.co/aPjiyE6NMI +12/16/2017,Sports_celeb,@Cristiano,Proud!!! Champions of the world ⚽️ https://t.co/HpRRty01r2 +12/15/2017,Sports_celeb,@Cristiano,Focused ⚽️ https://t.co/lRAjjkOQTy +12/14/2017,Sports_celeb,@Cristiano,"My Mercurial Quinto Triunfo is out now.👌 Find them at https://t.co/DVqPiekKju +Hurry, they're likely to go even fast… https://t.co/bHJal4yQ8d" +12/13/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/Vog9rm99C2 +12/13/2017,Sports_celeb,@Cristiano,😋 https://t.co/4FWHtcPrwh +12/12/2017,Sports_celeb,@Cristiano,Mercurial Quinto Triunfo. Coming soon. The perfect way to celebrate my fifth 🏆 . 👌 Sign up for a reminder at… https://t.co/TdJ1KAe0OA +12/10/2017,Sports_celeb,@Cristiano,⚽️👌 https://t.co/fTw1QriXnm +12/09/2017,Sports_celeb,@Cristiano,😉❤️ https://t.co/7WQ9lhxneL +12/08/2017,Sports_celeb,@Cristiano,❤️ https://t.co/TsSqSBXg2j +12/08/2017,Sports_celeb,@Cristiano,Be your own rival. 🏆 #CR7 #NikeFootball #PlayFree https://t.co/g5tv70viEP +12/07/2017,Sports_celeb,@Cristiano,"Another dream come true. Unbelievable feeling. Thanks to my family, friends, teammates, coaches and everyone that s… https://t.co/R7QvR8quhI" +12/07/2017,Sports_celeb,@Cristiano,Flying in style!!👌🏽🔛 https://t.co/QvPHhMmRRQ +12/07/2017,Sports_celeb,@Cristiano,"My AF1 CR7’s launch today on the Nike SNEAKRS app! #AF1#CR7 +Go to https://t.co/adIUxXBRvm https://t.co/4Enyjf4dw6" +12/04/2017,Sports_celeb,@Cristiano,Next up! My Air Force 1 CR7 launching on 7th December 🙌🏻 Download the Nike SNEAKRS App to find out more… https://t.co/iCHQ4v3BkK +12/01/2017,Sports_celeb,@Cristiano,"As a thank you, I am offering my fans a flash sale on all my ROC headphones, the perfect holiday gift :) Go to… https://t.co/rFayVjMQla" +11/30/2017,Sports_celeb,@Cristiano,#ThrowbackThursday to my launch event in Madrid! #CR7Fragrance 🙌🏻 https://t.co/qq0cKkSHjC +11/30/2017,Sports_celeb,@Cristiano,Nothing is coincidence 🙌🤗⚽️ https://t.co/VrFSKuC30R +11/28/2017,Sports_celeb,@Cristiano,❤️ https://t.co/9lbC3DzpEm +11/27/2017,Sports_celeb,@Cristiano,Get all your favorite CR7 Denim gear with our Cyber Monday special 👉🏼 https://t.co/yxYL0ZWATi @cr7limitless… https://t.co/UdjPNWHomo +11/26/2017,Sports_celeb,@Cristiano,"The ultimate #SportsBar in town +#PestanaCR7Lisbon #CR7Corner https://t.co/Vezs4LYO2Y" +11/25/2017,Sports_celeb,@Cristiano,The best spot in town with the best company!👌🏽😍 https://t.co/tRPgEQwVf3 +11/23/2017,Sports_celeb,@Cristiano,Get ready for the weekend 🙌CR7 Mens & Boys Collection available on https://t.co/rIL6OwV0rK @CR7limitless #BFCM… https://t.co/kV7H4nfpQW +11/22/2017,Sports_celeb,@Cristiano,"Music is part of my life. It's part of me. ROC is my headphone brand, go to https://t.co/sFd4IXi33N and see them no… https://t.co/Dz2sIa7cAn" +11/22/2017,Sports_celeb,@Cristiano,🙌 https://t.co/kroGIz44oK +11/22/2017,Sports_celeb,@Cristiano,Trabalho feito 👌 https://t.co/8sHMyw6nNc +11/21/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/EFxGK7rY7e +11/20/2017,Sports_celeb,@Cristiano,Os 3 mosqueteiros 👌👌👌 https://t.co/hajkSBkcuT +11/17/2017,Sports_celeb,@Cristiano,"If you missed out on the first drop of my Mercurial CR7 Melhor, you can get them again now in Europe here … https://t.co/JfyN9ao8iF" +11/15/2017,Sports_celeb,@Cristiano,Score goals with me wherever you go with the new FIFA Mobile season 📱🎮⚽ Download for free now!… https://t.co/AqerzrKgTN +11/15/2017,Sports_celeb,@Cristiano,Focado 👌 https://t.co/F2JmxphRm8 +11/12/2017,Sports_celeb,@Cristiano,A Alana Martina acaba de nascer! Tanto a Geo como a Alana estão muito bem! Estamos todos muito felizes! ❤️ https://t.co/nMT4rYc32U +11/12/2017,Sports_celeb,@Cristiano,"Living it up in the CR7 Suite. +#PestanaCR7Lisbon https://t.co/IWHlrHdx0L" +11/12/2017,Sports_celeb,@Cristiano,Genes 👌👌👌 https://t.co/ctVAuXhuzu +11/10/2017,Sports_celeb,@Cristiano,"Vamos preparar bem o Mundial e ajudar as vítimas dos incêndios. Bom jogo, malta! #tudoporportugal https://t.co/haGwRbMwh4" +11/10/2017,Sports_celeb,@Cristiano,Special guest today in training ground 👌👌👌❤️ https://t.co/M0mG9Cueu9 +11/09/2017,Sports_celeb,@Cristiano,#CR7Junior IS LIVE 👖 ⚽ Now available on 👉 https://t.co/rIL6OwV0rK @CR7limitless #PressPlay #CR7Denim https://t.co/MWGzbQXnUu +11/08/2017,Sports_celeb,@Cristiano,Like father like son 😜 We are excited to launch our #CR7Junior denim collection. Now live on 👉… https://t.co/HGlyqVOqKb +11/07/2017,Sports_celeb,@Cristiano,Work done ✈️👌👌👌 https://t.co/ezyjWr70Tf +11/06/2017,Sports_celeb,@Cristiano,"Building projects with green steel is a real innovation. @egyptian_steel +@AhmedAbuHashima https://t.co/3joVu2xNO0" +11/06/2017,Sports_celeb,@Cristiano,"💎👌⚽ +Chapter 5: available on https://t.co/3dYSJ5Yb4C +#mercurial #CR7 @nikefootball https://t.co/mrQYBzOQvB" +11/03/2017,Sports_celeb,@Cristiano,"Learn the secrets to my success at  +https://t.co/4uhloqwgnO  #ROCliveLifeLoud #headphones" +11/03/2017,Sports_celeb,@Cristiano,CLEAR Men: World’s #1 Men Shampoo ☝🏼 https://t.co/YdGkG2tS9f +11/02/2017,Sports_celeb,@Cristiano,✌️ https://t.co/2VgVvtirSb +10/30/2017,Sports_celeb,@Cristiano,"Loving my new CR7 woven shirt 👔Styles for everyday. https://t.co/rIL6OwV0rK 💪@CR7Limitless +#CR7Denim… https://t.co/uAYo3Lka4z" +10/30/2017,Sports_celeb,@Cristiano,Positive mind 👌✌️ https://t.co/UxAxTn5DBq +10/28/2017,Sports_celeb,@Cristiano,"I vote for my hometown, Madeira, as the world’s leading Island Destination 2017. Are you with me? +VOTE HERE:… https://t.co/z2Cjqz1HpO" +10/27/2017,Sports_celeb,@Cristiano,Camo style! 👍🏼 @CR7Underwear #CR7Underwear https://t.co/bkbElQM8X3 +10/27/2017,Sports_celeb,@Cristiano,Good times at my hotel in Lisbon! #PestanaCR7Lisbon https://t.co/ao2BsBKsaD +10/25/2017,Sports_celeb,@Cristiano,"Ensinando aos meus 2 filhos com talento, trabalho e dedicação e a única forma de chegar a ser o número 1❤️❤️🇵🇹 https://t.co/gZIKpydF2p" +10/25/2017,Sports_celeb,@Cristiano,Not bad 11 😉😉😉😉😂😂 https://t.co/Ww0rCnU3Cv +10/24/2017,Sports_celeb,@Cristiano,❤️ https://t.co/60uQL39qpX +10/24/2017,Sports_celeb,@Cristiano,❤️❤️❤️❤️❤️❤️❤️ https://t.co/OTsB8kG1u6 +10/23/2017,Sports_celeb,@Cristiano,"Amazing feeling to have won this award again. Want to dedicate to my family, my friends, my teammates and coaches f… https://t.co/5dOhWOoptL" +10/23/2017,Sports_celeb,@Cristiano,Here we go again!!👍🏽 https://t.co/R6FXROynbh +10/23/2017,Sports_celeb,@Cristiano,"My Air Max 97 CR7’s are available exclusively on the Nike SNEAKRS app today! #Airmax #CR7 +Go to… https://t.co/7XXwYNw60B" +10/21/2017,Sports_celeb,@Cristiano,👌 https://t.co/Ue5mENXs6i +10/19/2017,Sports_celeb,@Cristiano,👌 https://t.co/I3BocNEkMk +10/18/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/jYGc7ODgnI +06/30/2018,Sports_celeb,@serenawilliams,"2 days until #Wimbledon + +Just in case no one’s told you yet today, I want to remind you that you are greater than y… https://t.co/eN64JqX6FM" +06/29/2018,Sports_celeb,@serenawilliams,"3 days until #Wimbledon + +Mood for the weekend. +Mood for Wimbledon. +One giant leap for womankind. https://t.co/jBc1rm1YFh" +06/28/2018,Sports_celeb,@serenawilliams,"4 days until #Wimbledon + +Would you believe me if I told you the girl on the left always dreamed of becoming the wo… https://t.co/9fn7MDRy8N" +06/28/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Wimbledon ready 🎾 Introducing the limited edition ‘S’ London tee, exclusively available at https://t.co/e2LGLxv8Nh +Let’s ta…" +06/27/2018,Sports_celeb,@serenawilliams,🖐🏾 days until #Wimbledon https://t.co/C7RAAwGsrh +06/27/2018,Sports_celeb,@serenawilliams,Excited to be on the August cover of @InStyle…an amazing publication that captures all women so beautifully in all… https://t.co/bgZ4YZE80W +06/26/2018,Sports_celeb,@serenawilliams,"6 days until #Wimbledon + +15 years ago a boy from Switzerland and a girl from the US, both 21, shared the stage at W… https://t.co/ydkhfL2Ia5" +06/25/2018,Sports_celeb,@serenawilliams,"7 days until #Wimbledon + +It's hard to believe it's been 16 years since my first title in London. What I remember mo… https://t.co/MofToguV7f" +06/24/2018,Sports_celeb,@serenawilliams,Some more fun ways to wear @ShopSerena. I get so excited to see the looks you come up with so please keep taking pi… https://t.co/k85u545Yu2 +06/24/2018,Sports_celeb,@serenawilliams,LOVE seeing you guys in your @serena pieces!! Please keep sharing these pics and tagging us! #BeSeenBeHeard… https://t.co/VRzcis1Gcu +06/23/2018,Sports_celeb,@serenawilliams,RT @alexisohanian: That's the one. My babygirl needs to know I'll always be there for her; and her papa got betrayed by his jealous busines… +06/23/2018,Sports_celeb,@serenawilliams,@KenyaMoore I tried to keep myself insanely busy +06/23/2018,Sports_celeb,@serenawilliams,Watched Coco with @alexisohanian for the first time. I looked over in the middle of the film and he was sobbing lik… https://t.co/MDeiHFh4Zj +06/21/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: https://t.co/Cl6lkkBbmp +06/21/2018,Sports_celeb,@serenawilliams,"Yesterday in NYC, with my partners @PurplePurse, I was proud to help kick off a national street art campaign to mak… https://t.co/exdPBJHJSt" +06/18/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: @rstuhlmann looking amazing in our Varsity Zipper dress! Keep tagging and sharing how you’re wearing Serena. We hear and se… +06/17/2018,Sports_celeb,@serenawilliams,#SerenaShareSunday here are some of my fav pics from this week. Tag @ShopSerena to be featured next week!!!! https://t.co/9okcNtjXas +06/14/2018,Sports_celeb,@serenawilliams,I will be live on instagram @ShopSerena account it’s @Serena on Instagram... who’s joining? +06/14/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: .@serenawilliams is going LIVE tonight on Instagram at 8pm EST and she wants to hear how YOU are seen and heard. Drop your… +06/13/2018,Sports_celeb,@serenawilliams,"As Board Chairwoman, I'm excited to celebrate @oath's 1st anniversary by giving back to the community and supportin… https://t.co/xAMkxEOQLS" +06/12/2018,Sports_celeb,@serenawilliams,"At first, I was so uncomfortable with the look and feel of my scar. Then I discovered @neodyneembrace and now my sc… https://t.co/tK0rsxnPgN" +06/12/2018,Sports_celeb,@serenawilliams,Goodnight world.... yes it’s 8:39pm and I’m going to bed. Because when I wake I’ll have a beautiful smart strong su… https://t.co/JUg6F24505 +06/08/2018,Sports_celeb,@serenawilliams,"Excited to see the best of the best show what they’ve got! #MadeDefiant +Watch the whole @beatsbydre film here:… https://t.co/dl0ItPJ3JP" +06/08/2018,Sports_celeb,@serenawilliams,The @leroyalmonceau has been such a joy. They have the coolest mirrors and decor! Inspiring decor https://t.co/cnYk4QUrFa +06/03/2018,Sports_celeb,@serenawilliams,That @LeRoyalMonceau life https://t.co/sCUukE7fZa +06/02/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Saturday’s with the squad. Shop our Signature S Bralette and high waisted brief at https://t.co/oR9OUKEWG9 💋 +#BeSeenBeHear…" +06/02/2018,Sports_celeb,@serenawilliams,"Never basic 😏 Shop my Signature S Bralette and high waisted brief at https://t.co/4tHKDgNgX9 +#BeSeenBeHeard https://t.co/a3aE60bpZV" +06/01/2018,Sports_celeb,@serenawilliams,"When I needed the best support off the court for my best performance on the court, @neodyneembrace rose to the chal… https://t.co/rJrM2XhhkN" +06/01/2018,Sports_celeb,@serenawilliams,I love my partner @Venuseswilliams https://t.co/nICwQOae1l +06/01/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: Always stay reppin’. Shop the first of many S tees to come. #BeSeenBeHeard https://t.co/oR9OUKEWG9 https://t.co/teHo6EgyTH +05/30/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: The wait is over! @ShopSerena is officially here. + +Be the first to rep S. #BeSeenBeHeard👇🏻👇🏼👇🏽👇🏾👇🏿 + +https://t.co/oR9OUKEW…" +05/30/2018,Sports_celeb,@serenawilliams,#BeSeenBeHeard https://t.co/4tHKDgNgX9 https://t.co/XHb6gp5Nhg +05/30/2018,Sports_celeb,@serenawilliams,Never stop believing in yourself. You’re worth it. https://t.co/8lzFQeDcD2 +05/30/2018,Sports_celeb,@serenawilliams,"Today, I am excited to introduce @ShopSerena, my own online shop: https://t.co/4tHKDgNgX9 https://t.co/uoY0EvurBz" +05/30/2018,Sports_celeb,@serenawilliams,"23 Grand Slam titles later, I assembled my power team and we got to work. We designed and we planned. I wanted to b… https://t.co/SyicbS2Y6W" +05/30/2018,Sports_celeb,@serenawilliams,"Here I was, a spokeswoman for women, telling them to never give up and believe in themselves when no one else does.… https://t.co/1pqcuFsYYj" +05/30/2018,Sports_celeb,@serenawilliams,"One day, I was encouraging my best friend to invest in herself and pursue a dream of hers. A light bulb went off wh… https://t.co/EUlWccjiBm" +05/30/2018,Sports_celeb,@serenawilliams,"15 years of false starts and people telling me “no” was frustrating, but also made me more determined. If you know… https://t.co/0MxWZTtJyN" +05/30/2018,Sports_celeb,@serenawilliams,Every time I would go into a department store to present a collection it would always end up with - we love it but we are going to pass... +05/30/2018,Sports_celeb,@serenawilliams,I tried many times to align with people who could help me get things off the ground while I played tennis worked wi… https://t.co/elDH4tPuSt +05/30/2018,Sports_celeb,@serenawilliams,"That was 2001. I had a vision to create a fashion line unrelated to tennis, but soon realized the complexities of m… https://t.co/UaoWIEj2aq" +05/30/2018,Sports_celeb,@serenawilliams,"They say life is about timing. I learned this lesson at age 18, when I chose to play a light tennis schedule becaus… https://t.co/3x334u4XRb" +05/30/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Strong. Sexy. Sophisticated. + +Be the first to rep Serena tomorrow! 👆🏻👆🏼👆🏽👆🏾👆🏿#BeSeenBeHeard + +https://t.co/oR9OUKEWG9 https:…" +05/29/2018,Sports_celeb,@serenawilliams,"Catsuit anyone? For all the moms out there who had a tough recovery from pregnancy—here you go. If I can do it, so… https://t.co/wycharHRC0" +05/25/2018,Sports_celeb,@serenawilliams,"It’s National Heat Awareness Day, grab your @missionathlete MAX cooling towel and stay cool and safe all summer lon… https://t.co/SNW98d0CJ3" +05/23/2018,Sports_celeb,@serenawilliams,@HBO tonight #beingserena don’t miss this epic episode +05/23/2018,Sports_celeb,@serenawilliams,New shoe for Roland Garros Blazer Mid SW Went -to La Grande Arche in Paris with @nikecourt and surprised some reall… https://t.co/IE7QBE9nvw +05/21/2018,Sports_celeb,@serenawilliams,And...... just like that anti doping is here ....again... second time this week. proud to participate to keep the… https://t.co/ts5QfVlMp1 +05/20/2018,Sports_celeb,@serenawilliams,I just put Olympia to sleep.... and I am already looking at pictures of her missing her. #beingserena Wednesday’s on @HBO 10pm +05/20/2018,Sports_celeb,@serenawilliams,Little known fact: I often wear sneakers under my evening gown. These @maisonvalentino @pppiccioli gave to me last… https://t.co/wS7psHu9t7 +05/19/2018,Sports_celeb,@serenawilliams,Thank you Pierpaolo for making me look special on this special evening. @MaisonValentino https://t.co/w2m6lEMyST +05/19/2018,Sports_celeb,@serenawilliams,"RT @Essence: If an employer/school ever makes a comment about your twits, braids, or cornrows reply with, “if it’s good enough for a #Royal…" +05/19/2018,Sports_celeb,@serenawilliams,Ready for my friend’s wedding. #beingserena @alexisohanian https://t.co/PSIYvpXlaV +05/19/2018,Sports_celeb,@serenawilliams,IG- instagram +05/19/2018,Sports_celeb,@serenawilliams,Check out my IG stories today. I’m getting ready for my friends wedding https://t.co/Y3Xy1JdhM6 +05/19/2018,Sports_celeb,@serenawilliams,Follow my IG stories today to see me getting… https://t.co/ZKiAVJNftr +05/18/2018,Sports_celeb,@serenawilliams,Just sitting on this incredibly #rochebobois couch. I’m obsessed with them. I could have passed out for hrs but wor… https://t.co/zbKbTRirAm +05/16/2018,Sports_celeb,@serenawilliams,Tonight!!!! @hbo #beingserena 10pm +05/15/2018,Sports_celeb,@serenawilliams,@ForeverKhadijah @AqueelahR @LEGOLAND_CA Aww I’m sorry. Love you sis +05/15/2018,Sports_celeb,@serenawilliams,#beingserena @hbo Wednesday nights 10pm https://t.co/mz8KnVf5Fi +05/14/2018,Sports_celeb,@serenawilliams,My baby has a Mohawk. I love it. Watch #beingserena on @HBO this Wednesday at 10pm part 3. +05/11/2018,Sports_celeb,@serenawilliams,I just put her to bed.... she did not wrestle as hard. I kinda missed it. I miss her. #beingserena @hbo wednesday N… https://t.co/HKt8WumvNf +05/11/2018,Sports_celeb,@serenawilliams,I’m very excited to play in San Jose for the first time at the @MubadalaSVC this summer. Looking forward to seeing… https://t.co/K4StiTQGus +05/11/2018,Sports_celeb,@serenawilliams,#beingserena @hbo https://t.co/4QOYN7jQ2K +05/09/2018,Sports_celeb,@serenawilliams,Last night after bath time with Olympia I had to put on her PJ’s We wrestled for 20 mins. She was flipping like a f… https://t.co/poo7R0OdeU +05/09/2018,Sports_celeb,@serenawilliams,@BrooklynDecker What??? Lol +05/09/2018,Sports_celeb,@serenawilliams,It’s back on tonight! 10pm #beingserena who’s watching part two? https://t.co/UKG3HothlP +05/08/2018,Sports_celeb,@serenawilliams,Guess what everyone. #BeingSerena is back on @hbo tomorrow night. Part 2.. you do not want to miss this episode! +05/07/2018,Sports_celeb,@serenawilliams,Olympia ice skates better than @alexisohanian #beingserena +05/03/2018,Sports_celeb,@serenawilliams,Sometimes I serve on the moon. How did you like #beingserena on. Hbo last night? Are you ready to tune in next week… https://t.co/nplsMWXam7 +05/02/2018,Sports_celeb,@serenawilliams,Mama bear and baby cub #beingSerena @hbo https://t.co/lX88EZYRNp +05/02/2018,Sports_celeb,@serenawilliams,@alexisohanian Dats ma Baby!!!!!!!!!! +05/02/2018,Sports_celeb,@serenawilliams,I had so much fun thank you all for he great questions. Be sure to tune in tonight on @hbo #beingserena starts TONIGHT! 10pm +05/02/2018,Sports_celeb,@serenawilliams,I feel doubled in the air... do you?? #beingserena https://t.co/nRyCBKPdxa +05/02/2018,Sports_celeb,@serenawilliams,Yes I love Disney. I’m their biggest fan. Can’t wait to take Olympia there every weekend. It’s the reason I live in… https://t.co/HjMtTw8T5V +05/02/2018,Sports_celeb,@serenawilliams,.@meganKarmstrong #beingserena https://t.co/7NFf25Q971 +05/02/2018,Sports_celeb,@serenawilliams,She never quits. And I mean NEVER quits. I love it #beingserena https://t.co/uE2gYbmxWH +05/02/2018,Sports_celeb,@serenawilliams,Patience.... and how to say the word husband. Lol #beingserena https://t.co/3LZYYE6ufN +05/02/2018,Sports_celeb,@serenawilliams,The non meat stuff??? I can eat that!! #beingserena https://t.co/ABpueYFINz +05/02/2018,Sports_celeb,@serenawilliams,I just get into a zone... like I can’t describe it. It just come over my whole self. It’s like I become a diff pers… https://t.co/iV7BiOVUGf +05/02/2018,Sports_celeb,@serenawilliams,Honestly prob venus. She’s better more natural than me. #beingserena https://t.co/y9kwgj1zLf +05/02/2018,Sports_celeb,@serenawilliams,.@bowden_saint #beingserena https://t.co/6GAdqNdtUR +05/02/2018,Sports_celeb,@serenawilliams,I can’t say because if I have more kids they may have those names #beingserena https://t.co/v44hrRhPKR +05/02/2018,Sports_celeb,@serenawilliams,Accepting the bad with the good and not deleting the bad!! It’s really real and open #beingserena https://t.co/4oGEmBfYws +05/02/2018,Sports_celeb,@serenawilliams,I need one. I’ve been asking all my friends?? Help please!!!! #beingserena https://t.co/mYmCvhPazv +05/02/2018,Sports_celeb,@serenawilliams,@CaroWozniacki of course!! #beingserena https://t.co/wxFm5hy2Wf +05/02/2018,Sports_celeb,@serenawilliams,Again anything @iamcardib #beingserena https://t.co/wGfqzwZdcK +05/02/2018,Sports_celeb,@serenawilliams,It’s funny you ask I’m working on that myself. Anyone out there have tips? @milosraonic #beingserena https://t.co/nmX7rtZ3lO +05/02/2018,Sports_celeb,@serenawilliams,Viewers can expect me to meet @OlympiaOhanian for the first time!!! How exciting #beingserena https://t.co/WiQxT6UOze +05/02/2018,Sports_celeb,@serenawilliams,Anything from CardiB #beingserena https://t.co/BOX8VprGQW +05/02/2018,Sports_celeb,@serenawilliams,Really just getting to see the final product. And seeing the project come to life. That was and is rewarding.… https://t.co/SbCmMDPi9B +05/02/2018,Sports_celeb,@serenawilliams,I don’t wanna say..... #beingserena https://t.co/o5pJ8e1RT3 +05/02/2018,Sports_celeb,@serenawilliams,It keeps changing. Now I would say a biz woman. Ceo/founder of course #beingserena https://t.co/18OZBSwQNh +05/02/2018,Sports_celeb,@serenawilliams,The physical. What u put ur body through for 9months of pregnancy and you have2 suddenly come back it’s a lot of ph… https://t.co/GO6W01wbqA +05/02/2018,Sports_celeb,@serenawilliams,Hummmmm lol let’s just say a lot of hard court tournaments leading up to the grand slam finale #beingserena https://t.co/wW0P6UD6jH +05/02/2018,Sports_celeb,@serenawilliams,I was afraid. I did not.... hey wait watch the show lol #beingserena https://t.co/OtJ2Klvgg6 +05/02/2018,Sports_celeb,@serenawilliams,Love you thanks!!! #beingserena https://t.co/MPOIVtBwks +05/02/2018,Sports_celeb,@serenawilliams,Honestly about a week later.... but I did not accept it or believe it until we got married lol. @alexisohanian https://t.co/gx5BMrieKE +05/02/2018,Sports_celeb,@serenawilliams,Run my fashion line and VC #beingserena https://t.co/1CFcacg1is +05/02/2018,Sports_celeb,@serenawilliams,I do! But I need a good show? Help recommend one to me please?? #beingserena https://t.co/4hwvxRSV6Y +05/02/2018,Sports_celeb,@serenawilliams,If Leo would like that!! Haha I’m not sure if Olympia will choose tennis but we will see!!! @vika7 #beingserena https://t.co/IDWVfF95g5 +05/02/2018,Sports_celeb,@serenawilliams,Olympia my parents my sisters #beingserena https://t.co/GntZ9oMnlI +05/02/2018,Sports_celeb,@serenawilliams,Formula one and ice skating ⛸ #beingserena https://t.co/5oCKm4Tqy1 +05/02/2018,Sports_celeb,@serenawilliams,Starting my fashion brand launching soon. AND launching my VC firm.. Interested more to come on both in the future… https://t.co/CejbtKtx6z +05/02/2018,Sports_celeb,@serenawilliams,Ugh you are tough. I would say 23 orrrrr I dunno 22? I can’t really remember the rest 🙈🙈🙈 #beingserena https://t.co/aILzecn8Gw +05/02/2018,Sports_celeb,@serenawilliams,When my coach. @PatrickMouratoglou asked me why I only wanted 18 and told me to think and dream bigger. Thanks Patr… https://t.co/y2B629Ypln +05/02/2018,Sports_celeb,@serenawilliams,Well I’m thinking popcorn (it’s my fav) and watermelon slices. 🤷🏾‍♀️ #beingserena https://t.co/M3PFqJzIhu +05/02/2018,Sports_celeb,@serenawilliams,There is more much more that can be done should be done and eventually will be done. #beingserena https://t.co/f4u7oplLX4 +05/02/2018,Sports_celeb,@serenawilliams,Self doubt is fear. Fear breeds failure... throw that self doubt in the garbage. ignore and disassociate with negat… https://t.co/egbnhXioZm +05/02/2018,Sports_celeb,@serenawilliams,Hummmmmmm I dunno there is one on the street my dad lives on a truck I love that taco truck maybe there.… https://t.co/VQenFxupIX +05/02/2018,Sports_celeb,@serenawilliams,Just a ton of hard work really. It has to be your life. #beingserena https://t.co/HeQV0C8ufX +05/02/2018,Sports_celeb,@serenawilliams,I would transport myself. Across country. I hate flying. It’s so long and takes a lot of time. So this seems a lot… https://t.co/C6q6EymZK6 +05/02/2018,Sports_celeb,@serenawilliams,It’s a small world but once you can get in there are friends and there are plenty of loving caring helping advocate… https://t.co/d2BaiyP3e8 +05/02/2018,Sports_celeb,@serenawilliams,What a pleasure to tweet to you. An honor really but my fav depends I like slow love songs or 80’s rock songs!!… https://t.co/UeIGzIExJU +05/02/2018,Sports_celeb,@serenawilliams,I can’t choose so I have to say all of them. Really all of them are super special #beingserena https://t.co/AGimv7pZ0q +05/02/2018,Sports_celeb,@serenawilliams,.@SWBlade #beingserena https://t.co/NwTbCjYK5M +05/02/2018,Sports_celeb,@serenawilliams,Become the avatar of course🤺 #beingserena https://t.co/tcGrOUj4Hc +05/02/2018,Sports_celeb,@serenawilliams,If I can be any marvel character I would be the Haulk I think you couldn’t be Black widow and @jsmoll is clearly Th… https://t.co/Bak69YIAG3 +05/02/2018,Sports_celeb,@serenawilliams,Medicare Mackie @MackieShilstone is the best we hope to hit the studio as soon as I get back from Europe LOL… https://t.co/mWkpQFgPOt +05/02/2018,Sports_celeb,@serenawilliams,As soon as I can find my superpowers #beingserena https://t.co/vw3zCPzy1y +05/02/2018,Sports_celeb,@serenawilliams,.@Waitin4theBeast https://t.co/nsSltb1rVA +05/02/2018,Sports_celeb,@serenawilliams,I don’t have one. I need one for our one year anniversary any suggestions?? https://t.co/KtKrzPW9nc +05/02/2018,Sports_celeb,@serenawilliams,Because you are always stealing my orthotics and socks and ur always late 🤷🏾‍♀️ #beingserena https://t.co/n9MviYTyqO +05/02/2018,Sports_celeb,@serenawilliams,"I wish I had her return, she has an unbelievable return. And Chip is much better than Alexis. #beingserena https://t.co/ZaP4SVOB9R" +05/02/2018,Sports_celeb,@serenawilliams,"I had never thought about it, but maybe I’ll write one with Olympia #beingserena https://t.co/ePaN5OH3jN" +05/02/2018,Sports_celeb,@serenawilliams,Humility. To always have a humble heart. #beingserena https://t.co/0AEzzKKtzJ +05/02/2018,Sports_celeb,@serenawilliams,"Chips. Any type of chip - I’m a chip connoisseur. One flavour at a time, but boy... #beingserena https://t.co/ddHWuD7foH" +05/02/2018,Sports_celeb,@serenawilliams,Ace. Because there’s just something so powerful about it. All my aces at the Olympics - particularly the gold medal… https://t.co/sX53bsR1kn +05/02/2018,Sports_celeb,@serenawilliams,"All the stuff I do off the court with my philanthropy, trying to inspire, help and motivate people. Rather that tha… https://t.co/pRilmcdpxq" +05/02/2018,Sports_celeb,@serenawilliams,Ice. It would be really fast! And with really cute sequined ice skater outfits. #beingserena https://t.co/KhyRleDUgN +05/02/2018,Sports_celeb,@serenawilliams,Myself. I’m motivated and inspired by my personal goals and that’s the only reason I’m still continuing.… https://t.co/RDOpjlkLNP +05/02/2018,Sports_celeb,@serenawilliams,"Every day is my favorite moment, just breastfeeding was by far one of my favorite moments. Just every day.… https://t.co/wNoZoX7pNS" +05/02/2018,Sports_celeb,@serenawilliams,"I’d play tennis, because everything in my life is here because of it, I don’t know where I’d be without it and I li… https://t.co/6yDyIVnYdo" +05/02/2018,Sports_celeb,@serenawilliams,"I don’t think he’s jealous, he’s more in ignore mode. She loves him, all she wants to do is play but he doesn’t wan… https://t.co/ArND8VnrNG" +05/02/2018,Sports_celeb,@serenawilliams,Moana because I watched it when I was pregnant and so she watched it with me. And The Little Mermaid ride!… https://t.co/1rRbBmFv00 +05/02/2018,Sports_celeb,@serenawilliams,Hey everyone ask me anything in celebration of my premiere epsoide of being Serena on @hbo tonight! Add #beingserena hashtag for me2reply +05/02/2018,Sports_celeb,@serenawilliams,Me: you really like my leopard print shoes? Him: yes check out moments like… https://t.co/kXrVjR6Ij2 +05/02/2018,Sports_celeb,@serenawilliams,"My Q&A starts at 12PM PST/3PM EST, last call for questions! #BeingSerena" +05/01/2018,Sports_celeb,@serenawilliams,One more day until the premiere of my new show on @HBO Being Serena. Today I… https://t.co/7DKHWeuGqv +05/01/2018,Sports_celeb,@serenawilliams,"I'm going to be doing a Twitter Q&A tomorrow in honor of the premiere of my HBO series, Being Serena. Send me your… https://t.co/iINbdEq3i5" +04/30/2018,Sports_celeb,@serenawilliams,"Watch me on @TheView talk about @HBO Being Serena, how @neodyneembrace helped me with my come back and more. I had… https://t.co/XzHkvsap81" +04/30/2018,Sports_celeb,@serenawilliams,@bonappetit Thank you!!! +04/30/2018,Sports_celeb,@serenawilliams,I just bathed her and put her I bed. Now I feel lonely and like crying cause I miss her so much. When does that go… https://t.co/IfsoNURM0N +04/30/2018,Sports_celeb,@serenawilliams,Hey everyone. Can someone out there teach me how to Mack cacio and Pepe pasta? Thanks in advance!!!! Post a link pleaseeeee +04/30/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/ZDnA9sCFeg +04/29/2018,Sports_celeb,@serenawilliams,I can’t sleep when she cries or is upset +04/29/2018,Sports_celeb,@serenawilliams,Singing @SmashingPumpkin bullet with butterfly wings on Selexis day with @alexisohanian I’m just… https://t.co/YqB9baOtHJ +04/29/2018,Sports_celeb,@serenawilliams,@kmcme17 Wait what?? +04/29/2018,Sports_celeb,@serenawilliams,Changing @OlympiaOhanian diaper has gotten to be so challaning I need a Dramamine afterwards! She’s a mover!!! +04/28/2018,Sports_celeb,@serenawilliams,That side eye to Jill https://t.co/VRSXubEEMM +04/28/2018,Sports_celeb,@serenawilliams,Cheers https://t.co/plfrV8yqAq +04/27/2018,Sports_celeb,@serenawilliams,I’m not a fan of decorative pillows. They look pretty but if you are exhausted (me every night) they are a pain to… https://t.co/PZdGTyakwZ +04/27/2018,Sports_celeb,@serenawilliams,Once a year @alexisohanian and I have what we call Selexis day. It can fall on any day out of… https://t.co/0UTmnKVKlS +04/26/2018,Sports_celeb,@serenawilliams,With the handsome @alexisohanian https://t.co/Qu3yLipeSQ +04/26/2018,Sports_celeb,@serenawilliams,Was great chatting with you Robin! @robinroberts @GMA https://t.co/LGL3NHBp41 +04/26/2018,Sports_celeb,@serenawilliams,My ladies. My loves. @gigihadid bellahadid Thanks for the support. Love you two dearly. And that… https://t.co/jc7YorkAa4 +04/26/2018,Sports_celeb,@serenawilliams,Being Serena Premire last night @hbo https://t.co/tmTgGqqd3M +04/26/2018,Sports_celeb,@serenawilliams,@RenasArmy @alexisohanian Gosh wow I still don’t remember it. Crazy +04/25/2018,Sports_celeb,@serenawilliams,Casually jumped into a ball pit. #beingSerena. @Hbo may 2 https://t.co/JOAer5fkl9 +04/25/2018,Sports_celeb,@serenawilliams,I’ve been so good... but does anyone know any good beignet places in nyc? +04/21/2018,Sports_celeb,@serenawilliams,Filling out paper work for @olympiaohanian Mom is a Jock dads a Nerd #beingserena coming to @HBO… https://t.co/0M69trtt4N +04/21/2018,Sports_celeb,@serenawilliams,@alexisohanian @vr_drifter I hope you are having th best day ever #selexis day +04/19/2018,Sports_celeb,@serenawilliams,If I were proactive I would get up and start packing. Instead I’m gonna turn on the golden girls. #beingserena @hbo #may5 +04/18/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/PtRlfCrPcx +04/16/2018,Sports_celeb,@serenawilliams,Night night +04/15/2018,Sports_celeb,@serenawilliams,@geniebouchard @bri_sull Right???!!!!! +04/15/2018,Sports_celeb,@serenawilliams,Sooooo I need a dollar lol I had to ask my friend @bri_sull for a dollar to pay for my Valet parking. #whoCarriesCash ? I don’t!! +04/13/2018,Sports_celeb,@serenawilliams,I’m not perfect. But I’m perfectly Serena. #beingSerena @hbo https://t.co/L6c9Wshjk9 +04/13/2018,Sports_celeb,@serenawilliams,I need some clones. One to play tennis. One to sit on company boards. One to design my new fashion line. One to des… https://t.co/7qBWsKgorA +04/12/2018,Sports_celeb,@serenawilliams,Sitting here waiting on @OlympiaOhanian to wake up +04/12/2018,Sports_celeb,@serenawilliams,@alexisohanian @TOMFORD @ElisabethGarvin Maybe a reg tie? U always do bow tie +04/11/2018,Sports_celeb,@serenawilliams,Excited to share the trailer for my upcoming documentary series #BeingSerena – starting May 2 on @HBO. Check it out! https://t.co/ibGW5bIEeB +04/10/2018,Sports_celeb,@serenawilliams,Great to see @starbucks and their commitment to pay equity. #EqualPay https://t.co/yuOfvckcAH +04/10/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/HKxdXz3dun +04/09/2018,Sports_celeb,@serenawilliams,Soooooo every time I have to go to the bathroom at night I think a snake is going to bite me. So I always leave the lights on. #beingserena +04/06/2018,Sports_celeb,@serenawilliams,Mother may I? https://t.co/2OJaCi3B03 +04/06/2018,Sports_celeb,@serenawilliams,I never understood why on chopped there is only one ice cream maker. #beingSerena +04/05/2018,Sports_celeb,@serenawilliams,"My story. My words. My @HBO documentary series, #BeingSerena, starting May 2. Find out more: https://t.co/kmiVBe45ev https://t.co/0INKTYzJiu" +04/05/2018,Sports_celeb,@serenawilliams,She really does need pockets. Who agrees with me she can keep a snack in them! https://t.co/3KwLlziZTT +04/05/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/4jPKf6g0Xs +04/05/2018,Sports_celeb,@serenawilliams,"RT @StevieWonder: On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for his dre…" +04/05/2018,Sports_celeb,@serenawilliams,50 years ago on April 4th Dr. King's life was cut short but his dream still lives. My dream is equal opportunities… https://t.co/I193Vou5PZ +04/03/2018,Sports_celeb,@serenawilliams,SWIPE RIGHT: Superhero by day family man at night. @alexisohanian @olympiaohanian https://t.co/GWTwHeEoTj +04/01/2018,Sports_celeb,@serenawilliams,Her first memorial last night @venuseswilliams https://t.co/WdUN6qx62G +03/28/2018,Sports_celeb,@serenawilliams,You inspire me to #EmbraceAmbition @Venuseswilliams . Join the @ToryBurchFdn movement & celebrate the women who hav… https://t.co/OLlfPQyj0G +03/26/2018,Sports_celeb,@serenawilliams,My @hbo documentary called Being Serena premieres May 2. I can't wait to share what I have been… https://t.co/FFB8PBmhKR +03/26/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/oaOdzlvNUC +03/25/2018,Sports_celeb,@serenawilliams,Our sons and daughters shouldn’t fear for their lives while at school. I’m proud of all the young people who are pe… https://t.co/FwQxi872AA +03/24/2018,Sports_celeb,@serenawilliams,@AudemarsPiguet Stunning +03/24/2018,Sports_celeb,@serenawilliams,"RT @AudemarsPiguet: The winter landscapes of the Vallée de Joux. Forever an inspiration for our watchmakers. #RoyalOakConcept +https://t.co/…" +03/24/2018,Sports_celeb,@serenawilliams,Is it normal to have a super low everything your baby goes to sleep? I feel like crying. I miss her and I can't wai… https://t.co/bTg3Rd3DMV +03/24/2018,Sports_celeb,@serenawilliams,Olympia hates naps. I'm trying to be a strong parent but I keep cracking +03/23/2018,Sports_celeb,@serenawilliams,Why is it that pimples on the eyebrows hurt the most? 🤔 +03/22/2018,Sports_celeb,@serenawilliams,4 months ago I could not walk to my mailbox... but I will keep going forward and I'll get there.… https://t.co/nH9Y02AOnO +03/21/2018,Sports_celeb,@serenawilliams,"As my next chapter begins, I’m ready to see how far I can go. @LincolnMotorCo #ad https://t.co/2UFD9TkaMy" +03/20/2018,Sports_celeb,@serenawilliams,@AudemarsPiguet Love this! +03/20/2018,Sports_celeb,@serenawilliams,@dinethuw_811 Got it thanks!!! It's been wracking my brain for so long +03/20/2018,Sports_celeb,@serenawilliams,@scotty_13_ @dinethuw_811 Ohhhhhh ok got it +03/20/2018,Sports_celeb,@serenawilliams,@visonsofgideonn Ok this one makes the most sense. Thanks! So the animals already knew how to bend?? Interesting 🤔🤔 +03/20/2018,Sports_celeb,@serenawilliams,@scotty_13_ BUT- remember a lot of the people left the lion turtles with bending powers. They decided to live off t… https://t.co/eSMDW724Vy +05/29/2018,Sports_celeb,@YaoMing,Congratulations to the Rockets on an excellent season. This is a great team with a bright future. Houston should be proud. 🚀 +03/31/2018,Sports_celeb,@YaoMing,RT @WildAid: 70 species of #sharks are at risk of extinction. We work with @YaoMing & other ambassadors to reduce demand for shark fin soup… +03/31/2018,Sports_celeb,@YaoMing,@YaoFamilyWines Happy Easter everyone! +03/31/2018,Sports_celeb,@YaoMing,Congratulations to my friend @SteveNash and the rest of the 2018 HOF class! +01/06/2018,Sports_celeb,@YaoMing,https://t.co/nt3gRm9edj +12/07/2017,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: JUST RELEASED! 2016 Yao Ming Napa Valley Brut Sparkling Wine. Limited edition, only available at our tasting room and o…" +11/02/2017,Sports_celeb,@YaoMing,Houston. 👊🏼 +10/22/2017,Sports_celeb,@YaoMing,Houston. 👊🏼 +10/13/2017,Sports_celeb,@YaoMing,Sending condolences to the victims of the Napa fires & gratitude to the firefighters and everyone working to save the beautiful Napa Valley. +08/30/2017,Sports_celeb,@YaoMing,My thoughts are with the people of Houston today. Wishing everyone wellness and safety. Stay safe and stay strong Houston. +06/21/2017,Sports_celeb,@YaoMing,"RT @PrincessCruises: We're honored to announce that basketball legend @yaoming and his wife, Ye Li, will officially name #MajesticPrincess…" +05/18/2017,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: It's #WineWednesday and our #Spring Newsletter is on our #blog! Read about the latest, including our new partnership wi…" +02/03/2017,Sports_celeb,@YaoMing,RT @HoustonRockets: .@YaoMing's first 3-pointer! We are retiring #11 to the rafters tonight at halftime. #ThankYouYao https://t.co/hTjSdcNW… +02/03/2017,Sports_celeb,@YaoMing,Thank you @HoustonRockets fans for everything! Honored to have my #11 jersey retired today. A Rocket for life.… https://t.co/WH12DPlpy5 +02/02/2017,Sports_celeb,@YaoMing,"No, Coach Van Gundy, the honor was all mine. https://t.co/V1X56cK3hI" +02/02/2017,Sports_celeb,@YaoMing,"RT @PlayersTribune: As the @HoustonRockets retire @YaoMing's jersey, Jeff Van Gundy remembers his former center's greatness: https://t.co/Z…" +11/13/2016,Sports_celeb,@YaoMing,"Did you know that illegal wildlife trade trails only gun, drug and human trafficking? When the buying stops the killing can to. @WildAid" +10/20/2016,Sports_celeb,@YaoMing,Thanks to Forbes For the kind words! https://t.co/lUFsLha9Of +09/29/2016,Sports_celeb,@YaoMing,@BearGrylls @WildAid @YaoFamilyWines I will be ready! +09/29/2016,Sports_celeb,@YaoMing,Always good to be in Napa Valley during harvest. @YaoFamilyWines https://t.co/HEDmErNr7y +09/12/2016,Sports_celeb,@YaoMing,Thank you for my birthday wishes. I'm trying to stay young so I am now on Instagram. https://t.co/Vd1bYYwY0M +09/11/2016,Sports_celeb,@YaoMing,The best moments this week were with old friends like @officialmutombo @BillWalton @HoustonRockets CD coach Rudy & coach Van Gundy. #blessed +09/11/2016,Sports_celeb,@YaoMing,It was great to see u again @alleniverson @SHAQ & @SherylSwoopes . I am honored to be part of the class of 2016 with such greatness. +09/10/2016,Sports_celeb,@YaoMing,RT @JLin7: Congrats to @YaoMing on the Hall of Fame!! https://t.co/LOCfyckNHs +09/10/2016,Sports_celeb,@YaoMing,Thank you Hall of Fame for the private tour today. It was incredible to see such history. https://t.co/arGN8tyEJh +09/10/2016,Sports_celeb,@YaoMing,RT @PlayersTribune: READ: The full transcript of @YaoMing’s 2016 Hall of Fame speech. https://t.co/jZubWCEL5r +09/09/2016,Sports_celeb,@YaoMing,Thank you to my Rocket brother @SteveFranchise3 in the great @PlayersTribune story on a very special night. https://t.co/ly6ByxlLf4 +08/24/2016,Sports_celeb,@YaoMing,"Join me at the Hall of Fame ceremony next month in Springfield, MA. And help raise money for two wonderful causes. https://t.co/pcdjQ8bX3l" +08/21/2016,Sports_celeb,@YaoMing,RT @PlayersTribune: One picture taught former @HoustonRockets center @YaoMing the meaning of the @Olympics. https://t.co/VfN7lGawiv https:/… +08/21/2016,Sports_celeb,@YaoMing,"As #Rio2016 comes to a close, I'm thinking of my own Olympic memories. One picture comes to mind. https://t.co/kolKpO93Py @PlayersTribune" +08/12/2016,Sports_celeb,@YaoMing,"On #WorldElephantDay remember: When the buying stops, the killing can too. #JoinTheHerd Photo: Chrystina Geagan https://t.co/srQeAwzqA5" +08/10/2016,Sports_celeb,@YaoMing,Want to join me at the Hall of Fame ceremony? You can! https://t.co/2jPtkVYu7X +07/19/2016,Sports_celeb,@YaoMing,I learned many things during my rookie season driving around Houston w Steve Francis. @PlayersTribune https://t.co/LK8LLnmO2T. +07/12/2016,Sports_celeb,@YaoMing,Congratulations to one of the all time greats Tim Duncan! +06/22/2016,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: In case you missed it, here's the excellent CCTV piece on the Yao and the new tasting room:... https://t.co/dj9zErIX9x" +06/08/2016,Sports_celeb,@YaoMing,RT @WildAid: We’re getting ready for #WorldOceansDay. Check back tomorrow for an announcement from #WildAid (Photo: Laura Wais) https://t.c… +06/06/2016,Sports_celeb,@YaoMing,RT @PaulGAllen: Announced U.S. ivory ban means that elephants have a better chance to avoid extinction: https://t.co/5lhSx2MpJd https://t.c… +06/06/2016,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Thanks to @Terroiristblog for the excellent recommendation of our 2015 Napa Crest #sauvignonblanc! https://t.co/biywrO… +06/02/2016,Sports_celeb,@YaoMing,Thank you. There is much more to do. https://t.co/QvMBky6gie +05/24/2016,Sports_celeb,@YaoMing,"How the Elephant Became the Newest Celebrity Cause, via @nytimes https://t.co/yEVrvPCh8P" +12/25/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Merry Christmas! https://t.co/CYq2C090IZ +11/11/2015,Sports_celeb,@YaoMing,Funny guy! https://t.co/p3UYC6gvJ1 +09/25/2015,Sports_celeb,@YaoMing,Happy to share this great news. WildAid | US and China Agree to Halt Ivory Trade http://t.co/cjpMwEA4KD +08/21/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Cheers to our founder! Yao Ming helps China wins bid to host 2019 FIBA World Cup | ProBasketballTalk http://t.co/EfMHK9… +08/05/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: 2012 scores are in: @JamesSuckling 95/93/88! @RobertMParkerJr 96/90/87! A big NI HAO from YFW! Request allocation at h… +08/04/2015,Sports_celeb,@YaoMing,http://t.co/GFm1rjLaGF +04/09/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: High Stakes: Yao Ming’s Wine Has a Good Shot at Its Crowdfunding Goal http://t.co/za1SV6fNiO via @LA_mag +03/14/2015,Sports_celeb,@YaoMing,RT @billsanders: NBA legend Yao Ming has pulled $2m worth of crowdfunders in to share his love of red wine | Business Insider http://t.co/g… +12/24/2014,Sports_celeb,@YaoMing,"Wishing you and your loved ones a very Merry Christmas, happy holidays and happy new year." +11/17/2014,Sports_celeb,@YaoMing,Heading back to China after a week supporting #IvoryFree. Please watch our @WildAid film on Tuesday night. Thank you for living #IvoryFree +11/17/2014,Sports_celeb,@YaoMing,RT @deandean: Be ivory free with @YaoMing. Great job @WildAid - Let's all help save Africa's Giants. http://t.co/ievMbkzh3z +11/16/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Look who loves our Napa cab! @yuanyuanTan9 prima ballerina! http://t.co/wnF1qKnoio +11/16/2014,Sports_celeb,@YaoMing,RT @boderek: Looking forward to meeting my fellow @WildAid member and my hero in sports and conservation @YaoMing tonight. http://t.co/FvJ8… +11/14/2014,Sports_celeb,@YaoMing,About to tape @MorningEdition on the last stop of the #IvoryFree New York media your. Join me http://t.co/MP0fyhsuIM http://t.co/K1aL0UlP6U +11/14/2014,Sports_celeb,@YaoMing,About to go on @Morning_Joe to discuss #IvoryFree +11/13/2014,Sports_celeb,@YaoMing,About to go on @cnni with @WildAid Peter Knights to talk about living@#IvoryFree http://t.co/MP0fyhsuIM +11/13/2014,Sports_celeb,@YaoMing,I travel a lot. But these guys are @Globies http://t.co/TZxmLnRfe8 +11/13/2014,Sports_celeb,@YaoMing,And sign the petition at http://t.co/1kPdzXrfkr. Thank you for joining us. +11/13/2014,Sports_celeb,@YaoMing,"Over 30,000 elephants are killed every year for ivory. I'm #ivoryfree. Please RT if you are with me." +11/12/2014,Sports_celeb,@YaoMing,RT @SatOnMeeting: @Schultz_Report @HuffPostLive What inspired @YaoMing 2get involved in protecting elephants & rhinos from poachers? #Savin… +11/12/2014,Sports_celeb,@YaoMing,Getting ready to go on @HuffPostLive. Bring me your best questions. A-game only! +11/12/2014,Sports_celeb,@YaoMing,Talking hoops and elephants on @SInowLIVE today at 1 PM Eastern. #ivoryfree +11/12/2014,Sports_celeb,@YaoMing,Happy to be joining Fox and Friends to begin promoting #ivoryfree http://t.co/duiboZFoQa +11/10/2014,Sports_celeb,@YaoMing,1 elephant is killed every 15 minutes. Please watch my @AnimalPlanet special on 11/18 & join me in the pledge to be #ivoryfree +11/07/2014,Sports_celeb,@YaoMing,RT @AnimalPlanet: RT @gm_tortie: I'm going #IvoryFree. Will you? Take the pledge with @WildAid and @AnimalPlanet. http://t.co/F4tiC4FTZ4 +10/10/2014,Sports_celeb,@YaoMing,RT @rogerfederer: Hard not to look up to the great @YaoMing. Amazing athlete and national hero http://t.co/iWvi4GrY0Z +10/03/2014,Sports_celeb,@YaoMing,"#Retacked from @imcrazyaha via @HashtackApp + #instasize #yaoming 😌#爸爸去哪儿 http://t.co/45VHc0MkYY http://t.co/fSjrxAXgdq" +09/13/2014,Sports_celeb,@YaoMing,Thanks everyone for all of the nice birthday wishes. +08/26/2014,Sports_celeb,@YaoMing,RT @youtholympics: Social media chat with @yaoming at the Youth Olympic Games http://t.co/rkJTcbO3Ve #nanjing2014 #yogambassador +08/24/2014,Sports_celeb,@YaoMing,Thinking of our good friends in Napa Valley today. +08/20/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: #Chicago + great #steaks + our #NapaValley #CabernetSaivignon = @gibsonssteak! #Thanks for putting us on the list! +08/14/2014,Sports_celeb,@YaoMing,RT @nytimes: Sinosphere Blog: A Plea to Shun the Ivory Trade From Yao Ming http://t.co/as7y44wbLb +07/09/2014,Sports_celeb,@YaoMing,RT @CCTV_America: @JohnKerry talks with retired Chinese #NBA star @YaoMing about efforts against international #wildlife #trafficking http:… +06/19/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Proud to be a part of the @foodandwine Classic in Aspen! How to drink wine like a millionaire http://t.co/qDPTIssyUY v… +06/07/2014,Sports_celeb,@YaoMing,“@JackiePipkins: Why so tall @YaoMing http://t.co/pTenq8oQoR” Why so surprised? +06/07/2014,Sports_celeb,@YaoMing,@JackiePipkins +06/07/2014,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: A beautiful evening at La Casa Havana, Singapore. Tom Hinde w/ Jimmy Ng and a few bottles of our finest. #singapore htt…" +05/15/2014,Sports_celeb,@YaoMing,RT @WildAid: The fiery view from inside the rotary kiln...962 degrees celsius. 35 drums at 35 kg each go in today. #HKIvoryBurn http://t.co… +04/20/2014,Sports_celeb,@YaoMing,Let's go @HoustonRockets! +04/12/2014,Sports_celeb,@YaoMing,"RT @sportsuncorked: @YaoMing @YaoFamilyWines talks how he can change the wine world He already has in the @NBA http://t.co/Ndg2bdMr0e +#wine…" +03/24/2014,Sports_celeb,@YaoMing,"RT @jewelsdolphins: @YaoMing @WildAid Thank you Yao Ming for making meaningful change in the world! +http://t.co/HKX0FZ173p" +03/24/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Wine Enthusiast Magazine Awards 2010 Yao Ming® Family Reserve Cabernet Sauvignon Highest Rating In April 2014 http://t.… +03/01/2014,Sports_celeb,@YaoMing,I enjoyed meeting the great wine critic @RobertMParkerJr in Shanghai. Thanks for your kind words for @YaoFamilyWines! http://t.co/fpQ5oMQZFn +11/25/2013,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: .@YaoMing stays busy in retirement with college, winemaking and owning the Shanghai Sharks http://t.co/95PqyZsWFj" +11/18/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Thanks @BinnysBev for having us. Proud to be in your shelves. http://t.co/ViZScKAQFh +11/18/2013,Sports_celeb,@YaoMing,Here's a great piece on our visit to Spec's Wines Spirits & Fine Foods. Thanks to Spec's for carrying @YaoFamilyWines http://t.co/VWWtIFBvik +11/04/2013,Sports_celeb,@YaoMing,With @kobebryant http://t.co/AwhF7kXvi1 +09/26/2013,Sports_celeb,@YaoMing,"When people in China know what's happening with the illegal ivory trade, they will say no to these products @WildAid http://t.co/d2KWfVb1Z5" +07/19/2013,Sports_celeb,@YaoMing,Enjoying a beautiful day in Napa Valley @YaoFamilyWines http://t.co/6DPMWeFE5k +07/15/2013,Sports_celeb,@YaoMing,I feel so happy that @DwightHoward chose the @HoustonRockets +03/01/2013,Sports_celeb,@YaoMing,"Now I won't be the tallest Yao in Houston RT @ShernMinKHOU Hou Zoo named the baby giraffe you saw during Allstar week ""Yao""! Any comment?" +02/26/2013,Sports_celeb,@YaoMing,Say “No” to Rhino Horns! http://t.co/vFbnty1iKy +02/25/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Proud to be featured here! Wineries find success exporting California wines to Asia http://t.co/gs6p45uLYv +02/18/2013,Sports_celeb,@YaoMing,Thank you for a great All-Star Weekend Houston. I had a wonderful time. http://t.co/OVSZtlKk +02/18/2013,Sports_celeb,@YaoMing,"RT @HoustonRockets: PHOTO: Rockets Royalty. Of course Hakeem the Dream, @YaoMing and Les Alexander are here courtside http://t.co/cM9QGg3V" +02/18/2013,Sports_celeb,@YaoMing,"Had a very special day at Retired Players Brunch. Great honor to be awarded along with The Dream, Coach T, Dike, Clyde, Horry and others" +02/16/2013,Sports_celeb,@YaoMing,Great spending time today with @RealJayWilliams http://t.co/hzUSzrXB +02/15/2013,Sports_celeb,@YaoMing,RT @HoustonRockets: .@YaoMing officially named Houston Goodwill Ambassador & given key to the city by Mayor Parker. http://t.co/Q2ZxD01U +02/15/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Today Yao Ming was presented the key to the city by Houston mayor Annise Parker. In return guess what she received? ... +02/13/2013,Sports_celeb,@YaoMing,RT ‏@JJWatt: Great lunch with @YaoMing today. Have a feeling he could knock down a pass or two... http://t.co/SRmAsgSB +11/13/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Honored at Robb Report’s – Robb Choice · Best of the Best 2012 http://t.co/KeH6qOyY +10/22/2012,Sports_celeb,@YaoMing,It was fun watching the Clippers and Heat play in Beijing last week. I got to see many friends including Bill Russell http://t.co/YNQLfIEm +08/27/2012,Sports_celeb,@YaoMing,I came face to face with a large black rhino http://t.co/VTj5HKIo +08/24/2012,Sports_celeb,@YaoMing,"Bonding w/ Kinango, a 2-wk-old orphaned elephant whose mother was lost to poaching http://t.co/EClYlPUa" +08/23/2012,Sports_celeb,@YaoMing,Just saw a collection that's not to be proud of http://t.co/XUUPnCR8 +08/21/2012,Sports_celeb,@YaoMing,I was very close to becoming a meal for lions. Probably not so tasty. http://t.co/Z3Qb2B8d +08/20/2012,Sports_celeb,@YaoMing,Scouted local basketball talent in Samburu Village and managed to break the hoop! http://t.co/1BtyS5GZ +08/19/2012,Sports_celeb,@YaoMing,I never thought I'd become an honorary Samburu warrior: http://t.co/EVpPbSsw +08/16/2012,Sports_celeb,@YaoMing,"While in Namunyak, Northern Kenya, I come across a sight I will not soon forget… http://t.co/rlwXUQFP" +08/14/2012,Sports_celeb,@YaoMing,"Met Najin and Suni, two of the world's remaining seven Northern White Rhinos http://t.co/0n5HmdOi" +08/14/2012,Sports_celeb,@YaoMing,RT @nbacares: .@YaoMing films anti-poaching documentary in Kenya... http://t.co/qsRT7VfI +08/10/2012,Sports_celeb,@YaoMing,Follow my journey to Africa with @wildaid http://t.co/jkjlg8qt +06/07/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Wins Silver Medal in the 2012 Decanter World Wine Awards http://t.co/BRLNac4A +05/16/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Receives Top Scores From @WineEnthusiast Magazine! http://t.co/UjIds9OE +05/15/2012,Sports_celeb,@YaoMing,RT @WSJpop: VIDEO: The Business of Being Yao Ming http://t.co/TKw33TlC +04/27/2012,Sports_celeb,@YaoMing,Thank you to Baccarat and Pernod Ricard for your donation to my foundation. The dinner was very enjoyable http://t.co/wAGgVmWJ +02/26/2012,Sports_celeb,@YaoMing,Vote for Budinger #SpriteSlam +02/26/2012,Sports_celeb,@YaoMing,RT @HoustonRockets: Aaaaaaaaahhhhhhh! Chaaaaasssse! Vote vote vote! #SpriteSlam Budinger +02/26/2012,Sports_celeb,@YaoMing,Budinger #SpriteSlam +02/26/2012,Sports_celeb,@YaoMing,Getting ready to vote Budinger #SpriteSlam +02/22/2012,Sports_celeb,@YaoMing,Looks like Chase has an interesting dunk for the contest. Funny guy! http://t.co/xOBpuC5B +02/16/2012,Sports_celeb,@YaoMing,I'm excited to see my former teammate @CBudinger in the Dunk Contest. I've seen it. Chase can fly! http://t.co/JbaAb9vy +01/26/2012,Sports_celeb,@YaoMing,At the taping of the Chinese Lunar New Year television special http://t.co/zsB2PIQS +01/04/2012,Sports_celeb,@YaoMing,I am on the 2012 cover issue of GQ China http://t.co/UOl716B2 +11/29/2011,Sports_celeb,@YaoMing,Happy that the website http://t.co/z8pfUE9M and twitter page has launched for @YaoFamilyWines +11/28/2011,Sports_celeb,@YaoMing,"Very happy that my first bottle of wine helped raise 150,000 RMB (about $20,000) for Special Olympic http://t.co/ts75sd7n" +11/08/2011,Sports_celeb,@YaoMing,"I chose Jiaotong University instead of private tutors, because I want to feel the atmosphere on campus http://t.co/sBp5uky7" +10/21/2011,Sports_celeb,@YaoMing,RT @SHAQ: I'm wit the greatest center ever Yao ming http://t.co/RHJc52ix +10/21/2011,Sports_celeb,@YaoMing,Flying on board the first A380 airbus felt exceptionally comfortable and there was a lot of space for me http://t.co/N1c9BrXm +10/19/2011,Sports_celeb,@YaoMing,I had a great time at the China Open in Beijing watching the tennis http://t.co/Gh4Td4zi +10/17/2011,Sports_celeb,@YaoMing,I received the “Outstanding Contribution Award” at the 6th Annual China Top 10 Laureus Awards http://t.co/PXC1SVDe +10/10/2011,Sports_celeb,@YaoMing,Happy to hear California has banned shark fin soup http://t.co/tdKh0CSk +10/08/2011,Sports_celeb,@YaoMing,Sorry to hear about the passing of Steve Jobs. A great creative leader. http://t.co/e6654LhI +10/07/2011,Sports_celeb,@YaoMing,This is a picture of me in Australia learning about how pearls are made http://t.co/cKtrI91t +10/03/2011,Sports_celeb,@YaoMing,I attended the Cable Beach Invitational in Australia this weekend. It was a great combination of basketball and be http://t.co/cAF76sF6 +09/28/2011,Sports_celeb,@YaoMing,My friend Richard Branson is helping me with a campaign against eating shark fins in Shanghai this past weekend http://t.co/2wX7P9wB +09/26/2011,Sports_celeb,@YaoMing,Congratulations to the Chinese basketball team for qualifying for the 2012 London Olympics +08/22/2011,Sports_celeb,@YaoMing,I met Coach K today http://t.co/Fvoic5H +08/03/2011,Sports_celeb,@YaoMing,Me playing golf http://twitpic.com/60iwj4 +07/20/2011,Sports_celeb,@YaoMing,"Nine years ago I came to Houston as a young, tall, skinny player, and the entire city and the team changed me to a grown man. Thank you." +07/20/2011,Sports_celeb,@YaoMing,"Special thanks to my friends overseas, especially to fans in Houston. I would like to thank you for giving me great nine years." +07/19/2011,Sports_celeb,@YaoMing,My press conference will air on @NBATV tonight at 2am ET/ 11pm PT. Tune in! +06/04/2011,Sports_celeb,@YaoMing,Congratulations to Li Na for making history today at the French Open +06/02/2011,Sports_celeb,@YaoMing,Congratulations to @Shaq on an incredible career. He was a great champion and player. I wish him success and happiness. +05/19/2011,Sports_celeb,@YaoMing,Me and the Loyd family at Hunters Creek Elementary. It was a great visit. http://twitpic.com/4zqy9d +05/17/2011,Sports_celeb,@YaoMing,"RT @RocketsJCF: Video: A Houston-area student wins at show-and-tell, brings Yao Ming to school for the day: http://on.nba.com/j56uid" +05/12/2011,Sports_celeb,@YaoMing,Pictures from the @WildAid PSA shoot and gala http://on.fb.me/lWGwGu +05/10/2011,Sports_celeb,@YaoMing,My @WildAid award. I had a great time at their event. http://twitpic.com/4w0j5i +05/07/2011,Sports_celeb,@YaoMing,"My agent Bill Duffy feeding ""Beans"" the Oakville heifer who loves tortillas http://twitpic.com/4ur7b9" +05/06/2011,Sports_celeb,@YaoMing,"Hey @leodicaprio, sorry I missed you at the @WildAid event last night. I hear you do lots of great work with them." +05/05/2011,Sports_celeb,@YaoMing,Talking with public radio on the subject of shark fin soup. http://twitpic.com/4tttgr +05/05/2011,Sports_celeb,@YaoMing,Back in the US. I am looking forward to attending the Wild Aid function tonight. I continue to enjoy working with them. +03/31/2011,Sports_celeb,@YaoMing,I went to @jordanchill43 and Chase's bowling event. It was a great event for the kids http://twitpic.com/4fddr8 +03/23/2011,Sports_celeb,@YaoMing,I had a video shoot today in Houston http://twitpic.com/4cj9gs +03/21/2011,Sports_celeb,@YaoMing,Congratulations to Kyle for winning player of the week. Well deserved +03/01/2011,Sports_celeb,@YaoMing,Welcome to all the new Rockets +02/03/2011,Sports_celeb,@YaoMing,Happy Chinese New Year 新年快樂! http://on.fb.me/hQwjr8 +01/28/2011,Sports_celeb,@YaoMing,Its an honor to be voted as a starter for the All-Star Game. I would like to thank everyone who has supported me as I continue to rehab +12/15/2010,Sports_celeb,@YaoMing,"Im waiting for the green light, but I won't push the trainer or the doctor. They are finding the best way for me to get back on the court" +10/01/2010,Sports_celeb,@YaoMing,It's our 5th day in Austin. I practiced about the same time today I've been doing all week. Now at the hotel. Sat. is last Austin practice +09/29/2010,Sports_celeb,@YaoMing,"Back at the hotel now after today's workout with the team. I went about halfway through the scrimmage, which is normal." +09/10/2010,Sports_celeb,@YaoMing,Just got done with my workout. Meeting with trainer now. Training camp starts in about 2 weeks. Looking forward to those workouts. +08/20/2010,Sports_celeb,@YaoMing,Videos posted from the charity tour late last month. Great highlights. Thanks to all who made the tour a success. http://facebook.com/yao +08/04/2010,Sports_celeb,@YaoMing,Video working out last week in Taipei shooting baskets on the court. http://youtu.be/g4FcNGovnqo +07/01/2010,Sports_celeb,@YaoMing,"@ChrisBosh, Hey Chris, hopefully you'll play with us (Rockets) next season. I'll be healthy and I'd really look forward to playing together" +06/29/2010,Sports_celeb,@YaoMing,Video of Yao interview after announcing today he won't opt out of contract and will remain a Rocket next season: http://bit.ly/9WmB5r +06/26/2010,Sports_celeb,@YaoMing,I'm still working out 5 days a week. I'm running on a real treadmill 20-30 minutes each time. I don't need the Alter-G treadmill any more. +06/18/2010,Sports_celeb,@YaoMing,I watched Game 7 last night. Unbelievable series. I am happy for Ron having a great year. Hopefully next year it will be us in Houston. +05/22/2010,Sports_celeb,@YaoMing,Happy to announce the arrival of our daughter. This is a very special moment in our lives. We thank everyone for their kindness and support. +05/07/2010,Sports_celeb,@YaoMing,"I worked out at Toyota Center this morning. Luis Scola and Jermaine Taylor were in there, too. http://twitpic.com/1ludd4" +04/24/2010,Sports_celeb,@YaoMing,Congrats to Aaron Brooks for winning the Most Improved Player Award. You deserved it. Thanks for your effort this season. +04/11/2010,Sports_celeb,@YaoMing,"...I am very proud of my players and their efforts. We have great fans, a great city, and I am already looking forward again to next season." +04/11/2010,Sports_celeb,@YaoMing,Congrats to the Guangdong Tigers for their series win over my Sharks today. They showed everyone they are a great team... +02/07/2010,Sports_celeb,@YaoMing,"I'm packing today. Flying to China early Monday for Chinese New Year, my first time back for it since signing w/Rockets. I'm back late Feb." +02/06/2010,Sports_celeb,@YaoMing,"Welcome to the NBA Joey Dorsey! You looked great last night in Memphis, your college town. 7 points, 12 rebounds and a block in 19 minutes!" +01/31/2010,Sports_celeb,@YaoMing,"Sorry I've been silent for a few weeks. Back from China. In Houston for 10 more days. At Toyota Center for workout, then Suns game tonight." +12/11/2009,Sports_celeb,@YaoMing,"Today my Esquire interview about ""What I've learned"" was posted online. http://bit.ly/5DTmw8" +11/28/2009,Sports_celeb,@YaoMing,Please join me to stop discrimination of people with HIV and AIDS. http://bit.ly/70mdY0 +11/18/2009,Sports_celeb,@YaoMing,Yesterday I announced my Foundation and the Museum of Fine Arts will throw a celebrity gala on January 30th in Houston. http://bit.ly/3fpWjY +11/16/2009,Sports_celeb,@YaoMing,A great win against the Lakers tonight in LA. I'm very proud of my teammates. Go Rockets! +11/15/2009,Sports_celeb,@YaoMing,"I hear Obama is in Shanghai, my hometown. Welcome to China. Hope you enjoy. Like NYC, the best food is sold on streets (I know u r busy tho)" +11/13/2009,Sports_celeb,@YaoMing,"George Bush (the father) lives in Houston. He gave me his book ""China Diary"" from his time there. It's good. My first English book to read." +11/08/2009,Sports_celeb,@YaoMing,I signed the new Rocket jerseys yesterday at Toyota Center. Good to see the fans. Thanks for coming out. My foot is feeling better every day +10/30/2009,Sports_celeb,@YaoMing,This afternoon I met with John from YaoMingMania. Tomorrow I will be at Houston's home opener at Toyota Center against Portland. +10/27/2009,Sports_celeb,@YaoMing,"I like David Andersen, our new center. We played each other in international games.I think he will fit Coach Adelman's style very well." +06/27/2018,Sports_celeb,@rogerfederer,🔙 at @Wimbledon 🎾 https://t.co/NkavzmjDOO +06/26/2018,Sports_celeb,@rogerfederer,RT @BelindaBencic: Team Switzerland is back 🇨🇭 Can’t wait to play @HopmanCup again with @RogerFederer in @WesternAustralia #HopmanCup #just… +06/18/2018,Sports_celeb,@rogerfederer,RT @GERRYWEBERWORLD: Bitte direkt zu uns! 😃Wir und die Zuschauer freuen sich schon riesig. 🎉#gwo #gerryweberopen https://t.co/L9gpZaXAnI +06/18/2018,Sports_celeb,@rogerfederer,"Where shall I go? +😄 https://t.co/vRFn7SnKT5" +06/17/2018,Sports_celeb,@rogerfederer,😄 https://t.co/aphf69Yqtv +06/17/2018,Sports_celeb,@rogerfederer,Thank you 🙏 https://t.co/G9ACJrPjqf +06/17/2018,Sports_celeb,@rogerfederer,"RT @AdvFederer: He’s commenting! +He’s retweeting! +This is not a drill, people! GO! GO! GO! #RogerFederer @rogerfederer https://t.co/hzkwEXr…" +06/17/2018,Sports_celeb,@rogerfederer,Unlucky? https://t.co/FPGLG8AkNR +06/17/2018,Sports_celeb,@rogerfederer,"RT @tugcege: @rogerfederer He’s a father of four, I don’t think he’d do something that would put his or anyone else’s life at risk." +06/17/2018,Sports_celeb,@rogerfederer,RT @tesssjimmie: @rogerfederer Waiting impatiently for you in Halle #RFmatchingshirts https://t.co/F8rE7ggLrh +06/17/2018,Sports_celeb,@rogerfederer,RT @Pollyannina: @rogerfederer Did you see three girls who waved at you like crazy and hitchhiked when you left? 🧚🏼‍♀️🧚🏼‍♀️🧚🏼‍♀️👋🏻👍🏻💚🎾🔙🔛🔝🏆@… +06/17/2018,Sports_celeb,@rogerfederer,No speed limit in Germany in some places 😋 https://t.co/IEq3ECz0kG +06/17/2018,Sports_celeb,@rogerfederer,"RT @TennisMajesty: @rogerfederer Going by the blurry trees out the window, it looks like you’re driving over the speed limit Rog. 😏🤣" +06/17/2018,Sports_celeb,@rogerfederer,🤨 https://t.co/UKbsUzbUMB +06/17/2018,Sports_celeb,@rogerfederer,"Made it back home on time +⚡️🏎💨 +to watch 🇨🇭 vs 🇧🇷 +Great effort team Switzerland, +good luck Brazil for the rest o… https://t.co/iwSwNIzUF7" +06/17/2018,Sports_celeb,@rogerfederer,"So happy! +Thank you Stuttgart ❤️ https://t.co/zdL3AcRK99" +06/17/2018,Sports_celeb,@rogerfederer,Good day 🇨🇭 +06/16/2018,Sports_celeb,@rogerfederer,🔙🔛🔝 https://t.co/lr5zWpmF0U +06/16/2018,Sports_celeb,@rogerfederer,big day 🙌🏼🎈 https://t.co/wgzivEq0Sv +06/12/2018,Sports_celeb,@rogerfederer,@Biryukova15 Those things I knew! +06/12/2018,Sports_celeb,@rogerfederer,finally he is out of the house https://t.co/PhNIjs7FgX +06/12/2018,Sports_celeb,@rogerfederer,@fedangels1 can't wait for Thursday. Switzerland might win it 🧐 +06/12/2018,Sports_celeb,@rogerfederer,@Exposure_Sport chillaaaax +06/12/2018,Sports_celeb,@rogerfederer,@luca_sporting https://t.co/Pw5VN3icLu +06/12/2018,Sports_celeb,@rogerfederer,What did I miss? +06/12/2018,Sports_celeb,@rogerfederer,@swatifederer @Wimbledon @WimbledonRoof have you enjoyed your offseason? +06/12/2018,Sports_celeb,@rogerfederer,@fedangels1 @Wimbledon missed you all too! +06/12/2018,Sports_celeb,@rogerfederer,"RT @Wimbledon: After a second year of construction work, No.1 Court is ready for The Championships 2018 🙌 + +#Wimbledon https://t.co/HMrh2x18…" +04/27/2018,Sports_celeb,@rogerfederer,"RT @rogerfedererfdn: The film to the visit of Roger in Zambia during the last days. Great people, high emotions, true impact. +https://t.co/…" +04/26/2018,Sports_celeb,@rogerfederer,"👋 Zambia 🇿🇲 + +I enjoyed your beautiful country and meeting the amazing people here. Hope to return soon with the… https://t.co/CO5efJkfkD" +04/24/2018,Sports_celeb,@rogerfederer,"Learning the dance 🕺 moves here in Zambia 🇿🇲, while visiting community schools with the @rogerfedererfdn… https://t.co/xR47GWjxpO" +04/24/2018,Sports_celeb,@rogerfederer,"@rogerfedererfdn visit in Zambia 🇿🇲 +#educationempowers +👋 https://t.co/plV0O9pgA9" +04/24/2018,Sports_celeb,@rogerfederer,🤓 https://t.co/3M4B6ELY3k +04/23/2018,Sports_celeb,@rogerfederer,Very happy to be in Zambia 🇿🇲 working with the @rogerfedererfdn. It’s my first time here! https://t.co/SUKMnHwtQ7 +04/22/2018,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: Thank you for hosting us. We look forward to further collaboration in accelerating acces to early childhood education… +04/20/2018,Sports_celeb,@rogerfederer,"Thank you for the kind words, @BillGates. Honored. @TIME https://t.co/eGmBhS3NZv" +03/23/2018,Sports_celeb,@rogerfederer,Loved being in Chicago and can’t wait to return for the @LaverCup in September... Hope you can join me there. Ticke… https://t.co/HquTuv1f4r +03/21/2018,Sports_celeb,@rogerfederer,"RT @rogerfedererfdn: Roger besucht Kinder des Programms ""Empowerment"", ein Förderfond für ausserschulische Bildung der Winterhilfe. Jedes 1…" +03/20/2018,Sports_celeb,@rogerfederer,"RT @ScottiePippen: Welcoming @NickKyrgios and the GOAT @rogerfederer to Chicago and the @UnitedCenter, home of this year’s #LaverCup 🎾 http…" +03/19/2018,Sports_celeb,@rogerfederer,Good Morning Chicago! The countdown to the #LaverCup 2018 starts here! Follow the action live on Twitter and Perisc… https://t.co/UOZLgbO74I +03/19/2018,Sports_celeb,@rogerfederer,"What a battle today. Congrats on a fantastic tournament and match, @delpotrojuan https://t.co/bqf4LyL1B8" +03/17/2018,Sports_celeb,@rogerfederer,@maya_iyer 💐 +03/17/2018,Sports_celeb,@rogerfederer,@maya_iyer https://t.co/aJ47jn5JmC +03/17/2018,Sports_celeb,@rogerfederer,@Exposure_Sport https://t.co/tzaqLTkJqN +03/17/2018,Sports_celeb,@rogerfederer,@TrueNorth4 @BNPPARIBASOPEN Thanks for coming! 🙏🏼 +03/17/2018,Sports_celeb,@rogerfederer,Thanks Rocket 🚀! https://t.co/3emo6dhOug +03/17/2018,Sports_celeb,@rogerfederer,17-0! So thrilled to have fought my way into the finals at @BNPPARIBASOPEN 💪🏻😅 https://t.co/otsiZr97g8 +03/17/2018,Sports_celeb,@rogerfederer,Are you ready for Chicago😉💯🔝?@nickkyrgios @rodlaver #LaverCup #TeamEurope https://t.co/Izp2UasglU +03/15/2018,Sports_celeb,@rogerfederer,@vynndawg you're welcome! +03/15/2018,Sports_celeb,@rogerfederer,@naveenbaskaran7 are you still fed up? 🙂 +03/15/2018,Sports_celeb,@rogerfederer,@madhuchak No +03/15/2018,Sports_celeb,@rogerfederer,"RT @counterfeitaura: ┏┓ +┃┃╱╲ in this +┃╱╱╲╲ house +╱╱╭╮╲╲ we +▔▏┗┛▕▔ +╱▔▔▔▔▔▔▔▔▔▔╲ + love and support + @rogerfederer +╱╱┏┳┓╭╮┏┳┓ ╲╲…" +03/15/2018,Sports_celeb,@rogerfederer,@antonellaf70 https://t.co/jH9NlANmj2 +03/15/2018,Sports_celeb,@rogerfederer,@beafabregas Chilllaaaax +03/15/2018,Sports_celeb,@rogerfederer,RT @nnniicole: Staying up late has its perks... like watching @rogerfederer interact with his fans in real time 😭 https://t.co/A2Y11lxUPJ +03/15/2018,Sports_celeb,@rogerfederer,"I'm on the massage table.. so, close! https://t.co/UcFrF8F4pQ" +03/15/2018,Sports_celeb,@rogerfederer,RT @rand_luu: I would say @rogerfederer is a legend on Twitter with how he interacts with his fans. 🐐 +03/15/2018,Sports_celeb,@rogerfederer,@ClaytonHoffard Now you need some more things for your list! +03/15/2018,Sports_celeb,@rogerfederer,@lodotennis https://t.co/PAueLUxFl3 +03/15/2018,Sports_celeb,@rogerfederer,Good to know. I've never had deep dish 🍕 What's the best place to try in Chicago? https://t.co/nHlzIB8Luf +03/15/2018,Sports_celeb,@rogerfederer,@SaraParetsky Thank you for the recommendations! +03/15/2018,Sports_celeb,@rogerfederer,@QuienTengaOidos 😳 +03/15/2018,Sports_celeb,@rogerfederer,@rhondaygans Thanks for the suggestions! +03/15/2018,Sports_celeb,@rogerfederer,@DCaramanidis Tell me more https://t.co/5CU4qgAjaM +03/15/2018,Sports_celeb,@rogerfederer,@dianne9m @lincolnparkzoo Good idea! +03/15/2018,Sports_celeb,@rogerfederer,@mari_moraes_rs From where do you recommend? +03/15/2018,Sports_celeb,@rogerfederer,Can’t wait to visit #Chicago for the first time next week. What shall I do while I am in town? #LaverCup 🤔 https://t.co/OMFSu04mXK +03/13/2018,Sports_celeb,@rogerfederer,@NateCourtright 🙃 +03/13/2018,Sports_celeb,@rogerfederer,@nnniicole Thank you! +03/13/2018,Sports_celeb,@rogerfederer,@TenistaDeSanz https://t.co/ptaQnaWIJi +03/13/2018,Sports_celeb,@rogerfederer,RT @eriq_spin: @rogerfederer liking and replying to fans tweets at 10pm has me like https://t.co/8ARvNbW9rv +03/13/2018,Sports_celeb,@rogerfederer,@neerajrd19 engineering isn't dull! you build things from scratch 🤯 +03/13/2018,Sports_celeb,@rogerfederer,@mikhailara Nice 📸! +03/13/2018,Sports_celeb,@rogerfederer,@KasiTennis Thanks for watching! +03/13/2018,Sports_celeb,@rogerfederer,Gotta stay on your toes 😋 https://t.co/6fZuOqYNta +03/13/2018,Sports_celeb,@rogerfederer,Had a nice day at the office with no ☔️ and all ☀ https://t.co/8puTjgh377 +03/12/2018,Sports_celeb,@rogerfederer,1⃣0⃣th🌴🌌🎾🌧☔🙅🏻‍♂🍝😴1⃣1⃣th🌄🎾🌞🙌🏼🏁 +03/11/2018,Sports_celeb,@rogerfederer,1️⃣2️⃣ million 🙏🏼 https://t.co/OmNtNBl5nr +03/11/2018,Sports_celeb,@rogerfederer,"RT @BNPPARIBASOPEN: When life gives you a rain delay… + +Tweet a video of @RogerFederer playing art critic with a batch of miniature (and ad…" +03/09/2018,Sports_celeb,@rogerfederer,👑 @TommyHaas13 https://t.co/w6nHrwvQK4 +03/07/2018,Sports_celeb,@rogerfederer,RT @BillGates: Most people know @rogerfederer as one of the greatest tennis players of all time. But his work off the court is also impress… +03/06/2018,Sports_celeb,@rogerfederer,About to go on #MatchforAfrica https://t.co/u0MTB2CNCd +03/06/2018,Sports_celeb,@rogerfederer,Carbo loading before #MatchForAfrica https://t.co/FvwNJkMroe +03/05/2018,Sports_celeb,@rogerfederer,Was great to sit down with @BillGates and @SavannahGuthrie to talk about why #MatchforAfrica is so important to us.… https://t.co/5aXYsdZZCU +03/05/2018,Sports_celeb,@rogerfederer,RT @TODAYshow: We can't wait to watch @savannahguthrie and @JackSock take on @rogerfederer and @billgates in the #MatchforAfrica! https://t… +03/01/2018,Sports_celeb,@rogerfederer,Oh hey @SavannahGuthrie. See you guys on the court! #YouCantSeeMe #MatchForAfrica https://t.co/FJDZZb2UCe +02/26/2018,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: We made an effort to present the new Roger Federer Foundation Annual Report 2017 as early as possible. Have a look and… +02/24/2018,Sports_celeb,@rogerfederer,⛷🇨🇭🥇🤩🤩🤩🤩🤩 https://t.co/OOLMNJzcvX +02/24/2018,Sports_celeb,@rogerfederer,🏂🇨🇭🥇🎇🎆🎇🎆🎇 https://t.co/94Raa8YEI6 +02/23/2018,Sports_celeb,@rogerfederer,🥌 🇨🇭 🥉 🍾https://t.co/wqyOEvupep +02/23/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥉👊💥 https://t.co/FWTXi2cdQt +02/23/2018,Sports_celeb,@rogerfederer,Excited to be heading to Monaco for the @LaureusSport Awards! Good luck to all the Nominees 💪 see you next week 😃 #Laureus18 +02/22/2018,Sports_celeb,@rogerfederer,"🎿🇨🇭🥇🤩 Michelle 🎯 +🎿🇨🇭🥉😃 Wendy 🥂 + https://t.co/t2PtDinlvi" +02/22/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈🕺👍 https://t.co/6rPhYOog2x +02/21/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈Cmoooon 👊💥 https://t.co/N9pchngfR2 +02/18/2018,Sports_celeb,@rogerfederer,😂 https://t.co/nvP1IMWXP2 +02/18/2018,Sports_celeb,@rogerfederer,@GoldenChild621 Thank you for coming! +02/18/2018,Sports_celeb,@rogerfederer,Thank you Rotterdam! You broke the record for attendance.. 120k people! It was an amazing atmosphere 👊🏼👏🏼 https://t.co/yAVl8woRgH +02/17/2018,Sports_celeb,@rogerfederer,🤗 https://t.co/ifSCxR3vd8 +02/17/2018,Sports_celeb,@rogerfederer,🗣 magnifique 🇨🇭🥈😃 https://t.co/SLl2QSWU5j +02/17/2018,Sports_celeb,@rogerfederer,💪💪💪🇨🇭🤩🥇 https://t.co/g76JaN7EWg +02/17/2018,Sports_celeb,@rogerfederer,"It's been a long road, and sometimes windy, but feels surreal to be back at the top. I'm just happy to be healthy a… https://t.co/g0q4mIKI6f" +02/16/2018,Sports_celeb,@rogerfederer,Apparently I'm the oldest tennis player with a #1️⃣ ranking. Somebody might have mentioned that to me already but I… https://t.co/sZ3NFoddzk +02/16/2018,Sports_celeb,@rogerfederer,🇨🇭🥇 woooooow @dariocologna https://t.co/Nr79FCQ9lg +02/16/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈 @BeatFeuz yeaaaahhhhh https://t.co/53VlXTogYt +02/16/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈💪 Congratulations Wendy https://t.co/MCiMrmx74Q +02/15/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥉Super Beat https://t.co/rtXBmE1OKO +02/13/2018,Sports_celeb,@rogerfederer,🥌 🇨🇭 🥈 Gratulation https://t.co/FXszdzAJ2E +02/01/2018,Sports_celeb,@rogerfederer,Thank you to all the amazing fans who greeted me and Norman🏆 back in 🇨🇭 https://t.co/Me5oqTcPzD +02/01/2018,Sports_celeb,@rogerfederer,"Thank you Australia for the support, the passion and all the epic memories. Can't wait until next year. #RF20… https://t.co/OvgXgKfHVp" +01/29/2018,Sports_celeb,@rogerfederer,Norman looks even more shiny in the daytime 🌞 #RF20 https://t.co/VzmAOpattj +01/29/2018,Sports_celeb,@rogerfederer,Norman joined us on the car ride home #NormanInTheTrunk #RF20 https://t.co/1SS1pVa8vB +01/29/2018,Sports_celeb,@rogerfederer,"Seve, me & Norman 🏆 #RF20 https://t.co/PG1cBzeTrK" +01/29/2018,Sports_celeb,@rogerfederer,My first moment reunited with the family & team after last night #RF20 https://t.co/ZAPQ4NmcnG +01/28/2018,Sports_celeb,@rogerfederer,Going to sleep well tonight. Thank you to everyone for the love and support. It means more than I could possible de… https://t.co/nGhjs88dl8 +01/28/2018,Sports_celeb,@rogerfederer,🏆20. ❤️ https://t.co/WqUiSo3fd5 +01/25/2018,Sports_celeb,@rogerfederer,"I noticed the ball went out but yes, very intimidating @SavannahGuthrie 😉 .. @BillGates and I will be ready with ou… https://t.co/tJZUDYD9pf" +01/22/2018,Sports_celeb,@rogerfederer,enjoyed my match in outer space yesterday 🌌😳 https://t.co/EXzemd2Rlo +01/21/2018,Sports_celeb,@rogerfederer,Post match smolderview 🤨 https://t.co/xW80lFBk1X +01/21/2018,Sports_celeb,@rogerfederer,🙌🏻 https://t.co/9RreCC3cVO +01/21/2018,Sports_celeb,@rogerfederer,"Thanks, skydiverer https://t.co/kAXud4bxIj" +01/17/2018,Sports_celeb,@rogerfederer,#SmoldeRF @TheRock https://t.co/WHXlSE6UWp +01/16/2018,Sports_celeb,@rogerfederer,"Great to see you back +#Stanimal 💪👊 + https://t.co/VAQoi7m6Kc" +01/16/2018,Sports_celeb,@rogerfederer,🤔 https://t.co/mFaavI4hyX +01/16/2018,Sports_celeb,@rogerfederer,😳 wow https://t.co/zgWzi2gmik +01/16/2018,Sports_celeb,@rogerfederer,😉 https://t.co/DAkwabNoe9 +01/16/2018,Sports_celeb,@rogerfederer,"Being back on Rod Laver Arena was so nice after last year, Thank you 🙏🏼 https://t.co/deWFYFtvWF" +01/15/2018,Sports_celeb,@rogerfederer,@CrackedRacquets 😂 so good +01/15/2018,Sports_celeb,@rogerfederer,@ajshaheed 😂👏 +01/15/2018,Sports_celeb,@rogerfederer,@Benji9588 🦇 +01/15/2018,Sports_celeb,@rogerfederer,@kiran_aravelli 👏😳 +01/15/2018,Sports_celeb,@rogerfederer,Paging @RealHughJackman https://t.co/KmQH9UzHJt +01/15/2018,Sports_celeb,@rogerfederer,@NYC212516 👏 +01/15/2018,Sports_celeb,@rogerfederer,RT @brohit_98: @rogerfederer Captain Roger Federer #PhotoshopRF https://t.co/T0odUYOVm4 +01/15/2018,Sports_celeb,@rogerfederer,😂 https://t.co/wnk6yzKHt2 +01/15/2018,Sports_celeb,@rogerfederer,I doubt that... but let's give it a shot.. been awhile since the last #PhotoshopRF. Let's see your best/funniest ph… https://t.co/JSzAdjEjwt +01/14/2018,Sports_celeb,@rogerfederer,🐜🕷🇨🇭🕸🔨 https://t.co/zvy6itZoDm +01/14/2018,Sports_celeb,@rogerfederer,@ItsOana https://t.co/bm8RkFM7Cn +01/14/2018,Sports_celeb,@rogerfederer,@Ashish__TV https://t.co/QgwSxsCqkL +01/14/2018,Sports_celeb,@rogerfederer,Hey Spiderman can you string my racket? 🕸🎾 https://t.co/UUjiPkNotu +01/14/2018,Sports_celeb,@rogerfederer,Getting ready to ruuuumble for the @AustralianOpen https://t.co/YzkRfhz8ry +01/12/2018,Sports_celeb,@rogerfederer,"Hey @TheRock, am I doing the ""Smoldering Intensity"" right? 🤔 https://t.co/5A5ILEXYNK" +01/11/2018,Sports_celeb,@rogerfederer,RT @AustralianOpen: An exclusive look into a pre-tournament video shoot with our five-time champion @rogerfederer.#AusOpen https://t.co/f8G… +01/06/2018,Sports_celeb,@rogerfederer,"RT @CoryKarma: Team Switzerland 🇨🇭🎾🇨🇭 + +@rogerfederer @BelindaBencic + +#HopmanCup 🏆 https://t.co/TqaHMgtmZU" +01/06/2018,Sports_celeb,@rogerfederer,"Thank you Perth +#Thank you @BelindaBencic +Great week, it was so much fun. +You played phenomenal 🇨🇭🎾👊🏼 https://t.co/fSgLSsFkox" +01/06/2018,Sports_celeb,@rogerfederer,"Selfie time +😉 https://t.co/mHbJWITq0q" +01/06/2018,Sports_celeb,@rogerfederer,RT @FanOfBencic: Congrats @BelindaBencic @rogerfederer !! #Benderer 🇨🇭🙌🏻😍#HopmanCup https://t.co/xjsEOXEQ1q +01/06/2018,Sports_celeb,@rogerfederer,RT @FanOfBencic: HOPMAN CUP CHAMPIONS🇨🇭🙌🏻🙌🏻🙌🏻 #BENDERER https://t.co/Fi1Elt4mcB +01/04/2018,Sports_celeb,@rogerfederer,"Jumping into the finals like.... +@BelindaBencic +@hopmancup +#Benderer +🎾🇨🇭 https://t.co/L9ftI8lCPO" +01/02/2018,Sports_celeb,@rogerfederer,"Great match +Super partner +🎾🇨🇭 https://t.co/NKzFhcwmJW" +01/02/2018,Sports_celeb,@rogerfederer,Gotcha ☝️😉 https://t.co/et1SkoggPc +01/02/2018,Sports_celeb,@rogerfederer,Classic 😂🤣https://t.co/UmEVn7FmVl +01/02/2018,Sports_celeb,@rogerfederer,RT @7tennis: Not many shots leave @rogerfederer like 😮 but this one certainly did. Simply amazing @NastiaPav!! #HopmanCup https://t.co/7ZQX… +12/31/2017,Sports_celeb,@rogerfederer,RT @BelindaBencic: Happy New Year from Perth! #benderer 🇨🇭 https://t.co/Gct4okj02q +12/31/2017,Sports_celeb,@rogerfederer,"Happy new year from Perth everyone, 2017 was unreal. 2018 here we come. +🎇🎆 https://t.co/nFtTfNlpjQ" +12/30/2017,Sports_celeb,@rogerfederer,"Ha! + https://t.co/t02gOLJKNi" +12/29/2017,Sports_celeb,@rogerfederer,"Team Swiss 🇨🇭 +🧀 🐮🍫🏔🕰 +#benderer https://t.co/Kv0wyMA4oJ" +12/29/2017,Sports_celeb,@rogerfederer,"1h practice from 5-6pm + https://t.co/yQ14cxJlB9" +12/28/2017,Sports_celeb,@rogerfederer,"Great to be back in Perth, +See you tomorrow at 5pm +🎾 https://t.co/YeLT1SJ8UK" +12/28/2017,Sports_celeb,@rogerfederer,🏖 https://t.co/ZvqtRajRj9 +12/28/2017,Sports_celeb,@rogerfederer,"Meet my new furry friend. +So happy to be back down under 🙃#HappyQuokka @westernaustralia #justanotherdayinWA https://t.co/YvgdMCs13u" +12/28/2017,Sports_celeb,@rogerfederer,My first day cooking. See how I did… 🎾 ➡️ 🍅 #MastersOfPasta 🍝 @Barilla @davideoldanido #ad https://t.co/dFo3ht9vx8 +12/27/2017,Sports_celeb,@rogerfederer,Thanks for taking the time to put this together 🙌🏻 https://t.co/Scp3ZIaipq +12/10/2017,Sports_celeb,@rogerfederer,"Congratulations on coach of the year in Switzerland 🇨🇭, So well deserved, lucky 🍀 to have you on my team. You’ve be… https://t.co/CyNlisQaEy" +12/10/2017,Sports_celeb,@rogerfederer,So honored to have won this award. Sharing this with my entire team.. I wouldn’t be where I am and who I am without… https://t.co/wO5rOcijIO +12/09/2017,Sports_celeb,@rogerfederer,Honored to be nominated for the @CreditSuisse Swiss Sports person of 2017 🇨🇭🥇🥈🥉 ⚽🎾🏒🥅🚵🏻 🎿 https://t.co/Cljei207QJ +12/07/2017,Sports_celeb,@rogerfederer,"Gym time +🏋️ 💦 https://t.co/9Z0s9Nvsi0" +12/06/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: How can children learn when they are constantly hungry? School feeding is crucial in particular for younger children.… +11/23/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: All Children have a Right To Education. This is our obligation. The @rogerfedererfdn has almost reached one million ch… +11/22/2017,Sports_celeb,@rogerfederer,"Words can’t possibly describe this incredible moment for this club, wow!!!! +Congrats to the team 🎉 +https://t.co/qvEOCHoSmN" +11/12/2017,Sports_celeb,@rogerfederer,Next time... 🍑🎯 https://t.co/vZh9UbXAAw +11/10/2017,Sports_celeb,@rogerfederer,Press day at the @ATPWorldTour Finals 💃 https://t.co/3EeC7oEIvV +11/10/2017,Sports_celeb,@rogerfederer,I’ll have my revenge! 🧛‍♂️ https://t.co/h3NcXTmvo9 +11/08/2017,Sports_celeb,@rogerfederer,Starting on Sunday @ 2pm vs Jack Sock +11/08/2017,Sports_celeb,@rogerfederer,Ready? 🎾 https://t.co/rfJbOuonTt +11/07/2017,Sports_celeb,@rogerfederer,Great to see you back on court @andy_murray .. thanks for having me in Glasgow https://t.co/PNdMmibrqF +11/07/2017,Sports_celeb,@rogerfederer,"RT @Ashish__TV: Roger Federer's 1HBH, but in a kilt. + +#AndyMurrayLive https://t.co/apNt9jkxMN" +11/07/2017,Sports_celeb,@rogerfederer,Kilterer 💪🏼 https://t.co/yVqvrmq9od +11/07/2017,Sports_celeb,@rogerfederer,@andy_murray Can’t get a warmer welcome than this. Thanks @andy_murray ... is this your usual pre-match routine? 🍪 https://t.co/mWntwqvDPA +11/07/2017,Sports_celeb,@rogerfederer,In Glasgow for the evening to play in @andy_murray’s charity match. Scotland is beautiful even from the air! https://t.co/ueLU2FLBqr +10/29/2017,Sports_celeb,@rogerfederer,8 is gr8 🏆💪🏼 https://t.co/pWmMjFQARE +10/20/2017,Sports_celeb,@rogerfederer,"Basel ❤️ +So happy to be back in 🇨🇭 +Here with my man the MC @mchiudinelli33 https://t.co/mU6U4aPGZC" +10/15/2017,Sports_celeb,@rogerfederer,What a wild week here in Shanghai. Thanks to all the fans and the tournament and staff for making it so special ✌🏻❤️ https://t.co/jVWxtnh0pD +10/15/2017,Sports_celeb,@rogerfederer,🇨🇳🏆😘 https://t.co/T31a6xthSf +10/13/2017,Sports_celeb,@rogerfederer,Sounds like a challenge to me @KlayThompson 😉 https://t.co/5ZhDBe5JN1 +10/13/2017,Sports_celeb,@rogerfederer,"RT @SoleCollector: #SoleWatch: @RogerFederer wearing the ""Atmos"" NikeCourt Zoom Vapor RF x AJ3 in Shanghai. https://t.co/mBX6GRAlWi" +10/10/2017,Sports_celeb,@rogerfederer,@LaverCup @tomasberdych We’re already scheming against #TeamWorld for @lavercup in Chicago 😈 +10/10/2017,Sports_celeb,@rogerfederer,We all missed @LaverCup so much that we had to have a reunion in Shanghai 🇨🇳 ...@tomasberdych we saved you a seat! https://t.co/lnt2ixCDBi +10/09/2017,Sports_celeb,@rogerfederer,HardcoRFans 🙏❤️ https://t.co/hhH1rC2xD5 +10/09/2017,Sports_celeb,@rogerfederer,We’re basically the same height https://t.co/OX7XSmv6t8 +10/09/2017,Sports_celeb,@rogerfederer,"RT @NBA: Prior to today's #NBAChinaGames action in Shanghai, @RogerFederer visited with Golden State! (📹 @Warriors) https://t.co/G6AM9SKQO8" +10/05/2017,Sports_celeb,@rogerfederer,My kind of shoe delivery https://t.co/X6QBEp00LX +10/04/2017,Sports_celeb,@rogerfederer,Last visit to Tokyo was 11 years ago… excited to be back! 🇯🇵 🗼 https://t.co/fViAVKFFBq +10/04/2017,Sports_celeb,@rogerfederer,Japan! https://t.co/rYkwxqVyOq +10/03/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: To reach sustainability is our biggest challenge. Listen to Roger in the full version of the Foundation Talk https://… +09/28/2017,Sports_celeb,@rogerfederer,👔🎬🎥 https://t.co/OPLU5kILuy +09/27/2017,Sports_celeb,@rogerfederer,"Already can't wait until next year, in Chicago 2018. https://t.co/X5wNWumOw2" +09/27/2017,Sports_celeb,@rogerfederer,But we made it in the end! https://t.co/qBb4aSL2NA +09/27/2017,Sports_celeb,@rogerfederer,And some lows... https://t.co/gy89afDXok +06/26/2018,Sports_celeb,@KingJames,#JamesGang👑 More to come in a couple weeks at Nationals https://t.co/FwSMjHm2lF +04/14/2018,Sports_celeb,@KingJames,Preach “PrimeTime”! Once u understand that you’ll be better off. #Facts #HandleYourBusiness ✊🏾🙏🏾 https://t.co/YMwYp1m77d +04/10/2018,Sports_celeb,@KingJames,RT @FOXSportsOH: LeBron James becomes the only player in NBA history to win 10 straight division titles 👑 https://t.co/tNPkyc5TnY +04/10/2018,Sports_celeb,@KingJames,"RT @NBA: Power in #PhantomCam + +#AllForOne https://t.co/tXIHjCkVc1" +04/10/2018,Sports_celeb,@KingJames,All love and respect Young King 🤴🏾! Good luck with the draft and do work at the next level. 🙏🏾 https://t.co/E0lG7xXjbx +04/09/2018,Sports_celeb,@KingJames,"Just heard a new @jerreau track! SHEESH!! “Y’all big lame, probably run your own fan page. My wave man made and I a… https://t.co/YeYRWXuylg" +04/07/2018,Sports_celeb,@KingJames,@MikeMiller_13 Thanks my brother!!! 🙏🏾 +04/05/2018,Sports_celeb,@KingJames,Can’t wait to go see it! Wife and I be waiting so patiently. #HorrorHouseWeHave https://t.co/0R9Lg9om9B +04/05/2018,Sports_celeb,@KingJames,"RT @bycycle: LeBron’s documentary on the Civil Rights Movement debuts tonight. + +Another step toward a media empire. https://t.co/6DkHwbpNBT" +04/05/2018,Sports_celeb,@KingJames,Nick the Quick was a Animal out there! Go check the highlights +04/05/2018,Sports_celeb,@KingJames,🔥🔥🔥🔥🔥🔥🔥🔥. https://t.co/hdP1K0mSk5 +04/04/2018,Sports_celeb,@KingJames,Yes Tonight! Very important ✊🏾 https://t.co/VS6BWoaqgy +04/04/2018,Sports_celeb,@KingJames,"RT @SpringHillEnt: #MLK: ""Our lives begin to end the day we become silent about things that matter."" + +Today we honor Martin Luther King Jr.…" +04/04/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: ✨Lights 🎥 Camera 🎬Action! +Our 6th Graders are on and behind the scenes at our favorite news station @WKYC! Students ar…" +04/03/2018,Sports_celeb,@KingJames,I shed a tear or 2 every single time this episode comes on! Can’t help it🤷🏾‍♂️. I’ve had that same feeling my whole… https://t.co/adnMBfPKI6 +04/02/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: Dressed and ready to impress!💃Another successful PROM PROMISE hosted by Savannah. + +Each Prom PROMISE participant rece…" +04/02/2018,Sports_celeb,@KingJames,@verizon Yesssss!!! 👏🏾👏🏾 @Verizon the future is NOW! We’re on board 💪🏾🖥💻 @LJFamFoundation #IPS #WeAreFamily https://t.co/rZRQzwayjV +04/02/2018,Sports_celeb,@KingJames,Yes sir!! Best 🍕 pies in the world @BlazePizza. Congrats on your day too @QuavoStuntin! 🙏🏾 https://t.co/2nON8ujtLJ +04/01/2018,Sports_celeb,@KingJames,"RT @ComplexSneakers: Nike boys in Cleveland. + +@jtimberlake in the mismatched ‘Equality’ LeBron 15s and @kingjames is a Red PE of the ‘Prime…" +04/01/2018,Sports_celeb,@KingJames,"RT @jtimberlake: A MOMENT. Had no idea @kingjames was jumping on stage tonight. Thanks for celebrating with us, Cleveland...cheers! 🎥: http…" +04/01/2018,Sports_celeb,@KingJames,🏆🏆🏆🏆🏆🏆🏆🏆 Looks about right! #1 All-Time in Ohio for state championships. 🤷🏾‍♂️😜 #IrishPride🍀 https://t.co/46BzPzmbEX +04/01/2018,Sports_celeb,@KingJames,The reason I wore #9 at wideout in HS! Congrats Peter Warrick! https://t.co/IPwnnKggE5 +03/31/2018,Sports_celeb,@KingJames,So proud to announce this project and to partner with @stanleynelson1!! This story and their struggle feels more im… https://t.co/aiBWwY6Eec +03/31/2018,Sports_celeb,@KingJames,CONGRATS Codey!!!! #BlackBoyFly https://t.co/0Zi9ovtVbI +03/29/2018,Sports_celeb,@KingJames,And we now know that black boys need black men in their lives. Doesn't even need to their father. Thank you to ev… https://t.co/GU3lI12ZJy +03/29/2018,Sports_celeb,@KingJames,Everyone should take time to listen to this. Really deep look at what young black men go through. The idea that it'… https://t.co/zwDrt26nmt +03/28/2018,Sports_celeb,@KingJames,"RT @SpringHillEnt: Congrats to @OceanSky18, @KingJames, @mavcarter, @uninterrupted & @FS1 on the #SportsEmmy nomination for #89Blocks 🏆 htt…" +03/27/2018,Sports_celeb,@KingJames,👀🔥🔥🔥 https://t.co/Z09qqhJZY8 +03/26/2018,Sports_celeb,@KingJames,HAPPY #AirMaxDay!!! Which ones will I wear today 🤔🤷🏾‍♂️😁 +03/26/2018,Sports_celeb,@KingJames,Appreciate you @michaelstrahan!! 🙏🏾 Good to see you today and thanks for taking time to come watch me at work. Keep… https://t.co/7032p5OAaa +03/25/2018,Sports_celeb,@KingJames,RT @BonusSports: 💍💍BACK TO BACK State Champs!!! @STVMAthletics are the most Winningest School is Ohio History.. 8 Rings 😱🔥🔥 s/o to @CoachDr… +03/25/2018,Sports_celeb,@KingJames,@DruOnDemand @scottywaltz7 YES SIR Scott!! Congrats young fella. #CarryOnTradtition #BannerWalk #IrishPride +03/25/2018,Sports_celeb,@KingJames,EXTREMELY PROUD!!!! 🙏🏾 https://t.co/2KxyJs60gF +03/24/2018,Sports_celeb,@KingJames,SUPER GEEKED UP!!!! https://t.co/YB1R9bIQaH +03/24/2018,Sports_celeb,@KingJames,Carry On Tradition!! Congrats Boys and @CoachDruJoyce!!!! #IrishPridd 🏆🏆🏆🏆🏆🏆🏆🏆 https://t.co/BroJ0t2m79 +03/24/2018,Sports_celeb,@KingJames,#MarchForOurLives Salute the youth making a REAL impact!! ❤️❤️ +03/23/2018,Sports_celeb,@KingJames,Well guess what the inner #IrishPride woke me up 2 mins before tipoff anyways! Let’s go Irish ☘️ https://t.co/GRWrljzw8B +03/21/2018,Sports_celeb,@KingJames,🙈😵 https://t.co/YQpxQ6HGj4 +03/21/2018,Sports_celeb,@KingJames,That’s exactly the face! 😁👍🏾 https://t.co/AIuXIF4AQV +03/19/2018,Sports_celeb,@KingJames,Super Throwback. Same mindset as when I was a teenager though! #StriveForGreatness🚀 https://t.co/D79KA9VfUP +03/19/2018,Sports_celeb,@KingJames,@timelesssports_ What y’all missing is how gangster he was to even take 28 FGA’s after taking off a year and a half. Straight savage!! +03/19/2018,Sports_celeb,@KingJames,Absolutely FACTS!! The whole squad!! The original true blue ones with icy outsoles. Congrats @Iam1Cent. https://t.co/ajEkGbvhAs +03/19/2018,Sports_celeb,@KingJames,Good luck boys!! Carry On Tradition #bannerchasers #GoIrish🍀🍀 https://t.co/JEz2126c00 +03/19/2018,Sports_celeb,@KingJames,"Well for the younger generation who missed out, I feel for you but guess what!?!? I’m bringing it back to the big s… https://t.co/TvuYomddrs" +03/17/2018,Sports_celeb,@KingJames,That’s all we know!! 🍀🍀 #bannerchasers #GoIrish https://t.co/fdLY859X2x +03/16/2018,Sports_celeb,@KingJames,@BlazePizza Well that’s the real question. 🤔Maybe do 2 pies. The usual and something too to try out. +03/16/2018,Sports_celeb,@KingJames,Just got to Chicago and @BlazePizza sounds so amazing to me right now! May have to make a stop in there! 🍕 🍕 +03/16/2018,Sports_celeb,@KingJames,😭😭😭😭😭 at my crazy teammates!! Luckily we didn’t get a technical for being on the court! https://t.co/SY8Z87TgJ9 +03/16/2018,Sports_celeb,@KingJames,👀🤦🏾‍♂️💪🏾😤🤷🏾‍♂️🙏🏾👑 https://t.co/DINaYlCTqi +03/14/2018,Sports_celeb,@KingJames,Helleva career @joethomas73!!! Next stop Canton for you brother!! 🧥 https://t.co/QtoT0DKUwP +03/14/2018,Sports_celeb,@KingJames,@CassidyHubbarth @joevardon @clevelanddotcom @FSOAllieOop Damn right she gone kill it! Super excited for her and Al… https://t.co/ZkNK14aneN +03/14/2018,Sports_celeb,@KingJames,🤦🏾‍♂️Don’t know what the hell he was thinking!! 🤔Well actually he wasn’t thinking. 🤷🏾‍♂️ #YallWannaSeeADeadBody https://t.co/2lGdH1jRoO +03/12/2018,Sports_celeb,@KingJames,🔥☝🏾💪🏾 #Vinsanity!!! https://t.co/wiXFzM1oLY +03/11/2018,Sports_celeb,@KingJames,👌🏾 #BronnyYoungKing🤴🏾 #JamesGang👑 https://t.co/7zvGeFwvz8 +03/10/2018,Sports_celeb,@KingJames,👀👀👀🔥🔥🔥🔥👑👑👑 https://t.co/sYCqBmMHql +03/09/2018,Sports_celeb,@KingJames,"Definitely not going today without saying #HappyInternationalWomensDay!! Thank you for being loving, caring, powerf… https://t.co/6hoXSs4pLe" +03/09/2018,Sports_celeb,@KingJames,Prayers sent to you right now and up Jalen Brown!!!! Glad to see you walk off on your own 🙏🏾 +03/08/2018,Sports_celeb,@KingJames,Yo @Royceda59!!!!! No more freestyles man! People gotta pay for those bars! @funkflex it’s your fault! SHEESH 🔥🔥🔥🔥🔥🔥🔥 +03/07/2018,Sports_celeb,@KingJames,Congrats bro on passing the Logo on the All-Time scoring list!! @carmeloanthony +03/06/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: From Akron ➡️ Austin, we love talking about how incredible our kids are anywhere we go. Today, we did just that at @SX…" +03/06/2018,Sports_celeb,@KingJames,You’re even more powerful now than ever before @kevinlove!!! Salute and respect brother! ✊🏾💪🏾🙏🏾 https://t.co/6nL6WoZMCm +03/05/2018,Sports_celeb,@KingJames,#JamesGang👑 Plus they won the whole thing too! https://t.co/Z4TEsZlosO +03/05/2018,Sports_celeb,@KingJames,Congrats!!! Loved “Get Out”!! Keep it going 🙏🏾 https://t.co/8tbjOtJRIX +03/05/2018,Sports_celeb,@KingJames,"RT @nikebasketball: Sport takes us beyond the lines. Congrats, @kobebryant for your award for #DearBasketball 🏆🏆🏆🏆🏆🏆 https://t.co/ljeOqzSuBM" +03/05/2018,Sports_celeb,@KingJames,Salute @kobebryant on that Oscar!! #WeAreMoreThanShutUpDribble #UJustContinueToSitBackAndWatch +03/03/2018,Sports_celeb,@KingJames,Straight up man!! Prayers up to the homie @RickRoss 🙏🏾 https://t.co/YpzSFbgm4Y +03/02/2018,Sports_celeb,@KingJames,🤷🏾‍♂️ The young generation would say I was in my bag and haters will say it’s fake. https://t.co/hCXa7OctWR +03/01/2018,Sports_celeb,@KingJames,@swish41 Congrats man on 31K. Same damn spot on the court as 30K. Haha! Amazing!! +03/01/2018,Sports_celeb,@KingJames,That’s super dope!! @StephenCurry30 need to get those framed for sure. https://t.co/vw3Dl9Ms0N +03/01/2018,Sports_celeb,@KingJames,Love what @KDTrey5 is doing in his hometown with that up and coming learning center! Means a lot to those kids. Salute G! 🙏🏾 +03/01/2018,Sports_celeb,@KingJames,RT @MiamiHEAT: 👀 https://t.co/F3Q2W2eI2q +03/01/2018,Sports_celeb,@KingJames,@MiamiHEAT #CLASSIC!!!!!!!!!!! +02/28/2018,Sports_celeb,@KingJames,🙏🏾 #StriveForGreatness🚀 #LLTK👑 https://t.co/7bL0X1cATJ +02/28/2018,Sports_celeb,@KingJames,What a night last night! #StriveforGreatness🚀 #LLTK👑 https://t.co/rVTachBHBV +02/28/2018,Sports_celeb,@KingJames,Appreciate it Boiiiiiiiiii!! Hurry up and get back so I can get more assist! https://t.co/Jpf95LzI5X +02/27/2018,Sports_celeb,@KingJames,RT @mcten: LeBron James’ ringing endorsement of Black Panther: https://t.co/t5iDDzMik8 +02/27/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: Proud to announce the official appointment of @akronschools’ Rockstar, Principal Brandi Davis, as the principal of the…" +02/26/2018,Sports_celeb,@KingJames,RT @SLAMonline: A new multicolor LeBron 15 is making its debut today. https://t.co/hxmareQaQE +02/26/2018,Sports_celeb,@KingJames,"RT @SLAMonline: ""Fruity Pebbles"" LeBron 4 x ""Fruity Pebbles"" LeBron 15. https://t.co/065xYUvyIe" +02/24/2018,Sports_celeb,@KingJames,Work out Bronny!!! Let’s keep improving and making others better. #JamesGang👑 https://t.co/khNmb6adJp +02/22/2018,Sports_celeb,@KingJames,@RAVIEB @pr_RWTW They look so good! Palm trees 🌴 +02/20/2018,Sports_celeb,@KingJames,@AntDavis23 @verizon 💯we’ll be playing an ASG like this one day. Sheesh!! 😎 https://t.co/0FOjSmkJ9h +02/18/2018,Sports_celeb,@KingJames,RT @KlutchSports: Great times celebrating at our annual “The Game Is Everything” All-Star Dinner! @BenSimmons25 @RealTristan13 @JohnWall @K… +02/18/2018,Sports_celeb,@KingJames,RT @NBATV: The @Warriors' @Money23Green gives NBA TV a behind-the-scenes tour of @mavcarter's @uninterrupted studio in Los Angeles! #NBAAll… +02/18/2018,Sports_celeb,@KingJames,Super dope and crazy varsity jacket @kevinlove!! 🔥🔥🔥 https://t.co/WnTdkaFo04 +02/18/2018,Sports_celeb,@KingJames,RT @BlazePizza: @LJFamFoundation @KingJames Thanks for the love! So glad you stopped by and we hope everyone had a great time! +02/18/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: ALL-STAR | @Blazepizza with the #CLUTCH HOOK UP 💪🔥. To @kingjames, you’re a favorite spot, but to his 330 Ambassadors,…" +02/18/2018,Sports_celeb,@KingJames,RT @LJFamFoundation: #NBAAllStar | @kingjames continues to use All-Star as a vehicle to bring one-of-a-kind experiences to his 330 Ambassad… +02/18/2018,Sports_celeb,@KingJames,Freaking amazing man!!!!! Unbelievable time for father and son! WOW https://t.co/b0PoumJ3eM +02/18/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: #NBAAllStar | 👀👀 LeBron’s 330 Ambassadors take a hard-earned break to watch @teamlebron practice. After all, it wouldn…" +02/18/2018,Sports_celeb,@KingJames,Something lite bro!!!! 🤷🏾‍♂️ https://t.co/beqhWFwYei +02/17/2018,Sports_celeb,@KingJames,#wewillnotshutupanddribble https://t.co/LyenGRKTUE +02/16/2018,Sports_celeb,@KingJames,Thank you Love you @YaraShahidi!! #LoveOurBlackWomen. All of you are special! ✨⭐️ please remember and know that 👸🏽… https://t.co/5VRFJZ4HBk +02/15/2018,Sports_celeb,@KingJames,RT @KDTrey5: Rolling with @carichampion @kingjames: https://t.co/uRkwepGMc0 https://t.co/cmEE5YHpef +02/15/2018,Sports_celeb,@KingJames,💯 https://t.co/RkO6JzYHli +02/15/2018,Sports_celeb,@KingJames,🙏🏾✊🏾💪🏾👑 https://t.co/HeFzH647fv +02/13/2018,Sports_celeb,@KingJames,This is gonna be fun!! Stephen and Jamal are so talented. Very excited to work with them on this. Stay tuned!… https://t.co/VMAshhXCXD +02/13/2018,Sports_celeb,@KingJames,Beautiful Black Empowered Women!! Love y’all!! ❤️ https://t.co/dTXqTNeceV +02/10/2018,Sports_celeb,@KingJames,🔥🔥🔥🔥🔥🔥🔥. Yeah glad you kept those tucked https://t.co/Y1eocdAIZI +02/10/2018,Sports_celeb,@KingJames,RT @NBA: LeBron's #NBAKicks in ATL. https://t.co/3m94adb4sH +02/10/2018,Sports_celeb,@KingJames,"RT @SoleCollector: #SoleWatch: @KingJames debuts the ""Diamond Turf"" Nike LeBron 15 in red. https://t.co/cgTbMYsR28" +02/09/2018,Sports_celeb,@KingJames,👀👀👀💵🔥😍💪🏾 https://t.co/S3YpaAig4R +02/09/2018,Sports_celeb,@KingJames,"HUGE s/o to @StowStudCo & @STVMAthletics. Cheer, student section, community, men’s & women’s bball, the whole famil… https://t.co/otoK1AiwVo" +02/08/2018,Sports_celeb,@KingJames,Happy Gday my G!! 🙏🏾🎂🎊🎉💯 https://t.co/JU74XvZF0I +02/07/2018,Sports_celeb,@KingJames,#Facts 💯 Embrace the struggle! Salute and congrats on that performance and Ring in the big dance @NFoles_9 https://t.co/i4fq9QcSge +02/07/2018,Sports_celeb,@KingJames,Was hoping for the best news when I saw the play after the game. 🤦🏾‍♂️!! Best wishes and have a speedy healthy reco… https://t.co/BlHCfVS5Z4 +02/06/2018,Sports_celeb,@KingJames,50K mins played though @swish41?!?!? Sheesh bro that’s insane. Congrats man! That’s what you call punching in your clock daily! +02/05/2018,Sports_celeb,@KingJames,@Eagles @LG_Blount *Wait +02/05/2018,Sports_celeb,@KingJames,"Hold What A Min, Y’all thought I was finish! #FreeMeek, Congrats @Eagles and the whole city of Philadelphia on thei… https://t.co/GaYHUce723" +02/05/2018,Sports_celeb,@KingJames,#FreeMeek +02/05/2018,Sports_celeb,@KingJames,This is one incredible game to say the least obviously!! AMAZING #SuperBowl2018 +02/05/2018,Sports_celeb,@KingJames,WOW!!!!!!! +02/04/2018,Sports_celeb,@KingJames,Best of luck to both the @Patriots & @Eagles today in the Granddaddy of them all! May the best team be victorious 🙏🏾 #SuperBowl +02/04/2018,Sports_celeb,@KingJames,Salute and congrats to two of my favorites of All-Time @RandyMoss & @terrellowens on the HOF nod! Well damn deserve… https://t.co/uMngrzllVH +02/01/2018,Sports_celeb,@KingJames,S/o to all my #ipromise kids & families ☝🏾🙏🏾🙌🏾💪🏾💪🏾💪🏾🔥!! @ljfamfoundaton #WeAreFamily https://t.co/rTRBNpcHMl +01/31/2018,Sports_celeb,@KingJames,Congrats to my bro @DwyaneWade on passing Larry the Legend Bird in the all time scoring list! #FlashDance⚡️ +01/31/2018,Sports_celeb,@KingJames,C’mon @JHarden13!!! Now that’s insane G! 60 point Triple Dub. Sheesh!!! 🔥🔥🔥🔥🔥 +01/29/2018,Sports_celeb,@KingJames,"Happy Gday to one of my day 1s @DruOnDemand!!! Love bro, enjoy your day my brother!! #LiveLaughLove" +01/29/2018,Sports_celeb,@KingJames,Happy Bday Coach Pop!! One of the best to ever do(in my opinion thee best) and even more great guy! #Respect +01/28/2018,Sports_celeb,@KingJames,@JColeNC *aint the same +01/28/2018,Sports_celeb,@KingJames,Happy Bday to one of the best MC’s ever @JColeNC! All we know they sit the same 🙏🏾✊🏾👑 https://t.co/XnFWtqpsI8 +01/28/2018,Sports_celeb,@KingJames,I do get to pick who starts on my #TeamLeBron team since I had an injury on my team correct?!?! By the @Yg_Trece happy to have u bro!! +01/28/2018,Sports_celeb,@KingJames,@KyrieIrving & @StephenCurry30 just simply amazing!! Sheesh man! 🔥🔥🔥🔥🔥🔥🔥 +01/27/2018,Sports_celeb,@KingJames,Prayers sent to @FlyDre21! Hope you gone be good homie. 🙏🏾 +01/27/2018,Sports_celeb,@KingJames,25K large!!!!! Congrats my brother @carmeloanthony #WalkingBuckets +01/27/2018,Sports_celeb,@KingJames,#WeAreFamily👊🏾 https://t.co/0wiGGUus5k +01/27/2018,Sports_celeb,@KingJames,🙏🏾 https://t.co/CoBg8t2ktz +01/27/2018,Sports_celeb,@KingJames,Thoughts out to @boogiecousins! Hope you good big fella. 🙏🏾 +01/26/2018,Sports_celeb,@KingJames,RT @uninterrupted: 👀 https://t.co/pUeSSelR0V +01/25/2018,Sports_celeb,@KingJames,🙏🏾 https://t.co/tBML5X6WYa +01/25/2018,Sports_celeb,@KingJames,Thank you! 💪🏾 https://t.co/iMGofUVHNq +01/25/2018,Sports_celeb,@KingJames,☝🏾 #StriveForGreatness 🚀 https://t.co/u5jMoUEN79 +01/25/2018,Sports_celeb,@KingJames,Yo @StephenCurry30 that was fun!! Definitely should’ve been televised. 🤷🏾‍♂️ #AllStarDraft⭐️ +01/24/2018,Sports_celeb,@KingJames,"Thank you, Thank you, Thank you to all my family, friends, colleagues, business partners and fans for reaching out… https://t.co/LobQVjOaIh" +01/23/2018,Sports_celeb,@KingJames,Yo @boogiecousins chill out man!! Sheesh!!! Super sick stat line +01/20/2018,Sports_celeb,@KingJames,🤣🤣🤣🤣🤣🤣! U forgot Teen 🐺 too. https://t.co/lUGigkAJL9 +01/20/2018,Sports_celeb,@KingJames,Just trying to be remembered and leave a mark on the game. Truly honored and blessed! 🙏🏾👑#StriveForGreatness🚀 https://t.co/I0ZULtrILJ +01/19/2018,Sports_celeb,@KingJames,🤩🤷🏾‍♂️👑 https://t.co/Qj24sUqUNN +01/19/2018,Sports_celeb,@KingJames,Man was I garbage tonight! 🤢💩🤮😷!!!! Thank God for teammates. Appreciate it fellas ✊🏾🙏🏾#StriveForGreatness🚀 +01/17/2018,Sports_celeb,@KingJames,Happy Gday to my brother from another @DwyaneWade!! Been my dog since we started this journey almost 15 years ago.… https://t.co/1v85vm2brW +01/15/2018,Sports_celeb,@KingJames,-Injustice Anywhere Is A Threat To Justice Everywhere- Our Lives Begin To End The Day We Become Silent About Thing… https://t.co/YgsYFMa4wb +01/14/2018,Sports_celeb,@KingJames,"In my own words, unscripted. 👑UNTIL WE ALL WIN #EQUALITY https://t.co/iy3fF40az8" +01/13/2018,Sports_celeb,@KingJames,Man just landed back in Cleveland and I have to say in the 29 years I've lived here this is the coldest I've felt i… https://t.co/aZE2in9sIw +01/13/2018,Sports_celeb,@KingJames,Definitely stepped out by a tiny bit after seeing it over again! Great call. Needed to be in OKC on that drive. Lol. Live and you Learn +01/12/2018,Sports_celeb,@KingJames,"RT @AC360: ""Let me be clear.... the people of Haiti have been through more, withstood more, fought back against more injustice... than our…" +01/12/2018,Sports_celeb,@KingJames,"RT @CNN: ""Not racial. Not racially charged. Racist. ... The sentiment the President expressed today is a racist sentiment."" Anderson Cooper…" +01/11/2018,Sports_celeb,@KingJames,#NBAVote my lil bro @BenSimmons25! He definitely got next +01/11/2018,Sports_celeb,@KingJames,#NBAVote my bro aka Yellow @carmeloanthony!! +01/11/2018,Sports_celeb,@KingJames,#NBAVote my brother aka the Point God @CP3! +01/11/2018,Sports_celeb,@KingJames,@KDTrey5 Congrats G on 20K!! Lots and lots of buckets! Easy too +01/10/2018,Sports_celeb,@KingJames,Going to be one of the greatest days of my life and my kids when this happens! #WeAreFamily https://t.co/U9KcXv7iyO +01/09/2018,Sports_celeb,@KingJames,Hope the homie @Klow7 is straight! Thinking about you G! 🙏🏾 +01/09/2018,Sports_celeb,@KingJames,@Rachel__Nichols U get a full time Tequila bar I'm coming on the show!! 🤣🤣🤣🍸🤷🏾‍♂️ +01/08/2018,Sports_celeb,@KingJames,"#NBAvote my brother from another, day 1 @DwyaneWade" +01/08/2018,Sports_celeb,@KingJames,#NBAvote My lil pit bull @isaiahthomas!! +01/08/2018,Sports_celeb,@KingJames,@djmeel I saved you money! Lucky I didn't bet you. U know better. #GoIrish☘️ +01/07/2018,Sports_celeb,@KingJames,@Channing_Frye Hahahahaha!!!! +01/07/2018,Sports_celeb,@KingJames,#NBAVote @kevinlove to the All-Star game! I mean just look at his monster year so far! I see you working boooooiiiiii!! +01/06/2018,Sports_celeb,@KingJames,Happy Gday to my brother from day 1 @SianCotton85!! 🙏🏾💪🏾✊🏾👑 +01/05/2018,Sports_celeb,@KingJames,Man I just had the GREATEST Thai massage of all time!! Got me feeling like a slinky. Straight up!! +01/05/2018,Sports_celeb,@KingJames,Congrats to my G @russwest44 on his signature shoe!! Welcome to the gang bro! 🙏🏾✊🏾💪🏾👑 +01/03/2018,Sports_celeb,@KingJames,Retro coming soon..??? Just maybe 🤷🏾‍♂️😐💪🏾👑 https://t.co/i4oJcDLtzG +01/02/2018,Sports_celeb,@KingJames,Let's go!!! 🙏🏾💪🏾👑 #WeAreFamily https://t.co/ZpkmagrjX9 +12/31/2017,Sports_celeb,@KingJames,🙏🏾✊🏾💪🏾👑. THANK YOU https://t.co/iWozwH9QPk +12/30/2017,Sports_celeb,@KingJames,🙏🏾💪🏾👑 https://t.co/z0XkOSTaeN +12/30/2017,Sports_celeb,@KingJames,Love you guys! Thanks! 🙏🏾 https://t.co/cpiiCFhdaI +12/30/2017,Sports_celeb,@KingJames,My G appreciate it! 🙏🏾 https://t.co/ah7jHapKuS +12/30/2017,Sports_celeb,@KingJames,My G appreciate it! 🙏🏾 https://t.co/iexBPp6GpG +12/25/2017,Sports_celeb,@KingJames,Being away from my family for the Holidays for work is the absolute worst! Love what I do and wouldn't change it fo… https://t.co/jOHHYy38lA +12/25/2017,Sports_celeb,@KingJames,Family ties! We push each so we can stand alone when needed but we move as 1 unit so it makes us even stronger! 💪🏾✊… https://t.co/iKrPciNROi +12/24/2017,Sports_celeb,@KingJames,Yes sir!! Oh I already know https://t.co/WVUulTpyUB +12/24/2017,Sports_celeb,@KingJames,RT @SLAMonline: LeBron's Christmas Day highlight package. 🔥🔥🔥 https://t.co/eR0RrDJhYl +12/23/2017,Sports_celeb,@KingJames,👌🏾🔥 #StriveForGreatness https://t.co/qxU6lImbBt +12/23/2017,Sports_celeb,@KingJames,"It's 6 o'clock in the morning, let's get these pads lit up!🔥🚨🏆💪🏾👌🏾#StriveForGreatness🚀 https://t.co/qBFA7z9bCO" +12/22/2017,Sports_celeb,@KingJames,You damn right y'all are!! Beautiful Powerful Smart Black Women! ✊🏾🙏🏾👸🏾 https://t.co/m2WP0o6UJ9 +12/22/2017,Sports_celeb,@KingJames,Go check it out now. Lots of insight from of my closest that has seen the journey. https://t.co/4WuwzXMloC 👑🦁🙏🏾… https://t.co/3EPKXrkAn4 +12/21/2017,Sports_celeb,@KingJames,✊🏾🙏🏾👑 https://t.co/T4HSM0zjBH +12/21/2017,Sports_celeb,@KingJames,Well she actually has more game than me! Amazing examples inside our Kingdom! Queen 👸🏾 James get it girl!!… https://t.co/8k2CMXb7EW +12/21/2017,Sports_celeb,@KingJames,RT @GQMagazine: These 4 pairs got Nike its mojo back https://t.co/11TwSVP3vM https://t.co/LSNc9XrXTx +12/21/2017,Sports_celeb,@KingJames,"RT @LJFamFoundation: You never know who it’ll be when the bell rings! Last night, a team of #EastOhio @Chase elves visited five #IPromise f…" +12/21/2017,Sports_celeb,@KingJames,RT @LJFamFoundation: 🥁🥁🥁🚨🔥👨‍⚕️👩‍⚕️🏆💪👍!!!! Translation: we’re proud to announce our long term partnership with #CrystalClinic Orthopaedic Ce… +12/20/2017,Sports_celeb,@KingJames,@shonrp2 You already know! ✊🏾💪🏾👑 +12/20/2017,Sports_celeb,@KingJames,@PCampbell21 Yes sir!! ✊🏾💪🏾👑 +12/20/2017,Sports_celeb,@KingJames,Congrats young 👑 @shonrp2!!! Keep going. #StriveForGreatness🚀 #OH https://t.co/Cn3LduD7Xr +12/20/2017,Sports_celeb,@KingJames,That's amazing!!! Keep going young 👑 @PCampbell21!! #IrishAlumProud☘️ #OH https://t.co/v63yIFJET8 +12/19/2017,Sports_celeb,@KingJames,"This hurts my heart but HUGE s/o to Gracie, @stowstudco & the entire #Stow community. You guys were unbelievable. A… https://t.co/tgMrevJK6W" +12/19/2017,Sports_celeb,@KingJames,"Congrats @kobebryant!! Dayuumm man NOT1, NOT 2.. ok it is 2 jerseys going up! Amazing G and appreciate the inspirat… https://t.co/YruxajNGLj" +12/18/2017,Sports_celeb,@KingJames,👀👀👀😐 YOU DIDN’T HAVE TO DO ‘EM LIKE THAT EB!! That’s not right. Smh. #GETMYMANON #SCTOP10 #WingfootsClassic… https://t.co/3yogswIIfu +12/18/2017,Sports_celeb,@KingJames,So proud of everyone at @LJFamFoundation!! This is your story. Thank you! https://t.co/bCiVoMUiS3 +12/18/2017,Sports_celeb,@KingJames,The move was cool but what's the best part of the whole thing is my guys @kevinlove and Kyle reaction!! 🤙🏾 https://t.co/SqGyLjCeLp +12/16/2017,Sports_celeb,@KingJames,@blackthought Went in something crazy on @funkflex!! SHEESH!! Went for 10 mins straight. Always been a fan of his style and bars. #HipHop101 +12/16/2017,Sports_celeb,@KingJames,Yeah that pretty much sums it up! @CP3 @TrevorAriza https://t.co/ffKGvIiDw3 +12/16/2017,Sports_celeb,@KingJames,Man this game is NUTS!!!!! #OKCvsPHI #AFansTreat +12/15/2017,Sports_celeb,@KingJames,Yes they are!!! 🔥🔥🔥🔥 https://t.co/xwVh3efXPh +12/15/2017,Sports_celeb,@KingJames,👀👀👀 y’all got me in there singing the wrong alma mater!! Man - vicious. Pumped for you guys. Hope you're enjoying t… https://t.co/tVqtLSxUzZ +12/15/2017,Sports_celeb,@KingJames,WHO DID THIS!!!?Let them know I'm looking for them😂😂😂😂 #StriveForGreatness🚀 https://t.co/d8DJ9EGAEF +12/15/2017,Sports_celeb,@KingJames,It ain’t no game out here with @stowstudco. Turning the #WingfootsClassic into a war. Y’all LUCKY I like pups… https://t.co/pcuny6qQzN +12/15/2017,Sports_celeb,@KingJames,RT @SpringHillEnt: #DoOrDare is LIVE!!! You won't believe the CRAZY dare @Usher and @jermainedupri do to win money for their favorite chari… +12/14/2017,Sports_celeb,@KingJames,Of course they are! Let's go ladies! #GoIrish☘️ https://t.co/1xmjsvw6uw +12/14/2017,Sports_celeb,@KingJames,Yes they are ready!! #GoIrish☘️ https://t.co/lA7XXZscGv +06/25/2018,Sports_celeb,@carmeloanthony,"I can go on and on, but at the end of the day, to make a long story short, HAPPY BORN DAY!!! Love ❤️ You" +06/25/2018,Sports_celeb,@carmeloanthony,The way you hold our family down is Remarkable. I know you’ve been through a lot. Somethings people just would neve… https://t.co/MiuCHGoi0v +06/25/2018,Sports_celeb,@carmeloanthony,I want to acknowledge A VERY SPECIAL PERSON on A VERY SPECIAL DAY!!! @lala It’s very hard to put in words how speci… https://t.co/eeSbaKh783 +06/24/2018,Sports_celeb,@carmeloanthony,"Oh You Mad, Huh? 😂 “Take A Step Back, Evaluate, What Is Important, And Enjoy Life” +#STAYME7O https://t.co/emlzaQr5pH" +06/24/2018,Sports_celeb,@carmeloanthony,"So You Mean To Tell Me...NVRMND +#STAYME7O https://t.co/pRcawCJqzI" +06/23/2018,Sports_celeb,@carmeloanthony,"😲 OH WORRRDDD? 😆😂😝 +#STAYME7O https://t.co/2bxvcxAJXq" +06/21/2018,Sports_celeb,@carmeloanthony,"BLACK EFFECT +“What’s Understood Doesn’t Need To Be Spoken on” +This is 🔥. Thanks 🙏 sis @beyonce +#STAYME7O https://t.co/cShI3xVlAK" +06/21/2018,Sports_celeb,@carmeloanthony,"BULLETPROOF DIARIES *coming soon +#STAYME7O https://t.co/kw8nZ84huR" +06/20/2018,Sports_celeb,@carmeloanthony,"“Fashion Has Always Been A Repetition Of Ideas, But What Makes It New Is The Way You Put It Together” +#STAYME7O https://t.co/whBQtZICXb" +06/20/2018,Sports_celeb,@carmeloanthony,"Front Row Shenanigans +@MaisonValentino https://t.co/GjKN2ixFhc" +06/20/2018,Sports_celeb,@carmeloanthony,“For All The Low Hangin Fruit. You Get Your Work Done Early So You Can Enjoy The Fruit Of Your Labour” 😝… https://t.co/udiimvM0r1 +06/20/2018,Sports_celeb,@carmeloanthony,"“Life Can Only Be Understood Backwards; But It Must Be Lived Forward” +#STAYME7O https://t.co/JfuCzDoAc6" +06/18/2018,Sports_celeb,@carmeloanthony,"*Mood +“All Critics Can Duck Sick” +#STAYME7O https://t.co/mJfSWP9kYC" +06/18/2018,Sports_celeb,@carmeloanthony,"We Live On A Blue Planet 🌎 That Circles Around A Ball Of Fire 🔥 Next To A Moon 🌚 That Moves The Sea 🌊, And You Don’… https://t.co/xTAEVptSSC" +06/17/2018,Sports_celeb,@carmeloanthony,"IF YOU KNOW ME, YOU KNOW!!! +@nas +#STAYME7O https://t.co/nta9Lh519b" +06/06/2018,Sports_celeb,@carmeloanthony,#STAYME7O @kingjames @NBA2k cover athlete #Brotherhood https://t.co/hmcy5qUHOD https://t.co/R1R9ShdpbF +05/29/2018,Sports_celeb,@carmeloanthony,PROUD FATHER Moment!!! #STAYME7O https://t.co/eEgCRfHsMj +05/29/2018,Sports_celeb,@carmeloanthony,"Proud of My New NYC 5th grade AAU team #BlackOpsCadets +GREAT Weekend at The Memorial Day TAKEOVER Tournament. Lost… https://t.co/69cA3p6m7X" +05/24/2018,Sports_celeb,@carmeloanthony,"AJ2 MELO #rebirth @finishline +#STAYME7O + +Early footwear release available: +Grand Opening 5/26 @ 8AM +Finish Line Par… https://t.co/YAwE8gQx4J" +05/21/2018,Sports_celeb,@carmeloanthony,"""The Dream Is 🆓, The Hustle Sold Separately"" +BLACK Ops +#STAYME7o https://t.co/Eynhu5Trz0" +05/14/2018,Sports_celeb,@carmeloanthony,"Happy Mother’s Day to the strongest and bravest woman I know!!! Thanks for being our rock @lala +#STAYME7O https://t.co/WmPZMYybIl" +05/03/2018,Sports_celeb,@carmeloanthony,"Congrats @aeneas_dicosmo on narrowing it down, big decisions ahead. https://t.co/lwCRcVA0VH" +04/15/2018,Sports_celeb,@carmeloanthony,"FROZEN MOMENT - NEW CHAPTER +@Jumpman23 +#STAYME7O +#JUMPMAN https://t.co/6tXrviSCi6" +04/13/2018,Sports_celeb,@carmeloanthony,INSPIRATION 🙏🏽 @cp3 #STAYME7O https://t.co/vDrf02SL5R +04/11/2018,Sports_celeb,@carmeloanthony,"Happiness is to be found within your own life, in your thoughts at this very moment. You yourself are most noble an… https://t.co/1TcxKIzkHa" +04/05/2018,Sports_celeb,@carmeloanthony,"The #DreamStillLives… What’s yours? +#STAYME7O https://t.co/WbqUdgUmq6" +04/05/2018,Sports_celeb,@carmeloanthony,"RT @StevieWonder: On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for his dre…" +04/04/2018,Sports_celeb,@carmeloanthony,The #IAmMLKJr documentary…catch it tonight 9/8c @paramountnet #MLK50 https://t.co/zQfeDfizgI +04/04/2018,Sports_celeb,@carmeloanthony,"""Injustice anywhere is a threat to justice everywhere.” - #MLK50 #STAYME7O https://t.co/toHzA8Ea4f" +03/27/2018,Sports_celeb,@carmeloanthony,"""TRIUMPH"" - in theaters until 3/29 NYC & LA +#PerryWallaceFilm +#STAYME7O +https://t.co/SWDw2gcVaU https://t.co/AvYyKMF0zQ" +03/23/2018,Sports_celeb,@carmeloanthony,"Partnering with @MTV @NAACP and my city of Bmore to support #MarchForOurLives. + +Sending over 4,500 kids from Balti… https://t.co/8S4k6JQ47x" +03/19/2018,Sports_celeb,@carmeloanthony,"“Haters Gonna Say This Is Photoshopped” +Sorry @Money23Green +#STAYME7O https://t.co/URMKDX9vMp" +03/15/2018,Sports_celeb,@carmeloanthony,"I’m sure we made The whole MHP and McHP(Those who know, know) proud. B’MORE period was represented to the world. On… https://t.co/26eyLby2qZ" +03/15/2018,Sports_celeb,@carmeloanthony,One of the greatest days of my life. Playing against my best friend first round of NCAA tourney. We sat in my house… https://t.co/KR0EmoTArh +03/15/2018,Sports_celeb,@carmeloanthony,"Squad Up +One Down!!! +Sorry @JHarden13 😂 +#STAYME7O https://t.co/noJUPIm9rg" +03/11/2018,Sports_celeb,@carmeloanthony,RT @DwyaneWade: They need our help! I'm asking my NBA fam to join us in raising money to send kids from underserved communities to March….@… +03/11/2018,Sports_celeb,@carmeloanthony,RT @DwyaneWade: Spoke to my brother @carmeloanthony & we're standing w/ students from MSD. We both come from communities where gun violence… +03/10/2018,Sports_celeb,@carmeloanthony,I'm giving and supporting to my community and the students of Baltimore. @TheNBPA Foundation will match up to $25k… https://t.co/oZjKAED0xB +03/10/2018,Sports_celeb,@carmeloanthony,.@DwyaneWade and I on the same page... Standing with the students of MSD - both of us come from hometowns where the… https://t.co/QsCrGAMAeA +03/08/2018,Sports_celeb,@carmeloanthony,"Happy Born Day 👑 +""If I Could Give You One Thing In Life, I Would Give You The Ability To See Yourself Through My Ey… https://t.co/9y5WG5D6qA" +03/01/2018,Sports_celeb,@carmeloanthony,"“The Future Is In Good Hands” +Young Kings 👑 +@Diddy +#STAYME7O https://t.co/Y6sWSM2dll" +02/27/2018,Sports_celeb,@carmeloanthony,"We each move forward, secure on our own earth, not the earth of others. Happiness is something we must create for o… https://t.co/LD082sodJ6" +02/24/2018,Sports_celeb,@carmeloanthony,“Breath of fresh air” #STAYME7O @espn @okcthunder #ThunderUP https://t.co/RcVUJPlWA8 +02/24/2018,Sports_celeb,@carmeloanthony,"📷hat: “Sage Camo” +#FreshGreens +#STAYME7O https://t.co/V0gCpFSj6X" +02/24/2018,Sports_celeb,@carmeloanthony,"📷 Hat: “Everyday Camo” +MELOxGoorinBros +#FreshGreens +#STAYME7O https://t.co/5JFfjsw57R" +02/24/2018,Sports_celeb,@carmeloanthony,"New Collection “Fresh Greens” +MELOxGoorinBros. +📷 hat: Melo Mint +#STAYME7O https://t.co/lkangZXTIi" +02/21/2018,Sports_celeb,@carmeloanthony,"TRUST:NOBODYs +RED Vibes 👂 🔊🔊”BLUE LACES” +#VictoryLap +#STAYME7O https://t.co/qh1Pz5rZfY" +02/18/2018,Sports_celeb,@carmeloanthony,Tune in tonight @NBAonTNT 7p ET ‘Sports & Society’ #STAYME7O https://t.co/TkL74fMwJY +02/18/2018,Sports_celeb,@carmeloanthony,"RT @NBAonTNT: #NBAAllStar pregame coverage will include a special Sports & Society roundtable show featuring Dwyane Wade, Chris Paul & spec…" +02/17/2018,Sports_celeb,@carmeloanthony,"“We Will Never Rush The Hands Of Time” +#STAYME7O https://t.co/MFlzaYxrye" +02/16/2018,Sports_celeb,@carmeloanthony,Sports & Society...airing Sunday 2/18 7p ET on TNT #StayMe7o https://t.co/TzUHmFdURY +02/14/2018,Sports_celeb,@carmeloanthony,"***❤️ MINE FOREVER!!! +HAPPY VALENTINES DAY to MY WIFE @lala +#STAYMe7O https://t.co/lbUzpcOpV3" +02/02/2018,Sports_celeb,@carmeloanthony,"All Praise Due 🙏 +#STAYME7O https://t.co/uTFy6Oplgt" +01/28/2018,Sports_celeb,@carmeloanthony,RT @TeamMe7o: Big ups @carmeloanthony on hitting 25k points! Going strong 💪💪 #StayMe7o https://t.co/3465XfoCZr +01/28/2018,Sports_celeb,@carmeloanthony,.@Yg_Trece congrats on it 🙏 #NBAallstar +01/27/2018,Sports_celeb,@carmeloanthony,"“When The Music Changes, So Does The Dance” *AfrikanProverbs +#STAYME7O https://t.co/Te1WZaVUng" +01/24/2018,Sports_celeb,@carmeloanthony,Big ups to my guy @russwest44 🙏🏾 #NBAAllstar #ThunderUP +01/22/2018,Sports_celeb,@carmeloanthony,Congrats @kingjames 🙏🏽 #NBAAllStar captain leading the East #StriveforGreatness #StayMe7o +01/21/2018,Sports_celeb,@carmeloanthony,"“Canadian Tux” +Yeah Ehhh, Dun Kno! 😆 +#STAYME7O https://t.co/avYjkZbEsA" +01/17/2018,Sports_celeb,@carmeloanthony,"“Its The Repetition Of Affirmations That Leads To Belief. And Once That Belief Becomes A Deep Conviction, Things Be… https://t.co/dR690D6qdq" +01/15/2018,Sports_celeb,@carmeloanthony,"“Progress Will Always Be Uncomfortable And Noisy” +#MLKDay +#STAYME7O https://t.co/SaVCF1Yuks" +01/15/2018,Sports_celeb,@carmeloanthony,"EQUALITY @Jumpman23 + +MELO AJ1: https://t.co/OYSn9yfWX5 + +#Hoodieszn: https://t.co/u3i9tSB1CK + +#STAYME7O https://t.co/gBhjsxsBis" +01/15/2018,Sports_celeb,@carmeloanthony,Proud of our work with the W.K. Kellogg Foundation. Tune in tomorrow at 6:30pm CST to celebrate our common humanity… https://t.co/VpH44KKxhC +01/14/2018,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/TWGW4dBTUL +01/13/2018,Sports_celeb,@carmeloanthony,Vote @CP3 @KingJames @DwyaneWade @russwest44 @Yg_Trece #NBAAllStar https://t.co/Km4eG8FZXc #StayMe7o +01/04/2018,Sports_celeb,@carmeloanthony,New #MeloMoji's are live...check them out at https://t.co/27tQpZL3OU & https://t.co/h72GW44ZFN #ThunderUp #StayMe7o https://t.co/3b1hieFpEV +12/27/2017,Sports_celeb,@carmeloanthony,"GRA7EFUL +#STAYME7O https://t.co/ITD69kiFHj" +12/14/2017,Sports_celeb,@carmeloanthony,Respect. #YearInSearch @google #StayMe7o https://t.co/1zwbOKrdE1 +11/21/2017,Sports_celeb,@carmeloanthony,Thank u @footlocker... #Greatnessdoesgood New shoes donated in the USA will be sent directly to Puerto Rico for thi… https://t.co/GrafWrrF2r +11/19/2017,Sports_celeb,@carmeloanthony,"INNER-PEACE +#STAYME7O https://t.co/Ss6rX2d8hU" +11/18/2017,Sports_celeb,@carmeloanthony,Proud of @jessomatt on all the hard work she’s put in with #UnchartedPower - big time POWER play @upowerco #StayMe7o https://t.co/bUoQGFJl9t +11/16/2017,Sports_celeb,@carmeloanthony,Working with @footlocker give back to my people in Puerto Rico. Join us in this fight https://t.co/PtprbCOCgI… https://t.co/gVd6MggTJB +11/15/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/2JiB1lTJlG +11/14/2017,Sports_celeb,@carmeloanthony,"Me7o Monday’s +#STAYME7O https://t.co/qPxZU9W5D5" +11/14/2017,Sports_celeb,@carmeloanthony,"“Be The Reason Someone Smiles” +#800Families800ReasonsToSmile +#STAYME7O https://t.co/hRyLUioD3Z" +11/11/2017,Sports_celeb,@carmeloanthony,"#HoodieSzn + +https://t.co/MgNCeD0Fd3 https://t.co/4iwh4DQkYu" +11/09/2017,Sports_celeb,@carmeloanthony,"#HoodieSzn #StayMe7o + +https://t.co/1Iapu7hLUg https://t.co/bCn5s5veDo" +11/05/2017,Sports_celeb,@carmeloanthony,"Always Remember Someone Is Looking Up To You!! +#STAYME7O https://t.co/hc9uIKNJcF" +10/31/2017,Sports_celeb,@carmeloanthony,We distributed 100k lbs of food and water to the families & children of #PuertoRico... Join us @Youcaring #StayMe7o… https://t.co/rHDnsy7q0E +10/23/2017,Sports_celeb,@carmeloanthony,"#ValentinoResort2018 +@MaisonValentino +#STAYME7O https://t.co/XEQfJwbnl5" +10/23/2017,Sports_celeb,@carmeloanthony,"@MaisonValentino +#valentinoresort18 “Just The Beginning” +#STAYME7O https://t.co/fWZVQfllGd" +10/21/2017,Sports_celeb,@carmeloanthony,"RT @manuel_aj_laboy: Despite of current challenges, Puerto Rico responded to #AmazonHQ2 RFP. Our message is bold and clear: We will emerge…" +10/19/2017,Sports_celeb,@carmeloanthony,"“You Watched Me Walk Through Hell, Now Watch Me Walk Up Out It” +#STAYME7O https://t.co/w9h0LgAqv4" +10/13/2017,Sports_celeb,@carmeloanthony,We need to focus on tragedies that don't always get the attention they deserve. #PuertoRico @youcaring… https://t.co/hdLOA02so6 +10/11/2017,Sports_celeb,@carmeloanthony,"At The Center of YOUR Being, You Have The Answer. You Know Who You Are And You Know What You Want!!! +#STAYME7O https://t.co/R7H7Ofx8b7" +10/09/2017,Sports_celeb,@carmeloanthony,I'm working w @feedthechildren to make sure all those affected by #HurricaneMaria in #PuertoRico get the supplies t… https://t.co/DS2mfcw4gs +10/09/2017,Sports_celeb,@carmeloanthony,Much love to Earl Lloyd for paving the way for me to play in this league. #TheFirstToDoIt in theatres February 2018… https://t.co/5ya2Sm536g +10/06/2017,Sports_celeb,@carmeloanthony,"Mad I missed Laundry day. +Kiyan w/ the Spin Cycle!!! +#STAYME7O https://t.co/ofd7PXnM1h" +10/05/2017,Sports_celeb,@carmeloanthony,Help aid the relief efforts of #HurricaneMaria by donating to my @youcaring page. #PuertoRico needs help. #StayMe7o… https://t.co/Th1vv6sHIx +10/03/2017,Sports_celeb,@carmeloanthony,"Tune in to #FindingYourRoots, season 4, with @HenryLouisGates premiering tonight, Oct 3 at 8/7c on @PBS #StayMe7o" +09/30/2017,Sports_celeb,@carmeloanthony,"Puerto Rico is without power, but NOT powerless. Teaming up w/ #CarmeloAnthonyFoundation to aid the relief efforts.… https://t.co/z8Wig39Za3" +09/29/2017,Sports_celeb,@carmeloanthony,Talking ball & style with @GothamMag... Check the Fall issue cover story out now #StayMe7o https://t.co/qd1gDLcGwG https://t.co/Ur092LzExG +09/28/2017,Sports_celeb,@carmeloanthony,"Road to recovery in #PuertoRico won't be easy, +but I'll be there every step of the way. Visit my @youcaring page… https://t.co/Y4l8mWswjv" +09/25/2017,Sports_celeb,@carmeloanthony,"Dear NEW YORK, + +From the day I first met you, I knew we were meant to be together... https://t.co/0kFojmkrve https://t.co/iMbLpTmZtk" +09/22/2017,Sports_celeb,@carmeloanthony,"I’ve set up a @YouCaring page to aid the relief efforts in Puerto Rico. We need your help in this fight. + +Donate:… https://t.co/XjjT8kAoSv" +09/18/2017,Sports_celeb,@carmeloanthony,"If you lose today, win tomorrow. In this never-ending spirit of challenge is found the heart of a victor.… https://t.co/hrc9rlH1ea" +09/14/2017,Sports_celeb,@carmeloanthony,"""People do not grow when they are not challenged. It is in the midst of suffering & hardship that strength of chara… https://t.co/xi1Giw4Ue1" +09/12/2017,Sports_celeb,@carmeloanthony,"Can't Make Sense Out Of Non Sense! +""A certain darkness is needed to see the stars."" +@espn Don't be so Blatant with… https://t.co/S1zH47aUSY" +09/11/2017,Sports_celeb,@carmeloanthony,"Another Day At The Office!!! +M7 Black Ops +#STAYME7O https://t.co/oKegElbOjr" +09/11/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/01ivvhr0EK +09/06/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/S30oMVAgTm +09/06/2017,Sports_celeb,@carmeloanthony,"""Celebrating All Woman All Sizes"" @lala Words Can't explain how Proud I am of YOU. Always setting the bar higher. L… https://t.co/NoDdsjVzip" +09/04/2017,Sports_celeb,@carmeloanthony,"""You shouldn't imitate those who came before. You must discover, manifest, & share what makes You- & ONLY YOU- exce… https://t.co/MqvkTtjwFq" +08/26/2017,Sports_celeb,@carmeloanthony,"""When we have a clear purpose in life we can overcome anything. WITHOUT a sense of purpose, our lives begin a slow… https://t.co/2krsuLzEGF" +08/21/2017,Sports_celeb,@carmeloanthony,"""The Wolf 🐺 On The Hill Is Not As Hungry As The Wolf 🐺 Climbing The Hill"" +#STAYME7O https://t.co/P4DqengFzk" +08/20/2017,Sports_celeb,@carmeloanthony,"NOBODY's FC⚽️ +#STAYME7O https://t.co/SrfWtmSikP" +08/16/2017,Sports_celeb,@carmeloanthony,"Pt.4 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/iuRveKPjjs" +08/16/2017,Sports_celeb,@carmeloanthony,"PT.3 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/sPb5sDT5oV" +08/16/2017,Sports_celeb,@carmeloanthony,"PT.2 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/pxnaYJTH6P" +08/15/2017,Sports_celeb,@carmeloanthony,"""Positive Energy Always Create Elevation"" +M7 #AcademyBasketball BLACK OPS Session PT.1 +#STAYME7O +PT.2 Coming soon https://t.co/ZvU9zGCl62" +08/12/2017,Sports_celeb,@carmeloanthony,"To strive even higher, to do even better—the creative process is a desperate struggle to go beyond what we were yes… https://t.co/mjcAMjDti9" +08/05/2017,Sports_celeb,@carmeloanthony,New 2-pack options now live on https://t.co/XFKXbshHHK. Max comfort where it counts #Frigo #iwearfrigo… https://t.co/H54Sfc11CU +08/03/2017,Sports_celeb,@carmeloanthony,2 million dollars on the line tonight... tune in on @ESPN at 7p ET for the @thetournament https://t.co/IcplA1ag8m… https://t.co/6YPZuC7jFz +07/30/2017,Sports_celeb,@carmeloanthony,👀❤️🌏 https://t.co/RdwwMdBkcR +07/30/2017,Sports_celeb,@carmeloanthony,Couple days until @thetournament Championship game in Baltimore. Tune in @ESPN at 7p ET. More info here:… https://t.co/xQdLL9fCWT +07/23/2017,Sports_celeb,@carmeloanthony,Good luck to Cuse. The dream is still alive. Win this one and I'll see you in Baltimore! #TBT2017 +04/14/2017,Sports_celeb,@carmeloanthony,"REALLY 😂😂 +#StayMe7o https://t.co/Y9Vky2zgLh" +04/14/2017,Sports_celeb,@carmeloanthony,Paving the way for those to come. Catch @JordanClassic #NEXTvsNEXT tonight on ESPN. #FBF https://t.co/cOS11a6l32 +04/04/2017,Sports_celeb,@carmeloanthony,Discover your own color. Mine is Sungmoon... What's yours? Thanks @SamsungTV #FindYourColor here:… https://t.co/Obw6W5Qm49 +03/30/2017,Sports_celeb,@carmeloanthony,"""Baltimore will always have a special place in my heart, and I'm excited to bring @thetournament to this city.""… https://t.co/6YtLREs1Bn" +03/16/2017,Sports_celeb,@carmeloanthony,Congrats to the @PolyBoysBball team for bringing home that State Championship #StayMe7o @dreperry22 @thedmj1 @CoachSamBrand @CoachFitz40 +03/15/2017,Sports_celeb,@carmeloanthony,#StayMelo https://t.co/JAjq9I13tV +03/13/2017,Sports_celeb,@carmeloanthony,"""Nyctophilia"" +(n.) Love of darkness or night. Finding relaxation or comfort in darkness. +#StayMe7o https://t.co/kjyO6a2Hpw" +03/10/2017,Sports_celeb,@carmeloanthony,"Thank you @NintendoAmerica for The Nintendo switch. I get the BEST DaD award now 😂 +#NintendoSwitch +#StayMe7o https://t.co/VoIH3MH16H" +03/02/2017,Sports_celeb,@carmeloanthony,RT @VICESports: .@carmeloanthony meets up with WBA Middleweight champ @DanielJacobsTKO to get a tour of Brooklyn's boxing Mecca. https://t.… +02/21/2017,Sports_celeb,@carmeloanthony,Excited for things to come! Soundbite from #MeloMoji - https://t.co/gQ6NoeOXWB https://t.co/CNpy6txNUq https://t.co/rmv33G2WND +02/21/2017,Sports_celeb,@carmeloanthony,"RT @VICESports: In this episode of #StayMelo, @carmeloanthony visits the nationally ranked MLK High School boys soccer team. https://t.co/I…" +02/18/2017,Sports_celeb,@carmeloanthony,#StayMe7o https://t.co/uitJ6mKY9F +02/18/2017,Sports_celeb,@carmeloanthony,"""Way of Life"" +#StayMe7o https://t.co/6RreNenXN8" +02/15/2017,Sports_celeb,@carmeloanthony,"Happy Valentines Day +#StayMe7o https://t.co/EVd8UZremZ" +02/14/2017,Sports_celeb,@carmeloanthony,Clock's ticking... https://t.co/A2P9CPFUsE ends at 7pm. You could win a trip for 2 to @NYKnicks vs. @Warriors! https://t.co/DS0GnLR7Sw +02/13/2017,Sports_celeb,@carmeloanthony,Last chance to win a trip to meet me for @NYKnicks vs. @Warriors! https://t.co/A2P9CPFUsE https://t.co/SxE0LpfJ4y +02/06/2017,Sports_celeb,@carmeloanthony,Feeling strong and ready for LA tonight thanks to @HSpecialSurgery. Check out this video about my journey with HSS:… https://t.co/62IxPON6Z3 +01/31/2017,Sports_celeb,@carmeloanthony,Running away from things you find unpleasant causes suffering. But facing and challenging such situations will enri… https://t.co/tuSFgeUcQs +01/30/2017,Sports_celeb,@carmeloanthony,"Only 2 weeks left to win a trip to NYC to meet me, get tix for @NYKnicks vs. @Warriors & come to shoot-around too https://t.co/A2P9CPFUsE" +01/30/2017,Sports_celeb,@carmeloanthony,"Prouder than ever to support @lyft, a company that stands behind its values. #TeamLyft #DeleteUber https://t.co/2rTgzx9I6t" +01/26/2017,Sports_celeb,@carmeloanthony,You can still sign up for my @EliteSportsCon2 Youth Basketball Camp @PacPlex in Brooklyn https://t.co/Snk8vXUvfM https://t.co/QDNeW0GbQh +01/24/2017,Sports_celeb,@carmeloanthony,"In this episode of #StayMelo, I explore some of the best views in Brazil and the favelas of Rio with @VICESports:… https://t.co/iOGtiA4OXm" +01/17/2017,Sports_celeb,@carmeloanthony,Looking forward to stepping on the court with NY's young talent @EliteSportsCon2 Youth Basketball Camp. Sign up now… https://t.co/Kw0NEIBcM8 +01/15/2017,Sports_celeb,@carmeloanthony,"Be More +""The One"" +@gervontaa https://t.co/1Obw061Sws" +01/14/2017,Sports_celeb,@carmeloanthony,I'm Thankful for ALL of it. The Highs. The Lows. The Blessings. The Lessons. The Setbacks. The Comebacks. The Love.… https://t.co/FNYREkXPHh +01/14/2017,Sports_celeb,@carmeloanthony,Hoping to see you in New Orleans. #FBF #NBAVOTE Carmelo Anthony https://t.co/Yf4n6fMSvI +01/14/2017,Sports_celeb,@carmeloanthony,"RT @NykInsider: Kristaps Porzingis 🦄 +Derrick Rose 🌹 +Carmelo Anthony 🎖🎖🎖 + +#NBAVOTE +(every Retweet counts as one vote) https://t.co/Bm0g79Lb…" +01/12/2017,Sports_celeb,@carmeloanthony,Don't text your friends. Let me talk to them. DL MeloMoji & #StayMe7o all day iOS: https://t.co/27tQpZL3OU Android:… https://t.co/R7lAzQ1ftO +01/12/2017,Sports_celeb,@carmeloanthony,Donate to the Carmelo Anthony Foundation & you could win a trip to NYC to meet up with me for @NYKnicks v.… https://t.co/mJA8vCmCip +01/11/2017,Sports_celeb,@carmeloanthony,"THANK YOU!!! +#StayMe7o https://t.co/vsM8SJW60q" +01/10/2017,Sports_celeb,@carmeloanthony,Excited to announce my upcoming @EliteSportsCon2 Youth Basketball Camp in BKLYN! Sign up now https://t.co/Snk8vXUvfM https://t.co/12tfLb48cC +01/10/2017,Sports_celeb,@carmeloanthony,"Al-ḥamdu lillāh +#StayMe7o https://t.co/IFYA7oVW72" +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @DwyaneWade +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @kporzee +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @drose +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @CP3 +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @kingjames +01/07/2017,Sports_celeb,@carmeloanthony,"Grateful to be here. Humbled to look back. Hopeful for the future. #NBAVote Carmelo Anthony + +Thx @NBA for the video. https://t.co/IWbH6Ct4XE" +01/06/2017,Sports_celeb,@carmeloanthony,"RT @nyknicks: 9X @NBAAllStar @carmeloanthony. + +RT to #NBAVote! #NYKtoNOLA https://t.co/slSYKOyZeq" +01/06/2017,Sports_celeb,@carmeloanthony,"RT @Guhlarzzza: #NBAVote Derrick Rose +#NBAVote Carmelo Anthony +#NBAVote Kristaps Porzingis" +01/04/2017,Sports_celeb,@carmeloanthony,Forever proud to wear these colors. #NBAVote Carmelo Anthony https://t.co/r8ywW7PeYw +01/04/2017,Sports_celeb,@carmeloanthony,RT @whatsupmelo9: I want to see Carmelo Anthony play at the ASG2017. #NBAVote https://t.co/9wkoF8s53I +01/03/2017,Sports_celeb,@carmeloanthony,RT @KnicksPassion: CARMELO ANTHONY #NBAVOTE https://t.co/sHqxGdkSTn +01/03/2017,Sports_celeb,@carmeloanthony,RT @Vic_Anthony7: #NBAVOTE I want to see Carmelo Anthony play in the NBA All-Star Game 2017 ! https://t.co/i2z4GIDsR6 +12/31/2016,Sports_celeb,@carmeloanthony,Your support is appreciated more than you know. https://t.co/8c0ZQZKsFG #NBAVote Carmelo Anthony https://t.co/CX3NeYXQ0L +12/31/2016,Sports_celeb,@carmeloanthony,"RT @nyknicks: Vote Melo to New Orleans! + +RT Carmelo Anthony #NBAVote #NYKtoNOLA + +Or visit https://t.co/EiWlaP9FS7 https://t.co/aM3BvpbyVM" +12/31/2016,Sports_celeb,@carmeloanthony,Hope to see everyone in New Orleans. NBA AllStar voting is open. Tweet #NBAVote Carmelo Anthony https://t.co/1h8LnPboJ7 +12/30/2016,Sports_celeb,@carmeloanthony,"RT @NBAAllStar: 16 days left... 2017 #NBAAllStar Voting presented by @Verizon ends January 16th! + +https://t.co/7SYpaqHa1f or the NBA app h…" +12/30/2016,Sports_celeb,@carmeloanthony,"RT @NBAAllStar: Vote for the 2017 #NBAAllStar teams right here on Twitter! + +Tweet #NBAVote + player first & last name or twitter handle. *l…" +12/23/2016,Sports_celeb,@carmeloanthony,Feeling strong & ready for the C's this weekend. Thanks @hspecialsurgery. See how they help keep me healthy here:… https://t.co/7SnWm1JK3v +12/22/2016,Sports_celeb,@carmeloanthony,A Very Melo Christmas with future leaders! Made possible by @regalmovies @jumpman23 @thebridgedirect @singmovie… https://t.co/XKWZWx2J89 +12/22/2016,Sports_celeb,@carmeloanthony,Thank you @UniversalPics for setting us up with #SingMovie for A Very Melo Christmas https://t.co/c4EnwXg089 +12/20/2016,Sports_celeb,@carmeloanthony,Watching #SingMovie for A Very Melo Christmas 2016. #CarmeloAnthonyFoundation @Singmovie #SageBusinessGroup +12/19/2016,Sports_celeb,@carmeloanthony,"Sophisticated Elite +@rockwell_group #YayolKusama +#StayMe7o https://t.co/AkNoSkwlmq" +12/15/2016,Sports_celeb,@carmeloanthony,"""Rest In Peace"" +One of The Greatest Fighters Ever. A True Inspiration +#TheSagerLegendContinues +#StayMe7o https://t.co/5n2p09HZiN" +12/09/2016,Sports_celeb,@carmeloanthony,Giving a @Bevel shave system to the follower who knows how many times I medaled w/ Team USA. Answer w/ #JoyOfBevel. https://t.co/ERCAzZnlNw +12/08/2016,Sports_celeb,@carmeloanthony,"UN-Phased +(MyLifeSummedUpInOnePhoto) +#StayMe7o https://t.co/LUtdSxhOTE" +12/08/2016,Sports_celeb,@carmeloanthony,"EGO is the only requirement to destroy any relationship. So, be a BiGGER person, skip the ""E"" and let it ""GO""… https://t.co/ncmKA2I4aD" +12/07/2016,Sports_celeb,@carmeloanthony,Teamed up with @feedthechildren @avoninsider for a special community event here in NYC https://t.co/5b6iaMkdln +12/05/2016,Sports_celeb,@carmeloanthony,"I'm joining @serenawilliams, @neymarjr, @MarceloM12, and global champions to ask students to try the #HourOfCode. https://t.co/03GX8ph17p" +12/01/2016,Sports_celeb,@carmeloanthony,https://t.co/5npxQ09xpJ +12/01/2016,Sports_celeb,@carmeloanthony,"GREAT TEAM WIN!!! +""It Is The Mark of An Educated Mind To Be Able To Entertain A Thought Without Accepting It""… https://t.co/b3RHEhWxJN" +11/30/2016,Sports_celeb,@carmeloanthony,"""We Are Not A Team Because We Work Together. We Are A Team Because We Respect, Trust, And Care For Each Other""… https://t.co/ThbDYH2Ewo" +11/29/2016,Sports_celeb,@carmeloanthony,Thanks to the #RedhookInitiative for producing the #BQX video. Bright futures ahead for #Redhook. #StayMe7o https://t.co/2KPNCVW85q +11/22/2016,Sports_celeb,@carmeloanthony,Thank you to @feedthechildren @avoninsider and @brucebeck4NY for helping us provide 800 families with essentials be… https://t.co/70WYngtNXN +11/22/2016,Sports_celeb,@carmeloanthony,RT @BruceBeck4NY: This is my 6 pm piece on the fine work by the @carmeloanthony Foundation in Harlem! https://t.co/VzgOaUSB6V https://t.co/… +11/16/2016,Sports_celeb,@carmeloanthony,@_frankiefjr_ @footlocker No Distractions. #DestiNY #StayMe7o +11/16/2016,Sports_celeb,@carmeloanthony,@NickyPetrucelli Greatness is a Mindset. Greatness is the Legacy You Leave Behind. +11/16/2016,Sports_celeb,@carmeloanthony,Sound off in the comments after you check out my @footlocker #WeekofGreatness spot https://t.co/SQRT91N1FH +11/08/2016,Sports_celeb,@carmeloanthony,Stand Together In Solidarity. Tune in now to #ESPN2 and watch The Clubhouse. https://t.co/J2QcOrlXal +10/31/2016,Sports_celeb,@carmeloanthony,Salute To My Toy Soldier!!! @lala You killed this ☝️ 😂😂😂 #StayMe7o https://t.co/sy7lS16yqK +10/21/2016,Sports_celeb,@carmeloanthony,"P-Positive +E-Energy +A-Activates +C-Constant +E-Elevation +#StayMe7o https://t.co/1LZJ2IjqMj" +10/07/2016,Sports_celeb,@carmeloanthony,Had a great time playing #GearsOfWar @Xbox loft. Check it out on Oct 11th. https://t.co/aladNOFeO8 +10/06/2016,Sports_celeb,@carmeloanthony,Catch me tonight on @TheDailyShow with @Trevornoah at 11pm EST +10/05/2016,Sports_celeb,@carmeloanthony,Check out #LaGrata Pizzeria in #SouthBronx for that authentic slice https://t.co/wRYCeBtylG +10/05/2016,Sports_celeb,@carmeloanthony,"Watch my show #StayMelo on @VICELAND, starting right now: https://t.co/o7oqSpTSrf" +10/04/2016,Sports_celeb,@carmeloanthony,My episode of #StayMelo: Puerto Rico airs tonight at 11:00PM on @VICELAND. Watch the full series now on @VICESports… https://t.co/oMyeAoh3b9 +10/04/2016,Sports_celeb,@carmeloanthony,Watch #StayMelo tomorrow at 11:00PM ET on @VICELAND where I visit the streets of San Juan and explore Puerto Rico's… https://t.co/JkBc3vuVCZ +10/03/2016,Sports_celeb,@carmeloanthony,A good year to all my friends celebrating Rosh Hashanah #5777 #StayMe7o https://t.co/P6TyGuykV2 +10/01/2016,Sports_celeb,@carmeloanthony,"""Don't Be Afraid To Embrace Your DestiNY"" #StayMe7o https://t.co/X1MtVNCkbp" +09/27/2016,Sports_celeb,@carmeloanthony,Text 47246 for more info on how to vote during #Election2016! https://t.co/j6IqADbONg +09/27/2016,Sports_celeb,@carmeloanthony,Take a behind the scenes look at this year's A Very Melo Weekend in Puerto Rico #AVMW2016 #CAF #sagebusinessgroup… https://t.co/D0u9OnFpy6 +09/27/2016,Sports_celeb,@carmeloanthony,#NYKMediaDay #DestiNY https://t.co/LVCFf6yqBz +09/26/2016,Sports_celeb,@carmeloanthony,Trust The Process. Enjoy the Journey. Embrace Your Destiny. #StayMe7o https://t.co/2vKylEgobR +06/26/2018,Sports_celeb,@KDTrey5,"Thank u to the @NBA, the fans and my KDCF/KD Enterprises team for all the support. https://t.co/vybMqLTp8x" +06/22/2018,Sports_celeb,@KDTrey5,"RT @acorns: Introducing Acorns Spend - the only checking account and debit card that saves, invests and earns for you! #FutureIsYours #Grow…" +06/13/2018,Sports_celeb,@KDTrey5,"RT @RonConway: Kudos to @laurenepowell who is working tirelessly on education reform, immigration reform, and so many more worthwhile cause…" +06/13/2018,Sports_celeb,@KDTrey5,"RT @PlayersTribune: All-Access Bay Bash with @KDTrey5. +https://t.co/nUMzmea45z" +06/13/2018,Sports_celeb,@KDTrey5,"More on the colorways and design @nikebasketball #KD11 +https://t.co/19STMAsHJs" +06/13/2018,Sports_celeb,@KDTrey5,First look at the #KD11 on my @youtube w @IAmJayJones : https://t.co/NXIjSIJL2L +06/13/2018,Sports_celeb,@KDTrey5,RT @PlayersTribune: Inside the Warriors championship parade with Finals MVP @KDTrey5. https://t.co/AgcQ2geWk6 +06/12/2018,Sports_celeb,@KDTrey5,RT @IAmJayJones: MIND MATTERS E:2 with Kevin Durant| Discussing the NIKE KD11: https://t.co/auvPwqENVC via @YouTube +06/12/2018,Sports_celeb,@KDTrey5,RT @IAmJayJones: KD’s video: First Look at the KD 11 https://t.co/6wJRjbLMPf +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “You can accomplish any goal by rising & grinding: nothing worth having will come easy. It’s important for our youth to know th… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “There are so many heroes in my community that allow me to be here today. We grind through so many things & this is our opportu… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “We don’t do this for recognition. We don’t do it for the shine. We do it for the community. But it feels good to get recognize… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: @nikebasketball @KDTrey5 @warriors “We work hard to build a foundation for our kids. To be able to lift & empower people is mag… +06/12/2018,Sports_celeb,@KDTrey5,"RT @NikeSF: Rise. Grind. Shine. Again. + +To celebrate the championship, we’re celebrating Champions of Oakland, community members who sacrif…" +06/12/2018,Sports_celeb,@KDTrey5,Tonight on @jimmykimmel https://t.co/36kAXE0j2D +06/10/2018,Sports_celeb,@KDTrey5,Let’s go #DubNation! I’ll be on @jimmykimmel Monday night (tomorrow) to celebrate our B2B championships🏆🏆 +06/08/2018,Sports_celeb,@KDTrey5,"RT @pieology: One assist deserves another. For every assist @KDTrey5 gets during tonight’s game, @Pieology donates $1,000 to his foundation…" +06/04/2018,Sports_celeb,@KDTrey5,💯 Very cool to watch this come together https://t.co/ZdRaUifC1g +05/31/2018,Sports_celeb,@KDTrey5,Checking in with y'all on @YouTube before Game 1...let's go #DubNation https://t.co/pW7slAQ0Sf +05/30/2018,Sports_celeb,@KDTrey5,"RT @thirtyfivemedia: Stay tuned for our latest project, ""Q Ball"", executive produced by @KDTrey5 & @richkleiman in conjunction w/Fox Sports…" +05/30/2018,Sports_celeb,@KDTrey5,RT @AlaskaAir: Thank you to our entire team! We’re celebrating our 11th consecutive J.D. Power award for “Highest in Customer Satisfaction… +05/22/2018,Sports_celeb,@KDTrey5,"RT @lonelywhale: ""Your sipping habits at 33,000 feet are about to get a makeover: Today, @AlaskaAir became the first U.S. airline to ban si…" +05/22/2018,Sports_celeb,@KDTrey5,RT @darrenrovell: I sat down with @KDTrey5 to discuss is growing business empire https://t.co/H6FnKfwo4b +05/19/2018,Sports_celeb,@KDTrey5,RT @Essence: Two women make history as first Black female pilots to fly for Alaska Airlines. https://t.co/vxUuEpLa7R https://t.co/PiP7ERSSw1 +05/03/2018,Sports_celeb,@KDTrey5,"RT @pgcps: RT to vote for #KevinDurant for the #NBACommunityAssist Award! + +The Durant Charity Foundation recently committed $10 million to…" +04/30/2018,Sports_celeb,@KDTrey5,"RT @warriors: #KevinDurant is making a difference on & off the court 💙💛 + +RETWEET to vote for him for the #NBACommunityAssist Award! https:/…" +04/29/2018,Sports_celeb,@KDTrey5,"Great home win last night, thank you #DubNation for always bringing the energy and to my guys @pieology for sending pizza for the team!" +04/29/2018,Sports_celeb,@KDTrey5,RT @AlaskaAir: We’re flying high into the semifinals with @KDTrey5. We’re giving two lucky fans a chance to win an autographed Kevin Durant… +04/25/2018,Sports_celeb,@KDTrey5,"Thanks to everyone who’s voting, this one really means a lot to me https://t.co/y9SFme3Ppw" +04/25/2018,Sports_celeb,@KDTrey5,Proud of all the work we're doing in the Bay with @AlaskaAir - check the BTS of our shoot on my YouTube now:… https://t.co/ESwXCoPTb4 +04/21/2018,Sports_celeb,@KDTrey5,Year 1 of my fantasy camp at the @warriors practice facility was one for the books - sign up is open now for this y… https://t.co/IoOK2A4oVW +04/21/2018,Sports_celeb,@KDTrey5,RT @overtime: THIS IS WHAT YOU DO 🚨🚨🚨 @teamdurantaau @KDTrey5 @RMBWilliams https://t.co/3VKTJ0Upz5 +04/19/2018,Sports_celeb,@KDTrey5,Big honor for me to be on this year's #TIME100 list. Thanks @cue for the kind words! https://t.co/OlcoRZMggj +04/12/2018,Sports_celeb,@KDTrey5,Some of the best from @javalemcgee Parking Lot Chronicles through the season - watch em all if you missed them… https://t.co/RKwtSUivnY +04/12/2018,Sports_celeb,@KDTrey5,RT @warriors: A message from @KDTrey5 & @D_West30. #StrengthInNumbers #DubNation https://t.co/oZBbqp99Lz +04/06/2018,Sports_celeb,@KDTrey5,Congratulations to my friend @CoachOG on becoming the next head coach for UT Arlington.  He is the true definition… https://t.co/74TNm3wcMY +04/04/2018,Sports_celeb,@KDTrey5,RT @jack: I can’t imagine what our friends at YouTube are feeling and dealing with right now. We‘re here for you and your families and frie… +04/04/2018,Sports_celeb,@KDTrey5,RT @RonConway: Another senseless shooting in our own backyard @YouTube. After #Parkland we said #Enough & #NeverAgain & we #MarchedForOurLi… +04/02/2018,Sports_celeb,@KDTrey5,RT @teamdurantaau: First episode of 35 Degrees with LT! Follow the teams with LT throughout the season. Don't miss out!... https://t.co/quZ… +03/31/2018,Sports_celeb,@KDTrey5,"RT @PlayersTribune: ""This should’ve been the best year of my life — and it was, for a while. Until I turned it into a nightmare."" + +@Dardoch…" +03/28/2018,Sports_celeb,@KDTrey5,@MikeWiLLMadeIt you already know how it is!! 💯💯 +03/24/2018,Sports_celeb,@KDTrey5,"RT @warriors: ""Just that her name is in the sneaker world & the basketball world, it rings louder & louder every year."" - @KDTrey5 on the @…" +03/24/2018,Sports_celeb,@KDTrey5,RT @RonConway: In Washington DC for the #MarchForOurLives! Proud to join these national leaders and the #Parkland students fighting to stem… +03/20/2018,Sports_celeb,@KDTrey5,Checking out who's got next! Part 3 with @overtime https://t.co/ukJ5iQdBW9 +03/20/2018,Sports_celeb,@KDTrey5,"RT @overtime: Kevin Durant Breaks Down Top HS Players Part 3 | KD on Mac McClung, Jordan McCabe, Bol Bol, Andre Ball & Tyler Herro 🔥 Full V…" +03/19/2018,Sports_celeb,@KDTrey5,Had some fun with the Google Assistant in their new ad...#HeyGoogle remind me to order more gummy bears. https://t.co/wLD2pPEubD +03/15/2018,Sports_celeb,@KDTrey5,RT @thirtyfivemedia: Watch the Oscar-worthy season finale of Parking Lot Chronicles with @JaValeMcGee & @KDTrey5 now: https://t.co/mRDrUNOG… +03/15/2018,Sports_celeb,@KDTrey5,Parking Lot Chronicles season finale!! Show @javalemcgee some love https://t.co/9rfC982eTD +03/14/2018,Sports_celeb,@KDTrey5,Don't sleep on my first video with @michaelrapaport. Got a new episode of Parking Lot Chronicles coming this week f… https://t.co/rqKFF7atTD +03/12/2018,Sports_celeb,@KDTrey5,@SteveCahill12 someone’s upset +03/12/2018,Sports_celeb,@KDTrey5,"@boggerVB didn’t mean to hurt u this morning, I’ll unlike immediately. 🐍💪🏿🙏🏾🐍🐍" +03/12/2018,Sports_celeb,@KDTrey5,@ZaayWoop u mad I liked a post on Twitter? Really bruh? +03/12/2018,Sports_celeb,@KDTrey5,@Irishodonnell5 🤘🏿🐍 no doubt! Thanks for coming to the game +03/09/2018,Sports_celeb,@KDTrey5,Got to check in on progress at the Durant Center on our trip to DC - crazy to watch it come to life… https://t.co/hE3ePSU1E4 +03/08/2018,Sports_celeb,@KDTrey5,My guy @MichaelRapaport talks a big game but at the end of the day you know he's a fan. Watch #Rapaport:… https://t.co/pDmBBLN7Wj +03/05/2018,Sports_celeb,@KDTrey5,Here we go!! Watch the new @michaelrapaport series here: https://t.co/5VQSSBnMpJ +03/03/2018,Sports_celeb,@KDTrey5,RT @MichaelRapaport: Special Guest @KDTrey5 joins us on a brand new episode of the #ShameGame @deanrcollins COMING SOON https://t.co/BFhogr… +03/02/2018,Sports_celeb,@KDTrey5,New series on my @YouTube with @MichaelRapaport!! https://t.co/bHEFZhrKBU +02/23/2018,Sports_celeb,@KDTrey5,"The Durant Center has been a dream of mine for a long time, excited to announce it's finally happening in Prince Ge… https://t.co/KahquEdMbg" +02/22/2018,Sports_celeb,@KDTrey5,RT @SteveNash: I'm so inspired by the young people in America standing up for their future. I really believe it's our best chance to see ch… +02/16/2018,Sports_celeb,@KDTrey5,"LJ and I are locked in for #NBAAllStar: https://t.co/efYJH7YKCV +#rollingwiththechampion https://t.co/2cAJVjEhB9" +02/16/2018,Sports_celeb,@KDTrey5,More from my ride with @CariChampion @KingJames up on my YouTube now https://t.co/PGIQipcNxn +02/15/2018,Sports_celeb,@KDTrey5,Thanks for the love @nytimes https://t.co/oh3WP3XjWR +02/15/2018,Sports_celeb,@KDTrey5,Rolling with @carichampion @kingjames: https://t.co/uRkwepGMc0 https://t.co/cmEE5YHpef +02/15/2018,Sports_celeb,@KDTrey5,"RT @SkydioHQ: Skydio R1 understands and acts in the world through the Skydio Autonomy Engine, which combines breakthrough technology in adv…" +02/14/2018,Sports_celeb,@KDTrey5,"RT @THR: Sports media startup Overtime raises $9M from Andreessen Horowitz, @KDTrey5 https://t.co/TqpEvS1OTN https://t.co/yfJo8g0Czs" +02/13/2018,Sports_celeb,@KDTrey5,RT @THR: .@KDTrey5 is prepping a scripted basketball drama for @Apple https://t.co/4Zp9a8K182 https://t.co/oWxxlvabbb +02/13/2018,Sports_celeb,@KDTrey5,So excited to partner with Imagine and Apple on this series...much more to come @richkleiman @thirtyfivemedia https://t.co/ZC21fSkXIe +02/13/2018,Sports_celeb,@KDTrey5,"RT @SkydioHQ: This is Skydio R1 Frontier Edition: a self-flying camera that knows what to film and flies itself to get the best shot, letti…" +02/10/2018,Sports_celeb,@KDTrey5,New Parking Lot Chronicles alert!! @javalemcgee @derekcarrqb @casspi18 https://t.co/xaobuGk7IF +02/08/2018,Sports_celeb,@KDTrey5,RT @RMBWilliams: It’s Official @KDTrey5 @TeamDurantAAU has joined the @NikeEYB & will be Playing 16’s this Summer! #KevinDurant #NBA #NBAAl… +01/30/2018,Sports_celeb,@KDTrey5,Big episode of PLC up now! @javalemcgee @stephencurry30 @michaelrapaport @imanitrishawn_ https://t.co/sbn116GqWp +01/25/2018,Sports_celeb,@KDTrey5,"RT @TheUndefeated: As we continue our State of the Black Athlete series, @KDTrey5 pens a letter to his neighborhood, and reflects on growin…" +01/24/2018,Sports_celeb,@KDTrey5,RT @CNTraveler: The Alaska Airlines/Virgin America merger has the potential to be one of the best airlines in the country https://t.co/6OCh… +01/22/2018,Sports_celeb,@KDTrey5,Great day in the bay! What up? +01/22/2018,Sports_celeb,@KDTrey5,"This was a fun one, check it out: https://t.co/hqZAmtofZh https://t.co/Ywni5ReShA" +01/20/2018,Sports_celeb,@KDTrey5,RT @richkleiman: Check it out https://t.co/NuXjDCITff +01/18/2018,Sports_celeb,@KDTrey5,"RT @nealmohan: Thrilled to partner with Thirty Five Media, @richkleiman and @KDTrey5 to help sports stars launch YouTube channels and creat…" +01/18/2018,Sports_celeb,@KDTrey5,RT @KarlTowns: I finally made a @YouTube channel! Check it out for all access to my life on & off the court & more. Subscribe & enjoy! htt… +01/17/2018,Sports_celeb,@KDTrey5,Thank you for all that you do brother @Kaepernick7 https://t.co/1KYcjBEqdY +01/17/2018,Sports_celeb,@KDTrey5,RT @FastCompany: .@KDTrey5 will assist other athletes questing for YouTube stardom https://t.co/c0HVprK6qp https://t.co/NnV6QqDAF2 +01/17/2018,Sports_celeb,@KDTrey5,"RT @thirtyfivemedia: We're excited to continue our partnership with @YouTube to create athlete channels, new series, and more https://t.co/…" +01/15/2018,Sports_celeb,@KDTrey5,New Parking Lot Chronicles ⬇️ https://t.co/m5Zl0sGDuL +01/13/2018,Sports_celeb,@KDTrey5,@Postmates thanks for the love! +01/12/2018,Sports_celeb,@KDTrey5,Got a chance to catch up and answer some great fan q's this week on my @YouTube 📹: https://t.co/f1TOuoUs1z +01/11/2018,Sports_celeb,@KDTrey5,"RT @AlaskaAir: Kevin Durant just scored a HUGE milestone—20,000 career points. To celebrate @KDTrey5's achievement, we're giving one lucky…" +01/06/2018,Sports_celeb,@KDTrey5,Yesterday was amazing @UTAustin @TexasMBB! Video from the day: https://t.co/w1wegYjtcE #HookEm #Longhorn4Life +01/03/2018,Sports_celeb,@KDTrey5,RT @RonConway: Tribute to Ed Lee in Time Magazine - how fitting and well deserved for him and his family: https://t.co/P0Cco1UmHm +01/02/2018,Sports_celeb,@KDTrey5,Taking a look back on 2017 and wishing everyone a happy New Year https://t.co/Hf4ficMQ5x +12/25/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles ep 6 is out! Happy holidays @JaValeMcGee @QCook323 https://t.co/d6TJ0bgGMA +12/22/2017,Sports_celeb,@KDTrey5,New video up from one of my favorite days of the year visiting Oakland Elizabeth House again and meeting the youth… https://t.co/5YPjJg733w +12/21/2017,Sports_celeb,@KDTrey5,"RT @warriors: Get your votes in early for #NBAAllStar 👇🏽 + +💻 » https://t.co/dI40RybctL +📱» https://t.co/1GLNiOaLcx https://t.co/REuZ6NILY5" +12/19/2017,Sports_celeb,@KDTrey5,Big things to come @Overtime #TheDurantCompany https://t.co/6KSIOL8oxL +12/16/2017,Sports_celeb,@KDTrey5,RT @JaValeMcGee34: NEW EPISODE OUT! Parking lot chronicles feat @Money23Green https://t.co/lXCj55HQXl +12/15/2017,Sports_celeb,@KDTrey5,The boy @JaValeMcGee34 is back! Parking Lot Chronicles Ep 5 with @Money23Green https://t.co/xFBwt4QUwq +12/12/2017,Sports_celeb,@KDTrey5,"RT @PlayersTribune: “He did not like rules. And I don’t just mean fashion rules.” + +The wild, unpredictable, courageous life of Craig Sager.…" +12/05/2017,Sports_celeb,@KDTrey5,RT @NickSwagyPYoung: The best show on YouTube when I’m on it lol 😂👀😂 JaVale McGee's Parking Lot Chronicles: Episode 4 https://t.co/PSaiYdi2… +12/05/2017,Sports_celeb,@KDTrey5,"RT @JaValeMcGee34: New Episode of Parking Lot Chronicles feat. @1jordanbell n @NickSwagyPYoung https://t.co/3dcTqiMwGL +Check on @KDTrey5 Y…" +12/05/2017,Sports_celeb,@KDTrey5,"Parking Lot Chronicles Episode 4 is up now, best one yet @JaValeMcGee34​ https://t.co/41vghbo2yc" +11/29/2017,Sports_celeb,@KDTrey5,New video up! Reviewing some of the best high school ballers on @Overtime​ https://t.co/Bm7SjcO8qd +11/28/2017,Sports_celeb,@KDTrey5,"@nealmohan I’m into it. Gonna pop on later this week to check in with my fans, been a great experience for me so far" +11/28/2017,Sports_celeb,@KDTrey5,Got word that the @YouTube Community tab I've been talking to you guys on is opening up to more creators this week. @nealmohan true? +11/25/2017,Sports_celeb,@KDTrey5,Good luck to the USA Men’s World Cup Qualifying Team tomorrow in Greensboro #FIBAWC #DefendTheCup https://t.co/yNSOdzv92n +11/20/2017,Sports_celeb,@KDTrey5,All-basketball Q&A session up now! Gonna keep doing these for you guys throughout the season https://t.co/ABl1hHsgfd +11/19/2017,Sports_celeb,@KDTrey5,New vid going up tomorrow answering some of your 🏀 q’s. Watch @javalemcgee34's Parking Lot Chronicles first https://t.co/ZAuOUEULc9 +11/19/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Kevin Durant on His Legendary Game at Harlem’s Rucker Park | GQ https://t.co/C4treZRPZt via @YouTube +11/18/2017,Sports_celeb,@KDTrey5,RT @warriors: 📷 @KDTrey5 for @GQMagazine » https://t.co/AYc2gyyEcT https://t.co/HFkDdi4iZb +11/16/2017,Sports_celeb,@KDTrey5,Cool animation @GQMagazine on my Rucker game https://t.co/k6F27k2sTE +11/16/2017,Sports_celeb,@KDTrey5,Tune in and show some love https://t.co/REYatmcvhq +11/16/2017,Sports_celeb,@KDTrey5,Behind the scenes of my @GQMagazine shoot up now on YouTube https://t.co/FxKDM7IupF +11/16/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: Kevin Durant is just heating up https://t.co/ZRQNpJwfRl #GQMOTY https://t.co/CwibVCeB7H +11/16/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: Our Champion of the Year: @KDTrey5 https://t.co/IlOUK9Lr48 #GQMOTY https://t.co/D1BaD7qGAm +11/15/2017,Sports_celeb,@KDTrey5,RT @richkleiman: JaVale McGee's Parking Lot Chronicles: Episode 3 https://t.co/oQfHm5aqdi via @YouTube +11/14/2017,Sports_celeb,@KDTrey5,"RT @YTCreators: You might know him from the @NFL, but check out @RSherman_25's @YouTube channel where you'll get a behind the scenes look i…" +11/14/2017,Sports_celeb,@KDTrey5,"RT @nealmohan: Welcome to @YouTube, @RSherman_25! https://t.co/piLoOwRPnB" +11/13/2017,Sports_celeb,@KDTrey5,This story is a must-read...honored & humbled to share a cover w you @Kaepernick7 https://t.co/QFtIFj7DL5 +11/13/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: .@Kaepernick7 will not be silenced https://t.co/NxQFCxdf1L #GQMOTY https://t.co/jBIa1cHwPm +11/13/2017,Sports_celeb,@KDTrey5,In good company! Thank you @GQMagazine for the honor https://t.co/SiB5AkTeYU +11/13/2017,Sports_celeb,@KDTrey5,Watch on my @YouTube channel https://t.co/ZAuOUEULc9 https://t.co/he84jiPPYR +11/11/2017,Sports_celeb,@KDTrey5,"RT @PlayersTribune: “In 2017, in America, silence is no longer an option.” + +@StephenCurry30 in his own words. https://t.co/1RNiZjUoEe" +11/11/2017,Sports_celeb,@KDTrey5,RT @JaValeMcGee34: NEW EPISODE OF THE PARKING LOT CHRONICLES EPISODE 3 IS OUT ON @KDTrey5 YOUTUBE. https://t.co/lc0lD88pNP +11/11/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles is back! New one with @javalemcgee34 @klaythompson @e40 @AR510 https://t.co/ZAuOUEULc9 +11/10/2017,Sports_celeb,@KDTrey5,Follow my business partner’s new IG https://t.co/qDOBcO2mPQ https://t.co/M2vLHUl3xk +11/10/2017,Sports_celeb,@KDTrey5,Gearing up for another Q&A vid - get your questions in here: https://t.co/tTqTDE73vS +11/10/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Parking lot chronicles 3 coming soon https://t.co/T8oYAqXvuu https://t.co/lTgUe3WhQ8 +11/10/2017,Sports_celeb,@KDTrey5,🔥🔥🔥 https://t.co/YMXUZJ3W39 +10/29/2017,Sports_celeb,@KDTrey5,"RT @richkleiman: Make sure not to miss it!! +JaVale McGee's Parking Lot Chronicles: Episode 2 https://t.co/4P5Nf65QJe via @YouTube" +10/25/2017,Sports_celeb,@KDTrey5,RT @RonConway: #BandTogetherBayArea 11/9 @ATTPark - proud to support #northbayfire relief w/ @Metallica @davematthewsbnd @G_Eazy https://t.… +10/25/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles @Javalemcgee34 Episode 2 is up! Including a special appearance from yours truly https://t.co/cj0gf0abfw +10/24/2017,Sports_celeb,@KDTrey5,Subscribe to my channel to get updates - we got a new @JaValeMcGee34 episode coming up too! https://t.co/wwzZJsEO7e +10/24/2017,Sports_celeb,@KDTrey5,New vid up from opening night and the ring ceremony https://t.co/5LzVZ8aNDY +10/22/2017,Sports_celeb,@KDTrey5,ICYMI: First episode of @JaValeMcGee34 Parking Lot Chronicles is up now! Episode 2 hits next week https://t.co/MqUEi4Un3D +10/20/2017,Sports_celeb,@KDTrey5,Hard Work @beatsbydre #1of1 https://t.co/ixyF4DCMkL +10/19/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles Ep 1 w/@JavaleMcGee34 @andre @NickSwagyPYoung https://t.co/MqUEi4Un3D +10/17/2017,Sports_celeb,@KDTrey5,Here we go...the first episode of Parking Lot Chronicles with @JaValeMcGee34 is up now! https://t.co/MqUEi4Un3D presented by @beatsbydre +10/17/2017,Sports_celeb,@KDTrey5,Thank you!! Appreciate the love https://t.co/xXunye9p5X +10/16/2017,Sports_celeb,@KDTrey5,What happens when you give @JaValeMcGee34 a camera crew @OracleArena. Parking Lot Chronicles starts tomorrow https://t.co/Oqjk5n3Tl1 +10/16/2017,Sports_celeb,@KDTrey5,💯 https://t.co/7KoOh9793X +10/16/2017,Sports_celeb,@KDTrey5,"My @FastCompany article is out now, this one is really special to me. Read it here: https://t.co/utqW7Gy86V https://t.co/pEJKaiMwSM" +10/14/2017,Sports_celeb,@KDTrey5,"RT @warriors: #DubNation, check out @KDTrey5 on the cover of @FastCompany & his Q&A over on his YouTube » https://t.co/We8D95qxlv https://t…" +10/14/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Make sure to watch KD Fan Q&A and Fast Company Cover reveal https://t.co/v1RKLIx0bi +10/14/2017,Sports_celeb,@KDTrey5,RT @FastCompany: Our Nov issue features NBA star Kevin Durant's nascent business empire. Get a sneak peak and insights from @KDTrey5: https… +10/13/2017,Sports_celeb,@KDTrey5,On the cover of @FastCompany - story out next week! Sharing the moment & answering your Q's on my Youtube:… https://t.co/GPn2GPaSsd +10/10/2017,Sports_celeb,@KDTrey5,New court launch in Redwood City! S/o to @AlaskaAir for the grand prize. Watch: https://t.co/99pRs9uN3F +10/09/2017,Sports_celeb,@KDTrey5,RT @darrenrovell: JUST IN: @KDTrey5’s investment company has taken a stake in upstart fast casual pizza biz @pieology https://t.co/4L3A0zHE… +10/03/2017,Sports_celeb,@KDTrey5,Some thoughts on getting ready for the season and a look inside @Warriors training camp: https://t.co/24rVUWespF +09/29/2017,Sports_celeb,@KDTrey5,New Nike x NBA connected jersey 🔥 Check the bts from the launch on my YouTube https://t.co/9WODbGxNDE https://t.co/4WA7TmZAxH +09/28/2017,Sports_celeb,@KDTrey5,RT @richkleiman: San Francisco Magazine | Modern Luxury | KD and the VCs: How Kevin Durant Became a Made Man in Silicon Valley https://t.co… +09/28/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Kevin Durant is newest MVP for Alaska Airlines https://t.co/cDz7PIqTOU +09/25/2017,Sports_celeb,@KDTrey5,Back to the grind...some thoughts on coming back to the Bay and from the NBA x Nike jersey launch https://t.co/9WODbGgcM6 +09/21/2017,Sports_celeb,@KDTrey5,"New #KDCF court, vid coming soon. Thanks to @AlaskaAir for hooking our B&G Club winner up, more on our partnership… https://t.co/lDS8IPfnTO" +09/21/2017,Sports_celeb,@KDTrey5,RT @richkleiman: .@laurenepowell & @ronconway urge #TCDisrupt audience to call Congress & tell them to pass the #DREAMAct https://t.co/WIWe… +09/20/2017,Sports_celeb,@KDTrey5,Yesterday's talk @TechCrunch Disrupt with @richkleiman https://t.co/8e8iQk5Ksb +09/19/2017,Sports_celeb,@KDTrey5,Thanks @sanfranmag for the love - cover story out now https://t.co/1YgWF29vWb https://t.co/jYehjf6llE +09/19/2017,Sports_celeb,@KDTrey5,On my way to TechCrunch Disrupt SF this am w @richkleiman to talk business #TCDisrupt +09/18/2017,Sports_celeb,@KDTrey5,Shooting contest with Chris Mullin up now on @YouTube​ https://t.co/8HqlqDmlh3 +09/18/2017,Sports_celeb,@KDTrey5,Officially part of the @AlaskaAir team. Looking fwd to doing great things in the Bay & beyond #ThirtyFiveMedia https://t.co/DXBxdbIg8m +09/17/2017,Sports_celeb,@KDTrey5,"Good win skins. Cowboys, pass the sticks" +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga you have to start wording shit like this a little better, I'm confused lol" +09/16/2017,Sports_celeb,@KDTrey5,"@codywallace1244 no, I just deleted it." +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga I see u, well it's a bet" +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga https://t.co/sgtZKHFxI5 +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga and my 5 racks +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga wen I win, Ima need u to take the caps lock off and wear full warrior gear all the way down to the socks, for a whole day." +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga you do NOT wanna lose 5 racks to me. +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga u trash +09/16/2017,Sports_celeb,@KDTrey5,@NickSwagyPYoung https://t.co/C0ClFWS0bN +09/16/2017,Sports_celeb,@KDTrey5,Q&A from Nike campus with @SteveNash​ https://t.co/c84CK7pv26 +09/15/2017,Sports_celeb,@KDTrey5,It's time for my fantasy camp weekend - you can still help make an impact even if you're not there in person:… https://t.co/AeybM99Kq5 +09/15/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Looking forward to @TechCrunch Disrupt SF on Tues w @KDTrey5. More info: https://t.co/xhHNnLLHwP #TCDisrupt #ThirtyFiveMed… +09/14/2017,Sports_celeb,@KDTrey5,@Bmaggia you're just upset. I get it lol. I love you too +09/14/2017,Sports_celeb,@KDTrey5,@CKiepert I bring out the ya mama jokes on occasion. Be on the look out +09/14/2017,Sports_celeb,@KDTrey5,"@Bmaggia scenario: u tell a joke on me, I laugh, I make a joke about u, u call me soft?? 🤔🤔 makes zero sense to me. Who's the soft one?" +09/13/2017,Sports_celeb,@KDTrey5,@incarceratedbob @Stugotz790 same man that uses amazon instead of going to the mall. Lmao +09/12/2017,Sports_celeb,@KDTrey5,@Mohsin_35_313 thanks bro!! +09/10/2017,Sports_celeb,@KDTrey5,@Smailing07 @OGZaves didn't know I played golf +09/10/2017,Sports_celeb,@KDTrey5,@OGZaves I now play for every team in every league. Mission accomplished! Winning rings every year until I retire +09/09/2017,Sports_celeb,@KDTrey5,"@zoolander8816 I don't get this one. I think u mean Atlanta or to be even funnier, the patriots 🗣 HA" +09/08/2017,Sports_celeb,@KDTrey5,@deusoc17 so you're tellin me what I was thinking? +09/08/2017,Sports_celeb,@KDTrey5,@thehappydaze u said 81 and I gave u somebody else that didn't have 81 and u backtracking. Think before u tweet me lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest everyday, I don't think about if we are gonna win or lose a game. Every single day I think about my individual skills tho" +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest I play for more than one reason. If anybody tell u they don't then it's just a lie +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest a coach is suppose to put me in position to maximize what i do best. That's why more than one person wins a ring. +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest i play to be the best individual talent I can be, that's why u work out by yourself." +09/08/2017,Sports_celeb,@KDTrey5,@Jason_Stateman it is. +09/08/2017,Sports_celeb,@KDTrey5,@thehappydaze mj? +09/08/2017,Sports_celeb,@KDTrey5,@channooo3 thank u lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest if u do the eye test, u would know that mac was different." +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest t mac could do it all. Don't get it twisted. He was booked in for 30-6-5 every night. Nobody could stop him bro lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest I'm on here arguing about TMac. What has the world come to, guess he's not the ""two way player"" u want." +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest u don't know basketball so you don't get it +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest he played with mutumbo when he was the oldest player in the league and grant hill got hurt a few times, so did Yao!" +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest he got traded for franchise. Know your history +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest oh yea I know that +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest it's always been about winning. U get more buckets than the other team and u win +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest I don't get what u tryna say. +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest u like assist and rebounds right? U make a pass so that u can score right? U rebound an attempted shot right? +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest elaborate +09/08/2017,Sports_celeb,@KDTrey5,@blazeisbaseball he wore number 1 on his jersey +09/08/2017,Sports_celeb,@KDTrey5,"The game will always be about buckets. When it comes to buckets, there was nobody like T-Mac. FOH, number 1 in the HOF. Respect OG" +06/29/2018,Sports_celeb,@alleniverson,"To all my fans, I wish @JahlilBeats much success with his event in Chester. Please come out and support it!" +06/25/2018,Sports_celeb,@alleniverson,"9 years ago today, the King of Pop passed away!! #TheGreatest https://t.co/BpSJ61kXnt" +06/21/2018,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: The best player in the NBA Draft tonight is Collin Sexton from Alabama. He has .... https://t.co/zt0DCZcMDn https://t.c… +06/07/2018,Sports_celeb,@alleniverson,"Due to scheduling conflicts, I have informed the… https://t.co/njdvsZak53" +05/23/2018,Sports_celeb,@alleniverson,Me X Kith X Mitchell and Ness https://t.co/Xb5HoknUUS +05/21/2018,Sports_celeb,@alleniverson,"Coming to see all my fans at the Chicago Sports Spectacular in Rosemont, IL, on Saturday, June 9th, at the Donald E… https://t.co/0C5THcD1hy" +05/06/2018,Sports_celeb,@alleniverson,Love champ!! RT @JCrossover: One of the King's of this thing. More influence on my game than anyone else.… https://t.co/Vhm6SSapwo +05/05/2018,Sports_celeb,@alleniverson,Happy birthday Lil homie!! @kevinporterjr https://t.co/eX5PoytJcs +04/24/2018,Sports_celeb,@alleniverson,Tune in!! I'm up next on @firstTake talking @sixers and more!!! +04/20/2018,Sports_celeb,@alleniverson,Next Up!!! #Georgetown #PracticeGreatness #IversonClassic iversonclassic @ Souderton Area High… https://t.co/GDZJekhUz8 +04/20/2018,Sports_celeb,@alleniverson,#PracticeGreatness #IversonClassic iversonclassic @ Souderton Area High School https://t.co/R6GTlPZnlm +04/20/2018,Sports_celeb,@alleniverson,Witnessing jaw dropping talent #PracticeGreatness #IversonClassic 📸: @Suav5 @ Souderton Area… https://t.co/7WM5UCnUtV +04/20/2018,Sports_celeb,@alleniverson,Me and the Philly legend! 📸: @Suav5 @ Souderton Area High School https://t.co/ksfhncIN54 +04/20/2018,Sports_celeb,@alleniverson,Me and the rock reminiscing!!! 📸: @Suav5 @ Souderton Area High School https://t.co/zJy9niTnrp +04/20/2018,Sports_celeb,@alleniverson,Save up to 50% on my collection & across the entire @RootsofFight store in their huge #SpringCleaningSale event rig… https://t.co/WhLxuPNIIF +04/19/2018,Sports_celeb,@alleniverson,Prayers and condolences go out to Gregg Popovich and his family!! +04/18/2018,Sports_celeb,@alleniverson,My exclusive shoe for the best high school players in the country #YouWereChosen @iversonclassic @Reebok https://t.co/vKWvkE4r5F +04/17/2018,Sports_celeb,@alleniverson,SIXERS 4 LIFE! https://t.co/FWUalfjBE5 +04/17/2018,Sports_celeb,@alleniverson,With the Philly guys!!! https://t.co/UDe97goBbQ +04/14/2018,Sports_celeb,@alleniverson,#HereTheyCome #PhilaUnite https://t.co/DBghp5uzaV +04/13/2018,Sports_celeb,@alleniverson,Happy bday lil dude!!! https://t.co/f4EKYK04E5 +04/13/2018,Sports_celeb,@alleniverson,RT @iversonclassic: .@alleniverson said: Only the strong survive! America’s most competitive games begin in Philly in 6 days! https://t.co/… +04/02/2018,Sports_celeb,@alleniverson,RT @SLAMonline: Love the game. https://t.co/LXgUqfGKuj +04/02/2018,Sports_celeb,@alleniverson,Only the strong survive!!!... ticket link for @iversonclassic in bio https://t.co/3pksnyIH8Y +03/27/2018,Sports_celeb,@alleniverson,Welcome to the @Rootsoffight family @BretHart & @ReyMysterio Two legends joining #AndreTheGiant in the new… https://t.co/JJ0U7lUQsX +03/23/2018,Sports_celeb,@alleniverson,This is it! The 2018 #IVERSONCLASSIC roster is here! Get ready for the most competitive game in America.… https://t.co/wFaUkSB3Au +03/11/2018,Sports_celeb,@alleniverson,"RT @fanthropic: Hey, @sixers Fans! Wanna be a #Sixer for a day & hang with #76er legend @alleniverson? Thanks to #Fanthropic & #SixersYouth…" +03/10/2018,Sports_celeb,@alleniverson,I did not grant my name and likeness to be used as promotion for this event. I will not be in… https://t.co/kfwHQ40uOk +02/17/2018,Sports_celeb,@alleniverson,I THANK YOU!!!! https://t.co/qIumUfonA0 +02/17/2018,Sports_celeb,@alleniverson,"#EnoughSaid #IDidItMyWay #AsLongAsMyFamilyFriendsAndFansLoveIt #GodBless ... + Get this jacket from @rootsoffight… https://t.co/lHgX19ivRB" +02/16/2018,Sports_celeb,@alleniverson,All-Star for LIFE!!! #RedAuerbach https://t.co/thcr4ca9jg +02/15/2018,Sports_celeb,@alleniverson,"Oh yea, we in good hands!!! @sixers https://t.co/wmyoyPQ08u" +02/09/2018,Sports_celeb,@alleniverson,Go get your Ai bomber today!!! https://t.co/beSCnIKgGm https://t.co/BlL3sx0afF +01/31/2018,Sports_celeb,@alleniverson,Rest easy my brother. See you when I get there!!! https://t.co/Npsnib7k5t +01/11/2018,Sports_celeb,@alleniverson,"However you want it, you can get it!!! #FittyPiece ... @TeamLou23 https://t.co/soTd7DWk6T" +01/03/2018,Sports_celeb,@alleniverson,Congratulations to the “Game Changer” award winners of the #CrossoverHolidayShowcase for winning the Ai Melton jack… https://t.co/QCXt33nLgC +12/26/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Tomorrow we start up the 3rd annual Crossover High School Christmas holiday showcase!!! A family friendly event that you… +12/24/2017,Sports_celeb,@alleniverson,Give the gift of crossovers this holiday season with #NBALIVEMobile! For .... https://t.co/VJHg3GhPqx https://t.co/3Ly3BaygXh +12/22/2017,Sports_celeb,@alleniverson,"Sometimes you gotta play the best to be your best. Game 1 in the 2001 finals, @shaq & myself went after it!! It was… https://t.co/nCIGYXLXSg" +12/18/2017,Sports_celeb,@alleniverson,Congrats!!! #Str8SerialKilla @kobebryant https://t.co/m2LhIAGp9W +12/07/2017,Sports_celeb,@alleniverson,When I was coming up I used to take inspiration from these guys and now I’m being included amongst them. Proud to a… https://t.co/Ms4fWA0pTw +12/06/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: The 3rd annual #CrossoverHolidayShowcase is upon us! Dec 27th make sure you come out and see some of the best talent in t… +11/25/2017,Sports_celeb,@alleniverson,My partners @rootsoffight have their #BlackFriday sale rolling right now!! Go check i.... https://t.co/l4XJP74pRt https://t.co/TEVqgsX6Bz +11/08/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: Our episode of @Complex Sneaker Shopping with the legendary @alleniverson and our good friend @JLaPuma airs on MSG at 1… +11/03/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Press Release: “Allen Iverson champions need for new gymnasium floor at Newport News Boys & Girls Club” https://t.co/mkmU… +11/02/2017,Sports_celeb,@alleniverson,Check out my cut off from my @rootsoffight collection! It just dropped and is available now! #RootsofBasketball… https://t.co/RN3O9ifpln +10/31/2017,Sports_celeb,@alleniverson,Make sure you go to https://t.co/7ZCGQIQaLb to get your pair of the new #AnswerIV @ReebokClassics https://t.co/cOlXv7JeuD +10/27/2017,Sports_celeb,@alleniverson,RT @PCFriarsmbb: Dickens with the exclamation point #gofriars https://t.co/KZ1BgLP3vR +10/20/2017,Sports_celeb,@alleniverson,Out now! New T with @RootsofFight just launched. #KnowyourRoots #RootsofBasketball https://t.co/9RtTCjWXo2 https://t.co/pgIMfZJJAj +09/22/2017,Sports_celeb,@alleniverson,Happy 58th ma! & many more to my special lady!!! https://t.co/44taB4v0K6 +09/08/2017,Sports_celeb,@alleniverson,Loyal to the core!!!#My Chinese fans https://t.co/MH05YDFNgn +08/23/2017,Sports_celeb,@alleniverson,Happy birthday killa!!! @kobebryant https://t.co/ZzCTvqlsgr +08/13/2017,Sports_celeb,@alleniverson,"#Repost @thebig3 +・・・ +He's back! Come see 3's Company fight for a playoff spot today at Staples… https://t.co/KUl1Ioqp3M" +08/01/2017,Sports_celeb,@alleniverson,Just posted a photo https://t.co/8SyNOJpaSI +07/29/2017,Sports_celeb,@alleniverson,I see you haters! https://t.co/snHKnQ45TS +07/26/2017,Sports_celeb,@alleniverson,RIP PRODIGY... LONG LIVE MOBB DEEP https://t.co/NfGGsIpPMi +07/26/2017,Sports_celeb,@alleniverson,I love interacting with my fans @thebig3 Chicago 🎬: @kaptain_kai https://t.co/gWjjtFG9KW +07/25/2017,Sports_celeb,@alleniverson,I Love this man...Thanks coach!!! https://t.co/1QivLVxKWF +07/25/2017,Sports_celeb,@alleniverson,@prettichuckie FAMILY!!💯 https://t.co/GrxJ0HW6kq +07/25/2017,Sports_celeb,@alleniverson,Looking at the ppl scared to be who they really are! Im comfortable & blessed to be who i am… https://t.co/rns5EThLB5 +07/24/2017,Sports_celeb,@alleniverson,Happy gday to one of the greatest players I know @GaryPayton_20 and my young bull ao20buckets https://t.co/YP9xcQpsco +07/24/2017,Sports_celeb,@alleniverson,I will cherish this moment FOREVER! https://t.co/7COKeKl4Er +07/23/2017,Sports_celeb,@alleniverson,Happy Birthday to my big bro! https://t.co/S5SfUp9kg3 +07/21/2017,Sports_celeb,@alleniverson,Congrats Lil bruh!! #winsandlosses meekmill out today! https://t.co/9tWVAjl6qk +07/19/2017,Sports_celeb,@alleniverson,RT @coachmhagans: Always reppin' for Uncle Chuck @alleniverson🐐 https://t.co/croxM84Lyz +07/16/2017,Sports_celeb,@alleniverson,Just posted a video @ Wells Fargo Center https://t.co/PyNoNftKS3 +07/16/2017,Sports_celeb,@alleniverson,Tomorrow night at B Side!!! https://t.co/qcpQ3XsoGt +07/15/2017,Sports_celeb,@alleniverson,Get to @RUVILLA right now! First 10 fans to purchase spend $75 on Big 3/AI merchandise get a special invitation to… https://t.co/qbio9q9MdJ +07/15/2017,Sports_celeb,@alleniverson,"All my Philadelphia fans, I'm coming home tomorrow! Stop by @ruvilla on 12th and Chestnut… https://t.co/V0f9Q45Eac" +07/13/2017,Sports_celeb,@alleniverson,Daddy work https://t.co/SWkBL3Nh3C +07/13/2017,Sports_celeb,@alleniverson,#reallove #louwillcamp https://t.co/Rrm8RfZrKz +07/13/2017,Sports_celeb,@alleniverson,My lil man @teamlou23 doin it for the kids #louwillcamp https://t.co/QVKVzWf6lx +07/10/2017,Sports_celeb,@alleniverson,FAMILY! Only the ones that care for REAL understand!!! Love y'all! WE US!!!!!!!! https://t.co/lJADnjubMC +06/28/2017,Sports_celeb,@alleniverson,Mommy! https://t.co/vZFnwCqvYG +06/27/2017,Sports_celeb,@alleniverson,Fam https://t.co/RGeAuceXV3 +06/27/2017,Sports_celeb,@alleniverson,Fam https://t.co/RGeAubXmwt +06/27/2017,Sports_celeb,@alleniverson,Til Death... https://t.co/7H6dTNcQpQ +06/27/2017,Sports_celeb,@alleniverson,The guys https://t.co/gGm0Ms7G5V +06/27/2017,Sports_celeb,@alleniverson,theofficialai3's photo https://t.co/VGAbFL1b6q +06/24/2017,Sports_celeb,@alleniverson,"RT @SportsCenter: If Allen Iverson could play with one player in the BIG3, he says: Kobe. https://t.co/wABxL9ZtOi" +06/24/2017,Sports_celeb,@alleniverson,RT @ToddRadom: Big3 media day in NYC. The. Answer. https://t.co/tTL0FHFs1e +06/24/2017,Sports_celeb,@alleniverson,"RT @MichaelRapaport: Dreaming while awake with AI +@alleniverson @thebig3 +#TheAnswer https://t.co/qqu3yNNXYt" +06/23/2017,Sports_celeb,@alleniverson,RT @barclayscenter: Great seats just released for @thebig3 here this Sunday! Don't miss out: https://t.co/cGH5H7oEk4 #Big3BKLYN #Big3 https… +06/23/2017,Sports_celeb,@alleniverson,RT @thebig3: BIG3 has The Answer: we’re changing the game https://t.co/LE4lp1pbTw +06/22/2017,Sports_celeb,@alleniverson,Oxygen please !!!!! 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/N5BaGEUBml +06/22/2017,Sports_celeb,@alleniverson,Getting major flashbacks! Lol 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/PIHxPIYe3S +06/22/2017,Sports_celeb,@alleniverson,putting in the work! 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/rtCa7a3eh2 +06/18/2017,Sports_celeb,@alleniverson,I'm the best father in the world because they said so! I love being a part of the real fathers… https://t.co/s4ZXhIPer5 +06/16/2017,Sports_celeb,@alleniverson,11 days till Brooklyn!!! #BallinAgain @thebig3 https://t.co/pSgtKD9sJg +06/16/2017,Sports_celeb,@alleniverson,Happy birthday Big bro!!!..... see you in Brooklyn next week for the Big 3! Enjoy your day! https://t.co/UC1Pp6MN57 +06/07/2017,Sports_celeb,@alleniverson,RT @Hoophall: RT to wish #16HoopClass member @alleniverson a Happy Birthday! #HOFBdays https://t.co/plLkID73DW +06/07/2017,Sports_celeb,@alleniverson,"RT @ComplexSneakers: Happy 42nd Birthday to The Answer 🙌 + +We went 'Sneaker Shopping' with @alleniverson in Philly: https://t.co/HpJzxOxt7…" +06/07/2017,Sports_celeb,@alleniverson,RT @Hoophall: #OTD @alleniverson & @SHAQ both went the distance in each scoring 40+ PTS in Game 1 of the 2001 NBA Finals. #NBAFinals https:… +06/07/2017,Sports_celeb,@alleniverson,RT @thebig3: Happy Birthday @alleniverson from the #BIG3! https://t.co/h1Mthz3AUl +06/07/2017,Sports_celeb,@alleniverson,"RT @sixers: Happy birthday to the one, the only, @alleniverson! 🎉🎂 https://t.co/0t0fkcIZZf" +06/07/2017,Sports_celeb,@alleniverson,"RT @GeorgetownHoyas: Happy Birthday to @GeorgetownHoops, @NBA and @Hoophall legend, @alleniverson! https://t.co/XuwHq0A2vj" +06/07/2017,Sports_celeb,@alleniverson,Chillin wit my big baby on my day! tiaurai https://t.co/W72kIMVTBW +06/07/2017,Sports_celeb,@alleniverson,"RT @espn: The icon, the Hall of Famer, the Answer. + +Whatever you want to call him, @alleniverson turns 42 today. https://t.co/usYAYsm37F" +06/07/2017,Sports_celeb,@alleniverson,"RT @LapstoneHammer: $150 in-store and online, 11am, Friday. FCFS. Any remaining pairs from in-store release will be added to online availab…" +06/07/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: Happy birthday and best wishes to our good friend @alleniverson - you are a legend! Look forward to seeing you Friday e… +06/07/2017,Sports_celeb,@alleniverson,"RT @rootsoffight: #HBD to #TheAnswer @AllenIverson Today only, take 20% off our entire #AI3 collection. Use code: AIJB20 https://t.co/16FYA…" +06/05/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Special thanks to Coaches Steve Joyner Sr. and Jr. and Johnson C Smith University for hosting… https://t.co/MKGJvsYTIr +05/27/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: The legendary @alleniverson & @PostMalone rocking with our Lapstone & Hammer x @mitchell_ness Black Destructed Denim Co… +05/26/2017,Sports_celeb,@alleniverson,The culture has no boundaries! https://t.co/Oyu2SoQc62 +05/25/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: You have to be willing to do whatever it takes to make sure they get the message #YouGotIt #HOF… https://t.co/ooybrYjaCZ +05/25/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: A true mentor wants more for the mentee than for himself. It's been an honor to stand in your… https://t.co/6x1pFXcEPX +05/25/2017,Sports_celeb,@alleniverson,RT @ColinCowherd: Special moment meeting @alleniverson. Never heard anyone say that about LeBron and MJ https://t.co/m1JVzvJj6L +05/25/2017,Sports_celeb,@alleniverson,RT @ColinCowherd: Great meeting Allen Iverson today. Could not have been nicer or more authentic. https://t.co/gnWnmuxq7x +05/25/2017,Sports_celeb,@alleniverson,@ColinCowherd It was a pleasure! Thanks for the opportunity. +05/25/2017,Sports_celeb,@alleniverson,It's all coming together! Happy workings with these pros. https://t.co/VI5jNOyJQh +05/24/2017,Sports_celeb,@alleniverson,RT @TheHerd: .@alleniverson: It shows what type of player LeBron is that you can compare him to Black Jesus... I can't put anybody before M… +05/24/2017,Sports_celeb,@alleniverson,"RT @FS1: Who talked the most trash? @MichaelRapaport interviews @alleniverson. + +@thebig3 premieres June 26th on FS1 https://t.co/i6zaWYQa2w" +05/24/2017,Sports_celeb,@alleniverson,The Big 3 will fun for us & the fans! https://t.co/aJlUUFuahw +05/24/2017,Sports_celeb,@alleniverson,Me & big homie working https://t.co/0Kye9KCGnE +05/03/2017,Sports_celeb,@alleniverson,"RT @MooreMgmtEnt: You heard it here first... That was then, this is NOW! https://t.co/F1NQfpUifk" +05/03/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Big Time Players make Big Time Plays. 1ST I-3 NOW COMES I-4. Look out World! https://t.co/YHRhfWXFWn +05/01/2017,Sports_celeb,@alleniverson,"Congratulations on a first ballot Hall of Fame careeer. Paul ""The Truth"" Pierce https://t.co/MgaSSx3OsC" +04/27/2017,Sports_celeb,@alleniverson,You have to get the real answer #UpYourGame https://t.co/b4XghH1YBh +04/26/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: All in a day's work - https://t.co/zohqi9GrtG +04/26/2017,Sports_celeb,@alleniverson,"RT @Adweek: .@AllenIverson pitches @BleacherReport as sports culture, not just scores, in its first national spot: https://t.co/iE7huAGbEk…" +04/25/2017,Sports_celeb,@alleniverson,RT @BleacherReport: The Answer opens up about facing Michael Jordan #BRmag https://t.co/sVb4dx3inm https://t.co/L0prgRxOq5 +04/25/2017,Sports_celeb,@alleniverson,15 years later you need to get the real answer to get the game. 4.26.17. #UpYourGame @Bleacherreport #ad https://t.co/dFSZdmckm4 +04/23/2017,Sports_celeb,@alleniverson,"Proud to be playing a key part in an ol skool basketball game. Switch, Xbox, PS4 and PC. I'm… https://t.co/et5m7y7MRl" +04/23/2017,Sports_celeb,@alleniverson,Much love Kobe https://t.co/VKyTWeYYDl +04/23/2017,Sports_celeb,@alleniverson,Me & the 1 https://t.co/rJ6CcJ4vUc +04/23/2017,Sports_celeb,@alleniverson,Happy Birthday to my Uncle Stevie https://t.co/kPSQijk6YA +04/20/2017,Sports_celeb,@alleniverson,VA's finest https://t.co/oJooV67VQa +04/20/2017,Sports_celeb,@alleniverson,"A lot of good young talent at the @iversonclassic ... +https://t.co/9WHHeuYN2o" +04/20/2017,Sports_celeb,@alleniverson,Great first day at the @iversonclassic ... https://t.co/eG6Vc3q082 +04/13/2017,Sports_celeb,@alleniverson,"RT @ComplexSneakers: .@alleniverson told us how proud he was to see @kobebryant and @KingJames wear his signature sneakers. + +WATCH: https:…" +04/13/2017,Sports_celeb,@alleniverson,Check my collection from my friends @rootsoffight. The Spring Cleaning sale is this week only! #RootsOfBasketball… https://t.co/AEfzWaHU96 +04/10/2017,Sports_celeb,@alleniverson,Always nice shopping with the good people at @LapstoneHammer and had a great convo with @Complex Sneaker Shopping.… https://t.co/hUkqP4xu6X +04/01/2017,Sports_celeb,@alleniverson,"Congratulations @Real_T_Mac, well deserved killa!! https://t.co/UQ83CzQi3J" +03/20/2017,Sports_celeb,@alleniverson,Swift! Love u & your family CHAMP...Cherish tomorrow. https://t.co/jcc1as4WS7 +03/19/2017,Sports_celeb,@alleniverson,Sis just got busy in my home town...God is good! @MonicaBrown https://t.co/QHQlNOBAJE +03/10/2017,Sports_celeb,@alleniverson,"RT @SiriusXMNBA: ""The nucleus of talent is off the chain."" @alleniverson on the current @Sixers. Hear the FULL interview w/@TinaCervasio to…" +03/10/2017,Sports_celeb,@alleniverson,RT @TheSource: Mitchell And Ness Unveiled Their Revamped Brand Shop At The @NBAStore With Help From @AllenIverson https://t.co/9pOXUkvHqb h… +03/10/2017,Sports_celeb,@alleniverson,Thank you!!! @mitchell_ness +03/10/2017,Sports_celeb,@alleniverson,"RT @mitchell_ness: 🅰️ℹ️ but we call him Chuck @alleniverson! Special thanks to the @NBASTORE & @NBA, as well as all of the media & fans who…" +03/10/2017,Sports_celeb,@alleniverson,#Repost @nba ... @alleniverson greets fans at the launch of the @mitchell_ness shop at the… https://t.co/r01pqQmLwS +03/08/2017,Sports_celeb,@alleniverson,"#Repost @divineuniversal ... +Tomorrow in 🗽 at the @nbastore with the 🐐 @alleniverson... https://t.co/MoUarmjUpT" +03/08/2017,Sports_celeb,@alleniverson,Family https://t.co/8ZwqXs1DEI +03/08/2017,Sports_celeb,@alleniverson,Me and my lil bro doing it for #SixersYouthFoundation https://t.co/y608oE9Cj4 +03/03/2017,Sports_celeb,@alleniverson,Me & Lil Big Man!!! @Isaiah_Thomas https://t.co/efojWkYrDQ +03/03/2017,Sports_celeb,@alleniverson,A Angel's son! https://t.co/clEEsYZ24A +03/02/2017,Sports_celeb,@alleniverson,Greatest Sniper of All-Time @StephenCurry30 https://t.co/Srjg1LHKKP +03/01/2017,Sports_celeb,@alleniverson,Control your own destiny and do it your way. Try Stash. Use my link for a $5 bonus to start:… https://t.co/9lZAZaDLoa +02/21/2017,Sports_celeb,@alleniverson,Shop my collection #TheAnswer on SALE NOW at https://t.co/xgDSgZI9ed #rootsofbasketball https://t.co/ruxfm0pjny +01/13/2017,Sports_celeb,@alleniverson,"RT @NBA: Showing off his @Hoophall 💍 + +@alleniverson courtside at @chicagobulls/@nyknicks! https://t.co/EBGTwkN3Jm" +01/12/2017,Sports_celeb,@alleniverson,Let's help get @Isaiah_Thomas into the 2017 @NBAAllStar Game in New Orleans. Retweet to vote! #NBAVOTE #NBAAllStar… https://t.co/wJIaFHeDsF +01/07/2017,Sports_celeb,@alleniverson,#Sixers fans! Let's help get @JoelEmbiid into the 2017 @NBAAllStar Game in New Orleans. Retweet to vote! #NBAVOTE @Sixers #NBAAllStar #nba +01/07/2017,Sports_celeb,@alleniverson,#NBAVote for the lil homie joelembiid https://t.co/bF7kUUmesJ +12/21/2016,Sports_celeb,@alleniverson,RT @HRVarsity: .@alleniverson gives back to Boys and Girls Club of Greater Hampton Roads https://t.co/Ar7xB90uHm via @jfmcgrath @visualDP h… +12/21/2016,Sports_celeb,@alleniverson,@DP_Sports @jfmcgrath @visualDP thanks for coming out. +12/21/2016,Sports_celeb,@alleniverson,RT @DP_Sports: .@alleniverson gives back to Boys and Girls Club of Greater Hampton Roads https://t.co/f8qreVAAyM via @jfmcgrath @visualDP h… +12/21/2016,Sports_celeb,@alleniverson,@PhillyMayor thank you for your love and support. +12/21/2016,Sports_celeb,@alleniverson,RT @PhillyMayor: Thank you @alleniverson for your continued support of the people of Philadelphia and @PhillyPAL! https://t.co/sZ14Q9ZtZU +12/21/2016,Sports_celeb,@alleniverson,@BobbyScott Thank you for coming. +12/21/2016,Sports_celeb,@alleniverson,RT @BobbyScott: Proud to support Hall Of Famer @alleniverson & @BGC_VAPeninsula for their Bring Home Christmas For Hometown Youth event htt… +12/20/2016,Sports_celeb,@alleniverson,"Special thanks to the City of Portsmouth, Grove Church, Portsmouth Redevelopment and Housing and… https://t.co/UfT2bJFpM8" +12/20/2016,Sports_celeb,@alleniverson,RT @ChenueHer: The legend himself @alleniverson is in the building! #TheAnswer https://t.co/TSkDv7YaTf +12/20/2016,Sports_celeb,@alleniverson,@AdamWinkSports @WTKR3 thank for coming out! +12/20/2016,Sports_celeb,@alleniverson,"RT @AdamWinkSports: Think Hampton native @alleniverson loves #Virginia? (Hint: Yes. Yes he does.) + +More from A.I. tonight on @WTKR3. + +https…" +12/16/2016,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: December 29-30 we'll be having the 2nd annual #CrossOverHoopsShowcase at the Hampton Coliseum. Tickets https://t.co/QRhGR… +12/16/2016,Sports_celeb,@alleniverson,Next week stay tuned for my holiday give back in the Hampton Roads area --> https://t.co/PWfmYBe030 +12/16/2016,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Join Allen Iverson next week as he gives back to the Hampton Roads community this Christmas --> https://t.co/09ni3JCt6O +12/15/2016,Sports_celeb,@alleniverson,Rest In Peace to Craig Sager. My condolences go out to his family and friends. We lost a great… https://t.co/eOits3OfvV +12/08/2016,Sports_celeb,@alleniverson,"My latest tee from @rootsoffight just dropped #TheAnswer #PHILA +Check it out at https://t.co/M5r6bbfGRh https://t.co/DV4B1iLU7t" +11/25/2016,Sports_celeb,@alleniverson,Head to https://t.co/voCpv1A0uO to check it out. https://t.co/55CovKSFOS +11/25/2016,Sports_celeb,@alleniverson,My collection from @rootsoffight is on sale this weekend for #BlackFriday #Cyber Monday. +11/18/2016,Sports_celeb,@alleniverson,Check out my new collab with @rootsoffight part of their #RootsOfBasketball collection. Shop… https://t.co/0CRQhpu5S5 +11/17/2016,Sports_celeb,@alleniverson,My #RootsofBasketball collection from @rootsoffight comes out tomorrow. #TheAnswer https://t.co/MqCfPHkJMt +11/13/2016,Sports_celeb,@alleniverson,The champ 📸: @therealbl https://t.co/Hm6paO6V2K +11/12/2016,Sports_celeb,@alleniverson,Great win guys!!!! +10/18/2016,Sports_celeb,@alleniverson,RT @SoleCollector: .@BaitMeCom's ice cold Reeboks honor @AllenIverson: https://t.co/sR2ei5hvdt https://t.co/KUL79JJuI8 +10/18/2016,Sports_celeb,@alleniverson,RT @VibeMagazine: Check out @BaitMeCom's take on @alleniverson's Reebok Question Mid https://t.co/OS5AEfn35u https://t.co/sx4eZSKPoJ +10/07/2016,Sports_celeb,@alleniverson,Georgetown Made Me https://t.co/L5ntAh9xRv +09/21/2016,Sports_celeb,@alleniverson,RT @GeorgetownHoops: Always great having @alleniverson on campus!! #H4L #WeAreGeorgetown https://t.co/NGy2mHqBFJ +09/19/2016,Sports_celeb,@alleniverson,A real one! @50cent https://t.co/3LoCxtmXlZ +09/16/2016,Sports_celeb,@alleniverson,#QuestionMidPacker Shoe Release. @packershoes @reebokclassics #NYC https://t.co/Rx0MvBTwsM +09/15/2016,Sports_celeb,@alleniverson,Thank you for having me @colbertlateshow !! +09/12/2016,Sports_celeb,@alleniverson,"RT @PlayersTribune: A bond bigger than basketball, Aaron McKie's stories on the @AllenIverson you don’t know: https://t.co/y1zjZWE6hX https…" +09/08/2016,Sports_celeb,@alleniverson,Looking forward to a great weekend! https://t.co/3ZeyBRMLId +08/25/2016,Sports_celeb,@alleniverson,"RT @SLAMonline: Despite an unspectacular supporting cast, @alleniverson took the Sixers to the Finals in 2001. #TBT @mitchell_ness https://…" +08/24/2016,Sports_celeb,@alleniverson,RT @stance: 👍 @alleniverson https://t.co/VqHcIAoeRo +08/24/2016,Sports_celeb,@alleniverson,"RT @Sixers: Enter to win some @alleniverson socks from @stancehoops 🔥 + +[ 🗳 » https://t.co/c6pao4xSpI ] https://t.co/4Rl6zyY3FX" +08/22/2016,Sports_celeb,@alleniverson,"RT @TheHarlemHotBoy: Standing Room ONLY‼️ +@alleniverson 🏀 https://t.co/CTWZFmEoWz" +08/22/2016,Sports_celeb,@alleniverson,"RT @ReebokClassicCA: @alleniverson + @Therealkiss = Reebok Question ""A5"". Available now in Canada! #thisISclassic #Question20 https://t.co/…" +08/18/2016,Sports_celeb,@alleniverson,RT @dlynamCSN: Walking through #rittenhousesquare I was tempted to buy this painting of #HOF @alleniverson… https://t.co/Hr9iVjX6qW +08/16/2016,Sports_celeb,@alleniverson,"RT @Footaction: Find the @stancehoops X @alleniverson ""Aces"" and ""Winning Taste"" @stance sock designs in stores now! #OwnIt https://t.co/Sq…" +08/16/2016,Sports_celeb,@alleniverson,RT @mitchell_ness: 2001 Allen Iverson ASG jersey @alleniverson @nbaallstar @nba #TheANSWER #2001ASG https://t.co/10vSQ64Rh9 https://t.co/8u… +08/12/2016,Sports_celeb,@alleniverson,"RT @Therealkiss: ""LIVIN LEGENDS"" ALLEN IVERSON & JADAKISS https://t.co/bZwCRlKFqP" +08/12/2016,Sports_celeb,@alleniverson,"RT @Therealkiss: #LIVINLEGENDS +#ALLENIVERSON +#JADAKISS +#SORASPY +#REEBOK https://t.co/wKN80evOK1" +08/12/2016,Sports_celeb,@alleniverson,RT @ReebokClassics: OUT NOW: @alleniverson x @TheRealKiss Question A5 - https://t.co/qQcX8p5O2G https://t.co/9Kis2dMUe9 +08/12/2016,Sports_celeb,@alleniverson,"RT @Footaction: Hook those A5s up with the @stancehoops X @alleniverson ""Money Bags"" socks - in stores now! #OwnIt https://t.co/tbNO5AdQuP" +08/10/2016,Sports_celeb,@alleniverson,We lost a great one today. Long live John Saunders! +08/10/2016,Sports_celeb,@alleniverson,If you haven't grabbed a pair of my new @stancehoops socks get them today. Link in my bio… https://t.co/iKWupL8rrh +08/10/2016,Sports_celeb,@alleniverson,Thanks to What's Up Energy! #AICSC https://t.co/788IStYMpV +08/08/2016,Sports_celeb,@alleniverson,RT @Ballislife: (VIDEO) Allen Iverson & Larry Hughes Reenacted A 1999 NBA Commercial This Past Weekend https://t.co/mY9CxV4DMO https://t.co… +08/08/2016,Sports_celeb,@alleniverson,"RT @SLAMonline: Over the weekend, @alleniverson, @therealkiss and @myfabolouslife posted up at the @mitchell_ness party in Philly. +https://…" +06/28/2018,Sports_celeb,@TheNotoriousMMA,RT @BurgerKing: 😝 #whassup @budweiserusa https://t.co/uEGLmiqq7D +06/24/2018,Sports_celeb,@TheNotoriousMMA,Ireland baby I love you. IE Monsters 🍀 https://t.co/SOK61vQIse +06/20/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/VZStTUVxQf +06/13/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: Legend #ConorMcGregor https://t.co/VNbpzHeEVa +06/12/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/Dc1TI5meVR +06/09/2018,Sports_celeb,@TheNotoriousMMA,"Congrats @CianCowley from the cells to the stadiums. Not a scratch. They done nothing. +Jet leaves Tuesday my broth… https://t.co/zt1t98tscg" +06/07/2018,Sports_celeb,@TheNotoriousMMA,"I took up two jobs. +Where there is a will. There is a way. +Keep grinding 🙏 https://t.co/fBvohKCKxX" +06/06/2018,Sports_celeb,@TheNotoriousMMA,Solid work tonight because 4th place doesn’t get… https://t.co/SpgiGS3Rwz +06/06/2018,Sports_celeb,@TheNotoriousMMA,thinking about all of your belts 🍆 https://t.co/KLu1YJcxGF +06/06/2018,Sports_celeb,@TheNotoriousMMA,Made it to number 4 on the Forbes list this… https://t.co/nt45hs8ZbM +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @MariahMorrison7: Goals...Stubborn , Patience, Diligence,Persistence &Hard Work = this successful smile. @TheNotoriousMMA keep it up htt…" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @KristinaCarrino: @TheNotoriousMMA this is a picture of my son Connor, he’s called “Little Notorious One” by all his instructors. We lov…" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"I will usually work towards the temple, but… https://t.co/GllvrSoPoD" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @KingMcgregorFC: From Nothing , to something , to everything. @TheNotoriousMMA https://t.co/vkPsV5YRh9" +05/30/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/sp1FfUVeIw +05/29/2018,Sports_celeb,@TheNotoriousMMA,Out for a nice fly https://t.co/OqBWhtXZf2 +05/25/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: .@Relentlessward says if @50cent wants to have a go at fighting, he's happy to meet him. + +Full Interview: https://t.co…" +05/23/2018,Sports_celeb,@TheNotoriousMMA,"Keep your dukes up when you see me. +See you soon. https://t.co/M2KX5HZ90F" +05/23/2018,Sports_celeb,@TheNotoriousMMA,Respect. https://t.co/Bttk9rzdYo +05/22/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/MTLPp5lexa +05/22/2018,Sports_celeb,@TheNotoriousMMA,"Zoom in on the tie, it says fuck you. +Zoom in the cuff, it says who it’s from. +@AugustMcGregor https://t.co/JnK7WFn5Hz" +05/21/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Does @WonderboyMMA mind playing the villain? Not exactly. + +(Full interview: --> https://t.co/NnoLhzJUpe) https://t.co/…" +05/20/2018,Sports_celeb,@TheNotoriousMMA,Thank you Rock! Your work ethic is inspiring to… https://t.co/YOU8BELmXa +05/19/2018,Sports_celeb,@TheNotoriousMMA,"RT @SevereMMA: Video - Finish from Peter Queally vs David Khachatryan at FNG 88 + +https://t.co/AMrfIpXnfI #IrishMMA https://t.co/Sb2eh64JNI" +05/19/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Peter Queally: The reason I stay so calm in fights is because I’m used to sparring with Conor McGregor | https://t.co/… +05/19/2018,Sports_celeb,@TheNotoriousMMA,RT @liamgallagher: I've just watched your film Conor McGregor biblical I want you to be in my new music video as you were LG x +05/15/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: 60 Gs BABYYY @TheNotoriousMMA https://t.co/treIYTz0IE +05/12/2018,Sports_celeb,@TheNotoriousMMA,Watching the Late Late show last night and on comes this young man… https://t.co/Z9WT4vaJlf +05/12/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: Champ @TheNotoriousMMA Enjoying with the little champ 😍😍😍 @DeeDevlin1 #conormcgregor https://t.co/rJxN7zbjPc +05/12/2018,Sports_celeb,@TheNotoriousMMA,"RT @HansMolenkamp: I enjoy shooting photos of legendary people. +@TheNotoriousMMA 👑 +———$—$———- +#ConorMcGregor #TheNotoriousMMA #Mölenkamp ⚔️…" +05/11/2018,Sports_celeb,@TheNotoriousMMA,RT @John_Kavanagh: best of luck to my long time student @TheHotWheels93 walking the #DarknessintoLight in the early hours of tomorrow. cont… +05/11/2018,Sports_celeb,@TheNotoriousMMA,"RT @danfar93: Another @amazon Alexa Skill I've been playing around with for @MacTalkApp + +@TheNotoriousMMA  + +#McGregorSportsAndEntertainmen…" +05/09/2018,Sports_celeb,@TheNotoriousMMA,McGregor Sports and Entertainment. https://t.co/EDYRM4ETnT +05/03/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor (@thenotoriousmma) & SBG inspire disabled athlete Craig Rankin (@TheHotWheels93) to achieve his goals 👊… +04/26/2018,Sports_celeb,@TheNotoriousMMA,RT @TheHotWheels93: Yesterday the best fighter on the planet @TheNotoriousMMA helped me get through 3500 metres doin so with the use of one… +04/14/2018,Sports_celeb,@TheNotoriousMMA,"It is only a lesson if you learn from it. +I learn everyday. https://t.co/vg7CpK9xYg" +04/10/2018,Sports_celeb,@TheNotoriousMMA,❤️ https://t.co/6FXVQkwGs1 +04/05/2018,Sports_celeb,@TheNotoriousMMA,You’s’ll strip me of nothing you’s do nothing cunts. +04/03/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor vs. Nate Diaz II voted best fight in UFC history | https://t.co/X986fy1dRa https://t.co/YXV5SpMHzM +04/03/2018,Sports_celeb,@TheNotoriousMMA,"RT @ufc: The Greatest UFC fight of all-time - as voted on by YOU! + +🏆 @NateDiaz209 vs @TheNotoriousMMA 2 - UFC 202 - Aug. 20, 2016 🏆 + +#UFC2…" +04/02/2018,Sports_celeb,@TheNotoriousMMA,"Feeling strong on the @mcgregorsfast program. +Sign up today at https://t.co/AR8mnmdlay https://t.co/VtBdIRcBSk" +04/02/2018,Sports_celeb,@TheNotoriousMMA,These fools pull out more times than I do with my dick. +03/31/2018,Sports_celeb,@TheNotoriousMMA,"What an inspiration and true legend you are Arnold @Schwarzenegger! +It is great to hear you are back in good healt… https://t.co/O0QCE7LHo4" +03/30/2018,Sports_celeb,@TheNotoriousMMA,"Solid work with phenomenal young wrestler Kosti. +Another great Moldovan in the stable. +Up Moldova 🇲🇩 https://t.co/vF9uMZvRJ9" +03/29/2018,Sports_celeb,@TheNotoriousMMA,💪🏼🇮🇪 https://t.co/vQaq7ecTf7 +03/24/2018,Sports_celeb,@TheNotoriousMMA,Stay ready. +03/23/2018,Sports_celeb,@TheNotoriousMMA,"Sit down Dana, I'm the real boss. The Champ Champ 🇮🇪. #BeatTheBoss #ad + +Up to 35% off for a limited time 👉… https://t.co/bksBOMmK3B" +03/21/2018,Sports_celeb,@TheNotoriousMMA,"Today is World Down Syndrome Day! A day to celebrate abilities in everyone. +In honour of the… https://t.co/GGWbq91MwV" +03/21/2018,Sports_celeb,@TheNotoriousMMA,🐋🐳 https://t.co/RrXSyYpjZB +03/20/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Ahead of MMA debut, Dillon Danis finds motivation in training alongside Conor McGregor | https://t.co/L4RFnEHg31 https…" +03/17/2018,Sports_celeb,@TheNotoriousMMA,"Happy St Patrick's day everyone 🍀 +Conor Jr. went to his first parade today and he was absolutely… https://t.co/WGccbYxNqR" +03/16/2018,Sports_celeb,@TheNotoriousMMA,Let's go Jimi boy! Team @Betsafe #UFCLondon https://t.co/1BsAqTUg6C +03/16/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: 10 Years in the Making: In anticipation of his fight at this weekend’s UFC London, The Mac Life caught up with Jimi Ma…" +03/15/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Dana White now a playable character in EA UFC 3 | https://t.co/FOqDAHW86I https://t.co/xqmKSM3piS +03/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @EASPORTSUFC: The ultimate boss battle comes to the Octagon. #BeatTheBoss #BeTheBoss #EAUFC3 + +Up to 35% off for a limited time 👉 https:/…" +03/15/2018,Sports_celeb,@TheNotoriousMMA,RT @MonsterGaming: Get in the game and play as the GOAT! https://t.co/jCOpucYWQH +03/12/2018,Sports_celeb,@TheNotoriousMMA,You will never beat the McGregor's. https://t.co/qE3EbFWkee +03/12/2018,Sports_celeb,@TheNotoriousMMA,"RT @BurgerKing: it's an honor to meet this King, from one King to another...@TheNotoriousMMA #spicycrispychickensandwich https://t.co/ldXkc…" +03/09/2018,Sports_celeb,@TheNotoriousMMA,1 Euro. https://t.co/GdLPottQw2 +03/09/2018,Sports_celeb,@TheNotoriousMMA,"The conormcgregorfast conditioning program is the true animal. +10 TRUE weeks long this camp was.… https://t.co/OXUZTPcTgm" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"Happy international Women's day everyone! +Get your tits out for the lads ladies. We love you… https://t.co/2rRn1TNPXq" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"170 years ago today Ireland's Tri-colour was first raised! +I've raised it high and with pride… https://t.co/P1p68oGetW" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"WHAT A HISTORY! +WHAT A FUTURE! +IRELAND FIRST 🍀 https://t.co/AFZw0F2AUJ" +03/08/2018,Sports_celeb,@TheNotoriousMMA,Standing next to the Original declaration of Ireland's independence with my son Conor McGregor Jr. https://t.co/A9QoJ0rvt7 +03/07/2018,Sports_celeb,@TheNotoriousMMA,"Underneath Ireland's GPO. +Those in power, proceed with caution. +This is an Irish pedestrian area. https://t.co/CUqjXFsEBg" +03/07/2018,Sports_celeb,@TheNotoriousMMA,Dons under 30. https://t.co/MHuUnZBHcw +03/07/2018,Sports_celeb,@TheNotoriousMMA,Thanks for the cheese. Actually no give me all your cheese. https://t.co/hT2EH6LUk1 +03/05/2018,Sports_celeb,@TheNotoriousMMA,"Making deals and TAKING deals! +Kings recognise Kings! +Congrats to jayz on his number 1 takeover… https://t.co/ienY2VHUc0" +03/05/2018,Sports_celeb,@TheNotoriousMMA,The Undisputed Champ Champ and the Undisputed Spicy Champ #spicycrispychickensandwich @burgerking #ad https://t.co/cd9yR0SgHe +03/05/2018,Sports_celeb,@TheNotoriousMMA,There are two kings in this picture and only one in the fight game. Forget the rest. Big news on the way.… https://t.co/mfUCgYu9sA +03/05/2018,Sports_celeb,@TheNotoriousMMA,"@TonyFergusonXT You are a sad bastard, mate." +03/05/2018,Sports_celeb,@TheNotoriousMMA,"@BlessedMMA @FrankieEdgar Kid, you bounced. Leave it." +03/04/2018,Sports_celeb,@TheNotoriousMMA,"Frankie's career deserved for that to be against me tonight. +Respect Frankie. +Love and respect always! +A true fighters fighter ❤" +03/01/2018,Sports_celeb,@TheNotoriousMMA,Happy birthday kid. https://t.co/wlmpKE6SHT +03/01/2018,Sports_celeb,@TheNotoriousMMA,You are all handy bread. https://t.co/yM9qFUrH19 +02/22/2018,Sports_celeb,@TheNotoriousMMA,"I am fighting again. Period. +I am the best at this. +I put my name forward to step in at UFC… https://t.co/fbxOL8l4JL" +02/22/2018,Sports_celeb,@TheNotoriousMMA,"RT @SixOClockShow: Straight off the dance floor and into our studio, .@GregorErin will be with us tonight! Any questions? Get them in! http…" +02/22/2018,Sports_celeb,@TheNotoriousMMA,"Harry Kane, Sergio Aguero and Mo Salah are lighting up this year's Premier League. We want to know who you think wi… https://t.co/U9tqcnLCmL" +02/21/2018,Sports_celeb,@TheNotoriousMMA,"At the @mcgregorsfast Sports Institute staying sharp and staying ready. +We are leading Ireland to a better tomorro… https://t.co/a5YJZ8W5Gp" +02/20/2018,Sports_celeb,@TheNotoriousMMA,"At the conormcgregorfast Sports Institute staying sharp and staying ready. +We are leading… https://t.co/ZheGI2JHOj" +02/20/2018,Sports_celeb,@TheNotoriousMMA,🦍 @mcgregorsfast https://t.co/dT8LKHvdtc +02/20/2018,Sports_celeb,@TheNotoriousMMA,RT @BetsafeRacing: A great day of racing ahead at @WetherbyRaces! Check out our Acca Boosts for today's action: https://t.co/7rIPVjOZGS htt… +02/20/2018,Sports_celeb,@TheNotoriousMMA,RT @RTEOne: 'From good to to GREAT!' well done @GregorErin & @RYANMCS! #DWTSIrl https://t.co/inBViX2PhT +02/19/2018,Sports_celeb,@TheNotoriousMMA,True Irish Whiskey is forming in the barrels as we speak. https://t.co/DLI7igJK9Z +02/18/2018,Sports_celeb,@TheNotoriousMMA,I am happy for Floyd and his recent announcement that he is out of these current fight… https://t.co/EfTBJXf4RK +02/17/2018,Sports_celeb,@TheNotoriousMMA,RT @iamblazen: @TheNotoriousMMA No ref is gonna save Floyd when he starts shaking his A$$ at Conor in the #UFC ⚰️🔨 https://t.co/fegS0C0HNx +02/17/2018,Sports_celeb,@TheNotoriousMMA,"This was just moments after I tore my ACL in a fight in Boston Massachusetts. +It was when I… https://t.co/hrkuUVOCKd" +02/16/2018,Sports_celeb,@TheNotoriousMMA,Controlling the human head. https://t.co/0Ktgp4CvZz +02/16/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: John Kavanagh (@John_Kavanagh) on McGregor/Mayweather in MMA: ‘We could fit it in on the night of Conor’s real fight’… +02/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @btsportufc: The Russian Hammer is back! 👊 + +And #UFC223 just keeps on stacking up... + +Watch it live on BT Sport HD on April 7th 📺 https:…" +02/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @HansMolenkamp: (Hans Photo Vault) 2015 +The undisputed King of the fight game and life pretty much. 💰🏅 +@TheNotoriousMMA at one of our fi…" +02/14/2018,Sports_celeb,@TheNotoriousMMA,Walking into the place of battle like it is the place of breakfast. https://t.co/xR7ErsyAtB +02/11/2018,Sports_celeb,@TheNotoriousMMA,A real elbow in a real fight. https://t.co/9kZ7Opw8Zl +02/08/2018,Sports_celeb,@TheNotoriousMMA,RT @PrettyGreen: Strong start to the day - @SportIndustry nomination for ‘Best Use of PR’ for our @Betsafe @TheNotoriousMMA campaign #BTSIA… +02/08/2018,Sports_celeb,@TheNotoriousMMA,RT @Betsafe: Betsafe are delighted to have been nominated in the ‘Best Use of PR’ category @SportIndustry for our PR campaign with @TheNoto… +02/07/2018,Sports_celeb,@TheNotoriousMMA,"5 years ago today, I signed a contract with the UFC. +When the call came, I would have been… https://t.co/Il0vbfXdN2" +02/07/2018,Sports_celeb,@TheNotoriousMMA,"RT @MMAHistoryToday: Feb7.2013 + +5 years ago today, + +The UFC signed Conor McGregor to a multi fight contract. https://t.co/BWW4CJJ9ei" +02/05/2018,Sports_celeb,@TheNotoriousMMA,"Standing next to a rare signed photo of Muhammad Ali and Joe Frazier. +Two fighting greats who… https://t.co/7XUYts14Fk" +02/05/2018,Sports_celeb,@TheNotoriousMMA,"🍀🇮🇪🇺🇸❤🍀1 +@themaclifeofficial https://t.co/vH9Qsq887J" +02/05/2018,Sports_celeb,@TheNotoriousMMA,RT @SophiaHelwani: If Conor McGregor ever wants to become a pop singer he could be Justin Timberlake's doppelganger. @jtimberlake @TheNotor… +02/05/2018,Sports_celeb,@TheNotoriousMMA,Thank you to everyone voting and supporting my sister on Dancing with the stars. Yup the… https://t.co/PsdyUGiLRu +02/04/2018,Sports_celeb,@TheNotoriousMMA,Boo https://t.co/mDvS8DpAcU +02/04/2018,Sports_celeb,@TheNotoriousMMA,"Text ""Erin"" to 53125 NOW! +What a performance this week @erinmcgregor123 on Dancing with the Stars! +#TeamMcGregor… https://t.co/KqdVee0UF7" +02/03/2018,Sports_celeb,@TheNotoriousMMA,When there is no referee to save you. https://t.co/5XXA7G5uCq +02/03/2018,Sports_celeb,@TheNotoriousMMA,The game. https://t.co/v5P3qp7nmY +02/02/2018,Sports_celeb,@TheNotoriousMMA,Think you can take me? You'll do NOTHING! @EASPORTSUFC 3 is out now 👉 https://t.co/kX0BYy5t2V #ad https://t.co/q1pLwU3Ehe +02/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Conor McGregor ""delighted"" for Ronda Rousey in WWE move | https://t.co/ABkIPrlOuU https://t.co/rO1q4N2FDT" +02/02/2018,Sports_celeb,@TheNotoriousMMA,RT @Eemsoshea: Conor McGregor @TheNotoriousMMA &many more shone a bright light for @CMRFCrumlin in NY this wk @ 7th Best of Ireland Gala Di… +02/02/2018,Sports_celeb,@TheNotoriousMMA,💪🏼 https://t.co/bOPh8KUyZz +02/02/2018,Sports_celeb,@TheNotoriousMMA,I run New York. https://t.co/TjxNjbGBGo +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor honoured for his charitable work for Dublin children’s hospital | https://t.co/mQvMUNhAa2 https://t.co/… +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor was the United States’ most Googled athlete in 2017 | https://t.co/E3hhd1Djbe https://t.co/qDxit7r4e1 +02/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Conor McGregor on Floyd Mayweather's MMA posts: 'If he doesn't do it, it'll follow him for the rest of his days' | htt…" +02/01/2018,Sports_celeb,@TheNotoriousMMA,It was an honour to support Our Ladies Children's Hospital of Crumlin at the 7th Annual 'Best of… https://t.co/GzkENlxIAN +02/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @DamonMartin: A new study shows Conor McGregor as the most Googled athlete in the U.S. with Ronda Rousey at No. 7. Take a look — +#UFC…" +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @arielhelwani: Conor McGregor is in New York tonight. He’s being honored at the New York’s Children Medical Research Foundation 7th Annu… +01/31/2018,Sports_celeb,@TheNotoriousMMA,RT @EASPORTSUFC: Are you ready fight fans?! RT and tag a friend for a chance to both win #EAUFC3 Champions Edition codes and play today! ht… +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Comfort on the commercial flight! +Rocking my custom made 'NOTORIOUS' @beatsbydre headphones!… https://t.co/Bi7W1gT8PD" +01/31/2018,Sports_celeb,@TheNotoriousMMA,Stay hydrated. https://t.co/wYbpibNmkG +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Accepting my UFC fighter of the year award at the awards ceremony in Las Vegas in 2016. +I called in through phone… https://t.co/QE4mqCdbDA" +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Accepting my UFC fighter of the year award at the awards ceremony in Las Vegas. +I called in… https://t.co/z0K5GnUka4" +01/30/2018,Sports_celeb,@TheNotoriousMMA,Fuck the Mayweathers. https://t.co/1E4MQTWoUr +01/30/2018,Sports_celeb,@TheNotoriousMMA,"Hahahaha very good. Keep up the good work my son. +Yours sincerely, +Senior. https://t.co/Qk3U69isTS" +01/29/2018,Sports_celeb,@TheNotoriousMMA,Neck work. https://t.co/60LQ9ib7jS +01/29/2018,Sports_celeb,@TheNotoriousMMA,"Attacking the standing back. +This is the equivalent of being wrapped around by a boa… https://t.co/3pWNszzOKo" +01/29/2018,Sports_celeb,@TheNotoriousMMA,I'm on top. https://t.co/x5iZwfOpFU +01/28/2018,Sports_celeb,@TheNotoriousMMA,"Congrats @GregorErin on Dancing with the stars tonight! +You killed it again! +Vote 'Erin' to… https://t.co/DWoCnBRV9e" +01/27/2018,Sports_celeb,@TheNotoriousMMA,I am so everywhere I am behind you. https://t.co/diq4sQWlgH +01/27/2018,Sports_celeb,@TheNotoriousMMA,Yum yum. https://t.co/q4i4ab7HJh +01/26/2018,Sports_celeb,@TheNotoriousMMA,God bless us all 🙏 https://t.co/i4h2pZOhUI +01/25/2018,Sports_celeb,@TheNotoriousMMA,"We are having lunch on the jet on our way to Ibiza, and he is still after the watch too. +My… https://t.co/Z1mwPMaqgU" +01/19/2018,Sports_celeb,@TheNotoriousMMA,Testosterone. https://t.co/szD4xOnVnK +01/19/2018,Sports_celeb,@TheNotoriousMMA,"In a parallel universe could we have seen this? +Follow my media empire @Maclifeofficial on all… https://t.co/sbpIdFvMBL" +01/19/2018,Sports_celeb,@TheNotoriousMMA,RT @Betsafe: That #FridayFeeling. 💯🔥 https://t.co/milMUmSypE +01/19/2018,Sports_celeb,@TheNotoriousMMA,RT @JaredDudley619: Just got done watching @TheNotoriousMMA new Movie!!! 🔥🔥🔥🔥 Hate him or Love him but after watching that movie you will r… +01/19/2018,Sports_celeb,@TheNotoriousMMA,White teeth in 10 minutes with @hismileteeth. Go to https://t.co/rKIK9Dm9WA to get yours #ad https://t.co/mGh4F4Xvgu +01/18/2018,Sports_celeb,@TheNotoriousMMA,Fresh and solid. You bet your bollox I can play Centre half hahah https://t.co/Ij9IDFrfBV +01/18/2018,Sports_celeb,@TheNotoriousMMA,"Working on the ""Blitz"" tonight at @SBG_Ireland. +An underrated technique until it goes through… https://t.co/vIOjO3VzO7" +01/16/2018,Sports_celeb,@TheNotoriousMMA,The White Knight. https://t.co/dEYPhaBZZ6 +01/16/2018,Sports_celeb,@TheNotoriousMMA,Proud of the newest members of @beatsbydre. Keep pushing boundaries! #abovethenoise https://t.co/sa9dTKLk3Z +01/16/2018,Sports_celeb,@TheNotoriousMMA,The home of the champ champ. https://t.co/UlSYRGkxMQ +01/15/2018,Sports_celeb,@TheNotoriousMMA,Driving out the compound these women are animals. https://t.co/zRM29Lp6na +01/15/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/OinS5sQjyt https://t.co/BtloiWrfSl +01/14/2018,Sports_celeb,@TheNotoriousMMA,The Rich list. https://t.co/cjseZSJJfG +01/14/2018,Sports_celeb,@TheNotoriousMMA,"Great job on Dancing with the stars @GregorErin!! #Proud +Voting lines are now open everyone!… https://t.co/j0nTbt41OQ" +01/13/2018,Sports_celeb,@TheNotoriousMMA,Taasty! https://t.co/yFeTvLb10V +01/12/2018,Sports_celeb,@TheNotoriousMMA,"Fighting pure is a different gravy. +Looking at the landscape of my current opponents, everyone… https://t.co/aKEjNDnn01" +01/12/2018,Sports_celeb,@TheNotoriousMMA,Control that wrist and let rip into the temple with the free hand. Stay ready always. https://t.co/mzcrykyLA0 +01/12/2018,Sports_celeb,@TheNotoriousMMA,Great rounds with my brother sergey_pikulskiy tonight at @SBG_Ireland! https://t.co/KfmY1Xd8Vq +01/12/2018,Sports_celeb,@TheNotoriousMMA,Back at the gym floyds a rat. https://t.co/FT5Zea2z8N +01/12/2018,Sports_celeb,@TheNotoriousMMA,"This is the new @marquedelux range. +The one in the back is my range. https://t.co/QJW5EC7jOc" +01/11/2018,Sports_celeb,@TheNotoriousMMA,"My latest time piece. +The pink gold skeleton. https://t.co/c64QJQAuwu" +01/10/2018,Sports_celeb,@TheNotoriousMMA,Plunder. https://t.co/QpLdbXNOJr +01/10/2018,Sports_celeb,@TheNotoriousMMA,With the Baroness lady Mone of Mayfair. https://t.co/6ybjrmoDWP +01/10/2018,Sports_celeb,@TheNotoriousMMA,"Face off with Mr. Branson. +He is not a knighted Sir on this soil. https://t.co/LQBC1zYhP1" +01/10/2018,Sports_celeb,@TheNotoriousMMA,@FloydMayweather I am the cartel. +01/10/2018,Sports_celeb,@TheNotoriousMMA,RT @MichelleMone: Totally love this guy!! @TheNotoriousMMA https://t.co/qHH4Fg9Fx9 +01/10/2018,Sports_celeb,@TheNotoriousMMA,"Pulling into the back of the convention centre to collect some award. +Handy. Thanks. https://t.co/nBCAO4wV3H" +01/10/2018,Sports_celeb,@TheNotoriousMMA,Buzzing with my auntie Joan at Eddie Rockets hahah ❤ https://t.co/kRvDw85HsI +01/10/2018,Sports_celeb,@TheNotoriousMMA,Yup the Moore's ❤ https://t.co/hBDR7jLQKK +01/09/2018,Sports_celeb,@TheNotoriousMMA,"The road to becoming the GOAT goes through me #EAUFC3 #EASponsored + +Get Champions Edition 👉 https://t.co/JUNlKeiqAv https://t.co/pZcG1xr3yt" +01/09/2018,Sports_celeb,@TheNotoriousMMA,"This is a happy young man in the midst of it all! +God bless this life. Truly god bless. https://t.co/izlrYNwFwx" +01/09/2018,Sports_celeb,@TheNotoriousMMA,"Great to meet this little man tonight. +My training partner Ciaran Maher, his son and his wife.… https://t.co/mRwyMIlpa3" +01/09/2018,Sports_celeb,@TheNotoriousMMA,The only Q in the place. https://t.co/Lk0FL8twuo +01/09/2018,Sports_celeb,@TheNotoriousMMA,"I shut down funderland tonight, for my family and friends to have fun on this fresh January… https://t.co/1DHxX3j2b9" +01/08/2018,Sports_celeb,@TheNotoriousMMA,The people of Ireland I love you 🍀❤ https://t.co/mC7a7Ueq04 +01/06/2018,Sports_celeb,@TheNotoriousMMA,"This moment was survived. +The arm was kept locked out straight as pictured, allowing the… https://t.co/W0rgQvbue2" +01/06/2018,Sports_celeb,@TheNotoriousMMA,McGregor rules. https://t.co/dWCD7PlD5f +01/06/2018,Sports_celeb,@TheNotoriousMMA,"Great work with my brother and head coach of sbgdublin24 The Hooligan @paddyholohanmma +yup the… https://t.co/hUHf1TrjPQ" +01/06/2018,Sports_celeb,@TheNotoriousMMA,Late night trim feeling so good. https://t.co/OdwvCQitRe +01/05/2018,Sports_celeb,@TheNotoriousMMA,Shut your weasel mouth. Who gives a fuck about the North American numbers when we are the GLOBAL KINGS you shmuck.… https://t.co/fdE7hL1z8r +01/05/2018,Sports_celeb,@TheNotoriousMMA,Solid https://t.co/Py7PFTpl3X +01/05/2018,Sports_celeb,@TheNotoriousMMA,Great work with my brother @richie_smullen today at @SBG_Ireland. Look out for him on the next… https://t.co/zh6qFEQhNY +01/04/2018,Sports_celeb,@TheNotoriousMMA,"RT @John_Kavanagh: Starting on Monday one of my first Black Belts, Nerigus, will be coaching full time at HQ. He started with me more than…" +01/04/2018,Sports_celeb,@TheNotoriousMMA,A lot of great buzzes in this mad life but none greater or madder than this buzz right here… https://t.co/6FY9Ggm0x0 +01/04/2018,Sports_celeb,@TheNotoriousMMA,🍆 @CalvinKlein https://t.co/leFoCBBvLV +01/03/2018,Sports_celeb,@TheNotoriousMMA,"""Smiles every time my face is up in the source!"" +Whatever you do in this life, do it for your… https://t.co/oHHX0KOoDU" +01/03/2018,Sports_celeb,@TheNotoriousMMA,"RT @ConormcGregor5: A Irish woman didn't take too kindly to being clamped so she removed the clamp herself & left this message + +'You'll do…" +01/02/2018,Sports_celeb,@TheNotoriousMMA,"""The Flatley"" +With sharp peripheral vision and big balls of steel, you too can master this… https://t.co/EfgSbLEIwg" +01/02/2018,Sports_celeb,@TheNotoriousMMA,I slaughter your pets and wear them as coats. And I only wear them once. https://t.co/5IMAc3ysgN +01/02/2018,Sports_celeb,@TheNotoriousMMA,The super hero villain. @beatsbydre https://t.co/Ln2gr1wVa3 +01/01/2018,Sports_celeb,@TheNotoriousMMA,Now get your Diddy's out and beg. +01/01/2018,Sports_celeb,@TheNotoriousMMA,And that's Diddy bread on top of already Diddy bread. +01/01/2018,Sports_celeb,@TheNotoriousMMA,"Truly truly truly get on your fucking knees and beg me. Otherwise I don't give a bollox. +My whiskey is out this year and thats Diddy bread." +01/01/2018,Sports_celeb,@TheNotoriousMMA,Shin bone to the cheek bone. The rule set kept you out the funeral home. https://t.co/chJ5ieUQvQ +01/01/2018,Sports_celeb,@TheNotoriousMMA,That Dagestani was dog shit the other night you's are all nuts. Game full of sloppy bums asking to be slept. Pay me my worth and Kings back. +01/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @CageWarriors: One shot. @TheNotoriousMMA has been putting people away with this left hand since the early days! 👌 + +#McGregorTakeover ht…" +01/01/2018,Sports_celeb,@TheNotoriousMMA,#2017BestNine ❤ https://t.co/zkAcbcImkB +12/30/2017,Sports_celeb,@TheNotoriousMMA,Big Mickey https://t.co/fyZLFGgt3X +12/26/2017,Sports_celeb,@TheNotoriousMMA,"Happy Christmas everyone ❤️ +I had a special day with my son, my family and my friends! +I hope… https://t.co/buwkiiHpz5" +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @ashbabyxx24xx: Best Christmas present ever. Can’t wait to settle down and watch @TheNotoriousMMA tonight. Im@proud to be half Irish ☘️… +12/25/2017,Sports_celeb,@TheNotoriousMMA,"RT @joshtetlow: Watching the @TheNotoriousMMA Movie, Fire lit, Whisky in hand. A Merry Christmas to all the Tebow lovers and haters! 🎥 🥃🎄 h…" +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @ryannevanssNo9: Going to be a good rest of the day 🤴🎁@TheNotoriousMMA https://t.co/TAhDLXZ5pz +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @StephenMcMinter: People always tell me they dunno what to buy me and then they roll up with a hand signed @TheNotoriousMMA photo. Clear… +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @stan_cargill: @TheNotoriousMMA brothers favourite Christmas present ... https://t.co/et927Tcfin +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @Vince_Costello: @TheNotoriousMMA best Christmas gifts ever! https://t.co/MyYQf0y44L +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @AdamB156: Santa knew what’s up! @TheNotoriousMMA https://t.co/lxN2XPIc8k +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @James_Hoare2301: All I wanted for Christmas was the @TheNotoriousMMA movie and I got it ❤️ It’s the small things that count... Merry Ch… +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @jordhall6: What a christmas present this is!!! Over the moon with it!! Unreal best christmas ever!! @TheNotoriousMMA @DeeDevlin1 @John_… +07/01/2018,Sports_celeb,@TigerWoods,Tiger tees off tomorrow at 1:20 p.m. ET with hopes that the course plays firm and tough. – TGR https://t.co/VvVK5ansgZ +06/30/2018,Sports_celeb,@TigerWoods,The camo bag used in today’s round will be signed and entered into an auction where the proceeds will benefit… https://t.co/SxUb2MS2v1 +06/30/2018,Sports_celeb,@TigerWoods,"“I was thinking something in the mid-to-high 60’s would have been a good score, and I was able to do that,” said Wo… https://t.co/yghaNw1j0X" +06/29/2018,Sports_celeb,@TigerWoods,"Woods tees off tomorrow morning at 8:20 a.m. ET - TGR +https://t.co/7mi2QlFeA4" +06/28/2018,Sports_celeb,@TigerWoods,Go check out @TGRFound’s Activity Zone at @QLNational this weekend! - TGR https://t.co/SgXmdzVPTB +06/28/2018,Sports_celeb,@TigerWoods,"“Fun Pro-Am round today. Excited to be back in DC playing at the @QLNational supporting @TGRFound.” #MomentsMadeHere +https://t.co/NsgbMifWBq" +06/27/2018,Sports_celeb,@TigerWoods,I am proud to continue the tradition of honoring and supporting our nation’s military at the @QLNational.… https://t.co/w4n1636dEI +06/26/2018,Sports_celeb,@TigerWoods,RT @TGRFound: Check out this great article via @usatoday: @TigerWoods wants to level the playing field in education one child at a time htt… +06/17/2018,Sports_celeb,@TigerWoods,"Happy Father's Day everyone. +I'm blessed and proud to be Sam's and Charlie's dad." +06/16/2018,Sports_celeb,@TigerWoods,"Tiger heads home after missed cut at U.S. Open but looks forward to upcoming events, including the @QLNational. - T… https://t.co/zETwWpCaQh" +06/15/2018,Sports_celeb,@TigerWoods,"Tiger tees off at tomorrow morning at 8:02 a.m. ET on the 10th hole with Johnson and Thomas. - TGR +https://t.co/eW5ZKmwaBx" +06/13/2018,Sports_celeb,@TigerWoods,"Upon arrival at Shinnecock, Woods practices with fellow competitors and friends who touch on how his game is lookin… https://t.co/JBnWD7B7zg" +06/13/2018,Sports_celeb,@TigerWoods,"It’s been 10 years since Woods won the U.S. Open. He’s back with hopes of a fourth win, this time at Shinnecock Hil… https://t.co/ad39RLr9fe" +06/04/2018,Sports_celeb,@TigerWoods,"“Overall, my game is where it needs to be heading into the U.S. Open, and that’s something that’s very positive,” s… https://t.co/qJLA7VEhzf" +06/03/2018,Sports_celeb,@TigerWoods,"“I’m in a position where if I shoot another good round like I had the last two days, I’ve got a chance,” said Woods… https://t.co/bP5yrUTpjm" +06/02/2018,Sports_celeb,@TigerWoods,"“I was in the rhythm of the round,"" said Woods after making an eagle on the 11th hole. Finishing today at 5-under-p… https://t.co/SvfI5qGZ9E" +06/01/2018,Sports_celeb,@TigerWoods,"Tiger, who ended Round 1 at even par, will tee off tomorrow at 1:16 p.m. ET with Dufner and Rose. - TGR +https://t.co/KIG0Xuu4AZ" +05/30/2018,Sports_celeb,@TigerWoods,"“This one is very special to all of us for what he has done,” said Woods of tournament founder and host, Jack Nickl… https://t.co/lftr1OJkyf" +05/30/2018,Sports_celeb,@TigerWoods,Fun playing with Peyton today. Now time to do some work @MemorialGolf https://t.co/YuhCTiMpMi +05/30/2018,Sports_celeb,@TigerWoods,Excited to be back at The Memorial. New @TaylorMadeGolf #MGwedge going in the bag this week. https://t.co/wq83blgY20 +05/29/2018,Sports_celeb,@TigerWoods,"Here today at Shinnecock, and grateful every day to the men & women who sacrificed their lives to give us our freed… https://t.co/bUBxAIk63F" +05/23/2018,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Loved having our friends from @ChiGolfAlliance in the office yesterday. Wonderful to hear @MarkRolfingGC and @TigerWood… +05/23/2018,Sports_celeb,@TigerWoods,So proud of @TGRFound for being recognized as a leader in leveraging tech and talent to promote social good. - TGR https://t.co/h5pI7HASaO +05/21/2018,Sports_celeb,@TigerWoods,"""Joe, take the day off."" @TGRFound supporter to caddie for Woods Wednesday at #HeroWorldChallenge for $50,000 donat… https://t.co/eLDNrMynY7" +05/20/2018,Sports_celeb,@TigerWoods,"Thank you @LarryFitzgerald, @ReggieBush and all of the guests who came out to #TigerJam to support @TGRFound this w… https://t.co/ksdTtgKfji" +05/20/2018,Sports_celeb,@TigerWoods,What a great show by @train at #TigerJam. Thank you for supporting @TGRFound https://t.co/UbGjiZ6Nnn +05/20/2018,Sports_celeb,@TigerWoods,Glad to have @TGRFound scholar Desiree Simms share her story with the #TigerJam guests. Such an inspiration! https://t.co/XwysAknQQq +05/18/2018,Sports_celeb,@TigerWoods,Excited to celebrate 20 years of #TigerJam this weekend. This event has been vital to the impact @TGRFound has had… https://t.co/40dMGox4Nw +05/18/2018,Sports_celeb,@TigerWoods,Fun time teeing it up for guests at Shadow Creek for the 20th #TigerJam today! https://t.co/u0dKi7rako +05/14/2018,Sports_celeb,@TigerWoods,"“I felt good in basically every facet of my game,” said Woods, who finished The Players tied for 11th. - TGR +https://t.co/A28ay0SelN" +05/13/2018,Sports_celeb,@TigerWoods,"Happy Mother’s Day everyone. Thank you Mom for giving me the strength to chase after my dreams in school, golf, lif… https://t.co/xhy2qQjxW8" +05/13/2018,Sports_celeb,@TigerWoods,"Rising up the leaderboard, Tiger finishes Saturday’s round at 7-under-par 65. - TGR +https://t.co/op8DKddLaJ" +05/12/2018,Sports_celeb,@TigerWoods,"Woods heads into the weekend at The Players, teeing off tomorrow at 9 a.m. ET. - TGR +https://t.co/H4t0r0cPVv" +05/11/2018,Sports_celeb,@TigerWoods,"“I gotta drive it a lot better than I did today and obviously hit it closer,” said Woods, who tees off tomorrow mor… https://t.co/L1qqh2iU8c" +05/09/2018,Sports_celeb,@TigerWoods,"“I think it’s going to be fun playing with him again,” said Woods of Mickelson. The two, alongside Rickie Fowler, w… https://t.co/YQDDc4nM5t" +05/07/2018,Sports_celeb,@TigerWoods,"Woods finishes tied for 55th and is already looking forward to next week. - TGR +https://t.co/0MKPwljGac" +05/06/2018,Sports_celeb,@TigerWoods,"Having not played at the @WellsFargoGolf in six years, it really meant a lot to me to receive so much love and supp… https://t.co/F7Box8S1ga" +05/06/2018,Sports_celeb,@TigerWoods,"“I’m hitting the ball well enough to contend, to win this golf tournament,” said Woods, who tees off tomorrow at 11… https://t.co/JYX8zw4ZZs" +05/05/2018,Sports_celeb,@TigerWoods,"“I just need to make the adjustments,” Woods said in regards to the firm greens. With a birdie on the final hole, h… https://t.co/48JdUyW9dx" +05/04/2018,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: #MayThe4thBeWithYou https://t.co/DtEgDRHsno +05/04/2018,Sports_celeb,@TigerWoods,"Woods finishes the opening round with an even par. He will tee off tomorrow morning at 7:40 a.m. ET - TGR +https://t.co/g9OqXxNKRA" +05/02/2018,Sports_celeb,@TigerWoods,"Tiger arrives at the Wells Fargo Championship with new irons and high hopes for the weekend. - TGR +https://t.co/ROjYaLBuYk" +05/01/2018,Sports_celeb,@TigerWoods,Phase 1 of irons development with @TaylorMadeGolf is complete. Looking forward to teeing it up this week! https://t.co/Msgkyu4K0t +04/26/2018,Sports_celeb,@TigerWoods,Break over. Time to get back to work at @WellsFargoGolf and @THEPLAYERSChamp. See you out there. +04/25/2018,Sports_celeb,@TigerWoods,"RT @BluejackNation: Two years ago today, we celebrated the grand opening of @BluejackNation with @TigerWoods and @tgrdesignbytw. As we refl…" +04/24/2018,Sports_celeb,@TigerWoods,"Inspiring day working with my @TGRFound team and meeting Pratima Sherpa, an amazing young woman from Nepal. We can… https://t.co/xYcHSKQg6s" +04/17/2018,Sports_celeb,@TigerWoods,Had a great time with the kids at @GolfBigCedar's Junior Clinic this afternoon. Nice way to end the day. https://t.co/1bqtYZaqam +04/17/2018,Sports_celeb,@TigerWoods,Great to be back at Payne's Valley with my @tgrdesignbytw team and @GolfBigCedar. https://t.co/4Qd9vlppjc +04/09/2018,Sports_celeb,@TigerWoods,"Bittersweet ending for Tiger as he finished the last round at The Masters. - TGR +https://t.co/emtXFyum45" +04/09/2018,Sports_celeb,@TigerWoods,Congrats @PReedGolf! At worst you have assured yourself a captain’s pick for next year’s @PresidentsCup. +04/08/2018,Sports_celeb,@TigerWoods,"""I wish this weekend would have been a little bit better,"" Woods said, hopeful for a strong finish. - TGR +https://t.co/EhMpaEgkwK" +04/07/2018,Sports_celeb,@TigerWoods,"Tiger continuing into weekend thankful to be a part of it all. - TGR +https://t.co/LTXEwYSOao" +04/06/2018,Sports_celeb,@TigerWoods,"""There's a lot of holes left to be played,"" said Woods, who will tee off today at 1:27 p.m. ET. - TGR +https://t.co/fLzA64UKDP" +04/05/2018,Sports_celeb,@TigerWoods,"The wait is over. - TGR +https://t.co/7hwq04UfkY" +04/04/2018,Sports_celeb,@TigerWoods,"Tiger tees off Thursday at 10:42 a.m. ET, and we can hardly wait. - TGR +https://t.co/8Vl9t3WBSN" +03/30/2018,Sports_celeb,@TigerWoods,"Just a few more days until Augusta. I'm excited! +https://t.co/BzD70K3V5o" +03/26/2018,Sports_celeb,@TigerWoods,"Excited to be back in D.C. this summer and looking forward to playing in @TheNationalDC. + +https://t.co/NGkpoveZ8y" +03/19/2018,Sports_celeb,@TigerWoods,It was a great two weeks of being in contention again. I feel like I'm getting a little better. Great playing by Ro… https://t.co/5aljwJC54B +03/13/2018,Sports_celeb,@TigerWoods,The @PresidentsCup has always been special to me and I'm so excited for the opportunity to lead the U.S. Team in 20… https://t.co/M6nDOj0XFs +03/12/2018,Sports_celeb,@TigerWoods,"Wow, what an amazing week...people, atmosphere, adrenaline, back nine on Sunday, man I’ve missed this. Getting bett… https://t.co/EYk1wAtE22" +03/02/2018,Sports_celeb,@TigerWoods,After a good recovery week I’m committing to play in the @ValsparChamp and @APinv next two weeks. +02/25/2018,Sports_celeb,@TigerWoods,Happy 80th bday Phil. Thanks for believing in me and always being someone I could trust. +02/19/2018,Sports_celeb,@TigerWoods,"Thanks to @GenesisUSA, the fans, volunteers and my @TGRLiveEvents staff for an amazing @genesisopen week. https://t.co/Q1JXTQAj4z" +02/19/2018,Sports_celeb,@TigerWoods,Congrats @bubbawatson on winning the @genesisopen. Proud to add you once again to the impressive list of champions… https://t.co/3MenMORmp3 +02/15/2018,Sports_celeb,@TigerWoods,Frank likes his new bag. #GenesisOpen https://t.co/9IvLgJF3Re +02/15/2018,Sports_celeb,@TigerWoods,"Enjoyed the Pro-Am today at Riviera. Looking forward to round 1 of @genesisopen. + +https://t.co/G2GZuM4dKH" +02/14/2018,Sports_celeb,@TigerWoods,I had a great time getting to know one of #TGRFoundation's Earl Woods Scholars Andy Ho. Shout out to Western High f… https://t.co/XzpSW4j5zy +02/13/2018,Sports_celeb,@TigerWoods,"“Over the last 21 years, my foundation has grown to be bigger than just me and today I'm excited to announce the ne… https://t.co/haMv5sK7e5" +02/01/2018,Sports_celeb,@TigerWoods,Riviera has always been a special place for me. Looking forward to playing in the Genesis Open. https://t.co/bKDzF98TRS +01/29/2018,Sports_celeb,@TigerWoods,Can’t thank the San Diego fans enough. I scrambled my butt off but happy with my first event back. See you at Riv! +01/25/2018,Sports_celeb,@TigerWoods,Great session @TaylorMadeGolf. New M3 is dialed in and ready to go. #m3driver https://t.co/xkESziPm8l +01/23/2018,Sports_celeb,@TigerWoods,RT @genesisopen: We went 1-on-1 with @TigerWoods and asked all the hard hitting questions like 'what would your walk up song be?' Watch now… +01/18/2018,Sports_celeb,@TigerWoods,Welcome to the crew @Lexi https://t.co/2eWBpU7X37 +01/16/2018,Sports_celeb,@TigerWoods,Busy few weeks testing @TaylorMadeGolf’s #TwistFace technology. Really like what I’m seeing. Here’s why: https://t.co/AqUzpgHvOG +01/15/2018,Sports_celeb,@TigerWoods,Happy MLK Day everyone https://t.co/AFmU482Gfd +01/09/2018,Sports_celeb,@TigerWoods,He’s back! #RaiderNation https://t.co/cHvjXqqn5m +01/04/2018,Sports_celeb,@TigerWoods,Excited to start my season off in SoCal at @FarmersInsOpen and @genesisopen. https://t.co/TaX9wjAeFN +01/01/2018,Sports_celeb,@TigerWoods,Happy birthday to myself :) Nothing like shooting a cobia and an amberjack. https://t.co/fqff602bk3 +12/29/2017,Sports_celeb,@TigerWoods,"Reflecting on 2017, optimistic about 2018. https://t.co/hKxk8eluWR" +12/22/2017,Sports_celeb,@TigerWoods,By TW https://t.co/uudaN5hP31 +12/21/2017,Sports_celeb,@TigerWoods,RT @KidRock: #TBT Tiger Jam 2013 https://t.co/nq2LkSBKu4 +12/20/2017,Sports_celeb,@TigerWoods,There’s nothing better than working with great partners. Thanks @DiamanteCabo https://t.co/njJTwtRoq9 +12/18/2017,Sports_celeb,@TigerWoods,Proud to support @tgrdesignbytw friend Johnny Morris’s @WOWaquarium and his efforts on conservation.… https://t.co/Nr98F1KGek +12/16/2017,Sports_celeb,@TigerWoods,Thank you @KenJowdy and @DiamanteCabo members for a special few days. Excited about the #oceanclubcabo & our new… https://t.co/NSLaaKXctz +12/15/2017,Sports_celeb,@TigerWoods,"Great to be back @DiamanteCabo with @tgrdesignbytw - Busy, fun day ahead!" +12/14/2017,Sports_celeb,@TigerWoods,Pretty cool event @BluejackNation this week for a great cause. https://t.co/8wRnJeVDPW +12/06/2017,Sports_celeb,@TigerWoods,Great being with my team @BridgestoneGolf. Gearing up for an even better… stronger 2018. #DareToBeBetter https://t.co/R0tcOplyDH +12/05/2017,Sports_celeb,@TigerWoods,Excited to be back for our 20th year of #TigerJam https://t.co/Wf2JJoZyDH +12/03/2017,Sports_celeb,@TigerWoods,Congratulations to @RickieFowler on an unforgettable victory at the #heroworldchallenge! https://t.co/1OtqSopZeW +11/30/2017,Sports_celeb,@TigerWoods,Excited to be back and teeing it up with Bridgestone Golf’s TOUR B XS https://t.co/NYZI07uMti +11/30/2017,Sports_celeb,@TigerWoods,Time to go to work. #M2driver @TaylorMadeGolf https://t.co/esXjSZ28fP +11/29/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: “My dad and I had this idea of having this event and I just think that over these years that my dad would have been very… +11/28/2017,Sports_celeb,@TigerWoods,"RT @TWFoundation: We INSPIRE youth to THRIVE in school & beyond. TOGETHER, we can make the future shine bright! GIVE: https://t.co/KMt09uQv…" +11/28/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: Catch @TigerWoods live talking all things #heroworldchallenge on @GolfChannel during @GCMorningDrive at 8:30 a.m. ET htt… +11/27/2017,Sports_celeb,@TigerWoods,Looking forward to a great week at Albany for the #heroworldchallenge https://t.co/unFzOFIY3R +11/26/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: Welcome to the 2017 #heroworldchallenge | @TigerWoods https://t.co/p4MfWOyz32 +11/25/2017,Sports_celeb,@TigerWoods,Bryce Love is THE best player in college football. Period. Show some #HeismanLove for @Blovee_20. +11/11/2017,Sports_celeb,@TigerWoods,"Happy Veterans Day to the men & women, including my Pop, who selflessly served our great country and gave us our freedom. #VeteransDay" +11/06/2017,Sports_celeb,@TigerWoods,Another W. Just win baby!!!!!! +11/06/2017,Sports_celeb,@TigerWoods,"There’s only ONE Nation, #RaiderNation https://t.co/Nvy2vqy2OK" +11/03/2017,Sports_celeb,@TigerWoods,RT @GenoPodcast: Episode 2 featuring @TigerWoods is LIVE. Click the link to listen! https://t.co/M2iRy5MXBK +11/02/2017,Sports_celeb,@TigerWoods,Not the result we wanted after a great season. We will be back to the Series soon. Proud to be a Doyer fan. +11/01/2017,Sports_celeb,@TigerWoods,We own game 7. Go Doyers!!!! #WorldSeriesGame7 +10/31/2017,Sports_celeb,@TigerWoods,"RT @TGRLiveEvents: What is @tigerwoods favorite #Halloween costume? Well, he has TWO. + +#TGRLive #HappyHalloween https://t.co/g0MeFMYpdJ" +10/30/2017,Sports_celeb,@TigerWoods,I’d like to thank the committee of 1 for picking myself and Daniel Berger to play in this years #HeroWorldChallenge. https://t.co/z5tn5aARUY +10/26/2017,Sports_celeb,@TigerWoods,"I last went to the #WorldSeries with my Dad in 1988, also game 2. Amazing to be back almost 30 years later. Let’s g… https://t.co/HR3pF5vnZB" +10/23/2017,Sports_celeb,@TigerWoods,Return of the Stinger. #starwars https://t.co/R7srIDGXjl +10/19/2017,Sports_celeb,@TigerWoods,"What a dream night. All 3 of my teams are playing. Raider Nation, The Doyers and the Lake Show!!!!!!!!! Just win baby!" +10/15/2017,Sports_celeb,@TigerWoods,Making Progress https://t.co/I3MZhJ74kI +10/13/2017,Sports_celeb,@TigerWoods,What an amazing 3 days of golf at #TWInvitational. Thank you to @usli150 and everyone who supported @twfoundation a… https://t.co/L2OfRUPvKb +10/10/2017,Sports_celeb,@TigerWoods,A huge thank you to @kevin_chappell for joining me on the range for a fun exhibition with #TWInvitational guests… https://t.co/34PfvfugBU +10/10/2017,Sports_celeb,@TigerWoods,Both the @TWFoundation and I are thrilled to have Earl Woods Scholar Tony Armas join us at tonight’s… https://t.co/vuWWzwbwkL +10/07/2017,Sports_celeb,@TigerWoods,Smooth iron shots https://t.co/v9XLROZnfW +09/27/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Here’s a first look at The Playgrounds @jacksbayclub in the beautiful Bahamas. We’re excited about the golf & amazing lo… +09/22/2017,Sports_celeb,@TigerWoods,Looking forward to the @PresidentsCup in NYC next week. https://t.co/V0mZQ2KcOv +09/12/2017,Sports_celeb,@TigerWoods,Thinking about my friends and fellow Floridians throughout the state. I pray everyone is safe and your recovery is as quick as possible. +09/01/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: We're excited for the future & to be a part of the restoration at Jackson Park & South Shore golf courses - great articl… +08/31/2017,Sports_celeb,@TigerWoods,Dr. gave me the ok to start pitching https://t.co/tboq1L3Xdn +08/28/2017,Sports_celeb,@TigerWoods,Heartbreaking images from Houston and throughout TX. Thinking about the brave & resilient people there & my friends at @BluejackNation +08/26/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Great day working on Payne's Valley with @TigerWoods & Johnny Morris of @BassProShops followed by a fun night @BigCedarL… +08/25/2017,Sports_celeb,@TigerWoods,Great to be back @BigCedarLodge. Excited to see all the progress being made on Payne’s Valley. https://t.co/TRIhhdRGGJ +08/21/2017,Sports_celeb,@TigerWoods,My daughter Sam took a great pic from her phone while we were in Tennessee for the eclipse. #EclipseSolar2017 https://t.co/TVZ5IOUQWr +08/20/2017,Sports_celeb,@TigerWoods,What an amazing day for @Lexi and the @SolheimCupUSA team. That was some inspirational golf. Congrats on winning the Cup. +08/17/2017,Sports_celeb,@TigerWoods,"RT @TWFoundation: Want to see @TWFoundation at @SXSWedu? VOTE NOW to get our 6 sessions through! #TWFatSXSWedu #PanelPicker + +https://t.co/6…" +08/16/2017,Sports_celeb,@TigerWoods,"Good luck to everyone this week at #USAmateur at Riv, home of @TGRLiveEvents @GenesisOpen. -TGR" +08/15/2017,Sports_celeb,@TigerWoods,Got to have a great dinner with the PGA champion @JustinThomas34 and his family and friends. https://t.co/QwVo5aJ0bg +08/14/2017,Sports_celeb,@TigerWoods,A great honor for @StewartCink to be named this year's #PayneStewartAward winner pres. by @SouthernCompany. Well de… https://t.co/luOG0FSS6K +08/13/2017,Sports_celeb,@TigerWoods,Congrats JT!!!! Way to rise above the carnage and out execute everyone on that back nine. @JustinThomas34 +08/10/2017,Sports_celeb,@TigerWoods,"Contrary to the false Daily Mail article, Kristin Smith and I are no longer dating and haven’t since last year." +08/08/2017,Sports_celeb,@TigerWoods,Really like & support decision by PGA & the Tour. A big event every month and flexibility with schedule including the FedExCup. +08/04/2017,Sports_celeb,@TigerWoods,Nothing like free diving with the kids for lobster at Albany. https://t.co/QgdvrMYnPX +07/30/2017,Sports_celeb,@TigerWoods,Thank you to Messi and Suarez for meeting my kids and their best friends. #ElClasico https://t.co/9PqPQoR6Vb +07/23/2017,Sports_celeb,@TigerWoods,What an incredible way to comeback and win. Many congrats @JordanSpieth +07/21/2017,Sports_celeb,@TigerWoods,New cloth for the pool table. https://t.co/ARcsiGNmuH +07/04/2017,Sports_celeb,@TigerWoods,Happy Birthday America and thank you to all who defend it!! - By TW +07/03/2017,Sports_celeb,@TigerWoods,By TW https://t.co/AfHewS2uRL +07/03/2017,Sports_celeb,@TigerWoods,"Thank you @QuickenLoans & all the fans, players, volunteers, @TPCPotomac & @TGRLiveEvents staff for making this year’s @QLNational a success" +07/02/2017,Sports_celeb,@TigerWoods,Congratulations to @kylestanleygolf on your @QLNational win. Proud to call you our champion. - TW +06/19/2017,Sports_celeb,@TigerWoods,By TW https://t.co/AuX6PEgNQ1 +05/24/2017,Sports_celeb,@TigerWoods,Updates on Tiger Jam and my recovery. https://t.co/BFtv1y5v1J +05/21/2017,Sports_celeb,@TigerWoods,A huge thank you to my friend @dariusrucker for making #TigerJam 2017 an epic night to remember. -TW https://t.co/uDb9dfeS7T +05/21/2017,Sports_celeb,@TigerWoods,"So proud of Adrian Arias, our first #EarlWoodsScholar graduating with a law degree. These scholars are unrelenting.… https://t.co/OMcmzgVHz6" +05/20/2017,Sports_celeb,@TigerWoods,Thank you @KateUpton @phil_hellmuth & guests for playing poker at #TigerJam. Your support of the @TWFoundation is m… https://t.co/Y1zbgzMYgD +05/14/2017,Sports_celeb,@TigerWoods,"Thanks for the miles you drove, the courses you walked and the hugs we still share. Love you mom. -TW" +05/09/2017,Sports_celeb,@TigerWoods,"Hard to believe my first #FedExCup was almost 10 years ago now. What do you say, @vijaysinghgolf? https://t.co/1GhFGwM6um" +05/06/2017,Sports_celeb,@TigerWoods,"So close, this is why you aim for the impossible.-TW https://t.co/BTmcEh4AkF" +05/05/2017,Sports_celeb,@TigerWoods,"Proud to launch new sites for TGR, Tiger Woods Ventures. Check out what we're doing on and off the course. -TW… https://t.co/7xa6HofxfA" +04/25/2017,Sports_celeb,@TigerWoods,This was a very memorable day & milestone for me & TGR Design. Congrats to the team at Bluejack National & continue… https://t.co/hGHwaDqH1o +04/20/2017,Sports_celeb,@TigerWoods,https://t.co/tg8neDwNYt +04/18/2017,Sports_celeb,@TigerWoods,TGR Design & I are excited to partner with Johnny Morris on our first public golf course @BigCedarLodge. https://t.co/9rURWnUnKw +04/12/2017,Sports_celeb,@TigerWoods,"I’ve always wanted to design a public course, and I’m very happy that my TGR Design company will make a big announcement next week. -TW" +04/09/2017,Sports_celeb,@TigerWoods,Congrats @TheSergioGarcia. Well earned. +04/05/2017,Sports_celeb,@TigerWoods,Excellent night at the Champions dinner. Good friends and great memories. https://t.co/zEHpFq62i9 +04/03/2017,Sports_celeb,@TigerWoods,"Viewers at home should not be officials wearing stripes. Let's go @Lexi, win this thing anyway." +03/31/2017,Sports_celeb,@TigerWoods,"Champions dinner with friends Tuesday, but not tournament ready to play Augusta. https://t.co/ip14qY7sTM" +03/25/2017,Sports_celeb,@TigerWoods,"RT @nikegolf: It's going down on April 2. And you're invited. +Come play with us. #NikeGolfClub + +https://t.co/vygBECq98D https://t.co/HowVUF…" +03/23/2017,Sports_celeb,@TigerWoods,"Golfers often use the most played ball, rather than the superior one. Find your edge with @bridgestonegolf – TW… https://t.co/YGQd9LCn8T" +03/20/2017,Sports_celeb,@TigerWoods,"Great day in NYC & thankful to those who attended my book signing of The 1997 Masters, My Story.… https://t.co/O2gDuOWeDq" +03/15/2017,Sports_celeb,@TigerWoods,The most rewarding things you do in life are often the ones that look like they cannot be done – Arnold Palmer. Thi… https://t.co/6UTD93hdCt +03/14/2017,Sports_celeb,@TigerWoods,"TGR Design to design a short course at @jacksbayclub at Rock Sound on Eleuthera Island, Bahamas.… https://t.co/3oseLZGQ5b" +03/09/2017,Sports_celeb,@TigerWoods,Sadly missing the 2017 API. I really wanted to be there. My best wishes to the Palmer family & everyone at Bay Hill. https://t.co/xkbvfohcxA +03/08/2017,Sports_celeb,@TigerWoods,The 1997 Masters My Story is out in under 2 weeks (3/20). Fun reliving a very special tournament and time. https://t.co/NRDdTFzRCF +03/07/2017,Sports_celeb,@TigerWoods,Great to have @JimFuryk join @stevestricker as a Captain’s Assistant for #TeamUSA in the 2017 @PresidentsCup! +03/01/2017,Sports_celeb,@TigerWoods,Lots of thought & hard work by @USGA and @RandA to modernize our rules. Great work to benefit the game. +02/23/2017,Sports_celeb,@TigerWoods,Proud to call Billy our @qlnational champion. https://t.co/Mabj1CtBCU +02/22/2017,Sports_celeb,@TigerWoods,"Thanks to Genesis, Riviera, our TGR Live staff, amazing volunteers and the fans for making @genesisopen such a succ… https://t.co/R7cVvsY5qP" +02/12/2017,Sports_celeb,@TigerWoods,"IF WE CAN BE EQUALS IN SPORT, WE CAN BE EQUALS EVERYWHERE. https://t.co/NJCNn3nzcC" +02/10/2017,Sports_celeb,@TigerWoods,"Really looking forward to seeing everyone @genesisopen open next week, unfortunately I won't be able to play. https://t.co/DSGq6okmhu" +02/08/2017,Sports_celeb,@TigerWoods,Had a great talk on life and golf with my old friend Peter Dawson at Dubai’s Burj Al Arab. Watch the video! - TW… https://t.co/JP95ceMCjS +01/30/2017,Sports_celeb,@TigerWoods,Can you find me hitting off the Burj Al Arab’s helipad in 2004? Look for a video of me back again before Dubai Dese… https://t.co/GajIJxWbJN +01/26/2017,Sports_celeb,@TigerWoods,It’s round one of Tiger’s 2017 season. We know where we’ll be watching. #thewoodsjupiter https://t.co/KhYpx4EgM6 +01/25/2017,Sports_celeb,@TigerWoods,Can you guess Tiger's favorite memory at Torrey Pines? #SeeYouatTorrey https://t.co/x2jqdVoCS6 +01/25/2017,Sports_celeb,@TigerWoods,"After several months of testing and all brands to choose from, the choice is clearly @TaylorMadeGolf. Proud to join… https://t.co/kmq5mpVfYw" +01/25/2017,Sports_celeb,@TigerWoods,"RT @PGATOUR: 79 wins? That's crazy good. + +@TigerWoods, your thoughts? + +#HowGoodIsThat https://t.co/cpzow9yw9Q" +01/24/2017,Sports_celeb,@TigerWoods,Big decision made. Find out tomorrow. -TW https://t.co/7Ll6LUngIc +01/24/2017,Sports_celeb,@TigerWoods,What’s your favorite memory of Tiger at Torrey Pines? +01/23/2017,Sports_celeb,@TigerWoods,I’m so proud the #GenesisOpen offers the diversity exemption honoring my hero Charlie Sifford. – TW https://t.co/INM4t3LwSj +01/23/2017,Sports_celeb,@TigerWoods,We’re at The Riviera Country Club kicking off Tiger’s 2017 season with @GenesisOpen media day. https://t.co/s5MW2hGGID +01/21/2017,Sports_celeb,@TigerWoods,"Happy birthday to a living legend, @jacknicklaus" +01/20/2017,Sports_celeb,@TigerWoods,We like our options when it’s happy hour at The Woods. https://t.co/OitA2Z1JNk +01/19/2017,Sports_celeb,@TigerWoods,One week from today: the Boss is back in action! https://t.co/jfTeaNCOUA +01/18/2017,Sports_celeb,@TigerWoods,"New ventures, programs and partnerships. See what @TWFoundation has planned for 2017. https://t.co/Foc0WTYqjM https://t.co/VWkIg9RR7N" +01/17/2017,Sports_celeb,@TigerWoods,"RT @BluejackNation: @Golfweek praises @TigerWoods for @BluejackNation, a course that is ""an awful lot of fun"" and ""family-friendly"" https:/…" +01/16/2017,Sports_celeb,@TigerWoods,#MLKDAY #mondaymotivation https://t.co/2zTPh2BVg8 +01/13/2017,Sports_celeb,@TigerWoods,Behind the scenes from today's TGR photo shoot. #weareTGR https://t.co/vRBPZd322B +01/12/2017,Sports_celeb,@TigerWoods,Lots of action at The Woods today capturing picture-perfect cuisine. #thewoodsjupiter https://t.co/CdG9A3SdDn +01/09/2017,Sports_celeb,@TigerWoods,Thanks @discoveryed for helping us take the 1st step of our vision to reach millions of kids around the world.… https://t.co/aHAk9jbrn2 +01/07/2017,Sports_celeb,@TigerWoods,Scholars from around the country are at the TGR Learning Lab today. Work hard and pursue all your dreams guys! So p… https://t.co/duYLC01JXd +01/05/2017,Sports_celeb,@TigerWoods,"Read what has Tiger excited about 2017.#weareTGR +https://t.co/LSo2AtPClM https://t.co/yekRUP3tO7" +01/04/2017,Sports_celeb,@TigerWoods,We’re setting our intentions for 2017. What are you committing to? #weareTGR https://t.co/5IQ1kHxN3G +01/02/2017,Sports_celeb,@TigerWoods,Welcome to the Nike Golf Club @JDayGolf. - TW https://t.co/CyPjgtm1ao +12/31/2016,Sports_celeb,@TigerWoods,Thanks for the birthday wishes. Looking forward to a great 2017. -TW https://t.co/zH0Fa0DiD8 +12/30/2016,Sports_celeb,@TigerWoods,Hoping @StanfordFball gives me a win for my birthday. – TW #GoStanford https://t.co/2srmiOf7jT +12/27/2016,Sports_celeb,@TigerWoods,How many rounds will you get in over the holiday break? +12/24/2016,Sports_celeb,@TigerWoods,Hope you're all celebrating with loved ones this holiday season. Merry Christmas from the TGR family to yours. https://t.co/wGuAzEIBWX +12/22/2016,Sports_celeb,@TigerWoods,Xmas tradition that my kids love. Mac Daddy Santa is back! -TW https://t.co/pCWZNNKPRG +12/22/2016,Sports_celeb,@TigerWoods,"This was an awesome Christmas, plaid pants and all. – TW https://t.co/izaWXbE8hU" +12/20/2016,Sports_celeb,@TigerWoods,"RT @TWFoundation: We're certain Marcus' legacy will live on through all those he touched. #UnexpectedChampion + +https://t.co/aUcvr3XWUV" +12/19/2016,Sports_celeb,@TigerWoods,TGR Design is thrilled to announce a new partnership w/ @ChiGolfAlliance to restore a South Side golf course in Chi… https://t.co/kZNOjczndx +12/16/2016,Sports_celeb,@TigerWoods,"One of our favorite weekends of the year! Mark your calendars for #TigerJam in Las Vegas. May 19-20, 2017. +https://t.co/lqPEAtUswi" +06/30/2018,Sports_celeb,@OBJ_3,😂😂😂✊🏿 https://t.co/2uXKz96BYD +06/29/2018,Sports_celeb,@OBJ_3,Downloading.... +06/28/2018,Sports_celeb,@OBJ_3,I promise they not ready for that 🦂🦂🦂🦂 #sheeeesh +06/28/2018,Sports_celeb,@OBJ_3,I kno u kno la brudda ! https://t.co/MPTxDMjsHI +06/27/2018,Sports_celeb,@OBJ_3,"Harrell park , where u get murkkkked by the slidin boards! https://t.co/zdETZLksKu" +06/27/2018,Sports_celeb,@OBJ_3,Throw em up buss em up https://t.co/jZqLLkmiSp +06/24/2018,Sports_celeb,@OBJ_3,@famouslos32 Lol I seeeeen u +06/17/2018,Sports_celeb,@OBJ_3,Thank you to @pizzahut for supporting my annual youth @ProCamps. Congratulations to the Pizza Hut Supreme Effort aw… https://t.co/XwMXrWCS3p +06/17/2018,Sports_celeb,@OBJ_3,"RT @JosinaAnderson: @OBJ_3 posing with all his look-a-likes. If your hair is not the same, for this specific photo, you didn’t make the cut…" +06/17/2018,Sports_celeb,@OBJ_3,Thank you @CitiPrivatePass for your support on my 3rd annual Football @ProCamps #CloserToPro https://t.co/HT4oCDz929 +06/16/2018,Sports_celeb,@OBJ_3,@D1PRIMO1 Keep grindin young! +06/15/2018,Sports_celeb,@OBJ_3,@TiyahnnB 💯 +06/15/2018,Sports_celeb,@OBJ_3,RT @saquon: “I wanna see my brothers flourish to they… https://t.co/j8zBGEhR06 +06/15/2018,Sports_celeb,@OBJ_3,@calebwilson81 @iammsuzy We seeeeeesss you! +06/07/2018,Sports_celeb,@OBJ_3,Lol I really be playin round at the wrong time https://t.co/dssglzIxgR +06/07/2018,Sports_celeb,@OBJ_3,😂😂😂😂 https://t.co/oOfLthBNMH +06/04/2018,Sports_celeb,@OBJ_3,Happy bday shawtyyy! Enjoy ur day https://t.co/kbaBuML6gF +06/04/2018,Sports_celeb,@OBJ_3,Spots in my @CitiPrivatePass Youth 🏈 @ProCamps are filling up fast! Click 👇 for details and to register.… https://t.co/Yh9OLq86OM +06/01/2018,Sports_celeb,@OBJ_3,100... easy! God bless u! https://t.co/BYsZi2Eo4z +05/31/2018,Sports_celeb,@OBJ_3,"Lil bra , just let it happen 😂😂 https://t.co/H8lOGQ8vpv" +05/31/2018,Sports_celeb,@OBJ_3,"I believe , keep grinding ! https://t.co/Itf1GiZt2h" +05/31/2018,Sports_celeb,@OBJ_3,Lol exactly Saquads is sticking forever!! @saquon https://t.co/bPEhkWhiGc +05/30/2018,Sports_celeb,@OBJ_3,Much love my dude! And happy happy birthday !! https://t.co/VgvDe2KyHO +05/29/2018,Sports_celeb,@OBJ_3,RT @AYungManRick: My grad cap still the best out there @OBJ_3 @Drake https://t.co/z6htqMwtMv +05/26/2018,Sports_celeb,@OBJ_3,Bale’s goal was ridiculous. 👀 +05/19/2018,Sports_celeb,@OBJ_3,😂😂😂 thanks for havin me! https://t.co/7KDTSl4fuS +05/16/2018,Sports_celeb,@OBJ_3,RT @YvesJNK: immune to negativity...thanking the Lord for my serenity @OBJ_3 +05/13/2018,Sports_celeb,@OBJ_3,I just got off the phone with mine. #CallMom #ad https://t.co/1VrNrBigpC +05/04/2018,Sports_celeb,@OBJ_3,Tell me why I paid my postmates for 3 pizzas and my man here brought me 30 😂😂 Happy Cinco de Mayo tomorrow y’all! https://t.co/Z1IGijPBPJ +04/30/2018,Sports_celeb,@OBJ_3,Been supporting for a min! Much love https://t.co/CKOHqPA2YL +04/29/2018,Sports_celeb,@OBJ_3,😂😂😂 https://t.co/s2bI7lNzL6 +04/27/2018,Sports_celeb,@OBJ_3,"@SageRosenfels18 lol I kno u just wanted me to tweet u back!! Ur a hater bro, damn that’s crazy! I can’t even be ex… https://t.co/0PrGPcnkxr" +04/27/2018,Sports_celeb,@OBJ_3,"@Lj_era8 congrats brudda ! Im watching u for life, u remind me of my favorite player ever ... @MichaelVick" +04/27/2018,Sports_celeb,@OBJ_3,God is so good. @RyanShazier i love u brother +04/27/2018,Sports_celeb,@OBJ_3,A problem. LAWD! +04/27/2018,Sports_celeb,@OBJ_3,@Lj_era8 is one of the realest things I’ve ever seen. How has nobody taken him? +04/27/2018,Sports_celeb,@OBJ_3,Btw 26 in the big blue jersey WILLL be the number one sellin Jersey in America next year. Takin all bets!!!? @saquon can’t wait Lil brudda +04/27/2018,Sports_celeb,@OBJ_3,"Um , of course !!!!!!!" +04/26/2018,Sports_celeb,@OBJ_3,"My idol. @KingJames u are what I aspire to be like, in every way ! 1 closer! Let’s rock #HATECOMININ321go" +04/22/2018,Sports_celeb,@OBJ_3,ChArlo is difffferenttt !!! +04/22/2018,Sports_celeb,@OBJ_3,GERVONTAAAA 🦍🦍🦍🦍🦍🦍🦍🦍🦍 +04/22/2018,Sports_celeb,@OBJ_3,It feeels so good to be HOME... +04/20/2018,Sports_celeb,@OBJ_3,I’m on my GRINDDDD!!! #comebackSZN +04/14/2018,Sports_celeb,@OBJ_3,Happy bday https://t.co/tvqJEM48Vc +04/14/2018,Sports_celeb,@OBJ_3,"Bro I respect that , and this is part of the reason I do it, let’s be better together I do my best to not set a bad… https://t.co/b4I4bePkAN" +04/13/2018,Sports_celeb,@OBJ_3,My @CitiPrivatePass Youth 🏈 @ProCamps is back for Year 3! Make sure you sign up at https://t.co/3iFiqSfXpE before… https://t.co/eDMjbErF5b +04/10/2018,Sports_celeb,@OBJ_3,“U make friends wit mike n gotta A.I em for ur survival.....damn” https://t.co/T1Hsrq4TCj +04/09/2018,Sports_celeb,@OBJ_3,😭😭😭😭🙏🏽 “you straight” go for anything https://t.co/o0lmNHMmId +04/09/2018,Sports_celeb,@OBJ_3,U next kinfolk !! https://t.co/0DoAEnyMEt +04/06/2018,Sports_celeb,@OBJ_3,Keep workin yung! https://t.co/qI9Z0UlnTs +04/05/2018,Sports_celeb,@OBJ_3,@jalenramsey @Jaguars 😂😂😂😂 u a fooo...Lol brudda u the coldest! We gotta get this work in regardless the situation!… https://t.co/MyOLeeUraY +04/03/2018,Sports_celeb,@OBJ_3,"Lol Man U makin it tough when u ask this way!!! If I can’t make it , I just wanna let u kno in advance HAPPY birthd… https://t.co/EETxC6GnPn" +04/02/2018,Sports_celeb,@OBJ_3,"I just wanna thank y’all, I can feel it in my soul. This is part of my purpose , I don’t think I ever got those glo… https://t.co/FMrbpHn3FA" +04/02/2018,Sports_celeb,@OBJ_3,RT @J_Roz69: @OBJ_3 my 6 year old son wanted me to share his catch with you. We’re in Houston area. He’s trying to model his game after yo… +03/26/2018,Sports_celeb,@OBJ_3,@Jakebeast35 I’m wr https://t.co/WImTWkHoqi +03/26/2018,Sports_celeb,@OBJ_3,God bless u bro! https://t.co/aWG5SfVYUr +03/09/2018,Sports_celeb,@OBJ_3,Appreciate the love and support !! https://t.co/OrSVOOuNwR +03/09/2018,Sports_celeb,@OBJ_3,https://t.co/IqT1aUTuXk yalll check my bro out !!! +03/09/2018,Sports_celeb,@OBJ_3,Old news still makes a good story....I guess. #CatchUpWereIn18’ +03/03/2018,Sports_celeb,@OBJ_3,U showed me the way. I’m proud of u blood. Been strong thru it all when all they wanted was to see u fall! The next… https://t.co/jPH0QYZyzJ +03/01/2018,Sports_celeb,@OBJ_3,Let’s see how to make this happen https://t.co/aTkoWG90EN +03/01/2018,Sports_celeb,@OBJ_3,"Run like the world depends on it. Because it does. #ChooseGo +#Nike #TeamNike https://t.co/OdmeSa8wug" +02/28/2018,Sports_celeb,@OBJ_3,I'm on Von Miller's Studio 58 tonight on Facebook Watch!  Check out me and my brother LIVE @ 8pm EST /5pm PST.… https://t.co/lcutlLAAK2 +02/27/2018,Sports_celeb,@OBJ_3,RT @JZACMusic: Ima blow up in 2018 +02/26/2018,Sports_celeb,@OBJ_3,@salafox1 @kustoo @Heskicks @RealSethFowler @FinishLine @nikestore it's real. +02/24/2018,Sports_celeb,@OBJ_3,"That’s alll I wanna do. What if we lived in a world where we did nothin but encouraged others, kept it real at the… https://t.co/VZvVt5mgeh" +02/24/2018,Sports_celeb,@OBJ_3,Grow up. Please. I’m tryna do the same. +02/24/2018,Sports_celeb,@OBJ_3,"People take things a little too serious sometimes... quick to write a story , but hey anything for a couple of like… https://t.co/8q1QznKP5i" +02/24/2018,Sports_celeb,@OBJ_3,0 https://t.co/86lS0V2FFL +02/22/2018,Sports_celeb,@OBJ_3,"RT @AllenPopper: @OBJ_3 yesterday I ran into you while I was on crutches going to doc. You saw I had difficulty, asked for my camera, and a…" +02/19/2018,Sports_celeb,@OBJ_3,Working with @Nike on some custom #AF1’s at Room72 https://t.co/12Ho77dgu4 +02/19/2018,Sports_celeb,@OBJ_3,😂😂😂 no why I meant it for real Lowkey @KDTrey5 https://t.co/d8BvTYfBgM +02/18/2018,Sports_celeb,@OBJ_3,RT @MarlonWayans: This dude just happy as fuck at all times. @obj_3 aka THE ODBJ https://t.co/HiPeIuB96d +02/18/2018,Sports_celeb,@OBJ_3,"I believe with every ounce of my body ... that God has got me. Every step of the way, I just know in my soul that h… https://t.co/BNr0nQwfgR" +02/17/2018,Sports_celeb,@OBJ_3,On my life this is what makes me wake up everyday and deal wit chaos! Lol I’ll work on those gloves and cleats for… https://t.co/cKQL05sSo2 +02/17/2018,Sports_celeb,@OBJ_3,"RT @2chainz: Appreciate the support bru @obj_3 💪🏿 @ Los Angeles, California https://t.co/FNGEVOnBMS" +02/15/2018,Sports_celeb,@OBJ_3,New Vapor 🔥 #GetGone @USNikeFootball https://t.co/Wk1xewLBGo +02/15/2018,Sports_celeb,@OBJ_3,RT @thecheckdown: Manziel and @OBJ_3 workin like it’s #Comebackszn 👀 (via @JManziel2) https://t.co/2fyP5K9bd4 +02/14/2018,Sports_celeb,@OBJ_3,"Welcome to the @HeadShoulders fam, @GusKenworthy. Good luck at the Olympic Winter Games! #ShouldersofGreatness #ad https://t.co/a2pOsGRwzf" +02/13/2018,Sports_celeb,@OBJ_3,"Introducing @CampbellsChunky Maxx Smoked Turkey & Bacon Corn Chowder w/ Wild Rice soup. Go on, #FillUp! #ad https://t.co/2dYLHApMbb" +02/12/2018,Sports_celeb,@OBJ_3,"RT @famouslos32: We live y'all ✊🏾 + +Who Got Next ? Ep. 1 Ft. @Jxmmi !! + +WATCH HERE : https://t.co/pNustsis4z https://t.co/x0q9X71Hr3" +02/09/2018,Sports_celeb,@OBJ_3,RT @usnikefootball: 2.15 #GetGone 😏 https://t.co/WAYQUrlupj +02/07/2018,Sports_celeb,@OBJ_3,@kporzee prayin for u fam. NY comin back strong next year! +02/05/2018,Sports_celeb,@OBJ_3,I gottta have it... I swear +02/05/2018,Sports_celeb,@OBJ_3,This call will be detrimental for what is a “catch” or not a catch for the remainder of NFL history. +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/5DVtntGjoB +Much respect to the #WPMOY #NFLHonors" +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/fchXveOzPn +@DangeRussWilson intercepted at #NFLHonors. Great seeing you bro!" +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/J7JWJ2EMtA + +Taking over the @HeadShoulders 360 Hair Cam at the #NFLHonors Red Carpet, let’s see who’s… https://t.co/KnqyOslAhL" +02/04/2018,Sports_celeb,@OBJ_3,See what happens next during #SBLII https://t.co/m1nU8Bn7cN +02/03/2018,Sports_celeb,@OBJ_3,There’s still time to get the ingredients to make those @Welchs #GrapeJellyMeatballs ahead of the Big Game! I’ve g… https://t.co/ty8DMneVJc +02/03/2018,Sports_celeb,@OBJ_3,Fam! Much love https://t.co/QsAIDySsPS +02/03/2018,Sports_celeb,@OBJ_3,Legendary https://t.co/Ujifv37zWT +02/02/2018,Sports_celeb,@OBJ_3,My mom and I added some special hot sauce to our @Welch’s #GrapeJellyMeatballs recipe! Comment below with your favo… https://t.co/3ADFrFLncZ +02/01/2018,Sports_celeb,@OBJ_3,Soon as my ankle back to 100 it’s on!!! https://t.co/6c10Tll6gk +02/01/2018,Sports_celeb,@OBJ_3,Broo u NBA traveled!!! https://t.co/6c10Tll6gk +02/01/2018,Sports_celeb,@OBJ_3,Since the gig’em days brother. I support u for life. #ComebackSZN https://t.co/n56zxMniCC +01/31/2018,Sports_celeb,@OBJ_3,RT @NFL: Nothing and no one will stop @TheHumble_21 from having a good time. Tune into #SBLII to see what gets him dancing. https://t.co/te… +01/31/2018,Sports_celeb,@OBJ_3,#FillUp on @CampbellsChunky Maxx Grilled Sirloin Steak soup. It has 40% more meat so you can hustle 40% more of the… https://t.co/xfK1PUB95s +01/31/2018,Sports_celeb,@OBJ_3,Had fun making my @Welchs #GrapeJellyMeatballs recipe! Comment below with your favorite special ingredient. #ad https://t.co/KbxmrhXWb4 +01/31/2018,Sports_celeb,@OBJ_3,Got a big appetite for the big game? I’ve got you covered. Check out these @Welchs #GrapeJellyMeatballs I whipped… https://t.co/mycWejmy0R +01/29/2018,Sports_celeb,@OBJ_3,@JeremyHill33 hey whatd u say about playin for the giants !?!? #ReunitedNitfeelsSoGood😂😂 BRUDDDA BRUDDDA +01/29/2018,Sports_celeb,@OBJ_3,RT @JManziel2: All the hating only fuels me more. Nothing but positive vibes on this end +01/29/2018,Sports_celeb,@OBJ_3,2:19 🤣🤣🤣🤣🤣🤣🤣 https://t.co/YQP6wsdou8 +01/25/2018,Sports_celeb,@OBJ_3,U think there’s anything u could of done better on that route? https://t.co/RdBp2AoX1N +01/25/2018,Sports_celeb,@OBJ_3,Stopppp him! Why u do em like that! https://t.co/RdBp2AoX1N +01/24/2018,Sports_celeb,@OBJ_3,They on it already brudda @Drake https://t.co/aetiqHA5sw +01/24/2018,Sports_celeb,@OBJ_3,Lol y’all boys really stupid if believe this click bait. There is an appeal process that has been more than fair. U… https://t.co/DH8KehmPbW +01/23/2018,Sports_celeb,@OBJ_3,@AB84 😂 https://t.co/XjBane3Beg +01/20/2018,Sports_celeb,@OBJ_3,U can pick the route for me! That no safety help been dead lil brudda 😭😭 https://t.co/5EmrYeJO38 +01/20/2018,Sports_celeb,@OBJ_3,Good luck bro! https://t.co/7tqd0KmHeZ +01/19/2018,Sports_celeb,@OBJ_3,Introducing @CampbellsChunky Maxx Dark Meat Chicken & Spicy Andouille Sausage Gumbo. #FillUp with yours before the… https://t.co/msuryRFNnX +01/19/2018,Sports_celeb,@OBJ_3,@God_Son80 ayeeeee man!!! U already kno what we talked about +01/19/2018,Sports_celeb,@OBJ_3,RT @God_Son80: “Prayers drowning out Opinions” +01/18/2018,Sports_celeb,@OBJ_3,Congrats @NFLPA and @opendorse for extending your partnership. The platform lets me make moves off the field that m… https://t.co/1cnq04q3tI +01/18/2018,Sports_celeb,@OBJ_3,"“To all you artists out there, who don't wanna be on a record label where the executive producer's...all up in the… https://t.co/t1s4tgFY1c" +01/17/2018,Sports_celeb,@OBJ_3,@God_Son80 “if u don’t like ur... then come to death row” 🙂😂😂😂 https://t.co/6qbNhzWjnQ +01/16/2018,Sports_celeb,@OBJ_3,RT @TeamVic: I love the reminders in life that let you know what you’re doing and the decisions you’re making are absolutely correct. +01/16/2018,Sports_celeb,@OBJ_3,U kno how I’m comin!! @horseisbk https://t.co/jk7CwkoCqc +01/15/2018,Sports_celeb,@OBJ_3,God really works in mysterious ways....let the journey begin.... I’m geeeked https://t.co/3tbOTPcSl1 +01/15/2018,Sports_celeb,@OBJ_3,Wow +01/12/2018,Sports_celeb,@OBJ_3,RT @theshiggster: When You Beat A Football Player In Madden 😂😂😂😂 @OBJ_3 https://t.co/axNMZdanpC +01/11/2018,Sports_celeb,@OBJ_3,Mannnn I gotta make that up for the women out there who were ready for that. It was the day after surgery I still w… https://t.co/9wMzafCA0I +01/08/2018,Sports_celeb,@OBJ_3,@EliApple13 Love brudda ! Let’s get up this off season ! +01/08/2018,Sports_celeb,@OBJ_3,"@EliApple13 Just hear me out... it’s really not worth it. Please bro, this what they want.... back to the drawin board . Let’s get it !" +01/08/2018,Sports_celeb,@OBJ_3,"@EliApple13 Brooooo I kno it feels good to tell these ppl off , trust me I would love nothin more than to do the sa… https://t.co/cckFeXDpv5" +01/08/2018,Sports_celeb,@OBJ_3,@EliApple13 stopppp wasting ur energy on these ppl. Please bro. +01/06/2018,Sports_celeb,@OBJ_3,U kno u inspired me thru this whole process. How to be strong! I thank u bro. And bringgg it home for the LAND. I s… https://t.co/2yltbpkx8s +01/06/2018,Sports_celeb,@OBJ_3,Yooo I’m cryinnn 😭😭👌🏽 https://t.co/5o2eQJ547P +01/03/2018,Sports_celeb,@OBJ_3,Honest question...What Friday was the best ???? 😭 +01/01/2018,Sports_celeb,@OBJ_3,In 2018 I’m just prayin for the world to be more positive. Real shxt. We all have to make a consitant efffort to wa… https://t.co/V5hzooNMgX +12/28/2017,Sports_celeb,@OBJ_3,"@AB84 lol we not coo no mo big tymerrrr , check ur phone .. meanin text messages 🤬" +12/28/2017,Sports_celeb,@OBJ_3,Hip pocket* https://t.co/3xW11YnUa6 +12/28/2017,Sports_celeb,@OBJ_3,"Lol bruh back up, always tryna be on the hop. We tryna create separation Pat. Stay tuned, I’m there this offseason. https://t.co/3xW11YnUa6" +12/28/2017,Sports_celeb,@OBJ_3,Itssss a must !!! That’s the goal! Let’s get up this off season. And btw (I kno u wanted that balll to stickkkk in… https://t.co/EqP5QQAJwh +12/25/2017,Sports_celeb,@OBJ_3,RT @ccopeland81: I live in Seattle and love our @Seahawks but my 5 year old cried when he finally got the @OBJ_3 jersey he's been begging f… +12/25/2017,Sports_celeb,@OBJ_3,I had this one circled on the calendar. Smh +12/24/2017,Sports_celeb,@OBJ_3,"Dear Santa, I wish I could be playin in this game. That’s all. Thanks" +12/24/2017,Sports_celeb,@OBJ_3,Ur too late https://t.co/e4UZQGBjEG +12/24/2017,Sports_celeb,@OBJ_3,@OttoLewis_ 👀👀👀👀👀👀 merry Christmas !! Keep eatin #3ftIn no need for review +12/22/2017,Sports_celeb,@OBJ_3,RT @_serina_2: @OBJ_3 McCabe turns seven today and all he wanted was your jersey! His wish came true and he was on the moon! He’s your supe… +12/21/2017,Sports_celeb,@OBJ_3,Good morning. 😀 +12/21/2017,Sports_celeb,@OBJ_3,How many of us have sat on the toilet too long and ur leg felll asleeep ? 😂😂😂😂😂 +12/21/2017,Sports_celeb,@OBJ_3,RT @DhaSickest: ❤️ @OBJ_3 +12/21/2017,Sports_celeb,@OBJ_3,Been waitin since he wore 7. He’s that guy. Big bro been waitin to put the clamps on since LSU https://t.co/dQgy7umUcT +12/19/2017,Sports_celeb,@OBJ_3,Love brudda ! Never changin https://t.co/bMEaiDdDRD +12/18/2017,Sports_celeb,@OBJ_3,"Lil bro ! It’s only the beginning, everything we talked about . Grip strength , drills . Lol loookkk atcha much luv… https://t.co/84PkElKmA3" +12/17/2017,Sports_celeb,@OBJ_3,We neeeeed it! +12/17/2017,Sports_celeb,@OBJ_3,Make a play!! Leegooo ! We need it ! Get this W! +12/17/2017,Sports_celeb,@OBJ_3,Amen ! https://t.co/QTm0Jo8wT5 +12/14/2017,Sports_celeb,@OBJ_3,"RT @tylerwaltonc4: SEASON HIGHLIGHTS FINALLY HERE. IM HERE TO WAKE EVERYONE UP💍💍💍🎊🎊🎊🎊 +- https://t.co/YJkulu6Ybg" +12/12/2017,Sports_celeb,@OBJ_3,I tollddddd u today was the day !!!! @God_Son80 +12/12/2017,Sports_celeb,@OBJ_3,They don’tttt want that pressure 14....head down! Eattttt @God_Son80 +12/11/2017,Sports_celeb,@OBJ_3,I remember the conversation like it was yesterday .... keep pushing u right there ...@AB84 +12/11/2017,Sports_celeb,@OBJ_3,I loveeeee it!!!!!! @AB84 +12/11/2017,Sports_celeb,@OBJ_3,Neeeed them toe taps bruddda!!! Next time we in there !! @AB84 +12/08/2017,Sports_celeb,@OBJ_3,"@PapaBearRU34 For the kids bro, I’d do anything . We’ll figure it out" +12/08/2017,Sports_celeb,@OBJ_3,"Thank u for understanding. Personally I never understood why we, as a socieity, complicate things or confuse them f… https://t.co/OVKlMk8481" +12/08/2017,Sports_celeb,@OBJ_3,I CANNNNT waitt to be back in Met Life Sunday . It’s time to get this train back on the right track. 10.... leadddd… https://t.co/wHIbInqoTC +12/04/2017,Sports_celeb,@OBJ_3,"“Without a response from me, u really fail to exist...” @Drake" +12/04/2017,Sports_celeb,@OBJ_3,Stop wastin ur time tweetin me today. Negativity im blind to it. I can’t see that . The amount of time and energy s… https://t.co/S5fcXkA0F9 +12/04/2017,Sports_celeb,@OBJ_3,@Sean_Lyric God bless everybody! Today let’s make the world a better place!😀 +12/04/2017,Sports_celeb,@OBJ_3,Lol bro u have no idea what u started . Now u got all these critics with no credibility mentioning me to try to gai… https://t.co/dAWb2b6NeQ +12/04/2017,Sports_celeb,@OBJ_3,"I learned from him. This is the 🐐. So I’m following his lead, I just may not know how to express it the same way. B… https://t.co/7zHk2kJT3C" +12/04/2017,Sports_celeb,@OBJ_3,"Or ....immmaturity , or “needs to grow up” or “selfish” or... umm what else is it exactly that ‘they’ say.... or “u… https://t.co/CL2EuYLmK2" +12/04/2017,Sports_celeb,@OBJ_3,Listen when I say this is the craziest thing someone ever has tweeted or posted to me because I LITERALLY had this… https://t.co/hgln2Z8l0b +12/02/2017,Sports_celeb,@OBJ_3,"RT @BretJPriest: Yo, @OBJ_3 can your boy get a shoutout on his 24th birthday? 🙏🏼" +12/02/2017,Sports_celeb,@OBJ_3,RT @richardmasao: When your @OBJ_3 Air Force 1’s come in yesterday and run into him the next when you wear them. What is life. #OBJ https:/… +11/30/2017,Sports_celeb,@OBJ_3,@Ezekephyzeke_84 I’m not livin in the past*** +11/30/2017,Sports_celeb,@OBJ_3,"@Ezekephyzeke_84 Lol it’s a funny thing bro. I shouldn’t even tweet u back , I’ll prolly get in trouble or be the b… https://t.co/4cfWSnEyGa" +11/30/2017,Sports_celeb,@OBJ_3,RT @Ezekephyzeke_84: @Patricia_Traina Unfortunately this has become the narrative when things go bad with the team. People somehow look for… +11/27/2017,Sports_celeb,@OBJ_3,The greatest ! #ForeverLSU https://t.co/iX64uRkEkJ +11/25/2017,Sports_celeb,@OBJ_3,"RT @famouslos32: O like dat ! Use promo code 15LOS for 15% off the entire store ‼️ @OBJ_3 + +https://t.co/jIj9An63NQ https://t.co/Roxlnct3Yh" +11/24/2017,Sports_celeb,@OBJ_3,#hmmm... that is funny. But Lil bruh u kno we live in a world full of hypocrites.… https://t.co/pZ4xP3CJNK +11/24/2017,Sports_celeb,@OBJ_3,"I love it let’s go. Good ball movement, solid defense. This is what we do. Points points. Keep pushin! #Giants" +11/24/2017,Sports_celeb,@OBJ_3,"Thankful for it happy , happy thanksgiving https://t.co/GvX26vOGUn" +11/24/2017,Sports_celeb,@OBJ_3,"RT @footlocker: .@OBJ_3 stopped by the #Sneakeasy this week to debut his first lifestyle shoe the Nike SF Air Force 1 Mid ""OBJ"". Make sure…" +11/24/2017,Sports_celeb,@OBJ_3,RT @SNFonNBC: Happy 3rd birthday to @OBJ_3's one-handed catch! https://t.co/jrxkSEe24Y +11/23/2017,Sports_celeb,@OBJ_3,"RT @LSUfootball: Thanksgiving is about family. Odell remembers his in Purple and Gold! Forever LSU! + +@OBJ_3 x @Nike x #AF1 https://t.co/…" +11/22/2017,Sports_celeb,@OBJ_3,RT @TeamVic: Kings stand tall through everything. No matter how bleek things may seem. @obj_3 and I have… https://t.co/1QmfIqYI6m +11/21/2017,Sports_celeb,@OBJ_3,"RT @OttoLewis_: big brudda dem convos we have never go unnoticed... dream it, visualize it, live it... 🙏🏿 #GodSpeed https://t.co/5rR8H0okFz" +11/21/2017,Sports_celeb,@OBJ_3,"@David_Alaba I just cried bruh, loook how sickkkk these people are! Im in tears 😂😂😂 https://t.co/8tD0fPuxy1" +11/21/2017,Sports_celeb,@OBJ_3,"Some things are NY made. +Others were made for NY. +@Nike X OBJ X #AF1 https://t.co/E3X4UA0m90" +11/19/2017,Sports_celeb,@OBJ_3,@OttoLewis_ that’s how we delivery brudda !! Locked n loaded for next week. It’s that time Redd +11/18/2017,Sports_celeb,@OBJ_3,RT @RSherman_25: @OBJ_3 IR battle huh. Lmao I appreciate you bro we will get together for sure +11/16/2017,Sports_celeb,@OBJ_3,"NY simply cultivated what Louisiana raised. I am OBJ. Read the Label. +@nikesportswear X @footlocker #AF1 https://t.co/5rxUQF4Wvc" +11/15/2017,Sports_celeb,@OBJ_3,@RSherman_25 bruddda!! Wassup wit the 1 on 1s right now! I think I could get u a few times now 😂😂 real talk tho I’m… https://t.co/yyo9V6O6hW +11/09/2017,Sports_celeb,@OBJ_3,RT @OttoLewis_: today a young 🐐 was born happy birthday my brudda...always speaking real they jus caught this on camera @OBJ_3 #GodSpeed ht… +11/09/2017,Sports_celeb,@OBJ_3,"@jRenzy Love fam, I’m doin well. Ain’t nothin but a lil adversity , we been here before. God pulls me thru every time" +11/07/2017,Sports_celeb,@OBJ_3,Got to play @EAMaddenNFL on the new #XboxOneX last night! @Xbox even gave me one of the first ever custom NFL contr… https://t.co/Lru5bJhpnH +11/06/2017,Sports_celeb,@OBJ_3,Wilder vs Joshua would be......👀👀👀 +11/06/2017,Sports_celeb,@OBJ_3,Luv brotha. And helluva game https://t.co/ZIuqM3fMNw +11/05/2017,Sports_celeb,@OBJ_3,Thankful to see 25... I’m just countin the blessings. +11/02/2017,Sports_celeb,@OBJ_3,"RT @TeamVic: I️ can’t even front. I️ miss the game.. @obj_3 🙏🏾 @ Paterson, New Jersey https://t.co/mUkPEKrpiT" +11/02/2017,Sports_celeb,@OBJ_3,@KDN13_ Keep grinding! +11/02/2017,Sports_celeb,@OBJ_3,"RT @MikeQReports: Yo @OBJ_3, show my boy Jared some love & accept his dance challenge!! He says you’re one of his favorites despite the tra…" +10/31/2017,Sports_celeb,@OBJ_3,Last thing ... @NFL @God_Son80 make it happpen.... idc how. SuperTeamNBA SuperTeamNFL +10/31/2017,Sports_celeb,@OBJ_3,@k_obrand @SportsCenter @NFL @God_Son80 make it happen ... ok im done ! +10/31/2017,Sports_celeb,@OBJ_3,"https://t.co/LRkgW4xtVW now they got my reminiscing !!!! If it’s gods plans , it’ll happen !! SomeHow, somewayyyy! I believe @God_Son80" +06/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Abilene Paradox +06/28/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/7FeacTTA6f +06/28/2018,Sports_celeb,@Kaepernick7,"RT @haymarketbooks: “Come celebrate with me that every day something has tried to kill me and has failed.” —Lucille Clifton, born June 27,…" +06/28/2018,Sports_celeb,@Kaepernick7,"RT @thecrisismag: ""Don't you run around here trying to make friends with somebody who's depriving you of your rights. They're not your frie…" +06/26/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “The rise of Western capitalism is rooted in the global seizing of the land, resources, and labor people of color by viol…" +06/26/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/op8JCbQR1n +06/25/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: My two-year-old is out here reppin’ for the culture: https://t.co/UoLgADPnov +06/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: What is also clear is that the NFL, Donald Trump, and all of the other random racists that have a problem with players pr…" +06/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: I’m guessing that the racist that took the time to paint “Boycott the NFL,” on the back of his pickup, fully decorated wi…" +06/23/2018,Sports_celeb,@Kaepernick7,RT @_ethiopiangold: So my little cousin was selling water and didn't have a permit so this lady decided to call the cops on an 8 year old.… +06/23/2018,Sports_celeb,@Kaepernick7,RT @lsarsour: #PermitPatty 🤦🏻‍♀️ https://t.co/3HjUtDqXlW +06/23/2018,Sports_celeb,@Kaepernick7,"RT @therealstylesp: https://t.co/oaMNDWELod . HIP HOP'S HEALTH STORE +Black seed oil +Oil of oregano +Cbd tincture/cbd vape juice +Healing so…" +06/21/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: What becomes important to take from this clip is its centering on white women and their investment in the maintenance of… +06/21/2018,Sports_celeb,@Kaepernick7,RT @Phil_Lewis_: Saw this on Facebook: 1964 news clip of white citizens reacting to the proposed civil rights bill. https://t.co/j8yM00hEgB +06/21/2018,Sports_celeb,@Kaepernick7,RT @WoodstockFarm: Did you hear the news @Kaepernick7? We named one of our newly rescued baby calves after you! For your social activism an… +06/19/2018,Sports_celeb,@Kaepernick7,RT @E_Reid35: There is something gravely wrong w/ the leadership of our country. This weekend I held my kids to celebrate father’s day & to… +06/19/2018,Sports_celeb,@Kaepernick7,"RT @ava: For those that want more background on the current tents and cages that Trump and friends are keeping kids in, this clip shares ba…" +06/19/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Children are being ripped from their parents at the border. These are their cries. (warning: distressing themes) https://t… +06/19/2018,Sports_celeb,@Kaepernick7,RT @ReutersWorld: U.S. to withdraw from U.N. human rights body: source https://t.co/QlvCByHxyk +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: Less than one year in and you’ve already nailed it! #happyfathersday @CFPetrella! Thank you for playing such a big role… +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: #HappyFathersDay to Queen Isa’s dad @oldmanebro 🤗💕 We love you guys so much!! #family https://t.co/psZkGqLgyD https://t… +06/17/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #HappyFathersDay to Lead Speaker of #KYRC, @LeftSentThis! Shoutout to footcandles for capturing these beautiful moments…" +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: Our brother @E_Reid35 with his wife (our sister and KYRC member) jaidybaby and their beautiful children 😍 #happyfathers… +06/17/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Black Fathers | Fathers Day: https://t.co/VvSISyqrwP +06/16/2018,Sports_celeb,@Kaepernick7,"#EidMubarak to all of the brothers and sisters, Muslim and non-Muslim, around the world who participated in the mon… https://t.co/IyhEhx2wtN" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Also, when these police propaganda pieces centered on police ride-alongs hit the airwaves, they’re ALWAYS one-sided, and…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Also, these entertainers/athletes participating in police ride-alongs, act as if the police are REALLY going to terrorize…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Entertainers (who are usually Black men) that go on ride-alongs with cops, and then report to the public that, “the polic…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “Merely by describing yourself as black you have started on a road towards emancipation, you have committed yourself to f…" +06/10/2018,Sports_celeb,@Kaepernick7,"The Queen! + +RP @nessnitty Thinking about releasing THE OFFICIAL #imwithkap jersey ...What y’all think???? @hot97… https://t.co/VHLNevijRI" +06/10/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Check out my latest piece on something that I think is being overshadowed by Kaepernick and Eric Reid’s protest against p… +06/09/2018,Sports_celeb,@Kaepernick7,"RT @common: ""People sometimes forget that love is at the root of our resistance. My love for my people serves as the fuel that fortifies my…" +06/06/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: The hijacking of the protest is not just taking place by Trump. +06/06/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Post reading the article that I just posted on Kaepernick and the power of Black silent protest, listen to him in his own…" +05/25/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Listen to Colin Kaepernick explain why he took a knee — and why it's essential that others like him have the right to chal… +05/25/2018,Sports_celeb,@Kaepernick7,RT @Wale: Run that back 🌙 https://t.co/p2HRTkNXIS +05/24/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Colin Kaepernick explained why he sacrificed his career in the NFL to stand against systemic racism as he received Amnesty… +05/24/2018,Sports_celeb,@Kaepernick7,RT @markgeragos: Winning! https://t.co/qTUh3LJNxR +05/23/2018,Sports_celeb,@Kaepernick7,RT @markgeragos: #nflcollusion https://t.co/R1c5Mdqqg6 +05/23/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Being inside of a system doesn’t necessarily change it, more often than not, you become absorbed in it until the system t…" +05/22/2018,Sports_celeb,@Kaepernick7,RT @CFPetrella: Finally out of the archives and proud to share the first words I've penned for *Crimes of this Guilty Land: Histories of Wh… +05/21/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: ‘Highly Offended’ White Teacher Kicked My 9-Year-Old Son Out of Class for Taking Knee During Pledge https://t.co/XbFgvRUf… +05/21/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: OUR FUTURE!! ✊🏾✊🏿✊🏽 #RP rugamcfly: For the people!!! Thank You Kaep!!! #imwithkaepernick #knowyourrights #GradSZN #gr… +05/20/2018,Sports_celeb,@Kaepernick7,"RT @haymarketbooks: Haitian revolutionary Toussaint L’Ouverture was born May 20, 1743. https://t.co/EH8UR2igZ1" +05/19/2018,Sports_celeb,@Kaepernick7,RT @marielaregal: Happy Birthday Malcolm! ✊🏾🎂Truly an honor to have given a college and career awareness workshop at the Audubon Ballroom n… +05/19/2018,Sports_celeb,@Kaepernick7,"Happy Birthday El-Hajj Malik El-Shabazz, your spirit lives on! #MalcolmX https://t.co/E3JDtwSpxh" +05/19/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: The cast of ""Rise"" is full of diversity, something @rosieperezbklyn has been longing for since she started acting. Catch @ne…" +05/15/2018,Sports_celeb,@Kaepernick7,RT @NBCSWarriors: .@chamillionaire is with @Kaepernick7 https://t.co/80vxsfrXBB +05/14/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: We are witnessing an abhorrent violation of international law & human rights in #Gaza. 38 confirmed dead, including 6 children…" +05/11/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Stop trying to reform institutions that should be abolished. +05/11/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: We had to share another one of @OzTheMentalist’s tricks with @nessnitty! Check him out this Saturday after SNL on @1stlookt… +05/11/2018,Sports_celeb,@Kaepernick7,RT @KWestSavali: My 9-year-old son was put out of class for taking a knee during the pledge. His teacher told him that she boycotted teams… +05/11/2018,Sports_celeb,@Kaepernick7,RT @NYDNVideo: “Colin Kaepernick took a knee for US!”: The invisible rage of mothers who lost children to police violence @chuckmodi1 https… +05/10/2018,Sports_celeb,@Kaepernick7,RT @ChuckModi1: Mothers whose children were killed by police have been fighting to get their stories heard have been sharing their ❤️ for… +05/10/2018,Sports_celeb,@Kaepernick7,"RT @ChuckModi1: “Kaepernick Took a Knee 4 US!” +Mothers whose children were killed by police have been fighting to get their stories heard…" +05/09/2018,Sports_celeb,@Kaepernick7,"“Love is at the root of our resistance!” +via @nytimes Opinion Section https://t.co/Isf6j56cet" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @nessnitty: I hope you feel motivated to make this world a better place. Thank you @Kaepernick7 for everything, Young King! Here’s a sni…" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: When @nessnitty sat down with superstar mentalist @OzTheMentalist, she wasn’t prepared to have the shock of her life. And yo…" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @CentralOhioIWOC: BREAKING - Work Stoppage at Largest Maximum Security Prison in the U.S. + +C-Block prisoners at Louisiana State Penitent…" +05/08/2018,Sports_celeb,@Kaepernick7,RT @nessaonair: ❤️😍 https://t.co/6kb2f5ntLp +05/08/2018,Sports_celeb,@Kaepernick7,RT @nessaonair: #RP @nessnitty: Some of the incredible children we met during our Know Your Rights Camp Amsterdam version. Thankful for @am… +05/07/2018,Sports_celeb,@Kaepernick7,"Catch #DearMamaVH1: A Love Letter To Moms TONIGHT 9/8c on @VH1! +📸: @KarlFergusonJr https://t.co/zoNb0YmQNW" +05/07/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: If you haven’t watched the video embedded in this article, WATCH NOW! Phenomenal job @nytimes https://t.co/rHBwLsfFJL" +05/07/2018,Sports_celeb,@Kaepernick7,"RT @mikefreemanNFL: If you haven’t seen this, it will be worth your time. https://t.co/cjTyGWOOUr" +05/06/2018,Sports_celeb,@Kaepernick7,RT @AmnestyThailand: Colin Kaepernick: ‘Love Is at the Root of Our Resistance’ https://t.co/U6MA4c5D2h via @nytimes #humanrights #Ambassado… +05/05/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: We are ignoring the haters with the help of @mariashriver! @nessnitty is sitting down with her and other inspirational women… +05/04/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: LOVE THIS!!! All true! @Kaepernick7 @E_Reid35 greatest brotherhood ❤️ https://t.co/sFeogN20a9 +05/04/2018,Sports_celeb,@Kaepernick7,"RT @TheAthleticSF: Loggins: The brotherhood of Colin Kaepernick and Eric Reid (this story is free) +https://t.co/9WJmGrfTh3" +05/04/2018,Sports_celeb,@Kaepernick7,RT @nytopinion: “How can you not be in a rage when you know that you are always at risk of death in the streets or enslavement in the priso… +05/04/2018,Sports_celeb,@Kaepernick7,"RT @aaaj_alc: “I’ve realized that our love, that sometimes manifests itself as Black rage, is a beautiful form of defiance against a system…" +05/04/2018,Sports_celeb,@Kaepernick7,RT @amnesty: Colin Kaepernick's (@Kaepernick7) Ambassador of Conscience acceptance speech in the @nytimes. https://t.co/vHx3WduIKO +05/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/IjU2bC3zYR +05/02/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Amazing time teaming w @amnesty to bring a version of our Know Your Rights Camp to Amsterdam! Empowering youth internationa… +05/02/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyKenya: We have said this before but to ensure any avoidance of doubt, @Kaepernick7 is one of the bravest people we are proud to…" +05/02/2018,Sports_celeb,@Kaepernick7,RT @ajplus: Eric Reid filed a grievance against the NFL. He charges them of colluding to keep him unsigned because he joined Colin Kaeperni… +05/02/2018,Sports_celeb,@Kaepernick7,"RT @SportsCenter: Former 49ers safety Eric Reid has filed a collusion grievance against the NFL over his employment status, a source told @…" +04/30/2018,Sports_celeb,@Kaepernick7,"RT @USA_Network: Your favorite @nbc stars stop by on this week's Talk Stoop! Tune in to see @nessnitty chat with @JoshRadnor, @rosieperezbk…" +04/26/2018,Sports_celeb,@Kaepernick7,“Our love is not an individualized love—it is a collective love. A collective love that is constantly combating col… https://t.co/I8qs8uUVo2 +04/26/2018,Sports_celeb,@Kaepernick7,"“As police officers continue to terrorize Black and brown communities, abusing their power, and then hiding behind… https://t.co/PBJzIPOPdC" +04/25/2018,Sports_celeb,@Kaepernick7,"“It was James Baldwin who said, to be Black in America, “and to be relatively conscious is to be in a rage almost a… https://t.co/amwj3gJ4GJ" +04/25/2018,Sports_celeb,@Kaepernick7,“That word courage is exactly the word I would use to describe https://t.co/4eG0XH78vP was a courageous act to begi… https://t.co/byFZTbCPKj +04/25/2018,Sports_celeb,@Kaepernick7,"“It’s ironic that the stand Colin&I took was not 2 stand at all,but it was 2 take a knee.Colin didn’t kneel in prot… https://t.co/NKrEvSM7gE" +04/25/2018,Sports_celeb,@Kaepernick7,I couldn’t ask for a better Brother @E_Reid35 to share this journey and @amnesty Ambassador of Conscious Award with… https://t.co/ax2g4yIGEZ +04/25/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/S1YONlFHGX +04/24/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #RP @E_Reid35: Thank you for all that you stand for and congratulations on receiving the @amnesty ‘s highest honor, The…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AztecaDeportes: ¡Gran trabajo de @Kaepernick7 en su lucha contra el racismo!😱👏 + +https://t.co/Avx8x3jglm" +04/23/2018,Sports_celeb,@Kaepernick7,"“Seeking the truth, finding the truth, telling the truth and living the truth has been, and always will be what gui… https://t.co/AHOL67jFtM" +04/23/2018,Sports_celeb,@Kaepernick7,RT @AmnestyKenya: @amnesty @irunguhoughton @Kaepernick7 Our @amnesty chairperson @MwikaliN and @Kaepernick7 Speak truth to power always! ht… +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: He confronted injustice. He inspired others. He took a knee, refusing to ignore or accept racial discrimination. Meet our new…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnestyusa: You refused to compromise. +You confronted injustice. +You inspired others. +Thank you, Colin Kaepernick https://t.co/pmZqsBH0…" +04/23/2018,Sports_celeb,@Kaepernick7,RT @GQMagazine: .@Kaepernick7 accepts Amnesty International's highest honor https://t.co/6oNVIrBzKV +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyThailand: Colin Kaepernick @Kaepernick7 is the latest recipient of the Ambassador of Conscience Award, joining Nelson Mandela an…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyUK: ICYMI: This weekend, we presented athlete and activist Colin Kaepernick (@Kaepernick7) with the Amnesty #AmbassadorOfConscie…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnestyPL: W sobotę przyznaliśmy nagrodę Ambasadora Sumienia Colinowi Kaepernickowi, b. zawodnikowi NFL, aktywiście, który przeciwstawi…" +04/22/2018,Sports_celeb,@Kaepernick7,"“I would like 2 thank Amnesty International 4 The Ambassador of Conscience Award.But in truth,this is an award that… https://t.co/Tg9p5x91Cn" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnestyusa: He confronted racial injustice. +He refused to compromise. +He inspired others. + +Colin Kaepernick is our #AmbassadorOfConscie…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: ""It is only fitting that I have the honor of Eric Reid (@E_Reid35) introducing me for this award. In many ways, my recognition…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: You confronted racial injustice. +You refused to compromise. +You inspired others. + +Thank you, @Kaepernick7, Ambassador of Consc…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: He confronted racial injustice. +He refused to compromise. +He inspired others. + +Athlete and activist Colin Kaepernick (@Kaepern…" +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnestyusa: We are honored to present this year’s #AmbassadorOfConscience Award to Colin Kaepernick (@Kaepernick7). Colin embodies the… +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnestyusa: We're thrilled to present athlete and activist Colin Kaepernick—who refused to ignore or accept racial discrimination—with… +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnesty: We're honored to present athlete and activist Colin Kaepernick (@Kaepernick7)—who refused to ignore or accept racial discrimin… +04/21/2018,Sports_celeb,@Kaepernick7,RT @AmnestySverige: Idrottsmannen och aktivisten Colin Kaepernick hedras med @amnesty Ambassador of Conscience Award 2018! Han riskerade al… +04/21/2018,Sports_celeb,@Kaepernick7,RT @AmnestyCIJ: Sometimes standing up for justice is kneeling against injustice @amnesty @amnestynl @nfl @Kaepernick7 https://t.co/L5QQNqoQ… +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty_de: Wir freuen uns sehr, den Sportler und Aktivisten Colin Kaepernick mit dem #AmbassadorOfConscience Award 2018 auszuzeichnen!…" +04/20/2018,Sports_celeb,@Kaepernick7,RT @JColeNC: ATM video. KOD https://t.co/VgVLu5GcSU +04/20/2018,Sports_celeb,@Kaepernick7,RT @JColeNC: KOD the album. https://t.co/XHTS0SnCNl +04/16/2018,Sports_celeb,@Kaepernick7,https://t.co/pg71tJl7z3 +04/14/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: .@RyanSerhant, we have some questions ... What's your skin care routine? And when is Ry-Glow hitting the shelves? See his sh…" +04/13/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Fashion designer @Zac_Posen is giving us life 🙌. Catch his full interview this weekend with @nessnitty. Check your local lis… +04/13/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: Is the romance gone between @FredrikEklundNY and his husband @derekkaplanart? Well, @Bethenny did warn him! See more of thes…" +04/12/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: This link between @GlennHowerton & @nessnitty is too funny! Catch @NBCAPBio tonight at 8:30/7:30c on @nbc. https://t.co/vj… +04/12/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: Sending thanks and appreciation for the support. I will continue to strive to be the best man of God, husband, father, and at…" +04/12/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: CARDI B!! She is everywhere right now and @nessnitty and @SteveMadden can't help but gush about her on the stoop! https://t.… +04/11/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: .@nessnitty and her partner @Kaepernick7 are working on their smize and they recruited @tyrabanks, the expert and host of @A…" +04/11/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: Source: Mike Brown questioned Eric Reid about anthem kneeling during his recent Bengals visit https://t.co/ivvRXO7BdS +04/11/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: Eric Reid never got a formal offer from 49ers; he'd sign a one-year deal for his 2017 salary there https://t.co/kY5UxZ… +04/11/2018,Sports_celeb,@Kaepernick7,"RT @Kaepernick7: My brother, @E_Reid35 continues to train like the Elite Probowl safety he is! Keep an eye on him, as he goes through free…" +04/11/2018,Sports_celeb,@Kaepernick7,"RT @CFPetrella: .@LeftSentThis & I wrote this for @washingtonpost: + +""Wherever one stands on the issue of gun ownership, one must recognize…" +04/10/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: WOW... via #nydailynews: +The sheriff of a California county with an outsized number of police shootings once said that…" +04/08/2018,Sports_celeb,@Kaepernick7,RT @lsarsour: Don’t turn a blind eye. https://t.co/wU1GaCbftF +04/07/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Let’s Go!!!! @TalkStoop https://t.co/6AdMXsBVM7 +04/07/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Catch @nessnitty's premiere tonight on #talkstoop! Check your local listings for her interviews with Hollywood legends @rosi… +04/06/2018,Sports_celeb,@Kaepernick7,RT @Mathieu_Era: E Reid & Kenny V still aren't signed... think about that !!! FRFR! They too good of men & players! +04/06/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: The creators of @NBCChampions are having a little fun with their actors! Star @AndyFavs tells @nessnitty how he stays on his… +04/06/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Chatting w THE LEGENDARY @rosieperezbklyn about @iamcardib ❤️ #InvasionOfPrivacy out now! Catch us on @TalkStoop NBC Station… +04/06/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: In this exclusive clip, @nessnitty and @ForestWhitaker chat about people's evolving perceptions of Africa, the setting of hi…" +04/06/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: Will there be an In Living Color reunion?!?! For more, watch @NBCRise's @rosieperezbklyn this weekend on Talk Stoop with @ne…" +04/05/2018,Sports_celeb,@Kaepernick7,RT @NBCUniversal: Nessa Diab Is Named Host of Popular Television Program @TalkStoop for 2018 Season https://t.co/fU2xBPMwQ0 https://t.co/Kc… +04/05/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Can @nessnitty get @WhosBenFeldman of @NBCSuperstore to crack and reveal some upcoming storylines? Have your mind blown toni… +04/05/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Free ALL of the political prisoners who literally put their lives on the line to protect the Black community from state s… +04/05/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: It took 27 seconds for four cops (three of which were in plainclothes) to hop out of an unmarked car, as one witness said…" +04/04/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: America decided to love Martin Luther King Jr. AFTER he was assassinated and no longer a threat to disrupting order and c… +04/04/2018,Sports_celeb,@Kaepernick7,"RT @Michael31Thomas: A God fearing man, a loving husband & father, and a great community leader. Not to mention a top 5 Safety in the NFL.…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/RYskdI2oT3 +04/03/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: This spring, @nessnitty will sit down with @tyrabanks, @erikajayne, @TheRitaMoreno, @rosieperezbklyn, Dennis Quaid, @marias…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: The book is stores today right? https://t.co/WlLdqPcsO2 +04/03/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: Pay attention! 👀 #Repost @kaepernick7 - My brother, @e_reid35 continues to train like the Elite Probowl safety he is! K…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @HOT97: HUGE Congratulations to our girl @nessnitty - the new host of NBCU’s ‘Talk Stoop’ 👏🏾 - https://t.co/aoljC0cklH https://t.co/A2TQ… +04/03/2018,Sports_celeb,@Kaepernick7,"My brother, @E_Reid35 continues to train like the Elite Probowl safety he is! Keep an eye on him, as he goes throug… https://t.co/wG2QawfJRP" +04/03/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Like Eric Reid, Kenny Vaccaro was aware of the fact that his support of Colin Kaepernick, and his own protesting of polic…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: I am hopeful that the NFL owners are not going to add Eric Reid and Kenny Vaccaro to their Kaepernick’d list (as in playe… +04/03/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Eric Reid and Kenny Vaccaro have four things in common: + +1. They’re two of the top safeties in the NFL + +2. Both are unsi…" +04/02/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: .@nessnitty let’s make this Dennis Quaid-@LilTunechi duet happen! https://t.co/yGfutQaUh1 +04/02/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/voy8eUodBr +04/02/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: You have to ask yourself why they hated Nelson Mandela when he was incarcerated, and celebrated him upon his release." +04/02/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Winnie Mandela was a revolutionary. +04/02/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: “All I wanna say is that they don’t really care about us” +You ain’t lying Michael" +04/02/2018,Sports_celeb,@Kaepernick7,RT @haymarketbooks: “Palestine under Israeli occupation is the worst possible example of a carceral society.” —Angela Davis https://t.co/tQ… +04/01/2018,Sports_celeb,@Kaepernick7,RT @ryan_s_clark: Here at Safeco Field where an elementary school sung the anthem and two students took a knee while performing. https://t.… +03/30/2018,Sports_celeb,@Kaepernick7,"More historical context on America’s “involvement” in Africa. +#KnowYourHistory + +BBC News - Four more ways the CIA h… https://t.co/K2L4a3i8Dv" +03/30/2018,Sports_celeb,@Kaepernick7,"From a historical perspective, the Ghanaian people have every reason to protest America's ""involvement"" in their co… https://t.co/pWlej2Gj5x" +03/30/2018,Sports_celeb,@Kaepernick7,"RT @Delo_Taylor: “Ghana First"": US Military deal erupts into mass protest, as citizens fear loss of sovereignty. #HandsOffAfrica #IntelGrou…" +03/30/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: If the government can get away with stealing $21 Trillion, without an uproar, God only knows how many miscellaneous milli…" +03/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/Bsvk1AOZim +03/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Watch how many of the same people celebrating their Parkland peers demonize or completely ignore the legitimacy of these… +03/28/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: ❤️❤️❤️ #Repost @janellacuyler - “I want to be like Colin Kaepernick because he stands up for people and for their right… +03/27/2018,Sports_celeb,@Kaepernick7,RT @E_Reid35: 🤬😢This cycle is WAY too old! My heart hurts for Alton’s family. https://t.co/8LhVg4ZJkI +03/27/2018,Sports_celeb,@Kaepernick7,State sanctioned lynching by means of gun violence! https://t.co/s9L7RZ5vuq +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: There are no publicly supported marches for Black folks, nationwide, that have been victims of, “state sanctioned lynchin…" +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Claude McKay penned this poem in 1919. https://t.co/IHF9fjG76h +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Free all political prisoners that put their lives on the line for the liberation of Black folks. +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Not only do the police LEGALLY have the right to kill US with impunity, but they do so while being paid, in a system that…" +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Y’all better stop letting your enemies decide who your heroes are. +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “Neighbors were surprised that a shooting would take place at such an expensive store.” + +https://t.co/pGQ61ZGl5c" +03/25/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: A leader cannot lead without those willing to follower, thus Kaepernick’s personal protest could only become a movement b…" +03/25/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #Repost @francismmaxwell - When a rifle has more rights than an unarmed black 22 year old, there is a problem. #blackli…" +03/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: It’s interesting which protest/gatherings become sanctioned by society, safe from police aggression and agitation." +03/23/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Bodycam footage shows the moments before cops fired 20 shots at unarmed 22-year-old Stephon Clark (warning: distressing im… +03/23/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: This is the Eric Reid that they want you to hate for protesting systemic oppression that allows the police to kill with i… +03/22/2018,Sports_celeb,@Kaepernick7,"“I am a feminist, & what that means to me is much the same as the meaning of the fact that I am Black; it means tha… https://t.co/gNuK5rFSzL" +03/22/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: ✊🏾 thank you!! #RP jaypoppins615: Just got my #ImWithKap hoodie I’m riding with @kaepernick7 no matter what ✊🏿 https://… +03/21/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: The 22-year-old black man fatally shot by Sacramento police in his own backyard Sunday night was carrying a cellphone,…" +03/20/2018,Sports_celeb,@Kaepernick7,"""I do want to create art beyond rage. Rage is a place to begin, but not end... I do want to devour my demons—despai… https://t.co/wc2u0Ju7rI" +03/17/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: When it comes to support, we’ve never had to doubt yours 🙌🏾 HAPPY BIRTHDAY @oldmanebro!!! https://t.co/RaVajjSsfM" +03/16/2018,Sports_celeb,@Kaepernick7,RT @TMZ_Sports: Colin Kaepernick All Smiles After Legal Showdown with Texans Owner https://t.co/kCPMHBCmQS +03/16/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: The silence on Eric Reid in free agency is deafening https://t.co/VEtGhClWcf +03/16/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: 600 students at this Atlanta school took a knee for 17 minutes yesterday to honor Parkland and say #ENOUGH https://t.co/k9… +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: GMs aren’t the hold up broski. It’s ownership. People who know football know who can play. People who know me, know my charac…" +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: Your assumption is false. After Navorro went to the Raiders, there was a LB shortage and I was asked to pick up the slack. No…" +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: The notion that I can be a great signing for your team for cheap, not because of my skill set but because I’ve protested syst…" +03/15/2018,Sports_celeb,@Kaepernick7,Let em know Queen! https://t.co/16DKlFbThQ +03/15/2018,Sports_celeb,@Kaepernick7,Turning up the heat!🔥🔥🔥 https://t.co/VI4CxdHPX3 +03/14/2018,Sports_celeb,@Kaepernick7,They did to @MeekMill what they've done to young black men and women and people of color forever. Read… https://t.co/U9cWW2vgzc +03/14/2018,Sports_celeb,@Kaepernick7,"RT @ladybrettgm: Student sign says: As a black boy, I hope one I day I have as many rights as a gun. #nationalschoolwalkout https://t.co/Pu…" +03/14/2018,Sports_celeb,@Kaepernick7,RT @JamilesLartey: Students at Booker T Washington High School in Atlanta talking a knee as part of the #NationalWalkoutDay protests. https… +03/14/2018,Sports_celeb,@Kaepernick7,"RT @ShaunKing: #DraylenMason. + +This is the brilliant 17 year old brother who was murdered yesterday by the package bomb brought to his home…" +03/13/2018,Sports_celeb,@Kaepernick7,"“Love is an expression of power. We can use it to transform our world.” - Ericka Huggins + +#KnowYourHistory… https://t.co/73EMlhZ62H" +03/13/2018,Sports_celeb,@Kaepernick7,RT @shondarhimes: Wow. “Black-ish Episode About Kneeling Athletes Will Never Be Aired” https://t.co/VocQoxRxDf +03/12/2018,Sports_celeb,@Kaepernick7,RT @Schultz_Report: Here's why Eric Reid is the most intriguing free agent on the market: https://t.co/v0enz3XiBa @E_Reid35 #49ers #FreeAge… +03/12/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: From 1940 until his death in 1966, Walt Disney served as a secret informer for the Los Angeles office of the Federal Bure…" +03/11/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/OG9kEKBSfg +03/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Blackish has covered everything from, ""Trump’s election, the N-word, postpartum depression, and police brutality,"" but wh…" +03/09/2018,Sports_celeb,@Kaepernick7,". @Ava showed out when she made A Wrinkle in Time. The shots, images and messaging are phenomenal. Take your loved… https://t.co/rjj0JNwxEA" +03/09/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “To be Black is not revolutionary. When you begin to stress culture without politics, people can become so hooked up in t…" +03/09/2018,Sports_celeb,@Kaepernick7,"RT @ShaunKing: I saw a list today of the top 200 free agents in the @NFL. + +Colin Kaepernick wasn't even on the list. + +I saw HORRIBLE QBs…" +03/09/2018,Sports_celeb,@Kaepernick7,RT @MindyBe: Terry Crews: 'I Still Have to Send a Check to My Molester' https://t.co/UYnceVHlRy +03/08/2018,Sports_celeb,@Kaepernick7,Thank you @ava for inviting me and @nessnitty to the premiere of your brilliant film A Wrinkle in Time! Continue to… https://t.co/baQxxBP8cS +03/08/2018,Sports_celeb,@Kaepernick7,"“Revolution is a serious thing, the most serious thing about a revolutionary’s life. When one commits oneself to th… https://t.co/gqIBxTKucT" +03/08/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Prosecutors decide not to file charges against a talent agent whom actor Terry Crews says groped him at a Hollywood party… +07/01/2018,Sports_celeb,@MariaSharapova,It’s almost... Day #1 of Wimbledon 🤗📸 by getty https://t.co/Ze1ou3xRJS +07/01/2018,Sports_celeb,@MariaSharapova,10am - 8pm ⏰ #12ChurchRoad #PovaPopUp https://t.co/pryF0A2bu8 +06/30/2018,Sports_celeb,@MariaSharapova,12 Church Road 🤓 https://t.co/TAMP15voaQ +06/30/2018,Sports_celeb,@MariaSharapova,"RT @WimbledonVil: Grabbing some candy at the pop-up shop @Sugarpova @MariaSharapova + +#Candy #Sugarpova #mariasharapova #WimbledonVillage #…" +06/29/2018,Sports_celeb,@MariaSharapova,Boomerang game at #PovaPopUp #12ChurchRoad @Sugarpova https://t.co/72sXzxMDVM +06/29/2018,Sports_celeb,@MariaSharapova,RT @Sarahwinterman: She did that 😻🍬 @MariaSharapova @Sugarpova #PovaPopUp https://t.co/7UFrlZ8imk +06/29/2018,Sports_celeb,@MariaSharapova,Thank you!! 🙋🏼‍♀️🍬 https://t.co/FKHIInCANM +06/29/2018,Sports_celeb,@MariaSharapova,RT @WimbledonFoodie: Where candy grows on trees... @Sugarpova in #Wimbledon Village. What a treat! #foodie #wimbledonfoodie https://t.co/N2… +06/28/2018,Sports_celeb,@MariaSharapova,Loving this suit dress by @31philliplim 📸🖤 https://t.co/a0XXjtXiVB +06/28/2018,Sports_celeb,@MariaSharapova,RT @BillieJeanKing: .@ejaf celebrated 25 years of helping to fight AIDS. Lovely to spend our first evening in the UK at the Argento Ball wi… +06/28/2018,Sports_celeb,@MariaSharapova,I ❤️ this place. #wimbledon https://t.co/WvEewzWWfW +06/28/2018,Sports_celeb,@MariaSharapova,With the incredible Marina Abramovic at last nights @ejaf evening 📸getty https://t.co/zFmhBJj3NN +06/27/2018,Sports_celeb,@MariaSharapova,I love this!! Thank you for visiting 🙋🏼‍♀️🍬 #PovaPopUp https://t.co/oTSU5JA2Mf +06/27/2018,Sports_celeb,@MariaSharapova,"RT @Sugarpova: We are open! #PovaPopUp @ 12 Church R, Wimbledon Village https://t.co/5vLXacp6Xq" +06/27/2018,Sports_celeb,@MariaSharapova,Thank you for a great #Wimbledon 🎾 warmup!! https://t.co/lKKC29rEkY +06/25/2018,Sports_celeb,@MariaSharapova,A little tour of #Wimbledon with Sidney Crosby 🎾🏒 https://t.co/l5vYazaTFl +06/25/2018,Sports_celeb,@MariaSharapova,🍫🍬🍭 #PovaPopUp #Sugarpova https://t.co/kk9DtbPoLI +06/24/2018,Sports_celeb,@MariaSharapova,Exceeded any expectations at the fair. And yes...we are #children 🎈🐻😊 https://t.co/ARG6Wp1GDN +06/24/2018,Sports_celeb,@MariaSharapova,"A little glimpse of @Sugarpova candy lounge under construction, getting ready for a Wednesday opening 🤗 #PovaPopUp… https://t.co/qGYHuZL2H9" +06/20/2018,Sports_celeb,@MariaSharapova,RT @the_ink_factory: Ink Factory is about to go next-level! We're honored to be accepted into the @NAWBONational + @MariaSharapova Women's… +06/20/2018,Sports_celeb,@MariaSharapova,I'm thrilled to announce the 7 finalists have been selected for my Women's Entrepreneur Program in partnership with… https://t.co/XKuBSp3MCi +06/19/2018,Sports_celeb,@MariaSharapova,Ed Ruscha at #NationalGallery #London https://t.co/nodHvsekpe +06/19/2018,Sports_celeb,@MariaSharapova,Can we please hire you?? 😍 https://t.co/drQhFbzEDh +06/18/2018,Sports_celeb,@MariaSharapova,As Seen In @HauteLivingMag https://t.co/WfO6OQVmyz +06/17/2018,Sports_celeb,@MariaSharapova,Thank you!! https://t.co/7YNVjs3A4x +06/11/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Make your home improvement project a little sweeter with our truffles. Available now at @Menards stores nationwide #truffle… +06/08/2018,Sports_celeb,@MariaSharapova,The scene made it in the movie?!🤓😎 going to the theater asap 🙃 #Oceans8 🎥 https://t.co/1UvMpvTdjI +06/08/2018,Sports_celeb,@MariaSharapova,"Unstoppable, Mon Autobiographie 🇫🇷 is now on shelves throughout France. It is now in over 20 different language t… https://t.co/KfNbi1v2jv" +06/02/2018,Sports_celeb,@MariaSharapova,Happy 📸😊 from today https://t.co/A4dVVCojlY +06/02/2018,Sports_celeb,@MariaSharapova,🤗 https://t.co/9WoaNzWFSt +06/01/2018,Sports_celeb,@MariaSharapova,"Special to be back here, Paris. Love playing in front of you ❤️ https://t.co/Kg5Q7W9NU6" +05/28/2018,Sports_celeb,@MariaSharapova,I made a guest appearance (along w @Sugarpova ) on SHOWTIME on #Billions alongside Damian Lewis &John Malkovich. W… https://t.co/fe42eJCDfy +05/25/2018,Sports_celeb,@MariaSharapova,Musée de Picasso https://t.co/Znsicm7b6c +05/24/2018,Sports_celeb,@MariaSharapova,RT @jen172334: @MariaSharapova @Nikecourt I got mine today from Tennis Warehouse. It’s beautiful!❤️🎾 https://t.co/TBClUpu7Xt +05/23/2018,Sports_celeb,@MariaSharapova,The 👗 for Paris 😍@Nikecourt https://t.co/BaNdcFTFx2 +05/23/2018,Sports_celeb,@MariaSharapova,"The @Sugarpova team is hard at work showing our latest and greatest (chocolate covered gummy lips, anyone?? 🙋🏼‍♀️)… https://t.co/Ya9yUARbOr" +05/23/2018,Sports_celeb,@MariaSharapova,Back at it 👊🏻 #Paris https://t.co/ek17QOgO6a +05/22/2018,Sports_celeb,@MariaSharapova,Bonjour 🤗 https://t.co/A7znfmoY07 +05/20/2018,Sports_celeb,@MariaSharapova,Just a few weeks left to get those applications in for the Women's Entrepreneur Program on which I've partnered wit… https://t.co/5hlKGBIBcZ +05/18/2018,Sports_celeb,@MariaSharapova,3.11hrs on court. Loved every bit of it. Thank you Roma for the ❤️ https://t.co/3d3UfK8PBy +05/15/2018,Sports_celeb,@MariaSharapova,"Unstoppable, in Italian debuts today🇮🇹 🤗 https://t.co/HV710KcrIy" +05/14/2018,Sports_celeb,@MariaSharapova,Two minutes on court with the GOAT 🐐 @RafaelNadal #BucketList Was so nervous 😱😬 https://t.co/mfUO2Xx79l +05/07/2018,Sports_celeb,@MariaSharapova,🤣 https://t.co/g8IY68saIA +05/06/2018,Sports_celeb,@MariaSharapova,"Hola, Madrid! 👋🏼 Loved playing in front of you today 👊🏻🇪🇸 https://t.co/JCGGTFtAfV" +05/05/2018,Sports_celeb,@MariaSharapova,RT @JJlovesTennis: .@MariaSharapova signs autographs at the @MutuaMadridOpen https://t.co/wjmWzDSpUH +05/04/2018,Sports_celeb,@MariaSharapova,Huh? 👀 https://t.co/qGXcOjycvU +05/01/2018,Sports_celeb,@MariaSharapova,Thank you!😊 https://t.co/bDKwT8rmO7 +04/30/2018,Sports_celeb,@MariaSharapova,Introducing @evianwater new Fruits & Plants plum lemongrass flavor. Another delivery that arrived minutes before my… https://t.co/0YZTy98uIy +04/21/2018,Sports_celeb,@MariaSharapova,Not sure what to think of this comment AussieGrit 🤔 https://t.co/uofupTeVHb +04/21/2018,Sports_celeb,@MariaSharapova,This is GOLD 🤣 @Porsche @AussieGrit https://t.co/YniKyuZhOV +04/21/2018,Sports_celeb,@MariaSharapova,RT @PorscheNewsroom: Fast laps on the #Porsche test track in Weissach: @AussieGrit negotiated the circuit with @MariaSharapova in a #911gt2… +04/21/2018,Sports_celeb,@MariaSharapova,RT @PorscheTennis: It´s shooting time for our brand ambassador @MariaSharapova! 📸 #porschetennis https://t.co/BnkfeP9J2D +04/20/2018,Sports_celeb,@MariaSharapova,One way to battlejet lag. A full throttle lap with Mark Webber in a @porsche GT2RS upon arrival. No biggie 🤷🏼‍♀️😵 https://t.co/pHaoND36eB +04/19/2018,Sports_celeb,@MariaSharapova,"Three cakes, 2.5 candles later. 😉Happpy puppy. Thank you for all the beautiful messages, wishes and ❤️ https://t.co/953jORLt3a" +04/18/2018,Sports_celeb,@MariaSharapova,Let’s make it to Stuttgart first 😂🤷🏼‍♀️ https://t.co/JAb7MgBY0w +04/17/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Delicious truffles are now available on https://t.co/GhBtUccrJz in time for #MothersDay ! Free shipping on orders of $75+ #… +04/17/2018,Sports_celeb,@MariaSharapova,Coming out of retirement @TommyHaas13 ? 🤷🏼‍♀️🤔 https://t.co/v7nNFrxxKf +04/16/2018,Sports_celeb,@MariaSharapova,RT @MubadalaSVC: We’re thrilled to announce that five-time Grand Slam champion @MariaSharapova has committed to play in San Jose this year.… +04/16/2018,Sports_celeb,@MariaSharapova,Third live show I’ve seen of Judah Friedlander. He’s a world champ and an athlete. Also a comedian. Watch him on Ne… https://t.co/VKPTbT4I7g +04/12/2018,Sports_celeb,@MariaSharapova,"RT @AmsterdAmik: Кто бы сомневался @MariaSharapova 😎😏🤙🏼 +#МосковскийДомКниги https://t.co/RKhBjxwJ5D" +04/11/2018,Sports_celeb,@MariaSharapova,🛫PDX Nike HQ’s https://t.co/Yz1HPFl26k +04/10/2018,Sports_celeb,@MariaSharapova,Sliding into...Tuesday 🤓 https://t.co/Y78jfKbwHu +04/09/2018,Sports_celeb,@MariaSharapova,RT @NAWBONational: APPLY TODAY: Attention all women business owners who are really ready to grow! Five-Time Grand Slam tennis champion and… +04/06/2018,Sports_celeb,@MariaSharapova,"Met this brilliant and wickedly humble lady, CJ Hendry who just happens to be an amazing artist, currently with a s… https://t.co/jRSRV0Fqce" +04/02/2018,Sports_celeb,@MariaSharapova,Nick told us this morning in 1957 he charged 3.75$ an hour. Today’s price was $900 but I wiggled a discount 🤷🏼‍♀️ https://t.co/rBphLhyU1d +04/01/2018,Sports_celeb,@MariaSharapova,Easter’s version of Happy Hour courtesy of Rum Cherry Truffles @Sugarpova 😉🍒🤷🏼‍♀️ https://t.co/n0n8Ebg8c6 +03/30/2018,Sports_celeb,@MariaSharapova,Prepping for an Easter Egg hunt 🐥 https://t.co/uWL1lOBjVa +03/30/2018,Sports_celeb,@MariaSharapova,"RT @darienlibrary: Borrow it: https://t.co/gTiS1TruTl + +@MariaSharapova https://t.co/balljunoLa" +03/30/2018,Sports_celeb,@MariaSharapova,RT @Dent29Dent: Enjoying reading #Unstoppable by @MariaSharapova whilst on holiday in #Mauritius 😎 https://t.co/HCG6n0V8J7 +03/29/2018,Sports_celeb,@MariaSharapova,RT @Asia_Burzynska: @MariaSharapova Finally got it in Poland! ❤ https://t.co/XYBGofkVkv +03/29/2018,Sports_celeb,@MariaSharapova,"RT @IMGAcademy: 👀 who we found at @imgacademy putting in the hard work before the clay court season begins! You got this, @MariaSharapova!…" +03/24/2018,Sports_celeb,@MariaSharapova,RT @NetJets: Ace! #NetJets Owners enjoyed a private clinic with tennis legend @MariaSharapova. #OnlyNetJets https://t.co/T0yISqnDBp +03/23/2018,Sports_celeb,@MariaSharapova,Thanks for making it so fun! 👊🏻 https://t.co/FgimNteBem +03/22/2018,Sports_celeb,@MariaSharapova,Incredible. 👊🏻🙌🏻 https://t.co/VYQ7omHYIU +03/20/2018,Sports_celeb,@MariaSharapova,"Oh yeah, Day 2. 👊🏻 https://t.co/wGomYY4Sbr" +03/20/2018,Sports_celeb,@MariaSharapova,@daniil_ndg https://t.co/46B2iGtYGR +03/20/2018,Sports_celeb,@MariaSharapova,"RT @team_sharapova: 2012 👶🏼 +2018 👧🏼 +#Godmother 🤗❤️ https://t.co/gY747CUUdL" +03/20/2018,Sports_celeb,@MariaSharapova,I like your style 😉 https://t.co/uMq4CuTqPq +03/08/2018,Sports_celeb,@MariaSharapova,As seen in @Forbes https://t.co/F1WJkPpz7T +03/08/2018,Sports_celeb,@MariaSharapova,"Happy #InternationalWomensDay! Thrilled to partner with @NAWBONational on a new program for female entrepreneurs, k… https://t.co/ufTh5E7TWu" +03/06/2018,Sports_celeb,@MariaSharapova,RT @WhoWhatWear: .@MariaSharapova told us how to style her elegant new @Nike sneakers in L.A. vs NY https://t.co/uIkxZgJ7FA https://t.co/Bo… +03/06/2018,Sports_celeb,@MariaSharapova,Shenanigans on set with @head_tennis and Zverev. New Instinct out in 2019 😳👏🏼 https://t.co/AcMuz0jjyh +03/04/2018,Sports_celeb,@MariaSharapova,"RT @NikeLA: ""The La Cortez has followed me around the world. From Abu Dhabi to Paris, back to LA. It's timeless."" + +@MariaSharapova joins Ni…" +03/03/2018,Sports_celeb,@MariaSharapova,"LA Cortez Launch at Nike Store, The Grove https://t.co/92LDdIvaCV" +03/03/2018,Sports_celeb,@MariaSharapova,RT @KarenCivil: Congratulations @MariaSharapova on the release of your @nikewomen’s “La Cortez” https://t.co/SntN9NFl14 +03/03/2018,Sports_celeb,@MariaSharapova,@daniklup @Nike @nikewomen @nikevault Thank you for hosting such a nice evening! 👏🏼 +03/02/2018,Sports_celeb,@MariaSharapova,Damien Hirst ‘The Veil’ at the Gagosian. https://t.co/Q23OfqHfvK +03/02/2018,Sports_celeb,@MariaSharapova,RT @SNKRDrops: .@MariaSharapova x Nike LA Cortez is now available on Nike SNKRS --> https://t.co/OBa72EPLpj https://t.co/vBDALDcFiw +03/02/2018,Sports_celeb,@MariaSharapova,"Los Angeles!! I’ll be at Nike @TheGroveLA TONIGHT to launch and talk +about the limited-edition LA Cortez X Maria Sh… https://t.co/R2oycAJ3j7" +03/02/2018,Sports_celeb,@MariaSharapova,"RT @daniklup: So excited to host an event alongside @MariaSharapova TOMORROW at the Grove with @nikewomen! 🎾👟 + +These “la Cortez x Maria” be…" +03/01/2018,Sports_celeb,@MariaSharapova,"RT @TheSoleWomens: Take a closer look at Nike x @MariaSharapova's effortlessly chic LA Cortez 💘 + +https://t.co/a4n7G7xIRB https://t.co/iEFS…" +03/01/2018,Sports_celeb,@MariaSharapova,"RT @SOLELINKS: .@MariaSharapova x Nike LA Cortez is now available via Nordstrom => https://t.co/8ZjYfX3bXH + +(releasing tomorrow on SNKRS) h…" +03/01/2018,Sports_celeb,@MariaSharapova,So excited to share the LA Cortez with you! The shoe captures everything I love most about this city. Available TOD… https://t.co/aQZ9qh7yFZ +02/28/2018,Sports_celeb,@MariaSharapova,"I got to design one of my favorite Nike classics, the Cortez. Ta dahhh...LA Cortez X Maria Sharapova. On March 2nd,… https://t.co/M3GDRcHKH4" +02/28/2018,Sports_celeb,@MariaSharapova,RT @SBDetroit: @MariaSharapova releasing her own Nike Cortez https://t.co/IL5JDm5PyE https://t.co/rV1kgWkT1j +02/28/2018,Sports_celeb,@MariaSharapova,"RT @hype_bae: .@Nike teams up with @MariaSharapova on a luxe LA Cortez. +https://t.co/vqMCzMvGhw https://t.co/xoWUA60XZ8" +02/28/2018,Sports_celeb,@MariaSharapova,"RT @Sneakerologue2: .@MariaSharapova x Nike Cortez ""LA"" +Inspiré de la sneaker préférée de Maria Sharapova et de sa ville préféré. +La Nike C…" +02/27/2018,Sports_celeb,@MariaSharapova,"RT @TheGroveLA: On March 2nd, join us for a special night with @Nike & @MariaSharapova to celebrate the new LA Cortez . RSVP at https://t.c…" +02/27/2018,Sports_celeb,@MariaSharapova,That’s really nice! Thank youuu 😊 https://t.co/lkNGvydZOH +02/24/2018,Sports_celeb,@MariaSharapova,That Friday feeling after the sand dunes... 🤸🏼‍♂️ https://t.co/mcLOZYhG9R +02/23/2018,Sports_celeb,@MariaSharapova,Thank you! https://t.co/g9OQyNeC2e +02/23/2018,Sports_celeb,@MariaSharapova,Ураааааааа 👏🏼👏🏼👏🏼 Zagitova 🥇 Medvedeva 🥈молодцы!!! #Olympics2018 +02/23/2018,Sports_celeb,@MariaSharapova,CookiesN Cream ➡️👩🏼‍🍳🍪🥛#myfave https://t.co/RO1B5MiuId +02/19/2018,Sports_celeb,@MariaSharapova,"Long days on the court require me to keep up my hydration throughout. With soft, smooth water of course 😉 #evian https://t.co/aBMI44CC0k" +02/16/2018,Sports_celeb,@MariaSharapova,Tom Wesselmann knew all about emojis before we ever did 💄🕶 #Gagosian https://t.co/IKqPFaU3lt +02/05/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Free Ground Shipping on https://t.co/r2cLs2PpHe guaranteed delivery by #ValentinesDay Last chance.! Use code VDSHIP at chec… +02/05/2018,Sports_celeb,@MariaSharapova,Alex’s 🦅’s loyalty became infectious this season and I somehow became an #Eagles cheerleader tonight 🤷🏼‍♀️… https://t.co/Jwu8DnO9jq +02/01/2018,Sports_celeb,@MariaSharapova,#Unstoppable spotted in Czech Republic 🇨🇿 https://t.co/Kq3c6SYFRu +02/01/2018,Sports_celeb,@MariaSharapova,"RT @BillieJeanKing: While I was in Australia, it was wonderful to catch up with @MonicaAce93 and hear about the ongoing efforts in Puerto R…" +01/31/2018,Sports_celeb,@MariaSharapova,BTS from today’s new cover shoot 📸 https://t.co/qJDkC7EPZp +01/29/2018,Sports_celeb,@MariaSharapova,Thank you! Funny 📸 https://t.co/IC4LvxpK4I +01/18/2018,Sports_celeb,@MariaSharapova,RT @head_tennis: .@MariaSharapova focused and determined as ever. See you in round three! #AusOpen https://t.co/DHden9EO0s +01/18/2018,Sports_celeb,@MariaSharapova,"RT @AustralianOpen: ""I love being in the city. I love Australia. I love the summertime...A lot of things to smile about."" + +-@MariaSharapova…" +01/16/2018,Sports_celeb,@MariaSharapova,Round 1 👊🏻 #AusOpen ❤️ This Dress https://t.co/d7MXpsE461 +01/16/2018,Sports_celeb,@MariaSharapova,"RT @AustralianOpen: Off to work. + +@MariaSharapova business like as she makes her way onto court. + +#AusOpen https://t.co/pee3k2lMAr" +01/15/2018,Sports_celeb,@MariaSharapova,"The Aussie summers get so warm, during which the body can lose over a liter of water an hour! Crazy, right?! Always… https://t.co/HwQyeBOG67" +01/13/2018,Sports_celeb,@MariaSharapova,#AusOpen just around the corner 🤗 https://t.co/PZRa6HlYhO +01/13/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Traveling in or out of @flyLAXairport this weekend? Don't forget to stop by Treat Me Sweet store in Tom Bradley Internationa… +01/11/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Sugarpova is now available in all @TennisPlaza locations! Stop by if you are in Florida #tennisshop https://t.co/QFy5bYvnav +01/10/2018,Sports_celeb,@MariaSharapova,RT @team_sharapova: #KeepGrinding 💁🏼💪🏻🎾🇦🇺 #AusOpen https://t.co/0M0blQFZXG +01/08/2018,Sports_celeb,@MariaSharapova,RT @AustralianOpen: A closer look at @MariaSharapova getting #AusOpen ready this morning 👀 https://t.co/UAHgRwZoIb +01/06/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Thank you @TennisPlaza 😍 https://t.co/4cFNDnsDmC +12/31/2017,Sports_celeb,@MariaSharapova,I spy...with my little 👁 #ShenzhenOpen https://t.co/uVmBTIvxOn +12/29/2017,Sports_celeb,@MariaSharapova,First practice in Shenzhen.... Hey #SharaFamilyChina 🙋🏼🇨🇳 https://t.co/dYZDwWVylL +12/28/2017,Sports_celeb,@MariaSharapova,Shenzhen arrivals 🇨🇳 https://t.co/ZGY8lXHrF7 +12/24/2017,Sports_celeb,@MariaSharapova,Spice Guuurl https://t.co/FHnqYunrMO +12/24/2017,Sports_celeb,@MariaSharapova,RT @LarissaBatta: In the middle of the Gulf of Mexico enjoying Unstoppable by @MariaSharapova Merry Christmas to you all! https://t.co/ru… +12/22/2017,Sports_celeb,@MariaSharapova,Time flies ❤️ https://t.co/d4dE0LyCDz +12/22/2017,Sports_celeb,@MariaSharapova,"RT @MadalynSklar: Love this quote from @MariaSharapova in @tferriss’ book #TribeOfMentors. + +""’Be original.’ It’s straightforward. It..."" fr…" +12/21/2017,Sports_celeb,@MariaSharapova,🤷🏼‍♀️ https://t.co/zhQVPQYdjm +12/17/2017,Sports_celeb,@MariaSharapova,Sunday's 📸 https://t.co/8AdBGCvg5C +12/17/2017,Sports_celeb,@MariaSharapova,"""Who eats it like that"" 😂Max not entirely happy with how I taste test new @Sugarpova truffles 🍬🍫🍭 https://t.co/bYoA7WdpLo" +12/15/2017,Sports_celeb,@MariaSharapova,RT @Sugarpova: Last minute gift shopping on Amazon? Don't forget to pick up a Sugarpova candy and chocolate. Now part of Prime offering on… +12/15/2017,Sports_celeb,@MariaSharapova,Personalized Air Force 1's at Nike Soho with art inspired lingo 👟 https://t.co/Rdiolze2DX +12/13/2017,Sports_celeb,@MariaSharapova,Getting in the golden Holiday spirit despite the heat wave in Cali! Thanks @evianwater and @KusmiTea for sending yo… https://t.co/3St6bkolfZ +12/08/2017,Sports_celeb,@MariaSharapova,Floyd 🙋🏼📸 https://t.co/uJJbgcs69W +12/07/2017,Sports_celeb,@MariaSharapova,📷 https://t.co/bpRTXvF9QT +12/07/2017,Sports_celeb,@MariaSharapova,Had so much fun designing the Limited Edition @evianwater X MariaSharapova bottle now exclusively sold on… https://t.co/Jub3cIrMdv +11/30/2017,Sports_celeb,@MariaSharapova,A fun afternoon with @PorscheNewsroom at the LA Auto Show. The new 718 Boxster GTS is 😍🚗 https://t.co/1IlhXaPhnD +11/29/2017,Sports_celeb,@MariaSharapova,Hey #LAAutoShow 🤗@Porsche https://t.co/cyaRcGisLN +11/27/2017,Sports_celeb,@MariaSharapova,Thank you 💝 https://t.co/DPY21K3zdb +11/27/2017,Sports_celeb,@MariaSharapova,"Congrats on a phenomenal season @lewishamilton. 🏆 @ Abu Dhabi, United Arab Emirates https://t.co/erX4nHJTA0" +11/26/2017,Sports_celeb,@MariaSharapova,So much fun!! ✌🏻 https://t.co/YYKfjuVzK7 +11/26/2017,Sports_celeb,@MariaSharapova,"24 hours ago in Abu Dhabi at a Cuban themed gala, tonight playing in front of 15,000 spectators in Istanbul. Such a… https://t.co/6PvOPGFDwJ" +11/26/2017,Sports_celeb,@MariaSharapova,😍 https://t.co/ViAL0TmCjj +11/26/2017,Sports_celeb,@MariaSharapova,Of course I don't know where to go... 🙈 https://t.co/PVrILZTSpi +11/25/2017,Sports_celeb,@MariaSharapova,First @F1 race experience ✔️ https://t.co/G9lMaXYsrK +11/25/2017,Sports_celeb,@MariaSharapova,Whoopsie doopsie 🤔 https://t.co/Hbv3a7yC98 +11/25/2017,Sports_celeb,@MariaSharapova,✌🏻 https://t.co/t7NIaD31XW +11/25/2017,Sports_celeb,@MariaSharapova,Look who's here at @F1!! @AussieGrit 🤗@Porsche 🚗 https://t.co/vDrqboALNt +11/25/2017,Sports_celeb,@MariaSharapova,Sticking to our original sports 🤔@nico_rosberg https://t.co/hLSuGoQS9i +11/24/2017,Sports_celeb,@MariaSharapova,💃 https://t.co/a6a8DBfaaJ +11/24/2017,Sports_celeb,@MariaSharapova,Abu Dhabi Louvre designed by Jean Nouvel https://t.co/Zf66WSiYPA +11/24/2017,Sports_celeb,@MariaSharapova,Yessss https://t.co/zrcZCxIAIX +11/23/2017,Sports_celeb,@MariaSharapova,"So excited to play in front of you this weekend, Istanbul. Just heard it is a 13,000 sold out stadium 😱 #SeeYouSoon… https://t.co/BCuN7kmkDc" +11/23/2017,Sports_celeb,@MariaSharapova,❤️ https://t.co/KDbdnkceUy +11/22/2017,Sports_celeb,@MariaSharapova,Up to 500m...how about you?😉 Give it a go here: https://t.co/gioEibqnaK #mountainquest #evian #oversize https://t.co/N5Bih7wWAE +11/21/2017,Sports_celeb,@MariaSharapova,With sleeve or no sleeve 🤔 https://t.co/ai3ETUWpFN +11/21/2017,Sports_celeb,@MariaSharapova,I signed thousands of copies of UNSTOPPABLE just in time for #BlackFriday. Head to @BNBuzz on Friday to get a hand-… https://t.co/1qbeVlCpvW +11/20/2017,Sports_celeb,@MariaSharapova,Toodles ✌🏻✈️ https://t.co/fDML64qtfO +11/18/2017,Sports_celeb,@MariaSharapova,I just ran 300m...can you beat me? 😉 Give it a go here: https://t.co/YG0kSM5f8c #mountainquest #evian #oversize https://t.co/LT14MRuokG +11/18/2017,Sports_celeb,@MariaSharapova,"I got you, Friday 👀 https://t.co/NP8AvicWta" +11/17/2017,Sports_celeb,@MariaSharapova,📸 https://t.co/eqSlNxgM6Q +11/16/2017,Sports_celeb,@MariaSharapova,RT @First1Break: Busy Lil 🐝🐝🐝 #Unstoppable #booksigning #mariasharapova 💙🎾 #first1break #inspired 🏁#thankyouthursday #letsgoplay #girlsdayo… +11/16/2017,Sports_celeb,@MariaSharapova,Started the day with these smiles 😊 https://t.co/d3SPVc0F5p +11/16/2017,Sports_celeb,@MariaSharapova,Thank you 😊 https://t.co/0v84T32XqP +11/15/2017,Sports_celeb,@MariaSharapova,"RT @Sugarpova: Say ""Thank You"" with something Sweet! Free Shipping on https://t.co/r2cLs2PpHe (orders of $30+) Plus all proceeds go direct…" +11/15/2017,Sports_celeb,@MariaSharapova,"Чёрное море, Сочи 😍❤️ https://t.co/9H8oh3qeMO" +11/14/2017,Sports_celeb,@MariaSharapova,🤷🏼‍♀️ https://t.co/KPPbjEITCi +11/14/2017,Sports_celeb,@MariaSharapova,"When you get tricked alongside @JessieJ, Jack Ma, and Nicole Kidman 😱 https://t.co/mQR2J2YhTP" +11/13/2017,Sports_celeb,@MariaSharapova,This is so sweet❤️ #bookclub https://t.co/3QYaTZhImr +11/10/2017,Sports_celeb,@MariaSharapova,RT @AlibabaGroup: Nicole Kidman and @MariaSharapova take the stage at the #Double11 gala! https://t.co/QsK20OYJdH +11/10/2017,Sports_celeb,@MariaSharapova,"About to go live in front of an 300MIL+ tv audience in 🇨🇳 for #Double11 @AlibabaGroup Tune in, I'm in a running co… https://t.co/8nhvuvjBJp" +11/10/2017,Sports_celeb,@MariaSharapova,An honor meeting Jack Ma at @AlibabaGroup #Double11 event today. Thank you for inviting me back to Shanghai! 🇨🇳 https://t.co/CaI8joukKy +11/10/2017,Sports_celeb,@MariaSharapova,Last night at rehearsals for Double 11 event in 🇨🇳...was napping 2 minutes prior to this 📸 so the fog makes sense..… https://t.co/YCPRNywthc +11/08/2017,Sports_celeb,@MariaSharapova,RT @Sugarpova: Back in stock!#sporty https://t.co/R0MHdW0B7E https://t.co/LDvPFzpHUy +11/08/2017,Sports_celeb,@MariaSharapova,"See you soon, Shanghai 🇨🇳 🤗@AlibabaGroup #Double11 https://t.co/RpuaZ1Kjge" +11/07/2017,Sports_celeb,@MariaSharapova,"RT @voguemagazine: ""This is a matter of life and death,"" says @MonicaAce93. https://t.co/pXOSGSVspp" +11/06/2017,Sports_celeb,@MariaSharapova,RT @AlibabaGroup: We're so excited to have @MariaSharapova at our #Double11 gala this year! The countdown to the biggest shopping day in th… +11/03/2017,Sports_celeb,@MariaSharapova,Just in time for the Oscars 🤷🏼‍♀️ https://t.co/0WOtSVR6sL +11/02/2017,Sports_celeb,@MariaSharapova,RT @SportByFort: One of the best brands in sport. Worth reading the @adage article about @MariaSharapova - https://t.co/Fn4TgBL76z https://… +11/02/2017,Sports_celeb,@MariaSharapova,🐢🌊 https://t.co/xgrYvXi6WA +10/31/2017,Sports_celeb,@MariaSharapova,RT @artnet: Is Nike the New Medici? Curator Neville Wakefield Says Brands Are Our 21st Century Patrons: https://t.co/0fAkHkXMkj https://t.c… +10/31/2017,Sports_celeb,@MariaSharapova,Congrats @LewisHowes on your book launch today! I know a few people that could use this book #MaskOfMasculinity 😜 https://t.co/K8XwCEkXe0 +10/31/2017,Sports_celeb,@MariaSharapova,In case you missed it - photos by Robert Trachtenberg from @adage shoot. Story here: https://t.co/2knQyRW4iH https://t.co/CTamKKujkR +10/31/2017,Sports_celeb,@MariaSharapova,When they say you can't do #2inarow for the 🎥...#HORSEchamp 🏆😏 https://t.co/7jrx7KCrqf +10/30/2017,Sports_celeb,@MariaSharapova,Take me there 🙃🙋🏼 https://t.co/6yUfYhI3Ph +10/30/2017,Sports_celeb,@MariaSharapova,RT @Meisarch: Announcing my new partnership with @MariaSharapova today. Very excited to be working with her! https://t.co/vajleFZMjm +10/30/2017,Sports_celeb,@MariaSharapova,"RT @adage: .@MariaSharapova returns to to winning, and building her brands https://t.co/Z9io5tOkk5 https://t.co/IsSlDeStFv" +10/29/2017,Sports_celeb,@MariaSharapova,Reunited #🍟 https://t.co/vDwlTAnH4s +10/27/2017,Sports_celeb,@MariaSharapova,"RT @PlayersTribune: Unidos por Puerto Rico 🇵🇷 + +This week @MariaSharapova and @MonicaAce93 helped distribute supplies in Puerto Rico: https:…" +10/27/2017,Sports_celeb,@MariaSharapova,RT @CNNEE: .@MonicaAce93 y @MariaSharapova apoyan a Puerto Rico tras huracán María https://t.co/xJJ2MvW4W5 https://t.co/45dFxH4zFN +10/26/2017,Sports_celeb,@MariaSharapova,"My @CFDA event diary, as seen in @voguemagazine https://t.co/T9EpbOCdTm" +10/26/2017,Sports_celeb,@MariaSharapova,CFDA Fashion Fund Show/Vogue wearing @DerekLamNYC https://t.co/wfjtVTgt3A +10/26/2017,Sports_celeb,@MariaSharapova,RT @TennisChannel: .@MariaSharapova and @MonicaAce93 lend a hand to Hurricane Maria victims: https://t.co/mPa4RPqwtf https://t.co/ikpiF1sXeg +10/25/2017,Sports_celeb,@MariaSharapova,Thank you! 🇵🇷 https://t.co/zEPAjjUHy5 +10/25/2017,Sports_celeb,@MariaSharapova,"RT @PlayersTribune: On Monday, @MariaSharapova and @MonicaAce93 helped distribute supplies to Hurricane Maria victims. + +How to help: https:…" +10/25/2017,Sports_celeb,@MariaSharapova,Ready for @adage 💃 https://t.co/AgT28YEzt9 +10/24/2017,Sports_celeb,@MariaSharapova,RT @JoshuaJGolden: @MariaSharapova final chat at @adage house. “I launched my new brand Sugarpova because I wanted to have control of a bra… +06/30/2018,Sports_celeb,@MiaHamm,"RT @NWSL: Look who's here! 👋 @HeatherOReilly catches up with @katemarkgraf before her new team takes the pitch. + +#ORLvNC | #NWSL https://t…" +06/30/2018,Sports_celeb,@MiaHamm,RT @slammersfc: National Champions 3 out of the last 4 seasons!!! https://t.co/hP4XMUiCQw +06/29/2018,Sports_celeb,@MiaHamm,RT @DrColleenHacker: https://t.co/3iiPJVgYIc +06/28/2018,Sports_celeb,@MiaHamm,"RT @PlayersTribune: We remember the life of the legendary Pat Summitt today. + +https://t.co/mpEnH5mDno" +06/24/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: Thank you to all the women of The 3252 and LAFC who help bring life to the beautiful game. + +#LAFC +#The3252 +#ShoulderToShould…" +06/24/2018,Sports_celeb,@MiaHamm,RT @caitlinbuckley2: Briana Scurry received a lifetime achievement award from the Black Soccer Membership Association at halftime +06/22/2018,Sports_celeb,@MiaHamm,RT @KristineLilly: So fun to be @Steward event in Salt lake w/ these two @beckysauerbrunn @KyleBeckerman https://t.co/O1lnh3rIQR +06/22/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: ARoooooooo!!!! https://t.co/jvI5Vy1Myn +06/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: WHAT A FINISH! + +On to the @opencup Quarterfinals to host @TimbersFC. https://t.co/goGkCVWKP6" +06/21/2018,Sports_celeb,@MiaHamm,"RT @openStadiums: Women/families finally entered to Azadi stadium after 37 years of ban, to watch #IRNESP on screen. https://t.co/oSBXHMWI…" +06/19/2018,Sports_celeb,@MiaHamm,RT @DrColleenHacker: The Eternal Light Of Tony DiCicco @PositiveCoachUS https://t.co/5lZ0RrUKQk +06/19/2018,Sports_celeb,@MiaHamm,"RT @Lcole22: Still feels like yesterday we lost this great man. An amazing father, coach, leader, my mentor and friend. Miss you everyday.…" +06/19/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: My Dad died a year ago. My brothers and I have spent the last 365 sharing the lessons of his life. As we work to incorpo… +06/19/2018,Sports_celeb,@MiaHamm,"RT @BeastModeSoccer: to me Tony personified a great coach. A phenomenal amount of knowledge, a winner, yet would sit down for a coffee with…" +06/18/2018,Sports_celeb,@MiaHamm,"Congratulations to you and the family , Alex. https://t.co/EtwZzN0yMQ" +06/18/2018,Sports_celeb,@MiaHamm,RT @ussoccer_mnt: Look back on the #USMNT's historic 1950 upset of England through the eyes of Walter Bahr » https://t.co/YXQee9Z3vH https:… +06/18/2018,Sports_celeb,@MiaHamm,RT @FIFAWWC: Wow what a hectic day! Just finished an interview with @EeshFerguson an Aussie International who played at 2 @FIFAWWC and 1 @O… +06/18/2018,Sports_celeb,@MiaHamm,"RT @RobStoneONFOX: Walter Bahr, thank you for all you did to kickstart US Soccer history. Your contributions will be felt for generations.…" +06/18/2018,Sports_celeb,@MiaHamm,RIP Mr Bahr. He was a true gentleman and ambassador of our game. He always took the time to say hello and ask how y… https://t.co/9zoVbQFoV0 +06/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Come support your Club & Country. + +Wear your Black & Gold gear tomorrow to @yeoldekingshead for the official #LAFC @FIFAWorldCup…" +06/17/2018,Sports_celeb,@MiaHamm,RT @LAFC: Happy #FathersDay from LAFC. https://t.co/tbUwTZVwC0 +06/17/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: And a special acknowledgement to my brother Alex, celebrating his First after he and Nicole welcomed Aiden earlier this…" +06/17/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Watch @11carlosV and @miseleccionmxEN take on Germany tomorrow at the official #LAFC @FIFAWorldCup Watch Party. + +📍 The Parlor +📆…" +06/16/2018,Sports_celeb,@MiaHamm,"Congratulations, Aly!! Leading the way. https://t.co/NdfAfOg4qf" +06/16/2018,Sports_celeb,@MiaHamm,RT @alywagner: You guys are the cutest! Thank you for the tears🙈 and thank you for supporting me in this. It is too much. 😘 https://t.co/AT… +06/16/2018,Sports_celeb,@MiaHamm,RT @alexmorgan13: I’d like to thank the soccer gods for blessing us with beautiful soccer for the last 90 minutes. #PORvESP +06/15/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: TeamFirst is heading to @BerkySoccer in 9. days. Very few spots are left, but if you are a female soccer player going into…" +06/15/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Wear your Black & Gold gear and come support your Club & Country. + +Join us at the #LAFC @FIFAWorldCup Watch Parties. + +💻 https://…" +06/15/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Immigrants Feed America +w @chefjoseandres https://t.co/AydEDGiDoF" +06/15/2018,Sports_celeb,@MiaHamm,What team plays this formation? https://t.co/qL56RhsAb4 +06/15/2018,Sports_celeb,@MiaHamm,"RT @Dodgers: Just announced: @LAFC Night at Dodger Stadium on August 20! + +Purchase a ticket pack at https://t.co/057G22NH4S to get this exc…" +06/15/2018,Sports_celeb,@MiaHamm,RT @MenInBlazers: Godspeed to @RobStoneONFOX and @AlexiLalas and all our colleagues at Fox. To broadcast a World Cup is both an honor and a… +06/13/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: I so love this. I second everything here @Catchin24. #pureclass https://t.co/GMtoe3OPGp +06/13/2018,Sports_celeb,@MiaHamm,RT @ussoccer_mnt: 1994 laid the foundation. 2026 will ignite the passion of a new generation. Welcoming the @FIFAWorldCup back to our home… +06/13/2018,Sports_celeb,@MiaHamm,"RT @united2026: Diego Lainez 🇲🇽 +Brianna Pinto 🇺🇸 +Alphonso Davies 🇨🇦 + +The future of our game knows no limits in North America. #United2026 h…" +06/13/2018,Sports_celeb,@MiaHamm,"RT @FOXSoccer: What a moment! + +@AlexiLalas and @RobStoneOnFOX give their immediate reaction to the USA-Mexico-Canada united bid winning th…" +06/13/2018,Sports_celeb,@MiaHamm,Congrats to the entire committee for your tireless work . https://t.co/siR6UhiMs2 +06/13/2018,Sports_celeb,@MiaHamm,"RT @ESPNFC: The moment Canada, Mexico and the U.S. discovered they would be hosting the 2026 World Cup. https://t.co/BNnAbF9EFh" +06/13/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: 👑s of @Concacaf! + +Introducing your undefeated 2018 #CU17W Champions! 🏆🎉 https://t.co/rqA97L9yDg" +06/12/2018,Sports_celeb,@MiaHamm,RT @EeshFerguson: Absolute magician and the reason I started supporting the Gunners. https://t.co/PLmcXJ0s5w +06/11/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: 🎶 We're going to the 'ship! 🎶 + +U-17 WWC berth clinched, now we play for the #CU17W 🏆 on Tuesday! https://t.co/AvebPTy0oZ" +06/11/2018,Sports_celeb,@MiaHamm,RT @Concacaf: Haiti 2 - 3 United States Highlights | @fhfhaiti @ussoccer #CU17W https://t.co/xVBuwOgFxm +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: INSANE! + +#The3252 +#LAFC +#ShoulderToShoulder https://t.co/uRn15msvcv" +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC: COMING HOME WITH 3 POINTS + +#SJvLAFC https://t.co/4GHOGXWoOB" +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC: 90+7’ | GOOOOOOOOOAAALLLL JOAO MOUTINHO!! + +MOUTINHO and LAFC have stolen 3 points in San Jose! + +#SJvLAFC 3-4 https://t.co/ouEsj…" +06/09/2018,Sports_celeb,@MiaHamm,RT @ChancellorFolt: Congratulations @DiamondHeels! What a game - onward to OMAHA! #GDTBATH https://t.co/D9oIaVQ92S +06/09/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Congratulations to @warriors and #LAFC owners Peter Guber, Kirk Lacob, Harry Tsao, Rick Welts, and Brandon Schneider on another @…" +06/08/2018,Sports_celeb,@MiaHamm,"RT @cnnbrk: Anthony Bourdain is dead. The chef, storyteller and Emmy-winning host of CNN's ""Parts Unknown"" is dead of suicide at age 61. ht…" +06/08/2018,Sports_celeb,@MiaHamm,"RT @CBSSports: He'll never forget it. Washington will never forget it. Hockey will never forget it. + +Ovi, finally, lifts the Cup. https://…" +06/07/2018,Sports_celeb,@MiaHamm,"RT @NWSL: 3️⃣6️⃣5️⃣ days to go until the first kick of #FIFAWWC! + +Everything you need to know ➡️ https://t.co/UvWoTsUSnt https://t.co/XqvIP…" +06/07/2018,Sports_celeb,@MiaHamm,"I miss my coach, I miss my friend. https://t.co/1ReR5I0WgL" +06/07/2018,Sports_celeb,@MiaHamm,"RT @ASRomaEN: A love that transcends time, a passion beyond measure. 💛❤️ + +Happy birthday #ASRoma, 91 years young! 🐺 https://t.co/PZsK0zLJFb" +06/07/2018,Sports_celeb,@MiaHamm,RT @KristineLilly: Thank you to my hometown for this wonderful honor and great to meet these young strong girls! #WiltonCt. #hometown https… +06/07/2018,Sports_celeb,@MiaHamm,RT @Ath4Hope: Wow! https://t.co/MYYEqHHzuw +06/04/2018,Sports_celeb,@MiaHamm,"RT @LAFC: It's official: @11carlosV and @omargaber are headed to the @FIFAWorldCup. + +🇲🇽🇪🇬 https://t.co/baifg9Sk8k https://t.co/w5AmHUagAn" +06/01/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: One week until #CU17W resumes in Florida! Three games stand between the U-17 #USWNT and the World Cup. + +https://t.co/vyyX…" +06/01/2018,Sports_celeb,@MiaHamm,"RT @anthonydicicco: Is there a soccer club (youth or adult) in Flint, Michigan? Who knows someone? Or knows someone who knows someone? I wa…" +05/31/2018,Sports_celeb,@MiaHamm,"RT @GrantWahl: Congrats to new National Soccer Hall of Fame members: Brad Friedel, Tiffeny Milbrett, Cindy Parlow Cone, Don Garber, Dr. Bob…" +05/31/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: MOOD! #USWNT #NSHOF18 https://t.co/06tZX1WB4m +05/31/2018,Sports_celeb,@MiaHamm,"Congrats, Millie. So skilled, so smooth, and so deserving of this honor. 👏🏼🇺🇸 https://t.co/rlTgm6gUUY" +05/31/2018,Sports_celeb,@MiaHamm,RT @katemarkgraf: I am so excited and honored to be inducted into… https://t.co/bXfls31jTW +05/31/2018,Sports_celeb,@MiaHamm,"RT @ncwomenssoccer: It's a great day to be a Tar Heel. Congratulations to 3-time National Player of the Year, 2-time NCAA champion and 2-t…" +05/31/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_wnt: The @soccerhof came calling! + +Congrats to World Cup Champ and two-time Olympic 🥇 medalist @cone_cindy on her #NSHOF18 ind…" +05/31/2018,Sports_celeb,@MiaHamm,RT @katemarkgraf: Honored to be part of class of @MSHOF 2018 https://t.co/Lwm9YD0F8q +05/30/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Amazing. https://t.co/MOdKcM54UG +05/30/2018,Sports_celeb,@MiaHamm,"RT @AbbieNews8: “I believe I can beat cancer, I believe in magic”- this brave princess Kalea has a rare form of Leukemia. Since she is mixe…" +05/30/2018,Sports_celeb,@MiaHamm,RT @RandyGyllenhaal: We are spending this morning with Sydney — a 17-year old suffering from Leukemia in Philly. She wants to go to nursing… +05/29/2018,Sports_celeb,@MiaHamm,"RT @AmericanOutlaws: Congrats to @cpulisic_10 our 2017 member-voted AO #USMNT Player of the Year! + +#HereForTheFuture #PuliSICK https://t.c…" +05/28/2018,Sports_celeb,@MiaHamm,RT @LeeNguyen24: Lesgoooo @thewalkerzim what a header! 🇺🇸🇺🇸 +05/28/2018,Sports_celeb,@MiaHamm,RT @RobStoneONFOX: One of my all time favorites when I covered the Mutiny https://t.co/L6JmurrSck +05/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Today and every day, we remember and honor those who gave their lives defending our country. + +#MemorialDay https://t.co/PombDQt2…" +05/27/2018,Sports_celeb,@MiaHamm,"RT @TRongen: While several very generous, loving people have stepped up to be tested for kidney donation, still NO MATCH has been found for…" +05/26/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Matchday 12. + +Gates Open - 5:30pm +Showtime - 6:45pm +Kick Off - 7pm + +#LAFCvDC https://t.co/8jBkPUFITd" +05/26/2018,Sports_celeb,@MiaHamm,RT @Dodgers: Sisters and Olympians @hannahbrandt16 and @marissabrandt22 are here tonight for the #Dodgers’ Sixth Annual Adoptee Night! http… +05/23/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: This just in: The Chef is catering the group date and joining us at the show 😋 +#MoreOfUs +https://t.co/pFmd0rCfKU https://t.…" +05/22/2018,Sports_celeb,@MiaHamm,"So excited to celebrate all the amazing student/athletes tonight in Jackson,MS for the Clarion Ledger Sports Awards." +05/22/2018,Sports_celeb,@MiaHamm,"RT @LAFC: See you tonight, @BVB. + +Catch #LAFCvBVB ⬇️ https://t.co/Zs1ZmwaH2l" +05/21/2018,Sports_celeb,@MiaHamm,"RT @ExtremeSRO: This is one of the most EPIC speeches I’ve ever heard. Thank you @AbbyWambach for reminding us that we are WOLVES, and for…" +05/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Tomorrow night. + +Don't miss #LAFC vs. @BVB at @BancStadium. + +🎟 https://t.co/aYdbx6ciPc + +(🎥 @COPA90US) https://t.co/sEvFRj7BAj" +05/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: 🇧🇪 Congrats, @LaurentCiman23! 🇧🇪 https://t.co/nqCY98fVEF" +05/21/2018,Sports_celeb,@MiaHamm,"RT @FCBarcelona: A legend departs and his legacy begins +#infinit8iniesta https://t.co/AEpefaJQVv" +05/21/2018,Sports_celeb,@MiaHamm,RT @sportsiren: Started crying when I saw this giant @MooreMaya billboard downtown Minneapolis. “No bird soars too high when she soars with… +05/20/2018,Sports_celeb,@MiaHamm,"This ride is for you,Tony! Miss you! @TourdePier 2018 https://t.co/Tf6M7WIYMc" +05/20/2018,Sports_celeb,@MiaHamm,I spy @RobStoneONFOX on stage of @TourdePier . Ride On. +05/20/2018,Sports_celeb,@MiaHamm,Mr @AlexiLalas doing his part @TourdePier https://t.co/wI9wJ65OlN +05/20/2018,Sports_celeb,@MiaHamm,Here in MB and @TourdePier kicking cancer's ass! https://t.co/sGYf9BS9Sm +05/20/2018,Sports_celeb,@MiaHamm,"RT @TourdePier: The big weekend is here!!! Tomorrow we ride to remember those we’ve lost, to celebrate those fighting cancer and to work to…" +05/19/2018,Sports_celeb,@MiaHamm,RT @uncwlax: FINAL FOUR BOUND! Carolina will make its 7th trip to the NCAA semifinals in 10 years. https://t.co/hUHABmUDG7 +05/18/2018,Sports_celeb,@MiaHamm,"RT @CNN: When doctors told him his blood has unique, disease-fighting antibodies, he started donating plasma every week. For 60 years. He’s…" +05/16/2018,Sports_celeb,@MiaHamm,I'm in! https://t.co/WeDJGCQaeV +05/15/2018,Sports_celeb,@MiaHamm,RT @BeTheMatch: Another #ProGolfer just swung into our life-saving mission and joined the registry! Thanks @JordanSpieth…we think you’re pr… +05/15/2018,Sports_celeb,@MiaHamm,"RT @LAFC: ""It's the best feeling in the world."" + +@MarcoUrenaCR on making the @FIFAWorldCup roster for @fedefutbolcrc. https://t.co/LFDawFRq…" +05/14/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: And January 26th, she became a Grandmother to Aiden and she’s incredible at that too! We’re blessed. https://t.co/Sli0TY…" +05/13/2018,Sports_celeb,@MiaHamm,"RT @NWSL: ""It just makes me appreciate what mothers are capable of doing and, I guess, how strong we are."" + +@lifetimetv x @sydneyleroux htt…" +05/11/2018,Sports_celeb,@MiaHamm,"RT @SeedsofPeace: ""With enough faith, time, and tending, the Seeds you all planted will grow, and our children and grandchildren will till…" +05/09/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: YES. YES. YES. The General is the ultimate pro and just so SILKY SMOOTH. Congrats Bob! https://t.co/AJJyq150MA +05/09/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: @thegoalkeeper Thanks for sharing Jonathan. Nice of the @sportsemmys to recognize him. Our family is grateful. +05/09/2018,Sports_celeb,@MiaHamm,"RT @mimiv42: Soccer legend Zhang Ouying is fighting serious illness, please spread the word in the soccer community. She has been devoted…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @BAWSI: In case you weren't able to join us at our event Friday, here is the video we premiered showcasing both our BAWSI Girls and BAWS…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @si_soccer: Along with Fox's Aly Wagner, Telemundo’s Viviana Vila is set to break a broadcast barrier for women by calling a men's World…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @LAFC: More ⚽️ in the Heart of Los Angeles. + +Thank you to everyone who helped build a brand new futsal court at Menlo Avenue Elementary…" +05/08/2018,Sports_celeb,@MiaHamm,RT @espn: This moment between Jrue Holiday and his daughter is everything 😍 https://t.co/cvu8nocYBb +05/06/2018,Sports_celeb,@MiaHamm,RT @ASRomaEN: Club president Jim Pallotta and all at #ASRoma are hoping and praying Sir Alex Ferguson makes a full and speedy recovery afte… +05/05/2018,Sports_celeb,@MiaHamm,RT @moyadodd: Another record broken.... 'cos nobody wants to watch women play football 😉⚽️❤️ #womensfootball https://t.co/BQLWfZ7B2i +05/05/2018,Sports_celeb,@MiaHamm,"RT @AimeeCho4: ""I'M JUST SO THANKFUL"": 19-year-old leukemia survivor Carly Nguyen meets Gerard Bao, the bone marrow donor who saved her lif…" +05/04/2018,Sports_celeb,@MiaHamm,"RT @TourdePier: 12-year-old, 2-time cancer fighter Marley & her family know that the Tour de Pier is more than just an event, it is an amaz…" +05/02/2018,Sports_celeb,@MiaHamm,Congrats!! https://t.co/6KDBpAOwKQ +05/02/2018,Sports_celeb,@MiaHamm,RT @LAFC: Skydive into our home-opener at @BancStadium with the @NavyLeapFrogs! https://t.co/VWLCLV7S23 +05/01/2018,Sports_celeb,@MiaHamm,RT @LAFC: #LAFC and @LAFC3252 do not support or condone the use of offensive language and inappropriate chants. We stand shoulder to should… +04/30/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: I was told Mia is the only female owner in @MLS when in fact there are 3 others (& hopefully that # keeps growing). Kay Raw… +04/30/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Los Angeles, we’re home. + +#LAFCComesHome https://t.co/Fkvu9ShVxM" +04/30/2018,Sports_celeb,@MiaHamm,"RT @BeastModeSoccer: Today we said goodbye, but we know you will always be with us. You made me a better person. Siempre mi hermano. #LoveT…" +04/30/2018,Sports_celeb,@MiaHamm,"RT @LAFC: #LAFCvSEA Player spotlight @LaurentCiman23 + +Presented by @McDonalds https://t.co/rJQ82EGtzP" +04/29/2018,Sports_celeb,@MiaHamm,Game day @LAFC and @BancStadium ! Can't wait to hear @LAFC3252 at our home. We are LAFC! +04/29/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Where to watch #LAFCvSEA + +📆 Today, 4/29 +⏰ 6 PM +📺 @FS1 (ENG) +📺 @FOXDeportes (SP) +📻 @ESPNLosAngeles 710 (ENG) +📻 @980lameramera (S…" +04/29/2018,Sports_celeb,@MiaHamm,RT @PeterGuber: our goal has been to make @LAFC a club that reflects the lifeblood of #LosAngeles … the creativity resilience energy and pa… +04/29/2018,Sports_celeb,@MiaHamm,RT @pkedit: Friday's Tigres-Monterrey game (Liga MX Femenil) set a modern record for the largest crowd at a domestic women's match. Seven o… +04/28/2018,Sports_celeb,@MiaHamm,"RT @socceramerica: Sarina Wiegman, former @ncwomenssoccer teammate of @MiaHamm of @KristineLilly, is steering Dutch women's team to new hei…" +04/28/2018,Sports_celeb,@MiaHamm,"RT @T3Aus: The legends are humble. And that’s why they’re greats of the game + +“When I was 13 years old, my father fled his salary for 3 mon…" +04/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: In loving memory of #23 Tommy Mark, an original member of the first @LAFCAcademy team in Club history. + +To donate to the Tommy M…" +04/27/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: This is the real stuff from @Jrue_Holiday11! When you know what matters and you infuse love into everything you do, you…" +04/27/2018,Sports_celeb,@MiaHamm,RT @NBCSports: .@usahockey's @HilaryKnight showed her grandma her gold medal and the reaction was ❤️❤️ https://t.co/HGON4jly51 +04/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: Thanks for the housewarming party @lafc, you haven’t seen anything yet. On Sunday, Los Angeles will never be the same. +#Shou…" +04/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Let's all have fun on Sunday. + +Please be safe and respectful and abide by the Fan Code of Conduct. + +📰 https://t.co/4OjyCSwQX2 + +#L…" +04/25/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: So grateful for moments like this one from February, 2017. My thoughts and prayers are with Dick’s family. His wife is o…" +04/25/2018,Sports_celeb,@MiaHamm,RT @11carlosV: Estoy listo para jugar con los @Dodgers ⚾️⚾️⚾️ ( no la llegue 🤣🤣🤣) https://t.co/s9djTY6CPD +04/25/2018,Sports_celeb,@MiaHamm,"RT @JulieFoudy: Yes indeed. And all for a great cause. Maybe even @brandichastain will re-enact Rose Bowl July 10, 1999. #justsayin https:/…" +04/23/2018,Sports_celeb,@MiaHamm,"RT @LAFC: What's in store at our home-opener this Sunday. + +The #LAFC Watch Party at @BancStadium, presented by @Delta and @Aeromexico https…" +04/22/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Shoulder to shoulder at @BancStadium + +#LAFC https://t.co/MB4p95X2JR" +04/22/2018,Sports_celeb,@MiaHamm,RT @BeastModeSoccer: Thank you @LAGalaxy for Tommys minute of applause. Respect 👊 https://t.co/WjESffJ4NW +04/22/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: When she played she didn’t talk much. But when she did, her teammates listened. Now, she doesn’t tweet much, but Joy is…" +04/21/2018,Sports_celeb,@MiaHamm,RT @frankmSounders: #OTD 1998 – FIFA announce that Seattle's Michelle Akers–still an active player who would win a 2nd WC a year later–to r… +04/21/2018,Sports_celeb,@MiaHamm,RT @LAFC: LAFC complete the comeback in Montreal to end a six-game road trip with four wins. https://t.co/s5FuvzTXkm +04/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Fulltime whistle. + +#MTLvLAFC 3-5 https://t.co/nudVKqSNsV" +04/21/2018,Sports_celeb,@MiaHamm,RT @WSUasa: Kelly Smith has Chance to Score and then Heads the ball to Raul to score the opening Goal in the Match for Solidarity featuring… +04/21/2018,Sports_celeb,@MiaHamm,RT @ussoccer_wnt: RT if this made you smile 😊 https://t.co/NbCvv20XBn +04/20/2018,Sports_celeb,@MiaHamm,RT @RobStoneONFOX: This hurts. Bad. https://t.co/4jHGNtvlD9 +04/20/2018,Sports_celeb,@MiaHamm,RT @LAFC3252: The time has finally arrived! Meet your fellow #LAFC supporters as The 3252 marches with chants and drums into our new home b… +04/20/2018,Sports_celeb,@MiaHamm,"RT @UEFA: Tomorrow, a galaxy of stars, both men and women, will line up in support of charity at the first ever #MatchForSolidarity in Gene…" +04/20/2018,Sports_celeb,@MiaHamm,RT @TomPennLAFC: The Banc getting louder and louder by the second! #LAFC #the3252 https://t.co/Iz9ezO3Ul6 +04/19/2018,Sports_celeb,@MiaHamm,RT @ussoccerfndn: ICYMI- #USWNT stars @lindsaytarpley and @LoriLindsey6 recently joined our team as ambassadors! Check out their bios: http… +04/18/2018,Sports_celeb,@MiaHamm,"RT @ExpoOriginals: We are heartbroken to hear of the passing of young Tommy Mark + +Tommy was an LAFC Academy original, responsible for some…" +04/18/2018,Sports_celeb,@MiaHamm,RT @MayorOfLA: L.A. is a global sports capital — and a city where teams find a home and put down roots. Congratulations @LAFC on opening yo… +04/18/2018,Sports_celeb,@MiaHamm,RT @LAFC: First training at @BancStadium 👌 https://t.co/IddtoXpwuA +04/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: We couldn't have done this without you, @MayorOfLA! https://t.co/TF1k2LBrcf" +04/18/2018,Sports_celeb,@MiaHamm,RT @MagicJohnson: .@LAFC @BancStadium https://t.co/HirIe51IDP +04/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Good to be home. + +#LAFC https://t.co/EqxAaeWinL" +04/18/2018,Sports_celeb,@MiaHamm,RT @BarackObama: Our statement on the passing of Former First Lady Barbara Bush: https://t.co/MhTVYCL9Nj +04/18/2018,Sports_celeb,@MiaHamm,RT @matthewamiller: This was such a moving tribute by @NicolleDWallace. https://t.co/HXAAfcGrLz +04/18/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: Tomorrow. Register for this one. Can't begin to tell you how much I've learned from @BeastModeSoccer over the past 5 yea… +04/17/2018,Sports_celeb,@MiaHamm,We will be cheering you on! Go USA! https://t.co/DjLWINEkeU +04/17/2018,Sports_celeb,@MiaHamm,"RT @AlyssaNaeher: Absolutely one of the best, love this! 🙌😊 https://t.co/De56GCsKdH" +04/17/2018,Sports_celeb,@MiaHamm,"RT @TeamUSA: In true @TatyanaMcFadden fashion, the Paralympic legend claims her 5️⃣TH #BostonMarathon win AND record-setting 22nd victory i…" +04/16/2018,Sports_celeb,@MiaHamm,"RT @NBCOlympics: .@TatyanaMcfadden wins her 5th #BostonMarathon push rim race! + +Catch all the action NOW on @NBCSN https://t.co/7X5j8UX9gM" +04/15/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: https://t.co/P6CthFCVJF +04/14/2018,Sports_celeb,@MiaHamm,RT @LAFC: Back on track. https://t.co/rpcahyYJ9K +04/12/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: Less than 4 weeks away from our camp in Knoxville, TN. Let's keep the momentum going from our great camp last weekend in H…" +04/12/2018,Sports_celeb,@MiaHamm,"RT @LAFC: One Club. One family. + +#LAFC https://t.co/9snowhXE4k" +04/11/2018,Sports_celeb,@MiaHamm,RT @Yael_Averbuch: Our game on May 5 in Portland is part of a fundraiser for the Crohn’s & Colitis Foundation! Nearly 1 in 200 Americans li… +04/11/2018,Sports_celeb,@MiaHamm,RT @sethmeyers: Just the best https://t.co/P2RU7UD2vj +04/11/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Talia!!!!!! https://t.co/dXxCoN1ptP +04/10/2018,Sports_celeb,@MiaHamm,"RT @ASRomaEN: 83' - GOOOOOOOAAAAAAAAAAALLLLLLLLLLLL!!!!!!!!!!!! KOOOOOOSTTAAAAASSSS!!!!!! YEEEEEEEEEEEEEESSSSSSSSS!!!!!!!!!!! + +#RomaBarca…" +04/10/2018,Sports_celeb,@MiaHamm,RT @LRUWSOC: Amazing experience having the @TeamFirstSA on LR's campus this weekend. 🐻⚽️ #teamfirst #gobears #soccerlegends @KristineLilly… +04/09/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: Thank you Hickory! What an awesome weekend of camp. Swipe➡️to see our campers of the day,… https://t.co/h1UEymt3Er" +04/08/2018,Sports_celeb,@MiaHamm,RT @ChancellorFolt: Today friends & family came together to celebrate & remember the remarkable life & legacy of the legendary Woody Durham… +04/08/2018,Sports_celeb,@MiaHamm,Congrats @CarliLloyd on 100. Amazing accomplishment. Go USA! +04/08/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: This is amazing. Coyner!!!! https://t.co/H8gB07nOQi +04/07/2018,Sports_celeb,@MiaHamm,"RT @MonAfterMasters: The Dye Club at Barefoot Resort is looking 💯 per usual! Getting ready for the MOST FUN DAY of the YEAR! +#MAM2018 https…" +04/07/2018,Sports_celeb,@MiaHamm,RT @JSB_TV: I used to live in Saskatchewan and cover the Humboldt Broncos. I always felt enveloped in the widespread love and support from… +04/06/2018,Sports_celeb,@MiaHamm,RT @moyadodd: Another historic moment in Jordan ... the Women's Asian Cup comes to West Asia #WAC2018 ⚽️❤️ https://t.co/dgUQjrVZI1 +04/05/2018,Sports_celeb,@MiaHamm,Here we go @ussoccer_wnt ! +04/05/2018,Sports_celeb,@MiaHamm,"RT @EPFinitiative: After a 90km football trek across Jordan to promote gender equality in sport, on April 5 we’ll play a match at the lowes…" +04/05/2018,Sports_celeb,@MiaHamm,"RT @NWSL: Raise your hand if you're ready for #USAvMEX tonight. + +⏰ 7:30 p.m. ET +🏟️ @EverBankField +📺 @FS1/UDN + +🇺🇸 roster: https://t.co/w…" +04/05/2018,Sports_celeb,@MiaHamm,RT @EPFinitiative: It’s game day! 🇺🇸: Tune into @SportsCenter at 745am ET/145pm Jordan time see our players right before we kickoff and set… +03/31/2018,Sports_celeb,@MiaHamm,RT @LAFC: .@LAFC3252 is ready 👌 https://t.co/2lSC0NlBt8 +03/31/2018,Sports_celeb,@MiaHamm,RT @NWSL: #NWSL ❌ 3️⃣ for you today. https://t.co/dxwAVJCdA2 +03/31/2018,Sports_celeb,@MiaHamm,RT @MyaMelody7: I really hope more people become familiar with @gracewebermusic.. her new track is heavenly. https://t.co/gSYpjF47Ov +03/31/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Have fun tomorrow. + +Be loud and be safe. ✌️ https://t.co/wOUM3zObe3" +03/28/2018,Sports_celeb,@MiaHamm,Legend! https://t.co/7m7PhNnyHn +03/28/2018,Sports_celeb,@MiaHamm,RT @MLS: Happy birthday to the one and only Matt Reis! 🎉 https://t.co/nbybB5gQjp +03/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Come by to grab some #LAFC gear and meet @Tymiller01, @thewalkerzim, @CMallace10, and @aokovar! https://t.co/4dgMYTl82q" +03/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC: .@AndreHorta8 is Black & Gold. + +@SLBenfica ➡️ #LAFC + +📰 https://t.co/SYO2IrENp1 https://t.co/HEaQUh5mKo" +03/27/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_mnt: Good morning from Cary! Settle in for 90 minutes tonight on @FS1, @UniMas & UDN. Match preview » https://t.co/nmrZl5qQ6t…" +03/27/2018,Sports_celeb,@MiaHamm,"RT @SoccerGrlProbs: #Repost @rubytex.soccer +・・・ +Who else is PUMPED for the new SGPxNIKE shirts?! 🙋🏼😍Go get yours at https://t.co/iwaPWut5j…" +03/26/2018,Sports_celeb,@MiaHamm,RT @RobinRoberts: Incredibly thankful to all those who register to be a bone marrow donor. Unfortunately almost half don't go through w/ th… +03/25/2018,Sports_celeb,@MiaHamm,"RT @SportsCenter: Not long after leading Butler to back-to-back NCAA title games, Andrew Smith lost his fight with cancer. Today his legacy…" +03/25/2018,Sports_celeb,@MiaHamm,RT @longlivekcx: I know for a fact coach feis would be so proud of all of us. https://t.co/xySzuB5tBW +03/24/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Good morning. +I’m really trying not to sing @BenSPLATT’s part today. +#MarchForOurLives #FoundTonight https://t.co/nScP5kDX…" +03/24/2018,Sports_celeb,@MiaHamm,RT @mariaCBS5: Meet Baby Bruno. He was born with a rare immunodeficiency condition that attacks the blood cells. Only a bone marrow transpl… +03/24/2018,Sports_celeb,@MiaHamm,RT @longlivekcx: happy birthday to this sweet angel. Today I march for you. #marchforourlives #neveragain https://t.co/fc6cfAFImh +03/23/2018,Sports_celeb,@MiaHamm,RT @NCFC_Youth: We're excited to welcome former @ussoccer_wnt team player and @NWSL coach @cone_cindy as the newest member of our #NCFCFam!… +03/23/2018,Sports_celeb,@MiaHamm,RT @alywagner: And so it begins. 🤩 https://t.co/XJLyaH5Ip7 +03/22/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_wnt: ⏰ 92nd minute +⚖️ Tie game +🤯 @laurenholiday12 + +#USAvMEX renews two weeks from tonight in Jacksonville » https://t.co/Tg55m…" +03/22/2018,Sports_celeb,@MiaHamm,RT @Lin_Manuel: Yeah we will. #MarchForOurLives https://t.co/wIm1YjjEHP +03/21/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Go get it sister! This is so great... congrats! https://t.co/eUsO6nqdkV +03/21/2018,Sports_celeb,@MiaHamm,RT @Austin_Police: APD is asking the public to remain vigilant and report anything suspicious. If you come across ANYTHING that looks suspi… +03/21/2018,Sports_celeb,@MiaHamm,RT @SportsCenter: He's waited his whole life for this moment! #SCtop10 https://t.co/rSIFefLNAC +03/21/2018,Sports_celeb,@MiaHamm,RT @mduggan10: 👏🏻👏🏻👏🏻👏🏻 https://t.co/q7iNUqv5Rd +03/20/2018,Sports_celeb,@MiaHamm,"RT @BeTheMatch: In 2016, Riley was diagnosed with Acute Lymphoblastic Leukemia (ALL) and is searching for her match. Riley is known for he…" +03/20/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Good morning 🌍! +Here's the music video for Found/Tonight, your March #Hamildrop! +#MarchForOurLives #FoundTonight +https://t…" +06/23/2018,Sports_celeb,@HollyHolm,Such a fun day!!!! Getting dunked with my peeps @JacksonWinkMMA for incredablemma . https://t.co/6GJ4iUJOkv +06/23/2018,Sports_celeb,@HollyHolm,Come join me now @JacksonWinkMMA !! Fundraiser for incredablemma ! I’ll be there til 2! I’m getting dunked in the d… https://t.co/287YDzcS2h +06/23/2018,Sports_celeb,@HollyHolm,⚔️ 🗡 🤷🏼‍♀️🤷🏼‍♀️ https://t.co/bINNy9UgbG +06/22/2018,Sports_celeb,@HollyHolm,My first time to do 3 muscle ups in a row and I was just kinda proud. Now time to work on 4.. 😁 #flexfriday teamtur… https://t.co/LTRbiEvTNx +06/22/2018,Sports_celeb,@HollyHolm,My first time to do 3 muscle ups in a row and I was just kinda proud. Now time to work on 4.. 😁 #flexfriday teamtur… https://t.co/tWQnPgfJSc +06/21/2018,Sports_celeb,@HollyHolm,I was told it was as #internationalselfieday… https://t.co/VB2b22H9PJ +06/21/2018,Sports_celeb,@HollyHolm,Suuuuuuper duuuuuper movie!!!! Got to watch… https://t.co/JPzNSWGKcx +06/19/2018,Sports_celeb,@HollyHolm,These Sandia mountains have the best trails. I… https://t.co/eqBxOtV8rN +06/19/2018,Sports_celeb,@HollyHolm,These Sandia mountains have the best trails. I… https://t.co/Kq1sy6mhn9 +06/17/2018,Sports_celeb,@HollyHolm,Happy Father’s Day:) I was blessed with the… https://t.co/z5EsFrputT +06/16/2018,Sports_celeb,@HollyHolm,POSTPONED!!!!!! incredablemma is having a… https://t.co/GMgMhTsqUV +06/15/2018,Sports_celeb,@HollyHolm,I’m getting dunked tomorrow at noon for Adaptive… https://t.co/mfnxwhg06A +06/13/2018,Sports_celeb,@HollyHolm,Feeling happy and enjoying my Wednesday. Wishing… https://t.co/3BeQuv2meo +06/11/2018,Sports_celeb,@HollyHolm,🚤 #sundayfunday https://t.co/Vru60H9lDO +06/10/2018,Sports_celeb,@HollyHolm,Too much love ❤️ https://t.co/Gncqm1weg5 +06/10/2018,Sports_celeb,@HollyHolm,Not enough words to express. I just love my… https://t.co/Wzg3ICHJZm +06/07/2018,Sports_celeb,@HollyHolm,Best open workout partner.....EVER!! #ufc225… https://t.co/VFWBeW0YKg +06/07/2018,Sports_celeb,@HollyHolm,Best open workout partner....... EVER!!!!… https://t.co/cAh3s4XbzL +06/05/2018,Sports_celeb,@HollyHolm,Leaving to Chicago with good feels 🤗 thank you… https://t.co/DuO1qz9ugz +06/02/2018,Sports_celeb,@HollyHolm,Best coach in the world. 👊🏼@mmacoachwink .. last… https://t.co/GwKfs96MRY +05/25/2018,Sports_celeb,@HollyHolm,My little lion 🦁 https://t.co/4OcjZypxdp +05/23/2018,Sports_celeb,@HollyHolm,Just finished a great run in the foothills in… https://t.co/j6BsGN5Sx7 +05/22/2018,Sports_celeb,@HollyHolm,Hope everyone is having a Great Monday! Hope you… https://t.co/ZzRrP8bjV5 +05/01/2018,Sports_celeb,@HollyHolm,“What do you do for strength training?” Is always a common question. I do a… https://t.co/GkXieQCJNt +04/25/2018,Sports_celeb,@HollyHolm,Can’t tell you how much I appreciate the gifts! I am ready to get to work! Here are some… https://t.co/t9TVjimmjE +04/24/2018,Sports_celeb,@HollyHolm,On my way to the local press conference to talk about my upcoming fight #ufc225 in Chicago June… https://t.co/82fb8pNlqA +04/17/2018,Sports_celeb,@HollyHolm,My bud. https://t.co/zLQOxvioHR +04/15/2018,Sports_celeb,@HollyHolm,We here! @jtimberlake #cantstopthefeeling https://t.co/M0mVVwexOR +04/13/2018,Sports_celeb,@HollyHolm,Thursday night looks a little like this 😜 I know I’ve said it a ton ...but... I’ll say it… https://t.co/d3p7A0d30F +04/11/2018,Sports_celeb,@HollyHolm,#happysiblingsday best friends since day one. I am blessed. 🙂they even loved me even when I had… https://t.co/VgqW2ZzUBA +04/04/2018,Sports_celeb,@HollyHolm,"I loved being part of @tiffanyandco and sharing what I feel is strength.. +Strength has many… https://t.co/ghG3qxJOb0" +03/30/2018,Sports_celeb,@HollyHolm,Such a tragedy. Our friends are looking for their son. They went to Fort Morgan for spring break… https://t.co/qkXSPtupUC +03/30/2018,Sports_celeb,@HollyHolm,Late night boxing rounds with the team. Love this team... this family 🙂 https://t.co/JBVPzaz5zM +03/29/2018,Sports_celeb,@HollyHolm,RT @IzzyStyle: Who wants to wrestle on new @DollamurWrestle mats? @HollyHolm @JonnyBones @Cowboycerrone @Showtimepettis @sergiopettis @FloW… +03/26/2018,Sports_celeb,@HollyHolm,My credit card got stolen yesterday and I totally forgot I cancelled it until I went to pay for… https://t.co/mfzLIKxxJt +03/23/2018,Sports_celeb,@HollyHolm,Friends for over 30 years. #blessed with these beautiful souls kaholden3 irishpacker13 https://t.co/H4oJH3D1vn +03/03/2018,Sports_celeb,@HollyHolm,#bootcamp #coaches teamturningpoint shandadiantonio eatfitabq 💪🏼👊🏼🏋️ https://t.co/e7rIxhfizD +02/25/2018,Sports_celeb,@HollyHolm,And just like that. State champions. So proud. @IzzyStyle @mikeb197 @reaIwoods @joeymelendez33… https://t.co/eymMseiGx5 +02/21/2018,Sports_celeb,@HollyHolm,@paulbuceta 📷 https://t.co/eL34u0eHSh +02/19/2018,Sports_celeb,@HollyHolm,My Monday challenge. My first time trying these. Give it a go sometime !:) #mondaymotivation https://t.co/fcj8JwCHHa +02/18/2018,Sports_celeb,@HollyHolm,Yes. Yes to all of this. 👊🏼 thinking of all my teammates tonight. @cowboycerrone @goutithibault… https://t.co/Krs9BvJWZt +02/13/2018,Sports_celeb,@HollyHolm,Feeling a little sluggish today but not every day feels great... no excuses. came in to get some… https://t.co/aVxC75f7m7 +02/12/2018,Sports_celeb,@HollyHolm,Monday 👊🏼 yanamma @JacksonWinkMMA https://t.co/YJysE7GYtc +02/12/2018,Sports_celeb,@HollyHolm,📝 Note to self..... don’t lay on the closet floor in the middle of putting laundry away. You… https://t.co/L1bBRMDCte +02/10/2018,Sports_celeb,@HollyHolm,Yum yum!! Homemade egg rolls for my Friday night!! Thank you Kim! I’m going home to cook these… https://t.co/Ap0L1upN0c +02/08/2018,Sports_celeb,@HollyHolm,Talk about a throwback... here’s my #tbt ... Ran out of time to share more but this is a great… https://t.co/GNPPlLkfdp +02/07/2018,Sports_celeb,@HollyHolm,My finisher for today. Give it a try sometime! 👊🏻 thank you teamturningpoint @alexgard51 https://t.co/vmnrbwJbEL +02/05/2018,Sports_celeb,@HollyHolm,Going to the @jtimberlake concert in Vegas and this halftime show got me wishing April was here… https://t.co/gywGiZiYJG +02/04/2018,Sports_celeb,@HollyHolm,My big brother. Looking out for me since day one. https://t.co/HH3S4UTfrN +02/04/2018,Sports_celeb,@HollyHolm,Meeting up with some of our roots from Iowa. https://t.co/i7BBxULEEe +02/03/2018,Sports_celeb,@HollyHolm,#saturdayvibes https://t.co/2e8iFrdQ3D +02/03/2018,Sports_celeb,@HollyHolm,Fans from the beginning. Brought memories of a pivotal fight in my boxing career. Thank you for… https://t.co/LkyGuWzt3l +02/02/2018,Sports_celeb,@HollyHolm,Come see me at bluecloverdistillery tomorrow and Saturday. (Feb 2nd and 3rd). If you come find… https://t.co/fcRFVvSnKX +01/31/2018,Sports_celeb,@HollyHolm,😁 https://t.co/jys0BRlVo1 +01/31/2018,Sports_celeb,@HollyHolm,Smiling but really we are hurting inside. 😜 love these faces https://t.co/2NyBGxddpS +01/28/2018,Sports_celeb,@HollyHolm,Sporting my hat for bluecloverdistillery Excited to go to scottsdale this weekend!!! Come join… https://t.co/6Erd3WGfW2 +01/27/2018,Sports_celeb,@HollyHolm,I absolutely love meeting new people. Especially when they are simply fabulous. 😊 I really did… https://t.co/FYdw2wlgMM +01/26/2018,Sports_celeb,@HollyHolm,Haven’t been here since my UfC debut. Memories .... https://t.co/w67aLmXqOe +01/23/2018,Sports_celeb,@HollyHolm,Frisbee with the team is about to go down. https://t.co/6OmcI5TH9q +01/23/2018,Sports_celeb,@HollyHolm,Looking forward to my workouts today👊🏻 #teamhitech hitechpharma https://t.co/urKeqBKYeA +01/21/2018,Sports_celeb,@HollyHolm,It’s a beanie and coffee kind of day. Well... every day is a coffee kind of day 😜 but it seems… https://t.co/24Kn3lBbs2 +01/20/2018,Sports_celeb,@HollyHolm,A throwback for treesa321 birthday from our epic trip to Cancun. Love you T! https://t.co/M7VtQwvTae +01/16/2018,Sports_celeb,@HollyHolm,My Monday night.... watching Ratatouille and eating ice cream sandwich...es. 😬😋 and yes....… https://t.co/bES3rZVUto +01/13/2018,Sports_celeb,@HollyHolm,#teamhitech hitechpharma https://t.co/ahKuC7jFOv +01/07/2018,Sports_celeb,@HollyHolm,Ice cream date with these special girls 😊 https://t.co/IIPmQFit24 +01/06/2018,Sports_celeb,@HollyHolm,Winks Gym on Paseo Del Norte and Wyoming! 9 am. Be there! Get a good workout in to start your… https://t.co/NZ0vm4pY1m +12/28/2017,Sports_celeb,@HollyHolm,Fight week #ufc219 @ufc https://t.co/mf1mPFrA8s +12/25/2017,Sports_celeb,@HollyHolm,Merry Christmas 🎄 🎁!! @JacksonWinkMMA https://t.co/PxXXIpqONW +12/25/2017,Sports_celeb,@HollyHolm,Love these girls and this time of year❤️ https://t.co/4cgjwWc3rW +12/24/2017,Sports_celeb,@HollyHolm,My team. My coaches. This is only a portion of who has helped me prepare. My whole team is the… https://t.co/p8myXgPc7W +12/22/2017,Sports_celeb,@HollyHolm,34 degrees and dark but I actually enjoyed my late night run. #teamhitech hitechpharma https://t.co/PUQ77MTSps +12/08/2017,Sports_celeb,@HollyHolm,A little core finisher work for #flexfriday. Try it sometime. 👊🏻 today’s finisher was 4 sets of… https://t.co/7m4z70yeWW +12/08/2017,Sports_celeb,@HollyHolm,A little core finisher work for #flexfriday. Try it sometime. 👊🏻 today’s finisher was 4 sets of… https://t.co/0nLMeqiT9l +12/02/2017,Sports_celeb,@HollyHolm,3 Manzano High graduates ! Sending love to the Monarchs in their championship football game… https://t.co/aZdULl9l2i +12/02/2017,Sports_celeb,@HollyHolm,I am surrounded by great people and I am always motivated by my team. Great night of fights at… https://t.co/kYs8oY6a2z +12/02/2017,Sports_celeb,@HollyHolm,"Did everyone else get the memo for nude heels, jeans and a taupe sweater? 🤔😉 swear it wasn’t… https://t.co/vAVX6n4LIX" +12/01/2017,Sports_celeb,@HollyHolm,JacksonWink fight night at Isleta tomorrow night! 7 pm. I promise you.... this fight card is… https://t.co/XDr5zW9x9q +12/01/2017,Sports_celeb,@HollyHolm,Quick 24 hour trip to Detroit. On my way back home to keep on the grind. Getting prepared for… https://t.co/CKYgI196rz +11/30/2017,Sports_celeb,@HollyHolm,"See you soon, Detroit. https://t.co/gTLoOulLww" +11/19/2017,Sports_celeb,@HollyHolm,Going live on Instagram tomorrow evening at 5:15 pm mountain time. check out how I got started… https://t.co/7KKbuXR6ad +11/13/2017,Sports_celeb,@HollyHolm,😎 😎😎 Finley styled my hair too 😉 https://t.co/xfjE3SP8fL +11/12/2017,Sports_celeb,@HollyHolm,When you're on your way to watch the fights and can't decide if it's warm or a little chilly...… https://t.co/PzYCFIa7QG +11/11/2017,Sports_celeb,@HollyHolm,I know it's super late I just wanted to post this picture from Mr. Olympia with the hitechpharma… https://t.co/ViATj6hNg7 +11/09/2017,Sports_celeb,@HollyHolm,I try to explain how great our team and coaches are. I always say they are my family. I say they… https://t.co/Kb1N9KQZmu +11/05/2017,Sports_celeb,@HollyHolm,Love to pester this guy at night. #goodthingheputsupwithme https://t.co/DeTYPzen2X +11/02/2017,Sports_celeb,@HollyHolm,I couldn't be more proud of you abreg_1 . Congratulations to you and the team. You have worked… https://t.co/4D3Dn1pvEd +10/27/2017,Sports_celeb,@HollyHolm,Great time getting to know @mjkeenan and watching him perform at Tingley Wednesday. Thank you… https://t.co/WjegN5AkPX +10/26/2017,Sports_celeb,@HollyHolm,#beforeandafter #sparring #teamhitech hitechpharma https://t.co/xAptApXpME +10/21/2017,Sports_celeb,@HollyHolm,Sending my love to Poland for my teammates tomorrow. I excited to see the hard work pay off. I… https://t.co/qX3foClspH +10/20/2017,Sports_celeb,@HollyHolm,"bluecloverdistillery .....Scottsdale, AZ. Getting closer and closer. I'll keep you updated on… https://t.co/xRUrtqGHc0" +10/20/2017,Sports_celeb,@HollyHolm,A little vacation workout. Gotta love humidity 😅 https://t.co/RcVbWIVlXO +10/18/2017,Sports_celeb,@HollyHolm,At Albuquerque Parq Central doing a podcast.... taking in the view of the sandias and loving… https://t.co/VHDpiFxAB1 +10/17/2017,Sports_celeb,@HollyHolm,When your mom comes over for dinner and brings more old photos. Yes I used to have a perm ;)… https://t.co/woSkZI7Ufr +10/11/2017,Sports_celeb,@HollyHolm,Wednesday wrestling practice 👊🏻 #jacksonwinkmma https://t.co/4ldmIz3ic8 +10/10/2017,Sports_celeb,@HollyHolm,A little down time between sparring and mitt work;) the most procrastinated project ever 😬 I… https://t.co/MH3gq6wE6v +10/06/2017,Sports_celeb,@HollyHolm,Some core work today #flexfriday hitechpharma #teamhitech 👊🏻 https://t.co/p11rQAZ5Rl +10/04/2017,Sports_celeb,@HollyHolm,My finishing set from my workout today. 30 second sprint… https://t.co/5YEMTojNQR +09/30/2017,Sports_celeb,@HollyHolm,It's Friday! 😁 Photo credit @paulbuceta MUA monicakalra https://t.co/nBmHXrmqqy +09/29/2017,Sports_celeb,@HollyHolm,It's Friday !!! 😁 photo credit @paulbuceta https://t.co/yp3u2MdlJP +09/29/2017,Sports_celeb,@HollyHolm,It's Friday!! 😁 photo credit @paulbuceta https://t.co/Zn1na2jbiP +09/25/2017,Sports_celeb,@HollyHolm,Finally got to trap @paulbuceta and get a photo shoot 😁 and awesome to meet @nicolemwilkins… https://t.co/fc77zND5om +09/25/2017,Sports_celeb,@HollyHolm,What a great weekend in Chicago @IzzyStyle grand reopening. It's always great to be here. Now… https://t.co/ulhJMXqrKK +09/16/2017,Sports_celeb,@HollyHolm,On my way to Mr Olympia! Come visit me at booth 512. I'll be there from 11-12:30 and 2-3:30. See… https://t.co/P8DeIflEy1 +09/14/2017,Sports_celeb,@HollyHolm,Going to be talking on JW Raw at noon mountain time today. Come join in on the Jackson Wink… https://t.co/eZnDek4f5B +09/14/2017,Sports_celeb,@HollyHolm,"I took 41 pictures of the kitties tonight.... don't worry, I'm only posting a handful. Hey… https://t.co/wFdN3xklEG" +09/07/2017,Sports_celeb,@HollyHolm,Doing a giveaway for the first person that can answer the question. I'll send the winner a… https://t.co/LfMe6GSr9x +09/06/2017,Sports_celeb,@HollyHolm,A little work from today. 👊🏻 https://t.co/rnh0vdaG4z +09/05/2017,Sports_celeb,@HollyHolm,My brothers are opening a restaurant/distillery and we are sporting our new bluecloverdistillery… https://t.co/Nxh31bzKBF +09/04/2017,Sports_celeb,@HollyHolm,Congratulations munzie03 and brandini26 😊 So blessed to be a part of your beautiful day. https://t.co/I6nZFiwUhz +09/01/2017,Sports_celeb,@HollyHolm,Congratulations yanamma 👊🏻👊🏻 all the hard work paid off. strong work team! @mmacoachwink… https://t.co/QIeVKNd5v3 +08/31/2017,Sports_celeb,@HollyHolm,I was recently given some tools from someone who knew I loved to do projects at home. Thought… https://t.co/KtrYN37WmN +08/30/2017,Sports_celeb,@HollyHolm,Great rounds this morning in wrestling. 👊🏻 https://t.co/Hjy9UtQPBw +08/29/2017,Sports_celeb,@HollyHolm,Doing some work with hitechpharma today. Hoping everybody is having a great Tuesday:) 👊🏻… https://t.co/pB3jECVHwY +08/29/2017,Sports_celeb,@HollyHolm,Getting some work in for hitechpharma today. Hope everyone is enjoying their Tuesday:)… https://t.co/ANI14JK7pj +08/26/2017,Sports_celeb,@HollyHolm,Some different variations of my ring workout today. Dips are getting a little weak at the end… https://t.co/M1vweUL8v3 +08/25/2017,Sports_celeb,@HollyHolm,I did this handstand drill on my story but wasn't long enough and some of you have asked for the… https://t.co/UrdmHtqFmp +08/16/2017,Sports_celeb,@HollyHolm,Good morning ☀️ I'll be going live on collide at 11:30 mountain time. Come join me. I'll be… https://t.co/rFTp44BWO9 +08/15/2017,Sports_celeb,@HollyHolm,Just finished some mitt work with @mmacoachwink at our gym here @JacksonWinkMMA and I'm excited… https://t.co/rjViaaEzkJ +08/15/2017,Sports_celeb,@HollyHolm,In between trainings. Enjoying my Tuesday and hoping everyone is enjoying their day as well.… https://t.co/QPgKU2e7Dt +08/07/2017,Sports_celeb,@HollyHolm,Just got done watching a private screening of The Hitman's Bodyguard with my friends and family.… https://t.co/RXzfuyKXKx +08/04/2017,Sports_celeb,@HollyHolm,👊🏻 https://t.co/p22hMxyrHq +08/04/2017,Sports_celeb,@HollyHolm,Come join me on collide today at 3 pm mountain time !👊🏻👊🏻 download the app and follow me:) https://t.co/hTv54Zh1rf +08/02/2017,Sports_celeb,@HollyHolm,Been doing busy work all day... now off to the gym. Ready to get some of my kind of work in 👊🏻… https://t.co/otQlUnfpsj +07/28/2017,Sports_celeb,@HollyHolm,Hey guys. I am here in Anaheim and Getting pumped for the weekend - be sure to download the… https://t.co/7vPG8ho1FD +07/13/2017,Sports_celeb,@HollyHolm,HAPPY BIRTHDAY gallegos.megan !!!!!!!!! 🎉 🎈 https://t.co/Aq7f47XngL +07/12/2017,Sports_celeb,@HollyHolm,I am extremely proud of @Wrestlingzlife . He has worked so hard and put so much passion into his… https://t.co/0eMnCknKXI +07/04/2017,Sports_celeb,@HollyHolm,Happy 4th everybody! 🇺🇸 I love this country. Have a blessed day. #america https://t.co/k7I9fNuRzn +07/01/2017,Sports_celeb,@HollyHolm,2 for 2.... even with that ugly swing😂 just doing a lil demo work for my brothers restaurant and… https://t.co/Uw3u2CScMu +06/28/2017,Sports_celeb,@HollyHolm,I'm back on the grind trying to be ready for whatever is next. Thank you for your constant… https://t.co/f3LTody1GW +06/24/2017,Sports_celeb,@HollyHolm,Home sweet home. Buster loves taking photos 😜 https://t.co/wfeLssFcil +06/18/2017,Sports_celeb,@HollyHolm,Some of the many beautiful views at the Marina Bay Sands in Singapore. I can't help but feel… https://t.co/s15YHgkjwx +06/15/2017,Sports_celeb,@HollyHolm,One last run around the bay. #ufc #singapore https://t.co/6q2J5RNB0k +06/15/2017,Sports_celeb,@HollyHolm,This guy. Always good to see my friend… https://t.co/gxndMuyud7 +06/13/2017,Sports_celeb,@HollyHolm,"#Repost @IzzyStyle (via @repostapp) +・・・ +Singapore 🇸🇬 #teamholm #izzystyle #barataplata https://t.co/S4yJGhc5IN" +06/12/2017,Sports_celeb,@HollyHolm,Lunch with my favorite ninja and an amazing view over Singapore ... izzystyle where are you ? https://t.co/gkv7eQUyAc +06/11/2017,Sports_celeb,@HollyHolm,Went for a little evening run here in Singapore and found myself running by an orchestra as I… https://t.co/eSNt5nj00M +06/05/2017,Sports_celeb,@HollyHolm,Working with the best coach in the world. @mmacoachwink and thanks for the photobomb… https://t.co/5LvIFfJhaR +06/03/2017,Sports_celeb,@HollyHolm,Happy Saturday from Buster and I 🐱 https://t.co/pcwfHWFxbI +05/19/2017,Sports_celeb,@HollyHolm,A little fuel before the afternoon workouts. #teamhitech hitechpharma https://t.co/A8fOqyuTjn +05/15/2017,Sports_celeb,@HollyHolm,Met my family for lunch..... and left with some old memories. Rocked some pretty awesome haircuts 😜 https://t.co/L3Fnti0DgO +05/14/2017,Sports_celeb,@HollyHolm,Riding to the fights in style. 9 #gangsters.... 1 golf cart. @cowboycerrone @IzzyStyle… https://t.co/5cU6uJRcij +05/10/2017,Sports_celeb,@HollyHolm,On my way to Sandia BMW to take care of some things. They're always taking care of me 😀 it's… https://t.co/W5vU9H4dbz +05/10/2017,Sports_celeb,@HollyHolm,"Middle of the week grind. 👊🏻 #Repost @celinehaga (via @repostapp) +・・・ +Wednesday is without a… https://t.co/ey3AqCX4q4" +05/05/2017,Sports_celeb,@HollyHolm,I'd say a little change in weather from Saturday... enjoying all that Albuquerque has to offer. https://t.co/rRnhjhMFrY +04/17/2017,Sports_celeb,@HollyHolm,Proud to wear my @karatehottiemma shirt. I admire the person she is and she definitely motivates… https://t.co/Tr8NXRxR6t +04/14/2017,Sports_celeb,@HollyHolm,All awesomeness in the picture #freckles #redhead #graciebarra #brazilpants #lululemon #pilates… https://t.co/2H04g8N1x6 +04/10/2017,Sports_celeb,@HollyHolm,Happy siblings day to the two that have supported me through thick and thin my entire life. Have… https://t.co/OJ4k02sy7A +04/08/2017,Sports_celeb,@HollyHolm,Team👊🏻 no excuses.... How can you not learn from this group? I love my @jacksonwinkmma and… https://t.co/fWesFsqEM3 +03/29/2017,Sports_celeb,@HollyHolm,Up to 80 degrees last week and this morning there is snow. Albuquerque spring is always… https://t.co/9nVFYmc4Km +03/28/2017,Sports_celeb,@HollyHolm,"A hot shower, ice cold water... and my Recovery Pump boots are just what the doctor ordered. Is… https://t.co/QIKeqK8YEx" +03/26/2017,Sports_celeb,@HollyHolm,My heart is happy. 😊 way to go @jodieesquibel !!! much love little sister. https://t.co/WH65PnJAvU +03/21/2017,Sports_celeb,@HollyHolm,This world is full of beautiful people and I really do love my homies with extra chromies ❤… https://t.co/sSyM5AP5YE +03/20/2017,Sports_celeb,@HollyHolm,Clowning around at the PBR. It wouldn't be the same without Flint. Always a good time. pbr #pbr https://t.co/BRjhiOU01K +03/20/2017,Sports_celeb,@HollyHolm,"Just finished a private screening for the movie ""Life"". Not only was the movie good but I got to… https://t.co/srLHqHRsXq" +03/18/2017,Sports_celeb,@HollyHolm,Happy St. Patty's Day everybody! Enjoy your night! ☘️🍀 #stoat ricksday #stpattysday #irish https://t.co/KiQm6tKAYG +03/17/2017,Sports_celeb,@HollyHolm,Who's ready for Friday? I'm sore and I am definitely feeling this week's training...... so I… https://t.co/KIwaa4pX9X +03/13/2017,Sports_celeb,@HollyHolm,Sandia BMW... still loving the 435. 🎶 https://t.co/5S1lb7ynU2 +03/08/2017,Sports_celeb,@HollyHolm,A little strength and conditioning for my afternoon👊🏻 thank you teamturningpoint https://t.co/TU8nnY3GZo +03/01/2017,Sports_celeb,@HollyHolm,Hanging out in my new @GrrrlClothing before I head to my next workout. When the weather can't… https://t.co/dOFi1RUrj2 +02/23/2017,Sports_celeb,@HollyHolm,#ninjaskills with eatfitabq and @jodieesquibel . 👊🏻👊🏻 https://t.co/HokqN2b90v +02/21/2017,Sports_celeb,@HollyHolm,A little of my strength and conditioning today. Getting back in the swing of things. https://t.co/KTYeEl2kX1 +02/21/2017,Sports_celeb,@HollyHolm,Back from Peru and excited for training tomorrow. I always look forward to coming back to the… https://t.co/XJeRUVvi18 +02/18/2017,Sports_celeb,@HollyHolm,Everybody keeps asking me if @ironladymma and I will rematch.......... I sure hope so. I know… https://t.co/bjnJX10cBX +02/10/2017,Sports_celeb,@HollyHolm,"I don't know if I should refer to him as my coach, my friend, or a legend.... but tell me he… https://t.co/eicmgia458" +02/08/2017,Sports_celeb,@HollyHolm,Super fun morning with some of my favorite people. Thank you @livekelly for having us! We had a… https://t.co/XXBTZOgPER +02/05/2017,Sports_celeb,@HollyHolm,"When you are trying to get ready and Buster thinks he's not getting enough attention.... ok,… https://t.co/p1a20pAVoJ" +02/05/2017,Sports_celeb,@HollyHolm,RT @mariashriver: Check out what my friend Trevor of @Moawad_Group says about the mind of a champion. Hint: its not just for athletes! http… +02/02/2017,Sports_celeb,@HollyHolm,hitechpharma thank you for a great year. I am excited for 2017! https://t.co/QxRuilBL8Q +01/20/2017,Sports_celeb,@HollyHolm,Still love this 435. https://t.co/Ufrg2CBKjv +01/14/2017,Sports_celeb,@HollyHolm,👊🏻 https://t.co/CF4hogysu8 +01/10/2017,Sports_celeb,@HollyHolm,Another day in the books. #teamhitech hitechpharma https://t.co/pdFO58wteV +01/04/2017,Sports_celeb,@HollyHolm,When your friends are your team and your team is going to do damage @jodieesquibel in invictafc… https://t.co/r1i8m7yoWu +01/04/2017,Sports_celeb,@HollyHolm,Tuesday night work with my ninjas 👊🏻👊🏻👊🏻 @baratafreitas @IzzyStyle @johndodsonmma https://t.co/eCeTE4Q83D +12/24/2016,Sports_celeb,@HollyHolm,Merry Christmas Eve from all of us at Winks gym!! 🎄☃️⛄️🎅🏻 https://t.co/h3rlhF05tO +12/22/2016,Sports_celeb,@HollyHolm,#ninjaskills with @thefranklester https://t.co/M0nhDRtquY +12/22/2016,Sports_celeb,@HollyHolm,Trying to learn from these badasses. Thank you for the rounds. @baratafreitas @jodieesquibel… https://t.co/jOMzCZpKqR +12/20/2016,Sports_celeb,@HollyHolm,I hope everyone is enjoying their Week leading up to Christmas. I wish you all a Merry Christmas… https://t.co/R2p6Go4FDK +12/18/2016,Sports_celeb,@HollyHolm,Had to take my own photos with the man himself. Everybody keeps coming up pumped to meet the man… https://t.co/8v6qeTUtv9 +12/08/2016,Sports_celeb,@HollyHolm,"hitechpharma is doing a giveaway if you would like to enter:) (via repostapp) +・・・ +GIVEAWAY: Win… https://t.co/OX4CPSh9jg" +12/03/2016,Sports_celeb,@HollyHolm,"Friday evening 👊🏻 graciebarranm @jacksonwinkmma (via repostapp) +・・・ +Friday night went like that… https://t.co/z5TfyKgftA" +12/01/2016,Sports_celeb,@HollyHolm,https://t.co/p4LuKCDBqD This inspires me.… https://t.co/EwkuSwSY5Y +11/28/2016,Sports_celeb,@HollyHolm,Have a sweet tooth? Make a protein milkshake instead of reaching for the candy bars. 👊🏻… https://t.co/lJBnaHvb9p +11/18/2016,Sports_celeb,@HollyHolm,Happy Friday everyone 👊🏻 @GrrrlClothing https://t.co/YYAcTnKtMX +11/14/2016,Sports_celeb,@HollyHolm,Monday afternoon Grrrind ... thanks @mmacoachwink for the mitt session. @GrrrlClothing https://t.co/4fkm7A0k1r +11/13/2016,Sports_celeb,@HollyHolm,Excited for this bantamweight fight and the rest of the card. Watching with family and friends.… https://t.co/zQJqdRkbL4 +11/12/2016,Sports_celeb,@HollyHolm,Just relaxing Friday night. #teamhitech #hitechpharma hitechpharma https://t.co/gTyrecqggs +11/10/2016,Sports_celeb,@HollyHolm,#ninjaskills with @tomfirekid #JCVD #tomfirekid https://t.co/cMbqkEsPhR +11/08/2016,Sports_celeb,@HollyHolm,My Monday motivation. Every Monday I get to work out with this amazing woman. She shows… https://t.co/K3etKKjF3R +11/07/2016,Sports_celeb,@HollyHolm,Congratulations to my brothers @baratafreitas and @DiegoSanchezUFC with their victories this… https://t.co/UW7fZ5BVKC +11/04/2016,Sports_celeb,@HollyHolm,And thanks for the new shorts @GrrrlClothing https://t.co/nIdPeSOm0z +11/04/2016,Sports_celeb,@HollyHolm,It's been a progress getting my strength back since surgery but it's almost there. Strict muscle… https://t.co/oqjWvVwTe1 +11/02/2016,Sports_celeb,@HollyHolm,"Our weather has been so nice for being November, but there's still that chill in the air during… https://t.co/rIHXl3Xwh5" +10/29/2016,Sports_celeb,@HollyHolm,Sometimes trying to get stuff done in the house is impossible because Buster keeps laying in… https://t.co/F1rVbOppUb +10/29/2016,Sports_celeb,@HollyHolm,What my Friday night party looks like.... no bake protein bars and a photobomb by Buster. Using… https://t.co/M1deMDBXlk +10/27/2016,Sports_celeb,@HollyHolm,Finished with some great training this morning 👊🏻 love my team. https://t.co/bwJ7CrE0UQ +10/19/2016,Sports_celeb,@HollyHolm,On my way to run. Thanks for the new gear @GrrrlClothing https://t.co/WeeajNAcUu +10/18/2016,Sports_celeb,@HollyHolm,#ninjaskills with @timkennedymma #koalified https://t.co/KVKufNHTGX +10/17/2016,Sports_celeb,@HollyHolm,My Monday motivation goes to Randy. He's been a friend of mine since childhood. He won several… https://t.co/4T7k29s0d2 +10/15/2016,Sports_celeb,@HollyHolm,Excited to share my video for @verabradley where I teach @RealTomHankz how to throw a punch and… https://t.co/8lzhaOQkVq +10/14/2016,Sports_celeb,@HollyHolm,#thursdaynightfootball bummer we didn't win. Looking forward to the next game. broncos https://t.co/tH3pGgDFfD +05/09/2018,Sports_celeb,@Sara_McMann,Photo shoot for Sports Illustrated 💪👊 I will posting these great… https://t.co/GUAFq3lFlw +04/15/2018,Sports_celeb,@Sara_McMann,Look at the life YOU live in based on the comments you leave online. Now there’s a thought.… https://t.co/4u5Lnwe1J2 +04/02/2018,Sports_celeb,@Sara_McMann,I am a terrible girlfriend. I’m also fully understand the war I’ve started. Worth it 😆😆😆… https://t.co/HjjWrvESzV +03/20/2018,Sports_celeb,@Sara_McMann,Testing at the UFC Performance Institute in Vegas! Little known fact: I have the densest bones… https://t.co/xeLfeJTQcG +02/12/2018,Sports_celeb,@Sara_McMann,Don’t fall for the guy who only buys you flowers and chocolate on Valentine’s Day. Fall for the… https://t.co/TNSQ3aU582 +02/08/2018,Sports_celeb,@Sara_McMann,😄😄😄 unfortunately I had BOTH of these terrible hairstyles 🤦🏻‍♀️🤷🏻‍♀️ https://t.co/LsOkOhO4Hk +02/02/2018,Sports_celeb,@Sara_McMann,Yay!! #EAUFC3 is out 👏👊💪 It’s always fun when people I know pick me in the game😄 https://t.co/Bnb3wdQOT7 +01/29/2018,Sports_celeb,@Sara_McMann,Happy birthday to this awesome guy that stole my heart ♥️ I hope I get to spend every one… https://t.co/hVfmQ1V2u5 +01/27/2018,Sports_celeb,@Sara_McMann,I GOT FILI!!! 👊💪 @touchyfili #teamalphamale #tamvseverybody #outcastsandunderdogs #koheadkick @… https://t.co/Fh1adk8eYn +01/17/2018,Sports_celeb,@Sara_McMann,"Four years old, kindergarten pictures. The best part is that I had the same mullet for like 10… https://t.co/0ulX5paez0" +01/12/2018,Sports_celeb,@Sara_McMann,FBF to Opening Ceremonies with telaodonnell in 2004 Olympics! This reminds me of living at the… https://t.co/q4kPwCuEi2 +01/12/2018,Sports_celeb,@Sara_McMann,Check out marcelogarciajiujitsu on Instagram!!! 👏👏👏🙌🙌🙌 One of the few people in the world I view… https://t.co/ZvWQSlTwFe +01/04/2018,Sports_celeb,@Sara_McMann,Excited to announce my next fight Feb. 24 in Orlando against Lana Kunitskaya 😃 #ufc… https://t.co/diIZAQkLeh +12/31/2017,Sports_celeb,@Sara_McMann,Wish @HollyHolm would have gotten the win. Great person and great fighter 👊💪 #ufc219 +12/28/2017,Sports_celeb,@Sara_McMann,One of the most amazing things about this life. I plan on reaching my goals and starting fresh… https://t.co/3ZDhPH4oIN +12/23/2017,Sports_celeb,@Sara_McMann,It appears that one of my “fans” really needs some attention. He posted this on a pic of my… https://t.co/jamGn20Nco +12/22/2017,Sports_celeb,@Sara_McMann,Bella reached her goal of being able to put both feet flat and raise her head. When she puts her… https://t.co/wQr9273CIj +12/18/2017,Sports_celeb,@Sara_McMann,Wicked artwork by chaotic_substance 👏🙌 Thank you 🙏 #ufc #fanart #badass #grateful https://t.co/0Uuu92fmMK +12/14/2017,Sports_celeb,@Sara_McMann,I bet this is the last time alexandermunoz55 shows me how to get more height on my single leg… https://t.co/8C9MS9Vl28 +12/10/2017,Sports_celeb,@Sara_McMann,"The smallest things make the biggest difference over time. Proper nutrition, hydration, good… https://t.co/5JWj5C6MeD" +12/10/2017,Sports_celeb,@Sara_McMann,WAR @savage_530 Benito Lopez 💪👊 @ufc debut and ready to dominate!!! #teamalphamale… https://t.co/Yf8fJiM3vS +12/06/2017,Sports_celeb,@Sara_McMann,WOMEN’S WEEK!! Pretty sweet to get a free week and watch some sick fighters 😁 #ufc #fightpass… https://t.co/ocqCSsYGwr +12/05/2017,Sports_celeb,@Sara_McMann,Miss these awesome coaches more than I can express!! I love bonding with my new team and coaches… https://t.co/Pxxgb0SOK6 +12/03/2017,Sports_celeb,@Sara_McMann,"Bad stuff out, good stuff in 😊 @teamusana #usana #healthpak #vitaminsandminerals #recovery @… https://t.co/krufvdOKnj" +11/22/2017,Sports_celeb,@Sara_McMann,"Awesome Gi class with this animal!! Don’t be fooled by his No Gi preference, this guy is super… https://t.co/UxqkolQJqx" +11/21/2017,Sports_celeb,@Sara_McMann,Why do I look like I’m possessed by the devil?!?! 😳😆 I hope to have something scheduled soon!… https://t.co/D9UNGKUUua +11/15/2017,Sports_celeb,@Sara_McMann,I have no shame at all being a fangirl for Jean Claude Van Damme 😍 I grew up watching Bloodsport… https://t.co/FrMymR94jT +11/12/2017,Sports_celeb,@Sara_McMann,"Cool coffee shops ☕️ , hard practices 🤼‍♂️ , and chasing galaxies 🌌 💗💕You’re my favorite person… https://t.co/Cps37VmyDz" +11/10/2017,Sports_celeb,@Sara_McMann,I love this feeling. Moments before competition is the most intense feeling of focus and… https://t.co/WmilvNhcdW +11/08/2017,Sports_celeb,@Sara_McMann,"Wrestling, MMA, and gymnastics. 3 of the toughest sports in the world🌎 We only climb the highest… https://t.co/N55rRC2oCQ" +11/07/2017,Sports_celeb,@Sara_McMann,"If you can abide by these 2 quotes, you are 90% on your way to having a much better life. https://t.co/8aqIZAhMfS" +11/04/2017,Sports_celeb,@Sara_McMann,WAR @cody_nolove @tylerd1amond @sanchez__145 👊💪☝️ my @TeamAlphaMale teammates are going to… https://t.co/SUjMgvz29z +11/04/2017,Sports_celeb,@Sara_McMann,Big thanks to @BetaAcademy for having me teach alongside Murilo Santana today at the… https://t.co/Jt0fRqPZPJ +11/02/2017,Sports_celeb,@Sara_McMann,Let’s go @lancepalmer 💪👊 #teamalphamale #wsof #champion #wrestling #usawrestling #fightday https://t.co/JoWxLh20wh +11/01/2017,Sports_celeb,@Sara_McMann,"LumberJane? LumberJill? Ax murderer? Who knows, just gimme the candy and no one gets hurt 😃 https://t.co/bOVV8niOLH" +10/20/2017,Sports_celeb,@Sara_McMann,I’m too lazy to look up some inspirational quote about life. But here’s me doing a handstand for… https://t.co/X090hFpRkN +10/18/2017,Sports_celeb,@Sara_McMann,Great work with my teammate alexandermunoz55 this morning! Working out sneaky set ups and our… https://t.co/RXhhlguvjM +10/12/2017,Sports_celeb,@Sara_McMann,Hope that these fires get contained soon. It's caused so much heart ache and damage already 😢 https://t.co/7zDsfbT0LC +10/11/2017,Sports_celeb,@Sara_McMann,The USADA lady gave me a cool towel when I was tested today 😁 I'm glad they don't only test when… https://t.co/2WxcRdSbN8 +10/06/2017,Sports_celeb,@Sara_McMann,"I really love this quote. I'm proud of where I have gotten in life, but I started far behind a… https://t.co/MtJ665u6KT" +10/05/2017,Sports_celeb,@Sara_McMann,Relaxing at Capitol Park with my favorites 💕 Wayne chasing squirrels while Bella climbs trees 🌲… https://t.co/Egn3c8t7DY +10/02/2017,Sports_celeb,@Sara_McMann,Awesome box of goodies from a great gal Chrystal at rebelliaclothing 💕 I can't wait to try out… https://t.co/LlZBua1anZ +10/01/2017,Sports_celeb,@Sara_McMann,Shout out to my good friend sobhanworld and all of the great work he is doing for @cssandover !… https://t.co/U3GjYDIbwv +09/25/2017,Sports_celeb,@Sara_McMann,Super excited to get my Sports Pak vitamins from USANA!! These have helped me compete at a high… https://t.co/GWT74W4HMc +09/24/2017,Sports_celeb,@Sara_McMann,Today's my birthday and I am happy to be alive and loving what I do. I have great friends &… https://t.co/9S1JR2f1yj +09/23/2017,Sports_celeb,@Sara_McMann,The royal treatment 👑 fo @brooke13_mayo before her fight for @bellatormma !!! @fabiopradobjj and… https://t.co/lpBt0q7RqG +09/23/2017,Sports_celeb,@Sara_McMann,WAR @teruto_ko !!!! @TeamAlphaMale is behind you!!! #beast #teamalphamale #tamvseverybody #ufc… https://t.co/3ErNeZYVhh +09/20/2017,Sports_celeb,@Sara_McMann,"I ALWAYS miss the pic at the end, so I made sure I didn't wander off this time 🤣 I'm loving my… https://t.co/bJlXNN3tm9" +09/16/2017,Sports_celeb,@Sara_McMann,Happy Friday!! Carpe Diem 😁😁😁 https://t.co/coFqAbbtOb +09/15/2017,Sports_celeb,@Sara_McMann,Come check out @urijahsuf tomorrow from 10-5pm!! I'll be there!! 😁 #urijahfabersultimatefitness… https://t.co/VufSjCT1iG +09/10/2017,Sports_celeb,@Sara_McMann,Last night didn't yield the outcome that I wanted. I gave the best of myself and came up short.… https://t.co/oCuDmfK9HK +09/09/2017,Sports_celeb,@Sara_McMann,Ready to leave it all in the cage and give every ounce of myself tonight!!! I love what I do!!… https://t.co/lbtXOaW8m2 +09/06/2017,Sports_celeb,@Sara_McMann,Awww @suzesuzeq did such an amazing job on my hair and makeup!!! She knows I don't like a… https://t.co/oxkVWGZ9JS +09/05/2017,Sports_celeb,@Sara_McMann,Riding with the man who's about to make history!! I've been a longtime fan of @MightyMouseUFC… https://t.co/9OdiMfXU8a +09/03/2017,Sports_celeb,@Sara_McMann,No make up and letting my crazy curls loose. It's a great day after my last hard work out for my… https://t.co/jVq3WHTeWg +09/02/2017,Sports_celeb,@Sara_McMann,"This is such a great quote because no matter what you've done in the past, the here and now is… https://t.co/XfMLDXslX9" +08/30/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/sgBWzYI78H +08/30/2017,Sports_celeb,@Sara_McMann,Got some great work in with this beast tonight! @cyn_calvillo #teamalphafemale #ufc215… https://t.co/GAYNbIwOvO +08/28/2017,Sports_celeb,@Sara_McMann,"Faster, stronger, better!!! Thank you @brooke13_mayo and Niko for the great drills 😁… https://t.co/UfFlF3PM50" +08/27/2017,Sports_celeb,@Sara_McMann,Cool down with some light shadow boxing and movement drills. Feeling relaxed and ready for the… https://t.co/9HA8iKIzGg +08/27/2017,Sports_celeb,@Sara_McMann,All respect to @TheNotoriousMMA for stepping into Floyd's arena and giving it is all. #UFC #boxing #allheart +08/26/2017,Sports_celeb,@Sara_McMann,I hope he goes in there and shocks the entire world. #mcgregorvsmayweather #ufc #boxing… https://t.co/EKVrXj3uAY +08/25/2017,Sports_celeb,@Sara_McMann,Super proud of @rafajj for getting silver medal at Master's Worlds in IBJJF! He had a tough call… https://t.co/4NJdedKaBX +08/24/2017,Sports_celeb,@Sara_McMann,"Coaches be like, ""Your opponent is taller, go with him to prepare"" 😂😂😂 Not to brag, but I almost… https://t.co/YcaVvtXiIc" +08/23/2017,Sports_celeb,@Sara_McMann,Awesome sparring day!! Thanks to @brooke13_mayo for the kicks that were on 🔥 and and… https://t.co/2l3QfaxytA +08/23/2017,Sports_celeb,@Sara_McMann,Got a visit from #usada today! I love that they take blood and urine samples. It's a huge… https://t.co/31QGdJYu7d +08/20/2017,Sports_celeb,@Sara_McMann,"Strawweight, flyweight, and bantamweight. We're comin for them all!! #murderersrow #ufc #bjj… https://t.co/XQrjYmEIlO" +08/17/2017,Sports_celeb,@Sara_McMann,Great sparring with @cyn_calvillo today!! #teamalphafemales #ufc215 @ Urijah Fabers Ultimate… https://t.co/qXmXFdMjXO +08/12/2017,Sports_celeb,@Sara_McMann,First day of practice in my new home @TeamAlphaMale and I'm surrounded by excellence!! I'm so… https://t.co/zJ8cvglGJk +08/02/2017,Sports_celeb,@Sara_McMann,"To gain strength, you have to break down and repair properly. Thanks @teamusana for giving my… https://t.co/QPnjWKkLbd" +08/01/2017,Sports_celeb,@Sara_McMann,"After two different date changes, I'm happy to announce that I'm fighting Ketlen Vieira on… https://t.co/CvR0WwOwoL" +08/01/2017,Sports_celeb,@Sara_McMann,You know who you are. #keyboardwarrior #cantloseifyounevertry #mommasbasement #bitchtits… https://t.co/X94jd7aRCW +07/30/2017,Sports_celeb,@Sara_McMann,"Amazing artist, check her out https://t.co/Np5bWz0NGX" +07/30/2017,Sports_celeb,@Sara_McMann,Just posted a photo @ Alliance Champions Training Center https://t.co/X7zxO7Kw06 +07/29/2017,Sports_celeb,@Sara_McMann,WAR JARRED!! @the_monkeygod #ufc #ufc214 https://t.co/xsiQapl0Cb +07/28/2017,Sports_celeb,@Sara_McMann,I've always loved this. I wouldn't be anything without all of the help I've received in sports… https://t.co/v1UD7BUJh0 +07/27/2017,Sports_celeb,@Sara_McMann,Ladder drills and footwork. I could do this stuff in my sleep 😴 #allianceofgreenville… https://t.co/xQNbGABU7K +07/26/2017,Sports_celeb,@Sara_McMann,Super sweet pic of Bella and I after her gymnastics practice 😁 Thank you tlsandys for this… https://t.co/RHNtwot403 +07/25/2017,Sports_celeb,@Sara_McMann,Another great pic from the article. @ Alliance Champions Training Center https://t.co/sG7CqQd42l +07/24/2017,Sports_celeb,@Sara_McMann,Awesome article in thewashingtonpost if anyone wants to check it out. Big thanks to romanstubbs_… https://t.co/qfLbRmOAMK +06/28/2017,Sports_celeb,@Sara_McMann,"@DiabloBlanco29 hey, what are you doing?" +06/24/2017,Sports_celeb,@Sara_McMann,Phil Nurse showing all the young guns how to throw down!! Speed and footwork on point 😁 @WATNYC… https://t.co/EcbcO9B6ek +06/14/2017,Sports_celeb,@Sara_McMann,Some of my lifts yesterday. Thanks to dan_scanlan94kg and @teamusana for all of the things that… https://t.co/Kwt58mHQoZ +06/13/2017,Sports_celeb,@Sara_McMann,Always sure to get my @teamusana Sports Pak in the morning and evening. I can't believe how much… https://t.co/GSSCCmG0Yr +06/11/2017,Sports_celeb,@Sara_McMann,Picture with a legend masterjacare since we are #alliancefamily ❤️ #bjj #atlanta #alliance #legend https://t.co/krJqwVnsZR +06/11/2017,Sports_celeb,@Sara_McMann,Beautiful cross choke from mount by @rafajj at the #fighttowinpro36 !! alliancechampions… https://t.co/X1sHQTtxs8 +06/11/2017,Sports_celeb,@Sara_McMann,Awesome kneebar by cbinghambjj at the #fighttowinpro36 !! alliancechampions #bjj #kneebar… https://t.co/MnGXQUrNpH +06/05/2017,Sports_celeb,@Sara_McMann,My new sponsor rejuvenate.wellness2400 did a new treatment called Skin Classic to treat skin… https://t.co/hpfAGlPZN6 +06/02/2017,Sports_celeb,@Sara_McMann,Special thank you to the woman responsible for keeping my body from falling apart 😂 tfisherlmt65… https://t.co/1hO5Qx9AD0 +06/02/2017,Sports_celeb,@Sara_McMann,"A) her back is not broken. B) this is not some form of medieval punishment. That's right, she is… https://t.co/CaIOSdqz9e" +06/01/2017,Sports_celeb,@Sara_McMann,"So, they announced my next fight!!! 😁😁😁 I am happiest when I'm preparing for a fight and as soon… https://t.co/zDAXgKjsZm" +05/29/2017,Sports_celeb,@Sara_McMann,Words fail to express the gratitude I have for the sacrifices that soldiers and families make to… https://t.co/gOm8gO8G6P +05/24/2017,Sports_celeb,@Sara_McMann,So excited to have my @teamusana supplements and vitamins arrive!! The best athletes need the… https://t.co/JOVZYs71Bn +05/22/2017,Sports_celeb,@Sara_McMann,Thank you @dominickcruz for letting me pick your brain about how to become a guest fighter (and… https://t.co/gEdrfB9Ued +05/21/2017,Sports_celeb,@Sara_McMann,A couple of the amazing things we saw at #ufcar17 in #lasvegas!! So honored to hear from… https://t.co/3eXdXgGnxJ +05/14/2017,Sports_celeb,@Sara_McMann,Happy for all of the great experiences I get to have with this sweet little girl. I've never… https://t.co/7FMQNV04VN +05/13/2017,Sports_celeb,@Sara_McMann,I don't even know how her back doesn't break! 😂 #handstand #gymnastics #diamondtheives… https://t.co/TMdTpx9fCZ +05/11/2017,Sports_celeb,@Sara_McMann,Giving a little bit back to my poor body after punishing it with 10 days without a day off 😳… https://t.co/QpjyClEppd +05/11/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/Z2eYgoMWcW +05/07/2017,Sports_celeb,@Sara_McMann,"Who's my next fight? I'd love to fight any one of these women, but my picks are A and C 😁 #ufc… https://t.co/GjI2R8F4JQ" +05/07/2017,Sports_celeb,@Sara_McMann,Super fun training with my girl cdbannie and maryska404 😁She should definitely be in invictafc… https://t.co/MLoC90Fy8L +05/01/2017,Sports_celeb,@Sara_McMann,Awesome drills with @JustinBuchholz at @TeamAlphaMale a couple of weeks ago! Can't wait until I… https://t.co/ZiISgLGT7P +04/26/2017,Sports_celeb,@Sara_McMann,This is my serious face 😈 Thanks for picking one of my favorite pics @teamusana #sharkeyes… https://t.co/vjFcqRaCiE +04/25/2017,Sports_celeb,@Sara_McMann,Super happy to have joined @usanainc team!! Can't wait to receive my first box of supplements 😁… https://t.co/OA9KkQSE6p +04/15/2017,Sports_celeb,@Sara_McMann,Love the training out here at @TeamAlphaMale with @cyn_calvillo #teamalphamale #ironsharpensiron… https://t.co/BGYZ6fj1E2 +04/14/2017,Sports_celeb,@Sara_McMann,Having a great time @TeamAlphaMale 😁 Super cool group of fighters who have fun pushing each… https://t.co/nz6BazJXhF +04/13/2017,Sports_celeb,@Sara_McMann,The internet kills me!! I saw so many good ones but this was irresistible… https://t.co/6rNxCo4Quu +04/10/2017,Sports_celeb,@Sara_McMann,Cool pic from this weekend! And thanks dklinedesign for posting it to @ibjjf 😁 I'm still… https://t.co/SSBxgM9xpX +04/09/2017,Sports_celeb,@Sara_McMann,I had a great time at my first @ibjjf competition!! Thanks to amandaleve_bjj for the awesome… https://t.co/yhjHh9nggt +04/07/2017,Sports_celeb,@Sara_McMann,Eeeekkk! I don't know if you can tell but I was so excited to learn some tips and tricks from… https://t.co/WBWdBigU8Y +04/04/2017,Sports_celeb,@Sara_McMann,When you secretly buy all of the @ryanhallbjj DVD's to use his own moves against him!!… https://t.co/Z5bswEtcEh +04/03/2017,Sports_celeb,@Sara_McMann,Thank you to adambenayoun and crock_stock for the goes earlier today. Super excited for more… https://t.co/1rHYW2TyIO +03/31/2017,Sports_celeb,@Sara_McMann,One of the cool pics @piperwarlick took for a feature in styleblueprintcharlotte !!! It was… https://t.co/c4F6rhexpX +03/27/2017,Sports_celeb,@Sara_McMann,It always surprises me how much I enjoy the Gi classes! Typically wrestlers aren't big fans of… https://t.co/ZwaWIaGkSR +03/26/2017,Sports_celeb,@Sara_McMann,"Huge thanks to a wonderful fan @jeepney6 for this coffee!!! I really can't wait to try it, it… https://t.co/fq3vY2q4hG" +03/24/2017,Sports_celeb,@Sara_McMann,I get the privilege of training with these killers almost every day 😁😁😁 @Parisi_Speed… https://t.co/hzK9r5msnq +03/20/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/UgsOTOdYXH +03/20/2017,Sports_celeb,@Sara_McMann,"RT @LeonardWheeler7: Worked out today with Sara ""The Beast"" McMann. I'm so proud of this young lady. Olympic Medalist, UFC & Great Friend!…" +03/19/2017,Sports_celeb,@Sara_McMann,Pushed to the max in my work out run by the one and only leonardwheeler7 😁 Thank you for making… https://t.co/vetFdBgJ0Y +03/19/2017,Sports_celeb,@Sara_McMann,If you aren't watching #ncaawrestlingchampionships what are you even doing with your life??… https://t.co/53pkPH7kZh +03/16/2017,Sports_celeb,@Sara_McMann,It's Wrestling Heroes Day for #wrestlingweek and my hero is the legendary John Smith. He's a 6X… https://t.co/u4p2w3dgTF +03/15/2017,Sports_celeb,@Sara_McMann,WRESTLE LIKE A GIRL DAY!! I started when I was 14 and have loved it every day since then! ❤️❤️❤️… https://t.co/rFMF9ZyXpp +03/14/2017,Sports_celeb,@Sara_McMann,Last training session with jwo51 before she goes back to being smart and saving lives 😁 Thanks… https://t.co/tAZZAUVNdM +03/13/2017,Sports_celeb,@Sara_McMann,Working on my explosive power!! You can't tell but in the barbell pic I'm actually off of the… https://t.co/kV5nRORHip +03/10/2017,Sports_celeb,@Sara_McMann,My sweet friend gave me some wicked work out pants ❤️❤️❤️ Thank you jwo51 for the thoughtful… https://t.co/KMMjz4qCBU +03/10/2017,Sports_celeb,@Sara_McMann,"There will never be a time that we aren't navigating our own set of challenges, but I believe we… https://t.co/2oIT5bO8kD" +03/09/2017,Sports_celeb,@Sara_McMann,Can't wait for this seminar!!! I love sharing knowledge with the young girls coming up!!… https://t.co/UrYWKOudiE +03/08/2017,Sports_celeb,@Sara_McMann,"""Here's to strong women. May be know them, may we be them, may we raise them.""… https://t.co/JgoMC5pR8C" +03/08/2017,Sports_celeb,@Sara_McMann,"Red for International Women's Day!! Even my coach, Jimmy Fowler, supports women today 😂😂😂… https://t.co/DIjn2M6WlW" +03/07/2017,Sports_celeb,@Sara_McMann,"No, I'm not actually pregnant here!! I'm on set for @SubmissionFilm and was having fun with the… https://t.co/ELd4bAoiiL" +03/06/2017,Sports_celeb,@Sara_McMann,Beautiful pics from #redrockcanyon with dan_scanlan94kg 😁I've been to Vegas over 20 times and… https://t.co/YUvMru3cXV +03/05/2017,Sports_celeb,@Sara_McMann,I had a great time catching up with @cody_nolove in between filming for @metropcs 😁… https://t.co/JgVnrY6TKN +03/05/2017,Sports_celeb,@Sara_McMann,Totally my favorite part of the night!!! Can't believe I met my favorite actress @charlizeafrica… https://t.co/XspHTgMVbJ +03/05/2017,Sports_celeb,@Sara_McMann,First time doing the @metropcs show before #ufc209 😁 thanks to @forrestgriffin @cody_nolove… https://t.co/55EtpfWvkl +03/05/2017,Sports_celeb,@Sara_McMann,"Comeback of the year!!!! Omg, @DarrenElkinsMMA is the epitome of ""never give up"" #UFC209" +03/04/2017,Sports_celeb,@Sara_McMann,"I had such a good time at the #mmaawards this year! Half of me likes dressing up, the other half… https://t.co/4hee7O27zy" +03/04/2017,Sports_celeb,@Sara_McMann,Had a great lift at @averagebroz 😁 had to pick this platform since it had the #2004olympics… https://t.co/xKa5GmYyih +03/04/2017,Sports_celeb,@Sara_McMann,Awesome seeing @bisping at the weigh ins for #ufc209 😁 #ufc #ufcchampion #reddress @ T-Mobile Arena https://t.co/GO51jZHdWX +03/03/2017,Sports_celeb,@Sara_McMann,Just arrived at the #mmaawards2017 and can't wait for the show to start! #venetian #lasvegas… https://t.co/YDKvuUurNF +02/27/2017,Sports_celeb,@Sara_McMann,Another great pic from #fallsparkonthereedy in #greenvillesc 😁😁😁 #besties #roots #beautifultrees… https://t.co/1BD0xE8Kh3 +02/26/2017,Sports_celeb,@Sara_McMann,Help @thugjitsumaster raise money for his mother's battle with cancer! https://t.co/9BnFMulocA +02/24/2017,Sports_celeb,@Sara_McMann,My other meditation tool ❤️ I still have to wait a little longer for all of the repairs to my… https://t.co/w0o3aE3lVo +02/23/2017,Sports_celeb,@Sara_McMann,Laughing and hiking with my bestie @DollFaceIFC115 at #fallsparkonthereedy in #greenvillesc ...… https://t.co/c9fMiImGNz +02/23/2017,Sports_celeb,@Sara_McMann,The secret to my success in sports? Mental and physical recovery! I have always been a hard… https://t.co/EXOFlJAHco +02/22/2017,Sports_celeb,@Sara_McMann,"This is one of my new favorite pics!! I respect every one of my opponents. Before I fight, I… https://t.co/wKnr9MUiQV" +02/20/2017,Sports_celeb,@Sara_McMann,Last night was surreal!! I had such a great weight cut and recovery. My warm up and preflight… https://t.co/SX1LDNgj0C +02/20/2017,Sports_celeb,@Sara_McMann,"Super happy in the back with my coach, Jimmy Fowler!! He's been with me thru my whole career and… https://t.co/6ovAk81hjE" +02/18/2017,Sports_celeb,@Sara_McMann,#UFC #halifax #destroytheopposition #breaktheirwill #pushthepace #getwhatyouveearned https://t.co/bpCgi7i88w +02/18/2017,Sports_celeb,@Sara_McMann,One step closer!! And now.... more coffee ☕️😍😁 and carbs #mynewbestfriend #justfortoday #UFC… https://t.co/q6HqqXn5vZ +02/18/2017,Sports_celeb,@Sara_McMann,Weigh in pic 🎉🎊I actually weighed 135 because the sauna was so awesome 😂 I've had so many carbs… https://t.co/pOe0i9uFcx +02/18/2017,Sports_celeb,@Sara_McMann,Made weight and feeling very good 😊 My opponent missed weight by 3.5 pounds but I'm not upset… https://t.co/DXMLGXA36r +02/12/2017,Sports_celeb,@Sara_McMann,One week out for my fight! Thanks Wanda Koch Photography! ❤️ #ufc #reebok #strongmindandbody https://t.co/cc4Nr8bJ8C +02/10/2017,Sports_celeb,@Sara_McMann,"I love boxing with my @hayabusafight gloves!!! ❤❤❤ They are comfortable and protect my hands,… https://t.co/sxQl0pKihc" +02/09/2017,Sports_celeb,@Sara_McMann,Thank you so much to wandakochphotography for the beautiful pics of Bella and I. We ❤ them!! https://t.co/RSFZv8gDq1 +02/07/2017,Sports_celeb,@Sara_McMann,"Omg, this was too funny thing my share https://t.co/S4TgmbxdP8" +02/03/2017,Sports_celeb,@Sara_McMann,My opponent has changed on short notice. Big thanks to Gina Mazany for accepting the fight so… https://t.co/8qEoUWRtmp +01/30/2017,Sports_celeb,@Sara_McMann,Thank you @hayabusafight for the fight swag! I think I've become 10% faster with my fresh new… https://t.co/1Oke5i3SaI +01/22/2017,Sports_celeb,@Sara_McMann,"This is how you raise a spider monkey 😂@pai_cpa says, ""oh no, don't fall Bella!"" And she giggles… https://t.co/UTS3KfugND" +12/23/2016,Sports_celeb,@Sara_McMann,TBT to my photo shoot with the @UFC when I was as lean as I can be (without dying 😂) and they… https://t.co/fQ7vvE3siK +10/19/2016,Sports_celeb,@Sara_McMann,Super excited for this fight!!! Dec. 3 TUF Finale https://t.co/s2mqKItjRm +09/30/2016,Sports_celeb,@Sara_McMann,Just finished watching The Hurt Business and it was awesome!!! +09/08/2016,Sports_celeb,@Sara_McMann,https://t.co/80mYzkbMwt +09/04/2016,Sports_celeb,@Sara_McMann,"Check out the float tank at @glowspanow in Mt. Pleasant, SC. The experience is surreal!! https://t.co/bXV28rJvY9" +08/26/2016,Sports_celeb,@Sara_McMann,A pic with my sweet❤️ https://t.co/so9h6OCt0D +08/24/2016,Sports_celeb,@Sara_McMann,Women's wrestling Olympic medalists https://t.co/1uG4PfCo7u +08/24/2016,Sports_celeb,@Sara_McMann,https://t.co/cJGnx9F0ww +08/22/2016,Sports_celeb,@Sara_McMann,Photo shoot a couple of yrs ago. Thank you FotoFlo https://t.co/d5sNDSW6gY +08/16/2016,Sports_celeb,@Sara_McMann,"Best of luck tomorrow to @hayaugello , @helen_maroulis @AdelineGray and @e_pirozhkova #rio2016 #usawrestling https://t.co/9f1cBIpyfy" +07/25/2016,Sports_celeb,@Sara_McMann,https://t.co/wG9mEhVX0s +07/23/2016,Sports_celeb,@Sara_McMann,Flex Competition with Ean and @gatorboyrb ... I think Ean has us beat!! @ufc #fightlikeean https://t.co/G6XPk669sp +07/22/2016,Sports_celeb,@Sara_McMann,This is my little hero!! https://t.co/avFe4VAI1x +07/18/2016,Sports_celeb,@Sara_McMann,This is pretty cool 😊 https://t.co/7BgnWqIj9s +07/15/2016,Sports_celeb,@Sara_McMann,Just finished my 1st table read ever!! Excited 2 Bart of this movie!! @SubmissionFilm @ufc @RevolutionMMASC https://t.co/dtHysVTCBD +07/13/2016,Sports_celeb,@Sara_McMann,@MieshaTate @BryanCaraway check your DM +07/13/2016,Sports_celeb,@Sara_McMann,RT @toppscards: A day after winning The Ultimate Fighter season 23 @ElDirteSanchez has fun with @Sara_McMann at the Topps UFC booth https:/… +07/11/2016,Sports_celeb,@Sara_McMann,The documentary I'm in is being released soon! Here is the trailer: https://t.co/S4lVNVSfSA https://t.co/mPlMTsBLdF +07/10/2016,Sports_celeb,@Sara_McMann,I want to fight @VenezuelanVixen @ufc make it happen!!! We will put on a great show!!! +07/09/2016,Sports_celeb,@Sara_McMann,Now time for my boy @ElDirteSanchez to finish his opponent!!! @ufc #TUFFinale +07/09/2016,Sports_celeb,@Sara_McMann,Beautiful d'arce choke @TSPMMA115 @ufc +07/09/2016,Sports_celeb,@Sara_McMann,Can't wait for @TSPMMA115 to win her rightful place in the UFC!!! WAR Tatiana!!! @ufc #wrestling #usawrestling #UFCVegas +07/09/2016,Sports_celeb,@Sara_McMann,Beautiful KO by @KoreanSuperBoy7 !!! Love it +07/06/2016,Sports_celeb,@Sara_McMann,Honored to be in the Collectors Edition of @people !! https://t.co/InQ6f55q56 +06/29/2016,Sports_celeb,@Sara_McMann,Yay! My shirts are in and ready to ship! Visit https://t.co/1RqVlCmMZX if you'd like to order them! https://t.co/HCCQvClTmq +06/22/2016,Sports_celeb,@Sara_McMann,"I'm already preparing for my next fight @ufc ! Give me another top 5fighter, I want to beat the best! #ufc #reebok https://t.co/oaMlVRsklc" +06/18/2016,Sports_celeb,@Sara_McMann,Great training at Fitness Edge MMA in Myrtle Beach! Thanks @derrickakadk https://t.co/1obLiAKWbI +06/16/2016,Sports_celeb,@Sara_McMann,RT @DarkMoon_MMA: Get your @Sara_McMann Tees here !! https://t.co/QblochEcOO https://t.co/khgRp1eZ6y +06/16/2016,Sports_celeb,@Sara_McMann,"https://t.co/r5CNa2ykcj completely lied about my coach, Blake Grice, and it needs to be exposed!!!https://t.co/RXDwGPFzWL" +06/05/2016,Sports_celeb,@Sara_McMann,Beautiful title fight! Non stop action from start to finish. Loved it @ufc +06/04/2016,Sports_celeb,@Sara_McMann,Awesome Grand Opening! Chris Bedenbaugh is the best chiropractor!! https://t.co/XC9Mt8T3MI +06/01/2016,Sports_celeb,@Sara_McMann,Thnx again @TheFightDocs 4 the awesome weight loss plan! Easiest weight cut and best recovery I've ever had!! https://t.co/30ylVjrxNz +05/31/2016,Sports_celeb,@Sara_McMann,Hope everyone had a safe Memorial Day. Much gratitude 2 those not present but always in our hearts ❤️ https://t.co/5yVBgkxs29 +05/30/2016,Sports_celeb,@Sara_McMann,My poor coaches 😕 https://t.co/J4bzmU7RNb +05/30/2016,Sports_celeb,@Sara_McMann,In the zone 😍😍😍 @ufc https://t.co/9ioAGhWfFG +05/27/2016,Sports_celeb,@Sara_McMann,Weight is on point! Thank you @TheFightDocs !!! https://t.co/LSV6MXtmRO +05/27/2016,Sports_celeb,@Sara_McMann,Shadow boxing for the UFC promo 😊@ufc https://t.co/LbExzHbm9D +05/26/2016,Sports_celeb,@Sara_McMann,More excited for this fight than I've been in a long time!! 😃😃😃 can't wait for Sunday!! https://t.co/VE8eBZIDse +05/14/2016,Sports_celeb,@Sara_McMann,Big thanks to @TheFightDocs for the supplements that help my work out intensity and recovery! https://t.co/6yRTqtasgj +05/12/2016,Sports_celeb,@Sara_McMann,Hard 8 min. goes with top level black belts! ❤️ bjj at Alliance in Geeenville! https://t.co/9YmLAgl04s +05/12/2016,Sports_celeb,@Sara_McMann,RT @HectorCastroESM: Gettin ready to watch @ElDirteSanchez to do his thing on @UltimateFighter & #TUFTalk tonight on @FS1 #TimeToGetDirte h… +05/10/2016,Sports_celeb,@Sara_McMann,I am officially a USADA peeing pro. Whole process done in less than 15 min. 😄 +06/27/2018,Sports_celeb,@Bharper3407,RT @BlindBarber: .@Bharper3407 Win a trip to the All-Star Game! Enter now https://t.co/WI276ya8Ro https://t.co/byvgaASjoz +06/13/2018,Sports_celeb,@Bharper3407,"Let’s support @LLSusa! + +$10/ticket helps fight cancer. Winner's charity gets a $5,000 grant! + +CODE: TeamBryce // https://t.co/FGqLL4m8VS" +06/08/2018,Sports_celeb,@Bharper3407,"I’m excited to partner with @TMobile in supporting our military & vets! Join me by tweeting with #HatsOff4Heroes,… https://t.co/qrTtseTDAl" +06/08/2018,Sports_celeb,@Bharper3407,#GoKnightsGo +06/08/2018,Sports_celeb,@Bharper3407,I think it would only be fitting for us the @Nationals to rock the red tmrw night in support of the @Capitals winni… https://t.co/sIP2uQilIL +06/08/2018,Sports_celeb,@Bharper3407,I’m so proud to be born and raised in Las Vegas and so proud to call the @GoldenKnights my team! To be able to root… https://t.co/JnvnGW4eQu +06/08/2018,Sports_celeb,@Bharper3407,"Congrats not only to the @Capitals and the players, but to the whole City of DC. What a year, what a series, and so… https://t.co/PF5jaKkuGU" +05/26/2018,Sports_celeb,@Bharper3407,The Harper 3 Low!🔥 #MemorialDayWeekend https://t.co/m8D7ITI3Rl +05/05/2018,Sports_celeb,@Bharper3407,"RT @Nationals: Bryce Harper: Dedicated + +Bryce Harper Field: Also dedicated https://t.co/U66z5yigsK" +05/03/2018,Sports_celeb,@Bharper3407,"RT @GoldenKnights: Thanks for the gifts @Bharper3407!! + +⚾️🏒 + +#VegasBorn https://t.co/MUwWviIp2p" +05/02/2018,Sports_celeb,@Bharper3407,Nobody believes in us more than this man right here!🙌🏻 #Habit #DM4 https://t.co/kUuaFCGVT6 +05/01/2018,Sports_celeb,@Bharper3407,Could you imagine a @GoldenKnights vs. @Capitals Stanley Cup?🙌🏻 #Epic +05/01/2018,Sports_celeb,@Bharper3407,Wild Bill!🙌🏻 #GoKnightsGo +04/29/2018,Sports_celeb,@Bharper3407,Another Vegas kid making his stamp on the game! Congrats to @NickKingham on an absolutey stellar debut! Happy for you big man🙌🏻 +04/29/2018,Sports_celeb,@Bharper3407,"RT @TMobileArena: This is what 18,000 @GoldenKnights fans sound like from #Vegas! #KnightUp https://t.co/hyMQ6GxjTc" +04/29/2018,Sports_celeb,@Bharper3407,Heck yea! The big 8 8 🙌🏻 #Vegasborn +04/28/2018,Sports_celeb,@Bharper3407,6 years ago today!🙌🏻 #19to25 https://t.co/cjt2C1cDzp +04/27/2018,Sports_celeb,@Bharper3407,Let’s go boys! Lay it on all night🙌🏻 #VegasBorn #VGK #GoKnightsGo +04/17/2018,Sports_celeb,@Bharper3407,RT @BlindBarber: @Bharper3407 put together his favorite Blind Barber products for his Bryce Harper Selects Gift Set. Pick up one today and… +04/16/2018,Sports_celeb,@Bharper3407,What a W!🔥 #VegasBorn +04/16/2018,Sports_celeb,@Bharper3407,Stud. Wild Bill. #VegasBorn +04/12/2018,Sports_celeb,@Bharper3407,I'm excited to announce that I am now a part of the @blindbarber family! We had a blast shooting this video! Stay t… https://t.co/bK7AB6VsCd +04/12/2018,Sports_celeb,@Bharper3407,"RT @BryanHarper45: Hey @Bharper3407, one hair dryer wasn't enough? 😂 https://t.co/l8hbpUWI7E" +04/12/2018,Sports_celeb,@Bharper3407,RT @darrenrovell: Unreal scene in Vegas tonight for @GoldenKnights first ever playoff game. https://t.co/CFPLJqutNm +04/12/2018,Sports_celeb,@Bharper3407,Best fans and atmosphere in sports!🙌🏻 #GoKnightsGo #VegasBorn https://t.co/EHeCX3s84t +04/12/2018,Sports_celeb,@Bharper3407,Let’s get this started! @NHLonNBCSports 🙌🏻 #GoKnightsGo #VegasBorn +04/02/2018,Sports_celeb,@Bharper3407,You can get FREE https://t.co/Uqg9f5Ez8g for the entire season thanks to @TMobile! Today is the last day to sign u… https://t.co/6G4FCph7pQ +03/31/2018,Sports_celeb,@Bharper3407,Live your best life. https://t.co/NEyhx0g903 +03/28/2018,Sports_celeb,@Bharper3407,"Can’t wait to get it started!🙌🏻 #OpeningDay +https://t.co/Vdor6PBXJs" +03/19/2018,Sports_celeb,@Bharper3407,What’s it’s all about!🐟 #BassForDays https://t.co/R1GLxBJ7VT +03/14/2018,Sports_celeb,@Bharper3407,Congrats again! That was one of the cooler things I’ve ever done🙌🏻 So happy for you! Heard Harper is a great name h… https://t.co/3xMDKjUMpQ +03/05/2018,Sports_celeb,@Bharper3407,@Gatorade Pumped to be partnering with @Gatorade and helping a great program! #GatoradePartner +02/27/2018,Sports_celeb,@Bharper3407,#VegasBorn https://t.co/qCY6GMgSCP +02/26/2018,Sports_celeb,@Bharper3407,RT @lvwildcats: LVHS alumni representing in MLB and other than being Wildcats they all have one more thing in common ... a great high schoo… +02/24/2018,Sports_celeb,@Bharper3407,Woke up to another @GoldenKnights win! Oops🙌🏻 #GoKnightsGo +02/22/2018,Sports_celeb,@Bharper3407,Waking up to the news that our US woman’s hockey team has won gold fires me up! So happy for you ladies..Congratula… https://t.co/gKc9TVJUP5 +02/22/2018,Sports_celeb,@Bharper3407,Baseball is back!😂 https://t.co/EsSxy4hq0j +02/19/2018,Sports_celeb,@Bharper3407,It’s a family game!🙌🏻 #Harperx2 https://t.co/Gvdqx7EVjl +02/18/2018,Sports_celeb,@Bharper3407,Congrats to my man @austindillon3 on the Daytona 500!🙌🏻 #DAYTONA500 +02/14/2018,Sports_celeb,@Bharper3407,Since pitchers and catchers report dates are tmrw...I thought I would throw it back! Big man @JTaillon19 throwing a… https://t.co/sS6DqmyY9W +02/14/2018,Sports_celeb,@Bharper3407,😮 #FlyingTomato +02/11/2018,Sports_celeb,@Bharper3407,RT @NewEraCap: Our lightest #MLB on-field product ever. Spring Training Low Profile PROLIGHT #59FIFTY. https://t.co/LM6kJDpml7 https://t.co… +02/11/2018,Sports_celeb,@Bharper3407,The Happiest place on earth with my own little Minnie!😍 https://t.co/xWmzl5tI6v +02/06/2018,Sports_celeb,@Bharper3407,Training just got a lot easier with the Spring Training PROLIGHT Low Profile #59FIFTY cap! Excited to start the spr… https://t.co/5aTrLYH8Y2 +02/05/2018,Sports_celeb,@Bharper3407,Baseball already? Well that was way too fast!🤦🏼‍♂️ +02/02/2018,Sports_celeb,@Bharper3407,What a game! Wow😮 @GoldenKnights #GoKnightsGo #VGK +01/31/2018,Sports_celeb,@Bharper3407,"Maybe I’m crazy, but how do you get rid of @KirkCousins8? Isn’t he good? Like really good? Just a thought! #DC https://t.co/lIY4ZeU0fT" +01/29/2018,Sports_celeb,@Bharper3407,Speechless. #1october #GRAMMYs +01/26/2018,Sports_celeb,@Bharper3407,"Everybody has a hero if that’s an athlete, artist, actor, or anybody you look up to, but this man right here… https://t.co/tGVqmJwSuQ" +01/24/2018,Sports_celeb,@Bharper3407,Congrats to the @WashWizards @JohnWall and @RealDealBeal23 on the All-Star nod! Much deserved fellas🔥 #DCfamily https://t.co/4hGPLsj1ac +01/21/2018,Sports_celeb,@Bharper3407,Did anybody ever doubt that was going to happen? Brady is the G.O.A.T🔥 #Patriots #TeamUA +01/18/2018,Sports_celeb,@Bharper3407,This years leather!🔥 #BHxPablo https://t.co/Jf23mS0ue5 +01/18/2018,Sports_celeb,@Bharper3407,What a group!🔥 #TeamUA https://t.co/acaiBuG1oI +01/18/2018,Sports_celeb,@Bharper3407,"RT @UnderArmour: .@MichaelPhelps, @JordanSpieth and @Bharper3407 are looking for a 4th. Must need a medal, major or MVP to join. 😉 #Spieth2…" +01/18/2018,Sports_celeb,@Bharper3407,RT @JordanSpieth: Waiting on the rest of the team here to break in their new #Spieth2's.... https://t.co/Tb4LxSNNEo +01/17/2018,Sports_celeb,@Bharper3407,"RT @BryanHarper45: Seeing what happen to Tyler Hilinski last night really hit home. I’ve had family and friends end their lives, and suicid…" +01/17/2018,Sports_celeb,@Bharper3407,"RT @TerpsBaseball: The #Harper2, Maryland style. + +@UABaseball x #DirtyTerps https://t.co/qKiQbByER8" +01/16/2018,Sports_celeb,@Bharper3407,"RT @LDSquotable: ""The best is yet to come."" - President Eyring" +01/09/2018,Sports_celeb,@Bharper3407,Wow..True freshman to True freshman to win the National Championship!🙌🏻 #RollTideRoll +01/05/2018,Sports_celeb,@Bharper3407,Pops was money today!🔥 #Soonish https://t.co/CYyrZz2r9M +01/04/2018,Sports_celeb,@Bharper3407,"Decided to bundle up, go to the mountains and take some photos in the snow! Enjoying this cold… https://t.co/6d6izKc4SF" +01/03/2018,Sports_celeb,@Bharper3407,"I grew up loving Gordon B. Hinkley, but was a little to young to understand what a prophet was… https://t.co/9tHNfI7zuA" +01/01/2018,Sports_celeb,@Bharper3407,Happy New Years from The Harpers!🎉🤟🏼 #2018 https://t.co/0crHouhBdB +12/31/2017,Sports_celeb,@Bharper3407,Who’s ready for New Years Eve Las Vegas style? The crew over @stitchedlife got me covered as always! ❌❌❌❌ #nye2017 https://t.co/T0GUMMe7yF +12/29/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Sorry bout it!! We are for real! #BoldInGold #GoKnightsGo +12/28/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: 50!!! Yeah 50!!! @GoldenKnights https://t.co/laeqjZ9SZz +12/28/2017,Sports_celeb,@Bharper3407,Way to go boys!🙌🏻 #GoKnightsGo +12/27/2017,Sports_celeb,@Bharper3407,Why don’t the @Nationals have a jersey that says The District across it like the @WashWizards jerseys? That new “ci… https://t.co/K247NQZk6F +12/25/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: Merry Christmas Everyone 🎄❤️ https://t.co/JIZ8rQ098I +12/25/2017,Sports_celeb,@Bharper3407,Merry Christmas to my amazing parents. They deserve the world! Want to give a huge shout out to @polarisorv for mak… https://t.co/sFqYEccEkK +12/25/2017,Sports_celeb,@Bharper3407,Merry Christmas y’all!🎄❄️☃️ https://t.co/r1wjjRDZRz +12/24/2017,Sports_celeb,@Bharper3407,“I need some pool toys!” Nate Schmidt #GoKnightsGo https://t.co/zk88DTDr5p +12/23/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Can’t wait for the @GoldenKnights game tonight!! Hope we can convert some of the @Nationals fans? #GoKnightsGo +12/23/2017,Sports_celeb,@Bharper3407,"RT @GoldenKnights: The tradition of Festivus begins with the airing of...a Golden Knights hockey game, presented by @Topgolf. https://t.co/…" +12/20/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Holy shit what a game!! What a team! What a league!! #VGK @GoldenKnights +12/20/2017,Sports_celeb,@Bharper3407,WOW!!!!!😮 @GoldenKnights +12/20/2017,Sports_celeb,@Bharper3407,Boom baby!!! Go Knights Go🙌🏻 #VegasHockey +12/16/2017,Sports_celeb,@Bharper3407,"One year ago today I married my best friend! Your smile, laugh, freckles, and appetite has stolen my heart each and… https://t.co/dFuGj7n75O" +12/16/2017,Sports_celeb,@Bharper3407,"RT @DuckFootball: ""This is so much more than a game to me,"" said Tyrell Crosby, who will wear No. 58 Saturday to honor the shooting victims…" +12/14/2017,Sports_celeb,@Bharper3407,Temple Square last night!🙌🏻🎄 #SLC https://t.co/lbQbJ2k8sA +12/14/2017,Sports_celeb,@Bharper3407,"RT @Nationals: Bryce Harper was one of the top trending @MLB players of 2017 according to #YearInSearch. + +🔗: https://t.co/oM0srJUPsP https:…" +12/08/2017,Sports_celeb,@Bharper3407,"RT @DanielPlatzman: That time @benamckee and I sang “Viva Las Vegas” with @Bharper3407 into @MrTeller ‘s mic +#vegasstrong https://t.co/AUyi…" +12/08/2017,Sports_celeb,@Bharper3407,And it has started. I couldn’t care less what anybody says! The @LasVegasNFR is the greatest event of the year!🐎🐃 #CowboyUp +12/06/2017,Sports_celeb,@Bharper3407,RT @NASCARONFOX: Kurt Busch and Bryce Harper are #VegasStrong. https://t.co/cs7lwG94C2 +12/06/2017,Sports_celeb,@Bharper3407,I see you @RealDealBeal23 with the 51!😱 #DCfamily +12/06/2017,Sports_celeb,@Bharper3407,RT @RyanShazier: Thank you for the prayers. Your support is uplifting to me and my family. #SHALIEVE +12/05/2017,Sports_celeb,@Bharper3407,RT @Nationals: Join @Bharper3407 in helping to keep #VegasStrong! https://t.co/f0XjwRYRWG +12/05/2017,Sports_celeb,@Bharper3407,Prayers out to @RyanShazier!🙏🏼 #THE +12/03/2017,Sports_celeb,@Bharper3407,Eric Harlow the hero we all need!🌰 #TurfForDays #THE +12/02/2017,Sports_celeb,@Bharper3407,#VegasStrong https://t.co/opk3uk8TLH +11/29/2017,Sports_celeb,@Bharper3407,Show your support for #Vegas with an evening of incredible entertainment at the #VegasStrong Benefit Concert at… https://t.co/Qo9TGu9eXh +11/26/2017,Sports_celeb,@Bharper3407,RT @brittharppete: Hi friends!!! Go vote today please! Today and everyday!!! She’s the best! https://t.co/8rOBD7xp7f +11/26/2017,Sports_celeb,@Bharper3407,Best thing I’ve seen in a long time! On top of that @ovi8 with the hat trick for him was icing on the cake🎂… https://t.co/NkqZ1LSO0m +11/25/2017,Sports_celeb,@Bharper3407,RT @DickieV: @Bharper3407 Ppl in basketball better keep a keen eye on @SharkTank702 @Bharper3407 is a big hoops fan / I just want to be Bry… +11/25/2017,Sports_celeb,@Bharper3407,Great win by the boys tonight..Vegas is turning gold!🙌🏻 #GoKnightsGo https://t.co/2au0RgdVTM +11/20/2017,Sports_celeb,@Bharper3407,#GoKnightsGo +11/19/2017,Sports_celeb,@Bharper3407,"RT @NASCAR: ""I wanna be a race car driver some day."" — @DaleJr + +#Appreci88ion https://t.co/IVL48O4aUz" +11/19/2017,Sports_celeb,@Bharper3407,"RT @momofsevenMOS: @Bharper3407 @Nationals @MLB @NASCAR Thank you so much Bryce, and thank you for all you do for the kids! Vote everyday u…" +11/19/2017,Sports_celeb,@Bharper3407,"Calling all @Nationals, @MLB, @NASCAR, and my fans please take 2 min to vote for my friend Tammy Richardson!… https://t.co/6jgEkUlv1A" +11/17/2017,Sports_celeb,@Bharper3407,RT @nationwide88: Throwing it back to when @DaleJr met @Bharper3407 at @DISupdates. #CelebrateThe88 https://t.co/EOBouYdWzE +11/16/2017,Sports_celeb,@Bharper3407,The @unlvrebelgirls need your vote. There are only two teams left in the competition! Head to… https://t.co/20ftkBUF8t +11/11/2017,Sports_celeb,@Bharper3407,"Congrats to @Holts170 for career win number 200. What an amazing accomplishment, but of course many more to come!🙌🏻 #Caps" +11/06/2017,Sports_celeb,@Bharper3407,Man @KirkCousins8 you’re a stud!🙌🏻 #DCfamily +11/01/2017,Sports_celeb,@Bharper3407,I gotta say that’s a pretty good flip🙌🏻😂 What a stud! https://t.co/KWBTRSDD94 +10/30/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: O-H https://t.co/WrRo7Ey66Y +10/28/2017,Sports_celeb,@Bharper3407,Big time win by @OhioStateFB and big time day by @JT_theQB4th!💯🌰 #OH +10/28/2017,Sports_celeb,@Bharper3407,Boom!!🔥 #OH +10/25/2017,Sports_celeb,@Bharper3407,Me and the wife (@kayyharper8) had a great time tonight at our first @GoldenKnights game! Thanks for having us🙌🏻… https://t.co/PRpboTiUrA +10/24/2017,Sports_celeb,@Bharper3407,Pops trippin man! #findjujusbike✌🏼 @TeamJuJu https://t.co/wAasAMCFOA +10/07/2017,Sports_celeb,@Bharper3407,"RT @Nationals: To offer support or make a donation, please visit https://t.co/iKCYv8FdOI. + +#VegasStrong https://t.co/o8Z90Cl4V7" +10/05/2017,Sports_celeb,@Bharper3407,Vegas this is for you!💯 #VegasStrong https://t.co/QujvvVOMc6 +10/05/2017,Sports_celeb,@Bharper3407,RT @masnNationals: #Nats @Bharper3407 in a #VegasStrong hoodie during today's workout. #IBackTheNats https://t.co/MeFz8SIc8a +10/04/2017,Sports_celeb,@Bharper3407,What a first inning!🔥 #YankeesTwins +10/03/2017,Sports_celeb,@Bharper3407,RT @bigleaguestew: Give credit where it's due -- that was @Bharper3407's idea for baseball. https://t.co/8sTPxw3iNS +10/03/2017,Sports_celeb,@Bharper3407,Yes the @NBA did!🤔 #HarperThoughts https://t.co/eCpNkHnYK3 +10/03/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: #PrayersForLasVegas #RT #GodBless https://t.co/8LKxDb3hFL +10/02/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Whole Foods on GVP a donation center right now. UHaul truck full of water and snacks. #PrayersForVegas +10/02/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: 7 hr wait at the United Blood Service in Henderson. Not turning away but recommending to come back tomorrow and rest of… +10/02/2017,Sports_celeb,@Bharper3407,RT @Rebeksy: Don't play politics w/ OUR city. Just HELP. Donate blood. Volunteer at a donation center. Watch someone's kid so they can dona… +10/02/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: https://t.co/oDvjYX0k2f +10/02/2017,Sports_celeb,@Bharper3407,...My thoughts and prayers go out to the families that have been affected by this and to all the people that have l… https://t.co/LXtXKdYGPv +10/02/2017,Sports_celeb,@Bharper3407,The pride of Vegas runs deep when you are born and raised in such a great town. I can't fathom the horrific event that has taken place! ... +09/19/2017,Sports_celeb,@Bharper3407,RT @SVogt1229: Anyone that can help please let me know!!! https://t.co/rkqVwy9Ht2 +09/18/2017,Sports_celeb,@Bharper3407,Oh how I've missed this feeling!🔥 #5oclockplayer https://t.co/2hwsLn2Jwe +09/17/2017,Sports_celeb,@Bharper3407,15 in a 30!🔥 https://t.co/VG7UutKwjI +09/16/2017,Sports_celeb,@Bharper3407,RT @UnderArmour: From one slugger to another. @Bharper3407 shows his support for @canelo in advance of tonight’s title bout. #TeamUA #IWILL… +09/14/2017,Sports_celeb,@Bharper3407,"RT @barstoolsports: Whoever runs the Vegas Golden Knights Twitter account is a savage +https://t.co/rw1equO2Js https://t.co/Yg2Lgn9d51" +09/12/2017,Sports_celeb,@Bharper3407,RT @carolmaloney4: A story I've wanted to bring to the screen for 3 years now.. coming up on NBC4 later tonight. @Bharper3407 https://t.co… +09/11/2017,Sports_celeb,@Bharper3407,RT @masnNationals: Watch @Bharper3407 chat in the clubhouse after the #Nats clinched the NL East title! https://t.co/TDUV2IhI07 #IBackTheNa… +09/10/2017,Sports_celeb,@Bharper3407,RT @Nationals: ARE YOU NOT ENTERTAINED?! https://t.co/3XQiLSe1R6 +09/10/2017,Sports_celeb,@Bharper3407,#WeDemBoyz +09/09/2017,Sports_celeb,@Bharper3407,Congrats to @SloaneStephens on her win at the @usopen! What an incredible job she did🙌🏻 #UAfamily +08/31/2017,Sports_celeb,@Bharper3407,RT @Brutus_Buckeye: @Bharper3407 I-O from your FAVORITE 🌰!!!! 😉 #GoBucks https://t.co/XCPf5zJh31 +08/31/2017,Sports_celeb,@Bharper3407,O-H😜 #BuckeyeNation +08/30/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: The UA #Harper2 “Silent Service” Edition. Built with every weapon to light it up. + +Light up your game: https://t.co/71sQCU…" +08/28/2017,Sports_celeb,@Bharper3407,RT @Nationals: Be like @Bharper3407. Show us a photo of you with your favorite Starting Lineup figure today! https://t.co/JXRGQQg3A4 https:… +08/27/2017,Sports_celeb,@Bharper3407,They are both rich. They are both insanely good at what they do. And Floyd is the best ever! What a fight💯 #MayweatherMcGregor +08/26/2017,Sports_celeb,@Bharper3407,Come on Big Kid!🙌🏻 #PlayersWeeked https://t.co/8I5sipQxfe +08/26/2017,Sports_celeb,@Bharper3407,Favorite Emoji's and the Lumber!🙌🏻🍑🔥😂 #PlayersWeekend https://t.co/riqIDCuqE1 +08/26/2017,Sports_celeb,@Bharper3407,Tie Dye!🌈 #PlayersWeeked https://t.co/1oLVnjMH3D +08/26/2017,Sports_celeb,@Bharper3407,Eye of the Tiger!🐯 #PlayersWeeked https://t.co/ToXTwrYAqE +08/25/2017,Sports_celeb,@Bharper3407,Just landed in DC! Great scheduling👍🏻 +08/24/2017,Sports_celeb,@Bharper3407,"RT @Nationals: The @Bharper3407 Starting Lineup commercial '90s kids never knew they've always wanted. + +🎟️: https://t.co/mivoNHSUD0 https:…" +08/24/2017,Sports_celeb,@Bharper3407,Where's Billy Chapel when you need him?😳 #YanksTigers +08/22/2017,Sports_celeb,@Bharper3407,Baseball I miss you! https://t.co/l0JZoaQFwF +08/18/2017,Sports_celeb,@Bharper3407,"RT @theknot: Exclusive! MLB player Bryce Harper and his wife, Kayla, tell us everything about their wedding. See the album: https://t.co/g0…" +08/09/2017,Sports_celeb,@Bharper3407,"RT @MLB: Your favorite stars, their favorite gear. + +Get to know @MLB stars even better on #PlayersWeekend. https://t.co/Ydk9bZHkOf https://…" +08/01/2017,Sports_celeb,@Bharper3407,The Harper 2's ready to light it up for you! Head to the link to pick yours up today🔥 https://t.co/bSo6Kcq23y https://t.co/aDDeTs09M9 +08/01/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: 8/1 is near, and @Bharper3407 wants to know if you’ve signed up to get the #Harper2. + +https://t.co/4zJ8BlG8yf https://t.co/…" +07/29/2017,Sports_celeb,@Bharper3407,So proud to have the UA All-Americans lacing up the Harper 2's tonight in Chicago! Go get em fellas #uaallamerica https://t.co/LnFB6F9Q0Q +07/27/2017,Sports_celeb,@Bharper3407,"RT @Logic301: @Bharper3407 fam, just go from 5AM to I am the greatest. Or ballin. Keep killin it!" +07/27/2017,Sports_celeb,@Bharper3407,USA USA USA!!!!🇺🇸 #GoldCup +07/26/2017,Sports_celeb,@Bharper3407,@SharkWeek YUP!!!👋🏻 +07/26/2017,Sports_celeb,@Bharper3407,Shark week!! So epic🙌🏻 https://t.co/foj7L85AJF +07/24/2017,Sports_celeb,@Bharper3407,RT @barrysvrluga: Bryce Harper was taken first overall. Bryan Harper was taken 907th. Two brothers. Two paths. Teammates some day? https://… +07/19/2017,Sports_celeb,@Bharper3407,"RT @Cut4: Yunel Escobar greeted former teammate @Bharper3407 with the ol' ""slide the hand off the bag"" trick: https://t.co/6didTytUGd https…" +07/15/2017,Sports_celeb,@Bharper3407,Doubles in tennis has got to be one of my favorite events in sports! Watch your face💥💯 #Wimbledon2017 +07/12/2017,Sports_celeb,@Bharper3407,"RT @nflnetwork: We see you, @Bharper3407! https://t.co/hLIJ4GpKFQ" +07/12/2017,Sports_celeb,@Bharper3407,RT @SInow: Yadi did the hair flip in front of Bryce Harper 😂 https://t.co/2hgVqlC3yl +07/11/2017,Sports_celeb,@Bharper3407,For you Nino!💯 #JDF https://t.co/jBWxNERwjs +07/11/2017,Sports_celeb,@Bharper3407,RT @MLB: #MiamiBryce and his wife looking stellar on the #ASGRedCarpet. https://t.co/qOdR3HJPWG +07/11/2017,Sports_celeb,@Bharper3407,I grew this facial hair for fun! #Miami https://t.co/MHbkDbhEw2 +07/11/2017,Sports_celeb,@Bharper3407,RT @UnderArmour: .@Bharper3407 knows how to throw a party. Introducing the Miami Bryce #Harper2. #ASG https://t.co/ZYKsQuI1Z9 +07/06/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: In 4 days, we flip the switch and unleash the all-new UA #Harper2. + +Sign up for updates now: https://t.co/sD9hsr2vbm https:…" +07/06/2017,Sports_celeb,@Bharper3407,"RT @Nationals: Only 3 hours left to #VoteRendon! + +We're so excited! We're so excited! We're so ... scared... https://t.co/9CUUuSWAd7" +07/06/2017,Sports_celeb,@Bharper3407,Last chance to get your votes in for Sleepy!💯 Let's get it #VoteRENDON https://t.co/CaZJrCmQCf +07/04/2017,Sports_celeb,@Bharper3407,What a Country! Happy 4th of July🇺🇸 #USAUSAUSA https://t.co/1EO3KO4J8W +07/03/2017,Sports_celeb,@Bharper3407,Let's go Nats fans! It's time to get to work💯🙌🏻 #VoteRendon #MLBAllStarGame +06/22/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: It’s official!! Welcome to the @GoldenKnights MARC-ANDRE FLEURY!!! +06/22/2017,Sports_celeb,@Bharper3407,@MLB take notes on the @NHL's award show..The way it should be done! Celebrate the players💯👌🏻 #AmericasPastime +06/18/2017,Sports_celeb,@Bharper3407,Happy #FathersDay!! Join @neweracap and I in celebrating all dads with the @mlb Father's Day Collection. 🙌🏻🔥 https://t.co/zp8hyGSnOI +06/17/2017,Sports_celeb,@Bharper3407,RT @ABC: This 5-year-old boy has had 3 heart surgeries in his short life. Watch his incredible reaction as he finds out he's leaving the ho… +06/14/2017,Sports_celeb,@Bharper3407,My thoughts & prayers are w/ the victims & their families effected by the senseless act of violence at the Congressional Baseball Practice! +06/14/2017,Sports_celeb,@Bharper3407,RT @Nationals: 💪 #HarpersHeroes https://t.co/2sOuOOSFLb +06/11/2017,Sports_celeb,@Bharper3407,Let's go USA!!!🇺🇸⚽️ +06/11/2017,Sports_celeb,@Bharper3407,Nationals Dream Gala! What an incredible night out👏🏻 #Table1 https://t.co/qdrNjI4BdA +05/29/2017,Sports_celeb,@Bharper3407,RT @SoConSports: When you realize there's four more games tomorrow #currentmood #SoConBB https://t.co/vM4WBaczcT +05/29/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: In order to honor those who have served, @Bharper3407 debuted the #Harper2 this weekend. + +Sign up & get details: https://t.…" +05/27/2017,Sports_celeb,@Bharper3407,The HARPER 2 coming at you! Memorial Day edition🙌🏻🔥 https://t.co/uGtpGMJNfL +05/27/2017,Sports_celeb,@Bharper3407,"RT @IngrahamAngle: Just now: @Bharper3407 to Little Leaguers: ""I don't care what they say. Winning is good...losing isn't fun. No participa…" +05/27/2017,Sports_celeb,@Bharper3407,This #MemorialDay weekend we honor those who have made the ultimate sacrifice for our freedom !! 🇺🇸 @NewEraCap https://t.co/HTefvPkUDQ +05/24/2017,Sports_celeb,@Bharper3407,Congrats and good luck to the CSN Coyotes baseball team on getting back to Grand Junction! Get you a title boys🙌🏻 #Yotes #JCWS +05/14/2017,Sports_celeb,@Bharper3407,"RT @espnW: ""You held my hand as a child but you will hold my heart forever."" + +@Bharper3407's letter to his mom: https://t.co/cGPFS00knl" +05/13/2017,Sports_celeb,@Bharper3407,"JWall you are an absolute stud! Talk about Clutch..Wow!🏀 On to the next #DCfamily ""I ain't going home"" -@JohnWall" +05/09/2017,Sports_celeb,@Bharper3407,"Dear Mom, I love you!👀❤️U + +https://t.co/i5RS3MIa95" +04/17/2017,Sports_celeb,@Bharper3407,"Baseball games ending in a tie? Sounds like a lot of lost excitement to me⚾️💥 +https://t.co/088Ek350hq" +04/01/2017,Sports_celeb,@Bharper3407,RT @BrodyLogan: Bryce Harper looking like Captain America https://t.co/Zy1xBbDK4T +04/01/2017,Sports_celeb,@Bharper3407,RT @Cut4: Real recognize real. https://t.co/Bl0FJSVwkA +04/01/2017,Sports_celeb,@Bharper3407,"RT @NavyAthletics: From the Brigade of Midshipman, thank you for showing off your talents today @Nationals @Bharper3407 #GoNavy https://t.c…" +04/01/2017,Sports_celeb,@Bharper3407,RT @MLB: .@Bharper3407 showing his support for the troops at the @NavalAcademy. 🇺🇸 https://t.co/5oi6QKtQz1 +04/01/2017,Sports_celeb,@Bharper3407,RT @TMobile: Don't want to miss a game? No problem ⚾ Download the #TMobileTuesdays app for a FREE subscription to @MLBTV Premium. https://t… +03/31/2017,Sports_celeb,@Bharper3407,It's as comfortable as it looks! #TMobileONEsie ! Thanks @JohnLegere and @TMobile! https://t.co/CFdRNa4VBq +03/29/2017,Sports_celeb,@Bharper3407,RT @wapodesign: Wednesday is a Bonus Day for The Post print subscribers. A few of the treats we're delivering – baseball section + extra Fo… +03/26/2017,Sports_celeb,@Bharper3407,Get your #CapsOn ! Head to your local @Lids and step up your cap game with @NewEraCap to get ready for Opening Day… https://t.co/Lv1RL6u3PX +03/21/2017,Sports_celeb,@Bharper3407,The Gramps @D_Ross3 absolutely killed it on his first dance tonight! I see ya👀 #DWTS +03/16/2017,Sports_celeb,@Bharper3407,Riding through last year’s Spring training like @JaguarUSA 💯 #JaguarXE #TBT https://t.co/6f6JffAlze +03/12/2017,Sports_celeb,@Bharper3407,@MStrooo6 you is a baaaaaaddd man!🇺🇸 #StruttinStroman +03/11/2017,Sports_celeb,@Bharper3407,I see you Jonesy!!! USA USA USA🇺🇸 #ForGlory +03/11/2017,Sports_celeb,@Bharper3407,Crawford is way to good! So smooth💯 #USA +03/10/2017,Sports_celeb,@Bharper3407,Good luck to the boys as they start in the @wbcbaseball today! Have some fun and represent The USA well🇺🇸… https://t.co/2OFuamPlL8 +05/22/2018,Sports_celeb,@TheJudge44,Practice makes perfect! 😂 https://t.co/43lokmrVuE +05/11/2018,Sports_celeb,@TheJudge44,RT @KoltenWong: Aloha everybody! Please join my Gofundme campaign in an effort to provide assistance for all those affected by the ongoing… +04/18/2018,Sports_celeb,@TheJudge44,Loving that follow through!! #HRswing 👊👊 https://t.co/6IsZPm8j5J +04/11/2018,Sports_celeb,@TheJudge44,Who loves opening @topps cards?  Did you get to pull this card yet?! #ToppsPartner https://t.co/2GYzc9twP0 +04/04/2018,Sports_celeb,@TheJudge44,@DidiG18 You got me...😂 https://t.co/8hRPyUc296 +04/04/2018,Sports_celeb,@TheJudge44,⚔️⚔️⚔️ https://t.co/UQ41zFdGKM +03/27/2018,Sports_celeb,@TheJudge44,Welcome to the takeover. Can’t wait to rock with @adidasbaseball & rep those 3 stripes! #teamadidas https://t.co/ql93HKKq5M +02/27/2018,Sports_celeb,@TheJudge44,Humbled to be playing with one of baseball's living legends. That doesn't mean I'm going easy on him in @MLBTheShow… https://t.co/DFCnqiubn0 +02/12/2018,Sports_celeb,@TheJudge44,@JakeCave8 Hahaha😂😂 +02/09/2018,Sports_celeb,@TheJudge44,@dbolasky6 @TrentonThunder 😂😂 +02/05/2018,Sports_celeb,@TheJudge44,@TorresGleyber Whoaaa....👨🏽‍⚖️👀 +01/19/2018,Sports_celeb,@TheJudge44,@c_coshow Just wait till spring brotha! 😂 +01/19/2018,Sports_celeb,@TheJudge44,Big shout out to my man @Teacherman1986 Thank you for all the hard work and dedication to transform my swing in 201… https://t.co/koa5ZkZBwn +01/09/2018,Sports_celeb,@TheJudge44,Wow... 👊 @Tuaamann_ +01/09/2018,Sports_celeb,@TheJudge44,@Brett_Phillips8 @PaulieViz Let’s do it!!👊👊 +12/09/2017,Sports_celeb,@TheJudge44,Hey @Giancarlo818....👊 https://t.co/0542MWBIpv +11/19/2017,Sports_celeb,@TheJudge44,"Aye, put a finger in the sky if you want it! #dreamville @JColeNC https://t.co/illsAl3Owc" +11/17/2017,Sports_celeb,@TheJudge44,M-V-P!!! Nobody more deserving than you!! Congrats on an unforgettable 2017!! @JoseAltuve27 https://t.co/tEMy9u8qGc +11/13/2017,Sports_celeb,@TheJudge44,"This week, I had the chance to surprise @Pepsi employees at their office. They gave me a warm welcome as I join the… https://t.co/xNiUNgiwIW" +11/07/2017,Sports_celeb,@TheJudge44,Honored to be on the cover for #TheShow18 @MLBTheShow #ad https://t.co/aNrXVA7k3I https://t.co/yXpvyO0cyN +10/24/2017,Sports_celeb,@TheJudge44,"I would like to thank the Yankees organization, my teammates and the greatest fans in the world for an unforgettabl… https://t.co/Tj3NxKUEjn" +10/04/2017,Sports_celeb,@TheJudge44,RT @DRob30: I've never felt another man's pain more 😂 https://t.co/DNHzXeLjaU +09/30/2017,Sports_celeb,@TheJudge44,@MStrooo6 Much respect @MStrooo6!! Love your fire and passion for this game!! Keep that chip on your shoulder!!👊👊 +09/29/2017,Sports_celeb,@TheJudge44,RT @derekcarrqb: Praying for you @tae15adams ! +09/27/2017,Sports_celeb,@TheJudge44,"RT @YESNetwork: RT if you can't watch this @AaronHicks31 grand slam-robbing catch enough. + +@Yankees #YANKSonYES https://t.co/HOPAw2q0wU" +09/24/2017,Sports_celeb,@TheJudge44,RT @Yankees: We'll give Didi a pass on his postgame tweet tonight. 😂 https://t.co/zTDsG8r5EI +09/24/2017,Sports_celeb,@TheJudge44,2017 postseason #notdoneyet 👎🍾 https://t.co/DJKvuZgzAr +09/20/2017,Sports_celeb,@TheJudge44,👎 https://t.co/iGsaGr4IpJ +09/15/2017,Sports_celeb,@TheJudge44,RT @_tylerwade: 😂😂😂 https://t.co/mQcPJ7oFyw +09/11/2017,Sports_celeb,@TheJudge44,"Best blanket in the game!! +https://t.co/Dq0wkJTjcr 👌 https://t.co/afY4Bio1zV" +08/15/2017,Sports_celeb,@TheJudge44,Hey guys I'm excited to announce I've teamed up with @fanatics as my exclusive memorabilia partner! Check them out!… https://t.co/RD0IRkhFst +07/28/2017,Sports_celeb,@TheJudge44,RT @Yankees: This Gardy Party is LIT. 💯 https://t.co/O9lM1HIcgl +07/22/2017,Sports_celeb,@TheJudge44,Had a great time at @bungie checking out @DestinytheGame 2. Thanks for having us! https://t.co/bRSESpTjwv +07/17/2017,Sports_celeb,@TheJudge44,@rchealy25 @JackieBradleyJr https://t.co/3UlTooRufs +07/06/2017,Sports_celeb,@TheJudge44,RT @Gumbynation34: Everyone vote and get @DidiG18 the the All Star game! #SirDidi4Sure +07/03/2017,Sports_celeb,@TheJudge44,@JakeCave8 Thanks Jake!!🌚👊 +07/03/2017,Sports_celeb,@TheJudge44,"RT @DidiG18: 🛩➡️🏝⚾️🏖??? 🤔 +#SirDidi4Sure" +07/03/2017,Sports_celeb,@TheJudge44,@_KendallColeman Appreciate the love Kendall!!👊 +07/03/2017,Sports_celeb,@TheJudge44,@LuisCessaMx Thanks brotha!👊 +06/28/2017,Sports_celeb,@TheJudge44,RT @_tylerwade: Extremely blessed to have had my dream come true yesterday. Couldn't be more excited for this journey. Thank you to everyon… +05/15/2017,Sports_celeb,@TheJudge44,@T1721Austin 🌚🙌 +05/14/2017,Sports_celeb,@TheJudge44,"RT @CC_Sabathia: Not just a teammate. Not just a friend. You are family. To me, to the Yankees organization, to all of the game of baseball…" +05/06/2017,Sports_celeb,@TheJudge44,😂😂👊 https://t.co/90tZTwGl85 +04/29/2017,Sports_celeb,@TheJudge44,What a game!! https://t.co/LiEfn2x2c5 +04/26/2017,Sports_celeb,@TheJudge44,"RT @PlayersTribune: Voting is LIVE for these three @Yankees. + +Bird: https://t.co/Lb6C8ZAOl8 + +Torreyes: https://t.co/9hQQlk7hlb + +Headley: ht…" +04/16/2017,Sports_celeb,@TheJudge44,Happy Easter everyone! He is Risen! ☀️ +03/27/2017,Sports_celeb,@TheJudge44,RT @LuisSeverino94: Having fun with the guys @DBetances68 @CC_Sabathia @starlincastro12 @TheJudge44 @AaronHicks31 https://t.co/EFoKSXN8vn +03/27/2017,Sports_celeb,@TheJudge44,It's going to be a fun year! #2k17 https://t.co/WwUw0pbKYy +03/19/2017,Sports_celeb,@TheJudge44,@C_Reed24 Please tell me you've listened to this....🔥🔥🔥 https://t.co/EsgrkQas3x +03/18/2017,Sports_celeb,@TheJudge44,Yes!! 🔥🔥🔥 https://t.co/I9488Q0t1t +03/02/2017,Sports_celeb,@TheJudge44,@NEEKSFSU 😂😂👊 +03/02/2017,Sports_celeb,@TheJudge44,@LA_Swiftness yes!!😂👊 +03/02/2017,Sports_celeb,@TheJudge44,RT @T1721Austin: It was a lifelong dream to have my own rookie card! Check it out with 2017 Topps Baseball! #ToppsPartner @Topps https://t.… +03/01/2017,Sports_celeb,@TheJudge44,RT @Topsheff42: Takin in knowledge from big brodie @CC_Sabathia https://t.co/cMgsBWuOX4 +02/26/2017,Sports_celeb,@TheJudge44,@rileyjones23 👊👊 hope all is well brotha! +02/13/2017,Sports_celeb,@TheJudge44,😂😂 love it!! https://t.co/gyxyk7yVCD +02/08/2017,Sports_celeb,@TheJudge44,That feeling you get when you know the boys are back in town!! #ST2K17 ⚾️ https://t.co/GIsTn1g8Kd +02/06/2017,Sports_celeb,@TheJudge44,Every kid dreams for a game like this!!! Wow.....And with that it's time for some baseball!! 👊👊 +02/06/2017,Sports_celeb,@TheJudge44,@thekillaj1986 tell me about it!!! https://t.co/72QezWL7el +02/06/2017,Sports_celeb,@TheJudge44,RT @LA_Swiftness: Brady 🐐 +02/06/2017,Sports_celeb,@TheJudge44,Wow!!😳 +02/06/2017,Sports_celeb,@TheJudge44,@_KendallColeman @MichaelONeill10 https://t.co/8RHnMqdhQz +01/06/2017,Sports_celeb,@TheJudge44,@AndreNichole Hope you enjoy the city! Make sure you check out a Broadway show! 🌃🗽 +01/06/2017,Sports_celeb,@TheJudge44,@Rob_Refsnyder @Khaynes30 Hammer Haynes and Rally Rob here to get you fired up for the 9th inning! +01/05/2017,Sports_celeb,@TheJudge44,@Rob_Refsnyder 🔥🔥 +12/31/2016,Sports_celeb,@TheJudge44,@JoshRogers13 @MichaelONeill10 https://t.co/hUUJpBe7SZ +12/25/2016,Sports_celeb,@TheJudge44,Going to bed knowing it's Christmas tomorrow! 🎄🎅🏼 #ChristmasEve https://t.co/7FnALipx48 +12/25/2016,Sports_celeb,@TheJudge44,@BlakeRuth2 It's a Wonderful Life... https://t.co/GVUa7RVYHf +12/20/2016,Sports_celeb,@TheJudge44,@_tylerwade congrats man! She's one lucky lady! 🌚👏🏽 +12/11/2016,Sports_celeb,@TheJudge44,@JakeCave8 100%🌚 +12/08/2016,Sports_celeb,@TheJudge44,@nciuffo14 😂👊 +12/06/2016,Sports_celeb,@TheJudge44,What a night! Great performance by the @Rockettes! #ChristmasInNewYork https://t.co/To5OifhlVb +11/25/2016,Sports_celeb,@TheJudge44,@24mljones @tai_walker do it!👌 #99 +11/17/2016,Sports_celeb,@TheJudge44,Always fun working on the craft! #arizonalivin https://t.co/y9KRBX9QgO +11/03/2016,Sports_celeb,@TheJudge44,"RT @swbrailriders: Congrats to RailRider Jake Cave, earning the #MiLBY for 2016's Top Home Run! https://t.co/7CenYjFFHF https://t.co/0Zfclz…" +11/01/2016,Sports_celeb,@TheJudge44,Every athlete young and old needs to read this!! Wow! https://t.co/CigCAFybM5 +10/30/2016,Sports_celeb,@TheJudge44,@T_Garrison11 👀👀 whoaaaaa!!! +10/29/2016,Sports_celeb,@TheJudge44,😂😂 https://t.co/9tpBiZBcqD +10/15/2016,Sports_celeb,@TheJudge44,"RT @steinersports: There's no better feeling than meeting your heroes on a beautiful Saturday afternoon. 💯 + +#BabyBombers™ making dreams com…" +10/05/2016,Sports_celeb,@TheJudge44,Thanks for all the amazing support during my @Esurance #CallUpWorthy season in the Bronx. Can’t wait for 2017! https://t.co/uud0Byz9Oz +09/21/2016,Sports_celeb,@TheJudge44,RT @swbrailriders: Torres FLIES TO RIGHT!!! YOUR RAILRIDERS ARE GILDAN TRIPLE-A NATIONAL CHAMPIONS! A 3-1 FINAL IN MEMPHIS! https://t.co/B3… +09/19/2016,Sports_celeb,@TheJudge44,Check out my latest timepiece! Thanks @boldrwatches #warhawk #beboldr https://t.co/rvQKZaPPiJ +09/15/2016,Sports_celeb,@TheJudge44,@theprestonb15 great meeting you yesterday! Good luck in the tourney!👊 +09/09/2016,Sports_celeb,@TheJudge44,Excited to support such a great cause! All proceeds go to the Kids Place in Tampa! https://t.co/GW0puDAlg2 https://t.co/G5foeZr54p +09/09/2016,Sports_celeb,@TheJudge44,RT @Its_all_Goody41: #TA. 👆🏽👆🏽 +08/27/2016,Sports_celeb,@TheJudge44,RT @BenHeller21: Thank you to everyone for the support tonight! Making my debut was even better than what I've always dreamed it of being!… +08/26/2016,Sports_celeb,@TheJudge44,Dreamed of playing ball at the highest level since I was a kid. Honored to be @esurance #CallUpWorthy in The Bronx! https://t.co/nopf4uUBqB +08/19/2016,Sports_celeb,@TheJudge44,No words to describe the moment when you are @esurance #CallUpWorthy Shout out to everyone for the support this week https://t.co/MNXZjg3oIM +08/17/2016,Sports_celeb,@TheJudge44,RT @MLBNetwork: One of the Baby Bombers! The @Yankees' @T1721Austin joins #MLBCentral right now https://t.co/qAA3i5GznI +08/04/2016,Sports_celeb,@TheJudge44,"RT @Its_all_Goody41: BIG CONGRATS to my brother @ElGarySanchez on his first hit! Couldn't be happier!! 2,999 to go #vamo" +08/02/2016,Sports_celeb,@TheJudge44,"Make a difference, Lord willing! https://t.co/oXzYwapR5Y" +07/29/2016,Sports_celeb,@TheJudge44,RT @JDiazZone: @NickSwisher thanks brother!! https://t.co/zMFcYwnf4N +07/04/2016,Sports_celeb,@TheJudge44,RT @ov_1: @TheJudge44 how fun was this night? We won that dinger derby! @CollegeHRDerby https://t.co/Lb0BPVeD5s +06/26/2016,Sports_celeb,@TheJudge44,"RT @MiLB: #Yankees catcher @the_higster has two homers, a career-high seven RBIs for @TrentonThunder. https://t.co/WtbatSqk6R https://t.co/…" +06/25/2016,Sports_celeb,@TheJudge44,What a night!!💪 @T1721Austin https://t.co/YF00wTMeSN +06/16/2016,Sports_celeb,@TheJudge44,RT @Cut4: .@Yankees prospect @JakeCave8 went yard yesterday … onto the roof of an apartment building: https://t.co/P0swXQkcmk https://t.co/… +06/10/2016,Sports_celeb,@TheJudge44,RT @JakeCave8: Some travelaid for this long bus trip @LifeAIDBevCo https://t.co/pnaR1BtXnk +06/09/2016,Sports_celeb,@TheJudge44,#tbt #MLBDraft https://t.co/P95TavuGdd +06/07/2016,Sports_celeb,@TheJudge44,"RT @MiLB: #Yankees No. 8 prospect Tyler Wade is learning second base, leading by example in Double-A https://t.co/OtKsFH95Tj https://t.co/D…" +06/05/2016,Sports_celeb,@TheJudge44,@JakeCave8 🌚... +05/29/2016,Sports_celeb,@TheJudge44,@LA_Swiftness 🤔 #SplashBrothers +05/17/2016,Sports_celeb,@TheJudge44,"RT @YESNetwork: The @Yankees don't just have one player making his MLB debut tonight... + +Introducing: Conor Mullee! #YANKSonYES https://t.c…" +05/12/2016,Sports_celeb,@TheJudge44,#Throwback https://t.co/3beQJpabzL +05/11/2016,Sports_celeb,@TheJudge44,RT @E_Jagielo: 500 retweets and I shave my head! +05/10/2016,Sports_celeb,@TheJudge44,RT @YESNetwork: Ben Gamel records his first career MLB base hit! Better hang onto that ball. #YANKSonYES https://t.co/dfC3IpwbsU +05/10/2016,Sports_celeb,@TheJudge44,Atta boy Benny!! #FirstKnock +05/01/2016,Sports_celeb,@TheJudge44,"RT @TYRadioGuy: T-Yanks @MarkPayton2 (3-for-4, R) recorded his 3rd 3-hit game of the season and is batting .329. #Yankees" +05/01/2016,Sports_celeb,@TheJudge44,RT @TYRadioGuy: T-Yanks @MichaelONeill10 (1-for-3) is now on a 6-game hitting streak and owns a .338 batting average. #Yankees +04/27/2016,Sports_celeb,@TheJudge44,There is nothing better then getting a win on your birthday! Thank you to everyone for the happy birthday wishes. +04/22/2016,Sports_celeb,@TheJudge44,"@TheDA53 anytime brother, glad I could help!" +04/21/2016,Sports_celeb,@TheJudge44,I met a lot of future Yankees tonight! #Railriders @swbrailriders https://t.co/N1DMgtKND6 +04/15/2016,Sports_celeb,@TheJudge44,RT @StevenOleksy: Thank you to the @swbrailriders I had a blast&met some true professionals @TheJudge44 @NickSwisher @heathcott_slade https… +04/15/2016,Sports_celeb,@TheJudge44,RT @the_higster: @TheJudge44 @A_Smitty38 @EvanRutckyj pretty stoked to get on @TheDivisionGame with you guys @Ubisoft https://t.co/h4KfqjtR… +04/14/2016,Sports_celeb,@TheJudge44,What a game! #MambaDay +04/12/2016,Sports_celeb,@TheJudge44,RT @PlayersTribune: The inside stories that define @kobebryant from those who know him best. https://t.co/8OKwBHaeHl https://t.co/tmaORIrE09 +04/10/2016,Sports_celeb,@TheJudge44,@Rob_Refsnyder and I are having a strong debate here and we need some help... +04/04/2016,Sports_celeb,@TheJudge44,@HOHLin1 @watCanBROWNdo4 Thanks Brady!! Hope all is well with you guys! #Pilots +04/04/2016,Sports_celeb,@TheJudge44,RT @swbrailriders: Look who's locker is ready to go....@TheJudge44 #MiLBisback https://t.co/Ko22r5iIYK +03/27/2016,Sports_celeb,@TheJudge44,He is Risen! +03/22/2016,Sports_celeb,@TheJudge44,RT @LoHudYankees: Meet Dan Fiorito: Your favorite prospect's favorite prospect https://t.co/uzcB1n4ZTJ +03/17/2016,Sports_celeb,@TheJudge44,@JakeCave8 we need to talk....🌚 https://t.co/jIU30FNEpW +03/13/2016,Sports_celeb,@TheJudge44,@Fresno_State is going dancing! #GoDogs +03/06/2016,Sports_celeb,@TheJudge44,Go Bolts!! @TBLightning https://t.co/oTekzsaDA4 +03/01/2016,Sports_celeb,@TheJudge44,Thank you @JamesKaprielian and @_tylerwade for locking me and @MichaelONeill10 into the #TheBachelor 🌹 +02/29/2016,Sports_celeb,@TheJudge44,RT @Brett_Phillips8: Oh goodness he's back 😑 that guy has an ugly laugh smh https://t.co/AH5w9xuWRg +02/25/2016,Sports_celeb,@TheJudge44,RT @_tylerwade: Best time of the year is back! #springtraining2016 who's ready ? https://t.co/CrRGxiuxjb +02/24/2016,Sports_celeb,@TheJudge44,@EddyRodriguezU hahaha😂 +02/14/2016,Sports_celeb,@TheJudge44,@SuaveCF1 hahaha stoppp😂 +02/12/2016,Sports_celeb,@TheJudge44,RT @StephenCurry30: Aiming for the back to back. Lacing up in the new #CurryTwo Energy. #PlayForMore. https://t.co/Gx2Wm2en7J +02/11/2016,Sports_celeb,@TheJudge44,RT @JamesKaprielian: Bryson Tiller live as usual @elijahsteen7 @kyleholder22 @TheJudge44 @_tylerwade +02/07/2016,Sports_celeb,@TheJudge44,Yesss!!😂 https://t.co/iKkt0vpVIR +02/07/2016,Sports_celeb,@TheJudge44,@JakeCave8 😢 +01/30/2016,Sports_celeb,@TheJudge44,"RT @TYRadioGuy: Happy #Gasparilla day, #TampaBay!" +01/30/2016,Sports_celeb,@TheJudge44,@jp_crawford I'll see you at Spring Training brother! 💪 +01/19/2016,Sports_celeb,@TheJudge44,@AaronHicks31 @JJRedick 🔥🔥🔥 +01/14/2016,Sports_celeb,@TheJudge44,@Mark_Gawenus @MLB 👌👌 +01/12/2016,Sports_celeb,@TheJudge44,@t_dugas1 🌚 #incredible +01/12/2016,Sports_celeb,@TheJudge44,RT @masonkatz58: Well dang. What a great game +01/12/2016,Sports_celeb,@TheJudge44,@Montanez_10 🤔 +01/12/2016,Sports_celeb,@TheJudge44,"RT @Mike_Anthony13: @TheJudge44 my family sends thanks for being 7foot11 and in yellow, made it easy for them to find me in this😂😂 https://…" +01/12/2016,Sports_celeb,@TheJudge44,@Mike_Anthony13 glad I could help!!😂 haha #bigbird +01/12/2016,Sports_celeb,@TheJudge44,@_tylerwade good call!😎 +01/11/2016,Sports_celeb,@TheJudge44,@t_dugas1 @CoachMurph35 I know you and @A_Smitty38 are #ALLIN too right? +01/11/2016,Sports_celeb,@TheJudge44,@CoachMurph35 🌚 #ALLIN +01/11/2016,Sports_celeb,@TheJudge44,#NationalChampionship  tonight who you guys going for you? #ALLIN  #RollTide +01/10/2016,Sports_celeb,@TheJudge44,RT @MiLB: Color this week's Podcast Red w/guests @E_Jagielo & dir. of player development Jeff Graupe. https://t.co/hl2up15u2x https://t.co/… +01/10/2016,Sports_celeb,@TheJudge44,RT @MLBPipeline: Tons of future stars at @MLB's Rookie Career Development Program. Who can you spot? Top 100: https://t.co/Z9gx7UiSxD https… +01/03/2016,Sports_celeb,@TheJudge44,What a half!! #alamobowl #LeaveItAllOnTheField +12/31/2015,Sports_celeb,@TheJudge44,What a time! #2015 https://t.co/mnPoRn3BYr +12/26/2015,Sports_celeb,@TheJudge44,@Joshuapoytress Merry Christmas poyt! +12/26/2015,Sports_celeb,@TheJudge44,Merry Christmas everyone! Remember the reason for the season and always count your blessings! #MerryChristmas +12/24/2015,Sports_celeb,@TheJudge44,@Stuivailala wrapping!! +12/23/2015,Sports_celeb,@TheJudge44,@jtfiles5 what have you been up to man!? +12/20/2015,Sports_celeb,@TheJudge44,@saigeypoo11 @JakeCave8 @SamBrack_ this is what happens when I get on the keys...🔥🔥🔥 https://t.co/ERpzgVZo89 +12/19/2015,Sports_celeb,@TheJudge44,@JakeCave8 @rutckyj_ the force is strong with this one! +12/19/2015,Sports_celeb,@TheJudge44,Time for #StarWarsTheForceAwakens @rutckyj_ have you seen it yet?!? +12/15/2015,Sports_celeb,@TheJudge44,RT @YESNetwork: #Yankees sign Hall of Famer & 12-time All-Star RF Dave Winfield on this day in 1980: https://t.co/jBy7U56KJq https://t.co/E… +12/15/2015,Sports_celeb,@TheJudge44,@_GBIRD33 @ReverandLorenz 🙌🙌 +12/13/2015,Sports_celeb,@TheJudge44,#monicagotrobbed https://t.co/79qN7yv2iv +12/12/2015,Sports_celeb,@TheJudge44,#monicagotrobbed https://t.co/Gne9YbWrYW +12/10/2015,Sports_celeb,@TheJudge44,Congrats to @JakeCave8 and @rutckyj_ ! Gonna miss ya guys but well deserved! #Reds #Braves +12/06/2015,Sports_celeb,@TheJudge44,@rutckyj_ @_GBIRD33 @RollerKyle @the_higster @EA @starwars already got it man!!! We need to play ASAP! +12/06/2015,Sports_celeb,@TheJudge44,"@Munz16 It's a Wonderful Life, come on man!!" +12/06/2015,Sports_celeb,@TheJudge44,Time for the best movie during the holidays!! 🙌 https://t.co/O7g1CCT7JB +12/06/2015,Sports_celeb,@TheJudge44,"@Meyer17A haha we might have to set up a game!! Hope all is well brotha, happy holidays to you as well!" +12/06/2015,Sports_celeb,@TheJudge44,"Getting the arm loose with a football today, where you at @heathcott_slade?! https://t.co/bZUlpJN1Uq" +12/03/2015,Sports_celeb,@TheJudge44,@_GBIRD33 finally!!! #Bird +12/01/2015,Sports_celeb,@TheJudge44,@chuckiefick better late than never!! 😂Hope all is well! +11/26/2015,Sports_celeb,@TheJudge44,RT @Yankees: We are thankful today and every day that we have the greatest fans. #PinstripePride https://t.co/eP0WpCVjJL +11/26/2015,Sports_celeb,@TheJudge44,"Happy Thanksgiving everyone!! Thankful for my family, friends and all of God's blessings! #HappyThanksgiving 🦃" +11/26/2015,Sports_celeb,@TheJudge44,@JakeCave8 how's the winter league been?? https://t.co/ecjoETroV5 +11/12/2015,Sports_celeb,@TheJudge44,@MurphsLaws hahaha I was just telling that story the other day!!😂 #Dangit +11/07/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder so you got jokes now...? +11/07/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder great!! Can't wait to stop by!! +10/13/2015,Sports_celeb,@TheJudge44,RT @MLBPipeline: The Great Gary! @Yankees' Sanchez hits 3-run bomb in opening inning of @MLBazFallLeague: http://t.co/0zkSawOOaF http://t.c… +10/06/2015,Sports_celeb,@TheJudge44,RT @Yankees: The #WildCard scene is set. #ChaseFor28 http://t.co/ax0lQKhIbc +10/03/2015,Sports_celeb,@TheJudge44,RT @SuaveCF1: 1st career at bat = 1st career hit #waaaayyyyup #BLESSED 🙏☝️ •… https://t.co/WWhg6ZvfjQ +09/26/2015,Sports_celeb,@TheJudge44,"My friend Lee is running half an IronMan to raise money for a little girl in need named Valeria, please check it out! http://t.co/VrqhHKLkEu" +09/15/2015,Sports_celeb,@TheJudge44,Slade!! #clutch #GreatMohawk +09/13/2015,Sports_celeb,@TheJudge44,@JakeyReed5 you watching this game?!? #UOvsMSU +09/12/2015,Sports_celeb,@TheJudge44,"RT @tylerbeede: ""What no eye has seen, what no ear has heard, and what no human mind has conceived"" — the things God has prepared for those…" +09/11/2015,Sports_celeb,@TheJudge44,RT @MLBNetwork: Never forget. http://t.co/CPZr06ztb2 +09/05/2015,Sports_celeb,@TheJudge44,@applextree thanks for the help tonight! +09/05/2015,Sports_celeb,@TheJudge44,RT @MiLB: Now on http://t.co/h5NSY7VuJN: Ben Gamel comes up with a diving catch for @swbrailriders. http://t.co/DszgWBi5ae +09/04/2015,Sports_celeb,@TheJudge44,RT @Its_all_Goody41: champagne showers @swbrailriders @GrantCagle2 @johnny_barbato @heathcott_slade @TheJudge44 @blail3 @SnapDragonMonty ht… +09/03/2015,Sports_celeb,@TheJudge44,RT @SuaveCF1: Thanks for making this road easier for me Brother #prepared #selfless #relentless https://t.co/9tTOEGcBnq +09/01/2015,Sports_celeb,@TheJudge44,"RT @YankeesPR: INF/OF Ackley, RHP Bailey, RHP Cotham, OF Noel, LHP Pazos, INF Pirela, INF Refsnyder & C Romine will be added to the active …" +08/31/2015,Sports_celeb,@TheJudge44,RT @TampaYankees: Congrats @MichaelONeill10 & @Gumbynation34 - The @FloridaStateLg Player & Pitcher of the Week! http://t.co/IFNbOWypb3 htt… +08/31/2015,Sports_celeb,@TheJudge44,RT @YankeesonDemand: Outfielder Ben Gamel has had a breakout season with the @swbrailriders: http://t.co/RA8tPlCDnM http://t.co/2V07YsPBDD +08/27/2015,Sports_celeb,@TheJudge44,@sean__ob great seeing you as well OB!! #BrewCrew +08/25/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder http://t.co/6QgG3Cb6L1 +08/24/2015,Sports_celeb,@TheJudge44,It's always great having a Yankee legend in town!! #MrOctober http://t.co/TZkg2yzikC +08/23/2015,Sports_celeb,@TheJudge44,"Thank you @Khaynes30 for showing me @getpopkey, if you don't have it yet you are missing out!! #gamechanger" +08/23/2015,Sports_celeb,@TheJudge44,RT @Justan_Mitchell: We'll stick to chocolate @DippinDots @TheJudge44 #Homer #Bombs +08/20/2015,Sports_celeb,@TheJudge44,RT @SportsNation: Yankees fans this morning #BirdIsTheWord https://t.co/lGxcT4zMMn +06/29/2018,Sports_celeb,@davidortiz,July 14th @ Fenway!! https://t.co/lOfHjT9lrk https://t.co/p8bXXYUw3h +06/28/2018,Sports_celeb,@davidortiz,JD Martinez continues to rakeee... no. 25 for my boy FLACO! Collect this great #TOPPSNOW moment for a limited time:… https://t.co/PjeI47FZXf +06/23/2018,Sports_celeb,@davidortiz,Hate 2 hear it...RIP 🙏🏿 https://t.co/SJOIt34DZF +06/23/2018,Sports_celeb,@davidortiz,Look out for Trout! He’s on his way to be one of the best. Check out these stats on this #TOPPSNOW card… https://t.co/NV3FIDGTAS +06/22/2018,Sports_celeb,@davidortiz,Summer. Baseball. Hanging with my boys. There are plenty of reasons to spark up the grill with @Kingsford. What’s y… https://t.co/QVUzMfLbID +06/21/2018,Sports_celeb,@davidortiz,Yesssir!! @toriihunter48 https://t.co/OwoRgHTbwJ +06/21/2018,Sports_celeb,@davidortiz,"RT @RedSox: A tribute to #NationalSelfieDay: + +First up, a 🐐 selfie... https://t.co/CNRniXAeyT" +06/15/2018,Sports_celeb,@davidortiz,This weekend only 😎 https://t.co/M6OCwbAaMe https://t.co/vaNX4sLZOV +06/15/2018,Sports_celeb,@davidortiz,Lookin forward 2 seeing the final product...check us out... https://t.co/CL56uEtfuc +06/14/2018,Sports_celeb,@davidortiz,Big news to share. I’m comin back to the game to work for @Topps. Check me out this season as the new lead scout fo… https://t.co/Ivy0M374ZN +06/13/2018,Sports_celeb,@davidortiz,My pleasure https://t.co/lZpLmLCzPa +06/13/2018,Sports_celeb,@davidortiz,LAST CHANCE! U & and guest are invited to golf with me @simplyaj10 n @joshwolfcomedy in the Dominican Republic. Thr… https://t.co/bx2rpNyWls +06/09/2018,Sports_celeb,@davidortiz,"Being a Father is not easy man 😂 but there is nothing better than getting to be a dad... + +make sure you show you da… https://t.co/xsZtrozDYv" +06/09/2018,Sports_celeb,@davidortiz,Love it when u call me big papi. Get the shirt n save lives: https://t.co/cdUaP5864D https://t.co/TJkswtG6Np +06/08/2018,Sports_celeb,@davidortiz,"RT @YankeeSpirits: Meet baseball legend, David ""Big Papi"" Ortiz! Just purchase one of 250 mixed cases of Arias Wine from the Yankee Spirits…" +06/07/2018,Sports_celeb,@davidortiz,I love golfing with my boys @joshwolfcomedy & @SimplyAJ10 but would RATHER hang with you this year. Enter an all-ex… https://t.co/IqEnbP4zRB +06/04/2018,Sports_celeb,@davidortiz,back home...en la casaaaa https://t.co/pPBe57hyz1 +06/02/2018,Sports_celeb,@davidortiz,Album drops Father’s Day 😂😂 Get the shirt + help raise $ for children in need: https://t.co/cdUaP5864D https://t.co/n8f0f0EfwE +06/01/2018,Sports_celeb,@davidortiz,Did u enter?? Win an all expenses paid trip for 2 to golf with me @SimplyAJ10 & @joshwolfcomedy in the Dominican Re… https://t.co/V80kgzDvZU +05/25/2018,Sports_celeb,@davidortiz,"20% ALL weekend! Use code: memorialday20 + +🇺🇸 https://t.co/zNMsaBLYqJ https://t.co/PGiJgoKlZ2" +05/22/2018,Sports_celeb,@davidortiz,Big news....Me n my boys @joshwolfcomedy & @SimplyAJ10 want you to win the #bestfathersdayever. Join us for an all… https://t.co/rztFZ9Dt6J +05/19/2018,Sports_celeb,@davidortiz,👉👉 https://t.co/HukDADNmOu 👈 👈 https://t.co/S373hv32uB +05/16/2018,Sports_celeb,@davidortiz,Lets get ittt ☘️☘️☘️ https://t.co/xteMOaGjBO +05/15/2018,Sports_celeb,@davidortiz,Back home... https://t.co/P23VnMM8NY +05/10/2018,Sports_celeb,@davidortiz,¿Quień me acompañará en la parrillada de @Kingsford antes de los partidos de béisbol esta semana? #Patrocinado https://t.co/dipzaYSNt4 +05/05/2018,Sports_celeb,@davidortiz,My brother super proud of calling my self your friend and being able to play and watch one of the best that ever pl… https://t.co/0tsN2ckEwh +05/02/2018,Sports_celeb,@davidortiz,Mookie....😳😳😳 +05/01/2018,Sports_celeb,@davidortiz,Check this out!!!! https://t.co/g7SzjcUAks +04/26/2018,Sports_celeb,@davidortiz,Life's good. #XLStyle https://t.co/KrKn9weqHW https://t.co/XA1KeQ6LDN +04/26/2018,Sports_celeb,@davidortiz,"RT @DavidOrtizFund: #Teampapi completed the @BostonMarathon collectively raising $145,957 for 29 ❤️ surgeries. Let’s push 1️⃣ more mile for…" +04/24/2018,Sports_celeb,@davidortiz,Feel like the environment is in the bottom of the 9th? Make sure green wins by voting to help 4 earth-friendly caus… https://t.co/3YO4pdmd7j +04/24/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: Day 2 of the #TheBigPapiStory jersey sweepstakes with @DavidOrtiz. + +Follow this link to enter: https://t.co/wTzrtcp7ZX…" +04/24/2018,Sports_celeb,@davidortiz,RT @Bachy5: Just got my @davidortiz gear and love it. Check it out and definitely make a purchase at https://t.co/1QMMpNPZwQ! #GR34TNESS #B… +04/23/2018,Sports_celeb,@davidortiz,PapiFit #XLStyle https://t.co/8KohrmPeFS +04/23/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: The curse was broken. @DavidOrtiz was a big reason why. + +Check out #TheBigPapiStory on @ApplePodcasts: https://t.co/5x…" +04/21/2018,Sports_celeb,@davidortiz,Uptown girl and a kid from the Dominican. Great time last nite @ #MLBfoodfest @SeaBrinkley proud partner… https://t.co/NONbxooAsP +04/20/2018,Sports_celeb,@davidortiz,@DougFlutie and I want to wish a happy 200th birthday to our friends at @easternbank ...celebrate with us and comme… https://t.co/GNIzXfudLF +04/20/2018,Sports_celeb,@davidortiz,"RT @RedSox: [Insert tweet about Mookie’s leadoff HR, Devers’ 3-hit night, E-Rod’s quality start, another sweep, the 16th win, etc.] https:/…" +04/19/2018,Sports_celeb,@davidortiz,"RT @SpotifyUSA: From growing up in the Dominican Republic to becoming a @RedSox legend, listen to the in-depth story of @davidortiz in #The…" +04/19/2018,Sports_celeb,@davidortiz,"Sharing some of my raw and unscripted thoughts on the marathon bombing, as we remember the victims and everyone sti… https://t.co/NZ9EVVfTz2" +04/19/2018,Sports_celeb,@davidortiz,Beautiful day at home cleaning my toys 🌞 https://t.co/E48JuETkf8 +04/18/2018,Sports_celeb,@davidortiz,Finally....style meets comfort. #XLStyle https://t.co/KrKn9weqHW https://t.co/qIscF9sH3t +04/18/2018,Sports_celeb,@davidortiz,My journey to #Fenway was not an easy one but I’m very thankful for my compadre @45PedroMartinez .. If it weren’t f… https://t.co/B4Sa6wVbPN +04/17/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: .@DavidOrtiz recalls how the #BostonMarathon bombing gave @RedSox motivation to ""kick ass"" that season. + +Subscribe now…" +04/17/2018,Sports_celeb,@davidortiz,I wanna see if this kid Ohtani is really thaaat good tonite against MY boys.... +04/17/2018,Sports_celeb,@davidortiz,"Coming to the U.S. meant more than just an education in baseball, it meant learning a whole new way of life. David… https://t.co/llkwRpLf1Q" +04/16/2018,Sports_celeb,@davidortiz,I was just a kid from Santo Domingo 🇩🇴 with a dream of playing #baseball. Let’s start at The Beginning. David Orti… https://t.co/SjvZLs2Eux +04/16/2018,Sports_celeb,@davidortiz,TeamPapi - @bostonmarathon - COMPLETE!!! Dayle Solomont Hillary Throckmorton n Roberta Ruiz bringing us home!!! ver… https://t.co/6zxVAMHSD7 +04/16/2018,Sports_celeb,@davidortiz,another wave of TeamPapi finishes the @bostonmarathon ...way to go Nick Jacoby Sergio Tortora Demetri Tsolakis Jill… https://t.co/XK8KKNXdxH +04/16/2018,Sports_celeb,@davidortiz,Team Papi starting 2 finish the @bostonmarathon ...congrats Daron Holloway Brian Reh n Craig Wilke. Job well done. #pinchrunforpapi +04/16/2018,Sports_celeb,@davidortiz,Proudly cheering my Pinch Runners in the Boston Marathon today. Stay safe n know Papi is behind u all the way. Get… https://t.co/bUzbK6j5LR +04/15/2018,Sports_celeb,@davidortiz,Go C’s 🍀 +04/15/2018,Sports_celeb,@davidortiz,5 years later IT’S STILL OUR F*ING CITY! Help @RobGronkowski and me raise money for the kids of Boston and get your… https://t.co/JRqheAvftB +04/13/2018,Sports_celeb,@davidortiz,"Coming soon: My journey, my story. David Ortiz: The Big Papi Story is out on #PatriotsDay. Subscribe now on… https://t.co/KVGE1rnfyT" +04/13/2018,Sports_celeb,@davidortiz,Proud to team up with one of Boston’s finest....my brother @RobGronkowski ...we created this t-shirt to raise $ for… https://t.co/Eb0n0lQn2U +04/13/2018,Sports_celeb,@davidortiz,10-2....keep it rollinnnn boys 😁😁 +04/12/2018,Sports_celeb,@davidortiz,This rite here gave me chills.. https://t.co/8PElVNh1Yo +04/12/2018,Sports_celeb,@davidortiz,Activo activooo. Feelin good this morning. Travis Scott I see u lil bro 👌🏿👌🏿 https://t.co/nW59A1iW9v +04/11/2018,Sports_celeb,@davidortiz,@SimplyAJ10 know how to have fun but know how to play the game.. giving u a chance to win tickets to the Sox vs Ori… https://t.co/JJ4OblNYs9 +04/10/2018,Sports_celeb,@davidortiz,My #pinchrun4papi campaign rasied over $100K so far and our auction ends today at 6pm EST. Proceeds go to #34 kids… https://t.co/yBLemFtyMv +04/10/2018,Sports_celeb,@davidortiz,"RT @DavidOrtizFund: 🚨 UPDATE Your efforts have helped us raise $101,371 so far. Visit our online auction to bid on exclusive packages inclu…" +04/09/2018,Sports_celeb,@davidortiz,A winning combination. #xlstyle https://t.co/bblsk5gr83 +04/07/2018,Sports_celeb,@davidortiz,Thats my guy!!! https://t.co/hJ9stuNNj3 +04/06/2018,Sports_celeb,@davidortiz,"Look good, feel good. #XLstyle https://t.co/KrKn9weqHW https://t.co/ptTP7uaqB0" +04/06/2018,Sports_celeb,@davidortiz,"Got a couple tickets to Red Sox vs Orioles Sunday, April 15th at Fenway. Go grab gear from my store and I might jus… https://t.co/4YEL29KVQG" +04/05/2018,Sports_celeb,@davidortiz,RT @MLB: Champions. 🏅🏆 https://t.co/fT00umKABQ +04/05/2018,Sports_celeb,@davidortiz,Submit ur little baseball stars best swing for a chance to win a big VIP weekend at the All-Star game with… https://t.co/oHQZfs14QD +04/04/2018,Sports_celeb,@davidortiz,"RT @bigpapiprod: Who's ready for the #SeasonFinale of Big Papi Needs a Job? Tonight, David channels his roots and learns how to salsa from…" +04/04/2018,Sports_celeb,@davidortiz,So happy I could join the kids from the Hurley School today 2 help kick off the season...these caps from @JetBlue n… https://t.co/UXa68ENUMD +04/02/2018,Sports_celeb,@davidortiz,My Style. #XLStyle https://t.co/KrKn9weqHW https://t.co/h71gRGxmvG +03/30/2018,Sports_celeb,@davidortiz,The best brands. Great Styles. Unrivaled fit. That’s DXL. #XLStyle https://t.co/KrKn9weqHW https://t.co/CZk5mnfdnC +03/29/2018,Sports_celeb,@davidortiz,Biggg day for baseball - #OpeningDayisBack! Get ur grills fired up and celebrate with @Kingsford https://t.co/3EYOMkh0oo #Sponsored +03/28/2018,Sports_celeb,@davidortiz,Big Papi the Trainer 😂💪🏿 https://t.co/SOW06LZHEW +03/28/2018,Sports_celeb,@davidortiz,Don’t get stuck in the office – I’ve signed your permission slip to take tomorrow afternoon off to grill and celebr… https://t.co/Yf897qPTg5 +03/26/2018,Sports_celeb,@davidortiz,"Important message from @DavidOrtizFund ...for a LIMITED time, your $150 donation to @DavidOrtizFund earns you a vou… https://t.co/h8EcEeQyeo" +03/23/2018,Sports_celeb,@davidortiz,"RT @FansAuthentic: RT to spread the word! @Fanatics & the @RizzoFoundation, along with our partners, have come together to help the familie…" +03/21/2018,Sports_celeb,@davidortiz,Walk slowly n don't panic they said....but man deconstructing a bomb ain’t that easy!! Thankfully I had the bomb sq… https://t.co/Ooi2D07niM +03/20/2018,Sports_celeb,@davidortiz,I gotta show luv for my boy Tewks...his book comes out today. will make u look at baseball totally different...Nine… https://t.co/NbIy6zKuPt +03/14/2018,Sports_celeb,@davidortiz,U may kno I have my own cigar line... but this week on @fusiontv I'm learning what it takes to actually make them..… https://t.co/tkmLLCUimY +03/14/2018,Sports_celeb,@davidortiz,"RT @RedSox: Chris Sale looking like Chris Sale. + +5.0 IP, 2 H, 0 R, 0 BB, 7 SO https://t.co/i2bdqan5f2" +03/14/2018,Sports_celeb,@davidortiz,Sorry 2 hear this....my prayers are with u and your fam https://t.co/HnxufDPuxO +03/14/2018,Sports_celeb,@davidortiz,#OpeningDayisBack! Check it out and get fired up! https://t.co/3EYOMkh0oo @Kingsford #Sponsored +03/10/2018,Sports_celeb,@davidortiz,spend $50 = FREE t-shirt! https://t.co/wGW4xlNOS9 https://t.co/Xy31elWTSg +03/07/2018,Sports_celeb,@davidortiz,Taste testing @SamuelAdamsBeer in the morning?? Thats my kinda job... #BigPapionFUSION returns tonite @ 8PM ET/PT o… https://t.co/HSsCCQmigw +03/07/2018,Sports_celeb,@davidortiz,Gym flow 💪🏿 https://t.co/BKJ1YZLrHu +03/07/2018,Sports_celeb,@davidortiz,RT @fusiontv: These Little Leaguers will have the coolest story to tell at practice thanks to @DavidOrtiz and his batting cage tips. #BigPa… +03/06/2018,Sports_celeb,@davidortiz,How bout 34 bonus points 😂😂 u better all pass!!!! Much luv https://t.co/7683esVPgK +03/05/2018,Sports_celeb,@davidortiz,Important......ALL proceeds will go to Stoneman Douglas victims. Bid today @Fanatics to win a 60 minute batting les… https://t.co/1Qgi1u7Xqr +03/04/2018,Sports_celeb,@davidortiz,He didn’t like the ‘Yankee’ part of the @TheYankeeCandle 😂😂 but each purchase raises $ for children that need heart… https://t.co/8qFt8P48Lc +03/02/2018,Sports_celeb,@davidortiz,😂😂😂 yall are funny...u def watched the show tho!!! https://t.co/qZQQUyiD4G +03/01/2018,Sports_celeb,@davidortiz,Hurry! Last chance to win tickets to Red Sox vs Yankees March 3rd at Jet Blue Park. Head over to the store while th… https://t.co/QIfn7sQIWn +03/01/2018,Sports_celeb,@davidortiz,It's never too late to support Heart Health Month. Get sum cool merch & help the kids https://t.co/WQawQIjH9q… https://t.co/9jzgsDnnPL +02/28/2018,Sports_celeb,@davidortiz,Running into burning buildings to save lives is one of the many reasons I admire @BostonFire .. I got big boots to… https://t.co/1injJinyIc +02/27/2018,Sports_celeb,@davidortiz,Who wants tickets?! March 3rd @ Jet Blue Park. All you gotta do is grab some gear and I might pick you🌴… https://t.co/JeJ8xbFEFO +02/27/2018,Sports_celeb,@davidortiz,Un día como hoy nuetra patria se convirtio en libre e independiente gracias a esos hombres de orgullo y mucho valor… https://t.co/Us2eghPHfT +02/27/2018,Sports_celeb,@davidortiz,"RT @fusiontv: Is @DavidOrtiz ready for his toughest opponent yet? + +Check out the jobs he'll be doing Wednesdays @ 8PM ET/PT. #BigPapionFUSI…" +02/22/2018,Sports_celeb,@davidortiz,Me and my boy rite here...these Capuchin monkeys are tougher than u think!! Watch my adventure as a zookeeper tonig… https://t.co/cxcGRWLZ78 +02/21/2018,Sports_celeb,@davidortiz,With my man gallo at elite athletes performance doing it + my brother placido polanco #retirenotexpire https://t.co/BGDuzm4oRE +02/17/2018,Sports_celeb,@davidortiz,Ready for the long weekend? Get 25% off everything on my site now thru Monday! #PresidentsDay #PapiApproved… https://t.co/xIQsgr8I8H +02/14/2018,Sports_celeb,@davidortiz,"""If you can’t stand the heat, get out of the kitchen.” Cooking is a hard job bro...check out what I mean on… https://t.co/9H4oXYb3is" +02/14/2018,Sports_celeb,@davidortiz,"RT @fusiontv: Big Papi: ""Man, I'm nervous."" +Customer: 'Whoah, that is not what I want to hear right now."" + +Will @DavidOrtiz make the cut?…" +02/07/2018,Sports_celeb,@davidortiz,Tonite 8pm on @fusiontv #BigPapiOnFusion https://t.co/IYCziUw8KR +02/04/2018,Sports_celeb,@davidortiz,"Who wore it best? Big Papi, the most trusted coach of all time, or the most trusted battery of all time? #notdone… https://t.co/MLwYvIERE8" +02/03/2018,Sports_celeb,@davidortiz,Yuppp @Duracell always does its job. Just like the most trusted coach of all time and my boys in red n blue #letsgo… https://t.co/WDLaamjCo0 +02/01/2018,Sports_celeb,@davidortiz,I see u Danielle!! sounds like the job is #NotDone yet. We ready for #SBLII #FootballFeelings @Bose https://t.co/sHSpTuJs0s +02/01/2018,Sports_celeb,@davidortiz,RT @fusiontv: More cowbell! Watch as #BigPapi @DavidOrtiz learns to play percussion after his @MLB retirement. Tonight is the premiere of #… +01/22/2018,Sports_celeb,@davidortiz,RT @RealBillRussell: Please support @davidortiz wonderful charity and buy a cookbook @ https://t.co/8t83P2n7Mh Lots of NE legends #redsox… +01/12/2018,Sports_celeb,@davidortiz,RT @fusiontv: .@DavidOrtiz is on the job hunt after his @MLB retirement. What job do you think he should pick up? Tweet at us using #BigPap… +01/04/2018,Sports_celeb,@davidortiz,"RT @fusiontv: .@DavidOrtiz officially retired from the baseball field in 2016, but now he's looking for a job #BigPapiOnFUSION https://t.co…" +01/02/2018,Sports_celeb,@davidortiz,RT @FansAuthentic: PUBLIC SIGNING ✍🏾 | #FanaticsExclusive athlete @DavidOrtiz will be appearing @SteinerSportsNY on Jan. 22. 📞(516) 739-058… +01/02/2018,Sports_celeb,@davidortiz,Thx 2 Tiziano De Stefano for the pic #NewProfilePic https://t.co/MkKyz4HQeQ +01/02/2018,Sports_celeb,@davidortiz,This is important!! NEED u all to help out my friend Andy...he needs to get this surgery ASAP. Im making a donation… https://t.co/1buXwxL5zv +12/22/2017,Sports_celeb,@davidortiz,"Cooking With The Pros book is out yall. All my boys involved too... @RobGronkowski, Troy Brown, The Allens,… https://t.co/rVJEg6Wrzf" +12/19/2017,Sports_celeb,@davidortiz,"RT @bigpapiprod: Tune in January 31st at 8pm for #BigPapionFUSION! Check your local listings here: https://t.co/H6atXgA3oV. + +@davidortiz @…" +12/18/2017,Sports_celeb,@davidortiz,Big congrats 2 my boy @kobebryant on the the jersey retirement tonite... well deserved Mamba!!! this video is a gr… https://t.co/yDmbadUffH +12/14/2017,Sports_celeb,@davidortiz,Help Give the Precious Gift of Health to Children in Need. Support the @DavidOrtizFund by purchasing this limited e… https://t.co/UZfqXrk5np +12/12/2017,Sports_celeb,@davidortiz,Perfect holiday gifts...bid on items donated by my boys @NKOTB @BusterPosey @PujolsFive #CarltonFisk n more...$$ go… https://t.co/v11XQF49h9 +12/10/2017,Sports_celeb,@davidortiz,My boy @garysheffield is all about #October2004 😂😂😂. Buy a shirt + save a life: https://t.co/7LQzDOZNuz https://t.co/AwsP0OLYec +12/05/2017,Sports_celeb,@davidortiz,Changing the conversation around mens #XLstyle...how do you XL? Follow @DestinationXL to see more of what we’re doi… https://t.co/CRZKu4pgIm +12/03/2017,Sports_celeb,@davidortiz,"#October2004 Game 7: 3/6, 2 HR, 6 RBI + +Aint no comeback w/out my boy @JohnnyDamon ... + +Save lives + buy an… https://t.co/NAFDrarl0T" +12/03/2017,Sports_celeb,@davidortiz,RT @MLB: The @davidortiz Celebrity Golf Classic = #SquadGoals https://t.co/U7qJyA7iYu +12/02/2017,Sports_celeb,@davidortiz,Only a couple hours left for the auction...help us out!!! 🙏🏿 https://t.co/oa798bZ06w +12/01/2017,Sports_celeb,@davidortiz,Luv u 2 bro...thx for helpin the @DavidOrtizFund https://t.co/dcto2xPnr0 +12/01/2017,Sports_celeb,@davidortiz,. @stoolpresidente @Jared_Carrabis @FeitsBarstool where you at?! Nothin but love for the @Patriots but u forget abo… https://t.co/U5dOVGC4A0 +11/30/2017,Sports_celeb,@davidortiz,Shouts 2 @JustinThomas34 for the auction items...much appreciated bro.. https://t.co/oa798bZ06w +11/30/2017,Sports_celeb,@davidortiz,U better make sure ur checkin https://t.co/oa798bZ06w ....we add new items every day. Just added a great US Open ex… https://t.co/7IovNS6QMY +11/28/2017,Sports_celeb,@davidortiz,I’m excited to help my friends @EasternBank for #GivingTuesday ...were looking for ideas to help Grow the Good in o… https://t.co/bKMXRqnomf +11/28/2017,Sports_celeb,@davidortiz,Its about that time!!! Help us out ... 🙏🏿 https://t.co/9xHePLIUlr? @DavidOrtizFund +11/25/2017,Sports_celeb,@davidortiz,I'm extending my #BlackFriday sales an extra day! Better hurry https://t.co/fNB7KAxVXj #PapiApproved https://t.co/33uojCvmxx +11/24/2017,Sports_celeb,@davidortiz,Happy #BlackFriday! Get FREE wristbands when you shop in my store today: https://t.co/oSUNJNSRg1 https://t.co/cZUneDqBqi +11/22/2017,Sports_celeb,@davidortiz,Hey @AROD ..u had it comin!! #Masterpass 😂😂 https://t.co/u1SuG2WQsI +11/22/2017,Sports_celeb,@davidortiz,It’s time to XL...had to snap the pic!! Check out @DestinationXL to see what we doin... #XLstyle https://t.co/2FPgih5fBJ +11/22/2017,Sports_celeb,@davidortiz,Get your holiday shopping done early! 🎁 https://t.co/VqtX6GXQsV #PapiApproved https://t.co/wi2T7VYWWN +11/17/2017,Sports_celeb,@davidortiz,"RT @ariaswines: You heard it here first, Pumpkin and Cranberry Arias Wine! Get yours while supplies last at https://t.co/8dkPRABeja https:/…" +11/16/2017,Sports_celeb,@davidortiz,"RT @ariaswines: Want insider info from Big Papi, special offers & a chance to win limited edition merch? Sign up for the wine club https://…" +11/16/2017,Sports_celeb,@davidortiz,"RT @isaiahthomas: Grindin all my life. The marathon continues. + +#BookOfIsaiah2, Chapter One: https://t.co/88pDuqiXkT +@NipseyHussle @TeeJa…" +11/16/2017,Sports_celeb,@davidortiz,"Join my official newsletter to get access to exclusive content and all my latest updates! + +Sign up today:… https://t.co/nQkBOQ2A9o" +11/12/2017,Sports_celeb,@davidortiz,‘Frozen ropes’ 😂😂😂😂 https://t.co/jZKovRnG7f +11/10/2017,Sports_celeb,@davidortiz,"RT @bigpapiprod: Some lucky Boston locals giving David ideas for #BigPapiNeedsAJob, airing this fall on @ThisIsFusion. @davidortiz @Matador…" +11/10/2017,Sports_celeb,@davidortiz,RT @SInow: Get ready for Red Sox-inspired hockey jerseys on David Ortiz Night with the AHL’s Thunderbirds https://t.co/3pQfPTnc1z +11/07/2017,Sports_celeb,@davidortiz,RT @ariaswines: Will you be joining us and legends @davidortiz and @RayBourque77 at @TrescaNorthEnd tomorrow? https://t.co/avB4AOnTrf +11/06/2017,Sports_celeb,@davidortiz,It is officially time to XL...u gotta follow them @DestinationXL to keep up with what we got goin on... #XLStyle https://t.co/wVH0F2A6Wv +11/02/2017,Sports_celeb,@davidortiz,H-TOWN EN LA CASA!! congrats to my boys on the win...very deserved ⚾️🏅 https://t.co/DCkU1MlIDi https://t.co/AZU5OG0HKw +11/01/2017,Sports_celeb,@davidortiz,Dodger blue en la casaaa +10/31/2017,Sports_celeb,@davidortiz,Thx for the love @BenReiter https://t.co/JALVWEkCVu +10/30/2017,Sports_celeb,@davidortiz,Boston #smallbiz owners its not easy calling the shots but NOW is ur chance! Enter ur biz @ https://t.co/eSyrdm4kdS #GrowYourBizContest #Ad +10/29/2017,Sports_celeb,@davidortiz,.@BillSimmons thinks I should have my own reality show? Wayy ahead of U man. BIG PAPI NEEDS A JOB premieres on Nov 29th @ 8:30 ET @fusiontv +10/28/2017,Sports_celeb,@davidortiz,"N’that house H town & LA haha... +En la casa H town & LA 😎 + +https://t.co/9htqiirvTg https://t.co/1EOqUXdjcM" +10/28/2017,Sports_celeb,@davidortiz,RT @ariaswines: Join us at @TrescaNorthEnd w/ @davidortiz & @RayBourque77 for a🍷 and cigar night benefiting @DavidOrtizFund & the Bourque F… +10/27/2017,Sports_celeb,@davidortiz,My boys may not be in it but Im still watching this crazy #WorldSeries on FOX with @YouTubeTV. You can 2 → https://t.co/x5WWhJzubt #ytspon +10/27/2017,Sports_celeb,@davidortiz,All smiles #OnThisDay in 2004 with my g unit hat 😆 read why winning in 04 was the most special to me ➡️… https://t.co/or5VIrpV9q +10/26/2017,Sports_celeb,@davidortiz,"RT @MagicJohnson: Hanging out on the FOX set during the World Series with baseball royalty @AROD, Big Papi @davidortiz, @TheBigHurt_35 and…" +10/25/2017,Sports_celeb,@davidortiz,RT @celtics: #GetWellGordon 💚 https://t.co/uKHeuGmfS6 +10/24/2017,Sports_celeb,@davidortiz,"RT @LasMayores: No se pueden olvidar que hoy es #LunesDeLeyenda. +¿Recuerdan el 1er HR del ""Big Papi"" en una #SerieMundial? +¡Qué momento! 😳😎…" +10/21/2017,Sports_celeb,@davidortiz,@kevinburkhardt @SueBnKB @Seratelli @AROD @TheBigHurt_35 Not at all😬...... 5hit haha ...... sorry my fault 🙌🏿 +10/20/2017,Sports_celeb,@davidortiz,It may seem farfetched but I just tried being a dog walker 😂. What should I do next as a #RetirementRookie with… https://t.co/rIxYdcSdjR +10/18/2017,Sports_celeb,@davidortiz,RT @DavidOrtizFund: We're partnering w/@cocacola for the 10th Annual @DavidOrtiz Celebrity Golf Classic Nov 30 - Dec 3. Register here https… +10/17/2017,Sports_celeb,@davidortiz,The list grows...tenemos otra!! join us - https://t.co/bOXSpuCS6Y https://t.co/qU0ASw5tET +10/17/2017,Sports_celeb,@davidortiz,"#OnThisDay in 2004, I had a game changing walk-off. lets see who remembers: https://t.co/GvR5NuBiwQ https://t.co/dwyDEH4xtW" +10/16/2017,Sports_celeb,@davidortiz,my boy Hanley comin....are u?? tix --> https://t.co/bOXSpuCS6Y https://t.co/EKaPhg7Tmc +10/14/2017,Sports_celeb,@davidortiz,"Please help my boy Jonny gomes to raise money for the crazy fires in north California. Every little bit helps. + +https://t.co/EQqjrAgUMD" +10/11/2017,Sports_celeb,@davidortiz,RT @BostonPoliceFnd: The 4th Annual Boston Police Foundation Gala is scheduled for November 8th at the Boston Marriott Copley Place.... htt… +10/07/2017,Sports_celeb,@davidortiz,Every connection counts on and off the field...celebrating relationships and teamwork... #CXDay w/ @DellTech #DellCX https://t.co/bUkX488Y3s +10/06/2017,Sports_celeb,@davidortiz,#FBF to when I announced that I’ve partnered with @easternbank for GOOD. Excited to give back to the community...… https://t.co/KGofqhmyDK +10/03/2017,Sports_celeb,@davidortiz,Yo @SHAQ where u at?? Thought u were comin to #DellCX day....@Dell https://t.co/cjtlVrff2V +10/02/2017,Sports_celeb,@davidortiz,"YA ESTAN A LA VENTA LOS BOLETOS PUERTO RICO SOMOS UNO EL CONCIERTO 19 DE OCTUBRE AMWAY CENTER ORLANDO FL. +https://t.co/AdAw968kdy?" +09/30/2017,Sports_celeb,@davidortiz,Congrats boys ☝🏾 +09/28/2017,Sports_celeb,@davidortiz,"RT @UNICEFUSA: 🎳 to help kids! THANKS Tiffany+@davidortiz, Shannon+#RayAllen for #TheProsBowl — fundraising for families affected by recent…" +09/28/2017,Sports_celeb,@davidortiz,Don't forget to grab one my Dominican Pride shirts to support hurricane relief & recovery efforts!… https://t.co/IBCcu0d5Cu +09/27/2017,Sports_celeb,@davidortiz,If you cant bowl w/ Ray Allen n me tonite @ #TheProsBowl in #Miami make sure to donate to help hurricane victims.. https://t.co/tQvvN1ZLlG +09/26/2017,Sports_celeb,@davidortiz,U coming to bowl with Ray Allen n me?? We’ll be raising $ for hurricane victims at #TheProsBowl @Kings_dine https://t.co/tQvvN1ZLlG +09/25/2017,Sports_celeb,@davidortiz,Woww I gotta show love. Big congrats to A Judge on homer #50....thats impressive stuff. My Sox still rolllin tho!! 😂😂 +09/25/2017,Sports_celeb,@davidortiz,"#MIAMI: On Wednesday, me and Ray Allen are raising $ for hurricane victims thru @UNICEF #TheProsBowl tix:… https://t.co/b0C6dlHRuw" +09/22/2017,Sports_celeb,@davidortiz,Challenging @max_domi @27BrettCecil to donate $5K 2 support those affected by #Irma & #Maria… https://t.co/YNwcEDKXsk +09/22/2017,Sports_celeb,@davidortiz,RT @MLBONFOX: “We were obsessed with the Red Sox.”- @AROD to @davidortiz on the Yankees. https://t.co/oN7TsLJmBm +09/20/2017,Sports_celeb,@davidortiz,RT @carlosbeltran15: Mi gente tomen las precauciones adecuadas. En la oración la unión y la acción está la fuerza.… https://t.co/MRBa3fn2AG +09/20/2017,Sports_celeb,@davidortiz,Praying for my home country🙏🏿 Portions of my Dominican pride shirts go straight to hurricane relief… https://t.co/zYJSiwGrx8 +09/16/2017,Sports_celeb,@davidortiz,RT @kevinburkhardt: It’s a Yankee/Red Sox flavor on #MLBWhiparound tonight. @arod & @davidortiz together! Top of the hour @FS1 +09/15/2017,Sports_celeb,@davidortiz,Thats what I'm talkin about New Hampshire!!! https://t.co/PGZUwgCyzt +09/15/2017,Sports_celeb,@davidortiz,RT @MLB: .@BigPapiProd will be co-producing the Ted Williams documentary in the @PBSAmerMasters series. https://t.co/WVTJly00sN @davidortiz… +09/14/2017,Sports_celeb,@davidortiz,Launching my production company has been a dream come true...and it's only right that we kick it off by honoring a… https://t.co/FiVHHueRKN +09/14/2017,Sports_celeb,@davidortiz,Donations for #Irma being matched up to $25K https://t.co/Yy6SZ0JorH. Thx @easternbank for kicking this off w/ an incredible $10K donation +09/12/2017,Sports_celeb,@davidortiz,"RT @easternbank: Excited to be the official #NewEngland bank of @davidortiz! Today, David will #JoinUsForGood & surprise customers as our 1…" +09/12/2017,Sports_celeb,@davidortiz,Boston!! I'm getting ready to do some GOOD...keep your eye out for a surprise announcement...u just might run into Papi today...👀 +09/09/2017,Sports_celeb,@davidortiz,RT @JackieBradleyJr: Always great getting to hang with big bro @davidortiz #HASBRO #HASCON https://t.co/7h5YVgZ5tM +09/08/2017,Sports_celeb,@davidortiz,Repping @ariaswines in Saratoga ...thx u @MagicofSPAC for having me https://t.co/mxcXy6SS2p +09/08/2017,Sports_celeb,@davidortiz,"Prayers up for everyone affected by #HurricaneIrma ... if you want to help, donate here ------->… https://t.co/Zk10kgZyHW" +09/08/2017,Sports_celeb,@davidortiz,My boy https://t.co/vsEw9icxc8 +09/07/2017,Sports_celeb,@davidortiz,My bro @RobGronkowski is the man to watch in Foxboro. Watch him earn that stink AND spike Tonight! @Tide… https://t.co/21Pj7Ak3ZE +09/06/2017,Sports_celeb,@davidortiz,Do u know why i was so excited #OnThisDay in 2005? 👉 https://t.co/rfdLO4ttIh https://t.co/0FTgLmdDnC +09/06/2017,Sports_celeb,@davidortiz,Wishing u luck lil bro...ill b watching https://t.co/mTTHryxCnn +09/04/2017,Sports_celeb,@davidortiz,Last chance #PapiNation 15% today only!! 👉🏾 https://t.co/lwjzlEcnZg https://t.co/wkOiFQqYc9 +09/01/2017,Sports_celeb,@davidortiz,RT @HasbroNews: ICYMI: @DavidOrtiz is coming to #HASCON! See him on 9/9 in @providenceRI! Tickets: https://t.co/iLKLrlUdek https://t.co/QAy… +08/31/2017,Sports_celeb,@davidortiz,Labor Day Sale is #PapiApproved https://t.co/HyI129a9Ec https://t.co/mxDzZVSNIx +08/30/2017,Sports_celeb,@davidortiz,a breakfast and a bike ride....and as always with my spy in the photo 👀🐩 https://t.co/uS0WyhnB6z +08/30/2017,Sports_celeb,@davidortiz,RT @KYouk_2036: So beautiful to see Americans supporting each other in a time of need. Let's never lose sight of this love & support for on… +08/28/2017,Sports_celeb,@davidortiz,Nuevos zapatos nueva hobby @SKECHERSUSA https://t.co/ABbpIHokvt +08/23/2017,Sports_celeb,@davidortiz,"“I live for today. Tomorrow belongs to God.” Sum wise words to live by...🙏🏿 😔 +https://t.co/nZdsYVDdoh https://t.co/GWBVTkEu1L" +08/21/2017,Sports_celeb,@davidortiz,RT @FansAuthentic: Who envisions @DavidOrtiz wearing these ski goggles to watch the #SolarEclipse today? #GOLDBOTTLES https://t.co/ibg5Wv9q… +08/15/2017,Sports_celeb,@davidortiz,@DellTechChamp @TPCBoston @JustinThomas34 👀 +06/29/2018,Sports_celeb,@JeterTurn2,Last night our New York #JetersLeaders celebrated the graduating seniors and welcomed the program's newest inductee… https://t.co/zkA4wAql2W +06/29/2018,Sports_celeb,@JeterTurn2,RT @CC_Sabathia: My team ready!!!! #CCSoftball https://t.co/iE7oKs6Kv8 +06/28/2018,Sports_celeb,@JeterTurn2,RT @PitCChInFdn: Here at @yankeestadium getting ready for game time! #CCSoftball is just a few hours away! 🎟: https://t.co/Vs4KBC38VU https… +06/28/2018,Sports_celeb,@JeterTurn2,".@sjeter2 shares her story behind #TheSTUFFMovement with @Kzoo_Gazette. +@StuffMovement @DrSampsonDavis @GalleryBooks https://t.co/GPwBEeecTr" +06/28/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 is on team @CC_Sabathia for tonight’s #CelebritySoftballGame at @yankeestadium, benefitti… https://t.co/WgzTwuRWGu" +06/27/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 sat down with @KirkMasonWWMT of @WWMTNews to discuss #TheSTUFFMovement, the… https://t.co/uIqRLguZz8" +06/26/2018,Sports_celeb,@JeterTurn2,RT @KirkMasonWWMT: Great to talk with ⁦@sjeter2⁩ The cancer survivor co-authored a book about battling adversity. The charity she runs that… +06/26/2018,Sports_celeb,@JeterTurn2,Today is International Day Against Drug Abuse and Illicit Trafficking. As a foundation rooted in motivating young p… https://t.co/S5AXOA7IId +06/26/2018,Sports_celeb,@JeterTurn2,Wishing a very #HappyBirthday to #Turn2 founder Derek Jeter! https://t.co/3Xg8bGlQqh +06/22/2018,Sports_celeb,@JeterTurn2,"We are excited to welcome our newest class of Kalamazoo #JetersLeaders, and we look forward to a great four years w… https://t.co/c7Ac8G3veu" +06/21/2018,Sports_celeb,@JeterTurn2,"#TBT to when the #JetersLeaders met young entrepreneur Spencer Zied, who co-founded @habits_365. Spencer spoke to t… https://t.co/iZ7BMbiCVF" +06/18/2018,Sports_celeb,@JeterTurn2,"On Saturday, our Kalamazoo #JetersLeaders attended a Youth Leadership Summit at the University of Michigan Detroit… https://t.co/0cs4K9nJUJ" +06/17/2018,Sports_celeb,@JeterTurn2,Happy #FathersDay to all fathers and father figures who serve as positive role models to young people. #Turn2 https://t.co/tnCClsHhYt +06/14/2018,Sports_celeb,@JeterTurn2,"#TBT to the 2018 Derek Jeter Celebrity Invitational, where @blaironeal shared important advice with young people.… https://t.co/ZM80oXirG3" +06/13/2018,Sports_celeb,@JeterTurn2,"Congrats to #JetersLeaders alumna & @jrfoundation scholarship recipient Chelsea Miller, who recently graduated from… https://t.co/jXPQixUI5h" +06/12/2018,Sports_celeb,@JeterTurn2,"Yesterday, members of our #Turn2 Us program wrapped up a successful baseball season with an exciting championship g… https://t.co/Zk6jQSydgy" +06/06/2018,Sports_celeb,@JeterTurn2,"""Seek the help you need to achieve greatness and reach your highest #goal."" -Alexi, #Kalamazoo #JetersLeader Class… https://t.co/NEKfYeJZxC" +05/30/2018,Sports_celeb,@JeterTurn2,"""Your biggest competition is yourself, not those around you."" - Michael, #NewYork #JetersLeaders Class of 2018… https://t.co/HYS51ypBPR" +05/28/2018,Sports_celeb,@JeterTurn2,Today we honor the men and women who devoted themselves to serving our country. #MemorialDay https://t.co/1IM3S8tewP +05/25/2018,Sports_celeb,@JeterTurn2,Yesterday our #Kalamazoo #JetersLeaders volunteered at the Girls on the Run 5K. The event #inspires girls to recogn… https://t.co/Wx5hJs6xl4 +05/22/2018,Sports_celeb,@JeterTurn2,"""Let's face it: none of us lives successfully on our own. We all receive help. And when we in turn help others, we'… https://t.co/rIRVMokLL7" +05/21/2018,Sports_celeb,@JeterTurn2,"""The greatest path to #success is not only being true to yourself, but also staying dedicated and having the same… https://t.co/K6YRhb0YZs" +05/17/2018,Sports_celeb,@JeterTurn2,"#tbt to last month, when our #NYC #JetersLeaders volunteered at the @nycparks 11th Annual Street Games, presented b… https://t.co/yEucnmuiWd" +05/17/2018,Sports_celeb,@JeterTurn2,"We’re proud to support @samhsagov's National Prevention Week, which focuses on the promotion of mental health and p… https://t.co/vmtlEF6F41" +05/16/2018,Sports_celeb,@JeterTurn2,#Turn2 president @sjeter2 and @DrSampsonDavis discuss the launch of @StuffMovement & tackling life’s biggest challe… https://t.co/4lfTLHWHyT +05/16/2018,Sports_celeb,@JeterTurn2,“Don’t let fear stop you from overcoming.” #Turn2 president @sjeter2 shares her journey & discusses @StuffMovement… https://t.co/Ph2WFgxg6q +05/15/2018,Sports_celeb,@JeterTurn2,"Exciting news! #TheSTUFF, a book co-authored by #Turn2 president @sjeter2 and @drsampsondavis, is officially out! B… https://t.co/zlaLvW9aHD" +05/15/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 discussed the inspiration behind her new book, @StuffMovement, with the @nypost. Read mor… https://t.co/ga7tmTCnn5" +05/13/2018,Sports_celeb,@JeterTurn2,To all of the strong women inspiring their children to make a difference in the world - Happy #MothersDay! https://t.co/bCAFiI9swo +05/12/2018,Sports_celeb,@JeterTurn2,"""I tell the kids, somebody's gotta win, somebody's gotta lose. Just don't fight about it. Just try to get better.""… https://t.co/Ucbyr8Q1kO" +05/10/2018,Sports_celeb,@JeterTurn2,"Today is National Children's Mental Health #AwarenessDay2018, which seeks to raise awareness about the importance o… https://t.co/KAmE7mmoCE" +05/08/2018,Sports_celeb,@JeterTurn2,"We’re so excited for the release of #TheStuff, co-authored by #Turn2 president @sjeter2 & @DrSampsonDavis. The book… https://t.co/bzp6TkaEyn" +05/07/2018,Sports_celeb,@JeterTurn2,It's senior #DraftDay for the #JetersLeaders! Check out our #InstagramStories at @jeterturn2 to see where these stu… https://t.co/M20s5OpbUu +05/03/2018,Sports_celeb,@JeterTurn2,"We joined @RBC in #NYC today for #rbctradeforthekids, which benefited more than 40 youth charities around the world… https://t.co/VtVsXhfS9T" +05/02/2018,Sports_celeb,@JeterTurn2,Looking forward to joining @RBC tomorrow for #rbctradeforthekids – a celebration of philanthropy and volunteerism a… https://t.co/NHcvBMb39l +05/01/2018,Sports_celeb,@JeterTurn2,"In celebration of #CollegeDecisionDay, we are so proud to recognize our senior #JetersLeaders for being accepted in… https://t.co/yzdRlG7G9P" +04/30/2018,Sports_celeb,@JeterTurn2,So many amazing applicants for the #JetersLeaders Class of 2022! We're so #inspired to see young people be passiona… https://t.co/s5H8geBXcE +04/25/2018,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: Whatever you do, do not look down. 😂 + +#DJCI #Turn2 @jeterturn2 @NBATVAhmad @RealWinkyWright @brandichastain @KMillar15…" +04/23/2018,Sports_celeb,@JeterTurn2,Another fantastic #DJCI in the books! This year’s event contributed $1M to #Turn2. Big thanks to our partners… https://t.co/RCyb9gs4Tt +04/22/2018,Sports_celeb,@JeterTurn2,RT @PlayersTribune: We brought a living statue to Derek Jeter's golf tournament and the reactions are priceless. #DJCI #Turn2 @JeterTurn2 @… +04/20/2018,Sports_celeb,@JeterTurn2,"Day two of #DJCI action is underway, as Derek Jeter tees off! #DJCI2018 #Turn2 https://t.co/U2pydO57S1" +04/20/2018,Sports_celeb,@JeterTurn2,"RT @TheJetGuy: Great day @JeterTurn2 ⛳️ +@BLAIRONEAL @GretzkySchool +#DerekJeterCelebrityInvitational #WheelsUp #ShadowCreek #LasVegas https…" +04/20/2018,Sports_celeb,@JeterTurn2,RT @JoeTorre: With Derek at his @JeterTurn2 celebrity invitational golf tournament in Las Vegas #DJCI #TURN2 #DJCI2018 https://t.co/NZo5w68… +04/20/2018,Sports_celeb,@JeterTurn2,"""For more than 21 years, Turn 2 has moved the needle, making a difference in communities nationwide...but what’s mo… https://t.co/ucHJX3Cp26" +04/19/2018,Sports_celeb,@JeterTurn2,Ready to kick off #DJCI2018 at #ShadowCreek this morning! We’re looking forward to an exciting day one of the Cele… https://t.co/Wh28PlCs2T +04/19/2018,Sports_celeb,@JeterTurn2,RT @BLAIRONEAL: Looking forward to playing in #DerekJeter golf tournament again & supporting @JeterTurn2 #foundation this week 🙌🏼 in Vegas… +04/19/2018,Sports_celeb,@JeterTurn2,The Derek Jeter Celebrity Invitational has begun! #DerekJeter & @sjeter2 have arrived on the red carpet at @AriaLV… https://t.co/apu0FidFl7 +04/15/2018,Sports_celeb,@JeterTurn2,"RT @JRFoundation: 71 years ago today, Jackie Robinson made his @MLB debut as a Brooklyn Dodger & became the first African American to play…" +04/12/2018,Sports_celeb,@JeterTurn2,"We are excited to announce that multi-platinum selling, global superstar @JasonDerulo will be performing at the Der… https://t.co/Zo1qZDMdEG" +04/11/2018,Sports_celeb,@JeterTurn2,"""Helping others is just as important as helping yourself."" #WednesdayWisdom #JetersLeaders #Turn2 https://t.co/tH9bihVtHv" +04/09/2018,Sports_celeb,@JeterTurn2,"RT @MiamiSup: Thank you Derek Jeter, @JeterTurn2, @jorgeposada_20 for donating furniture to the Redlands Migrant Camp, helping hundreds of…" +04/06/2018,Sports_celeb,@JeterTurn2,"During their trip to Miami this week, the #JetersLeaders also experienced a glimpse of college life during a specia… https://t.co/Z8NpWUHiyA" +04/05/2018,Sports_celeb,@JeterTurn2,"""Spread Kindness"" is just one of the many #inspirational murals that now fill @josediegoms in Miami, as #DerekJeter… https://t.co/EWsvQ1NurC" +04/04/2018,Sports_celeb,@JeterTurn2,"""The time is always right to do what is right.” – Martin Luther King Jr. Celebrating the legacy of Martin Luther Ki… https://t.co/1DQTeeyaLc" +04/04/2018,Sports_celeb,@JeterTurn2,Last night the #JetersLeaders had a blast watching the @marlins take on the #Boston @redsox! #Turn2 https://t.co/kqLnfHSbe4 +04/04/2018,Sports_celeb,@JeterTurn2,"Our #JetersLeaders are teaming up with #DerekJeter, #Turn2 president @sjeter2 and @GoldmanSachs Community TeamWorks… https://t.co/6QY2bCWNEd" +04/02/2018,Sports_celeb,@JeterTurn2,"""Goals not only give you something to look forward to and build on, but they give you a chance to make your dreams… https://t.co/OCD8nIrQdy" +03/29/2018,Sports_celeb,@JeterTurn2,"Exciting projects are in the works for our #JetersLeaders! Throughout the month, the New York Leaders worked togeth… https://t.co/GwZoeJ7WXs" +03/28/2018,Sports_celeb,@JeterTurn2,"""Being a #leader means you try your best, #inspire others, and show empathy."" #WednesdayWisdom #JetersLeaders #Turn2 https://t.co/yftFqwZ6II" +03/23/2018,Sports_celeb,@JeterTurn2,#Turn2 president @sjeter2 is proud to support the #MagicOfStorytelling initiative by @Disney and @FirstBook! For ev… https://t.co/ZdgiXt8o1T +03/21/2018,Sports_celeb,@JeterTurn2,"RT @garysheffield: It was such a great time out there talking to the kids at @JeterTurn2 baseball camp last week! + +If one kid can walk awa…" +03/19/2018,Sports_celeb,@JeterTurn2,"""Life is not about what happened yesterday, but what you are going to make happen in the future."" #MondayMotivation… https://t.co/vkDVuw4kuP" +03/16/2018,Sports_celeb,@JeterTurn2,That's a wrap on the 11th Annual #Turn2 Tampa Baseball Clinic! Special thanks to @GarySheffield for joining us as g… https://t.co/Sqz2MqT9Mi +03/15/2018,Sports_celeb,@JeterTurn2,Our thoughts and prayers are with @FIU and the entire community. +03/15/2018,Sports_celeb,@JeterTurn2,Special guest speaker @GarySheffield inspires participants to work hard to achieve their #goals at the #Turn2 Tampa… https://t.co/LTQxJrQYVN +03/14/2018,Sports_celeb,@JeterTurn2,"""#Communication is the key that unlocks many doors, no matter the combination."" #WednesdayWisdom #JetersLeaders… https://t.co/ecZJyeMFwe" +03/13/2018,Sports_celeb,@JeterTurn2,"#Tampa children are taking the field to learn #baseball fundamentals and important #lifelessons, as we kick off our… https://t.co/D0L6PesBif" +03/09/2018,Sports_celeb,@JeterTurn2,"RT @sjeter2: Feeling so inspired by all of you who came to samsung837!! My message for all women is: ""When… https://t.co/GeqP11Q53F" +03/08/2018,Sports_celeb,@JeterTurn2,Today we celebrate all women who #empower youth to create #positivechange and lead in their communities.… https://t.co/pzvH3j87LP +03/07/2018,Sports_celeb,@JeterTurn2,RT @sjeter2: Loved taking part in this event! https://t.co/8ThjFZ8tjh +03/06/2018,Sports_celeb,@JeterTurn2,RT @JeterPublishing: It's Launch Day for Double Play! Pick up your copy now! https://t.co/z6LiK8brsq #JeterPublishing @timgreenbooks https:… +03/04/2018,Sports_celeb,@JeterTurn2,RT @PosadaLifeCoach: Team Posada teamed up with @JeterTurn2 to donate hundreds of items to students Miami Dade College and @FIU who relocat… +03/02/2018,Sports_celeb,@JeterTurn2,#DerekJeter & #Turn2 president @SJeter2 teamed up w/ @jorgeposada_20 & @posadalifecoach to donate furniture to… https://t.co/uzYrQJYkaC +03/01/2018,Sports_celeb,@JeterTurn2,"Throughout the month of February, the Kalamazoo #JetersLeaders had the opportunity to #mentor local children at the… https://t.co/zBOGIyR8Dp" +02/26/2018,Sports_celeb,@JeterTurn2,"These students are #college ready! Over the weekend, the Kalamazoo #JetersLeaders toured @RooseveltU, @UChicago,… https://t.co/NvnUUiQ3jp" +02/22/2018,Sports_celeb,@JeterTurn2,"That's a wrap! The #Turn2 Mid-Winter #College Tour with #NYC #JetersLeaders capped off with visits to @HowardU,… https://t.co/6heMFeBmRU" +02/20/2018,Sports_celeb,@JeterTurn2,The #Turn2 Mid-Winter #College tour has begun! Our #NYC #JetersLeaders kicked off the week with visits to the @UNCF… https://t.co/CTOOJilLzg +02/19/2018,Sports_celeb,@JeterTurn2,Last weekend our Kalamazoo #JetersLeaders attended the Day of Radical Youth Development as part of the System of Ca… https://t.co/ZoDXYDk4DC +02/13/2018,Sports_celeb,@JeterTurn2,"We’re looking forward to returning to Las Vegas for the 2018 Derek Jeter Celebrity Invitational in April, in partne… https://t.co/2TXl2hhVtn" +02/07/2018,Sports_celeb,@JeterTurn2,"Today marks the 32nd Annual National Girls & Women in Sports Day. This past Saturday, our #NYC #JetersLeaders parti… https://t.co/xgw6T8EiiK" +02/05/2018,Sports_celeb,@JeterTurn2,"""Believe in yourself, because at the end of the day no one knows you like you know yourself."" - Jacky, Kalamazoo… https://t.co/feV9B72ofa" +02/02/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 discussed the growth of the Foundation, the #JetersLeaders & the importance of #mentoring… https://t.co/Nj2CVyViiq" +02/02/2018,Sports_celeb,@JeterTurn2,"RT @OWNTV: .@Luvvie, @VanJones68, @sjeter2 and more! Dream protectors who are walking the walk 👣 and talking the talk! 🗣 #DreamFearlessly h…" +02/01/2018,Sports_celeb,@JeterTurn2,"This month, we are celebrating all African American trailblazers who inspire us to serve as leaders and create posi… https://t.co/bCGelBv4QL" +01/29/2018,Sports_celeb,@JeterTurn2,"Last weekend, our New York #JetersLeaders participated in fun winter activities with children in @CentralParkNYC as… https://t.co/f8CNgal5Ki" +01/26/2018,Sports_celeb,@JeterTurn2,RT @JDCHospital: Backstage at the Joe DiMaggio American Icon Award with @_Derek_Jeter2 . The former Yankee captain and current Marlins CEO… +01/25/2018,Sports_celeb,@JeterTurn2,“My AP world history teacher has helped me see the world more vividly while motivating me to excel every day.” - Ha… https://t.co/jmEXZcUYca +01/25/2018,Sports_celeb,@JeterTurn2,"“My mother has had a tremendous impact on my life. Without her, I wouldn’t be where I am today. She has helped me r… https://t.co/Yt2EK3srPQ" +01/25/2018,Sports_celeb,@JeterTurn2,"""Mentoring has always been about helping those around your community. That's a powerful idea that needs to be sprea… https://t.co/gLimnXQTK1" +01/25/2018,Sports_celeb,@JeterTurn2,"“My grandpa is my mentor…he taught me that even on bad days, there's something positive happening.” - Ariel Brown,… https://t.co/T7HpyuAjkx" +01/25/2018,Sports_celeb,@JeterTurn2,“My mom is my biggest mentor. She's always been there to pick me up when I fall and make sure that I keep getting s… https://t.co/RVY9SxJbQ6 +01/25/2018,Sports_celeb,@JeterTurn2,"As part of #ThankYourMentor Day, our #JetersLeaders reflected on the mentors in their lives and how they've helped… https://t.co/lTEmLFuFTL" +01/24/2018,Sports_celeb,@JeterTurn2,"""In the end it won't matter what you did in your life, but how you chose to live it."" #JetersLeaders… https://t.co/FuCr5ODTy3" +01/22/2018,Sports_celeb,@JeterTurn2,"Our Kalamazoo #JetersLeaders recently attended STOMP, the Broadway musical that creates unique music with found obj… https://t.co/Iu8rJ8xxqD" +01/17/2018,Sports_celeb,@JeterTurn2,"""Mentoring is a critical component of a young person's life. When youth have reliable role models they can turn to… https://t.co/S00lGgpcia" +01/15/2018,Sports_celeb,@JeterTurn2,"In honor of MLK Day, our NY #JetersLeaders distributed sandwiches at a local church today with children at the Jack… https://t.co/EX5vRxTOeO" +01/15/2018,Sports_celeb,@JeterTurn2,Today we celebrate the legacy of Martin Luther King Jr. and his profound impact on our country. #MLKDay #MLK https://t.co/BezHwMvZ6M +01/10/2018,Sports_celeb,@JeterTurn2,"""Needing help doesn't make you weak; accepting help makes you strong."" #JetersLeaders #WednesdayWisdom #Turn2 https://t.co/4XzrhkCrpa" +01/03/2018,Sports_celeb,@JeterTurn2,"Learn more about our partnership with @EstatesACQ, @JORGEPOSADA_20 and @PosadaLifeCoach to help families affected b… https://t.co/u8s38CTadf" +01/03/2018,Sports_celeb,@JeterTurn2,"“Volunteering strengthens communities, and brings young people from different backgrounds together to make a differ… https://t.co/QZQtci0d1B" +01/02/2018,Sports_celeb,@JeterTurn2,Congratulations to @hodakotb on being named co-host of @TODAYshow! We wish you the best. https://t.co/23RT1ftifg +01/01/2018,Sports_celeb,@JeterTurn2,"Wishing everyone a #HappyNewYear! 2017 was a great year for us, and we look forward to an exciting and successful 2… https://t.co/Ce5nLWaCr0" +12/28/2017,Sports_celeb,@JeterTurn2,#TBT Our NY #JetersLeaders & program alumni gathered at the Jackie Robinson Recreation Center to celebrate the holi… https://t.co/dL1nV1LXnu +12/22/2017,Sports_celeb,@JeterTurn2,"As part of our partnership with @JorgePosada_20 & @PosadaLifeCoach, the furniture donated by @EstatesACQ arrived to… https://t.co/x7mSTVp3pu" +12/21/2017,Sports_celeb,@JeterTurn2,"#TBT to our Holiday Gift Wrapping Party earlier this month, where the NY #JetersLeaders assembled more than 1,100 g… https://t.co/KLDN0fNSKi" +12/20/2017,Sports_celeb,@JeterTurn2,"The Kalamazoo #JetersLeaders and program alumni celebrated the holidays earlier this week with bowling, arcade game… https://t.co/ZX42NrNI1J" +12/20/2017,Sports_celeb,@JeterTurn2,"“Being a leader doesn’t require a title, and having a title doesn’t make you one.” #WednesdayWisdom #JetersLeaders https://t.co/LtpOfosQM7" +12/19/2017,Sports_celeb,@JeterTurn2,#HappyHolidays from the #Turn2 Foundation family to yours! https://t.co/IqfxN9scu6 +12/18/2017,Sports_celeb,@JeterTurn2,“Don’t short-change yourself. Keep working to get better.” #MondayMotivation https://t.co/nM97VC3nKY +12/15/2017,Sports_celeb,@JeterTurn2,"The Kalamazoo #JetersLeaders spread holiday cheer yesterday at St. Augustine’s Eleanor House, where they shared gif… https://t.co/PsPGzIZq7j" +12/15/2017,Sports_celeb,@JeterTurn2,Learn more about #Turn2 and our Foundation’s work in the 2017 Turn 2 Magazine! https://t.co/OtdJ5j7wnf https://t.co/zpZFcPOkjP +12/14/2017,Sports_celeb,@JeterTurn2,Last week our #NY #JetersLeaders attended an exclusive performance of @WICKED_Musical as part of @Movado ’s Evening… https://t.co/3N8qfZfYy9 +12/13/2017,Sports_celeb,@JeterTurn2,Earlier this month children from the Turn 2 Us program kicked off the holiday season with a special annual celebrat… https://t.co/NK3XZNgpih +12/12/2017,Sports_celeb,@JeterTurn2,We're proud to partner with @EstatesACQ and Jorge Posada & @PosadaLifeCoach's Foundation for Puerto Rico to donate… https://t.co/GAThQOmHLd +12/08/2017,Sports_celeb,@JeterTurn2,"#Turn2 president Sharlee Jeter talks balancing work & family, and walks through her typical day with @Refinery29.… https://t.co/p5QJt6oUFA" +12/06/2017,Sports_celeb,@JeterTurn2,“Setting goals will put you on a path to living successful and healthy lifestyles.” #WednesdayWisdom #JetersLeaders https://t.co/FllaYT6TLU +12/05/2017,Sports_celeb,@JeterTurn2,"We’re excited to return to Shadow Creek for the 2018 #DerekJeter Celebrity Invitational with our partners, @JPSENET… https://t.co/43Ag4KeNQq" +12/04/2017,Sports_celeb,@JeterTurn2,“I’m not the one to sit around and be satisfied about something. I can always get better.” #MondayMotivation https://t.co/6pOUVBe2LT +12/02/2017,Sports_celeb,@JeterTurn2,Our #JetersLeaders & program alumni had a blast at the @threedoctors Foundation Holiday Health Basketball Benefit t… https://t.co/pEJLjhL67D +11/30/2017,Sports_celeb,@JeterTurn2,"Special thanks to our sponsors, @RookieUSA and @Yankees, for their generous donations! https://t.co/MAUkIWpdUx" +11/29/2017,Sports_celeb,@JeterTurn2,"Our NY #JetersLeaders worked together to assemble 1,100 gift bags that will make the holidays brighter for children… https://t.co/glIwOG5MbK" +11/29/2017,Sports_celeb,@JeterTurn2,“Goals are important because they give us both long- and short-term aspirations that will always better us.”… https://t.co/nWl1ymT4zO +11/28/2017,Sports_celeb,@JeterTurn2,"“When I think of the Jeter’s Leaders program, I think of opportunity.” By donating to our programs, you can help pr… https://t.co/AOXHaE0Po5" +11/27/2017,Sports_celeb,@JeterTurn2,"Meet Kendall, a Kalamazoo Jeter’s Leaders alumna. Kendall’s advice? “Don’t be afraid to put yourself out there.” By… https://t.co/pXFcxFDw5v" +11/23/2017,Sports_celeb,@JeterTurn2,"Happy #Thanksgiving, from the #Turn2 Foundation! https://t.co/1mkpVd1Hsc" +11/22/2017,Sports_celeb,@JeterTurn2,New York Jeter’s Leader alum Sharod plans to continue helping others in any way he can. Your support this… https://t.co/sqk1Rmw96R +11/22/2017,Sports_celeb,@JeterTurn2,“You don’t have to be famous to create change. Words and actions create change.” #WednesdayWisdom #JetersLeaders https://t.co/zdyfwvt9Cf +11/21/2017,Sports_celeb,@JeterTurn2,"Your support has allowed us to provide young people, like Chase, with the resources they need to reach their full p… https://t.co/QP0lYbHIyj" +11/20/2017,Sports_celeb,@JeterTurn2,“I don’t sit here every day and think about what I accomplished in the past…I’m always focusing on what I can do to… https://t.co/2I7Zn9GC1H +11/15/2017,Sports_celeb,@JeterTurn2,"""Challenge yourself and put all of your effort in everything you do."" #WednesdayWisdom https://t.co/nMp1kch3gp" +11/13/2017,Sports_celeb,@JeterTurn2,Happy #WorldKindnessDay! Celebrate by giving back to your community and helping others in need. #Turn2 https://t.co/TYsSRNBMze +11/13/2017,Sports_celeb,@JeterTurn2,RT @JoeTorre: At Rawlings Gold Glove dinner with Donnie baseball and Derek who was honored for his @JeterTurn2 Foundation. Great being with… +11/11/2017,Sports_celeb,@JeterTurn2,#DerekJeter will receive the Joe DiMaggio Icon Award by @JDCHospital in January for his contributions to society. https://t.co/E5DzzSFCbY +11/10/2017,Sports_celeb,@JeterTurn2,"Tonight, our KZ #JetersLeaders had the chance to see @WondertheMovie, an inspiring story reminding us to… https://t.co/ADSIS8yyIO" +11/09/2017,Sports_celeb,@JeterTurn2,A look back at our 21st Annual Dinner. Thanks to all attendees for helping us raise $1M to make a positive impact o… https://t.co/F3wUK2U3Cz +11/08/2017,Sports_celeb,@JeterTurn2,“Let people in and allow them to help you. You can’t do it alone.” #WednesdayWisdom #JetersLeaders https://t.co/Z7Q2OVnh58 +11/06/2017,Sports_celeb,@JeterTurn2,"“We have to be confident and secure enough to make the proper choices, regardless of what the people around us are… https://t.co/dPpHDjDAjL" +10/31/2017,Sports_celeb,@JeterTurn2,"On Saturday the #JetersLeaders heard from Cheryl Washington about her 20-yr career in news, effective communication… https://t.co/SPwLmJmD9g" +10/30/2017,Sports_celeb,@JeterTurn2,"""Don't focus on what the negatives might be...you can always find a positive in any situation."" #MondayMotivation https://t.co/kU6npj5dnL" +10/26/2017,Sports_celeb,@JeterTurn2,Today we celebrated 16 yrs of promoting #mentalwellness through our #Turn2 Us program in #WashingtonHeights with ou… https://t.co/9K0XkCL1bk +10/25/2017,Sports_celeb,@JeterTurn2,"“Nothing comes easily in life. If you want something, you have to work hard to achieve it.” #WednesdayWisdom… https://t.co/TAlJ2ioX9y" +10/23/2017,Sports_celeb,@JeterTurn2,"“Don’t let your past achievements, no matter how significant they may be, obscure the visions and goals you still h… https://t.co/urxsY6nYZh" +10/18/2017,Sports_celeb,@JeterTurn2,"“You eventually have to face your fear. Once you overcome it, life gets better. #WednesdayWisdom #JetersLeaders https://t.co/02GLrzqPxP" +10/16/2017,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: A look back at the 21st Annual #Turn2Gala, including a conversation on women in sports featuring @sportsiren, Derek Jet…" +10/16/2017,Sports_celeb,@JeterTurn2,"“We all make our own goals, so we all devise our own ceilings, too. If you feel that something is attainable, it is… https://t.co/KtxekVw8ab" +10/12/2017,Sports_celeb,@JeterTurn2,The 21st Annual #Turn2Gala raised $1 million to support our programs. Thanks to all who joined us & made this year’… https://t.co/O9II7tcB1z +10/12/2017,Sports_celeb,@JeterTurn2,Special thanks to the legendary @boyziimen for tonight’s unforgettable performance! #Turn2Gala https://t.co/U4ccN4jEWi +10/12/2017,Sports_celeb,@JeterTurn2,"Congratulations to our 2017 #Turn2 MVP, Chick Lee of ICON International! Thank you for your support. #Turn2Gala https://t.co/4gA037NBoO" +10/12/2017,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: When Derek Jeter was a rookie he created the @JeterTurn2 Foundation. + +Tonight we celebrate 21 years of giving back at t…" +10/12/2017,Sports_celeb,@JeterTurn2,"""Over the course of 21 years, Turn 2 has given back more than $27 million. That is astounding."" @hodakotb #Turn2Gala https://t.co/IBL5cHGjId" +10/12/2017,Sports_celeb,@JeterTurn2,"The 21st Annual #Turn2Gala has begun! We’re on the red carpet with Derek Jeter, Sharlee Jeter & the #JetersLeaders.… https://t.co/b7PI2Sjbdo" +10/11/2017,Sports_celeb,@JeterTurn2,"“People should set goals for themselves, and also motivate themselves to keep going when times get tough.”… https://t.co/kKOQcabCw1" +10/09/2017,Sports_celeb,@JeterTurn2,“...You can help yourself by taking an extra second to ponder how you should react to it.” #MondayMotivation https://t.co/7MlLR6vgIf +10/04/2017,Sports_celeb,@JeterTurn2,“Determination and dedication are the keys to success.” #WednesdayWisdom #JetersLeaders https://t.co/Vkl8a88Z3b +10/03/2017,Sports_celeb,@JeterTurn2,"New York #JetersLeaders grad Sharod is attending @Morehouse this fall, & has goals of becoming a district attorney.… https://t.co/ROG6m9JTSQ" +10/02/2017,Sports_celeb,@JeterTurn2,"""Don't dwell in the past. Don't feel that you've achieved something and now you can relax...” #MondayMotivation https://t.co/PzX5YtTXBL" +09/29/2017,Sports_celeb,@JeterTurn2,"NY #JetersLeaders grad Jordana is off to @syracuseu in the fall, where she will study TV, film & radio production.… https://t.co/EfQdsqP7SK" +09/28/2017,Sports_celeb,@JeterTurn2,#TBT to the NY #JetersLeaders retreat! They planned their 2017-18 program year at @Live_Unaddicted &later worked as… https://t.co/EYhvuRI3fj +09/27/2017,Sports_celeb,@JeterTurn2,“Be proud of the hard times that brought you to where you are today.” #WednesdayWisdom #JetersLeaders https://t.co/ElbsaTbCMU +09/26/2017,Sports_celeb,@JeterTurn2,"Congrats to New York #JetersLeader George! He is off to @StJohnsU to study biology, & strives to become a pharmacis… https://t.co/FWVxoimwNi" +09/25/2017,Sports_celeb,@JeterTurn2,"“Listen better and display more respect for people, and see how much smarter and gracious you become.”… https://t.co/Unye6T05QG" +09/22/2017,Sports_celeb,@JeterTurn2,NY #JetersLeaders grad Connor is off to @hofstraU this fall to study mechanical engineering & has goals to earn his… https://t.co/vdFJbqwcbz +09/21/2017,Sports_celeb,@JeterTurn2,"RT @Live_Unaddicted: Whether you are in recovery or you simply support people who want to get help, you’re important to the #LiveUnaddicted…" +09/20/2017,Sports_celeb,@JeterTurn2,Today the NY #JetersLeaders spoke at #WEDAY about service & how everyone can help after disasters like the recent h… https://t.co/SYPxfwQ5qA +09/20/2017,Sports_celeb,@JeterTurn2,"“You learn, you win & you lose. But you always get up."" #JetersLeaders #WednesdayWisdom https://t.co/HiQTgZQ80R" +09/19/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Darius! He is off to @FullSail to study film & has goals of becoming a su… https://t.co/EGSzm1kgOp +09/18/2017,Sports_celeb,@JeterTurn2,"“You’ve only got one life, so you should be proud of what you do.” #MondayMotivation https://t.co/4drE1ZrVYy" +09/13/2017,Sports_celeb,@JeterTurn2,Our hearts go out to those affected by Hurricane Irma. @usatoday has details on how you can help: https://t.co/CGicgNatd9 +09/13/2017,Sports_celeb,@JeterTurn2,“Young people should set goals for themselves so they can improve and discover new things.” #WednesdayWisdom… https://t.co/v0usoQsJlF +09/12/2017,Sports_celeb,@JeterTurn2,"Congrats to Kalamazoo #JetersLeaders grad Chase! He’ll attend @WesternMichU, & has goals of becoming an aerospace e… https://t.co/DoW8qMQjUh" +09/12/2017,Sports_celeb,@JeterTurn2,"Remembering those who lost their lives 16 years ago. #NeverForget +Photo credit: @646kb (via Instagram) https://t.co/zGr7fObF8g" +09/08/2017,Sports_celeb,@JeterTurn2,"RT @YESNetwork: The Captain shares his thoughts & condolences for the late Gene ""Stick"" Michael. https://t.co/e5SYLsiBZd" +09/06/2017,Sports_celeb,@JeterTurn2,"Proud to unveil new #JetersLeaders jerseys! Designed by @Jumpman23 + inspired by #RE2PECT line, they represent the… https://t.co/ejDAv23EyI" +09/06/2017,Sports_celeb,@JeterTurn2,"“Find your weakness, turn it into strength, and be sure to take risks.” #WednesdayWisdom #JetersLeaders https://t.co/lpxMc9HbBI" +09/04/2017,Sports_celeb,@JeterTurn2,“Don’t talk about doing something to help people. Just do it. We all have the ability to do things for others.”… https://t.co/ViOAYV8yQb +08/31/2017,Sports_celeb,@JeterTurn2,.@HoustonFoodBank is providing meals to displaced Houston residents. Every $1 = 3 meals. https://t.co/8d1K1oqKxF https://t.co/DqiDVpAvx8 +08/31/2017,Sports_celeb,@JeterTurn2,Congrats to New York #JetersLeader Marc on his graduation from @mckinneyssa! He has goals of becoming a nurse or do… https://t.co/11jjJ8PWus +08/31/2017,Sports_celeb,@JeterTurn2,.@HouUnitedWay established a Flood Relief Fund to help with recovery needs of those impacted. Donate here:… https://t.co/FUW1DrMDdu +08/30/2017,Sports_celeb,@JeterTurn2,.@TXDIAPERBANK will distribute emergency diaper kits to affected families. Donate here: https://t.co/4BsnVoCBsA https://t.co/DqiDVpAvx8 +08/30/2017,Sports_celeb,@JeterTurn2,So many incredible organizations across Texas that can use our support in this heroic rescue + recovery effort. Please give what you can! +08/30/2017,Sports_celeb,@JeterTurn2,“Setting goals will help you to fulfill your dreams.” #WednesdayWisdom #JetersLeaders https://t.co/8Ty8HUj7hd +08/29/2017,Sports_celeb,@JeterTurn2,"Our hearts are w/ Houston & those affected by devastation in Texas & Louisiana. Stay strong, take care of each other & #lookforthehelpers." +08/29/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Kendall! She will be attending @LifeAtPurdue in the fall to study food sc… https://t.co/2sp8TtvX2R +08/28/2017,Sports_celeb,@JeterTurn2,"“We should all want to continue learning, because no one knows all they need to know...” #MondayMotivation https://t.co/3JOO8Q454T" +08/24/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Ca’Jon! He’ll attend @WesternMichU & has goals of working in public relat… https://t.co/mkm3VJdbYJ +08/23/2017,Sports_celeb,@JeterTurn2,"“Stay positive, work hard, and you will have a bright future ahead of you.” #JetersLeaders #WednesdayWisdom https://t.co/i6gQzkOrSM" +08/22/2017,Sports_celeb,@JeterTurn2,"Congrats to New York #JetersLeaders grad Sata! She will attend @UnionCollegeNY in the fall, and has goals of travel… https://t.co/b0zHZilPzt" +08/21/2017,Sports_celeb,@JeterTurn2,"“It’s a nice feeling when the work you’ve been doing provides results before your eyes..."" #MondayMotivation https://t.co/iY47pq7Ekz" +08/19/2017,Sports_celeb,@JeterTurn2,Exciting projects are in the works with our #JetersLeaders and @WeMovement! Stay tuned. #Turn2 https://t.co/IuNdAV7V4M +08/17/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Ben! He's off to @michiganstateu & has goals of becoming a financial mana… https://t.co/ttVEBtx5qo +08/16/2017,Sports_celeb,@JeterTurn2,“You have the power to create positive change.” #WednesdayWisdom #JetersLeaders https://t.co/8vGy0ZdGzu +08/15/2017,Sports_celeb,@JeterTurn2,"RT @JRFoundation: ""What motivated me? Sisterhood. That turned into my non-profit, WEBelieve, Inc."" Chelsea Miller. @Columbia. Sponsor: @Jet…" +08/14/2017,Sports_celeb,@JeterTurn2,"“You have to accept the fact that there are going to be new challenges for you every day..."" #MondayMotivation https://t.co/z9Wuc2NPbq" +08/10/2017,Sports_celeb,@JeterTurn2,Get ready for the 21st Annual #Turn2Gala! @BoyzIIMen will perform & @HodaKotb will emcee. https://t.co/auZRFq4W3l f… https://t.co/81cm2of92a +08/09/2017,Sports_celeb,@JeterTurn2,"Today our #JetersLeaders visited @turner, where they learned about the interview process + #careers, and also toure… https://t.co/5iGL4wJszO" +08/07/2017,Sports_celeb,@JeterTurn2,"“Obviously, you’re known for what you do. But you still want to be known as a good person...” #MondayMotivation https://t.co/pX4vy4Wh8Z" +08/04/2017,Sports_celeb,@JeterTurn2,Thanks to the @RitzCarlton for hosting us for the #Turn2 #SocialChange Project in #NewOrleans! We are grateful for… https://t.co/7gDtglK8C7 +08/04/2017,Sports_celeb,@JeterTurn2,The #JetersLeaders had a great week at the 2017 #SocialChange Project. We are so proud of their commitment to makin… https://t.co/KsRh4Pv5NV +08/04/2017,Sports_celeb,@JeterTurn2,"The #JetersLeaders wrapped up the 2017 #SocialChange Project with #college visits to @TulaneNews, @du1869 +… https://t.co/foELthiw8w" +08/03/2017,Sports_celeb,@JeterTurn2,Our #JetersLeaders worked together to transform Einstein Charter School in #NewOrleans as part of the #SocialChange… https://t.co/9dNIIoo0V0 +06/29/2018,Sports_celeb,@AROD,Excited to be co-hosting @GetUpESPN see you at 8am @MichelleDBeadle @Espngreeny @JalenRose @SHAQ +06/29/2018,Sports_celeb,@AROD,RT @Yankees: Even Mo 💙’s J-Rod. https://t.co/v55l4hBnmt +06/27/2018,Sports_celeb,@AROD,RT @Ben_ESPN: .@AROD will co-host @GetUpESPN this Fri in studio from 8-10 a.m. ET to kick off a big weekend in New York which will culminat… +06/25/2018,Sports_celeb,@AROD,@Master_Raskul Thank you Scotty. Appreciate the compliment. +06/25/2018,Sports_celeb,@AROD,"@BenBinek @DaleMurphy3 @espn He was a phenomenal player, Ben. Thanks for your tweet." +06/25/2018,Sports_celeb,@AROD,@GableCR @SundayNightMLB Thank you for the nice compliment! +06/25/2018,Sports_celeb,@AROD,@FiascoShow Thank you for the compliment. +06/25/2018,Sports_celeb,@AROD,@TravisBevelaqua Thank you Travis. +06/25/2018,Sports_celeb,@AROD,@KHolman2012 Thank you Keith. +06/25/2018,Sports_celeb,@AROD,@wxmc @jessmendoza Thank you Mike. +06/25/2018,Sports_celeb,@AROD,@bopper33 Thank you for the compliment. +06/25/2018,Sports_celeb,@AROD,@JeffWirth2002 Thank you Jeff. +06/25/2018,Sports_celeb,@AROD,@Jay48240137 Appreciate the kind words. +06/25/2018,Sports_celeb,@AROD,@alexahnod @espn Thank you so much. +06/25/2018,Sports_celeb,@AROD,@pdotruck @tonyromo Thank you for the kind words. +06/25/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Red Sox vs. the Yankees on Sunday Night Baseball July 1. Recently, MLB's competition committee discussed pos…" +06/24/2018,Sports_celeb,@AROD,"Posse out — so long, Idaho. https://t.co/RBgdfhFSRU" +06/21/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: On Sunday Night Baseball June 24, we'll have the Phillies at the Nationals. With that in mind, what's the best of MLB's in…" +06/20/2018,Sports_celeb,@AROD,#WorldOfDance #Perfection @JLo @EGTisme https://t.co/aiAqGsYE2t +06/14/2018,Sports_celeb,@AROD,Rockin’ to some @rickspringfield on the way to see our girls’ recital. #JessiesGirl #80sNerd… https://t.co/x5xbRo5YGD +06/13/2018,Sports_celeb,@AROD,"What a great treat to hear one of my heroes, Hank Aaron. I could listen to him talk baseball all day. #legend @espn… https://t.co/bfaqvnU85O" +06/11/2018,Sports_celeb,@AROD,@darrenrovell @BarstoolBigCat @ronberk1 @RyanRuocco No. Just a 3 week time out. +06/10/2018,Sports_celeb,@AROD,"Tonight on SNB you will see the new & improved Severino. He has gone from the 1 pitch, cant miss prospect, to the 3… https://t.co/rnqrQouMmF" +06/10/2018,Sports_celeb,@AROD,Corp Quarterly Retreat. @BarstoolBigCat #ARodCorp https://t.co/V108xAcott +06/08/2018,Sports_celeb,@AROD,Many of you have been very gracious and complimentary about my analysis on @mlbonfox pregame shows. I guess it’s ti… https://t.co/5xUT652BoA +06/08/2018,Sports_celeb,@AROD,Tune into @GetUpESPN! I’ll be live in 5! https://t.co/i7sBNGyBsE +06/07/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Mets and Yankees on Sunday Night Baseball June 10. If MLB expands to 32 teams, with an equal number of teams…" +06/04/2018,Sports_celeb,@AROD,"When you spend a few years as a full-time DH and then a broadcaster, any chance you get to put on a glove ... you t… https://t.co/0PsuaRnGFr" +06/04/2018,Sports_celeb,@AROD,My little nephew...not so little as he gets ready for the #MLBDraft tomorrow! #proud @Nick__silva17 https://t.co/E4KX97CcXx +06/04/2018,Sports_celeb,@AROD,RT @Nick__silva17: Made it up to the booth! #SundayNightBaseball @AROD https://t.co/0X4Lqhw6T7 +06/03/2018,Sports_celeb,@AROD,Who’s ready for @espn #SundayNightBaseball? #bosvshou #letsgo #gettowork @barstoolbigcat https://t.co/p7H89Tqq0t +06/03/2018,Sports_celeb,@AROD,"RT @darrenrovell: The Brett Favre Draft Day photo gets all the love, but the @AROD Draft Day Photo, taken 25 years ago today when he was pi…" +05/30/2018,Sports_celeb,@AROD,Watch the Yankee game with me. I’m going to go live in a few on @instagram- get your questions ready! +05/28/2018,Sports_celeb,@AROD,".@BarstoolBigCat Thanks, Dan. Don’t forget- team meeting tomorrow, 8AM at HQ. Did you finish the financial model? https://t.co/R8Um6nMh2K" +05/28/2018,Sports_celeb,@AROD,".@BarstoolBigCat You may need earmuffs, kid https://t.co/WDxerIBSJB" +05/27/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Red Sox and the Astros on Sunday Night Baseball June 3, from Houston. With that in mind, here's this week's…" +05/20/2018,Sports_celeb,@AROD,#FeelingTheLove #GroupHug #FamilyTime https://t.co/ZY30yvteYm +05/15/2018,Sports_celeb,@AROD,"Join me July 13th in Anaheim, CA at Relentless 2018 hosted by @dannymorel! Purchase tix: https://t.co/MDpyeC902o https://t.co/unWNc9g9Th" +05/15/2018,Sports_celeb,@AROD,RT @ABCSharkTank: .@AROD will officially be coming back as a guest shark next season! https://t.co/ITHHeCqlGc +05/13/2018,Sports_celeb,@AROD,"Always great seeing my friend this week, the amazingly talented @jimmyfallon. Did you see us “face off” swinging th… https://t.co/uVxQZpYdWR" +05/12/2018,Sports_celeb,@AROD,"Speaking at the Wall Street Journal “The Future of Everything” Festival alongside @fanatics CEO, @MichaelGRubin.… https://t.co/FWFnNlEIyB" +05/10/2018,Sports_celeb,@AROD,"Wow. They really, really love this game. +#LifeNeedsSports + +https://t.co/r7shYCQkqv" +05/08/2018,Sports_celeb,@AROD,RT @Buster_ESPN: We've got the Nationals vs. the Diamondbacks for our Sunday Night Baseball broadcast May 13. With this in mind... poll que… +05/06/2018,Sports_celeb,@AROD,"RT @MLBPipeline: Joe Dunand, a power-hitting shortstop like Uncle @AROD, leads the FSL in total bases and hits and represents the #Marlins…" +05/03/2018,Sports_celeb,@AROD,"RT @GerryMatalon: “The game is like a great meal,” said Matalon, who runs the media training company Matalon Media. “Announcers are servers…" +05/02/2018,Sports_celeb,@AROD,"Me and @kevinolearytv at the Milken Conference #FacebookLive +https://t.co/gEkGKVx5Ys" +04/30/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: For Sunday Night Baseball May 6, we will have Cubs vs. Cardinals. Our poll question for that game is about Yadier Molina's…" +04/27/2018,Sports_celeb,@AROD,"#ElAnillo pa cuando...well I keep asking her! +#HailToTheQueen @JLo" +04/25/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: The Angels will host the Yankees in our next Sunday Night Baseball broadcast, on April 29th, in a game of stars. Among tho…" +04/24/2018,Sports_celeb,@AROD,@kevinmillar I forgot how good looking you used to be. 😉 https://t.co/hUzheaCkpi +04/12/2018,Sports_celeb,@AROD,RT @Inc: Publicist for Jay Z and A-Rod values creating relationships and building contacts @DarrenHeitner https://t.co/zR9Uqg6t4w +04/05/2018,Sports_celeb,@AROD,"RT @ForbesLife: Four years after being in baseball purgatory, Alex Rodriguez is finding redemption as one of the sport's most respected ana…" +04/01/2018,Sports_celeb,@AROD,Checking in on my boys @kevinburkhardt @DTrainMLB @TheBigHurt_35 ... great show guys! https://t.co/gLGP5UuU86 +03/30/2018,Sports_celeb,@AROD,Thank you guys. https://t.co/D46kwDIF3j +03/30/2018,Sports_celeb,@AROD,@TheOscGonzalez Thank you Oscar. +03/30/2018,Sports_celeb,@AROD,@yet_another_day @espn @Dodgers @SFGiants Thank you Larry. +03/30/2018,Sports_celeb,@AROD,Thanks Brian. https://t.co/Td77HOTQAZ +03/30/2018,Sports_celeb,@AROD,@reidrattlecage Thanks Tony. +03/30/2018,Sports_celeb,@AROD,@TheIanSolomon @espn Thank you Ian for the kind words. +03/30/2018,Sports_celeb,@AROD,@chrisdigerolamo @espn @SFGiants @Dodgers Thank you Chris. +03/30/2018,Sports_celeb,@AROD,@Ruinerof_Days @_jessicamendoza Thank you so much. +03/19/2018,Sports_celeb,@AROD,"We always strive to be the best, but it helps when you also can learn from the best. Tim McCarver is one of my base… https://t.co/vkQILu9VzB" +03/18/2018,Sports_celeb,@AROD,"Congrats @joedunand on your homer today. So great to watch you playing at a high level. Aim for the bushes, reach f… https://t.co/DO7YJTO448" +03/14/2018,Sports_celeb,@AROD,"Get back on your feet, get back to work, be stronger than your excuses. @cnbc #BackInTheGame #ARodCNBC" +03/13/2018,Sports_celeb,@AROD,"See if I can help former NBA star, @JoeBeast95, get back on his feet out in my new show, Back in the Game. + +Premie… https://t.co/RcnFXkfiJ5" +03/12/2018,Sports_celeb,@AROD,"Hey, #SXSW! I‘m talking baseball, business and redemption with @CNBC today at 9:30a CT. #ARodCNBC" +03/08/2018,Sports_celeb,@AROD,"Very proud of this project! #ProjectDestined + +https://t.co/E8CC3BqesG" +03/05/2018,Sports_celeb,@AROD,"Everyone loves an epic comeback story. + +See if I can help former NBA star, @JoeBeast95, get back on top. Watch my… https://t.co/Ne5Uft5ZDH" +03/04/2018,Sports_celeb,@AROD,"ICYMI: SNL “The Champions” + +https://t.co/ZU7W4iAsU3" +03/03/2018,Sports_celeb,@AROD,.@BarstoolBigCat No days off at #TheCorp https://t.co/kyycvniD4o +03/03/2018,Sports_celeb,@AROD,".@barstoolbigcat only 1,000 more to go. @barstoolsports https://t.co/jzzqQj2S07" +02/16/2018,Sports_celeb,@AROD,"RT @SportsCenter: The Cubs' Anthony Rizzo, a graduate of Marjory Stoneman Douglas High School, fought through tears as he delivered a heart…" +02/15/2018,Sports_celeb,@AROD,#HappyValentinesDay everyone!! ❤️❤️💕💕 https://t.co/PA40KpxEhq +02/07/2018,Sports_celeb,@AROD,RT @ElNidoFamily: Great advice!! “Shoot for the President; shoot for the CEO; don’t shoot for #2.” -@AROD https://t.co/XWL19AROsT +02/04/2018,Sports_celeb,@AROD,"Hmmm. Sounds good, Coach. Not sure about that logo though. I can’t place it exactly but I feel like I’ve seen it be… https://t.co/N2f4Y1Dkxn" +02/04/2018,Sports_celeb,@AROD,Just one more selfie. I just found out what the Superzoom does. https://t.co/sounGYtnlj +02/04/2018,Sports_celeb,@AROD,"“Dad, go stand behind the tree. You’re embarrassing us.” #SuperBowl #Minnesota #ella https://t.co/qCAF3ilc22" +02/03/2018,Sports_celeb,@AROD,"RT @CBBonFOX: ""You lived your dream of playing ball, I've been able to live my dream of coaching ball."" + +@DukeMBB's Coach K sits down with…" +02/03/2018,Sports_celeb,@AROD,Off to Minneapolis. ✈️ 🏈 https://t.co/vCkis3UQMz +02/02/2018,Sports_celeb,@AROD,"My 2018 ‘game plan’ for real estate investing. #CNBC #RealEstate #Investing @CNBC +https://t.co/h3jfZw55HF https://t.co/ETAAOFoOfT" +02/01/2018,Sports_celeb,@AROD,"RT @CBBonFOX: Coach K on this year's @DukeMBB team: ""They have so much to learn in a condensed period of time."" + +@AROD x Coach K... Saturda…" +02/01/2018,Sports_celeb,@AROD,"This is for every woman who works till 1am to get it right, who has the grit to get up when it’s not, and who shows… https://t.co/664uG7Ov44" +02/01/2018,Sports_celeb,@AROD,I had the honor of sitting down with Coach K. Catch the full interview Saturday on @CBBonFOX https://t.co/LgJepawxBA +01/31/2018,Sports_celeb,@AROD,"Happy birthday @barstoolbigcat. Here at the Corp we would usually give you the day off, but since it's a busy time… https://t.co/n8zg1qnxoV" +01/30/2018,Sports_celeb,@AROD,Quick break during rehearsals at @nbc @unistudios before we head to #Minneapolis for @jlo’s Super Bowl Saturday nig… https://t.co/xjJjGiEpA4 +01/29/2018,Sports_celeb,@AROD,Thanks for tuning in tonight to @ABCSharkTank! There’s another episode airing now! Do not go anywhere! +01/29/2018,Sports_celeb,@AROD,"Done deal! Congrats Martin! You’ve got, not 1, not 2, but 3 sharks backing @SnapClips! @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,Bet you didn’t see that coming… @MCuban is also in! Making that a 3-way offer of $150k for 30%. @SnapClips @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Surprise! I’m in on the deal with @LoriGreiner! @SnapClips +01/29/2018,Sports_celeb,@AROD,We have @LoriGreiner’s offer- $150k for 50% of @SnapClips. @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Quit school?! 😳 @SnapClips @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"$150,000 for 15% equity for @SnapClips. Who will make the deal? @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,Boom! @MCuban made the deal with Nick and Dan of #Changed! Congrats fellas! @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Now @MCuban is in for $250k for 25% of #Changed with no room for negotiation. @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Highway robbery @RobertHerjavec! $250k for 48%?! #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,No competitive advantage. I’m out. Best of luck to Nick and Dan. #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"2 brothers, raised by a single- mother who emigrated from Poland and worked 3 jobs to support her kids. #Inspiration #Changed @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,I’m always interested to see where people come from and hear their stories. @ABCSharkTank #Changed +01/29/2018,Sports_celeb,@AROD,Americans owe $1.3 trillion in student loan debt?! #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,$250k for 15% of #Changed. Which shark will get the deal done? @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"RT @BarbaraCorcoran: Who else loves @AROD’s definition of a PHD? Poor, Hungry and Driven! I do! I had PHD myself when I was starting out. #…" +01/29/2018,Sports_celeb,@AROD,"RT @TheSharkDaymond: “I love to work with entrepreneurs who have a PHD – Poor, hungry and driven.” - @Arod #SharkTank" +01/29/2018,Sports_celeb,@AROD,Best of luck to you guys. Never stop hustling. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"“You’re only as good as your team.” It’s okay if you’re the creative or visionary of your company, but always have… https://t.co/mFyqgPWfXi" +01/29/2018,Sports_celeb,@AROD,"Whoa, whoa, whoa.. let’s hear those numbers again. #KnowYourNumbers @ShowerPill @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Impressive resumes, fellas. @ShowerPill @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,“Shower to the people.” I like the sound of that. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,These look like my kind of guys. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"“Never take ‘no’ for an answer.” Congrats to @TheBouqsCo for your unconventional, yet inspiring @ABCSharkTank story! @robertherjavec" +01/29/2018,Sports_celeb,@AROD,"Congratulations @BarbaraCorcoran, Ondrea & Marquez on your deal! Best of luck! #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"What?! @LoriGreiner, you can’t do that to me! We’re sticking to 30%! #Partners #TheDoughBar" +01/29/2018,Sports_celeb,@AROD,Didn’t see that coming! @BarbaraCorcoran drops her offer to 25%! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"Let’s make a deal! $400,000 from me AND Lori for 30% of #TheDoughBar! @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"My turn! “I love to do business with people who have a PHD… Poor, Hungry, & Driven.” @ABCSharkTank #TheDoughBar" +01/29/2018,Sports_celeb,@AROD,"Next: @LoriGreiner’s offer- $300,000 for 20%.. Things are getting interesting… #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"First up: @BarbaraCorcoran is in with her offer- $300,000 for 30% #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"As entrepreneurs, you should always think about the EXIT. #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Marquez, I too grew up with a single parent. My mom inspired me to go for my dreams like your dad did for you! #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"$1.2M in sales since 2015?! 280,000 doughnuts sold?! Very impressive. #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Well said @RobertHerjavec, “sell us on the numbers.” #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,“Wow!” Is right.. they really were delicious! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,A doughnut with 11 grams of protein?! Now that’s something even I would eat! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Whoa! You want to give @BarbaraCorcoran a heart attack?! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,We have a great episode for you guys tonight!!! Tune in NOW! @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Who’s ready to step into the Tank with me? Tune in at 9ET for an all-new @abcsharktank! #SwimmingWithTheSharks https://t.co/XGfoQrGy5Q +01/28/2018,Sports_celeb,@AROD,RT @JLo: You don't want to miss @AROD on all NEW @ABCSharkTank TONIGHT on @ABCNetwork #SharkTank +01/28/2018,Sports_celeb,@AROD,Join me tonight at 9pm ET! I’ll be live tweeting during my episode of @ABCSharkTank. Who is tuning in? +01/27/2018,Sports_celeb,@AROD,"RT @GMA: ""It is important early on to set the standard for your kids... don't shoot for number 2."" @AROD talks family, @ABCSharkTank and mo…" +01/27/2018,Sports_celeb,@AROD,"RT @MLB: A hitting contest between @AROD and young prodigy Asher Willig on @FallonTonight. + +Who ya got? 🤔 🤔 https://t.co/nf74u8La3M https:/…" +01/27/2018,Sports_celeb,@AROD,"RT @Yankees: Cool things about this video ranked: + +1. Asher's adorableness (and skills) +2. @AROD batting lefty +3. Asher winning (spoiler al…" +01/26/2018,Sports_celeb,@AROD,RT @CNBCClosingBell: .@AROD is coming up in the next hour to talk about his latest investments. What do YOU want to ask him? Tweet us your… +01/26/2018,Sports_celeb,@AROD,Excited to be on @cnbcclosingbell today at 4:20pm! @_ARodCorp +01/24/2018,Sports_celeb,@AROD,Check out @fallontonight with @jimmyfallon right now! Hopefully I won’t have to smash eggs on my face tonight like… https://t.co/j3p0d3Owu8 +01/23/2018,Sports_celeb,@AROD,. @barstoolbigcat hope you learned your lesson. Week’s up. See you bright and early at The Corp. #BackToTheGrind +01/21/2018,Sports_celeb,@AROD,Dinero. Dinero. Dinero. #comingsoon #smash #Calibash @jlo https://t.co/TTlCcLK5hr +01/20/2018,Sports_celeb,@AROD,Game on @NRGgg!! https://t.co/jEglffK9wL +01/20/2018,Sports_celeb,@AROD,I’ll be on @fs1 tonight during #IndvsMSU soon! Great college basketball atmosphere here! +01/18/2018,Sports_celeb,@AROD,#wheelsup #10dayroadtrip #6cities #busy2018 #arodcorp @steph_mas in the back buried in emails #youcanthide #goteam https://t.co/XDQS9ADGiC +01/15/2018,Sports_celeb,@AROD,Fight for what you believe in. #MLKDay #CivilRights #ABetterAmerica @mlb https://t.co/6NlUs03trE +01/15/2018,Sports_celeb,@AROD,. @BarstoolBigCat I just told the team the news. I expect you to be back at the CORP next Monday #BigCatSuspended https://t.co/5j0wvuxFAl +01/15/2018,Sports_celeb,@AROD,@BarstoolBigCat NO EXCUSES. https://t.co/KCrA2IiYEM +01/15/2018,Sports_celeb,@AROD,RT @BarstoolBigCat: THIS IS MY NIGHTMARE https://t.co/SJIoMHX4eM +01/14/2018,Sports_celeb,@AROD,Saturday groove. #Tashi #DaddysGirl #GrowingUpSoFast https://t.co/GLFTHTu9mo +01/11/2018,Sports_celeb,@AROD,Looking forward to my keynote @AjamuGroupMulticulturalMedia Luncheon powered by @Toyota during @naias on Jan 18th… https://t.co/lz8Kdf5QjF +01/09/2018,Sports_celeb,@AROD,Still thinking about our day in Puerto Rico. Inspiration to last a lifetime. @boldworldwide @goodmorningamerica… https://t.co/3jA65ljkwP +01/06/2018,Sports_celeb,@AROD,Get after it. https://t.co/nFcZp18gxe +01/05/2018,Sports_celeb,@AROD,"Easy decision ... let’s get the 3Peat, boys! @NRGgg https://t.co/6b31aBs8A2" +01/03/2018,Sports_celeb,@AROD,Gym bound @TruFusion https://t.co/WvBX3xRDjb +12/31/2017,Sports_celeb,@AROD,2018👊🏽 https://t.co/wGNCO9v8Ek +12/31/2017,Sports_celeb,@AROD,"Hey @BarstoolBigCat. If @BadgerFootball wins, you get next week off at #ARodCorp. In other words, see you bright an… https://t.co/08CvETpoVB" +12/27/2017,Sports_celeb,@AROD,#DayAfterChristmas #WhatIsGoingOnHere https://t.co/V9UghfSsZI +12/27/2017,Sports_celeb,@AROD,Proud of the work my friend @marcuslemonis is doing to help and bring awareness to those in need in Puerto Rico. Ch… https://t.co/uTKdGnYIVI +12/25/2017,Sports_celeb,@AROD,So much for my attempted photobomb. #Blocked #Nametag #HiMyNameIsAlex #TrustMeIAmBackThere https://t.co/tmMIFxzLG4 +12/25/2017,Sports_celeb,@AROD,"To all of our family, friends, and amazing fans and supporters, have a happy, healthy and safe holiday. Merry Chri… https://t.co/SfHif0R2nj" +12/23/2017,Sports_celeb,@AROD,You can do anything. Wishing everyone a happy and healthy holiday season. #nolimits #yesyoucan #2018 #goforit… https://t.co/JR63tEj6vK +12/22/2017,Sports_celeb,@AROD,RIP Dick Enberg. True professional with a great voice and Iove of sports. Thank you for being so kind to me and my… https://t.co/uKu6S70f5G +12/21/2017,Sports_celeb,@AROD,"Here’s to two of my lifelong heroes, @imisiahthomas & @magicjohnson. Like so many, I loved watching them play baske… https://t.co/IFWkomhrcB" +12/20/2017,Sports_celeb,@AROD,Baseball / Business - 5 ways how they are alike https://t.co/YzuyEJFsN4 +12/19/2017,Sports_celeb,@AROD,You would think by now I might have a cordless phone in my office #Retro #Stuckin1990 #Mondays #OfficeLife https://t.co/LYIbGhcG5i +12/17/2017,Sports_celeb,@AROD,Gorgeous winter day in the mountains. Perfect for an outdoor hike. https://t.co/5IwTJioapm +12/17/2017,Sports_celeb,@AROD,"Talented group of guys who helped out today! + +Adell pick no. 10, for the Angels +Downs pick no. 37 for the Reds +Joe… https://t.co/Iq5q7EqUmC" +12/17/2017,Sports_celeb,@AROD,"Shoutout to head coach Melendez and his son MJ, for an incredible event for the kids, the community, and the Boys a… https://t.co/ooqZkJK7aT" +12/14/2017,Sports_celeb,@AROD,Yu Darvish is a great free-agent talent and huge value for whomever signs him. Once he figures out his World Series… https://t.co/qp3p2ARyMi +12/13/2017,Sports_celeb,@AROD,Wow! What an incredible journey conveyed through music and storytelling tonight from Bruce @Springsteen. He is one… https://t.co/lDP2FiVzf9 +12/13/2017,Sports_celeb,@AROD,"Nice prank, @davidortiz. Hats off to #Masterpass for the assist. 😂 #Sponsored https://t.co/YowWgCn6O0" +12/12/2017,Sports_celeb,@AROD,"Good times. Even better company. From our families to yours, have a safe and festive holiday season. https://t.co/KjEojq8wZC" +12/12/2017,Sports_celeb,@AROD,So much fun visiting the set of #SecondAct. Can’t wait to see this movie. @jlo @vanessahudgens #nyc #212… https://t.co/ZX9EUIMbPt +12/06/2017,Sports_celeb,@AROD,RT @barstoolsports: Another day at Barstool HQ. #ArodCorp https://t.co/lH0VqACcde https://t.co/rJ0uy7zFHy +11/29/2017,Sports_celeb,@AROD,https://t.co/koDRGL3BCH +11/29/2017,Sports_celeb,@AROD,Excited to announce that I have joined the @wmespeakers group! Looking forward to opportunities to speak with enthu… https://t.co/c4WsBLg5HW +11/28/2017,Sports_celeb,@AROD,"You got jokes, @davidortiz. But I'll get the last laugh with #Masterpass. #Sponsored https://t.co/EHeKY6ZP7z" +11/28/2017,Sports_celeb,@AROD,"Happy birthday Elaine. Incredibly passionate, loyal & loving human being. Lucky to call you a friend. @EGTisme https://t.co/nMUPr0kcz7" +11/27/2017,Sports_celeb,@AROD,Finally got some copies of the December @vanityfair cover. Signed a few for charity. What do you guys think? https://t.co/0NyNtMH4ri +11/25/2017,Sports_celeb,@AROD,Perfect day to take the girls for some ice cream #hamptons #holidayweekend https://t.co/TFbS6mfBYH +11/22/2017,Sports_celeb,@AROD,"For everyone who does their part to pay it forward for the next generation, thank you. I’m grateful for all of you.… https://t.co/kwAButhW5b" +11/22/2017,Sports_celeb,@AROD,Girls at work.  #secondact #nyc #tashi13 https://t.co/Xn7lLjXZQm +11/22/2017,Sports_celeb,@AROD,"You're not the only one with #Masterpass, @davidortiz. https://t.co/HxlcAr5RqI" +11/17/2017,Sports_celeb,@AROD,Going live on my #Instagram @AROD from the Dubai concert! +11/14/2017,Sports_celeb,@AROD,With the great Chef Nobu Matsuhisa in Dubai! https://t.co/x1Z5nTsY6D +11/14/2017,Sports_celeb,@AROD,RT @NRGgg: A birthday wish from @AROD and @JLo ?!?! Check that off the bucket list... https://t.co/Bukj0CZ0xk +11/14/2017,Sports_celeb,@AROD,I’m proud to support @caribu’s donation of their app to all currently serving military during this holiday season.… https://t.co/zKAI9tHpGa +11/12/2017,Sports_celeb,@AROD,The swagger is back! @miamihurricanes #ItsAllAboutTheU 🙌 @unclelukereal1 #TurnBackTheClock #305 #GoCanes https://t.co/E7CeXOVUhw +11/11/2017,Sports_celeb,@AROD,Thank you @DesmondHoward @ReceDavis @LeeCorso and @KirkHerbstreit for hosting me today on @collegegameday! #GoCanes… https://t.co/dSQq6sdJ85 +11/11/2017,Sports_celeb,@AROD,Miami vs Notre Dame. @collegegameday #GoCanes https://t.co/sZiamqI4em +11/10/2017,Sports_celeb,@AROD,Looking forward to the weekend like... #tgif https://t.co/cI5WByPiEW +11/10/2017,Sports_celeb,@AROD,There’s no place I’d rather be on Saturday morning than making some picks on @CollegeGameDay in my hometown of Miami! Tune in! #THEU 🙌 +11/10/2017,Sports_celeb,@AROD,Thanks to @Yankees & Jason Zillo for hosting the Q&A today at the @Harman store event. Great talking to so many fa… https://t.co/lUkIRVN19c +11/08/2017,Sports_celeb,@AROD,Sad to hear about the passing of Roy Halladay today. Tremendous competitor. Prayers go out to his family. https://t.co/qhAZeWaVyG +11/06/2017,Sports_celeb,@AROD,RT if you tuned in to @ABCSharkTank tonight! What was your favorite pitch? +11/06/2017,Sports_celeb,@AROD,"As a business scales, it gets a lot more challenging... @ABCSharkTank #SharkTank" +11/06/2017,Sports_celeb,@AROD,Never let your fear stand in the way of your dreams. @GloveStix @ABCSharkTank #SharkTank +11/06/2017,Sports_celeb,@AROD,Your competitive advantage is what sets you apart. @ABCSharkTank #SharkTank +11/06/2017,Sports_celeb,@AROD,Wrong sport... wish they would have brought a bat!!! #Basketball @hoopsmaps @ABCSharkTank +11/06/2017,Sports_celeb,@AROD,Always keep it simple. #SharkTank @BravoTipOrPay +11/06/2017,Sports_celeb,@AROD,Who is tuning in to @ABCSharkTank tonight? Only 10 more minutes until another brand new episode! I’ll be watching and tweeting with you. +11/06/2017,Sports_celeb,@AROD,Who is excited for two hours of #SharkTank tonight? @ABCSharkTank +11/05/2017,Sports_celeb,@AROD,#MySunday. Ice cream in the afternoon and then home to catch @ABCSharkTank! Tweet along with me during the show! https://t.co/2LjTsOeWQ7 +11/05/2017,Sports_celeb,@AROD,We’re teaching the next generation. Real business skills and real investment. Train. Invest. Transform.… https://t.co/D9aMgVntln +11/05/2017,Sports_celeb,@AROD,We’re teaching the next generation. Real business skills and real investment. Train. Invest. Transform.… https://t.co/o3b5KFNgCn +11/04/2017,Sports_celeb,@AROD,A leader on and off the field. An amazing person that I’m proud to call a friend. I couldn’t be happier for… https://t.co/43e7CSKqZM +07/07/2017,Sports_celeb,@AmericanRaceTNT,"The progress he sought wasn’t happening, so @AttorneyGriggs stepped up and led his community to create change.… https://t.co/AiwmDbcuFz" +07/07/2017,Sports_celeb,@AmericanRaceTNT,"When examining the racial issues of today, @wendycarrillo emphasizes the importance of historical context leading u… https://t.co/k50sRK8u2C" +07/06/2017,Sports_celeb,@AmericanRaceTNT,"“Hashtag revolution” isn’t much of an inspiring phrase, but as @amandaseales says, they are key to spreading awaren… https://t.co/6iNjBKJNUp" +07/06/2017,Sports_celeb,@AmericanRaceTNT,"Six states: California, Texas, Florida, New York, New Jersey, & Illinois account for 59% of undocumented immigrants… https://t.co/eNQtG53BHa" +06/30/2017,Sports_celeb,@AmericanRaceTNT,Does Hollywood have a whitewashing problem? @icecube & other entertainment professionals explore in episode 3 of #AmericanRaceTNT +06/30/2017,Sports_celeb,@AmericanRaceTNT,The conversation must persist beyond the last episode of #AmericanRaceTNT. We all have to do our part. https://t.co/FdLxufPFqS +06/30/2017,Sports_celeb,@AmericanRaceTNT,"1 in 7 US infants (14%) were multiracial in 2015, three times the amount from 1980. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"Exposure to other faiths is low but rising. 21% of US adults were raised in mixed religious homes, compared to 79% single. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"In the 2nd #AmericanRaceTNT Roundtable @hodakatebi, @PeterJaeNYLA, @julissaarce & @missandrealewis talk immigration: https://t.co/tPLHBGHTpy" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"57% of Americans favor same-sex marriage, while 39% oppose it. The rest have no strong opinions one way or the other. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"""Minorities are always trying their best to fit in, to belong. That’s where the patriotism comes from."" -… https://t.co/VyiAOF0ZQJ" +06/30/2017,Sports_celeb,@AmericanRaceTNT,5% of Americans in 1965 were foreign-born. Today it's 14%. How will this rising number of immigrants affect US iden… https://t.co/IPSFXYVaRb +06/30/2017,Sports_celeb,@AmericanRaceTNT,Rewatch #AmericanRaceTNT episodes 1 through 4 on the TNT app or on https://t.co/XrvB6lfS0a +06/29/2017,Sports_celeb,@AmericanRaceTNT,"ICYMI, the #AmericanRaceTNT Roundtables tackle immigration, Islam & representation. Check them out on Facebook: https://t.co/tPLHBGHTpy" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"In episode 1 of #AmericanRaceTNT, @byDVNLLN explains how the Baltimore Uprising inspired him. See it on https://t.co/XrvB6lfS0a" +06/29/2017,Sports_celeb,@AmericanRaceTNT,The best parts of the U.S. comes from the variety of cultures that inhabit it. To make it uniform is to make it ste… https://t.co/5Bhen2kTEw +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Since 2000, the immigrant population rose about 30% to a record 43.6 million in 2014. #AmericanRaceTNT" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Social media is a vital tool in activism, as supported by @amandaseales & @byDVNLLN in the 1st #AmericanRaceTNT Roundtable." +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Asian immigrants are projected to overtake Hispanic immigrants by 2065, becoming 38% of the foreign-born population… https://t.co/Jm1x3hcaeh" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"In the 2nd episode of #AmericanRaceTNT, attorney @WBillyMurphy airs out the sordid history of police brutality. https://t.co/wc6af3W6d2" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT episode 3 displays the harsh, limited reality of being a minority working in Hollywood. #whitewashing #diversity #poc" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"49% of Hispanics consider themselves a ""typical American."" 44% think they're ""very different."" The rest fall in-between. #AmericanRaceTNT" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"If you missed the conversation, you can still watch the four-part docu-series #AmericanRaceTNT on-demand. https://t.co/jgPOpprhyi" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"""What does it mean to say 'Muslim is the new Black?"" @hodakatebi & @missandrealewis answer this in the 2nd #AmericanRaceTNT Roundtable." +06/28/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT approaches the conversation without bias. See all 4 episodes at https://t.co/XrvB6lfS0a & on the TNT app. +06/28/2017,Sports_celeb,@AmericanRaceTNT,".@ShaunKing holds the idea that, for all the social media criticism, there are far more instances of its positive r… https://t.co/nV2pacBYZi" +06/28/2017,Sports_celeb,@AmericanRaceTNT,One of the largest issues surrounding undocumented residents in the U.S is the unfortunate effect it has on their k… https://t.co/wSqsMyX6Av +06/28/2017,Sports_celeb,@AmericanRaceTNT,68% of black social media users are likely to say that they see racial posts online. #AmericanRaceTNT +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Prof. #JodyArmour hosts two #AmericanRaceTNT Roundtables w/ panelists @ShaunKing, @amandaseales, @hodakatebi & more. https://t.co/4ivMNIxWha" +06/27/2017,Sports_celeb,@AmericanRaceTNT,All #AmericanRaceTNT episodes available for download with the TNT app. +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Islam is a divisive topic in Irving, Texas. The 2nd episode of #AmericanRaceTNT explores this divide from both sides." +06/27/2017,Sports_celeb,@AmericanRaceTNT,Let's continue the conversation. Surround yourself with diverse-minded people & strive for a better future.… https://t.co/oCckwZmJkd +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Minorities are the most likely to live in multi-generational homes, & at 27%, Asians are the largest of these groups. #AmericanRaceTNT" +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Episode 4 of #AmericanRaceTNT dives into immigration. If you missed it the first time around, find it on… https://t.co/RKKYC8WNBl" +06/27/2017,Sports_celeb,@AmericanRaceTNT,"In the 1st #AmericanRaceTNT Roundtable @ShaunKing, @amandaseales, @wendycarillo & @byDVNLLN discuss police brutality https://t.co/xHl6MrWTQZ" +06/27/2017,Sports_celeb,@AmericanRaceTNT,RT @NABJ: .@NABJSports welcomes Charles Barkley of @AmericanRaceTNT and @simone_manuel of @USASwimming to #NABJ17. See more: https://t.co/D… +06/27/2017,Sports_celeb,@AmericanRaceTNT,Episode 4 of #AmericanRaceTNT takes a deep dive into immigration and how it affects American citizens. Watch it at https://t.co/XrvB6lfS0a +06/26/2017,Sports_celeb,@AmericanRaceTNT,There’s few things more damaging to Muslim public image than the overwhelmingly negative portrayal in media.… https://t.co/7Y2Ywp5t0N +06/25/2017,Sports_celeb,@AmericanRaceTNT,President Trump’s consistent anti-Mexican rhetoric has naturally unsettled Latinos across the country to varying de… https://t.co/yiQDYRhvFy +06/24/2017,Sports_celeb,@AmericanRaceTNT,Conservative. Liberal. Everything in between or neither. #AmericanRaceTNT tackles the issues important to everyone. https://t.co/AfVEHlNDYV +06/24/2017,Sports_celeb,@AmericanRaceTNT,"For decades, Asians have witnessed the same tired stereotypes in fiction, and rapper @dumbfoundead refutes them as… https://t.co/I9lURTjja9" +06/23/2017,Sports_celeb,@AmericanRaceTNT,All episodes of #AmericanRaceTNT are ready to watch on-demand and on @tntdrama digital platforms. https://t.co/vesBNwVSey +06/23/2017,Sports_celeb,@AmericanRaceTNT,Get inspired and extend the conversation beyond the show. @PeterJaeNYLA lets you know how. #AmericanRaceTNT https://t.co/09ObgUIg8n +06/22/2017,Sports_celeb,@AmericanRaceTNT,Rewatch all 4 episodes of #AmericanRaceTNT on https://t.co/3VE9C7gwKQ and the TNT app +06/22/2017,Sports_celeb,@AmericanRaceTNT,"Diversity in Hollywood is a crucial topic to be breached, and @icecube explains what he sees as issues in the indus… https://t.co/QFgPH9EYDD" +06/22/2017,Sports_celeb,@AmericanRaceTNT,"The amount of anti-Muslim hate groups in the U.S. tripled in 2016, according to the @splcenter. #AmericanRaceTNT https://t.co/27MMtxGe3g" +06/22/2017,Sports_celeb,@AmericanRaceTNT,"Different communities may seek different things, but at the end of the day, progress is the singular goal.… https://t.co/D1nUxR91pJ" +06/21/2017,Sports_celeb,@AmericanRaceTNT,"An idealized America should not only accept, but celebrate, the variety of cultures that comprise it.… https://t.co/FBDHB9TxRh" +06/21/2017,Sports_celeb,@AmericanRaceTNT,Sometimes the conversation leads to understanding. Sometimes it just reveals how deep a divide this country has.… https://t.co/XKc0yaNZY5 +06/21/2017,Sports_celeb,@AmericanRaceTNT,"Activist and blogger @hodakatebi believes in a limit to free speech. Do you agree &, if so, where does the threshol… https://t.co/eH1OBYq9mR" +06/21/2017,Sports_celeb,@AmericanRaceTNT,Perception of journalistic integrity has eroded in recent times. Professor @trbhsk cites fake news as the source… https://t.co/7Wz3GgiCRY +06/20/2017,Sports_celeb,@AmericanRaceTNT,"Many Americans may go their entire lives without meeting certain minorities, leaving the media to properly represen… https://t.co/2YV3iioPQI" +06/19/2017,Sports_celeb,@AmericanRaceTNT,Sometimes the conversation leads to understanding. Sometimes it just reveals how deep a divide this country has.… https://t.co/JPBbpHt2VX +06/19/2017,Sports_celeb,@AmericanRaceTNT,RT @AttorneyGriggs: I want to thank #AmericanRaceTNT @americanracetnt for the lovely gift. #justicefighter https://t.co/r326XFYnYg +06/19/2017,Sports_celeb,@AmericanRaceTNT,"Religion's significance in the U.S. is waning, a trend that's projected to continue. Is this a cause for concern?… https://t.co/6UkVzlhfGS" +06/16/2017,Sports_celeb,@AmericanRaceTNT,Relive the #AmericanRaceTNT conversation on TNT digital platforms. https://t.co/NzKhKvktky +06/15/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT is on tonight at 11pm PST. Tune-in and continue the conversation about race, religion & stereotype… https://t.co/lDtWVcypqu" +06/14/2017,Sports_celeb,@AmericanRaceTNT,How likely are you to see a film if an actor's ethnicity is inconsistent with their character's? #AmericanRaceTNT https://t.co/4rH0Ywbven +06/14/2017,Sports_celeb,@AmericanRaceTNT,"Due to a large influx of Asian & Hispanic immigrants, Millennials are the most diverse generation in US history.… https://t.co/EJKgZFujzr" +06/14/2017,Sports_celeb,@AmericanRaceTNT,"The US prides itself on being a melting pot, yet minorities like @julissaarce are being told every day to shed thei… https://t.co/rUjXXiIOxt" +06/13/2017,Sports_celeb,@AmericanRaceTNT,"Dr. @darnell_hunt’s research illustrates major racial discrepancies in media, preventing diverse stories from being… https://t.co/mxC1dviskR" +06/11/2017,Sports_celeb,@AmericanRaceTNT,.@AttorneyGriggs boldly shares the Black American experience with white supremacist Richard Spencer in episode 4 of… https://t.co/0un7v3kwTO +06/10/2017,Sports_celeb,@AmericanRaceTNT,The conversation needs to start today for a richer America tomorrow. Rewatch #AmericanRaceTNT on the TNT app. +06/08/2017,Sports_celeb,@AmericanRaceTNT,".@pewresearch: Muslims are the youngest major US religious group with a median age of 24, as well as the quickest growing. #AmericanRaceTNT" +06/08/2017,Sports_celeb,@AmericanRaceTNT,All four episodes of #AmericanRaceTNT are waiting for you on TNT’s digital platforms on-demand. https://t.co/6YPye0sEpA +06/08/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT spans the country, spreading a long overdue conversation where it's needed most. Rewatch the action on the TNT app." +06/08/2017,Sports_celeb,@AmericanRaceTNT,"With #AmericanRaceTNT now on-demand, witness the conversation and the passion of the people across the country. https://t.co/BhmkZvFuPx" +06/08/2017,Sports_celeb,@AmericanRaceTNT,Racial tensions come to a head as representatives of two opposing communities discuss the state of race in America.… https://t.co/4HDCgMUcEc +06/07/2017,Sports_celeb,@AmericanRaceTNT,Necessary. Powerful. And a long time coming. #AmericanRaceTNT is all the talk online. Find the conversation at… https://t.co/QmxXCygKyh +06/07/2017,Sports_celeb,@AmericanRaceTNT,"If you missed the initial run of #AmericanRaceTNT, don't worry. Download the TNT app and can continue the conversation." +06/07/2017,Sports_celeb,@AmericanRaceTNT,One of the only things holding back the country socially is a lack of dialogue. Tune into #AmericanRaceTNT on-demand and see the change. +06/07/2017,Sports_celeb,@AmericanRaceTNT,The rise of a globally connected internet gives a platform to those who before had no way to speak their minds.… https://t.co/s6fLCGQM8K +06/06/2017,Sports_celeb,@AmericanRaceTNT,"One officer’s negative actions can put an entire police force in a negative light, but still officers strive to be… https://t.co/5HMDSpICIZ" +06/06/2017,Sports_celeb,@AmericanRaceTNT,Conventional movie wisdom maintains that white leads sell better than non-white leads overseas. New data shows othe… https://t.co/2sKCAcylTG +06/06/2017,Sports_celeb,@AmericanRaceTNT,@PamRdrqs Thank you for watching and being part of the conversation. This series is only the beginning. +06/04/2017,Sports_celeb,@AmericanRaceTNT,"Entertainer @amandaseales clarifies that Black Pride’s intent is to live on its own, not in opposition to whites.… https://t.co/VV5BahMSSO" +06/03/2017,Sports_celeb,@AmericanRaceTNT,"To compensate for a lack of Asian-American male role models, @dumbfoundead stepped up and became one himself. #AmericanRaceTNT" +06/02/2017,Sports_celeb,@AmericanRaceTNT,"When it comes to casting in Hollywood, too many minority roles still rely on tired stereotypes, frustrating many actors. #AmericanRaceTNT" +06/02/2017,Sports_celeb,@AmericanRaceTNT,"If you have the TNT app, you can continue the #AmericanRaceTNT conversation." +06/01/2017,Sports_celeb,@AmericanRaceTNT,An undocumented citizen in #AmericanRaceTNT risks a 10-year exile if she applies for US citizenship - a risk many refuse to take. +06/01/2017,Sports_celeb,@AmericanRaceTNT,"To ease the minds of her citizens, @IrvingMayor banned Sharia Law in the city. This in turn alienated the Muslim community. #AmericanRaceTNT" +06/01/2017,Sports_celeb,@AmericanRaceTNT,Rewatch the conversation and questions posed on-demand and on the TNT app. #AmericanRaceTNT +06/01/2017,Sports_celeb,@AmericanRaceTNT,"Every week, a vigil is held before Baltimore City Hall in honor of victims of police brutality. #AmericanRaceTNT" +05/31/2017,Sports_celeb,@AmericanRaceTNT,"62% of Americans get news from social media & these platforms often find themselves filled with fake news, deluding many. #AmericanRaceTNT" +05/31/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT is available to stream now on-demand at https://t.co/XrvB6lfS0a and the TNT app. +05/31/2017,Sports_celeb,@AmericanRaceTNT,Charles sits down with television legend @TheNormanLear to talk about his massive influence in promoting media diversity. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT has always been about learning and growing, for both viewers and Charles himself." +05/30/2017,Sports_celeb,@AmericanRaceTNT,A Baltimore town hall meeting illuminates the brutal reality many of its citizens live every day. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,Kindness is a trait gained by spending time with people unlike yourself. Talk to a stranger and make tomorrow better. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,@JamesPearson6 Catch up on #AmericanRaceTNT on-demand at https://t.co/XrvB6lfS0a or download the TNT app. +05/30/2017,Sports_celeb,@AmericanRaceTNT,Catch up on #AmericanRaceTNT on-demand at https://t.co/XrvB6lfS0a or download the TNT app. +05/29/2017,Sports_celeb,@AmericanRaceTNT,"Irving has one of the most diverse zip codes in the US, and #AmericanRaceTNT explores how diversity has brought tension to the city." +05/29/2017,Sports_celeb,@AmericanRaceTNT,"If those you speak to remain the same every day, month and year, your perspective won't grow. Join a wider conversation. #AmericanRaceTNT" +05/29/2017,Sports_celeb,@AmericanRaceTNT,Download the TNT app or head to https://t.co/XrvB6lfS0a to watch #AmericanRaceTNT and further the dialogue. +05/29/2017,Sports_celeb,@AmericanRaceTNT,Informal separation of cultures in society is one of the biggest obstacles in moving forward in America. #AmericanRaceTNT +05/28/2017,Sports_celeb,@AmericanRaceTNT,The conversation is vital to the progress of this country. Download the TNT app and watch #AmericanRaceTNT today. +05/27/2017,Sports_celeb,@AmericanRaceTNT,"Day in and day out, thousands of undocumented families live in fear of deportation. Episode 3 features one. #AmericanRaceTNT" +05/27/2017,Sports_celeb,@AmericanRaceTNT,"In episode one of #AmericanRaceTNT, Charles spends time with Baltimore PD to understand both sides of the conflict." +05/27/2017,Sports_celeb,@AmericanRaceTNT,RT @markchironna: Charles Barkley does a masterful job on the docu-series on TNT @AmericanRaceTNT - so needed and so well done - we all owe… +05/26/2017,Sports_celeb,@AmericanRaceTNT,"Being American means staying true to your faith, no matter what faith that is. #AmericanRaceTNT https://t.co/OolCIxeTNo" +05/25/2017,Sports_celeb,@AmericanRaceTNT,What happens when the thing you're promised never gets delivered? You may get irritated. @PeterJaeNYLA is.… https://t.co/6q1W6881JH +05/24/2017,Sports_celeb,@AmericanRaceTNT,Can humor stir discussions that may not happen otherwise? @MattBesser seems to think so. #AmericanRaceTNT https://t.co/OAXGy5oK69 +05/24/2017,Sports_celeb,@AmericanRaceTNT,"Radical Islam can take any form, not just the ones we’re familiar with. #AmericanRaceTNT https://t.co/PoIC1cxPKD" +05/24/2017,Sports_celeb,@AmericanRaceTNT,Episode 4 of #AmericanRaceTNT tackles the growing influence of fake news. See the conversation on-demand. +05/24/2017,Sports_celeb,@AmericanRaceTNT,"Breaking bread means breaking down walls, which allows true progress to happen. #AmericanRaceTNT https://t.co/UIwQZAoKVF" +05/24/2017,Sports_celeb,@AmericanRaceTNT,@FLSMagazine Thank you for doing your part to keep this important conversation going. +05/24/2017,Sports_celeb,@AmericanRaceTNT,RT @Dee_T_Knight: Norman Lear on @AmericanRaceTNT is everything...Made me tear up a little. 🙌🏾 +05/23/2017,Sports_celeb,@AmericanRaceTNT,"The US is projected to grow more colorful each day, yet no steps are taken to reflect this in Hollywood.… https://t.co/f9oT8cOBGQ" +05/23/2017,Sports_celeb,@AmericanRaceTNT,"RT @NPRCodeSwitch: In 'American Race,' Charles Barkley Is A True Believer In The Power Of Dialogue (by @GeeDee215) + +https://t.co/9pJFhvKU…" +05/23/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT poses a discussion that this country needs to have. Download the TNT app and watch the entire docu-series today. +05/22/2017,Sports_celeb,@AmericanRaceTNT,The conversation continues on-demand and on the TNT app. Check out all 4 episodes today. #AmericanRaceTNT +05/21/2017,Sports_celeb,@AmericanRaceTNT,The 3rd episode of #AmericanRaceTNT asks why minorities seem to be so misrepresented in the entertainment industry. +05/20/2017,Sports_celeb,@AmericanRaceTNT,"Whispered, spoken, or shouted, the conversation must happen. And it has to happen now. #AmericanRaceTNT https://t.co/KxPCXdQiG0" +05/20/2017,Sports_celeb,@AmericanRaceTNT,Hear the conversation. From all sides. #AmericanRaceTNT https://t.co/tuobeB3UyW +05/20/2017,Sports_celeb,@AmericanRaceTNT,Episodes one through four of #AmericanRaceTNT are available online at https://t.co/XrvB6lfS0a as well as the TNT app. Stream today. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Stream all 4 episodes of #AmericanRaceTNT at https://t.co/XrvB6lfS0a and on the TNT app. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Download the TNT app today to stream the entire #AmericanRaceTNT docu-series and get involved in the conversation. +05/19/2017,Sports_celeb,@AmericanRaceTNT,The Islamic Center of Irving alarmed many residents in #AmericanRaceTNT. Should it? See it for yourself in episode 3 on-demand. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Journalism professor Hank Klibanoff has noted the historical trend of leaders rousing people with hateful words.… https://t.co/NQ5e34hrjz +05/18/2017,Sports_celeb,@AmericanRaceTNT,"RT @TeamCornersLC: Corners was featured on TNT's American Race, episode +4, The Divided States of America. Watch it here https://t.co/IOw9C…" +05/18/2017,Sports_celeb,@AmericanRaceTNT,RT @doravldz: .@AmericanRaceTNT was really well done. Good job #CharlesBarkley! Everyone should watch. 👏🏼👏🏼 +05/17/2017,Sports_celeb,@AmericanRaceTNT,RT @LSahba: @CharlesBarkIey as player/entertainer you've been fun to watch. But @AmericanRaceTNT made u important to watch and listen to.… +05/16/2017,Sports_celeb,@AmericanRaceTNT,"When it comes to the diversity conversation in America, Asians often don’t feel like they have a voice.… https://t.co/rqanswrmwP" +05/15/2017,Sports_celeb,@AmericanRaceTNT,Starting the conversation today promises change tomorrow. #AmericanRaceTNT. https://t.co/DTPAnbo5Kh +05/15/2017,Sports_celeb,@AmericanRaceTNT,Continue the #AmericanRaceTNT conversation and let us know your thoughts: https://t.co/8fbVTH3T2U +05/14/2017,Sports_celeb,@AmericanRaceTNT,Starting the conversation today promises change tomorrow. #AmericanRaceTNT. https://t.co/DDRAeYaFqE +05/13/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT covered many stories and voices. Now it's your turn. Tell us your thoughts: https://t.co/sHX7vzugcU +05/13/2017,Sports_celeb,@AmericanRaceTNT,"If you missed out on #AmericanRaceTNT, you can catch up with all four episodes on-demand. It’s never too late to st… https://t.co/7gLT99dS0p" +05/13/2017,Sports_celeb,@AmericanRaceTNT,America fails to be a melting pot when even one of its communities is marginalized. #AmericanRaceTNT https://t.co/H1XabtpDsE +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @dumbfoundead: I'm TNT's @AmericanRaceTNT show go check it out. In Korea about to drop a new project in about a week! Yeeee enjoy! +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @garretdillahunt: Lemme rephrase--watch @AmericanRaceTNT +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @JohnnyGalante: @AmericanRaceTNT Well done. Appreciate that you show both sides of the issues. +05/13/2017,Sports_celeb,@AmericanRaceTNT,"RT @GrieserSteve: @CharlesBarkIey, thank you for hosting @AmericanRaceTNT. It's a must watch" +05/13/2017,Sports_celeb,@AmericanRaceTNT,Tonight we journey to Atlanta on the second-night of our national conversation on American Race. https://t.co/FYxqCr57Dd +05/12/2017,Sports_celeb,@AmericanRaceTNT,Professor Hank Klibanoff expresses his concerns about the unfortunate direction of news media in episode 4 of… https://t.co/IZ2btp6Ka6 +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @missandrealewis: Tune-in now to @AmericanRaceTNT Facebook Roundtable. We will be discussing immigration & whitewashing in Hollywood. ht… +05/12/2017,Sports_celeb,@AmericanRaceTNT,"The #AmericanRaceTNT FB Live panel with @PeterJaeNYLA, @hodakatebi, @julissaarce and @missandrealewis starts now: https://t.co/7rOTyxqT7I" +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @julissaarce: Tune in @ 10am PST for a conversation with @hodakatebi @missandrealewis for @AmericanRaceTNT https://t.co/uBGCpzG3b9 https… +05/12/2017,Sports_celeb,@AmericanRaceTNT,Actor @peternyla knows firsthand how Hollywood treats diverse roles. Meet him on the #AmericanRaceTNT FB Live 5/12… https://t.co/XPLkCo188N +05/12/2017,Sports_celeb,@AmericanRaceTNT,.@hodakatebi bridges American and Middle East experiences through fashion. Meet her on the #AmericanRaceTNT FB Live… https://t.co/TpIsqXzzGS +05/12/2017,Sports_celeb,@AmericanRaceTNT,"The conversation continues tonight as #AmericanRaceTNT journeys to Baltimore, MD and Irving, TX https://t.co/nczBvUsZOE" +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @BaltMediaBlog: #AmericanRaceTNT (@AmericanRaceTNT) will feature #BaltimoreRising TONIGHT at 9pm on @tntdrama https://t.co/RpX9GoykJK +05/12/2017,Sports_celeb,@AmericanRaceTNT,"RT @ThePostGame: Charles Barkley's @AmericanRaceTNT includes Ice Cube, Richard Spencer, Khizr & Ghazala Khan, CT Vivian, Norman Lear https:…" +05/11/2017,Sports_celeb,@AmericanRaceTNT,Should the security of all come at the expense of the few? A question #AmericanRaceTNT seeks to answer. https://t.co/5NLsFecGNq +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Hollywood’s approach to diversity is a controversial issue, and one that @icecube has a lot to say about.… https://t.co/GWRIcvPMRi" +05/11/2017,Sports_celeb,@AmericanRaceTNT,.@USC Professor Jody Armour studies the intersection of race and legal decision-making. Watch him on our FB Live 5/… https://t.co/yiNym4TmJQ +05/11/2017,Sports_celeb,@AmericanRaceTNT,.@julissaarce went from undocumented to Wall Street and fighting for immigrant rights. Meet her on our FB Live 5/12… https://t.co/HnMxOXl7xK +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Jonathan Park tackles longtime Asian-American issues as rapper @dumbfoundead, securing a place as an Asian role mod… https://t.co/eUNcgcKvrf" +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Before you tune-in tonight to the series premiere of #AmericanRaceTNT, watch Charles Barkley today on @CNN at 3pm ET/PT." +05/10/2017,Sports_celeb,@AmericanRaceTNT,".@icecube climbed his way to stardom from humble beginnings. In episode 3 of #AmericanRaceTNT, he and Charles talk… https://t.co/AiR6rX1DjU" +05/10/2017,Sports_celeb,@AmericanRaceTNT,"Tune-in on May 11, the dialogue begins, and arguments turn into conversations. #AmericanRaceTNT https://t.co/mYq3XBis2a" +05/09/2017,Sports_celeb,@AmericanRaceTNT,RT @AttorneyGriggs: Starting the conversation on Race is much needed in America! #AmericanRaceTNT @tntdrama May 11 and 12 @ 9 On Demand Now… +05/09/2017,Sports_celeb,@AmericanRaceTNT,"Many deemed the chaos left in the wake of Freddie Gray’s death a riot, @byDVNLLN considered it a necessary uprising… https://t.co/mK3EgzewIs" +05/08/2017,Sports_celeb,@AmericanRaceTNT,@davidbanner Let us know what you think: https://t.co/aVerPR2PWH +05/08/2017,Sports_celeb,@AmericanRaceTNT,"Tonight, Charles Barkley continues his journey, hungry for the answers this country needs. #AmericanRaceTNT https://t.co/GxzuCaFfca" +05/08/2017,Sports_celeb,@AmericanRaceTNT,RT @amandaseales: Watch me on @AmericanRaceTNT's live Facebook Roundtable it starts at 10amPST! https://t.co/knfDgG7Zja +05/08/2017,Sports_celeb,@AmericanRaceTNT,"The #AmericanRaceTNT FB Live panel with @ByDVNLLN, @WendyCarrillo, @ShaunKing and @AmandaSeales starts now: https://t.co/xHl6MseuIx" +05/08/2017,Sports_celeb,@AmericanRaceTNT,"You just saw #AmericanRaceTNT on-demand, now join us on FB Live as we unpack everything with our roundtable of experts and influencers." +05/07/2017,Sports_celeb,@AmericanRaceTNT,"Tune into our FB Live Roundtable, where we’ll dive deeper with the issues presented in the series. #AmericanRaceTNT https://t.co/tRObzePqHX" +05/07/2017,Sports_celeb,@AmericanRaceTNT,"For many, black lives have been reduced to social media sensations, but even more are fighting this image.… https://t.co/lL7hro6Z1v" +05/07/2017,Sports_celeb,@AmericanRaceTNT,"""I think, in America, we kind-of forgot how to be good neighbors."" - Charles Barkley #AmericanRaceTNT https://t.co/2NghqqFEyc" +05/07/2017,Sports_celeb,@AmericanRaceTNT,Witness the conversation tonight after @NBAonTNT before you continue the journey on #AmericanRaceTNT tomorrow. https://t.co/GfhZ2rHzTh +05/06/2017,Sports_celeb,@AmericanRaceTNT,One day left until #AmericanRaceTNT navigates the country’s biggest social and racial issues. https://t.co/fGPcp2aFy4 +05/06/2017,Sports_celeb,@AmericanRaceTNT,"On May 7th, don’t miss TNT’s exploration of race in America. #AmericanRaceTNT https://t.co/WSZo842Bdg" +05/05/2017,Sports_celeb,@AmericanRaceTNT,RT @CBSThisMorning: Charles Barkley gets real on race in America in new series: https://t.co/1G4Efgm62S +05/05/2017,Sports_celeb,@AmericanRaceTNT,"The US has a wealth of communities, but is more divided than ever. #AmericanRaceTNT aims to open a dialogue to clos… https://t.co/XKvpkhQbzJ" +05/05/2017,Sports_celeb,@AmericanRaceTNT,"Charles Barkley sparks the #AmericanRaceTNT conversation, tonight with @colbertlateshow https://t.co/YZHoh6lm5C" +05/04/2017,Sports_celeb,@AmericanRaceTNT,There’s only 3 days left until #AmericanRaceTNT starts the conversation. https://t.co/7ODDCvvFNs +05/04/2017,Sports_celeb,@AmericanRaceTNT,What role does Hollywood play in its portrayal of minorities and stereotypes? LA is the place to find out more. #AmericanRaceTNT +05/04/2017,Sports_celeb,@AmericanRaceTNT,There are few places more conflicted than Baltimore when it comes to police-community relations. #AmericanRaceTNT visits for a closer look. +05/04/2017,Sports_celeb,@AmericanRaceTNT,"Sharmina Zaidi is a mother, business owner, Muslim, and American. Meet her in episode 2 of American Race.… https://t.co/8FFKMS1OSO" +05/04/2017,Sports_celeb,@AmericanRaceTNT,"Baltimore erupted into chaos in 2015, and photographer @byDVNLLN captured the Uprisings' most harrowing moments. #AmericanRaceTNT" +05/04/2017,Sports_celeb,@AmericanRaceTNT,RT @corimurray: Current situation: @AmericanRaceTNT panel with #CharlesBarkley x @Bakari_Sellers #AmericanRaceTNT https://t.co/fSTy0sIt5X +05/04/2017,Sports_celeb,@AmericanRaceTNT,RT @Essence: Currently live at the #AmericanRaceTNT panel about race relations w/ #CharlesBarkley @Bakari_Sellers and local activists. Stay… +05/04/2017,Sports_celeb,@AmericanRaceTNT,"RT @colbertlateshow: TONIGHT on #LSSC: Charles Barkley of @AmericanRaceTNT, Debra Winger from @theloversmov, comedy from @stollemache, and…" +05/03/2017,Sports_celeb,@AmericanRaceTNT,Starting a conversation is one of the most vital components to moving past the racial issues plaguing the country.… https://t.co/c6R57cmeGM +05/03/2017,Sports_celeb,@AmericanRaceTNT,Racial divisions are fracturing America. #AmericanRaceTNT takes the first step towards healing by opening a dialogue in four key cities. +05/03/2017,Sports_celeb,@AmericanRaceTNT,Do you think comedy helps heal or divide? Episode 3 of #AmericanRaceTNT explores the question at @ucbtla +05/03/2017,Sports_celeb,@AmericanRaceTNT,"To better understand the racial issues splintering the country, #AmericanRaceTNT visits four key cities central to the conversation." +05/03/2017,Sports_celeb,@AmericanRaceTNT,.@byDVNLLN is a photographer/activist whose shots of the Baltimore Uprising galvanized the city. Meet him in episod… https://t.co/3ljkhknL9d +05/02/2017,Sports_celeb,@AmericanRaceTNT,The number of prisoners skyrockets each year. Join Charles Barkley as he explores the root of the issue.… https://t.co/FLXS68gPx9 +05/02/2017,Sports_celeb,@AmericanRaceTNT,"Catch a preview of #AmericanRaceTNT May 7th after the @NBA Playoffs and share your own experiences about race, religion and stereotypes" +05/02/2017,Sports_celeb,@AmericanRaceTNT,"Join the conversation on May 8, watch all four episodes of #AmericanRaceTNT on demand at @tntdrama.com" +05/02/2017,Sports_celeb,@AmericanRaceTNT,"With the country racially divided--conversation is more important than ever. On May 8, Watch all 4 episodes of #AmericanRaceTNT On Demand." +04/29/2017,Sports_celeb,@AmericanRaceTNT,"Baltimore. Irving. LA. Atlanta. On May 8, watch Charles Barkley explore the division in these cities in #AmericanRaceTNT on demand." +04/28/2017,Sports_celeb,@AmericanRaceTNT,There’s no right or wrong on these issues. Just two sides in need of dialogue. #AmericanRaceTNT https://t.co/cpHAHxo1Oo +04/27/2017,Sports_celeb,@AmericanRaceTNT,"If pictures are worth 1,000 words, then truly poignant art can open impactful dialogue. #AmericanRaceTNT https://t.co/0xL9uZsy2D" +04/27/2017,Sports_celeb,@AmericanRaceTNT,A harsh divide exists between police and the community in Baltimore. #AmericanRaceTNT looks to open a dialogue between the two sides. +04/27/2017,Sports_celeb,@AmericanRaceTNT,Follow Charles Barkley crossing the country to start a conversation about race. Catch the @TNTDrama sneak peek on May 7 #AmericanRaceTNT +04/26/2017,Sports_celeb,@AmericanRaceTNT,"America’s got something to say. On May 7th, it’s time to listen. #AmericanRaceTNT https://t.co/lmfL1kTH8o" +04/26/2017,Sports_celeb,@AmericanRaceTNT,.@TNTDrama American Race tackles hard-hitting questions about race in #America. Catch a preview of the conversation May 7 #AmericanRaceTNT +04/26/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT tackles hard-hitting questions about race in America. Catch a preview of the conversation May 7th… https://t.co/g6FLUcWq4L +04/24/2017,Sports_celeb,@AmericanRaceTNT,"On May 7th, voices will be heard and conversations will be had. #AmericanRaceTNT https://t.co/QxOLe98l33" +04/22/2017,Sports_celeb,@AmericanRaceTNT,Charles Barkley will take you across a troubled nation. #AmericanRaceTNT https://t.co/4Y1kwjTIX9 +04/21/2017,Sports_celeb,@AmericanRaceTNT,"Coming May 7, the things that divide us will be given a fresh perspective. #AmericanRaceTNT https://t.co/AB4TV6HZpv" +04/20/2017,Sports_celeb,@AmericanRaceTNT,"Don’t miss Charles Barkley’s four part docu-series about race, religion and stereotypes. #AmericanRaceTNT https://t.co/4ZqTnPfDLy" +06/28/2018,Sports_celeb,@MichaelPhelps,RT @poolsafely: Anyone who has watched @MichaelPhelps at the Olympics has seen him dominate the Individual Medley. Named after his signatur… +06/08/2018,Sports_celeb,@MichaelPhelps,Thankfully this story has a happy ending... please remember to always be water safe...esp during the summer months!… https://t.co/C4SAQb0Kw8 +05/22/2018,Sports_celeb,@MichaelPhelps,RT @cityofStCharles: Our town shined last night with @MichaelPhelps and @JDayGolf as headliners in @ALESolutionsInc second annual @GolfGive… +04/24/2018,Sports_celeb,@MichaelPhelps,"RT @CoachJim4UM: The @MichaelPhelps Swim Spa is still sturdy & working great after three years, Thanks @HotTubLeisure https://t.co/xzmyi2xr…" +04/24/2018,Sports_celeb,@MichaelPhelps,This is a pic I came across the other day and I had to share. It just made me lol🙈 #mattkuchar #rio https://t.co/ard1T15niB +04/12/2018,Sports_celeb,@MichaelPhelps,#TBT to taking over Times Square with an important message to save water on #WorldWaterDay. A lot of people have ac… https://t.co/M4DPnIcZok +04/10/2018,Sports_celeb,@MichaelPhelps,"#OMEGAGolf / #OMEGAmychoice +Great day on the links with my friends at @OMEGAwatches! The Road to St. Louis for the… https://t.co/QDdhUW1s7m" +04/05/2018,Sports_celeb,@MichaelPhelps,It’s here!!! #themasters2018 +03/22/2018,Sports_celeb,@MichaelPhelps,Did you know today is #WorldWaterDay? So make sure you remember that #EveryDropCounts. Joining @Colgate for the sec… https://t.co/3FwfuL1sZL +03/18/2018,Sports_celeb,@MichaelPhelps,All I gotta say is.... LETS GO BLUE!!! @umichbball #marchmadness +03/11/2018,Sports_celeb,@MichaelPhelps,Pumped for golf today.... @TigerWoods 1 shot back and in the Sunday red! +03/08/2018,Sports_celeb,@MichaelPhelps,"This is an important issue in every sport, and I encourage all adults to join me in completing this program. @Aly_Raisman" +03/08/2018,Sports_celeb,@MichaelPhelps,Thx Aly Raisman for making this program available and free!  Each of us needs to do our part to make all sports saf… https://t.co/qExoob8ITK +02/26/2018,Sports_celeb,@MichaelPhelps,Great article!! https://t.co/EKGpmRr7C9 +02/14/2018,Sports_celeb,@MichaelPhelps,Let’s go @shaunwhite !!! Way to go man!! Nothing like a good comeback right?? Redemption always feels great!! #usa #OlympicGames2018 +02/10/2018,Sports_celeb,@MichaelPhelps,"RT @medibio_limited: In our efforts to help break the stigma that surrounds the discussion of mental health, we applaud @MichaelPhelps comf…" +02/10/2018,Sports_celeb,@MichaelPhelps,RT @NBCSports: See why @shaunwhite sees parallels between himself and @MichaelPhelps. https://t.co/YBip7JCJzg https://t.co/dPCVvmzHdp +02/10/2018,Sports_celeb,@MichaelPhelps,So fun!! Way to go Greg! https://t.co/zPa8UDGUt5 +01/16/2018,Sports_celeb,@MichaelPhelps,Sorry for swimming into your story Greg!! Keep up the progress! Check out Greg’s @lovemysilk commercial. 🏊… https://t.co/ZIgqwjdmCl +01/11/2018,Sports_celeb,@MichaelPhelps,"#tbt to a fun day of golf with @KRAVEjerky, snacking on their Honey Habanero Chicken #KRAVEbetter in 2018! https://t.co/ONeTrk4g1Z" +01/08/2018,Sports_celeb,@MichaelPhelps,#ColgatePartner. I want to encourage everyone to make #2018 count by joining me & @Colgate to save water by turning… https://t.co/dCLpOl5hm9 +01/01/2018,Sports_celeb,@MichaelPhelps,Wow....I’m speechless ... #nextyear +12/23/2017,Sports_celeb,@MichaelPhelps,Love it dude!!! Happy holidays! https://t.co/ZEsX2C9DeT +12/23/2017,Sports_celeb,@MichaelPhelps,Can’t wait!!! See ya there!! https://t.co/6mNIY5jj3M +11/30/2017,Sports_celeb,@MichaelPhelps,Pumped to be watching @TigerWoods back out there!!! +11/28/2017,Sports_celeb,@MichaelPhelps,"As a #ColgatePartner, I’m encouraging everyone to save water by turning off the faucet when they brush.… https://t.co/BOyq6mmfDH" +11/16/2017,Sports_celeb,@MichaelPhelps,RT @leesasleep: Thanks to Leesa Sleep Ambassador @michaelphelps for joining us for our Night of Dreams Party to celebrate our launch of in… +11/01/2017,Sports_celeb,@MichaelPhelps,"I'm a #ColgatePartner. On #NationalBrushingDay, protect your teeth by brushing and the planet by turning off the fa… https://t.co/DtVNJMSWaq" +10/26/2017,Sports_celeb,@MichaelPhelps,"Nothing spooky about my fall treat, going all-natural with @KraveJerky #trickortreat #youhavetotryit #amazing https://t.co/gwE6jCCuuh" +10/21/2017,Sports_celeb,@MichaelPhelps,#ColgatePartner I went back to school to teach the next generation #EveryDropCounts. These kids are our newest… https://t.co/ewbstG8XFx +10/19/2017,Sports_celeb,@MichaelPhelps,RT @TODAYshow: WATCH: “It just hit way too close to home.” @MichaelPhelps talks about being at the Las Vegas concert the Friday before the… +10/19/2017,Sports_celeb,@MichaelPhelps,"RT @AM2DM: TODAY ON #AM2DM @MichaelPhelps will tell us why #EveryDropCounts and answer your best non-swimming q's live @ 10:30! +https://t.c…" +10/19/2017,Sports_celeb,@MichaelPhelps,RT @MegynTODAY: .@MichaelPhelps on struggle with anxiety: ‘I didn’t want to be alive anymore’ https://t.co/qTqDJhl9ag https://t.co/PKLqn4U7… +10/07/2017,Sports_celeb,@MichaelPhelps,Hope I make it over the plate!! https://t.co/7aRmWCFdaf +10/06/2017,Sports_celeb,@MichaelPhelps,The ANGST film has 1 goal: to start a conversation about anxiety.I know how much talking about it helps. https://t.co/t6N9nRU5tP #AngstMovie +10/05/2017,Sports_celeb,@MichaelPhelps,RT @people: See Michael Phelps Open Up About His Anxiety Battle in New Film: ‘I Just Didn’t Like Who I Was’ https://t.co/pE0M8NfuNQ +10/05/2017,Sports_celeb,@MichaelPhelps,RT @Therealfixer: Proud of our community. Over $9 million raised. Keep donating: https://t.co/pckDkGjz8o #vegasstrong +10/03/2017,Sports_celeb,@MichaelPhelps,Welcome to the fam !!! https://t.co/Re8pbruOwm +10/01/2017,Sports_celeb,@MichaelPhelps,@darrenrovell do you happen to know what the record is for most consecutive games for throwing a interception?? Is it #flacco @10? +10/01/2017,Sports_celeb,@MichaelPhelps,Well let's hope @Ravens have a better 2nd half ... +09/25/2017,Sports_celeb,@MichaelPhelps,Amazing memories.... how insane!! Thanks for the amazing read from @Paul_Casey https://t.co/ugku40SXLt +09/23/2017,Sports_celeb,@MichaelPhelps,Come on big blue!!!! #goblue +09/21/2017,Sports_celeb,@MichaelPhelps,Just amazing @bykaren !! https://t.co/EeZhkWmkTK +09/19/2017,Sports_celeb,@MichaelPhelps,"RT @NuloPetFood: “Their nutrition is our responsibility. We Decide.” - @MichaelPhelps 🐾 +Join our mission at: https://t.co/h2Q3QIZO3l https:…" +09/19/2017,Sports_celeb,@MichaelPhelps,Their nutrition is our responsibility. We Decide. Join our mission at https://t.co/aMhipzQdAu @nulopetfood https://t.co/OMuZFT4y2R +09/09/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! @UMichFootball +09/09/2017,Sports_celeb,@MichaelPhelps,"RT @MPMichaelPhelps: Briefs = RT 🔄 +Jammers = Like ❤️ + +#MPswim #JoinTheTeam https://t.co/klwxeh0mtZ" +08/30/2017,Sports_celeb,@MichaelPhelps,"RT @ScottMGleeson: When athletes (@MichaelPhelps @BMarshall @Highway_30) share mental health battles, it transcends https://t.co/RVEnlGPdRR…" +08/29/2017,Sports_celeb,@MichaelPhelps,All of this talk... Should we race as well?? @TheNotoriousMMA https://t.co/l3JoMgb1qT +08/27/2017,Sports_celeb,@MichaelPhelps,Hats off to @TheNotoriousMMA ...... amazing competitor and unreal athlete...congrats to @FloydMayweather 50-0 congrats! #legend +08/27/2017,Sports_celeb,@MichaelPhelps,50-0.....wow +08/13/2017,Sports_celeb,@MichaelPhelps,Big shout out to @JustinThomas34 !!! Congrats homie! Hell of a final round !#PGAChampionship2017 +08/10/2017,Sports_celeb,@MichaelPhelps,Big good luck to @JordanSpieth !! #gogetthat @underarmour https://t.co/YLL7o2bq6P +08/10/2017,Sports_celeb,@MichaelPhelps,RT @RickyBerens: Good day out on the course with this crew! Not even a FOREEEEE!!!! @MichaelPhelps @omegawatches https://t.co/GOdCrQwsSj +08/09/2017,Sports_celeb,@MichaelPhelps,Great day out there with the boys!! @pscpwm @rcberens @omega https://t.co/AQDSWHSNUY +08/08/2017,Sports_celeb,@MichaelPhelps,Flashback to one year ago! #goldmedal #usa @caelebdressel @Nathangadrian @heldilox https://t.co/0pkO1svNAi +08/06/2017,Sports_celeb,@MichaelPhelps,RT @Stephen_Logan: Great insight into the mindset of @MichaelPhelps via @matthewsyed in The Greatest. https://t.co/u3DlZJsDwf +08/06/2017,Sports_celeb,@MichaelPhelps,"@SHAQ I hear you want to race again??? Any truth to this? Def not coming outta retirement but I'll def give you a chance to ""try"" to win😁" +08/03/2017,Sports_celeb,@MichaelPhelps,#tbt with ‘Doc’ Dr. Samuel Gruber a legend of shark science @VIKTREsocial https://t.co/iDTChnqhNh +07/30/2017,Sports_celeb,@MichaelPhelps,So damn fun to watch buddy!!!!@caelebdressel https://t.co/5MjNEE0RFa +07/29/2017,Sports_celeb,@MichaelPhelps,@boomerrphelps @mrs.nicolephelps @arschmitty are watching and cheering like hell!! https://t.co/IduMgUuvYA +07/28/2017,Sports_celeb,@MichaelPhelps,"Had a great time talking leadership, mental health and water safety @SAP #mywinningmove https://t.co/xPEjTRNoBD" +07/26/2017,Sports_celeb,@MichaelPhelps,"Talking everything from Shark week, my swimming career, and booms! https://t.co/V8gXcMuSIB" +07/25/2017,Sports_celeb,@MichaelPhelps,Are sharks man eaters? Are we on the menu? https://t.co/icGIjpaM3K +07/24/2017,Sports_celeb,@MichaelPhelps,And course while filming I had to take a little break for some fun😁 #ringbubbles https://t.co/1ElUcQzhDF +07/24/2017,Sports_celeb,@MichaelPhelps,I would like to thank @tristanguttridge and @sharksneedlove in advance for their support https://t.co/fGy6sd4p6u +07/24/2017,Sports_celeb,@MichaelPhelps,@boomerrphelps helping us turn off the faucet when brushing #Colgate #EveryDropCounts https://t.co/kv7h3k4fk3 +07/24/2017,Sports_celeb,@MichaelPhelps,Rematch? Next time..warmer water. #SW30 @Discovery @SharkWeek +07/23/2017,Sports_celeb,@MichaelPhelps,RT @ABC4EXPLORE: Wooohooo!!! @SharkWeek 2017 with @MichaelPhelps is finally here and it's going to be epic!!! Tune-in tonight at 8pm to wat… +07/23/2017,Sports_celeb,@MichaelPhelps,RT @Discovery: Yes! This is happening. ReTweet if you're watching #PhelpsVsShark tonight at 8p! #SharkWeek https://t.co/tJP8AGWCKI +07/23/2017,Sports_celeb,@MichaelPhelps,Big congrats to @JordanSpieth !! Well done dude!! @UnderArmour +07/23/2017,Sports_celeb,@MichaelPhelps,It's important to get the next generation into the habit of turning off the faucet while brushing.@Colgate… https://t.co/HJyPlSgeZt +07/22/2017,Sports_celeb,@MichaelPhelps,Beach day with booms!!! https://t.co/smviz77Foi +07/21/2017,Sports_celeb,@MichaelPhelps,Pumped to be a part of #mywinningmove with @SAP on Monday! Make sure you tune in at 4pm PST https://t.co/tzdKptoIU6 https://t.co/iX0zsSL7ho +07/14/2017,Sports_celeb,@MichaelPhelps,Can't wait till we get to bring @boomerrphelps here in a couple years!! #kidschoicesports https://t.co/oeSz1Szjtv +07/13/2017,Sports_celeb,@MichaelPhelps,What a great way to celebrate all that has happen in the year of sports! Thanks to @ESPN and the espys for bringing us all together!!! +07/12/2017,Sports_celeb,@MichaelPhelps,Two days ago we celebrated our 10 year anniversary of meeting at the #espys #happybday https://t.co/YotGoB2ylw +07/12/2017,Sports_celeb,@MichaelPhelps,I’m proud to be a part of the @SpecialOlympics movement #EKS #ESPYS2017 #ChangeTheGame +07/12/2017,Sports_celeb,@MichaelPhelps,Eunice Kennedy Shriver was a true champion & pioneer of inclusion. There’s no 1 more deserving of this #ESPYS award. +07/11/2017,Sports_celeb,@MichaelPhelps,I wanna do it again!! https://t.co/Zy2ku8YvWp +07/10/2017,Sports_celeb,@MichaelPhelps,Last nights dinner @blueapron Pork chops spinach farro and goat cheese! #ad @VIKTREsocial https://t.co/cOORTXLmxv +07/08/2017,Sports_celeb,@MichaelPhelps,"RT @ABC: Massive whale shark takes fisherman's breath away after it swims leisurely next to boat off Ocean City, Maryland. https://t.co/O0p…" +07/08/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""All that we are is the result of what we have thought. The mind is everything. What we think we become."" - Buddha" +07/06/2017,Sports_celeb,@MichaelPhelps,#tbt in honor of July 4th! #family https://t.co/G9voYQCeal +07/02/2017,Sports_celeb,@MichaelPhelps,Family fun day on the boat!!! #familytime https://t.co/ehnaFPXHb4 +06/30/2017,Sports_celeb,@MichaelPhelps,So blessed to have these two amazing ppl with me to celebrate my 32 bday!!! #family https://t.co/vWrG8hTZjp +06/28/2017,Sports_celeb,@MichaelPhelps,Lunch is served!! @blueapron shrimp and pasta with some squash olives & parsley #ad https://t.co/szvZm7K7ac +06/27/2017,Sports_celeb,@MichaelPhelps,Dinner time! @mamaphelpsh20 sent us some amazing crabs for my early bday!! @jimmysseafood https://t.co/k0S8bvgZWb +06/26/2017,Sports_celeb,@MichaelPhelps,Family pool day! #familyisthebest https://t.co/oTKkq1vRR9 +06/26/2017,Sports_celeb,@MichaelPhelps,What a blast in the pool with #mpwinner Alex and his sister jasmine last month!! https://t.co/7nb4Ww2h2j +06/19/2017,Sports_celeb,@MichaelPhelps,Play time with booms in his new teepee ! Thanks @mamaphelpsh20 https://t.co/FTIBIeRSa4 +06/16/2017,Sports_celeb,@MichaelPhelps,Roasted beef and farro salad with sweet peppers summer squash and olives or... https://t.co/WyzF2mco6L +06/14/2017,Sports_celeb,@MichaelPhelps,One year ago I married my best friend. Love you!!! https://t.co/OugVo9sC72 +06/12/2017,Sports_celeb,@MichaelPhelps,Happy #nationaljerkyday from the road! Pumped to have my new Honey Habanero flavored chicken jerky from @kravejerky… https://t.co/RiTnzYBGMX +06/12/2017,Sports_celeb,@MichaelPhelps,Dream come true. Thanks y'all!!! https://t.co/N47eMJArv6 +06/11/2017,Sports_celeb,@MichaelPhelps,I was able to do something that I had always wanted to do! https://t.co/2CJplWMkMP +06/08/2017,Sports_celeb,@MichaelPhelps,Happy bday to my other other sister @arschmitty https://t.co/HwgH9nwIAY +06/08/2017,Sports_celeb,@MichaelPhelps,.@Colgate & I remind you turn off the faucet when you brush to save water. #ad #EveryDropCounts https://t.co/0JbU968VMX +06/05/2017,Sports_celeb,@MichaelPhelps,Summers here!!! #sunsoutgunsout https://t.co/LcvpMbrTNa +06/05/2017,Sports_celeb,@MichaelPhelps,Hmm... Can't wait to taste it!!! https://t.co/9rwoouqsYA +06/05/2017,Sports_celeb,@MichaelPhelps,Family workout day!! @mrs.nicolephelps @arschmitty @grant__hackett https://t.co/kJg82lHmhU +06/03/2017,Sports_celeb,@MichaelPhelps,RT @Huggies: .@MichaelPhelps is partnering with Huggies Little Swimmers to help babies everywhere become the best swimmers they can be. #Tr… +06/02/2017,Sports_celeb,@MichaelPhelps,@boomerphelps with his Steph Currys on!!@underarmour” #nbafinals https://t.co/xQzV6ZMtf2 +05/30/2017,Sports_celeb,@MichaelPhelps,Thank you to those who have lost their lives fighting #homeofthebrave #memorialday https://t.co/03K3p4Jclc +05/29/2017,Sports_celeb,@MichaelPhelps,Gotta love being with my best friend! https://t.co/VvdvQhSQ73 +05/25/2017,Sports_celeb,@MichaelPhelps,Father son time! https://t.co/l9lLklRnYt +05/23/2017,Sports_celeb,@MichaelPhelps,Why put a limit to anyhting? https://t.co/mDlbJZn7LT +05/22/2017,Sports_celeb,@MichaelPhelps,Its great to have friends @lukebryan ... amazing show! Thanks buddy! #mpswim @mpfoundation https://t.co/6CM4OMjY7X +05/21/2017,Sports_celeb,@MichaelPhelps,Take the pledge!! https://t.co/2YGw9V3mDl +05/21/2017,Sports_celeb,@MichaelPhelps,"A little rusty... nah, still got it! https://t.co/fIta3n3DHJ" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @bygbyrd8: My niece Georgia is in Houston fighting cancer and got a really cool visit. Thanks @MichaelPhelps https://t.co/gmS4o5THPh +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @poolsafely: While @MichaelPhelps teaches a swim lesson, @JoshsFoundation & @mrsnicolephelps teach more kids about water safety w/ Josh…" +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @joshsfoundation: Lifesaving mamas! Debbie Phelps, Nicole Phelps and Josh's Mom Kathy reading JTO!@joshsfoundation @MPFoundation @Michae…" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @SanchezBGCA: 16 year supporter of @BGCA_Clubs and G.O.A.T. @MichaelPhelps out supporting Clubs with swimming. Thanks for all you do to… +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @poolsafely: ""I’ve taken the Pledge, Olympian @katieledecky took it & I'd like to invite @MichaelPhelps to take it."" - @USCPSC Commissio…" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @CPRParty: #watersafetywarriors @mrsnicolephelps @MichaelPhelps @MamaPhelpsH20 U R leading this movement & saving lives w/every tweet &… +05/20/2017,Sports_celeb,@MichaelPhelps,RT @SpecialOChi: Thanks to @MichaelPhelps and @MPFoundation for visiting with us and sharing tips on water safety! #watersafetymonth https:… +05/16/2017,Sports_celeb,@MichaelPhelps,Pumped to be a member of Baywatch!! @therock put me through a bunch of tests and I passed!!! @baywatchmovie… https://t.co/2NXJSQaZ6o +05/16/2017,Sports_celeb,@MichaelPhelps,You are what you eat!! https://t.co/QYtHIUaEKM +05/16/2017,Sports_celeb,@MichaelPhelps,Home on the range! https://t.co/zTFxfyQVAZ +05/16/2017,Sports_celeb,@MichaelPhelps,She's got game!! https://t.co/U3tpPC3hcO +05/15/2017,Sports_celeb,@MichaelPhelps,Good luck tonight @Simone_Biles !!! Get your votes in!! https://t.co/3d6MDKj3I2 +05/10/2017,Sports_celeb,@MichaelPhelps,Watch out!!!! @mrs.nicolephelps is getting fitted now.... @pxg_xperience https://t.co/viRqZaWm8c +05/10/2017,Sports_celeb,@MichaelPhelps,First bday party for @boomerrphelps !!! What an amazing birthday cake!!!@heartsweetcakes” https://t.co/cHDXqyubLL +05/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Anyone who has never made a mistake has never tried anything new."" - Albert Einstein" +05/09/2017,Sports_celeb,@MichaelPhelps,#MyYoungerSelf Campaign Update! https://t.co/ivDVPpt3lX +05/07/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""You can't build a reputation on what you are going to do."" - Henry Ford" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""You can't build a reputation on what you are going to do."" - Henry Ford" +05/05/2017,Sports_celeb,@MichaelPhelps,RT @samhsagov: .@MichaelPhelps: “I'm so glad we both found the courage to ask for help.” #HeroesOfHope https://t.co/C7BE7QBP5s +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @samhsagov: ""I truly encourage everybody to ask for help or reach out to someone you trust just to talk."" -@MichaelPhelps #HeroesOfHope" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @StampStigma: ""I truly encourage everybody to ask for help or to reach out to someone you trust just to talk."" - @MichaelPhelps #HeroesO…" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @WashWizards: Awesome to have @MichaelPhelps and @arschmitty in the building for a #WizCeltics win! 🇺🇸 + +#DCFamily https://t.co/PhXf40ou6D" +05/04/2017,Sports_celeb,@MichaelPhelps,TONIGHT @ 7 p.m. EDT is @samhsagov’s “Awareness Day Live!” webcast. Join the convo using the hashtag #HeroesofHope. https://t.co/W3kjbeBzRy +05/01/2017,Sports_celeb,@MichaelPhelps,RT @UnderArmour: @agar_john @MichaelPhelps @JustinVerlander We’re all rooting for you johnny! Go #TeamAgar! +04/29/2017,Sports_celeb,@MichaelPhelps,Following your dreams starts with an amazing night’s sleep. @Leesasleep #leesa #sleepbetterfeelbetter #ad https://t.co/JlaT34KPO0 +04/28/2017,Sports_celeb,@MichaelPhelps,Welcome to Baltimore @marlon_humphrey !! +04/27/2017,Sports_celeb,@MichaelPhelps,Can't wait to see who the @Ravens pick tonight!!!! Who goes #1 ?? #letsgoravens +04/27/2017,Sports_celeb,@MichaelPhelps,Amazing!!! Enjoy!!! https://t.co/POZWP783ad +04/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""What is not started today is never finished tomorrow."" - Johann Wolfgang von Goethe" +04/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""If we are together nothing is impossible. If we are divided all will fail."" - Winston Churchill" +04/22/2017,Sports_celeb,@MichaelPhelps,AD Water is our most precious resource. This #EarthDay & every day pls turn off the faucet when brushing ur teeth… https://t.co/KD2KtMdLN9 +04/18/2017,Sports_celeb,@MichaelPhelps,Proud to partner w/ @Colgate to remind everyone to turn off the faucet when brushing your teeth; saves up to 4gallo… https://t.co/sjb7BiMQfI +04/09/2017,Sports_celeb,@MichaelPhelps,Pretty sweet way to finish @TheMasters .... congrats @TheSergioGarcia ... well deserved buddy!!! +04/09/2017,Sports_celeb,@MichaelPhelps,Masters Sunday!!! Who wins down the back stretch?? #masters +04/08/2017,Sports_celeb,@MichaelPhelps,RT @MamaPhelpsH20: An inspirational woman on the west coast who is a ray of sunshine. @AcbjEvents #confidencecodegirls https://t.co/07F17aK… +04/08/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Be not afraid of greatness: some are born great, some achieve greatness, and some have greatness thrust upon them."" -…" +04/05/2017,Sports_celeb,@MichaelPhelps,RT @agar_john: I had an awesome chat with @MichaelPhelps just a little while ago! He gave me a pep talk for my upcoming Florida 1/2 @IRONMA… +04/05/2017,Sports_celeb,@MichaelPhelps,"Anything is possible, the bigger you dream the further you get. Good luck this weekend Johnny I'm pulling for you!!! #konahereyoucome" +04/05/2017,Sports_celeb,@MichaelPhelps,Thank you Johnny for being such an inspiration to us all. Love your version of #RuleYourself. +04/01/2017,Sports_celeb,@MichaelPhelps,#aprilfools I'm not actually coming back😁 sorry for getting some of yalls hopes up🙊 https://t.co/GOp7osXCBF +04/01/2017,Sports_celeb,@MichaelPhelps,Some dreams/goals you just can't get rid of...been doing a lot of thinking n I've decided that I'm going 2 make another comeback! #tokyo2020 +04/01/2017,Sports_celeb,@MichaelPhelps,RT @SimplyAJ10: I've missed you so much. See ya soon sweetheart https://t.co/iBOMARK53B +03/29/2017,Sports_celeb,@MichaelPhelps,Epic night last night!!!! @ericchurch What an amazing show.... just awesome!! https://t.co/tf1pwF2Y5M +03/24/2017,Sports_celeb,@MichaelPhelps,Lunch is served!!! @blueapron #ad https://t.co/Avct5u4qQa +03/24/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! #goblue @boomerrphelps https://t.co/TroQPvAyqW +03/24/2017,Sports_celeb,@MichaelPhelps,"RT @MPMichaelPhelps: Have you joined the #team yet? #jointheteam #MPswim +Find out more: https://t.co/R1J82LBj2h https://t.co/emV1YtBT88" +03/21/2017,Sports_celeb,@MichaelPhelps,Amazing couple days buddy!!! Love hanging ... see ya next door #didwejustbecomebestfriends https://t.co/qGANMEjMAV +03/21/2017,Sports_celeb,@MichaelPhelps,Interesting names on our Starbucks cups today 😁🙊made us all laugh #hiltonvillage https://t.co/QaW4CFJ7Io +03/20/2017,Sports_celeb,@MichaelPhelps,So good to catch up!!!! https://t.co/baRy2LgZAc +03/18/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Destiny is not a matter of chance; but a matter of choice."" - William Jennings" +03/18/2017,Sports_celeb,@MichaelPhelps,RT @DanHicksNBC: Most important piece to the wardrobe today @apinv #theking https://t.co/pMmdmb2MOB https://t.co/oSwlZNV9g1 +03/18/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Efforts and courage are not enough without purpose and direction."" - John F. Kennedy" +03/17/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! #GoBlue +03/16/2017,Sports_celeb,@MichaelPhelps,This little man is just the best! https://t.co/kBBE8r2CCI +03/15/2017,Sports_celeb,@MichaelPhelps,RT @RickieFowler: Legends never die!! Honored to be here this week at the @apinv to celebrate a life well played!! To The King👍 https://t.c… +03/15/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""I've failed over and over and over again in my life and that is why I succeed."" - Michael Jordan" +03/15/2017,Sports_celeb,@MichaelPhelps,RT @KraveJerky: Which #KRAVEjerky Fit Your Flavor Fit Kit is for you? Enter to win a @MichaelPhelps @CarliLloyd or @runMeb kit: https://t.c… +03/13/2017,Sports_celeb,@MichaelPhelps,Booms and I got to watch our first spring training game together #buildingmemoriestogether https://t.co/kz6Bk2kFf2 +03/13/2017,Sports_celeb,@MichaelPhelps,Love these days!!! #sundayfunday https://t.co/HQFQcomt5k +03/12/2017,Sports_celeb,@MichaelPhelps,Big win for #bigblue today!! #goblue https://t.co/WKz7vaPTVW +03/12/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""The best way to cheer yourself up is to try to cheer somebody else up."" - Mark Twain" +03/12/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It's kind of fun to do the impossible."" - Walt Disney" +03/11/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Never, never, never give up."" - Winston Churchill" +03/10/2017,Sports_celeb,@MichaelPhelps,Visit https://t.co/rDuswbfyh0 or call 855-802-9842 for more info sponsorships or to register https://t.co/4LIMi5AE17 +03/10/2017,Sports_celeb,@MichaelPhelps,Thank you for clarifying @NBCSports .... you can tell how passionate I am about this topic !!! https://t.co/59vNYkyRPk +03/10/2017,Sports_celeb,@MichaelPhelps,Welcome to Baltimore!! https://t.co/ENtRSAWpc8 +03/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""At first dreams seem impossible, then improbable, then inevitable."" - Christopher Reeve" +03/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""No great man ever complains of want of opportunity."" - Ralph Waldo Emerson" +03/10/2017,Sports_celeb,@MichaelPhelps,Awesome! https://t.co/hI0wgTpZv9 +03/09/2017,Sports_celeb,@MichaelPhelps,Legend!! We lost #biggie 20 years ago.... #skyisthelimit #rip https://t.co/zLzsIgWKQi +03/06/2017,Sports_celeb,@MichaelPhelps,Boomer and me on the range today #amazing https://t.co/UzfaXm0ZXR +03/03/2017,Sports_celeb,@MichaelPhelps,Welcome!! https://t.co/a6rTLH4nzN +03/02/2017,Sports_celeb,@MichaelPhelps,Pre flight shenanigans with @boomerrphelps !!! #lovethisdude https://t.co/gvw33mQCjJ +03/02/2017,Sports_celeb,@MichaelPhelps,You can see I'm passionate about this subject!! #cleansport https://t.co/PH1tHGGGXg +02/28/2017,Sports_celeb,@MichaelPhelps,looks like someone needs a little 💤💤💤💤 https://t.co/5Yjs8BUgqc +02/27/2017,Sports_celeb,@MichaelPhelps,#msjuno and I were sleepy heads this am.... @mrsnicolephelps snuck a pic of us🙈 https://t.co/g3dgMtVoCD +02/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Change your thoughts and you change your world."" - Norman Vincent Peale" +02/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Yes, I sometimes fail, but at least I'm willing to experiment."" - Bono" +02/27/2017,Sports_celeb,@MichaelPhelps,Nice win today kid! @RickieFowler +02/26/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.""…" +02/25/2017,Sports_celeb,@MichaelPhelps,Checking in! https://t.co/GBQ4f3Obcd +02/24/2017,Sports_celeb,@MichaelPhelps,Listen up. Get the new #BeatsX from @BeatsByDre. #GotNoStrings https://t.co/qtdW6IqP6Z +02/24/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Success or failure is caused more by mental attitude than by mental capacity."" - Walter Scott" +02/24/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""The greatest achievement is to outperform yourself."" - Denis Waitley" +02/24/2017,Sports_celeb,@MichaelPhelps,RT @bgcmuncie: These young men graduated from #PassportToManhood last night! Please help us congratulate them! #GreatFutures https://t.co/D… +02/24/2017,Sports_celeb,@MichaelPhelps,We're having a race? When? Where? I'm in!! Haha https://t.co/LmGMQ0jJhg +02/23/2017,Sports_celeb,@MichaelPhelps,I'm not sure what else to say but just amazing..... #happiness https://t.co/0rL9Rj1kHi +02/22/2017,Sports_celeb,@MichaelPhelps,https://t.co/1YIKn8GtIT +02/22/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It's how you deal with failure that determines how you achieve success."" - David Feherty" +02/22/2017,Sports_celeb,@MichaelPhelps,Dinner is served!! @blueapron #ad https://t.co/I3xNFOClyt +06/30/2018,Sports_celeb,@gabrielledoug,@queenpam93 😂😘💛 +06/30/2018,Sports_celeb,@gabrielledoug,@_Ahreeahnah 😂🤗💛 +06/30/2018,Sports_celeb,@gabrielledoug,@earthXplorer 😂😂♥️♥️ +06/30/2018,Sports_celeb,@gabrielledoug,@JanieLanham8 ♥️♥️♥️♥️ +06/30/2018,Sports_celeb,@gabrielledoug,@Mommaforreal @RoxxyRocketfire 😂😘💛 +06/30/2018,Sports_celeb,@gabrielledoug,@RoxxyRocketfire 😂😂😂😘 +06/25/2018,Sports_celeb,@gabrielledoug,@MakeAWish @SkyspaceLA @makeawishla @MakeAWishNM Such a cutie +06/11/2018,Sports_celeb,@gabrielledoug,"RT @TellTruthABC: All @gabrielledoug does is win! +#ToTellTheTruth https://t.co/036yu7440Y" +06/11/2018,Sports_celeb,@gabrielledoug,RT @UrsTruly_Kierra: Watching @gabrielledoug on #ToTellTheTruth +06/11/2018,Sports_celeb,@gabrielledoug,TUNE IN TUNE IN!!! 💛💛 https://t.co/hp4Scc0HHA +06/11/2018,Sports_celeb,@gabrielledoug,🙈🙈😂😂😂 https://t.co/psjOtDTTT3 +06/10/2018,Sports_celeb,@gabrielledoug,"RT @Barbie: Gabby Douglas shows girls everywhere that with hard work and lots of self-confidence, #YouCanBeAnything! 🥇 #MoreRoleModels #Mon…" +05/30/2018,Sports_celeb,@gabrielledoug,@Mister_GQ lolol haha! 💛💛 +05/24/2018,Sports_celeb,@gabrielledoug,"RT @ABC_Publicity: New Release: Host @AnthonyAnderson and the beloved game show @TellTruthABC both return on Sunday, June 10, at 10|9c with…" +05/24/2018,Sports_celeb,@gabrielledoug,"RT @FMNATV: .@TellTruthABC returns on Sunday, June 10 at 10/9c on @ABCNetwork with celeb panelists @octaviaspencer, @gabrielledoug, @nikkig…" +05/14/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: An undercover @gabrielledoug gets emotional after a meaningful chat with super dad Ken at his workplace. https://t.co/I… +05/13/2018,Sports_celeb,@gabrielledoug,@SullivanNicole @undercover_cbs 😂😂😂😭😘 +05/13/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: Watch @gabrielledoug tumble into the lives of some very lucky young gymnasts on the premiere of #CelebrityBoss. Stream… +05/12/2018,Sports_celeb,@gabrielledoug,@PapaRandlicious @undercover_cbs thanks soo much! +05/12/2018,Sports_celeb,@gabrielledoug,@ReseeStevens @undercover_cbs 😭 thank you for this mesage. so sweet. +05/12/2018,Sports_celeb,@gabrielledoug,"How did you guys like my episode of #CelebrityUndercoverboss ? @undercover_cbs RT of Fav if you did! 💚 + +x" +05/12/2018,Sports_celeb,@gabrielledoug,♥️♥️♥️ this moment 😭 https://t.co/vYq2u2AWFA +05/12/2018,Sports_celeb,@gabrielledoug,😫😭😭 https://t.co/M3QMe8y12x +05/12/2018,Sports_celeb,@gabrielledoug,haha! ayeee https://t.co/ZqFcGsgWFb +05/12/2018,Sports_celeb,@gabrielledoug,@Racci13 @undercover_cbs haha! thanks!! +05/12/2018,Sports_celeb,@gabrielledoug,@Chris_Bigga 😂😂 +05/12/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: Would you be able to recognize @gabrielledoug beneath this #CelebrityBoss disguise? Tune in NOW to watch the season pre… +05/12/2018,Sports_celeb,@gabrielledoug,LOLOL https://t.co/3DSJsmwTcH +05/11/2018,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Tulum ,Mexico ❤️😍 https://t.co/aPjOor4qp5" +05/10/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: There's no doubt that @gabrielledoug can recognize strength when she sees it. Watch her go undercover on #CelebrityBoss… +05/08/2018,Sports_celeb,@gabrielledoug,"RT @etnow: .@gabrielledoug, @idinamenzel and more will star in the first-ever 'Undercover Boss: Celebrity Edition'! https://t.co/v1QCI5CkTV…" +05/01/2018,Sports_celeb,@gabrielledoug,@FunmiSomoye lolz +04/26/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: The first season of #CelebrityBoss will feature Olympic champion @gabrielledoug when it premieres on May 11 at 8/7c. Fi… +04/25/2018,Sports_celeb,@gabrielledoug,"feeling like a superhero 😎♥️ join the boing team #shox +x https://t.co/4iMNzRCLRp" +04/20/2018,Sports_celeb,@gabrielledoug,@peta 😍😍😍😍😍😍 can they come to la lol +03/30/2018,Sports_celeb,@gabrielledoug,@Makenziegandee cutie +03/30/2018,Sports_celeb,@gabrielledoug,"If you don’t like something, change it! In honor of Women’s History Month, let’s continue to inspire one another to… https://t.co/O26gPY1yyC" +03/30/2018,Sports_celeb,@gabrielledoug,😍😍😍♥️♥️ https://t.co/RELBVlYCZO +03/30/2018,Sports_celeb,@gabrielledoug,this is sooo cute 😍 all the best to you! so honored! x https://t.co/KqYtj096ia +03/19/2018,Sports_celeb,@gabrielledoug,On behalf of all the young girls around the world with big dreams I’m thrilled to support this statement from… https://t.co/UEmoxzor3p +03/09/2018,Sports_celeb,@gabrielledoug,@Lonnie175 😩🧡🧡 +03/07/2018,Sports_celeb,@gabrielledoug,@nikkimickey04 haha🧡 ily2 +03/06/2018,Sports_celeb,@gabrielledoug,@slotmoorerchine clever +03/06/2018,Sports_celeb,@gabrielledoug,@ohthatsjusdanny @KevinHart4real i legit cannot. 😂😂 +02/25/2018,Sports_celeb,@gabrielledoug,😂😂🙈🧡 https://t.co/o2NhkNAabS +02/25/2018,Sports_celeb,@gabrielledoug,RT @LOLNetwork: #RunItBack! @gabrielledoug and @KevinHart4Real hit the ice to roast each other 😂 Find out who wins in the full episode of #… +02/25/2018,Sports_celeb,@gabrielledoug,@ieathersoul i cannot 😂😂😂😂🙈 +02/02/2018,Sports_celeb,@gabrielledoug,RT @amfam: Kicking off #BlackHistoryMonthِ inspiring youth with @EuniqueJG @gabrielledoug @ajani_carr @lilicecreamdude @jdmccrary #dreamfea… +01/17/2018,Sports_celeb,@gabrielledoug,"RT! i❤️ to see other brave athletes chase their dreams-especially from my home state of VA! Polar Plunge, the bigge… https://t.co/VvgQxGgfkE" +01/17/2018,Sports_celeb,@gabrielledoug,@the_USO thank you so much for having me! x it was amazing +01/17/2018,Sports_celeb,@gabrielledoug,RT @the_USO: #BeTheForce with Olympic gold medalist @gabrielledoug who spent last week visiting service members and their families in Guam… +01/17/2018,Sports_celeb,@gabrielledoug,"RT @caafoundation: .@gabrielledoug started out the new year by visiting our troops, touring their bases & holding a gymnastics clinic for m…" +01/14/2018,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Amsterdam, Netherlands 🇳🇱 https://t.co/14lGi97Tev" +01/11/2018,Sports_celeb,@gabrielledoug,it was a natasha kinda day #tb @RPGshow @ShearPhysique ☀️✨💛 https://t.co/NujG5Dc2NU +01/11/2018,Sports_celeb,@gabrielledoug,"RT @the_USO: Welcome to Guam, @gabrielledoug! The Olympic gold medalist visited Andersen Air Force Base, where she toured the Andersen Secu…" +12/26/2017,Sports_celeb,@gabrielledoug,looking for a new look this season? check out my @RPGshow custom line #audrey #natasha #sasha 💁🏽 https://t.co/Dyo1MlExpM +12/26/2017,Sports_celeb,@gabrielledoug,@AuthorJoeMac ❤️❤️❤️ +11/30/2017,Sports_celeb,@gabrielledoug,@chizarachinelo 😍❤️ i love uuuu xx +11/22/2017,Sports_celeb,@gabrielledoug,"love you so much. so glad you know i would never attack you and that i support you too- because united we stand, di… https://t.co/dpEVWRRoW2" +11/18/2017,Sports_celeb,@gabrielledoug,i didn’t correctly word my reply & i am deeply sorry for coming off like i don’t stand alongside my teammates. reg… https://t.co/YW2PFdcO43 +11/17/2017,Sports_celeb,@gabrielledoug,@dwtsfishovskiy it goes both ways. +11/17/2017,Sports_celeb,@gabrielledoug,@dwtsfishovskiy u misunderstood me. not blaming the victim at all. no man should look at any woman that way. +11/17/2017,Sports_celeb,@gabrielledoug,@haterethaa ? girl what r u talking about ? +11/17/2017,Sports_celeb,@gabrielledoug,@DrArtmanSRU @slipperyrockU @SRUPB haha!!! thanks for having me ! xx +11/16/2017,Sports_celeb,@gabrielledoug,ayeee https://t.co/51mWkFNm6D +11/15/2017,Sports_celeb,@gabrielledoug,change nothing and nothing changes +11/15/2017,Sports_celeb,@gabrielledoug,"RT @GoodDoctorABC: Everything. +#TheGoodDoctor https://t.co/KNmAMN8Fn5" +11/12/2017,Sports_celeb,@gabrielledoug,RT @Essence: Shout out to @TiffanyHaddish for making history as the first black female commedienne to host #SNL! Keep shining boo. 😘 https:… +11/12/2017,Sports_celeb,@gabrielledoug,RT @GoodDoctorABC: Meet Dr. Murphy back in the OR tomorrow night for an all-new #TheGoodDoctor! https://t.co/vqULyCedwX +11/12/2017,Sports_celeb,@gabrielledoug,"kindness is free +sprinkle that stuff everywhere 💖" +11/10/2017,Sports_celeb,@gabrielledoug,change your life by changing your heart +11/10/2017,Sports_celeb,@gabrielledoug,"RT @beautybakerie: This is me with my daughter, Jasmyn. Different levels of melanin. Felt bad when I️ could find my shade at stores but not…" +11/08/2017,Sports_celeb,@gabrielledoug,RT @HomesteadMiami: THIS JUST IN: Multiple-gold winning Olympic gymnast and author @gabrielledoug will serve as the Honorary Starter at the… +11/08/2017,Sports_celeb,@gabrielledoug,"change is hard at first, messy in the middle, but gorgeous at the end." +11/03/2017,Sports_celeb,@gabrielledoug,"forget the mistake +remember the lesson" +11/02/2017,Sports_celeb,@gabrielledoug,@jordyn_wieber righttt +11/01/2017,Sports_celeb,@gabrielledoug,"good days give happiness +bad days give experience +worst days give lessons and +best days give memories ❤️" +10/31/2017,Sports_celeb,@gabrielledoug,ily. we should hang next time i'm in nyc xx https://t.co/TKNp5MGHK0 +10/31/2017,Sports_celeb,@gabrielledoug,RT @GoodDoctorABC: An all-new episode of this season’s #1 drama #TheGoodDoctor starts now. Please retweet if you’re watching. https://t.co/… +10/27/2017,Sports_celeb,@gabrielledoug,"RT @MVCC_UticaRome: Olympic gold medalist @gabrielledoug will be at our Utica Campus on Saturday, Nov. 4! Get your tickets at https://t.co/…" +10/26/2017,Sports_celeb,@gabrielledoug,@socialmagazine haha!!! no problem!!! i love it ! +10/26/2017,Sports_celeb,@gabrielledoug,@giftedkordei u so silly 😂😂 +10/25/2017,Sports_celeb,@gabrielledoug,i love this. generations inspire the next! xx https://t.co/tyxSfFcLJO +10/19/2017,Sports_celeb,@gabrielledoug,RT @NastiaLiukin: #WSFAnnualSalute @gabrielledoug @lzhernandez02 ✨❤️ https://t.co/UWqKLpmNIN +10/19/2017,Sports_celeb,@gabrielledoug,@ZayaTheProphet i can't +10/18/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: Just a beauty inside and out! Love our Gabby💕 https://t.co/syNZKUZHsG +10/18/2017,Sports_celeb,@gabrielledoug,@TheLemWiley @_kendallen haha +10/18/2017,Sports_celeb,@gabrielledoug,@_kendallen 😂😂😂😂😂😂😂 +10/18/2017,Sports_celeb,@gabrielledoug,"anyone up for a follow spree ? +rt" +10/18/2017,Sports_celeb,@gabrielledoug,RT @TheWorldStories: Fall in the alpine ❤️ https://t.co/bbxeyp4JqJ +10/18/2017,Sports_celeb,@gabrielledoug,@lydmarie95 rightttt. i love itttt tooo +10/18/2017,Sports_celeb,@gabrielledoug,@WilliamAdoasi @VitaeLondon would love one xx +10/17/2017,Sports_celeb,@gabrielledoug,RT @CW_TheFlash: #TheFlash is back and better than ever. Don't miss a new episode TONIGHT at 8/7c on The CW. https://t.co/baG9cZmWlQ +10/17/2017,Sports_celeb,@gabrielledoug,@AkilahObviously @geniuskitchen luhh uuuuu xx +10/17/2017,Sports_celeb,@gabrielledoug,RT @AkilahObviously: Did an Olympic medalist teach you how to stick the landing? Cause @gabrielledoug JUST TAUGHT ME!! 😍 @geniuskitchen htt… +10/16/2017,Sports_celeb,@gabrielledoug,@highlighthunnie @McJesse 🤓🤓🤓 +10/16/2017,Sports_celeb,@gabrielledoug,@McJesse LOLOLOLOLOL +10/16/2017,Sports_celeb,@gabrielledoug,@McJesse @highlighthunnie NOOO... I'm donneeee +10/16/2017,Sports_celeb,@gabrielledoug,@DualSpires i'm doneeee +10/16/2017,Sports_celeb,@gabrielledoug,RT @chadwickboseman: The revolution will be live. #BlackPanther https://t.co/gakhMRYHLT +10/13/2017,Sports_celeb,@gabrielledoug,RT @StephenAmell: It's been a long hiatus. Arrow is back. RIGHT NOW! +10/13/2017,Sports_celeb,@gabrielledoug,RT @EraseSoul: Gabrielle Union and Dwyane Wade are goals 😍 https://t.co/yqAf0XeBEZ +10/13/2017,Sports_celeb,@gabrielledoug,@musicfeign @beautybakerie YEP!! YEP !! YEP!! +10/11/2017,Sports_celeb,@gabrielledoug,RT @FLASHtvwriters: We're back!! #TheFlash +10/10/2017,Sports_celeb,@gabrielledoug,@TyBridg3 @CW_TheFlash rrllyyy 😂 +10/10/2017,Sports_celeb,@gabrielledoug,@TyBridg3 @CW_TheFlash i'm soooo done. +10/10/2017,Sports_celeb,@gabrielledoug,"RT FOR A FOLLOW 💛 + +also, who else is excited for @CW_TheFlash tonight ? + +x" +10/09/2017,Sports_celeb,@gabrielledoug,RT @MissTeenUSA: #MissTeenUSA and Olympic athlete @gabrielledoug guest speak at the largest global gathering of girls and influencers #GIRL… +10/09/2017,Sports_celeb,@gabrielledoug,RT @CW_TheFlash: The West family returns Tuesday at 8/7c on The CW! #TheFlash https://t.co/DymHzuv2ey +10/08/2017,Sports_celeb,@gabrielledoug,nope. THANK U SOO MUCH FOR HAVING ME. X https://t.co/KodlZLHoP1 +10/08/2017,Sports_celeb,@gabrielledoug,"RT @girlscouts: ""You can't please everyone. You have to be true to yourself."" 👑@gabrielledoug https://t.co/cmdE9b9Fkb" +10/02/2017,Sports_celeb,@gabrielledoug,"my prayers & sympathies are with all the victims and loved ones of this disgusting, hateful act. #stopthehate #VegasShooting" +09/28/2017,Sports_celeb,@gabrielledoug,RT @jacobsartorius: blowing out someone else's candle doesn't make yours shine any brighter. +09/28/2017,Sports_celeb,@gabrielledoug,"RT @RoyalCaribbean: Today Adventure of the Seas will dock in Puerto Rico, the first stop in a series of three to drop off relief supplies &…" +09/28/2017,Sports_celeb,@gabrielledoug,RT @ChloeGMoretz: Riverdale is back October 11th.. that’s all +09/24/2017,Sports_celeb,@gabrielledoug,@Havekiddoswill thankkk uu x +09/24/2017,Sports_celeb,@gabrielledoug,"RT @NFL: TOM BRADY. BRANDIN COOKS. + +WOWWWWWWWW. https://t.co/mYeno62uY4" +09/24/2017,Sports_celeb,@gabrielledoug,RT @Patriots: Tom. Brady. https://t.co/fVhqS9bpGy +09/24/2017,Sports_celeb,@gabrielledoug,and in the end we only regret the chances we didn't take. +09/24/2017,Sports_celeb,@gabrielledoug,"RT @younghollywood: In this episode of #BeyondtheAthlete, we hang with @gabrielledoug, @RobGronkowski and more, off the field! https://t.co…" +09/20/2017,Sports_celeb,@gabrielledoug,#goodvibes with a splash of triple berry mousse ! @beautybakerie x https://t.co/Jjdk0EjQdw +09/19/2017,Sports_celeb,@gabrielledoug,"😫 +mexico city, i'm praying for you + +x" +09/19/2017,Sports_celeb,@gabrielledoug,@bkitmedical @musicallyapp 😂😂😂😂 pls +09/18/2017,Sports_celeb,@gabrielledoug,"RT @musicallyapp: Same @gabrielledoug, same. 😂 https://t.co/XBiBPdqKTh" +09/18/2017,Sports_celeb,@gabrielledoug,😂😂 https://t.co/5KTiSpQHA4 +09/17/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: Single life! Now u can get @gabrielledoug set as singles! Smudge-free and comfy to wear! Shown: Hazelnut Swirl 🌰https://… +09/17/2017,Sports_celeb,@gabrielledoug,RT @OurMilitaryKids: Don't let gravity stop you from flying. Happy #NationalGymnasticsDay https://t.co/UzmQpB3YtK +09/14/2017,Sports_celeb,@gabrielledoug,@Imactuallybebs @drefromjerz @Iildevil LOLOLOL +09/14/2017,Sports_celeb,@gabrielledoug,@drefromjerz @sama_luv3 DONE +09/14/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: On the Menu: Triple Berry Mousse by Gabby Douglas x Beauty Bakerie: https://t.co/A0q7sIGkAP via @YouTube +09/13/2017,Sports_celeb,@gabrielledoug,RT @ChloeLukasiak: There are so many tv shows I wish I had never watched just so I could watch them for the first time again +09/13/2017,Sports_celeb,@gabrielledoug,ayee. u a G ! https://t.co/aNcPCvfnqz +09/12/2017,Sports_celeb,@gabrielledoug,if this isn't my dog .. https://t.co/Y3z0lkau4s +09/10/2017,Sports_celeb,@gabrielledoug,"RT @ThiruHR: Almost 700,000 animals died in Hurricane Katrina. Don't leave your animals behind, take them to safety with you. #HurricanIrma…" +09/10/2017,Sports_celeb,@gabrielledoug,congrats congrats congratzzzz ❤️ https://t.co/du2gO1hHsY +09/08/2017,Sports_celeb,@gabrielledoug,RT @BarackObama: Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/08/2017,Sports_celeb,@gabrielledoug,"i'm continuing to pray for everyone in the affected areas of TX & now Caribbean Islands, FL, GA, SC & Mexico! pls be safe!😢#Harvey #Irma" +09/08/2017,Sports_celeb,@gabrielledoug,RT @TIME: Gabby Douglas is the first American gymnast to win solo and team all-around gold at one Olympics #SheIsTheFirst https://t.co/pbIn… +09/06/2017,Sports_celeb,@gabrielledoug,"RT @espn: Venus ✅ +Serena ✅ +Sloane ✔️ https://t.co/SAQEhR67Z4" +09/04/2017,Sports_celeb,@gabrielledoug,"guys, treat your girls like queens" +09/04/2017,Sports_celeb,@gabrielledoug,i love this https://t.co/Go7UNl1Idw +09/04/2017,Sports_celeb,@gabrielledoug,WHAT..... https://t.co/AvBw5Oxnmt +09/01/2017,Sports_celeb,@gabrielledoug,"RT @PennStateIFC: With the current devastation in Houston, we are pledging $0.15 for every RT this gets! Please forward this along to help…" +08/30/2017,Sports_celeb,@gabrielledoug,@Deacon_Schiele 😂. how about john cena? +08/30/2017,Sports_celeb,@gabrielledoug,@evie_lution 😂😂😂 +08/30/2017,Sports_celeb,@gabrielledoug,"how many tickles does it take to make an octopus laugh? + +ten-tickles + +szxwkp🙊.. LOL get it" +08/29/2017,Sports_celeb,@gabrielledoug,"well, you reap what you sow" +08/29/2017,Sports_celeb,@gabrielledoug,@ItsDumbTweets 😂😂😂😂😂 +08/28/2017,Sports_celeb,@gabrielledoug,@ThtWavyGuy so done😂 +08/28/2017,Sports_celeb,@gabrielledoug,*fighting the urge to be petty +08/28/2017,Sports_celeb,@gabrielledoug,@MyImmatureMind https://t.co/j8Ohci1oGx +08/28/2017,Sports_celeb,@gabrielledoug,RT @lilpochaco: every day i catch her stealing fruits from the counter. pls stop https://t.co/0dlXsIAJW8 +08/27/2017,Sports_celeb,@gabrielledoug,@DakotaHonor @nicksaysgo 😂😂😂😂😂😂😂 +08/27/2017,Sports_celeb,@gabrielledoug,*starts training for boxing https://t.co/epGLUHszzT +08/27/2017,Sports_celeb,@gabrielledoug,RT @EchoK: #Arrow just got picked up for season 6! Woohoo!!! ☺😂😍🎊🎉👍🏾🙏🏾🔥💯 +08/25/2017,Sports_celeb,@gabrielledoug,"oh babe, u are so much more than they say" +08/25/2017,Sports_celeb,@gabrielledoug,@lovebscott 😛😛😛😛 +08/25/2017,Sports_celeb,@gabrielledoug,"it's not wether an upright man shows his true honesty in public, it's what he does when no one is watching." +08/24/2017,Sports_celeb,@gabrielledoug,RT @Mattel: @chizarachinelo @gabrielledoug @Barbie This is a Barbie Collector exclusive. Contact them for info on UK shipping: https://t.co… +08/24/2017,Sports_celeb,@gabrielledoug,😂😂 THERE'S AMAZON !!! https://t.co/bJgs3n8RkN +08/23/2017,Sports_celeb,@gabrielledoug,"RT @_teewrex: When the activities that you were about to find an excuse not to attend, gets cancelled. https://t.co/qcXZA7kaZk" +08/23/2017,Sports_celeb,@gabrielledoug,i never lose; i either win or learn +08/22/2017,Sports_celeb,@gabrielledoug,Confidence=beauty. The Cortez by A.L.C. is 4 all the ladies & the many dimensions that make up who we are. #cortez… https://t.co/g5uUEewU6Q +08/22/2017,Sports_celeb,@gabrielledoug,"RT @Power1051: Looks like @gabrielledoug wants to be Marvels new Superhero 🔥 +https://t.co/0GcMzb6e5p https://t.co/wfbaQrnsjF" +08/20/2017,Sports_celeb,@gabrielledoug,"@McKaylaMaroney LMBO +love ya babe 💛" +08/19/2017,Sports_celeb,@gabrielledoug,💛💛 https://t.co/fEkkJUfKji +08/16/2017,Sports_celeb,@gabrielledoug,"RT @peoplestyle: .@KaiaGerber is now a denim model for @HudsonJeans, @GabrielleDoug Is the face of @Nike, and more celebrity ads https://t.…" +08/15/2017,Sports_celeb,@gabrielledoug,RT @Postit: We had a blast w/ @gabrielledoug yesterday as she made the day for hundreds & showed them how she makes her goals stick with #P… +08/14/2017,Sports_celeb,@gabrielledoug,RT @KingJames: Our youth deserves better!! Flat out +08/14/2017,Sports_celeb,@gabrielledoug,praying for all the victims of this hate-filled attack. in the face of all this evil - let's all embrace love even… https://t.co/k5plYaTnoj +08/13/2017,Sports_celeb,@gabrielledoug,all this hate is disgusting. +08/13/2017,Sports_celeb,@gabrielledoug,banging https://t.co/qwF8UOJz1o +08/13/2017,Sports_celeb,@gabrielledoug,"be nice +because it's cool." +08/11/2017,Sports_celeb,@gabrielledoug,they suree aree 😂 thank you. 💛 https://t.co/oi0UHXYDUA +08/08/2017,Sports_celeb,@gabrielledoug,RT @ItsFoodPics: I need pumpkin flavored EVERYTHING https://t.co/ma5mI22mOu +08/07/2017,Sports_celeb,@gabrielledoug,RT @ItsFoodPics: WANT...WANT...WANT https://t.co/MNoP8MTgLI +08/07/2017,Sports_celeb,@gabrielledoug,😂😂😂😂 https://t.co/mr17elAPqo +08/07/2017,Sports_celeb,@gabrielledoug,RT @humbxrtoo17: Me shooting my shot https://t.co/TZqjQJqg4R +08/07/2017,Sports_celeb,@gabrielledoug,👏👏👏 https://t.co/BuQLSvI7MQ +08/06/2017,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Dolomites, Italy https://t.co/D1QHzVo1kD" +08/06/2017,Sports_celeb,@gabrielledoug,RT @Postit: Huge thanks to champion gymnast @gabrielledoug for sharing how she sets and achieves her goals at yesterday’s event in Cali. #M… +08/04/2017,Sports_celeb,@gabrielledoug,bruh. i'm 5'3 in a half https://t.co/zjF7nFTMBR +08/04/2017,Sports_celeb,@gabrielledoug,but.. can u handle 3 gabby's ? https://t.co/AHKTKXvMfR +08/03/2017,Sports_celeb,@gabrielledoug,"omg. 5 years ago i became the first african american to win the aa title in gymnastics. wow. time flies + +#honored" +08/03/2017,Sports_celeb,@gabrielledoug,@SpannyTampson cryin. thank u x +08/02/2017,Sports_celeb,@gabrielledoug,ayeee https://t.co/hjcVJajmlY +08/02/2017,Sports_celeb,@gabrielledoug,👀👀👀 https://t.co/MfPW7L8cfc +08/02/2017,Sports_celeb,@gabrielledoug,RT @Postit: Dreaming isn’t enough to become a champion. It takes serious planning. See how @gabrielledoug achieves her dreams. https://t.c… +08/02/2017,Sports_celeb,@gabrielledoug,RT @TheWorldStories: Coast of Croatia https://t.co/Z2R562oucZ +08/02/2017,Sports_celeb,@gabrielledoug,RT @em_shapiro13: oh hi gabby https://t.co/CmpYLT8a7n +08/01/2017,Sports_celeb,@gabrielledoug,hmmm. i'm diggin it. https://t.co/OwGzVAZsvA +08/01/2017,Sports_celeb,@gabrielledoug,RT @dmo1025: Audrey found @gabrielledoug at @Staples while we were school supply shopping.... https://t.co/qTJAYCbmPs +07/28/2017,Sports_celeb,@gabrielledoug,lolol. i can't with myself https://t.co/H2ZEMWVdYF +07/28/2017,Sports_celeb,@gabrielledoug,😂😂😂😂😂😂😂 https://t.co/D328PaeEKX +07/26/2017,Sports_celeb,@gabrielledoug,i look so rough. 😂 loveee uuuu x https://t.co/5yBtxg6c58 +07/25/2017,Sports_celeb,@gabrielledoug,omg. 😫🙌 https://t.co/6XwyxMrDfF +07/01/2018,Sports_celeb,@Simone_Biles,"RT @KimLavine: ""You got to train your mind to be stronger than your emotions or else you'll lose every time."" +@Simone_Biles + +#startup #Mon…" +06/30/2018,Sports_celeb,@Simone_Biles,road trip means drakin’ and drivin https://t.co/xicsU6p5k4 +06/30/2018,Sports_celeb,@Simone_Biles,RT @AndreaRussett: i’m willing to throw hands at anyone who doesn’t think my dog is cute +06/30/2018,Sports_celeb,@Simone_Biles,when you have a good hair day but you have to put it up for gym .... +06/30/2018,Sports_celeb,@Simone_Biles,cardi B typa morning +06/30/2018,Sports_celeb,@Simone_Biles,"I cannot wait to come to London for this huge new event next year, appearing alongside Max Whitlock and lots more g… https://t.co/t2zL9ZCcD0" +06/28/2018,Sports_celeb,@Simone_Biles,RT @lorsace: this how i look back at people that won't stop staring at me https://t.co/z1tsp2eO6g +06/27/2018,Sports_celeb,@Simone_Biles,RT @Amierrrrrr_: We get called mean https://t.co/qcbKYzFbry +06/27/2018,Sports_celeb,@Simone_Biles,I did a full floor routine yesterday for the first time - that’s a good start +06/25/2018,Sports_celeb,@Simone_Biles,RT @Colt3FIVE: My spirit animal is a sloth +06/25/2018,Sports_celeb,@Simone_Biles,my baby💛 https://t.co/roPRJ2v7nO +06/24/2018,Sports_celeb,@Simone_Biles,RT @jennhoww: if ur a 2 dating an 11 retweet dissss +06/24/2018,Sports_celeb,@Simone_Biles,🗣 https://t.co/bKiTpdMf3T +06/23/2018,Sports_celeb,@Simone_Biles,I lost ALL of my photos from the Olympics #OlympicDay +06/23/2018,Sports_celeb,@Simone_Biles,"RT @Indians: Nailed it, @Simone_Biles. https://t.co/Z6i987mvI2" +06/23/2018,Sports_celeb,@Simone_Biles,RT @yuneicyaguirre: Thank you @Simone_Biles for stopping by and taking a picture w/ my level 1/2 class 💕 https://t.co/ut41WmM4Li +06/23/2018,Sports_celeb,@Simone_Biles,just another problem to add to my list of problems +06/22/2018,Sports_celeb,@Simone_Biles,"RT @papermagazine: After taking a year off from competition, Olympic gold medal-winning gymnast @Simone_Biles is back in the gym! https:/…" +06/21/2018,Sports_celeb,@Simone_Biles,RT @imabackhaus: hit the boyfriend jackpot for sure +06/21/2018,Sports_celeb,@Simone_Biles,💭 https://t.co/7qRObg9QUK +06/21/2018,Sports_celeb,@Simone_Biles,actually no hahaha the twisties are the ABSOLUTE worse. I walked out of a practice for the first time in my career.… https://t.co/3uPs6heBj2 +06/21/2018,Sports_celeb,@Simone_Biles,RT @rachm528: missing my bff right about now 💋 https://t.co/cNqdZ8QzN7 +06/20/2018,Sports_celeb,@Simone_Biles,the last two weeks I’ve had a mental block on full twists and I wouldn’t go for any tumbling or skills bc I picture… https://t.co/Yx02fb6op8 +06/20/2018,Sports_celeb,@Simone_Biles,RT @DohaGym2018: 4 x Olympic and 10 x World Champion @Simone_Biles is making her come-back this year. Will she make the US team in Doha thi… +06/19/2018,Sports_celeb,@Simone_Biles,RT @Olympics: The only one that can do this. @Simone_Biles @gymnastics @TeamUSA https://t.co/VEp8U6d86h +06/17/2018,Sports_celeb,@Simone_Biles,"RT @GymCastic: If UH adds gymnastics, Simone Biles would consider coaching https://t.co/r2CYfQKPOA + +Do you need more incentive? https://t.c…" +06/17/2018,Sports_celeb,@Simone_Biles,RT @pxyonce: This is so asthectically pleasing. Like wow https://t.co/6RNaYw8RJA +06/16/2018,Sports_celeb,@Simone_Biles,RT @MollsRita: Come on @UHouston @UHCougars and @NCAA ! 😍 https://t.co/AiMBCdzgt8 +06/16/2018,Sports_celeb,@Simone_Biles,"if UofH (university of houston) gymnastics team got NCAA approved in the future, I’d consider coaching gymnastics after my career! 👀" +06/14/2018,Sports_celeb,@Simone_Biles,if you ever need a baby sitter in the near future hit me up @iamcardib +06/13/2018,Sports_celeb,@Simone_Biles,"Yes, I’m all good! It worked for me and no scars or anything https://t.co/TYwFdLLYz5" +06/13/2018,Sports_celeb,@Simone_Biles,laser hair removal is a lifesaver +06/13/2018,Sports_celeb,@Simone_Biles,@staceyervinjr me 😂❤️🎶 https://t.co/aQhLcjFK0a +06/13/2018,Sports_celeb,@Simone_Biles,"I’ve lost my boyfriend to fortnite. It’s fine, I’m fine" +06/12/2018,Sports_celeb,@Simone_Biles,"New clothes = new confidence. See how you can #Donate4FosterKids during @MattressFirm’s clothing drive. + +https://t.co/UUswrVQegZ" +06/12/2018,Sports_celeb,@Simone_Biles,RT @isaabel_tavarez: everytime I see my man: https://t.co/0JJoaMnSt0 +06/12/2018,Sports_celeb,@Simone_Biles,RT @lil_livkay: 5 beam routines is easier than 3 bar routines https://t.co/QYhfZ3b2h2 +06/10/2018,Sports_celeb,@Simone_Biles,talk to my boyfriend @staceyervinjr https://t.co/iudgJdVfhl +06/08/2018,Sports_celeb,@Simone_Biles,gonna start doing me more and caring less +06/07/2018,Sports_celeb,@Simone_Biles,"am I allowed to say + +that msu needs to just shut the hell up +y’all disgust me + +oops .... just did https://t.co/Osjoi6dNm2" +06/06/2018,Sports_celeb,@Simone_Biles,RT @shanAlise_: Hey please help us get an A ! @Simone_Biles 💗 https://t.co/ERRExzNFxp +06/05/2018,Sports_celeb,@Simone_Biles,kinda crazy to think that I compete next month +06/02/2018,Sports_celeb,@Simone_Biles,RT @staceyervinjr: I’ve got a theory that this is going to be legendary. 🌊 🤼‍♂️ https://t.co/mJo6D2fOJb +05/31/2018,Sports_celeb,@Simone_Biles,RT @jea_nte: @Simone_Biles has the best eye roll tho. 🙄 +05/31/2018,Sports_celeb,@Simone_Biles,I’m in disbelief that that’s actually GALVESTON in all of the pictures. Someone please confirm ... ?! True or not +05/29/2018,Sports_celeb,@Simone_Biles,I LOVE SLEEP +05/29/2018,Sports_celeb,@Simone_Biles,RT @pizzahut: 🍷+ 🍕+ 🌹= A good way to end a long weekend. +05/29/2018,Sports_celeb,@Simone_Biles,RT @staceyervinjr: Me too 😏💭 https://t.co/W3viq1E6ND +05/28/2018,Sports_celeb,@Simone_Biles,daydreaming about my future slim thick days +05/28/2018,Sports_celeb,@Simone_Biles,sunday funday ☀️ https://t.co/BDH2RjtxKa +05/26/2018,Sports_celeb,@Simone_Biles,RT @breatheevenIy: Me https://t.co/mxgjOF3MZh +05/26/2018,Sports_celeb,@Simone_Biles,"RT @nutellaANDpizza: ""Fix your attitude or leave."" +Me: https://t.co/EkaN0kkKjj" +05/26/2018,Sports_celeb,@Simone_Biles,RT @gritandddgrace: us or us?? 😂 @Simone_Biles https://t.co/LgBByMj2Zo +05/25/2018,Sports_celeb,@Simone_Biles,I’m honestly crying & I couldn’t breathe while reading these! THE TACOS RECIPE GOT ME - 😂 kids are my favorite wow!… https://t.co/xRLb1xEcSX +05/25/2018,Sports_celeb,@Simone_Biles,🖤🖤🖤🖤MISS YOU MORE https://t.co/4PlFgpzKi8 +05/23/2018,Sports_celeb,@Simone_Biles,another gym mirror selfie https://t.co/L15noVANHW +05/23/2018,Sports_celeb,@Simone_Biles,I woke up thinking it was Friday +05/22/2018,Sports_celeb,@Simone_Biles,"RT @BodyofBex: When I ask my friends to take a pic, I mean take THE pic. Take 15 photos, get on the floor, climb a tree, try flash and no f…" +05/22/2018,Sports_celeb,@Simone_Biles,RT @Colt3FIVE: I have a tendency to smile/laugh in serious moments +05/22/2018,Sports_celeb,@Simone_Biles,RT @Sal_Perez4: Bro I had to be the dumbest preschooler out there😐 https://t.co/0AGIk1tBa9 +05/22/2018,Sports_celeb,@Simone_Biles,@Lawmorgan10 us 💕 https://t.co/rxHzmMvCbK +05/22/2018,Sports_celeb,@Simone_Biles,"RT @alisonpool_: When someone has seen the worst parts of you & still decides to stay, that's when you know they’re worth keeping. Not ever…" +05/22/2018,Sports_celeb,@Simone_Biles,"VOTE @SashaFarber 💙 + +https://t.co/uFBb78Ztmr" +05/20/2018,Sports_celeb,@Simone_Biles,"physically, mentally, and emotionally drained" +05/19/2018,Sports_celeb,@Simone_Biles,big loss for usagym. you will be missed Scott ❤️ thank you for everything! showing a side of me that people don’t u… https://t.co/LFNeWPtH0f +05/19/2018,Sports_celeb,@Simone_Biles,RT @itshaleyo: This is me @Simone_Biles 😂 https://t.co/bdGaPLod3R +05/18/2018,Sports_celeb,@Simone_Biles,I need a chick flick movie night +05/18/2018,Sports_celeb,@Simone_Biles,RT @QuoteBeauties: Do you? https://t.co/IIdflC38J5 +05/17/2018,Sports_celeb,@Simone_Biles,RT @WCCentre2014: 💥THE NEWS IS OUT! 💥Registration is now OPEN! 🏆Pre-Registration forms are available on our website. Pre-Registration is re… +05/17/2018,Sports_celeb,@Simone_Biles,❤️love you babe https://t.co/tm6FGfXmox +05/17/2018,Sports_celeb,@Simone_Biles,RT @ItsFoodPorn: Chocolate Fudge Brownie Ice Cream. https://t.co/ABeb26BH3W +05/16/2018,Sports_celeb,@Simone_Biles,@gurlwithaccent @MIKOHSWIMWEAR +05/16/2018,Sports_celeb,@Simone_Biles,@kisseswdw YANNY +05/16/2018,Sports_celeb,@Simone_Biles,dog mom 🐾 https://t.co/O5lMGwp3zH +05/15/2018,Sports_celeb,@Simone_Biles,reggae music all day +05/15/2018,Sports_celeb,@Simone_Biles,RT @iatemuggles: this video is therapeutic https://t.co/SHB69kKVSn +05/14/2018,Sports_celeb,@Simone_Biles,"my eye has been twitching for days + +H E L P" +05/14/2018,Sports_celeb,@Simone_Biles,happy mother’s day momma biles🖤 https://t.co/D5JCNgsvBA +05/12/2018,Sports_celeb,@Simone_Biles,"Rise, then shine. ☀️ @MattressFirm #partner https://t.co/sDfkk401JX" +05/12/2018,Sports_celeb,@Simone_Biles,me today x13894947392 https://t.co/oQbOMqk1W3 +05/10/2018,Sports_celeb,@Simone_Biles,"RT @InsideGym: All in favor of putting Lilo on our cover, raise your hand 🙋🏼‍♀️🙋🏼‍♀️🙋🏼‍♀️ https://t.co/1JKeU2rEWZ" +05/09/2018,Sports_celeb,@Simone_Biles,"🙌🏾🙌🏾🙌🏾🔥🔥🔥 The best, I’m obsessed 🍕❤️🤪 https://t.co/CFAnp8xYpD" +05/07/2018,Sports_celeb,@Simone_Biles,G A L A ✨ https://t.co/De1rGiS5DR +05/06/2018,Sports_celeb,@Simone_Biles,every day I still choose you 💋 https://t.co/R6uto0GBPK +05/05/2018,Sports_celeb,@Simone_Biles,RT @omeezy_: when you waiting for bae to answer your facetime call https://t.co/3zWm8KwhwE +05/04/2018,Sports_celeb,@Simone_Biles,"RT @XPiel_Morena: Wow I Took My Daughter To A Photoshoot, Never Again 😭😭 https://t.co/YdS4jAlbMR" +05/03/2018,Sports_celeb,@Simone_Biles,"RT @MasAbukar: Me: Opens laptop and notebook + +My procrastination: + + https://t.co/Wou94gDBnE" +05/03/2018,Sports_celeb,@Simone_Biles,@caaitelizabeth alone 😭😭😭💔💔💔 +05/02/2018,Sports_celeb,@Simone_Biles,RT @TeamJuJu: It takes years to be an overnight success... +05/02/2018,Sports_celeb,@Simone_Biles,"RT @Adaripp: @Simone_Biles I’ve seen your boyfriend on Instagram, you’re good girl... but also, okay, let’s do it 💍" +05/01/2018,Sports_celeb,@Simone_Biles,the dancing with the stars elimination music still makes me so nervous +05/01/2018,Sports_celeb,@Simone_Biles,"VOTE FOR @SashaFarber +VOTE FOR @SashaFarber +VOTE FOR @SashaFarber +VOTE FOR @SashaFarber + +🖤🖤🖤 @DancingABC" +05/01/2018,Sports_celeb,@Simone_Biles,@bthouston11 @Adaripp ........ I KNOW....... +05/01/2018,Sports_celeb,@Simone_Biles,I WANNA MARRY @Adaripp 💛 +04/30/2018,Sports_celeb,@Simone_Biles,summer bod is here ☀️🍯💛 https://t.co/EW5h3uge8Q +04/28/2018,Sports_celeb,@Simone_Biles,@PeytonErnst THANK YOU PEYTON 💓 +04/27/2018,Sports_celeb,@Simone_Biles,RT @ashton_locklear: I need some life in my life... +04/27/2018,Sports_celeb,@Simone_Biles,"I am not to be labeled by Larry Nassars abuse. Nowhere in this video did I talk about it. Take this down. + +My sig… https://t.co/HdAiNDFjiR" +04/24/2018,Sports_celeb,@Simone_Biles,"oooohhhh lemme join 👑💕😍 +get it girls !!! https://t.co/hPJ6ZT4XBQ" +04/24/2018,Sports_celeb,@Simone_Biles,dude this is how my frenchie gets out too 🐾🤦🏾‍♀️ hahahaah! https://t.co/8CJsXHU081 +04/24/2018,Sports_celeb,@Simone_Biles,"RT @chrissyteigen: I don’t call out people I’ve had weird run-ins with because I have bad days, too. I’d be bummed if someone used one inte…" +04/23/2018,Sports_celeb,@Simone_Biles,"RT @Peter_Back: Always a pleasure, @Simone_Biles. Let @sbregman87 and I know when we can come back! https://t.co/NNIPpkINcs https://t.co/mT…" +04/23/2018,Sports_celeb,@Simone_Biles,M I N E.... smh https://t.co/wbzXcnqLoF +04/23/2018,Sports_celeb,@Simone_Biles,"RT @USAGym: .@Simone_Biles is back. + +Watch our update with the four-time Olympic champ who expects to return to competition this summer! ht…" +04/22/2018,Sports_celeb,@Simone_Biles,"they don’t need me, they’re absolutely killing it 💙 im so proud & happy for them!!! WAHOO GO UCLA BABYYYYY! https://t.co/hLDDIc5ind" +04/21/2018,Sports_celeb,@Simone_Biles,"happy pup in the pit 🐾 +(she jumped in herself) https://t.co/q33qufdOzY" +04/21/2018,Sports_celeb,@Simone_Biles,@gritandddgrace hahahaa this is so funny!!!! literally needed +04/21/2018,Sports_celeb,@Simone_Biles,so proud of my gymnastics babes @ NCAA’s 💙 +04/20/2018,Sports_celeb,@Simone_Biles,@iratre you riiiight +04/19/2018,Sports_celeb,@Simone_Biles,I almost had a mental breakdown but I had to reschedule it +04/19/2018,Sports_celeb,@Simone_Biles,RT @jamescharles: it’s so weird how our faces never change but some days we feel hideous and others we feel stunning & unstoppable +04/19/2018,Sports_celeb,@Simone_Biles,us 😂 @ashton_locklear https://t.co/PbYhJT2bPH +04/16/2018,Sports_celeb,@Simone_Biles,@loganjw23 confused... I haven’t been anywhere today. ? 🤨 +04/14/2018,Sports_celeb,@Simone_Biles,the “I hope” tweets under tristans insta photo are killllllling me 😂😂😂 +04/13/2018,Sports_celeb,@Simone_Biles,IM STOKED 😍😍😍😍🔥🔥🔥 GO @Adaripp https://t.co/09fee2qgdP +04/10/2018,Sports_celeb,@Simone_Biles,"I get it’s an ab/core event y’all! +all events require abs! +but hypothetically speaking https://t.co/k2J9Xocz72" +04/10/2018,Sports_celeb,@Simone_Biles,"@KatieDugger1989 yes yes, definitely. but all events require core and your abs so yes!!! but I mean like ^^^^ c’mon" +04/10/2018,Sports_celeb,@Simone_Biles,"for you gymnast out there +quick question 🖤 Is bars a ?" +04/09/2018,Sports_celeb,@Simone_Biles,National Unicorn Day 🦄 ft Lilo 🐾💓 https://t.co/OnU7K45qfg +04/09/2018,Sports_celeb,@Simone_Biles,"RT @HoustonChron: Five months into her return to full-time training and 19 months since her last competition at the 2016 Olympics, even Sim…" +04/08/2018,Sports_celeb,@Simone_Biles,@DearKenia_ @TheBrittDean I get that I’m a normal person that’s why I want to be treated like one... trust me I know . +04/08/2018,Sports_celeb,@Simone_Biles,everyone is always so quick to judge me +04/08/2018,Sports_celeb,@Simone_Biles,@DearKenia_ @TheBrittDean clearly you don’t understand how I feel EVERYDAY going out. my bad if I didn’t plead at y… https://t.co/7AKfAdQWfG +04/07/2018,Sports_celeb,@Simone_Biles,"RT @SamuelTeddy: Queen Biles is back! Damn I'm already excited for this year. +@Simone_Biles https://t.co/Jvh0023XZY" +04/07/2018,Sports_celeb,@Simone_Biles,"RT @Holli_Alexa: Three things that I loved in @USAG’s IG story on @Simone_Biles: + +• Her Frenchie got belly rubs while she practiced 🐶💕 + +•…" +04/07/2018,Sports_celeb,@Simone_Biles,RT @USAGym: Head over to our Instagram story (@usagym) for a look at Olympic champ @Simone_Biles’ training today! https://t.co/QoYNNORR1w +04/05/2018,Sports_celeb,@Simone_Biles,"@JulieRoyer3 it’s a bathing suit, I’m 21. Get over it." +04/05/2018,Sports_celeb,@Simone_Biles,having summer feels 🌼 https://t.co/WwMiJvpVOb +04/05/2018,Sports_celeb,@Simone_Biles,RT @saradesdinn: i'm a girlfriend and a bro all in one +04/05/2018,Sports_celeb,@Simone_Biles,RT @VanessaGrimaldi: Having one of those days!!!!!! Not sure whether to laugh or cry!!!! Ughh +04/02/2018,Sports_celeb,@Simone_Biles,Lilo & Stitch 🐾🌼💙 https://t.co/nxOVDDjrIb +04/01/2018,Sports_celeb,@Simone_Biles,happy easter 🌸💛 https://t.co/ly9n0ugGkg +03/30/2018,Sports_celeb,@Simone_Biles,obsessed with blush pink +03/29/2018,Sports_celeb,@Simone_Biles,💙 https://t.co/LS3EPplXHS +03/29/2018,Sports_celeb,@Simone_Biles,University of The People Live Q&A #AskUoPeople https://t.co/9MSpr6pXJf +03/29/2018,Sports_celeb,@Simone_Biles,"easy money, I got this 😈 https://t.co/cF6QAV6rex" +03/28/2018,Sports_celeb,@Simone_Biles,RT @auqeno: When yo makeup fire and you don’t know how to act. https://t.co/cu12tuSqpQ +03/28/2018,Sports_celeb,@Simone_Biles,Hey guys! I’m hosting a live Twitter Q&A video on Thursday with University of the People to talk about the Educatio… https://t.co/RpsfmHzD4V +03/27/2018,Sports_celeb,@Simone_Biles,"RT @saradesdinn: yellow is such a dope color, reminds me of sunshine and happiness and sunflowers and lemonade 🌼🍯💛🍋🌟🔆🐝☀️🌻🐣" +03/27/2018,Sports_celeb,@Simone_Biles,my one and only man crush https://t.co/tRRi4Uwxwu +03/26/2018,Sports_celeb,@Simone_Biles,SO HAPPY FOR YOU ❤️❤️❤️❤️❤️ GOODLUCK BABE https://t.co/uBh0BwlX1H +03/26/2018,Sports_celeb,@Simone_Biles,I HATE SPIDERS +03/26/2018,Sports_celeb,@Simone_Biles,the amount of times I’ve contemplated burning down the house bc of seeing a SPIDER is unreaaaaallllll +03/26/2018,Sports_celeb,@Simone_Biles,"aw, that’s so sweet of you. I went to Strack back in the day! 🙌🏾 +Go Cougars!! https://t.co/SRaqSIRYpm" +03/25/2018,Sports_celeb,@Simone_Biles,INBLOOM MUSIC FESTIVAL 🌸 https://t.co/dezB40hq1o +03/25/2018,Sports_celeb,@Simone_Biles,"I D E A S ! H E L P + +G O + +fun places to take photos at in houston?" +03/21/2018,Sports_celeb,@Simone_Biles,I forgot my locker combination at the gym and I’ve had & done it for 4 years.... that’s how my morning is going +03/19/2018,Sports_celeb,@Simone_Biles,RT @houstonzoo: Setting up a surprise sloth encounter as a birthday present for @Simone_Biles? You might think his shirt is made out of cot… +03/18/2018,Sports_celeb,@Simone_Biles,💗 https://t.co/FzqIyykiWg +03/17/2018,Sports_celeb,@Simone_Biles,Happy St.Patricks Day - I’m one lucky girl ☘️💚 https://t.co/R4CKG72gEK +03/17/2018,Sports_celeb,@Simone_Biles,☘️lucky to have a friend as sweet as you @caaitelizabeth https://t.co/jOMaiyfInm +03/16/2018,Sports_celeb,@Simone_Biles,Life is a party • Dress like it 🎉 https://t.co/zB3KkFEJDk +03/15/2018,Sports_celeb,@Simone_Biles,can’t wait to see what 21 brings 😈🎉 thanks for all the birthday wishes babes 💋 xoxo https://t.co/OyxGDujC8U +03/15/2018,Sports_celeb,@Simone_Biles,"happy birthday to all the +march 14th-ers 💗" +03/14/2018,Sports_celeb,@Simone_Biles,21 🎉 https://t.co/Zb2w41lwCM +03/12/2018,Sports_celeb,@Simone_Biles,my babes first rodeo experience : look how stinkin cute he is 😍🤪💗 https://t.co/wqjn0pRD4L +03/12/2018,Sports_celeb,@Simone_Biles,h o u s t o n r o d e o https://t.co/lWhhNqH3Oc +03/11/2018,Sports_celeb,@Simone_Biles,it’s 2018 why are heels still so painful +03/11/2018,Sports_celeb,@Simone_Biles,RT @SPlDEYSTYLES: the rock calling his daughter “my queen” and teaching her empowering words honestly warms my heart knowing he’s raising h… +03/10/2018,Sports_celeb,@Simone_Biles,im gonna need you to delete this tweet & your twitter 💔 https://t.co/oGUr0MNTyy +03/10/2018,Sports_celeb,@Simone_Biles,"I never have anything to tweet about anymore, I’m just here for the funny tweets and videos" +03/09/2018,Sports_celeb,@Simone_Biles,@KellyT1996 @staceyervinjr @WCCentre2014 @biles_nellie @adria_biles @biles aawwww our baby is gonna be famous 🐾🐶 +03/09/2018,Sports_celeb,@Simone_Biles,RT @KellyT1996: Stressed? We have the cure! @Simone_Biles @staceyervinjr @WCCentre2014 @biles_nellie @adria_biles @biles. https://t.co/FE8e… +03/09/2018,Sports_celeb,@Simone_Biles,RT @BleacherReport: #InternationalWomensDay💪🏾 https://t.co/rP9nt0nSDr +03/08/2018,Sports_celeb,@Simone_Biles,@caroliine69 @norah_flatley @lzhernandez02 @ashton_locklear @DennisNia I definitely never made or did Tops...... hmmmm awk +03/08/2018,Sports_celeb,@Simone_Biles,RT @beatsbydre: Share your strength and build others up. @Simone_Biles #InternationalWomensDay #PressForProgress https://t.co/NVPWmRPhTx +03/08/2018,Sports_celeb,@Simone_Biles,RT @rachm528: @Simone_Biles i cant believe you’ll be 21 in a week... where has the time gone!?😳💜 https://t.co/RoVPN778b7 +03/07/2018,Sports_celeb,@Simone_Biles,"Together with @UoPeople, we can get rid of the barriers that keep a college degree out of reach for those who truly… https://t.co/eexsJAXpsd" +03/07/2018,Sports_celeb,@Simone_Biles,"it’s national oreo day, so of course I had to go buy some 🤪🤤" +03/04/2018,Sports_celeb,@Simone_Biles,RT @khloekardashian: What happened to women fixing each other’s crowns instead of trying to knock the others crown off? +03/04/2018,Sports_celeb,@Simone_Biles,@YourFavR0Y you do realize I said yes to you asking for a photo... So I was doing the cashiers first and yall walke… https://t.co/hWhT1GEvAG +03/03/2018,Sports_celeb,@Simone_Biles,RT @WCCentre2014: How could this sweet girl not think she isn’t our gym baby! Most loved and spoiled pup around! With 2 rockstar parents to… +03/02/2018,Sports_celeb,@Simone_Biles,RT @USAGym: .@Simone_Biles has been added to the U.S. national team. https://t.co/41dZLn1Uwr +03/01/2018,Sports_celeb,@Simone_Biles,"RT @Nike: When your world stops, there's only one option. #ChooseGo #Nike https://t.co/8ggzKFsiar" +03/01/2018,Sports_celeb,@Simone_Biles,Lace up. Get out. #ChooseGo #TeamNike https://t.co/7eS301GbWt +02/27/2018,Sports_celeb,@Simone_Biles,"sorry loves, I thought my snapchat was public! 💗 it’s backkk! Don’t worry, I’ll do a little weekend recap for you guys 💋 XO" +02/25/2018,Sports_celeb,@Simone_Biles,"my man 🧡 so proud of you, can’t wait to see what the future holds 💋 https://t.co/npWvaAVJKL" +02/25/2018,Sports_celeb,@Simone_Biles,"RT @TheAdams_era: Some nights I wish I could go back in life. Not to change anything, just to feel a couple things twice." +02/24/2018,Sports_celeb,@Simone_Biles,"all fun, giggles & memories here at the first Biles Invitational ❤️ https://t.co/NK4m69MG6E" +02/23/2018,Sports_celeb,@Simone_Biles,RT @alejandraalan12: OMG this is so cute ❤️ @Simone_Biles https://t.co/Fk5TgZq1R7 +02/20/2018,Sports_celeb,@Simone_Biles,"RT @soieange: Dreaming of this wonderful floral bath at the Karsa Spa in Bali 🌺 wanting flower soaked baths, luxury facials using organic p…" +02/18/2018,Sports_celeb,@Simone_Biles,💛 just a girls night out https://t.co/CbNUk7Jwq7 +02/17/2018,Sports_celeb,@Simone_Biles,hey @Adaripp can I please borrow that top ?!!??!!! #NEEDIT +02/17/2018,Sports_celeb,@Simone_Biles,"keep your chin up @nathanwchen +I believe in you!!" +02/17/2018,Sports_celeb,@Simone_Biles,"RT @TexansCheer: @Simone_Biles Hold up! +Lilo swagged out X 1,000,000!💕" +02/16/2018,Sports_celeb,@Simone_Biles,okay I’m obsessed 🐾🐶 @TexansCheer https://t.co/u3x9SKLwf8 +02/14/2018,Sports_celeb,@Simone_Biles,"CAN’T WAIT ‼️‼️‼️‼️‼️‼️ +SEE YOU SOON https://t.co/WCs2HhYVzC" +02/13/2018,Sports_celeb,@Simone_Biles,RT @alejandraalan12: awww the cutest thing I've seen today ❤️ @Simone_Biles https://t.co/pgkhdi5Rm7 +02/12/2018,Sports_celeb,@Simone_Biles,✨ Give the gift of sweet dreams when you donate to @MattressFirm’s pajama drive. #Donate4FosterKids #partner https://t.co/xlMLy26cgb +02/12/2018,Sports_celeb,@Simone_Biles,meet Lilo 💗🐾 https://t.co/F3kCIzboXk +02/10/2018,Sports_celeb,@Simone_Biles,"aww Alicia, I’d be excited if it was you!! I remember the time I was excited to get your autograph😊 I still have it… https://t.co/FeesohAXCE" +02/09/2018,Sports_celeb,@Simone_Biles,"RT @SummerSanders_: #FlashbackFriday To last night with my fellow Olympians @Simone_Biles and @missyfranklin +Supporting our @CocaColaCo @T…" +02/09/2018,Sports_celeb,@Simone_Biles,"Who’s excited for the #WinterOlympics to begin tonight on @NBCOlympics?! + +Good Luck Nathan!!!! Can’t wait to watch… https://t.co/4JroJB3Xhi" +02/08/2018,Sports_celeb,@Simone_Biles,RT @AM2DM: Watch this 11-year-old gymnast meet her hero @Simone_Biles 😭 💕 https://t.co/iejwAfgKdB +02/05/2018,Sports_celeb,@Simone_Biles,yes 😅😅😅 the struggle https://t.co/WbgO6UOWT2 +02/04/2018,Sports_celeb,@Simone_Biles,well said girl 👏🏾 https://t.co/D6qmBf1IU9 +02/04/2018,Sports_celeb,@Simone_Biles,"I hope you all enjoyed #TheSimoneBilesStory and the Biography Special 💗 XOXO + +I love you all. +again, can’t thank a… https://t.co/seA8G9dZEk" +02/04/2018,Sports_celeb,@Simone_Biles,💗💗💗💗 lucky to have such sweet fans to cheer me up !!! https://t.co/6v88socNj5 +06/24/2018,Sports_celeb,@MichelleWKwan,Today is Olympic Day - a nostalgic time as I think about my experiences and how the Olympic values positively impac… https://t.co/6ZPAlxLBeR +06/20/2018,Sports_celeb,@MichelleWKwan,Meeting my new bestie @jvn for the first time 💕… https://t.co/32bK3qNrMp +05/15/2018,Sports_celeb,@MichelleWKwan,In celebration of #AAPI month I wanted to share my @CAPEUSA story. What’s yours? https://t.co/JNUhlirRni +05/08/2018,Sports_celeb,@MichelleWKwan,"RT @maziehirono: @FDNY As a two-time Olympic medalist and a nine-time U.S. champion, @MichelleWKwan inspired generations of girls to become…" +05/08/2018,Sports_celeb,@MichelleWKwan,RT @vivekforca: I ran 500 miles across California – Sacramento to L.A. I'm not stopping. https://t.co/e9bOL2vKBW #RunwithVivek #500Milesfor… +03/19/2018,Sports_celeb,@MichelleWKwan,RT @MohamedBinZayed: It was a pleasure welcoming our friends from Special Olympics International back. The UAE welcomes all athletes to the… +03/09/2018,Sports_celeb,@MichelleWKwan,"Shout out to the one and only michelleobama on #internationalwomensday - mom, role model,… https://t.co/OdwniYhqmD" +03/07/2018,Sports_celeb,@MichelleWKwan,I love my @specialolympics family and today I wanted to ask all of you to pledge to stop using… https://t.co/qrNsGTbiFH +02/23/2018,Sports_celeb,@MichelleWKwan,"Cheering for teamusa @usfigureskating from home!! #letsdothis @ Los Angeles, California https://t.co/CQOekPNT48" +02/22/2018,Sports_celeb,@MichelleWKwan,"With mom's love, I overcame every obstacle in my skating career. #LoveOverBias #ad https://t.co/la9435MXPo" +02/22/2018,Sports_celeb,@MichelleWKwan,"RT @eamslider24: Strong women, unite! Here with @proctergamble to spread the #LoveOverBias message with these incredible women through the…" +02/19/2018,Sports_celeb,@MichelleWKwan,"Let’s go @mirai_nagasu 😘 #havefun +https://t.co/prlDzoRCAp" +02/19/2018,Sports_celeb,@MichelleWKwan,Remember this.... adrienneelrod jmpalmieri🤣 https://t.co/NQLnXZqhgT +02/18/2018,Sports_celeb,@MichelleWKwan,An overwhelming feeling of nostalgia being at pyeongchang2018. I still remember like it was… https://t.co/ZU2BTWUcXI +02/18/2018,Sports_celeb,@MichelleWKwan,Haha. Honored I’m a tab @lulu_cheng😆 https://t.co/1NxHx7nK2t +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @TuftsUniversity: Figure skating phenom and @FletcherSchool alum @MichelleWKwan discusses gender equality at the #WinterOlympics, sports…" +02/17/2018,Sports_celeb,@MichelleWKwan,RT @icenetwork: Yuzu is weeping with joy backstage. #PyeongChang2018 #Olympics https://t.co/q7ZFLDEzQ6 +02/17/2018,Sports_celeb,@MichelleWKwan,Congrats Yuzu! #twotimeolympicchampion 😱 +02/17/2018,Sports_celeb,@MichelleWKwan,@MaiaShibutani Unreal. I never thought I’d ever see so many quads! +02/17/2018,Sports_celeb,@MichelleWKwan,That was so beautiful @Adaripp - you’re flying like a bird! 😭 +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: WE AREN’T SCREAMING, YOU ARE! 😱 +@Adaripp is on the ice NEXT on @NBCSN! https://t.co/RSyQoC5JRn" +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: ALL. THE. FEELS. 😭 What an incredible #WinterOlympics debut for @govincentzhou. 👏 + +📸: Getty Images https://t.co/p9JXfL…" +02/17/2018,Sports_celeb,@MichelleWKwan,@kristiyamaguchi @govincentzhou So emotional! Exhausted from trying to skate with every 🇺🇸skater - it doesn’t help… https://t.co/yHGOmXStYt +02/17/2018,Sports_celeb,@MichelleWKwan,Way to go Vincent Zhou! 💪🏼🙌🏻👏🏼 +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: REDEMPTION FOR @nathanwchen. 👏 + +He earns a 215.08 points for his FS - a new personal best - and 297.35 total. He's in…" +02/17/2018,Sports_celeb,@MichelleWKwan,RT @MarissaCastelli: Wow. NATHAN CHEN IS A CHAMPION. I don’t care what the result are that was incredible. 👏🏼 #Olympics2018 #NathanChen +02/17/2018,Sports_celeb,@MichelleWKwan,HOLY QUADS @nathanwchen #champ #fighter #amazing +02/16/2018,Sports_celeb,@MichelleWKwan,Wishing the Winningest Alpine Skier Of All Time @lindseyvonn - and a woman who has the most… https://t.co/ofFZgXO9sc +02/16/2018,Sports_celeb,@MichelleWKwan,I’ve been staring at the Olympic rings my whole life - never gets old 😍 pyeongchang2018… https://t.co/bcGDNdMXF4 +02/16/2018,Sports_celeb,@MichelleWKwan,Amazing! @govincentzhou makes the impossible looks so easy. @usfigureskating. #goteamusa https://t.co/mI1k6okDrU +02/16/2018,Sports_celeb,@MichelleWKwan,RT @JayAndDan: Meagan Duhamel (@mhjd_85) and Eric Radford (@Rad85E) join #JayAndDan RIGHT NOW on TSN! https://t.co/l1czIeVPhq +02/16/2018,Sports_celeb,@MichelleWKwan,RT @yawning_shoma: Shoma was talking to press so Yuzuru got on his hands and knees and CRAWLED BEHIND SHOMA TO NOT DISTURB HIM LMAO https:/… +02/16/2018,Sports_celeb,@MichelleWKwan,"RT @M1K1_ANDO: 29. Javier FERNANDEZ 🇪🇸 +チャップリンの世界観を存分に味わえたのではないでしょうか。 ジャンプも本当に素晴らしい質の高いジャンプ。 特にサルコウはやはりピカイチです。 メダルへの強い気持ちが現れた演技でした。" +02/16/2018,Sports_celeb,@MichelleWKwan,💔 +02/16/2018,Sports_celeb,@MichelleWKwan,"RT @NickMcCarvel: Nathan Chen now set to skate after that Yuzuru Hanyu BRILLIANCE. Nathan on the skate order: ""[I'll] be prepared for the P…" +02/16/2018,Sports_celeb,@MichelleWKwan,Wow Yuzu Wow 😮 +02/16/2018,Sports_celeb,@MichelleWKwan,@J_Butt Bonus points for attitude and the look on Rafael’s face😉 +02/16/2018,Sports_celeb,@MichelleWKwan,Well said. https://t.co/SqixmJyQj4 +02/15/2018,Sports_celeb,@MichelleWKwan,"RT @FletcherSchool: #FletcherAlum @MichelleWKwan (F11) is the most award-winning US figure skater ever: a 2-time #Olympic medalist, 5-time…" +02/14/2018,Sports_celeb,@MichelleWKwan,Congrats! @shaunwhite GOAT 🏅🇺🇸🏅🇺🇸 +02/14/2018,Sports_celeb,@MichelleWKwan,RT @rockerskating: OMG @MichelleWKwan feels with Day in the Life from Ryom/Kim #PyeongChang2018 +02/14/2018,Sports_celeb,@MichelleWKwan,North Korean figure skaters are on the ice! https://t.co/dkuFHXRNQT +02/14/2018,Sports_celeb,@MichelleWKwan,Sorry this boomerang had to happen... working on my @usfigureskating teamusa cheerleading… https://t.co/1iFeITDOWj +02/09/2018,Sports_celeb,@MichelleWKwan,Excited to share another Olympic Games experience with Mama Kwan and proud to be partnering with… https://t.co/gRGoHjjIkL +02/09/2018,Sports_celeb,@MichelleWKwan,RT @arthurpbs: The #WinterOlympics have officially begun! Who’s tuning in? #OpeningCeremony #MichelleKwan #ArthurGuestStars @MichelleWKwan… +02/09/2018,Sports_celeb,@MichelleWKwan,So beautiful to see my friend @bamboogrovw light the pyeongchang2018 Olympic torch 😍🔥#fbf to… https://t.co/CmZnECSh5w +02/07/2018,Sports_celeb,@MichelleWKwan,"This empowering song @kealasettle reminds me of an Olympian’s journey to the Games - ”I am brave, I am bruised I am… https://t.co/LMFwIEWXUU" +02/04/2018,Sports_celeb,@MichelleWKwan,Pre-Super Bowl volleyball fun 🏐🏈🏐🏈 https://t.co/yzdzISxKIS +02/02/2018,Sports_celeb,@MichelleWKwan,"I ❤️ @ProcterGamble “thank you, mom” #loveOverBias campaign https://t.co/LB3UrEiUgL" +01/27/2018,Sports_celeb,@MichelleWKwan,So very cool! Hope everybody’s getting excited for pyeongchang2018 thanks @people 😍 https://t.co/SW3eYQu4S9 +01/25/2018,Sports_celeb,@MichelleWKwan,Part 3 (The End). @ East West Ice Palace https://t.co/A8zBknwFB2 +01/25/2018,Sports_celeb,@MichelleWKwan,@FANderWaalNews @GraceVanderWaal Eek typo! She does have a beautiful mind too;) +01/25/2018,Sports_celeb,@MichelleWKwan,"Part 2. + +“Beautiful Mind” @gracevanderwaal +Choreographer: karenkwanoppegard😍 @ East West Ice… https://t.co/SUMh9lpmSh" +01/20/2018,Sports_celeb,@MichelleWKwan,"RT @POPSUGARFitness: Seriously, @MichelleWKwan is fire on that ice rink! https://t.co/NzMrgt6SLf" +01/17/2018,Sports_celeb,@MichelleWKwan,Best desk neighbor and one of the smartest ppl I know! Go @vivekforca https://t.co/BiLYFyMhO9 looking forward to ru… https://t.co/jmonctl5qD +01/17/2018,Sports_celeb,@MichelleWKwan,My friend & fmr colleague @vivekforca is *literally* running for CA Treasurer!https://t.co/BiLYFyMhO9 #500MilesforCA https://t.co/CYA1Pz7LLA +01/14/2018,Sports_celeb,@MichelleWKwan,Epic siblings weekend. Pretending we’re @lindseyvonn @shaunwhite @hannahteter 👊🏻🇺🇸#gopro… https://t.co/u5V5jRl9lf +01/12/2018,Sports_celeb,@MichelleWKwan,RT @NBCOlympics: .@MichelleWKwan's still got it. #WinterOlympics https://t.co/HTtUzcCWeY +01/07/2018,Sports_celeb,@MichelleWKwan,Skating family unite! #Go nathanwchen @adaripp @Grant_Hochstein @rossminer @jasonbskates @ SAP… https://t.co/ePtV2aLe9e +01/06/2018,Sports_celeb,@MichelleWKwan,@NickMcCarvel @icenetwork So fun to chat with you! You’re the best. Xo +01/06/2018,Sports_celeb,@MichelleWKwan,RT @NickMcCarvel: Super special to have @MichelleWKwan join us on the Ice Desk yesterday on @icenetwork! Legendary human in every way #USCh… +01/06/2018,Sports_celeb,@MichelleWKwan,The gang hanging out @usfigureskating #uschamps18 to cheer on the ladies! #gousa🇺🇸 @evanlysacek… https://t.co/1AkjHhvEgS +01/04/2018,Sports_celeb,@MichelleWKwan,Skating buds 🙆🏻‍♂️🙆🏻‍♀️ @evanlysacek @ East West Ice Palace https://t.co/i6DgsFNiOp +01/02/2018,Sports_celeb,@MichelleWKwan,"See no evil, hear no evil and speak no evil in 2018 🙈🙉🙊#threewisemonkeys https://t.co/YDCmqFHmQp" +12/24/2017,Sports_celeb,@MichelleWKwan,Merry merry merry everyone!🎀 https://t.co/R8zOu2Mzf7 +12/22/2017,Sports_celeb,@MichelleWKwan,Split falling leaf into the weekend #merrychristmas #skatergirl 🤸🏻‍♀️ @ East West Ice Palace https://t.co/FV5jMWUP5u +12/18/2017,Sports_celeb,@MichelleWKwan,First inside outside spiral in over 10 years 😳 edsheeran #mondaymotivation @SkatingLesson still… https://t.co/CHyyRvGBBa +12/15/2017,Sports_celeb,@MichelleWKwan,"It’s Friday fun time! #spiral #skating +🌈☁️🌈☁️🌈☁️🌈☁️🌈☁️🌈 https://t.co/ecSW5zV1iD" +12/14/2017,Sports_celeb,@MichelleWKwan,With pyeongchang2018 right around the corner I️ thought it would be fun to get back on the ice.… https://t.co/eY28d5MTdF +12/11/2017,Sports_celeb,@MichelleWKwan,So fun talking ice skating w/ @icenetwork https://t.co/ERitvtXzuh +12/07/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: .@MichelleWKwan, Bob Costas & the #DreamTeam have just received some pretty big awards from the United States Olympic Endowmen…" +12/02/2017,Sports_celeb,@MichelleWKwan,Lovely to stop by to see my former boss hillaryclinton and hang with #HIllsquad #I️ttakesavillage https://t.co/Mltmg6EoPH +11/30/2017,Sports_celeb,@MichelleWKwan,"RT @arthurpuu: LA native Michelle Kwan on the 2028 LA Olympics: “I’m very excited for it to be back, especially here in my backyard. It’s s…" +11/30/2017,Sports_celeb,@MichelleWKwan,So wonderful to hang out w/ you @catcora Hope that I️ can exchange skating lessons for cooking lessons 🙏🏼 https://t.co/9BnUTyhD3S +11/27/2017,Sports_celeb,@MichelleWKwan,So excited to read @jwelter47 book. #Rockstar #girlpower 🙌🏻 https://t.co/yIfpbzJ3Sg +11/26/2017,Sports_celeb,@MichelleWKwan,Sunday funday with the fam bam. I️ asked my niece oliviaoppegard if she wanted to “walk” the… https://t.co/CHQO91ldth +11/25/2017,Sports_celeb,@MichelleWKwan,RT @SkateGuardBlog: A little trivia... the record for the most #SkateAmerica titles belongs to @MichelleWKwan (7). She won her first in 199… +11/25/2017,Sports_celeb,@MichelleWKwan,RT @UN_Women: You wont believe these facts! Watch until the end. https://t.co/msPVglSFLh #16days #orangetheworld +11/14/2017,Sports_celeb,@MichelleWKwan,RT @Want_PC: .@michellewkwan on why we need the Olympics now more than ever: https://t.co/NTAG5QzaO4 https://t.co/dqmHD1957l +11/14/2017,Sports_celeb,@MichelleWKwan,RT @TimShriver: Great to be with @SpecialOlympics International Board member @MichelleWKwan to meet the athletes and parents taking part in… +11/14/2017,Sports_celeb,@MichelleWKwan,Wonderful to bring my mom to the @specialolympics East Asia Unity Fundraising Gala in Hong Kong.… https://t.co/zryA90bf5V +11/08/2017,Sports_celeb,@MichelleWKwan,@jmpalmieri Don’t forget the pantsuit too! https://t.co/bHptBIUA5G +11/07/2017,Sports_celeb,@MichelleWKwan,Win a pair of skates signed by @VeraWangGang and me — and also support @FSinHarlem! https://t.co/xRLq1cNk6W #FSHwinskates +11/06/2017,Sports_celeb,@MichelleWKwan,"Wonderful to join Her Excellency @NouraAlKaabi & #MariaTeixidorJufresa on the panel, “Leadership… https://t.co/f5fKQctLEK" +11/05/2017,Sports_celeb,@MichelleWKwan,"After 17 hour flight + 8 hours at Heathrow, very little sleep, and a few meetings I’m finally… https://t.co/ykQ0w4WICE" +11/03/2017,Sports_celeb,@MichelleWKwan,"Always fun catching up with this champ @evanlysacek @ Beverly Hills, California https://t.co/8TmuC0OcBE" +11/02/2017,Sports_celeb,@MichelleWKwan,I couldn’t hold back the tears watching the new @ProcterGamble #PyeongChang2018 video. So powerful! Check out… https://t.co/dP2j2pS4ph +11/01/2017,Sports_celeb,@MichelleWKwan,"RT @wmag: .@MichelleWKwan discusses getting back on the ice, working with @VeraWangGang, and #ITonya: https://t.co/SZA3ynGkxK" +11/01/2017,Sports_celeb,@MichelleWKwan,It’s 100 days out from#pyeongchang2018 and I’m thrilled to be a part of @proctergamble… https://t.co/GlVdLKy78E +11/01/2017,Sports_celeb,@MichelleWKwan,RT @olyphil: Got to catch up with two of my favorite people while breaking bread in LA: @MichelleWKwan and @janetevans https://t.co/d21NFdA… +11/01/2017,Sports_celeb,@MichelleWKwan,RT @ICSW_AD: 6 days to go🙌! Which speaker are you most excited to see at the conference? Let us know in the replies https://t.co/2LnqigeYO9 +11/01/2017,Sports_celeb,@MichelleWKwan,@christina_gregg Great chatting with you! +10/20/2017,Sports_celeb,@MichelleWKwan,Catch me live on @newyorklivetv at 11:30 & @TheHubToday at 12:30 chatting with @sara_gore & @jacquereid about @WomensSportsFdn +10/18/2017,Sports_celeb,@MichelleWKwan,Thanks @MorganStanley for hosting #WSFALC17 @WomensSportsFdn Great to chat w/ athletes transitioning from sports to… https://t.co/9bX2JgBlKE +10/18/2017,Sports_celeb,@MichelleWKwan,For the first time ever you can #Livestream the @WomensSportsFdn #WSFAnnualSalute! Register for… https://t.co/k9VVyuyaG5 +10/18/2017,Sports_celeb,@MichelleWKwan,RT @ExcelleSports: Your fav female athletes will be there + so will we! Join us on 10.18 on FB as we go live - and take your questions - fr… +10/15/2017,Sports_celeb,@MichelleWKwan,"When at first you don't succeed, try again 🙄 + +1st attempt: Fail +2nd attempt: Success… https://t.co/8aZ0QL41E7" +10/06/2017,Sports_celeb,@MichelleWKwan,Congrats @DebraMessing for receiving a star on the Hollywood Walk of Fame! 😘 Love ya! https://t.co/bqjrTVzLSt +10/05/2017,Sports_celeb,@MichelleWKwan,Blades and body are still rusty from not jumping for 7 years but after 4 days of skating I'm… https://t.co/jK5UfIHKgK +10/01/2017,Sports_celeb,@MichelleWKwan,@mskristinawong Nope. Wonder who my doppelgänger is 😜 +09/20/2017,Sports_celeb,@MichelleWKwan,Just taking my zamboni for a spin around the block. @ East West Ice Palace https://t.co/3M4DjAggcQ +09/04/2017,Sports_celeb,@MichelleWKwan,Happy Labor Day 😘 @ Hanalei Bay https://t.co/sp8RcKCW21 +08/25/2017,Sports_celeb,@MichelleWKwan,RT @kobebryant: .@allysonfelix I challenge you to coach the sprinters for the upcoming Special Olympics #MambaMentality https://t.co/aaL6ei… +08/24/2017,Sports_celeb,@MichelleWKwan,Reconnecting with old friends ❤️#willandgrace nbcwillandgrace @ Universal Studios Hollywood https://t.co/FptODAXD4E +08/21/2017,Sports_celeb,@MichelleWKwan,"Feeling like complete totality 🌚 @ Westwood, Los Angeles https://t.co/YWbX9L3Pu3" +08/17/2017,Sports_celeb,@MichelleWKwan,@ItsKenton So nice meeting you!! ❤️ @PMJofficial #45mins😜 +08/09/2017,Sports_celeb,@MichelleWKwan,"RT @KPMGInspire: Resiliency is a must-have and it differs by situation. In figure skating, it means grace after mistakes, says @MichelleWK…" +07/19/2017,Sports_celeb,@MichelleWKwan,RT @SpecialOlympics: RT if you will honor the legacy of Eunice Kennedy Shriver this #EKSDay by taking our #ChooseToInclude pledge➡https://t… +07/16/2017,Sports_celeb,@MichelleWKwan,Go @PaulaAbdul go!!! We ❤️ you! @musical_wheels https://t.co/dVZWvxZMUK +07/16/2017,Sports_celeb,@MichelleWKwan,In absolute awe of @rogerfederer🏆 #Wimbledon #superstar #athlete +07/13/2017,Sports_celeb,@MichelleWKwan,"#JICYMI: @SpecialOlympics @TimShriver accepting the @ESPYS #ArthurAsheAward #MichelleObama +#ChooseToInclude https://t.co/fva6WvKnnA" +07/08/2017,Sports_celeb,@MichelleWKwan,"Thank you for all the amazing birthday wishes. #grateful #feelingloved + +I'm told I'm aging like… https://t.co/xESjdgqVJ7" +07/07/2017,Sports_celeb,@MichelleWKwan,RT @SpecialOlympics: Wishing a very Happy Birthday today to Global Ambassador & Board of Directors member @MichelleWKwan! We hope you have… +07/07/2017,Sports_celeb,@MichelleWKwan,@TheBoysWhoScore - awww. You guys are so sweet 😘 +07/07/2017,Sports_celeb,@MichelleWKwan,"RT @olyphil: Happy 37th, @MichelleWKwan My valedictories when she made her retirement official & when she withdrew from 06 Oly https://t.co…" +07/07/2017,Sports_celeb,@MichelleWKwan,RT @kwanette: The legendary Jim McKay on the legendary @MichelleWKwan https://t.co/L1AwAd6Esi +06/27/2017,Sports_celeb,@MichelleWKwan,"RT @ChantelMcCabeGC: I had done multiple book reports on @MichelleWKwan ...then today we're like ""who can't land a triple toe-triple toe co…" +06/27/2017,Sports_celeb,@MichelleWKwan,RT @KPMGUS_News: PHOTO DESK: @MichelleWKwan & @TheChristinaKim are all smiles after their round @KPMGWomensPGA #ProAm. Interview: https://t… +06/27/2017,Sports_celeb,@MichelleWKwan,RT @KPMGInspire: Michelle squared selfie 🤳🏼#InspireGreatness #KPMGWomensPGA https://t.co/BrgvBWKWcJ +06/27/2017,Sports_celeb,@MichelleWKwan,What fun it was to play in the Pro-Am kpmgwomenspga #workinprogress @ KPMG Women's PGA Championship https://t.co/Pw2zK7IOQQ +06/26/2017,Sports_celeb,@MichelleWKwan,RT @musical_wheels: Celebrating my amazing friend @MichelleWKwan as she is inducted into the #californiasportshalloffame. I am so proud of… +06/26/2017,Sports_celeb,@MichelleWKwan,RT @LizHabib: Congratulations to @MichelleWKwan 2017 California Sports Hall of Fame Inductee https://t.co/lsmVYJT8iI +06/26/2017,Sports_celeb,@MichelleWKwan,Honored to be inducted into the California Sports Hall of Fame ❤️ https://t.co/siFKmfCxS1 +06/25/2017,Sports_celeb,@MichelleWKwan,"RT @CALSPORTSHOF: 2017 California Sports Hall of Fame Inductees announced: Leigh Steinberg, James Lofton, Michelle Kwan, Byron Scott and Jo…" +06/24/2017,Sports_celeb,@MichelleWKwan,Excited to celebrate #OlympicDay with @LA2024 to help young athletes fall in ❤️with Olympic and Paralympic sports! #FollowTheSun +06/24/2017,Sports_celeb,@MichelleWKwan,.@MrDrewScott - so ready! Just picked up my golf clubs after not playing for 3 years 😝#gotthis +06/18/2017,Sports_celeb,@MichelleWKwan,Appreciative every day for having the best father anybody could wish for! Hope everybody has an… https://t.co/8NpoM9KPsL +06/18/2017,Sports_celeb,@MichelleWKwan,"RT @MichelleObama: Happy #FathersDay @BarackObama. Our daughters may be older and taller now, but they’ll always be your little girls. We l…" +06/16/2017,Sports_celeb,@MichelleWKwan,"RT @PhilipRucker: I just asked VP Pence about hiring a private lawyer and he said: ""It's very routine. Very routine.""" +06/16/2017,Sports_celeb,@MichelleWKwan,RT @edunkel: Girls Just Kwan to have fun #AthleteSongs @midnight @MichelleWKwan https://t.co/tWZGoMaoNv +06/11/2017,Sports_celeb,@MichelleWKwan,.@adrienneelrod @jmpalmieri - so bummed to have missed this! +06/06/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: Set an ⏰! @ApoloOhno & @MichelleWKwan are sharing the differences between @USFigureSkating & @USSpeedskating! + +9:30a https://t…" +06/06/2017,Sports_celeb,@MichelleWKwan,"We are a little excited for pyeongchang2018 @apoloohno teamusa +🇺🇸🇺🇸🇺🇸 @ United States Olympic… https://t.co/5zi54VD4Rz" +06/03/2017,Sports_celeb,@MichelleWKwan,.@MarissaAstor @ChloeGMoretz - good times!!! xoxoxo +05/29/2017,Sports_celeb,@MichelleWKwan,RT @Sport360: 2-time Olympic medalist @MichelleWKwan & Emirati Olympic hopeful Zahra Lari spent some time skating at @ZayedSportsCity. Must… +05/27/2017,Sports_celeb,@MichelleWKwan,So honored to meet His Highness Sheikh Mohammed bin Zayed - a champion of @SpecialOlympics… https://t.co/upZo0vv1s7 +05/21/2017,Sports_celeb,@MichelleWKwan,"RT @smithcollege: .@michellewkwan: The men and women I most admire, one quality they share is a willingness to work & sacrifice for great a…" +05/21/2017,Sports_celeb,@MichelleWKwan,With incredible company receiving an honorary doctorate degree @smithcollege @Oprah 😳 #Classof2017 https://t.co/IcnIo0EQ2l +05/21/2017,Sports_celeb,@MichelleWKwan,RT @Farah_Pandith: Great 2 see fellow @FletcherSchool grad + @StateDept pal on @smithcollege campus! Congrats @MichelleWKwan! Enjoy my alm… +05/20/2017,Sports_celeb,@MichelleWKwan,"RT @ATomorrow: .@KPMG announces third annual Women's Leadership Summit, ft. @CondoleezzaRice, @MichelleWKwan, and many more: https://t.co/x…" +05/19/2017,Sports_celeb,@MichelleWKwan,"RT @girlscouts: For #APAHM we're saluting G.I.R.L.s (Go-getter, Innovator, Risk-taker, Leader)™ we admire, including @MichelleWKwan! https:…" +05/16/2017,Sports_celeb,@MichelleWKwan,RT @LPGA: .@MichelleWKwan is all smiles after the announcement that she'll be an Olympian Panelist @ the KPMG Women's Leadership Summit @KP… +05/16/2017,Sports_celeb,@MichelleWKwan,"RT @KPMGInspire: .@KPMG_US is honored to have @MichelleWKwan, @AngelaRuggiero & @lindseyvonn at the 2017 KPMG Women's Leadership Summit! #I…" +04/23/2017,Sports_celeb,@MichelleWKwan,RT @danielleleah1: Yeah absolutely no fun had on the Hillary campaign (cc: @MichelleWKwan) https://t.co/hkqFz68ryd +03/29/2017,Sports_celeb,@MichelleWKwan,"Nice to talk about sports, empowering women and the @WomensSportsFdn w/ @MorganStanley during #WomensHistoryMonth https://t.co/4RQGuEchoI" +03/21/2017,Sports_celeb,@MichelleWKwan,"RT @M1K1_ANDO: With Queens❄️⛸❄️ +#austria2017 #specialolympics #specialolympics2017 #スペシャルオリンピックス #スペシャルオリンピックス冬季世界大会 https://t.co/ogwjf…" +03/20/2017,Sports_celeb,@MichelleWKwan,Thanks for letting me share my ❤️for @SpecialOlympics @adamslily @KNegandhiESPN @espn #austria2017 https://t.co/86EKXvlAcn +03/20/2017,Sports_celeb,@MichelleWKwan,.@SpecialOlympics having a splash at the World Games!! +03/20/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: Brrr! We were #freezinforareason at yesterday's Unified Polar Plunge, the Schladming Splash, at #austria2017 ➡ https:/…" +03/19/2017,Sports_celeb,@MichelleWKwan,.@M1K1_ANDO you're a champion both on and off the ice. Thanks for being an incredible ambassador for @SpecialOlympics +03/19/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: We see those dance moves @MichelleWKwan @hannahteter @devarona64 Bill Alford, Dr. Dykens, @drewpbaldwin #freezinforare…" +03/18/2017,Sports_celeb,@MichelleWKwan,"RT @mkfanpg: Yesterday on GMA, @Robinroberts said she ran into @MichelleWKwan in Austria & showed this picture ❤️ https://t.co/A3j9btyXgH" +03/18/2017,Sports_celeb,@MichelleWKwan,RT @specialolyUSA: Wow! @michellewkwan wished stopped by for a photo with the figure skaters! #Cheer4USA https://t.co/hGG4pz9q94 +03/18/2017,Sports_celeb,@MichelleWKwan,RT @NwkBoysChorus: #FBF to when the Newark Boys Chorus School performed for @CoryBooker https://t.co/X5O2cRuymJ #chorus #music #choir #Th… +03/18/2017,Sports_celeb,@MichelleWKwan,RT @M1K1_ANDO: Special Olympics 2017!!! 🇦🇹❄️ https://t.co/7z4jLGHriZ +03/18/2017,Sports_celeb,@MichelleWKwan,Cheering on @SpecialOlympics snowshoeing athletes and getting a few tips too! #austria2017 https://t.co/3At556Krkf +03/17/2017,Sports_celeb,@MichelleWKwan,RT @HillaryClinton: Things I learned today. https://t.co/lM2xAjIg3H +03/15/2017,Sports_celeb,@MichelleWKwan,Hundreds of incredible @SpecialOlympics athletes are heading to @2017Austria! Watch them LIVE on @espn &… https://t.co/hy7Wj7stLw +03/11/2017,Sports_celeb,@MichelleWKwan,Thankful for this awesome yogi 🙏🏼 https://t.co/sNqwD2IDuO +03/10/2017,Sports_celeb,@MichelleWKwan,RT @DougWilsonABC: https://t.co/G83r1ij9Sb +03/09/2017,Sports_celeb,@MichelleWKwan,RT @TimmyDavidNYC: Happy #InternationalWomensDay @MichelleWKwan #MichelleKwan https://t.co/h0RvO0Jgcm +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @ForbesLife: Michelle Kwan on her storied skating career, The Simpsons and International Women's Day. https://t.co/Nyck3ylYrG https://t.…" +03/08/2017,Sports_celeb,@MichelleWKwan,@LanceWeldy @bowtiebolden @BrianBoitano. Nice work! HBD Lance! +03/08/2017,Sports_celeb,@MichelleWKwan,RT @neeratanden: If you respected women you wouldn't brag about assaulting them. I'm celebrating IWD by protesting you at the WH at noon ht… +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: We only have time for #inclusion. Founded, led & driven by women. #InternationalWomensDay https://t.co/568VS15uO3" +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: ""..figure skaters fall all the time. It's the way you pick yourself back up and keep going."" -@MichelleWKwan #GetUp +h…" +03/08/2017,Sports_celeb,@MichelleWKwan,RT @MichaelaRP_13: @MichelleWKwan I did you for my wax museum. Although I didn't live up to your standards it was an honor impersonating yo… +03/04/2017,Sports_celeb,@MichelleWKwan,RT @brhodes: No President can order a wiretap. Those restrictions were put in place to protect citizens from people like you. https://t.co/… +03/02/2017,Sports_celeb,@MichelleWKwan,RT @BarackObama: Humbled to be recognized by a family with a legacy of service. Who's your #ProfileInCourage? Tell me about them: https://t… +03/02/2017,Sports_celeb,@MichelleWKwan,RT @MarkHalperin: NBC News: AG Sessions: 'I Will Recuse Myself' If Necessary https://t.co/X9E1DtbLSS +03/02/2017,Sports_celeb,@MichelleWKwan,RT @joshuaradin: Who's coming? Tag someone who you'd like to bring! https://t.co/RfMFxNN3WM +03/01/2017,Sports_celeb,@MichelleWKwan,Hi @MsMason2nd class! Thank you so much for all your Q's. I started skating at 5 yrs old. I practiced a few times a day/ 7 days a week! 💁🏻 +03/01/2017,Sports_celeb,@MichelleWKwan,Language affects attitude. Attitudes impact action. Make your pledge to choose respectful people first language https://t.co/5s8lmdA7Hq +02/28/2017,Sports_celeb,@MichelleWKwan,"RT @JesseLehrich: this would have serious consequences. + +also, that's $2B – doesn't exactly offset a $54B increase in defense spending htt…" +02/28/2017,Sports_celeb,@MichelleWKwan,"Admirals & generals push back on cutting @StateDept funding - it's ""critical to keeping America safe"" @stavridisj https://t.co/dM9ovuatOU" +02/25/2017,Sports_celeb,@MichelleWKwan,@JSB_TV @LauraOkmin @JayOnrait @fs1otoole @rsuter20 -- good times! #PyeongChang2018? Just saying...💁🏻 +02/23/2017,Sports_celeb,@MichelleWKwan,RT @smithcollege: Olympic medalist and world & U.S. champion figure skater @MichelleWKwan will receive a @SmithCollege honorary degree #Com… +02/22/2017,Sports_celeb,@MichelleWKwan,RT @TimmyDavidNYC: When you just finished work on Wednesdays #HumpDay | @MichelleWKwan #MichelleKwan https://t.co/0ktikQrSx7 +02/20/2017,Sports_celeb,@MichelleWKwan,"RT @ChadHGriffin: This Presidents' Day it's worth remembering the traits of our greatest presidents: Empathy, integrity, humility, honesty,…" +02/20/2017,Sports_celeb,@MichelleWKwan,RT @runforsomething: How to get more women to run for office: https://t.co/7MhamJP2ML +02/20/2017,Sports_celeb,@MichelleWKwan,Happy President's Day @GeorgeTakei 😐 +02/19/2017,Sports_celeb,@MichelleWKwan,"RT @MrsNguyenEbadi: Famous person speeches happened today. ""Guest speakers"" incl Sonia Sotomayor, Honest Abe, and @MichelleWKwan #usdlearns…" +02/19/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: 15 years ago, Flowers​ & Bakken made history! Vonetta Flowers was the first black person to win gold in the #WinterGames! +#Bla…" +02/16/2017,Sports_celeb,@MichelleWKwan,Go @ConstanceWu 👏🏻💃🏻🙋🏻 https://t.co/dxGhm6veRG +02/15/2017,Sports_celeb,@MichelleWKwan,@elinatuomiart @Zendaya @nlyonne @UncleRUSH @missmayim @womensmarch 🙋🏿🙋🏽🙋🏼🙋🏻 +02/15/2017,Sports_celeb,@MichelleWKwan,RT @susan_pola: Since #4ContsFigure begins day #TBT to a special moment - 2001 #GoodwillGames - when @MichelleWKwan skated #BrisbaneIce #… +02/15/2017,Sports_celeb,@MichelleWKwan,RT @shijiuru: AG Sessions: Would you argue that your four Asian-American grandchildren are any less American than your other six? https://… +02/14/2017,Sports_celeb,@MichelleWKwan,"RT @MickyWhiteNV: Planned Parenthood Just Got $1 Million From Billionaire Elaine Wynn. THANK YOU. THANK YOU. THANK YOU!!!! +https://t.co/rf3…" +02/14/2017,Sports_celeb,@MichelleWKwan,"Give love, be love & receive love. https://t.co/yFRHOJlOD0" +02/10/2017,Sports_celeb,@MichelleWKwan,"RT @MuhtarKent: Pleasure having Olympic legend @MichelleWKwan join us in celebrating ""one year out"" from the PyeongChang 2018 Olympic Winte…" +02/09/2017,Sports_celeb,@MichelleWKwan,It's one year out from the Winter @olympics in #pyeongchang2018 - who's excited to cheer on… https://t.co/rL9YMh6kdP +02/05/2017,Sports_celeb,@MichelleWKwan,Pre-Super Bowl fun 💥❄️💥 https://t.co/Leej0cvJiS +02/02/2017,Sports_celeb,@MichelleWKwan,Great to stop by la2024 HQ. I would ❤️️ to see the #cityofangels host the 2024 Olympics! 🙆🏻 @… https://t.co/5RdWYQJNQ1 +02/02/2017,Sports_celeb,@MichelleWKwan,"RT @LA2024: Work hard, be yourself & have fun! + +Thanks to Olympic legend @MichelleWKwan for visiting the #LA2024 office & sharing her #Wedn…" +02/01/2017,Sports_celeb,@MichelleWKwan,"We all fall, it’s how we get up that matters. Join us for National #GetUpDay February 1 and share your Get Up story… https://t.co/ZKPlxhzfG3" +02/01/2017,Sports_celeb,@MichelleWKwan,"RT @SkatingLesson: The amazing @michellewkwan in her @mkblades + +#figureskating #iceskating #lesmiserables #lesmis… https://t.co/Pb13xBqYHC" +01/31/2017,Sports_celeb,@MichelleWKwan,"Friends unite - epic 4 hour lunch 🍴#dinnertime +jeffskoll @musical_wheels @AmySmart26… https://t.co/ecAcCgSL7q" +01/31/2017,Sports_celeb,@MichelleWKwan,"RT @allinoleary: ""I was cleaning out my house & I know you love @MichelleWKwan"" I've trained my colleagues so well! #hmmsma #15years https:…" +01/29/2017,Sports_celeb,@MichelleWKwan,RT @HillaryClinton: I stand with the people gathered across the country tonight defending our values & our Constitution. This is not who we… +01/26/2017,Sports_celeb,@MichelleWKwan,RT @hellogiggles: Your fave figure skater from childhood @MichelleWKwan is a gorgeous yogi goddess now https://t.co/Mhnrgv0KXI https://t.co… +06/01/2018,Sports_celeb,@WayneGretzky,"RT @NHL: The one and only, @WayneGretzky, sits down with Jon Hamm in the latest episode of The Great One on One. + +Watch it here ➡️ https://…" +06/01/2018,Sports_celeb,@WayneGretzky,"RT @NHL: ICYMI: @WayneGretzky's new show, ""The Great One on One,"" debuted yesterday. Give it a watch: https://t.co/HY6s24yQAB https://t.co/…" +05/28/2018,Sports_celeb,@WayneGretzky,"RT @NHL: Taking a team photo on the ice after winning the #StanleyCup has become an annual tradition. + +Like many things hockey, it all star…" +04/08/2018,Sports_celeb,@WayneGretzky,Janet and I have struggled all day with the horrific accident in Saskatchewan. We are so sad for the… https://t.co/4pNp8e6ZbB +03/24/2018,Sports_celeb,@WayneGretzky,It's @CTJumpstart night at the @EdmontonOilers game. Join Jumpstart's #PlayFindsAWay movement & help kids of all ab… https://t.co/dvyDSLKU1E +03/01/2018,Sports_celeb,@WayneGretzky,Check out our new #TeamBioSteel spot and see what @BioSteelSports is to me! https://t.co/drV0SJsdVy +02/28/2018,Sports_celeb,@WayneGretzky,"What's @BioSteelSports to me? Stay tuned for the launch of our new #TeamBioSteel ""What's BioSteel To Me?"" spot! https://t.co/ejKxtdiuTc" +02/22/2018,Sports_celeb,@WayneGretzky,We all play for something greater than ourselves... #WeAllPlayForCanada! 🇨🇦@CanadianTire https://t.co/G38YH0v3HV +02/18/2018,Sports_celeb,@WayneGretzky,"Canadians play for WE, not for ME. It’s what makes me proud to be a part of this country. Good luck @TeamCanada #WeAllPlayForCanada" +02/09/2018,Sports_celeb,@WayneGretzky,I’ve been there before. The pressure can be immense. But the entire country is behind @TeamCanada. And so am I.… https://t.co/6omjKajKrj +01/31/2018,Sports_celeb,@WayneGretzky,Can’t wait to see this light up in all its 24 karat gold-plated glory. Check out these @budcanada limited edition W… https://t.co/VIzznnofx0 +01/19/2018,Sports_celeb,@WayneGretzky,"Had a great time alongside Paul Henderson, @Tessab25, @DaleHawerchuk10, @GHeaney91 and more hockey greats.… https://t.co/cvXTnBa9zz" +12/13/2017,Sports_celeb,@WayneGretzky,Ty's 2018 @GretzkySchool dates! https://t.co/ePCOJ2NTpV https://t.co/QJBm33uz4I +12/13/2017,Sports_celeb,@WayneGretzky,Really enjoying these Champion Shave Razors right now. My blades of choice @championshave #championshave #ad https://t.co/PkM20KtMkA +11/24/2017,Sports_celeb,@WayneGretzky,BioSteel is a standard in our home. https://t.co/XWVsCfpAHw #TeamBioSteel https://t.co/HU91dRJnNh +11/20/2017,Sports_celeb,@WayneGretzky,"RT @georgiaexo: A slice of @WayneGretzky toast a day, will hopefully lead to an NHL star one day. Thanks to @CanadianTire and @CTJumpstart…" +11/20/2017,Sports_celeb,@WayneGretzky,"The Great Toaster, it's probably the greatest toaster of all time. Order today and support @CanadianTire's… https://t.co/eSyG1bEozX" +11/16/2017,Sports_celeb,@WayneGretzky,Make breakfast legendary with The Great Toaster. #GiveAToast @CanadianTire https://t.co/KlljsVn6Rg https://t.co/YItKjKuNAS +11/13/2017,Sports_celeb,@WayneGretzky,Lookout for a legendary addition to breakfast coming soon from @CanadianTire in support of @CTJumpstart. #GiveAToast https://t.co/YqymoCZXlu +10/11/2017,Sports_celeb,@WayneGretzky,Great to see the kids having so much fun at Ty's hockey school this past summer! https://t.co/OS3gOUcFVi +10/04/2017,Sports_celeb,@WayneGretzky,Proud to be the Honorary Chair of the University Hosptial’s Brain Centre Campaign. #UHFBrainCentre https://t.co/HzkgGigVap +09/20/2017,Sports_celeb,@WayneGretzky,Really enjoyed celebrating the launch of @CTJumpstart's #PlayFindsAWay. Every kid should have the chance to play! https://t.co/LqKLx6KZ4R +07/01/2017,Sports_celeb,@WayneGretzky,Happy Canada Day! What a remarkable 150 year history our country has built! #Canada150 🇨🇦 +06/28/2017,Sports_celeb,@WayneGretzky,RT @CanadianTire: You’ve never shone brighter. Happy 150th Canada. #RedAndWhite https://t.co/YmoUpRw3Qu +06/09/2017,Sports_celeb,@WayneGretzky,RT @GretzkyWhisky: A wonderful Grand Opening at the Wayne Gretzky Estates Winery and Distillery in Niagara-on-the-Lake. https://t.co/3xdBiD… +06/09/2017,Sports_celeb,@WayneGretzky,Very proud and excited on the grand opening of the Wayne Gretzky Estates Winery and Distillery in Niagara-on-the-La… https://t.co/L4doSKHsNR +06/06/2017,Sports_celeb,@WayneGretzky,Great time at #StanleyCupFinals in Nashville with @bigandrich and @ChrisYoungMusic. Thanks @NHL https://t.co/mrMyPVTdoM +06/06/2017,Sports_celeb,@WayneGretzky,RT @carrieunderwood: And then this happened... #Smashville @OfficialGretzky https://t.co/uNuCsEBMtO +06/01/2017,Sports_celeb,@WayneGretzky,I support @CanadianTire #JumpstartMonth because every kid deserves a chance to play sports. https://t.co/4zvhOyuwnH +05/23/2017,Sports_celeb,@WayneGretzky,Want to spend your summer at one of the family hockey schools? Sign up today! https://t.co/ePCOJ2NTpV… https://t.co/Pvmo8d8TX7 +03/29/2017,Sports_celeb,@WayneGretzky,YOU'RE NOT ALONE! #DrinkThePink @cmcdavid97 @22wiggins @BrookeHenderson @tseguinofficial @denis_shapo… https://t.co/AuAvZ030Z6 +03/14/2017,Sports_celeb,@WayneGretzky,Proudly supporting #JumpstartNight at the @EdmontonOilers game as a @CTJumpstart ambassador because every kid deser… https://t.co/Dlxc2jxoVX +01/28/2017,Sports_celeb,@WayneGretzky,"RT @NHL: ""The three of us would have been pretty good at 3-on-3"". -@OfficialGretzky https://t.co/6hSQJouOPg" +12/14/2016,Sports_celeb,@WayneGretzky,"RT @EdmontonOilers: RIP to one of the great ones, Alan Thicke. https://t.co/LvlU13s23h" +12/14/2016,Sports_celeb,@WayneGretzky,"Janet & I are deeply saddened to hear of Alan's passing. He was a wonderful man,father,husband and friend.He will be missed by all. RIP Alan" +11/28/2016,Sports_celeb,@WayneGretzky,"RT @PlayersTribune: When did Wayne Gretzky know he'd make it to the NHL? + +It began at the @HC_WJC. #TPTStudioB https://t.co/tCkvZf4gfr" +11/18/2016,Sports_celeb,@WayneGretzky,"I got to present this custom-wrapped #HondaRidgeline for +@Honda. It’s going to the MVP of the #NHLAllStarGame. https://t.co/iUMUcqwpSK" +10/17/2016,Sports_celeb,@WayneGretzky,"Excited to announce the launch of my new book, 99: Stories of the Game! #99storiesofthegame #nhl https://t.co/HTUfkjgaZE" +10/13/2016,Sports_celeb,@WayneGretzky,"RT @EdmontonOilers: ""I'm proud to be back as an Oiler & hope to be part of another Stanley Cup."" Wayne Gretzky on joining #Oilers Entertain…" +10/12/2016,Sports_celeb,@WayneGretzky,Great to officially open my new Wine & Whisky Bar today at Edmonton Airport! https://t.co/yZDAtVQCSr +09/28/2016,Sports_celeb,@WayneGretzky,Thrilled to announce the NHL Centennial here in Toronto! #NHL100 https://t.co/5LeUpmxTu3 +09/27/2016,Sports_celeb,@WayneGretzky,Toronto! I have #WCH2016 tickets I want to personally hand to you. Follow @CanadianTire & #WheresWayne for details. https://t.co/afuEEAc4pe +09/26/2016,Sports_celeb,@WayneGretzky,Found this... Arnie was a special man https://t.co/97LDHR6MfJ +09/26/2016,Sports_celeb,@WayneGretzky,"We lost a great man yesterday. Remembering my friend and one of sports greatest ambassadors. Rest easy, Mr. Palmer. https://t.co/cKV9ABHAiQ" +09/23/2016,Sports_celeb,@WayneGretzky,Toronto! Follow @CanadianTire & #WheresWayne for the chance to meet me Sept 27 and celebrate the #WCH2016 finals! https://t.co/ebmsxaK6nb +08/12/2016,Sports_celeb,@WayneGretzky,RT @CBCOlympics: Sixteen year old @OleksiakPenny is our #StepUpStandTall moment of the day. https://t.co/SnxQaYiZyC @canadiantire https://t… +08/08/2016,Sports_celeb,@WayneGretzky,RT @CBCOlympics: Referees give Navia a 2nd chance in our #StepUpStandTall moment of the day. @CanadianTire https://t.co/PEYMIQovar https://… +08/08/2016,Sports_celeb,@WayneGretzky,RT the #StepUpStandTall Moment of the Day on @CBCOlympics and @CanadianTire will donate $1 to future Olympic stars! https://t.co/g4flTf5V71 +07/01/2016,Sports_celeb,@WayneGretzky,Happy #CanadaDay !! 🇨🇦 +07/01/2016,Sports_celeb,@WayneGretzky,Had a great time in Sydney. Thanks to the @SydneySwans for a crash course in Ausie Rules Football! #ilovesydney https://t.co/hSEmYMu7eW +06/24/2016,Sports_celeb,@WayneGretzky,"Sydney, will I see you at the Ice Hockey Classic on June 25? +For tickets, click here: https://t.co/y8TxSjqfWs https://t.co/F4iG97Ua65" +06/22/2016,Sports_celeb,@WayneGretzky,"Looking forward to visiting Sydney to host the Ice Hockey Classic on June 25! #ilovesydney +https://t.co/y8TxSjHQO0 https://t.co/AMk0l01ANx" +06/21/2016,Sports_celeb,@WayneGretzky,Excited to visit Sydney to host the Ice Hockey Classic USA v Canada on June 25! #ilovesydney https://t.co/y8TxSjHQO0 https://t.co/lRyS0Uk3oO +06/17/2016,Sports_celeb,@WayneGretzky,"To my first teammate, my first coach and a true great one- Happy Father's Day, Dad. +https://t.co/fc9Hs5bMdw" +06/10/2016,Sports_celeb,@WayneGretzky,"RT @TIME: Wayne Gretzky remembers Gordie Howe: ""He was the nicest man I've ever met"" https://t.co/49H03RYIWw" +06/10/2016,Sports_celeb,@WayneGretzky,Sending our thoughts and prayers to the Howe family and to the millions of hockey fans who like me loved Gordie Howe. RIP Mr. Hockey. (2/2) +06/10/2016,Sports_celeb,@WayneGretzky,"Unfortunately we lost the greatest hockey player ever today, but more importantly the nicest man I have ever met. (1/2)" +06/06/2016,Sports_celeb,@WayneGretzky,This Father's Day it's all about our great dads! Here's to the #greatones https://t.co/fc9Hs4UaOW +06/06/2016,Sports_celeb,@WayneGretzky,RT @PutnamBooks: Watching the #StanleyCupFinal? Preorder 99: STORIES OF THE GAME & look inside @OfficialGretzky's playoff experience: https… +06/05/2016,Sports_celeb,@WayneGretzky,The Greatest.... RIP https://t.co/Ya1pgTpDIe +04/07/2016,Sports_celeb,@WayneGretzky,"RT @ForTheWin: Exclusive: See the jacket for Wayne Gretzky's upcoming biography, '99: Stories of the Game' https://t.co/JUPy1r1b6s" +04/07/2016,Sports_celeb,@WayneGretzky,"RT @Globe_Sports: In October, Gretzky on hockey's greatest moments, #99Stories of the Game: cover & interview https://t.co/7D1W1CaJ5v https…" +03/29/2016,Sports_celeb,@WayneGretzky,Good Luck to @HC_Women and @wick_22 at the Women's World Hockey Championship in Kamloops. #HockeyIsHockey #WomensWorlds +03/26/2016,Sports_celeb,@WayneGretzky,Great night with @justinbieber in Vegas. Glad you liked the jersey! #thepurposetour #gretzkyfantasycamp2016 https://t.co/gQhGFgnTpb +02/26/2016,Sports_celeb,@WayneGretzky,I was the first Canadian to add my name to Canada's Goal Light. You can add your name at Budweiser.ca #lightthelamp https://t.co/4xYioCkfvX +02/25/2016,Sports_celeb,@WayneGretzky,See you tomorrow Canada's Goal Light and @OfficialWPHC. You can #lightthelamp too at Budweiser.ca https://t.co/wvoG0o019h +01/20/2016,Sports_celeb,@WayneGretzky,"Sat down w/@buck & shared my story on @undeniableshow. See it tonight @8pm +on @audiencenetwork https://t.co/CvjzOo8WOc" +12/07/2015,Sports_celeb,@WayneGretzky,"Thank you Hometown Hockey for coming to Brantford. To see our entire visit, please visit https://t.co/EWn1QOniLJ https://t.co/cy9p5Dg5gO" +12/03/2015,Sports_celeb,@WayneGretzky,"This is my office, behind the net. From here, I've always seen hockey's beauty #WeAllPlay @CanadianTire https://t.co/p3XqBGkE10" +11/20/2015,Sports_celeb,@WayneGretzky,"It’s not just me…@SethRogen doesn’t know any athletes! Enjoy #TheNightBefore, in theaters today. https://t.co/uMp96UdSgh" +11/17/2015,Sports_celeb,@WayneGretzky,And @Sethrogen calls himself a Canadian? #TheNightBefore https://t.co/EHp9mbL9H4 +09/25/2015,Sports_celeb,@WayneGretzky,RT @EdmontonOilers: Happy birthday to #Oilers icon Joey Moss! 🎂 http://t.co/81BIyCxovV +09/23/2015,Sports_celeb,@WayneGretzky,Not to worry @SpursOfficial It happens all the time! +09/19/2015,Sports_celeb,@WayneGretzky,I love surprising fans! @CanadianTire and I are teaming up to get Canadians active. #WannaPlay? https://t.co/mFvtCU3b7t +07/28/2015,Sports_celeb,@WayneGretzky,"@Canuckgirl462 in Las Vegas March 20-26, 2016" +07/28/2015,Sports_celeb,@WayneGretzky,Ever dreamed of being passed to by 99? Only a few spots remain for Gretzky Fantasy Camp 2016. https://t.co/mgn565kMIu +07/01/2015,Sports_celeb,@WayneGretzky,It’s an honor to be a Canadian. Happy Canada Day! https://t.co/4XGGuGHRV6 +07/01/2015,Sports_celeb,@WayneGretzky,"Thank you, @GretzkyFacts ! Happy Canada Day! https://t.co/a5rtsv4ry7" +04/07/2015,Sports_celeb,@WayneGretzky,"RT @TheJetGuy: On the way to Augusta with a great crew and The Great One @OfficialGretzky +#Masters http://t.co/AgUGvsU8wp" +03/25/2015,Sports_celeb,@WayneGretzky,"Gretzky Fantasy Camper Shaun Ayotte recaps his week in Vegas. Check it out! +http://t.co/UA6YZZxzEI" +03/23/2015,Sports_celeb,@WayneGretzky,#GretzkyCamp signed puck winners: @miniamy411 @chcarlson23 @Matt_Mack9 @edrisch @ovie08 @PfefferFeff @cjohnsonss. Check DMs to claim a puck. +03/23/2015,Sports_celeb,@WayneGretzky,RT this tweet for a chance to win a signed puck from #GretzkyCamp. Winners announced later today. Any takers? http://t.co/9vBBFa18y7 +03/19/2015,Sports_celeb,@WayneGretzky,"Wayne Gretzky Fantasy Camp alum, Brian Ehrenworth of Frameworth showcasing all 13 Fantasy Camp jerseys! http://t.co/nljn9LYZFh" +03/13/2015,Sports_celeb,@WayneGretzky,Another #GretzkyCamp done. Thank you to those who came and those worked to make it happen! Let's do it again soon. http://t.co/O8H6R5CvXF +03/13/2015,Sports_celeb,@WayneGretzky,"I sat down with @EJHradek_NHL to talk about #GretzkyCamp and my idol, Gordie Howe. http://t.co/uTOW2libCt" +03/12/2015,Sports_celeb,@WayneGretzky,RT @EdmontonOilers: @OfficialGretzky That coaching staff! 🙌 +03/12/2015,Sports_celeb,@WayneGretzky,The 2015 #GretzkyCamp champions! 🏆 http://t.co/H1JJefSSGg +03/12/2015,Sports_celeb,@WayneGretzky,RT @NHLNetwork: In the company of hockey greats today. More to come on NHL Live from #GretzkyCamp. http://t.co/UfjiXbzXCc +03/12/2015,Sports_celeb,@WayneGretzky,"Make sure you get my good side, @NHLNetwork! #GretzkyCamp http://t.co/kwg68I7ebo" +03/12/2015,Sports_celeb,@WayneGretzky,RT @NHLNetwork: Just getting @OfficialGretzky mic'ed up to talk #GretzkyCamp. Videos to come so enjoy these photos until then. http://t.co/… +03/11/2015,Sports_celeb,@WayneGretzky,Drop the puck! #GretzkyCamp http://t.co/JyMlfOAGD5 +03/11/2015,Sports_celeb,@WayneGretzky,"Hey, can I join this group photo? #GretzkyCamp http://t.co/p2iFg5HAdF" +03/11/2015,Sports_celeb,@WayneGretzky,"@stillvhfan Hope to see you at a future Camp, Corey. You can find details here: https://t.co/RSWDlt70lr" +03/11/2015,Sports_celeb,@WayneGretzky,"@Meowmixery Thanks Katja, glad you're such a fan!" +03/11/2015,Sports_celeb,@WayneGretzky,RT @NHL: #GretzkyCamp member Mark Rubin tells us what it's like to play with @OfficialGretzky & McSorley on ice next to him. http://t.co/1L… +03/10/2015,Sports_celeb,@WayneGretzky,Great practice with the camp attendees. Looking forward to playing with this group in tomorrow's games. #GretzkyCamp http://t.co/J0lOXM7E5O +03/10/2015,Sports_celeb,@WayneGretzky,In Las Vegas for the 2015 #GretzkyCamp this week. Ready to get back on the ice! http://t.co/jqCY15ehut +01/13/2015,Sports_celeb,@WayneGretzky,"Are you attending the 2015 Wayne Gretzky Fantasy Camp? If so, a special delivery is coming your way! http://t.co/g9IZZVPCWh" +12/01/2014,Sports_celeb,@WayneGretzky,"RT @TD_Canada: If you had 24 hours to #MakeTodayMatter, what would you do? What these people did is truly inspiring: http://t.co/OWJUwgdsym" +11/10/2014,Sports_celeb,@WayneGretzky,So proud of my son Ty who just opened up registration to his Gretzky Hockey School. Learn more http://t.co/JmxCWghC1Y http://t.co/lDNdqTLib8 +08/21/2014,Sports_celeb,@WayneGretzky,RT @NHL: .@OfficialGretzky hopes that 1984 crew can 'rub off' on current @EdmontonOilers group. Read: http://t.co/LLIQAVGKU0 http://t.co/Mp… +07/22/2014,Sports_celeb,@WayneGretzky,Team Gretzky is happy to announce registration for Fantasy Camp XIII is now open. Click here to register today: https://t.co/WzndN2R1GY +07/10/2014,Sports_celeb,@WayneGretzky,Still a few spots left for the Gretzky Hockey School July 27th - August 1st. Register at http://t.co/WDoJ1riuJK +06/19/2014,Sports_celeb,@WayneGretzky,"RT @GretzkySchool: Tune in to @NHLNetwork today at 5:30 pm EST, Ty and Wayne will be on to talk Gretzky Hockey School!!! http://t.co/nNrkM7…" +05/30/2014,Sports_celeb,@WayneGretzky,RT @GretzkySchool: Join us and have your kid learn from Mark Ciaccio at our school this summer. Register now at http://t.co/6C50BWVbR9 http… +05/22/2014,Sports_celeb,@WayneGretzky,Proud of my son Ty who launched the Gretzky Hockey School. Learn more: http://t.co/WDoJ1riuJK http://t.co/oy3IfFVqNq +05/20/2014,Sports_celeb,@WayneGretzky,"Space is very limited so don't miss out on this amazing experience! + +Register now at: +http://t.co/WDoJ1riuJK" +05/20/2014,Sports_celeb,@WayneGretzky,Welcome to the Gretzky Hockey School! We're excited to announce registration opens today! http://t.co/5eylWLqoem +03/12/2014,Sports_celeb,@WayneGretzky,RT @NHL: ICYMI - @OfficialGretzky answered some fan Q&A on our Vine earlier today from #GretzkyCamp. Highlights: http://t.co/Beg4TZDzrB +03/12/2014,Sports_celeb,@WayneGretzky,RT @NHL: Bobby Hull got to complete the one thing left to do on his hockey bucket list. Watch to see what it was: http://t.co/7VnHd8RFMn #G… +03/12/2014,Sports_celeb,@WayneGretzky,Now I get to watch my good friend @Cujo on @NHLNetwork. #GretzkyCamp http://t.co/Kv6NVVOjT4 +03/12/2014,Sports_celeb,@WayneGretzky,Thanks for your #GretzkyCamp questions everyone. I enjoyed answering them in 6 seconds on @nhl Vine. +03/12/2014,Sports_celeb,@WayneGretzky,"RT @NHL: Yesterday we tweeted asking what you would ask @OfficialGretzky if you had a chance to do so. Today, he has answers. http://t.co/G…" +03/12/2014,Sports_celeb,@WayneGretzky,Spending some time with @EJHradek_NHL and @NHLNetwork this morning. #GretzkyCamp http://t.co/FObM98z2NJ +03/11/2014,Sports_celeb,@WayneGretzky,First assist at #GretzkyCamp. Great group of guys this year. Looking forward to more games with everyone this week. http://t.co/xJeFXsbjCf +03/11/2014,Sports_celeb,@WayneGretzky,"RT @NHL: If you were a fantasy camper skating with @OfficialGretzky this week, what would you ask him? Tweet your question using #GretzkyCa…" +03/11/2014,Sports_celeb,@WayneGretzky,"RT @NHL: Sharpen those skates, put the 99 decals on helmets, @OfficialGretzky Camp is underway this week. https://t.co/6IFm5Mai9g #GretzkyC…" +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: RT @ejhradek_nhl: Another tough assignment. Headed out to Las Vegas 4 the #GretzkyCamp. Can't wait to get back into some nice weat… +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: SNEAK PEEK LOOK: One camper will be vlogging his #GretzkyCamp experience throughout the week with @NHLNetwork. http://t.co/4KsA9zY… +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: Getting scouted by Walter Gretzky (@OfficialGretzky's dad) is not a bad way to start off #GretzkyCamp. https://t.co/nsOt25D67X +03/05/2014,Sports_celeb,@WayneGretzky,Good Luck @adurkin7 and his Xaverian HS teammates tonight in the Massachusetts State Championship! +02/14/2014,Sports_celeb,@WayneGretzky,Getting ready for Fantasy Camp! Great day with @KidRock http://t.co/4oOv0QGswV +07/16/2013,Sports_celeb,@WayneGretzky,Register for Wayne Gretzky's Fantasy Camp by clicking here: http://t.co/i5lecoUImc +07/16/2013,Sports_celeb,@WayneGretzky,"Registration for the Wayne Gretzky Fantasy Camp XII is officially open! Camp will be taking place March 9-14, 2014 in Las Vegas." +03/05/2013,Sports_celeb,@WayneGretzky,@OfficialGretzky is excited to partner with @FrameworthSport for an upcoming Private Signing & Exclusive Evening! http://t.co/K2JqdH2uza +02/25/2013,Sports_celeb,@WayneGretzky,Great morning with the Greater New York City Ice Hockey League and @TDBank_US http://t.co/PpH3m7U0qD +02/25/2013,Sports_celeb,@WayneGretzky,RT @TDBank_US: Our good friend Wayne Gretzky is spending the morning playing hockey with kids who lost their equipment due to #Sandy htt ... +02/06/2013,Sports_celeb,@WayneGretzky,"RT @DJohnsonPGA: RT “@TaylorMadeGolf: Take it from @DJohnsonPGA and The Great One, who are teaming up this week @attproam. #onebucket ht ..." +01/28/2013,Sports_celeb,@WayneGretzky,Hey @Panger40 We are missing you at Fantasy Camp. This year we pay tribute to @StLouisBlues http://t.co/Y7Dlizys +01/27/2013,Sports_celeb,@WayneGretzky,Today is Wayne Gretzky's birthday. Tomorrow is the start of Fantasy Camp XI. Let's drop the puck! http://t.co/cqFwA0pi +01/22/2013,Sports_celeb,@WayneGretzky,"Mike Keenan has a brand new documentary coming out. Check out the doc on Fantasy Camp coach Iron Mike! +http://t.co/lX2MW2ui" +01/20/2013,Sports_celeb,@WayneGretzky,"Check out the new promo video for Wayne Gretzky's Fantasy Camp in Las Vegas +http://t.co/kevxiR7d" +01/18/2013,Sports_celeb,@WayneGretzky,Marty McSorley is coming back to Fantasy Camp XI. Come hang with Marty and friends in Vegas on http://t.co/dbc1K6XZ http://t.co/uB6HPFAr +01/17/2013,Sports_celeb,@WayneGretzky,Fantasy Camp goalie Don Ducasse returns to battle for the Gretzky Cup. Tune in at http://t.co/TQKhXPc2 http://t.co/8NzBdBp4 +01/15/2013,Sports_celeb,@WayneGretzky,Brett Hull is coming to Fantasy Camp XI. To find out who else is joining Wayne in Vegas visit http://t.co/dbc1K6XZ http://t.co/KKc0aYQI +01/14/2013,Sports_celeb,@WayneGretzky,Fantasy Camp XI is coming. Stay tuned for exciting announcements and all the news from Las Vegas. http://t.co/x41U6oZp +11/13/2012,Sports_celeb,@WayneGretzky,I’m ready to play #Kinect with a few lucky fans on 11/16 at the new @MicrosoftStore location in #Toronto! +10/17/2012,Sports_celeb,@WayneGretzky,I’m playing #Kinect with a few lucky fans at the new @MicrosoftStore opening in #Toronto on 11/16! See you there! +08/28/2012,Sports_celeb,@WayneGretzky,Celebrate the silver anniversary of when Canada won GOLD at 1987 Canada Cup at Wayne Gretzkys Toronto Weds August 29th from 2 p.m. - 7 p.m. +08/18/2012,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Calling all hockey fans! Relive the magic of the '87 & '91 Canada Cup August 29th 2-7pm at Wayne Gretzkys Toronto - ... +07/06/2012,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: Click here for a chance to bid on a foursome in the SOLD OUT Walter Gretzky CNIB Golf Classic (July 10th, 2012) - http:/ ..." +06/01/2012,Sports_celeb,@WayneGretzky,Want to watch game four of the Stanley Cup Finals at a private party with Wayne Gretzky in LA? Click here: http://t.co/mFZLsOFg +05/17/2012,Sports_celeb,@WayneGretzky,To get yours text DGWayne to 95323 (US only) or visit http://t.co/mUjMiGxf @digigraphme http://t.co/E0EoWp1A +05/17/2012,Sports_celeb,@WayneGretzky,99 is excited to announce his partnership with Digigraph.Me. http://t.co/x5mtcAX5 +05/05/2012,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Working alongside The Great One @OfficialGretzky at @WayneGretzkysTO #Toronto - http://t.co/3LJbFeu5 +04/14/2012,Sports_celeb,@WayneGretzky,"@stephgloria talks with Walter at the launch of Walter Gretzky Elementary School in Brantford, ON. http://t.co/qsVKj5eT" +04/12/2012,Sports_celeb,@WayneGretzky,@OrlaLawrie hosted @TSN1050Radio and @strombo at Wayne Gretzky's before the @BlueJays home opener. Check out the photos on facebook +04/12/2012,Sports_celeb,@WayneGretzky,TSN Radio live from Wayne Gretzky's photos up online now! http://t.co/lvxIgrM5 +04/05/2012,Sports_celeb,@WayneGretzky,"Join TSN 1050's Cybulski & Company LIVE from Wayne Gretzky's Restaurant Monday April 9, 2012 from 4p.m - 7 p.m! http://t.co/oLMiYnnK" +03/21/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky to host the 5th and final episode of Tennis Channel's 100 Greatest of All-Time March 23rd @ 7pm EST on Tennis Channel. +03/01/2012,Sports_celeb,@WayneGretzky,"RT @hnicradio: The great one @OfficialGretzky joined @GordStellick & @kellyhrudey on @hnicradio Sirius 157 for hockey talk & laughs +http ..." +02/29/2012,Sports_celeb,@WayneGretzky,RT @hockeynight: Wayne Gretzky joins Gord Stellick & Kelly Hrudey at 3:15 pm ET on HNIC Radio on Sirius 157 http://t.co/rLynRsNA #CBCSpo ... +02/25/2012,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: March 7th @AJSportsWorld will pick one lucky follower to win a personalized @28CGiroux 8x10 photo! Follow & RT @AJS ... +02/24/2012,Sports_celeb,@WayneGretzky,"RT @NHL_Oilers: 30 years ago today, #Oilers Wayne Gretzky scored his record-breaking 77th goal of the season and we've got the video > ..." +02/13/2012,Sports_celeb,@WayneGretzky,All the videos and pictures of Fantasy Camp X available on Gretzky's official facebook page http://t.co/Y7DpQ9zm +02/12/2012,Sports_celeb,@WayneGretzky,RT @NHL: Derek Mori has been attending Gretzky's Fantasy Camp since '06 & is back for a 7th straight year. Check out his blog: http://t. ... +02/11/2012,Sports_celeb,@WayneGretzky,Fantasy Camp X begins live streaming today at 1pmPST. Watch Wayne play against his son Ty at http://t.co/ZwKyPL8E +02/11/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky and Brett Hull wearing a @NHLBlackhawks jersey. More available on http://t.co/XT3UCcpm http://t.co/pgCVWm9h +02/10/2012,Sports_celeb,@WayneGretzky,"Wayne Gretzky, Rick Tocchet and Brett and Bobby Hull mingle with Fantasy Campers at the Bellagio in Las Vegas http://t.co/SP4vUY6H" +02/10/2012,Sports_celeb,@WayneGretzky,Live streaming Gretzky Fantasy Camp X at 3pmPST only at http://t.co/ZwKyPL8E http://t.co/6RDzMllA +02/10/2012,Sports_celeb,@WayneGretzky,RT @NHL: Gretzky likes what he sees in his former franchises. http://t.co/aRZU0Jys #Oilers #NYR #STLBlues #LAKings +02/09/2012,Sports_celeb,@WayneGretzky,Thanks as always to @Panger40 for all the retweets. We are missing you out here at Fantasy Camp X. Hope you're lovin' the Hawks unis +02/09/2012,Sports_celeb,@WayneGretzky,Use #gretzkycamp to drop comments during the broadcast and we'll read them on air +02/09/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky takes the ice at 12pmPST. Watch live at http://t.co/ZwKyPL8E +02/09/2012,Sports_celeb,@WayneGretzky,Fantasy Camp X teams have been posted! See where your favorite pros are playing. Visit http://t.co/XT3UCcpm for updates http://t.co/fCSYulsf +02/09/2012,Sports_celeb,@WayneGretzky,Live streaming of the Fantasy Camp X rosters at http://t.co/XT3UCcpm at 7pmPST 10pmEST +02/08/2012,Sports_celeb,@WayneGretzky,@31_cujo and @Jeremy_Roenick will be featured at Fantasy Camp X so visit http://t.co/XT3UCcpm for updates and interviews +02/06/2012,Sports_celeb,@WayneGretzky,Curtis Joseph and Jeremy Roenick will be at Fantasy Camp X in Vegas. Will you? Follow along at http://t.co/XT3UCcpm +02/03/2012,Sports_celeb,@WayneGretzky,@OrlaLawrie speaks with @Proteautype about his new book 'Fighting The Good Fight' only on http://t.co/XT3UCcpm +02/02/2012,Sports_celeb,@WayneGretzky,"Denis Savard and Rick Tocchet will join Marty McSorley, Brett Hull and Wayne Gretzky in Vegas. Who's next? Stay tuned http://t.co/XT3UCcpm" +01/23/2012,Sports_celeb,@WayneGretzky,Marty McSorley joins Wayne and Brett Hull on the Fantasy Camp X all-star team. Who would you like to see there? http://t.co/XT3UCcpm +01/13/2012,Sports_celeb,@WayneGretzky,Brett Hull going to Fantasy Camp X! Your last chance to sign up to skate with Wayne. Visit http://t.co/lX4MFlXW +12/20/2011,Sports_celeb,@WayneGretzky,@HumbleFredRadio and @OrlaLawrie will be live at Gretzky's December 21 from 6-8pm. Drop by or watch on http://t.co/CF6J4jAd. See you there. +12/20/2011,Sports_celeb,@WayneGretzky,RT @HumbleFredRadio: RT @HumHow: @sharcar19 There is a Z in Gretsky's and there will be a Humble and Fred in there as well on the 21st f ... +11/22/2011,Sports_celeb,@WayneGretzky,"@OrlaLawrie is talking with some hockey legends and writing up their interviews on http://t.co/SNITCJFi, please check it out!" +08/22/2011,Sports_celeb,@WayneGretzky,RT @AJSportsWorld: #ICanHonestlySay we love doing giveaways!...Only 1 week till we give away personalized @pksubban1 8x10 photo 2 one fo ... +08/18/2011,Sports_celeb,@WayneGretzky,WG Authentic and Pro Am Sports present a Wayne Gretzky private signing. Visit Gretzky.com for more details. +08/02/2011,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: #thereisalwaysthat1person that likes giving stuff away! Follow @ajsportsworld who's giving away a @joeybats19 autog ... +07/08/2011,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: also...check out my one on one interview with former Winnipeg Jets Goalie Joe Daley!! http://t.co/TNgCsSx #NHL #win ... +07/04/2011,Sports_celeb,@WayneGretzky,"There is still time to sign up for the 19th Annual Walter Gretzky CNIB Celbrity Golf Classic in Brantford, ON. http://t.co/al4xyED" +06/20/2011,Sports_celeb,@WayneGretzky,"Workout? Play golf? Just like to look good? Stay tuned 99 fans, exciting new apparel coming soon to gretzky.com!" +06/16/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: #Hurricanes (@nhl_canes) Jay Harrison coming up on the PP Show LIVE from #Gretzkys!! +06/16/2011,Sports_celeb,@WayneGretzky,"RT @LAKings: Today in #LAKings history, 1994: Wayne Gretzky won his TENTH Art Ross Trophy for leading the league in scoring http://ow.ly ..." +06/15/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: Brian Leetch, Bill Clement, Michael Buble and more coming up on today’s PP show LIVE from #Gretzkys (4-6pm) on @XMHomeIc ..." +06/13/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Senior VP/Director of Hockey Operations for the #Leafs and former #Canucks GM Dave Nonis will be at #Gretzkys tomorrow a ... +06/13/2011,Sports_celeb,@WayneGretzky,RT @NHLAlumni: (1979) Wayne Gretzky was claimed as a priority selection by the Oilers at the NHL Expansion Draft in MTL. #luccckkkyyyy # ... +06/13/2011,Sports_celeb,@WayneGretzky,http://t.co/15Kqf6l Groin injuries are among the most common injuries seen in hockey. 3D Lunge Stretch videos from HockeyOT.com can help +06/11/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: On todays LFWG radio show (4-6PM) TSN's Rod Black alongside Jeff Rimer.Guests include Kerry Fraser,Ed Olczyk,Pat Quinn,K ..." +06/07/2011,Sports_celeb,@WayneGretzky,RT @Panger40: Congrats to Trevor Gretzky- drafted by Chicago Cubs ! +06/07/2011,Sports_celeb,@WayneGretzky,Here is a great dryland training tip to improve your lateral agility provided by our friends @hockeyot http://www.facebook.com/gretzkydotcom +06/04/2011,Sports_celeb,@WayneGretzky,"RT @JoshRimerHockey: Great show 2day! On LFWG Hosts Rod Black & Rick Tocchet speak w/ Wayne Gretzky, @David_Boreanaz, Mark Chipman, @MCa ..." +06/04/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Now on the LFWG radio show Wayne Gretzky! Coming up #Canadiens Mike Cammalleri (@MCammalleri13) LIVE at #Gretzkys..... +06/04/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Stop by the Live from Wayne #Gretzkys radio show this Saturday between 4-6pm to meet former NHL'er Rick Tocchet! +06/03/2011,Sports_celeb,@WayneGretzky,"Visit http://www.facebook.com/gretzkydotcom and learn about Dr. Chad Moreau from HockeyOT.com or try +http://hockeyot.go2cloud.org/SHT" +06/01/2011,Sports_celeb,@WayneGretzky,"If you want to reach 100% of your potential, you need to train with HockeyOT.com. For more info visit http://hockeyot.go2cloud.org/SHR" +06/01/2011,Sports_celeb,@WayneGretzky,"Gretzky Digital is proud to partner with HockeyOT, the most comprehensive, personalized dry-land training program on the web." +05/28/2011,Sports_celeb,@WayneGretzky,RT @Badamsfan: @OfficialGretzky School in Wayne's hometown to be named for his father. http://brantfordexpositor.ca/ArticleDisplay.aspx ... +05/26/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: On today's PPS LIVE from #Gretzkys Scott Laughlin alongside @sportsnetbroph.Guests include #Islanders Kyle Okposo, Doug ..." +05/12/2011,Sports_celeb,@WayneGretzky,Great Ones Of Classical Music: Marvin Hamlisch interviews Placido Domingo live on Facebook. Friday 2pmET. http://on.fb.me/jW4pp1 +05/07/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Stop by the Live From#Gretzkys Radio Show before 6 today for your chance to win an autographed John Tavares World Junior ... +06/27/2018,Sports_celeb,@MartinBrodeur,Thank you everyone for the kind words! Honored to be joining the @HockeyHallFame! https://t.co/Uhium2dvxo +05/29/2018,Sports_celeb,@MartinBrodeur,RT @UOttawaMHockey: Best of luck to Gee-Gees goaltender Anthony Brodeur (@abrodeur30) and the @geegees_mgolf team as they open the 2018 Can… +05/02/2018,Sports_celeb,@MartinBrodeur,RT @SBurkie1: Great group to golf with on a day off in Riga Latvia @HC_Men @SAMMYSAYS2010 @MartinBrodeur @BobMartin6201 https://t.co/ASyu64… +04/07/2018,Sports_celeb,@MartinBrodeur,RT @SAMMYSAYS2010: Anyone who who has played or has a child that has chased their dreams while riding a bus in Jr Hockey shares in the deva… +03/15/2018,Sports_celeb,@MartinBrodeur,Happy 16th Birthday @AnabelleBrodeur! Love you! https://t.co/ahITPj5zc7 +02/27/2018,Sports_celeb,@MartinBrodeur,"RT @sjbarracuda: The #SJBarracuda have signed Goaltender @JBrodeur30 to a PTO from the @AllenAmericans. + +🗞: https://t.co/8PHwC3cz4Y https:/…" +02/25/2018,Sports_celeb,@MartinBrodeur,Congrats to my longtime teammate and friend @pelias on his jersey retirement night! Happy that 26 and 30 will alway… https://t.co/uPwjitKZ0m +02/24/2018,Sports_celeb,@MartinBrodeur,RT @HockeyCanada: Congratulations @HC_Men! Bring that bronze home.🥉#BelieveWeCAN https://t.co/3Hp088mWWE +02/01/2018,Sports_celeb,@MartinBrodeur,RT @AnabelleBrodeur: #oksroyals https://t.co/Rrkk2MlEEv +01/31/2018,Sports_celeb,@MartinBrodeur,#BellLetsTalk +11/02/2017,Sports_celeb,@MartinBrodeur,RT @AllenAmericans: BRODEUR SAYS NO x3! https://t.co/1GvaXogl6q +09/29/2017,Sports_celeb,@MartinBrodeur,"RT @Oshawa_Generals: Gens Fans! We have @JBrodeur30's 80th season game worn goalie pads up for auction! 🥅 + +Link below to place your bid ⬇ +h…" +06/01/2017,Sports_celeb,@MartinBrodeur,RT @Panger40: @MiuraGolfInc Holy Jumpin! This driver looks perfect! @Series1957 @MartinBrodeur @ScottieUpshall https://t.co/J9Ljg1HxLV +05/22/2017,Sports_celeb,@MartinBrodeur,"All the best to Ariel Gold @itsarielgold, your mother will always be with you in your heart. +https://t.co/UZh632F1Ln https://t.co/S4xG38kKFW" +05/09/2017,Sports_celeb,@MartinBrodeur,"RT @MiuraGolfInc: PP-9005 Genesis, 3 piece construction, soft carbon head, carpenter steel face, spin forged hosel. #DiscoverPerfection #Mi…" +04/28/2017,Sports_celeb,@MartinBrodeur,"RT @ToledoWalleye: We've added G Jeremy Brodeur, son of legendary goalie Martin Brodeur, on an ATO. He will backup Lerg this weekend: https…" +04/17/2017,Sports_celeb,@MartinBrodeur,Proud of you !!! https://t.co/eo1WBZiFGb +03/31/2017,Sports_celeb,@MartinBrodeur,Congratulations to my long time teammate and friend Patrik Elias on his Retirement. Can’t wait to see #26 joining 4… https://t.co/JG7OgLqN21 +03/21/2017,Sports_celeb,@MartinBrodeur,"RT @GoalieVoices: Posts, crossbars and perfect angles. No big deal, right @Panger40 and @BrianBoucher33 @KellyHrudey" +02/18/2017,Sports_celeb,@MartinBrodeur,"RT @GeneralsUpdates: In case you missed @JBrodeur30 going 14/14 in the shootout last night, here are all the #67s attempts in a row https:/…" +02/13/2017,Sports_celeb,@MartinBrodeur,RT @UOttawaMHockey: Here's an absolutely ridiculous save from #HorseHockey goaltender Anthony Brodeur (@abrodeur30) this weekend in Sudbury… +01/25/2017,Sports_celeb,@MartinBrodeur,#BellLetsTalk +12/25/2016,Sports_celeb,@MartinBrodeur,Merry xmas everyone!!!My daughter doesn't think I can get 1000 favorites. Help me out please!!!!! https://t.co/1aHtQ5M41n +10/07/2016,Sports_celeb,@MartinBrodeur,"RT @GeeGeesMHockey: Gameday | Coach Grandmaitre has announced Anthony Brodeur as tonight's starter. + +2015-16: 1.99, .931 w/@PentictonVees.…" +07/13/2016,Sports_celeb,@MartinBrodeur,RT @TheRealDpan: @BarDown what a clown +06/10/2016,Sports_celeb,@MartinBrodeur,"We lost a legend of the game today. Mr. Howe will be missed. Condolences to the Howe Family. +Photo: Denis Brodeur Sr https://t.co/Ojkf0jORkG" +06/08/2016,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30!! https://t.co/GjCCvsLvwl +05/05/2016,Sports_celeb,@MartinBrodeur,RT @GeeGeesMHockey: RECRUIT: uOttawa m-hockey is proud to announce the commitment of goalie Anthony Brodeur (@abrodeur30). #HorseHockey htt… +04/27/2016,Sports_celeb,@MartinBrodeur,"I'm excited to be new member of @eligoclub! +Thank you @pgamazz!" +03/14/2016,Sports_celeb,@MartinBrodeur,Happy Birthday to my favorite daughter @AnabelleBrodeur! https://t.co/0T8Naaw2gu +02/06/2016,Sports_celeb,@MartinBrodeur,Excited to be back in NJ for the week! +01/27/2016,Sports_celeb,@MartinBrodeur,#BellLetsTalk +11/23/2015,Sports_celeb,@MartinBrodeur,Happy Birthday Maxime!! https://t.co/UbLfy4VRnZ +10/06/2015,Sports_celeb,@MartinBrodeur,"Thank you to the @nhldevils organization and the fans for all of the support! I am very honored to join 3, 4, and 27!" +08/26/2015,Sports_celeb,@MartinBrodeur,Happy #NationalDogDay! http://t.co/r16Ji9HKEh +08/02/2015,Sports_celeb,@MartinBrodeur,RT @Panger40: And Why Wouldn't we? The Gateway to the West would be perfect host! https://t.co/fypwuQIb8s +07/17/2015,Sports_celeb,@MartinBrodeur,Having a great time on the golf course with Ozzie Smith and Andruw Jones at the 2015 @ACChampionship http://t.co/KAsEZlSlBR +07/03/2015,Sports_celeb,@MartinBrodeur,Congrats to @mstlouis_26 on a great career! +06/09/2015,Sports_celeb,@MartinBrodeur,RT @lindsayberra: @MartinBrodeur Please tweet to help us to 100K signatures for Gramp's Medal of Freedom petition! Deadline tonight! http:… +06/08/2015,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30!! http://t.co/9bGTz5zWiD +06/01/2015,Sports_celeb,@MartinBrodeur,Congrats to the @Oshawa_Generals on winning the #MemorialCup!!! +05/31/2015,Sports_celeb,@MartinBrodeur,Best of luck to the @Oshawa_Generals in the #MemorialCup +05/29/2015,Sports_celeb,@MartinBrodeur,Congrats to William on his graduation! @Ultimate_WillB http://t.co/wB59kuyS4S +05/20/2015,Sports_celeb,@MartinBrodeur,Congrats to David @Letterman on an amazing career! Photo on set from 2000. http://t.co/GbXvexM1FE +05/16/2015,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 and the @Oshawa_Generals on winning the #OHL Championship! Good luck in the Memorial Cup! http://t.co/97j36kdki8 +05/06/2015,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Happy birthday @MartinBrodeur ! Love you Dad! +05/05/2015,Sports_celeb,@MartinBrodeur,"Stanley & Vez are participating in #GiveSTLDay to support @A4A_org! +Help support by donating:http://t.co/4YI1ESNdOR http://t.co/Oq3hVUzGP4" +05/03/2015,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 and the @Oshawa_Generals on winning the Eastern Conference Finals! Good luck in the Finals! http://t.co/mXOusn18X0 +04/25/2015,Sports_celeb,@MartinBrodeur,RT @NJDevilsFWW: Hey @MartinBrodeur how about retweet 4 Oaklee. Today is his funeral and he was a huge Devils fan like mom. Thanks! http://… +04/16/2015,Sports_celeb,@MartinBrodeur,Enjoying my first @Cardinals game! http://t.co/5Czxspg5Mz +03/14/2015,Sports_celeb,@MartinBrodeur,Happy Birthday to my daughter Anabelle! http://t.co/gjSoad3TqH +03/11/2015,Sports_celeb,@MartinBrodeur,"Proud to join @dbackes42 and @A4A_org! +Make sure to support your local animal shelters! Nice visit today @APAofMO! http://t.co/CAVkiJ46AQ" +03/08/2015,Sports_celeb,@MartinBrodeur,Thanks to the @NHLDevils for a great weekend! Was great to see my old teammates and the fans! It was a lot of fun! #Devils95 +02/28/2015,Sports_celeb,@MartinBrodeur,Want to wish my friend David Clarkson good luck with the @BlueJacketsNHL! +02/19/2015,Sports_celeb,@MartinBrodeur,RT @Panger40: Well done Andrew. Congrats on your 1st @NHL victory. @andrewhammond30 @Sportsnet @Senators +02/07/2015,Sports_celeb,@MartinBrodeur,RT @CHLHockey: Built by the #CHL! Congrats @MartinBrodeur tremendous career that began with @QMJHL St Hyacinthe Lasers 1989-92 #tbt http://… +01/29/2015,Sports_celeb,@MartinBrodeur,Thank You for everything! http://t.co/IrxTmoIGSs +01/28/2015,Sports_celeb,@MartinBrodeur,#BellLetsTaIk +01/28/2015,Sports_celeb,@MartinBrodeur,"RT @ChrisKuc: Patrick Kane on Martin Brodeur: ""Hell of a career for a guy who did so much for our game."" #Blackhawks" +01/22/2015,Sports_celeb,@MartinBrodeur,Congratulations to @KidElls1 for making the 2015 @nhl All-Star team! #stlblues +01/18/2015,Sports_celeb,@MartinBrodeur,"RT @FlyingBluesman: 5 jours avant que la rondelle tombe....svp retweeter + @bruno_gervais27 bruno_gervais27 @Max25talbot @JiCLajoie @ http:/…" +01/04/2015,Sports_celeb,@MartinBrodeur,Congrats @JBrodeur30 on his first OHL shutout! +12/11/2014,Sports_celeb,@MartinBrodeur,RT @JillSaake: Thanks for the visit @MartinBrodeur @MODO_RAMAL at St Louis Childrens hospital @EJ_Saake's first smile of the week http://t.… +12/11/2014,Sports_celeb,@MartinBrodeur,"RT @LukeTaylor72: awesome to see a legend come to town and fit right in, thanks for visiting a hometown patient @MartinBrodeur & Jack http:…" +12/11/2014,Sports_celeb,@MartinBrodeur,RT @CardsNoteMizzou: My buddy's son received some special visitors today...you made his day @MartinBrodeur and Jax http://t.co/3yn2MhUzMl +12/09/2014,Sports_celeb,@MartinBrodeur,Thank you fans for an amazing welcome! @StLouisBlues +12/06/2014,Sports_celeb,@MartinBrodeur,Great first win as a Blue! @StLouisBlues +11/24/2014,Sports_celeb,@MartinBrodeur,Sad to hear the passing of Pat Quinn. He was a great coach. I had the privilege to play for him. You will be missed. +11/23/2014,Sports_celeb,@MartinBrodeur,Happy Birthday Maxime!! http://t.co/HJJOFx4oGQ +11/20/2014,Sports_celeb,@MartinBrodeur,RT @SunLifeQC: Tweetez ou RT #monactiondiabète et nous donnerons 1$ à la Fondation @DiabeteEnfants en partenariat avec @canadiensMTL http:/… +11/18/2014,Sports_celeb,@MartinBrodeur,Congrats to everyone inducted into the @HockeyHallFame. A special congrats to a great coach and a great friend! http://t.co/exAB8N6YzL +10/29/2014,Sports_celeb,@MartinBrodeur,Happy 18th Birthday @JBrodeur30 @WilliamBsTweets !!! http://t.co/ju0fjMv03G +10/25/2014,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 on his first OHL win!!! +10/22/2014,Sports_celeb,@MartinBrodeur,My thoughts and prayers are with the city of Ottawa. +10/12/2014,Sports_celeb,@MartinBrodeur,RT @Oshawa_Generals: The first period is underway in Ottawa. @JBrodeur30 will start in net for the Generals making this his second OHL star… +10/09/2014,Sports_celeb,@MartinBrodeur,RT @patrickwoodbury: C'était le dernier entraînement père-fils @MartinBrodeur @abrodeur30 à #Gatineau #hockey #lhjmq http://t.co/vsMvwth3bW +10/09/2014,Sports_celeb,@MartinBrodeur,RT @patrickwoodbury: Mise au jeu faite par @MartinBrodeur au #VieuxBob #LeDroit http://t.co/NCna1nNl0c +10/08/2014,Sports_celeb,@MartinBrodeur,http://t.co/skFUMXrV07 +10/06/2014,Sports_celeb,@MartinBrodeur,RT @LesOlympiques: Retweeter l'image et courez la chance de gagner vos billets pour la partie de mercredi! #GoOlympiquesGo http://t.co/78Sq… +10/06/2014,Sports_celeb,@MartinBrodeur,RT @MLalancetteTVA: Le centre d'attraction de cette séance d'entraînement à Guertin http://t.co/3KpWdr1ar8 +09/27/2014,Sports_celeb,@MartinBrodeur,RT @WarnerA93: Jeremy Brodeur's first @OHLHockey start for the @Oshawa_Generals vs. the @OHLSteelheads. @JBrodeur30 @MartinBrodeur http://t… +09/26/2014,Sports_celeb,@MartinBrodeur,Good luck tonight @JBrodeur30!! First OHL start! +09/25/2014,Sports_celeb,@MartinBrodeur,Congratulations to Derek Jeter on an amazing career! #RE2PECT +09/24/2014,Sports_celeb,@MartinBrodeur,Awesome job in goal today @abrodeur30! http://t.co/FGuDDbbVIK +09/07/2014,Sports_celeb,@MartinBrodeur,"RT @Oshawa_Generals: Brodeur is starting tonight, game is underway! http://t.co/2VrF6U0TYw" +08/26/2014,Sports_celeb,@MartinBrodeur,Happy #NationalDogDay! From Stanley and Vez! http://t.co/dp5kWDjFw4 +08/16/2014,Sports_celeb,@MartinBrodeur,Wishing team Canada good luck in their game later today! #LLWS @LittleLeague +07/15/2014,Sports_celeb,@MartinBrodeur,Battle of the Twins! @JBrodeur30 @Freewill_b http://t.co/XZPuW0EAFK +06/24/2014,Sports_celeb,@MartinBrodeur,Happy to see Pat Burns will be inducted into the @HockeyHallFame he was a great coach and a great friend! http://t.co/XkAqkotK1R +06/16/2014,Sports_celeb,@MartinBrodeur,"RT @abrodeur30: Happy fathers day to everyone, but most importantly, @MartinBrodeur love you dad, you're the best" +06/15/2014,Sports_celeb,@MartinBrodeur,Happy Father's Day to all of the Hockey Dads out there! Miss You Dad. Thanks for all that you have done for me! http://t.co/ZVU0KejQCQ +06/08/2014,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30! Love you http://t.co/zulcipCOqF +06/05/2014,Sports_celeb,@MartinBrodeur,Congratulations to @JBrodeur30 on joining the @Oshawa_Generals! Always proud of you! +05/11/2014,Sports_celeb,@MartinBrodeur,Love you Mom! Happy Mother's Day to all Moms ! http://t.co/CVLIXIvlQk +05/06/2014,Sports_celeb,@MartinBrodeur,Thank You Guys for all the Birthday Wishes!/Merci pour les voeux d'anniversaire! +05/06/2014,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Happy birthday Dad! Love you +04/20/2014,Sports_celeb,@MartinBrodeur,Happy Easter! http://t.co/Vz8uMkooQN +04/17/2014,Sports_celeb,@MartinBrodeur,Check out this guarantee from #markmessier and @officialspyder https://t.co/nh1ljcq1Vn +04/17/2014,Sports_celeb,@MartinBrodeur,Thank you guys for all the support. I really appreciate it! Good luck to all teams in the playoffs. +08/30/2013,Sports_celeb,@MartinBrodeur,RT @EASPORTSNHL: .@MartinBrodeur is giving away a copy of #NHL14 on his FB page! Enter here: http://t.co/IIB9XVTmAX @NHL @NHLPA +07/29/2013,Sports_celeb,@MartinBrodeur,The final piece of my new mask is on the back — I added an Old School Photography Film Strip as tribute to my Dad! http://t.co/Bt6LajdzO7 +07/29/2013,Sports_celeb,@MartinBrodeur,I have one more addition to the Mask! Check back at 2:30 to see it! +07/29/2013,Sports_celeb,@MartinBrodeur,Here is my New Mask for the 2013-2014 Season! http://t.co/2oUoZBqUAI +07/29/2013,Sports_celeb,@MartinBrodeur,"RT @KenDaneykoMSG: @MartinBrodeur ahh u don't have to out me on your mask pal, that's ok!" +07/29/2013,Sports_celeb,@MartinBrodeur,Tomorrow you will get to see my mask for the new season. I am adding two friends to my mask! Stay Tuned! +07/10/2013,Sports_celeb,@MartinBrodeur,Congrats to Nieder and Shanny to become Hall of famer!!!! +07/08/2013,Sports_celeb,@MartinBrodeur,RT @nhl: Thank you all for your questions. I had fun. Follow me @MartinBrodeur. ^MB +07/08/2013,Sports_celeb,@MartinBrodeur,RT @EASPORTSNHL: #NHL14 Cover Athlete @MartinBrodeur will be taking over the @NHL Twitter account at 2pm ET (11am PT). Ask questions using … +07/08/2013,Sports_celeb,@MartinBrodeur,Hey Guys! I am taking over the @NHL Twitter account at 2 p.m. today! Ask me questions using #AskBrodeur +07/01/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Extremely excited to be a part of the @NHLDevils !Been waiting for this moment for my whole life! Crazy feeling and thanks … +07/01/2013,Sports_celeb,@MartinBrodeur,Picture with @abrodeur30 after being Drafted http://t.co/mRGSdtUQat +07/01/2013,Sports_celeb,@MartinBrodeur,"RT @NHLDevils: Watch as our @MartinBrodeur announces his son, Anthony Brodeur, as the 208th #NHLDraft pick: http://t.co/4ckOnNXeuL" +07/01/2013,Sports_celeb,@MartinBrodeur,Congrats to my boy @abrodeur30 on getting drafted to the @NHLDevils ! Can't wait to see you on the ice! +06/30/2013,Sports_celeb,@MartinBrodeur,Good Luck to my son @abrodeur30 today at the @NHL Draft +06/28/2013,Sports_celeb,@MartinBrodeur,"Thanks to all voters!!!! +http://t.co/y0LmWVTkks" +06/18/2013,Sports_celeb,@MartinBrodeur,Congrats @abrodeur30 on joining the Gatineau Olympiques of the QMJHL! +06/16/2013,Sports_celeb,@MartinBrodeur,Happy Father's Day Dad! http://t.co/C5pktyegPQ +06/16/2013,Sports_celeb,@MartinBrodeur,"RT @abrodeur30: Happy fathers day to all the dads out there, but especially @MartinBrodeur #loveyou" +06/08/2013,Sports_celeb,@MartinBrodeur,"Hey guys check out My Brother Denis's Photography Page http://t.co/Z4Vyn3nLpB +Go check it out and give him a like!" +06/08/2013,Sports_celeb,@MartinBrodeur,Happy Birthday Anthony Love You Buddy!! @abrodeur30 +06/03/2013,Sports_celeb,@MartinBrodeur,Voting is now over! Thanks so much for all the support! You guys have done an awesome job! Lets hope that we made it! Stay Tuned! +06/03/2013,Sports_celeb,@MartinBrodeur,"1 Hour Left! Vote MB30! +http://t.co/vtGvDc8V55" +06/02/2013,Sports_celeb,@MartinBrodeur,"Voting is very close! Voting is Unlimited so make sure to get in as many as you can! Thanks guys! +Vote Here: http://t.co/vtGvDc8V55" +06/02/2013,Sports_celeb,@MartinBrodeur,"Vote for me for the #NHL14CoverVote +http://t.co/vtGvDc8V55 +Voting is Unlimited!" +06/02/2013,Sports_celeb,@MartinBrodeur,Today is the Last Day you can vote for me to be on the cover of NHL14! For votes to count go to http://t.co/vtGvDc8V55 Thank you guys! +06/02/2013,Sports_celeb,@MartinBrodeur,Congrats to @VoteBrodeur for winning the signed Mini Stick! Keep Voting today is the last day that you can vote! http://t.co/vtGvDc8V55 +05/31/2013,Sports_celeb,@MartinBrodeur,Thank you fans for all of the support today! For your votes to count vote at http://t.co/36sYc1QXeP +05/31/2013,Sports_celeb,@MartinBrodeur,RT If you Voted #NHL14Brodeur All Day +05/31/2013,Sports_celeb,@MartinBrodeur,15 Mins Left! Make them Count! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT 30 Mins Left! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Congrats to @abrodeur30 for graduating High School! Nice Job Buddy! +05/31/2013,Sports_celeb,@MartinBrodeur,Vez is waiting for you to vote #NHL14Brodeur http://t.co/5ZAx2xtpJd +05/31/2013,Sports_celeb,@MartinBrodeur,1 Hour Left! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Stanley is waiting for you to vote #NHL14Brodeur http://t.co/MFXunoo4CR +05/31/2013,Sports_celeb,@MartinBrodeur,RT this! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,I don't always vote for the NHL14 Cover but when I do I vote #NHL14Brodeur http://t.co/RGnQZB9vXe +05/31/2013,Sports_celeb,@MartinBrodeur,2 Hours Left to vote on twitter! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Hey @brucebeck4ny Thanks for the support! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT @nhldevils: RT this if you've been tweeting #NHL14Brodeur all day. +05/31/2013,Sports_celeb,@MartinBrodeur,"Who wants to win this? Tweet #NHL14Brodeur to enter! +http://t.co/xPUnNUlCY3" +05/31/2013,Sports_celeb,@MartinBrodeur,Keep Calm and Vote #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,"Vote! #NHL14Brodeur + http://t.co/NdKs66LMgh" +05/31/2013,Sports_celeb,@MartinBrodeur,"Put Your Game Face On! Vote Now! #NHL14Brodeur +Video: http://t.co/zrImmmLhVm" +05/31/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeu… +05/30/2013,Sports_celeb,@MartinBrodeur,Thanks for all of the Questions! Make sure to keep voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhlpa: Also, please help me get on the cover of EA NHL 14 by voting #NHL14Brodeur. Thank you!" +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhlpa: Fans, thanks for all your great questions, this has been a blast. Also thanks to @NHLPA for letting me 'takeover' this account." +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @NHLPA: Martin Brodeur is up next, he will be taking over the @NHLPA Twitter account at 6:30pm EST. Tweet questions to @NHLPA using #Ask…" +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: Almost time for @MartinBrodeur to take over the @NHLPA account. #AskBrodeur. #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,Keep using #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,I am jumping on the @NHLPA twitter account in 1 hour. Want me to answer your questions? Use #AskBrodeur to ask ?'s & #NHL14Brodeur to vote! +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @njdevil00: Just keep voting, voting, voting: #NHL14Brodeur." +05/30/2013,Sports_celeb,@MartinBrodeur,Do you know what time it is? #NHL14Brodeur time! +05/30/2013,Sports_celeb,@MartinBrodeur,RT @denisbrodeurjr: #NHL14Brodeur @MartinBrodeur Marty is the ironman of goalies http://t.co/CKHyJe5Ury +05/30/2013,Sports_celeb,@MartinBrodeur,Who wants to win a signed Mini Stick? Tweet #NHL14Brodeur to enter. +05/30/2013,Sports_celeb,@MartinBrodeur,"""Vote #NHL14Brodeur"" Hi I'm Martin Brodeur and I approve this message." +05/30/2013,Sports_celeb,@MartinBrodeur,"Help me complete my checklist! All you have to do is tweet #NHL14Brodeur + http://t.co/zuyyksTJlO" +05/30/2013,Sports_celeb,@MartinBrodeur,If you're happy and you know it Vote #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"Keep Voting for Me! + Video: http://t.co/jDA6BCfXq4 +#NHL14Brodeur" +05/30/2013,Sports_celeb,@MartinBrodeur,Tweet Brodeur Thursday! #TBT #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @nhlpa: Brodeur is taking over the @NHLPA Twitter account today at 6:30pm EST. Tweet questions to @NHLPA using #AskBrodeur #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @jeremy_roenick: @MartinBrodeur why wouldn't u vote for Marty. Best of all time +#NHL14Brodeur" +05/30/2013,Sports_celeb,@MartinBrodeur,"Hey @Jeremy_Roenick is voting #NHL14Brodeur +So you should too! + http://t.co/tQGjtEWfDH" +05/30/2013,Sports_celeb,@MartinBrodeur,RT @sherrydarlingnj: There are at least 669 reasons to vote for #NHL14Brodeur. +05/30/2013,Sports_celeb,@MartinBrodeur,RT @free_willy9: #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,I am taking over the @NHLPA twitter account at 6:30! Want me to answer your questions? Use #AskBrodeur to ask Questions #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: #NHL14Brodeur #NHL14Brodeur #retweet #NHL14Brodeur #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @jbrodeur30: #NHL14Brodeur #retweet #covervote +05/30/2013,Sports_celeb,@MartinBrodeur,RT @kendaneykomsg: #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,How many times have you tweeted #NHL14Brodeur today? +05/30/2013,Sports_celeb,@MartinBrodeur,Voting is Very close! keep voting #nhl14brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,My Buddy David Clarkson is voting #NHL14Brodeur http://t.co/EbAO5WUcfg +05/30/2013,Sports_celeb,@MartinBrodeur,What are you waiting for? Vote #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @nhl: It's the last day of #NHL14CoverVote Twitter Voting! Are you tweeting for #NHL14Brodeur or Bobrovsky? +05/30/2013,Sports_celeb,@MartinBrodeur,@ThatKevinSmith thanks for the support! Keep Voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLPA: #NHL14CoverVote finalists @MartinBrodeur & Sergei Bobrovsky will take over the @NHLPA account today at 5pm EST http://t.co/0cOVw… +05/30/2013,Sports_celeb,@MartinBrodeur,RT @ThatKevinSmith: Put a netminding legend on the cover of EA SPORTS NHL 14 by voting #NHL14Brodeur for #NHL14COVERVOTE! http://t.co/YIVhU… +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur Keep it Going! +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: #TBT: @MartinBrodeur broke the @NHL record for most career wins by a goalie on 3/17/09. Photo: http://t.co/YEKhUAMyPF. Vote:… +05/30/2013,Sports_celeb,@MartinBrodeur,Vote #NHL14Brodeur #BecauseItsTheCover +05/30/2013,Sports_celeb,@MartinBrodeur,Keep Tweeting! #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,@RobbieGould09 is voting #NHL14Brodeur from Chicago! Where are you voting from? http://t.co/zpN527sPrK +05/30/2013,Sports_celeb,@MartinBrodeur,"Vote #NHL14Brodeur All Day! +Check Out This Video + http://t.co/nbZeJ94oXh" +05/30/2013,Sports_celeb,@MartinBrodeur,RT if you're voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhldevils: It's the last Thursday of the #NHL14CoverVote competition, make it count #DevilsArmy. Tweet #NHL14Brodeur." +05/30/2013,Sports_celeb,@MartinBrodeur,Good Morning Everyone! Remember every time you use #NHL14Brodeur today it counts as two votes for me for the #NHL14CoverVote. Tweet away. +05/30/2013,Sports_celeb,@MartinBrodeur,"Hey guys we made it to the finals! Don't Stop Voting #NHL14Brodeur +Video:http://t.co/vfBySPX4Sx" +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,It's #TBT Tweet Brodeur Thursday! Use #NHL14Brodeur all day for a chance to win a signed mini stick! Put me on the Cover of NHL14! +05/29/2013,Sports_celeb,@MartinBrodeur,"How many times have you voted for me today for the #NHL14CoverVote ? +Vote for me at http://t.co/36sYc1QXeP" +05/29/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: Rock the vote #DevilsArmy! Support @MartinBrodeur for #NHL14Cover by voting here: http://t.co/oaYp65nSbs. Voting is unlimite… +05/28/2013,Sports_celeb,@MartinBrodeur,"You guys are doing great! +Make sure to Keep Voting for me! +Vote Here: http://t.co/36sYc1QXeP http://t.co/24iBOwe8mA" +05/27/2013,Sports_celeb,@MartinBrodeur,"RT @nhldevils: It's the final countdown! @MartinBrodeur is in the finals! Voting is live NOW, vote here: http://t.co/b05e6rzEXJ" +05/27/2013,Sports_celeb,@MartinBrodeur,"I made it to the Final Round of the #NHL14CoverVote! Keep Voting for me! +http://t.co/vtGvDc8V55 +Can't win without you guys!" +05/27/2013,Sports_celeb,@MartinBrodeur,"Send me to the Finals of the #NHL14CoverVote ! Get in your last votes for this round. +Vote Here: http://t.co/vtGvDc8V55" +05/25/2013,Sports_celeb,@MartinBrodeur,Congrats @P0ly95 you are the winner of the signed Mini Stick! Send Me A DM to claim your prize +07/01/2018,Sports_celeb,@ToreyKrug,#DirtyWater +06/15/2018,Sports_celeb,@ToreyKrug,"RT @NHLBruins: .@ToreyKrug: not normally a goalie. + +RT if the blue liner's lunging stick stop in overtime against Montreal was your favorit…" +06/15/2018,Sports_celeb,@ToreyKrug,@NHLBruins Would love to get the pic of that! +06/15/2018,Sports_celeb,@ToreyKrug,@BLerg11 My goodness. He needs to meet my girl! +06/11/2018,Sports_celeb,@ToreyKrug,RT @NHL: https://t.co/H0HGORwg5d +06/10/2018,Sports_celeb,@ToreyKrug,"RT @Krug39: Had a great time celebrating Dad’s 60th tonight!!! + +He’s responsible for this whole crew! + +#ThanksDad #Coach #Papa https://t.co…" +06/01/2018,Sports_celeb,@ToreyKrug,Everyone hates @Money23Green when he’s not on their team. But when he is your teammate you love him to death... I p… https://t.co/TJq1YlAs8C +05/31/2018,Sports_celeb,@ToreyKrug,@Buccigross This pic is all-time! +05/24/2018,Sports_celeb,@ToreyKrug,RT @GreekGodOfHops: Twitter would never promote this but there needs to be a day for unplugging from twitter and all social media sites. So… +05/16/2018,Sports_celeb,@ToreyKrug,@Mmato27 Dude. Fly me some? +05/15/2018,Sports_celeb,@ToreyKrug,"@daleicious23 Could you imagine if that happened to me and my job, Dale? In your opinion, it would often!" +05/14/2018,Sports_celeb,@ToreyKrug,Thank you guys for all the support this season. We will be back! https://t.co/V724ySfc7J +12/22/2017,Sports_celeb,@ToreyKrug,Check it out! Would make for a nice gift 😉 https://t.co/iFKwhWv6JJ +12/21/2017,Sports_celeb,@ToreyKrug,I highly suggest watching @isaiahthomas ‘s #BookOfIsaiah2 ... #IT #respect +12/15/2017,Sports_celeb,@ToreyKrug,"A friend of mine reached out when his buddy’s child suddenly passed recently. If you’re up for it, please consider… https://t.co/J10PrNbwl4" +11/30/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: Strong work, @ToreyKrug. 👌 https://t.co/dz9ZFf3wDn" +10/31/2017,Sports_celeb,@ToreyKrug,"RT @TheSportsMuseum: #Bostonvs.Bullies has officially reached 50,000 kids! We're very ecstatic & proud w/ how far the program has come! #Le…" +10/09/2017,Sports_celeb,@ToreyKrug,👀 +10/08/2017,Sports_celeb,@ToreyKrug,Where's our trophy @stoolpresidente ?! +10/07/2017,Sports_celeb,@ToreyKrug,@scottzolak @Bruinsnumba1 Sup... Sparty on! +10/07/2017,Sports_celeb,@ToreyKrug,@NHL_AaronWard Not a peep out of you guys for last 8 years. Finally... +10/06/2017,Sports_celeb,@ToreyKrug,👀 you're gonna look good in Green and White https://t.co/NEXrOgpzbg +10/05/2017,Sports_celeb,@ToreyKrug,"#Boston, Let's Go!" +10/05/2017,Sports_celeb,@ToreyKrug,@stoolpresidente Hot 'n Sweaty +10/04/2017,Sports_celeb,@ToreyKrug,@K_Sodd Beauty! +10/02/2017,Sports_celeb,@ToreyKrug,@jettestephen Ha I gotta check on that! Poor guy +10/02/2017,Sports_celeb,@ToreyKrug,RT @CFBONFOX: .@MSU_Football did the Iowa wave yesterday while hosting the Hawkeyes and my god is it dusty in here https://t.co/keGsvm0iE1 +10/02/2017,Sports_celeb,@ToreyKrug,@_JimmyS_ @BNightengale Sit down and watch. +09/28/2017,Sports_celeb,@ToreyKrug,RT @JRandalWard42: Some thoughts...excuse the length! https://t.co/YUNMgjaAgn +09/26/2017,Sports_celeb,@ToreyKrug,"@matthewmacd4 Thanks man! Ya, I don't think right place, right time!" +09/26/2017,Sports_celeb,@ToreyKrug,@matthewmacd4 Clearly didn't know what I RT. Immediately removed. The way you phrased this tweet leads me to believ… https://t.co/VtIbQuFIIW +09/26/2017,Sports_celeb,@ToreyKrug,@kebuddle You're right. I don't even know if that's true or not. My bad. Do you know if it is or isn't though? +09/24/2017,Sports_celeb,@ToreyKrug,"Those that witnessed the end of the @Lions game, welcome to my childhood." +09/24/2017,Sports_celeb,@ToreyKrug,RT @SportsCentre: JUST IN: Stanley Cup champion Pittsburgh Penguins release Team statement regarding White House visit: https://t.co/zx0kYf… +09/24/2017,Sports_celeb,@ToreyKrug,RT @TSNHockey: JUST IN: Stanley Cup champion Pittsburgh Penguins release Team statement regarding White House visit: https://t.co/sm6qPJlfjA +09/23/2017,Sports_celeb,@ToreyKrug,Waiting for @Bmarch63 to log back on to @Twitter https://t.co/Fl5LGDaEvl +09/22/2017,Sports_celeb,@ToreyKrug,RT @denisleary: Join us for #ComicsComeHome23 @tdgarden Nov 18th. Here's why: Comics Come Home therapeutic for Neely https://t.co/O8P6rpK1X… +09/21/2017,Sports_celeb,@ToreyKrug,@Bmarch63 Can't wait to see your face off percentage +09/19/2017,Sports_celeb,@ToreyKrug,RT @SullivanTire: Guess who stopped by our Watertown location last week... Our favorite #Bruins player @ToreyKrug! #nhl #hockey #sullivanti… +09/18/2017,Sports_celeb,@ToreyKrug,"@Zvendi13 keep grinding away buddy. Keep your head up, put in the work and don't listen to the naysayers. Let them fuel the fire. Good luck!" +09/17/2017,Sports_celeb,@ToreyKrug,RT @Sam__OConnor: Everyone do yourself a favor and watch @ToreyKrug ig story +09/14/2017,Sports_celeb,@ToreyKrug,My boy 🍝 dinner on you bro @pastrnak96 +09/12/2017,Sports_celeb,@ToreyKrug,Congrats @KipMooreMusic on a great album. You guys kill it on #SLOWHEART +09/12/2017,Sports_celeb,@ToreyKrug,"@13Photography Ya... seriously, it's not. But hard to get upset at a #34 home run." +09/11/2017,Sports_celeb,@ToreyKrug,It was a pleasure meeting you. Anyone recognize this guy? https://t.co/m3bsEhohbB +09/11/2017,Sports_celeb,@ToreyKrug,RT @NHL: Craig Cunningham's transition from the ice to the stands has been a successful one. https://t.co/a2A4hHQ6Ky +09/10/2017,Sports_celeb,@ToreyKrug,I'll be @fenwaypark gates today with @NHLBruins teammates to collect donations for Hurricane Irma relief with @FlaPanthers @RedSox +09/03/2017,Sports_celeb,@ToreyKrug,RT @ChirpHard: This skit by Andrew Ference will always be hilarious https://t.co/96ipv73VMk +09/03/2017,Sports_celeb,@ToreyKrug,"RT @Pac12Network: This is anything but a regular PAT. + +Jake Olson, blind since age 12, just snapped for the first time in a live game. http…" +09/01/2017,Sports_celeb,@ToreyKrug,"RT @JustinVerlander: Thank you to Detroit for an incredible 13-seasons, a city that will always be important to me.… https://t.co/QNaPBVZuY5" +09/01/2017,Sports_celeb,@ToreyKrug,RT @celtics: *chills* https://t.co/9IQtQAjCXC +08/31/2017,Sports_celeb,@ToreyKrug,@fistbumpkid @KyleKrug1 See you soon buddy!!!!! +08/30/2017,Sports_celeb,@ToreyKrug,Thanks to everyone at @EASPORTSNHL for the scoop on my #NHL18Ratings and the nice slice of humble pie. Can't wait… https://t.co/Hk1BTCQPt8 +08/30/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: The boys were special guests down in Foxborough today. 🏒🏈 + +Thanks for having us, @Patriots! https://t.co/TQUGGtYaf9" +08/21/2017,Sports_celeb,@ToreyKrug,@Mmato27 Ya... @Buccigross knows what's good. Looking sharp bud. +08/20/2017,Sports_celeb,@ToreyKrug,Next time say hello!!! https://t.co/GcmAHvNMPv +08/19/2017,Sports_celeb,@ToreyKrug,Stay safe Boston +08/19/2017,Sports_celeb,@ToreyKrug,RT @theScoreNHL: Roadrunners to retire Cunningham's jersey number https://t.co/cTzGR3ZRej https://t.co/UfeU2nvme8 +08/08/2017,Sports_celeb,@ToreyKrug,RT @MiLB: BREAKING: #Tigers prospect Cam Gibson hits a two-run triple in the sixth to complete the cycle for @LkdFlyingTigers https://t.co/… +08/04/2017,Sports_celeb,@ToreyKrug,@NickCantalupo17 Happy Birthday Tony! +07/27/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: .@tuukkarask and @ToreyKrug showing the kids off-ice agility exercises 💪 🐻 + +#BruinsGlobal https://t.co/LDR6wML5C6" +07/23/2017,Sports_celeb,@ToreyKrug,"RT @Skillsy75: After years of slowing down the NHL, I'm excited to #growthegame in China with @ToreyKrug and @NHLBruins #BruinsGlobal" +07/23/2017,Sports_celeb,@ToreyKrug,RT @StephenCurry30: “Are you not entertained???” @JordanSpieth +07/23/2017,Sports_celeb,@ToreyKrug,"@JordanSpieth let's clean up this mess and continue this tomorrow... + +""No, I'll just beat him now"" -Happy Gilmore" +07/23/2017,Sports_celeb,@ToreyKrug,@DustinBrown88 Ignore the noise! Thanks for the support. +07/22/2017,Sports_celeb,@ToreyKrug,Hard to root against @JordanSpieth but it's pretty cool that every time Kuchar hits they yell my last name. #TheOpen https://t.co/ozNzPiDJUq +07/20/2017,Sports_celeb,@ToreyKrug,@FeitsBarstool @hoosierjm26 +07/16/2017,Sports_celeb,@ToreyKrug,@Marcus36Smart @Amanda_Pflugrad Go play video games and begging broads for follows. Goodnight bud. +07/15/2017,Sports_celeb,@ToreyKrug,That's seriously a terrible call @RedSox +07/15/2017,Sports_celeb,@ToreyKrug,@DanyAllStar15 @ACbulldoghockey my brothers team @Krug39 +07/13/2017,Sports_celeb,@ToreyKrug,RT @TheMDSC: We're happy to announce that the MDSC is partnering with the National Down Syndrome Society to host a celebrity... https://t.c… +07/13/2017,Sports_celeb,@ToreyKrug,@Jack_Eichel11 Hahahha this is great. @NickBonino what kind of rims did you put on it? +07/08/2017,Sports_celeb,@ToreyKrug,RT @BobbyRobinsPro: Me and @MKrug7 respectfully disagreeing from @ToledoWalleye Valentine's Day card back in the day. https://t.co/ImpkEFNl… +07/08/2017,Sports_celeb,@ToreyKrug,Should have came and said hello. Sorry I missed you. Happy birthday! https://t.co/GaBiGXMiES +07/07/2017,Sports_celeb,@ToreyKrug,RT @PatrickChung23: @OnlyInBOS @BostonCasting How good you gotta be? Lol +07/05/2017,Sports_celeb,@ToreyKrug,I wanted to chirp you so bad but this is a sick picture #stillgonna #sendit #babysitter https://t.co/IwvQvwmxSu +06/24/2017,Sports_celeb,@ToreyKrug,"RT @MiHockeyNow: And now, a reminder in regards to the #NHLDraft... + +These are just some of the guys who never heard their names called.…" +06/24/2017,Sports_celeb,@ToreyKrug,Welcome to all @NHLBruins picks but especially @JStudnicka23 bringing another MI and Belle Tire product to the best sports city in America! +06/24/2017,Sports_celeb,@ToreyKrug,RT @J_Danglefest2: So excited to be apart of the @DetroitRedWings organization! Thankful for everyone who has made this so special. #DreamC… +06/23/2017,Sports_celeb,@ToreyKrug,"RT @StoolChiclets: .@ToreyKrug was bitter he didn't get selected in the NHL draft, but it was the best thing that ever happened to him http…" +06/23/2017,Sports_celeb,@ToreyKrug,"RT @darrenrovell: Heard Draymond could recite the 34 players who were drafted before him, so I made him do it https://t.co/imhjbC2Dbn (H/T…" +06/22/2017,Sports_celeb,@ToreyKrug,"RT @espn: On this date in 1984, Daniel LaRusso defeated the Cobra Kai with Mr. Miyagi's help to win the Under-18 All-Valley Karate Tourname…" +06/21/2017,Sports_celeb,@ToreyKrug,Let's go Bergy!! #Selke +06/21/2017,Sports_celeb,@ToreyKrug,"RT @DarrenDreger: After a 34-goal, 70-pt season David Pastrnak was named the Czech Republic's best player today. He's the youngest ever to…" +06/18/2017,Sports_celeb,@ToreyKrug,So excited to see @KevinJames tonight. What a beauty! +06/13/2017,Sports_celeb,@ToreyKrug,RT @NHLBruins: #NHLBruins hire Kevin Dean as assistant coach: https://t.co/YKxa5GxJ4P +06/13/2017,Sports_celeb,@ToreyKrug,RT @rileynash20: I've teamed up with Like A Pro where I give a behind the scenes look at my life and my gear of choice. Check it out! https… +06/13/2017,Sports_celeb,@ToreyKrug,"RT @DanyAllStar15: #50in07's Players of the Year: +1. Adam McQuaid +2. Auston Matthews +3. Craig Anderson +4. Stevie McDavid +5. Erik Karldad…" +06/13/2017,Sports_celeb,@ToreyKrug,"RT @theScore: 3-1 series lead. The Warriors just need to keep their composure! + +#NBAFinals https://t.co/6KfMyoQcG4" +06/09/2017,Sports_celeb,@ToreyKrug,My boy Craig!! https://t.co/FnNYWPHuoG +06/08/2017,Sports_celeb,@ToreyKrug,"RT @MSU_Hockey: It’s time to take the home of Spartan hockey to the next level! +https://t.co/JiCxEtbL7B" +06/05/2017,Sports_celeb,@ToreyKrug,"RT @27MilanLucic: Summer workout partner💪🏼 +@Unbreakable @terrellowens https://t.co/Lcah4hzIwi" +06/05/2017,Sports_celeb,@ToreyKrug,@hoosierjm26 @pastrnak96 @NHLBruins I don't get any bonus points for the fact that we expect that on a nightly basi… https://t.co/BVDpENrTGS +06/05/2017,Sports_celeb,@ToreyKrug,RT @dbackes42: GBSTL! Congrats @GentleBarn on reaching your goal! I'll donate an extra $6k in honor of the #stlouissix if we can get 6k ret… +06/04/2017,Sports_celeb,@ToreyKrug,RT @KirkHerbstreit: As a multi sports fan I have to say that @NHL playoff hockey and especially the #StanleyCupFinal is as good as it gets!… +06/03/2017,Sports_celeb,@ToreyKrug,"RT @E60: Why did @Money23Green donate $3.1M to @michiganstateu - it's all about friendly competition in this @E60 extra. His story Sun, 9a…" +06/01/2017,Sports_celeb,@ToreyKrug,"RT @FlaPanthers: Shawn Thornton has joined our executive staff! 👊 + +Details » https://t.co/zdz0ck8AX5 https://t.co/YE48tSNKuY" +05/27/2017,Sports_celeb,@ToreyKrug,"RT @EuropeanTour: Aaron's dad emailed us to ask if we could do something for his 9th birthday 🎂 + +We decided to do something special. https:…" +05/25/2017,Sports_celeb,@ToreyKrug,My little Czech bro turning 21 today. @pastrnak96 #DP #Ahoj #pancakes #asterisk https://t.co/eDonJNpWX4 +05/24/2017,Sports_celeb,@ToreyKrug,RT @ArizonaCoyotes: OFFICIAL: #Coyotes Add Craig Cunningham as Pro Scout https://t.co/gPwZSaWuvg +05/23/2017,Sports_celeb,@ToreyKrug,@berschy24 @ToledoPolice How do you lose a car? +05/22/2017,Sports_celeb,@ToreyKrug,@TheFunnyVine @hoosierjm26 +05/22/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: Today, Brad takes on Torey in the Top Goal Showdown. Check out their goals and vote below! https://t.co/uMxoQ7KUoJ" +05/22/2017,Sports_celeb,@ToreyKrug,https://t.co/hd8FGNgbf6 +05/16/2017,Sports_celeb,@ToreyKrug,@ofctimallen Wow. What a disappointment +05/16/2017,Sports_celeb,@ToreyKrug,Hey O! @KellyOlynyk. +05/15/2017,Sports_celeb,@ToreyKrug,Let's go ☘️!!! +05/13/2017,Sports_celeb,@ToreyKrug,RT @hoosierjm26: @DanyAllStar15 Yes...great call +05/07/2017,Sports_celeb,@ToreyKrug,@jmwall24 Ya that was me. I was terrible +05/05/2017,Sports_celeb,@ToreyKrug,@BarstoolChief @michiganstateu @MSU_Hockey Not the doctor I should be +05/05/2017,Sports_celeb,@ToreyKrug,"It only took 7 years, but I finally graduated from @michiganstateu. #studentathlete @MSU_Hockey thank you to those that made it possible" +05/03/2017,Sports_celeb,@ToreyKrug,RT @mstlouis_26: @NHL Love this! All the OT games have been great but you can't fake this! #realemotions#coach https://t.co/N2hFRUZdCj +05/03/2017,Sports_celeb,@ToreyKrug,Wow @Isaiah_Thomas 👀 +04/11/2017,Sports_celeb,@ToreyKrug,RT @MSU_Hockey: Welcome back home Danton Cole! https://t.co/YeIBfxAZex https://t.co/5ajaRhtZHF +03/12/2017,Sports_celeb,@ToreyKrug,Best part of today's game was Stone Cold's entrance music in the 3rd period. Well done @tdgarden @steveaustinBSR https://t.co/z3wOXAZxbV +03/09/2017,Sports_celeb,@ToreyKrug,You're the man Craig https://t.co/cr4hq7evTS +03/08/2017,Sports_celeb,@ToreyKrug,"My buddy is up for the Senior Class Award for NCAA hockey, please vote for @Chuckdonald9 +https://t.co/P59r34rYQ6" +03/05/2017,Sports_celeb,@ToreyKrug,RT @NHL: Take advice wherever you can. https://t.co/KRScZsrAOY +03/05/2017,Sports_celeb,@ToreyKrug,@kelllliebyrne @NHLBruins @NHL congrats guys! Very happy for you. +03/05/2017,Sports_celeb,@ToreyKrug,@fistbumpkid gotta make my buddy happy! Thanks for the fist bump and the good luck! +03/04/2017,Sports_celeb,@ToreyKrug,RT @Robsmith210: Another big night for @BelleTire AAA alums as 2 members of 07 @usahockey National Champs face off against each other @To… +02/27/2017,Sports_celeb,@ToreyKrug,Posting this a couple days late. Make sure you get over there! https://t.co/WAfjX8iuFd +01/31/2017,Sports_celeb,@ToreyKrug,RT @SullivanTire: Stop by our Weymouth Ma. location on Washington St this Thursday 5:30-6:30pm & meet @ToreyKrug https://t.co/LqOtDKVF4u +01/31/2017,Sports_celeb,@ToreyKrug,Looking forward to it! See you there https://t.co/T9lkR0itDW +01/26/2017,Sports_celeb,@ToreyKrug,"RT @SullivanTire: Meet Boston Bruin Torey Krug 5:30-6:30PM on February 2 at our Weymouth, MA location on Washington Street! #Bruins https:/…" +01/25/2017,Sports_celeb,@ToreyKrug,"RT @BeII_LetsTaIk: For every retweet this gets, @Bell will donate 5¢ towards helping people with mental illness. Lets see how much we can…" +12/25/2016,Sports_celeb,@ToreyKrug,Merry Christmas buddy! https://t.co/MFSEqHeZJa +12/20/2016,Sports_celeb,@ToreyKrug,"RT @USHL: Forward of the Week: Jack Adams scores 5-point weekend, takes over USHL scoring lead https://t.co/XjYb0YO2Pd #WhosNext https://t.…" +12/16/2016,Sports_celeb,@ToreyKrug,Thanks @originalstix for the phone case! Great idea for hockey fans. #Sparty +11/22/2016,Sports_celeb,@ToreyKrug,"RT @AM34: Praying for you Craig, keep fighting. #cunnycan" +11/22/2016,Sports_celeb,@ToreyKrug,RT @BobbyRobinsPro: Cunny is one of the great ones. Been thinking about that toothless laugh of his! Talk about a heart of gold. Prayers yo… +11/22/2016,Sports_celeb,@ToreyKrug,#Cunnycan +11/17/2016,Sports_celeb,@ToreyKrug,Congrats @RickPorcello on the CY Young! #hotice https://t.co/s1oQBdbaTU +11/14/2016,Sports_celeb,@ToreyKrug,@NickBadgio glory days +11/13/2016,Sports_celeb,@ToreyKrug,@KyleKrug1 @ZGolski @Krug39 @zkrug19 @MKrug7 maroon shirt night for the fans? Congrats jack. +11/11/2016,Sports_celeb,@ToreyKrug,Great group to help out on Veterans Day... They make a big impact for military families! https://t.co/sDYX1Acl2z +11/11/2016,Sports_celeb,@ToreyKrug,@fistbumpkid thanks buddy!! +11/09/2016,Sports_celeb,@ToreyKrug,"RT @NHLBruins: #NHLBruins wives surprise moms-to-be at @MarchofDimes Military Baby Shower. + +Read more: https://t.co/cMExn8Wt2t https://t.co…" +10/18/2016,Sports_celeb,@ToreyKrug,RT @Krug39: First day of practice! #bagger https://t.co/gd2pZC8ySi +10/14/2016,Sports_celeb,@ToreyKrug,I'd prefer not to. Thanks for the follow https://t.co/kvNLL3ajFD +10/12/2016,Sports_celeb,@ToreyKrug,RT @NickFoligno: @BlueJacketsNHL @CBJfoundation @nationwidekids @BostonChildrens https://t.co/2ySnt1ZbFT +10/09/2016,Sports_celeb,@ToreyKrug,I feel I may be watching this at some point today... metaphorically speaking of course. https://t.co/YTjxbskBiP +10/07/2016,Sports_celeb,@ToreyKrug,@ACzarnik7 move on bro +10/06/2016,Sports_celeb,@ToreyKrug,RT @davidortiz: Locked in. Lets do this one last time Boston. +10/06/2016,Sports_celeb,@ToreyKrug,Congrats @mstlouis_26 https://t.co/YoeNaYutGs +10/03/2016,Sports_celeb,@ToreyKrug,RT @yoursportsstore: Public signing event #BostonBruins Patrice Bergeron & @ToreyKrug 11/6 1-2pm at Shriner Sports Show in Wilmington. Tick… +10/03/2016,Sports_celeb,@ToreyKrug,RT @stoolpresidente: He's back!!!! https://t.co/wQQJUToPBR. #BradyIsComing #brady +09/28/2016,Sports_celeb,@ToreyKrug,RT @mbartkowski12: Some lady just walked into lululemon and asked if they had organic cotton. https://t.co/ZmVjt7bpul +09/26/2016,Sports_celeb,@ToreyKrug,@DTrinidadM4 I got you bro! +09/22/2016,Sports_celeb,@ToreyKrug,RT @TyRandell64: Medicals and Fitness testing [✔️] Pumped to hit the ice tomorrow morning! +09/22/2016,Sports_celeb,@ToreyKrug,@Matt_Beleskey @freshii 👀 +09/21/2016,Sports_celeb,@ToreyKrug,@11hockeyzach I sure do bud! Hope you're doing well +09/21/2016,Sports_celeb,@ToreyKrug,Congrats on the win @Bmarch63 https://t.co/AaLNDIJgyq +09/21/2016,Sports_celeb,@ToreyKrug,@TwiterTouches I'll try harder next time just for you. +09/20/2016,Sports_celeb,@ToreyKrug,RT @DAVIDprice24: I haven't done my due diligence for my teammate and it's well over due...RICK PORCELLO for cy!! Last night should have so… +09/18/2016,Sports_celeb,@ToreyKrug,RT @SInow: The Lions lost to the Titans in the most Lions way possible (by @RohanNadkarni) https://t.co/uWmFdfBpDP https://t.co/8xlHFlbHQq +09/18/2016,Sports_celeb,@ToreyKrug,@Bryan_McGrath what's wrong? +09/18/2016,Sports_celeb,@ToreyKrug,@scottzolak #Zoknows +09/18/2016,Sports_celeb,@ToreyKrug,@BMahoney11 @MSU_Football @NDFootball fair enough. Good luck! +09/18/2016,Sports_celeb,@ToreyKrug,@BMahoney11 @MSU_Football you must be a Brady fan +09/17/2016,Sports_celeb,@ToreyKrug,Let's go @MSU_Football !!! +09/16/2016,Sports_celeb,@ToreyKrug,@zkrug19 https://t.co/I0t211CO9p +09/14/2016,Sports_celeb,@ToreyKrug,@JosephKellyJr can't wait! https://t.co/OXvvFxi5Uc +09/12/2016,Sports_celeb,@ToreyKrug,@stoolpresidente all part of the plan. Catanzaro was rattled as well. Well played! +09/11/2016,Sports_celeb,@ToreyKrug,"RT @BigTenNetwork: We asked you to vote for the best @B1Gfootball play in the past decade! +And the winner is... https://t.co/gFjMUYzdz5" +09/09/2016,Sports_celeb,@ToreyKrug,Bringing #TheD to Boston @KidRock https://t.co/IxVnpNubCx +09/09/2016,Sports_celeb,@ToreyKrug,RT @RedSox: We're joining forces w/ the @NHLBruins next Wed for Bruins Night at Fenway but you could win a shirt right now! ⚾️➕🏒 https://t.… +09/09/2016,Sports_celeb,@ToreyKrug,@ThomasRhett I'll swing by to grab those hats! +09/08/2016,Sports_celeb,@ToreyKrug,"RT @DanyAllStar15: . @ShawnMcKenzieSN yeah, over/under Adam McQuaid blocks a slap shot with his face 10 times. Love that guy. Savage" +09/07/2016,Sports_celeb,@ToreyKrug,"RT @IV_BOSTON: Boston Bruins 2017 +#Bruins https://t.co/rJk7nJTW1v" +09/05/2016,Sports_celeb,@ToreyKrug,@Buccigross where can you see this live? NBC showing delayed +08/31/2016,Sports_celeb,@ToreyKrug,Had fun yesterday at Fenway for the Jimmy Fund telethon @13Photography #kcancer https://t.co/QR5q6FZPwX +08/30/2016,Sports_celeb,@ToreyKrug,"RT @Buster_ESPN: Boston is 20-7 in games started by Rick Porcello, 53-51 in all others." +08/30/2016,Sports_celeb,@ToreyKrug,RT @TheJimmyFund: .@NHLBruins player @ToreyKrug is live on @NESN to help #KCANCER! https://t.co/DI4V4sBD6a https://t.co/JP2dnCC48z +08/28/2016,Sports_celeb,@ToreyKrug,RT @theScore: Dustin Pedroia learned of his historic hitting streak watchng TV during bathroom visit. https://t.co/MkACv5MgBD https://t.co/… +08/26/2016,Sports_celeb,@ToreyKrug,#Fenway https://t.co/2aakh8F43j +08/26/2016,Sports_celeb,@ToreyKrug,A former colleague of mine has begun his @twitter campaign. @mbartkowski12 +08/26/2016,Sports_celeb,@ToreyKrug,RT @mbartkowski12: Yes it's me +08/23/2016,Sports_celeb,@ToreyKrug,"RT @ECHLThunder: The Wolfe Returns! The #ADKThunder have resigned their top 2016 playoff scorer, @wolfe_greg! https://t.co/jiQoOOjthC https…" +08/20/2016,Sports_celeb,@ToreyKrug,Can anyone tell me what time @zacbrownband goes on stage tonight at Fenway? https://t.co/x5T5dZoJMA +08/19/2016,Sports_celeb,@ToreyKrug,@hoosierjm26 take a hint bro +08/19/2016,Sports_celeb,@ToreyKrug,@Peterson1989 check out @IV_BOSTON +08/18/2016,Sports_celeb,@ToreyKrug,@NHLBruins heavy feet John @hoosierjm26 +08/15/2016,Sports_celeb,@ToreyKrug,1 year ago today! https://t.co/yCpvU2ZiSd +08/14/2016,Sports_celeb,@ToreyKrug,I know someone like this... https://t.co/CBLlaieJLU +08/14/2016,Sports_celeb,@ToreyKrug,"@joey_partridge used to wear 44, wanted to stay in 40s. @RichPeverley had 49 which I liked so I took 47!" +08/13/2016,Sports_celeb,@ToreyKrug,@MattShumlas I remember that weekend! +08/13/2016,Sports_celeb,@ToreyKrug,@tuukkatimeRI definitely thinking.... +08/13/2016,Sports_celeb,@ToreyKrug,@MrChewy_ love wearing 47. #TK47 +08/11/2016,Sports_celeb,@ToreyKrug,Back in the day! https://t.co/lEgWPXDu6c +08/09/2016,Sports_celeb,@ToreyKrug,This suit 🔥🔥 https://t.co/UlbYUOB6cj +08/07/2016,Sports_celeb,@ToreyKrug,👀 @CMcAvoy44 +08/07/2016,Sports_celeb,@ToreyKrug,@NickBonino was it karma driven? +08/04/2016,Sports_celeb,@ToreyKrug,RT @NHLBruins: Bruins announce Trent Whitfield & Jay Leach have been named assistant coaches of @AHLBruins: https://t.co/qyNMIpxl8N https:/… +08/04/2016,Sports_celeb,@ToreyKrug,RT @lenaweenews: Adrian College is preparing to celebrate Arrington Ice Arena and what the building has brought to the #AdrianMI... https:/… +07/31/2016,Sports_celeb,@ToreyKrug,@Mmato27 I know @pastrnak96 would +07/24/2016,Sports_celeb,@ToreyKrug,RT @DantonioMark: https://t.co/cbZQmDykA1 +07/24/2016,Sports_celeb,@ToreyKrug,RT @NCAA: We mourn the loss of Nebraska punter Sam Foltz and former Michigan State punter Mike Sadler who died in a car crash. https://t.co… +02/22/2018,Sports_celeb,@drose,RT @countermoveco: Office Vibes https://t.co/rEWDQLn5tm +07/28/2017,Sports_celeb,@drose,"Las Vegas, catch me and the rest of my @adidasHoops fam hanging at #LVL3 today. See you there. https://t.co/jmpV1oAtmU" +07/25/2017,Sports_celeb,@drose,📍Las Vegas. July 27-28. Come hang with me at #LVL3 with @adidasHoops https://t.co/QqqYueWv8K +06/30/2017,Sports_celeb,@drose,S/O to my adidas fam for the gear! #crazy #giftedbyadidas @adidasoriginals https://t.co/8NoFA0g4Lr +06/01/2017,Sports_celeb,@drose,Need all my followers to me a favor & vote for @midwestdream_ for the 2017 TBT tourney. Voting ends at 12pm tomorro… https://t.co/NgCYoKgqDj +12/06/2016,Sports_celeb,@drose,Me and my Rook! # Knicks https://t.co/QIOAXQbMSi +09/03/2016,Sports_celeb,@drose,Doing work in @CallofDuty Infinite Warfare. My man @MichaelPhelps is next up! Who wants to play? #CODXP2016 #ad https://t.co/teOemgQWUE +07/21/2016,Sports_celeb,@drose,Check me out today at the @adidashoops #LVL3 experience at Planet Hollywood. I’ll be there from 4:30PM – 6:30PM https://t.co/iz8nvDN656 +06/24/2016,Sports_celeb,@drose,I'm ready for New York. https://t.co/Ib1GA4qbdc https://t.co/BP0uWIJfQX +12/02/2015,Sports_celeb,@drose,RT @chicagobulls: When Derrick Rose surprises you with a shopping spree! #NBACares https://t.co/K4tjjI1Nyr +12/02/2015,Sports_celeb,@drose,"RT @chicagobulls: As part of #NBACares Season of Giving, @drose took teens from @AftrSchoolMttrs on a shopping spree to @adidasHoops! https…" +11/11/2015,Sports_celeb,@drose,Looking for the Yeezy 350 boost? Go check out adidas Style Chicago at 50 East Oak Street. Raffle sign up ends Thursday at 5pm. +11/06/2015,Sports_celeb,@drose,"Thanks for all the love on my PJ shirt, get yours at https://t.co/mDMQdEK9tH + +@richgirlcandy @ziptanks https://t.co/nHrxG53pw9" +04/23/2015,Sports_celeb,@drose,My guys #JoakimNoah and #PauGasol are finalists for the #NBACommunityAssist award. RT to cast your vote +09/12/2014,Sports_celeb,@drose,Thank you @luciamartinez1_ for the gift! Keep working hard http://t.co/XrNjiHgu01 +01/23/2014,Sports_celeb,@drose,Usually don't post pics but couldn't help it. Thanks @adidasHoops for the HARD work! It motivates me to keep GRINDING http://t.co/WIlRUE32Yc +01/12/2014,Sports_celeb,@drose,CDR I'm happy to see you back. You deserve it man +06/11/2013,Sports_celeb,@drose,In the gym working out listening to Born Sinner. @JColeNC you made me a believer. I appreciate yo music. I'll be supporting June 18th. +03/07/2013,Sports_celeb,@drose,"I'm just having a bad day and want u to know ""The Boy"", lol, does have down days but thinking about yall having my BACK makes me feel good." +03/07/2013,Sports_celeb,@drose,"Bren Bren lol, Wayne, Reg, Greedy and the rest of the Rose family I LOVE U." +03/07/2013,Sports_celeb,@drose,"What's the most important thing in life? To me, it's FAMILY...If you take away the fame & fortune they're the ones that will always be there" +01/13/2013,Sports_celeb,@drose,Anything is possible. #blessed http://t.co/H5x9eYag +11/27/2012,Sports_celeb,@drose,I'm all in for my fans RT @adidashoops: WORLD PREMIERE: #TheReturn of @drose Episode 6 - all in http://t.co/B7zVbokU +11/06/2012,Sports_celeb,@drose,My lil man PJ http://t.co/6dCsbhyT +11/06/2012,Sports_celeb,@drose,http://t.co/MPeEokAT +11/06/2012,Sports_celeb,@drose,http://t.co/fcY9VW95 +10/21/2012,Sports_celeb,@drose,because five year went pass and it seem like I just left there! Be safe and Gotti what's up! +10/21/2012,Sports_celeb,@drose,I just wanted to get that off my chest and let yall know that I miss everything about that city +10/21/2012,Sports_celeb,@drose,I know yall remember the good times we had and how we had to make a name for ourselves. +10/21/2012,Sports_celeb,@drose,had. Memphis will always be my second home no matter what! Yall showed me a lot of love and for that I will always stay loyal to you all. +10/21/2012,Sports_celeb,@drose,I was up early thinking about how time goes by. I miss the times I had at the University of Memphis with my teammates and how much fun we +10/19/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 5 - Drive http://t.co/ndar6ke4 +10/18/2012,Sports_celeb,@drose,S/o to Taj McWilliams- Franklin of the Minnesota Lynx for wearing the D. Rose 3 in the WNBA finals...Good Luck! +10/05/2012,Sports_celeb,@drose,The D Rose 3 launched today! Check them out and let me know what you think #TheReturn http://t.co/F6PYWn2t +10/04/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 4 - Push. http://t.co/QikltRcS +10/02/2012,Sports_celeb,@drose,"RT @chicagobulls: #Bulls Captains pose at #mediaday. @drose, @LuolDeng9, @JoakimNoah, @MisterCBooz @ Berto Center http://t.co/DPAgqcRb" +09/27/2012,Sports_celeb,@drose,Got in my first game of #NBA2K13 at the @2ksports launch party. Y'all gotta check this game out! http://t.co/3FNn7tz7 +09/25/2012,Sports_celeb,@drose,New @adidashoops commercial for my new shoe the #drose3. Tell me what you think #TheReturn http://t.co/gtqsC56I +09/20/2012,Sports_celeb,@drose,Best pizza in Chicago? That's easy... @giordanospizza +09/19/2012,Sports_celeb,@drose,"RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 3 – +Focus http://t.co/AzESfrbo" +09/13/2012,Sports_celeb,@drose,My new @adidashoops shoe the #drose3!! What do you all think? #TheReturn http://t.co/SRzk825M +09/13/2012,Sports_celeb,@drose,Just arrived at the @adidashoops event to launch my new shoe!! #TheReturn +09/12/2012,Sports_celeb,@drose,Chi town til I die! +09/12/2012,Sports_celeb,@drose,I pray everyday for US for real. I know I shouldn't be saying this because I hoop and it's not my lane but I feel like ppl should hear this. +09/12/2012,Sports_celeb,@drose,I don't like that fact that OUR kids are not in school and that's the only thing we have to SAVE these kids. +09/12/2012,Sports_celeb,@drose,I'm sitting here just thinking how sad it is that my city got to go through this. I love my city and everyone in it even my haters! +09/10/2012,Sports_celeb,@drose,Hope the CPS gets a deal done soon...we need our kids in school! #TheReturn +09/07/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIER: #TheReturn of @drose Episode 2- HOPE http://t.co/6wzZUUek +09/05/2012,Sports_celeb,@drose,Praying for my city man... #TheReturn +08/27/2012,Sports_celeb,@drose,Me and my Mom/Dad lol. Love her to death! #thereturn http://t.co/3gDo5KqF +08/24/2012,Sports_celeb,@drose,It’s crazy to see all of the love and support from you all. Thank you. I am blessed. So glad you like my video. #TheReturn +08/22/2012,Sports_celeb,@drose,Happy to share this with you all!! RT @adidashoops: WORLD PREMIERE: The Return of @drose Episode 1- BELIEF #TheReturn http://t.co/lLlAA7lQ +08/17/2012,Sports_celeb,@drose,Go follow my boys @BO_EE_TeamWinN and @callme_jd ASAP +08/17/2012,Sports_celeb,@drose,Blessed!!! Bowling with the FAM #TheReturn http://t.co/BIzCPShc +08/16/2012,Sports_celeb,@drose,Hard work isn't enough. You got to believe. #theReturn +08/15/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: The Return of D Rose. Every day @drose is getting stronger and faster. This is his story: http://t.co/r ... +08/15/2012,Sports_celeb,@drose,Feels good to be back in the gym... http://t.co/mrhU7FQk +08/14/2012,Sports_celeb,@drose,Thank you all for the love and support. I feel blessed to have such great fans. Good to be back in Chicago after training all summer in LA +08/12/2012,Sports_celeb,@drose,Congrats @USAbasketball for getting the gold! s/o to @russwest44 @kingjames @kevinlove @kdtrey5 @cp3 and everyone on #teamusa #olympics +08/12/2012,Sports_celeb,@drose,I want to wish everyone on @USAbasketball good luck today. Bring home the gold! Wish I could be out there with you all #teamusa #olympics +06/29/2018,Sports_celeb,@KyrieIrving,My bro @JayTatum0 and I are humbled by all of the support for our @ProCamps Youth Basketball Clinic. After hearing… https://t.co/DZP7Kuc9AY +06/21/2018,Sports_celeb,@KyrieIrving,"Dear Youngbloods, @Pepsi and @PlayersTribune are bringing you the fundamentals—it ain’t about getting famous, it’s… https://t.co/m437aNj9oO" +06/05/2018,Sports_celeb,@KyrieIrving,"Because, nothing works up your thirst for an ice cold @Pepsi like getting buckets #ad https://t.co/q4BzBFEAcw" +05/16/2018,Sports_celeb,@KyrieIrving,Looking forward to co-hosting my @ProCamps youth basketball clinic with @jaytatum0 this summer in Boston! Click for… https://t.co/pxamjockmY +03/17/2018,Sports_celeb,@KyrieIrving,Help @KevinHart4real find a Courtsidekick...enter for the #CourtSidekickContest at https://t.co/RXAavqClWx for a ch… https://t.co/FyUZSHDNjl +03/15/2018,Sports_celeb,@KyrieIrving,RT @Young_Athletes: Registration is now open for the 2018 Kyrie Irving/Rod Strickland Summer Basketball League. @KyrieIrving and @rod_stric… +02/12/2018,Sports_celeb,@KyrieIrving,The Legend is ready to ball on the big screen. Get ready to watch #UncleDrew in theaters June 29! #JustDrewIt… https://t.co/RGw88q9Urt +02/02/2018,Sports_celeb,@KyrieIrving,He gets buckets. He gets @Pepsi. He gets a #SBLII commercial. And the @uncledrewfilm is dropping soon. Check out Un… https://t.co/3Tcr5whUO8 +01/08/2018,Sports_celeb,@KyrieIrving,Jaylen Brown #NBAVote +01/08/2018,Sports_celeb,@KyrieIrving,Al Horford #NBAVote +01/08/2018,Sports_celeb,@KyrieIrving,Jayson Tatum #NBAVote +11/17/2017,Sports_celeb,@KyrieIrving,Proud to support @footlocker and their #GreatnessDoesGood campaign. Join me and go out and donate! #WeekofGreatness https://t.co/9tKziAEmWB +10/27/2017,Sports_celeb,@KyrieIrving,All love and good times when we are all chopping it up! Go check it out. +10/27/2017,Sports_celeb,@KyrieIrving,"Check out Coach Auriemma's @Genopodcast today, w/ myself and @suebird talking life, basketball, and more!! https://t.co/DxP2CjrkGZ" +09/10/2017,Sports_celeb,@KyrieIrving,#11 for Mr. Miagi aka my favorite player aka my best friend. Love you Dad. always https://t.co/gcH77Oj3dk +09/07/2017,Sports_celeb,@KyrieIrving,2K18 For the Culture https://t.co/MKEgW9Aqf3 +09/05/2017,Sports_celeb,@KyrieIrving,"RT @SportsCenter: Exclusive first look: Kyrie Irving and the cast of the upcoming @UncleDrewFilm. + +Can you name all the NBA stars? https://…" +08/10/2017,Sports_celeb,@KyrieIrving,RT @NBA2K: Introducing this year's #NBA2K18 cover athlete @KyrieIrving in his new @cavs uniform! #2KFirstLook https://t.co/WUE9uasQGA +07/21/2017,Sports_celeb,@KyrieIrving,"https://t.co/GpvHXiEng4 +Short Story Long with @dramadrama check it out." +07/06/2017,Sports_celeb,@KyrieIrving,"In case you missed it, I surprised my dad for #fathersday and remodeled his house on #MyHouzz. Check it out: https://t.co/OTml3rUAGI" +06/30/2017,Sports_celeb,@KyrieIrving,I'm adding another session to my Youth 🏀 @ProCamps presented by @NBA2K next week! Make sure you sign up soon. https://t.co/G6fWUgotvA +06/25/2017,Sports_celeb,@KyrieIrving,Love seeing my @nba and @wnba family participate in the #NYCPride March! All Love +04/06/2017,Sports_celeb,@KyrieIrving,RT @Young_Athletes: Registration is now open for the 2017 Kyrie Irving/Rod Strickland Summer Basketball League. @KyrieIrving and @rod_stric… +03/02/2017,Sports_celeb,@KyrieIrving,RT @skullcandy: Our search begins for a band to perform on the #Skullcandy stage @VansWarpedTour! Sign up now! #SKULLCANDYSHOWDOWN https://… +02/28/2017,Sports_celeb,@KyrieIrving,"Look good, play good! Best of luck to my Duke Blue Devils tonight as they rock the latest #KYRIE3 https://t.co/2nk99N1mBo" +02/20/2017,Sports_celeb,@KyrieIrving,Thank You New Orleans for the great hospitality for #NBAAllStar and the @NBA for putting on a great production. Thank you Fans!! +02/17/2017,Sports_celeb,@KyrieIrving,RT @NBA2K: https://t.co/pcG5znX59o +02/17/2017,Sports_celeb,@KyrieIrving,"RT @pepsi: ""The All Star game is not necessarily about the votes, it's about getting buckets."" - #UncleDrew https://t.co/TgSMMbidbb" +02/03/2017,Sports_celeb,@KyrieIrving,#TBT from the set with QuestLove https://t.co/ba2HOi297G https://t.co/JCGLvALWpx +01/15/2017,Sports_celeb,@KyrieIrving,Tristan Thompson #NBAVote +01/15/2017,Sports_celeb,@KyrieIrving,Kevin Love #NBAVote +01/12/2017,Sports_celeb,@KyrieIrving,Get after my @NikeTraining workout in the NTC App. #STOPEXERCISING #STARTTRAINING https://t.co/JOHjwbYDx6 +01/10/2017,Sports_celeb,@KyrieIrving,Yessir https://t.co/9eb3YKtpVk +12/30/2016,Sports_celeb,@KyrieIrving,Love using my Cavs in @NBA2K. Pick it up on sale and start your New Year right! +12/13/2016,Sports_celeb,@KyrieIrving,RT @NdotSmitty: It's TCA Tuesday! Text NOLAN to 20222 and $5 goes to help teens with cancer. Text & RT! #GiveTCATuesday #TeamNolan #TeenCan… +12/06/2016,Sports_celeb,@KyrieIrving,To all my young fans - you might have more in common with me than you think #GOBIG @KidsFootLocker https://t.co/2F6DmUSAmj +12/05/2016,Sports_celeb,@KyrieIrving,"Truly proud of all who stood and fought for #NoDALP Progress was made, but the fight is much bigger. Let's Keep pushing towards what is True" +11/28/2016,Sports_celeb,@KyrieIrving,Yessir! Thanks @Nike https://t.co/bXL1zbWNOw +11/22/2016,Sports_celeb,@KyrieIrving,"My prayers and thoughts are with everyone protesting at Standing Rock, I am with you all. #NoDAPL Defend the Sacred." +11/17/2016,Sports_celeb,@KyrieIrving,The #WeekofGreatness is back @footlocker and @kidsfootlocker starting this Saturday! Don’t miss it! https://t.co/o7mQ8Qpq5h +11/15/2016,Sports_celeb,@KyrieIrving,Appreciate the Love brother. @rickyrozay https://t.co/Y8D1rQa9zr +11/12/2016,Sports_celeb,@KyrieIrving,"""Obession is passion on curiosity steroids"" +Keep Pushing. Keep Learning. Keep Growing." +10/24/2016,Sports_celeb,@KyrieIrving,Just an inside look at life for me outside the game. Enjoy and I hope it can inspire you in some way. Thanks @SInow https://t.co/IC16PQ1VXY +10/20/2016,Sports_celeb,@KyrieIrving,"Yessir @KingJames, but don't forget about my game 5 fire. #whatsnext https://t.co/ft1I0sELch" +09/25/2016,Sports_celeb,@KyrieIrving,"Rest in Power Jose Fernandez. The world lost a great baseball player, but more importantly an even better person. Prayers up for his family." +09/16/2016,Sports_celeb,@KyrieIrving,Today's #2KDay. You already know the best day of my year. This is a close 2nd @NBA2K https://t.co/0RvBiFalks https://t.co/u1x7GiY6zW +09/16/2016,Sports_celeb,@KyrieIrving,Back to the #TheLand Sat 9/24 for @BestBuddiesOhio 1st Kyrie Friendship Walk & B-Ball Challenge. Sign up to support: https://t.co/6mRS0syV7e +09/09/2016,Sports_celeb,@KyrieIrving,I’ll get u next time on the tennis courts @Money23Green. It's #TimeToAssemble @NBA2K #NBAK17 https://t.co/0RvBiFalks https://t.co/veUuNU1VrS +07/24/2016,Sports_celeb,@KyrieIrving,This was hilarious! We surprised some fans along with @MarriottRewards. Watch the video! #FriendOfMR https://t.co/ysXFLUGsTI +07/12/2016,Sports_celeb,@KyrieIrving,Yessir! We are live on @CallofDuty.  Ready to watch? https://t.co/0CMdR5LXg8 #spon https://t.co/OAKfpXX5Hq +07/04/2016,Sports_celeb,@KyrieIrving,"RT @dukeblueplanet: Kyrie goes 1-on-1 with The GOAT + +🖥 WATCH: https://t.co/mmQsx6Im5b https://t.co/8da4CITBZI" +07/04/2016,Sports_celeb,@KyrieIrving,RT @WNBA: Tiffany Hayes does her best @KyrieIrving impression! #WNBATopPlays #WatchMeWork https://t.co/gTwFioPyzM +07/01/2016,Sports_celeb,@KyrieIrving,RT @nikebasketball: The Shot. Mission accomplished. #tbt #AlwaysBelieve https://t.co/PwFBvmHsr9 +07/01/2016,Sports_celeb,@KyrieIrving,Yessir @KingJames https://t.co/eDt2iFVlot +06/20/2016,Sports_celeb,@KyrieIrving,RT @KidsFootLocker: Thanks to @KyrieIrving #NBAFinals performance #KidsFootLocker will donate 190 Nike Kyries to @BGCA_Clubs Cleveland! htt… +05/17/2016,Sports_celeb,@KyrieIrving,"The Ky-Rispy Kreme, hot out the oven. Yessir! #Kyrie2. https://t.co/ZVP1gzAwhx" +05/10/2016,Sports_celeb,@KyrieIrving,'92 was a special year. #Kyrache https://t.co/Av3zyZvwdy +05/05/2016,Sports_celeb,@KyrieIrving,"Happy birthday brother @chrisbrown +#AllLove through whatever." +04/30/2016,Sports_celeb,@KyrieIrving,Watch highlights of me or watch me do my laundry. Or both. Only on @go90 +04/14/2016,Sports_celeb,@KyrieIrving,Great times last week with Marriott Rewards Premier Cardmembers and @jalenrose in Chicago #MarriottCard @chase https://t.co/fzPxolb40e +04/14/2016,Sports_celeb,@KyrieIrving,Mother Effin amazed!!!!!! Left the game on his terms and his way! Legend engraved in history forever!! +04/13/2016,Sports_celeb,@KyrieIrving,"Nothing but LOVE for Kobe, but I'll still break that old man's ankles… #LegendsLiveOn @NBA2K https://t.co/yCjCo8CiVy" +04/12/2016,Sports_celeb,@KyrieIrving,"Check it out!! +https://t.co/kHVnS1SQ64" +04/12/2016,Sports_celeb,@KyrieIrving,@skullcandy and I are taking it to another level. I'm happy to announce that I’m now an owner of the brand. +04/11/2016,Sports_celeb,@KyrieIrving,Prepare and play off Instinct. #mambaday https://t.co/zTNTFdG8E1 +04/11/2016,Sports_celeb,@KyrieIrving,"RT @cavs: Tomorrow, help us with an off-court assist to collect baby items for @DVCAC. #CavsCare INFO: https://t.co/7s727n1ME2 https://t.co…" +04/10/2016,Sports_celeb,@KyrieIrving,"RT @nikebasketball: History is written one word at a time. +Join us and tell Kobe your last word. #MambaDay https://t.co/ffrHhYEbBt +https://…" +04/07/2016,Sports_celeb,@KyrieIrving,IT’S A REVOLUTION. #NIKEFREE #JUSTDOIT https://t.co/0mrVqh6sLD +04/07/2016,Sports_celeb,@KyrieIrving,@stlindgren My brother Ryan Miller is an absolute Legend! And He's family so thats my guy. +03/30/2016,Sports_celeb,@KyrieIrving,Need y'all to Vote for my brother @Tsu_Surf to be the 2016 @XXL Freshmen 10th Spot! https://t.co/FuJGrgQPlx +03/15/2016,Sports_celeb,@KyrieIrving,Gotta have options!! https://t.co/D043UHSGP0 +03/14/2016,Sports_celeb,@KyrieIrving,"From my first bucket, to my Ky-reer High. None of this is possible without you, Dad. This is for you. #KYRIE2 https://t.co/wCn0Q0Gt7I" +03/07/2016,Sports_celeb,@KyrieIrving,"Control what you can control. Sounds so cliche, but its the bold truth. +Good Morning!!" +02/27/2016,Sports_celeb,@KyrieIrving,Funny song titles @BC24CLE @salma_PG24 @mattburroughs. Got me hyped to hit the studio! My @nikebasketball fam will hook you up. #KYRIE2 +02/27/2016,Sports_celeb,@KyrieIrving,RT @mattburroughs: @KyrieIrving KY-RAZY TRAIN (THE KILLA KROSSOVER KY-REMIX) do I get to pick it up court side or you need my address? #KYR… +02/27/2016,Sports_celeb,@KyrieIrving,RT @salma_PG24: @KyrieIrving You are my Ky-ryptonite #KYRIE2 +02/27/2016,Sports_celeb,@KyrieIrving,RT @BC24CLE: @KyrieIrving Ky of the Tiger #KYRIE2 +02/23/2016,Sports_celeb,@KyrieIrving,@KristineLeahy for sure!! +02/23/2016,Sports_celeb,@KyrieIrving,@KristineLeahy Ghost are definitely real and those bed bugs were staring me in my eyes when i woke up. nothing ghost about that one lol +02/23/2016,Sports_celeb,@KyrieIrving,LOL All of the above!!! +02/23/2016,Sports_celeb,@KyrieIrving,"Options on the day off, Start a new book, Go get some shots up, Swag on people in @NBA2K , or dominate in @CallofDuty .orr All of the above." +02/20/2016,Sports_celeb,@KyrieIrving,800 million copies sold lol. What should I name my next Kyrie-oke single? Best answer wins a signed album. #KYRIE2 https://t.co/mctHrqmKfB +02/20/2016,Sports_celeb,@KyrieIrving,Sheesh @Dame_Lillard +02/20/2016,Sports_celeb,@KyrieIrving,Through the good and bad you remained the same fierce competitive player. A true pleasure… https://t.co/pH5tQx1kpc +02/19/2016,Sports_celeb,@KyrieIrving,Hey @Usher you dig the vocals fam? #Kyrieoke #KYRIE2 https://t.co/A6opPUmtDP +02/18/2016,Sports_celeb,@KyrieIrving,Bout to have the whole R&B game shook. The Kyrie-oke has officially dropped #KYRIE2 https://t.co/W2xXv4rJWq +02/13/2016,Sports_celeb,@KyrieIrving,Imitated but never duplicated. Check it out! Yessir @nikebasketball @footlocker #Kyrie2 https://t.co/njHb1IYFQu +02/09/2016,Sports_celeb,@KyrieIrving,Behold! My latest trick. The @NIKEiD Ky-Razzle Dazzle. #KYRIE2 https://t.co/8fH1DcYtU6 +01/28/2016,Sports_celeb,@KyrieIrving,Fire! https://t.co/W3H13Xjmno +01/28/2016,Sports_celeb,@KyrieIrving,"""Obession is passion on curiosity steroids"" +#Cantstop +#wontstopworking" +01/28/2016,Sports_celeb,@KyrieIrving,enjoy them!! https://t.co/CwXWWweWVM +01/28/2016,Sports_celeb,@KyrieIrving,SWAG https://t.co/At6hiq7WhT +01/28/2016,Sports_celeb,@KyrieIrving,@bbreznick @kevinlove how could we fall from the top if their team is still winning games? +01/26/2016,Sports_celeb,@KyrieIrving,"RT @nikebasketball: Today @KyrieIrving is taking over. Stay tuned to go behind the scenes with Kyrie on Snapchat. + +👻NikeBasketball https://…" +01/17/2016,Sports_celeb,@KyrieIrving,Kevin Love #NBAVote +01/17/2016,Sports_celeb,@KyrieIrving,Lebron James #NBAVote +01/15/2016,Sports_celeb,@KyrieIrving,Thanks for the support @WojVerticalNBA https://t.co/m6pn5k8BeG +01/08/2016,Sports_celeb,@KyrieIrving,#THISYEARIWILL continue 2 be Hungry & Humble. Go to @skullcandy 2 find out how you could win XT Free Earbuds. https://t.co/783RN5qX3p +01/01/2016,Sports_celeb,@KyrieIrving,It's an INFERNO type of day. #Kyrie2 +01/01/2016,Sports_celeb,@KyrieIrving,"Left hand works the dribble, right hand gets the syrup. #BringYourGame Watch the full film: https://t.co/u5rFZvwVIn https://t.co/Yqo6ROuOXZ" +12/30/2015,Sports_celeb,@KyrieIrving,Fire coming soon. #Kyrie2 #Inferno https://t.co/EkgeACMOCX +12/30/2015,Sports_celeb,@KyrieIrving,Fire coming soon. #Kyrie2 #Inferno https://t.co/Q2z7rPEqQp +12/25/2015,Sports_celeb,@KyrieIrving,Where do you practice? #BringYourGame https://t.co/0uJXdijXVx +12/21/2015,Sports_celeb,@KyrieIrving,Work hard and continue to climb no matter the obstacles. I'm excited to be back and happy to share my story. https://t.co/tEorQppten +12/19/2015,Sports_celeb,@KyrieIrving,I'm back. +12/18/2015,Sports_celeb,@KyrieIrving,Got the W and my brother @chrisbrown 's album has uploded to my phone. #Greatnight +12/16/2015,Sports_celeb,@KyrieIrving,I had to make extra pancakes for some unexpected guests this morning #BringYourGame https://t.co/KwSveOltBM +12/16/2015,Sports_celeb,@KyrieIrving,"Sorry to dwindle the news, but I won't be returning tmrw. It was wrongfully reported. When I do come back you'll hear it directly from me." +12/15/2015,Sports_celeb,@KyrieIrving,Still a dream. https://t.co/W85Vik6XUK +12/11/2015,Sports_celeb,@KyrieIrving,Tomorrow! You think you can beat me in @NBA2K on XBOX One? I’ll send you a KYRIE 2 if you can. #2Kyrie2 https://t.co/jjF9gdPuL2 +12/10/2015,Sports_celeb,@KyrieIrving,This Saturday I am hosting a special event in @NBA2K. Be at MyPARK at 6PM EST sharp. #2Kyrie2 https://t.co/ewAIyHJDS0 +12/09/2015,Sports_celeb,@KyrieIrving,"https://t.co/3zSiQCVWeT +check it out!!" +12/06/2015,Sports_celeb,@KyrieIrving,nothing like good ol' Gaming talk. https://t.co/54UgILglF2 +12/03/2015,Sports_celeb,@KyrieIrving,"haha, I appreciate all that you all do for our world. https://t.co/bmgzpSuVtX" +12/01/2015,Sports_celeb,@KyrieIrving,Thank you for having me on!! #GivingTuesday https://t.co/yU4Z9qdqeY +12/01/2015,Sports_celeb,@KyrieIrving,Thank you for everything you all continue to do for our great world. https://t.co/XmSUVnIYNQ +11/25/2015,Sports_celeb,@KyrieIrving,"Azurie Elizabeth Irving 11/23/15 +35 hours of labor from her great mother and she came into the world… https://t.co/z1cBekk690" +11/23/2015,Sports_celeb,@KyrieIrving,i took a hiatus lol but i still appreciate the support of everyone for the game of basketball and myself. https://t.co/WvUmJoOU39 +11/23/2015,Sports_celeb,@KyrieIrving,line up crazy!! https://t.co/nHX67fHR2o +11/23/2015,Sports_celeb,@KyrieIrving,"@lexuswebb its my favorite part as well. I miss her, but i know she's watching me every second i breathe." +11/23/2015,Sports_celeb,@KyrieIrving,@damonhargejr #workworkwork lol +11/23/2015,Sports_celeb,@KyrieIrving,"@GusTrolly i like to describe my style as ""r&b skater"" lol" +11/23/2015,Sports_celeb,@KyrieIrving,@Barnette77 very soon! +11/23/2015,Sports_celeb,@KyrieIrving,@AnquanBoldin @pepsi Appreciate it brother +11/23/2015,Sports_celeb,@KyrieIrving,yessir. great design!! enjoy. https://t.co/v1FRIw8VgV +11/23/2015,Sports_celeb,@KyrieIrving,lol man epic TBT https://t.co/TfGFOsrlS1 +11/23/2015,Sports_celeb,@KyrieIrving,"RT @nicekicks: These guys...@KyrieIrving @imanshumpert. Cavs get the W! (h/t @ @Joseph_Talcott) + +https://t.co/nyEhhDDFk2" +11/14/2015,Sports_celeb,@KyrieIrving,"Prayers for the victims, families, and people of France affected by this horrible Tradgedy. #WeAreWithYouParis" +11/12/2015,Sports_celeb,@KyrieIrving,The wait is over! Uncle Drew brought his game to MIA and caught up with some old friends. #UncleDrew https://t.co/ki6pbr483B +11/09/2015,Sports_celeb,@KyrieIrving,"RT @pepsi: It’s been a long time coming, get ready for some new Uncle Drew on 11/12. #UncleDrew +https://t.co/W10QbwFZMS" +11/05/2015,Sports_celeb,@KyrieIrving,Thanks for the sick Zombies package @CallofDuty. Who's ready to play #BlackOps3? https://t.co/a5jOidSsum +10/25/2015,Sports_celeb,@KyrieIrving,Will be everlasting. #RestinPeace +10/25/2015,Sports_celeb,@KyrieIrving,"Rest in Paradise Coach Flip. I didn't personally know him, but the effect he had on the game and many players lives that have come before me" +10/11/2015,Sports_celeb,@KyrieIrving,start with one battle and end up watching like 15 lol past and new. nothing like some battle bars +10/11/2015,Sports_celeb,@KyrieIrving,"Watching this Roc vs Calicoe battle, sheeshh!!! #Toomanybars" +10/09/2015,Sports_celeb,@KyrieIrving,Congrats to my little brother @BryceAiken on his committment to Harvard. Couldn't be more proud. http://t.co/B7t5WNrNMB +10/05/2015,Sports_celeb,@KyrieIrving,#stilladream https://t.co/EkOSbZkiak +09/22/2015,Sports_celeb,@KyrieIrving,Facts. https://t.co/Td0zeR6mBB +09/21/2015,Sports_celeb,@KyrieIrving,Fletcher’s story will change how you drive. Eyes up. Phone down. #ItCanWait #ad http://t.co/0Q1MCoe00L http://t.co/U76Le6aMxs +09/16/2015,Sports_celeb,@KyrieIrving,"Thank you @AppleMusic +Yall have made my life 10x easier when listening to music. +#MyPlaylists is en fuego" +09/14/2015,Sports_celeb,@KyrieIrving,RT @jhairston15: Thank you Lord for waking me up this morning and starting me on my way #Blessed +09/14/2015,Sports_celeb,@KyrieIrving,Twas' a good day. +09/14/2015,Sports_celeb,@KyrieIrving,RT @nickemandjoey: Hey @matthewdelly @KyrieIrving @kevinlove How about a retweet for @DJNickAtKnight who is 3yrs cancer free today! https:/… +09/08/2015,Sports_celeb,@KyrieIrving,haha i need one of those. https://t.co/a61iVosM5b +09/08/2015,Sports_celeb,@KyrieIrving,Appreciate you. Keep working and find #YourWHY. https://t.co/hl9QeXdzuM +09/08/2015,Sports_celeb,@KyrieIrving,haha thats hilarous. 8th Grade Roosevelt Middle School Swag Champ lol https://t.co/UfwJhchpMX +09/08/2015,Sports_celeb,@KyrieIrving,Fire!! https://t.co/ymrcvFg87A +09/08/2015,Sports_celeb,@KyrieIrving,@joshgrant7725 I appreciate it. Dope color way +09/08/2015,Sports_celeb,@KyrieIrving,@ZayBriscoe Destroy this year. +09/08/2015,Sports_celeb,@KyrieIrving,Remember who you watched to get that in your game. Ill see ya soon. https://t.co/urT7QXaO5c +08/31/2015,Sports_celeb,@KyrieIrving,#VOTEFETTYWAP +08/30/2015,Sports_celeb,@KyrieIrving,Swag!! any jersey will due. https://t.co/thvCL6Wo5e +08/30/2015,Sports_celeb,@KyrieIrving,RT @champssports: Game inspired from all over the world. @PSDunderwear @KyrieIrving http://t.co/KiYQSsbXyu +08/28/2015,Sports_celeb,@KyrieIrving,Appreciate the Hospitality @callofduty Great to test out #BlackOpsIII as well. Can't wait for the drop. https://t.co/fx6gfTNMGT +08/21/2015,Sports_celeb,@KyrieIrving,"RT @SoleCollector: An on-foot look at the ""Australia"" Nike Kyrie 1: http://t.co/MG87G8FgyB http://t.co/IJwFwCf7A5" +08/21/2015,Sports_celeb,@KyrieIrving,Summer just got better. Loading up the PS4 for the @CallofDuty #BO3Beta now. Come play too... http://t.co/e4dmPGfJPM +08/19/2015,Sports_celeb,@KyrieIrving,Swag!! #Duke https://t.co/vPJegQcSjP +08/18/2015,Sports_celeb,@KyrieIrving,yessir bro. Keep killin! https://t.co/1yM4XQNYxw +08/18/2015,Sports_celeb,@KyrieIrving,RT @gseves: Jacob is on point for his first day or school in his @KyrieIrving gear! Can't wait for @cavs season! http://t.co/McCMFyzpEP +08/13/2015,Sports_celeb,@KyrieIrving,"Happy Birthday Mom. I miss you and I wish you could see me now, but I know you're up there prideful… https://t.co/9bhFb9fgPv" +08/06/2015,Sports_celeb,@KyrieIrving,RT @shegotgame: @sbird10 custom NikeID @nikebasketball Kyrie 1s she'll be wearing in today's @wnba All-Star game. 🔥🔥🔥 #WNBAAllStar http://t… +08/04/2015,Sports_celeb,@KyrieIrving,"""@GeeQJerry: Say yeah - http://t.co/2S3M9LULK0"" check it out!!" +08/02/2015,Sports_celeb,@KyrieIrving,#AndSTILL @RondaRousey +07/30/2015,Sports_celeb,@KyrieIrving,Yo bro @KDTrey5 im at @sonicdrivein what should i get? http://t.co/PKjrV9zvcB +07/27/2015,Sports_celeb,@KyrieIrving,"RT @cavs: Welcome back to #TheLand, mate! + +OFFICIAL RELEASE: http://t.co/J581gDaWA6 http://t.co/89GTwFCldB" +07/26/2015,Sports_celeb,@KyrieIrving,When you have flavors at your camp. #StillaDream https://t.co/Oq3Yi8HERt +07/26/2015,Sports_celeb,@KyrieIrving,#StillaDream https://t.co/bEWORMXlCw +07/16/2015,Sports_celeb,@KyrieIrving,Listen to The Really Big Show on @ESPNCleveland this morning to win a spot in my basketball @ProCamps +07/14/2015,Sports_celeb,@KyrieIrving,That was truly a show!! #HRDerby congrats to Todd Frazier +07/14/2015,Sports_celeb,@KyrieIrving,This derby is getting real... +07/14/2015,Sports_celeb,@KyrieIrving,Just nasty Albert Pujols...#HRDERBY +07/07/2015,Sports_celeb,@KyrieIrving,Never missed the game this much ever in my life. Can't take that feel of a basketball going through the net for granted. Ever. +06/05/2015,Sports_celeb,@KyrieIrving,I want to thank everyone for the well wishes. Saddened by the way I had to go out but it doesn't take… https://t.co/zXY3mtV2vg +04/07/2015,Sports_celeb,@KyrieIrving,RT @nikebasketball: Play for a legend. Win for the legacy. #justdoit http://t.co/0A02bpLeUv +04/07/2015,Sports_celeb,@KyrieIrving,Yessssiiiirrrrr!!!! Way to go DUKE!!!!!!!! +04/05/2015,Sports_celeb,@KyrieIrving,RT @nikebasketball: Final. Not finished. #ShockTheGame @dukeblueplanet http://t.co/dO3WZBqCRC +04/05/2015,Sports_celeb,@KyrieIrving,Yessir!! Way to go Duke!! ONE more. +02/13/2015,Sports_celeb,@KyrieIrving,I'll be at the Kids @footlocker Herald Square today at 6pm! Come stop by! +02/09/2015,Sports_celeb,@KyrieIrving,"RT @KingJames: By k1irving """"Grammy Night"" Drew and kingjames"" +#GrammyFamily #TheLand #StriveForGreatness http://t.co/vURFI7zgz5" +02/02/2015,Sports_celeb,@KyrieIrving,"Game for the ages, crazy!!!" +02/01/2015,Sports_celeb,@KyrieIrving,Huge Congrats #MVP @AaronRodgers12 +01/26/2015,Sports_celeb,@KyrieIrving,#Coach1K Congrats coach!! Legendary. +12/22/2014,Sports_celeb,@KyrieIrving,"Thank you @usabasketball for the award. Truly means alot to me, my family, and the city of Cleveland. Glad I could share it with them." +12/04/2014,Sports_celeb,@KyrieIrving,RT @nikebasketball: Deceptively quick. The #KYRIE1. Available December 23. http://t.co/fZ0ezJeUpU +11/06/2014,Sports_celeb,@KyrieIrving,Check it out. @skullcandy is giving away 4 major prizes!! http://t.co/CKf5R28NR7 +10/27/2014,Sports_celeb,@KyrieIrving,“@Tanman1771: Hey @KyrieIrving which jersey shall I wear on opening night?? http://t.co/36jlCJkGyi” all dope options!! +10/25/2014,Sports_celeb,@KyrieIrving,"“@eastinfection: Alright @cavs @KyrieIrving , which one do I go with for opening night? http://t.co/EICoUjATwG” great collection!! Any one!!" +10/24/2014,Sports_celeb,@KyrieIrving,Thank you to all the fans for coming out to the event...#GoCavs +10/23/2014,Sports_celeb,@KyrieIrving,RT @Ballislife: 9th Grade PG Damon Harge Is Next UP! Shows Off Crazy Quickness & Handles at Lucas Camp http://t.co/a6ZDFWcCYF http://t.co/3… +10/22/2014,Sports_celeb,@KyrieIrving,"“@DaLIzMoBeta21: @KyrieIrving What you know about him young man??” Lol just a lil bit, great music nonetheless" +10/22/2014,Sports_celeb,@KyrieIrving,🎶🎶 Kenny G +10/14/2014,Sports_celeb,@KyrieIrving,“@ComplexMag: Hoop Dreams was released on this day 20 years ago. http://t.co/yLDRhKtk0H http://t.co/IQqefK0c96” true motivation right there. +10/12/2014,Sports_celeb,@KyrieIrving,Beautiful Sunday in Cleveland +10/10/2014,Sports_celeb,@KyrieIrving,RT @cavs: .@KyrieIrving greets a few families from Best Buddies International after practice #NBAGlobalGames http://t.co/5xOEinY2l1 +10/09/2014,Sports_celeb,@KyrieIrving,RT @cavs: Smiles for days! We've added NEW behind-the-scenes photos to our #BSLS14 [GALLERY]: http://t.co/l5kUvJvDMo #TBT http://t.co/kApMC… +10/09/2014,Sports_celeb,@KyrieIrving,“@cavs: Kyrie knows it's going in... Walkoff https://t.co/iHQ65LvA0n” yessir +10/08/2014,Sports_celeb,@KyrieIrving,@WizKaharie haha +10/08/2014,Sports_celeb,@KyrieIrving,"Just a sprained ankle from practice, in a walking boot for precautionary reasons. Not that serious, I'm all good." +10/08/2014,Sports_celeb,@KyrieIrving,@Aceofhearts111 dream big +06/26/2018,Sports_celeb,@BenSimmons25,RT @rpjward: Nike isn't messing around after @BenSimmons25 won #NBA Rookie of the Year. This is corner of Flinders and Swanston Sts in down… +06/26/2018,Sports_celeb,@BenSimmons25,RT @espn: Rookie of the Year (noun) - Ben Simmons https://t.co/KFeZvB0LJM +06/22/2018,Sports_celeb,@BenSimmons25,RT @livvalice: #savvystrong 🖤💝 https://t.co/Epw1y1fAEP +06/15/2018,Sports_celeb,@BenSimmons25,RT @blakeney96: 🤫🤐 #AllWorkNoTalk +06/14/2018,Sports_celeb,@BenSimmons25,RT @brkicks: .@BenSimmons25 inspiring kids in China with @nikebasketball https://t.co/ClJni9rYeH +06/12/2018,Sports_celeb,@BenSimmons25,Day 1 in China 🇨🇳✌🏽️ https://t.co/XaEyX1yJiQ +05/27/2018,Sports_celeb,@BenSimmons25,#losangeles My Godfather @CoachDPatrick & my Brother @LTribeSimmons are running a camp this summer! Hit the link an… https://t.co/2LfH0HzOGB +04/13/2018,Sports_celeb,@BenSimmons25,@livvalice 😂😂😂😂 +04/12/2018,Sports_celeb,@BenSimmons25,RT @ESPNNBA: Ben Simmons may have more Magic in his game than anyone we've ever seen. https://t.co/JvbjQw7ALS +04/12/2018,Sports_celeb,@BenSimmons25,RT @NBA_305: Ben Simmons & Magic Johnson. Enjoy! 💛🏀 https://t.co/xG7uZFPisO +04/11/2018,Sports_celeb,@BenSimmons25,@darealjlaw 😂 +04/11/2018,Sports_celeb,@BenSimmons25,"RT @Dcorrigan50: ben simmons did not red shirt + +ben simmons broke his foot and literally couldn't play basketball for half a year + +in what…" +04/11/2018,Sports_celeb,@BenSimmons25,"RT @Lakers: After 384 games in the @nbagleague, Andre Ingram walks onto the court for the first time as an @NBA player. + +At 32 years, 4 mon…" +04/10/2018,Sports_celeb,@BenSimmons25,"RT @oh_sohilarious: Ben Simmons can't be an All-Star because he is a rookie. + +But also... + +Ben Simmons can't be the Rookie of the Year bec…" +04/05/2018,Sports_celeb,@BenSimmons25,@OpTic7Teen 👀 +04/05/2018,Sports_celeb,@BenSimmons25,"RT @shawngill27: Twitter fam, please help my group raise money for the Philadelphia Animal Welfare Society! Our goal is $1,250! Please retw…" +04/05/2018,Sports_celeb,@BenSimmons25,@L4fckop @CelticsIn2 @SportsCenter 😂 +04/04/2018,Sports_celeb,@BenSimmons25,"RT @SportsArePhilly: Voting time 😤 + +Retweet if you believe Ben Simmons is the NBA Rookie of the Year #KiaROY #sweepstakes #HereTheyCome ht…" +04/03/2018,Sports_celeb,@BenSimmons25,PUBG w/KAT https://t.co/fiWt3wQ7kl +04/03/2018,Sports_celeb,@BenSimmons25,@KarlTowns @FortniteGame lets go +04/02/2018,Sports_celeb,@BenSimmons25,RT @z0mgItsHutch: We are joined by @BenSimmons25 who's begrudgingly decided to give Fortnite another shot. https://t.co/IKxDXM1yIA +04/02/2018,Sports_celeb,@BenSimmons25,"RT @sixers: .@BenSimmons25 is the Rookie of the Year. #KiaROY + +VOTE » https://t.co/TOTYNNnpkl https://t.co/nUpYk2UV4Q" +04/02/2018,Sports_celeb,@BenSimmons25,Time for some pubg who’s down ? +04/02/2018,Sports_celeb,@BenSimmons25,@JoshOG 😂😂🤟🏽 +04/01/2018,Sports_celeb,@BenSimmons25,@JoshOG duos +03/31/2018,Sports_celeb,@BenSimmons25,All this money being made and they get a swag bag at the end of it. https://t.co/V6cYE7lGFL +03/31/2018,Sports_celeb,@BenSimmons25,"RT @SLAM_HS: Geico Nationals Champion ✅ +Undefeated season (35-0) ✅ +Next up, Duke. https://t.co/Y7jLWdcqyj" +03/31/2018,Sports_celeb,@BenSimmons25,"@Pamaj I’m going to give it another shot, let me know when we are playing 🤟🏽" +03/31/2018,Sports_celeb,@BenSimmons25,RT @DuceVasquez: @BenSimmons25 When you can't play PUBG but realize you're dating Tinashe https://t.co/OOEhrvy3Cn +03/31/2018,Sports_celeb,@BenSimmons25,When you on the road and can’t play pubg https://t.co/Vuptypr86Z +03/30/2018,Sports_celeb,@BenSimmons25,RT @Tinashe: ME SO BAD ft @Frenchmonta and @tydollasign out now 💕💦 https://t.co/ZXFej1B8gn https://t.co/INbnZlvVzJ +03/29/2018,Sports_celeb,@BenSimmons25,RT @Tinashe: Midnight🎾💓💦 album pre order + new song https://t.co/idVcj720WH +03/29/2018,Sports_celeb,@BenSimmons25,@LosPollosTV Pubg +03/29/2018,Sports_celeb,@BenSimmons25,@KarlTowns 👀 PUBG? +03/29/2018,Sports_celeb,@BenSimmons25,@Timberwolves @KarlTowns 😂😂 +03/26/2018,Sports_celeb,@BenSimmons25,RT @KarlTowns: Prayers out to Zeke Upshaw’s family 🙏🏽🙏🏽🙏🏽 +03/24/2018,Sports_celeb,@BenSimmons25,@JoelEmbiid #Facts +03/22/2018,Sports_celeb,@BenSimmons25,RT @brkicks: A detailed look at @BenSimmons25 in custom Hyperdunks by @ubiqlife 🔥 https://t.co/D8v9x834fz +03/22/2018,Sports_celeb,@BenSimmons25,@76ersArmageddon @ColinCowherd 😂 https://t.co/zf1KPhA2EV +03/20/2018,Sports_celeb,@BenSimmons25,@MightyMouseUFC let’s run duos on pubg +03/20/2018,Sports_celeb,@BenSimmons25,RT @SportsCenter: Ben Simmons is the first rookie in NBA history to drop 15 assists and 0 turnovers in a triple-double. #SCFacts https://t.… +03/19/2018,Sports_celeb,@BenSimmons25,@DennisChambers_ 😂😂😂😂 +03/19/2018,Sports_celeb,@BenSimmons25,@z0mgItsHutch @FortniteGame 😂alright I’ll give it a try +03/14/2018,Sports_celeb,@BenSimmons25,@MeekMill is featured in the latest issue of @RollingStone. Read about social injustice & more:… https://t.co/OHWASe2ONQ +03/11/2018,Sports_celeb,@BenSimmons25,RT @uninterrupted: @BenSimmons25 Shout out for reppin' the movement! #IAmMore +03/03/2018,Sports_celeb,@BenSimmons25,RT @MichaelSkolnik: They got video games in Australia. https://t.co/4YTuH7HAh9 +02/28/2018,Sports_celeb,@BenSimmons25,"RT @35_Fitz: Philly, I appreciate my short time with you guys, great fans and a great future." +02/23/2018,Sports_celeb,@BenSimmons25,What’s better ??? @Tinashe strongly believes one is clearly better and she is clearly wrong..🙄 +02/21/2018,Sports_celeb,@BenSimmons25,@OpTicH3CZ @DXRacer @z0mgItsHutch Just let me know so we can play. Thanks brother 💪🏽 +02/21/2018,Sports_celeb,@BenSimmons25,@OpTicH3CZ @DXRacer I also need help 😂 +02/21/2018,Sports_celeb,@BenSimmons25,RT @hdawwggg: Spotted on Chapel Street. @BenSimmons25 is that you bro? 🤔 https://t.co/vBu62Os8Xv +02/08/2018,Sports_celeb,@BenSimmons25,@darealjlaw https://t.co/xApxGCCgcF +02/08/2018,Sports_celeb,@BenSimmons25,Should I stream pubg? +02/06/2018,Sports_celeb,@BenSimmons25,RT @UNDEFEATEDinc: .@BenSimmons25 for Beats By Dre / UNDEFEATED. Available now at All Chapter Stores and https://t.co/rPhV7ZP2Fc https://t.… +02/05/2018,Sports_celeb,@BenSimmons25,Big shout out to the @Eagles ! That was a crazy game & to see the city celebrate like that was something else… https://t.co/TSvJDG422h +01/31/2018,Sports_celeb,@BenSimmons25,Best episode for sure 😂😂 https://t.co/fWz0xaxX5z +01/31/2018,Sports_celeb,@BenSimmons25,😂 +01/25/2018,Sports_celeb,@BenSimmons25,🤭 https://t.co/oJ4HwWKsJs +01/21/2018,Sports_celeb,@BenSimmons25,Bring it home today @Eagles #BirdGang 🦅 +01/21/2018,Sports_celeb,@BenSimmons25,@TheWorldof_AJ Do work today 🙌🏽 +01/16/2018,Sports_celeb,@BenSimmons25,@JackButland_One Thank you mate ✌🏽️ +01/15/2018,Sports_celeb,@BenSimmons25,It’s Go Time 😤 +01/15/2018,Sports_celeb,@BenSimmons25,“The time is always right to do what is right” - MLK #MartinLutherKingDay +01/15/2018,Sports_celeb,@BenSimmons25,"RT @sixers: ""Our city has preserved his presence as his legacy will never cease to inspire."" + +#MLK50 History with @JuliusErving https://t.c…" +01/15/2018,Sports_celeb,@BenSimmons25,@diplo Appreciate it 👍🏽 +01/15/2018,Sports_celeb,@BenSimmons25,It’s about that time again ⏰ https://t.co/WpKRX6CoPr +01/15/2018,Sports_celeb,@BenSimmons25,@DannyCipriani87 Appreciate it mate 👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@STEEZtheGREAT About to have you looking very pretty. https://t.co/jMo7KHPmpC +01/14/2018,Sports_celeb,@BenSimmons25,Let’s get this done though RT! @STEEZtheGREAT 😂😂😂 https://t.co/xDYsbFkzCR +01/14/2018,Sports_celeb,@BenSimmons25,@Dchristmas22 Appreciate it man 💪🏽 +01/14/2018,Sports_celeb,@BenSimmons25,I actually looked back smh 😒 https://t.co/xEdOf5BCyJ +01/14/2018,Sports_celeb,@BenSimmons25,🤷🏽‍♂️🎬📽😂 https://t.co/BDVkDjWLcr +01/14/2018,Sports_celeb,@BenSimmons25,RT @JusAnderson1: 🚨 #NBAVote @BenSimmons25 Retweet the Hell outta this... Thanks! +01/14/2018,Sports_celeb,@BenSimmons25,@JusAnderson1 🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,Tough @Jonahbolden43 💪🏽 https://t.co/wrvqoQ1bck +01/14/2018,Sports_celeb,@BenSimmons25,@kochie_online 😂 ok I’m gonna have to fact check that +01/14/2018,Sports_celeb,@BenSimmons25,1 Day Left of voting for the NBA All Star Game. The support from fans & the support I’ve seen coming out of Philly… https://t.co/1i7vqNuRWg +01/14/2018,Sports_celeb,@BenSimmons25,Thank you @kochie_online https://t.co/pkzrhsTouM +01/14/2018,Sports_celeb,@BenSimmons25,"@sunriseon7 This is dope 🙌🏽 Thank you Will Smith, need to get you to a game when you’re done enjoying my homeland… https://t.co/N1aByTSvJz" +01/14/2018,Sports_celeb,@BenSimmons25,@Strauchanie 😂 +01/14/2018,Sports_celeb,@BenSimmons25,@WJChambers4 @sixers 🙌🏽🙌🏽🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@markhunt1974 Thank you 💥🥊 +01/14/2018,Sports_celeb,@BenSimmons25,"RT @sixers: @Eagles #NBAVote @BenSimmons25 + +#FlyEaglesFly https://t.co/dxGrbVH5L1" +01/14/2018,Sports_celeb,@BenSimmons25,@swandane Thank you 👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@tyson_pedro_ 💥🥊 Thank you +01/14/2018,Sports_celeb,@BenSimmons25,@SP_10 @NBAAllStar Appreciate it✌🏽️ +01/14/2018,Sports_celeb,@BenSimmons25,Ok now for @LSUBasketball to get that W 😤 #GeauxTigers +01/14/2018,Sports_celeb,@BenSimmons25,@CollingwoodFC 👍🏽👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers Thank you! 🇦🇺 +01/14/2018,Sports_celeb,@BenSimmons25,#56 🙌🏽 https://t.co/G069Mc91R3 +01/14/2018,Sports_celeb,@BenSimmons25,@KingJames Appreciate it 🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,RT @JuliusErving: Send @BenSimmons25 to the all-star game! #NBAVote +01/14/2018,Sports_celeb,@BenSimmons25,@BobDaTruth713 @Eagles https://t.co/PyG3Q7cPaZ +01/13/2018,Sports_celeb,@BenSimmons25,#NBAVOTE @TheWorldof_AJ +01/13/2018,Sports_celeb,@BenSimmons25,@JuliusErving Humbled to have your support Dr Thank you 🙌🏽 +01/13/2018,Sports_celeb,@BenSimmons25,Let’s Go @Eagles 🦅🏈 +01/12/2018,Sports_celeb,@BenSimmons25,"RT @andrewbogut: Logistically, makes sense that Australia is too far for an NBA game. Wait, China, what? Thats $urprising! https://t.co/u4d…" +01/12/2018,Sports_celeb,@BenSimmons25,Laters London 🇬🇧 +01/12/2018,Sports_celeb,@BenSimmons25,"RT @NBL: If the country of Georgia can almost get Zaza to the #NBA all-star game, surely Australia can get @BenSimmons25 across the line.…" +01/11/2018,Sports_celeb,@BenSimmons25,@cj_wentz @JoelEmbiid Speedy recovery mate 🙌🏽 +01/11/2018,Sports_celeb,@BenSimmons25,RT @MNightShyamalan: #nbavote @BenSimmons25 Show the Londoners what a triple double is! (Should be paying attention to the film editor but… +01/11/2018,Sports_celeb,@BenSimmons25,@MNightShyamalan I’m not mad at it. Thanks 👍🏽 +01/10/2018,Sports_celeb,@BenSimmons25,Got shooters on deck in London @JJRedick 🇬🇧 https://t.co/qQO7yLFlpu +01/10/2018,Sports_celeb,@BenSimmons25,"RT @ScottONeil: #nbavote @BenSimmons25 #LondonBridgeIsn’tFallingDown +Retweet to Vote https://t.co/7qVFZqIPQm" +01/10/2018,Sports_celeb,@BenSimmons25,RT @AshBenzo: Fam retweet this as many times as possible and send my friend @BenSimmons25 to the All Star Game in LA #nbavote #greatamerica… +01/10/2018,Sports_celeb,@BenSimmons25,🙌🏽 amazing American https://t.co/0UqX6rzx2p +01/09/2018,Sports_celeb,@BenSimmons25,@ShelleyCronau @BasketballAus @AUSParalympics Thank you 🙌🏽 +01/09/2018,Sports_celeb,@BenSimmons25,@nspeitel1 @JoelEmbiid Looking like a $100 Bill 💵 +01/09/2018,Sports_celeb,@BenSimmons25,Appreciate it Coach #GeauxTigers https://t.co/ghLrM030de +01/09/2018,Sports_celeb,@BenSimmons25,@ScottONeil Thanks Scott 💪🏽 +01/09/2018,Sports_celeb,@BenSimmons25,😤PHILLY ✈️ LONDON💂🏼 https://t.co/n8EBFwpPZk +01/08/2018,Sports_celeb,@BenSimmons25,"RT @ESPNAusNZ: Ben Simmons #NBAVOTE + +Get retweeting NOW. https://t.co/QxGVWfloU5" +01/08/2018,Sports_celeb,@BenSimmons25,@marcmurphy3 Thank you✌🏽️ +01/08/2018,Sports_celeb,@BenSimmons25,🇬🇧💂🏽‍♀️🏀 +01/08/2018,Sports_celeb,@BenSimmons25,@TheWorldof_AJ Appreciate you 🙌🏽 Go get that W #eagles +01/07/2018,Sports_celeb,@BenSimmons25,@Strauchanie @pjhelliar @sixers Coincidence 🤔 +01/07/2018,Sports_celeb,@BenSimmons25,@Giovann1z Thanks ✌🏽️ +01/06/2018,Sports_celeb,@BenSimmons25,@HGrimmNBA https://t.co/8HB6yPRv0C +01/06/2018,Sports_celeb,@BenSimmons25,🥊 #OTTNO #NBAVOTE Ben Simmons https://t.co/vprbfO6rws +01/06/2018,Sports_celeb,@BenSimmons25,@DaveSholler Appreciate it Dave 👍🏽 +01/06/2018,Sports_celeb,@BenSimmons25,"RT @LSUBasketball: OH MY! Take a look at the highlights as LSU defeated No. 11 Texas A&M in College Station, marking the highest ranked tru…" +01/06/2018,Sports_celeb,@BenSimmons25,I see you @LSUBasketball 🔥 +01/06/2018,Sports_celeb,@BenSimmons25,😤 +01/05/2018,Sports_celeb,@BenSimmons25,"You guys knew this was coming right? Having a crazy season, I know enough about wine to know that some get better w… https://t.co/IDsZ4pFNK4" +01/05/2018,Sports_celeb,@BenSimmons25,@Holla_At_Rob33 @JoelEmbiid Let’s get that W🔥 +01/05/2018,Sports_celeb,@BenSimmons25,@LG_Blount Appreciate you man 🙌🏽 +01/05/2018,Sports_celeb,@BenSimmons25,🚀🤷🏽‍♂️👨🏽‍🚀 https://t.co/co63N4Jyev +01/05/2018,Sports_celeb,@BenSimmons25,@PuntKing23 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@lezew Chur✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@livvalice ❤️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @livvalice: At 4 he said he wanted to play NBA. +LETS MAKE HIM AN ALL STAR + +Ben Simmons #NBAVote https://t.co/DoT3SnkCQp" +01/05/2018,Sports_celeb,@BenSimmons25,@digiskunk Photoshop? +01/05/2018,Sports_celeb,@BenSimmons25,@Joao_machado00 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@Skillish Lol idk 🤷🏽‍♂️ Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@WriterLeader247 Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@danieljcarrr 🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,"RT @118Carter: @BenSimmons25 can I get a retweet for a fan from Darwin Australia 🇦🇺 + +#NBAVote Ben Simmons" +01/05/2018,Sports_celeb,@BenSimmons25,RT @TheKevinRice: #NBAVote Joel Embiid https://t.co/7mlbMQ04O0 +01/05/2018,Sports_celeb,@BenSimmons25,@Jj70981706Jj 🇯🇵✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @JoeHockey: C’mon Australia Ben needs our votes to get be the first Aussie into the NBA All Stars Game +So retweet + #NBAVote @BenSimmons…" +01/05/2018,Sports_celeb,@BenSimmons25,@JoeHockey Thanks Joe 👍🏽🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,@AdamandSymon #1 & #3 is true & #2 thank you +01/05/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers @Strauchanie https://t.co/LOf9HfVfP5 +01/05/2018,Sports_celeb,@BenSimmons25,@sixers @pjhelliar 😂 +01/05/2018,Sports_celeb,@BenSimmons25,"Ok ok I gotta eat 😂 Massive thanks to all the voters out there, really really appreciate it ✌🏽️" +01/05/2018,Sports_celeb,@BenSimmons25,@samjacobs24 Thanks mate +01/05/2018,Sports_celeb,@BenSimmons25,@MFC_clark 😂 +01/05/2018,Sports_celeb,@BenSimmons25,@HipJoeyD @CallofDuty https://t.co/XIeH9u4E5j +01/05/2018,Sports_celeb,@BenSimmons25,@philadelph_215 🤔 +01/05/2018,Sports_celeb,@BenSimmons25,@Eber7y HTTP 404 Not Found Error +01/05/2018,Sports_celeb,@BenSimmons25,@AtomicDrizz1e 🇦🇺✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@travyates Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@Tom_Thorp Looking forward to that trip 🇬🇧 +01/05/2018,Sports_celeb,@BenSimmons25,@matthewdelly Appreciate it man #NBAVOTE @matthewdelly 🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,@brianmburns10 Not sure it works like that but thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@TimHipsley Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@NBL Pops should have known it’s always game time 😤😂 +01/05/2018,Sports_celeb,@BenSimmons25,@josh_green6 Keep balling young man 👀 +01/05/2018,Sports_celeb,@BenSimmons25,@GovbergMarc Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@racheldiane96 Thanks for the vote! +01/05/2018,Sports_celeb,@BenSimmons25,@malcon___ Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@3rdDegreeBurns8 You’re welcome +01/05/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers Guys is #59 available? +01/05/2018,Sports_celeb,@BenSimmons25,@WillStangler Cajun Wings are nice though FR. Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@Sean_DeLancey Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@ChrisReive Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@lololololiver Straya 🤙🏽🤙🏽 +01/05/2018,Sports_celeb,@BenSimmons25,@19895530 👍🏽👍🏽 +01/05/2018,Sports_celeb,@BenSimmons25,@EdwinPavisic Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@brianmburns10 Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@matthillman10 20 ... Nah jokes probably around 1 Million 😂 +01/05/2018,Sports_celeb,@BenSimmons25,@Adrien_bdu 🇫🇷✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @BallersDU: From @BallersDU to another BALLER from down Under + +Make sure you RT to make your vote count!!! + +Let’s get some 🇦🇺 Representa…" +01/05/2018,Sports_celeb,@BenSimmons25,@LetEmKnoBigSean Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@kate_880 ... thank you too though +01/05/2018,Sports_celeb,@BenSimmons25,@Cake_Eater_ @JoelEmbiid @NBAAllStar 🤣 +01/05/2018,Sports_celeb,@BenSimmons25,"@mickyb273 Thanks, it’s very humbling." +01/05/2018,Sports_celeb,@BenSimmons25,@runningfades @JoelEmbiid Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@YumyumHsu Thank you very much. Looking forward to it. +01/05/2018,Sports_celeb,@BenSimmons25,"@krABBEY_patty_ Don’t die, thank you!" +01/05/2018,Sports_celeb,@BenSimmons25,@sixersforever76 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@acjr_20 Thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@jrabbott14 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@kurtwearshats #photographervote @kurtwearshats +01/05/2018,Sports_celeb,@BenSimmons25,@JoshJenkins24 Thanks 👍🏽 +01/05/2018,Sports_celeb,@BenSimmons25,"RT @FoxBasketball: 🚨 ATTENTION, AUSTRALIA! 🚨 + +Let’s get @BenSimmons25 into the #NBA All Star Game! + +#NBAVOTE https://t.co/nHoHvILvql" +01/05/2018,Sports_celeb,@BenSimmons25,@BradKelsey @JoelEmbiid ✅✅ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @kelianinho: Come on vote for the future of the NBA @BenSimmons25 ! + +#NBAVote +Retweet= Vote ✅ https://t.co/I375IKVTLM" +01/05/2018,Sports_celeb,@BenSimmons25,@daggles07 Nice pick up +01/05/2018,Sports_celeb,@BenSimmons25,@The_6God_ Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@Sann_chezzz @JoelEmbiid Thanks +01/05/2018,Sports_celeb,@BenSimmons25,RT @ziyadmerhebi: Best PUBG player in the league #NBAVOTE Ben Simmons @BenSimmons25 +01/05/2018,Sports_celeb,@BenSimmons25,@ziyadmerhebi 😂 Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@JustRae11 Hi 🇵🇭 +01/05/2018,Sports_celeb,@BenSimmons25,@SeanKlavans @JoelEmbiid ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@JTLuvGuru Thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@E_B_TParkes Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@isabeIIIa Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,"RT @sixers: It's up to you... send @JoelEmbiid & @BenSimmons25 to LA for the @NBAAllStar Game! + +2-FOR-1 #NBAVOTE » https://t.co/1Y7M23uEqQ…" +01/05/2018,Sports_celeb,@BenSimmons25,@KB7FIFA ✌🏽️ +06/28/2018,Sports_celeb,@RobGronkowski,"Here is the link to the shirt since many of you are asking +#AmericanMade +https://t.co/y6VCHOSFOO" +06/28/2018,Sports_celeb,@RobGronkowski,What a day at @JBLM_PAO outside Seattle. I got to hang out with a lot of true warriors that protect our Great count… https://t.co/6VgZgIz4P2 +06/28/2018,Sports_celeb,@RobGronkowski,Way more jacked! 😂 https://t.co/ykw6Kf3Nl5 +06/26/2018,Sports_celeb,@RobGronkowski,"Good times back home for a good cause. Who Thinks my shirt came off on the dance floor? + +Check it out:… https://t.co/kEPqV5NoyD" +06/20/2018,Sports_celeb,@RobGronkowski,"Thinking outside the BOX 😜 & diversifying my portfolio!📈 Healthy, easy and most importantly @snowteethwhiten works… https://t.co/Y50RDa5hOd" +06/20/2018,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: Want to feel on top of the world? Run for a cause. Run the @FalmouthRR @charityteams for @RobGronkowski @GronkNation Team… +06/19/2018,Sports_celeb,@RobGronkowski,Want game day tix to see me play? Want to meet me? How about some autographed merch!? You can have it all by enter… https://t.co/jjU1TATWa9 +06/15/2018,Sports_celeb,@RobGronkowski,"Happy Pre Fathers Day to the best one out there... The CREATOR. +#FathersDay +https://t.co/Li5xqrYA11" +06/14/2018,Sports_celeb,@RobGronkowski,"Nothing is more American than babes, burgers and Gronk Spikes on the 4th! 🇺🇲🇺🇲🇺🇲#Merica + +Get in on the action:… https://t.co/MEfpRmidxs" +06/11/2018,Sports_celeb,@RobGronkowski,Thanks @Shaws & @Star_Mrkt for giving these lucky winners an opportunity to hang out with me on the field! We had a… https://t.co/oMGGqoulXF +06/11/2018,Sports_celeb,@RobGronkowski,Another year down at the #GronkKidsCamp! 🏈 The energy at this camp was off the charts. 📈📈📈 Thanks to everybody tha… https://t.co/xyLRsPsqTd +06/10/2018,Sports_celeb,@RobGronkowski,"RT @WHR: ""He's big, strong, fast, beautiful, handsome - so yes, we have a lot in common"" - @RobGronkowski 😂 + +Gronk met Gronk at the @Belmon…" +06/10/2018,Sports_celeb,@RobGronkowski,Thank you @CitiPrivatePass for helping these campers get #CloserToPro and inside the huddle at my Annual @ProCamps!… https://t.co/PTpUCMkDr5 +06/06/2018,Sports_celeb,@RobGronkowski,"Back to Camp!🏈👍 +https://t.co/KSliUKmqZm" +06/04/2018,Sports_celeb,@RobGronkowski,"Fresh and Smooth +https://t.co/Nctw5a6DEv" +06/03/2018,Sports_celeb,@RobGronkowski,I’ll be so much faster now! Thanks @buzzforkids for the fresh new summer cut! Great day with the kids #7xbuzzee… https://t.co/EuDb4Wxjyd +06/03/2018,Sports_celeb,@RobGronkowski,Yes!!!! https://t.co/c1W0OZib1J +06/01/2018,Sports_celeb,@RobGronkowski,"Getting down and derby! Gronkowski the Horse 🐴 races next Saturday 6/9 at Belmont. 🐴🐴🐴 +Order this weekend to get o… https://t.co/ZsFNViFIrY" +05/31/2018,Sports_celeb,@RobGronkowski,NBA finals and NHL finals. A great week for sports! 🏒 🏀 Lots of history going down! +05/31/2018,Sports_celeb,@RobGronkowski,"Video Games while using my Snow Teeth Whitening Kit! Get yours now using code ""Gronk"" for 25% off! It's easy chee… https://t.co/IjF29uZu3v" +05/30/2018,Sports_celeb,@RobGronkowski,Be #GronkAwesome 💪. Hungry for gains? https://t.co/twianiIw9y #teammuscletech #sponsored https://t.co/mEqw41YuLf +05/26/2018,Sports_celeb,@RobGronkowski,RT @DJWhooKid: Me and @steveaoki bumping his new smash #Pretender on @Shade45 for my #MemorialDayWeekend mix 💥💥💥💥💥 #WhoosHouse #WhoolywoodS… +05/25/2018,Sports_celeb,@RobGronkowski,"What do people expect to happen on 6/9? - The official Gronk National Holiday + +https://t.co/sdqPzZ7fAB" +05/23/2018,Sports_celeb,@RobGronkowski,RT @SixStarPro: G R O N K S P I K E 🍉💀@RobGronkowski #gronkspike #PatsNation #summer2018 #gronk https://t.co/N2b6mP7jCE +05/23/2018,Sports_celeb,@RobGronkowski,He is so handsome! Hehe https://t.co/AwEujKd8BP +05/16/2018,Sports_celeb,@RobGronkowski,RT @charityteams: Join @RobGronkowski @GronkNation @FalmouthRR Team! Get guaranteed entry and run to support youth sports. Go to https://t.… +05/15/2018,Sports_celeb,@RobGronkowski,"Thanks for all the Birthday Wishes!!! 29 and feeling damn fine!😜 +https://t.co/QF8jbUc60v" +05/05/2018,Sports_celeb,@RobGronkowski,That was a great basketball game to watch. Nice win @celtics +04/30/2018,Sports_celeb,@RobGronkowski,"I present to you my first protein bar that I developed with my team @muscletech! Does it taste like a candy bar, ye… https://t.co/YK7c8KhVms" +04/27/2018,Sports_celeb,@RobGronkowski,"Off season means no hiding under a helmet. Let's get those teeth SMOOTH and WHITE! @snowteethwhiten +Who's with me?… https://t.co/m9GfPKFrfH" +04/26/2018,Sports_celeb,@RobGronkowski,Who remembers when the most hyped person ever got drafted? You should have all known I was going to be out of contr… https://t.co/LTJ0X8wO7w +04/26/2018,Sports_celeb,@RobGronkowski,"RT @uninterrupted: .@RobGronkowski is back! And he's super, super pliable. https://t.co/W69RpYzfWe" +04/26/2018,Sports_celeb,@RobGronkowski,"I’m back for another year, and so is my Youth 🏈 Clinic! Click 👇 for info on my @CitiPrivatePass Youth Football Clin… https://t.co/p8R5cSMEwW" +04/25/2018,Sports_celeb,@RobGronkowski,"I met with coach today and informed him I will be back for the 2018 season with the Pats. I have been working out,… https://t.co/jKzab4e3b1" +04/23/2018,Sports_celeb,@RobGronkowski,It’s unfortunate Gronkowski the horse will not be able to race in the upcoming Kentucky Derby due to an illness. I… https://t.co/dOvyCNYItO +04/23/2018,Sports_celeb,@RobGronkowski,JuSt taking it to levels that people have never seen before. That’s all. https://t.co/wsuU8mzziD +04/19/2018,Sports_celeb,@RobGronkowski,"RT @KentuckyDerby: Gronk now part owner of Gronk.👊🏽 + +@RobGronkowski buys stake in namesake #KyDerby horse: https://t.co/XUOVgCDNJF https://…" +04/18/2018,Sports_celeb,@RobGronkowski,"It's official, I am part of the Gronkowski Team! +GRONK ACQUIRES A STAKE IN GRONK ... THE KENTUCKY DERBY-BOUND RACEH… https://t.co/Gdps4CbXMX" +04/17/2018,Sports_celeb,@RobGronkowski,Give it up for the Gronk Nation Marathon team who bleasted it though the #Bostonmarathon yesterday and helped raise… https://t.co/Q8KNGEBOwo +04/17/2018,Sports_celeb,@RobGronkowski,"Shout out to some awesome kids I got to recently meet, Ben & Ryan. Stay Strong!!! #MSDStrong #ParklandStrong https://t.co/lfMd5EtNKa" +04/16/2018,Sports_celeb,@RobGronkowski,"That time @calliebundy threw a laser 😂. With the squad @sixstar + @gronkfitness +https://t.co/n9cjBJwInc #ad… https://t.co/a5b09ArxpQ" +04/16/2018,Sports_celeb,@RobGronkowski,"I’ll never forget those famous words. 5 years later, I’m proud to collab with my man @davidortiz on this Still Our… https://t.co/wMikx1vcH9" +04/15/2018,Sports_celeb,@RobGronkowski,5 years later IT’S STILL OUR CITY! Help me and Big Papi raise money for the kids of Boston and get your Still Our C… https://t.co/l0NNfe5NH9 +04/14/2018,Sports_celeb,@RobGronkowski,RT @DeionSanders: All athletes please understand this is a business 1st. Nothing comes b4 the business part of professional sports. You can… +04/14/2018,Sports_celeb,@RobGronkowski,RT @davidortiz: Proud to team up with one of Boston’s finest....my brother @RobGronkowski ...we created this t-shirt to raise $ for the Gro… +04/13/2018,Sports_celeb,@RobGronkowski,"It's #FlexFriday w/@GronkFitness +#BandsAmakeHerDance https://t.co/pdtVteKg9g" +04/12/2018,Sports_celeb,@RobGronkowski,Sox vs Yankees brawls/rivalry is back. The action I love to see! +04/11/2018,Sports_celeb,@RobGronkowski,"From Gronk's Showtime Comedy Special and my Gronk Cruise, my buddy @FinesseMitchell is shooting his 1hr comedy spec… https://t.co/y5kM5tZvAH" +04/06/2018,Sports_celeb,@RobGronkowski,RT @CallieBundy: Working hard orrr hardly working?? Well one of us was working hard thanks for the ride @RobGronkowski 😂 On-set with @SixSt… +04/05/2018,Sports_celeb,@RobGronkowski,"RT @SixStarPro: We’re now live with @robgronkowski, ask your questions! Be sure to tag @sixstarpro and use the hashtag #SixStarGronk to hav…" +04/03/2018,Sports_celeb,@RobGronkowski,"What an awesome time hanging with Lauren. #KeepFighting +https://t.co/3KtwcRWqxV" +04/02/2018,Sports_celeb,@RobGronkowski,Everyone needs a Goon! +03/30/2018,Sports_celeb,@RobGronkowski,Ooo Chan ❤️ Snapchat https://t.co/fWSaLYpoOD +03/30/2018,Sports_celeb,@RobGronkowski,Make sure you sign up for my @CitiPrivatePass Youth 🏈 Clinic in partnership with @Shaws & @Star_Mrkt! Gonna be a gr… https://t.co/XkIPbPyqwX +03/30/2018,Sports_celeb,@RobGronkowski,RT @DerbyMedia: Gronkowski - named for @Patriots star tight end @RobGronkowski – collected his 4 straight win in Friday's Burradon Stakes @… +03/30/2018,Sports_celeb,@RobGronkowski,Help @YourCommissary win a @ProCamps this summer. Vote at https://t.co/O4aa3bdWzI or text your base name to 1-201-7… https://t.co/lNyCJR5CeS +03/27/2018,Sports_celeb,@RobGronkowski,Just in case you missed the action- @SHAQ https://t.co/Dx0aADRnNC +03/22/2018,Sports_celeb,@RobGronkowski,@Edelman11 @MartysaurusRex Hey guys!! How are ya? +03/20/2018,Sports_celeb,@RobGronkowski,I love Band Camp! I love 🛏 Bed! Night! +03/18/2018,Sports_celeb,@RobGronkowski,Prepping starting back up now! Show down coming soon @Chrisgronkowski @OrlandoRVargas watch out folks. All I can sa… https://t.co/7UR6Hh6R5N +03/17/2018,Sports_celeb,@RobGronkowski,Watch me #GronkSpike this @Michaelsstores MAKE Off against @BusyPhilipps! https://t.co/cnORz1JbrR #ad +03/15/2018,Sports_celeb,@RobGronkowski,"It was a honor playing with ya @dannyamendola Stay lit, Be FREE, Be HAPPY. Your hard work, the way you play at your… https://t.co/6JdRQ7rCbi" +03/14/2018,Sports_celeb,@RobGronkowski,@KVN_03 Thank you. Just getting started!! +03/14/2018,Sports_celeb,@RobGronkowski,“Bands a make her dance” I repeat “Bands a make her dance” 💃🏼Aye Captain!!! +03/13/2018,Sports_celeb,@RobGronkowski,"Who are your top 4? #GronkMadness +Check out my picks +https://t.co/5xyhrem1Yh" +03/06/2018,Sports_celeb,@RobGronkowski,Registration for my 6th Annual @CitiPrivatePass Youth 🏈 Clinic in partnership with @shaws & @Star_Mrkt and @tide is… https://t.co/l39nwnSq0v +03/05/2018,Sports_celeb,@RobGronkowski,#UntilWeAllWin https://t.co/l97CusBAV1 +03/02/2018,Sports_celeb,@RobGronkowski,My marathon team is serious about training & they're going to look the best on Patriots Day thanks to @NikeBoston… https://t.co/F0OSIsf1OC +03/02/2018,Sports_celeb,@RobGronkowski,“ Bands a make her dance “ +03/02/2018,Sports_celeb,@RobGronkowski,I want YOU to head to my partner @DunkinBoston this month between 2pm-6pm to get a $2 Iced Coffee. #TBT https://t.co/cNxrKNQVAN +02/28/2018,Sports_celeb,@RobGronkowski,#clueless 🤷‍♂️ +02/27/2018,Sports_celeb,@RobGronkowski,It's a team effort with Family and Friends! @MojoRawleyWWE https://t.co/Av1AK5UBe2 +02/26/2018,Sports_celeb,@RobGronkowski,There are NO limits!!!!! +02/24/2018,Sports_celeb,@RobGronkowski,"Forseee your own future, control your own temptations, and your destiny will be not just be reached, it will just be starting." +02/22/2018,Sports_celeb,@RobGronkowski,"Boston showing up big time at the NBA All Star Game! +https://t.co/bm8gP1PpcS" +02/16/2018,Sports_celeb,@RobGronkowski,"Run the 2018 Boston Marathon for Team @GronkNation. Our team has the BIGGEST heart! Raise funds for youth sports,… https://t.co/isd94lEIpM" +02/15/2018,Sports_celeb,@RobGronkowski,Honored and blessed to present these checks to 3 amazing organizations who support amazing kids that need some extr… https://t.co/pyn9lQyaBo +02/14/2018,Sports_celeb,@RobGronkowski,"Happy Valentine's Day to all of you beautiful people! +https://t.co/qjXwVbpmyV" +02/03/2018,Sports_celeb,@RobGronkowski,"Congrats Timothy Bessette. Enjoy the game! +Thanks for everybody who participated. We raised a lot of money for Cha… https://t.co/HO68Susfd3" +02/03/2018,Sports_celeb,@RobGronkowski,Clock is ticking...last call to enter to WIN a TRIP to the BIG GAME! Go to https://t.co/ZQ1UcEoa06 while there's st… https://t.co/51yHiQC3RB +02/02/2018,Sports_celeb,@RobGronkowski,"It's go time. #SBLII +https://t.co/fOY9HId8R1" +02/01/2018,Sports_celeb,@RobGronkowski,"Hooking you guys up before the Big Game! Buy one, get one FREE all t-shirts - check it out now at… https://t.co/ZlhkhoClxq" +02/01/2018,Sports_celeb,@RobGronkowski,Ladies... this one's for you https://t.co/zQEHGnBuR3 https://t.co/Vj61PLjIIv +01/30/2018,Sports_celeb,@RobGronkowski,".@DavidKHarbour , don't drop the ball like @terrybradshaw. Spike it instead! #TideAd #SBLII #gronkspike https://t.co/xUXODrKHIG" +01/30/2018,Sports_celeb,@RobGronkowski,"RETWEET this post for a chance to win this FREE SIGNED jersey. Winner will be announced Saturday at 3pm PST. + +Plus-… https://t.co/4lUgmbK2fK" +01/30/2018,Sports_celeb,@RobGronkowski,"This is Great! +https://t.co/cIGHgSJFgf" +01/29/2018,Sports_celeb,@RobGronkowski,"Congrats on the big win! + +Want to win the BIG prize, two tickets to the SB? Grab gear now for your chance to win:… https://t.co/9jgSdhvEs5" +01/29/2018,Sports_celeb,@RobGronkowski,Can’t wait to go head to head against @lg_blount on #XboxLiveSessions #SuperBowl edition! Tune in 1/30 @ 5:30 p.m… https://t.co/nM0jsXoP0B +01/26/2018,Sports_celeb,@RobGronkowski,"This is what it's all about! #KeepFighting +https://t.co/hjy3RojMfM" +01/25/2018,Sports_celeb,@RobGronkowski,"RETWEET for your chance to win a FREE SIGNED Gronk ball or photo. Winner will be announced Monday at 3pm EST. + +Plu… https://t.co/k0hXRwzFBl" +01/23/2018,Sports_celeb,@RobGronkowski,A pleasure meeting you Robbie! #Goodtimes https://t.co/CgDEFmxnZp +01/20/2018,Sports_celeb,@RobGronkowski,Final Minutes to get in the https://t.co/kptIwmB9Oa. Get in the action and support a good cause! https://t.co/pu82rqa0ng +01/19/2018,Sports_celeb,@RobGronkowski,"Who agrees with me? Our amazing pats fans were going BAZOOKA crazy. +https://t.co/BFt25diAZV" +01/19/2018,Sports_celeb,@RobGronkowski,"TIME EXTENDED! +You can win tickets to the AFC Championship Game! +https://t.co/kptIwmB9Oa + +Funds raised go to:… https://t.co/L1FWrkUm1N" +01/19/2018,Sports_celeb,@RobGronkowski,RT @DJWhooKid: 😂😂 @Patriots taking it again this year 💀🏈🏈🏈🏈🏈💥💥 @RobGronkowski https://t.co/ZC5kEMiGMZ +01/18/2018,Sports_celeb,@RobGronkowski,"The https://t.co/kptIwmB9Oa ends tomorrow at noon EST. +YOU CAN'T WIN IF YOU ARE NOT IN! + +Additional 25 Prizes incl… https://t.co/xojbe39n9g" +01/17/2018,Sports_celeb,@RobGronkowski,"RETWEET this post to for your chance to WIN. +Winner will be picked Thursday at 12pm EST + +To win tickets to the AFC… https://t.co/lnZjXLiCa5" +01/17/2018,Sports_celeb,@RobGronkowski,"Congrats @BobDiMa1 you are the winner. The Gronk Team will hit you up shortly. + +For the rest of you check out th… https://t.co/ieC8Ceag8r" +01/16/2018,Sports_celeb,@RobGronkowski,"You can win tickets to the AFC Championship Game! +https://t.co/kptIwmB9Oa + +Retweet this video to support the cause!… https://t.co/o8Ql4teYdT" +01/16/2018,Sports_celeb,@RobGronkowski,"Check out the Video of Gronk making Danny Amendola disappear. #magic #GronkNews #teamwork +https://t.co/SFdBnUsnZL" +01/15/2018,Sports_celeb,@RobGronkowski,"RETWEET this post to for your chance to win a https://t.co/KDXhzPpJOz playoff bundle and a Signed Gronk Photo +Winne… https://t.co/rhTPNgonzm" +01/14/2018,Sports_celeb,@RobGronkowski,"https://t.co/kptIwmB9Oa +The Pats are going to the AFC Championship Game, AND SO CAN YOU! +We are giving 3 lucky win… https://t.co/RdM2kHtv6v" +01/13/2018,Sports_celeb,@RobGronkowski,"I’ve partnered with @Tide to make sure you know, Tide PODs are for doing laundry. Nothing else! https://t.co/Oo7n7ZZpbG" +01/12/2018,Sports_celeb,@RobGronkowski,@walmart is rolling back their prices on my fuel for a limited time. Get your own https://t.co/44J67UMJ0G #ad… https://t.co/nE2nkGyahr +01/11/2018,Sports_celeb,@RobGronkowski,"You can still make it to the game! Get in the action and Win Some Tickets. 🏈🏈 +#GronkNews + +https://t.co/oNGIKKn8tQ" +01/09/2018,Sports_celeb,@RobGronkowski,"The road has been set. It's go time. #GronkNews +https://t.co/rglQOiTGOJ" +01/05/2018,Sports_celeb,@RobGronkowski,Thank you voters! Hard work and working Smarter is paying off!!! +01/05/2018,Sports_celeb,@RobGronkowski,Givin' away 2 TICKETS + HOTEL to our first playoff game next Saturday! Grab gear now for a chance to win 👉… https://t.co/vjZn28DeDz +01/04/2018,Sports_celeb,@RobGronkowski,"You want to see some funny stuff? Check out ""Unsportsmanlike Comedy"" Friday night if you want the full Gronk. +Find… https://t.co/ZTKv40IMhT" +12/31/2017,Sports_celeb,@RobGronkowski,Haha you know it man!! Glad your back https://t.co/COhhmdDSw0 +12/29/2017,Sports_celeb,@RobGronkowski,An excellent role model on and off the field. Thank you Nate for being such a great teammate. Post the hashtag… https://t.co/yywrCCdbDF +12/29/2017,Sports_celeb,@RobGronkowski,Hey there! https://t.co/6YgfZjHmPB +12/26/2017,Sports_celeb,@RobGronkowski,"RT @uninterrupted: Ho ho ho! @RobGronkowski may have another big game this week but today, Santa Claus is in town. https://t.co/SutWRCm3Sz" +12/25/2017,Sports_celeb,@RobGronkowski,Merry Christmas 🎄🎁 !! Boxers and socks from Santa!! 😀 https://t.co/wRj38RqD8O +12/20/2017,Sports_celeb,@RobGronkowski,"It is always an honor to be selected to the pro bowl. Congrats to my other teammates and thanks fans!!! + +""GRONK SEL… https://t.co/RaTkTn68My" +12/20/2017,Sports_celeb,@RobGronkowski,Why be a regular santa when you can be a #DonutSanta? I’m hooking up all the boys with dozens of @DunkinBoston donu… https://t.co/o4MH1JRJA0 +12/18/2017,Sports_celeb,@RobGronkowski,"The emotions were out of control on that last drive, it was like a roller coaster! +https://t.co/0jNjgJ8CEf… https://t.co/eP35fQsBDr" +12/13/2017,Sports_celeb,@RobGronkowski,@walmart is rolling back their prices on my fuel. Get your own #ad #greatnessisearned https://t.co/i8a3FRIZql +11/28/2017,Sports_celeb,@RobGronkowski,I want to see the best TD dance with a GronkBall in your hand. Pick yours up from @Brookstone today.… https://t.co/JFIJWm3md0 +11/28/2017,Sports_celeb,@RobGronkowski,#lovecybering #cybermonday https://t.co/26p23tOA24 +11/27/2017,Sports_celeb,@RobGronkowski,"Check out the Gronk Bus getting some love at the end of the first quarter. +To get in the action check out… https://t.co/S98gFlCclB" +11/24/2017,Sports_celeb,@RobGronkowski,"Always good to get out in the community on Turkey Day. +Check out what I did: https://t.co/dY4ug12M9d https://t.co/pGxDpVFCiV" +11/18/2017,Sports_celeb,@RobGronkowski,Game day face! #letsgo https://t.co/kcyeX6mSv2 +11/16/2017,Sports_celeb,@RobGronkowski,"""Yo Soy Fiesta"" my friends! +https://t.co/PX6JKZqCFe" +11/14/2017,Sports_celeb,@RobGronkowski,Are you breaking a mental sweat? If you’re working hard this year don’t miss your chance to win $15K from Six Star… https://t.co/50zQos0QuS +11/13/2017,Sports_celeb,@RobGronkowski,Get to @Brookstone now and pick up your Gronk Ball. #GronkBall https://t.co/uKTPYWBfBM +11/09/2017,Sports_celeb,@RobGronkowski,Chilly chilly! 💨 https://t.co/ao00UmNRgu +11/08/2017,Sports_celeb,@RobGronkowski,Hit me for a pass deep! Make sure party rock is playing. 🤣 https://t.co/wETZ2AkOR1 +11/08/2017,Sports_celeb,@RobGronkowski,@Brookstone Hit me for a pass deep! Make sure party rock is playing. 🤣 +11/06/2017,Sports_celeb,@RobGronkowski,My Bro @GordieGronk and I showed fans what it takes to spike like us w/ our #partner @DunkinBoston. Thank you to ev… https://t.co/PwbHJr10HD +11/02/2017,Sports_celeb,@RobGronkowski,"#TBT rocking out!Now we gotta vote them into the Rock & Roll HOF! Vote at https://t.co/K0dPDpHbrx. #BonJoviRockHall + +https://t.co/2j1wlbbs20" +10/31/2017,Sports_celeb,@RobGronkowski,Happy 🎃 Halloween from Gronkenstein! https://t.co/Fln4FKZCIj +10/31/2017,Sports_celeb,@RobGronkowski,Oo she good! Fun times for sure! https://t.co/3wTECMMmVJ +10/26/2017,Sports_celeb,@RobGronkowski,#TBT to shooting with @SixStarPro #ad #greatnessisearned https://t.co/3cv7MywggH +10/26/2017,Sports_celeb,@RobGronkowski,Mark your 🗓 ! My 2018 @CitiPrivatePass Youth 🏈 Clinic is set! Citi cardmembers have presale now👇 #CloserToPro https://t.co/NVpes40QXP +10/25/2017,Sports_celeb,@RobGronkowski,She OBVS thinks I’m great-See more of what #UFC beauty @AirannyCeleste and I are up to on my new show #MVP here:… https://t.co/ACaBZwmGPm +10/23/2017,Sports_celeb,@RobGronkowski,"SWAT team takes down Gronkenstein! +Last chance to get your Gronkenstein tee in time for #Halloween.… https://t.co/u3JQfNzMFz" +10/21/2017,Sports_celeb,@RobGronkowski,"Not only do the ladies love the moves, so does coach. +https://t.co/oYNgsO9pSF" +10/20/2017,Sports_celeb,@RobGronkowski,RT @usnikefootball: Put the team on your back. Share a photo in your jersey using #WhoYouWith to show how you rep the squad. https://t.co/y… +10/18/2017,Sports_celeb,@RobGronkowski,"1. #Touchdown +2. #Dance +3. #Spike +Tips - Move out of the way while spiking is occurring Tom Brady +https://t.co/SXQHy46JiJ" +10/16/2017,Sports_celeb,@RobGronkowski,Nice job bro!!! #teamwork https://t.co/yXYarCNSLz +10/16/2017,Sports_celeb,@RobGronkowski,Congrats! #unreal https://t.co/zJH5QAlN0H +10/16/2017,Sports_celeb,@RobGronkowski,Solid team win on the road baby! Let's keep it going +10/09/2017,Sports_celeb,@RobGronkowski,Today’s the big launch for Season 2 of my show @mvp_show! Watch the show on #go90Zone - https://t.co/40FcJs61q7 Sha… https://t.co/S26vMvnQRK +10/04/2017,Sports_celeb,@RobGronkowski,ReTweet for a chance to win this signed photo! Check out the new https://t.co/Qm6JkX4qNl for a chance to win 2 tick… https://t.co/Az3OgTpqjb +09/26/2017,Sports_celeb,@RobGronkowski,Check out the new https://t.co/KDXhzPpJOz website - The official home of my bros and I. Phase 1 complete with a lot… https://t.co/0a8piwmIor +09/25/2017,Sports_celeb,@RobGronkowski,Kaboom!! #Gronkspike https://t.co/4ccTEDf6Zz +09/24/2017,Sports_celeb,@RobGronkowski,Wow what a game! Super Solid team win vs a really good team.That was some great football to watch fellows! +09/18/2017,Sports_celeb,@RobGronkowski,Thank you bro! 😂 https://t.co/Q9TJvcRALK +09/16/2017,Sports_celeb,@RobGronkowski,Nice work! https://t.co/rAV6aPSuOW +09/12/2017,Sports_celeb,@RobGronkowski,Ladies and Gentlemen some good action is coming soon! https://t.co/erPWyURbx2 +09/11/2017,Sports_celeb,@RobGronkowski,@liamallbright No chance it is. Fake for sure +09/11/2017,Sports_celeb,@RobGronkowski,RT @Patriots: 9.11.01 🇺🇸 #NeverForget https://t.co/Ufs6xWAMWI +09/09/2017,Sports_celeb,@RobGronkowski,Thank you very much! 😂 😂 https://t.co/RhYReJZ71a +09/09/2017,Sports_celeb,@RobGronkowski,"You guys are crazy, it's great lol 😂 https://t.co/thX2oKGk7z" +09/09/2017,Sports_celeb,@RobGronkowski,Very interesting. Do not mess with Mother Nature !! Everyone stay safe down there in FL! +09/09/2017,Sports_celeb,@RobGronkowski,Been following up on Hurricane Irma a lot the past few days. Did some research on hurricanes and been learning a lot bout Mother Nature. +09/09/2017,Sports_celeb,@RobGronkowski,Got a lot of work to do! Long season gotta keep on grinding hard! Watching some College football today looking for some good games. +09/07/2017,Sports_celeb,@RobGronkowski,"It’s been awhile, but I’ve practiced my spike with @Tide. Ready to leave it all on the field & earn the stink. GO P… https://t.co/1JTxPFmPnu" +09/05/2017,Sports_celeb,@RobGronkowski,Can you believe her? She’s worried about how I smell while Liz just posted a fire tweet 🔥🔥🔥 @Tide #Ad https://t.co/R8qc90osJV +09/02/2017,Sports_celeb,@RobGronkowski,RT @Chrisgronkowski: The Gronk ball might be the best baby toy ever. Just turn the lights on and play some music 🎶. #gronkball #gronknati… +08/26/2017,Sports_celeb,@RobGronkowski,Haha just chilling enjoying the view! https://t.co/If08340L2y +08/24/2017,Sports_celeb,@RobGronkowski,RT @Brookstone: Want to enter to win an autographed #GRONKBALL Speaker by @RobGronkowski?! See our pinned post on our FB page- https://t.c… +08/16/2017,Sports_celeb,@RobGronkowski,Who's hyped for football season?!? Celebrate with me @GilletteStadium at Fantasy Sports Fest Aug 20th. Buy tix:… https://t.co/lLAacJE2zu +08/14/2017,Sports_celeb,@RobGronkowski,Putting some work in during my shoot for @Tide Sport PODS. Might’ve even found a new teammate. 💪 #NoDaysOff #ad https://t.co/1qVWd0zORg +08/08/2017,Sports_celeb,@RobGronkowski,"RT @ZonaZooOfficial: September 2nd. Arizona Stadium. Gronk bobblehead giveaway. BE THERE. +Details: https://t.co/wEHYBxl1Jx +ZonaZoo Pass: h…" +08/08/2017,Sports_celeb,@RobGronkowski,Amazing!! #BearDown https://t.co/cBHHVKcGIt +08/04/2017,Sports_celeb,@RobGronkowski,Had a blast w/ the kids at my @Citibank @ProCamps! Relive it with the virtual reality experience on the @jauntvr app https://t.co/GaMbvAb65a +08/02/2017,Sports_celeb,@RobGronkowski,Join me at Fantasy Sports Fest on Aug 20 @GilletteStadium. Catch TDs on the field and hear from insiders! Buy tix:… https://t.co/IPJDzdoStH +08/02/2017,Sports_celeb,@RobGronkowski,That was a hot practice today 💦 😳 hydration all day to get ready for tomorrow +07/31/2017,Sports_celeb,@RobGronkowski,Thank you for letting me join again on stage. This time during camp from my room 😂! https://t.co/mIAkbGFxg4 +07/26/2017,Sports_celeb,@RobGronkowski,"What’s your go-to @DunkinBoston Iced Coffee Flavor? I’m sticking with S’mores right now, but man the Coconut Crème… https://t.co/NAxxsxFjuR" +07/21/2017,Sports_celeb,@RobGronkowski,Got you! 😂 https://t.co/kZowq2tPJA +07/20/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @RobGronkowski What do u have to do for autographed football & photo? Run 7 miles raise $ 4 kids w/ @GronkNation team Join… +07/15/2017,Sports_celeb,@RobGronkowski,Happy birthday @MojoRawleyWWE living it up @rehablv https://t.co/bhGICNRjtZ +07/12/2017,Sports_celeb,@RobGronkowski,RT @ddlovato: The Boston #SNSHouseParty was out of control!!! Thanks for rolling in with me like a champ @RobGronkowski 😜 @Kiss108 https://… +07/12/2017,Sports_celeb,@RobGronkowski,RT @Brookstone: Can we get #GronkBall trending for @RobGronkowski before his World Premiere on @HSN at midnight?! https://t.co/HlSfklisR4 +07/12/2017,Sports_celeb,@RobGronkowski,"I'm hosting an epic comedy show at @Showcase_Live on July 21st. Get tix, trust me! https://t.co/56h7uTUfA6. https://t.co/8AMArCAxFW" +07/12/2017,Sports_celeb,@RobGronkowski,Good times! #SNSHouseParty https://t.co/tUnhmCqhC0 +07/12/2017,Sports_celeb,@RobGronkowski,"Baby, I'm sorry (I'm not sorry) - @ddlovato love's my Gronk ball too!! Thx for the invite to the House Party!… https://t.co/uEKdNVu6Di" +07/11/2017,Sports_celeb,@RobGronkowski,BIG news! I’ll be on @HSN tonight with my @Brookstone Gronk Ball Speaker! Who’s excited for it?… https://t.co/ZqocPAGM4N +07/11/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @RobGronkowski @GronkNation Join the Gronk Nation Running Team @FalmouthRR -Run this summer! Go to https://t.co/yE7o1dpEr7… +07/11/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @charityteams Run for @GronkNation @RobGronkowski at this summers @FalmouthRR Be on Gronks Team! Go to https://t.co/yE7o1d… +07/02/2017,Sports_celeb,@RobGronkowski,12-0 in cornhole 🌽 !!!! +06/26/2017,Sports_celeb,@RobGronkowski,The grind feels so good!! +06/23/2017,Sports_celeb,@RobGronkowski,"Roasted the shit out of Big Papi tonight, but also got roasted bad myself 😂. Great times everybody. Congrats to Big Papi!" +06/20/2017,Sports_celeb,@RobGronkowski,Don't always believe what you read. This is where 100k + would go to before that. https://t.co/2nzSfBk8pV +06/16/2017,Sports_celeb,@RobGronkowski,"The Gronk Family Genes powering through with just boys! +Hanging with the fam in front of the NEW 87 @GronkPartyBus… https://t.co/zbzNsffOTX" +06/15/2017,Sports_celeb,@RobGronkowski,Weeehooooooo it's go time baby with @SixStarPro PreWorkout Explosion! #sponsored #greatnessisearned… https://t.co/0p9bN3Ghj9 +06/12/2017,Sports_celeb,@RobGronkowski,RT @ObertoBeefJerky: RT for a chance to win a signed @RobGronkowski Football 🏈 and Jerky. #JerkyTie Happy #NationalBeefJerkyDay https://t.c… +06/11/2017,Sports_celeb,@RobGronkowski,Congrats to all the @Shaws @Star_Mrkt @Tide sweeps winners. Great time at the ProTalk luncheon today! Great camp da… https://t.co/AAIk93YyYR +06/11/2017,Sports_celeb,@RobGronkowski,Thanks to @WelchsFruitSnck for sending these lucky campers to my @ProCamps #yummy https://t.co/hCP05OU0nh +06/11/2017,Sports_celeb,@RobGronkowski,Had a blast with my Sunny D Contest winners at my @ProCamps #letsgo https://t.co/njPAGbArZy +06/11/2017,Sports_celeb,@RobGronkowski,Camp is wild today! So much energy these kids got! 🏈 +06/11/2017,Sports_celeb,@RobGronkowski,The Gronk Monster Truck tonight was lit @MonsterJam !!! Great show and great performances. #vroomvroom… https://t.co/TjxViQOtLM +06/10/2017,Sports_celeb,@RobGronkowski,I'd give today's @ProCamps youth clinic 10 out of 10 Gronk Spikes! Thanks again to @CitiPrivatePass for supporting… https://t.co/MHun2wsVnb +06/09/2017,Sports_celeb,@RobGronkowski,That's truck is bad ass! https://t.co/6R4Tq14PbC +06/05/2017,Sports_celeb,@RobGronkowski,"Always a pleasure buzzing my head every summer. Great people, great kids, great cause and a super fresh cut of cour… https://t.co/a388o2KPUI" +06/03/2017,Sports_celeb,@RobGronkowski,Missed my flight mmmhmmmm 🤔 +06/29/2018,Sports_celeb,@Venuseswilliams,Ahead of Wimbledon I spoke to @britishvogue about the 5 things that shaped me https://t.co/Xfh7uPvG5a +06/29/2018,Sports_celeb,@Venuseswilliams,Londoners don’t forget to come join me today at 2pm at @Selfridges for the launch of the @EleVenbyVenus Atlanta col… https://t.co/4j4vDvK4qm +06/27/2018,Sports_celeb,@Venuseswilliams,Be the Eleven you are and get yourself to the @Selfridges launch party for the new Atlanta collection from… https://t.co/mbwCOxV0Go +06/25/2018,Sports_celeb,@Venuseswilliams,With Wimbledon coming up I can't help but look back on all the fond memories! This was in 2000 when @serenawilliams… https://t.co/rbG8urjlL9 +06/22/2018,Sports_celeb,@Venuseswilliams,Romancing from both ends expertly! One of my favorite interiors in Paris where I enjoy the design and the food!… https://t.co/dvQN03LAwr +06/18/2018,Sports_celeb,@Venuseswilliams,I’m excited to be in Des Moines this Saturday for the Des Moines Register Sports Awards. Let’s celebrate high schoo… https://t.co/riCYajVEnE +06/17/2018,Sports_celeb,@Venuseswilliams,Big news! I've teamed up with @Selfridges to launch the new Atlanta collection from @elevenbyvenus. RSVP for the la… https://t.co/Obtr9uAxYs +06/14/2018,Sports_celeb,@Venuseswilliams,"This is how I conference call. For real tho. No joke. (New phone, who dis?) #flawless https://t.co/IZQ8RoBbAJ" +06/13/2018,Sports_celeb,@Venuseswilliams,Back in action ;) pun intended. @EleVenbyVenus Sprint collection https://t.co/1zMftY6Qlg +06/07/2018,Sports_celeb,@Venuseswilliams,The good old days...are still going! @serenawilliams #tbt https://t.co/iZ9SWobiJJ +06/04/2018,Sports_celeb,@Venuseswilliams,C’est la vie! Deja vu and all that! Merci @PDG_Paris #LovePDG https://t.co/nXugYwdRyI +06/04/2018,Sports_celeb,@Venuseswilliams,"Go @serenawilliams (I'm a big fan!) I'm also a big fan of WS doubles, just warming up, stay tuned! https://t.co/Fhs1aYU6Ml" +06/02/2018,Sports_celeb,@Venuseswilliams,Getting inspired! This guy had talent! #rodin @MuseeRodinParis https://t.co/GaYMQ3umq3 +05/30/2018,Sports_celeb,@Venuseswilliams,The return of Team Williams...@serenawilliams @Venuseswilliams https://t.co/8mBHITF92B +05/30/2018,Sports_celeb,@Venuseswilliams,Maxing and relaxing with my lil man at @PDG_Paris #princedegallesparis #LovePDG https://t.co/Mf9boqChMD +05/26/2018,Sports_celeb,@Venuseswilliams,Thanks @people! Check out our latest collection https://t.co/3DmFK3FbcZ +05/26/2018,Sports_celeb,@Venuseswilliams,New @EleVenbyVenus Sprint Collection https://t.co/BbKl7004UR https://t.co/fDf2DvoEfB +05/25/2018,Sports_celeb,@Venuseswilliams,RT @people: Get Venus Williams’ Exact Pump-Up Workout Playlist – and Never Be Bored on Your Run Again https://t.co/IAFxBPYuWc +05/24/2018,Sports_celeb,@Venuseswilliams,"Goodbye Rome, so sad that the days of gelato are over...but I think the croissants in Paris should comfort this pro… https://t.co/B7F1XjofkG" +05/24/2018,Sports_celeb,@Venuseswilliams,"RT @EleVenbyVenus: Make bold news with the brand new Sprint Collection, available on https://t.co/6QaGtZRgU4 now! https://t.co/dCgOhyA1Dk" +05/24/2018,Sports_celeb,@Venuseswilliams,"Werk, werk, werk, werk, werk! The @EleVenbyVenus new Sprint collection is here! WERK! https://t.co/utGw4bwjTo" +05/23/2018,Sports_celeb,@Venuseswilliams,"The adventures of Harry and I, Rome edition. Coming to a city near you. We saved the day more than once! 😌😌😌❤️❤️❤️ https://t.co/IY7Vkod97u" +05/22/2018,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: We’re excited to announce our partnership with @diaandco... September cannot come soon enough! #FitToThrive https://t.co… +05/21/2018,Sports_celeb,@Venuseswilliams,"Oh it's just me again. My dog Harry thought this was fur, but I had to explain to him that is just a bathrobe...and… https://t.co/T3c3Jobb35" +05/16/2018,Sports_celeb,@Venuseswilliams,Swinging this racquet takes me all the places I ever wanted to go. I swing and I swing and I swing! https://t.co/6tDa9U33I0 +05/01/2018,Sports_celeb,@Venuseswilliams,"Playing here in Copenhagen after 16 years! The art, innovation and entrepreneurship here is inspiring. https://t.co/AmK353wneh" +04/18/2018,Sports_celeb,@Venuseswilliams,Honored to help the victims of the Stoneman Douglas tragedy by serving on the Stoneman Douglas Victims' Fund Commit… https://t.co/y7YT1yzwVJ +03/23/2018,Sports_celeb,@Venuseswilliams,I am Venus...my inner goddess unleashes er'day https://t.co/as9aNkZABO +03/22/2018,Sports_celeb,@Venuseswilliams,So excited to be back in #Copenhagen on April 30th playing @carowozniacki at #championsbattle2018 – and at the same… https://t.co/JoCZGg9tcY +03/04/2018,Sports_celeb,@Venuseswilliams,A real celebration of design. Nothing makes me happier than creating a space that people enjoy! @vstarrinteriors… https://t.co/zlQKlf19uN +03/01/2018,Sports_celeb,@Venuseswilliams,Can't wait to play @tiebreaktens in New York on Monday. Looking forward to meeting @elinasvitolina in the first rou… https://t.co/mosbuVeeHx +02/25/2018,Sports_celeb,@Venuseswilliams,Working! @LibertyFairs booth 726 come visit!! #libertyfairs @EleVenbyVenus https://t.co/lcseGDmZJk +02/14/2018,Sports_celeb,@Venuseswilliams,Shooting something cool today...stay tuned! https://t.co/wekRg8YmLq +02/12/2018,Sports_celeb,@Venuseswilliams,"My two loves, I'm so proud of you @serenawilliams and baby Olympia, both @FedCup go USA! https://t.co/rO32uLnZm4" +02/10/2018,Sports_celeb,@Venuseswilliams,Me and my boo @serenawilliams ❤️❤️ https://t.co/NlTcvCKoDL +02/07/2018,Sports_celeb,@Venuseswilliams,@RafaelNadal @tiebreaktens So cool! I can’t wait to be playing in the first ever @TieBreakTens tournament held in t… https://t.co/6Rd0zqbFve +01/28/2018,Sports_celeb,@Venuseswilliams,"I am exited to represent 🇺🇸 at @fedcup with my sister. Cheer us on as we take on the Netherlands - Feb 10-11 in Asheville, NC." +01/26/2018,Sports_celeb,@Venuseswilliams,Super excited that Tie Break Tens series is coming to the US for the first time! I’m in – and so is @serenawilliams… https://t.co/syxR0oTQJJ +12/06/2017,Sports_celeb,@Venuseswilliams,RT @MAKERSwomen: This weekend @serenawilliams and @Venuseswilliams took a stance against community violence 👊💥 alongside trailblazing activ… +11/21/2017,Sports_celeb,@Venuseswilliams,RT @serenawilliams: We love the new community inspired mural by Chelsea Wong at the Yetunde Price Resource Center! Thank you @OathforGood f… +09/12/2017,Sports_celeb,@Venuseswilliams,Looking forward to a great weekend at the @GreenbrierTennisClassic with @mhingis. https://t.co/4yxNkq7rua https://t.co/JNSr2sJzyj +09/11/2017,Sports_celeb,@Venuseswilliams,Thanks for a wonderful stay as always @lottenypalace #PalacePerks https://t.co/fRb952LGVV +08/22/2017,Sports_celeb,@Venuseswilliams,"I'm back at @The_Greenbrier for another fun, tennis-filled weekend. Come join me! https://t.co/4yxNkq7rua https://t.co/CQPnGhXgrP" +08/21/2017,Sports_celeb,@Venuseswilliams,When you wear your tennis dress to the office. @AmericanExpress #AmexTennis #AmexAmbassador #USOpen https://t.co/EOmYBXJqkV +08/20/2017,Sports_celeb,@Venuseswilliams,Put my racket down and picked up a pencil with @AmericanExpress #USOpen #AmexTennis #AmexAmbassador https://t.co/bdgBxTp6vu +07/24/2017,Sports_celeb,@Venuseswilliams,Can't wait to play for @WashKastles tonight in Philly (🎫 https://t.co/YbHCJ4a4yx) & tomorrow in DC (🎫https://t.co/57ktCY908l)! +06/23/2017,Sports_celeb,@Venuseswilliams,Honoured to have been a part of the AIA Vitality 4490 Summit #AIA4490 building a happier & healthier Australia… https://t.co/kngqIUYK9X +06/21/2017,Sports_celeb,@Venuseswilliams,Excited to be in Sydney at the AIA Vitality 4490 Summit #AIA4490 sharing what wellness means to me & championing… https://t.co/m4UqD9kULG +06/10/2017,Sports_celeb,@Venuseswilliams,Until next time Paris! @HCollectionneur merci! https://t.co/2x2n3povoQ +06/01/2017,Sports_celeb,@Venuseswilliams,"RT @PaulRabil: Suiting Up Episode 003, with @VenusesWilliams 🎙 https://t.co/BydM2y8RdH https://t.co/jlEw9KYAo3" +05/31/2017,Sports_celeb,@Venuseswilliams,These are to die for! @HCollectionneur https://t.co/EmpIZ6RGzm +05/28/2017,Sports_celeb,@Venuseswilliams,Kinda proud of this slide & these legs look like they want to do damage on the clay! @EleVenbyVenus https://t.co/MLNfKO9Lck +05/27/2017,Sports_celeb,@Venuseswilliams,I finally found a woman taller than me :) at the @HCollectionneur beautiful gardens https://t.co/tLHRp9kqit +05/21/2017,Sports_celeb,@Venuseswilliams,"My daily view at the @sofitelrome , my home away from home @internazionalibnlditalia #sofitel #tennis https://t.co/KCm67PWpdT" +05/18/2017,Sports_celeb,@Venuseswilliams,Sliding into the quarters. Guess what? I'd like to slide into the semis as well!@EleVenbyVenus https://t.co/18DigbAcve +04/23/2017,Sports_celeb,@Venuseswilliams,"Need something new to read! I like fantasy and adventure, just like my life! Send some suggestions my way please :)" +04/21/2017,Sports_celeb,@Venuseswilliams,"Showcasing Miami, @EleVenbyVenus and @VStarrDesign in Alexa by the New York Post! ❤ https://t.co/OlpSNQYJj6" +04/03/2017,Sports_celeb,@Venuseswilliams,Please vote for the freedom of interior designers like myself! ! Email the FL House Rep -VOTE 2 AMEND HB 7047! https://t.co/MxVcsn7WJb +04/03/2017,Sports_celeb,@Venuseswilliams,"I love this guy ❤. He made it all possible! He had a dream that I get to live on a daily basis, incredibly grateful https://t.co/IGBKZlu0hg" +03/30/2017,Sports_celeb,@Venuseswilliams,"I love this guy ❤. He made it all possible! He had a dream that I get to live on a daily basis, incredibly grateful https://t.co/7ooCZszNhN" +03/30/2017,Sports_celeb,@Venuseswilliams,@tennislala wow! Thank you for inspiring me!! God bless! +03/29/2017,Sports_celeb,@Venuseswilliams,Met a lot of awesome fans at the @MiamiOpen @EleVenbyVenus tent! I will be back! https://t.co/lnwAVGncq8 +03/27/2017,Sports_celeb,@Venuseswilliams,So it was all business yesterday. The plan? do it again today! https://t.co/Yh8vNH4WBD +03/24/2017,Sports_celeb,@Venuseswilliams,@TitussBurgess @KimmySchmidt it's a mutual love! I need season 3! Alight going to go play my match lol! +03/24/2017,Sports_celeb,@Venuseswilliams,Eleven by Venus Williams-Intrepid Excel Tank Top-8868724 https://t.co/3CKUD2gn5d @Zappos my winning look @BNPPARIBASOPEN +03/24/2017,Sports_celeb,@Venuseswilliams,@Ataraxis00 yes! Yes! Genius! +03/24/2017,Sports_celeb,@Venuseswilliams,"completely addicted 2 @KimmySchmidt only thing I've watch this year, @TitussBurgess is so fab, I've picked up a few of his mannerisms lol" +03/24/2017,Sports_celeb,@Venuseswilliams,Crushing it @BNPPARIBASOPEN in @EleVenbyVenus find us at @Zappos https://t.co/zkaY7YgcNv +03/24/2017,Sports_celeb,@Venuseswilliams,"Yes, that's right find @EleVenbyVenus at @Zappos ! https://t.co/L0cMQC8xCv" +03/23/2017,Sports_celeb,@Venuseswilliams,My baby! Harold! Happy #NationalPuppyDay puppiesday :) https://t.co/gocddGCSuB +03/23/2017,Sports_celeb,@Venuseswilliams,Taste of tennis :) @TasteofTennis mmmmmmmm!!! https://t.co/f0ypZzg8zE +03/19/2017,Sports_celeb,@Venuseswilliams,Can’t wait to DJ with this guy at @TasteofTennis on Monday Night … See you soon @djmadlinx https://t.co/yQJPabb5Mw +03/02/2017,Sports_celeb,@Venuseswilliams,"RT @PlayersTribune: She's grown the game of tennis while bringing change to her hometown. + +@VenusesWilliams has joined the #StandUp movemen…" +03/01/2017,Sports_celeb,@Venuseswilliams,Shout out to @serenawilliams featured in @Brawny #StrengthHasNoGender campaign during #WomensHistoryMonth https://t.co/9LxT0MNRMf +02/24/2017,Sports_celeb,@Venuseswilliams,7/10 girls don’t feel encouraged to play sports. Time to change that! @Always @Walmart Keep Playing #LikeAGirl #ad https://t.co/a0HgFmRiqD +02/20/2017,Sports_celeb,@Venuseswilliams,https://t.co/4wwZSRE0FX +02/06/2017,Sports_celeb,@Venuseswilliams,Thank you to @ArteriorsHome for helping @VStarrDesign with #DOADMIA. Great company for a great cause! https://t.co/WdWdKfMTcM +02/05/2017,Sports_celeb,@Venuseswilliams,"@housingworks Design on a Dime Miami with the team today, but proud of @vstarrinteriors beautiful space https://t.co/Gob3z4MExB" +01/20/2017,Sports_celeb,@Venuseswilliams,Check out my newest @EleVenbyVenus gear for my next @AustralianOpen match! https://t.co/7vmBqJZwbh +01/18/2017,Sports_celeb,@Venuseswilliams,Thrilled to bring my passion for @ElevenByVenus and VStarr Interiors to the cover of @Inc! #femaleentrepreneur… https://t.co/cTp55ayV1a +01/16/2017,Sports_celeb,@Venuseswilliams,Good morning from Australia! https://t.co/vn1V49618F +01/12/2017,Sports_celeb,@Venuseswilliams,Shenanigans #teamwilliams https://t.co/6mpTkyQehy +01/09/2017,Sports_celeb,@Venuseswilliams,New Zealand is gorgeous! https://t.co/knUZ75Spe2 +01/09/2017,Sports_celeb,@Venuseswilliams,One of my New Years resolutions? Sing more karaoke. No joke lol +01/06/2017,Sports_celeb,@Venuseswilliams,Sneak peak folks! @EleVenbyVenus #2017 https://t.co/DaWMZe8fBD +01/04/2017,Sports_celeb,@Venuseswilliams,Thank you to all my fans in New Zealand 4 yr ❤️and support! I ❤️ you all. sorry I couldn't win it for u this year. https://t.co/3B33f4Nj4X +01/02/2017,Sports_celeb,@Venuseswilliams,Official start to the season tomorrow! https://t.co/VHpUSTnxsa +12/30/2016,Sports_celeb,@Venuseswilliams,Tune into #UFC207 on PPV tonight @RondaRousey @Amanda_Leoa @DominickCruz @Cody_Nolove +12/30/2016,Sports_celeb,@Venuseswilliams,Fun facts about me and @EleVenbyVenus https://t.co/L4wIBIggUf +12/06/2016,Sports_celeb,@Venuseswilliams,Gearing up for a new season @EleVenbyVenus https://t.co/7WBlYMFeB2 +11/29/2016,Sports_celeb,@Venuseswilliams,I love south Florida https://t.co/Gz1gleon7k +11/19/2016,Sports_celeb,@Venuseswilliams,RT @orlyshani: When @Venuseswilliams has you model her new athletic clothing line... you do this weird leg kick thing 💃🏼@EleVenbyVenus #hom… +11/19/2016,Sports_celeb,@Venuseswilliams,RT @kymdouglas: Tmrw we could be joining the #tennis circuit w @Venuseswilliams or modeling her new line @EleVenbyVenus! @HomeandFamilyTV @… +11/12/2016,Sports_celeb,@Venuseswilliams,"RT @AjaLBrown: Let's go #Compton! Join me, @Venuseswilliams and @serenawilliams today at the @HealthyCompton Festival! See you there! #Hea…" +11/12/2016,Sports_celeb,@Venuseswilliams,RT @HealthyCompton: Excited to honor our #Compton champions @SerenaWilliams + @VenusesWilliams at the 2016 #HealthyCompton Festival Nov 12t… +11/12/2016,Sports_celeb,@Venuseswilliams,This is where we spent countless hours practicing growing up! https://t.co/MSnSqTBPW6 +11/12/2016,Sports_celeb,@Venuseswilliams,Court dedication at Luders park in Compton. #Compton #proud https://t.co/misrI6CBoG +11/10/2016,Sports_celeb,@Venuseswilliams,Thanks again to @RunwayDubai and to @SofitelDXBPalm for making all of this happen! #SofitelThePalm #SofitelWorld https://t.co/ZSEX2CRP9u +11/08/2016,Sports_celeb,@Venuseswilliams,The @EleVenbyVenus event with @RunwayDubai is underway! Thank you so much to The Sofitel Luxury Hotel The Palm! https://t.co/rCbA88Ky9t +11/05/2016,Sports_celeb,@Venuseswilliams,Diner #NYC https://t.co/NYymjJsVvn +11/05/2016,Sports_celeb,@Venuseswilliams,@Inc women's conference #newyorkcity #girlpower https://t.co/BIJAMiXwSa +10/31/2016,Sports_celeb,@Venuseswilliams,https://t.co/sNkzNnTFOe<https://t.co/sNkzNnTFOe> #BNPParibasShowdown +10/31/2016,Sports_celeb,@Venuseswilliams,"Looking forward to playing @worldtennisday @thegarden on 3/6. Use code WILLIAMS +to get the best seats before the public!" +10/28/2016,Sports_celeb,@Venuseswilliams,Breakfast @blindmonkwpb I ❤️ West Palm beach ❤️ https://t.co/00Cmq16DDb +10/19/2016,Sports_celeb,@Venuseswilliams,Excited to speak on the Design Panel w/ Kobi Karp tomorrow at The Real Deal’s South Florida Annual Real Estate Showcase & Forum! +10/19/2016,Sports_celeb,@Venuseswilliams,Good morning :) https://t.co/Ol3jSgTJGp +10/18/2016,Sports_celeb,@Venuseswilliams,RT @AjaLBrown: Excited to honor our #Compton champions @SerenaWilliams + @VenusesWilliams at the 2016 #HealthyCompton Festival Nov 12th! #V… +10/14/2016,Sports_celeb,@Venuseswilliams,Love this! 😂😂 https://t.co/uoweRIQV1w +10/11/2016,Sports_celeb,@Venuseswilliams,Yes that's the Great Wall of China folks. @elevenbyvenus https://t.co/eGRZlFXRd9 +09/08/2016,Sports_celeb,@Venuseswilliams,I've had a lot of great memories at the #USOpen! Use #AmexTennis to debate like a Pro https://t.co/ymGLc0HLMQ +09/07/2016,Sports_celeb,@Venuseswilliams,"The #USOpen is all about style, both on and off the court. Use #AmexTennis to debate like a Pro https://t.co/qLWjlABGhU" +09/04/2016,Sports_celeb,@Venuseswilliams,Who do you think is the best doubles team in #USOpen history? Use #AmexTennis to debate like a Pro https://t.co/bRZSoh4L3O +09/04/2016,Sports_celeb,@Venuseswilliams,Practice makes perfect :) @usopen @EleVenbyVenus https://t.co/m26lOnftKy +08/31/2016,Sports_celeb,@Venuseswilliams,My 18th first round win at the open. Wow! https://t.co/giNJCCVadf +08/30/2016,Sports_celeb,@Venuseswilliams,"RT @NYTStyles: .@Venuseswilliams, on and off the court https://t.co/hCvgtGckH4 https://t.co/e3fAxOFDyE" +08/29/2016,Sports_celeb,@Venuseswilliams,Which current player do you think is the coolest under pressure? Use #AmexTennis to debate like a Pro https://t.co/wYiBP3fj8V +08/28/2016,Sports_celeb,@Venuseswilliams,Pick up a copy of the Sunday NYT style section https://t.co/YXl8feGZqO +08/25/2016,Sports_celeb,@Venuseswilliams,The love of my life :) https://t.co/ZH5BhTeGEb +08/25/2016,Sports_celeb,@Venuseswilliams,RT @The_Greenbrier: Join us as we welcome @Venuseswilliams & @Madison_Keys to America's Resort this September! https://t.co/kHvmHsYvGR http… +08/16/2016,Sports_celeb,@Venuseswilliams,"RT @jk_rowling: As if we needed more reasons to worship @andy_murray: he just reminded John Inverdale that women are people, too. + +https:/…" +08/05/2016,Sports_celeb,@Venuseswilliams,Need I say more?! Playing tomorrow night and just can't wait! #olympics #dreams https://t.co/XMciaBvGHT +08/03/2016,Sports_celeb,@Venuseswilliams,First looks at rio https://t.co/9SWra9zmim +08/02/2016,Sports_celeb,@Venuseswilliams,On the way to With @serenawilliams Surreal! https://t.co/SdlTnJmrhJ +07/29/2016,Sports_celeb,@Venuseswilliams,In your face @serenawilliams https://t.co/BAlhvKKa9U +07/28/2016,Sports_celeb,@Venuseswilliams,I've got goodies for you! My Olympic Dress @EleVenbyVenus give away! https://t.co/4NRpbfAI6L +07/28/2016,Sports_celeb,@Venuseswilliams,Thought you all would enjoy hearing more about my life outside of tennis:) @jeff_haden https://t.co/BJk6agUElE via Inc +07/27/2016,Sports_celeb,@Venuseswilliams,Second round @CoupeRogers https://t.co/9J6PyJJfnc +07/27/2016,Sports_celeb,@Venuseswilliams,The @EleVenbyVenus launch in Canada! You can find us @Midtown_Mtl https://t.co/bkzpQaTsEd +07/26/2016,Sports_celeb,@Venuseswilliams,A day in my sweat life ;) https://t.co/NrqeIyMOqb +07/22/2016,Sports_celeb,@Venuseswilliams,RT @TigerWoods: .@Venuseswilliams put on a show all week and @serenawilliams has once again elevated tennis to another level. Very happy f… +07/22/2016,Sports_celeb,@Venuseswilliams,The warm up for tonight... https://t.co/ZPTF3HleyZ +07/22/2016,Sports_celeb,@Venuseswilliams,Should I? https://t.co/l8boUNyKu9 +07/21/2016,Sports_celeb,@Venuseswilliams,A few fun facts about me and @EleVenbyVenus :) https://t.co/BYIUbNEkU0 via fabfitfun +07/10/2016,Sports_celeb,@Venuseswilliams,I'm so proud of @Venuseswilliams seven #Wimbledon my hero! https://t.co/yAb29C2nJy +07/05/2016,Sports_celeb,@Venuseswilliams,I feel like an @EleVenbyVenus ! #iamaneleVen dream big! https://t.co/ZQLlz66Y29 +07/04/2016,Sports_celeb,@Venuseswilliams,Another day at the office...! https://t.co/Uj1A80RiDI +07/03/2016,Sports_celeb,@Venuseswilliams,Grass court tennis #nature https://t.co/6W9F9IlElD +07/03/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: https://t.co/5ujtcquQqi +07/02/2016,Sports_celeb,@Venuseswilliams,Why is it that the best sleep starts right before your alarm goes off?? +07/02/2016,Sports_celeb,@Venuseswilliams,Going to rest well tonight after a finish in overtime today. Doubles tomorrow with @serenawilliams Yeah! https://t.co/qndBzOCuNW +07/01/2016,Sports_celeb,@Venuseswilliams,Going to rest well tonight after a finish in overtime today. Doubles tomorrow with @serenawilliams Yeah! https://t.co/bPXSAoH8NI +06/30/2016,Sports_celeb,@Venuseswilliams,5 sets today. 2 of them with my favorite tennis player @serenawilliams #sucess #wimbeldon https://t.co/MWPw4ZPhlu +06/29/2016,Sports_celeb,@Venuseswilliams,"Rain? No prob, Grind fest indoors. Tomorrow? Singles and doubles with the lovely @serenawilliams https://t.co/MlnjGFhnsN" +06/28/2016,Sports_celeb,@Venuseswilliams,I just adore @serenawilliams #Wimbledon dress! ❤️❤️❤️ +06/26/2016,Sports_celeb,@Venuseswilliams,My dog goes crazy for this line of treats by my friend Barbara Clarke Ruiz! https://t.co/GVfXWAXLvF https://t.co/F4ddrWOwo2 +06/26/2016,Sports_celeb,@Venuseswilliams,Last practice before tomorrow match! #wimbeldon https://t.co/8lzTnCIeVn +06/23/2016,Sports_celeb,@Venuseswilliams,Invigorating and energizing to speak to all these powerful women this past March at the… https://t.co/yV1dgttgEG +06/22/2016,Sports_celeb,@Venuseswilliams,First day on the grass...!!!#wimbledon https://t.co/kkWfa2Rk6d +06/21/2016,Sports_celeb,@Venuseswilliams,So awesome to bring my loves together. Interior design and fashion design. VStarr interiors used… https://t.co/sOCr55V95H +06/21/2016,Sports_celeb,@Venuseswilliams,Fighting breast cancer with design. #hamptonsholidayhouse @elevenbyvenus @vstarrinteriors.com https://t.co/jjx4xhX9YG +06/20/2016,Sports_celeb,@Venuseswilliams,This mornings rain delay is good practice for #wimbledon https://t.co/ZeS4g1yel3 +06/19/2016,Sports_celeb,@Venuseswilliams,#Lookgoodplaywell @elevenbyvenus https://t.co/JoDVDu5syi +06/17/2016,Sports_celeb,@Venuseswilliams,#flashbackfridays Harry and his cousin Khan at the @elevenbyvenus NYC fashion week show 2013. My… https://t.co/nBjhoOByW0 +06/16/2016,Sports_celeb,@Venuseswilliams,#throwback Thursday. Back then...Compton..you know?? https://t.co/OmQuQBachz +06/16/2016,Sports_celeb,@Venuseswilliams,Sometimes you've got to laugh it off! https://t.co/qhJKdMXUlL +06/15/2016,Sports_celeb,@Venuseswilliams,"A few of my favorite things, the #olympics and Harold! This is our special edition… https://t.co/7KcHlYvNEf" +05/08/2016,Sports_celeb,@Venuseswilliams,"Enjoying the Italian Oceanside, after practice and gym of course! https://t.co/jpBEh2hKQW" +04/29/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: What a beautiful look! Check it out at https://t.co/zsCVQVt1PX! #lookgoodplaywell https://t.co/yW9pXLuzV3 +04/28/2016,Sports_celeb,@Venuseswilliams,"I'm going to miss playing in Madrid, but looking forward to Rome :)" +04/27/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: Geo Swirl is a stunning look on the courts and in the gym! #lookgoodplaywell #venuswilliams #BeAnEleVen https://t.co/G98… +04/21/2016,Sports_celeb,@Venuseswilliams,My color inspiration board for Fall Winter 17. @elevenbyvenus https://t.co/tJAEDKqrQe +04/11/2016,Sports_celeb,@Venuseswilliams,"RT @EleVenbyVenus: It's 4/11/16 #VenusonEleVen. Send #Eleven & I will answer your questions on sport, fashion and life, or whatever is on y…" +04/08/2016,Sports_celeb,@Venuseswilliams,What are your weekend plans? I'm back to practice tomorrow! +04/06/2016,Sports_celeb,@Venuseswilliams,"RT @VolvoCarOpen: 'It's like my second home.' + +Venus Williams declared her love for #Charleston following her win over Riske. #VCO2016 http…" +04/06/2016,Sports_celeb,@Venuseswilliams,"@LendaleJohnson yes! Thank, back on tomorrow :)" +04/06/2016,Sports_celeb,@Venuseswilliams,"@Vandee007 yes, good advice :)" +04/06/2016,Sports_celeb,@Venuseswilliams,@tylergerow thank you! Can't wait for tomorrow :) +04/06/2016,Sports_celeb,@Venuseswilliams,So nice to get a win! Can't wait to get back on the court tomorrow! +04/04/2016,Sports_celeb,@Venuseswilliams,"Today at practice @volvocarsopen I decided to mix collections and colors, our new apricot color… https://t.co/fi9NggKbT2" +04/04/2016,Sports_celeb,@Venuseswilliams,"Beautiful Charleston, South Carolina @volvocarsopen #beautiful #historic https://t.co/VXcIPCoHKm" +03/31/2016,Sports_celeb,@Venuseswilliams,Get all regular price collections with free shipping for a limited time only! https://t.co/Kju8zwVNJF +03/31/2016,Sports_celeb,@Venuseswilliams,Last day of the month and all of our regular price collections are available for free shipping!… https://t.co/DM0Uhw02Nk +03/13/2016,Sports_celeb,@Venuseswilliams,Had such a blast meeting so many fans at the @wilsontennis autograph signing! #grateful for all… https://t.co/1MXpbtDvmt +03/13/2016,Sports_celeb,@Venuseswilliams,I can't explain how happy I am to return to Indian Wells. I'm overwhelmed by the warm welcome.… https://t.co/nTy46rfnlL +03/10/2016,Sports_celeb,@Venuseswilliams,#VenusonEleVen tomorrow after my 1st round match. I'm answering all questions with #EleVenbyVenus tagged on @EleVenbyVenus account! +03/10/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: #BeAnEleVen https://t.co/GXYtMjlshP +03/10/2016,Sports_celeb,@Venuseswilliams,"RT @BNPPARIBASOPEN: Perhaps our favorite pic from Wednesday: Welcome back, #Venus #BNPPO16 https://t.co/3zyKInJ0BT" +03/10/2016,Sports_celeb,@Venuseswilliams,RT @GloriousAllianc: The incredible @Venuseswilliams and her gorgeous @EleVenbyVenus fashion lines! @palmspringslife https://t.co/OTTYQYes7a +03/10/2016,Sports_celeb,@Venuseswilliams,Don't our @elevenbyvenus models look amazing in our Camilla Rose? Thank you Pete Carslon's for… https://t.co/QwqvQiM77v +03/09/2016,Sports_celeb,@Venuseswilliams,Why it's good to be back in the desert https://t.co/iGybPPfmiz +03/07/2016,Sports_celeb,@Venuseswilliams,"Today I got to meet the beautiful, talented and inspirational @kverfuerth . She is a… https://t.co/bjSGT0Nm8d" +03/05/2016,Sports_celeb,@Venuseswilliams,Celebrating the life of Bud Collins today. Few know how much he did for the game of tennis. He… https://t.co/yoL5tr46x7 +03/05/2016,Sports_celeb,@Venuseswilliams,Harry's new bag :) awwwwwww! https://t.co/abrxD33Wja +03/02/2016,Sports_celeb,@Venuseswilliams,The ultimate cool down after practice! Harold didn't work very hard but needed a cool down too… https://t.co/SknxNN6vki +02/29/2016,Sports_celeb,@Venuseswilliams,"@serenawilliams is not the only one that's dances ;) +Vintage @elevenbyvenus oh&oh, so I have to… https://t.co/4t1Bi4qBdP" +02/25/2016,Sports_celeb,@Venuseswilliams,Cool brisk evening shoot with @elevenbyvenus Our spring collection is a breath of fresh Camilla… https://t.co/CKSl6NhFnW +02/14/2016,Sports_celeb,@Venuseswilliams,"https://t.co/s2d7nCVzeh My sister Lynn shares her views, and talks about her line Ember Lyn Designs" +02/14/2016,Sports_celeb,@Venuseswilliams,"First title of the year, Asia is very lucky for me! Thank you to all the fans and the Taiwan… https://t.co/8HhpIdzWI0" +01/27/2016,Sports_celeb,@Venuseswilliams,"I+got+""Very+Much+Venus""+on+""Which+Williams+Sister+Are+You?""+What+about+you? https://t.co/omj9iEqaGW" +01/27/2016,Sports_celeb,@Venuseswilliams,A view to the top at the Anglesea lighthouse on the great ocean road #nofilter https://t.co/Usv897iprx +01/02/2016,Sports_celeb,@Venuseswilliams,Rainbows of colors are such a design inspiration for me. This barrage of colorful Thai silk make… https://t.co/hjGMDvQn0W +01/02/2016,Sports_celeb,@Venuseswilliams,"Sunset in Thailand, one of my favorite countries in the world. Until next time... & here I come… https://t.co/FAwZXIWBmb" +01/01/2016,Sports_celeb,@Venuseswilliams,Playing with some of the best players in the world. That's how I am bringing in the new year. I… https://t.co/8NcgkoBAqL +01/01/2016,Sports_celeb,@Venuseswilliams,"Tennis with some of the best players in the world, that's how I am bringing in 2016! https://t.co/xEilEVS9r5" +12/31/2015,Sports_celeb,@Venuseswilliams,The texture of Thai silk is just luxurious https://t.co/XI1MMvborH +12/31/2015,Sports_celeb,@Venuseswilliams,Catching some design inspiration in Thailand. Thai silk is really one of a kind. https://t.co/UPGf1FJCjc +12/19/2015,Sports_celeb,@Venuseswilliams,Taking some time away from tennis this weekend can you believe it??! Visiting the construction… https://t.co/vB00BjuhQk +12/18/2015,Sports_celeb,@Venuseswilliams,Everyday I endeavor to be an #EleVen. It's about giving your best at all that you do… https://t.co/rhhTuBP7uX +12/16/2015,Sports_celeb,@Venuseswilliams,A surreal evening! https://t.co/Kw0FDHhecr +12/15/2015,Sports_celeb,@Venuseswilliams,Sportsperson of the century in my mind. @serenawilliams https://t.co/YceI2PmVaj +06/29/2018,Sports_celeb,@AndreAgassi,"RT @Longines: Only 10 days left until the end of the ""Conquest V.H.P. Stefanie Graf & Andre Agassi Foundations"" timepieces online auction.…" +06/23/2018,Sports_celeb,@AndreAgassi,"A colleague but more importantly a friend... + +https://t.co/LzpfyZckPp https://t.co/Z6VkNt0qpB" +06/02/2018,Sports_celeb,@AndreAgassi,RT @Longines: Tonight #Longines marks its 10-year partnership with Stefanie Graf and Andre @AndreAgassi by launching an online auction of t… +05/20/2018,Sports_celeb,@AndreAgassi,👀 @GoldenKnights!! +05/19/2018,Sports_celeb,@AndreAgassi,#VEGAS!!! +04/29/2018,Sports_celeb,@AndreAgassi,@TeamUSA @usta Thank you! +04/29/2018,Sports_celeb,@AndreAgassi,@TennisHalloFame Thank you! +04/29/2018,Sports_celeb,@AndreAgassi,@usopen Thank you !! +04/29/2018,Sports_celeb,@AndreAgassi,KNIGHT TIME!!! #VegasBorn +04/27/2018,Sports_celeb,@AndreAgassi,@anirsinha I’ll give her a hello for you! +04/27/2018,Sports_celeb,@AndreAgassi,The only thing better than #KnightTime is Knight Time with my bride!! #lovelove https://t.co/EnmWsiKdvU +04/25/2018,Sports_celeb,@AndreAgassi,1 sleep to go... #VegasBorn +04/18/2018,Sports_celeb,@AndreAgassi,Solid midweek form!! https://t.co/Ii485wP1Lt +04/12/2018,Sports_celeb,@AndreAgassi,@CrpnterJe Don’t have marshmallow fights with a 16 year old baseball player.. words to live by!! +04/12/2018,Sports_celeb,@AndreAgassi,My inspired attempt to block like Marc-André Fleury!! #VegasBorn https://t.co/iJNhxQJ8je +04/10/2018,Sports_celeb,@AndreAgassi,"Always interesting & thoughtful, @ZibbyOwens!! #BestOfLuck + +https://t.co/t3WLqjKyVH" +03/08/2018,Sports_celeb,@AndreAgassi,"RT @AAFforE: #InternationalWomensDay. THANK YOU, #StefanieGraf! https://t.co/HRLbuCUUx9" +03/04/2018,Sports_celeb,@AndreAgassi,@DjokerNole 🤗 +03/02/2018,Sports_celeb,@AndreAgassi,"RT @DjokerNole: Vivaaaa Las Vegas, baby. Idemo🕺 https://t.co/QrGsHdHwTN" +02/16/2018,Sports_celeb,@AndreAgassi,"36 years 195 days... + +@RogerFederer continues to raise the bar in our sport. Congratulations on yet another remarkable achievement!!" +02/16/2018,Sports_celeb,@AndreAgassi,RT @darren_cahill: Enjoying my (highly likely) last day as the coach to the oldest ever No.1 on the ATP tour. Bloody Federer! Greedy mongre… +02/15/2018,Sports_celeb,@AndreAgassi,@darren_cahill Well deserved!!! +02/09/2018,Sports_celeb,@AndreAgassi,@helpsavemydad ♥️ +02/09/2018,Sports_celeb,@AndreAgassi,"RT @helpsavemydad: @AndreAgassi If you or someone you may know might be interested in donating please message me, Rileigh Hamilton on Faceb…" +02/09/2018,Sports_celeb,@AndreAgassi,A friend and a colleague... https://t.co/GJfypolGGn +01/30/2018,Sports_celeb,@AndreAgassi,@AjradiniMajda @hckratz @usopen Thank you +01/30/2018,Sports_celeb,@AndreAgassi,@usopen Bingo !! +01/16/2018,Sports_celeb,@AndreAgassi,@Al_x_andra @DjokerNole @AustralianOpen I still got it?? Haha +01/16/2018,Sports_celeb,@AndreAgassi,#quads 😂😂 https://t.co/RBjVEuJkK9 +01/13/2018,Sports_celeb,@AndreAgassi,@AugieAguilar @EquiiTheApp That would be..Antenna??! +01/12/2018,Sports_celeb,@AndreAgassi,Proud to announce partnership with a group of young #LasVegas entrepreneurs!! Congrats on the @equiitheapp launch!!… https://t.co/QZHFA3v73W +01/12/2018,Sports_celeb,@AndreAgassi,✈️ @AustralianOpen +01/10/2018,Sports_celeb,@AndreAgassi,RT @Ath4Hope: Join us for #PromiseChat to share your thoughts about mentoring and to brainstorm ways mentors can play a role in the lives o… +12/26/2017,Sports_celeb,@AndreAgassi,RT @WTCAdelaide: The legend @AndreAgassi + the rising star @FTiafoe + one of the most successful pairings in history @Bryanbrothers & @Brya… +12/24/2017,Sports_celeb,@AndreAgassi,@AndyS_Research @GoldenKnights #GoKnightsGo !! +12/24/2017,Sports_celeb,@AndreAgassi,Stefanie with a @GoldenKnights W!! #VEGAS https://t.co/tUbUAFU4BW +12/24/2017,Sports_celeb,@AndreAgassi,RT @lawanda50: @AndreAgassi @WTCAdelaide @FTiafoe @Bryanbros @Bryanbrothers Seemed like yesterday! 😀 +12/24/2017,Sports_celeb,@AndreAgassi,@WTCAdelaide 👋🏼👋🏼 +12/24/2017,Sports_celeb,@AndreAgassi,"It's been 20 years, @WTCAdelaide!!?? JANUARY IT IS: https://t.co/OBDCitFagR + + @Ftiafoe @bryanbros @bryanbrothers 🇺🇸… https://t.co/qjXV8noOFk" +12/18/2017,Sports_celeb,@AndreAgassi,👼🏼 https://t.co/1rcnbAb0IB +12/07/2017,Sports_celeb,@AndreAgassi,@nicekicks 👍🏼 +12/04/2017,Sports_celeb,@AndreAgassi,"RT @LavazzaUSA: This year we’re celebrating art and sustainability in our annual calendar, collaborating with @platon and 17 fans who are a…" +12/04/2017,Sports_celeb,@AndreAgassi,#2030whatareUdoing!!! @Lavazza https://t.co/dbSPI3EDkR +12/02/2017,Sports_celeb,@AndreAgassi,"RT @DjokerNole: Lots to be done, but we embrace it with lots of excitement 💪👌. Practice today with @andreagassi and @stepec78 https://t.co/…" +12/01/2017,Sports_celeb,@AndreAgassi,@EquiiTheApp @WmTJMiller Looking forward to the release!! +12/01/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: We are making our final touches on @EquiiTheApp 🙌 +12/01/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: Big news coming soon... +11/29/2017,Sports_celeb,@AndreAgassi,"RT @Lavazza: Il Calendario Lavazza 2018 si fa portavoce dei 17 obiettivi di sviluppo sostenibile dell'Onu, per la salvaguardia del pianeta…" +11/29/2017,Sports_celeb,@AndreAgassi,I aim to goal number 4: Quality Education. This is the reason why I set up a foundation dedicated to the transforma… https://t.co/HShMVEuxsX +11/28/2017,Sports_celeb,@AndreAgassi,RT @opportunity180: We're visiting @DPAgassiCampus at this morning's community open house to see them in action! https://t.co/0QdBdt68d3 +11/16/2017,Sports_celeb,@AndreAgassi,@AAFforE Hey !! +11/10/2017,Sports_celeb,@AndreAgassi,RT @jon_wertheim: This week's @SInow /@TennisChannel podcast is w/ the great Andre Agassi who expects big things in 2018 from @DjokerNole .… +11/06/2017,Sports_celeb,@AndreAgassi,"For every ‘yes' on something, you’ll get 25 ‘no’s’. But it’s crazy how much that ‘yes’ will give you hope..." +11/04/2017,Sports_celeb,@AndreAgassi,@AugieAguilar @GoldenKnights 👍🏼👍🏼👍🏼👍🏼 +11/03/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""No #ActOfKindness, no matter how small, is ever wasted. + +- #Aesop | https://t.co/ZIBtwi7mxi" +10/27/2017,Sports_celeb,@AndreAgassi,"RT @EquiiTheApp: It’s #spooky season + +#Halloween #Halloween2017 #scary #boo https://t.co/QC35PRAP8B" +10/27/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: Can you solve this Equii in 60 secs? 🤔 https://t.co/15cnxzhDA7 +10/27/2017,Sports_celeb,@AndreAgassi,"RT @EquiiTheApp: For all of our Las Vegas friends, tomorrow is Nevada Day! +#state #nevada #statehood #battleborn #lasvegas #vegasstrong ht…" +10/25/2017,Sports_celeb,@AndreAgassi,RT @UBS: From champion on the court to champion in the classroom: @AndreAgassi shares his inspiration for @AAFforE #UBSPhilaForum https://… +10/24/2017,Sports_celeb,@AndreAgassi,"RT @UNLVmedicine: These, are some of the lifesavers. #VegasStrong | @UMCSN https://t.co/60LF6BtOgn" +10/04/2017,Sports_celeb,@AndreAgassi,#VegasSTRONG... https://t.co/fetgJ53av7 +09/28/2017,Sports_celeb,@AndreAgassi,RT @jimmykimmel: @AndreAgassi Paw Patrol! +09/28/2017,Sports_celeb,@AndreAgassi,"No goal too big, no toy too high... https://t.co/5OiJKbUUPx" +09/15/2017,Sports_celeb,@AndreAgassi,"RT @SquarePanda: ""Oh, the places you'll go!"" #FridayFeeling ☀️ https://t.co/zkglquuDRz" +09/14/2017,Sports_celeb,@AndreAgassi,"RT @LA2028: It's official 🎉 + +The IOC just announced Los Angeles will be the host city of the 2028 Olympic & Paralympic Games! #FollowTheSun…" +09/01/2017,Sports_celeb,@AndreAgassi,@Dodgers @AugieAguilar @kikehndez @JonSooHooPics 👍🏼👍🏼 +08/28/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""All the good stuff is on the other side of tired."" - @AndreAgassi #USOPEN https://t.co/7zhlR7KKA9" +08/22/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: We put beliefs into practice! + +https://t.co/ZIBtwi7mxi | #EDUCATION" +08/16/2017,Sports_celeb,@AndreAgassi,"RT @darren_cahill: Welcome to the teens, Tahlia!😊 Hope you have a great day and a very Happy Birthday. Big hugs.… https://t.co/LBg6bCM0Qr" +08/16/2017,Sports_celeb,@AndreAgassi,"RT @LA2028: The spirit of the Games lives on in LA! Relive the magic of #LA84 with the ones that helped make it a reality, the volunteers a…" +08/15/2017,Sports_celeb,@AndreAgassi,...and I'm the worst athlete in the room 😂 https://t.co/AgYQu90vkR +08/06/2017,Sports_celeb,@AndreAgassi,@Angels @MikeTrout Appreciate that Mike!! Haha +07/06/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: 19__ @Wimbledon? #TBT #Wimbledon https://t.co/Vi1SfLSfV0 +07/06/2017,Sports_celeb,@AndreAgassi,RT @darren_cahill: Back together. @AndreAgassi (the coach) & the 2 guys that taught him everything he knows 🙊😂 ESPN interview to air Saturd… +06/23/2017,Sports_celeb,@AndreAgassi,@DerekFlexFelix Thanks !! What a place !! +06/23/2017,Sports_celeb,@AndreAgassi,"RT @LA2024: With over 2️⃣0️⃣2️⃣4️⃣ events across the country, the spirit of the Games is sweeping the nation as the 🇺🇸 celebrates #OlympicD…" +06/19/2017,Sports_celeb,@AndreAgassi,https://t.co/7RHjtVr9Z4 +06/07/2017,Sports_celeb,@AndreAgassi,"RT @TimSiegelTTU: This is the Team Luke Documentary. Please retweet as I am wanting to spread the word about The Team Luke Foundation. +http…" +06/01/2017,Sports_celeb,@AndreAgassi,RT @bagiuann: @AndreAgassi @rolandgarros look at Gil!! Wow!! +06/01/2017,Sports_celeb,@AndreAgassi,@bagiuann @rolandgarros Yup ! +06/01/2017,Sports_celeb,@AndreAgassi,1999 #FrenchOpen final day.. oh my!! https://t.co/g7aG5RZF7v +06/01/2017,Sports_celeb,@AndreAgassi,@ptballs @AgassiPrep Hangin in Paris ! +06/01/2017,Sports_celeb,@AndreAgassi,Always best to travel with friends. @AgassiPrep bringing the inspiration to PARIS!! https://t.co/xGAno4J59t +05/23/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: https://t.co/ZIBtwi7mxi is an educational organization dedicated to transforming U.S. #PublicEducation for underserved youth.… +05/18/2017,Sports_celeb,@AndreAgassi,@mandar2404 Yup +05/18/2017,Sports_celeb,@AndreAgassi,@Rapetti @bbaker @gvitt Bingo +05/18/2017,Sports_celeb,@AndreAgassi,"Another sample from my @Udemy course on how to improve your #TENNIS shot!! + +FULL COURSE: https://t.co/2gpfufheVS https://t.co/fK4Fl0cWXD" +05/15/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: “All the good stuff is on the other side of tired.” - #AndreAgassi + +https://t.co/ZIBtwi7mxi" +05/14/2017,Sports_celeb,@AndreAgassi,"Your guidance, your patience, your LOVE is beyond compare. + +Happy #MothersDay!!!" +05/12/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: #TBT | @AgassiPrep Graduates First Senior Class! + +Agassi Prep graduates its first class on June 12, 2009 with a 100% college a…" +05/09/2017,Sports_celeb,@AndreAgassi,"RT @johnnykats: #KATS! Athl. commish @CiscoAguilar, @Agassi #StefanieGraf counsel, headed for #Germany https://t.co/FfBMYGOuJo via @reviewj…" +05/03/2017,Sports_celeb,@AndreAgassi,@mrbalaguer BLUE +05/03/2017,Sports_celeb,@AndreAgassi,@Royce_A_S The big guy is taking over the house!! +05/03/2017,Sports_celeb,@AndreAgassi,🤔 https://t.co/DaOSlkp9rI +04/05/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""It always seems impossible until it's done."" - @NelsonMandela" +03/30/2017,Sports_celeb,@AndreAgassi,#KeepThePromise...@ThePromiseFilm https://t.co/0czA1DrRVU +03/20/2017,Sports_celeb,@AndreAgassi,RT @udemy: .@AndreAgassi shares his tennis psychology in his Udemy course. Read more in his interview with @guardian: https://t.co/MnwKMXul… +03/10/2017,Sports_celeb,@AndreAgassi,"A few special guests stopping by today, @AgassiPrep??!!" +03/07/2017,Sports_celeb,@AndreAgassi,Blue & friend. https://t.co/DOy8Q3GdJo +03/04/2017,Sports_celeb,@AndreAgassi,@BillyBarren Thank you!! +02/17/2017,Sports_celeb,@AndreAgassi,"RT @GovSandoval: Fantastic to be back on campus at @AgassiPrep as we welcome @DemocracyPrep to the #NVFamily +#AllNV #NVLeg https://t.co/9…" +02/17/2017,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @DemocracyPrep! #EDUCATION https://t.co/acFXRcGPSq" +02/17/2017,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @GovSandoval! #EDUCATION https://t.co/110Oeb4eB2" +02/17/2017,Sports_celeb,@AndreAgassi,RT @AgassiPrep: Help us welcome Governor @BrianSandoval and @DemocracyPrep to campus! +02/09/2017,Sports_celeb,@AndreAgassi,RT @udemy: Learn how to improve your tennis game with tennis pro @AndreAgassi: https://t.co/trIBOE7pgT https://t.co/uqrd3Sc59S +02/02/2017,Sports_celeb,@AndreAgassi,@vaishnavisngh THANK YOU for reading!! +02/02/2017,Sports_celeb,@AndreAgassi,RT @vaishnavisngh: I don't remember when a book moved me so much - thank you @AndreAgassi for #Open! +02/01/2017,Sports_celeb,@AndreAgassi,"RT @udemy: ""Tennis taught me to always be open to learning & growing through success & defeat.” @AndreAgassi's new course: https://t.co/w8I…" +01/31/2017,Sports_celeb,@AndreAgassi,RT @udemy: We're excited to announce that tennis pro @AndreAgassi just launched a course on tennis fundamentals! https://t.co/w8Iw6g95E0 ht… +01/12/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: #TBT to the @AustralianOpen | https://t.co/ZIBtwi7mxi https://t.co/dCluS6f4nN +01/12/2017,Sports_celeb,@AndreAgassi,RT @LavazzaAus: Coffee cup vs #AusOpen cup? ☕ or 🏆? Guess which one to win the ultimate @AustralianOpen experience: https://t.co/aQW9veFw4h… +01/11/2017,Sports_celeb,@AndreAgassi,@Borrisokane_Abu Glad you enjoyed!! +01/11/2017,Sports_celeb,@AndreAgassi,What difference can a detail make? Discover with @LavazzaAus to win tickets to the @AustralianOpen:… https://t.co/lsGWuorzc4 +01/09/2017,Sports_celeb,@AndreAgassi,☕ or 🏆? They have more in common than you think. Join @LavazzaAus to win the @AustralianOpen final:… https://t.co/ZXi80hRJWr +01/07/2017,Sports_celeb,@AndreAgassi,@AugieAguilar move those feet ! +01/05/2017,Sports_celeb,@AndreAgassi,Always time for a scholar!! #EDUCATION https://t.co/Eh38iBZDbI +12/26/2016,Sports_celeb,@AndreAgassi,HAPPY HOLIDAYS!! 🎄🎄 +12/14/2016,Sports_celeb,@AndreAgassi,@ChrisArcher22 appreciate it. Enjoy!! +12/14/2016,Sports_celeb,@AndreAgassi,RT @ChrisArcher22: Just started @AndreAgassi autobiography! It's amazing. Thanks for your honesty and insight. #OPEN +12/01/2016,Sports_celeb,@AndreAgassi,RT @TennisHalloFame: Throwing it back today with a #tbt of epic proportions! 9 year old @AndreAgassi meets his idol Bjorn Borg in Las Vegas… +11/30/2016,Sports_celeb,@AndreAgassi,"RT @AAFforE: Charitable Giving and Accountability/Transparency | WAYS TO GIVE: https://t.co/vX7IOx9zAc + +With Education, There is Hope! #ED…" +11/29/2016,Sports_celeb,@AndreAgassi,@hckratz @AAFforE and we thank you !! +11/29/2016,Sports_celeb,@AndreAgassi,RT @hckratz: Made my holiday donation to the @AAFforE. Thanks for inspiring me @AndreAgassi #GivingTuesday #GiveBack +11/17/2016,Sports_celeb,@AndreAgassi,RT @darren_cahill: Excited to see the finished product as @udemy shoots a coaching video with @AndreAgassi. AA revealing his tennis trainin… +11/11/2016,Sports_celeb,@AndreAgassi,🇺🇸 +11/02/2016,Sports_celeb,@AndreAgassi,All in for #EDUCATION. Thank you @SantanaCarlos!! @SquarePanda @AgassiPrep https://t.co/d5IME0DoyM +11/01/2016,Sports_celeb,@AndreAgassi,"RT @johnnykats: ""His greatest instrument is his heart."" @andreagassi says of #carlossantana l, seated with… https://t.co/uIPubn3zAI" +11/01/2016,Sports_celeb,@AndreAgassi,Visiting some very special friends today with @SantanaCarlos!! https://t.co/0F3WD5iCLL +11/01/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @SantanaCarlos and @SquarePanda!" +11/01/2016,Sports_celeb,@AndreAgassi,RT @usopen: @AndreAgassi you & #SteffiGraf take #Halloween next level 😍🎃💥 #USOpen +11/01/2016,Sports_celeb,@AndreAgassi,💪🏼 https://t.co/LVKJJllS0Z +10/23/2016,Sports_celeb,@AndreAgassi,PROUD UNCLE & AUNT. #CarterAgassi https://t.co/Y76DaOJcGy +10/11/2016,Sports_celeb,@AndreAgassi,RT @omaze: Don’t miss out on your chance to play doubles tennis with @AndreAgassi & Steffi Graf! Support 2 great causes & ENTER https://t.c… +10/09/2016,Sports_celeb,@AndreAgassi,@WorldTeamTennis @CaesarsPalace @BillieJeanKing @eltonofficial @Martina @andyroddick @MardyFish 👍🏼 +10/09/2016,Sports_celeb,@AndreAgassi,RT @WorldTeamTennis: A view of our court coming together at @CaesarsPalace for Monday's #WTTSmashHits. Buy tix: https://t.co/6QBVbrbPOD htt… +09/28/2016,Sports_celeb,@AndreAgassi,RT @queenhazarika: @AndreAgassi Love you both. Warm regards from India :) +09/28/2016,Sports_celeb,@AndreAgassi,"Listen here...TENNIS with you in Vegas, flights & hotel included !! WIN: https://t.co/NMNusFxagk https://t.co/tku7iPy6KF" +09/28/2016,Sports_celeb,@AndreAgassi,⛈⛈⛈ rolling into #VEGAS! +09/22/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: YOU can win a trip to #Vegas to play a game of doubles with @AndreAgassi & Steffi Graf! ENTER: https://t.co/r8tQ4cZVMS https:/… +09/22/2016,Sports_celeb,@AndreAgassi,RT @Martijn_Blanken: Truly impressive philanthropist and entrepreneur @AndreAgassi on stage in 2 hours at #Vantage16 https://t.co/Pbw1yZPja7 +09/16/2016,Sports_celeb,@AndreAgassi,RT @omaze: Would you choose Andre Agassi or Steff Graf as your partner for doubles tennis? Join & ENTER https://t.co/j9kQ2tZsIh https://t.c… +09/16/2016,Sports_celeb,@AndreAgassi,RT @darren_cahill: @redlinersonline @AndreAgassi the best! 👍 +09/15/2016,Sports_celeb,@AndreAgassi,You & me. Stef & your friend. DOUBLES??! https://t.co/adCMwArzc4 https://t.co/8jS3ErGurk +09/13/2016,Sports_celeb,@AndreAgassi,RT @Telstra_EntGovt: We're looking forward to the @AndreAgassi & @SirKenRobinson speaker sessions at #Vantage16 https://t.co/sgxfyLZXfk +09/11/2016,Sports_celeb,@AndreAgassi,🇺🇸 +09/08/2016,Sports_celeb,@AndreAgassi,@ssr99 don't get me in trouble +09/08/2016,Sports_celeb,@AndreAgassi,Doubles vs Stef & I in #Vegas?!! Support 2 great causes & ENTER: https://t.co/sT1siNeoIL https://t.co/OkTn9nCBZ2 +09/01/2016,Sports_celeb,@AndreAgassi,RT @Steve_Weissman: So cool to broadcast the first match @usopen with the roof closed @TennisChannel @justingimelstob 🎾🇺🇸 https://t.co/dLHH… +08/31/2016,Sports_celeb,@AndreAgassi,RT @LavazzaUSA: Taking over the High Line! #Imback #USOpen https://t.co/jVfrFj3gzo +08/31/2016,Sports_celeb,@AndreAgassi,@usopen my pleasure!!! +08/31/2016,Sports_celeb,@AndreAgassi,RT @usopen: Spotted: We were so happy to have our former champ @AndreAgassi in the house tonight! 🏆🏆 #usopen https://t.co/9VrlufubhI +08/30/2016,Sports_celeb,@AndreAgassi,@Dan_Fuller1 good book but no... +08/30/2016,Sports_celeb,@AndreAgassi,And where does this door lead??!! #USOPEN https://t.co/ncatcT5Jss +08/30/2016,Sports_celeb,@AndreAgassi,#USOPEN 💪🏼 https://t.co/FyzfesdPbZ +08/30/2016,Sports_celeb,@AndreAgassi,@LavazzaUSA Proud to be back with #Lavazza for an amazing project!! +08/30/2016,Sports_celeb,@AndreAgassi,RT @LavazzaUSA: Andre Agassi is back. Watch the video. #ImBack https://t.co/Q6pIJ6Z68x +08/30/2016,Sports_celeb,@AndreAgassi,#NYC!!! +08/25/2016,Sports_celeb,@AndreAgassi,@thepromisefilm Kirk would be proud!! +08/25/2016,Sports_celeb,@AndreAgassi,"RT @thepromisefilm: ""The Promise"" will premiere at #TIFF16 Sept 11. Individual tickets go on sale on Sept 4 https://t.co/07QNIWC6pn https:/…" +08/24/2016,Sports_celeb,@AndreAgassi,https://t.co/Vi1mpIrE2Z 👍🏼 https://t.co/Bkyq73AgNC +08/23/2016,Sports_celeb,@AndreAgassi,RT @cnnsport: Tennis legend @AndreAgassi opens up to @TheRealPatCash 🎾 Watch/read: https://t.co/ERMYzbtau7 #CNNOpenCourt https://t.co/G6Nvq… +08/22/2016,Sports_celeb,@AndreAgassi,RT @Telstra_news: We're excited to announce sports legend and entrepreneur @AndreAgassi as our headline speaker at #Vantage16 https://t.co/… +08/16/2016,Sports_celeb,@AndreAgassi,Buster standing under Blue... Blue is 8months old as of yesterday 😳 https://t.co/QIw8mPXEi9 +07/28/2016,Sports_celeb,@AndreAgassi,"You feel a sense of pride, responsibility & opportunity to do something that you're connected to but that’s much bigger than you #Olympics🇺🇸" +07/22/2016,Sports_celeb,@AndreAgassi,"My story began in Las Vegas, where we dare to dream. Now I'm grateful... @NIKE #JUSTDOIT https://t.co/J4rfiLgdJ5" +07/21/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: ""We inspire learning through academic rigor, shared responsibility and a culture of respect."" - @AAFforE #EDUCATION" +07/20/2016,Sports_celeb,@AndreAgassi,"RT @darren_cahill: My new best friend 😍 @AndreAgassi's little guy ""Blue"" 7 month old, 100 pound Great Dane. https://t.co/9VmyiEyt2m" +07/14/2016,Sports_celeb,@AndreAgassi,Welcome to Sutri... https://t.co/g6pvHYVPtJ +07/04/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: Happy #FourthofJuly 🇺🇸! +06/21/2016,Sports_celeb,@AndreAgassi,#BELIEVE EVERYDAY https://t.co/Vi1mpIrE2Z https://t.co/4wMfHFYnaL +06/02/2016,Sports_celeb,@AndreAgassi,Who has them??! https://t.co/m1kJnvtWFr +06/01/2016,Sports_celeb,@AndreAgassi,RT @SoleCollector: .@AndreAgassi's Nike Air Tech Challenge 3 goes gold for Wimbledon: https://t.co/a78gQqxF04 https://t.co/cRiqCUvoA3 +06/01/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: STAFF MEETING in 1 hour! #EDUCATION +05/24/2016,Sports_celeb,@AndreAgassi,"Signed, sealed and delivered...post your letter to @RafaelNadal at Nike Paris!! #VamosRafa @NikeCourt https://t.co/ZELyToNFab" +05/23/2016,Sports_celeb,@AndreAgassi,Closer look... https://t.co/XFI6E5lEPs +05/23/2016,Sports_celeb,@AndreAgassi,Ever been in love? https://t.co/9DCJ9HIhcV +05/20/2016,Sports_celeb,@AndreAgassi,RT @AgassiPrep: Nickelodeon #WORLDWIDEDAYOFPLAY! https://t.co/NDCzofio6B +05/19/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Thank you for the visit, GOV @BrianSandoval! #EDUCATION https://t.co/cwJDP0Q8rP" +05/18/2016,Sports_celeb,@AndreAgassi,📸 cred: John Russell https://t.co/p9ZnXSgcz5 +05/11/2016,Sports_celeb,@AndreAgassi,RT @SquarePanda: Meet the panelists who will join us to explore the #FutureofEdTech next week at Stanford University! https://t.co/f4B6yFjt… +05/05/2016,Sports_celeb,@AndreAgassi,"RT @ChampSeries10s: Here's a throwback photo of @andyroddick @JRBlake and @MardyFish .... ""U.S. Davis Cup Future"" https://t.co/FqMw6F5Fxj" +05/04/2016,Sports_celeb,@AndreAgassi,On 5/12 I'm a panelist at @SquarePanda's #FutureofEdTech event at STANFORD.. Join online to learn more !! https://t.co/JU2WFBlLQ3 +05/03/2016,Sports_celeb,@AndreAgassi,Proud to exhibit @AgassiAndReyes at UK's @ElevateArena trade show Wednesday/Thursday with @CFIHQ!!! #Elevate2016 +05/03/2016,Sports_celeb,@AndreAgassi,RT @SquarePanda: We're thrilled to announce #Tech & the Future of #Education: a symposium happening next week with @levarburton @AndreAgass… +04/28/2016,Sports_celeb,@AndreAgassi,RT @jimmykimmel: I’ve been replaced. #TakeYourKidToWorkDay https://t.co/wBjZW3b7iB +04/28/2016,Sports_celeb,@AndreAgassi,"Sit back and enjoy this one. Well done, PK!!! @Nike https://t.co/G140NVf9gU" +04/28/2016,Sports_celeb,@AndreAgassi,"With Education, There is Hope!!! @AAFforE https://t.co/oazbK6LWb8" +04/24/2016,Sports_celeb,@AndreAgassi,@KevinI he's growing...8weeks 20lbs. 12-- 40lbs-- 16now 66lbs +04/24/2016,Sports_celeb,@AndreAgassi,I'm in love ! https://t.co/9Snvqw28Vj +04/15/2016,Sports_celeb,@AndreAgassi,See it ? https://t.co/F2pPsCobTW +04/13/2016,Sports_celeb,@AndreAgassi,CONGRATS @opportunity180!!! Former NV edu official wins $10M state charter school contract: https://t.co/UulPOLwI08 https://t.co/IBdnIjFqbD +04/13/2016,Sports_celeb,@AndreAgassi,"RT @SquarePanda: Invest now, and watch your child's love of reading grow and shine forever. +https://t.co/krxjYUt98t https://t.co/eqKeUcjfTY" +04/10/2016,Sports_celeb,@AndreAgassi,RT @JRBlake: Thanks Andre. It helps that I'm sitting next to you right now. Just soaking up the knowledge. https://t.co/Z7fJIdl5FZ +04/10/2016,Sports_celeb,@AndreAgassi,Solid work tweeting sir @JRBlake !! +04/09/2016,Sports_celeb,@AndreAgassi,I see you CHARLESTON... @VolvoCarOpen https://t.co/AD2tutJsdG +04/09/2016,Sports_celeb,@AndreAgassi,"RT @VolvoCarOpen: Reunion between old friends. 😎 + +RT if you're excited to see these 4 legends of the game playing tonight! 🎾 #VCO2016 https…" +04/09/2016,Sports_celeb,@AndreAgassi,69ft putt?! @TheMasters #YIKES +04/09/2016,Sports_celeb,@AndreAgassi,#VCO2016...where's @MardyFish?! @ChampSeries10s https://t.co/XhMGPaAWwc +04/09/2016,Sports_celeb,@AndreAgassi,RT @paugasol: Great meeting you yesterday @andreagassi! I hope you enjoyed your visit to… https://t.co/zFzUMGM7NI +04/09/2016,Sports_celeb,@AndreAgassi,"RT @VolvoCarOpen: Men's tennis returns to Charleston w/ @ChampSeries10s, feat. #Agassi, #Roddick & more! Tix: https://t.co/JpNxdfkiBY https…" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @BoxeoDCampeones: Así luce Lucas Matthysse a sólo dos semanas del pesaje en Kuala Lumpur, Malasia. #PacquiaoMatthysse #FightOfChampions…" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: IT’S TIME‼️ + +#CaneloGGG2 Social 🎟 Pre-sale starts NOW: https://t.co/ZskL3u0sBJ Use Code: MEXICO https://t.co/kyFwuvucYL" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: TOMORROW!!! + +#CaneloGGG2 Social 🎟 Pre-sale! + +⏰: 10amPT +Use Code: MEXICO +https://t.co/CmSMa8JcDc https://t.co/UfKHA4Xz…" +06/24/2018,Sports_celeb,@OscarDeLaHoya,RT @RondaRousey: Congrats to our onefightmanagement fighter luckyboyferd on his latest victory @goldenboyboxing 👏🏼👏🏼👏🏼👏🏼 https://t.co/lqgHm… +06/24/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Main event time!! 🔥 + +@VergilOrtiz enters the ring. #OrtizSalgado #GBPonESPN https://t.co/fjI31ZSjj8" +06/23/2018,Sports_celeb,@OscarDeLaHoya,Viva Mexico!!! https://t.co/CdZNuxyrAF +06/23/2018,Sports_celeb,@OscarDeLaHoya,"Vamos México! Si se pudo, si se pudo! 🇲🇽 #OrgulloMexicano #worldcup2018 ##MexicoVsSouthKorea https://t.co/6d45PT2PLt" +06/20/2018,Sports_celeb,@OscarDeLaHoya,"RT @danrafaelespn: Golden Boy Promotions and HBO are finalizing a tripleheader for July 21 at the Hard Rock Hotel & Casino in Las Vegas, th…" +06/18/2018,Sports_celeb,@OscarDeLaHoya,"@danrafaelespn @ShaneMosley_ Hahah, kids don’t know about this action." +06/17/2018,Sports_celeb,@OscarDeLaHoya,Viva México 🇲🇽 y el pan dulce!!! #sisepuede #mexico #futbol https://t.co/UbXwjUrgtj +06/15/2018,Sports_celeb,@OscarDeLaHoya,@SeFutbol gooooolllllll!!!!!! +06/15/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Mercito Gesta takes home the belt with a Majority Decision Victory #GBPonESPN #boxing https://t.co/eSxF4nF66P +06/14/2018,Sports_celeb,@OscarDeLaHoya,"RT @BleacherReport: Canelo-GGG rematch set for September 15, per @OscarDeLaHoya https://t.co/108XY1xEXm" +06/13/2018,Sports_celeb,@OscarDeLaHoya,"I’m happy to inform that we have a fight September 15!!!! #CaneloGGG2 +Feliz De informar que si tenemos pelea Septi… https://t.co/vFrHrA3I32" +06/13/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Log on to https://t.co/gEwz3LcyYG at 1 PM for the #GBPonESPN weigh in ft. @TheRealMGesta https://t.co/o26BYzNXDO +06/13/2018,Sports_celeb,@OscarDeLaHoya,Half hour to decide if the biggest fight in boxing will take place. #whereisggg +06/13/2018,Sports_celeb,@OscarDeLaHoya,t-minus two hours. Somehow I think @eddiehearn @frankwarren_tv and Al Haymon won't be as difficult to reach as @gggboxing #whereisggg +06/13/2018,Sports_celeb,@OscarDeLaHoya,"@canelo wants it, @goldenboyboxing wants it, the media want it, fans want it. Paging @gggboxing. #whereisggg" +06/13/2018,Sports_celeb,@OscarDeLaHoya,"Tic-Toc, Tic-Toc. If any fight freaks see @GGGBoxing in Russia, perhaps you can lend him a pen. #whereisGGG" +06/13/2018,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: It's down to this: @GoldenBoyBoxing & @Canelo issue @GGGBoxing & @TomLoeffler1 a deadline of noon PT on Wednesday to acc… +06/11/2018,Sports_celeb,@OscarDeLaHoya,"RT @touchumup: Good food, good times with @MrsEsterMarie and our son in NY after @DiegoDeLaHoya victory this past Friday. Next stop, @Fan…" +06/10/2018,Sports_celeb,@OscarDeLaHoya,Congratulations to @leosantacruz2 on a great fight and hats off to @abnermares for saying those kind words to Leo’s… https://t.co/TGA1f1ZWvG +06/09/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TONIGHT! @diegodelahoya vs Jose Salgado for the #NABF and #NABO Super Bantamweight Titles on @espn 9:30pm PT. #GBPonES… +06/08/2018,Sports_celeb,@OscarDeLaHoya,Excited to see the next installment of @SicarioMovie SICARIO: DAY OF THE SOLDADO out in theaters June 29!… https://t.co/YPqOKHaZgQ +06/05/2018,Sports_celeb,@OscarDeLaHoya,"RT @touchumup: It’s fight week for @DiegoDeLaHoya vs Jose sugar Salgado from @TurningStone @espn @NABFboxing @WorldBoxingOrg +And catch @of…" +06/01/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: 🥊🥊🥊 Tonight’s #LAFightClub is LIVE on @Roku via the #RingTV app. Download it today. 🥊🥊🥊 + +https://t.co/k203xsmL8d" +05/31/2018,Sports_celeb,@OscarDeLaHoya,Honored to have won 4 @tellyawards for @GoldenBoyBoxing #MediaEntertainment productions including #IAmBoxing… https://t.co/eBhAqFOqCq +05/29/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Tune in now #GoldenBoyLIVE #GoldenBoyRadio @JessRosales1 @DuranSports https://t.co/WBsQrdvzwC +05/28/2018,Sports_celeb,@OscarDeLaHoya,"@Canelo is moving on, the only possible way he fights @GGGBoxing in September is on same terms we agreed on after t… https://t.co/FkCKhJuSWc" +05/27/2018,Sports_celeb,@OscarDeLaHoya,RT @touchumup: With @officialvalerio at yesterday’s Newton Cadet Scholarship Fndn. car show. Catch #kidneza in action 6/14 @FantasySprings… +05/26/2018,Sports_celeb,@OscarDeLaHoya,@GGGBoxing good look with Sergiy Derevyanchenko who’s 11-0 and your IBF mandatory the train has moved on and going… https://t.co/c1trgFvzrn +05/25/2018,Sports_celeb,@OscarDeLaHoya,"RT @ringmagazine: BREAKING: Canelo-Golovkin rematch talks hit roadblock, @OscarDeLaHoya seeks new opponent for Alvarez https://t.co/6oXaiv1…" +05/20/2018,Sports_celeb,@OscarDeLaHoya,Why would I be disappointed when I’m the only promoter willing to make good fights win or loose for the fans. https://t.co/rT70kW8svY +05/20/2018,Sports_celeb,@OscarDeLaHoya,"What an amazing fight congratulations @mrgaryrusselljr and @JosephDiazJr + +In one week @GoldenBoyBoxing 4 world tit… https://t.co/IZFyOCfSGd" +05/18/2018,Sports_celeb,@OscarDeLaHoya,"Spence can be like my hero sugar ray Leonard, but he has no promoter to plan out and guide his career. #strategie… https://t.co/LVhvUfAAn5" +05/18/2018,Sports_celeb,@OscarDeLaHoya,RT @JosephDiazJr: 126lbs on the $! Tune in live on @showtimeboxing tomorrow night 10pmET! Who’s #TeamDiazJr?? First World Title shot babbbb… +05/16/2018,Sports_celeb,@OscarDeLaHoya,"RT @JosephDiazJr: Fighting for the WBC Featherweight Title this Sat, May 19th live on @showtimeboxing! @goldenboyboxing #StrapSeason #TheCo…" +05/15/2018,Sports_celeb,@OscarDeLaHoya,Canelo just signed contract to year round VADA testing. +05/13/2018,Sports_celeb,@OscarDeLaHoya,Tune-in to @HBOboxing for more great boxing! #AliMunguia #VargasHovhannisyan https://t.co/yVsyup5wYv +05/13/2018,Sports_celeb,@OscarDeLaHoya,Great fight to both warriors. Congratulations @VasylLomachenko +05/12/2018,Sports_celeb,@OscarDeLaHoya,RT @AlexMar61844168: @OscarDeLaHoya @GGGBoxing @Canelo GGG and his cheerleaders acting like the win on 5/5 was something to brag about... h… +05/12/2018,Sports_celeb,@OscarDeLaHoya,Canelo will return in September https://t.co/Jb0J3Z92XC +05/12/2018,Sports_celeb,@OscarDeLaHoya,Glad your one of 100 idiots https://t.co/3rnQpzASfJ +05/12/2018,Sports_celeb,@OscarDeLaHoya,Hahahaah please https://t.co/rabSktZowA +05/12/2018,Sports_celeb,@OscarDeLaHoya,In the mean time @GGGBoxing making 3million and @Canelo making 40 million without you. #sighnthecontract #scared #CaneloGGG2 #stopcrying +05/12/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: WE HAVE A FIGHT!!🔥 + +👑 vs. 🤖 + +Both fighters weigh-in at 134.6 lbs! It’s going DOWN tomorrow night on @espn #LinaresLoma…" +05/09/2018,Sports_celeb,@OscarDeLaHoya,Hahaahahah https://t.co/rJtlBvp6Lx +05/06/2018,Sports_celeb,@OscarDeLaHoya,@beINSPORTS Messi the Great!!!!! +05/06/2018,Sports_celeb,@OscarDeLaHoya,RT @BoxToffee: 23 years ago today @OscarDeLaHoya defeated Rafael Ruelas via 2nd round TKO to make a successful 4th defence of his WBO Light… +05/06/2018,Sports_celeb,@OscarDeLaHoya,@beINSPORTS Messi the great!!!! +05/05/2018,Sports_celeb,@OscarDeLaHoya,RT @spike_osullivan: It was an honour to fight in front of the Mexican people on @GoldenBoyBoxing card on #CincoDeMayoWeekend and also an h… +05/05/2018,Sports_celeb,@OscarDeLaHoya,MUST WATCH: @Ryankingry analyzes his unanimous decision victory over Velez. https://t.co/eJFlZsWZIc #GBPonESPN… https://t.co/WaFtErm43z +05/05/2018,Sports_celeb,@OscarDeLaHoya,espn2 https://t.co/w3xdgnflZc +05/05/2018,Sports_celeb,@OscarDeLaHoya,"If a 19 year old fighter named @Ryankingry was out selling me at the gate, i would be pissed." +05/05/2018,Sports_celeb,@OscarDeLaHoya,"It’s true, America loves a winner and success story but we will always have those who are miserable and jealous bec… https://t.co/OGMfnwkbR9" +05/05/2018,Sports_celeb,@OscarDeLaHoya,"RT @spike_osullivan: In four & a half hours I step in the ring @stubhub and i'll be putting on a show for all the Irish, Mexican, American…" +05/04/2018,Sports_celeb,@OscarDeLaHoya,Have a crazy safe Cinco de Mayo weekend! @Ryankingry tonight at 7pm on @espn will headline a fantastic card with a… https://t.co/BPN7wT3JNS +05/04/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: IT’S ON!!! 🔥 Things got heated between @Ryankingry and @jayson_velez at today’s #GBPonESPN weigh-in. Comment below who… +05/04/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Oscar de La Hoya starting Golden Boy MMA, eyes Chuck Liddell vs Tito Ortiz 3 https://t.co/qNTVe2HKHm via @mmamania" +05/03/2018,Sports_celeb,@OscarDeLaHoya,"RT @TMZ: Oscar De La Hoya Starting MMA Biz, Targeting Chuck Liddell https://t.co/XS2aRoJNUO" +05/03/2018,Sports_celeb,@OscarDeLaHoya,RT @Canelo: ❤️ https://t.co/0GnjDLSPFA +04/28/2018,Sports_celeb,@OscarDeLaHoya,RT @SupereeeGO: EGO THE CHOLO VS. THE FLASH (@RyanKingRY) WHO WILL WIN? https://t.co/ErII2PQ3U4 +04/26/2018,Sports_celeb,@OscarDeLaHoya,RT @Ryankingry: This video was sent to me and it’s too cute not to post. Love you and I’ll do my best to be a good role model to you and to… +04/26/2018,Sports_celeb,@OscarDeLaHoya,RT @_solisr: It’s sad not seeing anybody talk about this @KTLA @ABC lots of people tend to ignore what happens to Hispanics in general and… +04/22/2018,Sports_celeb,@OscarDeLaHoya,Good fights on @ShowtimeBoxing tonight!! +04/09/2018,Sports_celeb,@OscarDeLaHoya,RT @ShannaMoakler: My beautiful daughter @Atianadelahoya so proud of her @OscarDeLaHoya shot by Oscar picazo https://t.co/YpJfo2xwo8 +04/08/2018,Sports_celeb,@OscarDeLaHoya,"RT @SupereeeGO: EL NIÑO DE ORO +Aka @oscardelahoya +@goldenboyboxing @ East Los https://t.co/CN7hik9lkb" +04/07/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: LA Fight Club - April 6th - Marlen Esparza vs Laetizia Campana https://t.co/2BrhBLtU5M +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @richardgomez79: @OscarDeLaHoya People don’t like the TRUTH! +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @jaebadiah: @OscarDeLaHoya @anthonyfjoshua @BronzeBomber I feel like #thegoldenboy is right about this one. #legend +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @925raidernation: @OscarDeLaHoya this is off topic but thank you for signing my poster I sent out to my Tio. Meant a lot and really made… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MontagueKaris: @MovsumovAslan @OscarDeLaHoya I think as a WORLD champ you should fight over all continents.. The USA is not the be all… +04/05/2018,Sports_celeb,@OscarDeLaHoya,You know it https://t.co/I0XthO9E2X +04/05/2018,Sports_celeb,@OscarDeLaHoya,If I was promoting @BronzeBomber I would take him to the UK and fight him with @anthonyfjoshua then have a rematch… https://t.co/lMTKSjvT7B +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MovsumovAslan: @OscarDeLaHoya u are absolutelly correct about Anthony Joshua!he must conquer USA to be a true superstar!superstars are… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @jaymzdenning: @OscarDeLaHoya You seem to be getting a lot of stick on twitter tonight mate.. Very unfair considering your incredible ca… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MovsumovAslan: @Jonathangeldar1 @OscarDeLaHoya Well if u wanna conquer the world and want to be the most popular fighter in the world u… +04/05/2018,Sports_celeb,@OscarDeLaHoya,Idiot! I made 800 million in my career. https://t.co/0UqZdnL22F +04/05/2018,Sports_celeb,@OscarDeLaHoya,"Don’t even go there you idiot, I fought the very best. https://t.co/yYaXn58EXJ" +04/05/2018,Sports_celeb,@OscarDeLaHoya,If @anthonyfjoshua and @BronzeBomber want to become household names in the US of A and stop doing mediocre raiding… https://t.co/7uBVUK2dbD +04/02/2018,Sports_celeb,@OscarDeLaHoya,"Signed, sealed, and delivered: Proud to officially announce that WBA welterweight world champion +@MatthysseLucas w… https://t.co/50EiRLUute" +04/02/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: ""He was a tough kid and had never been stopped. I knew this was the perfect fight to come back and see where I'm at. I…" +03/23/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Wow 😮 + +@Ryankingry jaw dropping knockout win in the main event! #GBPonESPN @espn https://t.co/cyqkoB7D9R" +03/22/2018,Sports_celeb,@OscarDeLaHoya,Make sure you tune-in to @ESPN tonight for a great night of #boxing! @Ryankingry will not disappoint in the main ev… https://t.co/JPbU58wLUw +03/22/2018,Sports_celeb,@OscarDeLaHoya,RT @ringmagazine: . @Canelo sends @GGGBoxing a message through his his Instagram story. 😳😳😳 https://t.co/nNcIYzXuWp +03/20/2018,Sports_celeb,@OscarDeLaHoya,RT @LUPILLO8: Gracias a DIOS por la oportunidad de poder respaldar a un talento mexicano y futuro campeón JOUSCE GONZALEZ #UNIDOSApoyandoRA… +03/20/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Lineal Ring Magazine Middleweight Champion @Canelo 100% focused in training camp. 🇲🇽👊🏼 #CaneloGGG2 #TeamCanelo https:/… +03/19/2018,Sports_celeb,@OscarDeLaHoya,"LA! Make sure to tune-in to @GDLA tomorrow morning @FOXLA +@lauradiazanchor #MorningShow #GoodDayLA https://t.co/83Ik3Tqsn0" +03/15/2018,Sports_celeb,@OscarDeLaHoya,It’s going down!! #May5 #CaneloGGG2 #CincoDeMayo @hboboxing #PPV #NoJudges https://t.co/nuy4BgroF0 +03/12/2018,Sports_celeb,@OscarDeLaHoya,As excited as anyone that big fight between @JorgeLinares and @vasyllomachenko is getting close. But it's not done… https://t.co/R170h67MmR +03/10/2018,Sports_celeb,@OscarDeLaHoya,@mannypacquiao vs @MatthysseLucas would be a fight of the year candidate. +03/08/2018,Sports_celeb,@OscarDeLaHoya,"RT @MarioLopezExtra: Fun shoot with the homie @OscarDelaHoya today... +@CMTequila + +#CigarAndSpiritsMag #CasaMexico #Tequila https://t.co/w…" +03/08/2018,Sports_celeb,@OscarDeLaHoya,RT @ABC7: VIDEO: Meet the 19-year-old @OscarDeLaHoya says has the potential to be the next “mega-star” in the world of boxing https://t.co/… +03/05/2018,Sports_celeb,@OscarDeLaHoya,"@BronzeBomber congratulations on such a great accomplishment when everyone doubted you, hit me up when you wanna ma… https://t.co/8xkIU9LHRu" +03/01/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@Canelo and @gggboxing trainer @abelthesummit get into a heated exchange in last nights #CaneloGGG2 Fan Event. Watch… +02/27/2018,Sports_celeb,@OscarDeLaHoya,RT @FoxBusiness: Former world champion boxer @OscarDeLaHoya discusses the future of boxing and why he believes that the sport will make a c… +02/18/2018,Sports_celeb,@OscarDeLaHoya,RT @lauradiazanchor: @OscarDeLaHoya earned huge success in sports & business.But what achievement does this Olympic gold medal winner value… +02/15/2018,Sports_celeb,@OscarDeLaHoya,"6., So, @VasylLomachenko has three options. 1) Fight on May 12th on HBO 2) Fight on any other day on the calendar,… https://t.co/NFBcCUAsKo" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"5., HBO is willing to pay more for the fight than is currently being offered. And they would do it on May 12th." +02/15/2018,Sports_celeb,@OscarDeLaHoya,"4., While @JorgeLinares is happy to fight on any other date of the calendar, if @VasylLomachenko absolutely, positi… https://t.co/z1rSKdTcoL" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"3., We know of no bylaw, Ukranian holiday or ""magic day"" in the words of Bob Arum that mandates that… https://t.co/0pPvuP567g" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"2., @JorgeLinares wants this fight. @GoldenBoyBoxing wants this fight. Mr. Honda wants this fight. And collectively… https://t.co/REjUuASZop" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"1., Over the last days, there has been a lot of rumor and speculation about the potential fight between… https://t.co/zxzFzm0Bzf" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"RT @danrafaelespn: Since @Ryankingry's next fight was announced today, here's a look back at the 2017 prospect of the year story I did on h…" +02/04/2018,Sports_celeb,@OscarDeLaHoya,@BobArum @mannypacquiao vs @MatthysseLucas would be a barn burner. #fansfirst #war +02/02/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: This time, they won't leave it up to the judges... + +#CaneloGGG2 IS OFFICIAL!! #May5 https://t.co/WECEiw314u" +02/01/2018,Sports_celeb,@OscarDeLaHoya,@danrafaelespn @JorgeLinares @VasylLomachenko @trboxing @BobArum @GoldenBoyBoxing @KlimasBoxing @CarlMoretti No tal… https://t.co/kPdH6TFvtX +01/30/2018,Sports_celeb,@OscarDeLaHoya,"Check me out on @MikeTyson’s new podcast, @BiteTheMicShow. + +Click the link to listen: https://t.co/B7gk7S3iaV… https://t.co/32XKJDQywT" +01/29/2018,Sports_celeb,@OscarDeLaHoya,Boxing’s biggest event of 2018 is official! #CaneloGGG2 I expect we will see even more fireworks. #May5 https://t.co/r7KA6APlDl +01/28/2018,Sports_celeb,@OscarDeLaHoya,Kicking off @goldenboyboxing in 2018 with a bang!! Congratulations to the new WBA welterweight champion ‘La Máquina… https://t.co/GXV0Z6Ebsw +01/28/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Congratulations to the NEW WBA welterweight champion “La Máquina” 🇦🇷 Lucas Matthysse! #MatthysseKiram https://t.co/0vD… +01/26/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@OscarDeLaHoya is back on #GoldenBoyRadio tomorrow morning with Tattoo and The Crew! Only on @dash_radio #TuneIn http… +01/26/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: After a Breakout 2017, Golden Boy Heads Back Into the Ring for HBO Fight This Weekend https://t.co/Zu9Pb5Od9c" +01/14/2018,Sports_celeb,@OscarDeLaHoya,RT @LAKings: .@OscarDeLaHoya congratulates Bob Miller on his statue outside of STAPLES Center! 👏 https://t.co/6jc9uHGX9T +01/12/2018,Sports_celeb,@OscarDeLaHoya,@Canelo vs @GGGBoxing is not done and not close to being done considering reports. I promise all the fans it will g… https://t.co/e38QySTBnd +01/10/2018,Sports_celeb,@OscarDeLaHoya,RT @jay_quigley: @KevByrneBox @GoldenBoyBoxing @everlast @McElhinneys @VillaRoseHotel @JacksonsHotel1 @Irishboxingcom @chrismcnulty86 @Done… +01/10/2018,Sports_celeb,@OscarDeLaHoya,RT @jay_quigley: I’m still with the best in the business and staying with the best @GoldenBoyBoxing @makeawar @Micheladatime going to bring… +01/06/2018,Sports_celeb,@OscarDeLaHoya,RT @officialvalerio: Good morning USA! It’s the first weekend of the year!!! Share the joy of success and love! @touchumup @GoldenBoyBoxing… +12/29/2017,Sports_celeb,@OscarDeLaHoya,Want to send my congrats to @Ryankingry on being named the 2017 @ESPN prospect of the year and to @GoldenBoyBoxing… https://t.co/JxX6zlAItI +12/28/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: After Most Successful Year In Golden Boy Promotions History, @OscarDeLaHoya Aims For More In 2018 - @Forbes @peterkahn…" +12/26/2017,Sports_celeb,@OscarDeLaHoya,Let me take this opportunity to thank all the fans who support boxing and @GoldenBoyBoxing . 2018 will once again b… https://t.co/0cwUsEJ5uB +12/16/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Billy Joe Saunders vs David Lemieux - Undercards https://t.co/ehZbB9egrn +12/14/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #Bestof2017 🏆 + +Who is your pick for #GoldenBoy's Prospect of the Year? + +Here are the nominees: +@VergilOrtiz +@AlexisR…" +12/10/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Salido vs Roman - Undercards - Aaron Mckenna https://t.co/pHDi37nH4R +12/09/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/zpM5VAm20t +12/09/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: How many of you #boxing fans box? We're challenging you to a #10DaysOfBoxing Holiday Giveaway Challenge! Win #GoldenBo… +12/09/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Look at all these prizes we have for our 10 winners! 😍Join the #10DaysOfBoxing #GoldenBoy @titleboxing challenge and… +12/08/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW on #GoldenBoy Radio @dash_radio! Special Holiday in studio performance by @therealfrankieJ w/ @Tattootheone a… +12/07/2017,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: Orlando Salido promises action -- what else would you expect? -- in his fight vs. Miguel Roman on Saturday on @HBOboxing… +12/07/2017,Sports_celeb,@OscarDeLaHoya,Este sábado en @HBO Salido vs Roman será una guerra. @elbandido130 en acción desde el Mandalay Bay. @GoldenBoyBoxing @ZanferBox #HBO #War +12/07/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/4GLvgtzh34 via @youtube keep talking crap. +12/07/2017,Sports_celeb,@OscarDeLaHoya,Hey @FloydMayweather you wanna continue talking sh*t. Ok there you go. https://t.co/PImjvxUTWf +12/05/2017,Sports_celeb,@OscarDeLaHoya,RT @realworldkidali: Thank you to all the love and support i have been receiving. Last night i accomplished one of the biggest goals in my… +12/05/2017,Sports_celeb,@OscarDeLaHoya,RT @Ryankingry: Jab jab jab Canada immmmm coming in less then two weeks sooo excited https://t.co/rgN6lnj9dI +12/03/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: All smiles for #TheLastOne! + +Two legends 🙌🏼 @OscarDeLaHoya greets @RealMiguelCotto in his locker as he prepares for h…" +12/02/2017,Sports_celeb,@OscarDeLaHoya,"My boy @Tattootheone live on #goldenboyradio @dashradio exclusively w/ @realmiguelacotto @thegarden. + +Tonight, fin… https://t.co/oYnMajabLY" +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@TheGarden is ready for #CottoAli FIGHT NIGHT! Are you ready? #TheLastOne for @RealMiguelCotto tonight on @hboboxing… +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @totalfratmove: #CottoAli goes down tonight at 10pm ET on @HBOboxing. Retweet for a chance to win this glove signed by @RealMiguelCotto.… +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @dodo: This puppy couldn't stop crying out in pain when anyone came near him because he'd never felt a gentle touch. But then he met thi… +12/02/2017,Sports_celeb,@OscarDeLaHoya,Future Hall of Famer and a true Legend of Puerto Rico @RealMiguelCotto looks to go out as a champion and defend his… https://t.co/9XXmtM3R5R +12/01/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@Canelo sends his best wishes to the legendary @RealMiguelCotto ahead of his final fight Saturday night @TheGarden! #… +12/01/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Score tonight's #GBPonESPN main event on the @fightersnetwork app! Download now at https://t.co/90EfxuX0MX https://t.c… +11/26/2017,Sports_celeb,@OscarDeLaHoya,Good fight on hbo now. +11/25/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: (Cont.) Our thoughts and prayers are with Cesar's girlfriend who remains in critical condition and his entire family. +11/25/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Everyone at Golden Boy Promotions is heartbroken over the passing of Cesar Diaz over Thanksgiving weekend. As talented… +11/24/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #HappyThanksgiving! We're thankful for a successful year and your continued support! Most of all, for being able to gi…" +11/23/2017,Sports_celeb,@OscarDeLaHoya,Hahaha happy turkey day https://t.co/VxBUfcN4TJ +11/21/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Tonight! We'll be watching. Good Luck to the @HoustonDynamo in leg 1 of the Western Conference Championship! ⚽️ #Forev… +11/20/2017,Sports_celeb,@OscarDeLaHoya,RT @GreenDotSchools: Oscar De La Hoya Foundation Annual Turkey Giveaway supports the East Los Angeles community for the 21st year in a row!… +11/20/2017,Sports_celeb,@OscarDeLaHoya,Gracias @eastlaparade! Viva #EastLA! #ela #Christmasparade https://t.co/bm4cjWfY1X +11/19/2017,Sports_celeb,@OscarDeLaHoya,Here we go!!! Can't wait to see you all @eastlaparade #Hometown #EastLA @EASTLA_NEWS @goEastLos #ela https://t.co/I63eDJM04D +11/19/2017,Sports_celeb,@OscarDeLaHoya,"With the man, the myth, the legend @ArtLaboe #Orale #EastLA @eastlaparade #ela @EASTLA_NEWS https://t.co/gz2rk0sLtu" +11/19/2017,Sports_celeb,@OscarDeLaHoya,Kicking off the @eastlaparade with the ceremonial ribbon cutting. Here we go! #EastLA #ChristmasParade https://t.co/GLdkRPUYOQ +11/19/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW! 🎙Special guest @icecube joins @Tattootheone and The Crew on Golden Boy Radio! 🔥Download the @dash_radio app… +11/19/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: Tomorrow!! #elachristmasparade #eastla https://t.co/S59UQANv7q +11/18/2017,Sports_celeb,@OscarDeLaHoya,Don't forget to come out tomorrow for the annual @eastlaparade! 🎄🎅🏽 @EASTLA_NEWS @goEastLos #ela #eastlos… https://t.co/oe6aKSweYe +11/18/2017,Sports_celeb,@OscarDeLaHoya,Honored and privileged to #giveback to my community for 21 years! The #ODLHFoundation Annual Turkey giveaway in Eas… https://t.co/rP8zCkoRxW +11/17/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: MONDAY 🎙We got special guest @icecube on #GoldenBoy Radio w/ @Tattootheone and The Crew! 🔥Download the @dash_radio app… +11/17/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: We are ready to fill the streets with holiday spirit this Sunday! Are you ready? #eastla #elachristmasparade https://t.co… +11/17/2017,Sports_celeb,@OscarDeLaHoya,Honored to be apart of my hometowns annual @eastlaparade this Sunday! #ELA Hope to see you there! @EASTLA_NEWS… https://t.co/5QLIP4Ae6E +11/16/2017,Sports_celeb,@OscarDeLaHoya,Excited to welcome @Aaronmckenna99 and @maricelaladiva to the @GoldenBoyBoxing family. Congratulations! Now let's m… https://t.co/8gCYoqa8yv +11/15/2017,Sports_celeb,@OscarDeLaHoya,RT @maricelaladiva: Finally able 2 share this just signed w/ @GoldenBoyBoxing! I remember telling @OscarDeLaHoya U will sign me one day 6 y… +11/15/2017,Sports_celeb,@OscarDeLaHoya,Forever representing ELA #itsinmyname #raza https://t.co/Inqu6UhCHK +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Golden Boy on @dash_radio Tattoo & The Crew: 🎙@OscarDeLaHoya has been secretly training and says he only needs two rou… +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: The boss has arrived! 🙌🏼 @OscarDeLaHoya is live on Golden Boy Radio w/ Tattoo and The Crew @dash_radio https://t.co/3I… +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW #GoldenBoy radio premieres on @dash_radio w/ Tattoo & The Crew w/ special guest @OscarDeLaHoya 🏅Make sure to… +11/13/2017,Sports_celeb,@OscarDeLaHoya,🎙I'll be on live for the premiere of #GoldenBoy Radio on @dash_radio tomorrow w/ Tattoo & The Crew! 7am-10am PT. M… https://t.co/8pcG06mPdu +11/12/2017,Sports_celeb,@OscarDeLaHoya,"@katedelcastillo Only judgement is, it should be a #tecate :) buen domingo amiga" +11/12/2017,Sports_celeb,@OscarDeLaHoya,"Excited to be a part of this annual tradition in my home town. #ELAChristmasParade next Sunday, Nov 19. 12pm… https://t.co/djsW3SxFkD" +11/11/2017,Sports_celeb,@OscarDeLaHoya,"It is my absolute pleasure to give back and present boxing gear to the kids @gg_boxing in Garden Grove, CA… https://t.co/wKaFXnbWbA" +11/10/2017,Sports_celeb,@OscarDeLaHoya,"I️ promoted @BronzeBomber first 33 fights and made him a champion, if I️ was his promoter he would be a star and… https://t.co/1IhR5OGCk5" +11/04/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/RcnAdQQF6q my brother/ mi hermano working for what’s right for California. +11/03/2017,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: Promoter @OscarDeLaHoya details efforts to make @mikeygarcia vs. @JorgeLinares. My story: https://t.co/LjDBfcrkGP #boxin… +11/03/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: You do not want to miss #GBP's rising star @Ryankingry in tonight's co-main event. #GBPonESPN LIVE now! #KingRy https:… +11/03/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #BEAST 👊🏼 @Ryankingry strikes again with another stoppage on #GBPonESPN. Now 12-0, 11 KOs 🔥 https://t.co/nVTT7z0Zg0" +11/02/2017,Sports_celeb,@OscarDeLaHoya,Score tonight's #GBPonESPN fights on @fightersnetwork app and automatically be entered to win a signed #CaneloGGG 🥊… https://t.co/iceWh0vxSO +10/31/2017,Sports_celeb,@OscarDeLaHoya,"RT @WBABoxing: #Medellin se convirtió en la capital del boxeo mundial, con la ceremonia de inauguración de la #WBA96Convention https://t.co…" +10/30/2017,Sports_celeb,@OscarDeLaHoya,RT @ringmagazine: Watch #RXF28 Live on #RingTV @FiteTV tomorrow morning #livefights https://t.co/iTyc9qLssA +10/30/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: We are thrilled to announce OSCAR DE LA HOYA as this year’s 2017 East LA Christmas Parade Grand Marshal! @OscarDeLaHoya #… +10/27/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@OscarDeLaHoya at #FuerzaMéxico @CongaRoomLA to benefit #MexicoRises earthquake relief. #GoldenBoy will match funds r… +10/27/2017,Sports_celeb,@OscarDeLaHoya,RT @EugenioDerbez: Tonight #FuerzaMéxico @jesseyjoy @jesseavenue @solamentejoy @jaimecamil @OscarDeLaHoya. Para donar / to donate: https://… +10/26/2017,Sports_celeb,@OscarDeLaHoya,We'll get the next one @dodgers #gododgers #thisteam #blue #ela https://t.co/kFUsJ25sL2 +10/21/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: TONIGHT. @CorralesJezreel vs @xplosivomachado WBA Super Featherweight Title. Plus, #AndradeFox #BurnettZhakiyanov LIVE…" +10/21/2017,Sports_celeb,@OscarDeLaHoya,"Join us at the @CongaRoom Thursday, 10/26 for #FuerzaMexico to benefit #MexicoRises Earthquake Fund. Tickets here:… https://t.co/tN1OiRAesv" +10/20/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Dear, Las Vegas.. + +- @OscarDeLaHoya + +#VegasStrong +#GBPonESPN https://t.co/bQ29i9OM4Z" +10/17/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Miguel Cotto vs Sadam Ali - Press Conference https://t.co/PE0lRIaD9Z +10/06/2017,Sports_celeb,@OscarDeLaHoya,"#unitedfordreamers +We will fight together! https://t.co/u04F3T9o75" +10/05/2017,Sports_celeb,@OscarDeLaHoya,@jennajenovich @OOPalmilla @OOResorts A.B. And D. In that order topped off with a nice dinner +10/04/2017,Sports_celeb,@OscarDeLaHoya,RT @MrsEsterMarie: 🌴🌺ALOHA 🐟🐠 https://t.co/iEfaBdUGXH +09/27/2017,Sports_celeb,@OscarDeLaHoya,"RT @katedelcastillo: #prayformexico🇲🇽 #mexicounido #mexicounited #fuerzamexico🇲🇽 +・・・ +Moneros animados: Que la… https://t.co/OXEGLLLV5K" +09/25/2017,Sports_celeb,@OscarDeLaHoya,RT @MarcAnthony: Mr. President shut the fuck up about NFL. Do something about our people in need in #PuertoRico. We are American citizens t… +09/23/2017,Sports_celeb,@OscarDeLaHoya,Let’s all join this effort & help families in need of our support! #UnidosPorLosNuestros #TuneIn today @Univision 7… https://t.co/Z9x5IrK21S +09/23/2017,Sports_celeb,@OscarDeLaHoya,Ayudemos a las víctimas de los desastres naturales recientes. #UnidosPorLosNuestros Hoy 7pmET @Univision… https://t.co/TITkTeAtQl +09/23/2017,Sports_celeb,@OscarDeLaHoya,RT @carlosbeltran15: Puerto Rico Hurricane Relief Fund | Created by Carlos & Jessica Beltran https://t.co/H5jA8J7lhF +09/23/2017,Sports_celeb,@OscarDeLaHoya,RT @ricky_martin: WE NEED YOUR HELP. PLEASE DONATE. https://t.co/1vjiISj3af https://t.co/GXSZP7Gya7 +09/19/2017,Sports_celeb,@OscarDeLaHoya,"Let's help Mexico! Instead of building a wall, Trump should send more aid to help Mexico rebuild after today's earthquake #PrayForMéxico" +09/17/2017,Sports_celeb,@OscarDeLaHoya,A skillful execution of an explosive fight. I disagree with the decision. +09/16/2017,Sports_celeb,@OscarDeLaHoya,"RT @Adrian_ElTitan: Hoy es el día, con todo @Canelo #TeamCanelo 🇲🇽 #CaneloGGG https://t.co/b3YJKtxE7g" +09/16/2017,Sports_celeb,@OscarDeLaHoya,@danawhite looking forward to the best middleweight fight in the last 30 years. See you tonight Amigo. #RingTV #CaneloGGG +09/16/2017,Sports_celeb,@OscarDeLaHoya,The fight of the century has finally arrived. #areyoureadytorumble #CanelovsGolovkin https://t.co/N4pJzFYiZ8 +07/01/2018,Sports_celeb,@Giannis_An34,RT @nik683: Always nice to see you @Giannis_An34 https://t.co/7qBRNldKrL +06/30/2018,Sports_celeb,@Giannis_An34,Had a great time today shooting in Halkidiki...!! Big thing coming! #FETA https://t.co/SJJHU9DynC +06/29/2018,Sports_celeb,@Giannis_An34,This is my country Greece 🇬🇷 https://t.co/7S0P203rzB +06/29/2018,Sports_celeb,@Giannis_An34,The new album of @Drake 🔥🔥🔥🔥 +06/28/2018,Sports_celeb,@Giannis_An34,You’re living lavish now kostas__ante13 🐎 https://t.co/zay3fU7TnW +06/28/2018,Sports_celeb,@Giannis_An34,Elevator 📸😤 https://t.co/oGxH5yHiRJ +06/28/2018,Sports_celeb,@Giannis_An34,"RT @dallasmavs: You're livin lavish now, @Kostas_ante13! 🔥 Welcome to Dallas! #MFFL https://t.co/D4FLyM3ToT" +06/28/2018,Sports_celeb,@Giannis_An34,RT @FUSD_Athletics: Mark your calendar for August 3. Time to Tee it up at the Goal 2 Golf Tournament for the Fresno Unified Scholarship Fu… +06/28/2018,Sports_celeb,@Giannis_An34,"😂😂😂 If I didn’t like you, I would roast you so bad @vanexel31 #GoPackers https://t.co/veIR6GLx48" +06/27/2018,Sports_celeb,@Giannis_An34,What are the top 2 things you would like to see in my signature shoe? #TheGreekFreak1 #StayFreaky #ShoeOfThePeople +06/23/2018,Sports_celeb,@Giannis_An34,Just wanted to clear things up because I enjoy sharing funny moments with my fans...Mo Bamba is a great player and… https://t.co/erZCRQlhXt +06/23/2018,Sports_celeb,@Giannis_An34,Let me brush my hair😂😂 https://t.co/Em1mx9PaKe +06/23/2018,Sports_celeb,@Giannis_An34,"RT @wojespn: Milwaukee Bucks assistant Sean Sweeney has agreed to a deal to become one of Detroit coach Dwane Casey’s new top assistants, l…" +06/23/2018,Sports_celeb,@Giannis_An34,"RT @SInow: Welcome to the 60 Club, @Kostas_ante13 https://t.co/gt1sXordJ9" +06/22/2018,Sports_celeb,@Giannis_An34,"RT @DXContent: 6-10 + 20 year old Kostas Atetokounmpo, the younger brother of @Giannis_An34, was picked up by the @dallasmavs + +Full Pro Da…" +06/22/2018,Sports_celeb,@Giannis_An34,"RT @BleacherReport: Kostas Antetokounmpo, Giannis’ little brother, goes No. 60 to the Mavericks (via Sixers) https://t.co/IzzSF9MrFJ" +06/18/2018,Sports_celeb,@Giannis_An34,On July 7th join me and my brothers @Thanasis_ante43 @Kostas_ante13 @Alex_ante29 for Antetokounbros 5K Run to suppo… https://t.co/P6M4hkq1rr +06/17/2018,Sports_celeb,@Giannis_An34,"RT @DXContent: We caught up with Kostas Antetokounmpo, little brother of #Milwaukee #Bucks star @Giannis_An34, for his pro day workout and…" +06/12/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You belong where you believe you belong.” 💛🌻 +06/11/2018,Sports_celeb,@Giannis_An34,Δεν πίστευα ποτέ ότι θα κυκλοφορώ στους δρόμους της Αθήνας και θα με φωνάζουν Θανάση!! 😂😂 +06/10/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You have to fight through the bad days in order to earn the best days.” 💛🌻 +06/10/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Legends never die,they live through their #Legacy" +06/09/2018,Sports_celeb,@Giannis_An34,This is my time! Thank you GOD for keep blessing me and my family.🙏🏾 +06/08/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: Lol just because big bro said the was fire 🔥🔥😋 @Giannis_An34 https://t.co/qVy3XxbvXo +06/08/2018,Sports_celeb,@Giannis_An34,Going to bed tonight thinking about what I’m going to try next! Tomorrow I’m on a mission to become a better player… https://t.co/UdWZrkUPRX +06/08/2018,Sports_celeb,@Giannis_An34,@pistonsfan215 @iamHectorDiaz Where can I get them? +06/07/2018,Sports_celeb,@Giannis_An34,"While having my first pedicure in two years, I tried my first bag of Funyuns. They where good but I’ll stick to Ame… https://t.co/QCdGsfEEen" +06/07/2018,Sports_celeb,@Giannis_An34,Follow my lil brother @alex_ante29 on Twitter! +06/07/2018,Sports_celeb,@Giannis_An34,"People keep telling me to try these, I’ll give them a try and let you guys know what I think👌🏾… https://t.co/8XggtXLM5x" +06/07/2018,Sports_celeb,@Giannis_An34,Just had my first sip of American Red Kool Aid while watching the game. It’s extremely tasty 🥤. America stay blesse… https://t.co/isAVWi0Pvp +06/06/2018,Sports_celeb,@Giannis_An34,"Just a kid from Sepolia,Athens Greece 🇬🇷 🇳🇬 🙏🏾 https://t.co/nf1LvnKhOr" +06/06/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: Lol @ZO2_ hook me up with BBB gear bro 😂 +06/05/2018,Sports_celeb,@Giannis_An34,Next step Kool Aid! I’ll tell y’all what I think when I try it lol 😂 +06/05/2018,Sports_celeb,@Giannis_An34,Just tried a corndog for the first time...Man God Bless America! 😂😂 #ForReaL https://t.co/k4RDp6nSnI +06/05/2018,Sports_celeb,@Giannis_An34,Ain’t nothing wrong with Forever 21 @ZO2_ 🤷🏾‍♂️ https://t.co/1PIJpIakm1 +06/03/2018,Sports_celeb,@Giannis_An34,RT @TCL_USA: TCL proudly congratulates our newest athlete partner @Giannis_An34 on his All-NBA Team selection for the second straight year.… +05/31/2018,Sports_celeb,@Giannis_An34,RT @DraftExpress: Kostas Antetokoumpo working out in front of his brother Giannis and the entire NBA at the Octagon Pro Day. Actually shot… +05/25/2018,Sports_celeb,@Giannis_An34,Nope☝🏾 https://t.co/7Ac45UWXe8 +05/25/2018,Sports_celeb,@Giannis_An34,Always supporting you brother! https://t.co/Xc8MZyjMvA +05/23/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: ""It's been my dream since I was little."" + +Closer look at NBA Draft Prospect - Kostas Antetokounmpo: https://t.co/xTyKWXEBUY" +05/23/2018,Sports_celeb,@Giannis_An34,RT @RangerBeech: @Giannis_An34 @Bucks @DICKS you made a little boys day. Little did you know that before he saw you there he was showing m… +05/23/2018,Sports_celeb,@Giannis_An34,RT @fox6blitz: #Bucks @Giannis_An34 surprises some kids with a shopping spree at Dick’s Sporting Goods. https://t.co/xWpHMSqb7p +05/22/2018,Sports_celeb,@Giannis_An34,Great day giving back to the kids from @bgcmilwaukee. Huge thanks to the City of Milwaukee for all the support you’… https://t.co/kTDFOGx80F +05/19/2018,Sports_celeb,@Giannis_An34,RT @brkicks: .@Kostas_ante13 brother of @Giannis_An34 at the NBA Combine wearing the Nike Kobe A.D. https://t.co/ANtTdpFw16 +05/17/2018,Sports_celeb,@Giannis_An34,"RT @DraftExpress: Kostas Antetokounmpo has work to do on his body, skill/feel, but he's shown impressive flashes defensively switching, sli…" +05/12/2018,Sports_celeb,@Giannis_An34,Who is your top 5 rappers of all time? @Wale https://t.co/Coyjr4MTJF +05/12/2018,Sports_celeb,@Giannis_An34,J cole all day @JColeNC https://t.co/agtJqGxSGw +05/12/2018,Sports_celeb,@Giannis_An34,"Late night thoughts, who is the best rapper of our generation?" +05/12/2018,Sports_celeb,@Giannis_An34,"RT @FVisionDotCom: 🎥| Kostas Antetokounmpo Dayton Freshmen Full Season Highlights Montage 2017-18 | 5.2 PPG, NBA READY! @Kostas_ante13 http…" +05/12/2018,Sports_celeb,@Giannis_An34,Sneak peek 👀 #GreekFreak’S1 https://t.co/f68bTh6CW9 +05/12/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Couldn’t be more proud of you baby girl! You’re truly one of a kind! Love you til infinity 💛🌻 https://t.co/q1hdFoVeDO +05/11/2018,Sports_celeb,@Giannis_An34,Who is excited for the Greek Freak’s 1👟? +05/11/2018,Sports_celeb,@Giannis_An34,@KingKMPH @_mayyyyaaaa @grizzlyathletes Maya for president +05/11/2018,Sports_celeb,@Giannis_An34,"Time out, who said the season being over means no more Bucks spirit? Show Team pride this offseason with the BMO Ha… https://t.co/OXbk5skJE4" +05/06/2018,Sports_celeb,@Giannis_An34,I’m switching to Samsung ✌🏾 +05/06/2018,Sports_celeb,@Giannis_An34,Apple has completely disappointed me @Apple +05/02/2018,Sports_celeb,@Giannis_An34,RT @Bucks: THIS Is Why We Play!! https://t.co/Xgjzq7F6Pf +05/02/2018,Sports_celeb,@Giannis_An34,I vote #JabariParker for the #NBACommunityAssist Award because it's cool to be a nerd!! +04/04/2018,Sports_celeb,@Giannis_An34,RT @Bucks: Congratulations to former head coach @RealJasonKidd on his selection to the @Hoophall!! https://t.co/teY0vFgxg5 +04/04/2018,Sports_celeb,@Giannis_An34,"RT @Khris22m: Hey Bucks fans, come meet me this Sunday 2 PM at Cermak Fresh Market at 1236 S. Barclary Street. I will be signing autographs…" +03/31/2018,Sports_celeb,@Giannis_An34,RT @kobebryant: From the Book of Antetokounmpo: The greatest gift is understanding HOW to use the gifts we’ve been given. #MuseCage #Giann… +03/31/2018,Sports_celeb,@Giannis_An34,"RT @espn: His frame changed. His game changed. And his fame changed. + +@kobebryant highlights @Giannis_An34's gifts, and how he's evolved in…" +03/27/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Hey Milwaukee! If you’re interested in meeting @Giannis_An34 but more importantly supporting an amazing cause, the Leuke…" +03/26/2018,Sports_celeb,@Giannis_An34,"RT @MyNBAUpdate: R.I.P, Zeke Upshaw. 🙏 + +G-League player who passed away after collapsing on the court during a game on Saturday. We send ou…" +03/26/2018,Sports_celeb,@Giannis_An34,"RT @CBSNewsPress: @60Minutes is on track to be @Nielsen #1 program, drawing est 22.06 m - most viewers in nearly 10 yrs. Watch @andersoncoo…" +03/26/2018,Sports_celeb,@Giannis_An34,RT @Bucks: Here’s the entire MUST WATCH feature from @60minutes on @Giannis_an34 https://t.co/0E0IhqpJbo +03/23/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: I have made the decision to start a new chapter in my life and basketball career. I want to thank The University of Dayt… +03/22/2018,Sports_celeb,@Giannis_An34,RT @60Minutes: Milwaukee Bucks superstar Giannis Antetokounmpo tells 60 Minutes about selling trinkets on Athens streets to help his family… +03/22/2018,Sports_celeb,@Giannis_An34,"RT @DraftExpress: Dayton freshman Kostas Antetokounmpo (Giannis' brother) will declare for the 2018 NBA Draft, according to a source close…" +03/22/2018,Sports_celeb,@Giannis_An34,"RT @EvanDaniels: Source: Kostas Antetokounmpo, the brother of Giannis, is declaring for the NBA Draft | Story: https://t.co/Fu5vbLOEqq http…" +03/18/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You should never have to apologize for the way you need to be loved.” 🌻 +03/18/2018,Sports_celeb,@Giannis_An34,Not my day today 🤷🏾‍♂️ @mariahdanae15 https://t.co/8SIDURqFbn +03/18/2018,Sports_celeb,@Giannis_An34,@OsheaJacksonJr @netflix @mariahdanae15 Tough life my brother lol By the way Straight Outta Compton is one of my al… https://t.co/BHOYDsOTpf +03/18/2018,Sports_celeb,@Giannis_An34,When @netflix is on the bell 🛎 don’t work. +03/18/2018,Sports_celeb,@Giannis_An34,When you girl loves @netflix more than you🤦🏾‍♂️🤦🏾‍♂️ @mariahdanae15 https://t.co/AzfGtfckWC +03/16/2018,Sports_celeb,@Giannis_An34,The #FreakyFriday video of @chrisbrown and @lildickytweets it’s hilarious 😂😂😂 +03/16/2018,Sports_celeb,@Giannis_An34,"RT @Nike: When our world gets stuck, there’s only one option - #ChooseGo. + +https://t.co/lpWAcMefEl https://t.co/0rAm25J37q" +03/16/2018,Sports_celeb,@Giannis_An34,"RT @Nike: In every step. With every breath. #airmovesyou + +Sound on. 🔈 https://t.co/O79rImWETh" +03/15/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Happy 23rd Birthday @JabariParker!! + +🎉🎊🎁🎂 https://t.co/Ab4UHBrMoC" +03/10/2018,Sports_celeb,@Giannis_An34,"RT @AirMagKnows: To celebrate Jaylen’s 8th Birthday, He got tickets to watch @Giannis_An34 @Bucks on March 27 vs @LAClippers. Safe to say,…" +03/09/2018,Sports_celeb,@Giannis_An34,"RT @WISN_Watson: I think this family has the whole basketball thing figured out. + +This is @AlexAnteto3, @Giannis_An34's baby brother. http…" +03/07/2018,Sports_celeb,@Giannis_An34,Hey guys I’m teaming up with @_mayyyyaaaa to auction off two tickets plus a meet and greet after the game to help r… https://t.co/URdcY4KctT +03/06/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: #mondaymotivation + +Drop dimes. +Rock rims. + +💯🔥👇👀 https://t.co/ubX39Pnyd9" +03/06/2018,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Regional Champions💪🏾🙏🏾🤫 https://t.co/9N4kjEUyaa +03/04/2018,Sports_celeb,@Giannis_An34,RT @olskool888: Greek Freak Freshman L’il Bro’ Kostas of Dayton looking eerily familiar to @Giannis_An34...YIKES! https://t.co/qYcTR8iu3J +03/04/2018,Sports_celeb,@Giannis_An34,RT @SeanKilpatrick: Milwaukee Thanks For The Hospitality! The Marathon Continues 🏁🏁🏁 #Undrafted #LetsGo https://t.co/Ry8zguopfx +03/04/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: The highlights! + +💯👊🔵🔴 #FlyerNation https://t.co/iQ1iRWUKwg" +03/04/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: 🆙🆙 & AWAY! 🎦 + +The dime from @Jalen_NoRose1 to @Kostas_ante13. + +🔴🔵🛩️🏀 + +L👀K out belowwwww! https://t.co/yC8n1d9Ku1" +03/02/2018,Sports_celeb,@Giannis_An34,My little sister is currently nominated as a candidate for the Leukemia and Lymphoma Student of the Year Series. Pl… https://t.co/dYCFrfY4dX +02/25/2018,Sports_celeb,@Giannis_An34,@Hoopmixtape @DdotJAY30 He could definitely win the NBA dunk contest with he’s eyes closed. +02/19/2018,Sports_celeb,@Giannis_An34,RT @RealBillRussell: My thoughts exactly Thank You @Giannis_An34 This is very dear to my heart. @ nba https://t.co/CAJbifDZXu +02/18/2018,Sports_celeb,@Giannis_An34,"RT @bellalukasdad: So proud of my girl and so thankful to all those who supported her cookie sales efforts. In her last year of selling, sh…" +02/18/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: No weakness!!! @Giannis_An34 https://t.co/gNsbXl756T +02/17/2018,Sports_celeb,@Giannis_An34,RT @famouslos32: Still cant say dat boy name right so I’m STILL calling him Giannis A-TIN-KA-PINK-KO 😂😂😂😂😂😂😂😂 @Giannis_An34 https://t.co/dv… +02/17/2018,Sports_celeb,@Giannis_An34,RT @Bucks: All smiles as @Giannis_An34 crushes the #NBAKicks game with the @kobebryant 1 Porto x @UNDEFEATEDinc tonight!! 🔥🔥🔥 https://t.co/… +02/17/2018,Sports_celeb,@Giannis_An34,RT @_mayyyyaaaa: I'm extremely honored and blessed to be a candidate for the Leukemia and Lymphoma Student of the Year Series. The seven we… +02/15/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: @LegionHoops Yeah let them know baby @Giannis_An34 😂😂😂😂 +02/14/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Dimitris’ dream day continues as he helps @giannis_an34 warm up before the game tonight!! + +#ThisIsWhyWePlay https://t.co/nLauSV…" +02/14/2018,Sports_celeb,@Giannis_An34,RT @JimZamanis: Best day of my life!! I wanna thank @Giannis_An34 @Bucks and @MakeAWishGreece for making my dream come true!! Hope one day… +02/11/2018,Sports_celeb,@Giannis_An34,Congratulations to my Brother @Thanasis_ante43 for being named 2017-18 Greek All Star MVP. https://t.co/wzvrwZFHeM +02/09/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: S.O.S!!! In desperate need of a stylist and personal trainer! 💛👗💪🏽 +02/09/2018,Sports_celeb,@Giannis_An34,@mariahdanae15 I can be your stylist! https://t.co/IwZOXZxuhO +02/08/2018,Sports_celeb,@Giannis_An34,@NBA you have to get my guy @Khris22m in the all star game cmon! +02/07/2018,Sports_celeb,@Giannis_An34,Sending prayers to a good friend and even greater competitor. Hoping for a speedy recovery KP! @kporzee +01/31/2018,Sports_celeb,@Giannis_An34,"RT @TheNBPA: The NBPA family is deeply saddened by the passing of our brother, Rasual Butler. Our thoughts and prayers are with the Butler…" +01/30/2018,Sports_celeb,@Giannis_An34,RT @Johnhenson31: They gotta eventually take a good look at @Khris22m right ? #AllStarSeason +01/27/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Happy Birthday Dad! We all love you more than you will ever know! Enjoy your year and keep believing! 😊🎉 @PRiddlesprigge… +01/26/2018,Sports_celeb,@Giannis_An34,RT @EuroLeague: ❌🏠 https://t.co/ifZgyMs2hG +01/25/2018,Sports_celeb,@Giannis_An34,"RT @tsevis: Giannis Antetokounmpo: +Made in the streets of Athens +A mosaic portrait of the Greek Freak @Giannis_An34 based on the actual map…" +01/25/2018,Sports_celeb,@Giannis_An34,RT @cf_gardner: @Matt_Velazquez Those are kind words indeed. It's good to know I am missed. Giannis is doing quite well without me! +01/24/2018,Sports_celeb,@Giannis_An34,"@LilTunechi “I got a Greek Freak, she call me Antetokounmpo” @LilTunechi 🔥🔥🔥" +01/21/2018,Sports_celeb,@Giannis_An34,"RT @SInow: The Greek Freak's younger brother Kostas doing work for Dayton +https://t.co/KrYVFeL9VL" +01/21/2018,Sports_celeb,@Giannis_An34,"RT @CBSSportsNet: The @DaytonMBB fans are HYPE. + +Antetokounmpo coast-to-coast for the layup. https://t.co/dpCpeshTjP" +01/20/2018,Sports_celeb,@Giannis_An34,Thank you too all my fans around the world for the continuous support and motivation!! 😃✌🏾 https://t.co/IgQ41N0muH +01/15/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: This was one of the proudest moments our family has lived through. It’s almost that time of the year again! This is go… +01/15/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Let’s go! +😱20+p/20+reb +Giannis Antetokounmpo #NBAVote https://t.co/DiSnIMMBnB" +01/15/2018,Sports_celeb,@Giannis_An34,"RT @morabancandorra: All right T! 👍😁 +Giannis Antetokounmpo +#NBAVote https://t.co/bygWm4pMMO" +01/15/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Let’s vote for this young fella! 👶🏽 +Giannis Antetokounmpo #NBAVOTE https://t.co/ejuZfOL6KY" +01/13/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Because All Stars are regular people too! 😂 + +Giannis Antetokounmpo #NBAVote https://t.co/TyNhLihIEo" +01/13/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Giannis Antetokounmpo #NBAVOTE +Everybody has to retweet this! +Today your vote counts double, let’s get it! https://t.…" +01/13/2018,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Giannis Antetokounmpo #NBAVOTE Retweet for A Vote😈💉🇬🇷 https://t.co/RxrdCnO1Ex +01/13/2018,Sports_celeb,@Giannis_An34,RT @EBled2: Giannis Antetokounmpo #nbavote @Giannis_An34 +01/13/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/11/2018,Sports_celeb,@Giannis_An34,Eric Bledsoe #NbaVote Retweet for a vote✅✅ @EBled2 +01/11/2018,Sports_celeb,@Giannis_An34,Khris Middleton #NbaVote @Khris22m Retweet for a vote✅✅ +01/11/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/11/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Because...popcorn 😂 + +@Giannis_An34 #NBAVote + +🍿 1 RT = 1 Vote 🍿 https://t.co/SozFBnaQav" +01/10/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Για αυτό σαγάπαει ο κόσμος!! Κοιτάξτε χαμόγελο! Χρόνια πολλά Σεξυ αγόρι 💛😘 + +Giannis Antetokounmpo #NBAVote https://t.…" +01/07/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/05/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: I️ can’t even express how proud i am that my brother Giannis Antetokounmpo is leading the All-Star fan voting,despite…" +12/28/2017,Sports_celeb,@Giannis_An34,RT @_mayyyyaaaa: Happy holidays from my family to yours💚 https://t.co/xESqGRe0Rk +12/25/2017,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Giannis Antetokounmpo #NBAVOTE +12/25/2017,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Merry Christmas from my favorite guy and I ❤️🎄 You got my vote on this holiday babbbeeee! Giannis Antetokounmpo #NBAVote… +12/25/2017,Sports_celeb,@Giannis_An34,My mom is new on Twitter @veronica_ante34 make sure you follow her and show her some ❤️ 🧡💙💚💛 Merry Christmas 🎄 +12/25/2017,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: Giannis Antetokounmpo #NBAVOTE +12/24/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: Giving back is great, whatever we can do for these families, it means a lot to us."" - @Giannis_An34 https://t.co/N8ZaYgvjXc" +12/24/2017,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: #ICYMI... @SportsCenter #SCtop10. @Jalen_NoRose1 to @Kostas_ante13. + +From 🇺🇸 to 🇬🇷 + +🔴🔵✈️🏀 + +👀 out belowwwww!! + +He even call…" +12/24/2017,Sports_celeb,@Giannis_An34,RT @Flyer_Faithful: I believe @Kostas_ante13 can fly ✈️✈️✈️ https://t.co/QPAM6C2FzR +12/20/2017,Sports_celeb,@Giannis_An34,RT @FOXSportsOH: He's the brother of NBA star Giannis Antetokounmpo. @Kostas_ante13 explains what he brings to the floor for @DaytonMBB.… +12/20/2017,Sports_celeb,@Giannis_An34,@FOXSportsOH @Kostas_ante13 @DaytonMBB Really @Kostas_ante13 ???😂😂 +12/18/2017,Sports_celeb,@Giannis_An34,Congratulations @KobeBryant on a monumental day & an amazing film! https://t.co/ztecx1WkJ4 #DearBasketball @go90sports +12/13/2017,Sports_celeb,@Giannis_An34,Does anyone know when is the next @WWE show in Milwaukee or Chicago? +12/08/2017,Sports_celeb,@Giannis_An34,RT @overtime: GREEK FREAK'S BRO got the range 🚨 @Giannis_An34 https://t.co/UvZwd9Rpur +12/08/2017,Sports_celeb,@Giannis_An34,"RT @overtime: Giannis came out to support his little bro Alex Antetokounmpo 💯 Full Highlights: +https://t.co/Gr8aC5BQFi +@Giannis_An34 @AlexA…" +12/08/2017,Sports_celeb,@Giannis_An34,RT @overtime: Greek Freak's bro Alex with the HUGE DUNK ⚡️ @Giannis_An34 https://t.co/WK3c6zj02J +12/07/2017,Sports_celeb,@Giannis_An34,RT @EBled2: Got my vote https://t.co/23H9aJ9TQX +12/07/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: Happy Birthday @Giannis_An34 from Greece with LOVE!! + +🇬🇷❤️ https://t.co/30izpwhmbE" +12/06/2017,Sports_celeb,@Giannis_An34,RT @mariahdanae15: | BLESSED | Happy Birthday Babbbbeeee 💛✌🏽 I love you @Giannis_An34 https://t.co/My08RaxGOa +12/05/2017,Sports_celeb,@Giannis_An34,"RT @kmeletislaw: @Matt_Velazquez @tdgarden @Giannis_An34 a few dozen ?? are you kiding?? the hol arena is in blue and in greek flags, men !…" +12/05/2017,Sports_celeb,@Giannis_An34,I want to thank the 2 thousand Greeks that showed up to the game tonight and supported me and my team! I counted li… https://t.co/RiSNmlXeLE +12/04/2017,Sports_celeb,@Giannis_An34,"RT @gazzetta_gr: Θανάσης Αντετοκούνμπο, ένας παίκτης παράδειγμα προς μίμηση για την προσπάθεια του να γίνει ΚΑΘΕ μέρα καλύτερος! 👏👏 https:/…" +12/01/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: THAT feeling 💯🇬🇷! #FIBAWC #ThisIsMyHouse + +👉 https://t.co/CFYRcvzSut https://t.co/FwhvIgcmwk" +12/01/2017,Sports_celeb,@Giannis_An34,RT @Ballislife: The other Greek Freak! @Thanasis_ante43 swatting shots and throwing down dunks at #FIBAWC https://t.co/rfZ4oyAcRu +11/28/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: .@Thanasis_ante43 YOU wanted a personal highlight reel? +Here YOU go 💯🔝🔥! #FIBAWC #ThisIsMyHouse + +@HellenicBF 🇬🇷 https://t.co/T…" +11/27/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: Hey, @giannis_an34 what do you think about THAT 🤔? #FIBAWC #ThisIsMyHouse + +@Thanasis_ante43 @HellenicBF 🇬🇷 + + 📺 https://t.co/D8R…" +11/27/2017,Sports_celeb,@Giannis_An34,@FIBAWC @Thanasis_ante43 @HellenicBF 👋🏾🏀😜 +11/27/2017,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: “How you make others feel about themselves, says a lot about you.” 💛🌻✌🏽" +11/21/2017,Sports_celeb,@Giannis_An34,"RT @Mike_Schmitz: Giannis' younger brother, Kostas, has made tremendous strides since the 2016 Nike Hoop Summit. Needs time but an intrigui…" +11/19/2017,Sports_celeb,@Giannis_An34,This is what life is all about! Travelling with people you love! Check out our latest adventure with Aegean  … https://t.co/qu8AMqmfAY +11/18/2017,Sports_celeb,@Giannis_An34,"RT @AllaireMatt: So, @Kostas_ante34 is going to be a big problem in the A-10 😳 https://t.co/NQr1EhJx07" +11/18/2017,Sports_celeb,@Giannis_An34,Stop running 🏃🏾‍♀️ away and come give your baby some sugar!! @mariahdanae15 😘👀 https://t.co/Y4nFfJEmq0 +11/17/2017,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Just a kid from Sepolia ,Greece, +@euroleague bound.Thanks ncalathes 🔝🔝🔝 https://t.co/AVaVlJIpqM" +11/17/2017,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Happiness is not out there, it’s in you. 🌻" +11/17/2017,Sports_celeb,@Giannis_An34,@mariahdanae15 🙄 +11/14/2017,Sports_celeb,@Giannis_An34,"RT @EuroLeague: Alley-oop time! @Nick_Calathes15 ↔️ @Thanasis_ante43 ☝️ + +#7DAYSMagicMoment https://t.co/qaQ53Ozlxk" +11/14/2017,Sports_celeb,@Giannis_An34,😤@Thanasis_ante43 @Kostas_ante34 @AlexAnteto3 +11/07/2017,Sports_celeb,@Giannis_An34,Family. Loyalty. Legacy. Excited to announce my long-term partnership with @NikeBasketball #FamilyOverEverything… https://t.co/7MhvUqkbwb +11/05/2017,Sports_celeb,@Giannis_An34,He’s back 😈😈😈😈😈 @Kostas_ante34 #OnAMission https://t.co/HTiJ7mY2TS +11/05/2017,Sports_celeb,@Giannis_An34,RT @Flyer_Faithful: .@tlanders_03 ⬆️ @Kostas_ante34 ⬇️ https://t.co/B1m62qPzc0 +11/02/2017,Sports_celeb,@Giannis_An34,Go put some work in the new season of #NBALIVEMobile and make that rating go ⬆! Your path to greatness now: https://t.co/tFlQRAUUkY +10/31/2017,Sports_celeb,@Giannis_An34,Videos and interviews like this keeps me motivated. https://t.co/rEWuhvJ2yo #CameALongWay #MyFamilyIsMylife #YoungGreekfreak😂😂 +10/30/2017,Sports_celeb,@Giannis_An34,RT @Ufc26: @Thanasis_ante43 @KittyKat_Rawr @Giannis_An34 https://t.co/xggHCpLCEA +10/24/2017,Sports_celeb,@Giannis_An34,RT @Johnhenson31: Finally got my handshake from @Teletovic33 https://t.co/TUclokeLN8 +10/19/2017,Sports_celeb,@Giannis_An34,It’s about that time! https://t.co/6l1Vcdzy8M +10/18/2017,Sports_celeb,@Giannis_An34,"RT @Midwest_Ballers: The youngest of the #antetokounbros, Alex Antetokounmpo, got some tips from big bro before balling in fall league acti…" +10/16/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: ""I see beauty in my scars. They tell my story."" - @JabariParker + +(via @SInow) https://t.co/rWuQKooJ5l" +10/04/2017,Sports_celeb,@Giannis_An34,I’m coming.. 🙏🏾 +09/30/2017,Sports_celeb,@Giannis_An34,"RT @matthewdelly: No child should go hungry, help support @BlessinBackpack ! https://t.co/iTrVrGlTyb" +09/20/2017,Sports_celeb,@Giannis_An34,RT @NBAspain: ⚽️⚽️⚽️ @Giannis_An34 #BucksDay https://t.co/9is2tW67wK +09/16/2017,Sports_celeb,@Giannis_An34,RT @nikebasketball: We gave @giannis_an34’s home court in Athens a new look last weekend with some help from local artist Same84. https://t… +09/10/2017,Sports_celeb,@Giannis_An34,👀👀👀 GARAGE SALE for CHARITY address will be announced within the hour... +09/09/2017,Sports_celeb,@Giannis_An34,@PRiddlesprigger Sure @PRiddlesprigger all bids are accepted!!😃 +09/09/2017,Sports_celeb,@Giannis_An34,@Double_HTown @packers What time is the @packers game? +09/09/2017,Sports_celeb,@Giannis_An34,👀 👀👀👀It's time to get rid of a few things! GARAGE SALE for CHARITY TOMORROW! Stay tuned for details... +09/09/2017,Sports_celeb,@Giannis_An34,RESPECT.. Hopefully one day I can be on the same stage and have my name next to yours. #HOF #GOAT @NickGalis6 https://t.co/RdTD5VCtHf +09/05/2017,Sports_celeb,@Giannis_An34,"RT @DXContent: 'I started playing basketball in '08... I like @magicjohnson + @KDTrey5' + +~ @Giannis_An34 has come a long way > https://t.co…" +09/03/2017,Sports_celeb,@Giannis_An34,"RT @FIBA: 🇬🇷 Who said they were no Antetokounmpo in FIBA #EuroBasket2017? @Thanasis_ante43 sparked his team with 12pts, 6reb & 2blk! https:…" +09/02/2017,Sports_celeb,@Giannis_An34,RT @Bucks: Join us in supporting the @RedCross and the #HurricaneHarvey relief effort. Visit https://t.co/6dOzwbj6dX or call 1-800-REDCROS… +09/01/2017,Sports_celeb,@Giannis_An34,RT @EauClairePD: Yesterday we were troubled to learn that many of the @Bucks players couldn't pronounce Eau Claire. Now it's our turn. #fea… +09/01/2017,Sports_celeb,@Giannis_An34,RT @gazzetta_gr: Πωρωμένος με την Εθνική Ελλάδας ο Θανάσης Αντετοκούνμπο! https://t.co/JlbSyKCU4D +08/31/2017,Sports_celeb,@Giannis_An34,RT @gazzetta_gr: Respect στον δημιουργό του https://t.co/e7x1vcDxqu +08/31/2017,Sports_celeb,@Giannis_An34,RT @FIBA: ☝️ Not in @Thanasis_Ante43's 🏡! You better watch out before driving to @HellenicBF 🇬🇷 basket! #EuroBasket2017 https://t.co/BRQe87… +08/28/2017,Sports_celeb,@Giannis_An34,Praying for the people in Houston 🙏🏾 +08/24/2017,Sports_celeb,@Giannis_An34,Still waiting for my challenge.. @kobebryant +08/19/2017,Sports_celeb,@Giannis_An34,Resurrection. +08/10/2017,Sports_celeb,@Giannis_An34,❤️ https://t.co/NC29Vdzdy2 +08/10/2017,Sports_celeb,@Giannis_An34,Here's my 2k rating! What do you guys think? 👍🏾or 👎🏾@Ronnie2K @NBA2K #NBA2K18 #2KFirstLook https://t.co/BCmKGQ46Sf +07/18/2017,Sports_celeb,@Giannis_An34,🚫❌✋🏾 https://t.co/22gJG0UXl7 +07/18/2017,Sports_celeb,@Giannis_An34,Happy birthday big bro! @Thanasis_ante43 https://t.co/Nsq5oZh3TL +07/01/2018,Sports_celeb,@TheRock,"RT @averyhartmans: This morning, @TheRock introduced his first-ever wireless headphones, designed to help you ""crush your workouts"" 💪 https…" +07/01/2018,Sports_celeb,@TheRock,Here I go playing Willy Wonka again and surprised our lil’ baby Jazzy with this horse and carousel ride when she go… https://t.co/nx4kBditVZ +07/01/2018,Sports_celeb,@TheRock,"Off to a good start on tracking w/ a $30M U.S. number for our SKYSCRAPER debut. +Domestic box office is one piece o… https://t.co/jAC0F4ovkt" +06/30/2018,Sports_celeb,@TheRock,@gregwarhead @charliesimo @KevinHart4real @mattjwillis Haha never any shame in hustling to get your music heard dud… https://t.co/4Lxtj4PCVX +06/30/2018,Sports_celeb,@TheRock,@ollyog @MatRoff Enjoy! Pint? Nah it’s your birthday. Let’s go with a gallon +06/30/2018,Sports_celeb,@TheRock,@ollyog @MatRoff Raising a glass to you on your birthday buddy! Cheers 🍻 👊🏾 +06/30/2018,Sports_celeb,@TheRock,@charliesimo @gregwarhead @KevinHart4real @mattjwillis Haha I have a fun idea - how bout you watch it with us and t… https://t.co/FD9zsZuwMq +06/30/2018,Sports_celeb,@TheRock,@diverse_kcox Hah well tequila helps the ol’ memory 🤙🏾 +06/30/2018,Sports_celeb,@TheRock,@Sichz_ Thx dude very kind of you to say. Thx for diggin all my stuff 🙏🏾👊🏾 +06/29/2018,Sports_celeb,@TheRock,"DECEMBER 13th, 2019. +The game is not over... +And I get to slap @KevinHart4real’s lips into next week. The world is… https://t.co/LDWAxojudu" +06/29/2018,Sports_celeb,@TheRock,RT @DanyGarciaCo: SO HAPPY w/ the creative content & direction of this launch! @sevenbuckscr CRUSHED it & captured the magic of @therock an… +06/29/2018,Sports_celeb,@TheRock,Make sure you experience our VR Skyscraper leap off the crane. I tried it multiple times and failed lol. It’s an in… https://t.co/686wr7G4jg +06/29/2018,Sports_celeb,@TheRock,RT @SevenBucksDS: Who doesn’t love a good action movie (or five)? No better authorities to wax-poetic on the subject than @TheRock and Neve… +06/29/2018,Sports_celeb,@TheRock,"Boom 🎧 +One of the best, if not THE best over the ear headphones you’ll ever train in. Engineered for HARD CORE TRA… https://t.co/e0wBlzVZ0P" +06/29/2018,Sports_celeb,@TheRock,Yes sir. Get after it! Playlist personally created by me. Start with WE READY and let the destruction begin 💪🏾👊🏾… https://t.co/Zgw8FLLaKw +06/29/2018,Sports_celeb,@TheRock,"Haha thank ya for the huge SKYSCRAPER props. Very cool to see everyone loving the movie. And yes, drinking beer and… https://t.co/M1fIV7o8fQ" +06/28/2018,Sports_celeb,@TheRock,We smell it and smells like shi🤣. Thanks dude! Enjoy the training shoes! First drop sold out in 30min. We just drop… https://t.co/dynE2tHYwT +06/28/2018,Sports_celeb,@TheRock,"Enjoy the 🎧👟! +Great copps! Stay strong / train hard! +https://t.co/vYtBQVsMjX https://t.co/ZgZXy5WtfF" +06/28/2018,Sports_celeb,@TheRock,@redletterdave Great idea💡 but I’ll do it in multiple accents and ever so slightly drunk of tequila lol 👊🏾 +06/28/2018,Sports_celeb,@TheRock,"RT @redletterdave: These headphones sound great. + +Next version: An onboard AI like Siri, but with The Rock's voice, to motivate your candy…" +06/28/2018,Sports_celeb,@TheRock,"Thank you man. +I put a lot of effort into delivering high quality @UnderArmour products. +And please don’t go brok… https://t.co/UTYmSrWhaX" +06/28/2018,Sports_celeb,@TheRock,"Thank you man and enjoy the great. Those #ProjectRock1s training shoes sold out in less than 30min, four weeks ago,… https://t.co/TN59pN6qsV" +06/28/2018,Sports_celeb,@TheRock,@ollyog Happy early birthday to my BFF. I will never again equate an emoji face with masculinity 😂🤦🏽‍♂️ +06/28/2018,Sports_celeb,@TheRock,"Great review! +I also added new “talk thru technology” which allows us to keep our headphones ON and listen to peop… https://t.co/GPYKeEAm76" +06/28/2018,Sports_celeb,@TheRock,"@ChrisClarkNFL @UnderArmour Cool! Let me know how you like em dude. Again, if they suck, let me know and I’ll send… https://t.co/fu5dlHa5vU" +06/28/2018,Sports_celeb,@TheRock,"Enjoy @averyhartmans!! Crush it! +🎧 💪🏾 +https://t.co/vYtBQVsMjX https://t.co/LWmTIqGvXC" +06/28/2018,Sports_celeb,@TheRock,"Enjoy my man 🎧 +They’ll be one of the best, if not, the best over the ear headphones you’ve trained in. +And because… https://t.co/9P2lJ8YO2T" +06/28/2018,Sports_celeb,@TheRock,"It’s ON! +Our most anticipated @underarmour #ProjectRock drop - the CHASE GREATNESS COLLECTION is OUT NOW. +As alwa… https://t.co/8O8BLDoTye" +06/28/2018,Sports_celeb,@TheRock,"RT @ShannonCorbeil: So @TheRock is awesome, obviously, but Neve Campbell as a badass combat veteran stole my heart. + +#SkyscraperMovie is F…" +06/28/2018,Sports_celeb,@TheRock,See you at the top one day man. Keep puttin’ in that hard work. Glad you loved the movie. #SkyscraperMovie https://t.co/UFIeOqnlI1 +06/28/2018,Sports_celeb,@TheRock,"Billy’s right! +But for the sweet science record, asteroids are always a pain in the a** to stop. I can stop meteor… https://t.co/Ei1Vhxt2ub" +06/28/2018,Sports_celeb,@TheRock,"👏🏾👊🏾 Neve Campbell, who plays my wife, crushes in our movie. Proud of her! Our writer/director @RawsonThurber wrote… https://t.co/WOvCKnAQKH" +06/27/2018,Sports_celeb,@TheRock,@Reluctantly_pod @djdizzle82 @KathrynGironimi 🙏🏾 for tha luv!!;) +06/27/2018,Sports_celeb,@TheRock,Yessss! More @caityweaver love for writing one of the greatest profiles of all time. (of course she had a brilliant… https://t.co/PvxMhrmk93 +06/27/2018,Sports_celeb,@TheRock,"Very cool, significant and rare news for our SKYSCRAPER in CHINA. The country has awarded us a July 20th release da… https://t.co/RwOv4qyxQI" +06/27/2018,Sports_celeb,@TheRock,Dude always a pleasure working with you. Never an ego and always down to do whatever it took to entertain the fans.… https://t.co/1heOocEY3N +06/26/2018,Sports_celeb,@TheRock,"Reddit community time for some fun! +Tomorrow (Wed) join my SKYSCRAPER writer/director Rawson Thurber at 3pm PDT. +G… https://t.co/rRPKU5jAoG" +06/26/2018,Sports_celeb,@TheRock,"You know I love my contests & giving cool shit away! 🤙🏾 +Teamed up w/ @AtomTickets to make the SKYSCRAPER TICKET TO… https://t.co/f8CskZQOI1" +06/26/2018,Sports_celeb,@TheRock,RT @DanHevia: I never knew I needed @TheRock vs. @rustyrockets until now. @HBO this is why I subscribe. 🤙 https://t.co/gaK5zlatBV +06/26/2018,Sports_celeb,@TheRock,RT @AprilCPA1991: Yes!! One of my fav shows is coming back! Love #ballers and love the cast! Especially my fellow UM alum @TheRock ! 🙌🏼🙌🏼 h… +06/26/2018,Sports_celeb,@TheRock,RT @elaysiaamour: Yessss let’s gooo https://t.co/ZaHdBIjc5b +06/26/2018,Sports_celeb,@TheRock,RT @hhe_71: Lets goooo! Can’t fuckin’ wait! #ballers https://t.co/koxKmfNxQi +06/26/2018,Sports_celeb,@TheRock,"RT @LucasSteagall: Fun fact: A day acting on this show is my favorite day on set of all time, every time. Another fun fact @TheRock is a fr…" +06/26/2018,Sports_celeb,@TheRock,RT @scott_f_mack: Awesome to see the next season of #ballers is coming out this summer. Can’t wait to check it out 👀 https://t.co/08KVSEVW4o +06/26/2018,Sports_celeb,@TheRock,RT @akhilg06: Love this show #ballers https://t.co/lQTPn1rpeT +06/26/2018,Sports_celeb,@TheRock,RT @OilyMomHere: Woo hoo!!! So excited for this season to rock....thank you https://t.co/yRYYonOfqI +06/26/2018,Sports_celeb,@TheRock,RT @peterocksteady: Feel like I've been waiting forever big bro @TheRock I'm Ready! #Ballers https://t.co/CECRwP9Nrz +06/26/2018,Sports_celeb,@TheRock,"I’m blown away. Thank you CHINA 🇨🇳 +RAMPAGE crosses the rare $1Billion RMB mark & becomes my highest grossing film… https://t.co/SXVQHo99PV" +06/26/2018,Sports_celeb,@TheRock,Pleasure meeting my dude @nicksanto534. What a positive ray of light and “no excuses” perspective on approaching li… https://t.co/GsozXiF95f +06/25/2018,Sports_celeb,@TheRock,@kharypayton 😂 👏🏾👊🏾 fuckin classic (and true) +06/25/2018,Sports_celeb,@TheRock,"RT @SevenBucksProd: Different coast, same hustle. @BallersHBO is back in business August 12 on @HBO. #Ballers #HBO https://t.co/wFS63l0c76" +06/25/2018,Sports_celeb,@TheRock,NEW SEASON of @ballershbo & this may be our best yet. We’re @HBO’s #1 half hour show for years now & I’m very proud… https://t.co/7omCBgbM6I +06/24/2018,Sports_celeb,@TheRock,"I’d 💯 vote for him, because he’s King of the ‘Gram but I also heard he’s a real a**hole, so no vote for him.… https://t.co/btUaVX3TOv" +06/23/2018,Sports_celeb,@TheRock,"Starting off my Sat by reviewing new TV spots for SKYSCRAPER. +Note pad and pen at the ready and diggin’ in to my p… https://t.co/8zsNzVRX3G" +06/23/2018,Sports_celeb,@TheRock,Join us today at 415 EST on ⁦@FOX for NOSSA CHAPE. Took me a few takes to fight back tears and get thru my lines fo… https://t.co/ElvmQIUxvl +06/23/2018,Sports_celeb,@TheRock,Wow FIVE #TeenChoice2018 NODS. THANK Y’ALL so very much. Grateful to have the greatest fans on the planet. Vote now… https://t.co/1iWX47cIkF +06/22/2018,Sports_celeb,@TheRock,"3 week countdown is on. +Most anticipated “nail biting, terrorizing fun you’ll have three thousand feet in the sky”… https://t.co/HcSeDurKTQ" +06/22/2018,Sports_celeb,@TheRock,"Hey punk @JKCorden, you’re gonna need much more than a silly #EatShitTheRock hashtag to start a beef between me and… https://t.co/MtXBIv4NnO" +06/21/2018,Sports_celeb,@TheRock,"RT @skyscrapermovie: EXCLUSIVE: A family in danger, an impossible leap, heroes, villains... @TheRock and the #SkyscraperMovie filmmakers gi…" +06/21/2018,Sports_celeb,@TheRock,"Big #ChaseGreatnessCollection2 drops next THURSDAY 6/28. +Including my first signature shoe that, fortunately sold… https://t.co/PCYerDRk9z" +06/21/2018,Sports_celeb,@TheRock,You make us happy too El. And thanks for including Kev’s name in your tweet. He gets super jelly when he’s not ment… https://t.co/BwQFadIjwp +06/20/2018,Sports_celeb,@TheRock,@cebsilver I’m skeptical reading “former” gym rat which I assume means you don’t train anymore. These headphones may not be for you buddy +06/20/2018,Sports_celeb,@TheRock,"Hype is real 🎧! +Our new #ProjectRockWireless @UnderArmour @JBLaudio first ever HARDCORE TRAINING headphones drop ne… https://t.co/hY1zHTGVMs" +06/20/2018,Sports_celeb,@TheRock,"Cool SKYSCRAPER movie fact/ +We hired Adrian… https://t.co/DTIoJndovx" +06/20/2018,Sports_celeb,@TheRock,"They’re here 🎧 +Like you, my gym time is… https://t.co/BuqXovimEt" +06/19/2018,Sports_celeb,@TheRock,"As you know, #SKYSCRAPER is my homage to DIE… https://t.co/wt17KA6U92" +06/19/2018,Sports_celeb,@TheRock,"Always make it about consistency, not greatness. Greatness will come. Have a GREAT season boys. Big respect & suppo… https://t.co/uvB7JJVNGD" +06/18/2018,Sports_celeb,@TheRock,@ava Congratulations AD. Onward/Upward 🤙🏾 +06/18/2018,Sports_celeb,@TheRock,Kuz told me he wanted his best summer ever. Boy’s puttin’ in the work 👏🏾💪🏾 https://t.co/j4z2i1i6mX +06/18/2018,Sports_celeb,@TheRock,@RealPAULLOGAN Thank you PL!! Appreciate it brother 👊🏾 +06/18/2018,Sports_celeb,@TheRock,"Trust me, Mel - I only got on my knees to feed Lauren while she breastfed because I was told there was free waffles… https://t.co/BPYpDR8nFw" +06/18/2018,Sports_celeb,@TheRock,So humbling and GRATEFUL to see @MakeAWish wish granting come full circle in my family. Thank you to the entire Mak… https://t.co/CcxZGIThAg +06/18/2018,Sports_celeb,@TheRock,@Emilyvaughnx Thx you Em!!! 🙏🏾👊🏾❤️ +06/18/2018,Sports_celeb,@TheRock,Haha perfect. Congratulations my friend on #5. I got some work to do to catch up. I’ll stay practicing lol.… https://t.co/7eLJxUY2wL +06/18/2018,Sports_celeb,@TheRock,"Bitter sweat Sunday, but my baby girl’s made it… https://t.co/ee4yx9nPgG" +06/17/2018,Sports_celeb,@TheRock,"What are you so upset about brother. You told me last month you’re not their real father anyway. +Love ya buddy and… https://t.co/xixnJdD2Yp" +06/17/2018,Sports_celeb,@TheRock,Happy Father’s Day to this hardly ever smiling… https://t.co/hIV2tdkbXo +06/17/2018,Sports_celeb,@TheRock,Family 👊🏾 Congrats boys! 🇲🇽 Thank you to my… https://t.co/YHVaFki6hV +06/16/2018,Sports_celeb,@TheRock,"Close up the honky tonks and lock all the doors,… https://t.co/5w7Q09YJ4U" +06/16/2018,Sports_celeb,@TheRock,"Calm before the storm. +Shooting our big… https://t.co/ySFgMwFknp" +06/16/2018,Sports_celeb,@TheRock,"*swipe left +Day of reckoning. 108 degrees.… https://t.co/oYgIlW1uck" +06/16/2018,Sports_celeb,@TheRock,"Family 👊🏾 +Thank you to my boys @jona2santos… https://t.co/Pq5QBYW3FH" +06/16/2018,Sports_celeb,@TheRock,"Doing some great biz with Universal. Grateful to have started my career with them years ago (Scorpion King). +Good… https://t.co/5SFcATqY4t" +06/16/2018,Sports_celeb,@TheRock,"Ladies, gents and children of all ages.. The… https://t.co/c7kMjovDUx" +06/16/2018,Sports_celeb,@TheRock,"🙏🏾 Much mahalo for this crazy fun buzz. RED NOTICE was the pitch that created a huge bidding war, eventually becomi… https://t.co/oaZUFwOYbp" +06/16/2018,Sports_celeb,@TheRock,Cool to feel the early buzz about RED NOTICE - an international heist thriller with myself and my darlin’ friend… https://t.co/e7q9jCqH0J +06/16/2018,Sports_celeb,@TheRock,Dude on the left is pretty good at what he… https://t.co/SrS9QYP1OZ +06/16/2018,Sports_celeb,@TheRock,@greengoblin Def you!! 👊🏾 +06/15/2018,Sports_celeb,@TheRock,"SKYSCRAPER is my homage to DIE HARD & TOWERING INFERNO. A love letter to Willis, McQueen, Newman and Dunaway. +And… https://t.co/0IrtvrwtQm" +06/15/2018,Sports_celeb,@TheRock,"@preston316 Absolutely amigo. It’s inspired by Towering, Die Hard, The Fugitive.. films of the 70s & 80s genre. Ins… https://t.co/5hygFB0yj2" +06/15/2018,Sports_celeb,@TheRock,"@chriswelch Dammit Chris it’s daddy, not dad" +06/15/2018,Sports_celeb,@TheRock,"A father’s love is fierce. +Excited to deliver to you this summer’s most anticipated original action film.… https://t.co/Q3l4trW9y4" +06/15/2018,Sports_celeb,@TheRock,"@Fisher_DanaR Haha yes it is D. It’s secretly, Kevin Hart wearing a raccoon costume" +06/15/2018,Sports_celeb,@TheRock,😂👊🏾 “Hold my beer and watch this shit” #MPRRaccoon https://t.co/FNg7lfLeLL +06/14/2018,Sports_celeb,@TheRock,"Just three dudes. +Great chop session with this… https://t.co/42znOHlvkA" +06/14/2018,Sports_celeb,@TheRock,"@ChrisEvans Happy Birthday brotha! Halfway to 74! +🤣🤙🏾👊🏾" +06/13/2018,Sports_celeb,@TheRock,Thank ya dude. The movie is fantastic. Enjoy! And I AM TOUGH.. in my mind only 😂 #Skyscraper https://t.co/dpkTVdr70W +06/13/2018,Sports_celeb,@TheRock,"In ONE MONTH.. yup, it all goes wrong. +#SKYSCRAPER JULY 13th 🌎 https://t.co/73aA2E946g" +06/13/2018,Sports_celeb,@TheRock,"Found this gem 💎 +Check out 22yrs old and 280lbs… https://t.co/MsyIXpCrto" +06/13/2018,Sports_celeb,@TheRock,"*scroll left +I wrote Gal’s name down on my… https://t.co/L9890p0MZd" +06/12/2018,Sports_celeb,@TheRock,This one got me. Lil’ Carter here has children’s Alzheimer’s (Sanfilippo syndrome). Check out this vid and if you c… https://t.co/OR5H7ahpgc +06/12/2018,Sports_celeb,@TheRock,@a_lemay224 Perfect!! #swag +06/12/2018,Sports_celeb,@TheRock,"@KicKeePants Much much mahalo for the amazing warm and cozy’s. Unfortunately, none of it fits me, so I guess I’ll g… https://t.co/xaY62Bot0f" +06/11/2018,Sports_celeb,@TheRock,"Got my ass kicked today training legs. +3… https://t.co/Bwh3rlllbL" +06/10/2018,Sports_celeb,@TheRock,"Back of the jet is called, “DJ’s Think Tank”… https://t.co/jCcX7tps6N" +06/10/2018,Sports_celeb,@TheRock,"Wheels up / rockin’ out 🤟🏾 +#FlyingSilverEagle… https://t.co/Xkub5B3OUQ" +06/10/2018,Sports_celeb,@TheRock,"Meet Will Sawyer: +Father. Husband. Amputee. BAMF. +Don’t ever underestimate the power of a desperate man protectin… https://t.co/111rhg5N5m" +06/10/2018,Sports_celeb,@TheRock,@jimmykorderas Haha I always need your help man. Just like back in our ring days when I needed you to quick count every time I won lol +06/09/2018,Sports_celeb,@TheRock,Always ‘preciate you brotha. Keep doing great things and spreading the good word. #theotherside https://t.co/Xgkv98WoNp +06/07/2018,Sports_celeb,@TheRock,Still much to learn in the shoe and apparel… https://t.co/w8kFqKHfS1 +06/07/2018,Sports_celeb,@TheRock,@Stands And a very special goodnight to you too;) +06/07/2018,Sports_celeb,@TheRock,@OmarMiller’s a good man and I’m happy to help. Continued blessings to you guys and the mission center. https://t.co/XXvE2dxtiV +06/06/2018,Sports_celeb,@TheRock,@Chris_Ciaccia @UnderArmour Thanks for writing it my man. Reading fresh language about my biz helps me understand a… https://t.co/hE9T383oWu +06/06/2018,Sports_celeb,@TheRock,"Again, very nice measure and metrics to sell out so fast, but also gave me great clarity on where we can improve gr… https://t.co/rQvqIyO1Tc" +06/06/2018,Sports_celeb,@TheRock,"Market analytics ain’t sexy at all to tweet about, however nice to see our #ProjectRock footprint making an impact… https://t.co/CKz6pUwYrT" +06/06/2018,Sports_celeb,@TheRock,Great success with our launch. Sold out in 30min. Satisfied consumers but still lots of work to be done! Always loo… https://t.co/cFJAjxORIh +06/06/2018,Sports_celeb,@TheRock,@JamesGunn @karengillan @michaelrosenbum @jumanjimovie @Guardians @seangunn @jackblack @prattprattpratt… https://t.co/YVTxJKeUE4 +06/06/2018,Sports_celeb,@TheRock,"Hell, we’ll get therapy together brother lol. Keep kickin ass champ! 🤙🏾👊🏾 https://t.co/qC5MhaXUhX" +06/05/2018,Sports_celeb,@TheRock,@LegitJoeyBowie Boom 💥 🤙🏾👊🏾 +06/05/2018,Sports_celeb,@TheRock,These are called the “Hobbs Beef Piston Power… https://t.co/b6UthHycNu +06/04/2018,Sports_celeb,@TheRock,@mattdavella My all time fav pic. Thx for the love man! And that’s because you keep calling me from a pay phone...… https://t.co/1KiLcsvliw +06/04/2018,Sports_celeb,@TheRock,"Yes sir. We gotta have faith that the one thing we always wanted to happen, can often be the best thing that never… https://t.co/QmXueKgjLB" +06/04/2018,Sports_celeb,@TheRock,"Sunday shakas and scripts. +Reading our new Fast… https://t.co/i2UJacOjub" +06/04/2018,Sports_celeb,@TheRock,I have some great and productive conversations… https://t.co/EQU8fnWkqR +06/04/2018,Sports_celeb,@TheRock,"If you’re goin’ thru the struggle, hold on to… https://t.co/OPRXBNaEF7" +06/03/2018,Sports_celeb,@TheRock,Thank you man and have a great workout! Women’s ProjectRock shoes in development and delivering at the top of 2019.… https://t.co/jBnQ0Snozz +06/03/2018,Sports_celeb,@TheRock,"I got you @TiffanyHaddish! Yes, the secret password to our secret society MTV-inati, is “@KevinHart4real is shorter… https://t.co/Ktr7I4WhnV" +06/03/2018,Sports_celeb,@TheRock,Months and months of collaborating with @UnderArmour’s top designers. Thank you everyone who made our launch a huge… https://t.co/OfzCJ4ayHF +06/03/2018,Sports_celeb,@TheRock,"“Let It Go” + +You’re welcome. https://t.co/BPMS6gwpWQ" +06/03/2018,Sports_celeb,@TheRock,@Anna_Rothschild @SirDavidBBC @washingtonpost Aw thank ya for the love Anna! Flattered by the gesture 🤟🏾 for the re… https://t.co/K9qZbR8BDr +06/03/2018,Sports_celeb,@TheRock,"Hi Bob, which nickname are you referring to? Big Daddy? The Rock? Samoan Thor? Beef Piston? Or the inappropriate on… https://t.co/4dp4Wh8499" +06/03/2018,Sports_celeb,@TheRock,@KaylaBraxtonWWE Hah I’ll totes see ya there as per yoosh;) +06/03/2018,Sports_celeb,@TheRock,🙏🏾❤️ Aww thank ya Audra! Wishing everyone the best of luck for our #WarriorGames! Kick ass and have fun. And geeezu… https://t.co/vrr2EI8mdT +06/03/2018,Sports_celeb,@TheRock,"Very cool and flattering @DakotaKai_WWE. Thank you! Look forward to following your career. Work extremely hard, hav… https://t.co/Ts9C7AhYL9" +06/03/2018,Sports_celeb,@TheRock,You’re welcome cuz! Always proud of your success and hard work. Enjoy the Project Rock @UnderArmour gear and… https://t.co/lgSymLeOih +05/31/2018,Sports_celeb,@TheRock,@mikeavila @joemoscone77 Haha not at all! Flair over me is a smart move and I agree. He was one of my squared circl… https://t.co/5ZfqBjQr5v +05/31/2018,Sports_celeb,@TheRock,@AlexJamesFitz Some jerk asshole lol. We also have to add TOWERING INFERNO and THE FUGITIVE to the title +05/30/2018,Sports_celeb,@TheRock,RT @rampagethemovie: #RampageMovie is like nothing you’ve ever seen before. Don’t miss out on taking all the action with @TheRock home! Own… +05/29/2018,Sports_celeb,@TheRock,@KevinMcCarthyTV Thank you dude so much!! You’re gonna love the movie!! @RawsonThurber (writer director) did an ama… https://t.co/Y7gK6e3EQV +05/29/2018,Sports_celeb,@TheRock,Happy to see all the great reviews for my new signature training shoe @UnderArmour #ProjectRock1s. Spent a long ti… https://t.co/EDc6RKYDSI +05/29/2018,Sports_celeb,@TheRock,Thank you everyone for rockin’ with my new signature shoe - the #ProjectRock1s from @UnderArmour. In 30min they wer… https://t.co/U2NmkoraTF +05/29/2018,Sports_celeb,@TheRock,RT @johnkrasinski: Memorial Day. A day to honor and remember each and every one of the brave men and women who lay down their lives for ea… +05/29/2018,Sports_celeb,@TheRock,RT @prattprattpratt: I did my Murph yesterday because i’m in Shanghai where yesterday is already tomorrow? (or something like that) we’ve b… +05/29/2018,Sports_celeb,@TheRock,@Ron_Clements @buffa82 @UnderArmour Awful? 😂 Well I can promise you we’re not that my friend. Nice profile pic. Fuck off 💁🏾‍♂️🖕🏾 +05/29/2018,Sports_celeb,@TheRock,Incredible day for our first signature series @UnderArmour #ProjectRock1s - 100% sold out in 30min. It’s a smart tw… https://t.co/514lIwM45d +05/29/2018,Sports_celeb,@TheRock,"It’s Dwight you dickhead. Let’s get to work Jeff. + +Jokes aside, this one is truly going be an honor.… https://t.co/ONlPSKLofB" +05/28/2018,Sports_celeb,@TheRock,"Whoa. Blown away... +I got up at 4am (Hawaii time) today to launch my new signature series @UnderArmour… https://t.co/xFdLhHy1ng" +05/28/2018,Sports_celeb,@TheRock,"#ProjectRock1s AVAILABLE NOW 🔥 +My 1st signature series shoe from @underarmour. I’ve engineered & broken these down… https://t.co/72GR1N4B5a" +05/27/2018,Sports_celeb,@TheRock,Just when I thought I couldn’t be any more… https://t.co/fXdpUq5Vd2 +05/27/2018,Sports_celeb,@TheRock,@TheVenskus Papa? No. Daddy? Yes. Lol +05/27/2018,Sports_celeb,@TheRock,Just when I thought I couldn’t be any more… https://t.co/JbO0qQXCeZ +05/27/2018,Sports_celeb,@TheRock,@ChrisClarkNFL @UnderArmour You’ll dig these PR1’s for sure my man. The 15’s are large and wide. Not a narrow shoe… https://t.co/hWA1aCTPJl +05/27/2018,Sports_celeb,@TheRock,Leg day in my new @underarmour #ProjectRock1s… https://t.co/w5Mav66CJM +05/27/2018,Sports_celeb,@TheRock,Scroll left for the exclusive first look at my… https://t.co/YV6lUMi4Lk +05/27/2018,Sports_celeb,@TheRock,"We’re all in the same game, just different… https://t.co/923SoZjKmO" +05/26/2018,Sports_celeb,@TheRock,"Well I keep asking you out to join me for an amazing time eating dead cow and drinking tequila, but the “dead cow”… https://t.co/1PHMbgrAIz" +05/26/2018,Sports_celeb,@TheRock,"Love this. Have fun and tell the awesome birthday girl, Uncle Rock says “Have a blast on your birthday and go spend… https://t.co/N3HuNCuiYv" +05/26/2018,Sports_celeb,@TheRock,Here’s a breakdown of our 18month process on the development and engineering of my new signature sneaker. Pretty in… https://t.co/vpPZhox1oR +05/26/2018,Sports_celeb,@TheRock,"I’ve developed, trained in, broken down and refined this sneaker for over a year now. Highest of quality and durabi… https://t.co/wEZ9t96zOi" +05/26/2018,Sports_celeb,@TheRock,"This MONDAY we drop our new @UnderArmour #ProjectRock1s. +My first signature sneaker series from our CHASE GREATNES… https://t.co/Pa9aZsu8zO" +05/26/2018,Sports_celeb,@TheRock,"@johnreport @NatbyNature Your action figure looks way cooler, sexier & bad ass. Mine looks constipated and confused… https://t.co/svrXL9IQRH" +05/24/2018,Sports_celeb,@TheRock,Scroll left for the exclusive first look at my… https://t.co/mJD5DEIae9 +05/24/2018,Sports_celeb,@TheRock,And that’s saying A LOT cause your head is HUGE my friend @TheRossKing 😉🤙🏾. Always a good time chatting s you!… https://t.co/657lIG5hc2 +05/24/2018,Sports_celeb,@TheRock,Great time. Thank you for having me on your show! #Skyscraper https://t.co/z2Ap5sTmor +05/24/2018,Sports_celeb,@TheRock,"A lil’ taste of my new @UnderArmour PROJECT ROCK 1’s. +Been training in these and improving their quality for over… https://t.co/M0ZyfsnBh6" +05/24/2018,Sports_celeb,@TheRock,@toryshulman @skyscrapermovie @dailyblastlive Dude I wanted to cast you but what’s his name said no. Can’t remember… https://t.co/HMbtHGRgox +05/24/2018,Sports_celeb,@TheRock,"@HistoryofWrest Every Saturday night, I was at this show with my dad at the Portland Sports Arena. On Sunday’s the… https://t.co/bEnWyCuNTC" +05/23/2018,Sports_celeb,@TheRock,"I made a movie that pays homage to films that inspired me & a generation w/ grit, guts and heart - DIE HARD, THE TO… https://t.co/HI5Mku341r" +05/22/2018,Sports_celeb,@TheRock,"New full length SKYSCRAPER trailer drops tomorrow. +Most physical, emotional and intense role of my career. +I need… https://t.co/eKlQpsYeS1" +05/22/2018,Sports_celeb,@TheRock,"RT @EWagmeister: Another day, another piece of news coming from @TheRock’s world! + +DJ & his @SevenBucksProd business partner @DanyGarciaCo…" +05/22/2018,Sports_celeb,@TheRock,My main objective is to always make movies for the world to enjoy. And now that fun movie going experience extends… https://t.co/1AIdAdrwqI +05/22/2018,Sports_celeb,@TheRock,RT @Variety: Dwayne @TheRock Johnson and @DanyGarciaCo are bringing more high-wattage Hollywood electricity to Atom Tickets' advisory board… +05/21/2018,Sports_celeb,@TheRock,@JerryJarrett @TheJimCornette @HistoryofWrest I wish I did remember that Jerry! Dad always spoke highly of you and… https://t.co/WSDa0w7gUs +05/21/2018,Sports_celeb,@TheRock,A lil’ taste of my new SKYSCRAPER trailer debuting THIS WEDNESDAY! #SKYSCRAPER https://t.co/1UWy8lDVe5 +05/20/2018,Sports_celeb,@TheRock,@AdrianneCurry @TheMatthewRhode @jumanjimovie @skyscrapermovie Do it dude!! Thats the kind of deal where there are… https://t.co/C3fwz0vTlF +05/20/2018,Sports_celeb,@TheRock,"@robcorddry @hwinkler4real Dear Rob, I signed an autograph pic for Henry and it should be arriving this week into h… https://t.co/jxc3ld1nOY" +05/20/2018,Sports_celeb,@TheRock,"Saturday night doc viewing. +@thenotoriousmma… https://t.co/byQCyyIrSX" +05/20/2018,Sports_celeb,@TheRock,We’re gonna have times in our lives where we… https://t.co/YcF8eCjTiJ +05/20/2018,Sports_celeb,@TheRock,It’s a success philosophy thats worked very well… https://t.co/wr0ik4wlqn +05/20/2018,Sports_celeb,@TheRock,Thank you @lakers for having me speak to the… https://t.co/IXjvyhDV9K +05/20/2018,Sports_celeb,@TheRock,Just stopping in to show my appreciation and… https://t.co/bTS525qeB8 +05/20/2018,Sports_celeb,@TheRock,@chrissyteigen See baby you’re doing great!! @LaurenHashian 😉👍🏾 +05/20/2018,Sports_celeb,@TheRock,@Crockettfroggy @Goldust @Zelina_VegaWWE @JoeDiffieOnline Sheeeeyat am I a Joe Diffie fan? “If you want me to” is o… https://t.co/bU5gaNghgS +05/20/2018,Sports_celeb,@TheRock,@HistoryofWrest You can actual FEEL the tension and energy in the arenas across the country in the 70’s during matc… https://t.co/ZkaY20gGuw +05/20/2018,Sports_celeb,@TheRock,@Goldust @Zelina_VegaWWE Congrats brother. Proud of you (still remember us listening to ol’ Joe Diffie on the bus on the Germany tour;) +05/20/2018,Sports_celeb,@TheRock,@SMUheavyweight @OldWrestlingPic the original oooooh yeah! +05/20/2018,Sports_celeb,@TheRock,@SamariaPele Aww thank you sis!! +05/19/2018,Sports_celeb,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/QBEPyVqcxd" +05/19/2018,Sports_celeb,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/ajaZ2AxBgy" +05/19/2018,Sports_celeb,@TheRock,"We're keeping it going with @The_USO all the way through July 4th, kicking off our OPERATION WE WILL POWERED BY PR… https://t.co/qbxLLHqAgK" +05/18/2018,Sports_celeb,@TheRock,@OscarDronjak Hell yeah. Kick jet lags’ ass boys! Have a great tour 🤙🏾👊🏾 +05/17/2018,Sports_celeb,@TheRock,JAPAN! 🇯🇵 The wait it over...our monsters have finally arrived in your theaters! Get ready to experience me getting… https://t.co/a2hNPkX2Qp +05/17/2018,Sports_celeb,@TheRock,"64 hours in my day. +But, if I use the Force, then I can stretch it to 88. https://t.co/XyKl1BqMfw" +05/17/2018,Sports_celeb,@TheRock,RT @jpart16: SO HYPED! Let’s get it! 🙌🙌 https://t.co/p7U3LDBv2H +05/17/2018,Sports_celeb,@TheRock,"RT @zakfilmguy: Bruh, this summer boutta be even more lit 🔥🔥🔥🔥. Excited to rewatch before the season starts. https://t.co/U24YwVplAt" +05/17/2018,Sports_celeb,@TheRock,RT @OldSkoolPlaya71: Batten down the hatches! $#its about to get real again #BallersHBO https://t.co/M6OazKyqts +05/17/2018,Sports_celeb,@TheRock,"Haha yes and when you pour tequila on my voice is becomes honey coated gravel. And highly inappropriate. +Thx for w… https://t.co/ODWeRqa9p8" +05/17/2018,Sports_celeb,@TheRock,"RT @dunnigan24: let’s FUKING goooo, my shit right here 🔥🔥🔥🔥🔥 https://t.co/HgwJ5IW2CW" +07/08/2015,Sports_celeb,@kawhileonard,RT @GoAztecsFacOps: Had a special guest today at the @GoAztecs Jeff Jacobs #JAMCenter. Thanks for stopping by @kawhileonard ! #AztecMBB htt… +07/07/2015,Sports_celeb,@kawhileonard,Custom swag board #KL2 edition. Gear coming soon. http://t.co/Souo2K8Z7D +04/04/2015,Sports_celeb,@kawhileonard,You don’t have to be a golfer to have fun at @topgolfsat! #golf #SanAntonio #TopgolfVIP http://t.co/SoB4A54tpL +01/13/2015,Sports_celeb,@kawhileonard,One of my greatest experiences http://t.co/MiuGPv5Iin +06/26/2018,Sports_celeb,@StephenCurry30,First episode of my #5MinutesFromHome series is now live on YouTube. @RudyMancuso and I record a fire track in the… https://t.co/UKVzYUdt4h +06/26/2018,Sports_celeb,@StephenCurry30,RT @NickSwagyPYoung: Why y’all so mad enjoy life +06/24/2018,Sports_celeb,@StephenCurry30,"RT @sydelcurry: Tonight. 8/7C familyfeudabc @abcnetwork!! So excited for y’all to see it. So much funnnn! • +• +• +Seth was injured the weeken…" +06/24/2018,Sports_celeb,@StephenCurry30,@LeVelleMoton Woah I see you coach! It’s Officially golf season you know I’m ready whenever +06/24/2018,Sports_celeb,@StephenCurry30,It’s going down tonight on @FamilyFeudABC with my family. Thanks @IAmSteveHarvey for having us. Comes on 8/7C! https://t.co/SJodiLhPsO +06/21/2018,Sports_celeb,@StephenCurry30,@crgilbert @ayeshacurry @EatAtSmoke Wow! Who am I? 2 orders of that +06/21/2018,Sports_celeb,@StephenCurry30,Hey @ayeshacurry. Guess I’ll have @EatAtSmoke in Houston 2 Myself twice next year 🤷🏽‍♂️. More Ribs and Shellfish an… https://t.co/E04vutqbcr +06/20/2018,Sports_celeb,@StephenCurry30,6 days to go! #5MinutesFromHome dropping June 26. https://t.co/K9c4XJZ0L9 +06/20/2018,Sports_celeb,@StephenCurry30,@L_Smith_23 Louder than the silence - quieter than the noise bro! I don’t understand this nonsense. Sending supplie… https://t.co/ZGrkunzB4s +06/15/2018,Sports_celeb,@StephenCurry30,RT @DevonteeWOE: my first single #BLESS out everywhere now! LINK… https://t.co/FFykfp4a40 +04/19/2018,Sports_celeb,@StephenCurry30,"I can’t imagine what Coach Popovich is going through, but I am lifting up prayers you and your family. 🙏🏽 https://t.co/PMezvqWlcL" +04/14/2018,Sports_celeb,@StephenCurry30,That time again! . #dubnation https://t.co/j5AgmELk5c +04/13/2018,Sports_celeb,@StephenCurry30,🚨 Restock alert 🚨 https://t.co/jk45wzhKFU +04/13/2018,Sports_celeb,@StephenCurry30,"RT @stockx: Today is your last chance to enter! Don't miss out on your chance at game-worn, signed sneakers from @StephenCurry30 for just…" +04/11/2018,Sports_celeb,@StephenCurry30,I’m partnering with @StockX to give you all a shot at owning the 1-of-1 @MBK_Alliance Curry 4’s I wore against the… https://t.co/Pc3dhNO74m +04/11/2018,Sports_celeb,@StephenCurry30,RT @SportsCenter: From 10 years in the G League to 19 points and MVP chants as a Laker https://t.co/j1e8gv6B3H +04/04/2018,Sports_celeb,@StephenCurry30,😎 #DubNation +04/01/2018,Sports_celeb,@StephenCurry30,Please send up prayers thoughts love to my guy @PMcCaw0! God please heal his body and keep him strong! +03/27/2018,Sports_celeb,@StephenCurry30,Psalm 27:13-14 I remain confident of this: I will see the goodness of the LORD in the land of the living. Wait for… https://t.co/LBfkCr7aAS +03/24/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +03/23/2018,Sports_celeb,@StephenCurry30,Running drills and having fun tonight with @Chase customers during the 🏀 clinic @ULTFieldhouse! Thanks to my partne… https://t.co/TAnj5jkWHA +03/16/2018,Sports_celeb,@StephenCurry30,@babyboypoverty 😎 +03/16/2018,Sports_celeb,@StephenCurry30,@DavidDTSS I was in the mood too! https://t.co/Hmz70bH4Zz +03/16/2018,Sports_celeb,@StephenCurry30,@KAzubuike7 Boooooo that +03/16/2018,Sports_celeb,@StephenCurry30,Tough one down the stretch but that fight is what makes @DavidsonMBB special. Congrats to Coach McKillop on his 29t… https://t.co/Mv5vvBY61E +03/15/2018,Sports_celeb,@StephenCurry30,@Money23Green #ruiningthegame +03/15/2018,Sports_celeb,@StephenCurry30,The world is an incredible place. We blew past $30K so why not triple it? Can we hit $90K?! 👉🏼… https://t.co/wScXEN2nHK +03/15/2018,Sports_celeb,@StephenCurry30,It’s a big birthday so let’s make a big impact. Can we hit $30K for @nothingbutnets?! 👉🏼https://t.co/BdZXvomtnT👈🏼 https://t.co/zeTNKCrieI +03/10/2018,Sports_celeb,@StephenCurry30,#DubNation +03/08/2018,Sports_celeb,@StephenCurry30,You get uglier every year 😂😂😆. Happy birthday! Yannnnn! https://t.co/eallYrmfMa +03/03/2018,Sports_celeb,@StephenCurry30,It’s a Great Day to Be a Wildcat! https://t.co/4boShlYNp3 +03/01/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/27/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/26/2018,Sports_celeb,@StephenCurry30,@andrewbogut Can we start the #BogutBookClub?? What book is that? +02/26/2018,Sports_celeb,@StephenCurry30,He’s working on getting his Win % up to NBA average FG%. Congrats bro! https://t.co/a8eWNXCkcj +02/25/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/24/2018,Sports_celeb,@StephenCurry30,RT @VanJones68: TONIGHT!!! 7pm ET & 4pm PT west coast on @cnn. @NBA champion @StephenCurry30 on the #VanJonesShow ... SET YOUR DVR NOW! ...… +02/23/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/22/2018,Sports_celeb,@StephenCurry30,1/2 of @ayeshacurry is so mad right now that we just beat Canada on the ICE! 😂😂😂😂😂😂😂😂😂😂😂😂😂😂 +02/22/2018,Sports_celeb,@StephenCurry30,RT @JForsett: Let’s Go!!! #USA https://t.co/v0yZ5nuKxa +02/22/2018,Sports_celeb,@StephenCurry30,USA!! USA!!! 🇺🇸 🏒 +02/13/2018,Sports_celeb,@StephenCurry30,Get that gooseneck wrist pointed down and you got it! Need you to return the favor on the lacrosse field sometime https://t.co/gTX1IovreG +02/09/2018,Sports_celeb,@StephenCurry30,"RT @MuscleMilk: Enter our #YearOfYou Sweepstakes for a chance to win the gear you need to make your 2018 goals a reality. +https://t.co/2AZ…" +02/08/2018,Sports_celeb,@StephenCurry30,"Hey @MalcolmJenkins, they should have given you some glasses with that 🎤. I rep the @RedhawksAD. But appreciate the… https://t.co/N5E4Fko2NS" +02/03/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +01/30/2018,Sports_celeb,@StephenCurry30,RT @MichaelRapaport: New episode of PLC ep-8 with @JaValeMcGee @StephenCurry30 @imanitrishawn_ and some dope cameos! GO WATCH! https://t.co… +01/28/2018,Sports_celeb,@StephenCurry30,Stay strong @boogiecousins and Andre Roberson! Prayers your way for a strong recovery 🙏🏽 +01/25/2018,Sports_celeb,@StephenCurry30,Yeah I’d have to say that was legit! #nextyear https://t.co/fj4flo8lgq +01/25/2018,Sports_celeb,@StephenCurry30,"Today is something else. @TigerWoods is back on the course, @NBAAllStar draft with #30K @KingJames, and it’s a game… https://t.co/nsXyR4sHMw" +01/20/2018,Sports_celeb,@StephenCurry30,https://t.co/ZdMjRklkja +01/18/2018,Sports_celeb,@StephenCurry30,"Captain huh? Really Appreciate all the votes from the fans, media and players! Honored to be an All-Star. TGBTG! https://t.co/rOpLsUx47T" +01/18/2018,Sports_celeb,@StephenCurry30,@gavmanj Uhhh. 0.1 seconds on the clock. Pretty smart way to end the Quarter if you ask me. But what do I know? I’d… https://t.co/6JFrHrwZXp +01/16/2018,Sports_celeb,@StephenCurry30,Introducing a new segment called “Never Seen it!” https://t.co/OLhRk6C59q +01/08/2018,Sports_celeb,@StephenCurry30,Solid year fellas! Loved the fight. #KeepPounding forever +01/08/2018,Sports_celeb,@StephenCurry30,First time I’m like yo! He didn’t catch that interception. No give it back! +01/08/2018,Sports_celeb,@StephenCurry30,I can’t believe this +01/07/2018,Sports_celeb,@StephenCurry30,Season pretty much down to this possession. Need 7 right now If we got any chance today- Brees is scary +01/07/2018,Sports_celeb,@StephenCurry30,Cam is locked in right now. Need the hands to wake up though. +01/07/2018,Sports_celeb,@StephenCurry30,Lets go @Panthers #KeepPounding https://t.co/lwHQlnvJ9H +01/05/2018,Sports_celeb,@StephenCurry30,Filtering out water bottles and showing my man @rudymancuso the right way to start the New Year. Thanks to… https://t.co/1oYjeoguHl +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes + +🌟 Stephen Curry #NBAVote 🌟 https://t.co/1JzDHIDhsI" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes + +🌟 Draymond Green #NBAVote 🌟 https://t.co/saRBN0OxLY" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes 👐🏽 + +Kevin Durant ⭐️ #NBAVote https://t.co/ihUAwWJ01J" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes 👌🏽 + +Klay Thompson ⭐️ #NBAVote https://t.co/dSRZQQ05j7" +01/05/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +01/04/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +12/31/2017,Sports_celeb,@StephenCurry30,The NEW @UnderArmour #Curry4 Low benefits @nothingbutnets. Each pair sold sends a life-saving bed net. Don't miss i… https://t.co/WBDUXY2qLb +12/31/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +12/30/2017,Sports_celeb,@StephenCurry30,The comeback is always stronger than the setback.  S/o @DegreeMen #AD https://t.co/TzL16Tf7LR +12/27/2017,Sports_celeb,@StephenCurry30,"#WeAreTheOnes...Learn how to help young people fulfill their potential, regardless of circumstance at… https://t.co/MmZirdKziA" +12/24/2017,Sports_celeb,@StephenCurry30,Yeaahhhhhhhhhh Boy! Found a way today baby. We are going to be dangerous in the post season. And I’m all here for it! #KeepPounding +12/23/2017,Sports_celeb,@StephenCurry30,RT @warriors: Good to have you back on the court @money23green 💪🏽 #DubNation https://t.co/D9vxjq2nLE +12/21/2017,Sports_celeb,@StephenCurry30,Somebody is having a great game! https://t.co/0RiWEzgwyQ +12/19/2017,Sports_celeb,@StephenCurry30,End this......! +12/19/2017,Sports_celeb,@StephenCurry30,I️ concur https://t.co/RynrCCoTWK +12/19/2017,Sports_celeb,@StephenCurry30,Thanks @uograd66 https://t.co/ITBS8UHWuA +12/19/2017,Sports_celeb,@StephenCurry30,Wish I could be there tonight. Congrats @kobebryant. #Ko8e24 https://t.co/a98uiRpP8k +12/18/2017,Sports_celeb,@StephenCurry30,"RT @MySportsUpdate: Clay Matthews: It's that wheel route, it's that wheel route + +Cam Newton: You been watching film, huh? + +Matthews: Yeah…" +12/18/2017,Sports_celeb,@StephenCurry30,I️ want in! https://t.co/XvvC1vo7xI +12/15/2017,Sports_celeb,@StephenCurry30,Get buckets!!! 👌🏽 https://t.co/ho9uThnA6h +12/15/2017,Sports_celeb,@StephenCurry30,💪🏽💪🏽💪🏽 https://t.co/KQ6Nspjfv3 +12/15/2017,Sports_celeb,@StephenCurry30,Keep up the good work! 👏🏽👏🏽👏🏽 https://t.co/f78uS7xsq6 +12/14/2017,Sports_celeb,@StephenCurry30,🎄🏀 https://t.co/5e5o3c7SZR +12/11/2017,Sports_celeb,@StephenCurry30,Well said bro! Finding the purpose and plan in everything. All things work together...ROM 8:28 #respect https://t.co/dhCJVxzCEH +12/09/2017,Sports_celeb,@StephenCurry30,Trucking around the Bay looking for gyms to drop into. Got some goodies for #DubNation and looking to hear from you… https://t.co/h47EUq0IMi +12/09/2017,Sports_celeb,@StephenCurry30,These boys playing some basketball!!! Big Mo going to the 4th +12/09/2017,Sports_celeb,@StephenCurry30,👀 @KDTrey5 +12/08/2017,Sports_celeb,@StephenCurry30,Traveling back to the Bay haven’t been able to see the show yet but heard @ayeshacurry killed the… https://t.co/T5ZWx3BroO +12/03/2017,Sports_celeb,@StephenCurry30,This year I’m participating in the #HourOfCode challenge! Tweet your @codeorg creation and a class photo. Tag me &… https://t.co/z0p873kZXh +11/30/2017,Sports_celeb,@StephenCurry30,The wait is over. The wait is over. @TigerWoods +11/28/2017,Sports_celeb,@StephenCurry30,RT @sdotcurry: I appreciate all your support as you all motivate me to get back ASAP. I do want to do my part on (cont) https://t.co/thRCvK… +11/25/2017,Sports_celeb,@StephenCurry30,"Appreciate the #DubNation love from Florida. I’ve got something in store for you when you come to the game, can’t w… https://t.co/ta6WTSnXFb" +11/22/2017,Sports_celeb,@StephenCurry30,@JaValeMcGee34 Soon.....! https://t.co/cyfWQcXViu +11/21/2017,Sports_celeb,@StephenCurry30,"No days off with @DegreeMen Deordorant. The more you move, the more it works. #ad https://t.co/RqZtaxQgDT" +11/21/2017,Sports_celeb,@StephenCurry30,Appreciate the love tonight! @jimmyfallon vibez. Tune in! https://t.co/9WFZMp8e2h +11/21/2017,Sports_celeb,@StephenCurry30,#DubNation in NYC 🤓 https://t.co/lmMkErBdhW +11/12/2017,Sports_celeb,@StephenCurry30,RT @cloud_surferrr: When you were born and raised in the South and somebody says “oh you don’t have to say yes ma’am/no ma’am to me” https:… +11/11/2017,Sports_celeb,@StephenCurry30,"As we celebrate Veterans today, let us be louder than all of this silence — and quieter than all of this noise. + +https://t.co/xUMtcf8Tbm" +11/09/2017,Sports_celeb,@StephenCurry30,#SC30 x @Xbox collab alert! 🚨🚨 https://t.co/NXHWioFwwS +11/08/2017,Sports_celeb,@StephenCurry30,Let’s gooooooo https://t.co/ZnKAV6Aym2 +11/08/2017,Sports_celeb,@StephenCurry30,So much love!!!! https://t.co/0zQqgoq5AS +11/05/2017,Sports_celeb,@StephenCurry30,Cam out there dunking on people now? I’ll have to ask him what that feeling is like later #iplaybelowtherim +11/03/2017,Sports_celeb,@StephenCurry30,RT @ayeshacurry: Well! Here we go! international goes to Houston! coming 2018 https://t.co/AAUg0a4bZX +11/02/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +11/02/2017,Sports_celeb,@StephenCurry30,I wonder if Steve’s Bike shop is hiring... +10/31/2017,Sports_celeb,@StephenCurry30,Please help me understand this madness.... https://t.co/lds3DE9ujf +10/31/2017,Sports_celeb,@StephenCurry30,@juliephayer “Game Over” +10/30/2017,Sports_celeb,@StephenCurry30,RT @MarcJSpearsESPN: The story of how and why Warriors star @KlayThompson used his scoring to aid the Bay Area's firestorm victims. https:/… +10/30/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/29/2017,Sports_celeb,@StephenCurry30,"Hello, I want to play a game. #Jigsaw #DubNation https://t.co/cvl6F3cIQc" +10/28/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/27/2017,Sports_celeb,@StephenCurry30,Shoutout to my man #kortneumann on killing the design of the #Curry4. It was great collaborating with you my man. R… https://t.co/WG8x61c0LA +10/24/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/22/2017,Sports_celeb,@StephenCurry30,No excuse for that! Gotta remember who I am playing for... +10/21/2017,Sports_celeb,@StephenCurry30,@Richie_Lombardi @UAbasketball Yeah I might have to cut copy and paste those into my closet! 🔥 +10/21/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/19/2017,Sports_celeb,@StephenCurry30,@JOHNNYSWIM #INeedMeSomeHome https://t.co/fZxK61YWtG +10/18/2017,Sports_celeb,@StephenCurry30,At least the first part of the night we were smiling! 💍💍. On to the next! https://t.co/MXvepDxI29 +10/18/2017,Sports_celeb,@StephenCurry30,🙏🏽🙏🏽 For @gordonhayward. Come back stronger! +10/18/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation 💍 +10/17/2017,Sports_celeb,@StephenCurry30,Getting off to a FRESH start this season with @DegreeMen Deodorant #AD. https://t.co/8fduOcdEwo +10/16/2017,Sports_celeb,@StephenCurry30,Finally got to see the @Chase #GoldenVictoryBall in action today during the court refurb at Bushrod Park! Check it… https://t.co/PEqs235Mjz +10/10/2017,Sports_celeb,@StephenCurry30,There’s more to me than my numbers. It's why I choose @INFINITIUSA. Life's an experience not a stat sheet.… https://t.co/DSb3SyRRoo +10/09/2017,Sports_celeb,@StephenCurry30,My partners @Chase are sending the #GoldenVictoryBall your way tomorrow!! Stop by and take a pic. https://t.co/dbw1HFKxyj +10/08/2017,Sports_celeb,@StephenCurry30,I could get used to this! (📸 @cassyathena) https://t.co/z6O5Wos33v +10/07/2017,Sports_celeb,@StephenCurry30,RT @Essence: .@ayeshacurry's debut cookware line has arrived. Here's what we're buying from it: https://t.co/7jxh8SPycG https://t.co/ELr2cN… +10/01/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation 9️⃣ +09/26/2017,Sports_celeb,@StephenCurry30,"RT @30for30: He sacrificed his life to save others. + +Our latest ESPN Film, #24Strong - the story of Zaevion Dobson, airs Thurs. at 7:30 ET…" +09/25/2017,Sports_celeb,@StephenCurry30,RT @DavidDTSS: .@StephenCurry30 still repping. Go Season Some Food. Get familiar. https://t.co/Asq7xMH6BA https://t.co/g5pOjBirMx +09/24/2017,Sports_celeb,@StephenCurry30,@Lanny_Smith We should Keep a running scoreboard! Ones with Steven count as double +09/22/2017,Sports_celeb,@StephenCurry30,@DJRadar24 @ayeshacurry Louder +09/22/2017,Sports_celeb,@StephenCurry30,RT @lecrae: My new album 'All Things Work Together' is out now everywhere 🙏🏾 #ATWT https://t.co/gnWRS6pPFU https://t.co/pss5pKmwtV +09/21/2017,Sports_celeb,@StephenCurry30,Salute to @andreward on checking off everything he ever wanted to do in the ring. #missionaccomplished https://t.co/9W674kzRlu +09/20/2017,Sports_celeb,@StephenCurry30,@aef83 @UnderArmour That’s about the same face I make when I open my own pair! +09/19/2017,Sports_celeb,@StephenCurry30,That sunshine expensive #blessings +09/18/2017,Sports_celeb,@StephenCurry30,"RT @DavidDTSS: AND. WE. ARE. LIVE. + +https://t.co/aqzqrFUOgP" +09/17/2017,Sports_celeb,@StephenCurry30,RT @MrAnthonyMorrow: Our Defense is looking Top 1 or 2 in the league again the past two weeks @Panthers ✊🏾✊🏾🙌🏾🙌🏾 +09/17/2017,Sports_celeb,@StephenCurry30,I'm nice with the right foot though...thanks to @chelseafc for having me at Stamford Bridge today. ⚽️ https://t.co/BtIZTmt5Xz +09/12/2017,Sports_celeb,@StephenCurry30,The UA Family welcomes another champ 🏆 to the sqUAd. Congrats @SloaneStephens. It was a victory #UnlikeAny. #TeamUA https://t.co/UR1B14tGD4 +09/10/2017,Sports_celeb,@StephenCurry30,"This was fun! Me vs. My Daughter on the track. @infinitiusa Q50 for the win. +#RoadOfHerDreams #ad https://t.co/xBp7QFGwru" +09/05/2017,Sports_celeb,@StephenCurry30,RT @SoleCollector: See what @StephenCurry30 fans are creating on the UA Icon platform: https://t.co/s3gxl6e6KQ https://t.co/EDpw3gLYs3 +09/03/2017,Sports_celeb,@StephenCurry30,New vibez w/ @lawrencetheband thank me later! https://t.co/YmfJ2Upqq0 https://t.co/YmfJ2Upqq0 +08/28/2017,Sports_celeb,@StephenCurry30,RT @CNN: Here are a few ways you can help the people affected by Hurricane Harvey https://t.co/8A08k10kvN https://t.co/26cfSvjwdP +08/28/2017,Sports_celeb,@StephenCurry30,Prayers up for Houston! Many fam and friends living there. Don’t really know what to say in times like these but hope we can help somehow! +08/25/2017,Sports_celeb,@StephenCurry30,"Thanks to @PSG_inside for having me out to see the win! What a wild, crazy environment to be part of.… https://t.co/dVARZbEtAx" +08/19/2017,Sports_celeb,@StephenCurry30,@LetsGoWarriors DM me the group code! Let’s Go! +08/16/2017,Sports_celeb,@StephenCurry30,Work! https://t.co/0nNKU4qrqj +08/16/2017,Sports_celeb,@StephenCurry30,Hyped The Players Technology Summit is finally here - thanks to @Bloomberg and everyone that made it happen. https://t.co/sZJKaUAYKN +08/15/2017,Sports_celeb,@StephenCurry30,👏🏽👏🏽💪🏽✌🏽 +08/09/2017,Sports_celeb,@StephenCurry30,".@Dennis1SmithJr welcome to the sqUAd, bro. Let's get it!! #TeamUA https://t.co/ofc8YFw5Eb" +08/09/2017,Sports_celeb,@StephenCurry30,"RT @JordanMcCabe5: Special thanks to @stephencurry30 and @UAassociation for the great event this week, best experience so far. #SCSelect #B…" +08/09/2017,Sports_celeb,@StephenCurry30,@MaallyMall @UnderArmour These are 🔥 +08/08/2017,Sports_celeb,@StephenCurry30,#BayArea come 👀 the Top H.S. players in the 🌏at Kezar Pavilion tmrw at 6PM. The Showcase airs live @9PM EST #ESPNU.… https://t.co/9LsHxSPVon +08/04/2017,Sports_celeb,@StephenCurry30,@andre 75 BPM is da gawd! +08/04/2017,Sports_celeb,@StephenCurry30,@wheatiePGA @notthefakeSVP Hell hath frozen over 😂 +08/04/2017,Sports_celeb,@StephenCurry30,@24Bazemore We’ve all been doubted before ya heard me! #499 +08/04/2017,Sports_celeb,@StephenCurry30,@webbsimpson1 Thanks my man! You guys have an extremely tough day job. +08/04/2017,Sports_celeb,@StephenCurry30,RT @ayeshacurry: Word of the day! A person should never be subjected to being just one thing! #noceilings live your dreams! Believe in YOUR… +08/03/2017,Sports_celeb,@StephenCurry30,I remember 2011 in Winston playing with you! We both got wayyyy better https://t.co/ir0NVS7f4j +08/01/2017,Sports_celeb,@StephenCurry30,"Nothing quite like the sound of the ball on the asphalt, or the engine revving on the road ahead. S/O to #INFINITI… https://t.co/du670Xddzb" +07/27/2017,Sports_celeb,@StephenCurry30,"When you've got the range, you gotta have the right kicks. #SC30AsiaTour @uabasketball https://t.co/qQ1olgWeDq" +07/26/2017,Sports_celeb,@StephenCurry30,Chengdu sqUAd. #SC30AsiaTour https://t.co/xr4M7aa4Gb +07/24/2017,Sports_celeb,@StephenCurry30,"Made my ""acting"" debut on @BallersHBO Season 3. Check me out Sunday, July 23 at 10pm ET on @HBO. https://t.co/h88SQo8Jxz" +07/24/2017,Sports_celeb,@StephenCurry30,It's my first time in Chengdu and it's already an unforgettable experience. #SC30AsiaTour https://t.co/R7ID8H7Mq2 +07/23/2017,Sports_celeb,@StephenCurry30,Just putt it and turn around and walk to the next hole next time sheesh Jordan! +07/23/2017,Sports_celeb,@StephenCurry30,Issa Eagle!!!!! +07/23/2017,Sports_celeb,@StephenCurry30,Issa 🦅 +07/23/2017,Sports_celeb,@StephenCurry30,“Are you not entertained???” @JordanSpieth +07/22/2017,Sports_celeb,@StephenCurry30,No days off in Beijing. #SC30AsiaTour https://t.co/sGLSrYCYAL +07/20/2017,Sports_celeb,@StephenCurry30,"Getting shots up, even at my #INFINITI #Q50 commercial shoot! More to come. https://t.co/wtNl1ys5Hw" +07/16/2017,Sports_celeb,@StephenCurry30,🏌🏽in Tahoe! @jtimberlake @tonyromo 📷:: Jeff Bayer https://t.co/RNgvKMrrus +07/12/2017,Sports_celeb,@StephenCurry30,RT @NBASummerLeague: Wait for it... @1jordanbell!!! #NBASummer https://t.co/mBmfsepJlL +07/12/2017,Sports_celeb,@StephenCurry30,That time of year for @SDotcurry! https://t.co/x93DLgbybk https://t.co/dA1nYVqqNl +07/12/2017,Sports_celeb,@StephenCurry30,@CamGo_Ham @Cal_Baseball 👀 can do something about that! +07/07/2017,Sports_celeb,@StephenCurry30,Nothing easyyyyyyyyyy!!!! +07/04/2017,Sports_celeb,@StephenCurry30,Talk about him! Shakespeare says there’s sermons in stones @KDTrey5. +06/28/2017,Sports_celeb,@StephenCurry30,@bryantabarr @ACChampionship Yes We will have a performance review after Tahoe! Lights will be really bright gotta see how we respond +06/28/2017,Sports_celeb,@StephenCurry30,obviously want to play well & see how I handle tournament golf. No expectations except keep ball out of the gallery and not go Happy Gilmore +06/28/2017,Sports_celeb,@StephenCurry30,Supporting great cause & want all of the Bay Area comes out 2 watch these guys go low all week! @GSWfoundation does Great work for the Bay! +06/28/2017,Sports_celeb,@StephenCurry30,People asking why I’m playing. Unexpected invite & Always a dream 2 play golf w/ the pros. @WebDotComTour has so much talent it’s unreal. +06/28/2017,Sports_celeb,@StephenCurry30,"Honored to play in the @elliemaeclassic to support the +@gswfoundation! 1st experience inside the ropes! Come on out +@webdotcomtour +@pgatour" +06/27/2017,Sports_celeb,@StephenCurry30,Shout out to @Money23Green for that DPOY award! Well deserved bro! https://t.co/UUUGwu61dX +06/25/2017,Sports_celeb,@StephenCurry30,Game! Blouses! @JordanSpieth with the hole-out from the bunker to win it! Congrats bro +06/22/2017,Sports_celeb,@StephenCurry30,"Welcome to the @UABasketball family Josh! Excited to have you on the squad. You don't need it but, good luck tomorr… https://t.co/Ckvr05AnrE" +06/20/2017,Sports_celeb,@StephenCurry30,"""We gon be Shampionship!"" https://t.co/nHQgI4rfyP" +06/20/2017,Sports_celeb,@StephenCurry30,"Week old but man, still everything! #dubnation https://t.co/Gq926MMitx" +06/19/2017,Sports_celeb,@StephenCurry30,".@andre + I just announced the launch of the first The Players Technology Summit, presented by Bloomberg.… https://t.co/UXATnUWSCB" +06/19/2017,Sports_celeb,@StephenCurry30,Lost art! Don’t rush the development https://t.co/HIKWc6kArb +06/18/2017,Sports_celeb,@StephenCurry30,RT @bryantabarr: Mood. #WardKovalev2 #TeamSOG https://t.co/5c1HYk3l4P +06/15/2017,Sports_celeb,@StephenCurry30,And we Back! https://t.co/HQjjumvJb2 +06/14/2017,Sports_celeb,@StephenCurry30,#DubNation https://t.co/tY0eZODep5 +06/13/2017,Sports_celeb,@StephenCurry30,RT @andre: Shot out to P McCaw... man that ninja nice!!!! +06/13/2017,Sports_celeb,@StephenCurry30,Glory to God! https://t.co/5nlTXUObqp +06/13/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/10/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/08/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/05/2017,Sports_celeb,@StephenCurry30,"RT @scott_fowler: If you're @DavidsonWildcat fan, congrats -- you're having a heckuva moment/week/month! @dcbaseball_ @StephenCurry30 https…" +06/02/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +05/07/2017,Sports_celeb,@StephenCurry30,"Celebrating the Champ, congrats @anthonyfjoshua! #IWILL https://t.co/KtL1K6ASr5" +05/07/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/27/2018,Sports_celeb,@AntDavis23,NOLA! You're up next. Spots are going quickly for my camp July 30th and 31st. Sign up now at https://t.co/X61ECIXLHO https://t.co/kdBkzLFdIx +06/23/2018,Sports_celeb,@AntDavis23,It’s been 6 years since I heard my name called in the NBA Draft. So here’s 6 tips for all the rookies who just got… https://t.co/YJEDEbPVTB +06/23/2018,Sports_celeb,@AntDavis23,🏀☀️ #GoHoopDay https://t.co/6SNHvX50ao +06/21/2018,Sports_celeb,@AntDavis23,Shout out to all the draftees tonight. Enjoy the ride! #TBT #NBADraft https://t.co/FY4HcubfLN +06/19/2018,Sports_celeb,@AntDavis23,Felt great to be back in Kentucky last weekend. Can't wait to do it again in New Orleans next month! Sign up at… https://t.co/onUS6YIAZU +06/15/2018,Sports_celeb,@AntDavis23,@MiaPulliam @Floyds99 I did not get a cut there. Just checked out the mural. +06/12/2018,Sports_celeb,@AntDavis23,Had a great time with the kids in Chicago last weekend. Can’t wait to do it again at camp this weekend in Lexington… https://t.co/QOknAu0fX8 +06/08/2018,Sports_celeb,@AntDavis23,Lexington! We're one week away from camp. Have you signed up yet? https://t.co/X61ECIXLHO https://t.co/zbu1CbXkiW +06/06/2018,Sports_celeb,@AntDavis23,Got to check out @SuperflyMovie last night. Go see it June 13th! https://t.co/kAV1k7WRpR +06/05/2018,Sports_celeb,@AntDavis23,"I’m bring my A-game to camp, are you? Register at https://t.co/X61ECIXLHO https://t.co/tgtS6caeM0" +06/01/2018,Sports_celeb,@AntDavis23,RT @AntDavis23: LEXINGTON KENTUCKY!! Spots are going quick for my camp on June 15th-16th! Make sure you sign up soon at https://t.co/X61ECI… +05/24/2018,Sports_celeb,@AntDavis23,LEXINGTON KENTUCKY!! Spots are going quick for my camp on June 15th-16th! Make sure you sign up soon at… https://t.co/cNjmXZvGGI +05/22/2018,Sports_celeb,@AntDavis23,Congrats to my lil bro @romeo_weems_0 on rocking with DePaul and Tim Anderson. #family #Trendsetter +05/22/2018,Sports_celeb,@AntDavis23,Calling all kids in NOLA and Lexington!! Who wants to put in work with me? Happy to announce registration for my ca… https://t.co/w64bEvu4wT +05/14/2018,Sports_celeb,@AntDavis23,Me and @Mobil1 Annual Protection under your hood?! Now that is protection! #Go20K #Mobil1 https://t.co/dx0R83s44h +05/11/2018,Sports_celeb,@AntDavis23,Thank you @PelicansNBA fans for riding with us all year. We'll be back. https://t.co/2RHACbeP6u +04/22/2018,Sports_celeb,@AntDavis23,On to the next. #DoItBigger https://t.co/5jrtbgZmV1 +04/18/2018,Sports_celeb,@AntDavis23,Bringing it back home. https://t.co/69eXGYRscp +04/18/2018,Sports_celeb,@AntDavis23,Nice pass AD!!! Lol https://t.co/qwCCXNTaRk +04/11/2018,Sports_celeb,@AntDavis23,Game 82....Make em all count! #DoItBigger https://t.co/ec39gyqJm9 +04/03/2018,Sports_celeb,@AntDavis23,Pumped to be a new member of the @Mobil1 team! We’ve got some great stuff coming your way so stay tuned to see why… https://t.co/iW0V2Aky6H +04/01/2018,Sports_celeb,@AntDavis23,Come on y'all!! Y'all knew I wasn't cutting it lol. #AprilFools We got ya!! @redbull https://t.co/l4H63aOEAW +03/31/2018,Sports_celeb,@AntDavis23,"The people have spoken, time for a little change... https://t.co/i5GiGdMei9" +03/28/2018,Sports_celeb,@AntDavis23,Should I shave my brow? +03/21/2018,Sports_celeb,@AntDavis23,Some Wednesday Brow-ketology: Sorry Sister Jean… Kansas State.. and Nevada.. 8 championships > 0. See you in the Fi… https://t.co/CHi2IrSlGD +03/16/2018,Sports_celeb,@AntDavis23,Incredibly sad news yesterday to hear of the passing of Mr Benson. Mr Benson has meant so much to this city & to my… https://t.co/DU9gdOvW6w +03/15/2018,Sports_celeb,@AntDavis23,It's Tourney Time....#BBN 🔵 https://t.co/9wujPn7jP3 +03/14/2018,Sports_celeb,@AntDavis23,Let me teach yall a thing or two about cutting down those nets…Let’s goo @KentuckyMBB #BBN @redbull #GivesYouWings https://t.co/xnKvij2Y4J +03/06/2018,Sports_celeb,@AntDavis23,the WHOLE squad up in here 💯 #DoItBig https://t.co/eHQwNzi18X +02/28/2018,Sports_celeb,@AntDavis23,I probably should have noticed that the maintenance guy was 6'9... #gotme @redbull https://t.co/g64PuMaxNT +02/21/2018,Sports_celeb,@AntDavis23,"If you gonna get pranked, may as well be by a Hall of Famer! My man @TheDeliverer_32 still got it! Gonna have to ge… https://t.co/OtUxVWQL81" +02/20/2018,Sports_celeb,@AntDavis23,"Not every network can keep up. But this weekend, we played ball in 5G… and it actually worked. @Verizon did not dis… https://t.co/airUtbvIaz" +02/19/2018,Sports_celeb,@AntDavis23,RT @NBAAllStar: #AnthonyDavis on wearing #DeMarcusCouins #NBAAllStar uni! https://t.co/P0m5guCN4b +02/18/2018,Sports_celeb,@AntDavis23,"A little trip down memory lane....Looking forward to tonight! +@RedBull #Givesyouwings https://t.co/E7uplpygP9" +02/18/2018,Sports_celeb,@AntDavis23,.@marriottrewards is offering epic experiences to #NBAAllStar – check it out: https://t.co/J3hosOD20N #membersgetit… https://t.co/LKkVJ7ZnAt +02/17/2018,Sports_celeb,@AntDavis23,Y’all got room for one more tonight?? 😂 #givesyouwings https://t.co/VbyayWRHiK +02/16/2018,Sports_celeb,@AntDavis23,Out here with @nbacares at LA Food Bank! https://t.co/2LPtoztHVf +02/14/2018,Sports_celeb,@AntDavis23,Who needs relationship advice this #ValentinesDay? The Master of Rejection is here to assist you in the game of lov… https://t.co/Z2TtUKxKjc +02/13/2018,Sports_celeb,@AntDavis23,Create the position that can’t be defined. #MakersOfTheGame https://t.co/hXA1xQ5EqW +02/04/2018,Sports_celeb,@AntDavis23,Who you got?? #SBLII +01/31/2018,Sports_celeb,@AntDavis23,Looking forward to meeting some @spg members at #NBAAllStar Check it out https://t.co/alrJTUVYSL +01/27/2018,Sports_celeb,@AntDavis23,My dawg!! Tough to see bro but I know you gonna come back stronger than ever. We gone hold it down for you!! #Pels… https://t.co/gjpKTYz5iH +01/24/2018,Sports_celeb,@AntDavis23,I'm Batman 😂😂 @SLAMonline https://t.co/9SsYUrezP3 +01/24/2018,Sports_celeb,@AntDavis23,"RT @SLAMonline: ⚜️ SLAM 214 is coming live from NOLA ⚜️ + +AD and Boogie got that work: https://t.co/PeCB14aF03 https://t.co/KccWFtpipx" +01/23/2018,Sports_celeb,@AntDavis23,My dawg!!!! https://t.co/WWiLL20bQH +01/19/2018,Sports_celeb,@AntDavis23,Humbled and blessed! Appreciate all the votes and support. Can't wait to suit up with my guy @boogiecousins and re… https://t.co/7ZxlarV8Pc +01/17/2018,Sports_celeb,@AntDavis23,Welcome to Scandyland!! https://t.co/FrWboyxX1n +01/15/2018,Sports_celeb,@AntDavis23,RT @TheNBPA: I Have A Dream. #PlayersVoice #MLK50 https://t.co/qDqu7xTYUc +01/15/2018,Sports_celeb,@AntDavis23,After hours at Il Mulino...... https://t.co/BXu4gjDdHL +01/04/2018,Sports_celeb,@AntDavis23,🔥🔥🔥 https://t.co/xYNRFBlcyd +12/28/2017,Sports_celeb,@AntDavis23,#25 https://t.co/edbep6BT0Z +12/26/2017,Sports_celeb,@AntDavis23,Hey NOLA! Christmas isn’t over just yet! I have a pair of tix to our home game tomorrow night vs the Nets to gift t… https://t.co/kWjvUCrtrW +12/26/2017,Sports_celeb,@AntDavis23,Merry Christmas yall!! 🎄 +12/24/2017,Sports_celeb,@AntDavis23,Squad! 🤘🏽🤘🏽 https://t.co/kD5hG8WInp +12/23/2017,Sports_celeb,@AntDavis23,"Since @boogiecousins, @rajonrondo, @DMillerKY & I will be out of town, @KentuckyMBB and @UKCoachCalipari are gonna… https://t.co/0m8z5nfi0j" +12/20/2017,Sports_celeb,@AntDavis23,I wanna hear about the work you’re doing in your communities this holiday season! Reply to this post and tell me ho… https://t.co/ddsVCxXZCz +12/18/2017,Sports_celeb,@AntDavis23,"As a @JrNBA Leadership Council Member, I’m excited to see kids from around the world compete in the… https://t.co/Bwt6gySHcD" +12/13/2017,Sports_celeb,@AntDavis23,My 4th annual holiday shopping spree!!🎄🎁🎅🏾 #SeasonOfGiving #Blessed https://t.co/M1qqDJhgfF +12/12/2017,Sports_celeb,@AntDavis23,Amazing feeling to be able to share some blessings this #SeasonOfGiving https://t.co/ANTyOpFU02 +11/27/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: From the Southside of Chicago, to the University of Kentucky, to the NBA draft at 19, we find out what drives @AntDavis23.…" +11/26/2017,Sports_celeb,@AntDavis23,Proud to support @footlocker and their #GreatnessDoesGood campaign! Support the cause and make a shoe donation at y… https://t.co/e0mB37mYVN +11/23/2017,Sports_celeb,@AntDavis23,Thankful! 🙏🏾 +11/22/2017,Sports_celeb,@AntDavis23,Check out my episode of Tanked this Friday at 9PM on @AnimalPlanet! 🐟🐠 https://t.co/SwszHUgW9w +11/21/2017,Sports_celeb,@AntDavis23,"Here’s to big, easy buckets… #givesyouwings https://t.co/uHxIazasWA" +11/20/2017,Sports_celeb,@AntDavis23,Truly blessed to be able to host my 5th Annual Thanksgiving Dinner last night with my family at the @NOLAMission 🦃🙏🏾 https://t.co/5lEcsfcRPp +11/15/2017,Sports_celeb,@AntDavis23,Who's coming out to Superhero Night at @SmoothieKingCtr tonight?? Gotta #DoItBig https://t.co/WRdlPHKfBi +11/15/2017,Sports_celeb,@AntDavis23,Y'all already know!!! #BBN #UK #RoadTo9 https://t.co/SpXYRf8mQZ +11/11/2017,Sports_celeb,@AntDavis23,Salute! #VeteransDay https://t.co/8qIIpyg6kp +11/10/2017,Sports_celeb,@AntDavis23,@jmiketaylor @KentuckyMBB Seriously! Lol +11/10/2017,Sports_celeb,@AntDavis23,"My @KentuckyMBB ticket finally came in the mail😂😂😂 + +Let's get it fellas! #BBN https://t.co/Q4zZfz3K6g" +11/10/2017,Sports_celeb,@AntDavis23,Let's go @KentuckyMBB!! It all starts tonight #BBN +11/09/2017,Sports_celeb,@AntDavis23,Good times out here in Toronto at @saks! Thanks for having me 🙏🏾 https://t.co/y282C7oABP +11/03/2017,Sports_celeb,@AntDavis23,Good times seeing @DaddysHome. Check it out when it hits theaters Nov. 10th #DaddysHome2 https://t.co/l3QYenVehG +10/31/2017,Sports_celeb,@AntDavis23,Happy Halloween! @nikebasketball https://t.co/u7Gll2Xc6A +10/29/2017,Sports_celeb,@AntDavis23,Getting into the Halloween spirit. @nikebasketball https://t.co/4mtxLhsHHu +10/20/2017,Sports_celeb,@AntDavis23,Home opener tonight NOLA!! #DoItBig +10/19/2017,Sports_celeb,@AntDavis23,See you next year at the Anthony Davis Basketball Camp @nikebasketball https://t.co/OEBpsPg2oL +10/18/2017,Sports_celeb,@AntDavis23,Finally that game day mood #DoItBig https://t.co/b83KsxUhAD +10/18/2017,Sports_celeb,@AntDavis23,RT @AntDavis23: NOLA! Who's hyped for the season? Tweet a pic in your Pelicans gear & post using #ADsTix to enter to win THESE TIX to home… +10/18/2017,Sports_celeb,@AntDavis23,Prayers going out to Gordon Hayward!!! +10/17/2017,Sports_celeb,@AntDavis23,Ready to #DoItBig https://t.co/bSOZfEFyHG +10/17/2017,Sports_celeb,@AntDavis23,New Orleans has become my second home @nikebasketball https://t.co/E5wbVjGSQj +10/16/2017,Sports_celeb,@AntDavis23,NOLA! Who's hyped for the season? Tweet a pic in your Pelicans gear & post using #ADsTix to enter to win THESE TIX… https://t.co/uOQCE5xTLC +10/16/2017,Sports_celeb,@AntDavis23,Shout out to the #USWNT. Looking forward to seeing you play at the Superdome on Thursday https://t.co/QFPaJWQULv +10/13/2017,Sports_celeb,@AntDavis23,Sportsmanship. Respect. Teamwork. The core values of the @JrNBA! Learn more and get involved at… https://t.co/R5W69RRGXp +10/12/2017,Sports_celeb,@AntDavis23,"I always wanted to start my own camp, this year I got the chance @nikebasketball https://t.co/KtFn4ZWegP" +10/03/2017,Sports_celeb,@AntDavis23,"We been workin hard!! Ready for the first preseason game tonight, let's get it #DoItBig https://t.co/nVjBya5pd3" +09/29/2017,Sports_celeb,@AntDavis23,Soar over the opposition. Tap into the game. @nikebasketball https://t.co/SjpL0zMU8r +09/25/2017,Sports_celeb,@AntDavis23,👀 https://t.co/4GHKyJsJcV +09/25/2017,Sports_celeb,@AntDavis23,Back to work! #PelicansMediaDay +09/18/2017,Sports_celeb,@AntDavis23,T-1 month!! #DoItBig https://t.co/0V0IYA02RX +09/17/2017,Sports_celeb,@AntDavis23,@boogiecousins 😂😂😂😂😂 🤷🏽‍♂️ #round13 +09/15/2017,Sports_celeb,@AntDavis23,"Who else picked up Destiny 2? NOLA hit me up, I’m trying to put in some work. #Destiny2Partner" +09/10/2017,Sports_celeb,@AntDavis23,https://t.co/9Uhsa745Ur +09/08/2017,Sports_celeb,@AntDavis23,Who's hyped for the season to start!? We are. #DoItBig @PelicansNBA https://t.co/whIx31IG3C +08/27/2017,Sports_celeb,@AntDavis23,The main event! Who you got?? +08/26/2017,Sports_celeb,@AntDavis23,#NationalDogDay https://t.co/xIDydQo0xq +08/26/2017,Sports_celeb,@AntDavis23,Felt great to be back! #BBN https://t.co/rbCKDBxF9e +08/23/2017,Sports_celeb,@AntDavis23,Great time with the fellas man. Got some GREAT work in the past couple of days!!! Excited for the season to start.… https://t.co/2IJ0xJjqoA +08/22/2017,Sports_celeb,@AntDavis23,We still doing these #eclipse tweets? No easy buckets!! 😂😂😂 https://t.co/BUH78eMcTP +08/21/2017,Sports_celeb,@AntDavis23,Old stomping grounds!! @PelicansNBA @KentuckyMBB #DoItBig #BBN https://t.co/Fso3T7uedx +08/21/2017,Sports_celeb,@AntDavis23,#BBN https://t.co/79ODiTyBWw +08/21/2017,Sports_celeb,@AntDavis23,RT @kingtone_55: Good lil workout with the homie @AntDavis23 https://t.co/joFAm6jNCA +08/16/2017,Sports_celeb,@AntDavis23,Should I cut my hair back to the waves?? +08/14/2017,Sports_celeb,@AntDavis23,Counting down the days!! #DoItBig https://t.co/HeAkKx8HUp +08/10/2017,Sports_celeb,@AntDavis23,🔥 https://t.co/GA7NoPEalX +08/09/2017,Sports_celeb,@AntDavis23,Camp was a blast!! Thanks to everyone who helped make my first-ever camp a success! https://t.co/Hv3AyBLfos +08/05/2017,Sports_celeb,@AntDavis23,Today! https://t.co/sT32w40SkT +08/03/2017,Sports_celeb,@AntDavis23,"Come through to @dicks this Sat for camp registration day! Meet the camp coaches, register for my camp & receive a… https://t.co/0JYWRF3wJ2" +07/31/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Why not learn 🏀 from the best? + +Sign up for @AntDavis23 camp today! + +🔗: https://t.co/LwXg2fNY7k + +#ADAllDay https://t.co/No…" +07/27/2017,Sports_celeb,@AntDavis23,We have a love-hate relationship 😂😂😂 #Zues #MansBestFriend https://t.co/d5dYShR2wp +07/27/2017,Sports_celeb,@AntDavis23,NOLA! Sign up at https://t.co/X61ECIXLHO! https://t.co/Yi9inf6iS0 +07/26/2017,Sports_celeb,@AntDavis23,About to kill @QuincyPondexter in uno!! Who want some?? https://t.co/LCIKleYibi +07/23/2017,Sports_celeb,@AntDavis23,Fun night last night checking out @HitmanBodyguard before it hits theaters August 18th! https://t.co/faIYXneBwM +07/21/2017,Sports_celeb,@AntDavis23,Might not want to leave your hoops out..... we coming for em!! #DriveByDunkChallenge #GivesYouWings https://t.co/oeBoW4lzNs +07/17/2017,Sports_celeb,@AntDavis23,Sign up for my camp today! Spots are going fast...Register at https://t.co/X61ECIGaQg https://t.co/cdJ3sBybsQ +07/11/2017,Sports_celeb,@AntDavis23,Grind never stops! https://t.co/yqon76sE8m +07/10/2017,Sports_celeb,@AntDavis23,NOLA KIDS! Have you signed up for my camp yet? Hope to see you there August 7th and 8th! Register at… https://t.co/TVPDcclhec +07/07/2017,Sports_celeb,@AntDavis23,New Orleans it's finally here!!! Come get some work in with me August 7th and 8th. Register now!!! #BeGreat https://t.co/JRgm1TYw3P +07/04/2017,Sports_celeb,@AntDavis23,Happy Independence Day! 🎆🇺🇸 +06/22/2017,Sports_celeb,@AntDavis23,Can't believe it's been 5 years! Good luck to all the guys whose lives are about to change forever #NBADraft #TBT https://t.co/B5YiiIdMZ6 +06/21/2017,Sports_celeb,@AntDavis23,"Toss out that big board, the real draft prospect grades are in #BBN #NBADraft https://t.co/AzAmqXZb37" +06/21/2017,Sports_celeb,@AntDavis23,Checked out @BabyDriverMovie tonight before it hits theaters June 28th! Dope movie https://t.co/KPD4iptaBY +06/19/2017,Sports_celeb,@AntDavis23,RT @SInow: Going shopping with @AntDavis23 and picking up some of his fashion tips 👔 https://t.co/lvtC1kUBjp https://t.co/4EcPzXNChC +06/18/2017,Sports_celeb,@AntDavis23,Dad’s coming in hot on #fathersday @redbull #givesyouwings https://t.co/iYxctnlGsH +06/15/2017,Sports_celeb,@AntDavis23,"Food, movie and sleep!!! That's my day today! What are some good movies to watch!?" +06/08/2017,Sports_celeb,@AntDavis23,Looking good in that Pelicans jersey Jimmy! https://t.co/zibZo3TWhm +06/08/2017,Sports_celeb,@AntDavis23,Had a blast last night! Thanks for having me @JimmyKimmelLive https://t.co/93X3JZxRlX +06/08/2017,Sports_celeb,@AntDavis23,RT @JimmyKimmelLive: Backstage at #Kimmel with @AntDavis23 #Pelicans https://t.co/HfwiQsMDwj +06/08/2017,Sports_celeb,@AntDavis23,Check me out tonight on @JimmyKimmelLive! 💯 +05/29/2017,Sports_celeb,@AntDavis23,"RT @NBA: We remember our fallen heroes that gave the ultimate sacrifice 🇺🇸. + +Happy #MemorialDay https://t.co/VOmO8aBJCT" +05/28/2017,Sports_celeb,@AntDavis23,"Remember I said this. I, Anthony Davis, will beat @RandallTime in Madden 21-0 in the first quarter!!!" +05/19/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: #FlashbackFriday + +A look back at @AntDavis23's First-Team All @NBA season! #Pelicans https://t.co/wRemBLLYJV" +05/14/2017,Sports_celeb,@AntDavis23,Happy Mother's Day to all the moms out there!! +05/14/2017,Sports_celeb,@AntDavis23,RT @ghetto: A pool with a glass bottom. I wouldn't even think about stepping a foot in that https://t.co/qRrM4rIBVz +05/08/2017,Sports_celeb,@AntDavis23,RT @kg_ugk: @AntDavis23 Thanks for the kicks out here flying like you https://t.co/RvPnj49NF6 +05/05/2017,Sports_celeb,@AntDavis23,RT @SPACEdotcom: Happy #NationalSpaceDay from @AntDavis23 😝 https://t.co/jKKX2Pm3ex +04/25/2017,Sports_celeb,@AntDavis23,@JenBeauvais That's awesome!! Tell hi yes I'll play. +04/25/2017,Sports_celeb,@AntDavis23,RT @JenBeauvais: @AntDavis23 my son is a huge fan. He wants to know if you'll play him in basketball 🏀 https://t.co/HD37YtTdaE +04/10/2017,Sports_celeb,@AntDavis23,#NationalSiblingsDay https://t.co/VNtuOrOT19 +03/31/2017,Sports_celeb,@AntDavis23,I saw @GhostInShell tonight! Comes out tomorrow 💯 https://t.co/kmn2Jzr1ok +03/25/2017,Sports_celeb,@AntDavis23,Who said there's no perfect brackets left? https://t.co/MUTokJ6yvw +03/21/2017,Sports_celeb,@AntDavis23,#BBN for life!! https://t.co/QdqddNXAiH +03/17/2017,Sports_celeb,@AntDavis23,#FBF Let's start dancing tonight @KentuckyMBB #BBN #GoBigBlue https://t.co/AIphxBUSGG +03/17/2017,Sports_celeb,@AntDavis23,.@ThePowerRangers was dope! Go check it out March 24 #TogetherWeAreMore #PowerRangersMovie https://t.co/0blBzNb4ti +03/16/2017,Sports_celeb,@AntDavis23,My Kentucky Super Team is staaacked. Who would you have in your starting 5? https://t.co/dWNBpvGKo0 +03/16/2017,Sports_celeb,@AntDavis23,"Hey @PelicansNBA fans, come through! https://t.co/DPoD81WIAS" +03/14/2017,Sports_celeb,@AntDavis23,Checked out @LifeMovie tonight before it hits theaters March 24th! #LIFEmovie https://t.co/VCMlRandHd +03/13/2017,Sports_celeb,@AntDavis23,Perfect bracket https://t.co/0riPQRC2wc +03/12/2017,Sports_celeb,@AntDavis23,KENTUCKY! Go support #BBN in the tourney & use code BROW for $20 back on @SeatGeek tix -> https://t.co/K1sKmSlsjt #selectionsunday #sp +03/12/2017,Sports_celeb,@AntDavis23,#BBN +03/08/2017,Sports_celeb,@AntDavis23,That's a good looking bobblehead!!! lol https://t.co/rGLDK9WZ4S +02/28/2017,Sports_celeb,@AntDavis23,Happy Mardi Gras from your boys! https://t.co/GsIdfsfbVT +02/28/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Happy #MardiGras! + +@AntDavis23 #Pelicans https://t.co/bEKncq2a6y" +02/24/2017,Sports_celeb,@AntDavis23,Had fun meeting the fans over All Star Weekend! https://t.co/r80OXKPhSF +02/23/2017,Sports_celeb,@AntDavis23,Welcome my big brother @boogiecousins to NOLA #FireAndIce https://t.co/mlkB0hjoyy +02/21/2017,Sports_celeb,@AntDavis23,AllStar fashion game on point!! @GQMagazine @alexreside https://t.co/iTMWVpzX9B +02/20/2017,Sports_celeb,@AntDavis23,This is for NOLA https://t.co/e291PU5axI +02/19/2017,Sports_celeb,@AntDavis23,Who's ready?? #NBAAllStar Saturday night! +02/18/2017,Sports_celeb,@AntDavis23,🙏🏾 https://t.co/T53X6IBVv8 +02/17/2017,Sports_celeb,@AntDavis23,RT @russwest44: The Joy of helping #nbacares #whynot https://t.co/7JeUHJgtHl +02/17/2017,Sports_celeb,@AntDavis23,RT @PelicansNBA: .@AntDavis23 and @russwest44 working with @nbacares visiting locals impacted by the recent tornados https://t.co/4MoWQqhry1 +02/17/2017,Sports_celeb,@AntDavis23,Step up your emoji game #AnthonyDavis https://t.co/2gPRng8XAg +02/17/2017,Sports_celeb,@AntDavis23,Thanks for a great event and a good time New Orleans! #RedBullReign @redbull https://t.co/EXJsHN8UTh +02/16/2017,Sports_celeb,@AntDavis23,Come meet me at @DICKS today #NOLA @shopatlakeside at 7:30p! https://t.co/fpjoWGxqWK +02/16/2017,Sports_celeb,@AntDavis23,#NBAAllStar weekend has begun! https://t.co/lam6TMpFAs +02/16/2017,Sports_celeb,@AntDavis23,"New Orleans! It happens today, see everyone at Joe W. Brown Park for #RedBullReign @redbull https://t.co/MXC7kK9sAX" +02/15/2017,Sports_celeb,@AntDavis23,"RT @TheNBPA: .@AntDavis23: My NOLA + +The Host of All-Star Weekend on His Special Connection to the City, Now in His Fifth Year -- https://t.…" +02/14/2017,Sports_celeb,@AntDavis23,#Equality https://t.co/QkXrWuwqgC +02/11/2017,Sports_celeb,@AntDavis23,RT @Timfraz23: 4 hour flight<<<< +02/11/2017,Sports_celeb,@AntDavis23,"RT @Timfraz23: ""I wonder if Tim remembers that I still owe him money"" 😂😂😂 @AntDavis23 https://t.co/byptDSZth6" +02/10/2017,Sports_celeb,@AntDavis23,I got you! https://t.co/ff73PdDyEi +02/03/2017,Sports_celeb,@AntDavis23,Big men gonna get it again! #Back2Back https://t.co/ozus9xcs7y +01/30/2017,Sports_celeb,@AntDavis23,Had the chance to see @JohnWickMovie. It's in theaters February 10th! #JohnWick2 https://t.co/yoV9Rzub4E +01/27/2017,Sports_celeb,@AntDavis23,"RT @BleacherReport: We're taking you back in the day with the @NikeBasketball family. + +From Nike Basketball and B/R, this is #SmallBall. Ne…" +01/20/2017,Sports_celeb,@AntDavis23,Got to check out @xxxMovie a day early before it hits theaters tomorrow! https://t.co/ZaLlLigN9T +01/20/2017,Sports_celeb,@AntDavis23,THANK YOU to the voters! I'm truly honored and can't wait to represent the @PelicansNBA and the city of New Orleans at #NBAAllStar +01/19/2017,Sports_celeb,@AntDavis23,A little BTS from my last @redbull shoot #TBT https://t.co/aJeZELboLp +01/17/2017,Sports_celeb,@AntDavis23,RT @Timfraz23: @AntDavis23 #NBAVOTE +01/17/2017,Sports_celeb,@AntDavis23,@MrCraw4D never was a bears fan +01/16/2017,Sports_celeb,@AntDavis23,Nothing else to say! https://t.co/9JqhaCExtc +01/10/2017,Sports_celeb,@AntDavis23,Kick game strong 💪🏾 https://t.co/vB748Tr2e8 +01/10/2017,Sports_celeb,@AntDavis23,"@redbull lol, thanks fam!" +01/01/2017,Sports_celeb,@AntDavis23,Happy 2017! +12/25/2016,Sports_celeb,@AntDavis23,Merry Christmas! https://t.co/OLpWc8zLXd +12/23/2016,Sports_celeb,@AntDavis23,Blessed to be able to give back this holiday season! #NBACares https://t.co/DrgLrP0Dnf +12/16/2016,Sports_celeb,@AntDavis23,RIP Craig Sager! https://t.co/OfUcsdm3bT +12/14/2016,Sports_celeb,@AntDavis23,RT @redbull: So THAT'S how you go hard in the paint... @AntDavis23 https://t.co/tAibCJJyLu https://t.co/9CtHW0LbF6 +12/13/2016,Sports_celeb,@AntDavis23,"RT @PelicansNBA: .@AntDavis23's view when dunking! + +More @Spectacles snaps 👻: PelicansNBA #Pelicans https://t.co/6GnIfC9KOh" +12/12/2016,Sports_celeb,@AntDavis23,"Back in NOLA...Big game tomorrow night vs GSW, we need the whole city behind us. Retweet for a chance to win 2 tickets on me #WinTheNight" +11/30/2016,Sports_celeb,@AntDavis23,No days off #GivesYouWings https://t.co/3tSyHoef9q +11/24/2016,Sports_celeb,@AntDavis23,Happy Thanksgiving everyone! +11/22/2016,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Bros. +#WinTheNight https://t.co/PU3AjC6p4o" +11/21/2016,Sports_celeb,@AntDavis23,Thankful my family and I had the opportunity to serve Thanksgiving dinner last night at the New Orleans Mission! https://t.co/tERs9X3y4d +11/21/2016,Sports_celeb,@AntDavis23,RT @marciholstein: Another Pels win with a celebratory shot by @AntDavis23 !! @PelicansNBA #flockup #letsgopels https://t.co/VRepLe4rg0 +11/13/2016,Sports_celeb,@AntDavis23,Enjoyed seeing #BleedForThis the other night. Make sure you check it out next Friday! https://t.co/UfkalAyYK0 +11/11/2016,Sports_celeb,@AntDavis23,Thank you Veterans! Appreciate all you do for our country. https://t.co/hyuqW3zVIs +10/31/2016,Sports_celeb,@AntDavis23,RT @PelicansNBA: Do the Tony! @redbull https://t.co/8lgsnQ9v9w +10/28/2016,Sports_celeb,@AntDavis23,#Blocked @SportsCenter https://t.co/BY4yupg6HY +10/28/2016,Sports_celeb,@AntDavis23,"NOLA, we need y'all hyped tonight! If you want to come to the game, I got a pair of tix for you. Just RT for a chance to win. #WinTheNight" +06/30/2018,Sports_celeb,@KarlTowns,"RT @Lamborghini: .@NBPA stars attend @SDABocconi, learning about the iconic branding and super sports car design of Lamborghini. Among them…" +06/29/2018,Sports_celeb,@KarlTowns,@TreyLyles Stuck on emotionless. Like sheesh +06/28/2018,Sports_celeb,@KarlTowns,"RT @TheNBPA: Kids see KAT sometimes. + +#IBA2018 https://t.co/UPlcH47hVA" +06/27/2018,Sports_celeb,@KarlTowns,"Just for clarity, I won this golf tournament as well. @KyleRudolph82 can back this ⛳️🏌🏽‍♂️ https://t.co/hjLlUrSTCE" +06/25/2018,Sports_celeb,@KarlTowns,@Kawahine_ Could be worse I guess 🤷🏽‍♂️ +06/25/2018,Sports_celeb,@KarlTowns,RT @Kawahine_: My boyfriend is naked all over the internet.... welp. +06/25/2018,Sports_celeb,@KarlTowns,😳👀 +06/20/2018,Sports_celeb,@KarlTowns,RT @espn: The 10th annual Body Issue drops June 25 ... and we've got the full roster of athletes right here. https://t.co/1XyfnOBntk +06/20/2018,Sports_celeb,@KarlTowns,"@jojo_6290 I must say, I’m pretty pumped 😁" +06/19/2018,Sports_celeb,@KarlTowns,KENTUCKY also has Kevin Knox.....FYI. #BBN https://t.co/NUcO50E1v3 +06/18/2018,Sports_celeb,@KarlTowns,Senseless. +06/17/2018,Sports_celeb,@KarlTowns,"Happy Father’s Day to all the loving and involved fathers out there, especially mine!" +06/16/2018,Sports_celeb,@KarlTowns,@GopherWBB @Lindsay_13 @Lindsay_13 is special. @GopherWBB hit the lottery. +06/14/2018,Sports_celeb,@KarlTowns,"👀👀👀 @garyvee is up to something....again lol +https://t.co/N6Qt73KM8k" +06/10/2018,Sports_celeb,@KarlTowns,@FloTrack @GoSydGo 🐐🐐🐐 +06/08/2018,Sports_celeb,@KarlTowns,@StJoesMetuchen @Marq_Towne5 @StJoesMetBBall @Marq_Towne5 legend +06/07/2018,Sports_celeb,@KarlTowns,"Whatever the mind of man can conceive and believe, it can achieve." +06/07/2018,Sports_celeb,@KarlTowns,"RT @TheNBPA: (9 of 12). + +The NBPA Most Respected Award + +Respect the O.G. Congrats @mrvincecarter15!! + +@andrewtarcher pays homage to the v…" +06/06/2018,Sports_celeb,@KarlTowns,Never settle for normalcy. +06/06/2018,Sports_celeb,@KarlTowns,RT @MalcolmJenkins: #TheFightContinues https://t.co/QWDdvZgQNL +06/04/2018,Sports_celeb,@KarlTowns,Already spent 6 months in day school.. I for sure don’t want to be in night school!.. Thnx @KevinHart4real 🙄… https://t.co/iS2tiFNrJX +06/04/2018,Sports_celeb,@KarlTowns,RT @NightSchool: You ready for Finals? Meet the new Dream Team. #NightSchool stars @KevinHart4real and @TiffanyHaddish team up with @aldrid… +06/04/2018,Sports_celeb,@KarlTowns,RT @Scott_Charlton: Look at the love between two of my most talented sons. https://t.co/JPhQdS4jE5 +06/04/2018,Sports_celeb,@KarlTowns,RT @AlanGoldsher: The @KevinHart4real / @KarlTowns / @TiffanyHaddish / @DevinBook / @aldridge_12 commercial was arguably the best part of t… +06/01/2018,Sports_celeb,@KarlTowns,@THEwillieCS15 😂😂😂 +06/01/2018,Sports_celeb,@KarlTowns,What will you do to solidify your greatness today? +06/01/2018,Sports_celeb,@KarlTowns,🤔🤔🤔 +05/31/2018,Sports_celeb,@KarlTowns,All love since day 1 ting ✊🏽 https://t.co/6Qa9B1apDP +05/28/2018,Sports_celeb,@KarlTowns,Thank you to all the courageous men and women who provide us with the freedom to chase the American Dream. Thank yo… https://t.co/MvsJNZm1wK +05/28/2018,Sports_celeb,@KarlTowns,Psalm 119:4-5 🙏🏽 +05/27/2018,Sports_celeb,@KarlTowns,“The value of a man should be seen in what he gives and not in what he is able to receive” +05/26/2018,Sports_celeb,@KarlTowns,@DevinBook 🗣🗣🗣 +05/24/2018,Sports_celeb,@KarlTowns,RT @thatnegus_sb: https://t.co/sJqUMtUZIY +05/17/2018,Sports_celeb,@KarlTowns,"Hands on with #BlackOps4 and these MP maps are nice. @swipathefox and I held it down, but we know who is the best.… https://t.co/tGe7qpFv9m" +05/13/2018,Sports_celeb,@KarlTowns,"Happy Mother’s Day to all the beautiful women holding it down not just today, but every day!" +05/13/2018,Sports_celeb,@KarlTowns,Wowwwwww!!!!!! #LinaresLoma +05/13/2018,Sports_celeb,@KarlTowns,It’s go time! #LinaresLoma +05/12/2018,Sports_celeb,@KarlTowns,"Every bucket, every board, starts right here. #GatoradePartner https://t.co/F9MVnCJCg8" +05/11/2018,Sports_celeb,@KarlTowns,Thank you @casper for the gift https://t.co/qJROGBJAlx +05/09/2018,Sports_celeb,@KarlTowns,@NoahJ456 😂😂😂😂😂😂 +05/05/2018,Sports_celeb,@KarlTowns,"A Living Legend. Congrats to Dominican Republic’s Finest and my favorite baseball player @PujolsFive on 3,000 Hits.… https://t.co/DMHgXxcvXS" +05/05/2018,Sports_celeb,@KarlTowns,Looking forward to meeting some young @Timberwolves fans this July at my annual Youth 🏀 @ProCamps! Click 👇 for more… https://t.co/tCBywxPMWa +05/03/2018,Sports_celeb,@KarlTowns,"RT @Gatorade: The competition is over. #GStatus goes to @KarlTowns 👏. For his hustle and @jaytatum0’s in the NBA Playoffs, we’re donating $…" +04/30/2018,Sports_celeb,@KarlTowns,HBD Legend 💵💵💵 https://t.co/8rGdbsc0so +04/29/2018,Sports_celeb,@KarlTowns,"@STMAGBB @Timberwolves @JCrossover The man, the myth, the legend @JCrossover" +04/28/2018,Sports_celeb,@KarlTowns,@DrizoBeats @Bengals BIG TIME!!! +04/24/2018,Sports_celeb,@KarlTowns,Welcome home @MeekMill ✊🏽✊🏽✊🏽 +04/20/2018,Sports_celeb,@KarlTowns,@Kawahine_ You deserve it. Your 1/1 ❤️ +04/17/2018,Sports_celeb,@KarlTowns,"@Profgampo 🤫🤫🤫. They’re not ready for all that sauce yet. + +P.S. “No” and “Minneapolis” are my favorite tracks on #PookieBaby 👍🏽" +04/17/2018,Sports_celeb,@KarlTowns,"So @BodegaBAMZ and @jimjonescapo blessed us last week, and now @JColeNC wants to bless us this week. WHOLE LOTTA BLESSINGS GOING AROUND!" +04/15/2018,Sports_celeb,@KarlTowns,@RealJohnGray @OWNTV @Oprah @Grayceeme @Oprah @RealJohnGray @Grayceeme Time and Place! Free lessons for @OWNTV +04/14/2018,Sports_celeb,@KarlTowns,"✅ Positive Energy +❌ Negative Energy" +04/13/2018,Sports_celeb,@KarlTowns,"@Gatorade @jaytatum0 It’s on. This year I’m earning my #Gstatus #GatoradePartner +u!!" +04/12/2018,Sports_celeb,@KarlTowns,My road to the #NBAPlayoffs started on the court my dad built me by hand. Rewind it back with me. #GatoradePartner https://t.co/aylahMcAXK +04/12/2018,Sports_celeb,@KarlTowns,RT @JonKrawczynski: https://t.co/YC4XAT7Kka +04/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: WE BACK. + +PLAYOFFS. #AllEyesNorth https://t.co/2yY2uVRgTW" +04/12/2018,Sports_celeb,@KarlTowns,#AllEyesNorth +04/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: The lights get brighter. +The pressure gets tighter. + +We're back. #AllEyesNorth https://t.co/3Wq2XW4lFl" +04/09/2018,Sports_celeb,@KarlTowns,Spread Love ❤️ +04/09/2018,Sports_celeb,@KarlTowns,Amazing day streaming and playing @FortniteGame with you guys! Join me on discord at https://t.co/TOL6qn0DxJ and be part of the community 🦁 +04/09/2018,Sports_celeb,@KarlTowns,@Matty__W My bad fam 😂 +04/08/2018,Sports_celeb,@KarlTowns,L I V E ! https://t.co/iDk5mwrXUW +04/07/2018,Sports_celeb,@KarlTowns,@UKCoachCalipari I BEEN TELLING YOU THIS! 😂 +04/04/2018,Sports_celeb,@KarlTowns,@NoahJ456 .......... +04/04/2018,Sports_celeb,@KarlTowns,Sending my thoughts and prayers to everyone @YouTube 🙏🏽🙏🏽🙏🏽 +04/03/2018,Sports_celeb,@KarlTowns,Amazing stream tonight with @BenSimmons25 playing @PUBATTLEGROUNDS. Hope you guys enjoyed it and S/O to @OpTic7Teen… https://t.co/mjex7c9ZIP +04/03/2018,Sports_celeb,@KarlTowns,RT @DMiranda04: all i know is @KarlTowns would never leave me like @BenSimmons25 just did https://t.co/wOfQjHY0ZQ +04/03/2018,Sports_celeb,@KarlTowns,"@PUBATTLEGROUNDS, we need assistance!!!! Custom game needed for @BenSimmons25 and I. THE FANS WANT TO PLAY!!!" +04/03/2018,Sports_celeb,@KarlTowns,"About to stream some @FortniteGame on Twitch! Join the fun at https://t.co/MOjyzIhNzj and while you’re at it, join… https://t.co/a1GD5LcO8f" +04/01/2018,Sports_celeb,@KarlTowns,Happy Easter! Hope today is full of love and blessings for everyone. +04/01/2018,Sports_celeb,@KarlTowns,"An amazing effort and season by @RamblersMBB. To my brother @Marq_Towne5, you couldn’t have made me any prouder. Go… https://t.co/Fu5gRCFngk" +03/31/2018,Sports_celeb,@KarlTowns,LETSSSS GOOOOO @RamblersMBB!!! ONE MORE HALF! +03/31/2018,Sports_celeb,@KarlTowns,You know I’m rocking with @Marq_Towne5 and @RamblersMBB. LETS GET THIS W! +03/29/2018,Sports_celeb,@KarlTowns,Soooooo @Kawahine_ can I play PUBG??? +03/27/2018,Sports_celeb,@KarlTowns,Control Your Happiness. +03/26/2018,Sports_celeb,@KarlTowns,RT @The_Fourth_Wade: I don’t get these phrases/articles coming out that @Marq_Towne5 was overlooked. Y’all the ones that overlooked it! Y’a… +03/26/2018,Sports_celeb,@KarlTowns,Prayers out to Zeke Upshaw’s family 🙏🏽🙏🏽🙏🏽 +03/23/2018,Sports_celeb,@KarlTowns,"RT @ChrisRyan_NJ: Karl-Anthony Towns: 1st overall pick in 2015 NBA Draft +Wade Baldwin: 17th overall pick in 2016 +Marques Townes: Just put L…" +03/23/2018,Sports_celeb,@KarlTowns,@Marq_Towne5= LOYOLA LEGEND +03/22/2018,Sports_celeb,@KarlTowns,😂😂😂 @Kawahine_ https://t.co/GRNNUO5BJP +03/17/2018,Sports_celeb,@KarlTowns,@KentuckyMBB 🐇🐇🐇 +03/16/2018,Sports_celeb,@KarlTowns,Make each day your masterpiece. +03/15/2018,Sports_celeb,@KarlTowns,Let’s go @Marq_Towne5!!! +03/15/2018,Sports_celeb,@KarlTowns,Had some fun answering the questions you guys have been asking me. Part 2 coming soon https://t.co/xI9xU3DkTz +03/15/2018,Sports_celeb,@KarlTowns,Soooooooooo @Logic301......... 🤔 +03/15/2018,Sports_celeb,@KarlTowns,@trvisXX was straight comedy tonight 😂 +03/15/2018,Sports_celeb,@KarlTowns,@Ninja is just different at @FortniteGame than the rest of us. This is a fact 💯 +03/15/2018,Sports_celeb,@KarlTowns,@Ninja and @Drake really got the world in there hands right now 😂 +03/13/2018,Sports_celeb,@KarlTowns,So fresh and so clean w/ those #TidePods 👌 @KyleRudolph82 @Cubfoods https://t.co/8xnP1bIcF3 +03/12/2018,Sports_celeb,@KarlTowns,RT @beatsbydre: Rise to the occasion. @KarlTowns https://t.co/Rm6UZW4WTD +03/12/2018,Sports_celeb,@KarlTowns,😂😂😂 https://t.co/fDqPsXi5db +03/11/2018,Sports_celeb,@KarlTowns,The world is now right. @Kawahine_ has watched The Book of Eli. #SpreadTheWord +03/11/2018,Sports_celeb,@KarlTowns,The fact @Kawahine_ hasn’t seen The Book of Eli is troubling! This must be changed! +03/05/2018,Sports_celeb,@KarlTowns,Be Different! +03/05/2018,Sports_celeb,@KarlTowns,"RT @Nike: .@SerenaWilliams has proven time and time again, there’s no wrong way to be a woman. #UntilWeAllWin https://t.co/aAMZv9IjCW" +03/05/2018,Sports_celeb,@KarlTowns,“If you have only one smile in you give it to the people you love.” -Maya Angelou +03/04/2018,Sports_celeb,@KarlTowns,😱😱😱😱 #WilderOrtiz +02/28/2018,Sports_celeb,@KarlTowns,RT @DevinBook: Aye @UKCoachCalipari can I finally start tonight??? Lol #BBN https://t.co/lMOfwclbm6 +02/28/2018,Sports_celeb,@KarlTowns,@DevinBook @UKCoachCalipari 😂😂😂😂😂 +02/28/2018,Sports_celeb,@KarlTowns,"It’s been a long time coming my brothers, Senior Night is finally upon us 😂 #BBN https://t.co/h3bsoNeXBo" +02/24/2018,Sports_celeb,@KarlTowns,RT @G_Wade05: God’s Plan 🙏🏾‼️ https://t.co/DIp2pY6Z30 +02/23/2018,Sports_celeb,@KarlTowns,"Honestly, this doesn’t shock me at all about the @NCAA. https://t.co/TM2Jn9zIMz" +02/22/2018,Sports_celeb,@KarlTowns,@yung_gravy Woahhhh! (Gravy Voice) +02/22/2018,Sports_celeb,@KarlTowns,Need your guys help making this YouTube video! Send in your questions to have a chance to be part of my Q/A YouTube video. +02/21/2018,Sports_celeb,@KarlTowns,Really proud of my parents foundation. This is big time! https://t.co/JdJm8RDeFJ +02/21/2018,Sports_celeb,@KarlTowns,@yung_gravy Only the real ones are on the gravy train 🍯 +02/21/2018,Sports_celeb,@KarlTowns,RT @nbacares: .@Timberwolves @KarlTowns helps to unload a diaper truck for distribution to families in need at @baby2baby during #NBACares… +02/21/2018,Sports_celeb,@KarlTowns,"Still keeping it NICE @Cubfoods w/ @kylerudolph82 and Calvin 😂😂😂 #MinnesotaNice +https://t.co/hsLGJsgXP7" +02/19/2018,Sports_celeb,@KarlTowns,✌🏾LA. Had a great ASW riding in style with @Lyft and those #FlyWhips. Until next time. #FlyWhip #LyftLA #ad https://t.co/k2GWPaUkSX +02/18/2018,Sports_celeb,@KarlTowns,@JoelEmbiid 😏😏😏 +02/18/2018,Sports_celeb,@KarlTowns,"Told @DwyaneWade, my brotha @DevinBook is a KILLER!!!" +02/18/2018,Sports_celeb,@KarlTowns,Hey @spg members–Use your Starpoints to redeem experiences like bowling with me at #NBAAllStar. Check it out:… https://t.co/to2o86xsd7 +02/17/2018,Sports_celeb,@KarlTowns,I’m ridin’ in style all weekend. Hit @Lyft for a chance to ride in a #FlyWhip like me #ASW #LyftFlyWhip https://t.co/zhvWPdYs5F +02/16/2018,Sports_celeb,@KarlTowns,Don’t miss the chance to kick it with me during NBA All-Star 2018! I’ll be at the #KiaAllStarLoft at 1200 S. Hope Street on Saturday! +02/14/2018,Sports_celeb,@KarlTowns,My prayers go out to all the families affected by today's tragic Florida school shooting. How many more devastating… https://t.co/Mb9LhG6ANY +02/13/2018,Sports_celeb,@KarlTowns,Headed to LA this weekend? Enter to win a Ride Along with me in a @Lyft #FlyWhip during ASW #ad… https://t.co/PLf0Gv0kG4 +02/11/2018,Sports_celeb,@KarlTowns,@BdotAdot5 @DwyaneWade 😂😂😂😂 +02/09/2018,Sports_celeb,@KarlTowns,Check out my official custom @CallOfDuty emblem. #CODWWII #CallofDutyPartner https://t.co/sJgXEsTsgm +02/08/2018,Sports_celeb,@KarlTowns,"Everyone talking about how the Cavs are playing MyGM in real life with force trade on , but I’m here watching the… https://t.co/hiBtS7Jf3L" +02/07/2018,Sports_celeb,@KarlTowns,🦅🦅🦅 https://t.co/8nI4es8t2c +02/07/2018,Sports_celeb,@KarlTowns,"RT @PlayersTribune: ICYMI: Guest photographer @KarlTowns hit the sidelines for the @Eagles #SuperBowl LII win. + +For more of his photos: htt…" +02/07/2018,Sports_celeb,@KarlTowns,This is getting crazy! Prayers all the way up for my guy @kporzee. I know he’s going to come back better than ever. +02/06/2018,Sports_celeb,@KarlTowns,"Play for the front of the jersey, not the back @KentuckyMBB. #EmbraceSacrifice https://t.co/jicNey3fUZ" +02/06/2018,Sports_celeb,@KarlTowns,@GassyMexican Would be my honor to have you at the game @GassyMexican +02/05/2018,Sports_celeb,@KarlTowns,@JonKrawczynski I’m in his head @JonKrawczynski!!!! +02/05/2018,Sports_celeb,@KarlTowns,@JonKrawczynski HE KNOWSSSSSSSSS!!!!! 🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,🦅 talk +02/05/2018,Sports_celeb,@KarlTowns,I don’t think Thibs is ready to hear what I got to say 🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,Blood pressure it wayyyy too high right now +02/05/2018,Sports_celeb,@KarlTowns,On the sidelines for @PlayersTribune at the #superbowl. #FreeMeekMill https://t.co/T5iyy3JG0W +02/04/2018,Sports_celeb,@KarlTowns,RT @PlayersTribune: DON'T MISS OUR SIDELINE #SUPERBOWL PHOTOGRAPHER @KARLTOWNS'S PICS. HE'S TALLER THAN THE OTHER PHOTOGRAPHERS AND CAN GET… +02/03/2018,Sports_celeb,@KarlTowns,@Swiftor 😂😂😂 +02/02/2018,Sports_celeb,@KarlTowns,RT @SLAMonline: KAT goes Super Saiyan. https://t.co/gbc1mSXr1W +02/01/2018,Sports_celeb,@KarlTowns,RT @verizon: Our Explorer Lab landed at Franklin Middle School for an immersive learning experience and surprise visit from @KarlTowns & @T… +01/31/2018,Sports_celeb,@KarlTowns,"The basketball world lost a good one today. R.I.P. to Rasual Butler, one of the realest people I ever played with.… https://t.co/4l5RIT1RIw" +01/31/2018,Sports_celeb,@KarlTowns,Hey Minneapolis! I'll be @CubFoods Maple Grove on Friday 5-6pm helping fans prep for their SB parties. +01/27/2018,Sports_celeb,@KarlTowns,All prayers up for big fella @boogiecousins 🙏🏽🙏🏽🙏🏽 +01/26/2018,Sports_celeb,@KarlTowns,I see you cuz @The_Fourth_Wade 👀 #family https://t.co/dvIu6hmKSG +01/23/2018,Sports_celeb,@KarlTowns,Thoughts and prayers with everyone in Marshall County 🙏🏽 +01/22/2018,Sports_celeb,@KarlTowns,RT @kobebryant: Getting there wasn’t the goal @Eagles let’s finish the job #focus #superbowl +01/22/2018,Sports_celeb,@KarlTowns,"Congrats Vikings on a great season as well - much love, Minneapolis! But, I gotta go with the Birds, born and bred a fan #FlyEaglesFly 🦅" +01/22/2018,Sports_celeb,@KarlTowns,"Thibs: “Hello...” + +Foles: “Your Next.” https://t.co/ffs3j9PYr0" +01/19/2018,Sports_celeb,@KarlTowns,Helping Calvin keep his 🏈 party 💯 with wings @Cubfoods @KyleRudolph82 #MinnesotaNice https://t.co/8UUGs9I2xu +01/18/2018,Sports_celeb,@KarlTowns,I finally made a @YouTube channel! Check it out for all access to my life on & off the court & more. Subscribe & e… https://t.co/HzwlErqcn0 +01/16/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: RETWEET IF YOU LIKE BBQ CHICKEN! + +@KarlTowns #NBAVOTE https://t.co/Xb5Rfvs4Fx" +01/16/2018,Sports_celeb,@KarlTowns,RT @Teeqo: #NBAVOTE @karltowns +01/16/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Hey Canada, retweet this. 🇨🇦 + +Andrew Wiggins #NBAVote https://t.co/dlv3TPH3IO" +01/15/2018,Sports_celeb,@KarlTowns,"“We must learn to live together as brothers or perish together as fools.” + +Let this day be a reminder to have love… https://t.co/JOVY8VXGeR" +01/14/2018,Sports_celeb,@KarlTowns,RT @NBA2K: RETWEET TO VOTE FOR #TEAM2K'S Devin Booker! There's only 1 Day left to cast your votes! #NBAVote @DevinBook https://t.co/hpiMEzZ… +01/14/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Have you done your part to get the Wolves to the All-Star game today? + +Retweet this to cast an official #NBAVote for @…" +01/14/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Jimmy has some legit reasons to vote KAT into the All-Star Game 😂 + +RT to #NBAVOTE @KarlTowns! https://t.co/8HDbdiERWe" +01/14/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Only a few days left to #NBAVOTE Jimmy Butler! + +Help get him to the All-Star Game with a RETWEET! https://t.co/d9dDqnk7wY" +01/14/2018,Sports_celeb,@KarlTowns,🦅 +01/13/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Have you done your part to get the Wolves to the All-Star game today? + +Retweet this to cast an official #NBAVote for @…" +01/13/2018,Sports_celeb,@KarlTowns,Words cannot describe the relief my family and I feel that the alarm in Hawaii was false. My girlfriend was born an… https://t.co/FUTqyYCKeF +01/13/2018,Sports_celeb,@KarlTowns,@RyyGaming https://t.co/SM5kDMYB1u +01/13/2018,Sports_celeb,@KarlTowns,@RyyGaming 😂😂😂 +01/13/2018,Sports_celeb,@KarlTowns,@Mike_Mallory33 @Timberwolves You the man ✊🏽 +01/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: 500,000 RTS = 500,000 VOTES + +Help send @KarlTowns to the NBA All-Star Game! #NBAVOTE https://t.co/sIVnIwejWg" +01/12/2018,Sports_celeb,@KarlTowns,"RT @RichardBazil: All Dominicans 🇩🇴 want to see @KarlTowns in the NBA All-Star Game, now it's time to send him there. + +#NBAVote + +Today, eac…" +01/12/2018,Sports_celeb,@KarlTowns,RT @Rupp_Arena: RT to vote for @KarlTowns to go to @NBAAllStar! Votes count for DOUBLE today! #NBAVote #BBN https://t.co/hr7HbWGXeO +01/11/2018,Sports_celeb,@KarlTowns,RT @NBA2K: RETWEET TO VOTE FOR #TEAM2K's Karl-Anthony Towns! #NBAVote @KarlTowns https://t.co/ETmINkpnt7 +01/10/2018,Sports_celeb,@KarlTowns,RT @KentuckyMBB: Karl-Anthony Towns #NBAVote https://t.co/S9O651ZWag +01/10/2018,Sports_celeb,@KarlTowns,RT @Scott_Charlton: Offensive foul on Wenyen Gabriel. https://t.co/YIZnwkLoD6 +01/10/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: After last night's performance it's had to envision the All-Star game without @KarlTowns! + +Retweet this to cast an offic…" +01/09/2018,Sports_celeb,@KarlTowns,RT @Timberwolves: TYUS. JUST. DID. THAT. https://t.co/W9HwfLIgy1 +01/09/2018,Sports_celeb,@KarlTowns,@JustinPatton17 ✊🏽✊🏽✊🏽 +01/09/2018,Sports_celeb,@KarlTowns,RT @JustinPatton17: Big bro @KarlTowns has my #NBAvote go head boy!! 🐺 +01/09/2018,Sports_celeb,@KarlTowns,That man @1Tyus cut from a different cloth #AllEyesNorth +01/08/2018,Sports_celeb,@KarlTowns,RT @tweetdavebenz: Get ready for tonight’s Wolves-Cavs tilt by retweeting this to cast your official #NBAVote for @KarlTowns to be in the A… +01/08/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: If you don’t #NBAVOTE for @KarlTowns, you’re taking a big L ⤵️ https://t.co/rzWDZvhjdN" +01/08/2018,Sports_celeb,@KarlTowns,RT @tweetdavebenz: Make Sunday a fun day by retweeting this to cast an official #NBAVote to get @KarlTowns to the All Star game! +01/07/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️⭐️⭐️⭐️⭐️ + +If all our followers retweet this, Jimmy Butler will be in the lead to be the West All-Star Captain! #NBAVOTE…" +01/07/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RETWEET TO #NBAVOTE FOR KARL-ANTHONY TOWNS ⭐️ + +☑️ #1 Overall Draft Pick +☑️ NBA Rookie of the Year +☑️ League leader in…" +01/05/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ KARL-ANTHONY TOWNS #NBAVOTE ⭐️ + +IF YOU CAN READ THIS, RETWEET IT. https://t.co/NQiK7eTN3V" +01/04/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Don’t let this Thursday slip by without voting @KarlTowns to the All-Star game. + +Retweet this to cast an official #NBA…" +01/03/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: .@KarlTowns customized #NBAKicks throughout this season! Wonder what his All-Star kicks would look like? + +RT so we can f…" +01/02/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RT to vote for @KarlTowns ⭐️ + +#NBAVOTE https://t.co/SrBckQpqnc" +01/02/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RT to vote for @22wiggins ⭐️ + +#NBAVOTE https://t.co/gt6QXJMDUb" +01/01/2018,Sports_celeb,@KarlTowns,"Happy New Years to everyone! Hope 2018 brings everyone blessings, positivity, and success! God bless!" +01/01/2018,Sports_celeb,@KarlTowns,RT @Timberwolves: Only a few hours left in 2017 and to DOUBLE the vote for your favorite Wolves! 👇👇👇 https://t.co/ZMP2XpZxtC +01/01/2018,Sports_celeb,@KarlTowns,"RT @JCrossover: ""@HoopsYo: @JCrossover What do you think of Tyus' play recently?""--always great. Love him as a teammate! @1Tyus is my guy" +12/31/2017,Sports_celeb,@KarlTowns,"@Realjockwasher @Kickstradomis Lmao Clayton, GO HOME!!! 😂" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @KarlTowns #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/q1WGlOIwrm" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @22wiggins #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/BolNm97BeX" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @JimmyButler #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/iT1DwuyeDs" +12/31/2017,Sports_celeb,@KarlTowns,RT @tweetdavebenz: .@JimmyButler #NBAVote +12/30/2017,Sports_celeb,@KarlTowns,"RT @RanGuy7: @Timberwolves if I can get to 1000 RTs, we can help @KarlTowns become an All-Star and I’ll give him this painting! 1 Retweet =…" +12/30/2017,Sports_celeb,@KarlTowns,"RT @ThisIsMarlena: Used up my last sheet of paper on this watercolor painting of @KarlTowns center for the @Timberwolves #AllEyesNorth + +❄️…" +12/29/2017,Sports_celeb,@KarlTowns,@DevinBook 🔵⚪️ +12/29/2017,Sports_celeb,@KarlTowns,RT @Timberwolves: ⭐️ Retweet to send @KarlTowns to the All-Star Game! #NBAVOTE ⭐️ https://t.co/v9oCIXTdcT +12/28/2017,Sports_celeb,@KarlTowns,"RT @ktjoh: Get out and vote for your favorite @Timberwolves for the All Star Game!!! +Karl-Anthony Towns @KarlTowns #NBAVote #AllEyesNorth…" +12/28/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: 🚨 VOTE FOR YOUR WOLVES! 🚨 + +⭐️ Tweet/RT/Reply with player’s first & last name or Twitter handle, with the hashtag #NBAVote…" +12/27/2017,Sports_celeb,@KarlTowns,RT @BryGuy3597: We need to get this man in an all star game. RT to send @KarlTowns to the all star game #NBAVote https://t.co/9nMCgnb4LM +12/26/2017,Sports_celeb,@KarlTowns,Hope everyone had a blessed and love filled Christmas. +12/26/2017,Sports_celeb,@KarlTowns,RT @BUZZ1810: @KarlTowns can my lil man get a retweet from his favorite @NBA player on Christmas? He’s lives in NC but pulls for the @Timbe… +12/21/2017,Sports_celeb,@KarlTowns,"RT @SneadsbyRee: I’ve got #my5 @nba @NBAonTNT East and West All Stars! + +Did YOU vote?! https://t.co/esC7dFAzg4" +12/21/2017,Sports_celeb,@KarlTowns,RT @original_kmac: #NBAAllStar voting has started on https://t.co/JXygubat9u- time to start things off with @Timberwolves @KarlTowns leadin… +12/18/2017,Sports_celeb,@KarlTowns,Nothing but the ultimate respect for the one and only @kobebryant on his day. #Ko8e24 +06/30/2018,Sports_celeb,@JohnWall,RT @WashMystics: Thank you @JohnWall for hooking it up! #SummerOfSeparation #5Deep #WallWay #TogetherDC #DCFamily https://t.co/Iq6dDyyHrM +06/30/2018,Sports_celeb,@JohnWall,RT @TyBigShots: One of the nations hottest events rite before July 2018 Live Period #BIGSHOTS @TeamWallGR @TeamWallElite @JohnWall @CoachK… +06/30/2018,Sports_celeb,@JohnWall,My guy RT @UKDeWaynePeevy: Great hanging out and catching up with one of my boys today @JohnWall #lafamilia #weareuk https://t.co/CLbOfRg7P7 +06/25/2018,Sports_celeb,@JohnWall,RT @CoachK_Williams: Building the Brand.... https://t.co/bDVzJ9G8YJ +06/21/2018,Sports_celeb,@JohnWall,"RT @NBATV: Players that @CollinYoungBull compares his game to? + +@JohnWall, @russwest44 and @EBled2. + +More with @treykerby ahead of the 20…" +06/21/2018,Sports_celeb,@JohnWall,"RT @dzanderTraining: @johnwall +Summer of Separation! #nba #2018… https://t.co/tOeLa0ermJ" +06/19/2018,Sports_celeb,@JohnWall,"RT @UKCoachCalipari: Really happy for @AntDavis23, a Hall of Fame player and person. Loved seeing him this weekend and can't wait to celebr…" +06/18/2018,Sports_celeb,@JohnWall,RT @ItsNot_BRANDON: 💯💯💯 https://t.co/fkCPEXfKx0 +06/08/2018,Sports_celeb,@JohnWall,RT @SeTarheels: Yomide Jeje @JWFamFoundation https://t.co/g4WsZL5wFD +06/08/2018,Sports_celeb,@JohnWall,RT @kmmslions: Silent Dance Party for our scholars with PERFECT ATTENDANCE #attendancematters @MayorBowser @JWFamFoundation https://t.co/Dz… +06/08/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Photo boot fun with Principal Stafford and @kmmslions students! #JWFF https://t.co/hvTAADpHk0 +06/08/2018,Sports_celeb,@JohnWall,Congrats @Capitals Stanley Cup Champs‼️ #DCFAMILY #ALLCAPS https://t.co/aMHWbbRXGY +06/01/2018,Sports_celeb,@JohnWall,RT @russwest44: I am always inspired by you Brodie! The #WhyNot Zer0.1 “Masters” is dedicated to all the hard work you put in getting your… +05/24/2018,Sports_celeb,@JohnWall,Yessir‼️ #ALLCAPS Congrats #DCFAMILY https://t.co/lI8bIFSSV7 +05/24/2018,Sports_celeb,@JohnWall,Let’s Gooo Caps🏒 #ALLCAPS +05/22/2018,Sports_celeb,@JohnWall,RT @SB_FATSLUTTY: I remember ridding in dat maybach with @JohnWall vibing It was motivation made me grind harder +05/20/2018,Sports_celeb,@JohnWall,RT @herhoopstats: The @WashWizards superstar @JohnWall is in the house to watch the hometown @WashMystics play this afternoon....he's a big… +05/20/2018,Sports_celeb,@JohnWall,"RT @WashMystics: .@JohnWall with the shades out here reppin. ‘Preciate you #DCFamily. + +#TogetherDC https://t.co/8hurzeKKwL" +05/18/2018,Sports_celeb,@JohnWall,Tough !! RT @C20B: Graduating college with my role model @JohnWall on the grad cap 🎓🏀 #Wizkids #DCFamily https://t.co/vRNpggpzOc +05/17/2018,Sports_celeb,@JohnWall,"RT @WashWizards: #TBT to @JohnWall's pre-draft workout in 2010 👀 + +#WallStar #DCFamily https://t.co/WmdoJbKVpa" +05/16/2018,Sports_celeb,@JohnWall,@FrankieBOS @imNickNames Lol +05/16/2018,Sports_celeb,@JohnWall,@imNickNames Lol im gonna live my life regardless bra and u dnt know wen that pic was took...worry bout urself bra !! +05/13/2018,Sports_celeb,@JohnWall,Sending Happy Mother’s Day wishes to all the MOMS today and… https://t.co/6vUQWVrTSj +05/08/2018,Sports_celeb,@JohnWall,"RT @DMVFollowers: For the first time in decades, a D.C. sports team reaches a conference finals. GO CAPS! https://t.co/KFA9xqDXOB" +05/05/2018,Sports_celeb,@JohnWall,RT @NBCSWizards: Markieff Morris wants to play with the #Wizards for the rest of the career. https://t.co/ArN41fNak4 https://t.co/4WcEPdLeK2 +05/05/2018,Sports_celeb,@JohnWall,"RT @Redskins: ""I think you’ve got to give the kid some credit to say that from where he comes from and what he’s accomplished and what he’s…" +05/05/2018,Sports_celeb,@JohnWall,💯👌🏾RT @mrtonylewisjr: @JohnWall please share https://t.co/BySHMtk0Au +05/05/2018,Sports_celeb,@JohnWall,RT @JCrossover: Crazy part about Rondo is he KNEW he was still this player the last few years when people tried to write him off. He stayed… +05/03/2018,Sports_celeb,@JohnWall,RT @misstonic813: Shoutout to @mrtonylewisjr for his appearance on The Breakfast Club!! #dmv https://t.co/mIuT2E2RE1 +04/13/2018,Sports_celeb,@JohnWall,@SportsCenter my buddy +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Save it to your phones and mark your calendars! 🗓️ + +Our Round 1 Schedule 👀 + +#WizRaptors #DCFamily https://t.co/WlhoHg8x9f" +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: PODCAST: @JohnWall (11:30 mark) on heading into the playoffs, the team's x-factors, his motivation for this season, and mo…" +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: 1 RETWEET = 1 VOTE for #JRNBACOYWAS + +Vote for Jr. Wizards Coach of the Year Marcus Clark to win the Jr. NBA National Coach…" +04/11/2018,Sports_celeb,@JohnWall,RT @neimanmarcus: @JohnWall is gazing over the Potomac while looking good in this @Theory__ look. Photo by Keith E. Morrison for @GQMagazin… +04/09/2018,Sports_celeb,@JohnWall,RT @DMVFollowers: After 5 years of beef @ShyGlizzy and @FATTREL shared the same stage for the first time. #DMVHistory https://t.co/LtOyvYhg… +04/09/2018,Sports_celeb,@JohnWall,"RT @Ballislife: Derrick Rose was unbelievable in high school! + https://t.co/S2IwgNZcDY" +04/08/2018,Sports_celeb,@JohnWall,"RT @seanjohn: We partnered with @WashWizards point guard @JohnWall @JWFamFoundation & provided Sean John Tailored Suits, fragrance, watches…" +04/08/2018,Sports_celeb,@JohnWall,RT @PChenier45: The always gracious & thoughtful @JohnWall Thx buddy! https://t.co/oBUp6cWmzP +04/07/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: Ryan reacted to meeting @JohnWall just like you would 😱 + +His full Make-A-Wish experience: https://t.co/AUL9N9JZLf https://…" +04/02/2018,Sports_celeb,@JohnWall,RT @cmillsnbcs: My guy @JohnWall trying to take too much on the island 🌴 #DCFamily https://t.co/S1nPpTDlTy +03/30/2018,Sports_celeb,@JohnWall,"RT @brkicks: Just a kid from Raleigh + +“FIVE DEEP” pays tribute to @JohnWall and his four childhood friends from North Carolina https://t.co…" +03/30/2018,Sports_celeb,@JohnWall,RT @SoleCollector: #SoleWatch: @JohnWall's Adidas Crazy BYW X PE 🔥 https://t.co/RCNNgQw8qY +03/29/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: ""I'm not supposed to be here."" + +Kemba Walker gives emotional interview after becoming Hornets' all-time leading scorer http…" +03/28/2018,Sports_celeb,@JohnWall,RT @cmillsnbcs: Dear haters of @JohnWall the five time all star explains why you motivate him. https://t.co/t0sGAnI9IB +03/28/2018,Sports_celeb,@JohnWall,RT @YG: THE REAL LAST FOREVER. +03/27/2018,Sports_celeb,@JohnWall,"RT @neimanmarcus: Clean, fresh and crisp. Show them you mean business in this look from @JohnWall in @Moncler. Photo by Keith E. Morrison f…" +03/26/2018,Sports_celeb,@JohnWall,RT @MiltonAChavis: The killa @JohnWall is coming back soon.... on his Brazy J RR wave!! Scary sight! 😤😤 +03/25/2018,Sports_celeb,@JohnWall,RT @marybrown0416: After 12 hours I guess it’s worth it!! #1 #Champs #13u #12u #Deshawn #13 #Devaughn #2 #TeamWall #Grassroots #WallWay @Te… +03/24/2018,Sports_celeb,@JohnWall,"RT @glennconsor: We are all so excited to see @PChenier45 jersey raised to the rafters tonight. Well deserved, well done! @SteveBuckhantz @…" +03/24/2018,Sports_celeb,@JohnWall,👌🏾 https://t.co/bsk3UO1nBy +03/24/2018,Sports_celeb,@JohnWall,"RT @BoysInTheGood: Thanks @JohnWall! +• • • • • +@JWFamFoundation @WashWizards #JohnWall #BoysInTheGood https://t.co/uD78bOzDRR" +03/24/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Tonight’s warm-up shirts 4️⃣5️⃣ + +#Phil45 #DCFamily https://t.co/7ft7RIVDy7" +03/24/2018,Sports_celeb,@JohnWall,Congrats Legend!! https://t.co/QnMV3L7AGv +03/24/2018,Sports_celeb,@JohnWall,RT @WashWizards: Beautiful words from Phil Chenier's children as they congratulate him on being the 5th player in franchise history to have… +03/24/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Great having boysinthegood at tonight’s game! Glad you guys could make it! Keep up the good work! https://t.co/nxKeHlp… +03/24/2018,Sports_celeb,@JohnWall,Congratulations to The Legend Phil Chenier on your jersey retirement! #Phil45 #TheOnly45WeAcknowledgeInDC #DCFamily https://t.co/I0V06JpSc8 +03/24/2018,Sports_celeb,@JohnWall,RT @mikobee813: Thank you @JohnWall for your hospitality! The boys are having a ball and was very excited to meet you! @BaltCoPS @Randallst… +03/24/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Legend and #WallStar. + +@JohnWall congratulates @PChenier45! + +#Phil45 https://t.co/okT8yLOAXU" +03/23/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: DeMarcus Cousins offered to pay for Stephon Clark's funeral, reports @mr_jasonjones https://t.co/ySZYK2FIPY https://t.co/VF…" +03/21/2018,Sports_celeb,@JohnWall,👌🏾 https://t.co/t7nzO3qWvp +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Bid for a chance to meet @Keefmorris & support his FOE Foundation! Get more info & bid here: https://t.co/FMux2P89gW + +#DCF…" +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: @PChenier45 @realtuffjuice NBA Commissioner Adam Silver congratulates Phil, who he calls one of the greatest ambassadors o…" +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: @PChenier45 @realtuffjuice @nilslofgren Love from former Bullet/Wizard and fellow broadcaster @realchriswebber! + +#Phil45…" +03/13/2018,Sports_celeb,@JohnWall,"RT @DefJamRecords: .@YG's SUU WHOOP out now on @vevo! +https://t.co/vQN3MqUmc6 https://t.co/JjTWQsFNT2" +03/11/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: 🚨 Thank you for your submissions! We are no longer accepting submissions. We’ll be in touch! https://t.co/98moPL7Y9K +03/11/2018,Sports_celeb,@JohnWall,"RT @JWFamFoundation: Still time to apply for a prom experience with @seanjohn + #JWFF! #DMV + #Raleigh, NC ONLY! Know of a young man gradua…" +03/09/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/06/2018,Sports_celeb,@JohnWall,RT @SirMeexh: When @JohnWall hit you with this... whole arena be lit 🔥💪🏾 https://t.co/dnoH9n4U7N +03/05/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/04/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/03/2018,Sports_celeb,@JohnWall,RT @GTemp14: These young adults are AMAZING!!!! https://t.co/w2Y3KMfvBu +03/02/2018,Sports_celeb,@JohnWall,"RT @KentuckyMBB: Call to action, #BBN: + +🔵 Catch up on the first two episodes of Inside the Madness +🔵 Get your calendar out and mark the upc…" +03/02/2018,Sports_celeb,@JohnWall,@KentuckyMBB #BBN Lock in +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/02/2018,Sports_celeb,@JohnWall,Congrats! https://t.co/aIqA4JUO6a +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Congratulations to @LYSANDER102 for winning our 1st #JWFFGiveaway! Thanks to everyone that participated! This is just… +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: There is still time to enter our #JWFFGiveaway! Follow @JWFamFoundation & RT for your chance to win this @JohnWall aut… +03/01/2018,Sports_celeb,@JohnWall,"RT @SpecOlympics_DC: Spread the Word, to end the Word! On our Throwback Thursday we take it back a year ago from… https://t.co/N0s8LyCR8A" +03/01/2018,Sports_celeb,@JohnWall,Looking forward to tonight’s game with @specolympics_dc! See yah soon! #TBT to last year’s event. Always one of my… https://t.co/2m06eImkj2 +03/01/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: It’s our first #JWFFGiveaway! Follow @JWFamFoundation & RT for your chance to win this @JohnWall autographed @adidas s… +02/27/2018,Sports_celeb,@JohnWall,RT @SherreeBurruss: Hey! We know that guy! @JohnWall is the default picture for GQ Magazine's latest article on NBA style #WallwiththeShade… +02/27/2018,Sports_celeb,@JohnWall,RT @ZacharyLeonsis: Coolin’ 😎😎😎 @JohnWall https://t.co/LqkI24CKXR +02/27/2018,Sports_celeb,@JohnWall,"RT @DTLR: Hey DC! Come out & meet @neweracap ambassador @johnwall this Saturday, 3/3 at 4pm to launch the #JohnWall Collection – designed b…" +02/27/2018,Sports_celeb,@JohnWall,"Keep up the great work! 👍🏾 RT @BoysInTheGood: @JohnWall Hey, Mr. Wall! We are #BoysInTheGood and we are learning ab… https://t.co/UEhVZRQIzg" +02/26/2018,Sports_celeb,@JohnWall,RT @TrueHoop: Terrible Dan Fegan news. Behind the scenes with him at the 2010 @johnwall draft. https://t.co/a3V684JTQi Later told me that w… +02/25/2018,Sports_celeb,@JohnWall,RT @BigShotsNation: MVP Mom MVP Person. Always a pleasure having Mrs. Wall & the Wall Family at the HoopState Invitational Tournament. An a… +02/25/2018,Sports_celeb,@JohnWall,RT @BigShotsNation: Always a pleasure hosting the HoopState Invitational Tournament with @TeamWallGR @JohnWall program & family & having M… +02/25/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: South African Anglican Cleric. Theologian. Human Rights Activist. Desmond Tutu. #JWFF #BHM https://t.co/ieFmEc8zGg +02/22/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Actor. Director. Producer. Denzel Washington. #JWFF #BHM https://t.co/C1CqnpA4mj +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/UOH66WW91q +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/hfc289LpR3 +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/cVYUYgdUKs +02/18/2018,Sports_celeb,@JohnWall,"RT @HoopDistrictDC: #JohnWall on #LeBronJames and Laura Ingraham: ""We're more than athletes and stuff that is going on in our society and t…" +02/18/2018,Sports_celeb,@JohnWall,💯👌🏾RT @DaTrillStak5: Real ones. No 🧢. Got love for my lil bros. @antdavis23 @johnwall appreciate y’all as always.… https://t.co/521nVgUsVA +02/16/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Lawyer. Writer. Former First Lady of the United States. Michelle Obama. #JWFF #BHM https://t.co/IEMKUYvup1 +02/16/2018,Sports_celeb,@JohnWall,Yessir lil bro keep goin !!RT @taistrickland13: Blessed to receive an offer from Wisconsin! https://t.co/KCgYBgYXDH +02/15/2018,Sports_celeb,@JohnWall,@NipseyHussle https://t.co/6n4HJSFbmI +02/15/2018,Sports_celeb,@JohnWall,Next stop LA! #ASW @neweracap https://t.co/SiIv4YzMnj +02/14/2018,Sports_celeb,@JohnWall,"Facts 💯👌🏾 RT @DrewdotCash: i will, we gone be on the same court soon!!!!" +02/13/2018,Sports_celeb,@JohnWall,Keep fightin bra !!RT @DrewdotCash: How I wake up in the mornings. #LookAlive https://t.co/jbaXMt7JJt +02/12/2018,Sports_celeb,@JohnWall,"RT @abe_squad: ""you wasn't wit me in the gym, you wasn't @JohnWall"" 🔥 https://t.co/DU4u3caZsp" +02/08/2018,Sports_celeb,@JohnWall,"RT @Ballislife: @newsouthpodcast @JumpmanBowman @rod_bridgers @BALLisLIFEeast One of the ACC's best guards, @JumpmanBowman looks up to @joh…" +02/06/2018,Sports_celeb,@JohnWall,"RT @BALLisLIFEeast: So ready for #NoOffSeason vol 2 with @johnwall & the family, coming this summer.. 🔥🔥🔥 https://t.co/dpVhrMndjp" +02/06/2018,Sports_celeb,@JohnWall,"RT @Rachel__Nichols: 🚨DVR ALERT🚨 +@JohnWall is scheduled to pop onto #TheJump tomorrow. (@PaulPierce34 is on the show too, and you KNOW thos…" +02/06/2018,Sports_celeb,@JohnWall,Think you got handles??? Show em off and win a trip to NBA All-Star 2018 complements of @KumhoTireUSA! All you gott… https://t.co/CujRAfYPIu +02/06/2018,Sports_celeb,@JohnWall,Tough bra !! RT @Scott_lewis_23: Shoutout to my guy @JohnWall +02/03/2018,Sports_celeb,@JohnWall,Meet me at #747WarehouseSt. Get your tickets at https://t.co/YC8uovsR1m https://t.co/r5sqD9O1kF +02/02/2018,Sports_celeb,@JohnWall,@ThatPersianGuy lol sour u funny bra +02/02/2018,Sports_celeb,@JohnWall,@IanPierno happy belated bday my man +01/31/2018,Sports_celeb,@JohnWall,@BALLisLIFEeast need it +01/31/2018,Sports_celeb,@JohnWall,"I will always remember the time we shared together as teammates, you were the big brother. I appreciate the advice… https://t.co/o2PSrDqowS" +01/31/2018,Sports_celeb,@JohnWall,@JMCIII yessir for sure tell the lil homies wat up +01/31/2018,Sports_celeb,@JohnWall,Yessir lil bro RT @taistrickland13: Am I in your bag yet👀 @JohnWall +01/24/2018,Sports_celeb,@JohnWall,@JMCIII my guy +01/24/2018,Sports_celeb,@JohnWall,"RT @abe_squad: ""That was the bro before this."" + +Chopped it up with @AntDavis23 and @boogiecousins for @SLAMonline earlier this month. Cover…" +01/24/2018,Sports_celeb,@JohnWall,My guy RT @cmillsnbcs: This article shows all of Johns fans and haters what his journey is and was all about. It’s… https://t.co/YzMfsv1I0D +01/24/2018,Sports_celeb,@JohnWall,Thanks Legend‼️ https://t.co/UqSCERKwvS +01/24/2018,Sports_celeb,@JohnWall,Thanks! https://t.co/jGAydKyrJQ +01/24/2018,Sports_celeb,@JohnWall,Thnx appreciate ya! https://t.co/rSbNoOOXlV +01/24/2018,Sports_celeb,@JohnWall,Yessir RT @getmerecruited: Super 60 Showdown Allstar & SE All-Freshman coach Carisma Lynn had it going on all cylin… https://t.co/od1M6QDh3h +01/24/2018,Sports_celeb,@JohnWall,Yessir RT @DrewHanlen: YEAAAAHHHHH!!! My brother @RealDealBeal23 is an All-Star!!! Proud of you my dude!!… https://t.co/CWez71xjNk +01/24/2018,Sports_celeb,@JohnWall,Already 💯👌🏾RT @LeVelleMoton: U make us Proud nephew @JohnWall ...Luv u boy Keep repine +01/24/2018,Sports_celeb,@JohnWall,@BBROWNLAU my bro +01/24/2018,Sports_celeb,@JohnWall,"Grateful that a kid like me from Raleigh, NC is able to play the game I love each and every day. THANK YOU to my te… https://t.co/ePPBJDCwZD" +01/24/2018,Sports_celeb,@JohnWall,"Congrats to my guy @bradbeal3 on his #NBAAllStar debut! Much deserved and earned! #LA, here we come #BB3 #DCFamily… https://t.co/CDHCFtQ2jZ" +01/15/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Thank you Dr. King for showing us that our words alone won’t get the job done. There must be action. Thank you and yo… +01/15/2018,Sports_celeb,@JohnWall,"Lol my dawgs RT @WashWizards: 24 HOURS LEFT! + +VOTE NOW ✅ | +https://t.co/c1lUgWZpSv https://t.co/tIYQtMA6Vz" +01/14/2018,Sports_celeb,@JohnWall,RT @SLAMonline: We hit up the @JohnWallHoliday Invitational and took note of the tournament’s top stars ➡️ https://t.co/aA3R8IQShH https://… +01/14/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: Just a kid from Raleigh. 9️⃣1️⃣9️⃣ + +#WallWay https://t.co/96symDTmFe" +01/14/2018,Sports_celeb,@JohnWall,@rod_strickland lol my guy/OG !! +01/14/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: DAGGER 🔪 + +@JohnWall #NBAVote https://t.co/2jhKJfdcGT" +01/14/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Watch @JohnWall go for 30 points and 9 assists in a #WizMagic win! + +Then RETWEET to #NBAVote! + +#DCFamily https://t.co/az…" +01/14/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: .@JohnWall is an All-Timer 😎 + +#NBAVote https://t.co/lrlVQkV8dv" +01/08/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Help us send @JohnWall to All-Star in LA! Cast your #NBAVote by RTing! (1 RT = 1 Vote) https://t.co/COovSWCoRd +01/08/2018,Sports_celeb,@JohnWall,"RT @WizardsGWiz: ☝🏼 WEEK LEFT TO VOTE! + +@JohnWall #NBAVote + +1 RT = 1 vote! https://t.co/OFQFGSL3Hw" +01/08/2018,Sports_celeb,@JohnWall,"RT @WashWizards: The hero D.C. deserves. + +@JohnWall #NBAVote + +1 RT = 1 VOTE https://t.co/L1vIH2OWlr" +01/08/2018,Sports_celeb,@JohnWall,@Truth_About_It it’ll change long season buddy +01/07/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: RT = 1 Vote #NBAVote @JohnWall https://t.co/47v5HzVyeD +01/04/2018,Sports_celeb,@JohnWall,#TBT 2013 WH Easter Egg Roll wit @RealDealBeal23 and the OG Emeka #NBAVOTE https://t.co/WvymvE8nb9 +01/04/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Just a rookie from St. Louis. + +Bradley Beal #NBAVote + +#TBT #DCFamily https://t.co/AZDGRASKbK" +01/03/2018,Sports_celeb,@JohnWall,RT @Ballislife: 🔥NEW🔥The @JohnWallHoliday Invitational: OFFICIALLY the MOST LIT Atmosphere in high school 🏀🏀🏀 (MIXTAPE) https://t.co/raO25i… +01/01/2018,Sports_celeb,@JohnWall,"RT @WashWizards: 39 points. 9 assists. 9 rebounds. 🐼 + +Sounds like an All-Star to us. RETWEET to #NBAVote Bradley Beal! https://t.co/ut36Am0…" +12/30/2017,Sports_celeb,@JohnWall,"RT @CoachCRoth: Greatly appreciate the @JohnWall Family, Bill Sewell, all his staff & the volunteers at #TheJohnWall. This is a premiere ev…" +12/28/2017,Sports_celeb,@JohnWall,"RT @WashWizards: We couldn't even fit all of @JohnWall's 2017 highlights into one video. + +Retweet to #NBAVote for #WallStar! https://t.co/A…" +12/27/2017,Sports_celeb,@JohnWall,"RT @WashWizards: He's the youngest player ever to hit 700 3's. Send him to L.A. 🐼 + +RT to #NBAVote Bradley Beal! + +#DCFamily https://t.co/YeH…" +12/26/2017,Sports_celeb,@JohnWall,Wishing you and yours a Merry Christmas! https://t.co/t6WU3H0F9j +12/25/2017,Sports_celeb,@JohnWall,"RT @GMA: .@WashWizards point guard @JohnWall gifts family that has fallen on hard times $1,000 worth of groceries, tickets to a game and pa…" +12/25/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Tune in to @gma tmw morning between 8am and 9am and see how #JWFF shared the spirit of the… https://t.co/Vwqj4xRDvd +12/22/2017,Sports_celeb,@JohnWall,RT @DJQUICKSILVA: “Hey @johnwall look at them over there with the ice grill mad face 😂😂😂😂” https://t.co/8i1rEYYgm5 +12/22/2017,Sports_celeb,@JohnWall,@35_Fitz lol bet bro +12/21/2017,Sports_celeb,@JohnWall,RT @hollafashions: Leader on and off the court. @johnwall #TheWallWay… https://t.co/8c0a0Zzhla +12/21/2017,Sports_celeb,@JohnWall,💯👌🏾RT @JavonteSmart: I watch AI and John wall daily 🤷🏽‍♂️💯🔥#Respect @alleniverson @JohnWall +12/20/2017,Sports_celeb,@JohnWall,@KedowWalker done deal bro +12/20/2017,Sports_celeb,@JohnWall,RT @HoopDistrictDC: Hand drawn 🔥🔥🔥 https://t.co/ZsnXERYDVj +12/20/2017,Sports_celeb,@JohnWall,"Yessir !! RT @JohnWallHoliday: One week from day, the best high school 🏀 tournament in the country. 4 days, 25 game… https://t.co/7inH0WDHhp" +12/20/2017,Sports_celeb,@JohnWall,"RT @WashWizards: Wall with the Shades 😎 + +All fans in attendance for #WizRockets on 12/29 will get a pair of @JohnWall replica sunglasses!…" +12/17/2017,Sports_celeb,@JohnWall,Check out me and @cmillsnbcs talking some of my favorite sneakers tonight at 5:30 on Wizards Gametime #DCFamily… https://t.co/LQxzydokpJ +12/17/2017,Sports_celeb,@JohnWall,"RT @WashWizards: The monuments of our city live among us, not above us.  They are not giants,  but they help us walk tall. And each of us c…" +12/17/2017,Sports_celeb,@JohnWall,RT @WashWizards: #SeasonOfGiving continued today as @RealDealBeal23 played secret Santa at a local @Walmart and surprised families by purch… +12/16/2017,Sports_celeb,@JohnWall,RT @SLAMonline: Kentucky commit Immanuel Quickley (@IQ_GodSon) is the latest five-star PG slated to play for @UKCoachCalipari. https://t.co… +12/16/2017,Sports_celeb,@JohnWall,"RT @JohnWallHoliday: 1️⃣1️⃣ days until #TheJohnWall tips off. + +“Every time I go back into that gym, it’s surreal. I go back to where I go…" +12/15/2017,Sports_celeb,@JohnWall,Appreciate the continuous support 💯👌🏾 RT @KarenCivil: WallWay Pack drops the official video for ‘Beast Mode’:… https://t.co/LgZXvuIiGk +12/15/2017,Sports_celeb,@JohnWall,RT @NavyMemorial: We would like to thank @JohnWall and the @JWFamFoundation for making it possible for 200 kids in the #DC area to see @jum… +12/15/2017,Sports_celeb,@JohnWall,RT @iamsamsesay: Thanks @Johnwall and @JWFamFoundation for inviting @gameplanorg! The kids had an amazing time and enjoyed the movie! https… +12/15/2017,Sports_celeb,@JohnWall,Special thanks to @kevinhart4real for the surprise video message that kicked off the screening of Jumanji Welcome T… https://t.co/8cJg5Nl9tW +12/15/2017,Sports_celeb,@JohnWall,Happy Holidays to the @jwfamilyfoundation’s groups and families that came out last night! 📸 cred: @neddishman https://t.co/ml7i16tU55 +12/15/2017,Sports_celeb,@JohnWall,Last night @JWFamFoundation hosted an advance screening of Jumanji: Welcome To The Jungle for 200 middle/high schoo… https://t.co/w5ECNHlOmI +12/15/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Tonight #JWFF hosted an advance screening of Jumanji: Welcome To The Jungle for 200 middle/high… https://t.co/P5xQgwMj… +12/15/2017,Sports_celeb,@JohnWall,"RT @Alliedimdc: What’s up, DC? #jumanji @JohnWall https://t.co/iO3k3NOP6K" +12/15/2017,Sports_celeb,@JohnWall,"Appreciate that my man RT @TheRock: Yass!! All the candy, popcorn and soda you can eat kids!!! I’ll send the bill t… https://t.co/mG8oM0cClj" +12/14/2017,Sports_celeb,@JohnWall,Yessir !! RT @RealDealBeal23: Good to have my dawg @johnwall back !! #DCFamily https://t.co/WFOJayLS4b +12/14/2017,Sports_celeb,@JohnWall,😎‼️#TBT #WALLWAY https://t.co/zwb9uWXqs8 +12/13/2017,Sports_celeb,@JohnWall,RT @KristinMScott: Still one of my favorite pics. #madisonsquaregarden #webeatuconn #8yearsago @JohnWall https://t.co/733QSynJgt +12/13/2017,Sports_celeb,@JohnWall,"RT @KELLYOUBREJR: @JohnWall and Little Papi Kelly Elf both have GOALS. @johnwall we need an assist from you for the toy drive on Sunday, De…" +12/11/2017,Sports_celeb,@JohnWall,"RT @WashWizards: We've got a @RealDealBeal23 sighting at the @NBASTORE in NYC! + +#DCFamily https://t.co/b9Xor4Vesk" +12/10/2017,Sports_celeb,@JohnWall,RT @WashWizards: 👀 https://t.co/ERLVFyyonJ +12/09/2017,Sports_celeb,@JohnWall,RT @TeamWallElite: @CoachK_Williams @getmerecruited @JayJayUSATODAY @BALLisLIFEeast @stateofhoopsnc @rod_bridgers @JumpmanBowman @JohnWall… +12/08/2017,Sports_celeb,@JohnWall,RT @cmillsnbcs: The kids got a future in walkoff interviews. Well done @JohnWall #DCFamily #NBA #WizSuns https://t.co/GaTCdipCtm +12/08/2017,Sports_celeb,@JohnWall,RT @NBCSWizards: .@JohnWall is out here tryna take @cmillsNBCS' job 😂 https://t.co/8egn2OIi6P +12/07/2017,Sports_celeb,@JohnWall,RT @cmillsnbcs: A positive sign. Look who’s getting up shots after @WashWizards morning shootaround @JohnWall #DCFamily #WizSuns #NBA https… +12/07/2017,Sports_celeb,@JohnWall,RT @Ballislife: SHOW THIS EVENT SOME LOVE!! Let's help pack out the house for @JohnWall's high school basketball tournament!!🔥🔥🏀🔥🔥 https://… +12/07/2017,Sports_celeb,@JohnWall,Make sure y’all go wish my sis @lovelycee_xo a very HAPPY Birthday 🎂 today🎈Luv ya https://t.co/8XMEdRKL7g +12/07/2017,Sports_celeb,@JohnWall,RT @TeamLadyWall: C/O ‘19 PG Carisma Lynn drops 17pts & 3 assists last night for Middle Creek in tough loss against Panther Creek. This you… +12/07/2017,Sports_celeb,@JohnWall,"RT @HumaneRescue: 8-month-old Biscuit is what we in the animal welfare industry call a ""Very Good Boy."" He's gently, friendly, and he alrea…" +12/07/2017,Sports_celeb,@JohnWall,RT @BrightBeginDC: Join @JohnWall in supporting BBI! Every little bits helps the little ones we serve. https://t.co/er5Q8aSqsU Donate today… +12/07/2017,Sports_celeb,@JohnWall,RT @KELLYOUBREJR: Little Papi Kelly Elf hanging with my brother @RealDealBeal23 after his career high of 51 points. Let's keep the momentu… +12/04/2017,Sports_celeb,@JohnWall,Thank u sis RT @MonicaBrown: Thank you to My Bro @johnwall ‘s Family !! On more than one occasion this tour they co… https://t.co/KGPDtBNYde +12/03/2017,Sports_celeb,@JohnWall,"RT @BleacherReport: I have no words 😶 + +(via @AWProductions_) https://t.co/Mu5u4pS8nD" +12/02/2017,Sports_celeb,@JohnWall,"RT @cmillsnbcs: The next episode of One on One with Chris Miller features @johnwall. We talk hitting the biggest shot of his life, sneakers…" +12/01/2017,Sports_celeb,@JohnWall,@dgarrett_msmg my dawgs +11/28/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Today is #GivingTuesday! Join me in supporting DC’s only child and family development center for homeless children. Te… +11/22/2017,Sports_celeb,@JohnWall,RT @isaiahthomas: We never know how strong we are until being strong is the only choice we have!!! +11/20/2017,Sports_celeb,@JohnWall,"RT @KSTV_Sports: Thanks again @JohnWall!! + +The #BBN and @KentuckyVB has loved @KazBrown11! https://t.co/xT4ox1Sc8L" +11/18/2017,Sports_celeb,@JohnWall,RT @JWallCentral2x: https://t.co/6jqKXb6xCj @JohnWall pls comeback 😢 +11/18/2017,Sports_celeb,@JohnWall,"RT @JWFamFoundation: John Wall Family Foundation partnered with The Salvation Army of Raleigh, NC today to bring Thanksgiving Assist to the…" +11/18/2017,Sports_celeb,@JohnWall,RT @HCJames58: Its still surreal that the @JohnWall has his name on the @JohnWallHoliday. #Blessed https://t.co/7dNIK5VAVa +11/18/2017,Sports_celeb,@JohnWall,RT @sthomas_4: The John Wall Holiday Invitational is coming back once again to Raleigh highlighting the best high school basketball teams i… +11/16/2017,Sports_celeb,@JohnWall,Congrats @Max_Scherzer #3XCY #DCFamily https://t.co/je6VCh1OLK +11/15/2017,Sports_celeb,@JohnWall,"RT @PBJ_Mayne: I made a promise my niggas gon ball, hard in the paint change my name to John Wall! @lilbaby4PF @JohnWall" +11/15/2017,Sports_celeb,@JohnWall,RT @DevinBook: We will be ok BBN.. Better than I expected. +06/24/2018,Sports_celeb,@KlayThompson,This is something that my family and I have been working on for some time and I’m proud to say we are announcing th… https://t.co/qBUrZOajfD +06/19/2018,Sports_celeb,@KlayThompson,"RT @stancehoops: Three Times Dope. + +Celebrate the @warriors Championship with this limited-edition sock. + +https://t.co/xy7y7UFRBX https:/…" +06/18/2018,Sports_celeb,@KlayThompson,Being a back to back champion comes with hard work and proper nutrition. I recover with @chocolate_milk for its nut… https://t.co/j7hTaYLUn5 +06/18/2018,Sports_celeb,@KlayThompson,Excited to announce that I'll be hosting my first basketball camp this summer in Southern California from August 6-… https://t.co/trEszFxCT3 +06/17/2018,Sports_celeb,@KlayThompson,Thanks for riding with us all the way #Dubnation! https://t.co/5eBbd5TSmP +06/15/2018,Sports_celeb,@KlayThompson,Dub Nation! The Water For Life Charity Softball Game is on June 23rd at the Oakland Coliseum. Support my teammate a… https://t.co/g2I5LEKFGG +06/14/2018,Sports_celeb,@KlayThompson,"RT @Fanatics: #DubNation, make sure your Dad is decked out with @warriors gear this #FathersDay! + +Check out #FanaticsExclusive @KlayThomps…" +03/23/2018,Sports_celeb,@KlayThompson,Want to meet me and have a drive on the BMW M Tracks? Here’s your chance – https://t.co/TNRFc6Ka6w #bmw #Mschool… https://t.co/LqqwOWS6hX +03/21/2018,Sports_celeb,@KlayThompson,RT @chocolate_milk: Her game is speed & power. Ours is recovery. An unstoppable combo. Proud to welcome @SloaneStephens to #TeamChocolateMi… +03/05/2018,Sports_celeb,@KlayThompson,"Excited to announce my new banking partner, @OpusBank. The #officialbank of the @ThompsonFamFoun, they have a team… https://t.co/Dem87TOMuq" +03/04/2018,Sports_celeb,@KlayThompson,Excited to meet everyone who purchased the limited edition KT3 Rocco! See you at 5PM! https://t.co/EXHZXuPAKJ +02/27/2018,Sports_celeb,@KlayThompson,"The Warriors, BMW, and I are going green on March 8, see how we’ve gone green through the years on https://t.co/Kdpdbd3cbW #gogreen #bmw #i8" +02/23/2018,Sports_celeb,@KlayThompson,"Behind every “W” is a whole lot of work. I train and recover hard with the real deal recovery drink, low-fat… https://t.co/kpWLnPweUk" +02/20/2018,Sports_celeb,@KlayThompson,"Thanks for having me @wojespn, and for everyone listening to the The Woj Pod. Check it out if you haven’t yet at… https://t.co/5iq7RLBr0u" +02/17/2018,Sports_celeb,@KlayThompson,Had a great time chatting with @wojespn on The Woj Pod. Check it out here: https://t.co/Zz2zwmw8J3​. Thank you to N… https://t.co/HyYf1apo3K +02/16/2018,Sports_celeb,@KlayThompson,Happy Chinese New Year from Me & Rocco! https://t.co/ienF9BYO5k +02/07/2018,Sports_celeb,@KlayThompson,How soon can we wrap? @AntaAmerica https://t.co/uZBYnYl2hO +01/25/2018,Sports_celeb,@KlayThompson,"RT @anthonyVslater: Klay Thompson jokes that he will ""request a trade"" if Steph Curry doesn't get him at the All-Star game and then says he…" +01/20/2018,Sports_celeb,@KlayThompson,Let's Do This! https://t.co/1jOVPRhCsj +01/15/2018,Sports_celeb,@KlayThompson,"Celebrating his legacy not just today, but every day. Honor him by continuing his work and standing up for those wh… https://t.co/4MPXNITlTU" +01/11/2018,Sports_celeb,@KlayThompson,So @JaValeMcGee thought he had a chance against me in @CallOfDuty 😂...Special edition Parking Lot Chronicles straig… https://t.co/Q36jh9WBFJ +01/11/2018,Sports_celeb,@KlayThompson,Congrats to my bro @KDTrey5 on 20k career points. It’s a privilege to witness greatness every night! +01/10/2018,Sports_celeb,@KlayThompson,"Can’t stop, won’t stop. Recovering with @chocolate_milk keeps me going practice after practice. #BuildIt #ad https://t.co/UeIRC9zKQ3" +01/05/2018,Sports_celeb,@KlayThompson,Happy New Year from me and Rocco https://t.co/RrhRhrdE9U +12/25/2017,Sports_celeb,@KlayThompson,"This Christmas, you’re in for a show. Watch @NBA on @ESPN, and see The #GreatestShowman🎩, now playing in theaters.… https://t.co/NWXU11g1S8" +12/24/2017,Sports_celeb,@KlayThompson,Rocco has been waiting by the tree all day! https://t.co/9lnqCG8d7T +12/24/2017,Sports_celeb,@KlayThompson,Whole family getting in the holiday spirit with the new #KT3 @AntaAmerica https://t.co/P7TwdeOGki +12/20/2017,Sports_celeb,@KlayThompson,Had a great time at the toy drive the other day! Thanks @JAKKStoys for coming out and donating all these toys for m… https://t.co/BkGd1f5Xix +12/19/2017,Sports_celeb,@KlayThompson,"#8 all the way!! Three Championships, Eight All-Star Games, Two Scoring Titles, One slam dunk contest championship,… https://t.co/I9upuLeNEx" +12/19/2017,Sports_celeb,@KlayThompson,RT @RyanWardLA: Kobe Bryant on Body Armor (@DrinkBODYARMOR) & Klay Thompson throwing a Gatorade bottle off a press table recently: “I thoug… +12/18/2017,Sports_celeb,@KlayThompson,S/O to @SHGames for hosting us this past weekend! #CallofDutyPartner https://t.co/aKfcN4zmks +12/09/2017,Sports_celeb,@KlayThompson,My workout isn’t complete until I’ve had my @chocolate_milk. #BuildIt #ad https://t.co/phbncP53MY +12/05/2017,Sports_celeb,@KlayThompson,"Support journalism and help fulfill the wishes of our neighbors in need. Subscribe to @eastbaytimes, @mercnews,… https://t.co/336H9IG51i" +11/30/2017,Sports_celeb,@KlayThompson,Shoutout to my boy Robbie Fuller for designing the #KT3 to keep me right on my game. Best shoe yet! https://t.co/nxDTMHeBbG +11/25/2017,Sports_celeb,@KlayThompson,"Great W @WSUMensHoops, keep it goin!" +11/24/2017,Sports_celeb,@KlayThompson,Had a great time donating turkeys from our turkey drive to the children and community of Acorn and West Oakland. Th… https://t.co/1L9AkK94G2 +11/10/2017,Sports_celeb,@KlayThompson,Getting the most out of each practice. That’s why I keep my @chocolate_milk recovery game on-point. #BuildIt #ad https://t.co/ze708Pn0vM +11/03/2017,Sports_celeb,@KlayThompson,Ever wonder what my pre-game ritual is? Find out here https://t.co/eFsBxBuhqH https://t.co/0wBsYMERzn @mercnews… https://t.co/laPRRDD3RL +11/02/2017,Sports_celeb,@KlayThompson,"Thanks to all the fans and partners that pledged alongside me for this campaign! Still much to be done, but happy w… https://t.co/Cab2lr18Qg" +10/29/2017,Sports_celeb,@KlayThompson,"Over 1,100 of us pledging for our friends in Nor Cal. 1 last game tonight to reach our goal, hope you'll join us!… https://t.co/4CNpA6Cp6D" +10/27/2017,Sports_celeb,@KlayThompson,#BayAreaUnite https://t.co/VI0xBEREp3 +10/27/2017,Sports_celeb,@KlayThompson,2 games left in my Points with Purpose campaign for fire relief. Help us reach our new goal and let’s get after it.… https://t.co/OIyDEW8Dad +10/27/2017,Sports_celeb,@KlayThompson,"934 people pledging w me, over $4000 per point for relief efforts. I'm blown away. 2 games left, let's keep this up! https://t.co/IRUXEdItDM" +10/25/2017,Sports_celeb,@KlayThompson,"Thx to the generosity of fans & partners, we're up to over $2700 per point scored this week! Let's keep growing tha… https://t.co/F45DUWNUHe" +10/24/2017,Sports_celeb,@KlayThompson,@FaZe_Rain Appreciate you bro! +10/23/2017,Sports_celeb,@KlayThompson,Thank you to everyone who has pledged to my Points With Purpose campaign! You can still donate by going to… https://t.co/QUgplByUeF +10/23/2017,Sports_celeb,@KlayThompson,"RT @Kimborania: I pledged $1 per point to ""Klay Thompson's Points with Purpose on https://t.co/mlEyQ55oc0! https://t.co/ni73HBW0jg via @ple…" +10/23/2017,Sports_celeb,@KlayThompson,"RT @breesespieces: I donated $40 to ""Klay Thompson's Points with Purpose on https://t.co/NEdMvjuWlE! https://t.co/Bg9gQEtxbU via @pledgeit" +10/21/2017,Sports_celeb,@KlayThompson,@rastaclat @pledgeit Thanks guys! +10/21/2017,Sports_celeb,@KlayThompson,@oitzray @pledgeit Thank you Raymond! +10/21/2017,Sports_celeb,@KlayThompson,@erin_rose80 Thank you Erin! +10/21/2017,Sports_celeb,@KlayThompson,"amazing, thank you!! https://t.co/46OMUGY2Nx" +10/20/2017,Sports_celeb,@KlayThompson,@catherinejoysf thank you!! +10/20/2017,Sports_celeb,@KlayThompson,@MeaCuppa @pledgeit thank you! +10/20/2017,Sports_celeb,@KlayThompson,"@GregYoungJr @pledgeit awesome, thanks!" +10/20/2017,Sports_celeb,@KlayThompson,@Murrow51 @pledgeit thank you! +10/20/2017,Sports_celeb,@KlayThompson,Thank you! Any amount helps! https://t.co/d1TvLMb7I6 +10/20/2017,Sports_celeb,@KlayThompson,"During our next 3 home games, I'm pledging $1000 per point to North Bay fire relief. Join me by pledging any amount… https://t.co/cO5hduvCNy" +10/13/2017,Sports_celeb,@KlayThompson,@rogerfederer Name the time and place. Game on! +10/08/2017,Sports_celeb,@KlayThompson,@ANTAsportswear surprised me with a new pair of KT3’s “Gold Blooded”. Check the next game. 🙌 https://t.co/L2HoARxbC4 +10/05/2017,Sports_celeb,@KlayThompson,Thanks Shanghai for the very early morning welcome! 😂 https://t.co/8GQpZd8TSp +09/26/2017,Sports_celeb,@KlayThompson,Just wanted to say thank you to all the firefighters and first responders working so hard to put this fire out. https://t.co/KRl4z4zTI4 +09/20/2017,Sports_celeb,@KlayThompson,Got Behind The Wheel of an Indy Car at #GoProGP. Experience the drive with me! https://t.co/xOS3rwFk8y https://t.co/6EjJ4moFaG +09/12/2017,Sports_celeb,@KlayThompson,"Hey #DubNation, Want to come kick with me and @DrinkBODYARMOR? Enter here by Friday: https://t.co/OzsdN9Ro9d CA ON… https://t.co/cWTALAPpi2" +09/08/2017,Sports_celeb,@KlayThompson,#tbt to the Klay Court Dedication at KIPP Bridge Academy. It's an honor to give back to the Oakland youth & communi… https://t.co/G0S23xCg6C +08/24/2017,Sports_celeb,@KlayThompson,Surprised some future pro 🏀 players on their home court. Check it out via @chocolate_milk + CBS Sports #BuildIt #ad https://t.co/TGWrK9zXe6 +08/01/2017,Sports_celeb,@KlayThompson,That was my sinker https://t.co/OTNeOYKUo5 +06/27/2017,Sports_celeb,@KlayThompson,You don’t become a champ without hard work & proper nutrition. @chocolate_milk has nutrients to refuel and protein… https://t.co/u70vV29pxc +06/23/2017,Sports_celeb,@KlayThompson,Dub Nation! Join my teammates at JaVale's Charity Softball Game at Oakland Coliseum this Saturday. For tickets visi… https://t.co/e75R69TVvM +06/05/2017,Sports_celeb,@KlayThompson,RT @mdbergin: #NBAFinals subplot: The #Warriors are 29-1 since @KlayThompson signed a toaster on March 13. Didn't play in the loss https://… +06/01/2017,Sports_celeb,@KlayThompson,"To be a pro athlete, you have to be a perfectionist. Take a look via @chocolate_milk + CBS Sports. https://t.co/TiupTy8TTs #BuildIt #ad" +06/01/2017,Sports_celeb,@KlayThompson,"RT @warriors: ""It's an honor to be here for the 3rd time. Dreamed of this this as a kid & still appreciate it now. I don't take it for gran…" +05/30/2017,Sports_celeb,@KlayThompson,Obsessed about bringing a title back to The Bay. #ObsessionIsNatural @DrinkBODYARMOR https://t.co/hW1J1a73Db +05/15/2017,Sports_celeb,@KlayThompson,#ObsessionIsNatural....ComingSoon. @DrinkBODYARMOR https://t.co/7fbVWhnreu +05/05/2017,Sports_celeb,@KlayThompson,Want a peek into my daily life & game day rituals? I gave @chocolate_milk & CBS Sports a look. https://t.co/c3zAUEuydX #BuildIt #ad +03/31/2017,Sports_celeb,@KlayThompson,Check out the behind the scenes from my @chocolate_milk shoot. #TBT 💪 https://t.co/f7KgEA9ZXj +03/23/2017,Sports_celeb,@KlayThompson,My new 🔥 @stancehoops socks collection just dropped! Check them out here: https://t.co/6yXOVWaSMk https://t.co/i9R9SXUDrP +03/12/2017,Sports_celeb,@KlayThompson,"Let's go #DubNation! Gear up for the playoffs. I'll be at Old Navy (801 Market St, SF) from 4-5pm today. Come out and show your pride." +03/09/2017,Sports_celeb,@KlayThompson,.@chocolate_milk is the right move after a tough workout. Strong recovery so I can do it again tomorrow. #BuildIt… https://t.co/fGWuEklyNP +02/28/2017,Sports_celeb,@KlayThompson,"RT @anthonyVslater: Klay Thompson, drilling out a slice of pizza, talks Warriors win in Philly and Kevin Hart being a ""non-factor"" https://…" +02/28/2017,Sports_celeb,@KlayThompson,Excited to announce I’m BUILT WITH @chocolate_milk! The right mix of protein & carbs makes it my go-to post-game.… https://t.co/eYc0TUqjoT +02/23/2017,Sports_celeb,@KlayThompson,Had a great time this weekend. Thanks to everyone that came out. #NBAAllStar #StateFarmSaturday https://t.co/zZK9ytIAbw +02/21/2017,Sports_celeb,@KlayThompson,Great night with @stancehoops. #stancespades #NBAAllStar https://t.co/FAzkERWOnH +02/20/2017,Sports_celeb,@KlayThompson,Shoutout to @k_obrand for collaborating with me and @antaamerica to make these custom shoes in honor of my grandfa… https://t.co/hWBIktdNEv +02/19/2017,Sports_celeb,@KlayThompson,Another #StateFarmSaturday in the books. Until next year #NBAAllStar +02/19/2017,Sports_celeb,@KlayThompson,Shoutout to @stancehoops for showing love and donating to the cause. 🙌 https://t.co/b1c7c9Rlr9 +02/19/2017,Sports_celeb,@KlayThompson,Thanks @DrinkBODYARMOR for keeping me hydrated this week while we did work this week with @nbacares. #NBAAllStar https://t.co/VEmkBCR8pY +02/19/2017,Sports_celeb,@KlayThompson,It's time! #StateFarmSaturday is underway on TNT. Tune in now! +02/18/2017,Sports_celeb,@KlayThompson,Tonight I'll be shooting for Ranfurly Homes for Children! #BucketsforKids https://t.co/4TGuRWiull +02/16/2017,Sports_celeb,@KlayThompson,Almost time for another #StateFarmSaturday. Who’s ready? Don’t forget to check it out on 2/18 at 8pm EST! +02/14/2017,Sports_celeb,@KlayThompson,Ready to bring it again for #StateFarmSaturday. Watch all the action on 2/18 at 8pm EST on TNT. Don't miss it! +01/03/2017,Sports_celeb,@KlayThompson,I see u @WSUMensHoops!! https://t.co/83cRrFMeGs +01/03/2017,Sports_celeb,@KlayThompson,Good win 2night startin off 2017 the right way. We appreciate u DubNation showing up and supporting us every night! +12/31/2016,Sports_celeb,@KlayThompson,U will be missed my friend +12/31/2016,Sports_celeb,@KlayThompson,RIP Walt Simon. I cherish the times u were in the gym grinding with us every summer. Those times molded me into the player I am 2day. +12/18/2016,Sports_celeb,@KlayThompson,Go Cougs https://t.co/aejhk7pKh4 +12/15/2016,Sports_celeb,@KlayThompson,RIP Craig. You will be missed greatly by every single hoops fan out there. Sending my condolences to his family #Legend #sagerstrong +12/10/2016,Sports_celeb,@KlayThompson,"Catch me at leftys on the 16th!! +For tix 📞 650-697-2274 https://t.co/qlAHtbFZZE" +12/07/2016,Sports_celeb,@KlayThompson,You wanna make it rain 👌🏽 https://t.co/wVXzMKx6On +12/07/2016,Sports_celeb,@KlayThompson,I appreciate @AntaAmerica for making a special edition KT2 to commemorate my 60 piece a couple nights ago. Get em now in the link above if +12/06/2016,Sports_celeb,@KlayThompson,S/O to my squad for setting me up 2night! I don't think I had to take more then 5 dribbles the whole game lol +11/28/2016,Sports_celeb,@KlayThompson,DubNation! Come join me and my @stancehoops fam tomorrow at @ShoePalace. Gonna be 🔥 https://t.co/f4wtgKicM7 +11/25/2016,Sports_celeb,@KlayThompson,"So this is what @champagnennuts view looks like at ""work""...pretty easy gig if u ask me!! https://t.co/EiLRSjjABL" +11/03/2016,Sports_celeb,@KlayThompson,Got Rocco on my new @stancehoops socks! 🔥🔥 https://t.co/wuJNwZdYnt https://t.co/6ELlqEfYDx +10/09/2016,Sports_celeb,@KlayThompson,So happy I'm witnessing my cougs ball out tonight. Let's go @WSUCougars +09/23/2016,Sports_celeb,@KlayThompson,RT @KMillar15: My man @klaythompson taking a few swings early before #VinScullyDay and I thought he had a tick… https://t.co/zgMtYZR3m8 +09/20/2016,Sports_celeb,@KlayThompson,Golden memories with the team! Watch all the videos from the journey to Rio on the @SamsungMobileUS #GearVR. #ad https://t.co/ilvO6WHgRt +09/15/2016,Sports_celeb,@KlayThompson,"Gloves up! Live from the Empower The Athlete Within event with @GQ, @INFINITIUSA and @Furthermore. #Q60" +09/15/2016,Sports_celeb,@KlayThompson,I'm celebrating the athlete within at Equinox San Mateo with the @INFINITIUSA @Furthermore @GQMagazine #Q60 Empower yourself! +08/23/2016,Sports_celeb,@KlayThompson,U-S-A! Feels good to bring home gold. Episode 2 of 'Chasing The Dream'. Watch on the @SamsungMobileUS #GearVR #ad https://t.co/5UnSP02n5d +08/18/2016,Sports_celeb,@KlayThompson,👀 Check out 'Chasing The Dream' & watch our journey to Rio. Shot with the @SamsungMobileUS #Gear360. https://t.co/C7PrAotQir #ad +08/16/2016,Sports_celeb,@KlayThompson,How Cuz playin with a coconut in his hand tho 🤔😂😂😂😂 @boogiecousins https://t.co/oJmIAJMMdX +08/07/2016,Sports_celeb,@KlayThompson,😂😂😂 let joc and roc live!! https://t.co/rcDp0w25fb +08/01/2016,Sports_celeb,@KlayThompson,G'd up from the 👣 up 🇺🇸 https://t.co/3NYZWi5xPQ +07/24/2016,Sports_celeb,@KlayThompson,My guy @RyanSheckler put on a show today and made it look easy. Congrats on the win fam!! 🏆 https://t.co/ntxgdQgrOv +06/30/2016,Sports_celeb,@KlayThompson,RT @getshottracker: @KlayThompson Virtual Basketball camp starts July 10th with a live hangout with the All-Star himself. #Playlikeklay htt… +06/27/2016,Sports_celeb,@KlayThompson,#UNITE https://t.co/F9pelG38a8 +05/30/2016,Sports_celeb,@KlayThompson,Happy Memorial Day to all those who have faithfully served to protect our freedoms. We appreciate you!! +05/11/2016,Sports_celeb,@KlayThompson,"RT @MLBONFOX: TRAYCE THOMPSON SPLASH! + +Thomspon WALK-OFF home run, @Dodgers defeat the Mets 3-2." +05/10/2016,Sports_celeb,@KlayThompson,Congrats to my brother @StephenCurry30 goin back to back! #Unanimous. Keep making history it's an honor to be a part of it!! +04/26/2016,Sports_celeb,@KlayThompson,“@getshottracker: Warriors set an NBA record with 21 💦💦🏀🏀🏀 from deep!!” Thx for the continued support @getshottracker +04/21/2016,Sports_celeb,@KlayThompson,Raspberry Beret on repeat all day. RIP to the Legend Prince!! +04/06/2016,Sports_celeb,@KlayThompson,#Dubnation - ditch artificial sports drinks & switch to the #1 natural sports drink @drinkbodyarmor #Switch2Natural https://t.co/uSpg28vMNt +03/28/2016,Sports_celeb,@KlayThompson,Practice. Repetition. Nothing great ever comes easy. https://t.co/mumu8iHRs1 @getShotTracker #everyshotcounts https://t.co/ilXQHc0bhS +03/19/2016,Sports_celeb,@KlayThompson,RT @MychelThompson: 😎 #doyers https://t.co/B2OSaKQGhJ +03/19/2016,Sports_celeb,@KlayThompson,RT @DrinkBODYARMOR: Team @DrinkBODYARMOR represent: @KlayThompson @DezBryant #WaddupTho https://t.co/KpoccKqPSk +03/10/2016,Sports_celeb,@KlayThompson,I'm hearing the @Broncos r in need of a QB. I know Mr. Buckets is still a free agent @Mospeights16 !!! +03/02/2016,Sports_celeb,@KlayThompson,🔥🔥🔥 @stancehoops https://t.co/3LxDup5MKN +02/13/2016,Sports_celeb,@KlayThompson,Taking over the @DrinkBODYARMOR Twitter handle in 10! Hit me with your questions there +02/13/2016,Sports_celeb,@KlayThompson,ASK ME ANYTHING! Tomorrow @ 2pm EST I’m taking over the @DrinkBODYARMOR handle. Submit Q’s starting now w/ #AskKlay https://t.co/ajMeZ4Dj8R +02/11/2016,Sports_celeb,@KlayThompson,Look forward to meeting everyone tomorrow at 6pm! I'll be at @Kia MVP Court at #NBACentreCourt! #NBAAllStarTO +02/08/2016,Sports_celeb,@KlayThompson,"Bay Area, meet me tonight @LeftysSports w/ @FansAuthentic. #DubNation #FAexclusive https://t.co/rKxQQ4WCjo" +01/22/2016,Sports_celeb,@KlayThompson,.@DrinkBODYARMOR & I giving u the chance to fly to LA & watch us take on @KobeBryant. Check info within pic! https://t.co/mGE1xqXzy9 +01/18/2016,Sports_celeb,@KlayThompson,One of the first paintings I ever bought and one of my favorites. His legacy and message is timeless. Happy MLK day https://t.co/L4h6EOesL2 +01/17/2016,Sports_celeb,@KlayThompson,@MychelThompson https://t.co/WmfGlkZu04 +01/17/2016,Sports_celeb,@KlayThompson,Kookslams/kookoftheday IG is the 🐐 +01/06/2016,Sports_celeb,@KlayThompson,Nice work @getshottracker on your new multi-player tech. #CES2016 #everyshotcounts +12/23/2015,Sports_celeb,@KlayThompson,The Juntao cameo was the best part of Star Wars #spoileralert +11/23/2015,Sports_celeb,@KlayThompson,.@Money23Green- yes sir! Dope action on #SiegeDay. Watch: https://t.co/a00yi2XjE4 #ad +11/23/2015,Sports_celeb,@KlayThompson,RT @hbarnes: 15! #DubNation +11/20/2015,Sports_celeb,@KlayThompson,"It takes a team to win, right @Money23Green? just like in @Rainbow6Game. Lets get it done #DubNation" +11/15/2015,Sports_celeb,@KlayThompson,Dubs win and the cougs win couldn't ask for a better night +11/15/2015,Sports_celeb,@KlayThompson,Gaaaaaaaaaaaabe! Let's go +11/09/2015,Sports_celeb,@KlayThompson,RT @bucketsworth: 35 mins till I'm live with @getshottracker get your questions ready +11/02/2015,Sports_celeb,@KlayThompson,Come hang with me live on @getshottracker https://t.co/UFGZh5MY9V +11/01/2015,Sports_celeb,@KlayThompson,RT @MychelThompson: #ForzaVarese https://t.co/MIuf6lqqrT +11/01/2015,Sports_celeb,@KlayThompson,RT @Mbezz13: 😔 +10/28/2015,Sports_celeb,@KlayThompson,It's not about the numbers or the individual accolades. It's about these moments u share with your… https://t.co/ssG2AXHVxH +10/26/2015,Sports_celeb,@KlayThompson,The NBA family lost a great guy today. RIP Flip. Sending my condolences to his team and family https://t.co/tu07ZXCjTA +10/22/2015,Sports_celeb,@KlayThompson,Blessed and thankful for the opportunity!! https://t.co/OuNdACMcd9 +10/19/2015,Sports_celeb,@KlayThompson,A tough weekend for the Thompson fam. But also a great weekend of celebration for Paul and Patty who… https://t.co/sVnse88YQW +10/17/2015,Sports_celeb,@KlayThompson,"RT @JayBilas: Almost fell for the bait, almost fell for the hate. And, I'm the same one that let all y'all eat off my plate. I gotta go to …" +10/16/2015,Sports_celeb,@KlayThompson,Happy birthday @brockm12. Too many good times on the Palouse and around the world with my guy! #duplex #boyz #bjornstadstwin +10/15/2015,Sports_celeb,@KlayThompson,Great day to be a warrior https://t.co/ssSFB081an +10/14/2015,Sports_celeb,@KlayThompson,RT @warriors: Watch out SF - @KlayThompson & @Money23Green have the key to the city! 🔑 http://t.co/CsGSQFcaLP +10/12/2015,Sports_celeb,@KlayThompson,RT @Be_LikeIKE: #SKYBLUE ⛅️ +10/12/2015,Sports_celeb,@KlayThompson,Rocco's new spot Fort Funtson #SF http://t.co/ayxcxAK2H7 +10/11/2015,Sports_celeb,@KlayThompson,RT @getshottracker: Primetime is nearing. Get ready w/ @KlayThompson & our experts +70 new drills. The KT3000 starts 11/1. You in? http://t… +10/11/2015,Sports_celeb,@KlayThompson,Let's go cougs!!! Woooo!!! Too hyped right now +10/10/2015,Sports_celeb,@KlayThompson,Maya Moore cold blooded +10/06/2015,Sports_celeb,@KlayThompson,Thanks for the amazing reception San Jose!! Dubs fans are the best in the world!! #DubNation #TheBaysTeam +10/04/2015,Sports_celeb,@KlayThompson,I would pay a lot of money for an original ABA ball +10/02/2015,Sports_celeb,@KlayThompson,Still can't believe what happened in Roseburg. Sending my thoughts and prayers to the families affected by this unimaginable act of violence +10/01/2015,Sports_celeb,@KlayThompson,DubNation please wish our leader @SteveKerr a speedy recovery. His presence on the floor will be greatly missed during his time off +09/27/2015,Sports_celeb,@KlayThompson,RT @taliqdavis11: Went to go meet klay Thompson http://t.co/K40THKIMvF +09/26/2015,Sports_celeb,@KlayThompson,"RT @Athletics: One pitch, three points! Nice throw @KlayThompson. #GreenCollar 🎥 http://t.co/WudKNx4mY6" +09/15/2015,Sports_celeb,@KlayThompson,"RT @brodiebrazilCSN: Yep, @KlayThompson's bro just went #Splash against the #Athletics. http://t.co/xZkGJyqvH9" +09/13/2015,Sports_celeb,@KlayThompson,RT @bward09wsu: @klaythompson go titans. +09/13/2015,Sports_celeb,@KlayThompson,The better team came to play today sorry bro https://t.co/WfcvA55h5J +09/04/2015,Sports_celeb,@KlayThompson,Simply put this video is just amazing. Gets me so hyped to play in front of the best fans in the world this season https://t.co/BQmJQ1twnz +09/03/2015,Sports_celeb,@KlayThompson,Join me in the Crimzone w/ the O’Brien Trophy this Sat. Let’s pack this place Cougs! @zzucru @wsucougfb @CougarAthFund @WSUCougars #GoCougs +09/03/2015,Sports_celeb,@KlayThompson,Check out the new @DrinkBODYARMOR vehicle #UpgradeYourSportsDrink http://t.co/xVeGeKH0UX +08/31/2015,Sports_celeb,@KlayThompson,😂😂😂😂😂 https://t.co/ZGdjYpPlZK +08/26/2015,Sports_celeb,@KlayThompson,My job takes me around the world and I am very grateful for it. Thanks for the fun interview @TravelLeisure! https://t.co/YrwzTH9ZX9 +08/26/2015,Sports_celeb,@KlayThompson,RT @BDA_Sports: Happy #NationalDogDay from @KlayThompson & Rocco! http://t.co/8LTeliXNdn +08/26/2015,Sports_celeb,@KlayThompson,@espnSteveLevy @BBTN that's big time Steve ✊ +08/26/2015,Sports_celeb,@KlayThompson,I hate to admit it but Trayce might be the best overall athlete in the fam lol +08/26/2015,Sports_celeb,@KlayThompson,RT @whitesox: Recap: Trayce provides clutch hitting in @WhiteSox victory. http://t.co/hhY0lkiygM http://t.co/5Qu9xXzQQ8 +08/26/2015,Sports_celeb,@KlayThompson,"RT @whitesox: Have a night, Trayce. 3-4, 3 RBI's, now batting .522 on the season! http://t.co/UuWklh1Dks" +08/26/2015,Sports_celeb,@KlayThompson,"RT @whitesox: #SOXWIN Final: #WhiteSox 5, Red Sox 4. http://t.co/8A4sU1HYR4" +08/23/2015,Sports_celeb,@KlayThompson,Day 1s @hbarnes https://t.co/jPaH8e570J +08/23/2015,Sports_celeb,@KlayThompson,@brockm12 😈...congrats @andrewbogut ...ur 🍍 game still weak lol https://t.co/ancdAm5qsq +08/23/2015,Sports_celeb,@KlayThompson,RT @whitesox: Trayce didn't waste any time getting the #WhiteSox on the board in the 2nd. http://t.co/gi7XIU4Obx http://t.co/ULVbQDSvtd +08/12/2015,Sports_celeb,@KlayThompson,😂😂😂😂 welcome to the show rookie https://t.co/lU7WcSmcLc +08/12/2015,Sports_celeb,@KlayThompson,Lets goooooooooo!!! I see u trizzy! https://t.co/i1as5hsV6C +08/05/2015,Sports_celeb,@KlayThompson,RT @MychelThompson: The big 3 https://t.co/Jvl2L98MMl +08/05/2015,Sports_celeb,@KlayThompson,RT @joemclean15: In the Show. Trayce Thompson #perseverance https://t.co/RGHHrD3LC1 +08/04/2015,Sports_celeb,@KlayThompson,RT @Dj_E5QUIRE: Spent this last Sunday giving back to the kids of the #SpecialOlympics with @klaythompson! Always fun… https://t.co/ZdxQu7P… +08/02/2015,Sports_celeb,@KlayThompson,Yessir makes me proud to see all the hard work u put in payin off T https://t.co/EGexSF8HjK +07/30/2015,Sports_celeb,@KlayThompson,Amen https://t.co/HQPXVEhAvu +07/19/2015,Sports_celeb,@KlayThompson,Mick fanning a beast for that +07/17/2015,Sports_celeb,@KlayThompson,"RT @MychelThompson: Blessed for the opportunity, this game can take u all over the world...excited to be joining… https://t.co/XAG3885LME" +07/09/2015,Sports_celeb,@KlayThompson,Proud of @JustHolla7 for signing with the Hawks. One of the hardest workers I've been around congrats my man! +07/07/2015,Sports_celeb,@KlayThompson,"It's tough to see my big bro D Lee go, Boston gotta great player and true pro. A true vet who looked… https://t.co/D1msdyV6n8" +07/02/2015,Sports_celeb,@KlayThompson,Excited to be nominated for an @ESPYS award for Best Record Breaking Performance! http://t.co/5EXvqshXhk +06/27/2015,Sports_celeb,@KlayThompson,DONE @getshottracker! Now for some R&R. #KlayCamp see you Sun 5:00 PDT for live awards. http://t.co/H4UTWJfqPl http://t.co/6TlGWCD1Jy +06/26/2015,Sports_celeb,@KlayThompson,5 down 1 to go @getshottracker. Live feed awards Sun 5:00 pm PDT. Join here. http://t.co/H4UTWJfqPl #KlayCamp http://t.co/NPS0VEx1IT +06/26/2015,Sports_celeb,@KlayThompson,Thanks @mophie for helping me stay charged http://t.co/tdah30QxcZ +06/25/2015,Sports_celeb,@KlayThompson,"@getShotTracker Matthew5 up top at 90%, but no Day 4 yet. JordanTreyBoyd on it early today w/92%. #KlayCamp http://t.co/pKsiU2fzps" +06/28/2018,Sports_celeb,@WWERomanReigns,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/26/2018,Sports_celeb,@WWERomanReigns,"West coast vest!!! Ahhhh yessir, My close friends @KotulskiGear are a constant staple for me felling good, looking… https://t.co/a70CV9LMxW" +06/26/2018,Sports_celeb,@WWERomanReigns,"Take your eyes off the prize, you may lose it. I know where I’m going, I know what I want. #MyYard #Raw #B2R" +06/24/2018,Sports_celeb,@WWERomanReigns,"This isn’t a college mat or an octagon. This is the squared circle, aka My Yard. So do yourself a favor Bob, don’… https://t.co/yXFCWQF5vh" +06/23/2018,Sports_celeb,@WWERomanReigns,RT @StephMcMahon: #Emmys MEET #RAW25. At over 1300 episodes #RAW is the longest running weekly episodic television show in U.S. history. R… +06/20/2018,Sports_celeb,@WWERomanReigns,"Don’t get attached to it, cuz I’m not! 🤣 https://t.co/wqg26LbHPQ" +06/19/2018,Sports_celeb,@WWERomanReigns,"I mean it when I say it, this is #MyYard. Doesn’t matter how many you put in the match at #ExtremeRules, I’m only f… https://t.co/QLYyQm1fh8" +06/19/2018,Sports_celeb,@WWERomanReigns,"RT @DOMTIBERI: .@WWERomanReigns please share. + +We do not want to see any other child become a statistic. Please support Maria's Ride & help…" +06/18/2018,Sports_celeb,@WWERomanReigns,"Match-by-match, city-by-city. That’s what’s built the #RomanEmpire. Every time I walk in the ring, it’s an opportun… https://t.co/znQmkqAy3b" +06/17/2018,Sports_celeb,@WWERomanReigns,"Everyone wants to make a name. +They better be ready to fight for it. Because I always am. +#MyYard #B2R #MITB" +06/16/2018,Sports_celeb,@WWERomanReigns,"RT @WWE: .@WWERomanReigns looks to make Melbourne Australia's @MCG his yard on Saturday, October 6. Believe that. #WWESSD https://t.co/4eqm…" +06/09/2018,Sports_celeb,@WWERomanReigns,Big words from a scared man. You want to make a challenge? Get ready for the biggest fight of your career. Just ano… https://t.co/i8Nt07VkkQ +06/07/2018,Sports_celeb,@WWERomanReigns,RT @WWE: #TheBigDog @WWERomanReigns walks the red carpet at #WWEFYC! https://t.co/n2sublAPsn +06/07/2018,Sports_celeb,@WWERomanReigns,"Proud to take part in the first #WWEFYC. @WWE and its Superstars have created so many memories over the years, it w… https://t.co/JvJlimHuTX" +06/04/2018,Sports_celeb,@WWERomanReigns,Yes ma’am. Best days are always ahead. Keep working at it. #YouCanYouWill #Progression https://t.co/oBK1LH1tss +06/02/2018,Sports_celeb,@WWERomanReigns,"RT @WWEShop: Unleash the #BigDog! New @WWERomanReigns tee now available at #WWEShop. #WWE #RomanReigns +https://t.co/xHhn7mdzvo https://t.co…" +05/28/2018,Sports_celeb,@WWERomanReigns,"In honor of Memorial Day, Monday #WWE will donate 10% of all #WWEShop proceeds to @HireHeroesUSA. Gear up and suppo… https://t.co/AGXYW1ZOvF" +05/27/2018,Sports_celeb,@WWERomanReigns,"First of all, it was a grown man that approached me while I was feeding my sons breakfast and talking to my daughte… https://t.co/q8TxUEYtfz" +05/26/2018,Sports_celeb,@WWERomanReigns,My heart and prayers go out to you and your family. Stay strong and continue spreading the word. A difference can… https://t.co/jyuzgHZBy6 +05/22/2018,Sports_celeb,@WWERomanReigns,He took his shot last night. He’ll see what it’s like to step out of line in #MyYard at #MITB. #B2R https://t.co/envvqrHlv1 +05/19/2018,Sports_celeb,@WWERomanReigns,#WWEParis was great!!! Headed to see the Eiffel Tower for the first time ever!!! #WWE +05/17/2018,Sports_celeb,@WWERomanReigns,"Today is NF awareness day! Help spread awareness! + +Neurofibromatosis (NF) is an incurable genetic condition that c… https://t.co/GCari7s98N" +05/15/2018,Sports_celeb,@WWERomanReigns,"Last week you stepped up. +This week you got knocked down. +Be smart. Stay there. #B2R #Raw" +05/13/2018,Sports_celeb,@WWERomanReigns,"Might have made a name for yourself elsewhere, but I wouldn’t plan on making it off mine. This is #Raw and it’s… https://t.co/XXTm6X7149" +05/07/2018,Sports_celeb,@WWERomanReigns,"If the briefcase is the only way to get back what is rightfully mine, so be it.... +#MITB is my golden ticket. #Raw https://t.co/ySHU1kcWEF" +05/07/2018,Sports_celeb,@WWERomanReigns,"It’s not always about titles...it’s about respect and proving who runs the yard. +Another night. Another point made. #B2R #WWEBacklash" +05/02/2018,Sports_celeb,@WWERomanReigns,It’s important to support young female athletes in every sport because one day...it’ll be #TheirYard. #SheIs https://t.co/UJ7RoBhXBd +05/02/2018,Sports_celeb,@WWERomanReigns,"Selfie videos on #Raw, all over Brock’s jock on #SDLive....busy week for Samoa Joe. + +.. Lots of talk for a man who’… https://t.co/D0aKQpxMsA" +04/27/2018,Sports_celeb,@WWERomanReigns,"Nothing in @WWE has ever been “given” to someone. You have to take every inch, especially from an athlete like Broc… https://t.co/kAouIoeLpQ" +04/26/2018,Sports_celeb,@WWERomanReigns,"RT @Turki_alalshikh: أعظم حدث في تاريخ WWE 💪🏼 + +هنا في السعودية 🇸🇦 + + #أعظم_رويال_رامبل https://t.co/mQ7Zg0H5De" +04/25/2018,Sports_celeb,@WWERomanReigns,Huge thanks to all the @Redskins staff and players for sharing their great facility with @TitusONeilWWE and myself.… https://t.co/RZvS8nJb1Z +04/24/2018,Sports_celeb,@WWERomanReigns,"Been wheels up for two weeks. +South Africa, St. Louis, now Saudi Arabia for #WWEGRR. Luggage is gonna be a little… https://t.co/3AAxZfvPBT" +04/18/2018,Sports_celeb,@WWERomanReigns,Long way to go to get your ass whooped... #WWECapeTown https://t.co/HAjpyCAXfV +04/17/2018,Sports_celeb,@WWERomanReigns,I miss my Brother so much. He will be forever loved and never forgotten. #RIPMatt +04/10/2018,Sports_celeb,@WWERomanReigns,"Any show. +Any city. +Any country. +Any opponent. + +I’ll fight. #B2R https://t.co/Skgobxjkva" +04/08/2018,Sports_celeb,@WWERomanReigns,"One match at a time. +Every night on the road, every mile traveled, every day away from home leads here. + +To the m… https://t.co/qU20F3oL7r" +04/07/2018,Sports_celeb,@WWERomanReigns,The Empire WILL bring the fight to The Beast tomorrow! So get this shirt today at the WrestleMania SuperStore at A… https://t.co/fnpoJpZaEH +04/07/2018,Sports_celeb,@WWERomanReigns,"That’s why I don’t sell the negativity, I have the most loyal supportive fans in the world! Don’t worry tho... It… https://t.co/ihVjj2V7VK" +04/07/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@Jarrius lit up the room as he accepted the #WarriorAward at the 2018 #WWEHOF! https://t.co/voexZ1QrlY https://t.co/ARqgZF1dKH +04/07/2018,Sports_celeb,@WWERomanReigns,"I always got your back @Jarrius ...thanks for always having mine! +Congratulations on your #WWEHOF induction my man! https://t.co/oNkjSS4qLk" +04/06/2018,Sports_celeb,@WWERomanReigns,RT @JimmyTraina: So @WWERomanReigns was nice enough to come on my podcast. I asked him about being 42 years old. He's 32 years old. So much… +04/04/2018,Sports_celeb,@WWERomanReigns,RT @NBCSports: .@HeymanHustle: Working with @WWERomanReigns would be an absolute career defining moment for me https://t.co/HMwuZRok5N http… +03/27/2018,Sports_celeb,@WWERomanReigns,Creepy. https://t.co/kKXalXvtSX +03/06/2018,Sports_celeb,@WWERomanReigns,You'll always know where I stand. Because you know where I stand. Every week. #Raw +02/26/2018,Sports_celeb,@WWERomanReigns,"3 years in the making. +4 times in a row. +The Main Event. +@WrestleMania #ReignsvsLesnar" +02/25/2018,Sports_celeb,@WWERomanReigns,"Old saying: What’s old, +is new. Learn from the past, and create something new. When in doubt just do you.… https://t.co/TD8E5Dfabt" +02/20/2018,Sports_celeb,@WWERomanReigns,You live to fight another day. Respect to @WWERollins for going over an hour in the ring on #Raw...but at… https://t.co/XyA3fqvdip +02/20/2018,Sports_celeb,@WWERomanReigns,"No. A Samoan is “basically” a Samoan, and we are extremely proud of our culture. But if u did any research at all,… https://t.co/sNWZmIaof5" +02/18/2018,Sports_celeb,@WWERomanReigns,"Sunday.... +Monday... +Any day of the week. It's always #OneVersusAll. +#WWEChamber #GauntletMatch https://t.co/aS6H8iLxPt" +02/13/2018,Sports_celeb,@WWERomanReigns,"At #WWEChamber 7 men may enter, but only one is going to the main event of #WrestleMania... me. +#WitnessMe #4x" +02/09/2018,Sports_celeb,@WWERomanReigns,".@WWEUK, the Big Dog is coming back in May... https://t.co/erlSdskXbl https://t.co/MYC13X2xRu" +02/09/2018,Sports_celeb,@WWERomanReigns,RT @WWECommunity: #WWE celebrates #BlackHistoryMonth - Memphis Sanitation Strike @NCRMuseum https://t.co/J5KImo1sI1 +02/06/2018,Sports_celeb,@WWERomanReigns,Head down. Clear path. I’m going to #WrestleMania. #4x #WWEChamber #WitnessMe https://t.co/shuvJ3n17I +02/04/2018,Sports_celeb,@WWERomanReigns,"The road to #WrestleMania is clear. I’m running through every roadblock put in my way. #Raw, #WWEChamber, and then… https://t.co/uvIRW27jzx" +01/30/2018,Sports_celeb,@WWERomanReigns,RT @Haloti_Ngata92: You the man @WWERomanReigns Much respect brother. https://t.co/ccvkaBqvtR +01/29/2018,Sports_celeb,@WWERomanReigns,A lot of excitement around last night’s #RoyalRumble but don’t think I’ve forgotten about Miz. I’m taking back what… https://t.co/5b3bbodzGM +01/27/2018,Sports_celeb,@WWERomanReigns,"Trip, you’re going to @WWE @WrestleMania! Thanks to @MakeAWish and @JimmysSeafood for helping bring his wish to rea… https://t.co/4cTQIcaozl" +01/23/2018,Sports_celeb,@WWERomanReigns,#Raw25 was a special night for @WWE and Brooklyn didn’t disappoint. Not the outcome I was expecting but every day i… https://t.co/FME0aKnj8e +01/22/2018,Sports_celeb,@WWERomanReigns,"A busy day in NYC and we’re just getting started. Thanks to @NYSE and my new buddy Abraham. + +Time to go to work, r… https://t.co/yPSzqCHf5E" +01/22/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns had another successful night at #WWEBinghamton. Now it’s on to #RAW25! #BelieveThat https://t.co/nycvhgjoL6 +01/16/2018,Sports_celeb,@WWERomanReigns,"RT @WWEShop: Say ""This is My Yard"" with the new @WWERomanReigns authentic t-shirt at #WWEShop. #WWE #RomanReigns +https://t.co/sNuOWm3R2u ht…" +01/16/2018,Sports_celeb,@WWERomanReigns,I’m representing myself AND my family... #RawOGs #TheBloodline https://t.co/JvP0vnTcwo +01/14/2018,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Only 20 hours left to Vote https://t.co/H80OMnmwCk for Gulf Islands National Seashore so help your #850Boyz @WWERomanR… +01/12/2018,Sports_celeb,@WWERomanReigns,So your saying my punch is fit for the Big screen...🤔. Thanks!! 👍🏽But you might want to go back and check those GT… https://t.co/yNXot5Rdze +01/12/2018,Sports_celeb,@WWERomanReigns,"Miz’s workout consist of wearing 20lbs(Btw don’t go to heavy now!), walking around and making videos. 😂 #Raw is go… https://t.co/GiEqmEW2fH" +01/09/2018,Sports_celeb,@WWERomanReigns,Miz will get his rematch for the #ICTitle at #Raw25....only if he makes it out of #Raw next week. #WitnessMe +01/09/2018,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Help out your #PENSACOLABOYZ and vote GULF ISLANDS NATIONAL SEASHORE at https://t.co/H80OMnmwCk @WWERomanReigns @WWEUso… +01/08/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@SashaBanksWWE and @WWERomanReigns listen to the iconic words of #MLK at @NCRMuseum in #Memphis. https://t.co/APhhzFPXCF +01/08/2018,Sports_celeb,@WWERomanReigns,"Surrounded by history in the @NCRMuseum in #Memphis. Treat each other right, respect the struggles of the past, cre… https://t.co/6djq4zafBE" +01/02/2018,Sports_celeb,@WWERomanReigns,Help @Haloti_Ngata92 and his family continue their amazing generational service. Watch this and you’ll understand.… https://t.co/Wijd3mvTLK +01/02/2018,Sports_celeb,@WWERomanReigns,"No rules, house rules... no matter what: I reign. +#WitnessMe #AndStill #Raw" +12/30/2017,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns comments on the stipulation that he will LOSE the #ICTitle Championship if he is Disqualified against @SamoaJoe t… +12/26/2017,Sports_celeb,@WWERomanReigns,"Worth every penny. +No time to worry... +Tonight I’m in NYC at #WWEMSG #WitnessMe https://t.co/sfdiCpsV5u" +12/26/2017,Sports_celeb,@WWERomanReigns,"I’m a man of my word. +If you hurt my brother, I WILL hurt you. +Just ask @SamoaJoe. +#WitnessMe #Raw" +12/23/2017,Sports_celeb,@WWERomanReigns,"RT @WWEArmstrong: Hey Charles, your a good man!THIS is why we do WHAT WE DO!!Merry Christmas!!! @TripleH @WWERoadDogg @ScrapDaddyAP @ringfo…" +12/21/2017,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Ok guys help out the #850 and please vote GULF ISLANDS NATIONAL SEASHORE! @WWERomanReigns @WWERoadDogg @WWEUsos @MichaelP… +12/21/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: 👨🏽‍🍳 The Stage Is Set! 📺TOMORROW NIGHT! Chef Tony takes on @bflay on #BeatBobbyFlay! Coincidentally, the episode is titl…" +12/12/2017,Sports_celeb,@WWERomanReigns,RT @Haloti_Ngata92: Help me win this year’s charity challenge by tweeting #WPMOYChallenge  + Ngata. $25K could go to my foundation! Please… +12/12/2017,Sports_celeb,@WWERomanReigns,Good luck Uso!! #WPMOYChallenge + Ngata 🤙🏽 https://t.co/i9rUJeVW5p +12/12/2017,Sports_celeb,@WWERomanReigns,"Say what you want about @WWECesaro but the man is one of a kind in the ring. +Mad respect for the fight he brought… https://t.co/q1lZYycuOD" +12/10/2017,Sports_celeb,@WWERomanReigns,"Defended the #ICTitle in front of some of the best crowds in #WWEAbuDhabi and @WWEIndia. +Next stop is #Raw. +Next… https://t.co/Ow2kfjcrmu" +12/09/2017,Sports_celeb,@WWERomanReigns,...and sometimes you wanna see if you can still play the game. #AndStill #NextStopNewDelhi https://t.co/pjibscCIuk +12/05/2017,Sports_celeb,@WWERomanReigns,It’s an open challenge to anyone. Anyone named Samoa Joe. #Raw https://t.co/gECSqGSA9h +12/03/2017,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: ALWAYS the 1st and BEST ornament on the 🌲! #PensacolaBeachSIGN #850 @WWEUsos @WWERomanReigns @MichaelPSHayes1 @WWERoadDog… +11/29/2017,Sports_celeb,@WWERomanReigns,RT @WWERollins: ...Time to call up the Lunatic. #TheShield is about to have alllll the titles. #BreakTheBar #BelieveThat #Raw +11/21/2017,Sports_celeb,@WWERomanReigns,"Wherever I am, consider it My Yard. +So if you want my title... +...all you have to do is step up. #Raw https://t.co/jjJaklC5fF" +11/20/2017,Sports_celeb,@WWERomanReigns,Roll with #TheBigDog. Protect the yard. Only available in the WWE Slam Crate. Use code BIGDOG15 for 15% off:… https://t.co/C4bRlqoniG +11/20/2017,Sports_celeb,@WWERomanReigns,"Nobody leads #TeamRed like #TheShield. + +Red - 1 +Blue - NAAAAAAAHHTING! + +#SurvivorSeries" +11/16/2017,Sports_celeb,@WWERomanReigns,"We’re both repping #Raw at #SurvivorSeries but... +Dec 8th in #WWEAbuDhabi + +The Big Dog vs The Game. +THE MAIN EVENT… https://t.co/KKvvP0lUzu" +11/15/2017,Sports_celeb,@WWERomanReigns,RT @MCWWrestling: Sign up for @WWEMercury’s Finishing Class TODAY & learn from the man that was recently referred to as the 4th member of #… +11/15/2017,Sports_celeb,@WWERomanReigns,"It’s been a wild 24 hours, but there is no doubt....the Big Dog is back. +#JustAskSmackdown" +11/14/2017,Sports_celeb,@WWERomanReigns,RT @WWE: EXCLUSIVE: If we've established one thing... It's that #TheShield likes to FIGHT! #RAW https://t.co/SRaH2e5zPM +11/14/2017,Sports_celeb,@WWERomanReigns,Good to be Home! And.... A great win against VT!!! Looks like the real Tech showed up on Saturday! #OurYard https://t.co/eUvz8ttyCN +11/14/2017,Sports_celeb,@WWERomanReigns,Glad yall could check me out tonight. Always a blessing to catch up with the Brothers you went to battle with on t… https://t.co/WcRUCOkbEw +11/08/2017,Sports_celeb,@WWERomanReigns,Actually I’m closer to 275. I’m also 6 inches taller than “Big” but not that “Tall” E. 😱 https://t.co/YTa2GpPNt5 +11/01/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: Sit down with The #HoundsOfJustice on#TableFor3, immediately after #RAW on @WWENetwork! @WWERollins @TheDeanAmbrose @WWERomanReign…" +10/19/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: For the first time in three years, it was once again time for @WWERomanReigns @WWERollins and @TheDeanAmbrose to make that walk...…" +10/18/2017,Sports_celeb,@WWERomanReigns,Rotten. 🤢 https://t.co/AvnvJlulYD +10/17/2017,Sports_celeb,@WWERomanReigns,Rough night but these little angels made it all worth it!!! So grateful. #Family #Raw https://t.co/3arsgYmu6L +10/17/2017,Sports_celeb,@WWERomanReigns,RT @SashaBanksWWE: @TitusONeilWWE @WWERomanReigns @WWE Loved her! She is so adorable +10/17/2017,Sports_celeb,@WWERomanReigns,Inspiration! Love you Kit Kat! https://t.co/nLHnWxhn6R +10/15/2017,Sports_celeb,@WWERomanReigns,"Before we burn down #WWETLC, The Shield will own #Raw and claim Portland, OR as OUR Yard. #Workhorses https://t.co/PtIGFXNJVz" +10/15/2017,Sports_celeb,@WWERomanReigns,I don’t even need to click the link and watch it. If that house didn’t draw over 100K. He’s just talking silly.… https://t.co/8THJFGi3EZ +10/15/2017,Sports_celeb,@WWERomanReigns,"If you didn’t completely screw this tweet up. It would have been great!That’s their mountain, I’m here to build my… https://t.co/S9obn8cbTt" +10/14/2017,Sports_celeb,@WWERomanReigns,Me and my boys beat the DX! No need to celebrate them. #TheRealestGeneration is what I celebrate and represent. https://t.co/fQpLu42ZnP +10/13/2017,Sports_celeb,@WWERomanReigns,RT @WWEIndia: Tickets for #WWELive in #India are now open! Book them here: https://t.co/r7RdyuQVEp https://t.co/LKpy3rFCKq +10/11/2017,Sports_celeb,@WWERomanReigns,RT @WWE: Don't miss @WWERomanReigns and @BraunStrowman collide inside a #SteelCage LIVE NEXT MONDAY on #RAW at 8/7c on @USA_Network! https:… +10/04/2017,Sports_celeb,@WWERomanReigns,RT @WWE: We stand with Las Vegas. #VegasStrong https://t.co/3koBr5poCV +10/03/2017,Sports_celeb,@WWERomanReigns,Sons & daughters. Brothers & sisters. All innocent. God bless those affected & prayers for a future w/o this violence. #PrayForLasVegas +09/30/2017,Sports_celeb,@WWERomanReigns,RT @BookerT5x: Only 1 hour left on @WWERomanReigns gloves! https://t.co/4WqBlUDmkr @eBay +09/30/2017,Sports_celeb,@WWERomanReigns,Guest!!!!???? 😂 Ima produce the damn thing!!! https://t.co/o5AcRWFgWP +09/30/2017,Sports_celeb,@WWERomanReigns,"Strong win at home for Georgia Tech. +So happy I caught the 2nd half! Go Tech!! #UNCvsGT #OurYard" +09/27/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: Two HUGE main event matches await you next week on #RAW, LIVE on @USA_Network! https://t.co/J937HR8vtN" +09/26/2017,Sports_celeb,@WWERomanReigns,RT @JimmysSeafood: Roman Reigns proudly sporting our latest @UnderArmour sleeveless hoodie before his match with John Cena. #RomanEmpire #T… +09/25/2017,Sports_celeb,@WWERomanReigns,... but make no mistake. I'm still the #TopDog in this yard. +09/25/2017,Sports_celeb,@WWERomanReigns,"Whether u exchange harsh words or harsh blows, u don't leave a fight w/o respect for a warrior +Respect for past, present & hopefully future." +09/24/2017,Sports_celeb,@WWERomanReigns,"I don't come up with catchy slogans. +My life isn't a corny catchphrase. +I was born to reign. + +Tonight, you'll see why. #WWENoMercy" +09/21/2017,Sports_celeb,@WWERomanReigns,"RT @BookerT5x: Here are @WWERomanReigns’ signed gloves! Please bid, all money going to hurricane victims. https://t.co/4WqBlUDmkr https://t…" +09/20/2017,Sports_celeb,@WWERomanReigns,"RT @BCampbellCBS: #InThisCorner podcast: WWE + +@WWERomanReigns talks Cena feud, his 'big dog' moment & when wrestling made him cry + +https://…" +09/19/2017,Sports_celeb,@WWERomanReigns,"RT @TheKostos: .@BCampbellCBS and I just sat down for 25 minutes with @WWERomanReigns. + +It was awesome. + +It will post on this week's #InTh…" +09/17/2017,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns gives a special thank you to the @WWEUniverse after a successful tour of Australia and New Zealand! #WWELive http… +09/17/2017,Sports_celeb,@WWERomanReigns,Excellent tour to New Zealand and Australia!!! Proud of the #RedCrew . Headed back to ✈️ San Jose for #Raw . #FinishStrong #GoHomeBabe +09/11/2017,Sports_celeb,@WWERomanReigns,"#NeverForget the ones we lost on 9/11. +#NeverForget our armed service men & women. +#NeverForget the freedom we enjoy. +Remember. Honor. Them." +09/10/2017,Sports_celeb,@WWERomanReigns,"Faithless fool. When your time on earth is done, enjoy nothing. https://t.co/gUyNMSZNDU" +09/09/2017,Sports_celeb,@WWERomanReigns,My prayers go out to everyone dealing with Hurricane Irma. May God bless and protect all those in its path. #BeSafe +09/08/2017,Sports_celeb,@WWERomanReigns,You must be asking people on twitter for insults 😂😂 and aren't you a bit old to smack talk online??? See me at #Raw… https://t.co/g0tBlIS6dR +09/08/2017,Sports_celeb,@WWERomanReigns,"Bad things happen when you try to think John. No worries, just have someone film you power cleaning for the 5000th… https://t.co/3xlO5Bnr0A" +09/07/2017,Sports_celeb,@WWERomanReigns,"Looking forward to seeing the #RomanEmpire in Nashville.. +Get your VIP tix to see me @WizardWorld this Sunday, 9/10 +https://t.co/ghOztNdaL2" +09/05/2017,Sports_celeb,@WWERomanReigns,"RESPECT isn't earned with words. +It's earned by action. +He does the talking and I'll do the walking. #WWENoMercy" +08/30/2017,Sports_celeb,@WWERomanReigns,Doing the most important job on Earth: loving on my kids! 😍 https://t.co/ghfvmPebtW +08/29/2017,Sports_celeb,@WWERomanReigns,"Thank you to all the emergency workers in #Houston. It's important to take care of one another. +https://t.co/NM1rInwz0R" +08/26/2017,Sports_celeb,@WWERomanReigns,RT @NEPWildcatsFB: NEP Wildcats getting a big TD run from nephew of @WWERomanReigns. Great run by Iliyas Fuavai! Go Wildcats! https://t.co/… +08/24/2017,Sports_celeb,@WWERomanReigns,Such a Good Brother! Thank you for being so generous and kind. God bless you! 🙏🏽🤙🏽 #JimmysSeafood #RomanEmpire https://t.co/calBAfiEDK +08/23/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: For every ""like"" this tweet receives by noon Thursday (8/24), we will donate $1 to @MakeAWish! #TeamworkMakesTheDreamWor…" +08/23/2017,Sports_celeb,@WWERomanReigns,"The simple question here is to the Kids. Would you rather grow up and be like me, OR the guys from this video!??😂 https://t.co/45OtF2x1Fq" +08/22/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: A war-torn @WWERomanReigns went on @SportsCenter to discuss an INCREDIBLE @SummerSlam! +https://t.co/T1Qv2HxHE8" +08/21/2017,Sports_celeb,@WWERomanReigns,Always a pleasure! Thank u for having me. 🤙🏽 https://t.co/qfy25fqjOX +08/21/2017,Sports_celeb,@WWERomanReigns,This is what really went down! I took what I thought was MY biscuit but @RonKillings def took that Apple Pie. 👀… https://t.co/UV895YEp5M +08/18/2017,Sports_celeb,@WWERomanReigns,That's a lot of hungry babies!! My family definitely isn't scared of reproducing.😂 Thank God 🙌🏽for the work!!🤼‍♂️🤙🏽… https://t.co/0BNRNgeWYJ +08/17/2017,Sports_celeb,@WWERomanReigns,"RT @JimmyTraina: ""I had thousands of people doing exactly what I wanted."" -- @WWERomanReigns to me on his famous post-Mania promo. https://…" +08/17/2017,Sports_celeb,@WWERomanReigns,"RT @JimmyTraina: My Off The Board podcast w @WWERomanReigns is up. Match vs @JohnCena, post-Mania promo, the boos & hate all covered: https…" +08/14/2017,Sports_celeb,@WWERomanReigns,Sorry my man!! @GameOfThrones is my main show right now!! But I'll def check it out. Thanks for another good tal… https://t.co/1tAlRLl3OK +08/01/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: The Big Dog @WWERomanReigns is featured on our new 4K FamousVision screens, installed in time for #SummerSlam, #Mayweath…" +08/01/2017,Sports_celeb,@WWERomanReigns,"I don't like to list my resume... +That's why I go to the ring and explain through my actions. +#SummerSlam #NeverLied #B2R" +07/24/2017,Sports_celeb,@WWERomanReigns,"Real tough guy on Twitter. If u want it, you know the way to MY Yard. #Raw https://t.co/UUSRaQnMVB" +07/24/2017,Sports_celeb,@WWERomanReigns,"Told yall I'm The Big Fight. Heard Philly was a little quiet tonight, better bring their best when we return!!… https://t.co/NZENv8Tfuq" +07/17/2017,Sports_celeb,@WWERomanReigns,The main event is where I belong and where I'll be at #SummerSlam. #TheGuy #MyYard #Raw +07/16/2017,Sports_celeb,@WWERomanReigns,Hope this helps out Rami Bluuuuuuht!!!! It's nice to be nice! Help if u can or spread the word! #SamiForSyria! https://t.co/bn7NZza3Dz +07/16/2017,Sports_celeb,@WWERomanReigns,I'll match that. 10K it is! Now we need to talk about scheduling....🤔 Hit me Monday my Good Brother! https://t.co/vLd05xEgmf +07/15/2017,Sports_celeb,@WWERomanReigns,Charity tournament? Lil bit of fun and a good cause... Thousand $ buy in?... or should we up the Anti... https://t.co/CABpFjLnX8 +07/14/2017,Sports_celeb,@WWERomanReigns,Hey @WWEShop send me a pack of these please! #QuietBeers https://t.co/ogLY8xZ0NE +07/10/2017,Sports_celeb,@WWERomanReigns,I repeat. #WWEGBOF https://t.co/JzNvJUIRs3 +07/09/2017,Sports_celeb,@WWERomanReigns,I've left Dallas with the @WWE World Heavyweight Championship before. Tonight I'm leaving @BraunStrowman in an ambulance. #MyYard #WWEGBOF +07/08/2017,Sports_celeb,@WWERomanReigns,Never met a hater in real life folks! Thanks #WWEMSG !!! https://t.co/ggrAqE0GWZ +06/29/2017,Sports_celeb,@WWERomanReigns,Great to be back!!! 🤙🏽🇯🇵 #Blessed https://t.co/gXWXErsTJP +06/19/2017,Sports_celeb,@WWERomanReigns,RT @USA_Network: Don't miss @WWERomanReigns make his big Summer Slam announcement on an all-new @WWE #Raw TONIGHT at 8/7c https://t.co/gZ03… +06/19/2017,Sports_celeb,@WWERomanReigns,We held them to 49 yards total offense that game. In their own house! #OurYard https://t.co/xiSTEoAm6U +06/18/2017,Sports_celeb,@WWERomanReigns,Happy Father's Day to my Dad and all the others out there. Wish i was home with the Wife and Kids but I'm def missi… https://t.co/ofUBxxUZRc +06/15/2017,Sports_celeb,@WWERomanReigns,RT @JoeVilla_ME: Good people. Check out the link below and help this young lady if you can. Her dad is one of the best people I know https:… +06/15/2017,Sports_celeb,@WWERomanReigns,"Not everyone is going to like what I say, but you don't want to miss it. +My Yard. My Rules. +#Raw #BornToReign https://t.co/r3T1h5Ofpq" +06/13/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: Updated Free Crabcakes For Life List... + +1) @WWERomanReigns +2) @jmac___19 +3) @CrushD19 +4) Manny Machado +5) @JJacks_44…" +06/13/2017,Sports_celeb,@WWERomanReigns,"Oh yea, 🙄I forgot they are ""jobbing"" for free! 😂Clueless #DumbAssMark. BTW all our schedules and responsibilities… https://t.co/bhRH6o5NOw" +06/13/2017,Sports_celeb,@WWERomanReigns,Yea I guess working my butt off 5 days a week while being away from my wife and kids for the last 7 years is being… https://t.co/eKbI6x73Ns +06/12/2017,Sports_celeb,@WWERomanReigns,Let ME give you a tip amateur. @WWE is the Top of the Mountain in Pro Wrestling. A view you'll never deserve or g… https://t.co/lmhHBZcqLU +06/12/2017,Sports_celeb,@WWERomanReigns,Watching my lil girl swim and ride the water slide. Huge thanks to Red Lerille's gym for all the hospitality!! Gre… https://t.co/iSq61VM6ZV +06/06/2017,Sports_celeb,@WWERomanReigns,RT @WWEShop: https://t.co/ubJvWreGR0 https://t.co/7eyIs7aW4y +06/06/2017,Sports_celeb,@WWERomanReigns,Ahhhh yessir!!!! Florida boys out there wrecking it!!! #850 🤙🏽 https://t.co/ow1HS96y2F +06/06/2017,Sports_celeb,@WWERomanReigns,Would love to get some batting practice in some day. See if the old Dog still has it!!! #ChicksDigTheLongBall AKA… https://t.co/9vT2XLyouZ +06/06/2017,Sports_celeb,@WWERomanReigns,"If they wanna keep getting up... +I got no problem knocking em down. #SupermanPunch #BornToReign #IronFistofWWE… https://t.co/7ntqHxIKSp" +06/05/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: 🎂 Belated birthday celebrations with the family. Always exciting catching up with Big Uce, @WWERomanReigns! 🤙🏾 https://t…" +06/04/2017,Sports_celeb,@WWERomanReigns,"Tonight I may bend, but the other 4 guys will break. I am The Big Fight! #MyYard #BornToReign #ExtremeRules" +05/31/2017,Sports_celeb,@WWERomanReigns,RT @lukeowensEFC: @WWERomanReigns. Roman celebrating my 30th birthday today. Any chance of a birthday RT from the big dog https://t.co/uas8… +05/30/2017,Sports_celeb,@WWERomanReigns,"As I said tonight, no one OWNS me. #ReignsVsRollins #Raw #BornToReign" +05/29/2017,Sports_celeb,@WWERomanReigns,Whether I stand with or against @WWERollins...#Raw is and will always be #MyYard! #ReignsVsRollins +05/28/2017,Sports_celeb,@WWERomanReigns,"Sorry about the bad week. Just remember, as long as we wake up. Life is good. Oh yea! HBD by the way. 😉 https://t.co/NWs7D142bK" +05/26/2017,Sports_celeb,@WWERomanReigns,RT @Jarrius: Happy birthday to one of the my favorite wrestler @WWERomanReigns your the best and thank you for everything you do for me😎😎😎… +05/23/2017,Sports_celeb,@WWERomanReigns,"I know it took awhile, but I'm proud to present the coolest tee I think I've ever had! Get em while you can!… https://t.co/8XNBIQO17l" +05/17/2017,Sports_celeb,@WWERomanReigns,"You can help save a life today. Knowledge is power, spread the word and help us #EndNF 🙏🏽 https://t.co/Y1i1XCFt1e" +05/17/2017,Sports_celeb,@WWERomanReigns,"Learn from these good brothers!!! I did, look at me now!! #Future https://t.co/r23Yl9AoXn" +05/11/2017,Sports_celeb,@WWERomanReigns,Ahhhhhh yessir!!! https://t.co/yXnsH52q78 +05/09/2017,Sports_celeb,@WWERomanReigns,"#WWELille Thank you for tonight!! It's been a tough few weeks, but tonight really lifted my spirits. #Thankful 🙏🏽" +05/07/2017,Sports_celeb,@WWERomanReigns,"Big yard, big clean! As expected. #Respect for repping @GTAthletics. But i know you'd rather be on #WWEUKLive rig… https://t.co/eECqtqhwB6" +04/30/2017,Sports_celeb,@WWERomanReigns,"Tonight it's ONLY about payback... + +#WWEPayback #MyYard" +04/08/2017,Sports_celeb,@WWERomanReigns,"Must be hard being a grown man, that tweets another grown man cartoons. https://t.co/za0vpR532B" +04/07/2017,Sports_celeb,@WWERomanReigns,5-2!!! Where's your brother at!?!? @WWEUsos 😂😂 I'll whoop em both!!! #TwinLife +04/07/2017,Sports_celeb,@WWERomanReigns,4-2!!!!!! Yesssssssir! +04/07/2017,Sports_celeb,@WWERomanReigns,"As of now, I'm leading the series 3-2. So technically @WWEUsos is gettin ""dis work""!!!🤔😂🤙🏽 #AhhhYessir https://t.co/g0yx8PajJh" +04/06/2017,Sports_celeb,@WWERomanReigns,Can't wait to do it again!!! Thanks for a great conversation and a chance to tell SOME of my story. 😉… https://t.co/LOXapR7k2w +04/04/2017,Sports_celeb,@WWERomanReigns,Loudest seg of the show. Maybe the loudest of the past 2 decades. And I could of stood there for another 15 min.… https://t.co/BpWOlvSxMD +04/03/2017,Sports_celeb,@WWERomanReigns,"I did what I had to at #WrestleMania  but it doesn't change the fact Deadman held the yard down for years. +For that..#ThankYouTaker #Respect" +04/02/2017,Sports_celeb,@WWERomanReigns,"Today, I make history @WrestleMania. #WitnessMe" +04/02/2017,Sports_celeb,@WWERomanReigns,Good look lil monster!! 🤙🏽 #TourMVP 😂 https://t.co/CuZXsKl0St +03/31/2017,Sports_celeb,@WWERomanReigns,"RT @IAmJericho: NOW on @TalkIsJericho, @WWERomanReigns talks #GameOfThrones, CFL, #BrockLesnar, #TheUndertaker, moving furniture & #BackOfT…" +03/31/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: A mishap with @WWERomanReigns' suits for @WrestleMania weekend? Luckily, he has the ""best tailor in the world""... #WrestleMania ht…" +03/28/2017,Sports_celeb,@WWERomanReigns,"RT @IAmJericho: It's #WrestlemaniaWeek week on @TalkIsJericho: +Wed- @BigCassWWE +Fri- By popular demand.... @WWERomanReigns! +https://t.co/i…" +03/28/2017,Sports_celeb,@WWERomanReigns,"In 6 days @WrestleMania, I end the legacy of The Deadman." +03/27/2017,Sports_celeb,@WWERomanReigns,My man is ready!! Happy Birthday Jarrius!!! Hope I see you in Orlando!! 🤙🏽 https://t.co/RWdNSn9hO8 +03/23/2017,Sports_celeb,@WWERomanReigns,You must of been sleep somewhere for the past couple years! #CustomMade https://t.co/1pZOKzcqCI +03/23/2017,Sports_celeb,@WWERomanReigns,"Chris did it again!! Wait til yall see the ""After"" pic!!! https://t.co/Bfx1Jb68ZW" +03/22/2017,Sports_celeb,@WWERomanReigns,If your trying to eat clean and get big. Look up https://t.co/s0wo69Sb87. What a great crew to work with! Huge Th… https://t.co/7dMB9fPv1I +06/28/2018,Sports_celeb,@M_Ryan02,"RT @sryan03: Before you have kids, ask yourself if you’re prepared to spend 90% of your day making a compleeeeete ass of yourself for even…" +06/27/2018,Sports_celeb,@M_Ryan02,"WOW! Nothing is given, gotta earn your way in this #WorldCup #KORGER." +06/11/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: HOOOOOP there it is! + +#MattyIceMonday https://t.co/fQOvHHUABL" +05/29/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Happy birthday to the man who never ages, @Matt_Bryant3! + +RT to show #MoneyMatt💰 some birthday love. https://t.co/eKFmp…" +05/22/2018,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: The ❄️man. https://t.co/PxN33pEWZo +05/17/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Make that birthday wish, #MattyIce❄️! https://t.co/BbFD7mrUBw" +05/17/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: That's our QB! Happy Birthday #MattyIce❄️ + +#ThrowbackThursday https://t.co/ctQVNyYbdp" +05/04/2018,Sports_celeb,@M_Ryan02,"#MayTheFourthBeWithYou + +Happy #StarWarsDay + +#InBrotherhood https://t.co/3IU76AdLDI" +04/27/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: The moment he joined the Brotherhood. + +@CalvinRidley1 officially got the call from Thomas Dimitroff, Dan Quinn and Art…" +04/24/2018,Sports_celeb,@M_Ryan02,"Let’s get to work, Atlanta! Big things ahead! #10YearsOf2 https://t.co/5J5cqvX262" +04/24/2018,Sports_celeb,@M_Ryan02,I’ve waited for this day my entire life. Can’t wait to see where I’m drafted. #10YearsOf2 https://t.co/z79WbJbZ9t +04/24/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Time to turn back the clock! ⏰ + +Draft Day, 2008. Tune in throughout the day to relive the 2008 NFL Draft. It all begins…" +04/08/2018,Sports_celeb,@M_Ryan02,#TheMasters Sunday is one of the most exciting days of the year for golf fans. Where will you be watching?… https://t.co/0ByrIVA2eT +04/08/2018,Sports_celeb,@M_Ryan02,Welcome our boys Marshall and Johnny. #Family #DadLife https://t.co/Euo9AuQdsR +04/07/2018,Sports_celeb,@M_Ryan02,It's moving day at #TheMasters! I've selected my favorite players in My Moments on the Masters app. Check it out.… https://t.co/MxFfVmfggL +04/06/2018,Sports_celeb,@M_Ryan02,I’m all tuned into the action with #TheMasters app. Definitely check it out. #IBMAthlete #IBMsports https://t.co/iDnAsgCp4a +04/06/2018,Sports_celeb,@M_Ryan02,Nothing like winning my first plaid jacket during the Matt-sters. Loved my set of #TommyArmour 845s back in the day… https://t.co/wGvO2jWlaR +04/04/2018,Sports_celeb,@M_Ryan02,I'll be at #TheMasters with @IBMSports on Thursday from 12-1PM EST answering your questions. Tweet them using… https://t.co/yFgrvJqw7i +04/03/2018,Sports_celeb,@M_Ryan02,"#TheMasters is finally here. Download the app, sit back and tune in. Thanks for the rundown @briantong! … https://t.co/IPAcYi2he8" +02/28/2018,Sports_celeb,@M_Ryan02,Good luck to all the guys participating in the #NFLCombine2018 #throwback https://t.co/qoXJnq9Ek3 +02/28/2018,Sports_celeb,@M_Ryan02,I see you @PizzaHut. +02/09/2018,Sports_celeb,@M_Ryan02,"RT @MBUSA: This Mercedes-AMG C 43 is heading to New Hampshire to meet its owner, and Last Fan Standing winner, Joshua D. https://t.co/Fhhzr…" +01/25/2018,Sports_celeb,@M_Ryan02,"Congrats to my good friend @RealCJ10. He was one of the greatest competitors I’ve ever seen, and did it all with cl… https://t.co/C308Df1BRk" +01/16/2018,Sports_celeb,@M_Ryan02,I want to take a minute to thank all of the fans for the continued support all season long. We came up short to an… https://t.co/Uw8Qizwv9Z +01/07/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Next up: the Eagles. + +📝 See how we stack up - https://t.co/eOGq2VxwP9 https://t.co/rVgZbsZtKh" +01/07/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""We're not here just to get here."" + +That's our QB. https://t.co/A3oOkBqm1I" +01/01/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""Now we've got more work to do..."" - #MattyIce❄️ https://t.co/esT8qg0oPr" +12/27/2017,Sports_celeb,@M_Ryan02,"Style game strong. Shop my @BananaRepublic picks, including my favorite Rapid Movement Chinos:… https://t.co/i8yc6L8Q3j" +12/22/2017,Sports_celeb,@M_Ryan02,"At @BostonCollege I played in the @IDPotatoBowl, a highlight of my career. Who’s watching it with me this year?… https://t.co/h7sjwj6Rxa" +12/19/2017,Sports_celeb,@M_Ryan02,"So chill in my @BananaRepublic suit. Shop my top picks for the season online now: + https://t.co/CfyewP0Fy9 #BRMens https://t.co/UHI4Pv2mDS" +12/19/2017,Sports_celeb,@M_Ryan02,I hit the juke button like Devonta last night too. #Graceful #InBrotherhood https://t.co/BYfOa6H0DY +12/19/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""Devonta is a special player. He really is"" - #MattyIce❄️ spitting facts. https://t.co/DoyCo6qqX0" +12/09/2017,Sports_celeb,@M_Ryan02,All-time favorites from @bananarepublic. Find your fit: https://t.co/Bq29epOWF1 #BRMens https://t.co/Ba9UCfG64Z +11/27/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 2 newborn babies +2 TD +2 game balls + +#MattyIce❄️ was nothing but smiles talking about @Teco_Raww's big day. https://t.c…" +11/25/2017,Sports_celeb,@M_Ryan02,Had an awesome time going undercover with @Fanatics as an employee inside their @MBStadium Falcons store and surpri… https://t.co/tOz9fJr9bG +11/25/2017,Sports_celeb,@M_Ryan02,"RT @MBUSA: Who won the first ever Mercedes-Benz Stadium Games, @M_Ryan02 or @RickieFowler? You tell us. https://t.co/iFJ5E1bl4z" +11/24/2017,Sports_celeb,@M_Ryan02,"RT @MBUSA: Pro Golfer @RickieFowler took a tour of our brand new stadium, but no one could expect who was waiting for him behind the last d…" +11/21/2017,Sports_celeb,@M_Ryan02,Happy to announce that we're having twins! https://t.co/ZH8RCzrOzN +11/16/2017,Sports_celeb,@M_Ryan02,Feels like home. Wearing my favorite pieces from @bananarepublic. https://t.co/3LcKli5dat #BRMens https://t.co/WFDnbI3Jf9 +11/16/2017,Sports_celeb,@M_Ryan02,When you give a rookie directions to the secret stash of lemon pepper #wings. #ATL #riseup #InBrotherhood https://t.co/tBwCo4BmPZ +11/08/2017,Sports_celeb,@M_Ryan02,My picks for this season? Find them @bananarepublic: https://t.co/3LcKli5dat #BRMens https://t.co/yI2fwmWSyX +11/06/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 8 games into the season, we've played average football. + +#MattyIce❄️ believes we can still improve. https://t.co/oymmH…" +10/31/2017,Sports_celeb,@M_Ryan02,#HappyHalloween2017 https://t.co/uD2UwtuZsf +10/23/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""We got a long way to go. But we've got the right mindset, the right guys that are willing to work..."" - Matt Ryan http…" +10/09/2017,Sports_celeb,@M_Ryan02,"RT @SouthernCompany: Matt Ryan, a leader on the field; Southern Company, a leader in energy. https://t.co/QUUlktCxmT" +10/03/2017,Sports_celeb,@M_Ryan02,Great piece on my friend Pete Frates! Part 1: https://t.co/y1AQC2W8vr Part 2: https://t.co/qFvTgTCgBF His book:… https://t.co/QsOfGDLx2E +10/02/2017,Sports_celeb,@M_Ryan02,My sincerest condolences for all the families and victims affected in Las Vegas. #PrayForVegas +10/02/2017,Sports_celeb,@M_Ryan02,Tough loss yesterday against a very good Buffalo team. We’re going to use this bye week to recharge and refocus. #InBrotherhood #RiseUp +09/26/2017,Sports_celeb,@M_Ryan02,"Classic & smooth, #BTS with @BananaRepublic https://t.co/dlo1HdNpjy" +09/22/2017,Sports_celeb,@M_Ryan02,Fall's begun… Ice is coming #RiseUp https://t.co/nvpUgG4XVQ +09/19/2017,Sports_celeb,@M_Ryan02,Had a great time today with the kids at Tuskegee Airmen Global Academy! #ATLHometownHuddle https://t.co/BPEG9UYdFu +09/14/2017,Sports_celeb,@M_Ryan02,Can’t wait to welcome the @PGATOUR’s 30 best players to Atlanta next week for the @PlayoffFinale! #FedExCup +09/11/2017,Sports_celeb,@M_Ryan02,"Today we honor and +remember the victims of 9/11. We stand united today and always +#NeverForget https://t.co/0GXgmvQSst" +09/11/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""There's no quit from our guys."" - #MattyIce❄️ https://t.co/OoA4LDK8p4" +09/07/2017,Sports_celeb,@M_Ryan02,"RT @PlayersTribune: What’s done is done. + +@M_Ryan02 on what’s next: https://t.co/1so0IfidmY https://t.co/Fs0Paw9HZU" +08/31/2017,Sports_celeb,@M_Ryan02,Get your copy of The Ice Bucket Challenge. A story about my friend @petefrates3 & his fight against ALS https://t.co/RASJRCw6hh #inspiration +08/30/2017,Sports_celeb,@M_Ryan02,#RiseUp #InBrotherhood https://t.co/X4yQW1mO5A +08/28/2017,Sports_celeb,@M_Ryan02,Excited to be part of this great city. #MBAmbassador https://t.co/ZTEOwMDomJ +08/16/2017,Sports_celeb,@M_Ryan02,Fan photoshop art at its best (via Brandon Conn) #RiseUp https://t.co/KpAcIETG5U +08/14/2017,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: #MattyIce❄️ https://t.co/X4ieCmp9Iv +08/10/2017,Sports_celeb,@M_Ryan02,#TBT to my @wpcsports days. #LetsPlayFootball https://t.co/QtX4v8RqBJ +08/10/2017,Sports_celeb,@M_Ryan02,Excited for our first game #MBStadium. Are you? Enter to win a #MercedesBenz at halftime on 9/17!… https://t.co/M6Qx2tr7A8 +08/08/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ***whispers*** + +""Yeah, i'm mic'd. I'm back. I'm mic'd."" + +The MVP, @M_Ryan02, was wired for Military Day! https://t.co/S…" +08/04/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: #MattyIce❄️ is ready. + +📸 Gallery - https://t.co/a6xMKAjkKV https://t.co/Y2sJoydEPC" +08/04/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: You have 2️⃣ more chances to see us work at AT&T Training Camp. + +DETAILS - https://t.co/Q1skOMI8RS https://t.co/5V3XTl…" +08/03/2017,Sports_celeb,@M_Ryan02,Rapid Movement Chinos @bananarepublic… the perfect amount of stretch so they don’t bag out on you. Sold.… https://t.co/vdoiMswzVv +07/31/2017,Sports_celeb,@M_Ryan02,Wishing good luck tomorrow in the final four @TMchallengeALS @petefrates3 https://t.co/rnO9vn42Hh +07/28/2017,Sports_celeb,@M_Ryan02,Jokes and smiles at camp #RiseUp https://t.co/EfFSM1gMk0 +07/27/2017,Sports_celeb,@M_Ryan02,Thanks again to all who came out to @bananarepublic and helped support the launch of Rapid Movement Chinos! #BRMens https://t.co/bh3aUwWS6N +07/26/2017,Sports_celeb,@M_Ryan02,#Mood #InBrotherhood https://t.co/2T6K50p0mc +07/25/2017,Sports_celeb,@M_Ryan02,You're welcome! #RiseUp https://t.co/SvsHzu2r1o +07/25/2017,Sports_celeb,@M_Ryan02,Awesome to meet you today! #RiseUp https://t.co/5glt1Tj0eN +07/25/2017,Sports_celeb,@M_Ryan02,Launching the new Rapid Movement Chinos with @bananarepublic – Ultimate comfort. https://t.co/B957KDLgBK https://t.co/o0Tjj8ScSG +07/19/2017,Sports_celeb,@M_Ryan02,Be sure to tune into @CallawayGolf Live now. https://t.co/jB711zhFG7 https://t.co/ZVEmo1dCoV +07/18/2017,Sports_celeb,@M_Ryan02,Thanks for the ride @mbusa. #MBambassador https://t.co/pFKLw6BPNX +07/18/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: #MattyIce❄️ took his first look of @MBStadium stadium this morning. + +Needless to say, he's amazed. https://t.co/XKsfFR…" +07/13/2017,Sports_celeb,@M_Ryan02,RT @MBUSA: Proud to be a part of a community that refuses to settle for anything but the best. Greatness lives here. https://t.co/iYDxwzKQWw +07/03/2017,Sports_celeb,@M_Ryan02,@petefrates3 keep fighting! We're thinking of you. Cheers to the toughest guy I know https://t.co/Cb9cbdVA3H +06/27/2017,Sports_celeb,@M_Ryan02,You can let defeat destroy you or let it fuel you. #MakeDefeatYourFuel #WinFromWithin @Gatorade #ad https://t.co/iXaYtY4nh3 +06/13/2017,Sports_celeb,@M_Ryan02,Wishing the best to Mike and Roddy. Learned a lot from both of you. Congratulations to 2 great Falcons https://t.co/9aTDHj3Rdu +05/30/2017,Sports_celeb,@M_Ryan02,@juliojones_11 We ran the annexation of Puerto Rico. +05/29/2017,Sports_celeb,@M_Ryan02,Today we remember the men & women who paid the ultimate sacrifice. Thank u to all who've served & continue to serve our country #MemorialDay +05/29/2017,Sports_celeb,@M_Ryan02,With a couple days left to vote we need everyone to VOTE 👇🏼👇🏼 for @TMchallengeALS to raise funds to #StrikeOutALS… https://t.co/49j94E2LDr +05/20/2017,Sports_celeb,@M_Ryan02,Raise your hand if you've voted for @teamchallengeALS https://t.co/ZfnvMX4BoV +05/17/2017,Sports_celeb,@M_Ryan02,Thank you for all the birthday wishes. https://t.co/8QMzu0QqnW +05/09/2017,Sports_celeb,@M_Ryan02,"With less than 30 days to go please help @TMchallengeALS finish 1st out west in @thetournament #StrikeOutALS #ALS +https://t.co/bTttwr7ORd" +05/02/2017,Sports_celeb,@M_Ryan02,The route was sharp but I'm sure she'd get fined for the celebration #RiseUp https://t.co/JurVMmyVBM +04/28/2017,Sports_celeb,@M_Ryan02,Welcome to the @AtlantaFalcons @Takk! Happy to have you #InBrotherhood. https://t.co/gPj1HQmwDA +04/27/2017,Sports_celeb,@M_Ryan02,Thank you everyone for voting. @tmchallengeALS @thetournament https://t.co/hy7BwQCzGL +04/25/2017,Sports_celeb,@M_Ryan02,"This Saturday, I'll be appearing @GTSportsMkt Autograph Event @GSEC courtesy of @Fanatics & @FansAuthentic ! #RiseUp https://t.co/1g00vbbCGj" +04/21/2017,Sports_celeb,@M_Ryan02,"I want to congratulate and welcome to the BC family, athletic director Martin Jarmond. https://t.co/J9WVZXH5cF" +04/17/2017,Sports_celeb,@M_Ryan02,Go vote for @tmchallengeALS in @thetournament 🏀 this summer. Help them raise awareness/funds for ALS. https://t.co/Kv1YIgD7KI +04/04/2017,Sports_celeb,@M_Ryan02,#404Day https://t.co/lZ4ypklF51 +04/03/2017,Sports_celeb,@M_Ryan02,Help raise awareness for ALS. Vote for @TMchallengeALS. @alsassociation @thetournament https://t.co/D8z3hvoBa9 +03/08/2017,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: We can't do what we do without the amazing women in our lives who inspire us. #InternationalWomensDay https://t.co/X3jA… +02/09/2017,Sports_celeb,@M_Ryan02,Thank you fans #RiseUp https://t.co/8fgJlNgo1P +02/06/2017,Sports_celeb,@M_Ryan02,We came up short last night and my heart hurts for you Atlanta. Hats off to New England they… https://t.co/mIX4Tca7ni +01/23/2017,Sports_celeb,@M_Ryan02,Super Bowl LI bound! #RiseUp #InBrotherhood https://t.co/Zki8VBo9PA +01/23/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: This is for YOU, Atlanta. + +#RiseUp https://t.co/1nhP4jCsT1" +01/11/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Let's unite #InBrotherhood. + +Change your Twitter avatar to officially join our Brotherhood. https://t.co/vcOnzBAYQU" +12/25/2016,Sports_celeb,@M_Ryan02,Merry #Christmas! #RiseUp https://t.co/wl4zbRTn4i +12/22/2016,Sports_celeb,@M_Ryan02,When you open that first gift and it’s socks… #HappyHolidays #RiseUp https://t.co/PxZVbHF1rP +12/15/2016,Sports_celeb,@M_Ryan02,Extending my deepest condolences to the family and friends of Craig Sager. May he rest in peace #SagerStrong +12/15/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Matt Ryan is the Falcons Walter Payton Man of The Year nominee. + +RT to help him win a donation for @childrensatl. + +#R…" +12/12/2016,Sports_celeb,@M_Ryan02,"Honored to be a Walter Payton Man of the Year award nominee. Help us win the @nationwide charity challenge, tweet… https://t.co/JynTxNEU0c" +12/07/2016,Sports_celeb,@M_Ryan02,"Honored to be nominated for this prestigious award, #WPMOY #ThankYou #RiseUp https://t.co/s4PaKW7bCg" +11/29/2016,Sports_celeb,@M_Ryan02,I’m committed to making all kids better today and healthier tomorrow. #MyCauseMyCleats @childrensatl https://t.co/FDLrNxyzV9 +11/27/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Corporal Corey Tanner earned a Purple Heart but never met his son. Matt Ryan will wear his initials on Sunday. + +#Salut…" +11/24/2016,Sports_celeb,@M_Ryan02,Happy #Thanksgiving https://t.co/nHrsPthDSu +11/11/2016,Sports_celeb,@M_Ryan02,"On this Veteran's Day, I’d like to thank all members of service, both past and present. Thank you #VeteransDay https://t.co/5qcCOCIltP" +10/28/2016,Sports_celeb,@M_Ryan02,#frankensteinfriday with #Mattenstein #RiseUp https://t.co/DEfPwhVFys +10/26/2016,Sports_celeb,@M_Ryan02,Hurry! Pick up #Danimals for your chance to find a #GoldenBongo and win a field day w/ @FUTP60 four your entire sch… https://t.co/3YHaIRfbF6 +10/24/2016,Sports_celeb,@M_Ryan02,"Tough loss yesterday. It’s disappointing not to get the outcome we wanted. We will bounce back, let’s prepare to win the week #RiseUp." +10/21/2016,Sports_celeb,@M_Ryan02,"This Oct, Dannon is partnering w/ the @NFL & @AmericanCancer to fight breast cancer. #NFLPink… https://t.co/4NNCPPTECh" +10/21/2016,Sports_celeb,@M_Ryan02,When you realize the next @AtlantaFalcons game is TWO days away. #RiseUp https://t.co/efbWcrAIqi +10/13/2016,Sports_celeb,@M_Ryan02,Danimals helps kids stay healthy. Find a #GoldenBongo and you could win a field day w/ @FUTP60 for your school!… https://t.co/FKgWHEgKEI +10/10/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: We improved to 4-1 today! Relive the victory. + +GAME HIGHLIGHTS: https://t.co/oMwI8y5ZbJ https://t.co/VAcAlEcXCb" +10/03/2016,Sports_celeb,@M_Ryan02,Great team win yesterday against a tough divisional opponent. Now it's time to prepare for the next task at hand! #RiseUp +09/30/2016,Sports_celeb,@M_Ryan02,RT @GeorgiaPower: Join @M_Ryan02 and help support your community! @GeorgiaPower has for over 100 years #football #NFL #Falcons https://t.co… +09/21/2016,Sports_celeb,@M_Ryan02,Thunder buddies for life! @juliojones_11 #RiseUp #Humpday https://t.co/NSzJ0PR8zJ +09/19/2016,Sports_celeb,@M_Ryan02,#RiseUp https://t.co/v7jNPYokWe +09/13/2016,Sports_celeb,@M_Ryan02,Be sure to check out the @mbusa #Mbsweepstakes for a chance to see the #RyderCup in person. https://t.co/Edm69tcOlC +09/12/2016,Sports_celeb,@M_Ryan02,We’ve got to get back to work & find a way to be better this week. I know everyone in our building will work really hard to do that. #RiseUp +09/09/2016,Sports_celeb,@M_Ryan02,RT @MootePoints: Today on @TheBertShow we talked with my fellow BC grad @sryan03 about @M_Ryan02 & the @AtlantaFalcons game #RiseUp https:/… +09/07/2016,Sports_celeb,@M_Ryan02,RT @MBUSA: Quote tweet with #MBsweepstakes for a chance to see the #RyderCup in person. Rules: https://t.co/LgeoQED7fO. https://t.co/cAcUfJ… +07/27/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 🚗🚗🚚 IMPORTANT traffic news if you're coming to #FalconsCamp! 🚗🚗🚚 + +READ: https://t.co/qzO3g64HMi #RiseUp https://t.co/Gw…" +07/23/2016,Sports_celeb,@M_Ryan02,"My story began in Exton,Pa. Where I dreamed of flying, who would have thought I'd be doing it #JustDoIt @Nike https://t.co/IxSuDnwbn5" +07/20/2016,Sports_celeb,@M_Ryan02,Here's a friendly reminder in case you were wondering. #RiseUP #countdown https://t.co/DTDGguHeGk +07/13/2016,Sports_celeb,@M_Ryan02,When #PokemonGO begins to take over your life https://t.co/cam2nRU5Ec +07/06/2016,Sports_celeb,@M_Ryan02,Great to be back @BostonCollege. Thx to all the former players and friends who came. This is an incredible honor. https://t.co/0Yl9CKCoCD +07/04/2016,Sports_celeb,@M_Ryan02,Wishing everyone a safe and happy Independence Day! #RiseUp https://t.co/ZBOOFSR2EH +06/24/2016,Sports_celeb,@M_Ryan02,When the season is two months away but you’re anxious and ready #RiseUp https://t.co/xIis4LVLdG +06/24/2016,Sports_celeb,@M_Ryan02,WHO!? #RiseUp https://t.co/hWasUXvmbf +06/21/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Another month of progress shows at @MBStadium! #RiseUp #MBStadium +https://t.co/fet4yi269a" +06/17/2016,Sports_celeb,@M_Ryan02,When mom told me to eat veggies as a kid #NationalEatYourVegetablesDay https://t.co/o4M6Y8maGE +06/14/2016,Sports_celeb,@M_Ryan02,Here we go #Falcons! #RISEup https://t.co/xHao4el0km +06/14/2016,Sports_celeb,@M_Ryan02,"#Warriors OR #Cavs, who takes game five?" +06/10/2016,Sports_celeb,@M_Ryan02,Let's go @BCBirdBall! https://t.co/AdZZoYLYva +06/10/2016,Sports_celeb,@M_Ryan02,Caption this... https://t.co/tIjF835C5D +06/09/2016,Sports_celeb,@M_Ryan02,Who's ready for some football?! #RISEUP #Countdown https://t.co/Z0EpA24Zos +06/04/2016,Sports_celeb,@M_Ryan02,RIP to the champ #GOAT https://t.co/16mgq8Z4O0 +06/04/2016,Sports_celeb,@M_Ryan02,"RT @bcinterruption: Boston College defeats Tulane, 7-2 to open NCAA Tournament play https://t.co/895c5L3z1L https://t.co/IZuchbtwU6" +06/03/2016,Sports_celeb,@M_Ryan02,Happy Friday y'all! #FlashbackFriday to the days of #TGIF... I think I might just watch this all day https://t.co/0VcLFmVrO4 +05/30/2016,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: 🇺🇸 https://t.co/DPRfGk3PHG +05/29/2016,Sports_celeb,@M_Ryan02,"RT @BCSportsNews: Thoughts & prayers for family, friends & players of former #BCEagles football assistant Don Horton, who has passed away." +05/24/2016,Sports_celeb,@M_Ryan02,What Julio sees when I throw him a go route #RiseUp https://t.co/qzKid2A8Zo +05/20/2016,Sports_celeb,@M_Ryan02,"Feeling nostalgic, here's my draft call! #FlashbackFriday #MattyIce #RiseUp https://t.co/ipYsUfLQZw" +05/19/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: After morning lifts, @M_Ryan02 spots video producer @brianbocek as he squats an impressive 65 lbs. 🎥: @PatDiMarco42 htt…" +05/19/2016,Sports_celeb,@M_Ryan02,"RT @JaredDudley619: Vote for my former @BostonCollege teammates in this years TBT basketball tournament & help strike out ALS. +https://t.c…" +05/17/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Our captain, our leader, our QB. Happy birthday, @M_Ryan02! #RiseUp +https://t.co/p4zeNAsyGw" +05/12/2016,Sports_celeb,@M_Ryan02,When your friend has something on his mouth and you help him discretely 😂 https://t.co/wFjvy2v0pM +05/09/2016,Sports_celeb,@M_Ryan02,My brother to my left. My brother to my right. Together we stand. Together we fight #RiseUp #mondaymotivation https://t.co/OWGh3WUvdw +05/08/2016,Sports_celeb,@M_Ryan02,Happy #MothersDay https://t.co/n9PBpPyzij +05/06/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Download our Mother's Day sheet, fill it out, and tweet us your pic with #ILoveMyFalconsMom! https://t.co/OlGk2vKXve ht…" +05/05/2016,Sports_celeb,@M_Ryan02,I don’t always celebrate #CincoDeMayo but when I do I make a video 😂 https://t.co/arqyeN1Ojd +05/04/2016,Sports_celeb,@M_Ryan02,#StarWars done right 😂! #MayThe4thBeWithYou https://t.co/zDaDpxR6s2 +04/28/2016,Sports_celeb,@M_Ryan02,"My draft memory still gives me chills, welcome to the league fellas! #ThrowbackThursday #NFLDraft https://t.co/B5tUJt3B1V" +04/28/2016,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: It's almost time! #ATLDraft https://t.co/e2NT8MbAZY +04/28/2016,Sports_celeb,@M_Ryan02,#NationalSuperheroDay squad #RiseUp @AtlantaFalcons https://t.co/4rVezCXFJq +04/27/2016,Sports_celeb,@M_Ryan02,Great catching up with bceaglesfootball legend Barry Gallup. Missed that Boston accent! https://t.co/4iI6lrrMlR +04/24/2016,Sports_celeb,@M_Ryan02,Saddened to hear about the passing of friend and former teammate Ron Brace. His smile was contagious. Thoughts and prayers to his family. +04/12/2016,Sports_celeb,@M_Ryan02,Go follow and vote for @TBT_TEAM_BC for the @thetournament #WeAreBC https://t.co/lSYjchmtZV +04/10/2016,Sports_celeb,@M_Ryan02,Best hole in 1 I've ever seen! +04/10/2016,Sports_celeb,@M_Ryan02,RIP will smith. Thoughts and prayers with him and his family. https://t.co/lpWdaDclBL +04/04/2016,Sports_celeb,@M_Ryan02,"53 of us. 5 million of you. We've got a really big team, let's get some really big rings #RiseUp https://t.co/51hlXkp4qw" +04/01/2016,Sports_celeb,@M_Ryan02,Happy anniversary to @sryan03. I hit the bullseye 5 years a good today! https://t.co/ZAUHnmxKi5 +03/31/2016,Sports_celeb,@M_Ryan02,Great few days working with the guys. Thanks to everyone in the Miami area for taking care of… https://t.co/1N5iBUaVdO +03/06/2016,Sports_celeb,@M_Ryan02,Congratulations to Peyton Manning on an amazing career. Start tailoring the gold jacket! https://t.co/dvbLdTvzHD +03/03/2016,Sports_celeb,@M_Ryan02,"An all pro receiver, teammate and leader...an even better friend and person. Will miss having… https://t.co/QbsFcZ5GuS" +02/27/2016,Sports_celeb,@M_Ryan02,"Happy birthday to the 🐐, @tonygonzalez88 https://t.co/AefcoInuuD" +02/26/2016,Sports_celeb,@M_Ryan02,#riseupfriday https://t.co/RCBcdDf3fH +02/11/2016,Sports_celeb,@M_Ryan02,Clear my schedule https://t.co/IblP8msYDp +02/09/2016,Sports_celeb,@M_Ryan02,Thoughts and prayers with AMB https://t.co/6LcBUNDy1W +02/06/2016,Sports_celeb,@M_Ryan02,Fun morning for @SNICKERS enjoyed being out on the field with you. @TonyGonzalez88 I couldn't find the retired 44 ? https://t.co/N5r0Uz88Bg +02/05/2016,Sports_celeb,@M_Ryan02,Thanks @Pepsi for sending me this awesome commemorative bottle! Now I can't wait to see the #PepsiHalftime Show! https://t.co/GvFs3YnqPB +02/04/2016,Sports_celeb,@M_Ryan02,Teaming up w/sponsor @Gillette for #SB50 to celebrate shielding. The O-Liners in this video = epic. #ProShield https://t.co/gVu94V0Jp4 +02/03/2016,Sports_celeb,@M_Ryan02,On the ground working #SuperBowl50 w/ @Gillette #ProShield celebrating shielding on and off the field! #CARvsDEN https://t.co/jSrtb3O09M +01/26/2016,Sports_celeb,@M_Ryan02,"So good…get your combo of 2L #Pepsi, Pizza and Jet’s Bread! #Pepsi #pizza #jetsbread #combo #delicious #jetspizza https://t.co/CC9IIyRsfj" +11/24/2015,Sports_celeb,@M_Ryan02,Clock is ticking to find the @Danimals Golden Bongo for a chance to win big! @FUTP60 #ad https://t.co/jvNfYGJpxu +11/18/2015,Sports_celeb,@M_Ryan02,#UncleDrew is back! Check out chapter 4 to see what he's been up to in Miami... https://t.co/SukSbdsyGv +10/27/2015,Sports_celeb,@M_Ryan02,Don’t miss a chance to Play 60 w/ NFL pros! Visit https://t.co/gUkGnT2GUq for more info. No purchase necessary #ad #sweepstakes +10/06/2015,Sports_celeb,@M_Ryan02,Visit http://t.co/gUkGnT2GUq to learn how u could Play 60 w/ NFL pros! No purchase necessary. #ad #sweepstakes http://t.co/kOjZA252mj +10/05/2015,Sports_celeb,@M_Ryan02,This code’s on me! Use bonus code RYAN to unlock more NFL prizes. Enter at http://t.co/IMdbTrIHUy Ends 11/6 http://t.co/XqJVI29lq6 +09/08/2015,Sports_celeb,@M_Ryan02,@AleBedoya17 Hahah...I'll do everything I can to help out ur fantasy squad! We'll be watching--play well +09/08/2015,Sports_celeb,@M_Ryan02,Good luck @AleBedoya17 and @ussoccer tonight against Brazil! 🇺🇸 +09/08/2015,Sports_celeb,@M_Ryan02,Look in specially-marked packs of Danimals 4 a chance to Play 60 w NFL pros! No purchase necessary #ad #fueluptowin http://t.co/mrkTxFS5Lj +08/30/2015,Sports_celeb,@M_Ryan02,Teammates for life! Congrats to @juliojones_11 on the new contract! Big things ahead #RiseUp https://t.co/VKZtEebcxa +08/15/2015,Sports_celeb,@M_Ryan02,Had fun making Odell go long in my new ad! Check it out: https://t.co/nf6yHZbUlu #ad #fueluptowin #danimals #FUTP60 @OBJ_3 +08/07/2015,Sports_celeb,@M_Ryan02,#fbf Had a great time teaming up with obj_3 on set. Look out for our new ad next week! #fuelup2win… https://t.co/vp0liLVcvN +07/30/2015,Sports_celeb,@M_Ryan02,Ready for camp #workboots #riseup https://t.co/tFTNy3SN2g +07/23/2015,Sports_celeb,@M_Ryan02,Happy birthday to my wingman and best friend! Hope your 30's are filled with lots of happiness and… https://t.co/503IRdU4qF +07/23/2015,Sports_celeb,@M_Ryan02,"Actually alvin did a great job today and I took care of him.""Disappointing"" when u don't know what ur talking about https://t.co/pOtmWZh1W5" +05/10/2015,Sports_celeb,@M_Ryan02,Damn!! #bronbron +04/30/2015,Sports_celeb,@M_Ryan02,Tbt to the 2008 draft. Good luck to all the guys tonight. #riseup https://t.co/6lwTBA4G6X +04/19/2015,Sports_celeb,@M_Ryan02,Best of luck @ATLHawks! The city will be red tonight #TrueToAtlanta +04/10/2015,Sports_celeb,@M_Ryan02,"Decisions, decisions! #AppleWatch https://t.co/xaFqk715ue" +04/01/2015,Sports_celeb,@M_Ryan02,Excited for the masters next week. Good luck @McIlroyRory @bose . #BetterNeverQuits #teambose http://t.co/rgRFlHYx1z +03/26/2015,Sports_celeb,@M_Ryan02,I'll miss John Imlay. He was one of the all time great people. So kind and generous. I am fortunate to have called him a friend! +03/19/2015,Sports_celeb,@M_Ryan02,Congrats to @GeorgiaStateU on their big win over Baylor! RJ Hunter was clutch. Good luck on Saturday +02/12/2015,Sports_celeb,@M_Ryan02,Braving the winter with my #wcw http://t.co/WFGtJrnyh0 +07/01/2018,Sports_celeb,@NiaJaxWWE,Awww what a sweetheart 😍💗 https://t.co/lazLr73tfO +06/30/2018,Sports_celeb,@NiaJaxWWE,Isn’t she just perfect 😍🙌🏽 @RealPaigeWWE love herrrrrrr https://t.co/hRbcqpj67x +06/30/2018,Sports_celeb,@NiaJaxWWE,🙌🏽😘 https://t.co/e6XJaPC7yz +06/30/2018,Sports_celeb,@NiaJaxWWE,Living my best life and having so much fun!! 😍🙌🏽 +06/30/2018,Sports_celeb,@NiaJaxWWE,RT @IndiaTainaJ1756: @NiaJaxWWE Gorgeous Queens!! #NotLikeMostMoms #NotLikeMostGirls https://t.co/YKaUfuFMF2 +06/30/2018,Sports_celeb,@NiaJaxWWE,RT @IndiaTainaJ1756: My Gorgeous Queen @NiaJaxWWE And Her Gorgeous Mom. #NotLikeMostGirls #NotLikeMostMoms https://t.co/TQtsPHCflK +06/30/2018,Sports_celeb,@NiaJaxWWE,"RT @LukeGallowsWWE: Ryogoku Sumo Hall Tokyo, Japan #WWETokyo The bbbbbbbooooys are back in town @KarlAndersonWWE https://t.co/e6azarY1bl" +06/29/2018,Sports_celeb,@NiaJaxWWE,"RT @nessasilva46: This is so cute 😍😍😍😍 +@NatbyNature +@NiaJaxWWE @LanaWWE +@BellaTwins @RealPaigeWWE @NaomiWWE #TotalDivas https://t.co/jUSzN…" +06/29/2018,Sports_celeb,@NiaJaxWWE,Happy birthday 😘💜💗 https://t.co/PkP4QYPidz +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @sarahloves69: FINALLY!!!!!! 🙌🏻 @NiaJaxWWE #imnotlikemostgirls #irresistibleforcee https://t.co/mNhvGBm2jb +06/29/2018,Sports_celeb,@NiaJaxWWE,Aw love it! 😍🙌🏽😘 https://t.co/kB8ezlf0Br +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photos via Nia Jax's Instagram https://t.co/8PVWNaHqjl +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @Goldust: I will announce the winner of the @wildbangarang #goldust leggings at 6:00 pm ET IN JUST 40 minutes. All are wonderful dreams +06/29/2018,Sports_celeb,@NiaJaxWWE,I 💗 country music 🎶 +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #RAW ❤❤❤ ht… +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #RAW #RawSa… +06/28/2018,Sports_celeb,@NiaJaxWWE,RT @suh_ellenb: The Queens 👑 @NiaJaxWWE @NatbyNature https://t.co/DqRICfSFL3 +06/28/2018,Sports_celeb,@NiaJaxWWE,"RT @MsCharlotteWWE: Checkout today’s article by @AllisonGlock for the @espn #BodyIssue @espnW +I am humbled to be among such strong women i…" +06/28/2018,Sports_celeb,@NiaJaxWWE,RT @VinceMcMahon: The ultimate beauty of body and soul. Congratulations @MsCharlotteWWE for being featured in @ESPN Magazine’s Body issue. +06/28/2018,Sports_celeb,@NiaJaxWWE,"RT @Misha_Mayhem: I love when @HarleyPlays wears his ""I'm Not Like Most Girls"" @NiaJaxWWE shirt in videos. 😁😍👊" +06/27/2018,Sports_celeb,@NiaJaxWWE,"RT @Horeya_Ahmed_88: Edit for @NiaJaxWWE I hope you love it Nia .❤❤❤ + #WWEFanArt https://t.co/XZNmSfCoWI" +06/27/2018,Sports_celeb,@NiaJaxWWE,"RT @IndiaTainaJ1756: My Queen @NiaJaxWWE +Being inspiration for these young people as it has been in my life. That's why I love her and admi…" +06/27/2018,Sports_celeb,@NiaJaxWWE,RT @ToTheTopEagles: A true champion @niajaxwwe came by today and broke us down. So thankful. #tccfootball #tothetop https://t.co/HSDRezd78r +06/27/2018,Sports_celeb,@NiaJaxWWE,Had so much fun with awesome kids today! Thank you so much for having me 🙏🏽🏈🙌🏽 good luck on your season guys! Keep… https://t.co/DPp2vFUEue +06/27/2018,Sports_celeb,@NiaJaxWWE,RT @ToTheTopEagles: TCC Football @MondayNightRaw tonight . So excited to stand in the corner for @NiaJaxWWE . #tothetop https://t.co/gANH… +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: “I am all athlete. It's important that my looks have nothing to do with what I do in the @WWE .” - @MsCharlotteWWE as told to @e… +06/26/2018,Sports_celeb,@NiaJaxWWE,Damn @WWEShop https://t.co/ypL5WPYbBu +06/26/2018,Sports_celeb,@NiaJaxWWE,😍😘😘😘 https://t.co/Ax7VSN84sf +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: @NiaJaxWWE I think we can call it a glow up even if you already looked great back then 🔥 https://t.co/YQj8LywAn4 +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photo via Nia Jax's Instagram story https://t.co/fOmM6dB6DU +06/26/2018,Sports_celeb,@NiaJaxWWE,Thank you so much Brandon! It was my pleasure 🙏🏽 https://t.co/XjWpg2e1oc +06/26/2018,Sports_celeb,@NiaJaxWWE,💜💜💜😘😘😘 https://t.co/mqP7mQBJvO +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @sethsgaIIavich: @NatbyNature it was great seeing you and @NiaJaxWWE ! 💖💖💖 https://t.co/DiL7R2wIhP +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Catch up on @NiaJaxWWE appearance on Good Morning San Diego where talks her championship win at WrestleMania and more: https… +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @TheLegitBoss15: My two favorite wwe women wrestlers ever. @NatbyNature and @NiaJaxWWE #QueenOfHearts #NotLikeMostGirls #Queens👑#WWE #R… +06/26/2018,Sports_celeb,@NiaJaxWWE,Walking into #RAWSanDiego FRESH off our Tahoe vacay 😍 killing it 🙌🏽😜👑 THANK YOU San Diego for the amazing homecomin… https://t.co/FTpx1oivSz +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @nessasilva46: 😍😍😍 @NatbyNature @NiaJaxWWE https://t.co/K68QrUVgVi +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @zavala_alex1983: Daddy/Daughter date #MondayNightRaw she’s excited to show off her sign to @NiaJaxWWE https://t.co/ODpCymuku0 +06/25/2018,Sports_celeb,@NiaJaxWWE,This woman is beautiful inside and out! Beyond proud to call her my friend! You look absolutely stunning in these p… https://t.co/fmCuUN4j4e +06/25/2018,Sports_celeb,@NiaJaxWWE,Aww sorry!!! 💜 https://t.co/JUSyum5nG2 +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @AndrewDavidCox: Currently being blown away by @RondaRousey vs. @NiaJaxWWE. This woman is a rookie! And Nia has come so far she can't se… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Jenisabug8: Look who I met ❤ @NiaJaxWWE https://t.co/iVBLemURKq +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @TheShow1053: Don’t miss WWE’s @niajaxwwe IN STUDIO at 8:00 this morning! #wwe https://t.co/VQXeCrZKon +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @TheShow1053: We loved having @niajaxwwe in studio this morning! #wwe #niajax https://t.co/E9dul4wmjJ +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @ChelleBL: I really hope @NiaJaxWWE will be at #wwefargo. Even at 38 having someone remind you that you don’t have to be like most is re… +06/25/2018,Sports_celeb,@NiaJaxWWE,"RT @ChrisRiddle: “My destiny’s a force of greatness.” + +@123Pins @NiaJaxWWE @bullnakanokeiko @MeanQueenK + +#NotLikeMostGirls https://t.co/te…" +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Jamn957: Thanks to @NiaJaxWWE for stopping by and leaving us FLOOR SEATS for tonight's @WWERawTour!! @TatiOnYourRadio hooking you up NE… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @KramerAndGeena: We had the AMAZING #SanDiegoNative @NiaJaxWWE in the @Channel933 studio this morning!! You can see her tonight at @WWE… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Ms_Minga: We out here trying to catch a glimpse of @NiaJaxWWE. #Kusi9Studios +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Dagdagan5: Watching the Queen @NiaJaxWWE on the news this morning. Then seeing her at Raw tonight!!!!! https://t.co/4J2IT0hhOw +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @DanSileoShow: WHAT AN INTERVIEW!!! Thank you @NiaJaxWWE so much for coming IN-STUDIO to talk with the show. Can’t wait for #RawSanDiego… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @StephMcMahon: Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue. Charl… +06/25/2018,Sports_celeb,@NiaJaxWWE,"RT @hogan415: @RealPaigeWWE @NatbyNature @LanaWWE @NaomiWWE @NiaJaxWWE @BellaTwins @TotalDivas So happy to meet +Total Divas superstars…" +06/24/2018,Sports_celeb,@NiaJaxWWE,Queens 👑 #Sisterhood #TotalDivas https://t.co/HcFeE6WstE +06/24/2018,Sports_celeb,@NiaJaxWWE,RT @AmbroseGirl2013: I want friends like this ❤️ @NiaJaxWWE @LanaWWE @NatbyNature @BellaTwins @RealPaigeWWE @NaomiWWE #WomensEvolution #bes… +06/24/2018,Sports_celeb,@NiaJaxWWE,"RT @MissFoxi3: Omg my queens ❤❤❤ +@RealPaigeWWE @NiaJaxWWE https://t.co/xuf48yigEB" +06/24/2018,Sports_celeb,@NiaJaxWWE,Lake Tahoe has been absolutely magical 😍🙌🏽 #TotalDivas https://t.co/WoHwy1dC1Y +06/24/2018,Sports_celeb,@NiaJaxWWE,"RT @973TheFanSD: Exciting stuff going on IN-STUDIO with the @DanSileoShow + +#WWE Superstar @NiaJaxWWE will be in-studio Monday at 7:45am + +F…" +06/23/2018,Sports_celeb,@NiaJaxWWE,RT @feeltheglown: look at @NiaJaxWWE and trin holding hands. we love a couple ughh 😍 https://t.co/kTQu98QFKe +06/23/2018,Sports_celeb,@NiaJaxWWE,@TinaJAnd @RealPaigeWWE @NatbyNature @SonyaDevilleWWE Happy birthday!! +06/23/2018,Sports_celeb,@NiaJaxWWE,My SIS 😍💜💜💜💜 @NaomiWWE https://t.co/5zZOXzh6Wp +06/23/2018,Sports_celeb,@NiaJaxWWE,Happy HAPPY BIRTHDAY to the gorgeous and #IIConic @BillieKayWWE 😛😛😛👈🏽 you know what those mean 😉😘! Love you girl 💜 have the best day! +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @Mohammed_Y2J_: I like this woman’s you so beautiful 😍 @LanaWWE @NiaJaxWWE +Lana is the best Lana number one ☝🏻 +Nia is the best Nia num…" +06/23/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: @NiaJaxWWE you really got them all pressedT sis I love you for that😭💀 https://t.co/81NlM2B1YI +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: The girls living the best life, that's what matters 🙌🏼😉 @RealPaigeWWE @NiaJaxWWE https://t.co/L9lYIefnYR" +06/23/2018,Sports_celeb,@NiaJaxWWE,@ASOS https://t.co/zzUgPIQhKJ +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @BStoneKUSI: She's not like most girls, I'm not like most sportscasters, and on Monday @KUSINews won't be like most TV stations! We'll h…" +06/23/2018,Sports_celeb,@NiaJaxWWE,Living my BEST LIFE!!! #LakeTahoe #TotalDivas https://t.co/Gffy6KNlo2 +06/22/2018,Sports_celeb,@NiaJaxWWE,#TotalDivas 😍 https://t.co/r24GyVWEGn +06/22/2018,Sports_celeb,@NiaJaxWWE,"RT @RealGlampireWWE: #TotalDivas +@RealPaigeWWE @NatbyNature @BellaTwins @NiaJaxWWE @LanaWWE ❤ https://t.co/l23ByoNvmB" +06/22/2018,Sports_celeb,@NiaJaxWWE,RT @IStanWrestling: I LOVE A FRIENDSHIP ❤ @NiaJaxWWE @RealPaigeWWE @LanaWWE https://t.co/3kMVljCtFm +06/22/2018,Sports_celeb,@NiaJaxWWE,😍😍😍 https://t.co/xlhTbXZd6q +06/22/2018,Sports_celeb,@NiaJaxWWE,For someone that doesn’t care what anyone thinks it’s weird they have to go out and get a tattoo that says they’re enough 🤔 +06/22/2018,Sports_celeb,@NiaJaxWWE,RT @rampaiger_93: @RealPaigeWWE @NiaJaxWWE ☀️ https://t.co/lHOAlejJX8 +06/22/2018,Sports_celeb,@NiaJaxWWE,Total divas Season 8 cast....waiting on @NaomiWWE to arrive 😍🙌🏽😘 https://t.co/saRnUIiWSj +06/22/2018,Sports_celeb,@NiaJaxWWE,My crazy crew 😜😘 @RealPaigeWWE @LanaWWE #LakeTahoe https://t.co/U31Qc41Mtc +06/21/2018,Sports_celeb,@NiaJaxWWE,RT @MsCharlotteWWE: My naked butt will be in the @ESPN #Body10 Issue...still insecure but proud of who I am and what I look like. Never let… +06/20/2018,Sports_celeb,@NiaJaxWWE,Why are you so stunning sis 😍💜💜💜😩🙌🏽 https://t.co/rpN70XRHK8 +06/20/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: wheww a cute duo🖤 @LanaWWE @NiaJaxWWE https://t.co/9lyhqXRJZb +06/20/2018,Sports_celeb,@NiaJaxWWE,RT @RealGlampireWWE: #FriendshipGoals Da Cutest Friendship Ever #Queens @RealPaigeWWE and @NiaJaxWWE ❤👑 https://t.co/UHhhD0WiWA +06/20/2018,Sports_celeb,@NiaJaxWWE,Rest In Peace Vader🙏🏽 https://t.co/oEDRknKVoW +06/20/2018,Sports_celeb,@NiaJaxWWE,🍵🍵🍵🍵 https://t.co/bvgcpCEX7V +06/20/2018,Sports_celeb,@NiaJaxWWE,No https://t.co/rrP1JAqsEy +06/19/2018,Sports_celeb,@NiaJaxWWE,Pure beauty!!! 😍🙌🏽💜 https://t.co/9zcduYImQk +06/19/2018,Sports_celeb,@NiaJaxWWE,Lol!! That’s a joke. https://t.co/j7UeDgRg3l +06/19/2018,Sports_celeb,@NiaJaxWWE,I welcome that as well https://t.co/zK7cK39BkF +06/19/2018,Sports_celeb,@NiaJaxWWE,Like I said...title or not...she will get beat up 😈 https://t.co/Hbtqp2fe03 +06/19/2018,Sports_celeb,@NiaJaxWWE,Haha that’s is the truth 😂😂 https://t.co/lEod17otb8 +06/19/2018,Sports_celeb,@NiaJaxWWE,She’s a crappy human...she deserves a good butt kicking https://t.co/PC8R8kPY6o +06/19/2018,Sports_celeb,@NiaJaxWWE,Sure do https://t.co/SYqQdOda9f +06/19/2018,Sports_celeb,@NiaJaxWWE,RT @LukeGallowsWWE: Toledo....The bbbbbbbbbooooys are coming up live on ABC News! +06/19/2018,Sports_celeb,@NiaJaxWWE,Title or not...I just want to beat the piss out of her https://t.co/0hd5T1v0G1 +06/19/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: Current mood + +@NiaJaxWWE https://t.co/oT7c8rN21V" +06/19/2018,Sports_celeb,@NiaJaxWWE,RT @JJRiot88: @NiaJaxWWE Watching @RondaRousey Beat Up @AlexaBliss_WWE #Raw https://t.co/xRZXmsp8wd +06/19/2018,Sports_celeb,@NiaJaxWWE,Bahahahahaha!!!! Literally can’t stop watching this 😂😂😂 got what you deserved #FakeAzzB https://t.co/c7LI0yJ648 +06/19/2018,Sports_celeb,@NiaJaxWWE,"@muchoawesomeo Let’s unpack that Billy....I am from Cali, but since moving to Florida, my tides have been changing toward FL" +06/19/2018,Sports_celeb,@NiaJaxWWE,💜💜💜 https://t.co/d4TL5kTajL +06/19/2018,Sports_celeb,@NiaJaxWWE,Hahaha! Well...just wait for season 8. https://t.co/t04SEa3dST +06/19/2018,Sports_celeb,@NiaJaxWWE,Nope https://t.co/oyG1zAjuNE +06/19/2018,Sports_celeb,@NiaJaxWWE,🍿😜 go AWWWFFFFFF girl https://t.co/B7dJZ4mgmH +06/19/2018,Sports_celeb,@NiaJaxWWE,Hahahaha!!! YESSSSS! Well deserved 👍🏼. https://t.co/EPGSmkUB4Y +06/19/2018,Sports_celeb,@NiaJaxWWE,🤮 https://t.co/LtjSaUG2VU +06/18/2018,Sports_celeb,@NiaJaxWWE,Get it Zack!!!! #ZQ https://t.co/TlZpDbdV4Y +06/18/2018,Sports_celeb,@NiaJaxWWE,"RT @rowdylikeronda: @NiaJaxWWE Ain't that the truth. Did Alexa even fight during her #MITB match, or did I blink and miss her?" +06/18/2018,Sports_celeb,@NiaJaxWWE,"A match between two power houses! Toe to toe, bringing the pain! Setting the standard. #RondaVsNia ruined by a COWA… https://t.co/VEF9FT9VRO" +06/18/2018,Sports_celeb,@NiaJaxWWE,Thank you love! @KotulskiGear https://t.co/fBxdvAFkTG +06/18/2018,Sports_celeb,@NiaJaxWWE,Me? 😍 so I can be near you!!!! https://t.co/zRNgnOC26J +06/18/2018,Sports_celeb,@NiaJaxWWE,Haha billy!! You’re my number one! 🙌🏽 https://t.co/9URjucOmNj +06/18/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Money In The Bank 2018 screen captures have been added to the gallery: https://t.co/C179UXkGQ0 https://t.co/1HsTHf6Az0 +06/18/2018,Sports_celeb,@NiaJaxWWE,If it wasn’t for this insanely stunning #AntiDiva coming on the scene showing the world that being your perfectly c… https://t.co/byEUYwnXSb +06/18/2018,Sports_celeb,@NiaJaxWWE,RT @RyanLoco: Nia v @RondaRousey #WWEMITB https://t.co/AzgCY9EkkK +06/18/2018,Sports_celeb,@NiaJaxWWE,"RT @playwrightwoman: And with that, we finish #MITB. Really solid card all the way down. And dear fellow smarks, can we all agree to lay o…" +06/18/2018,Sports_celeb,@NiaJaxWWE,"Not the ending I was hoping for, but can’t help but be proud of what @RondaRousey & I accomplished tonight. She is the REAL DEAL! #MITB" +06/17/2018,Sports_celeb,@NiaJaxWWE,Thanks DA!! https://t.co/VZDUygoxTG +06/16/2018,Sports_celeb,@NiaJaxWWE,She is perfection 😍😘💜 https://t.co/xITrMHYN59 +06/16/2018,Sports_celeb,@NiaJaxWWE,"RT @VinceMcMahon: Proud to be making history in Australia with WWE Super Show-Down on Saturday, Oct. 6, at the iconic @MCG. https://t.co/na…" +06/16/2018,Sports_celeb,@NiaJaxWWE,"You can’t squash them, their eggs can be released and then you have an epidemic on your hands https://t.co/pX2HuE0BDV" +06/16/2018,Sports_celeb,@NiaJaxWWE,This was me!! Lol! It adopted an attack pose and hissed at me! GAME OVER! I was ready to leave all my belongings be… https://t.co/LN05tnQu7d +06/16/2018,Sports_celeb,@NiaJaxWWE,Tomorrow 🙌🏽 June 17 on the @WWENetwork let’s see if @RondaRousey is ready for her first ever singles championship m… https://t.co/PgNKJxkqA2 +06/16/2018,Sports_celeb,@NiaJaxWWE,"RT @WWE: BREAKING: As first reported by the @theheraldsun, @WWE will return to Australia for @WWE Super Show-Down, a historic event taking…" +06/16/2018,Sports_celeb,@NiaJaxWWE,Thanks Billy 🙌🏽 https://t.co/I7BDXVRFPU +06/16/2018,Sports_celeb,@NiaJaxWWE,I almost bought a new house because I was trying to kill a roach with bug spray and it didn’t die for a solid 5 min… https://t.co/l5l2qTS68q +06/15/2018,Sports_celeb,@NiaJaxWWE,WEERRRKKK hunny 💃🏼 https://t.co/Xs1oLYzxwv +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @JaxEmpireGang: Gorgeous Queen!! @NiaJaxWWE +😍👑❤🔥😈 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleFo…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Such a freaken babe 🔥🔥🔥 https://t.co/oAxeQeBX3v +06/15/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Video via Nia Jax's Instagram https://t.co/zr04V6wkon +06/15/2018,Sports_celeb,@NiaJaxWWE,Big!!!! https://t.co/HecGLGlZqA +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: ""Everyone is asking ‘Oh my God, is she heel or is she face?’ Nia Jax is Nia Jax.That’s something that I have been trying to…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Gorgeous https://t.co/5sYbFVvr6r +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @XTheShieldGirlX: I did a documentary yesterday about how girls are viewed in the media and society. In my speech, I spoke about how gir…" +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @FLAIRSNIA: “Yes, we are athletic. Yes, we can go just as hard as the men, but women come in all different shapes and sizes. We all have…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Can’t wait!!!! It will feel so good to finally be home https://t.co/JQCLaImLjH +06/15/2018,Sports_celeb,@NiaJaxWWE,💜💜 https://t.co/igrH7IrlKG +06/15/2018,Sports_celeb,@NiaJaxWWE,💜💜💜🤗🤗thank you!!! https://t.co/60S8SjuAfC +06/15/2018,Sports_celeb,@NiaJaxWWE,Love you Brit!!! https://t.co/S4Fil157hv +06/14/2018,Sports_celeb,@NiaJaxWWE,Inside Nia Jax's meteoric rise to the top of WWE's women's division https://t.co/4sDKt7ecJe +06/14/2018,Sports_celeb,@NiaJaxWWE,"RT @AntSulla: Over the past six months, @NiaJaxWWE has become arguably the most important female figure in @WWE. Here's a look at her remar…" +06/14/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: .@YahooSports goes Inside @NiaJaxWWE meteoric rise to the top of @WWE's women's division! By @AntSulla https://t.co/vzYrxJLmFq +06/14/2018,Sports_celeb,@NiaJaxWWE,💜🙏🏽 sending you so much love Mick https://t.co/CarlLqhUsr +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Total Divas has been nominated for a @TeenChoiceFOX award for #ChoiceRealityTVShow! Voting starts today and ends next Tuesda… +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: You can vote for Total Divas just by tweeting #ChoiceRealityTVShow and tag @TotalDivas 🙌🏻 https://t.co/T4rBjySChw +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Our #TeenChoice nominee for #ChoiceRealityTVShow is @TotalDivas +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @Hotspur29043068: My #WWESuperCard free tier pull she's not like most girls.@NiaJaxWWE https://t.co/dagEGtYUgR +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @BellaTwins: So beyond excited for @TotalDivas being nominated for a @TeenChoiceFOX for Choice Reality TV show! Bella Army please make s… +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @BadNewsSmitty: Congrats to all of the @TotalDivas. Not only are the women of the @WWE making waves in the pro wrestling business, they…" +06/13/2018,Sports_celeb,@NiaJaxWWE,I miss her soooo much it hurts 😩😩😩 https://t.co/TlaD5QeqkQ +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NatbyNature: So happy to see #TotalDivas has been nominated for a Teen Choice Awards in the category of Choice Reality TV Show!!! + +Vot…" +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @smFISHMAN: Congrats to the #TotalDivas folks on another #TeenChoiceAward nomination. The show has helped draw new fans to #WWE over the… +06/13/2018,Sports_celeb,@NiaJaxWWE,https://t.co/jNhmDRxsRJ https://t.co/dCBDvpYMvQ +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @RealPaigeWWE: If you’re in the Memphis area don’t EVER stay at the @SheratonMemphis it’s literally the worst. Things stolen, bad custom…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NiaJaxCom: Be sure to get your ""I'm Not Like Most"" T-shirt on #WWEShop and uniquely customize your very own like Nia Jax! https://t.co/…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @CNCOMixer26: Wednesday ain't Wednesday without a Wednesday women's dose of the RAW Women's Champion, #TheIrresistibleForce @NiaJaxWWE #…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NiaJaxCom: ""A queen on her throne is a woman who grows beyond boundaries knowing that the power within her is sufficient to meet every…" +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NERDSClothingCo: Want to see these on the WWE Shop? Let your voices be heard! @WWEShop and let them know which one(s) you'd like up on… +06/12/2018,Sports_celeb,@NiaJaxWWE,5 days away from #MITB and you showed me what you got...Take the small victory now because it won’t come this Sunda… https://t.co/WsKeTYLKeR +06/12/2018,Sports_celeb,@NiaJaxWWE,RT @MATTHARDYBRAND: GIMME AN OL’ RE-TWEET if you WATCH this & get AROUSED for the most EPIC #WWE24 documentary of all time.. The Hardys #WO… +06/12/2018,Sports_celeb,@NiaJaxWWE,RT @rampaiger_93: Irresistible force 😍❤️ @NiaJaxWWE #Raw #entrance https://t.co/oMVjV42pSp +06/11/2018,Sports_celeb,@NiaJaxWWE,"RT @MikaRotunda: This Saturday, I’ll be taking the Gelatin Plunge for the Children’s Cancer Center of Tampa Bay! + +Please help me in reachi…" +06/11/2018,Sports_celeb,@NiaJaxWWE,Click on this link and help 🙌🏽😘😘 https://t.co/EBficpFqP5 +06/10/2018,Sports_celeb,@NiaJaxWWE,"All competition aside, I’m honored to step in the ring with this incredible woman! @RondaRousey but I’m still gonna… https://t.co/0A47dYM41q" +06/10/2018,Sports_celeb,@NiaJaxWWE,This is who is coming to #MITB. This is your #Raw Women’s Champion. This is who I am. Try to prepare for it.… https://t.co/1uGeQyyii8 +06/10/2018,Sports_celeb,@NiaJaxWWE,"RT @WWEArmstrong: Good Sunday morning from Bossier City, Louisiana the host of today’s @WWE RAW Live Event ...5:00 belltime! See SuperStars…" +06/10/2018,Sports_celeb,@NiaJaxWWE,You talking about me again?! 😜 except it’ll be 135 to 285 https://t.co/Ij1iUl6Qv7 +06/10/2018,Sports_celeb,@NiaJaxWWE,RT @RevRedneck: @NiaJaxWWE my daughter got a high 5 from you after her match and would not sleep in nothing less than this shirt!! Thanks f… +06/10/2018,Sports_celeb,@NiaJaxWWE,💜💜💜💜 https://t.co/IrnQgQrHLH +06/09/2018,Sports_celeb,@NiaJaxWWE,Love her @BiancaBelairWWE 🙌🏽 https://t.co/nygjOdduLV +06/09/2018,Sports_celeb,@NiaJaxWWE,RT @Poohbaby925: This is my favorite photo of @NiaJaxWWE it was taken at #NXTTakeoverTheEnd when she was going after the NXT Woman's Champi… +06/09/2018,Sports_celeb,@NiaJaxWWE,Thanks girl!!! Xoxo https://t.co/fvfKGmjk6e +06/09/2018,Sports_celeb,@NiaJaxWWE,RT @WWE: .@NiaJaxWWE is a force that can't be stopped... what will happen at #MITB when the #RAW Women's Champion comes face-to-face with @… +06/09/2018,Sports_celeb,@NiaJaxWWE,"Flying into the weekend like 🙌🏽👊🏼✈️🏆 +•••• +Sat 6/9 Monroe, LA +Sun 6/10 Bossier City, LA +RAW is WAR 6/11 Little Rock… https://t.co/zp8tnVLcNq" +06/09/2018,Sports_celeb,@NiaJaxWWE,Thank you Billy 😘 https://t.co/Q3uwH5esTW +06/09/2018,Sports_celeb,@NiaJaxWWE,"The Irresistible Force Meets the Baddest Woman on the Planet June 17, 2018 at #MoneyInTheBank in Chicago.… https://t.co/0gQTaZtllL" +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Witness the power of @NiaJaxWWE before her face-to-face with Ronda Rousey #GreatnessIsHerDestiny https://t.co/SxPsrm79gk +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Nia Jax officially has her own foot wear! You can get a pair of these stylish socks available at Rock'em apparel https://t.c… +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photo via Honeybeileen's Instagram https://t.co/tg7QmrsSab +06/07/2018,Sports_celeb,@NiaJaxWWE,RT @StephMcMahon: So proud to have held @WWE’s first For Your Consideration event last night for the TV Academy. Thank you to the incredibl… +06/07/2018,Sports_celeb,@NiaJaxWWE,You are enough. You are beautiful. You are perfect. Live your best life. Love others. Never settle. Don’t be ordina… https://t.co/jd2w8uwMZR +06/07/2018,Sports_celeb,@NiaJaxWWE,Couple goals AF!! 🔥🔥🔥🙌🏽🙌🏽🙌🏽 https://t.co/WSRdXfhlgU +06/07/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: #WWEFYC @MsCharlotteWWE @NiaJaxWWE https://t.co/kgsW5MnMv6 +06/07/2018,Sports_celeb,@NiaJaxWWE,"RT @LehrBreanna: Anyone who is body shaming @NiaJaxWWE I’d love to see you make it to the wwe, and be as dominant as she is. For crying out…" +06/07/2018,Sports_celeb,@NiaJaxWWE,"RT @LoveAlexaBliss: @NiaJaxWWE + +Go 👏🏼Awf👏🏼Sis👏🏼 + +You look freaking amazing 👏🏼🔥🙌🏼 https://t.co/gF6rCvqtLZ" +06/07/2018,Sports_celeb,@NiaJaxWWE,Love you sister!!!! 💜💜💜💜 https://t.co/Lxjq8IffM8 +06/06/2018,Sports_celeb,@NiaJaxWWE,Come hang with me sister 🙌🏽 https://t.co/eKAEfHDU28 +06/06/2018,Sports_celeb,@NiaJaxWWE,RT @nessasilva46: So beautiful @NatbyNature @NiaJaxWWE 😍😍😍 https://t.co/wur6ETfpLa +06/06/2018,Sports_celeb,@NiaJaxWWE,Happy birthday!!!!! https://t.co/dJIHkzGy4b +06/05/2018,Sports_celeb,@NiaJaxWWE,RT @lole9000: @NiaJaxWWE Yes girl🤘 https://t.co/KlP3DIKnI0 +06/05/2018,Sports_celeb,@NiaJaxWWE,Had quite the special day yesterday! Was able to spend time with amazingly gifted athletes @SpecialOlympics & some… https://t.co/aFcztkVr8f +06/05/2018,Sports_celeb,@NiaJaxWWE,There are few women who I respect as much as @NatbyNature ...and she knows this is a physical business. As Supersta… https://t.co/nWnX25Pybx +06/05/2018,Sports_celeb,@NiaJaxWWE,"Nothing beats Cali weather 😍 + +Cali-for-NIA 🙌🏽💜" +06/05/2018,Sports_celeb,@NiaJaxWWE,"RT @JamesHands777: @NiaJaxWWE & @RealPaigeWWE I wanted to make these for you two. +#FanArt https://t.co/awk5WK7YLx" +06/05/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photos of Nia Jax from the Be A Star rally in Houston https://t.co/IvZyQ7mEG1 +06/05/2018,Sports_celeb,@NiaJaxWWE,🙌🏽 https://t.co/20YwTPjBad +06/04/2018,Sports_celeb,@NiaJaxWWE,Awww happy birthday little man!!! 💜🎉🎂 https://t.co/zdoeaFpNSm +06/04/2018,Sports_celeb,@NiaJaxWWE,"RT @SabatiniAmelie: Ok now @NiaJaxWWE and @IAmEliasWWE are my new #FriendshipGoals !🙌🏼😻 +They are so cute!🙌🏼😹😻 + +Happy Monday guys!🤗💛 +#Monday…" +06/03/2018,Sports_celeb,@NiaJaxWWE,Happy birthday!!! 💜😘😘 https://t.co/GFQ083qohU +06/03/2018,Sports_celeb,@NiaJaxWWE,"RT @BillySmith: I’m having so much fun being back here with the good people of Louisiana this weekend. And, Of Course My Girl @NiaJaxWWE ak…" +06/02/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: ""Who wants to eat with Elias?"" +@NiaJaxWWE 😂😂 https://t.co/V89kbFqwPH" +06/02/2018,Sports_celeb,@NiaJaxWWE,RT @TJWilson: 3 years ago my entire world was halted. I had no clue what the hell the rest of my life would look like. I really enjoy my… +06/02/2018,Sports_celeb,@NiaJaxWWE,RT @burdine_cindy: Look what I found at Wal-Mart today! @NiaJaxWWE and @NaomiWWE my 2 favorites!!! #Notlikemost #feeltheglow https://t.co/5… +06/02/2018,Sports_celeb,@NiaJaxWWE,RT @RingsideC: Derail the competition w/ @NiaJaxWWE in #Mattel #WWE series 79! https://t.co/Q1q0J3yRY3 #NiaJax https://t.co/Aem6TMn3mS +07/01/2018,Sports_celeb,@titoortiz,Ben is on a mission! #UFC @Primetime360ESM https://t.co/RVH55RVQ3P +06/28/2018,Sports_celeb,@titoortiz,"#SILENCER: Chaos is King in the Official Trailer for the Action-Thriller Starring @jmessner05 , @officialDannyT ,… https://t.co/nx75jPfJmw" +06/28/2018,Sports_celeb,@titoortiz,"🙏🏼 #Repost samantha_r_bonilla with get_repost +・・・ +Today is the anniversary of #OperationRedWings 🇺🇸 Please take the… https://t.co/n5FyggKyax" +06/28/2018,Sports_celeb,@titoortiz,"RT @IlbayDeniz: So what’s the deal on the +@titoortiz VS @ChuckLiddell 3 Fight? My big bro Tito started training camp and is ready, @OscarDe…" +06/28/2018,Sports_celeb,@titoortiz,"RT @SubmissionAus: Submission Radio #162 OUT NOW featuring @JakeMatthewsUFC, @danthehangman, @stylebender, @akajav, @titoortiz and @marc_ra…" +06/28/2018,Sports_celeb,@titoortiz,"RT @DrinaMohacsi: FightersOnly @FOawards 10th Annual World MMA Awards TUESDAY, JULY 3 @Palms #LasVegas #PearlConcertTheatre FOX Sports Netw…" +06/27/2018,Sports_celeb,@titoortiz,Building a castle one brick at a time. #Silencer is the 2nd of the 3rd films I shot in a year. @MadeaHalloween firs… https://t.co/MgHPvtZ6C1 +06/27/2018,Sports_celeb,@titoortiz,Repost: @AmberNicholeM1 This movie 🎥 on so many levels brings savagery!! @titoortiz and I throughly enjoyed every s… https://t.co/zDgLf8FRz0 +06/27/2018,Sports_celeb,@titoortiz,@SicarioMovie This is a must see film! WOW!!!! #Eyeopener +06/27/2018,Sports_celeb,@titoortiz,@SicarioMovie WOW!!!!! Please watch this film! #eyeopener 👍🏼👍🏼 +06/27/2018,Sports_celeb,@titoortiz,sicariomovie the first movie was great. Now we are here for the second! #sicaro2soldado 🇲🇽🇺🇸 @ Regency Village and… https://t.co/HoKXgAvLlU +06/27/2018,Sports_celeb,@titoortiz,What the FK @ChuckLiddell ? You’re stepping over dollars to pick up pennies! #GoldenBoyMMA #TitovsChuck3 +06/26/2018,Sports_celeb,@titoortiz,#Motivation @ UFC GYM https://t.co/8vYgXrckMN +06/26/2018,Sports_celeb,@titoortiz,"When you know things are going good! 😊 @ Huntington Beach, California https://t.co/t0JHy0tOkL" +06/26/2018,Sports_celeb,@titoortiz,"Always getting better! @Criscyborg @gabijiu +Wrestling and mma ✅ +Learning is priceless! +Tks @titoortiz for teachin… https://t.co/judS0Nx9Pt" +06/25/2018,Sports_celeb,@titoortiz,"#Make17Monday +We started #MAKE17 to Inspire, Spread Love and Acceptance. We wanted our boys to make 17 new friends… https://t.co/AKoq90D5oL" +06/23/2018,Sports_celeb,@titoortiz,"These guys have some driving skills. Congrats Mexico Soccer ⚽️ 🇲🇽roushsupercharged with get_repost +・・・ +#pacificblvd… https://t.co/RkfB0yttsH" +06/22/2018,Sports_celeb,@titoortiz,"First day hitting pads with @razorob lots of work to do. +・・・ +Padding @ufc Hall of Fame & 5x LHW Champion… https://t.co/BckAbwTAxD" +06/22/2018,Sports_celeb,@titoortiz,"Week 1 @razorob with get_repost +・・・ +Look who’s back training... solid work today with the homie @titoortiz… https://t.co/va6jSmzVSF" +06/21/2018,Sports_celeb,@titoortiz,#TBT That one time in Thailand. Thailand didn’t… https://t.co/epqPsEijYS +06/20/2018,Sports_celeb,@titoortiz,@redbird45 Sell out to who??? You don’t want a better country? +06/20/2018,Sports_celeb,@titoortiz,The partnership of @RockwellTime and @titoortiz.… https://t.co/Frl8RTSjsu +06/20/2018,Sports_celeb,@titoortiz,@kenhass I have his hats and it says made in USA. 🤔 +06/20/2018,Sports_celeb,@titoortiz,RT @OliverMcGee: Wow. Throwback to when Senator Barack Obama agreed with @realDonaldTrump on immigration! RT this so your friends see this!… +06/20/2018,Sports_celeb,@titoortiz,"RT @OliverMcGee: Video footage surfaces from 2014 showing that under Obama, family separations and holding centers were EXACTLY the same.…" +06/19/2018,Sports_celeb,@titoortiz,"@hollywoodsports with get_repost +・・・ +UFC legend… https://t.co/GmHH7IwYr2" +06/19/2018,Sports_celeb,@titoortiz,5 mins x 5 rounds #groundandpound… https://t.co/zePq5aWmyg +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu @CptBozoJabroni Stop breaking the law. +06/19/2018,Sports_celeb,@titoortiz,@theubergirl It will. +06/19/2018,Sports_celeb,@titoortiz,@Hairball911 No we are not!!!! This will change. @realDonaldTrump will not go down that easy. +06/19/2018,Sports_celeb,@titoortiz,@Chris_Ledezma That’s stupid. +06/19/2018,Sports_celeb,@titoortiz,@Hairball911 I wish more people would speak up. Because it going to get worse. +06/19/2018,Sports_celeb,@titoortiz,@theubergirl It’s like a revolution. It will get fixed soon. +06/19/2018,Sports_celeb,@titoortiz,@dazzaDS Why dont they take their kids with them? +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu I would of never been born. Key words 4 generation! +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu 150 years ago. +06/19/2018,Sports_celeb,@titoortiz,So let’s get this straight we want this to be… https://t.co/B706Qj5sES +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu Shit I’ve done it all my own! Not one family member has help me besides my brother and he’s white. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu No I’m America with MexiCan decent. But still do you want America like Mexico? +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni @manolo_jiujitsu That’s been a long time and Ive payed my time. +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni The parents are choosing to abandon their kids. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu https://t.co/Kvehdk1rTy +06/19/2018,Sports_celeb,@titoortiz,@dazzaDS Yes look a history. +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni No because I would do any thing to stay with them. Not abandon them. Don’t let the media brainwash you. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu No I’m giving MexiCan/America’s the dream that hard work pays off. By obeying the laws. I had to d… https://t.co/Qi31ulryJV +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu Im a 4th generation MexiCan/America that wants safety for my kids. Do you want America like Mexico… https://t.co/Pcps3j9bg6 +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu They are not ripped. The parents choose to abandon them. Obama did it more an all presidents put together. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu We live by laws. Why do people want to live In the USA? +06/19/2018,Sports_celeb,@titoortiz,It’s crazy how many people don’t like to hear the truth. Is it to hard to face? +06/18/2018,Sports_celeb,@titoortiz,#Make17Monday scottcarrgbcm with… https://t.co/b61sDvGKGK +06/18/2018,Sports_celeb,@titoortiz,RT @Punishment99: Happy Monday. Who else is determined to put in the work this week? https://t.co/bUFQFkMYKo +06/18/2018,Sports_celeb,@titoortiz,Great Father’s Day with the family. #fishing @… https://t.co/gOabYuAXhW +06/17/2018,Sports_celeb,@titoortiz,Saturday Ortiz family battle. Parents vs kids… https://t.co/0tYEfCLxtJ +06/16/2018,Sports_celeb,@titoortiz,@Primetime360ESM @BenMoa4 ready to go 8-0 on June 29th. This heavyweight is ready to prove himself. https://t.co/20IW5YnK0r +06/16/2018,Sports_celeb,@titoortiz,RT @AmberNicholeM1: Tito Ortiz and Amber Nichole Miller 2018 Puig Poker Tournament Red Carpet https://t.co/2cy3Kb9GVB @titoortiz @YasielPui… +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all captains… https://t.co/KSdSOoZ2wK +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all captains… https://t.co/0bzYrWev25 +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all capitals… https://t.co/fgz47EQ8Y9 +06/14/2018,Sports_celeb,@titoortiz,Happy Birthday Mr. President @RealDonaldTrump… https://t.co/kAMUq5gSPt +06/14/2018,Sports_celeb,@titoortiz,The beginning of something great. #wrestling… https://t.co/dUbIPFCsnk +06/14/2018,Sports_celeb,@titoortiz,RT @sweetyhigh: TEAM WORK makes the DREAM WORK! 💙 @EmilyOsment @HaleyJoelOsment @annewinters @georgelopez @ArsenioHall @AmberNicholeM1 @tit… +06/12/2018,Sports_celeb,@titoortiz,@YazmanianDVL08 great cause to support last… https://t.co/rrC6glVt3P +06/12/2018,Sports_celeb,@titoortiz,"RT @fightnet: See the best performances from @titoortiz on ""UFC in 60"" at 5 p.m. ET on @fightnet! https://t.co/kp7prWm9lb" +06/12/2018,Sports_celeb,@titoortiz,"RT @fightnet: See the top performances from @titoortiz on ""UFC in 60"" at 5 p.m. ET on @fightnet! https://t.co/5lSMt2IW7c" +06/12/2018,Sports_celeb,@titoortiz,In 70 years U.S. couldn’t make this happen… https://t.co/PoTmxxm6RT +06/12/2018,Sports_celeb,@titoortiz,I found someone with a head bigger than mine. Go… https://t.co/c15uLY6Rrm +06/11/2018,Sports_celeb,@titoortiz,RT @34Dodgers: The #HuntingtonBeachBadBoy @titoortiz https://t.co/OBQNr7uDOS +06/11/2018,Sports_celeb,@titoortiz,@martinmcneil @JayTWarsh @OfficialSaschaK @BrownsGuru13 @ChuckLiddell @TMZ @danawhite Will to take that chance. I t… https://t.co/3ygOm8a3Gh +06/11/2018,Sports_celeb,@titoortiz,@martinmcneil @JayTWarsh @OfficialSaschaK @BrownsGuru13 @ChuckLiddell @TMZ @danawhite 100% he is asking for it. I want redemption. +06/11/2018,Sports_celeb,@titoortiz,Looking forward to the event! https://t.co/FBz7iJ2UUC +06/11/2018,Sports_celeb,@titoortiz,Happy Birthday parilloboxing you have made my… https://t.co/mEYDuU186O +06/11/2018,Sports_celeb,@titoortiz,Thanks for having s on the show! @tattoolovesla… https://t.co/7wiXthcdKY +06/11/2018,Sports_celeb,@titoortiz,"RT @fightnet: FAN VOTE! We're featuring UFC Hall of Famers in episode of ""UFC in 60"" for International Fight Week! + +Which ""EARLY LEGEND"" wo…" +06/11/2018,Sports_celeb,@titoortiz,#Make17Monday foxnews with… https://t.co/U95pWAnwqh +06/11/2018,Sports_celeb,@titoortiz,"@Noel3881 @JayTWarsh @ChuckLiddell No your boy chuck called me out. Third time will be my charm. Try,try and try again." +06/11/2018,Sports_celeb,@titoortiz,@WickedTuna Sunday’s are great. Get my fix of fishing from television can really happen. #fishingbug @TJHOTTUNA +06/10/2018,Sports_celeb,@titoortiz,RT @_LES_: @ChuckLiddell Never thought I'd see u dodge @titoortiz +06/10/2018,Sports_celeb,@titoortiz,@ChuckLiddell Why isn’t this fight signed yet? 🤔 Oh yeah we are wait on you! Let’s gets this done! Come on chucky p… https://t.co/x37goYyxJz +06/10/2018,Sports_celeb,@titoortiz,This was my last fight last year. You must of forgot! I want #Redemption on The Iceman. https://t.co/Mi25RBD8pk +06/10/2018,Sports_celeb,@titoortiz,.@ChuckLiddell please don’t tell me it was all talk on @TMZ? You say I’m an easy fight? You are the Iceman but are… https://t.co/bmYv9fFpDb +06/10/2018,Sports_celeb,@titoortiz,@RobWhittakermma has a huge heart. 👏🏼 Respect #ufc225 +06/10/2018,Sports_celeb,@titoortiz,Great fight! +06/10/2018,Sports_celeb,@titoortiz,They are gassed. #ufc225 +06/10/2018,Sports_celeb,@titoortiz,@toycars1980 You can see it on my Instagram +06/10/2018,Sports_celeb,@titoortiz,@toycars1980 Sorry I was to busy fishing. +06/10/2018,Sports_celeb,@titoortiz,Wait @YoelRomeroMMA didn’t make weight? Crazy! #ufc225 +06/09/2018,Sports_celeb,@titoortiz,Great day on the water. Went 5-12 on yellowtail… https://t.co/Q6maKjsg2b +06/09/2018,Sports_celeb,@titoortiz,@SugaRashadEvans Reapect!✊🏼 https://t.co/sT1oXikxJ4 +06/08/2018,Sports_celeb,@titoortiz,"@Bloodydecks with get_repost +・・・ +Monster calico… https://t.co/QebZ4QmHn7" +06/07/2018,Sports_celeb,@titoortiz,@Brouskie Come train with me. Just one session of the three I do 6 day a week. +06/07/2018,Sports_celeb,@titoortiz,🙏🏼 #Redemption https://t.co/7o3gIN2rHK +06/07/2018,Sports_celeb,@titoortiz,@bradcooney1 The hell with it I’m doing it with or without him. I’m on week 4 of training and I still have it. +06/07/2018,Sports_celeb,@titoortiz,https://t.co/uPjInI7a5M thank you for the new mouth piece. Since 2005 you guys have produced the best mouth pieces.… https://t.co/yfKTa99X1M +06/06/2018,Sports_celeb,@titoortiz,"RT @HispanicallyUrs: MOVIES: @Cinedigm acquires North American distribution rights to @titoortiz's ""#Silencer."" https://t.co/xhbU8LKA7s" +06/05/2018,Sports_celeb,@titoortiz,@quicorafa I will be there that weekend. +06/05/2018,Sports_celeb,@titoortiz,Great news coming soon. #GoldenBoyMMA +06/04/2018,Sports_celeb,@titoortiz,.@ChuckLiddell walks away from a multimillion dollar fight? I can’t wait anymore. #GoldenBoyMMA +06/02/2018,Sports_celeb,@titoortiz,@AlanMurphyMMA @ChuckLiddell Waiting on @ChuckLiddell +06/01/2018,Sports_celeb,@titoortiz,Happy 16th Birthday Son @Jakeort58726870 You… https://t.co/TwXq2SWVU5 +05/31/2018,Sports_celeb,@titoortiz,@mjBrolin @ChuckLiddell @GoldenBoyBoxing Ppl don’t like the truth. You know the history. 👍🏼 +05/31/2018,Sports_celeb,@titoortiz,"RT @CollinAStewart: @ZachJLindquist @titoortiz @ChuckLiddell @GoldenBoyBoxing To be fair, Chuck called him out first." +05/31/2018,Sports_celeb,@titoortiz,.@ChuckLiddell good thing I’m not holding my breath. Let’s give the fans this fight! We have a chance to change the… https://t.co/KtXE05vtRr +05/31/2018,Sports_celeb,@titoortiz,RT @iamKokoD: @MMAjunkie Don’t think so. @titoortiz steamrolled @ChaelSonnen who’s still fighting at a decent level. He’ll smash chuck this… +05/30/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: May30.1997 + +21 years ago today, + +Tito Ortiz made his professional MMA debut, & def. Wes Albritton by TKO https://t.co/…" +05/29/2018,Sports_celeb,@titoortiz,"RT @fightnet: Tune in to #Retrospective with @patrick_cote at 9:30 p.m. ET speaking on facing @titoortiz, plus much more. https://t.co/uwSc…" +05/29/2018,Sports_celeb,@titoortiz,.@ChuckLiddell Let’s get this signed! @GoldenBoyBoxing #GoldenBoyMMA https://t.co/Qmg45NMmH7 +05/26/2018,Sports_celeb,@titoortiz,"RT @punisherpride: @Punishment99 @titoortiz Tito, great clothing line but missing bigger sizes always,need 2X - 3X and some jersey tanks...…" +05/25/2018,Sports_celeb,@titoortiz,"RT @Punishment99: We've got some amazing deals for you this Memorial Day weekend. Today through Tuesday, save 20% off of your entire order…" +05/25/2018,Sports_celeb,@titoortiz,"RT @Punishment99: And we have yet another incredible deal for you on this Memorial Day Weekend! +When you spend $25 we’ll send you one of th…" +05/24/2018,Sports_celeb,@titoortiz,#keepfighting https://t.co/D8QnafTeoT +05/24/2018,Sports_celeb,@titoortiz,RT @MMAWriter_Greg: @JayTWarsh exclaims @titoortiz motive in regards to the Liddell / Ortiz Trilogy. #MMANews #MMA https://t.co/8jYUabSFFA +05/24/2018,Sports_celeb,@titoortiz,👌🏼 https://t.co/88pVb1QgQJ +05/23/2018,Sports_celeb,@titoortiz,@bradcooney1 @USPS @bradcooney1 Let me see what I can do for you guys. 👌🏼 +05/22/2018,Sports_celeb,@titoortiz,RT @MikeTyson: Check out my new podcast episode with former UFC champion and UFC Hall of Famer @TitoOrtiz. We talk about whether I ever tho… +05/22/2018,Sports_celeb,@titoortiz,@MMAWriter_Greg @JayTWarsh @ChuckLiddell My brother from another mother. +05/22/2018,Sports_celeb,@titoortiz,“I started this gangster shit and this is the mother fucking thanks I get”- @IceCube Bellator 170 Recap: Tito Ortiz… https://t.co/Us1Kgb4OEl +05/22/2018,Sports_celeb,@titoortiz,".@ChuckLiddell what’s taking so long? You said,” you like punching me in the head and it’s an easy fight for you!”… https://t.co/inD4TzWeTP" +05/19/2018,Sports_celeb,@titoortiz,RT @TMZ_Sports: Tito Ortiz Says Fight With Chuck Liddell Will be Hugest In MMA History https://t.co/80EA6ev6M7 +05/19/2018,Sports_celeb,@titoortiz,RT @criscyborg: Tito Ortiz favored over Chuck Liddell in 3rd fight https://t.co/6TaPiqbd1k +05/19/2018,Sports_celeb,@titoortiz,"RT @TheTylt: .@ufc legends @titoortiz and @ChuckLiddell could be squaring off for their third fight. Who would win? + +Tweet #TeamOrtiz or #…" +05/19/2018,Sports_celeb,@titoortiz,@KnicktheWolf @TMZ_Sports Yes 2.2 million views and tapped out Chael in the first round. 🤔 +05/19/2018,Sports_celeb,@titoortiz,@GinaHerndon7 @Poison @cheaptrick I had to train. +05/19/2018,Sports_celeb,@titoortiz,@GirlyDuckGirl I hope you enjoy the show. https://t.co/MRegFz6R3G +05/19/2018,Sports_celeb,@titoortiz,@gabijiu Yes Monday. Call @CrisCyborg for time. +05/19/2018,Sports_celeb,@titoortiz,@GirlyDuckGirl Yes +05/18/2018,Sports_celeb,@titoortiz,The first person to see me at Cleber Luciano BJJ & MMA in Huntington Beach can have them. I will be there at 5pm. +05/18/2018,Sports_celeb,@titoortiz,@MmaDonald What part of free don’t u get? +05/18/2018,Sports_celeb,@titoortiz,"Who wants two free tickets to @Poison and @CheapTrick for tonight’s show in Irvine,CA 7pm?" +05/18/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: May17.2014 + +Tito Ortiz makes his Bellator debut, + +& puts Alexander Shlemenko to sleep with an arm triangle choke https…" +05/16/2018,Sports_celeb,@titoortiz,@UFC5150 @Punishment99 It’s strong. It feels like new. +05/16/2018,Sports_celeb,@titoortiz,Thank you! https://t.co/9Goa7oTK6G +05/15/2018,Sports_celeb,@titoortiz,"RT @OfficialSaschaK: @titoortiz out of retirement✅ +@ChuckLiddell out of retirement✅ +@OscarDeLaHoya as a promoter✅ +All we need is a DATE & P…" +05/15/2018,Sports_celeb,@titoortiz,Happy Birthday to @AlonzoLAPD ones of my biggest fans and supporters… https://t.co/g5WaQTjzCd +05/14/2018,Sports_celeb,@titoortiz,@JonnyBones 🤫Let me get redemption this time around. +05/14/2018,Sports_celeb,@titoortiz,#TitovsChuck3 soon to come! Let’s Go!!’ +05/14/2018,Sports_celeb,@titoortiz,"Step two done ✅ +Breaking News: Chuck Liddell officially out of… https://t.co/vsCPuI1v52" +05/14/2018,Sports_celeb,@titoortiz,Welcome mercedesbenzsd and shaneboyd13 to @TOautogroup a match made… https://t.co/mGzvHnEcHL +05/14/2018,Sports_celeb,@titoortiz,RT @OnPointMMA: .@ChuckLiddell says he’s talking to @OscarDeLaHoya about partnering with @GoldenBoyBoxing and putting together an #MMA figh… +05/14/2018,Sports_celeb,@titoortiz,"#Make17Monday #Repost scottcarrgbcm +My friend @titoortiz started… https://t.co/VyojIBeDFA" +05/14/2018,Sports_celeb,@titoortiz,"My brothers and me with Mom. #Mothersday @ Huntington Beach, California https://t.co/cBxHcb5tXp" +05/13/2018,Sports_celeb,@titoortiz,Happy Mother’s Day Mom joycejohnson398 I love you. ❤️ @ Huntington… https://t.co/gBLO0KcKO0 +05/13/2018,Sports_celeb,@titoortiz,Video: Aaron Pico vs. Justin Linn https://t.co/4kfycP0Qjg via @MMAFighting +05/13/2018,Sports_celeb,@titoortiz,Ready to go! @ufc https://t.co/MtCVEh93OZ +05/13/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: UFC 61 took place 10 years ago today + +It set a UFC PPV buyrate record at an estimated 775,000+ buys https://t.co/dNA2g…" +05/13/2018,Sports_celeb,@titoortiz,I see a challenge for @CrisCyborg #ufc224 +05/13/2018,Sports_celeb,@titoortiz,"@RyanBader finishes King Mo +in 15 SECONDS!! @ RVCA https://t.co/lHQxz3gG1U" +05/13/2018,Sports_celeb,@titoortiz,Good fight #ufc224 +05/13/2018,Sports_celeb,@titoortiz,"Congrats brother @WinbackUSA +・・・ +Need a caption?  1st round TKO https://t.co/qt5stC34HN" +05/13/2018,Sports_celeb,@titoortiz,WOW! Great fight! @espn +05/13/2018,Sports_celeb,@titoortiz,#Lomachenko is fast as hell. @espn +05/13/2018,Sports_celeb,@titoortiz,"Straight right hand! Says ,@OscarDeLaHoya" +05/13/2018,Sports_celeb,@titoortiz,@TheGarden looks packed on @ESPN +05/13/2018,Sports_celeb,@titoortiz,@NickHeinMMA kickass! @Punishment99 #UFC224 +05/12/2018,Sports_celeb,@titoortiz,Lucky to live in paradise. #HardWorkPaysOff 🙏🏼 #HuntingtonBeach 🇺🇸 @… https://t.co/mK65orhc7e +05/12/2018,Sports_celeb,@titoortiz,TONIGHT! Free on espn #LinaresLoma #AndStill 👑 @jorgelinares… https://t.co/GXZfCkRV2K +05/12/2018,Sports_celeb,@titoortiz,@AntonioSabatoJr @POTUS @realDonaldTrump Mine too !🙏🏼🇺🇸 +05/12/2018,Sports_celeb,@titoortiz,"RT @Punishment99: So you forgot tomorrow is Mother's Day? Not to worry. Use code ""MOM"" through tomorrow and save thirty percent on your ent…" +05/11/2018,Sports_celeb,@titoortiz,What if #MMA fighters got paid like boxers? Instead of subcontractors. We would be partners. I’m going to change th… https://t.co/E0vRWr1ceN +05/11/2018,Sports_celeb,@titoortiz,I want to give the fans the fight they have been waiting for… https://t.co/w9B6xHi4xB +05/11/2018,Sports_celeb,@titoortiz,Introducing the partnership of @RockwellTime and @titoortiz.… https://t.co/1EEVTm1XRy +05/11/2018,Sports_celeb,@titoortiz,#TBT goes to @gtjokes Happy Birthday today homie. #captionthis @… https://t.co/rMquaddHSS +05/09/2018,Sports_celeb,@titoortiz,"One step closer. #TitovsChuck3 @ Huntington Beach, California https://t.co/Wg1RxQ4GUU" +05/09/2018,Sports_celeb,@titoortiz,@lapane21 Go to https://t.co/tZkfaahu1H +05/08/2018,Sports_celeb,@titoortiz,".@RealDonaldTrump +Making Moves in Historic Portions ! United States… https://t.co/YXPaLxlU7t" +05/08/2018,Sports_celeb,@titoortiz,"#Repost brown__eyed_girl__ with get_repost +・・・ +Tristen, Mom Misty… https://t.co/zia9xqTGDh" +05/08/2018,Sports_celeb,@titoortiz,I wish more did. https://t.co/fbTv2guzau +05/07/2018,Sports_celeb,@titoortiz,"#Make17Monday +We started #MAKE17 to Inspire, Spread Love and Acceptance. We… https://t.co/mxZrwDYjaU" +05/06/2018,Sports_celeb,@titoortiz,#AmericaFirst @ Caesars Palace https://t.co/dZDYTm8kcZ +05/05/2018,Sports_celeb,@titoortiz,This is how we walk into #CincoDeMayo weekend l. Let’s go!!! 🇲🇽 #MexiCan @… https://t.co/orocielbZ4 +05/05/2018,Sports_celeb,@titoortiz,The best for the job! @GrapplersRus -… https://t.co/bZUYk9UkqD +05/05/2018,Sports_celeb,@titoortiz,"This is the new breed of boxing. Speed for days. Wow. @OscarDeLaHoya - +Great… https://t.co/Vq0qOs7bDd" +05/05/2018,Sports_celeb,@titoortiz,@RockwellTime time to enjoy #CincoDeMayo 🇲🇽#LasVegas weekend. Thank you… https://t.co/N09XjBSrSX +05/04/2018,Sports_celeb,@titoortiz,"#TBT So the story can still be finished. #TitovsChuck3 @ Huntington Beach,… https://t.co/rprIKE8Cqp" +05/03/2018,Sports_celeb,@titoortiz,The fight that didn’t happen #TitovsChuck3 just might happen!… https://t.co/0QsTAhKEPV +05/03/2018,Sports_celeb,@titoortiz,#TBT My first fight and it was for free in the @UFC I fought twice that… https://t.co/I9VldcHVdg +05/03/2018,Sports_celeb,@titoortiz,#hardworkpaysoff +05/02/2018,Sports_celeb,@titoortiz,.@TheRock Happy Birthday I hope you have a great one. Thank for being a great… https://t.co/Xm1aL8IJGm +05/02/2018,Sports_celeb,@titoortiz,"RT @Punishment99: A @Punishment99 addiction from OAKVILLE, Ontario 🇨🇦 https://t.co/bW5yDrdKHo" +05/01/2018,Sports_celeb,@titoortiz,@billykorhummel Yes it was. +05/01/2018,Sports_celeb,@titoortiz,Middle of my Monday session with parilloboxing take a break and then train… https://t.co/QlIeZde20W +04/30/2018,Sports_celeb,@titoortiz,Nice to have a partnership with @ManheimSoCal and @TOAutoGroup Our cars are bringing all the… https://t.co/hnNU6QTvN6 +04/30/2018,Sports_celeb,@titoortiz,"#Make17Monday +Shirts now Available on @Punishment99 We started #MAKE17 to Inspire, Spread Love… https://t.co/CLVC6eDY4O" +04/30/2018,Sports_celeb,@titoortiz,"We set them up you knock them down. @Primetime360esm @UFC +Believe me. On the 27th you wanna see… https://t.co/dXo52eA4xv" +04/29/2018,Sports_celeb,@titoortiz,My first fight and it was for free in the @UFC I fought twice that night. The only UFC fighter… https://t.co/I8xybFAemK +04/28/2018,Sports_celeb,@titoortiz,"#itstartsathome #Make17 @ Huntington Beach, California https://t.co/a1hlqnb5Ts" +04/27/2018,Sports_celeb,@titoortiz,"Join us tomorrow, Saturday 4/28 @ 10am to support The Youth Center! They do so much for our… https://t.co/2qsN1R5haj" +04/27/2018,Sports_celeb,@titoortiz,@RockwellTime #HallofFamer #TitoOrtiz watches soon to come! #MMA #timetotakeover #limitededition… https://t.co/DeVNAZfOS3 +04/27/2018,Sports_celeb,@titoortiz,RT @MikeTyson: Check out my interview with @TitoOrtiz where we talk about what would happen if Conor McGregor and Floyd Mayweather ever fou… +04/26/2018,Sports_celeb,@titoortiz,Thank you ufcgirlie helping us do something positive for our kids future. #itstartsathome… https://t.co/lO2JH5c3Pr +04/25/2018,Sports_celeb,@titoortiz,".miketyson with get_repost +・・・ +Link in bio. Talking to former UFC champion Tito Ortiz on the… https://t.co/ChmH6P159n" +04/24/2018,Sports_celeb,@titoortiz,"#Repost @tattoolovesla with get_repost +・・・ +So excited to be a part of bitethemic miketyson check… https://t.co/xfpCB1AV02" +04/22/2018,Sports_celeb,@titoortiz,@rywall615 For @MakeAWish +04/22/2018,Sports_celeb,@titoortiz,#Nashville is off the hook. +04/22/2018,Sports_celeb,@titoortiz,"This man is on a mission. @ufconfox +・・・ +Siyar Bahadurzada with the crippling body shot KO… https://t.co/4u8aNuwMJH" +04/22/2018,Sports_celeb,@titoortiz,@CraigWoolley12 @MakeAWish +04/22/2018,Sports_celeb,@titoortiz,"@PrimeTime360esm +Fighter @Siyarized congrats awesome KO!!! @UFC @alistairovereem #MMA @ Atlantic… https://t.co/xWuqtadQ6A" +04/21/2018,Sports_celeb,@titoortiz,RT @DonaldJTrumpJr: This is a really big deal for everyone! Well done @realDonaldTrump https://t.co/aVEmPF7hSu +04/21/2018,Sports_celeb,@titoortiz,My service will be impeccable! This is a great cause. Thank you. Kevin Carter and Jay… https://t.co/3lzhq1WfFn +04/20/2018,Sports_celeb,@titoortiz,Thank you for help making a difference. #Make17 #Repost @geronimology with… https://t.co/orlDxMTeQM +04/20/2018,Sports_celeb,@titoortiz,"RT @PokerNightTV: One night of poker was not enough for @titoortiz! +Check him out again: +https://t.co/CfkEm8Hivb #GardensPokerNight + +Also…" +06/14/2018,Sports_celeb,@SpiderAnderson,RT @justcause: #justcause4 #E32018 @SpiderAnderson is HERE https://t.co/KimFrBUgNm https://t.co/ZVJ4MXTh5f +06/08/2018,Sports_celeb,@SpiderAnderson,Mais um dia! Mais um treino obrigado! @coachfabiomelo https://t.co/ZMaBsoXTMN +06/04/2018,Sports_celeb,@SpiderAnderson,"Mais um dia. Quase acabando meu povo . +#rcview +#cinematogapher #filmmakerslife +#cinematography #filmmaking… https://t.co/GuSEWIrE0G" +05/22/2018,Sports_celeb,@SpiderAnderson,"Fala meu povo!!! +Ajude você também! Para o pessoal do Rio de Janeiro! Compareça, participe, faça seu cadastro nest… https://t.co/hBRLzU7MvY" +05/17/2018,Sports_celeb,@SpiderAnderson,"Check out the Ultimate Beastwear for kids + +Confira o Ultimate Beastwear para crianças https://t.co/6xJc2bQc07" +05/10/2018,Sports_celeb,@SpiderAnderson,Step into the Octagon as the 🕷️ 🇧🇷 Get up to 40% off for a limited time 👉 https://t.co/mFqcbo9euI https://t.co/JnoeUS4H34 +04/16/2018,Sports_celeb,@SpiderAnderson,O melhor dessa vida é o momento em que você olha para trás e conta da forma mais divertida todas as coisas que vivi… https://t.co/jRhr0S0zKV +04/06/2018,Sports_celeb,@SpiderAnderson,"Coming soon! 🐉 Em breve! +🎥 The Invincible Dragon https://t.co/foLYLGTdsY" +04/05/2018,Sports_celeb,@SpiderAnderson,Fala meu povo! Corre lá no perfil do Instagram da SpiderKick para participar do sorteio e faturar esse boné maneiro… https://t.co/IrNT4aaO59 +04/04/2018,Sports_celeb,@SpiderAnderson,Coming soon ! https://t.co/kUuAl04yt6 +03/23/2018,Sports_celeb,@SpiderAnderson,🎮 It's time for the 🕷 to #BeatTheBoss #EAUFC3 👊🏾 Buy now and save 35% 👉 https://t.co/mFqcboqPTi https://t.co/tDABzscw9C +03/01/2018,Sports_celeb,@SpiderAnderson,A Besta voltou e eu serei o host do Time Brasil. Não percam #UltimateBeastmaster Terceira temporada está chegando e… https://t.co/lU19znbZSz +02/28/2018,Sports_celeb,@SpiderAnderson,My people! Good news! I would like to thank the watch brand Ritmo Mundo (@ritmo_mundo) for the invitation to be amb… https://t.co/oQqWk5jAmb +02/26/2018,Sports_celeb,@SpiderAnderson,"Hey guys! On March 9 and 10 I'll be at @KillerBees_Fl (Melbourne, Florida, USA) for a technical seminar. (321) 541-… https://t.co/F5vEmcCARd" +02/23/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/eIA7FiduPA +02/19/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/PfAFfAGDzg +02/14/2018,Sports_celeb,@SpiderAnderson,"My friends (Dave Broome @davebroome88 e Shakim Compere), thank you for the time with you. Putting into practice all… https://t.co/Up3MOEMKWx" +02/02/2018,Sports_celeb,@SpiderAnderson,"Time to play some Knockout Mode 👊 💥 ! +@EASPORTSUFC 3 is out now! 👉 https://t.co/EFwopwULvT https://t.co/QrBNG29BP8" +02/01/2018,Sports_celeb,@SpiderAnderson,My teacher and I 🤓! #YourYear #BerlizUS #SpeakwithConfidence https://t.co/YenTpLuBmM +01/30/2018,Sports_celeb,@SpiderAnderson,"O filme é incrível! A mensagem que este incrível filme da @marvelstudios passa, é fantástica! The movie is incredib… https://t.co/niVQl8KGrX" +01/23/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/MxVxWC5x5X +01/22/2018,Sports_celeb,@SpiderAnderson,"Todos sabem do meu sonho, com todo respeito ao grande @RealRoyJonesJr , espero que possamos fazer este espetáculo.… https://t.co/opjeB23uFI" +01/21/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/YhcV9RRQhD +01/16/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/iiuu4H0oNk +01/14/2018,Sports_celeb,@SpiderAnderson,Quem já ouviu a nova música do @officialkalyl ? https://t.co/lZ8H2GgXKl +01/12/2018,Sports_celeb,@SpiderAnderson,"Galera, estamos trabalhando para trazer novidades pra vocês com a minha marca, a Spider Kick! +. +Hey guys, we are wo… https://t.co/NASZYjyKuW" +01/10/2018,Sports_celeb,@SpiderAnderson,The new song of Kalyl Silva - Nova música do Kalyl Silva - https://t.co/4YSd6mFNwG +01/02/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/Q8oWjrejCE +12/28/2017,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕸🕷 https://t.co/QxOUyth0C4 +12/27/2017,Sports_celeb,@SpiderAnderson,🕸🕷🙏🏾👊🏾 https://t.co/M5pZR6E1Fv +12/26/2017,Sports_celeb,@SpiderAnderson,🕷👊🏾🙏🏾🕸 https://t.co/oWECsQubxL +12/20/2017,Sports_celeb,@SpiderAnderson,🕸👊🏾🕷🙏🏾 https://t.co/HXcdG7ZWVA +12/19/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/ipMLGNq638 +12/19/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/qqds6WeOj5 +12/17/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/zZlXw3L5yj +12/15/2017,Sports_celeb,@SpiderAnderson,🕷👊🏾👊🏾🙏🏾🙏🏾🕸🕸 https://t.co/X1GSRyVKxw +12/13/2017,Sports_celeb,@SpiderAnderson,"LEVANTE-SE e enfrente o desafio 15 de dezembro, todos os novos episódios de #ultimatebeastmaster no #netflix Ganhe… https://t.co/I391RlD1vf" +12/13/2017,Sports_celeb,@SpiderAnderson,"RISE UP and face the challenge on Dec 15, binge all-new episodes of #ultimatebeastmaster on #netflix Take 10% off a… https://t.co/86Vselv1Py" +12/13/2017,Sports_celeb,@SpiderAnderson,🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/Pt6vCrUh0r +12/11/2017,Sports_celeb,@SpiderAnderson,https://t.co/FoAJIOXPfq +12/11/2017,Sports_celeb,@SpiderAnderson,👊🏾🕷🙏🏾 https://t.co/7rAFNgvoOm +12/08/2017,Sports_celeb,@SpiderAnderson,#lastnight #gqmenoftheyearawards @GQMagazine @GQBrasil https://t.co/B1QF4dDMbn +12/01/2017,Sports_celeb,@SpiderAnderson,#spiderkick #nevergiveup https://t.co/eSEbONm46a +11/30/2017,Sports_celeb,@SpiderAnderson,#nevergiveup #spiderkick #boxing #knockout #sport #motivation #ufc #workout #training #mma #champion #jiujitsu… https://t.co/46qhlhtPba +11/24/2017,Sports_celeb,@SpiderAnderson,#nevergiveup #spiderkick https://t.co/7K12qB6AvP +11/24/2017,Sports_celeb,@SpiderAnderson,My partners @rootsoffight are having their legendary #BlackFriday sale and it’s on NOW! Take some inspiration from… https://t.co/Zz4bfL50B0 +11/16/2017,Sports_celeb,@SpiderAnderson,🙏🏾👊🏾🕷 https://t.co/a0iTUEdloa +11/16/2017,Sports_celeb,@SpiderAnderson,🙏🏾👊🏾🕷 https://t.co/4oaO2Pt2IB +11/15/2017,Sports_celeb,@SpiderAnderson,Thanks for all your support! A big kiss for everyone and see you soon. https://t.co/nvoZTJkwct +11/15/2017,Sports_celeb,@SpiderAnderson,Obrigado por todo o apoio! Um grande beijo pra todos e nos vemos em breve. https://t.co/jWMQSsUuLu +11/10/2017,Sports_celeb,@SpiderAnderson,"UFC Xangai - 25 de novembro! . UFC Shangai - november 25 ! + 🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/OCTN9ABR1I" +11/08/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾👊🏾👊🏾🕷🕷🕷 #SpiderKick https://t.co/vGUYp2zfSM +11/07/2017,Sports_celeb,@SpiderAnderson,"My friend @terrycrews , Thank you very much for everything! I am happy to be able to learn more and more. https://t.co/iZE5ji8XZv" +11/05/2017,Sports_celeb,@SpiderAnderson,"RT @ufc: The greatest fighter of his generation, @SpiderAnderson returns Nov. 25 exclusively on @UFCFIGHTPASS + +https://t.co/UDtt4ysli2 http…" +11/04/2017,Sports_celeb,@SpiderAnderson,"Cadastre-se e concorra a uma viagem pra China! Venha assistir minha luta, acesse https://t.co/YAMUIR1ypW https://t.co/tJnvcG3XWL" +11/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/lsKF8fpbJ3 +10/31/2017,Sports_celeb,@SpiderAnderson,ANDERSON SILVA - STRONG LIFE - EP06 - RESPEITO / RESPECT https://t.co/7XfVkEC3iI +10/25/2017,Sports_celeb,@SpiderAnderson,#UFC90 - Patric Côté . Chicago - 9 years ago / 9 anos atrás. https://t.co/naqwwmzPxV +10/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/m5AVOL4Myx +10/24/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/rtxjSw4LAt +10/23/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/PTDtflspjH +10/22/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/saJJIZcICD +10/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/myhrsRiwNU +10/20/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gLwyFskBwQ +10/19/2017,Sports_celeb,@SpiderAnderson,No dia 28 de outubro acontece em São Paulo no Ginásio do Ibirapura o UFC Fight Nigh São Paulo. Mais informações em… https://t.co/XVGc69oDes +10/19/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Mmzx6xzLlw +10/17/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/jA9oo2WcFa +10/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/P6aeBR0jx9 +10/16/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Neste final de semana fez 11 anos que @SpiderAnderson conquistou o cinturão peso médio, no UFC 64. Nosso total respeito a e…" +10/15/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/BMqYPNMnRe +10/14/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/UZTgmvHYWC +10/07/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/ur6Qbbj8w4 +10/06/2017,Sports_celeb,@SpiderAnderson,ANDERSON SILVA - STRONG LIFE - #EP05 - COMPROMETIMENTO / COMMITMENT - #stronglife #spidersilva #andersonsilva… https://t.co/ZNKnT07aF1 +10/04/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/WzsmRVKq4D +10/03/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/rXza2YQwy4 +10/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/6RejseUEG0 +09/29/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/aTDobUxGGq +09/29/2017,Sports_celeb,@SpiderAnderson,"Como não ser feliz com uma sobrinha fofa e linda como esta? Pietra linda, te amo ❤️ https://t.co/cUpGdxicHX" +09/28/2017,Sports_celeb,@SpiderAnderson,STRONG LIFE - EP04 - O QUE MOVE VOCÊ? / WHAT MOVES YOU? #StrongLIfe #VidaForte https://t.co/OJzQY34Fik +09/28/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gw0RjtRlfD +09/27/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/VdfQufU9O7 +09/26/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/smjVPbp8Fk +09/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Zmq5wMW2mf +09/22/2017,Sports_celeb,@SpiderAnderson,STRONG LIFE - EP03 - SANGUE E SUOR / BLOOD AND SWEAT - #stronglife #fight #andersonsilva #spidersilva #inspire… https://t.co/DBzonZ0fJn +09/22/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/LI0Ojn3YiM +09/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Q758QrEWZc +09/21/2017,Sports_celeb,@SpiderAnderson,@kobebryant @RealJayWilliams ! 👊🏾👊🏾🙏🏾🙏🏾 https://t.co/gt0ATXqvwZ +09/16/2017,Sports_celeb,@SpiderAnderson,"Um grande comunicador, um homem admirável, amigo e companheiro. Obrigado por tudo. Vá com DEUS, professor. https://t.co/jYTLupC9dp" +09/15/2017,Sports_celeb,@SpiderAnderson,Strong Life - #EP02 - MELHOR QUE ONTEM / BETTER THAN YESTERDAY https://t.co/tcZi8Day63 +09/13/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/cqiPK1BGDI +09/12/2017,Sports_celeb,@SpiderAnderson,"Guys, I'm not the only Spider-Man fan! My teacher here at @Berlitz_US is too! #BerlitzUS #Andersonbelieves… https://t.co/uJTADUNKZv" +09/12/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/K7ifsGD7WC +09/11/2017,Sports_celeb,@SpiderAnderson,"Canal Oficial do ""Spider"" Anderson Silva. Official channel of ""The Spider"" Anderson Silva: https://t.co/4UHFxf3h6e via @YouTube" +09/11/2017,Sports_celeb,@SpiderAnderson,Strong Life - #EP01 - VONTADE DE VENCER / WILL TO WIN #stronglife #spidersilva #andersonsilva #fight #inspiration… https://t.co/Lc2kbDoTuE +09/07/2017,Sports_celeb,@SpiderAnderson,RESPECT. The New: Kalyl Silva (@officialkalyl )- https://t.co/aIgyDSFKsE https://t.co/LoLrRhkUBh +09/07/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/3LEKXQFK9o +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/eNuCgPrTde +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/XzuTiqIkFX +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/u0RGn4xi51 +09/04/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/bzZPsfJF2j +08/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/R9oF3S3nCa +08/23/2017,Sports_celeb,@SpiderAnderson,"Galera,o importante é estar feliz com você mesmo no seu dia a dia.Guys, what matters is that you are happy with you… https://t.co/RPzAkJJIEi" +08/21/2017,Sports_celeb,@SpiderAnderson,Disciplina é aprender a ter capacidade de observar e absorver. / Discipline is learning to be able to observe and a… https://t.co/j3JJD4xE9D +08/20/2017,Sports_celeb,@SpiderAnderson,"This week I had the honor of meeting Jacob Meir, an Israeli artist with a Brazilian heart! Thanks for the affection… https://t.co/O5fr9yrkVZ" +08/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/HecM8WhFNg +08/15/2017,Sports_celeb,@SpiderAnderson,"In this new journey, I am dedicating myself to study english with @BerlitzUS #BerlitzUS #Andersonbelieves… https://t.co/rAdhmxn4cU" +08/14/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/cqcYRvAuj2 +08/13/2017,Sports_celeb,@SpiderAnderson,Ser pai é abrir mão da perfeição e ser capaz de aprender com os filhos e com Deus a ser pai e ser um bom filho. Fel… https://t.co/WJnQZdLZkR +08/12/2017,Sports_celeb,@SpiderAnderson,Anderson Silva X José Barreto - Mecca: World Vale Tudo 2 - Curitiba - Brasil - 08.2000 #mecca #valetudo… https://t.co/L4fVVpJFit +08/10/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gCrRU0bTFQ +08/09/2017,Sports_celeb,@SpiderAnderson,@canalCombate Parabéns pelos 15 anos! Desejo a todos muitas felicidades. https://t.co/iMlpyvl1Lr +08/08/2017,Sports_celeb,@SpiderAnderson,"UFC 101: Silva vs Griffin - 8 de agosto de 2009 / August 8, 2009 - This fight won the ""Beatdown of the Year"" award… https://t.co/iJ4MBSKVDZ" +08/08/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/ETNDPgw0yZ +08/06/2017,Sports_celeb,@SpiderAnderson,"Ginásio Antonio Balbino, Salvador, Bahia, Brazil, 5.AGO.2005 + / Minotauro Fights II - Anderson Silva vs Julio Cesar… https://t.co/H8NOper9Sm" +08/05/2017,Sports_celeb,@SpiderAnderson,Guys! I'm here at the Los Angeles Memorial Coliseum to support Children's Hospital Los Angeles. #PlayLa https://t.co/GdLKJ3rGRs +08/04/2017,Sports_celeb,@SpiderAnderson,"Join me and @ChildrensLA on Aug 5 for the first ever #PlayLA! Family festival, w/ special musical guests. Details:… https://t.co/E8vLVYq8OG" +08/02/2017,Sports_celeb,@SpiderAnderson,Go to my instagram and follow my live training / Treino ao vivo no meu instagram https://t.co/iew5GT08Mk https://t.co/0bcObBu5RM +08/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/JZ54hDgqbc +07/31/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/PR59HCykYn +07/29/2017,Sports_celeb,@SpiderAnderson,Happy Birthday @terrycrews . May God always enlighten your walk.Thanks for everything. I wish you health and wisdom… https://t.co/riyzUz5Iho +07/29/2017,Sports_celeb,@SpiderAnderson,Go to my instagram and follow my live training / Treino ao vivo no meu instagram https://t.co/DyVmnUWzL9 +07/28/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/GM1UfruLVI +07/28/2017,Sports_celeb,@SpiderAnderson,I am doing a live training at my instagram! Treino ao vivo no meu instagram! https://t.co/DyVmnUWzL9 +07/27/2017,Sports_celeb,@SpiderAnderson,"👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 +🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 https://t.co/tMU5jTljkH" +07/25/2017,Sports_celeb,@SpiderAnderson,Galera! 1 de Outubro vi rolar o Prime Esportes - Jiu Jitsu Experience. Incrições pelo site https://t.co/yLtmLktIFu https://t.co/pAhpwdX4UM +07/25/2017,Sports_celeb,@SpiderAnderson,@prolastboxing @profightshop #fightshop #prolast #promma #mmafightshop #procombat #profightshop #hollywoodfightshop… https://t.co/deg7ry5Siv +07/22/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/0oEjxUE8NF +07/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🙏🏾🙏🏾🙏🏾🕸🕸🕸 https://t.co/zb7lAZ1lFR +07/20/2017,Sports_celeb,@SpiderAnderson,This week the Heard Podcast release my interview with Benjamin Mathes.It was a nice conversation!I hope you like it… https://t.co/Hsmo06vrIq +07/18/2017,Sports_celeb,@SpiderAnderson,"Fun festival, musical guests & sports session + more! Join @childrensla on Aug 5 for #PlayLA! More:… https://t.co/wzwi6xdlMZ" +07/18/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🙏🏾🙏🏾🙏🏾🕸🕸🕸 https://t.co/iXDDKpiJml +07/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾🕸🕸🕸🕷🕷🕷 https://t.co/iNLfzse4l4 +07/12/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾🕸🕸🕸🕷🕷 https://t.co/yDWe4MXkxJ +07/03/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/CmNaC6rufw +06/30/2017,Sports_celeb,@SpiderAnderson,"#Jiujitsu #BJJ Bom fim de semana galera! Have a great weekend, everybody! https://t.co/Z8KYZF5jml" +06/30/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/RWV9QHAlm5 +06/28/2017,Sports_celeb,@SpiderAnderson,11 anos atrás eu estava fazendo o que mais amo na vida. 11 years ago I was doing what I love most in life.… https://t.co/E2Lxl8ctEf +06/28/2017,Sports_celeb,@SpiderAnderson,One more day of work! Mission accomplished! Thanks to my guardian angel @lizburnette🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾 https://t.co/DEfQCvqfDN +06/28/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/rfnBxVueYI +06/28/2017,Sports_celeb,@SpiderAnderson,#StrongLife #VidaForte https://t.co/gJPfdZTorG +06/17/2017,Sports_celeb,@SpiderAnderson,Celebrate with me and my @RootsofFight family during their #FathersDay sale! Visit https://t.co/LmmEFGhl2T https://t.co/QrbJoPrCBO +06/13/2017,Sports_celeb,@SpiderAnderson,In California with my friends and brothers! Using my new @rootsoffight t-shirt! Who wants one just visit the site… https://t.co/8SrWoTNIvP +06/09/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 @FairtexMuayThai https://t.co/qNkd77Rlm5 +06/08/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 #jiujitsu #delariva https://t.co/OPamFbnMCb +06/07/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 https://t.co/cPazD7jJ96 +06/06/2017,Sports_celeb,@SpiderAnderson,L https://t.co/fIGHJjnpT5 +06/05/2017,Sports_celeb,@SpiderAnderson,I’m excited to announce my new collaboration with @RootsofFight & honored to join the ROF pantheon. Available now… https://t.co/bugP7LcdWD +05/30/2017,Sports_celeb,@SpiderAnderson,Thanks @espn And all my fans/Obrigado @ESPNBrasil_ e todos os meus fãs. #worldfame100 https://t.co/006Oh9txmo +05/29/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/DdWVdFodtW +05/25/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/faf5fVWfUx +05/23/2017,Sports_celeb,@SpiderAnderson,🕷🕷🕷🕷👊🏾👊🏾👊🏾👊🏾👊🏾👀👀👀👀 https://t.co/g43i8BiAeS +05/23/2017,Sports_celeb,@SpiderAnderson,RT @esportefera: >@SpiderAnderson mostra talento ao bater faltas em desafio promovido por Zico. Será que tem vaga no seu time? https://t.co… +05/23/2017,Sports_celeb,@SpiderAnderson,🕷🕷🕷👊🏾👊🏾👊🏾👊🏾 https://t.co/7j2dEdGSSS +05/23/2017,Sports_celeb,@SpiderAnderson,"Galera! No próximo dia 27 de maio, farei um seminário de técnica na Tropa Thai -Rio de Janeiro, para informações li… https://t.co/PUVFlLGnmM" +05/01/2017,Sports_celeb,@SpiderAnderson,I will be live in 10 minutes at The MMA Hour Live https://t.co/pXXOHOVrk3 +04/21/2017,Sports_celeb,@SpiderAnderson,https://t.co/CmSKQMNY9u https://t.co/gPYm3Beiqv +04/19/2017,Sports_celeb,@SpiderAnderson,Aproveitando o meu #MomentoPronoKal no fim do treino. Valeu @PronokalBR ! 💪🏾👊🏾 https://t.co/KQvNB2mMAW +04/15/2017,Sports_celeb,@SpiderAnderson,Obrigado Esporte Interativo pela homenagem! https://t.co/51LEKn6wmH +04/15/2017,Sports_celeb,@SpiderAnderson,#UFC212 #UFCRio https://t.co/SvdSf2LDWI +04/14/2017,Sports_celeb,@SpiderAnderson,RT @canalCombate: De volta às origens: @SpiderAnderson reforça preparação com seu primeiro treinador | https://t.co/vV6wx7tnE1 https://t.co… +04/11/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Podemos chamar isso de encarada, @SpiderAnderson!? 😂😂 Ele estará no #UFC212, ainda sem adversário confirmado > https://t.co…" +04/11/2017,Sports_celeb,@SpiderAnderson,#Nocharity #Onlymeritocracy #GOAT 🐐 https://t.co/vfRkZ03tKU +04/06/2017,Sports_celeb,@SpiderAnderson,"Comunicado do UFC sobre Kelvin Gastelum. - https://t.co/fXjcTE1xjk + | UFC Statement on Kelvin Gastelum. - https://t.co/WWSnsKVU7M" +03/28/2017,Sports_celeb,@SpiderAnderson,Treino / Training @Silva_MTC https://t.co/SfsODJGQbi +03/23/2017,Sports_celeb,@SpiderAnderson,E M B R E V E . C O M I N G S O O N https://t.co/GkFv6RJU9e +03/22/2017,Sports_celeb,@SpiderAnderson,"Voltando pra casa! I'm coming home. #UFCRio #UFC212, no Rio de Janeiro! 3 de Junho galera! #UFC212 at Rio de Janeir… https://t.co/RIoTsnsHek" +03/21/2017,Sports_celeb,@SpiderAnderson,KildareHasHad an accidentAndNeedsSurgery to recover. Ele sofreu um acidente e precisa de cirurgia para se recuperar… https://t.co/EflIvgwZON +03/20/2017,Sports_celeb,@SpiderAnderson,@NeilMagny Let's do it! +03/18/2017,Sports_celeb,@SpiderAnderson,Ready for a game of paintball at @hollywoodsports with @Beardegidio https://t.co/WDLlXbeWJD +03/17/2017,Sports_celeb,@SpiderAnderson,Maior reinado em defesas de cinturão na história do UFC : 2457 dias / Longest Single Title Reigns in UFC History: 2… https://t.co/N88UAYJPIX +03/16/2017,Sports_celeb,@SpiderAnderson,"Pride 25 - 03.2003 - 14 anos atrás/years ago - Yokohama, Japão #SpiderLegacy #ValeTudo #TBT #MMA #ThrowbackThursday… https://t.co/NEyFfS7iUU" +03/15/2017,Sports_celeb,@SpiderAnderson,Contrato para o #UFC212 assinado. Rio de Janeiro! 3 de Junho galera! Contract for #UFC212 signed. Rio de Janeiro! J… https://t.co/pdhGjrWh9z +03/15/2017,Sports_celeb,@SpiderAnderson,Silva VS Gastelum! 3 de junho no Rio de Janeiro! June 3 at Rio de Janeiro https://t.co/Fmv3qNHIjD +03/09/2017,Sports_celeb,@SpiderAnderson,Set of #UltimateBeastMaster! Good times! Get ready to join the gang. All episodes are now available on #Netflix… https://t.co/cDSlrP16Mc +03/06/2017,Sports_celeb,@SpiderAnderson,Meeting at the ICMPartners with the GreatChampion @RealRoyJonesJr-The legend! Encontro na ICMPartners com o GrandeC… https://t.co/m9r36kZaFe +03/06/2017,Sports_celeb,@SpiderAnderson,RT @RealRoyJonesJr: There is a legendary photo. My man. The one and only. https://t.co/uDpN4m0hrS +03/02/2017,Sports_celeb,@SpiderAnderson,"16 years ago on March 2, 2001, I made my first international fight/16 anos atrás, 2 de março de 2001, fiz minha pri… https://t.co/FH9SEqTbUs" +03/02/2017,Sports_celeb,@SpiderAnderson,"9 years ago, on March 1, 2008, at UFC 82. I unified the middleweight belt against Dan Henderson, the Pride champion… https://t.co/NgMSzywUzB" +03/01/2017,Sports_celeb,@SpiderAnderson,This is the #UltimateBeastMaster Brazilian team! Watch #Netflix and see the Brazilians performance trying to domina… https://t.co/HA9l43vwIk +03/01/2017,Sports_celeb,@SpiderAnderson,Esse é o time brasileiro do #UltimateBeastMaster ! Assista no #Netflix e veja como os brasileiros se saíram tentand… https://t.co/V80rPHArtT +02/28/2017,Sports_celeb,@SpiderAnderson,RT @broome88: Maybe it's me but I feel I could win this fight. @terrycrews @SpiderAnderson #ultimatebeastmaster #Netflix https://t.co/e0xr2… +02/25/2017,Sports_celeb,@SpiderAnderson,Thanks @the_USO @NetflixBrasil @broome88 @TheSlyStallone.Very happy to be part of this project. Thanks @terrycrews… https://t.co/PZUCdjRLlM +02/25/2017,Sports_celeb,@SpiderAnderson,Obrigado @the_USO @NetflixBrasil @broome88 @TheSlyStallone.Muito feliz por fazer parte desse projeto. Obrigado… https://t.co/y43apLJKZQ +02/24/2017,Sports_celeb,@SpiderAnderson,@MoneyLynch 🕷> Beast Mode +02/24/2017,Sports_celeb,@SpiderAnderson,"RT @NetflixBrasil: Os atletas escalam, pulam, flexionam e se equilibram. E você maratona. Ultimate Beastmaster Brasil chegou! https://t.co/…" +02/24/2017,Sports_celeb,@SpiderAnderson,"Very happy to be part of the #UltimateBeastmaster with this great human being. Thank you, my friend! @terrycrews https://t.co/67bznlhnAr" +02/23/2017,Sports_celeb,@SpiderAnderson,"I am training now at my instagram! Estou treinando ao vivo, agora no meu instagram! https://t.co/afjqTexTTd" +02/23/2017,Sports_celeb,@SpiderAnderson,Tudo o que um sonho precisa para ser realizado é alguém que acredite nele. #JonesJrVSSilva #SilvaVSJonesJr @RealRoyJonesJr +02/23/2017,Sports_celeb,@SpiderAnderson,All a dream needs to be accomplished is someone who believes that it can be done. #JonesJrVSSilva #SilvaVSJonesJr @RealRoyJonesJr +02/23/2017,Sports_celeb,@SpiderAnderson,Going to support my friend @Beardegidio at @hollywoodsports for one of the best paintball events @GiantTactical thi… https://t.co/PJV9Ghyk4R +02/21/2017,Sports_celeb,@SpiderAnderson,Great day @hollywoodsports with my friends today! Can't wait to be back again next week! Thank you @Beardegidio… https://t.co/91pu3u1Y5Y +02/20/2017,Sports_celeb,@SpiderAnderson,Paintball with my friend @Beardegidio & the guys at @hollywoodsports today! https://t.co/oQXK0SD7E9 +02/17/2017,Sports_celeb,@SpiderAnderson,"I felt like a king when shooting the #ThatFeelingWhen campaign for #ThroneKingdomAtWar. I also look like one, don’t… https://t.co/u68OtArMO2" +02/14/2017,Sports_celeb,@SpiderAnderson,"RT @NetflixBrasil: Quem vai dominar a Besta? A partir de 24 de fevereiro, tem sangue, suor e tombos no Ultimate Beastmaster Brasil. https:/…" +02/13/2017,Sports_celeb,@SpiderAnderson,RT @ufc_brasil: . @SpiderAnderson agradece fãs em post nas redes sociais. Confira > https://t.co/XTqHDe3WwX https://t.co/B3qEXdgn4o +02/12/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Ainda emocionado, @spideranderson​ falou sobre a vitória no #UFC208, família e legado. Veja a entrevista completa > https:/…" +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc_brasil: Olha a recepção do @SpiderAnderson na chegada ao hotel depois da luta. Rolou até uma conversa com a @criscyborg > https://t… +02/12/2017,Sports_celeb,@SpiderAnderson,RT @AnaHissa: 🕸🕷 Generations 🕸🕷 #badboys @spiderandersonsilva @kalylsilva @gabrielrmnl #ufc #mma #ufcnocombate #spidernocombate #trcombate… +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc: SPIDER!!!! #UFC208 https://t.co/w94rGz9HTy +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc: Dreams Come True #UFC208 https://t.co/qHdFVLi4m8 +06/30/2018,Sports_celeb,@TyrodTaylor,@power_starz Season 5 Premiere last night was definitely a Vibe! Thank you @givenchyofficial for the fit.… https://t.co/MsPYGgGGkH +06/29/2018,Sports_celeb,@TyrodTaylor,"Haha, it was great meeting you. https://t.co/iSnl0XZw11" +06/29/2018,Sports_celeb,@TyrodTaylor,I’m T’d up... 📷: @JaySpinks12 https://t.co/Pm33LR4Mus +06/28/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: Don’t let ANYTHING distract you from God’s vision. +06/24/2018,Sports_celeb,@TyrodTaylor,📍Made the Paris streets my runway #PFW https://t.co/ntxiHmMXsz +06/24/2018,Sports_celeb,@TyrodTaylor,"Thank you @ThomBrowneNY for having me at your show today. Truly inspired by your work! #PFW + +cc: @TeamVic https://t.co/BZqarcdNrF" +06/23/2018,Sports_celeb,@TyrodTaylor,My people! https://t.co/RF28s0cixA +06/23/2018,Sports_celeb,@TyrodTaylor,"‘Life is amazing, it is what it should be’. #PFW https://t.co/bF96CGlEJp" +06/22/2018,Sports_celeb,@TyrodTaylor,Just a kid from 757. Big Dreaming! #PFW https://t.co/R58dptp5J0 +06/22/2018,Sports_celeb,@TyrodTaylor,In. Living. Color https://t.co/Hv3hh9xIbI +06/21/2018,Sports_celeb,@TyrodTaylor,RT @adriancmills: All the Stars came out for Paris Fashion Week SS19 wearing Valentino in Paris @Nas @carmeloanthony @TyrodTaylor #pjtucker… +06/21/2018,Sports_celeb,@TyrodTaylor,I like the view from here... 🇫🇷 #PFW SS19 @cmmn_swdn show https://t.co/uQhLdX6Om3 +06/15/2018,Sports_celeb,@TyrodTaylor,RT @elguapo: God makes no mistakes +06/15/2018,Sports_celeb,@TyrodTaylor,OTA’s ✔️ #Keep5triving https://t.co/psj9sJ93IM +06/14/2018,Sports_celeb,@TyrodTaylor,📶 https://t.co/iQGSQGDIZB +06/14/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: ""Very talented team on both sides of the ball."" + +@TyrodTaylor talks about his transition to the @Browns and competition at…" +06/12/2018,Sports_celeb,@TyrodTaylor,Gotta put them on notice brother ✊🏾 https://t.co/74pM8tljeH +06/12/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🔥🔥🔥 + +@TyrodTaylor https://t.co/dU8PfMSVF3" +06/12/2018,Sports_celeb,@TyrodTaylor,5... https://t.co/cH0rURklHX +06/12/2018,Sports_celeb,@TyrodTaylor,Real strong! 📶 https://t.co/ukcGJkBVey +06/08/2018,Sports_celeb,@TyrodTaylor,Go Cavs! https://t.co/m2MBYAUOTR +06/08/2018,Sports_celeb,@TyrodTaylor,"RT @uninterrupted: Shout to @Kirko58 for stylin' on 'em with his crew @j_collins91, @God_Son80, @TyrodTaylor & @DukeJohnson_8 at his Fashio…" +06/08/2018,Sports_celeb,@TyrodTaylor,📸 19 x Eight-O https://t.co/j4AcfdBh3f +06/08/2018,Sports_celeb,@TyrodTaylor,No place like Blacksburg. #ThisisHome https://t.co/WtQGDVTDTF +06/08/2018,Sports_celeb,@TyrodTaylor,Happy Birthday brother @alleniverson. I appreciate the love and guidance since day 1. Thanks for showing every kid… https://t.co/kSciOBrQsJ +06/08/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/JXjbi2QBAS +06/07/2018,Sports_celeb,@TyrodTaylor,RT @Browns: 🔥🔥 @TyrodTaylor https://t.co/4V2Xvz8rD6 +06/07/2018,Sports_celeb,@TyrodTaylor,#Mood 😃 https://t.co/VTAPLvt4IT +06/07/2018,Sports_celeb,@TyrodTaylor,Welcome to the Family brother! @VT_Football https://t.co/Oloz6PTUyK +06/07/2018,Sports_celeb,@TyrodTaylor,My dawg!!! https://t.co/BkE6jawvf5 +06/07/2018,Sports_celeb,@TyrodTaylor,Absolutely! One of my favorite scriptures 🙏🏾 https://t.co/A6cjwsjw5d +06/07/2018,Sports_celeb,@TyrodTaylor,#NBAFinals Game 3. https://t.co/kBESMgVhST +06/07/2018,Sports_celeb,@TyrodTaylor,"RT @NBA: Ready for the 4th quarter in Cleveland... + +@CutonDime25 x @TyrodTaylor. https://t.co/YQPKClOO4C" +06/05/2018,Sports_celeb,@TyrodTaylor,"VA!!!!! July 21st.. + +I’m excited to launch the Tyrod Taylor Foundation this summer with a FREE and fun event for t… https://t.co/SthzmKTn4k" +06/04/2018,Sports_celeb,@TyrodTaylor,WiFi connection strong! https://t.co/gkYmHgJeQ0 +06/04/2018,Sports_celeb,@TyrodTaylor,RT @BrownsGiveBack: All of our partners are here volunteering by building rocking chairs to help encourage reading in early childhood class… +06/04/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🎯 + +@TyrodTaylor https://t.co/UDSRuEjjtX" +06/01/2018,Sports_celeb,@TyrodTaylor,Let’s go @cavs #NBAFinals https://t.co/vG6BORzTQT +05/31/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: 😬😬😬😬 lol https://t.co/IXxIcww816 +05/30/2018,Sports_celeb,@TyrodTaylor,"Praying for you guys! Be encouraged, keep fighting! 🙏🏾 https://t.co/Bz73hLJuQy" +05/29/2018,Sports_celeb,@TyrodTaylor,"Let’s tackle sickle cell TOGETHER guys! cc: @LanoTheDon + +https://t.co/YxHMYs3xac + +T2 @Browns Jersey GIVEAWAY!!! +H… https://t.co/N0gCj5cM1x" +05/29/2018,Sports_celeb,@TyrodTaylor,Yo juice! WiFi Connection Eight-0 https://t.co/jgCZWJfOFu +05/29/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: #️⃣5️⃣ + +@TyrodTaylor https://t.co/rALDlpP73M" +05/29/2018,Sports_celeb,@TyrodTaylor,RT @Browns: Putting in work 🤫 https://t.co/futJtpvhUZ +05/29/2018,Sports_celeb,@TyrodTaylor,🙋🏾‍♂️ need mine!! This is for Cleveland!! https://t.co/ROkiCs66FX +05/28/2018,Sports_celeb,@TyrodTaylor,Let’s go Cavs!!!!!!!! +05/23/2018,Sports_celeb,@TyrodTaylor,Be the blessing.. #Keep5triving https://t.co/kRvMdc6G0x +05/23/2018,Sports_celeb,@TyrodTaylor,"My brother, Congrats! Well deserved. Always love. Now...See you week 2. 😡 https://t.co/ytttujvYq3" +05/21/2018,Sports_celeb,@TyrodTaylor,Running into Monday like... Let’s have a great week people! 😃 https://t.co/jbVg9XTIHT +05/21/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: Students of schools benefitted by the Browns Foundation are here to play games with some of our players! + +@TyrodTaylor #give10…" +05/21/2018,Sports_celeb,@TyrodTaylor,#MOOD https://t.co/9j4v0eXPyS +05/18/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: God Gon See You Through... +05/17/2018,Sports_celeb,@TyrodTaylor,I see you Torrey! #Clean ✔️ https://t.co/qFfxELXNdP +05/16/2018,Sports_celeb,@TyrodTaylor,Anytime it was great to meet her. https://t.co/1PJFUZhaMR +05/06/2018,Sports_celeb,@TyrodTaylor,@KingJames does it again!!!!!!!! +05/05/2018,Sports_celeb,@TyrodTaylor,"RT @TheOpening: Fastest Man in Ohio, crowned by @TyrodTaylor. + +@usnikefootball @NFLPlayFootball https://t.co/3ZdFwDK2j6" +05/04/2018,Sports_celeb,@TyrodTaylor,"Meet me at Dicks Sporting Goods in Canton, Ohio at 1:30pm on Saturday 5/5 to hang and customize your Vapor Untoucha… https://t.co/71oAtlvkiJ" +05/02/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: Fall down 7 times. Get up 8. +05/01/2018,Sports_celeb,@TyrodTaylor,Happy MAY Everyone!!! Let’s go be great. +04/27/2018,Sports_celeb,@TyrodTaylor,@bakermayfield @denzelward welcome to the FAMILY!! #DawgPound +04/27/2018,Sports_celeb,@TyrodTaylor,VT Boyz!! Congrats #Hokies https://t.co/tXszPoYrL1 +04/27/2018,Sports_celeb,@TyrodTaylor,🔥🔥🔥 https://t.co/SVgVMJ1SsI +04/25/2018,Sports_celeb,@TyrodTaylor,Haha dope!! https://t.co/wPohdniwxQ +04/25/2018,Sports_celeb,@TyrodTaylor,"Cleveland, We just getting started.. https://t.co/181pxx5jhM" +04/19/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: QB Tyrod Taylor already turning heads with leadership and work ethic + +📰 » https://t.co/dXQfFQEroZ https://t.co/rO9jT6pjLL" +04/17/2018,Sports_celeb,@TyrodTaylor,No better feeling. #T2Foundation https://t.co/djy4o5hsb5 +04/17/2018,Sports_celeb,@TyrodTaylor,4.16 #NeVerforgeT https://t.co/hZX1MAAbGt +04/16/2018,Sports_celeb,@TyrodTaylor,"A lot of hard work, prayer & patience. Those are characteristics you can’t measure. https://t.co/CfcYB4EUQt" +04/16/2018,Sports_celeb,@TyrodTaylor,Where can I get that shirt ? https://t.co/tNWtFPDMUX +04/16/2018,Sports_celeb,@TyrodTaylor,Forever LOVE... Thank you #HokieNation for a great spring weekend! https://t.co/dadInuNleq +04/15/2018,Sports_celeb,@TyrodTaylor,Heading to my first @cavs game. If you see me show some luv! Let’s go CLEVELAND!!!! #NBAPlayoffs +04/15/2018,Sports_celeb,@TyrodTaylor,My brother. #Hokies you’ve got a great one. @CoachReamon ✊🏾 https://t.co/V8XT41WiUE +04/15/2018,Sports_celeb,@TyrodTaylor,Thanks for having me guys! Truly my pleasure to be amongst you all for a great cause. https://t.co/ulTEcEMnk8 +04/15/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: “Work like everything depends on you. Pray like everything depends on God.” +04/15/2018,Sports_celeb,@TyrodTaylor,Yessir. Keep pushing forward brother. #Hokies https://t.co/erz7ZHZAhQ +04/15/2018,Sports_celeb,@TyrodTaylor,@nolimitquis Lol you know i got you brother +04/15/2018,Sports_celeb,@TyrodTaylor,"RT @espn: On This Date: 71 years ago, Jackie Robinson broke down the color barrier, becoming the first African-American to play in MLB. #Ja…" +04/15/2018,Sports_celeb,@TyrodTaylor,I had just as much fun as the kids. It was my pleasure. Nothing like giving back to the next generation. https://t.co/ukz8DN4QDE +04/15/2018,Sports_celeb,@TyrodTaylor,RT @raylewis: What comes easy doesn’t always last. What comes through difficulties & effort leaves a legacy. +04/15/2018,Sports_celeb,@TyrodTaylor,Yessir let the ink dry 80 https://t.co/RSI47hN6XZ +04/15/2018,Sports_celeb,@TyrodTaylor,🔥 I need to sign that. https://t.co/pieBQnDhfF +04/13/2018,Sports_celeb,@TyrodTaylor,What up Blacksburg?? I’m HOME!! #Hokies https://t.co/XPRKEo0DBq +04/10/2018,Sports_celeb,@TyrodTaylor,Vibez 🖖🏾 https://t.co/j73O6uSy8z +04/08/2018,Sports_celeb,@TyrodTaylor,"Put the work in, everything is possible & inspire the youth to do the same! +📸: @JaySpinks12 https://t.co/tl6l5KPHUe" +04/03/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Gotta maintain stay focused... +04/03/2018,Sports_celeb,@TyrodTaylor,RT @CoachReamon: Value opportunity.. +04/02/2018,Sports_celeb,@TyrodTaylor,Great work brother! https://t.co/JRShTJanaZ +04/02/2018,Sports_celeb,@TyrodTaylor,Love all the cool fan art you guys shared. Keep them coming and I’ll be sure to post and s/o all you great artist. #Cleveland #Browns +04/02/2018,Sports_celeb,@TyrodTaylor,@Teh_Genius please DM me so I can get your info and send you some signed cleats! Thanks for the great work! +04/02/2018,Sports_celeb,@TyrodTaylor,Thanks everyone for your submissions. Fan Banner Design contest Winner!!!! Artist: @Teh_Genius https://t.co/216YaBxftO +04/01/2018,Sports_celeb,@TyrodTaylor,He has RISEN!! Happy Resurrection Sunday! 🙏🏾 +04/01/2018,Sports_celeb,@TyrodTaylor,Thanks guys for all the profile banner submissions so far.. announcing the winner tomorrow at 1pm. T2 +03/29/2018,Sports_celeb,@TyrodTaylor,Who wants to design me a new profile banner? May have some signed cleats for the winner 👀 +03/28/2018,Sports_celeb,@TyrodTaylor,Gotta trust his plan! https://t.co/2guLR4j7o2 +03/25/2018,Sports_celeb,@TyrodTaylor,‘Overly focused it’s far from the time to rest now’ #DAWGS https://t.co/TV8ZZoZu66 +03/24/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Mentality @Browns @machinegunkelly #CleveLand https://t.co/h13nKeWFLv +03/23/2018,Sports_celeb,@TyrodTaylor,"Always great times for a great cause with my VA brother @TorreySmithWR. #TSFFHoops +🎥: @JaySpinks12 https://t.co/4LmQWX89dH" +03/23/2018,Sports_celeb,@TyrodTaylor,RT @Browns: A few of our new Browns have picked their numbers 👇 https://t.co/aEVtzDFQo8 +03/23/2018,Sports_celeb,@TyrodTaylor,Let’s show them ✊🏾 https://t.co/Lbi2nIzAIV +03/22/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: God can do it. +03/22/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/D9SLhTrWNb +03/22/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Now or Never.... +03/22/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: That Eight-O TurnUP AGAIN @Browns #DAWG https://t.co/9zJZxYMnxt +03/22/2018,Sports_celeb,@TyrodTaylor,.....T2 https://t.co/SbrkgZjcc7 +03/21/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: They Gon Realize https://t.co/duM0wzs8Dn +03/21/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: ""Is 5 available? I'm asking for a friend ... "" 😂 + +@TyrodTaylor @God_Son80 https://t.co/wHiI5Pj3Ys" +03/20/2018,Sports_celeb,@TyrodTaylor,"RT @God_Son80: “Nothing can hold you back..” +What you want is already yours. NOW, WORK!!!" +03/18/2018,Sports_celeb,@TyrodTaylor,"RT @TheUndefeated: ""Coach Hue is going to do his best to make me a better player, and I’m going to do my best to help us win."" - @TyrodTayl…" +03/18/2018,Sports_celeb,@TyrodTaylor,RT @DCSuperSid: My son with @TyrodTaylor QB of the @Browns tonight at the @TorreySmithWR charity game in Baltimore #DawgPound https://t.co/… +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @AKinkhabwala: A few hours in, @God_Son80 and @TyrodTaylor had a pretty good read on each other. #Browns https://t.co/DKEYCZcLXA" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: .@TyrodTaylor, @RandallTime and @God_Son80 in the building ✊ https://t.co/kK8izhPrJe" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @AKinkhabwala: .@Browns GM John Dorsey: “When guys walk into a building, you feel a certain energy... (these) guys are really excited to…" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🖋➡️📃 + +Welcome to Cleveland, Chris Smith! https://t.co/6uCl8mLwhY" +03/16/2018,Sports_celeb,@TyrodTaylor,C L E V E L A N D.... let’s get to it. https://t.co/mSGMeXqRMb +03/14/2018,Sports_celeb,@TyrodTaylor,Say hello to my little man Ghost! https://t.co/JjfCet1BXg +03/14/2018,Sports_celeb,@TyrodTaylor,Thanks guys! https://t.co/YLq0AYTIQx +03/12/2018,Sports_celeb,@TyrodTaylor,🙏🏾 Appreciate that. https://t.co/FurLE0ACMw +03/12/2018,Sports_celeb,@TyrodTaylor,Congrats fellas! Let’s leave our mark. #Hokies https://t.co/o06bwXYn9g +03/12/2018,Sports_celeb,@TyrodTaylor,Jesus calling. 🙏🏾 https://t.co/T33UwGTNOy +03/12/2018,Sports_celeb,@TyrodTaylor,"You! Yeah you, let’s be great this week. #HappyMonday https://t.co/FpWwzKsq1Z" +03/12/2018,Sports_celeb,@TyrodTaylor,"RT @lecrae: “Don’t even trip, I got it under control.” - God" +03/12/2018,Sports_celeb,@TyrodTaylor,🔥 https://t.co/5nft5wLi4j +03/12/2018,Sports_celeb,@TyrodTaylor,Thanks for the love UN family https://t.co/h7cyjJaWTa +03/12/2018,Sports_celeb,@TyrodTaylor,Truly my pleasure to work with you all and bless so many lives! https://t.co/pDQYMv1IrJ +03/10/2018,Sports_celeb,@TyrodTaylor,Thank you Buffalo! God's Plan. The marathon continues 🏁 https://t.co/CUhTzZKvqU +03/01/2018,Sports_celeb,@TyrodTaylor,Dream it. Work for it. Go take it. #TBT Combine Week. https://t.co/D7ozKh2j1z +02/27/2018,Sports_celeb,@TyrodTaylor,RT @k_obrand: I’ve been working.... meet you at the top. +02/27/2018,Sports_celeb,@TyrodTaylor,RT @Kam_Chancellor: Sorry Duke.. #GoHokies +02/27/2018,Sports_celeb,@TyrodTaylor,How about my Hokies!!! Big-time win @HokiesMBB. +02/22/2018,Sports_celeb,@TyrodTaylor,https://t.co/Luwp8cDgnt 👌🏾 https://t.co/qwF3pve3S6 +02/22/2018,Sports_celeb,@TyrodTaylor,In love with the process 🎥: @JaySpinks12 https://t.co/pIzXutO7GI +02/22/2018,Sports_celeb,@TyrodTaylor,RT @TheSportsEntGrp: Happy Birthday @DEverett22! +02/22/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Believe ... and it’ll happen +02/21/2018,Sports_celeb,@TyrodTaylor,It’s Just the beginning https://t.co/hdUHTVdsE3 +02/21/2018,Sports_celeb,@TyrodTaylor,@zayjones11 🙏🏾 https://t.co/Adx5zIGdQQ +02/21/2018,Sports_celeb,@TyrodTaylor,Can’t go wrong with that boss haha! https://t.co/IJ9NqbTOGW +02/21/2018,Sports_celeb,@TyrodTaylor,My brother ✊🏾 https://t.co/lXFDhvYIQh +02/18/2018,Sports_celeb,@TyrodTaylor,https://t.co/9jxIVm6qDk +02/17/2018,Sports_celeb,@TyrodTaylor,To whom much is given much is required... https://t.co/ApsQqwr9fb +02/15/2018,Sports_celeb,@TyrodTaylor,My dawgs ✊🏾 https://t.co/DlH4gc2Y9i +02/11/2018,Sports_celeb,@TyrodTaylor,Va is STILL VA Tech land.. Congrats to my #Hokies @HokiesMBB ... 👌🏾 +02/11/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: I got a pure soul... I don’t do the hate +02/11/2018,Sports_celeb,@TyrodTaylor,Appreciate the love.. enjoy the frames 👓 https://t.co/U66na1ZRcs +02/11/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/F3kEAscNdJ +02/09/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Put my trust in God... +02/07/2018,Sports_celeb,@TyrodTaylor,You gotta dream like you never seen obstacles.. 11 years later. No place like HOME! #NationalSigningDay @HokiesFB https://t.co/3Y8HbqadI7 +02/04/2018,Sports_celeb,@TyrodTaylor,"RT @Framegenie: Thanks for celebrating the launch of T2, @TyrodTaylor's new frame collection! Did you take some pics? Share them in the com…" +02/04/2018,Sports_celeb,@TyrodTaylor,Congrats big bro @raylewis well deserved. Thanks for all you brought to the game and all you taught me along the wa… https://t.co/0bkDDe5vLy +02/03/2018,Sports_celeb,@TyrodTaylor,#T2Frames pop-up. Join me today 1-3pm @ Le Meridian Hotel to grab a pair of my 👓 and win cool prizes! 901 Hennepin… https://t.co/hNihJ9GX52 +02/03/2018,Sports_celeb,@TyrodTaylor,#T2SuitSeries Super Bowl LII Edition. https://t.co/ose6q8KaI8 +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: “As of right now I’m still a Bill. + +I’m going to continue to control the things I know I can.” + +How the biggest lesson of @…" +02/03/2018,Sports_celeb,@TyrodTaylor,RT @raylewis: Remember - diamonds are created under pressure. +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @gmfb: ""The naysayers are always going to be out there and I'll continue to prove them wrong."" -@TyrodTaylor when @RealMikeRob asked how…" +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @gmfb: Huge thanks to @TyrodTaylor and @IsaacBruce80 for dropping by our #SuperBowl set this morning! Three more hours rolling on! +➡️ @…" +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: “I love playing in Buffalo. We have a special locker room. I’d love to be back with those guys.” + +@TyrodTaylor on his futur…" +02/03/2018,Sports_celeb,@TyrodTaylor,Minnesota come meet me tomorrow 2/3 from 1-3pm and grab a pair of my newly launched #T2Frames. #T2xFrameGenie. Purc… https://t.co/a929FBNEcc +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @Framegenie: If you can't be there, make sure to check out the T2 collection online: https://t.co/IcKssqOeyq https://t.co/vyZQSOmD87" +02/03/2018,Sports_celeb,@TyrodTaylor,RT @nflnetwork: Coming up next on #SBLive: @TyrodTaylor! ➡️📺 https://t.co/odQvjRi5up +02/03/2018,Sports_celeb,@TyrodTaylor,Anytime my man!! https://t.co/Y3Qb22jp84 +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLTotalAccess: .@TyrodTaylor lets us know how it felt to get the @buffalobills in the playoffs and what's in store for next season. ht… +02/03/2018,Sports_celeb,@TyrodTaylor,https://t.co/I0TcpJK1RV grab a pair 👓 https://t.co/pSH7FXKkus +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLTotalAccess: .@TyrodTaylor joins the guys NEXT on @nflnetwork!!! https://t.co/NOx0WI7WX2 +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: We got @TyrodTaylor in the 🏠! + +The @buffalobills QB checking in with @MJD. #SBLive https://t.co/eUKK5qTvOa" +02/03/2018,Sports_celeb,@TyrodTaylor,Anytime. Great to meet you! https://t.co/71T8DbPXVe +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLGameDay: .@TyrodTaylor talks about his time on the @Ravens and learning what it takes to win a Super Bowl 👇👇👇 https://t.co/Rdc1sBIuiy +02/03/2018,Sports_celeb,@TyrodTaylor,My man! Great to see you again. https://t.co/FBipIctaXO +02/03/2018,Sports_celeb,@TyrodTaylor,RT @VT_Football: Any #Hokies 🦃 heading to #SBLII - here's your chance to hang w T2! https://t.co/ysqnHAinqy +02/03/2018,Sports_celeb,@TyrodTaylor,Had a blast celebrating #SuperBowlLII with the @NFLPA. https://t.co/8bpaiAjWMF +02/02/2018,Sports_celeb,@TyrodTaylor,Had an awesome day with @Hyundai and the fans celebrating Super Bowl LII! #Ad https://t.co/cQp0owvPQX +02/01/2018,Sports_celeb,@TyrodTaylor,"RT @buffalobills: Thank you, @EWood70. + +Our locker room won't be the same without you. https://t.co/9Qa7J2565e" +02/01/2018,Sports_celeb,@TyrodTaylor,"Come meet me in Minneapolis! Le Meridian Hotel Saturday, Feb 3rd from 1-3pm. Get a chance to win my #T2Frames, auto… https://t.co/PKSKPPYdUI" +01/31/2018,Sports_celeb,@TyrodTaylor,👓 #SuperBowlLII #T2Frames https://t.co/zr0FahFddU +01/26/2018,Sports_celeb,@TyrodTaylor,"You got this, @MrDavidWise and the @usskiteam! #TeamBose #OneTeam #BoseAmbassador https://t.co/yNegH6otKU" +01/19/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Glory to God.. +01/19/2018,Sports_celeb,@TyrodTaylor,You need to grab those. T2 👓 https://t.co/fDLyPv7V0K +01/19/2018,Sports_celeb,@TyrodTaylor,RT @DexRob: On Demand 📈| @TyrodTaylor https://t.co/2sUpl0WA7w +01/15/2018,Sports_celeb,@TyrodTaylor,That’s Big Time Diggs.. yessir +01/12/2018,Sports_celeb,@TyrodTaylor,"RT @MensFitness: Need an extra boost in the gym? Here's how @DangeRussWilson, @cj_wentz, @LarryFitzgerald, @Edelman11, and @TyrodTaylor get…" +01/11/2018,Sports_celeb,@TyrodTaylor,Thats Love. Appreciate it! https://t.co/XT0NSCILvd +01/11/2018,Sports_celeb,@TyrodTaylor,Always love in the 6 with my bro @CutonDime25 #WeTheNorth https://t.co/5yGy15umiK +01/10/2018,Sports_celeb,@TyrodTaylor,"RT @NBACanada: The @buffalobills very own, Tyrod Taylor & LeSean McCoy, came to visit the @raptors tonight! 🏈x🏀 + +#WeTheNorth https://t.co/5…" +01/07/2018,Sports_celeb,@TyrodTaylor,Post season looks. Check. Week 18. #T2SuitSeries https://t.co/JaxHegmkzb +01/07/2018,Sports_celeb,@TyrodTaylor,😄 https://t.co/gl9vWytOkP +01/05/2018,Sports_celeb,@TyrodTaylor,Been working some years for this. https://t.co/uWV5yS2FVa +01/05/2018,Sports_celeb,@TyrodTaylor,RT @OlmstedCenter: @TyrodTaylor has supported @OlmstedCenter for 2 years and in response to his support we have had some amazing fans donat… +01/05/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Follow God. That’s always the right direction... +01/02/2018,Sports_celeb,@TyrodTaylor,This is an Instant Classic.. UGA/Oklahoma kids played their hearts out. #RoseBowl +01/02/2018,Sports_celeb,@TyrodTaylor,RT @SportsCenter: The wait is over. The Bills are in the postseason. https://t.co/d62HjPFiw7 +01/02/2018,Sports_celeb,@TyrodTaylor,BILL-LIEVE ... https://t.co/5Jj2HCkuo3 +01/02/2018,Sports_celeb,@TyrodTaylor,Sunday’s best. Week 17. #T2SuitSeries https://t.co/acU8b9lX8Q +12/26/2017,Sports_celeb,@TyrodTaylor,No place like Blacksburg! #Hokie4Life https://t.co/qNhmxZcfET +12/24/2017,Sports_celeb,@TyrodTaylor,Suits that weather the storm. Business trip. Week 16. #T2SuitSeries https://t.co/0qRtbb3E7q +12/22/2017,Sports_celeb,@TyrodTaylor,What’s it like to be an #NFL player? Step into the game at the NEW @NFLExperience to find out - you can even borrow… https://t.co/8v6kkBgfIk +12/22/2017,Sports_celeb,@TyrodTaylor,Thank you @UnitedWay for allowing me to be a blessing to these families. This is what it’s all about. https://t.co/cvmyqEb9dP +12/20/2017,Sports_celeb,@TyrodTaylor,Congrats to my brothers @CutonDime25 @68INCOGNITO & @micah_hyde on being selected to the #ProBowl. Represent the fa… https://t.co/fc1hsI66Jc +12/20/2017,Sports_celeb,@TyrodTaylor,"RT @buffalobills: The winner of this week's @BlueRockEnergy Player of the Week? + +Tyrod Taylor! #GoBills https://t.co/0bLWjifMjx" +12/19/2017,Sports_celeb,@TyrodTaylor,Great time hanging out @StantonOptical1 tonight with the fans of Buffalo launching my new T2 Frames! Go visit your… https://t.co/rkYPNInLPR +12/19/2017,Sports_celeb,@TyrodTaylor,"BUFFALO!!!! Join me today @StantonOptical1 from 5-6pm as I sign autos, take pics & launch my new T2 Frames. It’s FR… https://t.co/dtnhbzNkBZ" +12/19/2017,Sports_celeb,@TyrodTaylor,RT @ToddJClausen: We should never question the heart of @TyrodTaylor. Truly a class act. #BillsMafia https://t.co/Y7dIkTFD0z +12/19/2017,Sports_celeb,@TyrodTaylor,All of Buffalo join me tomorrow. Let’s hangout and try some new frames! T2 https://t.co/1CfLCuh7Vg +05/31/2018,Sports_celeb,@tonyromo,Kicking back in @SKECHERSUSA #ad https://t.co/y59TNZBxIs +05/08/2018,Sports_celeb,@tonyromo,The standard that every future cowboy will have to live up to. Thank you Jason Witten. You will be missed bro. https://t.co/d9a4RI6N9T +03/29/2018,Sports_celeb,@tonyromo,Behind the scenes with @SKECHERSUSA #skechers 🎬 https://t.co/vrG6dzd5si +12/28/2017,Sports_celeb,@tonyromo,@Rizzuti09 You stay strong Rachel. They come and they go. You have special qualities that many people can see eve… https://t.co/nZpApiJfKA +12/25/2017,Sports_celeb,@tonyromo,Merry Xmas everyone. Hawk and Riv are having a great day! “That’s what I️ wanted!” https://t.co/RUGi0aKBEf +10/14/2017,Sports_celeb,@tonyromo,@Rizzuti09 I think we can make that happen. ;) +10/11/2017,Sports_celeb,@tonyromo,Sunday was a good day to hang out and watch football with the boys. Rivers is the “crazy guy” Hawk is talking about… https://t.co/H0bJ25dzMd +09/29/2017,Sports_celeb,@tonyromo,@ZacEfron @ZacEfron thanks bud. Having a blast over here +09/25/2017,Sports_celeb,@tonyromo,I think I like this broadcasting thing. 😎 https://t.co/LaFKaYOT7u +09/07/2017,Sports_celeb,@tonyromo,Never going a day without #comfort now that I’ve joined #TeamSkechers! Thanks for welcoming me @SkechersUSA! https://t.co/Gxv3iTnVe0 +08/23/2017,Sports_celeb,@tonyromo,Welcomed our third boy Jones Mccoy Romo into the world today! Ten fingers and ten toes. All healthy. Almost have… https://t.co/2VqgtSiDBs +08/05/2017,Sports_celeb,@tonyromo,At Jerry's Hall of Fame party. This napkin says it all. I've heard more Jerry-ism's than anyone. I love 'em. Che… https://t.co/EdhHDC0qno +04/11/2017,Sports_celeb,@tonyromo,"@swish41 If I shoot an air ball in warmups I give u permission to send me to the showers. But if I don't, u get me a corner three in the 4th" +04/08/2017,Sports_celeb,@tonyromo,You made football a lot easier for me because of your greatness...but you also made my life better by being in it.… https://t.co/4PZuxRkd6b +04/08/2017,Sports_celeb,@tonyromo,@JasonWitten You made football a lot easier for me because of your greatness...but you also made my life better by… https://t.co/ysoPeOQ1Gq +04/06/2017,Sports_celeb,@tonyromo,@JJWatt I could hear you breathing as u we're closing in. Gotta work on those quiet feet as well. ;) Your the best in the game brother +04/06/2017,Sports_celeb,@tonyromo,@TCrawford98 Don't worry. I'm still gonna be around to yell at you for something. ;) +04/04/2017,Sports_celeb,@tonyromo,I guess it's time to start dressing up. #CBS https://t.co/GseSRiyNOo +03/09/2017,Sports_celeb,@tonyromo,Thanks for all the support everyone. https://t.co/RlRS3KAqwb +07/08/2016,Sports_celeb,@tonyromo,My heart can't shake the sadness that the Sterling and Castile families are enduring as well right now. Horrible 72 hrs for America +07/08/2016,Sports_celeb,@tonyromo,Our community is stunned this morning. My thoughts and prayers go out to the fallen police officers and their loved ones. +06/16/2016,Sports_celeb,@tonyromo,I had so much fun helping @Target shoppers pick out Father's Day gifts in Dallas tonight! #TargetPartner https://t.co/EELEEmeeza +04/29/2016,Sports_celeb,@tonyromo,"Welcome to Dallas Ezekiel. Nothing better than your draft day! Or in my case, nothing better than teams fighting for you after it's over :)" +03/31/2016,Sports_celeb,@tonyromo,3 Days. 2 Stages. 1 FREE Music Festival. @FinalFour March Madness Music Festival - Apr 1-3. https://t.co/BpffXlyVTv +03/31/2016,Sports_celeb,@tonyromo,My surgery has healed up nicely. Looking forward to OTA's and a full offseason. Let's go! +11/17/2015,Sports_celeb,@tonyromo,;) https://t.co/KPy56DQMTz +09/21/2015,Sports_celeb,@tonyromo,Thank you for all your prayers and support. No surgery needed. We're just getting started cowboys nation. See you soon +08/26/2015,Sports_celeb,@tonyromo,Sending prayers out to Orlando Scandrick...Fear he has a torn acl. Your the best bud. +08/23/2015,Sports_celeb,@tonyromo,"My bad. Feeling. Aggressive, I like it. :)" +08/23/2015,Sports_celeb,@tonyromo,Cowboys vs Niners.... I have a funny felling you might see me out there tonight. Let's go cowboy nation +08/21/2015,Sports_celeb,@tonyromo,http://t.co/R3010HN4ap check this out. Our d lineman Jeremy Mincey made this. Pretty cool. Good job Mincey +08/01/2015,Sports_celeb,@tonyromo,You just wish u could play this game forever. Greatest game there is. #firstdayofpads http://t.co/GCQ6nOXvKi +07/25/2015,Sports_celeb,@tonyromo,I wanna thank @DIRECTV for allowing me to show off my true self. ;) embarrassing is an understatement http://t.co/F0NniFESlL +07/20/2015,Sports_celeb,@tonyromo,I wonder if @JordanSpieth understands the emotional roller coaster he's given us this year. It was amazing. Thank you for making it fun bro +07/15/2015,Sports_celeb,@tonyromo,Couldn't be happier for my guy @DezBryant . Nobody deserves it more... just make sure you don't forget your wallet at the next dinner 88. +07/08/2015,Sports_celeb,@tonyromo,DeAndre Jordan.....you are not allowed to take your talents to LA. See you Monday 🏈🏀🏈🏀🏈🏀🏁🏁🏁🏆🏆 http://t.co/7N2YcfWvOT +07/04/2015,Sports_celeb,@tonyromo,Enjoy your family and friends today. To the lives that have been lost fighting for American lives.....thank you. Truly humbled +06/11/2015,Sports_celeb,@tonyromo,"RT @dallascowboys: ""The responsibility is yours to make your life GREAT."" - @tonyromo to local student-athletes. #CowboysU http://t.co/m04W…" +06/06/2015,Sports_celeb,@tonyromo,NFL has canceled our fantasy football convention this year in Vegas and that is disappointing. I'm sad for the fans and players. +06/02/2015,Sports_celeb,@tonyromo,I guess I'm the third most athletic in the family. I'm cool with it. :) http://t.co/PKocqGVL5G +05/20/2015,Sports_celeb,@tonyromo,Where have u gone Joe DiMaggio. http://t.co/9d5aElp13d +05/15/2015,Sports_celeb,@tonyromo,Looking back on it...it was a catch :) http://t.co/jq29XpkGAn +05/15/2015,Sports_celeb,@tonyromo,9 +07/01/2018,Sports_celeb,@bengreenfield,"**DO NOT COMMENT ON THIS POST TO ENTER!!**⁣ +⁣ +If you are interested in winning the Christian Gratitude Journal for… https://t.co/gqcG2Qygva" +07/01/2018,Sports_celeb,@bengreenfield,@gmoore131 Sure is tempting! +07/01/2018,Sports_celeb,@bengreenfield,@CarleAldrete I go over some of the benefits (and drawbacks) in this podcast: https://t.co/y2sFKQtMYs +06/30/2018,Sports_celeb,@bengreenfield,@UncleWilliamMMA @tferriss I go into cupping on this podcast: https://t.co/AwcHIBc2NL +06/30/2018,Sports_celeb,@bengreenfield,"@bobpzero Nope, read more here: https://t.co/bHliB74uCi" +06/30/2018,Sports_celeb,@bengreenfield,@waywarduncle @thorne_research https://t.co/Zuv3TJIC8r +06/30/2018,Sports_celeb,@bengreenfield,"@HeroSquirellBoy Check the link, I answer this in the article." +06/30/2018,Sports_celeb,@bengreenfield,@Karrisspeaks Just mono...This is the stuff I use: https://t.co/0dScTtjNzm +06/30/2018,Sports_celeb,@bengreenfield,@4nomad @foundmyfitness @robbwolf https://t.co/3ygUHfbczG +06/30/2018,Sports_celeb,@bengreenfield,"@Cain_Luca I talk about it here as a better alternative to, or a way to wean yourself off of, tobacco containing ci… https://t.co/o7sjhGLPbm" +06/30/2018,Sports_celeb,@bengreenfield,@GFunk_Error @DZederman Check out this recent article on https://t.co/YR7B65x4tq: https://t.co/9oRmYPatzq +06/30/2018,Sports_celeb,@bengreenfield,@firehaas I wouldn't consider that cold water. +06/30/2018,Sports_celeb,@bengreenfield,@ANorrby https://t.co/zA7rC48fyg +06/30/2018,Sports_celeb,@bengreenfield,"@LuisE_Lemus @truniagen Not in production yet, but sign up for my newsletter at https://t.co/PJPuWBve6p to be notified when they're ready!" +06/30/2018,Sports_celeb,@bengreenfield,@ondroad2royalty That could buy a lot. Every single product/device/procedure I've ever mentioned at… https://t.co/d4IN2Dgai4 +06/30/2018,Sports_celeb,@bengreenfield,@AeroLance @livingwmonsters @younglivingeo https://t.co/bIDbWx1Ykj +06/30/2018,Sports_celeb,@bengreenfield,"@suncard19 @mvmt Sometimes, depends on the type of training." +06/30/2018,Sports_celeb,@bengreenfield,@codypriest92 @JREpodcast Here's an article I wrote on MK 677: https://t.co/Qf7Dkwz3IX +06/30/2018,Sports_celeb,@bengreenfield,"My seafood kick continues here in #Estonia... I got this amazing oven-baked baby trout with fresh greens, avocado c… https://t.co/oWxrHZTEtX" +06/30/2018,Sports_celeb,@bengreenfield,Yale graduate and “social cognitive & affective neural science” author Ryan Keller is a guest on Obstacle Dominator… https://t.co/bjcFq7iNLJ +06/30/2018,Sports_celeb,@bengreenfield,"My guest on today's podcast, @drdanpompa is one of my favorite guys to hang with! He is considered to be an icon in… https://t.co/AWMMOi80sO" +06/30/2018,Sports_celeb,@bengreenfield,"Everything you may have missed this week– health and fitness news, tips, discounts and more! +https://t.co/D1llw3iPeU" +06/30/2018,Sports_celeb,@bengreenfield,Spartan Race just put up $1 million for the athlete who wins 1st place at all three @SpartanRace World Championshi… https://t.co/KTqi7BUGv9 +06/30/2018,Sports_celeb,@bengreenfield,"@the1hatter Similar effect...but for athletes, very lean people, etc. the whole ""fasting"" to fix every issue approach can backfire..." +06/29/2018,Sports_celeb,@bengreenfield,"#Creatine increases #cognition, even in #healthy people: https://t.co/7IQU1ucssC" +06/29/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #22: Super Smart Things and S… https://t.co/GdyzInXKmv +06/28/2018,Sports_celeb,@bengreenfield,"I travel a lot, but it’s hands-down the BEST when I get to travel with my family. From the Boise @spartanrace to at… https://t.co/5TWjCO9FyM" +06/28/2018,Sports_celeb,@bengreenfield,"RT @DZederman: Hey now, The Armchair Nutritionist is back! I talked with @bengreenfield a nutritionist, biohacker & longevity consultant.…" +06/28/2018,Sports_celeb,@bengreenfield,Calling all you high achieving athletes who struggle to find time to to train! Today's new podcast is for you. In i… https://t.co/jUjyJAXnGf +06/28/2018,Sports_celeb,@bengreenfield,Did you know Rutaecarpine is an herb speeds up #caffeine #metabolism. So if you accidentally drank regular #coffee… https://t.co/28kICLdCc0 +06/28/2018,Sports_celeb,@bengreenfield,"This year I used a special protocol that is technically called “extracorporeal shock wave therapy,” also known as “… https://t.co/tMbPva8zCs" +06/28/2018,Sports_celeb,@bengreenfield,The Best Workout Tips for Ectomorphs and Hardgainers https://t.co/5qpTaYb4r6 +06/27/2018,Sports_celeb,@bengreenfield,"Everyone is talking about the outstanding #longevity benefits of #NAD but it's actually #NR, its precursor which is… https://t.co/Q6xgO4w4wx" +06/27/2018,Sports_celeb,@bengreenfield,"Caffeine's effect on #endurance exercise #performance may depend on #genes, shocking facts about honey, caffeinated… https://t.co/YsU6EllJos" +06/27/2018,Sports_celeb,@bengreenfield,Latest study on red meat shows that (despite what epidemiologists say) if it's unprocessed and somewhat lean in Med… https://t.co/Ci5PUdfYKQ +06/27/2018,Sports_celeb,@bengreenfield,"@the1hatter Yes, I did. Will be addressing in a podcast soon." +06/26/2018,Sports_celeb,@bengreenfield,"@Vican123ZA No it doesn't. Enrollment has ended, but you are welcome to apply next year!" +06/26/2018,Sports_celeb,@bengreenfield,@CeeJayWeaber @BigStrongFast I felt it pretty quickly. +06/26/2018,Sports_celeb,@bengreenfield,@JaffaSumo @PeterAttiaMD @tferriss @ChrisMasterjohn @chriskresser @bulletproofexec Have you tried a humidifier? https://t.co/QM4JLhF3Rl +06/26/2018,Sports_celeb,@bengreenfield,How To Prepare for a Ragnar Relay https://t.co/Q6YAlpzn7l +06/25/2018,Sports_celeb,@bengreenfield,@suncard19 Usually @mvmt https://t.co/Xo9Oykiuqv +06/25/2018,Sports_celeb,@bengreenfield,@kystyleguy There are many counterpoints to that. I would have her read this: https://t.co/xry6g8Azpo and any of my… https://t.co/gOBBu6pas7 +06/25/2018,Sports_celeb,@bengreenfield,@johntracey_ @JasonFerruggia Yes +06/25/2018,Sports_celeb,@bengreenfield,@howellsmike @WholeFoods I'm not much of a calorie counter tbh. +06/25/2018,Sports_celeb,@bengreenfield,@mn_fats75 Sure! https://t.co/MPdbeDhLJM +06/25/2018,Sports_celeb,@bengreenfield,@savoie0515 Not familiar with that one. All of my water filtration recommendations can be found in this article: https://t.co/NsbTdChNP0 +06/25/2018,Sports_celeb,@bengreenfield,"The deadline to apply for Kion U is today: https://t.co/3XIAsDKndR (link in bio)⁣⁣ +⁣⁣ +This is a 21-week intensive p… https://t.co/89U5uNj0x3" +06/25/2018,Sports_celeb,@bengreenfield,@WholeFoods Let me know if you ever want to collaborate on promo ideas. Just DM me. +06/25/2018,Sports_celeb,@bengreenfield,"For 4 full days while we are in Estonia next week, my wife and I are taking this Lifebook course with @mindvalley -… https://t.co/rVskqN7JLf" +06/24/2018,Sports_celeb,@bengreenfield,"My go-to lunch spot while traveling is the @wholefoods salad bar. Today I got some salmon, (admittedly not wild-cau… https://t.co/VCMeLjh67W" +06/24/2018,Sports_celeb,@bengreenfield,River and Terran Greenfield of the world famous gogreenfieldsshow did their first ever 2 mile long competitive… https://t.co/IxQYo9zklq +06/23/2018,Sports_celeb,@bengreenfield,@BuxBucks This is great. Where is it from? +06/23/2018,Sports_celeb,@bengreenfield,"Real men eat their #glutenfree #vegan #icecream sandwiches pinkies out. I’m at @ilovethestil in Boise, Idaho. Post… https://t.co/NI9Z07r5gB" +06/23/2018,Sports_celeb,@bengreenfield,@joerogan I am sitting here in Boise after racing a Spartan and your face is all over. Tip: get the most amazing gl… https://t.co/dFuWQFo7J6 +06/23/2018,Sports_celeb,@bengreenfield,"@Urban_Tribe_Adv @RayCronise @RayCronise has been on the podcast, check it out here: https://t.co/vxWazlnaED" +06/23/2018,Sports_celeb,@bengreenfield,@justinwilcox Check out the Alchemist's Kitchen @alchemists_k and @HuKitchen. +06/23/2018,Sports_celeb,@bengreenfield,@quijotedv @joerogan A cycle leading into a major competition or race. +06/23/2018,Sports_celeb,@bengreenfield,@Optix_Melt Yep or carbs in general +06/23/2018,Sports_celeb,@bengreenfield,@Hightower915 @joerogan Just carbs. +06/23/2018,Sports_celeb,@bengreenfield,"My guest on today's podcast is experienced in a wide variety of #therapeutic modalities as a #LMT, and his educatio… https://t.co/2eZhdJskcJ" +06/22/2018,Sports_celeb,@bengreenfield,@HeatherOdehkw @drcateshanahan Awesome! +06/22/2018,Sports_celeb,@bengreenfield,@the1hatter Here you go! https://t.co/9syX1PQ9Q9 +06/22/2018,Sports_celeb,@bengreenfield,"@savoie0515 Hmm, I'll have to try it and let you know!" +06/22/2018,Sports_celeb,@bengreenfield,"@msted6 @joerogan Carbohydrate, they tell you in the first mention." +06/22/2018,Sports_celeb,@bengreenfield,@_buenavictoria Depends on your definition of cheat meal. Check out: https://t.co/Lbb0I4u9GL +06/22/2018,Sports_celeb,@bengreenfield,@stamper_hank Yes. +06/22/2018,Sports_celeb,@bengreenfield,"@cmoss23 @GetFitGuy Consistently, through your lift, doing a workout similar to that once a week is a very good idea, IMO." +06/22/2018,Sports_celeb,@bengreenfield,"I'm packing for @Spartan Boise. Who will be out there to crush the course with me this Saturday? + +Shout out to all… https://t.co/Uelw985vun" +06/22/2018,Sports_celeb,@bengreenfield,Can Simply Sitting in a Hot Tub Improve Your Health? https://t.co/jPRj6LzS1o +06/22/2018,Sports_celeb,@bengreenfield,@grim_magnus @Mindpump That's because they get me all liquored up. +06/22/2018,Sports_celeb,@bengreenfield,@tiffanyngibson @bulletproofexec @MariaEmmerich The Keto Bible! https://t.co/84ns0JuctN +06/22/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #21: Power Hour with Matthew… https://t.co/UBXR6WB9cx +06/22/2018,Sports_celeb,@bengreenfield,"How To Use Your Mind To Heal Your Body, Imagination For Healing, Defying Death, Embracing Immortality & Much More W… https://t.co/37Uld0iUZa" +06/22/2018,Sports_celeb,@bengreenfield,"@DevinRhode2 Yes, @joerogan wears lobster bib-esque vomit aprons when we podcast." +06/21/2018,Sports_celeb,@bengreenfield,@huntthesheriff is in tha’ hood. https://t.co/ojNuQ0AFro +06/21/2018,Sports_celeb,@bengreenfield,"@huntthesheriff is in the hood. @ Spokane,… https://t.co/5NAeXCliAb" +06/21/2018,Sports_celeb,@bengreenfield,"Gerald Epstein, M.D., has been a pioneer in the use of mental imagery for treating physical and emotional problems.… https://t.co/jnE5rdBi9h" +06/21/2018,Sports_celeb,@bengreenfield,Which episode of my podcast is hands down your favorite / you have recommended the most? +06/21/2018,Sports_celeb,@bengreenfield,@normcarbnormfat @johnortberg Soul Keeping. +06/21/2018,Sports_celeb,@bengreenfield,The author @johnortberg has been blowing my mind recently. I'd recommend you read all his books in the next year of… https://t.co/JI5R035Yt9 +06/20/2018,Sports_celeb,@bengreenfield,@KyleShuberg @amazon @ransomedheart @johneldredge Have not read either of them! +06/20/2018,Sports_celeb,@bengreenfield,"How exactly does #neurofeedback / AKA ""central nervous system biofeedback” work to train the #brain? Find out how i… https://t.co/Hemjzhud3D" +06/20/2018,Sports_celeb,@bengreenfield,@BarryVanOver Not yet. ;) +06/20/2018,Sports_celeb,@bengreenfield,Good one: Overview of the potential effects of #protein ingestion on supporting the #recovery from endurance-based… https://t.co/DYUa658m4E +06/19/2018,Sports_celeb,@bengreenfield,"""12 Practical & Proven Ways To Heal Your Body From The Inside-Out."" https://t.co/Lbd23XckhB" +06/19/2018,Sports_celeb,@bengreenfield,@the1hatter Thanks for sharing! +06/19/2018,Sports_celeb,@bengreenfield,"@fithouses Yep, in this podcast: https://t.co/tacbjoIWQo" +06/19/2018,Sports_celeb,@bengreenfield,"@HeatherOdehkw @drcateshanahan Not sure about a cracked tooth, but I go into detail about remineralizing your teeth… https://t.co/KwQiNgt8hF" +06/19/2018,Sports_celeb,@bengreenfield,@caholden7 I have a bunch of resources in this podcast: https://t.co/rDBRbhH9Yu ...and these articles:… https://t.co/ogW7dlHLPI +06/19/2018,Sports_celeb,@bengreenfield,@SEOphilippiness I would send an email to support: support@greenfieldfitnesssystems.com +06/19/2018,Sports_celeb,@bengreenfield,@Formwell I go over a few good natural remedies in this podcast: https://t.co/OLdCVkNze6 +06/19/2018,Sports_celeb,@bengreenfield,There is a hard deadline for applications for my brand new coaching program. Submit your application before the end… https://t.co/Angb9sQPsh +06/19/2018,Sports_celeb,@bengreenfield,"Weightlifting for your penis? @Kingsbu @joerogan - been there, done that: https://t.co/rDQcgS2Juw" +06/19/2018,Sports_celeb,@bengreenfield,Experts say #algae is the food of the future. Here’s why: https://t.co/Ruqd6ZIW4J +06/19/2018,Sports_celeb,@bengreenfield,Why Cross-Training Is Essential (and Improves Your DNA) https://t.co/MrhJeyHyKu +06/19/2018,Sports_celeb,@bengreenfield,"@thedr_com - when it comes to lipid raft cytosis, any data out there on how this would affect folks who switch from… https://t.co/mP3awdF00Y" +06/18/2018,Sports_celeb,@bengreenfield,"@brianfreel You probably saw it here, https://t.co/Jt9QZWFzSA but stay tuned for an upcoming @onnit podcast." +06/18/2018,Sports_celeb,@bengreenfield,@the1hatter 1-2tsp! +06/18/2018,Sports_celeb,@bengreenfield,I visited @PeakBrainLA for an advanced brain scan and I was shocked at what they discovered in my #brain. Read mo… https://t.co/OC8RH0kg8D +06/18/2018,Sports_celeb,@bengreenfield,@hfce354 Along with neurotoxic and gut destroying artificial sweeteners. Yay! +06/18/2018,Sports_celeb,@bengreenfield,"Enroll now in ""KionU"" my brand new health and fitness coaching program. It is designed with an emphasis on business… https://t.co/PZ3sthVSIs" +06/18/2018,Sports_celeb,@bengreenfield,The only supplement that comes at least close to carbs in terms of the amount and quality of research is caffeine a… https://t.co/4dFgN4Zl4k +06/18/2018,Sports_celeb,@bengreenfield,RT @mindbodygreen: Talk about early to rise -- we set out for a 6 am hike this morning led by @bengreenfield + fueled by @EPICbar 😋⛰ #mbgre… +06/17/2018,Sports_celeb,@bengreenfield,@New49 Thank you. +06/17/2018,Sports_celeb,@bengreenfield,@Greghenderson1 It was a relatively intense effort… Like a bicycle time trial type of effort. +06/17/2018,Sports_celeb,@bengreenfield,@bubstron Correct. +06/17/2018,Sports_celeb,@bengreenfield,@Ryan_Bevans Yep. If your goal is to enhance endurance. +06/17/2018,Sports_celeb,@bengreenfield,90-year-old woman deadlifts 185 lbs. Can’t wait to see what the trolls think of her form: https://t.co/XbnRNSe8Ib +06/16/2018,Sports_celeb,@bengreenfield,Hike with champs! @maxlugavere @foursigmaric Tero and @seedhealth Raja at #mbgrevitalize https://t.co/0hLK4acNeS +06/16/2018,Sports_celeb,@bengreenfield,Hike with champs! @maxlugavere @foursigmaric Tero and @seedhealth Raja - https://t.co/PRIYclcRg4 https://t.co/U4LQg3eiE4 +06/16/2018,Sports_celeb,@bengreenfield,@jsfaq Hopefully the cost will come down in the future! +06/16/2018,Sports_celeb,@bengreenfield,"@SEOphilippiness Yes, you can stream the video or download the audio." +06/16/2018,Sports_celeb,@bengreenfield,This is the best computer monitor for your eyes. https://t.co/bH728GMWRK +06/16/2018,Sports_celeb,@bengreenfield,Me and @maxlugavere crushing gym time at #mbgrevitalize in Tucson! https://t.co/2fxn99ab4S +06/16/2018,Sports_celeb,@bengreenfield,"If you want to learn how to harness the healing power of nature — even indoors, clean up your environment, grow you… https://t.co/EihUmPvDvt" +06/16/2018,Sports_celeb,@bengreenfield,"@UncladLad Seems slightly unsafe, I would make sure someone knows you're doing it, and definitely not while driving… https://t.co/8V8v9ye6ws" +06/16/2018,Sports_celeb,@bengreenfield,@gerabrr I have instructions here as well: https://t.co/5u9UbD2pp5 +06/16/2018,Sports_celeb,@bengreenfield,@hopsanonymous Read more here: https://t.co/MA3oLgJs9I +06/16/2018,Sports_celeb,@bengreenfield,@MemeGalt Don't knock it til you've tried it ;) +06/15/2018,Sports_celeb,@bengreenfield,@thestevehallock Depends! Read this: https://t.co/Mtwavbb4zL +06/15/2018,Sports_celeb,@bengreenfield,"""Sleeping Low"" (not reloading glycogen stores after evening workouts) can lead to game-changing performance gains w… https://t.co/qEbtLS5WGV" +06/15/2018,Sports_celeb,@bengreenfield,"Everything you may have missed this week including a mouth-watering #steak recipe, upcoming events including… https://t.co/mOP97gLRFd" +06/15/2018,Sports_celeb,@bengreenfield,@HotSauceHoltzy @joerogan @DrinkFITAID There’s some in my fridge. It’s pretty tasty. Especially with vodka. +06/15/2018,Sports_celeb,@bengreenfield,Here are my top 10 ways to hack your office environment so you can more done and get out of pain: https://t.co/nqagFaa0lU +06/15/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #20: Genius Nutrition For Stu… https://t.co/WReO20VPCc +06/15/2018,Sports_celeb,@bengreenfield,I visited @PeakBrainLA for an advanced brain scan and to use a brain mapping system called a quantified electroenc… https://t.co/TuEFNZ2Knu +06/14/2018,Sports_celeb,@bengreenfield,"Today's new listener Q&A podcast episode is a doozy. We cover #HIIT, how sprints can massively boost endurance, T,… https://t.co/dIOS7Sa9i7" +06/14/2018,Sports_celeb,@bengreenfield,I'm in Tucson for the @mindbodygreen Revitalize conference! My job? “Official Sunrise Morning #Hike Leader.” Tough… https://t.co/B1OUliVdo4 +06/14/2018,Sports_celeb,@bengreenfield,https://t.co/v0Xq5BWmd9 +06/14/2018,Sports_celeb,@bengreenfield,"How Your Computer Monitor Is Slowly Killing Your Eyes, And What You Can Do About It. https://t.co/XMGSUbSmqO" +06/13/2018,Sports_celeb,@bengreenfield,New to Lifting Weights? How to Start the Smart Way https://t.co/VnLcRykmFZ +06/13/2018,Sports_celeb,@bengreenfield,URGENT MSG FOR #HEMP AND #CBD USERS: @ChuckGrassley just filed an amendment to the #FarmBill that would devastate t… https://t.co/LJuFthfSES +06/13/2018,Sports_celeb,@bengreenfield,"Instantly Upgrade Your Head With This Brain Optimizing Gear! + +@DrPawluk @PeakBrainLA @AndrewHillPhD @VielightInc… https://t.co/lDaNNNYq4o" +06/13/2018,Sports_celeb,@bengreenfield,"How To Hack Your Workplace For Enhanced Productivity, Less Muscle Pain, Better Focus & More. https://t.co/rLmSwCbOiY" +06/13/2018,Sports_celeb,@bengreenfield,@Matt_Belair @Cisco722 email my team: support@bengreenfieldfitness.com with screenshot of this convo and let's do it. +06/13/2018,Sports_celeb,@bengreenfield,Pasta lovers rejoice! You actually CAN lose weight while eating pasta (please note the quantity in this study was 1… https://t.co/FACenCLJBd +06/13/2018,Sports_celeb,@bengreenfield,Headed to @cityoftucson tomorrow for @mindbodygreen Revitalize conference! My job? “Official Sunrise Morning Hike L… https://t.co/C9F09ruZVg +06/13/2018,Sports_celeb,@bengreenfield,@Charlesab40 Just wait till you see my new book. It is currently 700 pages long. Everything one needs to know about… https://t.co/itJVtCgYie +06/13/2018,Sports_celeb,@bengreenfield,Doing a coffee enema tutorial right now at https://t.co/ljIqlSV90A - no joke. One of the most effective cleansing t… https://t.co/Z3hPE5XlJZ +06/12/2018,Sports_celeb,@bengreenfield,@candycatalanoto Can't say I'm aware of any... +06/12/2018,Sports_celeb,@bengreenfield,@CODYCHAPMAN I have a recommendation in this article: https://t.co/xg4cnVPQPt +06/12/2018,Sports_celeb,@bengreenfield,@the1hatter https://t.co/jvXll4rg7A +06/12/2018,Sports_celeb,@bengreenfield,Learn how to completely rid your home of mold and environmental toxins that are deleterious to your health! The Tox… https://t.co/VEhAJF6gSn +06/12/2018,Sports_celeb,@bengreenfield,@michaelpollan - I finished your book. DM me if you want to podcast. +06/12/2018,Sports_celeb,@bengreenfield,"How to fix your desk-bound human body to increase #productivity & reduce #lowbackpain, carpal tunnel syndrome and e… https://t.co/x2pARhD47H" +06/12/2018,Sports_celeb,@bengreenfield,What Is Green Exercise? https://t.co/9aVQGaozTH +06/12/2018,Sports_celeb,@bengreenfield,"#Stevia for fighting obesity, diabetes, hypertension, and dyslipidemia? Looks promising: https://t.co/kqv0vdPyml" +06/12/2018,Sports_celeb,@bengreenfield,Here’s a very scheduling tip to get more “deep work” done: https://t.co/jPz1uOX8LH +06/12/2018,Sports_celeb,@bengreenfield,"In about 15 minutes I am going to film for you the most epic, insane meal I've prepared in awhile. Slightly abnorma… https://t.co/eBI9zA06QA" +06/12/2018,Sports_celeb,@bengreenfield,"@tompapa @joerogan - my wife's sourdough bread is second to none. If you find yourself near Spokane, venture to my… https://t.co/QmDLgBssEg" +06/11/2018,Sports_celeb,@bengreenfield,"I'm looking for a list of practical activities (meditation, yoga, gratitude, prayer, etc.) that allow one to achiev… https://t.co/7tg2OXH6Ac" +06/11/2018,Sports_celeb,@bengreenfield,"@hallydally Here are a few resources that should help you out: https://t.co/g6NKG8uW6e, https://t.co/C3X6VgUKeh...… https://t.co/wNwLX34Ofy" +06/11/2018,Sports_celeb,@bengreenfield,@the1hatter I personally do the clay mask 1-2x/week combined with the Kion skin serum every day! 20% code for… https://t.co/UbSvaPRbaL +06/10/2018,Sports_celeb,@bengreenfield,Physical activity combined with learning seems to be an amazing tool for schoolchildren in Finland - meaning actual… https://t.co/pguXcRyPLh +06/10/2018,Sports_celeb,@bengreenfield,"@kahnba I have a bunch of SARMS articles on https://t.co/YR7B65x4tq: https://t.co/K4IbTwivI0,… https://t.co/Mz4B9crKpv" +06/10/2018,Sports_celeb,@bengreenfield,"@bmontgome I haven't gotten any colds recently, so no." +06/10/2018,Sports_celeb,@bengreenfield,"Unlock the secrets of ""Movement Longevity"" with expert @Doctor_Legs: https://t.co/7UKgtHjs0Q" +06/09/2018,Sports_celeb,@bengreenfield,@ironblood247 Thanks man. +06/09/2018,Sports_celeb,@bengreenfield,"@pluc61 Sorry bout that! It wasn't intentional, there was some sort of glitch that caused hundreds of my videos to… https://t.co/nveKAoSvCJ" +06/09/2018,Sports_celeb,@bengreenfield,@bigdaddy__Jason @Roodywasoffside @whoop Apples and oranges. I would check out this article on @ouraring and their… https://t.co/UbY4a7xSQL +06/09/2018,Sports_celeb,@bengreenfield,@love2laugh11 Check out this podcast for some tips: https://t.co/iY2lXFAYhF ...and this article: https://t.co/JXMFUSASEU +06/09/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 This is a good question to call into the podcast! https://t.co/s0hCj6wwIb +06/09/2018,Sports_celeb,@bengreenfield,"@havefunwiththe1 @tb12 Probably don't have the time to manage this one man. Sorry, but cool idea though!" +06/09/2018,Sports_celeb,@bengreenfield,"@dillybear92 Yes, the goal however is to avoid any long ice baths or excessive cold exposure post-workout. Night an… https://t.co/vcmIMeG6Zi" +06/09/2018,Sports_celeb,@bengreenfield,@HeatherOdehkw This will be a forever debate between supplement manufacturers who make NR and physicians who do NAD… https://t.co/LPXGCcYUM1 +06/09/2018,Sports_celeb,@bengreenfield,Have you heard about my brand new #coaching certification? I've been working tirelessly to overhaul the Superhuman… https://t.co/VccFo6992p +06/09/2018,Sports_celeb,@bengreenfield,Looks like intermittent fasting does not cause caloric overcompensation later on - could backfire though if you’re… https://t.co/oec3gQVqVC +06/09/2018,Sports_celeb,@bengreenfield,Good food porn tonight (and why I order acorn squash at restaurants) at https://t.co/jII7jxddzy https://t.co/5M4wF1bm8c +06/09/2018,Sports_celeb,@bengreenfield,"Great new ""Bible learnin'"" podcast from Christ Church, Moscow, ID with @douglaswils - called Kirkers Read." +06/09/2018,Sports_celeb,@bengreenfield,Live downtown Spokane tomfoolery happening rightnow at https://t.co/CsMD2ZqxjF +06/09/2018,Sports_celeb,@bengreenfield,@jonwolfeb Thanks. Would up here @volstead_act +06/09/2018,Sports_celeb,@bengreenfield,"Are you a health and fitness professional? Do you want me to teach you everything I've learned about #fitness,… https://t.co/msNb6kptM3" +06/08/2018,Sports_celeb,@bengreenfield,Thinking of heading downtown Spokane tonight to grab dinner. Any new hotspots I should know of? +06/08/2018,Sports_celeb,@bengreenfield,"In this week's roundup, @kion's brand spankin' new coaching certification, DiGize essential oil blend from… https://t.co/ans8DKmHjA" +06/08/2018,Sports_celeb,@bengreenfield,Barefoot Strong: Unlock the Secrets to Movement Longevity with @Doctor_Legs - all new episode for all the barefoot… https://t.co/74YjliSlDu +06/08/2018,Sports_celeb,@bengreenfield,"@LianneLlw Looks interesting, but haven't tried it... thanks for sharing!" +06/08/2018,Sports_celeb,@bengreenfield,@ironblood247 https://t.co/zpv2OdCNyn Can you call this into the podcast? Thanks man! +06/08/2018,Sports_celeb,@bengreenfield,Go here to sign up for more info or reserve a spot for European Detox Retreat @Robyn_Openshaw and I are planning! https://t.co/ZPBIJ8wuNl +06/08/2018,Sports_celeb,@bengreenfield,@Roodywasoffside Check out the @whoop: https://t.co/zm95jLYHs6 +06/08/2018,Sports_celeb,@bengreenfield,"@DrunkinYogi @tb12 It is somewhat close to that, yes! Similar idea of ""red light at night"", with some added detox b… https://t.co/QQ3iqamSst" +06/08/2018,Sports_celeb,@bengreenfield,"@ironblood247 Hey there, this is a great question for the podcast! Would you mind calling it in? https://t.co/ijk3kIITfE" +06/08/2018,Sports_celeb,@bengreenfield,Two Things the Apple Watch Gets Wrong https://t.co/6Ng1cZWaHh +06/08/2018,Sports_celeb,@bengreenfield,"Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #19: Faye Stenning, Spartan P… https://t.co/siX60dm6Sz" +06/08/2018,Sports_celeb,@bengreenfield,I just posted the full recipe for this wild caught salmon with crispy skin to https://t.co/jII7jxddzy https://t.co/eaulufJlPb +06/07/2018,Sports_celeb,@bengreenfield,"@Mindpump @spartanwim I'm like a little blue pill for your ears, I guess." +06/07/2018,Sports_celeb,@bengreenfield,"Nitrate supplementation how-to, the misunderstood noodle, eggcellent eggs and more! Brand new https://t.co/eGdjPMjkde" +06/07/2018,Sports_celeb,@bengreenfield,Be Barefoot Strong and Unlock the Secrets to Movement Longevity with @Doctor_Legs - new today on the podcast. https://t.co/7UKgtHB2So +06/07/2018,Sports_celeb,@bengreenfield,RT @Doctor_Legs: Listen to Dr Emily on Ben Greenfield's Podcast https://t.co/RSNwe0W1AV +06/07/2018,Sports_celeb,@bengreenfield,"Submit your Qs about health coaching- whether you want to be one, want to be a better one, or want to find one. I'l… https://t.co/GJPeGFh0eT" +06/07/2018,Sports_celeb,@bengreenfield,Submit ANY of your Qs about health & fitness coaching for me to answer on my upcoming Q&A episode- whether you want… https://t.co/5g8ETJZZjA +06/05/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 ...Telomeres are found at the ends of linear chromosomes in most organisms and their main ro… https://t.co/fuykO7jcev +06/05/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 From TeloYears: Mitochondria have circular genomes (like bacteria) and do not have telomeric… https://t.co/gPedEizXh9 +06/05/2018,Sports_celeb,@bengreenfield,"@CwCoady @joerogan 100-200g, all at night. Lower side of that on less active days." +06/05/2018,Sports_celeb,@bengreenfield,@RBaindourov Try posting in the Kion community. https://t.co/OeI9ZM5lZy +06/05/2018,Sports_celeb,@bengreenfield,@Jcumpian Check out @XeroShoes: https://t.co/Jl3Ao8WXb9 +06/05/2018,Sports_celeb,@bengreenfield,"@havefunwiththe1 @tb12 Not sure what mention of turmeric you're referring to, but yes, I have a podcast on this... https://t.co/Ww5tLFhAQG" +06/05/2018,Sports_celeb,@bengreenfield,@EvanMula @tradmedicinals https://t.co/K6bXmDVGgu +06/05/2018,Sports_celeb,@bengreenfield,"@vraex7 Thanks for the feedback, we've got something in the works. Both great products, I'd say if you have other K… https://t.co/ezW9bMHiPZ" +06/05/2018,Sports_celeb,@bengreenfield,The Future of Fitness: Massively Multiplayer Online Training https://t.co/RhiQyQitJc +06/04/2018,Sports_celeb,@bengreenfield,"Here in hard workin’ Merica, we don’t even vacation as much as friggin’ medieval peasants. Sheesh: https://t.co/bSMniYrDnI" +06/29/2018,Sports_celeb,@lancearmstrong,And a suitcase full of Z Cavariccis! https://t.co/pbKQL4bAOf +06/29/2018,Sports_celeb,@lancearmstrong,@Ronan_McGowan @jbhager @LeTour THEMOVE! +06/29/2018,Sports_celeb,@lancearmstrong,Going to be a long 3 weeks for them https://t.co/cT4IRFNrwR +06/29/2018,Sports_celeb,@lancearmstrong,"Happy birthday @ghincapie! My brother, it’s been a long and winding road since I first pulled the IROC-Z (aka White… https://t.co/oj77cujOFD" +06/27/2018,Sports_celeb,@lancearmstrong,One leaves and two come back! It’s been a whirlwind coupla days - started out early yesterday morning outta Austin… https://t.co/2yCp1kibZa +06/27/2018,Sports_celeb,@lancearmstrong,One leaves and two come back! It’s been a whirlwind coupla days - started out early yesterday morning outta Austin… https://t.co/rJpQdeTjcY +06/25/2018,Sports_celeb,@lancearmstrong,So great to finally connect with this absolute animal @chambers__mike. Dude hammers!! The fact that this connection… https://t.co/g9Y8K0qhKi +06/18/2018,Sports_celeb,@lancearmstrong,Post marathon last Saturday. The madman… https://t.co/JHsQNHEbl5 +06/16/2018,Sports_celeb,@lancearmstrong,Well that hurt like hell! Months ago the madman… https://t.co/GJlZrUEnMC +06/13/2018,Sports_celeb,@lancearmstrong,Called an audible on my morning ride and took… https://t.co/VZJFx8fiQx +06/13/2018,Sports_celeb,@lancearmstrong,Heading up to Leadville this weekend to support @byrnes22 as he leads the Go-Hards at the Leadville Marathon. More… https://t.co/MKSnzsF6p3 +06/12/2018,Sports_celeb,@lancearmstrong,Happy for my friend Coach Tommy Harmon being front and center enjoying the recent success @TexasBaseball. He helped… https://t.co/A2uj9Jj0sa +06/08/2018,Sports_celeb,@lancearmstrong,Always fun sūffering with this crazy… https://t.co/7Qsi6YGGTW +06/05/2018,Sports_celeb,@lancearmstrong,"Wait, where’d the years go? This little man… https://t.co/zkjGrRWyrb" +05/26/2018,Sports_celeb,@lancearmstrong,On ✈️ & following @giroditalia via live reports. Why is it “sad” when one of the favorites gets dropped? It’s not s… https://t.co/OwxumgAqIB +05/25/2018,Sports_celeb,@lancearmstrong,Banged out a quick THEMOVE podcast to discuss all from Stage 19 at the @giroditalia https://t.co/1uh1rT27wk https://t.co/Eky70RHt9H +05/24/2018,Sports_celeb,@lancearmstrong,Just got the awful news that my friend Shay Rishoni passed from ALS. He fought a brave fight and will be sorely mis… https://t.co/XyV4W8fTIX +05/10/2018,Sports_celeb,@lancearmstrong,"Well well, look who turns 10 today.. Happy 10th @mellowjohnnys and… https://t.co/vdLItyutXz" +05/10/2018,Sports_celeb,@lancearmstrong,Todd Sadow and his entire crew @Epicrides continue the great work. Just added @OzTrailsNWA. Can’t wait! https://t.co/4ZtmBFh4D1 +05/09/2018,Sports_celeb,@lancearmstrong,So I’m heading up to @oztrailsnwa this weekend to ride in the… https://t.co/8C7xk4GMuU +05/08/2018,Sports_celeb,@lancearmstrong,Back in Aūstin and back on the bike. We often talk about “road… https://t.co/eqtTDCYYw1 +05/07/2018,Sports_celeb,@lancearmstrong,That's a wrap from Israel and the @giroditalia THEMOVE is up now. https://t.co/Ut2b8SK8o6 https://t.co/VRSCWb2neR +05/05/2018,Sports_celeb,@lancearmstrong,Not sure @jbhager is impressed but the latest THEMOVE Giro podcast is up https://t.co/tqVoIS0cgQ https://t.co/gRcWgsD5yQ +04/28/2018,Sports_celeb,@lancearmstrong,Thanks grace.armstrongg for inviting me to ride with you this morning!! Love ya G!… https://t.co/q3onDxCXRW +04/28/2018,Sports_celeb,@lancearmstrong,No need. Anything for @Luke_armstrong7 and anything for @RiceUniversity/@RiceFootball https://t.co/HNVbVY4b8S +04/23/2018,Sports_celeb,@lancearmstrong,We close out the Classics with a @LiegeBastogneL Stages Podcast. We talk about the effort by @BobJungels my settlem… https://t.co/ap3lCKuLTM +04/21/2018,Sports_celeb,@lancearmstrong,"Ok but hang on a minute. I take this shit very seriously so I need to point out 2 very serious issues. One, the spe… https://t.co/nU3Gnn6gke" +04/21/2018,Sports_celeb,@lancearmstrong,In Houston for the riceowlsfootball Blue/Gray game with the big man luke_armstrong65 and his mom… https://t.co/Ho7Qe5JHz8 +04/19/2018,Sports_celeb,@lancearmstrong,FORWARD https://t.co/3iL7WAdSPY +04/16/2018,Sports_celeb,@lancearmstrong,"New Stages for Amstel Gold is up. We talk about my history with the race including 98 World Championships, the dyn… https://t.co/mZ9pmEmcuy" +04/15/2018,Sports_celeb,@lancearmstrong,Thanks to everyone who came out and braved the wind at the WEDŪ Texas HŪNDRED! Including this… https://t.co/XadylsYJUb +04/14/2018,Sports_celeb,@lancearmstrong,RT @Andylanger: The just-posted new edition of @TexasMonthly’s National Podcast Of Texas features my interview w/ @lancearmstrong. We talk… +04/12/2018,Sports_celeb,@lancearmstrong,"Had a great jam session last night with the EO chapter here in Austin. Talked about the past,… https://t.co/Ah0KlNPr0W" +04/11/2018,Sports_celeb,@lancearmstrong,"Woot woot! Hey riceuniversity, here comes your next student/athlete luke_armstrong65 ! So… https://t.co/mxnw99Axv0" +04/10/2018,Sports_celeb,@lancearmstrong,Truly loved my time in Adelaide. Great piece about a great city! https://t.co/nFkxAlHEZy +04/08/2018,Sports_celeb,@lancearmstrong,"Truly awful news. Words can’t express my deepest condolences to Michael Goolaerts’ family, teammates, and friends.… https://t.co/rfU4r1igbc" +04/08/2018,Sports_celeb,@lancearmstrong,Took Stages on the road to @hoteldomestique to talk Paris-Roubaix with @ghincapie download here… https://t.co/Mc9KNUuV7U +04/08/2018,Sports_celeb,@lancearmstrong,Paris Roubaix viewing party @hoteldomestique. Recording an episode of STAGES with @ghincapie and… https://t.co/i0xK7Zf9eg +04/07/2018,Sports_celeb,@lancearmstrong,One week to go til the @wedusport Texas HŪNDRED! Come join @ghincapie and I for the prettiest… https://t.co/67hBPioznG +04/05/2018,Sports_celeb,@lancearmstrong,"If you can't fly then run, if you can't run then walk, if you can't walk then crawl, but… https://t.co/uhz46fLB6b" +04/04/2018,Sports_celeb,@lancearmstrong,It’s actually now really OFFICIAL. Look who’s gonna be a riceowlsfootball !! Congrats… https://t.co/r5InVUuKaY +04/01/2018,Sports_celeb,@lancearmstrong,Watching rondevanvlaanderenofficial with @jbhager - 70k to go. Looking forward to an exciting… https://t.co/wFR7Io76cI +03/29/2018,Sports_celeb,@lancearmstrong,@theamandabatty TMI homey +03/29/2018,Sports_celeb,@lancearmstrong,The lastest Forward is up w @michaelshermer I had to do my homework for this one. Shermer was in town to promote hi… https://t.co/ci22FfAuTy +03/28/2018,Sports_celeb,@lancearmstrong,My old friend @garynewkirk is digitizing his entire catalogue and sent me along some of these… https://t.co/LAxVxxZGpB +03/26/2018,Sports_celeb,@lancearmstrong,Thanks pgatour for having us down to the dellmatchplay! Inspiring watching these guys play in… https://t.co/yWiKyuGWIG +03/19/2018,Sports_celeb,@lancearmstrong,"RT @MayorAdler: Be aware of your surroundings. Pay close attention to any suspicious items whether it be a package, a bag, a backpack, or a…" +03/19/2018,Sports_celeb,@lancearmstrong,The YUM alert just went off! Back in #ATX to find the new @honeystinger snack bar has arrived!… https://t.co/ZLx3IFibCA +03/17/2018,Sports_celeb,@lancearmstrong,"Solid 2018 Spring Break crew keeping us young and laughing... @ San José del Cabo, Baja… https://t.co/siLOudIfvq" +03/14/2018,Sports_celeb,@lancearmstrong,"Morning jog crew. @ New York, New York https://t.co/Txcw5jYpGJ" +03/13/2018,Sports_celeb,@lancearmstrong,"Spring Break 2018! Having the best time with these crazy Armstrong kids. And while I got ya, THE… https://t.co/EC9jHcLfhb" +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus My objection was that Schumi was exclusive to our team. He wasn’t. +03/12/2018,Sports_celeb,@lancearmstrong,"@TedNordhaus I would know. And you wouldn’t is all I’m saying but you’re stating something as fact. One tidbit, pre… https://t.co/XFZ3QPxoYl" +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus Also not true. Not sure what you’re going on about wrt cycling but before preaching too much I might do some fact checking +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus High 40’s? You sure about that? +03/08/2018,Sports_celeb,@lancearmstrong,"With my man Lucca Hincapie, future World Champ, aka ‘il iridato’. Hence the tee. For those who… https://t.co/3kjg5iOGpl" +03/08/2018,Sports_celeb,@lancearmstrong,@fcancer Cc @ScottRogowsky +03/08/2018,Sports_celeb,@lancearmstrong,Last day of riding (for me at least) at another successful @hoteldomestique “training camp”.… https://t.co/FlWaWtvD1K +03/06/2018,Sports_celeb,@lancearmstrong,We did a live Stages podcast back in 24 Hour town. We will post full show tomorrow. Sneak peek of the episode with… https://t.co/OVPAbOszEZ +03/05/2018,Sports_celeb,@lancearmstrong,"Latest Forward is up with @IDEAschools Founder Tom Torkelson. We talk education, hiring teachers and IDEA's 100% co… https://t.co/sUGA8POaP0" +03/02/2018,Sports_celeb,@lancearmstrong,"Great to hang with my old buddy steveaoki last night. This was our second Aoki jump and damn, I… https://t.co/bNLAKb32Uh" +03/01/2018,Sports_celeb,@lancearmstrong,"I know, I know. I look a lot better in the new @wedusport kit but let’s throw @ghincapie some love. This is a LIMIT… https://t.co/qFOwshAoli" +03/01/2018,Sports_celeb,@lancearmstrong,Incredible jam session @onnit today. My body has been feeling a little beat up lately (tons of… https://t.co/52LHwCv7t2 +02/28/2018,Sports_celeb,@lancearmstrong,New Stages is live with the 2018 season preview. @jbhager and I discuss what races we will be covering this year.… https://t.co/FXKrbDBuzv +02/28/2018,Sports_celeb,@lancearmstrong,Congrats to my friend and the uber talented @RyanHoliday on his new book CONSPIRACY. Great book reviews are hard to… https://t.co/d2MW4OHQ9J +02/28/2018,Sports_celeb,@lancearmstrong,.@jbhager and I return with a new Stages tomorrow. We preview the 2018 cycling season and some races we will cover. https://t.co/zrxb68wM0v +02/27/2018,Sports_celeb,@lancearmstrong,Our 24 Hours in the Old Pueblo kit is up for sale. @hincapiesports kit in both men's and women's. It will be for sa… https://t.co/sfmBLJsyuQ +02/26/2018,Sports_celeb,@lancearmstrong,New Forward is up with @miakhalifa Thank you for agreeing to discuss parts of your life that you have never done pu… https://t.co/cpJv2DEhjK +02/23/2018,Sports_celeb,@lancearmstrong,New Forward with @miakhalifa premieres on Monday. Here's a clip: https://t.co/bm4Xqi5lyE +02/23/2018,Sports_celeb,@lancearmstrong,Don’t usually tweet out press I’ve done but I thoroughly enjoyed jamming with Steve and Joe from @TheOuterLine. Sma… https://t.co/BgH0vqHTe7 +02/22/2018,Sports_celeb,@lancearmstrong,Hey y’all - Happy Margarita Day!! I get asked almost daily on how to make the world famous… https://t.co/HDUJqL9sv7 +02/20/2018,Sports_celeb,@lancearmstrong,@Unseendoc Just watched UNSEEN on plane to nyc. Speechless. Well done. +02/20/2018,Sports_celeb,@lancearmstrong,Special opportunity to tour San Quentin and talk with the guys from @TLM We taped a Forward after the tour. We talk… https://t.co/5XCNLg74Fl +02/20/2018,Sports_celeb,@lancearmstrong,"ATTENTION ALL MY FELLOW CYCLISTS 🚴‍♂️ . +••• +The sport we are so passionate about, dedicating… https://t.co/W5PXVgzUCl" +02/18/2018,Sports_celeb,@lancearmstrong,Love breaking it down with @dylancasey and @ghincapie ! @ 24 Hour Town https://t.co/zORIbIsBel +02/17/2018,Sports_celeb,@lancearmstrong,Here we go again for another @epicrides #24hop! So the pre ride was probably not the best idea… https://t.co/J434ydKxsh +02/16/2018,Sports_celeb,@lancearmstrong,"Well, after promising ourselves we’d NEVER do it again, here we go again for another @epicrides… https://t.co/gee8Rq7MB6" +02/16/2018,Sports_celeb,@lancearmstrong,A few weeks ago I was fortunate to get a tour of San Quentin prison and talk to the guys at @TLM After the tour I t… https://t.co/cENBkT4dvy +02/13/2018,Sports_celeb,@lancearmstrong,Watching the @NBCOlympics and hearing @MillerBode call the alpine skiing. He told me here ⬇️ he was gonna call it a… https://t.co/i15qysg2MU +02/12/2018,Sports_celeb,@lancearmstrong,"The Forward is up with @vanessagrigor Topical discussion about MeToo, her new book Blurred Lines and sexual consent… https://t.co/7djJCNQRDT" +02/12/2018,Sports_celeb,@lancearmstrong,In the past 10 years I’ve seen @mellowjohnnys schwag in lots of interesting places. The hits keep comin’.. https://t.co/rDBnXlV9dr +02/12/2018,Sports_celeb,@lancearmstrong,Happy birthday to the best mom ever!! Spent the weekend up in my ol’ stomping grounds.… https://t.co/wdpj9xOumh +02/09/2018,Sports_celeb,@lancearmstrong,"Coming Monday on The Forward @vanessagrigor We talk about her new book Blurred Lines: Rethinking Sex, Power & Conse… https://t.co/3JVWcVRJTv" +02/05/2018,Sports_celeb,@lancearmstrong,"A new Forward is up with @perryfarrell We talk about the time Clear Channel killed a @lollapalooza comeback, his tr… https://t.co/O2RiKn6nmm" +02/03/2018,Sports_celeb,@lancearmstrong,Coming soon a collab between @mellowjohnnys and @rapha. #Raphacustom https://t.co/GlKJigJwQ9 +02/03/2018,Sports_celeb,@lancearmstrong,Ditto! He was one of the most influential figures in American cycling. Heart of gold and will be sorely missed. RIP… https://t.co/9bHpKISy7i +02/02/2018,Sports_celeb,@lancearmstrong,Up next on The Forward is @perryfarrell Full episode comes out Monday. Thanks Perry. #theforward https://t.co/Fx3Vm5DiD9 +02/02/2018,Sports_celeb,@lancearmstrong,"Got absolutely destroyed by @john_wolf in the gym yesterday. Shoulda slept in. Nah, hell no.… https://t.co/mnhugBT5e2" +01/30/2018,Sports_celeb,@lancearmstrong,"Indeed we did! And hey, at least @WillieNelson picked up! https://t.co/zodpHYe2IA" +01/30/2018,Sports_celeb,@lancearmstrong,😂😂 https://t.co/1V0a4qZLWc +01/30/2018,Sports_celeb,@lancearmstrong,RT @PhilKeoghan: By @The_Demand_Film #Awardwinning #documentary #LeRide is back in #US theaters @CityofSaratoga #SanJose #CA #Denver @highl… +01/30/2018,Sports_celeb,@lancearmstrong,"Part two with @bryanfogel is up. We talk about China's ability to skirt the doping testing in Beijing, WADA's respo… https://t.co/10Upj4Cm2r" +01/29/2018,Sports_celeb,@lancearmstrong,"Part one of my Forward chat with @bryanfogel is up. We chat about his Oscar nominated film @IcarusNetflix, how he g… https://t.co/6QGE9R6f3L" +01/29/2018,Sports_celeb,@lancearmstrong,For those of y’all who think golf is stuffy and boring. Check this shit out - they are about to televise a LIVE threesome on @GolfChannel! +01/28/2018,Sports_celeb,@lancearmstrong,None taken AB! https://t.co/iS0ofaF4Pj +01/28/2018,Sports_celeb,@lancearmstrong,Thanks for stopping by! https://t.co/FufiSm4vSh +01/27/2018,Sports_celeb,@lancearmstrong,.@IcarusNetflix director @bryanfogel joins me Monday on The Forward. Fascinating story that we had to break into tw… https://t.co/aBYJKh35vQ +01/26/2018,Sports_celeb,@lancearmstrong,Thx @joerogan for having us. That shit was hilarious! @ Bass Concert Hall https://t.co/A5b0Ckgr3Y +01/24/2018,Sports_celeb,@lancearmstrong,RT @washingtonpost: Perspective: Cut the nonsense. Roger Clemens and Barry Bonds should be in the Hall of Fame. https://t.co/jFjkp73vfL +01/22/2018,Sports_celeb,@lancearmstrong,"My conversation with @aspenartmuseum CEO @heidizuckerman is up. We talk access to the arts, their decision to stic… https://t.co/vHi44WJrHb" +01/20/2018,Sports_celeb,@lancearmstrong,Incredible news! One of the best races of the year just got better. https://t.co/wFDn16Hz3O +01/20/2018,Sports_celeb,@lancearmstrong,@dylancasey 👍🏻👍🏻 +01/18/2018,Sports_celeb,@lancearmstrong,Classy gesture by @CoachBeardTTU and Tech. https://t.co/8xfqJ6dOvz +01/17/2018,Sports_celeb,@lancearmstrong,Hell to the Yeah. You’re a good dude JR. Pointers - no short socks and no social posts making other dudes looking b… https://t.co/2JpGvwX6F4 +01/17/2018,Sports_celeb,@lancearmstrong,RT @PETMpodcast: For y’all who are suffering from #NASCAR #NOD there’s content out there. Dale Jr was on @lancearmstrong podcast “The Forwa… +01/17/2018,Sports_celeb,@lancearmstrong,Thx J! We had fun doing the show. This is to be continued! https://t.co/JedzwXO9W1 +01/16/2018,Sports_celeb,@lancearmstrong,Lots of requests for this one. Happy to finally get @DaleJr on The Forward. We talk going from the car to the tv bo… https://t.co/OKgaYGLB0Y +01/14/2018,Sports_celeb,@lancearmstrong,Thanks Mary! https://t.co/JFW3hOzmHF +01/13/2018,Sports_celeb,@lancearmstrong,Thanks @DaleJr for coming on The Forward. Full episode on Monday. https://t.co/Elc1B8XQIB +01/10/2018,Sports_celeb,@lancearmstrong,The plan for 2018 is to video all the Forward and Stages podcasts. Here is our episode with @MillerBode https://t.co/uy5AQaGIhi +01/09/2018,Sports_celeb,@lancearmstrong,"Luke, so proud of you! I love you buddy! https://t.co/W6O2gM9cym" +01/09/2018,Sports_celeb,@lancearmstrong,Absolutely. There will be a 2 part series that’s my conversation with @bryanfogel. It will post on the STAGES chann… https://t.co/QclpG6iJ4Y +01/08/2018,Sports_celeb,@lancearmstrong,The Forward is back for 2018 and we are kicking it off with 6x Olympic medalist @MillerBode Bode was in Aspen over… https://t.co/0DHIz4VAFf +01/08/2018,Sports_celeb,@lancearmstrong,"To Isabelle, Grace, and Olivia - please watch this one thing. Love, Dad. https://t.co/cdUSx2cD5I" +01/06/2018,Sports_celeb,@lancearmstrong,Great piece Michael! And thanks Carolyn & Les for helping to create one of Austin’s crown jewels! https://t.co/ZuwNwmDofW +01/06/2018,Sports_celeb,@lancearmstrong,So there was this one night when @janesaddiction was sound checking (and covering @tompetty) in… https://t.co/TOP59WVg5T +01/06/2018,Sports_celeb,@lancearmstrong,"Tomorrow, I will be hosting a special reception and screening for the documentary @IcarusNetflix at @1Hotels in Bro… https://t.co/G1wQO2FeVy" +01/05/2018,Sports_celeb,@lancearmstrong,Thanks @jbhager and thanks to all that tuned in. Looking Forward to 2018 https://t.co/uAj8xdW4Pz +01/03/2018,Sports_celeb,@lancearmstrong,RT @THR: Exclusive: Lance Armstrong will host a reception for doping doc 'Icarus' https://t.co/XTh3NAj42s https://t.co/ePTMpgHDbE +01/02/2018,Sports_celeb,@lancearmstrong,"Dude, you ok? https://t.co/YEtfp9Fr9V" +12/27/2017,Sports_celeb,@lancearmstrong,Good jam session with @aubreymarcus today @onnit. Post Xmas and great to be back in gym. It’s… https://t.co/0mELMh9U0f +12/26/2017,Sports_celeb,@lancearmstrong,"After being asked roughly a 1000 times if I’ve seen @IcarusNetflix yet, I finally sat down to check it out. Holy he… https://t.co/1KVg6jrYdU" +12/25/2017,Sports_celeb,@lancearmstrong,Merry Christmas and Happy Holidays from all of us to all of you! Looking FORWARD to 2018! https://t.co/ncmCgbf1A6 +12/24/2017,Sports_celeb,@lancearmstrong,.@jbhager and I brought back a long time Austin tradition called Bikes for Kids. We were out yesterday distributing… https://t.co/7Jvv3e1mAB +12/22/2017,Sports_celeb,@lancearmstrong,Thanks Jeff! I’m looking forward to what 2018 brings to the show. https://t.co/Vp2Skk0whl +12/21/2017,Sports_celeb,@lancearmstrong,Research! https://t.co/FMflpox7QR +12/21/2017,Sports_celeb,@lancearmstrong,@SecondCaptains @ejwejw Meanwhile you fucking idiots have no idea what it’s like in the trenches do ya? +12/20/2017,Sports_celeb,@lancearmstrong,"RT @bethgmckenzie: Wow- huge change to the @ironmantri pro qualification for Kona in 2019. Specifically addresses equality, longevity, inj…" +12/20/2017,Sports_celeb,@lancearmstrong,"Since the Chris Froome news broke, I have heard from numerous media outlets requesting a comment. @wedusport CEO… https://t.co/XfafJPhftV" +12/20/2017,Sports_celeb,@lancearmstrong,@chontheroad @Livestrong4BAD Yep +12/20/2017,Sports_celeb,@lancearmstrong,Congrats Braden! https://t.co/EswDy9YPSl +12/20/2017,Sports_celeb,@lancearmstrong,Congrats @nakiawatson04 ! https://t.co/CPoQid2S28 +12/20/2017,Sports_celeb,@lancearmstrong,@jess @tdrobbo Congrats!! +12/20/2017,Sports_celeb,@lancearmstrong,We have a few bikes left for the Bikes for Kids drive. Nominate someone in the Austin area. Link here https://t.co/O6GysHbKtJ +12/20/2017,Sports_celeb,@lancearmstrong,I can’t wait to be 63 years old and give moronic interviews like this. Not. I also can’t wait for dipshit outlets l… https://t.co/05nriJOuQe +12/20/2017,Sports_celeb,@lancearmstrong,Our @wedusport gift guide picks for bike tires and a bike rack from @continentaltire & @SeaSucker full video… https://t.co/bz5jvKkliC +12/20/2017,Sports_celeb,@lancearmstrong,Yes. Did an episode of STAGES with @dylancasey on this. Will post ASAP. https://t.co/8HdnWKto68 +12/19/2017,Sports_celeb,@lancearmstrong,@matthewcbeaudin @TheNational @kexp Had them down for one and done but they just keep getting better. And better. And better. +12/18/2017,Sports_celeb,@lancearmstrong,Gift guide from @wedusport with our apparel picks from @hincapiesports @GORETEXna & @GiordanaCycling… https://t.co/kfbOoNWK9e +12/18/2017,Sports_celeb,@lancearmstrong,Great news! https://t.co/7L3EWaGrEL +12/18/2017,Sports_celeb,@lancearmstrong,"Hilarious conversation with comedian @natebargatze for the latest #Forward episode. We talked about Matt Lauer, Jay… https://t.co/MN4aaHLGHC" +12/17/2017,Sports_celeb,@lancearmstrong,A little sneak peek of tomorrow's Forward. My guest is comedian @natebargatze. He shares his thoughts on Vanderbilt… https://t.co/dxNQNcbszv +12/17/2017,Sports_celeb,@lancearmstrong,We put together some Holiday gift guide videos of products we are digging. Here's the first one about gadgets from… https://t.co/yfzFCcLfIQ +12/17/2017,Sports_celeb,@lancearmstrong,Well the @Westlake_Nation run has come to an end. Our Chaps lost 14 - 6 to Cy Fair @NRGParkFan… https://t.co/QGdZsrZGNU +12/16/2017,Sports_celeb,@lancearmstrong,DaveSTRONG!! https://t.co/fNBjMlXR24 +12/16/2017,Sports_celeb,@lancearmstrong,Thanks @jrart for hooking us up with your killer collab with @osgemeos and @pharrell. So dope.… https://t.co/YCI3DPVxU0 +12/15/2017,Sports_celeb,@lancearmstrong,Hey Austin @jbhager and I are bringing back Bikes for Kids this year. @scottsports has donated 20 bikes for us to d… https://t.co/wt1vWiGFE1 +12/14/2017,Sports_celeb,@lancearmstrong,"RT @sporza_koers: .@lancearmstrong komt als gast naar de Ronde van Vlaanderen + +https://t.co/r9oOPmjORP https://t.co/cXgN5KXtgu" +12/14/2017,Sports_celeb,@lancearmstrong,President Biden! https://t.co/ApitT2Oqp0 +12/13/2017,Sports_celeb,@lancearmstrong,Way to go Alabama! Let’s @BoBikesBama !! +12/11/2017,Sports_celeb,@lancearmstrong,Had a fascinating conversation with @Dakota_Meyer for the latest Forward episode. We talked about his @USMC servic… https://t.co/Zdp9zjhcgL +12/10/2017,Sports_celeb,@lancearmstrong,RT @LAontheRoad: Video homework for tomorrow's @lancearmstrong Forward episode https://t.co/QTecHBOGlF +12/10/2017,Sports_celeb,@lancearmstrong,En route to the Alamodome to watch @westlakenation vs Cibolo Steele - gonna be a great game! Doing some studying on… https://t.co/Q7BsybVEcy +12/08/2017,Sports_celeb,@lancearmstrong,I’ve been lovin’ getting back in the gym and wanted to especially thank @john_wolf and the whole… https://t.co/aufYc0Z32J +12/07/2017,Sports_celeb,@lancearmstrong,WTF?! Is it really snowing here in Austin? +12/07/2017,Sports_celeb,@lancearmstrong,Thanks to Eric over carved for sending over these cool WEDŪ and THE FORWARD PODCAST cases for my… https://t.co/paC98ZKUcm +12/06/2017,Sports_celeb,@lancearmstrong,Thanks on all fronts! See you in April. #WEDŪ https://t.co/lNO8Qsezf2 +12/06/2017,Sports_celeb,@lancearmstrong,RT @LizKreutz: Team #WEDŪ meeting at the HQ with @lancearmstrong @dylancasey @LAontheRoad @davebolch and in the computer @jbhager and @Nick… +12/05/2017,Sports_celeb,@lancearmstrong,Bi-weekly team meeting here wedusport HQ. Discussing an upcoming STAGES holiday gift guide… https://t.co/OA15XRYxKD +12/05/2017,Sports_celeb,@lancearmstrong,@Laura_Weislo @mrconde I don’t “workout” so I guess that’s the main difference +12/04/2017,Sports_celeb,@lancearmstrong,"Back with a new Forward with entrepreneur @noahkagan We talk about his employment at @facebook, starting his own co… https://t.co/NcCcMcaA30" +12/04/2017,Sports_celeb,@lancearmstrong,@mrconde I was a bit skeptical when they were first announced but the Apple Watch is incredible +12/04/2017,Sports_celeb,@lancearmstrong,"LMFAO! 😂😂 @ Old Enfield, Austin https://t.co/NGhFxOYNov" +12/04/2017,Sports_celeb,@lancearmstrong,We buy our Christmas 🎄 every year at the same spot. It’s just around the corner from our home… https://t.co/vcNX92Pq6q +12/04/2017,Sports_celeb,@lancearmstrong,We buy our Christmas 🎄 every year at the same spot. It’s just around the corner from our home… https://t.co/DDX1F0IW0V +12/02/2017,Sports_celeb,@lancearmstrong,"Immensely proud of my son Luke. What a fine young man he’s turned in to! Give it a listen, I think y’all will agree! https://t.co/YojQo8ZsPA" +12/02/2017,Sports_celeb,@lancearmstrong,Came down to South Texas to watch @luke_armstrong65 and his @westlakenation teammates win another playoff game. 70-… https://t.co/3FEz5fvdER +12/02/2017,Sports_celeb,@lancearmstrong,"""Twitter is the playground for fucking idiots"". And just like that, Noel Gallagher goes straight to the top of my w… https://t.co/oRm4zxs7qk" +12/01/2017,Sports_celeb,@lancearmstrong,Congrats Chief although Austin misses you! https://t.co/lJNDewPwKR +11/30/2017,Sports_celeb,@lancearmstrong,Morning run. Never forget. @ 9/11 Tribute Museum https://t.co/KX4syiORC3 +11/28/2017,Sports_celeb,@lancearmstrong,@eskinner @DavidWalshST Pay for journalists like this? https://t.co/lgdncuLdLq +11/27/2017,Sports_celeb,@lancearmstrong,@tobynunn @Onnit @AubreyMarcus So Dope Yo +11/24/2017,Sports_celeb,@lancearmstrong,Woot woot!! @Westlake_Nation on to the next round after beating Smithson Valley 51-31!! Go… https://t.co/HGbL3hJlRZ +11/23/2017,Sports_celeb,@lancearmstrong,"RT @TRS_tri: ""If we git that $150 million from @lancearmstrong, we all getting' a raise!"" https://t.co/r02ebLxjbf" +11/22/2017,Sports_celeb,@lancearmstrong,@mryerson I’m partial the ones @ZTejas. Eaten em for 25 yrs. +11/21/2017,Sports_celeb,@lancearmstrong,New @wedusport gloves by @jtracingusa Register for the HUNDRED by Friday to be eligible to win. Check out the video https://t.co/sQmF0Qm3Bz +11/20/2017,Sports_celeb,@lancearmstrong,RT @LAontheRoad: New feature starts on The Forward tomorrow. Send us your Survivor Stories and we will highlight a story of the week on eac… +11/20/2017,Sports_celeb,@lancearmstrong,Our girls are all grown up! Happy sweet 16 to isabelle.armstrong and grace.armstrongg! I’m so… https://t.co/JcvaG94Mgt +11/20/2017,Sports_celeb,@lancearmstrong,"Have @JoeNickPatoski on The Forward this week. Talk Dallas Cowboys, Selena, Stevie Ray Vaughan and Public Radio.… https://t.co/W1eCymgXHx" +11/16/2017,Sports_celeb,@lancearmstrong,2018 is looking to be an exciting year for WEDŪ. Thanks for blowing us up on just what the hell… https://t.co/SusW2V4i5X +11/14/2017,Sports_celeb,@lancearmstrong,"@HurleyG @UCI_cycling @DLappartient just fyi, he'd be ineligible too. Just sayin'." +11/14/2017,Sports_celeb,@lancearmstrong,"URGENT - cycling is going to need a shitload of people ASAP to manage teams, coach riders, drive in the caravan, ma… https://t.co/speLjMITVy" +11/13/2017,Sports_celeb,@lancearmstrong,"New Forward is up w @turkpipkin We talk @NobelityProject, opening for Rodney Dangerfield and his Book of the every… https://t.co/vNgpZkNKja" +11/11/2017,Sports_celeb,@lancearmstrong,So proud of my son @Luke_armstrong7 and the entire Westlake team. Undefeated! Bring on the playoffs and Go Chaps! https://t.co/zShnDyn1nx +11/11/2017,Sports_celeb,@lancearmstrong,"@Vincent_Nortier 2 thoughts - it’s depressing, and quite frankly pitiful, to watch someone be so desperate for atte… https://t.co/W0IFKnk11R" +11/10/2017,Sports_celeb,@lancearmstrong,"I️ never did like driving my car out to ride my bike... @ Bentonville, Arkansas https://t.co/XE07cs0J0d" +11/08/2017,Sports_celeb,@lancearmstrong,Sat down with my good buddy @AubreyMarcus for HIS podcast. Fantastic conversation that I think you will enjoy… https://t.co/MWq9Wplxjn +11/06/2017,Sports_celeb,@lancearmstrong,Forward is up w @PhilKeoghan of @AmazingRaceCBS We talk his film Le Ride. screening on 11/9 https://t.co/Lc8NbekAWC… https://t.co/S50JqWhSoh +11/04/2017,Sports_celeb,@lancearmstrong,"Jumped on the other side of the mic with @WheelerWalkerJr Talked music, Cancer, Willie and Merle.… https://t.co/XLVNgAMpRd" +11/02/2017,Sports_celeb,@lancearmstrong,The @mellowjohnnys Cycling Club enrollment is now open. Details here https://t.co/JKs47HZSCb +11/02/2017,Sports_celeb,@lancearmstrong,Saturday I’m heading to Nashville for the Brown Brothers Charity ride in honor of Chad William… https://t.co/SpgT7IDIek +10/30/2017,Sports_celeb,@lancearmstrong,"Co-founder of @GSDM @royspence is my Forward guest this week. We talk ads, lessons learned and Promised Land Projec… https://t.co/pxRgWaWX0k" +10/28/2017,Sports_celeb,@lancearmstrong,@maximus_hoggus I’m sure Chad Evans is a “fine man” +10/27/2017,Sports_celeb,@lancearmstrong,Going to screen the documentary Le Ride with @PhilKeoghan on 11/1 at @drafthouse Q&A with Phil after the film… https://t.co/p6VH8YrTlX +10/26/2017,Sports_celeb,@lancearmstrong,I’m in for a grand! https://t.co/xgxB8g3Wql +10/23/2017,Sports_celeb,@lancearmstrong,Latest Forward is up with @Larissa_Connors We talked about her being a bad ass mtn biker & a full time math teacher… https://t.co/XabmRTugwQ +10/22/2017,Sports_celeb,@lancearmstrong,@saundem Cc @jbhager - this is his biggest passion in life! +10/22/2017,Sports_celeb,@lancearmstrong,@antiraceradio2 @kristenworley @anthonyroberts Financial crimes? +10/20/2017,Sports_celeb,@lancearmstrong,Wassup Greenville?! Excited to be here for the @gfhincapie. Look forward to supporting the best… https://t.co/zkR3IdZ8jc +10/18/2017,Sports_celeb,@lancearmstrong,"@dylancasey @lan @ChristianVDV @ghincapie Y’all take the night shifts, I’ll handle the Le Mans start. Deal?" +06/29/2018,Sports_celeb,@tonyhawk,@CiaranDunbar @jayfrankparnell Yes +06/28/2018,Sports_celeb,@tonyhawk,Spent our day visiting a film set (rhymes with Shame Of Drones) & checking out Belfast skatepark. I sometimes get a… https://t.co/Zkdf9tYhA2 +06/26/2018,Sports_celeb,@tonyhawk,It's available on demand via @SIRIUSXM app https://t.co/B8uTISrcVQ +06/26/2018,Sports_celeb,@tonyhawk,"Thanks for the pic @ScobeyMK +(at @RAWcycles yesterday) https://t.co/yVrUOz2kC9" +06/25/2018,Sports_celeb,@tonyhawk,"RT @PBSSoCal: Legendary skateboard, and Southern California native @tonyhawk recently turned 50. To celebrate? 50 tricks that put him, and…" +06/25/2018,Sports_celeb,@tonyhawk,"Practicing my lines for Tokyo 2020 with Gav Coughlan & John O'Connor +Thanks to @RAWcycles for hosting us 🇮🇪🍀 +🎶: Wa… https://t.co/HxxI5jh2Hu" +06/22/2018,Sports_celeb,@tonyhawk,@Niall070115 You did +06/22/2018,Sports_celeb,@tonyhawk,Happy #goskateboarding [to your gate] day. You never saw this btw. https://t.co/Msw2BJxnGL +06/21/2018,Sports_celeb,@tonyhawk,@MichaelRapaport Confirmed +06/21/2018,Sports_celeb,@tonyhawk,"To clarify: my legal name is Anthony + +TSA agent checks my ID, looks at me, looks at ID, looks back at me quizzicall… https://t.co/a0pZ8HQ5GE" +06/20/2018,Sports_celeb,@tonyhawk,"Tour the new, expansive Linda Vista skatepark through the shredding of @andymacdonald: https://t.co/qy6vlI7X20 (via @RideChannel)" +06/18/2018,Sports_celeb,@tonyhawk,"""Hey dad, I ran into the gate with my car by accident. You should come out and look at it."" +Happy Dad-ambush day. https://t.co/5TJ6Poowhd" +06/16/2018,Sports_celeb,@tonyhawk,I just learned that nearly half of the US adult population has high blood pressure. Talking to your doctor & increa… https://t.co/bx37H7B3LK +06/15/2018,Sports_celeb,@tonyhawk,"Vertical pairs dancing with Shawn Hale for #birdhousesaturdays +#bladesofglory https://t.co/z8D2cvcSFM" +06/14/2018,Sports_celeb,@tonyhawk,@eddytheaxe @MonicaLewinsky I stand corrected +06/13/2018,Sports_celeb,@tonyhawk,@jeremyburge Yes! I mean... how do I see it? +06/13/2018,Sports_celeb,@tonyhawk,@airbender106 Anytime! We can plan something or apparently you can just call the airlines and ask them where I'm going next 🤨 +06/12/2018,Sports_celeb,@tonyhawk,"@BodMonAtkinson No hard feelings, I enjoyed our brief time together!" +06/12/2018,Sports_celeb,@tonyhawk,@MonicaLewinsky I haven't had that one (yet)! +06/12/2018,Sports_celeb,@tonyhawk,@BTHerman Love that place! +06/12/2018,Sports_celeb,@tonyhawk,"guy on escalator: Hey are you Tony Hawk? +me: yes +him: you still skate? +me: yes, quite often +him: but you're not tha… https://t.co/Lj1IsegSXO" +06/12/2018,Sports_celeb,@tonyhawk,"Montreal! We're coming to @jackalopefest with my vert ramp and the legendary Matt Hoffman. Info / tix: +https://t.co/3mySkPUjt3" +06/12/2018,Sports_celeb,@tonyhawk,"Thanks @colinmkennedy for digging up this clip of 6-year-old @rileyhawk666 's first kickflip +(from 411VM, Nov 1999) https://t.co/Dg2beq6DVU" +06/11/2018,Sports_celeb,@tonyhawk,"I was honored to be the 100th guest of @thenineclubshow! +Watch all 146 minutes of our deep dive interview if you da… https://t.co/pRxcaqaqa8" +06/11/2018,Sports_celeb,@tonyhawk,Detroit! I just hid my used skateboard behind the trash can in the lower right of this photo. Go now and reply with… https://t.co/gzjZ8ezq2z +06/09/2018,Sports_celeb,@tonyhawk,"Favorite moment of our Detroit demo today: Dan Mancina's warmup 50/50 (yes, he's blind) https://t.co/zzk64zQGu8" +06/08/2018,Sports_celeb,@tonyhawk,"Thank you Anthony Bourdain for your spirit of adventure, your appreciation of diverse cultures, your sense of value… https://t.co/rdJ1afCpQn" +06/07/2018,Sports_celeb,@tonyhawk,July 18 in Minneapolis: a red carpet event & benefit for the children of bmx icons Dave Mirra & Kevin Robinson. Auc… https://t.co/I7h6Qw48cl +06/06/2018,Sports_celeb,@tonyhawk,"It's so rad in The D +(@rileyhawk666 @aaronjawshomoki @SamarriaBrevard & Clive Dixon will be there too) https://t.co/mOR6haFRe4" +06/05/2018,Sports_celeb,@tonyhawk,"My brief career in ""park"" competition: Coastal Carnage, 2011 +McTwist The Shark is the new Jump The Shark https://t.co/kEfZbWFOhB" +06/03/2018,Sports_celeb,@tonyhawk,"Just left Birdseye Kitchen and I realized it might be the only place to get authentic Thai, Lao & Vietnamese cuisin… https://t.co/F3kGjqlTNF" +06/03/2018,Sports_celeb,@tonyhawk,@thephysicsgirl @rodneymullen You did great! Would love to have you explain vert skating in scientific terms... +06/03/2018,Sports_celeb,@tonyhawk,Watch @rodneymullen break down the science of an Impossible with help from @thephysicsgirl : https://t.co/7WFmrCKHhU +06/03/2018,Sports_celeb,@tonyhawk,It's a challenge raising boys in an era when @realjknoxville does his own stunts- and breaks his eye socket - for… https://t.co/vwkWYdjDxq +06/01/2018,Sports_celeb,@tonyhawk,"Happy 50th to the incomparable Mark Gonzales, a true pioneer of modern skating. Here we are a couple days ago in NY… https://t.co/dDvQhE8bUz" +06/01/2018,Sports_celeb,@tonyhawk,Detroit! Come watch this crew rip on June 9 while I attempt to rekindle my street skills. Thanks to Library Street… https://t.co/qd0KwgNxhG +05/31/2018,Sports_celeb,@tonyhawk,"Caught up with @nealthompson to share stories about the challenges of raising ""free-thinking"" boys who love skating… https://t.co/UCcP24c59e" +05/30/2018,Sports_celeb,@tonyhawk,@MaddieMaeDavis @RagebertVargas I was also joking. I'm old and I embrace it. But how much you wanna make a bet I ca… https://t.co/XJroKvlc6p +05/30/2018,Sports_celeb,@tonyhawk,"But... these ARE my glory days! +(I am a middle-aged dad though) https://t.co/Jb3sQ8KqSd" +05/30/2018,Sports_celeb,@tonyhawk,"I forgot how much fun it is to skate with #markgonzales. Here we are at Chelsea Piers this morning... +Our combined… https://t.co/iRQbFpJ90k" +05/24/2018,Sports_celeb,@tonyhawk,Special guest #JonHamm joins us for Demolition Radio this Saturday (5/26) 12p ET / 9a PT on @SiriusXM channel 103 -… https://t.co/Tpvl4OGg8G +05/24/2018,Sports_celeb,@tonyhawk,One hour left to bid on my skateboard used in the #50tricksat50 video: https://t.co/M0Gt1v5zeP +05/24/2018,Sports_celeb,@tonyhawk,"I got Funko Pop'd! +More info: https://t.co/FJdsMHqjBJ https://t.co/hLPQKwO96q" +05/23/2018,Sports_celeb,@tonyhawk,"June 2009: I went to the White House for Father's Day event & skated around a bit. Some pundits got upset, saying i… https://t.co/F8QPJqmx6z" +05/21/2018,Sports_celeb,@tonyhawk,"My board from #50tricksat50 is still available, portion of proceeds go to @THF . You can probably feel my exhaustio… https://t.co/AUbqcyba3q" +05/19/2018,Sports_celeb,@tonyhawk,The @rileyhawk666 x @myMotorhead collab by @LakaiLTD is now available at https://t.co/3LiS5TUaDy ♠ https://t.co/Dl7M0ONHtT +05/18/2018,Sports_celeb,@tonyhawk,"We got a sneak preview of @knottsberryfarm's new ""Hangtime"" coaster last night. It was like dropping in on over-ver… https://t.co/iy28je9MZ9" +05/18/2018,Sports_celeb,@tonyhawk,"Spoiler alert: my #50tricksat50 video was not shot all in one day... +I'm auctioning one of the two skateboards I us… https://t.co/S8dpcVZGsL" +05/17/2018,Sports_celeb,@tonyhawk,Getting so(rta) pitted at #wslsurfranch alongside Eddie Vedder @kellyslater & @shaunwhite. Thanks to @wsl &… https://t.co/eoNj61MrQU +05/17/2018,Sports_celeb,@tonyhawk,"Showing off my new teeth in 1982 +(they didn't last long) https://t.co/eeL1vYVL2w" +05/17/2018,Sports_celeb,@tonyhawk,I still think this all might have been a dream... https://t.co/cl2ylXTRGw +05/15/2018,Sports_celeb,@tonyhawk,"Thanks to @_TWDY_ for this 10th anniversary show to benefit @THF! +Details: @BellyUpMusic, June 18. +GA tickets sta… https://t.co/tw2UfSW524" +05/14/2018,Sports_celeb,@tonyhawk,"It was indeed, and your cake was the icing on the... er, you know what I mean. https://t.co/GswIa7d1Ed" +05/14/2018,Sports_celeb,@tonyhawk,"Thanks to @skateistan and and the kids at their Johannesburg school for this sweet message, and congratulations on… https://t.co/H7eLLZmGMx" +05/14/2018,Sports_celeb,@tonyhawk,"If you watched my #50tricksat50 video and noticed the 720 mishap, here's what [literally] went down that day. You'd… https://t.co/HRnJ9ajMkk" +05/13/2018,Sports_celeb,@tonyhawk,My mom taught me to believe in myself & the value of perseverance. She was a teacher for decades & received her doc… https://t.co/2hNDTkDTYM +05/12/2018,Sports_celeb,@tonyhawk,Thanks for documenting this once-in-a-lifetime experience yesterday @toddglaser! Getting my first backside barrel w… https://t.co/Fx4kgzW0ca +05/12/2018,Sports_celeb,@tonyhawk,"Here’s that #50tricksat50 video thing I promised. Thanks for all of the support over the decades, but I’m not done… https://t.co/JcAe2mPfoB" +05/12/2018,Sports_celeb,@tonyhawk,@withwhatever @RideChannel You know it +05/12/2018,Sports_celeb,@tonyhawk,My early birthday gift: getting #sopitted with this crew. ⚙💦🏄 @kswaveco @wsl #evenflow 🎂 https://t.co/ukcJQWei0f +05/11/2018,Sports_celeb,@tonyhawk,"I'm almost 50. I never imagined being able to skate at this age, or that anyone would still care if I do. To celebr… https://t.co/hNEHoCqcb3" +05/10/2018,Sports_celeb,@tonyhawk,And to think I was YOUR stunt double... Why didn't you ever teach me this? https://t.co/otoudr3yrV +05/10/2018,Sports_celeb,@tonyhawk,@jazzblasterr @plastcfl0wers Happy Birthday! Sorry for the delay; I wasn't on Twitter yesterday (for shame) +05/10/2018,Sports_celeb,@tonyhawk,"RT @TimMarcin: I talked with @tonyhawk about turning 50, his career in skating and being on The Simpsons. (Oh, and also fans wanting to sha…" +05/08/2018,Sports_celeb,@tonyhawk,@that1_shyguy This would be me Tweeting at you +05/06/2018,Sports_celeb,@tonyhawk,"@angeInews Yes, as long as you proofread it." +05/06/2018,Sports_celeb,@tonyhawk,"@skrongmeat_ HAPPY BIRTHDAY! 🎈🎉🎂 +(I expect the same next weekend)" +05/05/2018,Sports_celeb,@tonyhawk,"Here’s a trick that I was unable to recreate in my upcoming #50tricksat50 video: fast-plant McTwist. +Edit: here’s… https://t.co/0Q2HtJkDJe" +05/04/2018,Sports_celeb,@tonyhawk,Not sure how we got all these A-Listers to come on Demolition Radio recently but I’m not complaining. Hear our inte… https://t.co/rlbgWJhG2S +05/03/2018,Sports_celeb,@tonyhawk,I’ve been busy lately documenting 50 tricks that I’ve developed over the years for a new video. It’s been exhaustin… https://t.co/B2nyT6PcnG +04/30/2018,Sports_celeb,@tonyhawk,Today we brought supporters of @THF to Hilltop Skatepark to show them one of the 588 parks that we've helped create… https://t.co/DmgpvJtENu +04/28/2018,Sports_celeb,@tonyhawk,"Took this headshot in 1986 and never felt the need to update it. +📷: @jgrantbrittain https://t.co/bZjMx8XZmd" +04/27/2018,Sports_celeb,@tonyhawk,Hear my Demolition Radio interview with masterful chef @MVoltaggio now: @SIRIUSXM channel 103 (on demand)… https://t.co/Qr6C2Mdrel +04/27/2018,Sports_celeb,@tonyhawk,RT @VG247: We spoke to @tonyhawk and Neversoft about the fascinating story behind the creation of Tony Hawk's Pro Skater. https://t.co/eYVw… +04/26/2018,Sports_celeb,@tonyhawk,kinda jealous of my son's collab... https://t.co/J6A6IAXAYX +04/26/2018,Sports_celeb,@tonyhawk,There is really nobody more qualified... https://t.co/y0rvZw6LDV +04/26/2018,Sports_celeb,@tonyhawk,"When @WayneBrady says kickflip, you better kickflip. +Primo anxiety level: 📈 +(from @cwwhoseline) https://t.co/hXJWBv8XHz" +04/25/2018,Sports_celeb,@tonyhawk,This is one of the best films of 2018. Go see it ASAP. https://t.co/6ADZSudREF +04/25/2018,Sports_celeb,@tonyhawk,This version of @Millencolin’s “No Cigar” by @AdamFrenchUK is the acoustic cover that THPS fans needed in 2018: https://t.co/C24X5ovHEg +04/25/2018,Sports_celeb,@tonyhawk,Hear a new Demolition Radio this Saturday April 28th at Noon ET / 9am PT featuring the prolific @JuddApatow on FACT… https://t.co/2neDRbDG8B +04/24/2018,Sports_celeb,@tonyhawk,The moving documentary @MindingGapFilm about three skaters from Illinois escaping their volatile families is playin… https://t.co/y3LvsTGvQ3 +04/24/2018,Sports_celeb,@tonyhawk,"RT @LagunaBeachUSD: Check out this video @tonyhawk and our friends at @LagunaBeachPD put together to launch the anti-bullying campaign, It…" +04/23/2018,Sports_celeb,@tonyhawk,"I sat down with @ArianFoster recently for his ""Now What"" Podcast and we had a blast: +https://t.co/vzonxIVmPi +Thanks for including me!" +04/21/2018,Sports_celeb,@tonyhawk,"Thanks for all the laughs, generosity and heartfelt support, @VerneTroyer; I will always be a big fan, and it was a… https://t.co/20PPhPUhv6" +04/21/2018,Sports_celeb,@tonyhawk,June 18 at @BellyUpMusic! https://t.co/Jtv1xvTN4N +04/21/2018,Sports_celeb,@tonyhawk,"Nearly 30 years after the original #HELLofaParadise miniramp event in Hawaii, @thrashermag has rebuilt the ramp on… https://t.co/XUQLgw0hlq" +04/20/2018,Sports_celeb,@tonyhawk,"Hear @Lizziearmanto muse about the Olympics, being a reluctant role model and teaching girls in India to skate on t… https://t.co/Rq4TyAZXlO" +04/20/2018,Sports_celeb,@tonyhawk,Alison Moyet killing the mistaken identity game: https://t.co/2bDxNoAt1i +04/20/2018,Sports_celeb,@tonyhawk,"Pizzey Park, Gold Coast, 1989 #straya +📷:? https://t.co/Q3M4Na4MFm" +04/18/2018,Sports_celeb,@tonyhawk,Thanks for the unforgettable dinner last night @bflay @gatonyc1 https://t.co/mMG9oWy952 +04/17/2018,Sports_celeb,@tonyhawk,Update: I was found 10 mins later (check Insta story) +04/17/2018,Sports_celeb,@tonyhawk,I'm currently skating the streets of NYC on my way to a meeting. First person to see me and ask for my skateboard c… https://t.co/H5Wb7k9lle +04/17/2018,Sports_celeb,@tonyhawk,"My television debut: as ""Skateboard Johnny"" on Captain Kangaroo (1981) +This song still haunts me btw https://t.co/G3rvnqLazo" +04/16/2018,Sports_celeb,@tonyhawk,A clean-ish 900 (at @WoodwardCamp during ESPN Gigantic Skatepark Tour) with moral support from @buckylasek &… https://t.co/9nByB8gn2W +04/16/2018,Sports_celeb,@tonyhawk,"Woman on plane retrieving her luggage in the overhead: +""Who's skateboard is this? It's blocking my bag"" +me: that's… https://t.co/C0D92hPJVh" +04/15/2018,Sports_celeb,@tonyhawk,Thanks @MotoAmerica1 for hosting our synchronized skating today. https://t.co/zetMFv8oWK +04/14/2018,Sports_celeb,@tonyhawk,"Just experienced 160mph on a motorcycle thanks to @ChrisUlrich18 & @MotoAmerica1... +best rollercoaster ride ever.… https://t.co/iToCoIYcpZ" +04/13/2018,Sports_celeb,@tonyhawk,See you soon ATL! We are coming with an epic vert crew. https://t.co/DkfwrE05gb +04/13/2018,Sports_celeb,@tonyhawk,I have seen the devastating effects of dementia on my mom so I cannot stress enough the importance of supporting… https://t.co/inAVcbGjwv +04/12/2018,Sports_celeb,@tonyhawk,"me: polo, anyone? +horse: nah https://t.co/Sn5bMdXAsx" +04/12/2018,Sports_celeb,@tonyhawk,Happy 10th anniversary @skateistan! Thank you for empowering youth in the most challenged areas through skateboardi… https://t.co/d2i1L088YL +04/10/2018,Sports_celeb,@tonyhawk,"Jump ramping on 53rd Street for +The Late Show with David Letterman (2003) https://t.co/vFBBh1vMK4" +04/10/2018,Sports_celeb,@tonyhawk,ATL on Sat! https://t.co/3QI7K7vwEg +04/09/2018,Sports_celeb,@tonyhawk,A short profile on [then] 7-year-old @rileyhawk666 from ESPN Gigantic Skatepark Tour 2000 feat. @buckylasek… https://t.co/SuPJhqd7Hr +04/09/2018,Sports_celeb,@tonyhawk,"We won! (according to @nytimes) +https://t.co/eYfNg4EsIv +...but I still think we need more skateparks across the globe." +04/06/2018,Sports_celeb,@tonyhawk,"Highly recommended if you're into good, live music... https://t.co/wmdhsHgVqX" +04/06/2018,Sports_celeb,@tonyhawk,Back when Tommy Carroll taught me Roast Beef axle stalls and then he removed his eyes so I could get a closer look.… https://t.co/EmvjX8ElwR +04/06/2018,Sports_celeb,@tonyhawk,RT @MotoAmerica1: What's up #Atlanta?! @tonyhawk will be joining us next week for the @suzukicycles Championship at @RoadAtlanta. He'll per… +04/06/2018,Sports_celeb,@tonyhawk,"I am beyond thrilled to bring this legendary crew: @andymacdonald Elliot Sloan, Kevin Staab, @jordynbarratt & bmx i… https://t.co/hZj7vx3C5o" +04/05/2018,Sports_celeb,@tonyhawk,We found the perfect date night movie (depending on your date). #aquietplace is SO good btw. Congrats… https://t.co/OqOGJxTRje +04/04/2018,Sports_celeb,@tonyhawk,@briamgilbert Thanks! +04/04/2018,Sports_celeb,@tonyhawk,Quick session at Street Dome with @corbinharris Clint Walker & @MikeEscamilla on our way through Denmark during… https://t.co/9JvvJUDZQh +04/01/2018,Sports_celeb,@tonyhawk,RT @Beats1: Mike D welcomes skate legend @tonyhawk to the Echo Chamber to talk about music that has influenced his life. This is a must lis… +04/01/2018,Sports_celeb,@tonyhawk,"Some pics from our recent adventures in Iceland +(my kids took the best ones) https://t.co/C0qV3frzUY" +04/01/2018,Sports_celeb,@tonyhawk,"@niallstaines That’s my “international” collection area. Right above are decks from Australia, South Africa and Mexico. Thanks again" +03/31/2018,Sports_celeb,@tonyhawk,"I'll be on The Echo Chamber with Mike D (Beats 1 Radio) today at noon pacific, 3pm Eastern. Hear us [literally] wax… https://t.co/0CQprwDtxv" +03/29/2018,Sports_celeb,@tonyhawk,"Here's a 25% discount code at https://t.co/3LiS5TUaDy (good now through 3/31): use the code ""Rileysdad18"" when chec… https://t.co/a4ULqoTECy" +03/26/2018,Sports_celeb,@tonyhawk,"Yesterday we said goodbye to our dear friend Jen, who left behind a legacy of love and light in the form of three b… https://t.co/yuhyd5798p" +03/23/2018,Sports_celeb,@tonyhawk,"At my gate, waiting for a flight: +Guy with 8x10's & pen approaches, asks me to sign them +Me: How did you get past s… https://t.co/zN5l9MvgKQ" +03/23/2018,Sports_celeb,@tonyhawk,"Cool story... I mean, my story was actually cool but you missed it. https://t.co/TlGOrqTp5i" +03/23/2018,Sports_celeb,@tonyhawk,"Feel good flight of the summer +(with @latestQOTSA) https://t.co/O7PXN3WLoW" +03/23/2018,Sports_celeb,@tonyhawk,There was a time in skateboarding when making eye contact with a photographer was a thing. I'm guessing this was ta… https://t.co/wTmpBMIL0q +03/21/2018,Sports_celeb,@tonyhawk,This was the scariest - and most challenging - doubles trick @andymacdonald & I have done. And I never want to do i… https://t.co/zg2iJll6UJ +03/19/2018,Sports_celeb,@tonyhawk,"Calling my dad for a ride home from DMSR skatepark in 1982. +He probably wasn't home from the look on my face. This… https://t.co/swqCHmY5vo" +03/16/2018,Sports_celeb,@tonyhawk,"Thanks for the invite @MailChimp! +Best (literal) board room ever... https://t.co/if5HK1cMVV" +03/15/2018,Sports_celeb,@tonyhawk,"Hey now, wooo look at that... Thomas Middleditch of @SiliconHBO +will be on Demolition Radio this Saturday -… https://t.co/nzNeCREeW3" +03/12/2018,Sports_celeb,@tonyhawk,"Lien air, Palmdale, 1981 +Pretty sure I was trying to make eye contact with Neil but the face was probably unintenti… https://t.co/V5VTY1qOFS" +03/12/2018,Sports_celeb,@tonyhawk,Please consider voting for Sky Brown as #LaureusSportingMoment of the Month. She already has my vote for obvious re… https://t.co/61qVzsK2K1 +03/12/2018,Sports_celeb,@tonyhawk,"If we can get bungee jumping back in X Games, the cycle will be complete. https://t.co/N9jYk8mLpn" +03/11/2018,Sports_celeb,@tonyhawk,"I was, and it was excellent. +Believe the hype. https://t.co/hrTqbH3x2j" +03/09/2018,Sports_celeb,@tonyhawk,"This is the ultimate example on how NOT to drop in on vert, shown in glorious 4k slow mo. Kudos to Dan. https://t.co/fz02FgFpRJ" +03/08/2018,Sports_celeb,@tonyhawk,Thanks Summer! https://t.co/d63BrRLEpl +03/08/2018,Sports_celeb,@tonyhawk,Tonight's demo playlist (so you can be there with us in spirit): https://t.co/tQFGK7wdgQ +03/08/2018,Sports_celeb,@tonyhawk,I came to #X4Summit18 in hopes of getting a pic with @Lin_Manuel... and I was not throwing away my shot. https://t.co/spfVS3Xbf4 +03/08/2018,Sports_celeb,@tonyhawk,"Congratulations to Monica Acedo from Mexico City, winner of the @AdobeStudents #board4better contest! +Thanks for c… https://t.co/BjA2TCdOCg" +03/03/2018,Sports_celeb,@tonyhawk,"This was taken last week... or 30 years ago; I can’t remember any more, but I’m guessing 1988. +Of note: Stubbies, C… https://t.co/yQuRc2dGXf" +03/02/2018,Sports_celeb,@tonyhawk,Seeing @lizziearmanto & Atita Verghese teaching girls to skate in India is what it’s all about. https://t.co/coXBHtfacK +03/02/2018,Sports_celeb,@tonyhawk,Hear my interview with the talented & prolific Alison Mosshart of @TheKills on Demolition Radio this Saturday at No… https://t.co/dpDq9THZhc +03/01/2018,Sports_celeb,@tonyhawk,"Great Falls MT 2006 +(Secret Skatepark Tour) --> Hollywood, CA 2018 +(Adaptation x Maxfield) +photos:… https://t.co/HaWr9QNDgQ" +02/28/2018,Sports_celeb,@tonyhawk,"Intel commercial from 2005 @JohnCleese and @Seal. If you think it's weird that we're all sitting in laps, it was ev… https://t.co/dU6vyawwMZ" +02/28/2018,Sports_celeb,@tonyhawk,I don't normally ask for such things but our dear friends are going through the hardest time imaginable. Their swee… https://t.co/3wzfX14iuf +02/28/2018,Sports_celeb,@tonyhawk,To clear up a few things about THPS: I worked closely with Neversoft on our series to provide ideas & authenticity… https://t.co/1hBFhszliy +02/27/2018,Sports_celeb,@tonyhawk,@littleseizurez You have no idea... +02/26/2018,Sports_celeb,@tonyhawk,@Dan_Brenkert @BlakeOhBeKay I agree; it was glorious +02/26/2018,Sports_celeb,@tonyhawk,"To anyone asking me to 'remaster"" old games, or complaining about THPS servers being down: Activision owns the THPS… https://t.co/ONRSAk4pA5" +02/26/2018,Sports_celeb,@tonyhawk,"When things get hot, cool is all you got... 1985 Mountain Dew ad feat. #rayunderhill and me doing it Country Cool.… https://t.co/1aNk8qfRnx" +02/26/2018,Sports_celeb,@tonyhawk,Me at the end of the weekend https://t.co/PnzcssvtAc +02/24/2018,Sports_celeb,@tonyhawk,"@NathanLazarus3 @THF You saved the day! Glad to see you're doing so well. +FYI - I actually made it to Estonia a fe… https://t.co/9EKIBEV7Sg" +02/24/2018,Sports_celeb,@tonyhawk,"Back when @NathanLazarus3 helped win $175k for @THF on Are You Smarter Than a Fifth Grader? +...and then we named a… https://t.co/NicmiSbDn9" +02/24/2018,Sports_celeb,@tonyhawk,"@klbs88 Very cool, thank you!" +02/23/2018,Sports_celeb,@tonyhawk,"My stint as Lionel @damustacheman in the Loiter Squad Brigade +(feat. @tylerthecreator @ChrisPontius Taco Jasper &… https://t.co/dI3lOz3h0I" +02/20/2018,Sports_celeb,@tonyhawk,The skateboard I used at Bondi #bowlarama last weekend is now on @eBay if anyone is interested. Warning: the trucks… https://t.co/BdeqezS8ZO +02/20/2018,Sports_celeb,@tonyhawk,"I don’t want accolades; I just want to join this crew if they'll accept me + https://t.co/immzPDc7nM +(via @TimeOutLondon)" +02/20/2018,Sports_celeb,@tonyhawk,I just got back from Oz but @rileyhawk666 is heading there tomorrow for a short PETYR tour. Catch them at one of th… https://t.co/iJaTdosfCP +02/19/2018,Sports_celeb,@tonyhawk,"New and improved skateboard emoji. I sent @jeremyburge & @mindfad a photo of my actual board, so I'll take the blam… https://t.co/bVfKCBYpLO" +02/19/2018,Sports_celeb,@tonyhawk,The future is now: some clips of the other three winners of Bondi @bowl_a_rama: Tate Carew (juniors) @sabrenorris (… https://t.co/FAkBBqXjpt +02/17/2018,Sports_celeb,@tonyhawk,Bondi @BOWL_A_RAMA finals are today... so these stands will look very different this afternoon. You can watch live… https://t.co/3TdVxL8gaR +02/17/2018,Sports_celeb,@tonyhawk,Thanks for the aquatic hospitality! #ilovesydney https://t.co/695IrsHVBH +02/16/2018,Sports_celeb,@tonyhawk,The early bird gets the Madonna. Here I am warming up this morning for @BOWL_A_RAMA on Sunday. I promise to do more… https://t.co/LgaRk98uVP +02/14/2018,Sports_celeb,@tonyhawk,"How I made my 2nd million: +sitting for hours on end. +Thanks @united https://t.co/mkKVN1VQF8" +02/13/2018,Sports_celeb,@tonyhawk,Everything you wanted to know about a (the?) skateboard emoji but were too self-conscious to ask: https://t.co/Xycvy8941e +02/13/2018,Sports_celeb,@tonyhawk,"Frontside air over Jaws' crailslide earlier today. In other words: +I jumped the shark. GET IT?!?! #skaterdadjoke https://t.co/hABtjn4Xss" +02/13/2018,Sports_celeb,@tonyhawk,Skateboard terminology in #Tokyo2020 might have to be censored... https://t.co/Hza3SDGCZy +02/12/2018,Sports_celeb,@tonyhawk,One minute of goodies from my #birdhousesaturdays segment. Some of these tricks took 2-3 days of torment just to ma… https://t.co/nlF3nBCybQ +02/12/2018,Sports_celeb,@tonyhawk,"If you are watching Olympics without @Lesdoggg's commentary, then you're missing out on the true spirit of the games." +02/11/2018,Sports_celeb,@tonyhawk,My episode of Impact Theory with @TomBilyeu: https://t.co/8iAJM6zESz +02/11/2018,Sports_celeb,@tonyhawk,I have the sickest combos in this. https://t.co/UASmJTIEsF +02/10/2018,Sports_celeb,@tonyhawk,"The vert crew came out of the [literal] woodwork tonight for a screening of #EARLYMAN. +If you're a fan of Wallace… https://t.co/s5RPjSy4Kr" +02/09/2018,Sports_celeb,@tonyhawk,"Good to catch up with this crew last night. Congrats Bam & Nikki! +📷: @ryanhalub https://t.co/YeqI6Y2JEa" +02/09/2018,Sports_celeb,@tonyhawk,"My brief stint on Million Dollar Password (2008). I almost got Lynn to 50k but blew it on clues for ""Drugstore"" https://t.co/6rFzxehTKg" +02/08/2018,Sports_celeb,@tonyhawk,Hoping to help bring the skateboard emoji closer to 2018 than 1985... https://t.co/TIWWbGk1i2 +02/08/2018,Sports_celeb,@tonyhawk,"This was a blast, even though it took a few more tries than I anticipated. https://t.co/Gq6kC78hw8" +02/07/2018,Sports_celeb,@tonyhawk,This was only true in December. https://t.co/5cVqldKzZB +02/07/2018,Sports_celeb,@tonyhawk,"Bucky @buckylasek: “hey Jordyn, if Tony & I make Mctwists, then you gotta make that back lip you’ve been trying.”… https://t.co/ZU7MEKyftS" +02/05/2018,Sports_celeb,@tonyhawk,"NSA San Jose Miniramp Jam, 1991 +Squatting on a mini was my true crossover talent. #ponyhawk https://t.co/YuYRLjqrQE" +02/05/2018,Sports_celeb,@tonyhawk,"Thank you Scott Oster for the totally tubular session today. This was my version of a touchdown, btw. https://t.co/e1j4GBeufC" +02/03/2018,Sports_celeb,@tonyhawk,Bondi Brigade (as we prepare for @BOWL_A_RAMA): me @MikeMcGill_ Staab & @buckylasek yesterday https://t.co/XNzv5tD82I +02/02/2018,Sports_celeb,@tonyhawk,I'll be speaking at @Qualtrics #X4summit18 in Salt Lake City on March 8 followed by a vert demo that night. Join us… https://t.co/6LFiecr2ym +02/02/2018,Sports_celeb,@tonyhawk,"Focusing a board with my skull thanks to @CharlieOconnel & @MrJerryOC (The New Guy, 2002) https://t.co/Pp8CiNF7OF" +01/30/2018,Sports_celeb,@tonyhawk,"Oasis, 1979: ""ollie to hang-up"" which is now more appropriately known as a Disaster. +Also: Mr. Bill shirt https://t.co/YiK0dm5rKI" +01/28/2018,Sports_celeb,@tonyhawk,@realfriendsband I live in San Diego but hit me up if you're in the area +01/28/2018,Sports_celeb,@tonyhawk,"It was a blast hanging out with families from San Diego’s Ronald McDonald House. Having seen their work many times,… https://t.co/bed6FExbkS" +01/28/2018,Sports_celeb,@tonyhawk,@chrislivingstn Thanks for filling up my Gravel bags! +01/27/2018,Sports_celeb,@tonyhawk,"Happy Birthday @Lizziearmanto !!! +You can always count on our full support +📷: @sammullerpics https://t.co/HmaZYixPmS" +01/26/2018,Sports_celeb,@tonyhawk,"Just when I thought I might get the job commentating #Tokyo2020, this guy comes along and nails it. +(via… https://t.co/Pu9Ej8e7r2" +01/24/2018,Sports_celeb,@tonyhawk,A clip from back when I lost millions in endorsements for my Homie https://t.co/sr5rPwyk6P +01/23/2018,Sports_celeb,@tonyhawk,RT @ChineseTheatres: .@OriginalFunko founder Mike Becker and @TonyHawk at tonight’s Making Fun premiere. https://t.co/QDQIqsIJqm +01/22/2018,Sports_celeb,@tonyhawk,"My collaboration ""Hugman"" with @NathanSawaya is now on display in DTLA (if you can find it). Available for auction… https://t.co/CirdYowA1z" +01/21/2018,Sports_celeb,@tonyhawk,Going with the Flow(rider). This feels like skimming... until you fall & go through the rinse cycle https://t.co/9CtWFvymT5 +01/18/2018,Sports_celeb,@tonyhawk,"New year, new trick, same me https://t.co/A8QxaLlZ5x" +01/17/2018,Sports_celeb,@tonyhawk,Bird Men? https://t.co/wDNbcz6SS7 +01/17/2018,Sports_celeb,@tonyhawk,"It's great - and validating - to see these action sports stars nominated for @LaureusSport Awards among all the ""ma… https://t.co/1sVrk7A9tj" +01/16/2018,Sports_celeb,@tonyhawk,"RT @tunein: Skateboarding legend @TonyHawk opens up about his rise to stardom, building his business @Birdhouse and finding success in the…" +01/16/2018,Sports_celeb,@tonyhawk,"The 2018 Bondi @BOWL_A_RAMA is only one month away. +As The Dude says: ""I'll be there, man"" +Get tickets now so you c… https://t.co/TVLp8Fxb4i" +01/15/2018,Sports_celeb,@tonyhawk,"Current mood: shredding gnar +@MammothMountain https://t.co/B80mXi7FTR" +01/13/2018,Sports_celeb,@tonyhawk,New fav skater: Ruan Silva https://t.co/ED0ZoHpyjk +01/10/2018,Sports_celeb,@tonyhawk,"1997 Munster World Championships, Germany. Looking back now, this is probably the best I ever skated in competition… https://t.co/IIkMM7jE6U" +01/10/2018,Sports_celeb,@tonyhawk,"We got a brand new rose in town! +This homage of Ben, Clive, Lizzie & Jaws was originally shot for a @birdhouse ad,… https://t.co/KnNhaRDIyh" +01/09/2018,Sports_celeb,@tonyhawk,"SATURDAY at 3pm ET: hear @samjones of @OffCameraShow on Demolition Radio. He’s got great stories of perseverance, t… https://t.co/yyWFQinUYx" +01/09/2018,Sports_celeb,@tonyhawk,Thanks for the invite @Lefsetz! https://t.co/5d8IVPqCvz +06/29/2018,Sports_celeb,@RyanSheckler,💥 https://t.co/jEx6mVG8lZ +06/28/2018,Sports_celeb,@RyanSheckler,"RT @etnies: The Marana +NEW Summer colorways have arrived! +https://t.co/yWyd9bN66s https://t.co/WgyH4PQwrr" +06/27/2018,Sports_celeb,@RyanSheckler,Stoked how these turned out! New @ethika & @PlanBofficial decks available now on https://t.co/5u1SFV9I0y. https://t.co/8f5pHm9rt8 +06/22/2018,Sports_celeb,@RyanSheckler,"Beyond hyped to be skating again, still a long road but the progress is daily! The park is 👌🏻 @scsandlot 🎥… https://t.co/eCkFUX2b47" +06/21/2018,Sports_celeb,@RyanSheckler,"A little late on this today, but since it's the longest day of the year you still have time. Get out there & go SKA… https://t.co/L9TWLwqjC1" +06/18/2018,Sports_celeb,@RyanSheckler,👊 https://t.co/U0mjKBOyvm +06/17/2018,Sports_celeb,@RyanSheckler,Happy Father's Day @Poppa_Shecks ❤️ I love you dad and I am so thankful and blessed to have you! https://t.co/kwTl5RWFXp +06/14/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung @Fgustavoskt doubles at the @scsandlot 📽 @RyanSheckler #skateboarding #felipegustavo #trevormcclung #Pla… +06/12/2018,Sports_celeb,@RyanSheckler,This was a fun one! #etniesALBULM https://t.co/oW0V9qIIRY +06/11/2018,Sports_celeb,@RyanSheckler,Thank you to my boys! Had an incredible 26 hours at the @Palms 👌🏻 I love the new look and feel so much! We will be… https://t.co/61gW1ttHkv +06/09/2018,Sports_celeb,@RyanSheckler,Proud of this kid! 👊 https://t.co/A0UR1bPikq +06/07/2018,Sports_celeb,@RyanSheckler,#etniesALBUM https://t.co/32PW7sDVZA +06/05/2018,Sports_celeb,@RyanSheckler,Last call! 3 hours left #etniesalbum live https://t.co/rSmDHx4IwN https://t.co/IFogWv8rU9 +06/04/2018,Sports_celeb,@RyanSheckler,💥#etniesalbum video part available worldwide till midnight PST - Live 👉 https://t.co/rSmDHx4IwN https://t.co/dQJ6aw9EpA +06/04/2018,Sports_celeb,@RyanSheckler,Live till midnight tonight! #etniesalbum my full part with David Reyes. 👉 https://t.co/7MENQUnTmu https://t.co/Xb0s6GfoTP +06/04/2018,Sports_celeb,@RyanSheckler,#etniesalbum full video part with my dude @DavidReyes303 watch till midnight tonight! —> https://t.co/7MENQUnTmu https://t.co/1nsi25cc04 +06/04/2018,Sports_celeb,@RyanSheckler,What a great day! https://t.co/21FxUPwaEC +06/01/2018,Sports_celeb,@RyanSheckler,#FBF with @TheRock! 👍 https://t.co/cfI14WlgqE +05/31/2018,Sports_celeb,@RyanSheckler,That feeling of achievement shared by all. @K_grom_06's11ft drop in at the @Etnies Skatepark brought inspiration an… https://t.co/y4EU38I6z4 +05/30/2018,Sports_celeb,@RyanSheckler,Fun day training with the boss! @KenRoczen94 https://t.co/hBbDxDDtXw +05/28/2018,Sports_celeb,@RyanSheckler,Thankful for all the men and women who have served and are serving to protect our country. Today we honor you. 🇺🇸… https://t.co/Gz1QUfh9LP +05/25/2018,Sports_celeb,@RyanSheckler,This is the entire US @redbullskate crew - stoked to be part of it! ✌️ https://t.co/I8JzNN7qaz +05/18/2018,Sports_celeb,@RyanSheckler,Fun times filming for the #etniesalbum! Get the full video - available now on ITunes & DVD -https://t.co/e4LfB1Lt5f… https://t.co/77TxpZzN3S +05/17/2018,Sports_celeb,@RyanSheckler,Throwing it back to 2003! Who remembers Slam City Jam? Took home 1st place that year. https://t.co/r4rvGW2jxV +05/14/2018,Sports_celeb,@RyanSheckler,"RT @etnies: Broken board, no problem #ALBUMouttakes +@chrisjoslin_ in Japan a few years back... #etniesALBUM Available Now on DVD & Digital…" +05/11/2018,Sports_celeb,@RyanSheckler,Life is good. Making an impact in each others lives - that's what it's about. @SheckFoundation @oakley… https://t.co/1Uc27CoIXE +05/10/2018,Sports_celeb,@RyanSheckler,"This Saturday join me for @PlanBofficial Skate Day in Carlsbad, CA. #alganorteskatepak See you there! 12-4pm. https://t.co/MTrLn7UiUu" +05/07/2018,Sports_celeb,@RyanSheckler,"Still hyped on this weekend's Skate For A Cause event! A HUGE Thank you to everyone who came out from sponsors, ath… https://t.co/XVcmhor9MP" +05/07/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: Thank you @SheckFoundation for another amazing year. @chrisjoslin_ @williamseansheffey @trevormcclung #SkateForACause #B… +05/06/2018,Sports_celeb,@RyanSheckler,This photo sums up how epic yesterday was! @k_grom_06 this inspired me and thousands more!! Way to step up and cha… https://t.co/JVCt2O5b0c +05/05/2018,Sports_celeb,@RyanSheckler,Hope to see you out today! #SkateForACause #CincoDeMayo Bring the entire family for our carnival village & watch yo… https://t.co/VFQovUUxfV +05/04/2018,Sports_celeb,@RyanSheckler,Tomorrow calls for sunny skies! Join us at @EtniesSkatepark for the 9th Annual #SkateForACause! 10am-5pm Hope to se… https://t.co/wTo2NjhMob +05/02/2018,Sports_celeb,@RyanSheckler,I had a great time with @MrBojanglesFilm & @RockinKumaka on @fox5sandiego News this morning! #SkateForACause THIS S… https://t.co/WNGVrPZhJH +05/02/2018,Sports_celeb,@RyanSheckler,"Tune in this morning to catch me, @oskervoid and @k_grom_06 on @Fox5SanDiego! We will be going live around 8:15am P… https://t.co/Dn0LSusZhN" +05/01/2018,Sports_celeb,@RyanSheckler,Happy Birthday to the craziest mofo I know! I love you Shane Sheckler 💯🤘🏻 so proud of you my man! https://t.co/grRokxAF1s +04/30/2018,Sports_celeb,@RyanSheckler,"Join me this Saturday for #SkateForACause. See your favorite skaters compete & enjoy the carnival village w/ games,… https://t.co/zEGg7SvhqT" +04/30/2018,Sports_celeb,@RyanSheckler,Thanks to the city of Dallas & @allianceskatepark for having the @redbullskate crew out. Good times were had! https://t.co/1gvz3FSwhg +04/28/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: The @tillys Stairs, Hubbas & Rails Contest NEVER disappoints! VIP tickets get you this close to the action! Tag a frie…" +04/27/2018,Sports_celeb,@RyanSheckler,Here are a few of the fans that came out to some stops of the Drop In Tour! So stoked for the support. Thank you! https://t.co/MAjnci7dVg +04/25/2018,Sports_celeb,@RyanSheckler,@gonzojune21 @redbullskate @redbull https://t.co/GKGMFUOetF +04/25/2018,Sports_celeb,@RyanSheckler,"@gonzojune21 @redbullskate @redbull Hart Lines is not returning after a great 3-year run in Detroit, but you’ll be… https://t.co/pMAR9ssbFE" +04/25/2018,Sports_celeb,@RyanSheckler,I'm with them. It's OK... In the name of obsession. #OneObsession @oakley https://t.co/W1VS6x0lod +04/25/2018,Sports_celeb,@RyanSheckler,Atlanta & New Orleans thanks for having us! Good times on the road with the @redbullskate crew. Hitting up Dallas t… https://t.co/Xl4P2RA9Kw +04/23/2018,Sports_celeb,@RyanSheckler,@AlexaaRaeee Hart Lines is not returning after a great 3-year run in Detroit but hoping to get back out there sometime this year. +04/22/2018,Sports_celeb,@RyanSheckler,Happy Earth 🌏 Day! This is an easy way to contribute to our planet. 🙏🏽 https://t.co/EGGZ8lwMqI +04/21/2018,Sports_celeb,@RyanSheckler,"In order to help @etnies reach their goal of 2 MILLION trees planted across the globe, they have made it easier for… https://t.co/5oNZ5qUiIn" +04/20/2018,Sports_celeb,@RyanSheckler,Special thanks to @oakley for having me out at their HQ this week! Had a great time being part of this year’s sales… https://t.co/Q9XFUvqpdb +04/20/2018,Sports_celeb,@RyanSheckler,RT @CowtownSkate: Desert West Skateboard Plaza April 29th @ 11am for the @redbullskate Drop-In Tour. With @RyanSheckler @ToreyPudwill @Fgus… +04/18/2018,Sports_celeb,@RyanSheckler,"Pretty hyped on Walter's first board graphic. Thanks again, Shane! https://t.co/qGY3jCp3of" +04/17/2018,Sports_celeb,@RyanSheckler,.@ShecklerFoundation and I are stoked to announce our first ever @nitrocircus WCMX Best Trick Contest &… https://t.co/CrE1TC3pYF +04/16/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: #Throwbacks to hangin' with the pro skaters INSIDE the skatepark with VIP tickets at #SkateForACause in 2012! Yes, YOU…" +04/13/2018,Sports_celeb,@RyanSheckler,"Kicking things off for #StompSessions in SoCal. Check out the Stomp app to book sessions to ride with pros, summer… https://t.co/ICWDHCtU0Y" +04/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Join us May 5th for #SkateForACause to see your favorite skaters compete & play games in our carnival village! Food, p…" +04/12/2018,Sports_celeb,@RyanSheckler,"RT @SPoTTampa: Come check out the premiere of Etnies' newest video ""Album"" here at #SPoTTampa before it drops worldwide! +- Friday, 4/20 - F…" +04/11/2018,Sports_celeb,@RyanSheckler,Really enjoy this spot! Thanks for the 🎥@CustodioPhoto https://t.co/Wi7mHUHJRj +04/10/2018,Sports_celeb,@RyanSheckler,Fun piece for this fine Tuesday! 🎥 @CustodioPhoto https://t.co/gLpw9wyuEd +04/09/2018,Sports_celeb,@RyanSheckler,".@redbullskate team is hitting the road! Be sure to catch us at one of 5 cities. 1st stop, Atlanta. @AmbushBoardCo https://t.co/6jBgxo897H" +04/06/2018,Sports_celeb,@RyanSheckler,"Sent @Shaq some skateboards a ""few"" years back and he kindly sent me these as a thank you. #flashbackfriday #shaq https://t.co/Tak8jWI8mL" +04/05/2018,Sports_celeb,@RyanSheckler,2011 with @PlanBofficial #TBT https://t.co/C5QKgc1qYs +04/04/2018,Sports_celeb,@RyanSheckler,#SkateForACause is almost a month away! Who is coming out? https://t.co/Ley2g3kF4i +04/02/2018,Sports_celeb,@RyanSheckler,Fun times at the @etnies skateboarding premiere this weekend. Thankful for the fans and the constant support!… https://t.co/4y0NoI7UT9 +04/01/2018,Sports_celeb,@RyanSheckler,Spent Good Friday with the @etnies crew giving out shoes and meals to the homeless. This is their 21st year working… https://t.co/GNf3h4Nr5R +03/30/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung Congrats PlanB’s newest pro. 📷 @paulomacedoo #trevorispro #skateboarding #planbskateboards https://t.co/… +03/29/2018,Sports_celeb,@RyanSheckler,"Happy birthday, mom! Thanks for everything you do. I love you. https://t.co/D3ELqApGRY" +03/28/2018,Sports_celeb,@RyanSheckler,"RT @etnies: For EVERY shoe purchased from today until Good Friday (March 30th), etnies will donate a pair of shoes to the homeless at the L…" +03/26/2018,Sports_celeb,@RyanSheckler,Thursday baby! #etniesALBUM Skateboard Premiere starts in LA. For ALL tour dates and tickets to Thursdays LA show 👉… https://t.co/UF6usk5Uwb +03/25/2018,Sports_celeb,@RyanSheckler,#etniesALBUM Global Premiere kicks off starting with Los Angeles this week. Go get your tickets NOW! 👉… https://t.co/lEIPDJGW1Y +03/24/2018,Sports_celeb,@RyanSheckler,Fun times last night with @ATTILAga ! Shane Sheckler looks like he is in the band👌🏻 📸 @devans812 https://t.co/BAtPbFVpaM +03/23/2018,Sports_celeb,@RyanSheckler,Friday’s call for... Fun times with @marquecox #FlashbackFriday https://t.co/N1H1gMUi9i +03/22/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: #SFskateBOARDmember @Mannyslaysall jumped the LA River yesterday, amazing. #MannySantiago #ShecklerFoundation https://…" +03/20/2018,Sports_celeb,@RyanSheckler,Agree! Where's everyone headed? #firstdayofspring https://t.co/FO8rlCEjr9 +03/19/2018,Sports_celeb,@RyanSheckler,🙌 https://t.co/TyUrYtgeqD +03/19/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@shecks back 3 #onlock 🤙🏼🎥 @marquecox #redbull #planbskateboards https://t.co/GABFmorQyp +03/17/2018,Sports_celeb,@RyanSheckler,Great times celebrating the 10th Annual with this legend. #FBF @KlayThompson @SheckFoundation https://t.co/t76O9bgent +03/15/2018,Sports_celeb,@RyanSheckler,Love this video from our #BeTheChange recipient @teamlillyfoundation . Keep spreading the love! https://t.co/WXKfgQj7hQ +03/14/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@RyanSheckler 🎯🎯📷 @CustodioPhoto #redbull #planbskateboards https://t.co/C81hVt44J0 +03/13/2018,Sports_celeb,@RyanSheckler,"Last day to vote & share. Let's show these causes we care. +Click here 👉: https://t.co/5w3qBRORcZ… https://t.co/Mtn4pTMGpl" +03/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Watch #BetheChange finalist Team Lilly Foundation inc, a 501(c)3 non-profit assisting families battling pediatric canc…" +03/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Please take a moment to WATCH this video about ""Be the Change"" finalist Team Lilly Foundation inc.! Team Lilly... htt…" +03/11/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: WATCH this video from #BeTheChange finalist @skateforchange . Started by Mike Smith, #SkateforChange is a nonprofit pr…" +03/10/2018,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Please take a moment to WATCH this video from #BetheChange finalist A Safe Play-Space for Ryan! 5 year old Ryan has a… +03/10/2018,Sports_celeb,@RyanSheckler,Watch Vote Share #BeTheChange finalist #AllThingsMadeNew @atmnirving https://t.co/Z6R8hMuJpK +03/10/2018,Sports_celeb,@RyanSheckler,@iPositiveVibess 🙌 +03/09/2018,Sports_celeb,@RyanSheckler,Congrats to our finalist! You can support by spreading the word. #BeTheChange Watch. Vote. Share here:… https://t.co/HMstdVTGmx +03/07/2018,Sports_celeb,@RyanSheckler,RT @ethika: RGB 2 is out now! We have 19 new tracks and signature designs from all the artists up now on https://t.co/J5AEYqP4I1 . #ethika… +03/06/2018,Sports_celeb,@RyanSheckler,"New track from Lil Wayne, ""Vizine."" 🙌 @LilTunechi @ethika https://t.co/16vVSad1zZ https://t.co/sgxL1bPbOc" +03/05/2018,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Today is the last day to enter this #BeTheChange round. Good luck! https://t.co/gQVPEDbonF https://t.co/tMAf5F1Gcx +03/03/2018,Sports_celeb,@RyanSheckler,"RT @StreetLeague: 👉🏼 Tampa Pro Qualifiers go down today! Watch the live free stream on the ETN app starting at 12:00pm ET / 9:00am PT. + +@To…" +03/02/2018,Sports_celeb,@RyanSheckler,Sheckler Sessions 2015 - Front blunt transfer #FBF 📸@redbull https://t.co/Ry30vAkNUP +03/01/2018,Sports_celeb,@RyanSheckler,@SkateGirlAndrea @BONESWHEELS @thrashermag @johnhilltube @worldindustries @TransWorldSKATE @GirlsShred… https://t.co/DAYxl3aan5 +03/01/2018,Sports_celeb,@RyanSheckler,Through voice & action anyone can Be The Change. @SheckFoundation has contributed to various causes and individuals… https://t.co/yWhEZY1gnl +02/27/2018,Sports_celeb,@RyanSheckler,It's all in the details. Mandala Masterpiece by Brad Reis​ Tattoo. 🎥 @CustodioPhoto #SCSandlot https://t.co/URnDfBJvQo +02/26/2018,Sports_celeb,@RyanSheckler,Late night house visit by #BradReis_Tattoo. 3 hours down... 📸@CustodioPhoto #tattoo https://t.co/nr6nmJ1NYm +02/21/2018,Sports_celeb,@RyanSheckler,@ARocket9 @etnies The Michelin Marana! 👉 https://t.co/s0pdz9uuvK +02/21/2018,Sports_celeb,@RyanSheckler,Here’s a closer look at my latest signature Cyprus SC - my in-between sessions shoe. Color-way & details are 🔥 If y… https://t.co/DC7n27YLPv +02/20/2018,Sports_celeb,@RyanSheckler,"After busting my ankles, I’m currently healing and look forward to getting back into these kicks real soon. 🙏 Check… https://t.co/t8egreuUhy" +02/16/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: “Stained Series” boards feat. @RyanSheckler 8.12” @Fgustavoskt 8” @ToreyPudwill 8.25” Available NOW! Check your local re… +02/15/2018,Sports_celeb,@RyanSheckler,Missing this! Couple more weeks and I’ll be back! https://t.co/dklPcqmnkj +02/14/2018,Sports_celeb,@RyanSheckler,Happy Valentine's Day babay! Thank you for making me feel happy like this all the time! ❤️ https://t.co/6pj6sXU5in +02/13/2018,Sports_celeb,@RyanSheckler,🐻 @grizzlygriptape https://t.co/yaQRdvS9qj +02/12/2018,Sports_celeb,@RyanSheckler,RT @chasehawk: #TBT session at the LA courthouse with @RyanSheckler & the @etnies skateboarding​ crew. My Sig. #JamesonSL is available now!… +02/09/2018,Sports_celeb,@RyanSheckler,#TBT #SkateForACause SAVE THE DATE! Our 9th Annual on May 5th. Hope to see you there! https://t.co/pWFz5W3ek8 +02/08/2018,Sports_celeb,@RyanSheckler,They're baaack! 👉 https://t.co/xlmkS75Hvy https://t.co/qhNFkCL4kz +02/06/2018,Sports_celeb,@RyanSheckler,My favorite @etnies Marana color-way is back! Whose in favor? Check them out here 👉 https://t.co/QVCwPzQbIM https://t.co/mR3HwpMD9n +02/01/2018,Sports_celeb,@RyanSheckler,"Dew tour #tbt w/ the boss @prod84 🙌🏻 my Gs a multitasking business man & has taught me a lot about God, life, and s… https://t.co/AItRLQoRJn" +01/28/2018,Sports_celeb,@RyanSheckler,Back to the fun in no time! 🎥 @CustodioPhoto https://t.co/WNshwBOgcA +01/26/2018,Sports_celeb,@RyanSheckler,🇺🇸 📸 @redbullskate #hartlines #FBF https://t.co/WmOY2gy33t +01/25/2018,Sports_celeb,@RyanSheckler,How's this #tbt!!! I love you Shane Sheckler 😜 https://t.co/kxckw5rS4K +01/23/2018,Sports_celeb,@RyanSheckler,🙌 @AaronWheelz https://t.co/rP0oZtw3RV +01/21/2018,Sports_celeb,@RyanSheckler,See you Sunday! https://t.co/GZctw6LGF5 +01/18/2018,Sports_celeb,@RyanSheckler,SAVE THE DATE! https://t.co/1rutxVtXzZ +01/17/2018,Sports_celeb,@RyanSheckler,San Clemente Skate Park fun! https://t.co/7CSv7VlKL5 +01/17/2018,Sports_celeb,@RyanSheckler,Stoked to see the skate park we helped build last March in Costa Rica being used & thriving. Thanks for sharing… https://t.co/Tiffj15vXG +01/16/2018,Sports_celeb,@RyanSheckler,@JonahBonner @SheckFoundation 🙌So stoked! Thanks for sharing. +01/15/2018,Sports_celeb,@RyanSheckler,Happy birthday @Poppa_Shecks! Thanks for always steering me in the right direction👊🏻 enjoy your day big dog! I lov… https://t.co/3UPCmLzAfo +01/13/2018,Sports_celeb,@RyanSheckler,Friday find. #FBF https://t.co/Dfr0ppiTNt +01/11/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@chrisjoslin_ had an amazing year. Do the right thing and vote for him #populist2017 award #berrics https://t.co/PRd5uV… +01/09/2018,Sports_celeb,@RyanSheckler,Monday night fun at the SCSandlot! 🎥 @CustodioPhoto https://t.co/P3dOU6jADA +01/07/2018,Sports_celeb,@RyanSheckler,Fun battle today! @etnies #etniesalbum https://t.co/9ICKOnEhpT +01/04/2018,Sports_celeb,@RyanSheckler,"RT @etnies: Cyprus SC +Get 'em here 👉 https://t.co/cuOw0iLAwX https://t.co/eznqkzIsqB" +01/03/2018,Sports_celeb,@RyanSheckler,"New year, new perspectives. 2018, lets do this! #CantStop https://t.co/APc8TzPeA9" +01/03/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: What better way to start off the year than congratulating @LeticiaBufoni with her welcome video https://t.co/f0A0lh1DK8… +01/02/2018,Sports_celeb,@RyanSheckler,Aust-RAIL-ia! Fun clip by @redbullskate --> https://t.co/jvKqecHB0B https://t.co/YG1swby5ja +01/02/2018,Sports_celeb,@RyanSheckler,Happy New Year! What a great trip! https://t.co/FwQxPzBDjT +01/01/2018,Sports_celeb,@RyanSheckler,Thanks to everyone for the birthday wishes. Feeling very blessed. Have a safe & Happy New Year! +12/30/2017,Sports_celeb,@RyanSheckler,❤️ https://t.co/PASHqwL0EJ +12/29/2017,Sports_celeb,@RyanSheckler,Reflecting on the year and skateboarding continues to take me to some pretty epic locations. One of my favorites fr… https://t.co/XB96xHmskZ +12/26/2017,Sports_celeb,@RyanSheckler,https://t.co/XyBvbNFx4Q +12/25/2017,Sports_celeb,@RyanSheckler,Merry Christmas everybody! Happy birthday JESUS! 🎉 https://t.co/AM2BaqQ37n +12/24/2017,Sports_celeb,@RyanSheckler,Saturday's at the Sandlot. 🎥 @CustodioPhoto https://t.co/KeHXR04Ucy +12/22/2017,Sports_celeb,@RyanSheckler,It’s been a good year. Fun times in Nica! #FBF https://t.co/gwcAqxgPOc +12/21/2017,Sports_celeb,@RyanSheckler,Scoping out lines with Mr. Claus. #TBT to @etnies Skate Park 10 year Anniversary Holiday Festival. https://t.co/VNWq4EfxgB +12/18/2017,Sports_celeb,@RyanSheckler,"Work hard, stay hungry and have FUN! 🎥 @CustodioPhoto https://t.co/MYCjPhXENH" +12/15/2017,Sports_celeb,@RyanSheckler,Looking back at such an epic trip to Costa Rica earlier this year. This was our day off after helping build a skate… https://t.co/TFtyMmxXDQ +12/14/2017,Sports_celeb,@RyanSheckler,💥📷: Paulo Macedoo https://t.co/iK5VWGlcUY +12/13/2017,Sports_celeb,@RyanSheckler,I was getting my morning coffee and bumped into @tonyhawk. Good to see you boss! https://t.co/03OIwndvZr +12/13/2017,Sports_celeb,@RyanSheckler,Hangs with @chrisjoslin_ is. Always a good time buddy. #SCSandlot 🎥 @CustodioPhoto https://t.co/lKaD4a0HyH +12/11/2017,Sports_celeb,@RyanSheckler,Good troop. https://t.co/Worw4e4Tk9 +12/08/2017,Sports_celeb,@RyanSheckler,Amped on this 👟! https://t.co/oevphOCUIw https://t.co/NYfcgUsLCc +12/07/2017,Sports_celeb,@RyanSheckler,#tbt fun times 🎉 🎥 @CustodioPhoto https://t.co/clEACtjYdb +12/06/2017,Sports_celeb,@RyanSheckler,"Great night last night! Amped on the last trick, been working on it for a bit now 🎉 🎥 @CustodioPhoto https://t.co/49UlTxZjuc" +12/05/2017,Sports_celeb,@RyanSheckler,"For those with no itinerary, here is some unscripted versatility. @etnies latest release: the #etniescyprussc ! Che… https://t.co/pQVmu0TPFJ" +12/01/2017,Sports_celeb,@RyanSheckler,Stomp Sessions is now live in SoCal! Check out the @StompSessions app to see locations and book your skateboard ses… https://t.co/0nprX1OyHR +11/28/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Today is #GivingTuesday! Click the link below to make a tax deductible donation & join our efforts to BE THE CHANGE we… +11/27/2017,Sports_celeb,@RyanSheckler,".@ethika is having their biggest sale of the year, TODAY ONLY! Head over to https://t.co/iuH184obye. #ethika… https://t.co/gJ0b4nXpIu" +11/27/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: That's Right!! #cybermonday is here. Buy a deck free grip and free ship.#holidaygifts https://t.co/jtaWGxj0Nb #planbskat… +11/23/2017,Sports_celeb,@RyanSheckler,Reminder - Ends tonight! Exclusive @etnies deal TODAY ONLY! 2-for-1 ANY Marana - Use coupon code: 241MARANA 👉… https://t.co/7qojdV1ZCu +11/22/2017,Sports_celeb,@RyanSheckler,"You asked, you shall receive. Exclusive @etnies deal TODAY ONLY! 2-for-1 ANY Marana - Use coupon code: 241MARANA 👉… https://t.co/vPW4pcX6t6" +11/21/2017,Sports_celeb,@RyanSheckler,Exclusive deal for you all! TODAY ONLY! 2-for-1 ALL Scouts - Use coupon code: 241SCOUT 👉 https://t.co/YQUWgxBEh0 En… https://t.co/V09DiAciWW +11/17/2017,Sports_celeb,@RyanSheckler,Congrats my friend! https://t.co/bIiYOF4xsk +11/15/2017,Sports_celeb,@RyanSheckler,Keeping at it. Fun times at the #SCSandlot 🎥 @CustodioPhoto https://t.co/dQf5POzPzT +11/14/2017,Sports_celeb,@RyanSheckler,"So amped on how this turned out! Check out Skaters in Cars and get the latest scoop from me on skate spots, family… https://t.co/lwTScBFWyw" +11/13/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: #MondayMotivation We all have a story to tell that will help encourage someone else going through their struggle. Keep… +11/10/2017,Sports_celeb,@RyanSheckler,#FBF to this time last year with #BeTheChange recipients Parisite Skate Park. What an epic day with amazing people… https://t.co/HryBkdDx96 +11/09/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung part is live for those who haven't seen it yet.🤙🏼📸 @paulomacedoo 🎥 @Pedrodylon 🎼@JCBrooksBand https://t.… +11/08/2017,Sports_celeb,@RyanSheckler,Working on the crooks #thankyouskateboarding @etnies @PlanBofficial @oakley @redbull 🎥 @CustodioPhoto https://t.co/KsOjOcQuu7 +11/07/2017,Sports_celeb,@RyanSheckler,Definitely don't do this alone. Thanks to all those who have supported us along the way! @SheckFoundation https://t.co/IrJE9S5hwa +10/30/2017,Sports_celeb,@RyanSheckler,From water to mini ramp. 🇳🇮 https://t.co/V4fIYufkDQ +10/30/2017,Sports_celeb,@RyanSheckler,Nicaraguan sunset 👌! https://t.co/t9PuZp7BlC +10/29/2017,Sports_celeb,@RyanSheckler,Fun times! @NicaTimeSurf https://t.co/MImGZddSBB +10/27/2017,Sports_celeb,@RyanSheckler,#FBF https://t.co/R7m4OnI29f +10/27/2017,Sports_celeb,@RyanSheckler,@Elise1821 @SFAngelique 🙏 +10/26/2017,Sports_celeb,@RyanSheckler,"Thanks to our loyal supporters all over the world, here are a few things we've done over the past year.… https://t.co/P3TgcBY5wW" +10/26/2017,Sports_celeb,@RyanSheckler,I do love it out here in Nica❤️ 📸 @nicatime https://t.co/bedAam85hv +10/25/2017,Sports_celeb,@RyanSheckler,"Stoked to see my friend giving back! Please join in if you can. @KlayThompson , we'll be watching & keeping score!… https://t.co/eUuB9eqkvI" +10/24/2017,Sports_celeb,@RyanSheckler,🦅 https://t.co/EXCwV7zpZn +10/23/2017,Sports_celeb,@RyanSheckler,Happy to have been part of The Wasserman Serve day at Jefferson Elementary. @WassermanFDN Thanks for all you do!… https://t.co/6qO6oOvBjl +10/23/2017,Sports_celeb,@RyanSheckler,Played outside today... it was a fun one! @etnies #etniesalbum 🎥: @CustodioPhoto https://t.co/uuk3cGhwKN +10/18/2017,Sports_celeb,@RyanSheckler,"Through skateboarding I've seen so many places in this world, but I can never beat the view from my hometown.… https://t.co/mxqHiE2vzn" +10/17/2017,Sports_celeb,@RyanSheckler,Sunday night’s fun at the Sandlot! 🎥 @CustodioPhoto https://t.co/DphlMW1hLx +10/15/2017,Sports_celeb,@RyanSheckler,Great day of skating yesterday with the @etnies crew! 👊 https://t.co/jWburvvKlV +10/12/2017,Sports_celeb,@RyanSheckler,"180 kick flip | @redbull Hart Lines 📍 Detroit, Michigan #TBT https://t.co/fFTsDtZOrZ" +10/10/2017,Sports_celeb,@RyanSheckler,"Well, great day to stop by and get the new #teamwass gear. Thanks @caseywasserman https://t.co/L0B34IlWzd" +10/09/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@dannyway @RyanSheckler @jaggereaton @jetteaton @chrisjoslin_ @AlphonzoRawls @trevormcclung @seanwilliamsheffey #Poods… +10/06/2017,Sports_celeb,@RyanSheckler,Good day indeed! #TBT https://t.co/tJ2ORNYnl0 +10/04/2017,Sports_celeb,@RyanSheckler,"Preparation starts here || Signature Michelin Marana colorway. +https://t.co/YQUWgxBEh0 @etnies https://t.co/5gFGPR0edY" +10/03/2017,Sports_celeb,@RyanSheckler,@tanwiththebeans @etnies @ethika Congrats! +09/29/2017,Sports_celeb,@RyanSheckler,Kicking off the weekend with the @oakley fam at #IrvineSpectrum today from 5-7 pm. Come hang out & say hi.… https://t.co/XVmZJcVcqO +09/28/2017,Sports_celeb,@RyanSheckler,"Frontside air Sydney, Australia - 2007. On the road w/ @PlanBofficial @etnies @redbullskate @oakley 📷:… https://t.co/3ABckzDRol" +09/28/2017,Sports_celeb,@RyanSheckler,🙌 https://t.co/1zancwXiyt +09/26/2017,Sports_celeb,@RyanSheckler,Last chance to enter! https://t.co/4CyAOtxeSo +09/25/2017,Sports_celeb,@RyanSheckler,🚨 WIN this exact skate deck as well as other gear from @etnies @oakley @redbull @melin & @ethi Good luck! Enter ->… https://t.co/14ovubes5g +09/22/2017,Sports_celeb,@RyanSheckler,"Me and my skateboard, It's pure, it's everything. #CantStop Check the new @oakley #Frogskins Lite Collection ->… https://t.co/CpAaQc67WE" +09/21/2017,Sports_celeb,@RyanSheckler,"Not a bad crew! @machinegunkelly JJ, Andre & Rook at our 10th Annual Golf Tourney #TBT #10years @SheckFoundation https://t.co/YQl4CvBDNY" +09/20/2017,Sports_celeb,@RyanSheckler,G I V E A W A Y! All this could be yours! Enter to win 👉https://t.co/vMspH8lWLI https://t.co/6TBvl3wOJF +09/19/2017,Sports_celeb,@RyanSheckler,Everything changed and I almost quit. My love for skateboarding is real and I’m passionate about it now more than e… https://t.co/Fsfsns3Azc +09/18/2017,Sports_celeb,@RyanSheckler,Epic times with the best crew! 🤘Thanks @KAABOODELMAR https://t.co/7X96obyVMU +09/18/2017,Sports_celeb,@RyanSheckler,👊#MondayMotivation https://t.co/nhvEy3Buvu +09/15/2017,Sports_celeb,@RyanSheckler,Good fun! ⚡️ https://t.co/zoY3WNDNW5 +09/14/2017,Sports_celeb,@RyanSheckler,All time #tbt 😂😂 @thepeopleloveit #alfalphanspanky https://t.co/6O5FsFdROp +09/14/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: #repost @SalMasekela #GolfingWithShecks & @wienerschnitzel https://t.co/MNsNvwXKxP +09/11/2017,Sports_celeb,@RyanSheckler,RT @ethika: Weekend moves with @Steellafferty and @RyanSheckler #ethikafamilie https://t.co/2BEdce75Dr +09/11/2017,Sports_celeb,@RyanSheckler,The winner of the @findyourgrind Helicopter Ball Drop! @SheckFoundation https://t.co/TTc17VErcS +09/08/2017,Sports_celeb,@RyanSheckler,Nights at the Sandlot. 🎥 @CustodioPhoto https://t.co/CxgDh0Pt0f +09/08/2017,Sports_celeb,@RyanSheckler,Last day to enter! https://t.co/fVFpt2LIop +09/07/2017,Sports_celeb,@RyanSheckler,🤘 https://t.co/ibqdV9Goda +09/05/2017,Sports_celeb,@RyanSheckler,The @Sheckfoundation will be donating 100% of proceeds to help the victims of #HurricaineHarvey. Click to donate --… https://t.co/Gzo3aJmjvZ +09/01/2017,Sports_celeb,@RyanSheckler,Have a great Labor Day weekend everyone! https://t.co/lCh8DO875C +08/31/2017,Sports_celeb,@RyanSheckler,"Summer is out! Celebrating Back to School with an @Etnies Sale for the nuggets, parents and their educators! ->… https://t.co/LKa6UDs1VJ" +08/30/2017,Sports_celeb,@RyanSheckler,"We just donated 14,000 pairs of @ethika to Houston for hurricane victims. Along with the product we are sending lov… https://t.co/Q8aJAbyv5O" +06/30/2018,Sports_celeb,@prod84,"RT @Complex: ""I used to skate the loading dock behind Albertsons every day when I was a kid. It's how I learned all my tricks."" —@prod84 ex…" +06/30/2018,Sports_celeb,@prod84,"RT @ComplexSneakers: ""Shoutout to ASAP Rocky for showing the shoe some love."" —@prod84 on seeing @asvpxrocky wearing the ""Futura"" P-Rod 1.…" +06/30/2018,Sports_celeb,@prod84,"RT @Complex: ""Shoutout to A$AP Rocky for showing the shoe some love."" —@prod84 on seeing @asvpxrocky wearing the Futura x P-Rod 1. + +FULL EP…" +06/29/2018,Sports_celeb,@prod84,"RT @ComplexSneakers: ""This is probably the most precious memorabilia I have."" —@prod84 on his Michael Jordan-signed V-Rod exclusives. + +See…" +06/29/2018,Sports_celeb,@prod84,RT @berrics: .@prod84 shows off his collection of 300+ pairs of Nike SB's https://t.co/tFBTsBVUjx https://t.co/pNL7LY4UWB +06/29/2018,Sports_celeb,@prod84,Restocked https://t.co/UriKrjTu29. @primitiveskate https://t.co/ScIABN0pHh +06/29/2018,Sports_celeb,@prod84,RT @KicksDeals: 👀 @Complex / @JLaPuma come through with an all-NEW episode of 'Complex Closets' featuring pro skater & Nike SB signature at… +06/29/2018,Sports_celeb,@prod84,Honored to have @Complex come by and shoot this video 🙏🏽 https://t.co/b08aXZBHGr +06/29/2018,Sports_celeb,@prod84,RT @primitiveskate: Exclusive #dragonballz box available to Primitive Reserve members. Sign up and this will be your first box (while suppl… +06/27/2018,Sports_celeb,@prod84,"RT @137pm: .@prod84 came on #Face2FaceTime to talk about how gratitude is 🔑 + +""If you can't be grateful for what you have in life or where y…" +06/27/2018,Sports_celeb,@prod84,Didn’t know what I was missing out on @gillette. Simple changes to my shave routine = gamechanger #GillettePartner… https://t.co/8GkYDlJaB3 +06/24/2018,Sports_celeb,@prod84,Had a great time being a part of #Face2Facetime by @garyvee’s new company @137pm ! https://t.co/9Ou49JDFFk +06/18/2018,Sports_celeb,@prod84,"Paul Rodriguez ""Never"" Unmastered: https://t.co/B1nBfUubo6 via @YouTube" +06/17/2018,Sports_celeb,@prod84,Just want to wish all the Fathers out there a happy Father’s Day. Many Blessings to you all and your families 🙏🏽🙏🏽🙏🏽 https://t.co/UPdtqQgBtn +06/17/2018,Sports_celeb,@prod84,Hyped on these! #DragonBallZ https://t.co/DUAoKTwEXC https://t.co/qJ9XmfeLk2 +06/16/2018,Sports_celeb,@prod84,"@primitiveskate “Never” +#neversaynever https://t.co/M8grJFGxBa" +06/12/2018,Sports_celeb,@prod84,Super excited to connect with you all one on one on @BookCameo ! If you want a birthday message or any video messag… https://t.co/2djcdyhhpJ +06/11/2018,Sports_celeb,@prod84,“Never” @primitiveskate https://t.co/8UjESOV6is +06/09/2018,Sports_celeb,@prod84,. @RickandMorty x @primitiveskate pre order available now! https://t.co/Y4aDA5KNne https://t.co/rHLBFxxtSi +06/08/2018,Sports_celeb,@prod84,RT @primitiveskate: We Are Excited To Announce The Rick and Morty x Primitive Skateboarding Official Collaboration Dropping July 1st Limite… +05/25/2018,Sports_celeb,@prod84,"Courthouse 2 Piece +📷: @SpanishMikeTV https://t.co/mgVRdhSsDf" +05/21/2018,Sports_celeb,@prod84,New @Gillette video up on my YouTube channel! See how I always find time to stay fresh with the right razor -- no m… https://t.co/wem3AD2i56 +05/21/2018,Sports_celeb,@prod84,Had a great time. Hope you enjoy the @nikesb #Prod10’s! https://t.co/cEuldG6w0s +05/17/2018,Sports_celeb,@prod84,Enter at https://t.co/Z0vLGyj29p for a chance to skate with me and my friends! https://t.co/QfvldNRTim +05/17/2018,Sports_celeb,@prod84,RT @primitiveskate: Updates regarding #dragonballz orders. Thank you guys so much for your patience! 🙏 🐉 #primitiveskate @prod84 https://t.… +05/11/2018,Sports_celeb,@prod84,"Which pill are you taking 🔴🔵? + +See what happens next... https://t.co/8E65nNIONL https://t.co/g9NXJVZ9A9" +05/03/2018,Sports_celeb,@prod84,I’m giving away a pair of my new frames from @glassyeyewear just follow @glassyeyewear and retweet this post for yo… https://t.co/8AetGWWned +05/03/2018,Sports_celeb,@prod84,#dbz @primitiveskate https://t.co/e4NDZz1mog https://t.co/stePHuYxZE +05/01/2018,Sports_celeb,@prod84,So excited about this!! https://t.co/r3wKRLmXoC +05/01/2018,Sports_celeb,@prod84,RT @GrantCardone: I asked pro skateboarder & successful entrepreneur Paul Rodriquez @prod84 why… https://t.co/7H6Bb68dmK +04/30/2018,Sports_celeb,@prod84,"RT @primitiveskate: Our #dragonballz collaboration drops tonight at midnight eastern time, 9:00PM Pacific time on https://t.co/TH4m7sh0BE.…" +04/29/2018,Sports_celeb,@prod84,RT @PRIMITIVE_LA: May 1 #dragonballz x #primitiveskate https://t.co/aE51jObJzz 🐉 https://t.co/WNxjfps6YF +04/26/2018,Sports_celeb,@prod84,"🌪 +🎥 @brandonbiebel https://t.co/Lcq0J4J1iW" +04/26/2018,Sports_celeb,@prod84,RT @Speffman: Just arrived and it’s sick. #dbz @primitiveskate https://t.co/s5QV9aBGhT +04/21/2018,Sports_celeb,@prod84,Had a blast playing with you man! https://t.co/v5iXQZTcS1 +04/13/2018,Sports_celeb,@prod84,.@primitiveskate x #pauljacksonlives restocked: https://t.co/JirIvnbStO https://t.co/QvKHK9cUyl +04/12/2018,Sports_celeb,@prod84,"Cleaning your kicks twice a day keeps Dr. Sole away, right @Nike? #shoetherapy https://t.co/eYbvCZCzyB" +04/11/2018,Sports_celeb,@prod84,"This was a fun shoot to be a part of thanks @nike 🙏🏽 Cleaning your kicks twice a day keeps Dr. Sole away, right?… https://t.co/sZbrJPpNY4" +04/11/2018,Sports_celeb,@prod84,@GrantSchubert @primitiveskate @alan_hannon Thanks for all the hard work you two have put in over the past couple of days 👊🏼 +04/11/2018,Sports_celeb,@prod84,@SenjuRicardo 🙏🏼 +04/08/2018,Sports_celeb,@prod84,"@Hoooooesinheels Sorry, can’t part with them" +04/08/2018,Sports_celeb,@prod84,@SDSkateCo @whitesox @loswhitesox @Jumpman23 🙏🏼 +04/08/2018,Sports_celeb,@prod84,@andyr0ck🙏🏼 +04/08/2018,Sports_celeb,@prod84,@Hoooooesinheels Sorry but all I have is a couple of pair I’m saving for my collection +04/08/2018,Sports_celeb,@prod84,@dragonballzarmy My man 🙏🏼 +04/08/2018,Sports_celeb,@prod84,@colinmecrazy @SeanSchemmel @toei @primitiveskate Which board did you get? +04/08/2018,Sports_celeb,@prod84,@323chillax 🙏🏼👊🏼 +04/08/2018,Sports_celeb,@prod84,@Mark_Shadows looks like they will be available 5/7/18 +04/03/2018,Sports_celeb,@prod84,Doing a live Q and A now! https://t.co/SgRAJ8445a +04/03/2018,Sports_celeb,@prod84,"Feels like a Netflix night gonna watch +""ON MY BLOCK. "" + +@jeremyhaft1 +@onmyblocktv +#onmyblock +#representationmatters +#netflix" +03/26/2018,Sports_celeb,@prod84,Happy @Nike #airmaxday I’ll be rocking the Air Max 270s all day. Which are your favorites? https://t.co/TxFrZhqWls +03/23/2018,Sports_celeb,@prod84,"It's been fun sharing my A•Reels with you guys and now I want to see yours!! +Download the @areelsports app and… https://t.co/HowyefDUKr" +03/23/2018,Sports_celeb,@prod84,RT @primitiveskate: Restocked! https://t.co/AYPlOqy5RS https://t.co/F8SY0HHgNs +03/21/2018,Sports_celeb,@prod84,Loving this months #primitivereserve box!! Brian Peacock 🔥. Subscribe now: https://t.co/DplPitS7Ka. https://t.co/ERz61vXG6c +03/16/2018,Sports_celeb,@prod84,"Now you can easily shoot, edit, and share your own amazing vids and be a part of a community of elite athletes and… https://t.co/NkwSdxtCtF" +03/16/2018,Sports_celeb,@prod84,RT @primitiveskate: #primitiveskate x #dragonballz full collection coming soon but pre-orders available now https://t.co/FSXO5OQ2uj🤫 https:… +03/14/2018,Sports_celeb,@prod84,Partnered up with my friends over at @Gillette! #unboxing video on my channel to see what they sent. You guys get s… https://t.co/gJhMkRh1nR +03/14/2018,Sports_celeb,@prod84,Paul Rodriguez | Gillette Unboxing: https://t.co/8FEU4Zvoaz via @YouTube +03/11/2018,Sports_celeb,@prod84,The sun is coming back out. My signature @glassysunhaters will keep your eyes happy 😎 Get %10 off by clicking here:… https://t.co/PuTMNHACIb +03/08/2018,Sports_celeb,@prod84,"Check out my latest highlight reel on the @areelsports app where you can watch, create, and promote sports highligh… https://t.co/fYlcjN7x95" +03/06/2018,Sports_celeb,@prod84,"RT @primitiveskate: Primitive x @sixthave Demo in Nashville, TN: https://t.co/wYV3sp0Iq1 https://t.co/k0obXkQyjR" +02/23/2018,Sports_celeb,@prod84,Hitting the streets with my signature @glassysunhaters Grab yours and 10% off this weekend. Hit the link to get yo… https://t.co/yVzZwk6AFH +02/23/2018,Sports_celeb,@prod84,RT @shanejoneill: Rob’s new part is amazing 🚰 https://t.co/CCqR6K54ij +02/23/2018,Sports_celeb,@prod84,That new @salabanziB deck is 🔥. Available in the Reserve box: https://t.co/DplPitS7Ka https://t.co/D0JF4DVWfj +02/17/2018,Sports_celeb,@prod84,Back in stock! @primitiveskate x Paul Jackson: https://t.co/JBV2cEsMjL https://t.co/BeuL2m7u0W +02/12/2018,Sports_celeb,@prod84,😎 https://t.co/3wLoldxZ2Q +02/08/2018,Sports_celeb,@prod84,RT @primitiveskate: New subscribers can get this Devine Calloway exclusive deck: https://t.co/z1msxuRbxE https://t.co/TmsPJfV06E +02/07/2018,Sports_celeb,@prod84,.@primitiveskate x @majidjordan collab: https://t.co/HIVv1J1p4L https://t.co/tLHCNhlyWw +02/07/2018,Sports_celeb,@prod84,Heartbreakers Collection. Available in shops and at https://t.co/UriKrjBSDz. 💔 https://t.co/eSOdcEew6q +02/03/2018,Sports_celeb,@prod84,#skatelife film by @SpanishMikeTV https://t.co/45RzzJZtgp +01/19/2018,Sports_celeb,@prod84,Sw front heel from the other day. 📷 Oliver Barton https://t.co/Vj94uF2LUm +01/07/2018,Sports_celeb,@prod84,New ones!! 👌🏽 @primitiveskate x @pauljacksonlives. @shanejoneill @nicktucker https://t.co/UriKrjBSDz https://t.co/E05Q8ZmvCO +12/26/2017,Sports_celeb,@prod84,Another blessed Christmas Day session with my guy @shanejoneill! Hope everyone had a blessed one🙏🏽 #dedication6 🎥… https://t.co/XyZ1jYuQBP +12/07/2017,Sports_celeb,@prod84,Sw hard flip 📸 @atibaphoto https://t.co/KeKOZmaF0x +11/29/2017,Sports_celeb,@prod84,RT @primitiveskate: Final hours to save! https://t.co/qoKEswryUc https://t.co/Y1BL3CkEni +11/25/2017,Sports_celeb,@prod84,Grab your @glassysunhaters during the ⚫️Black Friday⚫️ sale going on through Monday. Get up to 35% off here:… https://t.co/Zg8FV2DcaU +11/24/2017,Sports_celeb,@prod84,Black Friday Sale going down now! https://t.co/UriKrjBSDz. @primitiveskate https://t.co/RdxVKNI18J +11/23/2017,Sports_celeb,@prod84,RT @primitiveskate: Roman Lisivka “Stalinista”: https://t.co/5gOjjGoGTQ https://t.co/jBr07iweDG +11/20/2017,Sports_celeb,@prod84,Throwback clip at the old park. 🎥 @spanishmiketv @primitiveskate https://t.co/gUIt5NPNFJ +11/18/2017,Sports_celeb,@prod84,2fers are back! https://t.co/YDP3EKPXZu. @primitiveskate https://t.co/K0TwPmkZjs +11/16/2017,Sports_celeb,@prod84,#tbt switch bs nose blunt slide. 📸 Oliver Barton https://t.co/96tGhUus4i +11/14/2017,Sports_celeb,@prod84,Black Pack ‘17. https://t.co/A5rdeYFs0H. @primitiveskate https://t.co/7Iirm39Z8Z +11/03/2017,Sports_celeb,@prod84,Grab a pair of my signature shades from @glassysunhaters and get 10% off. Click here: https://t.co/wekwlyDWWL https://t.co/hGFjwFJa3X +11/02/2017,Sports_celeb,@prod84,RT @primitiveskate: https://t.co/srNhvle5jX https://t.co/gZ53kKuKI3 +10/21/2017,Sports_celeb,@prod84,RT @primitiveskate: New #LA Colorway. Available now https://t.co/TH4m7sh0BE https://t.co/z090zoShhe +10/21/2017,Sports_celeb,@prod84,.@primitiveskate in #Texas vid: https://t.co/Gt5FC0Ydsi https://t.co/YoGZwyTTLy +10/19/2017,Sports_celeb,@prod84,New ones! @primitiveskate https://t.co/UriKrjBSDz https://t.co/wvaqhKs8xL +10/14/2017,Sports_celeb,@prod84,"RT @StreetLeague: .@prod84 @KellyHart taking 'Trick of the Year' to the next level! + +Watch the 24 hour freeview of Episode 1 today on ETN.…" +10/13/2017,Sports_celeb,@prod84,Happy birthday Kevin Perez. Keep getting those wins! 📸 @oliverbarton https://t.co/iVVaj07tir +10/11/2017,Sports_celeb,@prod84,A line from earlier this year filmed by @SpanishMikeTV @primitiveskate https://t.co/GoxE91DJnu +10/10/2017,Sports_celeb,@prod84,💰💰 💰 https://t.co/DplPitS7Ka https://t.co/X3QahYpkr4 +10/09/2017,Sports_celeb,@prod84,Join me and the @primitiveskate squad this Saturday! https://t.co/z3XPfR4Ysz +10/06/2017,Sports_celeb,@prod84,RT @primitiveskate: .@pendledon Zoo (Unmastered) is up now 👉🏽 https://t.co/mX0KjLXAV3 #primitiveskate https://t.co/0uktF4Nr62 +09/29/2017,Sports_celeb,@prod84,Ready for the season with the new #lakernation jersey designed by @nike. What team you got this season?? https://t.co/IkVoCMNqkG +09/28/2017,Sports_celeb,@prod84,"Join me and the squad this Saturday in Austin, TX! @nocomplyatx @primitiveskate https://t.co/tEud5qCCZI" +09/26/2017,Sports_celeb,@prod84,Enjoying the new park https://t.co/KircAjIfX2 +09/23/2017,Sports_celeb,@prod84,Grab a pair of my signature @glassysunhaters and hate the ☀️ this weekend. Click the link for 10% off.… https://t.co/R4JjSumcIB +09/19/2017,Sports_celeb,@prod84,Join us this Wednesday at @blackhwood! @trentmcclung @primitiveskate https://t.co/M5EGPpIgoe +09/17/2017,Sports_celeb,@prod84,Setting up a fresh one. @nicktucker @primitiveskate 📸 Oliver Barton https://t.co/rk6M6Qc2v7 +09/15/2017,Sports_celeb,@prod84,"#fbf to 2013 when @seanmalto, @erickoston and I visited Camp Nou in Barcelona. 📸 @heathmoe https://t.co/mHxVAAj8VS" +09/12/2017,Sports_celeb,@prod84,.@primitiveskate x @grizzlygriptape collection. 🙌🏽 https://t.co/UriKrjBSDz https://t.co/4IBoOFgjH5 +09/09/2017,Sports_celeb,@prod84,#Fbf 🎥 @Heathmoe https://t.co/cH75b9IvzW +09/08/2017,Sports_celeb,@prod84,Hit the streets and hate the ☀️ this weekend in some @glassysunhaters Click the link for 10% off.… https://t.co/bPd2UVQ1il +09/05/2017,Sports_celeb,@prod84,Thank you everyone for the amazing support!! https://t.co/oiQc7DGhPK +09/02/2017,Sports_celeb,@prod84,.@primitiveskate x @grizzlygriptape available now. https://t.co/A5rdeYFs0H 📱 Kevin Perez https://t.co/RwNbWaDbxv +08/29/2017,Sports_celeb,@prod84,😍 @primitiveskate https://t.co/UriKrjBSDz https://t.co/v4DmEcmtL1 +08/25/2017,Sports_celeb,@prod84,RT @primitiveskate: #PrimitiveSkate x @gangsterdoodles @prod84 Flip Phone Deck is available now exclusively at https://t.co/TH4m7sh0BE! htt… +08/22/2017,Sports_celeb,@prod84,A few #throwback clips 🎥: @heathmoe https://t.co/0nX3zxyPEX +08/21/2017,Sports_celeb,@prod84,Weekend fun with the boys. @primitiveskate https://t.co/CBHkLA72RL +08/20/2017,Sports_celeb,@prod84,Loving this Diego Najera Deck! Ships next month to Primitive Reserve subscribers. Sign up @ https://t.co/DplPitS7Ka. https://t.co/8HNbSRbQ9d +08/18/2017,Sports_celeb,@prod84,"Get out in the ☀️ this weekend in some @glassysunhaters Hit the link for 10% off: +https://t.co/l2p1jKpIfz https://t.co/g769ZoEMwD" +08/11/2017,Sports_celeb,@prod84,Grab your @glassysunhaters 😎this weekend and get 25% off. https://t.co/upIIOHjhN5 https://t.co/g33XeI1J6F +08/09/2017,Sports_celeb,@prod84,"Want this exclusive @shanejoneill ""Vison Test"" @primitiveskate colorway? It's only available at… https://t.co/c17bxb3qLN" +08/04/2017,Sports_celeb,@prod84,"The @primitiveskate team is having a signing at Boarders tomorrow August 5th from 1-3 Come by and say what's up, if… https://t.co/snpoNWVfp5" +07/24/2017,Sports_celeb,@prod84,RT @primitiveskate: 🤔 https://t.co/0WIWxSbQmf +07/22/2017,Sports_celeb,@prod84,"Available in 7.75, 8, 8.125, 8.38 and 8.5. Subscribe @ https://t.co/DplPitS7Ka https://t.co/su9l4fI5kl" +07/19/2017,Sports_celeb,@prod84,The Primitive Reserve Subscription: https://t.co/f77RWCu5ic via @YouTube +07/15/2017,Sports_celeb,@prod84,Come by the @AgendaShow @primitiveskate booth P3 tomorrow from 1-3 and see the team if your in the area. https://t.co/H8hnKaoMXy +07/12/2017,Sports_celeb,@prod84,Jumping fences with @primitiveskate live tomorrow only on ETN. Get ETN here: https://t.co/5ezC0AlrEY https://t.co/56Vhm7Fkfs +07/07/2017,Sports_celeb,@prod84,Check out the new @primitiveskate Pendleton Zoo edit here: https://t.co/oEYdqygVYb https://t.co/xAMIxhISpe +07/06/2017,Sports_celeb,@prod84,SWITCH IT UP. FRONTSIDE FLIP IN MY #PROD10 https://t.co/kx32tgZdDf https://t.co/X7xagqNbIh +07/03/2017,Sports_celeb,@prod84,Grab your @glassysunhaters for the long weekend here: https://t.co/Jsx0FxVhA1 https://t.co/6PmBnBHE3s +07/03/2017,Sports_celeb,@prod84,NEW WEEK. LET'S GET IT. @nikesb #PROD10 https://t.co/kx32tgZdDf https://t.co/7karYSzpXp +07/01/2017,Sports_celeb,@prod84,BLESSED 🙏🏻 THANK YOU @NIKESB. NEVER IMAGINED THIS. #PROD10 https://t.co/kx32tgZdDf https://t.co/9vWwuMu27h +06/29/2017,Sports_celeb,@prod84,RT @primitiveskate: Primitive Paul Rodriguez Eagle 🦅 Veneer Deck Now Available Exclusively on https://t.co/z1msxuRbxE @prod84 https://t.co/… +06/28/2017,Sports_celeb,@prod84,My new signature @glassysunhaters from the ♠️♥️High Roller collection♣️♦️are back in stock. Get 10% off here:… https://t.co/DOftXsANLx +06/27/2017,Sports_celeb,@prod84,The @primitiveskate Reserve Subscription is available now! https://t.co/DplPitS7Ka https://t.co/AvgTgUKHji +06/26/2017,Sports_celeb,@prod84,I’m still recovering from this workout with lacrosse pro @KyleHarrison18 ! Watch #CanIHang only on @go90Zone… https://t.co/b8Gecrjbnx +06/26/2017,Sports_celeb,@prod84,The Primitive Reserve Monthly Subscription: https://t.co/rz07N5u2y6 via @YouTube +06/25/2017,Sports_celeb,@prod84,New Rosay board @primitiveskate https://t.co/UriKrjBSDz https://t.co/2f0kw8ndQp +06/20/2017,Sports_celeb,@prod84,Paul Rodriguez | 2pac x Primitive Skate: https://t.co/99tXuIBft0 via @YouTube +06/19/2017,Sports_celeb,@prod84,RT @primitiveskate: .@2pac Back in stock: https://t.co/oZXxzMUaIj https://t.co/w4iHi442Q0 +06/19/2017,Sports_celeb,@prod84,.@MightyMouseUFC is a beast! This is one session I won’t forget. Watch #CanIHang on @go90Zone Full episode here:… https://t.co/uiSizOLm5N +06/17/2017,Sports_celeb,@prod84,🙏🏻 @primitiveskate X @2pac 🙏🏻 available now. Pick yours up here: https://t.co/LuSpquTX1U https://t.co/IuBfm1ZbbE +06/16/2017,Sports_celeb,@prod84,Hyped these have been re-released on https://t.co/UriKrjBSDz. @2pac @primitiveskate 🙌🏽 https://t.co/QGIWPUUdRb +06/15/2017,Sports_celeb,@prod84,Vision Test series 💪🏽 https://t.co/UriKrjBSDz. @primitiveskate https://t.co/t1V9TVpf2w +06/13/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84's Jungle Cat board is available now in shops and online at https://t.co/TH4m7sh0BE. https://t.co/EPmDLcVb7w +06/13/2017,Sports_celeb,@prod84,What an achievement. Ten is Rafa. #VamosRafa #justdoit #nike https://t.co/4wkQjFoM9G +06/12/2017,Sports_celeb,@prod84,.@tonyfinaugolf I am counting on you to get me @PGATOUR ready! Watch #CanIHang on @go90 https://t.co/eVDOtcbSvd https://t.co/BlOvzpyn5J +06/09/2017,Sports_celeb,@prod84,The @primitiveskate crew and I will be at @Warningsk8shop tomorrow 1-3 for a team signing. If you're in the area st… https://t.co/TMvLL13btt +06/09/2017,Sports_celeb,@prod84,Get out in the ☀️ this weekend in some @glassysunhaters Hit the link for 10% off: https://t.co/l2p1jKpIfz https://t.co/z3vnaYj7d9 +06/09/2017,Sports_celeb,@prod84,"Setting up the new @primitiveskate ""Jungle Cat"" 📷 @ParrisWalker_ https://t.co/7AsHClhBcn" +06/05/2017,Sports_celeb,@prod84,I may never recover from @kohara19 soccer drills. Watch me sweat this week on #CanIHang only on @go90Zone… https://t.co/6FZqyy7wH8 +06/03/2017,Sports_celeb,@prod84,Get out this weekend in the ☀️ with my signature shades from @glassysunhaters Grab yours here:… https://t.co/sQZLrDncqG +06/02/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84's Jungle Cat deck is available now at finer shops and online at https://t.co/TH4m7sh0BE. https://t.co/DVv5ppKP… +05/30/2017,Sports_celeb,@prod84,Never thought I would try Cyrotherapy – things got chilly with @bonner_bolton ! Watch #CanIHang only on @go90Zone… https://t.co/odUCWAxn4v +05/28/2017,Sports_celeb,@prod84,Shop and save all weekend at https://t.co/UriKrjBSDz 👌 https://t.co/VaHmddIlwM +05/24/2017,Sports_celeb,@prod84,RT @theotisbeasley: My new @nikesb video part is now live on https://t.co/UP8LhUkR9K. Watch it at https://t.co/r268ZOGTIz. @transworldskate… +05/22/2017,Sports_celeb,@prod84,Dodger legend @yungjoc650 taught me some things about my bat flip. Watch #CanIHang & see if I mastered it @go90Zone… https://t.co/C5aMzLm3Gf +05/22/2017,Sports_celeb,@prod84,. @CarlosRibeirol @primitiveskate #macbalife https://t.co/4GFHnzuj7V +05/18/2017,Sports_celeb,@prod84,Hyped on Diego Najera's new @primitiveskate deck. Available now in shops & https://t.co/UriKrjBSDz. https://t.co/14nghpMs3z +05/16/2017,Sports_celeb,@prod84,PAUL RODRIGUEZ I TRUE FORM: https://t.co/UPc0tuxPSa via @YouTube +05/15/2017,Sports_celeb,@prod84,Who do you think has a better jump shot – me or @realtuffjuice ? Find out on this week’s #CanIHang only on… https://t.co/DDaf6FIAJR +05/15/2017,Sports_celeb,@prod84,"RT @primitiveskate: 36-24-36. Carlos Ribeiro ""Little in the Middle"" deck available in finer shops and at https://t.co/TH4m7sh0BE. #primitiv…" +05/12/2017,Sports_celeb,@prod84,"Check out the new @primitiveskate Vision Test East coast promo, all filmed in 2 weeks 😳 Full edit here:… https://t.co/azMqT4Evm6" +05/12/2017,Sports_celeb,@prod84,"RT @instantdotme: YOOOO, @Prod84 is taking over our Snapchat today! Be sure to follow along here on our account. Add us here👻 https://t.co/…" +05/11/2017,Sports_celeb,@prod84,That new new @primitiveskate. https://t.co/A5rdeYFs0H. https://t.co/Dk9dK9K5Zn +05/08/2017,Sports_celeb,@prod84,Think I can hang with an Olympic Athlete? Watch me “train” w/ @allysonfelix on #CanIHang now on @go90Zone… https://t.co/ez4Hb6yKwe +05/05/2017,Sports_celeb,@prod84,My new signature @glassysunhaters from the ♠️♥️High Roller collection♣️♦️are now available. ☑️Get yours here:… https://t.co/ecpLS3ylxf +05/04/2017,Sports_celeb,@prod84,#TBT 📷 @blabacphoto https://t.co/PNkIZnpxZ8 +05/04/2017,Sports_celeb,@prod84,Went head to head with my boy @Mikey_Tay1or on @TransWorldSKATE newest episode of Skate Nerd. Who do you think won?… https://t.co/Qf9fZXogMN +05/03/2017,Sports_celeb,@prod84,"Note to self: Don’t drop the ball! Thanks for the lesson, @JabrillPeppers Check out #CanIHang now on @go90… https://t.co/Mvtvd2bRNW" +05/01/2017,Sports_celeb,@prod84,Super excited to share a sneak peek of my new show #CanIHang Check out the premiere episode only on @go90… https://t.co/G5zfbC2LaW +04/29/2017,Sports_celeb,@prod84,"Carlos Ribeiro Fruit Party deck, available now: https://t.co/oH5TVppRm9 https://t.co/QAyB3fYSPI" +04/28/2017,Sports_celeb,@prod84,Welcome to the squad @laceybaker @nikesb https://t.co/26rq3GByWc +04/27/2017,Sports_celeb,@prod84,"As you know I love a good cigar. See why on the latest episode of ""Obsessed"" from @go90 at https://t.co/s8QsDjEI21… https://t.co/CdMGJSNd1i" +04/27/2017,Sports_celeb,@prod84,😍 @primitiveskate https://t.co/QsKH18zfqx +04/25/2017,Sports_celeb,@prod84,Need help with nollie late flips? @CarlosRibeirol has you covered. Check his trick tip. @nikesb https://t.co/wd3jWTBMAa +04/21/2017,Sports_celeb,@prod84,"Devine Calloway ""Doves"" @primitiveskate board available now at your local shop and https://t.co/UriKrjBSDz https://t.co/uOcShKWLB8" +04/21/2017,Sports_celeb,@prod84,Get out and enjoy the ☀️ this weekend with @glassysunhaters Grab 10% off here: https://t.co/mGPq7KyGfu https://t.co/YaT3j1rTSo +04/14/2017,Sports_celeb,@prod84,"New @primitiveskate ""Vision Test"" decks available in shops and at https://t.co/UriKrjBSDz. https://t.co/iqEfTWCsn5" +04/09/2017,Sports_celeb,@prod84,RT @primitiveskate: Vision Test series available now at https://t.co/TH4m7sh0BE. Free shipping and grip in the US. https://t.co/UEGo2rgabR +04/08/2017,Sports_celeb,@prod84,"RT @primitiveskate: .@prod84 ""Late Fee"" board, available now online and in shops. https://t.co/asr3XgYfSl 🍿 #primitiveskate https://t.co/UH…" +04/05/2017,Sports_celeb,@prod84,"Looking forward to Saturday, who's coming through? @primitiveskate https://t.co/LcloGmX5Mg" +04/04/2017,Sports_celeb,@prod84,.@primitiveskate available at https://t.co/00S3yU4Y8R https://t.co/Xk9TnesyI9 +03/30/2017,Sports_celeb,@prod84,RT @primitiveskate: New Mexico April 8th! Who's rolling through? #primitiveskate https://t.co/QqB4M84B6c +03/28/2017,Sports_celeb,@prod84,Watch me fool a fan on @realchriswebber #FullCourtPranks TONIGHT 10/9C @truTV https://t.co/PJVnJhlXyp +03/21/2017,Sports_celeb,@prod84,"Catch me sweeping some steps and more this year during the 2017 @StreetLeague @nikesb World Tour +Tickets go on sale… https://t.co/uzUrvso4he" +03/20/2017,Sports_celeb,@prod84,This is not the new @shanejoneill part is 🔥 Watch it here: https://t.co/AarXCtWVPo https://t.co/ug79xaLYkH +03/17/2017,Sports_celeb,@prod84,"Keep it classy this St. Patty's ☘️with @glassysunhaters ☘️ +https://t.co/l2p1jKpIfz https://t.co/NXIvXWaXgn" +03/17/2017,Sports_celeb,@prod84,Gearing up for the weekend. Where are you guys hitting up for the weekend sesh? @primitiveskate https://t.co/VqBp6cP38M +03/16/2017,Sports_celeb,@prod84,Setup a fresh @primitiveskate @nicktucker deck. The old one has allot of life left so I gave it to a kid that could… https://t.co/18VoCDTssr +03/15/2017,Sports_celeb,@prod84,"Foooour Wheels Live! Episode #5 Me vs. @jeremerogers premieres tonight at 6pm pst only on ETN +Download in the App… https://t.co/4hVFXrJtP3" +03/14/2017,Sports_celeb,@prod84,Sammy Perales from our @primitiveskate warehouse just dropped a part 📹 by: Kyle Steneide Full part here:… https://t.co/7DvtndrLoZ +03/14/2017,Sports_celeb,@prod84,"Sam Perales ""Look Ahead "" Part: https://t.co/Vfc7bNTlbo via @YouTube" +03/11/2017,Sports_celeb,@prod84,Get out in the ☀️ this weekend with @glassysunhaters 😎. Get 10% off here: https://t.co/l2p1jKpIfz https://t.co/Gj9CwLNBLc +03/09/2017,Sports_celeb,@prod84,"The @nikesb Dunk, 15 years & still going strong. ☑️ the @VICE documentary on the dunks history at… https://t.co/DoOGqY3vfU" +03/03/2017,Sports_celeb,@prod84,"Check out the new @SDiegoNajera ""Homecoming"" video and watch Diego's journey to becoming @primitiveskate newest pro… https://t.co/CEBWMEYbXQ" +03/01/2017,Sports_celeb,@prod84,"RT @nikesb: Back in classic form, @Sean_Malto kicks off the Elite Squad video series. + +Watch https://t.co/fHmWMreNqm https://t.co/UihrwcOmXw" +03/01/2017,Sports_celeb,@prod84,"RT @primitiveskate: .@prod84's new ""Late Fee"" deck is available now at https://t.co/HdFELfGlZK https://t.co/4b8gUITkEQ" +03/01/2017,Sports_celeb,@prod84,"My new @primitiveskate ""Late Fee"" board is available now. Check it and the other new Spring drops.… https://t.co/6x7vhwQOjV" +02/27/2017,Sports_celeb,@prod84,RT @primitiveskate: Happy Birthday to our CEO and #PrimitiveSkate founder @heathmoe seen here smith grinding in Toronto on our Canada tour… +02/26/2017,Sports_celeb,@prod84,"RT @nikesb: From an icon to a young gun. Introducing the Nike SB Dunk Elite x @sean_malto. +Learn more https://t.co/T6qz4pQKSN https://t.co…" +02/25/2017,Sports_celeb,@prod84,It's essential to make sure the photographer's camera is always ✨📷✨ https://t.co/JH5HiTNSGf +02/25/2017,Sports_celeb,@prod84,"RT @nikesb: Classic silhouette. Remixed for 2017. +The Nike SB Dunk Elite. Designed by @sean_malto. +Learn more https://t.co/T6qz4pQKSN https…" +02/25/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84 drizzling the crunchiest of run ups with the polyester resin we know and love as Bondo 📷 Oliver Barton #Primit… +02/24/2017,Sports_celeb,@prod84,#tbt stair hopping 📹 Kyle Steneide @primitiveskate https://t.co/v9NalEwa95 +02/24/2017,Sports_celeb,@prod84,"RT @VentureTrucks: Hit the link below to see everything new from the Venture squad for Spring 👑 + +https://t.co/QYjxns8SFw https://t.co/VlLuo…" +02/23/2017,Sports_celeb,@prod84,"RT @nikesb: The Nike SB Dunk OG HI. + +🌎🌍🌏 https://t.co/SgiCMCrNfk +🇺🇸 (7AM PST) https://t.co/DKcNO0h7BH" +02/23/2017,Sports_celeb,@prod84,A Lil something from yesterday....🎥 Alan Hannon @primitiveskate https://t.co/61l4lapXT0 +09/13/2016,Sports_celeb,@BAM_MARGERA,Enter to win a new iPhone 7 https://t.co/sbW6wq7exP #win #apple #iphone7 #winiphone7 #giveaway +11/03/2015,Sports_celeb,@BAM_MARGERA,Support my friend's new project by liking her page! #anaanamusic #shylove #berlin https://t.co/3vgxkbkKv7 https://t.co/TTv7RiBaEM +08/19/2015,Sports_celeb,@BAM_MARGERA,If you like dark electro pop – this is the account to follow: @AnaAnaMusic /BM +08/19/2015,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: I've heard of the junk in the trunk but had never imagined the flip side of that.😳🐘 http://t.co/98KO7TfK3u +08/19/2015,Sports_celeb,@BAM_MARGERA,"RT @30SECONDSTOMARS: I would've kept you forever, but we had to sever. ✖️ http://t.co/iW7LnBjwSF #ATTACK #MARSX #ABeautifulLie" +08/19/2015,Sports_celeb,@BAM_MARGERA,"Hey check out my friend's new music project ANA ANA: https://t.co/LUvq0WEWNS +https://t.co/Y2RG6rDkDl /Cheers, BM" +03/10/2014,Sports_celeb,@BAM_MARGERA,Wow much Miley. http://t.co/Qf9HVpcABm +12/23/2013,Sports_celeb,@BAM_MARGERA,RT @jeremysaffer: the @metalinsider top shoots of 13 @AWhiteGluz @twbd @bam_margera @chrismotionless @montepittman @PiggyD @MissScabbia htt… +10/16/2012,Sports_celeb,@BAM_MARGERA,RT @thekatvond: Fear is so damn frustrating. +10/12/2012,Sports_celeb,@BAM_MARGERA,RT @deadmau5: FUCK YEAH HALLOWEEN!!!!! http://t.co/3g7Jv4oR +10/11/2012,Sports_celeb,@BAM_MARGERA,"RT @RyanSeacrest: So much ending this year…The Office, Jersey Shore, Twilight, Gossip Girl, LMFAO. Maybe the Mayans are right." +10/11/2012,Sports_celeb,@BAM_MARGERA,RT @thekatvond: ...too romantic for my own good... +10/10/2012,Sports_celeb,@BAM_MARGERA,"RT @hollymadison: Goodnight, Friends! http://t.co/WQYtRlSg" +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: forever inked... RT @NIKKY3TEARS: Dunn tribute tat! #tattoo http://t.co/xFDwbzaN +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: RT @dickhouseworld: cute product alert: @LyRokz wrist bands http://t.co/Qkh5ROcv +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: I see this all over town too much! #NYC really needs to work on this issue!!! http://t.co/BuEgV5Ok +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @katyperry: Something's brewing... http://t.co/aiIWC8jZ +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @deadmau5: every try pumpkin butter? yeah me neither. +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: The 30 Worst Dressed Celebs From The 2012 Awards Season! http://t.co/7FU2DSGp +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @CNN: Skydiver aims for supersonic jump from the edge of space: http://t.co/E5NyaB11 +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: RT @dickhouseworld: new episode of @ridiculousness tonite on @mtv 10/9C.—guest stars @NikkiBellaWWE and @WWE_BrieBella ... +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: what the man under the rainbow said! RT @dickhouseworld: happy birthday to @TravisPastrana! http://t.co/KVbyFmRU +10/09/2012,Sports_celeb,@BAM_MARGERA,"RT @matdevineslife: ""Death in the Afternoon"": absinthe and champagne" +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: The cold air reminds me of my family up north. I feel at peace right now. Love the night. It's when I feel most ali ... +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @NiallOfficial: Just got home and look what @new_era_caps have sent me! Thank you soo much ! #iloveasnapback http://t.co/6wWFCksl +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @JimCampbellTFR: DOG NEWS: Dog opens newly delivered iPhone 5. Dog thinks dog has helped http://t.co/Mw8iXyNA +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @MamBargera: We all need more Bam Margera in our lives. The world would be a better place. +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @batiekear: I liked a @YouTube video from @honeaa http://t.co/5Sb2Ml1I Bam Margera reads Fifty Shades of Grey +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @thesulk: I watch old tv shows because it keeps me connected to the me who no longer exists. +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: i have testicles—two testicles. RT @julioguaramata: @jackassworld I met and my best gift would be that i followed and ... +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @realjknoxville: Much love and respect to Frank Ocean. A brave thing to do, and the right thing to do. Sincerely, Knoxville" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: I'm on SpongeBob this Saturday the 21st at 800pm Eastern. Here's a pic of my character. I play stuntman Johnny Krill ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @PaulCastronovo: @SteveO @PaulandYoungRon The legend Steve o on our show now #jackass +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: My friend @JohnHannafin is having an art show! Open Studio TONIGHT 6-9 during West Chester GalleryWalk!! 19S.Church ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @matdevineslife: Start your Friday smiling to a nice little Mel Gibson rant tape http://t.co/buvIn0l9 +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @SkateboardMag: Free Fabes Lost Part http://t.co/Xxu7lT4c +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Sisqo305: @steveo tattooing at the show.. http://t.co/OtrPVyDu +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @nicolerichie: ""I had my 15 minutes of fame"" - Laser Discs" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: Chris Brown's Ex Karrueche Tran Is Broken Up & Blames Rihanna For Split! http://t.co/lUV7WPiJ +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @dickhouseworld: photo of the day with @iamweeman, @PrestonLacy and @rickkosick ... oompa loompas are for the birds! http://t.co/7GEFWoCl" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: peeping wee wee man... RT @PrestonLacy: This is why you should always look both ways before peeing. http://t.co/DQ96sUbK +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @matdevineslife: ""When you think that in this cold, violent universe that Paris exists- There's nothing happening on Jupiter or Neptu ..." +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @tonyhawk: If anyone wants to buy cool prints of my IG photos: http://t.co/ZO7d7kEn or just print them yourself; I've http://t.co/ku ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: Learning to skydive. Somewhere over lake perris california. http://t.co/rlFvAOZ2 +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: “@NicolO_idiot: bueno ahora me voy eschando buen rock !! a @hellocleve como me encanta la voz de @Ryan__cleveland ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @30SECONDSTOMARS: The Latest from THE LAB - http://t.co/Z7mt7dti +09/07/2012,Sports_celeb,@BAM_MARGERA,"Hey, vote for my buddy CHRISTOPH GROMER http://t.co/mH26Fzxa LOVE. BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"Hey, please vote for my buddy CHRISTOPH GROMER: http://t.co/mH26Fzxa +Love BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"I need YOUR help! Vote for CHRISTOPH GROMER http://t.co/mH26Fzxa + +<3 BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"show me some follower power and vote for CHRISTOPH GROMER http://t.co/mH26Fzxa +<3 BM" +09/04/2012,Sports_celeb,@BAM_MARGERA,"heeey, please vote for my buddy CHRISTOPH GROMER http://t.co/mH26Fzxa + +love, BM" +09/14/2011,Sports_celeb,@BAM_MARGERA,@jackassworld please RT and help my friend Andre by voting here: http://t.co/kWd22iT BM +12/13/2016,Sports_celeb,@TravisPastrana,Check out what our @ObertoBeefJerky contest winners got to do when they visited Pastranaland! Always a good time!… https://t.co/eoH9CBFGJ6 +11/30/2015,Sports_celeb,@TravisPastrana,Don't miss out on the @ethika Cyber Monday sale starting tomorrow at https://t.co/ScCKJDKHdv!! https://t.co/AHuoOffWHp +10/21/2015,Sports_celeb,@TravisPastrana,RT @R2Rfoundation: Join us & the @NitroCircus crew Nov. 5th from 7-10pm at @k1speed in Torrance! https://t.co/PnG7qJva21 #RaceforRoner http… +10/09/2015,Sports_celeb,@TravisPastrana,#trustfall #lifeONtour @NitroCircus @sheenyfmx Filming credit to @Toddmeyn http://t.co/MTVdZkHQxK +09/26/2015,Sports_celeb,@TravisPastrana,Watch @JDayGolf’s crazy journey to the top of the golf world in #NeverSayDie https://t.co/TXso4c8efk +09/26/2015,Sports_celeb,@TravisPastrana,Happy birthday! https://t.co/NNeXhXqyNn +09/26/2015,Sports_celeb,@TravisPastrana,"RT @MikeAdamOnAir: .@TravisPastrana (from @NitroCircus) talks fears, family, and MORE! Watch: http://t.co/JNsxP6i5pu #TravisPastrana http:/…" +06/18/2015,Sports_celeb,@TravisPastrana,RT @redbull: #TBT to a sick @TravisPastrana backflip (at the 1:00 mark): http://t.co/xGQKviTFtB http://t.co/Xqx1ZA7fRm +06/07/2015,Sports_celeb,@TravisPastrana,"RT @FruitOfTheLoom: Travis got bucked, but stayed tucked. Check out his unbelievaBull #XGames performance. #TuckTest http://t.co/0UMvlb0PSL" +06/06/2015,Sports_celeb,@TravisPastrana,RT @FruitOfTheLoom: LIVE on #Periscope: @TravisPastrana rides our @FruitoftheLoom mechanical bull #TuckTest @XGames! #xgames https://t.co/x… +06/06/2015,Sports_celeb,@TravisPastrana,I’m about to ride a mechanical bull @XGames with @FruitoftheLoom. Watch live on #Periscope! #TuckTest #XGames +06/05/2015,Sports_celeb,@TravisPastrana,#XGames Correction: I’m riding the mechanical bull at the @FruitoftheLoom #TuckTest tent 3-5PM Sat. Pics + autographs too. See u there. +06/05/2015,Sports_celeb,@TravisPastrana,Hey all. I’ll be riding the mechanical bull @FruitoftheLoom’s #TuckTest event tomorrow at the #XGames from 5-7PM. Who’s in?! +06/03/2015,Sports_celeb,@TravisPastrana,"#Truth, I’m in the new @SkylandersGame SuperChargers trailer! #Skylanders http://t.co/Qof7Zy7egZ http://t.co/zxi35A64kP" +04/03/2015,Sports_celeb,@TravisPastrana,You can support @R2Rfoundation & win an exclusive VIP package to this year’s @MotoGP at @circuitamericas here http://t.co/AQc90sb6qs +04/02/2015,Sports_celeb,@TravisPastrana,"Looks like @mattwhyattrides and I have a different way to get ready for @nitrocircus.. 👍 @redbull +https://t.co/uMdlXrZXle" +03/30/2015,Sports_celeb,@TravisPastrana,Forgot about the steering wheel being on the right side of the car here in Australia.. http://t.co/vCltdBkmGw +03/26/2015,Sports_celeb,@TravisPastrana,"Having some fun in Australia with @wcmx4life +https://t.co/KQKVN6hRT2" +03/05/2015,Sports_celeb,@TravisPastrana,RT @KMCWheels: The #Mint400 Pit Crew Challenge presented by #KMCwheels is just over a week away. Here's a sneak peek at the... http://t.co… +02/17/2015,Sports_celeb,@TravisPastrana,"""On Any Sunday, The Next Chapter"" is now available and it's epic. Check out http://t.co/uBmDTGBfIy to watch it now. +https://t.co/a9W4Bs15I0" +01/29/2015,Sports_celeb,@TravisPastrana,Epic day w/ the @nitrocircus crew. @jedmildon knows how to build a roll in! His bmx jumps are bigger than fmx jumps http://t.co/cGeGh16UDr +01/27/2015,Sports_celeb,@TravisPastrana,"Here's to the next one billion views @redbull 👍👍 + +https://t.co/nQ1w9WJXaY" +01/18/2015,Sports_celeb,@TravisPastrana,Epic Sx lites race @minicoop175 impressive never giving up/riding his ass off @tbowers911 wins interview of year! rest of season will be fun +01/16/2015,Sports_celeb,@TravisPastrana,"Still pumped on the @redbull @PolarisRZR Camp Ride in Glamis with @BryceMenzies7, @rendawgfmx & @Levi_LaVallee https://t.co/LN863JtDeI" +12/18/2014,Sports_celeb,@TravisPastrana,Went to Abu Dhabi for a @nitrocircus show & stayed and filmed for the tv show. Epic adventures with the crew. http://t.co/rY71lGIjM2 +10/17/2014,Sports_celeb,@TravisPastrana,Great work as always by @redbull http://t.co/5vyW7urLD0 #artOfRacing #RedBullGRC +10/16/2014,Sports_celeb,@TravisPastrana,@NitroCircus @StreetBikeTommy @Erikroner @chadkagy @Special_Greg @raedrianalynne won my signed helmet - she tweeted through the pain! +10/16/2014,Sports_celeb,@TravisPastrana,"@raedrianalynne @NitroCircus we love working through the pain, so you're the winner of my signed helmet! send a DM to @NitroCircus to get it" +10/16/2014,Sports_celeb,@TravisPastrana,"@EpicSmurf_tw early 2016, we loved Glasgow and can't wait to get back" +10/16/2014,Sports_celeb,@TravisPastrana,@ChaseThomas_27 @NitroCircus what's up! #NitroCircusLive +10/16/2014,Sports_celeb,@TravisPastrana,@lawlessmatt3 get ready for the 2015 schedule announcement soon! +10/16/2014,Sports_celeb,@TravisPastrana,@shawnmacgregor @NitroCircus get ready for the announcement of new tour dates....... I think you are going to be pumped! #NitroCircusLive +10/16/2014,Sports_celeb,@TravisPastrana,"@chasegravens31 @NitroCircus they are specially built, but I am trying to get someone to make more of them, they are awesome" +10/16/2014,Sports_celeb,@TravisPastrana,"@KyleRamsey64 straight rhythm was awesome! 500cc 2 stroke, are you kidding #nitrocircuslive" +10/16/2014,Sports_celeb,@TravisPastrana,"@julia_a__ i didn't, but we coming back to Canada next year, so I want to!" +10/16/2014,Sports_celeb,@TravisPastrana,"@CassiFinkbeiner @StreetBikeTommy @Special_Greg @chadkagy @Erikroner The front flip is scary, but all the bicycle tricks scare me most" +10/16/2014,Sports_celeb,@TravisPastrana,@alexyess596 traveling the World with all your best friends is amazing! #nitrocircuslive +10/16/2014,Sports_celeb,@TravisPastrana,Is everybody ready for #nitrocircuslive on @MTV2 I've got a prize for someone at the end of the episode! +10/09/2014,Sports_celeb,@TravisPastrana,@NitroCircus @Rav_413 +10/09/2014,Sports_celeb,@TravisPastrana,@NitroCircus Rad Ravi got the helmet and signed poster! +10/09/2014,Sports_celeb,@TravisPastrana,"@Rav_413 well Rad Ravi.. Hopefully I'll get to meet you one day but until then, have fun and be safe! You r the winner of a new AGV helmet!" +10/09/2014,Sports_celeb,@TravisPastrana,@julia_a__ @StreetBikeTommy @chadkagy @Special_Greg @Erikroner @BilkoFMX Thanks for watching and being a part of it! +10/09/2014,Sports_celeb,@TravisPastrana,@BilkoFMX @kaelagonzalez16 @NitroCircus negative ghost rider! haha. I've done those and I hate them! but it's fun watching bilko! +10/09/2014,Sports_celeb,@TravisPastrana,@iluvracing42 @NitroCircus Not yet! just getting her on the strider! +10/09/2014,Sports_celeb,@TravisPastrana,@Hthomas80 @StreetBikeTommy @chadkagy @BilkoFMX @Special_Greg @Erikroner my parents. It's what we did as a family on the weekends growing up +10/09/2014,Sports_celeb,@TravisPastrana,@JoyLSvoboda @NitroCircus @StreetBikeTommy @BilkoFMX @Erikroner @Special_Greg The guys are good at crashing. surprisingly few injuries.. +10/09/2014,Sports_celeb,@TravisPastrana,@MelCross18 @NitroCircus we are always testing new ramps and landings. #ActionFiguresTheMovie will highlight a lot of what we hope to bring +10/09/2014,Sports_celeb,@TravisPastrana,@cjstrong34 @NitroCircus @Erikroner @StreetBikeTommy @chadkagy @Special_Greg @BilkoFMX Everyone sends it but @Madd_RWilly is ridiculous +10/09/2014,Sports_celeb,@TravisPastrana,@729IGH @lynzskate I need handlebars! haha. I'm so uncoordinated on boards. love to watch my wife on hers though. +10/09/2014,Sports_celeb,@TravisPastrana,@scotty33fleming @NitroCircus @Erikroner @StreetBikeTommy @chadkagy @Special_Greg @BilkoFMX The catering is amazing! I agree with erik! +10/09/2014,Sports_celeb,@TravisPastrana,@bfresh2424 Thanks! +10/09/2014,Sports_celeb,@TravisPastrana,@ABC4StormChaser it was pretty harsh. my head was only a few inches from the top of the truck so there wasn't much suspension upside down! +10/09/2014,Sports_celeb,@TravisPastrana,@ParadiseXxLostX @BilkoFMX @StreetBikeTommy @Special_Greg @chadkagy Getting to travel with friends + family and challenge yourself everyday +10/09/2014,Sports_celeb,@TravisPastrana,"@julia_a__ no sleep and trying to push yourself night after night when your tired. when one person gets sick on tour, everyone gets sick." +10/09/2014,Sports_celeb,@TravisPastrana,@HunterDillon19 it feels like every new stunt is the craziest! I think anytime you don't know what's going to happen feels equally bad! +10/09/2014,Sports_celeb,@TravisPastrana,@TinaThomsen4 @NitroCircus @Erikroner @StreetBikeTommy @BilkoFMX Nice Bilko. I do it because i get to be around my family and awesome people +10/09/2014,Sports_celeb,@TravisPastrana,@Bianca_X23 @StreetBikeTommy surprises a lot of people with his trampoline and drift skills.. but i was shocked he didn't roll the car! +10/09/2014,Sports_celeb,@TravisPastrana,@BALLER__15 @NitroCircus anyone passionate about their sport who's pushing the limits of what's been done in their sport will catch our eye. +10/09/2014,Sports_celeb,@TravisPastrana,@sparks99_1 @nitrocircuslive careful what you ask for! haha. been a lot of fun but scary! lots of new ramps and tricks with mixed results +10/09/2014,Sports_celeb,@TravisPastrana,@HulaSandia @t_yates1 @StreetBikeTommy @NitroCircus yeehaa! thanks for watching. +10/09/2014,Sports_celeb,@TravisPastrana,@OSnapItzAshley1 we never expected there would be so many people like us in the world. It's been an amazing ride and it keeps getting better +10/09/2014,Sports_celeb,@TravisPastrana,tweeting during World premiere of @NitroCircus Live Season4 on MTV2 @ 11pm ET. Use my @ & #nitrocircuslive 2 ask ? 1 will win an agv helmet +09/17/2014,Sports_celeb,@TravisPastrana,Wow #BJBaldwin really getting creative in his trophy truck! #recoilTWO http://t.co/YOTeVPPD1X +09/11/2014,Sports_celeb,@TravisPastrana,RT @redbull: .@TravisPastrana is in for Red Bull Straight Rhythm http://t.co/Ul7PdRucPp http://t.co/0F3M8o6ul2 +09/11/2014,Sports_celeb,@TravisPastrana,"Officially throwing my leg over the 500 RM-Zilla for @redbull #straightrhythm! http://t.co/3tGcIoV81V +https://t.co/kxVvk0hLOw" +08/21/2014,Sports_celeb,@TravisPastrana,Happy birthday @BryceMenzies7! http://t.co/C1ytEP3KoQ +08/21/2014,Sports_celeb,@TravisPastrana,RT @redbull: How long can you hold your breath? #RBHighPerformance takes athletes to new depths in Hawaii http://t.co/2aUdiuXUz6 http://t.c… +08/20/2014,Sports_celeb,@TravisPastrana,The ocean floor was over 100 feet down & 1/2 of us made the trip! #RBHighPerformance http://t.co/NUAQVWWPuM http://t.co/7F9q6GI3Ry +08/16/2014,Sports_celeb,@TravisPastrana,Stoked to see the @roushfenway #60 car in Victory Lane today at the #NCH200!! Congrats @Chris_Buescher! http://t.co/b8wYdMw94f +08/13/2014,Sports_celeb,@TravisPastrana,Submit your best off road pic using #PlayGroundEarthApproved & you could win a trip for 2 to the Vegas @LOORRS race http://t.co/u94rAdhGQF +08/05/2014,Sports_celeb,@TravisPastrana,First day of the #rbhighperformance free diving class. In the 4minute breath hold club with these guys! http://t.co/rSDUBsWnin +07/29/2014,Sports_celeb,@TravisPastrana,Thanks to @BFGoodrichTires for putting together this video from my #LOORRS debut http://t.co/3lnyzpLv9r #BFGRacing #BFGoodrich #BFGPlay +07/06/2014,Sports_celeb,@TravisPastrana,"RT @redbull: Tune in NOW as @RBSigSeries continues the action for #TheMint400onNBC! http://t.co/chUSLWFeKq +https://t.co/dNVnxgh271" +06/24/2014,Sports_celeb,@TravisPastrana,RT @BryceMenzies7: Make sure you tune into @nbc July 6th at 11am PST to watch @travispastrana & myself take on @themint400 @RBSigSeries htt… +06/16/2014,Sports_celeb,@TravisPastrana,RT @RBSigSeries: Watch @TravisPastrana kick up dirt with the best of them in #TheMint400onNBC July 6. http://t.co/4JeYbKxr35 +06/10/2014,Sports_celeb,@TravisPastrana,"In the 4 qualifying rounds I took 1st, 2nd, 3rd, & 4th in the semis. Thx to @srtusa for the epic car & all the work. http://t.co/xqfmAR8Kle" +06/06/2014,Sports_celeb,@TravisPastrana,Won my first heat race here at @XGames #Austin. My @redbull @srtusa #subaru is on point. Happy to be back in the hunt http://t.co/rXVY9qimv0 +06/05/2014,Sports_celeb,@TravisPastrana,I'm giving away 4 signed @kmcwheels that I'm running at @xgames this weekend. Click here for your chance to win http://t.co/PLSL9e6gR3 +05/21/2014,Sports_celeb,@TravisPastrana,Check out the @dcshoes DEFYCONVENTION \ 20 YEARS OF DC IN PHOTOGRAPHS book at: http://t.co/f4HTcMBZhn http://t.co/B9RHppuWMi +04/26/2014,Sports_celeb,@TravisPastrana,Almost time to go racing at @LOORRS with @MenziesRacing! Thanks for the tips @BryceMenzies7 and @therickyjohnson http://t.co/HhsZkd1FRf +04/25/2014,Sports_celeb,@TravisPastrana,RT @LOORRS: travispastrana - Getting some tech done. @menziesracing http://t.co/ZsZQs6d95a +04/24/2014,Sports_celeb,@TravisPastrana,"Hello #GKCfest! @trevorjacob93 invited us up for the shenanigans! Mx, bmx,ladder bridge road gaps for mtn bikes http://t.co/XkcaJfjQiP" +04/17/2014,Sports_celeb,@TravisPastrana,"RT @runnersworld: WATCH: @JSpithill, skipper of the yacht that won the America's Cup, shares his training regimen: http://t.co/jCpKMKgAaB #…" +04/17/2014,Sports_celeb,@TravisPastrana,RT @caseywasserman: I’m supporting the #RBCGolf4Kids Challenge. Who are you backing? http://t.co/bsSqjyvXeW I’m backing #RBCAmes #RBCMahan … +04/17/2014,Sports_celeb,@TravisPastrana,"My mom is the best.. ""Gram"" went all out for Addy's first Easter celebration! http://t.co/10G5mT5ic9" +04/02/2014,Sports_celeb,@TravisPastrana,What is your ultimate playground? Your best shots tagged with #UltimatePlayground could get you some great prizes http://t.co/NQFn4BCKdQ +03/21/2014,Sports_celeb,@TravisPastrana,RT @redbull: Who picked Kansas to take it to the house? This guy! Here's @TravisPastrana's #RedBullBracket http://t.co/NtCpz11pEt http://t.… +03/15/2014,Sports_celeb,@TravisPastrana,Almost time at the #mint400 @redbull http://t.co/9QgerM7c6n +03/14/2014,Sports_celeb,@TravisPastrana,RT @Swellboardshop: Now open Saturday March 15th in Mooresville off exit 31 and Hwy 77 at Langtree at the Lake. Stop by… http://t.co/mkedAo… +03/13/2014,Sports_celeb,@TravisPastrana,RT @redbull: Wings for Life #WorldRun: Barney’s everyday story: http://t.co/pYioSE9lO6 http://t.co/uq16AGDT85 +03/12/2014,Sports_celeb,@TravisPastrana,Want to win a signed piece of the truck I'm racing at @TheMint400Race? Enter here: http://t.co/4JFPRZ2Nxp +03/11/2014,Sports_celeb,@TravisPastrana,RT @redbull: Ever wondered how @TravisPastrana and @NitroCircus come up with their gnarly tricks? #WhatIf http://t.co/le8sVxTS1p http://t.c… +02/24/2014,Sports_celeb,@TravisPastrana,Can't wait to race my @MenziesRacing prepped TT at the #Mint400 with @BryceMenzies7 http://t.co/eoOfy6OWmo +01/26/2014,Sports_celeb,@TravisPastrana,RT @BryceMenzies7: Had such a sick time at @NitroCircus last night! http://t.co/DXdEqZSwCu +12/23/2013,Sports_celeb,@TravisPastrana,@T_Davidson543 happy birthday buddy +12/18/2013,Sports_celeb,@TravisPastrana,"BTW, don't know when @MTV2 is going to announce this, but we filmed 2 bonus eps in Russia - they'll be ready in early 2014! #nitrocircuslive" +12/18/2013,Sports_celeb,@TravisPastrana,Wasn't that the greatest episode of #nitrocircuslive on @MTV2 ? I can't wait for the next Pastranland fun! +12/18/2013,Sports_celeb,@TravisPastrana,@pfelgner #nitrocircuslive sure will be! You? +12/18/2013,Sports_celeb,@TravisPastrana,@sparks99_1 You bet I will! I wouldn't miss the North America tour! I'll be at all the tour stops! #nitrocircuslive +12/18/2013,Sports_celeb,@TravisPastrana,@jacobdover1 #nitrocircuslive thanks Jacob. Nitro Circus 3D was amazing - do you think we should film another one??!! +12/18/2013,Sports_celeb,@TravisPastrana,@Brian_McGuire77 #nitrocircuslive too many! +12/18/2013,Sports_celeb,@TravisPastrana,@iSlayTweeets #nitrocircuslive this was the week of the biggest tricks we've ever tried. Need to perfect them now - few too many crashes! +12/18/2013,Sports_celeb,@TravisPastrana,@sam_mangine @NitroCircus #nitrocircuslive we are all so excited to be touring the USA - we have been waiting years for this! +12/18/2013,Sports_celeb,@TravisPastrana,@dhaniaa27 #nitrocircuslive because I am the slowest typer and get easily distracted watching TV! +12/18/2013,Sports_celeb,@TravisPastrana,@AgAmbergray17 @MTV2 @nitrocircuslive #NitroCircusLive it's going to get really crazy in this episode! +12/18/2013,Sports_celeb,@TravisPastrana,"@jenkinscaleb45 @NitroCircus #NitroCircusLIve It's a great place - I love being home, but especially love being home with all my friends!" +12/18/2013,Sports_celeb,@TravisPastrana,"Looking forward to actually being able to watch #NitroCircusLive on @MTV2 tonight! Happy to be back home, and tonight's ep is Pastranaland!" +12/11/2013,Sports_celeb,@TravisPastrana,Hope everyone liked that episode - next week's Tuesday @MTV2 show is a week of fun at my house - Pastranaland #NitroCircusLive +12/11/2013,Sports_celeb,@TravisPastrana,@julia_a__ @nitrocircuslive #NitroCircusLive we are a pretty well behaved bunch overall +12/11/2013,Sports_celeb,@TravisPastrana,"@Lucas_H38 @NitroCircus #NitroCircusLIve you'd love it, we all do" +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive It's about 55ft high - it is a long way down from up there +12/11/2013,Sports_celeb,@TravisPastrana,@JohnMcL25 @NitroCircus #NitriCircusLive Evel Knievel was an amazing inspiration +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive VIPs at the show get to ask me questions after practice is finished. It's really a fun time +12/11/2013,Sports_celeb,@TravisPastrana,@AndrewTHampson @NitroCircus #NitroCircusLive NO WAY! I have the greatest job in the WORLD! +12/11/2013,Sports_celeb,@TravisPastrana,@EmilC2012 #NitroCircusLive we are progressing all the time - double back is on our list - Dusty?! +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @NitroCircus #NitroCircusLive not know what is going to happen next - every day is amazing +12/11/2013,Sports_celeb,@TravisPastrana,"@minihorsey one day, one day! #NitroCircusLive" +12/11/2013,Sports_celeb,@TravisPastrana,@emilykateTJK @nitrocircuslive @NitroCircus #NitroCircusLive looking forward to see you in Cleveland too! +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive my favorite tour is coming right up! Our first tour of North America +12/11/2013,Sports_celeb,@TravisPastrana,"@julia_a__ @NitroCircus #NitroCircusLive I think the most inspirational is Wheelz, bravest are all the Godfrey Clan - so crazy!" +12/11/2013,Sports_celeb,@TravisPastrana,"@julia_a__ @NitroCircus I love to ride dirt bikes, play Big Buck Hunter and have fun with my friends! That's my job too!" +12/11/2013,Sports_celeb,@TravisPastrana,#NitroCircusLive Australia and New Zealand on the World Tour! @MTV2 +12/10/2013,Sports_celeb,@TravisPastrana,"Don't forget #NitroCircusLive MTV2 show at 11pm EST tonight. That'll be early for me - Showtime in Lille, France now! http://t.co/Csjr4iWLpR" +12/10/2013,Sports_celeb,@TravisPastrana,#nitrocircuslive time on MTV2 tomorrow night! I'll be here to answer all your questions. http://t.co/4CX54LOf3W +12/04/2013,Sports_celeb,@TravisPastrana,"Hope everyone enjoyed the @MTV2 shows tonight! See you again next week - same time, same place! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,@crashbobx pretty early in January - see you in Cleveland #nitrocircuslive +12/04/2013,Sports_celeb,@TravisPastrana,congrats to @jenn_salmon on winning a pair of tickets! DM @NitroCircus to get them sorted. Hope to see you at the show! +12/04/2013,Sports_celeb,@TravisPastrana,"@AMBERrLLOYD it's our first US tour, so all of them! We are all so pumped to be able to bring the shows home #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@Temulentus yes, we are stoked to be coming - Europe, then North America, Mexico and then South Africa! So much fun in the next 2 months" +12/04/2013,Sports_celeb,@TravisPastrana,"@nitrogirl199 @jolenevanvugt63 Bilko, Bilko and Bilko! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@AmberL_87 travel is amazing - we've been in Sweden, Norway, Germany, UK, Holland all in the last 10 days! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@QueenMargaret99 We love Drop Kick Murphys - I've been to see them in concert, they're awesome live #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@AMBERrLLOYD not embarrassed, but we get determined to land them next time #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@FossBrian I'm going to be at Nitro City, but I know that Dusty is going and Haffey I think #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,@MikeGosnell314 grab VIP tickets to the North America shows and we will meet up. Watch out for episode 6 - all Pastranaland! +12/04/2013,Sports_celeb,@TravisPastrana,@Ghenneberry47 I think that everytime Wheelz lands his flip is my favorite part of the show #NitroCircusLive +12/04/2013,Sports_celeb,@TravisPastrana,"@MydoLeS #nitrocircuslive you missed 4 amazing shows in the UK, but we will be back for sure" +12/04/2013,Sports_celeb,@TravisPastrana,"@michellemitchh that's awesome, you will have the best time! #nitrocircuslive MSG show is going to rock!" +12/04/2013,Sports_celeb,@TravisPastrana,@ferrisMueller14 @Ghenneberry47 responding! #NitroCircusLive +12/04/2013,Sports_celeb,@TravisPastrana,@AMBERrLLOYD #nitrocircuslive I love traveling around the World! I have the best job ever - all my friends are with me too! +12/04/2013,Sports_celeb,@TravisPastrana,"@MydoLeS too many painful injuries, but I'm feeling great on tour now" +12/04/2013,Sports_celeb,@TravisPastrana,@larrysdildo_ @NitroCircus #nitrocircuslive sweet! Merry Christmas everybody! +12/04/2013,Sports_celeb,@TravisPastrana,@bigdogsk84life1 #nitrocircuslive you just need to be one of the most amazing action sports athletes in the World - or Tommy - or Crum +12/04/2013,Sports_celeb,@TravisPastrana,"@Brannddonnn Awesome, see you there" +12/04/2013,Sports_celeb,@TravisPastrana,@BecsterD @jolenevanvugt63 @NitroCircus #nitrocircuslive you are so right! I just texted her! +12/04/2013,Sports_celeb,@TravisPastrana,@Brannddonnn I am so looking forward to the MSG show! Can you imagine how pumped we are going to be??? Nitro Circus in MSG!!! +12/04/2013,Sports_celeb,@TravisPastrana,@julia_a__ @jolenevanvugt63 @NitroCircus We get the best food from our excellent caterers - they follow us on tour +12/04/2013,Sports_celeb,@TravisPastrana,"wake up, #nitrocircuslive time!!!!" +12/04/2013,Sports_celeb,@TravisPastrana,RT to WIN a pair of #NitroCircusLive tickets & tune in to back 2 back episodes of #NitroCircusLive 2nite on @MTV2 at 11/10c. +12/03/2013,Sports_celeb,@TravisPastrana,"I dont know what is better, Tommy being a Panda or new #NitroCircusLive episodes 2nite. I guess U get both 2nite! http://t.co/EI6eVkswTC" +12/03/2013,Sports_celeb,@TravisPastrana,I almost forgot to mention we will be giving away a pair of #NitroCircusLive tix as well as some Nitro and @EVSsports gear! Talk 2 U 2Nite! +12/03/2013,Sports_celeb,@TravisPastrana,I will be on here 2nite answering Q’s during the #NitroCircusLive episodes on @MTV2. 11/10c don’t forget to join in & watch the show! +12/03/2013,Sports_celeb,@TravisPastrana,"Just for you, we are doing another week of back2back #NitroCircusLive episodes. Tomorrow 11/10c on @MTV2 - Tweet me Q's during the show." +12/03/2013,Sports_celeb,@TravisPastrana,The #NitroCircisLive crew gets wild for the first time in Hong Kong! New episode tomorrow on @MTV2 at 11/10c. http://t.co/UvqBV055yj +11/30/2013,Sports_celeb,@TravisPastrana,RT @DirtFishRally: Book a 1/2 day class or longer at http://t.co/O8vbtR0PaJ and get the @TravisPastrana 199 pack http://t.co/zr2bZKSk1u htt… +11/27/2013,Sports_celeb,@TravisPastrana,"I'm going back to bed now! See you guys next week @mtv2 or #nitrocircuslive in Birmingham, UK on Thursday!!! Hope you enjoyed the show" +11/27/2013,Sports_celeb,@TravisPastrana,@Billydrski I can't wait to bring #nitrocircuslive home to North America in January!!!! +11/27/2013,Sports_celeb,@TravisPastrana,@Matts_Insanity Yes I am! Manchester show was off the hook last night! It's way too early now #nitrocircuslive touring life! Love it! +11/27/2013,Sports_celeb,@TravisPastrana,I know the #1 epic win! #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@vancoller23 @NitroCircus @jolenevanvugt63 @nitrocircuslive @MTV2 Yes! South Africa after North America in early 2014. #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,"@recklessrick514 @nitrocircuslive #nitrocircuslive we will be in MD in 2015, don't worry!" +11/27/2013,Sports_celeb,@TravisPastrana,@Bianca_X23 That trick is never easy and always scary +11/27/2013,Sports_celeb,@TravisPastrana,@bram_smith69 I'm so pumped to be riding my dirt bike again in #nitrocircuslive Europe tour - can't wait for North America in January!! +11/27/2013,Sports_celeb,@TravisPastrana,@julia_a__ Tune into episode 6 from my house - double flips and more! +11/27/2013,Sports_celeb,@TravisPastrana,"@Bianca_X23 Fail or win, as long as it is epic!" +11/27/2013,Sports_celeb,@TravisPastrana,@AMBERrLLOYD @NitroCircus @jolenevanvugt63 The #nitrocircuslive crew are the greatest - we have more fun together than should be allowed! +11/27/2013,Sports_celeb,@TravisPastrana,@77pedro77 I don't think I'll ever be a golfer! Maybe we can race golf carts like in New Zealand on #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@Himmself245 Yes you do! #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,"@mattportugal @Himmself245 Well, stay up and watch! It's 4.20am in the UK, and I'm hanging!" +11/27/2013,Sports_celeb,@TravisPastrana,@LowDogg1978 @nitrocircuslive We'll be coming to the south in 2015 +11/27/2013,Sports_celeb,@TravisPastrana,"@77pedro77 After a day in the foam pit, the ice bath is needed - never nice, but needed! #nitrocircuslive" +11/27/2013,Sports_celeb,@TravisPastrana,@facu_moy We are planning to come to Argentina soon #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@michellemitchh I am so pumped to be coming home with #nitrocircus in january 2014 +11/27/2013,Sports_celeb,@TravisPastrana,It's #nitrocircuslive time! +11/27/2013,Sports_celeb,@TravisPastrana,RT to Win a pair of #NitroCircusLive tickets & tune in to the #NitroCircusLive Season 3 Premiere 2nite on @MTV2 at 11/10c. +11/14/2013,Sports_celeb,@TravisPastrana,Congrats Bryce! RT @BryceMenzies7 I’ll be first off the line when the green flag drops on Friday for the #Baja1000 http://t.co/h05Sv3EaQ5 +11/11/2013,Sports_celeb,@TravisPastrana,My official statement concerning my future in @NASCAR https://t.co/j3IzXMOnR3 +11/08/2013,Sports_celeb,@TravisPastrana,Awesome hanging with Lucas this morning drawing pictures 2 be auctioned off 2 benefit kids like him who have Alpha-1 http://t.co/pfzAqcUWcw +11/08/2013,Sports_celeb,@TravisPastrana,RT @DirtFishRally: Stoked to see @TravisPastrana move onto the @GlobalRallyX main event here in Vegas +11/07/2013,Sports_celeb,@TravisPastrana,Stoked to announce #Nitrocircuslive Season 3 is hitting US TV Screens on @MTV2 from November 26th! Going to be the craziest season yet! +11/05/2013,Sports_celeb,@TravisPastrana,"Fun day with my girls @lynzskate, #AddyPastrana, and brother from another country @simontabron. #MrMom http://t.co/scrtLXJNVD" +11/01/2013,Sports_celeb,@TravisPastrana,Thanks to everyone at @KMCWheels for all the support this year! Car looks good for texas! http://t.co/DNXQrw4SqA +10/25/2013,Sports_celeb,@TravisPastrana,Going to be a good day! http://t.co/fRzKKa3BOa +10/22/2013,Sports_celeb,@TravisPastrana,. @EvsSports hooked up the #Pastranaland helmet collection! Thanks for keeping the @nitrocircus crew safe! http://t.co/LU1TWHojIL +10/18/2013,Sports_celeb,@TravisPastrana,So many of my hero's in 1 place! Great times last night at @alpinestars 50th anniversary party. Proud 2 b part of it http://t.co/Dp40DNWtHz +10/15/2013,Sports_celeb,@TravisPastrana,B.A.S.E jumping in Twin Rivers and two stroke week at @CRtwotwo's house in FL in the season finale of On Pace https://t.co/HU2d8VluKt +10/10/2013,Sports_celeb,@TravisPastrana,Proud of my wife @lynzskate. She qualified 1st 4 the #betterhalfdash. It's tonight at 530pm est. u can listen live on http://t.co/Rj3SyedhIl +10/09/2013,Sports_celeb,@TravisPastrana,I have the best mom! 30 years old and she's still making me car cakes! Guess I never really grew up. http://t.co/2gRX0LgxKv +10/07/2013,Sports_celeb,@TravisPastrana,New photos are up from this weekend at @kansasspeedway https://t.co/VIUuw7DmHY +10/02/2013,Sports_celeb,@TravisPastrana,"My buddy Knoxville & @dickhouseworld really hit a home run with this film. If u need a laugh, check out the trailer. http://t.co/uRXCmB76Av" +10/01/2013,Sports_celeb,@TravisPastrana,#BetterHalfDash practice last night. @lynzskate was quickest but all ladies within a half second! Excited 4 the race http://t.co/flrwBfLpUX +09/26/2013,Sports_celeb,@TravisPastrana,"Thanks to all my awesome sponsors 4 their support with Addy. Bottles, blankets, & bibs from @OGIO #SponsoredAtBirth http://t.co/Ild56ruyHW" +09/25/2013,Sports_celeb,@TravisPastrana,Congrats to my @redbull teammate @OracleTeamUSA Skipper @JSpithill on winning the @americascup today! http://t.co/ALZEoHym9L +09/24/2013,Sports_celeb,@TravisPastrana,"I'm helping @ClaireBLang & @SiriusXMNASCAR raise money for @The_USO Friday, 7- 9p ET @MonsterMile! Join us? Details: http://t.co/0m26pDO8TT" +09/20/2013,Sports_celeb,@TravisPastrana,First flight as a family. glad Addy likes planes. Just landed in Kentucky 4 NASCAR. Racing GRC Sunday in Charlotte. http://t.co/inqyF1gCIm +09/19/2013,Sports_celeb,@TravisPastrana,The guys installed a @redbull refrigerator next to my locker in the @Dodge #dart hauler! Awesome team! Thanks guys. http://t.co/xbclibOUr6 +09/18/2013,Sports_celeb,@TravisPastrana,The @Dodge #dart is almost ready 4 the @GlobalRallyX race at @CLTMotorSpdwy Sunday. Thanks 2 @DrivePetty 4 the help! http://t.co/z9Uzoqqi16 +09/17/2013,Sports_celeb,@TravisPastrana,"A @NASCAR_NNS race, @Dhdsjim's wedding, our baby shower and some pit bikes make for a crazy weekend - http://t.co/H7rEnWT7jX" +06/30/2018,Sports_celeb,@derekhough,"You won't believe this dancer's age! #WorldofDance +https://t.co/3UlsQRgRcu" +06/30/2018,Sports_celeb,@derekhough,"Eye on the prize +In a world filled with distractions, stay focused on your goals and dreams. Be relentless! Be reso… https://t.co/g7tNDFYawh" +06/29/2018,Sports_celeb,@derekhough,RISE https://t.co/CRqZiuUzS0 +06/28/2018,Sports_celeb,@derekhough,"THE TOUR +I’m coming to your city. +Get your tickets now! +LINK IN BIO ☝🏼 @ Everywhere https://t.co/CPsPlX6rjt" +06/28/2018,Sports_celeb,@derekhough,"“Listen closely and you will hear whisperings. +Follow them, and eventually you will discover +a voice so distinct in… https://t.co/eKlV1jiNBs" +06/27/2018,Sports_celeb,@derekhough,"Driving back from the beach and Celine decided to make an encore on the playlist. I was like “ Oh dang, Celine sang… https://t.co/zdXaqZ1uqR" +06/27/2018,Sports_celeb,@derekhough,Checking out the most viral dance videos on the internet with @SELFmagazine https://t.co/lfzO3EyLhM +06/27/2018,Sports_celeb,@derekhough,Thanks @charlesthorp! Check it out 👇 @MensJournal https://t.co/RYzaHQc27i +06/27/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Time travel is REAL. Don’t @ us. #WorldofDance https://t.co/XTxlw3iZLZ +06/27/2018,Sports_celeb,@derekhough,RT @adriana_salico: Setting the stage on fire!! 🔥🔥 @NBCWorldofDance https://t.co/RCNy1Lpm1y +06/27/2018,Sports_celeb,@derekhough,"RT @NBCWorldofDance: First things first, @EmbodimentTHEco is owning the #WorldofDance stage dancing to “Believer” by @Imaginedragons! +htt…" +06/27/2018,Sports_celeb,@derekhough,"RT @NBCWorldofDance: Talk about a comeback kid!!! Against all odds, @royalfluxdance is dancing their way into Duels! Who else is inspired?…" +06/27/2018,Sports_celeb,@derekhough,Another amazing episode of @NBCWorldofDance tonight !!!! Who was your favorite ? +06/26/2018,Sports_celeb,@derekhough,Just wait until you see what's next! #WorldofDance https://t.co/MC8hRUVDpO +06/26/2018,Sports_celeb,@derekhough,"🔥 Don’t forget to watch TONIGHT +@nbc 10/9C nbcworldofdance @ Los Angeles, California https://t.co/CezJ7WyMly" +06/26/2018,Sports_celeb,@derekhough,What do you all think of tonight’s episode of #runningwild with @BearGrylls ? https://t.co/7CKqOtb8if +06/26/2018,Sports_celeb,@derekhough,"About to go live on @peopletv’s #chatter to talk @NBCWorldOfDance, my tour, and more! Check it out here: https://t.co/lJFB2D6cDB" +06/25/2018,Sports_celeb,@derekhough,"“We’re really doing this” #runningwild +8/7c @NBC https://t.co/Mgn1JGIuZi" +06/25/2018,Sports_celeb,@derekhough,Natures cold plunge ❄️ #runningwild tonight on @nbc 8/9C @BearGrylls https://t.co/ADkM969qIO +06/24/2018,Sports_celeb,@derekhough,Tomorrow on @nbc 8/9c check out my epic adventure with @BearGrylls https://t.co/iIHnpFYKKd +06/24/2018,Sports_celeb,@derekhough,Thank you to everyone supporting the tour! All info at https://t.co/EZiF20Peuo https://t.co/fP1xzHIQnk +06/24/2018,Sports_celeb,@derekhough,Wow ! Such a brilliant and creative project. The first ever novel that incorporates dance within the book to move t… https://t.co/BJXJyiF3eP +06/23/2018,Sports_celeb,@derekhough,"This Monday don’t forget to catch me in the wilderness with my man @beargrylls ! nbcrunningwild @nbc @ Los Angeles,… https://t.co/tXbAslgS2I" +06/23/2018,Sports_celeb,@derekhough,Every performance is more shocking than the last! Don't miss @nbcworldofdance Tuesday. https://t.co/wSCmueJ0Ge +06/23/2018,Sports_celeb,@derekhough,"Thank you for the nomination my beautiful peeps! Love all my fans 🤟🏼#choicedancer @teenchoicefox +Link in bio to vo… https://t.co/Z49HLMnBpC" +06/22/2018,Sports_celeb,@derekhough,"This @nbcworldofdance performance made my heart soar! + https://t.co/6Pm0P5y5Ia" +06/21/2018,Sports_celeb,@derekhough,I tried to change the music but Hayley slapped… https://t.co/BpTzGCbaL5 +06/21/2018,Sports_celeb,@derekhough,Are you ready?! Because you know I am! Life in Motion is officially here and I couldn’t be more excited to share an… https://t.co/ilSqwCbtCV +06/21/2018,Sports_celeb,@derekhough,🔵Thursday advanced looking into the distance… https://t.co/Mm7T8Lagoy +06/20/2018,Sports_celeb,@derekhough,"Be still my beating ❤️ +@ShaniaTwain @NicoleScherzy @lipsyncbattle https://t.co/ifj6Wp7KTj" +06/20/2018,Sports_celeb,@derekhough,Constantly thinking of new ways to create and entertain for this new tour. If you haven't got your tickets or VIP p… https://t.co/4PoYkJpfpo +06/20/2018,Sports_celeb,@derekhough,ITS ON!!! @lsb nicolescherzinger shaniatwain @… https://t.co/Uzhmhs94dn +06/20/2018,Sports_celeb,@derekhough,Who was your favorite from tonight’s episode ? +06/20/2018,Sports_celeb,@derekhough,Your Move https://t.co/IsckwI0fpg +06/20/2018,Sports_celeb,@derekhough,Absolute BEAST ! https://t.co/2hxrn3anRt +06/20/2018,Sports_celeb,@derekhough,I’m flattered :) https://t.co/QDSwJ0kyOM +06/20/2018,Sports_celeb,@derekhough,Nailed it ! https://t.co/Imt5ausEPm +06/20/2018,Sports_celeb,@derekhough,Who’s watching @worldofdance right now ?? It’s mind blowing https://t.co/fNN2aME36L +06/20/2018,Sports_celeb,@derekhough,RT @JLo: Y’all ready for @evaigo?? #worldofdance +06/19/2018,Sports_celeb,@derekhough,Who's watching with me? #WorldofDance +06/19/2018,Sports_celeb,@derekhough,Look who's back! We're turning up the heat tonight! Don't miss @NBCWorldofDance at 10/9c. 🔥 https://t.co/uXSqLeYZp9 +06/19/2018,Sports_celeb,@derekhough,When you see the waiter bringing your food… https://t.co/jSYTcgUHLv +06/19/2018,Sports_celeb,@derekhough,"TOMORROW +This show elevates dance to another… https://t.co/MjC3ujEd1V" +06/18/2018,Sports_celeb,@derekhough,"RT @ShaniaTwain: Had a blast on @LSB with @derekhough, @NicoleScherzy, @llcoolj & @chrissyteigen! Tune in Thursday 10:30/9:30c on @Paramoun…" +06/18/2018,Sports_celeb,@derekhough,Monday Morning Stretch with the boy @ Los… https://t.co/eF7RKCasHh +06/17/2018,Sports_celeb,@derekhough,Who grabbed tickets already? https://t.co/urPiiDG2HS +06/17/2018,Sports_celeb,@derekhough,I’m so thankful to have such a great father to… https://t.co/PhNXulDk5v +06/16/2018,Sports_celeb,@derekhough,"“Had to cut a man down to get where I am” +(The… https://t.co/nlV7mhlvqP" +06/15/2018,Sports_celeb,@derekhough,"All tickets are onsale now! Go to https://t.co/EZiF216PlW for all tour dates, ticket & VIP information! https://t.co/411t1R4g3D" +06/14/2018,Sports_celeb,@derekhough,"My new show, Life in Motion, premieres June 21! I'm bringing you my best tips on how to infuse energy into every a… https://t.co/gMDmTfKiei" +06/14/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Our resident #WorldofDance bae @derekhough is nominated for a #TeenChoice award! #Retweet to vote for him for #ChoiceT… +06/13/2018,Sports_celeb,@derekhough,Exclusive pre-sale tickets for the Derek Hough Live Tour are available now! Sign up on my website to get access! https://t.co/KLQU0sFyBn +06/13/2018,Sports_celeb,@derekhough,RT @klgandhoda: Here's how @derekhough motivates himself when he's feeling too tired to move https://t.co/TpQQkFXeQ7 +06/13/2018,Sports_celeb,@derekhough,"Stop and smell the roses @ New York, New York https://t.co/Y7Bu95QJXB" +06/13/2018,Sports_celeb,@derekhough,My man @jimmyfallon rockin an off the cuff pretzel move ! #untucked https://t.co/jpUy4o0Pxu +06/13/2018,Sports_celeb,@derekhough,"Go check it out at +https://t.co/mapK8rugoA https://t.co/l6HxRw4mDt" +06/13/2018,Sports_celeb,@derekhough,If you wanna learn the foundation and… https://t.co/zAc4zwhczv +06/12/2018,Sports_celeb,@derekhough,We're ready. Are YOU??? #WorldofDance https://t.co/qSF0SQwoFM +06/12/2018,Sports_celeb,@derekhough,Stanky performances tonight on nbcworldofdance… https://t.co/8qzrMn9gUc +06/12/2018,Sports_celeb,@derekhough,Tonight. Is. The. Night! @NBCWorldofDance at 10/9c. Let's do this! 🙌 https://t.co/cji0peqhbT +06/11/2018,Sports_celeb,@derekhough,RT @etnow: .@derekhough is heading out on his first-ever solo tour! ET has the exclusive details. https://t.co/rTPzHoMtA3 +06/11/2018,Sports_celeb,@derekhough,"RT @KristynBurtt: This tour is a big deal. For a solo dancer to headline a 60-city tour is no joke. + +I am going to guess the last time the…" +06/11/2018,Sports_celeb,@derekhough,"It’s official ladies and gentlemen!!! +I’m… https://t.co/uTFyqi2Qwu" +06/10/2018,Sports_celeb,@derekhough,"We've got dancers from all over the world! See you TUESDAY for @NBCWorldofDance. 💃 +https://t.co/at3dlWewLt" +06/10/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Helping your friend hang a picture frame like. 😂 #WorldofDance https://t.co/K5vj24Rco6 +06/10/2018,Sports_celeb,@derekhough,"#mood @ Los Angeles, California https://t.co/pbwkrMQF20" +06/09/2018,Sports_celeb,@derekhough,"These guys are bringing some flavor.🔥 +https://t.co/Y4esowZwJS" +06/09/2018,Sports_celeb,@derekhough,"Monday June 11th +BIG ANNOUNCEMENT my friends!!!… https://t.co/IPd5xz0yw1" +06/08/2018,Sports_celeb,@derekhough,"So smoooooth. #WorldofDance +https://t.co/WIFcfCRyVp" +06/07/2018,Sports_celeb,@derekhough,"Check it out! + +https://t.co/pfYw1KpziN" +06/07/2018,Sports_celeb,@derekhough,Can I have this dance? I’ll teach you… https://t.co/tMnJs6VxhC +06/07/2018,Sports_celeb,@derekhough,"BIG NEWS COMING UP MY FRIENDS! +Sign up to be… https://t.co/urRAkEsSaG" +06/07/2018,Sports_celeb,@derekhough,@deaconblade @NBCWorldofDance thank you my man!!!! 👊🏼🕺🏼 +06/06/2018,Sports_celeb,@derekhough,Here we go !!!! https://t.co/1tp0nTxPw2 +06/06/2018,Sports_celeb,@derekhough,Tonight’s show was off the Charts!!!! West coast y’all can’t miss it! @NBCWorldofDance +06/06/2018,Sports_celeb,@derekhough,"Also, any one catch @JLo calling me ‘baby’ ? I love you too J money:))) ❤️🕺🏼" +06/06/2018,Sports_celeb,@derekhough,"Fabulous Sisters !!!!! Dramatic, magical, clean, strong...holy moly!!! Loooooved it!!!" +06/06/2018,Sports_celeb,@derekhough,"@BDashSK @Konkrete510 Slick!! Loved it fellas! Strong, clean, innovative and loved that hat choreo!" +06/06/2018,Sports_celeb,@derekhough,@BDashSK @Konkrete510 lets go!! +06/06/2018,Sports_celeb,@derekhough,I'm with yah👍🏼😮 https://t.co/t6UqOAzBh0 +06/06/2018,Sports_celeb,@derekhough,@CharityandAndr1 you 2 are exceptional !!!! Stunning. Wow!!! I loved it https://t.co/wAQCQuRvga +06/06/2018,Sports_celeb,@derekhough,"Stop wishing for it ! +Start working for it ! +@NBCWorldofDance @CharityandAndr1" +06/06/2018,Sports_celeb,@derekhough,We got sparkly cups !!! Haha thanks @JLo https://t.co/XXfvUE5yKi +06/06/2018,Sports_celeb,@derekhough,Yo his face killed me during the whole routine! Haha . Love the music breakdowns. Very clean @connectioncrew_ https://t.co/lsC4fscDIv +06/06/2018,Sports_celeb,@derekhough,@connectioncrew_ let’s go fellas! +06/06/2018,Sports_celeb,@derekhough,@pashapashkov86 @DKaragach I’m looking forward to seeing what else these two have in store. Beautiful quality of movement. +06/06/2018,Sports_celeb,@derekhough,@InTheLab247 INCREDIBLE !!!! What I love about this competition is that you can come back and come back even stron… https://t.co/ErOvupaZAw +06/06/2018,Sports_celeb,@derekhough,Pumped!!! @NBCWorldofDance https://t.co/dgGOYSb4o7 +06/06/2018,Sports_celeb,@derekhough,Gonna be Live tweeting!!!! Right NOW ! +06/05/2018,Sports_celeb,@derekhough,Come hang out with the fellas ! https://t.co/07Drd6Xk1c +06/05/2018,Sports_celeb,@derekhough,Head over to my Instagram at 9pm ET/6pm PT - I'm going LIVE with @NeYoCompound ahead of tonight's all new… https://t.co/5jXZJNCavq +06/04/2018,Sports_celeb,@derekhough,"Check out the latest LEAK from @NBCWorldofDance - new episode tomorrow at 10/9c on NBC! +https://t.co/IrCEzVLg9I" +06/02/2018,Sports_celeb,@derekhough,RT @JLo: ❤️❤️❤️ https://t.co/7BiqP3wKiA +05/30/2018,Sports_celeb,@derekhough,West Coast !!! Tune in to NBC now!!! Don’t miss… https://t.co/Agrai6Vw01 +05/30/2018,Sports_celeb,@derekhough,What an amazing premiere! This season is going to be EPIC! @NBCWorldofDance @JLo @NeYoCompound @jennadewan #WorldofDance +05/30/2018,Sports_celeb,@derekhough,Karen y Ricardo had me out of my seat!!! This spins! 🔥🔥 #WorldofDance +05/30/2018,Sports_celeb,@derekhough,I’m having a think there https://t.co/C2gS6ddsJU +05/30/2018,Sports_celeb,@derekhough,The emotion... Powerful! #WorldofDance +05/30/2018,Sports_celeb,@derekhough,All these dancers are crushing it! Who’s been your favorite so far? #WorldOfDance +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Hiiiii @DerekHough! RETWEET if you’ve missed this face. 😍 #WorldofDance https://t.co/Nh9pW82lTY +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: When someone asks if you’re loving the #WorldofDance Premiere! 😏 https://t.co/ooEkjRPORd +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: THIS IS A MOOD. ☝️ #WorldofDance https://t.co/TECXBU68vC +05/30/2018,Sports_celeb,@derekhough,Way to start off the @NBCWorldofDance @OffDesiHoppers #nailedit +05/30/2018,Sports_celeb,@derekhough,HERE WE GO!! @NBCWorldofDance @JLo @NeYoCompound @jennadewan #WorldofDance +05/30/2018,Sports_celeb,@derekhough,Who’s ready for the season 2 premiere of @NBCWorldofDance tonight?! #WorldofDance +05/29/2018,Sports_celeb,@derekhough,Tonight’s the night! Tune in to NBC at 10/9c for Season 2 of @NBCWorldofDance!! https://t.co/IH5nTyNKe4 +05/29/2018,Sports_celeb,@derekhough,Typical #WOD photo shoot with the crew. @jlo… https://t.co/pWbksDXeIG +05/29/2018,Sports_celeb,@derekhough,Scoping out the new and improved set for… https://t.co/8Pe2WDpPry +05/28/2018,Sports_celeb,@derekhough,Thankful for all the hero’s and their families… https://t.co/TBObREEBeC +05/26/2018,Sports_celeb,@derekhough,Lost footage of me as a kid 😂 https://t.co/8rAkZX9EWd +05/24/2018,Sports_celeb,@derekhough,Happy Birthday to my brotha @markballas !!!!… https://t.co/Iq4qBLcLvg +05/24/2018,Sports_celeb,@derekhough,Tune in tonight on @nbc to help raise money for… https://t.co/Y6sWPa4IHl +05/24/2018,Sports_celeb,@derekhough,Check out this leaked @NBCWorldofDance performance - season 2 is 5 days away! https://t.co/3JN8XAnOQU +05/24/2018,Sports_celeb,@derekhough,"ENTHUSIASM IS THE SACRED FIRE +The goal can be… https://t.co/zzNAXquQaM" +05/22/2018,Sports_celeb,@derekhough,We are not playin around for season 2 of @NBCWorldofDance! https://t.co/GufbYsg6yc +05/22/2018,Sports_celeb,@derekhough,"Legend!!! +Sir Andrew Loyd Webber ladies and… https://t.co/erS2plErQs" +05/22/2018,Sports_celeb,@derekhough,Blue https://t.co/Cb1zYKMD8q +05/21/2018,Sports_celeb,@derekhough,My lil man littlehankwilliam showing me how to… https://t.co/JXJ2K2SBpn +05/21/2018,Sports_celeb,@derekhough,"The performance you've all been waiting for - tomorrow! +https://t.co/Y1dPjbzErY" +05/21/2018,Sports_celeb,@derekhough,"Absolutely smashed it! Love my girl J, she Never disappoints. #dinero @jlo #bbmas https://t.co/V2lEN7JI1Z" +05/20/2018,Sports_celeb,@derekhough,Fun flight with these fine people. On our way… https://t.co/paC9eCP4BY +05/18/2018,Sports_celeb,@derekhough,"Check out the @NBCWorldofDance performance that made @JLo cry +https://t.co/XiUZTBC3rp" +05/18/2018,Sports_celeb,@derekhough,She’s a beauty ❤️ https://t.co/Z7WuVAewf0 +05/17/2018,Sports_celeb,@derekhough,Immediately after taking this photo I caught a… https://t.co/oCznGoTylB +05/16/2018,Sports_celeb,@derekhough,Sat on the tarmac for 3 hours yesterday waiting… https://t.co/A9CoZs21u6 +05/15/2018,Sports_celeb,@derekhough,nbcworldofdance just launched our #wodchallenge !!! Send us in your… https://t.co/RcV4lmnTLN +05/14/2018,Sports_celeb,@derekhough,💐World Of Flowers💐 @ Radio City Music Hall https://t.co/LLCDwVxiBi +05/14/2018,Sports_celeb,@derekhough,"Put me in coach 🏀 @ New York, New York https://t.co/eFswVPCLff" +05/13/2018,Sports_celeb,@derekhough,"#happymothersday +I love you always forever +Near and far closer… https://t.co/Yhcma8DQq7" +05/13/2018,Sports_celeb,@derekhough,I gotcha Grandma 😂 https://t.co/YzHmvGYQBF +05/12/2018,Sports_celeb,@derekhough,"Morning Jog. +My favorite way to see a city and it’s hidden places @… https://t.co/jnJ5CDIIeB" +05/11/2018,Sports_celeb,@derekhough,#fbf One of my favorite photos of all time. Taken by the legend… https://t.co/e4uwPWRQdU +05/10/2018,Sports_celeb,@derekhough,Join me this spring at #GradBash at @UniStudios in Hollywood! Come celebrate as I host your graduation event! https://t.co/75YWsPkQSC +05/10/2018,Sports_celeb,@derekhough,Making sounds. Practice makes perfect. https://t.co/VkAL4pei3M +05/09/2018,Sports_celeb,@derekhough,"MAY 29th!!! It’s gonna be HUGE +#WOD #worldofdance @ Sunset Plaza,… https://t.co/o61xfcXOww" +05/08/2018,Sports_celeb,@derekhough,"In any given moment, a man’s growth is optimized if he leans just… https://t.co/JTY4GB4PYJ" +05/07/2018,Sports_celeb,@derekhough,We're back on May 29! Check out the first look: https://t.co/WEP5Bw8CfH +05/06/2018,Sports_celeb,@derekhough,"Just finished this piece. #mymeditation #art @ Los Angeles, California https://t.co/i12zP5YZR6" +05/04/2018,Sports_celeb,@derekhough,"My birthday month it is. +#maythe4thbewithyou #yoda @ Galaxy far far away https://t.co/bSzifUgSE5" +05/03/2018,Sports_celeb,@derekhough,#tbt I didn’t have my 2 front teeth for years. I knocked them out on a… https://t.co/HeOsP1bOI8 +05/02/2018,Sports_celeb,@derekhough,"I made these pants out of my grandmas curtains. 🌸🌻🌼 +#realmenwearflowers @… https://t.co/PzhV0hcOPq" +05/02/2018,Sports_celeb,@derekhough,Check out the nbcworldofdance fam on theellenshow today !!! @ Ellen DeGeneres… https://t.co/0b4giO6rEk +05/02/2018,Sports_celeb,@derekhough,Check out the nbcworldofdance fam on theellenshow today. @ Ellen DeGeneres Show https://t.co/6jaiOEkw2L +05/01/2018,Sports_celeb,@derekhough,@harleydavidson https://t.co/PQcjUusgBY +05/01/2018,Sports_celeb,@derekhough,If you’ve read my book I’m curious about what your favorite part was. Write… https://t.co/Cwo6dAITGx +05/01/2018,Sports_celeb,@derekhough,"RISE and shine @ Los Angeles, California https://t.co/oYhESdDqW0" +04/30/2018,Sports_celeb,@derekhough,"Here we go!!!! 1 Month away. +Let the countdown begin. SEASON 2 is going to be 🔥 +May 29th @ The… https://t.co/Fj6VGLucUU" +04/29/2018,Sports_celeb,@derekhough,"Part 2 +Had an absolute blast pushing myself at the beargryllssurvivalchallenge yesterday. +My… https://t.co/wGUvYQulx5" +04/29/2018,Sports_celeb,@derekhough,"Had an absolute blast pushing myself at the beargryllssurvivalchallenge yesterday. +My team… https://t.co/iBeyK8an9j" +04/28/2018,Sports_celeb,@derekhough,Comin in hot to the finish line!!!! @ Bear Grylls Survival Challenge https://t.co/rWFKzaGlOo +04/27/2018,Sports_celeb,@derekhough,"Almost ran into this guy the other day. 🐊 +I explained to him I knew +@BindiIrwin and he was chill. https://t.co/maVPvI0GXC" +04/26/2018,Sports_celeb,@derekhough,"🐢neck’s +#tbt @ Homemade Almond Milk https://t.co/wReYxJZcEf" +04/24/2018,Sports_celeb,@derekhough,Guess where I’ll be this May and June? Hosting #GradBash at @UniStudios in Hollywood! Can’t wait to celebrate with… https://t.co/kngeleaO3q +04/22/2018,Sports_celeb,@derekhough,I have always felt close to nature but the past few years I have become obsessed with her… https://t.co/8aSzNDM5D4 +04/20/2018,Sports_celeb,@derekhough,Love this man. And I cherish our adventures #fbf #fatherson #adventure @brucehough https://t.co/nB6JjDiMRu +04/17/2018,Sports_celeb,@derekhough,#mood https://t.co/UZobMx545T +04/15/2018,Sports_celeb,@derekhough,“Spirituality is recognizing and celebrating that we are all inextricably connected to one… https://t.co/6wbnrjI8qp +04/12/2018,Sports_celeb,@derekhough,I’m hosting #gradbash at @Unistudios Hollywood this Spring! Come spend a night of fun and excitement with all your… https://t.co/T426KovoPu +04/12/2018,Sports_celeb,@derekhough,#TBT trying to get warm using the hot pavement with my little niece. Just came across this photo… https://t.co/lFwVMu1aQn +04/11/2018,Sports_celeb,@derekhough,"sometimes deeper mental clarity is preceded by great internal storms - yung pueblo +📸:… https://t.co/fjE9qEvZFZ" +04/09/2018,Sports_celeb,@derekhough,I’m thrilled to invite you to something near and dear to my heart: Move Experience: The Retreat!… https://t.co/3AVx8jnnEz +04/06/2018,Sports_celeb,@derekhough,Happy 200th Anniversary @BrooksBrothers! #BrooksBrothers200 https://t.co/rRrViI2PRp +04/05/2018,Sports_celeb,@derekhough,"Don’t run away from heavy emotions +. +Honor the anger,give pain the space it needs to breathe +.… https://t.co/l3Xq2CQ6di" +04/03/2018,Sports_celeb,@derekhough,"I love the ocean, something about the mystery and depth truly humbles me. Whether I’m diving… https://t.co/53sNa0Zozh" +03/27/2018,Sports_celeb,@derekhough,Behind every mask there is a face and behind that there is a story https://t.co/0OUDO1LwQY +03/24/2018,Sports_celeb,@derekhough,One of the most important things when it comes to achieving your dreams is to stay Hungry! #move… https://t.co/Lln1IAgHmj +03/23/2018,Sports_celeb,@derekhough,"#nationalpuppyday +Link in bio☝🏼 +The love is real https://t.co/a6h6aBENg5" +03/22/2018,Sports_celeb,@derekhough,#tbt Chains ⛓ https://t.co/NNzbhUuVux +03/21/2018,Sports_celeb,@derekhough,NOW https://t.co/2qoaZv77mL +03/20/2018,Sports_celeb,@derekhough,When you’ve been unwell for a over a week and cabin fever starts setting in. 🤪 https://t.co/CuF20oiOd9 +03/19/2018,Sports_celeb,@derekhough,"Encourage, uplift, grow and love. We are social beings, connecting to each other is a primal and… https://t.co/As428NNvws" +03/17/2018,Sports_celeb,@derekhough,"If you’re happy and you know it 👏🏼 @ Los Angeles, California https://t.co/303TU3GxDJ" +03/17/2018,Sports_celeb,@derekhough,"The harder you work, the luckier you get! +Happy St.Patricks day!!! ☘️🍀 @ Ireland (country) https://t.co/raQgpot3BC" +03/16/2018,Sports_celeb,@derekhough,"“In any given moment, a man’s growth is optimized if he leans just beyond his edge, his… https://t.co/G6VAddrJFu" +03/15/2018,Sports_celeb,@derekhough,Bed Fashion https://t.co/exBr6JMhjl +03/13/2018,Sports_celeb,@derekhough,"Pretty much sums up my dressing room anywhere. +Also I don’t know words to any song. #fact https://t.co/mSzp1cONwy" +03/12/2018,Sports_celeb,@derekhough,Last day of mentoring with these insanely talented human beings! #nbc #wod #backlot @ Universal… https://t.co/37J3tz9eHA +03/12/2018,Sports_celeb,@derekhough,Seize the day @ Planet Mars https://t.co/iyxVPPG4F5 +03/10/2018,Sports_celeb,@derekhough,"Poster for our new Sitcom. @mistyonpointe +What’s it about? https://t.co/yxzJdffeVO" +03/09/2018,Sports_celeb,@derekhough,"Cooking something up for Season 2 of nbcworldofdance +Ask and you shall receive! #disruption @… https://t.co/puV8ICeJCh" +03/09/2018,Sports_celeb,@derekhough,@NBCWorldofDance returns for Season 2 on May 29! @jlo @neyocompound @jennadewan https://t.co/BZtA0Zm9vY +03/08/2018,Sports_celeb,@derekhough,"I’m lucky to have so many women in my life that everyday is #internationalwomensday +My… https://t.co/UHJbybni70" +03/08/2018,Sports_celeb,@derekhough,Lil Cha-Cha to start the day. #warmup https://t.co/Rdz1zaBr1s +03/07/2018,Sports_celeb,@derekhough,"It’s OFFICIAL!!! May 29th!!! nbcworldofdance @ Los Angeles, California https://t.co/g7IuLZ74i3" +03/06/2018,Sports_celeb,@derekhough,"Here we go!!!! Season 2 Premiere Date! May 29th +#nbc nbcworldofdance https://t.co/lYAORHwxMp" +03/05/2018,Sports_celeb,@derekhough,"Failure hurts, but it’s only growing pains for greatness. Failure isn’t the end of the road,… https://t.co/MIoZCmlcWW" +03/04/2018,Sports_celeb,@derekhough,"Yep 🔥 +@Dance10Hayley https://t.co/mRwn0cvKZq" +03/03/2018,Sports_celeb,@derekhough,Training https://t.co/m6TD4kjNKI +03/01/2018,Sports_celeb,@derekhough,"Can’t wait for Summer 🌊 +#GoPro #malibuboats #lakelife https://t.co/f12HJdNuwX" +02/28/2018,Sports_celeb,@derekhough,"S O L I T U D E + +“Without solitude, Love will not stay long by your side. +Because Love needs to… https://t.co/FcFw5l7JEm" +02/28/2018,Sports_celeb,@derekhough,"S O L I T U D E + +“Without solitude, Love will not stay long by your side. +Because Love needs to… https://t.co/ZjUz5AMd42" +02/28/2018,Sports_celeb,@derekhough,"My girlfriend is a rebel ❤️🤘🏼 +#❤️ #D+H @ Lovers https://t.co/fvzymOT0Bu" +02/27/2018,Sports_celeb,@derekhough,"🏄🏼‍♂️ @ Los Angeles, California https://t.co/ZCadXKgt5w" +02/26/2018,Sports_celeb,@derekhough,"“Everybody cut, everybody cut.(Boom Boom)Everybody cut, everybody cut.(Boom Boom) Everybody cut… https://t.co/DHjBZQBJ63" +02/26/2018,Sports_celeb,@derekhough,"“Hatred is wasted energy.” +Let us Create not Destroy +#ClearHorizon #motivationmonday https://t.co/gCmdRdSnYm" +02/25/2018,Sports_celeb,@derekhough,Thank you @l_a_ballet for the wonderful honor. And to my brother @markballas for his awesome… https://t.co/yldLAt6vJ2 +02/24/2018,Sports_celeb,@derekhough,"This dude sat next to me in the movie theater last night. +Trying to figure out how I can bring… https://t.co/yNsr1ZhKvh" +02/23/2018,Sports_celeb,@derekhough,Don’t wait to be “Ready”. Start where you stand and the tools will reveal themselves as you go! https://t.co/m8XbtqZXZa +02/23/2018,Sports_celeb,@derekhough,"Good Ole Jive +Sharpening Up🔪 the tools. +#OrangeUnderwear? #jive #rehearsal #practice @ Fresh Jive https://t.co/IHnGmo9H0L" +02/20/2018,Sports_celeb,@derekhough,"As my friend @tonyrobbins always says “LIVE WITH PASSION” +This video 😂 https://t.co/rLptr4vLRh" +06/30/2018,Sports_celeb,@juliannehough,"Missing this little angel baby today #Avery 👶🏼💕 +📷: @tjdrechselphoto @ Las Vegas, Nevada https://t.co/N6IZV32Fnc" +06/26/2018,Sports_celeb,@juliannehough,"“Joy to the 🌍 all the boys and girls, Joy to the 🐟’s in the deep blue sea, Joy to YOU and ME” 🎶 + +Feeling very joyfu… https://t.co/DTawWOcxO9" +06/23/2018,Sports_celeb,@juliannehough,"Nailed my 360 🤪 +Day 2 wake Surfing in Lake Powell with my ❤️ for his 35th #birthdayweekend #nailedit #goingpro @ La… https://t.co/fCJIKrOcf1" +06/23/2018,Sports_celeb,@juliannehough,"Happy Birthday to my husband, my lover and my best friend! +I am so grateful that we get to adventure through life… https://t.co/jLU87PMT13" +06/17/2018,Sports_celeb,@juliannehough,Happy Fathers Day to my incredible Papa… https://t.co/HOoR7ojanS +06/14/2018,Sports_celeb,@juliannehough,If there's one thing @brookslaich and I love it's GAME NIGHT! We're throwing the ULTIMATE couples game night to sup… https://t.co/Qgnmp6ftmV +06/02/2018,Sports_celeb,@juliannehough,"Feelin’ cheeky today 😉 + +-Who else is having an… https://t.co/akcAtJcbnF" +06/02/2018,Sports_celeb,@juliannehough,It’s June 1st!! HAPPY PRIDE MONTH! #loveislove… https://t.co/6TrjucS4Xf +06/02/2018,Sports_celeb,@juliannehough,It’s June 1st!!!! HAPPY PRIDE MONTH!… https://t.co/V6OBrbt2ov +05/13/2018,Sports_celeb,@juliannehough,There is nothing like a mothers love! I’ll always be your baby and… https://t.co/Kl62lO7AKs +05/13/2018,Sports_celeb,@juliannehough,"Roaring 20’s Date Night ❤️ +#gatsbystyle @ Los Angeles, California https://t.co/NILWWbjaid" +05/08/2018,Sports_celeb,@juliannehough,"Met Ball memories +2011 ➡️ 2012 ➡️ 2013 +#burberry #carolinaherrera… https://t.co/RCBFYFR2Lh" +05/07/2018,Sports_celeb,@juliannehough,This last week I shared an Instagram story right after a day full of… https://t.co/r0mz2ewayP +05/06/2018,Sports_celeb,@juliannehough,Feelin’ fancy with my ❤️ on our Sunday morning stroll! @ Rodeo Drive https://t.co/9lBw2DXUju +05/03/2018,Sports_celeb,@juliannehough,Happy Birthday to this dynamite soul! 💥✨🙌🏼 So grateful for our many years of… https://t.co/ali2ZLk1Fi +05/02/2018,Sports_celeb,@juliannehough,"The best time for new beginnings is now. Remember, all you need is within… https://t.co/gS9hM1aSgJ" +05/01/2018,Sports_celeb,@juliannehough,"Twinning Tuesday 💙💙 @ Los Angeles, California https://t.co/Udual1iL76" +04/23/2018,Sports_celeb,@juliannehough,"I feel so lucky I get to create my life with you and that we love all parts of each other from,… https://t.co/ShWs2x9aHK" +04/21/2018,Sports_celeb,@juliannehough,"My husband is so special ❤️❤️❤️...... and freaking hot AF! 🔥🔥🔥🔥 #husbandappreciationday @ Paris,… https://t.co/0zWpBoDfOp" +04/16/2018,Sports_celeb,@juliannehough,"Momma 💕 @ Lake Tahoe, NV https://t.co/uqvOqfewZl" +04/16/2018,Sports_celeb,@juliannehough,Such a beautiful weekend in Lake Tahoe with my incredible mother @HoughNelson ❤️learning and… https://t.co/okHpi8rvwO +04/07/2018,Sports_celeb,@juliannehough,"On Thursday I challenged you to throw a song on and dance and sing/scream your heart out… +I… https://t.co/EZrFSfP7IC" +04/06/2018,Sports_celeb,@juliannehough,"#FBF 🤣🤣🤣🤣🤣 +To my private obnoxious performance for #lexi 🐶 back in 2014 at the beacon theatre… https://t.co/qZ722veoWY" +04/05/2018,Sports_celeb,@juliannehough,"#tbt to 1yr ago today rehearsing for MOVE:BEYOND @juliannehough ❤️ + +• There is something about… https://t.co/9muS2pO9TR" +04/01/2018,Sports_celeb,@juliannehough,"Happy Easter! 🥚🌷🌼🐇🐣...... +#egghunt #Imayhaveoverdoneit #duh @ Los Angeles, California https://t.co/DezV726WiI" +03/19/2018,Sports_celeb,@juliannehough,"💚💚💚 @ Los Angeles, California https://t.co/Fzng4vy8UO" +03/17/2018,Sports_celeb,@juliannehough,"I love #AliciaVikander so much!!! She is a prime example of a strong and feminine, talented and hard working woman! You go girl! #tombraider" +03/14/2018,Sports_celeb,@juliannehough,"We LOVE you soooooo much lorraineschwartz +CONGRATULATIONS on your New Collection… https://t.co/r3m6ayMhe6" +03/13/2018,Sports_celeb,@juliannehough,"How simple yet profound! 🙏🏼 +Having this awareness has been one of the greatest gifts in my life.… https://t.co/h8ucpbuspx" +02/19/2018,Sports_celeb,@juliannehough,"Haha 🤣🤣🤣#Repost @brookslaich +・・・ +In this family, we roll environmentally friendly, and in… https://t.co/XBbravqU4d" +02/18/2018,Sports_celeb,@juliannehough,🐶🌺🐼 #heaven @ Fryman Canyon Trailhead https://t.co/wVPlAnMOBZ +02/15/2018,Sports_celeb,@juliannehough,"❤️👏🏼🧚🏼‍♀️ +#matchingeyebrowsnow @ Los Angeles, California https://t.co/3OVbq64FJA" +02/14/2018,Sports_celeb,@juliannehough,"Steeling 💋 all over the 🌎from my Forever Valentine ❤️ @ Paris, France https://t.co/sBtF3QUSgR" +02/13/2018,Sports_celeb,@juliannehough,"Happy Birthday @kristysowin 🙏🏼❤️🙌🏼👸🏻 +There are no words to describe my absolute love,… https://t.co/w4hLSVmn3h" +02/08/2018,Sports_celeb,@juliannehough,"Let’s get Crazy 🌎❤️ +Share some “crazy” ways we can all start changing our world today and tag… https://t.co/YFDahrW6Vo" +02/08/2018,Sports_celeb,@juliannehough,"Let's get crazy! ❤️🌍 +Let’s get Crazy 🌎❤️ +Share some “crazy” ways we can all start changing our… https://t.co/rSbNeOyiOD" +02/07/2018,Sports_celeb,@juliannehough,"❤️❤️❤️ @ Paris, France https://t.co/i1cPyrT5jy" +02/06/2018,Sports_celeb,@juliannehough,"My soul sister, my best friend and so much more... 💫 +You are the bright soul that everyone… https://t.co/bxVPNsZ3wS" +02/04/2018,Sports_celeb,@juliannehough,"🌹 +Sneak peak at some of the incredible shots by sarahfalugostyle in Paris xoxo 💋 @ Paris, France https://t.co/eAWnngx89A" +02/04/2018,Sports_celeb,@juliannehough,"This Trip has been absolutely magical! ❤️ +How did it all begin?! Well, let me tell you! +For… https://t.co/EOsQV2o8mL" +02/03/2018,Sports_celeb,@juliannehough,"💋 +#selfiegameonpoint #paris @ Hôtel Costes https://t.co/dp7JfAUs3e" +02/02/2018,Sports_celeb,@juliannehough,"Ooh La La 💋 +#Paris @ Paris, France https://t.co/EDZVcNPxUA" +01/23/2018,Sports_celeb,@juliannehough,Congratulations @pasekandpaul on the Oscar Nomination for the #GreatestShowman masterpiece “This… https://t.co/dVTL3T9ZSS +01/22/2018,Sports_celeb,@juliannehough,"Starting Monday off with a smooch💋 +What is your love language? https://t.co/PiTtEmorBR" +01/21/2018,Sports_celeb,@juliannehough,"Feeling on top of the world today 🌍 +Thank you @tonyrobbins Sage, and all my fellow… https://t.co/5SYmTxvaGe" +01/20/2018,Sports_celeb,@juliannehough,"We are the RAINMAKERS! 💦 +While at @tonyrobbins #businessmastery this week, we got ourselves in… https://t.co/9Th99Ay0Z8" +01/20/2018,Sports_celeb,@juliannehough,Thank you John for Donating to @juliannehough and being a part of our mission to help build… https://t.co/JGtRazGNFh +01/19/2018,Sports_celeb,@juliannehough,#fbf to walking hand in hand with my love in the Seychelles ☀️👙💙 and flash forward to walking… https://t.co/tZ6Zcd1wfC +01/18/2018,Sports_celeb,@juliannehough,Having the most mind blowing experience at Tony Robbins #businessmastery seminar with these… https://t.co/i6Ol26jjC3 +01/18/2018,Sports_celeb,@juliannehough,#businessmastery https://t.co/DImGOH9N6J +01/18/2018,Sports_celeb,@juliannehough,RT @dmscott: I’m so psyched to be with the enthusiastic GLADIATORS talking New Marketing Mastery at @TonyRobbins #BusinessMastery https://t… +01/12/2018,Sports_celeb,@juliannehough,"During your next hydrating face mask, give your hands a little love too with this awesome DIY nourishing treatment… https://t.co/SlMgrUVs2D" +01/12/2018,Sports_celeb,@juliannehough,#FBF to when I had my first laparoscopy for my Endometriosis back in 2008 when my angel baby… https://t.co/Mp0oo4KSjX +01/11/2018,Sports_celeb,@juliannehough,"Ok everybody, today is 1/11 and as you all know, 11 is my absolute most favorite magical number… https://t.co/BnghNb9B6z" +01/10/2018,Sports_celeb,@juliannehough,"Me: hey Nina help me with your birthday caption! +Nina: what?! +Me: never mind... +Happy… https://t.co/x61mHyVIPX" +01/08/2018,Sports_celeb,@juliannehough,Wait for it..... 👯‍♀️ #goldenglobes2018 #instyle #instyleglobes https://t.co/ahnwtj9KjW +01/01/2018,Sports_celeb,@juliannehough,Oh... it’s ON my love!!! Let’s do this 2018!!! 💕💕💕🙏🏼 https://t.co/R7YkkSfPL3 +01/01/2018,Sports_celeb,@juliannehough,"Couldn’t be happier to ring in the new year and share such a happy 2017 year together! Marriage,… https://t.co/ys0jDCq87l" +12/28/2017,Sports_celeb,@juliannehough,"Missing my beautiful sisters this morning! 🙏🏼💞 +Whether they are your blood, your best friends or… https://t.co/2p2MJGDW1z" +12/25/2017,Sports_celeb,@juliannehough,Merry Christmas to everyone! (PS we should live with the kind of joy and kindness that naturally… https://t.co/50OmCRq6t3 +12/25/2017,Sports_celeb,@juliannehough,"Merry Christmas!!🎅🏽🤶🏼❤️ +🎄🎁⛄️💫❄️🐶🐼🐻 @ Los Angeles, California https://t.co/Yj3BBvLO1O" +12/25/2017,Sports_celeb,@juliannehough,Merry Christmas!!!!! 🎅🏽🤶🏼🎄🎁❄️💫 @ Hollywood Hills https://t.co/5cm3TxWMav +12/23/2017,Sports_celeb,@juliannehough,"Whatever you do, PLEASE wait until the end with SOUND ON‼️ +So for the last 4 days I’ve been in… https://t.co/QSHGHdIXdJ" +12/22/2017,Sports_celeb,@juliannehough,This holiday season get toasty with these sweet and delicious Gluten-Free Gingerbread Waffles made with @SueBeeUSA… https://t.co/ufAEIxc75g +12/21/2017,Sports_celeb,@juliannehough,Warm your heart and your belly with Gluten-Free Gingerbread Waffles made with @SueBeeUSA Honey 🍯🎄#ShareSweetness… https://t.co/Yilql8INkI +12/18/2017,Sports_celeb,@juliannehough,This weekend @brookslaich and I went to see ELF at the #VWHolidayDriveIn “Watch out for the… https://t.co/K35fxlJoHX +12/04/2017,Sports_celeb,@juliannehough,"Last night at #TrevorLive 🏳️‍🌈 +It’s so important to let our LGBTQ+ Youth know that you are… https://t.co/zQusPzMKpu" +12/04/2017,Sports_celeb,@juliannehough,❤️ Always & Forever 👯‍♀️ https://t.co/DlJYWFsJkB +12/03/2017,Sports_celeb,@juliannehough,"Sunday Morning Workout Buddies! ☀️🏋🏻‍♂️🐻 +Feeling very grateful for the amazing men in my life.… https://t.co/US5dizIqtD" +11/30/2017,Sports_celeb,@juliannehough,Disney’s Magical Holiday Celebration airs tonight! Tune in to ABC and get ready to feel the… https://t.co/JgbNtLBv2t +11/30/2017,Sports_celeb,@juliannehough,BEFORE (Swipe 👉🏼 for AFTER) 💦💦💦💦 dance cardio class with these awesome ladies!!!!! @ Millennium… https://t.co/wjyLql7449 +11/29/2017,Sports_celeb,@juliannehough,Me and my girl Minnie! Only 1 more day until the Disney Magical Holiday Celebration! Get ready… https://t.co/BFVp5FdIuS +11/29/2017,Sports_celeb,@juliannehough,"In honor of #GivingTuesday, our friends at gatesfoundation are matching donations on Facebook.… https://t.co/xNGAwhPNk6" +11/28/2017,Sports_celeb,@juliannehough,In the Spirit of #GivingTuesday @brookslaich and I are excited to announce the launch of our… https://t.co/MiOXKlqZHO +11/27/2017,Sports_celeb,@juliannehough,"One week ago today, I had the chance of a lifetime to help bring my friend Marinda’s story to… https://t.co/k1G77BPtwt" +11/24/2017,Sports_celeb,@juliannehough,"At the end of a crazy busy fall season, it feels so good to come home to my favorite dance… https://t.co/pW5j80J4kg" +11/20/2017,Sports_celeb,@juliannehough,"Tonight’s The Night 📺💃🏽⭐️ +So much beautiful work has gone in to creating this important and… https://t.co/mHh4be9x4X" +11/17/2017,Sports_celeb,@juliannehough,"SWIPE 👉🏼 to find out the SURPRISE ‼️ + +There are certain moments in my career that have made what… https://t.co/3IEfUORQMD" +11/16/2017,Sports_celeb,@juliannehough,"I am soooo freakin’ excited!!! +💕💕💕💕 +This team of creative and dynamic people are so exceptional… https://t.co/xzX5axiKvs" +11/16/2017,Sports_celeb,@juliannehough,Start your ovens and get ready for this amazing recipe for Honey-Glazed Carrots w/ @SueBeeUSA honey!… https://t.co/WzpkjZZFsS +11/16/2017,Sports_celeb,@juliannehough,"I’ve always been taught, “never show up to a party empty handed”! 🥕Thanksgiving is coming up,… https://t.co/HfHlIJkaoZ" +11/14/2017,Sports_celeb,@juliannehough,"So i know I’m a day late, but you can never be too late to be KIND! Yesterday was… https://t.co/DZ3vJX8k7y" +11/13/2017,Sports_celeb,@juliannehough,Where my #DWTS fans at?! Get ready...We’re getting the band back together again! I'm coming back… https://t.co/yTFjHvekBR +11/12/2017,Sports_celeb,@juliannehough,Mmm...dreaming about this ice cream today🍦Which is better: 🍦🍨or 🍭🍫? Vote in the comments! I’m… https://t.co/vALY3wbRny +11/11/2017,Sports_celeb,@juliannehough,"FINALLY it feels like FALL!!! 🍁🍂🍂 +I️t was super hot, high 80’s and sunny, when I first got to… https://t.co/Okn7IQNPd4" +11/10/2017,Sports_celeb,@juliannehough,❤️❤️❤️ #fbf to a little impromptu photoshoot after I jumped in the pool with a full face of… https://t.co/QJ2YFbtR8V +11/09/2017,Sports_celeb,@juliannehough,"#TBT ⚡️ to when I played Bongos and Chimes in my family band “White Lightning”. +You could hear… https://t.co/18tLHOMLGe" +11/08/2017,Sports_celeb,@juliannehough,All smiles as I’m back in Alabama to finish filming biggerthemovie 😁@kristysowin and I had a… https://t.co/X5MCw3ifj1 +11/08/2017,Sports_celeb,@juliannehough,"Must Haves: +Red Dress ✔️ +Sassy Red Lip ✔️ +The happiest place on earth✔️ +-and last but… https://t.co/BASElRlGty" +11/06/2017,Sports_celeb,@juliannehough,"Swipe 👉🏼 to better understand the dynamic of our relationship! 🤷🏼‍♀️ +Tag your favorite person… https://t.co/jGosSOOcG4" +11/04/2017,Sports_celeb,@juliannehough,✌🏼throwing it up for the weekend✌🏼 Check my last post to see what I’m working on! It’s an… https://t.co/dClGIDFuCG +11/03/2017,Sports_celeb,@juliannehough,#fbf to strolling around in the Seychelles with my brand new husband @brookslaich ❤️ We had some… https://t.co/4D63oQa6A6 +11/02/2017,Sports_celeb,@juliannehough,"Betty Brosmer 💕 +circa 1957 @ Birmingham, Alabama https://t.co/Uud9PnQXVm" +11/01/2017,Sports_celeb,@juliannehough,So incredibly proud of my brother @derekhough for using his gifts and talents to create… https://t.co/W3kHiBwol5 +11/01/2017,Sports_celeb,@juliannehough,"Pinch Punch, it’s the first day of the month! 👌🏼👊🏼 + Alright let’s get real about working out.… https://t.co/lEKVGY7q6q" +10/31/2017,Sports_celeb,@juliannehough,Ghosts of Halloween Past- Check out that last pic 😂 tag your forever costume partners! 👻 @ ALL… https://t.co/PrBhtiK6w8 +10/30/2017,Sports_celeb,@juliannehough,"🔥 It’s a new week- time to fire up those goals, let’s get to it! Also, how did everyone’s… https://t.co/hVGYmNZI8h" +10/27/2017,Sports_celeb,@juliannehough,"Life is an adventure! It’s up to you to make it amazing! Think about it. +What is holding you… https://t.co/qTjuqFxACT" +10/26/2017,Sports_celeb,@juliannehough,Sitting here in Alabama missing my angels and thinking about Lovin’ on my Lexi 🐶Raise your hands… https://t.co/jzgBElIV7F +10/25/2017,Sports_celeb,@juliannehough,One of my biggest and most important “happiness” practices is taking time to be grateful. The… https://t.co/OsyifvNnDT +10/24/2017,Sports_celeb,@juliannehough,"Wrapped for now and it’s just day 2, yet the clouds are out and the sky is still blue! -Kristy… https://t.co/sjz96KjVTj" +10/24/2017,Sports_celeb,@juliannehough,"WOW! I can’t believe I just recreated this iconic photo of #BettyBrosmer 💋 +I can’t wait for you… https://t.co/8xudKf2JjC" +10/23/2017,Sports_celeb,@juliannehough,Gearing up for Monday like 🎧😎 Let’s do this thing boss babes! I’m on set filming “Bigger” today… https://t.co/R2fTQk0HqL +10/21/2017,Sports_celeb,@juliannehough,Getting ready to start a new adventure 💪🏼 Heading to Alabama to start filming BIGGER with the… https://t.co/lZT0WnkPgP +10/21/2017,Sports_celeb,@juliannehough,Getting ready to start a new adventure 💪🏼 Heading to Alabama to start filming BIGGER with the… https://t.co/C4nML3L8fE +10/20/2017,Sports_celeb,@juliannehough,"#FBF to the most amazing outdoor experience with my @KindCampaign family. 💕 +Read more about our… https://t.co/Pdg0uTwMkM" +10/18/2017,Sports_celeb,@juliannehough,"My #wcw goes to my incredibly gifted bff, hair extraordinaire and all around amazing human being… https://t.co/mdXcxBut4v" +10/16/2017,Sports_celeb,@juliannehough,"MISSING DOG ALERT ‼️ +We found this male dog on the side of the road on Woodrow Wilson near… https://t.co/Shomh2YB3F" +10/16/2017,Sports_celeb,@juliannehough,"#MondayMuse 💋 +One more week until the transformation begins. I’m so excited to celebrate Betty… https://t.co/TAbHQIiKKv" +10/16/2017,Sports_celeb,@juliannehough,This is so perfect!!!! Haha ❤️ https://t.co/rqnxs2fi59 +10/15/2017,Sports_celeb,@juliannehough,"I wholeheartedly agree with everything @brookslaich said. @joesmithla your presence, words, and… https://t.co/6ML3EjIgD6" +10/13/2017,Sports_celeb,@juliannehough,You are the strongest and most resilient man I know! You're dedication and passion is… https://t.co/VDQ8S81iYH +10/12/2017,Sports_celeb,@juliannehough,"If you haven't heard @imaginedragons new album EVOLVE, I highly suggest you get it ASAP!! +I… https://t.co/GKFq8xzP73" +10/11/2017,Sports_celeb,@juliannehough,"Happy Birthday to my #wcw @Dance10Hayley 👑 +So grateful for your beautiful friendship, your… https://t.co/svdanqb4kx" +10/10/2017,Sports_celeb,@juliannehough,Thank you @goodhealth making me this months cover girl! I had an absolute blast 💋I also can't… https://t.co/bMWh6XlgMy +10/08/2017,Sports_celeb,@juliannehough,So excited to announce that I’m taking over @fitbit’s Instagram page tomorrow! Follow along to… https://t.co/k27f2Zgajf +10/04/2017,Sports_celeb,@juliannehough,"Mom, you are my #wcw everyday! The moment you zipped me in to my wedding dress is a moment I… https://t.co/QOTgDBfsGr" +10/02/2017,Sports_celeb,@juliannehough,"#prayforvegas and pray for humanity! +The victims, the families, the Las Vegas community, the… https://t.co/8d7wUOVX2n" +10/01/2017,Sports_celeb,@juliannehough,"Soul Sister Sunday✌🏼#liveyouradventure 🌎#kindcampaign 💕 +📷: @THECoryTran @ Canadian Rockies https://t.co/Byv6Qt6JJo" +09/29/2017,Sports_celeb,@juliannehough,"Spending the next few days reconnecting with nature, recharging my soul and fostering… https://t.co/H7OglUYYVT" +09/28/2017,Sports_celeb,@juliannehough,"Happy 13th Birthday to this stud nephew of mine! +Remember when you were a kid growing up, and… https://t.co/cMd0IR3yu7" +09/27/2017,Sports_celeb,@juliannehough,"Brooks and I wanted our wedding to feel just as warm and inviting as our home, so of course I… https://t.co/iuMMusof5D" +09/27/2017,Sports_celeb,@juliannehough,So proud of my love @brookslaich way to keep pushing and betting on yourself babe! 💋 https://t.co/kJQHdPHuCn +09/27/2017,Sports_celeb,@juliannehough,Happy Birthday Arielle! You are heaven on earth. You light up any room you walk in to. You have… https://t.co/RvZT9mCRER +09/26/2017,Sports_celeb,@juliannehough,"Excited to announce that I'll be joining the film ""Bigger"", the amazing story behind Joe and Ben… https://t.co/X5lcFgbFQE" +09/26/2017,Sports_celeb,@juliannehough,RT @DEADLINE: Julianne Hough To Play First Lady Of Fitness Betty Weider In George Gallo’s ‘Bigger’ https://t.co/mL1zL2fI0q https://t.co/sKN… +09/25/2017,Sports_celeb,@juliannehough,I'll never forget the moment I turned the corner and locked eyes with you. I knew that my future… https://t.co/TYoSJPu6EO +09/25/2017,Sports_celeb,@juliannehough,Love my @MosaicLA family! #welcomehome #youbelonghere @ Mosaic https://t.co/ptnTovkxze +09/24/2017,Sports_celeb,@juliannehough,"Easy like Sunday morning! +🕶👒 +📷: sarahfalugostyle @ Coeur d'Alene, Idaho https://t.co/W7kaksTv5L" +09/23/2017,Sports_celeb,@juliannehough,"It's all ☀️shine, 🌈's and 🦄's +#pjsfromnina #ofcourse #happysaturday https://t.co/fgnamd8OtR" +09/22/2017,Sports_celeb,@juliannehough,"#fbf to our wedding weekend! ☀️💦 +One of our biggest joys about the weekend was being able to… https://t.co/DW1BrBxPW1" +09/22/2017,Sports_celeb,@juliannehough,"#fbf to our wedding weekend! ☀️💦 +One of our biggest joys about the weekend was being able to… https://t.co/86RsbTGdGz" +09/20/2017,Sports_celeb,@juliannehough,"Hey guys, it's been a minute since I've posted about my website and the fun tips and tricks I… https://t.co/PE4UnJUz4y" +09/19/2017,Sports_celeb,@juliannehough,Such a fun shoot with these two beautiful souls today 🙏🏼 @serenakarnagy @hudsontaylor89 https://t.co/MtCEyuy5TK +09/19/2017,Sports_celeb,@juliannehough,#takemebacktuesday I'm so grateful that we were able to visit and experience the beauty and… https://t.co/UAphZuTyWb +09/18/2017,Sports_celeb,@juliannehough,Where it all began 3 years ago... 🖤...can't wait to see what we do together in all the years to… https://t.co/IVJyII1rV7 +09/18/2017,Sports_celeb,@juliannehough,"After party quick change! +💛🖤Came home, changed my dress, gave my husband a kiss good night, and… https://t.co/8kwV4mZwoE" +09/18/2017,Sports_celeb,@juliannehough,RT @fitbit: Celebrate your next birthday by bringing fitness to the party. Fitbit Ambassador @juliannehough shows how: https://t.co/4z4BUUl… +09/18/2017,Sports_celeb,@juliannehough,And of course my ultimate glam squad and best friends for always making me feel confidant and… https://t.co/M6OKsqaIcG +09/18/2017,Sports_celeb,@juliannehough,💕🌸 #emmys2017 https://t.co/FNLNQ4GBau +09/18/2017,Sports_celeb,@juliannehough,One of my all time favorite looks #emmys2017 💕🌸 #marchesa https://t.co/BTRAuQv3qy +09/17/2017,Sports_celeb,@juliannehough,Final touches for this beautiful #emmys2017 red carpet look! 💕🌸 https://t.co/RieE1ZYsqO +09/17/2017,Sports_celeb,@juliannehough,Last one 💃🏼 ... for the glam squad 💄💇🏼👛 https://t.co/iIfYmZ88xI +09/17/2017,Sports_celeb,@juliannehough,My goodness do I love these beautiful friends of mine! They give you air in a crowded room!… https://t.co/5a902xW162 +09/17/2017,Sports_celeb,@juliannehough,Date night with Ariel and Rusty! We've come along way from Bomont.... #bff #footlooseforever… https://t.co/SvGDZ6u6xf +09/17/2017,Sports_celeb,@juliannehough,"#happybeauday miss @morganbeau when @THECoryTran and I think of you living your best life, this… https://t.co/sTDY1kciKm" +09/17/2017,Sports_celeb,@juliannehough,"#happybeauday miss @morganbeau when @THECoryTran and I think of you living your best life, this… https://t.co/PxJ7c3pgQb" +09/16/2017,Sports_celeb,@juliannehough,"Last night we were going for the ""ice queen badass boss in an effortlessly chic pantsuit with… https://t.co/G6r3VEc593" +09/16/2017,Sports_celeb,@juliannehough,Charlie's Angels at its finest! 💁🏻🙋🏼🙅🏻 #mbusa #varietywomeninfilm #charliesangels @ Gracias Madre https://t.co/Ehp6ycBj2w +09/15/2017,Sports_celeb,@juliannehough,"Diving in to the weekend with Lexi 🐶, Romy 🐻 and my one piece unitard by @mpgsport #mpgbyjules… https://t.co/JYDthYh7ZQ" +09/14/2017,Sports_celeb,@juliannehough,"Since today is known around the world as social media's #tbt , I thought I would tell a little… https://t.co/2Yif3yJL1S" +09/14/2017,Sports_celeb,@juliannehough,"This little ""demanding of treats diva"" is the absolute Love of my life! 🐼 #Harley https://t.co/AlsNq0Zlkw" +09/14/2017,Sports_celeb,@juliannehough,"Have to repost this... haha! +Who wants to caption this?? Best caption gets a follow 👍🏼 +#Repost… https://t.co/4Z3uw1zppK" +09/13/2017,Sports_celeb,@juliannehough,"#wcw my ride or die @kristysowin ! +This amazing woman always surprises me, yet doesn't surprise… https://t.co/GvSPkxrylP" +09/13/2017,Sports_celeb,@juliannehough,#handinhand please call 1-800-258-6000 or text GIVE to 80077 to donate! All in the name of… https://t.co/7P8hlYfgQV +09/12/2017,Sports_celeb,@juliannehough,"So excited for my love to start his first day of Camp with the @lakings 🏒 +I've never met anyone… https://t.co/jD8HdeGT6r" +09/11/2017,Sports_celeb,@juliannehough,"Happy Birthday to this 🔥momma! I've never met a woman so strong, talented, commanding of a room,… https://t.co/iA3RGjtjeO" +09/11/2017,Sports_celeb,@juliannehough,Motivation Monday!! Starting the week off by sweatin the weekend out! I woke up late for my… https://t.co/bZRsUHBEvF +09/10/2017,Sports_celeb,@juliannehough,"Holy hot damn, my man is beyond my wildest dreams! 🌸🌸🌸 +#mylove #datenight #creativeartsemmys @… https://t.co/ZG2aJbHjho" +09/09/2017,Sports_celeb,@juliannehough,"All dressed up with somewhere to go! +🤵👛 #creativeartsemmys #outstandingchoreography… https://t.co/9SjPiBKSBb" +09/09/2017,Sports_celeb,@juliannehough,2 years ago today I was able to share this Emmy with my brother @derekhough and friend… https://t.co/PInXf9GXOL +09/08/2017,Sports_celeb,@juliannehough,"This dress 😍😍😍 +Dress: @lela_rose +Shoes: @stuartweitzman +Styling: @anitapatrickson +Hair:… https://t.co/b17mqmoGpJ" +09/07/2017,Sports_celeb,@juliannehough,"#BTS at my photo shoot with @goodhealth! I'm talking about working out, healthy living and… https://t.co/MM9yveJQq0" +09/06/2017,Sports_celeb,@juliannehough,My website got a total makeover over the weekend and I've been dying to share it with you all.… https://t.co/2lXPxX9hXk +09/06/2017,Sports_celeb,@juliannehough,#wcw goes out to my mother-in law @janelaich 💕 not only did Jane raise such a beautiful soul and… https://t.co/v0HijELStm +09/05/2017,Sports_celeb,@juliannehough,Going in to a new work week after a long holiday weekend like..... #flyingintoNYC… https://t.co/00xxlhO5vG +09/03/2017,Sports_celeb,@juliannehough,"Not only is today #sundayfunday , but I get to do it all again tomorrow!! 👙🕶🌊 +What are your… https://t.co/WIrDbchoTB" +08/31/2017,Sports_celeb,@juliannehough,"#tbt to our incredible honeymoon! As amazing as it was (take me back), I feel so lucky that our… https://t.co/pH138OlEDR" +08/31/2017,Sports_celeb,@juliannehough,"Donate, Donate Donate!!!! Sending prayers and love to everyone in Houston! 💕#hurricaneharvey https://t.co/QlgpX8UJJK" +08/29/2017,Sports_celeb,@juliannehough,"💦💜🖤 @mpgsport +*Sweating it out in my +*Audition 2.0 Capri leggings +*AMA light support strapped… https://t.co/hB4CYyb2n4" +08/29/2017,Sports_celeb,@juliannehough,Sweating it out in my new fall collection for @mpgsport with my sassy matching soul sister… https://t.co/hn55UIHlzV +08/28/2017,Sports_celeb,@juliannehough,"So pumped.... 4M 💋 +📷: @samanthamarq @ Home https://t.co/YdhaVUc2NX" +08/28/2017,Sports_celeb,@juliannehough,"Sometimes after a long day, I don't always feel like making dinner. Which is why I love these ""no-cook"" recipes fro… https://t.co/cc7Y9pimwt" +08/28/2017,Sports_celeb,@juliannehough,Holy 4 Million followers!! ❤️❤️❤️ You guys are the BEST! Thank you for your continued love and… https://t.co/7vS7CAdZVG +08/28/2017,Sports_celeb,@juliannehough,"@Pink has been a voice, a talent and a true pioneer that I've looked up to since I was 12! After all these years, she still blows my mind!" +08/28/2017,Sports_celeb,@juliannehough,Ummmm @taylorswift13 just 8 mile'd tgat shit!!! Yo... that video was freakin awesome! 🔥🔥🔥 +08/26/2017,Sports_celeb,@juliannehough,My absolute whole ❤️ #Lexi 🐶 #Harley 🐼 #nationaldogsday https://t.co/2zsJaK3Fny +08/25/2017,Sports_celeb,@juliannehough,"Calling all my Utah friends, family and followers!!! I will be joining @imaginedragons along… https://t.co/7qxXFaXhAA" +08/25/2017,Sports_celeb,@juliannehough,I'm so inspired by all the hard work my friend and fellow dancer @KimGingras has put into her… https://t.co/eULypSlGmu +08/25/2017,Sports_celeb,@juliannehough,I'm obviously obsessed with anything related to chasing your dreams.... and I just got the… https://t.co/nyUkqo7fKk +08/24/2017,Sports_celeb,@juliannehough,#mpgsport #mpgbyjules https://t.co/VkmBJQBopQ +08/24/2017,Sports_celeb,@juliannehough,A good sports bra is a total must have when you’re working out. This one’s called the Pacesetter… https://t.co/AFBDx5W9hn +08/24/2017,Sports_celeb,@juliannehough,"Retro touches, because who doesn't love a little throwback style?! https://t.co/78XPpl2IqW" +08/24/2017,Sports_celeb,@juliannehough,Gorgeous new fall colors like rose & port https://t.co/D8L1dQjyyQ +08/24/2017,Sports_celeb,@juliannehough,Things I ❤ this season: https://t.co/wayuyax3Q7 +08/24/2017,Sports_celeb,@juliannehough,My Fall ’17 Collection with @mpgsport has landed! https://t.co/cCugBKNs92 +08/24/2017,Sports_celeb,@juliannehough,Here.... https://t.co/ecHhrQTi7t +08/24/2017,Sports_celeb,@juliannehough,Finally...... https://t.co/U0bE8o8MqZ +08/24/2017,Sports_celeb,@juliannehough,It's.... https://t.co/X0Qmke2FeV +08/23/2017,Sports_celeb,@juliannehough,Universal ❤️ @ Rosaliné https://t.co/UsTxnIa6UJ +08/20/2017,Sports_celeb,@juliannehough,Training for my next role 🥊 #firsttimeboxing #trainthebrain #holycardio #loveit https://t.co/PN89fMKCiD +08/20/2017,Sports_celeb,@juliannehough,"Unlike Lexi 🐶 and Harley 🐼, Romy 🐻 is totally pumped about his new Alaskan PJ's!!! #mom https://t.co/Sir8ma5djV" +08/18/2017,Sports_celeb,@juliannehough,"#FBF Fun fact: @BrooksLaich and I honeymooned to a few different spots, but one in particular… https://t.co/l39Sak3YQu" +08/17/2017,Sports_celeb,@juliannehough,"When you think you're a professional photographer.... you gotta have a good stance! +📷:… https://t.co/K0reIETGwq" +08/16/2017,Sports_celeb,@juliannehough,Caption please... 🔥🎽❤️💦🚣🏼 #fishinwithmyishes #11yearsinthemaking #allforward #riley 📷:… https://t.co/pvCpSxHluD +08/14/2017,Sports_celeb,@juliannehough,"#BetchaKanCatchaKrabInKetchikan 🦀 @ Ketchikan, Alaska https://t.co/yxCkmq3ZIz" +08/14/2017,Sports_celeb,@juliannehough,Thank you @celebritycruise 🚢 for the gift of this gorgeous Alaskan cruise with some of my best… https://t.co/9eBjwBQ5aa +08/14/2017,Sports_celeb,@juliannehough,"Ketchikan, Alaska 🏔🐻🚢🦀 https://t.co/GM44eRoe0j" +08/13/2017,Sports_celeb,@juliannehough,"Last night in the library... 📖 +Before the silent disco 💙❤️💚 @ British Columbia https://t.co/l5whq76gK8" +08/13/2017,Sports_celeb,@juliannehough,"RT @IMKristenBell: This thread brought me to tears. Thank you, sister Helen. I really needed to read this today. https://t.co/Ig5onMOVPP" +06/30/2018,Sports_celeb,@JeffGordonWeb,Wishing the @NASCARonNBC team all the best @ChicagolndSpdwy as they carry @NASCAR Cup & Xfinity races the remainder… https://t.co/bVJh20ykoh +06/28/2018,Sports_celeb,@JeffGordonWeb,🏎😎 https://t.co/BvqpBZzZ6m +06/27/2018,Sports_celeb,@JeffGordonWeb,"The stage 1 winner is... + +Chris Price from Caldwell, Texas won the first $5,000 drawing for @JeffGordon4Cure's… https://t.co/cyMA0rJrRB" +06/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: From Daytona to Sonoma. What a ride. + +@MikeJoy500, @AllWaltrip and @JeffGordonWeb share their favorite moments from the 20…" +06/26/2018,Sports_celeb,@JeffGordonWeb,"Meeting Grandma Pat was special. + +⬇️⬇️ + +https://t.co/Din9mw9Bhn + +@NASCARONFOX +@PoconoRaceway +@MichaelStrahan + +#TeamJG" +06/25/2018,Sports_celeb,@JeffGordonWeb,Congrats! That’s awesome! Glad you conquered the peak and didn’t see any “blue sky”😁 https://t.co/qZ0j0YdFIQ +06/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@AllWaltrip, @JeffGordonWeb and @MikeJoy500 take you around Sonoma. https://t.co/qgKVNfVkBk" +06/24/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FS1 or https://t.co/DKghQFsqRs at 1:30pm ET for @NASCARONFOX from Sonoma! + +📷:… https://t.co/n01xfTkpdJ" +06/24/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: Could you see yourself driving this? + +Get your ticket for the chance to win this special #Corvette & up to $10,000 whil…" +06/23/2018,Sports_celeb,@JeffGordonWeb,"Could you see yourself driving this? + +Get your ticket for the chance to win this special #Corvette & up to $10,000… https://t.co/0n7jl8VhcF" +06/21/2018,Sports_celeb,@JeffGordonWeb,Enjoyed spending time with these #JeffGordon24EverVIP fans and @WilliamByron in Michigan. Great group that traveled… https://t.co/AGdBgMbBNO +06/20/2018,Sports_celeb,@JeffGordonWeb,There’s no other choice than the Birthday Cake Milkshake for the birthday girl at @BlackTapNYC 😊🎂. https://t.co/rtZKw8WsNf +06/18/2018,Sports_celeb,@JeffGordonWeb,Feeling very lucky this Father’s Day! https://t.co/PMhbYb6NVL +06/17/2018,Sports_celeb,@JeffGordonWeb,"Nothing beats a classic like a Slip ‘N Slide, especially in slow-mo. #FathersDay2018 https://t.co/tWeMJLZFEX" +06/17/2018,Sports_celeb,@JeffGordonWeb,Enjoyed the amazing weather at @usopengolf & @rooknox cult fan following. Thanks @FOXSports! https://t.co/9xP2RdfMqF +06/15/2018,Sports_celeb,@JeffGordonWeb,"Last chance! Stage 1 ends today for the chance to win Corvette, up to $15,000 & support @JeffGordon4Cure in helping… https://t.co/4NBM1RQdrI" +06/13/2018,Sports_celeb,@JeffGordonWeb,"🎵 +@U2 +@ApolloTheater +@SIRIUSXM https://t.co/H3dNCnA1nb" +06/13/2018,Sports_celeb,@JeffGordonWeb,New Release: @RayEvernham Dual Autographed 1998 @AMSUpdates Win Die Cast. Limited edition available exclusively at… https://t.co/1A7UVsjozD +06/12/2018,Sports_celeb,@JeffGordonWeb,"There’s no other experience in the world like hearing, smelling and feeling race cars flying by at 200+mph! @NASCAR https://t.co/vh0cSX91CC" +06/12/2018,Sports_celeb,@JeffGordonWeb,Unforgettable night with @U2 at @ApolloTheater thanks to @SIRIUSXM. https://t.co/evMkH3mBcy +06/10/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@JeffGordonWeb sits down with the great-grandson of Henry Ford, Edsel Ford, to discuss the Ford's rich racing history at…" +06/10/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FOXTV or https://t.co/vrddf6SJWT at 1:30pm ET for @NASCARONFOX from @MISpeedway! + +📷:… https://t.co/jyBDQiMVcc" +06/09/2018,Sports_celeb,@JeffGordonWeb,Enjoyed meeting @beyetteracing97 today at @MISpeedway & autographing his signature edition Monte Carlo. Awesome to… https://t.co/HsZaCa36qJ +06/08/2018,Sports_celeb,@JeffGordonWeb,Well any luck?😎 https://t.co/8wGMSjwGmS +06/08/2018,Sports_celeb,@JeffGordonWeb,"So cool for me to be able to meet Grandma Pat last week & help her check something off her bucket list! + +Big thanks… https://t.co/2xn7PzgLBP" +06/08/2018,Sports_celeb,@JeffGordonWeb,Special evening with Ella to see Harry Potter on Broadway last night. She’s still smiling! https://t.co/kxKRE2VD6A +06/06/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARHall: Stop by the Hall & gaze in awe at @JeffGordonWeb's 60th Anniversary Chevy Corvette! Get your ticket to win this #CorvetteFo… +06/05/2018,Sports_celeb,@JeffGordonWeb,"RT @BMSupdates: You could win @JeffGordonWeb’s personal @chevrolet Corvette and up to $15,000 cash & support kids fighting cancer through t…" +06/03/2018,Sports_celeb,@JeffGordonWeb,RT @ClintBowyer: Thanks @JeffGordonWeb. Cash has been burnin’ laps all day. 👌 https://t.co/8zMPH7atQX +06/03/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FS1 or https://t.co/vrddf6SJWT at 12:30pm ET for @NASCARONFOX from Pocono! + +📷:… https://t.co/0fIVieYvNH" +06/03/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: You could win my personal #Corvette, up to $15,000 cash & support @JeffGordon4Cure in helping kids that are battling can…" +06/01/2018,Sports_celeb,@JeffGordonWeb,"You could win my personal #Corvette, up to $15,000 cash & support @JeffGordon4Cure in helping kids that are battlin… https://t.co/bHDCqHfJbe" +06/01/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Charlotte. Awesome group that trav… https://t.co/zcFNgH4n97 +06/01/2018,Sports_celeb,@JeffGordonWeb,New Release: Dual Autographed @WilliamByron 2018 #24 @AxaltaRacing Rainbow @TooToughToTame Throwback ELITE 1:24 Sc… https://t.co/qExEgzOQ2V +05/28/2018,Sports_celeb,@JeffGordonWeb,https://t.co/czpv8A0Tkf +05/27/2018,Sports_celeb,@JeffGordonWeb,Are you ready for the 600? Tune to @FS1 at 4:30pm ET for @NASCAR #RaceDay from Charlotte then @NASCARONFOX at 5:30p… https://t.co/lzllqnjMPk +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: “Thanks for sending in your #AskJG questions. This was fun! Don’t miss tomorrow’s race from Charlotte on FOX.”- @JeffGordo… +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Anterga 3️⃣🏁 #AskJG https://t.co/T4fXlDl5Oq +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Incredicast “@Bobby_Labonte deserves to be in the @NASCARHall.”- @JeffGordonWeb #AskJG https://t.co/vXzvydvhPZ +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@thecon24 “It feels like a championship!”- @JeffGordonWeb #AskJG https://t.co/VO9NvbkL23 +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@racrboi90 #AskJG https://t.co/O6Oym5F5Il +05/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@JaydenTroutman You in, @AllWaltrip? @MartinsvilleSwy #AskJG https://t.co/MYuZNiIRVL" +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@CriswellZ71 #AskJG https://t.co/iKuOdz80bj +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Hail4Breakfast #AskJG https://t.co/s3fZsGtMhG +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@kevinpearman #AskJG https://t.co/DmHkS0dfsm +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@24gordongirlfan #AskJG https://t.co/ZHRmRH4DjE +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@JeffGordonWeb is here to answer your #AskJG questions from Charlotte! What do you want to know? https://t.co/cG7fGWzAaF +05/24/2018,Sports_celeb,@JeffGordonWeb,"You were 25?! What was I thinking?😂 Seriously, It was a pleasure working with you Steve. A lot of great years toget… https://t.co/MV0PWiyjcK" +05/24/2018,Sports_celeb,@JeffGordonWeb,Call off the search! I’m in and proud as....you know what! 96% is good enough for me😃 https://t.co/lMANskDL9Q +05/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Get ready for a Twitter video Q&A with a NASCAR legend! What have you always wanted to ask Jeff Gordon? + +Reply to this twe…" +05/23/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Tonight’s NASCAR #RaceHub is all about Jeff Gordon. We’ll talk with the Hall of Famer himself, along with a prominent list…" +05/23/2018,Sports_celeb,@JeffGordonWeb,Extremely honored to be part of the 2019 @NASCARHall of Fame Class. I’m grateful to so many people that played a ro… https://t.co/35JzXmybXo +05/20/2018,Sports_celeb,@JeffGordonWeb,A lot of exciting moments in last night’s All Star race @CLTMotorSpdwy. Good chance we’ll see a updated version of… https://t.co/eWST90QW0d +05/19/2018,Sports_celeb,@JeffGordonWeb,"Ready for the #AllStarRace? Tune in to @NASCARonFOX from Charlotte on @FS1 or https://t.co/vrddf6SJWT! + +📷:… https://t.co/C5rSYcCygY" +05/19/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: TONIGHT. $1M is up for grabs. + +Don't miss the 2018 #AllStarRace. Coverage begins at 5p ET on FS1. + +https://t.co/sGhMOjNT1O" +05/18/2018,Sports_celeb,@JeffGordonWeb,".@WilliamByron to Drive Throwback Rainbow #24 at @TooToughToTame + +🌈🌈🌈🌈 +@AxaltaRacing +@TeamHendrick + +https://t.co/rpPohkaXzA + +#TeamJG" +05/18/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: Getting ready for an exciting announcement with @WilliamByron and @JeffGordonWeb. + +Watch it live on @AxaltaRacing’s Inst…" +05/18/2018,Sports_celeb,@JeffGordonWeb,The cover comes off of @WilliamByron’s No. 24 Chevy Camaro for @TooToughToTame today. Head over to @AxaltaRacing’s… https://t.co/mfwV4yoD7r +05/18/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Jeff Gordon remembers the very wet 2001 NASCAR #AllStarRace, when he went to Victory Lane in a backup car. #RaceHub https:…" +05/16/2018,Sports_celeb,@JeffGordonWeb,That’s a great collectible! And signed by all 4 drivers👍🏻 https://t.co/TGCTqrRWNC +05/16/2018,Sports_celeb,@JeffGordonWeb,👍🏻😁 https://t.co/Mh4HZPqDm0 +05/16/2018,Sports_celeb,@JeffGordonWeb,I sure do! Had a blast racing that kart. That’s at the small dirt track outside the old Baylands track where they u… https://t.co/kl9dK5Hhym +05/15/2018,Sports_celeb,@JeffGordonWeb,Enjoyed hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Kansas. Great group that traveled fro… https://t.co/gknVFNeYzO +05/15/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Saturday night. $1M is up for grabs. + +Don't miss the 2018 #AllStarRace on FS1. https://t.co/ZMYq0MCWGI" +05/13/2018,Sports_celeb,@JeffGordonWeb,"Happy Mother’s Day to, @ivandebosch, my wonderful wife & amazing mom to Ella & Leo! https://t.co/kfbUVZi1JZ" +05/12/2018,Sports_celeb,@JeffGordonWeb,Who’s ready for racing? It’s almost go time. Tune in to @NASCARonFOX from Kansas at 7pm ET on @FS1 or… https://t.co/BnCYZz4v9A +05/12/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: New family photos. + +⬇️⬇️⬇️ + +https://t.co/4Nt1Ii92pu + +#TeamJG https://t.co/3HYiVbJi3E" +05/12/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: Racing Rewards is a new app where you can play games, answer trivia, get the latest racing news & more to earn reward po…" +05/12/2018,Sports_celeb,@JeffGordonWeb,"New family photos. + +⬇️⬇️⬇️ + +https://t.co/4Nt1Ii92pu + +#TeamJG https://t.co/3HYiVbJi3E" +05/11/2018,Sports_celeb,@JeffGordonWeb,I’m pretty sure I was telling you about my goal to perfect the mullet!😂. Had a lot of great battles together over t… https://t.co/Tsa8A2PIhh +05/11/2018,Sports_celeb,@JeffGordonWeb,"Thank you to everyone who attended A Night In Napa supporting @JeffGordon4Cure. Because of you, we raised over $75,… https://t.co/RAO22Pdm0Z" +05/10/2018,Sports_celeb,@JeffGordonWeb,"Racing Rewards is a new app where you can play games, answer trivia, get the latest racing news & more to earn rewa… https://t.co/vp3cUA3JBB" +05/06/2018,Sports_celeb,@JeffGordonWeb,"Who’s ready for racing? Tune in to @NASCARonFOX from Dover at 2pm ET on @FS1 or https://t.co/vrddf6SJWT! + +📷:… https://t.co/MFv7sdiUy4" +05/05/2018,Sports_celeb,@JeffGordonWeb,What an honor! Thank you! https://t.co/6uGxB7kiyb +05/03/2018,Sports_celeb,@JeffGordonWeb,This was fun! Great to spend time with these #JeffGordon24EverVIP fans & @WilliamByron at Talladega. Awesome group… https://t.co/STaN24Cv1q +05/03/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonSales: #GuessingGame 🐎 How many horses do you think @JeffGordonWeb's #Chevy dealer can fit on its main showroom floor? 🤔 + +Re…" +05/03/2018,Sports_celeb,@JeffGordonWeb,New family photos -> https://t.co/4Nt1Ii92pu. #TeamJG https://t.co/FD3HWcsiTQ +05/01/2018,Sports_celeb,@JeffGordonWeb,It’s finally here! The 1:18 scale @WayneTaylorRcng 24 Hours of Daytona car looks amazing! Shipping soon from… https://t.co/vtxLzaBI0v +04/30/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron a couple weeks ago in Bristol. Awesom… https://t.co/OvCEnsmHFM +04/30/2018,Sports_celeb,@JeffGordonWeb,RT @jordan10taylor: Great time at Talladega this weekend! Thanks for the hospitality @TalladegaSuperS and @TeamHendrick. #WalkItLikeITalkIt… +04/30/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Man, these autograph chasers are EVERYWHERE at Talladega. 😂 https://t.co/QSE2PMgons" +04/29/2018,Sports_celeb,@JeffGordonWeb,"Who’s ready for racing? Tune to @NASCARonFOX or https://t.co/vrddf6SJWT from Talladega at 1:30pm ET on @FOXTV! + +📷:… https://t.co/ZGGL1RMRln" +04/29/2018,Sports_celeb,@JeffGordonWeb,So cool for me to be able to assist @CodyCutrer24 with his proposal to @Shay_49 yesterday at the… https://t.co/11F8bCd1xI +04/28/2018,Sports_celeb,@JeffGordonWeb,"You can help @JeffGordon4Cure support children battling cancer when you bid on these unique items. + +➡️… https://t.co/F3WAFnABhi" +04/28/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: It's #DriversOnly Saturday in Talladega! Coverage starts today with @NASCAR_Xfinity qualifying at 11a ET on FS1. + +Coverage…" +04/26/2018,Sports_celeb,@JeffGordonWeb,RT @TeamHendrick: #TBT to @JeffGordonWeb’s 2007 win @TalladegaSuperS. https://t.co/ktJsLk2L29 +04/26/2018,Sports_celeb,@JeffGordonWeb,RT @kansasspeedway: Just 4 days left to enter for your chance to meet @JeffGordonWeb as part of a VIP experience right here at Kansas Speed… +04/25/2018,Sports_celeb,@JeffGordonWeb,New Release: @RayEvernham Dual Autographed 1998 @TooToughToTame Win Die Cast available exclusively at… https://t.co/T3vXfQ6Gi2 +04/25/2018,Sports_celeb,@JeffGordonWeb,"Had a great time visiting @LevineChildrens yesterday & being interviewed by @jordin_donahue, daughter of former #24… https://t.co/ZPFchBM2Ya" +04/25/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: After watching our new friend Alexander meet his favorite drivers, we had smiles on our faces, too.😁 https://t.co/MeDgrJM…" +04/23/2018,Sports_celeb,@JeffGordonWeb,Looks like I need to stop by Kennesaw next time I’m in GA! https://t.co/AERsPVkMeB +04/21/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: The Ultimate At-Track Experience Contest! + +You could win: +- (4) Hot Passes +- Meet & Greet +- (4) Grandstand Tickets +- $20…" +04/21/2018,Sports_celeb,@JeffGordonWeb,So proud of Leo today in his 1st USAC.25 race. Started at the back & was moving forward. Went for a late pass into… https://t.co/OreV3RGbUJ +04/21/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 3pm ET on @FS1, then @NASCARonFOX from Richmond at 6pm ET on @FOXTV! Who’s ready for ra… https://t.co/vlqrDpWfqa" +04/21/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Get ready for tonight’s race in Richmond with NASCAR #RaceDay. 3p ET on FS1 and https://t.co/2Jj71pkLEW! https://t.co/kMLH… +04/19/2018,Sports_celeb,@JeffGordonWeb,RT @ivandebosch: The @BCRFcure #HotPinkParty is less than 1 month away! Looking forward to seeing @MaryJBlige take the stage to support bre… +04/16/2018,Sports_celeb,@JeffGordonWeb,"The Ultimate At-Track Experience Contest! + +You could win: +- (4) Hot Passes +- Meet & Greet +- (4) Grandstand Tickets… https://t.co/ySMCyJ7GwZ" +04/16/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: So, if you need to leave work or school within the next hour ... these may help. 😉 https://t.co/uOD9eXDOVK" +04/16/2018,Sports_celeb,@JeffGordonWeb,It is at Bristol! https://t.co/gst6YlUBeX +04/16/2018,Sports_celeb,@JeffGordonWeb,The 30 degree drop in temp today @BMSupdates is going to keep the intensity high(& grip on the steering wheel even… https://t.co/kvn1Or3ULf +04/16/2018,Sports_celeb,@JeffGordonWeb,"Neither, catching up on recorded Supercross on @FS1 from last night. Watching Homeland & Billions after that to fin… https://t.co/ESUDWpYdFs" +04/15/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Need an excuse to miss work and watch racing from Bristol tomorrow? We've got you covered. 👊😎🏁 https://t.co/YYuvKO9u17 +04/15/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: OFFICIAL: The rest of today's action in Bristol has been postponed. We will resume racing tomorrow at 1p ET on FOX. https:… +04/15/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 11:30am ET on @FS1, then @NASCARonFOX from Bristol at 12:30pm ET on @FOXTV! Who’s ready… https://t.co/UBqlcodBye" +04/14/2018,Sports_celeb,@JeffGordonWeb,Watching the @NASCAR Xfinity race and it reminds me of “old school Bristol”. Pretty cool! Wondering though if… https://t.co/jQUmotGCzG +04/13/2018,Sports_celeb,@JeffGordonWeb,Learn anything about that last pit road timing segment leaving #1 pit stall? 🤔 https://t.co/AkR1xYlvAo +04/13/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordonWeb: @CopaCavanna Hi Alan! 😁 https://t.co/mkkqOwtG3o +04/13/2018,Sports_celeb,@JeffGordonWeb,@CopaCavanna Hi Alan! 😁 https://t.co/mkkqOwtG3o +04/12/2018,Sports_celeb,@JeffGordonWeb,A yr traveling & racing through Europe🤔👍🏻Is @MattieceHansen a part of the deal?😆 https://t.co/mY54AX3X1e +04/11/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Texas. Awesome group that traveled… https://t.co/xqtgKJ71DK +04/08/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 12:30pm ET, then @NASCARonFOX from Texas at 2pm ET both on @FS1! Who’s ready for racing… https://t.co/PsDPQdYKtX" +04/07/2018,Sports_celeb,@JeffGordonWeb,“Whew... for a second there I thought I was going to miss my exit”😂 https://t.co/oHxqOF75wJ +04/06/2018,Sports_celeb,@JeffGordonWeb,I’ll give @NASCAR & @NASCARONFOX a lot of credit for cancelling qual today. It just started pouring down rain! Not… https://t.co/ulodvt1mRc +04/06/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: Look who we found roaming the garage. 👋 https://t.co/zrMuNinHk0 +04/02/2018,Sports_celeb,@JeffGordonWeb,Dinner & stargazing with the family. Perfect night (and a blue moon!). https://t.co/RFnTvEDZzu +04/01/2018,Sports_celeb,@JeffGordonWeb,https://t.co/rCzDBybWMG +04/01/2018,Sports_celeb,@JeffGordonWeb,Happy Easter https://t.co/mYFJjWeoFs +04/01/2018,Sports_celeb,@JeffGordonWeb,"If you’ve never seen zip-lining in Costa Rica then you’ve probably not seen the Superman Zip-line. Insane! And no,… https://t.co/aCX8xnN2p3" +03/30/2018,Sports_celeb,@JeffGordonWeb,Woke up to monkeys having their breakfast in the treetops outside our room. https://t.co/SYDVpjZbTg +03/30/2018,Sports_celeb,@JeffGordonWeb,@ClintBowyer No race car driver(or person) cooler than @MarioAndretti! But don’t let the awesome meter get in the w… https://t.co/iNz5GATVbz +03/30/2018,Sports_celeb,@JeffGordonWeb,https://t.co/0oMFrYngjk +03/29/2018,Sports_celeb,@JeffGordonWeb,"In an interview with @MediaPlanetUSA for a special feature that was in yesterday's @USATODAY, discussed the road ah… https://t.co/2IUw5xRjFw" +03/29/2018,Sports_celeb,@JeffGordonWeb,Zip line Costa Rica! https://t.co/yUSRxiPvSy +03/29/2018,Sports_celeb,@JeffGordonWeb,Fun & adventurous day in Costa Rica. https://t.co/wx3s8gfjph +03/27/2018,Sports_celeb,@JeffGordonWeb,"Recently, @ivandebosch visited her family in Belgium to celebrate her Mom’s 85th birthday. 🎂 + +You can check out 📷 &… https://t.co/u1V6UlTVyQ" +03/26/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT for @NASCARonFOX from Martinsville at 2pm ET! Snow postponed yesterday’s ra… https://t.co/5HYo5ZTmqj +03/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: NASCAR Truck Series: ✓ +NASCAR Cup Series: NEXT! + +#RaceHub gets you ready for today's main event in Martinsville NOW on FS1…" +03/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Snow has postponed all activity at @MartinsvilleSwy until Monday. + +Tomorrow on @FS1: +- @NASCAR_Trucks at 11a ET +- Cup Ser…" +03/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: @NASCAR_Trucks NASCAR #RaceDay - 12:30p ET + +Cup Series Racing - 2p ET + +Truck Series Racing - Immediately following the Cup…" +03/24/2018,Sports_celeb,@JeffGordonWeb,I’m not the only one in the family who loves coming to @MartinsvilleSwy. Thank you @JamieLittleTV for letting Ella… https://t.co/DBMuVm5MEE +03/23/2018,Sports_celeb,@JeffGordonWeb,"RT @ivandebosch: This is what a real Belgian Waffle looks like, hot Chocolat sauce and Ice cream onthe side! For a 4pm snack une https://t.…" +03/23/2018,Sports_celeb,@JeffGordonWeb,RT @AxaltaRacing: #BreakingNews -- @AxaltaRacing is thrilled to announce our extension with @TeamHendrick through 2022! #WePaintWinners htt… +03/23/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Martinsville. Sunday on FS1. https://t.co/bB0xH6Eh43 +03/22/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: The Martinsville hour is close at hand. https://t.co/HmG01QruxY +03/21/2018,Sports_celeb,@JeffGordonWeb,"Ingredients to a great day. + +Leo: ”Dad what is Star Wars about?” + +Me: ”In a galaxy far away....good vs evil....Luk… https://t.co/XvY9r6Mm38" +03/19/2018,Sports_celeb,@JeffGordonWeb,"Really enjoyed spending time with these #JeffGordon24EverVIP fans at Fontana. Great group that traveled from AZ, CA… https://t.co/ikdbMTnhAN" +03/18/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Fon… https://t.co/0czmNUfr8i +03/18/2018,Sports_celeb,@JeffGordonWeb,Wow what a clutch shot! That was a scream out loud “WHAT!!!” moment. https://t.co/pesZKmtXia +03/17/2018,Sports_celeb,@JeffGordonWeb,"RT @DaleJr: That time I went to get highlights but was sick of the pain of getting my hair pulled through the cap. Ouch. +Lesson: no pain n…" +03/17/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordonWeb: @DaleJr I see retirement is treating you to the same amount of relaxation as it is for me. I’m not sure how to describe… +03/17/2018,Sports_celeb,@JeffGordonWeb,@DaleJr I see retirement is treating you to the same amount of relaxation as it is for me. I’m not sure how to desc… https://t.co/3cZbNt4uCI +03/17/2018,Sports_celeb,@JeffGordonWeb,LOL! When do u plan to get back to the race track this year? You have too much time on your hands!😂 https://t.co/ZPmly4y0kT +03/17/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Spend your St. Patrick's Day with #NASCARonFS1! Monster Energy Series practice is at 12:30p ET. + +Here's your full Saturday…" +03/17/2018,Sports_celeb,@JeffGordonWeb,"Wow! NASCAR-“I’ll see your $50.....& raise you $1,000” https://t.co/gdRn5Xva5m" +03/16/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: California dreamin' on Fast Friday. https://t.co/EMuynFnX3r +03/15/2018,Sports_celeb,@JeffGordonWeb,RT @JonEdwards24: Be sure to catch @JeffGordonWeb @ShannonSpake @LarryMac28 and @adam1alexander on Race Hub tonight at 7 pm ET. https://t.c… +03/14/2018,Sports_celeb,@JeffGordonWeb,Well said Eddie! Couldn’t agree more. https://t.co/sCvGbuuOH2 +03/14/2018,Sports_celeb,@JeffGordonWeb,"RT @ajsuriano_: Hey @JeffGordonWeb guess what, your biggest fan, Fan 151 (@driveforfive) gave birth to Baby Franks today.... at 3:24... htt…" +03/14/2018,Sports_celeb,@JeffGordonWeb,Haha talk about a cool experience! Room full of racing legends and solving world problems with the greatest of them… https://t.co/Di5gu6yb7h +03/14/2018,Sports_celeb,@JeffGordonWeb,"👟🔥👀 + +@MACHE275 created custom kicks. + +⬇️⬇️⬇️ + +https://t.co/JGpfU3Ty9t + +#TeamJG https://t.co/Q4lgbSWRCz" +03/14/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: A well-deserved honor! + +Congratulations, @JeffGordonWeb on your induction into the @MotorsportsHOF. 🎉 https://t.co/dQS0iy…" +03/13/2018,Sports_celeb,@JeffGordonWeb,😂😂😂U go Larry Mac! #crewchiefofbelair https://t.co/jzozCepYGc +03/12/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordon4Cure: Checked out our eBay store recently? There are 600+ listings for purchase to help support our fight against childhood… +03/12/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: #RaceHubGoesWest: 6p ET on FS1. https://t.co/8kVqTajpDC +03/12/2018,Sports_celeb,@JeffGordonWeb,“The entire #JeffGordon24EverVIP Experience was amazing from start to finish. This was a surprise graduation presen… https://t.co/RDXuKnciuI +03/11/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Pho… https://t.co/Rndr1vT8pG +03/10/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Your NASCAR Saturday is less than one hour away! It all kicks off on FS1 at 12p ET. https://t.co/7Wh3uDV01E +03/09/2018,Sports_celeb,@JeffGordonWeb,Exactly. Teams were using exotic materials such as Nitinol(Nickel Titanium). Only aluminum is allowed now. https://t.co/BYmyAWMs5v +03/09/2018,Sports_celeb,@JeffGordonWeb,The side skirts are made of plastic(except the tailpipe area). The only material allowed on the right side surround… https://t.co/EmGka5WfXW +03/09/2018,Sports_celeb,@JeffGordonWeb,New Release: Autographed @RayEvernham 2018 @NASCARHall Of Fame 1:24 Scale ARC Fantasy Die Cast! Exclusively at… https://t.co/EQKsHlc9uv +03/08/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: .@ISMRaceway sure holds a special place in @JeffGordonWeb's heart. 3️⃣ https://t.co/3tvjRdLgrd +03/07/2018,Sports_celeb,@JeffGordonWeb,What a pleasure it was to drive & win a race for the Wilke Family. Hard to believe that was 27yrs ago! https://t.co/qYJm1pZ8H0 +03/06/2018,Sports_celeb,@JeffGordonWeb,I’m so honored and thrilled to be one of the 20 nominees for the 2019 @NASCARHall of Fame class. Such a special con… https://t.co/dd9wFUIZXm +03/06/2018,Sports_celeb,@JeffGordonWeb,"New things for @TeamHendrick. In case you missed the @NASCARONFOX interview - talking with @JimmieJohnson,… https://t.co/9x3V57p8G8" +03/05/2018,Sports_celeb,@JeffGordonWeb,🤔𗀡😂 https://t.co/OhELcz44Pf +03/05/2018,Sports_celeb,@JeffGordonWeb,"😍😍 + +📸 ➡️ https://t.co/4Nt1Ii92pu. + +#TeamJG https://t.co/TvJyjPv8AW" +03/05/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWine: Our 2014 Carneros Chard, autographed by Jeff, & our 94-point 2009 Napa Cab from the library...what a pair! Secure yours…" +03/04/2018,Sports_celeb,@JeffGordonWeb,"Tune to @FS1 at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Las Vegas Motor Speedway. + +📷:… https://t.co/xoHp0C8E8J" +03/04/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Soon ... (2p ET on FS1, to be exact) https://t.co/B7sMo32UXc" +03/03/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Your NASCAR Saturday starts ... NOW! + +All of today's action is on FS1. Stream it with https://t.co/2Jj71pkLEW. https://t.…" +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Fast Friday from Las Vegas. https://t.co/dDkxQcM7Zy +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Fiiiiiiiiiiiiiiiiiiiiiiiiiiiight. We all remember these. #TBT #RaceHub https://t.co/3sls0GrYma +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: BREAKING NEWS. #RaceHub had a lot of fun this week ... as usual. https://t.co/KqcdP05EsP +03/01/2018,Sports_celeb,@JeffGordonWeb,Very cool! Great to see @MattieceHansen behind the wheel. You are a good man for doing that @AnthonyKumpen. Hope th… https://t.co/OJbtDSTnkr +03/01/2018,Sports_celeb,@JeffGordonWeb,"Talked life, racing, work & a few other things with @NateRyan on the @NASCARonNBC podcast. You can listen here ->… https://t.co/OttdP4Px9D" +02/28/2018,Sports_celeb,@JeffGordonWeb,"Recently joined @NateRyan for @NASCARonNBC podcast. Covered a lot of things. Think you'll enjoy it. + +– Past, presen… https://t.co/56QS1MuBBs" +02/28/2018,Sports_celeb,@JeffGordonWeb,RT @24ChevyLover: Wow! Time goes @NASCAR fast! It was 4 years ago on this date that I met @JeffGordonWeb for my first #JeffGordon24EverVIP… +02/28/2018,Sports_celeb,@JeffGordonWeb,"RT @nateryan: Among the topics of @JeffGordonWeb's visit to the @NASCARonNBC podcast: +--His thoughts on his upcoming @NASCARHall candidacy;…" +02/28/2018,Sports_celeb,@JeffGordonWeb,"RT @nateryan: New @NASCARonNBC podcast is a wide-ranging convo with guest @JeffGordonWeb of @NASCARONFOX. #nascar +@art19co: https://t.co/y6…" +02/28/2018,Sports_celeb,@JeffGordonWeb,Happy Birthday to the legend @MarioAndretti. +02/27/2018,Sports_celeb,@JeffGordonWeb,New family photos -> https://t.co/4Nt1Ii92pu. #TeamJG https://t.co/f81bc8Lp7x +02/26/2018,Sports_celeb,@JeffGordonWeb,"Leo is officially ready to race! + +📷 -> https://t.co/4Nt1Ii92pu. https://t.co/oTtY8WZClj" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: WE. ARE. GREEN! + +Ryan Newman leads lap 1 of 325 in Atlanta. https://t.co/RvXjz3V69s" +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Retweet to spread the news! Looks like we're going racing in Atlanta. Coverage continues NOW on FOX and https://t.co/2Jj71… +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Mike Joy and Larry Mac are optimistic. https://t.co/9CRH5FPUvE +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: When dad tells you to shape up on national television. https://t.co/FvW2PWf0gr +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@BubbaWallace reflects on his 2nd-place finish in the Daytona 500. https://t.co/XgBhhnjVwg +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: ""You just can't lift. If I lift, I'm probably getting wrecked out the back.""- @AustinDillon3 watches the 2018 Daytona 500…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Seeing that No. 9 with an Elliott on the door is definitely ... Awesome. + + Racing is a family affair. Bill and @ChaseEllio…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: ""Do as I say, not as I do.""- Tony Stewart to Aric Almirola before Daytona 500 post-race interview. https://t.co/WTehPbUGu0" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Want proof that it’s not raining right now in Atlanta? We’re LIVE on pit road. 😎 + +#FoHQT500 https://t.co/UqTrXaHGZT" +02/25/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 at 12pm ET for @NASCAR #RaceDay & @FOXTV at 12:30pm ET for @NASCARonFOX from @AMSUpdates. #NASCAR… https://t.co/nHwtqrBERL +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Welp. It's raining in Atlanta. Hoping to send out the Air Titans soon. + +Get the latest on the AMS weather during NASCAR #R…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: LET'S DO THIS! Welcome to Atlanta. + +NASCAR #RaceDay - 12p ET - FS1 +Race coverage - 12:30p ET - FOX https://t.co/Moc5i6nAng" +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: “Thanks for sending in your questions! Don’t miss the Atlanta race tomorrow. Coverage begins at 12:30p ET on FOX!” https:/… +02/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@jsbatella Hey, @BubbaWallace and @WilliamByron ... #AskJG https://t.co/I6co4BqzbE" +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@brandon73999679 2️⃣4️⃣🏁 #AskJG https://t.co/VloJHguSun +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Monte241 #AskJG https://t.co/wNLEQ2odkF +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@bebe24488805 #AskJG https://t.co/oaZeWH36Eu +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@barkeep1347 #AskJG https://t.co/q11FPSR38c +06/30/2018,Sports_celeb,@JimmyJohnson,"RT @Dolfin55: June 4, 1984: @JimmyJohnson is officially introduced to the media as the new head football coach at the University of Miami.…" +06/28/2018,Sports_celeb,@JimmyJohnson,Cocktails on Lady S (Dan Snyder’s yacht in Cannes France..great time! https://t.co/4dLEPaveLO +06/17/2018,Sports_celeb,@JimmyJohnson,Class individuals! https://t.co/Z68IgkqdLv +06/14/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: How gorgeous is @JimmyJohnson's 2019 #JJFishweek Crest? Official tournament artist Dennis Friel blows it out of the water.… +06/07/2018,Sports_celeb,@JimmyJohnson,Now I know who was on that boat! https://t.co/ywdZopg193 +06/07/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: .@JimmyJohnson + @HardRockHolly = one hell of a kickoff party! #TBT to #JJFishweek's premier Gifting Suite Experience & all… +06/06/2018,Sports_celeb,@JimmyJohnson,True! https://t.co/qPXSgoFYsn +06/06/2018,Sports_celeb,@JimmyJohnson,Exciting Day! https://t.co/fucuA1wCnE +06/04/2018,Sports_celeb,@JimmyJohnson,Yes disappointing ..only in playoffs 3 straight years winning couple https://t.co/iyGiErQksK +05/22/2018,Sports_celeb,@JimmyJohnson,"RT @DarrinDonnelly: “Treat a person as he is, and he will remain as he is. Treat a person as if he was what he could be and should be, and…" +05/22/2018,Sports_celeb,@JimmyJohnson,"RT @damonwest7: So excited I get to share my story with @CanesFootball on June 26th. Just finalized the deal. +This was my team growing up,…" +05/22/2018,Sports_celeb,@JimmyJohnson,RT @CoachPeten: @JimmyJohnson as a fellow coach I hope that you soon will get the credit you deserve from the NFL. You deserve the HOF! Yo… +05/22/2018,Sports_celeb,@JimmyJohnson,RT @DHGHealthcare: Our final day of Symposium wrapped with a Keynote from Coach Jimmy Johnson and a Q&A with Pam Oliver! Thank you to our a… +05/21/2018,Sports_celeb,@JimmyJohnson,"Peter, I always trusted you would be fair, but I did mean it! Ha https://t.co/uVaPhL4IP5" +05/21/2018,Sports_celeb,@JimmyJohnson,"RT @RDubThree: .@theMMQB says 'Thank You' to former #Cowboys HC @JimmyJohnson, and the coach's secret for drafting great players : https://…" +05/17/2018,Sports_celeb,@JimmyJohnson,@OriginBank @drakemills ...congrats great organization! https://t.co/COAaNxvgQp +05/15/2018,Sports_celeb,@JimmyJohnson,"RT @crupicrupicrupi: Why does it matter that Fox Sports owns the fall? Because in the 20 weeks of the football season, consumers spend abou…" +05/13/2018,Sports_celeb,@JimmyJohnson,"RT @RichardDelToro: On the eve of Mother’s Day, I just finished watching @JimmyJohnson “A Football Life”, and the discussion about being pr…" +05/09/2018,Sports_celeb,@JimmyJohnson,RT @warriorgames: Thanks for the shout out! We could always use an extra coach! #WarriorGames https://t.co/WLNPrvBR54 +05/09/2018,Sports_celeb,@JimmyJohnson,Great event! https://t.co/hT2K6Y03tN +05/03/2018,Sports_celeb,@JimmyJohnson,Excited to see our wounded warriors at this yrs #2018 Warrior Games at Air Force Academy +05/01/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: What a finale! @JimmyJohnson revealed his secrets on building a winning team and that's a wrap for #PMMIELC! Much gratitude to… +05/01/2018,Sports_celeb,@JimmyJohnson,"RT @realrobertdunn: @PMMIorg @AFFLINK @JimmyJohnson His hair really is perfect! Leadership is simple... eliminate the wrong people, bring i…" +05/01/2018,Sports_celeb,@JimmyJohnson,"RT @PMMIorg: @JimmyJohnson is gearing up to deliver the final #PMMIELC business session - ""Teams That Win: Fundamentals for Success""! PMMI'…" +05/01/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: Who is ready for the last day of #PMMIELC?! Our #packaging and #processing executives kicked off today with a 5K Fun Run/Walk!… +04/29/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: You were AMAZING!! Great stuff!👍🏼 https://t.co/utN2YSBBw5 +04/27/2018,Sports_celeb,@JimmyJohnson,RT @DarrinDonnelly: “Do you want to play it safe and be good or do you want to take a chance and be great?” – Jimmy Johnson https://t.co/2m… +04/26/2018,Sports_celeb,@JimmyJohnson,Fun town! https://t.co/OuiE1U0buM +04/25/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: @JimmyJohnson is coming to #PMMELC! The former NFL coach will reveal his secrets on building a winning organization: https://t… +04/23/2018,Sports_celeb,@JimmyJohnson,Lure in rt hand https://t.co/C9QdjYxx77 +04/23/2018,Sports_celeb,@JimmyJohnson,tamerproducts @bellsouth.net https://t.co/pMqWJF7qb6 +04/21/2018,Sports_celeb,@JimmyJohnson,Like 30 other teams IWISH we had drafted @RandyMoss ! +04/21/2018,Sports_celeb,@JimmyJohnson,"Even though Moss was picked Before our pick, I DID miss on AT least 2 or 3 other great players! Ha!" +04/18/2018,Sports_celeb,@JimmyJohnson,Actually 10 HOF players counting couple in college https://t.co/iATGu3hhGG +04/18/2018,Sports_celeb,@JimmyJohnson,Key Largo MM 104 https://t.co/ZyvErd5jQ2 +04/18/2018,Sports_celeb,@JimmyJohnson,A little advice for NFL teams getting ready for the draft..Ask yourself “ What do I want out of this draft?”work the picks to achieve +04/18/2018,Sports_celeb,@JimmyJohnson,Had great time with Dave & Jan Wannstedt at the “Chill” ...great to reminisce with good people.. https://t.co/LKecThRs1f +04/18/2018,Sports_celeb,@JimmyJohnson,RT @MyPlaceHotels: We thank our many friends at @AAHOA for arranging the meeting and photo opportunity between Coach @JimmyJohnson and My P… +04/17/2018,Sports_celeb,@JimmyJohnson,Congrats Pam! https://t.co/1DrQsWkeOG +04/12/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: This is what Overall 2nd Place at #JJFishweek looks like. All smiles for Captain Scott and his team from Irvine, Tx on Catc…" +04/07/2018,Sports_celeb,@JimmyJohnson,RT @bikerchris417: That time I went to @JimmyJohnson BigChill in fisherman’s cove and ran into the legend himself!!! #FlashbackFridays #flo… +03/28/2018,Sports_celeb,@JimmyJohnson,"RT @AAHOA: ""Create an atmosphere where people can be the best they can be."" - American football coach Jimmy Johnson on leadership. #AAHOACO…" +03/27/2018,Sports_celeb,@JimmyJohnson,RT @AAHOA: Former @dallascowboys and @MiamiDolphins coach @JimmyJohnson will be joining us on the main stage on March 28 at #AAHOACON18! Ch… +03/24/2018,Sports_celeb,@JimmyJohnson,Nice #Garmin watch! https://t.co/LSO2UoD3Hf +03/23/2018,Sports_celeb,@JimmyJohnson,"A great man, one of the nicest individuals I have ever known, Wayne Huizenga passed away. RIP" +03/20/2018,Sports_celeb,@JimmyJohnson,"RT @TodayInSports3: Today in 1989, Jimmy Johnson on the cover of Sports Illustrated. The long climb would pay off 3 years later, winning S…" +03/18/2018,Sports_celeb,@JimmyJohnson,RT @PhinsChris: How @JimmyJohnson identified guys like Zach Thomas and Larry Izzo. #Dolphins https://t.co/ERcux3J4UC +03/11/2018,Sports_celeb,@JimmyJohnson,"Congratulations Sandman! Great time, money for charity #Tranquil Shores and over 2.1 million $$ given out! https://t.co/KT4oyhEXqu" +03/11/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: The Unofficial Newest Member of @JimmyJohnson’s Ring of Honor with 13 releases goes to @sandmanfishing! See you at #BigChil… +03/10/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Unofficial Update Day 2: Noon! And just like that we have a new leader. Catch-22 chartered by Anglers out of the great stat… +03/10/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Day 1 done! Unofficial Leaders: Native Son / Weighted Leader: Chop It Up/Blue Moon Fish Co! Tomorrow we see how things fini… +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Unofficial Update: Day One 3PM Leaderboard - With 83 releases so far and an hour to go, @nativesonfishing is at number 1! K…" +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Unofficial Update: Day One Noon Leaderboard - With 63 releases so far, Hillbilly Deluxe is out in front going after that $1…" +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Congrats Worldwide Wes, former Toronto Blue Jays player Alex Gonzalez team Rally Cap! Benefiting University of Miami Athlet…" +03/09/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Awesome day at @JimmyJohnson’s Celeb Pro Am! @JonVilma51 @DjWilliam55 @TwanRussell @ripcityhamilton #JJFishweek https://t.c… +03/08/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: We had a great time kicking of tomorrow’s Celeb Pro Am with @JimmyJohnson and his friends tonight at the Big Chill in Key L… +03/07/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Doors are open and we are ready for all our teams at #BigChill. The 2018 #JJFishweek is officially underway and @JimmyJohns… +03/07/2018,Sports_celeb,@JimmyJohnson,RT @YamahaOutboards: Setting up for @jjfishweek https://t.co/xLFv6fyydF +03/05/2018,Sports_celeb,@JimmyJohnson,RT @mike_beedles: Looking forward to supporting @JimmyJohnson on his 7th annual event!!! Always a great time and partner on this incredible… +03/05/2018,Sports_celeb,@JimmyJohnson,Thanks for the comments! https://t.co/JKFvYnPNZp +03/04/2018,Sports_celeb,@JimmyJohnson,RT @HardRockHolly: A few words from coaching legend @JimmyJohnson 🎣 #HardRockHotel #JJFishWeek https://t.co/OiEVT5m1AK +03/04/2018,Sports_celeb,@JimmyJohnson,#jjfishweek! Hard Rock!! https://t.co/PeS74CsJYW +03/04/2018,Sports_celeb,@JimmyJohnson,We have mermaids at jjfishweek! https://t.co/mDO2UKbREa +03/03/2018,Sports_celeb,@JimmyJohnson,We have dancing girls at our tournament! https://t.co/XpMWi18VuH +03/03/2018,Sports_celeb,@JimmyJohnson,Nick and I at biggest fishing tournament in the USA..1 1/2 million dollar purse! jjfishweek! https://t.co/UYdzp1ulGv +03/02/2018,Sports_celeb,@JimmyJohnson,RT @YamahaOutboards: Head over to our Instagram page as coach @JimmyJohnson 's @jjfishweek takes over today in preperation for next week's… +03/01/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Check your mailbox! @JimmyJohnson is the Cover Story for @LifestyleMagFL's March issue! Be sure to read his story ""Reel Tim…" +02/28/2018,Sports_celeb,@JimmyJohnson,RT @BrandCuda: Bags on bags for the @jimmyjohnson event at the @HardRock @BrandCuda https://t.co/tRMMZFT228 +02/27/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: The Happy Hookers are bringing their talents to @JimmyJohnson's Fishing Tournament in Key Largo! +This #NewYork team set t…" +02/22/2018,Sports_celeb,@JimmyJohnson,"RT @FOXSportsSW: When it comes to evaluating talent, take a page out of @JimmyJohnson's playbook! #CowboysNation | #ThursdayThoughts https:…" +02/20/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Are you serious about competing for $1.5 MILLION - the richest guaranteed purse in tournament history? + +There are ONLY 8 S…" +02/16/2018,Sports_celeb,@JimmyJohnson,"RT @FOCUSEDdocs: Relax with @JimmyJohnson, who now resides in the region he first rose to true national prominence. + +Catch @FOCUSEDdocs o…" +02/15/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: We're feeling the love! With over 90 boats registered for #JJFishweek on March 7-10th! No one throws a tournament like Coac… +02/14/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Chartering Captain Matt and the AbsolutJoy Sportfishing team from Palm Beach have $1.5 MILLION reasons to hit the waters of… +02/13/2018,Sports_celeb,@JimmyJohnson,RT @DarrinDonnelly: “The only thing worse than a coach or CEO who doesn’t care about his people is one who pretends to care. People can spo… +02/10/2018,Sports_celeb,@JimmyJohnson,1 of my favorite scouts..great man https://t.co/Ll3JTCWzjF +02/10/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: Jim Garrett was a great man in every way #rip https://t.co/2nioFHFph6 +02/08/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: .@JimmyJohnson's Fishing Championship has a GUARANTEED $1.5M PURSE! @OceanReefTweets's Marina is going to be the place to… +01/31/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: A great day in Cowboys history 24 years ago today...little did we know at that moment that this would be @JimmyJohnson last… +01/30/2018,Sports_celeb,@JimmyJohnson,"RT @NFLonFOX: On this date in 1994, the Bills fell to the Cowboys in Super Bowl XXVIII. + +It was Buffalo's 4th Super Bowl loss in 4 seasons.…" +01/30/2018,Sports_celeb,@JimmyJohnson,@nycDolphinsFan Audibles not signals.. +01/26/2018,Sports_celeb,@JimmyJohnson,"RT @JClarkNBCS: Nick Foles is leading #Eagles to #SuperBowl + +And Cowboys owner Jerry Jones doesnt know his name 🤷‍♂️ +Kolb? Folk? Costanza?…" +01/22/2018,Sports_celeb,@JimmyJohnson,"RT @jawsespn: Coach has been converted! 😉 +#FlyEaglesFly +@JimmyJohnson @NFLonFOX https://t.co/0F6tvkvZTL" +01/20/2018,Sports_celeb,@JimmyJohnson,RT @D_Stro: This picture by @curtmenefee ... 💯#xoxoPhilly https://t.co/dlw6fMk6lA +01/20/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: @JimmyJohnson's Big Chill in #KeyLargo is our official host venue of #JJFishWeek (March 7-10th). Compete for the $1.5M gua… +01/18/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Welcome back @dennisfriel, the official artist of our history making #JJFishWeek! + +Anglers: Join the quest for our $1.5 Mi…" +01/16/2018,Sports_celeb,@JimmyJohnson,"RT @TSFdtn: Thanks so much to our 2017 donors. Because of your generosity, the Tranquil Shores Foundation was able to provide a significant…" +01/12/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Captain Justin ""Tiny"" Walcott & his team fishing on Bad Daddy are locked in across the board for #JJFishweek March 7-10th i…" +01/03/2018,Sports_celeb,@JimmyJohnson,@alonzohighsmith congratulations on your position with Cleveland Browns you’ll be great in helping turn that team around +01/02/2018,Sports_celeb,@JimmyJohnson,Remember “27” well https://t.co/kagNnlfdqF +01/02/2018,Sports_celeb,@JimmyJohnson,With Buckshot Underwood and Harvey Reeves! https://t.co/Sx2F6FCLDO +12/31/2017,Sports_celeb,@JimmyJohnson,"RT @kevin_miley: On Fox NFL Sunday, @JimmyJohnson gave the coach of the year award to Sean McVay. Another graduate from @miamiuniversity. #…" +12/25/2017,Sports_celeb,@JimmyJohnson,RT @jamesxxcc: MERRY CHRISTMAS! @NFLonFOX @curtmenefee @michaelstrahan #HowieLong @JimmyJohnson @terrybradshaw 🎄🏈 https://t.co/7h9dGEHHEX +12/23/2017,Sports_celeb,@JimmyJohnson,Great time entertaining troops! https://t.co/5gKpZlkYgi +12/23/2017,Sports_celeb,@JimmyJohnson,RT @FreddyRoD5: @jimmyjohns @JimmyJohnson If @JimmyJohnson approves then I’ll be having lunch at @jimmyjohns tomorrow for the first time! +12/22/2017,Sports_celeb,@JimmyJohnson,RT @jimmyjohns: I thought you’d never ask 😏 👉 https://t.co/qGjnvbCWHX https://t.co/Jpo0Jrqhvu +12/22/2017,Sports_celeb,@JimmyJohnson,Yes it was! https://t.co/khk9X3YFrv +12/22/2017,Sports_celeb,@JimmyJohnson,I’m rethinking this ‘not my restaurant’ thing @jimmyjohns .... https://t.co/ihNeNGVGNt +12/21/2017,Sports_celeb,@JimmyJohnson,"Great day on water..83 degrees, pond slick water, caught some tuna now back to Irma cleanup! https://t.co/D8AUopzri4" +12/20/2017,Sports_celeb,@JimmyJohnson,Jimmy Johns is not my restaurant https://t.co/beffDBVtMq +12/17/2017,Sports_celeb,@JimmyJohnson,RT @JanineStanwood: Pizza date at the Chill. Bet @JimmyJohnson is excited to get back to the Keys! https://t.co/N7nJOKE7On +12/14/2017,Sports_celeb,@JimmyJohnson,Rather have Nachos with lots of jalapeños https://t.co/TJNx27yzey +12/13/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Team Utopia is ready to get after it as sailfish season kicks off! They're coming for @JimmyJohnson and @HardRockHolly's $… +11/30/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Grab your room and slip for #JJFishweek at Ocean Reef, Marriot or Mariner! Join @JimmyJohnson in Key Largo Mar 7-10: https:…" +11/25/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Only a few days left for #JJFishweek 2017 early registration specials! Join @JimmyJohnson in Key Largo Mar 7-10: https://t.… +11/23/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: A special thanks to the #JJFishweek family & our incredible anglers! https://t.co/kuJaN7EkcK | @HardRockHolly @JimmyJohnson… +11/19/2017,Sports_celeb,@JimmyJohnson,RT @mfr234: How ‘bout those Canes?! @JimmyJohnson @gregolsen88 @CanesFootball https://t.co/gGz1lbmjMq +11/19/2017,Sports_celeb,@JimmyJohnson,RT @OmarKelly: The legendary @JimmyJohnson is now sporting the turnover chain. https://t.co/5yEeUjloo0 +11/18/2017,Sports_celeb,@JimmyJohnson,RT @postalcowboy24: .@JimmyJohnson Enjoying the sunset watching some football at The Big Chill. https://t.co/ByotIgYHwL +11/18/2017,Sports_celeb,@JimmyJohnson,"RT @MrStrauchII: @JimmyJohnson Hi Coach...just enjoyed watching you again on TV's ""Coach""! So much fun! https://t.co/m4JSVAxmDp" +11/17/2017,Sports_celeb,@JimmyJohnson,RT @Hil_Pill: My first time in the Keys! Where else would I go but to @JimmyJohnson’s #JJBigChill!! Glad it’s reopened! +11/14/2017,Sports_celeb,@JimmyJohnson,RT @HotelScallywag: Little known fact: #PresidentReagan started the #TurnoverChain when @JimmyJohnson brought the legendary 87 Canes to th… +11/12/2017,Sports_celeb,@JimmyJohnson,RT @TX2NY1016: Shoutout to @FOXSports Every year they do a phenomenal Pre Game show around #veteransday supporting our troops @JayGlazer @m… +11/12/2017,Sports_celeb,@JimmyJohnson,RT @michaelstrahan: Took a ride in the chopper with the Navy ahead of tomorrow’s show for @NFLonFOX. Filming tomorrow’s show on the base fo… +11/12/2017,Sports_celeb,@JimmyJohnson,Proud to be #MiamiHurricanes fan..Mark Richt and his staff had this team well prepared and ready to play. Go Canes! +11/12/2017,Sports_celeb,@JimmyJohnson,🙌🙌🙌Miami!!! Yes!!! +11/11/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Join us + @JimmyJohnson in wishing #CoachRicht and @canesfootball best of luck tonight! At #JJFishWeek, it's about #TheU 🙌🏻…" +11/10/2017,Sports_celeb,@JimmyJohnson,"RT @ShalashMuh: @JimmyJohnson said it best: +""I told you! If you go to Notre Dame, you can't leave it in the officials' hands."" +#TheU #ItsAl…" +11/09/2017,Sports_celeb,@JimmyJohnson,Looking forward to talking to the troops! https://t.co/MtV9n7JaUy +11/06/2017,Sports_celeb,@JimmyJohnson,RT @themik1: Profound words from @JimmyJohnson that resonate through the ages! #Canes #TheU #NDvsMiami 🙌🏈💪 https://t.co/cUtkLcdd1g +11/06/2017,Sports_celeb,@JimmyJohnson,RT @scott_hickox: The SuperBowl commercials already A+ given the performances of @JimmyJohnson and @terrybradshaw in the @GEICO commercials… +11/05/2017,Sports_celeb,@JimmyJohnson,Loved it better than a hamburger! Check out @BeyondMeat https://t.co/SywXNrxGk0 +11/05/2017,Sports_celeb,@JimmyJohnson,RT @DJNYC1: BWAHAHAHAHAHAHA! 😂😂😂 @JimmyJohnson https://t.co/z3invnRFtz +11/04/2017,Sports_celeb,@JimmyJohnson,"RT @1JohnnyDangle: Just wanna thank @PaulCastronovo, @JimmyJohnson and the whole @CastronovoShow crew for an awesome few days in Key Largo.…" +11/03/2017,Sports_celeb,@JimmyJohnson,RT @PaulCastronovo: About the coolest guy ever. Living the dream @JimmyJohnson https://t.co/4SG5bmDajk +11/01/2017,Sports_celeb,@JimmyJohnson,Rich&Dylan getting ready for Trick or Treat! https://t.co/EbMfXtaB1s +11/01/2017,Sports_celeb,@JimmyJohnson,"RT @agoody1: @JimmyJohnson Can't make the Re-Opening, but rest assured, we will be back for more of this!! #JJBigChill #FloridaKeys #Family…" +10/31/2017,Sports_celeb,@JimmyJohnson,Open for Business! https://t.co/rAbu36Gt3Z +10/29/2017,Sports_celeb,@JimmyJohnson,"RT @NFLonFOX: Game show time with @RamsNFL coach Sean McVay in the studio. + +FOX NFL Sunday starts now! https://t.co/7F5lrPkWt6" +10/29/2017,Sports_celeb,@JimmyJohnson,"RT @RamsNFL: Ready for a fun day with @NFLonFOX! + +Follow behind-the-scenes on Snapchat 👻 » SnapTheRams https://t.co/KFC7WYtyoi" +10/24/2017,Sports_celeb,@JimmyJohnson,RT @finatic1972: @JimmyJohnson throwing up the 🙌🏾 during #NFL halftime show on Fox #awesomeness #ItsAllAboutTheU https://t.co/3RusAVDBHF +10/21/2017,Sports_celeb,@JimmyJohnson,RT @UMSHoF: The @UMSHoF was honored to present @JimmyJohnson a new UMSHoF induction plaque after original destroyed in Hurricane Irma ! @Ca… +10/21/2017,Sports_celeb,@JimmyJohnson,RT @leonsearcy72: So I'm at the 30th anniversary of the 1987 National Championship team meeting when @JimmyJohnson talks and he made me wan… +10/21/2017,Sports_celeb,@JimmyJohnson,"RT @hXcFuller: @JimmyJohnson on #TheShield. I thought for sure it was him and sure enough. +#TerrysTheOne https://t.co/LSLLlLpjsd" +10/21/2017,Sports_celeb,@JimmyJohnson,RT @canesvoice: Enjoying the the 30 year reunion of the 1987 National Champs with the @JimmyJohnson https://t.co/1EEMG2Q6yQ +10/15/2017,Sports_celeb,@JimmyJohnson,RT @Chris_In_TX: Learning from the best @terrybradshaw @michaelstrahan @curtmenefee @JimmyJohnson @NFLonFOX https://t.co/Stp2MNKHGD +10/10/2017,Sports_celeb,@JimmyJohnson,RT @DDdebrule: https://t.co/cSFV5IvyZx. @JimmyJohnson @terrybradshaw +10/10/2017,Sports_celeb,@JimmyJohnson,Putting up the U! https://t.co/Y0EwdluI8D +10/09/2017,Sports_celeb,@JimmyJohnson,RT @Hurricane_Paul: Coach knows whats up. #TheU #Canes #UFam https://t.co/OnCv1qbuus +10/09/2017,Sports_celeb,@JimmyJohnson,Larry David on set today..funny guy! https://t.co/E0FYmiaSJX +10/06/2017,Sports_celeb,@JimmyJohnson,RT @IGexperiences: Great start to Nerve with keynote speaker @JimmyJohnson ! https://t.co/BIGEuICQyD +10/06/2017,Sports_celeb,@JimmyJohnson,Great time! https://t.co/Cc8kObDZIX +10/06/2017,Sports_celeb,@JimmyJohnson,Thx! https://t.co/BkjBcQRfbE +10/06/2017,Sports_celeb,@JimmyJohnson,"RT @AccountingDept: CEOs: +Get rid of the wrong people +Hire the right people at all cost and retain. +Create an atmosphere so they are their…" +10/06/2017,Sports_celeb,@JimmyJohnson,RT @AccountingDept: Ladies and gentlemen -- it's the legendary @JimmyJohnson !! #EO30 #EONerve2017 https://t.co/UgnD4w5Smt +10/01/2017,Sports_celeb,@JimmyJohnson,RT @LKBlandford: Loved that @JimmyJohnson just picks the @MiamiDolphins to upset the @Saints. Especially after last week's disgusting loss.… +10/01/2017,Sports_celeb,@JimmyJohnson,"RT @jacobu: It's a special FOX NFL Sunday as @criscarter80 joins Curt, Terry and Jimmy leading into the Saints vs Dolphins from London - no…" +09/28/2017,Sports_celeb,@JimmyJohnson,"RT @EnriqueSiu: @Gil_Brandt Any chance you can spot yourself in the pic, Mr. Brandt? Maybe by @JimmyJohnson's side...? https://t.co/sjlhJad…" +09/23/2017,Sports_celeb,@JimmyJohnson,RT @JimmyJohnson: Snack on game day the Razorbacks way with @CheezIt & @Pringles. Tweet #BestSeatsEntry for your chance to WIN cash for the… +09/23/2017,Sports_celeb,@JimmyJohnson,Snack on game day the Razorbacks way with @CheezIt & @Pringles. Tweet #BestSeatsEntry for your chance to WIN cash f… https://t.co/SJqWChBtvP +09/23/2017,Sports_celeb,@JimmyJohnson,RT @dbalerio: Great job @JimmyJohnson very inspiring talk. My 3 teenage boys took a lot away tonight. #howboutdemcowboys https://t.co/R1EkT… +09/22/2017,Sports_celeb,@JimmyJohnson,RT @GinoTorretta: On the wall of my bedroom in Cali. Oh how right @JimmyJohnson was. https://t.co/t05jCa1ByI +09/21/2017,Sports_celeb,@JimmyJohnson,"RT @DiBarcenaMete: @JimmyJohnson Address 58901 Overseas Hwy., Grassy Key, FL 33050. We have a truck full of water,BBQ food,clothing,diapers…" +09/21/2017,Sports_celeb,@JimmyJohnson,RT @DiBarcenaMete: @JimmyJohnson We're hosting relief effort tomorrow 9/22 at 11AM at Dolphin Rescue Center (parking lot). Help get the wor… +09/21/2017,Sports_celeb,@JimmyJohnson,@DDdebrule enjoy your 1935 Ford! https://t.co/jdVI1gasEZ +09/21/2017,Sports_celeb,@JimmyJohnson,@DDdebrule you and Upper Keys marine have been great for my boats and dock..nice to have good friends! +09/18/2017,Sports_celeb,@JimmyJohnson,Power is on!!!Air Conditioning!! Thank you 1st responders and Florida Power & Light!! https://t.co/AebArpF75W +09/17/2017,Sports_celeb,@JimmyJohnson,RT @HunterMRobbins: Watch the fox pregame. It's waaaayyy better. @terrybradshaw @JimmyJohnson @michaelstrahan Howie and Curt kill it every… +09/17/2017,Sports_celeb,@JimmyJohnson,RT @bhorn55: Thinking of @JimmyJohnson today as he is skipping work to take care of his life. #HurricaneIrma +09/17/2017,Sports_celeb,@JimmyJohnson,RT @NFLonFOX: It's the best way to start your Sunday. FOX NFL Kickoff is on your TV. https://t.co/oR2LwIPna3 +09/16/2017,Sports_celeb,@JimmyJohnson,Thx..we'll be fine! https://t.co/K6em1y9tcu +09/16/2017,Sports_celeb,@JimmyJohnson,RT @bergerhere: we're all thinking of you JJ. You and Rhonda stay safe. https://t.co/AeWLHLHEjk +09/16/2017,Sports_celeb,@JimmyJohnson,Neighbors boat...going to miss my guys Fox NFL Sunday..got electrician and air conditioning hopefully get it going https://t.co/KCzl40BYq0 +09/15/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: A Key Largo update from @JimmyJohnson : Our Host venue @JimmyJsBigChill at MM104 is up and running. 1st responders: take no… +09/15/2017,Sports_celeb,@JimmyJohnson,"RT @KEYSCANE: @JimmyJohnson Since I can't send you a message coach, I took a picture. Good luck down there and we are here to help once ou…" +09/15/2017,Sports_celeb,@JimmyJohnson,RT @coachdelrio: 👍👍 https://t.co/lt7Y08gOVQ +09/15/2017,Sports_celeb,@JimmyJohnson,Free pizza and I'll buy the beer for whoever can give me power and air conditioning!! https://t.co/FgOU8AXaJR +09/15/2017,Sports_celeb,@JimmyJohnson,Rhonda's making pizza for 1st responders! https://t.co/KZrDUupQVk +09/15/2017,Sports_celeb,@JimmyJohnson,Big Chill opening tonight 5:00...FREE PIZZA for all 1st responders who are doing such a GREAT Job! https://t.co/38ptRih5oj +09/15/2017,Sports_celeb,@JimmyJohnson,RT @DanMarino: Join my friends @soflaford and help get our Floridians back on the road to recovery! #IrmaRelief https://t.co/WEXIiiQ30e +09/14/2017,Sports_celeb,@JimmyJohnson,"RT @McBlondeLand: My favorite NFL football coach, @JimmyJohnson, on his home in the Keys: https://t.co/TATew2Su0w" +09/13/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: #JJFishweek and @JimmyJohnson are working with Hurricane Irma Relief for the FL Keys. Contact us at info@jjfishweek.com for… +09/11/2017,Sports_celeb,@JimmyJohnson,RT @maddieboz: Loved hanging with @PositiveCoachUS & the @FOXSportsU team creating a very special PSA w @terrybradshaw & @JimmyJohnson #fox… +09/11/2017,Sports_celeb,@JimmyJohnson,RT @PositiveCoachUS: Spoiler 🚨! A new PCA PSA donated by @FOXSports will soon be coming to a TV near you! 📺 #FOXSportsSupports https://t.co… +09/11/2017,Sports_celeb,@JimmyJohnson,Docks are damaged..flooding lower level https://t.co/1bIOIUWdZT +09/10/2017,Sports_celeb,@JimmyJohnson,RT @michaelstrahan: So happy to have the gang back together! Good luck to all the teams this season and a big wish of health to all the pla… +09/10/2017,Sports_celeb,@JimmyJohnson,RT @robfletcherANGT: You can see and feel the emotion behind their words.Powerful stuff @JimmyJohnson @michaelstrahan @jjwat @FOXSports #Ha… +09/10/2017,Sports_celeb,@JimmyJohnson,RT @katb1107: @Wxpadawan71 @JayGlazer @NFLonFOX @FOXSports @curtmenefee @terrybradshaw @michaelstrahan @JimmyJohnson https://t.co/UO1fCVOj… +09/06/2017,Sports_celeb,@JimmyJohnson,"RT @PatrickOchs: Thx to some help, we found photos & stories from @JimmyJohnson's time at Picayune (and in Biloxi). Check 'em out! https://…" +09/06/2017,Sports_celeb,@JimmyJohnson,"Armed with Charissa Thompson, Fox takes aim at ESPN's revamped 'Sunday NFL Countdown' - Sporting News https://t.co/Oci2kMCcvE" +09/06/2017,Sports_celeb,@JimmyJohnson,RT @dusclinton: @JimmyJohnson I found this and thought you & Coach Switzer would like to see this. https://t.co/AtFnhMdrz7 +09/05/2017,Sports_celeb,@JimmyJohnson,RT @collin_walker: @EdwerderRFA remember how I told you about @JimmyJohnson 's hometown? This is a great way ppl can help. @jcharles25 is a… +09/04/2017,Sports_celeb,@JimmyJohnson,Harvey devastation... https://t.co/snQftY9pq0 +09/04/2017,Sports_celeb,@JimmyJohnson,Give away 75% https://t.co/5rFe2mEi0O +09/04/2017,Sports_celeb,@JimmyJohnson,Thoughts and prayers going to all suffering from Harvey and hoping Irma misses us in The Keys +09/03/2017,Sports_celeb,@JimmyJohnson,Best fishing in last 10 years https://t.co/wLxBinkm7K +09/03/2017,Sports_celeb,@JimmyJohnson,Give to friends and people that work on the property.. https://t.co/8ymPq4CMjA +09/03/2017,Sports_celeb,@JimmyJohnson,Mahi and wahoo https://t.co/1MCpTbnxjO +09/03/2017,Sports_celeb,@JimmyJohnson,Went out for couple hours today by myself to relax and look what I ran into! https://t.co/BNOwbv7oVu +09/03/2017,Sports_celeb,@JimmyJohnson,Lovely!! https://t.co/PHMvBmdOFn +09/02/2017,Sports_celeb,@JimmyJohnson,2nd coaching job..Picayune Mississippi 1966...few years ago https://t.co/3MA7tayLOE +09/02/2017,Sports_celeb,@JimmyJohnson,"RT @AQHAJournal: In weanling fillies, @terrybradshaw gets reserve world champion with FG A Pretty Heiress @ #AdequanSelectWorld. @aqha #Get…" +09/02/2017,Sports_celeb,@JimmyJohnson,RT @PGH_Sports_Date: 40 years ago (9/2/77): @JimmyJohnson prepares revamped @Pitt_FB defense for Notre Dame opener. #H2P https://t.co/VDXih… +09/01/2017,Sports_celeb,@JimmyJohnson,RT @TheDriveOnKNEA: ICYMI: @JimmyJohnson will join The Drive next week as we get set for A-State/Miami. Stay tuned for day/time details. +08/31/2017,Sports_celeb,@JimmyJohnson,"RT @michaelstrahan: Hey @larsapippen & @ScottiePippen, good genes LOL! Check out my boy Justin killing it in MSX boys. Definitely school re…" +08/31/2017,Sports_celeb,@JimmyJohnson,RT @TSFdtn: Dining to Donate Campaign to be held at Burger-Fi in Seminole on 9/14/17 and California Pizza Kitchen in Tampa on 9/12/2017. @J… +08/31/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: 2nd place & $265k is great, but #Hellreyzer wants 1st place & @JimmyJohnson's Ring of Honor in '18! Do you? Join us: https:…" +06/30/2018,Sports_celeb,@JohnCena,"The next time you want to say “I can’t”, change it and say “I can’t just yet” instead #NeverGiveUp" +06/29/2018,Sports_celeb,@JohnCena,"Very tough day today. Physically, mentally, emotionally. We all have them and should face them. Ignoring these days… https://t.co/gGLzLykFqP" +06/29/2018,Sports_celeb,@JohnCena,"Training everyday, twice a day at @EyeOfJackieChan center. Excited for #ProjectX but greatly miss @WWE Thinking of… https://t.co/D3OGlkAQH6" +06/28/2018,Sports_celeb,@JohnCena,"“Life is a gift. You enrich it the best you can, then give it back” Emily Levine" +06/28/2018,Sports_celeb,@JohnCena,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/27/2018,Sports_celeb,@JohnCena,Quick lunch break at @EyeOfJackieChan #JCStuntTeam center! #HardNocksZhongGuo 260kg https://t.co/2LU6EDnkIf +06/26/2018,Sports_celeb,@JohnCena,Character is who you are when the lights are off. +06/24/2018,Sports_celeb,@JohnCena,“You must trust and believe in people or life becomes impossible.” Anton Chekhov +06/22/2018,Sports_celeb,@JohnCena,"In the first 1-10 hours of learning something new, you will want to give up more than once a minute. Hang in there!… https://t.co/3lLRCD1skz" +06/21/2018,Sports_celeb,@JohnCena,"Embrace the uncomfortable. This is where knowledge and wisdom hibernate, waiting for you to courageously discover them." +06/19/2018,Sports_celeb,@JohnCena,Always an honor to be included in such a fine group of athletes who use their station in life to help others. https://t.co/NlWPp3NN8B +06/19/2018,Sports_celeb,@JohnCena,"Practice makes perfect, Dads. Work those humor muscles. #BlockersMovie is now available on Digital with Outrageous… https://t.co/BOA2Th5pJA" +06/18/2018,Sports_celeb,@JohnCena,"To the masses of people for over 16 years now, shouting at the top of your lungs “John Cena Socks” .. you have been… https://t.co/Yl6zzpGihg" +06/17/2018,Sports_celeb,@JohnCena,A massive event on a global scale. @WWE continues to raise the bar ... everywhere. Excited to return “home” to be a… https://t.co/RQD1ovkUNJ +06/17/2018,Sports_celeb,@JohnCena,"To all the father's out there, when approaching a dresser drawer, please proceed with caution. #HappyFathersDay!… https://t.co/DRlZ37vGG1" +06/16/2018,Sports_celeb,@JohnCena,"Waking up on the other side of the world can help with perspective. Be grateful for life, rise, and #EarnTheDay… https://t.co/5qUPHsu940" +06/16/2018,Sports_celeb,@JohnCena,"RT @theheraldsun: EXCLUSIVE | @WWE IS COMING TO THE @MCG + +@JohnCena, @RondaRousey, @WWETheBigShow & @ShawnMichaels will be there, and @Trip…" +06/15/2018,Sports_celeb,@JohnCena,Thought this was very interesting. How do you feel about the word “deserve”? Are we owed anything? @RealJohnCMartin… https://t.co/g6gp7tdBou +06/14/2018,Sports_celeb,@JohnCena,"You get out of it, what you put into it." +06/12/2018,Sports_celeb,@JohnCena,"If you love someone, tell them. Say the words. Doesn’t make you ‘weak’ ‘soft’ or ‘inferior’. It makes you stronger… https://t.co/ZtIooESeWb" +06/11/2018,Sports_celeb,@JohnCena,"625lbs a little more left, but don’t know how much. Thanks @BRCF840 and @MogyApp and... @WWERollins for the soundtr… https://t.co/VjiZlV39XV" +06/11/2018,Sports_celeb,@JohnCena,“Love is a collaborative work of art” George Lakoff + Mark Johnson. Really like the sound of that 😊 +06/09/2018,Sports_celeb,@JohnCena,One of the toughest yet most helpful things about life can be asking ourselves the question ‘why?’ This one word op… https://t.co/60AufwUyoF +06/08/2018,Sports_celeb,@JohnCena,“A man will become better when you show him what he is like” Anton Chekhov #NeverGiveUp #EarnTheDay +06/07/2018,Sports_celeb,@JohnCena,"Congratulations to a very inspiring woman @pam_kaufman12 I’m honored to be able to present, create, and learn from… https://t.co/UoYoVN2yTX" +06/06/2018,Sports_celeb,@JohnCena,"The chilling, daring, and honest photography of Robert Capa. Forever grateful to all those who made tremendous sacr… https://t.co/QuLTjWk7SX" +06/05/2018,Sports_celeb,@JohnCena,"There is so much excitement around the set of @bumblebeemovie, it’s even better when I get to spend a few moments w… https://t.co/5gF2NqZbOj" +06/05/2018,Sports_celeb,@JohnCena,Being able to play a part in the overall history & legend of #Transformers has been an amazing experience. I hope y… https://t.co/QidpFBGHyv +06/04/2018,Sports_celeb,@JohnCena,"RT @bumblebeemovie: The adventure is about to begin. Don’t miss @JohnCena in the new trailer for Bumblebee, debuting TOMORROW! #BumblebeeMo…" +06/03/2018,Sports_celeb,@JohnCena,The @FloElite squad and @MogyApp got me working on being a #Deadhead 555x5 thank you @BRCF840 for an AWESOME gym! F… https://t.co/WHaFXuqrkD +06/02/2018,Sports_celeb,@JohnCena,#Respect 👌 https://t.co/8kFhXKufSy +06/01/2018,Sports_celeb,@JohnCena,Being accountable is a great way to face who you are. We often speak of aspiration and quickly point out the faults… https://t.co/a1OgOUdavF +06/01/2018,Sports_celeb,@JohnCena,Well done young man. Well done indeed. 💵 #OneDollarBet #EarnTheDay #NeverGiveUp https://t.co/gWUrraXyYa +05/31/2018,Sports_celeb,@JohnCena,"10,000 excuses will keep you right where you are. 10,000 reps, puts you where you want to be. BOTH happen 1 at a ti… https://t.co/oC7tswZPsT" +05/30/2018,Sports_celeb,@JohnCena,Dallas and Robo in the house! So excited for you all to be able to watch my new @YouTube series #DallasandRobo with… https://t.co/9TCsB83Zz5 +05/29/2018,Sports_celeb,@JohnCena,"What do you do when your best friend drinks you under table? You ask to study their liver, duh. Only one more day u… https://t.co/9sTFIDP6VL" +05/29/2018,Sports_celeb,@JohnCena,A fitting tribute to the men and women of our armed forces. Today and every day it is these mostly unknown sacrific… https://t.co/enMAQ9m3dm +05/28/2018,Sports_celeb,@JohnCena,"Let’s stop messing around, and start messing around." +05/27/2018,Sports_celeb,@JohnCena,"The good ol’ USA has definitely had its growing pains, but above all let’s remember the heroes who’ve made the ulti… https://t.co/5beyefdrDy" +05/25/2018,Sports_celeb,@JohnCena,"Adventure. Fun. Robots. Space Travel. +#DallasandRobo premieres on @YouTube on May 30th! https://t.co/HhXiZE09mb" +05/24/2018,Sports_celeb,@JohnCena,"I'm charged up for the premiere of #DallasandRobo on @YouTube May 30th. Literally. +Excited for everyone to come on… https://t.co/aLQH0Kcw61" +05/23/2018,Sports_celeb,@JohnCena,"Never try to change someone. They have every right to live their lives how they want. Instead, look inward and work… https://t.co/rqDgzWVlbA" +05/21/2018,Sports_celeb,@JohnCena,Congrats to the global phenomenon that is @BTS_twt your journey and success are inspiring and impressive! #BBAMs… https://t.co/mRyRnv3iLF +05/20/2018,Sports_celeb,@JohnCena,"We tend to have long lists of why we “shouldn’t” do something. I am a fan of logic, but fortune favors the bold😊 It… https://t.co/o7HmyoMgsF" +05/20/2018,Sports_celeb,@JohnCena,Robo kicks @$$! Want to see what we have in common? Check out the brand new @YouTube Red series #DallasAndRobo! Pre… https://t.co/GChf6L1juw +05/18/2018,Sports_celeb,@JohnCena,"Please @BTS_twt forgive my inexperience with the language, but here is my answer https://t.co/YFeO6TqyLG https://t.co/07IztsuBvc" +05/18/2018,Sports_celeb,@JohnCena,We all have an internal voice. Listening to IT instead of the many voices around us can be a path to happiness. Lis… https://t.co/AE6moH6cwW +05/17/2018,Sports_celeb,@JohnCena,"Lack of communication is many times what causes people to drift apart, lack of forgiveness is many times what causes people to stay apart." +05/16/2018,Sports_celeb,@JohnCena,"If at first you don’t succeed, try try again #IVoteBTSBBMAs #NeverGiveUp" +05/16/2018,Sports_celeb,@JohnCena,Better late than never!!#iVoteBTSBBMAs️ https://t.co/091lZ3AjlD +05/15/2018,Sports_celeb,@JohnCena,So.. my #TuesdayThoughts .. to 🍷 or not to 🍷? Boozeday Tuesday on @klgandhoda @TODAYshow ! +05/14/2018,Sports_celeb,@JohnCena,Very happy to join @klgandhoda on @TODAYshow this morn! Could use a bit of 🍷 to take the edge off 🤫😉 +05/13/2018,Sports_celeb,@JohnCena,"Thank you Mom, for always caring, worrying, protecting, teaching, and loving me. I love you #HappyMothersDay" +05/12/2018,Sports_celeb,@JohnCena,"Try never to make a decision when you are tired, hungry, or angry." +05/11/2018,Sports_celeb,@JohnCena,"We all have a story and we all want to be heard, but it’s amazing what can be learned if you take a moment and listen to those around you." +05/09/2018,Sports_celeb,@JohnCena,"Some of us long for things until we get them, then feel still unsatisfied. Being driven is great. Not knowing thyself, not so great." +05/07/2018,Sports_celeb,@JohnCena,"Action has consequence. An extra second of thought can help you see the action, and consequence. “A game of chess i… https://t.co/JXFjy2Ghkb" +05/06/2018,Sports_celeb,@JohnCena,Learn from your mistakes. A life of regret is a life unfulfilled. +05/05/2018,Sports_celeb,@JohnCena,What is that you say? Yearning for an animated buddy-comedy with cowboy hats in OUTER SPACE? Very excited to bring… https://t.co/JoePHfmRU5 +05/05/2018,Sports_celeb,@JohnCena,"If you choose to keep moving, no matter how low the road takes you, it will eventually begin to climb back up. #NeverGiveUp" +05/04/2018,Sports_celeb,@JohnCena,240kg pause. #MayThe4th #MayThe4thBeWithYou @starwars https://t.co/qOjjED8KUc +05/03/2018,Sports_celeb,@JohnCena,"The @FloElite guys fired me up, so here’s a 600lb “clean grip” deadlift. Wanna hear more about my training w… https://t.co/CPYNudjxQu" +05/02/2018,Sports_celeb,@JohnCena,"Happy birthday to the standard bearer, the hardest working person in the room, an inspiration to myself and many ar… https://t.co/Vp29sMQpaC" +05/01/2018,Sports_celeb,@JohnCena,"RT @TheRock: Found my star! Been a long time coming and congrats to my good bud @JohnCena on landing the lead role for our film, THE JANSON…" +05/01/2018,Sports_celeb,@JohnCena,"RT @TheRock: Thanks for the exclusive story @krolljvar. The Robert Ludlum Universe is a cool, bad ass and fun one to dive into. Excited for…" +04/30/2018,Sports_celeb,@JohnCena,"Humbled and HONORED for this incredible opportunity! The hard work starts..NOW! Thank you @TheRock, @SevenBucksProd… https://t.co/SyUFifXuK0" +04/29/2018,Sports_celeb,@JohnCena,Never be afraid to give your all to something with worries it will fail. The fear should be that you never give your all to something. +04/27/2018,Sports_celeb,@JohnCena,"No matter how far the destination, how long and hard the journey, it’s passion that will always drive you forward.… https://t.co/ocIabqOtGS" +04/26/2018,Sports_celeb,@JohnCena,Thank you Las Vegas and #CinemaCon hope you liked @Transformers #Bumblebee got 60 minutes in London before heading… https://t.co/3XKQZuoXrp +04/26/2018,Sports_celeb,@JohnCena,"RT @Turki_alalshikh: أعظم حدث في تاريخ WWE 💪🏼 + +هنا في السعودية 🇸🇦 + + #أعظم_رويال_رامبل https://t.co/mQ7Zg0H5De" +04/24/2018,Sports_celeb,@JohnCena,41 years old. 500lbs x3 “clean grip” deadlift. #EarnTheDay #NeverGiveUp #RAW https://t.co/U9b4q1KioI +04/23/2018,Sports_celeb,@JohnCena,41 years old. 160kg. NEVER let age define effort. #EarnTheDay #NeverGiveUp #RAW https://t.co/jhXOQTnxxk +04/17/2018,Sports_celeb,@JohnCena,Sometimes we must bare the burden of shame and judgement to protect and give to the ones we love. #RiseAboveHate +04/16/2018,Sports_celeb,@JohnCena,"Hardship, loss, and humility are extremely difficult waters to navigate, but perseverance thru them builds a streng… https://t.co/uShhq2wHqp" +04/15/2018,Sports_celeb,@JohnCena,RT @BlockersMovie: Watching @JohnCena read thirsty tweets is 😂💪💦 Don’t miss #BlockersMovie NOW PLAYING in theaters. https://t.co/tqlEsMFYHx… +04/15/2018,Sports_celeb,@JohnCena,"Anybody feeling down, check out #WaltWhitman has always been a helpful voice in times of crisis. Beautifully wild t… https://t.co/PFDcGHCWV1" +04/14/2018,Sports_celeb,@JohnCena,"The response to @BlockersMovie has been incredible. So happy to hear you've all enjoyed. You laughed, you cried, yo… https://t.co/4ODAyjER1F" +04/14/2018,Sports_celeb,@JohnCena,"We all have good and bad days. No one is perfect, but if you happen to do something to make someone feel bad, TAKE… https://t.co/ljD7WD64RQ" +04/13/2018,Sports_celeb,@JohnCena,"Spring is upon us, love is in the air. Nothing is more romantic than prom night...right? @BlockersMovie… https://t.co/e3PrOe83NS" +04/12/2018,Sports_celeb,@JohnCena,"Life is funny sometimes. One minute it’s kissing and hugging on you, the next it’s kicking ya square in the nugget… https://t.co/KOtw57Kupz" +04/12/2018,Sports_celeb,@JohnCena,"👨‍👩‍👧‍👦🚫C🤦🏼‍♂️🤼‍♂️🧟‍♂️ +🍑 +👫👭👬C🤦🏼‍♂️👉🐔🚫📽 + +⬇️ +https://t.co/0IKPu5maJV https://t.co/tgv0ESVJSl" +04/11/2018,Sports_celeb,@JohnCena,"This past weekend was FULL of really exciting moments. Everything happens so fast, but I wanted to say THANK YOU to… https://t.co/RpsQVghRcu" +04/09/2018,Sports_celeb,@JohnCena,https://t.co/cJocoqPhtQ +04/08/2018,Sports_celeb,@JohnCena,"On #WrestleMania day, I'm throwing down a challenge. The @MakeAWish #ArmWrestleChallenge. Wishes make muscle. You'r… https://t.co/Uof3VuY9NU" +04/07/2018,Sports_celeb,@JohnCena,"Sporting many looks this weekend, but one thing remains the same: I get to be a fan. +Yesterday, I watched… https://t.co/TiSabfPCT8" +04/07/2018,Sports_celeb,@JohnCena,Any woman who can say that after seeing what my body goes thru in #BlockersMovie is definitely a keeper! I love you… https://t.co/71kfFlmw1j +04/06/2018,Sports_celeb,@JohnCena,"The day is here. @BlockersMovie is in theaters TODAY! This was a project I loved being a part of, proud to share it… https://t.co/O1cTaIWSlo" +04/05/2018,Sports_celeb,@JohnCena,"So much to say about @BlockersMovie, glad I could make an appearance on @JimmyKimmelLive...can you see my excitemen… https://t.co/VKlPTmjll7" +04/04/2018,Sports_celeb,@JohnCena,Entertainment in its most purest form is the same...everywhere. Thanks to @Hardwick for letting me talk the magic o… https://t.co/NzYl2Ec25D +04/03/2018,Sports_celeb,@JohnCena,"The Spyker C8 Laviolette, this car is fly. Literally, figuratively, physically, and emotionally. You don't drive a… https://t.co/OiWHnlEbo8" +04/03/2018,Sports_celeb,@JohnCena,"A lot of people have questions...and I’m ready to answer them! Get a chance to see @BlockersMovie in New Orleans, L… https://t.co/Oi5Iw8kP0l" +04/03/2018,Sports_celeb,@JohnCena,"RT @WWE: This #WorldWishDay, join @JohnCena and @MakeAWish to help make every life-changing wish come true! To get involved visit https://t…" +04/02/2018,Sports_celeb,@JohnCena,"Paint + Teamwork + Cash = #KeepItSpotless! Catch the very fun, VERY messy show on @Nickelodeon all this week at 7:3… https://t.co/7GAM7zPjYB" +04/02/2018,Sports_celeb,@JohnCena,"Can I say “I do” now? @BellaTwins thank you. For being understanding, caring, and lifting me up when I needed it. B… https://t.co/M5p58g0Nfl" +04/02/2018,Sports_celeb,@JohnCena,There are many who ask “how can I?” instead of “how will I?” Make time for the people and the things you care about… https://t.co/qWdDU95QuO +04/02/2018,Sports_celeb,@JohnCena,"Big night 2nite! @WWE #RAW and I’m MORE than ready if Phenom decides to #DoSomething .. if not, also PUMPED 2 B… https://t.co/DpH3rGy333" +04/01/2018,Sports_celeb,@JohnCena,Woke up and phone alerted that I had a #WrestleMania answer from The Phenom! My phone’s been doing this for 3 hour… https://t.co/vJhTrweENF +03/31/2018,Sports_celeb,@JohnCena,"Still silence from the Phenom, so I continue MY quest to #DoSomething and be @WWE #WrestleMania strongest fan! 220k… https://t.co/kaUNJQVq8u" +03/30/2018,Sports_celeb,@JohnCena,"RT @Fandango: Even when it's father-daughter, game recognizes game in this #BlockersMovie clip. @JohnCena gives his daughter a @WWE intro f…" +03/30/2018,Sports_celeb,@JohnCena,This is what I do. 1) be invisible (for the convenience of humor+ @WWE victory) and 2) 🚫🐔s ! See more #2 (get it?)… https://t.co/2aamE7TFDT +03/29/2018,Sports_celeb,@JohnCena,"RT @TheDailyShow: What is butt chugging? @ronnychieng investigates the latest drinking craze with the help of the star of @BlockersMovie, @…" +03/29/2018,Sports_celeb,@JohnCena,"RT @WWE: Join @JohnCena in flexing some muscle for our friends at @MakeAWish, and help them be recognized as the world’s largest wish-grant…" +03/29/2018,Sports_celeb,@JohnCena,Don’t think Undertaker will #DoSomething so making sure I’m one of the strongest fans at #WrestleMania 145kg… https://t.co/htDjEiVsVZ +03/29/2018,Sports_celeb,@JohnCena,RT @Metro_Ents: We've got a nice little exclusive from @JohnCena's new movie Blockers - have a look https://t.co/95CqXvhBOD +03/29/2018,Sports_celeb,@JohnCena,See #BlockersMovie before everyone else at #BlockersSpringFling FREE screenings next Wednesday 4/4. Find a screenin… https://t.co/e70xbUnVXV +03/29/2018,Sports_celeb,@JohnCena,Watch the @TODAYshow tomorrow to learn how @MakeAWish gives kids more muscle to fight their illnesses. https://t.co/DUYeDZjbPB +03/27/2018,Sports_celeb,@JohnCena,"Dear Doctor Dolittle: + +Because I’m a polar bear, does that mean I’m finally cool? Doubt it! +I can BEARly wait to… https://t.co/QBhWaS8nzx" +03/27/2018,Sports_celeb,@JohnCena,The newest edition of #AutoGeek delves deep into one of the most prolific automobile explorations: The Reggie Jacks… https://t.co/iyaVJnosPa +03/27/2018,Sports_celeb,@JohnCena,#DoSomething +03/27/2018,Sports_celeb,@JohnCena,"Thank you for the gift @TheEllenShow and thank you for always promoting the message. +This towel is ready for the m… https://t.co/nnbYvRDhOl" +03/26/2018,Sports_celeb,@JohnCena,".@CollegeHumor and @BlockersMovie create an app that helps block terrible, terrible situations. It also features a… https://t.co/J2b22tx357" +03/25/2018,Sports_celeb,@JohnCena,"1 final thanks @Nickelodeon AND @BTS_twt @bts_bighit gotta rep my boy JHope!Namjoon, all in good fun, all ❤️ for RM… https://t.co/QQ9T5OKPrd" +03/25/2018,Sports_celeb,@JohnCena,The @Nickelodeon #KCA was a blast. Thank you so much to everyone for letting me have fun. Now it’s time to change o… https://t.co/iIC54xxbGX +03/24/2018,Sports_celeb,@JohnCena,RT @Nickelodeon: COWABUNGA! 🐢 Our turtle-y awesome host @johncena made his grand appearance on the #KCA #OrangeCarpet! 🧡 https://t.co/2DU2U… +03/24/2018,Sports_celeb,@JohnCena,Making final preparations before #KCA. Tonight is going to be AWESOME! @Nickelodeon https://t.co/kBAVpbECsD +03/24/2018,Sports_celeb,@JohnCena,"Today is about celebrating young men and women around the world, their ability to use the voice and affect change f… https://t.co/3Di8AzT972" +03/24/2018,Sports_celeb,@JohnCena,"Rehearsals before #KCA2018 have been super fun, but meeting these young folks is always the best part of my day. Th… https://t.co/pX7FNfRj2H" +03/23/2018,Sports_celeb,@JohnCena,Have you ever seen so many blimps?! See these AND MORE tomorrow on @Nickelodeon Kids Choice Awards! #KCA2018 https://t.co/X3DPdgk5Gx +03/23/2018,Sports_celeb,@JohnCena,"RT @TheEllenShow: .@JohnCena didn’t get to go to prom... that is, until today. https://t.co/ge1wwG8ceA" +03/23/2018,Sports_celeb,@JohnCena,A HUGE thank you to @TheEllenShow for always being so generous. Aside from a time-machine to prom with the perfect… https://t.co/T3PXSzQVBW +03/23/2018,Sports_celeb,@JohnCena,We enjoy the concept of “Friday” because we know it’s only a little bit longer until we can relax. It’s the reward… https://t.co/676XQSC3uB +03/23/2018,Sports_celeb,@JohnCena,It’s good to support those who do good things. Even better when it makes you laugh. @Sethrogen’s… https://t.co/4nCdmutZKx +03/22/2018,Sports_celeb,@JohnCena,"Sometimes the hardest thing to do is look within yourself. @RealJohnCMartin helps myself and 1,000s of others do ju… https://t.co/WSV4fNpffG" +03/21/2018,Sports_celeb,@JohnCena,"Amazing story from Australia. In the fight to save someone's life, they created a hero. Here's to you, Alex and fam… https://t.co/SfC5amKtzb" +03/21/2018,Sports_celeb,@JohnCena,"#BlockersMovie: A Film. 🐔🚫 + +👱🏼‍♀️👩🏽👩🏻 🤳🏽 +👨🏽‍💼🚗🍾 +🙋🏼‍♂️🙋🏼‍♀️ 👸🏼🤵🏽 🤔🤔 🤦🏼‍♂️🤦🏼‍♀️ + +And then somehow... + +🍑🍻🍻 + +See… https://t.co/HqlMv06OAj" +03/20/2018,Sports_celeb,@JohnCena,The Corvette ZR-1. The American Supercar famous on race tracks and envied on street corners. See it now on… https://t.co/rvDe2SdUP0 +03/20/2018,Sports_celeb,@JohnCena,You can tell the entire family is getting ready for the #KCA and I think Nana Cena is a little more excited than th… https://t.co/NUqRSpXd8W +03/20/2018,Sports_celeb,@JohnCena,"Very close friend is going thru a bit of a health battle right now, needs all the help he can get. Just hope you ca… https://t.co/8Vpu25tOYU" +03/18/2018,Sports_celeb,@JohnCena,.@BlockersMovie is at it's core a story of three young women discovering who they are. It is also INCREDIBLY funny.… https://t.co/IGZc5aGCel +03/17/2018,Sports_celeb,@JohnCena,Get the first look a new show I’m very proud to say I helped create. #KeepItSpotless will be good “clean” fun!… https://t.co/Pnh3rpp7SK +03/17/2018,Sports_celeb,@JohnCena,"We all get overwhelmed with ‘to do’ lists. Take one thing at a time, try your best to be present in what you are do… https://t.co/Qj8LzxZfac" +03/16/2018,Sports_celeb,@JohnCena,"Throughout my entire career and for so many reasons, @WrestleMania has meant...everything. Can't wait to help @WWE… https://t.co/rWd6SZJtx9" +03/15/2018,Sports_celeb,@JohnCena,Thank you London! Got to talk #BlockersMovie pledge to the @BTS_twt @bts_bighit @BTS_ARMY and now headed to… https://t.co/NAmbcSzHBg +03/14/2018,Sports_celeb,@JohnCena,Just landed in London to talk #BlockersMovie! Only on the ground long enough for a spot of tea and and a good time… https://t.co/Zma61p2gLv +03/13/2018,Sports_celeb,@JohnCena,The #AutoGeek has returned! It may be chilly outside but the 2016 @McLarenAuto 675 LT makes you feel warm all over.… https://t.co/NQA07NQ1vV +03/13/2018,Sports_celeb,@JohnCena,RT @FerdinandMovie: And. We. Have. Liftoff! 🤣 #Ferdinand is out on DVD & Blu-ray TODAY! https://t.co/dxQp0InNOX https://t.co/qeQLNl4eJB +03/13/2018,Sports_celeb,@JohnCena,#OneMoreMatch +03/11/2018,Sports_celeb,@JohnCena,"Switched the suit in Austin to a ball cap and jean shorts in Columbus, OH. + +A 6-pack challenge for the @WWE Champi… https://t.co/4AtByovZ4V" +03/11/2018,Sports_celeb,@JohnCena,Still 👍 from 😍 date night w/ @BellaTwins. Honored to share #SXSW 🎞 of #BlockersMovie w/ such an amazing group of 💪🏽… https://t.co/AY80qHcn55 +03/11/2018,Sports_celeb,@JohnCena,I'm glad I got to experience the premiere of @BlockersMovie last night with the crowd at #SXSW. It's fun to be a fa… https://t.co/U5DOFbao24 +03/11/2018,Sports_celeb,@JohnCena,At #SXSW for the WORLD PREMIERE of @BlockersMovie. It’s a Saturday night at the movies for Nicole and I... cannot w… https://t.co/GeeXFo58oo +03/09/2018,Sports_celeb,@JohnCena,We all have days where everything just goes wrong. It’s inspiring to see how my bride to be @BellaTwins keeps her c… https://t.co/lAW1G7SgRc +03/07/2018,Sports_celeb,@JohnCena,"We find inspiration everywhere. Everyday is a chance to LEARN and LIVE, don't waste it. My close friend for over 20… https://t.co/WFrNX8kzhG" +03/07/2018,Sports_celeb,@JohnCena,"A new challenge in a historic franchise. Excited to get to work, it's time for the Turtles to Baron Draxum! #TMNT https://t.co/CAgq4do4LG" +03/06/2018,Sports_celeb,@JohnCena,"Had the privilege of enjoying Hannah's company before #Raw in Milwaukee, WI. She IS #NeverGiveUp...vibrant, beautif… https://t.co/MOunQzymyG" +03/05/2018,Sports_celeb,@JohnCena,"Honesty is often met with adversity and criticism, because it is many times saying the things most are afraid to say. #NeverGiveUp" +03/04/2018,Sports_celeb,@JohnCena,"We all enjoy our “routine”, but continuously doing things we know, is a tough way to learn. Don’t be afraid of tryi… https://t.co/BjzErJJubI" +03/03/2018,Sports_celeb,@JohnCena,This guy might have been onto something.... shall we discuss ?? (Roll on snare. Cymbal crash.) https://t.co/nDpbECmnn2 +03/01/2018,Sports_celeb,@JohnCena,"Just finishing up an extraordinary day with an amazing group of people. An astronaut, mermaid, superhero, @WWE supe… https://t.co/IIJv6klivI" +02/28/2018,Sports_celeb,@JohnCena,Adapt. Overcome. #EarnTheDay #NeverGiveUp #SDLive +02/27/2018,Sports_celeb,@JohnCena,"Not every road to #WrestleMania is paved in gold. I'm not wasting any time, because TONIGHT mine goes through… https://t.co/V63Nu8NXm8" +02/27/2018,Sports_celeb,@JohnCena,"Join the herd! @FerdinandMovie is available on Digital TODAY! +https://t.co/ihxvxiE0U4 https://t.co/oLL657NHSk" +02/27/2018,Sports_celeb,@JohnCena,I had the pleasure of presenting @Jarrius with a special award at the #ESPYS but I can't wait to welcome him into t… https://t.co/ma4vOIHlwP +02/26/2018,Sports_celeb,@JohnCena,Adapt. Overcome. #NeverGiveUp +02/24/2018,Sports_celeb,@JohnCena,🥌🥇#usacurling #MiracurlOnIce +02/23/2018,Sports_celeb,@JohnCena,"When u feel u ""deserve"" something is when u become hateful of other's accomplishments. Be thankful for what u have,… https://t.co/7pLwafLpgX" +02/21/2018,Sports_celeb,@JohnCena,"We all build emotional walls in our lives, just remember, if there is no wall, you never have to choose which side to stand on." +02/20/2018,Sports_celeb,@JohnCena,"Side by side? Expensive “toy?” Descendant of a pre-historic animal with short arms and a fast engine? +The Campagna… https://t.co/WTOEsdXNTy" +02/19/2018,Sports_celeb,@JohnCena,"A tough week ahead. Run the gauntlet tonight on #Raw and the #WWEChamber awaits on Sunday. Like anything, take one… https://t.co/qEXKC7fKcL" +02/18/2018,Sports_celeb,@JohnCena,Also happy birthday #JHOPE just 175 more years and you’ll catch #WestNewbury #HappyJHOPEDay @BTS_twt @bts_bighit +02/18/2018,Sports_celeb,@JohnCena,Happy 199th birthday #WestNewbury Massachusetts +02/16/2018,Sports_celeb,@JohnCena,"RT @klgandhoda: .@JohnCena has a message for you... he wants to crash your school dance! + +Details are here: https://t.co/b7SaHTICY4 https:/…" +02/15/2018,Sports_celeb,@JohnCena,Never underestimate the #PowerOfAWish. @MakeAWish https://t.co/k7dQ5eKnOn +02/15/2018,Sports_celeb,@JohnCena,"Dear @Nespresso not only do you have an outstanding product, but your customer service is THE BEST I’ve ever experienced. Thank You ☕️" +02/14/2018,Sports_celeb,@JohnCena,"There have been highs AND lows on our journey, and they will continue. Whether it’s #ValentinesDay or not I’m looki… https://t.co/HXUQsTfKLm" +02/13/2018,Sports_celeb,@JohnCena,"The stats are ridiculous, the curb appeal is unparalleled, but the ride is...one of a kind. My favorite car, the… https://t.co/moUnvOXP1F" +02/12/2018,Sports_celeb,@JohnCena,Today a friend did what friends do. Confronted me about my shortcomings and gave me an opportunity to #EarnTheDay… https://t.co/fN2g3VEPrn +02/12/2018,Sports_celeb,@JohnCena,Fun for the whole Cena family! We’re making our #KCA debut on March 24...and we are ready for slime! https://t.co/XxGKgQPDuA +02/11/2018,Sports_celeb,@JohnCena,I’m bringing the whole fam to #KCA this year! Watch the first official trailer on the @Nickelodeon social accounts… https://t.co/NirxIlOvyY +02/10/2018,Sports_celeb,@JohnCena,"Not the best I’ve ever done, but certainly the best I’ll do today! #NeverGiveUp @HardNocksSouth #SquatSaturday 240kg https://t.co/fBXCAL0pgB" +02/07/2018,Sports_celeb,@JohnCena,RT @klgandhoda: That moment when you hear @JohnCena could stop by your high school's dance 🕺💃! Find out how to enter to win here: https://t… +02/06/2018,Sports_celeb,@JohnCena,"Big dreams can be scary, but that's okay. Never be afraid to put in the work...sometimes all it takes is a little… https://t.co/DJRdpgvQkf" +02/06/2018,Sports_celeb,@JohnCena,"A #LaFerrari engine is not exactly ""easy"" to access. But once you do...you know. #AutoGeek @BellaTwins… https://t.co/HB2NTtWSXI" +02/06/2018,Sports_celeb,@JohnCena,How does a @WWE Superstar pave their road to #WrestleMania? Simple. They need to have a plan. #Raw https://t.co/z8yapXlQFB +02/05/2018,Sports_celeb,@JohnCena,A well deserved congrats to @Eagles @nfl #SuperBowlLll champions! David has slain Goliath indeed. #NeverGiveUp +02/04/2018,Sports_celeb,@JohnCena,"If this does not make your heart race, not matter WHO you follow, you may need to check your @NFL pulse #SuperBowl… https://t.co/TnZiglOP9D" +02/02/2018,Sports_celeb,@JohnCena,Best performance ever is a rare moment we all strive for. To reach #BestEver many days we must do our #BestToday !… https://t.co/7fXB8N0Sx0 +02/01/2018,Sports_celeb,@JohnCena,What an AMAZING show of support for ALL those who follow @BellaTwins @belleradiciwine !! This is just incredible!… https://t.co/Y2dRW5LyOe +01/31/2018,Sports_celeb,@JohnCena,"I’ve sat by the campfire with this amazing individual. No matter who you are, I HIGHLY recommend this!! https://t.co/gPybSw7Xn1" +01/30/2018,Sports_celeb,@JohnCena,"A @grouplotusplc Evora...and a minivan. Not exactly two vehicles you think would be mentioned in the same sentence,… https://t.co/8PMeb62Wv1" +01/30/2018,Sports_celeb,@JohnCena,With chance comes the unknown. With dedication comes sacrifice. With performance comes critique. With achievement c… https://t.co/hs8m5IBASM +01/29/2018,Sports_celeb,@JohnCena,"Congrats to @ShinsukeN, but look who showed up late to the #RoyalRumble, @getcrackin. https://t.co/elVc2AUQD5" +01/29/2018,Sports_celeb,@JohnCena,Such an honor to witness @WWE history tonight. Congratulations to ALL involved in the first ever Women’s #RoyalRumble +01/28/2018,Sports_celeb,@JohnCena,Battle plan for #royalrumble2018 STAY LOW! @WWE @WWEUniverse #NeverGiveUp https://t.co/FWuGUJ1inN +01/27/2018,Sports_celeb,@JohnCena,The excitement for #RoyalRumble is palpable but I’m also ready for a different return ... the return of #AutoGeek T… https://t.co/zbQlMRGc5B +01/26/2018,Sports_celeb,@JohnCena,"I know I’m almost towards the end of the day in India, but wanted to wish all a #HappyRepublicDay" +01/25/2018,Sports_celeb,@JohnCena,RT @xfl2020: This is football reimagined. This is the XFL. Watch the official announcement — LIVE NOW! #XFL2020 https://t.co/KFX5oLmkHw +01/23/2018,Sports_celeb,@JohnCena,"So happy @FerdinandMovie was nominated for Best Animated Feature Film. The cast, crew, directors, producers, and mo… https://t.co/o8DRsZnJUZ" +01/22/2018,Sports_celeb,@JohnCena,An early start to a great day! Heading to NYC for @TODAYshow then to @MakeAWish event then.. #RAW25 what a historic event for @WWE AND TV! +01/21/2018,Sports_celeb,@JohnCena,"Congrats to @Patriots and #TomBrady on another trip to #SuperBowl 40yrs old, and at the top of his game indeed… https://t.co/vsUiUj3gnp" +01/20/2018,Sports_celeb,@JohnCena,"Life is never perfect. Embrace the lows, enjoy the highs, and always do your best to move forward and be stronger i… https://t.co/hfx72wfwvf" +01/19/2018,Sports_celeb,@JohnCena,"Difficult few days, but as Walt Whitman wrote ‘The powerful play goes on, and you get to contribute a verse’ ! #NeverGiveUp" +01/15/2018,Sports_celeb,@JohnCena,"The importance of honesty in any relationship should never be overlooked. Hiding ones feeling, or behavior, can lea… https://t.co/VnbDGqwY7d" +01/15/2018,Sports_celeb,@JohnCena,#LoveHasNoLabels Happy #MLKDay +01/14/2018,Sports_celeb,@JohnCena,"Such a wonderful, meaningful, emotional day yesterday with the woman of my dreams and both of our families. I love… https://t.co/FCV8fjN7O0" +01/11/2018,Sports_celeb,@JohnCena,Humbled to work on so many projects with an amazing partner like @Nickelodeon. Ready to bring energy to a celebrate… https://t.co/IR9M43099X +01/11/2018,Sports_celeb,@JohnCena,"The excitement can NOT be contained! + +It’s official: It’s slime season and I’m back to host the @Nickelodeon Kids’… https://t.co/0vmd680Uqv" +01/10/2018,Sports_celeb,@JohnCena,"Attention everyone....I have an important announcement! + +...TOMORROW! https://t.co/OJkmOEWXfC" +01/08/2018,Sports_celeb,@JohnCena,RT @BlockersMovie: Parents can be such 🐔 @BlockersMovie. Watch the #BlockersMovie trailer now! https://t.co/rC6yq2Kooa +01/08/2018,Sports_celeb,@JohnCena,"We will give ourselves reasons “not” to do something. Objects in motion stay that way. If you really want to do it,… https://t.co/UUnmcuZwet" +06/28/2018,Sports_celeb,@DanicaPatrick,Saving time with dat airplane makeup! More time to workout at home😆. Headed to a @somniumwine dinner that was aucti… https://t.co/oOOqUWy185 +06/28/2018,Sports_celeb,@DanicaPatrick,"Ella and I are about to tear it up in the gym, she has her ball and I have, a lot of @roguefitness equipment. 😆 hav… https://t.co/uzkhtDcgjH" +06/27/2018,Sports_celeb,@DanicaPatrick,I put the link to the @entrepreneur cover story in my bio. 💥 https://t.co/HegSAjdl1Y +06/27/2018,Sports_celeb,@DanicaPatrick,Here’s the article! https://t.co/WalE6T0vBa +06/27/2018,Sports_celeb,@DanicaPatrick,Covers are always cool but to be on a cover to talk about @somniumwine @prettyintensebydanica and @warriorbydanica… https://t.co/CYiMquhvfj +06/26/2018,Sports_celeb,@DanicaPatrick,"Check this out. Such a fun interview with @davidmeltzer for @Entrepreneur. + +https://t.co/zuYNPnqLY9" +06/26/2018,Sports_celeb,@DanicaPatrick,All interviews should be this fun!!!! Awesome conversation with @DMeltzer on how to live your #bestlife. We discuss… https://t.co/bCUaslYAbD +06/25/2018,Sports_celeb,@DanicaPatrick,"RT @espn: Want to join the stars at the 2018 @ESPYS? + +Win a chance to be @DanicaPatrick's guest by entering the ESPYS Sweepstakes with a do…" +06/22/2018,Sports_celeb,@DanicaPatrick,Namaste! @PIsupplements #EatClean #Organic #PlantPower #Sponsored https://t.co/tpEr71Xn2i +06/21/2018,Sports_celeb,@DanicaPatrick,"Oh, I wish I could of been there! Glad you had fun though, wine helps. 😆 thank you! https://t.co/1ijO320fW6" +06/17/2018,Sports_celeb,@DanicaPatrick,Happy Father’s Day pops! We have done a hell of… https://t.co/lQa1mTZYPx +06/17/2018,Sports_celeb,@DanicaPatrick,Someone has a 3rd birthday today.... and someone… https://t.co/TpXpVVotfW +06/10/2018,Sports_celeb,@DanicaPatrick,You can’t see!!!! Working on the #espys!… https://t.co/tY3o8hr7l0 +06/07/2018,Sports_celeb,@DanicaPatrick,Let’s #tbt to my surprise retirement party 11… https://t.co/H3gXSNWpOr +06/06/2018,Sports_celeb,@DanicaPatrick,"Air kisses with my shadow, Ella. ❤️ I got up… https://t.co/5zf7WFSbv3" +06/04/2018,Sports_celeb,@DanicaPatrick,Amazing night! Yes that’s me in the white dress! 😜 @SomniumWine https://t.co/SZ1ckseEYA +06/03/2018,Sports_celeb,@DanicaPatrick,Feeling pretty grateful today on my hike. Napa… https://t.co/t9lAMmXqpg +06/02/2018,Sports_celeb,@DanicaPatrick,Such a cool moment for me to finally be able to… https://t.co/ZLJ5FOHEYs +06/02/2018,Sports_celeb,@DanicaPatrick,Here at auctionnapa!!!! We are live lot 28… https://t.co/FHe5I8Cqr1 +06/01/2018,Sports_celeb,@DanicaPatrick,Thank you @LoganHjewelry for my “Danica”… https://t.co/RDG1hvBS1O +06/01/2018,Sports_celeb,@DanicaPatrick,Friday morning.....before… https://t.co/Qx22KEUGMb +05/27/2018,Sports_celeb,@DanicaPatrick,This is just a chapter in the book. Today feels… https://t.co/NuiAtY0Flx +05/26/2018,Sports_celeb,@DanicaPatrick,Flash back to the opposite scenario when I won… https://t.co/euus2qwINM +05/26/2018,Sports_celeb,@DanicaPatrick,"First, I observed that we might be the oldest… https://t.co/JNaqwkL6qi" +05/24/2018,Sports_celeb,@DanicaPatrick,For sure! So many things coming full circle! I am just one of SO many who miss Dan. https://t.co/NWRYyPHQkh +05/24/2018,Sports_celeb,@DanicaPatrick,Happy birthday mommie. It was nice to get out… https://t.co/PYzrpbKcS5 +05/23/2018,Sports_celeb,@DanicaPatrick,"RT @DanicaRacing: Check out photos of @DanicaPatrick from yesterday's #Indy500MediaTour at @SINow 📸➡️https://t.co/I3LeaHXKhO + +(Credit - @S…" +05/23/2018,Sports_celeb,@DanicaPatrick,I promise I didn’t make his picture black and… https://t.co/AA19kTGbsv +05/23/2018,Sports_celeb,@DanicaPatrick,"This is NOT savasana!!!! 🤣😩 +10 min- +10 hang… https://t.co/mHE6WrntuG" +05/23/2018,Sports_celeb,@DanicaPatrick,"This is the news!!! +. +. +Not any of the crazy… https://t.co/oISeAQZO2P" +05/23/2018,Sports_celeb,@DanicaPatrick,Let’s throw an awesome party to celebrate sports!!!!!! Thanks for believing in my girl! ☺️ https://t.co/kbK8hURbt6 +05/23/2018,Sports_celeb,@DanicaPatrick,"30,000ft dinner tonight. Long day of media in… https://t.co/g7Ex1SRzR3" +05/22/2018,Sports_celeb,@DanicaPatrick,RT @SomniumWine: Only 5 days left until @AuctionNapa E-Auction opens: 5/27 at 12 pm & closes on 6/3. To view our E-Lot: https://t.co/4wnJDw… +05/22/2018,Sports_celeb,@DanicaPatrick,Tune into @jimmyfallon tonight if you want to… https://t.co/m3h7OzJ43C +05/22/2018,Sports_celeb,@DanicaPatrick,Life size @LEGO_Group statue of me. 💥🙌🏼 I had… https://t.co/x8J5Qc9enQ +05/22/2018,Sports_celeb,@DanicaPatrick,It was my pleasure. Kids are at the top of the priority list to take care of! https://t.co/bLMAnJ4iQK +05/21/2018,Sports_celeb,@DanicaPatrick,Qualifying at Indy is a thing. It’s special.… https://t.co/pwdUpBZxBK +05/20/2018,Sports_celeb,@DanicaPatrick,WE it into the “fast 9” yesterday. Team effort.… https://t.co/Ox4qJnrWQd +05/20/2018,Sports_celeb,@DanicaPatrick,Never say never when it comes to Indy! Feelin for Hinch. https://t.co/fCtZ7IwZJs +05/19/2018,Sports_celeb,@DanicaPatrick,With all this rain when I was about to go out and qual for the 500-I said to my mom “icing the kicker”. She looked at my foot. 🤦🏻‍♀️ +05/19/2018,Sports_celeb,@DanicaPatrick,Weather... always a part of the Indy story. https://t.co/TXNSGEx3PQ +05/19/2018,Sports_celeb,@DanicaPatrick,"Qualifying for the 500 tomorrow. +@jonferrey… https://t.co/TCjpsEHipr" +05/16/2018,Sports_celeb,@DanicaPatrick,No problem! Feel free to chime in next time. 😜 https://t.co/pPspxvoHNT +05/14/2018,Sports_celeb,@DanicaPatrick,💥 lucky number 13!!!!!!! https://t.co/x5UayS1Qks +05/13/2018,Sports_celeb,@DanicaPatrick,My favorite mommies and their babies! bevpatrick brooke_selman… https://t.co/ol2Zth06Px +05/12/2018,Sports_celeb,@DanicaPatrick,Yummm! I made it with chocolate chips yesterday. 😬😜 @PrettyIntense https://t.co/sZa9wUfiaX +05/08/2018,Sports_celeb,@DanicaPatrick,Good night with my ladies @haleymoore02 and @SomniumWine at the… https://t.co/mBidpfT6sE +05/08/2018,Sports_celeb,@DanicaPatrick,That was fun!!! And way more comfy! https://t.co/NM25Tl8HOs +05/07/2018,Sports_celeb,@DanicaPatrick,"As I was trying to take a “cute” selfie (bad lighting, maaaaany tries), I… https://t.co/dCq2qRwEvY" +05/07/2018,Sports_celeb,@DanicaPatrick,I'm presenting at the James Beard Awards which will be LIVE on Twitter tonight! Watch the #jbfa action: https://t.co/ELECF3scCj +05/07/2018,Sports_celeb,@DanicaPatrick,Morning yoga vibes & plant power w/ my partner @PIsupplements #EatClean #Organic #partner https://t.co/PeILQmb32v +05/04/2018,Sports_celeb,@DanicaPatrick,"Always!!!!! Great to see you! + +We also did a documentary called Danica if you want to check that out on @EpixHD https://t.co/wH1RMSKnwi" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Now that you mention engineering meetings, I like where you're going with this...it has potential" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown I love motivational quotes and sayings, but I'm not sure how I feel about robots...maybe an app instead?" +05/04/2018,Sports_celeb,@DanicaPatrick,@Hinchtown Sure! What are you thinking? +05/04/2018,Sports_celeb,@DanicaPatrick,@Hinchtown Don't believe everything you see in movies 😉 +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Everyone likes ice cream, but the pit crews might be busy during the race." +05/04/2018,Sports_celeb,@DanicaPatrick,"Hmmm...decisions, decisions 🤔 https://t.co/FlBsJyBx9P" +05/04/2018,Sports_celeb,@DanicaPatrick,I like it! We could include copies of @PrettyIntense so folks have my recipes too https://t.co/ifTeCLuEjN +05/04/2018,Sports_celeb,@DanicaPatrick,Wow! Now that’s some fast customer service @GoDaddy https://t.co/vCy0hPdT0S +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Ya, I can't say I've ever had that problem before. 🤣 That's for sure a unique idea though. I guess they'… https://t.co/7AGEHLemUj" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Absolutely! Let me know where to send the check. 😉 If your other ideas are anything like Swifty Scoop, I… https://t.co/WsT5SY4mqt" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown That’s an awesome idea! I ❤️ my Dallas and Ella, but picking up after them is definitely not great. An a… https://t.co/JGh3Lkkbvm" +05/04/2018,Sports_celeb,@DanicaPatrick,Totally @Hinchtown—what do you got? https://t.co/QSu7eX7zyR +05/03/2018,Sports_celeb,@DanicaPatrick,Thank you. https://t.co/lcP1lkAsdK +05/02/2018,Sports_celeb,@DanicaPatrick,"RT @ECRIndy: Our three #Indy500 drivers... +#TeamAmerica, Circa 2018 🇺🇸🏁 https://t.co/u63NBSVtH5" +05/02/2018,Sports_celeb,@DanicaPatrick,"I’ll enjoy the quiet walks while I can... +. +. +#danicadouble @godaddy @ecrindy… https://t.co/7fD17A0Qw0" +05/02/2018,Sports_celeb,@DanicaPatrick,"With your help, thank you! https://t.co/wZySwBmxXR" +05/02/2018,Sports_celeb,@DanicaPatrick,Oh how he memories fled back in with this view from my rookie orientation in… https://t.co/7l6w3hHHTC +04/20/2018,Sports_celeb,@DanicaPatrick,"😩 yo, 100 chest to bar pull ups is a little detrimental to the skin on my hands. +. +4 rounds- +25… https://t.co/Z4hCfJEzxq" +04/18/2018,Sports_celeb,@DanicaPatrick,Duke (adopatable) and I at #rachelrayshow to talk about my last race and side hustles coming… https://t.co/NRb8VFFpSN +04/18/2018,Sports_celeb,@DanicaPatrick,"RT @IndyCar: 👀👀👀 +#Indy500 // #INDYCAR // @DanicaPatrick https://t.co/yfa9AG9c7N" +04/18/2018,Sports_celeb,@DanicaPatrick,"RT @SomniumWine: Wine Dogs California 3 is the definitive guide to dogs living & working in the vineyard & wineries. Dogs, Lucy & Lily belo…" +04/18/2018,Sports_celeb,@DanicaPatrick,Doing media in nyc today! First up megyntoday! @godaddy @IMS https://t.co/Mwfnuil0Ul +04/18/2018,Sports_celeb,@DanicaPatrick,Amazing experience. 🙌🏼 https://t.co/NVa5rfQSbo +04/17/2018,Sports_celeb,@DanicaPatrick,Hey students! My team @SixStarPro are giving away $15k. Enter here: https://t.co/7gfjyaz1fu #whynot… https://t.co/UsKRgJwEHg +04/16/2018,Sports_celeb,@DanicaPatrick,How cool! Hope you had fun! https://t.co/0XNworNtL1 +04/05/2018,Sports_celeb,@DanicaPatrick,"Which way to the gym?! 😆😆😆 .... please, I always know where the nearest gym is. 💪🏼 +. +....omg The… https://t.co/OJKeCzYU1d" +03/30/2018,Sports_celeb,@DanicaPatrick,"Figure out what works for you when it comes to fitness. Community, solo, hiking, lifting,… https://t.co/Q4kZdBiYQO" +03/29/2018,Sports_celeb,@DanicaPatrick,"And part 2.... well technically part 4 of the workout, but wod part b. +10 min amrap- +10 pull… https://t.co/ErxvT1d9b5" +03/29/2018,Sports_celeb,@DanicaPatrick,"I’m so excited to have my home gym loaded with all the good stuff! @roguefitness +Last round of… https://t.co/6f69XYqCz7" +03/28/2018,Sports_celeb,@DanicaPatrick,"In the words of my first win....... it’s been a long time coming. + +It will be here before we know it. And it will… https://t.co/F9kGpgMRTO" +03/28/2018,Sports_celeb,@DanicaPatrick,🏁 https://t.co/kpEVMKU2e8 +03/28/2018,Sports_celeb,@DanicaPatrick,🙌🏻 LOVE that my side hustles are on my #IndyCar for the #Indy500 with @GoDaddy! https://t.co/3ihMbuWzYh +03/27/2018,Sports_celeb,@DanicaPatrick,My favorite item from my @fabfitfun spring #editorsbox!!!!!! Mother’s Day is right around the… https://t.co/G1omyqEOTU +03/27/2018,Sports_celeb,@DanicaPatrick,F ya. It’s a hybrid of my first helmet design and my last. And I used @bellracingusa until I… https://t.co/YUbuNnMO4s +03/27/2018,Sports_celeb,@DanicaPatrick,Finally got my #pitribe @PrettyIntense sweatshirt! I am so proud of the community that formed… https://t.co/efwpKLtXIP +03/26/2018,Sports_celeb,@DanicaPatrick,"I love getting older!!!!!!!!!!! Super grateful for all the love around me in my life! People,… https://t.co/SYbWQ4tnQ8" +03/26/2018,Sports_celeb,@DanicaPatrick,"Landed.......Baaack home agaaaain, in Indiana! 🎶 🏎🏁.....it’s cold here and there is snow on the… https://t.co/mmyUfgW99z" +03/26/2018,Sports_celeb,@DanicaPatrick,"“No I will not make out with you.” 😆 +-Billy Madison +. +. +And by the way, can I have my seat… https://t.co/b5uhLgHU3i" +03/24/2018,Sports_celeb,@DanicaPatrick,Car coming....sit! Good girls. My angels! I would jump in front of a car to save them.… https://t.co/wGJYxJtMyf +03/21/2018,Sports_celeb,@DanicaPatrick,Shooting a few episodes of Elevator Pitch for @entrepreneur that airs in May!!!!!! @godaddy is… https://t.co/q3pnWWtHRS +03/20/2018,Sports_celeb,@DanicaPatrick,So cool!!!! Cheers! 🍷 https://t.co/ZS64JZmYYp +03/19/2018,Sports_celeb,@DanicaPatrick,"“We are travelers on a cosmic journey, stardust swirling and dancing in the eddies and… https://t.co/2Waju8szEj" +03/16/2018,Sports_celeb,@DanicaPatrick,🙌🏻 cheers to the weekend! @PIsupplements #partner https://t.co/MuDVve9ClB +03/14/2018,Sports_celeb,@DanicaPatrick,Ready set go. Man......IndyCar seats are so comfy. Like a lazy boy. That goes 240mph. @godaddy… https://t.co/BbOCLMJgQu +03/13/2018,Sports_celeb,@DanicaPatrick,"What? + +Just a normal day hanging out in my normal work look. 😆 @godaddy @ecrindy https://t.co/6jRBMKePM5" +03/10/2018,Sports_celeb,@DanicaPatrick,"Happy birthday to my badass sister brooke_selman. Not only are you my best friend(oracle☺️), but… https://t.co/jcL2EqENBQ" +03/08/2018,Sports_celeb,@DanicaPatrick,In honor of #internationalwomensday! I am lucky enough to say this is only some of my… https://t.co/lG9sSxDCeH +03/08/2018,Sports_celeb,@DanicaPatrick,"Summer is on its way, and my rose is here just in time! 💗 it’s made from my estate red, but… https://t.co/Ws2buLUr0A" +03/07/2018,Sports_celeb,@DanicaPatrick,🙌🏻 It’s official...I’m racing for @ECRIndy in the #Indy500! ☺️ And I’ve got a new lucky number for the @GoDaddy Che… https://t.co/6EL6L8irwo +03/06/2018,Sports_celeb,@DanicaPatrick,Thank you old friend. https://t.co/Fjm0suGSVu +03/02/2018,Sports_celeb,@DanicaPatrick,In the spirit of the @crossfit open going on......(I am watching 18.2 on my computer)I got to… https://t.co/YkOssugc7S +03/01/2018,Sports_celeb,@DanicaPatrick,I bought the book the alchemist last year....but didn’t read it. It just didn’t happen. I am… https://t.co/Z6BFBTwerw +02/23/2018,Sports_celeb,@DanicaPatrick,🌅🧘🏻‍♀️🕉 https://t.co/IuYCOv9ERK +02/21/2018,Sports_celeb,@DanicaPatrick,"RT @PlayersTribune: A pioneer and a role model. + +Looking back at @DanicaPatrick's final #Daytona500 in 0:60 seconds. https://t.co/sQuCzFSe…" +02/19/2018,Sports_celeb,@DanicaPatrick,These are the things I will remember and cherish. Thank you. 🙌🏼 https://t.co/ajFktWxxb2 +02/19/2018,Sports_celeb,@DanicaPatrick,"Goodbye race track, until May. Thank you for the memories Nascar and Daytona. 💚 +. +. +@jonferrey 📸… https://t.co/bg2mUjgCLP" +02/18/2018,Sports_celeb,@DanicaPatrick,Ready to go!!!!!! 💚 https://t.co/7uYs6Sdfbm +02/18/2018,Sports_celeb,@DanicaPatrick,Going to have to keep my eyes wide open today in the race. These cars and guys are going to do… https://t.co/sANp0FV5eu +02/18/2018,Sports_celeb,@DanicaPatrick,"Doing Daytona with all the people that mean the most to me. 💚 +. +. +@jonferrey 📸 follow… https://t.co/54M0sVD8DY" +02/18/2018,Sports_celeb,@DanicaPatrick,"Last practice day, in my stock car career. 😌 +. +. +@jonferrey 📸 follow playerstribune and… https://t.co/szIwK33MhB" +02/17/2018,Sports_celeb,@DanicaPatrick,I have always been very grateful for my fans. Thank you. ......things I will miss.… https://t.co/MFtGdnEwDn +02/16/2018,Sports_celeb,@DanicaPatrick,"Duels in the books and still in the primary car. Mission accomplished, but of course-I always… https://t.co/qXtQxJ1cwZ" +02/15/2018,Sports_celeb,@DanicaPatrick,Great job girl! ❤️ https://t.co/7JYQlPF4rq +02/15/2018,Sports_celeb,@DanicaPatrick,"Book signing barnesandnoble. +. +. +@jonferrey 📸 follow playerstribune for more pics. @godaddy https://t.co/Muo8AglQ7i" +02/15/2018,Sports_celeb,@DanicaPatrick,Hope to see you there... 👇🏻 https://t.co/DnMdhoTHrM +02/14/2018,Sports_celeb,@DanicaPatrick,How I feel about media day. 😆🤥 @disupdates #danicadouble https://t.co/1QUamTAyJh +02/14/2018,Sports_celeb,@DanicaPatrick,"Happy Valentine’s Day! +. +. +Such a lovely, man made day to either feel amazing or horrible😜,… https://t.co/QReDpgfw5B" +02/13/2018,Sports_celeb,@DanicaPatrick,"Rose all day!!!!!!!! Hell ya! Made from our estate cab franc and petit verdot! Limited amount,… https://t.co/efmBVEgvbf" +02/13/2018,Sports_celeb,@DanicaPatrick,"Morning fog in NC made for some cool moody shots. Def wasn’t Florida sunshine! +. +. +@jonferrey 📸… https://t.co/kUEYHrtWTG" +02/13/2018,Sports_celeb,@DanicaPatrick,"On my way to work today. You all know, I love looking out the window and… https://t.co/QTIfZ1BwrW" +02/13/2018,Sports_celeb,@DanicaPatrick,RT @SixStarPro: If you've ever seen @danicapatrick train you know she's pretty intense! Retweet for the chance to win a signed copy of her… +02/12/2018,Sports_celeb,@DanicaPatrick,Racing down Daytona beach. 😜 https://t.co/kf4tcT1vPb +02/12/2018,Sports_celeb,@DanicaPatrick,"Check out my new @GoDaddy TV ad. #Daytona500 #DanicaDouble +https://t.co/WBpQLgEGXC" +02/12/2018,Sports_celeb,@DanicaPatrick,Aftermath...... sweat angels as @jonferrey called them! 😜 😇 https://t.co/9hqMTgnFop +02/12/2018,Sports_celeb,@DanicaPatrick,"RT @JennaFryer: New commercial: @DanicaPatrick +and @GoDaddy have a 22nd commercial. This one to debut in Daytona 500: +https://t.co/RwPmMoX…" +02/12/2018,Sports_celeb,@DanicaPatrick,"Whoa. That was a tough one!!! One could say it was @PrettyIntense, hahahah! +. +. +5 rounds- +30… https://t.co/haJ14655zD" +02/11/2018,Sports_celeb,@DanicaPatrick,"Next up, duels on Thursday. +. +. +@jonferrey 📸 follow the playerstribune for more pics. @godaddy… https://t.co/iRhlImWt67" +02/11/2018,Sports_celeb,@DanicaPatrick,"Pre-Qualifying. +. +. +📸 @jonferrey also follow the playerstribune. @godaddy #danicadouble https://t.co/Ny266bc06A" +02/11/2018,Sports_celeb,@DanicaPatrick,Cool to see people with my book that I poured so much literal sweat and energy into. ☺️ thank… https://t.co/AmKk4M0zFa +02/10/2018,Sports_celeb,@DanicaPatrick,Good first day in the car. Thought we were going to end up P1 Until a big pack went out at the… https://t.co/GjZI5UfdcX +02/10/2018,Sports_celeb,@DanicaPatrick,"Headed to work. +. +. +Follow here and check out playerstribune for more exclusive… https://t.co/lAC2dGGf9F" +02/09/2018,Sports_celeb,@DanicaPatrick,I have @jonferrey taking all access pics this week for the first race of the #DanicaDouble.… https://t.co/0ziXIvqtTb +02/09/2018,Sports_celeb,@DanicaPatrick,RT @DISupdates: The #DanicaDouble starts with the #DAYTONA500! 🤘 https://t.co/fECOuy8vhA +02/09/2018,Sports_celeb,@DanicaPatrick,"RT @PlayersTribune: ""There couldn’t be a better place for my @NASCAR journey to end."" + +@DanicaPatrick discusses her evolving feelings on re…" +02/08/2018,Sports_celeb,@DanicaPatrick,🙌🏼🙌🏼🙌🏼 https://t.co/uDvQ1x9zpA +02/07/2018,Sports_celeb,@DanicaPatrick,The results come when you put the work in day in and day out @sixstarpro #greatnessisearned #partner https://t.co/h2QMdBETyX +02/06/2018,Sports_celeb,@DanicaPatrick,I posted a before and after pic a while back that showed the difference between a stylized pic… https://t.co/t6A2Rmacfz +02/05/2018,Sports_celeb,@DanicaPatrick,"Such a lovely day hiking, girl time supporting any and every issue/joy, workout, cooking, and a… https://t.co/QmCWEIbwkW" +02/05/2018,Sports_celeb,@DanicaPatrick,.@DavidKHarbour Have I been in a #TideAd this whole time? #SBII #SB52 @Tide https://t.co/CWA5Byp3F7 +02/03/2018,Sports_celeb,@DanicaPatrick,Thanks guys....can’t wait for May! https://t.co/DgwoPyWorm +02/02/2018,Sports_celeb,@DanicaPatrick,🙌🏼 @godaddy @disupdates .....racing in 16 days. https://t.co/68s0LIMJeV +02/02/2018,Sports_celeb,@DanicaPatrick,RT @GoDaddy: Number 7 is turning heads with @DanicaPatrick behind the wheel. #DanicaDouble #RacingAndBeyond https://t.co/DxCZyZGQNp +02/02/2018,Sports_celeb,@DanicaPatrick,Feels good to be back in the #GoDaddy green! https://t.co/x4t5GAiCjQ +02/02/2018,Sports_celeb,@DanicaPatrick,Ta da! 🙌🏻 here’s my No 7 @GoDaddy Chevy wrapped and ready for Daytona! Love the #DanicaDouble! https://t.co/xJaJlVVeMO +02/01/2018,Sports_celeb,@DanicaPatrick,Love it!!!! Good job!!! https://t.co/QSKQgeFdaI +01/31/2018,Sports_celeb,@DanicaPatrick,"Omg. The worst. I try and enforce a 90min or less rule, I don’t always win. https://t.co/K1vJmuYIxd" +01/31/2018,Sports_celeb,@DanicaPatrick,"Loving the new leggings and this wrap from the Jan collection! On @hsn at 7, 11, and 3 est… https://t.co/11NyFw6iY1" +01/31/2018,Sports_celeb,@DanicaPatrick,RT @SomniumWine: Create a romantic dinner at home this Valentines Day with @snakeriverfarms & @SomniumWine A special bonus included: An Aut… +01/30/2018,Sports_celeb,@DanicaPatrick,Headed to Tampa today for another collection of @warriorbydanica on @hsn! On air tomorrow! 🎥 I… https://t.co/7LvRUNW39l +01/29/2018,Sports_celeb,@DanicaPatrick,RT @HorsesToHarleys: Great article about why @DanicaPatrick and GoDaddy make so much sense together. https://t.co/9iZIqhrGuN +01/29/2018,Sports_celeb,@DanicaPatrick,"RT @Avery_Books: ""The journey is to find your truth and really know who you are."" +Catch @DanicaPatrick​ on @RichRoll​'s podcast here! + +http…" +01/29/2018,Sports_celeb,@DanicaPatrick,This is true. 😆 https://t.co/5ROuTC53Fp +01/26/2018,Sports_celeb,@DanicaPatrick,My shoot today was with some old friends😁..... 💚 @godaddy https://t.co/cAOM13VyRv +01/25/2018,Sports_celeb,@DanicaPatrick,"Killing time during a shoot.... and I read someone say I don’t post enough personal photos, so… https://t.co/8bJoboSPlH" +01/25/2018,Sports_celeb,@DanicaPatrick,Fun to look at my pics in @PrettyIntense and see what hard work does..... been up at 6am hitting… https://t.co/dyipzkQmHP +01/24/2018,Sports_celeb,@DanicaPatrick,Excited to talk with @cheddar about my racing career and reuniting with @GoDaddy for my next step: being an entrepr… https://t.co/GSN6UBa9Iw +01/24/2018,Sports_celeb,@DanicaPatrick,❤️ It’s a @PrettyIntense photo. 😆 https://t.co/f0TbHf7sDb +01/24/2018,Sports_celeb,@DanicaPatrick,Next week @warriorbydanica is back😜 on @hsn! https://t.co/o2Dq0pQMg0 +01/23/2018,Sports_celeb,@DanicaPatrick,Let’s do this!!!!! Lucky number 7! https://t.co/9cgI5vJesy +01/19/2018,Sports_celeb,@DanicaPatrick,RT @SiriusXMNASCAR: GUEST ALERT: #DIALEDIN with @ClaireBLang welcomes on @GoDaddy CMO @HorsesToHarleys right now to talk @DanicaPatrick! #D… +01/18/2018,Sports_celeb,@DanicaPatrick,This is awesome and I’m your biggest fan as well Bob!!!! https://t.co/LsngsuDpdC +01/18/2018,Sports_celeb,@DanicaPatrick,"RT @FSUDJn3: @DanicaRacing @DanicaPatrick @GoDaddy Awesome News, Good Luck @DanicaPatrick & #GoDaddy You 2 just go together. Looking forwar…" +01/18/2018,Sports_celeb,@DanicaPatrick,Back together in @godaddy green.....and it feels so good! https://t.co/qvvyE8inpx +01/18/2018,Sports_celeb,@DanicaPatrick,RT @DanicaRacing: 🚨📝@GoDaddy & @DanicaPatrick reunite for #DanicaDouble and life after racing ➡️https://t.co/0AkQiQcsR6 #NASCAR #IndyCar ht… +01/18/2018,Sports_celeb,@DanicaPatrick,How perfect is this?!?!!!!!! I’m so excited! @GoDaddy https://t.co/EeaxuEneRP +01/18/2018,Sports_celeb,@DanicaPatrick,Great day shooting with @scottmcdermott_ for @warriorbydanica. He shot the cover and all the… https://t.co/fAg4vDV6z0 +01/18/2018,Sports_celeb,@DanicaPatrick,Amazing day!!!!!! https://t.co/2d6xnmtiKR +01/17/2018,Sports_celeb,@DanicaPatrick,That was a fun one!!! Thanks Dan! https://t.co/Hfw13Ekxwa +01/17/2018,Sports_celeb,@DanicaPatrick,RT @PrettyIntense: .@DanicaPatrick is in deep discussion with @richroll on his podcast. Be sure to check it out! Definitely some thought pr… +01/17/2018,Sports_celeb,@DanicaPatrick,He pleasure was all mine. Thanks for taking the time to talk to me! https://t.co/CKRQvTywgV +01/16/2018,Sports_celeb,@DanicaPatrick,RT @richroll: Excited to podcast with @DanicaPatrick today - what do you want to know? +01/16/2018,Sports_celeb,@DanicaPatrick,Thank you! It was fun! https://t.co/vJqdrQsO4j +01/15/2018,Sports_celeb,@DanicaPatrick,Hearing about all my friends getting their family and friends copies because the book resonates… https://t.co/JiRQrMODJk +01/12/2018,Sports_celeb,@DanicaPatrick,"My friends @SixStarPro are giving you a chance to win a $15,000 scholarship. Enter now https://t.co/8Vt8FDGGcu… https://t.co/c1gnSlF8OJ" +01/11/2018,Sports_celeb,@DanicaPatrick,RT @DanSchawbel: Danica Patrick’s 5 secrets to living a successful and happy life https://t.co/7hBPp75Fb1 @DanicaPatrick +01/11/2018,Sports_celeb,@DanicaPatrick,"😆😆😆 love it! Just so you know, I say that to myself too! Good work! https://t.co/lxLqSRHH6M" +01/09/2018,Sports_celeb,@DanicaPatrick,"RT @DanicaRacing: .@DanicaPatrick shifts careers, back to work after a short offseason. https://t.co/B6k37w8jGU https://t.co/I4QpMCKzag" +01/08/2018,Sports_celeb,@DanicaPatrick,@RachelleDarling @Reality_Check11 @FlaniganVarina @PrettyIntense So proud of you guys!!!!! +01/08/2018,Sports_celeb,@DanicaPatrick,That’s awesome! Thank you and keep it up! https://t.co/SZwtkNRCgv +01/06/2018,Sports_celeb,@DanicaPatrick,We had a @PrettyIntense workout today with our friend @aaronbrockett! Feels good to run a little… https://t.co/RIEYhWP0Gq +01/06/2018,Sports_celeb,@DanicaPatrick,"@AaronPott @patty_bretz @PrettyIntense Thanks Aaron(my winemaker)! Speaking of perfection, I need to get to napa ag… https://t.co/hoBasmpQhx" +01/06/2018,Sports_celeb,@DanicaPatrick,😆 it will happen many times over the course of 12 weeks. 😬 https://t.co/2049ER1aAf +01/06/2018,Sports_celeb,@DanicaPatrick,Thanks for making the drive! https://t.co/Azn6R78YPn +01/06/2018,Sports_celeb,@DanicaPatrick,Proud of you! I will be on the lookout for your progress! https://t.co/EMKPVjsp4I +01/06/2018,Sports_celeb,@DanicaPatrick,RT @DanicaRacing: .@DanicaPatrick’s New Career Track - the #NASCAR driver looks ahead to her post-racing life https://t.co/AbjNyiBnb5 https… +01/05/2018,Sports_celeb,@DanicaPatrick,First book signing tonight. I had a good time and it was awesome to see the #pitribe (they did… https://t.co/vUjLd9aRha +01/04/2018,Sports_celeb,@DanicaPatrick,Thank you so much! I’m proud of you! https://t.co/09SHYAOwjB +01/03/2018,Sports_celeb,@DanicaPatrick,Thanks! You know how much I love to cook! https://t.co/aeSWbaCQAG +01/03/2018,Sports_celeb,@DanicaPatrick,Oh you’re so sweet!!! ☺️ https://t.co/73l2jWSWWT +01/03/2018,Sports_celeb,@DanicaPatrick,Watch @thechew today!!!! Made my cast-iron skillet apple crumble! 😋 @PrettyIntense https://t.co/4f4HjiN4vK +01/02/2018,Sports_celeb,@DanicaPatrick,"RT @GMA: .@DanicaPatrick demonstrates some workout moves from her new book ""PRETTY INTENSE"" and shares secrets for a healthier new year! ht…" +01/01/2018,Sports_celeb,@DanicaPatrick,"As you look into the white space of 2018, ask yourself...what do I want? You are a creator. And… https://t.co/g0ymexznCC" +12/31/2017,Sports_celeb,@DanicaPatrick,Walkin into 2018 like...let’s do this. Don’t forget to drink some heart healthy red wine tonight… https://t.co/GMqYxixr3s +12/29/2017,Sports_celeb,@DanicaPatrick,Getting excited about my book tour in NYC next week! It’s going to be fun to do different things… https://t.co/61TAdOe2n6 +12/27/2017,Sports_celeb,@DanicaPatrick,"Holy moly it’s on shelves!!!!!!!!! 🙌🏼 it isn’t just a workout book. It focuses on the mind, then… https://t.co/82LgNNQeym" +12/25/2017,Sports_celeb,@DanicaPatrick,Merry Christmas!!!!!!🎁🎄 https://t.co/14sDmAvUSk +12/24/2017,Sports_celeb,@DanicaPatrick,"This is how we do it, nah nah nah nah nah. 😆🎶 annual tradition on Christmas. And yes, we love… https://t.co/eF38xkweq9" +12/24/2017,Sports_celeb,@DanicaPatrick,....And this article for my wine @somniumwine!!!! So exciting to see things that have been in… https://t.co/fvRd2mR8ts +06/29/2018,Sports_celeb,@nickdiaz209,@tocayaorganica #organic #floradaboy 🥊 https://t.co/SLeupmHvSf +06/29/2018,Sports_celeb,@nickdiaz209,#tbt #vegas @DjShiftLV @spartan_sano kriskehl1 @Rudyvegas tommyvegas1007 https://t.co/CcE45Cd0U4 +06/28/2018,Sports_celeb,@nickdiaz209,@spartan_sano and me @NickDiazAcademy #mma https://t.co/B9QrPjFpCd +06/22/2018,Sports_celeb,@nickdiaz209,@spartan_sano #ebc #vegas #spartansano @NickDiazAcademy @ufc @bellatormma ✊🏽 https://t.co/nihK0fjgle +06/22/2018,Sports_celeb,@nickdiaz209,#yeeee @felonyisme https://t.co/HkmyjtSkzd +06/22/2018,Sports_celeb,@nickdiaz209,@ProFightLeague @jakeshieldsajj ✊🏽 #nickdiazacademy #graciefighter #scrappack @elninotraining @cesargraciebjj… https://t.co/Ccj6Im05pf +06/21/2018,Sports_celeb,@nickdiaz209,Happy birthday elfrogito #ajtapout #ajstrong… https://t.co/4lgMGePN9H +06/19/2018,Sports_celeb,@nickdiaz209,wildcardboxingclub @thefloridaboy #boxing @ufc… https://t.co/R0yPW13ctN +06/18/2018,Sports_celeb,@nickdiaz209,Picked up a @jawzrsize 💯 Get yours using my code… https://t.co/rKo91DpRZw +06/18/2018,Sports_celeb,@nickdiaz209,#ShannonBriggs 💪🏽 🥊 https://t.co/dwCKxlfINN +06/17/2018,Sports_celeb,@nickdiaz209,"#dayoneshit @drzdah #drdah @ West Hollywood,… https://t.co/5O9to9jXYd" +05/21/2018,Sports_celeb,@nickdiaz209,@TeamSantos925 @cesargraciebjj 🥋 https://t.co/i6nXPLWPNo +05/19/2018,Sports_celeb,@nickdiaz209,Old school #blackbeltmagazine cover photo used… https://t.co/gHG29Czdyc +05/19/2018,Sports_celeb,@nickdiaz209,#mrpushup unclejimmystrong #strong #pushup… https://t.co/AgTUWRnbrk +05/16/2018,Sports_celeb,@nickdiaz209,Ran into my boy Jeremy Lappen #elitexc promoter… https://t.co/aN7N9sp7X7 +05/14/2018,Sports_celeb,@nickdiaz209,lilsdinh nat_marie7 carlitonation bmetcalf76 @ Liaison Restaurant +… https://t.co/sv13AtFKOJ +05/11/2018,Sports_celeb,@nickdiaz209,"RT @ufc: #OnThisDay in 2012... + +@NateDiaz209 once again left us speechless. #UFC25Years https://t.co/mCoYXBEdc2" +05/11/2018,Sports_celeb,@nickdiaz209,RT @NateDiaz209: 👊🏼 https://t.co/xbcve5XZsl +05/10/2018,Sports_celeb,@nickdiaz209,"RT @TheFloridaBoy: PICK +ya +POISON https://t.co/ZZZzu50CrC" +05/09/2018,Sports_celeb,@nickdiaz209,Me and @mariolopezextra wildcardboxingclub we had to jump this fool… https://t.co/5O8Kem0Kst +05/04/2018,Sports_celeb,@nickdiaz209,Great training day thanks to jeanjacquesmachado for having us and… https://t.co/afPbEsXUxZ +05/04/2018,Sports_celeb,@nickdiaz209,"RT @TheFloridaBoy: Got pretty... +High + +Today.... https://t.co/0Mv5g4fqtj" +05/04/2018,Sports_celeb,@nickdiaz209,"RT @50cent: I’m busy working on something, that’s gonna blow your mind. #thebag💰 https://t.co/F9zhIQH7uQ" +05/02/2018,Sports_celeb,@nickdiaz209,Come smoke 💨 highrollerzbjj mightymatt @biglonn412 #june10 #buytix @ Nexus… https://t.co/ZW6WfYeMEN +04/29/2018,Sports_celeb,@nickdiaz209,@NickDiazAcademy @joseaguayo100 #ganggang https://t.co/3tJtKsWorA +04/27/2018,Sports_celeb,@nickdiaz209,tommyvegas1007 @hwood_roosevelt @uncleJimmystrong kathleenmacel https://t.co/1wPuHhK8hL +04/27/2018,Sports_celeb,@nickdiaz209,#ganggang #dallas #squad #bottledblonde @desman06 @dennydamier elfrogito bottledblondedtx https://t.co/vBZTB6tbpg +04/27/2018,Sports_celeb,@nickdiaz209,"@jasonmanly #comeatmebro ✊🏽🙏🏽 +@NickDiazAcademy @musclepharm https://t.co/06DciV9z0Q" +04/21/2018,Sports_celeb,@nickdiaz209,@hemp2o @Hemp2oOfficial https://t.co/yYa3Mlacdw +04/16/2018,Sports_celeb,@nickdiaz209,Happy birthday to my little brother @natediaz209 ✊🏽 https://t.co/AyaWA8QBq3 +04/12/2018,Sports_celeb,@nickdiaz209,Happy birthday to my boy @gilbertmelendez @elninotraining @woodenmanmt 🙏🏽 https://t.co/ylVUzsMrPX +04/12/2018,Sports_celeb,@nickdiaz209,ralphgracie @✊🏽💪🏽👌🏾🙏🏽 https://t.co/8pg7bHJ4TS +04/11/2018,Sports_celeb,@nickdiaz209,"Back where we left off👊🏽 😡😡😡😵😵😵😵😵🙂☹️🤕 @ Dallas, Texas https://t.co/vc3U0laIrO" +04/06/2018,Sports_celeb,@nickdiaz209,#Dallas @desman06 @dennydamier @ Citizen https://t.co/dIEpJ3eiYq +03/28/2018,Sports_celeb,@nickdiaz209,"@whotel come at me #👊🏽 +@hommefemmela @ W Dallas - Victory Hotel & Residences https://t.co/VMhMf6MMeA" +03/27/2018,Sports_celeb,@nickdiaz209,Thanks Ernest for taking us out for dinner had a great time #dallas https://t.co/UZ3EvyipiP +03/22/2018,Sports_celeb,@nickdiaz209,drosol ionlywantedeverything clayryanflyn_ @ W Dallas - Victory Hotel & Residences https://t.co/LPiMFAOCvb +03/20/2018,Sports_celeb,@nickdiaz209,Back in Dallas with @Belluhhh @dannyleal_a themodernmodel @jacobtuygun @wuaniiiii #dallas https://t.co/8rjp0g1vBl +03/19/2018,Sports_celeb,@nickdiaz209,@akafights @ShreveportMAA #mma #jits https://t.co/R0D4rAroUe +03/18/2018,Sports_celeb,@nickdiaz209,@akafights @ShreveportMAA #jiujitsu #mma https://t.co/fRnydORsPV +03/16/2018,Sports_celeb,@nickdiaz209,@hemp2o @Hemp2oOfficial @NickDiazAcademy #hemp2o #hemp2zero https://t.co/BPpB9tlbzY +03/16/2018,Sports_celeb,@nickdiaz209,@marqueelv with @StefanStruve and badiesel1 wit @darthvinh #vegas #casmopolitan #marqueenightclub https://t.co/kDHsggdOAF +03/15/2018,Sports_celeb,@nickdiaz209,Good times out here knudsenjitsu thanks to everyone for coming had a great time🙏🏼 https://t.co/rgGddv7BoZ +03/10/2018,Sports_celeb,@nickdiaz209,#Ifc #steveheath #vs #chuckliddell #fresno #tablemountaincasino @cesargraciebjj @NickDiazAcademy https://t.co/q0IViEpnA5 +03/10/2018,Sports_celeb,@nickdiaz209,#Ifc #warriorschallenge #paulsmith #bumfuckmountain #chagefighting #mma https://t.co/eYWdS2idpW +03/10/2018,Sports_celeb,@nickdiaz209,@akafights https://t.co/A3w5xIPLiT +03/09/2018,Sports_celeb,@nickdiaz209,#steveheath 🙏🏼💪🏽✊🏽 #Mma #Ifc #Ufc #shooto #pancrase #japan #jiujitsu #cesargraciejiujitsu… https://t.co/JOMuVJvrYc +03/05/2018,Sports_celeb,@nickdiaz209,Come have a training day #jiujitsu @akafights https://t.co/W41lbYrgce +02/24/2018,Sports_celeb,@nickdiaz209,#209 @NickDiazAcademy #diaz https://t.co/R5QyDDREts +02/23/2018,Sports_celeb,@nickdiaz209,@Belluhhh teaching me how to watch out for the hot ones 🔥👊🏽 #throwwwback #dallas themodernmodel https://t.co/VR1jGo1lMt +02/20/2018,Sports_celeb,@nickdiaz209,@Hemp2oOfficial @nickdiaz209 @hemp2o @NickDiazAcademy https://t.co/AzwcGRFI9V +02/14/2018,Sports_celeb,@nickdiaz209,@Ufc @spartan_sano 💪🏽👊🏽 https://t.co/jEVLrZwwyD +02/14/2018,Sports_celeb,@nickdiaz209,#👊🏽 #someart https://t.co/jHLl5FjI5R +02/14/2018,Sports_celeb,@nickdiaz209,@ghostfacekillah cosmopolitan_lv 💪🏽✊🏽 https://t.co/jc8CdJGaJu +02/07/2018,Sports_celeb,@nickdiaz209,Please try my drink great for cutting weight @hemp2o @Drink_Hemp2o #mma #hydration #hemp2zero… https://t.co/hSPOdoV8bP +02/01/2018,Sports_celeb,@nickdiaz209,@xaviervigney & @spartan_sano #Hitters 💯 https://t.co/DSPRIRw6m3 +12/21/2017,Sports_celeb,@nickdiaz209,😓🤛🏽🤕 #mood https://t.co/9fMXsfELey +11/08/2017,Sports_celeb,@nickdiaz209,@aboveandbeyond @mgmgrand https://t.co/xsMy1WeMrG +11/02/2017,Sports_celeb,@nickdiaz209,#throwback cesargraciebjj @NickDiazAcademy @santarosamma https://t.co/tsmmjwnPG1 +11/01/2017,Sports_celeb,@nickdiaz209,#Halloween #flicks #man #what @OmniaLasVegas https://t.co/OS4mBM7bXs +11/01/2017,Sports_celeb,@nickdiaz209,#nickdiazacademy #stockton #ca #ceasargracie https://t.co/EDnTWxFMvV +10/31/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @spartan_sano jerryb300 #nickdiazacademy https://t.co/0nu9gWZass +10/21/2017,Sports_celeb,@nickdiaz209,#photocredit : @firethecanon hooterscasinolv with all The Hooters 🦉😎 @ Hooters Casino Hotel https://t.co/nMElqskCmj +10/09/2017,Sports_celeb,@nickdiaz209,cjduffs #vegas @ Las Vegas Strip https://t.co/KBIDb5QSJh +10/09/2017,Sports_celeb,@nickdiaz209,angelinagervasi @NickDiazAcademy #yoga #nickdiazacademy https://t.co/oOJiCY5dHu +10/06/2017,Sports_celeb,@nickdiaz209,@spartan_sano check out yo boy 💯 https://t.co/rMs9rMymbd +09/27/2017,Sports_celeb,@nickdiaz209,"This is how we deal with #madmat aka mightymatt when he wants turn in to mad mat +#easywork… https://t.co/dY0kKWNyzA" +09/21/2017,Sports_celeb,@nickdiaz209,Happy birthday to yo boy @thevipliaison #choke @natediaz209 #vegas https://t.co/dXfNDqJqpV +09/20/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @rcsspence @hemp2o @Drink_Hemp2o https://t.co/2SrOSsWiRx +09/19/2017,Sports_celeb,@nickdiaz209,@DjShiftLV @djturbulence @natediaz209 https://t.co/HQUegU6TJJ +09/16/2017,Sports_celeb,@nickdiaz209,#mood cesargraciebjj 🤖😠👊🏽😡 https://t.co/2gzzUiR6qw +09/15/2017,Sports_celeb,@nickdiaz209,🍒 @ Palms Place Luxury Suite Rentals https://t.co/zWn7ADtGjm +09/11/2017,Sports_celeb,@nickdiaz209,@mgmgrand miketyson @ymedeiros @spartan_sano mightymatt https://t.co/Cl4CfVOZpX +09/10/2017,Sports_celeb,@nickdiaz209,Just posted a photo @ The Venetian Las Vegas https://t.co/hnQcoV20vy +08/30/2017,Sports_celeb,@nickdiaz209,Congrats to @rondarousey one of my best friends ever and her ole man @travisbrownemma #💪🏽 #👊🏽… https://t.co/xAoxpYPasj +08/28/2017,Sports_celeb,@nickdiaz209,#blackandwhitetvdays cesargraciebjj #fml #knowyourworth #knowwhereyoucamefrom https://t.co/iD0p1lzSZf +08/28/2017,Sports_celeb,@nickdiaz209,joerogan's photo https://t.co/oyc2gSJlrd +08/28/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/CN1XbJEG7u https://t.co/vk0eDmvBJr +08/27/2017,Sports_celeb,@nickdiaz209,Congrats to @floydmayweather and #tmt #50and0 best in the biz #respect https://t.co/3RpKrco3KX +08/27/2017,Sports_celeb,@nickdiaz209,@oldgoodstuffnyc #noig 🤔 #oldgoodstuff 🥊🌇 #nycity #ktown https://t.co/pf24viCPvp +08/27/2017,Sports_celeb,@nickdiaz209,#photocredit : @firethecanon thank you for getting me some rooms @nycdoubletree had a great stay… https://t.co/8xFqNzXuRU +08/27/2017,Sports_celeb,@nickdiaz209,@hemp2o @Drink_Hemp2o @NickDiazAcademy #nickdiazacademy #weightcutting #cutweight #lowcarb https://t.co/AnDpBintbN +08/27/2017,Sports_celeb,@nickdiaz209,People ask me I just say I know it will go more than 3 rounds 👁👊🏽 +08/26/2017,Sports_celeb,@nickdiaz209,@hemp2o @Drink_Hemp2o @NickDiazAcademy #nickdiazacademy #weightcutting #cutweight #lowcarb https://t.co/AnDpBintbN +08/25/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #mma #jiu- Jitsu #boxing https://t.co/PkdV1xAYIH +08/21/2017,Sports_celeb,@nickdiaz209,@nycdoubletree @ 👊🏽 🍜 https://t.co/znQqKkQnTc +08/21/2017,Sports_celeb,@nickdiaz209,@nycdoubletree https://t.co/tWizGUGFIu +08/18/2017,Sports_celeb,@nickdiaz209,@NYCDoubleTree #nyc https://t.co/HlyCqbJP1B +08/02/2017,Sports_celeb,@nickdiaz209,@wynnlasvegas https://t.co/chSqFEYEBp +08/02/2017,Sports_celeb,@nickdiaz209,@AJMMASignatures @NickDiazAcademy @ Wall Street https://t.co/ae4A5x0lLQ +07/30/2017,Sports_celeb,@nickdiaz209,@korn #korn https://t.co/Bck77uXkks +07/20/2017,Sports_celeb,@nickdiaz209,@marketeson @OmniaLasVegas #vegas #vegasnightlife #vegasdj https://t.co/SgUZvMxmYF +07/20/2017,Sports_celeb,@nickdiaz209,@chrisavila209 @NickDiazAcademy #nickdiazacademy https://t.co/vrFiM6xI6i +07/18/2017,Sports_celeb,@nickdiaz209,RT @jakeshieldsajj: Charlize Theron shows her talent with martial arts https://t.co/ginwY0SUpK +07/17/2017,Sports_celeb,@nickdiaz209,@rivolis https://t.co/k2JpKJSu8Z +07/05/2017,Sports_celeb,@nickdiaz209,@flavrx #canabis #cbd #mma #fitness #enrgy #recovery #livestrong #livefree #diehard https://t.co/ov1aMZwutg +06/28/2017,Sports_celeb,@nickdiaz209,@spartan_sano @CocoGrazi1 @OmniaLasVegas @nervomusic @DjShiftLV https://t.co/aMfoQfuHvP +06/28/2017,Sports_celeb,@nickdiaz209,Wadup New Jersey...I'm coming to watch UFC fight #213 and have some great food with Tony at his… https://t.co/Z8bxitlyBa +06/28/2017,Sports_celeb,@nickdiaz209,@hemp2o #hemp20 #hemp https://t.co/nqjWyaKQgx +06/27/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy 🤛🏽👊🏽🤜🏽 https://t.co/wS2eQHfc1w +06/24/2017,Sports_celeb,@nickdiaz209,@frankshamrock https://t.co/0pamVsVR9A +06/09/2017,Sports_celeb,@nickdiaz209,wetrepublic @DjShiftLV https://t.co/eIIRP2HbkF +05/23/2017,Sports_celeb,@nickdiaz209,@penniepainter and @gagegaubert 💯 #dallas 😎#goodmusic #livemusic https://t.co/iOvgfZSdEs +05/23/2017,Sports_celeb,@nickdiaz209,😑🤛🏽👊🏽🤜🏽 #doyouevenlift 💪🏽🏊 https://t.co/VkglnCWg2Z +05/22/2017,Sports_celeb,@nickdiaz209,One of the first pros I put in work with #RJCarson R.I.P https://t.co/kAegNbnoyJ +05/20/2017,Sports_celeb,@nickdiaz209,"🙋🏻‍♂️yoga bitch 😑#photocredit : drosol @ Dallas, Texas https://t.co/nAnmjW8Esz" +05/19/2017,Sports_celeb,@nickdiaz209,"cesargraciebjj @renzograciebjj @santarosamma ncfamma ralphgracie @NickDiazAcademy +Remember… https://t.co/a37HKymXqO" +05/19/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy graciearmy209kids @Stockton_CA @natediaz209 @rcsspence luke_1er @chrisavila209… https://t.co/X4bA4eW42P +05/19/2017,Sports_celeb,@nickdiaz209,Rough day #chriscornell #rip https://t.co/BeWcTjxRlP +05/17/2017,Sports_celeb,@nickdiaz209,One of my hardest working students but I still have to keep him because he taps out allot… https://t.co/yzYAdDjoQX +05/17/2017,Sports_celeb,@nickdiaz209,"If you be know this movie your not hard Bro +#lionhart #bloodsport @jcvd #vandamme #vandamage… https://t.co/SZ3ACp53S1" +05/16/2017,Sports_celeb,@nickdiaz209,@DOPE_Magazine @natediaz209 #dope🔥 #dope https://t.co/Otk165ftoS +05/16/2017,Sports_celeb,@nickdiaz209,bhadbhabie #catchmeoutsidehowboutdat https://t.co/3T9pMNcm1C +05/16/2017,Sports_celeb,@nickdiaz209,tanman2222 c_thomas_21 #209 merced_speedway @NickDiazAcademy #🏁 https://t.co/mi21qMmUsK +05/16/2017,Sports_celeb,@nickdiaz209,Wow thanks for your support #pro #cannabis #negativity #motivation #turmoil #pitofdespair #drama… https://t.co/YR0cmHlCiJ +05/16/2017,Sports_celeb,@nickdiaz209,UFC Fighter's DRUGS Ban for WEED: Nate Diaz Marijuana https://t.co/UTV2YxKbPS +05/16/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @Stockton_CA @visitlodi @natediaz209 @rcsspence graciearmy209kids #jiujitsu… https://t.co/MJjy0NaPf6 +05/16/2017,Sports_celeb,@nickdiaz209,#NinamomNate ninameg209 @natediaz209 😘 https://t.co/waLWrQALNt +05/16/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/dhGn6BBrau +05/16/2017,Sports_celeb,@nickdiaz209,@flavrx 👊🏽🙏🏼 #canabis #💪🏽 @ Opening Bell Coffee https://t.co/dgb5Kz5M4T +05/16/2017,Sports_celeb,@nickdiaz209,Beto's restaurant 💯 +05/16/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/dV53mwYLRn https://t.co/oT23FjKMkF +05/15/2017,Sports_celeb,@nickdiaz209,#fortworthwatergardens #fortworth @ Fort Worth Water Gardens https://t.co/xUE0NWtS6p +05/15/2017,Sports_celeb,@nickdiaz209,"I like old coke better than new cuz it's old and so am I 🤔 +#coke #cokehead #cokewhore #cocaine… https://t.co/SmPQOwljvr" +05/15/2017,Sports_celeb,@nickdiaz209,"@lucaspinheirojj 🙏🏼👊🏽 @ Reservoir-Bar, Patio & Kitchen https://t.co/BamBOHtNt8" +05/15/2017,Sports_celeb,@nickdiaz209,Yeah bitches 🙋🏻‍♂️👊🏽@jakesheldas #gang https://t.co/YxVUJsnUvx +05/14/2017,Sports_celeb,@nickdiaz209,#happymothersday 🌹 https://t.co/VmkfKgwADY +05/14/2017,Sports_celeb,@nickdiaz209,At @ufc you lose money because of your lack of understanding for the sport and by the way thanks for the tickets to the fight bitch! +05/13/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/NWkw2ihVOS +05/10/2017,Sports_celeb,@nickdiaz209,tanman2222 @NickDiazAcademy merced_speedway https://t.co/KzZCyqRi5c +05/10/2017,Sports_celeb,@nickdiaz209,Rip big Homi @bigblack https://t.co/L1T0lKHskq +05/10/2017,Sports_celeb,@nickdiaz209,@wizkhalifa welcome to White belt 💯 https://t.co/mW4QXLcOkg +05/10/2017,Sports_celeb,@nickdiaz209,Lilianna Wilde - Grind Me Down https://t.co/kzaZRon29Y +05/09/2017,Sports_celeb,@nickdiaz209,#hardbro @jcchavezjr1 @natediaz209 @mgmgrand https://t.co/SvAtYGC6XH +05/09/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/dV53mxgmIV https://t.co/Rc7Xzadm7M +05/04/2017,Sports_celeb,@nickdiaz209,randyspence1's photo https://t.co/AkhZqY6alh +05/03/2017,Sports_celeb,@nickdiaz209,@cher 💯💯💯💯😍 @streetleague lasvegas #vegas #sls @ SLS Las Vegas Hotel & Casino https://t.co/I1TYuz5IvB +05/03/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #nda209 @torque1net #dbsh #gang #gang 👊🏽 https://t.co/aUhr7Dmsxd +05/03/2017,Sports_celeb,@nickdiaz209,@iamwill @VignetteLounge #blackeyedpeas #💯 https://t.co/qsHpKDJe23 +05/01/2017,Sports_celeb,@nickdiaz209,RT @rcsspence: Vato loco shirt from Tijuana. https://t.co/X5gVi5dZHu +04/30/2017,Sports_celeb,@nickdiaz209,@teamblackmma congrats to mattbakerusa #🤛🏽 #👊🏽 #🤜🏽 https://t.co/yzFfU5muiY +04/29/2017,Sports_celeb,@nickdiaz209,@Bourdain on Sunday https://t.co/4aVFOEIO1m +04/28/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #stockton #209 @representltd https://t.co/F4DKQpcUP4 +04/26/2017,Sports_celeb,@nickdiaz209,oneacegroup tocamaderala https://t.co/IWfsmdamwM +04/24/2017,Sports_celeb,@nickdiaz209,RT @Spartan_Sano: I liked a @YouTube video https://t.co/dW4LePsQ5S MMA Star Martin Sano Calls Out Dillon Danis Close Friend Of Conor McGreg… +04/24/2017,Sports_celeb,@nickdiaz209,RT @artvega76: @ScottCoker please match up @Spartan_Sano vs. @dillondanis so I can watch Martin Sano Knockout Dillon Danis!!!! +04/22/2017,Sports_celeb,@nickdiaz209,@spartan_sano @Drake @hwood_roosevelt https://t.co/rwUBnOcQGi +04/22/2017,Sports_celeb,@nickdiaz209,brendandowie @jaimeramirez kingofrum https://t.co/wlgoPFWMt6 +04/22/2017,Sports_celeb,@nickdiaz209,c_thomas_21 tanman2222 @NickDiazAcademy merced_speedway #🏁 https://t.co/D1g3XOzdxD +04/22/2017,Sports_celeb,@nickdiaz209,#😡 #🤛🏽👊🏽🤜🏽 https://t.co/sr0Y0f4YMX +04/21/2017,Sports_celeb,@nickdiaz209,#aboveandbeyond 🤧🤛🏽🙄🤙🏽💏 https://t.co/4zOv1nWx81 +04/19/2017,Sports_celeb,@nickdiaz209,My boy mattbakerusa @teamblackmma @NickDiazAcademy #kickboxing #mtc3 #🤛🏽👊🏽🤜🏽 https://t.co/WT287Ohf27 +04/19/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/3DoYLKhS3v https://t.co/HKQz7vZ5m6 +04/17/2017,Sports_celeb,@nickdiaz209,Hope everyone had a happy Easter #🐇 @ Coachella Valley https://t.co/pSW9t2lZ1N +04/16/2017,Sports_celeb,@nickdiaz209,Happy birthday @natediaz209 🤛🏽👊🏽🤜🏽 https://t.co/Xy1CM6l4Q9 +04/14/2017,Sports_celeb,@nickdiaz209,hairbyjessicaybarra's photo https://t.co/50UYz52pN8 +04/14/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #nickdiazacademy https://t.co/y8CWmsV8fw +04/14/2017,Sports_celeb,@nickdiaz209,Nick Diaz Highlights https://t.co/ajP15VhbmV +04/14/2017,Sports_celeb,@nickdiaz209,@natediaz209 #pat #itspat #noig @drzdah #ericdah #sd #life https://t.co/xsNQlkRFWk +04/13/2017,Sports_celeb,@nickdiaz209,buckleupforchi #oneloveforchi #deftones #chicheng https://t.co/4gc1fPh9fx +04/13/2017,Sports_celeb,@nickdiaz209,@lindsay_phenix I was looking for you 👀 +04/12/2017,Sports_celeb,@nickdiaz209,#NextWeekend #420Life #FlavRX #WeedMaps #hightimescannabiscup #hightimes https://t.co/4ZZ8gZQoz9 +04/11/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/GxFwvsw8B9 https://t.co/MmyDgfGwtJ +04/09/2017,Sports_celeb,@nickdiaz209,@parqsd @mattgerold brendandowie #sd https://t.co/eDvQiwSNP7 +04/09/2017,Sports_celeb,@nickdiaz209,@natediaz209 #pat #itspat #noig @drzdah #ericdah #sd https://t.co/BpQ7vPu3l6 +04/07/2017,Sports_celeb,@nickdiaz209,c_thomas_21 #209car #209 #nickdiazcar #racing🏁 #racing merced_speedway 💯 https://t.co/835aOKqisj +04/06/2017,Sports_celeb,@nickdiaz209,#cantkillmewhenimalreadydead #nickdiaz #deadthough #🖐🏼#💪🏽 #thatdeadnessthough 🍜🌮🍤👁🚬✊🏼😟😖😣😞☹️🙃 https://t.co/W1DjN85zs8 +04/05/2017,Sports_celeb,@nickdiaz209,#giraffe #mickegrovezoo #lodi @mickegrovezoo @ Micke Grove Zoo https://t.co/oTR2R7Kwfr +04/05/2017,Sports_celeb,@nickdiaz209,Congrats to califitxo Took first place in her bikini competition #1st #💪🏽#lodi @ Ollie's Pub https://t.co/SEAD7icwK3 +04/05/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy graciearmy209kids #nickdiazacademy #stockton @Stockton_Cali @Stockton_CA https://t.co/jyuoL1omET +04/05/2017,Sports_celeb,@nickdiaz209,@flavrx #420 #FlavRX #CBD #THC 💯#😎 https://t.co/5PI84N1FF4 +04/02/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy tanman2222 #209car #209 #nickdiazacademy https://t.co/Ye4Jtr8r4E +04/02/2017,Sports_celeb,@nickdiaz209,Don't get #caughtslippin 👊🏽 https://t.co/ZsJ8mDvAsk +03/30/2017,Sports_celeb,@nickdiaz209,@realroyce brendandowie @natediaz209 #vegas #ufc https://t.co/jcwL4ep3aI +03/30/2017,Sports_celeb,@nickdiaz209,@hemp2o @spartan_sano @SamuraiJuice716 #sf https://t.co/dKlIEguGEv +03/30/2017,Sports_celeb,@nickdiaz209,Nick Diaz Beats Jean Pascal Says Trainer Who Was There When Diaz Won Pro... https://t.co/RiRlqAcIoF +03/29/2017,Sports_celeb,@nickdiaz209,#onsomeweed in this pic 😎 https://t.co/Qdl71k0t0Y +03/29/2017,Sports_celeb,@nickdiaz209,"Win 2 Tickets to #Hightimes Cannabis Cup April 21st-23rd in San Bernardino, CA! Meet us at the… https://t.co/IO9aLW23ID" +03/28/2017,Sports_celeb,@nickdiaz209,GSP 0.9 LB ALLOWANCE IN TITLE FIGHT AGAINST NICK DIAZ https://t.co/ZLFWT7T2MI +03/28/2017,Sports_celeb,@nickdiaz209,Nick Diaz tapes Canadian AC give GSP extra pound allowance https://t.co/3aNxKWduU6 +03/27/2017,Sports_celeb,@nickdiaz209,https://t.co/83IcxBS4R9 +03/26/2017,Sports_celeb,@nickdiaz209,Aha just me and my boy snoopdogg you feel me #snoopdogg #ggn https://t.co/iiYvnXgqTx +03/26/2017,Sports_celeb,@nickdiaz209,Me and my boy Skip #lodi #stuckinlodi @drdabber https://t.co/KEqA9bZNWT +03/26/2017,Sports_celeb,@nickdiaz209,michaeldavidwinery @deltavelo iamspecialized_tri @tbfmultisport @rokasports @damianxp… https://t.co/es8lmMFU4T +03/26/2017,Sports_celeb,@nickdiaz209,cosmopolitan_lv #photocredit robweiss https://t.co/6QhNUsHrK5 +03/26/2017,Sports_celeb,@nickdiaz209,@rokasports @tbfmultisport iamspecialized_tri @deltavelo michaeldavidwinery #triathlon #xterra https://t.co/JPeoHxJ5m0 +03/25/2017,Sports_celeb,@nickdiaz209,farrenjanel's photo https://t.co/Mx8ocYvcUr +03/25/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/pBOI2wD4tO +03/25/2017,Sports_celeb,@nickdiaz209,@torque1net @tbfmultisport michaeldavidwinery @spartan_sano riokid krongracie #xterrareal… https://t.co/bX96NyHDNq +03/25/2017,Sports_celeb,@nickdiaz209,iamspecialized_tri iamspecialized @ TBF Racing https://t.co/d90LZ8T5u4 +03/25/2017,Sports_celeb,@nickdiaz209,#xterrareal today @tbfmultisport michaeldavidwinery @deltavelo @mdwsports @NickDiazAcademy… https://t.co/NdYwO2kuBU +03/24/2017,Sports_celeb,@nickdiaz209,robweiss frankcesena cosmopolitan_lv #ballers #😎 https://t.co/KPiXeNhpR5 +03/22/2017,Sports_celeb,@nickdiaz209,"#plpcc #plpatientconsumercoop +#sandiego #sweetlifeoftheknopfs #surfrootsradio #wmsurfing… https://t.co/WiZOi36x61" +03/18/2017,Sports_celeb,@nickdiaz209,#runningback https://t.co/LJX6m7w92k +03/17/2017,Sports_celeb,@nickdiaz209,W Tommy @spartan_sano cosmopolitan_lv #Nascar #Renegade @xslasvegas @ The Cosmopolitan of Las Vegas https://t.co/LrAdYhjLMr +03/16/2017,Sports_celeb,@nickdiaz209,#someart https://t.co/KjFg2bvaUw +03/11/2017,Sports_celeb,@nickdiaz209,@SamuraiJuice716 @spartan_sano @torque1net anchorsocial https://t.co/a2uuaaiWUf +03/11/2017,Sports_celeb,@nickdiaz209,@natediaz209 #youseeit @Gfighterlodi @hydebellagio https://t.co/itWYbWy7wL +03/11/2017,Sports_celeb,@nickdiaz209,#nickdiazacademy @Gfighterlodi graciearmy209kids #stockton @Stockton_CA https://t.co/MFI6hPSHjV +03/06/2017,Sports_celeb,@nickdiaz209,alexgrey 💯🙏🏼✊🏼👊🏽 https://t.co/NduOCLvPiH +07/01/2018,Sports_celeb,@DaleJr,It is so hot here @ChicagolndSpdwy that the ACs can’t even keep up. Was 85ish in there yesterday. Still way better… https://t.co/aGOGpU08HA +07/01/2018,Sports_celeb,@DaleJr,@BubbaWallace 😂 +07/01/2018,Sports_celeb,@DaleJr,"@BrannenBroome @NASCARonNBC Obviously you watch the 78,4,18 “big 3” +But outside of that I’m gonna stick with 22, 9 to run well today also." +07/01/2018,Sports_celeb,@DaleJr,"@CampbellLeslie3 @JRMotorsports I don’t sponsor anyone. Can’t afford that. 😀 +The late model team is a 2 car operati… https://t.co/nn3j62nwhr" +07/01/2018,Sports_celeb,@DaleJr,Going to join some friends and broadcast my first race with @NASCARonNBC today. I have been a driver for 20 years b… https://t.co/9RyaMJcdh9 +07/01/2018,Sports_celeb,@DaleJr,Jagger Jones drove for @JRMotorsports late model team last night and got the W. https://t.co/BDT4bhBxcs +07/01/2018,Sports_celeb,@DaleJr,Haha this was fun to do. https://t.co/EeyIqiNjKp +06/30/2018,Sports_celeb,@DaleJr,RT @scottblodgett15: @WingedNation dont see this every day @bestdirttrack https://t.co/SbVYdsvdBQ +06/30/2018,Sports_celeb,@DaleJr,First T-shirt also. Let’s hope that becomes a trend. 😀👍🏼 https://t.co/BqFjA5iIYr +06/30/2018,Sports_celeb,@DaleJr,RT @Wrangler: #DaleYeah he's ready for race day. Here's how @DaleJr has been perfecting his commentary craft before his @NASCARonNBC announ… +06/30/2018,Sports_celeb,@DaleJr,@VannoyLaura @NASCAR @ChicagolndSpdwy I ushered in some casual +06/30/2018,Sports_celeb,@DaleJr,@NASCARonNBC @AllWaltrip @LarryMac28 @RickAllenracing @NBCSN https://t.co/8vpjLcjVY0 +06/30/2018,Sports_celeb,@DaleJr,@TylerReddick @J_Allgaier The sensor is low in the car +06/30/2018,Sports_celeb,@DaleJr,Total laps averaged for @XfinityRacing final practice. Series regular @ColeCuster_ looks impressive to have ran as… https://t.co/oLD9HbZFTB +06/30/2018,Sports_celeb,@DaleJr,"Drum Raceway, Allentown, NY. Shut down in 1980 after someone broke into the track and injured themselves running la… https://t.co/06g4Etmzgt" +06/30/2018,Sports_celeb,@DaleJr,"RT @DirtyMoMedia: The single greatest ad read of all-time? +Yeah, this is how you read an ad #DirtyMo style 🤣 +@ZipRecruiter #DJD https://t.…" +06/29/2018,Sports_celeb,@DaleJr,New job update. https://t.co/RrLKGBa7lM +06/29/2018,Sports_celeb,@DaleJr,"Tough race for Shirley. But, there can only be one winner. https://t.co/sRmqUZwjIY" +06/28/2018,Sports_celeb,@DaleJr,Tune in @NBCSN now 👍🏼 https://t.co/ATRv18NgKs +06/28/2018,Sports_celeb,@DaleJr,#Fred @Wrangler https://t.co/ZfJD4p9u1l +06/28/2018,Sports_celeb,@DaleJr,"RT @Wrangler: Finding any opportunity to practice for his @NASCARonNBC announcing debut, @DaleJr delivers colorful commentary while his nei…" +06/28/2018,Sports_celeb,@DaleJr,@kylepetty @NASCARonNBC Thanks bud! https://t.co/L7SbB6dyZx +06/28/2018,Sports_celeb,@DaleJr,RT @EarnhardtKelley: Everyone keeps asking if my workload is lighter now since @dalejr has retired from the race car. Read this! The answer… +06/28/2018,Sports_celeb,@DaleJr,@ShawnPhillips24 @Blaney eBay +06/28/2018,Sports_celeb,@DaleJr,"RT @nateryan: ICYMI ... Besides joining the @NASCARonNBC booth, what else is happening with @DaleJr in his post-#nascar driving life? + +A l…" +06/27/2018,Sports_celeb,@DaleJr,Awesome throwback T-shirt on deck for @FallonTonight #Eeaaaarrrnhardt +06/27/2018,Sports_celeb,@DaleJr,"RT @dennyhamlin: Thanks to @DirtyMoMedia , @MikeDavis88 and @DaleJr for having me on this weeks podcast. Had a good time talking about top…" +06/27/2018,Sports_celeb,@DaleJr,@budweiserusa Waaaaaaazzzzzzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhh😝😝😝 +06/27/2018,Sports_celeb,@DaleJr,@NASCARonReddit Looks legit +06/27/2018,Sports_celeb,@DaleJr,@budweiserusa Hello??📱 +06/27/2018,Sports_celeb,@DaleJr,Follow @DirtyMoMedia to see what all we are doing in NYC today. https://t.co/xLUxEqf30U +06/27/2018,Sports_celeb,@DaleJr,RT @Jrod323488: I can't say enough how much the @DaleJr download has changed my perspective of several drivers I used to watch the races on… +06/27/2018,Sports_celeb,@DaleJr,RT @budweiserusa: @BurgerKing aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa… +06/27/2018,Sports_celeb,@DaleJr,@RickAllenracing @NASCARonNBC https://t.co/mUJkIXlOqT +06/27/2018,Sports_celeb,@DaleJr,Air drummer looking for an air guitarist 👋🏼 @RickAllenracing https://t.co/PuMOMYjt5B +06/27/2018,Sports_celeb,@DaleJr,@CopaCavanna @MikeDavis88 😂 +06/27/2018,Sports_celeb,@DaleJr,@GeoffWSYX6 @MikeDavis88 eBay! +06/27/2018,Sports_celeb,@DaleJr,Hopped in a car service to NYC from the airport. The driver has on collision detection. So the car vibrates when an… https://t.co/onPexgagqT +06/27/2018,Sports_celeb,@DaleJr,"🤦🏼‍♂️ We are either: +A: never getting another sponsor again. +B: going to have more official sponsors than Nascar https://t.co/RhHL0Lopuj" +06/27/2018,Sports_celeb,@DaleJr,@AnnetteMZ Sadly. +06/27/2018,Sports_celeb,@DaleJr,@bobbloxsom Gotta spread the word that Nascar is coming to NBC! 😀 +06/27/2018,Sports_celeb,@DaleJr,@hollykbegley @DirtyMoMedia @dennyhamlin @MatthewDillner @NBCSN @MikeDavis88 We do sponsor ads right at DMR 😂 +06/27/2018,Sports_celeb,@DaleJr,RT @dpshow: Join us WED with NYC in studio guests @DaleJr and Michael Douglas. We’ll also speak with Michael Porter Jr @nuggets @NASCAR @An… +06/27/2018,Sports_celeb,@DaleJr,"RT @FallonTonight: On our next show: @icecube & @DaleJr! Plus, @intanetz performs! #FallonTonight" +06/27/2018,Sports_celeb,@DaleJr,"Headed to NYC this morning to promote @NASCARonNBC. + +Look for me on @TODAYshow, @dpshow, @FallonTonight, @BravoWWHL… https://t.co/DWXMZ3FNi8" +06/27/2018,Sports_celeb,@DaleJr,New podcast is up!! https://t.co/m5G9bOmlsR +06/26/2018,Sports_celeb,@DaleJr,"RT @zwriter: #NASCAR 's Most Popular Driver, @DaleJr will be very busy tomorrow: in New York for @NBC 's Media Day. @jimmyfallon @megynke…" +06/26/2018,Sports_celeb,@DaleJr,@Kenny_Wallace I need to borrow the Balough book. Thanks +06/26/2018,Sports_celeb,@DaleJr,@kimmiecoon @HashtagSports Holy crap! #HTTR +06/26/2018,Sports_celeb,@DaleJr,@DaveFultonWrang @carfifteen Motor is a v6 +06/26/2018,Sports_celeb,@DaleJr,https://t.co/7K9qBpNFyE +06/26/2018,Sports_celeb,@DaleJr,This weeks “Dale Jr Download” podcast is in the books. @dennyhamlin was our excellent guest. We covered a lot of gr… https://t.co/4cr4ooVFJ2 +06/26/2018,Sports_celeb,@DaleJr,@VinceKMcNugget I lived with it. That was enough for me. +06/26/2018,Sports_celeb,@DaleJr,Daytona. July. 1981. Pissed after a wreck on the front stretch. He’s sitting behind pitwall as the crew repair the… https://t.co/grShasH6tY +06/26/2018,Sports_celeb,@DaleJr,@iamjamieq @wcnc Maybe it’s the pickle juice brine?? 🤷🏼‍♂️ +06/26/2018,Sports_celeb,@DaleJr,.@NASCARonNBC asked me to create a playlist of some of my favorite jams. It’s a little bit of the old mixed with th… https://t.co/FgFKWhkM7t +06/26/2018,Sports_celeb,@DaleJr,RT @dangeroussummer: Thanks to @DaleJr and @NASCARonNBC for adding so many of our songs to the “Gameday: NASCAR Weekend Playlist” on @Spoti… +06/25/2018,Sports_celeb,@DaleJr,Steve shares his side of our experiences together and what an enjoyable trip down memory lane it is. 👍🏼 https://t.co/dE1a9Y2jgW +06/25/2018,Sports_celeb,@DaleJr,"RT @NASCARonNBC: #NASCAR: @steveletarte reveals ""biggest meltdown"" with @DaleJr & what happened next in this excerpt of Steve's new book: h…" +06/25/2018,Sports_celeb,@DaleJr,@nascarman_rr @ESPNMcGee +06/25/2018,Sports_celeb,@DaleJr,@TessQuinlan @Spotify Someone added 20 or so songs to it after I sent in my initial 40 songs. +06/25/2018,Sports_celeb,@DaleJr,Here’s some crappy footage of the end result. I did the same thing one season with @SteveLetarte after taking an ex… https://t.co/fVmMQACWtI +06/25/2018,Sports_celeb,@DaleJr,"1980 Virginia 500. On the initial start, Sr pulls low before the S/F line. Can you guess what happens next? https://t.co/ZjiD87SxWp" +06/25/2018,Sports_celeb,@DaleJr,@SteveLetarte https://t.co/54cKCD6JS3 +06/25/2018,Sports_celeb,@DaleJr,@TheCincyBuckeye @A_S12 @NBCSports @NASCARonNBC @NBCSportsPR @leighdiffey @RaceSonoma @SteveLetarte @MikeDavis88 @DirtyMoMedia @pepsi 😂 +06/25/2018,Sports_celeb,@DaleJr,@Ky1eLong Heck ya. Thanks dude +06/25/2018,Sports_celeb,@DaleJr,@FreeThrowEmo Hope to catch a show one day. Till then. 🤘🏼 +06/25/2018,Sports_celeb,@DaleJr,@AustinPetty45 Enjoyed seeing the piece on Adam. Good job @MattYocum @AustinPetty45 +06/24/2018,Sports_celeb,@DaleJr,How fast is @colepearn tapping his foot right now on that pit box?? https://t.co/OsRs0lUqhf +06/24/2018,Sports_celeb,@DaleJr,"When a racer loses his life, the world of motorsports across all disciplines takes notice and pays its respects. My… https://t.co/I4KARE5eUw" +06/24/2018,Sports_celeb,@DaleJr,Missed our Key West renovation show? I see it’s available on iTunes. https://t.co/yXHeSevS0t https://t.co/35LlXCOt79 +06/24/2018,Sports_celeb,@DaleJr,@RodneyChilders4 Building some incredible hotrods Rodney +06/24/2018,Sports_celeb,@DaleJr,@PRNlive @WendyVenturini @WendyVenturini rest up and get well! +06/24/2018,Sports_celeb,@DaleJr,@jim_utter Sorry for your loss Jim. Hope to see you soon. +06/23/2018,Sports_celeb,@DaleJr,The final episode of our renovation show is tonight at 9pm! Watch all 4 episodes starting at 7:30pm. Tune in to… https://t.co/heFHURpGsa +06/23/2018,Sports_celeb,@DaleJr,@ClaireBLang @MikeDavis88 I been tellin him this 🙄😀 +06/22/2018,Sports_celeb,@DaleJr,@iRacingMyers @iRacing Lotta stuff goes on behind the scenes with these real world racers like @scottspeed to make the simulation better. +06/21/2018,Sports_celeb,@DaleJr,@racrboi90 @NASCAR_Xfinity @DaleEarnhardSr I do. Relief drove for Buddy Baker who was hurt +06/21/2018,Sports_celeb,@DaleJr,@nateryan Let’s go @hornets fans! https://t.co/S9pjwrkZlo +06/21/2018,Sports_celeb,@DaleJr,I couldn’t remember because it hadn’t come in the mail yet. It came today and it’s unique. I will bring it to the s… https://t.co/FL5zpoNBKK +06/21/2018,Sports_celeb,@DaleJr,Hope everyone enjoyed the premiere of “The Dale Jr Download” podcast on @NBCSN today. I can’t believe they let us h… https://t.co/6UpzW5YSwO +06/21/2018,Sports_celeb,@DaleJr,RT @NASCARonNBC: Did you like the @DaleJr Download TV premiere? #DJD +06/21/2018,Sports_celeb,@DaleJr,@MatthewDillner @DirtyMoMedia @MikeDavis88 You really don’t want me to do that. #gotitpaused +06/21/2018,Sports_celeb,@DaleJr,"“The Dale Jr Download” is coming on @NBCSN in 10 minutes! Even if you’re currently not watching your TV, maybe just… https://t.co/0PTR9vEwVI" +06/21/2018,Sports_celeb,@DaleJr,RT @AmyEarnhardt: Would love to know y’alls favorite elements of the house so far! Episode 4 has a few that I am excited for everyone to se… +06/21/2018,Sports_celeb,@DaleJr,@markmartin Haha @markmartin +06/21/2018,Sports_celeb,@DaleJr,@RhondaFultz88 @MikeDavis88 @MatthewDillner @DirtyMoMedia When I was racing I was grumpy and didn’t wanna do nothin. 😆 +06/21/2018,Sports_celeb,@DaleJr,It’s your mother. Her experience gets her the nod. https://t.co/RURNwhuAmS +06/21/2018,Sports_celeb,@DaleJr,@Carey88K @MikeDavis88 @MatthewDillner @DirtyMoMedia I saw it advertised on Instagram and swiped up to purchase +06/21/2018,Sports_celeb,@DaleJr,Posted this on other social accounts so forgive the repetitiveness. But this is something myself @MikeDavis88… https://t.co/3OxcOB1mmk +06/21/2018,Sports_celeb,@DaleJr,@dcufan @NASCARonNBC @NBCSN Well 💩 +06/21/2018,Sports_celeb,@DaleJr,"RT @odsteve: Behind the scenes was all about doing it right for 2019, no mention of anything fizzling. Complete opposite. A reminder that…" +06/21/2018,Sports_celeb,@DaleJr,RT @dustinlong: NEWS: #NASCAR will NOT run All-Star aero package again this season in Cup. https://t.co/78BSyW4DJ5 +06/21/2018,Sports_celeb,@DaleJr,@jeff_gluck Bad time to ask you your thoughts on the two day/enhanced schedule in Chicago? +06/21/2018,Sports_celeb,@DaleJr,I thought I heard Norm Macdonald’s voice in my living room but it was Christian Slater on @TODAYshow. +06/21/2018,Sports_celeb,@DaleJr,@lindsleeees @AmyEarnhardt 😊 +06/21/2018,Sports_celeb,@DaleJr,@keselowski @fbme4 Even made a shirt to commemorate it. https://t.co/AFnl8YLDhf +06/21/2018,Sports_celeb,@DaleJr,@dennyhamlin https://t.co/JG2hskfMxB +06/21/2018,Sports_celeb,@DaleJr,That first time you text someone that you got a sitter lined up for dinner this weekend https://t.co/LxtdRYllhL +06/20/2018,Sports_celeb,@DaleJr,@NASCAR @RaceSonoma ☺️😢 +06/20/2018,Sports_celeb,@DaleJr,"RT @DirtyMoMedia: The story behind ""Do-Rag Dale"" is told in great (and scary) detail by @DaleJr on this week's #DJD! + +HOW TO FIND IT: +Websi…" +06/20/2018,Sports_celeb,@DaleJr,@jeff_gluck Is this really the hill you want to die on Jeff? +06/19/2018,Sports_celeb,@DaleJr,New podcast is up for download! 👇🏼👇🏼👇🏼 https://t.co/76BkRNldLQ +06/19/2018,Sports_celeb,@DaleJr,We need a final destination on your luggage. My money is on Albuquerque. https://t.co/tefnUdPTAm +06/19/2018,Sports_celeb,@DaleJr,👀 https://t.co/OY1tRG4bnI +06/19/2018,Sports_celeb,@DaleJr,While teams/manufacturers have multi million dollar simulators that provide much of the same. What they don’t emula… https://t.co/Xl4I6KWJI8 +06/19/2018,Sports_celeb,@DaleJr,This is in my opinion @iRacing greatest value. It provides an ability to learn road course disciplines and techniqu… https://t.co/DY4exIHnGB +06/19/2018,Sports_celeb,@DaleJr,A refresher for drivers headed to @RaceSonoma https://t.co/9x15C7yCIK +06/19/2018,Sports_celeb,@DaleJr,That @chipgaines book is pretty darn good. But it also serves many useful household purposes. Such as: If your litt… https://t.co/hTqguoLvvI +06/19/2018,Sports_celeb,@DaleJr,@MartySmithESPN Everything I do +06/19/2018,Sports_celeb,@DaleJr,@nealhendrix @KenSchrader @BelleClairSpdwy 😂🤷🏼‍♂️ +06/19/2018,Sports_celeb,@DaleJr,@LilRedDave @DocPunchESPN The deerhead shop +06/19/2018,Sports_celeb,@DaleJr,@Kenny_Wallace https://t.co/U1Fz5K49Ze +06/19/2018,Sports_celeb,@DaleJr,This was a stop on a week long trip dirt racing with @KenSchrader. I was 16. @BelleClairSpdwy was insane. Met a ton… https://t.co/WEKBHOSZII +06/19/2018,Sports_celeb,@DaleJr,@KyleLarsonRacin @RyanLitt07 @wcsohio https://t.co/1K0XDSzSXK +06/18/2018,Sports_celeb,@DaleJr,My friend TMack was living his dream of being a crew chief in the Cup series till this week. It’s a shame we will n… https://t.co/Z6PQcEjHs4 +06/18/2018,Sports_celeb,@DaleJr,All of our listeners have been asking for us this. It’s happening. 👍🏼👇🏼 https://t.co/De8dEv7mI1 +06/18/2018,Sports_celeb,@DaleJr,@RMinENC @KerryDEarnhardt Yep +06/18/2018,Sports_celeb,@DaleJr,To race online you had to call Massachusetts. I’d race all night. I shared a double-wide trailer with my brother… https://t.co/tM32hPK1Jo +06/18/2018,Sports_celeb,@DaleJr,RT @JRMotorsports: .@J_Allgaier's win today @iowaspeedway marks the 40th victory for JRM in @XfinityRacing competition. https://t.co/j4s1Qy… +06/17/2018,Sports_celeb,@DaleJr,".@J_Allgaier is a wheelman. Drove every lap @ 10/10ths. +@CBellRacing was a tough customer today. Gave us all we cou… https://t.co/IFI3SeWl7O" +06/17/2018,Sports_celeb,@DaleJr,@coleswindell Absolutely right brother. +06/17/2018,Sports_celeb,@DaleJr,Happy Fathers Day to all the dads in the twitterverse. Feels pretty cool to be part of the club. 😎 +06/16/2018,Sports_celeb,@DaleJr,"New episode tonight! It’s a good one. + +If you missed episodes one and two, check them out beforehand at 8|7c. https://t.co/0ofYqBfEIC" +06/14/2018,Sports_celeb,@DaleJr,https://t.co/66gKHzCSnh +06/14/2018,Sports_celeb,@DaleJr,@Ykp23 @QALORing @spyoptic @Wrangler https://t.co/66gKHzCSnh +06/14/2018,Sports_celeb,@DaleJr,RT @BobbyAllison12: This is Bonnie. I came across this while looking for something else. Thought I would share one of the more littler mome… +06/14/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: We couldn't agree more, @AmyEarnhardt! ❤️💕 + +#DaleAndAmysReno continues Saturday at 9|8c. @DaleJr https://t.co/d29QJROP9u" +06/14/2018,Sports_celeb,@DaleJr,My partners @QALORing @spyoptic and @Wrangler teamed up to create an ultimate Father’s Day Gift Pack for all the da… https://t.co/uA5H5sFxoL +06/12/2018,Sports_celeb,@DaleJr,@John_Andretti That makes more sense. +06/12/2018,Sports_celeb,@DaleJr,@TSSKevin Honestly. Making my own +06/12/2018,Sports_celeb,@DaleJr,@jeff_gluck @NASCAR Feeling some type of way #nostalgia +06/12/2018,Sports_celeb,@DaleJr,@Scottie_B_ @NASCAR Just being nostalgic +06/12/2018,Sports_celeb,@DaleJr,@EmarKnowsBest @NASCAR Just appreciate the man +06/12/2018,Sports_celeb,@DaleJr,.@NASCAR Bill France Jr. told everyone how it was gonna be. He ran the show. “Nascar was here way before you and wi… https://t.co/dPSHsjuJHl +06/12/2018,Sports_celeb,@DaleJr,@BBarker88 @ReganSmith @Wendys French Toast Fries 🍟 +06/12/2018,Sports_celeb,@DaleJr,"@ReganSmith @Wendys Let’s all be chill. +I hate confrontation 😂" +06/12/2018,Sports_celeb,@DaleJr,Every win could be your last. Might wanna raise hell when they occur. https://t.co/iUUCTKlRh5 +06/12/2018,Sports_celeb,@DaleJr,What a ride @ClintBowyer has been on the past decade. Takes character to navigate through all that. +06/12/2018,Sports_celeb,@DaleJr,I got out and told my CC the car was effed up. John ran a few laps and wrecked it. Come to find out the sway bar wa… https://t.co/DDtRKzFDwX +06/12/2018,Sports_celeb,@DaleJr,@Kirt_Achenbach Everyone musta bought a car from DiGard +06/10/2018,Sports_celeb,@DaleJr,"9pm ET @DIYNetwork tonight +Episode 2 of Key West renovation show. #DaleAndAmysReno" +06/10/2018,Sports_celeb,@DaleJr,@KarsynElledge3 @jelledge81 Badass @jelledge81 +06/10/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: We love that @DaleJr & @AmyEarnhardt honor this home's history by giving new purpose to old things. + +#DaleAndAmysReno conti…" +06/09/2018,Sports_celeb,@DaleJr,"RT @LilRedDave: In '71 & '72, Cale Yarborough, in pursuit of an open wheel life, ran the 500 with Ray Fox and sponsor Woolco who would stru…" +06/09/2018,Sports_celeb,@DaleJr,"RT @AmyEarnhardt: Episode 2 of our Key West Renovation Realities airs tonight! 9/8c on @DIYNetwork ! If you missed Epsiode 1, you can catch…" +06/09/2018,Sports_celeb,@DaleJr,The second episode of our Key West renovation show comes on at 9pmET tonight on @DIYNetwork. If you missed the 1st… https://t.co/hzK5ypqU2J +06/09/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: ICYMI-last week's premiere with @DaleJr & @AmyEarnhardt! + +#DaleAndAmysReno continues tomorrow (Saturday) 9|8c. https://t.co…" +06/09/2018,Sports_celeb,@DaleJr,@poconoraceway @kevin_teel @thewonderyears @NASCAR https://t.co/wn6KM7Fher +06/09/2018,Sports_celeb,@DaleJr,@poconoraceway @kevin_teel @thewonderyears @NASCAR Holy crap +06/08/2018,Sports_celeb,@DaleJr,@MartySmithESPN @BelmontStakes https://t.co/UPbXlmhFKB +06/08/2018,Sports_celeb,@DaleJr,@CLTMotorSpdwy @USLegendCars @Bojangles1977 @EarnhardtKelley @austindillon3 @tydillon @DanielHemric @TeamHendrick… https://t.co/0Ms4mvhse3 +06/08/2018,Sports_celeb,@DaleJr,@AaronClayBurns @SLFMotion So smooth +06/08/2018,Sports_celeb,@DaleJr,First ride with the new Hyper Speed System from @SLFMotion today. #happycustomer #smoothasglass https://t.co/hv4PCLJK3K +06/08/2018,Sports_celeb,@DaleJr,Saddened about #AnthonyBourdain. Depression and mental illness can affect anybody. Someone you know could be strugg… https://t.co/p8PaLumTeT +06/08/2018,Sports_celeb,@DaleJr,"Vandiver, would deliberately spin his car on lap 223, on Darlington's backstretch. This caused a caution, and in a… https://t.co/bhP6T8oUfe" +06/08/2018,Sports_celeb,@DaleJr,"Driver Neil Castles had been in Wallace's office at the time, overheard this conversation, and informed Vandiver be… https://t.co/loXuXgdjVJ" +06/08/2018,Sports_celeb,@DaleJr,Two Greenville County sheriff's deputies arrived at Darlington on race day. In Darlington Raceway president Barney… https://t.co/9ouLeHVjdj +06/08/2018,Sports_celeb,@DaleJr,"The judge at the hearing did not consider this grounds for absence, and found Vandiver in contempt of court. An arrest warrant was issued." +06/08/2018,Sports_celeb,@DaleJr,"From the 1973 Southern 500 Wikipedia + +Jim Vandiver (dealing with a child custody case with his first wife) was to a… https://t.co/6aNEkXDWH3" +06/08/2018,Sports_celeb,@DaleJr,Congrats @Capitals #StanleyCup +06/08/2018,Sports_celeb,@DaleJr,RT @Capitals: THE MOMENT WE'VE ALL BEEN WAITING FOR! WE GOT THE CUP! #ALLCAPS #STANLEYCUP https://t.co/TEur4PnhMD +06/07/2018,Sports_celeb,@DaleJr,@DontreGraves I biked 32 miles this morning... https://t.co/fKD97sbyId +06/07/2018,Sports_celeb,@DaleJr,Working with @ReganSmith was a lot of fun. 👍🏼 https://t.co/a9me2GzNkF +06/07/2018,Sports_celeb,@DaleJr,RT @DontreGraves: This is the most T.O. thing ever https://t.co/XqgmH79yMD +06/07/2018,Sports_celeb,@DaleJr,This is great https://t.co/OnoHGOw5gV +06/07/2018,Sports_celeb,@DaleJr,Thank you @JoSwindell @KevinSwindell. Isla’s gonna be stylin’ https://t.co/5riJwkdQEq +06/07/2018,Sports_celeb,@DaleJr,RT @wcnc: Caught on camera: Baby thrown from burning apartment in SC https://t.co/yMY8pxKS5j https://t.co/WOpjnGfMyd +06/07/2018,Sports_celeb,@DaleJr,"Through the years after my dads death many drivers and industry folk were incredibly supportive, and that certainly… https://t.co/Ymont8ocKD" +06/07/2018,Sports_celeb,@DaleJr,Dad stops to examine the hat after signing it because of the color and logo. The UPS branding was an unfamiliar sig… https://t.co/t8Ts5GnyIH +06/07/2018,Sports_celeb,@DaleJr,Dad is hurriedly signing items handed to him by the group as he talks. DJ worked his way through the group up to da… https://t.co/2K4LX4BpCU +06/07/2018,Sports_celeb,@DaleJr,In 2001 at the Daytona 500 hours before the race DJ was getting ready to do his hospitality for his new sponsor UPS… https://t.co/bS0yv7jSGK +06/07/2018,Sports_celeb,@DaleJr,I see @DaleJarrett at the studio for our show tonight. And he says he has something for me. I wonder what could it… https://t.co/NTIQ0uWgd1 +06/06/2018,Sports_celeb,@DaleJr,Fun to be back. I enjoyed the show and hope you did too. This new job kicks ass. +06/06/2018,Sports_celeb,@DaleJr,"I’m on TV with @RutledgeWood, @DaleJarrett for the #WednesDale edition of #NASCARAmerica. Watch it or record it or… https://t.co/8yKlFJlggl" +06/06/2018,Sports_celeb,@DaleJr,"RT @Kenny_Mayne: We had our 501C-3 deal...now we have a bank account..Next week a website & an announcement.. + +Then we can start appealing…" +06/06/2018,Sports_celeb,@DaleJr,What a find! https://t.co/ncPjFbIbOJ +06/06/2018,Sports_celeb,@DaleJr,One of my best buddies is getting his big acting break! Check out twitterless Brad Burroughs (he’s the one towing t… https://t.co/7SBIGO69ta +06/05/2018,Sports_celeb,@DaleJr,"RT @TheSceneVault: Dale Earnhardt takes six-year-old @DaleJr and eight-year-old @EarnhardtKelley swimming on the lake, and Kelley begins he…" +06/05/2018,Sports_celeb,@DaleJr,@SHOWTIME6676 😂👍🏼👍🏼 +06/05/2018,Sports_celeb,@DaleJr,@BroBible @DontreGraves +06/05/2018,Sports_celeb,@DaleJr,@KyleLarsonRacin @DCSolar https://t.co/lWY59fEX4t +06/05/2018,Sports_celeb,@DaleJr,@ClintBowyer Let’s ride 20 +06/05/2018,Sports_celeb,@DaleJr,@marietk28 My boss was telling me about that. The away game parties at home arenas. That’s a great idea. +06/05/2018,Sports_celeb,@DaleJr,@Gingeronastick A @mnwild game many many years ago thanks to @budweiserusa +06/05/2018,Sports_celeb,@DaleJr,@jeff_gluck Cars aflame 😂 +06/05/2018,Sports_celeb,@DaleJr,One cool part of last nights #NHLFinal was when the monitors showed the large crowd partying in the streets outside… https://t.co/FHLG04LyDV +06/05/2018,Sports_celeb,@DaleJr,This is fantastic. Pretty cool that kids still connect with my father. Dad would get such a kick out of this. Aweso… https://t.co/SsPBMMCQ7H +06/05/2018,Sports_celeb,@DaleJr,"#StanleyCup +#StanleyCupFinal #StanleyCupFinal2018" +06/05/2018,Sports_celeb,@DaleJr,#Final #TheFinal #NHLFinal +06/05/2018,Sports_celeb,@DaleJr,I feel lucky to have witnessed a home team score at an @NHL finals game. The energy and noise from the crowd was contagious. +06/05/2018,Sports_celeb,@DaleJr,"RT @miketirico: Hanging with Jr and JR + +@StanleyCup Final +@NHLonNBCSports +@NBCSports + +@DaleJr +@Jeremy_Roenick https://t.co/BllWMqASoq" +06/05/2018,Sports_celeb,@DaleJr,@KeithOlbermann @NBCSports https://t.co/D1BDru0LrV +06/05/2018,Sports_celeb,@DaleJr,@renewabelle @fak3r @KeithOlbermann @NBCSports I was +06/05/2018,Sports_celeb,@DaleJr,Need all the practice I can get!! Ready to get to @ChicagolndSpdwy and get things started. #Rookie https://t.co/SrJhsbr1MV +06/04/2018,Sports_celeb,@DaleJr,@CopaCavanna “Let’s see. K...Y...L?” +06/04/2018,Sports_celeb,@DaleJr,@MW55 @dennyhamlin @jeff_gluck @zachstur @KyleLarsonRacin Fun to watch. Remember going there many years ago. +06/04/2018,Sports_celeb,@DaleJr,"Paternity leave is over and we are back to work. Me, @RutledgeWood, and @DaleJarrett will talk about them topics an… https://t.co/7Sb6ym4VCC" +06/04/2018,Sports_celeb,@DaleJr,@Super70sSports If Garo Yepremian played baseball. +06/04/2018,Sports_celeb,@DaleJr,This week https://t.co/824vyQxEqi +06/26/2018,Sports_celeb,@CameronHanes,160 yards just fun...I’m loving my new @hoytbowhunting Ultra. Straight from the gym wrapping up today’s… https://t.co/HhCvqcRPXT +06/25/2018,Sports_celeb,@CameronHanes,Yellow balloon on far target...140 yards with @wayneendicott1354 on the play-by-play and @dylancroll on the 🎥. Who… https://t.co/o3RCPMfYBW +06/15/2018,Sports_celeb,@CameronHanes,"Can’t wait for this.... First 200 get the new tropical punch flavored Keep Hammering BCAA. 👈👈👈 +For registration go… https://t.co/6Ch6ZohAc1" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/BkxMGjOThQ" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/nex0pavsyt" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/QrjoyrLnTD" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/vQrwUOvfhX" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/Up817TQH72" +05/23/2018,Sports_celeb,@CameronHanes,"In low light, average bears look huge. Such was the case with this decent bear. Despite his good head and nice hide… https://t.co/HoRXclWA9m" +05/17/2018,Sports_celeb,@CameronHanes,"And, to top it off, @maxthieriot also wore one of my Keep Hammering shirts for the “surprise his girl” crunch time… https://t.co/AH3anJWTuE" +05/17/2018,Sports_celeb,@CameronHanes,"@maxthieriot rockin’ one of my #nobodycaresworkharder shirts tonight on @sealteamcbs. So sweet! +Appreciate you brot… https://t.co/Fn2wHItyFB" +05/17/2018,Sports_celeb,@CameronHanes,Keep Hammering defined...with a shoutout to @jockowillink’s Good! @maxthieriot on @sealteamcbs and running is fun! https://t.co/93TYfsfROp +05/12/2018,Sports_celeb,@CameronHanes,"Man, it is incredible how many nice/positive comments I seen on the video I posted yesterday of me and… https://t.co/LCHN7gqNsJ" +05/09/2018,Sports_celeb,@CameronHanes,"#trainhuntprovidehonor +Repost from @powerfuljoerogan +@cameronrhanes beautifully breaks down why he trains so hard… https://t.co/zlSK20QOPh" +05/09/2018,Sports_celeb,@CameronHanes,"Thank you God for one more summit! 🙌 +Who hit the trail today? https://t.co/P5RwcVHJNM" +05/03/2018,Sports_celeb,@CameronHanes,Life is good.... https://t.co/NZKPOVwC2X +05/02/2018,Sports_celeb,@CameronHanes,Thank you for inviting me to Lanai @bennyob301 and @yeti. I feel very grateful to hunt and pull meat out of country… https://t.co/bHCC9nF7WL +04/18/2018,Sports_celeb,@CameronHanes,"🙏❤️🙌 +Text HOME to 741741 from anywhere in the United States, anytime, about any type of crisis. + +When you’ve reache… https://t.co/bPguBTyiFj" +04/12/2018,Sports_celeb,@CameronHanes,"Last elk season here at home we battled hot weather and smoke from burns in the not too far off distance, as the su… https://t.co/0Ld6ilyaLT" +04/01/2018,Sports_celeb,@CameronHanes,"FYI... +💪💪💪💪 +#Repost @powerfuljoerogan with @get_repost +・・・ +Joe goes on epic @garyvee type rant about negative peopl… https://t.co/9BJznbLWMr" +04/01/2018,Sports_celeb,@CameronHanes,Running makes me 😃 and my ❤️ sing. 🙏 https://t.co/KoUeTdEUdl +04/01/2018,Sports_celeb,@CameronHanes,"Love these guys and their winning spirit!!! +💪💪💪 +#Repost @mikechandlermma with @get_repost +・・・ +#throwbackthursday -… https://t.co/k44GrHKxUn" +03/24/2018,Sports_celeb,@CameronHanes,Good stuff @willsmith and my last 5 text @nickthetrainerdude @joerogan @evashockey @outlaw_strength and… https://t.co/bJgbaWgcrU +03/24/2018,Sports_celeb,@CameronHanes,Droke's Antler Art thank you so much! I very much appreciate your thoughtfulness Craig Droke. Check them out at… https://t.co/tZQaFzzbh1 +03/18/2018,Sports_celeb,@CameronHanes,Thoughts from the trail....❤️ for all. I learn something from each person and their perspective. Thank you! https://t.co/6XmTz9DSnf +03/18/2018,Sports_celeb,@CameronHanes,"Good to be back from D.C...but figured I'd share a few of my favorite moments. You might notice a theme? 🏹 +Me... https://t.co/Aa7IrkCuZz" +03/18/2018,Sports_celeb,@CameronHanes,"Good to be back from D.C...but figured I'd share a few of my favorite moments. You might notice a theme? 🏹 +Not... https://t.co/FNGinlIS4r" +03/17/2018,Sports_celeb,@CameronHanes,"Not exactly. Just not the ""right"" conservation groups. And we've done a good job of explaining conservation to... https://t.co/3zxM0ssF5O" +03/15/2018,Sports_celeb,@CameronHanes,"The draw to the wilderness for me...I never saw anyone back there. +I didn't have the advantage of money to open... https://t.co/jaOQnS0yHb" +03/15/2018,Sports_celeb,@CameronHanes,To tell you the truth not that long ago I couldn't tell you who the previous Secretary of Interior was before... https://t.co/lXQWQGERto +03/15/2018,Sports_celeb,@CameronHanes,Brought up Bears Ears a few times just so I was clear on where it stood regarding mineral extraction? Like... https://t.co/eklyO5bczn +03/13/2018,Sports_celeb,@CameronHanes,#venicebeach is always fun! @isiahhilt killing it with #hops https://t.co/Q1VQ0N9Mt0 +03/08/2018,Sports_celeb,@CameronHanes,"Weak @nbcsnl. +How about you show respect to hard working, self-sufficient Americans instead of taking potshots... https://t.co/klV6ecT55g" +02/26/2018,Sports_celeb,@CameronHanes,"Check out this sweet bowhunting tribute @ialeman76 sent me this morning. Thanks brother, I love it. +Isaac and I... https://t.co/0FHfYzBYCU" +02/16/2018,Sports_celeb,@CameronHanes,@13pacificwaves hitting the mountain! I'm happy! https://t.co/VhuiiwRMtd +02/15/2018,Sports_celeb,@CameronHanes,"It's mandatory on Valentine's Day to pick your daughter up from school, listen to @taylorswift and hit a filter... https://t.co/cIfx7vLCYO" +02/11/2018,Sports_celeb,@CameronHanes,"I live for experiences like this. Thank you all!!! +#keephammering5k +#keephammering +@mtnops https://t.co/oSC3nrOKxQ" +02/10/2018,Sports_celeb,@CameronHanes,Baby ❤️at @huntexpo. See you guys at 4 in the @mtnops booth! 📸 @adam.greentree https://t.co/VnpAxKWpvx +02/08/2018,Sports_celeb,@CameronHanes,I don't care what happens the entire rest of the day...nothing will change how happy this makes me. Your success... https://t.co/G3JBLappFH +02/08/2018,Sports_celeb,@CameronHanes,I'm assuming @joerogan made a good shot just prior to this? Haha. Who watched us shoot Techno-Hunt live... https://t.co/UBmYYshneI +01/28/2018,Sports_celeb,@CameronHanes,"❤️️❤️️❤️️❤️️ 🏹🏹🏹🏹 +Who shot their bow today? https://t.co/CQv2wzT9oB" +01/26/2018,Sports_celeb,@CameronHanes,"PSA for being a steward of public land. This is your land, treat it that way. @mypubliclands @repryanzinke https://t.co/ER9zdQHEvC" +01/25/2018,Sports_celeb,@CameronHanes,@evashockey basically killing it. #keephammering @shotshow https://t.co/lfyKlYPspw +01/24/2018,Sports_celeb,@CameronHanes,Exactly! Wisconsin has the right mindset. What you've accomplished in the past means nothing. What you did... https://t.co/NCzby88Kbk +01/20/2018,Sports_celeb,@CameronHanes,"Two things... +Marathon today. +SHOT show 5k. +#trainhuntprovidehonor https://t.co/6sPWBmVuQC" +01/15/2018,Sports_celeb,@CameronHanes,I'm sooooo pumped for this!!! Who's joining me in the 2nd annual @cameronrhanes #KeepHammering5K in Salt Lake... https://t.co/aj8AkbKLHp +01/14/2018,Sports_celeb,@CameronHanes,"How do you not love @drewbrees? Good post @todddurkin #wintheday +• +Posted @withrepost • @todddurkin Win the DAY!!... https://t.co/dRCPYyOXGS" +01/14/2018,Sports_celeb,@CameronHanes,Thank you WOS! https://t.co/9UwgzHfX2b +01/14/2018,Sports_celeb,@CameronHanes,"My mom said I can come over and play @joerogan. +• +Posted @withrepost • @joerogan I got a Techno Hunt video... https://t.co/ZgLm3c5IEn" +01/13/2018,Sports_celeb,@CameronHanes,"That's what friends are for. Haha +Posted @withrepost • @outbackarcheryjoplin I had him !! @cameronrhanes... https://t.co/TVO3jE0GGA" +01/12/2018,Sports_celeb,@CameronHanes,Sweet video @brandedbills! The launch of the Cameron Hanes hunting series hats has been amazing!!! Thank you... https://t.co/lwJSJfX9cr +01/12/2018,Sports_celeb,@CameronHanes,"What an amazing day! +Posted @withrepost • @atatradeshow A little impromptu discussion on conversation at the... https://t.co/zbJdOU8sjv" +01/06/2018,Sports_celeb,@CameronHanes,New toys... https://t.co/qgSPl3KQJW +01/02/2018,Sports_celeb,@CameronHanes,Happy New Year! https://t.co/0NGt2Z73WJ +01/01/2018,Sports_celeb,@CameronHanes,Have a great New Year's Eve. What's the plan anyone getting in a run at midnight to ring in the new year? https://t.co/r9rh4xJR46 +01/01/2018,Sports_celeb,@CameronHanes,"Whhooaa bow and arrows a little to hunty killy don't you think? +• +• +Ixna on the #dreamcatcher •Haha +• +Posted... https://t.co/fNTEcYekFL" +12/28/2017,Sports_celeb,@CameronHanes,"Meanwhile to bookend (see previous post) the relatively quick and painless death of elk in the wild by a hunter,... https://t.co/WEDmq9K81k" +12/28/2017,Sports_celeb,@CameronHanes,"This bull, aged at 11-years old, is the exact animal I'm after when bowhunting. Past his breeding prime (6-9... https://t.co/ah2ymbSKgc" +12/24/2017,Sports_celeb,@CameronHanes,The Keep Hammering 5K in Salt Lake City. Easily one of my best memories from this year. Thank you all so much!!!... https://t.co/vzWmJlmraV +12/19/2017,Sports_celeb,@CameronHanes,I have a lot to be thankful for but near the top of that list is having the ability and opportunity to be a... https://t.co/dezOA3FPQq +12/19/2017,Sports_celeb,@CameronHanes,"It's all fun and games until the 👑 shows up. There is nothing quite like Africa. +Video by @o.baa https://t.co/Oi76lCVhom" +12/19/2017,Sports_celeb,@CameronHanes,Ended the night with a bunch of dips. 4 or 5 sets of 25 the last 5 slow then the last set of 30. Trying to build... https://t.co/jZay08dVM4 +12/15/2017,Sports_celeb,@CameronHanes,"Morning update recap... +• It's summer +• @brandedbills 🙏 +• #keephammering family 💪 +• @thebowrack tomorrow +Have a... https://t.co/SflDEmmGON" +12/14/2017,Sports_celeb,@CameronHanes,I'm here to help with fashion. https://t.co/CWsWfFrcTF +12/05/2017,Sports_celeb,@CameronHanes,"Good morning!!! +What are your thoughts regarding @realdonaldtrump's announcement yesterday in Utah? https://t.co/GBa4b2IMMY" +12/04/2017,Sports_celeb,@CameronHanes,How amazing is this? Talent like @joelpilch's is so special...turning a hunting image into art...awesome! Thank... https://t.co/X5tgnjpYC4 +12/04/2017,Sports_celeb,@CameronHanes,"What he said! +Sounds to me like the story of a successful hunt, which means meat on the ground. And, that's... https://t.co/0DHuf6PlXL" +12/02/2017,Sports_celeb,@CameronHanes,"Roy's Room +#legendsneverdie #riproyroth https://t.co/ODnm47Y7AW" +12/01/2017,Sports_celeb,@CameronHanes,#throwbackthursday Dall sheep with the legend Roy Roth. #roytough #riproyroth https://t.co/Z7H37tSpym +11/30/2017,Sports_celeb,@CameronHanes,"Jeffery Davidson from Vancouver, Washington you won yourself a Keep Hammering RX-1 compliments of @mtnops.... https://t.co/eVFuKzTdiy" +11/24/2017,Sports_celeb,@CameronHanes,Hmmm CNN suprised me... https://t.co/Jii70SB1kJ +11/24/2017,Sports_celeb,@CameronHanes,"Some non-hunters say they support hunting but not ""trophy hunting"". Just an FYI, those two aren't mutually... https://t.co/SJexiZzalT" +11/22/2017,Sports_celeb,@CameronHanes,Still waiting on the @realdonaldtrump decision regarding the ban...thought I'd share a few quick thoughts about my.… https://t.co/70OmVliv8G +11/22/2017,Sports_celeb,@CameronHanes,I am not one to argue with science... https://t.co/hqJgSh2KWL +11/21/2017,Sports_celeb,@CameronHanes,At this time I was irritated and confused with the meaning of @realdonaldtrump's tweet regarding trophy hunting... https://t.co/uTMlbtFDFb +11/21/2017,Sports_celeb,@CameronHanes,Biceps tonight. Going for max reps in a minute with bad form because we don't want to get too big. Haha. Just... https://t.co/66cMJeZWhx +11/21/2017,Sports_celeb,@CameronHanes,"Hopefully, it's just a poorly worded tweet? We will find out. https://t.co/nY7uvxjF5t" +11/20/2017,Sports_celeb,@CameronHanes,Thanks for the perspective. Nothing but ❤️. #keephammering https://t.co/RlID849NQi +11/19/2017,Sports_celeb,@CameronHanes,"Every year Brit. Who else gets all emotional when it comes to big bucks? +Courtesy of @pa_whitetail https://t.co/HMLRW3fFps" +11/18/2017,Sports_celeb,@CameronHanes,All seems right in m little world today. Nothing I'd rather be doing. 🙏 #sunrise #oregonblacktail https://t.co/OgeY1wRKRp +11/17/2017,Sports_celeb,@CameronHanes,What do normal people talk about or share? Maybe I need to expand my horizons? #lunchrun https://t.co/NQ88XzGG0V +11/14/2017,Sports_celeb,@CameronHanes,"Packing elk meat on a rainy Oregon evening...nothing I'd rather be doing. +Who's in agreement? +@evashockey... https://t.co/YiDLaw7kcV" +11/13/2017,Sports_celeb,@CameronHanes,Want to get started in archery/bowhunting? Take that first step by finding your local archery pro-shop or call... https://t.co/X0pWFIosRs +11/13/2017,Sports_celeb,@CameronHanes,Here's some good advice from one of my life coaches (he doesn't know I exist BTW haha who cares) @garyvee. Gary... https://t.co/cup4bvS07S +11/11/2017,Sports_celeb,@CameronHanes,"Did I paint a good picture? +Thank you all for inspiring me to give my very best everyday. #keephammering https://t.co/aQdiD8IY9N" +11/11/2017,Sports_celeb,@CameronHanes,"Agreed @whiskeyriff....just letting it loop. + +Posted @withrepost • @whiskeyriff 1990 George Strait @budlight... https://t.co/3hvUeGpqmX" +11/11/2017,Sports_celeb,@CameronHanes,🙌 so much to be thankful for. https://t.co/k61GIOncRB +11/11/2017,Sports_celeb,@CameronHanes,Thank you @manucarrasco33. You're amazing! https://t.co/rBrBbXnKf5 +11/10/2017,Sports_celeb,@CameronHanes,Thanks for the memories @underarmour! Classic #throwbackthursday https://t.co/39sBq7ENmS +11/09/2017,Sports_celeb,@CameronHanes,I've really been enjoying this @bornandraisedoutdoors YouTube series that they are currently updating with a new... https://t.co/XwvRI8I4ST +11/08/2017,Sports_celeb,@CameronHanes,You know the words... https://t.co/NiWBQ3p2oF +11/07/2017,Sports_celeb,@CameronHanes,"Thanks for the advice @joerogan. #keephammering +Watch for this new hunting film coming soon on @uahunt. It's a... https://t.co/vnL67VfK9l" +11/07/2017,Sports_celeb,@CameronHanes,"I surely don't know what the solution is, but I do know we are in this together. What are your thoughts? Cam https://t.co/IzGOEGbbsn" +11/07/2017,Sports_celeb,@CameronHanes,"I will never be able to explain how bowhunting seems muted at times for me since Roy died in 2015, but maybe... https://t.co/59wpR0jqCP" +11/06/2017,Sports_celeb,@CameronHanes,A rising tide lifts all boats. https://t.co/XUxnvsh70z +11/04/2017,Sports_celeb,@CameronHanes,Thoughts... https://t.co/42GToWIgcy +11/03/2017,Sports_celeb,@CameronHanes,You know you're a bowhunter when your regular clothes are pretty much full camo. But I digress. Shooting the new... https://t.co/5P4IMLyuNs +11/03/2017,Sports_celeb,@CameronHanes,Come bowhunting with us!!! https://t.co/tzdVPjwm7z +11/03/2017,Sports_celeb,@CameronHanes,Send it! https://t.co/cguF9yEvv8 +11/03/2017,Sports_celeb,@CameronHanes,In honor of our @uahunt take over I see @adam.greentree posted a throwback video of him hating on my full set of... https://t.co/epZi3Wn6Qs +11/03/2017,Sports_celeb,@CameronHanes,Chest circuit with @colbycovmma and his dad...it's a fun one! We did 4 rounds of this (20-30 reps of everything)... https://t.co/XilPs7zZVZ +11/02/2017,Sports_celeb,@CameronHanes,https://t.co/FnEO8A7BcA +11/02/2017,Sports_celeb,@CameronHanes,Where you are today is simply a starting point...something to build on. #keephammering https://t.co/IJYVpoKcM3 +11/02/2017,Sports_celeb,@CameronHanes,"Friday!!!! Posted @withrepost • @uahunt ""We're going to have to do 110% right, and the buck 10% wrong."" ​Here's... https://t.co/IZVJssE55J" +11/02/2017,Sports_celeb,@CameronHanes,"#ufc217 fight predictions with @colbycovmma... +GSP vs @mikebisping✅ + +@gamebredfighter✅ vs @wonderboymma... https://t.co/xBYQ55tSLD" +11/01/2017,Sports_celeb,@CameronHanes,I prefer dirt over asphalt/concrete but any run is a good run. Who's gonna hammer out some miles today! https://t.co/yyTvTNn6Hn +10/31/2017,Sports_celeb,@CameronHanes,"""We can die now."" +Not really because if I'd died after killing this buffalo I would have missed this past elk... https://t.co/oNiTiI4DEG" +10/31/2017,Sports_celeb,@CameronHanes,I live for moments like this...passing on the passion! Alex and people like Alex inspire to give my best... https://t.co/Y4EZ5FMJjZ +10/31/2017,Sports_celeb,@CameronHanes,"Granted I'm weak, but generally not as weak as I look here. Last set of a long workout and failure is always the... https://t.co/IsNXeHlvQr" +10/30/2017,Sports_celeb,@CameronHanes,Mindset https://t.co/347foAecLU +10/28/2017,Sports_celeb,@CameronHanes,Courtney Dauwalter Sets the Bar at Moab 200- 238 miles in 57 HOURS !!! | Trail Runner Nation https://t.co/KuyDUCf7xY +10/27/2017,Sports_celeb,@CameronHanes,"Ship it! +@hoytbowhunting is so backed up with Keep Hammering bow orders they said I needed to come help get... https://t.co/7z4gr2iupS" +10/25/2017,Sports_celeb,@CameronHanes,Thanks Rated Red https://t.co/YRkmmKEQTU +10/24/2017,Sports_celeb,@CameronHanes,What a day! First day and 1st time shooting the new Keep Hammering signature @hoytbowhunting at 100 yards. Such a... https://t.co/mttRt3pVGr +10/21/2017,Sports_celeb,@CameronHanes,"And better than me finishing the #moab240 was watching my younger brother, @tspike2, get his hard-earned finish.... https://t.co/tiPex5sYRi" +10/21/2017,Sports_celeb,@CameronHanes,"My finish of the #moab240...238.3 miles, 79 hours 19 minutes, 13th place of 140 starters (98 finishers). Such an... https://t.co/KHQDGFWOWC" +10/20/2017,Sports_celeb,@CameronHanes,"Made it to mile 166 by pushing hard thru the night. Now it's time for a big climb...over 5,000 vertical feet to... https://t.co/DVu2ZXccPC" +10/20/2017,Sports_celeb,@CameronHanes,135 miles down...it's cold! Headed to the 166 aid station. @destinationtrailraces @uaoutdoor 📸 @sub7studios https://t.co/BCXtDe6U9i +10/20/2017,Sports_celeb,@CameronHanes,A big part of the challenge in long ultras is keeping your feet in tact. My feet actually are in really good... https://t.co/qJwgBLbrkw +10/20/2017,Sports_celeb,@CameronHanes,Big night planned here as the sun heads towards horizon. I want to get from 123 to mile 166 by 9:00 a.m. Gonna be... https://t.co/cIRNI0Emsk +10/20/2017,Sports_celeb,@CameronHanes,"Day 1...55 miles down in about 12 hours. We were happy with this effort, but just getting started at #moab240.... https://t.co/TMyW4lOA5v" +10/19/2017,Sports_celeb,@CameronHanes,Lets get this party started! #moab240 start line excitement and anxious energy which we rode to the first aid... https://t.co/xkfNfF9f2y +10/18/2017,Sports_celeb,@CameronHanes,#moab240 at the @destinationtrailraces start line. I'm so happy to share all the cool footage from this event... https://t.co/uMKVvhBrR5 +10/17/2017,Sports_celeb,@CameronHanes,"Great idea on the before/after! What a difference 3 days, 240 miles on foot and 2 hours of sleep makes. I need to... https://t.co/pnkoyjxLUb" +10/11/2017,Sports_celeb,@CameronHanes,"Aim small, miss small. https://t.co/1vg6MqjzHa" +10/10/2017,Sports_celeb,@CameronHanes,https://t.co/WX2ChVKs4Q +10/09/2017,Sports_celeb,@CameronHanes,"Great work Natalie! Love the shirt. 🔨🔨🔨💪💪 +#Reposting @natalieott with @instarepost_app -- Today's workout was... https://t.co/bIedG3SOxz" +10/08/2017,Sports_celeb,@CameronHanes,"At least to get me through those long 11 months until next September, I'll be eating well. #ieatelk #quartershanging https://t.co/FJ2DmvR8ps" +10/07/2017,Sports_celeb,@CameronHanes,"Curls to get ready a 240 mile footrace? Yep, because like @marksmellybell says, ""Strength is never a weakness.""... https://t.co/axyQMTyv5n" +10/05/2017,Sports_celeb,@CameronHanes,"Back up! +Still at it! +Thank you Jesus. +@jstlbby https://t.co/DIDbznagFI" +10/05/2017,Sports_celeb,@CameronHanes,"Who's cleaning this mess up? +#Reposting @realratedred with @instarepost_app -- Trick shots with Cam Hanes: Silly... https://t.co/JdMLRJQhMS" +10/04/2017,Sports_celeb,@CameronHanes,"#moab240 prep....nice and easy. Who else ran today? +@underarmour @lekiusa @trailrunnernation @destinationtrailraces https://t.co/bzgm4quwsq" +10/04/2017,Sports_celeb,@CameronHanes,"#moab240 prep....nice and easy. Who else ran today? +@underarmour @lekiusa @trailrunnernation @destinationtrailraces https://t.co/HwKBeSH9Ik" +10/03/2017,Sports_celeb,@CameronHanes,10 days..... https://t.co/pVCwY7z6GS +10/02/2017,Sports_celeb,@CameronHanes,Thanks for all the ❤️. You all inspire me give my very best everyday. #keephammering https://t.co/UXYhESKCiN +09/30/2017,Sports_celeb,@CameronHanes,Cameron Hanes Aims for 240 Miles | Trail Runner Nation https://t.co/aCKeY34ejW +09/29/2017,Sports_celeb,@CameronHanes,Bows and arrows! https://t.co/5JjslJqXhl +09/29/2017,Sports_celeb,@CameronHanes,"( turn sound up ☝️) I love losing. Good opening line 😊 +How about this custom music video made for me exclusively... https://t.co/6qQ8HqThIh" +09/26/2017,Sports_celeb,@CameronHanes,Good times! https://t.co/tnRvGj2maH +09/22/2017,Sports_celeb,@CameronHanes,More bugling bulls. Sound 👆. This 6x5 was a young bull looking for love. @uahunt https://t.co/22TnA275EU +09/21/2017,Sports_celeb,@CameronHanes,"Been out of service for awhile but I'm back!!! You know how I know it was a good day? +With @joerogan... https://t.co/xc7wRLbMmO" +09/13/2017,Sports_celeb,@CameronHanes,"Somehow I got a cold during hunting season, which is good! Makes hammering harder which will make it easier when... https://t.co/OWHzHCDf0I" +09/06/2017,Sports_celeb,@CameronHanes,"This young 6x6 came in to 10 yards, spooked then stopped at 46. He was fully convinced there was a cow there.... https://t.co/uwJ99TwuUQ" +09/06/2017,Sports_celeb,@CameronHanes,Killed fighting another bull or could be a lion kill too I guess? FYI: we saw two mountain lions this morning at... https://t.co/vukNrjYagN +09/05/2017,Sports_celeb,@CameronHanes,I like 29 yard shots... https://t.co/N8sllChnbN +09/04/2017,Sports_celeb,@CameronHanes,I'm convinced. I'm done with meat and buying a cow to ride to work. P.S. I've watched this 10x and it makes me... https://t.co/TC7W2yPcNr +09/01/2017,Sports_celeb,@CameronHanes,It's September and September means bugling bulls!!! His was four years ago but I remember it like yesterday. Full... https://t.co/X7GQ7kpjH9 +09/01/2017,Sports_celeb,@CameronHanes,"Way to #keephammering and make a difference my friend! +#Reposting @heavydsparks with @instarepost_app -- It's... https://t.co/zLyw3GvdY7" +09/01/2017,Sports_celeb,@CameronHanes,"Way to go brother! And, I'm loving that #keephammering trail run shirt! @mtnops +#Reposting @the.muscle with... https://t.co/7sxbJKW2DC" +08/31/2017,Sports_celeb,@CameronHanes,"Colorado countdown! +@hoytbowhunting @eastonarchery @spothoggarchery https://t.co/faVRuUg536" +08/30/2017,Sports_celeb,@CameronHanes,I posted a new video to Facebook https://t.co/vTFQich5fE +08/30/2017,Sports_celeb,@CameronHanes,Please help if you can. Cam https://t.co/xATWBcO504 +08/30/2017,Sports_celeb,@CameronHanes,Sometimes we go to the movies sometimes we cut off antlers. https://t.co/XedF3KqUqY +08/28/2017,Sports_celeb,@CameronHanes,After we got the bull broke down I went back to find my arrow. It passed thru the bull and was laying here on the... https://t.co/aDoGfnQWJy +08/28/2017,Sports_celeb,@CameronHanes,After we got the bull broke down I went back to find my arrow. It passed thru the bull and was laying here on the... https://t.co/aFu2GaFVQV +08/27/2017,Sports_celeb,@CameronHanes,Doesn't get any better! #ieatelk @uahunt @yeti https://t.co/VaxKTKPHg6 +08/22/2017,Sports_celeb,@CameronHanes,"Protect, serve and bowhunt....we are 4 days away from elk season here in Oregon. I'm trying to get leaner and... https://t.co/7HjlU8r16e" +08/20/2017,Sports_celeb,@CameronHanes,"When @realratedred says, ""Hey wanna come to SLC and make archery videos?"" I say, What time you need me there?... https://t.co/ot7kY03RVh" +08/20/2017,Sports_celeb,@CameronHanes,I was watching this video today on @ufcuncensored and was surprised to see myself in the background with... https://t.co/P8IlAmXzjq +08/19/2017,Sports_celeb,@CameronHanes,Psshhht it's just a Phantom. Haha what's the worst that can happen? @realratedred @eastonarchery #$240k https://t.co/dp27MTA7Kv +08/18/2017,Sports_celeb,@CameronHanes,"Some days you rule the run, some days the run rules you. One thing about it, the mountains, the elk and pretty... https://t.co/BMZiKh5wrd" +08/15/2017,Sports_celeb,@CameronHanes,Anyone else gets some reps in today? #liftrunshoot https://t.co/te1p2t6Cow +08/15/2017,Sports_celeb,@CameronHanes,Bosu Ball push-up sequence...5 sets super sets with tricep extensions. @outlaw_strength https://t.co/2eM0EdOoBW +08/10/2017,Sports_celeb,@CameronHanes,Lots of back/chest reps within a number of movements cumulating with this superset. Go until you land on your... https://t.co/8MSkq1PYv8 +08/09/2017,Sports_celeb,@CameronHanes,"Please know, I'm not an expert and I don't have the blueprint, all I know is what works for me. I don't know what... https://t.co/gtZyclWIdn" +08/05/2017,Sports_celeb,@CameronHanes,"Find your talent and pay your dues! +Note: 5 hours of sleep gives you one more hour to 🔨🔨🔨. Thanks for breaking it... https://t.co/xTdMic77v3" +08/02/2017,Sports_celeb,@CameronHanes,"Hope for the best, prepare for the worst. Wasn't sure if I should end the video with #keephammering #itsallmental... https://t.co/jE8LdbE5xb" +08/01/2017,Sports_celeb,@CameronHanes,"Thanks for the support @outlaw_strength and haha yep, maybe @therock? 500 reps tonight. What did you all lift today? https://t.co/VyjY8Ua1aY" +07/30/2017,Sports_celeb,@CameronHanes,"This has it all...Keep Hammering, the classic cut shirt and the creativity. @livingcountryinthecity is becoming... https://t.co/FMrkaseZCv" +07/28/2017,Sports_celeb,@CameronHanes,"Run ✅ +Shoot ✅ +Lift +With @hunter_j8 https://t.co/2XkXPrHX0u" +07/28/2017,Sports_celeb,@CameronHanes,"Run ✅ +Shoot +Lift +With @hunter_j8 https://t.co/Gu7rPlDoqA" +07/28/2017,Sports_celeb,@CameronHanes,Thanks to both of you!!!! Keep hammering! https://t.co/WBB9o58pLq +07/26/2017,Sports_celeb,@CameronHanes,I think we need to film an updated version...I'll need a few volunteers. 😊🎬🎯 @historic https://t.co/EwDNd5N0wo +07/26/2017,Sports_celeb,@CameronHanes,It was such an awesome night on the mountain! Hope you all had a great day and earned a chance to hammer.... https://t.co/dJieZTtOuz +07/26/2017,Sports_celeb,@CameronHanes,What hunt are you most looking forward to this year? Colorado elk is always near the top of my list! https://t.co/iGln0hR0Wi +07/26/2017,Sports_celeb,@CameronHanes,"This is especially true in today's social media world. Keep in mind, weak/insecure people criticize whereas... https://t.co/gl7nVqVNnX" +07/24/2017,Sports_celeb,@CameronHanes,Hunter found dead after 'suicide' following threats from activists https://t.co/BcptIPKprC +07/24/2017,Sports_celeb,@CameronHanes,"One of the hardest, but most important things to do when preparing for 100 or 200-mile races, is getting in your... https://t.co/PUgEkX2Tqw" +07/24/2017,Sports_celeb,@CameronHanes,"Mentally, yes yesterday had nothing to do with today but physically, I was a mess (calves/hamstrings) and at this... https://t.co/2v3Tor7oht" +07/23/2017,Sports_celeb,@CameronHanes,"Had plans of doing better today, but alas, it wasn't meant to be. This was my slowest 50K in years but I'm still... https://t.co/ItHRc7xl6O" +07/23/2017,Sports_celeb,@CameronHanes,"Best part of the day...meeting, visiting and taking photos with social media followers after the race. You all... https://t.co/MvOK1DFN7q" +07/23/2017,Sports_celeb,@CameronHanes,My other squad...bowhunting edition. Eric Park and Kevin Akers ready to hammer Bachelor this morning. #keephammering https://t.co/lxowYtkvuR +07/23/2017,Sports_celeb,@CameronHanes,Post @uamtnrunning 50K race photo with @uaoutdoor athletes @codyreeeed and @ywangruns who are both amazing... https://t.co/rCaaV4yaSn +07/23/2017,Sports_celeb,@CameronHanes,Thanks for the shoutout @uaoutdoor. In the chute at @uamtnrunning with @not.quite.lost and @theriverswild getting... https://t.co/YSJo3VOVGB +07/22/2017,Sports_celeb,@CameronHanes,New arrows coming compliments of @eastonarchery and @thebowrack. Speaking of The Bow Rack. One thing I noticed at... https://t.co/lfSRce2Jby +07/20/2017,Sports_celeb,@CameronHanes,Now this is the definition of Keep Hammering! Great job guys. Thanks so much for reppin' my Keep Hammering shirt!... https://t.co/Jt5WelJUjv +07/20/2017,Sports_celeb,@CameronHanes,"Train! +Awesome evening on the mountain. #keephammering https://t.co/JV0MezW5kV" +07/20/2017,Sports_celeb,@CameronHanes,"Cool little video from @uahunt. Who's joining us at @totalarcherychallenge next year? +FYI my 140-yard shot from... https://t.co/tvD8wojqhc" +07/19/2017,Sports_celeb,@CameronHanes,No one will run with me at lunch so I have to make friends on the mountain. #lunchrun https://t.co/LcrbRcKLVS +07/19/2017,Sports_celeb,@CameronHanes,"Don't miss. +@eastonarchery loves the @totalarcherychallenge +#arroweater +📸 @jedlarkin11 https://t.co/VmlDPQCCgr" +07/19/2017,Sports_celeb,@CameronHanes,"Question: is it possible to post too many photos from the @totalarcherychallenge? + +Answer: no + +#sendit with... https://t.co/HxNoBsuAo8" +07/19/2017,Sports_celeb,@CameronHanes,"I made a long, precise bow shot on this big 6x6 Wyoming wilderness bull while hunting amongst the wolves and... https://t.co/I7I3VE4dYv" +07/19/2017,Sports_celeb,@CameronHanes,"I'd like a show of hands from everyone who loves @adam.greentree 🙋‍♂️ +#Reposting @adam.greentree with... https://t.co/gHEg8F6EoZ" +07/18/2017,Sports_celeb,@CameronHanes,@joerogan and @bennyob301 had my ears burning. Haha. Great podcasts guys! #bearseverywhere #ilovemy7to5 https://t.co/ipLHFoMp2o +07/17/2017,Sports_celeb,@CameronHanes,"My favorite Jordan from @mtnops? Don't make me pick haha. Just kidding...it's a tie! Love em' both. +#Reposting... https://t.co/TJwkeLuMu0" +07/17/2017,Sports_celeb,@CameronHanes,I love seeing IG stories like this! @scotteastwood #dialedin https://t.co/ZIWniW9b9o +07/17/2017,Sports_celeb,@CameronHanes,"It was an epic couple of days in SLC!!! Thank you all. I so very much appreciate all the handshakes, hugs, kind... https://t.co/9wqz2o1kmM" +07/17/2017,Sports_celeb,@CameronHanes,"Send it! +....... +@totalarcherychallenge 📸 @jedlarkin11 https://t.co/gKL6zMCKqJ" +07/16/2017,Sports_celeb,@CameronHanes,CrossFit superfreak @cspealler jumped right into it taking on the @totalarcherychallenge for his first ever 3-D... https://t.co/JiVYXyg3WR +07/16/2017,Sports_celeb,@CameronHanes,Pull em'! @totalarcherychallenge 📸 @jedlarkin11 https://t.co/xAm5BobuBs +07/01/2018,Sports_celeb,@shaunwhite,Jet skiing all day. ✌️ https://t.co/ZiTs87s9Pc +06/30/2018,Sports_celeb,@shaunwhite,RT @airandstyle: Didn't grab enough at the merch table this year? We got you covered :) https://t.co/XV0ZUXueaJ https://t.co/8IiImWmDL7 +06/30/2018,Sports_celeb,@shaunwhite,I’m so stoked to be nominated for Best Olympic Moment and Best Male Olympian at the @ESPYS! Make sure you vote for… https://t.co/1MVE1oex3a +06/30/2018,Sports_celeb,@shaunwhite,. @BigBoi where are we going!? #Seabiscuit #lost #jamaica https://t.co/jm54pytZYA +06/30/2018,Sports_celeb,@shaunwhite,Jamaica living 🇯🇲 https://t.co/yt0SHOgicC +06/29/2018,Sports_celeb,@shaunwhite,This is a SERIOUS throwback! #TBT with the Biebz at the #KCAs in 2010. #allofthehair https://t.co/DTEdnEa3Jy +06/28/2018,Sports_celeb,@shaunwhite,Flower daze. 🌼 https://t.co/NMA6NmAXaw +06/25/2018,Sports_celeb,@shaunwhite,There is no better feeling... https://t.co/bC5KTxjdQX +06/25/2018,Sports_celeb,@shaunwhite,Sunset vibes. 🌊 https://t.co/kk7dI3h3aB +06/23/2018,Sports_celeb,@shaunwhite,It’s a Venice kinda skate day. ☀️ https://t.co/pFEltnxuSz +06/23/2018,Sports_celeb,@shaunwhite,Happy #TakeYourDogtoWorkDay from me and Leroy! #bringyourdogtoworkday https://t.co/QrTOAdil6Q +06/23/2018,Sports_celeb,@shaunwhite,🏄🏄 https://t.co/Hbr6XSaXgN +06/21/2018,Sports_celeb,@shaunwhite,Happy #GoSkateboardingDay! Where are you skating at?! 🏄 https://t.co/xyFy4THQ0n +06/20/2018,Sports_celeb,@shaunwhite,So stoked to be nominated for Choice Male Athlete at this year’s @kcsawards! Head to https://t.co/VQIDnI6GqP to vot… https://t.co/oL75OjCHH8 +06/19/2018,Sports_celeb,@shaunwhite,"I’ve begun to make some @Spotify playlists. Here's my current skate mix! I’m on a disco kick... don’t ask. 😂 +https://t.co/pM6StACl7m" +06/17/2018,Sports_celeb,@shaunwhite,😎✌️ https://t.co/M1UY2UDET6 +06/17/2018,Sports_celeb,@shaunwhite,I’m so glad we’re not like those father son duos who get overly emotional...Thank you for always being there.… https://t.co/Uhmx9QUumX +06/17/2018,Sports_celeb,@shaunwhite,🐾 🌴 https://t.co/AnMdFagDxP +06/16/2018,Sports_celeb,@shaunwhite,Saturday feels. https://t.co/E0EwlzUVRL +06/15/2018,Sports_celeb,@shaunwhite,"RT @TeenChoiceFOX: Are you ready to stomp this competition, @shaunwhite fans? Retweet to show us what you've got! #ChoiceMaleAthlete #TeenC…" +06/15/2018,Sports_celeb,@shaunwhite,Caption this 🦈 https://t.co/eqJS8lAXSp +06/06/2018,Sports_celeb,@shaunwhite,Hitting the vert ramp again! Bringing back some great memories 😍 📷 Gabe L’Heureux https://t.co/HAy7Hj89Le +05/31/2018,Sports_celeb,@shaunwhite,@slowtideco Thanks for the towels! Dig 'em +05/29/2018,Sports_celeb,@shaunwhite,". @Buck and I recount my journey from my childhood to today, TONIGHT at 8PM on #UndeniableShow. Catch the action on… https://t.co/dILoVcRUsA" +05/25/2018,Sports_celeb,@shaunwhite,"man, it seems like yesterday that I was making those long car rides to the mountains to get my first taste of snowb… https://t.co/WHTg75t2H9" +05/24/2018,Sports_celeb,@shaunwhite,"Phoenix, Az https://t.co/ctuHTTNauL" +05/24/2018,Sports_celeb,@shaunwhite,"RT @Phantogram: Hi Friends, + +We're really excited to share new music with you today. https://t.co/H6RjPVRtxI + +We started work on “Someday”…" +05/24/2018,Sports_celeb,@shaunwhite,RT @joejonas: Some Australia fashion week newbies @shaunwhite https://t.co/E3C48biZkk +05/16/2018,Sports_celeb,@shaunwhite,"I'm bringing @airandstyle to Sydney, Australia!!! August 3rd, 4th & 5th. https://t.co/tSEus7TGfL" +05/16/2018,Sports_celeb,@shaunwhite,sooo fun https://t.co/LFzqjcCLoD +05/11/2018,Sports_celeb,@shaunwhite,🤯🤯 what a day at the ranch w/ these legends. Thanks so much @kellyslater for having me! https://t.co/3yjoEH9ROr +05/10/2018,Sports_celeb,@shaunwhite,#TBT https://t.co/u7WcGGyPtW +05/09/2018,Sports_celeb,@shaunwhite,"they really need a skateboard emoji .. +📷 @iamfoursided https://t.co/FVZ56EYUl3" +05/08/2018,Sports_celeb,@shaunwhite,#MetGala 2018 👑 @voguemagazine @EtroOfficial 📷: @BFA https://t.co/Qk2gpCONeg +05/01/2018,Sports_celeb,@shaunwhite,My Mom holding back the tears as I walk her down the aisle at my sisters wedding! Kari and Ryan I’m so happy for th… https://t.co/nKd0xIKjqD +04/19/2018,Sports_celeb,@shaunwhite,@GovHerbert Thank you so much for having me! +04/17/2018,Sports_celeb,@shaunwhite,Watch the dog... 😂 https://t.co/dtDvCoO4gi +04/10/2018,Sports_celeb,@shaunwhite,"Had a great time sharing my Olympic and life experiences @UTAustin last night. Thanks for having me!🤠🤟🏼 +📷… https://t.co/GGVjkzX0Lm" +04/06/2018,Sports_celeb,@shaunwhite,Venice park 🌴 📹 Jordan Lovelis https://t.co/gqSGviZcw7 +04/04/2018,Sports_celeb,@shaunwhite,Warming up some old tricks! 3rd day on the board yesterday and it’s all starting to come back🤫 https://t.co/VVax0I8NWX +03/26/2018,Sports_celeb,@shaunwhite,@ryandiem Nice one!! +03/26/2018,Sports_celeb,@shaunwhite,That moment I told @postmalone his song was playing when I won my 3rd Olympic gold medal🙌🏻 #rockstar #posty https://t.co/96llwisneI +03/23/2018,Sports_celeb,@shaunwhite,missing my festival whip 😂🚘shoutout to @lyft for sponsoring our moves at @airandstyle on and off the festival groun… https://t.co/0Wxzfh4uzN +03/23/2018,Sports_celeb,@shaunwhite,"Great interview with @zanelowe on beats1 radio! +And yes I’m still wearing the medal 😂🇺🇸!! https://t.co/Z02yz0RGHT" +03/22/2018,Sports_celeb,@shaunwhite,"It was great to meet some of the @PaulMitchellUS family, Nate and Ollie. Thank you for supporting @airandstyle! https://t.co/UqqTqwwOb5" +03/22/2018,Sports_celeb,@shaunwhite,RT @airandstyle: TODAY tune in to @NBCSN at 11am PST to relive both skate and snow competitions at #AirandStyle during our one hour special… +03/21/2018,Sports_celeb,@shaunwhite,"It’s nice to get time at home after such an amazing winter. Looking forward to next season, but until then i’m exci… https://t.co/wmDrrlCZd6" +03/16/2018,Sports_celeb,@shaunwhite,Thanks for hanging with me at @airandstyle @MaiaShibutani & @AlexShibutani ! So cool to meet you guys. https://t.co/WLWkCIuixx +03/12/2018,Sports_celeb,@shaunwhite,Backstage with legend @jonbonjovi for @iheartradio awards! Blaze of Glory🤘🏻 https://t.co/apfKJj8se4 +03/09/2018,Sports_celeb,@shaunwhite,Thanks for hanging at @airandstyle @RollingStone ! https://t.co/48wvU80uXw +03/07/2018,Sports_celeb,@shaunwhite,RT @airandstyle: Anyone still thinking about last weekend? We know we are. #AirAndStyle https://t.co/xko2LmCU8V +03/05/2018,Sports_celeb,@shaunwhite,this is awesome!! @DylanTateA https://t.co/dK03gW9v5B +03/04/2018,Sports_celeb,@shaunwhite,"RT @airandstyle: Day 2 - We're coming in BIG! Don't miss out on today's action-packed lineup with @gucci1017, @wearephoenix, @phantogram, @…" +02/17/2018,Sports_celeb,@shaunwhite,"These course designs are getting me so excited ! Can't wait to be back in LA for @airandstyle ! 😍✨ + +You guys comin… https://t.co/qqtD3iLewh" +02/15/2018,Sports_celeb,@shaunwhite,@MichaelPhelps You said it! Really enjoying this moment. Thanks for the love🙏🏼 +02/15/2018,Sports_celeb,@shaunwhite,RT @MichaelPhelps: Let’s go @shaunwhite !!! Way to go man!! Nothing like a good comeback right?? Redemption always feels great!! #usa #Olym… +02/14/2018,Sports_celeb,@shaunwhite,WE DID IT🇺🇸🥇 #OLYMPICS https://t.co/JQ4xhz4H9p +02/13/2018,Sports_celeb,@shaunwhite,Couldn’t be happier to qualify first today! Tomorrow is the moment I’ve been looking forward to for 4 years... Let’… https://t.co/1Ck2jZOZZF +02/13/2018,Sports_celeb,@shaunwhite,"RT @NBCOlympics: The night is young. Settle in and watch @shaunwhite drop in. #WinterOlympics #BestOfUS + +He's coming up live on @nbc and st…" +02/12/2018,Sports_celeb,@shaunwhite,"RT @NBCNews: Does Olympic snowboarder Shaun White have any fear? Here's what he told @GadiNBC in #PyeongChang. + +Watch more on ""Stay Tuned"":…" +02/12/2018,Sports_celeb,@shaunwhite,"RT @NBCOlympics: Tonight in primetime, @shaunwhite returns to halfpipe while @chloekimsnow goes for GOLD! #WinterOlympics https://t.co/85Dp…" +02/12/2018,Sports_celeb,@shaunwhite,Slope Semi Finals tomorrow! Let’s do this💪🏼 #Olympics https://t.co/vWqyG4mJpV +02/09/2018,Sports_celeb,@shaunwhite,"First day of practice ✔️ +Opening Ceremonies tonight! #Olympics https://t.co/uX8ATJz2bg" +02/09/2018,Sports_celeb,@shaunwhite,@KyRenee12 ⭐️💯 thank you Karter!! +02/07/2018,Sports_celeb,@shaunwhite,WOW... My fourth Olympics! #Honored 📷@TheTobyMiller https://t.co/2alPkcYrBp +02/06/2018,Sports_celeb,@shaunwhite,🤘🤘 https://t.co/e7hX7on870 +02/06/2018,Sports_celeb,@shaunwhite,En Route to PyeongChang🇰🇷 https://t.co/7lsO8QOG8n +02/04/2018,Sports_celeb,@shaunwhite,"South Korea, here we come! #PyeongChang2018 #Olympics https://t.co/PpjV5aC3se" +01/31/2018,Sports_celeb,@shaunwhite,Preparing for South Korea and looking back at how I got here... check out the new episode of #SnowPack on… https://t.co/KeFjwd0eBY +01/27/2018,Sports_celeb,@shaunwhite,Excited to announce my new mobile game @DownhillDash is available now on the @AppStore & @GooglePlay !!… https://t.co/06cw4RNRGi +01/27/2018,Sports_celeb,@shaunwhite,RT @RobbReport: #EXCLUSIVE: @ShaunWhite gets real about his impeccable sense of style. Find out how the pro snowboarder is hitting his fash… +01/25/2018,Sports_celeb,@shaunwhite,"Can't wait to hear ""Off Top"" from these videos live @lophiile 🙌" +01/25/2018,Sports_celeb,@shaunwhite,"See you Sunday, March 4 👀✨ @airandstyle @wearephoenix @gucci1017 @Griz @Phantogram @Tinashe @realwashedout… https://t.co/5F4YhNB87L" +01/25/2018,Sports_celeb,@shaunwhite,"See you Saturday, March 3 🕺⚡️ @airandstyle @Zedd @CASHMERECAT @cutcopy @BIGBABYDRAM @mura_masa_ @AlejandroChal… https://t.co/QFlYxT2ZYT" +01/25/2018,Sports_celeb,@shaunwhite,"RT @RachelAxon: In the four years since his fourth-place finish in Sochi, @shaunwhite has gained a balance and perspective that has rekindl…" +01/25/2018,Sports_celeb,@shaunwhite,🙌🙌🙌 https://t.co/PCeFuYSxou +01/25/2018,Sports_celeb,@shaunwhite,"RT @XGames: Our World of #XGames BEING series features @ShaunWhite! + +The show airs TODAY, Jan. 20 at 2 pm ET / 11 am PT on ABC. https://t.c…" +01/22/2018,Sports_celeb,@shaunwhite,"RT @olympicchannel: .@shaunwhite is back. 🏂 + +Discover where he's been and what's driven his inspiration. 💪 + +Only on #LegendsLiveOn ▶️ https…" +01/18/2018,Sports_celeb,@shaunwhite,After my fall in October I was eager to get back out and ride. Check out my trip to Austria in Ep. 3 of #SnowPack o… https://t.co/Oph67ea8z7 +01/17/2018,Sports_celeb,@shaunwhite,"I️ am feeling stronger, focused, and more determined than ever! @beatsbydre #AboveTheNoise #Olympics https://t.co/topfOZbatl" +01/15/2018,Sports_celeb,@shaunwhite,Catch me on #HenryDanger tonight at 7p/6c on @Nickelodeon! https://t.co/5pvBVC0UIe +01/15/2018,Sports_celeb,@shaunwhite,When u photo bomb the Japanese snowboard team .... https://t.co/Dc7hEPKGlH +01/14/2018,Sports_celeb,@shaunwhite,We’re going to Korea!!!! #Olympics #Thankful https://t.co/71SnrQKUh7 +01/13/2018,Sports_celeb,@shaunwhite,Finals going down tomorrow🤘🏼 https://t.co/ox9OQzgYtq +01/13/2018,Sports_celeb,@shaunwhite,Overwhelmed by the amount of support from last week’s episode of #SnowPack about my fall in October 💙 Ep. 2 is up o… https://t.co/Cz6zTYtypB +01/12/2018,Sports_celeb,@shaunwhite,"Qualified in 1st place today 💪🏼! +Stoked for finals on Saturday. Tune into NBC sports to watch." +01/11/2018,Sports_celeb,@shaunwhite,Had such a blast you guys! 😂 https://t.co/4qlN18mpuI +01/10/2018,Sports_celeb,@shaunwhite,Went shopping in Aspen..... 🤠 https://t.co/2f6BVm6RSM +01/10/2018,Sports_celeb,@shaunwhite,Heading into the 3rd Olympic qualifier this coming weekend! Wish me luck. #Olympics +01/09/2018,Sports_celeb,@shaunwhite,"RT @RachelAxon: While @shaunwhite works on qualifying for his fourth Olympics, he’s getting ready for an LA Air + Style that will include s…" +01/09/2018,Sports_celeb,@shaunwhite,Had a chat with @WebMD about my health and training leading up to the Olympics https://t.co/NApprHBC8p https://t.co/HGmu3YJTN3 +01/09/2018,Sports_celeb,@shaunwhite,"RT @billboarddance: .@Zedd, @gucci1017, @BIGBABYDRAM, @Phantogram & others top 2018 lineup for @shaunwhite's 2018 Air + Style Festival http…" +01/09/2018,Sports_celeb,@shaunwhite,🎉🙌 @gucci1017 https://t.co/xfLl1HBIQb +01/08/2018,Sports_celeb,@shaunwhite,!!!!!!! 😱 @nbcolympics https://t.co/MFZnppfaOH +01/08/2018,Sports_celeb,@shaunwhite,"Looking back at this Saturday in @BigBearMtResort , getting stoked for @airandstyle March 3 + 4 in LA!! https://t.co/D9L5v9Saxo" +01/07/2018,Sports_celeb,@shaunwhite,Had a blast at the @airandstyle Qualifier yesterday up at @BigBearMtResort . Thank you to everyone that made it pos… https://t.co/DHHzCJDXM0 +01/06/2018,Sports_celeb,@shaunwhite,First time I’ve attempted this trick since it put me in the hospital in New Zealand. Words can’t describe how good… https://t.co/SKz4TQHKeO +01/05/2018,Sports_celeb,@shaunwhite,RT @dangerjr: Flying @AlaskaAir this month? Check out my profile on @shaunwhite in Alaska Airlines Beyond magazine. #Olympics https://t.co/… +01/05/2018,Sports_celeb,@shaunwhite,Our @airandstyle qualifier comp is tomorrow at @BigBearMtResort 🎉Registration + Practice at 10am / Qualifiers at 12… https://t.co/2Xbrspj3Ql +01/05/2018,Sports_celeb,@shaunwhite,RT @LAmag: Get your snowboarding fix with @shaunwhite this weekend. https://t.co/gGRWMDTgRN +01/04/2018,Sports_celeb,@shaunwhite,"In Oct of 2017 I took a bad fall. It was tough, but it brought me into the new year feeling strong, focused, and de… https://t.co/41LX9hvGjD" +12/19/2017,Sports_celeb,@shaunwhite,Had a great time doing the Dew! Wish we had some better weather on quals day but still had a blast. 📷: @markclavin https://t.co/R7wtb8HWNK +12/14/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Our 2018 A+S LA lineup playlist is here. 🎉🎧https://t.co/lpQcbTIPMz #NowPlaying #AirandStyle #LosAngeles +12/11/2017,Sports_celeb,@shaunwhite,"RT @NBCOlympics: .@shaunwhite's final run from today. 😮😮😮🔥🔥🔥 + +Get ready! Sign up for NBC Olympics newsletters here: https://t.co/4LF2c6A2RL…" +12/11/2017,Sports_celeb,@shaunwhite,Getting ready for another @DewTour #dewtour https://t.co/YGjLTgoeS4 +12/09/2017,Sports_celeb,@shaunwhite,"First contest of the year went great! +Full video👉🏻 https://t.co/oYeDRH5Dri https://t.co/pvs3Z5bXgN" +12/09/2017,Sports_celeb,@shaunwhite,RT @usskiteam: The @Toyota U.S. Grand Prix snowboard halfpipe finals are going off TODAY at @CopperMtn. Watch 'em at 4pm ET on @nbc. 🇺🇸🇺🇸🇺🇸… +12/09/2017,Sports_celeb,@shaunwhite,First Olympic qualifier going down now! Tune in on https://t.co/IzqwdgYuHw 💪🏼 https://t.co/fXtZ00p4XM +12/08/2017,Sports_celeb,@shaunwhite,"RT @usskiteam: And the men's halfpipe qualifier results are unreal. Out of the 10 finals spots, SEVEN U.S. men qualified. 💪 + +@shaunwhite…" +12/07/2017,Sports_celeb,@shaunwhite,Getting ready for the first competition of the season - let’s do this! @CopperMtn https://t.co/jY4AnQ285n +12/05/2017,Sports_celeb,@shaunwhite,#BlessUp 🙏👆 https://t.co/wguyhAySkK https://t.co/t1ERioe2Bb +12/05/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Stoked for our first ever Streetstyle snowboard competition. The world's best urban shreds will turn up the volume on a sn… +12/04/2017,Sports_celeb,@shaunwhite,RT @airandstyle: NEW for 2018! Excited to announce that A+S will be serving up BOTH snowboarding AND skateboarding at the Los Angeles event… +12/01/2017,Sports_celeb,@shaunwhite,"Thanks for having me, @RobbReport !! https://t.co/vK9VVEWt8X" +11/30/2017,Sports_celeb,@shaunwhite,Powder Day In Austria! https://t.co/dAFEM2YA8u +11/28/2017,Sports_celeb,@shaunwhite,It’s here!!!!!! Tix: https://t.co/sFkvY548qv https://t.co/LcUzt9s40c +11/26/2017,Sports_celeb,@shaunwhite,Doing some fun things on instagram!https://t.co/oYeDRH5Dri https://t.co/YQexyYthTU +11/26/2017,Sports_celeb,@shaunwhite,Congrats to @markmcmorris and Anna Gasser for taking 1st place at @airandstyle Beijing !!! https://t.co/IFPaNkIwDi +11/25/2017,Sports_celeb,@shaunwhite,#thankful 🙌🏽 https://t.co/6ie0ObWu1w +11/16/2017,Sports_celeb,@shaunwhite,"#TBT What.a.view! +📸 Gabe L'Heureux https://t.co/tBfq99StxA" +11/15/2017,Sports_celeb,@shaunwhite,"Gliding thru the week... +📸 Gabe L'Heureux https://t.co/VDsOw2ka6W" +11/09/2017,Sports_celeb,@shaunwhite,#MammothsOpen stoked to get back up there @mammothmountain !! photo: Cameron Strand https://t.co/HqSER1WDIW +11/09/2017,Sports_celeb,@shaunwhite,#TBT to the @burtonsnowboard US Open 📷 Gabe L'Heureux https://t.co/KAwQQNGaZ2 +11/08/2017,Sports_celeb,@shaunwhite,Neighborhood watch.. 😂 #leroythegoodboy https://t.co/UkW9yJZZ5D https://t.co/5DhfJLOLbw +11/07/2017,Sports_celeb,@shaunwhite,our final episode of Turning Point is up on @go90 and it’s all about @airandstyle !! https://t.co/eB4mOvyOUk https://t.co/BiEs2F91al +11/03/2017,Sports_celeb,@shaunwhite,thank you to everyone for the support and well wishes ❤️ @TODAYshow @NBCOlympics @thelinehotel https://t.co/ewnspSgWqk +11/03/2017,Sports_celeb,@shaunwhite,Happy Friday! Tickets are now on sale for @airandstyle LA! #airandstyle #losangeles https://t.co/5rPIoPaPm4 +11/02/2017,Sports_celeb,@shaunwhite,RT @airandstyle: General tickets and Layaway plans go on sale tomorrow Nov. 3rd at 10AM PST (https://t.co/MuhmaRIFBb). Loyalty Presale Fam… +11/01/2017,Sports_celeb,@shaunwhite,Big things in 2018! Can't wait @airandstyle @wearephoenix @Zedd @griz @Phantogram #airandstyle #losangeles https://t.co/98WsxvF5c3 +11/01/2017,Sports_celeb,@shaunwhite,@TeamUSA 💙😏 +11/01/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: We are 100 days out from the #WinterOlympics! https://t.co/DMo6mf4k42 +11/01/2017,Sports_celeb,@shaunwhite,Wish i could've been there - see you guys soon! #100DaysOut https://t.co/ewnspSgWqk +11/01/2017,Sports_celeb,@shaunwhite,RT @airandstyle: We are VERY excited to announce we are taking this party to the southern hemisphere!! Air + Style Sydney will be taking pl… +11/01/2017,Sports_celeb,@shaunwhite,"So happy to announce that August 3-5, 2018 we'll be hosting Air + Style Sydney 🇦🇺! More info at https://t.co/pvYBmQNJFV #airandstylesydney" +10/31/2017,Sports_celeb,@shaunwhite,💙 https://t.co/HyRUBRYj6D +10/31/2017,Sports_celeb,@shaunwhite,"so proud of the last 3 years, can’t wait for you guys to see what we’ve got for @airandstyle 2018! https://t.co/5cU1WIxEZ3" +10/27/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Coming soon... https://t.co/ClMGGN5n9U +10/19/2017,Sports_celeb,@shaunwhite,#tbt air + style LA 2017 😍 https://t.co/b9xxDOczQm +10/19/2017,Sports_celeb,@shaunwhite,👀 new episode of Turning Point up on @go90 https://t.co/kbdllA7g3Q +10/16/2017,Sports_celeb,@shaunwhite,that was some coooooold water 💦❄️ https://t.co/dxeTsQBDhk +10/11/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: Catch “Legends Live On” featuring @shaunwhite on @olympicchannel: Home of Team USA at 5pm ET. https://t.co/wIFNKYzvAV +10/10/2017,Sports_celeb,@shaunwhite,Been working on some fun stuff... 😏 https://t.co/4ILfOTV8Ix +10/10/2017,Sports_celeb,@shaunwhite,back in new zealand 🌲🕴🏻🌲 https://t.co/gGNlhRcHc1 +10/06/2017,Sports_celeb,@shaunwhite,thanks for hangin' today @MensHealthMag https://t.co/GtHjXJ4QL3 +10/04/2017,Sports_celeb,@shaunwhite,goooooooood times https://t.co/NIZKxzPw4u +10/02/2017,Sports_celeb,@shaunwhite,RT @CityOfLasVegas: How to help and find loved ones. Please share #PrayforLasVegas https://t.co/v0xaV3SAIm +10/02/2017,Sports_celeb,@shaunwhite,"RT @airandstyle: The goal of a music festival is to bring people from all backgrounds together in order to create a place of wonder, joy, a…" +09/26/2017,Sports_celeb,@shaunwhite,hey what's up hello 😎 https://t.co/PgyBxGEFW0 +09/22/2017,Sports_celeb,@shaunwhite,happy friday! #SharetheLaughter 😜 https://t.co/09avL2X2jy +09/22/2017,Sports_celeb,@shaunwhite,RT @airandstyle: There was nothing else like The @Berrics when it was formed in 2007... Catch this new episode of Turning Point on @go90 ht… +09/21/2017,Sports_celeb,@shaunwhite,👀 @airandstyle https://t.co/OFH9Joubyt +09/13/2017,Sports_celeb,@shaunwhite,woooo! #LA2028 https://t.co/tiAlgBURnI +09/11/2017,Sports_celeb,@shaunwhite,happy to be back in LA healing up! @thelinehotel https://t.co/ewIpdU5Lvh +09/09/2017,Sports_celeb,@shaunwhite,those affected by #HurricaneHarvey and #HurricaneIrma are in my thoughts. please stay strong and safe! ❤️🙏 +09/08/2017,Sports_celeb,@shaunwhite,RT @airandstyle: last week our staff joined @shaunwhite and @TreePeople_org for some volunteering. get outside this weekend and enjoy some… +09/05/2017,Sports_celeb,@shaunwhite,"Life's going to knock you down.. get up, learn from your mistakes, and you'll be better for it!… https://t.co/i9If6PyJcC" +09/05/2017,Sports_celeb,@shaunwhite,wanted to give a big THANK YOU for all the birthday wishes 🙂❤️ hope everyone had an awesome long weekend! +08/31/2017,Sports_celeb,@shaunwhite,big thanks to @TreePeople_org and @clifgreennotes for having the @airandstyle staff and me as volunteers today! got… https://t.co/w2C0VndyXD +08/29/2017,Sports_celeb,@shaunwhite,did a little 20 questions with @go90 at #OutsideLands this year... https://t.co/eDCzjwHK7M +08/28/2017,Sports_celeb,@shaunwhite,INSANE. 👏 @JaredLeto https://t.co/0DTegWHS1B +08/23/2017,Sports_celeb,@shaunwhite,😱🙌🤟 https://t.co/BdvmVmnxZH +08/22/2017,Sports_celeb,@shaunwhite,New episode of Turning Point today where we talk about my run at the 2012 Winter X-Games! Check it out on @go90… https://t.co/YI6Sz4NXV3 +08/21/2017,Sports_celeb,@shaunwhite,so sick ! https://t.co/fUrSbeHEVP +08/17/2017,Sports_celeb,@shaunwhite,🙌 good to see you back at it @markmcmorris https://t.co/4Z7dA92XW8 +08/16/2017,Sports_celeb,@shaunwhite,RT @HALFPOPS: Happy National Tell a Joke Day! Give us your best joke in the comments and we'll pick our favorites to get a free bag of Half… +08/16/2017,Sports_celeb,@shaunwhite,gotta love the 'bu https://t.co/NogB2cPyMv +08/10/2017,Sports_celeb,@shaunwhite,loved having you guys at @airandstyle 😂 Can't wait for episode 2 tonite #WWDD https://t.co/vFNvjE4p0N +08/08/2017,Sports_celeb,@shaunwhite,@Yourgirlken you too! 😎 +08/08/2017,Sports_celeb,@shaunwhite,😱😱😱 @NBCOlympics https://t.co/GrBlJdraP0 +08/07/2017,Sports_celeb,@shaunwhite,@ScrippsHealth thanks for having us and thank you Dr. Fronek for everything! +07/27/2017,Sports_celeb,@shaunwhite,thanks for hangin' @WSJLife 😎 https://t.co/LJoqIEAMmM +07/25/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: SOON. #winterolympics https://t.co/dxiC9GpfnG +07/20/2017,Sports_celeb,@shaunwhite,RT @airandstyle: We got some big plans… #AdventureInStyle #AirAndStyle https://t.co/wkb5C0SJ8g +07/18/2017,Sports_celeb,@shaunwhite,thank you so much @SInow for including me in the #Fashionable50 !! 🎉😎 https://t.co/7V16jXMKYi +07/15/2017,Sports_celeb,@shaunwhite,@burtonsnowboard ❤️❤️🏔️🏔️ +07/15/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: Olympic Channel: Home of Team USA is LIVE. Find Olympic Channel on your provider by going here: https://t.co/AzMVkDZcy0 ht… +07/14/2017,Sports_celeb,@shaunwhite,"RT @TeamUSA: Can’t get enough of watching Team USA athletes on and off the field of play? +Have we got a network for you! 😉 +➡️ https://t.co…" +07/13/2017,Sports_celeb,@shaunwhite,@simonpagenaud @IndyCar 🏎️🏎️ good to see you @simonpagenaud ! +07/10/2017,Sports_celeb,@shaunwhite,🙌🙌 https://t.co/XdPjbG00gR +06/29/2017,Sports_celeb,@shaunwhite,RT @EW: Breaking Big: Raucous Kentucky rockers Dan Luke & the Raid make good on their musical pedigree https://t.co/hxz4MkIn4R +06/10/2017,Sports_celeb,@shaunwhite,"RT @HALFPOPS: Unlike your brain by Friday afternoon, Halfpops are never fried. Here's to kicking off the weekend a little early! #TGIF http…" +06/03/2017,Sports_celeb,@shaunwhite,Bags https://t.co/3K4Oe6BK42 +06/02/2017,Sports_celeb,@shaunwhite,@LeeGWeinstein Awesome 🙌 +06/02/2017,Sports_celeb,@shaunwhite,VIEWS https://t.co/FARO4i7Fb6 +06/02/2017,Sports_celeb,@shaunwhite,ARCHIVES #tbt https://t.co/kgMzGcWAPD +06/01/2017,Sports_celeb,@shaunwhite,RT @airandstyle: 😍😍😍 @airandstyleibk https://t.co/GUGkc8VRDL +05/30/2017,Sports_celeb,@shaunwhite,Back at it with @TheTobyMiller @MammothMountain https://t.co/4PVFwgFmE9 +05/29/2017,Sports_celeb,@shaunwhite,@threatne 🙏 +05/29/2017,Sports_celeb,@shaunwhite,🇺🇸 Thank you to all who have served to protect our freedom... #MemorialDay https://t.co/cZQL6dC2My +05/28/2017,Sports_celeb,@shaunwhite,Chairlifts. @steveaoki and Jake Burton https://t.co/LPFRcDdTjs +05/27/2017,Sports_celeb,@shaunwhite,"RT @HALFPOPS: We’re busting into the weekend with a brand-new dance move. Ladies and gentlemen, meet the Black Truffle (& Sea Salt) Shuffle…" +05/25/2017,Sports_celeb,@shaunwhite,My Point of View #tbt https://t.co/bVlv8WuTn2 +05/25/2017,Sports_celeb,@shaunwhite,With Jake Burton @burtonsnowboard https://t.co/esNcdcN41b +05/23/2017,Sports_celeb,@shaunwhite,Heartbreaking. My prayers go out to the victims and their families. #manchester +05/23/2017,Sports_celeb,@shaunwhite,Damn! Fred Plocque-Santos... @yeahleyeah on IG https://t.co/9LBc5PylgU +05/23/2017,Sports_celeb,@shaunwhite,#Mondays https://t.co/i6yL7h6QDs +05/22/2017,Sports_celeb,@shaunwhite,Amazing night with @Phantogram in support of the @LynchFoundation https://t.co/1CbuVmG1K0 +05/21/2017,Sports_celeb,@shaunwhite,RT @airandstyle: .@marcuskleveland kicking off the tour right in Beijing https://t.co/wly8mM1Ctj +05/20/2017,Sports_celeb,@shaunwhite,Thanks @THRIVEmkt 🙌 https://t.co/5C29t9Gokj +05/20/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Top skate photographer @atibaphoto has an absolute obsession with all things music. Check it out now on @go90 https://t.co… +06/29/2018,Sports_celeb,@DjokerNole,@LaverCup 💪💪 +06/28/2018,Sports_celeb,@DjokerNole,Back to @Wimbledon business 🌱🎾 #wimbledon https://t.co/jVlMSbtgUZ +06/27/2018,Sports_celeb,@DjokerNole,@novakfoundation @JelenaRisticNDF @WebitCongress 👏👏👏 +06/26/2018,Sports_celeb,@DjokerNole,It was a humbling feeling to celebrate 800 with Stephen Farrow and everyone at @QueensTennis. A career milestone I… https://t.co/AjaKeP6j4A +06/24/2018,Sports_celeb,@DjokerNole,"@QueensTennis, it was a pleasure being back and congratulations to @cilic_marin. A tough loss for me today, but the… https://t.co/n8oLyZZART" +06/23/2018,Sports_celeb,@DjokerNole,800 and counting 🙏 https://t.co/m9XokbYbqd +06/21/2018,Sports_celeb,@DjokerNole,#WorldCup2018 fever got me like... https://t.co/FuUObTbHGe +06/20/2018,Sports_celeb,@DjokerNole,I forgot how much I missed the smell of freshly cut grass… 😉💪 #airborne #fevertreechampionships @QueensTennis https://t.co/TP1gR7ZtIC +06/20/2018,Sports_celeb,@DjokerNole,@QueensTennis @WeAreTennis 💪💪💪 +06/19/2018,Sports_celeb,@DjokerNole,"RT @ATPWorldTour: Did you know that the @novakfoundation supports a fellowship @Harvard? 🤔 + +One '18-'19 Djokovic Science & Innovation Fello…" +06/17/2018,Sports_celeb,@DjokerNole,RT @JelenaRisticNDF: Join my @novakfoundation birthday fundraiser and help us support the professional development of teachers in Serbia! E… +06/17/2018,Sports_celeb,@DjokerNole,https://t.co/k3lZof6sOT @JelenaRisticNDF +06/15/2018,Sports_celeb,@DjokerNole,"Back at Queens tournament, first time since 2010. Happy to be here. One of the most beautiful Centre courts in the… https://t.co/OBGodQbN8F" +06/12/2018,Sports_celeb,@DjokerNole,"Feels like a good time for grass season, let’s GOOO.. 🎾💪 #fevertreechampionships #queenstennis https://t.co/zZQnfn9MuA" +06/06/2018,Sports_celeb,@DjokerNole,"Congratulations to Marco on his strong performance. Thank you Paris, thank you @rolandgarros 🙏❤ https://t.co/LAVNSHzjN0" +06/01/2018,Sports_celeb,@DjokerNole,Post match celebration 😆 @daddy_yankee https://t.co/DQpWjMaZR5 +06/01/2018,Sports_celeb,@DjokerNole,"R4, see you Sunday 🤙 #RG18 https://t.co/C6VYtJO4FS" +06/01/2018,Sports_celeb,@DjokerNole,Running with #RG18 ball boys and girls before the stadium opened today. Very special tradition in my heart 😄🏃‍♀️🏃‍♂️ https://t.co/cz3lldVIKy +05/31/2018,Sports_celeb,@DjokerNole,Celebrating 85th Anniversary of @LACOSTE 🐊 #TeamLacoste #Lacoste85th https://t.co/0RXzHCA6H4 +05/30/2018,Sports_celeb,@DjokerNole,@rolandgarros Let’s gooooo 💪 +05/29/2018,Sports_celeb,@DjokerNole,My real job. On rainy days. Shout out to all the grounds people who are working hard to make sure we have the best… https://t.co/vB7UI2bQ0r +05/27/2018,Sports_celeb,@DjokerNole,The world on your wrist. #SeikoAstron #SeikoFam @seikowatches https://t.co/hG3Viumk2F +05/26/2018,Sports_celeb,@DjokerNole,"Future champion!! Welcome back to your strong and fearless mom, @serenawilliams 💪👏👊 https://t.co/8FgygpwAWE" +05/26/2018,Sports_celeb,@DjokerNole,#Rafole or #Nolafa? Haha @RafaelNadal https://t.co/WPYHd5uyjz +05/26/2018,Sports_celeb,@DjokerNole,Serbian fans in Paris. Idemooo 🇷🇸 https://t.co/5Foykbr5nI +05/26/2018,Sports_celeb,@DjokerNole,@rolandgarros I’m always watching 👀♻️ +05/26/2018,Sports_celeb,@DjokerNole,These kids were too good 😂😂😂 #RG18 https://t.co/14dXvZmTaz +05/26/2018,Sports_celeb,@DjokerNole,I have a passion for tennis and I want to pass this on to aspiring athletes all over the world. #IMoveMe… https://t.co/HFhsk9WXsa +05/26/2018,Sports_celeb,@DjokerNole,The #RolandGarros version of my #GELResolutionNovak is available now - providing ultimate stability on court.… https://t.co/Ubn56CnoIu +05/26/2018,Sports_celeb,@DjokerNole,See you there today 👍😁 #RG18 https://t.co/rrAmgDkGqj +05/26/2018,Sports_celeb,@DjokerNole,"@usopen @BasiaID 🙏🙌 So grateful for the well wishes - thank you, US Open!" +05/26/2018,Sports_celeb,@DjokerNole,"@Olympics @BasiaID @OKSrbije Great memories. Thank you, guys!" +05/26/2018,Sports_celeb,@DjokerNole,"@rolandgarros @BasiaID Merci, RG! There was a lot of gluten-free 🍰🤙" +05/26/2018,Sports_celeb,@DjokerNole,"@gugakuerten @BasiaID Thank you, Guga!!" +05/26/2018,Sports_celeb,@DjokerNole,"@LACOSTE Thank you, @LACOSTE! 🐊🐊🐊" +05/25/2018,Sports_celeb,@DjokerNole,👍👏🎉 @novakfoundation #BelieveinTheirDreams https://t.co/BEaprIfcTv +05/25/2018,Sports_celeb,@DjokerNole,We reached our $31k goal today! 🙌 I want to share my love and appreciation for everyone’s support and trust in the… https://t.co/PMOIihuG3p +05/25/2018,Sports_celeb,@DjokerNole,Live on @facebook! Come say hi 👍 +05/25/2018,Sports_celeb,@DjokerNole,The most rewarding part of my day.. #bestfriendswithnature #familytime #paris https://t.co/mgI2Eb48Gw +05/25/2018,Sports_celeb,@DjokerNole,Humble beginnings. #ASICSTennis #IMoveMe @ASICSTennis #RG18 https://t.co/mmrze8xu6q +05/24/2018,Sports_celeb,@DjokerNole,Radujem se što je knjiga od Karol dostupna u mojoj zemlji na srpskom jeziku 👍 https://t.co/YUGx6uYtst +05/24/2018,Sports_celeb,@DjokerNole,#TeamDjokovic practice 🤟 #RG18 @rolandgarros https://t.co/3iOsF0OZHX +05/23/2018,Sports_celeb,@DjokerNole,Beautiful day on Champs-Élysées with my HEAD family. Proud to continue working with Johan. Thanks to their team for… https://t.co/GVXLLlrgRo +05/22/2018,Sports_celeb,@DjokerNole,My birthday present to myself. Uphill sprints. @rolandgarros see you soon 💪 #RG18 #training #birthday #fun https://t.co/w3eAj5eWJI +05/22/2018,Sports_celeb,@DjokerNole,Today is the big 3-1! This year I’m dedicating my birthday to the @novakfoundation and #earlychildhood education. H… https://t.co/D46JTBOHyS +05/19/2018,Sports_celeb,@DjokerNole,"Roma, I‘ll keep coming back every year to this special place. Your energy will carry me to the next challenge. Than… https://t.co/0WfPo8ndqx" +05/19/2018,Sports_celeb,@DjokerNole,Plenty of progress and passion to take with me to RG. Thanks everyone for your continued support. See you back on c… https://t.co/rx1ZyUz3Hc +05/19/2018,Sports_celeb,@DjokerNole,This guy! Srdjan Novakovic was my opponent in my first match ever at Belgrade Tennis Club in 1995. So nice to recon… https://t.co/gnm1mRSdEP +05/18/2018,Sports_celeb,@DjokerNole,FORZAAA #semifinals #idemo #grazie #ibi18 @InteBNLdItalia https://t.co/YGw2jT1pzO +05/18/2018,Sports_celeb,@DjokerNole,"RT @head_tennis: Grande @DjokerNole 💪 semis, here we come! #ibi18 https://t.co/HcMd9n5Jwr" +05/18/2018,Sports_celeb,@DjokerNole,🏃‍♂️ https://t.co/FjmjFTYYlE +05/18/2018,Sports_celeb,@DjokerNole,"RT @LACOSTE: Greatness awaits. +Every inch of the court under control to reach his first semi-final of 2018. +#TeamLacoste #BeautifulTennis…" +05/18/2018,Sports_celeb,@DjokerNole,#NoleFam!!!! Incredibili! Grazie a tutti 🙏😆💪#ibi18 @InteBNLdItalia https://t.co/AQLlKPKF69 +05/17/2018,Sports_celeb,@DjokerNole,#KidsDay in Rome was 🔥... https://t.co/0td7NxmJfm +05/16/2018,Sports_celeb,@DjokerNole,❤️❤️❤️ https://t.co/9fAh7gSCe9 +05/16/2018,Sports_celeb,@DjokerNole,"💪💪 Roma, ti amo ❤️ #ibi18 https://t.co/hxurGaUD0h" +05/16/2018,Sports_celeb,@DjokerNole,Thank you for the continued love and support #NoleFam. So grateful to play on clay here at @internazionalibnlditali… https://t.co/DOVHf7pUEi +05/11/2018,Sports_celeb,@DjokerNole,Game face 🇮🇹🏋️‍♂️ #ibi18 @InteBNLdItalia https://t.co/KXbmbnkJoE +05/11/2018,Sports_celeb,@DjokerNole,Back home making new friends 😆👍👍 #NoleFam https://t.co/dbNkhKbSID +05/09/2018,Sports_celeb,@DjokerNole,@ASICSTennis @MutuaMadridOpen @GettySport Let’s go! +05/09/2018,Sports_celeb,@DjokerNole,My friends that make it all happen! Thanks for letting me get a pic 😁✌️@ATPWorldTour @MutuaMadridOpen #MMOPEN https://t.co/y4ZYeCss8f +05/08/2018,Sports_celeb,@DjokerNole,"You’re welcome, man! Thanks for the support 🤟 #NoleFam https://t.co/cf5bV7AiMN" +05/08/2018,Sports_celeb,@DjokerNole,@fabsantoro72 @TheRealPatCash @ATPWorldTour Haha challenge accepted bro! +05/08/2018,Sports_celeb,@DjokerNole,@MilosTeodosic4 #Teo4 stižem. Da ponesem reket? 😂 za one palačinke zbog kojih smo svi počeli da se bavimo sportom! 😃👌 +05/08/2018,Sports_celeb,@DjokerNole,".@MilosTeodosic4, @LeaderOfHorde, @JokicNikola15 what do you guys think? #TeamDjokovic is ready for some street bas… https://t.co/Os7ZITHH5z" +05/07/2018,Sports_celeb,@DjokerNole,💪💪 #MMOPEN https://t.co/ycIYASmyJU +05/07/2018,Sports_celeb,@DjokerNole,"Seguro es el más especial. Gracias, Manolo 🙏 https://t.co/MiP7kr4Q0F" +05/05/2018,Sports_celeb,@DjokerNole,"Good to be here, @MutuaMadridOpen. Let’s play some tennis 🤙🎾 #MMOPEN https://t.co/qfxMqSkliq" +05/05/2018,Sports_celeb,@DjokerNole,Sometimes you gotta use your feet 🤷‍♂️💃⚽️ #MMOPEN https://t.co/BvNfKO4tft +05/04/2018,Sports_celeb,@DjokerNole,Come on @andy_murray. We can’t let them speak about our matches as “a long time ago” 😂🤣🎥 May the Force be with you… https://t.co/cKgNuhE4pU +05/03/2018,Sports_celeb,@DjokerNole,A little time at home before Madrid 😁 #familyreunion https://t.co/s7QKY5I2kg +05/03/2018,Sports_celeb,@DjokerNole,Uphill biking 🚵‍♂️... https://t.co/abWLzUF4O0 +05/02/2018,Sports_celeb,@DjokerNole,Taking these down the line 🔝➖✅☄️ https://t.co/CRPrQ5I37z +05/01/2018,Sports_celeb,@DjokerNole,Stretch partner (yesterday) @MihailoTopic 👍 https://t.co/IIbZMqWDgb +04/29/2018,Sports_celeb,@DjokerNole,Today's training challenge with Marko was... https://t.co/wvvmWgS2u2 +04/27/2018,Sports_celeb,@DjokerNole,April u Beogradu. Lep uvek a najlepši na proleće. Zahvalan sam što provodim kvalitetno vreme sa braćom. / Spring ma… https://t.co/zj0bH92lwR +04/25/2018,Sports_celeb,@DjokerNole,Happy 5th anniversary #NoleFam 🙌❤️ Thank you for the unwavering support year round.. sending lots of love and well… https://t.co/7jzHjoMmbz +04/22/2018,Sports_celeb,@DjokerNole,#EarthDay reminds me that some of my most favorite memories are... https://t.co/ZW30lNzGC5 +04/21/2018,Sports_celeb,@DjokerNole,Today’s practice squad 👌☄️ #montecarlocountryclub #atp #bcnopenbs https://t.co/0JQEbsPycM +04/20/2018,Sports_celeb,@DjokerNole,🙋‍♂️🎾💪 It’s been a while Barcelona... see you soon! #bcnopenbs https://t.co/ha1enL8oiX +04/18/2018,Sports_celeb,@DjokerNole,Keeping the energy high and my mind in the game 💪🎾 We can do this #TeamDjokovic https://t.co/PwImacl5pc +04/16/2018,Sports_celeb,@DjokerNole,Feeling good 🙏💪 Thank you for the love #NoleFam https://t.co/BKdOt1Nxsn +04/15/2018,Sports_celeb,@DjokerNole,Great day yesterday at the #PrinceAlbertFoundation charity exhibition 👍🎾😎 Tomorrow it’s our turn to play #NoleFam.… https://t.co/Krmbu6uvbi +04/12/2018,Sports_celeb,@DjokerNole,"I wanted to share something simple I always try to remember. No matter how good you are at something, there is alwa… https://t.co/bPsk27dLrs" +04/09/2018,Sports_celeb,@DjokerNole,Tough business today 😂🏋‍♂ #whenthegoinggetstough #trainhard #mondaymotivation #ithappens https://t.co/QbFagaDaQg +04/08/2018,Sports_celeb,@DjokerNole,"Hristos Vaskrse, srećan Uskrs svima koji ga slave! Želim vam radost i toplinu familijarne atmosfere. Kada je cela p… https://t.co/hR8vnGjHxw" +04/07/2018,Sports_celeb,@DjokerNole,Back on clay! Let’s get dirty! 😂😜 https://t.co/nybinxIDzJ +04/06/2018,Sports_celeb,@DjokerNole,"Happy International Day of Sport, guys! 💪🤸‍♀️🎾 Don’t you think sport has the incredible power to change our 🌎? I’m… https://t.co/MGkqaSUWHn" +04/04/2018,Sports_celeb,@DjokerNole,https://t.co/Yxgw4Xky8m +04/01/2018,Sports_celeb,@DjokerNole,Happy Easter weekend everybody! Hope you are enjoying with your loved ones ❤ https://t.co/T4koq20xmm +03/22/2018,Sports_celeb,@DjokerNole,Happy to meet nice guys and great football players from Croatian National team. Srećno momci @HNS_CFF https://t.co/vXp7JQIwbg +03/20/2018,Sports_celeb,@DjokerNole,"Great seeing you today, my friend @FerVerdasco 🤙🏼 @MiamiOpen https://t.co/z1lYlg9C8S" +03/20/2018,Sports_celeb,@DjokerNole,The world should have more places like @MiChiMu. I took Stefan with me today and had a wonderful chance to read Pet… https://t.co/hd3IOBoiIh +03/18/2018,Sports_celeb,@DjokerNole,Miami! Good to be back 🎾👌 https://t.co/Bfz0cGpAy6 +03/11/2018,Sports_celeb,@DjokerNole,IDEMOOOOOO #BNPP018 #TeamDjokovic 👏 https://t.co/KfT2S1ez2Z +03/11/2018,Sports_celeb,@DjokerNole,Who else is ON FIRE this weekend? @D_Copperfield I know your trick and I have more up my sleeve. Coming to steal yo… https://t.co/iGmZ1R5AgX +03/11/2018,Sports_celeb,@DjokerNole,Your guy is BACK (and more flexible than ever). Tomorrow. Let’s get it 👊🎾 #NoleFam #TennisParadise #FullBloom https://t.co/wVDWueoZUH +03/08/2018,Sports_celeb,@DjokerNole,"Celebrating all of the wonderful women in my life today. Admiring their strength, persistance, passion, love, kindn… https://t.co/DuZi88ZoT2" +03/07/2018,Sports_celeb,@DjokerNole,What a humbling place to visit and recharge before practice ⛰☀️👌 #grandcanyon #indianwells https://t.co/RJtP1VQ7k4 +03/06/2018,Sports_celeb,@DjokerNole,Back in the office with @filipkrajinovic #TeamLacoste 🤙🐊🎾 https://t.co/MS9mKYfH3t +03/03/2018,Sports_celeb,@DjokerNole,Always nice talking to you @carole_bouchard. Glad I can make you laugh too 😂🎾 #djokeralways #livelaughlove https://t.co/8AtiGUKM71 +03/03/2018,Sports_celeb,@DjokerNole,Here you can support Carol’s work and read exclusive interview we did while I was stretching on the airport 🤣🤸‍♂🥁✈️ https://t.co/aUl6eLIATB +03/03/2018,Sports_celeb,@DjokerNole,Feels good to be outdoors in the sun and hitting the ball again. Day by day... #nevergiveup ☀️ https://t.co/ccIqyKTm8v +03/02/2018,Sports_celeb,@DjokerNole,"Vivaaaa Las Vegas, baby. Idemo🕺 https://t.co/QrGsHdHwTN" +03/01/2018,Sports_celeb,@DjokerNole,Making the most of every situation and space 😂✈️🚌 #stretching #travel https://t.co/cGVYdwGYXH +02/27/2018,Sports_celeb,@DjokerNole,Great to have a day on court with you guys! https://t.co/Fk65YNOl02 +02/27/2018,Sports_celeb,@DjokerNole,"WOW, snowed all day in #monaco yesterday ❄️😛#anythingispossible https://t.co/YgO7imT7I9" +02/17/2018,Sports_celeb,@DjokerNole,😂 @pierre_vaultier let’s make it happen. See you at RG! And congratulations on your Olympic medal(s)! https://t.co/m7HSoda6Vu +01/22/2018,Sports_celeb,@DjokerNole,That was an incredible performance #Chung! Keep up great work. You’ve got this! 👏 #AusOpen https://t.co/GjCwmnhXOd +01/22/2018,Sports_celeb,@DjokerNole,"At the end of the day, these are the moments that mean the most #DreamBig #AusOpen @Eurosport https://t.co/6QLy8uLdOi" +01/21/2018,Sports_celeb,@DjokerNole,And here’s my favorite part of my training session #DreamBig https://t.co/PMBt6I8zm9 +01/18/2018,Sports_celeb,@DjokerNole,Another hot day ☀️😵💦♨️. Good luck to everyone playing today! https://t.co/kxtlrPv5kF +01/18/2018,Sports_celeb,@DjokerNole,It's like he wrote... a hot day at the office. 😵 https://t.co/DH2S1wdq7h +01/17/2018,Sports_celeb,@DjokerNole,RT @ASICSTennis: Back with a bang! Novak Djokovic is up and running at the #AusOpen and looking sharp! Nice new shoes too 😉 #IMoveMe #AusOp… +01/16/2018,Sports_celeb,@DjokerNole,"Back after six months, it feels so great. And no better place to be than here in Australia 😁 #AusOpen (Photo credit… https://t.co/Q21zWZBwGd" +01/15/2018,Sports_celeb,@DjokerNole,Very happy to be back on the blue court and with the full support of a great coaching team. https://t.co/Vxio50sdAY +01/09/2018,Sports_celeb,@DjokerNole,Really looking forward to #TieBreakTens Melbourne Jan 10. Excited to try out this new fast paced format. It’s a gre… https://t.co/gWxPCrmtjZ +01/08/2018,Sports_celeb,@DjokerNole,RT @tiebreaktens: Just 4 days to go! We've got a few remaining tickets left. Don't miss out on the first #TBTens Melbourne. With players li… +01/07/2018,Sports_celeb,@DjokerNole,Finally back in the land down under. I feel ready! Idemo!! #AusOpen https://t.co/HFvpn3U5I1 +01/03/2018,Sports_celeb,@DjokerNole,An update here from my team: https://t.co/VJKakhY3bq +12/30/2017,Sports_celeb,@DjokerNole,Unfortunately the situation with the elbow has not changed for better since yesterday. I still feel the pain. There… https://t.co/FsbNV8Atez +12/29/2017,Sports_celeb,@DjokerNole,I am terribly disappointed that I am forced to withdraw from the Mubadala World Tennis Classic. Thank you all for y… https://t.co/nThfQalkft +12/25/2017,Sports_celeb,@DjokerNole,Merry Christmas 🤶 ❤️ 🎉😗 https://t.co/jUoPe7USS6 +12/24/2017,Sports_celeb,@DjokerNole,Great practice today with Thomas Fabbiano 👍👊😁 Idemoooo #NoleFam https://t.co/SsJcWKUHM9 +12/20/2017,Sports_celeb,@DjokerNole,Congratulations on your jersey retirement @kobebryant. One of my favorites. #Ko8e24 🏀 https://t.co/pxPp29GFlq +12/13/2017,Sports_celeb,@DjokerNole,A #czech sandwich 🥪 style practice with @tomasberdych and @stepec78.. 😂 https://t.co/5wktDFoXOm +12/07/2017,Sports_celeb,@DjokerNole,Can you beat the machine 🤖? We killed it playing this game meant for enhancing eye-hand coordination. #Zverev https://t.co/VhlQivXhkJ +12/02/2017,Sports_celeb,@DjokerNole,"Lots to be done, but we embrace it with lots of excitement 💪👌. Practice today with @andreagassi and @stepec78 https://t.co/skcyuZKXxT" +11/30/2017,Sports_celeb,@DjokerNole,We have a new official member of the #TeamDjokovic guys. #NoleFam please welcome Radek Stepanek to our team 👏 https://t.co/jQR46FQyvV +11/30/2017,Sports_celeb,@DjokerNole,Who wants to Instagram live 🤨? Join me there in 30 min everyone ☺️ +11/20/2017,Sports_celeb,@DjokerNole,"Our children. +Our future. +This #WorldChildrensDay, my @novakfoundation and I are joining @UNICEF to make children’s… https://t.co/kE8PEB6hoX" +11/20/2017,Sports_celeb,@DjokerNole,"For us, kids mean HOPE, a promise for a better tomorrow! We celebrate our children not just today, but #everyday… https://t.co/u8ktDfF1PK" +11/10/2017,Sports_celeb,@DjokerNole,Almost hit @jkcorden’s head! 😬 Here’s me doing 🎾 target practice on the #latelateshow https://t.co/vAPKeJNDK7 +11/08/2017,Sports_celeb,@DjokerNole,On the @latelateshow with @jkcorden tonight! Turn on your tv 📺 for some funny moments with these guys. 😆… https://t.co/0YQ15YvJLq +11/08/2017,Sports_celeb,@DjokerNole,RT @ScottiePippen: Ran into a tennis GOAT and a favorite of mine at lunch yesterday @DjokerNole https://t.co/voiAHPFjL2 +10/29/2017,Sports_celeb,@DjokerNole,Stopped by to say hello to the amazing @RolexPMasters crew! 👏🏼😁 Great to see u guys!! https://t.co/2yAjqF1lYL +10/24/2017,Sports_celeb,@DjokerNole,"China 🇨🇳, forever one of my fave places to play. See this video from @TennisTV: https://t.co/QHPHNJdic4" +10/17/2017,Sports_celeb,@DjokerNole,"Girafficus, good job for coming in the jeans to the gym 👌😂👏👍 https://t.co/3mhQsI88Iw" +10/03/2017,Sports_celeb,@DjokerNole,The people of the Caribbean need our help - watch this emotional #helphopehurricanes video and support the cause 🙏 https://t.co/afSYQArqS4 +10/02/2017,Sports_celeb,@DjokerNole,"Wow, we have come far on our #MeetNoleFam tour! 🌎👏❤️ Now for the final interview, we return to China 🇨🇳: https://t.co/q4tAoiaoV4" +09/27/2017,Sports_celeb,@DjokerNole,Taking a break in Paris to check out the #LacosteSS18 🐊🐊🐊 runway collection! https://t.co/7UOifKJTTW +09/21/2017,Sports_celeb,@DjokerNole,"I wish I was with these amazing kids on #FriendshipGames2017 right now! They're having so much fun! :) Great work,… https://t.co/5VfLev4s3B" +09/20/2017,Sports_celeb,@DjokerNole,"A living legend, an inspiration and a #sport father to us all, Dušan Duda Ivković! Hvala Ti! #ThankYouDuda 👏🏆 https://t.co/S95kiAYsYh" +09/13/2017,Sports_celeb,@DjokerNole,Idemoooo momci!! Forza fratelli di Serbia e d' Italia #TimSrbija🇷🇸 #EuroBasket2017 https://t.co/60vGyDbXAM +09/09/2017,Sports_celeb,@DjokerNole,I love this baby crocodelle!! Thank you @LACOSTE for supporting me and celebrating this new life with us! 🤗🐊👨‍👩‍👧‍👦🎊 https://t.co/EVGQ6ULUtJ +09/09/2017,Sports_celeb,@DjokerNole,"@UNICEF Thank you! We all should be their champions and role models, believing in their beautiful dreams 🤗" +09/09/2017,Sports_celeb,@DjokerNole,@head_tennis Thank you #HEADfamily 🙏🎉 +09/09/2017,Sports_celeb,@DjokerNole,@usopen @JelenaRisticNDF Thank you #USOpen She is lovely ❤️🙏 +09/09/2017,Sports_celeb,@DjokerNole,Thank you for all your messages & love for Tara 🙏  We love you all ❤️👨‍👩‍👧‍👦😍 #NoleFam https://t.co/MGgdUy2vUk +09/04/2017,Sports_celeb,@DjokerNole,Idemoooooo 🙏👏🏻 #EuroBasket2017 https://t.co/JXE1ydYbLA +09/04/2017,Sports_celeb,@DjokerNole,"Thanks for being an inspiration and make me who I am today. Even in more difficult times, I reflect & realize how l… https://t.co/cvwc1LJcLL" +08/30/2017,Sports_celeb,@DjokerNole,It is my favorite part of the month again! Time to #MeetNoleFam and learn more about @NoleSwedenFan ❤ https://t.co/DX0Lm44WOS +08/29/2017,Sports_celeb,@DjokerNole,I know you can! Just put a smile on your face 😁⛳️👐 #NovakChallenge https://t.co/7WZdvI8aVj +08/25/2017,Sports_celeb,@DjokerNole,"Love is such a powerful force and emotion. Having Jelena in my life, & her love, has made me a better man ❤️ So, wh… https://t.co/OZKWHYAMyu" +08/23/2017,Sports_celeb,@DjokerNole,I am so excited!! My new website & mobile apps are live! 😁 👏 Hope you'll like it #NoleFam 🙏 https://t.co/mKz48IxRLM +08/23/2017,Sports_celeb,@DjokerNole,Love that I feel for my brother is unconditional! I will always feel inseparable to him 🙏🏻 ❤️ Who makes you my… https://t.co/dM3aNJ3WPL +07/31/2017,Sports_celeb,@DjokerNole,It's that time of the month again! Time to #MeetNoleFam 🙏🏼❤ Follow the link to meet Priyanka from @NovakIndiaFans https://t.co/vBBKYXlcrd +07/28/2017,Sports_celeb,@DjokerNole,@Wimbledon Thank you 🙏 +07/28/2017,Sports_celeb,@DjokerNole,Thank you. I'll be back soon! 🎾 https://t.co/KU99n9g08E +07/28/2017,Sports_celeb,@DjokerNole,@AustralianOpen Thank you and see you soon! +07/28/2017,Sports_celeb,@DjokerNole,@rolandgarros Merci beaucoup mes amis! +07/28/2017,Sports_celeb,@DjokerNole,@usopen Thank you <3 +07/28/2017,Sports_celeb,@DjokerNole,Crocodile never gives up 🐊 Thank you #grateful https://t.co/qL6yTr8gVz +07/26/2017,Sports_celeb,@DjokerNole,I took time to make a decision about my recovery. Sorry for keeping you in the dark these days. Read more here https://t.co/tCSw46TOL2 +07/26/2017,Sports_celeb,@DjokerNole,Thank you all for patiently waiting for the news about my recovery. Join me on FB live at around 14:15 CEST to hear more about it #NoleFam +07/07/2017,Sports_celeb,@DjokerNole,I feel for u and wish u fast recovery @BMATTEK So sorry that you are going through so much pain. Glad to see many people sending u love ❤ +07/05/2017,Sports_celeb,@DjokerNole,Happy to meet my friend @PKSubban1 and have him watch my match at Wimbledon 😃👌 https://t.co/3ZZESdKbfk +07/03/2017,Sports_celeb,@DjokerNole,Sometimes seeing is more effective... #gameanalysis #gettingready #wimbledon https://t.co/mOoaTtxKPx +06/28/2017,Sports_celeb,@DjokerNole,The time has come to #MeetNoleFam👏🏼 Join me on my virtual trip to 🇨🇳 and meet Alex Zeng who manages Fan Club China https://t.co/rQDHPhajuO +06/24/2017,Sports_celeb,@DjokerNole,"The first practice had to wait today due to rain ☔️. But you know what they say... No rain, no gain. Or was it some… https://t.co/kKEoGQMaif" +06/21/2017,Sports_celeb,@DjokerNole,See you in a few days Eastbourne! https://t.co/EZ92rGRyR7 +06/20/2017,Sports_celeb,@DjokerNole,Great #DayAtWork guys! Had a lot of fun and amazing practice today! How was your day #nolefam? 😤😁💪🏼 https://t.co/M0cz9oDcrr +06/08/2017,Sports_celeb,@DjokerNole,My Belgrade from the sky. Warms my heart and soul each time. https://t.co/BFpWBGAWJr +06/03/2017,Sports_celeb,@DjokerNole,Wow sounds amazing! Thank you #NoleFam I'd love to see your #NoleRG17 videos 👌🏼😃🎬 https://t.co/Ybd9v38HwM +05/30/2017,Sports_celeb,@DjokerNole,I'm so excited! 🙌The 2nd #MeetNoleFam interview is live. Thank you my #NoleFam from the Balkans. 💪🤛 You are amazing! https://t.co/6I53FL20Wa +05/26/2017,Sports_celeb,@DjokerNole,2 vs 1 and I and I am still standing tall. Anyone want's to try? 💪😜 https://t.co/pYz1mGFqYK +05/25/2017,Sports_celeb,@DjokerNole,"New gear, new coach, new start. How exciting! #NoleFam please welcome our new member @AndreAgassi 👏🙌👍 https://t.co/aE53GeEw98" +05/23/2017,Sports_celeb,@DjokerNole,Had so much fun with the @LACOSTE team. 🐊😀And you know me... I like to keep up the good spirit.🙌 #NewCroc2017 https://t.co/qOB6H45ai0 +05/22/2017,Sports_celeb,@DjokerNole,@UNICEF Thank you!! 🙏❤️ +05/22/2017,Sports_celeb,@DjokerNole,"Yes, madam, already! 😊🤗 Thank you so much! https://t.co/nD0xz7qzyV" +05/22/2017,Sports_celeb,@DjokerNole,Thank you!!! 🎉🎊 https://t.co/Z3m2hQ7kyM +05/22/2017,Sports_celeb,@DjokerNole,Thank you! https://t.co/1H3dMbRajU +05/22/2017,Sports_celeb,@DjokerNole,"Wow! This is amazing 🤗 Thank you for this, I am speechless 🙏 #NoleFam https://t.co/RXOGwBZADm" +05/22/2017,Sports_celeb,@DjokerNole,🙏 Thank you #NoleFam https://t.co/kBwDAw8y9a +05/22/2017,Sports_celeb,@DjokerNole,@Oliviahsiao0418 @JelenaRisticNDF @NovakFanClub Hehe love you back <3 Thank you! +05/22/2017,Sports_celeb,@DjokerNole,"Proud to be part of this revolutionary @LACOSTE story, that still lasts till this day. I'm proud to be the new Croc… https://t.co/Zr0o5uMe5v" +05/17/2017,Sports_celeb,@DjokerNole,#tb to @rolandgarros 2016. What a journey! I will never forget it. Thx for these series of videos🙏Tune in 🔛… https://t.co/cpURGFTU7L +05/15/2017,Sports_celeb,@DjokerNole,Look who stopped by to join me and the boys for a training session in Roma! @OfficialGoran 🎾 https://t.co/zypFNRJOoo +05/12/2017,Sports_celeb,@DjokerNole,Not an easy decision @keinishikori but health is priority. Wishing you fast recovery and hope to see you in Rome! +05/06/2017,Sports_celeb,@DjokerNole,Always good practice with Stan the man @stanwawrinka! 👏🏼💪🏻 Who looks more tired? 😂 https://t.co/8hq0eBshB0 +05/05/2017,Sports_celeb,@DjokerNole,It's great to be back! Hello Madrid 😃 #FirstPractice at @MutuaMadridOpen https://t.co/7wI1D3AYPQ +05/05/2017,Sports_celeb,@DjokerNole,I have news that I'd like to share with you. https://t.co/ffMD5LZi5V +05/04/2017,Sports_celeb,@DjokerNole,I'm so proud of the @novakfoundation's partnership with @HarvardCenter! Let's wish the 4 #DjokovicFellows all the l… https://t.co/g7wt7CmCiE +05/01/2017,Sports_celeb,@DjokerNole,Working hard on international workers' day 😂👌🏼 https://t.co/5a4mG0Hvmr +04/28/2017,Sports_celeb,@DjokerNole,We had so much fun on that day with @head_tennis! Hope you enjoy this “behind the scenes“ video #nolefam as much as… https://t.co/CezfLqhclE +04/27/2017,Sports_celeb,@DjokerNole,The 1st #MeetNoleFam interview is live! I'm sooo excited to unite @NovakFanClub for the 1st time in a photo 😃👌… https://t.co/bBF8Zs4Sf6 +04/22/2017,Sports_celeb,@DjokerNole,THANK YOU my #NoleFam! I want to share with the whole world how amazing you are!! #MeetNoleFam #NoleFamDay <3 https://t.co/5VeLTHuyLV +04/22/2017,Sports_celeb,@DjokerNole,@KK_Ainrye Thank you 🙏🏻 +04/19/2017,Sports_celeb,@DjokerNole,Best way to warm up for work 😂🚲 https://t.co/JkCDXStH1y +04/19/2017,Sports_celeb,@DjokerNole,Wanted some @EqvitaRes refreshments and got a triple surprise! 💚Join @novakfoundation 's #Sportin1Word campaign!… https://t.co/TnmLhrePag +06/30/2018,Sports_celeb,@steveaustinBSR,@Showtorious Careful. 17 is high. +06/29/2018,Sports_celeb,@steveaustinBSR,RT @OGkevingill: This is so great!! I got to do a double episode with @GregoryIron and it’s one of the best Episodes I’ve ever released.… +06/29/2018,Sports_celeb,@steveaustinBSR,"Great talkin’ w you!RT @GregoryIron: Just spent the afternoon recording a few hours of audio whoop-ass with ""Stone… https://t.co/tNNGkCwduU" +06/29/2018,Sports_celeb,@steveaustinBSR,RT @madhouseincfam: Celebrating #payday with #madhouseincfam style #wrestlingislife #wrestling #wwe #wwf #raw #wwenetwork #steveaustin @ste… +06/29/2018,Sports_celeb,@steveaustinBSR,@Mick_Bailey Cheers! +06/29/2018,Sports_celeb,@steveaustinBSR,"RT @Mick_Bailey: After years of trying to get at least 1 bottle of this beer into the UK, a client at ... https://t.co/TAxSgqMQHu" +06/29/2018,Sports_celeb,@steveaustinBSR,Good talking w you!RT @SBakerMD: Had a great time talking with Stone Cold @steveaustinBSR today- looks like he’s g… https://t.co/O7fBsfbGx2 +06/28/2018,Sports_celeb,@steveaustinBSR,"RT @LODRoadWarriors: Throwback! Oh hell yeah! 🍺 +@HeymanHustle @steveaustinBSR https://t.co/uOK705y4VU Good times." +06/28/2018,Sports_celeb,@steveaustinBSR,"@JaredLee264 @IAmJericho Yes, indeed. WM17 from Houston. I watched it back on @WWENetwork. One of the best all time… https://t.co/ke0apdBFJT" +06/28/2018,Sports_celeb,@steveaustinBSR,I’ll have a steak and a stunner on standby...RT @SBakerMD: Tomorrow I meet with @steveaustinbsr! Can I convince the… https://t.co/pRNO9msTz9 +06/27/2018,Sports_celeb,@steveaustinBSR,RT @FamousBouncers: #WhenWeWereBouncers alumni @steveaustinBSR and @IAmJericho talk all kinda awesome stuff on the latest @TalkIsJericho!!!… +06/27/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!!!RT @IAmJonathan30: NOW @TalkIsJericho, @steveaustinBSR talks rock n roll, getting puked on at… https://t.co/EQTyXGs0q1" +06/26/2018,Sports_celeb,@steveaustinBSR,@palstheman Glad you’re enjoying your ATV. I dig my Brute Force. +06/26/2018,Sports_celeb,@steveaustinBSR,"Good times, for sure. RT @BookerT5x: Haha! @steveaustinBSR" +06/25/2018,Sports_celeb,@steveaustinBSR,@SteveEJ That’s a badass sharp knife. Enjoy it! @Coldsteelknives +06/25/2018,Sports_celeb,@steveaustinBSR,"@bobgallop Catch you next time... +Swig of beer!" +06/25/2018,Sports_celeb,@steveaustinBSR,@Weellll_YouKnow Damn right. Cheers! +06/25/2018,Sports_celeb,@steveaustinBSR,@LesterBarberena 😂 +06/24/2018,Sports_celeb,@steveaustinBSR,RT @matthewv316: Always reppin’ @steveaustinBSR even if I get with with a Diamond Cutter from @RealDDP https://t.co/3fbIlNbil1 +06/23/2018,Sports_celeb,@steveaustinBSR,"And that’s the bottom line. RT @espn: On This Date: In 1996, Austin 3:16 was born. https://t.co/ZzYJiajPAG" +06/23/2018,Sports_celeb,@steveaustinBSR,"@Fgbrisco Sorry about that Gerry. Just trying to protect the business.. 😂 +Don’t forget the time in Kuwait where you… https://t.co/OS21x9V1t7" +06/23/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @KevinMichie: Finally got a chance to try @steveaustinBSR’s beer while in Los Angle-eez. The Broken Skull… https://t.co/yuJmbxEOSr +06/22/2018,Sports_celeb,@steveaustinBSR,@TheC00LRob Swig of beer! +06/22/2018,Sports_celeb,@steveaustinBSR,@Clurrrrrrrrr Cheers! +06/22/2018,Sports_celeb,@steveaustinBSR,@Richard83448755 At the time I only had one bad knee.. +06/21/2018,Sports_celeb,@steveaustinBSR,@JonnyCatalina Yes. Stay tuned. +06/21/2018,Sports_celeb,@steveaustinBSR,@TheTimBanks1 Hell Yeah! Cheers. +06/20/2018,Sports_celeb,@steveaustinBSR,"RT @pepperdoc111: @steveaustinBSR +Big Van Vader +giving +Stone Cold Steve Austin +1 gun salute +RIP +#Vader https://t.co/dZRTxJVofm" +06/20/2018,Sports_celeb,@steveaustinBSR,@MrJdubya1216 Oh Hell Yeah! +06/20/2018,Sports_celeb,@steveaustinBSR,@stnecldcollctr 👍👍 +06/20/2018,Sports_celeb,@steveaustinBSR,@missdiss_lexia And that’s the bottom line. +06/19/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: Nothing beats two guys enjoying a conversation about wrestling and enjoying some beer as with @mexwarrior on @steveausti… +06/17/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!!! #ChicagoRT @cooperdog31: @steveaustinBSR Ready for Money in the Bank Chicago with my brothers, got… https://t.co/KOvM4RVQvG" +06/16/2018,Sports_celeb,@steveaustinBSR,@Drew0531 Hell Yeah! +06/16/2018,Sports_celeb,@steveaustinBSR,@justgivverbud Oh Heck Yeah!! +06/16/2018,Sports_celeb,@steveaustinBSR,@MattWaters1995 Citizen dive watch. Spent about 200-250 bucks on it. Lotta money for the early 90’s. Good watch. +06/15/2018,Sports_celeb,@steveaustinBSR,@sardonic_wrath Oh Hell Yeah!!! +06/15/2018,Sports_celeb,@steveaustinBSR,@myermania We tried to make chicken salad out of chicken shit. We failed. +06/15/2018,Sports_celeb,@steveaustinBSR,@jasonettinger Very cool. +06/15/2018,Sports_celeb,@steveaustinBSR,"RT @WWENetwork: On this day 20 YEARS AGO, @steveaustinbsr & The #Undertaker battled @KaneWWE & @RealMickFoley inside HELL IN A CELL on #RAW…" +06/14/2018,Sports_celeb,@steveaustinBSR,"@Kmitch66394669 @KawasakiUSA +Nice setup. https://t.co/UxO8LV0ZBR" +06/13/2018,Sports_celeb,@steveaustinBSR,"@Puetzer1 @KawasakiUSA Got one, myself. The name fits. Awesome power. Good looking dog." +06/13/2018,Sports_celeb,@steveaustinBSR,Had an awesome time w the cool folks from @KawasakiUSA filming a commercial for the new MULE PRO-MX side by side.… https://t.co/JWbH83nhfr +06/13/2018,Sports_celeb,@steveaustinBSR,"RT @mayer1111: @steveaustinBSR I was listening to your podcast and I’d never heard of this guy so I paused and YouTubed. + +I’m now pissing…" +06/13/2018,Sports_celeb,@steveaustinBSR,"RT @sambanks2: The super hilarious @craiggasscomedy on the super masculine @steveaustinBSR’s show. 😂 + +Craig Gass has a great life story. If…" +06/13/2018,Sports_celeb,@steveaustinBSR,RT @crimsonmask49: @steveaustinBSR We don’t need to bring ink and paper into this... https://t.co/5J1aXQIq8p +06/13/2018,Sports_celeb,@steveaustinBSR,RT @BlueMeanieBWO: My day started getting my George Carlin box set in the mail. Then I get to hear @craiggasscomedy on the @steveaustinBSR… +06/12/2018,Sports_celeb,@steveaustinBSR,RT @KawasakiUSA: Introducing the all-new mid-size 2019 MULE PRO-MX to our latest generation of #KawasakiSTRONG fami… https://t.co/z71KG1SGTB +06/12/2018,Sports_celeb,@steveaustinBSR,RT @Maddaveinc: @steveaustinBSR Great #SteveAustinShow with @craiggasscomedy talking about his career in #standupcomedy #MitchHedberg #Geor… +06/12/2018,Sports_celeb,@steveaustinBSR,RT @TheHoldsworth: Traveled all the way from Toronto Canada to checkout @steveaustinBSR own Broken Scull IPA @ESBCBrews. This IPA kicks ass… +06/12/2018,Sports_celeb,@steveaustinBSR,"RT @TripleH: I see the celebration is underway...like @SteveAustinBSR says “hell yeah!!!” + +Enjoy your parade and congratulations! #ALLCAPS…" +06/12/2018,Sports_celeb,@steveaustinBSR,@justinwhite83 @DDROSE83 Cheers and congratulations. +06/12/2018,Sports_celeb,@steveaustinBSR,@omega_apex128 Been there. Done that. I hate it when that happens. +06/11/2018,Sports_celeb,@steveaustinBSR,@jimbojangles21 That’s a big ass tree! +06/10/2018,Sports_celeb,@steveaustinBSR,RT @WWFATTITUDE316: Probably my favorite @steveaustinBSR moment #AttitudeEra https://t.co/4afRmqKASA +06/09/2018,Sports_celeb,@steveaustinBSR,@TwinkieThinky @Coldsteelknives It is def a badass knife no matter what color you get. Enjoy it! +06/09/2018,Sports_celeb,@steveaustinBSR,"RT @DDPYoga: Do your DDPY and that's the bottom line because @SteveAustinBSR said so! Steve Austin just finished his first DDPY workout, he…" +06/08/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @TheHoldsworth: Traveled all the way from Toronto Canada to checkout @steveaustinBSR own Broken Scull IPA… https://t.co/ffxfbRFAev +06/08/2018,Sports_celeb,@steveaustinBSR,Oh Hell Yeah!!!RT @RealDDP: Last weekend me and Steve Austin did a workout that has been 16 years in the making. I'… https://t.co/AoXAfpd6zt +06/08/2018,Sports_celeb,@steveaustinBSR,@Jamie_iovine Looks like I’m doing another j.o.b... +06/08/2018,Sports_celeb,@steveaustinBSR,@cuse1 @Michigan_Dipper @iohc_ That’s the one. +06/07/2018,Sports_celeb,@steveaustinBSR,"RT @The_Rod: Incredible episode of ⁦@steveaustinBSR⁩ show with the man who forever changed my life, ⁦@RealDDP⁩ Great discussion about lots…" +06/07/2018,Sports_celeb,@steveaustinBSR,@fanboySTWW @BigStrongFast Damn that’s a lot of steaks. Let me know how it works for you. +06/06/2018,Sports_celeb,@steveaustinBSR,"RT @RealIvelisse: #WaybackWednesday +My 1st & only time in the bottom 3. A heartbreaking goodbye from @wwe #ToughEnough 5 +It was so DIFFICU…" +06/06/2018,Sports_celeb,@steveaustinBSR,"RT @jhagg719: Man, today’s @steveaustinBSR #steveaustinshow #podcast @PodcastOne is a MUST listen to with Chris bell. Very informative, rea…" +06/05/2018,Sports_celeb,@steveaustinBSR,@IvMathers Could have been.. +06/03/2018,Sports_celeb,@steveaustinBSR,"RT @WWENetwork: Today in 1997, @steveaustinbsr & @ShawnMichaels went toe-to-toe with The #LegionOfDoom on #RAW! https://t.co/7m6YSZ1VBo htt…" +06/02/2018,Sports_celeb,@steveaustinBSR,"AKA The Professor. PHD, etc etc. RT @bohnes: getting taught how to drink beer by Mr. 3:16. Stone Cold… https://t.co/a0F8lZu3j3" +06/01/2018,Sports_celeb,@steveaustinBSR,@FrankLevesque09 Thanks for the heads up. 👍 +05/31/2018,Sports_celeb,@steveaustinBSR,"RT @Coldsteelknives: It’s #NationalSmileDay... so have a knife and a smile, like @steveaustinBSR (or is that a smirk? 🤔) with his #coldstee…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @BroJBrody: WE’RE LIVE, BRO! I’m on today’s new #SteveAustinShow podcast! + +@steveaustinBSR & I cover my recent knee surgery, @WWEToughEn…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @AJKirsch: WE’RE LIVE, PAL! I’m on today’s new #SteveAustinShow podcast! + +@steveaustinBSR and I cover my recent surgery, @WWEToughEnough…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @BroJBrody: I just heard a little scuttlebutt that me-in-real-life (@AJKirsch) just talked with @steveaustinBSR for, like, 90min, and th…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @AJKirsch: What a blast to catch up with @steveaustinBSR. + +We covered my recent knee surgery, our time on @WWEToughEnough, my experience…" +05/28/2018,Sports_celeb,@steveaustinBSR,@JUSTOSLICE Enjoy! +05/28/2018,Sports_celeb,@steveaustinBSR,RT @BulletClubItal: #OnThisDay 22 years ago: #InYourHouse8 Beware of Dog 2: #SavioVega defeated @steveaustinBSR in a Caribbean Strap match… +05/28/2018,Sports_celeb,@steveaustinBSR,RT @LilianGarcia: Happy #MemorialDay! 15 years ago on @WWE #Raw I had the distinct pleasure of singing #AmericaTheBeautiful w @steveaustinB… +05/28/2018,Sports_celeb,@steveaustinBSR,@BrianWorldChamp LTZ Z71 +05/26/2018,Sports_celeb,@steveaustinBSR,@themadman316 Running my old John Deere now. +05/26/2018,Sports_celeb,@steveaustinBSR,"Have a great weekend! +#BSRmargaritatime +@Coldsteelknives +#workingman https://t.co/5BBVDaI7Bi" +05/25/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @Rfelt3: TGIF @steveaustinBSR much needed long weekend!! https://t.co/6uMB3IJC4R +05/25/2018,Sports_celeb,@steveaustinBSR,RT @RobertA54611889: @steveaustinBSR @BowlerScow33 Have a great weekend. https://t.co/pCJQ99YZo3 +05/25/2018,Sports_celeb,@steveaustinBSR,@iAmFlair519 Hell Yeah! +05/25/2018,Sports_celeb,@steveaustinBSR,@BowlerScow33 Hell Yeah! +05/25/2018,Sports_celeb,@steveaustinBSR,@Sixxstringthing Dummies is being very nice... +05/25/2018,Sports_celeb,@steveaustinBSR,@TroubleDVJ Mango?? +05/25/2018,Sports_celeb,@steveaustinBSR,@Jess615 Hell Yeah! @Coldsteelknives +05/24/2018,Sports_celeb,@steveaustinBSR,@DelmarHaase I went Milwaukee on drills. +05/22/2018,Sports_celeb,@steveaustinBSR,@wswehr81 $$ +05/22/2018,Sports_celeb,@steveaustinBSR,@CynicalCid79 Looks just like me. Awesome job! +05/20/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!RT @WWE: As attitudes change, sometimes the themes do as well... https://t.co/WzrS7YyEPY" +05/20/2018,Sports_celeb,@steveaustinBSR,@OneJeffEdwards Enjoy. Cheers! +05/19/2018,Sports_celeb,@steveaustinBSR,"@YahielO @SavioVega Savio was awesome. Great worker. Never blows up. #oldschool +#goodtimes" +05/19/2018,Sports_celeb,@steveaustinBSR,@DSMAaronRNO Thanks for the help. I’ll bring a list next time... +05/17/2018,Sports_celeb,@steveaustinBSR,@BenCrawford1992 Yes that is a real life picture. Dropped him on that stack of dimes he calls a neck.. +05/15/2018,Sports_celeb,@steveaustinBSR,"@stnecldcollctr Thanks, Christine." +05/15/2018,Sports_celeb,@steveaustinBSR,"@theMimicHawkins Its normally a lot more organized than that. I had just brought in all of those plates, etc. hadn’t had time to rack them." +05/15/2018,Sports_celeb,@steveaustinBSR,@Coombsie77 Cool dog. +05/14/2018,Sports_celeb,@steveaustinBSR,Shooting the breeze w @WWETheBigShow tomorrow. Got a question send it to questions@steveaustinshow.com. +05/14/2018,Sports_celeb,@steveaustinBSR,RT @RossMcApples: Stopped by @ESBCBrews on my honeymoon from the UK to finally get a taste of @steveaustinBSR 's broken skull IPA. Did not… +05/14/2018,Sports_celeb,@steveaustinBSR,@RossMcApples @ESBCBrews Cheers! +05/12/2018,Sports_celeb,@steveaustinBSR,@big_takes Cheers! +05/12/2018,Sports_celeb,@steveaustinBSR,"RT @thewadekeller: If you haven't yet, check out my #WWE #Backlash PPV analysis with @steveaustinBSR in the latest Steve Austin Show on @po…" +05/11/2018,Sports_celeb,@steveaustinBSR,RT @PWTorch: Check out today's new Steve Austin Show on @PodcastOne w/@steveaustinBSR & @thewadekeller talking #WWEBacklash for 90 minutes!… +05/10/2018,Sports_celeb,@steveaustinBSR,"RT @Lanejohnson65: If y'all want to hear this interview, give me a Hell Yeah! ☠️☠️ #staytuned https://t.co/nuUshYmW6E +Oh Hell Yeah!" +05/10/2018,Sports_celeb,@steveaustinBSR,"RT @thewadekeller: On tomorrow's @steveaustinBSR podcast on @PodcastOne, Steve and I talk in depth for 90 minutes about #WWE Backlash and t…" +05/09/2018,Sports_celeb,@steveaustinBSR,@TheBobHolly @WesternWench Same here. Bob and I have always gotten along and had great times in the ring. +05/08/2018,Sports_celeb,@steveaustinBSR,@ToddyDWrestling Hell Yeah!! +05/06/2018,Sports_celeb,@steveaustinBSR,RT @MikeOHearn: Great news ! At 2:30 this morning @CTFletcherISYMF came out of heart surgery and is Good and is off to recovery #Love #Fam… +05/05/2018,Sports_celeb,@steveaustinBSR,@sethphelps @ESBCBrews Cheers! +05/01/2018,Sports_celeb,@steveaustinBSR,"RT @JRsBBQ: Check out the @steveaustinBSR podcast that dropped today as I join the Texas Rattlesnake for a fun piece of business. + +#Slobbe…" +05/01/2018,Sports_celeb,@steveaustinBSR,"@CorbinRadul Bold move. Looks great. +Hell Yeah!" +04/30/2018,Sports_celeb,@steveaustinBSR,@Mikepasc8 Excellent. Congrats. +04/30/2018,Sports_celeb,@steveaustinBSR,Doing a Q and A for Thursday Steve Austin Show. Send Q’s here or to questions@steveaustinshow.com. +04/30/2018,Sports_celeb,@steveaustinBSR,"RT @JRsBBQ: Jumped on the phone today with my old friend @steveaustinBSR for his podcast that drops Tuesday. + +The Jim Ross Report podcast…" +04/30/2018,Sports_celeb,@steveaustinBSR,@CardilloUSA Damn right I remember it! +04/29/2018,Sports_celeb,@steveaustinBSR,"RT @MDoggMattCross: Heading to @steveaustinBSR country, Victoria, Texas, to face the wild man @martincasaus for the first time ever + +From T…" +04/28/2018,Sports_celeb,@steveaustinBSR,@sgraziano7 Hell Yeah! +04/28/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @CIO_HATE: Finally got my hands on this tasty beverage since we don’t have it in NJ @steveaustinBSR… https://t.co/cMr1S4l9uB +04/27/2018,Sports_celeb,@steveaustinBSR,"@hillbillyhank43 Agreed. The kick to the back of the knee was nice, though." +04/27/2018,Sports_celeb,@steveaustinBSR,Shinsuke so much better as a heel. AJ is off the charts good. #WGRR +04/26/2018,Sports_celeb,@steveaustinBSR,RT @FlyinBrianJr: Ask and ye shall receive! I FINALLY got to sit down with @steveaustinbsr and deliver the podcast… https://t.co/kJNrj58DnZ +04/26/2018,Sports_celeb,@steveaustinBSR,"RT @FlyinBrianJr: Join me and Steve as we talk about my early footsteps into the business, his relationship with my father, and more!! http…" +04/26/2018,Sports_celeb,@steveaustinBSR,RT @LiamORourke86: A big thank you to @steveaustinBSR and @FlyinBrianJr for talking about 'Crazy Like A Fox' - my biography on the life of… +04/25/2018,Sports_celeb,@steveaustinBSR,Good times!!RT @BulletClubItal: #OnThisDay 19 years ago: #WWEBacklash @steveaustinBSR defeated @TheRock in a No Hol… https://t.co/stOwow3I6p +04/25/2018,Sports_celeb,@steveaustinBSR,@MaxCastellano15 Hell Yeah +04/24/2018,Sports_celeb,@steveaustinBSR,RT @courtbauer: A few people have been hitting me up since @steveaustinBSR Show came out asking how they can watch @MLW on @beINSPORTSUSA.… +04/24/2018,Sports_celeb,@steveaustinBSR,"RT @courtbauer: Fire up the podcast gimmick and listen to today’s @steveaustinBSR Show as Steve and I take you behind the scenes of @MLW, t…" +04/24/2018,Sports_celeb,@steveaustinBSR,@WhittonAl HELL YEAH!!! +04/24/2018,Sports_celeb,@steveaustinBSR,"Damn what a ride. RT @CatchThePinfall: If @steveaustinBSR hadn't seen this, imagine... + +@WCCWMemories + +https://t.co/5eUMG7FPbH" +04/24/2018,Sports_celeb,@steveaustinBSR,@CatchThePinfall @WCCWMemories Thanks for sending that. I have not seen that commercial in many years. That commerc… https://t.co/FVJwM1UenA +04/24/2018,Sports_celeb,@steveaustinBSR,RT @withxtrasarcasm: @everytimeidie @steveaustinBSR @BraxtonSutter @AllieImpact @andycomplains That was absolutely hilarious! 😂🤣 ‘You can t… +04/24/2018,Sports_celeb,@steveaustinBSR,RT @courtbauer: I’ll be on @steveaustinBSR Show in the AM where we will talk shop about #WWEGRR and I’ll reveal details on this Friday’s #M… +04/24/2018,Sports_celeb,@steveaustinBSR,@xSt4y_r3ady_C3D @BrooksFarris I dig it. Very cool. +04/21/2018,Sports_celeb,@steveaustinBSR,RT @everytimeidie: The one and only @steveaustinBSR sat down with @braxtonsutter @allieimpact and our very own @andycomplains for what coul… +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: Part 2 of @andycomplains , @AllieImpact and myself on @steveaustinBSR ‘s podcast released today! Check out this audio w…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @TheKevinBennett: As the producer of @KickinAssPod , I am proud to say that my homies @BraxtonSutter @andycomplains and @AllieImpact KIC…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @AllieImpact: Guyssssss part 2 of our interview on @steveaustinBSR podcast is up!!! + +This was such a cool moment for all three of us.…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: This week on @KickinAssPod me, @andycomplains and LDG @AllieImpact recap our recent trip to LA! We had a kick ass day on…" +04/19/2018,Sports_celeb,@steveaustinBSR,@LoveableMew Real +04/18/2018,Sports_celeb,@steveaustinBSR,@Dakota_Bennett1 Yep. +04/18/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: Check out the craziest day of our lives! @andycomplains , @AllieImpact and myself on Ol’ Stone Cold @steveaustinBSR ‘s p…" +04/17/2018,Sports_celeb,@steveaustinBSR,RT @IMPACTWRESTLING: .@AllieImpact and @BraxtonSutter appeared on the latest episode of the @steveaustinBSR Show along with @andycomplains!… +04/17/2018,Sports_celeb,@steveaustinBSR,"RT @andycomplains: Welp, this is insane! Go listen to @BraxtonSutter @AllieImpact and i try not to mark to hard when @steveaustinBSR interv…" +04/15/2018,Sports_celeb,@steveaustinBSR,@teamstihl Hell Yeah! +04/13/2018,Sports_celeb,@steveaustinBSR,@TektheGeek That’s what I said... +04/13/2018,Sports_celeb,@steveaustinBSR,RT @Brodyxking: Got to meet the fuckin man today @steveaustinBSR thanks for letting me hang! https://t.co/ZgxaifrR46 +04/13/2018,Sports_celeb,@steveaustinBSR,@Brodyxking Nice meeting you! +04/13/2018,Sports_celeb,@steveaustinBSR,RT @KickinAssPod: The Butcher @andycomplains The Blade @BraxtonSutter and The Bunny @AllieImpact podcasted with @steveaustinBSR today! Stre… +04/13/2018,Sports_celeb,@steveaustinBSR,RT @andycomplains: Today is an insane day. @BarWrestling here we come! @steveaustinBSR has to rain check tonight though. Sorry guys. https:… +04/12/2018,Sports_celeb,@steveaustinBSR,"RT @TheFranchiseSD: Aargh, you guys beat me to the punch! Yes! I had the pleasure ot talk w @steveaustinBSR yday. Saw him at WrestleCon (1s…" +04/12/2018,Sports_celeb,@steveaustinBSR,@RiceFootball @53kobasko @WWENetwork @JRsBBQ Correct. +04/12/2018,Sports_celeb,@steveaustinBSR,@53kobasko That’s a fact. +04/11/2018,Sports_celeb,@steveaustinBSR,@Musicnation_101 @Gooner2954 @ShaneHelmsCom @courtbauer @H2HEmpress @realboogey Correct. +04/11/2018,Sports_celeb,@steveaustinBSR,@ShaneHelmsCom @courtbauer @H2HEmpress @realboogey I’m blaming all of you mugs... +04/11/2018,Sports_celeb,@steveaustinBSR,@Gortiz96 @ESBCBrews Sorry bout that. +04/10/2018,Sports_celeb,@steveaustinBSR,@matthewqnanes @TylerQinUtah More like being dead dog tired after 3 days of Mania festivities... +04/10/2018,Sports_celeb,@steveaustinBSR,@realbrianmorse It’s on the close of the show. Yep. We missed it on the podcast. My mistake. +04/10/2018,Sports_celeb,@steveaustinBSR,RT @MLW: Head over to 316 Gimmick Street as @steveaustinBSR talks with @courtbauer about #wrestlemania and #MLWFUSION TV series coming to @… +04/10/2018,Sports_celeb,@steveaustinBSR,RT @ppwpodcast: So I’m pretty sure @steveaustinBSR loved this item we brought the most out of anything @wrestlecon @Highspots https://t.co/… +04/09/2018,Sports_celeb,@steveaustinBSR,"RT @ReyFenixMx: Thank you so much @steveaustinbsr for unforgettable experience. +Thanks to all the team, great… https://t.co/3xOT1GWGgd" +04/08/2018,Sports_celeb,@steveaustinBSR,"RT @RealMickFoley: Just a tremendous action photo of the Texas Rattlesnake & The Hardcore Legend in mid-hug! +@steveaustinBSR https://t.co/U…" +04/08/2018,Sports_celeb,@steveaustinBSR,@Jarrius Awesome job last night. I enjoyed your speech and your story is incredible. Definitely tougher than me. A… https://t.co/er4dweLZa7 +04/08/2018,Sports_celeb,@steveaustinBSR,Awesome to see the GOAT today! #NatureBoy #woooooo!RT @RicFlairNatrBoy: Steve Austin In The House! WOOOOO!… https://t.co/IOyx4CtEi9 +04/07/2018,Sports_celeb,@steveaustinBSR,RT @therealtristin: My favorite photo! #WrestleCon @steveaustinBSR https://t.co/x0fIOn0yDp +04/07/2018,Sports_celeb,@steveaustinBSR,RT @billyviscuso: 15 years later. Legendary. #familyreunion @steveaustinBSR https://t.co/oLQglGnYp5 +04/07/2018,Sports_celeb,@steveaustinBSR,Gotcha! Remember New Orleans...RT @BulletClubItal: #OnThisDay 21 years ago: #RAW @steveaustinBSR defeated… https://t.co/PWMdR2J9NL +04/06/2018,Sports_celeb,@steveaustinBSR,@realchaseowens Nice meeting you! +04/06/2018,Sports_celeb,@steveaustinBSR,Made a stop by one of my favorite places in New Orleans for lunch. Been coming to this place for damn near 20 years… https://t.co/4jVQySWO2r +04/06/2018,Sports_celeb,@steveaustinBSR,RT @Kevy316: @steveaustinBSR getting ready for #WrestleManiaWeekend in style #oldskool https://t.co/RAgCYxPp4h +04/06/2018,Sports_celeb,@steveaustinBSR,@tpalzet Tell him I said hello and to stay strong. And that’s the bottom line. +04/06/2018,Sports_celeb,@steveaustinBSR,@Yorkshirelad110 That’s a nice ride. +04/06/2018,Sports_celeb,@steveaustinBSR,"Headed out to New Orleans, Louisiana for @wrestlecon appearance on Saturday and Sunday. See you there. #BYOB https://t.co/79DH6OTw71" +04/05/2018,Sports_celeb,@steveaustinBSR,"@crazylenny Thanks! Hell, I knew that..." +04/04/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: Don Jamieson https://t.co/EhtJbEMMAS Awesome podcast @steveaustinBSR @realdonjamieson +04/04/2018,Sports_celeb,@steveaustinBSR,@FauthGuitars Thanks! +04/02/2018,Sports_celeb,@steveaustinBSR,Tomorrow on SAS. Stand up comedian and That Metal Show cohost @realdonjamieson shooting the breeze. RT… https://t.co/bEYmSljhRV +04/01/2018,Sports_celeb,@steveaustinBSR,"@ZICCARDI151 That man had a family, dammit!!" +04/01/2018,Sports_celeb,@steveaustinBSR,"RT @neale8: My daughter just did there @steveaustinBSR egg! +The toughest hard boiled egg on Easter https://t.co/3sh7vFQ1au" +03/31/2018,Sports_celeb,@steveaustinBSR,@LOOKINIKOOL Thanks for the heads up. +03/31/2018,Sports_celeb,@steveaustinBSR,@omega_apex128 Damn. That ain’t good. Sorry to hear it. +03/29/2018,Sports_celeb,@steveaustinBSR,RT @WWE: Was @steveaustinBSR happy with the match he had against @ShawnMichaels 20 YEARS AGO today to win his first @WWE Championship at @W… +03/29/2018,Sports_celeb,@steveaustinBSR,@MrKhakbaz Good eye. Yes. The 2 shoes looked very similar and I did not realize it till I got home after the shoot… https://t.co/8Yc5Fve9ve +03/28/2018,Sports_celeb,@steveaustinBSR,@mellabellaboy20 Nice work. +03/27/2018,Sports_celeb,@steveaustinBSR,OH HELL YEAH!!! https://t.co/JuhMqBvs5t +03/27/2018,Sports_celeb,@steveaustinBSR,@thecharlieguz Enjoy it! Happy Birthday. +03/26/2018,Sports_celeb,@steveaustinBSR,@ArtByErle Awesome work! I had saved the picture. Sorry to not give you the credit for it. Very cool image. +03/25/2018,Sports_celeb,@steveaustinBSR,RT @Kai_Roberts6: @EandCPod one of the best podcasts of all time. Fascinating listening to @BretHart & @steveaustinBSR talking about their… +03/25/2018,Sports_celeb,@steveaustinBSR,@GregoryIron Hell Yeah +03/25/2018,Sports_celeb,@steveaustinBSR,"RT @DrawingHeat: Nearly 37 years old and yet still cannot look at my watch at 3.16 and not think ""your ass belongs to Stone Cold"" @steveaus…" +03/24/2018,Sports_celeb,@steveaustinBSR,"RT @NatbyNature: 21 years ago today. +One of my favorite #WrestleMania matches of all time. The storytelling was just incredible. So much w…" +03/23/2018,Sports_celeb,@steveaustinBSR,"@EdgeRatedR @BretHart @EandCPod @Christian4Peeps Don’t be so hard on yourself... +#DONTLOOKATME" +03/23/2018,Sports_celeb,@steveaustinBSR,RT @EdgeRatedR: So when we first put together the idea of doing Anatomy of a Match with @BretHart & @steveaustinBSR for @EandCPod that woul… +03/23/2018,Sports_celeb,@steveaustinBSR,@1PhenomenalFan I had some horrible ring gear back in the day.. +03/23/2018,Sports_celeb,@steveaustinBSR,@dkeithtaylor Swig of water for the working man. +03/23/2018,Sports_celeb,@steveaustinBSR,@phil__nicholson Well done. +03/23/2018,Sports_celeb,@steveaustinBSR,@dkeithtaylor Whereabouts in Nevada? +03/23/2018,Sports_celeb,@steveaustinBSR,RT @TheYearOfBliss: #OnThisDay 21 years ago on #WWE #WrestleMania 13: @BretHart defeated @steveaustinBSR via referee stopage in a Submissio… +03/23/2018,Sports_celeb,@steveaustinBSR,RT @Christian4Peeps: Now!! On @EandCPod BOTH @steveaustinBSR & @BretHart talk with us for you & dissect their WrestleMania 13 submission ma… +03/23/2018,Sports_celeb,@steveaustinBSR,@JPH_Beast @TedFowler361 Just when we would see them. +06/30/2018,Sports_celeb,@UKCoachCalipari,Wayne County deputies Cody Neal and Joe Horne and Monticello police officer Gordon Stephens. https://t.co/38ua3oPJri +06/30/2018,Sports_celeb,@UKCoachCalipari,Coach Rodney Woods played with Bernie & Ernie (Bernard King and Ernie Grunfel). Ray Mears coached him. Was just ind… https://t.co/U8s1XcbeHA +06/30/2018,Sports_celeb,@UKCoachCalipari,Ray Mills at our Wayne County High School Satellite Camp! Ray played for Coach Rupp from 1954-57. https://t.co/Udj2CHaW1u +06/30/2018,Sports_celeb,@UKCoachCalipari,Weeks like this week are what get me up in the morning. Love being on that court with young people and that basketb… https://t.co/y2u9C4a8SY +06/29/2018,Sports_celeb,@UKCoachCalipari,"Shout out to Jodi Black on her birthday today!! Have a great day!! You too, Hank!!" +06/28/2018,Sports_celeb,@UKCoachCalipari,"GK, you are on my daily prayer list, my friend. Miss you!" +06/28/2018,Sports_celeb,@UKCoachCalipari,Just got off the phone with a dear friend George Klein from Memphis. Most know GK as part of Elvis Presley’s Memphi… https://t.co/up1vH0YCXn +06/28/2018,Sports_celeb,@UKCoachCalipari,"Our staff also had a chance to spend time with Tom Arington, founder and chairman of @PrascoAGs. Great man and a bi… https://t.co/cYFP5pYYT7" +06/28/2018,Sports_celeb,@UKCoachCalipari,"They tell me their pro, @Anewell28, is pretty good!" +06/28/2018,Sports_celeb,@UKCoachCalipari,My coaching staff supporting the @PrascoAG’s Charity Championship today in its pro-am event! https://t.co/gq3ZPDMKcS +06/28/2018,Sports_celeb,@UKCoachCalipari,Rising star! DeWayne has earned everything he has coming for him. Happy to call him a friend. https://t.co/fb7eBNZAmP +06/28/2018,Sports_celeb,@UKCoachCalipari,"Sitting here thinking about just having 30 dogs run through my office. Please, no one say I hate elephants." +06/28/2018,Sports_celeb,@UKCoachCalipari,"Seriously though, if you know my family, you know we love animals. I'm proud to be a supporter of @lexingtonhumane… https://t.co/dlgVUfmN0j" +06/28/2018,Sports_celeb,@UKCoachCalipari,"You see what happens when McGruff and Palmer get mad at me? I had visitors waiting for me in my office today! + +Tha… https://t.co/polh5kydc6" +06/28/2018,Sports_celeb,@UKCoachCalipari,Had a really great first practice with the team today. I've challenged them to be like the 2014-15 team and not ha… https://t.co/6zcmSHIjUh +06/27/2018,Sports_celeb,@UKCoachCalipari,"Just finished our first practice of the year with our team. We have a long way to go, but we have an unbelievable… https://t.co/6gFOfvsgPl" +06/27/2018,Sports_celeb,@UKCoachCalipari,"Just talked to one of the toughest and most competitive players I’ve ever coached, @ZayBriscoe! He is with the Orl… https://t.co/wQ5XBTwYrP" +06/27/2018,Sports_celeb,@UKCoachCalipari,"Did I hear it's @Dhawk_25's birthday? #BBN, join me in wishing him a happy one. Dom had a great start to his profes… https://t.co/FrTbM59Gf1" +06/27/2018,Sports_celeb,@UKCoachCalipari,Just stopped in my office. @Q_Green1 was working out in a full sweat. And this shows up from @BravoTopChef Nice!! https://t.co/yFsRYBH5Mk +06/26/2018,Sports_celeb,@UKCoachCalipari,"And if you didn't know, Rick is one of the best in our business. He's won nearly 800 games as a head coach!" +06/26/2018,Sports_celeb,@UKCoachCalipari,"10 years ago today, I had the privilege of sitting in the green room as @drose was taken #1 overall in the NBA Draf… https://t.co/OB7CeO94T8" +06/26/2018,Sports_celeb,@UKCoachCalipari,"Spent some time with @BelmontMBB head coach Rick Byrd and his assistant, @THolloway4, talking movement, spacing and… https://t.co/o7jVKbMO1G" +06/26/2018,Sports_celeb,@UKCoachCalipari,We're coming to Wayne County High School on Saturday for our Satellite Camp. This is the final opportunity of the c… https://t.co/xoBZHI8E6W +06/26/2018,Sports_celeb,@UKCoachCalipari,Nothing a Louisville fan has EVER said to me has ever bothered me but this one got to me a little bit. McGruff and… https://t.co/pGS4cDdwue +06/25/2018,Sports_celeb,@UKCoachCalipari,I’m so proud of @AntDavis23. Only 25 years old and a finalist for the league’s best player. Incredible. I can remem… https://t.co/6fV2XfMNDv +06/25/2018,Sports_celeb,@UKCoachCalipari,RT @KentuckyMBB: This time yesterday we were getting ready to pull up to Midway for an unbelievable turnout from the #BBN. A look back at o… +06/25/2018,Sports_celeb,@UKCoachCalipari,"I was so happy to see two of Rick Corman’s daughters yesterday, April and Shawna." +06/25/2018,Sports_celeb,@UKCoachCalipari,"I want to thank Ed Quinn, president and CEO of R. J. Corman, once again for helping make it happen. Thank you to Br… https://t.co/p32pvutN3w" +06/25/2018,Sports_celeb,@UKCoachCalipari,"Woke up this morning blown away by the support we had from the #BBN. I’m sure folks will get upset when I say this,… https://t.co/gVXMEoAuLu" +06/25/2018,Sports_celeb,@UKCoachCalipari,"I want to thank this group of officers for their help at Midway and Lexington. And of course, a huge thank you to e… https://t.co/lkEoBj7hMr" +06/25/2018,Sports_celeb,@UKCoachCalipari,You know what I love most? Most of the people who waited in line for 2-3 hours don’t get a chance to get in… https://t.co/RtyvXA3PXa +06/25/2018,Sports_celeb,@UKCoachCalipari,"What a day. The turnout for the #BigBlueCaravan was unbelievable. More than 500 people in Frankfort, Midway (maybe… https://t.co/yQfj64khsU" +06/24/2018,Sports_celeb,@UKCoachCalipari,We just got done with our Satellite Camp in Frankfort in front of about 500 people when you include all the parents… https://t.co/rbuDztIrPb +06/24/2018,Sports_celeb,@UKCoachCalipari,"I want to thank Ed Quinn, president and CEO of R. J. Corman, for making today’s #BigBlueCaravan happen. Happy to ta… https://t.co/GqtvU55eLO" +06/24/2018,Sports_celeb,@UKCoachCalipari,We’re headed off for Frankfort for our Satellite Camp! Looking forward to seeing the #BBN on our way back.… https://t.co/JvToC3MobO +06/24/2018,Sports_celeb,@UKCoachCalipari,Getting ready to hop aboard our #BigBlueCaravan ride for the day. Can’t thank R. J. Corman enough for making this h… https://t.co/yxEI92SgwA +06/24/2018,Sports_celeb,@UKCoachCalipari,"RT @KentuckyMBB: Don't forget, we'll be meeting fans in Midway (5:30 p.m.) and Lexington (7 p.m.) to take pictures and sign autographs on t…" +06/23/2018,Sports_celeb,@UKCoachCalipari,Can’t wait to see the #BBN tomorrow! https://t.co/USelMOti3X +06/23/2018,Sports_celeb,@UKCoachCalipari,Congratulations to @HoopsWeiss!!! Well deserved. One of the best! https://t.co/NJEPzL0tTD +06/23/2018,Sports_celeb,@UKCoachCalipari,"#BBN, we'll be going rain or shine! Hope to see you in Midway and Lexington tomorrow for autographs and pictures. https://t.co/L9t7N8ioLg" +06/23/2018,Sports_celeb,@UKCoachCalipari,"Want to wish @tjbeisner, our new editor of @CoachCalDotCom, a happy birthday. TJ has done an unbelievable job in th… https://t.co/J4uULvgbzf" +06/23/2018,Sports_celeb,@UKCoachCalipari,RT @KentuckyMBB: We do what we do to win championships. But it's also about nights like these. Take a few minutes and watch this and see wh… +06/23/2018,Sports_celeb,@UKCoachCalipari,Few moments as special for me then hugging each kid and their mom and dad. Happy for all of our guys. https://t.co/BpXjUQPOCA +06/23/2018,Sports_celeb,@UKCoachCalipari,"We'll be out there to greet fans, sign autographs and take pictures at both spots. Complimentary posters will also… https://t.co/LyAwSNXKN6" +06/23/2018,Sports_celeb,@UKCoachCalipari,"We'll be coming back on an R. J. Corman train and will make a stop in Midway (Darlin Jean's, 2014 N. Gratz St.) at… https://t.co/ZXCf0stbnW" +06/23/2018,Sports_celeb,@UKCoachCalipari,"#BBN, I want to invite all of our fans to meet our team on Sunday as make a couple of pit-stops on the way back fro… https://t.co/WIYkI2j2vy" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Dajuan Wagner, my first 20-point scorer and first player to go in the draft after one year and be a lottery pick! H… https://t.co/MvCAIu2SNu" +06/22/2018,Sports_celeb,@UKCoachCalipari,Could you imagine if we could keep kids for three years what this program would look like? Oh my gosh! But I’m alwa… https://t.co/KqMKqyAZ0m +06/22/2018,Sports_celeb,@UKCoachCalipari,"Now my work begins on next year’s team. With the added hours, I’m going to spend more time in the summer than I nor… https://t.co/2fWJLAMMOv" +06/22/2018,Sports_celeb,@UKCoachCalipari,I can look back at @Dreliggs34 and @DrewRoc5 and know that the draft doesn’t define your dreams. Everybody’s path is different. +06/22/2018,Sports_celeb,@UKCoachCalipari,"I’m disappointed @WenyenGabriel's work to get on a team is not done yet, but I always tell every player that I coac… https://t.co/CQQFwgbRau" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Graduation day is over. Last night was both exciting and disappointing, as it always is. I’m excited for the four p… https://t.co/GKDh4GlR6b" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Congratulations, @hamidoudiallo! I know you are going to give it everything you have! https://t.co/RamB2xpeL6" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Happy for you, @JVando. Can't wait for everyone to see what you're capable of doing. https://t.co/HleucQ0l3G" +06/22/2018,Sports_celeb,@UKCoachCalipari,"So happy for you and your family, @shaiglalex. https://t.co/7rvEqUJp6n" +06/22/2018,Sports_celeb,@UKCoachCalipari,Congratulations @KevKnox! Proud of you! https://t.co/wInjgrlzqY +06/21/2018,Sports_celeb,@UKCoachCalipari,"Had a chance to see legendary and longtime Dodgers manager Tommy Lasorda, Cowboys coach Jason Garrett, and my good… https://t.co/vIKcVryzHX" +06/21/2018,Sports_celeb,@UKCoachCalipari,You know I had to stop by the @Yankees game before tonight’s #NBADraft. Former @UKBaseball pitcher James Paxton is… https://t.co/3Z5ZLCvvfQ +06/21/2018,Sports_celeb,@UKCoachCalipari,"Great time yesterday speaking to WinFieldUnited, a wholly owned subsidiary of Land O’ Lakes. Spent some time /their… https://t.co/VkERHdSwBF" +06/21/2018,Sports_celeb,@UKCoachCalipari,I always love rubbing up against the coach that won the national title. Hopefully it rubs off on us! Had a great ti… https://t.co/Qs3fnY8BUn +06/21/2018,Sports_celeb,@UKCoachCalipari,I lit five candles this morning at St. Patrick’s Cathedral. Who do you think they were for? https://t.co/YaH6BeogsR +06/20/2018,Sports_celeb,@UKCoachCalipari,"Our fans know when it comes to talent and experience, I’m always picking talent, but Reid gives us both. And what a… https://t.co/pvMYvzmPYW" +06/20/2018,Sports_celeb,@UKCoachCalipari,You’re talking about a two-time all-conference player who could have very well entered the NBA Draft with what he’s… https://t.co/jt4c9HiPXW +06/20/2018,Sports_celeb,@UKCoachCalipari,"I felt good about where we stood with next year’s team, but when I found out how much @2ReidTravis2 wanted to be he… https://t.co/sczVvdWRid" +06/19/2018,Sports_celeb,@UKCoachCalipari,My good friend Pace Cooper came to campus and brought his friend Gaines Sturdivant. Had a great time reminiscing an… https://t.co/tZKzdwRpZF +06/19/2018,Sports_celeb,@UKCoachCalipari,"If you all remember “Jersey Red” Ford from the 90s, this is Greg Ford, his son, and his family. Red’s grandson Etha… https://t.co/LlITJaWGTF" +06/19/2018,Sports_celeb,@UKCoachCalipari,"Really happy for @AntDavis23, a Hall of Fame player and person. Loved seeing him this weekend and can't wait to cel… https://t.co/Xo8Q5HfeiC" +06/19/2018,Sports_celeb,@UKCoachCalipari,"Had a chance this morning be in every gym and watching stations, games and the college practice of the older guys a… https://t.co/qujnrmKyvM" +06/18/2018,Sports_celeb,@UKCoachCalipari,"Had a chance to meet Teresa, Brian and Maddox Cope while on the #BigBlueCaravan tour today at Marshall County HS. T… https://t.co/SbDLEGtevW" +06/18/2018,Sports_celeb,@UKCoachCalipari,Having a blast with camp season both home and away. Our final two satellite camps will be June 24 in Franklin and M… https://t.co/SKvbzYlJlY +06/18/2018,Sports_celeb,@UKCoachCalipari,"I love how involved our players have been. Everyone, including @H23Ash, who just got to campus today, was really working." +06/18/2018,Sports_celeb,@UKCoachCalipari,Really good first day of Overnight Camp today. The Anthony Davis NBA group went through a college-like practice and… https://t.co/WBcmldsQRG +06/17/2018,Sports_celeb,@UKCoachCalipari,"He can do a little bit of everything, but what separates him from his peers is his playmaking ability and leadershi… https://t.co/zf5aPbYikH" +06/17/2018,Sports_celeb,@UKCoachCalipari,Ashton wanted this so much that he worked extremely hard in the classroom these last few months to finish up his hi… https://t.co/OTYo0zHATI +06/17/2018,Sports_celeb,@UKCoachCalipari,.@H23Ash wanted to be at Kentucky all along. When I found out how badly he wanted this and had a chance to see him… https://t.co/TVrHlGDVn6 +06/17/2018,Sports_celeb,@UKCoachCalipari,"The best thing Dad did for me and my sisters was take care of Mom when she got sick. It was a 24-7 job. Love you,… https://t.co/HgUhwiIRuz" +06/17/2018,Sports_celeb,@UKCoachCalipari,My own father worked 2-3 shifts to make our lives as comfortable as possible. He was an absolute grinder and taugh… https://t.co/F7NCxh1OYx +06/17/2018,Sports_celeb,@UKCoachCalipari,Happy Father's Day to all of the fathers out there who have made their lives about their family! +06/17/2018,Sports_celeb,@UKCoachCalipari,Happy birthday to @IQ_GodSon! Getting his first batch of Mrs. Cal’s birthday brownies today. They’re on the way! https://t.co/vf4Q3buXsp +06/16/2018,Sports_celeb,@UKCoachCalipari,Had to make a pit stop at the U.S. Embassy while on the road! I was greeted at the front by Joe and Kelly Craft! https://t.co/INVN3U7993 +06/16/2018,Sports_celeb,@UKCoachCalipari,Also had a chance to visit downtown and I ran into some fans from my UMass days! They were on campus when… https://t.co/MsLpQWlAR9 +06/16/2018,Sports_celeb,@UKCoachCalipari,"I found the presidential suite, where presidents stay when they visit. You know I had to put my toes up. Just neede… https://t.co/jRchwhGkjb" +06/16/2018,Sports_celeb,@UKCoachCalipari,How about this? EJ Montgomery grew up looking up to Anthony Davis and got to sit down and ask him for advice today… https://t.co/3BNiUXJALr +06/16/2018,Sports_celeb,@UKCoachCalipari,"Darius Miller was a joy to coach and I'm so proud of what he's accomplished as a basketball player, but this gives… https://t.co/fgx3lcvNSN" +06/15/2018,Sports_celeb,@UKCoachCalipari,Can’t wait to see the #BBN there! https://t.co/ziVjtNFflk +06/15/2018,Sports_celeb,@UKCoachCalipari,Had a great time with @AntDavis23 and his family and friends. Anthony was and continues to be the ultimate team pl… https://t.co/gtMGEXBv1z +06/15/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday to @UKDeWaynePeevy, who has been by my side since I got to Lexington. We've been through a lot toget… https://t.co/f9vdmHpBxE" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Two things always happen when I get with our players: One, they embellish, and two, they ask to see Mrs. Cal so they can get brownies. LOL" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Had to take @AntDavis23 past Royce Pulliam’s new barbershop, @Floyds99, to show him this. Glad I got to spend time… https://t.co/CysUTTKrFz" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Look who is in town! @AntDavis23, Big Anthony, Garrett Partman, Sherman Mussatto, Marvell Scott and Ayden Scott swu… https://t.co/52JnVUFC1C" +06/15/2018,Sports_celeb,@UKCoachCalipari,I have the greatest family. So great to read these from Megan and Erin this week. https://t.co/s5pL8iUT8u +06/14/2018,Sports_celeb,@UKCoachCalipari,Boyle County's own @JacobTamme at our Satellite Camp today. Jacob was one of @UKcoachbrooks’ first recruits at UK.… https://t.co/bDj6H5y16e +06/14/2018,Sports_celeb,@UKCoachCalipari,"Just got back from C.M. Newton's funeral. Unbelievably moving and touching to see all the friends, former players a… https://t.co/vAI2d8ukY9" +06/14/2018,Sports_celeb,@UKCoachCalipari,"I've really enjoyed our Father's Day series this week, but reading this from @TheErinCalipari today was a real joy.… https://t.co/BQQY20J6zk" +06/13/2018,Sports_celeb,@UKCoachCalipari,"When you talk about being around greatness, this guy is around it every day. Eduardo G Luna groomed both American P… https://t.co/qfH58CeTM7" +06/13/2018,Sports_celeb,@UKCoachCalipari,Thank you to Elliott Walden and his wife Rebecca of @WinStarFarm for allowing our team to spend time with a Triple… https://t.co/DrOOHMyTiV +06/13/2018,Sports_celeb,@UKCoachCalipari,"Was a celebrity judge on @BravoTopChef with Ed Lee, a great guy who helped me feel comfortable. Has great restuaran… https://t.co/Ueowa3gKBH" +06/13/2018,Sports_celeb,@UKCoachCalipari,"My good friend from Memphis Herb O’Mell passed away today. I never saw him without a smile on his face. Praying for him and his wife, Laura." +06/12/2018,Sports_celeb,@UKCoachCalipari,"Had a lot of fun with @tomcolicchio, @grahamelliot, @chefedwardlee and @notesfromacook today at Rupp. You guys are… https://t.co/b51n3lABrS" +06/12/2018,Sports_celeb,@UKCoachCalipari,It was great meeting @PadmaLakshmi and spending time with the @BravoTopChef crew today. I finally learned there's… https://t.co/denoX2blSn +06/12/2018,Sports_celeb,@UKCoachCalipari,I wanted to make sure we everyone got a chance to come to this camp. We've had such a positive response to it that… https://t.co/OeXtBCaQrZ +06/12/2018,Sports_celeb,@UKCoachCalipari,Looking back through some old photos and saw this today. Happened about a year ago at this time. Still just as prou… https://t.co/jVIgAizwtE +06/12/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday, @jemarlbakerjr! Birthday brownies coming right up! https://t.co/bplr9pNU6Q" +06/12/2018,Sports_celeb,@UKCoachCalipari,Julius Mays is a great young man and I am so proud of how committed he is to his family. I hope the Father's Day s… https://t.co/ZU007mnwvJ +06/11/2018,Sports_celeb,@UKCoachCalipari,"Staley Cates, George Cates and pastor John Bryson from Memphis stopped in today. Great friends! https://t.co/gCUPOeFWJ0" +06/10/2018,Sports_celeb,@UKCoachCalipari,"With Father's Day coming up, we are going to celebrate fatherhood all week on @CoachCalDotCom. I think #BBN is real… https://t.co/UfK5nJ45x5" +06/10/2018,Sports_celeb,@UKCoachCalipari,More than one big race going on today! Heard @KentuckyTrack’s @GoSydGo and @JCamachoQuinn won NCAA titles tonight. What a day! #FloKnows +06/10/2018,Sports_celeb,@UKCoachCalipari,.@TheRealJeffRuby!!! https://t.co/yxpGPq7w0E +06/10/2018,Sports_celeb,@UKCoachCalipari,We even ran into @tomleachKY at the track. Tom knows his @KentuckyMBB but he may know even more about horse racing.… https://t.co/5rABhewZFp +06/10/2018,Sports_celeb,@UKCoachCalipari,At the finish with @bradcalipari. #TripleCrown https://t.co/Rz93OFNqI8 +06/10/2018,Sports_celeb,@UKCoachCalipari,"Congratulations to Justify and everyone with @WinStarFarm! Unbelievable day, unbelievable team and unbelievable hor… https://t.co/nVpa4d4QRx" +06/10/2018,Sports_celeb,@UKCoachCalipari,"Look who we ran into at the track: @J30_RANDLE and his wife, @KendraRandle_. https://t.co/qLjwWyZKxy" +06/09/2018,Sports_celeb,@UKCoachCalipari,Got to meet the grandson of former UK president Frank Dickey at the Belmont! https://t.co/skssfCjZwn +06/09/2018,Sports_celeb,@UKCoachCalipari,Belmont. Triple crown. GoJustify! https://t.co/nPMsqVTcgl +06/09/2018,Sports_celeb,@UKCoachCalipari,At the Belmont hanging with Hall of Fame trainer Bob Baffert and Winstar Farms owner Kenny Troutt and his wife Lisa. https://t.co/a9sTAl9wv5 +06/09/2018,Sports_celeb,@UKCoachCalipari,"I’m not sure who is having more fun at our #FatherSon Camp, the kids or their dads. https://t.co/TUBlpk60UP" +06/09/2018,Sports_celeb,@UKCoachCalipari,"My nephew Chad Geary and his son, Conner, are at our #FatherSon Camp. Conner went nuts when his dad made a shot! https://t.co/cMjmtdhKS4" +06/09/2018,Sports_celeb,@UKCoachCalipari,"We will end up having more than 2,000 participants over our three Father/Son Camps over the next three weekends. Lo… https://t.co/heUeJQeOYz" +06/09/2018,Sports_celeb,@UKCoachCalipari,Our #FatherSon Camps are always one of my favorite things we do. To see the kids learning from our staff and player… https://t.co/S6U79zO2xt +06/08/2018,Sports_celeb,@UKCoachCalipari,Our guys have been having as much fun as the kids this week. I hope #BBN has enjoyed getting to know our team at t… https://t.co/j4yuUmTxkb +06/08/2018,Sports_celeb,@UKCoachCalipari,Still have a few roster spots open in my seventh annual Fantasy Experience! This year’s charitable event is in the… https://t.co/0q6Sz2mevP +06/08/2018,Sports_celeb,@UKCoachCalipari,"Hey #BBN, don't miss @UKOperaTheatre’s It's a Grand Night for Singing! You'll love the show by @emccorvey. It opens… https://t.co/aZZFyKjuC4" +06/07/2018,Sports_celeb,@UKCoachCalipari,.@bradcalipari and I looking for jackets at Crittenden! Looking forward to his trunk show on June 14-15 at both the… https://t.co/EuJW4nBT4O +06/06/2018,Sports_celeb,@UKCoachCalipari,The @MarkKrebsJr Factor and his son at our Satellite Camp in Louisville!! Another sign that I’m getting old! https://t.co/vnOc0GZFGw +06/06/2018,Sports_celeb,@UKCoachCalipari,The Nutters with Ohio congressman Rick Perales. https://t.co/LbfOYWHPhB +06/06/2018,Sports_celeb,@UKCoachCalipari,Spent time with @athletesinaction staff along with @UKAthletics supporters and philanthropists Bob and Mary Nutter.… https://t.co/3l49rcsgHg +06/06/2018,Sports_celeb,@UKCoachCalipari,I was asked to speak to the @usafootball team before the team goes to China to compete for gold. The camp was held… https://t.co/uCUzdJmDys +06/06/2018,Sports_celeb,@UKCoachCalipari,Today is my mother- and father-in-law’s 65th wedding anniversary! Sue and Ray have made it look easy. I wish them m… https://t.co/rD1aZLXnGX +06/05/2018,Sports_celeb,@UKCoachCalipari,Good luck to Coach Flo and @KentuckyTrack at this week’s #NCAATF Championships! https://t.co/nppu9n6qJL +06/05/2018,Sports_celeb,@UKCoachCalipari,Makes me happy when I’m pulling in my office at 10 p.m. and the facility lights are on. Guys are working!l already!… https://t.co/F02FNqrj4B +06/05/2018,Sports_celeb,@UKCoachCalipari,I wrote some thoughts about my friend last week. He taught me so much and made me a part of his family. I’ll miss h… https://t.co/XyMeS5hK4r +06/05/2018,Sports_celeb,@UKCoachCalipari,"An hour or so ago, C.M. Newton passed away. Please keep him and his family in your prayers. During one of the most… https://t.co/8vDVPjAGdy" +06/04/2018,Sports_celeb,@UKCoachCalipari,Stopped at the Barton 1792 Distillery on the way out of Bardstown to congratulate Steve Hill on his retirement. St… https://t.co/c8kSBdeg8t +06/04/2018,Sports_celeb,@UKCoachCalipari,Our satellite camp in Bardstown was outstanding as usual and it gave me a chance to visit one of the great cathedra… https://t.co/1coV4GYKAQ +06/02/2018,Sports_celeb,@UKCoachCalipari,Had a break in Colorado Springs. Lunch in the mountains! https://t.co/JL19R0wNH7 +06/02/2018,Sports_celeb,@UKCoachCalipari,My boys just opened up a new gym in Lexington: @ebf_kentucky. Unbelievable spot! Rock Oliver tells me EBF is the be… https://t.co/z19a3nNTWV +06/01/2018,Sports_celeb,@UKCoachCalipari,With two great Italians: soccer great @vieri_bobo and Hollywood star @danny_abeckaser! https://t.co/ApHQxrkUmx +06/01/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday to @2willbarton3! Exciting time for Will, who is getting married in a month and will play a big part… https://t.co/hNlXcQFRHJ" +06/01/2018,Sports_celeb,@UKCoachCalipari,"It's almost time for our camp season to kick off and I can't wait to see everyone at our camps. + +If you haven't sig… https://t.co/rSfvq75xKc" +05/31/2018,Sports_celeb,@UKCoachCalipari,I'm excited for what PJ can do for himself and our team this year and I support Wenyen and Jarred as they pursue th… https://t.co/559eb6MWfB +05/31/2018,Sports_celeb,@UKCoachCalipari,"#BBN, I am asking that you please keep my dear friend C.M. Newton in your prayers. + +https://t.co/ZwDgjbciQl" +05/31/2018,Sports_celeb,@UKCoachCalipari,"As I said before, we've only seen a small part of Jarred's game because of the adversity he faced this season, but… https://t.co/BvnVT6eXwr" +05/31/2018,Sports_celeb,@UKCoachCalipari,"On the other hand, he's seen how quickly this can be taken away. I completely understand and support his decision t… https://t.co/p0ta2yrT4g" +05/31/2018,Sports_celeb,@UKCoachCalipari,.@JVando had a difficult decision to make. I know he has been pulled in two different directions. On one hand he wa… https://t.co/JUhEfuo42g +05/31/2018,Sports_celeb,@UKCoachCalipari,"#BBN, let's show him our support. @JVando went through a lot this season and can't wait to see what he is going to… https://t.co/eoYbtNbEx7" +05/30/2018,Sports_celeb,@UKCoachCalipari,"This greeted me in my office on returning from the #SECSpringMeetings. A good man and a good woman. We miss you, Co… https://t.co/DhLDv1EZPr" +05/30/2018,Sports_celeb,@UKCoachCalipari,"Wenyen grew so much from his freshman season to his sophomore year. If he continues to make those same strides, he’… https://t.co/sYWgJgaeFi" +05/30/2018,Sports_celeb,@UKCoachCalipari,".@WenyenGabriel's game is where the league continues to trend towards. He’s a position-less big man who can shoot,… https://t.co/JrrRcPforg" +05/30/2018,Sports_celeb,@UKCoachCalipari,Go do your thing! You've got our full support. https://t.co/sMcVqeRNIV +05/30/2018,Sports_celeb,@UKCoachCalipari,"What I love most about this decision is why PJ is doing it. He told me he wants to come back to be a leader, to gro… https://t.co/B98kiY7yyG" +05/30/2018,Sports_celeb,@UKCoachCalipari,"I know how good of a player he is and think he showed it at times last season, but I’m looking forward to seeing him grow and build on it." +05/30/2018,Sports_celeb,@UKCoachCalipari,"Whatever PJ decided we were going to support, but I’m really happy with the decision he’s come to because I really… https://t.co/gpOE1MJDRI" +05/30/2018,Sports_celeb,@UKCoachCalipari,This is what the NBA Draft rules are in place for. @PJWashington was able to test the waters and get all the inform… https://t.co/DULKjfhOkT +05/30/2018,Sports_celeb,@UKCoachCalipari,"Happy for you, kid. Let's go chase something special. https://t.co/33D0gVIbLM" +05/30/2018,Sports_celeb,@UKCoachCalipari,"Catching up with my old athletic director, R.C. Johnson, and his wife, Melba, in Destin for the #SECmeetings. https://t.co/Ofws6ohP9o" +05/29/2018,Sports_celeb,@UKCoachCalipari,Another big game for @bradcalipari overseas. Went for 17 points and six assists in his final game today! Looking fo… https://t.co/DS0WrK2lPO +05/29/2018,Sports_celeb,@UKCoachCalipari,"Another big game for @bradcalipari! He scored 14 points, had eight assists and was 4 of 5 from 3. Proud of him." +05/28/2018,Sports_celeb,@UKCoachCalipari,"True servant leaders care more for their brothers, their teammates and their units more than themselves. Today, on… https://t.co/MvY7yjNR2E" +05/28/2018,Sports_celeb,@UKCoachCalipari,I saw an older veteran being interviewed today about the fear of going into battle and his comment struck me. He sa… https://t.co/5tGzWAnG28 +05/28/2018,Sports_celeb,@UKCoachCalipari,"As I’m watching war movies today, from Patton to Casualties of War and others, I’m reminded of how blessed we are t… https://t.co/l0hbMnuxyl" +05/27/2018,Sports_celeb,@UKCoachCalipari,.@bradcalipari is overseas this week playing on a basketball tour with Global Sports Academy. He had 17 points and… https://t.co/lNpQBNduNm +05/25/2018,Sports_celeb,@UKCoachCalipari,Every player is on their own path. When you think about what Isaiah accomplished in two years here and Dom accompli… https://t.co/WOqqGJFP3L +05/25/2018,Sports_celeb,@UKCoachCalipari,Couldn’t be more proud of @AntDavis23 being the third-leading vote-getter behind @KingJames and @JHarden13. He just… https://t.co/LFNPKKhEkx +05/25/2018,Sports_celeb,@UKCoachCalipari,Happy to see @ZayBriscoe and @Dhawk_25 enjoying success overseas. I know those two will grind to make their dreams… https://t.co/mcfgRKrbcp +05/25/2018,Sports_celeb,@UKCoachCalipari,I think our fans are really going to enjoy these upgrades. @Rupp_Arena has long been the gold standard in college b… https://t.co/wJeJHN0aiQ +05/22/2018,Sports_celeb,@UKCoachCalipari,How about @TwanyBeckham11? Happy for him! https://t.co/BKmTfP88a5 +05/21/2018,Sports_celeb,@UKCoachCalipari,One of the most gratifying times of my coaching career has been watching Brad grow and develop to the man he is tod… https://t.co/eVJTgIODD6 +05/21/2018,Sports_celeb,@UKCoachCalipari,"Like his dad, he's got a fighter's mentality and there is no doubt in my mind he's going to scratch and claw his wa… https://t.co/X7pvDghAMX" +05/21/2018,Sports_celeb,@UKCoachCalipari,"We've always been an option for him, but we wanted Zan to make this decision on his own. I'm so happy he's decided… https://t.co/hvtsxSvBfZ" +05/21/2018,Sports_celeb,@UKCoachCalipari,Every conversation Kenny and I have had about @young_payne2321 has been about what's best for Zan. I wanted Kenny t… https://t.co/LKa1CstxYe +05/21/2018,Sports_celeb,@UKCoachCalipari,"#BBN, we've added a stop to our Satellite Camp tour, which begins in just a couple weeks. We'll be headed to Boyle… https://t.co/5Kp0SPDLIK" +05/20/2018,Sports_celeb,@UKCoachCalipari,Congratulations to @UKCoachLawson and @UKsoftball! https://t.co/gxBcdooQPr +05/20/2018,Sports_celeb,@UKCoachCalipari,"Yes, that’s @KarlTowns. LOL. How old do you think he is in this pic? https://t.co/2JCRf5JAqr" +05/20/2018,Sports_celeb,@UKCoachCalipari,"John Maxwell, one of my mentors. https://t.co/tpxsL4TG1Z" +05/20/2018,Sports_celeb,@UKCoachCalipari,Two great leaders! https://t.co/Jztqgb9b1h +05/20/2018,Sports_celeb,@UKCoachCalipari,"Dinner with great friends tonight in Newport Beach: Robert Lara, @KarlTowns, @J30_RANDLE and Billy Bayno. John Maxw… https://t.co/Eh2DGeFJMy" +05/20/2018,Sports_celeb,@UKCoachCalipari,Did Justify win again?!? What?!? Love it for my friends at @WinStarFarm! +05/19/2018,Sports_celeb,@UKCoachCalipari,"By the way, no golf for me. Still recuperating. Back to resting for 10 days after this trip." +05/19/2018,Sports_celeb,@UKCoachCalipari,"We’ve got a winner! Chris, check your direct messages in a few minutes and we will get your contact info to get you… https://t.co/6Eta90FQWr" +05/19/2018,Sports_celeb,@UKCoachCalipari,"Any guesses where I'm at exactly, by the way? First correct response will get one of my Hall of Fame coins. https://t.co/9H6235C0MD" +05/19/2018,Sports_celeb,@UKCoachCalipari,"Speaking out west after being in Chicago with @PJWashington, @shaiglalex and @hamidoudiallo last night for the… https://t.co/Yy7A12YmY9" +05/19/2018,Sports_celeb,@UKCoachCalipari,I’m happy @taiwynyard decided on Santa Clara. Coach Herb Sendek is a friend from Pittsburgh. He was an assistant at… https://t.co/SyL7StRvmx +05/18/2018,Sports_celeb,@UKCoachCalipari,"Sad to hear that Bret Bearup passed away suddenly. A former Kentucky player for Coach Hall, I’ve known Bret since m… https://t.co/IhrdiYa6UE" +05/17/2018,Sports_celeb,@UKCoachCalipari,Good luck to @UKCoachLawson and the @UKsoftball team tomorrow. Incredible job that Coach Lawson does every year. Th… https://t.co/wlzFvXITj1 +05/17/2018,Sports_celeb,@UKCoachCalipari,"Utah gives us a great opponent for our fans at home next season, & then in 2019, our fans can spend a week with us… https://t.co/dK8dHjfy6e" +05/17/2018,Sports_celeb,@UKCoachCalipari,I promised you some schedule news. One of the things I hear most about from our fans is they enjoy traveling w/us &… https://t.co/fV4oLlOgfE +05/17/2018,Sports_celeb,@UKCoachCalipari,Wow! Congrats to Coach Craig and the guys. Looks like I know who to call to help me with my game. https://t.co/kYecgQ1Gkv +05/16/2018,Sports_celeb,@UKCoachCalipari,"I am devastated tonight over the passing of my friend and mentor, Mike Slive. I knew Mike was not feeling great an… https://t.co/Z0z3w5AkZD" +05/16/2018,Sports_celeb,@UKCoachCalipari,"If they decide to pursue their genius and play professional basketball, they know they have lifetime scholarships s… https://t.co/gbEYiDl8JS" +05/16/2018,Sports_celeb,@UKCoachCalipari,Our kids are committed to learning and take care of business in the classroom. We teach growth in all areas. It's w… https://t.co/l1jIo6BKuJ +05/16/2018,Sports_celeb,@UKCoachCalipari,For some kids that's playing professionally. For others it's outside of basketball. Whatever they decide to do – wh… https://t.co/RQ69WG5XcN +05/16/2018,Sports_celeb,@UKCoachCalipari,"Proud of this and happy for our guys, @UKMichaelStone and our CATS staff. Our whole mindset is preparing our kids f… https://t.co/sxwvJwGLZj" +05/16/2018,Sports_celeb,@UKCoachCalipari,"The first time I heard it I thought I heard five star. The second time I listened to it, it without question says L… https://t.co/u2vhBlwLem" +05/15/2018,Sports_celeb,@UKCoachCalipari,"A great kid headed to play for a great coach, a great program and a great school. I wish @SKJ all the best. https://t.co/lNsWgfUZlx" +05/14/2018,Sports_celeb,@UKCoachCalipari,"What I love about him is he models his game after @AntDavis23, one of the best we’ve ever had, but wants to be his… https://t.co/sTJJhG1O9v" +05/14/2018,Sports_celeb,@UKCoachCalipari,EJ is the type of position-less player the game is moving towards. He can play just about anywhere and make plays o… https://t.co/i00klmjBi7 +05/14/2018,Sports_celeb,@UKCoachCalipari,I hope our fans understand just how good @E_Montomery is and how excited we are to have him. You’re talking about a… https://t.co/bAJsA3b8Q4 +05/14/2018,Sports_celeb,@UKCoachCalipari,"Been out it recovering but just got caught up on a great weekend. Heard @GoSydGo & @JCamachoQuinn got gold at SECs,… https://t.co/YGVhCJjnUW" +05/14/2018,Sports_celeb,@UKCoachCalipari,"I want to congratulate @JustMarcusLee on graduating this weekend. Even though Marcus didn’t finish with us, I’m jus… https://t.co/7LlB7l6xBT" +05/13/2018,Sports_celeb,@UKCoachCalipari,"I am also thinking of all of you who are spending today without your mothers. My mom, Donna, passed away on Novemb… https://t.co/lBk0gIeezZ" +06/30/2018,Sports_celeb,@RSherman_25,@byrneskramstad Not at all. Same size. Same width. I have changed teams since I was in youth football. I worry… https://t.co/hNGWgrH6Gm +06/30/2018,Sports_celeb,@RSherman_25,Let’s get it @TigerWoods https://t.co/Nz3vs5BSrs +06/30/2018,Sports_celeb,@RSherman_25,@MikeDavisRB Smh all these kids talking about getting “physical” +06/30/2018,Sports_celeb,@RSherman_25,@MikeDavisRB Mike you gotta get them boys right! +06/29/2018,Sports_celeb,@RSherman_25,@thewiz0915 We have different ears +06/29/2018,Sports_celeb,@RSherman_25,@DDDGURU @ButcherBoy415 They may hate the truth +06/29/2018,Sports_celeb,@RSherman_25,Drake is speaking that honest on this new album. Just callin it how it is. +06/29/2018,Sports_celeb,@RSherman_25,@TheAdamsEra @AdrianColbert27 Big truth. +06/28/2018,Sports_celeb,@RSherman_25,RT @TFordFSP: .@RSherman_25 the GOAT was back in the lab grinding today! The comeback season is REAL! #CantCheatTheGrind #NFLOffSeasonGrind… +06/28/2018,Sports_celeb,@RSherman_25,"I love 🇺🇸 pride, don't you? You can still grab this tee in time for July 4th! + +Order here 👉🏿 https://t.co/SKhNwbd2rb https://t.co/N8Ohobrb7O" +06/28/2018,Sports_celeb,@RSherman_25,RT @wyche89: Good morning. @NFL Players keep walking the walk when it comes to community service and good deeds. Well done ⁦@marcelldareus⁩… +06/28/2018,Sports_celeb,@RSherman_25,@AdrianLaurel1 @footwork_king1 Thank you +06/27/2018,Sports_celeb,@RSherman_25,@whytewunder55 @footwork_king1 Thank you +06/27/2018,Sports_celeb,@RSherman_25,"RT @NoChillDe3zY: Now live, support is always appreciated 😎 https://t.co/LsL2XVXS8f https://t.co/mkDqqgZpec" +06/27/2018,Sports_celeb,@RSherman_25,RT @footwork_king1: @RSherman_25 out here getting this work in with me today. We got better today Sherm 💯 https://t.co/olBqlqj7mc +06/27/2018,Sports_celeb,@RSherman_25,Got some good work in with some of the best out there. @AqibTalib21 @_bigplayslay23 @XavierRhodes29_ @ahkello ...… https://t.co/xyuzgcMVmB +06/27/2018,Sports_celeb,@RSherman_25,"He knew I was a fan, so I got the first copy of @CrashBandicoot on Xbox One. Thank you Crash!!… https://t.co/8QLO8tI4C2" +06/26/2018,Sports_celeb,@RSherman_25,"RT @footwork_king1: I put my boys Richard Sherman, Aqib Talib, Xavier Rhodes and Darius Slay through some solid work today! We are right ba…" +06/23/2018,Sports_celeb,@RSherman_25,RT @JaValeMcGee: June 23rd https://t.co/o0NZky3qXM +06/23/2018,Sports_celeb,@RSherman_25,@_ericdavis_ You can give some people all the ingredients and they still can’t make a cake lol. The coordinator is who you study. +06/22/2018,Sports_celeb,@RSherman_25,"RT @geescottjr: The environment in the doors of @gofordsports is the BEST OF THE BEST! +@RSherman_25 and I talking some different release te…" +06/22/2018,Sports_celeb,@RSherman_25,@derekcarrqb Hopefully he falls to the Lakers +06/21/2018,Sports_celeb,@RSherman_25,"I've been working tirelessly with my design team this off-season, and we've come up with some great new gear for y'… https://t.co/FfWkclmE0v" +06/21/2018,Sports_celeb,@RSherman_25,"RT @49ers: Let's gooooo! 🔊 + +Sound up for @RSherman_25's first time mic'd up as a member of the 49ers https://t.co/wu07zr0XhB" +06/21/2018,Sports_celeb,@RSherman_25,"RT @SInow: If you’re ever in the Bay Area and need a place to crash, maybe you should check out which hotels Richard Sherman likes — he's s…" +06/20/2018,Sports_celeb,@RSherman_25,RT @NoChillDe3zY: 🚨New video alert🚨 Click here to see the whole video https://t.co/9U33csC1c7. here’s a quick snippet from our Extreme spic… +06/19/2018,Sports_celeb,@RSherman_25,@WillBlackmon 😡😡😡😡 +06/18/2018,Sports_celeb,@RSherman_25,@Teresa4ever12 Thank you +06/17/2018,Sports_celeb,@RSherman_25,RT @TFordFSP: My young bull is @BroncoSportsFB camp looking and playing like a created player! No questions to why he is considered one of… +06/17/2018,Sports_celeb,@RSherman_25,@JOKER23445 Thank you +06/17/2018,Sports_celeb,@RSherman_25,@terryhollimon Preciate you brother!! +06/17/2018,Sports_celeb,@RSherman_25,@Bwagz @UniversalORL 👏🏾👏🏾🙌🏾🙌🏾🙌🏾👏🏾 see that’s what I’m talking about!! Get ya wizarding bars up +06/17/2018,Sports_celeb,@RSherman_25,@SoooDonna Thank you +06/17/2018,Sports_celeb,@RSherman_25,@Bwagz @UniversalORL So you gonna just go with the jail house pose lol +06/17/2018,Sports_celeb,@RSherman_25,Happy Father’s Day to all the amazing Men out there setting an example for their kids and the men out there being f… https://t.co/2RQSYQYP6O +06/16/2018,Sports_celeb,@RSherman_25,RT @Michael31Thomas: Honored to serve the players https://t.co/4RrWCv089k +06/16/2018,Sports_celeb,@RSherman_25,@LossyP All good bro +06/16/2018,Sports_celeb,@RSherman_25,Opposite Day https://t.co/iD2mgX5sHU +06/16/2018,Sports_celeb,@RSherman_25,Great discussion at the @NFLPA offices today. Working to serve our players better. https://t.co/vbIoiMYKgN +06/16/2018,Sports_celeb,@RSherman_25,RT @ericwinston: Proud of the members of the EC here at the @nflpa offices speaking about the business of football. #pastpresentfuture http… +06/15/2018,Sports_celeb,@RSherman_25,They are gonna see ya light soon! https://t.co/6gotkjWJoK +06/15/2018,Sports_celeb,@RSherman_25,My brand new gear is hype😍 I'll even throw you free wristbands w/code JUNEGIFT18😏 . Just make sure you add them to… https://t.co/lmXMXAidbE +06/14/2018,Sports_celeb,@RSherman_25,@WatchJRoss They don’t lol. If anyone brought him they kids they are sick +06/14/2018,Sports_celeb,@RSherman_25,@WatchJRoss I’m done lmao 🤣😂 +06/14/2018,Sports_celeb,@RSherman_25,🤷🏾‍♂️ it’s life.... play hard ruffle some feathers ..... https://t.co/1i3ZbrvRvn +06/14/2018,Sports_celeb,@RSherman_25,😂🤣😂🤣 https://t.co/UPol1lC5Ia +06/13/2018,Sports_celeb,@RSherman_25,RT @MaioccoNBCS: Richard Sherman going through individual drills and helping Ahkello Witherspoon on final day of #49ers offseason program.… +06/13/2018,Sports_celeb,@RSherman_25,@Heisenberg415 Idk lol team issued +06/11/2018,Sports_celeb,@RSherman_25,It's not too late. You can still get Dad the perfect gift with expedited shipping👉🏿 https://t.co/CNKspogR5B https://t.co/zPuyRk15bz +06/11/2018,Sports_celeb,@RSherman_25,About to stream on @mixer with my boy @NoChillDe3zY @MikeDavisRB and @jay_ii_times https://t.co/7yNGXaqAeW +06/10/2018,Sports_celeb,@RSherman_25,@haha_cd6 I wish it was that easy for them to see. That a man has played at a certain level and deserves to be com… https://t.co/FiRftrxAvZ +06/10/2018,Sports_celeb,@RSherman_25,@realJayCarswell @haha_cd6 Obviously you don’t think winning is part of this business. The chances of winning go d… https://t.co/qHLmgQikBy +06/10/2018,Sports_celeb,@RSherman_25,@haha_cd6 No one does. If they can’t understand it they are just ignorant which wouldn’t be surprising +06/10/2018,Sports_celeb,@RSherman_25,"RT @DjCobreezy: July 1st At Thibodaux High School In Thibodaux,La @TrovonReed Presents His 1st Annual Celebrity Basketball Game Just Named…" +06/08/2018,Sports_celeb,@RSherman_25,"Celebrate the 4th Of July with my limited edition tee. Grab yours, only here👉🏿 https://t.co/S8IlWlV6sn 🎆🇺🇸 https://t.co/hXgwrQhHIa" +06/08/2018,Sports_celeb,@RSherman_25,@WaltThurm3 Right. Didn’t look right to them then 🤷🏾‍♂️ +06/07/2018,Sports_celeb,@RSherman_25,RT @BleacherReport: Malcolm Jenkins responds to Eagles being uninvited to White House solely using signs (via @SheilKapadia) https://t.co/z… +06/07/2018,Sports_celeb,@RSherman_25,@justjanr I appreciate tote service! +06/05/2018,Sports_celeb,@RSherman_25,@chrisyanke Thank you so much! +06/05/2018,Sports_celeb,@RSherman_25,It’s called Propaganda. It’s been used before but hey.... “those who forget history are doomed to repeat it” https://t.co/I5hcrmKafx +06/04/2018,Sports_celeb,@RSherman_25,@chrisyanke Preciate you!! +06/03/2018,Sports_celeb,@RSherman_25,RT @DrinkBODYARMOR: Own the octagon with #SuperiorHydration. Our newest flavor Knockout Punch is in stores now! 💪@ufc #ObsessedWithBetter h… +06/03/2018,Sports_celeb,@RSherman_25,RT @Team_Penske: 2nd pole of 2018 for @Blaney. #Pocono400 https://t.co/XcqgtAIuCO +06/03/2018,Sports_celeb,@RSherman_25,"RT @DrinkBODYARMOR: 🚨BREAKING🚨BODYARMOR now available at your local @7eleven! Orange Mango, Knockout Punch, Blackout Berry and Strawberry B…" +06/01/2018,Sports_celeb,@RSherman_25,@JuiceCheck44 @Quaski29 I think he got it out of your locker Juice. +05/31/2018,Sports_celeb,@RSherman_25,@Trent5Taylor @AdrianColbert27 🙄🙄🙄 +05/31/2018,Sports_celeb,@RSherman_25,@ithinkitwasCJ3 Sounds like your the problem 🤷🏾‍♂️ +05/30/2018,Sports_celeb,@RSherman_25,@AdrianColbert27 🤔🤔🤔🤔.....🧐🧐🧐......🤷🏾‍♂️🤷🏾‍♂️🤷🏾‍♂️....👌🏾👌🏾👌🏾 +05/30/2018,Sports_celeb,@RSherman_25,@RachelAmaryah Thank you +05/29/2018,Sports_celeb,@RSherman_25,Man they were goin! https://t.co/HCI84RcyFi +05/28/2018,Sports_celeb,@RSherman_25,@JCB_511 @jenniferleechan Done +05/28/2018,Sports_celeb,@RSherman_25,@AB_EMS05 @jenniferleechan @NinersNation Thank you +05/28/2018,Sports_celeb,@RSherman_25,@BygMan85 @jenniferleechan Thank you +05/28/2018,Sports_celeb,@RSherman_25,@RaytronHarris @highitsjesss @JulioXCI_LGND Lol Preciate that heads up but I’m in a forgiving mood +05/28/2018,Sports_celeb,@RSherman_25,@TylerNoble1 @ZachDiele12 Done +05/28/2018,Sports_celeb,@RSherman_25,@CeeJGomez @andrewb3 Done and congrats +05/28/2018,Sports_celeb,@RSherman_25,Final hours ⏰. Save on my gear while you can👉🏿 https://t.co/AR1NUErU3u https://t.co/63Id4nYvQE +05/28/2018,Sports_celeb,@RSherman_25,@averagejaypapi Much appreciated +05/28/2018,Sports_celeb,@RSherman_25,@leftymo @jenniferleechan Lmao good luck with that +05/28/2018,Sports_celeb,@RSherman_25,@breezyy77 It’s gonna be fun +05/28/2018,Sports_celeb,@RSherman_25,@EnreekayCampos @49ers It’s gonna be a fun ride +05/28/2018,Sports_celeb,@RSherman_25,@Hawk_Talk_ Thank you +05/28/2018,Sports_celeb,@RSherman_25,@betsyannfay Thank you I appreciate you guys still. +05/28/2018,Sports_celeb,@RSherman_25,@dperret2020 @GottaGetIt81 Was wondering how many you made? https://t.co/xMTcToQm87 +05/28/2018,Sports_celeb,@RSherman_25,@JazLail Well I don’t control his twitter lol only mine +05/28/2018,Sports_celeb,@RSherman_25,@AlecMarcus16 Pay them!!! +05/28/2018,Sports_celeb,@RSherman_25,@_ericdavis_ 🤷🏾‍♂️ +05/28/2018,Sports_celeb,@RSherman_25,@ShawnLeeMinor Just doing what I can +05/28/2018,Sports_celeb,@RSherman_25,@realsmoovelike @TroyLLF Respect +05/28/2018,Sports_celeb,@RSherman_25,@MikeDavisRB @FortniteGame I’m about to hop on +05/28/2018,Sports_celeb,@RSherman_25,@Hip_Arriaga Lol Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@IM_Stretch @SneakerWhorez Not blocked +05/28/2018,Sports_celeb,@RSherman_25,@Tlock20 @FlyingOrr Done +05/28/2018,Sports_celeb,@RSherman_25,@VI_MOBB @iBurnCookiez Done +05/28/2018,Sports_celeb,@RSherman_25,@adam_gronberg https://t.co/CUWpZVeggM +05/28/2018,Sports_celeb,@RSherman_25,@Chavez4L @Ferndoggy831 Done +05/28/2018,Sports_celeb,@RSherman_25,@VMascoe Thank you +05/28/2018,Sports_celeb,@RSherman_25,@JSiAirborne @therealSethI Done +05/28/2018,Sports_celeb,@RSherman_25,@chrisroth408 @cbrown2727 Done +05/28/2018,Sports_celeb,@RSherman_25,@GaetaJason @Its_Papas Done +05/28/2018,Sports_celeb,@RSherman_25,@rjmadrid @Chazperin Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@Ericwgreene1977 Thank you +05/28/2018,Sports_celeb,@RSherman_25,@TucsonFan4 @maiyahall Done +05/28/2018,Sports_celeb,@RSherman_25,@Ericwgreene1977 Hahaha prob because they cut me.... may want to talk to them +05/28/2018,Sports_celeb,@RSherman_25,@jtof49 @EnreekayCampos Done +05/28/2018,Sports_celeb,@RSherman_25,@realmarshall73 Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@2nQue @mikeybadaluco Done +05/28/2018,Sports_celeb,@RSherman_25,@_ericdavis_ Lol just a bit of a misunderstanding +05/28/2018,Sports_celeb,@RSherman_25,@Goat_Tom_Brady Wasn’t invited +05/28/2018,Sports_celeb,@RSherman_25,@TheDudeSisco @AlePlaysWStars Done +05/28/2018,Sports_celeb,@RSherman_25,@cougski I appreciate that. But they fired me. +05/28/2018,Sports_celeb,@RSherman_25,@McMahonProject Thank you +05/28/2018,Sports_celeb,@RSherman_25,@k_welk @JulioXCI_LGND No block +05/28/2018,Sports_celeb,@RSherman_25,@HoneyBadger49er @Mbone49ers Done +05/28/2018,Sports_celeb,@RSherman_25,@808Ace49 @MylesInSF Done +05/28/2018,Sports_celeb,@RSherman_25,@RoachTheSecond @NickCaroccia Done +05/28/2018,Sports_celeb,@RSherman_25,@Yoni_T @Raph4real Done +05/28/2018,Sports_celeb,@RSherman_25,@Hondo1731 Ur not blocked +05/28/2018,Sports_celeb,@RSherman_25,@travissouders Thank you +05/28/2018,Sports_celeb,@RSherman_25,@SeahawkScout Lmao I’m just keeping it 💯 +05/28/2018,Sports_celeb,@RSherman_25,@al3eexiisss You are kinda part of it +05/28/2018,Sports_celeb,@RSherman_25,@RANBOY_D_Go 🤷🏾‍♂️ +05/28/2018,Sports_celeb,@RSherman_25,@davidson_caleb Lol man I’m real +05/28/2018,Sports_celeb,@RSherman_25,I’m trying to find a way to unlock these niner fans. So if you have a friend that I have blocked tag them so I can… https://t.co/YEFF85Pcbi +05/28/2018,Sports_celeb,@RSherman_25,@GottaGetIt81 Greatness usually wins more than 40% of the finals they play in but hey. I guess there is someone for everyone +05/28/2018,Sports_celeb,@RSherman_25,@al3eexiisss If you are a marvel universe fan then shame on you! +05/28/2018,Sports_celeb,@RSherman_25,@Saulururur I was thinking that. It breaks so many rules.. +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss @JulioXCI_LGND See you then +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss @JulioXCI_LGND Done +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss Yea no one has sent me a list lol +05/28/2018,Sports_celeb,@RSherman_25,@DrJasonJohnson What are movies without special effects tho? +05/28/2018,Sports_celeb,@RSherman_25,@TheAceOfSpades3 I can’t say will Wheaton without thinking of Stevie on family guy saying it. +05/28/2018,Sports_celeb,@RSherman_25,@Jennster83 What did you think? +05/28/2018,Sports_celeb,@RSherman_25,@TheAceOfSpades3 Yea they have to put that cinematic touch on it. +05/28/2018,Sports_celeb,@RSherman_25,@samvalenti1 How?!?!?!? +05/28/2018,Sports_celeb,@RSherman_25,@dcalltheway88 I saw it! Really liked it +05/28/2018,Sports_celeb,@RSherman_25,@S0UL42 I’m going to read the book after. +05/28/2018,Sports_celeb,@RSherman_25,@ConnorHawks12 I really liked it. My wife didn’t. They tied together some loose ends +05/28/2018,Sports_celeb,@RSherman_25,@samvalenti1 Which one? +05/28/2018,Sports_celeb,@RSherman_25,@2KEEMdomCome Gonna have to check it out! +05/28/2018,Sports_celeb,@RSherman_25,At least Deadpool 2 was good. Still need to see Ready player 1 even though most say it’s nothing like the book. +05/28/2018,Sports_celeb,@RSherman_25,@TravisWeyand And got how many more calls? +05/28/2018,Sports_celeb,@RSherman_25,@notBryBry The fact that Boston has won every single game in this series at home by double digits is not a fact. T… https://t.co/2gI6uq6SAE +05/28/2018,Sports_celeb,@RSherman_25,@MarvinP253 U don’t need to. Just need to make the right calls at the right time. Back players off so they don’t… https://t.co/T7y2WRExtx +05/28/2018,Sports_celeb,@RSherman_25,@MurcBlu @vtmobilewash Correct. Just like to point it out +05/28/2018,Sports_celeb,@RSherman_25,@amolsachdev They have literally have won every game in Boston by double digits but all of a sudden Cleveland witho… https://t.co/fBnEFmYBlT +05/28/2018,Sports_celeb,@RSherman_25,So predictable.... +05/28/2018,Sports_celeb,@RSherman_25,@Tosscarli Nope just the non calls and over calls on certain ppl that dictate how hard you can play on defense but… https://t.co/PwfRiR7oJC +05/28/2018,Sports_celeb,@RSherman_25,And here it comes.... +05/28/2018,Sports_celeb,@RSherman_25,Hopefully the fourth is filled with “Let’em play” +05/28/2018,Sports_celeb,@RSherman_25,This game looks controlled 🙄.... the things that makes sports fun is the unpredictable nature.... this is predictab… https://t.co/gsL1U1cmUj +05/27/2018,Sports_celeb,@RSherman_25,@EliHarold_ Told you +05/27/2018,Sports_celeb,@RSherman_25,@1Tyvis 🤷🏾‍♂️ just wasting time +05/26/2018,Sports_celeb,@RSherman_25,@sonicsman Lmao let me know how that works out +05/26/2018,Sports_celeb,@RSherman_25,@JamesDockery31 Truth... +05/26/2018,Sports_celeb,@RSherman_25,@_bigplayslay23 Just wasting our time +05/26/2018,Sports_celeb,@RSherman_25,@EliHarold_ Graciously. They prob took him to get something to eat too +05/26/2018,Sports_celeb,@RSherman_25,@EliHarold_ Let me guess now. Hou vs. GS goes to 7. The NBA already knows it so why make us watch it. Let’s just… https://t.co/v87LumqKaS +05/26/2018,Sports_celeb,@RSherman_25,@qdiggs6 @AdrianColbert27 @cavs Just real. I don’t have a team In it but love seeing good basketball. They litera… https://t.co/lSy8IF0wp5 +05/26/2018,Sports_celeb,@RSherman_25,@LebadiahLonghrn @King_Guttah Lmao haha you have no idea +05/26/2018,Sports_celeb,@RSherman_25,@King_Guttah https://t.co/ZiMCvkMGLw +05/26/2018,Sports_celeb,@RSherman_25,@King_Guttah https://t.co/03ch5JJgJ1 +05/26/2018,Sports_celeb,@RSherman_25,It’s not fun to watch these NBA games when the game is called one sided. It’s so obvious. If they just wanted a g… https://t.co/YmncWN8E60 +05/26/2018,Sports_celeb,@RSherman_25,@RonboSports Yea it was it was good read +05/25/2018,Sports_celeb,@RSherman_25,@BournePoly11 You been going for it BR! Lmao +05/25/2018,Sports_celeb,@RSherman_25,@Jerky_Rice Going to check it out +05/25/2018,Sports_celeb,@RSherman_25,@Jordanalmeida_7 Read it multiple times +05/25/2018,Sports_celeb,@RSherman_25,@BayBCakes1101 Big sci-fi fan so I will check them out +05/25/2018,Sports_celeb,@RSherman_25,@ZOliverson Thank you!!! We will make you proud +05/25/2018,Sports_celeb,@RSherman_25,@tayloreigsti 👏🏾👏🏾👏🏾 +05/25/2018,Sports_celeb,@RSherman_25,Thank you so much for the suggestions!!! Gonna have some good reading! +05/25/2018,Sports_celeb,@RSherman_25,@NinersNation Thank you +05/25/2018,Sports_celeb,@RSherman_25,@JJFinesser Gonna check it out +05/25/2018,Sports_celeb,@RSherman_25,In need of a good novel to read on this flight. Any suggestions? +05/25/2018,Sports_celeb,@RSherman_25,@roofe39 @49ers 🙌🏾🙌🏾🙌🏾🙌🏾 +05/24/2018,Sports_celeb,@RSherman_25,@nancyholder Thank you!!! +05/24/2018,Sports_celeb,@RSherman_25,REWTEET if you're ready for a 3-day weekend!! 🙌🏾 Don't forget to shop my MDW Sale now https://t.co/ZXj0oi6G6O 🇺🇸 https://t.co/WvWC7yfXV5 +05/24/2018,Sports_celeb,@RSherman_25,@49ersSportsTalk Thank you +05/24/2018,Sports_celeb,@RSherman_25,Throwbacks! https://t.co/dTeaGD4Oep +05/24/2018,Sports_celeb,@RSherman_25,@Dimesbasketball 🤔🤔🤔 I like what you did there +05/24/2018,Sports_celeb,@RSherman_25,@1Tyvis @ahkello Yea he would be better off getting rid of an arm or leg than getting rid of her.... she’s like his better 2/3 +05/23/2018,Sports_celeb,@RSherman_25,@MaioccoNBCS https://t.co/srSCehyNo5 +05/22/2018,Sports_celeb,@RSherman_25,@Bwagz Preciate you brother +05/22/2018,Sports_celeb,@RSherman_25,Enjoying my time https://t.co/lZzLV5t28U +05/22/2018,Sports_celeb,@RSherman_25,"Some people hear Laurel, some people hear Yanny, have you heard about this giveaway👂 ? Enter now to win a signed ha… https://t.co/7J6sO4pnlY" +05/17/2018,Sports_celeb,@RSherman_25,Funny how people rush to judgement so quickly they can’t accept when the truth comes out so they sensationalize a l… https://t.co/owxOl6QGRu +05/15/2018,Sports_celeb,@RSherman_25,RT @DeionSanders: ATTENTION ALL HIGHSCHOOL ATHLETES please stop CHASING offers and chase GREATNESS! Chase a 3.5gpa or better. Chase good ma… +05/14/2018,Sports_celeb,@RSherman_25,RT @JimTrotter_NFL: Thanks to @DougBaldwinJr @RSherman_25 @MalcolmJenkins and @j_bademosi24 for allowing me to chronicle their push for cr… +05/14/2018,Sports_celeb,@RSherman_25,RT @DrinkBODYARMOR: #SuperiorHydration https://t.co/kjD2UniDPf +05/14/2018,Sports_celeb,@RSherman_25,@cchoatedvm 🙌🏾🙌🏾🙌🏾 +05/13/2018,Sports_celeb,@RSherman_25,@Official_tylerg @49ers @NFL @sfgov @49ersCommunity Looks great brother +05/13/2018,Sports_celeb,@RSherman_25,🙌🏾 https://t.co/Obczh5WhzA +05/13/2018,Sports_celeb,@RSherman_25,"RT @vSundblade: COME THROUGH TO THE #NOCHILLZONE AND DROP A FOLLOW FOR @NoChillDe3zY + +https://t.co/z5LNEQkGAk" +05/12/2018,Sports_celeb,@RSherman_25,"RT @NoChillDe3zY: Now live on @WatchMixer https://t.co/LsL2XVXS8f, come say what’s up" +05/12/2018,Sports_celeb,@RSherman_25,@BIrvin_WVU11 Bro you made my whole year!!! You are an example for everyone out there! Proud of you man +05/12/2018,Sports_celeb,@RSherman_25,Come on @TigerWoods !!!! https://t.co/yVcZUrOxPV +05/12/2018,Sports_celeb,@RSherman_25,RT @BIrvin_WVU11: From a kid that was told he would never be anything to a college graduate! It’s never too late to change ur life! https:/… +05/12/2018,Sports_celeb,@RSherman_25,@BIrvin_WVU11 congrats brother!!! +05/12/2018,Sports_celeb,@RSherman_25,@Hawkeyed12 👏🏾👏🏾👏🏾 +05/11/2018,Sports_celeb,@RSherman_25,@Da_DREAM47 @tarvarius2 Got you +07/01/2018,Sports_celeb,@CP3,UNFINISHED BUSINESS...RUN IT BACK 🤘🏾🚀 https://t.co/KwWcsp6lx6 +06/30/2018,Sports_celeb,@CP3,Took the kids to see #UncleDrew tonite!! Great movie and a great job by the entire cast! #CamrynLovedBigFella #LilChrisLovedUncleDrew +06/26/2018,Sports_celeb,@CP3,MVP!!!!!! ✊🏾🤘🏾 https://t.co/IO0StRAsNV +06/26/2018,Sports_celeb,@CP3,MVP!!!!!! ✊🏾🤘🏾 https://t.co/QyocWYFBl9 +06/24/2018,Sports_celeb,@CP3,Man we had so much fun playing @FamilyFeudABC! Thank you to @IAmSteveHarvey & team for having us!! Excited for you… https://t.co/U8CLHOx0x8 +06/23/2018,Sports_celeb,@CP3,"RT @WTRMLNWTR: Hoop Hard, Drink Clean. Proud of our partner @CP3 and his ""Go Hoop"" initiative, celebrate national basketball awareness day!…" +06/23/2018,Sports_celeb,@CP3,"RT @CoachDManning: “Basketball isn’t just about the bright lights, packed arenas, and highlight reels. Basketball is a way of life.” + +#goh…" +06/23/2018,Sports_celeb,@CP3,RT @CoachDManning: @gohoopday is a global basketball holiday. Participation is simple -- go play basketball and represent your game via so… +06/23/2018,Sports_celeb,@CP3,"RT @NBA: Up next, @CP3 stops by his old high school West Forsyth! #GoHoopDay https://t.co/IaEFXTl6hN" +06/23/2018,Sports_celeb,@CP3,RT @StateFarm: @CP3 @gohoopday Anyone can get involved in #gohoopday... even @CP3's State Farm agent. Find out how at https://t.co/zex18m11… +06/23/2018,Sports_celeb,@CP3,RT @Spalding: True believers ball together. The first ever global basketball holiday is going down tomorrow. Get out and hoop with @CP3 and… +06/23/2018,Sports_celeb,@CP3,RT @WakeMBB: Happy #GoHoopDay https://t.co/42PjCGwkoq +06/22/2018,Sports_celeb,@CP3,Congrats to my guys @WendellCarterJr @CollinYoungBull @CallMe_NonStop on turning your dreams to reality! Enjoy the… https://t.co/ilu4fiz9fp +06/21/2018,Sports_celeb,@CP3,Hosting the first ever @statefarm Showdown with my guy @AaronRodgers12 at the beautiful @MoheganSun next week!! Vis… https://t.co/7e21t8GfoX +06/20/2018,Sports_celeb,@CP3,"Can't imagine how I'm going to talk to my kids about this... To all parents reading this, please slow down and take… https://t.co/oRIjPRYrOK" +06/18/2018,Sports_celeb,@CP3,"Give the @gohoopday hotline a call to hear why I love the game. After the beep, tell me why you do, too! #GoHoopDay https://t.co/Nuj4MMrQ2D" +06/17/2018,Sports_celeb,@CP3,"To the OG of all OGs who has had my back from the very beginning, HAPPY FATHER’S DAY!! https://t.co/EkUoq3QmUH" +06/15/2018,Sports_celeb,@CP3,"On June 23rd, I’m launching @gohoopday, basketball’s first global holiday, as a way to celebrate the greatest game… https://t.co/ZGZqsCBQTn" +06/15/2018,Sports_celeb,@CP3,Bounce back. https://t.co/BKXKOkqftd +05/18/2018,Sports_celeb,@CP3,Prayers to the kids and families affected by today's tragedy. We need to do better by our children.… https://t.co/HJXbDNnNJZ +04/13/2018,Sports_celeb,@CP3,Stay The Course #RedNation 🤘🏾 https://t.co/Omu7DHM16L +04/11/2018,Sports_celeb,@CP3,@rhsmooth03 Right!! That’s where it all started ✊🏾 +04/11/2018,Sports_celeb,@CP3,Nobody left a mark on me like my grandfather. Thank you to @PlayersTribune and @Sharpie for the opportunity to shar… https://t.co/c322FmOzCL +04/11/2018,Sports_celeb,@CP3,The power of focus and persistence is real!! Congrats Andre Ingram on your NBA debut. Well deserved! https://t.co/U1MY9F1LOI +04/11/2018,Sports_celeb,@CP3,National Sibling Day! https://t.co/Eg7RAf9XtL +04/08/2018,Sports_celeb,@CP3,.@TheMasters Champ!!! Congrats @PReedGolf! https://t.co/U6PTEcKzHR +04/08/2018,Sports_celeb,@CP3,Roadtrip ready. Thank you @HOOKandALBERT 🙏🏾 https://t.co/vIeyOptomZ +04/08/2018,Sports_celeb,@CP3,Family Business https://t.co/UNifqYbv1U +04/06/2018,Sports_celeb,@CP3,Back like we’re in '07🤘🏾 https://t.co/Bx9qW5YZ4d +04/05/2018,Sports_celeb,@CP3,"RT @NickDePaula: Inside the delayed timeline and process of designing Chris Paul’s newest Jordan sneaker, the CP3.11. + +@CP3 becomes just th…" +04/05/2018,Sports_celeb,@CP3,My dream is that all kids have access to the same resources and grow up in a world full of opportunities.… https://t.co/p03Xtg0IK3 +04/04/2018,Sports_celeb,@CP3,"RT @WWPubRelations: As we commemorate #MLK50, please check out ""We Sing For Martin Luther King"", a beautiful tribute to Dr. King by Holly P…" +04/02/2018,Sports_celeb,@CP3,Rest In Power Queen. Your impact will forever be remembered and appreciated. https://t.co/nEObqp4dif +04/01/2018,Sports_celeb,@CP3,Not a bad way for me and my guy to do our first Final Four together!! Big Thank You to the Brunson family and way t… https://t.co/0TD0nT0hnu +03/31/2018,Sports_celeb,@CP3,#ad Had a blast with the students of C.E. King Middle School at the opening of their new library. In partnership wi… https://t.co/qkZzJEywVy +03/30/2018,Sports_celeb,@CP3,Dope!! Let me know how you like them @The_Raheel https://t.co/NyBTEpkJDd +03/30/2018,Sports_celeb,@CP3,Well deserved @jalenbrunson1!! Keep going 💪🏾 https://t.co/NSFC3mgyf6 +03/27/2018,Sports_celeb,@CP3,Congratulations are in order @MRobertsNBPA!! Thank you for everything- your leadership and guidance allow us to be… https://t.co/Tobluh3Nw6 +03/27/2018,Sports_celeb,@CP3,Am I the only one who plays HQ religiously??? #HQ #Trivia +03/27/2018,Sports_celeb,@CP3,Trey Burke and Kemba out here gettin at it!!!!!! #NBALeaguePass +03/24/2018,Sports_celeb,@CP3,Humbled and proud of this generation taking the lead. Their time is now. #MarchForOurLives https://t.co/6WpG7AxMKK +03/21/2018,Sports_celeb,@CP3,"RT @TheCrossover: Exclusive: For the first time, Chris Paul is playing in the new Jordan CP3.XI tonight at Portland (by @_JarrelHarris) htt…" +03/18/2018,Sports_celeb,@CP3,Blessed for the opportunity to hoop every day. Always humbling to be mentioned with all-time greats. 🙏🏾 https://t.co/JAxIduBeT0 +03/16/2018,Sports_celeb,@CP3,Congrats to @HerdMBB and Coach D’Antoni on the win... but leave us out of it!!! 😂😂 https://t.co/mDibBlsk7z +03/13/2018,Sports_celeb,@CP3,#ad The only people who get me like this are my teammates. https://t.co/gKxyT7wAPE +03/10/2018,Sports_celeb,@CP3,Count me in @DwyaneWade @carmeloanthony!! Will personally make sure Winston-Salem kids are in DC on the 24th and ne… https://t.co/176l1fs6gf +03/10/2018,Sports_celeb,@CP3,RT @carmeloanthony: .@DwyaneWade and I on the same page... Standing with the students of MSD - both of us come from hometowns where the vio… +03/10/2018,Sports_celeb,@CP3,RT @DwyaneWade: Spoke to my brother @carmeloanthony & we're standing w/ students from MSD. We both come from communities where gun violence… +03/07/2018,Sports_celeb,@CP3,What an amazing career for Team CP3 alumni @Gary11_Clark. Congrats on your great accomplishments. #POY #DPOY… https://t.co/s02bmQ600H +03/07/2018,Sports_celeb,@CP3,Congrats @GrWill2 on winning SEC Player Of The Year. Well deserved. #TeamCP3 #POY https://t.co/JMdcIgPrLV +03/07/2018,Sports_celeb,@CP3,❄️❄️❄️ https://t.co/QmPxghC2cj +03/06/2018,Sports_celeb,@CP3,From one set of parents to another.. thank you @anthonyanderson @TraceeEllisRoss definitely put a smile on Mama's f… https://t.co/p8roeLHHJe +03/05/2018,Sports_celeb,@CP3,Congrats Bean!!! Great accomplishment #BiggerThanBasketball https://t.co/cHFTteBmDF +03/05/2018,Sports_celeb,@CP3,Happy Birthday Mama!!! https://t.co/AwtIxQri3U +03/03/2018,Sports_celeb,@CP3,Prayers up for my bro @RickRoss 💪🏾 +03/02/2018,Sports_celeb,@CP3,W A K A N D A • F O R E V E R https://t.co/wttg6lqsz2 +03/02/2018,Sports_celeb,@CP3,👀 @fivefour https://t.co/844yUV1gi4 +03/01/2018,Sports_celeb,@CP3,4 Young Kings!!! 👑 #TheFutureIsBright https://t.co/S4T1DDVqEi +03/01/2018,Sports_celeb,@CP3,RT @spidadmitchell: Crazy how life changes @CP3 😂😂 https://t.co/Wz0VlJUAQT +02/28/2018,Sports_celeb,@CP3,"Grateful to have had the opportunity to sit down for a conversation with @united's @rhapsodymag @inkglobal! +Photo b… https://t.co/5h5S5iszTP" +02/27/2018,Sports_celeb,@CP3,C'mon @jharden13...get ya moms!! 🤦🏾‍♂️😂🤷🏾‍♂️ https://t.co/wroWn3bLKg +02/24/2018,Sports_celeb,@CP3,#ad My new @StateFarm agent and I are on another level. Rematch @JHarden13??? https://t.co/63Mjp9AFsj +02/24/2018,Sports_celeb,@CP3,Runs in the family!! 😂🤘🏾#GoTexanDay https://t.co/DXvYoyYnRh +02/23/2018,Sports_celeb,@CP3,Thank you @steinersports and @NetSuite for a great conversation tonight! https://t.co/Agg5ha6Al9 +02/22/2018,Sports_celeb,@CP3,RT @ALSTDI: @CP3 takes the #ALSPepperChallenge to support research at @ALSTDI! 🌶🔥❤️🙌 https://t.co/FURDSFRKlA https://t.co/aDFyzF5ZIp +02/20/2018,Sports_celeb,@CP3,"RT @RobertIger: The world has embraced Black Panther, which has obliterated expectations, broken records & shattered myths. Powerful storyt…" +02/18/2018,Sports_celeb,@CP3,Dope set up at the @Xbox barbershop at #OneCourt! Had a great time playing #XboxOneX against @KarlTowns for charity… https://t.co/ScGrJocVhs +02/17/2018,Sports_celeb,@CP3,Productive day at work yesterday! Congrats and more importantly THANK YOU to @MRobertsNBPA and the entire @TheNBPA… https://t.co/sneguBN6hM +02/17/2018,Sports_celeb,@CP3,"Happy Birthday my love!! My only hope is that I can make you smile as much as you make me, the kids and everyone el… https://t.co/xvCoxsg2dG" +02/16/2018,Sports_celeb,@CP3,I’m talking basketball and culture at #SpaldingBackcourt tomorrow. Stop by or follow @Spalding on Facebook to watch… https://t.co/2ZI37SOzog +02/15/2018,Sports_celeb,@CP3,"We’re bringing you the second annual CP3 Classic for teams 12U, 14U, 15U and 17U! Head over to… https://t.co/r89SiNdVCG" +02/15/2018,Sports_celeb,@CP3,RT @BarackObama: We are grieving with Parkland. But we are not powerless. Caring for our kids is our first job. And until we can honestly s… +02/14/2018,Sports_celeb,@CP3,Happy 35th to my big brother @cjpaul14 !! Side by side since 85’.... https://t.co/f9rOE2wU91 +02/12/2018,Sports_celeb,@CP3,Get Top on the phone! @TopDawgEnt https://t.co/Dl0gqq46SN +02/11/2018,Sports_celeb,@CP3,Love you my brother!! RIP🙏🏾 #SualBop https://t.co/id6ZKPyIKK +02/08/2018,Sports_celeb,@CP3,W A Y N E S W O R L D 🤷🏾‍♂️ https://t.co/AIr8HjcYSn +02/06/2018,Sports_celeb,@CP3,Congratulations on an inspiring career my brother 🙏🏾 @realtuffjuice https://t.co/kgAfTfwzEq +02/04/2018,Sports_celeb,@CP3,Y’all already know 🤘🏾 https://t.co/6xfK4YWPpk +02/01/2018,Sports_celeb,@CP3,This Sunday!! Tune in at 2PM EST to catch our @StateFarm @PBATour Celebrity Invitational on @espn! 🎳 https://t.co/iE5qyhYGyw +01/31/2018,Sports_celeb,@CP3,History!!! 🤘🏾@JHarden13 https://t.co/NWwD4zYJqk +01/30/2018,Sports_celeb,@CP3,Can’t wait to see this movie!!! https://t.co/lcdSSEFVnP +01/30/2018,Sports_celeb,@CP3,The annual #CP3Classic is BACK!! Make sure to visit https://t.co/CtVP47EwnV to get your team registered! +01/28/2018,Sports_celeb,@CP3,Really like watchin Terry Rozier hoop...plays hard on both sides! +01/28/2018,Sports_celeb,@CP3,Congrats on 25K my brother!!!! #Brotherhood #STAYME7O https://t.co/DDThWYkMaH +01/27/2018,Sports_celeb,@CP3,PARENTS X DENIM 🤷🏾‍♂️ #NOLA https://t.co/KXnUzI3PrS +01/25/2018,Sports_celeb,@CP3,BIG TIME future ahead!! #CarolinaBoyz https://t.co/HdiNsk8OqZ +01/24/2018,Sports_celeb,@CP3,Let’s WORK!! https://t.co/q3DfSx2xlQ +01/24/2018,Sports_celeb,@CP3,30K!!! That’s a lot of buckets!!! Congrats my brother! #Brotherhood https://t.co/Ijmnv7ml7n +01/23/2018,Sports_celeb,@CP3,🚀 https://t.co/uQp17lfBfQ +01/21/2018,Sports_celeb,@CP3,"Not everything that is faced can be changed, but nothing can be changed until it is faced. - James Baldwin💡 https://t.co/X9dnKMosQx" +01/19/2018,Sports_celeb,@CP3,Teammates for a few years but FAMILY for life! #WeTalkHoopALLDay #Mr6thMan #WhatsUpFam @JCrossover https://t.co/4PuUvyeXFx +01/18/2018,Sports_celeb,@CP3,Happy birthday to a real one ✊🏾 https://t.co/AibuzSuLTM +01/16/2018,Sports_celeb,@CP3,FACTS my brother @willpowerpacker 🙌🏾 https://t.co/jCTpQRHgz8 +01/15/2018,Sports_celeb,@CP3,"Proud of our work with the W.K. Kellogg Foundation. Tune in tmw at +6:30pm CST to celebrate our common humanity.. an… https://t.co/uYPQz8iuin" +01/15/2018,Sports_celeb,@CP3,Injustice anywhere is a threat to justice everywhere - MLK +01/13/2018,Sports_celeb,@CP3,Always nice catching up with friends on the road! @MichaelPhelps @mrsnicolephelps https://t.co/pcXn3mwtNK +01/12/2018,Sports_celeb,@CP3,.@TheofficialEG10 #NBAVote +01/12/2018,Sports_celeb,@CP3,.@CapelaClint #NBAVote +01/12/2018,Sports_celeb,@CP3,.@JHarden13 #NBAVote +01/12/2018,Sports_celeb,@CP3,.@carmeloanthony #NBAVote +01/12/2018,Sports_celeb,@CP3,.@DwyaneWade #NBAVote +01/12/2018,Sports_celeb,@CP3,.@KingJames #NBAVote +01/11/2018,Sports_celeb,@CP3,🙏🏾🙏🏾🙏🏾 #16K https://t.co/5lS1a3H7lf +01/09/2018,Sports_celeb,@CP3,Congrats to Sophia Santangelo on setting a school record with 9 three pointers!! @s_santangelo3 @franksantange11 https://t.co/YUD61TSzNY +01/09/2018,Sports_celeb,@CP3,"RT @MensFitness: Chris Paul has the @HoustonRockets thinking big this #NBA season. + +@NBA star @CP3 talks his key training method for stayin…" +01/08/2018,Sports_celeb,@CP3,"Great piece from my brother @QRich. Incredibly powerful. + +https://t.co/JSWh5EdMWy" +01/04/2018,Sports_celeb,@CP3,Crazy!!! Not every day you see a quadruple-double! 👌🏾 https://t.co/ScVxD1XUdD +01/01/2018,Sports_celeb,@CP3,Stepping into the new year the right way!! 🤘🏾#HappyNewYear https://t.co/G5s6ZmNYYF +12/30/2017,Sports_celeb,@CP3,Happiest of birthdays my brother 🙏🏾🙏🏾 #Brotherhood #BiggerThanBasketball https://t.co/IyWSpJFG8X +12/30/2017,Sports_celeb,@CP3,😉 https://t.co/9cyyccmNXz +12/27/2017,Sports_celeb,@CP3,#ad @StateFarm just dropped one of the greatest karaoke videos of all time. https://t.co/kivpF6ylMH +12/26/2017,Sports_celeb,@CP3,"#ad Now that y’all know how I get down, I’m putting the rest out there. Open to suggestions. I’d tell you to share… https://t.co/e6PuPyLgKk" +12/24/2017,Sports_celeb,@CP3,Nothing like the Holiday Spirit 😂🚀🤘🏾 https://t.co/bagYCtIEMu +12/24/2017,Sports_celeb,@CP3,"#ad If my new @StateFarm agent gives you a ride, you AT LEAST sing along to the chorus. Looking at you @JHarden13 👀 https://t.co/sby0CGNnfM" +12/23/2017,Sports_celeb,@CP3,RT @Gamevice: Hope you're feeling festive! We’re giving away 9 MEGA Holiday bundles just in time for the season. Enter for your chance to w… +12/23/2017,Sports_celeb,@CP3,Happy Holidays #FromThePlayers!! https://t.co/8x26RcQYtN +12/19/2017,Sports_celeb,@CP3,'Tis the season for buckets! #SweaterBall @Spalding https://t.co/TPhraiIiMR +12/19/2017,Sports_celeb,@CP3,Congrats Bean on a career that will be remembered for generations!! #Mamba #Ko8e24 https://t.co/ZkVWNdDx6C +12/19/2017,Sports_celeb,@CP3,Walking into 14 straight like.... https://t.co/5zRVkTb3Iv +12/17/2017,Sports_celeb,@CP3,Always an honor and a blessing to be mentioned with the greats 🙏🏾 https://t.co/jtr7BkfWoZ +12/17/2017,Sports_celeb,@CP3,Post Game #13🤘🏾🚀 https://t.co/tqSVOwcjjn +12/17/2017,Sports_celeb,@CP3,@coachdinogaudio Preciate that Coach! +12/16/2017,Sports_celeb,@CP3,🤷🏾‍♂️ @KingJames @TrevorAriza @aardodson https://t.co/lwgJ6oKSxE +12/13/2017,Sports_celeb,@CP3,Ending 2017 as one of the top @NBA players searched on @Google for the year. Thanks for the support! #YearInSearch… https://t.co/ZJ2OLIluWn +12/11/2017,Sports_celeb,@CP3,Mannnn it feels so good seeing my guy @VicOladipo playing the way he is! #AllStar +12/10/2017,Sports_celeb,@CP3,"RT @HoustonRockets: Red Nation representing all the way from Italy 🇮🇹! @CP3 hooked this fan up with his shoes. 🔥 + +#ThisIsWhyWePlay https://…" +12/08/2017,Sports_celeb,@CP3,Pull up N Wreck. https://t.co/iHJzm7dlrF +12/08/2017,Sports_celeb,@CP3,"RT @WakeForest: It’s @CP3 day! Free doughnuts & hot chocolate on Manchester Plaza, today from 11-2. #GoDeacs https://t.co/qE0LgqdIDj" +12/06/2017,Sports_celeb,@CP3,TEAMWORK 🚀 🤘🏾 https://t.co/kpPzztvPx1 +12/04/2017,Sports_celeb,@CP3,Dec 4 👑 🙏🏾 https://t.co/YtLtltU1Or +11/30/2017,Sports_celeb,@CP3,Different colors. Different Colleges. ONE family. #TeamCP3 #CP3XAE https://t.co/zxQDq0VPAN +11/29/2017,Sports_celeb,@CP3,"All winners have been chosen, but tickets for the @PBATour @StateFarm Celebrity Invitational are still available at… https://t.co/BXRUINGrbR" +11/29/2017,Sports_celeb,@CP3,Would be my pleasure to have you 3 attend! https://t.co/E4591grca6 +11/29/2017,Sports_celeb,@CP3,Going to have to pick one out of the four... https://t.co/2kHBqjHMkn +11/29/2017,Sports_celeb,@CP3,Only if you convince your boss on your own lol https://t.co/2ebxdOzlDq +11/29/2017,Sports_celeb,@CP3,Hope you enjoy it live! https://t.co/2f528Ib3Xb +11/29/2017,Sports_celeb,@CP3,Fair enough lol. See you Thursday! https://t.co/HFNAET7Un5 +11/28/2017,Sports_celeb,@CP3,"Alright folks, I'm giving away 5 pairs of tickets to Thursday's @PBATour @StateFarm Celebrity Invitational in Houst… https://t.co/WGKlrZWqhv" +11/23/2017,Sports_celeb,@CP3,All is well 🤘🏾 https://t.co/bCXFtWMqAF +11/23/2017,Sports_celeb,@CP3,That feeling when you make HISTORY!! Congrats @mbahamoute 🔥🤘🏾 https://t.co/8v1gzvx916 +11/21/2017,Sports_celeb,@CP3,🙏🏾 Papa Chilly #61 https://t.co/jeZnRIV0q6 +11/20/2017,Sports_celeb,@CP3,#WWE https://t.co/2ucTTIMqXV +11/19/2017,Sports_celeb,@CP3,RT @EvelynsKitchen: You should order thanksgiving from us. Because your thanksgiving will be good AF if you so.… https://t.co/yXaYzJm3Go +11/17/2017,Sports_celeb,@CP3,"It started off so innocent, had a vibe and I really started diggin it... 🚀🤘🏾🚀 https://t.co/h68X1jU0ga" +11/14/2017,Sports_celeb,@CP3,Great meeting tonite with the NBPA Foundation! @sergeibaka great to see you and excited about the work to be done! +11/13/2017,Sports_celeb,@CP3,I was thinking – how do I raise some money for Houston? And then it hit me. Moving sale. On @ebay. With @StateFarm.… https://t.co/a7wYJh41zn +11/12/2017,Sports_celeb,@CP3,GAME WINNER for my lil guy earlier!!!!! #SoccerSaturdays https://t.co/CM1lUVv6F9 +11/11/2017,Sports_celeb,@CP3,"""You can't look at it as a black and white issue, you have to look at it as a human issue"". + +Make sure to sign the… https://t.co/zpHizZ0zFW" +11/08/2017,Sports_celeb,@CP3,"Gotta be honest. I was a little worried about leaving @CliffPaul, but I should’ve known he’d come through with anot… https://t.co/TTsvlRBTRQ" +11/08/2017,Sports_celeb,@CP3,Porzingis sheeeeeeeesh +11/08/2017,Sports_celeb,@CP3,Came together with @StateFarm @NBACares @Jharden13 this weekend to say thanks & support Null and King Middle School… https://t.co/EqqECkB2l8 +11/06/2017,Sports_celeb,@CP3,RT @TheWNBPA: Today marks the beginning of our 20th YEAR as the FIRST female sports union #ThePowerOfTheW #WNBPA https://t.co/RWukZFlw18 +11/06/2017,Sports_celeb,@CP3,A lite 56 tho 🔥🔥 https://t.co/N4bmnNFASu +11/06/2017,Sports_celeb,@CP3,That’s not a flagrant 2... +11/04/2017,Sports_celeb,@CP3,#GoDEACS 🎩 https://t.co/7grTX44IGX +11/02/2017,Sports_celeb,@CP3,Having breakfast in atl this morning and ran into the legend herself @AllDecade14!! Use to love watching her as a kid! #RaiseTheRoof 🤘🏾 +11/02/2017,Sports_celeb,@CP3,Houston is as resilient as they come!! Congrats @astros on making history!! 🤘🏾 https://t.co/QXAVLC1Kvm +10/31/2017,Sports_celeb,@CP3,#TrueBelievers know being clutch doesn’t just happen. @spalding https://t.co/NWJ6TPGmct +10/30/2017,Sports_celeb,@CP3,This game is craaaaazzzzzyy!!!!! #WorldSeries2017 +10/29/2017,Sports_celeb,@CP3,Join me & @StateFarm in helping rebuild Houston school libraries with a book drive on 11/4. #ad Learn more:… https://t.co/rlnV9FBAao +10/26/2017,Sports_celeb,@CP3,Join me & @StateFarm in helping Houston. #ad Check out https://t.co/3navXk2F30 to find out how you can get involved… https://t.co/hWHixLwr0n +10/22/2017,Sports_celeb,@CP3,Trying to put them on to game!! 😆 https://t.co/BLG8Ci7DS4 +10/18/2017,Sports_celeb,@CP3,I've said it before and I'll say it again - basketball is my life! Proud to be able to give u guys a glimpse of fre… https://t.co/2OJhSIk5Ti +10/17/2017,Sports_celeb,@CP3,"It begins tonight. #Chapter3 + +https://t.co/6ClYbaqq0I" +10/14/2017,Sports_celeb,@CP3,Keep going @Astros!! +10/12/2017,Sports_celeb,@CP3,He kills me 😂😂 @gamevice https://t.co/75hQeKOkBc +10/05/2017,Sports_celeb,@CP3,Big Shot @MooreMaya!! +10/05/2017,Sports_celeb,@CP3,This WNBA Finals game is sooooo good!!!! +10/03/2017,Sports_celeb,@CP3,HAPPY BIRTHDAY to the one who really made BALLisLIFE for me and big bro @cjpaul14! Love You Pops!!! #CP1… https://t.co/WlxeVRpRbv +10/03/2017,Sports_celeb,@CP3,Can't get enough of these bags!! https://t.co/KfWhwxjXrc if you're trying to get yours before we're out.… https://t.co/XjqYhI5Wka +10/02/2017,Sports_celeb,@CP3,My thoughts and prayers are with all those affected by this horrific incident. #PrayForVegas https://t.co/OXxvjxfseR +10/02/2017,Sports_celeb,@CP3,Appreciate y'all!! Talk again soon. +10/02/2017,Sports_celeb,@CP3,CP3.VI’s https://t.co/zrzphdumoJ +10/02/2017,Sports_celeb,@CP3,to time travel for sure https://t.co/E2CStuL3WA +10/02/2017,Sports_celeb,@CP3,don't let being young be an excuse. https://t.co/1bIkbY9MJ2 +10/02/2017,Sports_celeb,@CP3,"Jay, Wayne, .... https://t.co/BP08iHiADh" +10/02/2017,Sports_celeb,@CP3,Games of Thrones & Power https://t.co/F3AMLaE5gN +10/02/2017,Sports_celeb,@CP3,her big ol' head 😂😂😉 https://t.co/f0jUPiYr5t +10/02/2017,Sports_celeb,@CP3,yessir! been a fan since the Clemson days https://t.co/hE60NQZLQe +10/02/2017,Sports_celeb,@CP3,Harlem Nights! https://t.co/aPBbwUwIiH +10/02/2017,Sports_celeb,@CP3,I absolutely do. bout to be 1-3 after this week #smh https://t.co/jgctBNxdJG +10/02/2017,Sports_celeb,@CP3,it varies... but usually gospel https://t.co/4F2INDqasX +10/02/2017,Sports_celeb,@CP3,BOJANGLES #Tre4 https://t.co/VqSYOTPCLk +10/02/2017,Sports_celeb,@CP3,Of course https://t.co/QsUhddrxr8 +10/02/2017,Sports_celeb,@CP3,the food is BOMB! but I gotta be careful cuz I got that fat gene.... https://t.co/3DuR0kIiUS +10/02/2017,Sports_celeb,@CP3,Yesirrrr if they lower the goal! 🤷🏾‍♂️ https://t.co/qrIUHsFC5Z +10/02/2017,Sports_celeb,@CP3,“I can’t wait to get home and watch SportsCenter” https://t.co/FDsbBJprhi +10/02/2017,Sports_celeb,@CP3,the FANS!! but I'll let you know once I link up with the homie @paulwallbaby and get my grill🤘🏾 https://t.co/BZveMWULFY +10/02/2017,Sports_celeb,@CP3,Just getting back on the court. Ain’t nothin like COMPETING! https://t.co/wA546EAp4r +10/02/2017,Sports_celeb,@CP3,I’m well! Preseason is here so I’m stuck to the tv all night....hope ur good boss https://t.co/jz9HVPIZf4 +10/02/2017,Sports_celeb,@CP3,Damn autocorrect!! Meant to say Lynx vs Sparks.* +10/02/2017,Sports_celeb,@CP3,Man these girls be hoopin'! Lynx vs Parks #WNBAFinals #WatchMeWork +10/02/2017,Sports_celeb,@CP3,Happy 24th birthday young king 👑 #Ajax https://t.co/M8GOOTdWUp +09/28/2017,Sports_celeb,@CP3,Where Style meets Function. Shop my new capsule collection now at https://t.co/KfWhwxjXrc. #HookAndAlbertxCP3 https://t.co/gKSmG8PFhJ +09/28/2017,Sports_celeb,@CP3,Respect! https://t.co/RXLYY448tO +09/25/2017,Sports_celeb,@CP3,C H A P T E R 3 🙏🏾🤘🏾✊🏾🔥 https://t.co/jcIRE9PUNK +09/23/2017,Sports_celeb,@CP3,And I doubt he's man enough to call any of those players a son of a bitch to their face... +09/23/2017,Sports_celeb,@CP3,"With everything that's going on in our country, why are YOU focused on who's kneeling and visiting the White House??? #StayInYoLane" +09/22/2017,Sports_celeb,@CP3,Please support my brother @carmeloanthony as he helps the people of Puerto Rico with their hurricane relief efforts… https://t.co/QUSzCXFi8k +09/22/2017,Sports_celeb,@CP3,Hope they got an A!! https://t.co/08yTF84EZq +06/30/2018,Sports_celeb,@CaroWozniacki,Title #29 !! Thank you Eastbourne for a great week!! Next stop @wimbledon https://t.co/EQGhz6W9Yg +06/29/2018,Sports_celeb,@CaroWozniacki,Flying in to the finals here in Eastbourne!🌱💪🏻 https://t.co/iCAjW26lHL +06/28/2018,Sports_celeb,@CaroWozniacki,Happy to be thru to another semifinal here at Eastbourne ! https://t.co/TSDPpH3i2m +06/28/2018,Sports_celeb,@CaroWozniacki,Sad to be missing @WTA #TennisontheThames in London but there’s still work to be done in Eastbourne #tbt to past ev… https://t.co/F61GtdqOB0 +06/19/2018,Sports_celeb,@CaroWozniacki,I am thrilled to welcome Denmarks best formula one driver of all time @kevinmagnussen in our @statedrinks family!… https://t.co/JqHNB8nofW +06/18/2018,Sports_celeb,@CaroWozniacki,@Dlee042 Hahaha!! I love you! +06/18/2018,Sports_celeb,@CaroWozniacki,Life 😍🙏 https://t.co/LhXcLaSHyO +06/17/2018,Sports_celeb,@CaroWozniacki,Brought the whites out @wimbledon 🌱 #timhenman https://t.co/QOAnTbqtwF +06/16/2018,Sports_celeb,@CaroWozniacki,RT @TSorensen1: That's how we celebrate our first goal at the @FIFAWorldCup 🇩🇰🇩🇰😍 https://t.co/0sk9syzPRT +06/16/2018,Sports_celeb,@CaroWozniacki,Let’s gooooooo Danmark!!! +06/15/2018,Sports_celeb,@CaroWozniacki,I see you 👀😊 @CosmopolitanTR https://t.co/SxOz3Gmdmw +06/12/2018,Sports_celeb,@CaroWozniacki,Put my hiking shoes on 👟🏃🏼‍♀️ https://t.co/aXOF4acqGd +06/11/2018,Sports_celeb,@CaroWozniacki,"@caro_woz @AndersHaahr Maybe, just maybe, it had something to do with me wanting to keep it small 😉😊" +06/11/2018,Sports_celeb,@CaroWozniacki,Proud to continue my role as a @DubaiDutyFree ambassador for the 7th year! Looking forward to more adventures with… https://t.co/j3PisJzIf5 +06/09/2018,Sports_celeb,@CaroWozniacki,Bike ride thru Tuscany on #globalwellnessday 🚴🏼‍♀️🍝 #friends #lovinglife https://t.co/JUP4bHgc4q +06/06/2018,Sports_celeb,@CaroWozniacki,Create the answer. @adidas #HeretoCreate #createdwithadidas https://t.co/ftKtYVsY4x +06/04/2018,Sports_celeb,@CaroWozniacki,"Not the way I wanted the tournament to end, but always a pleasure playing in Paris! See you next time!! + +Au revoir,… https://t.co/oJl4t9CbKJ" +06/03/2018,Sports_celeb,@CaroWozniacki,"Smiling because it’s Sunday and I am still alive at the French Open. Back fighting tomorrow! @rolandgarros +.… https://t.co/KBmsHpQY9M" +06/02/2018,Sports_celeb,@CaroWozniacki,More 📸 from @Prestige_HK https://t.co/HVkjMhdKlN +06/02/2018,Sports_celeb,@CaroWozniacki,June @Prestige_HK cover! https://t.co/FC0DgjuBPa +06/01/2018,Sports_celeb,@CaroWozniacki,@Clijsterskim Where is this?? Looks amazing!! +05/31/2018,Sports_celeb,@CaroWozniacki,Very excited about my @CosmopolitanTR cover! Really enjoyed my time in Istanbul! https://t.co/VfuPJx7Fl4 +05/29/2018,Sports_celeb,@CaroWozniacki,How are non of the french channels showing Serena play right now?? +05/26/2018,Sports_celeb,@CaroWozniacki,Ok... Let’s regroup and come out firing in the second half. #YNWA +05/26/2018,Sports_celeb,@CaroWozniacki,Look through the #LympoChallenge hashtag! It’s mind-blowing to see all these people sweating and working so hard to… https://t.co/6PYCrbACIg +05/24/2018,Sports_celeb,@CaroWozniacki,Loved spending time with this little love bug today @OlympiaOhanian !! I think she liked my @ovvooptics sunglasses… https://t.co/3Phu0nrNBd +05/23/2018,Sports_celeb,@CaroWozniacki,Yoga in Paris! https://t.co/m7aVJbkxYa +05/21/2018,Sports_celeb,@CaroWozniacki,"So honored to be featured on the cover of @espn alongside the top athletes in the world! #WorldFame +. +. +. + +Hair… https://t.co/acc5BB8uZb" +05/14/2018,Sports_celeb,@CaroWozniacki,Exploring this beautiful city!😍 https://t.co/QqTaj7mMA4 +05/12/2018,Sports_celeb,@CaroWozniacki,Enjoyed exploring Saint Paul de Vence today with this one 😍❤️ @dlee042 https://t.co/fedMbWOkKQ +05/11/2018,Sports_celeb,@CaroWozniacki,@serenawilliams @HBO So pretty!! +05/07/2018,Sports_celeb,@CaroWozniacki,"Such an incredible honor to receive the Damehood of the Dannebrog order today! 🇩🇰 + +Stolt af at få ridderkorset af D… https://t.co/SnHsgDzlU0" +05/02/2018,Sports_celeb,@CaroWozniacki,Aww love you!❤️ https://t.co/YVGkKr7pVt +05/02/2018,Sports_celeb,@CaroWozniacki,Made sure to bring my fuel with me to Madrid! #statedrinks 💪🏻 https://t.co/sgrvtBmaJ0 +05/01/2018,Sports_celeb,@CaroWozniacki,https://t.co/TGSbvHXQi8 +05/01/2018,Sports_celeb,@CaroWozniacki,"It was a dream come true, thanks to everyone who came out to support! #championsbattle2018 https://t.co/7QqC30oq5C" +05/01/2018,Sports_celeb,@CaroWozniacki,16 years ago I had the honor of meeting @venuswilliams in Copenhagen and hit some tennis balls with her. Last night… https://t.co/UoucBR9QBe +04/29/2018,Sports_celeb,@CaroWozniacki,Happy birthday baby!! I’m so lucky to be able to call you my best friend! You always have my back and you make my l… https://t.co/WMurNhJvgx +04/24/2018,Sports_celeb,@CaroWozniacki,I meant at half time 😬 https://t.co/4h664Afnpg +04/24/2018,Sports_celeb,@CaroWozniacki,Sallllllaaaaaaaahhhhh!!!!!! +04/24/2018,Sports_celeb,@CaroWozniacki,First clay court match of the year in the books💪🏻 just in time to get back and watch Liverpool tonight!! 💪🏻 @LFC… https://t.co/nrbEZw9pk3 +04/21/2018,Sports_celeb,@CaroWozniacki,Positive vibes today at practice😎 #clay #iloveclay #mccc https://t.co/rVVt3Xon6h +04/20/2018,Sports_celeb,@CaroWozniacki,My dinner date is so cute ❤️ #nephew https://t.co/xPubO4nAqr +04/19/2018,Sports_celeb,@CaroWozniacki,Can’t believe it’s been 16 years since this pic was taken!Really excited @Venuseswilliams is coming back to Copenha… https://t.co/pdynjW3VzP +04/18/2018,Sports_celeb,@CaroWozniacki,"RT @WTA: ""I hate to lose. I love to win"" + +@CaroWozniacki takes us through her journey to Australian Open success--> https://t.co/7pwQQH2HDW…" +04/18/2018,Sports_celeb,@CaroWozniacki,I am delighted to announce a new partnership with Lympo.❤ Together we WILL change the world of sports and wellness!… https://t.co/LaxQhGzh07 +04/14/2018,Sports_celeb,@CaroWozniacki,Dress up time💃🏼 https://t.co/ncQNFmyutn +04/12/2018,Sports_celeb,@CaroWozniacki,Day at the beach!☀️🌊🔥 https://t.co/otkp6WdkqY +04/10/2018,Sports_celeb,@CaroWozniacki,Wish i was with all the supporters at the game today! +04/10/2018,Sports_celeb,@CaroWozniacki,What a great day to be a Liverpool supporter!! @LFC #gameday #ChampionsLeague #reds 💪🏻💪🏻 +04/09/2018,Sports_celeb,@CaroWozniacki,Day of shooting complete ✅ https://t.co/Dzo1UvOT7X +04/06/2018,Sports_celeb,@CaroWozniacki,Tennis reimagined on Seven Mile Beach! 🎾😎 #caymanislands https://t.co/riZUXLdD3x +04/05/2018,Sports_celeb,@CaroWozniacki,Yes it was awesome!! 💪🏻👌🏻 https://t.co/pgD6vQrCk2 +04/05/2018,Sports_celeb,@CaroWozniacki,Putting #AlphaBOUNCE BEYOND to the test. Discover it for yourself. https://t.co/AnrK9FEwot #CREATEDWITHADIDAS… https://t.co/5XvCjv655M +04/03/2018,Sports_celeb,@CaroWozniacki,Enjoying my home away from home @ResatSeafire #resatseafire @ovvooptics https://t.co/6VubGh8cOu +04/01/2018,Sports_celeb,@CaroWozniacki,My fiancé put on an Easter egg hunt for me this morning and I couldn’t have asked for a better way to start my day! #yesimabigkid #dontjudge +03/31/2018,Sports_celeb,@CaroWozniacki,#Alphabounce Beyond X @adidasrunning #createdwithadidas https://t.co/XifRdinK3x +03/30/2018,Sports_celeb,@CaroWozniacki,Wow. Thank you @Forbes for naming me the 8th most influential woman in sports and 1st athlete! What an honor! https://t.co/yjdAtZSSWk +03/28/2018,Sports_celeb,@CaroWozniacki,Don’t play games. Run them. The #AlphaBOUNCE BEYOND by @ADIDASRUNNING. #CREATEDWITHADIDAS https://t.co/mqeTjQrWq0 +03/27/2018,Sports_celeb,@CaroWozniacki,"RT @PlayersTribune: Day 27, @CaroWozniacki: 2018 @AustralianOpen Champion, 28 Career @WTA Singles Titles, Current WTA World No. 1 Player.…" +03/27/2018,Sports_celeb,@CaroWozniacki,"RT @adidasrunning: When the stakes are high, they create on the fly. +When their opponents tire, they bring the fire. +Alpha athletes don’t…" +03/26/2018,Sports_celeb,@CaroWozniacki,😎🎾👶🏼 https://t.co/FZoFcKZdk5 +03/25/2018,Sports_celeb,@CaroWozniacki,Family time☺️❤️🎾 https://t.co/sh95X8nq32 +03/24/2018,Sports_celeb,@CaroWozniacki,https://t.co/yd10mvxuMJ +03/23/2018,Sports_celeb,@CaroWozniacki,RT @Venuseswilliams: So excited to be back in #Copenhagen on April 30th playing @carowozniacki at #championsbattle2018 – and at the same ve… +03/21/2018,Sports_celeb,@CaroWozniacki,"💇🏼‍♀️ yes, no, maybe? https://t.co/ifnYWshd0Y" +03/19/2018,Sports_celeb,@CaroWozniacki,My girls holding court💪🏻🔥 #fisherisland @JennaGreen @faraleff https://t.co/QUGC5jyZh6 +03/15/2018,Sports_celeb,@CaroWozniacki,Wheels up to Miami!✈️ https://t.co/ZIMcjsnuRt +03/11/2018,Sports_celeb,@CaroWozniacki,Hanging with my son!🐶@indianwellstennisgarden @OVVOoptics https://t.co/Ct9ojse4uh +03/07/2018,Sports_celeb,@CaroWozniacki,Adding to my glam with these cool glasses! @OVVOoptics https://t.co/9cLDMb6zir +03/06/2018,Sports_celeb,@CaroWozniacki,Put on my best smile #VFOscars https://t.co/j5bO3gf1Jq +03/05/2018,Sports_celeb,@CaroWozniacki,Excited to announce my very first eye wear collection!! Check out the 11 new styles I designed in partnership with… https://t.co/M21ysGfwDf +03/05/2018,Sports_celeb,@CaroWozniacki,"Last night @vanityfair Oscars party! @dlee042 + +Dress: Honor +Jewelry: Chopard https://t.co/GkB5l7bSIO" +03/01/2018,Sports_celeb,@CaroWozniacki,Thanks @usanainc for continuing to help me feel my best by providing me with such quality products! #ad @teamusana… https://t.co/JY2srieVnk +02/25/2018,Sports_celeb,@CaroWozniacki,Had fun with my superstar hubby tonight at the @warriors game! @dlee042 https://t.co/J3wBtq6N7x +02/23/2018,Sports_celeb,@CaroWozniacki,Always focused https://t.co/22WIDkWhZO +02/21/2018,Sports_celeb,@CaroWozniacki,@lindseyvonn Good luck @lindseyvonn !! +02/14/2018,Sports_celeb,@CaroWozniacki,Happy Valentine’s Day my love! Thank you for making every day feels like Valentine’s Day! I love you ❤️👫 @Dlee042 https://t.co/nbuGSxwjNJ +02/12/2018,Sports_celeb,@CaroWozniacki,Girls night in Doha with @AngeliqueKerber https://t.co/BqSXXWREcp +02/07/2018,Sports_celeb,@CaroWozniacki,Hiking in the mountains with my ❤️ today @dlee042 #monaco https://t.co/LhlmRLg5hj +02/05/2018,Sports_celeb,@CaroWozniacki,Thank you @rolex for putting this special video together for me! https://t.co/WQGlgNsBsy +02/04/2018,Sports_celeb,@CaroWozniacki,"#repost from #troyzan + +My first ever @si_swimsuit shoot back in Captiva Island! https://t.co/NFwzB9Apkw" +02/03/2018,Sports_celeb,@CaroWozniacki,Proud to be able to represent my new sponsor @seafireresidences these past couple of weeks @australianopen. Obvious… https://t.co/onImPQlKnP +02/01/2018,Sports_celeb,@CaroWozniacki,"Excited to announce my partner @panzerglass , They’ll protect my phone and privacy wherever I go and create customi… https://t.co/NGoBnePbAn" +01/30/2018,Sports_celeb,@CaroWozniacki,https://t.co/WPNMe7TxCf +01/28/2018,Sports_celeb,@CaroWozniacki,Celebration day today🏆🍾 https://t.co/O3Uekp82No +01/27/2018,Sports_celeb,@CaroWozniacki,A dream come true!! @australianopen champion and new world #1 😘🏆 https://t.co/aA5pcOqDcy +01/25/2018,Sports_celeb,@CaroWozniacki,That finals feeling! @australianopen https://t.co/LuCTpt9gZI +01/21/2018,Sports_celeb,@CaroWozniacki,RT @AustralianOpen: Caroline Tweener-acki... #AusOpen https://t.co/Z4jLBR1zAu +01/17/2018,Sports_celeb,@CaroWozniacki,Still alive!💪🏻 +01/17/2018,Sports_celeb,@CaroWozniacki,"RT @AustralianOpen: Simply unbelievable. + +@CaroWozniacki claws her way back from 1-5 down in the final set to d #Fett 3-6 6-2 7-5. + +#AusO…" +01/14/2018,Sports_celeb,@CaroWozniacki,Hair trouble 😂 https://t.co/ih8YxyVFga +01/14/2018,Sports_celeb,@CaroWozniacki,It’s all smiles! The @australianopen is starting tomorrow💪🏻🎾 https://t.co/ye43QVkWOM +01/13/2018,Sports_celeb,@CaroWozniacki,One of the fellas today!😎@australianopen kids day! https://t.co/voI1alDneZ +01/11/2018,Sports_celeb,@CaroWozniacki,"My ride or die💙 @Dlee042 +#tbt https://t.co/dNAIHfIAnR" +01/09/2018,Sports_celeb,@CaroWozniacki,Great day at the office today! Back to #2 in the world and first hit at the @australianopen 💪🏻🎾 https://t.co/FWJSkF5dEn +12/31/2017,Sports_celeb,@CaroWozniacki,"Happy New Year from New Zealand! May the new year bring you all lots of love, laughter and happiness! ❤️ #hello2018 https://t.co/NeowNwh5jv" +12/30/2017,Sports_celeb,@CaroWozniacki,Stepping into summer for #AusOpen See more at @adidastennis #createdwithadidas https://t.co/WiGKPKw46w +12/29/2017,Sports_celeb,@CaroWozniacki,RT @tjevans252: Caroline Wozniacki arrived in Auckland this morning and headed straight to @ASB_Classic centre court for some practice. htt… +12/27/2017,Sports_celeb,@CaroWozniacki,Preparing for the new season with my favourite energy drink STATE. Drink to improve! #ad https://t.co/r4CaAksqMI +12/27/2017,Sports_celeb,@CaroWozniacki,"RT @adidastennis: Light fabrics for ⚡quick movement. +Introducing the Melbourne collection. #AusOpen https://t.co/rswhcDffPy" +12/25/2017,Sports_celeb,@CaroWozniacki,Merry Christmas and happy holidays from our family to yours🎄🤶🏻🎅🏻🐶 #christmassweatersonpoint https://t.co/AjtLBpvbf1 +12/25/2017,Sports_celeb,@CaroWozniacki,RT @JeremyGreenMD: Another fantastic Christmas party at Chapman Partnership for the Homeless thanks to my amazing sister @JennaGreen 🙏🏻🎄🙌🏻… +12/22/2017,Sports_celeb,@CaroWozniacki,Shopping spree today to help the families at @chapmanpartnership for the homeless in Miami. Looking forward to volu… https://t.co/DXu2DiZ7F3 +12/21/2017,Sports_celeb,@CaroWozniacki,3 million followers!! Thank you for all of your support!! 🎉🎊 https://t.co/rt9HcwkgTJ +12/20/2017,Sports_celeb,@CaroWozniacki,Made a friend in the Cayman Islands #stingraycity https://t.co/gXlelASLPW +12/18/2017,Sports_celeb,@CaroWozniacki,"RT @7tennis: It's been a MASSIVE year for @carowozniacki since we last saw her in 🇦🇺! + +3⃣ In the @WTA rankings +2⃣ Titles +1⃣ Engagement to @…" +12/16/2017,Sports_celeb,@CaroWozniacki,Target practice!🎾👊🏻 https://t.co/U9thKFuOam +12/14/2017,Sports_celeb,@CaroWozniacki,A ray of sunshine ☀️ https://t.co/UH8o78R8zY +12/11/2017,Sports_celeb,@CaroWozniacki,Beach day💁🏼‍♀️ #nofilter https://t.co/tXNnOY3qfT +12/11/2017,Sports_celeb,@CaroWozniacki,@AppleSupport my new iPhone X keeps restarting over and over.. I tried hard reset on my phone and reset all setting… https://t.co/t9HfUeWvVr +12/10/2017,Sports_celeb,@CaroWozniacki,Museum of ice cream date today!! #extrasprinkles https://t.co/QpK85MsLzQ +12/06/2017,Sports_celeb,@CaroWozniacki,Excited to be back on court training for the upcoming season! Thank you @usanainc for keeping me energized and heal… https://t.co/U06iPmPQD3 +12/05/2017,Sports_celeb,@CaroWozniacki,Proud to be the godmother of my little nephew! He is so adorable 😍❤️ https://t.co/mfXj8PxsaS +12/03/2017,Sports_celeb,@CaroWozniacki,We had an amazing time celebrating at our dear friends @ansomelskens and @madsstabergmadsen wedding! You guys are p… https://t.co/Ka8repRZmm +11/26/2017,Sports_celeb,@CaroWozniacki,Ps not our wedding! Photo booth fun! It'll take us a little longer than a couple of weeks to plan our wedding 😜 +11/26/2017,Sports_celeb,@CaroWozniacki,#Thankful https://t.co/yrN1ReJtz3 +11/24/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: Flashback to @CaroWozniacki's first shoot for #SISwim... https://t.co/147NlE7Nee https://t.co/G2mmtbDpAC +11/19/2017,Sports_celeb,@CaroWozniacki,"RT @iamisiahthomas: @Dlee042 congratulations on a great career and job well done, you made us all proud! #Champion on and off the court! Se…" +11/12/2017,Sports_celeb,@CaroWozniacki,Sunday funday! Go #Rams !! @dlee042 https://t.co/HsHqhvzkkc +11/12/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: .@CaroWozniacki had her biggest career win in Singapore, and that's why you voted her as the WTA's Player of the Month for October…" +11/09/2017,Sports_celeb,@CaroWozniacki,Safe to say it has been the most incredible couple of weeks in my life! So thankful! https://t.co/2OaiY4eshq +11/06/2017,Sports_celeb,@CaroWozniacki,"RT @TennisChannel: ""That's what I dreamed of when I was a kid..."" @CaroWozniacki always knew tennis was in her future. +This is her story. +@…" +11/03/2017,Sports_celeb,@CaroWozniacki,RT @Dlee042: She said yes!!! So thrilled to be engaged to my soulmate!!! ❤️💍 https://t.co/8Xltz5GeJc +11/03/2017,Sports_celeb,@CaroWozniacki,Happiest day of my life yesterday saying yes to my soulmate❤️💍 @Dlee042 https://t.co/TwDPJjoabA +11/02/2017,Sports_celeb,@CaroWozniacki,No filter needed! https://t.co/IfiCD59oBZ +10/30/2017,Sports_celeb,@CaroWozniacki,😘🏆 https://t.co/SUSqJlqBwS +10/29/2017,Sports_celeb,@CaroWozniacki,No better way to end the season than to win the Year End Championship!Thanks to my team and everyone who supported… https://t.co/peOmJOjlpk +10/22/2017,Sports_celeb,@CaroWozniacki,"RT @pamela_ho: On target! 🎯 @CaroWozniacki practising her serve ahead of her first match tomorrow. 🎾 @WTAFinalsSG + +#wtafinalssg #carolinew…" +10/21/2017,Sports_celeb,@CaroWozniacki,To say I was excited is an understatement!! @backstreetboys are back!! Amazing performance!! Loved it! See you in V… https://t.co/hx5JDcZdev +10/21/2017,Sports_celeb,@CaroWozniacki,RT @adidastennis: Consistency defined. @CaroWozniacki @wta #MyGame #wtafinals https://t.co/dFLUYUoqrr +10/20/2017,Sports_celeb,@CaroWozniacki,In love with this body suit!! https://t.co/3JzXqvE5TW +10/20/2017,Sports_celeb,@CaroWozniacki,Today's red carpet in Singapore! https://t.co/kwLddIjOyB +10/20/2017,Sports_celeb,@CaroWozniacki,"Judge me all you want, but I am SUPER pumped to see the @backstreetboys tomorrow in Singapore!!!! 😃💃🏼" +10/18/2017,Sports_celeb,@CaroWozniacki,Night session 🎾😎 https://t.co/Pe87usuF63 +10/18/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: Seven singles finals! +Joint most Top 10 wins on tour! + +@CaroWozniacki​'s Season Highs! @SAPSports​ #WTAFinals https://t.co/kJHUJqn…" +10/16/2017,Sports_celeb,@CaroWozniacki,Started off my day right here in Thailand! #namaste https://t.co/s8R9pY4RTO +10/10/2017,Sports_celeb,@CaroWozniacki,In action today in Hong Kong 🎾 https://t.co/MaBJlRmYTH +10/07/2017,Sports_celeb,@CaroWozniacki,Sightseeing in Hong Kong with dad !😎☺️ https://t.co/Iaob6G2Hhe +10/02/2017,Sports_celeb,@CaroWozniacki,"RT @LVMPD: For families looking to locate missing loved ones, please call 1-866-535-5654." +10/02/2017,Sports_celeb,@CaroWozniacki,Heartbreaking what happened in Las Vegas! My thoughts and prayers go out to everyone affected! +10/01/2017,Sports_celeb,@CaroWozniacki,Proud and excited to have qualified for the WTA finals in Singapore!! See you there 😃 https://t.co/dpvoodfxrJ +09/28/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: Two @DubaiDutyFree ambassadors, two titles! 🏆 + +Congrats @CaroWozniacki and @ZhangShuai121! 👏🎉 https://t.co/LekrGYxIS7" +09/24/2017,Sports_celeb,@CaroWozniacki,Keeping the streak alive! 10th year in a row with at least one title! 🏆 https://t.co/7whksjotzk +09/24/2017,Sports_celeb,@CaroWozniacki,Flying high! China bound! ✈️🎾 https://t.co/cb86Ca1nM2 +09/24/2017,Sports_celeb,@CaroWozniacki,That winning smile!! 😃😁 26th career title!! Woohoo!! 🍾🏆 #7thtimelucky https://t.co/a4qjfiUj3Q +09/23/2017,Sports_celeb,@CaroWozniacki,"No matter where I am or what I eat, I know @usanainc is helping me stay on top of my nutritional needs. #ad… https://t.co/gSx1animW6" +09/23/2017,Sports_celeb,@CaroWozniacki,Is there only 10 episodes of the @Suits_USA season 7?? +09/22/2017,Sports_celeb,@CaroWozniacki,Can someone explain to me exactly what the Laver Cup is and the rules? Looks interesting ! +09/19/2017,Sports_celeb,@CaroWozniacki,"Love the shopping in Tokyo – it’s my second favorite place to shop… after @DubaiDutyFree, of course! https://t.co/1MBVYzJXyF" +09/17/2017,Sports_celeb,@CaroWozniacki,I can't believe it's been exactly a year since we shot these! 👙😊❤️ @SI_Swimsuit #family https://t.co/auNOnBslwc +09/16/2017,Sports_celeb,@CaroWozniacki,NYC days https://t.co/wjN6KjVOOb +09/14/2017,Sports_celeb,@CaroWozniacki,Exploring NYC today Danish style on the 🚴🏻 https://t.co/Qhf2e0OlVk +09/13/2017,Sports_celeb,@CaroWozniacki,Yess lets goo!! @LFC #ynwa +09/13/2017,Sports_celeb,@CaroWozniacki,First that goal and now no foul or penalty?! +09/08/2017,Sports_celeb,@CaroWozniacki,Photobomb 🙄😁❤️ https://t.co/gxIm5fe20B +09/08/2017,Sports_celeb,@CaroWozniacki,"RT @hannahbjeter: People in The Virgin Islands are running out of fuel, water and food. People are dying!!! People… https://t.co/fNqm5qafsV" +09/04/2017,Sports_celeb,@CaroWozniacki,The big 🍎! 👀🚁 https://t.co/xo3V4qMrr7 +08/31/2017,Sports_celeb,@CaroWozniacki,"THANK you NYC for always showing me so much love!! Not the result that I wanted, but I'll work hard and come back e… https://t.co/dZCnssPtTa" +08/29/2017,Sports_celeb,@CaroWozniacki,I must have said something funny😜😁 Arthur Ashe stadium is a cool place to hang😎 @usopen https://t.co/RyrtOD97iF +08/26/2017,Sports_celeb,@CaroWozniacki,"RT @usopen: ""I was six years old, first time in New York, and I loved it here."" 🗽 -@CaroWozniacki + +We ❤️ you too, Caro! https://t.co/mTM3Fy…" +08/24/2017,Sports_celeb,@CaroWozniacki,Had fun on the @TODAYshow this morning! #NBC #NYC https://t.co/H9iEZiAZmU +08/23/2017,Sports_celeb,@CaroWozniacki,RT @VogueRunway: Tennis star @CaroWozniacki knows how to stand out on the court. https://t.co/59HQFDK2tN +08/22/2017,Sports_celeb,@CaroWozniacki,"RT @AMarshallSport: No. 5 seed @CaroWozniacki is the first player to hit inside the temporary Louis Armstrong Stadium. Welcome back to NYC,…" +08/21/2017,Sports_celeb,@CaroWozniacki,Watching the solar eclipse and bike riding in NYC with my love😎🚴🏻 @dlee042 https://t.co/NpnedxYl2n +08/18/2017,Sports_celeb,@CaroWozniacki,"RT @CincyTennis: Hmmm what should we do during this rain delay?... + +How about have @CaroWozniacki serenade us with some @charlieputh?! 😍 ht…" +08/15/2017,Sports_celeb,@CaroWozniacki,Love my new Z.N.E pulse hoodie!! #giftedbyadidas #THEPULSEOF tennis @adidas https://t.co/65fzFBbbdW +08/15/2017,Sports_celeb,@CaroWozniacki,Admiring my shot 😎😁🏀 https://t.co/aiynzWJX8Y +08/09/2017,Sports_celeb,@CaroWozniacki,Flying in Toronto 🙃 https://t.co/G0wCGKl0T5 +08/07/2017,Sports_celeb,@CaroWozniacki,US Open 2017 @adidas @StellaMcCartney 🔥🎾 https://t.co/zfLXrWK8sY +08/06/2017,Sports_celeb,@CaroWozniacki,"My outfit for the @usopen will be bright, and I love it! 😍☺️ @adidas @stellamccartney https://t.co/N7uJ7biEDY" +08/05/2017,Sports_celeb,@CaroWozniacki,A moment and day that I will never forget and forever be truly grateful for! Last years opening ceremony at the Rio… https://t.co/tbtoVHXQ03 +08/03/2017,Sports_celeb,@CaroWozniacki,Amazing!! Congratulations 😍😍😍 https://t.co/NRu3bA8sFW +07/29/2017,Sports_celeb,@CaroWozniacki,5th finals of the year tomorrow!! Let's gooo!! #båstad https://t.co/gEDe61xI7X +07/27/2017,Sports_celeb,@CaroWozniacki,"RT @WTA_insider: No player has won more matches since the US Open than @CaroWozniacki. + +How Caro got her groove back: +https://t.co/A5M3XPZf…" +07/26/2017,Sports_celeb,@CaroWozniacki,Holiday over. Time to get back to business. #SponsoredAthlete #TeamUSANA #USANAlifestyle @usanainc https://t.co/wJJeacw4Kx +07/25/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: We can't get enough of @CaroWozniacki's #SISwim 2017 photos! https://t.co/TEbeIm8rL2 https://t.co/2sAWiO2bOt +07/23/2017,Sports_celeb,@CaroWozniacki,😊👰🏽💍☀️💒❤️ https://t.co/1uRZoVJACH +07/23/2017,Sports_celeb,@CaroWozniacki,"When one of your dearest and oldest friends gets married, it's time to celebrate!What an amazing and beautiful coup… https://t.co/Ho0mE0wR85" +07/18/2017,Sports_celeb,@CaroWozniacki,Portofino was beautiful😍❤️ https://t.co/pNjmdFzl9S +07/14/2017,Sports_celeb,@CaroWozniacki,We got there..... Eventually 😂 @Dlee042 https://t.co/h5FTDlkdLV +07/12/2017,Sports_celeb,@CaroWozniacki,Truly proud and excited that i am now partnering with my absolute favourite energy drink STATE! @statedrinks… https://t.co/f66VF1kuqz +07/11/2017,Sports_celeb,@CaroWozniacki,Thank you for all your sweet birthday wishes! Had a great day!! #27 https://t.co/vmKMihDUqr +07/08/2017,Sports_celeb,@CaroWozniacki,"Tough battle today, moving on to week 2! @Wimbledon https://t.co/W1TiQgxZ3I" +07/05/2017,Sports_celeb,@CaroWozniacki,2017 @ESPN #Bodyissue https://t.co/d6bAzIG9D9 +07/04/2017,Sports_celeb,@CaroWozniacki,Loved the support out there on Centre court today and adore my new @adidas by @stellamccartney outfit 😍👗 https://t.co/a5eogaeH6e +07/03/2017,Sports_celeb,@CaroWozniacki,Beliebing😎 @dlee042 https://t.co/kIv76HM7Xn +06/30/2017,Sports_celeb,@CaroWozniacki,4th finals of the year tomorrow!!💪🏻💪🏻🌱 https://t.co/wtHQnKzawE +06/27/2017,Sports_celeb,@CaroWozniacki,Proud and excited for this one! Thank you #ESPNBody for the cover!! https://t.co/M3e3thYfoR +06/26/2017,Sports_celeb,@CaroWozniacki,Preparing🌱🍀😃💪🏻 https://t.co/Tls6D3ya92 +06/20/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: June 20, 2009 📆 + +@CaroWozniacki wins 5th #WTA title at #AegonInternational Eastbourne! https://t.co/vgUHhMFwLb" +06/19/2017,Sports_celeb,@CaroWozniacki,Happy 25th anniversary @usanainc !! #teamusana https://t.co/6EI14dmhmp +06/15/2017,Sports_celeb,@CaroWozniacki,"Good day at the ""office"" today! Working off that extra vacation weight 💪🏻🎾😛 https://t.co/JoCt0b4GBd" +06/13/2017,Sports_celeb,@CaroWozniacki,"Sad to leave paradise, but feeling recharged and ready to get back to work 💪🏻 https://t.co/366aQKVHj8" +06/11/2017,Sports_celeb,@CaroWozniacki,"RT @andyroddick: Fact. I never played a match for 4 days ... Rafa lost 35 games in an entire slam. Isner lost 68 in one set, and won that…" +06/11/2017,Sports_celeb,@CaroWozniacki,Having the best time with my love! #Sardinia https://t.co/XSCDQimpHn +06/03/2017,Sports_celeb,@CaroWozniacki,Feels good to be in the second week of @rolandgarros 💪🏻💪🏻 https://t.co/pGG1ubKtDg +05/31/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: 💋 🦄 😄 https://t.co/dSjghxSinn +05/29/2017,Sports_celeb,@CaroWozniacki,"What are some great restaurants in Paris?? Nothing too fancy, but great food☺️" +05/27/2017,Sports_celeb,@CaroWozniacki,I wonder if I made that 🤔 #preparation #rolandgarros https://t.co/1eUMBX4lsy +06/28/2018,Sports_celeb,@RondaRousey,Strap in for the action thrill ride of the summer. Watch the new restricted trailer for #Mile22 – in theaters Augus… https://t.co/qNdjkZ0LUr +06/28/2018,Sports_celeb,@RondaRousey,"RT @WWEUniverse: #MoustacheMountain's opponents have just learned the meaning of #ShockTheSystem! + +@KORcombat @AdamColePro @roderickstrong…" +06/27/2018,Sports_celeb,@RondaRousey,The definition of a war zone is an interesting thing. Don’t miss the new #Mile22 trailer TOMORROW. https://t.co/Wumu5jyXfO +06/26/2018,Sports_celeb,@RondaRousey,My #mcm the #goatfather @travisbrownemma 😍🐐 https://t.co/smLjMRYYjU +06/24/2018,Sports_celeb,@RondaRousey,Meet the newest additions to #BrowseyAcres: Totes and Rio! #TotesMyGoats https://t.co/2UPbWOQUcK +06/24/2018,Sports_celeb,@RondaRousey,Always a student 🙇🏼‍♀️🙏🏼 ajstylesvwwe #MemoriesInTheBank #mitb https://t.co/lqpuFYuQHJ +06/24/2018,Sports_celeb,@RondaRousey,Congrats to our onefightmanagement fighter luckyboyferd on his latest victory @goldenboyboxing 👏🏼👏🏼👏🏼👏🏼 https://t.co/lqgHmBcl4G +06/23/2018,Sports_celeb,@RondaRousey,25 days @AlexaBliss_WWE https://t.co/nItoF7DdCz +06/22/2018,Sports_celeb,@RondaRousey,26 days @AlexaBliss_WWE https://t.co/zshrPsEas1 +06/21/2018,Sports_celeb,@RondaRousey,27 days @AlexaBliss_WWE https://t.co/z4RdrXULLf +06/20/2018,Sports_celeb,@RondaRousey,28 days @AlexaBliss_WWE https://t.co/yywZZyC7DX +06/19/2018,Sports_celeb,@RondaRousey,29 days @AlexaBliss_WWE https://t.co/rcHVNqkavn +06/19/2018,Sports_celeb,@RondaRousey,@RealKurtAngle I sincerely apologize for my… https://t.co/bfUov5uHRf +06/18/2018,Sports_celeb,@RondaRousey,Apparently cheaters DO prosper in the @wwe - not… https://t.co/72UQxxpJug +06/18/2018,Sports_celeb,@RondaRousey,About last night.... I know I had @niajaxwwe… https://t.co/wTsGulN36K +06/17/2018,Sports_celeb,@RondaRousey,Today’s the day!!!! #MoneyintheBank is… https://t.co/5tsIXm2cgX +06/17/2018,Sports_celeb,@RondaRousey,Competing with @WWE around the world is the best part of my “job!” So excited to return to Australia for WWE Super… https://t.co/S8Zvihgg9v +06/15/2018,Sports_celeb,@RondaRousey,#moneyinthebank is just around the corner!!!… https://t.co/TikGewUGVC +06/12/2018,Sports_celeb,@RondaRousey,"@niajaxwwe unlike you, trying to challenge me… https://t.co/GlkMFbYUxf" +06/11/2018,Sports_celeb,@RondaRousey,#quotephase https://t.co/dcGrwaMhEG +06/10/2018,Sports_celeb,@RondaRousey,"This is an immense honor, to not only take part… https://t.co/RRSlbYkhBD" +06/05/2018,Sports_celeb,@RondaRousey,@natbynature Hoping you’re feeling okay after… https://t.co/R48GhroivG +06/03/2018,Sports_celeb,@RondaRousey,https://t.co/DfbuflAiH1 +06/02/2018,Sports_celeb,@RondaRousey,Sharks are friends 🦈 get ready to celebrate the… https://t.co/IF0HkB2EEP +06/01/2018,Sports_celeb,@RondaRousey,June 17th... #MITB #MoneyInTheBank #NiavsRonda https://t.co/5GMJOjuhYC +06/01/2018,Sports_celeb,@RondaRousey,RT @roderickstrong: Please follow the link and bid! The money I receive from this I will be donating to https://t.co/gvg023oF63 in honor of… +05/29/2018,Sports_celeb,@RondaRousey,"I know what @wwe stands for .... +#WalkWithElias https://t.co/hq2xkIzd75" +05/29/2018,Sports_celeb,@RondaRousey,"Thanks for the lesson @niajaxwwe, be ready to… https://t.co/yXBr8P0mPM" +05/28/2018,Sports_celeb,@RondaRousey,"Anyone looking to adopt a doggie? + +https://t.co/FSXKJXdkmQ" +05/27/2018,Sports_celeb,@RondaRousey,"Richmond Virginia.... Jesus be a raindrop ☔️ cause it is HOT today! +https://t.co/M7vKIhkxIM" +05/27/2018,Sports_celeb,@RondaRousey,Making shark friends.... yes that’s me in the… https://t.co/JEJKexu4vc +05/27/2018,Sports_celeb,@RondaRousey,I officially want a Chilean Horse after this… https://t.co/MhI3Wa0eNJ +05/26/2018,Sports_celeb,@RondaRousey,"#SlurpingisSexy #nostrawplease + +The Death of the Plastic Straw - National Geographichttps://apple.news/Ae4v297LgSkuoCi9qT0kxIQ" +05/22/2018,Sports_celeb,@RondaRousey,Funny thing is we could have been great friends… https://t.co/w3EQGxO1EL +05/20/2018,Sports_celeb,@RondaRousey,"Love this poster by kris_artz +Can’t wait for… https://t.co/fML8Jcnt8r" +05/20/2018,Sports_celeb,@RondaRousey,I get by with a little help from my friends… https://t.co/hrAviP9N6M +05/20/2018,Sports_celeb,@RondaRousey,What an incredible week! Merci Paris for the… https://t.co/nXZfj7emti +05/19/2018,Sports_celeb,@RondaRousey,Thank you Turin for all the warmth and hospitality!!🙏🏼❤️🇮🇹 https://t.co/yT754lPNTv +05/18/2018,Sports_celeb,@RondaRousey,Holy Moly we had fun in Vienna!!! Huge thank… https://t.co/8vxOu2iXl8 +05/17/2018,Sports_celeb,@RondaRousey,Geneva 🇨🇭 was and absolute blast! It was so fun… https://t.co/ZpXvjO0A8Q +05/16/2018,Sports_celeb,@RondaRousey,"RT @WWE: .@RondaRousey will make her U.K. in-ring debut in London's @TheO2 on Wednesday, Aug. 29, as part of a special, one-night-only @WWE…" +05/15/2018,Sports_celeb,@RondaRousey,Great to be in the company of these women and… https://t.co/tbVusRcSlk +05/15/2018,Sports_celeb,@RondaRousey,Thank you to the pit crew who made me look… https://t.co/XupSalMq6m +05/15/2018,Sports_celeb,@RondaRousey,"There’s always another option… Check out the trailer for #Mile22 - coming soon to theaters. +https://t.co/DKMp4ilgrq" +05/14/2018,Sports_celeb,@RondaRousey,This challenge came earlier than expected... but I was born… https://t.co/HRawoH0kx8 +05/14/2018,Sports_celeb,@RondaRousey,"This challenge came earlier than expected... but I was born ready...I’ll see you at #MITB, @NiaJaxWWE. https://t.co/DPy0sY5hPG" +05/14/2018,Sports_celeb,@RondaRousey,Loving this NYC weather!!! At Radio City with the ladies @niajaxwwe… https://t.co/I5dzMqhbMp +05/14/2018,Sports_celeb,@RondaRousey,At the #NBCUupfront with @wwe !! https://t.co/Iwdwe8t2iS +05/14/2018,Sports_celeb,@RondaRousey,I don’t use filters often.... but when I do... I #DoItWithFlair… https://t.co/OlxSkorBuv +05/13/2018,Sports_celeb,@RondaRousey,Airport bubble gum blowing contest vs @LoveLeeJ #whatsthisgamecalled… https://t.co/Ms0r71wjbJ +05/13/2018,Sports_celeb,@RondaRousey,"Happy Mother’s Day to the most impressive, loving, hardworking,… https://t.co/7L5Dh3YMD1" +05/11/2018,Sports_celeb,@RondaRousey,#TIL #TodayILearned your beneficial bacteria make up 85% of your… https://t.co/xp6JTW7yMj +05/11/2018,Sports_celeb,@RondaRousey,Big congrats to my Sweat Sisters signing with @wwe!!!… https://t.co/nFfsdlkL5o +05/04/2018,Sports_celeb,@RondaRousey,Me and @LoveLeeJ ecstatic to be on location filming for #SharkWeek this… https://t.co/u1B9T3OOwt +05/04/2018,Sports_celeb,@RondaRousey,"Still can’t believe the first show I’ve ever produced, #WhyWeFight, is… https://t.co/3UHNsyDpJv" +05/01/2018,Sports_celeb,@RondaRousey,Honored to get the support of our champ @niajaxwwe 🙏🏼🥋❤️ https://t.co/156NepGKhj +04/29/2018,Sports_celeb,@RondaRousey,#oldheadshotday https://t.co/UTliMRAWzP +04/27/2018,Sports_celeb,@RondaRousey,Proudly supporting @TitusONeilWWE and Millions around the world for #Payitforwardday On April 28… https://t.co/2C3gdGvMGX +04/25/2018,Sports_celeb,@RondaRousey,"#Mile22 red carpet at #cinemacon - +Look for it’s release August 3rd! +Hair @thisisbabe1 +Makeup… https://t.co/iBXt9KhByH" +04/25/2018,Sports_celeb,@RondaRousey,"Hittin the red carpet with my dudes! @mark_wahlberg @iko_uwais pberg44 +Big thanks to the pit… https://t.co/qRtF6i6CkU" +04/25/2018,Sports_celeb,@RondaRousey,So fun getting the gang back together again!!! Seems like just yesterday I was sneaking away… https://t.co/IIoowE0J1c +04/25/2018,Sports_celeb,@RondaRousey,Always an honor and privilege to share a stage with the lovely @laurencohan especially to… https://t.co/zzfXpicUaS +04/24/2018,Sports_celeb,@RondaRousey,"@mark_wahlberg is always director Peter Berg's first option, but in #Mile22 he's the… https://t.co/Z6RcbykvZT" +04/24/2018,Sports_celeb,@RondaRousey,RT @Fandango: Find out more about #Mile22: https://t.co/KcFBRiRMAk https://t.co/pXKjYWEBju +04/24/2018,Sports_celeb,@RondaRousey,"RT @Fandango: .@markwahlberg is always director Peter Berg's first option, but in #Mile22 he's the government's strong-armed third option.…" +04/24/2018,Sports_celeb,@RondaRousey,Denying the crimes of the past only shed more light on what was lost. The Armenian Genocide will… https://t.co/BPyA9H86Ys +04/24/2018,Sports_celeb,@RondaRousey,#RowdyHart 🥋❤️ https://t.co/WUCZhRrxiE +04/19/2018,Sports_celeb,@RondaRousey,@natbynature showing me how to do the sharpshooter at santino_bros - back when I was still… https://t.co/VSI7pue3cm +04/18/2018,Sports_celeb,@RondaRousey,Proud of our #OneFightManagement fighter @vanesboxing stepping up to fight our friend @gggboxing on 3 weeks notice… https://t.co/E4ry8WBob2 +04/17/2018,Sports_celeb,@RondaRousey,Kosoto Gari #judo https://t.co/EAoNH00rsm +04/17/2018,Sports_celeb,@RondaRousey,"Some folks are wise and some are otherwise. + +-Tobias Smollett https://t.co/kNAJQHwDmY" +04/17/2018,Sports_celeb,@RondaRousey,#quotephase https://t.co/yGNZpxTkZ8 +04/17/2018,Sports_celeb,@RondaRousey,Congratulations on an impressive victory your first night back on #Raw @natbynature!… https://t.co/HEXvrVdQD6 +04/17/2018,Sports_celeb,@RondaRousey,A friend in need is a friend indeed ... welcome to #Raw @natbynature https://t.co/nRmts7xBrO +04/13/2018,Sports_celeb,@RondaRousey,"Thank you @BellaTwins and @NatbyNature for being so cool and cheering me on!! #girlpower + +https://t.co/kEaiqxhAIt" +04/13/2018,Sports_celeb,@RondaRousey,Try walking into the Mercedes Benz Superdome the first time to a sight like that and not tear up https://t.co/Chhseg4J5x +04/13/2018,Sports_celeb,@RondaRousey,"#WrestleMania was just the beginning. It's time to get #RowdyInEurope with @WWE! +#WWEGeneva 5/16 +#WWEVienna 5/17… https://t.co/3T1z1Tx27z" +04/12/2018,Sports_celeb,@RondaRousey,The you langlitzleathers @iammikaze and @AlejandroStyles @nazoboxing and @gfcdiamond for… https://t.co/r6p1PL16IW +04/10/2018,Sports_celeb,@RondaRousey,Hope I made you proud Hot Rod... https://t.co/nWiPD7XzIl +04/10/2018,Sports_celeb,@RondaRousey,I have many strengths.... but forgiveness isn’t one of them #SorryNotSorry #DontMessWithRowdy #Raw https://t.co/BC1ACGG1cD +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 🙏🏼 https://t.co/jQC1XAn2oQ +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 🤯😆🤩 https://t.co/zXQSABOLiG +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 was amazing.... not sure what repercussions are waiting for @RealKurtAngle and I… https://t.co/VaH8x7CfKo +04/09/2018,Sports_celeb,@RondaRousey,Thanks @RealKurtAngle for being the best partner and teammate I could ever have for my @wwe… https://t.co/yaf2oXDpFA +04/09/2018,Sports_celeb,@RondaRousey,Wow...thank you @RealKurtAngle the @wwe universe and New Orleans for an unforgettable night… https://t.co/RyaZ8q5I5r +04/08/2018,Sports_celeb,@RondaRousey,So proud of @joannamma and @rosenamajunas fighting their hearts out and representing all women and all fighters ton… https://t.co/Bm49tFTU45 +04/08/2018,Sports_celeb,@RondaRousey,Congrats to the new @wwenxt champion @qosbaszler!!!!! #4horsewomen #andthenew https://t.co/9NcwPmQQ4T +04/07/2018,Sports_celeb,@RondaRousey,My❤️ https://t.co/dnfHQZN8Z6 +04/07/2018,Sports_celeb,@RondaRousey,"RT @7GenGames: In New Orleans this weekend?Come hang out with us at @7gengames meetup - Saturday, noon - 2 pm. @RondaRousey won’t be there,…" +04/07/2018,Sports_celeb,@RondaRousey,"#WWEHOF +Thanks @Stello_Official for my custom dress. +Jewelry: kukkajewelry +Styling:… https://t.co/x949HhDiOC" +04/07/2018,Sports_celeb,@RondaRousey,ricflairnatureboy WOOOOOO!!!!!!! https://t.co/uBHiyoSE2J +04/03/2018,Sports_celeb,@RondaRousey,“Your pain is the breaking of the shell that encloses your understanding.” Khalil… https://t.co/boXmAqCKB2 +04/03/2018,Sports_celeb,@RondaRousey,#TrustFundTough https://t.co/5ZUAzX2G4p +04/03/2018,Sports_celeb,@RondaRousey,"Take all the cheap shots you want @StephMcMahon - +I can take it. +Along with your left 💪🏼 +See… https://t.co/gcBFO4HUDh" +04/03/2018,Sports_celeb,@RondaRousey,"Only the dead have seen the end of war. + +-George Santayana https://t.co/XEvunyQz1P" +04/03/2018,Sports_celeb,@RondaRousey,Atlanta 🍑❤️🙏🏼 already can’t wait to come back!! Thank you guys for the warm southern welcome!!! https://t.co/NxUvYyk4Fx +04/03/2018,Sports_celeb,@RondaRousey,I met another Rousey last night!! https://t.co/qnCQfx0ZHg +04/01/2018,Sports_celeb,@RondaRousey,@muhammadali 🙌🏼 https://t.co/axDjrxhdU3 +03/30/2018,Sports_celeb,@RondaRousey,#prune @AlejandroStyles @thisisbabe1 rietsunku https://t.co/WfQpmnoXO1 +03/29/2018,Sports_celeb,@RondaRousey,maxeffortmuscle #TodayILearned You have more bacteria cells than human cells in your body! https://t.co/mAmwPde73Q +03/27/2018,Sports_celeb,@RondaRousey,Thank you @thisisbabe1 rietsunku and @AlejandroStyles for getting me all prettied up for my… https://t.co/uAIDUJ73CE +03/27/2018,Sports_celeb,@RondaRousey,Thank you Cleveland 🙏🏼❤️ https://t.co/ZbjeYp7A4n +03/27/2018,Sports_celeb,@RondaRousey,"Apparently warm welcomes come few and far between in the @wwe +#absolution #raw @realpaigewwe… https://t.co/IoMXjCLo4N" +03/26/2018,Sports_celeb,@RondaRousey,@Jarrius happy 16th birthday!!!!! 🎂 looking forward to meeting you at #wrestlemania !! +03/26/2018,Sports_celeb,@RondaRousey,#roadtowrestlemania continues #april8th #NOLA https://t.co/io66EmrHKn +03/26/2018,Sports_celeb,@RondaRousey,Always a student 🙏🏼 #roadtowrestlemania https://t.co/HjugIdC4QE +03/22/2018,Sports_celeb,@RondaRousey,My Ev-er-y-THANG 😍 https://t.co/41OZyhdAnn +03/20/2018,Sports_celeb,@RondaRousey,Thank you @DanaBrookeWWE’s for the warm welcome and #wrestlemania34 warm up last night 😉… https://t.co/8mgPDfXhnc +03/20/2018,Sports_celeb,@RondaRousey,Holy Moly Dallas was fun last night!! 🙏🏼❤️ #dontmesswithtexas https://t.co/D2UhW8opzh +03/18/2018,Sports_celeb,@RondaRousey,I know got a lot of catching up to do. But I’m not afraid of hard work. I got the very best in… https://t.co/5L8s7SjXur +03/18/2018,Sports_celeb,@RondaRousey,"Safety first, then #teamwork #roadtowrestlemania https://t.co/0imafk4MkJ" +03/17/2018,Sports_celeb,@RondaRousey,"Rise & Game & Grind +Got some WoW time in with my Hubby @travisbrownemma before heading to… https://t.co/gMS5IUHaoh" +03/17/2018,Sports_celeb,@RondaRousey,Everything happens for a reason https://t.co/pRfb6ECwKV +03/16/2018,Sports_celeb,@RondaRousey,#NewDayRocks @xavierwoodsphd wwebige @TrueKofi https://t.co/1a37U7oR4u +03/15/2018,Sports_celeb,@RondaRousey,Congrats our #OneFightManagement fighter luckyboyferd getting signed to @goldenboyboxing !!!! https://t.co/2Sc6U8SRFb +03/13/2018,Sports_celeb,@RondaRousey,"heeezooo and @thisisbabe1 conducting their own style of symphony for theellenshow +Jewelry:… https://t.co/WHOuKeb98c" +03/13/2018,Sports_celeb,@RondaRousey,"Always fun getting the #rontourage back together - especially for theellenshow !! +Hair… https://t.co/bnef2B2GJf" +03/13/2018,Sports_celeb,@RondaRousey,She is just amazing - thank you theellenshow for having me back on today! https://t.co/jk6DUn6vIV +03/12/2018,Sports_celeb,@RondaRousey,"RT @WWE: The moment you never thought would happen... + +@RondaRousey & @RealKurtAngle battle @StephMcMahon & @TripleH at @WrestleMania, stre…" +03/10/2018,Sports_celeb,@RondaRousey,#TotesMyGoat eating a rope #ClaytheGoat https://t.co/vGq6VwdPsd +03/10/2018,Sports_celeb,@RondaRousey,Finally!! #bluedrake #wow https://t.co/Vt6VETdZAS +03/09/2018,Sports_celeb,@RondaRousey,That’s totes my goat #eatingwood #hesagenius #paxthegoat https://t.co/TScJmH5EFi +03/09/2018,Sports_celeb,@RondaRousey,#internationalwomensday https://t.co/VQOouYkE5s +03/08/2018,Sports_celeb,@RondaRousey,"My @maxeffortmuscle supplement line is here! +I'm giving away ⬇️ +FREE T-Shirt + +FREE Product of Choice +to everyone w… https://t.co/Y9xQC6HG98" +03/06/2018,Sports_celeb,@RondaRousey,Standing reverse kata guruma #judo https://t.co/Bpy2Nz4rhK https://t.co/xeKpnRInLL +03/06/2018,Sports_celeb,@RondaRousey,Ura Nage #judo https://t.co/jOa0MI1PCj https://t.co/UrRGAejCcY +03/06/2018,Sports_celeb,@RondaRousey,Thank you for all the love tonight Milwaukee 🙏🏼❤️ https://t.co/KCtbqkT7nX +03/06/2018,Sports_celeb,@RondaRousey,Respect your olympians. Or we’ll make you respect us. See you at #WrestleMania34 https://t.co/ujjVDVJw14 +03/06/2018,Sports_celeb,@RondaRousey,RT @cainmma: Thanks to @rondarousey and @travisbrownemma for the shirt. My daughter will love it until I get my own “El Toro” @WWE shirt. G… +03/04/2018,Sports_celeb,@RondaRousey,😍 #TeamBrowsey https://t.co/XRDPHxJwSS +03/04/2018,Sports_celeb,@RondaRousey,It was an honor getting inducted into the International Sports Hall of Fame today alongside my… https://t.co/GSiLckcDSS +03/01/2018,Sports_celeb,@RondaRousey,When you #NoSell surprise @travisbrownemma #marriedlife https://t.co/ROoQv5DzPG +02/27/2018,Sports_celeb,@RondaRousey,"1st day on the job... @stephaniemcmahon slaps me... +2nd day on the job... my fellow Olympian @therealkurtangle, an… https://t.co/dFS7rSzYWz" +02/26/2018,Sports_celeb,@RondaRousey,Apparently I have some “explaining to do” - Tune in to #Raw tonight to hear it @wwe https://t.co/ZP2TMIKYDA +02/26/2018,Sports_celeb,@RondaRousey,"Hell yeah @braunstowmanwwe!!!! 👊🏼💪🏼 +And that’s MY husband!! @travisbrownemma… https://t.co/a7qdUq2Yrd" +02/26/2018,Sports_celeb,@RondaRousey,"Hell yeah @braunstowmanwwe!!!! 👊🏼💪🏼 +And that’s MY husband!! @travisbrownemma… https://t.co/v7p9L0RDdn" +02/26/2018,Sports_celeb,@RondaRousey,Thank you Las Vegas for the passion and support last night... 🙏🏼 https://t.co/zwmWYI19fd +02/26/2018,Sports_celeb,@RondaRousey,Finally signed to @WWE ... the night definitely could have gone smoother though.... https://t.co/lyu2oGLBFb +02/25/2018,Sports_celeb,@RondaRousey,Love this edit by venomous_designs for #eliminationchamber tonight https://t.co/1s5Y71zR0X +02/25/2018,Sports_celeb,@RondaRousey,Ready for #eliminationchamber tonight!??!! I’m excited to finally sign my @WWE contract!!!! https://t.co/UM47zBOtJS +02/25/2018,Sports_celeb,@RondaRousey,Congrats to @nxtdrval @reggiego10 on their wedding! I’m honored I could have been a part of it… https://t.co/UkbDfceW9R +02/24/2018,Sports_celeb,@RondaRousey,"Favorite picture of my judo career, en route to winning my first World Cup at 19 - pic by David… https://t.co/8hBlWhlCD9" +02/21/2018,Sports_celeb,@RondaRousey,everything the light touches is our kingdom https://t.co/i1DaIUme4S +02/01/2018,Sports_celeb,@RondaRousey,I can’t tell you how much I appreciate all the birthday wishes 🙏🏼I was honestly expecting to… https://t.co/jOj4lUbQ38 +02/01/2018,Sports_celeb,@RondaRousey,"Thank you @MarinaShafir for this good morning pep talk 😂 #bfff + +https://t.co/2Haw3yyx3Z" +01/31/2018,Sports_celeb,@RondaRousey,My family in a nutshell 🥜😂 https://t.co/pcAXCFFfWZ +01/31/2018,Sports_celeb,@RondaRousey,#trafficjammin https://t.co/7BIDrnDvfX +01/29/2018,Sports_celeb,@RondaRousey,🤯😁😎 https://t.co/P5eCN36cs4 +01/29/2018,Sports_celeb,@RondaRousey,Just posted a photo https://t.co/fK1aLIUd4z +01/29/2018,Sports_celeb,@RondaRousey,My road to #wrestlemania begins https://t.co/ECrftMfF8T +01/29/2018,Sports_celeb,@RondaRousey,Gettin’ #Rowdy at #royalrumble https://t.co/A6a2n06TXG +01/29/2018,Sports_celeb,@RondaRousey,My favorite part of tonight - surprising my boys ❤️❤️❤️ @travisbrownemma https://t.co/nWFatvlTBn +01/27/2018,Sports_celeb,@RondaRousey,Enjoying some #Colombia cuisine with the #mile22 crew 🍵 #ajiaco https://t.co/BBAIP4efg3 +01/26/2018,Sports_celeb,@RondaRousey,Back on set #Mile22 #Bogota #Columbia https://t.co/ix0rFJrBr4 +01/25/2018,Sports_celeb,@RondaRousey,¡Hola Bogota! #mile22 https://t.co/9vvqFjDGV2 +01/18/2018,Sports_celeb,@RondaRousey,If you can’t tell my Roosters are super excited about me giving away a year’s supply of… https://t.co/dQaNfboRnA +12/31/2017,Sports_celeb,@RondaRousey,Watch #WhyWeFight on @go90Sports : https://t.co/4wdjSfCYVU +12/31/2017,Sports_celeb,@RondaRousey,https://t.co/Xadojai8Wl +12/12/2017,Sports_celeb,@RondaRousey,@kcstunts promising me my hair won't get set on fire 🙅🏼🔥 #NormalDayAtWork #2ndUnit #mile22 https://t.co/8u4ssHlDKy +12/01/2017,Sports_celeb,@RondaRousey,Our launch date is getting closer every day! Here's the latest preview for https://t.co/PsLSibFNz9… https://t.co/j55xWWZ5WI +11/30/2017,Sports_celeb,@RondaRousey,"""You sleepin' Ranger?"" barbellberserker #mile22 https://t.co/K0sDdnmqee" +11/24/2017,Sports_celeb,@RondaRousey,"Max Effort’s Black Friday is here!!  +Receive 50% off STORE WIDE! This will be an automatic… https://t.co/pup9C0bPSH" +11/10/2017,Sports_celeb,@RondaRousey,My amazing husband @travisbrownemma built #browseyacres gym in a matter of days 😍 thank you… https://t.co/dZQrrPqarr +11/09/2017,Sports_celeb,@RondaRousey,Thank you Abby and Asia for making my day!! ❤️🙏🏼 https://t.co/GMrWAOmc0a +11/09/2017,Sports_celeb,@RondaRousey,Thank you Charlie and Kathy Michael for this beautiful note 🙏🏼 https://t.co/kI3iwjvJZF +11/07/2017,Sports_celeb,@RondaRousey,That face you make before you realize there's a rewind button 😱#forza #4k #xboxonex https://t.co/Ib5woAuQNI +11/06/2017,Sports_celeb,@RondaRousey,Can’t wait to see all the excited fans at the @Microsoft store in NYC tonight @ 9pm to celebrate the launch of the #XboxOneX! +11/04/2017,Sports_celeb,@RondaRousey,We got to Demo the new #battleforazeroth expansion at #blizzcon - can't wait!!! https://t.co/YcAMDSPDLf +11/04/2017,Sports_celeb,@RondaRousey,I have since learned who techno Viking is 😂 #blizzcon #technodeathknight https://t.co/CT42U8vu1b +11/04/2017,Sports_celeb,@RondaRousey,Darkmoon Faire!!!! #BrowseyBlizzCon https://t.co/aLYqfIcP5d +11/04/2017,Sports_celeb,@RondaRousey,#blizzcon was a blast yesterday!!! #DeathKnights #WoW https://t.co/kQYPPPwlh4 +10/31/2017,Sports_celeb,@RondaRousey,You gotta get your hands on #AssassinsCreed and the new Xbox One X! Thank you @Xbox @rukizzel #XboxLiveSessions https://t.co/d1SiPEr1MO +10/28/2017,Sports_celeb,@RondaRousey,Just another day at #Browsey Ranch https://t.co/bJJEG6PLZ6 +10/25/2017,Sports_celeb,@RondaRousey,Check me out on 10/26 as I partner with @Xbox to feel true power & play #AssassinsCreed on Xbox One X… https://t.co/QVzmendhwR +10/24/2017,Sports_celeb,@RondaRousey,With Troy Boy and @marinashafir aka the most gorgeous and graceful mother you'll ever see https://t.co/BUsZcnmS01 +10/18/2017,Sports_celeb,@RondaRousey,https://t.co/TcuQQHDay0 +10/09/2017,Sports_celeb,@RondaRousey,My judo coach @JFloresPro isn't just a martial artist but a DOPE illustrative one too! Buy original art of his here… https://t.co/QQckr8aPLB +10/03/2017,Sports_celeb,@RondaRousey,Excited2announce Im partnering w/ @maxeffortmuscle A new fast growing line of nutritional supplements that I'll be… https://t.co/B3TG5e9XS0 +05/05/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/9IAzTh4cLV +05/04/2017,Sports_celeb,@RondaRousey,"Who is @roderickstrong ? part 2 + +https://t.co/CGXzneQOso" +05/03/2017,Sports_celeb,@RondaRousey,Hey guys I'm taking over the @nbc account today till my guest appearance on nbcblindspot tonight… https://t.co/pqa47IT2kN +05/02/2017,Sports_celeb,@RondaRousey,"Don't miss my nbcblindspot guest appearance airing this Wednesday, May 3rd at 8pm/7c on @NBC https://t.co/nZFv5zbXdB" +04/27/2017,Sports_celeb,@RondaRousey,"Quick promo for my @nbcblindspot guest appearance airing this Wednesday, May 3rd at 8pm/7c on @NBC https://t.co/PkSiDoceHN" +04/27/2017,Sports_celeb,@RondaRousey,"Who is @roderickstrong ? + +https://t.co/ihU2myR2Wa" +04/25/2017,Sports_celeb,@RondaRousey,102 year ago today was the beginning of the #armeniangenocide - 1.5 million men women and… https://t.co/uyUCmD69O1 +04/22/2017,Sports_celeb,@RondaRousey,💍😍❤️ @travisbrownemma https://t.co/zj2hI25Vxq +04/07/2017,Sports_celeb,@RondaRousey,#TakeaMomentNotaSelfie https://t.co/rGgJ6UYtEE +04/04/2017,Sports_celeb,@RondaRousey,#NextGenJudo teaching themaxston ashi waza https://t.co/72Hc9gVzcu +03/31/2017,Sports_celeb,@RondaRousey,Thank you punkmetender_art for the kind words and incorporating me into your art - and thanks… https://t.co/0oiJkRA1ZA +03/22/2017,Sports_celeb,@RondaRousey,Good luck to all fighters on golden boy card tom at fantasy springs casino. Watch Thursday on… https://t.co/isU7hq0mmT +03/09/2017,Sports_celeb,@RondaRousey,#iheartstreetart pic by @littlebropics art by @solusstreetart in NYC https://t.co/oEX3ahmMpZ +03/08/2017,Sports_celeb,@RondaRousey,#DayWithoutaWoman #resist https://t.co/r5DuMNxBVY +03/07/2017,Sports_celeb,@RondaRousey,#resist https://t.co/LB4sftaJHM +03/01/2017,Sports_celeb,@RondaRousey,Had fun filming with audreyesparza for nbcblindspot today😁check out season 2 of #blindspot (I… https://t.co/jAaeTaY1vs +02/26/2017,Sports_celeb,@RondaRousey,#trafficjamin https://t.co/jmsKgbhWY3 +02/26/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/Oy6I48CvG2 +02/12/2017,Sports_celeb,@RondaRousey,To the girl I just met at the grocery store - thank you 🙏🏼❤️ +02/10/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/QSjGs0it3S +01/29/2017,Sports_celeb,@RondaRousey,"The plaque at the base of the Statue of Liberty reads: ""Give me your tired, your poor, your… https://t.co/Yeti7Y8Ypg" +12/30/2016,Sports_celeb,@RondaRousey,"#FearTheReturn #FridayDec30 #rouseyvsnunes #ufc207 +Pic by hansgutknecht https://t.co/TudhKPQrN4" +07/01/2018,Sports_celeb,@SkyDigg4,Everybody good! Could’ve been worse if I didn’t slam on the brakes! +07/01/2018,Sports_celeb,@SkyDigg4,"Old lady just pulled out into traffic, switched three lanes without signaling, and hit my car! Talking about she co… https://t.co/jxEpO2TCbv" +06/30/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: A good omen for the game tomorrow: one of my @SkyDigg4 jerseys FINALLY came after waiting for over a month! 😍🔥 +Still waiti…" +06/30/2018,Sports_celeb,@SkyDigg4,Falafel 🙌🏽 +06/29/2018,Sports_celeb,@SkyDigg4,RT @K104FM: Get tickets to the July 1st @DallasWings Game w/ @SkyDigg4 at https://t.co/EdemuR88Rq! #dallaswings #k104 https://t.co/bmOgvI1M… +06/29/2018,Sports_celeb,@SkyDigg4,RT @RocNation: Be sure to vote for @SkyDigg4 as Best #WNBA player at this year’s #ESPYS 🗳https://t.co/w7IqBDDEyJ https://t.co/ktKmKcwNvc +06/29/2018,Sports_celeb,@SkyDigg4,RT @RocNation: 🙌 RT to get @SkyDigg4 to the #WNBAAllstar game!! #WNBAvote https://t.co/gGrDtDDLXM +06/29/2018,Sports_celeb,@SkyDigg4,"RT @SLAMonline: .@SkyDigg4 activated point god mode last night, dropping a clutch 29 points and 8 assists. (via @wnba) https://t.co/G5wP2S9…" +06/28/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: She ready!!! That was such a great game and performance 🙌🏾 https://t.co/QMtyXDf3ZC +06/28/2018,Sports_celeb,@SkyDigg4,"RT @2nd1stchance: @WNBA @SkyDigg4 @DallasWings Shows tht on any level, Hard wrk, HEART PASSION DETERMINATION & GOD takes U a long way. Thx…" +06/28/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: See @SkyDigg4, it worked out like I said! 😂 +Back end of a back-to-back, yet u played ALL 40 minutes, put up 29pts & 8ast o…" +06/28/2018,Sports_celeb,@SkyDigg4,"RT @OGBSP: Retweeted WNBA (@WNBA): + +What a night for @SkyDigg4! + +Diggins-Smith posts 29 PTS & 8 AST, comes up CLUTCH in a @DallasWings vict…" +06/28/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: A HUUUUUUGE final 2 minutes from @ecambage and @SkyDigg4 to seal the win for the Wings! #VivaLasWings https://t.co/xz0qTyf… +06/27/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: Watching the game tonight wearing my new @SkyDigg4 player jersey shirt. 💯🔥💪 +#LetsFLy https://t.co/bfidF4Oc0i" +06/26/2018,Sports_celeb,@SkyDigg4,"What shall we then say to these things? If God if for us, who can be against us?" +06/26/2018,Sports_celeb,@SkyDigg4,RT @RocNation: #WNBAAllStar voting is in full swing! Want to see @SkyDigg4 in Minneapolis?! RT to vote! 🏀 #WNBAvote https://t.co/Znx8tukl0M +06/25/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVote @SkyDigg4 #SkylarDigginsSmith +06/25/2018,Sports_celeb,@SkyDigg4,@thejaylonsmith Indiana made 🙌🏽 +06/24/2018,Sports_celeb,@SkyDigg4,"Time to step it up period +W/ me or against me" +06/23/2018,Sports_celeb,@SkyDigg4,"Great team win tonight! The atmosphere was electric! Thanks to everyone that showed up tonight, it was LIT!" +06/22/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: @SkyDigg4 AKA ""Chef Sky"" is ALWAYS giving back to the community!💯👏🙌 +#BoysAndGirlsClub https://t.co/NQi0mNsmPu" +06/21/2018,Sports_celeb,@SkyDigg4,RT @RocNation: RT to vote for @skydigg4!! 💎🙌#WNBAVOTE https://t.co/xdTdVRttDv +06/21/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVOTE @SkyDigg4 https://t.co/9M4d6yu3sJ +06/21/2018,Sports_celeb,@SkyDigg4,RT @_Kayraa4: Skylar Diggins-Smith @SkyDigg4 #WNBAvote +06/21/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: In case you didn’t know... +@KaelaD3 +@SkyDigg4 +@KBT_5Blessed +@ecambage +@LeticiaRomero95 +@Graytness_15 +@aerial_powers…" +06/21/2018,Sports_celeb,@SkyDigg4,My friends are some real ones!! Thanks Tiff! https://t.co/DVrgbPIFkU +06/21/2018,Sports_celeb,@SkyDigg4,https://t.co/dQei77Pohg +06/21/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: More ESPYS nominations 🙌🏾... @SkyDigg4 is up for Best WNBA player! Make sure you go vote for both Sky and @ndwbb and @A… +06/21/2018,Sports_celeb,@SkyDigg4,Thanks Shug!!! https://t.co/uBQF7OYRu2 +06/20/2018,Sports_celeb,@SkyDigg4,RT @RocNation: Congrats #RocNationSports @SkyDigg4 & @TG3II on being nominated for an #ESPY. Be sure to vote now at https://t.co/w7IqBDDEyJ… +06/20/2018,Sports_celeb,@SkyDigg4,RT @Aholmes_15: Skylar Diggins-Smith #WNBAVOTE @SkyDigg4 +06/20/2018,Sports_celeb,@SkyDigg4,RT @asher_kasher014: Skylar Diggins -Smith @SkyDigg4 #WNBAAllStar +06/20/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVOTE @SkyDigg4 #SkylarDigginsSmith +06/20/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Get you a friend that has your back like @ecambage has @SkyDigg4's 💪💪 #RiseTOGETHER https://t.co/PY4gIffKgT +06/20/2018,Sports_celeb,@SkyDigg4,RT @ShaunKing: This is Rachel Maddow upon getting the breaking news that Trump has established detention centers for babies who've been for… +06/20/2018,Sports_celeb,@SkyDigg4,RT @RimaC13: Vote for @SkyDigg4 for WNBA AllStar!! +06/19/2018,Sports_celeb,@SkyDigg4,RT @rmontscott: Skylar Diggins-Smith @SkyDigg4 #WNBAVote +06/19/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: #WNBAAllStar voting is LIVE! + +Which ⭐️⭐️⭐️ do you want to see in action in Minneapolis on July 28? + +Cast your votes right here on…" +06/19/2018,Sports_celeb,@SkyDigg4,RT @jrnba: Congrats to Kyla Oldacre (@SkyDigg4 Soldiers) & Emoni Bates & Kareem Rozier (Bates Fundamentals) for receiving the Midwest Regio… +06/19/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: We're back in Minnesota for round ✌️ vs. the @minnesotalynx! Tip off is at 7pm. Don't miss it! 🏀 + +📍 Target Center +💻 Leagu…" +06/19/2018,Sports_celeb,@SkyDigg4,You couldn’t walk a mile! Stfu https://t.co/CAZWY7l7Yc +06/19/2018,Sports_celeb,@SkyDigg4,The NBA gets 50% of the revenue they bring in. We don’t even get 1/2 (<25%) of the revenue WE bring in! Let’s start… https://t.co/wMSPIssWUj +06/19/2018,Sports_celeb,@SkyDigg4,Hmmm.... https://t.co/D1FZ9JfELx +06/19/2018,Sports_celeb,@SkyDigg4,Happy #Juneteenth! ✊🏽 https://t.co/AQfcuzAESP +06/19/2018,Sports_celeb,@SkyDigg4,Wrong! But welcome to the family! https://t.co/ORXb2rbhry +06/18/2018,Sports_celeb,@SkyDigg4,Thanks Shaun! We need more guys like you leaning in and supporting women sports! https://t.co/c6f4l8lOA0 +06/18/2018,Sports_celeb,@SkyDigg4,Don’t get me started! https://t.co/9NJG6wpciI +06/18/2018,Sports_celeb,@SkyDigg4,"Woman in airport: “You guys don’t have a private jet???” + +Me: 😒“HA!” + +No....no we don’t. Even on back-to-backs...." +06/18/2018,Sports_celeb,@SkyDigg4,"RT @keithboykin: According to NASA, The Milky Way is ""so big that even at the speed of light, it would take 100,000 years to travel across…" +06/18/2018,Sports_celeb,@SkyDigg4,"RT @CoryBooker: Read this powerful op-ed by @LaurawBush then take 2 actions: + +Call on Trump to end his despicable policy of separating fami…" +06/17/2018,Sports_celeb,@SkyDigg4,"Love these two! Been coaching for years, helping dozens get to the collegiate level and beyond, and always giving b… https://t.co/Er6p4HtZkd" +06/17/2018,Sports_celeb,@SkyDigg4,RT @jrnba: Go-ahead bucket by Amaya Asher... the @SkyDigg4 Soldiers win the girls Midwest Regional in a fantastic finish! #JrNBAWorldChampi… +06/17/2018,Sports_celeb,@SkyDigg4,"Ayyyyyye!!! We lit!!! So proud of you girls! Milk house, here we come! https://t.co/S4tMPI5yCN" +06/17/2018,Sports_celeb,@SkyDigg4,RT @LBI_Steve: It’s not sexy but this is how @SkyDigg4 14U became the 1st ever @jrNBA champs. @LBInsider https://t.co/9kp1Vj0iP1 +06/17/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: “We gotta keep playing together so we can go to Orlando.” + +Amaya Asher (11 PTS) after Team @SkyDigg4 Semifinals W! #JrNBAWorldCh…" +06/17/2018,Sports_celeb,@SkyDigg4,Champions!! So proud of my girls! https://t.co/4OycCQtwhY +06/16/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Our very own @SkyDigg4 and @Graytness_15 have been nominated for Kid’s Choice Sports Awards and they need YOUR help! Go to… +06/16/2018,Sports_celeb,@SkyDigg4,RT @gayhefner: me & my best friend wilding out at our son’s basketball game in the future https://t.co/xFTC3OV3P2 +06/16/2018,Sports_celeb,@SkyDigg4,RT @asher_kasher014: Sky Digg Soldiers 2-0 in pool play ! Keep it going ladies 💙💚@SkyDigg4 https://t.co/XSPcCtfCqL +06/16/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: .@SkyDigg4 with the scoop AND the score 🙌 + +She leads the Wings with 15 PTS so far tonight! #RiseTogether https://t.co/TQk5…" +06/16/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: Team @SkyDigg4 is off to the races in the Midwest with the steal & three! #JrNBAWorldChampionship + +🖥: @ElevenSportsUSA https://…" +06/15/2018,Sports_celeb,@SkyDigg4,"RT @AmeenaRasheed: As much as I love sports media, I really loved reading about @SkyDigg4 in Refinery 29 and Complex before the season kick…" +06/15/2018,Sports_celeb,@SkyDigg4,RT @DorothyJGentry: Nothing but respect for @SkyDigg4 as she stops and high-fives every single fan who stayed after the game. #respect #Cla… +06/15/2018,Sports_celeb,@SkyDigg4,"RT @shannonrwatts: Sarah Sanders: “It is very Biblical to enforce the law.” + +Bible: “Woe to those who make unjust laws, to those who issue…" +06/14/2018,Sports_celeb,@SkyDigg4,Smh lol https://t.co/8LzfoQo35o +06/14/2018,Sports_celeb,@SkyDigg4,RIP Anne Donovan +06/13/2018,Sports_celeb,@SkyDigg4,Everybody think they a damn coach! +06/13/2018,Sports_celeb,@SkyDigg4,RT @AdamGrosbard: .@BGCA_Clubs Hall of Famer @SkyDigg4 and the Wings working with kids today at Boys & Girls Club of Greater Dallas https:/… +06/13/2018,Sports_celeb,@SkyDigg4,RT @WNBALOVE: DT on @SkyDigg4 “There is a real fight in her that I love. She is not out there to make friends or anything like that. That i… +06/13/2018,Sports_celeb,@SkyDigg4,"I’m pissed off for greatness! Bc when you’re pissed off for greatness, you’re not settling for mediocrity!" +06/09/2018,Sports_celeb,@SkyDigg4,"RT @WSUWBasketball: We then decided to go see some WNBA action! We went to see the Indiana Fever vs Dallas Wings. Afterwards, @SkyDigg4 was…" +06/09/2018,Sports_celeb,@SkyDigg4,RT @DrinkBODYARMOR: 👀🏀💥 Career-high 35 pts & the comeback W for BODYARMOR’s @SkyDigg4 & Dallas... #ObsessedWithBetter https://t.co/xL54QYeN… +06/09/2018,Sports_celeb,@SkyDigg4,Thanks for always supporting me!! #family 🍀❤️ https://t.co/uuN3SNoqM4 +06/09/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: So happy to see my girls @SkyDigg4 @NatAchon ! So proud of you both! #NDfam 🍀💚 #ForeverIrish https://t.co/L8O9aUkvKu +06/09/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: A night to remember for @SkyDigg4! + +In her home state, Diggins-Smith posts CAREER-HIGH 35 PTS as @DallasWings come back to win! #…" +06/08/2018,Sports_celeb,@SkyDigg4,So dope coming from you!! Takes one to know one! https://t.co/2IkoEoSneY +06/07/2018,Sports_celeb,@SkyDigg4,"No’s aside, I think I have this Equalizer thing in the bag. 🤷🏽‍♀️ See it all play out during the #NBAFinals and mak… https://t.co/0mfdKt3APG" +06/06/2018,Sports_celeb,@SkyDigg4,RT @angela_rye: They are on PAID LEAVE. “Oh say can you see..” yet? https://t.co/5TRpcUzsFe +06/06/2018,Sports_celeb,@SkyDigg4,RT @WNBA: The @MinnesotaLynx will commemorate winning their fourth #WNBA championship on Wednesday in Washington D.C. with an event at Payn… +06/06/2018,Sports_celeb,@SkyDigg4,"RT @SheilKapadia: Instead of speaking, Malcolm Jenkins holds up signs at his locker to get his message across. https://t.co/mg9JdhFgYZ" +06/06/2018,Sports_celeb,@SkyDigg4,"RT @benbloomsport: Men = 100/100 +Women = 0/100 + +For the first time ever since Forbes started compiling the world's 100 highest paid sportsp…" +06/06/2018,Sports_celeb,@SkyDigg4,Born individuals....but too many die copycats...#youdoyou +06/05/2018,Sports_celeb,@SkyDigg4,https://t.co/ZtJUudsb00 +06/05/2018,Sports_celeb,@SkyDigg4,RT @ayesharascoe: . @AprilDRyan bringing up the issue that actually spurred the protests by the NFL players. Didn't really get an answer ht… +06/05/2018,Sports_celeb,@SkyDigg4,"RT @CillizzaCNN: Sarah Sanders says the media is ""trying to tear her down."" + +No. + +Asking her to acknowledge that she didn't tell the truth…" +06/05/2018,Sports_celeb,@SkyDigg4,"RT @AStepUpFHA: Happy Birthday, @GoIrishCoachO! 🎁🎉 https://t.co/FMx0UeRDtv" +06/03/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: .@ecambage having a MONSTER 4th quarter!!! She has 17 POINTS in this quarter alone. 😳 #RiseTogether https://t.co/UHYuRioxfG +06/03/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: .@SkyDigg4 put on a show tonight, finishing with 27 PTS, 7 AST & 3 STL in a @DallasWings W! #WatchMeWork https://t.co/p8IWynuNel" +06/01/2018,Sports_celeb,@SkyDigg4,RT @Dame_Lillard: I thought the only way you can change a charge call was if someone was in or out of the charge circle +06/01/2018,Sports_celeb,@SkyDigg4,What???? +06/01/2018,Sports_celeb,@SkyDigg4,"RT @SportsCenter: 11 years after his first Finals, LeBron's back for his 8th in a row. https://t.co/fKgFKtr8mY" +05/31/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: #NBAFIT behind-the-scenes workout with @SkyDigg4! + +Learn More: https://t.co/xKC8LWZk6w https://t.co/jQSeCywWUr" +05/30/2018,Sports_celeb,@SkyDigg4,@utopiafalls02 You already know Shug! +05/30/2018,Sports_celeb,@SkyDigg4,"RT @GetUpESPN: What would @SkyDigg4 be doing if she wasn't in the @WNBA? + +The @DallasWings star reveals that and more in this edition of F…" +05/30/2018,Sports_celeb,@SkyDigg4,"RT @VanJones68: I checked. And Ambien does NOT make you racist. ..... Nice try, though, @therealroseanne. #Roseanne" +05/30/2018,Sports_celeb,@SkyDigg4,RT @essencecasey: went to the Dallas vs New York game last night & i gotta say that @SkyDigg4 is one of the best players i’ve ever seen. sh… +05/30/2018,Sports_celeb,@SkyDigg4,Gotta step my game up. No excuses +05/28/2018,Sports_celeb,@SkyDigg4,"RT @LaChinaRobinson: I am always proud and impressed by the way the women of the WNBA take on the responsibility of educating, discussing,…" +05/28/2018,Sports_celeb,@SkyDigg4,Made it on the wall at new @espn offices in downtown NY! 1 of 10 pics posted so far 🙌🏽 https://t.co/5oGDceFzKA +05/28/2018,Sports_celeb,@SkyDigg4,"RT @DorothyJGentry: @DallasWings @SkyDigg4 on the set of @GetUpESPN discussing the Wings, #WNBA growth of the league and pay disparity vs…" +05/28/2018,Sports_celeb,@SkyDigg4,"RT @murrminks: “It’s the highest level of talent. If you love basketball, you love the WNBA.” + +🗣 speak on it, @SkyDigg4 https://t.co/SnPt3Z…" +05/28/2018,Sports_celeb,@SkyDigg4,RT @MzLuckylefty: 😩😩😩😩lord thank you for giving this woman this platform today to spread the word about @wnba ! Dedicate the resources and… +05/28/2018,Sports_celeb,@SkyDigg4,RT @nlawsonMBA: Trying to help change this with orgs like the @seattlestorm and @WNBA through fantasy & engagement. Great message by @SkyD… +05/28/2018,Sports_celeb,@SkyDigg4,RT @TheRyanHollins: @SkyDigg4 @GetUpESPN @JalenRose Digg’s I got you 💯 I know the grind💯 https://t.co/HW0YywHciO +05/28/2018,Sports_celeb,@SkyDigg4,"Had a great time on @GetUpESPN this morning! Got to talk NBA and WNBA! If you missed it, check it out now https://t.co/itcudJLKXj" +05/28/2018,Sports_celeb,@SkyDigg4,@TheRyanHollins @GetUpESPN @JalenRose At least somebody is! +05/28/2018,Sports_celeb,@SkyDigg4,"RT @GetUpESPN: “It’s unfortunate.” + +-@SkyDigg4 gives her thoughts on the WNBA-NBA wage gap https://t.co/unpYgUsfcg" +05/28/2018,Sports_celeb,@SkyDigg4,"RT @StacyGSG: Jalen. Greeny. Beadle. Diggins-Smith. +#GetUp #ESPN +@SkyDigg4 https://t.co/GwLVqlOG8T" +05/28/2018,Sports_celeb,@SkyDigg4,RT @bballfan_folife: @SkyDigg4 needs to be on @espn more!! Her #NBA commentary is 🔥! +05/28/2018,Sports_celeb,@SkyDigg4,RT @cheese309: @SkyDigg4 I think you would make a great analyst one day +05/28/2018,Sports_celeb,@SkyDigg4,RT @Damien_Butler8: @SkyDigg4 definitely has a career in media ahead of her!! Not just on a sports platform either!! +05/28/2018,Sports_celeb,@SkyDigg4,"RT @ant757: @SkyDigg4 thank you for bringing your beauty, elegance, and poise to @espn @ESPNNBA this am!!!! @WNBA" +05/28/2018,Sports_celeb,@SkyDigg4,RT @DunnReggie2: @SkyDigg4 great job this morning on @GetUpESPN #growwomenshoops +05/28/2018,Sports_celeb,@SkyDigg4,"RT @HeyChrisByrd: @SkyDigg4 Great work on ""Get Up!"" this morning, loved your takes on the CLE/BOS game and continued growth of the WNBA." +05/27/2018,Sports_celeb,@SkyDigg4,RT @WNBA: Great ball movement from the @DallasWings leads to @SkyDigg4's big three! #WatchMeWork https://t.co/kE1YXvmiYG +05/27/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: How about this 4th quarter from @ecambage?! 🤩 #RiseTogether https://t.co/R1GkNHBU5Q +05/27/2018,Sports_celeb,@SkyDigg4,This made my day! https://t.co/ZpIMQ5TLAP +05/26/2018,Sports_celeb,@SkyDigg4,RT @lookinuge: Girls getting ready to go see @SkyDigg4 tommorow! #WNBALive #WatchMeWork https://t.co/kVr9S8gjGA +05/26/2018,Sports_celeb,@SkyDigg4,RT @everybodyluhke: That one time i used @SkyDigg4 as aspiration for my senior photo shoot 😂🤩 https://t.co/F6RyaeLYFz +05/26/2018,Sports_celeb,@SkyDigg4,RT @MoeScott4: Greatful to receive the opportunity to continue to play the game I love. #levels @TrineThunderMBB https://t.co/hwTtyCY615 +05/24/2018,Sports_celeb,@SkyDigg4,"Don’t get mad, get better" +05/23/2018,Sports_celeb,@SkyDigg4,RT @ShaunKing: Will the @NFL still effectively ban Colin Kaepernick & Eric Reid from the league now that they have banned taking a knee?… +05/22/2018,Sports_celeb,@SkyDigg4,@aerial_powers23 I got you!! +05/21/2018,Sports_celeb,@SkyDigg4,RT @Slyxra: Self-defence techniques for women... Kindly share https://t.co/eiRv7Mlyw3 +05/21/2018,Sports_celeb,@SkyDigg4,RT @carvellwallace: two weeks ago today a white woman tried to call the police on about 8 black folks barbecuing. Today in that same spot t… +05/21/2018,Sports_celeb,@SkyDigg4,RT @SLAMonline: Skylar Diggins-Smith was about #thatwork today. She went off for an easy 25 points. (via @wnba) https://t.co/KBm6NUnXLa +05/21/2018,Sports_celeb,@SkyDigg4,Love this! #teamLeo https://t.co/ePTqscfEzY +05/21/2018,Sports_celeb,@SkyDigg4,Thanks for coming out! Good to have the Irish family in the house! https://t.co/GiJHJl6GFD +05/21/2018,Sports_celeb,@SkyDigg4,"Great team win for opening night! The crowd was super lit! +So glad to have my favorite people at the game, too! Lo… https://t.co/PibWpGp8eJ" +05/21/2018,Sports_celeb,@SkyDigg4,RT @WNBA: .@SkyDigg4 goes off for 25 PTS as @DallasWings earn their first W of the season! #WNBAAllDay https://t.co/lCjwRzvTlk +05/20/2018,Sports_celeb,@SkyDigg4,"RT @FOXSportsSW: ""It was the total team effort tonight, including the 6th man we had in the crowd."" - @SkyDigg4 + +@DallasWings | #WingsOpeni…" +05/20/2018,Sports_celeb,@SkyDigg4,RT @thejaylonsmith: @DallasWings !!!! Came to see da realist! @SkyDigg4 ☘️ gonna be a great year for the WINGS team looking amazing on the… +05/20/2018,Sports_celeb,@SkyDigg4,RT @darcangel21: So smooth. @SkyDigg4 with the floater. #WNBAAllDay https://t.co/07D9CTO0mP +05/20/2018,Sports_celeb,@SkyDigg4,"RT @jessicawluther: I recently went bowling with @DallasWings's point guard @SkyDigg4. And the answer to your question is YES, she is alway…" +05/20/2018,Sports_celeb,@SkyDigg4,RT @NickVanExit: Street Ball @SkyDigg4 out here 🔥🔥🔥 https://t.co/12dOGrQozJ +05/18/2018,Sports_celeb,@SkyDigg4,Takes one to know one. Love you Slim!! https://t.co/KsbueMm8WA +05/18/2018,Sports_celeb,@SkyDigg4,"RT @CoachNess45: Reason 1,000,000 why I love & respect her so much. This is all facts! @SkyDigg4 really did change the game for females in…" +05/18/2018,Sports_celeb,@SkyDigg4,"RT @kaitlynromero10: “You can be a feminine woman and a beast on the court. You don’t have to choose.” 🏀👏🏽 +-@SkyDigg4" +05/18/2018,Sports_celeb,@SkyDigg4,RT @RocNation: LET’S GO @SkyDigg4 👏👏👏👏👏 Tonight is @DallasWings #WNBA season opener! Be sure to catch the game at 9pm CT on @NBATV. #watchm… +05/18/2018,Sports_celeb,@SkyDigg4,@ChanelePatton Love you Nelle Nel! +05/18/2018,Sports_celeb,@SkyDigg4,Emphasize https://t.co/i64XNxGCQr +05/18/2018,Sports_celeb,@SkyDigg4,"RT @AmeenaRasheed: Skylar Diggins-Smith (@SkyDigg4) of the @DallasWings talks about her love for basketball, bouncing back from a 2015 ACL…" +05/18/2018,Sports_celeb,@SkyDigg4,"RT @ndwbb: Watch Her Work! @SkyDigg4 kicks off the @WNBA season tonight at 10 pm ET. #GoIrish☘️ #IrishintheWNBA + +https://t.co/XhgbQgqmU9" +05/18/2018,Sports_celeb,@SkyDigg4,RT @tulsadoug: Great player profile of @SkyDigg4 by @jessicawluther. I love stories about players!! https://t.co/li6AP73rd1 https://t.co/XH… +05/18/2018,Sports_celeb,@SkyDigg4,RT @lookinuge: Awesome stuff.. @SkyDigg4 is amazing.. My girls love her and when they are working on their game it's always Skylar Diggins… +05/17/2018,Sports_celeb,@SkyDigg4,"RT @jessicawluther: .@SkyDigg4 has an encyclopedic knowledge of basketball, a deep love of the game, and an All-Star talent. And she wants…" +05/17/2018,Sports_celeb,@SkyDigg4,RT @Jessie_Stailey: @emmaleyden3 @SkyDigg4 @jessicawluther I loved everything about this. @SkyDigg4 is such a strong presence +05/17/2018,Sports_celeb,@SkyDigg4,"RT @MelissaSulewski: ""You can’t be what you can’t see. We need more images of our women playing so our girls can see these images.” @SkyDig…" +05/17/2018,Sports_celeb,@SkyDigg4,"RT @MzLuckylefty: “We ain’t trying to be in them one and done games, I can’t stand it.” + +... +😂 @SkyDigg4" +05/17/2018,Sports_celeb,@SkyDigg4,RT @emmaleyden3: Excellent article from @jessicawluther. I’ve met @SkyDigg4 before and this is a completely accurate description of her com… +05/17/2018,Sports_celeb,@SkyDigg4,"@jessicawluther Thank you for putting this together, Jess!" +05/17/2018,Sports_celeb,@SkyDigg4,"RT @Complex: 3x WNBA All-Star @SkyDigg4 is not messing around 💪 + +We talked with the star of the Dallas Wings about how much she hates losin…" +05/16/2018,Sports_celeb,@SkyDigg4,RT @CraigSJ: 2018 is really working wonders for my latent worry that simply existing in certain neighborhoods post-election will not go wel… +05/16/2018,Sports_celeb,@SkyDigg4,RT @brucelee: How AWESOME is it that Bruce’s life example and philosophy continues to this day to influence top athletes in a such a wide r… +05/15/2018,Sports_celeb,@SkyDigg4,RT @angela_rye: This is seriously too much. https://t.co/EHu0AjahBM +05/14/2018,Sports_celeb,@SkyDigg4,RT @Candace_Parker: Facts only. https://t.co/RbWT9tRoRf +05/13/2018,Sports_celeb,@SkyDigg4,Good finish to the preseason! Great seeing everybody that came out to fly w us today! Should be a fun year 🙌🏽 +05/13/2018,Sports_celeb,@SkyDigg4,RT @mel_bradley: @SkyDigg4 thanks for making these girls feel special! @LDN_NikeTopping #WNBA https://t.co/L6lhzRFRQJ +05/13/2018,Sports_celeb,@SkyDigg4,See! 😩😂 https://t.co/0BfZnjB266 +05/12/2018,Sports_celeb,@SkyDigg4,@arneduncan 🙌🏽💪🏽What a pass! Congrats! +05/12/2018,Sports_celeb,@SkyDigg4,RT @arneduncan: Hard to find a better teammate and winner than @SkyDigg4 ! https://t.co/aOBVt2MFfh +05/09/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: 🗣 ""LET'S GO!"" + +How badly does @SkyDigg4 want to raise her game in her 6th season? Get a glimpse inside the gym with the @DallasWi…" +05/09/2018,Sports_celeb,@SkyDigg4,All we need is a little time 🤷🏽‍♀️ +05/09/2018,Sports_celeb,@SkyDigg4,"RT @FightingIrish: 👀 We've seen that shot once or twice in Purcell, @SkyDigg4! + +Catch the @ndwbb alumna as she takes the court for the @Dal…" +05/09/2018,Sports_celeb,@SkyDigg4,RT @ndwbb: Your 2018 National Champions! ☘️ https://t.co/hAI3Bu1fF3 +05/05/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: Are you ready for this @DallasWings duo? 😯 + +@ecambage and @SkyDigg4 are ready to work! #watchmework https://t.co/6vadTA8ypG" +05/04/2018,Sports_celeb,@SkyDigg4,RT @4thFlCreative: That’s a wrap in Dallas! Thanks to our friends at the @DallasWings & @drapermedia for having us. Awesome shoot today!! #… +05/03/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: We went behind the scenes with @SkyDigg4 for her #WatchMeWork shoot. It's time to officially watch her work on the court! + +Our l…" +05/03/2018,Sports_celeb,@SkyDigg4,"The bigger the dream, the harder the grind" +05/02/2018,Sports_celeb,@SkyDigg4,🙌🏽 Go baby girl! https://t.co/F38cYXfd4U +05/02/2018,Sports_celeb,@SkyDigg4,😍 https://t.co/RtM10EGZ1n +05/01/2018,Sports_celeb,@SkyDigg4,"@jamesfraschilla @DallasWings Thanks, James! I didn’t know you could shoot it like that 💪🏽 +I still got a foul to give, though 😂" +05/01/2018,Sports_celeb,@SkyDigg4,"RT @jamesfraschilla: Finishing up a quick trip home, and got to spend the last 2 days watching WNBA’s @DallasWings practice. @SkyDigg4 coul…" +05/01/2018,Sports_celeb,@SkyDigg4,"RT @DrinkBODYARMOR: ICYMI: Thanks @Gatorade, we’ll take it from here. @SkyDigg4 #ObsessedWithBetter #Switch2BODYARMOR https://t.co/1rYwXRhX…" +05/01/2018,Sports_celeb,@SkyDigg4,🙌🏽 Sarah! Let’s gooooo https://t.co/asJvim5SOO +05/01/2018,Sports_celeb,@SkyDigg4,Vote for @Arike_O on #DWTS! 💃🏽 https://t.co/NKudibBe3a +04/30/2018,Sports_celeb,@SkyDigg4,"RT @ShaneBoyd7: Best wishes to the the amazing women of the @WNBA who started training camp today⛹🏽‍♀️ The journey begins to the 🏆 & win, l…" +04/29/2018,Sports_celeb,@SkyDigg4,Good first day with the squad. Thanks to all the @DallasWings fans who came out to support! Can’t wait for the games 🙌🏽 +04/29/2018,Sports_celeb,@SkyDigg4,This! Good luck baby girl! https://t.co/JT2qwnw0UH +04/29/2018,Sports_celeb,@SkyDigg4,RT @YellaBoyDiggins: @SkyDigg4 fam the new #WNBA commercial. Yes! +04/28/2018,Sports_celeb,@SkyDigg4,New beginnings +04/28/2018,Sports_celeb,@SkyDigg4,RT @ava: So many things to say about this abhorrent videotaped assault. But too upset to express myself well right now. So I’ll remind folk… +04/27/2018,Sports_celeb,@SkyDigg4,@DrinkBODYARMOR @Gatorade @IndraNooyi 👀 +04/26/2018,Sports_celeb,@SkyDigg4,"RT @usabasketball: A special moment to close shootaround today. Two and a half year old Jesiah, diagnosed with high risk acute lymphoblasti…" +04/26/2018,Sports_celeb,@SkyDigg4,@YourCallFB 8 or 8:30? +04/25/2018,Sports_celeb,@SkyDigg4,RT @HistDodgertown: TONIGHT!! @YourCallFB scrimmage at Historic Dodgertown — all are welcome! Parking and entrance are free! The game runs… +04/25/2018,Sports_celeb,@SkyDigg4,@EuroLeagueWomen @kaymac_2123 @YDU_Melekleri @WNBA @LVAces TUH! +04/25/2018,Sports_celeb,@SkyDigg4,"RT @YourCallFB: Tonight: one last chance to dial in your play-calling skills before you compete for cash prizes on May 3, 10 and 17! + +Tune…" +04/25/2018,Sports_celeb,@SkyDigg4,RT @Mr_Blodgett2: Shoutout to @SkyDigg4 for putting me on @DrinkBODYARMOR 🤤💯 +04/25/2018,Sports_celeb,@SkyDigg4,RT @YourCallFB: We will be streaming our final test scrimmage in real-time tonight at 8:30 PM EDT. Test your play-calling skills one last t… +04/25/2018,Sports_celeb,@SkyDigg4,"RT @DrinkBODYARMOR: .@SkyDigg4 wouldn’t use outdated workout techniques, so why would she use an outdated sports drink? SHE WOULDN’T. +#Obse…" +04/24/2018,Sports_celeb,@SkyDigg4,I’m just tryna make my momma proud! +04/23/2018,Sports_celeb,@SkyDigg4,"RT @FCDallas: From @SkyDigg4's scarfing the Lamar Hunt statue to the celebrations on the pitch. See the best photos from #FCDvPHI. + +📷 https…" +04/22/2018,Sports_celeb,@SkyDigg4,RT @A_Phoenix_Born: As coaches we must encourage young women to be students of the game! That includes exposing them to the WNBA and the pl… +04/22/2018,Sports_celeb,@SkyDigg4,RT @DrinkBODYARMOR: BODYARMOR Sports Drinks are now available in 6-PACKS! Click here to save $2 on your next purchase: https://t.co/DBAYFbs… +04/22/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Honored to have our own @SkyDigg4 scarf the Lamar Hunt trophy tonight! @FCDallas https://t.co/9bSP2aiFNg +04/20/2018,Sports_celeb,@SkyDigg4,RT @ToyotaStadiumTX: Make sure you're here tomorrow when @SkyDigg4 scarfs the Lamar Hunt statue! https://t.co/4E5fApcoOC +04/19/2018,Sports_celeb,@SkyDigg4,"BTS of the @DrinkBODYARMOR “THANKS” campaign! +https://t.co/16maP1I6XQ" +04/18/2018,Sports_celeb,@SkyDigg4,RT @Tiffany_Bias: Go best friend!!!!!! 😆😆😂😂 https://t.co/miKiRnJyv1 +04/18/2018,Sports_celeb,@SkyDigg4,"RT @IamMsBoTalley: WNBA season starts this May 18. +. +Catch my niece @skydigg4 and All my babies of the WNBA Team @dallaswings play this sum…" +07/01/2018,Sports_celeb,@Candace_Parker,@KaelaD3 Apple is amazing 🙌🏾 +07/01/2018,Sports_celeb,@Candace_Parker,@KaelaD3 I only know Macklemore +07/01/2018,Sports_celeb,@Candace_Parker,Sick and tired of being sick and tired 😂🤣😉🤗 so I’m not gona be sick and tired anymore. 👍🏾👍🏾 +07/01/2018,Sports_celeb,@Candace_Parker,Who is Drake 😂😂😂 https://t.co/YNuqRPIFke +06/29/2018,Sports_celeb,@Candace_Parker,I don’t know what’s worse... kids at Disney or old people in Vegas.....😂😂😂 this woman sitting next to me on the pla… https://t.co/GpqGRzCeUu +06/29/2018,Sports_celeb,@Candace_Parker,I know everyone is anxiously awaiting where Lebron is going to go.... but I know I am not alone in feeling that I h… https://t.co/52Q76EXeWa +06/28/2018,Sports_celeb,@Candace_Parker,RT @LA_Sparks: Let's throw it back to 2008 when @Candace_Parker became the 2nd player ever to dunk in the @WNBA after @LisaLeslie was the f… +06/26/2018,Sports_celeb,@Candace_Parker,RT @NBA: .@Candace_Parker is out here in LA! #NBAAwards #NBATwitter https://t.co/m7qwhrS7bu +06/26/2018,Sports_celeb,@Candace_Parker,🔜 #NBAAwards https://t.co/8Ajvk5PGjq +06/23/2018,Sports_celeb,@Candace_Parker,"It’s amazing there’s the same exact “thing” but people process, problem solve, and react COMPLETELY different." +06/22/2018,Sports_celeb,@Candace_Parker,Jalen Brunson🙌🏾🙌🏾🙌🏾🙌🏾 +06/21/2018,Sports_celeb,@Candace_Parker,Jackson JR. And Mo Bamba are my other two.... don’t sleep on! I’m so excited for the draft! Lol.... can you tell? #FanFoSho +06/21/2018,Sports_celeb,@Candace_Parker,Top Impact draftee that no one is talking about... Zhaire Smith! Legit an athletic freak! Hard worker and a tonnnn of upside! +06/21/2018,Sports_celeb,@Candace_Parker,That’s what we’re doing..... ok ok https://t.co/XDjVhfQ8Ps +06/21/2018,Sports_celeb,@Candace_Parker,RT @LA_Sparks: Get Candace Parker (@Candace_Parker) to the 2018 All-Star Game!🏀🙌 @LA_Sparks #WNBAVOTE https://t.co/bBsaU8LgDj +06/21/2018,Sports_celeb,@Candace_Parker,RT @MikeFlynn826: @BlueStarMedia1 @pierrepiotr_ @Bluestareurope @basketmedia365 I remember when @Candace_Parker was a Soph in HS and she wa… +06/21/2018,Sports_celeb,@Candace_Parker,"With the 21st pick in the 1997 Draft, New Jersey Nets select ANTHONY PARKER! I was the 1st to hug you & I remember… https://t.co/oHVJtTXZ9B" +06/20/2018,Sports_celeb,@Candace_Parker,Lead. Work. Injuries. Life. Adversity. This is my story #greatnessisearned #ad @SixStarPro https://t.co/0OQib62RwD +06/16/2018,Sports_celeb,@Candace_Parker,Grew up watchin LaTicha do it 😂🤷🏽‍♀️ https://t.co/VaBdkGqvw7 +06/16/2018,Sports_celeb,@Candace_Parker,🤹🏾‍♀️😂 https://t.co/VlEE4moZMM +06/15/2018,Sports_celeb,@Candace_Parker,Keepin’ it fly on the court and at the movies! This awesome movie is in theaters now. Check it out! #Superfly https://t.co/rEeRkxX1QH +06/14/2018,Sports_celeb,@Candace_Parker,"You have guided me and will continue to guide me EVERY SINGLE DAY! Your legacy IS impactful, your value PRICELESS,… https://t.co/9xvGSPSAz8" +06/10/2018,Sports_celeb,@Candace_Parker,Had a blast with the crew seeing #Superfly! Go see it with your crew this Wednesday June 13th🍿 https://t.co/baBVz7bo6U +06/09/2018,Sports_celeb,@Candace_Parker,Let #ChinaKlay BEGIN again!!!!!!!!! #ISeriouslyLoveHim #HesMySpiritAnimal #CoolestDudeEver +06/09/2018,Sports_celeb,@Candace_Parker,Congrats GSW! Back to back champs and 3 in 4 years.... Crazy... did it with ease..... +06/08/2018,Sports_celeb,@Candace_Parker,We go through this world wanting gain. But the feelings of loss are far greater than the joy of gain....I’d rather… https://t.co/lrGFO3hIAt +06/07/2018,Sports_celeb,@Candace_Parker,👀👀👀👀 https://t.co/FZJ68UuF0M +06/07/2018,Sports_celeb,@Candace_Parker,"Same people that were in the Houston series sayin “move the ball KD bad shot” are like “man, KD today.....carried e… https://t.co/KKR8C5vEyO" +06/07/2018,Sports_celeb,@Candace_Parker,This dude.......... +06/07/2018,Sports_celeb,@Candace_Parker,KD cookin 👀 +06/06/2018,Sports_celeb,@Candace_Parker,RT @BreMoorer: Captured this adorable moment at the @LA_Sparks game between @Candace_Parker and Lai walking it like she talks it 💃🏾 and @DJ… +06/05/2018,Sports_celeb,@Candace_Parker,Shout out to all my peeps who are putting in the work. My team @sixstarpro keeps me going https://t.co/CCEUk4QA4p… https://t.co/uVO68aK5Fn +06/05/2018,Sports_celeb,@Candace_Parker,RT @Justine_Brown: My little rider. #GoSparks https://t.co/0l3O8PLGlC +06/04/2018,Sports_celeb,@Candace_Parker,@Justine_Brown My baby cakes +06/02/2018,Sports_celeb,@Candace_Parker,RT @candicewiggins: Righteous. #20042008 https://t.co/W63jNMibAW +06/01/2018,Sports_celeb,@Candace_Parker,"June is Alzheimer’s & Brain Awareness Month, and I go purple for Coach Pat. Join me and the @alzassociation in the… https://t.co/iDsZTe9b5R" +06/01/2018,Sports_celeb,@Candace_Parker,"It’s #JrWNBAWeek, so I’m throwing it back to my @JrNBA Days! https://t.co/Rwv4qakZk2" +06/01/2018,Sports_celeb,@Candace_Parker,Bron Bron 👀 +05/31/2018,Sports_celeb,@Candace_Parker,"RT @LA_Sparks: @jlav42: “So what have y’all been doing since I’ve been gone?” +@Candace_Parker & @Alanabeard20: “Winning” +If you can’t tell.…" +05/31/2018,Sports_celeb,@Candace_Parker,RT @iamjamiefoxx: I’m having a house party for the premiere!!! Everybody’s coming through...@BeatShazamFOX’s biggest fan just stopped by...… +05/31/2018,Sports_celeb,@Candace_Parker,Last night this really happened : we were trying to pick a movie to watch and no one could agree. Lailaa says... “… https://t.co/l6iENtbk7e +05/28/2018,Sports_celeb,@Candace_Parker,Happy Memorial Day. So powerful to be surrounded by those that served so that we could have freedom. I take joy in… https://t.co/Vx1oZ5py3t +05/27/2018,Sports_celeb,@Candace_Parker,Had a blast at Sparks Night at the @Dodgers game in celebration of women in sports! So cool to meet Maybelle and Sh… https://t.co/YUy85dSlIk +05/27/2018,Sports_celeb,@Candace_Parker,"Basketball Gods..... THANK YOU! All I ask, is for the most amount of NBA basketball to be played. (I don’t care who… https://t.co/PePLATLfHU" +05/26/2018,Sports_celeb,@Candace_Parker,"Home opener Tomorrow! See all y’all there, 2pm vs Mercury. #Sparks #AllForLA https://t.co/0WWuopBPGc" +05/26/2018,Sports_celeb,@Candace_Parker,"Comparisons aside.... can we just agree we are witnessing GREATNESS... and JUST appreciate it. He had 46,11,9......… https://t.co/9eNeUrYoVX" +05/25/2018,Sports_celeb,@Candace_Parker,@IAmKendraDavis @KaelaD3 Nope😂😂🤗🤗🤗🤗 +05/25/2018,Sports_celeb,@Candace_Parker,https://t.co/obwFNNSs2l +05/25/2018,Sports_celeb,@Candace_Parker,@KaelaD3 Shots fired Blocka blocka +05/25/2018,Sports_celeb,@Candace_Parker,Legit.... I almost didn’t go high when they went low Twitter..... but my conscience said... “Candace.... CHILL” 😂 +05/24/2018,Sports_celeb,@Candace_Parker,Working my ass off to get back 🙌🏾 https://t.co/CCBRlkDH3G +05/24/2018,Sports_celeb,@Candace_Parker,We live in a world of “what have you done for me lately...?” People are wowed less and less.. Evidence… https://t.co/TbVBY2FaBe +05/24/2018,Sports_celeb,@Candace_Parker,#TBT ME! Part of the BABYHAIR club since ‘86. From the womb to the tomb I rep. #TakingApplications… https://t.co/GlURaQW1eF +05/23/2018,Sports_celeb,@Candace_Parker,Game... set.... match.... lol #WarriorsAreAMachine +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmm X 3🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmm once again 🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmmm🤔🤔🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Come onnnn LA!!! Come onnnnnnnnn +05/20/2018,Sports_celeb,@Candace_Parker,Game plan for the Cavs... get other guys going early? It’s so evident😂😂😂😂 Lebron is spacing the floor +05/20/2018,Sports_celeb,@Candace_Parker,Semi impossible to argue best organization this year.... Celtics could win coach of the year and general manager of… https://t.co/qz0MNK8A0l +05/19/2018,Sports_celeb,@Candace_Parker,"“Your greatest challenge during your time here will be faithfully keeping your focus on the process, while surrende… https://t.co/hbVy7yDuE6" +05/18/2018,Sports_celeb,@Candace_Parker,Time flies 😵 https://t.co/mLHR6mTlxE +05/17/2018,Sports_celeb,@Candace_Parker,RT @DougFeinberg: I appreciate you five joining us today @Da20one @Candace_Parker @Chiney321 @NatAchon and @jewellloyd. Good luck this seas… +05/17/2018,Sports_celeb,@Candace_Parker,Basketball is your job... there’s worse things in the world... how lucky are we we get to do what we love for a liv… https://t.co/ALPsjnSKU3 +05/17/2018,Sports_celeb,@Candace_Parker,Anytime you can step outside yourself and see the game from a different point of view it’s.l a great experience!!!… https://t.co/BUDO5HvAky +05/17/2018,Sports_celeb,@Candace_Parker,We desire all fans to respect our hustle and our abilities https://t.co/I2Ei50VerM +05/17/2018,Sports_celeb,@Candace_Parker,I’m old... I didn’t know how it worked 😂😂😂😂😂😂😂 https://t.co/FVPrlYWlxP +05/17/2018,Sports_celeb,@Candace_Parker,I believe a rivalry and something for fans to get excited about does help. People can identify and look forward to… https://t.co/Zgq2zjaIqe +05/17/2018,Sports_celeb,@Candace_Parker,Jayyyyyy https://t.co/Gaf8jX7BlJ +05/17/2018,Sports_celeb,@Candace_Parker,Hello everyone #apwnba +05/17/2018,Sports_celeb,@Candace_Parker,RT @DougFeinberg: Welcome @Candace_Parker; thanks for joining us! #APWNBA +05/17/2018,Sports_celeb,@Candace_Parker,We suffer more in imagination than in reality +05/16/2018,Sports_celeb,@Candace_Parker,"Photographer was like, “stand back to back.” We were like nah.... “we want senior picture vibes” Then... we created… https://t.co/dsJ8ocqo0w" +05/13/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: Superstar player, superstar mom! + +@Candace_Parker #MothersDay https://t.co/1VwP4agft5" +05/12/2018,Sports_celeb,@Candace_Parker,ICYMI you still have time to enter my 2nd annual #CPNomAMom contest! Celebrate all the moms out there by sharing a… https://t.co/5EYG73TIMr +05/12/2018,Sports_celeb,@Candace_Parker,Facts only. https://t.co/RbWT9tRoRf +05/11/2018,Sports_celeb,@Candace_Parker,If Dwayne Casey gets Coach of the year....... how do you handle it? Like press conference.... wow +05/10/2018,Sports_celeb,@Candace_Parker,Uh oh... Chuck picked Golden State.... @NBAonTNT GSW is like...DON’T GUARANTEE! https://t.co/2sIuzjNKj0 +05/10/2018,Sports_celeb,@Candace_Parker,Interesting Bos/Cavs face each other with little if any evidence of “the trade” alive...... crayyyyy +05/10/2018,Sports_celeb,@Candace_Parker,This isn’t happening to the 6ers +05/10/2018,Sports_celeb,@Candace_Parker,I know I’ve shouted out KG numerous times.... but well done Area21 and Sarah Spain!! https://t.co/QuV3yRKjHU +05/09/2018,Sports_celeb,@Candace_Parker,It’s Mother’s Day this Sunday and I am so excited to launch my 2nd annual #CPNomAMom contest! Honor a mom in your l… https://t.co/ESyxitFv9f +05/08/2018,Sports_celeb,@Candace_Parker,Spoil HER with experiences! #CaliLivin #MyPersonalityTwin #NahlaAce #BehindTheLENS #BiggestFan #LailaasMom… https://t.co/K92E3t2BMp +05/06/2018,Sports_celeb,@Candace_Parker,"I have a lot of basketball vomit moments... (‘08 Sofia Young’s fadeaway bank shot with 1.5 seconds in WCF, BGriners… https://t.co/xoSc6xMZDC" +05/06/2018,Sports_celeb,@Candace_Parker,Dude.... #Toronto https://t.co/CbTa82eAXe +05/06/2018,Sports_celeb,@Candace_Parker,I feel so terrible for them +05/06/2018,Sports_celeb,@Candace_Parker,I want this so bad for Toronto... please win!!!!! #ButBronBoutToHitAFadeAway +05/05/2018,Sports_celeb,@Candace_Parker,Two entertaining NBA playoff games tonight...... NOT 🙄 +05/04/2018,Sports_celeb,@Candace_Parker,Fridayyyy +05/03/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: If you want to package @Candace_Parker in the deal, I understand. #PortillosAmbassadors" +05/02/2018,Sports_celeb,@Candace_Parker,For all those that are mad coming off the bench..... steph curry came off the bench..... smdh not enough credit....… https://t.co/jJPVZlYjyk +04/28/2018,Sports_celeb,@Candace_Parker,Hmmmmm🤔🤔🤔🤔🤔🤔🤔 respectfully disagree😬😬😬😬😬 https://t.co/IulAzc86O9 +04/28/2018,Sports_celeb,@Candace_Parker,Doing Lais social Studies homework today. She has to memorize the “GettysBurg address” delivered by Abraham Lincoln… https://t.co/3HGsjnX4RN +04/28/2018,Sports_celeb,@Candace_Parker,Why https://t.co/ubhCO3Q2Ya +04/28/2018,Sports_celeb,@Candace_Parker,Does Donovan Mitchell sweat? Mannnnnnn what a baller...... +04/27/2018,Sports_celeb,@Candace_Parker,Come on Chicago Bears...... do something GREAT wit EIGHT..... let’s goooooo +04/26/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: When your office is the Staples Center court... #TakeYourChildToWorkDay featuring @Candace_Parker & Lailaa! + +#WatchMeWork https:/…" +04/26/2018,Sports_celeb,@Candace_Parker,❤️❤️❤️ https://t.co/mv6cdCQgsw +04/26/2018,Sports_celeb,@Candace_Parker,"Real talk, I appreciate you @KGArea21 for your passion for BASKETBALL. I didn’t say NBA or WNBA I said...basketball… https://t.co/g0K3BQdKHz" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @KGArea21: ""That's why I think people underestimate how valuable Steph Curry is."" + +KG, @Candace_Parker and Gary Payton talk how unique…" +04/26/2018,Sports_celeb,@Candace_Parker,"YOU can help @webackpat win $12,500 and help defeat Alzheimer’s. It takes just a few seconds. Please vote every day… https://t.co/OLQM0u3FP0" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: #KGArea21 SQUAD! + +@Candace_Parker back in her element 😎 + +📷: @KGArea21 https://t.co/kApzNoLVKA" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: In EP 02, @Candace_Parker talked about her championship with the @LA_Sparks & spoke for the first time about whether or…" +04/26/2018,Sports_celeb,@Candace_Parker,Crazy comeback by the Thunder..... Russ man.... his heart is bigger than all the doubt and hate y’all throw at him… https://t.co/rMoF5PGPtV +04/25/2018,Sports_celeb,@Candace_Parker,RT @GWU_WBK: .@GWU_WBK would like to welcome new head coach @apsimms2 to the family! https://t.co/LLA9oHAiKK +04/25/2018,Sports_celeb,@Candace_Parker,Is my up and under a travel? 🤔 +04/25/2018,Sports_celeb,@Candace_Parker,This is my sixth time on @KGArea21..... same debate! Settle it once and for all! My up and under is a travel? Need… https://t.co/NE3jK6YpVZ +04/25/2018,Sports_celeb,@Candace_Parker,RT @KGArea21: LIVE in @KGArea21 with @Candace_Parker & Gary Payton! https://t.co/rFPmmKK1wB +04/24/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: EP 02 of @SMYFPodcast is up with my ride or die @Candace_Parker! Talking the growth of our friendship, Coach Summitt, Ro…" +04/20/2018,Sports_celeb,@Candace_Parker,Been down since day1 https://t.co/ZOhYNMiaef +04/20/2018,Sports_celeb,@Candace_Parker,Sums up our relationship lol 😂😂😂😂😂 thanx kg see u soon!!!! https://t.co/arN2KNX66z +04/20/2018,Sports_celeb,@Candace_Parker,RT @brian_agler: @Candace_Parker Still a pup.... https://t.co/g6ub539tf6 +04/20/2018,Sports_celeb,@Candace_Parker,@LyssiB Jerk +04/20/2018,Sports_celeb,@Candace_Parker,Thanx holly ❤️❤️❤️ https://t.co/Djj9L8ST1G +04/19/2018,Sports_celeb,@Candace_Parker,RT @KaelaD3: Back to 9. Happy Birthday big bead. Love you! 😂🙌🏾 @Candace_Parker +04/19/2018,Sports_celeb,@Candace_Parker,Everyone is trying to make me emotional today..... Thanx y’all! #ThugsDontCry +04/19/2018,Sports_celeb,@Candace_Parker,RT @SLAMonline: Shout out Candace Parker. Happy birthday to one of the best to do it. https://t.co/CDd95q385C +04/19/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: The @LA_Sparks Point Forward! + +On her birthday, relive the BEST ASSISTS of @Candace_Parker's career! #WNBABDAY #WatchMeWork https…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @LA_Sparks: Join us in wishing a VERY happy birthday to our very own @Candace_Parker! We hope your day is full of sunshine, love, and ha…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @SIGSports: To one of the best to ever do it, wishing you the HAPPIEST of birthdays @Candace_Parker!! +#SIGFam https://t.co/15C8KcYPIE" +04/19/2018,Sports_celeb,@Candace_Parker,❤️❤️❤️😘😘😘😘🤗🤗🤗🤗 we cute https://t.co/Gi0ESuJBsj +04/19/2018,Sports_celeb,@Candace_Parker,32.... yikessssssss https://t.co/tgzDDVLzt5 +04/19/2018,Sports_celeb,@Candace_Parker,"RT @adidasUS: Calling All Creators. + +We’re honored to welcome members of our #teamadidas family to the adidas America Headquarters. https:/…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @SMYFPodcast: I’ll share the early line-up. Sneak peek for the six of you already following. 😐🙌🏼 #gottastartsomewhere + +EP 01: @jesspucci…" +04/18/2018,Sports_celeb,@Candace_Parker,"Had a blast at the WNBA Summit in Portland! Repped the three stripes w/ these amazing ladies! Designed some shoes,… https://t.co/KrMp03fH3C" +04/18/2018,Sports_celeb,@Candace_Parker,RT @SwinCash: Dang @Candace_Parker you out here with double doubles lol for those who haven’t checked out the ladies on NBA Live check them… +04/17/2018,Sports_celeb,@Candace_Parker,"Crazy how others share how I inspired them & in turn, end up inspiring me! Thank you Jill Hub for the jersey & the… https://t.co/FSJbPf7r7c" +04/17/2018,Sports_celeb,@Candace_Parker,RT @Chiney321: sista from anotha mista 🤜🏽✨🤛🏿 https://t.co/Umip8ji6zr +04/17/2018,Sports_celeb,@Candace_Parker,"RT @mmcornelius: Let's fill the service with flowers for #LVFL Daedra Charles-Furlow. Send to: +McFall Brothers Funeral Home +9419 Dexter Blv…" +04/16/2018,Sports_celeb,@Candace_Parker,Last week on set with @alzassociation for Coach! I’m proud to support the fight to end Alzheimer’s in her honor.… https://t.co/ZWckGvmpPA +04/16/2018,Sports_celeb,@Candace_Parker,"So sad to hear about the passing of a legend on AND off the court. Daedra Charles was a friend, mentor and amazing… https://t.co/So5tBt800o" +04/16/2018,Sports_celeb,@Candace_Parker,RT @LadyVol_Hoops: Our Lady Vol family is heartbroken to learn of the passing of Tennessee legend Daedra Charles. Head coach Holly Warlick… +04/16/2018,Sports_celeb,@Candace_Parker,Playoff P🤔🤔🤔 DAMNNNNNNNNN +04/15/2018,Sports_celeb,@Candace_Parker,Defense through 3 and a half quarters in this game... since... BETTER OFFENSE 🔥🔥🔥🔥🔥🔥 +04/15/2018,Sports_celeb,@Candace_Parker,If y’all aren’t watching this bos/ Milwaukee game 👀👀👀👀😳😳😳 CRAZY OVERTIME!!! BIG PLAY AFTER BIG PLAY. #FavoriteTimeOfYear +04/12/2018,Sports_celeb,@Candace_Parker,#WNBADraft Day! Good luck to all the young women on this exciting day! Can’t believe it’s been 10 years since I was… https://t.co/PV07OKSlf5 +04/11/2018,Sports_celeb,@Candace_Parker,I wish there was an easy button for hard work. Like... you only get like five pushes (I’m reasonable) but legit i w… https://t.co/SdIPdExIk1 +04/11/2018,Sports_celeb,@Candace_Parker,My third big bro! https://t.co/GAIm0SJHe7 +04/11/2018,Sports_celeb,@Candace_Parker,"RT @_AnthonyParker: @Candace_Parker Love ya lil sis! Yours truly, Candace Parker’s Brother 😘😜" +04/11/2018,Sports_celeb,@Candace_Parker,"Couldn’t pick 2 better role models than you guys.... quite big shoes to fill and follow, but lil sis looks up to yo… https://t.co/FFHQGNysfv" +04/09/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: A college athlete turned professional in less than 24hrs! + +2008 No. 1 pick @Candace_Parker looks back ahead of this year's Draft…" +04/09/2018,Sports_celeb,@Candace_Parker,"Super proud of my bestie @Justine_Brown for her podcast “Show Me Your Friends”!You always are smiling, supportive,… https://t.co/cS8vxHrvLt" +04/03/2018,Sports_celeb,@Candace_Parker,Thanx for the love and support Jussy. You always show me love I really appreciate it. From day 1 https://t.co/ZUJK0qVRlK +04/03/2018,Sports_celeb,@Candace_Parker,It’s over. Nova bout to go on a run. Last time it’s tied. +04/03/2018,Sports_celeb,@Candace_Parker,Join us tonight for the #FinalFour Watch Party! @danajacobson @bwood_33 @Smoove2you_ https://t.co/wh91Zwvwkm +04/02/2018,Sports_celeb,@Candace_Parker,Hey y’all! Join me on #MarchMadness Watch party tonight as @umichbball and @NovaMBB play for the #NCAA National Ch… https://t.co/Fbxe2SeOVF +04/02/2018,Sports_celeb,@Candace_Parker,Crazy! Well women’s basketball fans.... this has been a remarkable final four... couldn’t ask for a better one! Con… https://t.co/eUyOvpVGp3 +04/01/2018,Sports_celeb,@Candace_Parker,Tierra Mccowen is KILLIN! +04/01/2018,Sports_celeb,@Candace_Parker,@BernardPT 😂 good game I love “Mo Buckets” +03/31/2018,Sports_celeb,@Candace_Parker,This Michigan/Loyola game.... insane! +03/31/2018,Sports_celeb,@Candace_Parker,But my Mama taught me better than that🎼 +03/31/2018,Sports_celeb,@Candace_Parker,"Yea, boxing Tierra Mccowen out is no easy feat! Lol" +03/30/2018,Sports_celeb,@Candace_Parker,Crazy how different basketball is in the NCAA tournament when teams force you to do what you don’t want to do and t… https://t.co/PUFNyczOyt +03/30/2018,Sports_celeb,@Candace_Parker,I think Mississippi State goes on a run here.... led by Vivian’s +03/30/2018,Sports_celeb,@Candace_Parker,Louisville winning every 50/50 ball and have punched first vs. Miss St. Most aggressive team wins... right @brian_agler ? +03/30/2018,Sports_celeb,@Candace_Parker,"Had the pleasure to chat with @BenSimmons25 yesterday! I’m in awe of his talent on the court, but talking with him,… https://t.co/MgzFlhN3FD" +03/29/2018,Sports_celeb,@Candace_Parker,Back to WORK! Check me out tonight on @NBAonTNT! https://t.co/GzDBTSNWa3 +03/29/2018,Sports_celeb,@Candace_Parker,SpringBreak was a success!!!❤️🤗 #Fam #WeDoKindaLookAlike #Parkerzzzzzzz #QualityTime #Cuzzins… https://t.co/2UudtY7Mpp +03/24/2018,Sports_celeb,@Candace_Parker,"RT @dg_riff: Forget your politics. Forget your ""position."" How many of us can truly say that we live/have lived with this much passion or c…" +03/24/2018,Sports_celeb,@Candace_Parker,"So wait, I had this dream I was a rookie again. My teammates were @TurnerSportsEJ @SethDavisHoops Brenden Haywood &… https://t.co/qZkIcFoDCP" +03/23/2018,Sports_celeb,@Candace_Parker,"#HappyNationalPuppyDay Ace and Nahla have big shoes to fill, but they are doing ok so far! #alldogsgotoheaven🐾… https://t.co/EFxWWxgJP0" +03/23/2018,Sports_celeb,@Candace_Parker,Wow +03/23/2018,Sports_celeb,@Candace_Parker,RT @LaChinaRobinson: Yes @Candace_Parker is in studio slaying as we speak but earlier today she dropped by #AroundTheRim & as usual kept it… +03/22/2018,Sports_celeb,@Candace_Parker,RT @TichaPenicheiro: BIG S/O to @Candace_Parker and @SwinCash in the studio giving their insight on the #NCAA men’s tournament!! you guys r… +03/22/2018,Sports_celeb,@Candace_Parker,RT @ESPN_WomenHoop: .@UBwomenshoops coach Felisha Legette-Jack and @CMUWBBall coach Sue Guevara discuss their Sweet 16 runs with @LaChinaRo… +03/19/2018,Sports_celeb,@Candace_Parker,🙏🏾Namaste legit had a blast with you all! Learned so much and laughed in the process. https://t.co/HRyxZMKSPp +03/18/2018,Sports_celeb,@Candace_Parker,RT @DelishaMJones: @Candace_Parker your ugly orange wearing Vols and my pretty orange wearing Gators both had rough days today. I empathize… +03/18/2018,Sports_celeb,@Candace_Parker,Thanx..... i wiped my tears https://t.co/fX4hs8s92S +03/18/2018,Sports_celeb,@Candace_Parker,Just got a lovely call from @swiesebaby24 ..... #LearnHowToWinGraciously #SoreWinner #RespectForTheGame #SkipTheNCAATourney 🙄 +03/18/2018,Sports_celeb,@Candace_Parker,✌🏾 March madness..... I don’t like it. I’m sick.... no horse in the race on either side now 🙄 +03/18/2018,Sports_celeb,@Candace_Parker,Lady Vols! Let’s go!!!!!!! I’ll be watching and cheering you on from afar! P.s. please be easy on my heart! 😂 +03/18/2018,Sports_celeb,@Candace_Parker,#Respect :) https://t.co/9rkzGczAj1 +03/18/2018,Sports_celeb,@Candace_Parker,I still bleed orange.... this one stung but we will be back! #Vols4Life #SisterJeanGotUs #ButSheWonMeOver #Love… https://t.co/B2JAhmHYwx +03/18/2018,Sports_celeb,@Candace_Parker,"I honor bets lol! I’m from Naperville, IL my bracket is busted.... 🤷🏽‍♀️ https://t.co/rAwLxJjnvg" +03/18/2018,Sports_celeb,@Candace_Parker,Can’t believe you bet against me.... we were teammates https://t.co/ZsWOgcXbza +03/18/2018,Sports_celeb,@Candace_Parker,Sick https://t.co/DD9FeU2Bkr +03/18/2018,Sports_celeb,@Candace_Parker,That’s what’s we are doing Ros “BET” ..... I hope Stanford...... oh wait 🤔😂😂😂 kidding! I’m a believer in Sister Jea… https://t.co/ZHvTsLve9o +03/17/2018,Sports_celeb,@Candace_Parker,Turn out the lights..... history! Wow... 16 seed beats #1 seed! Happy on the ladies side now the record stands at 135-1 +03/16/2018,Sports_celeb,@Candace_Parker,Cut me and I GUARANTEE the blood that pours out will be ORANGE 🍊 #TournamentTime #LadyVols #YallKnowWhatItIs… https://t.co/2iDSkQQ5TV +03/16/2018,Sports_celeb,@Candace_Parker,Tune in! #MarchMadness @MarchMadnessTV https://t.co/UTyG5AS1fz +03/16/2018,Sports_celeb,@Candace_Parker,I don’t know why I fill out a bracket every year..... bracket BUSTED! Arizona.... forealz +03/15/2018,Sports_celeb,@Candace_Parker,Yessss @Vol_Hoops!!! #MarchMadness https://t.co/ggkMH7Eh8z +03/14/2018,Sports_celeb,@Candace_Parker,My little Black Panther! <3 This movie gave Lailaa a new perspective on what superheroes can look like. And… https://t.co/4lFdOBvKKn +03/14/2018,Sports_celeb,@Candace_Parker,I have some amazing #MarchMadness memories and I am so lucky I get to create new ones broadcasting in studio for th… https://t.co/VXJyFCndPZ +03/14/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: Hi, @Candace_Parker! Catch her covering #FirstFour action on @truTV! https://t.co/4zsZkx18VQ" +03/09/2018,Sports_celeb,@Candace_Parker,If you’re looking for an answer it’s usually hard work and patience. https://t.co/5tSb8ejtEY #ad #greatnessisearned… https://t.co/lTUejNnItH +03/09/2018,Sports_celeb,@Candace_Parker,We are all better when we empower women! Thank you @LAClippers and @bumble for recognizing that we are all… https://t.co/sH3ecp9T6Q +03/08/2018,Sports_celeb,@Candace_Parker,"Happy International Women’s day! May we know them, grow them, raise them, honor them, respect them, challenge them,… https://t.co/avcJctRf76" +03/06/2018,Sports_celeb,@Candace_Parker,Recognize athletes for what matters most: Creativity. #HereToCreate @adidas https://t.co/ntYMX9GqTm +03/05/2018,Sports_celeb,@Candace_Parker,< Retired @kobebryant 🙌🏾🙌🏾🙌🏾🙌🏾 +03/04/2018,Sports_celeb,@Candace_Parker,Kyrie literally can’t miss 😂💀 +03/03/2018,Sports_celeb,@Candace_Parker,March is here.... my favorite time of the year. Only right to post this picture with it being conference tournament… https://t.co/smvXtBuhdp +03/02/2018,Sports_celeb,@Candace_Parker,Andddddd I had a blast! Thanks @NBAonTNT #Blast #DreamAReality #PinchMe #CaseyAndIsaiahAreGreatTeammates… https://t.co/aogThHWo1r +03/02/2018,Sports_celeb,@Candace_Parker,The BANK IS OPEN!!!!!! #LadyVolsAdvance +03/01/2018,Sports_celeb,@Candace_Parker,Catch me on @NBAonTNT tonight! https://t.co/G0lQO9MNCw +02/26/2018,Sports_celeb,@Candace_Parker,Found this on the counter. Sometimes you get reminders & motivation of your true PURPOSE! While I know art is proba… https://t.co/W9t3hWW4et +02/22/2018,Sports_celeb,@Candace_Parker,#ThreeStripeLife #AdidasFam @adidas https://t.co/fQegk8eSY6 +02/21/2018,Sports_celeb,@Candace_Parker,Ever wondered who my all-time favorite athlete is? Find out here #ad #greatnessisearned @sixstarpro https://t.co/jC308f2NuP +02/20/2018,Sports_celeb,@Candace_Parker,This UCLA/Oregon game 🙌🏾🙌🏾🙌🏾🙌🏾 man.... great game. +02/19/2018,Sports_celeb,@Candace_Parker,RT @jemelehill: Draymond is all of us 😂😂😂😂😂 https://t.co/ClWCmY4tfh +07/01/2018,Sports_celeb,@criscyborg,RT @trboxing: Round of the year? #SaucedoZappavigna https://t.co/bs4CRZ9xOy +07/01/2018,Sports_celeb,@criscyborg,Thank you @RMW0204 🙏❤️ https://t.co/ttbmFSZ0ol +07/01/2018,Sports_celeb,@criscyborg,RT @wouldn_t: #loveyourgearz#cyborg https://t.co/oqeub72Fsb +07/01/2018,Sports_celeb,@criscyborg,RT @JoanTrimble: @criscyborg Oss! 🙏🏻 https://t.co/vOsUfcSQQ7 +07/01/2018,Sports_celeb,@criscyborg,RT @MyMMANews: Did you see @criscyborg 's interview with @jimrome ? Watch the #UFC champ talk about #RondaRousey here: https://t.co/14Adrp… +06/30/2018,Sports_celeb,@criscyborg,RT @CaptainnMarvell: I need to go https://t.co/XXmxMRvErl +06/30/2018,Sports_celeb,@criscyborg,I hope all the athletes competing in Seattle for the @SpecialOlympics have an amazing time competing! +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: @JohnMcCarthyMMA You can follow me so I can DM you? +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: Women empowering one another is what @girls_pinkbelt is all about! Only 8 spaces remain for my women’s Only retreat July 14… +06/30/2018,Sports_celeb,@criscyborg,"RT @CobrinhaCharles: Saturday class with the champion @criscyborg +• +• +• +• +Treino de sábado com a presença da campeã @criscyborg @ Cobrinha…" +06/30/2018,Sports_celeb,@criscyborg,Heeeeeey! https://t.co/NfHHpHgtxq +06/30/2018,Sports_celeb,@criscyborg,"Amazing Saturday with Alliance Family. +@gabbyjustino loved her first class with Professor @cobrinhacharles +Thank… https://t.co/YYFvTzyBoS" +06/30/2018,Sports_celeb,@criscyborg,@4Foxtrot @Coldsteelknives Thank you for your service. +06/30/2018,Sports_celeb,@criscyborg,@William23569623 @DancingABC @PaigeVanzantUFC @dancingbrasil +06/30/2018,Sports_celeb,@criscyborg,"nós estamos prontos @recordtvoficial @xuxameneghel @gabijiu kkkkk @dancingbrasil + +https://t.co/gxbRuaZ8oc" +06/30/2018,Sports_celeb,@criscyborg,@GeibSage Take a vacation down south! +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: Ladies only! Train the entire day with me in beautiful Costa Mesa California with @girls_pinkbelt and @UFCGymCostaMesa call… +06/30/2018,Sports_celeb,@criscyborg,Who’s watching #LFA44 on @AXSTVFights @axs right now? @patmiletich calling the action! +06/30/2018,Sports_celeb,@criscyborg,"RT @trboxing: WEIGHTS from Oklahoma City: @MikaelaMayer1 131.2 lbs. vs. Sheena Kaine 130.8 lbs. + +See it tomorrow on @espn+! https://t.co/TG…" +06/30/2018,Sports_celeb,@criscyborg,This looks like fun! https://t.co/VMmZ7Cjf6U +06/30/2018,Sports_celeb,@criscyborg,#Cyborgnation let @DancingABC know we want @PaigeVanzantUFC back! https://t.co/fg2lZKwOwu +06/30/2018,Sports_celeb,@criscyborg,Boxing @GGGBoxing @Canelo ticket prices https://t.co/VsexpChXbK +06/30/2018,Sports_celeb,@criscyborg,My favorite part about making dinner is deciding which @Coldsteelknives to use! https://t.co/B9W3ZepjaT +06/30/2018,Sports_celeb,@criscyborg,RT @EpicTideWetsuit: We are stoked. Take a peek! #ericisamodel #epiceric #meetericatepictide #singlesurfer #singlesurferdude #hydration #su… +06/29/2018,Sports_celeb,@criscyborg,"RT @TerezOwens: Cris Cyborg: I Never Fought Ronda Rousey Because She Was Afraid Of Me + https://t.co/fH0USyFSUT" +06/29/2018,Sports_celeb,@criscyborg,RT @UPROXXSports: Cris Cyborg claims she always knew Ronda Rousey was too scared to fight her #WWE #UFC https://t.co/QtXvy0k4Hg https://t.c… +06/29/2018,Sports_celeb,@criscyborg,@JohnMcCarthyMMA You can follow me so I can DM you? +06/28/2018,Sports_celeb,@criscyborg,RT @Everlast_: Happy birthday @ShakurStevenson! https://t.co/2NuLubJTU8 +06/28/2018,Sports_celeb,@criscyborg,"@PatRezzardi @CatrinaGuruarez @sherdogdotcom @jimrome I did two fights 140 + +https://t.co/JVMzLT4eOh" +06/28/2018,Sports_celeb,@criscyborg,RT @Jrayino: @criscyborg @jimrome @CBSSportsRadio @CBSSportsNet Great interview! Happy to see people see the real you and you gain new fans… +06/28/2018,Sports_celeb,@criscyborg,@NARDDAWG_JG @sherdogdotcom @jimrome @AlexaBliss_WWE #Blissfits +06/28/2018,Sports_celeb,@criscyborg,"RT @CarBombBoom13: “I don't want somebody else to be in this position, you know? + +You have a lot more years to live after professional spor…" +06/28/2018,Sports_celeb,@criscyborg,RT @sherdogdotcom: Cris Cyborg: I never fought Ronda Rousey because she was afraid of me https://t.co/dBsrwdh2UH via @jimrome https://t.co/… +06/28/2018,Sports_celeb,@criscyborg,"RT @MyMMANews: #UFC featherweight champ @criscyborg tells @jimrome that #RondaRousey was afraid of her. #CrisCyborg #JimRome +https://t.co/…" +06/28/2018,Sports_celeb,@criscyborg,"RT @RadiospazC: 3-5pm pst Another great day in the jungle! Former Bill Eric Wood in studio, then NHLer Daniel Carcillo, UFC Champ Cris Cybo…" +06/28/2018,Sports_celeb,@criscyborg,"RT @jimrome: Today’s daily podcast features @EWood70, @CarBombBoom13, and @criscyborg. Subscribe: https://t.co/rO6G6PmUTt" +06/28/2018,Sports_celeb,@criscyborg,RT @4Foxtrot: @criscyborg Im now following you after seeing the Jim Rome interview. You did great. Really impressed and inspired. +06/28/2018,Sports_celeb,@criscyborg,RT @prairiedog18: @criscyborg Enjoying your interview with @jimrome +06/28/2018,Sports_celeb,@criscyborg,RT @GM_Greatest: Great interview. Great person. Can’t wait to see @criscyborg fight. New fan here. https://t.co/jx3ttont1z +06/28/2018,Sports_celeb,@criscyborg,"RT @GCooks: @jimrome what a great interview w/ @criscyborg Even better watching on tv. What and incredibly engaging, charming, competitive…" +06/28/2018,Sports_celeb,@criscyborg,"RT @luvmy2girls4evr: @jimrome @criscyborg @CBSSportsRadio @CBSSportsNet Jim, which ""female"" athlete was more intimidating, Cyborg or Chyna?…" +06/28/2018,Sports_celeb,@criscyborg,"RT @Daniel_Wheatley: @jimrome I was not previously a fan of @criscyborg. But, after listening to your conversation w/ her, looking forward…" +06/28/2018,Sports_celeb,@criscyborg,RT @og_tisal: @criscyborg great interview on Rome! Looks forward to the next fight. +06/28/2018,Sports_celeb,@criscyborg,RT @METLOVER73: @jimrome @criscyborg @CBSSportsRadio @CBSSportsNet Not a hardcore UFC fan. Always heard nothing but negatives of @criscybor… +06/28/2018,Sports_celeb,@criscyborg,RT @Jimonealwoodart: Saturday Aug. 4th @criscyborg will be appearing at @rivolis and so will my statue of her. Can't wait to meet her and h… +06/28/2018,Sports_celeb,@criscyborg,It was a pleasure going In The Jungle today with @jimrome go listen @CBSSportsRadio or watch only on @CBSSportsNet… https://t.co/tPPDp7lia9 +06/28/2018,Sports_celeb,@criscyborg,RT @jimrome: .@criscyborg in studio right now on @CBSSportsRadio and @CBSSportsNet https://t.co/gwDyE4x76X +06/28/2018,Sports_celeb,@criscyborg,Live! Watch now @CBSSportsNet #CyborgNation @jimrome @CBSSportsRadio https://t.co/2UQgv6GS9y +06/28/2018,Sports_celeb,@criscyborg,Going live with @jimrome in the jungle next with @CBSSportsRadio don’t miss me on @CBSSportsNet starting now! +06/28/2018,Sports_celeb,@criscyborg,RT @CelebVM: Get an awesome personal video message from Cris Cyborg at https://t.co/TFJCK4GuWN #CelebVM @criscyborg #GiftIdea @criscyborg… +06/28/2018,Sports_celeb,@criscyborg,#CyborgNation join me inside The Jungle with @jimrome today 11:05 west coast time! @CBSSportsNet @CBSSportsRadio so… https://t.co/B49geSJ2gV +06/28/2018,Sports_celeb,@criscyborg,RT @MMAPARA: Nação Cyborg aposta em talentos locais para lotar ginásio em Campo Largo (PR) para segunda edição do evento https://t.co/kV3EM… +06/28/2018,Sports_celeb,@criscyborg,RT @rivolis: Meet the champ August 4 @rivolis @criscyborg #goat #criscyborg #ufc227 https://t.co/gtJJGsOjjV +06/27/2018,Sports_celeb,@criscyborg,"RT @gokhantherebel: 10 days left. I will plant the Turkish Flag in the Octagon. Turkish Tyson is back. 🇹🇷🇹🇷🇹🇷🇹🇷 + +10 gün kaldı. Türk Bayrağı…" +06/27/2018,Sports_celeb,@criscyborg,Don’t disrespect @BeckyLynchWWE by calling her Action Figure a Barbie Doll! https://t.co/2Dfsuutlrn +06/27/2018,Sports_celeb,@criscyborg,@LowClassGlamour @girls_pinkbelt @UFCGymCostaMesa Call 714-894-2399 spots are limited and only 8 spaces remaining t… https://t.co/yoku4OP23T +06/27/2018,Sports_celeb,@criscyborg,"RT @ZantzKiri: @criscyborg @AlexaBliss_WWE We have your Back, @AlexaBliss_WWE The Cyborg Nation is here! #CyborgNation" +06/27/2018,Sports_celeb,@criscyborg,Women empowering one another is what @girls_pinkbelt is all about! Only 8 spaces remain for my women’s Only retreat… https://t.co/cu8HePLCsu +06/27/2018,Sports_celeb,@criscyborg,*WARNING* if you are a woman and wanting to spend the day training with me and my friends during my July 14th… https://t.co/YOtVvCG8er +06/27/2018,Sports_celeb,@criscyborg,Congrats to @Claressashields who’s @ShowtimeBoxing fight last weekend against Gabriels became the most watched figh… https://t.co/6SU0Ctabn3 +06/26/2018,Sports_celeb,@criscyborg,Check out @criscyborg rocking the #TeamEverlast in camp with boxing coach Jason Parillo @Everlast_ +06/26/2018,Sports_celeb,@criscyborg,I can’t wait to meet all of #CyborgNation coming to @ufc #internationalfightweek #4thofJuly weekend! @ufc_brasil https://t.co/Cl0p7kzZ78 +06/26/2018,Sports_celeb,@criscyborg,https://t.co/LctpQUXs2V +06/26/2018,Sports_celeb,@criscyborg,@DrShalomim @AlexaBliss_WWE #Blissful thinking +06/26/2018,Sports_celeb,@criscyborg,"RT @arielhelwani: The Mousasi-MacDonald card on Sept. 29, which features Rampage-Silva 4, will air exclusively on DAZN in the US. They are…" +06/26/2018,Sports_celeb,@criscyborg,@EddieHearn @CallumTheOne @ABeterbiev The American takeover continues! +06/26/2018,Sports_celeb,@criscyborg,RT @criscyborg: You can’t go to war alone @AlexaBliss_WWE! You need #CyborgNation to have your back https://t.co/h0yYWvtrzG +06/26/2018,Sports_celeb,@criscyborg,"RT @gabijiu: Wrestling and mma ✅ +Learning is priceless! +Tks @titoortiz for teaching us. +@criscyborg khali.benjamin @GrapplersRus @ricardod…" +06/26/2018,Sports_celeb,@criscyborg,@MsCharlotteWWE @espnW Só awesome! Congrats +06/26/2018,Sports_celeb,@criscyborg,You can’t go to war alone @AlexaBliss_WWE! You need #CyborgNation to have your back https://t.co/h0yYWvtrzG +06/26/2018,Sports_celeb,@criscyborg,RT @MarkTaffetMedia: Kudos to young ⁦@Claressashields⁩ ! #FlintFutureFund #FlintWaterCrisis https://t.co/KGOzK0pyZh +06/26/2018,Sports_celeb,@criscyborg,"RT @BronzeBomber: Its Simple👑 +Champions are BORN, +Not MADE‼️ +KING, 2yrs Old +#BombZquad https://t.co/809AYU9Vkt" +06/26/2018,Sports_celeb,@criscyborg,@StephMcMahon @MsCharlotteWWE @WWE @espn Heeeey!!! 👊 +06/26/2018,Sports_celeb,@criscyborg,RT @StephMcMahon: Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue. Charl… +06/26/2018,Sports_celeb,@criscyborg,RT @criscyborg: #MomentOfBliss https://t.co/k2FM1StGoh +06/26/2018,Sports_celeb,@criscyborg,@TaraLaRosa @XANTHOS_77 @JackPosobiec Yes important follow rules! +06/26/2018,Sports_celeb,@criscyborg,"RT @TaraLaRosa: @XANTHOS_77 @JackPosobiec I consider @criscyborg a friend, and she is here LEGALLY! Cris is an amazing example of foreign t…" +06/26/2018,Sports_celeb,@criscyborg,"RT @MiaStJohnBoxer: This is the #ART piece that inspired the T-Shirt 🙌🏽The copies sold for 2k, the original was never for sale & remains wi…" +06/25/2018,Sports_celeb,@criscyborg,RT @Michelletraver6: @criscyborg #cyborgnation plus #Blissfits =a match made in heaven. +06/25/2018,Sports_celeb,@criscyborg,RT @rivolis: We can't wait #ufc227 #cyborgnation #cyborggoat #bringthestrap https://t.co/GI7e1fhKeg +06/25/2018,Sports_celeb,@criscyborg,@AlexaBliss_WWE Heeeeey! +06/24/2018,Sports_celeb,@criscyborg,RT @criscyborg: Forget @Barbie! I’m giving @BeckyLynchWWE dolls for Xmas presents 🎁 this year! https://t.co/LrL3u6mrAT +06/24/2018,Sports_celeb,@criscyborg,#Flintstone https://t.co/pMZtJlMve3 +06/24/2018,Sports_celeb,@criscyborg,I just ordered healthy meal deliveries with @dacikfit_foods in Orange County by calling 714-910-1531 +06/24/2018,Sports_celeb,@criscyborg,RT @MarkTaffetMedia: Big heart + Lots Courage + 2 Champions = GREAT FIGHT! Claressa Shields wins Middleweight Title! @Claressashields @Sho… +06/24/2018,Sports_celeb,@criscyborg,International Shipping available on all @criscyborg apparel purchased below! https://t.co/MiCj0MSCN9 +06/24/2018,Sports_celeb,@criscyborg,Get this exclusive shirt only from my online shop! https://t.co/UpAXjQDjsM +06/24/2018,Sports_celeb,@criscyborg,I loved the @boltwrestling camp! I hope he learned as many tricks as I did! https://t.co/iDwd9O25l9 +06/24/2018,Sports_celeb,@criscyborg,@LandoPan I love #CyborgNation +06/24/2018,Sports_celeb,@criscyborg,@CharmCity25 Hope you’re on #CyborgNation too! +06/24/2018,Sports_celeb,@criscyborg,RT @wolfsburgfl: @criscyborg @AlexaBliss_WWE Even if it's just Alexa spending an afternoon working out with Cyborg... that's gold. And I w… +06/24/2018,Sports_celeb,@criscyborg,"RT @NickBaldwinMMA: Great to see @EdKappMMA (finally) on Twitter. One of the best PR guys in the biz. Give him a follow, will ya?" +06/24/2018,Sports_celeb,@criscyborg,@AboutHerOFCL 👏👏👏👊 +06/24/2018,Sports_celeb,@criscyborg,RT @NerdyMisfit138: @criscyborg let's make it happen! +06/24/2018,Sports_celeb,@criscyborg,#CyborgNation and the #Blissfits?! https://t.co/aiqhYjEFJV +06/24/2018,Sports_celeb,@criscyborg,RT @Mhussein9911: @criscyborg Good to see the Champ Making some New Friends +06/24/2018,Sports_celeb,@criscyborg,I heard @MichaelRapaport practiced his @ufc and saved an entire ✈️ plane!🥋 Cobra Kai +06/24/2018,Sports_celeb,@criscyborg,I love the @ONEChampionship fights in the ring! @YODCHATRI @victoronefc very exciting https://t.co/jLRqGqgbMO +06/23/2018,Sports_celeb,@criscyborg,"@juliachoward @girls_pinkbelt This day is about more than fitness and fighting, it’s about goal setting, friendship… https://t.co/qp5rmBnmDb" +06/23/2018,Sports_celeb,@criscyborg,#MomentOfBliss https://t.co/k2FM1StGoh +06/23/2018,Sports_celeb,@criscyborg,@gokhantherebel @ufc @UFCEurope Alhamdullah +06/23/2018,Sports_celeb,@criscyborg,RT @criscyborg: #InternationalFightWeek @ufc is coming to Las Vegas 4th of July weekend! I can’t wait to meet all my fans coming for the ev… +06/23/2018,Sports_celeb,@criscyborg,"O sucesso é apenas uma consequência da sua determinação. + +#wrestling #cyborgnation #criscyborg + +Success is only a… https://t.co/ZFcN33Ua43" +06/23/2018,Sports_celeb,@criscyborg,@missjessyjess @arielhelwani @jessicaevileye You will come back better! +06/23/2018,Sports_celeb,@criscyborg,RT @BeckyLynchWWE: Ha! Deadly! https://t.co/S7gSni52Hx +06/23/2018,Sports_celeb,@criscyborg,@MMAjunkieJohn @ufc Old school! 🤙 +06/23/2018,Sports_celeb,@criscyborg,Forget @Barbie! I’m giving @BeckyLynchWWE dolls for Xmas presents 🎁 this year! https://t.co/LrL3u6mrAT +06/23/2018,Sports_celeb,@criscyborg,@MarkTaffetMedia @Claressashields @ShowtimeBoxing Great job guys! +06/23/2018,Sports_celeb,@criscyborg,#InternationalFightWeek @ufc is coming to Las Vegas 4th of July weekend! I can’t wait to meet all my fans coming for the events! +06/23/2018,Sports_celeb,@criscyborg,#CyborgNation Aug 4th I will be in New Jersey! Follow me on IG @criscyborg to find out where tomorrow! +06/23/2018,Sports_celeb,@criscyborg,#CyborgNation don’t forget tonight 130am pst @ProteinHouse1 athlete @missjessyjess fight @ufc #UFCSingapore on… https://t.co/BBlnSrUmup +06/23/2018,Sports_celeb,@criscyborg,@RMout29 👊 +06/23/2018,Sports_celeb,@criscyborg,Ladies only! Train the entire day with me in beautiful Costa Mesa California with @girls_pinkbelt and… https://t.co/JnRlJc0DzV +06/23/2018,Sports_celeb,@criscyborg,@rosieperezbklyn @ShowtimeBoxing Get her @Claressashields +06/23/2018,Sports_celeb,@criscyborg,Get the #CyborgNation sports bra only from @PhuketTopTeam https://t.co/xbCgjyUYuk +06/23/2018,Sports_celeb,@criscyborg,Amazing fight @Claressashields! @ShowtimeBoxing has a star +06/23/2018,Sports_celeb,@criscyborg,RT @AlexaBliss_WWE: @criscyborg Thanks ! I’ll let you know #ChampsHelpingChamps +06/23/2018,Sports_celeb,@criscyborg,"RT @ianbutlermma: Amazing sparring today with these legends. +📸 antmurataya +🦍🦍🦍🦍 +@bjpenndotcom +@criscyborg +@gulomoore +parilloboxing +@p…" +06/22/2018,Sports_celeb,@criscyborg,@LowKick_MMA 🤼‍♂️ @TripleH @TheCoachrules +06/22/2018,Sports_celeb,@criscyborg,RT @mmamania: .@CrisCyborg conspiring with #WWE star @AlexaBliss_WWE to help take down @RondaRousey https://t.co/3X6TBv7ErG https://t.co/M0… +06/21/2018,Sports_celeb,@criscyborg,RT @criscyborg: I’m so excited for my July 14th women’s Only @girls_pinkbelt camp! Don’t wait to reserve your space call 714-894-2399 today… +06/21/2018,Sports_celeb,@criscyborg,RT @criscyborg: Let me know # @AlexaBliss_WWE if you need help training Judo takedown and armbar defense! +06/21/2018,Sports_celeb,@criscyborg,"RT @TerezOwens: UFC Champion @CrisCyborg Offers To Train Ronda Rouseys Next Opponent +https://t.co/x49ERhZHJP" +06/21/2018,Sports_celeb,@criscyborg,RT @DynamiteTaylor1: To be the best you have to train with the best! Thanks for the wrestling today Kenny its always a pleasure to train wi… +06/21/2018,Sports_celeb,@criscyborg,"A juventude não é uma época da vida, +é um estado de espírito. +**** +****** +******* + +pratiquei todos os esportes poss… https://t.co/f97cTdNJ2B" +06/21/2018,Sports_celeb,@criscyborg,@marc_raimondi @SugarRaySefo The real game isn’t who punches harder. The fun part is learning who can take a punch… https://t.co/znlDAOx4g3 +06/20/2018,Sports_celeb,@criscyborg,@_ajawilson22 👊 @LVAces +06/20/2018,Sports_celeb,@criscyborg,#CyborgNation Who is ready for #UFC227 @rivolis?! +06/20/2018,Sports_celeb,@criscyborg,"RT @GeorgeForeman: If I could stand on the highest peek and scream 3 words ( the world could hear ) before I pass, I’d say “I Love You.” So…" +06/20/2018,Sports_celeb,@criscyborg,@BeckyLynchWWE @SpecialOlympics 💜 +06/20/2018,Sports_celeb,@criscyborg,"RT @BeckyLynchWWE: As a current California resider, I want to wish the @SpecialOlympics athletes out that way the best of luck in the up co…" +06/20/2018,Sports_celeb,@criscyborg,Let me know # @AlexaBliss_WWE if you need help training Judo takedown and armbar defense! +06/20/2018,Sports_celeb,@criscyborg,I’m so excited for my July 14th women’s Only @girls_pinkbelt camp! Don’t wait to reserve your space call 714-894-23… https://t.co/TMRPNJPxQF +06/17/2018,Sports_celeb,@criscyborg,RT @ErrolSpenceJr: Sold my own merchandise at the venue 🙃🙃 +06/17/2018,Sports_celeb,@criscyborg,"RT @LEllerbe: Very nice promo of @Claressashields @SHOsports, on point💯" +06/16/2018,Sports_celeb,@criscyborg,@JRsBBQ @rootsoffight I love that shirt! +06/16/2018,Sports_celeb,@criscyborg,@RyannVonDoom @TaraLaRosa @kellykobold 5 minutos +06/16/2018,Sports_celeb,@criscyborg,@TaraLaRosa @kellykobold We have been working on one. Hopefully soon +06/16/2018,Sports_celeb,@criscyborg,RT @criscyborg: July 28th my Combat Sports event Nacao Cyborg returns to Colombo Brazil for another exciting night of promoting professiona… +06/16/2018,Sports_celeb,@criscyborg,RT @criscyborg: 14 signups yesterday for my July 14th women’s Only Pinkbelt fitness camp. This one will reach capacity! Don’t wait to reser… +06/16/2018,Sports_celeb,@criscyborg,I think first 5 min wmma fight in North America was @TaraLaRosa V @kellykobold https://t.co/9hZkozRHDv +06/16/2018,Sports_celeb,@criscyborg,RT @fightnet: Relive UFC 222: @criscyborg vs. Kunitskaya at 3 p.m. ET on @fightnet! https://t.co/OsVfYxKQkX +06/16/2018,Sports_celeb,@criscyborg,@hannibalburess @InvictaFights Hahaha this is awesome! +06/15/2018,Sports_celeb,@criscyborg,RT @SugarRayLeonard: .@rootsoffight have launched their #FathersDaySale! Save 17% across the entire store & free mainland US shipping on or… +06/15/2018,Sports_celeb,@criscyborg,RT @criscyborg: Wishing everyone celebrating EID MUBARAK! +06/15/2018,Sports_celeb,@criscyborg,July 28th my combat sports promotion Nacao Cyborg returns for a night of promoting Pro Fights live from Colombo Brazil +06/15/2018,Sports_celeb,@criscyborg,@LVAces @DallasWings I need to see a game next time I’m in Vegas! +06/15/2018,Sports_celeb,@criscyborg,RT @EpicTideWetsuit: Don't forget that as we grow we bring the community up with us! https://t.co/T27b5qBUgG +06/15/2018,Sports_celeb,@criscyborg,RT @MMAPRO_LEAGUE: Are YOU ready for the new era of MMA? At the NEW @HardRockHCAC https://t.co/k6N69QGipw +06/15/2018,Sports_celeb,@criscyborg,RT @ltsport1: Press conference today. https://t.co/NCWzOE7Mee +06/15/2018,Sports_celeb,@criscyborg,Wishing everyone celebrating EID MUBARAK! +06/15/2018,Sports_celeb,@criscyborg,RT @criscyborg: I’m getting excited to meet all my fans at @ufc international fight week in Vegas next month! #CyborgNation +06/14/2018,Sports_celeb,@criscyborg,I’m getting excited to meet all my fans at @ufc international fight week in Vegas next month! #CyborgNation +06/13/2018,Sports_celeb,@criscyborg,"RT @WNBA: Vegas has itself an ACE in @_ajawilson22! #WatchMeWork + +Highlights from her historic effort in the @LVAces' OT win over Indiana:…" +06/13/2018,Sports_celeb,@criscyborg,RT @KatieTaylor: Excited to be back in the ring. July 28th at @TheO2. #AllTheBelts #WhyteParker https://t.co/O1B2gP3KLd +06/13/2018,Sports_celeb,@criscyborg,RT @marciodovalle: Um prazer trabalhar novamente neste evento. Vem aí o Nação Cyborg 2 https://t.co/QBtpweHbW9 +06/13/2018,Sports_celeb,@criscyborg,Feliz Aniversário @HannahStormESPN thank you for inspiring so many women to reach for more! https://t.co/LaL2CxA8ig +06/13/2018,Sports_celeb,@criscyborg,July 28th my Combat Sports event Nacao Cyborg returns to Colombo Brazil for another exciting night of promoting pro… https://t.co/TtavN3B9W3 +06/13/2018,Sports_celeb,@criscyborg,14 signups yesterday for my July 14th women’s Only Pinkbelt fitness camp. This one will reach capacity! Don’t wait… https://t.co/LOBQF405BU +06/13/2018,Sports_celeb,@criscyborg,RT @criscyborg: Cyborg joining forces with @UFCGYM to bring her #WomensOnly @girls_pinkbelt retreat to Costa Mesa CA July 14th @UFCGymCosta… +06/12/2018,Sports_celeb,@criscyborg,Amazing watching @EddieHearn work! https://t.co/PFVrz6qlNA +06/12/2018,Sports_celeb,@criscyborg,Congratulations @badassboz on the new role with Endeavor! I’m excited to get a chance to work together. +06/12/2018,Sports_celeb,@criscyborg,@sueluvsmma @junkpuppet69 @JustSinda #CyborgNation! Thanks for the support +06/12/2018,Sports_celeb,@criscyborg,@WNBA @Niacoff @LVAces Happy bday! +06/12/2018,Sports_celeb,@criscyborg,@dc_mma @TeamCoco 🤙 +06/12/2018,Sports_celeb,@criscyborg,"RT @AlBernstein: Not unreasonable to think that 2018 will still have #CharloHurd, #JoshuaWilder and #SantaCruzRussell & #CaneloGolovkin plu…" +06/12/2018,Sports_celeb,@criscyborg,"RT @latimespugmire: The @anthonyfjoshua @BronzeBomber fight is not done, but it will be interesting to see (and will say a lot) if Joshua t…" +06/12/2018,Sports_celeb,@criscyborg,Ladies come train with me @UFCGYM July 14th in Costa Mesa @UFCGymCostaMesa #womenonly https://t.co/MrbXvtmeya +06/12/2018,Sports_celeb,@criscyborg,RT @DandoisCindy: @pops_grm @WMMARankings @ufc @criscyborg @UFC_TUF I think I should be in the TUF -house. +06/11/2018,Sports_celeb,@criscyborg,"RT @criscyborg: vote @criscyborg as @FightersOnly Female Fighter Of The Year below! + +https://t.co/9SmYaRRCtF https://t.co/7VkpuEefJZ" +06/11/2018,Sports_celeb,@criscyborg,Cyborg joining forces with @UFCGYM to bring her #WomensOnly @girls_pinkbelt retreat to Costa Mesa CA July 14th… https://t.co/RuVrH8I7AZ +06/11/2018,Sports_celeb,@criscyborg,Cris Cyborg UFC visits Rex Fight while in Brazil! https://t.co/vFSsVw1Y5X +06/11/2018,Sports_celeb,@criscyborg,"vote @criscyborg as @FightersOnly Female Fighter Of The Year below! + +https://t.co/9SmYaRRCtF https://t.co/7VkpuEefJZ" +06/10/2018,Sports_celeb,@criscyborg,"Nunca é tarde demais para ser aquilo que sempre desejou ser. #vidaDeMae +=========================== +It's never too… https://t.co/hXULK5lKRi" +06/10/2018,Sports_celeb,@criscyborg,"🙌 we can do all possible plans for yourself or for others, But the final word who gives is God !!!! Have a blessed… https://t.co/Od16jNFFGG" +06/10/2018,Sports_celeb,@criscyborg,Dana is right! I’m no matchmaker Im not an employee but 10-99 that’s why Ronda never fought me GSP fights for a MW… https://t.co/q7aCfIaCiP +06/10/2018,Sports_celeb,@criscyborg,RT @PhilMcGeoghan: When you get your chin checked by the champ it’s a hell of a night! @criscyborg https://t.co/0KCDGGXN5X +06/10/2018,Sports_celeb,@criscyborg,RT @criscyborg: Both these girls beat @RondaRousey. I want to know who wins against each other and can fight the winner of @Amanda_Leoa V @… +06/10/2018,Sports_celeb,@criscyborg,@Amanda_Leoa @HollyHolm Im glad the leg is better. I been wondering why I wasn’t fighting #ufc226 https://t.co/mIVo8NKhtw +06/10/2018,Sports_celeb,@criscyborg,Both these girls beat @RondaRousey. I want to know who wins against each other and can fight the winner of… https://t.co/zOIvLqlKfo +06/10/2018,Sports_celeb,@criscyborg,@trboxing @ShakurStevenson Nice! +06/10/2018,Sports_celeb,@criscyborg,Come watch #ufc225 with me in #HB #TheOC https://t.co/hLdV4ybJ2H +06/10/2018,Sports_celeb,@criscyborg,@arielhelwani Morning! 🙌 +06/09/2018,Sports_celeb,@criscyborg,@LEllerbe Thanks for the support! +06/09/2018,Sports_celeb,@criscyborg,Glad to see @Tyson_Fury get the win! +06/09/2018,Sports_celeb,@criscyborg,"RT @NYFights: Heather Hardy Leads Battle Vs Stigma In Mental Health Matters, Post Bourdain Suicide - NY FIGHTS https://t.co/rpuRD0Djb8" +06/09/2018,Sports_celeb,@criscyborg,You do you have in the main event? #ufc225 +06/09/2018,Sports_celeb,@criscyborg,Who wins tonight? @MGMGrand @espn #CrawfordHorn +06/09/2018,Sports_celeb,@criscyborg,"RT @Everlast_: New weight class. Same fighter. +@budcrawford402 +#crawfordhorn #TeamEverlast https://t.co/9U3c4OfGHn" +06/09/2018,Sports_celeb,@criscyborg,RT @criscyborg: #HuntingtonBeach if you’re watching #ufc225 tomorrow come to the #CyborgNation viewing at #HurricanesBarAndGrill #hb #oc @u… +06/09/2018,Sports_celeb,@criscyborg,RT @criscyborg: My next #WomensOnly PinkBeltFitness camp will be all day July 14th in Costa Mesa CA at @bisping @CubSwanson @UFCGYM @UFCGy… +06/09/2018,Sports_celeb,@criscyborg,RT @AirAsia: Congrats @tonyfernandes! 🎉 We’re thrilled that ‘Flying High: My Story from AirAsia to QPR’ won 1st prize in the non-fiction ca… +06/09/2018,Sports_celeb,@criscyborg,#HuntingtonBeach if you’re watching #ufc225 tomorrow come to the #CyborgNation viewing at #HurricanesBarAndGrill… https://t.co/GT66qkhLvs +06/09/2018,Sports_celeb,@criscyborg,This will be a great fight! https://t.co/iPyLLQNazy +06/09/2018,Sports_celeb,@criscyborg,#CyborgNation https://t.co/Fsku3hHgV4 +06/09/2018,Sports_celeb,@criscyborg,@hillimpact 🙏🙏❤️❤️ God bless +06/08/2018,Sports_celeb,@criscyborg,"RT @latimespugmire: Boxing's sanctioning bodies on board with California's push for weight-cutting, dehydration measures https://t.co/nx408…" +06/08/2018,Sports_celeb,@criscyborg,RT @jayfreshstart: .@PannieKianzad weigh in video. 134.1. 👏 https://t.co/Nfr5wg4hvz +06/08/2018,Sports_celeb,@criscyborg,RT @criscyborg: Just spoke to a special guest instructor for my July 14th pinkbelt fitness camp with @UFCGYM @UFCGymCostaMesa @UFCGYMPREZ t… +07/01/2018,Sports_celeb,@Amanda_Leoa,@LanasEggWhites @ufc @KingMoFH Awesome I will 👊🏼 +07/01/2018,Sports_celeb,@Amanda_Leoa,@RiosSolberg @ufc 😚😚😚😚😚😚😚😚 graciasssss +06/30/2018,Sports_celeb,@Amanda_Leoa,@Dynamite4Life @ufc Thank u 🙌🏼 +06/30/2018,Sports_celeb,@Amanda_Leoa,#ufc25years @ufc https://t.co/hnsaQJX75B +06/29/2018,Sports_celeb,@Amanda_Leoa,Meu são joao acabou 😭 mas ano que vem estarei de volta 🙏🏼 e viverei cada momento intensamente.🙌🏼 My são Joao is ove… https://t.co/g0JLeGPhcH +06/27/2018,Sports_celeb,@Amanda_Leoa,And u is my ❤️ https://t.co/0MS2vUyyzg +06/25/2018,Sports_celeb,@Amanda_Leoa,Awesome time with my friends 🤣 nunca esquecerei esse #SaoJoao amigos 😘 #monteiro #paraiba https://t.co/YPKfDZ972Q +06/24/2018,Sports_celeb,@Amanda_Leoa,Só lama #saojoao #monteiro #paraiba Awesome night with my friends. https://t.co/KUYoIuOyeW +06/24/2018,Sports_celeb,@Amanda_Leoa,Minha prefeita @annalorenanobrega #monteiro #Paraíba melhor #saojoao do mundo.🇧🇷 https://t.co/IVFV6eL810 +06/23/2018,Sports_celeb,@Amanda_Leoa,@SimoneeSimaria 😂😂😂😂 https://t.co/rKj3FLhyMF +06/22/2018,Sports_celeb,@Amanda_Leoa,🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷😘 estamos juntos https://t.co/xP3eAfwhYP +06/22/2018,Sports_celeb,@Amanda_Leoa,Minha vida meu amor 🇧🇷 https://t.co/Cw3OCbgZzW +06/22/2018,Sports_celeb,@Amanda_Leoa,@Phil_Coutinho @neymarjr https://t.co/nKcgm5oFfZ +06/22/2018,Sports_celeb,@Amanda_Leoa,Vamos lá 3 x 0 Brasil 🇧🇷 let’s go primeiro gol do @Phil_Coutinho #leoa #Believe #acreditar #sempre ⚽️ https://t.co/05LORyJvVx +06/20/2018,Sports_celeb,@Amanda_Leoa,🛫 https://t.co/pv0dLgX5k4 +06/19/2018,Sports_celeb,@Amanda_Leoa,@PorterUFCnews @espn Agree 😂😂😂👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 +06/19/2018,Sports_celeb,@Amanda_Leoa,6 weeks out @NinaAnsaroff https://t.co/5ILTDSw0gt +06/19/2018,Sports_celeb,@Amanda_Leoa,6 weeks out @NinaAnsaroff https://t.co/bPmYULEnEF +06/19/2018,Sports_celeb,@Amanda_Leoa,"🎶Let's get away from this place baby! +Let's run away +I'm tired of waiting +May you carry me 🎶 Vamos fugir deste luga… https://t.co/CA3QWG2zQS" +06/18/2018,Sports_celeb,@Amanda_Leoa,@_eulolaa Danadinhos d + 🙄😂😂😂😂 +06/17/2018,Sports_celeb,@Amanda_Leoa,@GentryAdvance Was awesome 👏🏼 thank you!!!! +06/17/2018,Sports_celeb,@Amanda_Leoa,@_eulolaa Simba 😁 +06/17/2018,Sports_celeb,@Amanda_Leoa,🐶🇧🇷 https://t.co/8RoP57ehxZ +06/17/2018,Sports_celeb,@Amanda_Leoa,🐶🇧🇷 https://t.co/lOiVj61ZrV +06/17/2018,Sports_celeb,@Amanda_Leoa,Let’s go 🇧🇷 vamos lá Brasil @AdrianaLima https://t.co/tkk160VA3g +06/17/2018,Sports_celeb,@Amanda_Leoa,#gaypride https://t.co/IAvXDo3xcL +06/15/2018,Sports_celeb,@Amanda_Leoa,🦁👀👴🏻👀 we know #Papa @ConanSilveira https://t.co/Bb6LDzwvN3 +06/15/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff https://t.co/QpvqjEVSvR +06/14/2018,Sports_celeb,@Amanda_Leoa,🦁 https://t.co/413g3dixyx +06/12/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😉 https://t.co/cDhD7ujGD1 +06/10/2018,Sports_celeb,@Amanda_Leoa,Let’s do it @HollyHolm +06/10/2018,Sports_celeb,@Amanda_Leoa,@CoreyA_MMA 😂😂😂😂😂😂😂😂 +06/09/2018,Sports_celeb,@Amanda_Leoa,RT @wolverine6523: #UFC25YEARS https://t.co/22EqkPOmPt +06/09/2018,Sports_celeb,@Amanda_Leoa,Obrigadaaaaa thank you @DRPROTETOR https://t.co/18Kfmg1pFV +06/09/2018,Sports_celeb,@Amanda_Leoa,I found my favorite rag 😂 #kambiz https://t.co/5RJPupJ3Nu +06/09/2018,Sports_celeb,@Amanda_Leoa,A lot of respect for you!!!🙏🏼 Respeito é muito importante!!! @RockyPMMA https://t.co/IJ6c5B6Ifw +06/08/2018,Sports_celeb,@Amanda_Leoa,home Sweet Home 🏡🇺🇸 https://t.co/LmU39V4uqc +06/08/2018,Sports_celeb,@Amanda_Leoa,See u tomorrow 🇺🇸 🙌🏼🙏🏼 +06/01/2018,Sports_celeb,@Amanda_Leoa,https://t.co/B6GKl5uJpF +05/29/2018,Sports_celeb,@Amanda_Leoa,RT @InvictaFights: RT to wish President @shanknapp a very Happy Birthday! 🎂 https://t.co/MJHdBkBMvC +05/29/2018,Sports_celeb,@Amanda_Leoa,😘😂👵🏼 https://t.co/JTpv9cDJPs +05/29/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😂😂😂😂 cute +05/29/2018,Sports_celeb,@Amanda_Leoa,I miss you my love 😘 but this is my blanket? 😡😡😡👇🏼😖 I miss my beautiful blanket also 😖😖😖😡😡😡 @NinaAnsaroff https://t.co/sIWmMVQANd +05/26/2018,Sports_celeb,@Amanda_Leoa,@junior_cigano 😂😂😂😋😋😋 https://t.co/5nWlbe9clo +05/26/2018,Sports_celeb,@Amanda_Leoa,@TeciaTorres Beautiful TT +05/26/2018,Sports_celeb,@Amanda_Leoa,"RT @Jon_Anik: So much respect and appreciation for @Amanda_Leoa, @RockyPMMA, @NinaAnsaroff, + @TeciaTorres and all they represent as fighte…" +05/26/2018,Sports_celeb,@Amanda_Leoa,@Jon_Anik @NinaAnsaroff @RockyPMMA @TeciaTorres 🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼 thank you very much I appreciate +05/26/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️🤣🤣🤣🤣 it’s my pet +05/24/2018,Sports_celeb,@Amanda_Leoa,"Mainha, Mamá coco, Eu e Menina 🐶😂 https://t.co/MrTRf9fOfE" +05/21/2018,Sports_celeb,@Amanda_Leoa,Vovó e o Gritinho do @pabllovittar grandma 👵🏼😂😂😂 https://t.co/F06zOlcKbs +05/19/2018,Sports_celeb,@Amanda_Leoa,My sister Neu 🙌🏼 Minha irmã @vanessa.nunes.946954 #loveyou 😘 https://t.co/q0Ns1eZK0H +05/18/2018,Sports_celeb,@Amanda_Leoa,🏹 and 🦁 @NinaAnsaroff https://t.co/3C07A5VBJ6 +05/18/2018,Sports_celeb,@Amanda_Leoa,🙏🏼😘 @TeciaTorres @NinaAnsaroff @RockyPMMA https://t.co/EJZhM8QEpV +05/16/2018,Sports_celeb,@Amanda_Leoa,Grandma 👵🏼 https://t.co/1QIFQ6559j +05/16/2018,Sports_celeb,@Amanda_Leoa,Congrats @PerfectingA 🙌🏼 https://t.co/b6Cq5cqb8s +05/16/2018,Sports_celeb,@Amanda_Leoa,🤭🤭🤭🤭🤭🤭🤭🤭🤭🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 https://t.co/yiT03SFNCK +05/16/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😒🤬🤬🤬🤬🤬😂😂😂😂😂😂 +05/16/2018,Sports_celeb,@Amanda_Leoa,Foi ótima nossa conversa @pedrobial é hoje em @conversacombial 🦁 https://t.co/SKICm6QknI +05/14/2018,Sports_celeb,@Amanda_Leoa,"E assim finalizamos mais uma jornada de muito treinamento e dedicação, a torcida positiva dos verdadeiros fãs preva… https://t.co/HpUB0oP2ZV" +05/14/2018,Sports_celeb,@Amanda_Leoa,RT @ufc_brasil: Levante a mão quem acordou nessa segunda se sentindo uma campeã! @Amanda_Leoa https://t.co/gYrJVgmiez +05/14/2018,Sports_celeb,@Amanda_Leoa,@thebigticket205 Thank you my friend 🙏🏼👊🏼🙌🏼 +05/13/2018,Sports_celeb,@Amanda_Leoa,Mission Accomplished 🦁 missão cumprida #ufc224 #AndStill https://t.co/EJAb7MKnqB +05/13/2018,Sports_celeb,@Amanda_Leoa,#ubuntu #andstill Obrigada a todos 🦁 thank you so much everyone 🙏🏼 https://t.co/0eeq5hr9Mp +05/12/2018,Sports_celeb,@Amanda_Leoa,Amanhã 🦁 tomorrow #AndStill https://t.co/RWvgkxSgFq +05/12/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The queen of the jungle has arrived. + +@Amanda_Leoa #UFC224 https://t.co/h31fChcWAb" +05/11/2018,Sports_celeb,@Amanda_Leoa,😂😂😂😂😂😂💩 @NinaAnsaroff https://t.co/j9C1L9sX0k +05/11/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄 @NinaAnsaroff https://t.co/SxAFXWuuQg +05/10/2018,Sports_celeb,@Amanda_Leoa,😉 my girlfriend 😘Minha namoradinha @NinaAnsaroff https://t.co/tsFR1N5kHB +05/10/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄 https://t.co/oMscWwzWZl +05/08/2018,Sports_celeb,@Amanda_Leoa,Nós crescemos juntas como irmãs 🙌🏼 we grew up together like sisters. https://t.co/jPq1FwqRlD +05/07/2018,Sports_celeb,@Amanda_Leoa,The good moments are always waybetter than the bad. Os melhores momentos serão sempre os melhores. Um simples deta… https://t.co/p76i2hmY8n +05/07/2018,Sports_celeb,@Amanda_Leoa,#Ufc224 #riobrasil https://t.co/6BrGcyBBof +05/06/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄🤮🤮🤮🤢🤢🤢🤢🤢🤢🤢🤢🤮🤮 https://t.co/j4PmT6IyVD +05/04/2018,Sports_celeb,@Amanda_Leoa,Tonight @InvictaFights 👇🏼 https://t.co/lIkk8rXvxq +05/04/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The champ is ready for anything. + +@Amanda_Leoa #UFC224 https://t.co/VPhliQCiEO" +05/04/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Em 12 de maio, 🇧🇷@Amanda_Leoa defenderá pela terceira vez o cinturão do peso-pena feminino contra 🇺🇸@RockyPMMA na luta pri…" +05/03/2018,Sports_celeb,@Amanda_Leoa,Juntos para mais uma missão 🦁 Together for another mission #andstill #ufc224 https://t.co/0cgZtdP8LI +05/02/2018,Sports_celeb,@Amanda_Leoa,Chip and Dale 😁 https://t.co/GEZP3DAgFh +05/01/2018,Sports_celeb,@Amanda_Leoa,👇🏼🏆 https://t.co/itF7n9P6jt +05/01/2018,Sports_celeb,@Amanda_Leoa,Home 🏡🙌🏼👏🏼👏🏼👏🏼👏🏼 +04/30/2018,Sports_celeb,@Amanda_Leoa,#andstill https://t.co/0H6FQgRqiO +04/30/2018,Sports_celeb,@Amanda_Leoa,🙌🏼 @FCBarcelona 🏆 https://t.co/cR90VAeplo +04/30/2018,Sports_celeb,@Amanda_Leoa,👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 https://t.co/a708Lo53j0 +04/30/2018,Sports_celeb,@Amanda_Leoa,INSIDE VIEW: The celebration of the title at Riazor https://t.co/7l7FgwbdWl +04/29/2018,Sports_celeb,@Amanda_Leoa,@ufc We are less than 2 week for 224 😁✌🏼 +04/29/2018,Sports_celeb,@Amanda_Leoa,"Less than 2 weeks before my fight, when I’m tying together all the ends of this camp. I have to go to New York for a Media Day. 👏🏼👏🏼🙌🏼" +04/28/2018,Sports_celeb,@Amanda_Leoa,💙❤️ https://t.co/vJuZmQqg8Y +04/28/2018,Sports_celeb,@Amanda_Leoa,"@DIRECTVService @NinaAnsaroff @DIRECTV One question.... How come, when it is raining, the reception never works? 😖😖" +04/28/2018,Sports_celeb,@Amanda_Leoa,🤬🤬🤬🤬🤬🤬🤬🤬 @DIRECTV https://t.co/Ra3Td5xvaP +04/28/2018,Sports_celeb,@Amanda_Leoa,🤬🤬🤬🤬🤬🤬🤬🤬 @DIRECTV https://t.co/OtgjNOSc9b +04/28/2018,Sports_celeb,@Amanda_Leoa,😩😩😩😩 https://t.co/MNi8YeIwWx +04/28/2018,Sports_celeb,@Amanda_Leoa,@adrianomkmoraes @evertonVVxtreme Adriano Martins https://t.co/nWc5TMp4EY +04/27/2018,Sports_celeb,@Amanda_Leoa,Here we go https://t.co/eCIj1yxi0W +04/25/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Em 12 de maio, @Amanda_Leoa retorna a cidade do Rio de Janeiro, palco de sua estreia no octógono. Mas agora a história será…" +04/25/2018,Sports_celeb,@Amanda_Leoa,This is my water 💧 Essa é minha água @tenwater thank you 🙏🏼 https://t.co/BUMeZoh6Lm +04/25/2018,Sports_celeb,@Amanda_Leoa,@hiimash2 @ufc Awesome! make sure you watch them too 🙌🏼 +04/24/2018,Sports_celeb,@Amanda_Leoa,@ufc 👊🏼💪🏼 +04/24/2018,Sports_celeb,@Amanda_Leoa,@davi85291393 @ufc Eu sou gatinha tbm 😂😂😂😂😂😂 thanks +04/24/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The Lioness takes the Octagon in less than three weeks .. + +@Amanda_Leoa #UFC224 https://t.co/kH7UocBzCU" +04/24/2018,Sports_celeb,@Amanda_Leoa,Our Mate is back @alexchambersmma 🙌🏼 https://t.co/qlegfvrHpk +04/23/2018,Sports_celeb,@Amanda_Leoa,👇🏼 https://t.co/1oFtgbvGnx +04/23/2018,Sports_celeb,@Amanda_Leoa,"RT @UFC_CA: The Octagon returns May 12 for #UFC224! + +@Amanda_Leoa vs. @RockyPMMA for the WBW championship. Who takes it? https://t.co/eIq5X…" +04/23/2018,Sports_celeb,@Amanda_Leoa,RT @caradesapatojr: A verdade sempre prevalece!! Quem te conhece sabe q vc jamais trapacearia. 🇧🇷—🇺🇸 The true always… https://t.co/XMm8Geax… +04/23/2018,Sports_celeb,@Amanda_Leoa,@junior_cigano 🙌🏼🙌🏼 https://t.co/MPefhs88IR +04/23/2018,Sports_celeb,@Amanda_Leoa,@ichbindaswalros @NinaAnsaroff 🥘 😂😂😂 +04/23/2018,Sports_celeb,@Amanda_Leoa,@benjogami1 @NinaAnsaroff My food 🥘 😂😂😂 +04/23/2018,Sports_celeb,@Amanda_Leoa,@EllieLynnbooks @NinaAnsaroff she does on purpose 😁😁😁😁 don’t like when she call me that +04/23/2018,Sports_celeb,@Amanda_Leoa,@PamBam_Sorenson @NinaAnsaroff She knows I don’t like being called a princess but she does on purpose. 😁😁😁 +04/23/2018,Sports_celeb,@Amanda_Leoa,😉😁 https://t.co/no5bJuIJiE +04/23/2018,Sports_celeb,@Amanda_Leoa,Princess 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 @NinaAnsaroff https://t.co/f9AxeePtc6 +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @UFCFightPass: Welcome to the @UFC Hall of Fame @MattSerraUFC! Re-live Matt's best in his Hall of Fame collection on #UFCFIGHTPASS 👉 htt… +04/22/2018,Sports_celeb,@Amanda_Leoa,Heavy weights 👊🏼 https://t.co/l8v2aOU4ep +04/22/2018,Sports_celeb,@Amanda_Leoa,@Rockup30 👊🏼💪🏼 +04/22/2018,Sports_celeb,@Amanda_Leoa,@BFORTHEV @ufc https://t.co/nL6EtSNq7a +04/22/2018,Sports_celeb,@Amanda_Leoa,@anacaro90574749 💪🏼👊🏼valeu +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @BigfootSilva: I’m with @EdsonBarbozaJR 👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼 https://t.co/xtTIHu7Z8s +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @danawhite: #UFCAC Fight Pass prelims start NOW!!! https://t.co/BYOSCpcBkO +04/22/2018,Sports_celeb,@Amanda_Leoa,Good decision https://t.co/6SDfgAYUFU +04/22/2018,Sports_celeb,@Amanda_Leoa,Congrats @FCBarcelona 👏🏼👏🏼👏🏼👏🏼👏🏼 +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @FCBarcelona: ⚽ 69: GOOAAAALLLL! Coutinho from the penalty spot after handball by Lenglet! #CopaBarça (0-5) https://t.co/GTpMjjEnNe +04/21/2018,Sports_celeb,@Amanda_Leoa,@AddeAbra 😂😂😂😂 +04/21/2018,Sports_celeb,@Amanda_Leoa,@lschi1 🙏🏼🙌🏼 +04/21/2018,Sports_celeb,@Amanda_Leoa,@BADDESTMMA 😂😂😂😂😂😂😂 +04/21/2018,Sports_celeb,@Amanda_Leoa,My coffee ☕️ Meu café 😂😂😂😂😂 https://t.co/UHDeGLDWJc +04/21/2018,Sports_celeb,@Amanda_Leoa,Good morning 🌞 https://t.co/ZBPhFV0Pac +04/21/2018,Sports_celeb,@Amanda_Leoa,"RT @InvictaFights: Who do you think will be crowned the new bantamweight champion? + +Experience #InvictaFC29: @mmasarah vs @klwmma LIVE from…" +04/20/2018,Sports_celeb,@Amanda_Leoa,Good morning 😃 https://t.co/BuwG5Pcl9x +04/20/2018,Sports_celeb,@Amanda_Leoa,Harm up https://t.co/spv9CqJXaA +04/20/2018,Sports_celeb,@Amanda_Leoa,@benjamin8213 🙏🏼 https://t.co/49746hPUwV +04/20/2018,Sports_celeb,@Amanda_Leoa,@jerald_ridgway Lol...I was hoping for 29 https://t.co/c2mOqhl0jz +04/20/2018,Sports_celeb,@Amanda_Leoa,@m_tbeck https://t.co/F61iZuBWKG +04/20/2018,Sports_celeb,@Amanda_Leoa,@ErkDennis @ufc https://t.co/SAYVGNsynr +04/20/2018,Sports_celeb,@Amanda_Leoa,@valleygems413 👊🏼💪🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@ErkDennis @ufc I will still be making some 💰😉 +04/20/2018,Sports_celeb,@Amanda_Leoa,@jajamour01 Valeu 🙏🏼🙌🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@Playachampion 🙌🏼🙏🏼💪🏼👊🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@Mev_96 @ufc https://t.co/zAwax1rO1o +04/20/2018,Sports_celeb,@Amanda_Leoa,@erika_leer @m_tbeck 🙌🏼💪🏼👊🏼🤝 thank you!!!! +04/20/2018,Sports_celeb,@Amanda_Leoa,@m_tbeck @erika_leer 😂😂😂😂😂😂😂😂😂😂 https://t.co/A8fUqbsVS1 +04/19/2018,Sports_celeb,@Amanda_Leoa,#UFC224 https://t.co/UDP8RKZKwo +04/19/2018,Sports_celeb,@Amanda_Leoa,Thank you @PerfectingA https://t.co/kFwVcdpQcV +04/19/2018,Sports_celeb,@Amanda_Leoa,Salt life https://t.co/Anss26T543 +04/19/2018,Sports_celeb,@Amanda_Leoa,@Bfr_Sabrina Thank you ☺️ +04/19/2018,Sports_celeb,@Amanda_Leoa,😩 https://t.co/G75NxJ20xH +04/19/2018,Sports_celeb,@Amanda_Leoa,https://t.co/guWEGiH4Mb +04/19/2018,Sports_celeb,@Amanda_Leoa,@mightjuschilll Thank you 🙏🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,@Playachampion 🙌🏼💪🏼👊🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,@RolandSchultz8 Let’s go 🙏🏼🙌🏼💪🏼👊🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,I miss u Gunner 👶🏼😩 saudade do meu branquelo Gunner. https://t.co/VkCRuf8WqG +04/18/2018,Sports_celeb,@Amanda_Leoa,@juniolivasco @ufc Amém 🙏🏼 Obrigada +04/18/2018,Sports_celeb,@Amanda_Leoa,#ufc224 #riobrasil https://t.co/LYDQpWPrNI +04/18/2018,Sports_celeb,@Amanda_Leoa,Boom 💥👇🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 https://t.co/Y2VODLOr1B +04/18/2018,Sports_celeb,@Amanda_Leoa,@RedWhite_Gooner @ufc 💪🏼👊🏼🙌🏼🙏🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@vikingjason @ufc @RockyPMMA Thank you!!! 🙌🏼👊🏼💪🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@EnigmaFights @ufc 👊🏼💪🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,RT @MMAWrestle_Chat: Apart from the random strawweight fight this card looks like it could have some great fights on it:@Amanda_Leoa vs @Ro… +04/18/2018,Sports_celeb,@Amanda_Leoa,@Onlynate247 @ufc May 12 💪🏼👊🏼😊 #ufc224 +04/18/2018,Sports_celeb,@Amanda_Leoa,@NKCheo @ufc 😂😂😂😂😂😂😂😂😂😂😂 +04/18/2018,Sports_celeb,@Amanda_Leoa,@TMLsince1994 @ufc 😎 +04/18/2018,Sports_celeb,@Amanda_Leoa,@UnRayao @ufc 👏🏼👏🏼👏🏼👏🏼👏🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@GmChn9R @ufc 🤓 +04/18/2018,Sports_celeb,@Amanda_Leoa,@jim782_greg @ufc Boom 💥 thank you!🙏🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@apex47sa @ufc 🤣🤣🤣🤣🤣🤣🤣🤣 +04/18/2018,Sports_celeb,@Amanda_Leoa,@RedWhite_Gooner @ufc 😎😄 +04/18/2018,Sports_celeb,@Amanda_Leoa,@MightyArsenal19 @ufc Lol +04/18/2018,Sports_celeb,@Amanda_Leoa,@UnRayao @ufc 🤪🤪🤪🤪🤪🤪 +04/18/2018,Sports_celeb,@Amanda_Leoa,@MattWalters3 @ufc 😂😂😂😂😂😂😂😂 +04/18/2018,Sports_celeb,@Amanda_Leoa,@ufc What about #ufc224? 🧐 +04/18/2018,Sports_celeb,@Amanda_Leoa,she listens to👂 her owners voice 😊 Falei felicidade quando 👂 a dona chegar 😂😂😂😂😂 https://t.co/L1DXxl6ho8 +04/18/2018,Sports_celeb,@Amanda_Leoa,@10natoo 😂😂😂😂😂 é +04/17/2018,Sports_celeb,@Amanda_Leoa,I needed some skills to record this. https://t.co/1P211jmKlu +04/17/2018,Sports_celeb,@Amanda_Leoa,Feliz aniversário Mãe 🎂 que a vida nos permita comemorar essa data por muitos e muitos anos 🙏🏼obrigada por tudo TE… https://t.co/4cAhdr3jqO +04/16/2018,Sports_celeb,@Amanda_Leoa,Baby Gunner 😴 https://t.co/DeeAZ9wKNF +04/16/2018,Sports_celeb,@Amanda_Leoa,Ready to go 🦁 Tudo pronto @judokayla @conansilveira @mikebrownmma @dyah_ali @parrumpaatt @stevemocco #ufc224… https://t.co/GDoWJOtycv +04/16/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Assim foi a primeira encarada entre a campeã @Amanda_Leoa e @RockyPMMA. Elas lutam no #UFC224, dia 12 de maio, no Rio de Ja…" +04/16/2018,Sports_celeb,@Amanda_Leoa,RT @ufc_brasil: Já são cinco vitórias seguidas no octógono! Quem deve ser o próximo adversário de @caradesapatojr no #UFC? https://t.co/ka9… +04/16/2018,Sports_celeb,@Amanda_Leoa,Good morning!! Guess who helped me fall asleep last night!? 👶🏼 Bom dia! Olha quem me ajudou a ter uma noite de paz… https://t.co/zkByOzJXJV +04/15/2018,Sports_celeb,@Amanda_Leoa,Sunday 👶🏼 day https://t.co/bn6cwUIjMq +04/15/2018,Sports_celeb,@Amanda_Leoa,RT @ConanSilveira: UBUNTU🙏🏻🙏🏻🙏🏻 @amanda_leoa @ninaansaroff @valdirenenunes1 @katelkubis @americantopteam https://t.co/4xKigyWSZZ +04/15/2018,Sports_celeb,@Amanda_Leoa,Fuck Awesome @DustinPoirier congrats +04/15/2018,Sports_celeb,@Amanda_Leoa,#ubuntu @ConanSilveira @NinaAnsaroff 🙌🏼 https://t.co/GVlH3y6yKY +04/14/2018,Sports_celeb,@Amanda_Leoa,Let’s go Sapatinho @caradesapatojr https://t.co/qO2LasuxfA +04/12/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: O octógono retorna ao Rio de Janeiro no dia 12 de maio com @Amanda_Leoa, @JacareMMA, @VitorBelfort, @LyotoMachidafw e muito…" +04/10/2018,Sports_celeb,@Amanda_Leoa,"RT @FCBarcelona: 🔊 Valverde: ""We are sorry for the fans. Now we have to carry on and focus on what's left for us"" #RomaBarça https://t.co/Z…" +04/10/2018,Sports_celeb,@Amanda_Leoa,@MikeMeehan2016 @FCBarcelona 🙏🏼💪🏼👊🏼 thank you! +04/10/2018,Sports_celeb,@Amanda_Leoa,@Pinzon804 @FCBarcelona 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 +04/10/2018,Sports_celeb,@Amanda_Leoa,@MikeMeehan2016 @FCBarcelona 😂😂😂😂😂😂😂😂 +04/10/2018,Sports_celeb,@Amanda_Leoa,3 goal I can’t believe that 🙈🙈🙈🙈🙈🙈🙈🙈 @FCBarcelona 😭😭😭😭😭😭😭😭😭😭😭😭😭😭 q porraaa viu +04/10/2018,Sports_celeb,@Amanda_Leoa,😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖Omg omg @FCBarcelona 🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈 +04/10/2018,Sports_celeb,@Amanda_Leoa,Let’s go Barca please @FCBarcelona 😵😖😖😖😖😖 +04/10/2018,Sports_celeb,@Amanda_Leoa,No no no no Omg 😭😭😭😭😭😭😭😭😭😭😭😭 @FCBarcelona +04/10/2018,Sports_celeb,@Amanda_Leoa,This game 😳🔥 Barca vs Roma Omg @FCBarcelona +04/10/2018,Sports_celeb,@Amanda_Leoa,https://t.co/knOmqqprOS +04/10/2018,Sports_celeb,@Amanda_Leoa,https://t.co/GpePaWBJWN +04/08/2018,Sports_celeb,@Amanda_Leoa,@MoicanoRenato 👉🏼🏆 https://t.co/jl36FZNgdJ +04/08/2018,Sports_celeb,@Amanda_Leoa,RT @ussoccer_wnt: .@alexmorgan13's last 13 #USWNT games: ⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️ https://t.co/MHqawI0cSD +04/08/2018,Sports_celeb,@Amanda_Leoa,Pic of the night @chilipeppers foto da noite #ufc223 https://t.co/x9lWYxiNaf +04/07/2018,Sports_celeb,@Amanda_Leoa,Awesome push today 🦁 O treino hj foi massa. #conditioning #preparacaofisica #newyork #dogpound #ufc223 @AdrianaLima… https://t.co/e3iSyM0kmA +04/07/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: Nunes vs Pennington in Rio for the belt! + +@Amanda_Leoa vs @RockyPMMA #UFC224 https://t.co/s6VNGviK5B" +04/07/2018,Sports_celeb,@Amanda_Leoa,@SpeedwayStores my go to destination for @DrinkBODYARMOR #SuperiorHydration #UFC223 https://t.co/UB73qqydXn +06/19/2018,Sports_celeb,@MieshaTate,The best feeling ever https://t.co/VxYsVwZdJr +06/19/2018,Sports_celeb,@MieshaTate,@mrducati813 @AJukwildcats @ufc 😂 I don’t know why this was so funny to me but I laughed out loud for real +06/19/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: I want to wish my boss @campbellcombate a Very Happy & Healthy Birthday. He’s next to me in this Photo Alongside the re… +06/18/2018,Sports_celeb,@MieshaTate,Thank you! https://t.co/n4Ac5aF7Kk +06/18/2018,Sports_celeb,@MieshaTate,I should be there in some capacity I just haven’t figured out when and where! Will post when I get my schedule figu… https://t.co/BPbdIr8eQ8 +06/10/2018,Sports_celeb,@MieshaTate,"It was actually 71 hours total from start to finish, a really rough 3 days but she’s so worth it! She outlasted me… https://t.co/1OoMzudZV6" +06/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: ICYMI: @TheTruthJackson spoke with @MieshaTate and @realOCsports about his upcoming fight with CM Punk at #UFC225 last n… +06/01/2018,Sports_celeb,@MieshaTate,Happy Belated Bday! https://t.co/ANbTeyQhvu +05/31/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""Neither one of us belong here"" - @TheTruthJackson tells @realOCsports & @MieshaTate that while he is seizing an opportu…" +05/30/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Simple question: Does #PunkvsJackson belong on the main card of #UFC225? Call and let @MieshaTate & @realOCsports at 84… +05/30/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @realOCsports and @MieshaTate! + +Joined by @TheTruthJackson at 6:30p ET plus @Forre…" +05/30/2018,Sports_celeb,@MieshaTate,Thank you!! https://t.co/5X6uFuCbGQ +05/26/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: Love it Thank You ❤️ https://t.co/gAb00gRusB +05/26/2018,Sports_celeb,@MieshaTate,https://t.co/kVvCFDikJp +05/25/2018,Sports_celeb,@MieshaTate,RT @DandoisCindy: Well... let’s hope that by this way we can finally have our division and that one day I can acclompish my dream to fight… +05/25/2018,Sports_celeb,@MieshaTate,"RT @DandoisCindy: Dream big... a 145lbs @UFC_TUF , a division ready to grow and real featherweights to face @criscyborg in the future... I…" +05/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@Ealvarezfight to @MieshaTate and @realOCsports: For my own legacy, I want to defeat Khabib, then redeem my loss agains…" +05/25/2018,Sports_celeb,@MieshaTate,RT @MMAjunkie: Miesha Tate: Raquel Pennington would've felt 'lifetime of regret' for quitting at UFC 224 https://t.co/hKCtVYkrHy +05/14/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: ICYMI: @MieshaTate told @realOCsports and @Michael_Stets that she had no issue with Raquel Pennington's corner sending h… +05/14/2018,Sports_celeb,@MieshaTate,"Yea but it’s called fighting for a reason, am I right or am I right? https://t.co/3SDOhgU3C8" +05/14/2018,Sports_celeb,@MieshaTate,"RT @MMAjunkie: New edition of @MMAjunkieRadio with guests Miesha Tate (@MieshaTate), Dan Henderson (@danhendo) and Mauro Ranallo (@mauroran…" +05/14/2018,Sports_celeb,@MieshaTate,No that’s not what happened I said I was done with fighting all together AFTER the fight. I knew I was done competi… https://t.co/FHUGAxgP3o +05/13/2018,Sports_celeb,@MieshaTate,Happy Mother’s Day to my one and only Mama. Nobody will know the sacrifices she made to help me be the woman I am t… https://t.co/nsieZv1erg +05/13/2018,Sports_celeb,@MieshaTate,"Correction, I never said I quit I said I realized I didn’t want to fight anymore as in retire, I didn’t feel at hom… https://t.co/kIadIC5e0j" +05/13/2018,Sports_celeb,@MieshaTate,"RT @LaurenMurphyMMA: Yes @MieshaTate +Physical injuries heal. Quitting is a pain that lasts forever. We don’t get these moments back. I wou…" +05/13/2018,Sports_celeb,@MieshaTate,@WMMANews Thanks for the audio clip +05/13/2018,Sports_celeb,@MieshaTate,"Correction, I said I was done with fighting after the fight concluded not during the fight or between rounds. https://t.co/DiMLyW02ku" +05/13/2018,Sports_celeb,@MieshaTate,Is that what she said? I couldn’t hear the audio?? https://t.co/DWdHXQy2UJ +05/13/2018,Sports_celeb,@MieshaTate,What a great fight so far ladies!! @RockyPMMA vs @Amanda_Leoa #ufc224 @ufc +05/13/2018,Sports_celeb,@MieshaTate,Great start to #ufc224 oooowee!! @ufc #knockouts +05/13/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""7 pounds over as a professional in the UFC? That's like me showing up with no material for 45 minutes."" -- @madflavor…" +05/12/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Want #UFC224 coverage? We've got your preshow from 6-8p ET on @siriusxm RUSH 93 with @MieshaTate and @RyanMcKinnell plu… +05/12/2018,Sports_celeb,@MieshaTate,We Rollin!!!!! @MMAonSiriusXM https://t.co/E56vF4qWTL +05/09/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/XHYu0oAKf4 +05/07/2018,Sports_celeb,@MieshaTate,"RT @fightnet: Our Women's Week kicks off for ""UFC in 60!"" See the best of @MieshaTate on at 6 p.m. ET on @fightnet! https://t.co/6xoNGA3OUJ" +05/05/2018,Sports_celeb,@MieshaTate,Aw thank you it was an honor to speak in front of all of you! https://t.co/4PodTqYmqt +05/05/2018,Sports_celeb,@MieshaTate,RT @peta: @MieshaTate BREAKING: #MexicoCity officially banned dolphinariums today 💙🐬 RT if you want ALL cities to ban them! https://t.co/8I… +05/05/2018,Sports_celeb,@MieshaTate,Thank you!! 🤗 https://t.co/0dIcHUwwT2 +05/03/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about week 35 of her 3rd trimester! Find out what kind of people are getting on her nerves, why she's con…" +05/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""I'm turning my focus to Nate ... I think the Khabib fight is the right one to make but the Nate fight is out there to b…" +05/02/2018,Sports_celeb,@MieshaTate,This poor guy lol 😳😳😳 https://t.co/QkGU2IHbi7 +05/02/2018,Sports_celeb,@MieshaTate,Well tell us how you really feel @francis_ngannou!! 😂👌 https://t.co/Dgn1czzyGj +05/02/2018,Sports_celeb,@MieshaTate,This weather got me like.... #VegasWeather https://t.co/syfcLeKbZ1 +04/29/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@LeslieSmith_GF tells @MieshaTate & @RyanMcKinnell that the UFC gave her a discretionary bonus immediately after she ad… +04/25/2018,Sports_celeb,@MieshaTate,That was a great interview thank you @francis_ngannou!! https://t.co/5KVbwR9aAL +04/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@thefrankmir tells @RyanMcKinnell & @MieshaTate he is a fan of the tournament style in @BellatorMMA, how he fights at h…" +04/22/2018,Sports_celeb,@MieshaTate,"RT @MMAWeeklycom: #KevinLee Brutalizes Edson Barboza by TKO, Calls for #KhabibNurmagomedov Next https://t.co/Qrwhi4V3Y6 #UFCAtlanticCity" +04/22/2018,Sports_celeb,@MieshaTate,I signed these gloves for charity! There’s these plus lots of other great auction items for the Nevada #SPCA https://t.co/zbHQ2pghUD +04/19/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET on @siriusxm RUSH 93 with @RJcliffordMMA & @MieshaTate plus guest @RickySimonUFC at 7:3… +04/19/2018,Sports_celeb,@MieshaTate,I really have no idea is the right answer?? Anybody have ideas? https://t.co/OxA8BB0QUI +04/19/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about her 3rd trimester! Find out how she deals with the sweet cravings, what her birth plan is, and see…" +04/19/2018,Sports_celeb,@MieshaTate,Had a lot of fun! https://t.co/AWGcrle2Ba +04/15/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: I’m ok with my Draw. I fought hard won the first two but lost the third. My opponent fought tuff and well. Back in the… +04/14/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: Wrapped up and ready. Waiting on my turn. Tune in to @Univision & @univisiondeportes LET’S GET IT!! @combateamericas @C… +04/12/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about her 2nd trimester! What do you think she says her best pregnancy hack was? 😉 Also, find out what sh…" +04/12/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""I think this is the most humble comment I've ever heard come out of Ronda Rousey's mouth ... this is probably the best…" +04/12/2018,Sports_celeb,@MieshaTate,Aww! You need to get one or two more though! They are very social they need other chicks 🐥 https://t.co/QDJqtz4gjJ +04/12/2018,Sports_celeb,@MieshaTate,Inspired by the dark line on my tummy from pregnancy their names are Linea and Negra 😂🤗 https://t.co/Vk2D9tgx8V +04/11/2018,Sports_celeb,@MieshaTate,Happy #NationalPetDay!! 🐤 https://t.co/zsrzP02jp0 +04/09/2018,Sports_celeb,@MieshaTate,RT @notsleeeping: @MMAonSiriusXM @MieshaTate @RyanMcKinnell @SIRIUSXM Big week for Miesha! She manages @Serranosisters who fights next we… +04/07/2018,Sports_celeb,@MieshaTate,No but I will be tomorrow for the pre fight show https://t.co/ekNQwDQOlT +04/05/2018,Sports_celeb,@MieshaTate,Aww thank you Mike 🙏💜 https://t.co/CHGGR3g7ne +03/24/2018,Sports_celeb,@MieshaTate,RT @Dynamitedan808: Time to go to WAR again! Let’s do this June 9th Chicago 👊🏽 @ufc #ufc225 https://t.co/MZMT8TsS1t +03/24/2018,Sports_celeb,@MieshaTate,RT @WADBODCROSSFIT: Join us with @mieshatate at musclemaker_lasvegas today!!! We will be there from 12PM-4PM! https://t.co/zTW6Huvrvw +03/24/2018,Sports_celeb,@MieshaTate,😍 https://t.co/HZV0wF0NaB +03/22/2018,Sports_celeb,@MieshaTate,#ThursdayThoughts https://t.co/To3fo4UaKy +03/22/2018,Sports_celeb,@MieshaTate,RT @juicyj_erosa: An awesome day. The #ao8team teamed up to help feed the homeless. Thankful to have been apart of this. #AO8 https://t.co/… +03/22/2018,Sports_celeb,@MieshaTate,RT @bland24: Cooking with former Champ @MieshaTate and her awesome team today! They cooked some amazimg food and showed our homeless frien… +03/22/2018,Sports_celeb,@MieshaTate,Wow!! I’m honored! https://t.co/JesFpz9aU9 +03/19/2018,Sports_celeb,@MieshaTate,"RT @DocEdwards5: Awesome time at the pre screening of @tombraidermovie w @mieshatate and @francis_ngannou @francisngannou_mmapage +#tombraid…" +03/19/2018,Sports_celeb,@MieshaTate,RT @KevinHarvick: Disappointed in myself for a bone head move 2 years in a row @ACSupdates. Proud of my team for another fast car and we mo… +03/18/2018,Sports_celeb,@MieshaTate,RT @KHIManagement: Set your alarms!! @KevinHarvick will be on @SportsCenter at 9:30 a.m. ET tomorrow morning. Starting race day early!! +03/18/2018,Sports_celeb,@MieshaTate,Pretty sure it’s MieshaTateUFC https://t.co/GO7cfWpTe9 +03/17/2018,Sports_celeb,@MieshaTate,Happy St Patty’s Day everyone!! #happystpatricksday https://t.co/2N4VfNH2mk +03/17/2018,Sports_celeb,@MieshaTate,@TombRaiderMovie opens today! I watched last night with some friends and it was action packed #TombRaiderMovie https://t.co/viwI0McjrA +03/16/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@SugaRashadEvans says his career on the line at UFC 225. + +Here is @lionheartsmith's response, speaking to @realOCsports…" +03/16/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@lionheartsmith: I went up to Light Heavyweight for ""100% safety"". + +Anthony explains to @realOCsports & @MieshaTate why…" +03/16/2018,Sports_celeb,@MieshaTate,"Such kind words, really touched my 💜 thank you!! https://t.co/GMYLWJVWhy" +03/14/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: With Cynthia Calvillo receiving a 9 month suspension and a fine due to Marijuana use, do you think it's time to rewrite…" +03/14/2018,Sports_celeb,@MieshaTate,Thank you so much!! 💓 fans like you! https://t.co/RedzGnGuFi +03/14/2018,Sports_celeb,@MieshaTate,😂 https://t.co/3xONRobd0o +03/12/2018,Sports_celeb,@MieshaTate,I went to @DessertGallery!! Very good! https://t.co/jmADJ34j8m +03/11/2018,Sports_celeb,@MieshaTate,RT @DirtySouthTV: @andrewAXSTV @AXSTVFights @CheyWarPrincess @MieshaTate @SugarRaySefo Cheyanne fought a VERY game opponent that would have… +03/11/2018,Sports_celeb,@MieshaTate,When are people gonna learn not every photo was taken right when it’s posted... this is an old photo clearly https://t.co/4qYeVcwNCZ +03/11/2018,Sports_celeb,@MieshaTate,Aww that’s awesome https://t.co/U0uaLaoMNj +03/11/2018,Sports_celeb,@MieshaTate,I don’t think we disappointed! Thanks for having @CheyWarPrincess on the card! https://t.co/XN0RWuDSVX +03/10/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: YES! Congratulations to my Girl @CheyWarPrincess on her 3rd rd TKO Win Just now. Winning her MMA Pro Debut. That’s the… +03/10/2018,Sports_celeb,@MieshaTate,Aw thanks Mike! https://t.co/tMqAumP8wi +03/09/2018,Sports_celeb,@MieshaTate,So I’m in Houston cornering @CheyWarPrincess tonight and I’m wondering where the best cupcakery might be? Any suggestions?! +03/08/2018,Sports_celeb,@MieshaTate,RT @camposgrappling: #UNLV Wrestling is at Nationals now! 👊🏽👊🏽👊🏽 https://t.co/NGxUDFdMnp +03/08/2018,Sports_celeb,@MieshaTate,Good to know! Thanks https://t.co/ywmoYsdqgo +03/07/2018,Sports_celeb,@MieshaTate,"RT @marcsavard: @officialhammer Was working w/ @BryanCaraway again. He was ready. Pressured, had a good fight, thought he won Rd 1 and 3.…" +03/07/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET on @siriusxm RUSH 93 w/ @realOCsports & @MieshaTate! + +Guests: + +@MoTownPhenom 6:30p ET…" +03/07/2018,Sports_celeb,@MieshaTate,"So I’m thinking about starting a pregnancy blog, guys I’m sure you could care less lol but ladies what are your tho… https://t.co/MukfaPQdI8" +03/06/2018,Sports_celeb,@MieshaTate,"Two years ago, life is a crazy ride! https://t.co/sWJiv4wwzP" +03/05/2018,Sports_celeb,@MieshaTate,"I don’t think @BryanCaraway lost, he won rounds 1 & 3 IMO. The judging was consistently terrible for #UFC222. https://t.co/71DbNY08wg" +03/05/2018,Sports_celeb,@MieshaTate,Really appreciate that! https://t.co/E0flJ62a3c +03/05/2018,Sports_celeb,@MieshaTate,Aw thank you! https://t.co/ziIVuiSdWF +03/04/2018,Sports_celeb,@MieshaTate,"Hey #UFC222 fighters, don’t let it go to a decision! 🙄" +03/04/2018,Sports_celeb,@MieshaTate,All these Split decisions are BS shows the poor consistency in judging!!! +03/04/2018,Sports_celeb,@MieshaTate,FIRST bump in the road 😂😂😂 obviously you didn’t follow my fight career. Probably the most ignorant comment I’ve hea… https://t.co/fHkvwP8Mdl +03/03/2018,Sports_celeb,@MieshaTate,Curious where you guys stand? https://t.co/ejxCbv6XXC +03/03/2018,Sports_celeb,@MieshaTate,I’m not being negative @JonnyBones just honest. I hope you can respect that. I think you’re an amazing fighter and… https://t.co/1CJch50kI9 +03/03/2018,Sports_celeb,@MieshaTate,"@JonnyBones I’m really not trying to be negative Jon, just honest. I think you’re a great fighter and as a person I… https://t.co/17mIt6WU2a" +03/03/2018,Sports_celeb,@MieshaTate,Hello @AbsintheVegas!! https://t.co/yGpLWssTQ7 +03/02/2018,Sports_celeb,@MieshaTate,"@jonnybones u make things tougher 4 urself, I hope u can figure it out this time but I’m not holding my breath. Sup… https://t.co/6UkM65fO6U" +03/02/2018,Sports_celeb,@MieshaTate,Hey Las Vegas!! I’ll be on the @FOX5Vegas promoting the new UNLV wrestling team we have started again! Check it out… https://t.co/bLa6kAhkr8 +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAFighting: Miesha Tate: ‘The faith that I have in Jon Jones has been lost’ https://t.co/mM1D4JBAQO https://t.co/J5WWw5X0jJ +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Who fights again in the UFC first? Call and vote! 844-796-7874 @MieshaTate @realOCsports +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Do you believe Jon Jones as Andy Foster does? https://t.co/dhnhPyyp94 @MieshaTate @realOCsports +02/27/2018,Sports_celeb,@MieshaTate,.@HeatherHardyBox says Bellator is not to blame for the quality of her fight with @anajulaton at #Bellator194 and i… https://t.co/czSTJwDG4P +02/24/2018,Sports_celeb,@MieshaTate,Thank you!! https://t.co/D9G8e3MLDp +02/24/2018,Sports_celeb,@MieshaTate,Sharing my first #BabyBump pic 🤗🤰🏻 https://t.co/TfS1s19rxo +02/24/2018,Sports_celeb,@MieshaTate,Thank you I appreciate that https://t.co/OEaUlvELaP +02/23/2018,Sports_celeb,@MieshaTate,"RT @bt13strikeforce: @MieshaTate-""I am pushed by those who believe in me but motivated by those who don't"" #ThrowbackThursday #StrikeforceC…" +02/23/2018,Sports_celeb,@MieshaTate,@windmi11s Yea I’ve done my research and I don’t feel my homemade kombucha will be harmful. I’ve been drinking it w… https://t.co/LKF6Ikhucj +02/23/2018,Sports_celeb,@MieshaTate,That was so fun!! Thank you @GoldenKnights!! https://t.co/JsnevRyRaI +02/23/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Does Ronda Rousey deserve to be inducted into the International Sports Hall of Fame? @MieshaTate weighs in and says the… +02/21/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: If you could pick one of the below to have fought in the #UFC in their prime, who would it be? Call and vote! 844-796-…" +02/21/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Which current MMA stars would YOU like to see head to the UFC who haven't yet fought in the promotion? Dial away at 844… +02/17/2018,Sports_celeb,@MieshaTate,@karlmillward Lol I can’t promise but that is a pretty damn good choice for a ringtone 😂 +02/17/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: So what are the chances @UrijahFaber returns to the octagon for another fight? He gives @MieshaTate and @realOCsports t… +02/14/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: After seeing the punishment Yoel Romero (for missing weight) and Li Jianliang (for eye-gouging) received at #UFC221, wou…" +02/08/2018,Sports_celeb,@MieshaTate,😍🙌🏼 https://t.co/XIFUW0J8Rs +02/08/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@MeansTim tells @MieshaTate & @realOCsports that Dana White agreed that he beat Sergio Moraes & that fighting in Brazil… +02/08/2018,Sports_celeb,@MieshaTate,"I wanna see a more challenging fight for #Cyborg, I’m not convinced her opponent has what it takes to fill main eve… https://t.co/NwVOj9rlxm" +02/08/2018,Sports_celeb,@MieshaTate,Remember it’s $65 now https://t.co/3tnslVX8P4 +02/08/2018,Sports_celeb,@MieshaTate,That’s what I think https://t.co/Dnxi8sM5fi +02/07/2018,Sports_celeb,@MieshaTate,😮 https://t.co/zMlKKwxbNn +02/07/2018,Sports_celeb,@MieshaTate,"Call in, let us know we wanna hear your thoughts https://t.co/bgXWlYZEms" +02/07/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: +@Cowboycerrone 6:30p ET…" +02/07/2018,Sports_celeb,@MieshaTate,Personally I like #MJ1 https://t.co/wSisDoG1zr +02/04/2018,Sports_celeb,@MieshaTate,Aww thank you! I have all the faith in the world in you! https://t.co/Ikecba8bMO +02/03/2018,Sports_celeb,@MieshaTate,I wonder if I’ll look less angry in this one?! #EAUFC3 https://t.co/gi9VzBEkC5 +02/02/2018,Sports_celeb,@MieshaTate,"RT @RJcliffordMMA: For those who missed MMA Tonight yesterday: + +Hosted by @MieshaTate +Interview w/ @MikeMav22 +Surprise call from @BrianSt…" +02/02/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@BrianStann says despite the new fad of defending fighters who fail drug tests, the bottom line is fighters who use PED…" +02/02/2018,Sports_celeb,@MieshaTate,"It’s not sad it’s called news, which is what we cover on our radio show 🙄 https://t.co/nzUznYuh56" +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: MMA Tonight is LIVE with @MieshaTate & @RJcliffordMMA from 6-8p ET on @siriusxm RUSH 93. @MikeMav22 joins us at 7:30p E… +02/01/2018,Sports_celeb,@MieshaTate,That was epic! @BrianStann thanks for the call! https://t.co/kJ34OpSIpH +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Would @MieshaTate be open to a @WWE run? Would she work with Ronda Rousey in the world of pro-wrestling? Miesha tells… +02/01/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/Z4UAokf4HW +02/01/2018,Sports_celeb,@MieshaTate,😬😊 https://t.co/GyrGXtZAyE +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@MieshaTate tells @realOCsports that the biggest advantage DC will have over Stipe is cardio. #UFC226 https://t.co/8Yr… +02/01/2018,Sports_celeb,@MieshaTate,😳 https://t.co/9R6WEaoIlJ +01/31/2018,Sports_celeb,@MieshaTate,Looking forward to it! https://t.co/4YWBkP5WKy +01/31/2018,Sports_celeb,@MieshaTate,"Well I know what I think, you guys? https://t.co/a5cW735LU5" +01/30/2018,Sports_celeb,@MieshaTate,Thanks! I had fun! https://t.co/6YMUGq1hL6 +01/28/2018,Sports_celeb,@MieshaTate,"Guess who’s gonna be on @sharktankabc tonight!!! Yep, this girl! Checkout the episode I did with @showerpill 9pm ES… https://t.co/Eoh9VBvlL1" +01/27/2018,Sports_celeb,@MieshaTate,RT @ShowerPill: Spoiler alert: our girl @MieshaTate former UFC Champion will be making a cameo during ShowerPill’s epic Shark Tank appearan… +01/27/2018,Sports_celeb,@MieshaTate,RT @ranjori1: @ufc RT @ShowerPill: Spoiler alert: our girl @MieshaTate former UFC Champion will be making a cameo during ShowerPill’s epic… +01/26/2018,Sports_celeb,@MieshaTate,RT @ekohmusic: Huge THANK YOU to @MMAonSiriusXM & @MieshaTate for playing my song on the show! ❤️❤️❤️ https://t.co/bnhR19KfQB +01/25/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Did you like the music that we just came back from break with? Check out Ekoh's other music here and support! https://… +01/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@MieshaTate explains to @realOCsports why a Cyborg-Nunes matchup is all risk, low reward for Cris Cyborg, at least when…" +01/25/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Does a Stipe Miocic vs. Daniel Cormier superfight make sense? @MieshaTate tells @realOCsports that she thinks so! https… +01/24/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/sy1uDAhvmS +01/24/2018,Sports_celeb,@MieshaTate,I just Love all the @Cirque shows next time you gotta check out #Ka or #MJone https://t.co/tEnm3NEGvc +01/24/2018,Sports_celeb,@MieshaTate,Warrior https://t.co/vqQENcoEso +01/21/2018,Sports_celeb,@MieshaTate,Now THAT’s a day to celebrate! https://t.co/7fwAdcksUe +01/20/2018,Sports_celeb,@MieshaTate,RT @Gustavo11Lopez: Blessed to have these two in my life @ao8management. @mieshatate @robalob. we have a bright future ahead of us. #mma #w… +01/17/2018,Sports_celeb,@MieshaTate,"Tell us on the poll, how much 💰 will you fork out? https://t.co/THZO8iQLCj" +01/17/2018,Sports_celeb,@MieshaTate,Honest opinions? How much 💰are you willing to fork out? https://t.co/THZO8iQLCj +01/17/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET w/ @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: + +@Jon_Anik at 7:30p ET + +Y…" +01/17/2018,Sports_celeb,@MieshaTate,😍 https://t.co/hyxNjuXcVa +01/13/2018,Sports_celeb,@MieshaTate,"So meet my @MMAonSiriusXM producer Josh, he has decided to take my 30 day BYOC fitness challenge and here is his fi… https://t.co/QPsRZLMvBT" +01/11/2018,Sports_celeb,@MieshaTate,"I don’t think anybody is really ready for Cyborg but she needs contenders, it’s either @DandoisCindy or… https://t.co/udA9FFYhYg" +01/11/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@MieshaTate explains to @realOCsports why she's in favor of a Cyborg-Nunes fight: ""If Holly could hurt Cyborg, I think…" +01/11/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@teameganmma tells @MieshaTate & @realOCsports that he's definitely not finished with #MMA & wants to get back in being… +01/11/2018,Sports_celeb,@MieshaTate,RT @Country_girljj: @MieshaTate I also honestly believe Cindy would fare very well against cris. She's beaten some well named people at 145… +01/11/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""The more you sweat in training, the less you bleed in war."" -- @HurricaneShaneB #UFC220 https://t.co/Ho9MQ2Bm3c" +01/11/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Want to get in shape as our own @MieshaTate guides you along? Check out her fitness program here! @realOCsports will b… +01/10/2018,Sports_celeb,@MieshaTate,Thank you 😊 https://t.co/41SG0mQrYq +01/10/2018,Sports_celeb,@MieshaTate,To say a black belt doesn’t mean anything makes you sound ignorant. It’s not everything but it’s something. No one… https://t.co/JWwuosCxP4 +01/10/2018,Sports_celeb,@MieshaTate,It’s simple Correia had been winning and Holly had been losing https://t.co/6ctDwB78RG +01/06/2018,Sports_celeb,@MieshaTate,I think because a belt is good for promotion? I don’t really know but think about it they have never had another 14… https://t.co/yG3Xa4PG7d +01/06/2018,Sports_celeb,@MieshaTate,That’s because the ufc hasn’t officially opened the 145lb division yet. They tried with Holly vs Germaine but that… https://t.co/8hjpgDFLCB +01/06/2018,Sports_celeb,@MieshaTate,Shots fired https://t.co/CSKptaJT5c +01/06/2018,Sports_celeb,@MieshaTate,Yes!!!! Great work!! https://t.co/Knm9BEXzEo +01/06/2018,Sports_celeb,@MieshaTate,"RT @WMMARankings: Miesha Tate says Megan Anderson isn’t ready for Cris Cyborg: “She’s a bit green at this point, not experienced enough yet…" +01/05/2018,Sports_celeb,@MieshaTate,"RT @DanFromOR: #UFC222 4 w145lb Tournament + +19-1 Cyborg vs 15-4 Nunes +7-2 Anderson vs 10-3 Dandois + +#ChampVsChamp & #Rematch https://t.co/…" +01/04/2018,Sports_celeb,@MieshaTate,"RT @WMMARankings: Cindy Dandois: “I really appreciate RIZIN, I will fight anyone including Gabi Garcia” https://t.co/QsmzBCWVUa https://t.c…" +01/04/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@DandoisCindy tells @MieshaTate & @realOCsports that she deserves a fight with @criscyborg more than @MeganA_mma becaus… +01/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""A bear is dumb as hell!"" -- @MoTownPhenom to @MieshaTate & @realOCsports on why he's not impressed with Khabib wrestlin…" +01/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: +@MoTownPhenom 6:30p ET…" +01/03/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Who do YOU want to see Cris Cyborg fight next after #UFC219? Call and vote! 844-796-7874 @MieshaTate @realOCsports +01/01/2018,Sports_celeb,@MieshaTate,Happy New Year! https://t.co/PPabxcyIPI +01/01/2018,Sports_celeb,@MieshaTate,@HollyHolm doesn’t duck fights she’s literally fought all the best never backed down from a fight. If she didn’t fi… https://t.co/mXiYkoLqRS +01/01/2018,Sports_celeb,@MieshaTate,Yes and it was a CLOSE loss to a top 10 UFC bantam weight! https://t.co/lT99D7Rsw9 +01/01/2018,Sports_celeb,@MieshaTate,"Well I think I would have like to see her throw more push kicks to the body and to the legs, up her strike count an… https://t.co/9cEa1YqjYo" +12/31/2017,Sports_celeb,@MieshaTate,Same https://t.co/3taPtbj813 +12/31/2017,Sports_celeb,@MieshaTate,I love this #cupofnoodle https://t.co/a9RgkjTQIV +12/31/2017,Sports_celeb,@MieshaTate,RT @DandoisCindy: Congrats To @criscyborg! How About the number one 155er vs the number one 145er next???.... or Cris could fight @MeganA_m… +12/31/2017,Sports_celeb,@MieshaTate,I don’t care the results even Holly is my Hero +12/31/2017,Sports_celeb,@MieshaTate,@HollyHolm the first woman to win a round against #cyborg?? #ufc219 @ufc +12/31/2017,Sports_celeb,@MieshaTate,I’m really excited for #CyborgvsHolm I like them both but pulling for the underdog here. #AndNew +12/31/2017,Sports_celeb,@MieshaTate,Agreed! Thank you! https://t.co/P58mmtho5W +12/30/2017,Sports_celeb,@MieshaTate,"RT @WMMARankings: Miesha Tate on Cindy Dandois: “She’s constantly underestimated and criticized, but she’s the most game fighter I ever met…" +12/29/2017,Sports_celeb,@MieshaTate,RT @WMMARankings: Miesha Tate set to corner Cindy Dandois for her lightweight debut at Friday’s RIZIN event https://t.co/FWLwSPTdLg https:/… +12/27/2017,Sports_celeb,@MieshaTate,RT @InvictaFights: We're kicking off the new year with an incredible card! Don't miss #InvictaFC27 this January 13th LIVE on @UFCFightPass!… +12/25/2017,Sports_celeb,@MieshaTate,😂😂😂 https://t.co/8sgim0rLgW +12/22/2017,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@AriannyCeleste to @MieshaTate & @realOCsports on the biggest misconception some people might have about Dana White: ""I…" +06/30/2018,Sports_celeb,@JoelEmbiid,The Lakers are FOREVER gonna be Kobe’s and Magic’s team.... Process that +06/30/2018,Sports_celeb,@JoelEmbiid,Lmao ok https://t.co/AnzzVKiDeS +06/30/2018,Sports_celeb,@JoelEmbiid,Real Madrid needs to go get my Cameroonian buddy Mbappe... He’s a beast #HalaMadrid +06/30/2018,Sports_celeb,@JoelEmbiid,ALLEZ LES BLEUS +06/27/2018,Sports_celeb,@JoelEmbiid,THIS IS NUTS!!!!!! WOW GERMANY +06/26/2018,Sports_celeb,@JoelEmbiid,Excited to finally reveal that I’m on the cover of @easportsnba #NbaLive19 https://t.co/q1yWwBH1gc +06/23/2018,Sports_celeb,@JoelEmbiid,OMG TONY KROOS!!!! WHAT A GOAL #HalaMadrid +06/23/2018,Sports_celeb,@JoelEmbiid,This is such a great game but Germany being almost out is nuts +06/22/2018,Sports_celeb,@JoelEmbiid,#StriveforGreatness https://t.co/2EYenrqeDy +06/22/2018,Sports_celeb,@JoelEmbiid,Don’t compare Ayton to me either... I play DEFENSE +06/22/2018,Sports_celeb,@JoelEmbiid,Keep my name out of this lol +06/21/2018,Sports_celeb,@JoelEmbiid,Cash considerations +06/21/2018,Sports_celeb,@JoelEmbiid,Au moins la France a gagné aujourd'hui #AllezLesBleus +06/21/2018,Sports_celeb,@JoelEmbiid,Diego Maradona and Leo Messi don’t deserve this #HalaMadrid +06/21/2018,Sports_celeb,@JoelEmbiid,I’m deadass about to cry 😭😭😭 +06/21/2018,Sports_celeb,@JoelEmbiid,I feel bad for Messi 😢😢 +06/17/2018,Sports_celeb,@JoelEmbiid,Wow Germany losing is nuts +06/09/2018,Sports_celeb,@JoelEmbiid,Trust The Process!!!! Find a new slant @KingJames +06/07/2018,Sports_celeb,@JoelEmbiid,KD IS NOT NICE +06/07/2018,Sports_celeb,@JoelEmbiid,SIPS......... +06/01/2018,Sports_celeb,@JoelEmbiid,He’s really tryna take that Shaqtin A fool MVP from me lmao +06/01/2018,Sports_celeb,@JoelEmbiid,Jr is on that henny lol https://t.co/0GBhgXjVyt +05/30/2018,Sports_celeb,@JoelEmbiid,Fun night on Twitter lmao.. All jokes asides I don’t believe the story. That would just be insane +05/30/2018,Sports_celeb,@JoelEmbiid,Lmao CJ.. you just gotta trust it https://t.co/Igl0MZouzQ +05/30/2018,Sports_celeb,@JoelEmbiid,I’m upset @drake +05/30/2018,Sports_celeb,@JoelEmbiid,Joel told me that @samhinkie IS BETTER AND SMARTER THAN YOU @AlVic40117560 #BurnerAccount +05/30/2018,Sports_celeb,@JoelEmbiid,BRUH https://t.co/hv59PDxlgY +05/28/2018,Sports_celeb,@JoelEmbiid,Now we’re on the same couch lol +05/28/2018,Sports_celeb,@JoelEmbiid,Amazing what Bron has been able to do... That’s tough +05/28/2018,Sports_celeb,@JoelEmbiid,"RT @DrewHanlen: If @JoelEmbiid got all the calls that LeBron gets, he’d average 40 PPG!" +05/28/2018,Sports_celeb,@JoelEmbiid,JAYSON TATUM 👀👀👀 +05/26/2018,Sports_celeb,@JoelEmbiid,Real Madrid better not sell Bale this summer.. he’s a beast and we all knew it #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Man bun had one of the sickest goals ever #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Omg Holy shit!!! That was one of the best goals I’ve ever seen OMG #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,What a goal haha @realmadrid #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Pusha T couldn’t #DrakeIsTheGOAT https://t.co/UWtSkGsi9j +05/26/2018,Sports_celeb,@JoelEmbiid,I do HATE my couch right now +05/26/2018,Sports_celeb,@JoelEmbiid,I was gonna tweet about ponytail but y’all are gonna ask me about my lovely couch lmao😂😂😂 +05/22/2018,Sports_celeb,@JoelEmbiid,Man bun is in NBA just to get dunked on +05/10/2018,Sports_celeb,@JoelEmbiid,Not the way I wanted it to end but Hell of a series... Much respect to Boston and those fans.. y’all made it fun… https://t.co/iBhZvhy49I +04/14/2018,Sports_celeb,@JoelEmbiid,It’s about that time!!! #Playoffs #PhantomofTheProcess https://t.co/zq8dPrgk0F +04/12/2018,Sports_celeb,@JoelEmbiid,“No one cared who I was until I put on the mask”.... The Phantom of The Process https://t.co/JOkQxCAxYA +04/11/2018,Sports_celeb,@JoelEmbiid,On the way to winning another Champions league... Keep it going @realmadrid #HalaMadrid +04/11/2018,Sports_celeb,@JoelEmbiid,LETS F****** GO #HalaMadrid +04/11/2018,Sports_celeb,@JoelEmbiid,These champions league games have been insane... come on Madrid #HalaMadrid +04/07/2018,Sports_celeb,@JoelEmbiid,What a game!!!! #TheProcess +04/05/2018,Sports_celeb,@JoelEmbiid,Yes sir... Always gotta #TrustTheProcess @Phillies https://t.co/cAvW5GqSPt +04/01/2018,Sports_celeb,@JoelEmbiid,“Process” stop... I thought you were an ALL STAR https://t.co/MyZk9Lv5wg +04/01/2018,Sports_celeb,@JoelEmbiid,Babe are you single or nah? @rihanna +04/01/2018,Sports_celeb,@JoelEmbiid,Man am I high or these dudes are so hot from 3? Come on +04/01/2018,Sports_celeb,@JoelEmbiid,Sitting here high and watching the game like https://t.co/aTeHLdDaq9 +04/01/2018,Sports_celeb,@JoelEmbiid,THIS IS BRUTAL.... I’m literally trying to take my mind off this pain but Kansas is not helping #RockChalk +03/30/2018,Sports_celeb,@JoelEmbiid,I guess I gotta trust “The Process” that I’ve been preaching... Unfortunate freak accident but I’ll be more than fi… https://t.co/pAofaydSGs +03/28/2018,Sports_celeb,@JoelEmbiid,Baby bounce 💪🏽💪🏽 #NbaVote2017 #TheProcess https://t.co/LPpfzYrhZX +03/27/2018,Sports_celeb,@JoelEmbiid,So happy and proud of my brother... Great having you back!!! The future is bright #TheProcess https://t.co/O9ch4cvy3e +03/26/2018,Sports_celeb,@JoelEmbiid,@MarkelleF https://t.co/0XBZKhhj95 +03/26/2018,Sports_celeb,@JoelEmbiid,On a mission😤😤😤 #TheProcess https://t.co/vutmXUxd3q +03/25/2018,Sports_celeb,@JoelEmbiid,GAME OVER>>> ROCKCHALK JAYHAWK!!! What a game huh @JJRedick +03/25/2018,Sports_celeb,@JoelEmbiid,KANSAS BALL +03/25/2018,Sports_celeb,@JoelEmbiid,Come on KU #DukevsKansas +03/25/2018,Sports_celeb,@JoelEmbiid,This game was the talk of both towns tonight.. NOTHING TO SEE HERE. GOODNIGHT #TheProcess https://t.co/YqFPnaV0H6 +03/23/2018,Sports_celeb,@JoelEmbiid,🧐🧐EMBIID CURRY???? Btw 2 wins away for you #TheProcess https://t.co/euPtfRTmHn +03/23/2018,Sports_celeb,@JoelEmbiid,MOOD #TheProcess https://t.co/PcIHXYLulC +03/22/2018,Sports_celeb,@JoelEmbiid,COLIN COWARD.... Coach deserves a lot of credit #40wins #TheProcess https://t.co/HDFUdh3mKE +03/20/2018,Sports_celeb,@JoelEmbiid,Processing these TOs #TheProcess https://t.co/c7oMHIVJtT +03/19/2018,Sports_celeb,@JoelEmbiid,Helping my man @KevinHart4Real find a CourtSidekick so he can have someone other than me to talk to during the game… https://t.co/OzpcLdrEu7 +03/19/2018,Sports_celeb,@JoelEmbiid,This Nevada Cincinnati game is insane #MarchMadness +03/17/2018,Sports_celeb,@JoelEmbiid,Thanks for all the birthday wishes.. I love y’all... Great win tonight #TheProcess https://t.co/9buVyqz0Dk +03/11/2018,Sports_celeb,@JoelEmbiid,Aye that's my guy so looks like I might have to switch sports @CameronNewton you need a wide receiver? 👀👀👀 https://t.co/NWioDQooZh +03/11/2018,Sports_celeb,@JoelEmbiid,🔥🔥🔥🔥 https://t.co/wRWBDtcCM5 +03/07/2018,Sports_celeb,@JoelEmbiid,No bounce #TheProcess https://t.co/PzqzNaOZVp +03/06/2018,Sports_celeb,@JoelEmbiid,HALA MADRID #IciCEstPasPARIS +03/06/2018,Sports_celeb,@JoelEmbiid,Just build a new one https://t.co/SfzDWjNDn8 +03/05/2018,Sports_celeb,@JoelEmbiid,Man Sixers fans are the best.. Really appreciate y’all.. The love and the passion that y’all have is kinda insane b… https://t.co/dtb8VEng7t +03/03/2018,Sports_celeb,@JoelEmbiid,Great comeback win tonight #TheProcess https://t.co/Cb9gHTsbP8 +03/02/2018,Sports_celeb,@JoelEmbiid,It’s not what y’all think lol +03/02/2018,Sports_celeb,@JoelEmbiid,Trust The Process??? Always a great time playing against one of the best to ever play the game #summer2018goals https://t.co/4bY941yyRO +02/25/2018,Sports_celeb,@JoelEmbiid,🔥🔥🔥🔥🔥🔥🔥 #TheProcess https://t.co/An8dkMmJ5X +02/23/2018,Sports_celeb,@JoelEmbiid,No weakness!!!! What an ending out in Chi-Town #TheProcess https://t.co/PXeJ9PWBDy +02/22/2018,Sports_celeb,@JoelEmbiid,Let's get it!!! @HyperX ✖ #TheProcess #ad 🎮 https://t.co/V9Npptv1lY https://t.co/26J8BnyKB1 +02/19/2018,Sports_celeb,@JoelEmbiid,First All Star game and it was an amazing experience!! Learned a lot and decided not to troll tonight #TheProcess https://t.co/JT03oqGjNc +02/18/2018,Sports_celeb,@JoelEmbiid,How can you make a pass if all three balls are gone? https://t.co/o7Eunz0lBW +02/18/2018,Sports_celeb,@JoelEmbiid,"It’s not cheating, it’s called being smart lol https://t.co/FIVWSncFWV" +02/14/2018,Sports_celeb,@JoelEmbiid,"Désolé les français, ici c’est pas Paris #HalaMadrid" +02/14/2018,Sports_celeb,@JoelEmbiid,Haha Our season is not over #HalaMadrid +02/14/2018,Sports_celeb,@JoelEmbiid,Let’s go!!!!! CR7⚽️⚽️ HalaMadrid #GoalGoalGoal +02/14/2018,Sports_celeb,@JoelEmbiid,Hala Madrid +02/14/2018,Sports_celeb,@JoelEmbiid,Time to get back on track @realmadrid #HalaMadrid +02/13/2018,Sports_celeb,@JoelEmbiid,The GOAT @TJMcConnell #TheProcess https://t.co/usJMRri0Os +02/11/2018,Sports_celeb,@JoelEmbiid,Windmill shawtyyyy #TheProcess https://t.co/VMRr0r2fa2 +02/08/2018,Sports_celeb,@JoelEmbiid,Wow this is crazy lol.... The NBA is amazing +02/05/2018,Sports_celeb,@JoelEmbiid,Congrats to the Eagles on the Super Bowl #FlyEaglesFly +02/05/2018,Sports_celeb,@JoelEmbiid,OMG!!!!!! HOLY SHIT +02/05/2018,Sports_celeb,@JoelEmbiid,Wow big play!!!! +02/03/2018,Sports_celeb,@JoelEmbiid,Arsenal is cooking #Gunners +02/02/2018,Sports_celeb,@JoelEmbiid,What a game!!!! +01/29/2018,Sports_celeb,@JoelEmbiid,Tough loss #TheProcess https://t.co/OFBvSyGJX1 +01/27/2018,Sports_celeb,@JoelEmbiid,Another one #0Turnovers #TheProcess https://t.co/fYyv7K6z9s +01/26/2018,Sports_celeb,@JoelEmbiid,Excited to join the #DEWxNBA team with @kylekuzma and @Dennis1SmithJr for #MtnDewKickstart Rising Stars! Let’s get it! #TheProcess +01/22/2018,Sports_celeb,@JoelEmbiid,One more half to go #FlyEaglesFly +01/21/2018,Sports_celeb,@JoelEmbiid,Getting it done #TheResults https://t.co/QSpOXPOpm5 +01/19/2018,Sports_celeb,@JoelEmbiid,Fantastic day!!!! We got a great win and I became an ALL STAR.... I wanna thank all of you guys out there and the o… https://t.co/qQhJldg0xm +01/16/2018,Sports_celeb,@JoelEmbiid,The GOAT in front of Joel hyping up the crowd #BurnerAccount #TheProcess https://t.co/DWPB6KI4CJ +01/16/2018,Sports_celeb,@JoelEmbiid,RT @thibautcourtois: @JoelEmbiid #NBAVOTE +01/15/2018,Sports_celeb,@JoelEmbiid,"Last day, RT THIS FOR ONE LAST TIME. Appreciate the support. TRUST IT!!!! + +Joel Embiid #NBAVote" +01/15/2018,Sports_celeb,@JoelEmbiid,My guys @thibautcourtois @hazardeden10 #TheProcess #TheBlues https://t.co/LGJIhnSjIf +01/15/2018,Sports_celeb,@JoelEmbiid,RT @JusAnderson1: 🚨 #NBAVote @JoelEmbiid Retweet the Hell outta this... Thanks! 🚨 +01/15/2018,Sports_celeb,@JoelEmbiid,RT @paulpogba: One more day to go! RT to cast your #NBAVOTE for @JoelEmbiid +01/14/2018,Sports_celeb,@JoelEmbiid,RT @JuliusErving: Retweet to help send @joelembiid to the all-star game! #NBAVote +01/14/2018,Sports_celeb,@JoelEmbiid,FLY EAGLES FLY #PhillyVsEverybody https://t.co/FYlVGT8xEz +01/14/2018,Sports_celeb,@JoelEmbiid,#FlyEaglesFly On to the next one +01/11/2018,Sports_celeb,@JoelEmbiid,"RT @DidTheSixersWin: Star Wars ✖️ The Process + +#NBAVote @JoelEmbiid https://t.co/qOuA5oxH5j" +01/08/2018,Sports_celeb,@JoelEmbiid,RT @JoshShapiroPA: I’m hoping that day comes at the #NBAAllStar2018 game. @JoelEmbiid #NBAVote #sixers https://t.co/H3tiMj9l8n +01/06/2018,Sports_celeb,@JoelEmbiid,Glad we didn’t blow another lead.. Joel Embiid #NBAVote https://t.co/Iuwfz4AKz6 +01/05/2018,Sports_celeb,@JoelEmbiid,"RT @sixers: It's up to you... send @JoelEmbiid & @BenSimmons25 to LA for the @NBAAllStar Game! + +2-FOR-1 #NBAVOTE » https://t.co/1Y7M23uEqQ…" +01/05/2018,Sports_celeb,@JoelEmbiid,Joel Embiid #NBAVote https://t.co/GCgVwnQRDR +01/04/2018,Sports_celeb,@JoelEmbiid,Starting 2018 the right way #TheProcess https://t.co/Z2rfmFE4jA +12/29/2017,Sports_celeb,@JoelEmbiid,"RT @AndreDrummond: Everyone retweet this + + #NBAVote Andre Drummond" +12/29/2017,Sports_celeb,@JoelEmbiid,"RT @sixers: 🚨 1 RETWEET = 1 VOTE 🚨 + +#NBAVOTE @JoelEmbiid https://t.co/qQ7EeNXTA8" +12/29/2017,Sports_celeb,@JoelEmbiid,RT @MarkelleF: #NBAVote @JoelEmbiid @BenSimmons25 +12/28/2017,Sports_celeb,@JoelEmbiid,#NBAVote @BenSimmons25 +12/28/2017,Sports_celeb,@JoelEmbiid,Catching up with my brother @antogriezmann 🤙🏽🤙🏽🤙🏽 #Grizi https://t.co/snoBM7Mpnm +12/25/2017,Sports_celeb,@JoelEmbiid,Great first Christmas game and we got the win.. Merry Christmas #TheProcess https://t.co/PEL8MhODEe +12/18/2017,Sports_celeb,@JoelEmbiid,Steelers definitely got screwed.. Those rules don’t make sense +12/18/2017,Sports_celeb,@JoelEmbiid,Wowww What a game!!!! #NEvsPIT +12/16/2017,Sports_celeb,@JoelEmbiid,Tough loss but what an atmosphere.. I loved it #TheProcess https://t.co/iqGZECGcVw +12/14/2017,Sports_celeb,@JoelEmbiid,Euro stepping our way through Minnesota and we ended up raising the cat last night #TheProcess https://t.co/3E90Ux47GG +12/11/2017,Sports_celeb,@JoelEmbiid,Prayers up to the brother @cj_wentz #GOD #AO1 +12/08/2017,Sports_celeb,@JoelEmbiid,Tough loss but met LaVar and he’s definitely fun and full of energy #TheProcess https://t.co/UiYHP8XLNA +12/07/2017,Sports_celeb,@JoelEmbiid,I thought I was gonna be around a bunch @sportsillustrated models but this is not a bad group to be with ha… https://t.co/jffLECbmvn +12/03/2017,Sports_celeb,@JoelEmbiid,Exciting and fun game tonight... Great battle against the big fella #TheProcess https://t.co/mffqKID9Mh +12/02/2017,Sports_celeb,@JoelEmbiid,JUICY LIPS #TheProcess https://t.co/ROtEZxgtS1 +11/30/2017,Sports_celeb,@JoelEmbiid,"My City, my rules. @champssports @torylanez @adidasoriginals #WeKnowGame https://t.co/rJNCifORym" +11/30/2017,Sports_celeb,@JoelEmbiid,We blew the lead but still got it done #TheProcess https://t.co/cJYsTdpuWH +11/29/2017,Sports_celeb,@JoelEmbiid,Moments like these are why I love playing the game... Shane’s reaction and face is priceless ❤️❤️❤️ #ThisWhyWePlay https://t.co/E5DbCAWovV +11/26/2017,Sports_celeb,@JoelEmbiid,Great team effort tonight.... We’re rolling #TheProcess https://t.co/DMVxp3peMI +11/23/2017,Sports_celeb,@JoelEmbiid,The love in this city is different.... Special connection we have... I really appreciate it #TheProcess https://t.co/fBEzzwu1GO +11/22/2017,Sports_celeb,@JoelEmbiid,@torylanez and I are up to something with @champssports @adidasoriginals https://t.co/BbcinwB46a +11/22/2017,Sports_celeb,@JoelEmbiid,"I see you #Phila fans, trusting #TheProcess. Top 10 on the @DICKS #JerseyReport  https://t.co/Vr3NnPpyjv. Blessed f… https://t.co/YLVMgIadnT" +11/21/2017,Sports_celeb,@JoelEmbiid,On to the next one!! #TheProcess https://t.co/Qset7vnvsv +11/19/2017,Sports_celeb,@JoelEmbiid,Dead Ass why is everyone making fun of my tweet? I was reflecting on what happened last night #TrustIt +11/19/2017,Sports_celeb,@JoelEmbiid,Gotta play for 48 mins... The warriors are amazing though #TheProcess +11/19/2017,Sports_celeb,@JoelEmbiid,Now we know what it feels like to blow a big lead.. Gotta stay focused to get the job done. Great learning lesson a… https://t.co/V9cC28xUwv +11/18/2017,Sports_celeb,@JoelEmbiid,"I see you #Phila fans, trusting #TheProcess. Top 10 on the @DICKS #JerseyReport  https://t.co/Vr3NnPpyjv. Blessed f… https://t.co/v99JRyzSFf" +11/17/2017,Sports_celeb,@JoelEmbiid,We had a great couple days in LA...... 👑👑 of LA #Jokes #NotThatSerious https://t.co/H1ODeIs21t +11/16/2017,Sports_celeb,@JoelEmbiid,I like Lonzo’s game... no shots towards him #TrustIt +11/16/2017,Sports_celeb,@JoelEmbiid,WHAT A NIGHT #TheProcess https://t.co/92q82Zzvzb +11/15/2017,Sports_celeb,@JoelEmbiid,Who’s mans is this? https://t.co/egq6Q2iaWi +11/11/2017,Sports_celeb,@JoelEmbiid,T #TTP https://t.co/C94SBVDPKv +11/11/2017,Sports_celeb,@JoelEmbiid,U https://t.co/3o0t5DJYye +11/03/2017,Sports_celeb,@JoelEmbiid,RT @Original_Turner: Time Flies @JoelEmbiid https://t.co/sjTsHykjwd +11/03/2017,Sports_celeb,@JoelEmbiid,“You know what time it is”..... That step back of course was coming +11/02/2017,Sports_celeb,@JoelEmbiid,Trust The Process #HeDiedForOurSins https://t.co/WZF9dXpdZ6 +11/02/2017,Sports_celeb,@JoelEmbiid,Rolling #TheProcess https://t.co/9jtM1NoN5s +10/30/2017,Sports_celeb,@JoelEmbiid,I think we as “The Dodgers” got game 6.. it’s definitely gonna be fun #WorldSeries +10/30/2017,Sports_celeb,@JoelEmbiid,I guess that was an amazing game.. +10/30/2017,Sports_celeb,@JoelEmbiid,Hell yea... what a game!!!!! #WorldSeries https://t.co/OLExipUfXW +10/30/2017,Sports_celeb,@JoelEmbiid,Let’s go ASTROS #WorldSeries #TheProcess https://t.co/mq0IoTdNPH +10/29/2017,Sports_celeb,@JoelEmbiid,In the house with Commissioner Manfred and company #WorldSeries #TheProcess https://t.co/bOExbUOwiA +10/27/2017,Sports_celeb,@JoelEmbiid,Ranking keeps rising on @DICKS #JerseyReport. Our fans are the best! Much love! https://t.co/I84L7bnzTo #TheProcess… https://t.co/VM8kZ2IA6J +10/26/2017,Sports_celeb,@JoelEmbiid,I’m nice 🔥🔥🔥 +10/26/2017,Sports_celeb,@JoelEmbiid,Markelle is 💩 at 2k +10/26/2017,Sports_celeb,@JoelEmbiid,💩 +10/26/2017,Sports_celeb,@JoelEmbiid,🔥 +10/24/2017,Sports_celeb,@JoelEmbiid,Great win tonight.. gotta keep on getting better #TheProcess https://t.co/CNPMCiHjTV +10/23/2017,Sports_celeb,@JoelEmbiid,"Met some @sixers fans with @DraftKings. When I needed some help, they all had my back. #BestFans +https://t.co/zMlGTrEHj6" +10/19/2017,Sports_celeb,@JoelEmbiid,And That was 32 career games.... Felt great out there #TheProcess https://t.co/RodTdUCHhq +10/14/2017,Sports_celeb,@JoelEmbiid,RT @andre: Da kid @JoelEmbiid is a God!!! +10/14/2017,Sports_celeb,@JoelEmbiid,Great way to end preseason with a win.It’s about to get real now.Thanks for all the love in Kansas. My location is… https://t.co/AG2in11yN1 +10/14/2017,Sports_celeb,@JoelEmbiid,RT @JoelEmbiid: Hassan Whiteside #NBAVote https://t.co/4dBXNZ2hUU +10/14/2017,Sports_celeb,@JoelEmbiid,"My bad y’all , I thought I was using my burner account #TheProcess" +10/14/2017,Sports_celeb,@JoelEmbiid,And keep caring about stats and not your team success..... your +/- was ass @youngwhiteside #Softy +10/14/2017,Sports_celeb,@JoelEmbiid,"Dude they had to take your ass out or you would’ve fouled out in 5 min... And we’re talking about Preseason, not re… https://t.co/GbAhzjHBYJ" +10/13/2017,Sports_celeb,@JoelEmbiid,There’s no place like home... So happy to be back where it all started. Hope to see everyone tomorrow night… https://t.co/hfrin8WQ1I +10/12/2017,Sports_celeb,@JoelEmbiid,Felt great to get back out there and get a win... The future is bright #TheProcess https://t.co/tuvREulpyR +10/10/2017,Sports_celeb,@JoelEmbiid,The Process to be continued...... I LOVE YOU PHILADELPHIA #5MoreYears https://t.co/Xop96EhRPA +10/08/2017,Sports_celeb,@JoelEmbiid,Omg Aaron Rodgers is the freaking GOAT... He did it again 🐐🐐🐐#GoPackGo +10/08/2017,Sports_celeb,@JoelEmbiid,Go Pack Go #LetsGoPackers +10/06/2017,Sports_celeb,@JoelEmbiid,I’m on a basketball court doing things lmao.... I’m back #TheProcess https://t.co/qN0WEzqFyQ +09/28/2017,Sports_celeb,@JoelEmbiid,Trust The Process https://t.co/7qHHiDomjz +09/27/2017,Sports_celeb,@JoelEmbiid,Year 2 or year 4 .... Another chance at Rookie Of The Year. Should be fun #TheProcess https://t.co/SJaJTUrYaC +09/26/2017,Sports_celeb,@JoelEmbiid,What A Time!!!! #TheProcess https://t.co/TTrOhT4tIY +09/25/2017,Sports_celeb,@JoelEmbiid,What a great game it was today for the eagles!!!!The city is on the rise. THANKS FOR ALL THE LOVE TOO #TheProcess… https://t.co/BRzo5GLkHj +09/24/2017,Sports_celeb,@JoelEmbiid,That was wild #FlyEaglesFly +09/24/2017,Sports_celeb,@JoelEmbiid,Eagles are rolling #FlyEaglesFly +09/18/2017,Sports_celeb,@JoelEmbiid,JOEL EMBIID IS BETTER THAN MJ EVER WAS @QuireSultan #FACTS #BurnerTwitter +09/17/2017,Sports_celeb,@JoelEmbiid,Damn YoungHoe definitely ain't Koo no more😩 +09/16/2017,Sports_celeb,@JoelEmbiid,I'm excited to play in the new Statement jersey this season. #TheProcess https://t.co/0WxL8FosEd +09/14/2017,Sports_celeb,@JoelEmbiid,TRUST IT https://t.co/Yiqz3oYRqF +09/14/2017,Sports_celeb,@JoelEmbiid,It's almost that time of the year... can't wait to shut these bums up and the Process never ends. JUST TRUST IT… https://t.co/Ccdm3b04kF +09/07/2017,Sports_celeb,@JoelEmbiid,#RunTheNeighborhood & activate my scene so I can talk to myself @NBA2K https://t.co/GVsUhhjVou https://t.co/E7JToUIoHT +08/27/2017,Sports_celeb,@JoelEmbiid,FLOYD MONEY MAYWEATHER!!!!!! That was super fun +07/18/2017,Sports_celeb,@JoelEmbiid,My Durability rating must've not allowed my 2k rating to be at least 95🤔🤔!!!! Gotta work on that #TheProcess +07/15/2017,Sports_celeb,@JoelEmbiid,My brother @paulpogba #TheProcess #LaLegende https://t.co/l2bYBC0CUj +07/11/2017,Sports_celeb,@JoelEmbiid,These kids were all trusting the Process at the baseball home run derby #TheProcessLovesTheKids https://t.co/EVz0xD7y7o +07/11/2017,Sports_celeb,@JoelEmbiid,Aaron Judge is a beast #HomeRunDerby2017 +07/11/2017,Sports_celeb,@JoelEmbiid,And I keep on collecting Balls... #HomeRunDerby https://t.co/7v0DG0drJO +07/11/2017,Sports_celeb,@JoelEmbiid,And I got a ball #HomeRunDerby2017 https://t.co/0kRHS7zLVp +07/11/2017,Sports_celeb,@JoelEmbiid,I killed a lion with my bare hands so I'm great lmao #TheProcess +07/10/2017,Sports_celeb,@JoelEmbiid,"As I said that, Muller won... What a great match though!!!! #Wimbledon" +07/01/2018,Sports_celeb,@ApoloOhno,Heading home for @specialolympics in Seattle!! #Inclusion #Specialolympics #Seattle #washington #home #sport #play… https://t.co/xqwz1Inida +06/30/2018,Sports_celeb,@ApoloOhno,"Big dreams, big plans, big vision! Reach higher :-) #Office #build #Asia #expansion #HQ #Focus #win https://t.co/QI2fLxob6e" +06/29/2018,Sports_celeb,@ApoloOhno,Back on the domestic grid #LA @ Los Angeles International Airport https://t.co/zn0c5HWmw1 +06/28/2018,Sports_celeb,@ApoloOhno,Digital nomad @ Ninoy Aquino International Airport https://t.co/DbIbopwPgc +06/27/2018,Sports_celeb,@ApoloOhno,Manila house #Manila #Fort #Philippines #Art @ Manila House Private Members Club https://t.co/Llb0JR6Svx +06/26/2018,Sports_celeb,@ApoloOhno,"Eyes ahead. Chin up. Focused and enjoying the journey :-) pic: Ironman Training run - 100+F, 100% humidity, no musi… https://t.co/7d4em8Trix" +06/25/2018,Sports_celeb,@ApoloOhno,All the way up :-) #Manila #Philippines #tech #Happy #Asia #fintech https://t.co/qBn2I8O1vO +06/24/2018,Sports_celeb,@ApoloOhno,RT @MichelleWKwan: Today is Olympic Day - a nostalgic time as I think about my experiences and how the Olympic values positively impacted m… +06/24/2018,Sports_celeb,@ApoloOhno,"Happy Olympic Day! #Olympic #Gold @ Mandarin Oriental, Taipei 台北文華東方酒店 https://t.co/fSR9igyVJa" +06/23/2018,Sports_celeb,@ApoloOhno,Pick your poison. #tpe #food #taipei https://t.co/vYTSYLJXmD +06/23/2018,Sports_celeb,@ApoloOhno,🤗🤗 https://t.co/XNGa5WljIb +06/22/2018,Sports_celeb,@ApoloOhno,Hot pot. Thanks Mr. Chen on your 39th location/restaurant! Amazing. https://t.co/aBqb6kSb1V +06/22/2018,Sports_celeb,@ApoloOhno,Welcome to Taipei 🤯❤️🔥🔥🔥🔥 #Mala #huoGuo #taiwan #taipei #hotpot #Happy https://t.co/g6594vX7Ei +06/21/2018,Sports_celeb,@ApoloOhno,RT @IVYconnect: IVY members in LA entered the world of cryptocurrency & blockchain this week with 8X Olympic medalist @ApoloOhno and Tether… +06/19/2018,Sports_celeb,@ApoloOhno,Thanks for having us tonight! Fun night speaking… https://t.co/CyGHURSYy3 +06/17/2018,Sports_celeb,@ApoloOhno,Happy Father’s Day! One of my favorite things to… https://t.co/vBRONMIdS5 +06/16/2018,Sports_celeb,@ApoloOhno,When will blockchain technology be integrated into Olympic city bidding processes and capital spend? #blockchain #Transparency #truths +06/15/2018,Sports_celeb,@ApoloOhno,Almost birthday time for my godson. The boss… https://t.co/AzXpY0gykC +06/15/2018,Sports_celeb,@ApoloOhno,@msantoriESQ Thanks @msantoriESQ keep these regular 21 tweet+ coming!!! +06/15/2018,Sports_celeb,@ApoloOhno,Summer is here :-) #CA #LA #64 #Cadillac @ Los… https://t.co/rTzaXgn6sV +06/13/2018,Sports_celeb,@ApoloOhno,Go further https://t.co/6qNuTH5IQz +06/13/2018,Sports_celeb,@ApoloOhno,A city within a city. One of the largest… https://t.co/ZfEeeH00wx +06/11/2018,Sports_celeb,@ApoloOhno,Just posted a photo https://t.co/sPkBwxDNGr +06/08/2018,Sports_celeb,@ApoloOhno,"Flashback to this magical place - Santorini,… https://t.co/8kzfkvjGvJ" +06/07/2018,Sports_celeb,@ApoloOhno,Out of a movie https://t.co/GRPMk78URX +06/04/2018,Sports_celeb,@ApoloOhno,Colorado Springs Olympic Training Center. https://t.co/WCJZV58UQE +05/28/2018,Sports_celeb,@ApoloOhno,Perfect workday. #Focused #Happy #Healthy… https://t.co/bqfz2hGSvP +05/26/2018,Sports_celeb,@ApoloOhno,Family is #1 :-) #manhattanassociates… https://t.co/CY07haXphx +05/23/2018,Sports_celeb,@ApoloOhno,Thank you for all the kind messages on this birthday :-) +05/22/2018,Sports_celeb,@ApoloOhno,"Mood! Birthday week. Gemini, year of the dog. 36… https://t.co/6ncw3mR1t2" +05/13/2018,Sports_celeb,@ApoloOhno,Happy Mother’s Day to my Obachan! And all the mommas out there! @… https://t.co/W2W613ioIe +05/13/2018,Sports_celeb,@ApoloOhno,Huo Guo adventures https://t.co/yVhQbBcw4N +05/11/2018,Sports_celeb,@ApoloOhno,@killabit ETF anyone? +05/09/2018,Sports_celeb,@ApoloOhno,Chicago - I’ve arrived :-) https://t.co/ImqpxL28lb +05/09/2018,Sports_celeb,@ApoloOhno,En route to Chicago! It’s been a minute! https://t.co/TJ2bqlB5Yz +05/09/2018,Sports_celeb,@ApoloOhno,Super throwback! https://t.co/obnFM47Y2X +05/07/2018,Sports_celeb,@ApoloOhno,@IamNomad @BillGates https://t.co/AwJVtXD0P9 +05/07/2018,Sports_celeb,@ApoloOhno,This was an incredibly memorable experience. See you soon NYC #FreedomTower… https://t.co/8R9uPxkGPw +05/06/2018,Sports_celeb,@ApoloOhno,"Sundaze @ Beverly Hills, California https://t.co/WT4R0HlOWS" +05/06/2018,Sports_celeb,@ApoloOhno,@ozsultan Just listened to one of the recent @badcrypto podcasts. Nice work OZ! Always spitting knowledge ! See you soon 💪💪💪🙌🏽🙌🏽🙌🏽 +05/05/2018,Sports_celeb,@ApoloOhno,"One of my fav streets in LA #LA #Trees #Breathe @ Beverly Hills, California https://t.co/GGVXwTZE9l" +05/04/2018,Sports_celeb,@ApoloOhno,😂😬 https://t.co/GcIcey5AN2 +05/04/2018,Sports_celeb,@ApoloOhno,Matrix https://t.co/gwfUmCzU8N +05/03/2018,Sports_celeb,@ApoloOhno,Operation optimize performance. Testing new products from The guys up north… https://t.co/WGXbk3pkDF +05/01/2018,Sports_celeb,@ApoloOhno,Congrats my fellow Asians who’ve impacted our community with the #A100 for the 50th Anniversary of Asian Americans! https://t.co/ls3v5ZItOT +05/01/2018,Sports_celeb,@ApoloOhno,"Milano! @ Mandarin Oriental, Milan https://t.co/bMXTd8mwXQ" +04/30/2018,Sports_celeb,@ApoloOhno,The crew eating seafood southern Italy :-) https://t.co/2vEjxSsgn5 +04/29/2018,Sports_celeb,@ApoloOhno,One...more...carb.... https://t.co/z0UpXl7pvm +04/29/2018,Sports_celeb,@ApoloOhno,"Always!!! @ Beverly Hills, California https://t.co/clvFbGLhY1" +04/28/2018,Sports_celeb,@ApoloOhno,"Barcelona calm... @ Barcelona, Spain https://t.co/STr4CQNxAB" +04/27/2018,Sports_celeb,@ApoloOhno,“Don’t gain the world and lose your soul. Wisdom is better than silver and gold” Zion train @… https://t.co/gULHDoJs2y +04/25/2018,Sports_celeb,@ApoloOhno,When in Rome.... https://t.co/EflN1CNSF1 +04/25/2018,Sports_celeb,@ApoloOhno,And of course the food 🤗 #Italy #CinqueTerre @ Cinque Terre Riviera https://t.co/mQLR7Z3sSg +04/24/2018,Sports_celeb,@ApoloOhno,:-) @ Cinque Terre https://t.co/cbn8u13t8I +04/23/2018,Sports_celeb,@ApoloOhno,"Marseille, France @ Marseille, France https://t.co/aCOTIrdaUq" +04/23/2018,Sports_celeb,@ApoloOhno,Just posted a photo @ Hôtel Le Pigonnet https://t.co/B3cV3evakd +04/22/2018,Sports_celeb,@ApoloOhno,@IamNomad 👍👍 +04/22/2018,Sports_celeb,@ApoloOhno,"Palma De Mallorca! @ Palma De Mallorca, Spain https://t.co/8y8KG5haHO" +04/20/2018,Sports_celeb,@ApoloOhno,More UAE https://t.co/5kTt2d4rm4 +04/20/2018,Sports_celeb,@ApoloOhno,🙌🏽🙌🏽🙌🏽🙌🏽 #abudhabi https://t.co/jAvW0wXubA +04/20/2018,Sports_celeb,@ApoloOhno,Absolutely incredible. The interior of the Sheikh Zayed Mosque in Abu Dhabi was breathtaking...… https://t.co/rIgyLEvhQ8 +04/18/2018,Sports_celeb,@ApoloOhno,"#dubai @ Dubai, United Arab Emirates https://t.co/TQJF21Mrxz" +04/18/2018,Sports_celeb,@ApoloOhno,"From sand.... @ Dubai, United Arab Emirates https://t.co/1XW9Eyi1FC" +04/15/2018,Sports_celeb,@ApoloOhno,"Post hummus, baba ganouj, kebab, fattoush, lebne, coma... @ Em Sherif Dubai https://t.co/VBo7RXWHAy" +04/14/2018,Sports_celeb,@ApoloOhno,Stunning!! @ Burj Khalifa https://t.co/HiNZDShAUa +04/12/2018,Sports_celeb,@ApoloOhno,@carlquintanilla @jbillinson And we are back!!! +04/11/2018,Sports_celeb,@ApoloOhno,Beautiful and strong! #nyc @ Freedom Tower https://t.co/tUzcoHGJxe +04/04/2018,Sports_celeb,@ApoloOhno,Please Join me and become a member of the USA Games 2018 Club. You’ll support the Special Olympics athletes competi… https://t.co/bDS5hCw7Uk +03/29/2018,Sports_celeb,@ApoloOhno,"@kalamarides @AAOsAwesomeFans @Prudential Thank you! We are all in this process together. Growing, learning, becomi… https://t.co/rssF7NFxzi" +03/28/2018,Sports_celeb,@ApoloOhno,Great to spend time today with @Kalamarides and the team @Prudential learning about how they're working to put… https://t.co/BqRehmwpn9 +03/27/2018,Sports_celeb,@ApoloOhno,@forexposure_txt @IamNomad 😩😅😂🤣🤣🤣🤣 +03/24/2018,Sports_celeb,@ApoloOhno,I love this city! #nyc #ny https://t.co/DRldYEW2jK +03/21/2018,Sports_celeb,@ApoloOhno,Ventured out for a meal in Chinatown. Owner/Chef of “Hwa Yuan” Chen Lieh Tang was quite the… https://t.co/20lryUluk5 +03/20/2018,Sports_celeb,@ApoloOhno,"Back in one of the greatest cities in the world. NYC! Busy week ahead, filled with reflection and gratitude from th… https://t.co/nli9oiJfGI" +03/19/2018,Sports_celeb,@ApoloOhno,"Charity concert to benefit the Puerto Rico! Thank you Matt and team! #PR #puertorico @ San Juan,… https://t.co/PEW3kP7zbD" +03/18/2018,Sports_celeb,@ApoloOhno,Rings of strength and unity here in PR #Global #Olympic https://t.co/5BY5Fh9zWf +03/16/2018,Sports_celeb,@ApoloOhno,"Magical!! #pr #puertorico @ San Juan, Puerto Rico https://t.co/S5N3pflioC" +03/12/2018,Sports_celeb,@ApoloOhno,Thanks for the nice chat Matt! Always fun to give perspective on the various challenges of this sphere. https://t.co/u9MY4UbpUe +03/09/2018,Sports_celeb,@ApoloOhno,Better late than never....happy Chinese New Year of the dog! #hkg #cny https://t.co/MYU4RgKXBM +03/07/2018,Sports_celeb,@ApoloOhno,The secret to winning Gold? You gotta visualize it! #HersheysGold #TastetheGold @Hersheys #ad https://t.co/RePOHJPFA9 +03/04/2018,Sports_celeb,@ApoloOhno,The never ending city #HK #2ndHome https://t.co/xFMvRQOz2h +02/27/2018,Sports_celeb,@ApoloOhno,"RT @NBCLatino: “The island was devastated to a degree that surprised everyone,” says Winter Olympian @ApoloOhno as he joins efforts to brin…" +02/26/2018,Sports_celeb,@ApoloOhno,"#Repost @wsjphotos +・・・ +Two-time Olympic speed skating gold medalist, Apolo Ohno reveals the… https://t.co/ASFF4b9guT" +02/25/2018,Sports_celeb,@ApoloOhno,Congratulations @AryFonta such an amazing career! #olympic #shorttrack #Olympic #speedskating… https://t.co/GsU1RKPGDp +02/24/2018,Sports_celeb,@ApoloOhno,Ice this pavement and we have a new sport inside the Olympic Park! #korea #pyeongchang2018… https://t.co/0dXZLinPSN +02/23/2018,Sports_celeb,@ApoloOhno,So happy for the women’s hockey team. Showed incredible resolve and strength. 20 years in the… https://t.co/EuchopUuUs +02/23/2018,Sports_celeb,@ApoloOhno,RT @NBCSportsPR: “This is just like #NASCAR on ice.” – @DaleJr joins @tedjrobinson & @ApoloOhno in the #shorttrack booth #WinterOlympics ht… +02/22/2018,Sports_celeb,@ApoloOhno,Congrats @TeamUSA on your gold medal in Women's Ice Hockey! No one deserves Gold more than you! #HersheysGold… https://t.co/TPXvGy0y1g +02/22/2018,Sports_celeb,@ApoloOhno,Look who joins us in the madhouse tonight!! dalejr hope you enjoyed short track :-) @nascar on… https://t.co/dWWZu3HKf2 +02/21/2018,Sports_celeb,@ApoloOhno,I wanted to provide some clarity for the confused viewers out there (like me). For all of the… https://t.co/aKBt9z6ZgZ +02/21/2018,Sports_celeb,@ApoloOhno,RT @tedjrobinson: Asked many smart people about SKorea skater fall that took out Canada. Told it’s not a foul as Kim had already pushed off… +02/20/2018,Sports_celeb,@ApoloOhno,This makes me happy :-) #Olympic #Life #pyeongchang2018 https://t.co/stRmMTQDcI +02/20/2018,Sports_celeb,@ApoloOhno,"30% of Puerto Rico is #StillInTheDark. I’m the #VIKTREChallenge captain of Team Olympics, and I challenge fellow Ol… https://t.co/zR1EGhbu5Q" +02/18/2018,Sports_celeb,@ApoloOhno,"The mountains are calling and I must go. - John Muir + +#pyeongchang2018 @olympics #Olympic… https://t.co/xv4efkH1mt" +02/17/2018,Sports_celeb,@ApoloOhno,@CryptoMClive Yes! That’s us :-) +02/17/2018,Sports_celeb,@ApoloOhno,Exploring this amazing place! Traditional Gangneung style Korean food + hallways full of markets… https://t.co/1CrzMf5YyG +02/16/2018,Sports_celeb,@ApoloOhno,"Celebrating #WinterOlympics @Todayshow and anticipating Gold, and I’m not just talking about medals! #HersheysGold… https://t.co/ZnrVWaIQMq" +02/15/2018,Sports_celeb,@ApoloOhno,High-Tech Skate. #Olympics #Skate #korea @ Gangneung Olympic Park https://t.co/DsAhQ8eHpG +02/15/2018,Sports_celeb,@ApoloOhno,The love for the Olympics and Speedskating has no borders! The Dutch showing some skillfully… https://t.co/K4HvMlC6Nc +02/13/2018,Sports_celeb,@ApoloOhno,The best place to be :-) Short Track Gangneung Ice Arena women’s 500m final +Mens’s 5000m relay.… https://t.co/qZwfyfGYNQ +02/13/2018,Sports_celeb,@ApoloOhno,Long Track Speedskating. A beautiful venue filled with fans from all over the world...cheering… https://t.co/7XGmdUeF0v +02/13/2018,Sports_celeb,@ApoloOhno,@bennyluo My man! See you soon +02/11/2018,Sports_celeb,@ApoloOhno,@RedmondGerard just took Gold everybody! I’m celebrating Red’s incredible performance with #HersheysGold… https://t.co/bIbd3JxnnI +02/11/2018,Sports_celeb,@ApoloOhno,"Just watched the mens Long Track 5,000m. Incredible. Don't want to spoil - but check it out. Mastery!!!… https://t.co/Hawsfwgrjm" +02/09/2018,Sports_celeb,@ApoloOhno,@danylemay_ @FLTremblay @USSpeedskating @PatinVitesseQc @SSC_PVC Man..our hair 😂😂😂😂😂🤯 +02/09/2018,Sports_celeb,@ApoloOhno,The Trophy Case is where I keep all my most treasured possessions. Check out the newest #ad I made for… https://t.co/7bbfgnrjzo +02/09/2018,Sports_celeb,@ApoloOhno,An epic moment tonight :-) #pyeongchang2018 @olympics #openingceremony #2018 #southkorea… https://t.co/zbsLS3PgLm +02/09/2018,Sports_celeb,@ApoloOhno,RT @tedjrobinson: North Korean short track skater Jong Kwang-Bom not only practiced alongside the South Korean team but talked with skaters… +02/08/2018,Sports_celeb,@ApoloOhno,Home :-) https://t.co/KXssg3z1FS +02/08/2018,Sports_celeb,@ApoloOhno,RT @VIKTRESocial: Puerto Rico was hit hard by Hurricane Maria. But a group of pro-athletes and the Foundation for Puerto Rico are crowdfund… +02/08/2018,Sports_celeb,@ApoloOhno,RT @Hersheys: Am I a little obsessed with Gold? Oh Yes. #HersheysGold #TasteTheGold https://t.co/alpW1xwNKL +02/08/2018,Sports_celeb,@ApoloOhno,RT @GivingCompass: Puerto Rico isn't being forgotten. U.S. #Olympic legend @ApoloOhno and other athletes are chipping in to help bring sola… +02/07/2018,Sports_celeb,@ApoloOhno,6am run. Cold as hell. Perfect :-) #pyeongchang2018 @olympics @ Gangneung https://t.co/MCP5y293Y9 +02/06/2018,Sports_celeb,@ApoloOhno,Seaside for the Winter Games :-) #pyeongchang2018 @nbcolympics #olympics @ PyeongChang https://t.co/tSFa6cBDbd +02/04/2018,Sports_celeb,@ApoloOhno,Thank you thank you thank you to these amazing men and women here at Osan Air Base. We came down… https://t.co/yb2TqfpE7v +02/03/2018,Sports_celeb,@ApoloOhno,Landed in S. Korea :-) the energy in this country has always been so unique and special. This… https://t.co/tBKuhYV7eG +02/01/2018,Sports_celeb,@ApoloOhno,From city to sea. LA LA land #la https://t.co/N2HczyXBgZ +02/01/2018,Sports_celeb,@ApoloOhno,RT @FastCompany: These pro athletes are raising money to bring solar power to Puerto Rico https://t.co/jaFDyYSmgU https://t.co/TOxMUfCJq5 +02/01/2018,Sports_celeb,@ApoloOhno,"Team we are making big impact where it's needed! @VIKTRESocial +#puertoRico #power #Team +https://t.co/0mz0bWxyqI" +01/30/2018,Sports_celeb,@ApoloOhno,Olympics are here! pyeongchang2018 https://t.co/rxY7pMlMe7 +01/27/2018,Sports_celeb,@ApoloOhno,"SF you’ve always made me smile in my heart, belly, and eyes. I love this place! #sf #minds… https://t.co/wuMJs1RM9T" +01/26/2018,Sports_celeb,@ApoloOhno,Fresh off the plane into meetings and now @stanford my dream alumni :-) I’m instantly inspired… https://t.co/Uww6EguaIA +01/24/2018,Sports_celeb,@ApoloOhno,Planning. SF I’ll see you tomorrow! https://t.co/bBpUgB2Wbr +01/24/2018,Sports_celeb,@ApoloOhno,@AAOsAwesomeFans True. +01/22/2018,Sports_celeb,@ApoloOhno,Today’s the day - the official launch of #VIKTREChallenge - Power for Puerto Rico! Half of… https://t.co/aqlNSDp3hy +01/18/2018,Sports_celeb,@ApoloOhno,2018...don’t lose sight of the goals you’ve set. Hold the line. Be strong. Focused. Get it!!!… https://t.co/qo0preuKw9 +01/18/2018,Sports_celeb,@ApoloOhno,Well done Matt!!! #miami #digital #blockchain @ James L Knight Center https://t.co/PKthHGtzag +01/16/2018,Sports_celeb,@ApoloOhno,RT @SMMadagency: The Hershey Company has said that it will tweet a link to a Hershey’s Gold coupon every time Team USA wins a gold medal du… +01/15/2018,Sports_celeb,@ApoloOhno,@crypto_bobby Reach out to Reeve - he can shed light on some really amazing partnerships and 1/2nd quarter plans for BlockV. +01/15/2018,Sports_celeb,@ApoloOhno,"Family is everything. #Family #la #Pops biancawstam @ Mastro's Restaurants - Steakhouse, Beverly… https://t.co/L0vHNUF30Z" +01/15/2018,Sports_celeb,@ApoloOhno,@Disruptepreneur Great video @Disruptepreneur - This is how you should always be captured and displayed imo. +01/15/2018,Sports_celeb,@ApoloOhno,@Echelon1969 LOVE it. +01/13/2018,Sports_celeb,@ApoloOhno,Throwback! Nothing quite like competing on the world stage at the pinnacle of all sport. The… https://t.co/XnPGPzT0GX +01/12/2018,Sports_celeb,@ApoloOhno,"Is this real life? #puppy #puppies #ride #foolery #friday @ Bel Air, Los Angeles https://t.co/2ZL1dER7XC" +01/12/2018,Sports_celeb,@ApoloOhno,"RT @ahhnalin: .@ApoloOhno stars in TV, social ads for #HersheysGold launch #TastetheGold https://t.co/9CCUMhjJ0J @KLmarketdaily" +01/12/2018,Sports_celeb,@ApoloOhno,"RT @zaoyang: Courage, conviction, grit are the scarcest resources in the world. Scarcer than IQ, brilliance, and money." +01/11/2018,Sports_celeb,@ApoloOhno,"RT @adage: .@ApoloOhno talks social media's influence on competitive sports and why blockchain is ""the greatest invention since the interne…" +01/09/2018,Sports_celeb,@ApoloOhno,"We know who wears the pants around here. 😫🐒 #puppy #love #animals #happy #LA @ Los Angeles,… https://t.co/NHpVb29MiB" +01/08/2018,Sports_celeb,@ApoloOhno,"RT @NBCOlympics: The #WinterOlympics are coming to @nbc in only ONE. MORE. MONTH. #BestOfUS + +Get ready! Sign up for NBC Olympics newsletter…" +01/07/2018,Sports_celeb,@ApoloOhno,Taking it back! Hometown Seattle love here! Had an incredible partnership with Alaska airlines… https://t.co/fj1efzeP9r +01/05/2018,Sports_celeb,@ApoloOhno,@davidmeltzer 🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽 +01/05/2018,Sports_celeb,@ApoloOhno,"RT @davidmeltzer: Check out Top Moments from #ThePlaybook in 2017. Including All-Pro athletes, broadcasters, Olympians, and sports executiv…" +01/05/2018,Sports_celeb,@ApoloOhno,"RT @Disruptepreneur: Mark Zuckerberg’s 2018 personal challenge is to fix his company... and learn more about decentralization, cryptocurren…" +01/05/2018,Sports_celeb,@ApoloOhno,@IamNomad Haha +01/02/2018,Sports_celeb,@ApoloOhno,@PeterLBrandt 100% 🙌🏽🙏 +12/31/2017,Sports_celeb,@ApoloOhno,RT @Hersheys: Ring in the new year by experiencing an entirely new flavor. #HersheysGold #TasteTheGold https://t.co/EClh7BBXuv +12/30/2017,Sports_celeb,@ApoloOhno,😫😭😭😭😭😭 so cute https://t.co/WdxlxNcK0I +12/29/2017,Sports_celeb,@ApoloOhno,@IamNomad @MikelGiustinian ha! +12/27/2017,Sports_celeb,@ApoloOhno,@ManorMolly Domestic vs int racing is much different +12/25/2017,Sports_celeb,@ApoloOhno,Merry Christmas from the Ohno family! Haha started out hyping up my incredible world famous… https://t.co/EgGfjywqVK +12/25/2017,Sports_celeb,@ApoloOhno,Happy Holidays :-) spending the week with my pop and loved ones :-) +12/23/2017,Sports_celeb,@ApoloOhno,@kevinrose 🙌🙌🙌🙌 +12/23/2017,Sports_celeb,@ApoloOhno,@kevinrose Very well said. Thank you! +12/23/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur Sweet moses +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Dream exchange? Can you list what you'd like to see vs what is currently available... +12/20/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @mrbrockvond I do too. +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Stay focused. Eyes on the prize. +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Any response from Brian directly? +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Strong move sir. Strong move. +12/20/2017,Sports_celeb,@ApoloOhno,"RT @TeamUSA: Born of South Korean heritage, qualifying for the #WinterOlympics has a special meaning for Thomas Hong. This February, he’ll…" +12/19/2017,Sports_celeb,@ApoloOhno,@TeamApolo Happy Birthday! Thank you for all the support. Enjoy your special day! +12/19/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @AugurProject Congratulations brother! +12/19/2017,Sports_celeb,@ApoloOhno,@officialmcafee Strong. +12/18/2017,Sports_celeb,@ApoloOhno,@scottwalker99 Preach Scotty! +12/18/2017,Sports_celeb,@ApoloOhno,"Congratulations to this team! A weekend filled with ups and downs, but perseverance, strength,… https://t.co/KDxKTf7kG8" +12/17/2017,Sports_celeb,@ApoloOhno,Final day of the Short Track Olympic Trials. Leave it all out on the ice. Zero regrets. @ Utah… https://t.co/MLkoEvCdf0 +12/15/2017,Sports_celeb,@ApoloOhno,We are back!!! Live on @nbc @nbcolympics tonight covering the Olympic Trials for Short Track… https://t.co/JPxak4AXjo +12/14/2017,Sports_celeb,@ApoloOhno,Reliving the golden days & getting ready to cheer on @TeamUSA at the #WinterOlympics with @Hersheys #HERSHEYSGOLD… https://t.co/kmEyX0FCS1 +12/13/2017,Sports_celeb,@ApoloOhno,@FoxBusiness @tylerwinklevoss Strong brother. Very strong. Cheering you guys on while participating at the same time :-) +12/12/2017,Sports_celeb,@ApoloOhno,@Shutterstock need some serious help in the customer service department. +12/11/2017,Sports_celeb,@ApoloOhno,A room of power players! Thanks and happy birthday to @bingchen - #Gold #celebrate @ GRAMMY Museum https://t.co/5YKpnqSjZ3 +12/08/2017,Sports_celeb,@ApoloOhno,Shot this commercial yesterday w/ partner hersheys haha can’t wait until you guys see it! https://t.co/ydrKSf85yb +11/27/2017,Sports_celeb,@ApoloOhno,"Wow! What an incredible culinary treasure with chefjameswon in Malaysia. One of a kind. Design,… https://t.co/kNux8hCEVt" +11/27/2017,Sports_celeb,@ApoloOhno,@RudiPermana I agree! Working on it +11/25/2017,Sports_celeb,@ApoloOhno,"Couldn’t squeeze much more into this energy packed room full of beautiful, amazing, and… https://t.co/gyS7wsEzxY" +11/25/2017,Sports_celeb,@ApoloOhno,@IamNomad Do you trade solo? Institutionalized firm? full time? Most used exchange? +11/24/2017,Sports_celeb,@ApoloOhno,Touched down in Taipei - hit this famous chicken soup restaurant immediately. Happy… https://t.co/sVEhpuguRM +11/22/2017,Sports_celeb,@ApoloOhno,Was a true throwback being on set yesterday of @dancingabc for the finals show! Saw many old… https://t.co/ElTfICPHH6 +11/19/2017,Sports_celeb,@ApoloOhno,@PeterAttiaMD Water fast? +11/16/2017,Sports_celeb,@ApoloOhno,Nothing makes me happy than to see my dad looking younger and fresher than ever!! #healthy… https://t.co/kwqAp5Pbv1 +11/15/2017,Sports_celeb,@ApoloOhno,"How’s your paso? #dwts 🚀#throwback @juliannehough #dance #finals #fun @dancingabc @ Los Angeles,… https://t.co/vcMnOh7iSa" +11/15/2017,Sports_celeb,@ApoloOhno,@jsamulaitis shoot me a dm. I've a team in Vancouver. +11/15/2017,Sports_celeb,@ApoloOhno,@jsamulaitis @IamNomad I do. I've seen large scale mining in China & small operations in Vegas. Where are you loc… https://t.co/RbsBTWbvI5 +11/14/2017,Sports_celeb,@ApoloOhno,@DancingABC @frankiemuniz @WitneyCarson @juliannehough CRUSHED IT!!!!!! FINALS! +11/14/2017,Sports_celeb,@ApoloOhno,"RT @abc7george: For their #DWTS  Iconic Dance on Monday, @frankiemuniz & @WitneyCarson will paso doble to ""Carnival De Paris” by Dario G. I…" +11/13/2017,Sports_celeb,@ApoloOhno,Congratulations to this young team! That is FAST!!! WR! https://t.co/ijeLvTneOD +11/12/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @zacksomeone Pain. +11/12/2017,Sports_celeb,@ApoloOhno,@IamNomad @jsamulaitis Cost associated w/ having the strength to balance over asia? +11/12/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur The true definition of “it just doesn’t matter...I’ll have that $9 water and $8 Choco bar” haha +11/12/2017,Sports_celeb,@ApoloOhno,Double selfie w/ my partner in crime @nickgismondi covering Short Track World Cup in Shanghai!… https://t.co/rMvVoMA3T4 +11/09/2017,Sports_celeb,@ApoloOhno,Thank you @elisk25 for having me today! @olympics Day was amazing and you guys and girls made me… https://t.co/nksh19BpiR +11/09/2017,Sports_celeb,@ApoloOhno,Somebody hit a remix pls... oh oh oh noooooo op op opoloooooo https://t.co/8atUttsJQN +11/06/2017,Sports_celeb,@ApoloOhno,Central Park walks are mesmerizing :-) #nyc #centralpark @ Central Park Manhatan https://t.co/VAhAjgCmJT +11/04/2017,Sports_celeb,@ApoloOhno,What an amazing week filled with exceptional experiences and excitement! My one and only each… https://t.co/Qzzk52DbdN +11/02/2017,Sports_celeb,@ApoloOhno,Was an @olympics reunion with all of @todayshow team hersheys and of course teamusa New York… https://t.co/Qen7NBBIT4 +11/01/2017,Sports_celeb,@ApoloOhno,The countdown is on for @TeamUSA at the #WinterOlympics and I’m celebrating with #HersheysGold. Excited to team up… https://t.co/qSq6vzvcms +10/30/2017,Sports_celeb,@ApoloOhno,"Haha I’m dead! 😭😭🤣🤣🤣🤣 #godson #games #kids #fun #vancouver #simple #ca @ Richmond, British Columbia https://t.co/gsg4L6G5O0" +10/27/2017,Sports_celeb,@ApoloOhno,Thank you for having me #cincsummit here in #LasVegas it was a short trip but well worth it :-)… https://t.co/foIhkSOjH3 +10/21/2017,Sports_celeb,@ApoloOhno,Choi Kee in Wanchai to satisfy all your late night cravings :-) 😊🤗 #wanchai #hk # @ Choi Kee… https://t.co/ZacTO2ovuj +10/18/2017,Sports_celeb,@ApoloOhno,A nice present before jumping on a plane for a quick trip to Asia. Thank you @jockowillink for… https://t.co/W3J3OakFB3 +06/29/2018,Sports_celeb,@usainbolt,Hey bro you just broke my daring celebration game 😂. You deserve some huge bottle of Champagne for sure !!🍾… https://t.co/reML4Wo5nt +06/28/2018,Sports_celeb,@usainbolt,"RT @UBTandR: THROWBACK to the LEGEND book signing here at UBTR Kingston ⚡ +Fist bumping @usainbolt? Wouldn’t you love to be this guy? 😂 + +#TB…" +06/28/2018,Sports_celeb,@usainbolt,History Will Remember The Country Boy @ Planet Earth https://t.co/CcW5B62EpE +06/28/2018,Sports_celeb,@usainbolt,History Will Remember Me 🙏🏾 https://t.co/PRI9k05DN4 +06/27/2018,Sports_celeb,@usainbolt,Great being back in Bermuda where I ran my first world record as a junior in 2004. I Can never forget that 200m at… https://t.co/SDL3YBjSqG +06/27/2018,Sports_celeb,@usainbolt,"RT @TheRoyalGazette: Photos of Usain Bolt's whirlwind tour of Bermuda + +Photo gallery: https://t.co/e5WTxfVXHr https://t.co/hqbY1cXpc6" +06/27/2018,Sports_celeb,@usainbolt,"RT @DigicelBermuda: Photo of the day? When Elias met @usainbolt (shame he took off the shades, Elias that is) https://t.co/GBd0LLP65B" +06/27/2018,Sports_celeb,@usainbolt,RT @BermudaPremier: Students from the Hamilton Community Centre served as #Bermuda ambassadors as we welcomed #Olympic Gold Medallist and w… +06/26/2018,Sports_celeb,@usainbolt,"RT @MelanieCarmen_: Today my 13 year old cousin had a running session with none other than Usain Bolt!!! ⚡️ +As proud as I am of little Ste…" +06/26/2018,Sports_celeb,@usainbolt,"RT @DigicelBermuda: Warren Bean brough his Jamaican flag with Bolt's 2004 signature. Now it has his 2018 signature! +#bermuda #usainbolt htt…" +06/26/2018,Sports_celeb,@usainbolt,RT @BernewsSports: Selected students from various schools are having the opportunity to meet @usainbolt this morning thanks to @DigicelBerm… +06/26/2018,Sports_celeb,@usainbolt,Good morning world https://t.co/TV5V90IpfF +06/22/2018,Sports_celeb,@usainbolt,Friday lunch with #CoachMills #NJ https://t.co/sMjaKP7rUf +06/21/2018,Sports_celeb,@usainbolt,Wow wow wow #Worldcup2018Russia +06/21/2018,Sports_celeb,@usainbolt,"Some people have jobs, others have careers but… https://t.co/5bhEdwNcET" +06/21/2018,Sports_celeb,@usainbolt,TBT https://t.co/uCDh1AI1aK +06/20/2018,Sports_celeb,@usainbolt,RT @COPA90: Timbsy takes on @usainbolt at the ‘@piresrobert7 Lay-off Challenge’... 👀🎯 https://t.co/hrCBUpLgax +06/20/2018,Sports_celeb,@usainbolt,Teamed up with @gatorade & @piresrobert7 to take… https://t.co/5PCSn2ALj6 +06/19/2018,Sports_celeb,@usainbolt,Mood https://t.co/OyZFHffr4F +06/18/2018,Sports_celeb,@usainbolt,"Join the competition! This summer, celebrate goals in your most daring way. To win a🍾, post your video tagging… https://t.co/nhnoTp9RK6" +06/17/2018,Sports_celeb,@usainbolt,A Father Figure like no other #CoachMills https://t.co/hWfEzGVH8R +06/17/2018,Sports_celeb,@usainbolt,Happy Father’s Day Pops. You taught me… https://t.co/HFUnfOpq3G +06/13/2018,Sports_celeb,@usainbolt,My G’s @SimmsRicky #NJ https://t.co/Z51rtY4xqM +06/13/2018,Sports_celeb,@usainbolt,"Family Is The Greatest Currency @ Paris, France https://t.co/uVKlw7THM5" +06/13/2018,Sports_celeb,@usainbolt,Last couple days been epic 🙌🏽🙌🏽 https://t.co/n3yPRMQOeG +06/11/2018,Sports_celeb,@usainbolt,"RT @themichaelowen: Well done to everyone involved with @socceraid yesterday especially @usainbolt. Captain, Man Of the Match and winner of…" +06/10/2018,Sports_celeb,@usainbolt,Man of the match @socceraid @Hublot 🙌🏽🙌🏽 https://t.co/iSv9LrzrfH +06/10/2018,Sports_celeb,@usainbolt,A lot of fun today @socceraid match 🙌🏽🙌🏽 https://t.co/DBok1WDdwz +06/10/2018,Sports_celeb,@usainbolt,Captain 🙌🏽🙌🏽 https://t.co/dt4PzP163b +06/10/2018,Sports_celeb,@usainbolt,Sunday Mood https://t.co/F2og6ZNkTs +06/10/2018,Sports_celeb,@usainbolt,Sunday Mood 🤔🤔 https://t.co/PxT6hLINOR +06/10/2018,Sports_celeb,@usainbolt,Game Day @socceraid https://t.co/g2I7BnV91v +06/09/2018,Sports_celeb,@usainbolt,Who got skills @Mo_Farah @socceraid 😂😂😂😂😂 https://t.co/Ouv1BR4zqy +06/08/2018,Sports_celeb,@usainbolt,Slowed down a minute for the #GrahamNorton show… https://t.co/5bmpJG1efo +06/08/2018,Sports_celeb,@usainbolt,Catch me tonight on #GrahamNorton show https://t.co/wi2h9LP1RM +06/08/2018,Sports_celeb,@usainbolt,"Racers Grand Prix +June 9, 2018 +National Stadium @6pm + +Tickets available @ Pegasus Hotel and Selected JN Bank +HWT… https://t.co/mxKPkPV9FT" +06/07/2018,Sports_celeb,@usainbolt,My brother @Mo_Farah 🎮🎮 https://t.co/AyrByUfJDB +06/07/2018,Sports_celeb,@usainbolt,"Super Bolt socceraid @ London, United Kingdom https://t.co/kUIb88tYGz" +06/07/2018,Sports_celeb,@usainbolt,Super Bolt @socceraid https://t.co/x78ablRf6z +06/06/2018,Sports_celeb,@usainbolt,RT @socceraid: Celebrating the partnership between #SoccerAid for @UNICEF_uk and the governments aid match scheme #downingstreet https://t.… +06/06/2018,Sports_celeb,@usainbolt,Last few tickets for @socceraid available at https://t.co/NM0BUFFgzj https://t.co/nyIMFXHZSF +06/04/2018,Sports_celeb,@usainbolt,The Queen Is Back!!!! #RacersGrandPrix https://t.co/Kfc293Tkwl +06/02/2018,Sports_celeb,@usainbolt,Running into the weekend https://t.co/hft0br0pSv +06/01/2018,Sports_celeb,@usainbolt,"RT @DIGICELJamaica: Catch @yohanblake, @KemarBaileyCole and @Julian_Forte on the track at #RacersGrandPrix on Saturday June 9th at the Nati…" +06/01/2018,Sports_celeb,@usainbolt,Pow! 💥 watch me make the #SwitchToSuper with a one-of-a-kind fitting. @virginmedia https://t.co/XsORD0BERl +05/31/2018,Sports_celeb,@usainbolt,"The rules are the rules but at the end of the day the joy of winning that relay gold +Medal in Beijing 2008 with my… https://t.co/A6fJZcfObD" +05/31/2018,Sports_celeb,@usainbolt,The rules are the rules but at the end of the… https://t.co/iaTS7syD4w +05/31/2018,Sports_celeb,@usainbolt,Memories Last Forever #ThisDayInHistory 31.05.08 https://t.co/T1D1bQrZcO +05/31/2018,Sports_celeb,@usainbolt,Memories Last Forever #ThisDayInHistory 31.05.08 https://t.co/nnluVu7OaE +05/31/2018,Sports_celeb,@usainbolt,This day in History 31.05.08 https://t.co/AW0eK7nPER +05/30/2018,Sports_celeb,@usainbolt,No Limit https://t.co/UVdwFcbv1N +05/30/2018,Sports_celeb,@usainbolt,Chasing the Dream @strmsgodset @puma… https://t.co/f2SJzw2jKS +05/30/2018,Sports_celeb,@usainbolt,Chasing the Dream @strmsgodset @puma… https://t.co/Tujnxj3V6J +05/30/2018,Sports_celeb,@usainbolt,RT @strmsgodset: Godset TV did an exclusive interview with @usainbolt after his first training session with Strømsgodset. You can see it he… +05/30/2018,Sports_celeb,@usainbolt,"RT @strmsgodset: The worlds fastest man is training with Strømsgodset the next week. Doing his first session today. +@usainbolt https://t.co…" +05/30/2018,Sports_celeb,@usainbolt,"RT @strmsgodset: Usain Bolt er i gang ute på Gamle gress. Hvor absurd er ikke den setningen! +@usainbolt +📸 @brre_eirik https://t.co/nslZaBJ…" +05/29/2018,Sports_celeb,@usainbolt,"Racers Grand Prix extends Online tickets sales for 48 hours! +https://t.co/Hc0pGrVqn1" +05/29/2018,Sports_celeb,@usainbolt,RT @racerstrack: Extension of online ticket sales for the Racers Grand Prix 2018 .48 hours only! Midnight tonight (Monday) until Wednesday… +05/28/2018,Sports_celeb,@usainbolt,🤫🤔 https://t.co/BKgnX3YYE3 +05/28/2018,Sports_celeb,@usainbolt,🤫 https://t.co/YjI3d5i3dd +05/26/2018,Sports_celeb,@usainbolt,Seriously.. like seriously #ChampionsLeague2018 +05/26/2018,Sports_celeb,@usainbolt,Brilliant goal #ChampionsLeagueFinal2018 +05/26/2018,Sports_celeb,@usainbolt,Strangest Goal ever #ChampionsLeagueFinal2018 +05/25/2018,Sports_celeb,@usainbolt,"RT @UBTandR: Come on in after work! +UBTR Montego Bay is now LIVE on the HIP STRIP ⚡ +Mobay peeps! Now you can #tasteREALJamaicanvibes here a…" +05/22/2018,Sports_celeb,@usainbolt,"Racers Grand Prix!!!!!!!! +June 9,2018 +National Stadium +Kingston + +Be There!!!!!!!!!! https://t.co/a2xar7Zadz" +05/22/2018,Sports_celeb,@usainbolt,Time @Hublot https://t.co/3IDk3m1rFK +05/21/2018,Sports_celeb,@usainbolt,Travel swag https://t.co/QX1aBf7Pnj +05/21/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/RSx3D4OSD0 +05/21/2018,Sports_celeb,@usainbolt,G.O.A.T on Bolts https://t.co/GbiDBEFsT1 +05/21/2018,Sports_celeb,@usainbolt,Master Piece https://t.co/fLg5FpFcqU +05/20/2018,Sports_celeb,@usainbolt,"RT @socceraid: Just 3️⃣ weeks to go until @robbiewilliams’ England take on @usainbolt’s World XI 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽️🌎 + +🎟 Don’t miss a game like no ot…" +05/19/2018,Sports_celeb,@usainbolt,🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬 +05/19/2018,Sports_celeb,@usainbolt,"To become a champion, it just takes hard work, dedication and a lot of sacrifice. You must focus on your dream and… https://t.co/E6IyMn5wxm" +05/18/2018,Sports_celeb,@usainbolt,Boom! You’re now LIT with Digicel LTE in more places than ever before! Speed over to @digicelJamaica for more deets… https://t.co/uteB72z18A +05/17/2018,Sports_celeb,@usainbolt,Try nuh blink… cause yuh might miss it! #getset https://t.co/1NyPUowjdb +05/17/2018,Sports_celeb,@usainbolt,It’s a official @UBTandR Montego Bay https://t.co/WWsKQbtaPY +05/17/2018,Sports_celeb,@usainbolt,"Official opening of @UBTandR in Montego Bay, Jamaica 🇯🇲 https://t.co/VWTUJFLquP" +05/16/2018,Sports_celeb,@usainbolt,#GetReady https://t.co/hEEYgXru29 +05/16/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/RSEOdzTE6w +05/14/2018,Sports_celeb,@usainbolt,"RT @UBTandR: The mother of the man himself ⚡️ + +Happy Mother’s Day to all our moms! + +Celebrate your special day with us here at Tracks and R…" +05/13/2018,Sports_celeb,@usainbolt,"Happy Mother’s Day to my rock. You are the strongest, most patient,… https://t.co/1jbe4GnuX3" +05/12/2018,Sports_celeb,@usainbolt,"RT @UBTandR: The big man himself invites you to Usain Bolt’s Tracks & Records this Sunday for your Mother’s Day celebration! 🎉 +You know you…" +05/11/2018,Sports_celeb,@usainbolt,"RT @socceraid: THE KING IS BACK! 👑 + +Eric Cantona joins #TeamUsain and will return to Old Trafford on Sunday 10th June! 🏟 + +Don’t miss what…" +05/11/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/QADysmCec4 +05/10/2018,Sports_celeb,@usainbolt,RT @youridjorkaeff: Great game with Great Champions @piresrobert7 @usainbolt ⚡️🏅🏆 https://t.co/jhI4Qpz6Nr +05/09/2018,Sports_celeb,@usainbolt,"RT @DIGICELJamaica: Happy Teachers' Day!! + +Today we celebrate the hardworking men and women who shape the minds of the nation's students. Y…" +05/06/2018,Sports_celeb,@usainbolt,"Prayers be Sir Alex @ Manchester, United Kingdom https://t.co/CoRNohrQNJ" +05/01/2018,Sports_celeb,@usainbolt,Sauce 🔥🔥🌶🌶🇯🇲🇯🇲💯💯🙌🏿🙌🏿 https://t.co/7A28cv57x6 +05/01/2018,Sports_celeb,@usainbolt,Sauce 🔥🔥🌶🌶🇯🇲🇯🇲💯💯🙌🏿🙌🏿 @ Australia https://t.co/AG3wGGln9K +05/01/2018,Sports_celeb,@usainbolt,"Get your Racers Grand Prix tickets online starting today +https://t.co/Hc0pGrVqn1" +04/30/2018,Sports_celeb,@usainbolt,Running into the week like Bolt🤗 https://t.co/BOFkzhdUlQ +04/26/2018,Sports_celeb,@usainbolt,Getting ready for @xbox Game Pass Challenge today. 🇯🇲🙏🏾🔥Don’t miss it @aarongreenberg https://t.co/n8AlTyf2yv +04/26/2018,Sports_celeb,@usainbolt,Hyped for @Xbox Game Pass Challenge. 🇯🇲🙏🏾🔥 Tune in tomorrow 🙌🏽 @XboxP3 @aarongreenberg https://t.co/5dRZw8smWr +04/26/2018,Sports_celeb,@usainbolt,Hyped for @xbox Game Pass Challenge. 🇯🇲🙏🏾🔥 Tune in tomorrow 🙌🏽 @aarongreenberg https://t.co/vnS5E5XMOG +04/26/2018,Sports_celeb,@usainbolt,https://t.co/1DUNZsD1tP +04/25/2018,Sports_celeb,@usainbolt,Which lane i am in? https://t.co/VikoDEeat3 +04/24/2018,Sports_celeb,@usainbolt,"Montego Bay @ubtandr is here. Enjoy 🙌🏽🙌🏽 @ Montego Bay, Jamaica https://t.co/pNSAD41PuX" +04/24/2018,Sports_celeb,@usainbolt,It’s good look Mobay @UBTandR #Mobay https://t.co/M7HqcgLNcs +04/24/2018,Sports_celeb,@usainbolt,Montego Bay @UBTandR is here 🙌🏽 https://t.co/9aEAZivcHE +04/22/2018,Sports_celeb,@usainbolt,"Everything @ Kingston, Jamaica https://t.co/D9Qq8snhL5" +04/20/2018,Sports_celeb,@usainbolt,"Happy birthday to my godson 🎂🎉🎊🎁🎈#NJJ #Love&LoveAlone @ Kingston, Jamaica https://t.co/rRpj5RHeGi" +04/20/2018,Sports_celeb,@usainbolt,"Racers Grand Prix!!! +Save the Date!!! +June 9, 2018 +National Stadium +Kingston https://t.co/ivkMkrC2FV" +04/20/2018,Sports_celeb,@usainbolt,G https://t.co/xXa0gXYI3u +04/17/2018,Sports_celeb,@usainbolt,🌶🌶🌶🌶🔥🔥🔥🔥🇯🇲🇯🇲🇯🇲🇯🇲 https://t.co/Vn1FBP3zKH +04/17/2018,Sports_celeb,@usainbolt,Hot Hot Hot🌶🌶🌶🌶 My 🇯🇲Insane Hot Sauce here in Australia. Get it colessupermarkets🔥🔥🔥 @ Gold… https://t.co/gLvUkUKQ6C +04/16/2018,Sports_celeb,@usainbolt,My 🇯🇲Insane Hot Sauce challenge. Get it @Coles #GoldCoast2018 🔥🔥🔥🔥🔥🔥 https://t.co/RjNctrbHvT +04/16/2018,Sports_celeb,@usainbolt,My 🇯🇲Insane Hot Sauce here in Australia #GoldCoast2018 🔥🔥🔥 https://t.co/ByolrMciQz +04/15/2018,Sports_celeb,@usainbolt,Mr Dj #GoldCoast2018 #CommonwealthGames #ClosingCeremony https://t.co/1JgSXSaOOP +04/15/2018,Sports_celeb,@usainbolt,"RT @7CommGames: No your eyes do not deceive you, @usainbolt is on the decks at the #GC2018 Closing Ceremony. + +#7CommGames #ShareTheDream ht…" +04/15/2018,Sports_celeb,@usainbolt,##BeyChella +04/14/2018,Sports_celeb,@usainbolt,Proud of our #SunshineGirls #TeamJamaica #GoldCoast2018 #CommonwealthGames https://t.co/d6hErVgEZG +04/14/2018,Sports_celeb,@usainbolt,Let’s Go Girls #SunshineGirls #GoldCoast2018 #CommonwealthGames2018 https://t.co/MRXlG2awQg +04/14/2018,Sports_celeb,@usainbolt,Supporting our Netball Girls #TeamJamaica #PresidentMollyRhone https://t.co/9flPqSJuDR +04/14/2018,Sports_celeb,@usainbolt,Watching the relay just now made me ask myself a few questions. Anyhow #TeamJamaica all day everyday #GoldCoast2018 #CommonwealthGames +04/14/2018,Sports_celeb,@usainbolt,Did I retire too soon? Hmmm +04/13/2018,Sports_celeb,@usainbolt,All Black Everything @JohnSteffensen #GoldCoast2018 https://t.co/8JlgqI2Oq1 +04/13/2018,Sports_celeb,@usainbolt,Please follow & support @able2uk today as the disabled awareness organisation celebrates its 17th anniversary #able2uk +04/12/2018,Sports_celeb,@usainbolt,New Levels ##GoldCoast2018 #CommonwealthGames https://t.co/8cJQqXEKtM +04/12/2018,Sports_celeb,@usainbolt,RT @DIGICELJamaica: Sherika Jackson was presented with her #GC2018 Commonwealth Games silver medal by #ChiefSpeedOfficer @UsainBolt. 🥈😊 ht… +04/12/2018,Sports_celeb,@usainbolt,RT @DIGICELJamaica: #ChiefSpeedOfficer @usainbolt during a press conference on day 8 of the Gold Coast 2018 Commonwealth Games at #GC2018 C… +04/12/2018,Sports_celeb,@usainbolt,"The god of Thunder & Lightning Bolt. + +Thunder & Bolt + +Real Thor & Real Flash + +@chrishemsworth @Avengers #Thor… https://t.co/5LnwpmmgJJ" +04/12/2018,Sports_celeb,@usainbolt,Infinity War @chrishemsworth #Thor @avengers #GoldCoast #commonwealthgames2018 🙌🏽 https://t.co/3YQjH1DsAz +04/12/2018,Sports_celeb,@usainbolt,Infinity War @chrishemsworth #Thor avengers #GoldCoast #commonwealthgames2018 🙌🏽 @ Carrara Stadium https://t.co/o60a0NRZFr +04/12/2018,Sports_celeb,@usainbolt,RT @7CommGames: The big names are in the house! @usainbolt AND @chrishemsworth are ready for a big night of aths at #GC2018 https://t.co/eG… +04/12/2018,Sports_celeb,@usainbolt,Congrats mi G @jaheelstella #TeamJamaica 🇯🇲 #GoldCoast2018 #CommonwealthGames2018 https://t.co/88N0paYiGE +04/12/2018,Sports_celeb,@usainbolt,Gold for Jamaica 🇯🇲 in Female hurdles https://t.co/EcqeIWMm54 +04/12/2018,Sports_celeb,@usainbolt,“There is no Wealth without Health” @SimmsRicky rickysimms rickysimms #NJ #GoldCoast2018… https://t.co/9h8RQ6ZvUh +04/12/2018,Sports_celeb,@usainbolt,"RT @thecgf: COMMONWEALTH CHAMP USAIN BOLT +“The Commonwealths are very, very important. Very important to the athletes and to the world. The…" +04/12/2018,Sports_celeb,@usainbolt,Press conference #GoldCoast2018 #CommonwealthGames https://t.co/9mnaD0bB80 +04/12/2018,Sports_celeb,@usainbolt,😂😂😂😂 https://t.co/6VeJQMhL3n +04/12/2018,Sports_celeb,@usainbolt,5G means HD Gaming on the go @Optus #GoldCoast2018 #CommonwealthGames https://t.co/jFtbpGe0lW +04/12/2018,Sports_celeb,@usainbolt,My team always working @SimmsRicky #NJ #GoldCoast2018 #CommonwealthGames https://t.co/ta7Rpd0WBX +04/11/2018,Sports_celeb,@usainbolt,RT @7NewsMelbourne: .@usainbolt has arrived on the Gold Coast as an official Games ambassador. Bolt will spend the week watching his fellow… +04/10/2018,Sports_celeb,@usainbolt,"RT @sunriseon7: Breaking news: Usain Bolt has arrived on the Gold Coast for #GC2018 + +@MarkBeretta will be chatting to him this week! https:…" +04/10/2018,Sports_celeb,@usainbolt,Commonwealth Games #GoldCoast https://t.co/DeP6P0iUoK +04/10/2018,Sports_celeb,@usainbolt,"RT @borobi2018: What's cooler than cool? Welcoming the world's fastest man, and my new mate, @usainbolt to the Gold Coast! ⚡⚡⚡ #BOROBI #SHA…" +04/10/2018,Sports_celeb,@usainbolt,Game time https://t.co/3OPCiGHI1P +04/09/2018,Sports_celeb,@usainbolt,"Well done @YohanBlake +Keep putting in the work. You know your journey 🙌🏽🙌🏽" +04/09/2018,Sports_celeb,@usainbolt,Congrats @AkaniSimbine #Gold +04/07/2018,Sports_celeb,@usainbolt,Great win my team @ManUtd 🙌🏽🙌🏽 +04/07/2018,Sports_celeb,@usainbolt,Come on mi team @ManUtd +04/07/2018,Sports_celeb,@usainbolt,Brilliant save me keeper @ManUtd +04/07/2018,Sports_celeb,@usainbolt,Goaall @paulpogba @ManUtd 🙌🏽🙌🏽 +04/06/2018,Sports_celeb,@usainbolt,"RT @toniterp: This is a description of an Olympic race with @usainbolt such a good representation. JSL is so beautiful 😍, the visual repre…" +04/05/2018,Sports_celeb,@usainbolt,🙌🏽🙌🏽🙌🏽🔥 https://t.co/AMETY01Yjg +04/01/2018,Sports_celeb,@usainbolt,The Party is @FunlandJamaica this Easter from 10 am- 7pm April 1-April2nd #funland #Funlandjamaica #familyplayground https://t.co/FEeCU1dBC3 +03/31/2018,Sports_celeb,@usainbolt,My type of Saturday https://t.co/RBTD6hz7hu +03/29/2018,Sports_celeb,@usainbolt,Too quick for me 😂😂 https://t.co/nxRHmBzyfW +03/29/2018,Sports_celeb,@usainbolt,"Bro for life #Repost @princespearmon +・・・ +Who needs enemies when you have friends like these lol.… https://t.co/S7ASRdynQI" +03/29/2018,Sports_celeb,@usainbolt,Breeze @hdcutzuk #fresh #NewLevels https://t.co/16UowWQWV4 +03/29/2018,Sports_celeb,@usainbolt,The Story Teller 🙌🏽🙌🏽 https://t.co/K1wLHrAqKI +03/29/2018,Sports_celeb,@usainbolt,"#Repost ateamlifestyle +・・・ +CANDY COATED X A TEAM +🇹🇹 x 🇯🇲 +. +YUH WAH SPEED?! +. +Carnival Thursday… https://t.co/T67rY3Vx9J" +03/29/2018,Sports_celeb,@usainbolt,Prepping 🙌🏽 https://t.co/wsx30Cgp8h +03/28/2018,Sports_celeb,@usainbolt,Check out @FunlandJamaica post GSAT party on March 30th!! Funland is open March 30th-April 2nd. Are you ready to ha… https://t.co/o2rmtjDqAG +03/28/2018,Sports_celeb,@usainbolt,Always bringing a little of home with me when I’m on the road. I have to bring the good stuff 🔥🔥🔥🔥 https://t.co/yTuJiDvp4n +03/28/2018,Sports_celeb,@usainbolt,Too often we let people tell us we can’t. Well I can and I Will 🙏🏾🙏🏾#DontThinkLimits… https://t.co/oKbp9CK8D7 +03/26/2018,Sports_celeb,@usainbolt,"Level up your personal and business branding with our dynamic marketing services. + +#88elevate +#GetElevated… https://t.co/4uQ1GMI95C" +03/26/2018,Sports_celeb,@usainbolt,#TeamUsain is taking shape @GordonRamsay @piresrobert7 #ClarenceSeedorf .... more big names coming soon! Who you go… https://t.co/5kFJFkvBQz +03/24/2018,Sports_celeb,@usainbolt,"RT @Enertor: ENERTOR Performance Insoles are designed by leading Podiatrists and made with D3O impact protection technology. + +https://t.co…" +03/24/2018,Sports_celeb,@usainbolt,RT @KjeldNuis: Got it 🍾🙏🏻 @usainbolt https://t.co/Us01aO37ry +03/23/2018,Sports_celeb,@usainbolt,New Levels @leonbailey 🇯🇲🇯🇲 https://t.co/dlt1E4lq4k +03/23/2018,Sports_celeb,@usainbolt,Yard man link up @leonbailey #NewLevels 🇯🇲🇯🇲 @ Dortmund https://t.co/FrRBhmYVYN +03/23/2018,Sports_celeb,@usainbolt,New Levels #NextJourney https://t.co/aeOilbnSq9 +03/23/2018,Sports_celeb,@usainbolt,New Levels @pumafootball @bvb 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/UtfJzxdimj +03/23/2018,Sports_celeb,@usainbolt,RT @PACESportsMgmt: Video of Usain’s headed goal at @BVB training https://t.co/YtDeojGpsq +03/23/2018,Sports_celeb,@usainbolt,https://t.co/MfHiGFCicM +03/23/2018,Sports_celeb,@usainbolt,New Levels https://t.co/Y9x86iQrMt +03/23/2018,Sports_celeb,@usainbolt,"RT @BVB: 🗯 @usainbolt: ""It was good! I had fun with the guys, they were very welcoming."" #BVBolt https://t.co/FTkdDyOw7e" +03/23/2018,Sports_celeb,@usainbolt,RT @BVB: ⚽️🏃‍♂️ @usainbolt from the spot 😉 #BVBolt https://t.co/ZyHr9FThjL +03/22/2018,Sports_celeb,@usainbolt,Training day one ✅ @BVB @pumafootball #NewLevels https://t.co/OLfbI2wcwS +03/22/2018,Sports_celeb,@usainbolt,First day of training #BVBOLT #NewLevels @bvb @pumafootball @ Dortmund https://t.co/dN6LvLHcx3 +03/22/2018,Sports_celeb,@usainbolt,First day of training #BVBOLT #NewLevels @bvb09 @pumafootball https://t.co/OmXuhFGf4e +03/22/2018,Sports_celeb,@usainbolt,RT @BVB: 🏃‍♂️ @usainbolt getting ready to train with Borussia Dortmund. #BVBolt https://t.co/KiOlARt5Pv +03/22/2018,Sports_celeb,@usainbolt,New Levels #BVBOLT https://t.co/Uew4euNxYq +03/22/2018,Sports_celeb,@usainbolt,"RT @pumafootball: They said it wouldn’t happen. 👀⚡️ +@UsainBolt @BVB @officialpes +#NewLevels #PUMAFuture https://t.co/WpjE16CHrE" +03/22/2018,Sports_celeb,@usainbolt,"BVB, get ready for Friday. #BVBOLT #NewLevels @bvb @pumafootball https://t.co/jHpaYskkMP" +03/21/2018,Sports_celeb,@usainbolt,New Levels 🙌🏽🙌🏽⚽️⚽️ https://t.co/lXpL5zb5HF +03/21/2018,Sports_celeb,@usainbolt,New Levels 🙌🏽🙌🏽 https://t.co/8LVot1plBJ +03/21/2018,Sports_celeb,@usainbolt,"Great day @hublot match of friendship in Basel 🙌🏽🙌🏽⚽️⚽️ @ Basel, Switzerland https://t.co/gfxaYC0PQo" +03/21/2018,Sports_celeb,@usainbolt,https://t.co/FCSt1bBYQc +03/21/2018,Sports_celeb,@usainbolt,"Great day @Hublot match of friendship in Basel, Switzerland https://t.co/XAnFe393dI" +03/21/2018,Sports_celeb,@usainbolt,"BVB, get ready for Friday. #BVBOLT #NewLevels @bvb09 @pumafootball https://t.co/rO1jNPLtrA" +03/21/2018,Sports_celeb,@usainbolt,"There are moments in football that are eternal, and @Hublot is writing one. #HublotLovesFootball #Baselworld… https://t.co/RJwC56ozAA" +03/21/2018,Sports_celeb,@usainbolt,"There are moments in football that are eternal, and @hublot is writing one. #HublotLovesFootball… https://t.co/hkP4PaB5s4" +03/21/2018,Sports_celeb,@usainbolt,A wonder what we discussing ⚽️josemourinho @hublot https://t.co/zq7l4pSyLJ +03/21/2018,Sports_celeb,@usainbolt,You can image what we discussing #JoseMourinho https://t.co/g1jD8c6iRs +03/21/2018,Sports_celeb,@usainbolt,Left foot specialist ⚽️ https://t.co/Y7xH7Xy3mB +03/21/2018,Sports_celeb,@usainbolt,Football tips from the great #DiegoMaradona https://t.co/FeqS8mie3Y +03/21/2018,Sports_celeb,@usainbolt,Football tips from the great maradona ⚽️🙌🏽 https://t.co/EiwoHs9jj8 +03/21/2018,Sports_celeb,@usainbolt,"March 21, 2018 in Zurich ❄️❄️ https://t.co/vWne8CadE4" +03/20/2018,Sports_celeb,@usainbolt,Australia see you in a few weeks. #TeamJamaica we ready. Are you? #GC2018 https://t.co/YtUWJ8abUR +03/20/2018,Sports_celeb,@usainbolt,From day one they have always been telling me I can’t. #LetsGo #TeamBolt #AnythingIsPossible #DontThinkLimits https://t.co/bQ3sB7XRCo +03/20/2018,Sports_celeb,@usainbolt,From day one they have always been telling me I can’t. #LetsGo #TeamBolt #AnythingIsPossible… https://t.co/0UQ3noZi8g +03/20/2018,Sports_celeb,@usainbolt,🔥🔥🔥🔥 https://t.co/6nTdM2mfjb +03/20/2018,Sports_celeb,@usainbolt,Ready!!!!!! 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/isD8jCUdxC +03/20/2018,Sports_celeb,@usainbolt,1 day to go until #HublotBaselworld 2018! Follow me for an historic match with a line-up that football has never se… https://t.co/wTipzGCoZq +03/18/2018,Sports_celeb,@usainbolt,RT @anneliesvgeest: Hey @usainbolt see this at the @Paralympics ? @jeroenn99 won a gold medale and did your move on medale plaza. https://t… +03/17/2018,Sports_celeb,@usainbolt,Saturday Vibe 🙌🏽🙌🏽 https://t.co/768ApkL8hc +03/16/2018,Sports_celeb,@usainbolt,"Welcome to the @socceraid World XI Gordon. Stay fit, we need you! 🙌 #SoccerAid #TeamUsain https://t.co/2ZWJXlLxwg" +03/16/2018,Sports_celeb,@usainbolt,Sports Day with my godson 🙌🏽🙌🏽 https://t.co/4s0q7ExuzS +06/18/2018,Sports_celeb,@blakegriffin23,@FronQB9 @PardonMyTake i can’t believe i forgot that one +06/17/2018,Sports_celeb,@blakegriffin23,@zerkusberkus haha my apologies. there’s always next time +05/31/2018,Sports_celeb,@blakegriffin23,"RT @TwitterSports: Relationship status: + +⚪️ Single + +⚪️ Taken + +⚪️ It's complicated + +🔘 Shooting my shot on #NBATwitter https://t.co/k2lMp…" +05/09/2018,Sports_celeb,@blakegriffin23,RT @johnlevenstein: Tomorrow at midnight my podcast with @MaryKoCo will finally “drop” and @MindyFurano was kind enough to cut together a p… +04/28/2018,Sports_celeb,@blakegriffin23,and are we positive that’s not me?? https://t.co/QZNwF2Gls1 +04/13/2018,Sports_celeb,@blakegriffin23,congrats @_ajawilson22 !!!! aces got a great one https://t.co/eTcHqhvY8w +04/11/2018,Sports_celeb,@blakegriffin23,bro it was like 8 years ago.... ohhhhh i get it https://t.co/b3quTj2JvJ +04/08/2018,Sports_celeb,@blakegriffin23,man steven adams is so underrated +04/03/2018,Sports_celeb,@blakegriffin23,divincenzo holding it down for the reddish heads. i see you +04/02/2018,Sports_celeb,@blakegriffin23,@YourOldDroog my bad G. i owe you +03/16/2018,Sports_celeb,@blakegriffin23,@haileybaldwin thank you my sweet!! +03/01/2018,Sports_celeb,@blakegriffin23,https://t.co/aHM33Z6TXK https://t.co/vARb01bpkF +02/27/2018,Sports_celeb,@blakegriffin23,"ready to blast off. +3.1.18 https://t.co/FB7tO2zL3H" +02/12/2018,Sports_celeb,@blakegriffin23,good luck to the MACU men’s hoops team tonight!!!! https://t.co/aSZeNpXoEY +02/04/2018,Sports_celeb,@blakegriffin23,👀 unreal @AndreDrummond https://t.co/ZoGOfyb7eS +02/02/2018,Sports_celeb,@blakegriffin23,"thanks, fam! https://t.co/I0GBaSDW11" +02/01/2018,Sports_celeb,@blakegriffin23,"my guy, thank you. glad to be here #detroitbasketball https://t.co/BUb4pOG2TW" +01/31/2018,Sports_celeb,@blakegriffin23,you were a great teammate and an even better person. rest in peace my friend https://t.co/kjUapQXw5W +01/31/2018,Sports_celeb,@blakegriffin23,"congrats, @AndreDrummond well deserved!!! https://t.co/QxS7lwqOCF" +01/30/2018,Sports_celeb,@blakegriffin23,https://t.co/xVoNx2dW83 +01/30/2018,Sports_celeb,@blakegriffin23,https://t.co/1uoIZ0Sxcc +01/27/2018,Sports_celeb,@blakegriffin23,.@NBA don’t make the same mistake twice. my guy @TeamLou23 deserves to be in that all star game. numbers don’t lie. #gotolou +01/27/2018,Sports_celeb,@blakegriffin23,prayers up to @boogiecousins. hate to see that happen. come back stronger and better. +01/17/2018,Sports_celeb,@blakegriffin23,"Extremely proud to tip-off this partnership between the LA Clippers Foundation, Steve Ballmer, and @visiontolearn y… https://t.co/6ati2gcE4k" +01/17/2018,Sports_celeb,@blakegriffin23,@dekker yikes what? +01/16/2018,Sports_celeb,@blakegriffin23,https://t.co/BNAcs1Hfjh +01/12/2018,Sports_celeb,@blakegriffin23,"check out the trailer for this new movie i happen to be in, #TheFemaleBrain, in select theaters February 9th. https://t.co/jkko9Pfd4T" +01/11/2018,Sports_celeb,@blakegriffin23,#nbavote the man in the middle. @DeAndre walking double double +01/11/2018,Sports_celeb,@blakegriffin23,#nbavote sweet louuuuuu @teamlou23 #50ballll +12/16/2017,Sports_celeb,@blakegriffin23,These fires are affecting all of us. The Team Griffin Foundation and I are proud to support @EIFoundation SOCAL Fir… https://t.co/vnDiGXOBwf +12/14/2017,Sports_celeb,@blakegriffin23,moooooooooooooood https://t.co/hbV3XWo4P7 +12/09/2017,Sports_celeb,@blakegriffin23,what an awesome night. thank you to everyone who came to comedy. by blake and supported the Team… https://t.co/jrEnijYgST +12/09/2017,Sports_celeb,@blakegriffin23,comedy. by blake https://t.co/fOhW4tVtnP +12/02/2017,Sports_celeb,@blakegriffin23,RT @OBBPictures: We're. Back. Season 2 of #The5thQuarter is live with three new episodes now. Watch @blakegriffin32 @Kenny_Mayne @FunnyAsia… +12/01/2017,Sports_celeb,@blakegriffin23,"King vs. Kong... a rivalry for the ages and @OBBPictures was there to document. + +Season 2 of the #5thQuarter now o… https://t.co/rYy25bvVqe" +11/19/2017,Sports_celeb,@blakegriffin23,"RT @tcrock23: My boy @j_cowens just put this boy in a casket, my god.. check my reaction on the bench, I’m going nuts lol https://t.co/Ztv…" +11/17/2017,Sports_celeb,@blakegriffin23,Want to get on the scoreboard at the Staples Center? Upload your 15-second #superfan video at… https://t.co/BS8WJVpUq6 +11/09/2017,Sports_celeb,@blakegriffin23,is it pronounced a-kai or a-sigh-ee? https://t.co/neHxtQDBCh +10/25/2017,Sports_celeb,@blakegriffin23,game. clippers. https://t.co/NmmMkzIV15 +10/02/2017,Sports_celeb,@blakegriffin23,RT @patbev21: My boy @MilosTeodosic4 drops dimes. Told y'all!!!! +08/11/2017,Sports_celeb,@blakegriffin23,"New Wave uniform, ready to go Clipper Nation https://t.co/KICrRbAHch" +08/03/2017,Sports_celeb,@blakegriffin23,@rejectedjokes *mute +08/03/2017,Sports_celeb,@blakegriffin23,been dunkin' since the playground days https://t.co/QXWUm10NOe +07/31/2017,Sports_celeb,@blakegriffin23,"honestly, we should do away with championships too. seems dumb to me. participation trophies for everybody. don't @… https://t.co/p78VTsNGZg" +07/27/2017,Sports_celeb,@blakegriffin23,@ChandlerParsons @GoodmanESPN @TeamCP25 parsons from the top rope. my goodness +07/27/2017,Sports_celeb,@blakegriffin23,my #bestfriend @JoeMande has a new special on @netflix and it is truly special. please go watch and enjoy joe's hil… https://t.co/o7UpIRSjUZ +07/20/2017,Sports_celeb,@blakegriffin23,@rejectedjokes thanks for your #support if anybody knows about the #content game it's you. #contentking #nodaysoff +07/11/2017,Sports_celeb,@blakegriffin23,@rejectedjokes he's back!! +07/11/2017,Sports_celeb,@blakegriffin23,"well he did just ""knock that performance out of the park"" so uhhhh yeah maybe get off his back #haters #dale https://t.co/YJf9fi097d" +07/08/2017,Sports_celeb,@blakegriffin23,🙏🏼 +06/20/2017,Sports_celeb,@blakegriffin23,@ChrisF3105 i wish you could see the red mark on my forehead in that picture +06/07/2017,Sports_celeb,@blakegriffin23,congrats @ou_softball!!!! back to back +06/06/2017,Sports_celeb,@blakegriffin23,who is your least favorite friend/acquaintance? please @ them https://t.co/55NlSv6uGQ +06/06/2017,Sports_celeb,@blakegriffin23,fun to watch @ou_softball compete like that. one more but maybe less innings next time +06/02/2017,Sports_celeb,@blakegriffin23,".@edgarwright's new film ""Baby Driver"" is absolutely incredible. such a wild and fun ride. please watch and enjoy https://t.co/NhyC8U7wPS" +05/20/2017,Sports_celeb,@blakegriffin23,"nice try, guy who just got fired from a shampoo company https://t.co/KnHVegZMDF" +05/19/2017,Sports_celeb,@blakegriffin23,"@Joeingles7 no, duh" +05/10/2017,Sports_celeb,@blakegriffin23,@CoachJGamblin go to sleep +04/12/2017,Sports_celeb,@blakegriffin23,Only a few more days to bid on Justice’s one-of-a-kind shoe! I'll match the highest donation for @ChildrensLA https://t.co/euZ25Jd7Nj +04/09/2017,Sports_celeb,@blakegriffin23,wow russ. give that man the mvp. +04/05/2017,Sports_celeb,@blakegriffin23,@_ajawilson22 @LAClippers i got you!!! +03/30/2017,Sports_celeb,@blakegriffin23,"RT @LAClippers: .@blakegriffin32 presents Justice with his own pair of ""Just 5's"" before today's game! (cc: @childrensla) https://t.co/j86L…" +03/29/2017,Sports_celeb,@blakegriffin23,"My guy Justice from CHLA & I teamed up & are proud to present our @Jumpman23 creation tonight- The “Just 5"" -… https://t.co/UGlZzvI7N0" +03/17/2017,Sports_celeb,@blakegriffin23,@JoeMande HBD bestie. it's time people know +03/17/2017,Sports_celeb,@blakegriffin23,@eriklogan_elo thanks E i appreciate it! +03/17/2017,Sports_celeb,@blakegriffin23,@MaalikWayns2 thanks young bul preciate it. keep grinding. +03/17/2017,Sports_celeb,@blakegriffin23,@tommychong @NBA thanks tommy!! +03/17/2017,Sports_celeb,@blakegriffin23,@bosnianbeast27 thanks homie. i appreciate it!! +03/06/2017,Sports_celeb,@blakegriffin23,@jordangretchen happy bdayyyyyy +03/01/2017,Sports_celeb,@blakegriffin23,@youngfollowill spider. anymore brain busters?! +02/10/2017,Sports_celeb,@blakegriffin23,"this is funny, smart, bold and sincere. please watch this and learn something. https://t.co/lsrIFcHWE3" +02/10/2017,Sports_celeb,@blakegriffin23,@lex_love12 hellooooooo +01/30/2017,Sports_celeb,@blakegriffin23,"Sometimes you need help stepping out of ur comfort zone, thanks for helping me see my potential. Be a #MentorIRL… https://t.co/RBUz62ugl3" +01/25/2017,Sports_celeb,@blakegriffin23,an incredible story from @jeffcapel who has been a mentor on and off the court. great coach and an even better pers… https://t.co/wbyX0dLehK +01/16/2017,Sports_celeb,@blakegriffin23,.@JCrossover #NBAVote +01/16/2017,Sports_celeb,@blakegriffin23,.@deandrejordan6 #NBAVote +01/08/2017,Sports_celeb,@blakegriffin23,@sydjohnson32 hiiiiiiii +01/08/2017,Sports_celeb,@blakegriffin23,@maknoj thanks man. it's a safety protocol +01/06/2017,Sports_celeb,@blakegriffin23,great stuff https://t.co/P8lTB0tfTL +01/05/2017,Sports_celeb,@blakegriffin23,🧀 https://t.co/W8dlL7CP79 +01/02/2017,Sports_celeb,@blakegriffin23,RT @LAClippers: RETWEET to vote for @deandrejordan6. #NBAVote ✅🗳 https://t.co/6WsNGzLQBc +01/01/2017,Sports_celeb,@blakegriffin23,"RT @kibblesmith: Population of Twitter: + +1. People making jokes +2. People reporting news +3. People taking all jokes literally and all news…" +12/25/2016,Sports_celeb,@blakegriffin23,@RickGlassman thanks g-ma glass +12/23/2016,Sports_celeb,@blakegriffin23,@JensenClan88 thank you sir +12/23/2016,Sports_celeb,@blakegriffin23,"what I learned from my friend, Wilson https://t.co/yU5ExDnfve" +12/23/2016,Sports_celeb,@blakegriffin23,great team win. 2nd unit was huuuuuge. let's keep it rolling! +12/15/2016,Sports_celeb,@blakegriffin23,the sports world lost a legend today. rest in peace Mr. Craig Sager +12/03/2016,Sports_celeb,@blakegriffin23,"squad. +@jumpman23 https://t.co/QceSIq1cK4" +12/03/2016,Sports_celeb,@blakegriffin23,boomer sooner x big 12 champs +12/02/2016,Sports_celeb,@blakegriffin23,"These guys again 🙄 +Time to take back our courts, @Jumpman23 https://t.co/dW1vyBLlCu" +12/01/2016,Sports_celeb,@blakegriffin23,@morgan_murphy ugh +12/01/2016,Sports_celeb,@blakegriffin23,"@morgan_murphy sorry for the mix up, it all makes sense now. showing the full arsenal with the mid range and finishing at the rim. bravo." +11/30/2016,Sports_celeb,@blakegriffin23,@morgan_murphy @nickthune very happy for you and the spice girls. do we have video evidence of highly contested? +11/29/2016,Sports_celeb,@blakegriffin23,@danlevy @morgan_murphy @nickthune why does that look like harry potter and john c reilly's love child? +11/29/2016,Sports_celeb,@blakegriffin23,"no prob broski. posted to my myspace page + added you to my ""top 8"" i'll dm you venmo account info. cc:… https://t.co/zKNY48Xk9I" +11/24/2016,Sports_celeb,@blakegriffin23,"RT @NFL: .@blakegriffin32 can sling it! 👀 + +@LAClippers are in the house for #WASvsDAL! https://t.co/qCi5ql45Qv" +11/17/2016,Sports_celeb,@blakegriffin23,"me and @deandrejordan6 helping Ketchup and Mustard work through a couples quarrel... +introduction from @google… https://t.co/GOaRmMsEnF" +11/16/2016,Sports_celeb,@blakegriffin23,they're alive!! it'll all make sense tomorrow when @google drops a new film #BeADuo #ad https://t.co/XT08WCnNAx +11/14/2016,Sports_celeb,@blakegriffin23,"C’mon @deandrejordan6, you know you see me! #BeADuo #ad https://t.co/xCNH2gGlVc" +11/14/2016,Sports_celeb,@blakegriffin23,"@danlevy you, me. me, you.. does it even matter?" +11/13/2016,Sports_celeb,@blakegriffin23,here's a sweet pic of me doing the #mannequinchallenge midgame. sorry i can't find the video but… https://t.co/nSdKKrm28s +10/28/2016,Sports_celeb,@blakegriffin23,@SachaKljestan thanks brother i appreciate it. see you soon +10/25/2016,Sports_celeb,@blakegriffin23,the best ever https://t.co/0GiT9HEVyK +10/25/2016,Sports_celeb,@blakegriffin23,cool how you reminded us casually. happy bday bro!! RT @ChandlerParsons: NBA back and my birthday?? Doesn't get much better! +10/24/2016,Sports_celeb,@blakegriffin23,"@DominicannBoyy it's called a ""penalty shootout"" thanks for trying though" +10/24/2016,Sports_celeb,@blakegriffin23,they should have just had both kickers do a soccer-style shootout for the win +10/24/2016,Sports_celeb,@blakegriffin23,@WhitneyCummings @kevingchristy ugh +10/17/2016,Sports_celeb,@blakegriffin23,@snerko do it. i dare you... +10/17/2016,Sports_celeb,@blakegriffin23,@bigcheefjoseph sounds pretty enticing but a little vague on the #deets +10/16/2016,Sports_celeb,@blakegriffin23,@nickthune hahahaha shipping and HANDLING. i get it. +10/12/2016,Sports_celeb,@blakegriffin23,@treykerby @NBATV @TheStarters oh it's on like donkey kong #cballin +10/10/2016,Sports_celeb,@blakegriffin23,@_brendaliliana sorry for the confusion +10/10/2016,Sports_celeb,@blakegriffin23,@katienolan but wait if there's a halftime they would go to their locker rooms right?? +10/10/2016,Sports_celeb,@blakegriffin23,All this heavy breathing seems more locker room-esque than anything #debate +09/25/2016,Sports_celeb,@blakegriffin23,I guess it's easy to assume you made the list of experts. congrats on being right though! https://t.co/SKKhQSazHV https://t.co/LU9KSco3cS +09/23/2016,Sports_celeb,@blakegriffin23,@chrissyteigen thank you. i've never gotten 3 thumbs up before! +09/23/2016,Sports_celeb,@blakegriffin23,To Clippers Fans https://t.co/Z40kQBck1p +09/22/2016,Sports_celeb,@blakegriffin23,@WhitneyCummings ugh i know right?! +09/22/2016,Sports_celeb,@blakegriffin23,@DanWoikeSports thanks homie +09/22/2016,Sports_celeb,@blakegriffin23,"oh you know, just a couple of buddies hangin' out @google Duo https://t.co/ziwSNJ2AYd" +09/22/2016,Sports_celeb,@blakegriffin23,@GabGuerriero_ happy birthday!!! +09/20/2016,Sports_celeb,@blakegriffin23,i watched a documentary on tony robbins and read a bunch of ghandi quotes and then this… https://t.co/4GAAoeaqMC +09/20/2016,Sports_celeb,@blakegriffin23,30 Days in LA. Let me be your guide. @RBSoundSelect https://t.co/GKAItCe6Ec +09/14/2016,Sports_celeb,@blakegriffin23,"@JennyJohnsonHi5 but but but how else are we gonna tell them apart, Jenny?!?!" +09/08/2016,Sports_celeb,@blakegriffin23,@NightChanges125 @ayyditullio I'm not on a flight..... +09/06/2016,Sports_celeb,@blakegriffin23,The perfect combo ...Enjoyed the collab with @jamesroperart to bring my game and #SuperFly5 to life https://t.co/8rP4YIcgaX +08/30/2016,Sports_celeb,@blakegriffin23,@BahamasMusic @JJRedick count me in +08/29/2016,Sports_celeb,@blakegriffin23,@juice_916 @JJRedick that's one I wish I would have said. such a great set. +08/29/2016,Sports_celeb,@blakegriffin23,had the pleasure of being a guest on the multi-talented @JJRedick podcast. listen to us talk about things here https://t.co/0qlJ0tZ4aQ +08/29/2016,Sports_celeb,@blakegriffin23,@representclipps @KevinHart4real he definitely is but picking 4 isn't easy. gotta pay respects to the older guys who paved the way too. +08/28/2016,Sports_celeb,@blakegriffin23,"RT @OU_MBBall: 2 Players Of The Years can create quite the autograph line. + +Great turnout from #SoonerNation today https://t.co/tj5ngBxwD8" +08/28/2016,Sports_celeb,@blakegriffin23,RT @OU_MBBall: Pregame handshake between the coaches. https://t.co/gbRXg0sl86 +08/23/2016,Sports_celeb,@blakegriffin23,@PeterMehlman @Barryathree it's cool @JCrossover is my favorite clipper too +08/16/2016,Sports_celeb,@blakegriffin23,@thesulk I don't do business with kubo anymore. dude gave me a 1 star rating on eBay. and that was BEFORE he was a Hollywood star +08/12/2016,Sports_celeb,@blakegriffin23,"everybody check out my guy @GodfreyComedian special on showtime. he told me to say ""it's really really good"" https://t.co/X8xlpDXWDM" +08/08/2016,Sports_celeb,@blakegriffin23,"RT @JoeMande: Very excited to release my latest music video for @LifeOfDesiigner new 23-second song, ""Tea, Meat, Turnip."" https://t.co/PKV5…" +08/07/2016,Sports_celeb,@blakegriffin23,@rrivero I wish. I still think about it too. +08/03/2016,Sports_celeb,@blakegriffin23,"@SurelyYouJester BEHIND ME, bruh!" +08/03/2016,Sports_celeb,@blakegriffin23,the 80 year old lady paying w/ exact change and coupons behind me in line is pissed bc the credit card chip reader is taking too long +08/02/2016,Sports_celeb,@blakegriffin23,sources gonna source. #sources https://t.co/hKQ3SBR4FY +07/17/2016,Sports_celeb,@blakegriffin23,"RT @davidjonesusa: A recent post from Officer Montrell Jackson, who was shot & killed today in #BatonRouge... I'm in tears man. Jesus. http…" +07/16/2016,Sports_celeb,@blakegriffin23,"@rejectedjokes it's way less messy, man. #try it before you #knock it" +07/16/2016,Sports_celeb,@blakegriffin23,@DanWoikeSports congrats man. didn't you know you had a girlfriend. +07/15/2016,Sports_celeb,@blakegriffin23,@dekker @PardonMyTake #blessed #soreloser #nice +07/11/2016,Sports_celeb,@blakegriffin23,Congrats to the best power forward to ever play the game. It was truly an honor. Winner above all else. #thankyouTD https://t.co/cXAxvKk8z4 +07/11/2016,Sports_celeb,@blakegriffin23,@chrisdelia @nealbrennan never doubted you for a second +07/02/2016,Sports_celeb,@blakegriffin23,"RT @Rachel__Nichols: Guys. +ESPN/TNT just paid the NBA $24 BILLION. Either the owners keep nearly All of it, or half goes to the players. +T…" +07/01/2016,Sports_celeb,@blakegriffin23,"the fact that nobody has legally changed their name to ""sources"" and taken credit for every breaking sports story is insane." +06/30/2016,Sports_celeb,@blakegriffin23,@GabeIkard Jumpman +06/29/2016,Sports_celeb,@blakegriffin23,@jordanzhu @MrSilverScott @MrDrewScott geat show +06/29/2016,Sports_celeb,@blakegriffin23,"@GabeIkard @dekker they say ""don't meet your heroes"" but I'll make an exception" +06/29/2016,Sports_celeb,@blakegriffin23,"sorry, Sam. just letting you know my stance on hgtv's lineup. https://t.co/OJR2Ihtewu" +06/29/2016,Sports_celeb,@blakegriffin23,@dekker fixer upper > flip or flop +06/24/2016,Sports_celeb,@blakegriffin23,Congrats to @buddyhield the Pelicans got a good one. +06/23/2016,Sports_celeb,@blakegriffin23,@dougmcd3 @Joeingles7 a kid named Ben Simmons... not many people know about him but I think he's gonna be good. +06/23/2016,Sports_celeb,@blakegriffin23,@Joeingles7 me +06/22/2016,Sports_celeb,@blakegriffin23,"RT @HYPEBEAST: .@Jumpman23 introduces @blakegriffin32's SuperFly 5s in a trio of colorways. +https://t.co/6VJ5m8v5wJ https://t.co/D1PLhz8gdQ" +06/22/2016,Sports_celeb,@blakegriffin23,"RT @Jumpman23: High flyer. + +Introducing the Jordan #SuperFly5, inspired by @BlakeGriffin32's versatile skill set. +https://t.co/VUqWdZyeMq" +06/20/2016,Sports_celeb,@blakegriffin23,"unbelievable series to watch, congrats to cleveland. very well deserved. lebron and kyrie were next level good." +06/13/2016,Sports_celeb,@blakegriffin23,big thank you @Zegna for a great evening to benefit #TeamGriffin @TeamGriffinEYBL https://t.co/pqKuGPMZMJ +06/13/2016,Sports_celeb,@blakegriffin23,@RonFunches hello Ron! +06/09/2016,Sports_celeb,@blakegriffin23,"@SavedbytheBelzz @PardonMyTake @BarstoolBigCat it's still a long series, my friend" +06/07/2016,Sports_celeb,@blakegriffin23,@JakobeWayne real recognize real +05/31/2016,Sports_celeb,@blakegriffin23,everybody please vote for my guy @dfranks24 team.. https://t.co/sc89kpeZDZ +05/30/2016,Sports_celeb,@blakegriffin23,@marquisgodwin_ good luck to you bro. keep hoopin. +05/29/2016,Sports_celeb,@blakegriffin23,@GabeIkard team pup n suds > team x-bladz +05/29/2016,Sports_celeb,@blakegriffin23,big fan of zelda. even bigger fan of hamilton now. https://t.co/pZBVFzqMFV +05/26/2016,Sports_celeb,@blakegriffin23,"The #RedNoseDay Special is LIVE Tonight at 9/8c on @NBC. Wear your red nose, tune in, & donate! https://t.co/y5afJaxrHJ" +05/24/2016,Sports_celeb,@blakegriffin23,@jordancameron @connerRvernon yeah I do... Colby +05/24/2016,Sports_celeb,@blakegriffin23,@connerRvernon @jordancameron sounds like he's gettin beat like he stole somethin #embarrassing +05/24/2016,Sports_celeb,@blakegriffin23,@connerRvernon @jordancameron ya can't pull ya can't play #tonk +04/19/2016,Sports_celeb,@blakegriffin23,if you’re into apps and like the Earth support #AppsforEarth w/ @World_Wildlife & @AppStore. Go here: https://t.co/FIwIeuyXlI +04/19/2016,Sports_celeb,@blakegriffin23,@rejectedjokes oh that's awkward +04/19/2016,Sports_celeb,@blakegriffin23,forgot to tag you @JCrossover - congrats my man well deserved. #thejamalcrawfordaward https://t.co/3ir3yC93LK +04/18/2016,Sports_celeb,@blakegriffin23,3rd times a charm... +04/16/2016,Sports_celeb,@blakegriffin23,"@danlevy just start talking about ""eating clean"" and they'll accept you as one of their own." +04/16/2016,Sports_celeb,@blakegriffin23,@MintzPlasse Paul Pierce or Chris Paul? I just tell both of them you're in love with them. Thanks man. +04/14/2016,Sports_celeb,@blakegriffin23,"thank you for a lifetime of memories, motivation and inspiration. #mambaday https://t.co/bnZd5auLz3" +04/12/2016,Sports_celeb,@blakegriffin23,@GabGuerriero_ sorry I didn't see it in time! +04/09/2016,Sports_celeb,@blakegriffin23,wow great team win!! if @JCrossover isn't 6th man of the year I don't know who is! +04/06/2016,Sports_celeb,@blakegriffin23,my guy @MaalikWayns2 and @superNOVAtbt need your votes. go to https://t.co/k37wKNumJn and vote for #supernovatbt #supernova +04/04/2016,Sports_celeb,@blakegriffin23,@Atencio thanks man! I was pumped to be back out there. +04/03/2016,Sports_celeb,@blakegriffin23,"Still very very proud of this @OU_MBBall team. Had an amazing year and were so much fun to watch. Hats off to Nova, they're a great team." +04/03/2016,Sports_celeb,@blakegriffin23,@MaalikWayns2 haha I knew that tweet was coming. +03/31/2016,Sports_celeb,@blakegriffin23,thank you so much for having me. had a blast. Keep killing it!! cc: @ilazer https://t.co/iemxQt6X2H +03/26/2016,Sports_celeb,@blakegriffin23,"Let's go, boys. ⭕️🙌🏽." +03/24/2016,Sports_celeb,@blakegriffin23,@kellyoxford that's what you get for having morals. Keep it up and this followers leaving too. +03/24/2016,Sports_celeb,@blakegriffin23,@kumailn Twitter. Twitter is how we got to that point. +03/23/2016,Sports_celeb,@blakegriffin23,"""your whole appearance is a lie and it could never be true and if you really loved yourself then you would try and be you.” rip phife dawg" +03/22/2016,Sports_celeb,@blakegriffin23,Good luck to my guy @CoachJGamblin and his @MACUathletics team tonight in the naia national championship game. +03/21/2016,Sports_celeb,@blakegriffin23,@FSKPart3 @spencerhawes00 hahaha. sweet apartment spence #blessed #nbalife +03/21/2016,Sports_celeb,@blakegriffin23,@JoeMande who else? People wanna know +03/18/2016,Sports_celeb,@blakegriffin23,⭕️🙌🏽 https://t.co/QpBKlcEvUW +03/17/2016,Sports_celeb,@blakegriffin23,@CameronMoulene thanks man! +03/17/2016,Sports_celeb,@blakegriffin23,@JoeMande @nealbrennan joint bar mitzvah? Neal we can accommodate your schedule. Maybe do it at 3 Mics show after party? +03/17/2016,Sports_celeb,@blakegriffin23,@JoeMande is today your birthday? +03/17/2016,Sports_celeb,@blakegriffin23,@clipperdarrell thanks D!! +03/17/2016,Sports_celeb,@blakegriffin23,@tonyjefferson1 thanks brooo +03/17/2016,Sports_celeb,@blakegriffin23,@BarstoolNate these kids don't know how good they have it. thank you sir +03/17/2016,Sports_celeb,@blakegriffin23,Thanks for all the bday wishes everybody!! #latetwenties +06/08/2018,Sports_celeb,@kevinlove,Devastating. Prayers to all of his loved ones. So incredibly sad. https://t.co/4tmqtyjw4X +05/07/2018,Sports_celeb,@kevinlove,"RT @MensHealthMag: Introducing our #HowIGotHelp campaign for #MentalHealthMonth + +""The machismo attitude of stuffing your feelings down, or…" +05/06/2018,Sports_celeb,@kevinlove,Just posted a photo https://t.co/j1HRRTWwsn +04/30/2018,Sports_celeb,@kevinlove,The best thing I did for myself was to admit that I needed help. Know that your mental wellness matters just as muc… https://t.co/GriCzw2deB +04/13/2018,Sports_celeb,@kevinlove,Love what you’re doing my friend!!! You are helping so many 💪🏻💪🏻 https://t.co/LAtD7jAynC +04/12/2018,Sports_celeb,@kevinlove,"There’s so much power in articulating what you’re going through to another person, especially a professional. I wan… https://t.co/oT08tW6G8X" +04/02/2018,Sports_celeb,@kevinlove,@TheRock this is extremely powerful. Thank you. https://t.co/Po0vJIFJXU +04/02/2018,Sports_celeb,@kevinlove,Hahaha!!! Gotta give the people what they want. https://t.co/ap9c4uVVAy +03/31/2018,Sports_celeb,@kevinlove,So much respect and admiration for these 4 right here. Congrats on the HOF nods. https://t.co/givtajlLIg +03/30/2018,Sports_celeb,@kevinlove,@mcten Hell of an angle Dave. 🙌🏻🙌🏻 +03/28/2018,Sports_celeb,@kevinlove,"”Man, you are one pathetic loser!” -I’m Lloyd Christmas bro........new mood. https://t.co/c75EgRPOuF" +03/28/2018,Sports_celeb,@kevinlove,"Man, I appreciate you @ShockDoctor ...could have been so much worse if I wasn’t protected with your mouthguard. Tha… https://t.co/6rIsc0Deyo" +03/23/2018,Sports_celeb,@kevinlove,Everyone is going through something. Sat down with @Channing_Frye to talk about continuing the conversation around… https://t.co/FZNwkllMZd +03/22/2018,Sports_celeb,@kevinlove,"1,000 career 3’s tonight. It’s only right the pass came from @kingjames...on a night where he… https://t.co/EZ4y2s0O5s" +03/22/2018,Sports_celeb,@kevinlove,@KingJames 35pts 17dimes and 0 to’s...sheesh. +03/22/2018,Sports_celeb,@kevinlove,Congrats to @DwightHoward the new Mr. 30/30. Hell of a night!!! +03/21/2018,Sports_celeb,@kevinlove,"Looking forward to following The Rookie: Brendon Hartley. +https://t.co/XMa4IqAZWS" +03/20/2018,Sports_celeb,@kevinlove,Air Bud I f*cking respect you for this... https://t.co/yFHh5enbji +03/20/2018,Sports_celeb,@kevinlove,"Happy to be sharing the court with my brothers again!! Been too long. + +Never easy to get a W… https://t.co/ZuSSwrvQ9U" +03/18/2018,Sports_celeb,@kevinlove,RT @JmCalderon: Maybe the more difficult 1 to get after 12 days on the road but did it!Great effort tonight.After all the injuries it was a… +03/17/2018,Sports_celeb,@kevinlove,"Congrats to Coach K for notching the all time wins (1,099) in Division-1 history. Passed the… https://t.co/R0XJqvKzcc" +03/14/2018,Sports_celeb,@kevinlove,Congrats @JmCalderon on 5K assists. Only 9 active players to do so!! VAMOS!!!! +03/09/2018,Sports_celeb,@kevinlove,Just saw the play...prayers to Jalen Brown. 🙏🏻🙏🏻🙏🏻 +03/08/2018,Sports_celeb,@kevinlove,Strength via @bananarepublic #internationalwomensday 💪🏻💪🏻💪🏻 https://t.co/7nxRfqeOLY +03/08/2018,Sports_celeb,@kevinlove,"Man, @KingJames was on another level tonight!!! Sheesh." +03/08/2018,Sports_celeb,@kevinlove,"#EveryoneIsGoingThroughSomething +https://t.co/355HcQesfI https://t.co/EbPVlIRTw1" +03/07/2018,Sports_celeb,@kevinlove,And Women!!! 💪🏻💪🏻 https://t.co/tt7bTtQPhs +03/07/2018,Sports_celeb,@kevinlove,Grandma!!! 🙌🏻🙌🏻🙌🏻 https://t.co/LW3Wb0H43w +03/07/2018,Sports_celeb,@kevinlove,"Man, love and respect for opening that door for me. You’ve helped more people than you know!! https://t.co/cFjTsUHbIx" +03/07/2018,Sports_celeb,@kevinlove,"This one goes out to Grandma Carol, the star of the day. It’s funny how many of you wrote to me… https://t.co/MkJDQM9CJw" +03/06/2018,Sports_celeb,@kevinlove,"Wow...I can't even describe how grateful I am for the love and support. More than anything, it's been amazing to se… https://t.co/MbjK2LVq0y" +03/06/2018,Sports_celeb,@kevinlove,"RT @PlayersTribune: Earlier this season, @KevinLove had a panic attack. + +Now he wants to talk about it. https://t.co/U5TeITdUb3" +03/06/2018,Sports_celeb,@kevinlove,I’ve never been comfortable sharing much about myself. I thought about mental health as someone else’s problem. I’v… https://t.co/8M1NSb8G3A +03/05/2018,Sports_celeb,@kevinlove,Give me an Oscar nominated film from this year and why I must watch??? Have seen so few... +03/05/2018,Sports_celeb,@kevinlove,Spot on** https://t.co/B6WoS9XbGv +03/05/2018,Sports_celeb,@kevinlove,"Hey man, looks like you spent 2hrs shading in the upper lip. Got my left ear spot...well done. https://t.co/TzPfofdNIi" +03/05/2018,Sports_celeb,@kevinlove,The Shape of Water. Well done. #oscars +03/05/2018,Sports_celeb,@kevinlove,Frances McDormand. Straight passion. Just the best. Love. +03/05/2018,Sports_celeb,@kevinlove,Gary Oldman as Sir Winston Churchill. Darkest Hour. Just great...congrats!! #oscars +03/05/2018,Sports_celeb,@kevinlove,RT @JordanPeele: I just won an Oscar. WTF?!? +03/05/2018,Sports_celeb,@kevinlove,Kobe. #oscars +03/05/2018,Sports_celeb,@kevinlove,"Happy for Allison Janney she was brilliant in I, TONYA!!! #oscars" +03/01/2018,Sports_celeb,@kevinlove,RT @SInow: Kevin Love makes his own contribution to the home of champions https://t.co/JU8NCe09Sp +02/28/2018,Sports_celeb,@kevinlove,@KingJames Only player ever with +30K points +8K assists +8K rebounds ...ONLY PLAYER EVER. 👏🏼👏🏼👏🏼 +02/28/2018,Sports_celeb,@kevinlove,Shareef O’Neal to UCLA!!??? Oh it’s on now!!! 🔥🔥🔥 +02/25/2018,Sports_celeb,@kevinlove,As long as I can remember Phil Knight has always been someone I have idolized. Being a fellow… https://t.co/qrzpwEn9FG +02/24/2018,Sports_celeb,@kevinlove,@barstoolsports Still trying my best to fit in??? Check out this Primo 📦. Once again...jokes on you @barstoolsports https://t.co/uZiMQaDDfu +02/24/2018,Sports_celeb,@kevinlove,"The kids at St Jude have always given me inspiration and perspective. + +Oh, and “sports hate” is healthy...all good… https://t.co/zw4DaT34MT" +02/24/2018,Sports_celeb,@kevinlove,@StJude Strong!!! 💪🏻💪🏻💪🏻 https://t.co/uk26MBNJke +02/19/2018,Sports_celeb,@kevinlove,@GQMagazine Portrait from All-Star Saturday. 💪🏻💪🏻💪🏻 https://t.co/IiuwcnqX4o +02/19/2018,Sports_celeb,@kevinlove,"RT @cavs: From @kevinlove giving back during @NBACares All-Star Day of Service, to @Larrydn22’s incredible #VerizonDunk performance, and @K…" +02/19/2018,Sports_celeb,@kevinlove,The replay on that was 🔥🔥!! @Larrydn22 is gonna have the Q going crazy https://t.co/6KacDHZqFe +02/19/2018,Sports_celeb,@kevinlove,Me too...I appreciate you. Happy and healing. https://t.co/f4QhfcrCIc +02/19/2018,Sports_celeb,@kevinlove,An unbelievable @NBAAllStar weekend capped off with a #teamlebron win and another ASG MVP for @KingJames 😳😳😳 I see… https://t.co/2ROJwqDxXD +02/18/2018,Sports_celeb,@kevinlove,OT Thriller. What a finish on Senior Night for @UCLAMBB!! +02/18/2018,Sports_celeb,@kevinlove,"RT @UCLAAthletics: Great having @kevinlove back in Westwood. + +#GoBruins https://t.co/AJOfU0a3sU" +02/18/2018,Sports_celeb,@kevinlove,Forever a BRUIN. 10 years removed. https://t.co/XTwCkCZQl4 +02/17/2018,Sports_celeb,@kevinlove,"RT @SoleCollector: #SoleWatch: @KevinLove is healing up, but still rocked these Nike React Hyperdunk PEs during All-Star practice. https://…" +02/17/2018,Sports_celeb,@kevinlove,LA! I’ll be at @mountaindew’s Courtside Studios today! Come through to the corner of Pico and Figueroa at 145p to c… https://t.co/F6iq5zDjb1 +02/16/2018,Sports_celeb,@kevinlove,Got to hang out with @marriottrewards members at #NBAAllStar thanks to Marriott Rewards Moments. What experience wo… https://t.co/IPYFEOQutd +02/16/2018,Sports_celeb,@kevinlove,Last Night. Excel. All Smiles. 😬😬😬 https://t.co/S1trniiUy3 +02/16/2018,Sports_celeb,@kevinlove,"RT @NikeLA: ATTN MAKERS: Special appearance by @kevinlove at Nike the Grove. + +Join him today for a special customization experience at the…" +02/16/2018,Sports_celeb,@kevinlove,"Man, can’t wait to see you all!!!! https://t.co/Qsa5Vy9ThT" +02/16/2018,Sports_celeb,@kevinlove,👍🏻👍🏻💪🏻💪🏻 https://t.co/2WUzbUKXP2 +02/15/2018,Sports_celeb,@kevinlove,Sounds like a hell of a look https://t.co/9ZH4m3qM3H +02/15/2018,Sports_celeb,@kevinlove,Unacceptable...on it https://t.co/j9jq6hgsus +02/15/2018,Sports_celeb,@kevinlove,"Yes, I’m hiding it for the Gram/Twitter https://t.co/QjC7kt8qbz" +02/15/2018,Sports_celeb,@kevinlove,Excited to celebrate my upcoming collection BR/K.Love-18. Come see me today from 5-6 p.m. at @bananarepublic at The… https://t.co/DuGv15KZmU +02/14/2018,Sports_celeb,@kevinlove,Prayers to everyone in Parkland Florida 🙏🏻🙏🏻🙏🏻 +02/14/2018,Sports_celeb,@kevinlove,MINE!!! Happy Valentines Day @katebock. Thanks for always having my back!!! ❤️🦒 https://t.co/fpuMAJ3WLq +02/14/2018,Sports_celeb,@kevinlove,RT @esquire: .@kevinlove tells us how his new capsule collection with @BananaRepublic came together https://t.co/8h5wbqF0AH +02/14/2018,Sports_celeb,@kevinlove,Had to get it right lol 💪🏻💪🏻 https://t.co/SWC43xRPYF +02/14/2018,Sports_celeb,@kevinlove,"Yes, and be sure try online for taller sizes... https://t.co/T7yXbBkzki" +02/14/2018,Sports_celeb,@kevinlove,Get in on the action. BR/K.Love-18: The new collection I designed exclusively for @BananaRepublic . Dropping 9-18-2… https://t.co/9uDHCZA5fl +02/14/2018,Sports_celeb,@kevinlove,"Man, hell of a win heading into the All-Star break!! Can’t wait to be back on the floor with these boys!! 💪🏻💪🏻" +02/12/2018,Sports_celeb,@kevinlove,RT @dg_riff: Dan & Jennifer Gilbert have been leading the fight for @ChildrensTumor for years. Nick is the survivors’ survivor. He’ll beat… +02/12/2018,Sports_celeb,@kevinlove,"RT @cediosman: Great teamwork, big win! The Land is on 🔥 #AllForOne" +02/12/2018,Sports_celeb,@kevinlove,"RT @cavs: The new guys showed out tonight on #NBAonABC! +@JordanClarksons: 17 pts, 3 reb, 3-4 3PM, 2 stl +@rodneyhood: 15 pts, 3 reb, 3-6 3PM…" +02/10/2018,Sports_celeb,@kevinlove,"RT @UCLAAthletics: Vote UCLA for Best College for Sports Fans! + +🔗: https://t.co/lciilqqkoW + +#GoBruins https://t.co/vZRpNXtoXv" +02/08/2018,Sports_celeb,@kevinlove,I love and respect the Adelman family so much and am incredibly sad to hear about the passing of RJ. Prayers and co… https://t.co/v6fsLjMCpY +02/07/2018,Sports_celeb,@kevinlove,Hope @kporzee 🦄 is good. Just seeing the replay. Prayers 🙏🏻🙏🏻🙏🏻 +02/06/2018,Sports_celeb,@kevinlove,💪🏻💪🏻💪🏻 https://t.co/h3ldCJErxW +02/01/2018,Sports_celeb,@kevinlove,Starting the rehab process and making sure my foods are locked in with @g_plans. Appreciate you… https://t.co/XsJr4exlhD +02/01/2018,Sports_celeb,@kevinlove,Just saw the Isaiah Canaan news. Prayers for a speedy recovery. Been a tough time in the NBA for injuries. 🙏🏻🙏🏻🙏🏻 +01/31/2018,Sports_celeb,@kevinlove,Incredibly sad news to hear about Rasual Butler and his wife Leah. Prayers to both of their families through this tough time. +01/30/2018,Sports_celeb,@kevinlove,Happy Birthday @katebock!!! You are truly an amazing person. You bring light into so many… https://t.co/EttQPuXPI5 +01/29/2018,Sports_celeb,@kevinlove,"Congrats to @Channing_Frye on his 1,000 career 3’s!!!! 👌🏼👌🏼👌🏼" +01/28/2018,Sports_celeb,@kevinlove,"RT @Nike: Outplay yourself. + +@rogerfederer, Melbourne's defending champion and holder of 19 major titles, just beat his own record, by winn…" +01/27/2018,Sports_celeb,@kevinlove,Prayers to Andre Roberson!!! 🙏🏻🙏🏻 +01/27/2018,Sports_celeb,@kevinlove,@carmeloanthony 25K points. That’s a lot of buckets!!! 💪🏻💪🏻 +01/27/2018,Sports_celeb,@kevinlove,@Channing_Frye Cedi mortified 😂😂😂 +01/27/2018,Sports_celeb,@kevinlove,@unclejeffgreen 😡😡😡 https://t.co/gFdLxfnzpJ +01/27/2018,Sports_celeb,@kevinlove,Hope big fella @boogiecousins is ok!!! Prayers 👏🏼 +01/26/2018,Sports_celeb,@kevinlove,Bench Mob. #TeamLebron #NBAAllStar https://t.co/PqQdGVnahv +01/26/2018,Sports_celeb,@kevinlove,#TeamLebron 🔥🔥🔥 +01/25/2018,Sports_celeb,@kevinlove,Appreciate it @DwyaneWade 🙌🏼🙌🏼 https://t.co/3GxzDCw7sT +01/24/2018,Sports_celeb,@kevinlove,Honored to be selected to my 5th NBA All-Star game and be a part of this elite group headed to… https://t.co/9GZaO3z0tn +01/24/2018,Sports_celeb,@kevinlove,Appreciate it brother 🙌🏼🙌🏼 https://t.co/KHEZkiITAo +01/24/2018,Sports_celeb,@kevinlove,Would be special to end up on the same All-Star team as @KlayThompson ...our families have been friends for a long… https://t.co/IbLV3NrNno +01/24/2018,Sports_celeb,@kevinlove,#rp @nba @kingjames Rarefied Air. 30K and it doesn’t stop there. Crazy to be a part of history… https://t.co/NfRkWut0qj +01/18/2018,Sports_celeb,@kevinlove,Congrats Captain @kingjames!!!!! https://t.co/RAkfon5bAL +01/17/2018,Sports_celeb,@kevinlove,🙌🏼🙌🏼 https://t.co/jubWKHKs5z +01/15/2018,Sports_celeb,@kevinlove,Just posted a photo https://t.co/1kPzgrxJJh +01/11/2018,Sports_celeb,@kevinlove,RT @DwyaneWade: Kevin Love #NBAvote +01/11/2018,Sports_celeb,@kevinlove,RT @DwyaneWade: Lebron James #NBAVote +01/08/2018,Sports_celeb,@kevinlove,@DwyaneWade #nbavote +01/08/2018,Sports_celeb,@kevinlove,RT @isaiahthomas: LeBron James #NBAvote +01/08/2018,Sports_celeb,@kevinlove,RT @cavs: RETWEET to help send @IsaiahThomas to @NBAAllStar! #NBAVOTE https://t.co/NRROupIdRl +01/07/2018,Sports_celeb,@kevinlove,#NBAVote @DwyaneWade +01/07/2018,Sports_celeb,@kevinlove,#NBAVote @KingJames Appreciate the help boiiiiiiii 😳 https://t.co/R8WbUyTRxD +01/07/2018,Sports_celeb,@kevinlove,"#NBAVote @isaiahthomas just ordered 2 pairs of the Mighty IT PE’s!!! + +RT if you’re getting a pair." +01/07/2018,Sports_celeb,@kevinlove,Appreciate it brother!!! https://t.co/yqKVJVJ5pN +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: Isaiah Thomas #NBAVote https://t.co/SlGJIQd5El +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: LeBron James #NBAVote 😏 https://t.co/KbdE037Dml +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: Dwyane Wade #NBAVote https://t.co/mb7XZrjFew +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: Kevin Love || #NBAVote +🚨 RETWEET 🚨 https://t.co/N8ZznSIqyX" +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: LeBron James || #NBAVote +🚨 RETWEET 🚨 https://t.co/dnSrf97DR4" +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: Before you tackle your workout tonight, RETWEET to send @kevinlove to @NBAAllStar! + +BONUS: submit an #NBAVote here → https://t.co…" +12/22/2017,Sports_celeb,@kevinlove,Thanks to everyone at @JohnnieWalkerUS for helping me spread holiday cheer with personalized bottles of Johnnie Wal… https://t.co/M6tugVIJCb +12/13/2017,Sports_celeb,@kevinlove,"RT @cavs: These kids are an inspiration. + +#CavsCare https://t.co/p167QbhjDv" +12/06/2017,Sports_celeb,@kevinlove,Playing the blues with @bananarepublic  https://t.co/qtMRQ2Hwh6 #BRMens https://t.co/5x0o11wB4D +12/01/2017,Sports_celeb,@kevinlove,TPT DDP!! https://t.co/fx8pkfJJ63 +11/26/2017,Sports_celeb,@kevinlove,"Quality, fits and fabrics to power forward. @bananarepublic https://t.co/HRL6I7HZjz https://t.co/Br2sIB0MAj" +11/23/2017,Sports_celeb,@kevinlove,Just gonna leave this right here...Happy Thanksgiving everyone!!! #thanksgiving #thankful https://t.co/5bhqE3IC6G +11/08/2017,Sports_celeb,@kevinlove,Unparalleled craftsmanship and comfort. Suit up in the latest from @bananarepublic. https://t.co/HRL6I7qnUZ https://t.co/IvlxkI55P4 +11/01/2017,Sports_celeb,@kevinlove,Halloween Havoc. 🦂🎃💀🕸🔪💉#wolfpacsting #hollywoodhulkhogan #nwo https://t.co/08ALBb9mIu +10/25/2017,Sports_celeb,@kevinlove,"""We don't have a handshake yet......."" -Me https://t.co/5hJFRR7IuW" +10/19/2017,Sports_celeb,@kevinlove,RT @PlayersTribune: Another incredible night at the Big Shots and Little Stars fundraiser to benefit @flashesofhope and the @ChildrensTumor… +10/18/2017,Sports_celeb,@kevinlove,Opening Night. 10/17/17. 👌🏼👌🏼👌🏼 https://t.co/NHXLznb5dq +10/18/2017,Sports_celeb,@kevinlove,"RT @dg_riff: Please be part of this historic recovery process...#SonomaStrong...where the ""Love in the air is thicker than the smoke."" http…" +10/14/2017,Sports_celeb,@kevinlove,The Triangle will never be the same!!! 📐 So much can be said about RJ...but the truth is we… https://t.co/Zt4eb0NSl6 +10/08/2017,Sports_celeb,@kevinlove,"Connie Hawkins was the reason I chose to wear ""42"" as a young kid in Portland, Oregon. My father… https://t.co/PPpfW6CaN9" +10/05/2017,Sports_celeb,@kevinlove,"RT @PlayersTribune: On a Thursday night a few weeks ago in Cleveland, @a_miller48 realized something important about this @Indians team. ht…" +10/02/2017,Sports_celeb,@kevinlove,"RT @imanshumpert: Goodmorning, continue to keep love in our hearts. Spread love always. My heart out to all those affected by Vegas shootin…" +10/02/2017,Sports_celeb,@kevinlove,RT @KingJames: Pray for Vegas!! 🤦🏾‍♂️. What the hell is going on people!?!? My prayers sent to the heavens above for all the families 🙏🏾 ht… +09/28/2017,Sports_celeb,@kevinlove,A great dinner calls for the perfect suit @bananarepublic https://t.co/0BnO8jpqpD #BRMens https://t.co/ueV2086otk +09/26/2017,Sports_celeb,@kevinlove,Season X. Look forward to this journey!!! #backatit #cavs #season10 #brotherhood https://t.co/mOCQCA4vQ1 +09/23/2017,Sports_celeb,@kevinlove,RT @CP3: Please support my brother @carmeloanthony as he helps the people of Puerto Rico with their hurricane relief efforts #BiggerThanBas… +09/22/2017,Sports_celeb,@kevinlove,"Funny thing is-cause his friends are so dope, that kid will get plenty of primo 📦 as he gets older. Trust me. Jokes… https://t.co/owCLzTQ8aL" +09/21/2017,Sports_celeb,@kevinlove,9.21.17 @ UCSB - UC Santa Barbara https://t.co/fv933Z8Qlq +09/21/2017,Sports_celeb,@kevinlove,"From my good friend @jjbareapr +https://t.co/ax0hJ5ToV9" +09/11/2017,Sports_celeb,@kevinlove,Warmup w/ the Champ @rafaelnadal ...Congrats on the US Open win. 🏆X16 https://t.co/AuKzrJIx7Z +09/11/2017,Sports_celeb,@kevinlove,RT @PlayersTribune: Tim Duncan is asking for your help for the people of the U.S. Virgin Islands to steadily rebuild their lives: https://t… +09/09/2017,Sports_celeb,@kevinlove,HBD to @TheRealJRSmith my brother and all time favorite. He has become family thanks to CLE and is one of the best dudes I've ever met!! +09/08/2017,Sports_celeb,@kevinlove,Better late than never...appreciate all the birthday love and wishes yesterday!!! Truly appreciated and special. +09/06/2017,Sports_celeb,@kevinlove,Switched up the game...still got ugly on both sides 🃏🃏🃏 https://t.co/HO2kfDRdkM +09/06/2017,Sports_celeb,@kevinlove,United Salad/Portland Legends PG...only IT will understand. 🙌🏼🙌🏼 https://t.co/3QLq0A2vLT +09/06/2017,Sports_celeb,@kevinlove,Thought this was pretty spot on...thoughts??? 😎😎 #virgoseason #Sep7 https://t.co/TEZ4pKzoo9 +09/05/2017,Sports_celeb,@kevinlove,Nothing beats a perfectly tailored suit https://t.co/oe62Dr4wIc @bananarepublic #BRMens #BRxKevinLove https://t.co/mJa9gyzYRr +09/04/2017,Sports_celeb,@kevinlove,"Quick getaway to Napa now back to work!!! Man, that was a serious heat wave up… https://t.co/Wk0Wm1AZda" +09/04/2017,Sports_celeb,@kevinlove,Man Josh Rosen is a problem!!!!What a win...🔥🔥🔥 @UCLAFootball +08/28/2017,Sports_celeb,@kevinlove,The end of that #GameOfThonesfinale tho.........................👀👀👀 +08/28/2017,Sports_celeb,@kevinlove,RT @KingJames: #Pray4Houston🙏🏾 +08/27/2017,Sports_celeb,@kevinlove,When Conor talks way too fast>>>>> +08/27/2017,Sports_celeb,@kevinlove,#composure +08/27/2017,Sports_celeb,@kevinlove,Man a lot of heart!!! But 50-0....sheesh!! Respect for both of these guys. History. +08/27/2017,Sports_celeb,@kevinlove,I think Floyd won that round??? +08/27/2017,Sports_celeb,@kevinlove,Gives me chills just thinking about it...😂😂😂💀💀💀 https://t.co/XgdHkYKEDw +08/25/2017,Sports_celeb,@kevinlove,"#rp @katebock as they say in GOTs...""I wish you good fortune in the wars to come"". +Thank you… https://t.co/IuvFsbr6nN" +08/24/2017,Sports_celeb,@kevinlove,"Got to rally w/ world #1 tonight... +🇪🇸 vs 🇺🇸 🎾🎾🎾 @ New York, New York https://t.co/4prF6ho4pq" +08/10/2017,Sports_celeb,@kevinlove,My good friend Rob Mac!! https://t.co/Dq66nhYuoy +07/25/2017,Sports_celeb,@kevinlove,"RT @BananaRepublic: Pro athletes @kevinlove, @CJMcCollum, @DidiG18 & @M_Ryan02 showing you how they wear the new Rapid Movement Chino. http…" +07/25/2017,Sports_celeb,@kevinlove,The new Rapid Movement Chinos from @BananaRepublic are ready for anything and always keep their fit… https://t.co/xhYvLCsZYH +07/21/2017,Sports_celeb,@kevinlove,Life is amazing. No complaints. Things are a little peculiar. But no complaints. Now go kick some rocks 🙌🏼 https://t.co/Tz62YyGeYt +07/20/2017,Sports_celeb,@kevinlove,NBA Champion X3. 7 straight Finals. Came to work and proved his worth every day. A mentor to me.… https://t.co/qSncE50Ujc +07/17/2017,Sports_celeb,@kevinlove,I wish Oberyn Martell were still alive #GameOfThrones +07/16/2017,Sports_celeb,@kevinlove,THE MAN DIDN'T DROP A SET 🐐 +07/16/2017,Sports_celeb,@kevinlove,🏆X19 +07/16/2017,Sports_celeb,@kevinlove,☝🏼 more game +07/16/2017,Sports_celeb,@kevinlove,One set from #8 at #wimbledon +07/16/2017,Sports_celeb,@kevinlove,Rogggggggerrrrrrr 🙌🏼🙌🏼 +07/14/2017,Sports_celeb,@kevinlove,11th Wimbledon Final appearance!!! +07/14/2017,Sports_celeb,@kevinlove,Roger 🐐 +07/14/2017,Sports_celeb,@kevinlove,Tiebreak 2. Same result. 2 sets Fed. +07/14/2017,Sports_celeb,@kevinlove,How do you hit that shot??? Federer. Sheesh. #Wimbledon +07/13/2017,Sports_celeb,@kevinlove,"2007 + 📷: @slamonline https://t.co/2lz3E8U8Jd" +07/10/2017,Sports_celeb,@kevinlove,Incredible match. Hell of a battle. So much respect for Rafa. So much fight. Gotta be a great feeling for Muller. Composed the whole time. +07/10/2017,Sports_celeb,@kevinlove,Next level. 28 straight service holds hahaha https://t.co/B8UnbHM95a +07/10/2017,Sports_celeb,@kevinlove,EVERYTHING https://t.co/bf9TK2vlkb +07/10/2017,Sports_celeb,@kevinlove,Fed since day 1. But hard not to be a fan of this... https://t.co/Dui4J6zkte +07/10/2017,Sports_celeb,@kevinlove,Crazy..I would have done the same https://t.co/H4W7yUtSqd +07/10/2017,Sports_celeb,@kevinlove,Haha crowd has to stand to try and rid the reflection. 4hrs 19min and counting. +07/10/2017,Sports_celeb,@kevinlove,This Nadal vs Muller match has been incredible. Wow. +07/09/2017,Sports_celeb,@kevinlove,"Stay cool. #freetomove #saxxunderwear +😎🔥🔥🔥 https://t.co/Xgbj6bYQlP" +06/27/2017,Sports_celeb,@kevinlove,Congrats to @russwest44 for finishing his historic+unforgettable season with the #NBAMVP. Unbelievable what you've accomplished brother. +05/30/2017,Sports_celeb,@kevinlove,Just posted a photo https://t.co/zrxUeJIyvQ +05/26/2017,Sports_celeb,@kevinlove,"Still work to be done but last night was a good one. #defendtheland +(📷: jdg7873 + @cavs) https://t.co/gmyry6Fk6h" +05/26/2017,Sports_celeb,@kevinlove,Podium squad with the All Time Post Season Scoring Leader. Eastern Conference Champs X3!!! @ TD… https://t.co/mPps4yXvju +05/16/2017,Sports_celeb,@kevinlove,"RT @ShockDoctor: Good Luck in the Eastern Conference Finals @kevinlove 🔥 +#DefendtheLand #GuardYours https://t.co/JMZqmyU1DK" +05/10/2017,Sports_celeb,@kevinlove,Hangin' in a classic summer suit. Performance fiber & great tailoring-a perfect combo https://t.co/DDfTmyZjkj… https://t.co/a8cgA8gLzI +05/09/2017,Sports_celeb,@kevinlove,Need this framed. Just a great pic from Round 2!!! 👌🏼👌🏼👌🏼 https://t.co/dnlqWc89eq +04/25/2017,Sports_celeb,@kevinlove,A shirt that has non-iron technology and is 100% stretch cotton? perfect. https://t.co/KeotrwxoTF @BananaRepublic… https://t.co/zLpySjWRuE +04/14/2017,Sports_celeb,@kevinlove,"RT @PlayersTribune: During the toughest year of his life, @Channing_Frye found comfort in a familiar place. + +His @Cavs family: https://t.co…" +04/12/2017,Sports_celeb,@kevinlove,"Inspired by the Pacific NW, Clint Eastwood, & Americana launching my new collab w @saxxunderwear… https://t.co/brqvJSqZlM" +04/09/2017,Sports_celeb,@kevinlove,History made @russwest44!! Unbelievable season so far brother. 42 triple doubles...AND THE GAME WINNER HAHA!!! Wow. #WhyNot #42 #Day1 #Ern +04/03/2017,Sports_celeb,@kevinlove,Want to win some mouth guards? Just RT & Follow @ShockDoctor to win! #GuardYours https://t.co/lGAWtofs21 +04/01/2017,Sports_celeb,@kevinlove,Final Four selection: Oregon. Dad played there from 68-71. Nothing but great memories of taking… https://t.co/C6FuLBdKmm +03/25/2017,Sports_celeb,@kevinlove,"Wait...70!!! 👀👀👀👀👀👀 +SHEESH" +03/23/2017,Sports_celeb,@kevinlove,Happy Birthday to my brother @KyrieIrving ...can't wait to see what's next. Keep being you!! +03/21/2017,Sports_celeb,@kevinlove,On the move in clothes that work as hard as I do https://t.co/3fz2oj2fJj @BananaRepublic #BRxKevinLove https://t.co/ypHwwQd4yv +07/01/2018,Sports_celeb,@mistyonpointe,ktwil14 catehurlin @zhongjingfang Get ready for an incredible change and the start to a beautiful new chapter!… https://t.co/HWkuTPiKSV +06/30/2018,Sports_celeb,@mistyonpointe,RT @wkamaubell: Whoah! #PrivateSchoolNegro on @NetflixIsAJoke is Revolutionary Ballet Dancer Approved! #RBDA https://t.co/GfTzFLDWrR +06/30/2018,Sports_celeb,@mistyonpointe,Yasssss @wkamaubell Good stuff here. Loving the real and hilarious talk bout the mixed kid experience in USA in thi… https://t.co/IddBR8uJGN +06/30/2018,Sports_celeb,@mistyonpointe,"Yaaasssss girls! Congratulations on your promotions. Strength, perseverance, patience and sheer hard work, got thes… https://t.co/Hl58NydDoL" +06/30/2018,Sports_celeb,@mistyonpointe,"RT @UAnews: .@UnderArmour hosted workouts in LA this week and, boy, can our clothing really survive the heat. + +This @MistyonPointe Signatu…" +06/29/2018,Sports_celeb,@mistyonpointe,https://t.co/LvANJ2AZYr +06/28/2018,Sports_celeb,@mistyonpointe,"#Repost raphaelaneihausen +・・・ +Curtain call of Don Quixote, danced sublimely by mistyonpointe and @jeffreycirio. If… https://t.co/oNqVXvIfry" +06/27/2018,Sports_celeb,@mistyonpointe,"❤️❤️❤️ love you #Repost enriqueanayaofficial +・・・ +STORY TIME!! I remember when I first got to New York, the first pe… https://t.co/F5PO5ClhjA" +06/24/2018,Sports_celeb,@mistyonpointe,I love you and @courtneybvance like fam! @ImAngelaBassett thank you for coming out to support us!! @ABTBallet… https://t.co/2xsJh3u4i7 +06/24/2018,Sports_celeb,@mistyonpointe,🎉🎉🎉 #warriors #DubNation Ballerina Misty Copeland is a bigger Golden State Warriors fan than you https://t.co/p37FET0QJC +06/24/2018,Sports_celeb,@mistyonpointe,Misty Copeland lights up Met stage during ABT’s season: https://t.co/QzWQIiNLRi +06/21/2018,Sports_celeb,@mistyonpointe,RT @FrankieStokes20: Thank you @mistyonpointe for taking the time to greet us after the show! It was truly an experience I will never forge… +06/17/2018,Sports_celeb,@mistyonpointe,❤️❤️❤️ #RomeoAndJuliet @RobertoBolle https://t.co/uNRbyJQy8v +06/17/2018,Sports_celeb,@mistyonpointe,My Romeo’s!!❤️❤️❤️ Thank you @herman_cornejo and… https://t.co/BbKvCDf3hT +06/16/2018,Sports_celeb,@mistyonpointe,"RT @daniil: Photo: About to embark, again, on a 3-act rite of passage also known as Romeo in McMillan‘s “Romeo & Juliet” alongside my lumin…" +06/15/2018,Sports_celeb,@mistyonpointe,"Love this #Repost @mistyonpointe +・・・ +The most… https://t.co/NJzVzLKt7h" +06/15/2018,Sports_celeb,@mistyonpointe,Yes my love! @erica_lall Is Ready to Take Center Stage https://t.co/bvl7ErS8vO via @ELLEmagazine +06/14/2018,Sports_celeb,@mistyonpointe,https://t.co/mXROXXCrQh +06/14/2018,Sports_celeb,@mistyonpointe,"RT @Artsykc: Another finished painting. I've been completely captivated and inspired by @mistyonpointe so I just had to paint her. +#digital…" +06/13/2018,Sports_celeb,@mistyonpointe,"RT @BeccaLee22: last night i saw abt’s romeo and juliet, at the met, and the three principals were an african american, an argentinian, and…" +06/11/2018,Sports_celeb,@mistyonpointe,"⁦@HenryLeutwyler⁩ 📸.#Repost @artbytee.exe +・・・ +“Caught” . +. +. +#processing #blackart #blackartists #java… https://t.co/ABJQRk3oGX" +06/09/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: Design details on pointe. Our #UAMistySignature Collection features feminine cuts and premium fabrics for women to feel co… +06/09/2018,Sports_celeb,@mistyonpointe,"RT @warriors: What's it feel like to be a back-to-back NBA Champion? + +Hear Steve Kerr's immediate reactions postgame 🗣️ https://t.co/24NBju…" +06/09/2018,Sports_celeb,@mistyonpointe,"RT @warriors: How you livin', @StephenCurry30 ? #StrengthInNumbers 🏆🏆 https://t.co/OyGRO0PYtq" +06/09/2018,Sports_celeb,@mistyonpointe,RT @LaurenceScott: Warriors Sound LIVE in Cleveland -- LISTEN NOW to Postgame Celebration: https://t.co/T7xX5Xm27w https://t.co/elt2466LnN +06/09/2018,Sports_celeb,@mistyonpointe,Roberto Bolle and Misty Copeland - Romeo and Juliet https://t.co/SPnwlQjxOE via @YouTube Fave role hands down!!! 😭😭… https://t.co/U4gs1rUFVp +06/08/2018,Sports_celeb,@mistyonpointe,"RT @mistyonpointe: Snack game on pointe with @nakedjuice’s new Fruit, Nut & Veggie Bars – a powerful mix of high-quality ingredients that h…" +06/08/2018,Sports_celeb,@mistyonpointe,Thank you for posting this @GildaSquire ❤️❤️❤️ I… https://t.co/dRBpWbbhXQ +06/08/2018,Sports_celeb,@mistyonpointe,Never old. Wise. https://t.co/h9m1g8bsmC +06/08/2018,Sports_celeb,@mistyonpointe,"RT @Becauseofthem: In honor of what would have been Prince's 60th birthday today, here's the music icon performing his classic ""The Beautif…" +06/08/2018,Sports_celeb,@mistyonpointe,RT @DrPenK: Happy Birthday! Prince will forever be my favorite artist & @mistyonpointe my favorite dancer! #icons @keithlewis890 @TaylorKan… +06/06/2018,Sports_celeb,@mistyonpointe,Hey everyone! Next for the @ABTBallet spring… https://t.co/UoLZ9ksDNy +06/05/2018,Sports_celeb,@mistyonpointe,RT @mistyonpointe: @ballet_conrad I want to thank you for taking the time to do this. I did not understand the totality of what you meant n… +06/05/2018,Sports_celeb,@mistyonpointe,"I wholeheartedly agree with your assessment. It’s an issue that does need to be addressed, and I hope I can be a pa… https://t.co/WErQiuwLbK" +06/05/2018,Sports_celeb,@mistyonpointe,@ballet_conrad I want to thank you for taking the time to do this. I did not understand the totality of what you me… https://t.co/1P9bG40aNn +06/04/2018,Sports_celeb,@mistyonpointe,Always Awesome Misty Copeland Paganini will love it Dance open https://t.co/faffOxhpsD via @YouTube +06/03/2018,Sports_celeb,@mistyonpointe,RT @Cosmopolitan: .@mistyonpointe is so freakin' inspiring—read about her rise to ballerina fame here: https://t.co/w9GLwA15te https://t.co… +06/01/2018,Sports_celeb,@mistyonpointe,Love this girly with all my heart. @isabellaabt… https://t.co/s4FpjrFat8 +06/01/2018,Sports_celeb,@mistyonpointe,"RT @mistyonpointe: @nycarts NYC-ARTS Full Episode: May 31, 2018 https://t.co/H9GRdEdYFF @ABTBallet #IrinaKolpakovo ❤️❤️❤️❤️🙌🏾🙌🏾🙌🏾" +06/01/2018,Sports_celeb,@mistyonpointe,"@nycarts NYC-ARTS Full Episode: May 31, 2018 https://t.co/H9GRdEdYFF @ABTBallet #IrinaKolpakovo ❤️❤️❤️❤️🙌🏾🙌🏾🙌🏾" +06/01/2018,Sports_celeb,@mistyonpointe,"RT @warriors: FORGOT +ABOUT +DRAY https://t.co/atGS9NqP2V" +06/01/2018,Sports_celeb,@mistyonpointe,"RT @warriors: HUGE #SPLASH 💦 from @KlayThompson. #NBAFinals #StrengthInNumbers +📺 #NBAonABC https://t.co/BBWAANhSys" +06/01/2018,Sports_celeb,@mistyonpointe,RT @micahGjordan: @ariaEjordan @mistyonpointe Proud brother! https://t.co/Fuf6Wnj2tg +05/30/2018,Sports_celeb,@mistyonpointe,"I don’t always. Lol. But it’s so important. When people don’t believe it actually happens, I want to give examples… https://t.co/Ik7jon15cS" +05/30/2018,Sports_celeb,@mistyonpointe,"I don’t do this to engage or give these people a voice, but to inform people and ignite the conversation of racism… https://t.co/e906TieG9n" +05/30/2018,Sports_celeb,@mistyonpointe,It’s important to me that the world see’s the very real resistance dancers of color experience in ballet. It’s not… https://t.co/teWmEX8TuV +05/29/2018,Sports_celeb,@mistyonpointe,Love you😘 https://t.co/ctfLpoMVSS +05/29/2018,Sports_celeb,@mistyonpointe,@stanverrett Thank you 🙏🏾🙌🏾 +05/29/2018,Sports_celeb,@mistyonpointe,RT @stanverrett: @mistyonpointe brought 15 family members to see you in “Firebird” Saturday night for my mom’s birthday. First time at a ba… +05/28/2018,Sports_celeb,@mistyonpointe,It’s not about who can afford what. It’s representation. It’s about young black girls seeing a black woman with a b… https://t.co/B7hoX6YML1 +05/28/2018,Sports_celeb,@mistyonpointe,RT @CNN: Misty Copeland is the first female African-American principal dancer in the American Ballet Theatre. She says partnering with bran… +05/28/2018,Sports_celeb,@mistyonpointe,I will forever fight the good fight! ❤️❤️ https://t.co/pUmlTZ97tc +05/27/2018,Sports_celeb,@mistyonpointe,#Firebird Representation is necessary and… https://t.co/f1rAEYOZ5l +05/27/2018,Sports_celeb,@mistyonpointe,Bye #firebird A role that changed my career and… https://t.co/iK4SZ2kjIl +05/26/2018,Sports_celeb,@mistyonpointe,RT @TheRealDWalker: They are all so excited to see @mistyonpointe. Wow what an inspiration @mistyonpointe must be to so many little girls!… +05/26/2018,Sports_celeb,@mistyonpointe,😭😭 We love you waynemcgregor #Repost… https://t.co/zit8PG8M3r +05/26/2018,Sports_celeb,@mistyonpointe,Last chance to catch #Firebird tonight… https://t.co/zdq5spAYy8 +05/26/2018,Sports_celeb,@mistyonpointe,RT @The_Real_IMAN: #imandaily @mistyonpointe #MistyCopeland https://t.co/WgVt6i1klA +05/26/2018,Sports_celeb,@mistyonpointe,RT @BlueRose2008: @mistyonpointe and @CalvinRoyalIII watching you two dance together tonight I couldn’t help but smile! #BlackExcellence +05/25/2018,Sports_celeb,@mistyonpointe,"RT @Moments30: ""It was an opportunity for these little brown girls and boys to be able to look at me and see themselves and see a future fo…" +05/25/2018,Sports_celeb,@mistyonpointe,RT @cnnpodcasts: Legendary ballerina Misty Copeland says her purpose today is so much bigger than ballet. On the latest #BossFiles #podcast… +05/24/2018,Sports_celeb,@mistyonpointe,"Snack game on pointe with @nakedjuice’s new Fruit, Nut & Veggie Bars – a powerful mix of high-quality ingredients t… https://t.co/Az6gfd1yfT" +05/24/2018,Sports_celeb,@mistyonpointe,❤️😘 https://t.co/SEzCbLhJy7 +05/24/2018,Sports_celeb,@mistyonpointe,Absolutely in love with this gown!! Ugh… https://t.co/pxK6T5HUQr +05/23/2018,Sports_celeb,@mistyonpointe,RT @warriors: Dubs up! https://t.co/2I00vGsma4 +05/23/2018,Sports_celeb,@mistyonpointe,"RT @NBA: 5⃣ TRIPLES in the 3rd for Steph Curry! 🎯🎯🎯🎯🎯 + +#DubNation @NBAonTNT https://t.co/WZ5bot9TBs" +05/21/2018,Sports_celeb,@mistyonpointe,"Ha! Nice one...Take a listen, maybe you’ll learn something about someone else’s experiences https://t.co/DUDkUxeqTO" +05/21/2018,Sports_celeb,@mistyonpointe,"RT @PoppyHarlowCNN: ""The ballet world doesn't really celebrate or have women of color"" @mistyonpointe tells me in a new #BossFiles episode…" +05/19/2018,Sports_celeb,@mistyonpointe,"RT @PatKidsday: @mistyonpointe What an honor to have our Kidsday reporters meet Misty Copeland,Female Principal Dancer for American Ballet…" +05/13/2018,Sports_celeb,@mistyonpointe,"RT @TheRoot: Misty Copeland (@mistyonpointe) is a legit fan of @Drake's. + +Here's how she got charmed into being in Drake's ""Nice for What""…" +05/12/2018,Sports_celeb,@mistyonpointe,"RT @TheRoot: Misty Copeland (@mistyonpointe) is a big @Drake fan. + +She charmed the world as the American Ballet Theatre's first female Afr…" +05/07/2018,Sports_celeb,@mistyonpointe,"RT @PoppyHarlowCNN: Still smiling from this amazing hour I spent today with @mistyonpointe who told me ""my purpose is to make people feel t…" +05/06/2018,Sports_celeb,@mistyonpointe,"RT @UnderArmour: .@mistyonpointe has inspired a generation of young women to be fearless. Together, we have created a collection that bridg…" +05/04/2018,Sports_celeb,@mistyonpointe,Misty Copeland on How a Devastating Injury Almost Derailed Her Career https://t.co/fjHcX2oSR9 via @Cosmopolitan +05/03/2018,Sports_celeb,@mistyonpointe,RT @POPSUGARFitness: We need everything! @mistyonpointe @underarmour https://t.co/xxz0hjmyON +05/03/2018,Sports_celeb,@mistyonpointe,RT @Dance_Magazine: Misty Copeland @mistyonpointe is totally owning her title as a multi-hyphenated artist. https://t.co/hrVwtaLqTo +05/03/2018,Sports_celeb,@mistyonpointe,RT @pointe_magazine: @mistyonpointe Designed Her Own Collection With @UnderArmour (& Her Fellow @ABTBallet Dancers Helped Debut It) https:/… +05/03/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: We collaborated with @mistyonpointe to bring you fire and femininity. Shop the Misty Copeland Collection now. https://t.co… +05/02/2018,Sports_celeb,@mistyonpointe,It’s Launch Day! My Misty Signature Line is live and ready to shop. Check it out: https://t.co/e2n6rFV0pd +05/02/2018,Sports_celeb,@mistyonpointe,RT @UAWomen: Did you know...it's just one day until we launch the Misty Copeland Signature Collection!? Check out these beautiful sneak pee… +05/01/2018,Sports_celeb,@mistyonpointe,Important update: There’s been a cast change for May 23. I’ve just learned I’m dancing in the 2PM Firebird performa… https://t.co/Nu9bqVNmwa +04/29/2018,Sports_celeb,@mistyonpointe,RT @sampanda24: happy #InternationalDanceDay @mistyonpointe https://t.co/2ouKT5iVIr +04/28/2018,Sports_celeb,@mistyonpointe,"Innovative. Fresh, inspiring and out of this world. Bravo @CAcostaOfficial and the entire company. ❤️❤️❤️ https://t.co/RS2OYYH5Bd" +04/28/2018,Sports_celeb,@mistyonpointe,"#Repost @vmwills +・・・ +Sliding in ballet slippers tho? Well, she's freaking… https://t.co/EEtZgi4DiP" +04/25/2018,Sports_celeb,@mistyonpointe,"RT @andmel123: Poise with a pointe😍😍inspired by you Misty, all the way from South Africa @mistyonpointe https://t.co/jYGQcaLB4X" +04/24/2018,Sports_celeb,@mistyonpointe,"What’s in this ballerina’s bag? @nakedjuice’s new Fruit, Nut & Veggie Bars. They’re packed with high-quality ingred… https://t.co/DLHlwabUpg" +04/24/2018,Sports_celeb,@mistyonpointe,RT @GloZell: Happy Monday from your favorite ballerina! Watch out @mistyonpointe xoxoxo GloZell & O’Zell https://t.co/5QUSgT0Jd3 +04/24/2018,Sports_celeb,@mistyonpointe,"RT @RenYouthCenter: Watch Misty Copeland (@mistyonpointe) and @RobinRoberts talk about meeting Jessica from our choir, and how huge #repres…" +04/20/2018,Sports_celeb,@mistyonpointe,"RT @SaulWilliams: To shape the form of possibility... + +💃🏿@mistyonpointe +✂️@ceskyest https://t.co/2B0ZS1R8Ug" +04/17/2018,Sports_celeb,@mistyonpointe,https://t.co/tmpgZhQo3k via @youtube +04/16/2018,Sports_celeb,@mistyonpointe,RT @cristina_hinze: @mistyonpointe I was thrilled to be the lucky silent auction winner of these precious items at The Steffi Nossen Dance… +04/16/2018,Sports_celeb,@mistyonpointe,RT @codycalhoun: . @mistyonpointe this little girl has a hero presentation in the morning and she is so excited! Thank you Misty for being… +04/14/2018,Sports_celeb,@mistyonpointe,My hearts melting 😘😍 https://t.co/GnO8xoerHY +04/14/2018,Sports_celeb,@mistyonpointe,"RT @ILoveLibraries: Thank you to 2018 #NationalLibraryWeek Honorary Chair, +@mistyonpointe! https://t.co/x9Nh4Kck1m" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @RenYouthCenter: What an amazing and deeply inspiring day at @WomenintheWorld. Our choir got to meet some real heroes, like @mistyonpoin…" +04/14/2018,Sports_celeb,@mistyonpointe,Love you Leona. You sang so beautifully! https://t.co/8yIOywUoxW +04/14/2018,Sports_celeb,@mistyonpointe,"RT @InStyle: .@MistyOnPointe, Supreme Court justice #SoniaSotomayor, and more come together for the #DVFAwards. https://t.co/GWjpyjuoTE" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @graceorsomethin: Watching the NICE FOR WHAT music video. I'm late to the game, but wowwww I could recognize @mistyonpointe's silhoutte…" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @DVF: “Own who you are and accept everything that’s different about you, because to me, that’s what beauty is. Find support around you a…" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @StyleWriterNYC: . @BrookeBCNN, @DVF and @MistyOnPointe on the red carpet at tonight’s #DVFAwards at the @UN ... https://t.co/oizLf7fafs" +04/14/2018,Sports_celeb,@mistyonpointe,RT @StyleWriterNYC: A very emotional Misty Copeland accepting her Inspiration Award at tonight’s @DVF Awards ... #DVFAwards https://t.co/xe… +04/14/2018,Sports_celeb,@mistyonpointe,RT @tdufu: Let's keep building each other up as women.-@mistyonpointe accepting the Inspiration Award at #DVFAwards @DVF #INCHARGE https:/… +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: “Lets keep building each other up as women. Let’s keep staying strong. Let’s inspire each other as leaders.” 👊👊🏻👊🏼👊🏽👊🏾👊🏿 @mistyonp… +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: Inspired and humbled by the incredible women who were honored with #DVFAwards tonight. https://t.co/A8S3614tLz +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: So inspired by your speech! Thank you for all you do to empower women. https://t.co/q7xIipqD54 +04/14/2018,Sports_celeb,@mistyonpointe,Such an honor to receive @DVF’s Inspiration Award during tonight’s #DVFAwards. Follow the… https://t.co/3Yj5hynNNc +04/14/2018,Sports_celeb,@mistyonpointe,Such an honor to receive @DVF’s Inspiration Award during tonight’s #DVFAwards! @DVF will be streaming LIVE on their… https://t.co/RI3PybWHdP +04/13/2018,Sports_celeb,@mistyonpointe,I wrote Firebird to encourage kids of all backgrounds to pursue their dreams. Libraries help young people find book… https://t.co/1xxNh6z8Ez +04/12/2018,Sports_celeb,@mistyonpointe,Libraries help people of all backgrounds access the resources and services they need to achieve their dreams. Suppo… https://t.co/oRQOjh4E4f +04/11/2018,Sports_celeb,@mistyonpointe,"RT @cbcradioq: Did you know Drake's new video #NiceForWhat features incredibly inspiring women including @mistyonpointe, @iamrashidajones,…" +04/10/2018,Sports_celeb,@mistyonpointe,Today is National Library Workers Day! Stop by your local library to show some love to the awesome librarians and s… https://t.co/KD1asEAost +04/10/2018,Sports_celeb,@mistyonpointe,❤️ https://t.co/YJVQzjs9WM +04/10/2018,Sports_celeb,@mistyonpointe,RT @LACountyLibrary: Many libraries are having special @mistyonpointe Firebird storytimes for #NationalLibraryWeek! Come to Norwalk Library… +04/10/2018,Sports_celeb,@mistyonpointe,"RT @sarasotaBGC: It was such an honor to meet @mistyonpointe, @BGCA_Clubs alumna and principal dancer with @ABTBallet, on Saturday thanks t…" +04/09/2018,Sports_celeb,@mistyonpointe,Happy #NationalLibraryWeek! I’m so excited to serve as Honorary Chair of this year’s celebrations.… https://t.co/RSsl5l3PBu +04/09/2018,Sports_celeb,@mistyonpointe,"Thank you #sarasotaballet and my love @marcelogomes47 for an amazing evening!!! Marcy, I love… https://t.co/yQZe6U46jU" +04/08/2018,Sports_celeb,@mistyonpointe,Thank you @karenaevans @champagnepapi #niceforwhat🔥🔥🔥 and all the incredible women I share in this power anthem wit… https://t.co/HC71scSpnv +04/08/2018,Sports_celeb,@mistyonpointe,RT @Natashalexis_: Thank you @Drake for blessing us with so many beautiful examples of badass women in the #niceforwhat video 🙏🏽 I legit sc… +04/08/2018,Sports_celeb,@mistyonpointe,"RT @GildaSquire: @Drake Thank you, Fuliane and Karena for an empowering, uplifting visual of extraordinary women, including @mistyonpointe.…" +04/08/2018,Sports_celeb,@mistyonpointe,RT @Drake: https://t.co/rWaJm2hHNB +04/07/2018,Sports_celeb,@mistyonpointe,"RT @GlobalGrind: #NiceForWhat +@mistyonpointe https://t.co/Hd1oEGpSz5" +04/07/2018,Sports_celeb,@mistyonpointe,I’m black https://t.co/M4OwbCYroD +04/07/2018,Sports_celeb,@mistyonpointe,So crazy it’s funny https://t.co/B7Sdm97z9u +04/07/2018,Sports_celeb,@mistyonpointe,🤷🏽‍♀️ https://t.co/sWbzQVUT9x +04/06/2018,Sports_celeb,@mistyonpointe,RT @cnnasiapr: #MistyCopeland on #TalkAsia: Why this #ballet superstar is fighting for diversity. https://t.co/AVpa4YlJo2 @jmsit @ABTBallet… +04/05/2018,Sports_celeb,@mistyonpointe,Misty Copeland: Why this ballet superstar is fighting for diversity @CNN https://t.co/voFq7C1iNf +04/05/2018,Sports_celeb,@mistyonpointe,"RT @BGCA_Clubs: Thank you, alumni @mistyonpointe for sharing your experience with @MNWBGC Club members! #greatfutures https://t.co/SNkFvOSL…" +04/05/2018,Sports_celeb,@mistyonpointe,"The incredible Clifford, @cliffordnewyork showing me how to properly dance Dwight Rhoden’s choreography ❤️❤️❤️ As y… https://t.co/oBm05byHNd" +04/05/2018,Sports_celeb,@mistyonpointe,"The incredible Clifford, @cliffordnewyork showing me how to properly dance Dwight Rhoden’s choreography ❤️❤️❤️ As y… https://t.co/mQGKQcGazD" +04/03/2018,Sports_celeb,@mistyonpointe,"Lol. Y’all, no weird hidden messages here. The person I was referring to is a trump supporter. I wasn’t assuming or… https://t.co/uStHeknYr6" +04/03/2018,Sports_celeb,@mistyonpointe,lol The person I was talking to is a trump supporter. Simple as that. Night. https://t.co/m4gMkgEMRb +04/02/2018,Sports_celeb,@mistyonpointe,"RT @corystieg: I asked @mistyonpointe about that viral fouetté video, how she copes with haters, and what she does to prioritize mental hea…" +04/02/2018,Sports_celeb,@mistyonpointe,"I had very smart teachers and I’m proud of my training, though limited as I only trained for 4 years before I joine… https://t.co/nu8bpQ5dD9" +04/02/2018,Sports_celeb,@mistyonpointe,We have no idea what injuries dancers had back then. Didn’t have any or very limited PT. Also didn’t train as we do… https://t.co/HEgpwlVCVd +04/02/2018,Sports_celeb,@mistyonpointe,"We can be overworked, dance in bad conditions, not a sprung floor or its too hard. SO many variables. https://t.co/XHywJHJn7S" +04/02/2018,Sports_celeb,@mistyonpointe,"EVERY dancer experiences some form of injury in their careers. They fall, break or sprain. Maybe don’t listen to th… https://t.co/8ucsEiCjKT" +04/02/2018,Sports_celeb,@mistyonpointe,"RT @LilyCrue: @mistyonpointe Being that affirmative action was started over 50 years ago, if ballerinas were promoted based on that, there…" +04/02/2018,Sports_celeb,@mistyonpointe,Gotta keep peeps abreast to the very real facts of what black dancers experience. https://t.co/BX08SHPPG1 +04/02/2018,Sports_celeb,@mistyonpointe,RT @trueladymd: @mistyonpointe It’s a shame you have to respond to the liars and haters. You are the definition of talent and grace!! +04/02/2018,Sports_celeb,@mistyonpointe,#SMH https://t.co/R6pVRq4Ixx +04/02/2018,Sports_celeb,@mistyonpointe,"???? Well, I’m Misty and that is absolutely untrue.... since when has affirmative action worked in ballet? https://t.co/jOJGT4a4pQ" +03/31/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: .@mistyonpointe broke down barriers when she became the first African American woman to be named principal dancer in the 7… +03/31/2018,Sports_celeb,@mistyonpointe,❤️ https://t.co/gMCV7UQQnC +03/31/2018,Sports_celeb,@mistyonpointe,You will never get it. Our message isn’t for you. Go to the ballet and enjoy who you like. Support your president a… https://t.co/A0BCCFgP8K +03/28/2018,Sports_celeb,@mistyonpointe,https://t.co/PtG1akwmHv +03/27/2018,Sports_celeb,@mistyonpointe,RT @emilyWbrown: @mistyonpointe my 7yo daughter chose you for her biography project. She asked me to send you this photo. You’re a huge ins… +03/23/2018,Sports_celeb,@mistyonpointe,"RT @playing4change: The arts have the power to improve our schools and build more compassionate, connected communities! #ArtsForChange + @Yo…" +03/21/2018,Sports_celeb,@mistyonpointe,"RT @MalissaShriver: Just finished reading Misty Copeland’s book “Life in Motion”@mistyonpointe with my daughter Rosemary, made me cry #insp…" +03/20/2018,Sports_celeb,@mistyonpointe,"RT @samuelmurai: @ELLEmagazine Misty Copeland @mistyonpointe is still my THE absolute favorite, but there are some more incredible ballerin…" +03/16/2018,Sports_celeb,@mistyonpointe,"RT @NationalDance: #tbt @mistyonpointe and NDI dancers at #NDIgala in 2015. +#ThrowbackThursday Photo: @chiossone https://t.co/5JJUfVbmcz" +03/15/2018,Sports_celeb,@mistyonpointe,https://t.co/qO0ZIi9niQ via @youtube +03/13/2018,Sports_celeb,@mistyonpointe,"Thank you for having me! Good luck on your tour!!! #Repost singaporedancetheatre +・・・ +Misty… https://t.co/I1KIpiy6qp" +03/11/2018,Sports_celeb,@mistyonpointe,RT @sstewart1775: @mistyonpointe Inspired to be a Ballerina...just by watching one of the greats. https://t.co/nzZuhR5Dzl +03/07/2018,Sports_celeb,@mistyonpointe,"RT @blackenterprise: .@mistyonpointe's Secret Weapon Is a Woman of Power, Too https://t.co/kTC0APPNLO https://t.co/5jU8l77o0g" +03/07/2018,Sports_celeb,@mistyonpointe,RT @kamh7: @mistyonpointe when your daughter is given M.C. for her class presentation #shelovesballet https://t.co/4mgkm2nZTo +03/06/2018,Sports_celeb,@mistyonpointe,"Excited that @Barbie is celebrating #InternationalWomensDay by honoring global role models, because you can't be wh… https://t.co/HzoRi75Zkf" +03/05/2018,Sports_celeb,@mistyonpointe,"RT @VeeSparkle15: Courageous women @mistyonpointe @reshmasaujani breaking barriers, educating & inspiring #women, girls on #Herstory Day @…" +03/03/2018,Sports_celeb,@mistyonpointe,What Misty Copeland Eats to Feel Empowered https://t.co/088bwBTfX1 via @My_Recipes +03/02/2018,Sports_celeb,@mistyonpointe,"RT @UAnews: .@MistyonPointe, @AlisonMDesir, @natashahastings, @JESSIEgraffPWR, @lindseyvonn, @YusraMardini, and so many more… We are honore…" +03/01/2018,Sports_celeb,@mistyonpointe,RT @FSherrillNWE: @mistyonpointe My student was so excited to portray you at our Black History Museum!! #wearewayne @BrittonWayneNWE https:… +03/01/2018,Sports_celeb,@mistyonpointe,RT @chinnerssbcsd: And that’s a wrap... so proud of my first graders for sharing their final projects to communicate their findings from th… +02/25/2018,Sports_celeb,@mistyonpointe,RT @candicewjohnson: My sunshine has NO clue that the whole reason we are in the Chi is to see the beautiful young lady on her shirt! Her i… +02/24/2018,Sports_celeb,@mistyonpointe,Yes sir! https://t.co/kagE93i1CX +02/24/2018,Sports_celeb,@mistyonpointe,"RT @NorthStarGrpPR: ""One of the biggest lessons I have learned is to believe in the process. When you put in the hours, and you've got good…" +02/23/2018,Sports_celeb,@mistyonpointe,RT @Plummer_ESDC: @mistyonpointe Thank u for creating a path for dreams! Our scholars are on their way to achieving their dreams! #positive… +02/23/2018,Sports_celeb,@mistyonpointe,"""My two summers spent at ABT’s Summer Intensive were the most informative of my training. It is… https://t.co/9ACASyUAF7" +02/23/2018,Sports_celeb,@mistyonpointe,"RT @ClassicalMvmts: While @slso, @ABTBallet's performances @LiedCenter saw neither blizzards nor mudslides for CM's travel pros, with @mist…" +02/22/2018,Sports_celeb,@mistyonpointe,"RT @MichelleObama: I’m in total awe of the extraordinary students in Florida. Like every movement for progress in our history, gun reform w…" +02/21/2018,Sports_celeb,@mistyonpointe,Misty Copeland Shines Light on Diversity in Ballet World and Beyond https://t.co/Wzg7MyqEQ8 +02/21/2018,Sports_celeb,@mistyonpointe,"RT @ClassicalMvmts: Today's #TravelTuesday takes CM back to this weekend's two, sold-out performances @LiedCenter in #Lincoln, #Nebraska, s…" +02/21/2018,Sports_celeb,@mistyonpointe,RT @DRAdance: Meet 10 up-and-coming black ballerinas carrying on @mistyonpointe's message of diversity and inclusivity in this article on @… +02/21/2018,Sports_celeb,@mistyonpointe,"RT @BrandisFriedman: Attention #ballet lovers! @mistyonpointe is on #chicagotonight! We talk abt making history, cooking in the kitchen and…" +02/21/2018,Sports_celeb,@mistyonpointe,"RT @artintercepts: “Bringing diversity into the theater is going to keep ballet thriving and relevant and alive. To me, that’s so critical…" +02/21/2018,Sports_celeb,@mistyonpointe,RT @AnerkeFilms: 10 Black Ballerinas carrying on @mistyonpointe's legacy: https://t.co/v6bFXsENTZ +02/21/2018,Sports_celeb,@mistyonpointe,RT @ChrisJonesTrib: A Chat with @mistyonpointe https://t.co/pPn6ubeIEI +02/20/2018,Sports_celeb,@mistyonpointe,"RT @MichelleObama: Congrats to the entire #blackpanther team! Because of you, young people will finally see superheroes that look like them…" +02/20/2018,Sports_celeb,@mistyonpointe,RT @bishopprolive: @TBishopL @bishopprolive @Perri Small @mistyonpointe #BishopPromotesYou https://t.co/Nj5PapmGOr +02/20/2018,Sports_celeb,@mistyonpointe,RT @bishopprolive: @TBishopL @bishopprolive @mistyonpointe #Chicago @WVON1690 Misty Copeland Awesome! #BishopPromotesYou https://t.co/Ti565… +02/19/2018,Sports_celeb,@mistyonpointe,I wish I could have met her. https://t.co/wb8m6MaiHU +02/18/2018,Sports_celeb,@mistyonpointe,"RT @92Y: ""I get up early in the morning to write because I'm very smart early in the morning."" Happy birthday to one of the greatest Ameri…" +02/17/2018,Sports_celeb,@mistyonpointe,RT @Winceycomusic: Using the power of the book #Firebird 2 show kids they can be anything they want 2b! #DreamBig @NJPAC @mistyonpointe ht… +02/17/2018,Sports_celeb,@mistyonpointe,"#Repost abtofficial +・・・ +This one is for you, Jaime 🧡 We honor your life in tonight’s… https://t.co/Lqu8cN3jBH" +02/16/2018,Sports_celeb,@mistyonpointe,@EdLGordon @bouncetv Can’t wait to see it. Important conversation! +02/16/2018,Sports_celeb,@mistyonpointe,RT @EdLGordon: Thanks @mistyonpointe 4being on my special AM I Black Enough? Premieres on @bouncetv Feb 17 at noon EST or now on the Brown… +02/16/2018,Sports_celeb,@mistyonpointe,RT @GildaSquire: Ballerina Raven Wilkinson On Dealing With Racism In Her Storied Career And Mentoring Misty Copeland https://t.co/fq3rgf8pq… +02/16/2018,Sports_celeb,@mistyonpointe,RT @slso: SLSO musicians with the one and only @mistyonpointe #slsotour @ABTBallet @LiedCenter https://t.co/eQFJXOgpGX +02/16/2018,Sports_celeb,@mistyonpointe,RT @BeccaLee22: best. night. ever. 🙌🏼 thank you @mistyonpointe!!! #mistycopeland #firebird #dreambigsweetgirl ❤️ https://t.co/gMPJwIkCox +02/15/2018,Sports_celeb,@mistyonpointe,"RT @mesonjixx: Had the honor of going and listening to @mistyonpointe speak about her life in #ballet as a black woman, wife, artist, lover…" +02/14/2018,Sports_celeb,@mistyonpointe,"RT @Emorly: So glad @mistyonpointe brought up the gender associations within ballet in the US. + +I watched my brother, who loved both balle…" +02/14/2018,Sports_celeb,@mistyonpointe,RT @TylerAThomas: “The Arts are Uniting” powerful words from @mistyonpointe at her #ENThompsonForum presentation tonight. #UNL https://t.co… +02/13/2018,Sports_celeb,@mistyonpointe,https://t.co/jsgnG9PHCT via +02/12/2018,Sports_celeb,@mistyonpointe,"RT @ABTBallet: Thanks, Detroit! We hope to dance for you again soon. +""Misty Copeland and ABT are riveting in Detroit Opera House performanc…" +02/11/2018,Sports_celeb,@mistyonpointe,My doc A Ballerinas Tale https://t.co/PU7UXCnwNO +02/11/2018,Sports_celeb,@mistyonpointe,https://t.co/CDYBFUwOX3 via +02/09/2018,Sports_celeb,@mistyonpointe,"RT @alisaaslanova: Misty 😍 in Moscow +@mistyonpointe https://t.co/6KI55lF8Nr" +02/09/2018,Sports_celeb,@mistyonpointe,"RT @GrandCentralPub: Read @mistyonpointe's interview with @amlibraries! This #BallerinaBody author shares how she prepares for a new role,…" +02/09/2018,Sports_celeb,@mistyonpointe,RT @warriors: Dubs defense turns up and Steph shows off his QB 🏈 skills. (NBCSBA) https://t.co/9iZ0Y2xB3Q +02/08/2018,Sports_celeb,@mistyonpointe,"#Repost @umsnews +・・・ +Tomorrow @mistyonpointe takes the stage in Detroit for our co-presentation… https://t.co/bmolNSLLvE" +02/07/2018,Sports_celeb,@mistyonpointe,RT @BeccaLee22: i asked how she was feeling after a rough night at dance and she said “better because we read @mistyonpointe’s book!” means… +02/06/2018,Sports_celeb,@mistyonpointe,"RT @BrownSugarApp: .@Mistyonpointe discusses systematic racism in this clip from the upcoming #EdGordon special: 'Am I Black Enough?’. + +S…" +06/28/2018,Sports_celeb,@MikeTyson,Round 2 of Rise Up campaign to help children. Please join me & my friend #AndreaJaeger Donate $5 text 20222. A lit… https://t.co/FEuXGbWpva +06/22/2018,Sports_celeb,@MikeTyson,Awesome to see the legends back on court 4 2nites #BIG3Basketball Season 2 opener live on Facebook 6:30ET & 7:30 on… https://t.co/YDyMGkJ3oB +06/17/2018,Sports_celeb,@MikeTyson,Happy Father's Day to fathers that are Dads to their kids and the mentors that make a difference. https://t.co/o57J6lJIH3 +06/16/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/J4LwoGA5tK +06/14/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this Saturday, June 16th & get my autograph at @TristarVegas and @FODCaesars! Info:… https://t.co/UIvmCmQOYQ" +06/10/2018,Sports_celeb,@MikeTyson,I'm back in #Canastoga #InternationalBoxingHallofFame to honor #2018inductees https://t.co/rczY6aELdL +06/08/2018,Sports_celeb,@MikeTyson,I think it’s about time my friend @angiemartinez gets into Radio Hall Of Fame! #VOTE4Angie. Text 300 to 96000 https://t.co/AlxhYeL7xE +06/01/2018,Sports_celeb,@MikeTyson,“Everybody thinks this is a tough man’s sport. This is not a tough man’s sport. This is a thinking man’s sport. A t… https://t.co/hPiZVUXsaH +05/28/2018,Sports_celeb,@MikeTyson,"Just a kid from #Brownsville with a dream. By 1989, that dream was a reality. Check out the official #MikeTyson col… https://t.co/OK0ZoaUISZ" +05/26/2018,Sports_celeb,@MikeTyson,Help me and @littlestarfndtn #AndreaJaeger knockout kids suffering. Donate $5 today text STAR to 20222… https://t.co/lfhWcXGOPf +05/13/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/BoImGe8mQ4 +05/12/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/LJaiHHgTlG +05/11/2018,Sports_celeb,@MikeTyson,"#LasVegas: Come see me this weekend & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/BTRrMIut7y" +04/26/2018,Sports_celeb,@MikeTyson,Check out my interview with @TitoOrtiz where we talk about what would happen if Conor McGregor and Floyd Mayweather… https://t.co/tMBMxZBdev +04/24/2018,Sports_celeb,@MikeTyson,Check out my new podcast episode with former UFC champion and UFC Hall of Famer @TitoOrtiz. We talk about whether I… https://t.co/D9F4soBKvj +04/21/2018,Sports_celeb,@MikeTyson,Save up to 50% @RootsofFight Tyson apparel. #SpringCleaningSale event Sale runs until 12pm PT Monday 23rd. Don’t mi… https://t.co/OcNu4pOsUl +04/21/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: New podcast episode is up. +Click ► https://t.co/ANwFX8HpS1 +@BiteTheMicShow +・・・ +@RosenbergRadio #BiteTheMic #MikeTyson #…" +04/19/2018,Sports_celeb,@MikeTyson,"I talk about about friends, interviews, and memories from back in the day on the podcast. +► https://t.co/d8clyaegGk… https://t.co/m4ML5iEQAw" +04/17/2018,Sports_celeb,@MikeTyson,"New podcast episode. Talking about working out with my son Miguel. +► https://t.co/d8clyaegGk +Follow @BiteTheMicShow… https://t.co/lVmwx4Qxuq" +04/16/2018,Sports_celeb,@MikeTyson,RT @bitethemicshow: Don’t miss Part 2 of the interview with @DanaWhite. Did you know that Dana was at the infamous “Bite Fight” between @Mi… +04/14/2018,Sports_celeb,@MikeTyson,“Everyone that you fight is not your enemy and everyone who helps you is not your friend.” New @rootsoffight… https://t.co/MsoWGUBjS8 +04/14/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/T0tH7vdVfI +04/13/2018,Sports_celeb,@MikeTyson,"Part 2 of the interview with @DanaWhite on the podcast is up. We talk about Dana at “The Bite Fight,”… https://t.co/Etvu9krdRB" +04/13/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/VibOKwHHMP +04/11/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/JfWuaPinRG" +04/11/2018,Sports_celeb,@MikeTyson,"► https://t.co/d8clyaegGk @DanaWhite is back on the podcast. We talk about Conor McGregor, @FloydMayweather in MMA… https://t.co/KzJolekrl8" +04/08/2018,Sports_celeb,@MikeTyson,Gonna watch for @TeamKhabib title fight tonight. #UFC223 #barclayscenter https://t.co/07ivQ21rrW +04/07/2018,Sports_celeb,@MikeTyson,"From #WrestleMania 14. Don’t miss #WrestleMania34 on Sunday, April 8th. #TeamRousey + +And don’t forget to catch th… https://t.co/wQvtTEzan0" +04/07/2018,Sports_celeb,@MikeTyson,"#TeamRousey all the way #WWE #WrestleMania. @RondaRousey +And don’t forget to catch the podcast, @BiteTheMicShow.… https://t.co/Y5kR7hFhGe" +04/07/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/HqR8s4VUcD +04/06/2018,Sports_celeb,@MikeTyson,20 years ago from #WrestleMania 14. As a @WWE Hall of Fame inductee and a fan I’ll be watching @RondaRousey vs… https://t.co/uLOqC78bqk +04/06/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70OJ86s https://t.co/XF7Yy6RkZ3 +04/05/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/VNBSXLzwMT" +03/30/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Click the link for the full episode. +➡️https://t.co/modxKXtdEG +・・・ +#MikeTyson #MMA #Boxing #Podcast #Comedy #BiteTheMic…" +03/20/2018,Sports_celeb,@MikeTyson,"Listen to the whole interview where I talk about when @MichaelJackson played a prank on me. +➡️… https://t.co/A9d8rcvdw8" +03/15/2018,Sports_celeb,@MikeTyson,"Listen to me talk about my tigers and much more. +➡️https://t.co/DUxIpQMcDR +Follow @BiteTheMicShow for more. +・・・… https://t.co/TIBrop2q9A" +03/14/2018,Sports_celeb,@MikeTyson,New Release from @rootsoffight. Black on Black Brooklyn Tee. Get yours now. #KnowYourRoots #AllBlackEverything… https://t.co/aI651PiwM7 +03/13/2018,Sports_celeb,@MikeTyson,Sorry to hear Craig Mack is no longer with us. #RIPCraigMack. Gonna listen to #FlavaInYourEar right now. Man 47 too young. +03/13/2018,Sports_celeb,@MikeTyson,"My fists are flying in #KickboxerRetaliation, now available on DVD and Blu-ray Combo! Get your copy today:… https://t.co/8FjOTlOGFP" +03/11/2018,Sports_celeb,@MikeTyson,@DjokerNole you are the realest. Thanks for hitting with my daughter #milantyson. You are her tennis idol.… https://t.co/pJI83jC96S +03/05/2018,Sports_celeb,@MikeTyson,"Agreed. This is a great time to be a boxing fan, but in my prime I felt like I could beat anyone in the world just… https://t.co/BkdaGdXDm1" +03/03/2018,Sports_celeb,@MikeTyson,Expedient recovery to Hip Hop legend @RickRoss. Praying for you brother. +03/02/2018,Sports_celeb,@MikeTyson,.@rootsoffight has new pieces! 🔥 Check out this new T & my full #RootsofFight collection here... #KnowYourRoots… https://t.co/x9xINVpuSB +02/27/2018,Sports_celeb,@MikeTyson,Listen to me interview the man who has interviewed me dozens of times. New episode with the best broadcaster in all… https://t.co/R5mBZmxfQf +02/24/2018,Sports_celeb,@MikeTyson,I don't think Wilder would have beat me in my prime. I've said it before and I'm saying it again. Listen to my podc… https://t.co/r3iMc1wsrr +02/24/2018,Sports_celeb,@MikeTyson,I don't think Wilder would have beat me in my prime. I've said it before and I'm saying it again. Listen to my podc… https://t.co/8zt9SQmITL +02/23/2018,Sports_celeb,@MikeTyson,RT @bitethemicshow: CLICK->https://t.co/Qb7jObX039 Nothing like an @MikeTyson stare down. Check out part 2 of the interview with @BigBoy f… +02/22/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Thank you for all the support for the podcast, much appreicated. +Click to listen ➡️https://t.co/modxKXtdEG +・・・ +#MikeTys…" +02/22/2018,Sports_celeb,@MikeTyson,"@AndyDick, I'm just busting your chops. +Click to listen to the full interview with @AdamCarolla. +➡️… https://t.co/86tBOaZSGq" +02/20/2018,Sports_celeb,@MikeTyson,"Listen to me talk about the heavyweight division with @AdamCarolla +➡️https://t.co/DUxIpQMcDR +・・・ +#MikeTyson #MMA… https://t.co/QrJJghhDG5" +02/16/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Get @MikeTyson's thoughts on comedy vs. fighting. +Click ➡️ https://t.co/modxKXtdEG +Part 2 with @BrendanSchaub and @Brya…" +02/16/2018,Sports_celeb,@MikeTyson,"#Throwback Thank you for all the support for the podcast. +Click to listen ➡️https://t.co/ERSRuqPUue https://t.co/d9wlv61QxE" +02/16/2018,Sports_celeb,@MikeTyson,.@BronzeBomber trash talk is cool. Everyone has a plan until they get punched in the mouth. There is a Tyson that… https://t.co/6aIK3bsjkL +02/15/2018,Sports_celeb,@MikeTyson,#Respect @LennoxLewis https://t.co/Tcj9OGTvup +02/14/2018,Sports_celeb,@MikeTyson,Another school shooting. Sad. Prayers to the families #ParklandShooting +02/13/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Curious who @MikeTyson thinks is the pound for pound best boxer in the world? +Click the link to find out -> https://t.c…" +02/13/2018,Sports_celeb,@MikeTyson,"What would you do with a billion dollars? #TigerKing +Click the link for the full interview ->… https://t.co/4dp8w1Uhdb" +02/10/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See yo… https://t.co/3LGsDCKbMC +02/09/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Listen to @MikeTyson talk about Eddie Murphy on the podcast. +CLICK->https://t.co/modxKXKOwe +・・・ +#MikeTyson #MMA #Box…" +02/09/2018,Sports_celeb,@MikeTyson,88' was a big year for me. Started with win over future Hall of Famer #LarryHolmes and ended with the Lineal HW t… https://t.co/yTkFIbFKBu +02/09/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70OJ86s https://t.co/FWPrCnHQmP +02/09/2018,Sports_celeb,@MikeTyson,".@TheRock thank you, brother. Great movie too. My kids loved it. #Jumanji +#RIPRoger 🤨 #NewSmolderingIntensityKing… https://t.co/ZLufHa7FhT" +02/09/2018,Sports_celeb,@MikeTyson,"@TheRock Thank you, brother. Great movie too. My kids loved it. #Jumanji +#RIPRoger 🤨 #NewSmolderingIntensityKing… https://t.co/Lvbxn4641e" +02/08/2018,Sports_celeb,@MikeTyson,I just heard that @Tyson_Fury said that I would KO him in the first round if we fought. What are your thoughts?… https://t.co/uzqXiaPScZ +02/08/2018,Sports_celeb,@MikeTyson,"Hey @TheRock and @RogerFederer, how's my ""Smoldering Intensity"" look? 👊🏾 #PodcastKing #HardAtWorkInTheStudio… https://t.co/4S8k18Qod9" +02/08/2018,Sports_celeb,@MikeTyson,"Great stuff with Martin Lawrence. +Click to listen: https://t.co/DUxIpQMcDR +@realmartymar +・・・ +#Bitethemic https://t.co/6AyceeY2ki" +02/07/2018,Sports_celeb,@MikeTyson,Don't understand the fuss about the big rocket launch because I was the first to launch in one of @ElonMusk’s rocke… https://t.co/kUPb5RkBtZ +02/07/2018,Sports_celeb,@MikeTyson,"VEGAS: Come meet me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/V1wEhuQzKr" +02/07/2018,Sports_celeb,@MikeTyson,#Heavyweightchamp turned into #tennisballboy. Typical #Monday now https://t.co/E9cNU7khcY https://t.co/hUrAZAs5vZ +02/06/2018,Sports_celeb,@MikeTyson,Congrats to Elon Musk for a successful launch #SpaceX #FalconHeavy #ElonMusk #MikeTyson +02/06/2018,Sports_celeb,@MikeTyson,"Can't believe he is already 7. https://t.co/j8GwhjpGmn +・・・ +Birthday video 😂 https://t.co/05JBZsaNdc" +02/06/2018,Sports_celeb,@MikeTyson,Getting ready for liftoff..do you think the test will pass or fail? #SpaceX #spacexlaunch #FalconHeavy #FalconHeavyLaunch #MikeTyson +02/06/2018,Sports_celeb,@MikeTyson,Listen to my convo with @RealAJBenza about Trump and much more on my podcast. Thanks AJ Benza for an awesome interv… https://t.co/dcU3YRaVV2 +02/05/2018,Sports_celeb,@MikeTyson,"Martin Lawrence and me talk about day jobs. +https://t.co/DUxIpQMcDR +・・・ +#BiteTheMic #MikeTyson #HipHop #MMA #Boxing… https://t.co/icQGG7kQ1o" +02/05/2018,Sports_celeb,@MikeTyson,#TennisDad https://t.co/0fVuOBvLMu +02/04/2018,Sports_celeb,@MikeTyson,"WrestleMania crew in 2010 with my +son Amir. @TripleH and @wwehornswoggle +https://t.co/eNe0bfxXib https://t.co/QHSBvYCmkV" +02/03/2018,Sports_celeb,@MikeTyson,"Super Bowl throwback commercial with son https://t.co/eNe0bfxXib. 😂 #Repost +・・・ +""Throwback to when i Shot this sup… https://t.co/LOmUTldxFO" +02/03/2018,Sports_celeb,@MikeTyson,"Listen to me and @OscarDeLaHoya discuss @Canelo vs. @GGGBoxing 2. +CLICK->https://t.co/DUxIpQMcDR +#BiteTheMic… https://t.co/S96c2hcnOX" +02/03/2018,Sports_celeb,@MikeTyson,"With the family. +#Repost https://t.co/OVeiepKroo +・・・ +Us Tyson triplets 😄🤣 family night out 💋💋❤️ @sugarfactorylv… https://t.co/zxGrevy55m" +02/02/2018,Sports_celeb,@MikeTyson,"Listen to me talk about when Will Smith used to be wild. https://t.co/DUxIpQMcDR +#MikeTyson #Podcast #WillSmith… https://t.co/coXp16TVga" +02/02/2018,Sports_celeb,@MikeTyson,A well rounded kid is a good kid. Have your kid try all kinds of activities. https://t.co/aIuoKCVcrE #Repost https://t.co/WQJib3SOWS +02/02/2018,Sports_celeb,@MikeTyson,Statistics show that kids are more successful in whatever path they decide to take in life when parents are more in… https://t.co/LdlK2WOvKu +02/01/2018,Sports_celeb,@MikeTyson,"Martin Lawrence podcast episode is up! Follow @BitTheMicShow for more! https://t.co/DUxIpQMcDR + +@realmartymar… https://t.co/7Qr3dgRD9V" +02/01/2018,Sports_celeb,@MikeTyson,Who do you got? #Canelo or #GGG? https://t.co/crRYLvtSwI +01/31/2018,Sports_celeb,@MikeTyson,Hanging with my mini-me #tennis #fatherandson send me a 👊🏽 if you are hanging with your kids this weekend… https://t.co/C7qIuu1QVv +01/31/2018,Sports_celeb,@MikeTyson,"CLICK->https://t.co/DUxIpQMcDR +Listen to @OscarDeLaHoya and me talk about @MannyPacquiao vs. @TheNotoriousMMA on… https://t.co/eD5hfQOUWx" +01/30/2018,Sports_celeb,@MikeTyson,"Amir is #teampatriots who you got to win? #Patriots or #Eagles #SuperBowl2018 #Repost https://t.co/mvouMV8OM1 +・・・… https://t.co/GkeJ2iWGWO" +01/30/2018,Sports_celeb,@MikeTyson,"CLICK->https://t.co/DUxIpQMcDR to listen to my interview with @OscarDeLaHoya on my podcast, @BiteTheMicShow. Follow… https://t.co/8maUJD3WV0" +01/30/2018,Sports_celeb,@MikeTyson,CLICK ->https://t.co/DUxIpQMcDR and listen about the first time I met @MichaelJackson. Follow @BiteTheMicShow for… https://t.co/DriUywhifS +01/30/2018,Sports_celeb,@MikeTyson,He just started. Not trying to box just trying to stay fit. #FamilyWorkoutSession #Repost @miguelltyson on Instagra… https://t.co/7dLxf0m4y5 +01/28/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See yo… https://t.co/LB1gFSRzym +01/27/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/sfEz0uuVyg +01/26/2018,Sports_celeb,@MikeTyson,"It’s my fists against @JCVD and @AlainMoussi in #KICKBOXERRETALIATION, available today on demand! Get it on iTunes:… https://t.co/ryimoPo7Nf" +01/26/2018,Sports_celeb,@MikeTyson,Check out my podcast... ->https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more! #BiteTheMic #MikeTyson… https://t.co/5JRuenJ2an +01/25/2018,Sports_celeb,@MikeTyson,Listen to me talk about my amazing pigeons on part 2 of my interview with @BigBoy ⟶https://t.co/DUxIpQMcDR Follow… https://t.co/W5Ud0GH1pW +01/24/2018,Sports_celeb,@MikeTyson,New hilarious episode of the podcast with @BigBoy → https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more.… https://t.co/lB0JXyMnAs +01/23/2018,Sports_celeb,@MikeTyson,New episode of the podcast with @BigBoy >https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more. #BiteTheMic… https://t.co/yN9qvix7eP +01/22/2018,Sports_celeb,@MikeTyson,Watching podcast partner @rosenbergradio on the kickoff for #Raw25 !! Congrats on 25 years @WWE and here’s to 25 more! +01/22/2018,Sports_celeb,@MikeTyson,Brooklyn Born. Brooklyn Strong. #Brooklyn roots. #KnowYourRoots @rootsoffight https://t.co/Mzg0Jr7pyh https://t.co/kFcIc0MYt1 +01/12/2018,Sports_celeb,@MikeTyson,"Coming to Hawaii on Jan 20th is the critically acclaimed One Man Show ""Undisputed Truth Round 2"". Live appearance a… https://t.co/WemQNAxccL" +01/11/2018,Sports_celeb,@MikeTyson,"VEGAS: Signing autographs this week at @TristarVegas, @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See… https://t.co/TIlmT6BNb1" +12/26/2017,Sports_celeb,@MikeTyson,"LAS VEGAS: Signing autographs this week at @TristarVegas (Friday and Sunday), @FODCaesars (Friday through Monday) &… https://t.co/cb3ZRtdbfR" +12/24/2017,Sports_celeb,@MikeTyson,Never thought you would see Iron Mike on @usta #NationalCampus #tenniscourt! Anything for daughter Milan (… https://t.co/Cgf1oY72su +12/24/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you there! https://t.co/pk5T14MuQB +12/23/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @FODVenetian and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you soon! https://t.co/EvGkd0z0k4 +12/22/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you there! https://t.co/PkLVej5zs6 +12/20/2017,Sports_celeb,@MikeTyson,.@superjudah is getting back in the ring. Make sure you are tuned in. Jan. 27th #dekadafightnight… https://t.co/jCoZZ2fcQM +12/19/2017,Sports_celeb,@MikeTyson,"LAS VEGAS: Signing autographs this week at @TristarVegas, @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2… https://t.co/871gHWI316" +12/08/2017,Sports_celeb,@MikeTyson,This new #KidDynamite melton bomber jacket from @rootsoffight brings back a lot of great memories of early years! I… https://t.co/M13SAyE0Tz +11/27/2017,Sports_celeb,@MikeTyson,"#ICYMI Hey #IronMike fans, last chance to grab #KidDynamite collection for #CyberMonday #KnowyourRoots… https://t.co/tKNGsv8U9W" +11/24/2017,Sports_celeb,@MikeTyson,.@rootsoffight doing Chi style throw back to '86. Entire collection live #BlackFriday #RootsOfFight #KnowYourRoots… https://t.co/XLwbVaBniB +11/24/2017,Sports_celeb,@MikeTyson,Meet TODAY and get autographs in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/MTJmhkbJuB +11/23/2017,Sports_celeb,@MikeTyson,"@rootsoffight having #BlackFriday sale on now. Entire #IronMike collection now live, check it out #KnowyourRoots… https://t.co/8TON58tgLp" +11/22/2017,Sports_celeb,@MikeTyson,VEGAS: Come this Friday & get autographs at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you th… https://t.co/TXvXiagvED +11/20/2017,Sports_celeb,@MikeTyson,Tonight's your last chance to see Undisputed Truth Round 2 @MGMGrand in Las Vegas! Call 866.740.7711 to get your ti… https://t.co/JsTZyfmWCG +11/15/2017,Sports_celeb,@MikeTyson,Come see Undisputed Truth Round 2 @MGMGrand Las Vegas before it's gone! Get your tickets 👉https://t.co/KOUeBrdDzz https://t.co/ITu35LY3zw +11/15/2017,Sports_celeb,@MikeTyson,"Guess who is a part of this years Synergy Global Forum speaking at the forum on November 28. Forum in Moscow, Nove… https://t.co/F4AmlKDe01" +11/13/2017,Sports_celeb,@MikeTyson,There are only 8 shows left of Undisputed Truth Round 2 @MGMGrand! Call 866.740.7711 for tickets. https://t.co/IOndXaiiJF +11/11/2017,Sports_celeb,@MikeTyson,RT @BoxingHall: Boxing Hall of Fame fall silent auction ends tomorrow (November 11th) at 3 pm. (EST). See photos and complete auction detai… +11/08/2017,Sports_celeb,@MikeTyson,There are only a few Undisputed Truth Round 2 shows left @MGMGrand Las Vegas. Get your tickets 👉… https://t.co/aqusdMMTAG +11/07/2017,Sports_celeb,@MikeTyson,"Check out who came to Undisputed Truth Round 2 @MGMGrand this past weekend... Actor & Comedian, Deon Cole. For tick… https://t.co/LExZ7LdosI" +11/07/2017,Sports_celeb,@MikeTyson,Let’s lead with kindness #PrayersforTexas #LoveNotHate https://t.co/JkmGHRHdZV +11/06/2017,Sports_celeb,@MikeTyson,Be kind to one another #PrayForTexas https://t.co/idgZRkLYZD +11/06/2017,Sports_celeb,@MikeTyson,Life has a lot of distractions. Get back to basics. #familyfirst #lovenothate #PrayersforTexas https://t.co/jN1V94QiCS +11/06/2017,Sports_celeb,@MikeTyson,Tonight I'm @MGMGrand in Las Vegas for Undisputed Truth Round 2! Get ready to laugh hard. Tickets👉… https://t.co/wCtb7z4wAm +11/04/2017,Sports_celeb,@MikeTyson,Hanging with my mini me #saturday #tennis #fatherandson send me a 👊🏽 if you are hanging with your kids this weekend https://t.co/5frmw0RfUl +11/04/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/Twgd4Z7Fyl +11/04/2017,Sports_celeb,@MikeTyson,My new hoody from @rootsoffight is here #CatskillBoxingClub is out now #RootsofFight #KnowYourRoots… https://t.co/kgWLgDgnQg +11/01/2017,Sports_celeb,@MikeTyson,There are only a few Undisputed Truth Round 2 shows left @MGMGrand in Las Vegas! Call 866.740.7711 for tickets. https://t.co/maTorSGay7 +10/31/2017,Sports_celeb,@MikeTyson,"#Vegas: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/j2DEKvqQWF" +10/30/2017,Sports_celeb,@MikeTyson,@rootsoffight just released #CatskillBoxingClub hood. This gym was the start of it all. Get yours #RootsofFight… https://t.co/pTWOZlO7Ui +10/30/2017,Sports_celeb,@MikeTyson,Meet me at Undisputed Truth Round 2 tonight @MGMGrand in Las Vegas. Click the link for tickets👉… https://t.co/pXNh3YB2w2 +10/25/2017,Sports_celeb,@MikeTyson,"My new @rootsoffight stadium jacket just dropped, get yours now! #RootsofFight #KnowYourRoots… https://t.co/nEtHa537eX" +10/25/2017,Sports_celeb,@MikeTyson,Who's ready to see me in Undisputed Truth Round 2 @MGMGrand in Vegas this weekend? Call 866.740.7711 for tickets. https://t.co/J9zNRCcGy0 +10/23/2017,Sports_celeb,@MikeTyson,Check out who visited Undisputed Truth @MGMGrand ...former NBA player @MettaWorldPeace NBA player CJ Watson &… https://t.co/P4IPdBtVpc +10/21/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See… https://t.co/MBzmbtIBfE +10/20/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars and @FODVenetian! Info: https://t.co/5Nk70P0Jv2 https://t.co/y7APSkmbvk +10/18/2017,Sports_celeb,@MikeTyson,"Welcome to the @Rootsoffight Family, @robertoduranbox. The long wait is finally over. #KnowYourRoots… https://t.co/JeRhv29iss" +10/17/2017,Sports_celeb,@MikeTyson,Jim Norton visited me at Undisputed Truth Round 2 this past weekend. Have you seen my show yet? Call (866) 740-7711… https://t.co/lrrwn9sNl1 +10/17/2017,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/Wj1BJ2F4ge" +10/12/2017,Sports_celeb,@MikeTyson,"In case you missed it, click the link to hear me talk about my first late night interview with @Joan_Rivers. ►… https://t.co/PtUslZMO87" +10/11/2017,Sports_celeb,@MikeTyson,Did you know you can meet me after the show? Click the link to learn more about Meet & Greet tickets.… https://t.co/2XOXH9Sdqt +10/10/2017,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/mj0HnYZ3Ov" +10/10/2017,Sports_celeb,@MikeTyson,"Check out who came to see Undisputed Truth Round 2 @MGMGrand this weekend, Jarrod & Brandi from Storage Wars. Ticke… https://t.co/320ShDObmE" +10/02/2017,Sports_celeb,@MikeTyson,LAS VEGAS VICTIMS' FUND https://t.co/xPc38CW1ij +10/02/2017,Sports_celeb,@MikeTyson,Sad day. Love and prayers #lasvegas. Let's not let hate win. Be kind to one another. #FightHatewithLove +09/29/2017,Sports_celeb,@MikeTyson,"Check out who came to visit my show last night... UFC fighter, @roynelsonmma aka Big Country. https://t.co/QtSH6W7YmM" +09/29/2017,Sports_celeb,@MikeTyson,Come see me TODAY in #LasVegas. I'm signing autographs at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/nLfQm2vjEP +09/28/2017,Sports_celeb,@MikeTyson,Have you bought your tickets to Undisputed Truth Round 2 @MGMGrand in Las Vegas? Tickets👉https://t.co/KOUeBrdDzz https://t.co/SMSsJDF89l +09/26/2017,Sports_celeb,@MikeTyson,"#LasVegas: Excited to meet everyone this week at @TristarVegas Fri. 1:30-3, at @FODCaesars Fri. & Sat. 3:30-5 & at… https://t.co/i4YjXIau0s" +09/26/2017,Sports_celeb,@MikeTyson,"Start with small investment, finish big; start with @tradeonetwo! #MikeTysonForTrade12 #MikeTyson +Trade12 Website:… https://t.co/8PShKg1f9R" +09/25/2017,Sports_celeb,@MikeTyson,"Undisputed Truth Round 2 is a no-holds-barred, one-man show. Don’t miss it! Call 866.740.7711 for tickets. https://t.co/4TnJ5sRMd6" +09/20/2017,Sports_celeb,@MikeTyson,In case you missed it. Click the link and listen to the WWE episode. ► https://t.co/MArlE0cdFE Full source video is… https://t.co/6GNPHm1qDc +09/20/2017,Sports_celeb,@MikeTyson,Round 2 of Undisputed Truth is now @MGMGrand Las Vegas! Call (866) 740-7711 to book your tickets. https://t.co/O0KO4Y5jXH +09/19/2017,Sports_celeb,@MikeTyson,.@MarlonWayans visited me at Undisputed Truth Round 2 this past weekend. Have you seen me at @MGMGrand Las Vegas? T… https://t.co/gM6aB8ydXK +09/19/2017,Sports_celeb,@MikeTyson,"Hey Houston I'll be there this Wed 9/20 @fitermansports, portion of proceeds donated to hurricane victims. Get Info… https://t.co/yUpSW8QXv0" +09/18/2017,Sports_celeb,@MikeTyson,Look who magically appeared at my sold out show #undisputedtruthround2 last night... David Copperfield… https://t.co/Jw989FgixO +09/18/2017,Sports_celeb,@MikeTyson,Check out my latest Q&A with @LasVegasWeekly where I discuss Round 2 of Undisputed Truth @MGMGrand Las Vegas.… https://t.co/WEXaxTPILW +09/16/2017,Sports_celeb,@MikeTyson,Get my thoughts on the fight in the Mayweather/McGregor episode/boxing episode. Be sure to buy it on PPV.… https://t.co/3rRCMXr6yI +09/16/2017,Sports_celeb,@MikeTyson,Come see me TODAY and get my autograph in #LasVegas at @FODVenetian and @FODCaesars! Info: https://t.co/5Nk70P0Jv2… https://t.co/UcTjssWmK8 +09/16/2017,Sports_celeb,@MikeTyson,Excited to meet everyone TODAY in #LasVegas! I'm signing autographs at @TristarVegas and @FODCaesars. Info:… https://t.co/CknPW5zN9v +09/16/2017,Sports_celeb,@MikeTyson,Get my thoughts on the fight in the Mayweather/McGregor episode/boxing episode. Be sure to buy it on PPV.… https://t.co/aN6UJlJAkG +09/15/2017,Sports_celeb,@MikeTyson,"If you don't know, now you know. Grab your @rootsoffight T while it's still in stock. #RootsofFight #BMOTP… https://t.co/xV0MAz2R89" +09/13/2017,Sports_celeb,@MikeTyson,Listen to me talk about my hall of fame career in the WWE like you have never heard before! ►… https://t.co/SBB6IIQ7lq +09/13/2017,Sports_celeb,@MikeTyson,"VEGAS: Meet me this week & get my autograph at @FODCaesars, @FODVenetian & @TristarVegas! Info:… https://t.co/2uQ8pcZ6CO" +09/13/2017,Sports_celeb,@MikeTyson,Check out all upcoming Undisputed Truth Round 2 show dates @MGMGrand on our Facebook Events page.… https://t.co/S8HzTLyvw3 +09/12/2017,Sports_celeb,@MikeTyson,Check out who came through last night #RHOBH Dorit & PK Kemsley & UFC's @ymedeiros after the show. You too can meet… https://t.co/MHsWJf23wr +09/11/2017,Sports_celeb,@MikeTyson,Click the link for the full recap of the Mayweather/McGregor fight. ► https://t.co/MArlE0cdFE @Rosenbergradio… https://t.co/npjlduOMVh +09/11/2017,Sports_celeb,@MikeTyson,"Tomorrow, Sept. 12 is your last chance to cast your vote for me in @TheBestOfLV Awards! Click the link to vote:… https://t.co/iVsn0sQqz4" +09/10/2017,Sports_celeb,@MikeTyson,Congratulations to @sloanestephens for an awesome comeback win. You are an inspiration to girls everywhere includin… https://t.co/wR4YoOp5wv +09/09/2017,Sports_celeb,@MikeTyson,Tune into me all day on @eminem's @shade45 wilding out with @djwhookid #WhoolywoodShuffle #undisputedtruthround2 💥 https://t.co/ZYMB1gOCTa +09/09/2017,Sports_celeb,@MikeTyson,Click the link for the full recap of the Mayweather/McGregor fight. ► https://t.co/MArlE0cdFE @Rosenbergradio… https://t.co/99xDQjf479 +09/07/2017,Sports_celeb,@MikeTyson,Watch me on @JimmyKimmel – Tonight on ABC! #KIMMEL https://t.co/zCGbZtx5Hg +09/06/2017,Sports_celeb,@MikeTyson,Undisputed Truth Round 2 opens tomorrow night @MGMGrand in Las Vegas! Get your tickets👉https://t.co/KOUeBrdDzz https://t.co/FbSeocTqkE +09/05/2017,Sports_celeb,@MikeTyson,New episode of my podcast is up. Be sure to listen and get my take on the McGregor/Mayweather fight… https://t.co/aLfkv3x0QI +09/05/2017,Sports_celeb,@MikeTyson,Remember to vote for me as Best Resident Performer/Headliner in @TheBestofLV Awards! Cast your vote here:… https://t.co/veNXYs0CJm +09/04/2017,Sports_celeb,@MikeTyson,Click the link to listen to the full interview ► https://t.co/s3aloLUPR1 @Rosenbergradio #Boxing #HipHop #MikeTyson… https://t.co/2VRqQB3oZH +09/04/2017,Sports_celeb,@MikeTyson,Mike Tyson Undisputed Truth Round 2 starts in a few days! Who's ready for another knock out performance?😉 https://t.co/dJPfeT4Ysi +09/02/2017,Sports_celeb,@MikeTyson,Click the link to listen to the full interview ► https://t.co/f6uDtxm5H2 @Rosenbergradio #Boxing #HipHop #MikeTyson https://t.co/W26Zd6oBPJ +09/01/2017,Sports_celeb,@MikeTyson,The @rootsoffight End of Summer #Sale is officially on! Head to https://t.co/Il5Ka9Q1uS to check out my #IronMike g… https://t.co/KdCRGr37n3 +08/31/2017,Sports_celeb,@MikeTyson,Click the link to listen ► https://t.co/sfhmMOrC3C @Rosenbergradio #Boxing #HipHop #MikeTyson #MichaelJackson https://t.co/sO28JLpr8G +08/30/2017,Sports_celeb,@MikeTyson,Round 2 of my Undisputed Truth @MGMGrand starts September 7th! Call (866) 740-7711 to book your tickets.… https://t.co/oXOg1NvK5f +08/30/2017,Sports_celeb,@MikeTyson,Every little counts for #HurricaneHarvey. I donated. Visit https://t.co/XbKW5UHBZj or call 1-800-RED CROSS to dona… https://t.co/QwdGtfEsqP +08/29/2017,Sports_celeb,@MikeTyson,Click the link to listen ► https://t.co/tVmlYTGgjn @Rosenbergradio #Boxing https://t.co/6LRpCmaaYk +08/29/2017,Sports_celeb,@MikeTyson,Vote for Mike Tyson Undisputed Truth Round 2 as Best Resident Performer in the @TheBestOfLV Awards! Click to vote:… https://t.co/q9aBkgwrCK +08/28/2017,Sports_celeb,@MikeTyson,Are you ready for Undisputed Truth Round 2? I'm back on stage @MGMGrand Las Vegas on Sept. 7th! Tickets:… https://t.co/QD2dtnnKFL +08/26/2017,Sports_celeb,@MikeTyson,Only my super fans will know who Teddy Atlas is. Listen to the most recent podcast to find out! ►… https://t.co/ygqmJgcgQs +08/26/2017,Sports_celeb,@MikeTyson,TODAY in #LasVegas: Meet me and my autograph at @FODVenetian & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 +08/25/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you soon! +08/24/2017,Sports_celeb,@MikeTyson,Listen to my podcast as we do a deep dive on my relationship with Cus like you have never heard before! ►… https://t.co/C8cSJWyMMk +08/24/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODVenetian & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 +08/24/2017,Sports_celeb,@MikeTyson,"VEGAS: Meet me this week & get my autograph at @FODCaesars, @FODVenetian & @TristarVegas! Info: https://t.co/5Nk70P0Jv2 See you there!" +08/23/2017,Sports_celeb,@MikeTyson,Mike Tyson Undisputed Truth Round 2 is @MGMGrand Las Vegas for a limited time! Call 866.740.7711 to get your ticket… https://t.co/1iYKl8RU2H +08/22/2017,Sports_celeb,@MikeTyson,"Still recovering from back surgery, interview with @JRsBBQ and @Rosenbergradio as they discuss my WWE career… https://t.co/MSXL3YVGJ3" +08/21/2017,Sports_celeb,@MikeTyson,"https://t.co/LrlPV1USH8 +Build your investment with @tradeonetwo! #MikeTysonforTrade12 #Trade12 +Trade12 Website:… https://t.co/9XZqNyViX1" +08/21/2017,Sports_celeb,@MikeTyson,"Mike Tyson Undisputed Truth Round 2 starts Thursday, September 7th @MGMGrand Las Vegas! Get your tickets👉… https://t.co/Lkn74N37ts" +08/20/2017,Sports_celeb,@MikeTyson,Learn how I pulled from pro wrestling & movies to come up with some of my most ruthless phrases Part 1/2▶… https://t.co/TN00DWWoi8 +08/18/2017,Sports_celeb,@MikeTyson,"I’m back @MGMGrand in Las Vegas for Undisputed Truth Round 2 starting Thursday, September 7th! Get your tickets👉… https://t.co/mGQ1AXXWi5" +08/18/2017,Sports_celeb,@MikeTyson,"While I recover from back surgery enjoy this early interview with my co-host, @Rosenbergradio. Part 1/2▶… https://t.co/iAHPqfcuVK" +08/17/2017,Sports_celeb,@MikeTyson,"While I recover from back surgery enjoy this early interview with my co-host, @Rosenbergradio and me. Part 2▶… https://t.co/AheErZvdAR" +06/30/2018,Sports_celeb,@GeorgeForeman,Off till tomorrow! Love you guys “Fly your flags for the 4 of July I will. Don’t allow anyone to make you ashamed o… https://t.co/UKM2q8IIcG +06/30/2018,Sports_celeb,@GeorgeForeman,I was gone either way! https://t.co/9xJnRAYdLO +06/30/2018,Sports_celeb,@GeorgeForeman,"Sure was special to me: Louis Over Scheming, Ali I’ve Foreman, Frazier I’ve Ali (1) were so much bigger https://t.co/oIHvq0TDmb" +06/30/2018,Sports_celeb,@GeorgeForeman,I do hope Tyson Fury make it all the way back. Doesn’t matter how we fall it getting back up that make us Hero’s https://t.co/pnDoluZKE3 +06/30/2018,Sports_celeb,@GeorgeForeman,It fighting all over again; my strength was management! https://t.co/BepZMTlEI8 +06/30/2018,Sports_celeb,@GeorgeForeman,In his early years Ali had so much fun. Fun loving was a gift I wish I’d stolen from him ( as a young boxer) https://t.co/7VqUDDQzsI +06/30/2018,Sports_celeb,@GeorgeForeman,"BLTN was so much fun; but had our last season. So much travel, we will mis each other it made is special oh the lov… https://t.co/XIowWDTVWv" +06/30/2018,Sports_celeb,@GeorgeForeman,The best fighters today could have the best at anytime; Wilder & Joshua https://t.co/jpRXG5BgYv +06/30/2018,Sports_celeb,@GeorgeForeman,RT @ExceedingA: @GeorgeForeman Amen!!! +06/30/2018,Sports_celeb,@GeorgeForeman,Liston was a mountain like no other; him beating Cleveland William cemented his greatness against all Big punchers… https://t.co/9nmJXlcRGv +06/30/2018,Sports_celeb,@GeorgeForeman,Both are big Talents https://t.co/cDwYCAy9ns +06/30/2018,Sports_celeb,@GeorgeForeman,Naw! I had too much of too many https://t.co/TUVdZgr93b +06/30/2018,Sports_celeb,@GeorgeForeman,I became a Minister; knowing what others thought about it! Went against everything knew and believed. Facing family… https://t.co/g3FX21NY33 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @apajr2: @GeorgeForeman Amen!! https://t.co/nAHE8JdqWD +06/30/2018,Sports_celeb,@GeorgeForeman,RT @amagicmonkfish: @GeorgeForeman Amen! Good sir +06/30/2018,Sports_celeb,@GeorgeForeman,That’s not weight! https://t.co/nZBmHQVmVR +06/30/2018,Sports_celeb,@GeorgeForeman,Your dad and I both; we just didn’t know the Champ’s heart. But I miss the dude everyday https://t.co/SurSnoAFU1 +06/30/2018,Sports_celeb,@GeorgeForeman,Best wishes to all the men & women who love the USA and proudly ware the colors in battle. All my Love https://t.co/Tpo4xlU2Yd +06/30/2018,Sports_celeb,@GeorgeForeman,Back at you my friend https://t.co/MoCDs9JXpE +06/30/2018,Sports_celeb,@GeorgeForeman,RT @KamizonoCopen: @GeorgeForeman Amen!! +06/30/2018,Sports_celeb,@GeorgeForeman,That Shavers could hit! https://t.co/0OOqUepYff +06/30/2018,Sports_celeb,@GeorgeForeman,Agreed https://t.co/U6KxSTw43s +06/30/2018,Sports_celeb,@GeorgeForeman,RT @xarph: Seriously @GeorgeForeman Twitter is a beacon of light in these dark times. It's like the post Thanksgiving dinner living room wi… +06/30/2018,Sports_celeb,@GeorgeForeman,Can’t truly argue that! Tyson was all that and more https://t.co/1uTwPnbooO +06/30/2018,Sports_celeb,@GeorgeForeman,The comeback featured weightlifting it helped with injuries https://t.co/NkXdUS0HWq +06/30/2018,Sports_celeb,@GeorgeForeman,RT @jppower48: @GeorgeForeman Amen 🙏🇬🇧 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @Dataro39Dave: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,I think you did a fair job yourself; Liston/ Tyson interchangeable https://t.co/ccxX0hbD6y +06/30/2018,Sports_celeb,@GeorgeForeman,I was thinking while lying on the floor “what excuse can I come up with this time?Better get up till I think of som… https://t.co/3nr16B8uWP +06/30/2018,Sports_celeb,@GeorgeForeman,RT @wetbulldog: AMEN and God bless!! https://t.co/7EoMqdsFnm +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @LucaSalvarani11: @GeorgeForeman Amen, real warrior, true hero!" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @lgreglarue: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RPopBox: @GeorgeForeman Amen Champ!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @Petedaly321: @GeorgeForeman Amen George!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @EnnioBossi: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @matthewhollie: Amen, Big George. https://t.co/z6LfBkSVG7" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @julesnohrenberg: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @barchyman: @GeorgeForeman From one second-career pastor to another: AMEN! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @DanSchulz_: @GeorgeForeman AMEN George. +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @bdeyal1: @GeorgeForeman Amen Big George! + +And now in its original language Hebrew: + +אמן!" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @ajc725: @GeorgeForeman Amen from Chicago, champ!" +06/30/2018,Sports_celeb,@GeorgeForeman,I think Ali was https://t.co/CSsIqYBHBH +06/30/2018,Sports_celeb,@GeorgeForeman,RT @momridethewip: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,"So funny, 3-1 Foreman ( with honey ) https://t.co/8hvzuNDUsS" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @vampirejesse23: @griff0767 @GeorgeForeman Amen From Glasgow, Scotland!!!" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @shehryarali: @GeorgeForeman Amen, Champ. Amen." +06/30/2018,Sports_celeb,@GeorgeForeman,Fried chicken Bar. Match wing for wing https://t.co/oy7j3UA14f +06/30/2018,Sports_celeb,@GeorgeForeman,RT @halfpint_SRC: @maindoka @GeorgeForeman Amen!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @PaddyBrooks: Amen https://t.co/GfXyBiTwiV +06/30/2018,Sports_celeb,@GeorgeForeman,RT @CDCI85: @GeorgeForeman Amen George +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @joseantoniogall: Amen from Spain , champ! https://t.co/ZqKamqbSXA" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JimP3737: Amen https://t.co/x5rh7zmh0Y +06/30/2018,Sports_celeb,@GeorgeForeman,RT @gary_murrieta: @GeorgeForeman AMEN!!!! +06/30/2018,Sports_celeb,@GeorgeForeman,Don’t think so. He had my number https://t.co/5vC9pLzkHd +06/30/2018,Sports_celeb,@GeorgeForeman,RT @QhaweMadonko: @GeorgeForeman amen brother +06/30/2018,Sports_celeb,@GeorgeForeman,RT @WilfySafc: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @Thomas77321627: @GeorgeForeman Amen from Manitoba, Canada" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @PaulBachmann1: @GeorgeForeman Amen my friend. Always good to see you. +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @davesportsgod: @GeorgeForeman ""Amen!""" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @isawesome_life: @GeorgeForeman Amen, my dear Brother!" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JohnDCoville1: @GeorgeForeman Amen Champ!...you look to be in fighting shape. 👍 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @griff0767: Amen! https://t.co/d6pTyqp19t +06/30/2018,Sports_celeb,@GeorgeForeman,RT @casewinedrinker: @GeorgeForeman Amen Big George +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RGoodman46805: @GeorgeForeman A big Amen comin' at ya! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @CuboidCYBORG: @GeorgeForeman Amen brother George +06/30/2018,Sports_celeb,@GeorgeForeman,RT @7Cookies4me: @GeorgeForeman Amen Champ! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @maindoka: Amen https://t.co/6ZndBavvNs +06/30/2018,Sports_celeb,@GeorgeForeman,RT @SteelergalMiche: @GeorgeForeman Amen George!! From California! ✌❤ +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @lsjeff: @GeorgeForeman George, i have my own thoughts on religion, but when a guy of 6.4 built like you says can i get an amen... I say…" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @will2survive71: @GeorgeForeman AMEN!!!!!!!!!!!😃 +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @JohnStarr4: @GeorgeForeman Amen, and pass the smelling salt." +06/30/2018,Sports_celeb,@GeorgeForeman,RT @okko1976: @GeorgeForeman Amen big George all the way from New Zealand!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JayhawkLuvr: @GeorgeForeman Amen! MAGA🇺🇸 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RJersey_devil: @GeorgeForeman 50th Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @swrazer1: @GeorgeForeman Amen! Happy 4th Champ https://t.co/Sodzkdw43S +06/30/2018,Sports_celeb,@GeorgeForeman,RT @tincup2442: Amen https://t.co/ZJ1TylK7ig +06/30/2018,Sports_celeb,@GeorgeForeman,RT @kingman99: Amen https://t.co/ZyK60D13wu +06/30/2018,Sports_celeb,@GeorgeForeman,RT @130kali: Amen https://t.co/FxLNbIsad5 +06/29/2018,Sports_celeb,@GeorgeForeman,"Alright I said “Amen,” can I get an Amen, Gimme an Amen! +USA Big day is coming https://t.co/1oLTIfPums" +06/29/2018,Sports_celeb,@GeorgeForeman,RT @ATRboxinguk: 10 years since he retired but Joe Calzaghe still got those fast hands! 🔥 https://t.co/53qIQHas5W +06/29/2018,Sports_celeb,@GeorgeForeman,Larry’s name will out last a lot of Champs In The future. His time will come when praise will hep on his head. https://t.co/W87XvgI6jf +06/27/2018,Sports_celeb,@GeorgeForeman,Louis was a lot younger than I was when I fought Moore. He was a babe when he fought Marciano ( I been there ) https://t.co/lodGSdVRzI +06/27/2018,Sports_celeb,@GeorgeForeman,"He actually dropped Liston with quick right, ( clipped me with it ) +Listion could have gotten up though. +He just di… https://t.co/I8Wa1dcGqM" +06/27/2018,Sports_celeb,@GeorgeForeman,Upfront money has to be big. No one is talking the right pay. If they can make the payday with others why not? https://t.co/XdfHf5loXp +06/27/2018,Sports_celeb,@GeorgeForeman,"Upfront gotta be big That’s all. +G https://t.co/XdfHf5loXp" +06/26/2018,Sports_celeb,@GeorgeForeman,Liston was a great Athlete; he had such big hands that I saw him do great feats of strength with ( out of the ri… https://t.co/qGAHpa218f +06/26/2018,Sports_celeb,@GeorgeForeman,No one really said ( to me ) but this guy was special & boxing wasn’t even half of what he really did with his life… https://t.co/yOkvzqvUd7 +06/26/2018,Sports_celeb,@GeorgeForeman,The Champ could take a shot! https://t.co/hn3PKar2jp +06/26/2018,Sports_celeb,@GeorgeForeman,"This is true, I was so in the ring with both Liston & Cleavland William ( sparing ) https://t.co/Tk9SFshEHG" +06/24/2018,Sports_celeb,@GeorgeForeman,Charlie Shipes; my favorite ( personal) Boxer. I hired Dick Sadler. Because I wanted to learn Shipes style. https://t.co/U7B0esGFgn +06/24/2018,Sports_celeb,@GeorgeForeman,"Can’t go wrong there, he learned from Blackburn https://t.co/fvMBIEN9kO" +06/24/2018,Sports_celeb,@GeorgeForeman,"Not very well, against Louis/ didn’t do well against Ali for sure. https://t.co/4adnOB3py8" +06/24/2018,Sports_celeb,@GeorgeForeman,"No one punched like Joe Louis. +Phenomenal delivery https://t.co/0JUaW6G66S" +06/24/2018,Sports_celeb,@GeorgeForeman,You got it right Chuvalo & Ali Chins of steel No one else. https://t.co/G5Qdi2yDv3 +06/24/2018,Sports_celeb,@GeorgeForeman,Jack Blackburn ( Joe Louis ) and a few others he trained to be Champs Angelo Dundee; greatest cornerman ever. What… https://t.co/8NzuCmddyS +06/24/2018,Sports_celeb,@GeorgeForeman,Morrison was a very Skillful Boxer/puncher. Miss him https://t.co/TrUBFjIsSy +06/23/2018,Sports_celeb,@GeorgeForeman,"@midastouch1971 PO Box 1404 Huffman Tx 77336 +Bgfuzzy2@aol.com" +06/23/2018,Sports_celeb,@GeorgeForeman,They may have been made to order for me; but no way I’d said “may I have Tyson/ Marciano on my plate. killers to go… https://t.co/8M614VKwbY +06/23/2018,Sports_celeb,@GeorgeForeman,Spent many hours with Emile so fun fun loving. Always a smile and kind greeting; made boxing class https://t.co/gqF3Q9OWDF +06/23/2018,Sports_celeb,@GeorgeForeman,"Well, the names you mentioned after are no less than great, happy you put me in the mix; but let’s face it Ray Robe… https://t.co/1tXnA8hI0l" +06/23/2018,Sports_celeb,@GeorgeForeman,"UK Boxing fans are ranked #1 in my book. +Along with Las Vegas https://t.co/6JZRFbEwp3" +06/23/2018,Sports_celeb,@GeorgeForeman,Yeah indeed https://t.co/jeigud5s8z +06/21/2018,Sports_celeb,@GeorgeForeman,"Great things still happen in sports NY,NY https://t.co/1Nqa47QZE3" +06/21/2018,Sports_celeb,@GeorgeForeman,It’s about being healthy for the seventh inning stretch https://t.co/RZY6Ei711z +06/20/2018,Sports_celeb,@GeorgeForeman,Easy to forget how important each person is. Every stone we throw seems to ricochet back at us; with 10 kids I keep… https://t.co/kWbjPyKQsu +06/20/2018,Sports_celeb,@GeorgeForeman,"If I could stand on the highest peek and scream 3 words ( the world could hear ) before I pass, I’d say “I Love You… https://t.co/oqWXUNADvP" +06/19/2018,Sports_celeb,@GeorgeForeman,https://t.co/h35DPBDF4T +06/18/2018,Sports_celeb,@GeorgeForeman,Clay Hodges beat me twice! Another one who had my number ( amateurs ) https://t.co/n9C6wznRhT +06/17/2018,Sports_celeb,@GeorgeForeman,Have you heard of “Rope a dope” well here I am “The Dope.” Happy Father’s Day https://t.co/BhN6SWlIYD +06/15/2018,Sports_celeb,@GeorgeForeman,"Just very scary in the first fight, Frazier had beaten them all, Big & small. Dropped Ali who had a chin iron https://t.co/T3maZa5Dsh" +06/15/2018,Sports_celeb,@GeorgeForeman,"RT @andrewakang: I'll be sporting my new favorite tank top all summer. One of my heroes, @GeorgeForeman. Maybe I'll wash it a few times at…" +06/15/2018,Sports_celeb,@GeorgeForeman,RT @Kevo3632: @KT_BOXING Crude but effective 👊 +06/15/2018,Sports_celeb,@GeorgeForeman,"A photo with a real friend,! Scott https://t.co/oDIHXrNA1l" +06/15/2018,Sports_celeb,@GeorgeForeman,RT @CaRedzfan: @GeorgeForeman My daughter said you were a great motivational speaker. Thank you for talking to her group at @pepperdine tod… +06/15/2018,Sports_celeb,@GeorgeForeman,RT @TheTorreiran: @BoxingNewsED @GeorgeForeman I was a kid maybe 10 and I loved Frazier because he was a gentleman and he didn’t taunt peop… +06/13/2018,Sports_celeb,@GeorgeForeman,RT @BoxingPost: @GeorgeForeman The momentum you had plus the improvements you'd made going in to 1977 would have probably made you a favour… +06/13/2018,Sports_celeb,@GeorgeForeman,"RT @gary536714: @GeorgeForeman Hi Big George, Ali would beat you in your fiction book too! He would buy all the books so no one could read…" +06/13/2018,Sports_celeb,@GeorgeForeman,"RT @AnimlSalvideos: @GeorgeForeman GREATEST thing about Foreman is in his books, preface he states ""I will not refer to people based on the…" +06/13/2018,Sports_celeb,@GeorgeForeman,I met Cleveland William at (12) he came by home courting my cousin; ‘Big nice man’.mom gave him advice I just stare… https://t.co/rmtOm0CgxN +06/11/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali, at the same time ( 74) was too much of a Boxer for me. He had the height and jab to out point me. I w… https://t.co/RhF6MjPa11" +06/11/2018,Sports_celeb,@GeorgeForeman,"Love you Dude, always will; let’s keep talking “Fight.”’it’s all we have https://t.co/QUzJl2ZIai" +06/11/2018,Sports_celeb,@GeorgeForeman,"Love this Ali it was to really inspire such a quote. And the people so loved him, sure miss him today https://t.co/a7oKHu1dOT" +06/11/2018,Sports_celeb,@GeorgeForeman,Wow what writing! Thanks https://t.co/8gDWiLz8zG +06/11/2018,Sports_celeb,@GeorgeForeman,Lovely! https://t.co/3Qmqr7XUa3 +06/11/2018,Sports_celeb,@GeorgeForeman,Sonny Liston was a bit frightening; William can after so I was prepared a bit https://t.co/PUtzdAEFsA +06/11/2018,Sports_celeb,@GeorgeForeman,RT @RJersey_devil: @GeorgeForeman Why not keep it non fiction but include a George Foreman dream sequence where u dream that u beat Ali? Id… +06/11/2018,Sports_celeb,@GeorgeForeman,I’d have to check the movie scrip? https://t.co/aRMXk8kC5F +06/11/2018,Sports_celeb,@GeorgeForeman,"If I did a movie about my life, it’d have to be Fiction; cause I would have to win the Ali fight Africa “in my own… https://t.co/3WN0YHDDzK" +06/11/2018,Sports_celeb,@GeorgeForeman,"imagine Telling the story of WWII, with the glory of (D-Day ) and omitting all the Atrocities That occurred there… https://t.co/NycS6g3z6P" +06/11/2018,Sports_celeb,@GeorgeForeman,Before the match was made Ali and I were pretty close. https://t.co/j2jsXDKgIQ +06/11/2018,Sports_celeb,@GeorgeForeman,The last month with a cut over my eye. For days I couldn’t sweat; then no sparring. Challenges I over came. I was… https://t.co/IsrWsTt0eO +06/11/2018,Sports_celeb,@GeorgeForeman,"No way Ali had anything to do with it. +When I was falling all over everything ( before the punch) he almost asked m… https://t.co/B1EnGO9j1z" +06/11/2018,Sports_celeb,@GeorgeForeman,"His punch ( Ali ) sure had me hearing Bells. +That’s all I have to say about that. https://t.co/e9T3IggCnL" +06/11/2018,Sports_celeb,@GeorgeForeman,RT @yasinshah: @BruceCantrell9 @DRubberfist @PcLalalalalal @GueziBadreddine @GeorgeForeman Don't try to take away from Ali. He knocked out… +06/10/2018,Sports_celeb,@GeorgeForeman,"Hermann Niedergassel; I lost a friend and a True Legend. I got the news today, Germany is great for him and his lov… https://t.co/Z7Z3c34nC5" +06/10/2018,Sports_celeb,@GeorgeForeman,"Otis Redding ""The Glory of Love"" https://t.co/j0QqEhr1Kq via @YouTube" +06/10/2018,Sports_celeb,@GeorgeForeman,It’s a good day to stand for for something. Can’t KO a cause. No matter how you punch it stands. https://t.co/YkKVbQdY5E +06/10/2018,Sports_celeb,@GeorgeForeman,Glad to know you love our USA! https://t.co/AuqK7sJAFS +06/10/2018,Sports_celeb,@GeorgeForeman,About 3 years for me to say “Ali-Ali” https://t.co/3XTq5DDTJw +06/10/2018,Sports_celeb,@GeorgeForeman,RT @GeorgeForeman: My first ( US ) public signing; proof I did it ( fist time in 24 years I signed Everlast ) something you can pass on wi… +06/10/2018,Sports_celeb,@GeorgeForeman,“Muhammad Ali” He earned his name. Love you Bruce https://t.co/ZdaNCwbBhy +06/09/2018,Sports_celeb,@GeorgeForeman,"RT @DavidMa84365336: @GeorgeForeman @FitermanSports Nice ‘graph there, champ. Sure better than the chicken scratch that today’s athletes pa…" +06/09/2018,Sports_celeb,@GeorgeForeman,My first ( US ) public signing; proof I did it ( fist time in 24 years I signed Everlast ) something you can pass… https://t.co/ZLC01yWE1U +06/08/2018,Sports_celeb,@GeorgeForeman,"So true, I’m ever grateful https://t.co/rRtMepX8AL" +06/08/2018,Sports_celeb,@GeorgeForeman,"“Right uppercut” if I got you with it bang, Ali was smart never bend his head https://t.co/a1tNHNoIOF" +06/08/2018,Sports_celeb,@GeorgeForeman,"Ali said to me “If you take Sadler back you get the rematch” I said No, “well you’ll never get the rematch.” I neve… https://t.co/ZoClTgtmmf" +06/07/2018,Sports_celeb,@GeorgeForeman,"Wrote about in 94, BY George my autobiography. Told of it in 84, Sport Illistration. Old story it is. https://t.co/HLKV4520Bx" +06/07/2018,Sports_celeb,@GeorgeForeman,"The hardest thing was leaving family; ten years of at home dad taking kids to school, cooking & games together Hard… https://t.co/oP5Hm8w2DK" +06/07/2018,Sports_celeb,@GeorgeForeman,You can Say That again! https://t.co/fXSKIAT88t +06/07/2018,Sports_celeb,@GeorgeForeman,"RT @RTDNA: @JMMeszaros @wusf @DavidPierceUI7 @Illinois_Alma @HopkinsMedicine Our $6,000 @GeorgeForeman Scholarship for @UTAustin students g…" +06/07/2018,Sports_celeb,@GeorgeForeman,Amen Brother been there! No bee sting though more like sting “like Mule kick.” https://t.co/jwSNxOyBrT +06/07/2018,Sports_celeb,@GeorgeForeman,"I’m just happy to be alive still, the people who put drugs in my water weren’t Pharmacist; just uneducated bums.los… https://t.co/VK8zk0wLZm" +06/07/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali didn’t need any help; his style would beat Liston & me any day of the week. Too fast, took boxing to a… https://t.co/8OVrIzsewy" +06/07/2018,Sports_celeb,@GeorgeForeman,"RT @32Red: @32Red 's new best friend, ""Big George"" Foreman give's his exclusive insights on Fury's return this weekend as well as talking a…" +06/07/2018,Sports_celeb,@GeorgeForeman,I hear you friend; “to the victor goes the spoils;” defeat is lonely and the truth is the Light. https://t.co/3qWYP6K14l +06/07/2018,Sports_celeb,@GeorgeForeman,RT @IvanTheK: @GeorgeForeman My theory: That punch is responsible for you coming up with the idea for The George Foreman Lean Mean Fat-Redu… +06/07/2018,Sports_celeb,@GeorgeForeman,I’d fought them all with success; but Ali had a better plan that most https://t.co/BvbK9BO8E0 +06/07/2018,Sports_celeb,@GeorgeForeman,Makes me so happy. So Thankful https://t.co/IkObGwyhsD +06/06/2018,Sports_celeb,@GeorgeForeman,"I was drugged, but if that fast punch of Ali would have stayed put; it never would worked. So fast I didn’t see it… https://t.co/IOTPbqxuyS" +06/05/2018,Sports_celeb,@GeorgeForeman,Hope we meet again! Best wishes G https://t.co/OESsNLcze1 +06/05/2018,Sports_celeb,@GeorgeForeman,The only animals who’s guilty of abusing Humanity walked on 2 legs & eat with knife & fork. ( I too have repented) https://t.co/OpcymNOJS7 +06/05/2018,Sports_celeb,@GeorgeForeman,You can’t “we;” friend it’s you! I love Hollywood but it’s not my sores of education. ( When we were King ) go to A… https://t.co/ZjvNUBTFF1 +06/05/2018,Sports_celeb,@GeorgeForeman,When I was younger; I spoke whatever language Cinderella demanded. Married now it’s only “Yes nam- o Mam! https://t.co/v8YtqzvMsJ +06/05/2018,Sports_celeb,@GeorgeForeman,"You must travel these places. Talk to the people; ( who by the way ask me to bring Digo, my Dog ) most speak 3-5 la… https://t.co/FOftp6UMNB" +06/05/2018,Sports_celeb,@GeorgeForeman,"Africans aren’t small minded people they’re well educated. Not afraid dolls, voodoo, dogs, nor Tarzan you were miss… https://t.co/zWK8okrWzz" +06/05/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali Loved Boxing, he loved people more that he was loved ( that’s a lot ) dang I miss him https://t.co/rvj2pVaxVH" +06/05/2018,Sports_celeb,@GeorgeForeman,RT @ClydeFraziersWD: We had some #knicks fans in the crowd for game 2 of the #nbafinals. Make plans to join was on Wednesday for game @Wal… +06/02/2018,Sports_celeb,@GeorgeForeman,Everyday I wake up-put my feet on the floor and see that same “Fork in the middle of the road” first thing first..… https://t.co/o0yYIQ5gCn +06/02/2018,Sports_celeb,@GeorgeForeman,"Yes,”Never get too far from Earth that we forget we’re human beings.” Saying & doing things to others we said we’d… https://t.co/lHd5wcPmLI" +06/02/2018,Sports_celeb,@GeorgeForeman,Never been to India. I still have goals https://t.co/VeZ6ibSfXM +06/02/2018,Sports_celeb,@GeorgeForeman,RT @Magicrican: @mikeygarcia @GeorgeForeman 100% with the Champ Mr. Foreman. Mikey is the best. Many Blessings from your fans Puerto Rico. +06/02/2018,Sports_celeb,@GeorgeForeman,I was there working a couple of out yesterday. Still kicking https://t.co/l79oCQkbtX +06/01/2018,Sports_celeb,@GeorgeForeman,"Salmon steak; salt, pepper & garlic Marinade. The most dreamy thing I’ve done on the GF Grill https://t.co/QH90dgnqAe" +06/01/2018,Sports_celeb,@GeorgeForeman,"Archie Moore never mention my age: as we trained worked me as he would a kid. Encouragement enough, always felt lik… https://t.co/nYuTnATm7J" +06/01/2018,Sports_celeb,@GeorgeForeman,"Mikey Garcia, is my favorite boxer today. https://t.co/GnQ0RveKDD" +06/01/2018,Sports_celeb,@GeorgeForeman,That’s not true whatsoever! Not any part of it; We never rode together “until after Africa” Gave him a ride to LA a… https://t.co/Xu3cUYZKXU +06/01/2018,Sports_celeb,@GeorgeForeman,For a change a man record speaks for itself. I heavyweight has ever done this in a sport. 3 Gold https://t.co/TpUDkDuZ3Y +06/01/2018,Sports_celeb,@GeorgeForeman,All the above. https://t.co/AoGDHPqyhy +06/01/2018,Sports_celeb,@GeorgeForeman,That’s a lot of question; Liston in sparring made me back up; Italy in the Olympic The man sent an alarm off in my… https://t.co/GhDTbE5Du0 +06/01/2018,Sports_celeb,@GeorgeForeman,"I was too busy trying to cover up from his 50-60 shots he threw at me, to figure which 1, shot I hit him with? https://t.co/aF7z0pPdzc" +05/30/2018,Sports_celeb,@GeorgeForeman,"RT @KT_BOXING: @GeorgeForeman With Moorer, you put yourself in the line of fire to bait him in and make him confident he could take you out…" +05/30/2018,Sports_celeb,@GeorgeForeman,"I love meats; caviar, escargot and bugs while in China https://t.co/Jt7CcJInWg" +05/29/2018,Sports_celeb,@GeorgeForeman,RT @casualboxingfan: @GeorgeForeman 😂Classic reply from big George. Still sharp despite all those blows! +05/29/2018,Sports_celeb,@GeorgeForeman,None of the above! https://t.co/W9EuGViJha +05/29/2018,Sports_celeb,@GeorgeForeman,"RT @AKhan4200: @kenshiroshah @ColmMagan @McTierArt @GeorgeForeman that is not called a jab, if you are standing orthodox, ur right hand sho…" +05/29/2018,Sports_celeb,@GeorgeForeman,I would taken it; not sure if things would have been that much different? That Boy just had my number https://t.co/hQOVbc5wIo +05/29/2018,Sports_celeb,@GeorgeForeman,Didn’t think I’d need a rematch clause https://t.co/OTZFIdoswz +05/29/2018,Sports_celeb,@GeorgeForeman,"Nothing to Rat; too many movies we watch Rat a James Cagney term +“You dirty Rat” he’d say https://t.co/LiyJ8ly89D" +05/29/2018,Sports_celeb,@GeorgeForeman,"Liston just decided to quit! +G https://t.co/Qz7aRJJczf" +05/29/2018,Sports_celeb,@GeorgeForeman,“Come on George show me somethang” Ali said to me. https://t.co/7xpvTnjqKU +05/29/2018,Sports_celeb,@GeorgeForeman,Love this one! https://t.co/NqbN63TgSq +05/29/2018,Sports_celeb,@GeorgeForeman,That’s a maybe; just your opinion strange things happens when you step into a boxing ring; gotta get in one first. https://t.co/hzyZQwd6ds +05/29/2018,Sports_celeb,@GeorgeForeman,Marvin Hagler https://t.co/6w2IP6gwaB +05/29/2018,Sports_celeb,@GeorgeForeman,Basketball cause we all think we know it. Hahahaha https://t.co/4wz2arvsoY +05/29/2018,Sports_celeb,@GeorgeForeman,We talked about the whole situation as truthful as he could be. Wanted me to know https://t.co/NyTwpX0bDf +05/29/2018,Sports_celeb,@GeorgeForeman,"Love your questions; think you have the answer and I agree with you. +G https://t.co/9AouoHuQDP" +05/29/2018,Sports_celeb,@GeorgeForeman,Everyone was saying there should not be such a fight for fear I’d hurt him; if id beaten him no rematch. I got tric… https://t.co/eHm2e7pe05 +05/29/2018,Sports_celeb,@GeorgeForeman,Just get started toughening up you’ll need all the above https://t.co/8HOhcszMka +05/29/2018,Sports_celeb,@GeorgeForeman,RT @Jeffrey44623567: @GeorgeForeman Hi I went to Clearfield Utah in 1971to 1974 I saw you training got me it to boxing... +06/30/2018,Sports_celeb,@StephMcMahon,#RIPMattCappotelli You showed everyone what it means to never give up and to always stay positive. It was a honor t… https://t.co/PrAVI9VifI +06/29/2018,Sports_celeb,@StephMcMahon,RT @ShaniaTwain: What a surprise at my Montreal show... THE @FightOwensFight! @WWE https://t.co/xXHTEfl6wM +06/29/2018,Sports_celeb,@StephMcMahon,"How COOL is this?!? I’m so proud to be included as a @Mattel WWE Superstar fashion figure with these dynamic, stron… https://t.co/1az7Vi9hp2" +06/28/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@WWE Chairman & CEO @VinceMcMahon announces the historic #WWESSD at the Melbourne Cricket Ground on October 6th! https://t.co/KCq… +06/28/2018,Sports_celeb,@StephMcMahon,"RT @WWEPR: For @WWE Superstar @MsCharlotteWWE , one of the stars of @espn The Magazine's 2018 #BodyIssue , wrestling is more than just turn…" +06/28/2018,Sports_celeb,@StephMcMahon,Thank you @KentsisResearch! I suppose this tweet is the formal announcement of the #PediatricCancerActionCouncil! W… https://t.co/iJZERhoc2p +06/28/2018,Sports_celeb,@StephMcMahon,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/26/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@USA_Network and @WWE announce a five-year extension for Monday Night #Raw! https://t.co/dSB5WNGrse +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Beginning Friday, October 4, 2019, @FOXTV will air @WWE’s flagship program #SDLive as part of a new five-year agreement with @FOXS…" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWEUKCT: We're baaaaack! + +#WWEUKCT continues RIGHT NOW with the #NXTUK special, streaming only on @WWENetwork! #NXTUKCT https://t.co/tZ…" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @MsCharlotteWWE: #BODY10 with Flair! +Hits newsstands June 29th https://t.co/P6JBfHk9J5" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Starting this Sunday, @SpecialOlympics will arrive in Seattle for a celebration of hard work, talent, and triumph, and @MojoRawley…" +06/25/2018,Sports_celeb,@StephMcMahon,"RT @espn: .@MsCharlotteWWE is in ESPN the Magazine's BODY10 Issue, and she knows what it's like to strike a balance between old and new. ht…" +06/25/2018,Sports_celeb,@StephMcMahon,RT @WWEUKCT: #WWEUKCT takes center stage at London's @RoyalAlbertHall... RIGHT NOW on @WWENetwork! https://t.co/sp546EEfDF +06/25/2018,Sports_celeb,@StephMcMahon,Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue.… https://t.co/EfOYZC0WK4 +06/25/2018,Sports_celeb,@StephMcMahon,“There’s no excuse for anyone to work harder than you do.” -Derek Jeter #motivationmonday #morningmotivation https://t.co/4ROnqbeRaR +06/23/2018,Sports_celeb,@StephMcMahon,RT @TripleH: See the MUST SEE @WWEUKCT matches and the brand new #NXTUK division everyone is on talking about all from the historic @RoyalA… +06/23/2018,Sports_celeb,@StephMcMahon,The #WomensEvolution is here! Support your favorite female Superstars and RT! #WWE24 #Empowered for #Emmys. @WWE https://t.co/JbEgNgIplQ +06/23/2018,Sports_celeb,@StephMcMahon,#Emmys MEET #RAW25. At over 1300 episodes #RAW is the longest running weekly episodic television show in U.S. histo… https://t.co/wSbffl2skC +06/23/2018,Sports_celeb,@StephMcMahon,.@WWE's Facebook Watch show #WWEMMC is up for your consideration at the #Emmys. RT to help support. Voting closes t… https://t.co/shozBX4IPr +06/22/2018,Sports_celeb,@StephMcMahon,RT @WWE: Get ready for the conclusion of the 2018 @WWEUKCT with a marathon of the first round action! #WWEUKCT https://t.co/00oFuAxuSP +06/21/2018,Sports_celeb,@StephMcMahon,"RT @WWEUKCT: We're bringing ALL the First-Round #WWEUKCT action directly to you on @facebook, @Twitter, and @YouTube tomorrow at noon ET! h…" +06/21/2018,Sports_celeb,@StephMcMahon,"Thank you @scullather! I agree, what a privilege to be alongside these incredible brands and people! https://t.co/fijDYWPsB9" +06/21/2018,Sports_celeb,@StephMcMahon,Agreed! Thanks again @cnbcKaren! https://t.co/b5XPGgJmaG +06/21/2018,Sports_celeb,@StephMcMahon,The feeling is mutual @weareTFQ!!! https://t.co/XzWjLJfOPn +06/21/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Are you ready? @WWE @MaeYoungClassic 2018 will be held on Wednesday, Aug. 8 & Thursday, Aug. 9 at @FullSail, and YOU can secure yo…" +06/20/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Chicago... +#NXTTakeover and #MITB +London... +@RoyalAlbertHall, #NXTUK, #WWEUKCT +Cannes, France... +#CannesLion +Off to Orlando...…" +06/20/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Leon White entertained (and intimidated) audiences all over the world with his size, strength, and agility. Saddened to hear o…" +06/20/2018,Sports_celeb,@StephMcMahon,So grateful to have this #Bawse as a friend and an inspiration! I love you @IISuperwomanII!!! #Sisterhood #GirlLove… https://t.co/9vKNBIjpcr +06/20/2018,Sports_celeb,@StephMcMahon,So cool driving around with this hot mama @cnbcKaren in a McLaren 570S around #CannesLions for #WhatDrivesYou https://t.co/3xzZ3wReZf +06/20/2018,Sports_celeb,@StephMcMahon,RT @WWE: It will ALWAYS be Vader Time. #RIPVader https://t.co/Zg50TuP5v2 +06/20/2018,Sports_celeb,@StephMcMahon,"RT @MsCharlotteWWE: No designer clothes, no makeup, no filters. +Nothing to hide. Everything to be proud of. +Every woman is a queen, never f…" +06/19/2018,Sports_celeb,@StephMcMahon,RT @WWE: Meet one-of-a-kind soul and @SpecialOlympics athlete Joshua Oakley! #WWEHero #SpecialOlympicsUSAGames https://t.co/4kAXoZFpAp +06/19/2018,Sports_celeb,@StephMcMahon,RT @WWE: Congratulations to @JohnCena on being named a finalist for @ESPN's Muhammad Ali Sports Humanitarian Award! https://t.co/umn7UfWEAB +06/19/2018,Sports_celeb,@StephMcMahon,RT @cnbcipr: .@WWE Chief Brand Officer @StephMcMahon with @cnbcKaren before taking a spin in the @CNBCi @McLarenAuto #WhatDrivesYou #Cannes… +06/19/2018,Sports_celeb,@StephMcMahon,"RT @WWE: An honor fit for a Queen. Congratulations to @MsCharlotteWWE who will be featured in @espn The Magazine’s #Body10 on Friday, June…" +06/19/2018,Sports_celeb,@StephMcMahon,RT @weareTFQ: Influence and impact: give back with generosity and use your platform for change! @ShelleyZalis @StephMcMahon @badassboz @IIS… +06/19/2018,Sports_celeb,@StephMcMahon,"Excited to be back at #CannesLions, ready to speak about taking risks and building brands with these two incredible… https://t.co/yA9hxY7ZcU" +06/19/2018,Sports_celeb,@StephMcMahon,RT @TripleH: Thank you @GMB for having me this morning to discuss our historic return to @RoyalAlbertHall and the announcement of #NXTUK. h… +06/19/2018,Sports_celeb,@StephMcMahon,"Go “Green Machine”! I’m so proud of you Max, you are a Champion for kids and adults everywhere! #WalkForChildrens i… https://t.co/xuPuzNRZAj" +06/18/2018,Sports_celeb,@StephMcMahon,"RT @WWE: BREAKING NEWS: A new brand, #NXTUK is coming to @WWEUK. @TripleH and GM Johnny Saint announced the news this evening @RoyalAlbertH…" +06/18/2018,Sports_celeb,@StephMcMahon,"“If you obey all the rules, you miss all the fun.” -Katharine Hepburn #motivationmonday #morningmotivation https://t.co/NKyDPRAuI4" +06/18/2018,Sports_celeb,@StephMcMahon,Enjoyed meeting w @LK @laurafrofro @wellskatie @kaymadati talking shop w @Twitter. Especially enjoyed seeing this g… https://t.co/HmkXkW3xsx +06/18/2018,Sports_celeb,@StephMcMahon,RT @WWE: UP NEXT: Who will become the next Ms. (or Mrs.) Money in the Bank? We're about to find out on @WWENetwork! #MITB https://t.co/6zpM… +06/17/2018,Sports_celeb,@StephMcMahon,"Dad, thank you for always making me feel loved, every moment of my life. I am truly blessed and forever grateful. I… https://t.co/DepeHihvJI" +06/17/2018,Sports_celeb,@StephMcMahon,#HappyFathersDay to the most incredible father… https://t.co/4W61m4wF6Z +06/17/2018,Sports_celeb,@StephMcMahon,#HappyFathersDay to the most incredible father in the world!!! Your daughters adore you and so do I! https://t.co/pLsW27OveX +06/17/2018,Sports_celeb,@StephMcMahon,RT @TripleH: We are underway in Chicago. #WeAreNXT #NXTTakeOver https://t.co/SQ0mGymFLZ +06/16/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Every #NXTTakeOver is an opportunity to make a mark...to change the course of @WWENXT... +#NXTTakeOver: Chicago is LIVE tonight…" +06/16/2018,Sports_celeb,@StephMcMahon,"RT @VinceMcMahon: Proud to be making history in Australia with WWE Super Show-Down on Saturday, Oct. 6, at the iconic @MCG. https://t.co/na…" +06/16/2018,Sports_celeb,@StephMcMahon,RT @undercover_cbs: Watch @StephMcMahon go undercover on #CelebrityBoss to discover future @WWE talent. Stream the latest episode now befor… +06/16/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: On Saturday, October 6th, @WWE brings the Super Show-Down to the @MCG in Melbourne, Australia ... the largest live event. EVER…" +06/16/2018,Sports_celeb,@StephMcMahon,RT @WWE: Just because @StephMcMahon is comfortable on the set of this action-packed photo shoot doesn't mean that her @undercover_cbs chara… +06/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: While disguised as ""Sam"" on @undercover_cbs, @StephMcMahon talks to gymnastics coach and aspiring @WWE Superstar Kenny about the i…" +06/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Be a part of history when @WWE heads to @MCG for @WWE Super Show-Down on Saturday, October 6! Tickets are available Thursday, June…" +06/16/2018,Sports_celeb,@StephMcMahon,Thank you to everyone who tuned in tonight to watch my episode of @Undercover_CBS! The experience of going undercov… https://t.co/KJ1UzqbbwQ +06/16/2018,Sports_celeb,@StephMcMahon,"RT @undercover_cbs: Watch @StephMcMahon go undercover as ""Samantha Miles"" NOW on #CelebrityBoss.✨ https://t.co/gfjFJHDMf0" +06/15/2018,Sports_celeb,@StephMcMahon,"It was so cool being able to go undercover and surprise some of our @WWE fans, I still can’t believe I was able to… https://t.co/DcTT68SzDI" +06/15/2018,Sports_celeb,@StephMcMahon,RT @WWE: We are right on 🎯 for an ALL-NEW episode of @undercover_cbs starring the one and only @StephMcMahon TONIGHT at 8/7c! #CelebrityBos… +06/15/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: #NXTTakeOver: Chicago TOMORROW NIGHT: + +@WWEAleister v @LarsSWWE #NXTChampionship +@QoSBaszler v @NikkiCrossWWE #NXTWomensChampi…" +06/15/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ""I decided to go undercover because I will have the chance to meet some of my fellow @WWE fans...so that I can give back to them i…" +06/15/2018,Sports_celeb,@StephMcMahon,...Do you think I had anyone fooled? @Undercover_CBS #CelebrityBoss https://t.co/ggRFXt5Cjd +06/15/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout w/ @defrancosgym @tripleh… https://t.co/WQqlPhP47N +06/15/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: See the exclusive interview with @catherinekelley immediately following #NXTTakeOver: Chicago on my official Facebook page. +h…" +06/15/2018,Sports_celeb,@StephMcMahon,Samantha Miles makes her big TV debut tomorrow night on @Undercover_CBS. I can’t wait for you guys to see this epis… https://t.co/l80sicmqBv +06/14/2018,Sports_celeb,@StephMcMahon,"RT @WWE: TOMORROW NIGHT at 8/7c: @StephMcMahon meets some talented, young athletes on @undercover_cbs! #CelebrityBoss https://t.co/5nmayz0K…" +06/14/2018,Sports_celeb,@StephMcMahon,RT @ChildrensPgh: We need your help to beat last year's #WalkforChildrens total! Donate or register today at https://t.co/7TmHP5aaQZ to get… +06/14/2018,Sports_celeb,@StephMcMahon,RT @WWE: Where and when can YOU check out the first round matches of the @WWEUK Championship Tournament?! ALL the details are right here...… +06/14/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout w @defrancosgym @tripleh &… https://t.co/laLV28yQaX +06/14/2018,Sports_celeb,@StephMcMahon,"RT @WWE: The first-ever @FortniteGame Pro-Am Tournament resulted in @XavierWoodsPhD winning $10,000 for @ConnorsCure! https://t.co/plqjz5rU…" +06/13/2018,Sports_celeb,@StephMcMahon,RT @BellaTwins: So beyond excited for @TotalDivas being nominated for a @TeenChoiceFOX for Choice Reality TV show! Bella Army please make s… +06/13/2018,Sports_celeb,@StephMcMahon,"RT @undercover_cbs: The ""Queen of the Ring"" @StephMcMahon is pumped to go undercover this Friday on #CelebrityBoss! https://t.co/kZA4i8Hx1C" +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@StephMcMahon will step behind the camera this Friday at 8/7c on @CBS! #CelebrityBoss @undercover_cbs https://t.co/QXff8BgMOS +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Putting an end to bullying today! Thank you Ira Samelson Boys & Girls of Memphis for hosting us today. Always remember do… +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: Watch as @StephMcMahon transforms into #SamanthaMiles in a sneak peek of this Friday's @undercover_cbs: Celebrity Edition! #Underc… +06/12/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: I see the celebration is underway...like @SteveAustinBSR says “hell yeah!!!” + +Enjoy your parade and congratulations! #ALLCAPS…" +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: Catch @StephMcMahon on @undercover_cbs THIS FRIDAY at 8/7c! #UndercoverBoss https://t.co/aBs9AmGmHY +06/12/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Meet one of the incredible powerlifters competing in this year's @SpecialOlympics, Katie Millar! #SpecialOlympicsUSAGames #WWEHero…" +06/11/2018,Sports_celeb,@StephMcMahon,Watch me transform into Samantha Miles for @Undercover_CBS on Friday! Here is the entire 3 hour makeup process in a… https://t.co/kOd5fM7qui +06/11/2018,Sports_celeb,@StephMcMahon,RT @WWE: You don't want to miss the BIG SHOW when @StephMcMahon goes undercover on @undercover_cbs this Friday at 8/7c! #CelebrityBoss http… +06/11/2018,Sports_celeb,@StephMcMahon,Congratulations @RondaRousey for continuing to blaze a trail for girls & women everywhere! You were the first-ever… https://t.co/TpZfuXsMC5 +06/11/2018,Sports_celeb,@StephMcMahon,"RT @TheWrap: Exclusive Video: 'Undercover Boss: Celebrity Edition' (@undercover_cbs) - Yes, That's Really @WWE Executive Stephanie McMahon…" +06/11/2018,Sports_celeb,@StephMcMahon,RT @espn: Ronda Rousey is thrilled to become the first woman in the UFC Hall of Fame. https://t.co/4EnuwCxcYr +06/11/2018,Sports_celeb,@StephMcMahon,"RT @ufc: Champion. Pioneer. Legend. + +@RondaRousey enters the Modern Wing of the #UFCHoF July 5! https://t.co/ExQslOwW84" +06/11/2018,Sports_celeb,@StephMcMahon,“Be so good they can’t ignore you.” -Steve Martin #motivationmonday #morningmotivation https://t.co/y1jMI2fJfz +06/10/2018,Sports_celeb,@StephMcMahon,RT @DropTheMicTBS: These ladies know how to handle themselves in the ring 💪 Don't miss the @GlowNetflix vs @WWE Superstars battle TONIGHT o… +06/10/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Awesome weekend supporting @SOCTconnecticut during their #SOCTSummerGames. We had a blast!! Thank you for hosting us. See… +06/10/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: A worthy honor for @RondaRousey... + +but her legacy is just getting started and will reach far beyond sport or entertainment. #…" +06/10/2018,Sports_celeb,@StephMcMahon,RT @WWE: What happens when @StephMcMahon goes undercover at the @WWEPerformCtr? Find out THIS FRIDAY on @undercover_cbs at 8/7c! #Celebrity… +06/09/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: #WWE Superstar @ZackRyder help cheer on the athletes during the #SOCTSummerGames @SOCTconnecticut @SpecialOlympics #WWEHe… +06/09/2018,Sports_celeb,@StephMcMahon,RT @TripleH: Three @NBA Championships out of the last four years. Congratulations to the @warriors and the entire Bay Area on a dominating… +06/09/2018,Sports_celeb,@StephMcMahon,"RT @WWE: This Friday at 8/7c, the ""Queen of the Ring"" is going undercover as @StephMcMahon disguises herself as a photographer on @undercov…" +06/08/2018,Sports_celeb,@StephMcMahon,#NationalBestFriendsDay 🐾 #ILoveMyMastiffs https://t.co/BWJoElGY9z +06/08/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: #WWE employees kicked off morning cheering on local law enforcement during the @SOCTconnecticut Torch Run! #SOCTSummerGam… +06/07/2018,Sports_celeb,@StephMcMahon,So proud to have held @WWE’s first For Your Consideration event last night for the TV Academy. Thank you to the inc… https://t.co/icRGgSa1Eu +06/07/2018,Sports_celeb,@StephMcMahon,RT @MsCharlotteWWE: There is strength in sisterhood. #WWEFYC 🌟 https://t.co/hHmHX90Zxs +06/07/2018,Sports_celeb,@StephMcMahon,RT @AlexaBliss_WWE: https://t.co/DEqg0lLJwl +06/07/2018,Sports_celeb,@StephMcMahon,"RT @WWERomanReigns: Proud to take part in the first #WWEFYC. @WWE and its Superstars have created so many memories over the years, it was a…" +06/07/2018,Sports_celeb,@StephMcMahon,RT @BraunStrowman: Tonight in LA was great. Reunited Team Little Big @AlexaBliss_WWE to talk about the success of #WWEMMC at @WWE’s first e… +06/07/2018,Sports_celeb,@StephMcMahon,RT @WWE: “I remember hearing @VinceMcMahon say ‘the only thing I can guarantee...is an opportunity’” - @ShawnMichaels on the first episode… +06/06/2018,Sports_celeb,@StephMcMahon,"RT @EdMylett: Humbling to be called “Fastest Growing Business Man In Social Media History “ + +Click link + +https://t.co/5j12NIomwM + +#maxout" +06/06/2018,Sports_celeb,@StephMcMahon,"RT @USOMetroDC: ""The eyes of the world are upon you. The hopes and prayers of liberty loving people everywhere march with you."" General Dwi…" +06/06/2018,Sports_celeb,@StephMcMahon,RT @NaomiWWE: “A perfect marriage is just two imperfect people refusing to give up on each other” winning in the the ring and in life @WWEU… +06/06/2018,Sports_celeb,@StephMcMahon,RT @StBaldricks: BREAKING NEWS! The Childhood Cancer #STARAct was signed into law! The legislation authorizes $30 MILLION annually from 201… +06/05/2018,Sports_celeb,@StephMcMahon,RT @2018USAGames: ICYMI: @WWE Monday Night #RAW had some very special guests appearances! #2018USAGames and a few of our athletes went onst… +06/05/2018,Sports_celeb,@StephMcMahon,"RT @ChristianLN0821: As someone who plays an unapologetic #LGBTQ character on TV, I’ve seen first hand the incredible love and kindness tha…" +06/05/2018,Sports_celeb,@StephMcMahon,Way to go @madonnabadger! Hope to see you at #CannesLions! https://t.co/0jrkAtrBVT +06/05/2018,Sports_celeb,@StephMcMahon,RT @shadiabseiso: I’m so happy to be featured on @wweperformctr official website!! I love working with and learning from all our great coac… +06/05/2018,Sports_celeb,@StephMcMahon,RT @FinnBalor: What a privilege! Thank you to all my Team Texas friends for helping me make an entrance in Houston @SpecialOlympics @SOTex… +06/05/2018,Sports_celeb,@StephMcMahon,RT @2018USAGames: What a cool moment @WWETheBigShow! #RiseWithUs https://t.co/AysHettuAS +06/05/2018,Sports_celeb,@StephMcMahon,"RT @SpecialOlympics: We've got a BIG announcement happening tonight & it involves our friend @WWETheBigShow, so you know its going to be go…" +06/04/2018,Sports_celeb,@StephMcMahon,Sooooo excited! It was an incredible experience to go undercover and hear our fans share their passion without know… https://t.co/8iPcqYhd7A +06/04/2018,Sports_celeb,@StephMcMahon,"Meet “Samantha Miles”, my blonde, blogging alter ego next Friday, June 15th on @undercover_cbs! It was a privilege… https://t.co/O1vHUBLQKA" +06/04/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: What an amazing day speaking to club members @bgcghouston about bullying and emotional intelligence. Thank you for hostin… +06/04/2018,Sports_celeb,@StephMcMahon,RT @SInow: WWE has launched a recruiting website for its Performance Center to find the next global wrestling star https://t.co/h8flFpuRMy +06/04/2018,Sports_celeb,@StephMcMahon,"RT @WWE: The future is NOW with the OFFICIAL LAUNCH of the @WWEPerformCtr recruitment website! To visit the new site, go to https://t.co/zw…" +06/02/2018,Sports_celeb,@StephMcMahon,Proud of @WWE’s @NatbyNature for joining @mariashriver for her #MoveforMinds event today at @Equinox. Two incredibl… https://t.co/rxF8GlPckz +06/02/2018,Sports_celeb,@StephMcMahon,"RT @2018USAGames: We are officially only 30 DAYS away from the #2018USAGames! + +@mikethemiz and our partners @WWE are helping us spread the…" +06/02/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Watch as @StephMcMahon takes on a new role during @undercover_cbs when the episode airs Friday, June 15, at 8/7 C on CBS! #Celebri…" +06/01/2018,Sports_celeb,@StephMcMahon,.@WWE is excited to partner with @NestleWatersNA to encourage a healthier lifestyle! We want to know why you… https://t.co/YwtSknNnfJ +06/01/2018,Sports_celeb,@StephMcMahon,#midnightworkout w @defrancosgym & @tripleh -… https://t.co/C0qn4Ff0Bx +05/31/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: That moment when going out for groceries turns into an upcoming episode of @CarpoolKaraoke with @StephMcMahon. Btw, I sound mu…" +05/31/2018,Sports_celeb,@StephMcMahon,"RT @AdamMGrant: This is how you encourage girls to dream big with their career ambitions. +#YouCantBeWhatYouCantSee https://t.co/JO7qHQfZET" +05/31/2018,Sports_celeb,@StephMcMahon,#BTS with @TripleH at our shoot for @WWE’s episode of @CarpoolKaraoke. We had a blast! Can’t wait to see our episod… https://t.co/L37kAtMhXb +05/30/2018,Sports_celeb,@StephMcMahon,RT @WWE: Is the world ready for a ROBOT @JohnCena? It's time to find out because the FIRST episode of #DallasAndRobo is on @YouTube! @Offic… +05/30/2018,Sports_celeb,@StephMcMahon,RT @ChildrensPgh: Have you signed up for #WalkforChildrens yet? There is still time to register at https://t.co/7TmHP5aaQZ! Our presenting… +05/28/2018,Sports_celeb,@StephMcMahon,“It is foolish and wrong to mourn the men who died. Rather we should thank God that such men lived.” -George S. Pat… https://t.co/dRrPFZOrUY +05/28/2018,Sports_celeb,@StephMcMahon,RT @WWEPR: Today @WWE is donating 10% of sales from @WWEShop to support @HireHeroesUSA https://t.co/wkvd3ifz2r @WWECommunity #MemorialDay… +05/27/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ""Don't let anyone ever tell you that you can't do anything... you're beautiful inside and out and please do not let anyone determi…" +05/25/2018,Sports_celeb,@StephMcMahon,RT @TripleH: .@mauroranallo has lent his passion and voice to some of the biggest @WWENXT moments in history. So proud that he’s using them… +05/25/2018,Sports_celeb,@StephMcMahon,"RT @HireHeroesUSA: This Memorial Day, @WWE is donating 10% of sales from @WWEShop to support our mission: https://t.co/AJG7vxq7MO @WWECommu…" +05/25/2018,Sports_celeb,@StephMcMahon,"RT @_KnowYourGirls: We'll do anything to protect our girls, but what about our other ""girls?"" Discover all the ways you can look out for yo…" +05/25/2018,Sports_celeb,@StephMcMahon,Way to go Leah! #LeahStrong! https://t.co/HoHKjNn3X0 +05/24/2018,Sports_celeb,@StephMcMahon,Happy #RedNoseDay! Throw on your red nose and help end child poverty around the world. Learn more about… https://t.co/2sGa0CRjPQ +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWE: In recognition of #MemorialDay, WWE and its Superstars thank and remember the heroes who made the ultimate sacrifice for freedom.…" +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWECommunity: .@WWE is proud to support @SpecialOlympics & excited for the @2018USAGames in Seattle! Even better, our own @StephMcMahon…" +05/23/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: .@WWE is proud to support @_KnowYourGirls! Why is it so important to #KnowYourGirls? Because early detection of breast ca… +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWE: It is OFFICIAL: @mikethemiz & @MaryseMizanin star in #MizAndMrs on @USA_Network, and it premieres JULY 24 at 10/9c! https://t.co/3…" +05/22/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Take a closer look at the Season 3 premiere of #TotalBellas, and catch new episodes every Sunday at 9/8c on @e_entertainment! @Bel…" +05/22/2018,Sports_celeb,@StephMcMahon,RT @TripleH: This year's #UKCT is filled with the best of the best. Incredible athletes giving their heart and soul for the opportunity to… +05/21/2018,Sports_celeb,@StephMcMahon,“The earth has music for those who listen.” -William Shakespeare #MotivationMonday #MorningMotivation https://t.co/oFttzVrAJC +05/20/2018,Sports_celeb,@StephMcMahon,Happy belated bday @nick_pass!! https://t.co/2x6wPYe1Av +05/18/2018,Sports_celeb,@StephMcMahon,"RT @RedNoseDayUSA: #NikkiBella- Total #RedNoseDay American Ninja Warrior. Tune in to @nbc Thursday, May 24 to watch her take on the @ninjaw…" +05/18/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout finisher w @defrancosgym and… https://t.co/DTrw2fCkYy +05/17/2018,Sports_celeb,@StephMcMahon,"Next Thursday, May 24th is #RedNoseDay. Let’s come together to help end child poverty, one nose at a time. To learn… https://t.co/SFLpNRNcKP" +05/17/2018,Sports_celeb,@StephMcMahon,RT @TripleH: The UK Championship Tournament was a highlight for @WWE in 2017....now meet 8 of the competitors who will take it to a whole n… +05/17/2018,Sports_celeb,@StephMcMahon,#midnightworkout w @defrancosgym and @tripleh -… https://t.co/RueExWBZff +05/17/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Here's @catherinekelley to reveal the first EIGHT participants competing in next month's #WWEUKCT! + +@ZackGibson01 @Joe_Coffey @Gen…" +05/16/2018,Sports_celeb,@StephMcMahon,RT @WebSummit: We're delighted to announce that @WWE's @StephMcMahon will be joining us at this year's #WebSummit in #Lisbon this November… +05/16/2018,Sports_celeb,@StephMcMahon,Excited to be speaking at #WebSummit this November in #Lisbon! https://t.co/BKiC7RLzBo +05/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ✔️Climb the ladder +✔️Grab the briefcase +✔️Cash in +✔️Become champion + +#MITB streams LIVE Sunday, June 17 on @WWENetwork! #SDLive…" +05/14/2018,Sports_celeb,@StephMcMahon,Proud to represent @WWE and the #WomensEvolution with these amazing trailblazers @NiaJaxWWE @MsCharlotteWWE &… https://t.co/0TlO0cUFiR +05/13/2018,Sports_celeb,@StephMcMahon,RT @VinceMcMahon: Happiest of Mother’s Days to my incredible 97-year-old mom! #MothersDay +05/13/2018,Sports_celeb,@StephMcMahon,"#HappyMothersDay to all the amazing moms around the world! May you be blessed with macaroni necklaces, plants that… https://t.co/m2poGBEVCY" +05/12/2018,Sports_celeb,@StephMcMahon,RT @TheVFoundation: Cancer survivor and @WWE Superfan Enzo Grande has the title AND the briefcase! Unbeatable! #DontEverGiveUp https://t.co… +05/11/2018,Sports_celeb,@StephMcMahon,"RT @the_USO: Military spouses’ service to the country is vital to ensuring the readiness and morale of our nation’s troops. Today, we salut…" +05/11/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Kicking off the night at the @USOMetroDC 36th Annual Awards Dinner honoring our military spouses! @TheMarkHenry @DanaWarr… +05/10/2018,Sports_celeb,@StephMcMahon,"This year @thevfoundation raised over $475,000 for pediatric cancer research at their annual #VirginiaVine gala. I… https://t.co/D1wH6FZMxs" +05/10/2018,Sports_celeb,@StephMcMahon,"RT @TheVFoundation: We're so thrilled to announce that our Virginia Vine event raised more than $475,000 for cancer research! +Recap from @…" +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @MsCharlotteWWE https://t.co/eAb… +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @NiaJaxWWE... https://t.co/HwWXj… +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @AlexaBliss_WWE... https://t.co/… +05/07/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: It’s time for @WWENXT to make history and TAKE OVER Brooklyn...again. + +#NXTTakeOver: Brooklyn is LIVE from the @barclayscenter…" +05/07/2018,Sports_celeb,@StephMcMahon,"Believe in yourself, have courage in your convictions. #MotivationMonday #MorningMotivation https://t.co/UkGGXYbat5" +05/07/2018,Sports_celeb,@StephMcMahon,"RT @WWENetwork: We are LIVE on @WWENetwork in Newark, New Jersey... + +WELCOME to #WWEBacklash! https://t.co/YJruuwDTWl" +05/06/2018,Sports_celeb,@StephMcMahon,"RT @WWE: There is PLENTY to enjoy on the award-winning @WWENetwork, and we're just getting started! https://t.co/nIRPmBwpgk" +05/06/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Most consecutive wins in a season. Fastest team to score 100 goals in a season. +Winners of the @PremierLeague title. + +From @…" +05/04/2018,Sports_celeb,@StephMcMahon,RT @DanaWarriorWWE: Warriors! Tune in tonight 8pm ET for the debut of @DanaWarriorWWE #TotalWarriors! https://t.co/LFzF8hzD33 @wwe #wwe +05/04/2018,Sports_celeb,@StephMcMahon,RT @TitusONeilWWE: Let’s show the world how powerful women are!I proudly stand with #SheIS to empower female athletes everywhere. Join us i… +05/04/2018,Sports_celeb,@StephMcMahon,"RT @Zelina_VegaWWE: I was always told “you’re too small, too skinny.. just a woman.” JUST a woman? Well! Let’s show the world how powerful…" +05/04/2018,Sports_celeb,@StephMcMahon,"RT @LaceyEvansWWE: Playing sports made me the confident, motivated woman I am today. Amateur Wrestling...Military and a mother, I know the…" +05/04/2018,Sports_celeb,@StephMcMahon,This Mother’s Day @WWE is supporting @SusanGKomen in honoring ALL mothers! You can support thousands of moms everyw… https://t.co/SQq5UTPKGU +05/03/2018,Sports_celeb,@StephMcMahon,"RT @roderickstrong: I am surrounded by a strong and beautiful woman who is a passionate about being a partner,mother and athlete!I proudly…" +05/03/2018,Sports_celeb,@StephMcMahon,RT @MickieJames: Who run the world? Girls!! #Girls who played sports! Studies show that girls who are athletes are more likely to grow up t… +05/03/2018,Sports_celeb,@StephMcMahon,RT @WWE_MandyRose: I proudly stand with #SheIs to empower female athletes all over the world! Growing up I always played sports and I truly… +05/03/2018,Sports_celeb,@StephMcMahon,"RT @sarahloganwwe: All my life I've lived with the realization that I'll never be ""normal"". SheIs to masculine +SheIs to weird +SheIs to am…" +05/03/2018,Sports_celeb,@StephMcMahon,"RT @NatbyNature: Growing up, my mom encouraged my sisters and I to participate in as many different sports as we could! I love being able t…" +05/03/2018,Sports_celeb,@StephMcMahon,RT @SonyaDevilleWWE: I’m blessed to be a female athlete in 2018 .. I’ve played sports almost my entire life and it has been the greatest gi… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @WWEEmberMoon: It's all about empowering the past, present, and future!! Join me in supporting @TeamSheIs https://t.co/LC5KJfhf5H as we…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @itsBayleyWWE: Studies show that girls who are athletes are more likely to grow up to be business leaders. I proudly stand with #SheIs t… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @RealMikeBennett: Dream Big Freddie, you can play any sport that you want, and I will be the proudest dad cheering you on. Help support…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @CarmellaWWE: I proudly stand with #SheIS to empower female athletes everywhere. Let’s show these boys who the REAL champs are! https://… +05/02/2018,Sports_celeb,@StephMcMahon,RT @SashaBanksWWE: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us… +05/02/2018,Sports_celeb,@StephMcMahon,RT @BillieKayWWE: I’m excited to join this movement! I grew up playing sports and truly believe it teaches young females life skills they w… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @mikethemiz: Up to 70% of girls stop playing sports by the age of 13. @TeamSheIs is working to provide resources, encouragement, and rol…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @AlexaBliss_WWE: I proudly stand with #SheIS to empower female athletes everywhere. Join us in this movement and support the next genera… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @VinceMcMahon: Happy birthday to the hardest working man in show business, @TheRock. https://t.co/7OHbqYFp1s" +05/02/2018,Sports_celeb,@StephMcMahon,RT @MustafaAliWWE: My wife told me she didn't receive encouragement to do sports when she was younger. We aren't letting that happen with o… +05/02/2018,Sports_celeb,@StephMcMahon,RT @MsCharlotteWWE: Who run the world? Girls who played sports! Studies show that girls who are athletes are more likely to grow up to be b… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @NatbyNature: Very proud to support @TeamSheIs and women around the world to participate in sports, build confidence for a lifetime and…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @WWERomanReigns: It’s important to support young female athletes in every sport because one day...it’ll be #TheirYard. #SheIs https://t.… +05/02/2018,Sports_celeb,@StephMcMahon,RT @NiaJaxWWE: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us in t… +05/02/2018,Sports_celeb,@StephMcMahon,RT @REALBobbyRoode: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us… +05/02/2018,Sports_celeb,@StephMcMahon,RT @BraunStrowman: Empower the next generation of STRONG female athletes!!! #SheIs https://t.co/AnLsIrQoBP https://t.co/iqygqtIRW5 +05/02/2018,Sports_celeb,@StephMcMahon,"RT @SpeechMoves: ""...it's going to take all of us to show the world that SheIS anything she wants to be"" -@StephMcMahon talking #SheIS with…" +05/01/2018,Sports_celeb,@StephMcMahon,RT @WWEPR: Women’s sports leagues band together with SheIS initiative. “We need to encourage audiences to watch and attend games and live e… +05/01/2018,Sports_celeb,@StephMcMahon,"Up to 70% of girls stop playing sports by the age of 13. @TeamSheIs is working to provide resources, support, and r… https://t.co/UNcDhPgXSX" +05/01/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Amazed by the strength and bravery it takes to stand up in front of the world and show them your struggle, just so others will…" +04/30/2018,Sports_celeb,@StephMcMahon,"“I may not always be right, but no one can ever accuse me of not having a genuine love and passion for what I do.”… https://t.co/6ByelCLyV8" +04/30/2018,Sports_celeb,@StephMcMahon,Go @tdarmafol Go!!!! @ConnorsCure https://t.co/5CKcO8tI9B +06/27/2018,Sports_celeb,@rolopez42,Do people really want a Space Jam sequel?? @QuincyPondexter Tell me what is going on with the world +05/06/2018,Sports_celeb,@rolopez42,@KamBrothers You didn't like the work he did on The Flinstones?!? +05/06/2018,Sports_celeb,@rolopez42,RT @22ndtimeout: @rolopez42 Only 30 Jesus and 2000 Shaq peaked higher +05/06/2018,Sports_celeb,@rolopez42,So LeBron is starting to rival 1905 Einstein right? According to my calculations he just passed 1972 Stevie Wonder… https://t.co/mW4or0IgWU +04/24/2018,Sports_celeb,@rolopez42,"RT @BPortistime: Rondo a for sure HOFer, right?" +04/09/2018,Sports_celeb,@rolopez42,"RT @harikondabolu: If you want my response to the Simpsons episode addressing “The Problem with Apu,” you can infer it from actually watchi…" +04/09/2018,Sports_celeb,@rolopez42,"RT @harikondabolu: Wow. “Politically Incorrect?” That’s the takeaway from my movie & the discussion it sparked? Man, I really loved this sh…" +03/31/2018,Sports_celeb,@rolopez42,Somebody needs to sync this one up to a Denzel speech from Remember the Titans #OrMaybePelicanBrief?… https://t.co/0yC1meYfn0 +03/29/2018,Sports_celeb,@rolopez42,"@ZachLowe_NBA I'm guessing w/the cushy but ultimately meaningless job, G-Wiz is the relative of a politician, most… https://t.co/e5MzC1jSP8" +03/29/2018,Sports_celeb,@rolopez42,T.S. Eliot certainly had a way with words https://t.co/3QzdGQdO5a +03/27/2018,Sports_celeb,@rolopez42,RT @TomKMorris: Wouldn’t you love to know what the script for the canal boats was at this time? https://t.co/7ypG47Vx5b +03/22/2018,Sports_celeb,@rolopez42,RT @TomKMorris: Someone asked me why Chinese lanterns in the Blue Bayou; I replied it was in vogue in the mid-1800’s & would've been shown… +03/16/2018,Sports_celeb,@rolopez42,@BPortistime we made it!!! https://t.co/A34sjSaZom +03/12/2018,Sports_celeb,@rolopez42,RT @chicagobulls: Coming this afternoon...the most dramatic season yet. Starring @rolopez42. #TheBullchelor #BullchelorNation https://t.co/… +03/09/2018,Sports_celeb,@rolopez42,Back to business I guess #NiceEasyWelcomeBackSmackdown #WorkingMyWayUpToClutch https://t.co/vBER13Iy5l +03/05/2018,Sports_celeb,@rolopez42,"RT @TomKMorris: His name is Charles Nichols, in case you ever wondered. https://t.co/UehR1iH7cj" +02/27/2018,Sports_celeb,@rolopez42,RT @NickFriedell: Robin has a Britney Spears picture in his locker. Didn’t realize he was a Mariah fan too. https://t.co/XS6nB0R3xN +02/18/2018,Sports_celeb,@rolopez42,"RT @satosan1118mm: 1996年9月1日「キャプテンEO」クローズ。当時のTDLガイド・マップ裏表紙を飾ったファイナル告知はマイコーファンとしては悲しき思い出(><) +でもまさかこの約14年後に復活するとは夢にも思わなかった。4年間という短期間の再演だったけど奇…" +01/30/2018,Sports_celeb,@rolopez42,@bennythebull But how will I tell who the robots are...and who @bennythebull is?!?! +01/26/2018,Sports_celeb,@rolopez42,"RT @threekola: Good morning!!! It's game day +#LifeisBeautiful #enjoylife #bepositive #itsabouttime #miroticway☦ https://t.co/SwEfJ34IgI" +01/22/2018,Sports_celeb,@rolopez42,"@PierreTPelican @PelicansNBA Fresh Pelican blood + +...and I'm all out" +01/22/2018,Sports_celeb,@rolopez42,@PierreTPelican @PelicansNBA You can expect a lot more where that came from #TuneInTonight… https://t.co/RacU7NExDp +01/11/2018,Sports_celeb,@rolopez42,RT @jashin_mizuho: そして、ブルックと共に西武ライオンズの試合を満喫した双子の兄弟ロビン・ロペス(写真手前)にも投票お願いします! @rolopez42 Robin Lopez #NBAVOTE @lions_official #nbajp https://t… +12/19/2017,Sports_celeb,@rolopez42,RT @QuincyPondexter: Ummm is that 6 Wins in a row?!? I think yes @chicagobulls! We live #BullsNation https://t.co/9CzbDk01yp +12/15/2017,Sports_celeb,@rolopez42,RT @jashin_mizuho: 来日時にブルック・ロペスが「自分をスラムダンクのキャラに例えるなら流川」と言ってたので、じゃあロビンは桜木かなぁと思って描いてみました。結構イメージと合ってる。 https://t.co/rVxngqLsKV +11/23/2017,Sports_celeb,@rolopez42,Great getting the band back together #NoWeDidNotWinState #ButMaybeTheStateChampionshipWasInsideUsAllAlong… https://t.co/N64emti1Ip +10/31/2017,Sports_celeb,@rolopez42,Today's Special: Sideshow Dog Burger (Rolos on the side) #ItsAStretchIKnow #IsAHotDogABurger?… https://t.co/0r8NxSTgTx +10/30/2017,Sports_celeb,@rolopez42,Had a great time bonding with the young fellas from #BAM AT the practice facility! These my guys from Dunbar High!!… https://t.co/VZOCWcelHl +10/28/2017,Sports_celeb,@rolopez42,"Thank you brother! Love your work, especially that Batman run!!! https://t.co/ostvNhUhVh" +10/27/2017,Sports_celeb,@rolopez42,Britney will always be looking out for us guys #IMustConfessIStillBelieve https://t.co/zR06gC2p5A +10/21/2017,Sports_celeb,@rolopez42,Presenting the #SideshowRobs for opening night at the #UnitedCenter #ItsGermanForTheBartThe #SeeRed #CheckBennyB… https://t.co/bCihOfEgAy +09/23/2017,Sports_celeb,@rolopez42,"It's ok @warriors, in a few months @realDonaldTrump probably won't be able to visit the White House either" +09/23/2017,Sports_celeb,@rolopez42,"RT @CP3: With everything that's going on in our country, why are YOU focused on who's kneeling and visiting the White House??? #StayInYoLane" +09/23/2017,Sports_celeb,@rolopez42,RT @KingJames: U bum @StephenCurry30 already said he ain't going! So therefore ain't no invite. Going to White House was a great honor unti… +09/23/2017,Sports_celeb,@rolopez42,RT @natborchers: Had fun supporting @ACPORTLAND with @RossSmith_20 and @rolopez42 last night. Big thanks to @adidassoccer for their generou… +08/14/2017,Sports_celeb,@rolopez42,Red Carpet at the Final Showing of #TheGreatMovieRide #WeNeedAGreatMovieRideMovie #AndThenAGreatMovieRideMovieRide… https://t.co/HUcFrjb3VV +08/14/2017,Sports_celeb,@rolopez42,RT @CavsMoondog: @rolopez42 @TheEllenShow @BillNye @WaltDisneyWorld Sorry the airlines lost your grown-up shoes and made you look like a cl… +08/13/2017,Sports_celeb,@rolopez42,Paying Respects @theellenshow @billnye at #EllensEnergyAdventure #StupidJudy #ThatsOurFinalAnswer #UniverseOfEnergy… https://t.co/ZTmenwEEEq +08/13/2017,Sports_celeb,@rolopez42,RT @colbycockrell: @RealBrookLopez Did I just see you with your bro wearing a Joey Cora jersey? +08/10/2017,Sports_celeb,@rolopez42,@bennythebull Can't the three of us be happy together?!? @MarinerMoose @bennythebull #CoMascotGOATs #WeCanGetAHouseInMalibuAndBeHappy +08/09/2017,Sports_celeb,@rolopez42,RT @Cut4: @rolopez42 @MLB @James_Paxton @NBA @Mariners What could have been ... https://t.co/23Nm6hs14H +08/09/2017,Sports_celeb,@rolopez42,Would also put all NBA mascots in their place #BowDownBeforeTheMascotGOAT https://t.co/V5cSoydg0C +08/09/2017,Sports_celeb,@rolopez42,I'm super jealous of @James_Paxton and @MLB guys where's my Sideshow Rob uni @NBA @nikebasketball #WheresMyElephant… https://t.co/AlXJ0OAF6F +07/17/2017,Sports_celeb,@rolopez42,"RT @JohnStamos: In an hour and a half, I'll be jumping on stage at #D23expo Arena to celebrate the LEGENDS of Imagineering. Come check it o…" +06/23/2017,Sports_celeb,@rolopez42,https://t.co/iq3ERcao9b +06/08/2017,Sports_celeb,@rolopez42,RT @EpcotLegacy: @Imagineer2017 Color Corrected :) https://t.co/CCoTQ5w0a4 +04/29/2017,Sports_celeb,@rolopez42,Muppet got to meet his hero @bennythebull today! Thanks for your support this year Chitown! #SeeRed Thanks to my gu… https://t.co/t38rf9lOzR +04/04/2017,Sports_celeb,@rolopez42,RT @Mariners: @threekola @rolopez42 #GoMariners +04/04/2017,Sports_celeb,@rolopez42,RT @threekola: Gameday at The Garden with @rolopez42! #bullsnation #miroticway☦ https://t.co/pgPdfJp9x7 +03/27/2017,Sports_celeb,@rolopez42,RT @Dame_Lillard: Mark Davis got the Lloyd Christmas haircut... Whatever bro +02/17/2017,Sports_celeb,@rolopez42,https://t.co/I59KhdrA2D +01/24/2017,Sports_celeb,@rolopez42,RT @MulliganJimmy: @rolopez42 @TDRogerson #guysnightout #disney #wdw #beachclub https://t.co/bQ9gxEDMaC +01/16/2017,Sports_celeb,@rolopez42,Basketball is in danger of growing stale. I'm taking it strange new places.… https://t.co/yOCbUGk2Iv +01/16/2017,Sports_celeb,@rolopez42,RT @hobbledegaagaa: Anyone can make a no look pass but can you make a no hands assist? @rolopez42 can. https://t.co/EfchWj4V7Y +12/06/2016,Sports_celeb,@rolopez42,RT @WDFMuseum: @rolopez42 Looking good! A birthday greeting worthy of Walt himself! +12/06/2016,Sports_celeb,@rolopez42,Happy Birthday Walt Disney! Took this outside Walt's birth home here in Chi #HappyBirthdayWalt #MickeyMouse… https://t.co/hp27ZN1V9f +12/04/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: He was pretty excited to see his idols today! @JimmyButler, @RajonRondo, & @rolopez42 are passing gifts out to the kids f…" +11/28/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: Earlier today, Dante from @WishIllinois, came to join the #Bulls for practice. We can't wait to have him at Wednesday's g…" +11/26/2016,Sports_celeb,@rolopez42,"I know I'm late to the party, but we need a Sixers Ben Franklin 90's alternate a la the Raptors/Bucks ASAP #LadiesManBenFranklin @UniWatch" +11/20/2016,Sports_celeb,@rolopez42,"RT @NBAcom: Look out below! @blakegriffin32 throws down emphatic dunk over @rolopez42 + +WATCH: https://t.co/gr4fbnFE9g https://t.co/mokTantv…" +11/02/2016,Sports_celeb,@rolopez42,RT @StanfordMBB: Brotherly Love! #GoStanford https://t.co/8CxuMpM8dG +10/31/2016,Sports_celeb,@rolopez42,My guy from back home @hexagonstaff17 whipped this Halloween masterpiece up for tonight! #IDigTheKicks… https://t.co/0qkxOt8Qvg +10/31/2016,Sports_celeb,@rolopez42,But if I'm over there...@treykerby must be in the Barclay's Center locker room right now... :o #AudibleGasp https://t.co/cUOIBZtFfQ +10/31/2016,Sports_celeb,@rolopez42,Time to get loud #BullsNation! Surprise for my team thanks to my friends @JBLaudio #TeamJBL https://t.co/n5gIM0Qz6H +10/31/2016,Sports_celeb,@rolopez42,RT @AminESPN: @rolopez42 the look of complete shock that a picture is being taken despite you being the one holding the phone is a nice tou… +10/30/2016,Sports_celeb,@rolopez42,@pezwardisking has been immortalized upon my sandals!!! Thanks @dwyanewade and @islideusa!!! #BelatedNationalCatDay… https://t.co/8FNZr4XnWA +10/30/2016,Sports_celeb,@rolopez42,This sweater is relevant to both this series & the time I double parked in front of the lady @ the occult bookstore… https://t.co/bOIPZbKYzZ +10/30/2016,Sports_celeb,@rolopez42,@chicagobulls @AminESPN The secret jam of Dan Majerle too btdubs +10/30/2016,Sports_celeb,@rolopez42,"And here I was, worried this moment would be lost in the ether of time #IShouldaPutMyHandsUp #TheyWerePlayingMySong https://t.co/qZPksR42Eg" +10/13/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: ""You have your Zack Morris, A.C. Slater..I’m the Screech Powers.” See what @rolopez42 is talking about! #BullsNation +http…" +10/12/2016,Sports_celeb,@rolopez42,RT @chicagobulls: Not quite sure @Simone_Biles and @rolopez42 are the same shoe size...😂😱 https://t.co/og4vb4fXhy +10/07/2016,Sports_celeb,@rolopez42,"See what went down in training camp! I promise there's a Saved By The Bell metaphor in there somewhere #BullsNation + +https://t.co/Ftnng2EU6e" +09/26/2016,Sports_celeb,@rolopez42,Beef Smashed #PoorChoiceOfWords #ThanksRevFarrakhan #SeeRed @bennythebull https://t.co/SMCBEgpj7L +09/26/2016,Sports_celeb,@rolopez42,RT @chicagobulls: SQUAD. https://t.co/oYaUJedElI +09/18/2016,Sports_celeb,@rolopez42,Han Rolo and Mubacca #LetTheDoodleWin #HarrisonFordFace #HanSolo #Chewbacca #StarWars#LetTheDoodleWin https://t.co/mqbOpvZdNO +09/12/2016,Sports_celeb,@rolopez42,The 1 pic where I'm not a nervous fangirl 💁 #BestMomentOfMyLife #ColdplaysNext #BestGetThemHandsReady @MariahCarey https://t.co/ZFa45JChS9 +09/06/2016,Sports_celeb,@rolopez42,RT @BarriHoopsHype: Chewbacca has been waiting 39 years... The Lopez brothers made it possible! #StarWars #ChewbaccaWithMedal https://t.co/… +09/05/2016,Sports_celeb,@rolopez42,HEY GUYS IT'S OK CHEWIE FINALLY GOT HIS MEDAL #WookieCousins #CoolPointsForRolo #StarWars #Disneyland https://t.co/D5y4EZmRrx +08/26/2016,Sports_celeb,@rolopez42,RT @PierreTPelican: Hey @rolopez42 @fullerhouse is full enough #FullestHouseWithRobinWillNeverHappen https://t.co/8kfhMEOosK +08/26/2016,Sports_celeb,@rolopez42,They need another set of twins dagnabit! I'll even stay in the garage! #WordToDJ #DoTheJessman #DontBeJealous https://t.co/UgqoH3BjFJ +08/26/2016,Sports_celeb,@rolopez42,RT @MDC10000: Pretty sure I just saw @rolopez42 on the streets of Vienna. Who else is 7ft tall with sideshow bob's haircut and yogi bear's… +08/26/2016,Sports_celeb,@rolopez42,@MDC10000 it's clearly bullwinkle you jerk +08/07/2016,Sports_celeb,@rolopez42,Made the trek to Safeco to see the Kid get his number in the rafters #TheKid #Mariners #FavoriteAthleteEver #24Ever https://t.co/h0xR5srGkY +07/28/2016,Sports_celeb,@rolopez42,At #Ghibli Museum! #HawaiinIndy #ItAllBelongedInAMuseum #Totoro #Gigi #NotTheMovieTheCat #IStillLoveYouLeslieCaron https://t.co/4sd10M41nm +07/24/2016,Sports_celeb,@rolopez42,Who knew it'd feel so good to buy awards with your friends & hand them out to each other?? #Kirkies2016 https://t.co/KQu6L9yAYO +07/23/2016,Sports_celeb,@rolopez42,The 2016 Kirkies Ceremony is tonite @ 8 p.m. PST! Who'll win the KPCup?? #ManOfTheSummer #Kirkies2016 #SponsoredByGQ https://t.co/TxLxIucS7A +07/17/2016,Sports_celeb,@rolopez42,2016 #Kirkies Award Season has begun! #OutfitOfTheDays have gone to @jkjohnnyp @tyjruiz & yours truly #Kirkies2016 https://t.co/0I5OlGzBpO +06/25/2016,Sports_celeb,@rolopez42,"She was so excited to see Tron's Game Grid, but it got super awkward once she was derezzed. #EndOfLine #Tron #Disney https://t.co/1mezz815iu" +06/25/2016,Sports_celeb,@rolopez42,That's why you're my guy!!! #TruffleShuffle #NeverSayDie ##RoloEat https://t.co/KTB7v5Me0g +06/12/2016,Sports_celeb,@rolopez42,Off to #ShanghaiDisneyland for the Grand Opening! Excited & grateful for the experience! #Disney #PeopleMover https://t.co/gkVBHJINkm +06/06/2016,Sports_celeb,@rolopez42,Hanging out at #Stanford in the offsets on with the Card Colored headphones! #HandModeling @JBLAudio #TeamJBL https://t.co/RGOZeHquhi +05/28/2016,Sports_celeb,@rolopez42,"@MettaWorldPeace I appriciate the love, thank you!" +05/25/2016,Sports_celeb,@rolopez42,@DCComics @geoffjohns @Williamson_Josh @ChinaJoeFlynn I will now that we have both Wallys. TV Flash strike has officially ended. +05/25/2016,Sports_celeb,@rolopez42,"@DCComics @geoffjohns @Williamson_Josh I hope not. If he's the genesis, it loses its mystique & permanently elevates barry above others." +05/25/2016,Sports_celeb,@rolopez42,RT @van_jensen: In the @WSJ: I cowrote a piece on the preponderance of familial relationships in the @NBA -- 48.8% of players! https://t.co… +05/25/2016,Sports_celeb,@rolopez42,So did Barry Allen still create the speed force? Or is it all mysterious again @DCComics @geoffjohns @Williamson_Josh will we find out soon? +05/10/2016,Sports_celeb,@rolopez42,"Ran into Indiana Jones cosplayers in Dubai. They look terrible, amiright? #So20YearsAgo… https://t.co/RN2yeGCMHY" +05/10/2016,Sports_celeb,@rolopez42,"Ok, this is something that has to happen @van_jensen! https://t.co/x0C1UXeoJR" +05/09/2016,Sports_celeb,@rolopez42,Sideshows Bob and Rob with the big guy who pays our checks (When not using them to bet on the… https://t.co/4mBvKjPkpJ +05/09/2016,Sports_celeb,@rolopez42,"@ZachLowe_NBA believe it or not, I'm at Universal Florida. Found it in the Kwik-E-Mart!" +05/09/2016,Sports_celeb,@rolopez42,They're not out of Bort plates guys. All is well. #MySonIsAlsoNamedBort #Bort #TheSimpsons https://t.co/uLSX4GuUYQ +05/09/2016,Sports_celeb,@rolopez42,"Just watching the sun move across the sky. When it gets to here, I can drink again! #TheSimpsons… https://t.co/mqK3KJiPJD" +04/28/2016,Sports_celeb,@rolopez42,So much fun! Gotta meet up again this trip and stateside for sure! #HesGotThatHookShotToo https://t.co/aOV65fSBw7 +04/25/2016,Sports_celeb,@rolopez42,On to Mumbai in my trusty Indy Brand Adventurer's hat! #IWannaBeInIndy5 #ItsMeOrMutt #NBAIndiaTour #IndianaJones https://t.co/reHso0ORx3 +04/25/2016,Sports_celeb,@rolopez42,@NBAIndia @nyknicks @SacramentoKings @sdotcurry Dazzle with fundamental box outs!!! +04/22/2016,Sports_celeb,@rolopez42,"@rockthecasbahh we didn't do ""diss tracks"". We were all about the love. #ThatWasTheNameOfOurSecondAlbum" +04/22/2016,Sports_celeb,@rolopez42,#FlashbackFri to when I was atop the charts for 7 wks in '03 w/the jam #GambleOnMyLove ft. my guys #TheBacksyncBoyz https://t.co/tHyswoQwZA +04/21/2016,Sports_celeb,@rolopez42,RT @nyknicks: Happy #NationalHighFiveDay from the #Knicks! https://t.co/mWku7MCypN +04/21/2016,Sports_celeb,@rolopez42,RT @LangGalloway10: Glad to catch up with the guys before the off-season starts up. Summer16 https://t.co/E2MtwzeoYh +04/20/2016,Sports_celeb,@rolopez42,"@ATLHarryTheHawk Good deal, though you should keep the cup on #JustSayin #IFightCleanTho #WhatILearnedInLittleLeague #TheyPutMeInRightField" +04/20/2016,Sports_celeb,@rolopez42,"RT @ATLHarryTheHawk: @rolopez42 So ur gonna kick a bird while he's down huh? Ok, I guess the gloves are off now." +04/20/2016,Sports_celeb,@rolopez42,@ATLHarryTheHawk If you can't take the heat... #StayOffaNationalTV #MascotFail #ThatsAnOxymoronHuh? https://t.co/5X7ZEOGGVa +04/20/2016,Sports_celeb,@rolopez42,It's here it's here it's really here!!! #NextComesTheMiniSeries #ThanksGuys #Flash50 #FastestManAlive https://t.co/fkMcaS0tAs +04/18/2016,Sports_celeb,@rolopez42,"""Art of Walt Disney"" book w/ Mickey Mouse sketch by some moop named Oalt Gisnet?!? #WaltDisney #MickeyMouse #Disney https://t.co/auOfxXWhvk" +04/15/2016,Sports_celeb,@rolopez42,Everyone's favorite #Disney statues in Cali #ExceptUGeppetto #NobodyLuvsYou #JustKiddingIDo #ONoRoloNowYoureMarried! https://t.co/18T8ln6v1u +04/15/2016,Sports_celeb,@rolopez42,"RT @van_jensen: @rolopez42 @DCComics Between this and the Swamp Dragons jersey, a good week for stoking Brook's jealousy, right?" +04/15/2016,Sports_celeb,@rolopez42,@van_jensen @DCComics in my mind I Have No Twin in this universe. #ImMyOwnMan #TearsOfJoy #ThisIsCrazy!!! +04/15/2016,Sports_celeb,@rolopez42,My 1st comics appearance is Flash #50! Someone get me Zatanna's # & an entry in Who's Who!!! @van_jensen @DCComics https://t.co/xCWOYN0ByL +04/09/2016,Sports_celeb,@rolopez42,I can honestly tell you Brook could not be more jealous right now #AndThatCouldntMakeMeHappier #HeWantsThoseUnis https://t.co/vIVvDRz0yn +04/08/2016,Sports_celeb,@rolopez42,We at least need jerseys...we as Americans deserve that much. https://t.co/r4BFStCPRm +04/08/2016,Sports_celeb,@rolopez42,"RT @BleacherReport: Just some light rookie hazing for @kporzee and @JerianGrant on @rolopez42's birthday (via @kslife) +https://t.co/Mleaaia…" +04/05/2016,Sports_celeb,@rolopez42,Further proof my ideal life is that of a second grader #HotDogsAndCarouselHorses #LGG5 https://t.co/MehMQXxZz4 +04/01/2016,Sports_celeb,@rolopez42,"In honor of my birthday, Brook and I have some exciting news: we are starring in our first movie!!! Thanks @bycycle! https://t.co/GLmiW58uQg" +03/28/2016,Sports_celeb,@rolopez42,I only hope I can articulate the country's feelings for you adequately enough with my fists. #ALongTimeComing https://t.co/wvc3kPKtcQ +03/27/2016,Sports_celeb,@rolopez42,@DCComics @geoffjohns when is Wally West going to be old enough to hang out with the real Titans? #IMissDickGraysonsBestFriend +03/27/2016,Sports_celeb,@rolopez42,RT @ValiantComics: The Valiant Car has arrived at the Fallout Shelter comic shop in NJ! #NCBD https://t.co/baCa5o8n99 +03/23/2016,Sports_celeb,@rolopez42,#NuevaYork #TheOcho #AlmostASport https://t.co/YnOaDLg1UA +03/18/2016,Sports_celeb,@rolopez42,Took my new dog Muppet to visit @Nikilster at the @downtolunch HQ! Congrats on your success bro! Check out the app! https://t.co/oSiN5FSP9v +03/18/2016,Sports_celeb,@rolopez42,"RT @Nikilster: The one thing that can make us take a break leave DTL HQ: The Return of the Robin 🙌 + +#Room… https://t.co/DaeINFSzyX https://…" +03/15/2016,Sports_celeb,@rolopez42,The best part of #MarchMadness is really #MarchMagic Even tho I would give these teams buckets (or box outs) #Disney https://t.co/WbZhVEimoO +03/15/2016,Sports_celeb,@rolopez42,@gswarrior10 I can't wait to see the little #TKitten!!! +03/15/2016,Sports_celeb,@rolopez42,RT @gswarrior10: Thank you uncle robin!! I'll see you in the offseason- Isaiah Oliver @rolopez42 https://t.co/wmQRXR6yTI +03/13/2016,Sports_celeb,@rolopez42,Godspeed my friend! #VoteRory #HeWantsToBeABobblehead @RoryDoesPhonics https://t.co/yV0Zhyf2mT +03/07/2016,Sports_celeb,@rolopez42,"New #DuckTales on the way, can't wait til 2017, hope Launchpad appears tho... #WooHoo #Disney #CarlBarks https://t.co/adIrUAbCc3" +03/03/2016,Sports_celeb,@rolopez42,"RT @DisneyD23: JUST ANNOUNCED! Disney pledges $250,000 to the Walt Disney Birthplace project: https://t.co/NdDwewQWoo https://t.co/B08SDQpP…" +03/02/2016,Sports_celeb,@rolopez42,RT @ZachLowe_NBA: Robin Lopez suggestion for Clips mascot: a sea dog wearing a sailor's cap. +02/26/2016,Sports_celeb,@rolopez42,RT @RoryDoesPhonics: Which of you are popular enough to be on this bracket? Make a case. Already have some (@mikeoz @MayorSwearengin @Henry… +02/22/2016,Sports_celeb,@rolopez42,Congrats to @jevonpepper on winning 2 tickets to Disneyland! Pirates of the Caribbean has always… https://t.co/WwQAydh6V1 +02/22/2016,Sports_celeb,@rolopez42,"Finally found my 2nd favorite Disneyland attraction ever! Miss the #Peoplemover! Btw, whoever… https://t.co/fAKTkWCNDV" +02/21/2016,Sports_celeb,@rolopez42,Thanks brother. See you soon! https://t.co/MdU0vNlnq9 +02/21/2016,Sports_celeb,@rolopez42,"RT @kevin_seraphin: Great win,solid team work @nyknicks! Now back home for another battle on monday. #Knicks #Kslife #WeAreOne #Teamwork ht…" +02/21/2016,Sports_celeb,@rolopez42,"Always have been, always will be! #SeeYouThisSummer #Aug6thForSure @MarinerMoose https://t.co/iMesJTU5id" +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs That was such a great little nod in the backlot +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs always wanted to go on Horizons. World of Motion is a close second. +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs Same boat. #ThankGodForYoutube +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs you got it ;) +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs you should be able to guess based of your handle!!! #HintItsNotHorizons +02/19/2016,Sports_celeb,@rolopez42,The 2 nicest whips I own #DidISayWhipRight? #MrToad #SpaceMountain #GoldenHorseshoe #Disney #Disneyland #DisneyWorld https://t.co/0VRGNO9lub +02/19/2016,Sports_celeb,@rolopez42,The two nicest whips I own #YouKeepTheMaybachs #DidISayWhipsRight? #MrToad #SpaceMountain… https://t.co/arE9flHk6r +02/14/2016,Sports_celeb,@rolopez42,VDay in Morocco with #Aladdin inspired evening wear! #EPCOT #WaltDisneyWorld #Disney #HappyValentinesDay https://t.co/dlDqTb7rrv +02/14/2016,Sports_celeb,@rolopez42,Can't beat VDay with christine_vargas in #Aladdin & #Jasmine inspired evening wear in… https://t.co/Ima80PvpRL +02/03/2016,Sports_celeb,@rolopez42,"RT @ROSGO21: Pregame w Kirk Lacob @klacobprime & Robin Lopez @rolopez42 at Madison Square Garden +#StanfordFam #NerdNation 🌲🙌🏽💪🏽🏀🌲 +https://t…" +01/31/2016,Sports_celeb,@rolopez42,"Yeah, you two monstrosities should have fun hanging out together. He can be the new King Cake Baby. https://t.co/8gIOWIGKKe" +01/30/2016,Sports_celeb,@rolopez42,Movie Night! #TokyoStory and #RioBravo #PrettySureThisIsTheBasisForToyStory #JohnWayne #DeanMartin #YasujiroOzu https://t.co/eeY9mV8Nql +01/25/2016,Sports_celeb,@rolopez42,"Brook and I are stopping by at @Tissot Times Square in #NYC Today, Monday 1/25 at 5pm! Meet us there! #Tissot #NBA" +01/21/2016,Sports_celeb,@rolopez42,RT @kporzee: Great team W! S/O to big bro @carmeloanthony for passing L.Bird on the all time scoring list and also great game by @rolopez42… +01/20/2016,Sports_celeb,@rolopez42,@mikepriceinla I'm there! +01/20/2016,Sports_celeb,@rolopez42,"Probably the closest I'll ever come to being on the show, not counting Robert Terwilliger. #DammitKP #IKidNY https://t.co/kl4uB5nsQg" +01/13/2016,Sports_celeb,@rolopez42,That one was for my right shoe #AndTheChildren #ForRolosShoe #ImSorryIThrewYou #Knickstape +01/11/2016,Sports_celeb,@rolopez42,"RT @kevin_seraphin: Another win, another great night in this fantastic @TheGarden! Thanks @nyknicks nation for the love and support! https:…" +01/11/2016,Sports_celeb,@rolopez42,I look like too much of a moron not to post this. Helluva team win tonight #CoolRunnings #GoJohnCandyGo #Knickstape https://t.co/dKtrJoAAy2 +01/07/2016,Sports_celeb,@rolopez42,RT @colinmeloy: @rolopez42 Don't make me start in on Knicks erotic fanfic... +01/07/2016,Sports_celeb,@rolopez42,This clearly isn't your first time behind the erotic fanfic keyboard https://t.co/c7qVcFbVyu +01/07/2016,Sports_celeb,@rolopez42,RT @MLB: Welcome to immortality. The 2016 #HOF electees: Ken Griffey Jr. and Mike Piazza. https://t.co/P7MKb3YvT7 +01/07/2016,Sports_celeb,@rolopez42,RT @jerryferrara: Great win tonight for my @nyknicks ! That's 3 in a row. 4 out of 5. Let's go! @rolopez42 @kporzee @LangGalloway10 @DWXXII… +01/06/2016,Sports_celeb,@rolopez42,RT @jerryferrara: That's 2 in a row! Let's go @nyknicks @rolopez42 @kporzee @carmeloanthony @LangGalloway10 @Kyle_OQuinn +01/01/2016,Sports_celeb,@rolopez42,Here's to a 2016 with even more Grand Adventures and zany hats. Especially the hats.… https://t.co/PIAhlUHPP4 +01/01/2016,Sports_celeb,@rolopez42,RT @hobbledegaagaa: Happy New Year to @rolopez42 and the @nyknicks +01/01/2016,Sports_celeb,@rolopez42,RT @whatwouldDOOdo: @thatbilloakley @realBobWoodward @rolopez42 @coleswindell @michaeldrich @RoyPrice happy new year! https://t.co/eIDyB3Ym… +12/27/2015,Sports_celeb,@rolopez42,Today I was visited by three Spirits & learned the true meaning of #BoxingDay #TipYourPostman #HappyBoxingDayAmerica https://t.co/OIQS4jalZ7 +12/26/2015,Sports_celeb,@rolopez42,RT @SixersFranklin: Pretty sure @rolopez42 got coal and coal only today....I hope he got coal only. https://t.co/Cx1p5wHdKR +12/21/2015,Sports_celeb,@rolopez42,RT @nyknicks: .@rolopez42 and @gardenofdreams spreading holiday cheer with the gift of a new @Kia for #SeasonOfGiving! https://t.co/ItNXrZW… +12/18/2015,Sports_celeb,@rolopez42,"Something I'd like to see in the box. Think Gwyneth Paltrow, if she was a giant blue dog who didn't know her place. https://t.co/hv0mXhCK54" +12/15/2015,Sports_celeb,@rolopez42,And that was what exactly...? https://t.co/2DYJPBHBJA +12/14/2015,Sports_celeb,@rolopez42,Looks like those clowns in congress have done it again. What A Bunch Of Clowns. +12/13/2015,Sports_celeb,@rolopez42,"RT @JmCalderon3: Great W to finish the road trip! Big game from @carmeloanthony @Kyle_OQuinn @rolopez42 Aaron , @DWXXIII @LangGalloway10 La…" +12/12/2015,Sports_celeb,@rolopez42,RT @CHold: . @rolopez42 texting Edward from the road https://t.co/VPkysaeUcI +12/11/2015,Sports_celeb,@rolopez42,RT @SlamsonTheLion: More with @rolopez42 mistletoe cam from last night #halitosis https://t.co/yq6vYPLw2q +12/11/2015,Sports_celeb,@rolopez42,@PierreTPelican @the_real_Gwiz The memories are all we have in the end. And the physical and emotional scars. But mostly the memories. +12/11/2015,Sports_celeb,@rolopez42,RT @PierreTPelican: .@the_real_Gwiz just remember what happens when you trash talk. Right @rolopez42? https://t.co/tmjGjzbWaT +12/09/2015,Sports_celeb,@rolopez42,"#Mondaze amiright?! + +Follow me for more hilarious insight into this crazy 9 to 5 we call Life! https://t.co/oXxDH3IIZW" +12/07/2015,Sports_celeb,@rolopez42,Prince Edward is proud of @TimbersFC for winning the cup today! Congrats to them Bad Boys & @christine_vargas #RCTID https://t.co/vckVufLgFn +12/06/2015,Sports_celeb,@rolopez42,RT @RoseHarding: @rolopez42 @GavinCuneo @ValiantComics Did they send you a REAL CAT?! Amazing. +12/06/2015,Sports_celeb,@rolopez42,Just got an awesome package from @GavinCuneo @ValiantComics! Been digging their stuff forever thanks! #ValiantComics https://t.co/X1DFjCPKUY +12/06/2015,Sports_celeb,@rolopez42,RT @BucksBango: @rolopez42 I will be training. Next year you're mine. https://t.co/0D9uvdjgdt +12/05/2015,Sports_celeb,@rolopez42,"#HappyBirthdayWaltDisney, who I love & admire to no end. Even if he once held up a coach of kids. #WeLoveYouMrDisney https://t.co/CyQpQ98BaA" +12/05/2015,Sports_celeb,@rolopez42,"I guess everybody's the hero in their own story...but, hey, flattered by the Vader comparison anyway #Knicks https://t.co/blr8FP7tud" +12/05/2015,Sports_celeb,@rolopez42,"RT @Animation_Cels: A fond and loving farewell to Elfego Baca. #Disney #WonderfulWorldofColor +RIP https://t.co/J94LKXheb5" +12/05/2015,Sports_celeb,@rolopez42,During the game @pezwardisking apparently learned how to take selfies. #GoodKitty #ForTheGloryOfEdward #Knicks https://t.co/V2AQ8rptqi +12/04/2015,Sports_celeb,@rolopez42,"RT @nyknicks: .@rolopez42 vs. Brook and former #Knicks return to @TheGarden on @MSGNetworks! #NYKvsBKN + +https://t.co/toxF61rmO4 https://t.c…" +12/04/2015,Sports_celeb,@rolopez42,"RT @ZachLowe_NBA: Lowe Post podcast: @rolopez42 + @adampally live in studio to talk mascot abuse, NBA lifestyle, Kristaps mania, more https…" +12/04/2015,Sports_celeb,@rolopez42,@CavsMoondog @Melody22B He's right. I'm always #clowning this fool +12/03/2015,Sports_celeb,@rolopez42,"Jedi Kill Bill over here #Lolz #YouLikeTheTracksuit #IHaveTheHighGround #ShutUpObiThatDoesntMakeSense +#StarWars https://t.co/vU4q4Quyk6" +11/29/2015,Sports_celeb,@rolopez42,RT @BrooklynNets: A tale of two brothers and their #catprobs: https://t.co/KOYKknJ6FX #Nets https://t.co/aQanni9TwI +11/29/2015,Sports_celeb,@rolopez42,Heading to the Garden with @JBLaudio check em out at https://t.co/FMyNTHREAQ #ThatsGoodStuff https://t.co/8JQvLSTxmY +11/29/2015,Sports_celeb,@rolopez42,"Had a great time last night at @Aladdin! Loved meeting @AdamJacobsNYC and jamesmiglehart, just as… https://t.co/P56cHDbgZz" +11/29/2015,Sports_celeb,@rolopez42,@jamesmiglehart I love that whole film top to bottom...always wanted to do that to a professor in college haha! +11/29/2015,Sports_celeb,@rolopez42,RT @jamesmiglehart: I feel a little small next to the awesome Center @rolopez42 aka @rolopez42! https://t.co/1duxQLQSYU +11/29/2015,Sports_celeb,@rolopez42,RT @AdamJacobsNYC: Likewise bro! Come back to Agrabah anytime :) I'll lend you the magic carpet to treat your Jasmine... #NYKnicks #8 http… +11/29/2015,Sports_celeb,@rolopez42,@AminESPN no elephants but they made me proud. You know how high my vocals standards are..... +06/30/2018,Sports_celeb,@DwyaneWade,"✌🏾 #barcelonanights #TheWades #wadesworldtour2018 @ Barcelona, Spain https://t.co/HI6iv7TgwY" +06/30/2018,Sports_celeb,@DwyaneWade,"When you think your fresh asf!!! #BarcelonaNights #wadeworldtour2018 @ Barcelona, Spain https://t.co/aBer7scJEp" +06/30/2018,Sports_celeb,@DwyaneWade,Your LAUGH will forever be! RIP Willie May Morris! You shaped my thoughts as early as 5 years old to make something… https://t.co/5tMaJCHywm +06/30/2018,Sports_celeb,@DwyaneWade,Perfectly said https://t.co/WcRgDxgmvP +06/30/2018,Sports_celeb,@DwyaneWade,RT @KrickettwithaK: Anyone still have this #mubb @MarquetteMBB @DwyaneWade classic?! I do! https://t.co/5vmEqE4fny +06/29/2018,Sports_celeb,@DwyaneWade,"🕺🏾 @ Barcelona, Spain https://t.co/yfPAHQHhjm" +06/29/2018,Sports_celeb,@DwyaneWade,Great convo with my guy @Yg_Trece about his upcoming free agency! I appreciate you sitting down with me to talk abo… https://t.co/WQ1tmrEsLk +06/29/2018,Sports_celeb,@DwyaneWade,RT @SneakerReporter: Dope 1 on 1 conversation with @DwyaneWade and @Yg_Trece on My Journey Part 2. https://t.co/e09aLCjjSL +06/29/2018,Sports_celeb,@DwyaneWade,"RT @r0bato: Next is Paul George talking with Dwyane Wade + +1. PG says he could come to LA to play for the home team but he wants to win a ti…" +06/28/2018,Sports_celeb,@DwyaneWade,RT @utahjazz: Grayson tried to model his game after @DwyaneWade & @manuginobili growing up as a kid. D-Wade was the reason he wore number 3. +06/27/2018,Sports_celeb,@DwyaneWade,"Go behind the scenes of my shoot with @away and find out how I ""Talent!"" Make sure to hit that subscribe button!… https://t.co/hXbZpuKHa8" +06/27/2018,Sports_celeb,@DwyaneWade,"🇪🇸 Vacation Crew Vibez!!! @ Ibiza, Spain https://t.co/e7Q5qFSEaG" +06/26/2018,Sports_celeb,@DwyaneWade,RT @HarvardHBS: Learn more about @DwyaneWade's new role teaching rising college seniors as an Executive Fellow. SVMP is a one-week resident… +06/26/2018,Sports_celeb,@DwyaneWade,Ambition travels with me... My new collection with @away is available now! Check it out! https://t.co/4KvjnCQiRU https://t.co/Jhu1awM7Rr +06/26/2018,Sports_celeb,@DwyaneWade,"🇪🇸 ⛳️ #wadeworldtour2018 @ Ibiza, Spain https://t.co/5r8oHqeWcG" +06/25/2018,Sports_celeb,@DwyaneWade,"We’re BROTHERS, were HAPPY and we’re singing and we’re Colored!!! Vacation Vibes with my brother ud40 #Outthebox… https://t.co/fC9CmqVJbt" +06/25/2018,Sports_celeb,@DwyaneWade,🗣🗣🗣 https://t.co/QsufE5wzpz +06/25/2018,Sports_celeb,@DwyaneWade,It’s two kinda people in this 🌍. The ones who LIVE and the ones who watch others LIVE!!! Which one are you!?!?!… https://t.co/plYoqSk0w2 +06/25/2018,Sports_celeb,@DwyaneWade,The face you make when someone says you can’t do something!?!?! #Harvard #Executivefellow https://t.co/9u8xCgiZ32 +06/25/2018,Sports_celeb,@DwyaneWade,When you’re sitting between these two women @anitaelberse @itsgabrielleu you better bring your A game!👊🏾🙏🏾🙌🏾♥️… https://t.co/woDaJrSH3E +06/25/2018,Sports_celeb,@DwyaneWade,I’m just trying to be like you. Hi @karliekloss https://t.co/bDq0KB10EE +06/24/2018,Sports_celeb,@DwyaneWade,Seattle is a great city and has some of the most passionate basketball fans out there. It would be cool to see this… https://t.co/ieDiN9NBnm +06/24/2018,Sports_celeb,@DwyaneWade,🤦🏾‍♂️ https://t.co/p8vifjGWau +06/23/2018,Sports_celeb,@DwyaneWade,TheWades take NYC💧 https://t.co/bno1pxRNt8 +06/23/2018,Sports_celeb,@DwyaneWade,"TheWades take NYC💧 @ New York, New York https://t.co/XBv1zp51UR" +06/22/2018,Sports_celeb,@DwyaneWade,Good morning world! Focus on today as it’s preparing you for tomorrow and the rest of your life! Go be GREAT! +06/21/2018,Sports_celeb,@DwyaneWade,💯 #ChicagoMade @marsreel https://t.co/cywJlSOqyF +06/20/2018,Sports_celeb,@DwyaneWade,RIP good Sir! https://t.co/xlwM0o9xLs +06/20/2018,Sports_celeb,@DwyaneWade,💧 https://t.co/vhq6Vf0JR9 +06/19/2018,Sports_celeb,@DwyaneWade,You know me.. no limits. No rest for the ambitious wanderer. My new collab with @away is coming soon!… https://t.co/EDJTvdA41k +06/19/2018,Sports_celeb,@DwyaneWade,The Glove 🧤 #HOF #2006NBAChampion https://t.co/sdwXEvzHpr +06/17/2018,Sports_celeb,@DwyaneWade,Happy Fathers Day Hank!!! I love you and I’m… https://t.co/SUUkqUcixO +06/17/2018,Sports_celeb,@DwyaneWade,😂😂😂 oh fo sho. Sweet Butter is the jam tho!!! https://t.co/FeG7EhfsnR +06/15/2018,Sports_celeb,@DwyaneWade,"Man, if it wasn’t for the male role models in my life, I wouldn’t be here today. Shoutout to all the fathers and fa… https://t.co/eJRuarXQaD" +06/15/2018,Sports_celeb,@DwyaneWade,Simply a Master Piece! https://t.co/fWjaAAB76g +06/15/2018,Sports_celeb,@DwyaneWade,2012: Hey Punk. Catch. 2018: Hey Sir. Excuse me you dropped your shoe🤷🏾‍♂️ https://t.co/Ij5aoHn3jK +06/15/2018,Sports_celeb,@DwyaneWade,He’s a winner people! https://t.co/DUliOBpY8j +06/14/2018,Sports_celeb,@DwyaneWade,It feels good being back with the family @TheCollectionFL!! I couldn’t ride through this city without all the suppo… https://t.co/2lvjXeMOlk +06/11/2018,Sports_celeb,@DwyaneWade,Let’s let the record show.. I don’t have any inside information whatsoever about his decision! https://t.co/qgm6znLWzk +06/11/2018,Sports_celeb,@DwyaneWade,If you find them can you pls let the whole world know. Fathers always get the left over gifts https://t.co/qrXhVQ1Ca4 +06/11/2018,Sports_celeb,@DwyaneWade,RT @cheddahcheese7: I love what the NBA is doing with mental health! @MRobertsNBPA @ChrysaChin @TheNBPA I would love to see my guy @shansme… +06/09/2018,Sports_celeb,@DwyaneWade,"It’s #NationalRoséDay so it’s only right that I’m celebrating with my brand new Three by Wade Rosé, available now a… https://t.co/sPdAP0WXHV" +06/08/2018,Sports_celeb,@DwyaneWade,"0️⃣6️⃣🏆 @ Miami Beach, Florida https://t.co/VebXdrGtPG" +06/08/2018,Sports_celeb,@DwyaneWade,Oh yeah! I can see this pairing oh-so-well with my new @dwadecellars Rosé. I’ll let @Chefrli tell you a little bit… https://t.co/A1CGdnm3jR +06/08/2018,Sports_celeb,@DwyaneWade,😂😂😂😂😂💯 https://t.co/qgx0rLdAcs +06/07/2018,Sports_celeb,@DwyaneWade,“My goodness”( Jeff van gundy voice) +06/06/2018,Sports_celeb,@DwyaneWade,Chef tried to pull a fast one on me with my own wine but I know my stuff! Episode 2 of #WadesKitchenConvos is out n… https://t.co/RGKARUCFev +06/05/2018,Sports_celeb,@DwyaneWade,👀 https://t.co/9KXMuxyRRQ +06/05/2018,Sports_celeb,@DwyaneWade,This brought me joy to watch!!! @heydb Doris Burke high school highlights https://t.co/UDueGjhKqx via @YouTube +06/03/2018,Sports_celeb,@DwyaneWade,Thanks @BallerTV for creating a platform for the parents that can’t be there but wanna watch their kids play.… https://t.co/8Zos3KVxvP +06/03/2018,Sports_celeb,@DwyaneWade,I like that sweater kid! https://t.co/SkSyh6OhOl +06/01/2018,Sports_celeb,@DwyaneWade,I’ll take each game just like this one. Wire to wire. +05/31/2018,Sports_celeb,@DwyaneWade,https://t.co/CDaW9lo7dp +05/30/2018,Sports_celeb,@DwyaneWade,RT @RobinRoberts: It was a show-stopping performance by @SerenaWilliams in her first major tournament since returning from maternity leave.… +05/30/2018,Sports_celeb,@DwyaneWade,I guess all black people do look alike 🤷🏾‍♂️ because @itsgabrielleu wasn’t at the Olympic in 08. Clearly Eric Jr li… https://t.co/YJ0huPaV08 +05/29/2018,Sports_celeb,@DwyaneWade,Happy Anniversary to you both!!! https://t.co/uMGuE7YJ0N +05/28/2018,Sports_celeb,@DwyaneWade,"RT @BleacherReport: Jeff Green had open-heart surgery in 2012. Now he's competing in the NBA Finals 🙏 + +(via @NBA) +https://t.co/afu9fbLoeu" +05/28/2018,Sports_celeb,@DwyaneWade,RT @kobebryant: #Annie #Oscar #Emmy safe to say I’m focused on another mountain but I’m guessing it’s hard to fathom athletes supporting ot… +05/28/2018,Sports_celeb,@DwyaneWade,RT @kobebryant: We can enjoy one without tearing down one. I love what he’s doing. Don’t debate what can’t be definitively won by anyone #e… +05/28/2018,Sports_celeb,@DwyaneWade,That’s a bad man. Congrts bro on your 8th straight FINALS! DAMN! @KingJames https://t.co/SqFtD0qfVE +05/28/2018,Sports_celeb,@DwyaneWade,"RT @Channing_Frye: Who in the world can hate now lord have mercy, teammate, friend or not this is ridiculous" +05/27/2018,Sports_celeb,@DwyaneWade,Prayers up to his family🙏🏾🙏🏾🙏🏾. Rest easy young hooper! https://t.co/PEQSr26Unm +05/27/2018,Sports_celeb,@DwyaneWade,And to think at one point I wasn’t even the most popular person in my biology class. #Nolabpartner https://t.co/L9RmYjrFw5 +05/27/2018,Sports_celeb,@DwyaneWade,YnG DNA! https://t.co/NMZkEVA0rA +05/27/2018,Sports_celeb,@DwyaneWade,Atleast he’s a champion🤷🏾‍♂️ https://t.co/6iUr5YclUb +05/27/2018,Sports_celeb,@DwyaneWade,RT @HoopersOnIy: Kids these days won’t know how good D Wade actually was 😳 https://t.co/sdkukhuu52 +05/27/2018,Sports_celeb,@DwyaneWade,👇🏾 https://t.co/Ugaczq1T3T +05/26/2018,Sports_celeb,@DwyaneWade,"RT @Wade_Elite: Wade Elite - 67 +East Coast United - 66 + +@enew_5 - 22p 6a 5r +@cloading8 - 17p 10r 2s 2a +@G_Urbonavicius - 14p 10r +Seven Fer…" +05/25/2018,Sports_celeb,@DwyaneWade,"Join me this summer for my basketball & cheer camps! + +Miami: July 7 & 8 +Chicago: August 4 & 5 (register by… https://t.co/0jqQaDnCR4" +05/24/2018,Sports_celeb,@DwyaneWade,Fit on point ✅ Swag on infinity ✅ Co-pilot on Wookiee ✅ Let’s roll. #ad https://t.co/5M4AGquxGi +05/24/2018,Sports_celeb,@DwyaneWade,@J_Rich1 i know the feeling. Nothing against my friend Kobe who was a helluva defender forget the numbers but the v… https://t.co/0wehb3y6SU +05/24/2018,Sports_celeb,@DwyaneWade,This was 6 years ago 🤦🏾‍♂️. Time really does fly. I remember this game like it was last night. https://t.co/jQpP6lOzWq +05/24/2018,Sports_celeb,@DwyaneWade,Thank you @bookingyeah for helping me surprise… https://t.co/MBIrHfPCPW +05/23/2018,Sports_celeb,@DwyaneWade,😂😂😂😂😂 https://t.co/d7qACW26TF +05/23/2018,Sports_celeb,@DwyaneWade,RT @Bucks: Statement From Sterling Brown: https://t.co/mkcM0Dbklr +05/23/2018,Sports_celeb,@DwyaneWade,Hungry yet? We got #WadesKitchenConvos Episode #1 out the oven for you! @Chefrli and I talk about @itsgabrielleu's… https://t.co/EkpSyGJ0mw +05/23/2018,Sports_celeb,@DwyaneWade,RT @isaiahthomas: We need a @NBA team in Seattle!!!!! +05/23/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: “The city has been through a tough time with the things in Santa Fe ... hopefully basketball can be a way people can come a… +05/22/2018,Sports_celeb,@DwyaneWade,😂😂😂😂 busted! https://t.co/3M8mw62sEU +05/22/2018,Sports_celeb,@DwyaneWade,RT @BUBrianWardle: Proud of our players and their commitment to the big picture! https://t.co/U4CfjKllKo +05/22/2018,Sports_celeb,@DwyaneWade,It’s getting real in the kitchen with @Chefrli. We’re taking things to another level with my “Kitchen Convos” serie… https://t.co/cmHHKkA53R +05/22/2018,Sports_celeb,@DwyaneWade,I Definitely seen this reaction out of you at my spades event https://t.co/IF3aixfeTu +05/22/2018,Sports_celeb,@DwyaneWade,"My brother @JamesShawJr9 is doing the work! +https://t.co/pgFyOfKycy" +05/22/2018,Sports_celeb,@DwyaneWade,He’s a BUCKET! https://t.co/zV91pWsGvR +05/22/2018,Sports_celeb,@DwyaneWade,A thing of beauty! https://t.co/IsxcHnKzCE +05/21/2018,Sports_celeb,@DwyaneWade,Dope! https://t.co/yH0jvPnYNy +05/21/2018,Sports_celeb,@DwyaneWade,💭 https://t.co/CIFrghTnD0 +05/21/2018,Sports_celeb,@DwyaneWade,I want Zaire to be the best Zaire he can be. https://t.co/yXHUHNONrD +05/21/2018,Sports_celeb,@DwyaneWade,Haters are people who wanna be you. “Imitation is the sincerest form of flattery” https://t.co/zUG0nCXMeW +05/21/2018,Sports_celeb,@DwyaneWade,Channing is da real MVP! https://t.co/V8yO8mrwfs +05/21/2018,Sports_celeb,@DwyaneWade,It’s whatever the team who has the number 1 pick needs but this class of guys are very talented! https://t.co/63gmxDvplG +05/21/2018,Sports_celeb,@DwyaneWade,It’s an exciting time for you I’m sure. Congrts on the day your baby is born🙏🏾 https://t.co/MsaJYqFAlf +05/21/2018,Sports_celeb,@DwyaneWade,"The 3 finalist that was picked by the NBA were the same 3 I had. In NO certain order people. LeBron, Harden, AD! https://t.co/izsxmCjtDw" +05/21/2018,Sports_celeb,@DwyaneWade,💡 https://t.co/NIJBw1rFUh +05/21/2018,Sports_celeb,@DwyaneWade,"Win,lose or draw. This is what it’s all about!!! https://t.co/UVm4LdYi0n" +05/21/2018,Sports_celeb,@DwyaneWade,It’s a beautiful thing https://t.co/0W14gxtpkn +05/21/2018,Sports_celeb,@DwyaneWade,Possibly the coolest person to ever rock HEAT on their chest. https://t.co/ou9sWgNXnO +05/21/2018,Sports_celeb,@DwyaneWade,🗣 https://t.co/rF8cQaLwtG +05/21/2018,Sports_celeb,@DwyaneWade,Strong word* https://t.co/I720cDsXXM +05/21/2018,Sports_celeb,@DwyaneWade,Sweet https://t.co/EvkX2Ffrlb +05/21/2018,Sports_celeb,@DwyaneWade,😂😂😂 hate is a strong wrong. https://t.co/RukDegB3C9 +05/20/2018,Sports_celeb,@DwyaneWade,"RT @RealBillRussell: Thank you everyone for the kind thoughts, yes I was taken to the hospital last night & as my wife likes to remind me I…" +05/19/2018,Sports_celeb,@DwyaneWade,RT @LakePoint_Hoops: It was great to have @DwyaneWade and @itsgabrielleu in the house at @LakePointIndoor last weekend for the @NikeEYB! Wa… +05/19/2018,Sports_celeb,@DwyaneWade,RT @CBN_BBall: The Fathers and men of Professional Basketball Players Conference had a great time and Wendell P. William. @Quietstorm_32 @… +05/18/2018,Sports_celeb,@DwyaneWade,RT @sofiewhitney: My heart is with everyone at Santa Fe High School. No student should have to fear for their life. No student should have… +05/18/2018,Sports_celeb,@DwyaneWade,"RT @cameron_kasky: At least 8 students have been shot and killed at Santa Fe High School. + +Prepare to watch the NRA boast about getting hig…" +05/17/2018,Sports_celeb,@DwyaneWade,You want it for yourself but you want it for your kids even more. This one’s for Z. Wade. https://t.co/PVFIZDGvWO https://t.co/ZbwwYXz86Y +05/17/2018,Sports_celeb,@DwyaneWade,He better have averaged 43 points and that’s with sitting out the entire 4th 😂😂😂 https://t.co/sHMYaY3j06 +05/16/2018,Sports_celeb,@DwyaneWade,Wait...So we gotta wait until Saturday for game 3??? 🤷🏾‍♂️🙅🏾‍♂️. Come on @NBA +05/16/2018,Sports_celeb,@DwyaneWade,🙅🏾‍♂️ https://t.co/XZ9UBLmKLd +05/16/2018,Sports_celeb,@DwyaneWade,I like what you did there https://t.co/PwBhmXCWhv +05/16/2018,Sports_celeb,@DwyaneWade,Co-ROY https://t.co/tQX6aw1lgI +05/16/2018,Sports_celeb,@DwyaneWade,🔥 🔥 🔥 https://t.co/lCJ1p4qvPu +05/16/2018,Sports_celeb,@DwyaneWade,My prediction is I’m home on the couch watching and wishing i was playing. Like every other NBA player that’s not i… https://t.co/g9yCL7nghV +05/16/2018,Sports_celeb,@DwyaneWade,Yea i know. That’s the lil bro https://t.co/RCUOqv2o3c +05/16/2018,Sports_celeb,@DwyaneWade,Bron is gonna have to go Bron https://t.co/k651R8BdBl +05/16/2018,Sports_celeb,@DwyaneWade,It’s a cool thing to sit back and watch the Lil bro Scary Terry grow!!! +05/16/2018,Sports_celeb,@DwyaneWade,Kind of the only threes i do shoot https://t.co/pYBxB9O34s +05/16/2018,Sports_celeb,@DwyaneWade,Alil rusty. It’s been a while🤷🏾‍♂️. I had so much fun shooting these spots for Star Wars tho. https://t.co/DBMOaYyrCC +05/16/2018,Sports_celeb,@DwyaneWade,✊🏾 https://t.co/WmktUn6zAg +05/16/2018,Sports_celeb,@DwyaneWade,RT @Channing_Frye: It might be a long night for whoever is Guarding Lebron just FYI! +05/16/2018,Sports_celeb,@DwyaneWade,😂😂😡 https://t.co/gDgwCNSlwx +05/16/2018,Sports_celeb,@DwyaneWade,This! 🙌🏾 https://t.co/TcrMrrHoq1 +05/15/2018,Sports_celeb,@DwyaneWade,That’s his IG. So not really🤷🏾‍♂️ https://t.co/IPETjQzBW0 +05/15/2018,Sports_celeb,@DwyaneWade,Love! https://t.co/R7wb2NWHiW +05/15/2018,Sports_celeb,@DwyaneWade,A lot of work to do over these next few years but proud parents we are of @zmane2 https://t.co/f9ts1wx8yy +05/15/2018,Sports_celeb,@DwyaneWade,👏🏾👏🏾 Yea my brother @TajGibson22 got me good. But you left out the most important fact. Heat won the series 4-1🤷🏾‍♂️ https://t.co/A1eNXOUIGN +05/15/2018,Sports_celeb,@DwyaneWade,"RT @ESPNNBA: Should Dwyane Wade retire? + +Chewie has some … thoughts? #HanSolo https://t.co/m9sMjUUavh" +05/15/2018,Sports_celeb,@DwyaneWade,Yes. Pls! https://t.co/ZxbJh2sBgr +05/15/2018,Sports_celeb,@DwyaneWade,Thanks for finding it for me my brother. Love https://t.co/GadCW10xKu +05/15/2018,Sports_celeb,@DwyaneWade,Fam you got a connect i don’t know about. That jersey is 🔥 🔥 🔥 https://t.co/s7nGJndJPu +05/15/2018,Sports_celeb,@DwyaneWade,😂😂😂 good one. https://t.co/jSDIfVuxyF +05/15/2018,Sports_celeb,@DwyaneWade,Tell em why you mad son. Obviously not you. Thanks for the extra publicity tho https://t.co/HwturDWnIB +05/14/2018,Sports_celeb,@DwyaneWade,WOY = Wookie of the Year #ad https://t.co/BytxG0Pihs +05/14/2018,Sports_celeb,@DwyaneWade,WOY = Wookie of the Year #ad https://t.co/0qE7KReGZN +05/14/2018,Sports_celeb,@DwyaneWade,RT @overtime: Zaire Wade making his OWN NAME 🏆 @DwyaneWade @reale1t1 https://t.co/LjlmZzbAEx +05/14/2018,Sports_celeb,@DwyaneWade,You seen the way he got his but kicked. No no no https://t.co/eTcFiKI42u +05/14/2018,Sports_celeb,@DwyaneWade,I haven’t seen it. Where the pics at? https://t.co/uba0s3gUxo +05/14/2018,Sports_celeb,@DwyaneWade,RT @Amy_ESPNPR: .@DwyaneWade has a new co-pilot in this @ESPN commercial for Solo: A Star Wars Story. @StarWars @NBA #NBAPlayoffs https://t… +05/14/2018,Sports_celeb,@DwyaneWade,"RT @carmeloanthony: Happy Mother’s Day to the strongest and bravest woman I know!!! Thanks for being our rock @lala +#STAYME7O https://t.co…" +05/14/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: Stylin & profilin in @nyandcompany with my girl @xoxofaithhaslem #HeatNation https://t.co/kDU9SoIZYY +05/14/2018,Sports_celeb,@DwyaneWade,Don’t mess with me. I got friends! https://t.co/PlMjJX4nfk +05/14/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: #BreakingInMovie against all odds (tiny budget & far fewer screens) still made almost 3x our budget opening weekend! htt… +05/13/2018,Sports_celeb,@DwyaneWade,"RT @TomCrean: If your practices or workouts are lacking energy or have boredom kicking in, that is on us as coaches. Not the players. We ha…" +05/13/2018,Sports_celeb,@DwyaneWade,Yes you did. It was a pretty cool experience! https://t.co/51ovIbCNV9 +05/13/2018,Sports_celeb,@DwyaneWade,I’m sure it’s plenty but thank you for that https://t.co/x1HzFzmOcW +05/13/2018,Sports_celeb,@DwyaneWade,I agree https://t.co/dejKNRJftp +05/13/2018,Sports_celeb,@DwyaneWade,"RT @lisjoseph: She made me a mommy first 💗. She’s so attached to me, looks to me for approval, guidance, love and to be present. glad I was…" +05/13/2018,Sports_celeb,@DwyaneWade,Thank y’all!!!! Enjoy!!! https://t.co/UA6xf76adg +05/13/2018,Sports_celeb,@DwyaneWade,🙏🏾 https://t.co/GgjMZXAYv4 +05/13/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: My friend @LewisHamilton is crushing it!!! Only black man in F1, if you aren't familiar here in the states... hes pretty…" +05/13/2018,Sports_celeb,@DwyaneWade,"Happy Mother's Day Miami!!! 🥂 💛🧡💚💜💙 +As a special gift to Miami we… https://t.co/IhaRoRwfvu" +05/13/2018,Sports_celeb,@DwyaneWade,I’ll be looking for my case in the mail from you kinda sir. https://t.co/OuhOcnGcYD +05/13/2018,Sports_celeb,@DwyaneWade,"RT @natasha_sen: ✨The women that made us 💫 And now the both of us have 2 moms and they are besties. 👯‍♂️ +#HappyMothersDay https://t.co/3uk3…" +05/13/2018,Sports_celeb,@DwyaneWade,RT @essencesays: Berry Lips + or - 20 years 😊 #iamjustbeginning https://t.co/eeBvq887L9 +05/12/2018,Sports_celeb,@DwyaneWade,The sweatsuit 🔥 tho https://t.co/BcQWlQ3Vdw +05/12/2018,Sports_celeb,@DwyaneWade,Nothing but Class! https://t.co/fTR70pXsGb +05/12/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: Cue the tears, THANK YOU @KevinHart4real!! This is huge! #BreakingInMovie https://t.co/VOmUNCMCyT" +05/12/2018,Sports_celeb,@DwyaneWade,Now that’s an announcement🙌🏾 https://t.co/kwpdpK73Cp +05/12/2018,Sports_celeb,@DwyaneWade,👀 Dime! https://t.co/ZHSBv9Rwqf +05/12/2018,Sports_celeb,@DwyaneWade,Love it! https://t.co/z1I5xKVuw6 +05/12/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: This CP3 pickup game in 2011 was too 🔥🔥 https://t.co/MFxwoqqaeg +05/12/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: Pay it forward 🤗 #BreakingInMovie fun with @DwyaneWade in Georgia during a break between AAU games https://t.co/jn39jsk4… +05/12/2018,Sports_celeb,@DwyaneWade,"A Movie Star, A Young Bull, A guy will a curly bush that looks like… https://t.co/kmut6lbmeR" +05/12/2018,Sports_celeb,@DwyaneWade,RT @ThisIsUD: I'm feeling @MiamiHerald's list of Miami/South Florida’s Top 25 sports figures. #og https://t.co/zb4du1WDqc https://t.co/t3aU… +05/12/2018,Sports_celeb,@DwyaneWade,Happy birthday bald guy! https://t.co/1xhAnz2I7I +05/12/2018,Sports_celeb,@DwyaneWade,3️⃣ https://t.co/e4D8xJ5vUk +05/12/2018,Sports_celeb,@DwyaneWade,Tru!!!! https://t.co/isuAOfRc78 +05/12/2018,Sports_celeb,@DwyaneWade,RT @Goran_Dragic: The best captain ever !!! @ThisIsUD #Mr305 #OG https://t.co/MFSIncjnAk +05/12/2018,Sports_celeb,@DwyaneWade,Congrts Lloyd. ATL y’all got it right https://t.co/9cXGuxVCXP +05/11/2018,Sports_celeb,@DwyaneWade,Layups! https://t.co/4QKaFxCEaP +05/11/2018,Sports_celeb,@DwyaneWade,The future https://t.co/3TsKo3okzo +05/11/2018,Sports_celeb,@DwyaneWade,You’re an impressive WOMAN!!! Everyone go check out my wife… https://t.co/1W16dT3iCD +05/11/2018,Sports_celeb,@DwyaneWade,🤔🤷🏾‍♂️ https://t.co/Tr757oXpqx +05/11/2018,Sports_celeb,@DwyaneWade,Y’all will not be disappointed!!! https://t.co/c7NBbrMe3E +05/11/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: Man I'm in tears on this plane seeing all the support for #BreakingInMovie I am grateful, humbled and so happy! Who knew…" +05/11/2018,Sports_celeb,@DwyaneWade,🙌🏾🙌🏾🙌🏾 https://t.co/qn7wxzF3mr +05/11/2018,Sports_celeb,@DwyaneWade,🙏🏾🙏🏾🙏🏾 https://t.co/8hPQaWDMc1 +05/11/2018,Sports_celeb,@DwyaneWade,Much Love✊🏾 https://t.co/nIf8omtEZW +05/11/2018,Sports_celeb,@DwyaneWade,RT @jrnba: #JrNBAWorldChampionship Global Ambassador @DwyaneWade on how youth basketball brings out key values of the game & life! #ThisIsW… +05/11/2018,Sports_celeb,@DwyaneWade,Talk that talk! https://t.co/RmlBV3ORiB +05/11/2018,Sports_celeb,@DwyaneWade,RT @D1Circuit: 2020 American Heritage (FL) G Zaire Wade will run with E1T1 United (FL) for the remainder of the 2018 NIKE EYBL @reale1t1 @D… +05/10/2018,Sports_celeb,@DwyaneWade,😂 🗣 https://t.co/67Oxgw0Z08 +05/09/2018,Sports_celeb,@DwyaneWade,I can’t wait to watch @spidadmitchell growth from year to year. What a season my brother! +05/09/2018,Sports_celeb,@DwyaneWade,Oh yeah....we stylish!! And now you can shop our looks. Check out some pieces from our personal collections on sale… https://t.co/tstHvHIn81 +05/08/2018,Sports_celeb,@DwyaneWade,Three by Wade Rose’ 🌹 coming very soon!!!! It’s gonna be a good… https://t.co/ndpyM8qVPp +05/08/2018,Sports_celeb,@DwyaneWade,Don’t mind if i do https://t.co/5fzhkDNzC5 +05/08/2018,Sports_celeb,@DwyaneWade,That’s my Dawg! That’s my dawg!( Chris tucker voice) https://t.co/ypLuFJubto +05/08/2018,Sports_celeb,@DwyaneWade,The one person in life i wish i had a chance to have a conversation… https://t.co/IOpHprfR6k +05/08/2018,Sports_celeb,@DwyaneWade,"RT @paulocoelho: Haters don't really hate you. +They hate themselves, because you're a reflection of what they wish to be" +05/08/2018,Sports_celeb,@DwyaneWade,@itsgabrielleu Dayyyuuummmmm!!!! https://t.co/TspGt9IZCE +05/07/2018,Sports_celeb,@DwyaneWade,@DWRIGHTWAY1 is that you👀 https://t.co/1yCMlgBC9n +05/07/2018,Sports_celeb,@DwyaneWade,I agree! https://t.co/GiRRBkC4uC +05/07/2018,Sports_celeb,@DwyaneWade,https://t.co/hJlfHHeRNn https://t.co/Pz2D5DF92R +05/07/2018,Sports_celeb,@DwyaneWade,🙌🏾 https://t.co/aY2QY4wU2H +05/07/2018,Sports_celeb,@DwyaneWade,Ok what a night it was! https://t.co/L5erISgozi +05/06/2018,Sports_celeb,@DwyaneWade,"I see you looking..with your looking a$$... @ Miami, Florida https://t.co/ge0YOqrRjF" +05/06/2018,Sports_celeb,@DwyaneWade,@KingJames you are a bad boy!!! +05/04/2018,Sports_celeb,@DwyaneWade,🙏🏾🙏🏾🙏🏾👂🏾 https://t.co/h4I1x7Mv6q +05/04/2018,Sports_celeb,@DwyaneWade,@KingJames Sheesh🤦🏾‍♂️ +06/30/2018,Sports_celeb,@BizNasty2point0,RT @BizNasty2point0: Huge thanks to Keith Yandle and @KevinPHayes12 for hopping on @spittinchiclets last night. What a fun episode with the… +06/30/2018,Sports_celeb,@BizNasty2point0,@Heavy__C @spittinchiclets @BBoeser16 @ryanwhitney6 Advanced status. Guys a stud. Great kid too. Humble and funny. Canucks got a good one. +06/29/2018,Sports_celeb,@BizNasty2point0,@TENcentHands @spittinchiclets @91Tavares Hahahaha. Accurate. +06/29/2018,Sports_celeb,@BizNasty2point0,Huge thanks to Keith Yandle and @KevinPHayes12 for hopping on @spittinchiclets last night. What a fun episode with… https://t.co/4AfQvn9Lht +06/29/2018,Sports_celeb,@BizNasty2point0,Huge thanks to Keith Yandle and @KevinPHayes12 for hoping on @spittinchiclets last night. What a fun episode with t… https://t.co/xuvbpqDgLh +06/29/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 96 - Featuring @KevinPHayes12 + Keith Yandle. + +The boys talk Tavares, free agency, man rockets, and Biz joined…" +06/29/2018,Sports_celeb,@BizNasty2point0,Tomorrow morning we’re dropping a double guest @spittinchiclets with a couple of Boston boys. @KevinPHayes12 and Ke… https://t.co/1SqVcPuSAh +06/28/2018,Sports_celeb,@BizNasty2point0,@Fallstothewall @Skillsy75 @spittinchiclets @cmace30 Same with @cmace30. Maybe do a double guest episode. +06/28/2018,Sports_celeb,@BizNasty2point0,@Fallstothewall @Skillsy75 @spittinchiclets @cmace30 Skillsy can come on whenever he wants. Guys a legend and has stories for days. +06/28/2018,Sports_celeb,@BizNasty2point0,I tried to keep this a secret as long as possible. The reason @spittinchiclets has gone down to 1 episode a week la… https://t.co/xNIDdzjyaD +06/27/2018,Sports_celeb,@BizNasty2point0,@DA2four The Local. Ask for Zinger. +06/27/2018,Sports_celeb,@BizNasty2point0,@Tbukey @RearAdBsBlog @ryanwhitney6 I’ll make you a deal. I’ll leave the podcast but you have to tweet out all your… https://t.co/vgRHIW3ud4 +06/27/2018,Sports_celeb,@BizNasty2point0,@ssullivan_88 @cmcdavid97 @spittinchiclets @ryanwhitney6 We’d consider having him on. +06/27/2018,Sports_celeb,@BizNasty2point0,@cmcdavid97 Connor making a strong bid early for #BoyfriendOfTheYear. Long way to go but you can tell he’s focused. +06/26/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: Willie O'Ree Is Finally Heading To The Hockey Hall Of Fame https://t.co/fDuPw8zSAK https://t.co/Qk5MJyWpML +06/26/2018,Sports_celeb,@BizNasty2point0,@joe_pieniazek @spittinchiclets @MikeGrinnell_ 1 a week till mid August. Thanks for checking in. +06/23/2018,Sports_celeb,@BizNasty2point0,Welcome to the @ArizonaCoyotes organization Barrett. https://t.co/BX0yXAyHVY +06/23/2018,Sports_celeb,@BizNasty2point0,"RT @FOXSPORTSAZ: .@BizNasty2point0 likes the #Yotes first-round draft pick, the team's recent trade and the new third jersey, he tells @Jod…" +06/22/2018,Sports_celeb,@BizNasty2point0,The greatest goal that’s never been talked about was discussed on the new episode of @spittinchiclets with the lege… https://t.co/mPMPDNvfmx +06/22/2018,Sports_celeb,@BizNasty2point0,RT @freedarko: Today was totally worth it https://t.co/0hCMttTvvW +06/21/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: We have hockey dad & 500 goal scorer Keith Tkachuk on the podcast tomorrow live from the draft as he prepares his son… +06/21/2018,Sports_celeb,@BizNasty2point0,Amazing week at the #NHLAwards filming with @Sportsnet. We filmed a ton of fun content with a lot of players. We ev… https://t.co/TAzMsdjMiP +06/21/2018,Sports_celeb,@BizNasty2point0,Got the late night text from @JonathanQuick32 begging me to interview him on the red carpet at the #NHLAwards. Such… https://t.co/FL26JyTjb6 +06/20/2018,Sports_celeb,@BizNasty2point0,"RT @Sportsnet: Can we expect @Mackinnon9 and @BizNasty2point0 to headline in Las Vegas anytime soon? + +@caroline_szwed joined them @TheAbsin…" +06/20/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: 📹 @BizNasty2point0 catches up with Calder nominee @ClaytonKeller37 in Las Vegas to discuss his new wheels, his summer t…" +06/19/2018,Sports_celeb,@BizNasty2point0,@dradziszewski27 @ryanwhitney6 @RearAdBsBlog @MikeGrinnell_ @spittinchiclets We’re really not that big on statistic… https://t.co/JmHyr9uZq3 +06/19/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 94: Featuring King Clancy Memorial Trophy Nominee and @mnwild forward @Jason_Zucker16 + +https://t.co/LQzDCibdC…" +06/19/2018,Sports_celeb,@BizNasty2point0,"RT @Sportsnet: Bet you never thought you'd see @BizNasty2point0 'turtle' in a hockey fight. + +That, plus @strombone1 stops by to make some s…" +06/19/2018,Sports_celeb,@BizNasty2point0,Just interviewed @terryfator in Las Vegas for @Sportsnet. What an awesome guy and he was even nice enough to record… https://t.co/COUEV9vMaT +06/18/2018,Sports_celeb,@BizNasty2point0,RT @caroline_szwed: hey... hang out with us on @Sportsnet social media channels while we’re in Vegas! DO IT. https://t.co/tEFBlOKDBW +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Todays guest ⬇️⬇️ + +https://t.co/ONu9AU3OX1 https://t.co/ZBkYMmvCGD" +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here featuring Nello Ferrara + the guys address the shit storm going on in Ottawa right now. + +Listen/Su…" +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @biznastydoesbc: We've had a lot of people asking, so we put together a Spotify playlist of all the music that was originally in the sho…" +06/14/2018,Sports_celeb,@BizNasty2point0,@YoungPageviews @RearAdBsBlog I’ve heard rumblings. Not confirmed. +06/14/2018,Sports_celeb,@BizNasty2point0,@RearAdBsBlog I’m just the radio guy. I have no clue. +06/14/2018,Sports_celeb,@BizNasty2point0,@Oceanstormprint @spittinchiclets @Isuckatpicking It’s from the movie Step Brothers. +06/14/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: In honor of todays 20% off sale, we dropped some new shirts. + +Thank us later. + +https://t.co/TDJ0VEtSeu https://t.co/…" +06/14/2018,Sports_celeb,@BizNasty2point0,"@1496Gukes @TheAHL @TorontoMarlies @TexasStars Regular season MVP, Playoff MVP, Regular season champs, eastern conf… https://t.co/mcKTg2nf6Y" +06/13/2018,Sports_celeb,@BizNasty2point0,Time flies. Also reminder to Hockey fans game 7 of @TheAHL Calder Cup final takes place tomorrow night in Toronto.… https://t.co/LvapXND5zO +06/12/2018,Sports_celeb,@BizNasty2point0,@AnaheimDucks @kbieksa3 Congrats guys. Little jealous but it’ll force us to work harder. +06/12/2018,Sports_celeb,@BizNasty2point0,@kbieksa3 It’s like a superman punch right to my junk. Congrats though. Well deserved. +06/12/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 92 featuring Stanley Cup Champion @tom_wilso, @PFTCommenter and @BarstoolNate is live. + +Listen/Subscribe—> ht…" +06/12/2018,Sports_celeb,@BizNasty2point0,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/12/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: One of these guys is a guest on the podcast this week and it isn’t Tiesto... #ManRocket https://t.co/IV3Cpxz3h6 +06/11/2018,Sports_celeb,@BizNasty2point0,When other guys are trying to slide into your girls DM’s but you’re both happy and in a good place in the relations… https://t.co/MIgA2jAVoH +06/09/2018,Sports_celeb,@BizNasty2point0,@NHL @kbieksa3. +06/09/2018,Sports_celeb,@BizNasty2point0,Had a blast chatting with an awesome guy yesterday on @spittinchiclets. Big thanks to @SSouray for coming on.… https://t.co/XiAFrGVO6w +06/08/2018,Sports_celeb,@BizNasty2point0,Unreal behind the scenes stuff. Great job Scott. Thanks to you and the crew. https://t.co/SurSuyfIDM +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @KathrynTappen: Washington @Capitals forward Jay Beagle is the first player in hockey history to win the Kelly Cup (ECHL), Calder Cup (A…" +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @CillizzaCNN: The suicides of Anthony Bourdain and Kate Spade this week are a reminder: No matter how successful, wealthy or seemingly h…" +06/08/2018,Sports_celeb,@BizNasty2point0,@BFG93 @ryanwhitney6 @spittinchiclets I know I started to say it and then I wanted to keep it consistent so kept sa… https://t.co/9KPUF7emqh +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @wilkinebrutus: Anthony Bourdain on humanity: +""Meals make the society, hold the fabric together in lots of ways that were charming and i…" +06/08/2018,Sports_celeb,@BizNasty2point0,Anthony Bourdain was special. What a sad day. https://t.co/pkFylBgUvU +06/08/2018,Sports_celeb,@BizNasty2point0,And when I say “guys” I mean everyone. Guys and girls. Just to clarify. +06/08/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @Capitals on a magical run. So many amazing story lines to go along with it as well. Can’t f… https://t.co/WtQnsKQoAK +06/08/2018,Sports_celeb,@BizNasty2point0,What an unbelievable NHL season. Hockey is in a wonderful place. Thanks to all the media who covered the Stanley Cu… https://t.co/61Qzluuq0O +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @bruce_arthur: TJ Oshie said of his dad, who is in the crowd, ""He has Alzheimer's, and he forgets a lot of things, but you bet your ass…" +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @NHL: 1,124 games +668 goals +571 assists +1,239 points +7 Rocket Richard Trophies + +One #StanleyCup https://t.co/bINP2Jcb05" +06/08/2018,Sports_celeb,@BizNasty2point0,@walsha Sign him. +06/07/2018,Sports_celeb,@BizNasty2point0,"RT @AARM_org: We are so grateful to the @ArizonaCoyotes's @mattycoyotestv for helping us make this IMPORTANT SHELTER ANNOUNCEMENT. + +**SPON…" +06/07/2018,Sports_celeb,@BizNasty2point0,Love it @mattycoyotestv. Great work by everyone involved. https://t.co/kqN0hTKBpN +06/06/2018,Sports_celeb,@BizNasty2point0,@commie22 Hire an intern to do your job. Or most of it. +06/05/2018,Sports_celeb,@BizNasty2point0,@KirkwoodAlly @tstone_44 @ryanwhitney6 @MikeGrinnell_ I mentioned it on the podcast. Wasn’t sure how Vegas did afte… https://t.co/4DJBQyxHpp +06/05/2018,Sports_celeb,@BizNasty2point0,@lukejnickels @tstone_44 @ryanwhitney6 @MikeGrinnell_ Well I will if you send me the receipt. I wouldn’t bet the fa… https://t.co/Oe8zAs4oEq +06/05/2018,Sports_celeb,@BizNasty2point0,@SkylerBusa @ArizonaCoyotes @BachelorABC @ariejr Thanks pal. +06/05/2018,Sports_celeb,@BizNasty2point0,@ahronCo21 @ArizonaCoyotes @BachelorABC You were the cherry on top Ahron. Kind of like Will Ferrell in Wedding Crashers. Bravo. +06/05/2018,Sports_celeb,@BizNasty2point0,@lukejnickels @tstone_44 @ryanwhitney6 @MikeGrinnell_ Put a bunch of money on it and send me the receipt then. +06/05/2018,Sports_celeb,@BizNasty2point0,Episode 90 of @spittinchiclets is out now. Big thanks to @commie22 for coming on. This one gets heated. https://t.co/br29A8BQKL +06/05/2018,Sports_celeb,@BizNasty2point0,@tstone_44 @ryanwhitney6 @MikeGrinnell_ Thanks. Was wondering that. Appreciate the message. +06/04/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: Did you love our recaps of The @BachelorABC this season as much as @ariejr did? 🌹 + +We're nominated for the Top Team Vid…" +06/04/2018,Sports_celeb,@BizNasty2point0,Nice of you to show up for that bike ride @Jackeichel15. https://t.co/wQBIWOObEn +06/04/2018,Sports_celeb,@BizNasty2point0,The 1st annual #NHLFanChoice Awards are here. Don’t be shy to vote for the @ArizonaCoyotes on “Top Team Video” for… https://t.co/X6tGAKX6nA +06/04/2018,Sports_celeb,@BizNasty2point0,"RT @NHL: Introducing the NHL Fan Choice Awards! + +Vote for your favorite social moments of the season in categories like Best Chirper, Best…" +06/04/2018,Sports_celeb,@BizNasty2point0,@LGRed @JulieBrowman1 @tysonbarrie @Altitude950 @JayAndDan Thanks Lauren. Tyson was awesome. Jay and Dan stole the show as usual. +06/04/2018,Sports_celeb,@BizNasty2point0,@MikeGrinnell_ @ryanwhitney6 I would have picked up your appetizer. Just saying. +06/03/2018,Sports_celeb,@BizNasty2point0,RT @hkygivesblood: One of the greats! Shane Doan has been involved and donated blood as Captain for the @ArizonaCoyotes. Follow his lead an… +06/03/2018,Sports_celeb,@BizNasty2point0,@FlyingZee10 @myeagleenergy Pasha doesn’t work for @myeagleenergy. Pasha’s my right hand man and helped make my sil… https://t.co/eIHdsJvOAz +06/03/2018,Sports_celeb,@BizNasty2point0,@HockeyRockBeer Hahahaha +06/03/2018,Sports_celeb,@BizNasty2point0,@BombulieTrib Someone sent me this the other day. The good old days. https://t.co/ISHsVqEgoK +06/03/2018,Sports_celeb,@BizNasty2point0,@kerdy19 @processboy Same boat. I’m softer than baby shit when it comes to the father/daughter stuff. +06/03/2018,Sports_celeb,@BizNasty2point0,@justinteleven You do you bud. I hear ya. +06/03/2018,Sports_celeb,@BizNasty2point0,@justinteleven Haha k +06/03/2018,Sports_celeb,@BizNasty2point0,I never knew that. Thanks for sharing. Like it even more now. https://t.co/cDsnSumi78 +06/03/2018,Sports_celeb,@BizNasty2point0,"RT @SiriusXMNHL: Washington Capitalizes on a 2-on-1! Kuznetsov's 11th of the post-season + +Cue the celebration! #StanleyCup + +https://t.co/H…" +06/03/2018,Sports_celeb,@BizNasty2point0,I’m usually not a big fan of scripted celebrations but the Kuznetsov one is silky. Being that good at hockey would be a blast. +06/03/2018,Sports_celeb,@BizNasty2point0,@simmonssteve High risk high reward. Riverboat gambler. +06/02/2018,Sports_celeb,@BizNasty2point0,RT @seandoconnor: Please help. We were out of town for our 10 year anniversary and our two dogs were taken from our friends house. Girl Yor… +06/01/2018,Sports_celeb,@BizNasty2point0,@Andy_Miele @spittinchiclets @Vincent_LoVerde It was all Vinny. Scumbag move by him. Anytime you’d like to come tra… https://t.co/NnE9mz7F7M +06/01/2018,Sports_celeb,@BizNasty2point0,I was nice enough to invite 2 of my former teammates I won a Calder Cup for a few years ago in Manchester (you’re w… https://t.co/uO9fhKxUdn +06/01/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: New episode is here featuring current Calder Cup finalists and former teammates of @BizNasty2point0.. @Vincent_LoVerd… +06/01/2018,Sports_celeb,@BizNasty2point0,RT @JimmyTraina: Instant replay of JR Smith and LeBron in the closing seconds of regulation. https://t.co/8qYCv7mBQf +06/01/2018,Sports_celeb,@BizNasty2point0,Geno’s got Russian guys dressed as Crosby playing roller hockey for a kids birthday party on his Instagram story. https://t.co/7soJVQmZV3 +06/01/2018,Sports_celeb,@BizNasty2point0,Big @spittinchiclets epi coming tomorrow. Talking game 2 of Stanley Cup finals. We also have 2 of my former teammat… https://t.co/ON7Gm5uvjb +05/31/2018,Sports_celeb,@BizNasty2point0,@jack_johnsrud @Chiggs7 In some cases because of contracts and salary cap issues. In other situations they had more… https://t.co/g2nrdAeIFR +05/31/2018,Sports_celeb,@BizNasty2point0,@NickSThomas313 @spittinchiclets @RearAdBsBlog @ryanwhitney6 No. Fleury won game 1. +05/31/2018,Sports_celeb,@BizNasty2point0,RT @JayAndDan: Former NHLer and host of “BizNasty Does BC” Paul @BizNasty2point0 Bissonnette joins the #JayAndDan Podcast presented by @coo… +05/31/2018,Sports_celeb,@BizNasty2point0,@acroy59 Hahahaha. Was it random? +05/30/2018,Sports_celeb,@BizNasty2point0,Great chatting with @craigsmorgan about jumping into a new career after playing hockey my whole life. https://t.co/4d6yHpBNPe +05/30/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat https://t.co/ESAJME4oZ9 +05/30/2018,Sports_celeb,@BizNasty2point0,@KFCBarstool Doesn’t belong at headquarters. Surprised you even let him in the joint. 7’s max. No man rockets allowed. +05/30/2018,Sports_celeb,@BizNasty2point0,@ShawnMcKenzieSN Hahaha same. I’ve never studied this hard. +05/30/2018,Sports_celeb,@BizNasty2point0,@katecoyne Why. What was the beef? +05/30/2018,Sports_celeb,@BizNasty2point0,@dradziszewski27 Um kind of like how Pusha T just did... he just dropped an album as well. They all kick up dust around album time. +05/30/2018,Sports_celeb,@BizNasty2point0,Has a country artist ever wrote a diss track on another country artist? +05/30/2018,Sports_celeb,@BizNasty2point0,These rap feuds are my guilty pleasure. That Pusha T diss was an absolute punch to the nut sack on Drake. Can’t wait for the reply. +05/29/2018,Sports_celeb,@BizNasty2point0,Great player and teammate. Congrats on an awesome career Radim. #CzechMafia https://t.co/pP2qwp6bxA +05/29/2018,Sports_celeb,@BizNasty2point0,@mikebrandon90 @lukegazdic No it’s up. Should be working. +05/29/2018,Sports_celeb,@BizNasty2point0,Great having @lukegazdic on last night. Subscribe and listen to episode 88 to find out how Luke is better than Mari… https://t.co/lbtIeQh5VT +05/29/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here featuring @lukegazdic & a Game 1 recap. + +Listen—> https://t.co/t0xYV2FGK1 https://t.co/KKYKjywOVg" +05/29/2018,Sports_celeb,@BizNasty2point0,@ArchadiaNJ Bud you protected your account faster than I could blink. You want to be a wrestler? You get a little p… https://t.co/LruNIHjXcz +05/29/2018,Sports_celeb,@BizNasty2point0,@bobbybender3 @biznastydoesbc Glad you enjoyed it man. Appreciate the message. +05/29/2018,Sports_celeb,@BizNasty2point0,@realPOSULLIVAN I figured if I used my actual name no one would notice. Just trying to survive the summer man. I miss the NHL paycheques. +05/28/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Listen to Marc-Andre Fleury aka Jean Girard on the latest episode of Spittin’ Chiclets + +https://t.co/KC0Bq5sslq https:…" +05/28/2018,Sports_celeb,@BizNasty2point0,RT @pitbull: Today we remember those who made the ultimate sacrifice for America #MemorialDay https://t.co/yrnGIdB2St +05/28/2018,Sports_celeb,@BizNasty2point0,@hashcannon666 @spittinchiclets @ryanwhitney6 @MikeGrinnell_ @RearAdBsBlog Thanks bud. Appreciate the message. +05/28/2018,Sports_celeb,@BizNasty2point0,@schaefpuff @WarriorHockey Glad you liked it man. +05/28/2018,Sports_celeb,@BizNasty2point0,@fridge29 Thanks pal. Appreciate it. +05/27/2018,Sports_celeb,@BizNasty2point0,@iowaendo @barstoolsports 😂 +05/27/2018,Sports_celeb,@BizNasty2point0,@Cdn_Crippler @WarriorHockey They’re up. On that website. +05/27/2018,Sports_celeb,@BizNasty2point0,@ander764 @WarriorHockey It’s not for everyone. Thanks for checking it out though. +05/27/2018,Sports_celeb,@BizNasty2point0,@GuineyPete All 5 episodes are out. You can watch them all. +05/27/2018,Sports_celeb,@BizNasty2point0,@svedberg_victor @WarriorHockey Shit. Hope all of your followers don’t see this review. +05/27/2018,Sports_celeb,@BizNasty2point0,@mirtle @WarriorHockey Muskoka. +05/27/2018,Sports_celeb,@BizNasty2point0,@daviesbrettys @WarriorHockey 😬 +05/27/2018,Sports_celeb,@BizNasty2point0,@belvjoe @WarriorHockey They’re trying to restock it. I’ll keep you posted. +05/27/2018,Sports_celeb,@BizNasty2point0,@mirtle @WarriorHockey Shane Doan to the rescue. +05/27/2018,Sports_celeb,@BizNasty2point0,Hey everyone. Not sure if you heard but I did a 5 part doc series sponsored by @WarriorHockey about British Columbi… https://t.co/Y8kjVMD4pm +05/26/2018,Sports_celeb,@BizNasty2point0,@JimmyEdwardsjr1 @GoldenKnights @ryanwhitney6 @spittinchiclets If you’re happy we’re happy. Can’t forget… https://t.co/VQjKsVjrzE +05/26/2018,Sports_celeb,@BizNasty2point0,Uhhh. Ya think. https://t.co/dPTGLpgEDr +05/26/2018,Sports_celeb,@BizNasty2point0,If you eat a bag of popcorn 1 kernel at a time till it’s finished you are a psychopath. +05/26/2018,Sports_celeb,@BizNasty2point0,@MitchBerg47 Thanks pal. 👊🏻 +05/26/2018,Sports_celeb,@BizNasty2point0,@Rsloan33 4 iron. Needed slight loft and club length. +05/25/2018,Sports_celeb,@BizNasty2point0,@Skillsy75 Care to discuss it on @spittinchiclets? +05/25/2018,Sports_celeb,@BizNasty2point0,@pressXtocelly22 @LaMichaelMango @myeagleenergy Thanks fella +05/25/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here with a loaded lineup to take you into the weekend. + +GUESTS🎙🎙: + +-Marc-Andre Fleury + +-Michael Latta…" +05/25/2018,Sports_celeb,@BizNasty2point0,@phyllisdiller69 @LaMichaelMango @myeagleenergy Bud you’ve been living under a rock if you don’t know promo code BI… https://t.co/LiOyepiw2g +05/25/2018,Sports_celeb,@BizNasty2point0,@NBowinsHockey @spittinchiclets @Latta17 @Cmeys18 Throws both ways. Loves his beers. All around great guy. +05/25/2018,Sports_celeb,@BizNasty2point0,@LaMichaelMango @myeagleenergy A little promo code never hurt anyone. +05/25/2018,Sports_celeb,@BizNasty2point0,@DrewGebs @ClaytonKeller37 @ArizonaCoyotes @Johnwaynee90 If I’m around for sure +05/25/2018,Sports_celeb,@BizNasty2point0,@rorymarshall29 Thanks Rory. Couldn’t have done it without @myeagleenergy. +05/25/2018,Sports_celeb,@BizNasty2point0,@ajboyer24 @Pappy_Hour @spittinchiclets If you’re happy I’m happy. +05/25/2018,Sports_celeb,@BizNasty2point0,@Pappy_Hour @spittinchiclets @Cmeys18’s put the cherry on top. @RearAdBsBlog @MikeGrinnell_ @ryanwhitney6 and mysel… https://t.co/LASJFl14jx +05/25/2018,Sports_celeb,@BizNasty2point0,This will never get old. https://t.co/LzlkkKgM9P +05/25/2018,Sports_celeb,@BizNasty2point0,@IamGEMington Thanks for the support. +05/25/2018,Sports_celeb,@BizNasty2point0,@BOvi_Chris @MikeGrinnell_ Definitely @RearAdBsBlog. +05/25/2018,Sports_celeb,@BizNasty2point0,@DavefromNC1982 @spittinchiclets My bad man. +05/25/2018,Sports_celeb,@BizNasty2point0,@alfy021 @spittinchiclets 😔 +05/25/2018,Sports_celeb,@BizNasty2point0,@JesseMcClain13 @spittinchiclets Hahahaha that was my best one. +05/25/2018,Sports_celeb,@BizNasty2point0,@bryantwing @myeagleenergy 🙌🏼 +05/25/2018,Sports_celeb,@BizNasty2point0,@ryerk17 @myeagleenergy 💅🏼 +05/25/2018,Sports_celeb,@BizNasty2point0,What a fun episode of @spittinchiclets to kick off the Stanley Cup finals. Although I wanted Bark-André Furry on we… https://t.co/WGrCTHp2Bh +05/24/2018,Sports_celeb,@BizNasty2point0,Is that good? https://t.co/yczXDwNVO2 +05/24/2018,Sports_celeb,@BizNasty2point0,@ShawnHunterShow @ryanwhitney6 @spittinchiclets @RearAdBsBlog Even better +05/24/2018,Sports_celeb,@BizNasty2point0,@RandyOdgers @spittinchiclets @EagleEnergy https://t.co/3nL4NUGf3K +05/24/2018,Sports_celeb,@BizNasty2point0,@jaymcarth @spittinchiclets Damn straight it is. +05/24/2018,Sports_celeb,@BizNasty2point0,@kyle_zedaker @ryanwhitney6 @spittinchiclets @RearAdBsBlog @MikeGrinnell_ Or you can wait till tomorrow when we dro… https://t.co/kodhyMcrdu +05/24/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @Capitals on winning the Eastern conference and advancing to the Stanley Cup final. +05/24/2018,Sports_celeb,@BizNasty2point0,@MattORourke @spittinchiclets There is one. +05/24/2018,Sports_celeb,@BizNasty2point0,@TonyDaMimbo @BarstoolBigCat @PFTCommenter Boys being boys. Love it. +05/24/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter @ryanwhitney6 That’s @BarstoolBigCat’s screen saver. Tell him if he wants an autograph I can get him… https://t.co/Inf26wKoDd +05/24/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter @ryanwhitney6 Me and my girlfriend just broke up you asshole. More like Insensitive Commenter. Amirit… https://t.co/pYkFKMEAyu +05/24/2018,Sports_celeb,@BizNasty2point0,@_MsAnaDee @spittinchiclets @RearAdBsBlog @ryanwhitney6 @barstoolsports Love it. We’re gonna launch something in Au… https://t.co/egrhOaHJC6 +05/24/2018,Sports_celeb,@BizNasty2point0,@Cmeys18 Can we get you on @spittinchiclets tomorrow? +05/23/2018,Sports_celeb,@BizNasty2point0,@justinkelly13 Listen to @spittinchiclets a few episodes back. We talk all about it. +05/23/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter Put it behind you PFT. Today’s a new day and potentially the continuation of #CapsYear +05/23/2018,Sports_celeb,@BizNasty2point0,@justinkelly13 @Sportsnet650 @DanRiccio650 No they did. We talked about it. I like chatting hockey too. I had a blast. +05/23/2018,Sports_celeb,@BizNasty2point0,@TankTopTom69 @myeagleenergy @spittinchiclets 😂 good tweet. +05/23/2018,Sports_celeb,@BizNasty2point0,@gjmann77 Little May Two Four package for the kid eh? @myeagleenergy +05/23/2018,Sports_celeb,@BizNasty2point0,@RealLocke Thanks pal. Ya we’re gonna start plotting the next one soon. +05/23/2018,Sports_celeb,@BizNasty2point0,@catpyyc @ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog @myeagleenergy @commie22 Oh ya. A few times. 😮 +05/23/2018,Sports_celeb,@BizNasty2point0,@ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog @myeagleenergy Yep. And you get entered in a contest to… https://t.co/yOAOQSD4kZ +05/22/2018,Sports_celeb,@BizNasty2point0,@ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog I was buzzing on my @myeagleenergy read last night. Str… https://t.co/ZKD3xP1wNp +05/22/2018,Sports_celeb,@BizNasty2point0,@EricMoser @ryanadams_23 @spittinchiclets @barstoolsports Sorry buds. Thanks for the support. Tough to message ever… https://t.co/6Wy0VIBUWh +05/22/2018,Sports_celeb,@BizNasty2point0,@ryanadams_23 @spittinchiclets @barstoolsports Thanks pal. Much appreciated. +05/22/2018,Sports_celeb,@BizNasty2point0,RT @BizNasty2point0: New episode of @spittinchiclets. We talk about people having poopy pants over Vegas’ run and also the fact that the Ca… +05/22/2018,Sports_celeb,@BizNasty2point0,@Rypatanto @spittinchiclets Love? Their playing like dogs. I like their team but haven’t played well this round. Th… https://t.co/Ye7qoFJ3oG +05/22/2018,Sports_celeb,@BizNasty2point0,@Kcamps4 Hope you enjoy. +05/22/2018,Sports_celeb,@BizNasty2point0,@joe_pieniazek Thanks Joseph. I went about it with that kill or be killed mindset. +05/22/2018,Sports_celeb,@BizNasty2point0,@KMFB0578 @spittinchiclets Thanks Ken. Glad we can help. +05/22/2018,Sports_celeb,@BizNasty2point0,New episode of @spittinchiclets. We talk about people having poopy pants over Vegas’ run and also the fact that the… https://t.co/FKFQadoW29 +05/22/2018,Sports_celeb,@BizNasty2point0,@tsnotoole Remember the time you did me a favour and then I snubbed you on your podcast? 😬 +05/22/2018,Sports_celeb,@BizNasty2point0,@PeteBlackburn Hahahaha +05/21/2018,Sports_celeb,@BizNasty2point0,@TweetsByDM They’re tasty. I love em. +05/21/2018,Sports_celeb,@BizNasty2point0,@27arruda @biznastydoesbc Thanks pal +05/21/2018,Sports_celeb,@BizNasty2point0,That beat down was brought to you by @WarriorHockey and @newbalance. https://t.co/ERk7YCvBIr +05/21/2018,Sports_celeb,@BizNasty2point0,RT @PersianRose1: Branch manager and assistant branch manager https://t.co/BlbwKqidAF +05/21/2018,Sports_celeb,@BizNasty2point0,@DiscoKingULL @barstoolsports Haha thanks pal. +05/20/2018,Sports_celeb,@BizNasty2point0,@w1therspoon @notwest_ @ArizonaCoyotes @OEL23 You’re a peasant is what you are. +05/20/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @GoldenKnights on winning the Western Conference and advancing to the Stanley Cup final. +05/20/2018,Sports_celeb,@BizNasty2point0,The internet can be exhausting sometimes. https://t.co/yAsBSSlxVW +05/20/2018,Sports_celeb,@BizNasty2point0,Congratulations to @ArizonaCoyotes defenceman @OEL23 on his gold medal at the mens world ice hockey championships with team Sweden. +05/19/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat When’s Grits Week? +05/19/2018,Sports_celeb,@BizNasty2point0,@hen_ease @JManziel2 @barstoolsports @PardonMyTake @spittinchiclets @MikeGrinnell_ @ryanwhitney6 @KayceSmith Oh and… https://t.co/xrEZpvjcnK +05/19/2018,Sports_celeb,@BizNasty2point0,@hen_ease @JManziel2 @barstoolsports @PardonMyTake @spittinchiclets @MikeGrinnell_ @ryanwhitney6 @KayceSmith Boys are buzzin. +05/19/2018,Sports_celeb,@BizNasty2point0,@KristenKeogh We grew up so fast. +05/18/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat @SportsOnlyNoBS Not so fun when people bully you now is it BigCat? +05/18/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat @barstoolsports @biznastydoesbc Gonna miss you Dan. +05/18/2018,Sports_celeb,@BizNasty2point0,Also a huge thank you to our sponsors that made this possible. This project was made because of trust from… https://t.co/fMkeMngNzB +05/18/2018,Sports_celeb,@BizNasty2point0,Just wanted to thank everyone at @barstoolsports for an awesome week in NYC for the launch of @biznastydoesbc. Hope… https://t.co/Xig2iIdybv +05/18/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: New episode featuring @EnforceOrr & Sam Reinhart is here. https://t.co/j6B58C11o0 https://t.co/GC1ZSKEFeY +11/16/2015,Sports_celeb,@gracie_kron,"RT @mmaquote: Even when defeat surprises you, in reality, it's just another step. +—@RenzoGracieBJJ +http://t.co/ri37tHq6SY http://t.co/kUV…" +11/16/2015,Sports_celeb,@gracie_kron,"RT @NateDiaz209: I'll fight both of them +TODAY!!! https://t.co/SCuvZRlVJ8" +08/11/2015,Sports_celeb,@gracie_kron,http://t.co/lwBj0LbfMC +08/08/2015,Sports_celeb,@gracie_kron,RT @RenzoGracieBJJ: Enough said 😜😜😜😜 http://t.co/1IgCQbEG4q +08/04/2015,Sports_celeb,@gracie_kron,"RT @marc_raimondi: WSOF strips Rousimar Palhares of title, suspends him indefinitely http://t.co/faUtShKasX" +08/03/2015,Sports_celeb,@gracie_kron,RT @NateDiaz209: @nickdiaz209 riokid @ifightordie #riders https://t.co/hLw9R31OZA +07/30/2015,Sports_celeb,@gracie_kron,RT @NateDiaz209: #riders #stockton #theteam #danblack 💪👊 https://t.co/32wFQ6oBbB http://t.co/GJwqTCtx7V +07/01/2018,Sports_celeb,@GarbiMuguruza,"¡Gracias @Mujerhoy por esta segunda portada! + +📸 🗞️: ""O ganas o no importas nada"" - https://t.co/SA7koGZ6XB https://t.co/dWHm3krp6R" +06/30/2018,Sports_celeb,@GarbiMuguruza,"Almost ready for Wimbledon... +Casi preparada para Wimbledon... +#evianRoommates #LiveYoung #Wimbledon https://t.co/CftjsGFoSM" +06/30/2018,Sports_celeb,@GarbiMuguruza,"RT @caser: Y seguimos entrenandooooo!! + +Hoy @GarbiMuguruza de blanco completo como marcan las reglas del All England Club. + +#GarbiñeyCaser…" +06/30/2018,Sports_celeb,@GarbiMuguruza,You have to be strong and keep fighting for what you want. Play without fear and just give it all… when you do that… https://t.co/u5pRPyKypW +06/29/2018,Sports_celeb,@GarbiMuguruza,Just stopped by the adidas house to pick-up my Palace x adidas gear. So excited to wear it on court on Tuesday ! 🎾🌿… https://t.co/hpFdw0wZ7U +06/29/2018,Sports_celeb,@GarbiMuguruza,"#007 by @HUGOBOSS + +#TennisOnTheThames + +@Wimbledon @WTA https://t.co/dAk3xr1o4b" +06/25/2018,Sports_celeb,@GarbiMuguruza,Desde @Wimbledon mandándo fuerza a los chicos! Sending strength from Wimbledon! @SeFutbol #WorldCup 🌱🌱 https://t.co/fkM65r77Su +06/25/2018,Sports_celeb,@GarbiMuguruza,"It was all a dream! Todo fue un sueño! 😀 + +@PALACELONDON @adidasoriginals @adidastennis https://t.co/ajmqvKvQ4I" +06/24/2018,Sports_celeb,@GarbiMuguruza,"@MuseeLouvre in Paris ✔️ + +@NHM_London 🦖✔️ + +#GirlsEducation 💪 https://t.co/FZNUOUMreZ" +06/21/2018,Sports_celeb,@GarbiMuguruza,"RT @johnwoodRTR: Winning #Wimbledon? + +Impressive! + +Hitting fund-raising goal for new @RoomtoRead library in #Cambodia? + +Priceless! + +Congr…" +06/20/2018,Sports_celeb,@GarbiMuguruza,@RevistaRITMO @anneigartiburu_ @herascasado Me encantan los pendientes! +06/19/2018,Sports_celeb,@GarbiMuguruza,"Wanna join? + +😇 📚 👧 ➡️ https://t.co/yJplNysH90 + +@RoomtoRead #Cambodia 💪 https://t.co/ZVXvC9Yi67" +06/19/2018,Sports_celeb,@GarbiMuguruza,"¿Te apuntas? + +😇 📚 👧 ➡️ https://t.co/yJplNysH90 + +@RoomtoRead #Cambodia 💪 https://t.co/DQJO0LO2ig" +06/15/2018,Sports_celeb,@GarbiMuguruza,"Yo ya estoy lista!!!!!! 💪💪 +I am ready!!!!! 👌👌 + +#VamosEspaña 🇪🇸 #WorldCup https://t.co/pmeZNVulgM" +06/10/2018,Sports_celeb,@GarbiMuguruza,"Que grande eres @RafaelNadal!!! + +#NOL1M1TS 🇪🇸 #ElMejorEjemplo https://t.co/1BPLgHN1Yl" +06/08/2018,Sports_celeb,@GarbiMuguruza,Vierness buen humorrr!! Friday felling!!! Walk it like I talk it!! 💥💥 https://t.co/lBCzzemJ3w +06/08/2018,Sports_celeb,@GarbiMuguruza,"Merci Paris! Merci @rolandgarros! +Thanks @FSParis for making me feel like home. +Nos vemos el año que viene! 😍 https://t.co/GEWuMqdR25" +06/06/2018,Sports_celeb,@GarbiMuguruza,Happy to be back in semis @rolandgarros. It was a good match today! Looking forward tomorrow's match against Halep.… https://t.co/D5xFXaRe7j +06/05/2018,Sports_celeb,@GarbiMuguruza,"Healthy breakfast @FSParis for a ☔️ day in Paris! 😉😍 + +Desayuno sano en el @FSParis para un dia ☔️ en París! 😉😍… https://t.co/SbsDdScwJ4" +06/04/2018,Sports_celeb,@GarbiMuguruza,1/4 #rg18 https://t.co/QdCHMxaFrO +06/03/2018,Sports_celeb,@GarbiMuguruza,"We live for this. +#PlayToBeWild @babolat @rolandgarros https://t.co/Lw1pp7UMSJ" +06/02/2018,Sports_celeb,@GarbiMuguruza,"J'adore ce court et ce public! +Me encanta esta pista y este público! +Love this court and this crowd! +#SecondWeek… https://t.co/2H3iRs5NZ5" +06/01/2018,Sports_celeb,@GarbiMuguruza,"Mañana otra oportunidad. + +Tomorrow another chance. + +11am vs Stosur @ Chatrier #rg18 https://t.co/6GpHhfl6qM" +05/31/2018,Sports_celeb,@GarbiMuguruza,¿Sabías que los estudiantes de 2º grado de las escuelas con el apoyo de @RoomtoRead en #Cambodia leen 2 veces más r… https://t.co/GK2ezDJWNG +05/31/2018,Sports_celeb,@GarbiMuguruza,Did you know grade 2 students in schools supported by @RoomtoRead in #Cambodia read more than 2x as fast as other s… https://t.co/NMHivVYBWQ +05/31/2018,Sports_celeb,@GarbiMuguruza,"👁 🎾 + #Focus #RG18 https://t.co/76KGwB6rUD" +05/30/2018,Sports_celeb,@GarbiMuguruza,"¡Sed de tenis! +Thirst for tennis! +#RG18 🎾😋 https://t.co/O20stELctX" +05/29/2018,Sports_celeb,@GarbiMuguruza,"Special treat after my first match win today! Hand made icream cones! 😍 + +Un pequeño premio por mi primera victoria!… https://t.co/uJKbYOyqDq" +05/28/2018,Sports_celeb,@GarbiMuguruza,"Yesterday @MuseeLouvre + +#Art #Conocimiento https://t.co/upoqBESltE" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Afternoon read... + +@lequipe @WTA @rolandgarros https://t.co/OYDwNPUlTk" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Boom! ☄️ + +#Slowmo #RG2018 https://t.co/wx3m6QeNSO" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Bon jour! ☀️🇫🇷 + +#RG18 @rolandgarros https://t.co/XlnALeHHtp" +05/25/2018,Sports_celeb,@GarbiMuguruza,"@rolandgarros = 🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾 + +#RG18 @WTA https://t.co/hBBYczNtwx" +05/24/2018,Sports_celeb,@GarbiMuguruza,"Se sentir déjà comme chez soi! À demain Paris!! 🇫🇷😘 + +Sintiéndome como en casa!Hasta mañana a todos! 😘 + +Feeling alre… https://t.co/ABgNEcYnsK" +05/24/2018,Sports_celeb,@GarbiMuguruza,"👩‍🏭🔨 🎾 + +#RG18 @rolandgarros @WTA https://t.co/sJY7q5DTOM" +05/24/2018,Sports_celeb,@GarbiMuguruza,"Y esto es lo que te pasa cuando bebes @evianwater Me encanta mi baby yo!! 😘👶 + +And this is what happens when your dr… https://t.co/ELWRVX9d8I" +05/23/2018,Sports_celeb,@GarbiMuguruza,Roland Garros y esta pista tan especial! Roland Garros and this special court! #PhilippeChatrier 🇫🇷 ❤️ https://t.co/y0nihwpWmT +05/23/2018,Sports_celeb,@GarbiMuguruza,"Muy contenta de unirme a @evianwater +So excited to join @evianwater 😋😀😍 + +#evian #Liveyoung https://t.co/HELr2rd1Z3" +05/22/2018,Sports_celeb,@GarbiMuguruza,👋👋👋 https://t.co/whG6oFPRqw +05/22/2018,Sports_celeb,@GarbiMuguruza,"Entrena con la misma intensidad con la que piensas jugar 🔥🔥🔥 + +Train the way you intend to play 🔥🔥🔥 + +#HereToCreate… https://t.co/VB8l0Mbcbi" +05/18/2018,Sports_celeb,@GarbiMuguruza,"Últimas horas para disfrutar de Italia antes de entrar en #ModoRolandGarros + +Last hours to enjoy Italy before geeti… https://t.co/BzpwtV4tne" +05/13/2018,Sports_celeb,@GarbiMuguruza,"Kids Day!! 😘🎾👼 + +@WTA @InteBNLdItalia https://t.co/bEQxEnHKnK" +05/12/2018,Sports_celeb,@GarbiMuguruza,"Prima practica a Roma 🇮🇹 + +Ya estamos entrenando en Roma 😃 + +First practice in Roma ☀️ + +@WTA https://t.co/pbugfxIJut" +05/11/2018,Sports_celeb,@GarbiMuguruza,Ciao Roma!! 🇮🇹 https://t.co/MJ2whF55GK +05/09/2018,Sports_celeb,@GarbiMuguruza,"Buenas noches Madrid, mañana más! + +Good night Madrid, more to come tomorrow! + +@WTA https://t.co/NvyPjrBFVi" +05/06/2018,Sports_celeb,@GarbiMuguruza,"Domingo en Madrid 🇪🇸 + +Sunday in Madrid 🇪🇸 https://t.co/Y2Np6cGthK" +05/05/2018,Sports_celeb,@GarbiMuguruza,Dame Motas dame Motas... 🤪 https://t.co/lzS2ckUkP5 +05/05/2018,Sports_celeb,@GarbiMuguruza,@JoseMotatv Dame Motas dame Motas... 🤪 +05/04/2018,Sports_celeb,@GarbiMuguruza,"@OfficialMauiJim family!! + +☀️😎😘 https://t.co/eLBoBmRRuZ" +05/04/2018,Sports_celeb,@GarbiMuguruza,¡¡¡A seguir trabajando duro chicas!!! 💪💪💪 https://t.co/rj08h4LSmA +05/03/2018,Sports_celeb,@GarbiMuguruza,"Heroínas del Deporte, un libro para todas. Reconocimiento a todas las mujeres deportistas de antes y de ahora, por… https://t.co/aQv4irGX3q" +05/03/2018,Sports_celeb,@GarbiMuguruza,"Menuda paliza me has dado, menos mal que nadie lo va a ver @manucarreno 🤭 @DeportesCuatro @caser https://t.co/lfGxXswzQQ" +05/02/2018,Sports_celeb,@GarbiMuguruza,¿Sabías que en #Camboya casi el 50% de las chicas son trabajadoras en lugar de estudiantes? Trabajo con @RoomtoRead… https://t.co/rqNsNcvObG +05/02/2018,Sports_celeb,@GarbiMuguruza,Did you know in #Cambodia nearly 50% of girls are laborers instead of students? I'm teaming up with @RoomtoRead to… https://t.co/O3QXAOievj +04/30/2018,Sports_celeb,@GarbiMuguruza,"""I’m a tennis player, and that’s my priority. I like fashion but I would never want to be a model. I don’t want to… https://t.co/3erRz6PJ8E" +04/29/2018,Sports_celeb,@GarbiMuguruza,"Y se acabó... Domingo! + +It's a rap...Sunday! + +@VogueSpain https://t.co/W6vmUBFNcd" +04/29/2018,Sports_celeb,@GarbiMuguruza,"Hoy toca blanco.. + +Today is all white + +@VogueSpain https://t.co/61nqHF607l" +04/28/2018,Sports_celeb,@GarbiMuguruza,"Pink! +@VogueSpain https://t.co/47kGyr5bM1" +04/27/2018,Sports_celeb,@GarbiMuguruza,"RT @VogueSpain: De sueños que se heredan DE MADRES A HIJAS. Es jueves, también en los #7días7Looks de @GarbiMuguruza. +https://t.co/v6Fty1It…" +04/25/2018,Sports_celeb,@GarbiMuguruza,"Miércoles... +Wednesday +#MyFashionWeek @VogueSpain @WTA https://t.co/RLwC4YW0C1" +04/25/2018,Sports_celeb,@GarbiMuguruza,"👋🏼 #Stuttgart + +@WTA https://t.co/GYJVdpbU6v" +04/24/2018,Sports_celeb,@GarbiMuguruza,"Martes.... +Tuesday... +@VogueSpain https://t.co/ziUntStcFN" +04/22/2018,Sports_celeb,@GarbiMuguruza,"RT @caser: .@GarbiMuguruza fue clave en la victoria del equipo español de la #FedCup. +Sin duda la mejor líder que puede tener el tenis espa…" +04/22/2018,Sports_celeb,@GarbiMuguruza,Gracias a todos los que vinisteis a apoyarnos y a los que nos seguís en la distancia. Se acaba la Fed Cup y sin tie… https://t.co/pLQBk2FMBU +04/22/2018,Sports_celeb,@GarbiMuguruza,Victoria! Vamooossss!!!! Grande chicas y grande equipo!!! ❤️❤️❤️❤️❤️🔥 https://t.co/hB0Y7YqBnT +04/22/2018,Sports_celeb,@GarbiMuguruza,RT @FedCup_es: #ESPPAR ¡Victoria de España! @GarbiMuguruza finalmente venció 76 60 a Cepede Royg y las locales se aseguraron un puesto en e… +04/22/2018,Sports_celeb,@GarbiMuguruza,@chang_ariana Hola! Where is this?? +04/21/2018,Sports_celeb,@GarbiMuguruza,"Hacía un poco de viento hoy.... 🌪 + +It was a little windy today... 🌪 + +#ESPPAR 2-0 Vamos! 🇪🇸 👊 + +📸 @FedCup https://t.co/0OKsD04cVQ" +04/20/2018,Sports_celeb,@GarbiMuguruza,"¡De camino al fin de semana de @FedCup_es con las chicas! + +Heading to the @FedCup weekend with the girls like 👠… https://t.co/tRSqzGoJb0" +04/19/2018,Sports_celeb,@GarbiMuguruza,@HERFDEZ76 🙈 +04/19/2018,Sports_celeb,@GarbiMuguruza,@biologosan 🙈 +04/19/2018,Sports_celeb,@GarbiMuguruza,Conocí a la maravillosa Paula y a la mejor fan almoada! Met the wonderful Paula and the best fan pillow! 💕 #FedCup… https://t.co/K2FZCpqXSv +04/19/2018,Sports_celeb,@GarbiMuguruza,"Stella style for the courts of Paris + +Estilo Stella para las pistas de París. + +@adidastennis by @StellaMcCartney f… https://t.co/UjjH6dopC1" +04/18/2018,Sports_celeb,@GarbiMuguruza,"A pleasure to have attended the state dinner offered by Their Majesties the Kings to the President of Portugal, Mar… https://t.co/9iRpUxugrh" +04/18/2018,Sports_celeb,@GarbiMuguruza,"Un placer haber asistido a la cena de estado ofrecida por Sus Majestades los Reyes al Presidente de Portugal, Marce… https://t.co/Xw9Nkt1epk" +04/18/2018,Sports_celeb,@GarbiMuguruza,Me senté con @BBCSport para hablar sobre la alfabetización y por qué me he asociado con @RoomtoRead. Mi objetivo es… https://t.co/FfuCqjitAh +04/18/2018,Sports_celeb,@GarbiMuguruza,I sat down with @BBCSport to share why literacy & #girlsed are so important to me & why I've teamed up with… https://t.co/CXeYp0pNS3 +04/18/2018,Sports_celeb,@GarbiMuguruza,@Paulaperezcam16 Un placer Paula!! Gracias por venir a vernos! +04/15/2018,Sports_celeb,@GarbiMuguruza,Sunday brunch! 🥐🥓🍳🍩☕️🍓🌿🌿🌿 https://t.co/oJQuEjwj9T +04/15/2018,Sports_celeb,@GarbiMuguruza,@AndujarPablo que bien!!!!! merecido trofeo!! 🏆🏆 +04/14/2018,Sports_celeb,@GarbiMuguruza,Sábado día de entreno y de vuelta a la tierra roja! Saturday training day and back to clay court! ❤️🐞☄️🔥 https://t.co/iqLRmKgjjl +04/13/2018,Sports_celeb,@GarbiMuguruza,"¡Llega la temporada de tierra! + +Clay court season is here!! + +Fed Cup 🇪🇸 + Stuttgart + Madrid + Roma + Paris + +@WTA… https://t.co/JXbfwaWoQh" +04/10/2018,Sports_celeb,@GarbiMuguruza,Esperando al atardecer! Waiting for the sunset! 🌅🕶💛☕️🇨🇭 #jetlag #pijamas #bestview https://t.co/Fn4th1bBNc +04/09/2018,Sports_celeb,@GarbiMuguruza,La mejor sensación! The best feeling! 🏆🏆🏆🌶🌶🌶 #Mexico https://t.co/gAysrpkKGJ +04/09/2018,Sports_celeb,@GarbiMuguruza,"Muy feliz por la victoria, ha sido una semana dura pero con recompensa. + +Muchas gracias a todos por el apoyo... os… https://t.co/oBxaNRLQSu" +04/09/2018,Sports_celeb,@GarbiMuguruza,Muchas felicidades @DavidFerrer87 y a todo el equipo!!! Gran victoria!!! https://t.co/hUhkaCxBqy +04/09/2018,Sports_celeb,@GarbiMuguruza,"😀 .....🏆!!! + + I❤️ 🇲🇽 https://t.co/2IUoxztn7X" +04/07/2018,Sports_celeb,@GarbiMuguruza,"'ESE' sentimiento de estar en una final de nuevo. Vamos!! + +'THE' feeling of being in a final again. Vamos!! + +@WTA… https://t.co/5u4qtzJ5E6" +04/07/2018,Sports_celeb,@GarbiMuguruza,"Findeee!!! 😀....seguimos!!! + +Weekend baby!!! + +@WTA @Abierto_GNP https://t.co/gncn32LP1C" +04/06/2018,Sports_celeb,@GarbiMuguruza,"Un paso más!! Cuartos!! + +One step forward!! Quarters!! + +@WTA @Abierto_GNP https://t.co/kUbJ3Eu7XG" +04/04/2018,Sports_celeb,@GarbiMuguruza,"RT @Abierto_GNP: #RunGirlRun @GarbiMuguruza 🙌🙌🙌 +. +. +. +@wta #AbiertoGNPSeguros #EstadioGNP #Viviresincreíble @TurismoNL #Monterrey https://t…" +04/04/2018,Sports_celeb,@GarbiMuguruza,¡Órale...vamos! https://t.co/pe96iiVBH8 +04/01/2018,Sports_celeb,@GarbiMuguruza,"Entreno tempranero! 🎾 + +Sunday early practice! 🎾 + +@WTA @Abierto_GNP https://t.co/gh3Dy6wCUT" +03/31/2018,Sports_celeb,@GarbiMuguruza,"Fuerza a todas las mujeres de Monterrey.... y 🌎! + +#womenpower https://t.co/uJh0DWCfb4" +03/30/2018,Sports_celeb,@GarbiMuguruza,"@DidiDieva @Migos @gucci1017 Bueno bueno Migos, Gucci, Kendrick... también" +03/29/2018,Sports_celeb,@GarbiMuguruza,"🎾🎾🎾🎾🎾🎾🎾...... + +@WTA @Abierto_GNP https://t.co/noEJGjQJgM" +03/29/2018,Sports_celeb,@GarbiMuguruza,"Empapándome de #Monterrey!! + +Soacking me with Monterrey + +@WTA @Abierto_GNP https://t.co/m4xrdIQlWn" +03/28/2018,Sports_celeb,@GarbiMuguruza,"Hola 🇲🇽!!! +Visita en helicóptero de Monterrey +#PrimeraVez🚁 + +Hi 🇲🇽!! +Air tour over Monterrey +#1stTime🚁 + +@WTA… https://t.co/XeBY1ytgTO" +03/25/2018,Sports_celeb,@GarbiMuguruza,"💥.... Mi domingo en Cayo Vizcaíno! +Como va el vuestro? + +💥.... Sunday at Key Bicayne! +How is your day going? + +@WTA… https://t.co/dMp65tp6I4" +03/25/2018,Sports_celeb,@GarbiMuguruza,"Buenas noche Miami. + +Good night Miami + +(4th round) @MiamiOpen @WTA https://t.co/NkrDKSfREN" +03/25/2018,Sports_celeb,@GarbiMuguruza,"I am #MSDStrong +Great to meet you all. Thanks for coming out. + +@WTA @MiamiOpen https://t.co/JBZWrcrAlM" +03/23/2018,Sports_celeb,@GarbiMuguruza,"Sólo en Miami! #Manatí + +Only in Miami! #FloridaManatee 🐄🐠 + +☀️ @MiamiOpen @WTA https://t.co/4OBiiYnrV6" +03/22/2018,Sports_celeb,@GarbiMuguruza,"¡Me lo pasé en grande ayer en la fiesta del hotel @JWMM_Miami ! + +Great fun at @JWMM_Miami Hotel party last night!!… https://t.co/fkXKWiR78B" +03/21/2018,Sports_celeb,@GarbiMuguruza,"Nunca es fácil lidiar con una lesión. Le deseo a @AnisimovaAmanda una pronta recuperación. + +Never easy to deal with… https://t.co/CRq82L6m9y" +03/21/2018,Sports_celeb,@GarbiMuguruza,@CincyTennis 😱😱😱 this is not what I remember +03/20/2018,Sports_celeb,@GarbiMuguruza,RT @UnivisionSports: @GarbiMuguruza @WTA @MiamiOpen No te pierdas este jueves en @UDContacto a las 12AM ET una divertida entrevista con la… +03/20/2018,Sports_celeb,@GarbiMuguruza,"Cuando vengo a Miami y me vengo y como Cocosete, pirulín, tequeño, cachito, Malta, 🧀guayanés, tajada!!! 🤤🤤✌🏻✌🏻" +03/20/2018,Sports_celeb,@GarbiMuguruza,"🎾 & ☀️ + +@WTA @MiamiOpen https://t.co/Cgx1aMvv5s" +03/20/2018,Sports_celeb,@GarbiMuguruza,"Pronto en @UnivisionSports ..... + +Soon in @UnivisionSports ..... + +@WTA @MiamiOpen https://t.co/9DZny2pXOd" +03/19/2018,Sports_celeb,@GarbiMuguruza,Me encanta esta portada! Loving this cover 💚💛 @GlamourSpain https://t.co/BYdyt9efpm +03/19/2018,Sports_celeb,@GarbiMuguruza,"Hola @MiamiOpen!!! ... donde siempre me siento como en casa!! 😘 + +Hi @MiamiOpen!! ... where I always feel at home! 😍… https://t.co/KaijVT88FD" +03/19/2018,Sports_celeb,@GarbiMuguruza,"@AnaIvanovic @BSchweinsteiger Congratulations, @AnaIvanovic & @BSchweinsteiger! 💙 😀👏👏👏" +03/17/2018,Sports_celeb,@GarbiMuguruza,"Ultimo día de entrenamiento en la @IMGAcademy antes de partir hacia @MiamiOpen + +Last day of practice at… https://t.co/IqVPpknSPm" +03/14/2018,Sports_celeb,@GarbiMuguruza,Met an amazing lady today @garbaeslays ✌🏻#bestfan #teamugu https://t.co/jlq3I7NWzM +03/14/2018,Sports_celeb,@GarbiMuguruza,@garbaeslays Looks like someone is in IMG too +03/09/2018,Sports_celeb,@GarbiMuguruza,"💪 😉 + +@BNPPARIBASOPEN @WTA https://t.co/nNnHmUGqcs" +03/07/2018,Sports_celeb,@GarbiMuguruza,"🎾.... volea! + +@BNPPARIBASOPEN @WTA https://t.co/EkyxdeJIvg" +03/06/2018,Sports_celeb,@GarbiMuguruza,"Hello @BNPPARIBASOPEN!!! + +1st 🎾 practice + +😃😎☀️ + +@WTA https://t.co/cy7nqtPujE" +03/05/2018,Sports_celeb,@GarbiMuguruza,Oscars Vanity Fair 🖤🖤 https://t.co/bxFYLHuReR +03/05/2018,Sports_celeb,@GarbiMuguruza,"What a night!! + +#Oscars + +@rolex +@Hannibal_Laguna +Lorraine Schwartz https://t.co/ygwSZYxzn4" +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @Lindonk: @Wimbledon champ meets @Lakers star.....uhhh....mean @Oscars_2018live winner @kobebryant #DamnItsHeavy https://t.co/kuC7GOM2eJ +03/05/2018,Sports_celeb,@GarbiMuguruza,"Look who I ran in to!! ⛹🏾 + +@kobebryant #Oscars https://t.co/pzElBsAf3c" +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @VanityFairSpain: Segunda española de la noche: flamante @GarbiMuguruza. #Oscars https://t.co/YNzGw0T8g5 +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @holavzla: #AlfombraRoja La tenista venezolana @GarbiMuguruza dijo presente en los #Oscars https://t.co/IGx8LMMXkk +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @GlamourSpain: ¡Otra española que lo peta en la alfombra roja de los #Oscars! ¡Guapísima, Garbiñe! https://t.co/245FJgsjka" +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @VogueSpain: Si querías saber cómo iba a ser el @Hannibal_Laguna de Garbiñe Muguruza en los #Oscars, estas son las fotos que tienes que…" +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @elle_es: La tenista ha elegido un vestido de diseñador español, ¿adivinas cuál es? https://t.co/dJw6YiJFBZ #garbiñemuguruza #oscars" +03/04/2018,Sports_celeb,@GarbiMuguruza,Night out in LA https://t.co/r9plIrwr6G +03/03/2018,Sports_celeb,@GarbiMuguruza,"PRE OSCARS MOVES + +🕺💃🎬 + +@ma_silvestre https://t.co/YtBanOpo8r" +03/03/2018,Sports_celeb,@GarbiMuguruza,RT @BillieJeanKing: Pre-gaming at the @WME party. #preoscarparty #EmmaStone https://t.co/NrdypylLyf +03/02/2018,Sports_celeb,@GarbiMuguruza,"☔️ but .... 😀 morning!! + +☔️ pero .... 😀 día!! + +Venice Beach 🇺🇸 + +@WTA @BNPPARIBASOPEN @MiamiOpen https://t.co/J8HpC8z1aE" +02/27/2018,Sports_celeb,@GarbiMuguruza,"¡Qué placer haberte conocido y contar contigo para este Super vestido este domingoooo! + +What a pleasure to get to… https://t.co/NhHiL9IxTA" +02/26/2018,Sports_celeb,@GarbiMuguruza,@MiamiOpen Favourite tournament!!!! 💞 +02/26/2018,Sports_celeb,@GarbiMuguruza,@CarlaSuarezNava @highpronutritio Pelito largoooo!!! +02/26/2018,Sports_celeb,@GarbiMuguruza,"After two great weeks in the Middle East.... 🐪 +Hello America! 🤟 Hi Cali! ☀️🇺🇸 + +Después de dos buenas semanas en el… https://t.co/2Shhd8zhWr" +02/21/2018,Sports_celeb,@GarbiMuguruza,"Acabando el tratamiento y a descansar... (🕒3 am...) 😘 Vamos! + +#TodosLosPartidosCuentan + +Finishing treatment and ab… https://t.co/ets9VmPLCM" +02/17/2018,Sports_celeb,@GarbiMuguruza,"Enhorabuena @javierfernandez!! + + 💪💪💪 🥉@COE_es https://t.co/dzSb2rZ5JG" +02/15/2018,Sports_celeb,@GarbiMuguruza,😊 #Vamos https://t.co/kIJBjajXUV +02/10/2018,Sports_celeb,@GarbiMuguruza,"Descubriendo rincones nuevos de Doha⚱️🏺 + +Discovering new places in Doha 🏺⚱️ + +@WTA https://t.co/2ih1GShYE6" +02/09/2018,Sports_celeb,@GarbiMuguruza,Look who's joining my team for next tournaments! @conchitamartinz 👋🏼👋🏼💪🏼💪🏼👯 @SamSumyk we are waiting for you! #Doha https://t.co/OUj3JEnaBe +02/09/2018,Sports_celeb,@GarbiMuguruza,Mirad quién se añade a mi equipo para los próximos torneos! @conchitamartinz 👋🏼👋🏼💪🏼💪🏼 👯@SamSumyk te estamos esperan… https://t.co/hnWVXnhNpx +02/06/2018,Sports_celeb,@GarbiMuguruza,"Best athletes of 2017! +mejores atletas del 2017 + +Gracias @mundodeportivo https://t.co/vE2mfKjpA7" +02/05/2018,Sports_celeb,@GarbiMuguruza,#Women #Power https://t.co/YGu096O3Pc +02/05/2018,Sports_celeb,@GarbiMuguruza,"Noche para disfrutar! + +An evening to enjoy! + +@mundodeportivo #Barcelona + +@pronovias @rabatjewels @rolex 😊 https://t.co/LRoKY0RL5X" +02/04/2018,Sports_celeb,@GarbiMuguruza,"😋😋😋😋😋 🍖 + +¡¡Demasiado bueno!! + +Way too good! + +#JamonIberico https://t.co/Ps3cYqBZcM" +01/29/2018,Sports_celeb,@GarbiMuguruza,"🏃‍♀️🎾🏃‍♀️🎾🏃‍♀️🎾🏃‍♀️🎾 + +#MondayMotivation + +#ActitudDeLunes https://t.co/yDYammZHmz" +01/28/2018,Sports_celeb,@GarbiMuguruza,"¡Buenos días lago Leman! + +Good morning lake Leman!! + +❄️❄️❄️ #BestView #GoodSunday https://t.co/vgCPbGuKDX" +01/27/2018,Sports_celeb,@GarbiMuguruza,@garbaeslays I love it too!!! +01/24/2018,Sports_celeb,@GarbiMuguruza,"Back to 5 degrees!! + +¡¡De vuelta a los 5 grados!! + +🤧❄️🇨🇭 https://t.co/wyeRm4nJAf" +01/20/2018,Sports_celeb,@GarbiMuguruza,"Muchas felicidades ....... + +@javierfernandez por su 6º Europeo 🥇 🇪🇺 + +@CSainz_oficial y @LucasCruz74 por su triunf… https://t.co/g7hyQle9aJ" +01/17/2018,Sports_celeb,@GarbiMuguruza,"RT @LaureusSport: Congratulations @GarbiMuguruza, @allysonfelix, @caster800m, @serenawilliams, @katieledecky and @MikaelaShiffrin! + +#Laureu…" +01/14/2018,Sports_celeb,@GarbiMuguruza,"Feliz domingo. Happy Sunday 🌏 + +@AustralianOpen @WTA https://t.co/2s2GqeBtud" +01/14/2018,Sports_celeb,@GarbiMuguruza,Washhpoppin!? 🤘🏼🇦🇺💋 https://t.co/nqChH6j24w +01/13/2018,Sports_celeb,@GarbiMuguruza,"RT @babolat: What’s your tribe? +#PureAero #PureDrive #PureStrike https://t.co/2YOeR7ZRYs" +01/13/2018,Sports_celeb,@GarbiMuguruza,"Practice today at Hisense Stadium. First match on Tuesday. + +Entreno hoy en el Estadio Hisense. Primer partido el m… https://t.co/1hxDoKDBUZ" +01/12/2018,Sports_celeb,@GarbiMuguruza,"Feliz de entrar a formar parte de la familia @Caser +Happy to become a new member of the @Caser family. +#superacion https://t.co/1NhMEVLmTc" +01/11/2018,Sports_celeb,@GarbiMuguruza,"Sunshine + @stellamccartney 🙌 +@adidastennis +--- +#tennis #createdwithadidas #AusOpen https://t.co/GM2KQi9aL5" +01/07/2018,Sports_celeb,@GarbiMuguruza,Cocodrilo Dundee I am available! Estoy disponible! 🐊🐊🐊✌🏻@SydneyTennis https://t.co/NL9ygjSw7d +01/05/2018,Sports_celeb,@GarbiMuguruza,P Sherman calle Wallaby 42 Sydney 🐠 https://t.co/fMiquLOyC5 +01/03/2018,Sports_celeb,@GarbiMuguruza,"📢 Nuevos planes ✈️ ..... nos vamos a @SydneyTennis +... +📢 New plans ✈️... we are going to @SydneyTennis" +01/03/2018,Sports_celeb,@GarbiMuguruza,"RT @rtve: ""Contra el machismo, tolerancia cero"". El aplaudido sketch de Garbiñe Muguruza en el especial de José Mota https://t.co/H9djOmE8q…" +12/31/2017,Sports_celeb,@GarbiMuguruza,"¡Feliz año nuevo a todos! Que este 2018 nos brinde más momentos de emoción y felicidad por qué eso al final, ¡es lo… https://t.co/frTtTDefO2" +12/31/2017,Sports_celeb,@GarbiMuguruza,"It was time for Kids Day today at @BrisbaneTennis #Fun +Hoy tocaba el día de los niños en #BrisbaneTENnis #Diversion https://t.co/KnOhQh6Xlw" +12/30/2017,Sports_celeb,@GarbiMuguruza,"2nd day of practice in @BrisbaneTennis. Playing doubles w/ @CarlaSuarezNava 👌😀 +2º día de entreno en #BrisbaneTENnis… https://t.co/XhMTJpSElA" +12/29/2017,Sports_celeb,@GarbiMuguruza,Garbiñe nos cuenta como vio la temporada 2017. https://t.co/YXR1jtRIp7 +12/29/2017,Sports_celeb,@GarbiMuguruza,Hola Australia!!! Ya estoy de vuelta. Hello Australia!! I am back 💙💙🇦🇺🇦🇺🌀🌀🕶🕶🕶 https://t.co/Isal7gldu2 +12/27/2017,Sports_celeb,@GarbiMuguruza,@Highflyermel Yes!! I was in this flight 😤 +12/25/2017,Sports_celeb,@GarbiMuguruza,25th ☀️♥️ https://t.co/2S0gBSpjSB +12/25/2017,Sports_celeb,@GarbiMuguruza,Feliz navidad!!! Merry Christmas!!!!🎄🎁💋❤️💋❤️💋❤️💋❤️🎊🎉 https://t.co/WmfNzDIj50 +12/22/2017,Sports_celeb,@GarbiMuguruza,"No matter the sport, creativity brings us together +#HereToCreate @adidas https://t.co/LNGRiPbExM" +12/22/2017,Sports_celeb,@GarbiMuguruza,"¡¡No queda nada para Navidad!!! +Christmas is around the corner!! +🎅 🎁😃 https://t.co/3ECbzucFoo" +12/20/2017,Sports_celeb,@GarbiMuguruza,Love change! #HereToCreate https://t.co/2iMNb61hpd +12/20/2017,Sports_celeb,@GarbiMuguruza,😘 https://t.co/G6odqFeC4G +12/18/2017,Sports_celeb,@GarbiMuguruza,"Last Monday...Last week of practice....I am ready for you! +Último lunes...Última semana de entrenos.... ¡Vamos a p… https://t.co/LgygcWk8fJ" +12/18/2017,Sports_celeb,@GarbiMuguruza,Team Muguruza!!!! #SurfingUSA 🏄🏻‍♀️🏄🏻‍♂️🏄🏻‍♂️🌅🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼 https://t.co/BPaLalHqGQ +12/14/2017,Sports_celeb,@GarbiMuguruza,"#TBT +Singapore 2017 💄💋👗 https://t.co/3ubkoLbA40" +12/13/2017,Sports_celeb,@GarbiMuguruza,"Calendario enero-julio 2018 +Calendar January - July 2018 +@WTA @AustralianOpen @rolandgarros @Wimbledon https://t.co/ch5TNsA7ux" +12/13/2017,Sports_celeb,@GarbiMuguruza,"""I want to keep playing big finals, and fighting for the No.1. There’s nothing to be afraid of, and nothing to hide… https://t.co/xt46OHx0WW" +12/11/2017,Sports_celeb,@GarbiMuguruza,Buenos días!! 🌞 show me some beauty!! 🌅 💛💛💛💛 #SUNRISE https://t.co/DwVl55jWBv +12/09/2017,Sports_celeb,@GarbiMuguruza,"RT @CincyTennis: 3...2...1...GROUP HUG 🤗 + +@GarbiMuguruza https://t.co/4WQWzaBLZS" +12/09/2017,Sports_celeb,@GarbiMuguruza,@CarlaSuarezNava @dirtydancing_es @LetsGoCompany Yo lo quiero ver!!! 💃🏼💃🏼💃🏼 +12/08/2017,Sports_celeb,@GarbiMuguruza,@ITF_Tennis @RafaelNadal ❤️❤️❤️❤️ thank you!!!! +12/08/2017,Sports_celeb,@GarbiMuguruza,"RT @ITF_Tennis: Spain's @GarbiMuguruza has been named ITF World Champion for the first time along with three-time winner @RafaelNadal. + +It…" +12/07/2017,Sports_celeb,@GarbiMuguruza,"#TBT +Septiembre... Sesión de fotos y entrevista para @elpaissemanal +September...Photoshoot and interview for El P… https://t.co/p7NyfGbcvZ" +12/06/2017,Sports_celeb,@GarbiMuguruza,RT @JoseMotatv: .@GarbiMuguruza nos cuenta algunas cosas de su paso por la grabación de ‘Bienvenido Mister Wan-Da’ ¡Muchas gracias y buena… +12/06/2017,Sports_celeb,@GarbiMuguruza,De vuelta a mi segunda casa! Back to my second home! #LosAngeles ☀️💛💛💛💛🐠 https://t.co/S83ZNqEq7d +12/05/2017,Sports_celeb,@GarbiMuguruza,LA here we come! ✈️ 😀 🎾 💪 https://t.co/dnuPSwQRzq +11/30/2017,Sports_celeb,@GarbiMuguruza,"#TBT +@adidastennis photo shoot in Indian Wells with @Wimbledon outfit +Sesión de fotos de adidas en Indian Wells con… https://t.co/qxVLr7LTiH" +11/29/2017,Sports_celeb,@GarbiMuguruza,👏👏👏 La educación... ¡lo primero! https://t.co/TQSzEVCF7H +11/28/2017,Sports_celeb,@GarbiMuguruza,"Feliz martes a todos!! +Have a great Tuesday everyone! +😇💪🎾 https://t.co/p3VfGn3975" +11/24/2017,Sports_celeb,@GarbiMuguruza,"Buenas noticias!!! @teledeporte seguirá transmitiendo los @WTA premiers en 2018. 💪👍👏🎾 + +Great news...WTA premiers on… https://t.co/yFK8kbncup" +11/24/2017,Sports_celeb,@GarbiMuguruza,"RT @adidas: Calling all creators: the game changers, the difference makers, the boundary breakers. +It's a new day, create something. +#HereT…" +11/22/2017,Sports_celeb,@GarbiMuguruza,Incredible night having chosen me Personality of the year! Increíble noche siendo elegida Personaje del año!Mil gra… https://t.co/8a72q27hvQ +11/22/2017,Sports_celeb,@GarbiMuguruza,BEAUTIFUL @VanityFairSpain gala!! PRECIOSA gala de @VanityFairSpain #Gucci #JuliusBaer #Rolex #VF 👠💄👗💋 https://t.co/kAMEJW7akB +11/21/2017,Sports_celeb,@GarbiMuguruza,No sé cuantas veces me habré reído contigo y hoy también! Especial nochevieja @JoseMotatv 🍾✌🏻 https://t.co/P6qgCfa3Zh +11/20/2017,Sports_celeb,@GarbiMuguruza,Y seguimos en @ellarguero ... #Madrid https://t.co/5eYDufpHGV +11/20/2017,Sports_celeb,@GarbiMuguruza,"Empezamos la noche en @El_Hormiguero..... +@antena3com https://t.co/bnfNFm9oXs" +11/20/2017,Sports_celeb,@GarbiMuguruza,"Today is #UniversalChildrensDay +👧🏽👦🏼👧🏾👦🏽👧🏼👦🏻👧🏻👦🏿 +They are the future. And education is key for them. @RoomtoRead +https://t.co/VrWH9gvmgJ" +11/20/2017,Sports_celeb,@GarbiMuguruza,"Hoy es el #DíaMundialdelosNiños + 👧🏽👦🏼👧🏾👦🏽👧🏼👦🏻👧🏻👦🏿 +Ellos son el futuro. Y la educación es clave para su desarrollo.… https://t.co/hrFwqQbTYj" +11/20/2017,Sports_celeb,@GarbiMuguruza,RT @ellarguero: Un año de sufrimiento y muchos éxitos. La cronología de la gran temporada de @GarbiMuguruza. Esta noche nos visita en @ella… +06/30/2018,Sports_celeb,@alexmorgan13,They gone done it again. 👏🏽 https://t.co/k0iebn1pUS +06/30/2018,Sports_celeb,@alexmorgan13,Watch us today at 3:30p ET on @lifetimetv! #NoExcuses https://t.co/j231Tzj2Jh +06/30/2018,Sports_celeb,@alexmorgan13,What were you doing at 19?????? Take a bow Kylian Mbappe. +06/30/2018,Sports_celeb,@alexmorgan13,Who predicted this game would have 4 goals in less than 60 mins? Go to Vegas right now. #WorldCup2018 does not disappoint. +06/30/2018,Sports_celeb,@alexmorgan13,Di Maria for Prez +06/30/2018,Sports_celeb,@alexmorgan13,I want to see more Mbappe v Marcos Rojo. Is that cruel. +06/28/2018,Sports_celeb,@alexmorgan13,#TBT to my early days on the field just like Reagan! You can own #AlexAndMe with an exclusive headband and locker p… https://t.co/EcHCFOCi0M +06/27/2018,Sports_celeb,@alexmorgan13,"See you tonight, Orlando! https://t.co/M39IJ9s48y" +06/27/2018,Sports_celeb,@alexmorgan13,"RT @chachaspillane: Wife of billionaire ditches dogs that are near death and inbred +⁦@uhaul⁩ ⁦@UHaul_Cares⁩ #SylviaShoen is a disgusting wa…" +06/27/2018,Sports_celeb,@alexmorgan13,Best. World. Cup. Yet. Heartbreaking for Germany but excited to see Mexico moving. Every 3rd game has been insanity. My Stress levels ⬆️⬆️⬆️ +06/26/2018,Sports_celeb,@alexmorgan13,Wow. It’s like 9 lives with Argentina. The World Cup does not disappoint. And a nice friendly cameo from Maradona a… https://t.co/34kzHEqaOG +06/26/2018,Sports_celeb,@alexmorgan13,"RT @JordanCulver: Orlando Pride goalkeeper Ashlyn Harris was asked about attendance at Pride games this season, and in typical Ashlyn Harri…" +06/25/2018,Sports_celeb,@alexmorgan13,I vote (obv) for @AlannaKennedy of the @ORLPride for @NWSL Goal of the Week! Vote #KennedyGOW +06/24/2018,Sports_celeb,@alexmorgan13,Assists like this are just as good as goals. Class. https://t.co/nAG0cv8P0r +06/23/2018,Sports_celeb,@alexmorgan13,It’s gameday! 👀 Watch us today at 7:00pm ET on ESPNews @ORLPride https://t.co/pAz8I6x2gl +06/23/2018,Sports_celeb,@alexmorgan13,@sydneyleroux This coffee is going to taste sooooo sweet. +06/23/2018,Sports_celeb,@alexmorgan13,Nooooooooo waaaaaaaaaay. CLUTCH CLUTCH CLUTCH KLUTCH KRUTCH KROOCH KROOS KROOS KROOS +06/22/2018,Sports_celeb,@alexmorgan13,"Heartbreaker for Iceland, they turned me a big fan. Loved both goals from Nigeria though... and bonus points for the jerseys obv." +06/20/2018,Sports_celeb,@alexmorgan13,RT @SergioRamos: They are the ones who won tonight. Hopefully the first of many. https://t.co/ftnMwegZjz +06/20/2018,Sports_celeb,@alexmorgan13,"As fans around the world come together for the #WorldCup, a reminder from @UNICEFUSA on the healing power of play f… https://t.co/hschpywt6P" +06/19/2018,Sports_celeb,@alexmorgan13,#AlexAndMe is out on DVD and Blu-ray today! 🙌🏼 https://t.co/2rlA6Sovkp https://t.co/CmkbDj5TMN +06/17/2018,Sports_celeb,@alexmorgan13,@jimdklock @yumdonut 😂 love it +06/17/2018,Sports_celeb,@alexmorgan13,#GERMEX #GERMEX #GERMEX what a fast tempo game this is so far. I feel goals. +06/16/2018,Sports_celeb,@alexmorgan13,Game day at home! 7:30pm ET vs NJ. Let’s goooo 💪🏼 @ORLPride https://t.co/IRDB547edH +06/16/2018,Sports_celeb,@alexmorgan13,This game can’t end. Not yet it’s just too exciting. +06/16/2018,Sports_celeb,@alexmorgan13,I want Argentina to show well this World Cup but it’s honestly so damn hard to root against Iceland. They have so m… https://t.co/CTuP0uqJcb +06/16/2018,Sports_celeb,@alexmorgan13,Messi walks. Messi helps create a penalty. Messi walks. Please Messi just score and you can walk all you want. +06/15/2018,Sports_celeb,@alexmorgan13,@ALLIE_LONG Dare me +06/15/2018,Sports_celeb,@alexmorgan13,I’d like to thank the soccer gods for blessing us with beautiful soccer for the last 90 minutes. #PORvESP +06/15/2018,Sports_celeb,@alexmorgan13,Waking up to mo World Cup games means motivation to go to sleep earlier. Mo Salah comin upppp. +06/14/2018,Sports_celeb,@alexmorgan13,"Thank you Fatemeh for sharing your story. Of what importance is soccer to a man? Think, then answer in your head. N… https://t.co/5kyJczYmkC" +06/14/2018,Sports_celeb,@alexmorgan13,#WorldCup started with a goal fest today ⚽️ #Ready for more games and excitement! https://t.co/QIzppu1Ywu +06/13/2018,Sports_celeb,@alexmorgan13,Finally home after 3 weeks on the road and nothing better than walking in the door to my pup. It’s not fair how much I love him 😭 +06/13/2018,Sports_celeb,@alexmorgan13,So happy waking up to this news! The World Cup is coming home 🇺🇸 #United2026 https://t.co/qaq0eAoxif +06/12/2018,Sports_celeb,@alexmorgan13,@ddepressedffan @iTunes Hope you enjoy it! +06/12/2018,Sports_celeb,@alexmorgan13,You can finally own #AlexandMe on @iTunes now! Watch me train Reagan to become the MVP of her soccer team… https://t.co/71R1xxWhG7 +06/12/2018,Sports_celeb,@alexmorgan13,@advisor86 I’ll be there💜 +06/12/2018,Sports_celeb,@alexmorgan13,Cleveland we can’t wait to play for you tomorrow!!! USA v China at 7pm at FirstEnergy Stadium. +06/11/2018,Sports_celeb,@alexmorgan13,So excited for #AlexandMe!! https://t.co/aGdw8Dn5Ls +06/11/2018,Sports_celeb,@alexmorgan13,Back to the roots! https://t.co/FPlxTuuaAk +06/10/2018,Sports_celeb,@alexmorgan13,But that assist tho..... 👀🤙🏼 https://t.co/SzIdftvhDr +06/07/2018,Sports_celeb,@alexmorgan13,We’re back! 🇺🇸 Watch us tonight at 9pm ET on @FS1 #USWNT https://t.co/2pPkvb3FCk +06/07/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: Can you believe! 🏳️‍🌈 + +The stars of the #USWNT celebrate equality, diversity, and inclusivity. https://t.co/uqRO4G0VFD" +06/05/2018,Sports_celeb,@alexmorgan13,@Toni_Deion That is my worst nightmare. I’m so sorry. +06/05/2018,Sports_celeb,@alexmorgan13,"RT @benbloomsport: Men = 100/100 +Women = 0/100 + +For the first time ever since Forbes started compiling the world's 100 highest paid sportsp…" +06/05/2018,Sports_celeb,@alexmorgan13,"@FanyVeraPR Not sure of July 21, but should be there August 5!" +06/04/2018,Sports_celeb,@alexmorgan13,We will take that point in Seattle! https://t.co/R0gHJNGGS0 +06/03/2018,Sports_celeb,@alexmorgan13,@MLS @JosefMartinez17 Beast +06/02/2018,Sports_celeb,@alexmorgan13,Oops sorry guys... it’s June 7 in SLC. 🤦🏼‍♀️ https://t.co/abdkULFLTB +06/02/2018,Sports_celeb,@alexmorgan13,So excited to hear we will be repping the rainbow numbers in our upcoming games in honor of #PrideMonth! #USWNT fir… https://t.co/BIZx2qYuCS +06/02/2018,Sports_celeb,@alexmorgan13,Anddddd @LAGalaxy playing some entertaining soccer these first 20 Mins. Always a good environment in Portland. #ESPN2 +06/01/2018,Sports_celeb,@alexmorgan13,I had so much fun at the #AlexAndMe premiere last night! I can’t wait to share it with all of you! Own #AlexAndMe o… https://t.co/3fyWz0rl2X +06/01/2018,Sports_celeb,@alexmorgan13,The #AlexandMe fam! Premiere a success tonight and movie officially out June 12th. ❤️ https://t.co/rVZRz13MkF +05/31/2018,Sports_celeb,@alexmorgan13,So excited to be part of @maroon5’s new #GirlsLikeYou music video with so many incredible women! 🙌🏼 Watch the full… https://t.co/o8ByAGhJpM +05/28/2018,Sports_celeb,@alexmorgan13,Let’s go guys!!! #USAvBOL +05/27/2018,Sports_celeb,@alexmorgan13,@PlayersSayings Never said this. +05/27/2018,Sports_celeb,@alexmorgan13,@FOXSports @heathermitts I will. Brilliant. +05/27/2018,Sports_celeb,@alexmorgan13,We had ourself a game today! (No not the CL final for those who didn’t tune into @lifetimetv) Proud of this team @ORLPride +05/26/2018,Sports_celeb,@alexmorgan13,Gameday! 3:30pm ET on @lifetimetv https://t.co/HwARhfiYAW +05/24/2018,Sports_celeb,@alexmorgan13,Congratulations @OLfeminin on your incredible win!! Another perfect season. #ChampionsLeagueFinal +05/23/2018,Sports_celeb,@alexmorgan13,Back at HOME!! 💜 7:30pm ET tonight from Orlando City Stadium #ORLvNC @ORLPride https://t.co/wGoPIyqgTe +05/22/2018,Sports_celeb,@alexmorgan13,Are you ready?! #WorldCup https://t.co/UurQMeH0yq +05/22/2018,Sports_celeb,@alexmorgan13,@mmarlow13 That’s a great class presentation!! See you in a few weeks 😊 +05/19/2018,Sports_celeb,@alexmorgan13,Been watching every #RoyalWedding show possible on tv since 7am I can’t help myself 😩 +05/16/2018,Sports_celeb,@alexmorgan13,@rgottlieb1 Yes! What a great WC promo. Ready for it to start already! +05/16/2018,Sports_celeb,@alexmorgan13,Is this a joke? It’s Yanny (or Yammy) every time. Without fail. +05/13/2018,Sports_celeb,@alexmorgan13,@kylekrieger I’m about to curse I should@just stop tweeting )$!#%^*+1?! +05/13/2018,Sports_celeb,@alexmorgan13,@ussoccer_wnt @mPinoe Ohhhh whaaaaaaaat. She don’t miss a step. +05/12/2018,Sports_celeb,@alexmorgan13,"So incredibly proud of this team and soooooo happy to end this tough road trip on a win. 💜💜💜💜 Few days off,… https://t.co/b3TqfkvWgD" +05/12/2018,Sports_celeb,@alexmorgan13,Watch us take on Portland today at 3:30pm ET on @lifetimetv! @ORLPride https://t.co/UxAn6z5X42 +05/09/2018,Sports_celeb,@alexmorgan13,That gameday feeling 🙌🏼 🙌🏼@ORLPride vs Utah today at 9pm ET https://t.co/r0vopGBWvu +05/08/2018,Sports_celeb,@alexmorgan13,@jimemaud @jmaynard_21 I love this thread 😩 Jack and Jim at their best. +05/08/2018,Sports_celeb,@alexmorgan13,"@champnella @SienaAgudong @jimdklock When you try to go easy on your director by shooting with your right foot, by… https://t.co/1YjjUewm1c" +05/07/2018,Sports_celeb,@alexmorgan13,"I love this movement! I've teamed up with @UNICEFKidPower, @Sharpie and @PlayersTribune to inspire kids to get acti… https://t.co/TSOqN8Uzzm" +05/03/2018,Sports_celeb,@alexmorgan13,Yesssss climbing on up!! https://t.co/KfeQBL0mxX +05/02/2018,Sports_celeb,@alexmorgan13,Gameday in Chicago! 7:30pm ET 💪🏼 @ORLPride https://t.co/ddZf2qMEA2 +05/01/2018,Sports_celeb,@alexmorgan13,Always thankful for @FIFPro and the support it gives female and male players around the world. https://t.co/tQcMJdBLmv +04/28/2018,Sports_celeb,@alexmorgan13,Gameday! Taking on Seattle tonight at 7:30pm ET at HOME 🙌🏼 @ORLPride https://t.co/hWkuPTmqRS +04/26/2018,Sports_celeb,@alexmorgan13,@zchy3013 @CocaCola @Walgreens New fave(but more of a dessert): mango Diet Coke 😋 +04/26/2018,Sports_celeb,@alexmorgan13,Had fun shooting with @CocaCola and @Walgreens. Summer is almost here! #cokefamily https://t.co/CE0a8ceujq +04/22/2018,Sports_celeb,@alexmorgan13,"No better feeling than a game day at HOME!!! Tonight, 5pmET at Orlando City Stadium. See you soon!" +04/22/2018,Sports_celeb,@alexmorgan13,@AlannaKennedy @Em_surf @ORLPride Yea yea yea yea +04/21/2018,Sports_celeb,@alexmorgan13,Check out @KarlieKloss’s hysterical video with @Chegg for @KodeWithKlossy and then tell every teen girl in the coun… https://t.co/8CbflyrHoi +04/15/2018,Sports_celeb,@alexmorgan13,It’s almost game time! Great day for some footy in the rain. #PORvORL +04/14/2018,Sports_celeb,@alexmorgan13,Family of @UtahRoyalsFC flown out for this sold out home opener. Respect. #NWSLonLifetime +04/13/2018,Sports_celeb,@alexmorgan13,@ASPCA When will they be up for adoption? +04/13/2018,Sports_celeb,@alexmorgan13,Happy Friday the 13th! +04/11/2018,Sports_celeb,@alexmorgan13,"Sport is so incredibly cruel sometimes. Gotta feel for Buffon, a player that has played longer than anyone else on… https://t.co/k18AR4QuMn" +04/11/2018,Sports_celeb,@alexmorgan13,@btsportfootball 🙌🏼🙌🏼🙌🏼 +04/11/2018,Sports_celeb,@alexmorgan13,This week’s champions league is unreal. Harry Kane’s bicycle kick just wiped off the board with Juve’s goals. +04/10/2018,Sports_celeb,@alexmorgan13,"@arlowhite Well, it’s all about the Ref today isn’t it? 🤦🏼‍♀️" +04/09/2018,Sports_celeb,@alexmorgan13,@r0bs3lf This is incredible 👆🏼🙌🏼 +04/08/2018,Sports_celeb,@alexmorgan13,RT @ussoccer_wnt: No need to check your local listings. #USAvMEX gets the @FOXTV treatment at 1:30 pm ET. 📰 » https://t.co/q5DRxgQfTX https… +04/06/2018,Sports_celeb,@alexmorgan13,Get those outfits ready!! https://t.co/RQlWPOtVMC +04/06/2018,Sports_celeb,@alexmorgan13,@Toni_Deion @daniweatherholt I meannnn what can’t you do ⚽️📸👩‍🍳 +04/06/2018,Sports_celeb,@alexmorgan13,Thanks Jax for a fun night! Love you.Mean it. +04/05/2018,Sports_celeb,@alexmorgan13,@lsesselmann Thanks!! +04/05/2018,Sports_celeb,@alexmorgan13,She’s got the moooooves 😂🙈 #gamedaydance https://t.co/FY05gYUqJI +04/05/2018,Sports_celeb,@alexmorgan13,"@ASPCA Done ✅ +Help these animals!!" +04/05/2018,Sports_celeb,@alexmorgan13,I'm so excited to share the #AlexandMe trailer with you all! #AlexandMe will be available digitally starting June 1… https://t.co/D59rJdNdQ2 +04/05/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: #USAvMEX coverage begins at 7 pm ET on @FS1 and @UnivisionSports. + +What to watch for » https://t.co/lZKsPwK1gl https://t.…" +04/04/2018,Sports_celeb,@alexmorgan13,So excited! 🎥 https://t.co/Qk2iv4cW4c +04/03/2018,Sports_celeb,@alexmorgan13,@FOXSoccer Daaaaaaaang. Take a bow is right. +04/01/2018,Sports_celeb,@alexmorgan13,@kochfamily4 I hope so too! Hi Kendall 👋🏼 +03/31/2018,Sports_celeb,@alexmorgan13,Let’s gooooooo @ORLPride somebody get me a goal 🙏🏼 @sydneyleroux @ChiAlreadyKnow @r_hill3 +03/31/2018,Sports_celeb,@alexmorgan13,@nymeca @ORLPride It’s half time. Smiley face back. +03/31/2018,Sports_celeb,@alexmorgan13,What a game. #ElTrafico you have not disappointed. +03/31/2018,Sports_celeb,@alexmorgan13,I love that so much. Thank you #zLAtan +03/31/2018,Sports_celeb,@alexmorgan13,Good luck today ladies! Bring home the win. Watch on @lifetimetv at 3:30p ET @ORLPride https://t.co/T7hanVXmvP +03/28/2018,Sports_celeb,@alexmorgan13,"@stuholden I have to choose a team, can’t I just choose a player? 😂" +03/28/2018,Sports_celeb,@alexmorgan13,The most fitting name for a rivalry match👇🏼🙌🏼 https://t.co/s7jeuKNcEP +03/28/2018,Sports_celeb,@alexmorgan13,@GriffWhalen Is there such thing as Cuban vegan food??? I know Miami has to have that.... +03/28/2018,Sports_celeb,@alexmorgan13,@WillDishong Way more energy now! Don’t need as much sleep or coffee. +03/28/2018,Sports_celeb,@alexmorgan13,"Some of my orlando go-to’s: Sanctum, Ethos Vegan Kitchen, anything from @Toni_Deion’s kitchen, Market on South,… https://t.co/7FpmhQ8eLK" +03/28/2018,Sports_celeb,@alexmorgan13,"3 months eating vegan and now asking for help from my orlando peeps. Send me your fave Vegan fiends spots! Yu share yours, I’ll share mine!" +03/28/2018,Sports_celeb,@alexmorgan13,"Animals should ALWAYS be a part of the family ❤️ My rescue pup, Blue, and I teamed up with @peta to share a glimpse… https://t.co/0KcVCvnAXP" +03/27/2018,Sports_celeb,@alexmorgan13,RT @peta: Soccer champ @alexmorgan13 doesn't just have an #Olympic gold medal — she has a heart made of gold 💛 Watch her and adopted dog Bl… +03/26/2018,Sports_celeb,@alexmorgan13,Happy #AirMaxDay! 👟 https://t.co/KBFByji0zu +03/24/2018,Sports_celeb,@alexmorgan13,@glory243matondo @Emma4Change Yolanda King was something special. I have never seen a more fearless 9 year old. She… https://t.co/iDGnVANxfI +03/24/2018,Sports_celeb,@alexmorgan13,"Incredibly powerful speeches from all the speakers and singers at #MarchForOurLives in DC, especially @Emma4Change. Speechless." +03/24/2018,Sports_celeb,@alexmorgan13,Game day! Kicking off the season tonight at home 💪🏼 See you there! @orlpride https://t.co/L7zlb9RCMw +03/23/2018,Sports_celeb,@alexmorgan13,@bavacado2 @NWSL That would be a dream 🤩 +03/23/2018,Sports_celeb,@alexmorgan13,@JeremyPalenik @NWSL Love it! See you there! +03/23/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer Had to make your cross look good! +03/23/2018,Sports_celeb,@alexmorgan13,Finally the @NWSL season is back! My Orlando peeps who’s coming out tomorrow??? 👀👀👀 730pmET at Orlando City stadium 💜💜💜💜💜 +03/23/2018,Sports_celeb,@alexmorgan13,Loving our new kits!!! https://t.co/a1l5OvdNG5 +03/22/2018,Sports_celeb,@alexmorgan13,"If we fix the Water Burden, we can empower girls to change the world. Take action for #WorldWaterDay with… https://t.co/B4lDYp7Ado" +03/22/2018,Sports_celeb,@alexmorgan13,RT @ManUtd: #MUFC has submitted an application to the @FA to establish a professional women’s team in the second tier of the Women’s Super… +03/21/2018,Sports_celeb,@alexmorgan13,@Toni_Deion Lol yes whatchu got +03/21/2018,Sports_celeb,@alexmorgan13,@johnstons08 They look pretty clean. +03/21/2018,Sports_celeb,@alexmorgan13,"Now that hubby isn’t in Orlando anymore, I have soooooo much time for new shows. Please share good ones!! 🙏🏼" +03/20/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer So it’s not enough for them to live in cages? No let’s parade them around the city chained too. +03/19/2018,Sports_celeb,@alexmorgan13,RT @FIFPro: Finland 🇫🇮is investigating if the national football association is discriminating against the women’s national team. https://t.… +03/18/2018,Sports_celeb,@alexmorgan13,"RT @ORLPride: You have to be at Orlando City Stadium this Saturday. + +Tickets: https://t.co/qcC5XdSCrB https://t.co/bALJK0ezP0" +03/15/2018,Sports_celeb,@alexmorgan13,@LVEtech Awesome! Great job girls +03/09/2018,Sports_celeb,@alexmorgan13,It’s great to see two organizations with strong female leadership come together to support gender equality @Bumble… https://t.co/Uku91RnWF3 +03/09/2018,Sports_celeb,@alexmorgan13,"My dog has officially peed on a fire hydrant. Very proud mom. Yes, apparently dogs actually pee on fire hydrants." +03/09/2018,Sports_celeb,@alexmorgan13,RT @beatsbydre: Know your worth and don’t settle for less. @AlexMorgan13 #InternationalWomensDay #PressForProgress https://t.co/4rYxQ4vlkB +03/08/2018,Sports_celeb,@alexmorgan13,Honored to be named among the best in women’s football for 2017! A great way to start off… https://t.co/2FwD5LTaMo +03/07/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: The only words you need to hear this morning: IT'S MATCHDAY! 🇺🇸 + +Win and we lift the 🏆 » https://t.co/T8ekOiKMLu https://…" +03/06/2018,Sports_celeb,@alexmorgan13,@heyOchao Hey girls!! Good luck have fun! +03/05/2018,Sports_celeb,@alexmorgan13,@ELS_9_FRANCE @equipedefrance Congratulations Eugenie! +03/05/2018,Sports_celeb,@alexmorgan13,"Serena Williams has proven time and time again, there’s no wrong way to be a woman. #UntilWeAllWin https://t.co/tZih7485cg" +03/05/2018,Sports_celeb,@alexmorgan13,Yesterday was fun celebrating these Olympic Champions!🥇#TeamUSA #USWNTSUNITED https://t.co/YkkN4Sqbfx +03/05/2018,Sports_celeb,@alexmorgan13,@LAGalaxy Yesssssssuh. +03/05/2018,Sports_celeb,@alexmorgan13,@believethatwe Sassy worms @kelleymohara +03/04/2018,Sports_celeb,@alexmorgan13,@thebriandineen Thanks!! +03/03/2018,Sports_celeb,@alexmorgan13,RT @FIFPro: Congratulations @AlexMorgan13! 👏 You've been nominated for the #WomensWorldXI. Read more 👉 https://t.co/heaqoPdGLu https://t.co… +03/02/2018,Sports_celeb,@alexmorgan13,Never felt more relieved than when our plane touched down just now. North East why you gotta bring the bad weather now???? +03/02/2018,Sports_celeb,@alexmorgan13,@NairnChristine @Cars_Pickett16 Amazon that shhhht. +03/02/2018,Sports_celeb,@alexmorgan13,"RT @heathermitts: March 23rd, Congress will decide to allows the BLM to destroy healthy wild horses and burros, and the Senate version, whi…" +03/02/2018,Sports_celeb,@alexmorgan13,@zchy3013 Different... could feel my toes/feet but couldn’t feel my face/neck/legs. Wind made my body ache!! +03/02/2018,Sports_celeb,@alexmorgan13,"Columbus. I can’t believe all 15,000 of you stayed out in that weather tonight. So much respect. First win and onto… https://t.co/rjhOnRFKSp" +03/01/2018,Sports_celeb,@alexmorgan13,The #SheBelievesCup kicks off today! Watch us take on Germany tonight at 7pm ET on ESPN2 🇺🇸 https://t.co/UtiKDZLFfw +03/01/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer @Toni_Deion 3 vegans and 3 watchless wrists. SMH +02/28/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: TOMORROW. +TOMORROW. +WE LOVE YA TOMORROW. + +You guys, #SheBelievesCup 2018 is so soon. Be there » https://t.co/jVlbijw9re…" +02/28/2018,Sports_celeb,@alexmorgan13,RT @ACLU: No. https://t.co/Qzx36gsIG7 +02/25/2018,Sports_celeb,@alexmorgan13,"@jamiemorris03 I think it’s important you are there as well. You are also her family, and the soccer community help… https://t.co/mvko2cvm5O" +02/25/2018,Sports_celeb,@alexmorgan13,@jamiemorris03 @ussoccer_wnt @ussoccer @PrincipalMSD @NeverAgainMSD @MSDSOCCER1 @MSD_Soccer @Emma4Change We would a… https://t.co/NZCDpe4bAy +02/25/2018,Sports_celeb,@alexmorgan13,RT @ussoccer_wnt: Thank you so much to everyone who helped @jamiemorris03's tweet spread and make its way to us. We got in touch with Alyss… +02/24/2018,Sports_celeb,@alexmorgan13,"@AnnOdong Formiga is the OG. So much respect, she can still hold her own on the intl level in sure of that." +02/23/2018,Sports_celeb,@alexmorgan13,What a game! Congrats on Gold!! #TeamUSA https://t.co/X2SUlOmPkL +02/22/2018,Sports_celeb,@alexmorgan13,Oh. My. God. This is so extremely infuriating!!! https://t.co/CXqYDei2ya +02/22/2018,Sports_celeb,@alexmorgan13,"RT @NWSL: Prepare to be amazed and astonished. The #NWSL is back on March 24. + +🗓️ full schedule | https://t.co/7OJvYkJ364 +📺 on @lifetimetv…" +02/22/2018,Sports_celeb,@alexmorgan13,RT @TeamUSA: #USA is on the board with a goal by @HilaryKnight! LET THEM HEAR YOU #TeamUSA fans! 🗣 https://t.co/5SYoijnIKa +02/22/2018,Sports_celeb,@alexmorgan13,"To the students of Stoneman Douglas High School: Your bravery and courage is inspiring. No teenager, no human shoul… https://t.co/Cm4gMKmVUA" +02/22/2018,Sports_celeb,@alexmorgan13,Let’s go @usahockey!!!!!!! Get that 🥇 I’ll be cheering loud for you all! https://t.co/uce9KWbVPV +02/22/2018,Sports_celeb,@alexmorgan13,@LilyMaeSilver Awww they are so sweet ❤️ +02/21/2018,Sports_celeb,@alexmorgan13,#LoveYourPetDay #Diva #BlueShaquilleOneal https://t.co/CQEvQ1RaU1 +02/21/2018,Sports_celeb,@alexmorgan13,Shoutout to the biggest diva there is. #LoveYourPetDay even though I love my boy Blue everyday. https://t.co/VmchiuHqUc +02/20/2018,Sports_celeb,@alexmorgan13,@ussoccer_wnt @kohara19 @Jaguars @EverBankField Wormmmmmms 🐛 +02/19/2018,Sports_celeb,@alexmorgan13,@ChiAlreadyKnow Howwwww is this my first time seeing this. Too good!! 🤣 +02/17/2018,Sports_celeb,@alexmorgan13,@Toni_Deion @StellaMcCartney @AngelaandRoi 😍🤩😍 +02/17/2018,Sports_celeb,@alexmorgan13,🛬 Orlando 💜💜💜 +02/17/2018,Sports_celeb,@alexmorgan13,"Had a blast at this #EarlyMan screening! Make sure to go see it, in theaters today! https://t.co/kzRiq63Usi" +02/15/2018,Sports_celeb,@alexmorgan13,RT @MichaelDavSmith: Police confirm an AR-15 rifle was used in today's school shooting. AR-15 style rifles were used in the Texas church sh… +02/14/2018,Sports_celeb,@alexmorgan13,@kohara19 X is the best. +02/14/2018,Sports_celeb,@alexmorgan13,PRESALE for #USAvMEX ends 2/14 at 8am CT! Get your tickets now with code: C1MATCH at https://t.co/2WfzNpxQlL https://t.co/U0rtswFlhk +02/12/2018,Sports_celeb,@alexmorgan13,"RT @USWNTPlayers: Congratulations, #USSFPresident @CACSoccer. The @USWNTPlayers look forward to productive and respectful relationship with…" +02/11/2018,Sports_celeb,@alexmorgan13,@jordangeli @TeamUSA Yessssss thank you for this 🤣🙌🏼 +02/11/2018,Sports_celeb,@alexmorgan13,RT @TheHumaneLeague: Did someone say vegan donuts!? RT if you'd devour any of these 😍🍩 https://t.co/TICOXcb8CV +02/11/2018,Sports_celeb,@alexmorgan13,@stuholden Appreciate what you do for us athletes Stu. +02/10/2018,Sports_celeb,@alexmorgan13,@CACSoccer @ussoccer Congratulations Carlos! +02/09/2018,Sports_celeb,@alexmorgan13,Great two weeks of training with @BeastModeSoccer... I think 500 shots a week warrants a weekend off! https://t.co/r1NAVmcmEU +02/09/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer Why don’t we compile the videos of netball from the last 2 weeks... +02/09/2018,Sports_celeb,@alexmorgan13,@NBCOlympics @SchildMorgan My knees ache so bad watching this. +02/09/2018,Sports_celeb,@alexmorgan13,Good luck to all the #TEAMUSA athletes competing in the Winter Olympics!! #Olympics2018 +02/08/2018,Sports_celeb,@alexmorgan13,"RT @FIFAWWC: OFFICIAL! +Opening match in Paris, semi-finals and final in Lyon. +All you want to know is in the #FIFAWWC🇫🇷 schedule. + +Le cale…" +02/07/2018,Sports_celeb,@alexmorgan13,Celebrating today is important but don't forget to celebrate girls & women in sport every day #NGWSD https://t.co/a4HgUD1VJg +02/07/2018,Sports_celeb,@alexmorgan13,@DiCiccoMethod @MichelleAkers10 ❤️❤️❤️❤️ +02/06/2018,Sports_celeb,@alexmorgan13,Sounds simple enough to me 🤔👌🏼 https://t.co/Y6DSmrkkCP +02/05/2018,Sports_celeb,@alexmorgan13,Congrats @Eagles on winning the Super Bowl! #Champions +02/05/2018,Sports_celeb,@alexmorgan13,@FARMUSA @FloydMayweather F*ck this. Makes me so mad. +02/05/2018,Sports_celeb,@alexmorgan13,Zach!!! 2 minutes left let’s hold the lead!!! #SuperBowlLII +02/03/2018,Sports_celeb,@alexmorgan13,Back together baby!!! 🔥 🔥 🔥 https://t.co/SaNyMXfw65 +01/26/2018,Sports_celeb,@alexmorgan13,"Lights, camera, action 🎥 https://t.co/8MraNW2oKh" +01/26/2018,Sports_celeb,@alexmorgan13,@SilverMikeA @janinebeckie4 @BrookeLB93 I’ll be around for another week if we can make it happen! +01/25/2018,Sports_celeb,@alexmorgan13,His training skills are mediocre but his photography skills on the other hand.... @BeastModeSoccer always bringing… https://t.co/vAeglf3I21 +01/24/2018,Sports_celeb,@alexmorgan13,"We must work everyday, until we all win. #EQUALITY https://t.co/aPjqOD9rIa" +01/22/2018,Sports_celeb,@alexmorgan13,"That’s how we like to start off 2018! Great team win, and huge 1st cap congrats to @tierna_davidson and @smccaskill_21! #USWNT" +06/28/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Loved following along with our #ShowdownNY athletes? Get these NIKE tees and gear now and keep summer with you all year r… +06/28/2018,Sports_celeb,@SteveNash,👀👀👀👀👀👀👀 https://t.co/NBEMraG4M2 +06/28/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: This humanitarian crisis is happening here, to children and families in our country, by our government. Groups like @CHIR…" +06/27/2018,Sports_celeb,@SteveNash,"RT @CHIRLA: Thousands of Angelinos are +​set to hit​ the streets of LA this ​Saturday, ​June 30th to ​speak up for family unity​. ​Will you…" +06/27/2018,Sports_celeb,@SteveNash,Harsh but fair https://t.co/KsVtP8FRMF +06/25/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Proud to know the wonderful people @HRC, working so inclusively to bring equality to our communities. #athletesforequalit…" +06/24/2018,Sports_celeb,@SteveNash,@GuinnessUS @SteveNashFdn @brfootball @Cipriani @CalenCarr @lilypadwastaken @LanceFresh Thank you! +06/24/2018,Sports_celeb,@SteveNash,Kane +06/23/2018,Sports_celeb,@SteveNash,Sonny!!! +06/23/2018,Sports_celeb,@SteveNash,Shin-charito +06/21/2018,Sports_celeb,@SteveNash,I think sampaoli owns a string of nightclubs in Miami. +06/21/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Missed the Merch? Get your 2018 #ShowdownNY tees today! Note: it may have been raining when we took this shot - dry t-shi… +06/21/2018,Sports_celeb,@SteveNash,"More soon, but what a day and night that was - a big thanks to @GuinnessUS for hosting us at Cipriani’s last night… https://t.co/0KpITOB2nC" +06/20/2018,Sports_celeb,@SteveNash,You’ll be missed bro! Although @CharlieDavies9 says they’ll forget all about you after his debut tonight. https://t.co/xSVXrdBQlZ +06/20/2018,Sports_celeb,@SteveNash,The answers to so few of life’s questions are ever black and white . . . unless you’re at the @brfootball x… https://t.co/moBRfCP1QW +06/20/2018,Sports_celeb,@SteveNash,SHOWDOWN DAY!! Get to and from #ShowdownNY and our #free FanFest on the Lower East Side with @Lyft! Enter code Show… https://t.co/wqtvLeqecy +06/20/2018,Sports_celeb,@SteveNash,@graemelesaux14 Anyone have a ronaldinho wig? +06/20/2018,Sports_celeb,@SteveNash,@kylemartino I’ll talk to the sporting director... +06/20/2018,Sports_celeb,@SteveNash,Big thanks to @brkicks x @Kickstradomis for the collab! My touch better be on point in these. Can’t wait to see eve… https://t.co/dZrNbVd1z0 +06/18/2018,Sports_celeb,@SteveNash,Kane +06/16/2018,Sports_celeb,@SteveNash,@ToddWuschnig #ToddWuschnig #BigBusiness https://t.co/0lvziHrN88 +06/15/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Love this @USATODAY @usatodaysports piece on @SteveNash, @KlayThompson and #ShowdownNY (and echo the hope of getting @Ste…" +06/15/2018,Sports_celeb,@SteveNash,Ginga irmão! Joga bonito! https://t.co/X7Hbc2K7Dd +06/14/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Us every year: ""We don't release player names before the match."" +Steve every year: https://t.co/K0V4182hFB" +06/14/2018,Sports_celeb,@SteveNash,Solid #ShowdownNY debut from @JoakimNoah! https://t.co/SMBahkL7a8 +06/14/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: More #ShowdownNY #trivia! For a ticket to the @stevenash Foundation #ShowdownNY (remember you must be following @stevenas… +06/14/2018,Sports_celeb,@SteveNash,But your lips aren’t moving? https://t.co/o3G0jhOI1U +06/14/2018,Sports_celeb,@SteveNash,FIFA....oh dear 🤦🏻‍♂️ +06/14/2018,Sports_celeb,@SteveNash,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Sports_celeb,@SteveNash,"RT @MikeQuarino: Less than 24 hours until the #WorldCup, and exactly one week until the @SteveNashFdn #ShowdownNY. What a great time for s…" +06/13/2018,Sports_celeb,@SteveNash,"If you win and are coming to #ShowdownNY, I’ll sign the tee (unless you like clean clothing) . . . . Tickets:… https://t.co/4uaCi1UuJL" +06/13/2018,Sports_celeb,@SteveNash,@chicagospurs Correct +06/13/2018,Sports_celeb,@SteveNash,"1st #ShowdownNY! @ClaudioReyna took the lead. @Robbie9Fowler, Steve Mcmanaman came from Liverpool. @BaronDavis, J K… https://t.co/8GiqzOwvnD" +06/12/2018,Sports_celeb,@SteveNash,You know what? I just don’t need this abuse in my life... https://t.co/CtHxO7atEf +06/10/2018,Sports_celeb,@SteveNash,Who wants to mark this teenager @AlphonsoDavies ?? 👂🏼🤞🏽✌🏾👷🏼‍♂️💩 https://t.co/G0ZpooGu6j +06/10/2018,Sports_celeb,@SteveNash,💪🏽⚽️❤️ https://t.co/0eWaKOLVsh +06/08/2018,Sports_celeb,@SteveNash,"11th annual @brfootball x @SteveNashFdn Showdown, June 20th NYC. Get your tix here and get involved!… https://t.co/07VfUpGhlN" +06/08/2018,Sports_celeb,@SteveNash,Always amazed at the skills of some of #ShowdownNY’s bigs - @bismackbiyombo has feet! Don’t miss this year:… https://t.co/Z8mYYBBZ37 +06/02/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: We’re proud to welcome @MLSWORKS to #ShowdownNY on June 20th, and to be a part of the @MLS community, where everyone is w…" +06/01/2018,Sports_celeb,@SteveNash,🤔🧐 https://t.co/dvrDl2aSqU +05/31/2018,Sports_celeb,@SteveNash,"So much fun with @landondonovan and Ted Lasso - can’t wait to bring #ShowdownNY back! Get there, people:… https://t.co/GqK23FQ0qa" +05/29/2018,Sports_celeb,@SteveNash,"Started working last year when we were relegated.. learned from our mistakes, made a plan, got a ton of discipline… https://t.co/lSfiKGuU8r" +05/28/2018,Sports_celeb,@SteveNash,"Gracias, Rafa!! https://t.co/lLnuxdvCZ9" +05/28/2018,Sports_celeb,@SteveNash,"RT @kylemartino: What going from 3rd to 2nd division looks like in 🇪🇸 btw. + +❤️&⚽️ https://t.co/PjgSTzfUr5" +05/28/2018,Sports_celeb,@SteveNash,RT @stuholden: Vamos @RCD_Mallorca - scenes from Promotion parade in Palma via @manoloreina28 https://t.co/zvaMkRyNuY +05/27/2018,Sports_celeb,@SteveNash,Gracias Marco y felicidades por tu champions! https://t.co/gmiZeICnvQ +05/27/2018,Sports_celeb,@SteveNash,"Hire slow, fire fast. We’ll see how you do the rest of the trip. https://t.co/3sYa48o2iA" +05/25/2018,Sports_celeb,@SteveNash,I’m down! https://t.co/VWdUqBsciJ +05/24/2018,Sports_celeb,@SteveNash,. @lufthansa incredibly dissapointing. This will be our lasts flight together. +05/24/2018,Sports_celeb,@SteveNash,We talking bout practice???? https://t.co/i4ZuDMacp9 +05/21/2018,Sports_celeb,@SteveNash,Enjoying the last few minutes of Andres Iniesta‘s historic @FCBarcelona career. One of my all time favorites. Gra… https://t.co/9wQGjEWTIC +05/20/2018,Sports_celeb,@SteveNash,Our fans were incredible today! @RCD_Mallorca https://t.co/CREs3m9mgw +05/20/2018,Sports_celeb,@SteveNash,"@Jokowashere Good to know, thank you. See you in Miranda de Ebro!" +05/20/2018,Sports_celeb,@SteveNash,One more game for promotion! Proud of everyone who’s worked hard to put our club in this position. See you next wee… https://t.co/RtwpXDWeIY +05/20/2018,Sports_celeb,@SteveNash,Vamos! https://t.co/M8HeR94oJK +05/20/2018,Sports_celeb,@SteveNash,Well done fellas!! https://t.co/eOyqxY4JN4 +05/19/2018,Sports_celeb,@SteveNash,"RT @MarcHilberer: the number of school shootings that have happened since the year 2000 around the world: + +ENGLAND: 0 +GREECE: 1 +NETHERLAN…" +05/19/2018,Sports_celeb,@SteveNash,RT @SteveKerr: Over 75% of school shootings start with kids having access to unsecured and/or unsupervised guns at home. Gun owners have a… +05/17/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Love being #sponsoredbyLyft - thanks, @Lyft, for all you do! #greatassist https://t.co/Lk0ovfXRyQ" +05/17/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: We’re #springcleaning and making room in the locker room: all #ShowdownNY tees in our Make An Assist store now available… +05/16/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Coaches Ted Lasso and Beard couldn’t have been prouder of Steve and team at our 2016 Showdown - or could they? As we cou… +05/14/2018,Sports_celeb,@SteveNash,Dibs on a 2010? #assist #ShowdownNY https://t.co/IjhppDSFmF +05/13/2018,Sports_celeb,@SteveNash,@txbi_1 Zero guarantees any manager can win trophies especially when you consider spurs have a net spend of 400k pe… https://t.co/xxfPMqxoXE +05/13/2018,Sports_celeb,@SteveNash,Wouldn’t trade Pochettino for anyone... https://t.co/0EfoXkcsWI +05/13/2018,Sports_celeb,@SteveNash,👏👏🏽👏🏿 https://t.co/CkY0h8nrJg +05/13/2018,Sports_celeb,@SteveNash,Yes. #COYS +05/12/2018,Sports_celeb,@SteveNash,Felicidades! Excited for the playoff! https://t.co/wj31ce02C1 +05/10/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Alright, #CA - your turn! Register to vote today : @votedotorg (https://t.co/rtBb0zgzGo) has everything you need to get…" +05/10/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: With 6 wks to go til @BleacherReport presents #ShowdownNY, we’re counting down our top 6 #goal celebrations! This ‘10 mom…" +05/09/2018,Sports_celeb,@SteveNash,Had a mild stroke watching @SpursOfficial seal their champions league place today. Proud of my boys. #COYS ⚽️🏋🏿‍♂️💪🏽 +05/09/2018,Sports_celeb,@SteveNash,Our @SteveNashFdn #ShowdownNY is my El Classico + Wimbledon rolled into one - very excited to have the team… https://t.co/QXMWjB4Xo9 +05/09/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: It’s true! Excited to welcome @BleacherReport to #ShowdownNY! Tickets and info at https://t.co/dw39DlTYV1 - be there Ju… +05/06/2018,Sports_celeb,@SteveNash,Congratulations to all at our club for their efforts this season winning the league. Good luck preparing for the pr… https://t.co/aNGemdJFiO +05/03/2018,Sports_celeb,@SteveNash,Yes!! Go suns! https://t.co/1RSRTc5mqq +05/02/2018,Sports_celeb,@SteveNash,"Thank you, @Socceroof (and the team of Jonathan, JD, and @MearyJerome), for hosting our @stevenashfdn… https://t.co/MblJpk03a1" +05/01/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Just put a few of our leftover #CharityShield jerseys up for donation in the Make An Assist store - get yours today and g… +04/30/2018,Sports_celeb,@SteveNash,Get it Cap!!! https://t.co/cPlxiz3Mr2 +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: A big thank you to @thegemsaloonnyc @tableauwater @GuinnessUS @DrinkBODYARMOR @hotshotdrinks @greensplus and @HaloTopCrea… +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: So happy to have @NYCFC with us at the #CharityShield today @Socceroof! https://t.co/NcEId2h6ol +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Team Saanich with an opening match defeat by Rocinha but all is buzzing at the #CharityShield here at @socceroof! Thanks… +04/29/2018,Sports_celeb,@SteveNash,Quite a night last night - thank you to Guinness for hosting #CharityShield owners and players @thegemsaloonnyc and… https://t.co/fVlDhPbTWu +04/27/2018,Sports_celeb,@SteveNash,"Loved it! Luca, too. https://t.co/fGpmduAHIJ" +04/27/2018,Sports_celeb,@SteveNash,Kicking off a great weekend for soccer in the city tonight with the #CharityShield - keep it going: head to Yankee… https://t.co/kXax7aBB3G +04/27/2018,Sports_celeb,@SteveNash,I support @azedunited and these educators deserve proper support and funding from the AZ state legislature! https://t.co/Rv2x3MhiAI +04/26/2018,Sports_celeb,@SteveNash,Our kits are looking goooooood! Thanks to @Nike and @GuinnessUS for bringing three of my favourite things together… https://t.co/UL4g6u7X1X +04/25/2018,Sports_celeb,@SteveNash,"Come play soccer with me, @CharlieDavies9 @stuholden in NYC this Saturday April 28th. Sign up at… https://t.co/mMyjyc00Ut" +04/21/2018,Sports_celeb,@SteveNash,"Thanks to @thegemsaloonnyc for this! Looking forward to meeting the owners, and competing in our second… https://t.co/HvbxLV9xa4" +04/20/2018,Sports_celeb,@SteveNash,Can’t. Wait. Who’s on my team? https://t.co/6VTOcOPusx #CharityShield https://t.co/0ke3xMh2xI +04/19/2018,Sports_celeb,@SteveNash,I got a photo with the legend Ozzie! Watched him in awe as a little boy https://t.co/ICsANWAYBx +04/19/2018,Sports_celeb,@SteveNash,"Knowing Pop, it’s fair to assume Erin Popovich was an absolute legend. My deepest sympathies to Pop and his daughters." +04/13/2018,Sports_celeb,@SteveNash,"RT @SteveNash: My favourite pub for many reasons, including this one ⬇️: register to be there with us for the @SteveNashFdn #CharityShield…" +04/12/2018,Sports_celeb,@SteveNash,"My favourite pub for many reasons, including this one ⬇️: register to be there with us for the @SteveNashFdn… https://t.co/Xryi2LJTyj" +04/08/2018,Sports_celeb,@SteveNash,Vamos @RCD_Mallorca !! 3-1 https://t.co/PAOgCjzUcg +04/08/2018,Sports_celeb,@SteveNash,Sending all our love to these families and their community. So so sorry. https://t.co/NbjDbGoIVT +04/03/2018,Sports_celeb,@SteveNash,Congratulations to Hank and Danny Sedin on their historic careers. Thank you for being incredible role models to a… https://t.co/zT0oaZqECu +04/01/2018,Sports_celeb,@SteveNash,How good is Christian Eriksen?! +04/01/2018,Sports_celeb,@SteveNash,"Wow, thank you Mr Prime Minister! Oh Canada! 🇨🇦 https://t.co/5rul5309kg" +03/28/2018,Sports_celeb,@SteveNash,One month to go - let's do this! Sign up to have dinner with us and play some soccer in the city. . . .… https://t.co/LrEgrlOW31 +03/26/2018,Sports_celeb,@SteveNash,Can't wait. . . . https://t.co/l59yhVWxdZ +03/26/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Hey #AZ! Today is the last day to register to vote in the April 24th general election in #AZ08 - do it, and make your vo…" +03/25/2018,Sports_celeb,@SteveNash,"RT @Everytown: From Anchorage to Atlanta, yesterday millions of Americans marched for common-sense gun safety laws. In a few months, we'll…" +03/25/2018,Sports_celeb,@SteveNash,@TiagoEstv Obrigado! +03/24/2018,Sports_celeb,@SteveNash,@jasonlee1972a @pyle27 There is no sound argument to not wanting common sense gun laws. And there’s no common groun… https://t.co/uR1QnQdSzs +03/24/2018,Sports_celeb,@SteveNash,"@freemen_14 Yes, I’m pro choice. I don’t believe in mass shootings with semi automatic weapons." +03/24/2018,Sports_celeb,@SteveNash,"Watch Full Ep: https://t.co/PhZV7DOpwQ + +When shooting the basketball... something that is often overlooked, but pa… https://t.co/aPTZNbS0Hj" +03/24/2018,Sports_celeb,@SteveNash,I see you’ve really thought this through... https://t.co/LXUu1UqdCW +03/24/2018,Sports_celeb,@SteveNash,Already have and will again. https://t.co/Hsgaz3tMLF +03/24/2018,Sports_celeb,@SteveNash,. @marchforourlives @everytown Manhattan —> Hermosa Common sense gun laws #neveragain https://t.co/DYSFtowaOn +03/24/2018,Sports_celeb,@SteveNash,RT @kylemartino: Off to the train station to head down to DC & take a stand. Joining all the amazing people at #MarchForOurLives. #NeverAga… +03/24/2018,Sports_celeb,@SteveNash,RT @Dionsmusica: Heading to Washington D.C for the #MarchForOurLives with a group of students! Holla! #EnoughIsEnough #ChicagoStandUp #Stud… +03/24/2018,Sports_celeb,@SteveNash,RT @Everytown: NYC is getting ready to #MarchForOurLives. 💪 https://t.co/JHFxhkuR3J +03/24/2018,Sports_celeb,@SteveNash,I’m marching in LA today. Please find your nearest march and support this life and death matter. #NeverAgain https://t.co/CFMviwgUPu +03/22/2018,Sports_celeb,@SteveNash,👀 https://t.co/1p7BlGej37 +03/21/2018,Sports_celeb,@SteveNash,"Hyped for the 2nd annual @SteveNashFdn Charity Shield NYC April 27/28. Come play w/ me, @stuholden & win some doug… https://t.co/hDxHOnx212" +03/21/2018,Sports_celeb,@SteveNash,Can't wait: https://t.co/wU1q9rufiM +03/17/2018,Sports_celeb,@SteveNash,Had the honor of taking the post game selfie with our @RCD_Mallorca U18’s after their 2-1 win vs @RCDEspanyol VAM… https://t.co/Yk8BwOLRka +03/17/2018,Sports_celeb,@SteveNash,Can't wait for round 2! #CharityShield https://t.co/y87ZcIzBOn +03/16/2018,Sports_celeb,@SteveNash,❤️🖤 https://t.co/B5svvhObuU +03/16/2018,Sports_celeb,@SteveNash,Still buzzing from a great day at Hotspur way! Thank you @SpursOfficial #COYS https://t.co/l2fRSxQEQy +03/15/2018,Sports_celeb,@SteveNash,I mentioned that to him today https://t.co/ApanXwOh8f +03/15/2018,Sports_celeb,@SteveNash,Great time shooting this morning with my buddy @Robbie9Fowler. Not just a Liverpool legend but a fantastic fella! https://t.co/rSTD160A2d +03/14/2018,Sports_celeb,@SteveNash,Amazing day! https://t.co/mFJtKbGFza +03/14/2018,Sports_celeb,@SteveNash,Merci à toi! 💪🏼⚽️ https://t.co/RXZh2g9t08 +03/14/2018,Sports_celeb,@SteveNash,"Watch Full Ep 06: https://t.co/cvaTq7US9b + +We worked on creating space in order to take charge and put opponents i… https://t.co/jHFzHYr2Fo" +03/11/2018,Sports_celeb,@SteveNash,Amazing. I cried too.. https://t.co/q6FAxU9O0Q +03/11/2018,Sports_celeb,@SteveNash,Love me some Sonny! #COYS +03/11/2018,Sports_celeb,@SteveNash,"@hillimpact @SpursOfficial @Arsenal Your answer is even better than mine. My mum, Dad, grandparents, aunts, uncles,… https://t.co/Mlv5nckMLm" +03/11/2018,Sports_celeb,@SteveNash,Shin-Min Son!! +03/09/2018,Sports_celeb,@SteveNash,"@russbengtson @SteveFranchise3 What, travel? Sometimes." +03/09/2018,Sports_celeb,@SteveNash,@russbengtson @SteveFranchise3 May be hard to believe but he was a little more explosive than me +03/09/2018,Sports_celeb,@SteveNash,"So much bigger than basketball. Poverty, race, violence, addiction, loss. Amazing @SteveFranchise3 is still here a… https://t.co/CPMMZPAeAu" +03/08/2018,Sports_celeb,@SteveNash,@Cnyari @brfootball Thank you! +03/08/2018,Sports_celeb,@SteveNash,@HowardBeck Thanks! Gluten free? +03/08/2018,Sports_celeb,@SteveNash,@Nakerman Cheers! +03/08/2018,Sports_celeb,@SteveNash,@kylemartino Though I don’t have your touch and will never have your hair. Possible shift to radio? +03/08/2018,Sports_celeb,@SteveNash,RT @kylemartino: So pumped for my man @SteveNash. The man knows footy and boy can he play it too! Congrats brother. https://t.co/VclpoO12Uw +03/07/2018,Sports_celeb,@SteveNash,@gianluigibuffon .@gianluigibuffon grande Gigi. Buona Fortuna +03/07/2018,Sports_celeb,@SteveNash,@Jeongavic He scored off his shin though +03/07/2018,Sports_celeb,@SteveNash,Shin-Ming Son!!!!!!!!!!!!!!! #COYS +03/07/2018,Sports_celeb,@SteveNash,This is amazing! Except the let down part! Good luck Gigi. I hope Harry Kane shows you around London! https://t.co/YaL8zGIo3A +03/06/2018,Sports_celeb,@SteveNash,I signed the #MarchForOurLives petition. So proud and inspired by all these young people fighting for what they bel… https://t.co/NUS2XmAdwe +03/05/2018,Sports_celeb,@SteveNash,Had a blast on @PaulRabil ‘s podcast Suiting Up. Not only an incredible athlete but love his approach to media. Als… https://t.co/RFIjgzu4qi +03/05/2018,Sports_celeb,@SteveNash,Go Caps Go! Good start to the season with a 2-1 win over Montreal. 27k out to support. @WhitecapsFC +03/04/2018,Sports_celeb,@SteveNash,"Looking forward to today's @MLS @WhitecapsFC home opener at 3 o’clock PT, with our largest home opener crowd ever.… https://t.co/iig0g0i7gX" +03/03/2018,Sports_celeb,@SteveNash,Didn’t need my influence bro. #class #coys https://t.co/ISqoEWchBY +03/01/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: EPISODE 15: Link for the full conversation: https://t.co/CqSsj9qgBt + +This week we talk about @NBA All Star Weekend, basket…" +02/28/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Very excited to see @DICKS take such positive, powerful, accountable action. Thank you for helping to protect kids!" +02/28/2018,Sports_celeb,@SteveNash,RT @dannykanell: Pretty cool thing happened to me today... https://t.co/2cUDt04BwG +02/27/2018,Sports_celeb,@SteveNash,RT @DwyaneWade: This is Joaquin Oliver. He was one of the 17 young lives that were lost tragically at Douglas HighSchool in Parkland. Joaqu… +02/25/2018,Sports_celeb,@SteveNash,Kane #COYS +02/25/2018,Sports_celeb,@SteveNash,RT @Delta: Delta is reaching out to the NRA to let them know we will be ending their contract for discounted rates through our group travel… +02/25/2018,Sports_celeb,@SteveNash,You made us look good. Thanks @dmorey for having me. https://t.co/CWJdl5JMhg +02/23/2018,Sports_celeb,@SteveNash,"Vlog 7: https://t.co/DDQyfZQ4ZF + +My cousin Ezra is running the 2018 LA and Chicago Marathons for individuals with… https://t.co/Va1MbtOJD9" +02/23/2018,Sports_celeb,@SteveNash,"RT @KDTrey5: The Durant Center has been a dream of mine for a long time, excited to announce it's finally happening in Prince George's Coun…" +02/23/2018,Sports_celeb,@SteveNash,Love this guy. Keep fighting Bobby! https://t.co/rHUI6hvJ9d +02/22/2018,Sports_celeb,@SteveNash,I'm so inspired by the young people in America standing up for their future. I really believe it's our best chance… https://t.co/UbYmVmzESX +02/18/2018,Sports_celeb,@SteveNash,When the North London Derby comes to all star weekend https://t.co/TGPz7tfjBd +02/17/2018,Sports_celeb,@SteveNash,"For what, a week, a month, a year? Gun deaths in the uk are unheard of compared to our country. Saved countless li… https://t.co/0xE5qKs6TH" +02/17/2018,Sports_celeb,@SteveNash,@KingJames has changed the world for the better hundreds of times over. He’s a giver and a visionary who’s impactin… https://t.co/EmCW3snSbt +02/17/2018,Sports_celeb,@SteveNash,@KingJames has changed the world for the better hundreds of times over. He’s a giver and a visionary doing things e… https://t.co/XI6KtVjzDi +02/15/2018,Sports_celeb,@SteveNash,Stick to sports I know. Why not emulate the success of many countries limiting access to guns and save thousands of… https://t.co/t2q47TMzIl +02/15/2018,Sports_celeb,@SteveNash,"This is a brilliant argument. ‘You’re rich, so you’re wrong’. The probability of a good outcome when people have g… https://t.co/wsYKBwedzd" +02/15/2018,Sports_celeb,@SteveNash,The constitution is constantly being refined and changed. The gun lobby love to preach the good ‘ol constitution (v… https://t.co/XLDjpLDNCm +02/15/2018,Sports_celeb,@SteveNash,Good luck to you with that. The numbers say it’s more probable that something disastrous happens in your home then… https://t.co/v8b6nxro4c +02/15/2018,Sports_celeb,@SteveNash,Still waiting on a compelling argument for guns in America. Not one holds water. The brainwashing by those making m… https://t.co/mvot7MRkL3 +02/15/2018,Sports_celeb,@SteveNash,"Again, completely wrong. The rest of the world is having overwhelming success. What ‘innocent people’ people will… https://t.co/dS0FTQtLOk" +02/15/2018,Sports_celeb,@SteveNash,It is. It will save lives. When’s the last time someone had a gun in their home and it saved lives. I’ll wait... https://t.co/YUiZ5RzpLP +02/15/2018,Sports_celeb,@SteveNash,You’re kidding. Those numbers aren’t even in the neighborhood of American gun violence. https://t.co/Iu7zoZsQjc +02/15/2018,Sports_celeb,@SteveNash,RT @JasonKander: The leadership of the @NRA has an agenda and it ain’t got a damn thing to do with gun rights. It’s 100% about gun sales. T… +02/15/2018,Sports_celeb,@SteveNash,@caseyadamson These are not the facts. Someone please step in with real facts and stop the lies. +02/15/2018,Sports_celeb,@SteveNash,@udonomefoo @theekid13 Exactly. There’s also a culture that develops and grows with possibility and probability. Th… https://t.co/JrrhYArhEg +02/15/2018,Sports_celeb,@SteveNash,"But they’re not in other countries. Proof is in the numbers. Night and day, not even close. https://t.co/PG2f7w1jhU" +02/15/2018,Sports_celeb,@SteveNash,@citizensnip92 @Trojangabe92 Thank you. Mental illness is not an American problem it’s a human problem. Everywhere +02/15/2018,Sports_celeb,@SteveNash,RT @1adamm1: @SteveNash In Australia we had a buy back and a big tightening of laws. Has worked pretty well. Hard sell in the US unfortunat… +02/15/2018,Sports_celeb,@SteveNash,"@_Mementos_ @arrozcarlo @van_animals Let’s add hand guns, semi automatic, automatic etc etc" +02/15/2018,Sports_celeb,@SteveNash,@arrozcarlo @van_animals @_Mementos_ Come on +02/15/2018,Sports_celeb,@SteveNash,@van_animals @_Mementos_ And correct. Why create a new argument when the common sense one is plenty? +02/15/2018,Sports_celeb,@SteveNash,"@_Mementos_ Yes, tons. Let’s not compare issues. They’re not mutually exclusive. Both are wrong and terrible." +02/15/2018,Sports_celeb,@SteveNash,The rest of the world is having success prohibiting access to guns. I don’t see what the debate is about. It’s not… https://t.co/TByYy9w8e4 +02/14/2018,Sports_celeb,@SteveNash,My wife’s not on twitter so can I get away with asking mousa dembèlè to be my valentine? Pen pals may be more appropriate. #COYS +02/13/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Why we love supporting #KidsMove, #ProPlay and our other science-based programs to foster healthy, forward-facing athlete…" +02/12/2018,Sports_celeb,@SteveNash,I would appreciate it much more if they weren’t above @SpursOfficial in the table https://t.co/9zcISnRiqC +02/10/2018,Sports_celeb,@SteveNash,Ohh Mousa Dembèlè #COYS +02/08/2018,Sports_celeb,@SteveNash,Appreciate the love! Keep working https://t.co/F7PMksGfN1 +02/08/2018,Sports_celeb,@SteveNash,"Always fascinated by experienced, coaching lifers. Bob was great. https://t.co/Cl3XoJX0XK" +02/08/2018,Sports_celeb,@SteveNash,Thanks for all the love on my birfday! +02/08/2018,Sports_celeb,@SteveNash,44 👀 +02/07/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: Full conversation with Bob: https://t.co/LxH0YrW4CF + +Bob's currently the head coach of the @LAFC in the @MLS after coachin…" +02/05/2018,Sports_celeb,@SteveNash,"Full vid: https://t.co/eF9pdQmoMY + +A good shooter = technique + repetition + passion! https://t.co/oyMTHQDJII" +02/04/2018,Sports_celeb,@SteveNash,I need a drink. #COYS +02/01/2018,Sports_celeb,@SteveNash,"🎬https://t.co/7rFrpSDoEm + +A little message to be grateful for what we have & to have awareness of the #Mentalhealth… https://t.co/CrEWhc3eav" +01/31/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: It's #BellLetsTalk  day, people - share this @Bell_LetsTalk video and take time to share your compassion with those strug…" +01/30/2018,Sports_celeb,@SteveNash,Great screen by dirty kirty (Kurt Thomas). He’s too tough for Twitter btw https://t.co/GQ6iBVxXth +01/30/2018,Sports_celeb,@SteveNash,Its in the genes! https://t.co/oHsJLACT2R +01/28/2018,Sports_celeb,@SteveNash,"RT @FeRRanGiner: Que llueve, que hace viento , que es un campo complicado....pues este equipo se pone el mono de trabajo y lucha y compite…" +01/28/2018,Sports_celeb,@SteveNash,3 Big Points! Vamos! https://t.co/3Ueejl6dlK +01/26/2018,Sports_celeb,@SteveNash,"Watch full vid: https://t.co/jmoH174fHd + +Introducing @ChelseyGipson to #giveandgo, a talented player from #LMU with… https://t.co/Xt2RxC5R7s" +01/25/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: EPISODE 13: Full vid 👉🏻 https://t.co/34aBOgXoVZ + +We decided not to go live this one. We made it shorter and we hand picke…" +01/24/2018,Sports_celeb,@SteveNash,"EPISODE 5: In the gym... +https://t.co/SHNcshoCJk + +Staying in shape is crucial for me. The kid in me needs to play… https://t.co/FlyjD6maHc" +07/01/2018,Sports_celeb,@J_No24,"@hamp_big It’s sad that you only see the World through 1 microscopic lens, but 🤷🏽‍♂️ that’s ur issue. If I was to a… https://t.co/dTgEafRjPD" +07/01/2018,Sports_celeb,@J_No24,RT @DhaSickest: When they say video gaming is a huge distraction 😂🤷🏾‍♂️🤦🏾‍♂️ #fuckcancer https://t.co/OI04rC52pP +07/01/2018,Sports_celeb,@J_No24,"RT @EmilyGiangreco: Love having a guy like @DhaSickest in #DC + +The #NFL rookie raised over $21K for the Mary Bird Perkins Cancer Center in…" +06/30/2018,Sports_celeb,@J_No24,"RT @CCUChiefofStaff: Thank you, @J_No24. You make us proud! https://t.co/EPE9RDRpwC" +06/29/2018,Sports_celeb,@J_No24,Look who pop out of the blue 👀@SharnaBurgess 👀going LiVe on Sharna ig +06/29/2018,Sports_celeb,@J_No24,RT @DhaSickest: And again... if you beat my score you win $200🤷🏾‍♂️ https://t.co/8uQEVcjQQn +06/29/2018,Sports_celeb,@J_No24,RT @nrarmour: “It really doesn’t take a lot to be a good human.” I love everything about @ByMikeJones’ story on @J_No24 and @demario__davi… +06/28/2018,Sports_celeb,@J_No24,"RT @RAICESTEXAS: ”If you see wrong, you stand up and do something about it.” @demario__davis + +@J_No24 and @demario__davis are doing the wo…" +06/28/2018,Sports_celeb,@J_No24,RT @SNFonNBC: .@J_No24 & @demario__davis made a huge impact for kids in need this week. 🙌 https://t.co/1FZZZFFBF2 +06/28/2018,Sports_celeb,@J_No24,"@demario__davis What a grand day! Her spirit was on 1,000! ❤️her https://t.co/4owBwOvjk3" +06/28/2018,Sports_celeb,@J_No24,I did not start this. But I will help to end this. #livewell.dowell.by.others https://t.co/7sMGf8gwOU +06/28/2018,Sports_celeb,@J_No24,@barbagger Everyone matters.. would you like to help share your time an $ to the efforts of everyone you just named sir? +06/28/2018,Sports_celeb,@J_No24,RT @WillBlackmon: @CallinOutBullS Me and @J_No24 are homies! https://t.co/YmWtCqO4fa +06/27/2018,Sports_celeb,@J_No24,"RT @ByKimberleyA: Worlds colliding... + +#Redskins CB @J_No24 teamed up with former #Jets LB @demario__davis to make a 3a Walmart run in San…" +06/27/2018,Sports_celeb,@J_No24,RT @TishCarmona: @J_No24 is one of the best humans I know and it isn’t even close. He spent last night buying items for @RAICESTEXAS to hel… +06/27/2018,Sports_celeb,@J_No24,RT @SocialNetCynic: @RAICESTEXAS @demario__davis @J_No24 Those guys are doing the Lord's work! ❤️❤️❤️❤️ +06/27/2018,Sports_celeb,@J_No24,RT @httr1982: @J_No24 and another player I think just bought a whole damn kids section at Walmart and took care of a lot of needy Americans… +06/27/2018,Sports_celeb,@J_No24,"RT @demario__davis: I don’t care how much the world hates, i will always choose love. #BorderChildren https://t.co/JSWr37Nyhe" +06/27/2018,Sports_celeb,@J_No24,RT @RAICESTEXAS: We are so thrilled to have Pro Football Player @J_No24 volunteering with us today! We already put him to work assembling b… +06/26/2018,Sports_celeb,@J_No24,"RT @lucymatz: .@J_No24 is a natural interviewer! Really loving all of his on-point, entertaining, burning questions for @Blaney that are in…" +06/26/2018,Sports_celeb,@J_No24,MesSi ThE 🦁 That’s all gotta say abt that Haters Going to hate regardless. Best In The World. +06/24/2018,Sports_celeb,@J_No24,RT @KamChancellor: #ART https://t.co/xHrwuwD00a +06/23/2018,Sports_celeb,@J_No24,OMYGOSH😱 TOnYfreakKroOs!!!! WORLDCLASS ⚽️GOAL 😨😨 +06/23/2018,Sports_celeb,@J_No24,RT @SherrodMartin23: Everything Superb with @J_No24 #SherrodTheBarber at @SuperbGrooming https://t.co/snoRKNGEGZ +06/22/2018,Sports_celeb,@J_No24,🤣 dat da-blam Wilksy! 🤪😂 https://t.co/uWovOwH4dt +06/22/2018,Sports_celeb,@J_No24,"In Hott🔥Atlanta, what you think is abt to happen 👀 +A. Fresh cut +B. Shape up https://t.co/ZRowIAZyjQ" +06/19/2018,Sports_celeb,@J_No24,"E.N.T.R.E.P.R.E.N.E.U.R +Someone who's willing to sacrifice sleep, sanity, and savings to grow an idea, a dreamer ,… https://t.co/xUeYsicTIL" +06/18/2018,Sports_celeb,@J_No24,3 of the BEST!!! LuKAKu!!!⚽️⚽️⚽️ +06/18/2018,Sports_celeb,@J_No24,DE Bruyne what a Pass 😷 Sick!!! +06/17/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/AERH1ogmZV +06/16/2018,Sports_celeb,@J_No24,@TyeSmithCB How many L’sssss +06/16/2018,Sports_celeb,@J_No24,"I guess this IHOP* didn’t get the memo😒 +it’s #IHOB😡 +😂 https://t.co/fKEDo0qnMp" +06/15/2018,Sports_celeb,@J_No24,Filthy!!!!! +06/15/2018,Sports_celeb,@J_No24,That was Nasty!!!! Ronaldo Ronaldo Ronaldo!!! 3* of the BEST!!! Goallllll⚽️⚽️⚽️ +06/14/2018,Sports_celeb,@J_No24,I am honored to accept the 2018 Champion of Youth Award tonight from @BGCA_Clubs! There are so many ways you can he… https://t.co/OSTFIPSuUo +06/12/2018,Sports_celeb,@J_No24,I can think of a lot of B words to describe this but all I really want to know is... does this mean no more strawbe… https://t.co/n6CvMJ0e2Z +06/09/2018,Sports_celeb,@J_No24,Ok @DhaSickest Run it back Cavs in7!! 😆 +06/09/2018,Sports_celeb,@J_No24,Ok @iammsuzy run it back Cavs in 7!! 😂 +06/09/2018,Sports_celeb,@J_No24,https://t.co/rS3O4LJbv7 +06/09/2018,Sports_celeb,@J_No24,Right now these Warriors on #THANOS💪🏽Level. . GAWD! https://t.co/qtpOpq0ANN +06/08/2018,Sports_celeb,@J_No24,"The days may be long or challenging, but you gotta push forward and work towards your goals. Love what you do and s… https://t.co/8k461YdiBa" +06/08/2018,Sports_celeb,@J_No24,So AGAIN I say who’s going to the Caps parade!??? 😆 Darn one heck of a Job! Capitals 💯NHL🏆 +06/08/2018,Sports_celeb,@J_No24,RT @CO_MacGyver: The doctor is IN! @J_No24 https://t.co/wCZsDLaydF +06/07/2018,Sports_celeb,@J_No24,"Treasures of Sea 🌊 +Doctor👨🏽‍⚕️Norman is in Effect! @CCUChanticleers https://t.co/QxvlB5mfTK" +06/07/2018,Sports_celeb,@J_No24,RT @DhaSickest: Congrats brother @J_No24 💯💪🏾 +06/07/2018,Sports_celeb,@J_No24,Daurantchalla The 🧙🏾‍♂️Grim Reaper!!! +06/05/2018,Sports_celeb,@J_No24,"@Tparks98 @RapSheet 🤣😂 That is true, Nevermind 🤦🏽‍♂️" +06/05/2018,Sports_celeb,@J_No24,Who’s going to the parade for the Caps tho 👀 the way they played tonight.. #Electricfying⚡️⚡️ +06/05/2018,Sports_celeb,@J_No24,@RapSheet Why is this impeachment taking so Damn Long 😒 +06/05/2018,Sports_celeb,@J_No24,🦇🦇🦇 https://t.co/TI2kNhRSLf +06/04/2018,Sports_celeb,@J_No24,Thank you to everyone who came out for our @Redskins 5th annual White Attire Charity Party to benefit #BGCGW and… https://t.co/MS0q02oNjH +06/04/2018,Sports_celeb,@J_No24,StephCurRy = *Shooter of the Century* +06/04/2018,Sports_celeb,@J_No24,Game.Set.Match! +06/03/2018,Sports_celeb,@J_No24,RT @mzkellymac: Good seeing my SC peeps today in the #QueenCity HEY @J_No24 we miss U babe! https://t.co/WbR1wH14dk +06/02/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/kGcOT75orW +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA Somebody sounds Salty +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA I had 🕰 TODAY! Hah +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA Get off Twitter 💀😂 +06/01/2018,Sports_celeb,@J_No24,JR tho 🌾👀🌾 +05/31/2018,Sports_celeb,@J_No24,You talking about a #STICKSAVE!!! 😨😱🤯 +05/30/2018,Sports_celeb,@J_No24,@VernonDavis85 and I are bringing back the #WhiteParty this Sat to raise money for @Starz24org and #BGCGW at… https://t.co/mLhzPFUpxM +05/26/2018,Sports_celeb,@J_No24,First weekend in over a month.. #mood https://t.co/0wEPTXnXp0 +05/26/2018,Sports_celeb,@J_No24,"RT @30SECONDSTOMARS: Major props to @J_No24 + @SharnaBurgess for their incredible freestyle to #WalkOnWater on @DancingABC! 💃 🕺 #DWTS + +htt…" +05/25/2018,Sports_celeb,@J_No24,Catch me on @LenosGarage tonight at 10pm on CNBC. Spoiler alert 🚨 he doesn’t kill me. 🚘 https://t.co/CN0aF9b3Rj +05/24/2018,Sports_celeb,@J_No24,"RT @LenosGarage: The 1968 Shelby Mustang KR is NFL cornerback, @J_No24's dream car. + +Don't miss an all new episode of #JayLenosGarage TOMOR…" +05/23/2018,Sports_celeb,@J_No24,The last dance. Grateful for this experience and everything I learned from it. Thank you @SharnaBurgess @DancingABC… https://t.co/XFtdg1nPTV +05/22/2018,Sports_celeb,@J_No24,"Man, what a Night! That was fella’s and at the end of the day, it’s HTTR💯 #☝🏽 https://t.co/lalPxNuG0M" +05/22/2018,Sports_celeb,@J_No24,RT @Tspoon90: So glad we got to support our bro @J_No24 !!!! https://t.co/o3FERcH767 +05/22/2018,Sports_celeb,@J_No24,Confirmed 😜 https://t.co/A93O2iZFi6 +05/21/2018,Sports_celeb,@J_No24,There's only a 5 minute voting window tonight during he live show so make sure you tune in! @DancingABC… https://t.co/93i6TJn1bn +05/21/2018,Sports_celeb,@J_No24,There's only one chance to vote during tonight's finale so make sure you tune in and go to https://t.co/hC99xHx204… https://t.co/qyqchWmuDK +05/21/2018,Sports_celeb,@J_No24,THIS IS IT #GameTime @dancingabc @SharnaBurgess https://t.co/56vDOs5j74 +05/20/2018,Sports_celeb,@J_No24,Tomorrow! We're putting in work on this final dance. Hope you all tune in. #TeamBackThatPassUp @DancingABC https://t.co/pPi1xVOohz +05/19/2018,Sports_celeb,@J_No24,"I know you guys have been asking so going to give you a sneak peak of me and @SharnaBurgess , LIVE from my IG right now @Jno24" +05/18/2018,Sports_celeb,@J_No24,We got this @SharnaBurgess https://t.co/889SUvdWB8 +05/16/2018,Sports_celeb,@J_No24,"RT @httroundup: From @DancingABC to @EAMaddenNFL, @J_No24 can do it all! https://t.co/nLIPZIpwN2" +05/15/2018,Sports_celeb,@J_No24,😂👍🏽RT @QueenShar17: @annaoverload1 @SharnaBurgess @J_No24 Is that awful I’m paying people to vote?! Lol +05/15/2018,Sports_celeb,@J_No24,RT @QueenShar17: 558 votes plus two co-workers voting all afternoon (they get to leave an hour early for their trouble) for @SharnaBurgess… +05/15/2018,Sports_celeb,@J_No24,RT @merritt_4245: The #SharnaSquad voting for Josh and Sharna 😂❤️ Let's help them take home that mirrorball!… https://t.co/8DS0X1KSwR +05/15/2018,Sports_celeb,@J_No24,RT @SharnaSquad95: There's still time to vote for @SharnaBurgess and @J_No24! Please let's help get them that mirrorball! Here's the link t… +05/15/2018,Sports_celeb,@J_No24,We are so grateful to be in the finals. 🙏 Thank you to everyone who voted. The journey continues! If you haven’t vo… https://t.co/h3ek16tsdj +05/15/2018,Sports_celeb,@J_No24,👌🏾 https://t.co/zG1yV8cOHQ +05/15/2018,Sports_celeb,@J_No24,We made it to the finals but we still need your votes to take home the mirror ball! You can vote online until 8pm E… https://t.co/M3NxdsL0ns +05/15/2018,Sports_celeb,@J_No24,RT @DeAngeloHall23: To everyone who sent their love and wishes thank you but I haven’t retired. However I do think I’ve played my last foot… +05/15/2018,Sports_celeb,@J_No24,"RT @DancingABC: Our final Ballroom Battle: Salsa with @mazdzer and @WitneyCarson taking on @J_No24 and @SharnaBurgess! 🔥 + +https://t.co/Zw5l…" +05/15/2018,Sports_celeb,@J_No24,Voting is open https://t.co/XJDFRQPm56 #TeamBackThatPassUp 🙏🏾 Let's do this thing @DancingABC https://t.co/s5ViCee6kc +05/14/2018,Sports_celeb,@J_No24,There's going to be a LIVE vote during tonight's show. You'll have to watch to find out when! Use this link… https://t.co/7jWlfb0pyB +05/14/2018,Sports_celeb,@J_No24,Team back that pASS up @SharnaBurgess https://t.co/3UBdgDjYT2 +05/14/2018,Sports_celeb,@J_No24,@BGCA_Clubs @DancingABC 🙏🏾 +05/14/2018,Sports_celeb,@J_No24,Going live on @SharnaBurgess Instagram right now +05/14/2018,Sports_celeb,@J_No24,Tonight is going to be intense 😬 8pm on @DancingABC #TeamBackThatPassUp https://t.co/JPbRm5p7I6 +05/12/2018,Sports_celeb,@J_No24,well if shirtless is what it takes to Win the mirror ball then 🤷🏽‍♂️ shirtless is what you give the people. 😂… https://t.co/PZBQjBO2Pg +05/12/2018,Sports_celeb,@J_No24,"RT @ShaunOHara60: Fun show today @NFLTotalAccess +LBL with the #MicDrop!!! (Or IFB😱) +Thankful @J_No24 found his shirt😂 #WheresTheSmoke? h…" +05/12/2018,Sports_celeb,@J_No24,😊 https://t.co/QDPreCsrmj +05/11/2018,Sports_celeb,@J_No24,Recently my life has been about 2 things... football and dancing. Catch us tonight talking about both on NFL Total… https://t.co/R9jpwmstam +05/09/2018,Sports_celeb,@J_No24,"RT @ChaunceyCCU: Keep voting for my guy @J_No24!! I bet @SharnaBurgess is happy I taught him all those moves. + +https://t.co/a83aaIDqpV http…" +05/08/2018,Sports_celeb,@J_No24,There's still time to vote to help keep us in for the finale! https://t.co/AUvkFVLG88 #TeamBackThatPassUp https://t.co/LtUWWIUxEY +05/08/2018,Sports_celeb,@J_No24,Voting is open https://t.co/XJDFRR6XtG 🙏🏾 https://t.co/tsryTvaGQA +05/08/2018,Sports_celeb,@J_No24,RT @Redskins: Voting is now OPEN for Dancing with the Stars! Let's make sure @J_No24 & @SharnaBurgess keep dancing! #HTTR #BackThatPassUp… +05/08/2018,Sports_celeb,@J_No24,"RT @Redskins: You heard him, #Redskins Nation! Go tune in to @DancingABC and vote for #TeamBackThatPassUp! + +Vote: https://t.co/xXOqJL7mY9 h…" +05/08/2018,Sports_celeb,@J_No24,RT @Redskins: Behind the scenes at @DancingABC practice with @J_No24 & @SharnaBurgess! Visit https://t.co/xXOqJL7mY9 at 8pm to vote for the… +05/07/2018,Sports_celeb,@J_No24,Listen to my boy @ChuckLiddell. Vote for #TeamBackThatPassUp @DancingABC 🤛 https://t.co/GGjXGUWr5q +05/07/2018,Sports_celeb,@J_No24,"RT @WendyTStone: @J_No24 Hey Josh, can I get a shout out. I’m a teacher! I teach 6-8 grade PE! I’m also a big Skins fan! #HTTR" +05/03/2018,Sports_celeb,@J_No24,Hey @SharnaBurgess should we try a dance move like this? https://t.co/mUkPa5IiJn +05/02/2018,Sports_celeb,@J_No24,Going LIVE Now on @SharnaBurgess InstaG.!! You don’t wanna miss this.. +05/01/2018,Sports_celeb,@J_No24,RT @paul_chris27: Guess we ain’t taking off🙅🏼‍♂️✈️ @J_No24 https://t.co/EYkuKJO0xU +05/01/2018,Sports_celeb,@J_No24,"RT @Jeanine_Juliano: Words don’t even explain how PROUD I am! @J_No24 you never seize to amaze me, almost 3 years of working with you and I…" +05/01/2018,Sports_celeb,@J_No24,RT @KapriBibbs: I just voted for #TeamBackThatPassUp @J_No24 & @SharnaBurgess on @DancingABC! Vote for your favorites now! #DWTS https://t.… +05/01/2018,Sports_celeb,@J_No24,"RT @ElectrfyingNOW: Congratulations, to the gorgeous @SharnaBurgess & the styling @J_No24 on #DWTS (@DancingABC) preforming a SUPERIOR Cha…" +05/01/2018,Sports_celeb,@J_No24,"RT @DancingABC: A very fluid Cha Cha courtesy of @J_No24 and @SharnaBurgess! #TeamBackThatPassUp bring the finesse! +#DWTS: Athletes https:…" +05/01/2018,Sports_celeb,@J_No24,👊🏽 https://t.co/jbruoM61aG +05/01/2018,Sports_celeb,@J_No24,👊🏽 https://t.co/o1sWHoCKrn +05/01/2018,Sports_celeb,@J_No24,RT @TUoffTOz: Hahahaha the bro killed it @J_No24 y’all gotta go vote +05/01/2018,Sports_celeb,@J_No24,🤙🏽 https://t.co/3F4ez8cI4K +05/01/2018,Sports_celeb,@J_No24,RT @GMA: Just 100% finessed that ballroom floor! WOW! @sharnaburgess & Pro Bowl Cornerback @J_No24! @DancingABC #DWTS @NFL @RedSkins https:… +05/01/2018,Sports_celeb,@J_No24,"RT @HinchGalloway: Vote!!!!! #TeamBackThatPassUp @DancingABC @J_No24 +@SharnaBurgess +https://t.co/dFw6CKcklr" +05/01/2018,Sports_celeb,@J_No24,All these performances are INCREDIBLE competition is real #dwts +05/01/2018,Sports_celeb,@J_No24,"RT @Redskins: Get your @DancingABC vote in for @J_No24 & @SharnaBurgess AKA ""Team Back That Pass Up""! + +Vote: https://t.co/gEmLR58J5j https:…" +05/01/2018,Sports_celeb,@J_No24,The live voting link is now open. This determines who goes home tonight! #TeamBackThatPassUp… https://t.co/jaJ6hYafSC +04/30/2018,Sports_celeb,@J_No24,There’s Jonny!! LIVE in 5.. https://t.co/9e5bxKPdZK +04/30/2018,Sports_celeb,@J_No24,GAME TIME! Don't forget to vote! https://t.co/XJDFRQPm56 or call 1-800-868-3407 #TeamBackThatPassUp @DancingABC… https://t.co/RSIxzWvrux +04/30/2018,Sports_celeb,@J_No24,"RT @CoastalFootball: Support Josh Norman and Sharna Burgess on Dancing with the Stars Athletes, which premiers tonight (April 30) at 8 pm (…" +04/30/2018,Sports_celeb,@J_No24,Tonight's the night! 🕺🏽💃🏻 8pm @DancingABC #TeamBackThatPassUp @SharnaBurgess https://t.co/8iGukb6Hrm +04/28/2018,Sports_celeb,@J_No24,"@DhaSickest Welcome, young Gun. This is #HTTR Land! Looking forward to you helping us-@Redskins get Better💯" +04/27/2018,Sports_celeb,@J_No24,@jasonrmcintyre 🤦🏽‍♂️ how does your key card to @FS1 work everyday... 🤷🏽‍♂️ u cant make this up +04/27/2018,Sports_celeb,@J_No24,RT @Mason_Foster: “Take a donkey & a hoss to make a mule” @Anderson_365 we on now +04/27/2018,Sports_celeb,@J_No24,"Welcome, Welcome Big fella, #DaRonPayne! +Guess we got Roll-Dam🐘Tide all in D.C!" +04/27/2018,Sports_celeb,@J_No24,@Redskins 😬 +04/27/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/XbHsZzVfMS +04/27/2018,Sports_celeb,@J_No24,RT @ShaqThompson_7: Congrats @gregolsen88 https://t.co/fpyKLQ41mA +04/27/2018,Sports_celeb,@J_No24,RT @iammsuzy: Why we never jump on the people that wait til day of the draft to pull skeletons out the closet ? Yal real cowards for that.… +04/26/2018,Sports_celeb,@J_No24,#VintageLeBronJamesSalute` +04/25/2018,Sports_celeb,@J_No24,Who needs weights when you have @SharnaBurgess 💪🏾 https://t.co/MJpjWTFRBf +04/24/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: “The fight is won or lost far away from witnesses - behind the lines, in the gym, and out there on the road, long before…" +04/23/2018,Sports_celeb,@J_No24,RT @Redskins: .@J_No24 says 2018 is looking bright & promising as #Redskins defense focuses on discipline and attention to details. #HTTR h… +04/23/2018,Sports_celeb,@J_No24,WWW🤙🏽😜 https://t.co/rc2VBLy7bF +04/23/2018,Sports_celeb,@J_No24,RT @mgo_24: 2 years ago on this day the @Redskins made the bessssttt move of their entire organization in history and signed the best Corne… +04/23/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: Front row at the game, see if you can spot us ;) https://t.co/IzNBIeG4Vt" +04/23/2018,Sports_celeb,@J_No24,@WashWizards Let’s Go!!! It’s CrunchTime.. +04/23/2018,Sports_celeb,@J_No24,This Game is really Exciting!!! 😆 +04/21/2018,Sports_celeb,@J_No24,@ShaqThompson_7 Happy Bday Buddy! +04/21/2018,Sports_celeb,@J_No24,RT @CJLaBoy: Wishing @Panthers stud LB @ShaqThompson_7 a very Happy Birthday. https://t.co/18Bmz1H3iW +04/21/2018,Sports_celeb,@J_No24,Going LIVE on @SharnaBurgess iG in 20mins 7:30pm! Check us out! +04/21/2018,Sports_celeb,@J_No24,"https://t.co/CQIFgemM25 +“Rise & ☀️ which one are you Today!” +Hunter or Hunted" +04/20/2018,Sports_celeb,@J_No24,"🤣😭😭 YeA papi got me!🤦🏽‍♂️ + Next time it’s on!😆 https://t.co/bfTYzHpva4" +04/20/2018,Sports_celeb,@J_No24,😂🤣😭😭 got me again 🤦🏽‍♂️😂 https://t.co/GhHRqKBOs3 +04/20/2018,Sports_celeb,@J_No24,I 😍 this @SharnaBurgess https://t.co/MjMEjOjmJg +04/20/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: Girl you looks good, won't you back that pass up? 🏈💃🏻🕺🏾😆 + +You guys voted and the decisions made!!! You’re lookin at #Tea…" +04/20/2018,Sports_celeb,@J_No24,"https://t.co/hcRt6krz3V +Please tweet out “Way to take the lead @NYGovCuomo. Florida needs to follow suit” + -… https://t.co/B8B9odBDke" +04/18/2018,Sports_celeb,@J_No24,That side eye tho 👀 @SharnaBurgess https://t.co/kAeYPWbxoZ +04/18/2018,Sports_celeb,@J_No24,"Madden Bowl, who you got?! D.C. native @YoungDrini is my pick … Complete and submit a bracket for a chance to earn… https://t.co/yXUAkywjVl" +04/15/2018,Sports_celeb,@J_No24,"RT @TG3II: Gurley M.A.D.E was a Success. Thank you so much to everyone for making this possible. @ Tarboro,… https://t.co/V2FGvsZDUQ" +04/15/2018,Sports_celeb,@J_No24,"RT @stephen_alsop: @SharnaBurgess @J_No24 is the best , I met him in Charlotte, NC. I am rooting for you guys! https://t.co/4UPcVIIdyT" +04/15/2018,Sports_celeb,@J_No24,"RT @merritt_4245: So excited for this team! They're totally winning this mirrorball😍 + +I made up the #TeamTangosAndTouchdowns name and idk…" +04/15/2018,Sports_celeb,@J_No24,RT @sharnasquadxx: Wow oh wow I love my team so much 💞💞🤧💥 @SharnaBurgess @J_No24 https://t.co/B1Tu7PYpcy +04/15/2018,Sports_celeb,@J_No24,RT @AussieSharna21: @SharnaBurgess got it in slo mo😂😂 @J_No24 https://t.co/PJ5aqbOe7f +04/15/2018,Sports_celeb,@J_No24,@AussieSharna21 @SharnaBurgess 😂😂 +04/15/2018,Sports_celeb,@J_No24,@neilreynoldsnfl 🤨 +04/14/2018,Sports_celeb,@J_No24,Going LIVE! From @SharnaBurgess instaG! Right Now! +04/14/2018,Sports_celeb,@J_No24,"RT @Redskins: Get ready to see @J_No24 on @DancingABC this summer! + +📚: https://t.co/NW263d64Q9 https://t.co/apLbPLsrlp" +04/13/2018,Sports_celeb,@J_No24,https://t.co/H0S3G3zQZO ToooooO 😆😆@SharnaBurgess let’s get em 🐆Rawr!! Hahaha.. +04/13/2018,Sports_celeb,@J_No24,That’s my Partnah! Jaguar 🐆Rawrr!! 😆 https://t.co/hEHXUjYf7p +04/13/2018,Sports_celeb,@J_No24,"RT @merritt_4245: Welcome to the #SharnaSquad, Josh! @J_No24 + +We're always here to support you guys, and we'll be voting for you! + +Also j…" +04/13/2018,Sports_celeb,@J_No24,RT @dwtsem: Okay @SharnaBurgess i agree the reason @J_No24 is doing the show is everything 😭😭😭😭 #doitforthekids ❤️ +04/13/2018,Sports_celeb,@J_No24,RT @dee22ann: OMG 😂 @J_No24 !! ⛷ https://t.co/ztZuwCiCgD +04/13/2018,Sports_celeb,@J_No24,We are about to go LIVE!!! on @SharnaBurgess Instagram Right Now! +04/13/2018,Sports_celeb,@J_No24,ICE❄️COLD https://t.co/nASr3DoX9N +04/11/2018,Sports_celeb,@J_No24,"RT @MichaelGaskinSC: Had the great honor of meeting Josh Norman (@J_No24), athlete extraordinaire, at Saturday's annual #Starz24 celebrity…" +04/10/2018,Sports_celeb,@J_No24,RT @SpikesC2: James and I caught two shirts at @Norman_Starz24 basketball game Saturday. We decided to give them to two students who did th… +04/10/2018,Sports_celeb,@J_No24,"Thank you to @On_Decker and all of the sponsors, especially our presenting sponsor @MerrillEdge , all of the player… https://t.co/5QGMaq0Hon" +04/10/2018,Sports_celeb,@J_No24,"RT @Redskins: This past weekend @J_No24 hosted his annual @Norman_Starz24 basketball game back home in Greenwood, S.C. + +📚: https://t.co/a4h…" +04/09/2018,Sports_celeb,@J_No24,1000🔥🔥🔥 https://t.co/7JpE1tgcXy +04/08/2018,Sports_celeb,@J_No24,"RT @J_No24: Huge thank you to @MerrillEdge for being the title sponsor for my 6th annual celebrity basketball game! +#starz24 #merrilledge…" +04/07/2018,Sports_celeb,@J_No24,"Huge thank you to @MerrillEdge for being the title sponsor for my 6th annual celebrity basketball game! +#starz24… https://t.co/kgQCQ8C5GL" +04/07/2018,Sports_celeb,@J_No24,Caption this HA! 😎 @kk_mr93 https://t.co/UEntjwSQFh +04/06/2018,Sports_celeb,@J_No24,Hey 👀 out @Redskins fans! I’m coming to you live today on @NFLNetwork with @WillieMcGinest & @LindsayRhodes on… https://t.co/8E83t6v0jr +04/06/2018,Sports_celeb,@J_No24,"RT @BGCA_Clubs: Thank you, @J_No24 for your support and commitment to Puerto Rico and Club kids! #greatfutures https://t.co/l8HDA1nPtB" +04/05/2018,Sports_celeb,@J_No24,"RT @ToniKombucha: @undisputed @J_No24 J No as smooth as he is on the field deflecting balls and catching interceptions, he's even smoother…" +04/03/2018,Sports_celeb,@J_No24,@_willcompton hey buddy seemed like just yesterday we spoke about all this An look what end up coming your way.. go… https://t.co/YRI3hsE9Au +04/03/2018,Sports_celeb,@J_No24,"RT @_willcompton: #TitanUp 🍻 + +Can’t wait to get to work w my new teammates and coaches 🤙🏼 https://t.co/1n9TxCbTeA" +04/03/2018,Sports_celeb,@J_No24,💪🏽👊🏽 https://t.co/VmBzSgokBS +04/03/2018,Sports_celeb,@J_No24,RT @NFL: Former Redskins LB @_willcompton signing with @Titans: https://t.co/xAiD9QKt2D https://t.co/yMbkfoqjLv +04/02/2018,Sports_celeb,@J_No24,"Everybody Got going to the Redskins jokes today I see, how bout make them realistic😎and NOT #FAKE" +04/02/2018,Sports_celeb,@J_No24,😂😂 mines still was better! https://t.co/tHQtm99eUu +03/29/2018,Sports_celeb,@J_No24,@J_No24 its actually a track & Football field behind the gate ☠️ +03/29/2018,Sports_celeb,@J_No24,Working in the Darkness makes you Stronger💪🏽 when you step into the Light💯 https://t.co/sRc2UAZfil +03/28/2018,Sports_celeb,@J_No24,"@iammsuzy wateva I just saw your video put a shirt on an stop acting light skin. Oops my bad you are 🤷🏽‍♂️ +😂" +03/28/2018,Sports_celeb,@J_No24,"@iammsuzy Goodluck buddy, make the best of every opportunity you get now! Sucks we won’t get to strap up with one a… https://t.co/NuJWW4HO6F" +03/28/2018,Sports_celeb,@J_No24,"RT @NFL: 🚨 TRADE ALERT! 🚨 + +Su'a Cravens is heading to Denver: https://t.co/jH7nhQFp3x https://t.co/W5pSGNlkIn" +03/28/2018,Sports_celeb,@J_No24,"@Papi_snoop 5pm FIU track! +Nothin else needs be said." +03/28/2018,Sports_celeb,@J_No24,"@Papi_snoop 😏 are you in Miami, young gun.." +03/27/2018,Sports_celeb,@J_No24,🤘🏽 https://t.co/Kt5na2lOSk +03/26/2018,Sports_celeb,@J_No24,😆😆 boy you know a trip🤣🤣 https://t.co/dJdkXY0LXA +03/26/2018,Sports_celeb,@J_No24,@tlowry77 @D_BPhotography #facts +03/26/2018,Sports_celeb,@J_No24,@TG3II side bet we get the W +03/26/2018,Sports_celeb,@J_No24,@TG3II you ain’t got skills like that bo 😆 +03/23/2018,Sports_celeb,@J_No24,@c_mar23505 @JoeBiden @roughnrowdy @BarstoolBigCat @stoolpresidente it would be +03/23/2018,Sports_celeb,@J_No24,@mattdibu @JoeBiden ha ikr I wanna 👀it +03/23/2018,Sports_celeb,@J_No24,@c_mar23505 @JoeBiden @roughnrowdy @BarstoolBigCat @stoolpresidente hell I’ll call it for free 😆 +03/23/2018,Sports_celeb,@J_No24,@mattdibu @JoeBiden $ for your 4th generation grands show me urs +06/29/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Special, special thanks to @UtahGymnastics’ Tom Farden and @MSkinner2016 for chatting with me about @USAGym’s big meet bei…" +06/29/2018,Sports_celeb,@MSkinner2016,RT @OrianneW: Like you Mykayla ❤️❤️😍 @MSkinner2016 https://t.co/5NF1JjR37y +06/20/2018,Sports_celeb,@MSkinner2016,@alleelowe In Utah!! Wish I was there!😭 +06/15/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: I love that MyKayla’s bringing back the Ray! https://t.co/gyJZ4kU2FQ +06/07/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: Love the new video 😍😍😍 this is my favorite part @PengPengCLee // @MagsGotSwag12 @kyla_ross96 @MSkinner2016 @katelyn_oh… +05/28/2018,Sports_celeb,@MSkinner2016,RT @alleelowe: Like to switch it up every couple of months... this is the new one today 😍 whatta queen @MSkinner2016 https://t.co/qqWzngCWnQ +05/26/2018,Sports_celeb,@MSkinner2016,RT @CallisJustine: I will definitely never try this again but this was fun 🤷🏻‍♀️ https://t.co/qnPINdshCg +05/26/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Read all about our 2018 award winners that were announced at our team BBQ! #GoUtes https://t.co/q1mQ9pDobv +05/21/2018,Sports_celeb,@MSkinner2016,@PaytonDeNai0105 You are so welcome!! Glad you are okay! Love and miss you too❤️💋 +05/21/2018,Sports_celeb,@MSkinner2016,RT @PaytonDeNai0105: I miss and love @MSkinner2016 so so much!! Made my heart happy getting to chat with you earlier a little bit!! Hope t… +04/24/2018,Sports_celeb,@MSkinner2016,RT @MSkinner2016: Get ready to put your 🙌🏻 up cause tomorrow is 1st day of Nationals! https://t.co/dviOtqsfs7 +04/23/2018,Sports_celeb,@MSkinner2016,"RT @espnW: Sophomore Mykayla Skinner, second in all-around Friday, runs through her double-double somersault on the floor exercise as @Utah…" +04/23/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: Just have to casually remind everyone that this incredible gymnast has hit 110 out of 110 routines in her NCAA career! https… +04/22/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: @nicoleee_veee @foxybirdlady @MSkinner2016 She totally is!! I don’t know anyone nicer or more humble about her success. +04/22/2018,Sports_celeb,@MSkinner2016,"RT @elaynewharmer: @Holli_Alexa @MSkinner2016 She has super-human balance and grace. One of the commentators yesterday said, “MyKayla Skinn…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @marquy: @Holli_Alexa @UtahMarz @MSkinner2016 I think it’s amazing she’s done this 2 years straight and hasn’t missed it. https://t.co/e… +04/22/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: Let’s please acknowledge that @MSkinner2016 made it through another season without being close to falling. She’s believed… +04/22/2018,Sports_celeb,@MSkinner2016,RT @LauraMRutledge: These young women have made the little girls they once were proud. Tune in right now to @ESPNU to watch them compete fo… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: 🙌 Light the U 🙌 + +@UtahGymnastics' MyKayla Skinner scored a 9.9375 on vault, earning her a national title! https://t.co/WE…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The dreamers of the day are dangerous women... Let’s make it possible Red Rocks!!! #goutes https://t.co/2MfmjkeIAH +04/22/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: IT. ALL. COMES. DOWN. TO. THIS. MOMENT. The final countdown... #goutes https://t.co/5AVIpSg0e1 +04/22/2018,Sports_celeb,@MSkinner2016,RT @Pay1John: @MSkinner2016 Congratulations on being vault champion!! Proud of you Mykayla!! #GoUtes ❤️❤️❤️ +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Lindsey2593: Great Job @MSkinner2016 +So happy for you! https://t.co/OnKAG3NCzv" +04/22/2018,Sports_celeb,@MSkinner2016,RT @Lindsey2593: I love watching @MSkinner2016 gymnastics routines. Especially loved watching your floor routine! +04/22/2018,Sports_celeb,@MSkinner2016,RT @Carli379: Class act right there!!! @MSkinner2016 @UtahGymnastics https://t.co/tsPbzjJbhy +04/22/2018,Sports_celeb,@MSkinner2016,RT @sltribsports: Utah’s MyKayla Skinner discusses the team’s fifth-place finish at the Super Six finals in St. Louis. https://t.co/Yy7dyzJ… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Utah finishes the Super Six with 196.90, led by @MSkinner2016's 39.625 in the all-around." +04/22/2018,Sports_celeb,@MSkinner2016,RT @thom59020084: @MSkinner2016 showing tremendous grit on beam crushing the toughest dismount with her 9.925to keep @UtahGymnastics in 1st… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @VegasUte: Like so may others, I have run out of words to describe @MSkinner2016 as a competitor... What a warrior... so many times she…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @usamso: Nice 9.925 for @MSkinner2016 on beam to end @UtahGymnastics night. #NCAAGym +04/22/2018,Sports_celeb,@MSkinner2016,RT @trentdwood: The Red Rocks came out of the bye a completely different team and looked comfortable for the first time tonight. @MSkinner2… +04/22/2018,Sports_celeb,@MSkinner2016,RT @nicoleee_veee: Y’all @MSkinner2016 has totally surprised me. Her NCAA gymnastics is beyond what I expected & she seems like she’s growi… +04/22/2018,Sports_celeb,@MSkinner2016,RT @Nugget48: @MSkinner2016 A-M-A-Z-I-N-G floor routine! Great job! 🇺🇸 +04/22/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: After a slow start, @UtahGymnastics finished strong on floor thanks to @MSkinner2016's 9.925. Final team score on floor was…" +04/22/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: Sophomore @MSkinner2016 is Utah’s fourth national champion on vault, joining Elaine Alfano (1982, 1983, 1985), Megan Mc…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UUtah: Congrats, @MSkinner2016! She’s the first @UtahGymnastics vault NCAA champion since 1992! #GoUtes! https://t.co/xTC6TolN2y" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: By winning the NCAA vault title, @MSkinner2016 became the 1st Ute to win multiple individual national championships sin…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: Congrats to @MSkinner2016, who became Utah’s first national champion on vault since Kristen Kenoyer in 1992. #GoUtes #N…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to our 2018 NCAA All-Americans!!! Freshman @Sydney_soloski is All-American on the floor @Missypaigee in… +04/21/2018,Sports_celeb,@MSkinner2016,RT @Tater2Stock: .@MSkinner2016 is our Rock Star! https://t.co/j1Ly7p3Tww +04/21/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: And don’t forget AA runner-up! https://t.co/FuhvuC1wpa +04/21/2018,Sports_celeb,@MSkinner2016,RT @CanadianKen: @MSkinner2016 Congrats on your Vault title and placing second in the AA at Nationals! Sensational job!🥇🥈🙌Good luck to you… +04/21/2018,Sports_celeb,@MSkinner2016,RT @deimeke03: @UtahGymnastics @MSkinner2016 Congrats @MSkinner2016 on being an #NCAAGym All-Around runner up and vault National Champion!!… +04/21/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Celebrate with Utah's newest NCAA vault champion MyKayla Skinner! #goutes https://t.co/dIpTIT39cU +04/21/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Tonight Dreams Become Reality. Watch @UtahGymnastics compete in the National Championships this weekend on ESPNU #goutes… +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: That double twist, tho! + +@UtahGymnastics' MyKayla Skinner went all out on vault at the NCAA Gymnastics Championships. A…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: The Red Rocks advance to the Super-Six!!! Competing tomorrow will be Utah, Florida, Oklahoma, LSU, UCLA and Nebraska at…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: Utah’s MyKayla Skinner, now the co-national champ on vault, on her team advancing to the Super Six final Saturday night i…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: LIVE with @UtahGymnastics after advancing to the #SuperSix. + +Along with @StanfordWGym’s Elizabeth Price, who scored a 10…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @hostage2feeling: You and the girls rocked it tonight... can't wait to see you compete tomorrow! Congrats on winning the vault title and… +04/21/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: Led by @MSkinner2016, the Red Rocks rallied from a nervous start to clinch their 21st appearance in the Super Six on Satu…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: MEET DAY!!! +📆 NCAA Championships, Semifinal 2 +⌚️5️⃣pm MT +📍Chaifetz Arena, St. Louis, MO +📺 @ESPNU +🎥 5 camera free live…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @Flipz4daze: @MSkinner2016 good luck in the AA at nationals. #kicksomebutt +04/21/2018,Sports_celeb,@MSkinner2016,RT @Nugget48: @MSkinner2016 Amazing vault! Simply amazing! 👏👏👏 +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 flies high and sticks it to lead the Red Rocks to a 49.225 in the first rotation. + +VAULT +Missy Reinstadtle…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: ALLLLLL THE SCREAMS FOR @MSkinner2016 VAULT. 🔥👏🏻😍🔥👏🏻😍🔥👏🏻😍 +04/21/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: @MSkinner2016 just nailed a 9.9375 to finish the Utes vault rotation. Best vault by any gymnast on any team so far, morning…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Once again, @MSkinner2016 leads Utah to reel in a 49.3375 in its second event. + +BARS +Tiffani Lewis 9.85 🎯 +MaKenna Merrel…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: .@MSkinner2016 getting a 9.925 on bars. #slay #ncaagym MIND BLOWN what a great bar set. +04/21/2018,Sports_celeb,@MSkinner2016,RT @CarlaSueNeal: @MSkinner2016’s celebration is the best. So genuine and so happy! So fun to root for her! +04/21/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: @MSkinner2016 does it again, scores a 9.925 to rescue beam rotation. Red Rocks with a 49.1125 score. #NCAAGym" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: My fav part 😍 and how can you just not love her excitement. @MSkinner2016 🔥🔥 #ncaagym https://t.co/OnCpg18e0X +04/21/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: Your 2018 NCAA co-champion on vault is @MSkinner2016! https://t.co/Akahenuwmf +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 finished second in the all-around, tying her 💥 season-high of 39.725! 💥 + +1️⃣ Maggie Nichols 39.8125 +2️⃣ My…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @stk2mln: Congratulations @MSkinner2016 on an amazing AA performance and do your thing tomorrow! Go Fight Win!!!! +04/21/2018,Sports_celeb,@MSkinner2016,RT @jdartute: @MSkinner2016 co-wins the vault national title #UtahGymnastics https://t.co/awo3nwwm9n +04/21/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Congratulations @MSkinner2016 on a tremendous effort,39.7250 all-around,tied for the vault title,you never cease to ama…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to @MSkinner2016 for winning the silver medal in the all-around and for becoming a national champion on… +04/20/2018,Sports_celeb,@MSkinner2016,RT @GymSassy: Good luck this weekend @MSkinner2016! Thank you for being an inspiration to all us young gymnasts. You have become an amazing… +04/20/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @MSkinner2016 Go Myk! +04/20/2018,Sports_celeb,@MSkinner2016,RT @_brookieepoo_1: @MSkinner2016 you’re so freaking beautiful it’s not fair!!!😍😍 +04/20/2018,Sports_celeb,@MSkinner2016,RT @InsideGym: Hiii @MSkinner2016... the defending FX champ is in the hunt for gold in the all-around after earning silver last season. Sh… +04/20/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Hanging with @espn, nbd 🤷🏼‍♀️ https://t.co/88Ev6F7wDY" +04/20/2018,Sports_celeb,@MSkinner2016,RT @robr0013: #GoUtes https://t.co/NpyDy20Qvx +04/20/2018,Sports_celeb,@MSkinner2016,RT @801_Ute: Let’s gooooooooooo https://t.co/kSs44DRRSt +04/20/2018,Sports_celeb,@MSkinner2016,Get ready to put your 🙌🏻 up cause tomorrow is 1st day of Nationals! https://t.co/dviOtqsfs7 +04/20/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: “She’s honestly not human.” +“She’s just automatic.” +She is @UtahGymnastics star @MSkinner2016. +https://t.co/Gs6u7CWS6w ht…" +04/20/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: ✋ #NationalHighFiveDay brought to you by @MSkinner2016 and MaKenna Merrell-Giles ✋ https://t.co/BFVdMoDFfN +04/19/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: @MSkinner2016 is the one to watch at #NCAAGym this weekend! You won’t see a better floor routine anywhere. https://t.co/… +04/19/2018,Sports_celeb,@MSkinner2016,"RT @BrooksAD: #NCAAGym is going to be EPIC. + +In addition to @bartconner, @kathyjohnsongym & @LauraMRutledge calling the action on ESPN2 and…" +04/19/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Don’t miss @MSkinner2016 floor routine packed with difficulty and sass! +https://t.co/Zsaz4hfoMq" +04/19/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 made the list of ESPN’s top ✋ floor routines to watch at this weekend’s nationals. https://t.co/YozycfZa0P +04/19/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Fly in style and arrive at the NCAA Awards banquet in style... #goutes https://t.co/QneqDCAalX +04/17/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Our new @UUtah President @RuthVWatkins stopped by practice today to wish the Red Rocks good luck on their 43rd consecut… +04/16/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @AcademicsUtah @MSkinner2016 @UtahGymnastics So proud of you Myk! +04/15/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: I love new @MSkinner2016 hair 😍😍 is so perfect 😍😍😍 +04/14/2018,Sports_celeb,@MSkinner2016,RT @AcademicsUtah: Her grades are just as good as her flips! An all around champion gymnast and an all around champion student makes @MSkin… +04/10/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to Regional Bar Champion MyKayla Skinner for tying for first place on bars with a 9.9!!! She now has 33… +04/10/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to the Regional Floor Champions MyKayla Skinner & MaKenna Merrell-Giles for being part of a three-way t… +04/09/2018,Sports_celeb,@MSkinner2016,RT @UtahGymHistory: Sophomore @MSkinner2016 is the first Ute to win at least three events at an NCAA Regional in consecutive years since As… +04/08/2018,Sports_celeb,@MSkinner2016,"RT @alicialambert: Another impressive and amazing performance by @MSkinner2016 and @UtahGymnastics. 👏👏 Congratulations MyKayla, 1st AA and…" +04/08/2018,Sports_celeb,@MSkinner2016,Thank you!!! ❤️❤️❤️ https://t.co/G52RuwLWjT +04/08/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Just a casual 9.95 from MyKayla Skinner to end the @UtahGymnastics floor rotation! #goutes https://t.co/jDM3LKV4eI +04/08/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: The intensity is ramping up! One more rotation to go for @UtahGymnastics! #goutes #NCAAGym https://t.co/AZyMamDxR9 +04/08/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: Congrats and best of luck to our DLG alums competing in NCAA Regionals tomorrow 💜💜💜💜💜💜 https://t.co/8RQmOg3K70 +04/08/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The Red Rocks win Regionals and advance to the National Championship for the 43rd consecutive time with a score of 197.… +04/08/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner wins the Regional All-Around with a 39.65 and MaKenna Merrell-Giles places third with a 39.55!!! Congra… +04/08/2018,Sports_celeb,@MSkinner2016,RT @KylerJ56: Congrats Red Rocks for advancing to the NCAA Championships! And to @MSkinner2016! 😍😍😍 https://t.co/qAxXhePsY1 +04/08/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 swung her way to become the SLC regional bars co-champion. https://t.co/eutdtzlHrp +04/08/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 secures another all-around win (39.65)! https://t.co/obHFYCeC7z +04/08/2018,Sports_celeb,@MSkinner2016,RT @Lindsey2593: Congratulations to Utah and @MSkinner2016 for advancing to the NCAA semifinals! +04/08/2018,Sports_celeb,@MSkinner2016,"RT @BradfatherSpeak: and @Mskinner2016 is the @utahGymnastics' Red Rocks most prestigious star, amassing 39.650 individual points, en route…" +04/08/2018,Sports_celeb,@MSkinner2016,RT @JaneMarquardt: Way to go @MSkinner2016! 39.650 in the all around at NCAA Regionals! @UUtah #GoUtes +04/08/2018,Sports_celeb,@MSkinner2016,RT @GymSassy: Good luck @MSkinner2016 and the rest of @UtahGymnastics at regionals today!!! https://t.co/j0r83ycEva +04/06/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: You heard it first from @abc4utah but the Red Rocks are ready to rock Regionals! #GoUtes https://t.co/6kBkrRc6YL +04/06/2018,Sports_celeb,@MSkinner2016,RT @flashgurl: @UtahGymnastics @MSkinner2016 I love how everyone is a Mykayla Skinner fan now that she is making an impact at Utah. I have… +04/05/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: ""...then there is a rare kind of athlete, those whose impact behind the scenes is the equal of their incredible perform…" +04/05/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: This girl is amazing. @MSkinner2016 @foxybirdlady https://t.co/8QKjxI0M2C +04/04/2018,Sports_celeb,@MSkinner2016,RT @CatDaddy61015: @MSkinner2016 seeing you live is on my bucket list. Who needs Beyoncé when you have a double double like that 💁🏼‍♀️ +04/04/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: 👏👏👏 +@MSkinner2016 +🥇 https://t.co/CCdb6WJMEp" +04/04/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Congratulations to Kim Tessen, MaKenna Merrell-Giles, @MSkinner2016 and Missy Reinstadtler for making the 2018 All-Pac-…" +04/04/2018,Sports_celeb,@MSkinner2016,RT @CaraT_3: @sportsiren @UtahGymnastics @MSkinner2016 Outstanding Athlete who keeps showing how strong/talented she is!From an alternate i… +04/03/2018,Sports_celeb,@MSkinner2016,RT @NickForrester13: I interviewed @MSkinner2016 last year and was taken aback by her professionalism on and off the floor. Congrats on ano… +04/03/2018,Sports_celeb,@MSkinner2016,RT @tsquared314: So much fun to watch. Thanks for all your hard work! #redrocks @MSkinner2016 https://t.co/LxEZAKmfBP +04/03/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 leads Utah with 5️⃣ first-team All-Pac-12 awards. She’s the only gymnast in the conference to win first-tea… +04/03/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: DYK: MyKayla Skinner enters regionals competition as nation's No. 2 ranked all-arounder. She is one of only two gymnasts… +04/03/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: @MSkinner2016 congratulations !!! You're amazing https://t.co/Lapt0FoKf7 +04/03/2018,Sports_celeb,@MSkinner2016,"RT @deimeke03: @UtahGymnastics @MSkinner2016 Congrats @MSkinner2016 on your 2018 First Team All-Around, Vault, Floor, Beam and Bars All-PAC…" +04/03/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @UtahGymnastics @MSkinner2016 Congratulations MyKayla! +04/03/2018,Sports_celeb,@MSkinner2016,"RT @cadrzz: Yes! @MSkinner2016 is amazing! Thank you, Holly. https://t.co/cnd3odDrDl" +04/03/2018,Sports_celeb,@MSkinner2016,RT @sportsiren: This is the real Wonder Woman. Only athlete named 1st-team All-Pac 12 in EVERY single category including All-Around. What a… +03/30/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Congratulations to the Red Rocks that made the 2018 @pac12 Gymnastics All-Academic teams! Shannon, Maddy & MyKayla mad…" +03/28/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 and MaKenna Merrell-Giles for becoming 2018 regular season All-Americans!!! #GoUtes https… +03/28/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 and MaKenna Merrell-Giles have been honored as regular season All-Americans by the National Association of… +03/26/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The Red Rocks come in ranked #4 for the final regular season ranking of 2018! #GoUtes https://t.co/Vj14jss2kM +03/25/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Another unreal performance Myk @MSkinner2016 so clutch,everyone sees how much you want it and we love you for that,cong…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @Pay1John: @MSkinner2016 You were awesome last night!! Love your routines it was amazing!! You are my favorite gymnast for Utah Gymnasti… +03/25/2018,Sports_celeb,@MSkinner2016,RT @deimeke03: @UtahGymnastics Congrats @MSkinner2016 on your PAC-12 Championship All-Around and Floor titles!!! +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 defended her all-around and floor titles as Utah placed second in the Pac-12 championship. + +Recap and high…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Ute Gymnasts Take Second at Pac-12 Championship-MyKayla Skinner wins all-around and floor, Makenna Merrell-Giles wins v…" +03/25/2018,Sports_celeb,@MSkinner2016,@samanthapeszek @UtahGymnastics Thanks Sam!! You are so sweet! Love ya❤️ +03/25/2018,Sports_celeb,@MSkinner2016,RT @samanthapeszek: Thank you @UtahGymnastics for continually pushing our conference to be better. The stuck bar dismounts are to die for &… +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner closes the 2nd rotation on beam with a solid 9.9! #GoUtes #Pac12gym https://t.co/du4hsA1aSI +03/25/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Last up on bars, Mykayla Skinner hits a beautiful 9.925 to finish the first rotation! #GoUtes #Pac12gym https://t.co/Fk…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @utahathletics: MyKayla Skinner wins her 2nd Pac-12 all-around title, tying for first, and Utah places second at Pac-12 Championship. Sc…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Competition was fierce tonight at the Pac-12 Championship!!! The Red Rocks rallied at the end but it wasn’t enough to d… +03/25/2018,Sports_celeb,@MSkinner2016,RT @BrookeMThayer: Congratulations @MSkinner2016 it looks like you’ve had an incredible season!❤️ https://t.co/r0x0cfOOTo +03/25/2018,Sports_celeb,@MSkinner2016,RT @crosbygustafson: Queen 👑🔥 @MSkinner2016 https://t.co/Zek1eoo3we +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Sydney_Mieko: GET IT GURRRLLL!!! Every meet I’ve watched @MSkinner2016 I think... damn she’s good... like crazy, super-human good... ho…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner wraps up competition with a 9.9 on vault! #GoUtes #pac12gym https://t.co/iCrORLMcTW +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Pac-12 all-around champion ✅ +Pac-12 floor champion ✅ + +@MSkinner2016 ties for first in the all-around (39.675) and on flo…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @caraleones54: @UtahGymnastics @MSkinner2016 https://t.co/gZtfgVp3yt +03/25/2018,Sports_celeb,@MSkinner2016,RT @Pac12Network: An individual event title wasn't enough -- @MSkinner2016 also ties for the #Pac12Gym All-Around title. 🤸‍♀️ https://t.co/… +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 on tying for 1st place in the All-Around with a 39.675 and tying for 1st place on floor w… +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: None like her. 👑 + +@MSkinner2016's 9.950 ties for the highest score from today's #Pac12Gym Champs floor competition. https…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @fitzscott: Great vault from @MSkinner2016 - whoo! #GoUtes #RedRocksRule @UtahGymnastics +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Skinner is unstoppable on floor!!! #GoUtes #Pac12gym https://t.co/G0ZaG2zyvn +03/25/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: @MSkinner2016 +👇 +👏👏👏 https://t.co/sQhVdqG7WG" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: We’re halfway through the meet and @MSkinner2016 leads Utah to first place! + +Standings after rotation 2: + +1️⃣ Utah 98.55…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @JoyGaeraths: Three reasons why I drove to Tucson today: #3 - @MSkinner2016 and @UtahGymnastics, #2 - Elise Ray coaching @UWGymnastics,…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @Sydney_Mieko: Me after EVERY SINGLE ROUTINE by @MSkinner2016! Counting down the minutes to watch @UtahGymnastics put on a show in Sessi… +03/24/2018,Sports_celeb,@MSkinner2016,RT @Tater2Stock: Pac12 Gymnastics Championship meet today! Kick some butt #RedRocks and @MSkinner2016 ! +03/24/2018,Sports_celeb,@MSkinner2016,"RT @SpiniLisa: My collage addition to my previous tweet! Go Jos, Myk, Jess and Justine! Best of luck at PAC 12’s💜 https://t.co/IXTTRj0gZG" +03/24/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Practice Day #WIL https://t.co/p1SVShB0YO +03/23/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: The fun is just getting started as @UtahGymnastics enters postseason 🤸‍♀️🏆 + +In my latest, I dive into the Red Rocks’ minds…" +03/23/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “Throw us anywhere, and we are going to be fine, but we love starting on bars.” https://t.co/RXmRVGEShu" +03/22/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “Staying near the top is another goal that the Red Rocks are itching to keep. For now, they’ll try to achieve it by roc…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @RoundOffBlog: Our #NCAAGym Routines of the Week for Week 11! + +Vault - @MagsGotSwag12 +Bars - @sfinnegan37 +Beam - @MSkinner2016 +Floor…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @crosbygustafson: Lucky to have a friend like you, who loves what they do, works so hard, absolutely kills it, and is an incredible pers…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @Matthews_bay: you amaze me so much, i miss you❤️@MSkinner2016 https://t.co/UUfhvXhBi2" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @cynthia_cronin: @MSkinner2016 Love you so much, you were meant to do great things❤️❤️❤️" +03/21/2018,Sports_celeb,@MSkinner2016,Couldn’t have gotten this far without u! Love u Lisa!❤️ https://t.co/T7paji79cV +03/21/2018,Sports_celeb,@MSkinner2016,RT @O10Courtney: @MSkinner2016 is a great collegiate gymnast. She is tearing up the NCAA right now. She’s on fire 🔥 +03/21/2018,Sports_celeb,@MSkinner2016,"RT @cynthia_cronin: Crazy how this cute girl who sat by me in choir who was like my little buddy would become this great, you’re a beast @M…" +03/21/2018,Sports_celeb,@MSkinner2016,You’re the sweetest!! I miss u so much❤️😭 Thanks for always believing in me Cynthia! https://t.co/yPrfNXafad +03/21/2018,Sports_celeb,@MSkinner2016,RT @frankeyyyj: r u even real 🤔😍🙈 @MSkinner2016 https://t.co/6EzGC0JMhT +03/21/2018,Sports_celeb,@MSkinner2016,I hope so!!😂😘 https://t.co/Wa3DcvDOa7 +03/21/2018,Sports_celeb,@MSkinner2016,"RT @_jacobminer: when you show up to sophomore year NCAAs with double doubles, full-ins, double twisting yurchekos, and a beam double back…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: Week after week MyKayla Skinner makes it look easy! + +She is once again your #Pac12Gym Gymnast of the Week: https://t.co/1…" +03/21/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: So happy for you!!! 😍💖 @MSkinner2016 https://t.co/GIukSlZwtH +03/20/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 for finishing the regular season the same way you started it—as the @pac12 Gymnast of the… +03/20/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: For the fifth time this season and 12th time in her career, @MSkinner2016 is the Pac-12 Gymnast of the Week 🤸‍♀️ + +It’s the…" +03/19/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: U know who finished the regular season as the country’s No. 2 gymnast in the all-around? + +Hint: She’s also the Pac-12’s to…" +03/19/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: I'm in love with @MSkinner2016 skills 😍😍 she's one of the best gymnast 💖 +03/18/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “That was exactly what the doctor ordered,” Utah co-head coach Tom Farden said.” https://t.co/LgQFZVqQPG" +03/17/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: When you (or rather MaKenna Merrell-Giles and @MSkinner2016) both swing 9.925s to tie for first on bars. https://t.co/70Nm… +03/17/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner’s performance last night was a triple winner!!! She captured the all-around (39.725) and beam (9.95) an… +03/17/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Another brilliant all-around performance Myk congratulations and on thr team reaching 198,you guys have each others bac…" +03/17/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016’s 39.725 all-around win against Georgia is her 19th career all-around victory, moving her into sole possess…" +03/17/2018,Sports_celeb,@MSkinner2016,"RT @Carli379: I guess it took me finally getting there to cheer them on in person to hit that 198. Great job ladies, so much fun to watch!!…" +03/17/2018,Sports_celeb,@MSkinner2016,RT @JaneMarquardt: Another all-around win for @MSkinner2016! Have we told you lately how glad we are you chose @UUtah? #GoUtes https://t.c… +03/17/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “They all have something different that they bring to the team and their personalities bonded us, brought us closer tog…" +03/17/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: An emotional @MSkinner2016 is taking time to thank the seniors as Tiffani and Maddy are tearing up in the presser. +03/17/2018,Sports_celeb,@MSkinner2016,RT @BraedenRoss: @MSkinner2016 is the gymnastics GOAT😱 +03/17/2018,Sports_celeb,@MSkinner2016,RT @INK12: First time watching @MSkinner2016 on @ESPNU tonight. Amazing! #powerful +03/17/2018,Sports_celeb,@MSkinner2016,RT @Sydney_Mieko: @UtahGymnastics... Holy Sticks Batman!!! @MSkinner2016 is so BOSS tonight sticking EVERY SINGLE FREAKING LANDING!!! She’s… +03/17/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: BOOM. MyKayla Skinner closes the beam rotation with a 9.95! Live coverage of tonight's @UtahGymnastics meet continues on… +03/17/2018,Sports_celeb,@MSkinner2016,RT @thom59020084: Best beam routine ever for @MSkinner2016 tonight at the Huntsman. Just a beautiful performance. Standing O was sweet for… +03/15/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: The drum and feather leotard is a team favorite saved for senior night. @MSkinner2016 shared on Instagram that @UtahGymnas… +03/14/2018,Sports_celeb,@MSkinner2016,"RT @DeafITT08: Wow, that’s awesome landing, @MSkinner2016! https://t.co/r08zFm6m3E" +03/13/2018,Sports_celeb,@MSkinner2016,"RT @utahathletics: Live for the pressure. +This Friday, two of the top programs all-time in college gymnastics face off. You'll want to be t…" +03/12/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: If you haven’t been to a gymnastics meet, THIS IS THE ONE. Be there for the final home meet of the season Friday night…" +03/12/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 leaps 🆙 to the No. 3 all-around (39.665) spot in the nation. https://t.co/tAN6zNmSCv +03/11/2018,Sports_celeb,@MSkinner2016,"RT @bergs_bees: @MSkinner2016 was at the same stake conference I was at today and I was a little star struck, even from across the giant ro…" +03/11/2018,Sports_celeb,@MSkinner2016,You should’ve said hi!!!!❤️❤️❤️ https://t.co/sC8bm98LhE +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner hits a 9.9 bar routine bringing the Red Rocks score to a 49.325 after the first rotation leading the Wo… +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Mykayla Skinner’s 39.700 all-around score wasn’t enough to pull the Utes to victory. The #4 Red Rocks fall to the #7 Mi… +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner puts an exclamation point on it by NAILING her beam dismount scoring a 9.925! #GoUtes https://t.co/y8Jb… +03/11/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: ❤️❤️❤️ +@MSkinner2016 https://t.co/FjNs1GEPW8" +07/01/2018,Sports_celeb,@ShawnJohnson,"💩GROSS💩WHAT""S IN THE BOX CHALLENGE (LIVE ANIMALS) WITH REBECCA ZAMOLO AND MATT SLAYS|Shawn + Andrew: https://t.co/JseLEefQ87 via" +06/30/2018,Sports_celeb,@ShawnJohnson,"I have the sexiest, sweetest, and most thoughtful hubby in the world! It’s a week of celebration with the launch of… https://t.co/bb0T0DxICJ" +06/30/2018,Sports_celeb,@ShawnJohnson,RT @bobgoff: God often waits until we're out of ideas before He lets us know His plans. +06/29/2018,Sports_celeb,@ShawnJohnson,Hubby and I are back at it! On the road headed to South Dakota! CHALLENGE: Can you comment down below what state yo… https://t.co/67s5QHdoMj +06/28/2018,Sports_celeb,@ShawnJohnson,OUR EPISODE OF FAMILY FEUD! REACTION | Shawn Johnson: https://t.co/0gINSrRj7N via @YouTube +06/28/2018,Sports_celeb,@ShawnJohnson,It's a Postmates and La Scala kind of night 😎 #YassQueen +06/27/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeud: Olympic gold medalists @ShawnJohnson and @lzhernandez02 go head-to-head at the podium! Question is... What does @IAmSteveHa… +06/27/2018,Sports_celeb,@ShawnJohnson,💃🏼 channeling my inner emoji ❤️ comment down below the emoji that matches you today! #summer #instabeach #ootd https://t.co/0pTREe2TzU +06/25/2018,Sports_celeb,@ShawnJohnson,Soaking up some sun today with the hubs! HAPPY MONDAY! Comment down below where in the world you are today!… https://t.co/jBwbvqDzxd +06/24/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeudABC: Beaming with excitement for tonight's #CelebrityFamilyFeud! https://t.co/8BFl7MQXFy +06/24/2018,Sports_celeb,@ShawnJohnson,"RT @DancingABC: It's the battle of the #DWTS champions tonight! +@lzhernandez02 faces off against @ShawnJohnson on @FamilyFeudABC tonight…" +06/24/2018,Sports_celeb,@ShawnJohnson,RT @Chat0_wow: I can't wait to see @FamilyFeudABC tonight at 8pm #DWTS @ShawnJohnson @lzhernandez02 +06/24/2018,Sports_celeb,@ShawnJohnson,FAMILY FEUD FAILS REACTION | Shawn + Andrew: https://t.co/0tMCKV1ei8 via @YouTube +06/23/2018,Sports_celeb,@ShawnJohnson,Day 2 of the @reggiebush Champions For Kids Charity weekend! Let’s golf baby! Hahaha comment down below... do you l… https://t.co/x3nbBXJFeV +06/23/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeudABC: Basketball stars @StephenCurry30 & @CP3 and Gymnastic gold medalists @lzhernandez02 & @ShawnJohnson go head-to-head on S… +06/23/2018,Sports_celeb,@ShawnJohnson,RT @NastiaLiukin: #OlympicDay 💕❤️ one of my favorite moments from Beijing... @ShawnJohnson https://t.co/x0HFijAa7f +06/23/2018,Sports_celeb,@ShawnJohnson,Charity Gala with this hunk for @reggiebush @thebirthdaypartyproject #charity #championsforkids (P.S. thanks for ch… https://t.co/zyUcuXY93L +06/22/2018,Sports_celeb,@ShawnJohnson,"RT @USAGym: #OnThisDate ten years ago, @shawnjohnson and @nastialiukin became the first two members named to the 2008 Olympic Team! https:/…" +06/22/2018,Sports_celeb,@ShawnJohnson,"RT @iamsecond: Coming soon: Second Edition feat. Shawn Johnson East + +We caught up with @ShawnJohnson and her husband Andrew! Stay tuned!…" +06/22/2018,Sports_celeb,@ShawnJohnson,RT @s_bzak: So obsessed with @ShawnJohnson and her hubby!!!😭😭😭 Hope to have what they got someday cause it’s something real special☺️🧡🧡 htt… +06/22/2018,Sports_celeb,@ShawnJohnson,Ummm.... guess whose episode of @familyfeudabc airs this Sunday 👀 Comment down below who you think we went up again… https://t.co/hWuUWMYyDS +06/21/2018,Sports_celeb,@ShawnJohnson,When your husband puts you through the @nfl @jaguars conditioning test... 😭😵🤢 It also ends in a fire red freckle co… https://t.co/rwGfuizsc6 +06/21/2018,Sports_celeb,@ShawnJohnson,BEST FAILS OF THE YEAR REACTION! | Shawn + Andrew: https://t.co/qlmslBn5PG via @YouTube +06/20/2018,Sports_celeb,@ShawnJohnson,RT @thelukerodgers: @AndrewDEast @ShawnJohnson #HUNK ALERT. +06/20/2018,Sports_celeb,@ShawnJohnson,Hahahah when the beast gets a little too excited... caption this! Best captions will get a shoutout!… https://t.co/QW9fGaqLz7 +06/20/2018,Sports_celeb,@ShawnJohnson,😎+☀️=🤗 comment down below your favorite emoji for a perfect summer day! #couplegoals #summer #beach https://t.co/Q0WvxNP5ZH +06/18/2018,Sports_celeb,@ShawnJohnson,Fun day at the beach with the hubs and the beast 🐶👫 Double tap if you like the beach and comment down below what’s… https://t.co/Uh8FwDWI3u +06/18/2018,Sports_celeb,@ShawnJohnson,RT @HORPTyler: @lzhernandez02 and @ShawnJohnson on #CelebrityFamilyFeud next week. Is it bad that I want both of them to win?!?! +06/17/2018,Sports_celeb,@ShawnJohnson,MEET MY PARENTS!!! | Shawn Johnson: https://t.co/qv2hBRa6g9 via @YouTube +06/14/2018,Sports_celeb,@ShawnJohnson,GETTING A NEW DOG VLOG | Shawn + Andrew: https://t.co/ASEsUKwoTN via @YouTube +06/14/2018,Sports_celeb,@ShawnJohnson,RT @madddymcgowan: I love how skinny you feel first thing in the morning before you eat & then you eat a cheerio and it’s like helllllllloo… +06/14/2018,Sports_celeb,@ShawnJohnson,RT @jmattjmattjmatt: There is power in the name of Jesus +06/14/2018,Sports_celeb,@ShawnJohnson,RT @MoyaEthan: I need to find prince a new home since im moving and my dad wont keep him for me. It breaks my heart that i cant take him wi… +06/14/2018,Sports_celeb,@ShawnJohnson,RT @EmHum_: currently binge watching @ShawnJohnson and @AndrewDEast videos at 1:00 in the morning. greatest decision ever👍🏻❤️ https://t.co/… +06/13/2018,Sports_celeb,@ShawnJohnson,RT @rsmittay: @NastiaLiukin @ShawnJohnson @chuckwicksmusic @matt_lombardi @AndrewDEast Matt and Andrew look like they’re about to drop the… +06/12/2018,Sports_celeb,@ShawnJohnson,"RT @ABC_Publicity: New Release: NBA All-Stars @CP3 and @StephenCurry30 Compete Again, But This Time With Their Families; And Olympic Gymnas…" +06/12/2018,Sports_celeb,@ShawnJohnson,"RT @bobgoff: The more beauty we find in someone else's journey, the less we'll want to compare it to our own. +#EverybodyAlways" +06/12/2018,Sports_celeb,@ShawnJohnson,RT @kaleycraft: @NastiaLiukin @ShawnJohnson @chuckwicksmusic @matt_lombardi @AndrewDEast Y’all look like you’re about to drop the hottest a… +06/12/2018,Sports_celeb,@ShawnJohnson,Friend goals 😍 CHALLENGE who can comment FRIENDS letter by letter down below without getting interrupted?… https://t.co/ttYD1vm04M +06/11/2018,Sports_celeb,@ShawnJohnson,"RT @NastiaLiukin: I don’t think this picture quite captures the amount of fun, laughs, and just truly good times this weekend consisted of…" +06/11/2018,Sports_celeb,@ShawnJohnson,RT @anthemdirection: @ShawnJohnson @AndrewDEast your episode of cupcake wars came on lol https://t.co/7A8jbSUNdG +06/10/2018,Sports_celeb,@ShawnJohnson,proposalreaction: https://t.co/2A24azws1Z via @YouTube +06/10/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: First date weekend with @shawnjohnson , first time we danced and the last time I was rocking hair this wild #fiveyears #an…" +06/08/2018,Sports_celeb,@ShawnJohnson,5 years ago today this hot nerd swept me off my feet at the #CMAFest while on our first date hahah now he’s stuck w… https://t.co/9b5daziNS0 +06/08/2018,Sports_celeb,@ShawnJohnson,RT @Mattieemonday: @AndrewDEast @ShawnJohnson The booty call had me like https://t.co/x9CxPU4cS8 +06/07/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS SAVES REACTIONS! | Shawn Johnson: https://t.co/V7NKH1nh7O via @YouTube +06/07/2018,Sports_celeb,@ShawnJohnson,Just wow. How many survivors does it take to make people “believe”. Like WTF. Simone... agreed. amen. https://t.co/4pnPkBfHCT +06/07/2018,Sports_celeb,@ShawnJohnson,Let’s do this summer! https://t.co/ckMIRZemF7 +06/07/2018,Sports_celeb,@ShawnJohnson,RT @Carleen1991: Okay I have fallen in love with watching @ShawnJohnson & @AndrewDEast Videos on youtube... they are so adorable!!! +06/07/2018,Sports_celeb,@ShawnJohnson,RT @JRMediaStar: @AndrewDEast & @ShawnJohnson crack me up on their Instagram stories watching #TheBacheloretteِ 😂 #icanthandlethisrightnow +06/07/2018,Sports_celeb,@ShawnJohnson,RT @JenSwirsky: Guys. I cried. It’s @ShawnJohnson. Goodbye world. My job here is done. https://t.co/6YHus7Icrv +06/06/2018,Sports_celeb,@ShawnJohnson,"About last night.... ya, that was pretty cool 😎 haha double tap if you like country music and comment down below wh… https://t.co/eUv7diQIfg" +06/06/2018,Sports_celeb,@ShawnJohnson,Here at Backroads Country Music Event with @pandora and @kingsford ! So freaking excited can’t wait to interview th… https://t.co/cpl3L1nn9s +06/05/2018,Sports_celeb,@ShawnJohnson,It’s summertime.... bring on the freckles! #summertime #pool #beach #nomakeup #freckles https://t.co/ouRmtUBSCp +06/04/2018,Sports_celeb,@ShawnJohnson,I’ve got exclusive access to the @PandoraMusic Backroads event and I can’t wait to share it with you!!! I’ll be sha… https://t.co/ScHa9oSLNV +06/04/2018,Sports_celeb,@ShawnJohnson,One happy family 👙🐶☀️ #summertime #couplegoals #puppies https://t.co/zuZ4QEnzjZ +06/04/2018,Sports_celeb,@ShawnJohnson,RT @sliebers12: 6 years ago today @ShawnJohnson announced her retirement from gymnastics. #blessed she’s still the best role model ever +06/03/2018,Sports_celeb,@ShawnJohnson,GIANT GUMMY VS. REAL FOOD CHALLENGE | Shawn + Andrew: https://t.co/j6jyz1Jmn4 via @YouTube +06/01/2018,Sports_celeb,@ShawnJohnson,EPIC WAFFLE CHALLENGE! | Shawn + Andrew: https://t.co/LYv1oISvMk via @YouTube +05/31/2018,Sports_celeb,@ShawnJohnson,MOOD! I freaking love thursdays! Comment down below where in the world you are today! I’m in TENNESSEE! #thursday… https://t.co/SbGIwIG2AQ +05/31/2018,Sports_celeb,@ShawnJohnson,"RT @bobgoff: Live your life like you're exactly who God says you are. +You're His beloved. +Quit acting like you've got to earn it. +#Everyb…" +05/31/2018,Sports_celeb,@ShawnJohnson,RT @Simone_Biles: I LOVE SLEEP +05/28/2018,Sports_celeb,@ShawnJohnson,RT @VanderbiltU: Remembering our nation's fallen heroes and their families on this #MemorialDay. https://t.co/0BYqr4wjLg +05/28/2018,Sports_celeb,@ShawnJohnson,RT @ACLrecoveryCLUB: I disagree...my knee always reminds me that it’s raining outside! https://t.co/v2FSkUiZf8 +05/28/2018,Sports_celeb,@ShawnJohnson,RT @NastiaLiukin: Hahahaha. This is legit me and you @ShawnJohnson... pretty much all apply 😂😂 https://t.co/BnlVEiCsan +05/28/2018,Sports_celeb,@ShawnJohnson,Murphy... I feel ya. That 4am alarm is hitting me hard. I think I might just go to bed now. #strugglebus https://t.co/2lp0ctI5ca +05/27/2018,Sports_celeb,@ShawnJohnson,"RT @kenzie_gora: LADIES imagine: +It’s 15 years from now. Youve been planning this dinner for 2 months. Your husband asks where his supersui…" +05/27/2018,Sports_celeb,@ShawnJohnson,CALLING ALL GYMNASTS... this one is for you! I have been getting a lot of requests lately for nutrition tips that a… https://t.co/AwKSrdt8WQ +05/27/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS HEALTH TIPS WITH Dr. Axe | Shawn Johnson: https://t.co/QaYthIGfr4 via @YouTube +05/27/2018,Sports_celeb,@ShawnJohnson,Hey @andrewdeast I think you is supa cute #thathandplacementthough #couplegoals #marriage #missyou TAG your crush b… https://t.co/jfKnrxtVO3 +05/26/2018,Sports_celeb,@ShawnJohnson,The embarrassment you feel when you get a pedicure and you still haven’t excepted that it’s shorts weather and you… https://t.co/pvzA6iRMbS +05/25/2018,Sports_celeb,@ShawnJohnson,RT @samanthapeszek: I’d like to hear more about this “athlete task force” that @KerryJPerry talked about today at the congressional hearing… +05/24/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS FAILS REACTIONS | Shawn Johnson: https://t.co/eqd8ff5HVl via @YouTube +05/22/2018,Sports_celeb,@ShawnJohnson,Need new YouTube video ideas! What should we do! +05/19/2018,Sports_celeb,@ShawnJohnson,I’ll admit... sometimes we fall short with our priorities and put too much weight on work while everything else fal… https://t.co/6IhMFXvgTh +05/19/2018,Sports_celeb,@ShawnJohnson,Ok... who else is tuning in today to the #royalwedding on @goodmorningamerica 👀 I may or may not be GEEKING OUT! Th… https://t.co/NisuHBvfX0 +05/19/2018,Sports_celeb,@ShawnJohnson,ROYAL WEDDING ADVICE | Shawn and Andrew: https://t.co/XEOAt5ogUp via @YouTube +05/18/2018,Sports_celeb,@ShawnJohnson,#Datenight with my best friend @andrewdeast #couplegoals #marriage https://t.co/lU9876f2LQ +05/17/2018,Sports_celeb,@ShawnJohnson,GET TO KNOW REBECCA ZAMOLO + MATT SLAYS | Shawn Johnson: https://t.co/B11pZc8QzP via @YouTube +05/16/2018,Sports_celeb,@ShawnJohnson,Oh hey cutie 😎🤓 comment down below your favorite summer time emoji for a like! #summer #couplegoals #stagecoach https://t.co/LeD68KThFW +05/13/2018,Sports_celeb,@ShawnJohnson,#happymothersday to the strongest woman I know! I love you to the moon and back! 💕 https://t.co/gIBg3lgWoP +05/11/2018,Sports_celeb,@ShawnJohnson,#TBT to our sexy slash awkward slash giggle fest engagement shoot #sosensual #marriage #couplegoals #weweird 📸… https://t.co/vUXNuuPX4h +05/10/2018,Sports_celeb,@ShawnJohnson,SUMMER FESTIVAL GET READY WITH ME | Shawn Johnson: https://t.co/dpF4eqflzv via @YouTube +05/10/2018,Sports_celeb,@ShawnJohnson,A true #tbt 🤷🏼‍♀️🤓😊 hahah baby me tag me in a picture of you as a kid!!! https://t.co/GQy2EZxfHI +05/09/2018,Sports_celeb,@ShawnJohnson,RT @dangjasminee: Its been TWO full weeks 😭 here’s a video edit of what Playlist is like!!! ft some clips of @ShawnJohnson @99_goonsquad @A… +05/08/2018,Sports_celeb,@ShawnJohnson,To all of my fellow short peeps out there... Happy Tuesday! Comment down below how tall you are! Me? I’m 4’11 🤓and… https://t.co/LV9E53HfCN +05/06/2018,Sports_celeb,@ShawnJohnson,RT @Ginge1129: @ShawnJohnson - I can’t WAIT to see #fyt come to fruition for you! 😍 #findyourtruth +05/06/2018,Sports_celeb,@ShawnJohnson,RT @AmandaKBorden: The outtakes are always the best 😂😂😂 Take number 27.... @samanthapeszek @ShawnJohnson https://t.co/QjBxIlDYOj +05/06/2018,Sports_celeb,@ShawnJohnson,Happy Sunday! Comment down below where in the world you are today! #marriage #couplegoals https://t.co/RYdKf5uwbx +05/05/2018,Sports_celeb,@ShawnJohnson,OUR FIRST MEET UP! | Shawn + Andrew: https://t.co/xXZHPVRDiV via @YouTube +05/03/2018,Sports_celeb,@ShawnJohnson,STAGECOACH SUMMER FESTIVAL! | Shawn and Andrew: https://t.co/jUwyT5Dwet via @YouTube +05/01/2018,Sports_celeb,@ShawnJohnson,I love you ladies! So freaking much! @annieleblanc @rebeccazamolo #playlistlive 📸 @dawnkingston https://t.co/fEBdVkOhB7 +04/30/2018,Sports_celeb,@ShawnJohnson,Yep... we were that couple that chose to be nerds and match #denimjacket #denimduo #couplegoals https://t.co/PpsqK1EdRM +04/29/2018,Sports_celeb,@ShawnJohnson,From @stagecoach to @playlistlive 🤓😊We made it baby! Let’s do this! #playlist #stagecoach #playlistlive COMMENT dow… https://t.co/stmaTTHxDp +04/29/2018,Sports_celeb,@ShawnJohnson,Crazy awesome experience these last two days with @esteelauder and @stagecoach and thank you cheesus for… https://t.co/cAQqpLJ5b4 +04/28/2018,Sports_celeb,@ShawnJohnson,Come hang out with me and @AndrewDEast at the Estee Lauder tent of you're at #Stagecoach2018 ! +04/28/2018,Sports_celeb,@ShawnJohnson,WE TRAINED LIKE BODYBUILDERS FOR 30 DAYS | Shawn and Andrew: https://t.co/90iemFLy9D via @YouTube +04/28/2018,Sports_celeb,@ShawnJohnson,CRAZY AWESOME first day with @esteelauder at @stagecoach I’m in country two stepping heaven #esteepartner… https://t.co/X4GjRFML3l +04/27/2018,Sports_celeb,@ShawnJohnson,Getting all glammed up and ready to rock the boots with @esteelauder at #Stagecoach this weekend! Got the long hair… https://t.co/dzbY5ZSiWG +04/27/2018,Sports_celeb,@ShawnJohnson,"RT @iclasspro: We are inspired by our friend, @ShawnJohnson. iClassPro - Made by pros, for pros, just like you. https://t.co/OWt05wBNfk" +04/27/2018,Sports_celeb,@ShawnJohnson,RT @KENTSIMMONS: @ShawnJohnson you brighten my day at Hyvee while I get my sushi for dinner! https://t.co/YFCDTw3nMw +04/27/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: There are four things to take note of in this picture: 1) how awesome this mural is 2) how beautiful @shawnjohnson is 3) h… +04/27/2018,Sports_celeb,@ShawnJohnson,Yup.... lens cap still on 🤦🏼‍♀️ I’m obviously a great photographer 😂 thanks babe for the heads up @andrewdeast… https://t.co/1AHILWFPsu +04/26/2018,Sports_celeb,@ShawnJohnson,Got to visit the coolest mural today on Melrose with #windex and play around like a professional graffiti artist 😜… https://t.co/pfMbT4y5aH +04/26/2018,Sports_celeb,@ShawnJohnson,Third Wheeling with Country Music Star Chuck Wicks! | Shawn + Andrew: https://t.co/SLf16Q7Gpj via @YouTube +04/25/2018,Sports_celeb,@ShawnJohnson,"RT @StephCatalioto: Omg @ShawnJohnson liked my photo , she has been my idol since I was a little baby in gymnastics, I am screaming with jo…" +04/25/2018,Sports_celeb,@ShawnJohnson,Cheese ball city but I can’t help it 🤓😜😘😊 Tag me in a picture of you with your bestie or favorite person for a foll… https://t.co/7yiUionSRh +04/24/2018,Sports_celeb,@ShawnJohnson,Fricken love NYC 🍎 have you guys ever been?! #nyc #couplegoals #bigapple https://t.co/B5WqL2I0Cf +04/24/2018,Sports_celeb,@ShawnJohnson,"✌🏻It’s an early morning, early workout, day full of work kind of day in the big 🍏!! Duh... I got my ☕️ 😜… https://t.co/IyMVQCxAQi" +04/23/2018,Sports_celeb,@ShawnJohnson,New profile pic posted! Happy Monday! See if you can comment M•O•N•D•A•Y letter by letter without being interrupted… https://t.co/NGoGzV0d0E +04/22/2018,Sports_celeb,@ShawnJohnson,We have a CRAZY announcement for you guys! #BostonMarathon https://t.co/ses5vC0AZ0 +04/22/2018,Sports_celeb,@ShawnJohnson,Sunday Funday 🤓 #sundayfunday #couplegoals #marriage comment down below what you’re doing today! https://t.co/vx2W1KWGRE +04/21/2018,Sports_celeb,@ShawnJohnson,get a roommmmm haha 🤷🏼‍♀️🤓🤦🏼‍♀️ #couplegoals https://t.co/Ar1cUB4o5z +04/20/2018,Sports_celeb,@ShawnJohnson,Friday feels 🤓❤️😘 #friyay #fridaynight #ootd https://t.co/xnEXGrHfId +04/19/2018,Sports_celeb,@ShawnJohnson,#TBT to where it all began 2013 🤓 #firstdate #cmafest #couplegoals @andrewdeast https://t.co/srHzThSE4j +04/18/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: Did you catch @shawnjohnson and I on @picklerandben this morning?! If not you can check it out online! #firstshow #cbs htt… +04/17/2018,Sports_celeb,@ShawnJohnson,So ladies and gents... thanks to the greatest partner ever @clifbar I guess the hubs and I will be running the… https://t.co/6WZd0vt6vJ +04/16/2018,Sports_celeb,@ShawnJohnson,Yep😂 https://t.co/KxTcDVseE0 +04/16/2018,Sports_celeb,@ShawnJohnson,RT @lindsayb489: Happy 2nd Anniversary @ShawnJohnson and @AndrewDEast! Thank you for making me laugh. Hope you guys have a beautiful day.💗… +04/16/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: I want everyone to meet you. You’re my favorite person of all time @shawnjohnson . Happy 2 year #anniversary https://t.co/… +04/16/2018,Sports_celeb,@ShawnJohnson,2 years already?! I can’t believe how fast it’s flown but it’s seriously brent he greatest two years of my life!… https://t.co/5N5rlie42R +04/15/2018,Sports_celeb,@ShawnJohnson,Mood #sunday https://t.co/zai26WN7Oz +04/14/2018,Sports_celeb,@ShawnJohnson,Who needs Coachella when you can run a 5k in BOSTON 😂🤓❤️ @nastialiukin @clifbar @bostonmarathon #bostonmarathon… https://t.co/Rx3WBeln5v +04/12/2018,Sports_celeb,@ShawnJohnson,One of the greatest joys I get is being able to share my story with you all and answer the burning questions and cu… https://t.co/5PsgKGCwuU +04/11/2018,Sports_celeb,@ShawnJohnson,"I ALMOST MISSED IT! Happy #nationalsiblingsday to this new, crazy, big family of mine :) and all the doggies too. L… https://t.co/XZQneKg4Rj" +04/09/2018,Sports_celeb,@ShawnJohnson,Well this picture wasn’t taken on a Monday 😴😜💀 #mondayblues #monday #meh https://t.co/Qiam5THWTO +04/08/2018,Sports_celeb,@ShawnJohnson,Sunday feels. Don’t ever move. Bring me some waffles. 🤓🤫😴 #cuddles #weekendvibes #sunday https://t.co/u98Q7hQciP +04/07/2018,Sports_celeb,@ShawnJohnson,Saturday’s are for experimenting with makeup 🤷🏼‍♀️🤓💁🏼‍♀️ Tag me in pictures of looks you want me to try and I’ll po… https://t.co/QulHbRHrQA +04/06/2018,Sports_celeb,@ShawnJohnson,RT @x3jennyfur: This goes out to @shawnjohnson and her hubby @andrewdeast 😆🙃 Thanks for the #aroundtheworld… https://t.co/xRfVGYouhr +04/05/2018,Sports_celeb,@ShawnJohnson,RT @madisonfrost: Also @ShawnJohnson and her husband are the cutest 😍 +04/05/2018,Sports_celeb,@ShawnJohnson,RT @a_schroed14: I asked for one magazine and my friend brought me an entire case 😅 @ShawnJohnson https://t.co/0COq68eGOt +04/05/2018,Sports_celeb,@ShawnJohnson,"RT @jntatmhn: @ShawnJohnson @AndrewDEast ""Tea"" ☕️ + Singas 🍕 = the ""Key"" 🔑 to my ""Heart"" ❤️" +04/05/2018,Sports_celeb,@ShawnJohnson,RT @jess_sloane: @mberlovine @kaitsexton @ShawnJohnson I’m fangirling for y’all 😆😆😆🌟😍 +04/04/2018,Sports_celeb,@ShawnJohnson,☕️ + @andrewdeast = the 🔑 to my ❤️ comment down below you favorite drink! #humpday #couplegoals #wifelife https://t.co/PJ56vNrb4w +04/03/2018,Sports_celeb,@ShawnJohnson,Finally got my husband back! @andrewdeast I missed yo face. Comment down below any fun plans for the week!… https://t.co/JCyES4BWmm +04/02/2018,Sports_celeb,@ShawnJohnson,Holy hotness @andrewdeast You’re my #MCM every Monday. Now get your butt back home so I can creepishly stare at you… https://t.co/2xoyYBgw9m +04/01/2018,Sports_celeb,@ShawnJohnson,HAPPY EASTER!! #easter https://t.co/c2MpgENAXy +03/31/2018,Sports_celeb,@ShawnJohnson,E A S T E R 🌸 W E E K E N D ! Comment below what your plans are! Hubs and I are on speerate sides of the continent… https://t.co/USRtZ3Iu6f +03/30/2018,Sports_celeb,@ShawnJohnson,FRIYAY! #friyay #fridayvibes #weekend https://t.co/C1zgY3AqNJ +03/30/2018,Sports_celeb,@ShawnJohnson,"RT @OSUspeakers: Rise and shine, Cowboys! +Remember to join us TODAY at 11:30 a.m. at Chi-O Clock for our first FREE t-shirt giveaway!! #Sh…" +03/28/2018,Sports_celeb,@ShawnJohnson,When yo 🍑 too big to fit on the window sill hahaha #humpday #embraceit #hottmess #squats #booty🍑 https://t.co/9Z2TD5PcD1 +03/28/2018,Sports_celeb,@ShawnJohnson,Shexy date night with my hunk and ol’ Johnny #datenight #marriage #wifelife #livingthatlacelife #dreamdate comment… https://t.co/lnS9tNmxWh +03/27/2018,Sports_celeb,@ShawnJohnson,It’s from a HyVee commercial shot in 2011! Should be on YouTube! https://t.co/iQACq1MulT +03/27/2018,Sports_celeb,@ShawnJohnson,I 🍩 wanna 🌮 bout it. It’s a problem. #donutsarelife #cheatday #foodie https://t.co/qb6Ex6e4CY +03/26/2018,Sports_celeb,@ShawnJohnson,RT @LilDavis09: @ShawnJohnson hey look it’s you!! Maybe you should plan a trip to Des Moines in April :) https://t.co/PvvMcmbqLD +03/26/2018,Sports_celeb,@ShawnJohnson,Myobdays 😂🤷🏼‍♀️🤦🏼‍♀️ #mondaymood 🤦🏼‍♀️#mcm #travel who can comment MONDAY letter by letter uninterrupted?! https://t.co/cK8HY2XbSC +03/26/2018,Sports_celeb,@ShawnJohnson,@TeniPanosian I don’t even know what any of this means!!! Hahahaha +03/26/2018,Sports_celeb,@ShawnJohnson,Yo @warriors I meannnnnnnn I’m kind of freaking out. @kevindurant and @stephencurry30 #RESPECT 👏🏻💪🏻👍🏻 #sportsnerd… https://t.co/KKufPCoYCi +03/25/2018,Sports_celeb,@ShawnJohnson,ITS THE FREAKIN WEEKEND YALL! Comment down below what your weekend plans are!! Us?! We are going to the WARRIORS GA… https://t.co/oADBrAHX9U +03/24/2018,Sports_celeb,@ShawnJohnson,I d🍩nut know what I’d do without you 🤓 #mood #donuts #marriage #love #dontletmytrainerseethis @andrewdeast… https://t.co/FQvgiivluT +03/23/2018,Sports_celeb,@ShawnJohnson,Happy #nationalpuppyday 😍 https://t.co/hZ1F6WpLIX +03/23/2018,Sports_celeb,@ShawnJohnson,Photobomb of the year goes to the best little bro haha #FBF @andrewdeast @geasty57 #eastboys #family #mylove https://t.co/e6qDJsvrSQ +03/22/2018,Sports_celeb,@ShawnJohnson,"Nobody tells you +it is ok to call yourself beautiful +it is okay to smile at mirrors +and it is perfectly fine +to sa… https://t.co/bWdqTKwZAP" +03/21/2018,Sports_celeb,@ShawnJohnson,Workday Wednesday! Comment your dream job down below! #dreamjob #wednesday #humpday #workmode #picklerandben https://t.co/IhSiHZvu6g +03/19/2018,Sports_celeb,@ShawnJohnson,I’ve got a serious case of the mondays #mood #monday #meh #husbandsclothes What are your plans today?! Comment belo… https://t.co/kUutOQGtDv +03/19/2018,Sports_celeb,@ShawnJohnson,Happy S U N D A Y 🤓 #mrandmrs #easts #sundayfunday #freckles Who can comment SUNDAY letter by letter unbroken?! https://t.co/IfzmLaVUHJ +03/16/2018,Sports_celeb,@ShawnJohnson,Hey hunk... I love sharing life you with 🤓 #FBF @andrewdeast #marriage #dreamwedding #husband #wife https://t.co/w783bCEeoY +03/14/2018,Sports_celeb,@ShawnJohnson,HAPPY 🐪 DAY #humpday #marriage #mancrusheveryday @andrewdeast https://t.co/oZz54bmZLS +03/13/2018,Sports_celeb,@ShawnJohnson,My spirit animal 🦒 🤓 #onesiegymnastics #youtube #gymnastics #dork Comment your spirit animal down below! https://t.co/DrqJy2sikG +03/12/2018,Sports_celeb,@ShawnJohnson,Had THE GREATEST double date night with @markballas and @bcjean 😍☺️🤗 If you could go on a double date with anyone w… https://t.co/JOOKEvkgQK +03/11/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: Three incredibly creative, inspiring people. And then theres @markballas . So much fun with @shawnjohnson @bcjean @markbal…" +03/11/2018,Sports_celeb,@ShawnJohnson,What makes comfy clothes even better... when they are trendy and cute! Hahahahah I LIVE for these pieces and litera… https://t.co/1OWVbWZq8s +03/11/2018,Sports_celeb,@ShawnJohnson,RT @kt_cat16: @ShawnJohnson LOVE LOVE LOVE your most recent video w/ @AndrewDEast commentating your makeup routine! TOO FUNNY!!! 😂👌 +03/10/2018,Sports_celeb,@ShawnJohnson,"It’s the freakin weekend!! Now, what to do with it 🤨🤔🤷🏼‍♀️ what are YOUR weekend plans?! Comment down below!!… https://t.co/Qt4leeYu4M" +03/09/2018,Sports_celeb,@ShawnJohnson,FRIDAY FEELS!!!!! Try to comment “FRIYAY” letter by letter uninterrupted below 🤓😜🤣 #friday #fridaymood #friyay 📸:… https://t.co/bZYwRcc0O4 +03/09/2018,Sports_celeb,@ShawnJohnson,RT @LIVESTRONG_COM: Celebrating #IWD2018 with a look back at our STRONGER WOMEN interview with @ShawnJohnson 💖https://t.co/lLgUGSGzTN https… +03/08/2018,Sports_celeb,@ShawnJohnson,Just posted on YouTube! Don’t miss it! https://t.co/LPnsg9T9L6 https://t.co/I2P0nJayP2 +03/08/2018,Sports_celeb,@ShawnJohnson,"To these stunningly beautiful, confident, crazy smart, and insanely strong women.... I love you and am so grateful… https://t.co/GqsKcwoVFT" +03/06/2018,Sports_celeb,@ShawnJohnson,Wishing we were back in the fairytale land of castles 😍☺️🤓 @andrewdeast comment down below your favorite place you’… https://t.co/22Cud1DsBE +03/05/2018,Sports_celeb,@ShawnJohnson,"Man, I just love Monday’s...... 😜🤦🏼‍♀️😩🤨 #badcaseofthemondays #monday #bleh #meh Anyone have a cure for the Monday’… https://t.co/DGyCbnloyw" +03/05/2018,Sports_celeb,@ShawnJohnson,Great job @madi_brent96 ! https://t.co/q2ytbXQyel +03/03/2018,Sports_celeb,@ShawnJohnson,He’s 2 feet taller and I can wear shirts as dresses 😂🤓🤷🏼‍♀️ Comment down below your plans for this beautiful weeken… https://t.co/oStNqYLkJs +03/02/2018,Sports_celeb,@ShawnJohnson,Happy Friday y’all 🤓 comment down below... what emoji best describes you?! #emoji #happyfriday https://t.co/gdzE7xubMY +03/01/2018,Sports_celeb,@ShawnJohnson,How about a sappy one for this #TBT Best day of my life 🤗🤓☺️ #wedding #cheesy #marriage #love #fairytale… https://t.co/WrCs2gU63B +02/26/2018,Sports_celeb,@ShawnJohnson,"Ran into this beauty today!!! Man, @lauriehernandez_ I missed your face!!! #friends #gymnastics #weirdos https://t.co/npTxbH0riB" +02/24/2018,Sports_celeb,@ShawnJohnson,"Our bellies, hearts, and love has grown fuller these past 3 weeks. Sad to see this all come to an end but it’s time… https://t.co/9LQKHdjFYI" +02/23/2018,Sports_celeb,@ShawnJohnson,There is no better way to end this incredible trip than with the Vatican. Holy wow. Any last recommendations for Ro… https://t.co/NK0PghNgpZ +02/22/2018,Sports_celeb,@ShawnJohnson,Marriage summed up in a picture @andrewdeast #marriage #likevslove #grrr #stupidarguments #truelove https://t.co/jy4gC8qvMw +02/22/2018,Sports_celeb,@ShawnJohnson,Florence... it’s been real but it’s time to head to our last stop of this incredible journey 🤓 #loveofmylife… https://t.co/lIOUa85mTR +02/21/2018,Sports_celeb,@ShawnJohnson,461 steps later.... hello Florence 😍 #ouch #quadburn #marriage #vloglife https://t.co/c8JCoNOtEG +02/20/2018,Sports_celeb,@ShawnJohnson,Florence got me like... 😂🤷🏼‍♀️🤦🏼‍♀️ #worldtravels #europetrip #vloglife #marriage #florence https://t.co/PMtiUo6NGL +02/19/2018,Sports_celeb,@ShawnJohnson,Nothing quite like an Italian cappuccino 😍 and thanks baby for the coat #suchagentlemen #slashistoleit #coffee… https://t.co/zef58BoOko +02/19/2018,Sports_celeb,@ShawnJohnson,Ciao Venice! Onto the next! #worldtravels #vloglife #italy #marriage @andrewdeast https://t.co/QC05UJKwDf +02/18/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: You asked, @ShawnJohnson delivered. This video is special for me. https://t.co/J7bs4fHFxh" +02/18/2018,Sports_celeb,@ShawnJohnson,Don’t mess with this 26 year old and her teddy bears 😂🤷🏼‍♀️🤦🏼‍♀️ a Valentines gift from the hubs. We went with the… https://t.co/pk078lmhJw +02/17/2018,Sports_celeb,@ShawnJohnson,Ice skating in Vienna... it was seriously magical 🌟... time to find the hidden magic in VENICE though!!… https://t.co/n6FbQ0LhOM +02/17/2018,Sports_celeb,@ShawnJohnson,Vienna... you’ve been too good to us. Time to head south. Can anyone guess?!!! #travel #vloglife #marriage… https://t.co/DORXJVFeWz +02/16/2018,Sports_celeb,@ShawnJohnson,Vienna... I love you so freaking much. #vienna #worldtravels #vloglife #marriage https://t.co/5aFjPEuqRf +02/15/2018,Sports_celeb,@ShawnJohnson,Kiss me you fool #marriage #lotsofslobber #eww #pda #love @andrewdeast https://t.co/fKh60L4MgB +02/14/2018,Sports_celeb,@ShawnJohnson,I know I’m a hott disastrous mess but you somehow pick up my pieces and make my heart feel so incredibly full. You… https://t.co/gI9xVnmdGH +02/14/2018,Sports_celeb,@ShawnJohnson,Starting my day off right in P R A G U E ☕️ #coffee #vloglife #worldtravels #marriage #love https://t.co/5VxwICDBeI +02/13/2018,Sports_celeb,@ShawnJohnson,#ad I LOVE PUPPERS! So glad I got to volunteer and help these cuties out a few weeks back. Thanks to @statefarm for… https://t.co/lPdhlhW2LH +02/13/2018,Sports_celeb,@ShawnJohnson,My hunk and I saying goodbye to London and hello to........... 😜 #whereswaldo #marriage #travel #europetrip… https://t.co/J1itmJfT6g +02/13/2018,Sports_celeb,@ShawnJohnson,B E R L I N W A L L 😎 where are we headed now 🤷🏼‍♀️ #train #nextstop #vloglife #adventures #history #europetrip… https://t.co/yY00WBwM5T +02/12/2018,Sports_celeb,@ShawnJohnson,RT @_josiesteele_: @ShawnJohnson yelling “I see dogs!” And running off camera to go pet the dogs is literally the most relatable thing I’ve… +02/11/2018,Sports_celeb,@ShawnJohnson,Cutest coffee shop in Amsterdam #COFFEE #COFFEE #COFFEE https://t.co/fSLO88qOVE +02/11/2018,Sports_celeb,@ShawnJohnson,RT @KeelievKruse: My cat and I LOVE watching you vlogs. @ShawnJohnson @AndrewDEast https://t.co/VaT4FAwCql +02/10/2018,Sports_celeb,@ShawnJohnson,P A R I S ... I like you 😎 #travel #worldtravels #vloglife #youtube #europetrip #eiffeltower #paris https://t.co/wrjkk7ykAY +02/09/2018,Sports_celeb,@ShawnJohnson,Nothing like some morning espresso at the most gorgeous hotel ever @fsparis thank you for the most magical stay but… https://t.co/vVoGtGYxyU +06/22/2018,Sports_celeb,@kristiyamaguchi,A special package arrived today from my choreographer #sandrabezic ...the original Jef Billings sketches of a few o… https://t.co/LYfchZ7ja0 +06/21/2018,Sports_celeb,@kristiyamaguchi,Excited to play for this great cause but Ha I apologize to my teammates already! Skating prowess does not translate… https://t.co/2mb2hbuYnb +06/20/2018,Sports_celeb,@kristiyamaguchi,Some more of paradise...and goofballs. 🌅🤪… https://t.co/97YWoypYNK +06/17/2018,Sports_celeb,@kristiyamaguchi,Wishing all of you daddys a happy Father's Day!!! +06/17/2018,Sports_celeb,@kristiyamaguchi,Happy Father’s Day @brethedican ...hoisting a… https://t.co/n2j88FoxHp +06/11/2018,Sports_celeb,@kristiyamaguchi,Thank you so much Raj for always being so generous with your time and supporting our work. You’re the best! Xo https://t.co/5n5UXGOgtl +06/10/2018,Sports_celeb,@kristiyamaguchi,Big thank you to these awesome Olympians for coming out and supporting @alwaysdream . You’re my heroes in so many w… https://t.co/fbrGkDp2Cb +06/09/2018,Sports_celeb,@kristiyamaguchi,Congratulations @warriors !!! Battled through a lot this year. #champs #DubNation wooooooooohoooooooo!!!!!!!🎉🙌🏻 https://t.co/S2cxotdVjk +06/08/2018,Sports_celeb,@kristiyamaguchi,Lets go @warriors !!! #DubNation 💛💙 +06/08/2018,Sports_celeb,@kristiyamaguchi,And the Stanley Cup ceremony takes a Vegas turn! 😱 #whathappensinvegasthehockeyworldsees 👀 +06/08/2018,Sports_celeb,@kristiyamaguchi,Big Congrats to @Capitals #stanleycup Champs!!! 🎉🙌🏻🎊. +06/07/2018,Sports_celeb,@kristiyamaguchi,Good luck @MichaelWeiss2 🧢 ! #stanleycup https://t.co/gSqZbhIe3V +06/06/2018,Sports_celeb,@kristiyamaguchi,Which one? #LoveMe #StayWild #LetsGetWeird https://t.co/RlOrqF1hQg +06/04/2018,Sports_celeb,@kristiyamaguchi,Yesssssssss #DubNation +05/29/2018,Sports_celeb,@kristiyamaguchi,"RT @warriors: Steph splash to take the lead! 💦 + +📺 @NBAonTNT https://t.co/5WYbtum2J9" +05/29/2018,Sports_celeb,@kristiyamaguchi,Why is it a shooting foul on a rebound foul? +05/28/2018,Sports_celeb,@kristiyamaguchi,"Game 7 @warriors , game 1 #StanleyCup Finals 😱😱😱 #DubNation #GoCaps" +05/28/2018,Sports_celeb,@kristiyamaguchi,Always grateful for the ultimate sacrifice for our liberties and freedom. Remembering today and everyday. #HappyMemorialDay ♥️🇺🇸💙 +05/27/2018,Sports_celeb,@kristiyamaguchi,Let’s go #Dubs !!! https://t.co/ivLme7hV0l +05/23/2018,Sports_celeb,@kristiyamaguchi,Wasting away at CA DMV office. #3hrsandcounting 🤬 +05/23/2018,Sports_celeb,@kristiyamaguchi,@USFigureSkating Tank!!! ❤️❤️❤️ +05/22/2018,Sports_celeb,@kristiyamaguchi,"Buy one, Give one! + +You can be part of my @AlwaysdreamFDN mission to ensure low-income students have access to hig… https://t.co/ZaTHo613qH" +05/21/2018,Sports_celeb,@kristiyamaguchi,Give the gift of reading to a child in need.Thanks to my Publisher @sourcebooks starting today for every book purch… https://t.co/5NX3iDcxK1 +05/20/2018,Sports_celeb,@kristiyamaguchi,Breaks my heart when our 14 yr old daughter has to ask this. We all feel broken for the victims and their families.… https://t.co/K90m5zRbYv +05/17/2018,Sports_celeb,@kristiyamaguchi,Anyone ever use Rover? Thoughts? +05/16/2018,Sports_celeb,@kristiyamaguchi,Raising age to 18 would be so detrimental to our sport. It’s exceptional for a lady to increase revolutions in the… https://t.co/j1bccA6PDo +05/14/2018,Sports_celeb,@kristiyamaguchi,I adore these 2 and they deserve your votes! Woohoo @mirai_nagasu and @Adaripp !!! #dwts and Yay @Meryl_Davis ! +05/13/2018,Sports_celeb,@kristiyamaguchi,To all you mom’s- one day off a year but the greatest privilege in the world. Happy Mother’s Day! 💐💖 https://t.co/eA6o8xj2nn +05/07/2018,Sports_celeb,@kristiyamaguchi,Lets go @SanJoseSharks !!!!! Get it going! 👏🏼👏🏼👏🏼 +05/05/2018,Sports_celeb,@kristiyamaguchi,So happy to be here at @hawaiibookmusic again with ADF board President @kealaorona and ED @loriyamaguchi ! 1 readin… https://t.co/WUYtabLeqA +05/05/2018,Sports_celeb,@kristiyamaguchi,😩 +05/03/2018,Sports_celeb,@kristiyamaguchi,Let’s go sharks!!! 🦈😋⚔️ https://t.co/BWOJ5836BK +05/02/2018,Sports_celeb,@kristiyamaguchi,Hawaii friends! Visit My Keiki Reading Corner @hawaiibookmusic #HBMF2018 I’m reading Sat@ 10AM & 1PM and Sun@ 10AM… https://t.co/SN52Ej6xxQ +05/01/2018,Sports_celeb,@kristiyamaguchi,"It was so great to meet you, I am a fan of yours and inspired by all you do. Congratulations on all of your success… https://t.co/rYkHWsKLxf" +05/01/2018,Sports_celeb,@kristiyamaguchi,"Omgoodness when it rains it pours, our poor house- plumber, AC, attic, door, grill. Calgon take me away...🛁" +05/01/2018,Sports_celeb,@kristiyamaguchi,OT again 🤪😱🦈 +05/01/2018,Sports_celeb,@kristiyamaguchi,Niners!!! ❤️💛 https://t.co/zCuIvvJxoc +04/30/2018,Sports_celeb,@kristiyamaguchi,"Honor was mine, thank you @SarahHughesNY . Fun to see ya! ❌⭕️ https://t.co/caV6Smdv6q" +04/29/2018,Sports_celeb,@kristiyamaguchi,Sharrrrkkkkssssss!!!!!!!!!🤜🤜🤜👏🏼👏🏼👏🏼#BecauseItsTheCup +04/29/2018,Sports_celeb,@kristiyamaguchi,😱😵👀 +04/28/2018,Sports_celeb,@kristiyamaguchi,Let’s go Sharks! Game 2 #stanleycup https://t.co/DID2rMg4th +04/28/2018,Sports_celeb,@kristiyamaguchi,@BretHedican thank you 😊😘 +04/27/2018,Sports_celeb,@kristiyamaguchi,On to game 2 🦈 https://t.co/EEV8xIMhMJ +04/26/2018,Sports_celeb,@kristiyamaguchi,Excited about the celebration of these awesome athletes tonight! #teamUSA 🇺🇸 https://t.co/BhiNeKaAzN +04/24/2018,Sports_celeb,@kristiyamaguchi,Come on Bay Area and @nbcbayarea and local media. Get behind this team that has been in the playoffs 19 x’s in the… https://t.co/fS7xXgfL1X +04/21/2018,Sports_celeb,@kristiyamaguchi,People ask what my favorite skating routine was. Because of @SandraBezic I can never pick just one. Creating with y… https://t.co/OpfcdLeXj3 +04/21/2018,Sports_celeb,@kristiyamaguchi,@jahawtin @isabrasseur @TheHSF Nice article @isabrasseur ❤️ Can Gabi teach Keara how to cook too? :) +04/19/2018,Sports_celeb,@kristiyamaguchi,So completely honored. Especially because of its namesake and all that Jesse Owens represents. I humbly thank you… https://t.co/xdAVnpMmpw +04/19/2018,Sports_celeb,@kristiyamaguchi,SHARKSSS!!!!!!!!!!!!!! Movin' on #round2 #sweep #stanleycup 🦈@SanJoseSharks +04/18/2018,Sports_celeb,@kristiyamaguchi,Hey Bay Area tweeps- come out and support this event! 100% of the proceeds will go towards athletes with disabiliti… https://t.co/A13EwKg6pz +04/16/2018,Sports_celeb,@kristiyamaguchi,Its no wonder that he’s captured our hearts. 🖤🐾🐶 #Tank https://t.co/Z9JQ2JjSpM +04/15/2018,Sports_celeb,@kristiyamaguchi,👏🏼👏🏼👏🏼 https://t.co/wA5wqa27fC +04/15/2018,Sports_celeb,@kristiyamaguchi,This is gonna be ugly 🦈👅🦆 +04/14/2018,Sports_celeb,@kristiyamaguchi,Dubs...Sharks...positive vibes for the Bay today!!! #NBAPlayoffs #StanleyCup 💙💛🦈 +04/13/2018,Sports_celeb,@kristiyamaguchi,Kane!!!!!!!!!!!! #BecauseItsTheCup 🦈 +04/13/2018,Sports_celeb,@kristiyamaguchi,Can’t decide if I like your gold lamé pants or @pswylie ‘s leopard tank top better! 🤩 https://t.co/Oj7T25tez1 +04/12/2018,Sports_celeb,@kristiyamaguchi,Most wonderful time of the year!!! #LetsGoSharks 🦈😋🦆 #StanleyCupPlayoffs https://t.co/H4sI7KzVzI +04/08/2018,Sports_celeb,@kristiyamaguchi,"RT @SanJoseSharks: The #DuckHunt begins on Thursday. + +Full playoff schedule: https://t.co/ALxVglLIU2 https://t.co/xewaQrh6QY" +04/06/2018,Sports_celeb,@kristiyamaguchi,Happy Opening night 2018 @starsonice ! See ya in SJ. @Meryl_Davis @CharlieaWhite @AshWagner2010 @MadiHubbell… https://t.co/Nqt4BhfkWj +04/04/2018,Sports_celeb,@kristiyamaguchi,Fur babies meet. 🐾 #Hunter #Tank https://t.co/lNg3cLOOuh +04/01/2018,Sports_celeb,@kristiyamaguchi,Happy Easter 🐣🐇 🌷 +03/31/2018,Sports_celeb,@kristiyamaguchi,Thank you @Cirque #Crystal ! I loved the show and was in complete awe which is the norm with all of your shows. Bra… https://t.co/OTmgz03tHc +03/24/2018,Sports_celeb,@kristiyamaguchi,Yay congratulations @MadiHubbell @ZachTDonohue !!! 🎉 https://t.co/7VjnDqXqfK +03/24/2018,Sports_celeb,@kristiyamaguchi,Congratulations @nathanwchen ! https://t.co/N51G5ASx5m +03/21/2018,Sports_celeb,@kristiyamaguchi,@kristamarieyu @wheeler_forrest @TheIanChen @HudsonDYang @parkrandall 😘@kristamarieyu +03/21/2018,Sports_celeb,@kristiyamaguchi,@brettyamaguchi @HudsonDYang @TheIanChen 90’s Hair baby!!! Couldn’t find my scunchie 🤣 +03/20/2018,Sports_celeb,@kristiyamaguchi,Haha! This is tonight...reliving the ‘90’s 😆#FreshOffTheBoat ABC #firstladyhuang https://t.co/lBLiuben3y +03/17/2018,Sports_celeb,@kristiyamaguchi,@NickE408S @SanJoseSharks @evanderkane_9 Channel 780 NBCS +03/17/2018,Sports_celeb,@kristiyamaguchi,Yaaaayyyy 🎩trick for @evanderkane_9 !!! @SanJoseSharks 🦈 +03/16/2018,Sports_celeb,@kristiyamaguchi,TGIF...whatcha all up to? +03/15/2018,Sports_celeb,@kristiyamaguchi,"RT @AlexShibutani: .@MaiaShibutani and I are honored to be semifinalists for the 88th AAU James E. Sullivan Award. +We need your help! +Vot…" +03/14/2018,Sports_celeb,@kristiyamaguchi,So proud of our daughters and all the students across the country honoring Parkland and taking a stand. Let’s hope… https://t.co/oJSfdc3i0N +03/14/2018,Sports_celeb,@kristiyamaguchi,@ScottHamilton84 😘 honored and right back at you @ScottHamilton84 +03/11/2018,Sports_celeb,@kristiyamaguchi,"Omgoodness 🤣😂🤣 My life...RT if you can identify. +Slime After Slime / Time After Time Parody https://t.co/thjq9asdKL via @YouTube" +03/08/2018,Sports_celeb,@kristiyamaguchi,@CJVosters @ESPN1009 @greatlakesloons Big congrats to you @CJVosters ! +03/06/2018,Sports_celeb,@kristiyamaguchi,I’m so excited to be featured on @booknook - a great platform that helps students achieve their dreams through smal… https://t.co/SO5dMgDULU +03/06/2018,Sports_celeb,@kristiyamaguchi,So fun to make an appearance on @FreshOffABC ! Thank you for this experience. Hope you can catch it! https://t.co/HR4etJXyxg +03/02/2018,Sports_celeb,@kristiyamaguchi,Veteran. U.S. Paralympic Gold Medalist. Father. @RicoSled23 is an inspirational part of Team Milk… https://t.co/Eji4RcpQyU +03/01/2018,Sports_celeb,@kristiyamaguchi,That oh so blissful first sip. #simplepleasures #matchalatte https://t.co/p0fLYgMbeL +02/27/2018,Sports_celeb,@kristiyamaguchi,@USFigureSkating @nathanwchen Awwww with Tank and Dozer! +02/26/2018,Sports_celeb,@kristiyamaguchi,"Whether you’re hitting the ice or just trying to keep up with your kids, a good start is key. #BuiltNotBorn #ad… https://t.co/LM96o59sQ2" +02/25/2018,Sports_celeb,@kristiyamaguchi,"RT @nerdist: ICYMI, we asked @kristiyamaguchi if The Cutting Edge is realistic at all: https://t.co/YP6tZqDjBN (Spoiler alert: maybe not?)…" +02/23/2018,Sports_celeb,@kristiyamaguchi,"As a mom, it’s important I give my kids (and everyone) the support they need to succeed on and off the ice.… https://t.co/T7kYgS6a5s" +02/23/2018,Sports_celeb,@kristiyamaguchi,@NickMcCarvel @NBCOlympics @kristavoda @Ben_Agosto @CharlieaWhite It was always a highlight chatting with you. Was… https://t.co/A3qA4BXaKK +02/23/2018,Sports_celeb,@kristiyamaguchi,"US Ladies, you fought a good fight and know that no matter what we’re proud of you. @Karebearsk8 @mirai_nagasu @bradie_tennell" +02/23/2018,Sports_celeb,@kristiyamaguchi,"That was an insane close to Olympic #figureskating . The Russian rivalry, the greatest 4th place finish program eve… https://t.co/MObZ9Ahz7b" +02/23/2018,Sports_celeb,@kristiyamaguchi,Cheering you all on @Karebearsk8 @bradie_tennell @mirai_nagasu !!! Kill it! 🇺🇸⛸#teamusa +02/23/2018,Sports_celeb,@kristiyamaguchi,@JedHopkins @CharlieaWhite @CJVosters @ItsKrystleT @CJVosters you deserve a gold medal putting up with @CharlieaWhite for 2 weeks! +02/22/2018,Sports_celeb,@kristiyamaguchi,Thank you @FareedNBCS for graciously having me on @NBCSN with you. See ya back in the Bay Area! #olympics https://t.co/lWYQ1GLLI0 +02/22/2018,Sports_celeb,@kristiyamaguchi,RT @FromTheBoards: This is the LAST NIGHT for the late edition of #nbcolympicIce! What burning questions do you have for @Ben_Agosto @Charl… +02/22/2018,Sports_celeb,@kristiyamaguchi,"Seriously?! Wouldn’t believe it if I didn’t see it, so mind blowing. Amazing More triples in one pass than we may s… https://t.co/yYcYfQFy3m" +02/22/2018,Sports_celeb,@kristiyamaguchi,#tbt but not really...anyone remember the original 20yrs ago? Here’s a behind the scenes from my #milklife shoot.… https://t.co/RXy0ysTY8K +02/22/2018,Sports_celeb,@kristiyamaguchi,@pswylie @TeamUSA Me too! They played outta their minds. Yay! Miss you xoxoxo +02/22/2018,Sports_celeb,@kristiyamaguchi,Yeeessssssss!!! Congratulations @TeamUSA #womenshockey on GOLD!!! 🇺🇸🥇 https://t.co/O5QW6PlrLI +02/22/2018,Sports_celeb,@kristiyamaguchi,Omgoodness this game! 🇺🇸#womenshockey 😱 +02/21/2018,Sports_celeb,@kristiyamaguchi,@FareedNBCS No I’ve finally made it onto your show! Thanks for having me @FareedNBCS +02/21/2018,Sports_celeb,@kristiyamaguchi,Sending my best wishes and lots of luck to @mirai_nagasu @bradie_tennell @Karebearsk8 🇺🇸 bring it ladies! 💪🏼👊🏼⛸ +02/20/2018,Sports_celeb,@kristiyamaguchi,@taiskates @GettyImages You were (and are) such an inspiration to me. That earring meant so much to me-for the most… https://t.co/2K094ob9to +02/20/2018,Sports_celeb,@kristiyamaguchi,Happy anniversary @BrianBoitano ! You showed me what it took to accomplish a dream. No better mentor and now dear f… https://t.co/nsRBIQpbo8 +02/20/2018,Sports_celeb,@kristiyamaguchi,A dance event with roller coaster emotions. Congratulations to Virtue/Moir on awe inspiring skates and history made… https://t.co/3m6ZPA20hP +02/20/2018,Sports_celeb,@kristiyamaguchi,. @ShibSibs !!! Congratulations on your Olympic 🥉 👏🏼🎉 Performances of a life at the Olympics! +02/20/2018,Sports_celeb,@kristiyamaguchi,Listening to Olympic coach (legendary already) #brianorser on Olympic Ice. So agree w/ his philosophy on preparing… https://t.co/5wRDzh4Por +02/18/2018,Sports_celeb,@kristiyamaguchi,Best of luck to the ice dancers today! @MaiaShibutani @AlexShibutani @MadiHubbell @ZachTDonohue @chockolate02… https://t.co/PEsmGfEQXr +02/18/2018,Sports_celeb,@kristiyamaguchi,@NancyinHI @kristavoda @Ben_Agosto @CharlieaWhite @NBCOlympics Try downloading the NBC Sports app... +02/18/2018,Sports_celeb,@kristiyamaguchi,Want a recap on the skating competition so far? Go to https://t.co/L4yWb2gDrB for our #NBCOlympicIce POST show. Sen… https://t.co/sKjodOXBKi +02/17/2018,Sports_celeb,@kristiyamaguchi,RT @YukiSNYC: Holy shit @nathanwchen. We never stopped believing in you. What a fighter. You showed everyone out there to never stop believ… +02/17/2018,Sports_celeb,@kristiyamaguchi,"Happy 34th anniversary my friend, my hero. You won gold in ‘84 but the impact you’ve had in figure skating and in l… https://t.co/p1BMD39WiQ" +02/17/2018,Sports_celeb,@kristiyamaguchi,Perfection. Happy 4th anniversary @Meryl_Davis @CharlieaWhite @TeamUSA 🥇 https://t.co/BBFmHQpdH7 +02/17/2018,Sports_celeb,@kristiyamaguchi,@Ben_Agosto @CharlieaWhite Ummmmmm where’s the pic @Ben_Agosto ? 🤣 +02/17/2018,Sports_celeb,@kristiyamaguchi,"Early morning shenanigans. Our Game of Thrones...King Slayer🗡, King of the North 🐺, Khalisti Yama 🐉 https://t.co/SI0JHzxi9d" +02/17/2018,Sports_celeb,@kristiyamaguchi,"So amazed at these men. History made. Love Shoma, so happy for Javi and Spain, @Adaripp @govincentzhou @nathanwchen… https://t.co/gqWbKHVGze" +02/17/2018,Sports_celeb,@kristiyamaguchi,Congratulations Hanyu on history- 1st repeat gold medalist since the great @PushDicksButton . 👏🏼👏🏼👏🏼🇯🇵 +02/17/2018,Sports_celeb,@kristiyamaguchi,"Ok...these Olympic moments are so emotional. @govincentzhou good for you, that was freakin’ awesome😎" +02/17/2018,Sports_celeb,@kristiyamaguchi,"@nathanwchen K, I’m still shaking from that. Nathan with the Mao Asada comeback. So happy for him. #superhuman #olympics" +02/17/2018,Sports_celeb,@kristiyamaguchi,What?!?!?! Completely inhuman display of ridiculousness!!! 6 quads...beautiful skating. Guys beyond. Congratulation… https://t.co/AfUuS7bnyO +02/16/2018,Sports_celeb,@kristiyamaguchi,".@maddiebowman, you inspire me with your incredible grace and skill under pressure. We’re all cheering you on from… https://t.co/5IFp1wZWQX" +02/16/2018,Sports_celeb,@kristiyamaguchi,"Stunning men’s short event on both ends of the spectrum. Wow Hanyu, composed, in command, veteran. Great to see Fer… https://t.co/4HZnjceEfi" +02/16/2018,Sports_celeb,@kristiyamaguchi,Good luck @nathanwchen and @Adaripp tonight for your SP! #olympics #Pyeonchang2018 🇺🇸 +02/16/2018,Sports_celeb,@kristiyamaguchi,Go @govincentzhou !!! 🇺🇸#teamusa +02/15/2018,Sports_celeb,@kristiyamaguchi,So many thoughts and prayers go out to Parkland FL. It’s well beyond the time to do something when our children don… https://t.co/1AG5dIUoAq +02/14/2018,Sports_celeb,@kristiyamaguchi,Simply agree... :) https://t.co/kGVJ0YYnWC +02/14/2018,Sports_celeb,@kristiyamaguchi,Happy Valentine’s Day!!! ❤️💘💋 +02/13/2018,Sports_celeb,@kristiyamaguchi,Thank you Lea! Feel free to come join us in studio if you feel like chatting about skating! See you soon! https://t.co/Ka1Q7iFk5x +02/13/2018,Sports_celeb,@kristiyamaguchi,😄👏🏼@MarkBallas is AMAZING! https://t.co/IjLY6axdQk +02/13/2018,Sports_celeb,@kristiyamaguchi,@CharlieaWhite I totally agree @CharlieaWhite ! https://t.co/sUKocYMBfj +02/12/2018,Sports_celeb,@kristiyamaguchi,"Skating is pure magic, so whether you’re trying a new move or taking that 1st step on the ice, be fearless.… https://t.co/dPexblY5aw" +02/12/2018,Sports_celeb,@kristiyamaguchi,We’ll be watching you! Good luck @BOBSLEDR ! #pyeongchang2018 https://t.co/IPv3He01eP +02/12/2018,Sports_celeb,@kristiyamaguchi,So into the #Olympics ...but yay @SanJoseSharks too! 🦈 🏒 #SOwin +02/12/2018,Sports_celeb,@kristiyamaguchi,You rocked it @NickMcCarvel ! Thank you so much for bringing us such great insight from Pyeongchang! Talk to ya soo… https://t.co/ieon6t78GI +02/12/2018,Sports_celeb,@kristiyamaguchi,Let’s go @ShibSibs !!! 🇺🇸coming up now! +02/12/2018,Sports_celeb,@kristiyamaguchi,Wow @mirai_nagasu !!! Congratulations...tears of joy for you again! #1stAmerican3axel #hero 👑 +02/12/2018,Sports_celeb,@kristiyamaguchi,@Adaripp 💪🏼👏🏼👏🏼awesome!!! +02/11/2018,Sports_celeb,@kristiyamaguchi,I LOVE this! You two are the best and I hope to see more demos on the glice. Great job! #sendinghugs… https://t.co/qCtUR9DuE8 +02/11/2018,Sports_celeb,@kristiyamaguchi,Yay can’t wait to watch @mirai_nagasu and @Adaripp grace Olympic ice! Good luck in the team event tonight (this mor… https://t.co/wQVxRZuOpe +02/11/2018,Sports_celeb,@kristiyamaguchi,“Called” correct but was it judged correct? #GOE https://t.co/87JB9MoKIt +02/11/2018,Sports_celeb,@kristiyamaguchi,Go get ‘Em @MaiaShibutani and @AlexShibutani !!! Good luck In the team event tonight! #olympics #figureskating +02/11/2018,Sports_celeb,@kristiyamaguchi,Good luck @bradie_tennell as you begin your #Olympics experience!!! Enjoy and go @TeamUSA ! #PyeongChang #figureskating +02/10/2018,Sports_celeb,@kristiyamaguchi,RT @SInow: Even @hqtrivia got in the Olympic spirit tonight with a cameo from 1992 Olympic gold medalist Kristi Yamaguchi https://t.co/T4f2… +02/08/2018,Sports_celeb,@kristiyamaguchi,Who’s so pumped?!?! Good luck to you @TeamUSA ! #BestOfUS #olympics ⛸ https://t.co/9lwGgEXNw2 +02/08/2018,Sports_celeb,@kristiyamaguchi,Figure skating starts tonight!!! Catch me @CharlieaWhite @Ben_Agosto @kristavoda on #OlympicIce right after primeti… https://t.co/ijh4ZnDWn0 +02/08/2018,Sports_celeb,@kristiyamaguchi,Thank you @VICE ! #letsdoitladies 💪🏼 https://t.co/9DvJHdMX5A @bonnieblair #cathyturner #donnaweinbrecht +02/07/2018,Sports_celeb,@kristiyamaguchi,Team Milk is ready for the Olympic Winter Games PyeongChang 2018. Cheers! #BuiltNotBorn #ad #MilkLife #TeamUSA… https://t.co/77xajbLpRC +02/06/2018,Sports_celeb,@kristiyamaguchi,"Tank says- +“I wanna wish my skating friends good luck at the Olympics!!! Wish I could be there to cheer you on!” 🐶… https://t.co/Sb49DECzeD" +02/06/2018,Sports_celeb,@kristiyamaguchi,Coming up at 8:30am West Coast 😃Thank you for coming out to reminisce @NMoralesNBC 💕 https://t.co/eRc1mKjli7 +02/05/2018,Sports_celeb,@kristiyamaguchi,🎉Happy Danville mom #LisaErtz (and pretty good soccer player Julie Johnston;)… https://t.co/SWtvny7ehY +02/05/2018,Sports_celeb,@kristiyamaguchi,Loved this to my favorite song!!! So pumped 👏🏼👏🏼👏🏼 #TeamUSA https://t.co/WCAvYqRwWP +02/05/2018,Sports_celeb,@kristiyamaguchi,Just watched a hover board show...yes my daughters choreograph routines on it. #laughtilyoucry 🤣😂🤣 +02/04/2018,Sports_celeb,@kristiyamaguchi,@CharlieaWhite Awww TY ☺️ +02/02/2018,Sports_celeb,@kristiyamaguchi,"@TIME Thank you @TIME ! We know who the big guns are, but I want to “meet” the other faces to watch for at the Olympics. 👍🏼" +02/02/2018,Sports_celeb,@kristiyamaguchi,I love mentoring the next generation of athletes. I’m sure Elliot will be out there nailing triple axels in no time… https://t.co/l3r3v14IYF +02/01/2018,Sports_celeb,@kristiyamaguchi,"We all fall, it’s how #WeGetUp that matters. Join us for National Get Up Day, Feb. 1 and share your story.… https://t.co/FIZEAP4L9J" +01/31/2018,Sports_celeb,@kristiyamaguchi,"Chasing my tail like @TeamUSA athletes are chasing their dreams! #Tank Make a gif to show how your dog is more, h… https://t.co/M0kjR0rsmw" +01/30/2018,Sports_celeb,@kristiyamaguchi,Always lovely to hang and chat with you @NMoralesNBC ! https://t.co/gQkIWCLHCe +01/24/2018,Sports_celeb,@kristiyamaguchi,"When people ask what it takes to become a U.S. Olympian, I always say the same thing: practice, practice, practice.… https://t.co/wranmHCr3N" +01/24/2018,Sports_celeb,@kristiyamaguchi,Congratulations @DanRusanowsky on #2000 games!!! @SanJoseSharks https://t.co/orGei924Ps +01/17/2018,Sports_celeb,@kristiyamaguchi,"My kids know when I put my mind to something, I give it 100%. I want them to see when you #milklife, great things h… https://t.co/wjtt65BL3Q" +01/17/2018,Sports_celeb,@kristiyamaguchi,Excited to join the @NBCOlympics digital team! https://t.co/Y9nic2QUuD +01/12/2018,Sports_celeb,@kristiyamaguchi,"Take it from me, dreams don’t come true at the drop of a hat. It takes time and hard work to achieve your goals.… https://t.co/ZdkdkNgY6B" +01/11/2018,Sports_celeb,@kristiyamaguchi,https://t.co/OVaTTLecQT #activewear #sale https://t.co/281fCahvdm +01/08/2018,Sports_celeb,@kristiyamaguchi,"As a mom, I know the importance of good nutrition. I want to make sure everyone gets nutrients they need to do thei… https://t.co/q5UT0Ui69p" +01/07/2018,Sports_celeb,@kristiyamaguchi,Congratulations @govincentzhou @rossminer @nathanwchen on a spectacular display of athleticism and artistry! 🥇🥈🥉 +01/07/2018,Sports_celeb,@kristiyamaguchi,But this...I can watch it all day. @jasonbskates https://t.co/e2zQUc96JJ +01/07/2018,Sports_celeb,@kristiyamaguchi,@rockerskating Too harsh +01/07/2018,Sports_celeb,@kristiyamaguchi,Ok- that was exciting TSTL. Great skate @govincentzhou https://t.co/aqcfocv8nN +01/06/2018,Sports_celeb,@kristiyamaguchi,@mirai_nagasu you amaze and inspire. TY for showing how never giving up on a dream is the only way it can become re… https://t.co/EtHyMkjk72 +01/06/2018,Sports_celeb,@kristiyamaguchi,"A Fremont girl at the Olympics again!!! Congratulations Karen, I know you will represent @TeamUSA 🇺🇸 with pride! https://t.co/6GvMXEKMBd" +01/06/2018,Sports_celeb,@kristiyamaguchi,"That #uschamps18 ladies event was 😱😁😭🙌🏻👏🏼👍🏼🔥!!!!!!! So happy for all the women, they skated so awesome! 🥇Bradie 🥈… https://t.co/6XhNNOr8QL" +01/06/2018,Sports_celeb,@kristiyamaguchi,Strong gutsy skate by @AshWagner2010 ! Nice! 👏🏼👏🏼👏🏼 +01/05/2018,Sports_celeb,@kristiyamaguchi,What an event at ice dance...so fun to watch them bring it! @chockolate02 @Evan_Bates @MaddieHubbell @ZachTDonohue @ShibSibs 🙌🏻 +01/05/2018,Sports_celeb,@kristiyamaguchi,Weeeeee! That short dance though @MaiaShibutani and @AlexShibutani 🔥🔥🔥 Yay 👏🏼👏🏼👏🏼 +01/04/2018,Sports_celeb,@kristiyamaguchi,Running up a wall? Front flips? All in a day’s work for Elliot. He introduced me to the world of parkour & showed m… https://t.co/RtRzx6T9lN +01/04/2018,Sports_celeb,@kristiyamaguchi,Whoa felt that 😳#earthquake +01/04/2018,Sports_celeb,@kristiyamaguchi,Yay @Karebearsk8 ! Beautifully done! #USChamps18 +01/04/2018,Sports_celeb,@kristiyamaguchi,Thank you @nicole_soojung !!!😘 https://t.co/ubFwem2RPr +01/04/2018,Sports_celeb,@kristiyamaguchi,Thrilling week ahead at the @USFigureSkating Championships. Good luck to the competitors! Some will be on the 2018 Olympic team !!! ⛸ +01/04/2018,Sports_celeb,@kristiyamaguchi,Great SP @PolinaEdmunds !!! Hometown girl doesn’t disappoint. 👍🏼👏🏼👏🏼 +01/01/2018,Sports_celeb,@kristiyamaguchi,"Wishing everyone a very Happy New Year filled with blessings, good health and prosperity. 🎊🎆💋" +01/01/2018,Sports_celeb,@kristiyamaguchi,Happy happy birthday @Meryl_Davis ! There’s no one else I’d go 🍌s with! 🎂🎊💖 https://t.co/N0Zy3v0Tuh +12/31/2017,Sports_celeb,@kristiyamaguchi,Loved skating with these amazing ladies! A special night with @starsonice back in Lake Placid. Thx for the pic… https://t.co/XaWGPbCWbX +12/16/2017,Sports_celeb,@kristiyamaguchi,@MrDrewScott Hey Drew yes! Welcome!!! +12/10/2017,Sports_celeb,@kristiyamaguchi,So proud of Emma and her team mates! Congratulations trivalleysoccerclub Fury 05 and Coach Lou!… https://t.co/3NeFJAgTnY +12/05/2017,Sports_celeb,@kristiyamaguchi,"RT @NBCOlympics: Russia banned from 2018 #WinterOlympics, but Russian athletes can compete as neutrals: https://t.co/jsIOAxOixM https://t.c…" +12/05/2017,Sports_celeb,@kristiyamaguchi,"Milk is one of the most requested, yet least donated items at food banks. See how you can help kids in need:… https://t.co/UWhVt9jY8I" +12/04/2017,Sports_celeb,@kristiyamaguchi,Come on out and skate on the rooftop with me tonight! 7-9pm @TheCosmpolitan #treelighting https://t.co/sPfvzFOJl5 +12/03/2017,Sports_celeb,@kristiyamaguchi,Woohoo! Congrats to Emma and her @trivalleysc2 team for the big win today! On to State Cup finals!!! #05 +12/02/2017,Sports_celeb,@kristiyamaguchi,Looking forward to kicking off this holiday season with you! https://t.co/zXGNXFRtT9 +12/01/2017,Sports_celeb,@kristiyamaguchi,Curled up with a good read! Congratulations @karebearsk8 on Finding the Edge. And I was honored to write the forewo… https://t.co/XLAETJA7ks +11/29/2017,Sports_celeb,@kristiyamaguchi,"RT @555CATreeLight: Tonight's the night! Come down to #555california and join Karen and @RonnieLottHOF, @JoeMontana, @kristiyamaguchi, @raj…" +11/29/2017,Sports_celeb,@kristiyamaguchi,"Nearly 13M American kids struggle w/ hunger. This holiday, help The Great American #MilkDrivelend a hand:… https://t.co/CqHLr3TjTY" +11/23/2017,Sports_celeb,@kristiyamaguchi,Happy turkey day everyone! I'm thankful for so much especially my family and friends. How about you? #HappyThanksgiving #grateful 🦃🍗🍰🍽💛 +11/22/2017,Sports_celeb,@kristiyamaguchi,"Hey #TeamStark @LindseyStirling -you have so much heart and brought so much joy, creativity, class and awesomeness… https://t.co/B95rwm5pNF" +11/22/2017,Sports_celeb,@kristiyamaguchi,@Jordan_Fisher @lindsayarnold Big congratulations to you @Jordan_Fisher !!! An incredible star on stage but off sta… https://t.co/HuZAweTmM2 +11/21/2017,Sports_celeb,@kristiyamaguchi,"As a mom of 2, I’m proud to support The Great American #MilkDriveto help kids get nutrients they need. Visit… https://t.co/6hnqJE1B9Y" +11/21/2017,Sports_celeb,@kristiyamaguchi,What?!?!? Those freestyles were so awesome tonight!!! Just so fun to watch 👏🏼👏🏼👏🏼🙌🏻 @DancingABC #dwts +11/19/2017,Sports_celeb,@kristiyamaguchi,Have an amazing show tonight @ScottHamilton84 @TeamScottCARES !!! Always inspired by your commitment to… https://t.co/sxilDNlWrj +11/14/2017,Sports_celeb,@kristiyamaguchi,This really hit home for me. See how U.S. Olympian @MaddieBowman finds the support she needs to succeed with a litt… https://t.co/FgayMLAf4r +11/14/2017,Sports_celeb,@kristiyamaguchi,#teamstark y’all!!!!! Get you’re votes in @DancingABC #dwts finale 1-800-868-3407 +11/13/2017,Sports_celeb,@kristiyamaguchi,Yay a win! 😬 #goniners +11/11/2017,Sports_celeb,@kristiyamaguchi,Thank you veterans 🇺🇸 💙❤️ +11/06/2017,Sports_celeb,@kristiyamaguchi,💔 #TexasStrong +06/29/2018,Sports_celeb,@McIlroyRory,Love this video!! Looking forward to seeing everyone next week at @ballyliffin for the @DDFIrishOpen. Let's hope th… https://t.co/33DGBBXla6 +06/26/2018,Sports_celeb,@McIlroyRory,...golfers from the UK and Ireland can enter here: https://t.co/XHFWeyFzUK ⛳️🏌️‍♀️🏌🏻‍♂️ https://t.co/3P1XUYfjoi +06/26/2018,Sports_celeb,@McIlroyRory,"Want to tee off with me @royalportrush in Northern Ireland, home of @TheOpen in 2019, using the latest gear from… https://t.co/m1whwTivol" +06/25/2018,Sports_celeb,@McIlroyRory,Thank you @travelerschamp for another special week. One of the best stops on tour. https://t.co/hr1mRwdWNi +06/20/2018,Sports_celeb,@McIlroyRory,RT @TravelersChamp: Hope you got your swings in. The golf counts tomorrow. #TravelersChamp https://t.co/IjttCyaozA +06/20/2018,Sports_celeb,@McIlroyRory,When you hit the island green @TravelersChamp you get a wee perk! Thanks @BirdiesForBrave https://t.co/UcQQEDoxgm +06/19/2018,Sports_celeb,@McIlroyRory,Well done @c_pats on winning my signed #USOpen custom-made @TaylorMadeGolf bag! Thanks everyone for participating… https://t.co/EU0gAi2jMA +06/05/2018,Sports_celeb,@McIlroyRory,Excited for Shinnecock Hills and @usopengolf! An outstanding course which will be a great championship test! Like m… https://t.co/yUXILV28hY +05/29/2018,Sports_celeb,@McIlroyRory,Thank you @jacknicklaus! Love being back at the @MemorialGolf ⛳️👌🏻 https://t.co/ezH1qjiP6f +05/15/2018,Sports_celeb,@McIlroyRory,Yesterday I returned to Congressional Country Club for the first time since winning the 2011 @usopengolf. It brough… https://t.co/iTYvnrglHB +05/07/2018,Sports_celeb,@McIlroyRory,Looking forward to this week @THEPLAYERSChamp! ⛳️ https://t.co/v3Xf8Vo7r1 +05/07/2018,Sports_celeb,@McIlroyRory,Another enjoyable week in Charlotte at the @WellsFargoGolf. Thanks for all the support and birthday wishes!🎂 Next s… https://t.co/eDLCfP2I2J +05/01/2018,Sports_celeb,@McIlroyRory,It’s @WellsFargoGolf week! https://t.co/u7fvNs8Pts +04/25/2018,Sports_celeb,@McIlroyRory,Long Drive competition next time @padraig_h #AdareManor #JPProAm2020 https://t.co/Cgvzvf4svC +04/21/2018,Sports_celeb,@McIlroyRory,😁 https://t.co/K0AFncjlf7 +04/20/2018,Sports_celeb,@McIlroyRory,Such a pleasure to play @TheAdareManor today. The golf course is parkland perfection. The exhibition match finished… https://t.co/kZ1iHnj9Ta +04/20/2018,Sports_celeb,@McIlroyRory,"RT @JPProAm: Tickets are now on sale for the 2020 JP McManus Pro-Am at Adare Manor! #JPProAm2020 + +https://t.co/YsjhGzkJHw https://t.co/A3V…" +04/19/2018,Sports_celeb,@McIlroyRory,A spectacular new golf course with an incredible backdrop of the historic Adare Manor. Looking forward to the exhib… https://t.co/lIGgZLBO6E +04/15/2018,Sports_celeb,@McIlroyRory,RT @OGOLead: On Part 2 of our podcast @McIlroyRory describes how he stays hungry and his views on inspirational leadership. https://t.co/az… +04/01/2018,Sports_celeb,@McIlroyRory,Really fun event to kick off Masters week at Augusta National. Check out @DriveChipPutt on @GolfChannel and watch t… https://t.co/k9LY9HaDzV +03/29/2018,Sports_celeb,@McIlroyRory,Thanks @DavidNovakOGO and @OGOLead. I enjoyed our conversation. https://t.co/RhqnkMta4C +03/28/2018,Sports_celeb,@McIlroyRory,.@PGAjrLeague allows kids to learn to play golf in a social team environment! All skill levels are welcome. Find yo… https://t.co/b7piupnAYm +03/28/2018,Sports_celeb,@McIlroyRory,Looking forward to going back to Wentworth for the @BMWPGA https://t.co/G1uc17GIub +03/27/2018,Sports_celeb,@McIlroyRory,"RT @THEPLAYERSChamp: After a big win @APinv, @McIlroyRory commits to #THEPLAYERS in search of his first title at the tournament. https://t.…" +03/24/2018,Sports_celeb,@McIlroyRory,Always fun spending time with you @MartySmithESPN https://t.co/po2dy5iqYv +03/21/2018,Sports_celeb,@McIlroyRory,Congratulations @burle_eric on winning the @APinv signed flag. Direct message me your details and my team will ship it to you. +03/21/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Blue = Rory +Gray = Field + +#M3driver #TwistFace https://t.co/1tbiSlfvrg" +03/20/2018,Sports_celeb,@McIlroyRory,"To celebrate my victory yesterday at Bay Hill, I’m giving away this signed @APinv flag. Simply RETWEET or FAVOURITE… https://t.co/h3D1C7ekSB" +03/19/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: With his new #TPcollection Black Copper (Soto) putter in the bag, Rory lead the field in strokes gained putting and too…" +03/19/2018,Sports_celeb,@McIlroyRory,"RT @PGATOUR: The big drives. ✅ +Laser-like irons. ✅ +Clutch putts. ✅ + +@McIlroyRory caught everyone's attention on Sunday. https://t.co/fW…" +03/19/2018,Sports_celeb,@McIlroyRory,539 days but worth the wait! So proud to win the 2018 @APinv https://t.co/I09vDrerKM +03/15/2018,Sports_celeb,@McIlroyRory,Had a blast @DriveShackUSA in Orlando today. Great food and a real fun experience. #PlayOn #DriveShack https://t.co/CByUTMNwlJ +03/07/2018,Sports_celeb,@McIlroyRory,Enjoying my first visit to @Innisbrook and so impressed with the course. Thanks @ValsparChamp for looking after us… https://t.co/O3gg1Jjbmq +02/17/2018,Sports_celeb,@McIlroyRory,Congrats on reclaiming #1 https://t.co/6242sEyhzn +02/15/2018,Sports_celeb,@McIlroyRory,Visited @TaylorMadeGolf campus this week and was completely blown away. Extremely passionate employees and literal… https://t.co/huMvTiv2qS +02/13/2018,Sports_celeb,@McIlroyRory,@TaylorMadeGolf My first day as Social Media Manager @TaylorMadeGolf! #TwistFace https://t.co/Yh8lucSC2Y +02/13/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: The result of analyzing hundreds of thousands of swings from real golfers, #TwistFace reshapes the club face to give ev…" +02/09/2018,Sports_celeb,@McIlroyRory,👀 #LDNR https://t.co/snHadgFTgo +02/07/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: #TwistFace. +#M3driver. +Available 16th of Feb. https://t.co/VRaiL9sR7W" +01/31/2018,Sports_celeb,@McIlroyRory,Excited to return to Connecticut for the @TravelersChamp on the @PGATOUR this summer! #TravelersChamp ⛳️🏌🏻‍♂️ https://t.co/GlLQTibG1C +01/30/2018,Sports_celeb,@McIlroyRory,Well done Saoirse Lambe and thank you @OMEGAGolfDubai & @omegawatches for looking after us so well last week.… https://t.co/8IP4w2MWFs +01/26/2018,Sports_celeb,@McIlroyRory,"Live at the Omega Constellation Clinic now! For all the action, visit: https://t.co/UAUZp3pC2i" +01/26/2018,Sports_celeb,@McIlroyRory,I will be helping one lucky winner improve their swing at the Omega Constellation Clinic after play today here in D… https://t.co/KQLFEveXnA +01/24/2018,Sports_celeb,@McIlroyRory,It’s ProAm day @OMEGAGolfDubai with team @omegawatches & @NiallOfficial 🏌If you didn't get the chance to enter to m… https://t.co/epN5ttCIBM +01/23/2018,Sports_celeb,@McIlroyRory,Perfect morning for some range work @OMEGAGolfDubai https://t.co/47RRNHD263 +01/18/2018,Sports_celeb,@McIlroyRory,Oscar Murphy 👏 A star of the future 🏌🏻‍♂️⛳️ https://t.co/0GSSbYZJ6n +01/16/2018,Sports_celeb,@McIlroyRory,Numbers are looking great on my end as well. 👍 Going to be a fun week with #TwistFace at the #ADGolfChamps ⛳️ https://t.co/gNIE1ikTZj +01/16/2018,Sports_celeb,@McIlroyRory,Excited to be back...with this guy 🦅...at the @ADGolfChamps ⛳️ https://t.co/QvD7TNQnOu +01/13/2018,Sports_celeb,@McIlroyRory,Cool view up high in Dubai https://t.co/8rki2XFam7 +01/11/2018,Sports_celeb,@McIlroyRory,Fancy a golf lesson with me? Buy a ticket for the #ODDC18 & you can enter to WIN the opportunity to be a part of th… https://t.co/56yLCfQ4d1 +01/05/2018,Sports_celeb,@McIlroyRory,Want to golf with myself and @NiallOfficial in Dubai on Jan 24th? Download the @voxgolf app & enter your 9-hole sco… https://t.co/Jt7xYFMQCI +01/03/2018,Sports_celeb,@McIlroyRory,Excited for a busy 2018 season with this in my bag. #TwistFace #TeamTaylorMade #Ad https://t.co/X9M2wD1UyO +01/03/2018,Sports_celeb,@McIlroyRory,Want to play 9 holes with me and @DJohnsonPGA in the ProAm #inAbuDhabi on Jan 17th? Enter this amazing competition… https://t.co/d3WsLrqS6l +12/27/2017,Sports_celeb,@McIlroyRory,Excited to share this video from @TaylorMadeGolf. This might be the most logical innovation in golf. Follow… https://t.co/WclNmt5bNG +12/08/2017,Sports_celeb,@McIlroyRory,Looking forward to a busy start to my 2018 season. Some great new events on my schedule https://t.co/LeFJyFUFf5 +12/05/2017,Sports_celeb,@McIlroyRory,Watchmakers are true master craftsmen. Thanks for the factory tour @omegawatches 👍⌚️ https://t.co/FVfN6Ur5kU +12/05/2017,Sports_celeb,@McIlroyRory,What a special day with @omegawatches. Looking forward to many more years ahead. #HappyBirthday @zekiayan 🎂 https://t.co/ImXM3mhzQa +11/27/2017,Sports_celeb,@McIlroyRory,Fancy playing golf with me and @NiallOfficial at the @OMEGAGolfDubai next January? All you have to do is download t… https://t.co/go8c31LutI +11/27/2017,Sports_celeb,@McIlroyRory,Delighted to be teeing it up at the @OMEGAGolfDubai in January and later today have an exciting competition to shar… https://t.co/EqHU2wYWvK +11/25/2017,Sports_celeb,@McIlroyRory,@EuropeanTour Great effort guys! #ShotsRecreated +11/17/2017,Sports_celeb,@McIlroyRory,Best of luck to the 80 @PGAjrLeague golfers playing in the National Championship this weekend! https://t.co/wVWQoEF3mv +11/16/2017,Sports_celeb,@McIlroyRory,Wish I was playing the @DPWTC this morning but it's come a week too early for me to compete with the boys at… https://t.co/IfXKXmpQFh +10/24/2017,Sports_celeb,@McIlroyRory,Great read @JFeinsteinBooks. Made me feel like I was in BOTH team rooms! 🇪🇺🇺🇸🏆 #RyderCup https://t.co/RqLCLyOre9 +10/01/2017,Sports_celeb,@McIlroyRory,RT @Chrell83: @McIlroyRory giving Henry his ball leaving the 15th @CloseHouseGolf #BritishMasters - made our day!!!! https://t.co/pSL499Nuug +09/27/2017,Sports_celeb,@McIlroyRory,When in Newcastle with @alanshearer! ⚽️⛳️ https://t.co/uURH8u8g7f +09/14/2017,Sports_celeb,@McIlroyRory,RT @BMWUSA: @McIlroyRory delivered the #UltimateRush — a M760i — at the 2017 BMW Championship. https://t.co/LmU7j0QlzL +09/07/2017,Sports_celeb,@McIlroyRory,Great memories playing in the @WalkerCup back in 2007. Good luck to Team GB&I this weekend in LA⛳️🏆 https://t.co/xGefDZLTzd +09/06/2017,Sports_celeb,@McIlroyRory,@BMWchamps @rorymcilroy Congratulations Preston. See you next week @BMWchamps +08/28/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Retweet & Follow for a chance to win one of the first sets of #P790 irons +ft. breakthrough #SpeedFoam Technology. + +Rule…" +08/25/2017,Sports_celeb,@McIlroyRory,#MambaMentality https://t.co/Q8A0LfcuF0 +08/23/2017,Sports_celeb,@McIlroyRory,"RT @Yankees: .@McIlroyRory, @FedEx and cancer survivor Mary Browder turned Yankee Stadium into a Par 3 to announce a donation to @StJudeRes…" +08/23/2017,Sports_celeb,@McIlroyRory,"RT @CBSThisMorning: .@NorahODonnell caught up with @PGATOUR star @McIlroyRory to talk golf, @TigerWoods, @POTUS and @StJude. WATCH Wednesda…" +08/22/2017,Sports_celeb,@McIlroyRory,Honoured to be a part of @fedex's @stjude donation announcement today with the @PGATOUR! Perfect way to start the… https://t.co/MLS4VabT8D +08/22/2017,Sports_celeb,@McIlroyRory,All set up to hit some home runs today with the @Yankees. #FedExCares @PGATOUR @TaylorMadeGolf https://t.co/Wedu4M3HLN +08/18/2017,Sports_celeb,@McIlroyRory,Don’t miss your chance to play 18 holes with me next month @bmwchamps. Enter the https://t.co/eXUAeb207c Sweepstake… https://t.co/ogMuet6Cpn +08/10/2017,Sports_celeb,@McIlroyRory,Proud to share Traden Karch's story airing on @GolfChannel. Amazing young @PGAjrleaguegolf star defying the odds… https://t.co/Dhxd3zdjJv +08/08/2017,Sports_celeb,@McIlroyRory,Moon 🌙 Golf! ⛳️🏌️@omegawatches https://t.co/scVkgJsnS8 +08/07/2017,Sports_celeb,@McIlroyRory,Loved seeing all the @PGAjrleaguegolf jerseys today! Great spending time with all the future stars of the game at t… https://t.co/Dl7ehoqRcP +08/07/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Retweet & Follow for a chance to win a dozen balls each from Rory, DJ, Jason, Sergio, Rahm, and Rose. #TP5/#TP5x https:…" +07/30/2017,Sports_celeb,@McIlroyRory,Want to join me in the @BMWchamps Pro-Am! Enter the #TeamRorySweepstakes from @golfnow @TaylorMadeGolf & @voxgolf… https://t.co/Ca4RbrYBBg +07/25/2017,Sports_celeb,@McIlroyRory,Want to walk inside the ropes with me at the 2017 #BMWChampionship at Conway Farms? Enter now for your chance to wi… https://t.co/dDsBeGfPB5 +07/16/2017,Sports_celeb,@McIlroyRory,#RO8ER #JustDoIt https://t.co/FB5HCeW4V5 +07/09/2017,Sports_celeb,@McIlroyRory,Congratulations @JonRahmpga on winning the #DDFIrishOpen and a huge thanks to all the fans who came out to support… https://t.co/pFp9hGDTma +06/30/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: More of the same this year, @McIlroyRory? 🎯🏆 + +🎟️ Don't miss out on tickets: https://t.co/WomugAJHxh https://t.co/6OqyxP3D…" +06/30/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: 6⃣ DAYS. TO. GO. + +🎟️ Tickets selling fast: https://t.co/iPLYnvOwU9 https://t.co/OtUpklTDwq" +06/29/2017,Sports_celeb,@McIlroyRory,"Thanks for all the great entries in our #RoarforRory @DDFIrishOpen comp. + +Congrats to winners George & St Ita's Pri… https://t.co/NftK6dKjjn" +06/27/2017,Sports_celeb,@McIlroyRory,RT @GolfChannel: Tonight at 9pm ET 'Chronicles of a Champion Golfer' continues with @McIlroyRory. Watch a sneak preview here: https://t.co/… +06/22/2017,Sports_celeb,@McIlroyRory,"Yesterday I met this special lady, Noreen Murnane who sadly 6 years ago suffered a stroke. I was honoured to make h… https://t.co/1rG4qoU965" +06/19/2017,Sports_celeb,@McIlroyRory,Massive congrats to @BKoepka on yesterday's win! Awesome to watch down the stretch. Welcome to the club! 🏆🇺🇸➖1️⃣6️⃣ +06/17/2017,Sports_celeb,@McIlroyRory,@elkpga That's why jack designed 100's of golf courses... and it's knew... mustn't have taught grammar in the 50's.... +06/17/2017,Sports_celeb,@McIlroyRory,"@elkpga More like 200mil... not bad for a ""bored"" 28 year old... plenty more where that came from. https://t.co/R2nigEaee7" +06/13/2017,Sports_celeb,@McIlroyRory,RT @roryfoundation: #PepGuardiola will be joining @McIlroyRory & #JamesNesbitt at @BelWaterfront on July 4th for #EveningwithRory - just 3… +06/11/2017,Sports_celeb,@McIlroyRory,🏆🏆🏆🏆🏆🏆🏆🏆🏆🏆 #VamosRafa https://t.co/DcVvqr6iPq +06/10/2017,Sports_celeb,@McIlroyRory,I'm sure I hit every fairway today... 🤔😂 https://t.co/pgcIXgPjGN +06/08/2017,Sports_celeb,@McIlroyRory,"Pleased to announce Hideki is joining us at the @DDFIrishOpen! + +Get tickets: https://t.co/pBtz5uYMrJ https://t.co/DT22ftWmIW" +06/07/2017,Sports_celeb,@McIlroyRory,RT @roryfoundation: We're giving one lucky golfer a chance to play in the Pro Am at the @DDFIrishOpen. Here's @McIlroyRory on what to do to… +06/05/2017,Sports_celeb,@McIlroyRory,Good progress made over the past 2 weeks in @Quinta_do_Lago Portugal. Excited for the US Open. https://t.co/2Zqi0dvRlo +06/02/2017,Sports_celeb,@McIlroyRory,"Want to walk inside the ropes with me at the @DDFIrishOpen? + +Go to https://t.co/UuD0yUYiR8 for more details. https://t.co/j34uAMRfmd" +05/27/2017,Sports_celeb,@McIlroyRory,"RT @EuropeanTour: Aaron's dad emailed us to ask if we could do something for his 9th birthday 🎂 + +We decided to do something special. https:…" +05/26/2017,Sports_celeb,@McIlroyRory,"Wentworth looks mint this week. Gutted not to be there, but well done to everyone involved getting the course back to where it should be!" +05/24/2017,Sports_celeb,@McIlroyRory,"RT @Chris3Wood: I'm auctioning my @RyderCupEurope bag signed by every 🇪🇺player for @CHSW. Please bid to help this incredible cause + +https:/…" +05/23/2017,Sports_celeb,@McIlroyRory,This makes me so angry and sad at the same time. Thoughts and prayers with everyone in Manchester at this horrific time +05/21/2017,Sports_celeb,@McIlroyRory,@JustinThomas34 You'll try anything trying to save double bogey 😂 +05/20/2017,Sports_celeb,@McIlroyRory,Didn't know I had a wrist injury too 😳 https://t.co/IkeEBgXTX4 +05/09/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Time to show the world what you’re really made of. + +Welcome to the family, Rory. #TeamTaylorMade https://t.co/akofFlZI1X" +05/09/2017,Sports_celeb,@McIlroyRory,Proud to join the @TaylorMadeGolf family. New Bag. New Clubs. New Ball. #ThePlayers https://t.co/rAWiqGKJXW https://t.co/J2w7haZPZP +05/09/2017,Sports_celeb,@McIlroyRory,Final tweaks are made. #ThePlayers https://t.co/BtbD8FQXYH +05/09/2017,Sports_celeb,@McIlroyRory,"Don't worry boys, I’ve been keeping a close eye on the #FedExCup. Long way to go @DJohnsonPGA!! 🏆💪😉 https://t.co/0dNGu98qGZ" +05/07/2017,Sports_celeb,@McIlroyRory,Back on the range and ready for next week's @THEPLAYERSChamp https://t.co/mMHPMggrir +05/04/2017,Sports_celeb,@McIlroyRory,Thank you for all the birthday wishes! It's been an incredible few weeks. Exciting times ahead! +04/11/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: Fancy an evening with @McIlroyRory? + +Tickets available now: https://t.co/en9mC7gQIU https://t.co/sbFPYc6fwr" +04/09/2017,Sports_celeb,@McIlroyRory,"2 unbelievable players and 2 great friends, but I couldn't be happier for @TheSergioGarcia. You deserve it all amigo!!" +04/09/2017,Sports_celeb,@McIlroyRory,Let him have one.... VAMOS!!! +04/02/2017,Sports_celeb,@McIlroyRory,"Looking forward to the next 10+ years as a @nike athlete! +https://t.co/m4abneH1yQ" +04/02/2017,Sports_celeb,@McIlroyRory,Enjoyed spending time with you @MartySmithESPN https://t.co/BxOQXPdPXg +03/28/2017,Sports_celeb,@McIlroyRory,RT @rioferdy5: My documentary Being Mum and Dad will be on @BBCOne tonight at 9pm… Thanks for all your messages & unconditional support! ht… +03/27/2017,Sports_celeb,@McIlroyRory,Check out my 2017 summer schedule on my new website https://t.co/LeFJyFUFf5. Hope you like it! https://t.co/2B46XSDTVP +03/20/2017,Sports_celeb,@McIlroyRory,Thank you to everyone at Bay Hill for a great week. Tried to play like AP would've wanted me to down the stretch. Taking the positives 🙌 +03/19/2017,Sports_celeb,@McIlroyRory,RT @IanJamesPoulter: The last time @McIlroyRory sat in that passenger seat it was at Medinah @RyderCupEurope 2012 being driven at speed to… +03/14/2017,Sports_celeb,@McIlroyRory,A letter from AP after my first major. Great words of wisdom as always. Can't wait to play @APinv this week and cel… https://t.co/h0bMaBkGYU +03/06/2017,Sports_celeb,@McIlroyRory,@Skratch @NoLayingUp https://t.co/JZkLFcPvsi +03/06/2017,Sports_celeb,@McIlroyRory,😂😂😂 https://t.co/9382qrX1QN +03/05/2017,Sports_celeb,@McIlroyRory,.@JustinThomas34 it was so on plane though... should be proud of that! https://t.co/CwKoIEpIXF +02/26/2017,Sports_celeb,@McIlroyRory,Johnny still not impressed 😳 https://t.co/t6yMltdgqs +02/24/2017,Sports_celeb,@McIlroyRory,https://t.co/T4N0cFyoaY +02/13/2017,Sports_celeb,@McIlroyRory,RT @KylePorterCBS: https://t.co/2eHYv5yyY6 +02/10/2017,Sports_celeb,@McIlroyRory,Enjoyed this little back and forth with one of my favourite golf writers over the past few days. Take a look if you… https://t.co/Uoiz2cgDR3 +02/05/2017,Sports_celeb,@McIlroyRory,Congrats @TheSergioGarcia! Impressive stuff all week 👏👍👌🏆 +02/02/2017,Sports_celeb,@McIlroyRory,RT @DarrenClarke60: How many Claret Jugs have you won??? 🛎end! https://t.co/ugWK7Dff6C +02/01/2017,Sports_celeb,@McIlroyRory,RT @PGAjrleaguegolf: Join the fun! Register for PGA Junior League Golf today: https://t.co/J5BYgYDKhR https://t.co/lGVIjLG1ye +02/01/2017,Sports_celeb,@McIlroyRory,"Sorry to disappoint, but it's only me again.... bored, injured golfer with too much time on his hands! https://t.co/a7NGb1phhW" +01/29/2017,Sports_celeb,@McIlroyRory,🐐🐐🐐🐐🐐🐐🐐 +01/29/2017,Sports_celeb,@McIlroyRory,2 incredible warriors @RealCFrampton and @leosantacruz2. We're all so proud of you Carl. Let's get it on again in Belfast!! #trilogy +01/24/2017,Sports_celeb,@McIlroyRory,I was ridiculously flattering myself with the Federer comparison. He's the 🐐 and I'm obviously not. I just have a t… https://t.co/5hxBR7fuKl +01/21/2017,Sports_celeb,@McIlroyRory,A bit late on this one... another great bit of content from the @EuropeanTour guys 😂😂 https://t.co/kRN3qdYSSB +01/21/2017,Sports_celeb,@McIlroyRory,"RT @ManUtd: Record-breaker and history-maker. + +What an incredible achievement. #ROONEY250 https://t.co/xbN4w9TOzZ" +01/19/2017,Sports_celeb,@McIlroyRory,@chambleebrandel Last thing I'll say on this... my hands are ahead at impact and I'm at least 3 degrees up with my… https://t.co/giWroHDEtG +01/18/2017,Sports_celeb,@McIlroyRory,Pretty sure hitting up with your driver works @chambleebrandel 😉 https://t.co/OLU3ZO815C +01/18/2017,Sports_celeb,@McIlroyRory,@chambleebrandel @flightscopePhD It's 2017 and Jordan is hitting a 3 wood in that photo. To get the most out of mod… https://t.co/os9Po4cujG +01/15/2017,Sports_celeb,@McIlroyRory,"RT @PaulKimmage: The Essential Rory: Part Two +https://t.co/XPiM2Tctn1" +01/15/2017,Sports_celeb,@McIlroyRory,Great playing @stormygraeme! What a great story after last year. Thanks to @TheBig_Easy and everyone in SA for making this week so special. +01/11/2017,Sports_celeb,@McIlroyRory,Want to play 9 holes with me in the ProAm #InAbuDhabi next week? Enter this amazing competition from @AbuDhabiSC an… https://t.co/XbQOwpzukS +01/09/2017,Sports_celeb,@McIlroyRory,We've had a trip of a lifetime to @londolozi over the last few days. This big guy came to say hello last night!! https://t.co/VrjsTGjEum +12/27/2016,Sports_celeb,@McIlroyRory,I've a pea head and the hats were way too big for me! https://t.co/YrOZs4qi8C +12/22/2016,Sports_celeb,@McIlroyRory,Wake me up when it's 2017. https://t.co/6qrFNXyC46 +12/12/2016,Sports_celeb,@McIlroyRory,"RT @playofffinale: The vintage Coca-Cola vending machine has departed 🚚 + +Next stop: 2016 #FedExCup winner's house 😎 https://t.co/t2KLAyVn1F" +12/03/2016,Sports_celeb,@McIlroyRory,RT @rte: When you meet your hero. The look on his face! Charlie Smyth (9) from Cavan & his idol @McIlroyRory #LateLateToyShow https://t.co/… +11/30/2016,Sports_celeb,@McIlroyRory,Pleasure to meet you. Hope the recovery goes well! https://t.co/7qTSwI2DbG +11/24/2016,Sports_celeb,@McIlroyRory,Early morning walk to prepare for copious amounts of turkey.... Happy Thanksgiving!! 🦃🍽🏈😴 https://t.co/UIKqsDGq1R +11/23/2016,Sports_celeb,@McIlroyRory,My hero 😂😂😂 https://t.co/WhDGYuzuX4 +11/21/2016,Sports_celeb,@McIlroyRory,RT @EuropeanTour: RT this episode to be in a chance of winning @McIlroyRory's socks. Behind the scenes with Billy & @MattFitz94 wins big in… +11/18/2016,Sports_celeb,@McIlroyRory,"RT @EuropeanTour: When Billy met Rory + +@JumeirahGolfEst https://t.co/jazYXtE1iU" +11/16/2016,Sports_celeb,@McIlroyRory,RT @IrishRugby: Ready For The World. Liam Neeson narrates Ireland's bid to host Rugby World Cup 2023 #Ireland2023 https://t.co/zcZGBqsnO0 +11/16/2016,Sports_celeb,@McIlroyRory,Caught up with Billy today. Maybe the funniest interview I've ever done. Look out for the full video tomorrow. 😂  https://t.co/629qhYeNsw +11/15/2016,Sports_celeb,@McIlroyRory,Good luck to @eboudreaux12 and @DartmouthMBK in their home opener against Fairfield tonight! #GoBigGreen 👍🏀 https://t.co/jXl6sSY8eD +11/05/2016,Sports_celeb,@McIlroyRory,Xjdjdosjnajshehebdbshsjdhchxnslapehdvzjsjdjskwkdhsjsks!!!!!!!!!!!!!!!!!!! +11/01/2016,Sports_celeb,@McIlroyRory,"RT @NoLayingUp: NLU Podcast, Episode 56: @McIlroyRory talks Ryder Cup, Augusta, major championships, and life: https://t.co/BSRY94uHQp" +10/01/2016,Sports_celeb,@McIlroyRory,"RT @RyderCupEurope: Finishing your match Rory McIlroy-style. + +#TeamEurope https://t.co/hpUCT227Ja" +09/30/2016,Sports_celeb,@McIlroyRory,Come on Rosey!!! #TeamEurope https://t.co/Pa2iXqdxW4 +09/29/2016,Sports_celeb,@McIlroyRory,Has the @rydercup started already??🇪🇺🇺🇸 https://t.co/s6EImcbnZv +09/29/2016,Sports_celeb,@McIlroyRory,RT @Fooch1993: @McIlroyRory ...... .... 👍👍👍🇪🇺#MiddleWicket https://t.co/3Xg9IZaSUK +09/28/2016,Sports_celeb,@McIlroyRory,RT @RyderCupEurope: Rory's #TeamEurope kicks. https://t.co/5RzESRw3gq +09/27/2016,Sports_celeb,@McIlroyRory,#TeamEurope https://t.co/h5iZCmVZ3B +09/27/2016,Sports_celeb,@McIlroyRory,"Before this weekend, I remember the 2012 @RyderCup and the best prematch speech I’ve ever heard.… https://t.co/iQ7ix9Q2ZO" +09/26/2016,Sports_celeb,@McIlroyRory,Remembering the special times I spent with Mr Palmer at Bay Hill. A true pioneer for our sport. Forever remembered. https://t.co/qJQBpDWTWv +09/06/2016,Sports_celeb,@McIlroyRory,RT @RickieFowler: I've always been a big fan of @McIlroyRory haha glad we were both able to do something special for Brady last week!! http… +09/04/2016,Sports_celeb,@McIlroyRory,Thanks @lionsgatemovies @mark_wahlberg for the advance screening of #DeepwaterHorizonMovie. Out Sept 30th. Amazing! https://t.co/RgZ86aQ7E8 +08/26/2016,Sports_celeb,@McIlroyRory,Brilliant @thomasbjorngolf 😂😂 https://t.co/QIpCSYKLv8 +08/21/2016,Sports_celeb,@McIlroyRory,RT @ufc: #ConorMcGregor gets it done!!!!!!! #UFC202 https://t.co/23sGogQDqx +08/20/2016,Sports_celeb,@McIlroyRory,Good luck in the US am final tomorrow @DalkeKong. Hopefully it's a gun show and a stripe show 💪💪 +08/20/2016,Sports_celeb,@McIlroyRory,"RT @RyderCupEurope: Welcome to #TeamEurope 🇪🇺 + +https://t.co/p1vBDU4o8X https://t.co/i9Eh7hmlKn" +08/16/2016,Sports_celeb,@McIlroyRory,"RT @roryfoundation: We are absolutely delighted to have raised €951,000 for @Barretstown @JackandJill1997 @LauraLynnHouse https://t.co/Kqq…" +08/10/2016,Sports_celeb,@McIlroyRory,"RT @FirstTeeChicago: Be sure to purchase your tickets for the Taste of The First Tee with @LukeDonald and @McIlroyRory @MedinahCC +https://…" +08/07/2016,Sports_celeb,@McIlroyRory,.@paddyb_ireland @mickconlan11 good luck lads! If your boxing is as good as your tweeting it should be 2 guaranteed golds!! 😂🏅🏅👏🏼 +08/04/2016,Sports_celeb,@McIlroyRory,Sad for @nikegolf employees that worked so hard and made genuinely great golf equipment. Your support will always be appreciated #TeamNike +07/27/2016,Sports_celeb,@McIlroyRory,Wee bit slow there @TheSergioGarcia #PGAChamp @omegawatches #OMEGAmychoice https://t.co/1MfBb1lpX0 +07/26/2016,Sports_celeb,@McIlroyRory,RT @DDFIrishOpen: The 2017 Dubai Duty Free Irish Open is going to @PortstewartGC and we are very excited. #DDFIrishOpen2017 https://t.co/5U… +07/26/2016,Sports_celeb,@McIlroyRory,"RT @PGAChampionship: #PGAChamp @McIlroyRory has arrived! +Follow #RoryAllAccess to go behind-the-scenes during his Practice Round. https://t…" +07/23/2016,Sports_celeb,@McIlroyRory,Nice visit to Quail Hollow today. New changes for '17 PGA look great! Always good to get some inspiration too 😉 https://t.co/lI6n53wuT9 +07/22/2016,Sports_celeb,@McIlroyRory,"My story began in Holywood, NI, where I learned to love golf & dreamed of becoming a Major champion. @Nike #JustDoIt https://t.co/vQv59ah8Yp" +07/18/2016,Sports_celeb,@McIlroyRory,RT @TheSergioGarcia: Awesome to have so many good friends showing up for my charity event in Switzerland! Thanks guys! #sergioandfriends ht… +07/14/2016,Sports_celeb,@McIlroyRory,RT @SkySportsGolf: LIVE on #Periscope: Rory McIlroy takes on Henni's word association game! https://t.co/IByJKwqwZ4 +07/12/2016,Sports_celeb,@McIlroyRory,"Enjoyed meeting the fans at #TheOpen Autograph Zone today +https://t.co/76fj5pWzVY" +07/12/2016,Sports_celeb,@McIlroyRory,Had a great time visiting the Autograph Zone at #TheOpen today! #KidsGoFree https://t.co/v7zLMBi9Fa +07/01/2016,Sports_celeb,@McIlroyRory,"RT @nikefootball: It's not where you start. It's what you start: https://t.co/6ru3o8yTCP + +#SparkBrilliance +https://t.co/GCeD9YhOFH" +06/25/2016,Sports_celeb,@McIlroyRory,"You did us all proud @NorthernIreland. It's only the beginning, let's get to the World Cup in 2018 #GAWA" +06/25/2016,Sports_celeb,@McIlroyRory,Landed in London to see the big man @anthonyfjoshua in action tonight. Gonna be a great night of boxing on Sky Sports Box Office. #andstill +06/25/2016,Sports_celeb,@McIlroyRory,Come on the #GAWA #DareToDream +06/21/2016,Sports_celeb,@McIlroyRory,RT @RealCFrampton: Straight out to celebrate with a kebab and a shave #Tur #NIR +06/21/2016,Sports_celeb,@McIlroyRory,Last 16!!! #GAWA +06/21/2016,Sports_celeb,@McIlroyRory,See ya soon Paris!! #NIR #GAWA https://t.co/17yDMu6Y34 +06/20/2016,Sports_celeb,@McIlroyRory,Massive congrats @DJohnsonPGA! The wait is over! Feel for @ShaneLowryGolf but he'll come back stronger from this experience. +06/19/2016,Sports_celeb,@McIlroyRory,Take that @usga +06/19/2016,Sports_celeb,@McIlroyRory,Did he mention common sense? https://t.co/TWcVVmVvAb +06/19/2016,Sports_celeb,@McIlroyRory,It's obviously affecting Shane too https://t.co/KZyyka32Fh +06/19/2016,Sports_celeb,@McIlroyRory,This isn't right for anyone on that golf course. If it was me I wouldn't hit another shot until this farce was rectified. +06/19/2016,Sports_celeb,@McIlroyRory,This is ridiculous... No penalty whatsoever for DJ. Let the guy play without this crap in his head. Amateur hour from @USGA +06/19/2016,Sports_celeb,@McIlroyRory,Best of luck to @ShaneLowryGolf today... Bring that trophy back to these shores and give Brendan the best Father's Day gift of all! ☘🏆 +06/19/2016,Sports_celeb,@McIlroyRory,That 2nd pin looks really fair 🤔 https://t.co/LbG8qz7coV +06/19/2016,Sports_celeb,@McIlroyRory,It's m8 😉 https://t.co/gwXpLDPWxu +07/01/2018,Sports_celeb,@LewisHamilton,"Happy Sunday people!! God Bless you. Have an amazing day wherever you are. Where are you watching from? Remember, e… https://t.co/UQVqxo1Buh" +06/30/2018,Sports_celeb,@LewisHamilton,"Congrats to Valtteri, he produced a fantastic lap. A great result for the Team today. Sights are on the race tomorr… https://t.co/hQrD52ngrx" +06/30/2018,Sports_celeb,@LewisHamilton,Starting the day like... 🏍️💨🔥 #MVAgusta @mvagustamotor @MercedesAMGF1 #AustrianGP #F1 https://t.co/Xc1jmXuhHZ +06/29/2018,Sports_celeb,@LewisHamilton,You could ride shotgun with me in a Mercedes-AMG GT R before the US Grand Prix & score exclusive paddock access!⚡🔥… https://t.co/LIxt5Yj76j +06/28/2018,Sports_celeb,@LewisHamilton,"3 races in a row, it's an intense moment in the season. My favourite tunes and the best noise-cancelling keeps me f… https://t.co/NmVEQUGE8E" +06/28/2018,Sports_celeb,@LewisHamilton,Truly honoured to be nominated for the Best Driver Award in the 2018 @espn ESPYS Awards 🙏🏾. Thank you so much to my… https://t.co/zdyo2mHutt +06/26/2018,Sports_celeb,@LewisHamilton,The inspiring forces in my life. Who inspires you to rise? 🙌🏾#StillIRise #WhatsYourDrive @TommyHilfiger… https://t.co/zHcErqcHLa +06/25/2018,Sports_celeb,@LewisHamilton,Brotherly love 🙏🏾. Check back here tomorrow for something new... #StillIRise #WhatsYourDrive @nicolashamilton https://t.co/8f09zXmmWO +06/24/2018,Sports_celeb,@LewisHamilton,🍾😀🇫🇷 📷 @Spacesuit_Media @MercedesAMGF1 https://t.co/ehr66gEXwb +06/24/2018,Sports_celeb,@LewisHamilton,Magnifique!! 🇫🇷 It’s an amazing feeling winning here. I feel very grateful for a solid weekend. Huge thanks to ever… https://t.co/uhS0eNROxY +06/23/2018,Sports_celeb,@LewisHamilton,✌🏾🇫🇷 @MercedesAMGF1 https://t.co/KU7yTCwUpG +06/23/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: That’s how it’s done! 👊 An incredible 75th @F1 pole for @LewisHamilton! And his first ever at the #FrenchGP 🇫🇷 + +https:/…" +06/23/2018,Sports_celeb,@LewisHamilton,Trained hard with my @PUMA family in Marseille as we launched Mantra 🔥. The training shoe is super dope and will be… https://t.co/CnRul4APIG +06/22/2018,Sports_celeb,@LewisHamilton,Huge thanks to the Team for their hard work today as always. Looking forward to getting back out on the track tomor… https://t.co/ZCg5LCZzfa +06/22/2018,Sports_celeb,@LewisHamilton,Bonjour 🇫🇷 📷 @latimages https://t.co/jJ0aT4FCCy +06/21/2018,Sports_celeb,@LewisHamilton,"Wanna ride shotgun with me? I think the best way to warm up for the US Grand Prix is taking a lap with YOU! +ENTER… https://t.co/KEtEOS3w5O" +06/19/2018,Sports_celeb,@LewisHamilton,Now is your chance to compete in the 2018 FIA-certified @thegranturismo Championships in 'Sport Mode'! 🏁 I’ll be ke… https://t.co/nWg1SuyNFb +06/19/2018,Sports_celeb,@LewisHamilton,"Excited for my @papermagazine feature +👉🏾 https://t.co/2w2riqnujJ https://t.co/BBBSmdZ0mw" +06/19/2018,Sports_celeb,@LewisHamilton,RT @England: @LewisHamilton 👊 +06/18/2018,Sports_celeb,@LewisHamilton,Wishing our boys all the best for their first match in the World Cup! Let’s go! #WorldCup 🙌🏾 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽ 📷 @HKane https://t.co/Jikza3IPqM +06/17/2018,Sports_celeb,@LewisHamilton,Happy Father's Day to the World's best Dad. I am so grateful for everything 🙏🏾 #fathersday https://t.co/4Fmv9PfB2E +06/12/2018,Sports_celeb,@LewisHamilton,I want this car!!!!! #maybach6 @mercedesamg https://t.co/pnpbVNI6vt +06/10/2018,Sports_celeb,@LewisHamilton,We will come back stronger for the next race. It’s how you get back up that matters the most. We win and lose toget… https://t.co/e6gpYqV0c8 +06/10/2018,Sports_celeb,@LewisHamilton,Huge congratulations to this incredible athlete @RafaelNadal super happy for you dude. God Bless🙌🏾🙏🏾 #frenchopen… https://t.co/NhntS1un5g +06/10/2018,Sports_celeb,@LewisHamilton,Race day. Sending you all positive energy today. Let’s go!! #CanadianGP @MercedesAMGF1 https://t.co/FjMrnww0Bz +06/09/2018,Sports_celeb,@LewisHamilton,"My first ever Formula 1 win in my rookie year. I remember it like yesterday, my heart racing towards the final laps… https://t.co/rMAxGOk0Ry" +06/08/2018,Sports_celeb,@LewisHamilton,"Thank you for your continued support over all these years, you guys are amazing. I feel your energy each time I'm o… https://t.co/WWtLWu2WEl" +06/08/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: These guys have been coming to the #CanadianGP to support @LewisHamilton for a decade. + +We thought it was about time th…" +06/08/2018,Sports_celeb,@LewisHamilton,"Canada, what’s new? 🇨🇦🔥 #TommyHilfiger https://t.co/JCz7I48z7p" +06/07/2018,Sports_celeb,@LewisHamilton,This is the exact moment I won my first ever F1 race 11 years ago. A moment when a dream became a reality and it fe… https://t.co/fMLsZNXYzf +06/05/2018,Sports_celeb,@LewisHamilton,NYC 🔥 #cfdaawards #tommyhilfiger https://t.co/wqyn7zFgpM +06/05/2018,Sports_celeb,@LewisHamilton,RT @Team_LH: Who wants to be in a #WhatsYourDrive video with @LewisHamilton? 😱😄 Now's your chance #TeamLH!!🤞🏾 Just DM us @Team_LH and we'll… +06/04/2018,Sports_celeb,@LewisHamilton,When your girl ain’t hit you back 🤣 #roscoelovescoco #bestsunday #mood https://t.co/K28bS0lzTW +05/30/2018,Sports_celeb,@LewisHamilton,Throwback: meeting the Queen in 2008 was an honour I never thought would be possible when growing up. Just a kid fr… https://t.co/ADgki7O5ma +05/29/2018,Sports_celeb,@LewisHamilton,"It’s the hard times that help you grow. It’s how you get back up that matters the most. Never stop learning, never… https://t.co/qDvgGRboVp" +05/28/2018,Sports_celeb,@LewisHamilton,"I don't fear failure, I fear not living up to my potential. I take that passion with me and never stop learning. Ch… https://t.co/cSMTtfn7TH" +05/27/2018,Sports_celeb,@LewisHamilton,"RT @F1: Lewis: You need to do a belly flop +Danny: Hold my beer + +#MonacoGP #F1 https://t.co/6V4GRkGIaA" +05/27/2018,Sports_celeb,@LewisHamilton,Listened to my current favourite tunes to help me get in the zone before the race. Check out my Monaco playlist her… https://t.co/arMPIzE7VU +05/27/2018,Sports_celeb,@LewisHamilton,Big congrats to Daniel this weekend. Thank you to the team for your hard work all weekend as always. We’re looking… https://t.co/y1iLNlMp80 +05/27/2018,Sports_celeb,@LewisHamilton,Squad 🔥🙌🏾 https://t.co/7TiDJ4XMRm +05/26/2018,Sports_celeb,@LewisHamilton,"Congrats to Daniel today, he did a great job. We’re looking forward to the challenge tomorrow. Are you excited?… https://t.co/0hnsJE4Pyb" +05/25/2018,Sports_celeb,@LewisHamilton,🏍️💨 https://t.co/Wi0Rkc9N3T +05/24/2018,Sports_celeb,@LewisHamilton,"Monaco, we out for today 🔥🏍️💨 @MercedesAMGF1 https://t.co/EyHfclIrgK" +05/24/2018,Sports_celeb,@LewisHamilton,Full throttle on the streets ⚡ Are you looking forward to the race weekend? #MonacoGP 📷 Vid Vorsic @MercedesAMGF1 https://t.co/SfYxsma4cM +05/24/2018,Sports_celeb,@LewisHamilton,Diamonds dancin - top off 🔥 @MercedesAMGF1 https://t.co/HZb0OX5SXv +05/23/2018,Sports_celeb,@LewisHamilton,Pulling up to the track like... 🏍️💨🔥 #MonacoGP #puma @mvagustamotor https://t.co/WELL526XA0 +05/22/2018,Sports_celeb,@LewisHamilton,"2008 my second year of F1 and first Monaco GP win. What a race it was, one that continues to remind me to never giv… https://t.co/BrbovTXUAG" +05/21/2018,Sports_celeb,@LewisHamilton,The story of my tattoos 🙏🏾 @GQMagazine #tommyhilfiger #tattoo #ink https://t.co/9Tf7zrMcJg +05/20/2018,Sports_celeb,@LewisHamilton,Thank you to my bro @neymarjr for this dope jersey that he made with Café Pilão 🙌🏾. I’m going to sign and send it b… https://t.co/llLP63dxCF +05/19/2018,Sports_celeb,@LewisHamilton,Wishing Meghan and Harry all the best today! 🙌🏾🇬🇧 #royalwedding https://t.co/SYweMFJA8H +05/15/2018,Sports_celeb,@LewisHamilton,My Dad gave up everything for me. It was his support that made me feel I could do anything. This is how it all bega… https://t.co/udWpKVSlgs +05/14/2018,Sports_celeb,@LewisHamilton,I look back when I was a kid and remember the hunger I had to want to be in Formula 1. I never lost sight of that d… https://t.co/ngWh2tZohT +05/13/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: Yes Team! Back in business in Barcelona! + +Celebrating a #SpanishGP 1-2 trackside! 👊🇪🇸 https://t.co/6lNqdR83WV" +05/13/2018,Sports_celeb,@LewisHamilton,"What a feeling. It’s been an awesome weekend, the car felt incredible! I can’t thank the team enough for the hard w… https://t.co/7CwX0PNn3P" +05/12/2018,Sports_celeb,@LewisHamilton,💨 https://t.co/caz2n7paJI +05/12/2018,Sports_celeb,@LewisHamilton,Just love 🙏🏾 https://t.co/UCrT0dpEfB https://t.co/BMWO62ig9H +05/12/2018,Sports_celeb,@LewisHamilton,Pole position ⚡ skir skirr 💥 @MercedesAMGF1 https://t.co/9ZNYtZxsI9 +05/12/2018,Sports_celeb,@LewisHamilton,@F1Tricky @MercedesAMGF1 @Circuitcat_eng @F1 Thank you Marc 🙏🏾 +05/12/2018,Sports_celeb,@LewisHamilton,I'll never forget my roots 🙏🏾. Sending you all positive energy today #SpanishGP #F1 🇪🇸 @MercedesAMGF1 https://t.co/6rB1IAOPAx +05/11/2018,Sports_celeb,@LewisHamilton,Friday Practice - Done 👊🏾 @MercedesAMGF1 https://t.co/ZZzE740Wti +05/10/2018,Sports_celeb,@LewisHamilton,Brothers in white. I grew up watching and listening to my man puff. To stand here today as brothers is a honour and… https://t.co/3ok8ZIoG2f +05/08/2018,Sports_celeb,@LewisHamilton,Came thru drippin #MetGala2018 #TommyHilfiger https://t.co/F2Hx6B5sSo +05/04/2018,Sports_celeb,@LewisHamilton,Friday feeling... 🕺🏾#fbf 📷 @latimages https://t.co/1GJy8P7oby +05/03/2018,Sports_celeb,@LewisHamilton,Surround yourself with people who project positivity and inspire you 🔥#WhatsYourDrive @TommyHilfiger https://t.co/CXdrr4F52D +05/01/2018,Sports_celeb,@LewisHamilton,If my journey can inspire just one person to rise up and chase their dreams then it’s worth the world to me. See a… https://t.co/57AYKohrvP +04/30/2018,Sports_celeb,@LewisHamilton,"Don't let other people define who you are and what you stand for. There's a burning passion, a drive in all of us t… https://t.co/A3rfZyR4YY" +04/29/2018,Sports_celeb,@LewisHamilton,Today was a reminder of my dad’s advice he said to me as a kid of never giving up. Thank you to the team for workin… https://t.co/5UvPvDEYWT +04/29/2018,Sports_celeb,@LewisHamilton,Looking forward to this 🙌🏾 #proud https://t.co/RBzlXFcj35 +04/28/2018,Sports_celeb,@LewisHamilton,Super close today. The team did a great job overnight and we are a step forward. Looking forward to race day tomorr… https://t.co/5xFrWJQhWH +04/28/2018,Sports_celeb,@LewisHamilton,I am wishing you all an amazing weekend where ever you are in the world. Shine bright and live your best life!! God… https://t.co/wjwfGTRafY +04/27/2018,Sports_celeb,@LewisHamilton,Lots of information gathered today. We look forward to fighting tomorrow... 💥 #F1 #AzerbaijanGP @MercedesAMGF1 https://t.co/wjsSjcaS0K +04/26/2018,Sports_celeb,@LewisHamilton,Feels good to be back in Baku 🔥 #F1 📷 by @latimages @MercedesAMGF1 https://t.co/lmykvTYnpU +04/25/2018,Sports_celeb,@LewisHamilton,"As we approach the Azerbaijan GP weekend, our Team are fully focused on the immediate job at hand. I am always in a… https://t.co/nIbZJO59ud" +04/23/2018,Sports_celeb,@LewisHamilton,When Gigi took me for a spin...💥💥💥💥 #WhatsYourDrive @GiGiHadid @TommyHilfiger https://t.co/iLwPudWR1x +04/19/2018,Sports_celeb,@LewisHamilton,A kid with a dream. Never let go of your dream #tbt #youcan #believe 📷x @latimages https://t.co/m5v5hwgeS4 +04/19/2018,Sports_celeb,@LewisHamilton,💥 @MonsterEnergy https://t.co/v0WmdGFmID +04/18/2018,Sports_celeb,@LewisHamilton,"Surround yourself with positivity and drop the negativity that weighs you down. It’s not how you fall, but how you… https://t.co/M4mFW3OUJk" +04/18/2018,Sports_celeb,@LewisHamilton,RT @TommyHilfiger: We couldn’t be more thrilled to announce our new TommyXLewis collaborative collection with @LewisHamilton . Coming to a… +04/15/2018,Sports_celeb,@LewisHamilton,"Lots of learnings from this weekend. I am so grateful to the fans for their incredible support out here,… https://t.co/dsX2QC0zwC" +04/14/2018,Sports_celeb,@LewisHamilton,Awesome launching the new @Bose #SoundWear Companion in China this week. It's a portable speaker that sits comforta… https://t.co/DVFpO28Bh5 +04/14/2018,Sports_celeb,@LewisHamilton,"Thank you so much to the awesome fans here in China, I feel your immense energy! I will do everything to fight for… https://t.co/zAsWVWcAvP" +04/13/2018,Sports_celeb,@LewisHamilton,A good day. It always feels great to be back out on the track in Shanghai. We face strong competition this weekend… https://t.co/VwcvDkgbau +04/13/2018,Sports_celeb,@LewisHamilton,🔴🔴🔴 #ChineseGP #F1 @TommyHilfiger @MercedesAMGF1 https://t.co/8x0svRQDTw +04/12/2018,Sports_celeb,@LewisHamilton,"Ready to fight this weekend. #TeamLH, are you ready? 🇨🇳 #24Seven @PUMA #PUMAPerformance #PUMAPartner https://t.co/jl1RmvzLa3" +04/11/2018,Sports_celeb,@LewisHamilton,What a day. It’s such a dream come true to be collaborating with @TommyHilfiger to channel my creativity and love f… https://t.co/Y74A4LMv5K +04/10/2018,Sports_celeb,@LewisHamilton,"Every new day is a chance to be great, at whatever it is you are doing. A chance to grow, to fall and get back up,… https://t.co/gECy8iGbTD" +04/08/2018,Sports_celeb,@LewisHamilton,💥 https://t.co/nwPc5WxBvF +04/08/2018,Sports_celeb,@LewisHamilton,"Dope win, congrats @calcrutchlow 🔥🔥🔥 https://t.co/ApI5W6sDbH" +04/08/2018,Sports_celeb,@LewisHamilton,"9th to 3rd is a good result for damage limitation this weekend, thank you to the fans and the team for your hard wo… https://t.co/mXl6jdAiLe" +04/08/2018,Sports_celeb,@LewisHamilton,RT @MercedesAMGF1: 100 @MercedesAMGF1 races not out! See @LewisHamilton and Toto's full chat here 👇 https://t.co/D2Ap2nCVlj +04/07/2018,Sports_celeb,@LewisHamilton,Always up for a challenge. Looking forward to the race tomorrow #BahrainGP #F1 @MercedesAMGF1 https://t.co/XISX8jZ3CS +04/06/2018,Sports_celeb,@LewisHamilton,"Always good catching up 🔥 #BahrainGP #F1 +📷 Evgeniy Safronov https://t.co/tUfhSRFlZC" +04/04/2018,Sports_celeb,@LewisHamilton,"Eyes on the next 🏆 +@PUMA IGNITE Flash. #24Seven #PUMAPartner https://t.co/tw2QFcfxPu" +04/02/2018,Sports_celeb,@LewisHamilton,There's a drive in all of us. A dream we once had and countless actions that followed to make that dream exist in i… https://t.co/Nb0ss2SjQp +03/25/2018,Sports_celeb,@LewisHamilton,"Overall, this weekend has been positive. Congrats to Seb and the guys in red, today they did the better job and we… https://t.co/XlxsI87kUA" +03/24/2018,Sports_celeb,@LewisHamilton,"I have the best fans in the world. #TeamLH, thank you for the support and this video 🙌🏾 #StillWeRise https://t.co/tp7xKMlrxu" +03/24/2018,Sports_celeb,@LewisHamilton,"About today... 💥 +#F1 #AusGP #Pole @MercedesAMGF1 https://t.co/D9qAiMjLhI" +03/24/2018,Sports_celeb,@LewisHamilton,"Wow, it feels so good kicking off 2018 with Pole Position! Thank you to the Team for your continued hard work. Sigh… https://t.co/hGp7kzoNxW" +03/23/2018,Sports_celeb,@LewisHamilton,"For us to defeat dementia, we first need people to understand it. You can help by simply watching and sharing this… https://t.co/BrxjfcjxkZ" +03/23/2018,Sports_celeb,@LewisHamilton,"Guys, I’ve got 20 of these awesome noise-cancelling Bose​ QC35 II headphones to giveaway. Head to my Instagram acco… https://t.co/QBa7tFMa8c" +03/22/2018,Sports_celeb,@LewisHamilton,Anticipation before a race weekend ahead. I've missed this feeling… 🔥 #F1 #AusGP @MercedesAMGF1 https://t.co/EJArzoWvqd +03/22/2018,Sports_celeb,@LewisHamilton,Swapped out the F1 car for a scooter today in Melbourne. Throwback to my younger roots 🛴 https://t.co/BEhgRCLgjt +03/18/2018,Sports_celeb,@LewisHamilton,Who’s excited for the first race of the season next week?.. #F1 @MercedesAMGF1 https://t.co/lXqbKfHzHq +03/18/2018,Sports_celeb,@LewisHamilton,"Great to meet you, Lewis. Thank you for the card buddy 🙏🏾 https://t.co/988DTnI1mT" +03/15/2018,Sports_celeb,@LewisHamilton,BTS ⚡@TommyHilfiger #WhatsYourDrive https://t.co/iV5xQaUpXp +03/15/2018,Sports_celeb,@LewisHamilton,"RT @TommyHilfiger: Where speed and style collide. Introducing our new menswear ambassador, @LewisHamilton @MercedesAMGF1 +PS. Shop @LewisH…" +03/15/2018,Sports_celeb,@LewisHamilton,"Wow, I’m so excited to be menswear ambassador for @TommyHilfiger. It’s an honour to be a part of the family and I c… https://t.co/MqnMRM654Q" +03/14/2018,Sports_celeb,@LewisHamilton,"RT @TommyHilfiger: What drives a winning team? One word: Teamwork +@LewisHamilton @MercedesAMGF1 #WhatsYourDrive #DrivenByEachOther #Merce…" +03/12/2018,Sports_celeb,@LewisHamilton,Cruising sideways at NASA 👀🚀 https://t.co/vj4JbUi661 +03/09/2018,Sports_celeb,@LewisHamilton,"Testing, done. Let's get to racing... 🔥 +@MercedesAMGF1 #F1 https://t.co/zW8eD2t88h" +03/07/2018,Sports_celeb,@LewisHamilton,"Preparing for 200mph straights, 6G braking and 6G corners. @PUMA Mantra - coming summer 2018 #PUMAPartner #24Seven https://t.co/mmrFcG1uvC" +03/06/2018,Sports_celeb,@LewisHamilton,"This photo was taken before the 2017 season started. Before the battles, the wins, the defeats, the lows and the hi… https://t.co/1OcZTin0bX" +03/05/2018,Sports_celeb,@LewisHamilton,London is one of my favourite places to train. Awesome working out with some of @PUMA ’s finest in the IGNITE Flash… https://t.co/1fwNBUVzZG +03/01/2018,Sports_celeb,@LewisHamilton,"Testing. A time when all of the theory, research and hard work over winter are put to the test. After the weather w… https://t.co/JzPC217urZ" +03/01/2018,Sports_celeb,@LewisHamilton,RT @TommyHilfiger: Putting the champ to work 🔧🤓 Check out @LewisHamilton taking the F1 Pitstop Challenge #TOMMYNOW #MFW @MercedesAMGF1 htt… +02/27/2018,Sports_celeb,@LewisHamilton,"So proud of our team winning @LaureusSport's World Team of the Year. 1,500 people all with a shared vision. Honoure… https://t.co/74MxJ7hb2Y" +02/27/2018,Sports_celeb,@LewisHamilton,Dope that my 44 energy drink has now hit the shelves across Australia. I'll pick one up when I'm there next month f… https://t.co/dxbV3dVmnG +02/26/2018,Sports_celeb,@LewisHamilton,✈️ @TommyHilfiger https://t.co/1paRdQoBTc +02/22/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: And we're LIVE with @LewisHamilton! + +Follow along and join the conversation using #DrivenByEachOther + +https://t.co/dZ7mg…" +02/22/2018,Sports_celeb,@LewisHamilton,"In complete awe. The amount of focus, determination and expertise into every ounce of this car is astounding. I can… https://t.co/EL7jRYLe3z" +02/22/2018,Sports_celeb,@LewisHamilton,Are you guys ready to see the new car?.. ⚡⚡⚡⚡ @MercedesAMGF1 https://t.co/3g1pMDOEmC +02/21/2018,Sports_celeb,@LewisHamilton,Is MotoGP ready for me? Had an amazing track day with @calcrutchlow​ 🔥🔥🔥🔥 @MonsterEnergy 🎥X @thejonnyhynes 🎵X… https://t.co/RwNulxfGkW +02/20/2018,Sports_celeb,@LewisHamilton,Riding a motorcycle is an art form. I have nothing but respect for those competing at the top of their game in this… https://t.co/YTTZjwfXT2 +02/19/2018,Sports_celeb,@LewisHamilton,Awesome training with @HectorBellerin in LDN. @PUMA IGNITE FLASH ⚡ #PUMAPartner #24Seven https://t.co/Mp4z8g0htm +02/18/2018,Sports_celeb,@LewisHamilton,Hey @BubbaWallace! Wishing you the absolute best today in your race. Smash it!! 🙌🏽 🏁 +02/15/2018,Sports_celeb,@LewisHamilton,"To all those celebrating, I'd like wish you a happy Chinese New Year. Every time I visit China I learn something ne… https://t.co/TTQJsCwdIT" +02/09/2018,Sports_celeb,@LewisHamilton,Shredding into the weekend like... 🙌🏾 #MonsterEnergy #SkiDoo https://t.co/Z32HJujq22 +02/07/2018,Sports_celeb,@LewisHamilton,Proud of you Billy! 🙌🏾 https://t.co/bzZrim7hRD +02/05/2018,Sports_celeb,@LewisHamilton,The moment when a thousand years worth of working hours are put to the test. This is the moment that starts everyth… https://t.co/BmGI2482qQ +01/26/2018,Sports_celeb,@LewisHamilton,RT @MonsterEnergy: On track or on the mountain… @LewisHamilton likes to live on the edge! See more as he linked up with some of Monster Ene… +01/18/2018,Sports_celeb,@LewisHamilton,RT @MercedesAMGF1: 😱 We’re offering one lucky winner - AND a guest - the chance to be the FIRST fans to see the brand new 2018 Silver Arrow… +11/20/2015,Sports_celeb,@LewisHamilton,"RT @UncleRUSH: If you were in danger, would you do something about it? The answer might surprise you: #IWillNotWait #ActOnClimate https://t…" +12/28/2011,Sports_celeb,@LewisHamilton,RT @ItsMasuma_x: @LewisHamilton Yo Lewis! Any chance of a tweet? #TeamHamilton! +06/30/2018,Sports_celeb,@neymarjr,Neymar Jr. - Seleção Brasileira - 30/06/2018: https://t.co/aRCebnuvWg via @YouTube +06/29/2018,Sports_celeb,@neymarjr,Rabisca filhote 🖊 https://t.co/jf9TqGdNSo +06/28/2018,Sports_celeb,@neymarjr,My little boy 🕶❤️ https://t.co/jaaTTCK8Da +06/28/2018,Sports_celeb,@neymarjr,Assista o nosso 'Making Of' e confira um pouco do que aconteceu durante as gravações das campanhas da... https://t.co/gjCJqEeFHy +06/28/2018,Sports_celeb,@neymarjr,Varios Paranauê 😂🤣 https://t.co/wXNN9yR1ij +06/28/2018,Sports_celeb,@neymarjr,"Time, equipe, companheiros, família, ou chame como quiser, unidos e focados em um único objetivo 🇧🇷💚 https://t.co/3ZcmEkQu0g" +06/27/2018,Sports_celeb,@neymarjr,"Primeiro objetivo conquistado, parabéns rapaziada. +Vamos Brasil 🇧🇷💚 https://t.co/kgOa5VB399" +06/27/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 https://t.co/QvbPmfnW0r +06/26/2018,Sports_celeb,@neymarjr,Ready 😆⚽️ https://t.co/NxCiKViql9 +06/25/2018,Sports_celeb,@neymarjr,Alegria 🤣😂 @Phil_Coutinho https://t.co/eIHGQxCVRs +06/25/2018,Sports_celeb,@neymarjr,Neymar Jr. - Treino da Seleção Brasileira - 24/06/2018: https://t.co/C9sKsAYp9X via @YouTube +06/22/2018,Sports_celeb,@neymarjr,Brasil 2x0 Costa Rica no Instituto Neymar Jr: https://t.co/iMA3KUOyNJ via @YouTube +06/22/2018,Sports_celeb,@neymarjr,"Nem todos sabem o q passei pra chegar até aqui,falar até papagaio fala, agora fazer...O choro é de alegria, de supe… https://t.co/vvY3s31bZu" +06/22/2018,Sports_celeb,@neymarjr,#givesyouwings https://t.co/fqByPHq8tH +06/22/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 +. +. +. +📷Ricardo Nogueira https://t.co/yeWHobF7Z4" +06/21/2018,Sports_celeb,@neymarjr,Neymar Jr. - O Apoio da Torcida: https://t.co/4rAkZS5f3F via @YouTube +06/21/2018,Sports_celeb,@neymarjr,Preparados né não @marquinhos_m5 🤘🏽😝 https://t.co/epKnmicQ8J +06/21/2018,Sports_celeb,@neymarjr,"I got here because of my football. @nikefootball Believe. +. +Cheguei até aqui por causa do meu futebol.… https://t.co/wr9l1IY4Xo" +06/20/2018,Sports_celeb,@neymarjr,Focus. https://t.co/wrvGCQPRSB +06/20/2018,Sports_celeb,@neymarjr,Neymar Jr. - Making of Gagà Milano - Jan/18: https://t.co/zuORKk0DUD via @YouTube +06/19/2018,Sports_celeb,@neymarjr,Neymar Jr - Seleção Brasileira - Treino 19/06/2018: https://t.co/y8rrghocvs via @YouTube +06/17/2018,Sports_celeb,@neymarjr,Estréia da Copa do Mundo 2018: https://t.co/MfRTWpyeKB via @YouTube +06/17/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 https://t.co/oB21y8AdW5 +06/16/2018,Sports_celeb,@neymarjr,"Carlos Alberto Parreira - Boa Sorte, Neymar Jr!: https://t.co/HVZpMTt2Hj via @YouTube" +06/16/2018,Sports_celeb,@neymarjr,Carlos Alberto Parreira: https://t.co/FvRmdUTHyB via @YouTube +06/15/2018,Sports_celeb,@neymarjr,"Obrigado pela mensagem, Serginho Chulapa! https://t.co/YbzUNmCdiJ" +06/15/2018,Sports_celeb,@neymarjr,"Serginho Chulapa - Boa sorte, Neymar Jr!: https://t.co/VAnULYnAxC via @YouTube" +06/15/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Torcida: https://t.co/xxJwNTprLI via @YouTube +06/14/2018,Sports_celeb,@neymarjr,"RT @InstitutoNJr: Boa Sorte Brasil!!! Estamos na torcida 🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 +@neymarjr +@CBF_Futebol https://t.co/WV4PUE9tMW" +06/14/2018,Sports_celeb,@neymarjr,"É ruim de bola mas é meu parça. 😂 Hoje lança meu app, o NJRXP. E toda semana tem um super desafio. O @GilCebola zer… https://t.co/kr4FXdfGzr" +06/14/2018,Sports_celeb,@neymarjr,"Vagner Mancini - Boa sorte, Neymar Jr!: https://t.co/hCrTZohMkp via @YouTube" +06/14/2018,Sports_celeb,@neymarjr,Vagner Mancini: https://t.co/q57xsHHUTp via @YouTube +06/14/2018,Sports_celeb,@neymarjr,"RT @AppStore: And now an announcement from @NeymarJr about his new training app ⚽️ + +Coming soon, very soon 😉 https://t.co/WqRNPFhIoP" +06/13/2018,Sports_celeb,@neymarjr,❤️😍❤️ https://t.co/YeI0Br39Ph +06/13/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Treino 13/06/2018: https://t.co/4N9WMuo5Zk via @YouTube +06/13/2018,Sports_celeb,@neymarjr,Dorival Júnior: https://t.co/Lx8SHZN1RJ via @YouTube +06/13/2018,Sports_celeb,@neymarjr,"Dorival Júnior - Boa Sorte, Neymar Jr!: https://t.co/pGNwfnSb0I via @YouTube" +06/12/2018,Sports_celeb,@neymarjr,Aquela paradinha ⚽️ https://t.co/LgqsVDQRpj +06/12/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Treino 12/06/2018: https://t.co/E3mwJwrD1L via @YouTube +06/12/2018,Sports_celeb,@neymarjr,Luxemburgo: https://t.co/FPvdjUyT5B via @YouTube +06/12/2018,Sports_celeb,@neymarjr,"Luxemburgo - Boa Sorte, Neymar Jr!: https://t.co/2FpAkA3lSM via @YouTube" +06/12/2018,Sports_celeb,@neymarjr,"If you have some free time this summer, @WishShopping can help you find a new hobby +Se você tem algum tempo livre n… https://t.co/wNIBNYRBWH" +06/12/2018,Sports_celeb,@neymarjr,Feliz dia dos namorados MA LOVE ❤️🙏🏽 Te amo @BruMarquezine https://t.co/9DuSAtgHu3 +06/11/2018,Sports_celeb,@neymarjr,Adilson Batista: https://t.co/tMYSJg6mm8 via @YouTube +06/11/2018,Sports_celeb,@neymarjr,Adilson Batista - Boa Sorte Neymar Jr!: https://t.co/Tb8oykSQmQ via @YouTube +06/11/2018,Sports_celeb,@neymarjr,Brasil x Áustria: https://t.co/qjVqdlC2HW via @YouTube +06/10/2018,Sports_celeb,@neymarjr,"Partiu Rússia, partiu buscar o nosso sonho! ✈️🇷🇺 https://t.co/yVm1MMPmWF" +06/10/2018,Sports_celeb,@neymarjr,Lima: https://t.co/Fzxl6o2OdQ via @YouTube +06/10/2018,Sports_celeb,@neymarjr,Lima - Boa Sorte Neymar Jr.: https://t.co/cWRXoAeQMU via @YouTube +06/10/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️ https://t.co/LzaZqS5ad5 +06/09/2018,Sports_celeb,@neymarjr,Mano Menezes - Boa Sorte Neymar Jr!: https://t.co/Uok57FoPGB via @YouTube +06/09/2018,Sports_celeb,@neymarjr,Mano Menezes: https://t.co/M1IEkcDhBx via @YouTube +06/09/2018,Sports_celeb,@neymarjr,#FIFA19. I'm ready. @EASPORTSFIFA https://t.co/lDHE9fyjN3 https://t.co/r5dge95toe +06/09/2018,Sports_celeb,@neymarjr,Ser feliz sem motivo é a mais autêntica forma de felicidade. https://t.co/yqVsrGKdqj +06/08/2018,Sports_celeb,@neymarjr,Betinho - Boa Sorte Neymar JR!: https://t.co/mF4AzrqJZy via @YouTube +06/08/2018,Sports_celeb,@neymarjr,Betinho: https://t.co/vFKqR7bgTX via @YouTube +06/08/2018,Sports_celeb,@neymarjr,"Just what I needed....thanks @WishShopping +Exatamente o que eu precisava .... obrigado @WishShopping… https://t.co/pclGPJLbNS" +06/08/2018,Sports_celeb,@neymarjr,Narciso: https://t.co/bIyPJ7BvRm via @YouTube +06/08/2018,Sports_celeb,@neymarjr,"Narciso - Boa Sorte, Neymar Jr!: https://t.co/Nid9fu6TKs via @YouTube" +06/07/2018,Sports_celeb,@neymarjr,di menó @Phil_Coutinho #Craque https://t.co/RpATAy8A8l +06/07/2018,Sports_celeb,@neymarjr,"Dunga - Boa sorte, Neymar Jr!: https://t.co/WzuwscN5H7 via @YouTube" +06/07/2018,Sports_celeb,@neymarjr,Dunga: https://t.co/DK4OsGS6J5 via @YouTube +06/07/2018,Sports_celeb,@neymarjr,"Back and ready to shine 🇧🇷⚽ + +Check out my personal store for the latest #Mercurial at https://t.co/4s8czEJ3kd… https://t.co/QYqmyCP9gJ" +06/06/2018,Sports_celeb,@neymarjr,Treino Seleção Brasileira - 06/06/2018: https://t.co/dFr9KdUcKM via @YouTube +06/06/2018,Sports_celeb,@neymarjr,Muricy Ramalho: https://t.co/qAVvVF06Jy via @YouTube +06/06/2018,Sports_celeb,@neymarjr,Muricy Ramalho - Boa Sorte Neymar Jr!: https://t.co/SERfGn2poW via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Dia 16 - Treino Seleção Brasileira - Neymar Jr - 05/06/2018: https://t.co/F9lqhKJvrK via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/azymDbDAL8 16 - Treino Seleção Brasileira - Neymar Jr - 05/06/2018 +06/05/2018,Sports_celeb,@neymarjr,Rogério Micale: https://t.co/vjmvqd52DM via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Rogério Micale - Boa sorte Neymar Jr!: https://t.co/RtP6khz1Rl via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/rawFgU96ISério Micale - Boa sorte Neymar Jr! +06/05/2018,Sports_celeb,@neymarjr,Neymar Jr. - Treinos em Liverpool: https://t.co/H4oZP1TZsa via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Brasil x Croácia: https://t.co/Emj3a4VuUt via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/RIutyVTEFN x Croácia +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/ycigN2UCmR Jr. - Treinos em Liverpool +06/04/2018,Sports_celeb,@neymarjr,@TeamJuJu @PaniniAmerica ⚽ for 🏈? Hey @teamjuju yeah I have some of my @PaniniAmerica #FIFAWorldCup Stickers I’ll m… https://t.co/vsY3K31GzI +06/04/2018,Sports_celeb,@neymarjr,Ney Franco - Boa sorte Neymar Jr!: https://t.co/IyYaIfLbjE via @YouTube +06/04/2018,Sports_celeb,@neymarjr,Ney Franco: https://t.co/mpJbWBxKKD via @YouTube +06/04/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/Pt99uKuU7j Franco +06/04/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/1CJ8ExRXQr Franco - Boa sorte Neymar Jr! +06/03/2018,Sports_celeb,@neymarjr,Marcelo Martelotte: https://t.co/ES4kk17EMp via @YouTube +06/03/2018,Sports_celeb,@neymarjr,Marcelo Martelotte - Boa Sorte Neymar Jr!: https://t.co/o7JP5TNA9Z via @YouTube +06/03/2018,Sports_celeb,@neymarjr,"Para ti toda honra e toda glória meu Deus, Obrigado 🙏🏽❤️ +. +📸 @mowasports https://t.co/1pgELUabts" +06/02/2018,Sports_celeb,@neymarjr,Marcio Fernandes: https://t.co/0uyppRlrbC via @YouTube +06/02/2018,Sports_celeb,@neymarjr,Marcio Fernandes - Boa Sorte Neymar Jr!: https://t.co/EvmSzM0yjW via @YouTube +06/01/2018,Sports_celeb,@neymarjr,Nenê Belarmino - Boa Sorte Neymar Jr!: https://t.co/3GzUk6r0tl via @YouTube +06/01/2018,Sports_celeb,@neymarjr,Nene Belarmino: https://t.co/yGs5ZqP6Ph via @YouTube +05/31/2018,Sports_celeb,@neymarjr,Lucho Nizzo - Boa Sorte Neymar Jr!: https://t.co/rosPhWVY27 via @YouTube +05/31/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/kFuNcJ0JFP Nizzo - Boa Sorte Neymar Jr! +05/31/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/aPOyrT3cXB - Lucho Nizzo +05/30/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/x8VMVCxllL - Técnicos +05/30/2018,Sports_celeb,@neymarjr,Teaser - Técnicos: https://t.co/4KaCKksqyp via @YouTube +05/30/2018,Sports_celeb,@neymarjr,https://t.co/k5aWTFQJ8A +05/29/2018,Sports_celeb,@neymarjr,⚽️🇧🇷 https://t.co/0ynsETOC9W +05/26/2018,Sports_celeb,@neymarjr,"Minha família sempre me incentivou a sonhar. +“Instituto Projeto Neymar Jr. auxiliando na conquista de sonhos e +prep… https://t.co/dc9PrglHTp" +05/25/2018,Sports_celeb,@neymarjr,"Parabéns Professor Tite. Uma grande honra aprender a cada dia com você, que Deus te abençoe sempre. https://t.co/t4Fr1MGlC8" +05/25/2018,Sports_celeb,@neymarjr,"Se tem um cara que é vencedor é esse .. Mestre Zagallo, que honra receber sua visita. “Vocês vão ter me engolir” 😂🤣… https://t.co/qtlKKHanzK" +05/24/2018,Sports_celeb,@neymarjr,Thanks to my friends @wishshopping. I love @ZO2_ from @lakers. I will see you in LA soon. https://t.co/0v0fAVHv4J +05/23/2018,Sports_celeb,@neymarjr,⚽️🇧🇷 https://t.co/UZAekzo5Zr +05/22/2018,Sports_celeb,@neymarjr,Entrei pro Time da Rico e já me colocaram no banco. Mas foi por um bom motivo. Dá o play pra descobrir porquê. 😎… https://t.co/kYFRzIWU2S +05/20/2018,Sports_celeb,@neymarjr,Mesa de Sinuca do Neymar jr - BLACKBALL: https://t.co/FQhTzu3n7K via @YouTube +05/18/2018,Sports_celeb,@neymarjr,"Stop seeing life in black & white I Dare your time with color +@GaGaMilanoWorld #gagamilano #gagamilanoworld… https://t.co/t9SEG84mnd" +05/17/2018,Sports_celeb,@neymarjr,O número 18 é muito marcante: minha estreia como profissional ! Colecione a minha história. Participe da Promoção C… https://t.co/0uxSEiAvfD +05/15/2018,Sports_celeb,@neymarjr,"É amanhã, galera! Quer saber o que eu faço para superar os desafios que surgem na minha vida e carreira diariamente… https://t.co/PSHvBk4wRQ" +05/15/2018,Sports_celeb,@neymarjr,"Life is a great big canvas; throw all the paint you can on it +@gagamilanoworld #gagamilanoworld #gagamilano https://t.co/JBtcPgCi48" +05/14/2018,Sports_celeb,@neymarjr,"Obrigado Deus... muito feliz de ter mais uma oportunidade de representar a minha nação! +Partiu, Rússia !!!! 🇧🇷 https://t.co/YNCStoMW7N" +05/14/2018,Sports_celeb,@neymarjr,Quer saber o que eu faço para superar os desafios que surgem na minha vida e carreira diariamente?? Mande sua pergu… https://t.co/5VvfJInl6s +05/13/2018,Sports_celeb,@neymarjr,Muito feliz pelo prêmio. Obrigado a todos os meus companheiros e o staff técnico sem vocês não seria possível 🙏🏽👏🏽… https://t.co/qsmql6IyYA +05/13/2018,Sports_celeb,@neymarjr,"Parabéns pelo dia que você exerce tão bem, feliz dia das mães. Te amo ❤️ +@nadineinjr https://t.co/Zdaa42VoNG" +05/13/2018,Sports_celeb,@neymarjr,Merci Thiago Motta 🙏🏽 https://t.co/jkf3B4yksg +05/13/2018,Sports_celeb,@neymarjr,"Ligue 1 🏆⚽️👏🏽 +@PSG_inside https://t.co/gAH8kISHnz" +05/13/2018,Sports_celeb,@neymarjr,Ligue 1 🏆⚽️👏🏽 https://t.co/A7N8w1SbP6 +05/12/2018,Sports_celeb,@neymarjr,"Proud to wear the new jersey and to continue giving you joy +Orgulhoso de usar a nova camisa e continuar dando alegr… https://t.co/yjkZr6M0h7" +05/10/2018,Sports_celeb,@neymarjr,"The fun makes your time 💥🌈🙌🏻 +@gagamilanoworld #gagamilano https://t.co/xAoIazVNEO" +05/08/2018,Sports_celeb,@neymarjr,"Champions !!!! +@PSG_inside https://t.co/wyWmpDF7SU" +05/06/2018,Sports_celeb,@neymarjr,"THE FUN MAKES YOUR TIME ! +with @GaGaMilanoWorld #GAGAMILANO https://t.co/6hhkhUDD0l" +05/06/2018,Sports_celeb,@neymarjr,"Assista AO VIVO a maior corrida de rua do mundo e que não tem linha de chegada! 🏃🏽‍♂🏃🏻‍♀🚐 +#WorldRun #WingsForLife +https://t.co/0OjoMY6Rkx" +05/05/2018,Sports_celeb,@neymarjr,💪🏿🏋🏿‍♀️⚽️😀👊🏿 https://t.co/O6EWjr5j13 +04/24/2018,Sports_celeb,@neymarjr,"• We Are GaGà • +@gagamilanoworld +#gagamilano #watch https://t.co/K76a7VeswQ" +04/19/2018,Sports_celeb,@neymarjr,"Colors & Friends for the new @gagamilanoworld adv campaign! + +#comingsoon #staytuned #gagamilano +#crisguedes… https://t.co/JgVf6vVQJU" +04/17/2018,Sports_celeb,@neymarjr,It was a great honor to be present in the TCL & NEYMAR JR Global Press Conference. Thx for the gift from China and… https://t.co/8sJSn1YNtn +04/16/2018,Sports_celeb,@neymarjr,"Aprendi a sorrir em meio as dificuldades,a acreditar nos meus sonhos por mais que eles sejam praticamente impossíve… https://t.co/WNN5VBdeDV" +04/13/2018,Sports_celeb,@neymarjr,Honrado por fazer parte desta noite extraordinária para apoiar a luta da @amfAR contra a AIDS. Junte-se à causa: tu… https://t.co/2JP6gGYHnR +04/13/2018,Sports_celeb,@neymarjr,🤨🤙🏽 https://t.co/Y1fAYFDK0b +04/11/2018,Sports_celeb,@neymarjr,"Visite o site da Mastercard, faça uma doação, grave um vídeo +comemorando como a gente e compartilhe com… https://t.co/upLYuoqhnn" +04/11/2018,Sports_celeb,@neymarjr,"It’s time to be warrior +@GaGaMilanoWorld #GagàMilano https://t.co/snK16dMy7W" +04/08/2018,Sports_celeb,@neymarjr,Quando eu e meu amigo #LeoMessi nos unimos grandes coisas acontecem! Já já conto mais para vcs! Fiquem ligados! https://t.co/y22nDbWkOR +04/06/2018,Sports_celeb,@neymarjr,"Zoom in... the making of #gagamilano shooting with NJR +Staytuned for more updates +@GaGaMilanoWorld https://t.co/xHB2G93b4Q" +04/02/2018,Sports_celeb,@neymarjr,https://t.co/awBF3CrpJy +03/29/2018,Sports_celeb,@neymarjr,"LIFE IS A JOKE THAT'S JUST BEGUN ! +@gagamilanoworld +#gagamilano #watches https://t.co/uqobqyFP7M" +03/24/2018,Sports_celeb,@neymarjr,"❤️ +@Rafaella_ https://t.co/15CmTRGgQp" +03/22/2018,Sports_celeb,@neymarjr,@GaGaMilanoWorld 👊🏾 +03/21/2018,Sports_celeb,@neymarjr,"Brasileiragem has a new uniform ! And it's dope. Can’t wait to go back and have the honor to wear it. + +A Brasileira… https://t.co/6ZV3olqrpX" +03/21/2018,Sports_celeb,@neymarjr,"The Fun Makes Your Time! +Longing to see the new amazing advertising campaign of @gagamilanoworld at #Baselworld2018… https://t.co/KOa0mGHixQ" +03/21/2018,Sports_celeb,@neymarjr,@Rafaella_ Te amo ❤️ +03/16/2018,Sports_celeb,@neymarjr,A watch for every lifestyle. Stay tuned for the new video campaign of @GaGaMilanoWorld ! #GaGaMilano #luxurywatches https://t.co/IrjgA1JmcE +03/14/2018,Sports_celeb,@neymarjr,"Você tem que ter uma atitude positiva e tirar o melhor da situação na qual se encontra. + +Stephen Hawking https://t.co/JE2MtyuT6b" +03/13/2018,Sports_celeb,@neymarjr,"Behind the scenes +Unveiling the new advertising campaign of Gagà Milano! #comingsoon #GagaMilano @GaGaMilanoWorld https://t.co/eucigAv8bQ" +03/06/2018,Sports_celeb,@neymarjr,"Estou triste pela derrota, muito mais triste por não estar em campo ajudando meus companheiros!! O que me deixa org… https://t.co/hTINRqdX4R" +03/06/2018,Sports_celeb,@neymarjr,ALLEZ PARIS @psg_inside 🔴🔵 https://t.co/JGlaswbl9e +02/21/2018,Sports_celeb,@neymarjr,"UNLEASH YOUR PERSONALITY +@GaGaMilanoWorld +#GAGAMILANO https://t.co/ihykjx1RSa" +02/18/2018,Sports_celeb,@neymarjr,"BEHIND THE SCENE +@GaGaMilanoWorld +#GAGAMILANO #SHOOTING https://t.co/4XkyCg4R1T" +02/16/2018,Sports_celeb,@neymarjr,"Obrigado meu Deus por todos os momentos que tenho no futebol, principalmente os mais difíceis! 🙏🏽 +“Nunca te disse q… https://t.co/dHfZaRBLR1" +02/14/2018,Sports_celeb,@neymarjr,"Que Deus abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us us 🙏🏽⚽️ https://t.co/IRHEj6SqIv" +02/14/2018,Sports_celeb,@neymarjr,⚽️ @PSG_inside 🙏🏻 https://t.co/EauyhYFNhS +02/12/2018,Sports_celeb,@neymarjr,"@mariotestino +Mario Testino Towel Series no.150 https://t.co/L0j0Cm6vVK" +02/12/2018,Sports_celeb,@neymarjr,"CAN YOU DO THAT? + +#backstage +#gagamilano #watches + +@GaGaMilanoWorld https://t.co/KUvp7bcvC6" +02/10/2018,Sports_celeb,@neymarjr,"Galera! Tá rolando a final do campeonato digital de surf feminino, o #SEAFLOWERSDIGITAL, realizado pela @ma_werneck… https://t.co/6ct0YOvpPn" +02/10/2018,Sports_celeb,@neymarjr,"#Repost @neymarjr with @Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ +. +. +. +📷 #nogueirafoto https://t.co/u05Yq8PWCW" +02/09/2018,Sports_celeb,@neymarjr,"fast. Fierce. fearless. +Introducing the mercurial vapor 360. Available February 14 at +https://t.co/3XHhRSyBUE… https://t.co/IQWYLnl7ft" +02/09/2018,Sports_celeb,@neymarjr,🎄❄️☃️ https://t.co/FStoJmCZxh +02/08/2018,Sports_celeb,@neymarjr,"Color Fight #Backstage #GaGaMilano #Watch +@GaGaMilanoWorld https://t.co/Zd2V2ROkCG" +02/08/2018,Sports_celeb,@neymarjr,"Um dos melhores presentes que recebi no meu aniversário... +Obrigado @redbull e @playerunknown 👊 +@redbullgames… https://t.co/DKLqrQJ0ro" +02/08/2018,Sports_celeb,@neymarjr,B O R N M E R C U R I A L 🧡 https://t.co/pMFEDd3DvB +02/07/2018,Sports_celeb,@neymarjr,"Obrigado a todos pelas mensagens!! +Obrigado @redbull e @beatsbydre https://t.co/SNoOwjlEKt" +02/06/2018,Sports_celeb,@neymarjr,#bornmercurial https://t.co/8c3aHEkLG7 +02/05/2018,Sports_celeb,@neymarjr,@TclCorporation Am thrilled to partner with TCL. An easy decision as we share similar values - constant pursuit of… https://t.co/yHBh9vKeZh +02/03/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ +. +📷 Ricardo Nogueira https://t.co/2IFbFRu1sM" +02/02/2018,Sports_celeb,@neymarjr,"@REPLAY +#replayjeans +📸Thierry Le Gouès https://t.co/zXGzP9PdVS" +01/29/2018,Sports_celeb,@neymarjr,"DISTINCTIVE PERSONALITY +@GaGaMilanoWorld #GAGAMILANO #MANUALE48 https://t.co/UTdB14j6iZ" +01/29/2018,Sports_celeb,@neymarjr,"Cada um com a sua sorte(benção), eles são a minha ❤️ +. +. +. +By: #raul https://t.co/06F6S5fwRr" +01/27/2018,Sports_celeb,@neymarjr,"Grande vitória hoje, parabéns a todos e parabéns Edi pelo recorde, que siga assim metendo muitos gols !! +. +. +. +📸… https://t.co/OnNA2x8MzS" +01/25/2018,Sports_celeb,@neymarjr,"Meu ídolo, o cara que praticamente me inspirou a jogar futebol ... que Deus abençoe a sua vida irmão, muitas felici… https://t.co/NOGozvF4Mg" +01/19/2018,Sports_celeb,@neymarjr,"GREATEST OF ALL TIME +@GaGaMilanoWorld #GAGAMILANO https://t.co/dexgPNsqnZ" +01/19/2018,Sports_celeb,@neymarjr,Good see u legend ✌🏽 #davidbeckham https://t.co/BTNsTyfeh9 +01/18/2018,Sports_celeb,@neymarjr,Where is my custom server ? 😂🤣 https://t.co/Jkjzw0H3Qp +01/18/2018,Sports_celeb,@neymarjr,Toda honra e toda glória pra ti Deus 🙏🏽 https://t.co/Av4q2DRWh5 +01/17/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/a1mT4SwNT0" +01/17/2018,Sports_celeb,@neymarjr,❤️ @InstitutoNJr ❤️ https://t.co/Y5I8r3QhFO +01/16/2018,Sports_celeb,@neymarjr,"My global five-a-side football tournament is back, #neymarjrsfive ! More than 60 countries will battle it out to be… https://t.co/tnXAsJ4GQp" +01/15/2018,Sports_celeb,@neymarjr,"Hoje foi dia 🖊🤣😂 +@LucasMoura7 https://t.co/zxWi4VaE2s" +01/15/2018,Sports_celeb,@neymarjr,⚽️🤷🏽‍♂️🤣 https://t.co/cEj9VZ0c5Q +01/15/2018,Sports_celeb,@neymarjr,"Já escreveu sua carta ?? +https://t.co/euzWRTf8L7" +01/15/2018,Sports_celeb,@neymarjr,Go and vote for @money23green for NBA All-Star! Tweet his name with #NBAVOTE Last day to vote let’s gooo +01/12/2018,Sports_celeb,@neymarjr,"❤️ +@davilucca99 https://t.co/JqlJJU0U5f" +01/12/2018,Sports_celeb,@neymarjr,"EVERYDAY ADVENTURES + +@GaGaMilanoWorld #GAGAMILANO #WATCHES #CARBON48 https://t.co/BZ3s6MNjWw" +01/12/2018,Sports_celeb,@neymarjr,"Até música pro clube do chula... viciei ! 😂😂 +E aí Aloísio, esse clube é do tipo que você me convida ou eu te convid… https://t.co/V5QmVsMGfr" +01/10/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/TyYAjF0ion" +01/09/2018,Sports_celeb,@neymarjr,"E o programa ""Neymarzinho Responde"" já chegou no 12º episódio !! +Já assistiu ? +Não esquece, é toda quinta !! +https://t.co/M5NqMArEmh" +01/09/2018,Sports_celeb,@neymarjr,hey @playerunknown can i have a custom server? Please :) +01/08/2018,Sports_celeb,@neymarjr,"STAY FOCUSED + +@GaGaMilanoWorld #GAGAMILANO https://t.co/52lqg9znCG" +01/07/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/BkZwPeSneU" +01/04/2018,Sports_celeb,@neymarjr,"🙂 +@RedBullBR https://t.co/Ndh1JDjCAC" +01/04/2018,Sports_celeb,@neymarjr,"2018 ❤️🙏🏽 @ +@BruMarquezine @davilucca99 https://t.co/ihy88200HD" +01/03/2018,Sports_celeb,@neymarjr,"🤘🏿 +@Gillette https://t.co/TbHuCl7vSs" +12/31/2017,Sports_celeb,@neymarjr,"Galera, já estou aqui me preparando pra virada do ano. Confiante por um 2018 ainda melhor! https://t.co/4TgemeQKzz" +12/27/2017,Sports_celeb,@neymarjr,"YOU ARE THE POWER + +@GaGaMilanoWorld #GAGAMILANO https://t.co/VDzKrZBj7R" +12/22/2017,Sports_celeb,@neymarjr,"@neymarjr in Qatar +@PSG_inside https://t.co/oU8qNH5svZ" +12/22/2017,Sports_celeb,@neymarjr,"BEYOND MEASURE +@GaGaMilanoWorld +#GAGAMILANO https://t.co/VjY2Eblb99" +12/21/2017,Sports_celeb,@neymarjr,"Njr puro fenómeno #mercurial vapor 👊 + +👉 https://t.co/lVCYe2M7ke https://t.co/iFIKWScOsE" +12/21/2017,Sports_celeb,@neymarjr,"👊🏿 +https://t.co/jjITzl8W8W" +12/21/2017,Sports_celeb,@neymarjr,"AMIGO OCULTO DOS PARÇAS! +Vc é meu convidado para assistir @LuisSuarez9, @phganso, @Phil_Coutinho, @gabrieljesus33,… https://t.co/LoJmeUPcvl" +12/18/2017,Sports_celeb,@neymarjr,"Chegou a hora de revelar o segredo! Eu reuni alguns amigos meus, alguns craques, para um Amigo Secreto em prol do… https://t.co/H0usy9tlYd" +12/15/2017,Sports_celeb,@neymarjr,"Courage, Strength, Liberty +@GaGaMilanoWorld #gagamilano https://t.co/vjdUO7frVh" +12/14/2017,Sports_celeb,@neymarjr,"Frio em Paris, só um café quente pra me aquecer... https://t.co/7IUWCxK9BL" +12/12/2017,Sports_celeb,@neymarjr,"Every Second is a new Challange +@GaGaMilanoWorld #gagamilano https://t.co/NJupSCukgA" +12/11/2017,Sports_celeb,@neymarjr,"Vocês todos estão acompanhando o programa ""Neymarzinho Responde"" ? +O 9º episódio já tá no ar 😉 +https://t.co/mxSwNzfBTT" +12/11/2017,Sports_celeb,@neymarjr,"Foco, força e fé pra celebrar mais um dia !! https://t.co/WzQ8fiGDPU" +12/05/2017,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/5LsDb312Fc" +12/04/2017,Sports_celeb,@neymarjr,"E ai, qual foi bro ? 🤣 @DaniAlvesD2 https://t.co/SXw1mPxSwb" +06/29/2018,Sports_celeb,@RafaelNadal,Great news before we start playing @Wimbledon Check out the video... 😀 #vamos https://t.co/iw1eS2TobT +06/29/2018,Sports_celeb,@RafaelNadal,On my way to practice @wimbledon then off to the beautiful club #Hurlingham to play my last match @Tennis_Classic… https://t.co/MsuFRHeR8a +06/27/2018,Sports_celeb,@RafaelNadal,Here we are @Wimbledon ! Aquí estamos! 💪🏻😉👇🏻 https://t.co/pkRpmBHDCK +06/25/2018,Sports_celeb,@RafaelNadal,Happy to announce that I’ll be back at @AspallTennisClassic as part of my @wimbledon warm up! 😀💪🏻👇🏻 https://t.co/cqJudXgfo0 +06/23/2018,Sports_celeb,@RafaelNadal,"Mañana acaba la etapa de #Alicante del #RafaNadalTourbyMapfre, el circuito de #tenis a beneficio de mi fundación… https://t.co/1gegmChvu1" +06/16/2018,Sports_celeb,@RafaelNadal,Día espectacular y por una buena causa. Gracias a @Richard_Mille y @24hoursoflemans por la invitación y el honor https://t.co/WO7Psc3aAR +06/15/2018,Sports_celeb,@RafaelNadal,"With @Babolat, I’m giving away one of the 11 Limited Edition #UNDECIMA packs. +Enter by posting your own “11” celebr… https://t.co/jHFuF92oBU" +06/14/2018,Sports_celeb,@RafaelNadal,RT @movistar_es: Porque no hay mayor triunfo que tener el apoyo de una afición incondicional. Ahora más que nunca todos con la @SeFutbol. ¡… +06/13/2018,Sports_celeb,@RafaelNadal,Very sorry to announce this withdrawal but I have to take some rest according to my doctor after q long clay court… https://t.co/SE8d8GacrB +06/12/2018,Sports_celeb,@RafaelNadal,Facing a new opponent. You might just recognise him… @NintendoEurope #MarioTennis https://t.co/CHK9Aied9l https://t.co/bGtmxTRuBy +06/11/2018,Sports_celeb,@RafaelNadal,Hello everybody. You can imagine the happiness today. Now back at home in Mallorca and will post later some picture… https://t.co/2UaeOagiqd +06/10/2018,Sports_celeb,@RafaelNadal,Gracias @rnadalacademy!!!! #NOL1M1TS https://t.co/bJWNYyvzkk +06/09/2018,Sports_celeb,@RafaelNadal,Bonjour Paris! Desayuno y vamos para el entrenamiento! Breakfast and let’s go to practice! 💪🏻😉💯 +06/08/2018,Sports_celeb,@RafaelNadal,"Love this court, the most important in my career, these are amazing moments. Many thanks to all. Another final in P… https://t.co/srb9m9d3Zv" +06/07/2018,Sports_celeb,@RafaelNadal,Ready !!!! #vamos @rolandgarros https://t.co/mQ2ArPxOHM +06/06/2018,Sports_celeb,@RafaelNadal,"Rain ☔️ in Paris, match postponed. Back at the hotel and time to regroup a bit for tomorrow #weknewitwastough + +De v… https://t.co/7KOidDG2Tf" +06/06/2018,Sports_celeb,@RafaelNadal,"Good morning, on my way to the tournament for my pre match warm up I send you this link to help the Victims of volc… https://t.co/Ig4ZRnuLox" +06/06/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos. Camino ya del torneo para el calentamiento, os envío esta dirección para que ayudemos a los af… https://t.co/ZENmgYfC6V" +06/05/2018,Sports_celeb,@RafaelNadal,"Día lluvioso hoy en Paris, de mucha espera para poder entrenar. Así que algo de gym ahora y después esperemos que d… https://t.co/VIEUHrcpSu" +06/05/2018,Sports_celeb,@RafaelNadal,"Buenos días, Bonjour, rainy day here in Paris... lot of waiting today for practice... so a bit of gym at the C.N.E.… https://t.co/2y3Eth4hi2" +06/04/2018,Sports_celeb,@RafaelNadal,"Jumping to quarter finals! Very happy with the match and deep into the second week! + +Un salto a la siguiente ronda… https://t.co/GX34799RxV" +06/04/2018,Sports_celeb,@RafaelNadal,Muchas gracias!!!!!!!! https://t.co/X2fmYG0rkA +06/03/2018,Sports_celeb,@RafaelNadal,😀😘 https://t.co/v8agR8vEIW +06/03/2018,Sports_celeb,@RafaelNadal,"Time to go to practice.... Thanks for all your birthday messages :) + +Hora para ir a entrenar 💪🏻 y gracias por todos… https://t.co/yOMC9nCNs9" +06/03/2018,Sports_celeb,@RafaelNadal,"Good morning to all. +Buenos días a todos +Bonjour +Este fue un momento también especial ayer tras la victoria. Grac… https://t.co/Ai4AI1PcLg" +05/31/2018,Sports_celeb,@RafaelNadal,"Contento por el partido de hoy! El sábado siguiente ronda contra un buen amigo! +Happy with today’s match! Saturday… https://t.co/nBNwbhTnk5" +05/31/2018,Sports_celeb,@RafaelNadal,"Bueno días a todos! Good morning all! Bonjour ! +On my way soon to @rolandgarros to my warm up and getting ready for… https://t.co/imyTHtLDz2" +05/27/2018,Sports_celeb,@RafaelNadal,"Enhorabuena al Real Madrid por los títulos. Champions y Euroliga en un mismo año, increíble. ¡A disfrutar este mome… https://t.co/8AhyygR5Fl" +05/27/2018,Sports_celeb,@RafaelNadal,Enhorabona! A disfrutar d’aquest moment tan important! Estic molt content! L’any que ve a primera!💪🏻 https://t.co/59lowcuG2e +05/27/2018,Sports_celeb,@RafaelNadal,"All smiles and getting ready. Tomorrow first round, looking forward to my first match @rolandgarros 2018 + +Mañana pr… https://t.co/2buhJPzjWH" +05/25/2018,Sports_celeb,@RafaelNadal,"Pero... ahora de nuevo a las 5, entrenamos por la tarde. 💪🏻😀 and back to practice at 5pm today https://t.co/OmosI7bOWs" +05/24/2018,Sports_celeb,@RafaelNadal,"Primer entrenamiento en @rolandgarros con un buen amigo, @PabloCuevas22 #tennis #paris #tenis https://t.co/RxCnZcDtwZ" +05/23/2018,Sports_celeb,@RafaelNadal,"De camino a Paris... nos vemos allí? +Paris, j’arrive! On se voit là :) (je essaye en Français cette année) 😉👋🏻 #vamos @rolandgarros" +05/22/2018,Sports_celeb,@RafaelNadal,"This is how I celebrate winning a big point. What about you? +Show me your celebration using #TheDecima for a chance… https://t.co/AxEF1LDv8M" +05/21/2018,Sports_celeb,@RafaelNadal,Grazie 😊 https://t.co/4l8QS2llhs +05/21/2018,Sports_celeb,@RafaelNadal,Grazie della intervista. Si è fatta prima del torneo ed e andato tutto bene. Gracias por la entrevista! https://t.co/QwtF9LtRgd +05/20/2018,Sports_celeb,@RafaelNadal,Couldn't be happier traveling back home now with this trophy in my hands... Took this picture at the locker room fo… https://t.co/kCLNZdQfJV +05/19/2018,Sports_celeb,@RafaelNadal,Molto molto felice di ritornare a giocare una finale qui a #Roma #Grazie #Italia #tennis #tenis #gracias #Vamos +05/18/2018,Sports_celeb,@RafaelNadal,"Great crowds today playing the local hero. Many thanks Rome for an amazing sportsmanship and respect for both. +Gra… https://t.co/RB2GcOBz8M" +05/15/2018,Sports_celeb,@RafaelNadal,¿Y a vosotros qué es lo que más os gusta de España? @spain #SpainIn10Sec #VisitSpain #Challenge… https://t.co/4SwikNrdUc +05/15/2018,Sports_celeb,@RafaelNadal,¿Sabéis qué hacemos los días como hoy que llueve mientras nos dan una pista de entrenamiento en #Roma ? Yo lo tengo claro 😬☔️🤔 +05/14/2018,Sports_celeb,@RafaelNadal,@MariaSharapova Thanks Maria! It’s been a pleasure hitting with the you a few balls 👍🏻😊👏🏻 +05/13/2018,Sports_celeb,@RafaelNadal,Ciao a tutti !!! vi aspetto a Roma! 😉😜😘 https://t.co/DKuYPQc1P5 +05/12/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos, Good morning to all! Lástima por la derrota de ayer, pero #dominicthiem jugó mejor y mereció g… https://t.co/cppMjiQ6Wk" +05/09/2018,Sports_celeb,@RafaelNadal,Good start to the tournament. Thanks all for the support. Great to play at home with this amazing crowds. https://t.co/N7B2G2GiDH +05/08/2018,Sports_celeb,@RafaelNadal,"¿Cómo será el deporte dentro de unos años gracias a IoT? +Cambiarán muchas cosas, pero seguro que seguiremos hacien… https://t.co/5JG8yywyEb" +05/07/2018,Sports_celeb,@RafaelNadal,Check out my Instagram account and see if you’ve done this before. The question is: 3 minutes or just 1 at -196 Cel… https://t.co/9EE2WaAkbz +05/06/2018,Sports_celeb,@RafaelNadal,Cena entretenida con equipo y amigos. Mañana a seguir preparando el inicio del torneo aquí en Madrid. Buenas noches… https://t.co/7nG9DyOdvz +05/06/2018,Sports_celeb,@RafaelNadal,Last chance to win a trip to Paris & meet me in person with one of your friends! You still have one last chance to… https://t.co/WkI1fegYIk +05/05/2018,Sports_celeb,@RafaelNadal,"My @babolat rackets are a big part of #TheDecima story. +What about your story? +Share a pic with your racket using… https://t.co/DmRZ23tC7u" +05/04/2018,Sports_celeb,@RafaelNadal,Interesante participar en este foro de tecnología y deporte #Madrid #España #telefonica https://t.co/jkHKYouBam +05/04/2018,Sports_celeb,@RafaelNadal,Así fue el pasado torneo del #RafaNadalTourbyMapfre. Me gusta ver como disfrutáis jugando a tenis y entrenando valo… https://t.co/6xWaChUiay +05/02/2018,Sports_celeb,@RafaelNadal,"Mañana jueves, a partir de las 19:00, estaré respondiendo preguntas en directo a través de un Facebook Live organiz… https://t.co/hqqO4l3DSf" +05/02/2018,Sports_celeb,@RafaelNadal,Don’t forget to donate $10 to @Onedrop and @frnadal and get a chance to win a trip to Paris to meet me in person- w… https://t.co/lcPuCljZj8 +05/01/2018,Sports_celeb,@RafaelNadal,Tengo una pregunta para vosotros… 😉 #SabadellFuturos https://t.co/P46tk5k6sE +04/29/2018,Sports_celeb,@RafaelNadal,Gracias a todos y en particular a mi equipo aquí en #barcelona #bcnopenbs #vamos #undecima https://t.co/d1ZhHZbsJR +04/25/2018,Sports_celeb,@RafaelNadal,"Contento de mi debut en #Barcelona +Ahora toca descansar, cenar bien y prepararse para el partido de mañana +#vamos… https://t.co/j6i73fooPB" +04/24/2018,Sports_celeb,@RafaelNadal,Ya en #Barcelona para saltar mañana a la tierra batida del #BCNOpenBS. Con ganas de compartir más tenis con los ami… https://t.co/XFWzDyjFmJ +04/23/2018,Sports_celeb,@RafaelNadal,Gracias siempre a los niños que nos ayudan en cada torneo! Qué momento tan especial! https://t.co/BppUMWMfQn +04/22/2018,Sports_celeb,@RafaelNadal,Ya en Barcelona !!!! Gracias a todos por los mensajes. Fue una semana especial!!! #feliz . Thanks to all for your m… https://t.co/lXodBaH56N +04/21/2018,Sports_celeb,@RafaelNadal,Otra final en #Monaco muy contento! Another final in #Monaco and very happy! https://t.co/cvNQ2i7bAO +04/20/2018,Sports_celeb,@RafaelNadal,"Gracias por el apoyo. Merci pour le soutien. Thanks for the support! +Gran partido hoy! Muy contento de estar en se… https://t.co/muAFklgWEg" +04/18/2018,Sports_celeb,@RafaelNadal,"Enhorabuena @RICARDODEDIEGO te lo mereces !!!! Congrats, you really deserve this award!!! https://t.co/BAbUNMgw4c" +04/18/2018,Sports_celeb,@RafaelNadal,"For only a $10 donation to @Onedrop and @frnadal, get a chance to win a trip to Paris and to meet me with one of yo… https://t.co/WxJX1FtG0K" +04/17/2018,Sports_celeb,@RafaelNadal,"#TheDecima began at Tennis Club Manacor. +Where does your story start? +Share your tennis court with #TheDecima for a… https://t.co/w8ks7duTHg" +04/15/2018,Sports_celeb,@RafaelNadal,Bonjour Monaco. Toujours bien cette tournoi ! :-) #vamos https://t.co/wgx0kJXvk3 +04/05/2018,Sports_celeb,@RafaelNadal,VAMOS! New @babolat #PureAeroDecima. I’m ready to challenge #MyDecima at @rolandgarros. https://t.co/jzzitaqHh1 +04/03/2018,Sports_celeb,@RafaelNadal,"Cuando te los pasas bien en una entrevista con chicos, esta tarde, con el equipo de España @CopaDavis :-) https://t.co/m3f0BSYzGw" +03/25/2018,Sports_celeb,@RafaelNadal,"Hoy día en familia... Aquí en #Mallorca, Sa Punta 🙂 https://t.co/iHNTWZzwl2" +03/23/2018,Sports_celeb,@RafaelNadal,Un abrazo grande desde Mallorca y muchos ánimos en estos momentos tan duros @santicanizares https://t.co/tdALwF0B0w +03/23/2018,Sports_celeb,@RafaelNadal,"Hoy ha empezado en Valldoreix, Barcelona, una nueva etapa del #RafaNadalTour. 10 días por delante para dar lo mejor… https://t.co/g5G3lCs7WU" +03/21/2018,Sports_celeb,@RafaelNadal,"Hoy en Barcelona, visita al Dr. Ruiz-Cotorro para ver la evolución de la lesión 👌👍 https://t.co/vwxEzWQ1Uw" +03/19/2018,Sports_celeb,@RafaelNadal,"Hi all, I'm happy to introduce the new Official Online Store of #RafaNadalAcademybyMovistar You can also collabora… https://t.co/99wzFcylUW" +03/19/2018,Sports_celeb,@RafaelNadal,"¡Hola a todos! +Os presento la nueva Tienda Online Oficial de #RafaNadalAcademybyMovistar, donde además podrás cola… https://t.co/4OQkZ9nza2" +03/02/2018,Sports_celeb,@RafaelNadal,"Hola a todos. Lamentablemente me veo obligado a escribiros esto.../ Unfortunately, the injury I suffered in Acapulc… https://t.co/ZAyvCsFC9I" +02/25/2018,Sports_celeb,@RafaelNadal,Os presento a Aura #HelloAura. Impresionante cómo la inteligencia artificial de @Telefonica me ayuda a disfrutar co… https://t.co/bgqla9v2zv +02/21/2018,Sports_celeb,@RafaelNadal,@paugasol Qué intriga Pau... ya nos dirás! 😉 +02/20/2018,Sports_celeb,@RafaelNadal,En juego la etapa de Sevilla del #RafaNadalTour. Este es el 5º año del circuito y no deja de sorprender el buen niv… https://t.co/yVsarM1US0 +02/15/2018,Sports_celeb,@RafaelNadal,"Amazed by @PostcodeLoterij social commitment. It's an honour to be an ambassador for this organisation, which I tha… https://t.co/eXftJ04eGT" +02/15/2018,Sports_celeb,@RafaelNadal,"Impresionado con el fuerte compromiso social que tiene @PostcodeLoterij. Es un honor ser embajador de esta entidad,… https://t.co/YKig3wWWnT" +02/09/2018,Sports_celeb,@RafaelNadal,"Querida Debora, por favor dale las gracias de mi parte a tu bisabuela por esta emotiva carta y su contenido que lle… https://t.co/Bf3Se7EKlz" +02/08/2018,Sports_celeb,@RafaelNadal,Es increíble todo lo que pasa en internet mientras estoy jugando al tenis #MovistarLikesRafa https://t.co/Vf9nZeckii +02/07/2018,Sports_celeb,@RafaelNadal,Excited to be playing here again... https://t.co/BOZdPA7Vk1 +02/06/2018,Sports_celeb,@RafaelNadal,"Nothing to do with yesterday’s event or tomorrow, but I played it in Melbourne and was great.… https://t.co/Nk2lzcykS2" +02/06/2018,Sports_celeb,@RafaelNadal,"RT @ClinicaTenis: Momento en el que iniciamos una nueva aventura con @MAPFRE + +👌🏻Todo el equipo estamos muy ilusionados con este proyecto q…" +02/03/2018,Sports_celeb,@RafaelNadal,Vamossssss! Siguiendo la eliminatoria desde casa en @rnadalacademy #DavisCup #España https://t.co/QsAEn37Qqy +01/31/2018,Sports_celeb,@RafaelNadal,RT @BancoSabadell: Nuestro embajador @RafaelNadal estará con nosotros el miércoles a partir de las 17:30h. Síguelo #endirecto 🔴 con @inform… +01/29/2018,Sports_celeb,@RafaelNadal,"RT @babolat: What’s your tribe? +#PureAero #PureDrive #PureStrike https://t.co/2YOeR7ZRYs" +01/26/2018,Sports_celeb,@RafaelNadal,@cilic_marin Thanks Marin and congrats on your match! You played unbelievable! +01/26/2018,Sports_celeb,@RafaelNadal,@paugasol Gracias Pau!!!!! Eres un fenómeno. Un abrazo amigo! +01/23/2018,Sports_celeb,@RafaelNadal,Sadly leaving the #ausopen tonight. I’ll get an MRI tomorrow morning to see what is the injury. Thanks for the supp… https://t.co/3pPXYxskpq +01/22/2018,Sports_celeb,@RafaelNadal,"Txs @AustralianOpen for making this nice piece on my Academy, exciting project that is already fully active and wor… https://t.co/tsiqBxLeH1" +01/21/2018,Sports_celeb,@RafaelNadal,Tough match to go into the QF! Vamosssssssssssssss! https://t.co/WNeJlNP73c +01/20/2018,Sports_celeb,@RafaelNadal,"Hey all, tomorrow 3rd on RLA, looking forward to that. In the mean time, today, we had lunch at the beach. #team… https://t.co/KxSPzmK4ju" +01/19/2018,Sports_celeb,@RafaelNadal,RT @FundacionEcomar: RECORDATORIO #ConciertoSolidario Invitación Concierto Homenaje a Deportistas Españoles 26-01-18 @OCRTVE. Organiza: @de… +01/18/2018,Sports_celeb,@RafaelNadal,"RT @AustralianOpen: Wow... a @RafaelNadal special! + +#AusOpen https://t.co/aR2QBQfKHA" +01/18/2018,Sports_celeb,@RafaelNadal,"RT @AustralianOpen: No. 1 seed. +No. 1 smile. +@RafaelNadal +#AusOpen https://t.co/SYNQglkfKF" +01/18/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos, good morning!!! Hoy (today) a las @ 7 en (on) #margaretcourtarena aquí en el (here)… https://t.co/SCPr9LlY01" +01/16/2018,Sports_celeb,@RafaelNadal,UNTIL WE ALL WIN #EQUALITY https://t.co/eaVKpeQ4zk +01/15/2018,Sports_celeb,@RafaelNadal,"RT @kiamotorsiberia: Todos juntos somos uno, preparados para crear una gran #sorpresa. Preparados para el espectáculo. ¡Vuelve el @Australi…" +01/13/2018,Sports_celeb,@RafaelNadal,Monday start @AustralianOpen getting ready. #vamos https://t.co/02zv7g5Opv +01/10/2018,Sports_celeb,@RafaelNadal,RT @RICARDODEDIEGO: Australian Open VIK Ceremony with Rafa Nadal and Lleyton Hewitt & KIA Stinger @RafaelNadal Special Edition 😍 @Australia… +01/09/2018,Sports_celeb,@RafaelNadal,Thank you Iain for always taking care of us during the @AustralianOpen and for your hospitality. It was lovely to s… https://t.co/gExWmYUhAo +01/08/2018,Sports_celeb,@RafaelNadal,Draw came out and I’ll be playing @la_pouille . Really looking forward to stepping onto the #margaretcourtarena to… https://t.co/3bSyJadoU3 +01/05/2018,Sports_celeb,@RafaelNadal,Already in Melbourne! Practiced today @RodLaverArena and also excited for the @tiebreaktens coming up on Wednesday… https://t.co/vYgETDiU8a +01/03/2018,Sports_celeb,@RafaelNadal,On my way to Melbourne @AustralianOpen and will be playing the #tiebreaktens on Wednesday 10th looking forward to s… https://t.co/YjbEeFzKHs +12/27/2017,Sports_celeb,@RafaelNadal,I will be seeing my Aussie fans when I land on the 4th in Melbourne and start there my preparation for the Australian Open. +12/27/2017,Sports_celeb,@RafaelNadal,I am sorry to announce I won’t be coming to Brisbane this year. My intention was to play but I am still not ready a… https://t.co/0rqR9uVXyA +12/24/2017,Sports_celeb,@RafaelNadal,Os deseo una Feliz Navidad a todos los que la celebréis. Que tengáis un buen día con vuestros seres mas queridos. ¡… https://t.co/1eqJFYkYth +12/21/2017,Sports_celeb,@RafaelNadal,RT @babolat: HAPPY HOLIDAYS! #PlayToBeWild https://t.co/hvYxjS0dul +12/19/2017,Sports_celeb,@RafaelNadal,Gran clase de #spinning en #RafaNadalSportCentre!! Buen trabajo a todos! @RNadalAcademy #somsporttime 👏👏🎅 https://t.co/GyvsNJgH7S +12/18/2017,Sports_celeb,@RafaelNadal,Ya no queda nada para la 5ª edición del #RafaNadalTour! En este circuito los chic@s juegan y aprenden valores y los… https://t.co/G13S8Bw4HE +12/17/2017,Sports_celeb,@RafaelNadal,Excited to be on the cover of the new @AustralianOpen video game. See you soon #AOTennis https://t.co/f2cnU9apho +12/14/2017,Sports_celeb,@RafaelNadal,Gracias @AirEuropa!👏 https://t.co/s7KMlfYim0 +12/11/2017,Sports_celeb,@RafaelNadal,Muy agradecido al Conde de Godó y al @bcnopenbs por la entrega de la segunda réplica. #gracias https://t.co/8Ql17RIobg +12/06/2017,Sports_celeb,@RafaelNadal,"RT @CasaReal: Los Reyes entregan los ""Premios As del Deporte"" #As50Años @diarioas @miss_belmont @RafaelNadal @Ruthypeich https://t.co/AmYfA…" +12/04/2017,Sports_celeb,@RafaelNadal,"Muy afortunado de conocer a los pilotos que nos llevan de vuelta a casa, tras estos días de vacaciones. Gracias… https://t.co/judjqKNaEw" +12/02/2017,Sports_celeb,@RafaelNadal,La semana que viene en @Telefonica Flagship Store Madrid podrás ver los trofeos del #RafaNadalMuseumXperience y jug… https://t.co/hfUM3y1Qzo +12/01/2017,Sports_celeb,@RafaelNadal,"Disfrutando de estos días con mis amigos y familia... Adivináis dónde estamos? 😉 +Enjoying some days of holidays wit… https://t.co/ItYpAqIjQt" +11/24/2017,Sports_celeb,@RafaelNadal,RT @MAPFRE_ES: 7.000 millas después nuestros #Valientos ya están en Ciudad del Cabo tras una gran segunda etapa ¡Enhorabuena equipo! 🙌🏼#Vam… +11/23/2017,Sports_celeb,@RafaelNadal,"RT @GranRecogidaMad: ¡Ya puedes apuntarte a la @GranRecogidaMad ! ➡ 1, 2 y 3 de Diciembre. Necesitamos 22.000 voluntarios ¿Nos ayudas? http…" +11/21/2017,Sports_celeb,@RafaelNadal,Check out how you can join the surprise at Australian Open 2018! Thanks for the great opportunity! @Kia_Motors https://t.co/7f92lqpLg0 +11/21/2017,Sports_celeb,@RafaelNadal,RT @bcnopenbs: Cuatro campeones del @bcnopenbs coinciden en la pista del @rctb1899 https://t.co/5MJMtUTff0 +11/16/2017,Sports_celeb,@RafaelNadal,"As you can see in the media, today is a happy day for me, my team and my fans. The French justice... https://t.co/Pt4bnwQQU0" +11/16/2017,Sports_celeb,@RafaelNadal,"Como podréis ver en los medios de comunicación, hoy es un día feliz para mí, mi equipo y mis fans. La justicia fran… https://t.co/lb5txI01XZ" +11/15/2017,Sports_celeb,@RafaelNadal,RT @MAPFRE_ES: ¿Qué le pasa a @RafaelNadal? ¡Haz clic y entérate! Porque ni los deportistas profesionales pueden controlarlo todo.. https:/… +11/10/2017,Sports_celeb,@RafaelNadal,RT @Kia_Motors: We believe in the power to surprise. See how #Kia’s special visit to Keon Park Tennis Club made everyone smile - the #AusOp… +11/09/2017,Sports_celeb,@RafaelNadal,Having a great night out at the #ATP gala! https://t.co/YWgcWBvkk9 +11/03/2017,Sports_celeb,@RafaelNadal,Ya camino a casa después de una dolorosa decisión... // Leaving Paris now after a painful decision... https://t.co/sV8zNKyARE +11/02/2017,Sports_celeb,@RafaelNadal,Calentando para el partido de esta noche en el gimnasio del hotel #DCmoments. @Plaza_Athenee @DC_LuxuryHotels https://t.co/LO7jjDwGsg +11/01/2017,Sports_celeb,@RafaelNadal,A message to thank you for all your support. #Vamos https://t.co/mk9cfcIRRu +11/01/2017,Sports_celeb,@RafaelNadal,Un mensaje para agradeceros todo el cariño y apoyo. Muy contento por este logro... #Vamossss https://t.co/BqQYAl9nq2 +10/24/2017,Sports_celeb,@RafaelNadal,¿Sabes cuántas horas juego al tenis al año? #RNMovistar https://t.co/twYsGAU9nk +10/22/2017,Sports_celeb,@RafaelNadal,RT @RCD_Mallorca: 👉#SomelMallorca 🔴⚫️ https://t.co/26jLmeTLU5 +10/19/2017,Sports_celeb,@RafaelNadal,"This morning we'll be posting some special videos for all of you on @rnadalacademy... stay tuned, you'll love them!" +10/19/2017,Sports_celeb,@RafaelNadal,Esta mañana desde @rnadalacademy publicaremos un par de videos especiales para todos vosotros... Estad atentos 😉 Os encantarán... +10/18/2017,Sports_celeb,@RafaelNadal,Espectacular el nuevo Kia Stinger que me han entregado en la #RafaNadalAcademy! Gracias @RICARDODEDIEGO https://t.co/xmuvmgaf9J +10/17/2017,Sports_celeb,@RafaelNadal,"I sadly announce that I have to pull out of the Swiss Indoors Basel, after... https://t.co/hXuflDRZLJ" +10/17/2017,Sports_celeb,@RafaelNadal,Tristemente tengo que deciros que no participaré en el torneo de Basilea tras ver... https://t.co/hXuflDRZLJ +10/16/2017,Sports_celeb,@RafaelNadal,"Lamentando lo ocurrido en Galicia, Asturias y Portugal... Horror e impotencia...Todo mi apoyo a los familiares de los fallecidos." +10/15/2017,Sports_celeb,@RafaelNadal,"Great tour in China, with the title in Beijing and the final in Shanghai! This isn't over, let's keep going!" +10/15/2017,Sports_celeb,@RafaelNadal,"Gran gira en China, con título en Beijing y final aquí en Shanghai! Esto no ha acabado, seguimos!" +10/13/2017,Sports_celeb,@RafaelNadal,Outdoor play today here in Shanghai. Vamos! https://t.co/ZAdxTAT9aq +10/10/2017,Sports_celeb,@RafaelNadal,On my way to practice. Court 5 #shanghai #tennis #practice pics on my IG account later :-) +10/08/2017,Sports_celeb,@RafaelNadal,"Gracias a todos y en particular a mi equipo esta semana aquí en Beijing! Vamoss + +Thanks to everyone and to my team… https://t.co/uKshnzYBUD" +09/25/2017,Sports_celeb,@RafaelNadal,Resting at home after these intense days in #Prague. Very happy for yesterday's victory and for such an exciting… https://t.co/zkQdpDjU0O +09/25/2017,Sports_celeb,@RafaelNadal,En casa descansando tras estos días intensos en #Praga Muy contento por la victoria de ayer y por una @LaverCup tan… https://t.co/ebSiXgqJsi +09/23/2017,Sports_celeb,@RafaelNadal,📸 con mi compañero de dobles @RogerFederer👌Muy contento de haber jugado con Roger @LaverCup #TeamEurope https://t.co/lVtfVE0WPC +09/23/2017,Sports_celeb,@RafaelNadal,📸 with my doubles partner @RogerFederer! Happy to have played with Roger for a change😉 @LaverCup #TeamEurope https://t.co/uHqXAN9Pk6 +09/23/2017,Sports_celeb,@RafaelNadal,"An hour ago, in the dressing room talking tactics. Today I'm so lucky to have @rogerfederer next to me on the court… https://t.co/299XK7xn8e" +09/23/2017,Sports_celeb,@RafaelNadal,Hace una hora hablando de táctica en el vestuario. Hoy tengo la suerte de tener a @RogerFederer a mi lado de la pis… https://t.co/jooz3zOMVn +09/23/2017,Sports_celeb,@RafaelNadal,"RT @LaverCup: They've played against each other 37 times at tour level. +Now they play together for the first time. +Introducing #FedalUtd +#…" +09/23/2017,Sports_celeb,@RafaelNadal,"RT @rodlaver: Great tennis from @RafaelNadal and @rogerfederer today. Like everyone else, I am looking forward to seeing them play doubles…" +09/23/2017,Sports_celeb,@RafaelNadal,RT @TheSergioGarcia: History will be made today @LaverCup with @rogerfederer & @RafaelNadal playing doubles together for the 1st time vs @S… +09/21/2017,Sports_celeb,@RafaelNadal,Empieza el master del #RafaNadalTour en @rnadalacademy Desde Praga deseo mucha suerte a los 32 clasificados!Los ben… https://t.co/vb5QKhzwFH +09/19/2017,Sports_celeb,@RafaelNadal,Terribles noticias de Mexico. Todo mi apoyo a los afectados y a los familiares de las víctimas. +09/19/2017,Sports_celeb,@RafaelNadal,Hoy a las 17:30h hablaré con @marclopeztarres y @lolaochoaribes en el evento de @BancoSabadell!! #RafaNadalEnMálaga https://t.co/gFs3SYStKD +09/18/2017,Sports_celeb,@RafaelNadal,Enhorabuena @PauGasol por otro torneo fantástico y llegar de nuevo al mejor 5º del #Eurobasket2017. Eres enorme!!! https://t.co/lbMu60b9cH +09/17/2017,Sports_celeb,@RafaelNadal,Enhorabuena a @Carlossainz55 🇪🇸por su primer 4º lugar en la #F1 #gpsingapore🇸🇬 https://t.co/wH4UdUlwLe +09/13/2017,Sports_celeb,@RafaelNadal,Acabo de darme cuenta de que terceras personas han entrado en mi perfil haciendo un uso inaceptable.Ya la he recuperado.Lamento lo sucedido. +09/13/2017,Sports_celeb,@RafaelNadal,Dos dias de descanso antes de hacer un breve viaje... ya os diré algo... +09/12/2017,Sports_celeb,@RafaelNadal,RT @babolat: #PlayToBeWild @RafaelNadal https://t.co/jihSKyQoZh +09/12/2017,Sports_celeb,@RafaelNadal,"RT @usopen: 2010. +2013. +2017. + +#usopen https://t.co/oJsuvzQTKG" +09/12/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Oh hey there Champ 🏆 + +@RafaelNadal #usopen https://t.co/ZMOGb9niP8" +09/11/2017,Sports_celeb,@RafaelNadal,"Leaving NY shortly. My last moments of work was with these guys, Spain's media reps. @NewYorkPalace thanks for a gr… https://t.co/N8nZOmsLR9" +09/11/2017,Sports_celeb,@RafaelNadal,".@Nike has put this poster in the big city!! It looks amazing, don’t you think? Thanks @nike for your support #NY https://t.co/70JXK6N4hf" +09/11/2017,Sports_celeb,@RafaelNadal,Mensajito para agradeceros el apoyo. Ahora toca celebrar #usopen 17 https://t.co/lByqdBNBN7 +09/11/2017,Sports_celeb,@RafaelNadal,Vamossssssss thanks and celebration time #usopen 17 https://t.co/O0k0lhHtvT +09/11/2017,Sports_celeb,@RafaelNadal,".@RNadalAcademy has made this video for me!! Thanks to all the students, players, coaches and staff!! #Vamosss https://t.co/XieNlcBpMC" +09/09/2017,Sports_celeb,@RafaelNadal,Match point. Always a special feeling and a tough one! #USOpen https://t.co/UpGRCTf9hD +09/09/2017,Sports_celeb,@RafaelNadal,"Very happy for this win, and ... I'll go live on my Facebook page live in around 15-20 minutes ;-) @RafaelNadal" +09/07/2017,Sports_celeb,@RafaelNadal,"Great win today, back in the SF @usopen special moments again here #USOpen 17 | Muy contento por la victoria de hoy… https://t.co/qKafshkvLv" +09/04/2017,Sports_celeb,@RafaelNadal,Vamossss!!! Thanks NY!!!! https://t.co/C1fbuMP46V +09/03/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Out of this world for most... + +Standard for @RafaelNadal... + +#USOpen https://t.co/rtOKwXtY7h" +09/03/2017,Sports_celeb,@RafaelNadal,Into the second week of the @usopen !!! #vamos #ESPN https://t.co/iO4tpMGC68 +09/01/2017,Sports_celeb,@RafaelNadal,Congrats Serena!!! So much joy for you!!! https://t.co/u4edTrqIbB +09/01/2017,Sports_celeb,@RafaelNadal,Order of play out and tomorrow day 3rd on Ashe #USOpen Looking forward to this new challenge! Mañana 3 de la central del @usopen. Vamos! +08/31/2017,Sports_celeb,@RafaelNadal,"2nd round tonight, warm up now & getting ready for the match. Looking forward to an exciting & electric night session @usopen #USOpen 2017" +08/31/2017,Sports_celeb,@RafaelNadal,RT @ClinicaTenis: Would you like to have the official towel of @usopen ? RT and follow us to participate!Good luck🎾😉 https://t.co/uWJMIHSS4u +08/30/2017,Sports_celeb,@RafaelNadal,@misterjonesmtl @usopen 😳 +08/30/2017,Sports_celeb,@RafaelNadal,"Guess what, had a good practice today, went out for lunch and now back at the hotel waiting for the OOP @usopen for tomorrow. Guess when" +08/29/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Rafa rolls through his R1 match vs Lajovic, 7-6, 6-2, 6-2! + +#USOpen https://t.co/SXuB3nLXt0 … https://t.co/JRYspcORyj" +08/28/2017,Sports_celeb,@RafaelNadal,. @usopen here we go! Getting ready for tomorrow. 3rd on Ashe day match! #vamos https://t.co/gSjh4gPHpE +08/27/2017,Sports_celeb,@RafaelNadal,Hoy es el cumpleaños de alguien del equipo.... Feliz cumpleaños @Charlymoya https://t.co/lOSYCmfN3B +08/27/2017,Sports_celeb,@RafaelNadal,RT @babolat: 🗽#PlayToBeWild https://t.co/irjw7m5S5i +08/26/2017,Sports_celeb,@RafaelNadal,Had great fun at the “Lotte New York Palace Invitational” @newyorkpalace #PalacePerks https://t.co/v6BTuzT80N +08/26/2017,Sports_celeb,@RafaelNadal,"@newyorkpalaceny, #PalacePerks, had great fun at the Lotte New York Palace Invitational @ Lotte… https://t.co/jrNktx7D1R" +08/26/2017,Sports_celeb,@RafaelNadal,Gettin' ready on Armstrong court. Thanks guys for coming! Big crowds #aakd #usopentennis https://t.co/HQFZ5XoXG4 +08/23/2017,Sports_celeb,@RafaelNadal,Thank you very much for 10 years of support. https://t.co/UVimx01c7N +08/21/2017,Sports_celeb,@RafaelNadal,https://t.co/H2DOia3n6r +08/21/2017,Sports_celeb,@RafaelNadal,https://t.co/klr2YRB9gi +08/17/2017,Sports_celeb,@RafaelNadal,Destrozado por lo que ha ocurrido en Barcelona! Todo mi apoyo a las familias afectadas y a la ciudad. +08/12/2017,Sports_celeb,@RafaelNadal,Entrenando en #Cincinnati! Practicing in Cincinnati! https://t.co/b7BMY4hfpo +08/03/2017,Sports_celeb,@RafaelNadal,Muchos días de alegría en el deporte español y hoy uno de los peores y más tristes para nuestro país. D.E.P. Angel… https://t.co/3cqoneoaY2 +08/03/2017,Sports_celeb,@RafaelNadal,Happy to have practiced at @rnadalacademy these days 😉👌 https://t.co/psRawiZ1N7 +07/31/2017,Sports_celeb,@RafaelNadal,Muchas felicidades @miss_belmont por tus 3 medallas en este Mundial! Enorme!! https://t.co/jcNDinHPHp +07/27/2017,Sports_celeb,@RafaelNadal,Thank you @Kia_Motors for giving me this present for #LaDecima. Really appreciate your support! https://t.co/fyYi91QlxX +07/26/2017,Sports_celeb,@RafaelNadal,Mucha fuerza Angel Nieto. Estamos todos contigo. Ánimos +07/24/2017,Sports_celeb,@RafaelNadal,Great practice today with @GrigorDimitrov at @RNadalAcademy https://t.co/sVHEr4ofTi +07/21/2017,Sports_celeb,@RafaelNadal,RT @babolat: We are @babolat. #PlayToBeWild https://t.co/EXTY1R3LdS +06/22/2018,Sports_celeb,@GarethBale11,🙌🏻 @edsheeran https://t.co/M0Li9rWh3H +06/21/2018,Sports_celeb,@GarethBale11,Great food as always at @ElevensBarGrill with the big man @taulupe 👌🏼🍔🍕 https://t.co/RbjcqTy7QZ +06/21/2018,Sports_celeb,@GarethBale11,@WishShopping keeping us occupied on our summer's off! #Wish #timeonyourhands https://t.co/MxFcTHMjNk +06/17/2018,Sports_celeb,@GarethBale11,Great few days of golf. Thanks Celtic Manor https://t.co/onG0OrrSrL +06/14/2018,Sports_celeb,@GarethBale11,Always a privilege to play a round at the #THEPLAYERS iconic Stadium Course @TPCSawgrass. Thanks to @PGATOUR for th… https://t.co/SXzEux28CN +06/14/2018,Sports_celeb,@GarethBale11,@TyrrellHatton @TPCSawgrass Sorry @TyrrellHatton 🤣 but all good on the 17th 👌🏼 Good luck at Shinnecock! https://t.co/6DE3x7vVK9 +06/14/2018,Sports_celeb,@GarethBale11,@LukeDonald @TPCSawgrass @LukeDonald was just happy to hit that green and make par! 😅 https://t.co/RunRhrr0mK +06/13/2018,Sports_celeb,@GarethBale11,@jackwhitehall @YouTube I’m ready 😂 #TrainingDays https://t.co/pxS9ohJqQj +06/12/2018,Sports_celeb,@GarethBale11,"I had some time on my hands, so picked up a new hobby. Thanks @WishShopping #timeonyourhands https://t.co/mXepTKgFvG" +06/08/2018,Sports_celeb,@GarethBale11,Got myself a new summer job. Thanks @WishShopping ! https://t.co/vS7HzE2nf2 +06/06/2018,Sports_celeb,@GarethBale11,"The Hustle and Grind off the pitch was finally executed in the second half. Always fit, always scoring with my… https://t.co/iZDV2MMCXv" +06/05/2018,Sports_celeb,@GarethBale11,Thanks to Wentworth for a great day playing the West course this afternoon. https://t.co/o17inUisgf +06/02/2018,Sports_celeb,@GarethBale11,"One week later and I’m still buzzing about those #X18 goals! 💥🎯 +An unforgettable night and the best debut I’ve had… https://t.co/U9ECH4Joha" +05/31/2018,Sports_celeb,@GarethBale11,Google Translate ist eine wunderbare Sache 🤣🤣 https://t.co/V3Pq8hx7K0 +05/31/2018,Sports_celeb,@GarethBale11,Muchas Felicidades Lucas 👶🏻 https://t.co/Tzz8boXaBc +05/29/2018,Sports_celeb,@GarethBale11,New @adidasfootball kits for 2018/19. Inspired to keep creating @realmadrid history! #HereToCreate… https://t.co/CJis1E5rcr +05/27/2018,Sports_celeb,@GarethBale11,"Right height, perfect angle, it all happened in a split-second. #InnovateYourGame https://t.co/DYji9sEvzl" +05/27/2018,Sports_celeb,@GarethBale11,Proud to create history with this great club @realmadrid ! 🏆 That goal last night was one of my best ever.… https://t.co/v0HQ8NSIrh +05/27/2018,Sports_celeb,@GarethBale11,Last night ⚽👌🏼 https://t.co/3FZQyL74VV +05/26/2018,Sports_celeb,@GarethBale11,🏆🏆🏆🏆 in 5⃣ #HalaMadrid https://t.co/YENvZ5DH1R +05/24/2018,Sports_celeb,@GarethBale11,Few days before the #UCLFinal show in Kyiv … Throwback on some of the greatest goals of the season. Enjoy! https://t.co/ZPnWgEcTKP +05/24/2018,Sports_celeb,@GarethBale11,My 4th Champions League Final with @adidasfootball and @realmadrid. Ready for the big stage with #X18!… https://t.co/RvpcMPBfXY +05/19/2018,Sports_celeb,@GarethBale11,Not the result we wanted to finish La Liga. One more game to go now .. ⚽ https://t.co/pss1CI8Iy7 +05/12/2018,Sports_celeb,@GarethBale11,⚽️⚽️ https://t.co/XmdCSY85Gj +05/11/2018,Sports_celeb,@GarethBale11,"The purest test in golf!! the famous island green – #theplayers Championship is under way, I took the PGA Tour chal… https://t.co/ePrwvIJcru" +05/10/2018,Sports_celeb,@GarethBale11,I've teamed up with the @PGATOUR to take on the Mug Challenge ahead of #ThePlayers Championship this week. Follow a… https://t.co/whG0nG9xLS +05/10/2018,Sports_celeb,@GarethBale11,"At least they recognised me @jackwhitehall 😂 +Out now: https://t.co/mnkIDLxdji #TrainingDays https://t.co/Tnk3wi0Gz5" +05/08/2018,Sports_celeb,@GarethBale11,We are delighted to welcome a baby boy into our family this morning. Axel Charles Bale 08.05.18 👶🏻💙 https://t.co/dFbHNdFwnH +05/06/2018,Sports_celeb,@GarethBale11,Tough point away from home tonight! Got to keep pushing on ⚽ https://t.co/wrCDi2BafY +05/01/2018,Sports_celeb,@GarethBale11,We are off to Kyivvv!!!! ✈️🏆 https://t.co/5vwFEu13xo +04/28/2018,Sports_celeb,@GarethBale11,3 points 👌🏼⚽ https://t.co/vaKMkfzVA9 +04/13/2018,Sports_celeb,@GarethBale11,Everyday is a challenge. Make your day count. @AltitudeMask #altitudemask #areyouawinner https://t.co/7TM7fQ2rgN +04/08/2018,Sports_celeb,@GarethBale11,"Not the result we are after today, but looking forward to Wednesday #HalaMadrid https://t.co/Yogdkp7IO7" +04/05/2018,Sports_celeb,@GarethBale11,Another level!! Watch me run the game in #AlphaBOUNCE BEYOND #CREATEDWITHADIDAS @adidasrunning #ad https://t.co/cyRbvUkb0Z +03/31/2018,Sports_celeb,@GarethBale11,Great win away from home! All focus now to the Champions League ⚽⚽ https://t.co/3TxGMmoIMY +03/29/2018,Sports_celeb,@GarethBale11,Putting the #AlphaBOUNCE BEYOND to the test! Check it out for yourself!! https://t.co/cRIY3Nljh5 #CREATEDWITHADIDAS… https://t.co/FVQMwgD5u6 +03/22/2018,Sports_celeb,@GarethBale11,Unbelievable reception here in China and to see so many Welsh Fans make the trip. Very proud to break Ian’s record… https://t.co/OrBVhnsbV9 +03/21/2018,Sports_celeb,@GarethBale11,"Check out my incredible Southwest Greens®️ 3 Hole Course, built for me by @SWGConstruction and @SWGreensUK, designe… https://t.co/EH9Sg4Jl9V" +03/18/2018,Sports_celeb,@GarethBale11,Good win again tonight!! Vamos equipo ⚽ https://t.co/beo9FbZqgZ +03/09/2018,Sports_celeb,@GarethBale11,Baby number 3 coming soon 👶🏻🍼 https://t.co/PftWCLVy2B +03/08/2018,Sports_celeb,@GarethBale11,"Supporting International Women’s Day today. Something very important to me personally, raising 2 amazing daughters… https://t.co/D49qt47n1F" +03/07/2018,Sports_celeb,@GarethBale11,"Good win last night, had to get the job done! Looking forward now to the next round 🙌🏻 https://t.co/UpkRqk7ZIt" +03/01/2018,Sports_celeb,@GarethBale11,"Alba’s representing over here in Madrid! Happy St David’s day everyone. Dydd Gŵyl Dewi Sant Hapus +#welshandproud https://t.co/HQkKl3UmJ4" +02/24/2018,Sports_celeb,@GarethBale11,+3 💪🏻 #halamadrid https://t.co/MgHFLCDz5a +02/20/2018,Sports_celeb,@GarethBale11,"Good session today at training, ready for tomorrow 💪🏻 https://t.co/94AM7zqt4l" +02/19/2018,Sports_celeb,@GarethBale11,What a game last night! 3-5 💪🏼 #HalaMadrid https://t.co/eYgCbPUI7H +02/14/2018,Sports_celeb,@GarethBale11,Great win in front of the home fans! Still a lot of work to be done but onto the second leg to finish the job 💪🏻⚽ https://t.co/ubZe5M0xPX +02/13/2018,Sports_celeb,@GarethBale11,"Best wishes @RyanMason! Good luck for the future, it was a pleasure to play along side you! https://t.co/PvoD4YDNyI" +02/05/2018,Sports_celeb,@GarethBale11,Happy Birthday @Cristiano 🎉 https://t.co/TGNFTQwAW5 +01/30/2018,Sports_celeb,@GarethBale11,"Stamina is key to my game, +@AltitudeMask always ensures my fitness level and endurance is at its best.… https://t.co/IZV9CNpM09" +01/27/2018,Sports_celeb,@GarethBale11,Good win away from home. Vamos equipo!! 💪🏼 https://t.co/bvapgs8aZM +01/21/2018,Sports_celeb,@GarethBale11,Great performance today! We need to work on this and keep improving ⚽⚽ #HalaMadrid https://t.co/qX47s8csdI +01/18/2018,Sports_celeb,@GarethBale11,Great win at the end away to Leganes 🙌🏻 Still a lot of work to do in the second leg #HalaMadrid https://t.co/ov08cdGCrS +01/15/2018,Sports_celeb,@GarethBale11,"Tragic news about Cyrille Regis. Helped me alot when i was younger and was a great man! +My thought are with his fam… https://t.co/5hHaWFq13U" +01/07/2018,Sports_celeb,@GarethBale11,Not the result we were after tonight! Good to be back helping the team but need to keep working and keep improving https://t.co/Sz8tjhVKOd +01/07/2018,Sports_celeb,@GarethBale11,Preparations done ✅ Vigo tonight💪🏻⚽ #HalaMadrid https://t.co/BerslRFPMj +01/04/2018,Sports_celeb,@GarethBale11,Very happy to kick 2018 off with the win! ⚽ #HalaMadrid https://t.co/sh4V0H890s +12/19/2017,Sports_celeb,@GarethBale11,Happy Birthday @Benzema ! What a few years it’s been 🏆🎉 https://t.co/VCwzYxXCcj +12/16/2017,Sports_celeb,@GarethBale11,🏆 #Champions #ClubWC https://t.co/KHfHYIdzOk +12/13/2017,Sports_celeb,@GarethBale11,"Loved being back on the pitch tonight, tough win but always good to grab a goal ⚽ https://t.co/w9dxTsUKah" +12/11/2017,Sports_celeb,@GarethBale11,No easy draw in the @ChampionsLeague last 16. Looking forward to getting out there and more moments like these 🏆⚽ https://t.co/wsheVPOXXX +12/09/2017,Sports_celeb,@GarethBale11,What a game!! Fantastic result in front of the home fans 👌🏻⚽ #HalaMadrid https://t.co/Wb7ShxAgVD +12/08/2017,Sports_celeb,@GarethBale11,🏆🏆🏆🏆🏆Congratulations @Cristiano https://t.co/u3QbKk0UZ7 +11/28/2017,Sports_celeb,@GarethBale11,"Really enjoyed being back out there, and even better to get through to the next round 🙌🏻#HalaMadrid https://t.co/qzvvm9bg1U" +11/28/2017,Sports_celeb,@GarethBale11,"RT @realmadrid: 👍🚌 ¡Concentrados para el partido contra el @CFuenlabradaSAD! + +#RMCopa | #HalaMadrid https://t.co/aIYsqxrKI9" +11/27/2017,Sports_celeb,@GarethBale11,"Great to be back in training with the guys, been a tough month but working hard to get back out there 🔋🎯⚽… https://t.co/J8cykB8vR2" +11/22/2017,Sports_celeb,@GarethBale11,"RT @UNICEF: Thank YOU... + +🔵 For saving children’s lives. + +🔵 For defending children’s rights. + +🔵 For helping children fulfill their potentia…" +11/21/2017,Sports_celeb,@GarethBale11,Great win away from home and sees us through to the next round 👌🏼 #HalaMadrid https://t.co/eqs2h0Vwhs +11/18/2017,Sports_celeb,@GarethBale11,#DiolchChris An amazing manager and a top guy! Just want to say good luck for your future and a big thank you for t… https://t.co/BGq2fTd1Tl +11/12/2017,Sports_celeb,@GarethBale11,Lest we Forget #RemembranceSunday https://t.co/5WMzzOB7lN +11/01/2017,Sports_celeb,@GarethBale11,"Good sessions this week 🏃 Good luck to the boys tonight, gutted to not be playing at Wembley but working hard to ge… https://t.co/QpTjL9fg39" +10/22/2017,Sports_celeb,@GarethBale11,Great 3 points and performance from the team tonight 💪🏻 #HalaMadrid https://t.co/oESkxDx1A3 +10/22/2017,Sports_celeb,@GarethBale11,🏃🏻⚽ https://t.co/BaC3lk4CT0 +10/17/2017,Sports_celeb,@GarethBale11,"What an atmosphere tonight! Important point, can't wait for the game in Wembley ⚽ #HalaMadrid https://t.co/R8TJ41sqm0" +10/14/2017,Sports_celeb,@GarethBale11,Straight back to winning ways after the international break! 👏🏼⚽ https://t.co/jrbKkGKCyt +10/12/2017,Sports_celeb,@GarethBale11,Homemade sushi 🍣👌🏼 https://t.co/15JgkfIhUR +10/10/2017,Sports_celeb,@GarethBale11,"Hard loss to take last night, but couldn’t be more proud of the team, we leave with our heads held high 🐉… https://t.co/YR4U9ggrMf" +10/06/2017,Sports_celeb,@GarethBale11,"Hard fought victory for the boys, 1 more game! 🐲⚽🔴 https://t.co/AWYtjrA6Hi" +10/04/2017,Sports_celeb,@GarethBale11,"Gutted I’m not in Georgia with the team, let’s bring home another win like this one boys @FAWales 🐉… https://t.co/GHf8yA2tfs" +09/29/2017,Sports_celeb,@GarethBale11,"I need the fastest boots in the game, always. Love this new colour! 🔥👌🏼@adidasfootball #HereToCreate #X17 https://t.co/UsH7Qjt9ul" +09/28/2017,Sports_celeb,@GarethBale11,"RT @Dugout: WIN: a pair of boots signed by @realmadrid's @GarethBale11! ⚽️🔥 + +Enter ➡️ https://t.co/h2x9pEB4XW + +#HalaMadrid https://t.co/eJZ…" +09/27/2017,Sports_celeb,@GarethBale11,Comida increible en mi nuevo favorito restaurante en Majadahonda - Maduk! Enhorabuena mi amigo 👌🏼 https://t.co/OCCL9fDogs +09/26/2017,Sports_celeb,@GarethBale11,Great performance from the team tonight 💪🏻 happy to get on the scoresheet too ⚽#HalaMadrid #UCL https://t.co/FxVoVGmB24 +09/25/2017,Sports_celeb,@GarethBale11,All focus on tomorrow night ⚽ #UCL #HalaMadrid https://t.co/TI8XgWcut0 +09/23/2017,Sports_celeb,@GarethBale11,Good 3 points and congrats @isco_alarcon 2⃣0⃣0⃣ #halamadrid https://t.co/yroNfCqJJD +09/20/2017,Sports_celeb,@GarethBale11,Matchday #HalaMadrid 🙌🏻⚽ https://t.co/sPVGCix8Ru +09/17/2017,Sports_celeb,@GarethBale11,@aarbeloa17 VAMOS 💪🏻💪🏻💪🏻 +09/17/2017,Sports_celeb,@GarethBale11,Big win at a tricky ground ⚽👌🏼😛 https://t.co/EoFNSjr3Xn +09/15/2017,Sports_celeb,@GarethBale11,Great to meet the fans today in Madrid! #ThePulseofRealMadrid https://t.co/M0xg8ZNNyu +09/13/2017,Sports_celeb,@GarethBale11,Solid 3 points to start the #UCL campaign 👌🏼 https://t.co/ekZNzC7lsR +09/12/2017,Sports_celeb,@GarethBale11,"In Football, we stand together #EqualGame #Respect +Can't wait to kick off our @realmadrid @ChampionsLeague campaign… https://t.co/zYbUBv0qAj" +09/11/2017,Sports_celeb,@GarethBale11,WATCH me surprise youngsters in Madrid and show them how to score a @ChampionsLeague winning goal #UCL #HalaMadrid https://t.co/xUdwukKYiK +09/08/2017,Sports_celeb,@GarethBale11,"Training done, looking forward to tomorrow's game ⚽ #HalaMadrid https://t.co/XBvDcVRMIS" +09/05/2017,Sports_celeb,@GarethBale11,One step closer 🐉 https://t.co/e0f78ZOibj +09/04/2017,Sports_celeb,@GarethBale11,"Can't wait to get back out there tomorrow. Huge game, only the win will do! 🐉 https://t.co/w6dHWYFC7i" +09/02/2017,Sports_celeb,@GarethBale11,Massive 3 points! Come on boys!! 🐉 https://t.co/rbIEEIflAU +09/01/2017,Sports_celeb,@GarethBale11,RT @WayneHennessey1: Love & Support from @FAWales to the Bigman @Carl_Ikeme ❤️#teamkemes #TogetherStronger https://t.co/8COmSbSAl8 +08/30/2017,Sports_celeb,@GarethBale11,Really good to meet the fans at training yesterday. Hope you all had a great day! 😃👍🏻 https://t.co/0Sf2Z35zky +08/24/2017,Sports_celeb,@GarethBale11,Always winning with my @AltitudeMask #altitudemask #areyouawinner https://t.co/YDvWeGrV3l https://t.co/DHw6Hmm1AN +08/24/2017,Sports_celeb,@GarethBale11,#TooExcitedTo wait for the UCL draw? Let me know who you think we will be drawn against? https://t.co/HNFLinjOZr https://t.co/do7flklwiX +08/23/2017,Sports_celeb,@GarethBale11,Great to be back in front of the Bernabeu crowd and to lift the Santiago Bernabeu trophy 🏆🙌🏻 https://t.co/a1kK6FRpH3 +08/20/2017,Sports_celeb,@GarethBale11,Great to start the season with 3 points away from home! ⚽ #HalaMadrid https://t.co/aYdwV5brBY +08/17/2017,Sports_celeb,@GarethBale11,Thoughts are with everyone in Barcelona tonight 🙏🏼 +08/17/2017,Sports_celeb,@GarethBale11,Great night last night 🏆🙌🏻 Now all focus shifts towards La Liga ⚽ https://t.co/64L2WTTTM7 +08/16/2017,Sports_celeb,@GarethBale11,Vaamoosss!! Second trophy of the season and what a performance to win it with 🏆🏆#SupercopadeEspana https://t.co/wORhWXDMHu +08/14/2017,Sports_celeb,@GarethBale11,"Congratulations @JustinThomas34 Great back 9, what a way to win your first major ⛳🏆" +08/13/2017,Sports_celeb,@GarethBale11,Great team performance tonight!! Can't wait for the second leg now on Wednesday ⚽#halamadrid https://t.co/L75lqtLuvB +08/09/2017,Sports_celeb,@GarethBale11,🏆😃#halamadrid https://t.co/EAf5I4O8Ia +08/08/2017,Sports_celeb,@GarethBale11,Super Cup x 3 🏆🏆🏆👌🏼 https://t.co/hbasQtMo7r +08/08/2017,Sports_celeb,@GarethBale11,The @btsport #HardestHits..Round One.... @mrjakehumphrey 👀😂 sorry! https://t.co/jTCOWGiz2M +08/07/2017,Sports_celeb,@GarethBale11,Super Cup time 🙌🏻⚽⏱ #HalaMadrid https://t.co/76uxPR2SP6 +08/06/2017,Sports_celeb,@GarethBale11,"RT @SouthamptonFC: #OnThisDay in 2006, a 17-year-old @GarethBale11 netted his first senior goal for #SaintsFC against #DCFC! 👏 https://t.co…" +08/06/2017,Sports_celeb,@GarethBale11,Watched @usainbolt for over a decade ignite the world!! #goat #respect https://t.co/fWPyB43ECS +08/05/2017,Sports_celeb,@GarethBale11,😀💪🏻 ready for #uefasupercup https://t.co/rjlOgzkxFa +08/03/2017,Sports_celeb,@GarethBale11,Put through the ringer there @Dele_Alli 😂😂. Watch @btsport #beingdele now! https://t.co/Ngn4RMSpF5 +08/03/2017,Sports_celeb,@GarethBale11,Great fun watching @Dele_Alli in the ring. Thanks for the invite @mrjakehumphrey & watch @btsport #BeingDele from 8… https://t.co/VNRdqhr9FD +08/02/2017,Sports_celeb,@GarethBale11,My next @adidasfootball partner. Ocean Storm is here ! 🌊👟#HereToCreate #X17 https://t.co/L5rrXcmNzG +07/28/2017,Sports_celeb,@GarethBale11,"Fitness is a lifestyle, taking my @AltitudeMask wherever I go, maintaining my conditioning in all environments… https://t.co/oPU7CJBVBg" +07/27/2017,Sports_celeb,@GarethBale11,"Great to see so many fans over the past couple of weeks in LA, support has been amazing 🙌🏻 next stop Miami! https://t.co/j4hYf0gRIp" +07/25/2017,Sports_celeb,@GarethBale11,Great to see this legend in LA 🇺🇸 https://t.co/gIW3R1pZfV +07/23/2017,Sports_celeb,@GarethBale11,"First game back, all about the preparation at this stage. Good run out in front of an amazing crowd 👏🏼 #HalaMadrid https://t.co/m2P6dtk5Sm" +07/21/2017,Sports_celeb,@GarethBale11,Blue meets Blue 👀👕 Our new @adidasfootball third kit ! @realmadrid #HalaMadrid #HereToCreate https://t.co/9whfhmsG4t +07/19/2017,Sports_celeb,@GarethBale11,Training continues 👌🏼🏋🏻 https://t.co/9K5wyXac7C +07/16/2017,Sports_celeb,@GarethBale11,Enjoyed the birthday session today ⚽ Thanks to everyone for all the well wishes 🙌🏻 https://t.co/4hw3V9bgua +07/14/2017,Sports_celeb,@GarethBale11,My fifth season has begun with this great club. Can't wait to be back out there again! #HereToCreate #X17… https://t.co/7Uy3c32cLf +07/13/2017,Sports_celeb,@GarethBale11,"Good start to pre season, great to be back in LA 🇺🇸🌞⚽ https://t.co/ab38PHGwFS" +07/11/2017,Sports_celeb,@GarethBale11,Great to be back with the boys 👍🏻 LA bound ✈️⚽ https://t.co/VzOEBovW45 +07/07/2017,Sports_celeb,@GarethBale11,👍🏻🏌⛳ @TheCelticManor https://t.co/1tHmprejAR +07/04/2017,Sports_celeb,@GarethBale11,"Great to head into @elevensbargrill tonight, heres a glimpse in to what went in to making it ..… https://t.co/QLtm3vlXZa" +07/04/2017,Sports_celeb,@GarethBale11,Another great year at the #CelebCup. Shame about the Welsh result 😂 But an unbelievable event and all for a great c… https://t.co/2gxB8t8Mup +07/03/2017,Sports_celeb,@GarethBale11,"Make sure you pick up a copy of Don’t Take Me Home, on shelves today. Relive our unmissable summer… https://t.co/t112G2oock" +06/30/2017,Sports_celeb,@GarethBale11,Back again #celebcup 🏌 https://t.co/j9jZolfrmZ +06/27/2017,Sports_celeb,@GarethBale11,An #SB2K inspired tour to @BakersBay. What a day! @RickieFowler @JustinThomas34 @JordanSpieth @SmylieKaufman10 https://t.co/9ACZ2acYbZ +06/24/2017,Sports_celeb,@GarethBale11,Wentworth 🌞⛳ https://t.co/up59GjBcO0 +06/23/2017,Sports_celeb,@GarethBale11,"Training with my @AltitudeMask ahead of preseason. Huge year for club and country, find out more at… https://t.co/KTvVT9ywpR" +06/15/2017,Sports_celeb,@GarethBale11,What a night in Cardiff for the #UCLFinal. Glad @NissanEurope managed to get it there on time! #TooExcitedToo https://t.co/Pb1fjxO0rs +06/14/2017,Sports_celeb,@GarethBale11,"And to end the day, here’s our new @adidasfootball away shirt. 🙌🏽 Can’t wait for the new season with @realmadrid !… https://t.co/FSIPwZ4dia" +06/14/2017,Sports_celeb,@GarethBale11,At home we create in white. Our 2017/18 @adidasfootball home shirt. 👌🏽💪🏼 @realmadrid #HereToCreate #HalaMadrid https://t.co/qOPebv2swz +06/14/2017,Sports_celeb,@GarethBale11,At @realmadrid we play to create history. Let’s do the same with our new @adidasfootball kits! #HereToCreate… https://t.co/iH9YaOYpAQ +06/11/2017,Sports_celeb,@GarethBale11,"Solid point away from home, boys played well and keeps us in the running! #TogetherStronger" +06/08/2017,Sports_celeb,@GarethBale11,"Made some incredible memories this season! But sad to see the last @SpursOfficial game at WHL, will always be a spe… https://t.co/K94pNGCXjm" +06/07/2017,Sports_celeb,@GarethBale11,Can't wait to compete in the @TheCelticManor #CelebCup again! Hopefully we can bring it home for Wales 🏆🐉 https://t.co/38BoLAINvp +06/05/2017,Sports_celeb,@GarethBale11,"Awful news, so sorry to hear about Cheick Tioté, my thoughts are with his family and friends" +06/05/2017,Sports_celeb,@GarethBale11,"3 🏆 in 4 years, what a team to be part of! Thank you to all of the fans for their support this year 👏🏻🙌🏻 #HalaMadrid https://t.co/Tf1PcYYMJA" +06/04/2017,Sports_celeb,@GarethBale11,Incredible scenes at the Bernabéu 🙌🏻 Gracias Madridistas 🎉🎉🎉 https://t.co/uz4ESN3ikx +06/04/2017,Sports_celeb,@GarethBale11,🏆🏆🎉💯 https://t.co/BRxTbFCIJH +06/04/2017,Sports_celeb,@GarethBale11,🙌🏻🙌🏻🙌🏻🙌🏻 #halamadrid https://t.co/oNMe77vEzc +06/04/2017,Sports_celeb,@GarethBale11,"2014 🏆2016 🏆2017🏆 +Proud to create @realmadrid history again, always with @adidasfootball 👟 +I'm just getting started… https://t.co/5WsVGcpbAC" +06/03/2017,Sports_celeb,@GarethBale11,🏆🏆🏆 https://t.co/mBV72PqvWa +06/03/2017,Sports_celeb,@GarethBale11,"Thank you for the incredible welcome, fans are amazing 🙌🏻 Gracias, Diolch, 🐉🇪🇸 #HalaMadrid #APorLa12 🏆 https://t.co/Ru2ULLhmAJ" +06/03/2017,Sports_celeb,@GarethBale11,#TooExcitedTo wait for the #UCLFinal? Watch the trophy go through Cardiff live today via @NissanEurope at 3pm https://t.co/22od6A3e91 +06/02/2017,Sports_celeb,@GarethBale11,"Behind the scenes @Dugout for @btsport #SportInFocus, watch tonight on BT Sport 2 at 20.30. Full BTS… https://t.co/e3ksTLyHTE" +06/02/2017,Sports_celeb,@GarethBale11,Cardiff here we come! 🐉⚽ #HalaMadrid #APorLa12 🏆 https://t.co/Q4mPtiSIb3 +06/01/2017,Sports_celeb,@GarethBale11,"The #UCL final awaits. +The ultimate game. +The ultimate record. +I am #HeretoCreate it. +#X17 https://t.co/LoDux4o82u" +06/01/2017,Sports_celeb,@GarethBale11,Stepping things up in training. 2 more days #UCLFinal https://t.co/HK6bhASQV7 +05/31/2017,Sports_celeb,@GarethBale11,Controlling my breathing is key to maximise the work out and increase endurance threshold. @AltitudeMask https://t.co/OM3I9Vljvv +05/31/2017,Sports_celeb,@GarethBale11,3 days #UCLFinal https://t.co/ovZ44piMRH +05/30/2017,Sports_celeb,@GarethBale11,"Congratulations @danleydon ,winner of @btsport #ChampionsDraw and for retaining the crown!! https://t.co/mVoaqMFtoE" +05/27/2017,Sports_celeb,@GarethBale11,⚽️☀️ https://t.co/cLpNx2Iruf +05/26/2017,Sports_celeb,@GarethBale11,You might be wondering how I’m floating? It’s not meditation … it’s the power of the perfect sleep on a SIMBA mattr… https://t.co/fMIQMQeuJx +05/26/2017,Sports_celeb,@GarethBale11,"Back in training with the boys, all focus towards Cardiff ⚽ https://t.co/hJl82sg9Qx" +05/25/2017,Sports_celeb,@GarethBale11,"Follow @sportconvo for a chance to win this signed cap by me. +Terms and conditions on https://t.co/fFtOI8SkSs https://t.co/xTueyprdNp" +05/24/2017,Sports_celeb,@GarethBale11,Fully focused on my fitness and recovery with my @AltitudeMask #altitudemask #areyouawinner https://t.co/YPGNpz1bwO +05/23/2017,Sports_celeb,@GarethBale11,Truly awful news to wake up too!! Thoughts are with all affected in Manchester 🙏🏻 https://t.co/6HStCC7Pc0 +05/22/2017,Sports_celeb,@GarethBale11,Incredible turn out at today's parade! 👏🏻🙌🏻😀🎉🏆 https://t.co/eLBtGQC9AR +05/22/2017,Sports_celeb,@GarethBale11,What an amazing night! Thank you to all the Madridistas #33 #Champions 🙌🏻👏🏻🎉 https://t.co/LG6uhExRMs +05/21/2017,Sports_celeb,@GarethBale11,🇪🇸🏆 La Liga Champions! #Halamadrid https://t.co/Ijqozx9mS2 +05/17/2017,Sports_celeb,@GarethBale11,"Great result!! One step closer, vaaaamos 💪🏼 https://t.co/pKyxdPgs4x" +05/14/2017,Sports_celeb,@GarethBale11,One step closer to our goal! Fans were incredible tonight 🙌🏻 #vamos https://t.co/9B8Y95fRmd +05/12/2017,Sports_celeb,@GarethBale11,Happy Birthday my friend!! @MarceloM12 👍🎂 https://t.co/EUtAVEGTXi +05/11/2017,Sports_celeb,@GarethBale11,So proud of the team last night and now continuing my recovery to get back out on the pitch! #HalaMadrid https://t.co/1YrhGuitrT +05/10/2017,Sports_celeb,@GarethBale11,Cardiff here we come!! #HALAMADRID https://t.co/QqetlUOnwC +05/10/2017,Sports_celeb,@GarethBale11,Goaaalllllll #halamadrid +05/10/2017,Sports_celeb,@GarethBale11,Let's finish the job tonight. Come on boys!! #HalaMadrid +05/09/2017,Sports_celeb,@GarethBale11,"RT @adidasUK: 🏆 is coming to town. +Stay tuned to get involved. 👀 https://t.co/ZAFX5unQaF" +05/06/2017,Sports_celeb,@GarethBale11,Great first half and good win away from home 👌🏼@realmadrid #halamadrid https://t.co/H0x7npZKBe +05/06/2017,Sports_celeb,@GarethBale11,"Good luck to the boys tonight, gutted not to be on the pitch but working hard on recovery #halamadrid" +05/02/2017,Sports_celeb,@GarethBale11,What an all round performance! And that man again @Cristiano ⚽⚽⚽ #HalaMadrid https://t.co/hlAjXS0o3M +04/29/2017,Sports_celeb,@GarethBale11,What a fight! Congratulations @anthonyfjoshua and huge respect to @Klitschko 🥊 https://t.co/sbu6EpNdWF +04/29/2017,Sports_celeb,@GarethBale11,Great character shown again from the boys!! 💪🏼 #HalaMadrid https://t.co/JxHGwRcqGM +04/28/2017,Sports_celeb,@GarethBale11,Looking forward to tomorrow night's fight. Good luck @anthonyfjoshua #keepmoving @AltitudeMask #areyouawinner 💪🏼🥊 https://t.co/mTCWxqrcbp +04/25/2017,Sports_celeb,@GarethBale11,No matter what the conditions are I'm always putting in the work and recovering with my @AltitudeMask #altitudemask… https://t.co/fom0Jrr9sS +04/22/2017,Sports_celeb,@GarethBale11,💪🏼 #ElClasico https://t.co/uWQoh9GB4K +04/18/2017,Sports_celeb,@GarethBale11,Vaamosss 💪🏻💪🏻What a performance! Semi finals!! 🙌🏻🙌🏻🙌🏻 #halamadrid https://t.co/mLfw3lK4DD +04/17/2017,Sports_celeb,@GarethBale11,"Proud to be an ambassador for @SimbaSleep , who've developed the most advanced airline seat 😴😴… https://t.co/Zp7WyVtG3t" +04/15/2017,Sports_celeb,@GarethBale11,Kept going until the end again and never gave up! #halamadrid https://t.co/w8Z1dmGbUn +04/14/2017,Sports_celeb,@GarethBale11,"Watch the world premiere of Nissan’s new TV ads where my substitute, Ana, played alongside @aguerosergiokun https://t.co/xIi2DmzoEk" +04/11/2017,Sports_celeb,@GarethBale11,✈️👍🏻🇩🇪 #UCL https://t.co/dA5xMY0xCk +04/10/2017,Sports_celeb,@GarethBale11,Watch to find out how I got on as I attempted to re-create my @ChampionsLeague free kick for @btsport's… https://t.co/3uzqtoMvxc +04/10/2017,Sports_celeb,@GarethBale11,What a #Masters!! Huge congratulations to my friend @TheSergioGarcia unbelievable stuff! ⛳🙌🏻 https://t.co/GVezsDkGov +04/09/2017,Sports_celeb,@GarethBale11,Great evening relaxing with #masters before champions league this week!! Good luck @TheSergioGarcia @JustinRose99 ⛳😂 https://t.co/Q5D1AMJBaZ +04/08/2017,Sports_celeb,@GarethBale11,"Disappointing to concede so late on, boys played well! #halamadrid https://t.co/DYGjRqhraT" +04/07/2017,Sports_celeb,@GarethBale11,Good luck guys! 👍🏻 https://t.co/utD7cyiJjO +04/07/2017,Sports_celeb,@GarethBale11,Delighted to announce my partnership with @AltitudeMask the world leading resistance mask brand #areyouawinner… https://t.co/AcP9tUh7WQ +04/06/2017,Sports_celeb,@GarethBale11,This #X16 boot is all about SPEED! Can’t wait to get out there! #NeverFollow @adidasfootball https://t.co/Kfc7oUfjNL +04/05/2017,Sports_celeb,@GarethBale11,3 points away from home 👌🏼 #HalaMadrid https://t.co/Qx7OoJNblD +04/02/2017,Sports_celeb,@GarethBale11,Really good win against a tough Alaves team! Looking forward to the midweek game now 💪🏼#HalaMadrid https://t.co/SKjxXodv2D +03/30/2017,Sports_celeb,@GarethBale11,Special memories with a great captain. Happy Birthday @SergioRamos! #ElCapitán https://t.co/1pWvTfq6hn +03/18/2017,Sports_celeb,@GarethBale11,Tough 3 points away in Bilbao 💪🏼Now time to focus on the international break! ✈️ #halamadrid https://t.co/zArffasSwP +03/17/2017,Sports_celeb,@GarethBale11,A deadly famine has been declared in parts of East Africa. Visit @unicef_uk appeal and help us in saving lives -… https://t.co/AF5axvQ9LQ +06/20/2018,Sports_celeb,@MoSalah,الجميع في منتخب مصر متكاتف ولا يوجد أي خلاف على الإطلاق بيننا.. نحترم بعضنا البعض والعلاقة على أفضل وجه. +06/18/2018,Sports_celeb,@MoSalah,"Ready for tomorrow. +100 million strong.🇪🇬🇪🇬🇪🇬 @adidasfootball #HereToCreate https://t.co/03BI9CQbgI" +06/15/2018,Sports_celeb,@MoSalah,كل عام والجميع بخير وعيد سعيد علينا جميعًا... +06/12/2018,Sports_celeb,@MoSalah,I wear these for 100 million Egyptians.@adidasfootball https://t.co/lpbW4b04Mh +06/10/2018,Sports_celeb,@MoSalah,Russia here we are😅 https://t.co/d82COl9vzP +06/08/2018,Sports_celeb,@MoSalah,🕺🏽🕺🏽 https://t.co/D3OjzbzsOK +06/08/2018,Sports_celeb,@MoSalah,"RT @lequipe: Mohamed Salah : «Le statut de héros, je dois le gérer depuis longtemps» + +Devenu phénomène mondial, il raconte son parcours et…" +06/07/2018,Sports_celeb,@MoSalah,🧢🧢 https://t.co/bC4tXnFvzR +06/06/2018,Sports_celeb,@MoSalah,🌊🌊 https://t.co/KztZQ0Hnim +06/03/2018,Sports_celeb,@MoSalah,Good feelings... https://t.co/Jhyd2kYVKI +05/29/2018,Sports_celeb,@MoSalah,"@brfootball +#NewYork #TimesSquare https://t.co/cij7zorbh4" +05/27/2018,Sports_celeb,@MoSalah,"It was a very tough night, but I'm a fighter. Despite the odds, I'm confident that I'll be in Russia to make you al… https://t.co/8dEez837V7" +05/24/2018,Sports_celeb,@MoSalah,#HereToCreate https://t.co/Ij7rBgvziZ +05/20/2018,Sports_celeb,@MoSalah,🧐🧐 https://t.co/REESq5bg2t +05/19/2018,Sports_celeb,@MoSalah,@ElHadary اكونت الحضري ولا تريزيجيه ده 🤷🏽‍♂️دا مرض وانتشر ربنا يحفظنا 🤣 +05/19/2018,Sports_celeb,@MoSalah,https://t.co/YjEJ21yxuB. Good luck tomorrow guys! +05/19/2018,Sports_celeb,@MoSalah,🤪🤪🤪 @Uber_Egypt https://t.co/mIyU0XLnqX +05/18/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬 https://t.co/fBBXSL9WjY +05/18/2018,Sports_celeb,@MoSalah,🙋🏻‍♂️🙋🏻‍♂️ https://t.co/EAu0F7KsLu +05/17/2018,Sports_celeb,@MoSalah,@theritzlondon 😀 https://t.co/0WkQM9bwbA +05/16/2018,Sports_celeb,@MoSalah,كل عام وأنتم بخير ورمضان كريم ربنا يعيده علينا بالخير والسعادة علينا جميعًا... +05/16/2018,Sports_celeb,@MoSalah,🙄🙄 https://t.co/LcUIy7gwSn +05/14/2018,Sports_celeb,@MoSalah,😀😀 https://t.co/CWGO5EuU6J +05/14/2018,Sports_celeb,@MoSalah,@ElShenawy كل سنة وانت طيب يا أعز الناس 🤗 +05/13/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬🇪🇬 https://t.co/KYOs14wMTG +05/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: Amazing @MoSalah! + +A new record for #PL goals in a 38-match season https://t.co/VeMk03Lumg" +05/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: 📸 Mo Salah - #PL record breaker + +👏👏👏 https://t.co/UncKNGp2B3" +05/13/2018,Sports_celeb,@MoSalah,"RT @OfficialFPL: 303pts - SALAH (17/18) +295pts - Suarez (13/14) +284pts - Lampard (09/10) +283pts - Ronaldo (07/08) + +@MoSalah sets a new rec…" +05/13/2018,Sports_celeb,@MoSalah,Golden Boot? Come here to daddy 😂 https://t.co/GasYbIerEm +05/13/2018,Sports_celeb,@MoSalah,@GaryLineker @Cristiano @alanshearer @LuisSuarez9 I told you I would 😀 +05/12/2018,Sports_celeb,@MoSalah,@AhmedLSaadany @nabilelhalfawy لا انا هطلع من تويتر قبل متقولي خده صلحه يا صلاح 🙄😀 +05/12/2018,Sports_celeb,@MoSalah,@AhmedLSaadany @nabilelhalfawy اه بس أكيد الموتسيكل ده مبيمشيش علي الأرض زي الموتسيكلات العادية🤣😘 +05/12/2018,Sports_celeb,@MoSalah,🙄⚽️ https://t.co/obIxK3Al6v +05/11/2018,Sports_celeb,@MoSalah,🕴🕴 https://t.co/mfUrSYPBvv +05/10/2018,Sports_celeb,@MoSalah,Brace! Still time for a hatrick tonight? 🙃 https://t.co/G7xmEzEU66 +05/10/2018,Sports_celeb,@MoSalah,🙋🏻‍♂️🙋🏻‍♂️ https://t.co/oP9H87W9IU +05/05/2018,Sports_celeb,@MoSalah,❤️❤️😍🤣 https://t.co/IGWXwb1t3o +05/04/2018,Sports_celeb,@MoSalah,Happy birthday bro...@OfficialRadja https://t.co/VeBMk6RJ0r +04/30/2018,Sports_celeb,@MoSalah,Very fortunate to be adding another award in my first season playing with this great group of players! Lovren did y… https://t.co/f7ETjdNotg +04/29/2018,Sports_celeb,@MoSalah,انا بس صعبان علّيا الهاشتاج 😢🤣 +04/29/2018,Sports_celeb,@MoSalah,أنا بشكر كل الناس على دعمكم الكبير النهاردة .. في الحقيقة رد الفعل كان غير طبيعي وأسعدني جدًا تفاعلكم.. احنا أخدنا… https://t.co/d02c0VEWnD +04/29/2018,Sports_celeb,@MoSalah,بكل أسف طريقة التعامل فيها إهانة كبيرة جدًا.. كنت أتمنى التعامل يكون أرقى من كدا... +04/27/2018,Sports_celeb,@MoSalah,@Yallakoranow 🙏🏼😉 +04/27/2018,Sports_celeb,@MoSalah,https://t.co/JecshaAU6F +04/27/2018,Sports_celeb,@MoSalah,@Yallakoranow مش باين... +04/26/2018,Sports_celeb,@MoSalah,So proud of how far this project has reached #SayNoToDrugs https://t.co/CDKYtsX4MK +04/25/2018,Sports_celeb,@MoSalah,I wish you all the best and I'm confident you'll be back even stronger than before.@Alex_OxChambo https://t.co/1KRk53ISjH +04/23/2018,Sports_celeb,@MoSalah,شكرًا لكل الناس على الرسائل الجميلة من امبارح.. وسعيد جدًا بكلامكم واهتمامكم المتواصل.. ودائمًا سند لبعض وبأعتذر لو… https://t.co/3lGeVdSFQ5 +04/23/2018,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/NGXrUg7UQi +04/23/2018,Sports_celeb,@MoSalah,@ElNennY ايه ده هو تريزجيه اللي بيكتبلك ولا ايه!!!🙄 +04/23/2018,Sports_celeb,@MoSalah,Truly honoured by this prize which was awarded to me by colleagues - very special day😍😍 https://t.co/7mrFN0lHsP +04/22/2018,Sports_celeb,@MoSalah,Ready for the party...@RamyCol https://t.co/tJ2Bcq4oY4 +04/22/2018,Sports_celeb,@MoSalah,الف سلامه يا نينو ان شاء الله بسيطه 🙏🏼@ElNennY +04/21/2018,Sports_celeb,@MoSalah,@Hegazi لا انا بهزر .هتفضل الغالي دايما يا حجوووو😍😍😘 +04/21/2018,Sports_celeb,@MoSalah,@TantawiPress مفيش فايده والله ... +04/21/2018,Sports_celeb,@MoSalah,Full support...✌🏼 https://t.co/tuGv4lTd2v +04/21/2018,Sports_celeb,@MoSalah,@Hegazi فاول 🙄🙄لا يا أحمد انت كنت بتضرب جامد النهارده مش عارف ليه 🙄😃واللي في القلب في القلب برده انا عارف 😍 +04/21/2018,Sports_celeb,@MoSalah,@Hegazi انت بتضرب في الماتش وتيجي هنا تقولي happy to see my brother ..😄😄brother مين بقا ايدك تقيله اوي 👊🏼 +04/20/2018,Sports_celeb,@MoSalah,RT @RamyCol: #MSCommercialLTD https://t.co/buQHRdGRw7 +04/19/2018,Sports_celeb,@MoSalah,He is always talking 😏 https://t.co/hd5OHA1t8u +04/19/2018,Sports_celeb,@MoSalah,@FilGoal اتاكدو بس ان المشجعه بخير وكله تمام 😃 +04/19/2018,Sports_celeb,@MoSalah,"RT @FilGoal: نجاح محمد صلاح مع ليفربول أصبح جزءًا من نجاح أي مصري، حتى في حفل التخرج 👏 + +حفل تخرج كلية الهندسة لجامعة بورسعيد بـtheme محمد ص…" +04/19/2018,Sports_celeb,@MoSalah,@Trezeguet ارحمنا أبوس ايدك 😃 +04/18/2018,Sports_celeb,@MoSalah,https://t.co/UBzsfXDg5y +04/17/2018,Sports_celeb,@MoSalah,🤝🤝 https://t.co/9hokKfxPNI +04/16/2018,Sports_celeb,@MoSalah,https://t.co/Qg5F2vc8sy +04/15/2018,Sports_celeb,@MoSalah,Come back stronger.💪🏼🙏🏼 https://t.co/mWwHWXTcKx +04/15/2018,Sports_celeb,@MoSalah,Never forgotten. https://t.co/MUjwwMZmCu +04/14/2018,Sports_celeb,@MoSalah,40 ✖️⚽️ https://t.co/zy13g56PeM +04/13/2018,Sports_celeb,@MoSalah,"RT @cnni: EXCLUSIVE: ""We have the emotion. We can do it."" + +Mohamed Salah tells CNN that Liverpool can win the Champions League this season.…" +04/13/2018,Sports_celeb,@MoSalah,RT @ASRomaEN: Respect. 👏 https://t.co/TpKLcgmh02 +04/13/2018,Sports_celeb,@MoSalah,@ASRomaEN 100% +04/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: 🏆 November +🏆 February +🏆 March + +@22mosalah is the 1st player to win @EASPORTSFIFA Player of the Month 3 times in the sam…" +04/13/2018,Sports_celeb,@MoSalah,"RT @LFC: He's done it again… 🏆🏆🏆 + +@22mosalah has become the first-ever player to win the @PremierLeague Player of the Month award three tim…" +04/12/2018,Sports_celeb,@MoSalah,RT @BeckyCNN: Coming soon on @cnni my day in the life of #Liverpool FC superstar and all-around amazing lad @22mosalah. Stay tuned for the… +04/12/2018,Sports_celeb,@MoSalah,Coming soon on CNN... https://t.co/GrMfq5VPs4 +04/11/2018,Sports_celeb,@MoSalah,Wooooooow really ? +04/11/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/jIa6x93LYs +04/10/2018,Sports_celeb,@MoSalah,@Ahmed1Afify منا بدعيلك يجيلك نوم اهوه 🤣😍 +04/10/2018,Sports_celeb,@MoSalah,@Ahmed1Afify يارب يجيلك نوم 🤣😘 +04/09/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/mH7hRlYar2 +04/09/2018,Sports_celeb,@MoSalah,Pepsi ... https://t.co/IQDz7AiagJ +04/06/2018,Sports_celeb,@MoSalah,"RT @Yallakoranow: علشان شبهنا..بقينا احنا عزوته وهو أملنا ❤ + +📸 | مصطفى هشام https://t.co/rHNGvUbTgX" +04/06/2018,Sports_celeb,@MoSalah,RT @SaraNou59280652: @LFC @22mosalah https://t.co/hnXosPmkkj +04/06/2018,Sports_celeb,@MoSalah,https://t.co/ruxZHsw1SW +04/05/2018,Sports_celeb,@MoSalah,RT @samehaboelkhier: إستقبال ملكي اليوم لإبن مصر البار #محمد_صلاح أثناء وصول باص ليڤربول 🇪🇬👏 https://t.co/ZZN32qzdQv +04/05/2018,Sports_celeb,@MoSalah,"RT @AmirTeima: الحمد لله الخط الساخن ""16023"" لعلاج الإدمان شهد خلال الثلاثة أيام الماضية تزايد عدد المكالمات الواردة بنسبة 400 % + +و بدل ما…" +04/02/2018,Sports_celeb,@MoSalah,RT @Menna_Shalaby: ناس كتير عندها توحد وعملوا إنجازات مميزة لأن اختلافهم أصل تميزهم ولأنهم لقوا ناس تشجعهم وتساندهم. لازم نقبل بعض باختلافا… +04/01/2018,Sports_celeb,@MoSalah,🎥🎬🎬 https://t.co/9YHYFC8Qgh +03/31/2018,Sports_celeb,@MoSalah,"Say NO to drugs! +أنت أقوي من المخدرات... https://t.co/6tJYRpBPc0" +03/30/2018,Sports_celeb,@MoSalah,😃 https://t.co/QZaGJvXU8M +03/29/2018,Sports_celeb,@MoSalah,Being able to share these moments with the children was a privilege... the day will live long in the memory... https://t.co/Xhf0KBomfD +03/28/2018,Sports_celeb,@MoSalah,Who says school isn't great fun? https://t.co/fNaimMcJYO +03/25/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬 https://t.co/WBBMv9Kylq +03/25/2018,Sports_celeb,@MoSalah,😀 https://t.co/dEhZg8LxnE +03/22/2018,Sports_celeb,@MoSalah,@MostaphaM7moud حلوه اوي اوي يا مصطفي 👌🏼😊 +03/22/2018,Sports_celeb,@MoSalah,"RT @MostaphaM7moud: منشن لصلاح ياشباب لان تعبت فيها جدا والله +من كفرالشيخ ل محمد صلاح +منشن كتير ياشباب ❤️ +@22mosalah https://t.co/FQtsHz0…" +03/21/2018,Sports_celeb,@MoSalah,😊⚽️ https://t.co/kmYvAAXCVY +03/18/2018,Sports_celeb,@MoSalah,"RT @Joe_Mc_20: @22mosalah Little best mate was made up with his 4 goals 👑🇪🇬 won't stop singing his song, told his Nursery teachers Mo Salah…" +03/15/2018,Sports_celeb,@MoSalah,"Check out the latest Vodafone Egypt advert featuring yours truly 🙂 + +https://t.co/gDMwFlWd2C" +03/13/2018,Sports_celeb,@MoSalah,The UCL draw can't come soon enough 😁 +03/13/2018,Sports_celeb,@MoSalah,RT @khaledbauomy: اتمني من كل قلبي ان يطلق اسم سمير زاهر علي لقب دوري هذا الموسم ،، +03/13/2018,Sports_celeb,@MoSalah,البقاء لله في وفاة الكابتن سمير زاهر .. ستغيب بجسدك عنا لكن ستظل أعمالك التاريخية تتحدث عنك خالص العزاء للأسرة الكريمة... +03/07/2018,Sports_celeb,@MoSalah,@Trezeguet بغض النظر عن الچاكت ولونه بس النضارة حكاية😊😄 +03/07/2018,Sports_celeb,@MoSalah,@nabilelhalfawy وصل يا قبطان 😊. وشكرا يا كريم ورسمك حلو جدا .ومنتظرين منك المزيد مش شرط رسمه ليا 😄 لكن عامتنا ... +03/04/2018,Sports_celeb,@MoSalah,R.I.P Davide . https://t.co/IGxw3eEtiX +03/03/2018,Sports_celeb,@MoSalah,🔴🔴 https://t.co/otUF85DyA2 +03/03/2018,Sports_celeb,@MoSalah,@ShrokYahya جميله جدا 😍شكرا يا شروق 😊😊 +03/03/2018,Sports_celeb,@MoSalah,RT @OfficialHenedy: ماتنشرها بقى يا صلاح https://t.co/bOtiWqPBXJ +03/01/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/cpxPYIZSjX +02/23/2018,Sports_celeb,@MoSalah,الواد كهربا ده ايه 🤣🤣 +02/22/2018,Sports_celeb,@MoSalah,😄 https://t.co/52mcN5dJjT +02/17/2018,Sports_celeb,@MoSalah,@ElNennyM @AEandV يا رب 🙏🏼🙏🏼😉🤗 +02/17/2018,Sports_celeb,@MoSalah,🎥🎥 https://t.co/FRapip2T9f +02/15/2018,Sports_celeb,@MoSalah,30 x ⚽ = 😁 +02/15/2018,Sports_celeb,@MoSalah,@YasminMahfouz @RaghdaaElSaeed @SalahAbdallah 😏😏😀 +02/15/2018,Sports_celeb,@MoSalah,@RaghdaaElSaeed @SalahAbdallah 🤣😍🙈 +02/15/2018,Sports_celeb,@MoSalah,@SalahAbdallah ازاي بس حضرتك قدوه لينا كلنا ودا شوف ليا ان حضرتك كتبتلي حاجه وسعيد جدا بكلامك 😍وبالنسبه ل علي ربيع ف هو معهوش رقمي الجديد 😀🤣 +02/15/2018,Sports_celeb,@MoSalah,@salmaeldaly @SalahAbdallah بسيطه 😍😍😍😀 +02/15/2018,Sports_celeb,@MoSalah,@SalahAbdallah 😍😍😍 +02/13/2018,Sports_celeb,@MoSalah,@SMBRIDSON @LfcNo10 Looking forward to meeting Oscar soon 😁 +02/13/2018,Sports_celeb,@MoSalah,RT @SMBRIDSON: Oscar took his homework to another level tonight ⚽️❤️ ... He had to use words ending in ‘ng’ he said oh I know king. I know… +02/12/2018,Sports_celeb,@MoSalah,On the way to @Uber_Egypt... https://t.co/tRcI8Fg9BD +02/11/2018,Sports_celeb,@MoSalah,https://t.co/hUFiD4YR2T +02/10/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/oxb7nsBQ7h +02/10/2018,Sports_celeb,@MoSalah,@hazem_fetoh لا انت حد حساس اوي 😊👊🏼 +02/09/2018,Sports_celeb,@MoSalah,@youssefelsayedo @Turki_alalshikh @trikaofficial @ElNennyM @elsaid @AhmedAbuHashima @Alwaleed_Talal… https://t.co/tp93BxtJXb +02/07/2018,Sports_celeb,@MoSalah,@ElNennyM 😊😊 https://t.co/X7WDWalOLn +02/07/2018,Sports_celeb,@MoSalah,@EmanMahfouz13 @ElNennyM انا مقدر ده والله وعارف ان فيه ناس كتير كده بس النيني يُعتبر مصري برده 🤣🤣👊🏼 +02/06/2018,Sports_celeb,@MoSalah,@ElNennyM طب متقول صوتولي من غير اللف ده كله ياعم احنا مصريين وبنفهمها بسرعه🤣😘👊🏼 +02/03/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/XKi2Cwb9zQ +02/03/2018,Sports_celeb,@MoSalah,"RT @goal: Mohamed Salah has been named as Goal's Arab Player of the Year for 2017 🏆 + +https://t.co/xN5bElfY8B https://t.co/RDqT0C6m65" +01/25/2018,Sports_celeb,@MoSalah,أغنيه شعبولا 👌🏼👌🏼 +01/21/2018,Sports_celeb,@MoSalah,@nabilelhalfawy هو انت كده ياقبطان مبتحبش تتكلم علي الحكام 🤣🙈 +01/21/2018,Sports_celeb,@MoSalah,@mido_dida415 ابن مين 🤣 محفظتك ازاي يعني 👊🏼 +01/21/2018,Sports_celeb,@MoSalah,"RT @Mohamed46322862: @22mosalah ❤❤ +3ثانوي فرنساوي +Salah,Roi d'afrique❤❤ https://t.co/oWfRgbi6ZV" +01/21/2018,Sports_celeb,@MoSalah,@Mohamed46322862 انا مش فاهم حاجه لكن افتكر انها حاجه كويسه🙄 +01/20/2018,Sports_celeb,@MoSalah,RT @BBCArabic: محمد صلاح والتراث السوداني في إسبانيا ضمن أفضل صور أفريقيا في أسبوع https://t.co/IxBwJ3Nx5h https://t.co/GQuKqHv2Yn +01/19/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/5Uq0RpboXg +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy @mohammedrashad0 دا حبيبي 😍 +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy 🤣🤣هيكون عندك في اقرب وقت خلاص ☺️ +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy واحده واحده 😒 https://t.co/MNl5qPQ6c6 +01/14/2018,Sports_celeb,@MoSalah,⚽️🔴 https://t.co/793UXbCdZA +01/12/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/ozf31EQkOm +01/12/2018,Sports_celeb,@MoSalah,@ElNennyM @OfficialHenedy فعلا اقل حاجه 🤣👊🏼 https://t.co/AyavOWjxQP +01/11/2018,Sports_celeb,@MoSalah,@ElNennyM دا حالي دلوقتي يا نينووو والله 🤣 https://t.co/JTey3aQU7R +01/11/2018,Sports_celeb,@MoSalah,فيه اخبار غلط كتييييره نزلت النهارده بس ماشي مش هعلق 👊🏼 +01/09/2018,Sports_celeb,@MoSalah,Really enjoyed playing with you even if it was for such a short time. I wish you all the best in your new adventure… https://t.co/wDheprkqXg +01/08/2018,Sports_celeb,@MoSalah,https://t.co/19BVQ8w4mg +01/07/2018,Sports_celeb,@MoSalah,@nabilelhalfawy حبيبي يا قبطان لا تقلق😍✌🏼 +01/07/2018,Sports_celeb,@MoSalah,@azizelshaf3i الاغنيه جامده جدا جدا مش عارف اقولك ايه 😍لكن اكيد انت شايف رد فعل الناس 😊👍🏻 +01/07/2018,Sports_celeb,@MoSalah,https://t.co/JKcJKt2yLi +01/06/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/hEdJBbXQWi +01/06/2018,Sports_celeb,@MoSalah,"جاتلي رسائل كثيرًا جدًا من امبارح أحب أشكر كل الناس على الشعور دا.. فعلًا مبسوط جدًا بكلامكم +I would like to say a… https://t.co/c5IPzmwTBf" +01/06/2018,Sports_celeb,@MoSalah,@shereen_Ashraff اهم حاجه انها كانت حلوه وخلاص 🤣 +01/06/2018,Sports_celeb,@MoSalah,"RT @Yallakoranow: ""أنا هكسبها إن شاء الله"".. من هنا بدأ حلم صلاح بأفضل لاعب في أفريقيا + +https://t.co/rlUwNNHYOz + +@22mosalah https://t.co/a5…" +01/05/2018,Sports_celeb,@MoSalah,@MohamedEhab اعتبر نفسك كسبتها ان شاء الله 😍😉 +01/05/2018,Sports_celeb,@MoSalah,One of many dreams came true last night... Thank you everyone! https://t.co/2rrpLAKwNf +01/03/2018,Sports_celeb,@MoSalah,@emadmeteb90plus @FhadOtaibi فهد مش هوصيك دا الغالي 😍شكرا الرسالة وصلت . +01/03/2018,Sports_celeb,@MoSalah,@ElNennyM لا متدخلش تجبهم .. اهم حاجه انهم علي مقاسك🤣😉 +01/01/2018,Sports_celeb,@MoSalah,🎮🎮 https://t.co/98Gi5uSZWi +01/01/2018,Sports_celeb,@MoSalah,@ElNennyM انت بتقول ايه انت ليه بتكتب التويته ناقصه وعايزنا نكملها 😀قول الجمله كلها انا متاكد أن فيه كلام ناقص في آخر تويته دي .👊🏼 +01/01/2018,Sports_celeb,@MoSalah,@ElNennyM انت ايه جايب الكلام من كتاب كيف تتعلم اللغة العربية🤣🤣 +12/31/2017,Sports_celeb,@MoSalah,@ahmedtefa12 ادخل يا عم .. happy new year 👊🏼 +12/31/2017,Sports_celeb,@MoSalah,@Nsoo7y خلاص منتا قولت احلي لحظه بتسأل ليه بقا 🤣🤣 +12/31/2017,Sports_celeb,@MoSalah,"Can't really complain about a great 2017, but very much looking forward to 2018... https://t.co/1ke9zRAK1U" +12/28/2017,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/QJQGEPO4CP +12/24/2017,Sports_celeb,@MoSalah,RT @22mosalah: @adelkoraiem 🤣🤣🤣 +12/24/2017,Sports_celeb,@MoSalah,RT @adelkoraiem: معلومة صغيرة.. نسبة تصويت الجمهور في جائزة أفضل لاعب في أفريقيا لا تتعدى ال7% .يعني ما يساوي تصويت 2 من مدربي وكباتن المنت… +12/24/2017,Sports_celeb,@MoSalah,@adelkoraiem 🤣🤣🤣 +12/24/2017,Sports_celeb,@MoSalah,@abdalaziz83 مبسوط والله جدا برد فعل الناس واهتمامهم الكبير ده . لكن نسبه الجمهور ٥ ٪ يعني كده ضمنا اول ٥٪ من تصويت الجايزه 😄😘👊🏼 +12/23/2017,Sports_celeb,@MoSalah,"RT @OmarRaafat77: @22mosalah +في ناس عملت اغنية ليك اتمني انك تشوفها +https://t.co/g3JbthAv3b" +12/23/2017,Sports_celeb,@MoSalah,RT @LFC_Arabic: يا لها من لوحة رائعة @22mosalah 😍👌 https://t.co/WGwoCXCfad +12/21/2017,Sports_celeb,@MoSalah,@OfficialHenedy 🤣🤣🤣 https://t.co/lbBK3Vhuxh +12/20/2017,Sports_celeb,@MoSalah,@moheb_rofail @nabilelhalfawy يبقا ربنا هيكرمك اخر كرم🤣🤝 +12/20/2017,Sports_celeb,@MoSalah,https://t.co/hkTRcU6IaH +12/18/2017,Sports_celeb,@MoSalah,@Tahaahmed111 @Hegazi لا انا مش سهران دا فرق توقيت🤝🤝😀 +12/18/2017,Sports_celeb,@MoSalah,@Hegazi مبروك يا حجو🤛🏼 https://t.co/R7tjnr1C1V +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC: The Mohamed Salah Story 📖 + +Allow @22mosalah to guide you through his career: https://t.co/ZKJkt93yaj + +Thread 👇 https://t.co/zD5gj…" +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC_Arabic: قصة محمد صلاح 📖 + +اسمحوا لـ @22mosalah أن يأخذكم في جولة في مسيرته: https://t.co/yHwe376a4v + +السلسة 👇 https://t.co/tIeInPQH…" +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC: Read the @22mosalah story in his own words, as he discusses the moments that have enabled him to become the person and player he i…" +12/18/2017,Sports_celeb,@MoSalah,@Samehahmedd96 @nabilelhalfawy اهم حاجه انك بتفرح في الاخر 😀🙅🏼‍♂️ +12/18/2017,Sports_celeb,@MoSalah,@IbrahimsaidAdam @trikaofficial مفتكرش والله أني كنت هزعل 🤣حبيبي يا هيما ✌🏼 +12/18/2017,Sports_celeb,@MoSalah,@nabilelhalfawy لا خلاص يا قبطان نكتفي بالي قالوه😀 +12/17/2017,Sports_celeb,@MoSalah,@nabilelhalfawy ممكن اقول انا يا قبطان 🤣 +12/16/2017,Sports_celeb,@MoSalah,RT @AAbdoallah: الله على الصورة ⁦♥️⁩ https://t.co/wh0DJGK4M9 +12/15/2017,Sports_celeb,@MoSalah,😀😀 https://t.co/QxMUXVCGvo +12/14/2017,Sports_celeb,@MoSalah,أتمنى من الجميع مساندة صالح جمعة .. فهو لاعب كبير سيفيد بكل تأكيد الكرة المصرية في حالة الوقوف بجواره وعدم التأثر ب… https://t.co/ooCanuyZ5a +12/14/2017,Sports_celeb,@MoSalah,"RT @Pele: Parabéns, @22MoSalah! It's been an incredible year! Keep going and I look forward to seeing you play on the greatest stage next y…" +12/12/2017,Sports_celeb,@MoSalah,"RT @didierdrogba: Well deserved my Brother, so proud of you!!!!!! Legend in the making🙏🏾 +The best is yet to come ❤️ https://t.co/YtEIepltwp" +12/12/2017,Sports_celeb,@MoSalah,😀😀 https://t.co/koN9QJ80q8 +12/12/2017,Sports_celeb,@MoSalah,@NaguibSawiris 🤣🤣🤣 +12/11/2017,Sports_celeb,@MoSalah,"Very proud to have won this prestigious award for best African player, and joining the ranks of many great players… https://t.co/IoWUFxZExD" +12/11/2017,Sports_celeb,@MoSalah,أودّ أن أشكر كل الناس اللي صوتت لي وساهمت في تحقيق الجايزة. +12/11/2017,Sports_celeb,@MoSalah,Always been impressed by this man's work @KhaledElNabawy https://t.co/k3MIKUaugf +12/11/2017,Sports_celeb,@MoSalah,"@mariam_metwally @MoElshorbagy @noursherbini +Good seeing you guys ! Best of luck in your competition! https://t.co/7h5PJ7ZXZO" +12/07/2017,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/kgVN6KFVdj +12/05/2017,Sports_celeb,@MoSalah,ألف مبروك للبطلة المصرية رحاب أحمد على ذهبية العالم.. https://t.co/ZqOTSEa0C3 +12/05/2017,Sports_celeb,@MoSalah,@22moosalah انت مين واللي اللي جابك هنا 🤛🏼😀 https://t.co/3J80GcdjFn +12/05/2017,Sports_celeb,@MoSalah,@SSamir @Trezeguet علي الصبح كده . طب الناس بتصحا تقول صباح الخير وأنتو الاتنين دايما كده تتخانقو🤛🏼 +07/01/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: \開幕まであと5日❗️/ +錦織圭選手@keinishikori のそばにはドライEXがいます✨ + +優れた吸汗速乾機能で、汗を気にせずプレーできる優れ物。 + +世界に挑戦する #錦織圭 選手をハッシュタグ #汗っていこう で応援しよう❗️ + +錦織選手着…" +07/01/2018,Sports_celeb,@keinishikori,"RT @miyukato1121: 伊澤会!🇬🇧 +今年もありがとうございました❤️❤️❤️ +1年の楽しみになってます✨✌️ https://t.co/7iOcdod8Qa" +07/01/2018,Sports_celeb,@keinishikori,"RT @nikejapan: 初心に立ち返った #錦織圭 の、10度目の挑戦。 +#justdoit @keinishikori" +06/30/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: 本日よりJAGUAR Land Rover Studio 銀座がオープン。今年70周年を迎えたランドローバーにウィンブルドンを目前に控えた #錦織圭 選手@keinishikori からメッセージをいただきました!#LandRover70Years… +06/29/2018,Sports_celeb,@keinishikori,"RT @Wimbledon: Former World No.4 @keinishikori continues his comeback season.... + +Welcome back to the grass, Kei. + +#Wimbledon https://t.co/…" +06/28/2018,Sports_celeb,@keinishikori,🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +06/28/2018,Sports_celeb,@keinishikori,"To see match: +https://t.co/3jvYFPZny9" +06/27/2018,Sports_celeb,@keinishikori,"RT @mchangtennis: || Talk with your racket, play with your heart || Catch @keinishikori playing in a one of a kind all pro tennis exhibitio…" +06/26/2018,Sports_celeb,@keinishikori,"RT @doublefault28: This is my favorite GIF. And I think ,my best GIF. ""Air Kei"" I hope and believe he will come back strong! Need to belie…" +06/25/2018,Sports_celeb,@keinishikori,"RT @abnamrowtt: Kei Nishikori debuteert in ABN AMRO World Tennis Tournament 2019! #abnamrowtt #atpworldtour #rotterdamahoy #2019 +@keinishik…" +06/25/2018,Sports_celeb,@keinishikori,Hello London! Excited to be back at @Wimbledon! +06/25/2018,Sports_celeb,@keinishikori,Visit to @vangoghmuseum this morning https://t.co/NO5dWamBpo +06/24/2018,Sports_celeb,@keinishikori,GGGGOOOAAAALLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 #Honda +06/24/2018,Sports_celeb,@keinishikori,GGGGGGOOAAAAALLLLLLLLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +06/24/2018,Sports_celeb,@keinishikori,Let’s go 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 https://t.co/hXRSlxOi5v +06/24/2018,Sports_celeb,@keinishikori,Hello Amsterdam! https://t.co/RZ29kVjxrv +06/24/2018,Sports_celeb,@keinishikori,@annefrankhouse in Amsterdam https://t.co/KoskcwerWQ +06/24/2018,Sports_celeb,@keinishikori,Canal ride in Amsterdam! Amazing https://t.co/ohQrjFi89E +06/23/2018,Sports_celeb,@keinishikori,Last practice at @GERRYWEBERWORLD today. Even after the loss I stayed here. Good practice in last days with… https://t.co/uXGH994u0D +06/22/2018,Sports_celeb,@keinishikori,https://t.co/vvecpqwCqt https://t.co/vvecpqwCqt +06/18/2018,Sports_celeb,@keinishikori,RT @doublefault28: Return! @keinishikori (🎥@TennisTV ) https://t.co/JPb4B9opDT +06/16/2018,Sports_celeb,@keinishikori,"今週からのワールドカップ日本チーム応援してます! +みなさんも一緒に応援しましょう📣🇯🇵 🇯🇵" +06/16/2018,Sports_celeb,@keinishikori,@UniqloUSA Has he ever played tennis with Kei Nishikori?? 🤔😄😉🎾⛳️ +06/15/2018,Sports_celeb,@keinishikori,Hello @GERRYWEBERWORLD! Landed this morning. Great to be in 🇩🇪! +06/13/2018,Sports_celeb,@keinishikori,👍👍👍 https://t.co/aiRthckDEq +06/05/2018,Sports_celeb,@keinishikori,A big thanks to @JaguarFrance for the amazing support again! It really helps myself and #TeamKei. Thank you! 👍👊. A… https://t.co/tJizYWrwsp +06/05/2018,Sports_celeb,@keinishikori,Au revoir 🇫🇷 🗼. Thank you for the support again. And thank you @PDG_Paris! My home in Paris. See you in the fall. +06/01/2018,Sports_celeb,@keinishikori,Only at @rolandgarros! 🎨 👍❤️ https://t.co/5foHpRyE9g +05/30/2018,Sports_celeb,@keinishikori,Very tough match today against Benoit. Very happy with the win. Now back at the @PDG_Paris to relax. Best service… https://t.co/VXLLaEd3EQ +05/29/2018,Sports_celeb,@keinishikori,"RT @lixil_official: ✨Web限定ムービー公開中✨ +錦織選手を熱く応援しているLIXIL社員が、錦織選手の拠点フロリダまで追いかけ、錦織選手をイメージした『にしこリクシルくん』を手渡すまでのロードムービー🎥 +果たして錦織選手の反応は・・・⁉️ +https://…" +05/28/2018,Sports_celeb,@keinishikori,My 🏡 in Paris 🇫🇷! Always so comfortable! Of to 💤 🛏 now for early practice tomorrow 🎾 @rolandgarros. Hoping no 🌧.… https://t.co/sIJfAb3WDt +05/27/2018,Sports_celeb,@keinishikori,"RT @josemorgado: Uniqlo still doing a great job with @keinishikori [getty] + +#RG18 https://t.co/yqJwFGZbcm" +05/25/2018,Sports_celeb,@keinishikori,RT @nikejapan: その目が追うのは、まだ見たことのない景色。@keinishikori #justdoit +05/25/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: Former World No. 4 @keinishikori, a quarter-finalist in 2015 & 2017, is in the loaded bottom quarter & will challenge Max…" +05/22/2018,Sports_celeb,@keinishikori,First hit at @rolandgarros 🇫🇷 https://t.co/uLBRtWCbow https://t.co/lw2Bncw032 +05/21/2018,Sports_celeb,@keinishikori,Bonjour 🇫🇷 +05/21/2018,Sports_celeb,@keinishikori,🇮🇹🎾🛏🚿🍳🚶‍♀️🚕🛫💺🛬🚕🗼🏠🥐 +05/21/2018,Sports_celeb,@keinishikori,https://t.co/AN0dyJGhyV +05/13/2018,Sports_celeb,@keinishikori,👋👋👋👋👋👋 https://t.co/4lVofbOzhf +05/13/2018,Sports_celeb,@keinishikori,Congrats! 👍👊👏 https://t.co/dIhlUr6gGs +05/12/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: The draw is set for the 2018 @InteBNLdItalia, with an assist by @keinishikori 😉🇮🇹 + +Who do you think will take home this y…" +05/11/2018,Sports_celeb,@keinishikori,Good practice with @stanwawrinka this morning at @InteBNLdItalia https://t.co/pOKE0TWvdE +05/11/2018,Sports_celeb,@keinishikori,"RT @InteBNLdItalia: 🙌 Put your hands up for one of Rome's favorite idols: @keinishikori! 🙌 +The 🇯🇵 is ready to practise! + +#ibi18 #tennis ht…" +05/10/2018,Sports_celeb,@keinishikori,Hello Rome! @InteBNLdItalia @ATPWorldTour https://t.co/Wv9PNgfSoY https://t.co/caEtzhBupy +05/09/2018,Sports_celeb,@keinishikori,RT @MutuaMadridOpen: Done but not dusted. @keinishikori keeps training in Madrid. #MMOPEN https://t.co/l1TmO3LlwS +05/04/2018,Sports_celeb,@keinishikori,"RT @MutuaMadridOpen: What a serve by @keinishikori in this morning’s training session! 😍 +The 🇯🇵 looks to be firing on all cylinders !🔥 +#Caj…" +05/02/2018,Sports_celeb,@keinishikori,Hello @MutuaMadridOpen! Great to be back here +05/02/2018,Sports_celeb,@keinishikori,Good practice with @karenkhachanov today https://t.co/vB7f3zRNFj +04/30/2018,Sports_celeb,@keinishikori,Posted a fun question on https://t.co/Wv9PNgfSoY. Let’s see if you guess..... https://t.co/i5nsUEW8Bc +04/30/2018,Sports_celeb,@keinishikori,The Uniqlo building in Barcelona is amazing! Right in the center of town https://t.co/TmHWsWeeBq +04/30/2018,Sports_celeb,@keinishikori,Helllllooo Uniqlo! This Barcelona store is amazing. First time in this store for me. @UNIQLO_JP https://t.co/rCafF11XB2 +04/29/2018,Sports_celeb,@keinishikori,RT @UniqloUSA: Last day to help us support @charitywater's mission to provide clean water to people in need! Donate at checkout today when… +04/22/2018,Sports_celeb,@keinishikori,Thank you @ROLEXMCMASTERS for a great week. https://t.co/kU3YefdPLs +04/22/2018,Sports_celeb,@keinishikori,👍 https://t.co/MDLMzsXOIf +04/22/2018,Sports_celeb,@keinishikori,Could not win today but happy with the matches I played here. Thank you @ROLEXMCMASTERS for a great week.… https://t.co/eXp9w62JcR +04/21/2018,Sports_celeb,@keinishikori,RT @doublefault28: #GoKei https://t.co/IgPoBDyPZb +04/21/2018,Sports_celeb,@keinishikori,Sliding into Sunday!!! Amazing battle today. Happy with the win. https://t.co/Ei6FIUUjQS +04/20/2018,Sports_celeb,@keinishikori,https://t.co/ru7uZaBRyR +04/20/2018,Sports_celeb,@keinishikori,RT @NishikoriGIF: SF!!!😀 https://t.co/FYbIdfTYlk +04/19/2018,Sports_celeb,@keinishikori,RT @doublefault28: This backhand!!🔥 @keinishikori (🎥@TennisTV ) https://t.co/x26pyG85yP +04/19/2018,Sports_celeb,@keinishikori,Very happy with the win today at the @ROLEXMCMASTERS 👍💪🎾 https://t.co/gcNybs1PNk +04/16/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Great reaction,@keinishikori 😂👍(🎥@TennisTV ) https://t.co/dXJz7pXcLg" +04/11/2018,Sports_celeb,@keinishikori,Very nice weather here 🤔🙀🌧 https://t.co/ziKkKOgA5N +04/11/2018,Sports_celeb,@keinishikori,Spending morning with @JaguarJPN @Jaguar https://t.co/Xcb35pLD4j +04/11/2018,Sports_celeb,@keinishikori,Good morning 🇫🇷. Spending the morning in Nice with @Jaguar & @JaguarJPN to talk about the new “baby” E-Pace and th… https://t.co/D28D8j4Ged +04/10/2018,Sports_celeb,@keinishikori,"RT @UniqloUSA: Welcome to our newest location, #UniqloSouthcenter! Let us know which city you'd like to see us in next. https://t.co/FWaCbc…" +04/05/2018,Sports_celeb,@keinishikori,@robbieohashi @Lindonk @IMGAcademy @ATPWorldTour @IMGATennis 🤔🤔🤔🤔🤔 +04/05/2018,Sports_celeb,@keinishikori,Early practice today #WhereIsNakao #ClayNishikori #TeamKei https://t.co/XLrxstOAM5 +04/04/2018,Sports_celeb,@keinishikori,Playing sets this morning with @BellucciOficial https://t.co/mcJCtd0BQg +04/03/2018,Sports_celeb,@keinishikori,Grinding on the clay with @MichaelMmoh this morning https://t.co/hiHuNEhUvB +04/03/2018,Sports_celeb,@keinishikori,"RT @IMGAcademy: A holiday doesn't mean a day off for @keinishikori! + +#IMGFam #TrainWhereITrain @IMGATennis 📹: @Justin_Russ https://t.co/7g…" +04/01/2018,Sports_celeb,@keinishikori,"RT @JaguarJPN: 【XF SPORTBRAKE × KEI NISHIKORI】 +Playへの情熱を詰め込んで、 +パフォーマンスの頂点に挑む。@KeiNishikori +XF SPORTBRAKE × KEI NISHIKORIの特設ページ > https://t.…" +04/01/2018,Sports_celeb,@keinishikori,"こんにちは!今はブラテントンにいます。 +ヨーロッパのクレーシーズンに向けて準備しています。応援メッセージありがとうございます!" +03/31/2018,Sports_celeb,@keinishikori,Solid practice with @TKokkinakis today. Btw...see those ☁️ 🌧 🙀 https://t.co/0Pjcr3tIzT +03/31/2018,Sports_celeb,@keinishikori,Really nice meeting all these kids after my practice at IMG Academy: https://t.co/pZrF7GCCTb https://t.co/tpsrSOw2OS +03/30/2018,Sports_celeb,@keinishikori,Working hard at @IMGAcademy with Miomir today https://t.co/axl3iaDQOQ +03/24/2018,Sports_celeb,@keinishikori,"RT @TennisTV: Kei-O 💪 + +@keinishikori defeats Millman 7-6(4) 4-6 6-3 in Miami - and will face either Del Potro or Haase in the third round..…" +03/24/2018,Sports_celeb,@keinishikori,💪💪💪💪🤛🤛🤛🤛👊👊👊👊 https://t.co/iVvGBJ0Nni +03/24/2018,Sports_celeb,@keinishikori,RT @doublefault28: Classic backhand down the line from @keinishikori!! (🎥@TennisTV ) https://t.co/R60pKw1bAm +03/24/2018,Sports_celeb,@keinishikori,RT @NishikoriGIF: 初戦突破おめでとうございます( ´ ▽ ` )ノ https://t.co/w1SkDhcf3N +03/22/2018,Sports_celeb,@keinishikori,Great night last night at @JWMM_Miami with @DavidFerrer87 https://t.co/mvVrhJIiNE +03/22/2018,Sports_celeb,@keinishikori,RT @outside_theball: Cute alert! Kei Nishikori stops to take a picture with young fans ahead of the #MatchPointPassion18 party! 🎾🎉 https://… +03/22/2018,Sports_celeb,@keinishikori,"RT @TennisTV: Back in Miami 😎 + +@keinishikori putting in the work on the practice courts... https://t.co/kCxb4lTL4V" +03/22/2018,Sports_celeb,@keinishikori,@JWMM_Miami Thank you for a great night! https://t.co/ZTeFu5VshY +03/20/2018,Sports_celeb,@keinishikori,🤦‍♂️ https://t.co/O7Pw6aRLh4 +03/19/2018,Sports_celeb,@keinishikori,@MiamiOpen @BNPPARIBASOPEN Love being here @MiamiOpen +03/19/2018,Sports_celeb,@keinishikori,"RT @UniqloUSA: Gear up and watch Kei Nishikori bring the heat to the #MiamiOpen, starting today. https://t.co/DwUTwP9WEB 🎾 @keinishikori #U…" +03/19/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: グローバルブランドアンバサダーの錦織圭選手(@keinishikori)が3月19日(月)から開幕のマイアミ・オープンに出場! +2年ぶり、2度目の決勝進出を目指します。応援宜しくお願いします! +着用予定のウェアはこちら +https://t.co/S…" +03/13/2018,Sports_celeb,@keinishikori,RT @JaguarUK: Created to indulge your passion for performance. #Jaguar #XE #Project8 https://t.co/LG8spCAKsf +03/13/2018,Sports_celeb,@keinishikori,RT @OrigCupNoodles: Want to win a VIP trip to Noods Noods Noods in Oakland for all the noodle goodness? Enter here: https://t.co/070RTHBX8U… +03/13/2018,Sports_celeb,@keinishikori,RT @NickBollettieri: Great to be back at the beautiful @BNPPARIBASOPEN! #BNPPO18 https://t.co/3atEvAI8tk +03/12/2018,Sports_celeb,@keinishikori,Back home in Florida. Nice to sleep in my own house. Thanks for all the messages. Time to rest and get ready for… https://t.co/vXSuJJTpFk +03/11/2018,Sports_celeb,@keinishikori,Unfortunate I have to pull out of the tournament today. I have been sick for over a week and tried everything I co… https://t.co/qFnN0UwD4d +03/11/2018,Sports_celeb,@keinishikori,"先週のメキシコから風邪が治らなくて今週の試合は残念ながら断念することにしました。 +好きな大会のひとつなので出れないのは悔しいですが早く治して次のマイアミに備えたいと思います。" +02/25/2018,Sports_celeb,@keinishikori,RT @ATPWorldTour_ES: 🤗🔥 @keinishikori ajusta detalles en el @AbiertoTelcel para disputar su primer ATP 500 desde el @CitiOpen de Washington… +02/24/2018,Sports_celeb,@keinishikori,@AbiertoTelcel https://t.co/Wv9PNgfSoY https://t.co/9g6mFeGaLa +02/24/2018,Sports_celeb,@keinishikori,RT @AbiertoTelcel: ありがとうございました @keinishikori! https://t.co/uJ65ub0iI9 +02/24/2018,Sports_celeb,@keinishikori,RT @weye1: 錦織選手の次の大会は月曜日から始まるアカプルコ。活躍が楽しみですね!そして「錦織圭選手、始動。キャンペーン」は明日の日曜日が締め切りです。賞品は“錦織圭、始動。クリアファイル”で、50名に抽選でプレゼントします!是非応募ください!>>>https://t.… +02/24/2018,Sports_celeb,@keinishikori,@Jaguar I am one of them 💪👍 +02/23/2018,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: ¡Bienvenido a México, @keinishikori🇯🇵! ☺️ メキシコへようこそ! + +#AMT2018 #CelebratingTennis https://t.co/MrBkW8ZpdK" +02/23/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: ジャガーがコンパクトなSUV「E―ペイス」を発売:朝日新聞デジタル #BabyJaguar https://t.co/2RJCWsabGf +02/23/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: After losing in ATP Challenger Tour qualifying in his previous event, Kei Nishikori didn't want to play at 2008 Delray Be…" +02/22/2018,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: To all Japanese followers, here it goes again: 頑張れ、君ならできるよ🎌!@keinishikori https://t.co/iqYjHbBRXn" +02/21/2018,Sports_celeb,@keinishikori,"Look what arrived in Bradenton today??? Thank you @Nike @Jumpman23 @jtimberlake!!!! +#SBLLII Very Cool! https://t.co/lM6wNzUS7W" +02/19/2018,Sports_celeb,@keinishikori,RT @Tedimond_Art: Congratulations on your comeback tournament @keinishikori !! Tough semis this week in NY. Enjoy your “Dimond” player port… +02/19/2018,Sports_celeb,@keinishikori,Thank you @NewYorkOpen and @joshrip for the hospitality. Look forward to coming back to NYC in the years to come. H… https://t.co/s5gE0ddbbU +02/16/2018,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: / +祝!ベスト8✨ +\ + +錦織選手が、ニューヨーク・オープンでベスト8進出🎾 +この勢いで決勝まで頑張ってください✺◟(∗❛ัᴗ❛ั∗)◞✺‼ + +@keinishikori +#GoKei" +02/15/2018,Sports_celeb,@keinishikori,@NewYorkOpen https://t.co/CRFlbP3vfv +02/15/2018,Sports_celeb,@keinishikori,My strong flexible coaching team 🤔🤣 https://t.co/D7TKSOfGgf +02/15/2018,Sports_celeb,@keinishikori,https://t.co/aMAbdGvgx1 +02/15/2018,Sports_celeb,@keinishikori,RT @doublefault28: 👏(🎥@TennisTV ) https://t.co/tv9UbW3mwP +02/15/2018,Sports_celeb,@keinishikori,"RT @NTTPR: 先ほど、錦織選手(@keinishikori )はエフゲニー・ドンスコイ選手を @newyorktennis 2回戦でもストレート勝ちで終え、いよいよ準々決勝に進みます。この勢いで次も頑張ってください! +Kei Nishikori won the seco…" +02/14/2018,Sports_celeb,@keinishikori,RT @doublefault28: 💪 https://t.co/fXA178oAlP +02/14/2018,Sports_celeb,@keinishikori,RT @doublefault28: 🔥(🎥@TennisTV ) https://t.co/AakHsTOQBe +02/14/2018,Sports_celeb,@keinishikori,Couldn’t see the replay 🙂 https://t.co/faWqnUSiRN +02/14/2018,Sports_celeb,@keinishikori,"RT @TennisTV: 💥💥💥 @keinishikori + +#NYOpen + +https://t.co/KCjybaxhj3" +02/14/2018,Sports_celeb,@keinishikori,Great to be back on the @ATPWorldTour https://t.co/cBRksHkWPZ +02/14/2018,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: \錦織選手、まもなく初戦開始✊🏻/ +ニューヨーク・オープン錦織選手の初戦がこの後9:30~始まります🎾 +ツアー復帰に向けて、インタビューをしてきました✨ + +ケイは負けない(ง `ω´)ง‼ +インタビュー動画、公開中📽⇒https://…" +02/13/2018,Sports_celeb,@keinishikori,Just finished my morning practice. Hope to see you tonight for the match at the @NewYorkOpen https://t.co/IoE4k2Cyc7 +02/12/2018,Sports_celeb,@keinishikori,RT @NewYorkOpen: Order of play Tuesday 13th February. @keinishikori takes on @Noahrubin33 in our featured match! #NYOpen https://t.co/EdZKV… +02/12/2018,Sports_celeb,@keinishikori,RT @NewYorkOpen: In his first match back on the ATP World Tour @keinishikori takes on the hometown hero @Noahrubin33 on Tuesday night Febru… +02/11/2018,Sports_celeb,@keinishikori,🚿🚿🚿🚿😀😃😄🤣https://t.co/ddLMYFoHkk +02/11/2018,Sports_celeb,@keinishikori,"ニューヨークオープンの1回戦は火曜日になりました。 +応援よろしくお願いします!@NewYorkOpen" +02/10/2018,Sports_celeb,@keinishikori,"and its....LIVE, FROM NYC.....https://t.co/D07jAd0fV7 +:):)" +02/10/2018,Sports_celeb,@keinishikori,Hello @NewYorkOpen!!!! https://t.co/ynwrcxc5K7 +02/08/2018,Sports_celeb,@keinishikori,"RT @JaguarJPN: 【XF SPORTBRAKE × KEI NISHIKORI】 +世界中のコートで観客を魅了している @KeiNishikori 選手と同様に、XFスポーツブレイクの走りにはドライバーを魅惑するパフォーマンスがある。 +あなたは、ジャガーとPLAYする…" +02/08/2018,Sports_celeb,@keinishikori,@Lindonk @robbieohashi 🍣 🥢 🍚 +02/08/2018,Sports_celeb,@keinishikori,RT @Lindonk: Good Japanese dinner! Thank you Sugi!!! https://t.co/6FgBYvD8KN +02/08/2018,Sports_celeb,@keinishikori,RT @NTTPR: 中期経営戦略に関する具体的な取り組みをご紹介する「Moving Forward Together」ページを、NTT公式HP内に開設してから約1年が経過しました。ここでは、常に前に進んでいくNTTグループの最新の取り組みを、事例とともにわかりやすく紹介してい… +02/05/2018,Sports_celeb,@keinishikori,"RT @netdash: Kei Nishikori has an exclusive photo! Check it out by joining the tight-knit circle of superfans on his App. +https://t.co/l12N…" +02/05/2018,Sports_celeb,@keinishikori,High five!!! ✋ 🙌 https://t.co/5xDxHPp6Or +02/05/2018,Sports_celeb,@keinishikori,Gracias https://t.co/YpapQtBS27 +02/05/2018,Sports_celeb,@keinishikori,👍 https://t.co/DlnQGz0WJs +02/05/2018,Sports_celeb,@keinishikori,Those shoes! @Nike @Jumpman23 👍👍👍👍👍👍 #SBLII https://t.co/koJ9JyET3A +02/04/2018,Sports_celeb,@keinishikori,RT @doublefault28: Kei's FH winner on the SP (🎥@ATPChallenger ) https://t.co/Ltnhcb41c0 +02/04/2018,Sports_celeb,@keinishikori,Back at @SRQAirport! Good to be home +02/04/2018,Sports_celeb,@keinishikori,RT @UniqloUSA: Go big or go home. Step up your game by training like your favorite athletes in #UniqloSport. 🏆 https://t.co/W5JiBxZNs4 #Uni… +02/04/2018,Sports_celeb,@keinishikori,Thank you @NewYorkOpen. Can’t wait to come to NYC next week. Hope to see many of you at the matches. https://t.co/oufIdnKRWr +02/04/2018,Sports_celeb,@keinishikori,Good week! https://t.co/uLBRtWCbow https://t.co/XPkdQM38Dz +02/04/2018,Sports_celeb,@keinishikori,"みなさん応援ありがとうございます!! +この優勝で少し自信がつきました。手首も問題なくできたのも良かったです。 +これからも頑張ります!" +02/04/2018,Sports_celeb,@keinishikori,Thank you Dallas! Enjoyed playing here. https://t.co/ayivIZDr7x +02/04/2018,Sports_celeb,@keinishikori,👍 https://t.co/hR7yLYLDWi +02/04/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Bravo, Kei!!!! 👏👏👏 https://t.co/8WWHWdnmp4" +02/04/2018,Sports_celeb,@keinishikori,RT @jmeistennis: Kei Nishikori is the champion in Dallas. A title for the 🇯🇵 in his second tournament back. https://t.co/jGvfZfMw9M +02/04/2018,Sports_celeb,@keinishikori,"RT @NTTPR: \祝・優勝!錦織選手/ +Congrats, @keinishikori ! +錦織選手が先程の決勝戦を制し、見事ダラスチャレンジャー2018の覇者となりました! +毎日試合を重ねながら勇気をくれた錦織選手、ありがとうございました。次戦も錦織選手の攻めていくプレ…" +02/04/2018,Sports_celeb,@keinishikori,Just a quick message to say thank you for all the messages. I played these two challenger weeks to get matches and… https://t.co/nSqrlXMlLh +02/03/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: Final 🔜. @keinishikori reflects on his SF win at the @TennisChampsDal. https://t.co/K2mo2nSpSO +02/03/2018,Sports_celeb,@keinishikori,RT @doublefault28: The best point of the match from Kei! (🎥@ATPChallenger ) https://t.co/VDcIhsfI38 +02/03/2018,Sports_celeb,@keinishikori,"RT @NTTPR: 錦織選手、いよいよ決勝へ! +復帰2戦目となるダラス・チャレンジャー。着々とコマを進め、明日の決勝に挑みます。錦織選手らしいプレーで、ダラスチャレンジャーを制してほしいですね! https://t.co/yxTdPYFafr" +02/03/2018,Sports_celeb,@keinishikori,RT @NTTPR: 現在開催されているダラス・チャレンジャーにおいて、日本時間の2日朝、錦織選手はドイツのDominik KOEPFER選手に勝利し、ついにベスト4となりました。次の試合は、日本時間の明日3日(土) 朝8:00以降に行われる、台湾のJason JUNG選手との… +02/03/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: https://t.co/ej1pAdQ9og +02/02/2018,Sports_celeb,@keinishikori,https://t.co/tGOQAmO17Z +02/02/2018,Sports_celeb,@keinishikori,#GoJapan #DavisCup +02/02/2018,Sports_celeb,@keinishikori,https://t.co/4UXhELTVMX +02/02/2018,Sports_celeb,@keinishikori,Nice video from matchpoint. Very happy with another win. All these matches help me raise my level step by step. On… https://t.co/Cbzn6mD02p +02/01/2018,Sports_celeb,@keinishikori,It was a really tough match last night. I started a bit slow. I started coming back and playing much better in the… https://t.co/XbSU47XgSG +02/01/2018,Sports_celeb,@keinishikori,Congrats @TennisChampsDal! https://t.co/wV4Mw5CeHp +02/01/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: They love him in Dallas! @keinishikori gives back to the sold out crowd after his 2R win @TennisChampsDal. https://t.co/… +02/01/2018,Sports_celeb,@keinishikori,"RT @ATPChallenger: Good to have you back, @keinishikori! 😉 https://t.co/e7p1amgTqo" +01/31/2018,Sports_celeb,@keinishikori,See you tomorrow night! https://t.co/CrO98fuVKQ +01/30/2018,Sports_celeb,@keinishikori,It’s good to be back on court!! 👍 https://t.co/k44AMaksYs +01/30/2018,Sports_celeb,@keinishikori,Fun experience here today in Dallas. Lots of Japanese fans. Hope to see everyone on Wednesday for my next match. +01/30/2018,Sports_celeb,@keinishikori,"RT @doublefault28: 6-3, 6-3 !!! 👏 https://t.co/HzL4xbMke7" +01/30/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Kei:""Discussing after the match. Happy with first win!"" (📷https://t.co/RXFiKrVgVU) #GoKei https://t.co/t4OnFxPiAY" +01/30/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: First win of 2018! @keinishikori gets revenge over Dennis Novikov 63 63 to open his @TennisChampsDal campaign. https://t… +01/27/2018,Sports_celeb,@keinishikori,Very good practice with @JohnIsner today. Very nice of him to come hit. #heightdifference #CanIHaveThatServe https://t.co/Hy3BVBYCT3 +01/26/2018,Sports_celeb,@keinishikori,First practice in Dallas. Just arrived. https://t.co/hMeHCLTjgL +01/23/2018,Sports_celeb,@keinishikori,Last practice before match tomorrow. https://t.co/uLBRtWCbow https://t.co/OSIYS3c6Na +01/17/2018,Sports_celeb,@keinishikori,We have arrived!!!! 👍💪 https://t.co/4wtLBf9X82 +01/06/2018,Sports_celeb,@keinishikori,RT @Jaguar: #Jaguar #XFSportbrake delivers an utterly seductive blend of style and substance that is unrivalled in its class. https://t.co/… +01/03/2018,Sports_celeb,@keinishikori,https://t.co/zOskc10g4z +01/01/2018,Sports_celeb,@keinishikori,"RT @cupnoodle_jp: 今、誰よりもハングリーなのは。 + +復活を目指す錦織圭を描く +カップヌードルの新CM +「HUNGRY・K篇」が本日公開! https://t.co/Ziw3iq9jeC" +12/30/2017,Sports_celeb,@keinishikori,RT @doublefault28: 😂👍 (🎥https://t.co/RXFiKrVgVU) https://t.co/zlTvvB7KZs +12/30/2017,Sports_celeb,@keinishikori,Great birthday dinner at @it_srq tonight. Back to practice tomorrow:) https://t.co/qRij1rKVdJ +12/29/2017,Sports_celeb,@keinishikori,Birthday practice:) https://t.co/TP85tU7lAx +12/29/2017,Sports_celeb,@keinishikori,Thank you for all the nice birthday messages!!!! 🎂 🎁 🍰 🎉 🎊 +12/29/2017,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: Happy Birthday KEI! +本日29日は錦織圭(@KeiNishikori)選手の28歳の誕生日 。 +1月からはいよいよ新しいシーズンが始まります。 +タフになって帰ってくる錦織選手の活躍を、楽しみにしています! +https://t.co…" +12/28/2017,Sports_celeb,@keinishikori,Working hard! https://t.co/Wv9PNgfSoY https://t.co/B4pBFB0ZzG +12/28/2017,Sports_celeb,@keinishikori,Good week! #progress https://t.co/Wv9PNgfSoY https://t.co/cxAlmZHyi0 +12/25/2017,Sports_celeb,@keinishikori,RT @NickBollettieri: Merry Christmas from snowy Vermont. https://t.co/W4qK0vWrcm +12/25/2017,Sports_celeb,@keinishikori,Busy Christmas 🎄 morning practice today at the @IMGAcademy! Happy holidays everyone. https://t.co/uLBRtWCbow https://t.co/IDK7F6xstu +12/22/2017,Sports_celeb,@keinishikori,@BrisbaneTennis Sorry @BrisbaneTennis! I will be back in 2019. Wishing everyone there a great tournament! +12/16/2017,Sports_celeb,@keinishikori,Great day with Ron from Wilson. We tested several new strings today. Very productive. https://t.co/5c6kANZlEl +12/12/2017,Sports_celeb,@keinishikori,Thank you @Jaguar for helping me while at Michael’s for training! Appreciate so much being part of your family. No… https://t.co/D5cuYf5QOY +12/06/2017,Sports_celeb,@keinishikori,Working hard in CA....... https://t.co/vhOz1BdSkh +12/04/2017,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: 錦織選手、お気をつけて✈ +ご帰国されていた錦織選手(@keinishikori)が、アメリカへ練習に戻られます✨ +これからも応援しています! + +いつも、挑戦のそばに。 +ケイは負けない!!!!(ง `ω´)ง + +#GoKei https…" +12/04/2017,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: “Estoy trabajando para regresar al 100%, ser mejor jugador y competir para ganar grandes títulos”, dijo @keinishikori🇯🇵…" +11/30/2017,Sports_celeb,@keinishikori,"RT @TAGHeuerJapan: タグ・ホイヤーのアンバサダーを務める錦織圭(@keinishikori)選手とのコラボレーションモデル<タグ・ホイヤー カレラ キャリバー ホイヤー01 クロノグラフ AIR-K5>。日本国内のタグ・ホイヤー直営店で限定発売中です。 +htt…" +11/30/2017,Sports_celeb,@keinishikori,"RT @usopen: #WaybackWednesday: + +Old school Nishikori.... + +🎥: @keinishikori vs Ferrer. + +📅: 2008 #USOpen https://t.co/4wRjCKqzGF" +11/29/2017,Sports_celeb,@keinishikori,🤗 🤗 🤗 https://t.co/2oebGkXwBh +11/29/2017,Sports_celeb,@keinishikori,More messages of support! Very nice to feel all this love in Japan https://t.co/HKi4snaAqG +11/29/2017,Sports_celeb,@keinishikori,Today marks a 1000 days until the @Tokyo2020 Paralympics! https://t.co/84fLeyQ1u4 +11/29/2017,Sports_celeb,@keinishikori,👍👍👍👍👍 https://t.co/oOfLYBnbwj +11/29/2017,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: ユニクログローバルブランドアンバサダーの錦織圭選手(@keinishikori)とアダム・スコット選手がUNIQLO CITY TOKYOにご来社! +好評販売中のKAWS x Peanutsコラボアイテムを着用いただきました。 +https://t.…" +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: #ジャガー #XF #SPORTBRAKE が登場。11月27日の発表会ではジャガーのブランドアンバサダー @KeiNishikori 選手を迎え、スポーティな乗り心地とスタイリッシュなエクステリア、こだわり抜いた先進機能を披露した。#錦織圭 #R… +11/28/2017,Sports_celeb,@keinishikori,Working with the team of @cupnoodle_jp on a new campaign for 2018! #HungryToWin https://t.co/XntMFwdhRl +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: 【新車】錦織圭も大喜び!? テニスボールが6500個も入る大容量荷室が自慢のジャガーXFスポーツブレイクは722万円~(clicccar) - Yahoo!ニュース https://t.co/7fP8AijJ3F @YahooNewsTopics +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: https://t.co/7NI0vsBWZq +11/28/2017,Sports_celeb,@keinishikori,RT @IMGATennis: congrats to ascender Daiki Yoshimura...the 6th seed is on to the second round in boys 16s @EddieHerrTennis +11/27/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: 11月27日(月)17:45~19:00に #ジャガー 新型 #XF #SPORTBRAKE の特別内覧会を渋谷ヒカリエホールAにて開催!スタートまであと少し! https://t.co/Jo2Wu3YaIT +06/25/2018,Sports_celeb,@Canelo,😂😂😂😂 https://t.co/Fpd9aMhitw +06/22/2018,Sports_celeb,@Canelo,Muchas ganas 👊🏻🔥 https://t.co/nqwtX91hfB +06/12/2018,Sports_celeb,@Canelo,Si con el favor De Dios nos vemos en septiembre 👊🏻 https://t.co/pWX39wc3d5 +05/15/2018,Sports_celeb,@Canelo,"Para informarles que acabo de firmar el contrato con @Vada_Testing para pruebas durante todo el año. + +I want to le… https://t.co/optS8gb96X" +05/02/2018,Sports_celeb,@Canelo,❤️ https://t.co/0GnjDLSPFA +05/02/2018,Sports_celeb,@Canelo,👍🏻 https://t.co/fmjss1Wo3W +05/02/2018,Sports_celeb,@Canelo,No se 100% por que con el que se hizo la colaboración es el experto... pero a lo que se y estuve informado no es pi… https://t.co/tXQjLFcnS1 +05/02/2018,Sports_celeb,@Canelo,"RT @FundacionMGAS: Cuando los GRANDES d corazon,fortaleza y generosidad se encuentran,generan milagros, GRACIAS @Canelo GRACIAS,Israel Gonz…" +04/25/2018,Sports_celeb,@Canelo,"RT @FundacionMGAS: apart from being one of the best bóxers of the World,proud Mexican @Canelo its always helping the ones in need, small p…" +04/08/2018,Sports_celeb,@Canelo,"RT @revistaproceso: #LaPesadilladelClembuterol, en carne propia / una investigación de @beatrizapereyra https://t.co/1XsILKYICC" +03/28/2018,Sports_celeb,@Canelo,Con mucho gusto... sería un privilegio para mi conocer a ese niño🙏🏻. Solo que ahorita se me complica pero déjeme a… https://t.co/7KEsTI7Ku2 +03/23/2018,Sports_celeb,@Canelo,No la chingues no pidas eso acuérdate que me quiero desquitar por culero 👊🏻 saludos 👍🏻 https://t.co/UOQJw8coW5 +03/15/2018,Sports_celeb,@Canelo,Que hermosa!!! Feliz cumpleaños a tu abuelita que dios la bendiga y muchas gracias por su apoyo 👏🏻 https://t.co/nJf2nppocg +03/13/2018,Sports_celeb,@Canelo,"Gracias Los Angeles, nos vemos en Las Vegas// Thank you Los Angeles, see you in Vegas #teamcanelo#caneloggg2#5demayo https://t.co/b8Vv9C8m82" +03/08/2018,Sports_celeb,@Canelo,Feliz día internacional de la mujer👧🏼 que para mi todos los días son de la mujer 🤷🏼‍♂️😊 +03/08/2018,Sports_celeb,@Canelo,"Nos vemos el 5 de mayo. Gracias por apoyarme ! 🇲🇽 See you on May 5, Thanks for your support #CANELOGGG2#teamcanelo https://t.co/PMtZkxi6TU" +02/23/2018,Sports_celeb,@Canelo,Animo @Carolina_Moran estoy contigo #Reto4Elementos +02/21/2018,Sports_celeb,@Canelo,Muchas gracias @Torres que gran detalle 👌🏻 te veo el 5 de mayo compa 👊🏻⚽️ https://t.co/jj7P8pHFjg +12/25/2017,Sports_celeb,@Canelo,Feliz navidad que Dios los bendiga 🙏🏻🎁 https://t.co/CMuuHUZgWq +12/03/2017,Sports_celeb,@Canelo,Éxito y disfruta de tu vida y tus grandes logros campeón. @RealMiguelCotto +11/03/2017,Sports_celeb,@Canelo,"RT @reformaclub: Carlos Slim Helú, Chase Carey, @Canelo Carlos Slim Domit y Carlos Bremer, orgullosos de ser parte del @mexicogp https://t.…" +11/03/2017,Sports_celeb,@Canelo,RT @TeamSportsLat: ¿La @nflmx es más popular en México? Los # de los equipos de esta liga son los que más veces fueron tendencia en septiem… +10/31/2017,Sports_celeb,@Canelo,Saludos a todos buen día 👊🏻 https://t.co/s6CKdSCbst +10/06/2017,Sports_celeb,@Canelo,RT @Rosinalopez: @Canelo ahora todo mundo es #caneloteam pero yo te he amado desde siempre https://t.co/DDa0zkdJVh +09/20/2017,Sports_celeb,@Canelo,Lamento mucho las pérdidas y daños en México.Me uno a las oraciones. El día de mañana será otra pelea mas que vencimos.#unidosMéxico 🇲🇽🙏🏼 +09/16/2017,Sports_celeb,@Canelo,Estoy listo para el #THOR-down! ⚡ #CaneloGGG 👊 @MarvelStudios #ThorRagnarok #ad +09/16/2017,Sports_celeb,@Canelo,I’m ready to #THOR-down! ⚡ #CaneloGGG 👊 @MarvelStudios #ThorRagnarok #ad +09/15/2017,Sports_celeb,@Canelo,Pesaje 160 Libras 👊🏼 Weigh in ✅ #TeamCanelo #CaneloGGG https://t.co/NftkT5nH09 +09/15/2017,Sports_celeb,@Canelo,Gracias a toda la prensa por asistir el día de hoy. 👊🏼🇲🇽 https://t.co/5PXcHBBtK9 +09/15/2017,Sports_celeb,@Canelo,Quiero agradecer a mi equipo y a todos los que participaron en este detalle. Muchas gracias 🙏🏽🇲🇽… https://t.co/g8vquOwzyU +09/15/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: Are you with @Canelo? + +Use the hashtag #Canelo to unlock his special emoji and show your support! #CaneloGGG https://…" +09/13/2017,Sports_celeb,@Canelo,Game on! 👊🏼 #3días #16deSeptiembre #CaneloGGG #TeamCanelo https://t.co/80aVJCJXjc +09/13/2017,Sports_celeb,@Canelo,"RT @UnderArmour: ""When I was born, fear was gone."" - @canelo 👊💥🇲🇽 https://t.co/MGUXLfled4" +09/13/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: Canelo vs Golovkin - Final Press Conference https://t.co/g1rpSf0ua9 +09/13/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: Proceeds of #CaneloGGG will go to Hurricane Harvey and Irma relief efforts in Texas & Florida. Thanks to the champions… +09/11/2017,Sports_celeb,@Canelo,Ya casi es hora. Time to roll up our sleeves. #TeamCanelo #CaneloGGG #MiEra https://t.co/q7MBo2bUSe +09/09/2017,Sports_celeb,@Canelo,Afortunado. @CANELOTEAM #TeamCanelo https://t.co/ZtGRtx6yIs +09/09/2017,Sports_celeb,@Canelo,El ha sido mi mayor inspiración. 👊🏼 Every great achiever is inspired by a great mentor. #Boxing #MiEra #CaneloGGG… https://t.co/1JcTuDpPBP +09/09/2017,Sports_celeb,@Canelo,RT @HBOPR: .@HBO Sports is the fight fan's destination for #CaneloGGG: https://t.co/vSki3dhNTQ https://t.co/YIsZF7XODq +09/09/2017,Sports_celeb,@Canelo,¡Atrévete! 👊🏼 Bring it! #TeamCanelo @CANELOTEAM @FrencHMonTanA https://t.co/mV24Cwza6b +09/08/2017,Sports_celeb,@Canelo,"Por mi familia, por mi gente y por mi país. ¿Tu por quién peleas? +For my family, my people & my country. Who do yo… https://t.co/rAzeQq4wN9" +09/08/2017,Sports_celeb,@Canelo,Nada es fácil pero vale la pena al final👊🏻🔥 #teamcanelo #16deSeptiembre #canelovsggg #MiEra https://t.co/YXThrWoNDi +09/07/2017,Sports_celeb,@Canelo,RT @CANELOTEAM: Ahí vamos !👊🏻🇲🇽👊🏻#teamcanelo#mexicanfighter#nomexicanstyle https://t.co/RBLBQ9INWR +09/06/2017,Sports_celeb,@Canelo,"Se fuerte, pero mentalmente indestructible. 👊🏼 Be strong but mentally indestructible. #Boxing #MiEra #CaneloGGG… https://t.co/YOW4PZzoB1" +09/06/2017,Sports_celeb,@Canelo,Nadie debe detenerte para alcanzar tus metas. 👊🏻 Focus on your goals. You're unstoppable. #Boxing #CaneloGGG #MiEra https://t.co/JhRxwRumFm +09/05/2017,Sports_celeb,@Canelo,Para ganar la suerte no existe. 👊🏼Wake up and get after it! There's no such thing as luck. 🎧@youngrobstone #MiEra… https://t.co/nWfJfvoeMQ +09/05/2017,Sports_celeb,@Canelo,12 Días https://t.co/hXBkhPnZJV +09/04/2017,Sports_celeb,@Canelo,Listo para noquear 👊🏻🔥 ready to KO✅ #MiEra #Canelovsggg #16deseptiembre #12days https://t.co/oTKDs8sZSW +09/03/2017,Sports_celeb,@Canelo,"@caneloteam siempre en mi esquina, listos para lo qué venga.Disfruten su domingo🥊Caneloteam Always in my corner, re… https://t.co/rMrVO5tQaN" +09/03/2017,Sports_celeb,@Canelo,Vamos a luchar juntos por esta causa y por nuestros amigos en Houston. 👊🏼 #HurricaneHarvey https://t.co/5O9LNUsqsO https://t.co/4eLMq2znFa +09/02/2017,Sports_celeb,@Canelo,RT @HBOboxing: TONIGHT: @Canelo + @GGGBoxing go Under the Lights with @MaxKellerman + @RealRoyJonesJr to preview their Sept. 16 showdown. T… +09/02/2017,Sports_celeb,@Canelo,Tengo hambre de gloria. Gracias @ForbesMexico 🔥Hungry for #Glory 👊🏼 https://t.co/otI9zAVSCj +09/02/2017,Sports_celeb,@Canelo,¿Estan listos? 👊🏼 Are YOU ready? 📷 @seeyouringside #MiEra #Boxing #MyLegacy #CaneloGGG https://t.co/7F4ibGi4DS +09/02/2017,Sports_celeb,@Canelo,¡Buenos días! Recuerden qué para ganar no hay días dé descansó. 👊🏻 Wake up and get after it! #nodaysoff #MiEra #tea… https://t.co/AMgh5NQ2YO +09/02/2017,Sports_celeb,@Canelo,15 días más🔥 #16deSeptiembre #Canelovsggg https://t.co/SE7wx6Rnr5 +09/01/2017,Sports_celeb,@Canelo,Empezando a entrenar 🥊 Starting today's training 💪🏻 #MiEra #Teamcanelo https://t.co/nIudiV4tm7 +09/01/2017,Sports_celeb,@Canelo,Hoy con todo ya es viernes 👊🏻 I woke up in #BeastMode 🥊 MiEra https://t.co/c4odya7m9p +09/01/2017,Sports_celeb,@Canelo,¿Ya casi? #16desept 😏 Is it #Sept16 yet? 👊🏼 #boxing #MiEra #MyLegacy #CaneloGGG https://t.co/zIsG1TvIAJ +08/31/2017,Sports_celeb,@Canelo,Es un gran honor para mí!!👏🏻👏🏻 https://t.co/3ocJYMuvgf +08/31/2017,Sports_celeb,@Canelo,Gracias por hacerme parte de esta portada @hauteliving y todo el equipo @fabricetardiue @tajvstaj @msvioletcamacho… https://t.co/PjPk1LS78A +08/31/2017,Sports_celeb,@Canelo,Están listos para el 16 de septiembre? 🥊 You guy's ready for September 16th #MiEra #mylegacy #CaneloGGG https://t.co/7GiycAfJXo +08/30/2017,Sports_celeb,@Canelo,Realmente aprecio todo el apoyo ayer en Los Ángeles. Esta próxima victoria será para todos los que creyeron en mí.… https://t.co/JPhqQ0emTB +08/28/2017,Sports_celeb,@Canelo,¡Los espero este lunes 28 de agosto en el Microsoft Square a las 10:30! 👊🏼Can't wait to meet you on Monday 28 at Mi… https://t.co/rlYA2fP38S +08/27/2017,Sports_celeb,@Canelo,🤦🏼‍♂️ +08/27/2017,Sports_celeb,@Canelo,Winning is what you put into it. Thanks @HennessyUS for believe in my dedication. #CaneloGGG https://t.co/w2oRDOASmi +08/27/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: The best fight in boxing is still to come. #CaneloGGG https://t.co/Eo4cepRNjz +08/26/2017,Sports_celeb,@Canelo,"RT @HBOboxing: Go inside @Canelo & @GGGBoxing's preparation for their Sept. 16 fight with 24/7 #CaneloGGG, premiering tonight after #CottoK…" +08/24/2017,Sports_celeb,@Canelo,"¿Ya están listos para el lunes? 👊🏼 Who's coming Monday? #LosAngeles +📅 Aug 28 @MYLALIVE +⏰ Fan Arrival 10:30am PT -… https://t.co/3SeBk0rm52" +08/24/2017,Sports_celeb,@Canelo,La grandeza se logra a través de las cosas pequeñas que hacemos diario. 👊🏼 Greatness is a lot of small things done… https://t.co/YRNjqXmZQf +08/23/2017,Sports_celeb,@Canelo,"Se acerca el momento 🥊 The time is near #MiEra +IAmBoxing Watch #CaneloGGG Sept 16 at https://t.co/W2nMZOU8QV Onlin… https://t.co/Dout00vmCQ" +08/23/2017,Sports_celeb,@Canelo,Empezamos desde abajo #familia #lealtad 🥊We started from the bottom #family #loyalty 👊🏻 #TEAMCANELO https://t.co/wqPu8VRchp +08/22/2017,Sports_celeb,@Canelo,Team Canelo! Los espero en Los Ángeles este lunes 28 de agosto. ¡No falten! 👊🏼 https://t.co/oxap4tRsT7 +08/20/2017,Sports_celeb,@Canelo,¿Qué están haciendo este fin de semana? #disciplina #enfocado 🇲🇽 What are you doing this weekend? #discipline… https://t.co/zcREFVzT14 +08/19/2017,Sports_celeb,@Canelo,Ese momento donde no hay límites y solo tienes que seguir. 🥊 That moment where there are no limits and you just hav… https://t.co/swUgknDXvH +08/17/2017,Sports_celeb,@Canelo,"Espero que el mundo esté listo para lo que viene en 30 días, Esta es Mi Era! 👊🏼 #realboxing 🎬 @influencesinc 🎼… https://t.co/lx9JQyLmEM" +08/16/2017,Sports_celeb,@Canelo,"Habrá sudor, sangre y dolor, pero valdrá la pena 👊🏼 There will be sweat, blood & pain, but it'll be worth it.#Sept1… https://t.co/VmIDJC5dZx" +08/14/2017,Sports_celeb,@Canelo,"RT @CANELOTEAM: El triunfo no es negociable,es ganar o ganar!👊🏻🇲🇽👊🏻#disciplinaferrea#viejaescuela#mexicanfighter#NOmexicanstyle" +08/12/2017,Sports_celeb,@Canelo,"""Lo que estás pensando es en lo que te estás convirtiendo"" +""What you are thinking is what you are becoming""#Muhamma… https://t.co/gEZB3VwG6T" +08/10/2017,Sports_celeb,@Canelo,"""I Am Boxing"" a special short film narrated by @icecube & Don Chargin. Thank you for all the support. This is our e… https://t.co/XU6Ghwnazl" +08/06/2017,Sports_celeb,@Canelo,RT @jaimecamil: Ya viendo bien la foto @Canelo la gorra sí incrementa la guapura eh! #graciasporlaayudadita 😳😜🤣 #teamcanelo https://t.co/yZ… +08/06/2017,Sports_celeb,@Canelo,"RT @NoelSchajris: Gracias @Canelo !! La pelea del 16/09 es tuya campeón!! #teamcanelo🇲🇽 +https://t.co/ckA4Y860Hw +@jaimecamil https://t.co/…" +08/05/2017,Sports_celeb,@Canelo,RT @jaimecamil: #teamcanelo @Canelo https://t.co/yZIHCFK4Bt 🥊💥 https://t.co/Nt1cYSn2sO +08/02/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: #CaneloGGG is a real fight, not for show. - @canelo. #CampLife Canelo talks w/ @SInow, while @HennessyUS preps for a…" +08/01/2017,Sports_celeb,@Canelo,RT @HBOboxing: .@HBO to air Under the Lights: Canelo/Golovkin on Sept. 2 at 10 PM ahead of #CaneloGGG on Sept. 16 https://t.co/KOaVeZTrH4 h… +07/31/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: #CampLife @canelo on his daily 6:00am morning run in preparation for Sept 16! #CaneloGGG 47 days away!! https://t.co/w… +07/28/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: 🚨Three belts on the line Sept 16! @Canelo will defend his Lineal and Ring Magazine titles and fight for the WBA and IB… +07/26/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: .@Canelo in full beast mode as he prepares for Sept 16! + +#CaneloGGG 52 days to go... #TeamCanelo RT! https://t.co/CUo…" +07/21/2017,Sports_celeb,@Canelo,RT @DavidAugustInc: A great fighter + great clothes = the perfect fighting combination. Feliz Cumpleaños @Canelo #teamdavidaugust https://… +07/18/2017,Sports_celeb,@Canelo,RT @boxingphotos: Pasesela chingon en su día compa Saul 👊🇲🇽 @Canelo #niveles #CaneloGolovkin https://t.co/3LQXFRlYqD +07/11/2017,Sports_celeb,@Canelo,You’ve Just been Buzzed! https://t.co/Ful2TF8YUf #CaneloGGG 9.16.17 #HBOPPV +06/30/2017,Sports_celeb,@Canelo,"RT @Constntino: N o B o x i n g, N o L i f e. @Canelo 🥊 https://t.co/q5qAmtRZKc" +06/29/2017,Sports_celeb,@Canelo,RT @laughingmeel: No solo es mi boxeador favorito y el campeon que necesitábamos. Si no que gracias a el empece a boxear yo tambien💪#TeamCa… +06/29/2017,Sports_celeb,@Canelo,RT @jsphprzz: Because my dude is a monster.👊 https://t.co/Fdsr74kljQ +06/29/2017,Sports_celeb,@Canelo,RT @jrd627: @Canelo vamos! September 16th. Best thing for boxing in decades! Can't wait for the fight and hope you win! https://t.co/Evjs2… +06/29/2017,Sports_celeb,@Canelo,RT @purplepig101: Voted for the man that I would leave my husband for @Canelo 😍😍🥊🥊 https://t.co/o1sQr7uRZP +06/29/2017,Sports_celeb,@Canelo,RT @Yuhhboy_david: @Canelo vote para el mejor🥇🥇🥇🥊🥊🥊 https://t.co/VplrMUpto1 +06/29/2017,Sports_celeb,@Canelo,"RT @ZonaGuerreraOF: ¡Vamos @Canelo! 🥊 +(SÍGUEME 👈• y cuando ganes invita a ver #CaneloGGG) 🥊 +#ZonaGuerrera 🇳🇬 https://t.co/ZE8dGnolpn" +06/29/2017,Sports_celeb,@Canelo,RT @orlandomoreno99: Viva Mexico! 🇲🇽 Voted for the best! @Canelo https://t.co/QxpOqnALCB +06/29/2017,Sports_celeb,@Canelo,RT @martinezbarre10: @Canelo listo mi voto para el mejor boxeador del momento libra por libra y el más exitoso!! https://t.co/Dz4nTkD9dd +06/29/2017,Sports_celeb,@Canelo,RT @erick_d2b: Gotta vote for the best🥊🏆 Puro CANELO🥇 @Canelo https://t.co/xinztKcjEH +06/29/2017,Sports_celeb,@Canelo,RT @drakelopez22: Voted for the goat🇲🇽👊🏼 @Canelo https://t.co/m8Hgn0sh4g +06/29/2017,Sports_celeb,@Canelo,RT @TiTo118: Let's support our own 👍🏼 🇲🇽 @Canelo https://t.co/6pczDh4i88 +06/29/2017,Sports_celeb,@Canelo,RT @ErinHamilton23: Gotta vote for my favorite @Canelo https://t.co/oxNEbvsE8W +06/29/2017,Sports_celeb,@Canelo,RT @KobiBenson: @Canelo for best international athelete easy https://t.co/CqOZR2i9sF +06/29/2017,Sports_celeb,@Canelo,RT @MissLolli44: @Canelo I think the choice was obvious 😃🏆💕💕 https://t.co/xK8w2uOGWv +06/29/2017,Sports_celeb,@Canelo,RT @0161Darren: Voted for the best in the world @Canelo 🐐🙌🏾 September GGG is getting KO 👊🏽 https://t.co/8w0msHjyFb +06/29/2017,Sports_celeb,@Canelo,RT @desireeher_: Voted for the best @Canelo 🥊🥊🥊🤤 https://t.co/pUW1IzVwn3 +06/29/2017,Sports_celeb,@Canelo,RT @iCobrah: Yo nomas voto por los Chingones! 🥊🇲🇽 @Canelo #MiEra https://t.co/N1MQ90FUPG +06/29/2017,Sports_celeb,@Canelo,RT @tbe_christian: This is between Ronaldo and Canelo. I gotta go with @Canelo who's gonna get a big win vs GGG in September. Been most dom… +06/29/2017,Sports_celeb,@Canelo,RT @SantiGG27: Tienes que ganar te lo mereces @Canelo https://t.co/FG3tDzu9yY +06/29/2017,Sports_celeb,@Canelo,RT @kyngxaldo: VOTE FOR @Canelo ‼️ el campeón mundial 🇲🇽 https://t.co/lJWjArLvOf +06/29/2017,Sports_celeb,@Canelo,RT @amandapanda_5: Gotta vote for my fellow Mexican 🇲🇽 @Canelo 🇲🇽🇲🇽🇲🇽🇲🇽🇲🇽 https://t.co/hzHKvlG2IL +06/29/2017,Sports_celeb,@Canelo,RT @georgiexusa: @Canelo for the ESPY's Best International Athlete obviously! 🇲🇽 https://t.co/JFyDdZD1lv +06/29/2017,Sports_celeb,@Canelo,RT @JaymesJones98: Vote for @Canelo 👊 Can't wait for September 😎 https://t.co/da2htsxGra +06/29/2017,Sports_celeb,@Canelo,RT @GiulianoGhisio: Vamos @Canelo!! si lo ganas regálame unas entradas para el evento contra Golovkin jaja 💪💪🥊🥊 https://t.co/RoRcXIHaLk +06/29/2017,Sports_celeb,@Canelo,RT @Boxerboy1799: @Canelo puro pa delante viejon! 👊🏼💯🥊 https://t.co/Imn1xXLrDS +06/29/2017,Sports_celeb,@Canelo,"RT @staywithmeEd: @canelo ganaras porque eres el mejor, obvio 😌 https://t.co/VYcgPMPhtK" +06/29/2017,Sports_celeb,@Canelo,RT @CarlosGaMora: Listo tu voto campeón!👊🏻 @Canelo https://t.co/voMtl9xM9l +06/29/2017,Sports_celeb,@Canelo,"RT @TonisBonilla: Vote for the future WINNER on September 16th, @Canelo Alvarez! 🥇👊🏻🥊 https://t.co/uWCFnVuSDZ" +06/29/2017,Sports_celeb,@Canelo,RT @SilvitaValle: Listo ✔️ eres el mejor chiquito 👊😍 @Canelo https://t.co/MvdaJOJ5Y6 +06/29/2017,Sports_celeb,@Canelo,RT @LaCanela_Isa: Siempre apoyando a Saul!!! VOTEN 🙏🏼😍 bendiciones @Canelo @espn #TEAMCANELO https://t.co/8WboufTYUZ +06/29/2017,Sports_celeb,@Canelo,RT @jquintana099: Voten por @Canelo. Es un orgullo de 🇲🇽! Eres el #️⃣1️⃣ en 🥊 https://t.co/J9xGmRND7g +06/29/2017,Sports_celeb,@Canelo,RT @oscaroriginal11: Es el mejor🤷🏽‍♂️🇲🇽representando a Mexico @Canelo https://t.co/7z3j354Vp5 +06/29/2017,Sports_celeb,@Canelo,RT @javitxuu88: Al canelo oiste guaje @Canelo https://t.co/zSVGK6XvqW +06/29/2017,Sports_celeb,@Canelo,RT @Estrell15998519: Apoyando como siempre al más chingon 🇲🇽🇲🇽🇲🇽👊🏻👊🏻👊🏻🙊🙊🙊@Canelo https://t.co/5V4fOr5DGF +06/29/2017,Sports_celeb,@Canelo,"RT @StephenSanchezz: I Voted For My Idol The Best Boxer And Champ! CANELO 100%!! +Arriba Guadalajara! 🇲🇽 @Canelo https://t.co/xqBJmK1hA5" +06/29/2017,Sports_celeb,@Canelo,RT @MisssMargie: Voted for @Canelo of course 💘 https://t.co/wrtoxlgPSl +06/28/2017,Sports_celeb,@Canelo,RT @jose_andrada: Full con @Canelo ya te votamos wuero. https://t.co/d46PvyaQpD +06/28/2017,Sports_celeb,@Canelo,RT @OhHeyItsStephy: Vote my love @Canelo as best international athlete 😻😻😻 https://t.co/WQ7tFe3Frp +06/28/2017,Sports_celeb,@Canelo,RT @Cocomosqueda: Listo @Canelo eres THE BESSST !!! 🥊🔝💯 https://t.co/mPcE8V2ffx +06/28/2017,Sports_celeb,@Canelo,RT @Letiiciialvz: @Canelo vamos por ese premio!!! https://t.co/EGfEPHYrrx +06/28/2017,Sports_celeb,@Canelo,RT @aruuizz: @Canelo listo el voto campeón! https://t.co/7Iu6gkAkFl +06/28/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: .@Canelo is nominated for a 2017 @ESPYS Award! Best International Athlete 👊🏽🔥 Vote for him now! https://t.co/jhJOvEIKf… +06/27/2017,Sports_celeb,@Canelo,"RT @ESPYS: With @Canelo Alvarez's TKO over Liam Smith... he became the WBO light middleweight champion! + +Vote: https://t.co/lXhnPfq696 htt…" +06/26/2017,Sports_celeb,@Canelo,👌🏻🔥 https://t.co/PDpBU5QSeq +06/16/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: NYC & LA! Join us next week as we make our press stop in your city! #CaneloGGG https://t.co/kEOdtW9sZq +06/13/2017,Sports_celeb,@Canelo,Monster 👊🏻 https://t.co/ZuGXUYXIMm +06/06/2017,Sports_celeb,@Canelo,Viva Mexico 🇲🇽 https://t.co/CqlPaL7lCl +06/06/2017,Sports_celeb,@Canelo,#CaneloGGG 👊🏻👊🏻 De regreso a casa en @TMobileArena. Nos vemos en septiembre. 💪🏻 #MiEra https://t.co/lIdGPaYoMm +06/05/2017,Sports_celeb,@Canelo,🐎 https://t.co/L3NMeho3Gw +05/31/2017,Sports_celeb,@Canelo,POWER 👊 #CaneloChavezJr #MiEra https://t.co/RiziljHMHU +05/31/2017,Sports_celeb,@Canelo,FUERZA 👊 #CaneloChavezJr #MiEra https://t.co/eczncKEpYK +05/30/2017,Sports_celeb,@Canelo,Buenos días 🌞 https://t.co/jXbUgiMzvB +05/29/2017,Sports_celeb,@Canelo,Do you wanna take a shower ? 🚿 https://t.co/cVuEHId6RE +05/26/2017,Sports_celeb,@Canelo,Preparing... 👊 #TEAMCANELO #MiEra https://t.co/ledmhYmoWj +05/26/2017,Sports_celeb,@Canelo,Preparándome... 👊 #TEAMCANELO #MiEra https://t.co/JdZf0BgpZw +05/25/2017,Sports_celeb,@Canelo,😎 https://t.co/qNGjM7rWAN +05/24/2017,Sports_celeb,@Canelo,#CaneloGGG 16 de septiembre 👊🏻👊🏻 https://t.co/OngQjmPA7I +05/19/2017,Sports_celeb,@Canelo,Saludos 🤤 https://t.co/7KQLIDjuFW +05/19/2017,Sports_celeb,@Canelo,Thank you to my friends and family for all the support during Fight week 👊🏻👊🏻 Now I'm focused on September 16… https://t.co/oiViFtB0aW +05/19/2017,Sports_celeb,@Canelo,Gracias a mis amigos y a mi familia por todo el apoyo durante la semana de la pelea #CaneloChavezJr. 16 de septiemb… https://t.co/LSJ6jusD09 +05/19/2017,Sports_celeb,@Canelo,RT @HennessyUS: Confidence makes the champion. @Canelo Alvarez’s lifelong trainer taught him to draw strength from adversity. #RespectTheRe… +05/18/2017,Sports_celeb,@Canelo,Luck is for the mediocre 🔥 https://t.co/fDCzDprYMG +05/16/2017,Sports_celeb,@Canelo,👊✌️ https://t.co/T8pDa2Kts5 +05/13/2017,Sports_celeb,@Canelo,@rojas711 Ya lo puse en mi Instagram saludando a la señora Elenita de hecho se lo mandamos directo 👏🏻 saludos y gra… https://t.co/lvxxwJq41I +05/12/2017,Sports_celeb,@Canelo,"RT @HBOPR: .@HBO Sports presents a replay of #CaneloChavezJr this Saturday, May 13 at 10:05PM: https://t.co/DxnFGoObRh https://t.co/UjJe60v…" +05/12/2017,Sports_celeb,@Canelo,Terminando de hacer un poco de ejercicio 👊🏻💦 https://t.co/KGyCcfQh9B +05/12/2017,Sports_celeb,@Canelo,"RT @PepeAguilar: ¡Mi avión no arrancó, Canelo aguántame! Justo ahora en #ElVlog 067 https://t.co/2nUnDjxopI ^Staff Pp https://t.co/1F1dZnuu…" +05/12/2017,Sports_celeb,@Canelo,"Thank you to my family, #TEAMCANELO, and all my fans for the support last week for #CaneloChavezJr 👊🏻👊🏻🇲🇽 https://t.co/5piauk8ZwU" +05/12/2017,Sports_celeb,@Canelo,Gracias a #TEAMCANELO y a todos los fans por su apoyo la semana pasada. #CaneloChavezJr 👊🏻👊🏻🇲🇽 https://t.co/IXCQF9vri3 +05/11/2017,Sports_celeb,@Canelo,Madre santa ❤ https://t.co/JRsbhLffYK +05/10/2017,Sports_celeb,@Canelo,RT @HBOPR: .@HBOboxing's #TheFightGame with Jim Lampley returns with a new edition tonight at 11PM on @HBO: https://t.co/Db0OlcS4RN +05/10/2017,Sports_celeb,@Canelo,Feliz diA para todas ❤️ https://t.co/H6PqFTO4K9 +05/08/2017,Sports_celeb,@Canelo,♠️♣️♥️♦️🃏 https://t.co/nqOIl71Dof +05/07/2017,Sports_celeb,@Canelo,La noche de la pelea #CaneloChavezJr 👊🏻👊🏻🇲🇽 Lo mejor lo verás el 16 de septiembre #CaneloGGG #TEAMCANELO https://t.co/W3AQRbHYdV +05/07/2017,Sports_celeb,@Canelo,#CaneloChavezJr Fight Night 👊🏻👊🏻🇲🇽 September 16th is coming up... #CaneloGGG #TEAMCANELO https://t.co/u3MXK1zOme +05/07/2017,Sports_celeb,@Canelo,Last night was for Mexico 🇲🇽👊🏻 Thank you #TEAMCANELO and to my family. Back to training 💪🏻#CaneloChavezJr #CaneloGGG https://t.co/aAD1qd4IlQ +05/07/2017,Sports_celeb,@Canelo,La pelea de ayer fue para México. 🇲🇽👊🏻Gracias #TEAMCANELO y a mi familia. De regreso a entrenar 💪🏻 #CaneloChavezJr… https://t.co/sb1CC19bh5 +05/06/2017,Sports_celeb,@Canelo,Thank you #TEAMCANELO for coming out to the weigh in yesterday. See you at @tmobilearena tonight 👊🏻👊🏻… https://t.co/is4pKh97yd +05/06/2017,Sports_celeb,@Canelo,Gracias #TEAMCANELO por venir ayer al pesaje. Nos vemos en @tmobilearena hoy en la noche #CaneloChavezJr 👊👊 https://t.co/lFvAZcfkdo +05/06/2017,Sports_celeb,@Canelo,164lbs... I'm ready for tomorrow 👊🏻💪🏻 #CaneloChavezJr https://t.co/I0OqLyVgPO +05/06/2017,Sports_celeb,@Canelo,164 Libras. ¡Estoy listo para mañana! 💪🏻 #CaneloChavezJr https://t.co/FsXUvmIQSn +05/05/2017,Sports_celeb,@Canelo,Un día #CaneloChavezJr #TEAMCANELO 👊 https://t.co/moAOLiSNRe +05/05/2017,Sports_celeb,@Canelo,Thank you for all the support at the Grand Arrivals & Press Conferences this week. I'm ready and focused.. May 6th… https://t.co/s5IIXIs2oH +05/05/2017,Sports_celeb,@Canelo,Gracias por todo el apoyo tanto en las conferencias de prensa como en nuestra llegada a Las Vegas. ¡Estamos listos!… https://t.co/47P0aUsSpR +05/03/2017,Sports_celeb,@Canelo,Final #CaneloChavezJr Press Conferences 👊🏻👊🏻 See you on Saturday #TEAMCANELO https://t.co/j4vDUFKfXo +05/03/2017,Sports_celeb,@Canelo,Última conferencia de prensa para #CaneloChavezJr. 👊🏻👊🏻 Nos vemos el Sábado #TEAMCANELO https://t.co/Vrdm9MLi8M +05/03/2017,Sports_celeb,@Canelo,Grand Arrivals Las Vegas.. 4 days until #CaneloChavezJr 👊🏻👊🏻 #MiEra https://t.co/5pffb4HU8q +05/03/2017,Sports_celeb,@Canelo,"Llegando a Las Vegas. 4 días para #CaneloChavezJr 👊🏻👊🏻 +#MiEra https://t.co/0WOvqpCy8l" +05/02/2017,Sports_celeb,@Canelo,👊👏 https://t.co/WmxCAO2rpt +05/02/2017,Sports_celeb,@Canelo,Media Day... Almost time for #CaneloChavezJr May 6th https://t.co/VVI6L1yS3y +05/02/2017,Sports_celeb,@Canelo,Día con los medios... Ya casi llega el día #CaneloChavezJr 6 de Mayo https://t.co/agt6Msbyv0 +04/30/2017,Sports_celeb,@Canelo,Animo hermano así es el boxeo se gana se pierde pero siempre con la cabeza en alto @Inocente02Ramon te quiero mucho ❤ +04/29/2017,Sports_celeb,@Canelo,Pride #CaneloChavezJr🇲🇽 https://t.co/8zKid9afC8 +04/29/2017,Sports_celeb,@Canelo,Orgullo 🇲🇽 #CaneloChavezJr https://t.co/7NcxIcdXie +04/26/2017,Sports_celeb,@Canelo,10 days... #CaneloChavezJr https://t.co/gqQxCEA84O +04/26/2017,Sports_celeb,@Canelo,Así son las mañanas con #TEAMCANELO buenas días 👏🏻 https://t.co/FzRYckCavN +04/25/2017,Sports_celeb,@Canelo,Thank you for coming champ!! the great SUGAR RAY LEONARD 👊 👊 @SugarRayLeonard https://t.co/erJ3cLFLJV +04/25/2017,Sports_celeb,@Canelo,👊✌️ https://t.co/vCdWOq9qTs +04/24/2017,Sports_celeb,@Canelo,🙂👊 https://t.co/OeBVAFxhfb +04/21/2017,Sports_celeb,@Canelo,POTENCIA 👊👊 https://t.co/KlZm4G67Xt +04/21/2017,Sports_celeb,@Canelo,RT @ramos7743: @Canelo yo soy puro #teamcanelo vamos campeon solo faltan 16 dias esta es tu ERA https://t.co/nnENNiBfDp +04/20/2017,Sports_celeb,@Canelo,See you at @jewellasvegas on 5/6 #CaneloChavezJr 👊 https://t.co/lnwB9ouxuv https://t.co/QeAuolcoic +04/17/2017,Sports_celeb,@Canelo,👊🇲🇽👊 https://t.co/OPnZtC8vI7 +06/30/2018,Sports_celeb,@Aly_Raisman,😊 https://t.co/kHsOOEeCcT +06/23/2018,Sports_celeb,@Aly_Raisman,Ahhhh thank you to the Improper Bostonian & Brian Doben. The shot in the car was so fun to shoot. I felt so cool 😜🙈… https://t.co/W4zgbwMae1 +06/22/2018,Sports_celeb,@Aly_Raisman,"Best way to start the summer! Amazing day full of yoga, meditation, new friends & #AerieREAL @aerie +#SolsticeTSq.… https://t.co/lbL9INpzSW" +06/14/2018,Sports_celeb,@Aly_Raisman,😊 https://t.co/3d7bZXYElG +06/13/2018,Sports_celeb,@Aly_Raisman,"For every unretouched swim photo you share with #AerieREAL, @Aerie will donate $1 (up to $25K) to @NEDA, a non-prof… https://t.co/gnqG80F4qN" +06/13/2018,Sports_celeb,@Aly_Raisman,❤ the swim you’re in! On set with my @Aerie family. A reminder to be kind to yourself— No one has the perfect body… https://t.co/MBNn22iWs4 +06/08/2018,Sports_celeb,@Aly_Raisman,"RT @Simone_Biles: am I allowed to say + +that msu needs to just shut the hell up +y’all disgust me + +oops .... just did https://t.co/Osjoi6dNm2" +06/06/2018,Sports_celeb,@Aly_Raisman,On set with @Cheribundi !!!! #bts #cheribundi #tartcherryjuice #supernaturalsuperfruit https://t.co/coEPAoB2SC +06/04/2018,Sports_celeb,@Aly_Raisman,I am speechless. @michiganstateu what is going on? Enough is enough. Wake up. https://t.co/iVbg6c80ga +06/04/2018,Sports_celeb,@Aly_Raisman,@MagsGotSwag12 See you in July ❤❤❤❤ +06/04/2018,Sports_celeb,@Aly_Raisman,"""We still fight. Enjoy your vacation""" +06/03/2018,Sports_celeb,@Aly_Raisman,A statement made by my sister survivor who is constantly fighting for us. Thank you @R_Denhollander Enough is enoug… https://t.co/IKUqYoC1NY +06/01/2018,Sports_celeb,@Aly_Raisman,.@USC is another painful example of organizations prioritizing money and reputation. Reports were made decades ago.… https://t.co/NA7RwsIboC +06/01/2018,Sports_celeb,@Aly_Raisman,I want to share my support to all of the brave survivors who have come forward and also those who are still sufferi… https://t.co/b9Se1OF3IP +05/31/2018,Sports_celeb,@Aly_Raisman,Love this!!! @BeePrinsloo I can't wait to meet you!!!!!!! 💙💙 https://t.co/aaNYyGcE3q +05/31/2018,Sports_celeb,@Aly_Raisman,💗 https://t.co/K1cKpheHDK +05/31/2018,Sports_celeb,@Aly_Raisman,@BrieClark95 @GymCastic @OtotheBeirne @TheBBSituation @maroon5 Thank you :) +05/31/2018,Sports_celeb,@Aly_Raisman,@SammyHerbert @adamlevine Adam has been SO supportive! He is so great. +05/31/2018,Sports_celeb,@Aly_Raisman,@adamlevine YOU ARE THE BEST!!!! Thanks @adamlevine & @maroon5 +05/31/2018,Sports_celeb,@Aly_Raisman,How can you not be all smiles when you're asked to be a part of @maroon5 music video?? @adamlevine lucky to call yo… https://t.co/CiHPHktsmW +05/31/2018,Sports_celeb,@Aly_Raisman,RT @adamlevine: Thank you so much to everyone involved with this very special project; honored to share this with you all! https://t.co/uDj… +05/16/2018,Sports_celeb,@Aly_Raisman,Thank you @espn @espys & the Ashe family. What an honor. Incredibly proud to stand with the army of survivors. https://t.co/khBmlD0BJn +05/16/2018,Sports_celeb,@Aly_Raisman,Happy birthday @chloeraisman21 Love you!! 💗 https://t.co/3cKIgw4QEx +05/13/2018,Sports_celeb,@Aly_Raisman,Happy Mother's Day to @LynnRaisman and all the amazing moms out there! Thank you for all you do 💕 +05/11/2018,Sports_celeb,@Aly_Raisman,@LaLaBex22 Oh wow! That is so funny. I assumed you said that because of the shirt :) +05/11/2018,Sports_celeb,@Aly_Raisman,"@LaLaBex22 thank you so much for the bracelet!!! (You sent it months ago, I apologize for being so behind on fan ma… https://t.co/NSOppr7J7K" +05/09/2018,Sports_celeb,@Aly_Raisman,Very grateful to @SenBlumenthal @JerryMoran @SenatorCharles @SenFeinstein for their efforts to protect athletes & h… https://t.co/BRFMMPS7s5 +05/06/2018,Sports_celeb,@Aly_Raisman,Sending good energy and vibes to everyone!!! Hope you all are taking time for yourself. Have a great day 💗 +05/06/2018,Sports_celeb,@Aly_Raisman,When you are a bully online or in person it is a reflection on you. How you treat others says a lot about you. We h… https://t.co/KlwJt0T0T3 +05/06/2018,Sports_celeb,@Aly_Raisman,RT @CoreyTheKnapper: Thanks to @Aly_Raisman for inspiring me to take this simple but very important course and personally signing my certif… +05/06/2018,Sports_celeb,@Aly_Raisman,YES every adult should! 42 million people are survivors of child sexual abuse. Take the course help save children!!… https://t.co/36LOYDQyOB +05/06/2018,Sports_celeb,@Aly_Raisman,RT @hracooper: the tutoring center I work for is offering training through @Darkness2Light and I am SO HAPPY ABOUT THAT (but it should defi… +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @JarrellDanielle: I joined @Aly_Raisman to Flip the Switch & got re-trained to prevent child sexual abuse. You can get trained too, use…" +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @TheDsjaaay: I joined @Aly_Raisman to Flip the Switch & got re-trained to prevent child sexual abuse. You can get trained too, use the c…" +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @KregWunderful: I joined @Aly_Raisman to Flip the Switch & got trained to prevent child sexual abuse. You can get trained too, use the c…" +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you!!!! Please continue to help spread the word. Appreciate you! https://t.co/zEsz6JQwRo +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you so much for taking the course. You are awesome!! https://t.co/qptE1mXx3d +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you for helping to save children's lives. Appreciate you so much. You are a leader in your community!! https://t.co/jbWBvx0T6d +05/06/2018,Sports_celeb,@Aly_Raisman,@BeckyRobson910 Thank you so much. I worked SO hard on it so I really appreciate it. +05/06/2018,Sports_celeb,@Aly_Raisman,Amazing day with @Aerie at #USOW2018! Beyond inspired by these strong women. Thank you to each and every single per… https://t.co/hHuK5dND7c +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @nwlc: “Speaking out is never easy... this problem is bigger than Nasser the #metoo movement is not just in gymnastics or in Hollywood,i…" +05/06/2018,Sports_celeb,@Aly_Raisman,Take the training!!!! @Darkness2Light 💪🏻 https://t.co/s6onHJ7go8 +04/30/2018,Sports_celeb,@Aly_Raisman,RT @Darkness2Light: Order @Aly_Raisman's limited edition swimsuit & @Aerie will donate 100% of the sales to Darkness to Light to help preve… +04/30/2018,Sports_celeb,@Aly_Raisman,Yes!!! Thank you for taking the @Darkness2Light course. Appreciate your kindness and character to make the world a… https://t.co/Cufbe5JXVK +04/30/2018,Sports_celeb,@Aly_Raisman,Why do some support abusers over survivors?? Ughhhh it is so disgusting and horrifying. I will never understand it… https://t.co/AfGgKpuZox +04/30/2018,Sports_celeb,@Aly_Raisman,@exegete77 Hahaha it's all crinkled! I can still read it though 😂 +04/30/2018,Sports_celeb,@Aly_Raisman,"@heylookitsdans Thank you so much. I hope so. Just want all athletes and students, everyone to be safe!!!" +04/30/2018,Sports_celeb,@Aly_Raisman,@smars319 Thank you. I really appreciate your support. It means a lot. +04/30/2018,Sports_celeb,@Aly_Raisman,Devastated to hear about the many gymnasts in Brazil who have been abused. Survivors must be heard & justice must b… https://t.co/CqU3WXCdOm +04/29/2018,Sports_celeb,@Aly_Raisman,@JJ_Denhollander @lindseylemke She is!!!!!! Such a rockstar for all of us!!!! +04/29/2018,Sports_celeb,@Aly_Raisman,MSU & USAG. There are still people working at both organizations who knew and enabled Nassar to thrive. It's danger… https://t.co/1CN7vgeLbu +04/29/2018,Sports_celeb,@Aly_Raisman,Still can't believe I had the honor of meeting @TaranaBurke the other night!!! 🙈🙈🙈 +04/29/2018,Sports_celeb,@Aly_Raisman,RT @TaranaBurke: Omg. This made my cry. https://t.co/M45CKYhFP2 +04/29/2018,Sports_celeb,@Aly_Raisman,Please visit @Darkness2Light to learn more about how you can save someone from abuse. We must prevent abuse. I can'… https://t.co/Z053wprnCP +04/29/2018,Sports_celeb,@Aly_Raisman,YOU can save someone from abuse. YOU. The change starts with each of us. (The course is free and I will personally… https://t.co/BZjOm49llm +04/29/2018,Sports_celeb,@Aly_Raisman,"If don't understand why victim shaming is a huge problem and part of the reason why so many people say ""Me Too"" ple… https://t.co/sp2ltV618M" +04/29/2018,Sports_celeb,@Aly_Raisman,Be supportive of one another. Whether or not you are a survivor of any kind of abuse it is still important for you… https://t.co/0vhpXjfVtb +04/29/2018,Sports_celeb,@Aly_Raisman,So proud of you @Simone_Biles NO ONE IS DEFINED BY ABUSE. Shame on those who use abuse to get more clicks or likes… https://t.co/RWv3S8u5lH +04/29/2018,Sports_celeb,@Aly_Raisman,@TeenVogue thank you for your support of survivors. We appreciate you using your platform to help us make change t… https://t.co/TtTiafDGOm +04/29/2018,Sports_celeb,@Aly_Raisman,When you're trying to have a relaxing evening and then you drop your book in the bathtub.... 🙄 +04/29/2018,Sports_celeb,@Aly_Raisman,RT @emrazz: Can you name all 59 women who came forward against Cosby? Can you name half of them? Can you name 5? Would you recognize them o… +04/28/2018,Sports_celeb,@Aly_Raisman,Good luck to the USA gymnasts at #PacRim2018 ❤💙 +04/27/2018,Sports_celeb,@Aly_Raisman,"RT @Darkness2Light: Get educated on how to protect children at no cost! Use @Aly_Raisman's code FLIPTHESWITCH to learn how to prevent, reco…" +04/27/2018,Sports_celeb,@Aly_Raisman,This is amazing!!! Kristin!!!! You're incredible! https://t.co/myzQj6JzuU +04/27/2018,Sports_celeb,@Aly_Raisman,Sister survivors ❤ @R_Denhollander you continue to amaze me. Thank you for being you. Proud to stand with you. https://t.co/EKOZzyG8G9 +04/26/2018,Sports_celeb,@Aly_Raisman,"RT @SarahHauer: ""USA Gymnastics was like a family, and I felt my family let me down. When they heard about abuse, they tried to cover it up…" +04/26/2018,Sports_celeb,@Aly_Raisman,"RT @LaLaBex22: The most unsurprising revelation, what Dateline cut from Aly's interview, Aly told Rhonda about Larry's abuse and well... 40…" +04/25/2018,Sports_celeb,@Aly_Raisman,.@time 100 last night. This was one of my favorite events I've ever been to. I am in awe of all the incredible peop… https://t.co/v94TZLIMkH +04/25/2018,Sports_celeb,@Aly_Raisman,"RT @vincentvanmoe: if you can, support #DenimDay this year by wearing denim on April 25th! https://t.co/pNg8q4XTRL" +04/25/2018,Sports_celeb,@Aly_Raisman,Supporting #DenimDay 💪🏻💪🏻💪🏻 Women do not have to be modest to be respected. Just because someone is wearing a sexy… https://t.co/bX7N2ngmrK +04/24/2018,Sports_celeb,@Aly_Raisman,"RT @Aerie: They got it from their mamas! #AerieREAL Role Models @YaraShahidi, @Aly_Raisman & @Iskra celebrated their role models with a spe…" +04/24/2018,Sports_celeb,@Aly_Raisman,Love you mom! I can't thank you enough for always supporting me through all the ups and downs! Celebrate Mother’s D… https://t.co/bvGYDjKd1P +04/24/2018,Sports_celeb,@Aly_Raisman,@lannadelgrey Thank you for continuously being supportive. If the media doesn't help cover our stories then nothing… https://t.co/vQJ8nayjzl +04/23/2018,Sports_celeb,@Aly_Raisman,My thoughts on safety at college.... https://t.co/ltfjQ3Mmh5 +04/23/2018,Sports_celeb,@Aly_Raisman,"Hour prime time for investigative piece, no interview/scrutiny of current/recent execs of USAG, the org responsible… https://t.co/NZF0QBhU5O" +04/23/2018,Sports_celeb,@Aly_Raisman,RT @DatelineNBC: Aly Raisman on the statement that changed her life #Dateline https://t.co/ZfHrD95AmT +04/22/2018,Sports_celeb,@Aly_Raisman,💪🏻 https://t.co/sUgS23SU41 +04/16/2018,Sports_celeb,@Aly_Raisman,Good luck!!!! 💪🏻💪🏻💪🏻 #BostonStrong💙💛 #BostonMarathon https://t.co/EgR3pkEwlK +04/16/2018,Sports_celeb,@Aly_Raisman,#BostonStrong 💙💛 +04/10/2018,Sports_celeb,@Aly_Raisman,Signing completed @Darkness2Light #FlipTheSwitch certificates. 1 child abused is too many. 1 time is too many. Take… https://t.co/UtAPHcY5vG +04/06/2018,Sports_celeb,@Aly_Raisman,RT @RedSox: This message brought to you by @davidortiz: https://t.co/6ShnqnBzYs +04/06/2018,Sports_celeb,@Aly_Raisman,Boston is the greatest sports city 💪🏻Thank you @redsox & Boston & @davidortiz 😊 https://t.co/8kaZwIkMg1 +04/05/2018,Sports_celeb,@Aly_Raisman,Incredible show!!! @jtimberlake is beyond talented. So nice to meet Justin & @JessicaBiel 😊 https://t.co/EutqGCqhoz +04/01/2018,Sports_celeb,@Aly_Raisman,@HoneyLaBreathet @Final5Forever ❤❤❤ +04/01/2018,Sports_celeb,@Aly_Raisman,@DonnaTspassions @Final5Forever That's so nice. Thanks so much!!! +04/01/2018,Sports_celeb,@Aly_Raisman,@shoshannaclaire @Final5Forever Thank you!! +04/01/2018,Sports_celeb,@Aly_Raisman,RT @Final5Forever: @Aly_Raisman I’m about to start reading your book! I’m so excited!! #FiercebyAly https://t.co/oDOz1npvU9 +04/01/2018,Sports_celeb,@Aly_Raisman,RT @jjcart21: I am proud to take a stand against child sexual abuse alongside @Aly_Raisman and @Darkness2Light. I pledge to #FlipTheSwitch… +03/29/2018,Sports_celeb,@Aly_Raisman,MINI-ME Priscilla ❤ https://t.co/XBtsCXy7JD +03/29/2018,Sports_celeb,@Aly_Raisman,RT @adamlevine: Help my amazing friend @Aly_Raisman spread the word... https://t.co/t9tJNUmC82 https://t.co/9L9sgpzpdc +03/29/2018,Sports_celeb,@Aly_Raisman,RT @23Jasso: Spread the word. #FlipTheSwitch https://t.co/9LmN0gJ8BL +03/29/2018,Sports_celeb,@Aly_Raisman,@bren_hucks You're unstoppable!!!! Inspiration 💪🏻 +03/27/2018,Sports_celeb,@Aly_Raisman,@CoconutCraver Appreciate you so much. Thank you for your kindness!!! +03/27/2018,Sports_celeb,@Aly_Raisman,@JoeAnello Appreciate your support. Thank you. +03/27/2018,Sports_celeb,@Aly_Raisman,My thoughts..... https://t.co/QUtlNYYg6p +03/27/2018,Sports_celeb,@Aly_Raisman,"RT @SInow: Police have arrested ex-Michigan State dean William Strampel, who was Larry Nassar’s boss at the school https://t.co/8bgDImbqsW" +03/26/2018,Sports_celeb,@Aly_Raisman,"Thank U for the continued support of my book, Fierce. I hope you know that you have a voice & deserve to be heard!… https://t.co/KTZG8htHdp" +03/26/2018,Sports_celeb,@Aly_Raisman,RT @TimScha11er: Today is the LAST DAY to enter to win a #timmyheads shirt signed by the entire Boston Bruins team!!! Help us support @TheJ… +03/25/2018,Sports_celeb,@Aly_Raisman,For those of you who do not understand what victim shaming is and why it's so dangerous I urge you to educate yours… https://t.co/7K2lwEvf7a +03/25/2018,Sports_celeb,@Aly_Raisman,I was recently asked if gymnasts should continue wearing leotards. Leotards r not the problem. The problem is the m… https://t.co/1oIem7UAfv +03/23/2018,Sports_celeb,@Aly_Raisman,Yesssss! Thank you for your support. https://t.co/UJJ3pIpdMG https://t.co/w6Gos88usn +03/23/2018,Sports_celeb,@Aly_Raisman,@jennifermalvaro @danibostick This is amazing!! I posted this. THANK YOU. +03/23/2018,Sports_celeb,@Aly_Raisman,"""Justice will not be served until those who are unaffected are as outraged as those who are."" -Benjamin Franklin" +03/19/2018,Sports_celeb,@Aly_Raisman,✨ https://t.co/YzshqjwgXN +03/19/2018,Sports_celeb,@Aly_Raisman,@JessWeiner 💗 +03/19/2018,Sports_celeb,@Aly_Raisman,RT @anika_kukich: best book i have ever read... thank you @Aly_Raisman for being so inspiring ❤️ https://t.co/TN1aQqXMv8 +03/19/2018,Sports_celeb,@Aly_Raisman,RT @iBooks: Olympic gold medalist @Aly_Raisman courageously turned her private journals and struggles into a book. Now she’s using her incr… +03/18/2018,Sports_celeb,@Aly_Raisman,Happy birthday to my little sis ❤❤❤ Love you so much Maddie https://t.co/rF8R1fCgQa +03/17/2018,Sports_celeb,@Aly_Raisman,"RT @theMissyBonner: ‘I hope u find yr reason, & I hope u’ll help others find theirs, too. Finally, I hope u’ll be kind, be determined, be l…" +03/17/2018,Sports_celeb,@Aly_Raisman,Sending 💗to you all. Have a great weekend. Appreciate all the kind people out there who support each other. You kno… https://t.co/VpTApqoZi7 +03/17/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: .@Aly_Raisman is a FIERCE survivor. Shop our #AerieREAL Role Model’s limited-edition Aerie x Aly Super Scoop Swimsuit & we’ll d… +03/14/2018,Sports_celeb,@Aly_Raisman,HAPPY BIRTHDAY @Simone_Biles ❤💗❤ https://t.co/r6gefS8eAJ +03/13/2018,Sports_celeb,@Aly_Raisman,Behind the scenes with @aerie at their swim shoot & Miami store! Make sure to take some time today for yourself. Sp… https://t.co/7HAbSL1AwT +03/10/2018,Sports_celeb,@Aly_Raisman,"So special to spend time with the @aerie team, who works so hard to set a great example for all girls and women. Fe… https://t.co/Xo4ZROmELg" +03/09/2018,Sports_celeb,@Aly_Raisman,RT @CarlaSueNeal: I completed the program today. I urge everyone to! Worth the time to be aware and prevent childhood sexual abuse. #FlipTh… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: #AerieREAL Role Models @Aly_Raisman & @Iskra are headed to Lincoln Road! Join them for a Real Talk this Sunday from 1 to 3pm & s… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @Timwolz10: I just finished full Stewards Plus from @Darkness2Light The most rewarding things Ive done in a long time. All adults shoul… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @KateUpton: Please join @Aly_Raisman and #FlipTheSwitch to prevent child sexual abuse!! Click here for more info: https://t.co/iNijAuw6qm +03/09/2018,Sports_celeb,@Aly_Raisman,@starkunderoos It's free! +03/09/2018,Sports_celeb,@Aly_Raisman,RT @jewald14: I completed the program today. I urge everyone to! Worth the time to be aware and prevent childhood sexual abuse. https://t.c… +03/09/2018,Sports_celeb,@Aly_Raisman,#FlipTheSwitch 42 million Americans are survivors of child sexual abuse. We MUST change that horrifying number. I u… https://t.co/NzCAoWMAfZ +03/08/2018,Sports_celeb,@Aly_Raisman,@alarabofficial Thank you for supporting!! +03/08/2018,Sports_celeb,@Aly_Raisman,@becrandolph @Aerie Thanks for supporting @Darkness2Light +03/08/2018,Sports_celeb,@Aly_Raisman,#HappyInternationalWomensDay! Thankful to be a part of @Aerie effort to promote body positivity and women's empower… https://t.co/fg2zRCBudc +03/08/2018,Sports_celeb,@Aly_Raisman,"RT @Google: For International Women’s Day, we celebrate those working toward a more equal future. Explore top searched trends around women…" +03/08/2018,Sports_celeb,@Aly_Raisman,Pinching myself. Thank you so much @Google I am so honored to be a part of this video. Happy… https://t.co/cdacVwxrop +03/08/2018,Sports_celeb,@Aly_Raisman,RT @mrsnicolephelps: If you work with children please get on and get certified!! Thank you @Aly_Raisman for making this a possibility to ev… +03/08/2018,Sports_celeb,@Aly_Raisman,RT @JamieErdahl: Use the code FLIPTHESWITCH to participate in the course for free. Once you’ve gained this invaluable knowledge — pass it a… +03/08/2018,Sports_celeb,@Aly_Raisman,RT @guskenworthy: It's so important for sports to be a safe space for kids. @Aly_Raisman is doing something to help end child sex abuse - c… +03/08/2018,Sports_celeb,@Aly_Raisman,Thank you for being a part of this incredible program!!! https://t.co/l39Z1OpU1J +03/08/2018,Sports_celeb,@Aly_Raisman,Thank you so much!!!!! Thank you for helping create the change that is so desperately needed @PeytonJulia 💪🏻… https://t.co/hwlslpCb7T +03/08/2018,Sports_celeb,@Aly_Raisman,"RT @MichaelPhelps: This is an important issue in every sport, and I encourage all adults to join me in completing this program. @Aly_Raisman" +03/08/2018,Sports_celeb,@Aly_Raisman,RT @MichaelPhelps: Thx Aly Raisman for making this program available and free!  Each of us needs to do our part to make all sports safer fo… +03/07/2018,Sports_celeb,@Aly_Raisman,RT @Aly_Raisman: Please join the effort to address sexual abuse in sport. I have partnered with Darkness 2 Light to make programming availa… +03/07/2018,Sports_celeb,@Aly_Raisman,RT @Darkness2Light: We're excited to announce our partnership with @Aly_Raisman to #FliptheSwitch to end #childsexualabuse! Take the traini… +03/07/2018,Sports_celeb,@Aly_Raisman,Please join the effort to address sexual abuse in sport. I have partnered with Darkness 2 Light to make programming… https://t.co/E2RBGA7ZX9 +03/03/2018,Sports_celeb,@Aly_Raisman,"Wanted to wish Morgan, Maile, Allan, Yul and the rest of the athletes the best of luck today at the American cup!" +03/03/2018,Sports_celeb,@Aly_Raisman,RT @kathyjohnsongym: Before you can ever dream of standing side-by-side with the survivors you must first go to them and listen to ALL of t… +03/02/2018,Sports_celeb,@Aly_Raisman,"FIERCE MIND. KIND HEART. BRAVE SPIRIT. +New @Lifeisgood shirts available!! https://t.co/xdpKlOCbFf https://t.co/0U5Yyy5ETe" +03/01/2018,Sports_celeb,@Aly_Raisman,💗 https://t.co/sFxFswvbK6 +02/28/2018,Sports_celeb,@Aly_Raisman,".@Playtex_Sport Compact! It fits in your hand, but protects like their full size tampon, so you can always #PlayOn.… https://t.co/uYOpQ7xA8J" +02/26/2018,Sports_celeb,@Aly_Raisman,So good to see Mihai! Having such a great time in Australia! Thank you for having me back for the second year in a… https://t.co/L15uxolBml +02/25/2018,Sports_celeb,@Aly_Raisman,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/25/2018,Sports_celeb,@Aly_Raisman,Congrats!!!! ❤ https://t.co/NaLbwk48wN +02/25/2018,Sports_celeb,@Aly_Raisman,Impressed and inspired by the powerful students who are using their voices to stand up for what they believe in. +02/18/2018,Sports_celeb,@Aly_Raisman,Trying to pack for Australia but my dogs don't want me to take my new @leesasleep blanket. A percentage of profits… https://t.co/oyG7f7nI8W +02/18/2018,Sports_celeb,@Aly_Raisman,RT @loveisasecrett: @Aly_Raisman I have two little brothers - one in first grade & one in seventh grade. Both of them told me how scared th… +02/18/2018,Sports_celeb,@Aly_Raisman,@UmpleBen Thank you so much 💪🏻 +02/18/2018,Sports_celeb,@Aly_Raisman,@GarzonThree @RWitherspoon Sending 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@Aly_Sheehy 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@Ash_JBHMikey @auburncurls Sending ❤ +02/18/2018,Sports_celeb,@Aly_Raisman,@KyleHarper_ @faithlantisxx @washingtonpost There is a lot of news articles that say different info. I'm human no o… https://t.co/nwbP90EvaS +02/18/2018,Sports_celeb,@Aly_Raisman,@KyleHarper_ @faithlantisxx @washingtonpost No need to be mean. Either way too many. No need to shame an 8 year old… https://t.co/VeW257g3T5 +02/18/2018,Sports_celeb,@Aly_Raisman,@jackief_13 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@rpasley Thank you so much. I am doing my best to be the best I can be. Really appreciate your kind support. +02/18/2018,Sports_celeb,@Aly_Raisman,RT @Ash_JBHMikey: @Aly_Raisman I know i had to sit my little brothers down and talk to them about what they should do in case that happens.… +02/18/2018,Sports_celeb,@Aly_Raisman,RT @NativeTexan1023: @Aly_Raisman Had a similar convo w/ my 9 y/o. She asked if it will happen at her school. I couldn't honestly look at h… +02/18/2018,Sports_celeb,@Aly_Raisman,"@KyleHarper_ @faithlantisxx This was the 18th school shooting in 45 days. How can you say that these ""events"" almos… https://t.co/WSNJodDXwB" +02/18/2018,Sports_celeb,@Aly_Raisman,RT @faithlantisxx: @Aly_Raisman Saw a post about an 8-year old asking for new shoes bc she didn't want to wear her light-up ones bc a shoot… +02/18/2018,Sports_celeb,@Aly_Raisman,"What are you supposed to tell your little sister when she asks ""what do I do if a shooter comes in? Do I hide in th… https://t.co/g4BvCMbY0v" +02/17/2018,Sports_celeb,@Aly_Raisman,"RT @Simone_Biles: keep your chin up @nathanwchen +I believe in you!!" +02/17/2018,Sports_celeb,@Aly_Raisman,https://t.co/RIaeD1iG64 +02/17/2018,Sports_celeb,@Aly_Raisman,RT @Simone_Biles: hey @Adaripp can I please borrow that top ?!!??!!! #NEEDIT +02/16/2018,Sports_celeb,@Aly_Raisman,RT @RWitherspoon: Heartbroken over the news of another school shooting. This is the 18th in 45 days of 2018. Students & teachers shouldn't… +02/16/2018,Sports_celeb,@Aly_Raisman,"@lindseylemke You are strong, powerful and you have a voice. You are being listened to. So proud and thankful for y… https://t.co/mMBEupNaQ0" +02/14/2018,Sports_celeb,@Aly_Raisman,💪🏻 @SI_Swimsuit https://t.co/iyxEXIjs1Z +02/14/2018,Sports_celeb,@Aly_Raisman,Happy Valentine's Day 💗❤💋 +02/14/2018,Sports_celeb,@Aly_Raisman,😂😂😂 @people https://t.co/skNJBOI4we +02/14/2018,Sports_celeb,@Aly_Raisman,Having a moment to myself 🤗Had the pleasure of shooting with James Macari in Aruba. @si_swimsuit @MJ_Day https://t.co/2Y5U6BVr6v +02/13/2018,Sports_celeb,@Aly_Raisman,Congrats!!!! What a special moment :) Can't wait to give you a hug and congratulate you in person! https://t.co/jPekNSPIZa +02/13/2018,Sports_celeb,@Aly_Raisman,Sending my love and support to Needham through this difficult time. Talia Newfield & Adrienne Garrido you will be m… https://t.co/Ju9ITT5T8F +02/13/2018,Sports_celeb,@Aly_Raisman,Thank you to the @SI_Swimsuit team https://t.co/SbTkGmg5Tr +02/12/2018,Sports_celeb,@Aly_Raisman,@Matt_Dominguez Thank you :) +02/11/2018,Sports_celeb,@Aly_Raisman,I know! 75% of teen girls stop playing sports because they're ashamed of their period. We have to change this!!! It… https://t.co/6xvcTqnZka +02/11/2018,Sports_celeb,@Aly_Raisman,See you all soon! Can't wait to come back to Australia!!! Thanks for having me again @gymworldcup & Gymnastics Aust… https://t.co/NjfPLDNpxy +02/11/2018,Sports_celeb,@Aly_Raisman,Don't be ashamed of your period or afraid to talk about it! 💪🏻AND don't let your period get in the way of doing wha… https://t.co/IWQHELd43Y +02/10/2018,Sports_celeb,@Aly_Raisman,@sarahdvojack You're incredible. Thank you for your support!!! +02/10/2018,Sports_celeb,@Aly_Raisman,@sarahdvojack Wow thank you!!!! You're so talented! +02/09/2018,Sports_celeb,@Aly_Raisman,"Best of luck to the athletes, coaches, and families as they compete! I hope all of your hard work pays off, and you… https://t.co/peXfjm8c5T" +02/09/2018,Sports_celeb,@Aly_Raisman,"RT @TheLeadCNN: .@aly_raisman: “I would love for USA Gymnastics and the USOC to hear this ... since they only care about medals, reputation…" +02/08/2018,Sports_celeb,@Aly_Raisman,I can't believe it but I have been on the New York Times Best Sellers list for 3 months in a row. Thank u for the s… https://t.co/x9Vbg5ezLg +02/07/2018,Sports_celeb,@Aly_Raisman,Thank you @people for recognizing the important issues surrounding abuse. This strong army of survivors are just ge… https://t.co/3vy9YehiF8 +02/03/2018,Sports_celeb,@Aly_Raisman,Will the USOC & USAG be looking into all factors that contributed 2 ALL abuse? There have been many allegations of… https://t.co/9JB9lBGsTC +01/31/2018,Sports_celeb,@Aly_Raisman,Wowwww!!!! This is so cool. Is this even real life??? https://t.co/Dv5pQ5mGwN +01/28/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: See the full video & get to know #AerieREAL Role Model @Aly_Raisman on the blog now! https://t.co/uQzRv54lc5 https://t.co/gEAn3S… +01/28/2018,Sports_celeb,@Aly_Raisman,💪🏻💪🏻💪🏻NO RETOUCHING. @YaraShahidi @Iskra @RachelPlatten @Aerie https://t.co/qCxA66FxEd +01/28/2018,Sports_celeb,@Aly_Raisman,"DREAM COME TRUE. Beyond excited to stand strong with @aerie as a new #AerieREAL Role Model! Together, we want to en… https://t.co/3Y0oxhbW51" +01/28/2018,Sports_celeb,@Aly_Raisman,Good to see officials in Michigan taking steps with an investigation led by Special Prosecutor. If we are to believ… https://t.co/7PhPgyHOPr +01/27/2018,Sports_celeb,@Aly_Raisman,My response to the USOC & Scott Blackmun https://t.co/6Z5l6JrzCm +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: FULL INTERVIEW: Olympic gymnast Aly Raisman speaks out +to the co-hosts of @TheView on Larry Nassar's sentencing hearing, if s…" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @ABC: Aly Raisman to @TheView: ""Our society doesn't allow ourselves to really understand how common abuse is."" https://t.co/PsNCGPQHed" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @ABC: Aly Raisman to @TheView on Larry Nassar: ""Everyone stood up for him...one person enough to complain that he was making them uncomf…" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: Olympic gymnast Aly Raisman on if she sensed any remorse in Larry Nassar: ""I don't think he understands what he really did wro…" +01/26/2018,Sports_celeb,@Aly_Raisman,RT @TheView: Olympic gymnast Aly Raisman on why she decided to speak up at USA Gymnastics doctor Larry Nassar's sentencing hearing along wi… +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: ""THEIR TIME IS UP — ABUSE IS NEVER ... OKAY."" Olympic gymnast Aly Raisman on Larry Nassar's sentencing: ""My work, and the army…" +01/26/2018,Sports_celeb,@Aly_Raisman,RT @ABC: LIVE NOW: Olympic gymnast Aly Raisman joins @TheView following sentencing of disgraced USA Gymnastics doctor Larry Nassar. https:/… +01/25/2018,Sports_celeb,@Aly_Raisman,"According to my knowledge, Larry Nassar did not have a medical license in Texas where we trained for the Olympics.… https://t.co/DljAzV6hD7" +01/25/2018,Sports_celeb,@Aly_Raisman,Army of survivors who are NOT going anywhere 💪🏻 https://t.co/HIJMw5cwgE +01/25/2018,Sports_celeb,@Aly_Raisman,Thank you. I appreciate you all so much. https://t.co/kysEo68g5c +01/23/2018,Sports_celeb,@Aly_Raisman,RT @LawCrimeNetwork: Today is day 6 in the #LarryNassar sentencing hearing. Watch live with analysis https://t.co/jlHGIy5euw +06/30/2018,Sports_celeb,@MikeTrout,"RT @nikebaseball: Made to maximize all 5 tools. +This is the new Nike Force Zoom Trout 5, now on https://t.co/PbeTCV7tXy +https://t.co/JE5gBr…" +06/29/2018,Sports_celeb,@MikeTrout,Baltimore ✈️✈️✈️✈️!!! +06/26/2018,Sports_celeb,@MikeTrout,Boston ✈️✈️✈️✈️✈️✈️!! +06/25/2018,Sports_celeb,@MikeTrout,Kansas City ✈️✈️✈️✈️✈️!!! +06/19/2018,Sports_celeb,@MikeTrout,Big thanks to @FOCOusa & @DrinkBODYARMOR!!! https://t.co/SLUK6DFY1U +06/18/2018,Sports_celeb,@MikeTrout,Anaheim✈️✈️✈️✈️!!! +06/17/2018,Sports_celeb,@MikeTrout,"#HappyFathersDay @JeffreyTrout!! Thank you for always being there. + +To all fathers who are there..THANK YOU!! https://t.co/gxDwbQmusI" +06/15/2018,Sports_celeb,@MikeTrout,RT @Eagles: .@mreeseeagles this one’s for you. https://t.co/r84EW1h5t4 +06/14/2018,Sports_celeb,@MikeTrout,Oakland ✈️✈️✈️✈️✈️!!! +06/13/2018,Sports_celeb,@MikeTrout,It’s alive!!! #ObsessedWithBetter https://t.co/eTMCHUrQMc +06/10/2018,Sports_celeb,@MikeTrout,Seattle ✈️✈️✈️✈️✈️!!! +06/09/2018,Sports_celeb,@MikeTrout,RT @JoelEmbiid: Trust The Process!!!! Find a new slant @KingJames +06/07/2018,Sports_celeb,@MikeTrout,Minnesota ✈️✈️✈️✈️✈️!! +06/07/2018,Sports_celeb,@MikeTrout,@EA3k #FlyEaglesFly +06/05/2018,Sports_celeb,@MikeTrout,RT @cj_wentz: My brother & I are excited to have Wentz Bros Outdoors partner with the Outdoor Channel to become their first digital media s… +06/05/2018,Sports_celeb,@MikeTrout,"Happy 30th @TylerTrout, love you bro!!! Careful getting out of bed these days!!! + +#halfwayto60" +06/04/2018,Sports_celeb,@MikeTrout,RT @PGLocal4: ICYMI: Here's the link to my story with the Angels' @MikeTrout. It was such an enjoyable interview...two guys so passionate… +06/02/2018,Sports_celeb,@MikeTrout,RT @jerrybsocal: We did it! AA Angels are 2018 Tournament Champions!!!! https://t.co/uz0b6NRBcK +06/02/2018,Sports_celeb,@MikeTrout,Tiger 🔥🔥🔥! +06/02/2018,Sports_celeb,@MikeTrout,"RT @Cut4: On April 21st, @whitesox pitcher Danny Farquhar suffered a brain hemorrhage. + +Today, he threw out the first pitch, his first tim…" +06/01/2018,Sports_celeb,@MikeTrout,RT @jerrybsocal: Congrats Corona National League AA Angels! We are going to the championship! https://t.co/jJvg6LOg15 +06/01/2018,Sports_celeb,@MikeTrout,RT @MatthewMarsh10: @MikeTrout My son and his 6U All Star Team with be wearing your cleats this post season. Any chance we can get a retwee… +05/31/2018,Sports_celeb,@MikeTrout,"RT @SaltLakeBees: DYK: Only one player in all of @MiLB has more hits than David Fletcher's 72. +#MakeFletchHappen +https://t.co/IDu9vF32KG ht…" +05/28/2018,Sports_celeb,@MikeTrout,"#MEMORIALDAY 🇺🇸 + +Today we honor those who made the ultimate sacrifice...Never Forgotten & Always Thankful." +05/28/2018,Sports_celeb,@MikeTrout,RT @LandisOlivia: MY ALBUM HAS FINALLY BEEN RELEASED!! CHECK IT OUT ON ITUNES OR SPOTIFY🎶❤️ https://t.co/WP80J4sTOK +05/28/2018,Sports_celeb,@MikeTrout,Lebron🔥🔥🔥🔥#wow +05/27/2018,Sports_celeb,@MikeTrout,Detroit✈️✈️✈️✈️✈️!!! +05/26/2018,Sports_celeb,@MikeTrout,@AugieAguilar 👀 +05/24/2018,Sports_celeb,@MikeTrout,New York ✈️✈️✈️✈️!!! +05/21/2018,Sports_celeb,@MikeTrout,Toronto ✈️✈️✈️✈️!!! +05/18/2018,Sports_celeb,@MikeTrout,The hard work and dedication of a teacher is something special. I get to respect that everyday because I married on… https://t.co/u8iywxg27r +05/16/2018,Sports_celeb,@MikeTrout,"""Teaching is the best job in the world, and I go home everyday exhausted, but also energized by the kids I teach.""… https://t.co/2Iy0zwTFWh" +05/14/2018,Sports_celeb,@MikeTrout,RT @Weave1036: Launch angle engaged! 🚀 https://t.co/4qLZImWgEe +05/13/2018,Sports_celeb,@MikeTrout,"To all mothers, happy #MothersDay!! To my mother, @DebbieTrout27, I love you!!" +05/11/2018,Sports_celeb,@MikeTrout,"RT @TTPCumberland: Is commitment the missing piece in your daily health & fitness plan? Take the Pledge today! + +#TakethepledgeCumberland…" +05/11/2018,Sports_celeb,@MikeTrout,@Mar_e_o17 @FortniteGame PUBG !! +05/11/2018,Sports_celeb,@MikeTrout,@arturo_ftw28 @Angels @KoleCalhoun PUBG !! +05/10/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!!! +05/07/2018,Sports_celeb,@MikeTrout,Denver ✈️✈️✈️✈️!!! +05/05/2018,Sports_celeb,@MikeTrout,"There’s only one Albert Pujols. The field and the game wouldn’t be the same without you. + +3000 and COUNTING!!… https://t.co/LYCjCpyVzx" +05/04/2018,Sports_celeb,@MikeTrout,"RT @EKayAngels: When @PujolsFive collected his first @MLB hit on April 2, 2001, @MikeTrout was a 10 year-old 5th grader in Mrs. Kerr's clas…" +05/04/2018,Sports_celeb,@MikeTrout,Proud to see where I'm from making moves!! #TakeThePledgeCumberland https://t.co/B85sOjNC7k +05/04/2018,Sports_celeb,@MikeTrout,Seattle✈️✈️✈️✈️!!! +04/29/2018,Sports_celeb,@MikeTrout,RT @DrinkBODYARMOR: 👀👀👀 @MikeTrout 💥⚾️#ObsessedWithBetter #Switch2BODYARMOR https://t.co/AJB6Md8Ahm +04/28/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +04/27/2018,Sports_celeb,@MikeTrout,RT @howardeskin: It’s great when people don’t forget where they came from. Late this afternoon @MikeTrout made a donation to sponsor my bik… +04/27/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +04/25/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!!! +04/23/2018,Sports_celeb,@MikeTrout,RT @Nicky_Delmonico: Please continue to pray for our brother. 🙏🏻 https://t.co/kXlD53lkqB +04/23/2018,Sports_celeb,@MikeTrout,Houston ✈️✈️✈️✈️✈️!!! +04/18/2018,Sports_celeb,@MikeTrout,"RT @MLByahoosports: Mike Trout stars in a humorous new @DrinkBODYARMOR commercial written/directed by @kobebryant. + +Watch the clip on @yaho…" +04/18/2018,Sports_celeb,@MikeTrout,"Thanks, @DrinkBODYARMOR will take it from here!! + +https://t.co/jDe667qLz3 | #ObsessedWithBetter #Switch2BODYARMOR… https://t.co/wm1bKhZbNy" +04/15/2018,Sports_celeb,@MikeTrout,Anaheim✈️✈️✈️✈️!!! +04/15/2018,Sports_celeb,@MikeTrout,42 +04/15/2018,Sports_celeb,@MikeTrout,Sixers 🔥🔥🔥🔥!! +04/13/2018,Sports_celeb,@MikeTrout,@NWSKansasCity 👀 +04/13/2018,Sports_celeb,@MikeTrout,RT @coleswindell: Somebody’s Been Drinkin’.... +04/12/2018,Sports_celeb,@MikeTrout,Kansas City ✈️✈️✈️✈️✈️!! +04/10/2018,Sports_celeb,@MikeTrout,RT @TBoltAthletics: Congrats to Millville alum Kyle Cox (Baseball) for being selected as Male Athlete of the Week for Gannon University!! @… +04/09/2018,Sports_celeb,@MikeTrout,RT @GUKnights: Congratulations Kyle Cox - Gannon's Male Student-Athlete of the Week! Kyle hit .563 with a 1.063 slugging percentage during… +04/09/2018,Sports_celeb,@MikeTrout,Texas ✈️✈️✈️✈️✈️!!! +04/05/2018,Sports_celeb,@MikeTrout,RT @Lanejohnson65: Caught a speckled @MikeTrout for #EaglesNation today! 🦅🎣 #fishing #trout https://t.co/FFhWuEyEvc +04/05/2018,Sports_celeb,@MikeTrout,Let’s goooo @TigerWoods !!! #Masters 🔥🔥🔥🔥😁 +04/03/2018,Sports_celeb,@MikeTrout,RT @ABC: This 10-year-old boy enjoying a wheelchair swing at an Arkansas park is the most heartwarming thing you'll see today. https://t.co… +04/02/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!! +03/28/2018,Sports_celeb,@MikeTrout,Oakland ✈️✈️✈️✈️✈️!!! +03/22/2018,Sports_celeb,@MikeTrout,"RT @mhazzard1652: Paxton received a gift, his first @MikeTrout shirt from @nelensean! Wearing it with pride! Best player in @mlb and a true…" +03/21/2018,Sports_celeb,@MikeTrout,@Mar_e_o17 @TylerSkaggs37 https://t.co/5bP1fyNLg2 +03/17/2018,Sports_celeb,@MikeTrout,Bridges 👀#wow +03/13/2018,Sports_celeb,@MikeTrout,RT @JessTara: Go check out the fundraiser for Huntington’s Disease our friend @ALaForce (& her hubby) are… https://t.co/2rCfjovAAI +03/11/2018,Sports_celeb,@MikeTrout,@TigerWoods is back !!!! #Let’s Go +03/11/2018,Sports_celeb,@MikeTrout,RT @PGATOUR: Agree or disagree with @BrandtSnedeker? https://t.co/9lb1678sSm +03/11/2018,Sports_celeb,@MikeTrout,RT @GOLF_com: Sunday club twirls are the best club twirls. https://t.co/iQUnQ8FpAw +03/04/2018,Sports_celeb,@MikeTrout,"RT @LandisOlivia: If you haven’t seen it yet, check out the music video for my first original!!! The link is in my bio💕 https://t.co/Hx2nqk…" +02/24/2018,Sports_celeb,@MikeTrout,RT @VladGuerrero27: Describe this moment || describan este momento https://t.co/zKrGEMSsxJ +02/23/2018,Sports_celeb,@MikeTrout,Jess & I will be there!! Looking forward to it!! TICKETS: https://t.co/gnYVCvW0Dc https://t.co/Zt0Pojgpnu +02/20/2018,Sports_celeb,@MikeTrout,RT @tuckervasher: Conversations with @MikeTrout are the best. Always cheers me up! Love you brother. ❤️🙏🏻 +02/19/2018,Sports_celeb,@MikeTrout,RT @GUKnights: Kyle Cox hit the game-winning two-run home run in the top of the seventh inning for @GannonBaseball on opening day! The Gold… +02/18/2018,Sports_celeb,@MikeTrout,"RT @CCron24: Thank you to the @Angels organization and fans for a great 7 years! From the draft in 2011, to my debut in 2014, to now, it’s…" +02/17/2018,Sports_celeb,@MikeTrout,RT @DrinkBODYARMOR: #BehindTheScenes @MikeTrout... #ComingSoon 👀⚾️💥 https://t.co/Z5uJHbNyRk +02/17/2018,Sports_celeb,@MikeTrout,"Baseball is back!! LET’S GO!! + +2018 @ANGELS #SPRINGTRAINING" +02/15/2018,Sports_celeb,@MikeTrout,"RT @Angels: To celebrate #ValentinesDay, @LAAStrikeForce and Choco Bear helped patients at @chocchildrens create special valentines for the…" +02/15/2018,Sports_celeb,@MikeTrout,"RT @JessTara: I’d go anywhere with you, my sweet husband 💛 ••• #happyvalentinesday https://t.co/lKvuHUzgs0" +02/14/2018,Sports_celeb,@MikeTrout,Happy first #ValentinesDay to my beautiful wife!! I love you @JessTara!! +02/14/2018,Sports_celeb,@MikeTrout,RT @HunterSibley: Thanks @MikeTrout honored to wear #1 this year!! 🔥⚾️ https://t.co/zYXsyGhUVj +02/14/2018,Sports_celeb,@MikeTrout,RT @royhallenbeck: Big thanks to @MikeTrout for stopping by and presenting his old #1 to this years captain @HunterSibley Thanks for always… +02/12/2018,Sports_celeb,@MikeTrout,@MLB 👀 +02/08/2018,Sports_celeb,@MikeTrout,RT @criscarter80: Hungry dogs run faster‼️ Kelce can play for my team damn #Underdogs +02/06/2018,Sports_celeb,@MikeTrout,RT @KevinHart4real: All I can do is laugh....We had a blast yesterday at the game. I treated my entire team to the… https://t.co/qNSkUf0bAI +02/06/2018,Sports_celeb,@MikeTrout,RT @Alex_Curry: It’s REAL the @Eagles are #SuperBowl CHAMPS and here’s that @Markgubicza celebration 🙌🏼🏈💚 now all we need is @MikeTrout fre… +02/06/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +02/05/2018,Sports_celeb,@MikeTrout,RT @JeffreyTrout: The Great Merrill Reese! Champs! https://t.co/fQKwyeA6nq +02/05/2018,Sports_celeb,@MikeTrout,"Let’s goooooooo !!!! Champs !! +#FlyEaglesFly" +02/05/2018,Sports_celeb,@MikeTrout,Jake Elliott!!!! +02/05/2018,Sports_celeb,@MikeTrout,Ertz!!!! +02/05/2018,Sports_celeb,@MikeTrout,Ertz !!!! +02/04/2018,Sports_celeb,@MikeTrout,@FoxSportsWest 👀 #FlyEaglesFly https://t.co/ANHe5o0vhM +02/04/2018,Sports_celeb,@MikeTrout,RT @DebbieTrout27: 🦅 We are on our way to Minnesota to bring home the win !🦅@JeffreyTrout @LevickTeal @MikeTrout @JessTara @TylerTrout @Lau… +02/04/2018,Sports_celeb,@MikeTrout,RT @cj_wentz: My bro is gonna shine bright tonight! So excited to see him & this team go out and compete tonight. Been through it all this… +02/04/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +02/04/2018,Sports_celeb,@MikeTrout,RT @DebbieTrout27: 🦅E-A-G-L-E-S 🦅 Game day !!! https://t.co/QIUgXc6uAg +02/04/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly #FGLMystic https://t.co/C7Oo6SQCjy +02/03/2018,Sports_celeb,@MikeTrout,"RT @nflnetwork: Are you flying with the @Eagles on Super Bowl Sunday? + +#FlyEaglesFly #SBLII https://t.co/lIESN2Hr4j" +02/01/2018,Sports_celeb,@MikeTrout,"RT @Eagles: One game is all we got. One game is all we need. + +#SBLII | #FlyEaglesFly https://t.co/ykbgOt5vBf" +01/29/2018,Sports_celeb,@MikeTrout,RT @TigerWoods: Can’t thank the San Diego fans enough. I scrambled my butt off but happy with my first event back. See you at Riv! +01/25/2018,Sports_celeb,@MikeTrout,Tiger ! +01/25/2018,Sports_celeb,@MikeTrout,"Congratulations to Vladimir Guerrero, Chipper Jones, Jim Thome & Trevor Hoffman. It was something special to watch… https://t.co/QH1A4ngOmW" +01/25/2018,Sports_celeb,@MikeTrout,"RT @Angels: 📞 HE’S IN! 📞 + +#VladHOF https://t.co/TMIIEfcieg" +01/24/2018,Sports_celeb,@MikeTrout,@Weave1036 @GRICHARDS26 @realAM23 Hahahahahah +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 Turned @TylerSkaggs37 into a birds fan why not you ? +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 DUKE ! +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 #FlyEaglesFly +01/22/2018,Sports_celeb,@MikeTrout,@blakebaccello #FlyEaglesFly +01/22/2018,Sports_celeb,@MikeTrout,"Super Bowl !!! Lets gooooooo!!!!! +#FlyEaglesFly" +01/21/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Pumped to run back out there in front of our fired up fans tonight! NFC Championship @LFFStadium! Let’s GOOOOO! #FlyEaglesFly… +01/21/2018,Sports_celeb,@MikeTrout,"Letsssssss goooooooo !!!!!! +#FlyEaglesFly" +01/21/2018,Sports_celeb,@MikeTrout,RT @Ike58Reese: #WeAllWeGot 😎👍🏿 https://t.co/ilAd68jjUP +01/21/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/21/2018,Sports_celeb,@MikeTrout,"RT @DrinkBODYARMOR: .@DrinkBODYARMOR Sports Drink TAKING OVER the Octagon tonight as the OFFICIAL SPORTS DRINK of @UFC, hydrating #UFC220 i…" +01/20/2018,Sports_celeb,@MikeTrout,@Markgubicza @TylerSkaggs37 @Vikings He’s going to the Linc for the first time..he doesn’t know what he’s getting into !!!! #FlyEaglesFly +01/20/2018,Sports_celeb,@MikeTrout,@TylerSkaggs37 @Vikings https://t.co/Qvsaby1UFc +01/20/2018,Sports_celeb,@MikeTrout,@DiaDia18 Yes !! +01/20/2018,Sports_celeb,@MikeTrout,Tomorrow !!!! #FlyEaglesFly https://t.co/d7iSDao6P7 +01/20/2018,Sports_celeb,@MikeTrout,"RT @SportsRadioWIP: ""I'm anxious to walk into the stadium to hear what the crowd level at an outdoor arena like that. And I think it's goin…" +01/20/2018,Sports_celeb,@MikeTrout,RT @greengoblin: PHILLY LETS DO THIS❗️ https://t.co/7rS6sLMxVP +01/19/2018,Sports_celeb,@MikeTrout,@TorreySmithWR Let’s gooooooo!!!! +01/19/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Can’t wait to hear @LFFStadium this Sunday! #FlyEaglesFly https://t.co/GsbqRYaCQw +01/19/2018,Sports_celeb,@MikeTrout,RT @JoelEmbiid: Fantastic day!!!! We got a great win and I became an ALL STAR.... I wanna thank all of you guys out there and the organizat… +01/17/2018,Sports_celeb,@MikeTrout,@34badger34 https://t.co/0JC35S5VnN +01/14/2018,Sports_celeb,@MikeTrout,"RT @CoreyClement_6: They count us out , we just keep rolling #FlyEaglesFly" +01/14/2018,Sports_celeb,@MikeTrout,"RT @JonHeyman: this is a happy fellow. nice winter for @MikeTrout (tho i won't ask him to rank in order the ohtani pickup, the eagles playo…" +01/14/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Best game atmosphere ever!!! Thank you all!!!! See you next week!! +01/14/2018,Sports_celeb,@MikeTrout,RT @SNFonNBC: Jeffrey Lurie in the @Eagles locker room is a mood. https://t.co/0wZOF7JPev +01/14/2018,Sports_celeb,@MikeTrout,@Cam_Bedrock He tripped bro lol +01/14/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,@ETeaparty25 @White_Willy13 City hall ???!!! #FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,@Cam_Bedrock 👀 #FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,"Let’s gooooooooo !!!! +#FlyEaglesFly" +01/13/2018,Sports_celeb,@MikeTrout,@SportsRadioWIP @Eagles Let’s gooooo #FLYEAGLESFLY +01/13/2018,Sports_celeb,@MikeTrout,@Markgubicza @caplannfl @adamfgoldberg Go Birds !!! #FlyEaglesFly +01/13/2018,Sports_celeb,@MikeTrout,RT @Markgubicza: Ready for some football! #FlyEaglesFly #NFLPlayoffs @MikeTrout @caplannfl @adamfgoldberg #PennCharter https://t.co/USMnpg9… +01/13/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/13/2018,Sports_celeb,@MikeTrout,"RT @Eagles: Make it happen. + +#FlyEaglesFly https://t.co/axf1ZfrX3d" +01/13/2018,Sports_celeb,@MikeTrout,RT @TreyBurton8: Win or go home time... https://t.co/dEqtr654Bv +01/11/2018,Sports_celeb,@MikeTrout,"RT @cj_wentz: These guys are the real deal and crazy fun to watch! Let’s get them to the All-Star game folks! Much love fellas! 😎 + +#NBAVote…" +01/10/2018,Sports_celeb,@MikeTrout,"RT @aj_pujols55: WOW 17!!! 1-7 this is a special year as I continue my walk with the Lord and fulfill his works through the special gifts,…" +01/10/2018,Sports_celeb,@MikeTrout,"RT @JessTara: December 2️⃣ 0️⃣ 1️⃣ 7️⃣ 🖤 + +How has it been one month already?! Woah. Forgive me, as I’ve got… https://t.co/xNcrUhS05M" +01/09/2018,Sports_celeb,@MikeTrout,RT @cherylrosenbrg: @MikeTrout Orange County kid/Penn student is missing. It’d be awesome if you could RT this flier to get more eyes on it… +01/07/2018,Sports_celeb,@MikeTrout,"RT @LevickTeal: HAPPY BIRTHDAY TO THE SILVER FOX, THE LEGEND HIMSELF, A ONE OF A KIND PAPA, MY DAD JEFFY!! We love you so much Dad!!! #best…" +01/07/2018,Sports_celeb,@MikeTrout,@VictorRojas @turn__2 @Markgubicza @Eagles Eagles are still in it Chiefs aren’t...#FACTS #FlyEaglesFly 😁😁 +01/04/2018,Sports_celeb,@MikeTrout,@JessTara @MLBNetworkRadio @JimCantore https://t.co/gjsShMH6kn +01/04/2018,Sports_celeb,@MikeTrout,RT @JessTara: @MLBNetworkRadio @MikeTrout @JimCantore He’s about one weather map photo short of me muting his text message alerts... 🤦🏼‍♀️📲… +01/01/2018,Sports_celeb,@MikeTrout,Happy New Year !!! +12/31/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/26/2017,Sports_celeb,@MikeTrout,RT @TylerTrout: Merry Christmas from a cold Eagles game! #FlyEaglesFly https://t.co/g1rshsd0Ea +12/26/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/26/2017,Sports_celeb,@MikeTrout,"My wife, my family, my friends make today special!! #MerryChristmas!! https://t.co/96SFuWSxGV" +12/20/2017,Sports_celeb,@MikeTrout,RT @Weave1036: @MikeTrout @toriihunter48 What is that Colgate!! 😂 goodtimes congrats again kiiidddd! +12/18/2017,Sports_celeb,@MikeTrout,Views 🙌🏻 https://t.co/gUNFfp546C +12/18/2017,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Raise your hand if you’re celebrating #VictoryMonday! 🙋‍♂️ #FlyEaglesFly https://t.co/InzwwB1aJa +12/18/2017,Sports_celeb,@MikeTrout,"Stacked at 8!!! #8vs24 + +3 Championships, 8 All-Star Games, 2 Scoring Titles, a slam dunk contest champ, 81 Points,… https://t.co/ZcJEDz9rfr" +12/17/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/14/2017,Sports_celeb,@MikeTrout,RT @cj_wentz: Surgery ✔️ the comeback officially begins now! The Lord truly blessed me with this beautiful young lady to walk by my side an… +12/13/2017,Sports_celeb,@MikeTrout,RT @JessTara: This weekend was pure m a g i c ✨ https://t.co/L5wAsfpuyk +12/12/2017,Sports_celeb,@MikeTrout,@dannyweissphoto @JessTara Thanks everyone ! @AmyKatzEvents did an amazing job ! +12/12/2017,Sports_celeb,@MikeTrout,"From this day forward, you shall not walk alone. My heart will be your shelter, and my arms will be your home . I l… https://t.co/CreZhhAbTa" +12/11/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly @Weave1036 @TylerSkaggs37 +12/11/2017,Sports_celeb,@MikeTrout,Huge !!! +12/10/2017,Sports_celeb,@MikeTrout,What a catch !!!! #Alshon +12/10/2017,Sports_celeb,@MikeTrout,Wonder if Carson had anything to do with that celebration ??!! 🤔🤔🤔🤔#Canadians#Snows +12/10/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/09/2017,Sports_celeb,@MikeTrout,RT @CCron24: Ohtani should crash Trout’s wedding. DM me for details bro! #WelcomeToAnaheim +12/08/2017,Sports_celeb,@MikeTrout,👀 +12/06/2017,Sports_celeb,@MikeTrout,RT @NEWeatherWx: RT if you are ready for winter! https://t.co/By5cbu6BHZ +12/03/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/02/2017,Sports_celeb,@MikeTrout,@ortegsnv1 @CapsForKids Happy Holidays!! +12/02/2017,Sports_celeb,@MikeTrout,RT @ortegsnv1: Thank you @MikeTrout for signing a hat for my son. Through the @CapsForKids program. We go and see the Angels every year you… +12/01/2017,Sports_celeb,@MikeTrout,Tiger 👀!! 🔥🔥🔥 +11/26/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/24/2017,Sports_celeb,@MikeTrout,RT @JessTara: H a p p y T h a n k s g i v i n g from my little family to yours! 🦃🍴 #countingmyblessings… https://t.co/sTQpvppfwT +11/24/2017,Sports_celeb,@MikeTrout,#HappyThanksgiving https://t.co/XD8aidAEVe +11/24/2017,Sports_celeb,@MikeTrout,"From my family to yours, #HappyThanksgiving!! + +There’s a lot to be thankful for!! https://t.co/Vawm8mu9xw" +11/24/2017,Sports_celeb,@MikeTrout,RT @JeffreyTrout: Happy Thanksgiving!! #family @DebbieTrout27 @LevickTeal @MikeTrout @TylerTrout @JessTara @LaurenCerami https://t.co/D7MDP… +11/21/2017,Sports_celeb,@MikeTrout,RT @coachkw15: Congratulations to @HunterSibley for earning the #1 Jersey. Well deserved honor ! @MikeTrout @royhallenbeck @mje643 https://… +11/20/2017,Sports_celeb,@MikeTrout,@Dutch_Oven45 @AaronBoone_ESPN 🤔 +11/19/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/17/2017,Sports_celeb,@MikeTrout,"Special play by a good guy!! #MVP + +Well deserved, @JoseAltuve27!!" +11/15/2017,Sports_celeb,@MikeTrout,Nothing better then listening to @DickieV call a basketball game! #Legend +11/15/2017,Sports_celeb,@MikeTrout,Duke 🔥🔥!!! +11/14/2017,Sports_celeb,@MikeTrout,Simmons 👀 +11/13/2017,Sports_celeb,@MikeTrout,"The season is over, but baseball continues!! Stay in the game with me at #MLB9Innings17!! + +iOS App Store:… https://t.co/zTY8zvpYpR" +11/12/2017,Sports_celeb,@MikeTrout,@TylerSkaggs37 @ZO2_ But did they win tho 🤔 +11/11/2017,Sports_celeb,@MikeTrout,Proudly flying the flag today for the military men & women who have dedicated their lives to protecting our freedom.#VeteransDay +11/07/2017,Sports_celeb,@MikeTrout,In shock over the terrible news about Roy Halladay... a pitcher I grew up admiring & rooting for. Praying for his family & friends. #RIPDoc +11/05/2017,Sports_celeb,@MikeTrout,RT @ZERTZ_86: We’re back in black today Philly! 🔒IN!! #FlyEaglesFly https://t.co/2uOaBJCB9y +11/05/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/02/2017,Sports_celeb,@MikeTrout,RT @JUST_JUP: I am currently out of the country but wanted to say thank you to the @Angels for the opportunity to come back to Anaheim. htt… +10/31/2017,Sports_celeb,@MikeTrout,RT @TheWorldof_AJ: Welcome to Philly my guy @JayTrain23 🗣choo...choo🚂🚂🚂🚂.... #FlyEaglesFly +10/29/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +07/01/2018,Politicians,@realDonaldTrump,"The Liberal Left, also known as the Democrats, want to get rid of ICE, who do a fantastic job, and want Open Border… https://t.co/gVNySrk4Oa" +07/01/2018,Politicians,@realDonaldTrump,I will be interviewed by @MariaBartiromo at 10:00 A.M. on @FoxNews +06/30/2018,Politicians,@realDonaldTrump,"When people come into our Country illegally, we must IMMEDIATELY escort them back out without going through years o… https://t.co/l0cBzDIMn0" +06/30/2018,Politicians,@realDonaldTrump,I will be interviewed by @MariaBartiromo on Sunday on @FoxNews at 10:00 A. M. Enjoy! +06/30/2018,Politicians,@realDonaldTrump,"Either we need to elect more Republicans in November or Republicans must end the ridiculous 60 vote, or Filibuster,… https://t.co/BZR2xb8jqq" +06/30/2018,Politicians,@realDonaldTrump,"I never pushed the Republicans in the House to vote for the Immigration Bill, either GOODLATTE 1 or 2, because it c… https://t.co/tpKMP3vO6l" +06/30/2018,Politicians,@realDonaldTrump,"A friend of mine and a man who has truly seen politics and life as few others ever will, Sean Spicer, has written a… https://t.co/klFqfUfhlm" +06/30/2018,Politicians,@realDonaldTrump,"I will be making my choice for Justice of the United States Supreme Court on the first Monday after the July 4th Holiday, July 9th!" +06/30/2018,Politicians,@realDonaldTrump,"Just spoke to King Salman of Saudi Arabia and explained to him that, because of the turmoil & disfunction in Iran a… https://t.co/xxFxafSl3H" +06/30/2018,Politicians,@realDonaldTrump,"To the great and brave men and women of ICE, do not worry or lose your spirit. You are doing a fantastic job of kee… https://t.co/H4iJtg4xB2" +06/30/2018,Politicians,@realDonaldTrump,"The Democrats are making a strong push to abolish ICE, one of the smartest, toughest and most spirited law enforcem… https://t.co/WbFYrPzRLk" +06/30/2018,Politicians,@realDonaldTrump,RT @DanScavino: “@GovMikeHuckabee: Trump could nominate Moses for Supreme Court and Democrats would fight it” https://t.co/5wx3nVJxvF +06/30/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement account c…" +06/30/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Before going any further today, I want to address the horrific shooting that took place yesterday at the Capital Gazet…" +06/30/2018,Politicians,@realDonaldTrump,"RT @IvankaTrump: Thank you @SecPompeo. +It was an honor to join you and your talented, passionate colleagues at @StateDept to honor the her…" +06/30/2018,Politicians,@realDonaldTrump,RT @IvankaTrump: Thank you Senator Alexander for your leadership on career + technical education. 11+ million students and workers across o… +06/29/2018,Politicians,@realDonaldTrump,The new plant being built by Foxconn in Wisconsin is incredible. Congratulations to the people of Wisconsin and to… https://t.co/VH2tbPgIbH +06/29/2018,Politicians,@realDonaldTrump,"RT @FoxBusiness: .@IvankaTrump: ""I think one of the tremendous opportunities that were seeing because the economy is so strong is that peop…" +06/29/2018,Politicians,@realDonaldTrump,"RT @Scavino45: “@ICEgov New York operation leads to arrests of 3 dozen Darknet vendors selling illicit goods, weapons, drugs seized and mor…" +06/29/2018,Politicians,@realDonaldTrump,"Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement accoun… https://t.co/GzLNe4WkQA" +06/29/2018,Politicians,@realDonaldTrump,"Before going any further today, I want to address the horrific shooting that took place yesterday at the Capital Ga… https://t.co/wcukrK7M48" +06/28/2018,Politicians,@realDonaldTrump,"Prior to departing Wisconsin, I was briefed on the shooting at Capital Gazette in Annapolis, Maryland. My thoughts… https://t.co/DUhjdWWxBP" +06/28/2018,Politicians,@realDonaldTrump,"AMERICA IS OPEN FOR BUSINESS! +https://t.co/fuRF2Z6CZl" +06/28/2018,Politicians,@realDonaldTrump,"Today, we broke ground on a plant that will provide jobs for up to 15,000 Wisconsin Workers! As Foxconn has discove… https://t.co/AkvrABaDNj" +06/28/2018,Politicians,@realDonaldTrump,"I am in Milwaukee, Wisconsin, for meetings. Soon to leave for a big groundbreaking for Foxconn, which is building a… https://t.co/d5Y3nMwa3g" +06/28/2018,Politicians,@realDonaldTrump,....persecuted on old and/or totally unrelated charges (there was no collusion and there was no obstruction of the… https://t.co/SpG2p56INu +06/28/2018,Politicians,@realDonaldTrump,When is Bob Mueller going to list his Conflicts of Interest? Why has it taken so long? Will they be listed at the t… https://t.co/RNYRkyxZFx +06/28/2018,Politicians,@realDonaldTrump,Peter Strzok worked as the leader of the Rigged Witch Hunt for a long period of time - he got it started and was on… https://t.co/HgmUjpufjL +06/28/2018,Politicians,@realDonaldTrump,"Just watched @SharkGregNorman on @foxandfriends. Said “President is doing a great job. All over the world, people w… https://t.co/SBsUQf6LYp" +06/28/2018,Politicians,@realDonaldTrump,"Amy Kremer, Women for Trump, was so great on @foxandfriends. Brave and very smart, thank you Amy! @AmyKremer" +06/28/2018,Politicians,@realDonaldTrump,"Russia continues to say they had nothing to do with Meddling in our Election! Where is the DNC Server, and why didn… https://t.co/aKI3hu6wef" +06/28/2018,Politicians,@realDonaldTrump,"Lover FBI Agent Peter Strzok was given poor marks on yesterday’s closed door testimony and, according to most repor… https://t.co/rijMTcMPQg" +06/28/2018,Politicians,@realDonaldTrump,...home addresses – putting these selfless public servants in harm’s way. These radical protesters want ANARCHY – b… https://t.co/sqGBkGUxM2 +06/28/2018,Politicians,@realDonaldTrump,In recent days we have heard shameless attacks on our courageous law enforcement officers. Extremist Democrat polit… https://t.co/bRsezeDPBR +06/28/2018,Politicians,@realDonaldTrump,"Thank you North Dakota. Together, we are MAKING AMERICA SAFE AND GREAT AGAIN! #MAGA https://t.co/6Am9n6px8I" +06/27/2018,Politicians,@realDonaldTrump,Just landed in North Dakota with @SenJohnHoeven and @RepKevinCramer. We will see everyone at Scheels Arena shortly! https://t.co/pakUigKB61 +06/27/2018,Politicians,@realDonaldTrump,"Today, it was my great honor to welcome President Marcelo Rebelo de Sousa of Portugal to the @WhiteHouse!🇺🇸🇵🇹 https://t.co/yd37K4Ei8R" +06/27/2018,Politicians,@realDonaldTrump,Heading to North Dakota to fully stand with and endorse Kevin Cramer for Senate. He is an extraordinary Congressman… https://t.co/qMniRSctDT +06/27/2018,Politicians,@realDonaldTrump,Statement on Justice Anthony Kennedy. #SCOTUS https://t.co/8aWJ6fWemA +06/27/2018,Politicians,@realDonaldTrump,"Today, I was thrilled to join student leaders from Colleges and Universities across the country... https://t.co/OQp3NcOeE4" +06/27/2018,Politicians,@realDonaldTrump,"Harley-Davidson should stay 100% in America, with the people that got you your success. I’ve done so much for you,… https://t.co/kNmruD0swh" +06/27/2018,Politicians,@realDonaldTrump,"Supreme Court rules in favor of non-union workers who are now, as an example, able to support a candidate of his or… https://t.co/zZlPRIgB26" +06/27/2018,Politicians,@realDonaldTrump,"HOUSE REPUBLICANS SHOULD PASS THE STRONG BUT FAIR IMMIGRATION BILL, KNOWN AS GOODLATTE II, IN THEIR AFTERNOON VOTE… https://t.co/7NPrGsNjNW" +06/27/2018,Politicians,@realDonaldTrump,"Congratulations to Maxine Waters, whose crazy rants have made her, together with Nancy Pelosi, the unhinged FACE of… https://t.co/CusnE1izm7" +06/27/2018,Politicians,@realDonaldTrump,Big and conclusive win by Mitt Romney. Congratulations! I look forward to working together - there is so much good… https://t.co/CqjLaLDkkc +06/27/2018,Politicians,@realDonaldTrump,The legendary Gary Player at Turnberry in Scotland! https://t.co/3oGoqWhhtA +06/27/2018,Politicians,@realDonaldTrump,A great First Lady! https://t.co/Pt35aluI4C +06/27/2018,Politicians,@realDonaldTrump,RT @The_Trump_Train: @realDonaldTrump https://t.co/9ubTCAyZkq +06/27/2018,Politicians,@realDonaldTrump,The Democrats are in Turmoil! Open Borders and unchecked Crime a certain way to lose elections. Republicans are for… https://t.co/srI2CTyDds +06/27/2018,Politicians,@realDonaldTrump,"Wow! Big Trump Hater Congressman Joe Crowley, who many expected was going to take Nancy Pelosi’s place, just LOST h… https://t.co/4TuokLaPMJ" +06/27/2018,Politicians,@realDonaldTrump,"Tremendous win for Congressman Dan Donovan. You showed great courage in a tough race! New York, and my many friends… https://t.co/JvRCgZpcG8" +06/27/2018,Politicians,@realDonaldTrump,Congratulations to Governor Henry McMaster on your BIG election win! South Carolina loves you. We are all proud of… https://t.co/jWLZKh1S99 +06/26/2018,Politicians,@realDonaldTrump,"Today, we tell the story of an incredible HERO who defended our nation in World War Two – First Lieutenant Garlin M… https://t.co/nrpii7C3KK" +06/26/2018,Politicians,@realDonaldTrump,SUPREME COURT UPHOLDS TRUMP TRAVEL BAN. Wow! +06/26/2018,Politicians,@realDonaldTrump,“The most profound question of our era: Was there a conspiracy in the Obama Department of Justice and the FBI to pr… https://t.co/EY5JfbWzmt +06/26/2018,Politicians,@realDonaldTrump,"The face of the Democrats is now Maxine Waters who, together with Nancy Pelosi, have established a fine leadership… https://t.co/k95es4evL2" +06/26/2018,Politicians,@realDonaldTrump,A Harley-Davidson should never be built in another country-never! Their employees and customers are already very an… https://t.co/iTUQaIXwHJ +06/26/2018,Politicians,@realDonaldTrump,"It was great being with Governor Henry McMaster last night in South Carolina. Henry is tough on Crime and Borders,… https://t.co/XPG4k94aRL" +06/26/2018,Politicians,@realDonaldTrump,....We are finishing our study of Tariffs on cars from the E.U. in that they have long taken advantage of the U.S.… https://t.co/MOBnXWSfYl +06/26/2018,Politicians,@realDonaldTrump,"....When I had Harley-Davidson officials over to the White House, I chided them about tariffs in other countries, l… https://t.co/PhSv1BSMYa" +06/26/2018,Politicians,@realDonaldTrump,....We are getting other countries to reduce and eliminate tariffs and trade barriers that have been unfairly used… https://t.co/n5sU0778dD +06/26/2018,Politicians,@realDonaldTrump,Early this year Harley-Davidson said they would move much of their plant operations in Kansas City to Thailand. Tha… https://t.co/uDeWOh3mWJ +06/26/2018,Politicians,@realDonaldTrump,Thank you South Carolina. Now let’s get out tomorrow and VOTE for @HenryMcMaster! https://t.co/5xlz0wfMfu +06/25/2018,Politicians,@realDonaldTrump,Just landed in South Carolina - will be at the McMaster rally shortly! #MAGA +06/25/2018,Politicians,@realDonaldTrump,The hearing of Peter Strzok and the other hating frauds at the FBI & DOJ should be shown to the public on live tele… https://t.co/TFLQ7s7kmy +06/25/2018,Politicians,@realDonaldTrump,"Why is Senator Mark Warner (D-VA), perhaps in a near drunken state, claiming he has information that only he and Bo… https://t.co/oumPE3BtVX" +06/25/2018,Politicians,@realDonaldTrump,"RT @WhiteHouse: Today, @realDonaldTrump and @FLOTUS welcomed @KingAbdullahII and @QueenRania of the Hashemite Kingdom of Jordan to the Whit…" +06/25/2018,Politicians,@realDonaldTrump,“Director David Lynch: Trump Could Go Down as One of the Greatest Presidents” https://t.co/AcgnIZNh6e +06/25/2018,Politicians,@realDonaldTrump,"Surprised that Harley-Davidson, of all companies, would be the first to wave the White Flag. I fought hard for them… https://t.co/cTQIqsyfbK" +06/25/2018,Politicians,@realDonaldTrump,"Congresswoman Maxine Waters, an extraordinarily low IQ person, has become, together with Nancy Pelosi, the Face of… https://t.co/iZvAew0qOB" +06/25/2018,Politicians,@realDonaldTrump,RT @EricTrump: Record High Economic Optimism: 51% of people think the the economy is good or excellent - this is the highest number @CNBC h… +06/25/2018,Politicians,@realDonaldTrump,"RT @TrumpGolf: Congratulations to our dear friend and @TrumpCharlotte member, @ScottMcCarron, on his incredible win at the @AmFamChamp this…" +06/25/2018,Politicians,@realDonaldTrump,RT @marcorubio: Trump haters still haven’t realized how much they help him with their condescension of those who either voted for him or do… +06/25/2018,Politicians,@realDonaldTrump,"Will be heading to one of my favorite places, South Carolina, to fight for one of my original “fighters,” Governor… https://t.co/WUmWQiimJq" +06/25/2018,Politicians,@realDonaldTrump,"....If this is done, illegal immigration will be stopped in it’s tracks - and at very little, by comparison, cost.… https://t.co/HDii4VkUNc" +06/25/2018,Politicians,@realDonaldTrump,"Hiring manythousands of judges, and going through a long and complicated legal process, is not the way to go - will… https://t.co/try3EcJSAJ" +06/25/2018,Politicians,@realDonaldTrump,Such a difference in the media coverage of the same immigration policies between the Obama Administration and ours.… https://t.co/SIv7btegSk +06/25/2018,Politicians,@realDonaldTrump,"I have tried to stay uninvolved with the Department of Justice and FBI (although I do not legally have to), because… https://t.co/rBebc0GHdb" +06/25/2018,Politicians,@realDonaldTrump,"The Red Hen Restaurant should focus more on cleaning its filthy canopies, doors and windows (badly needs a paint jo… https://t.co/CObp1kkDlk" +06/25/2018,Politicians,@realDonaldTrump,Former Attorney General Michael Mukasey said that President Trump is probably correct that there was surveillance o… https://t.co/O5DN6DKreR +06/25/2018,Politicians,@realDonaldTrump,".@RepClayHiggins has been a great help to me on Cutting Taxes, creating great new healthcare programs at low cost,… https://t.co/8Y4VAfVZK3" +06/25/2018,Politicians,@realDonaldTrump,"House Republicans could easily pass a Bill on Strong Border Security but remember, it still has to pass in the Sena… https://t.co/1tJeUrJyV5" +06/25/2018,Politicians,@realDonaldTrump,.@jimmyfallon is now whimpering to all that he did the famous “hair show” with me (where he seriously messed up my… https://t.co/O7qrzxhEWv +06/24/2018,Politicians,@realDonaldTrump,The United States is insisting that all countries that have placed artificial Trade Barriers and Tariffs on goods g… https://t.co/5i0yZh1XSK +06/24/2018,Politicians,@realDonaldTrump,"....Our Immigration policy, laughed at all over the world, is very unfair to all of those people who have gone thro… https://t.co/NnqUpbRHLp" +06/24/2018,Politicians,@realDonaldTrump,"We cannot allow all of these people to invade our Country. When somebody comes in, we must immediately, with no Jud… https://t.co/X8GwD9vA5p" +06/24/2018,Politicians,@realDonaldTrump,"Democrats, fix the laws. Don’t RESIST. We are doing a far better job than Bush and Obama, but we need strength and… https://t.co/0bxgKrG5Og" +06/24/2018,Politicians,@realDonaldTrump,Major Wall Street Journal opinion piece today talking about the Russian Witch Hunt and the disgrace that it is. So… https://t.co/ADkg5DLfQo +06/23/2018,Politicians,@realDonaldTrump,AMERICA IS OPEN FOR BUSINESS! https://t.co/ZjdlHwJlxm +06/23/2018,Politicians,@realDonaldTrump,Thank you @NVGOP! #MAGA https://t.co/OGTR2j6PGG +06/23/2018,Politicians,@realDonaldTrump,"Happy Birthday to Supreme Court Justice Clarence Thomas, a friend and great man! https://t.co/hlXYYkTjcv" +06/23/2018,Politicians,@realDonaldTrump,"It’s very sad that Nancy Pelosi and her sidekick, Cryin’ Chuck Schumer, want to protect illegal immigrants far more… https://t.co/HidQanCeMr" +06/23/2018,Politicians,@realDonaldTrump,"RT @HuckabeeOnTBN: TONIGHT: the President of the United States, @realDonaldTrump, sits down to discuss his thoughts about international rel…" +06/23/2018,Politicians,@realDonaldTrump,Heading to Nevada to talk trade and immigration with supporters. Country’s economy is stronger than ever before wit… https://t.co/kXEzed3ign +06/23/2018,Politicians,@realDonaldTrump,"My thoughts and prayers are with Representative Katie Arrington of South Carolina, including all of those involved… https://t.co/s2qGDVlASC" +06/23/2018,Politicians,@realDonaldTrump,"...everyone how much he likes me, but he will only vote with Nancy Pelosi. Keith is strong on borders and tough on… https://t.co/ytZoim3yaI" +06/23/2018,Politicians,@realDonaldTrump,".@VP Pence is heading to Pittsburgh, Pennsylvania where we have both strongly endorsed one of the finest men around… https://t.co/fkXBNxvWZe" +06/23/2018,Politicians,@realDonaldTrump,"Drudge Report “OBAMA KEPT THEM IN CAGES, WRAPPED THEM IN FOIL” We do a much better job while at the same time main… https://t.co/niwUf6T2rg" +06/23/2018,Politicians,@realDonaldTrump,“Disability applications plunge as economy strengthens” Failing New York Times +06/23/2018,Politicians,@realDonaldTrump,The National Association of Manufacturers just announced that 95.1% of Manufacturers “have a positive outlook for t… https://t.co/Xhx3FDLAxT +06/23/2018,Politicians,@realDonaldTrump,The Russian Witch Hunt is Rigged! +06/23/2018,Politicians,@realDonaldTrump,".@FoxNews Poll numbers plummet on the Democrat inspired and paid for Russian Witch Hunt. With all of the bias, lyi… https://t.co/42rEL4UcSF" +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Congressman Ron DeSantis, a top student at Yale and Harvard Law School, is running for Governor of the Great State of…" +06/23/2018,Politicians,@realDonaldTrump,RT @PressSec: It’s shameful that dems and the media exploited this photo of a little girl to push their agenda. She was not separated from… +06/23/2018,Politicians,@realDonaldTrump,RT @JesseBWatters: Will be 🔥@TPUSA https://t.co/r06LyQ9Obd +06/23/2018,Politicians,@realDonaldTrump,"RT @Scavino45: 🚨Happening Now: +President Trump delivers remarks on immigration with Angel Families: https://t.co/WHGk1H7T7u https://t.co/rV…" +06/23/2018,Politicians,@realDonaldTrump,RT @realDonaldTrump: We are gathered today to hear directly from the AMERICAN VICTIMS of ILLEGAL IMMIGRATION. These are the American Citize… +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Our first duty, and our highest loyalty, is to the citizens of the United States. We will not rest until our border is…" +06/23/2018,Politicians,@realDonaldTrump,RT @Scavino45: REQUESTED by family members after their private meeting and visit to the Oval Office - which took place before public remark… +06/23/2018,Politicians,@realDonaldTrump,RT @SecPompeo: .@POTUS’ agenda is the most pro-business agenda from a President in history. It been a game-changer for the American economi… +06/23/2018,Politicians,@realDonaldTrump,Steel is coming back fast! U.S. Steel is adding great capacity also. So are others. https://t.co/0Pzwjg3Vxn +06/23/2018,Politicians,@realDonaldTrump,RT @realDonaldTrump: We have to maintain strong borders or we will no longer have a country that we can be proud of – and if we show any we… +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Elect more Republicans in November and we will pass the finest, fairest and most comprehensive Immigration Bills anyw…" +06/23/2018,Politicians,@realDonaldTrump,Based on the Tariffs and Trade Barriers long placed on the U.S. & its great companies and workers by the European U… https://t.co/dqB7ivIKdo +06/22/2018,Politicians,@realDonaldTrump,"Our first duty, and our highest loyalty, is to the citizens of the United States. We will not rest until our border… https://t.co/Xq0o3yW8dv" +06/22/2018,Politicians,@realDonaldTrump,We are gathered today to hear directly from the AMERICAN VICTIMS of ILLEGAL IMMIGRATION. These are the American Cit… https://t.co/Ih0At614Jp +06/22/2018,Politicians,@realDonaldTrump,Hope OPEC will increase output substantially. Need to keep prices down! +06/22/2018,Politicians,@realDonaldTrump,We must maintain a Strong Southern Border. We cannot allow our Country to be overrun by illegal immigrants as the D… https://t.co/3Ms9tXU4Cv +06/22/2018,Politicians,@realDonaldTrump,"80% of Mexico’s Exports come to the United States. They totally rely on us, which is fine with me. They do have, th… https://t.co/1CFu4Ex7AU" +06/22/2018,Politicians,@realDonaldTrump,RT @EricTrump: Good job @FLOTUS 🇺🇸🇺🇸🇺🇸 https://t.co/RCYjy0DlF9 +06/22/2018,Politicians,@realDonaldTrump,"Congressman Ron DeSantis, a top student at Yale and Harvard Law School, is running for Governor of the Great State… https://t.co/xEkAqrqH6R" +06/22/2018,Politicians,@realDonaldTrump,Congresswoman Martha Roby of Alabama has been a consistent and reliable vote for our Make America Great Again Agend… https://t.co/S21c4EKQvc +06/22/2018,Politicians,@realDonaldTrump,Governor Henry McMaster is a truly fine man who loves the People of South Carolina. He was one of my very early sup… https://t.co/oPoaxw9qbi +06/22/2018,Politicians,@realDonaldTrump,Republicans should stop wasting their time on Immigration until after we elect more Senators and Congressmen/women… https://t.co/4HZ9ZIiNfr +06/22/2018,Politicians,@realDonaldTrump,"Elect more Republicans in November and we will pass the finest, fairest and most comprehensive Immigration Bills a… https://t.co/ZK72YOYINO" +06/22/2018,Politicians,@realDonaldTrump,"Even if we get 100% Republican votes in the Senate, we need 10 Democrat votes to get a much needed Immigration Bill… https://t.co/eMvXkDpulv" +06/22/2018,Politicians,@realDonaldTrump,"Our great Judge Jeanine Pirro is out with a new book, “Liars, Leakers and Liberals, the Case Against the Anti-Trump… https://t.co/KEtrpg2Ijp" +06/22/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Don’t worry, the Republicans, and your President, will fix it! https://t.co/xsbuPzXbHj" +06/21/2018,Politicians,@realDonaldTrump,You cannot pass legislation on immigration whether it be for safety and security or any other reason including “hea… https://t.co/CxdDZUWyDy +06/21/2018,Politicians,@realDonaldTrump,We have to maintain strong borders or we will no longer have a country that we can be proud of – and if we show any… https://t.co/sjgqAjFi7m +06/21/2018,Politicians,@realDonaldTrump,"“I REALLY DON’T CARE, DO U?” written on the back of Melania’s jacket, refers to the Fake News Media. Melania has le… https://t.co/sxYB9GYcmS" +06/21/2018,Politicians,@realDonaldTrump,Big Supreme Court win on internet sales tax - about time! Big victory for fairness and for our country. Great victo… https://t.co/wV2cxGtsWA +06/21/2018,Politicians,@realDonaldTrump,Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/21/2018,Politicians,@realDonaldTrump,I was thrilled to be back in Minnesota for a roundtable with hardworking American Patriots. Thank you! https://t.co/suoRN02zMq +06/21/2018,Politicians,@realDonaldTrump,"""The real big story that affects everybody in America is the success of @POTUS's TAX CUT package and what it's done… https://t.co/smOSnyG5af" +06/21/2018,Politicians,@realDonaldTrump,My Administration is acting swiftly to address the illegal immigration crisis on the Southern Border. Loopholes in… https://t.co/HKQoVS6NOC +06/21/2018,Politicians,@realDonaldTrump,"Democrats want open Borders, where anyone can come into our Country, and stay. This is Nancy Pelosi’s dream. It won’t happen!" +06/21/2018,Politicians,@realDonaldTrump,"Henry McMaster has done a great job as Governor of South Carolina. The state is BOOMING, with jobs and new industry… https://t.co/rqS2Ik8O4B" +06/21/2018,Politicians,@realDonaldTrump,"What is the purpose of the House doing good immigration bills when you need 9 votes by Democrats in the Senate, and… https://t.co/sCHOadpnrC" +06/21/2018,Politicians,@realDonaldTrump,Last night in Minnesota was incredible. What a crowd! +06/21/2018,Politicians,@realDonaldTrump,"I will be going the Columbia, South Carolina, on Monday night to do a campaign speech for one of my very early supp… https://t.co/LVP98f5jlC" +06/21/2018,Politicians,@realDonaldTrump,"The Border has been a big mess and problem for many years. At some point Schumer and Pelosi, who are weak on Crime… https://t.co/iqH0ztipty" +06/21/2018,Politicians,@realDonaldTrump,"We shouldn’t be hiring judges by the thousands, as our ridiculous immigration laws demand, we should be changing ou… https://t.co/X25UsJjKaq" +06/21/2018,Politicians,@realDonaldTrump,ALL-TIME RECORD OPTIMISM! https://t.co/ZTrfJY2afh +06/21/2018,Politicians,@realDonaldTrump,"Just returning from the Great State of Minnesota where we had an incredible rally with 9,000 people, and at least 1… https://t.co/eqhc4yqV5x" +06/21/2018,Politicians,@realDonaldTrump,"Thank you Duluth, Minnesota. Together, we are MAKING AMERICA GREAT AGAIN! https://t.co/G0hbbx6xAK" +06/20/2018,Politicians,@realDonaldTrump,"So sorry, people wanting to get into the already packed arena - I LOVE YOU ALL! https://t.co/PFvXrsvgkA" +06/20/2018,Politicians,@realDonaldTrump,"Just landed in Duluth, Minnesota. Two events planned - looking forward to them and being with @PeteStauber and his wonderful family!" +06/20/2018,Politicians,@realDonaldTrump,"Don’t worry, the Republicans, and your President, will fix it! https://t.co/xsbuPzXbHj" +06/20/2018,Politicians,@realDonaldTrump,Look what Fake ABC News put out. I guess they had it prepared from the 13 Angry Democrats leading the Witch Hunt!… https://t.co/v4AYIQ7r2b +06/20/2018,Politicians,@realDonaldTrump,Had a great meeting with the House GOP last night at the Capitol. They applauded and laughed loudly when I mentione… https://t.co/O0s8sDXYxE +06/20/2018,Politicians,@realDonaldTrump,https://t.co/yfwdyUHmn3 +06/20/2018,Politicians,@realDonaldTrump,More records! #MAGA https://t.co/2CP5eq40Fy +06/20/2018,Politicians,@realDonaldTrump,"RT @PastorDScott: Once the mid terms are over, liberals won’t talk about detained or separated illegal immigrant children until 2020. #itsa…" +06/20/2018,Politicians,@realDonaldTrump,"RT @GlobalGolfPost: The golf world has lost a legend in five-time Open Championship winner Peter Thomson. + +READ: https://t.co/TfMHo2GeDG h…" +06/20/2018,Politicians,@realDonaldTrump,"“FBI texts have revealed anti-Trump Bias.” @FoxNews Big News, but the Fake News doesn’t want to cover. Total corru… https://t.co/tpRbo2iB09" +06/20/2018,Politicians,@realDonaldTrump,RT @EricTrump: It is hard to believe that the historic North Korea / Kim Jong Un summit was exactly one week ago. Truly amazing to see the… +06/20/2018,Politicians,@realDonaldTrump,"It’s the Democrats fault, they won’t give us the votes needed to pass good immigration legislation. They want open… https://t.co/P4YieZ06fO" +06/20/2018,Politicians,@realDonaldTrump,The Fake News is not mentioning the safety and security of our Country when talking about illegal immigration. Our… https://t.co/y2ky7PrZBi +06/20/2018,Politicians,@realDonaldTrump,THANK YOU @HouseGOP! https://t.co/scvACfJwts +06/20/2018,Politicians,@realDonaldTrump,"Earlier today, @FLOTUS Melania and I were honored to welcome King Felipe VI and Queen Letizia of Spain to the… https://t.co/7zRBKqtddB" +06/20/2018,Politicians,@realDonaldTrump,Homeland Security @SecNielsen did a fabulous job yesterday at the press conference explaining security at the borde… https://t.co/2tSM8kZz2W +06/19/2018,Politicians,@realDonaldTrump,I want to take a moment to address the current illegal immigration crisis on the Southern Border...it has been goin… https://t.co/TzmghX7msJ +06/19/2018,Politicians,@realDonaldTrump,THANK YOU @NFIB! #NFIB75 https://t.co/5ppZhQhZu0 +06/19/2018,Politicians,@realDonaldTrump,"Join me tomorrow in Duluth, Minnesota for a #MAGA Rally! Tickets: https://t.co/mhhJB8WQlF https://t.co/gP59o1RDqW" +06/19/2018,Politicians,@realDonaldTrump,#CHANGETHELAWS Now is the best opportunity ever for Congress to change the ridiculous and obsolete laws on immigr… https://t.co/UE55LlOUHz +06/19/2018,Politicians,@realDonaldTrump,"We must always arrest people coming into our Country illegally. Of the 12,000 children, 10,000 are being sent by th… https://t.co/binoy1gDOH" +06/19/2018,Politicians,@realDonaldTrump,"Democrats are the problem. They don’t care about crime and want illegal immigrants, no matter how bad they may be,… https://t.co/ASy1D9UXLy" +06/19/2018,Politicians,@realDonaldTrump,"If you don’t have Borders, you don’t have a Country!" +06/19/2018,Politicians,@realDonaldTrump,Crime in Germany is up 10% plus (officials do not want to report these crimes) since migrants were accepted. Others… https://t.co/TLFg6fg1tN +06/19/2018,Politicians,@realDonaldTrump,I can’t think of something more concerning than a law enforcement officer suggesting that their going to use their… https://t.co/77nLJKxgDK +06/18/2018,Politicians,@realDonaldTrump,Comey gave Strozk his marching orders. Mueller is Comey’s best friend. Witch Hunt! +06/18/2018,Politicians,@realDonaldTrump,If President Obama (who got nowhere with North Korea and would have had to go to war with many millions of people b… https://t.co/7Wv5rZ14pr +06/18/2018,Politicians,@realDonaldTrump,It is the Democrats fault for being weak and ineffective with Boarder Security and Crime. Tell them to start thinki… https://t.co/P1CiI0U73I +06/18/2018,Politicians,@realDonaldTrump,CHANGE THE LAWS! +06/18/2018,Politicians,@realDonaldTrump,Children are being used by some of the worst criminals on earth as a means to enter our country. Has anyone been lo… https://t.co/sGqEpBPIvg +06/18/2018,Politicians,@realDonaldTrump,We don’t want what is happening with immigration in Europe to happen with us! +06/18/2018,Politicians,@realDonaldTrump,The people of Germany are turning against their leadership as migration is rocking the already tenuous Berlin coali… https://t.co/lX81ySIvts +06/18/2018,Politicians,@realDonaldTrump,Why don’t the Democrats give us the votes to fix the world’s worst immigration laws? Where is the outcry for the ki… https://t.co/UxvDtVF6cS +06/18/2018,Politicians,@realDonaldTrump,"“The highest level of bias I’ve ever witnessed in any law enforcement officer.” Trey Gowdy on the FBI’s own, Peter… https://t.co/D6wt89HrI8" +06/18/2018,Politicians,@realDonaldTrump,The Democrats should get together with their Republican counterparts and work something out on Border Security & Sa… https://t.co/t5Ckwe94P0 +06/18/2018,Politicians,@realDonaldTrump,"Why was the FBI’s sick loser, Peter Strzok, working on the totally discredited Mueller team of 13 Angry & Conflicte… https://t.co/Nb5PYNpKyf" +06/18/2018,Politicians,@realDonaldTrump,"Why was the FBI giving so much information to the Fake News Media. They are not supposed to be doing that, and know… https://t.co/cQ4u1JFjTU" +06/17/2018,Politicians,@realDonaldTrump,RT @WhiteHouse: Happy Father's Day! https://t.co/1Legof68lb +06/17/2018,Politicians,@realDonaldTrump,"WITCH HUNT! There was no Russian Collusion. Oh, I see, there was no Russian Collusion, so now they look for obstruc… https://t.co/vCDJvDuts8" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: The IG Report totally destroys James Comey and all of his minions including the great lovers, Peter Strzok and Lisa Pa…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: My supporters are the smartest, strongest, most hard working and most loyal that we have seen in our countries history…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Democrats can fix their forced family breakup at the Border by working with Republicans on new legislation, for a chan…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: I’ve had to beat 17 very talented people including the Bush Dynasty, then I had to beat the Clinton Dynasty, and now I…" +06/17/2018,Politicians,@realDonaldTrump,Washington Post employees want to go on strike because Bezos isn’t paying them enough. I think a really long strike… https://t.co/9zg9ex7xXR +06/17/2018,Politicians,@realDonaldTrump,"Our economy is perhaps BETTER than it has ever been. Companies doing really well, and moving back to America, and j… https://t.co/v2og0NMSZE" +06/17/2018,Politicians,@realDonaldTrump,The denuclearization deal with North Korea is being praised and celebrated all over Asia. They are so happy! Over h… https://t.co/ItgX9x2DOh +06/17/2018,Politicians,@realDonaldTrump,Holding back the “war games” during the negotiations was my request because they are VERY EXPENSIVE and set a bad l… https://t.co/Jpmyv8PEEY +06/17/2018,Politicians,@realDonaldTrump,"Funny how the Fake News, in a coordinated effort with each other, likes to say I gave sooo much to North Korea beca… https://t.co/MkaFk6dPfe" +06/17/2018,Politicians,@realDonaldTrump,"Daniel Henninger of The Wall Street Journal: “This IG Report makes it clear, as did Rod Rosenstein’s memo, that Tru… https://t.co/cH9udZa09R" +06/17/2018,Politicians,@realDonaldTrump,Please clear up the Fake News! https://t.co/3VbIKbmKwP +06/17/2018,Politicians,@realDonaldTrump,"Chuck Schumer said “the Summit was what the Texans call all cattle and no hat.” Thank you Chuck, but are you sure y… https://t.co/E0NI3Jm9QY" +06/16/2018,Politicians,@realDonaldTrump,"RT @WhiteHouse: “Americans must demand their lawmakers support the legislation we need to defeat MS-13 once and for all, and to ensure ever…" +06/16/2018,Politicians,@realDonaldTrump,"The IG Report totally destroys James Comey and all of his minions including the great lovers, Peter Strzok and Lisa… https://t.co/eleiHw1wTj" +06/16/2018,Politicians,@realDonaldTrump,"My supporters are the smartest, strongest, most hard working and most loyal that we have seen in our countries hist… https://t.co/iBBBQ2L81B" +03/28/2008,Politicians,@HilaryClinton,@AblativMeatshld Hello +06/18/2018,Politicians,@BarackObama,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/12/2018,Politicians,@BarackObama,Congratulations to the @Capitals! This @NHLBlackhawks fan knows what it’s like to lift that cup – and I’m happy for… https://t.co/9LG5lxLQC7 +06/08/2018,Politicians,@BarackObama,"“Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us abo… https://t.co/l79o6OyNAT" +06/01/2018,Politicians,@BarackObama,"This National Gun Violence Awareness Day, show your commitment to keeping our kids safe from gun violence. Then, fo… https://t.co/Nr5qxK8sgu" +05/28/2018,Politicians,@BarackObama,"We can never truly repay the debt we owe our fallen heroes. But we can remember them, honor their sacrifice, and af… https://t.co/iHLhFdhoZQ" +05/23/2018,Politicians,@BarackObama,This Center is for the leaders of tomorrow who are ready to step up and build the world as it should be. Michelle a… https://t.co/XN7anzCTst +05/13/2018,Politicians,@BarackObama,"Happy Mother’s Day to every mom out there, especially the remarkable moms in my life, @MichelleObama and my mother-… https://t.co/QsZPuZ2OoJ" +05/08/2018,Politicians,@BarackObama,There are few issues more important to the security of the US than the potential spread of nuclear weapons or the p… https://t.co/ym4YTPpbWl +05/02/2018,Politicians,@BarackObama,RT @MichelleObama: Happy #CollegeSigningDay! So excited to be in Philly to celebrate all the young people making the commitment to higher e… +04/23/2018,Politicians,@BarackObama,"These talented young people will create a better future not just in Africa, but around the world. I can’t wait to s… https://t.co/0YgQxnOrz9" +04/18/2018,Politicians,@BarackObama,Our statement on the passing of Former First Lady Barbara Bush: https://t.co/MhTVYCL9Nj +04/16/2018,Politicians,@BarackObama,RT @ObamaFoundation: We just announced the inaugural class of #ObamaFellows. These 20 civic leaders have carried out inspiring work around… +04/04/2018,Politicians,@BarackObama,"RT @ObamaFoundation: This week—50 years since Dr. Martin Luther King, Jr. was killed—@BarackObama and @RepJohnLewis sat down with a group o…" +03/25/2018,Politicians,@BarackObama,Incredible to have a Chicago team in the Final Four. I’ll take that over an intact bracket any day! Congratulations… https://t.co/V9IbaSlbIp +03/24/2018,Politicians,@BarackObama,Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading… https://t.co/d0DTg594Cs +03/19/2018,Politicians,@BarackObama,Our most important task as a nation is to make sure all our young people can achieve their dreams. We’ve started th… https://t.co/gNw9ks6pMY +03/19/2018,Politicians,@BarackObama,"In Singapore with young people who are advocating for education, empowering young women, and getting involved all o… https://t.co/V5uHCeMWUa" +03/16/2018,Politicians,@BarackObama,41: I like the competition. And the loyalty to the home team. - 44 https://t.co/XG3ChMtW0M +03/15/2018,Politicians,@BarackObama,Congrats to @LoyolaChicago and Sister Jean for a last-second upset - I had faith in my pick! +03/14/2018,Politicians,@BarackObama,"Just because I have more time to watch games doesn’t mean my picks will be better, but here are my brackets this ye… https://t.co/gWpZwlceV3" +03/14/2018,Politicians,@BarackObama,Have fun out there among the stars. https://t.co/S285MTwGtp +03/12/2018,Politicians,@BarackObama,"Four years ago, @MichelleObama and I had the privilege to host Lt. Cmdr. Dan Cnossen and his fellow Paralympians an… https://t.co/kneWyU2Tu1" +02/28/2018,Politicians,@BarackObama,"I got my start holding community meetings in Chicago, so it was fun to be home for one tonight. Michelle and I want… https://t.co/1ammpZayJx" +02/22/2018,Politicians,@BarackObama,"Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless stu… https://t.co/wXO3wBtJ8V" +02/21/2018,Politicians,@BarackObama,"Billy Graham was a humble servant who prayed for so many - and who, with wisdom and grace, gave hope and guidance t… https://t.co/V8WtgIRPEB" +02/15/2018,Politicians,@BarackObama,We are grieving with Parkland. But we are not powerless. Caring for our kids is our first job. And until we can hon… https://t.co/LWGSkzRapH +02/14/2018,Politicians,@BarackObama,"Happy Valentine’s Day, @MichelleObama. You make every day and every place better. https://t.co/aWvyytR7Mm" +02/14/2018,Politicians,@BarackObama,"RT @MichelleObama: Happy #ValentinesDay to my one and only, @BarackObama. To celebrate the occasion, I’m dedicating a little Valentine’s Da…" +01/15/2018,Politicians,@BarackObama,"Dr. King was 26 when the Montgomery bus boycott began. He started small, rallying others who believed their efforts… https://t.co/N0zwBg7gTi" +12/29/2017,Politicians,@BarackObama,"All across America people chose to get involved, get engaged and stand up. Each of us can make a difference, and al… https://t.co/zxpKVnNeHZ" +12/29/2017,Politicians,@BarackObama,"Ten-year-old Jahkil Jackson is on a mission to help homeless people in Chicago. He created kits full of socks, toil… https://t.co/7mNk6dmnyC" +12/29/2017,Politicians,@BarackObama,"Chris Long gave his paychecks from the first six games of the NFL season to fund scholarships in Charlottesville, V… https://t.co/KxUk5Wle6h" +12/29/2017,Politicians,@BarackObama,"Kat Creech, a wedding planner in Houston, turned a postponed wedding into a volunteer opportunity for Hurricane Har… https://t.co/MCXiSuAVJN" +12/29/2017,Politicians,@BarackObama,"As we count down to the new year, we get to reflect and prepare for what’s ahead. For all the bad news that seemed… https://t.co/WaUHkVww2g" +12/27/2017,Politicians,@BarackObama,"RT @MBK_Alliance: I am my Brother’s Keeper. +Watch our new PSA with @BarackObama, @StephenCurry30 & @chancetherapper, then take action to s…" +12/25/2017,Politicians,@BarackObama,"On behalf of the Obama family, Merry Christmas! We wish you joy and peace this holiday season. https://t.co/CNFUZrhrBj" +12/14/2017,Politicians,@BarackObama,There's no better time than the holiday season to reach out and give back to our communities. Great to hear from yo… https://t.co/gp5dCy9oN2 +12/13/2017,Politicians,@BarackObama,"Happy Hanukkah, everybody, from the Obama family to yours. Chag Sameach!" +12/11/2017,Politicians,@BarackObama,Just got off a call to thank folks who are working hard to help more Americans across the country sign up for healt… https://t.co/A9QvCySWJ8 +12/04/2017,Politicians,@BarackObama,RT @ObamaFoundation: Watch: We hosted a Town Hall in New Delhi with @BarackObama and young leaders about how to drive change and make an im… +11/27/2017,Politicians,@BarackObama,Michelle and I are delighted to congratulate Prince Harry and Meghan Markle on their engagement. We wish you a life… https://t.co/KC9nmjZPuX +11/23/2017,Politicians,@BarackObama,"From the Obama family to yours, we wish you a Happy Thanksgiving full of joy and gratitude. https://t.co/xAvSQwjQkz" +11/20/2017,Politicians,@BarackObama,"ME: Joe, about halfway through the speech, I’m gonna wish you a happy birth-- +BIDEN: IT’S MY BIRTHDAY! +ME: Joe.… https://t.co/5qLUsDoaMi" +11/11/2017,Politicians,@BarackObama,"RT @ObamaFoundation: Today, we honor those who have honored our country with its highest form of service. https://t.co/IbJNCwIofL https://t…" +11/08/2017,Politicians,@BarackObama,This is what happens when the people vote. Congrats @RalphNortham and @PhilMurphyNJ . And congratulations to all th… https://t.co/ZvUKZIDGAj +11/07/2017,Politicians,@BarackObama,Every election matters - those who show up determine our future. Go vote tomorrow! https://t.co/j1wh8hLamw +11/06/2017,Politicians,@BarackObama,May God also grant all of us the wisdom to ask what concrete steps we can take to reduce the violence and weaponry in our midst. +11/06/2017,Politicians,@BarackObama,"We grieve with all the families in Sutherland Springs harmed by this act of hatred, and we’ll stand with the survivors as they recover..." +11/01/2017,Politicians,@BarackObama,"Starting today, you can sign up for 2018 health coverage. Head on over to https://t.co/ob1Ynoesod and find a plan t… https://t.co/6eN1Y5TQGV" +11/01/2017,Politicians,@BarackObama,Michelle and I are thinking of the victims of today's attack in NYC and everyone who keeps us safe. New Yorkers are as tough as they come. +10/30/2017,Politicians,@BarackObama,"Hello, #ObamaSummit! Thrilled to host civic leaders in Chicago from all over the world. Follow along at @ObamaFoundation." +10/23/2017,Politicians,@BarackObama,"I’ll let you and @ladygaga handle the singing, and we’ll handle the donations. There’s still time to give:… https://t.co/0NnaR3bozh" +10/22/2017,Politicians,@BarackObama,Tonight the ex-Presidents are getting together in Texas to support all our fellow Americans rebuilding from this ye… https://t.co/nFSou6JC6n +10/16/2017,Politicians,@BarackObama,"I'm grateful to @SenJohnMcCain for his lifetime of service to our country. Congratulations, John, on receiving this year's Liberty Medal." +10/02/2017,Politicians,@BarackObama,Michelle & I are praying for the victims in Las Vegas. Our thoughts are with their families & everyone enduring another senseless tragedy. +09/30/2017,Politicians,@BarackObama,Proud to cheer on Team USA at the Invictus Games today with my friend Joe. You represent the best of our country. https://t.co/WBzcltmgqj +09/26/2017,Politicians,@BarackObama,"We're expanding our efforts to help Puerto Rico & the USVI, where our fellow Americans need us right now. Join us a… https://t.co/gkrp1RwXR4" +09/25/2017,Politicians,@BarackObama,"Prosecutor, soldier, family man, citizen. Beau made us want to be better. What a legacy to leave. What a testament… https://t.co/XDtkLu32wd" +09/20/2017,Politicians,@BarackObama,RT @gatesfoundation: President @BarackObama addresses #Goalkeepers17 starting at 12:40 PM. Tune in here: https://t.co/XmHBErSHYw +09/20/2017,Politicians,@BarackObama,Thinking about our neighbors in Mexico and all our Mexican-American friends tonight. Cuidense mucho y un fuerte abrazo para todos. +09/18/2017,Politicians,@BarackObama,"Coding is important – and fun. @CSforAll, thanks for your work to make sure every kid can compete in a high-tech, g… https://t.co/xwlnvxsjKb" +09/13/2017,Politicians,@BarackObama,Michelle and I want the @ObamaFoundation to inspire and empower people to change the world. Here's how we're gettin… https://t.co/xY0UhBSvqp +09/11/2017,Politicians,@BarackObama,We remember everyone we lost on 9/11 and honor all who defend our country and our ideals. No act of terror will ever change who we are. +09/10/2017,Politicians,@BarackObama,"RT @GeorgeHWBush: Across the U.S., Americans have answered the call to help with hurricane recovery. Praying for all Floridians. #Irma http…" +09/08/2017,Politicians,@BarackObama,Proud of these McKinley Tech students—inspiring young minds that make me hopeful about our future. https://t.co/nqYC1mjjTB +09/07/2017,Politicians,@BarackObama,Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/05/2017,Politicians,@BarackObama,"To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co/TCxZdld7L4" +08/27/2017,Politicians,@BarackObama,Thank you to all the first responders and people helping each other out. That's what we do as Americans. Here's one… https://t.co/I3RHWyZe31 +08/17/2017,Politicians,@BarackObama,Michelle and I are thinking of the victims and their families in Barcelona. Americans will always stand with our Spanish friends. Un abrazo. +08/13/2017,Politicians,@BarackObama,"""...For love comes more naturally to the human heart than its opposite."" - Nelson Mandela" +08/13/2017,Politicians,@BarackObama,"""People must learn to hate, and if they can learn to hate, they can be taught to love...""" +08/13/2017,Politicians,@BarackObama,"""No one is born hating another person because of the color of his skin or his background or his religion..."" https://t.co/InZ58zkoAm" +07/20/2017,Politicians,@BarackObama,"John McCain is an American hero & one of the bravest fighters I've ever known. Cancer doesn't know what it's up against. Give it hell, John." +06/22/2017,Politicians,@BarackObama,Health care has always been about something bigger than politics: it's about the character of our country. https://t.co/UqLO14Hef7 +06/18/2017,Politicians,@BarackObama,"Of all that I've done in my life, I'm most proud to be Sasha and Malia's dad. To all those lucky enough to be a dad… https://t.co/XSqMhcSuvR" +06/02/2017,Politicians,@BarackObama,"On this National Gun Violence Awareness Day, let your voice be heard and show your commitment to reducing gun viole… https://t.co/S7dth6Ywb0" +05/29/2017,Politicians,@BarackObama,Forever grateful for the service and sacrifice of all who fought to protect our freedoms and defend this country we… https://t.co/BwRS0onlOL +05/27/2017,Politicians,@BarackObama,Good to see my friend Prince Harry in London to discuss the work of our foundations & offer condolences to victims… https://t.co/f1U8It8AmE +05/25/2017,Politicians,@BarackObama,"Through faith, love, and resolve the character of the people of Manchester has shown itself. Our thoughts & prayer… https://t.co/xyMer891Zo" +05/23/2017,Politicians,@BarackObama,Our hearts go out to those killed and wounded in Manchester. Americans will always stand shoulder to shoulder with the people of the UK. +05/22/2017,Politicians,@BarackObama,"Excited to hear from Sierra, Imani, Filiz, and Benedikt who are making a difference at home and abroad. See you in… https://t.co/bF1kB1GvxC" +05/14/2017,Politicians,@BarackObama,"Happy Mother's Day to my love and partner on this journey @MichelleObama, and to all the wonderful, hardworking mothers out there." +05/03/2017,Politicians,@BarackObama,"We're rolling up our sleeves again, back where it all started. Join us at https://t.co/GYkEOK8EuT. https://t.co/UlyvNrQvZR" +05/02/2017,Politicians,@BarackObama,"Well said, Jimmy. That's exactly why we fought so hard for the ACA, and why we need to protect it for kids like Bil… https://t.co/jB3LXT94Ok" +04/24/2017,Politicians,@BarackObama,RT @ObamaFoundation: It’s a beautiful day on the South Side. https://t.co/PtoaFbww0s +03/23/2017,Politicians,@BarackObama,My heart goes out to the victims and their families in London. No act of terror can shake the strength and resilience of our British ally. +03/19/2017,Politicians,@BarackObama,"Chuck Berry rolled over everyone who came before him – and turned up everyone who came after. We'll miss you, Chuck. Be good." +03/08/2017,Politicians,@BarackObama,"On International Women’s Day, @MichelleObama and I are inspired by all of you who embrace your power to drive chang… https://t.co/Er9mIQlmgr" +03/02/2017,Politicians,@BarackObama,RT @ObamaFoundation: Courage comes in many forms. Who in your local community or neighborhood leads by example? #ProfileInCourage https://t… +03/02/2017,Politicians,@BarackObama,Humbled to be recognized by a family with a legacy of service. Who's your #ProfileInCourage? Tell me about them:… https://t.co/25Ohhab8Xn +02/17/2017,Politicians,@BarackObama,We asked. You answered. https://t.co/mAJvko6VqR +02/14/2017,Politicians,@BarackObama,"Happy Valentine’s Day, @michelleobama! Almost 28 years with you, but it always feels new. https://t.co/O0UhJWoqGN" +01/22/2017,Politicians,@BarackObama,I read letters like these every single day. It was one of the best parts of the job – hearing from you. https://t.co/so1luBcszV +01/20/2017,Politicians,@BarackObama,RT @ObamaFoundation: Add your voice: https://t.co/mA9MSHmi7o https://t.co/Uf7oEvkZF3 +01/20/2017,Politicians,@BarackObama,"In the meantime, I want to hear what you're thinking about the road ahead. So share your ideas with me here: https://t.co/GYkEOK8EuT" +01/20/2017,Politicians,@BarackObama,"Hi everybody! Back to the original handle. Is this thing still on? Michelle and I are off on a quick vacation, then we’ll get back to work." +01/10/2017,Politicians,@BarackObama,"Tonight, President Obama reflects on eight years of progress. Watch the #FarewellAddress at 9 pm ET: https://t.co/ZnwTsg155B #ObamaFarewell" +11/05/2016,Politicians,@BarackObama,"RT @OFA: ""Thanks to the Affordable Care Act, your coverage is better today than it was before."" + +Watch the weekly address: https://t.co/Pfk…" +11/05/2016,Politicians,@BarackObama,"In the weekly address, President Obama discusses what #Obamacare has done to improve health care. https://t.co/VdQlyrSZhx" +11/04/2016,Politicians,@BarackObama,"Let's keep working to keep our economy on a better, stronger course. https://t.co/bV2BVjyj7a" +11/04/2016,Politicians,@BarackObama,The landmark #ParisAgreement enters into force today—we must keep up the momentum to #ActOnClimate. https://t.co/Cyw5Udaoro +11/04/2016,Politicians,@BarackObama,"The economy added 161,000 jobs in October, and wages are up 2.8 percent over the past year. https://t.co/pJxjgLnjCt #JobsReport" +11/03/2016,Politicians,@BarackObama,There are a lot of plans out there. Check your options and lock in the one that's best for you: https://t.co/buFY9ozDz4 #GetCovered +11/03/2016,Politicians,@BarackObama,"The positive impact of #Obamacare is undeniable, but there's one big factor holding many states back: https://t.co/7XebIdRX34" +11/03/2016,Politicians,@BarackObama,RT @POTUS: It happened: @Cubs win World Series. That's change even this South Sider can believe in. Want to come to the White House before… +11/02/2016,Politicians,@BarackObama,Tens of millions of Americans have benefited from #Obamacare. Make sure you're one of them. #GetCovered https://t.co/e1KoXcPtpU +11/02/2016,Politicians,@BarackObama,"Thanks to #Obamacare, quality health care is available to everyone. The marketplace is now open—make sure you and y… https://t.co/89gl6pzMGD" +11/02/2016,Politicians,@BarackObama,RT @lacasablanca: La típica Latina tarda 22 meses en ganar lo que un hombre blanco gana en 12 meses. Tenemos que cerrar la brecha salarial.… +11/01/2016,Politicians,@BarackObama,"RT @WhiteHouse: On #LatinaEqualPay Day, we mark the work that remains to ensure that all Americans receive equal pay for equal work. https:…" +11/01/2016,Politicians,@BarackObama,Community organizing never goes out of style. Shop now: https://t.co/LXEbQdKLLT https://t.co/E56ofoU36i +11/01/2016,Politicians,@BarackObama,"With #Obamacare, people can focus on treatment for pre-existing conditions without the fear of coverage being cappe… https://t.co/jvdFY87XBu" +11/01/2016,Politicians,@BarackObama,"The Obamacare marketplace is now open. If you're uninsured, now is the time to shop for a plan and #GetCovered.… https://t.co/Spjlga4eTT" +10/31/2016,Politicians,@BarackObama,RT @FLOTUS: Open enrollment starts tomorrow! Check out your options at https://t.co/dg57hwz5of and share your #GetCovered story. https://t.… +10/31/2016,Politicians,@BarackObama,Lions and Tiggers and bears! Oh my! #HappyHalloween https://t.co/iU4fjBhi0Y +10/31/2016,Politicians,@BarackObama,Usted y su familia merecen la tranquilidad de saber que están cubiertos. El mercado de seguros abre mañana. https://t.co/9iRCkLRGZD +10/31/2016,Politicians,@BarackObama,"Speak up in support of quality, affordable health care for all. https://t.co/rGsSguMxvj" +10/31/2016,Politicians,@BarackObama,There's nothing to be scared of when searching for health insurance. Three in four people can #GetCovered for less… https://t.co/BUmnRO9B3E +10/31/2016,Politicians,@BarackObama,Open enrollment begins tomorrow—make sure you and your loved ones #GetCovered. https://t.co/2aak7Bt0s3 +10/30/2016,Politicians,@BarackObama,"RT @OFA: Witch plan is best for you? Thanks to Obamacare, even pre-existing conditions can't stop you from comparing your options. #GetCove…" +10/28/2016,Politicians,@BarackObama,Senate leaders' obstruction of our Supreme Court nomination process is unacceptable. Say so: https://t.co/t3pYMO8Fp0 #DoYourJob +10/28/2016,Politicians,@BarackObama,Senate leaders should put the common good above politics—the integrity of our nation's highest court depends on it.… https://t.co/iRVCEl1pzf +10/27/2016,Politicians,@BarackObama,Don't ghost on your health and well-being—your chance to #GetCovered is coming up. Open enrollment starts November… https://t.co/qwNLazuPiz +10/27/2016,Politicians,@BarackObama,Climate change is happening now. Denial is dangerous. https://t.co/0Nlf8Fst4u +10/27/2016,Politicians,@BarackObama,"If you're willing to work hard and play by the rules, you should be able to get ahead. https://t.co/394hdJttgO" +10/27/2016,Politicians,@BarackObama,President Obama lays out just a few of the ways in which #Obamacare has helped millions of Americans. https://t.co/qeqHRLz0ID +10/27/2016,Politicians,@BarackObama,New report: Renewable energy installations are beating fossil fuel installations for the first time. https://t.co/MMhIdu4jzt #ActOnClimate +10/27/2016,Politicians,@BarackObama,Obamacare has helped millions of Americans gain the peace of mind that comes with coverage. Show your support: https://t.co/NfrG7DHL5C +10/26/2016,Politicians,@BarackObama,"This is what happens when we focus on building an economy that works for everyone, not just those at the top. https://t.co/op3Z74rPeI" +10/26/2016,Politicians,@BarackObama,"No one's too wrapped up in pre-existing conditions to #GetCovered. +Thanks to Obamacare, you can find a plan that m… https://t.co/C7H9TZdxeU" +10/26/2016,Politicians,@BarackObama,Help protect the progress we've made in helping millions of Americans get covered. Add your name now: https://t.co/HQSZKPl1eH +10/26/2016,Politicians,@BarackObama,DYK: Most people can find a plan for less than $75 per month. Open enrollment starts on November 1. #GetCovered https://t.co/9RGG5Pr4mb +10/25/2016,Politicians,@BarackObama,"Women, the sick, survivors—they all deserve fair treatment in our health care system. #Obamacare https://t.co/G948HN7pzV" +10/25/2016,Politicians,@BarackObama,Don't get tripped up by misinformation. Join the @OFA Truth Team today: https://t.co/wJZj1QCxXm https://t.co/vwwDgFHq6A +10/25/2016,Politicians,@BarackObama,"RT @SecBurwell: Most people shopping on @HealthCareGov will again find plans with premiums of less than $75/month, thanks to financial assi…" +10/25/2016,Politicians,@BarackObama,Be proud of the progress we've made together—wear the mark of this movement. https://t.co/fYf2O9WAwG https://t.co/1Z4yJmYh4E +10/24/2016,Politicians,@BarackObama,Strong policies that help working families get ahead are good for our economy. https://t.co/QRRhibjZCl +10/24/2016,Politicians,@BarackObama,The four-week average of jobless claims fell to the lowest level since 1973—a sign of a healthy labor market. https://t.co/Lv7DnRM2DY +10/24/2016,Politicians,@BarackObama,"Since 2010, America's uninsured rate has been cut in half. Help build on that progress—join Team #Obamacare today: https://t.co/MhIICuE17A" +10/24/2016,Politicians,@BarackObama,"RT @OFA: It's working. +It's saving lives. +And we're not going back. +Retweet to show your support. https://t.co/YOBeMMSYP8" +10/24/2016,Politicians,@BarackObama,"Health care is a right, not a privilege—and #Obamacare works to protect that right for millions of Americans. https://t.co/B7fO8rhggW" +10/21/2016,Politicians,@BarackObama,Don't get tripped up by misinformation. Join the @OFA Truth Team today: https://t.co/09BpA6F9Ne https://t.co/Nxgp87o4iq +10/21/2016,Politicians,@BarackObama,Being able to stay on a parent's plan enables millions of young adults to make choices about their future with the… https://t.co/1lSzxCHZVf +10/21/2016,Politicians,@BarackObama,"""Because of Obamacare, another 20 million Americans now know the financial security of health insurance."" https://t.co/eNd6J8bMxm" +10/20/2016,Politicians,@BarackObama,Stand up for the law that's helped 20 million more Americans gain health coverage. Join Team @Obamacare today: https://t.co/XiNXrgnPoF +10/20/2016,Politicians,@BarackObama,"There's still more work to do, but let's celebrate how far we've come. https://t.co/kUVWn68kJw" +10/20/2016,Politicians,@BarackObama,LIVE: President Obama is in Miami talking about the progress made possible by the Affordable Care Act. https://t.co/7FsQXut07O +10/20/2016,Politicians,@BarackObama,"RT @WhiteHouse: Each day, @POTUS reads 10 letters from Americans. Today, we're sharing some of the letters written about #ACA: https://t.co…" +10/20/2016,Politicians,@BarackObama,Tune in at 1:55 p.m. ET to watch President Obama speak about the successes of the Affordable Care Act. https://t.co/7FsQXut07O +10/20/2016,Politicians,@BarackObama,There's a lot of misinformation floating around. Make sure you've got the facts—join the @OFA Truth Team:… https://t.co/SpfRFK5LWq +10/19/2016,Politicians,@BarackObama,"From coast to coast, editorial boards are denouncing Senate obstructionism. Take a look: https://t.co/vqDr2bBiVr #DoYourJob" +10/19/2016,Politicians,@BarackObama,"Our Supreme Court has been short a justice for far too long. #DoYourJob, Senate leaders. https://t.co/yJlejtHjr0" +10/19/2016,Politicians,@BarackObama,"RT @SecBurwell: Today, 20M more Americans have coverage thanks to the #ACA. Our uninsured rate is the lowest in our nation’s history. Lowes…" +10/19/2016,Politicians,@BarackObama,The need for a ninth justice is undeniably clear. #DoYourJob https://t.co/L1EBgNbh3Q +10/18/2016,Politicians,@BarackObama,We can't afford to let this be the new normal. https://t.co/nJzyfz2Zlw #ActOnClimate +10/18/2016,Politicians,@BarackObama,Denying climate change is dangerous. Join @OFA supporters in standing up for bold action now: https://t.co/JZnvlb080l #ActOnClimate +10/18/2016,Politicians,@BarackObama,"Climate change is real, but so is the progress we're making to #ActOnClimate. Let's keep it up. https://t.co/GOFKXQblGJ" +10/18/2016,Politicians,@BarackObama,This is just the latest step forward in the push to #ActOnClimate. https://t.co/UDInkidKkP +10/17/2016,Politicians,@BarackObama,Read why @FLOTUS is fighting to ensure that girls everywhere have access to quality education. https://t.co/xleq3HHSZt #LetGirlsLearn +10/17/2016,Politicians,@BarackObama,"Wildfires in the next few decades could be ""unrecognizable"" to previous generations—because of climate change: https://t.co/vM3xM6mCf3" +10/17/2016,Politicians,@BarackObama,Senate leaders are blocking the Supreme Court nomination for their own political gain—don't be silent: https://t.co/OMdTVim0TC #DoYourJob +10/17/2016,Politicians,@BarackObama,"RT @WhiteHouse: ""Nobody should be priced out of a higher education."" —@POTUS on the progress we've made: https://t.co/4YohVv7Qea https://t.…" +10/17/2016,Politicians,@BarackObama,RT @WHLive: Watch as @POTUS speaks on the progress made to ensure every student has the opportunity to realize their potential: https://t.c… +10/17/2016,Politicians,@BarackObama,Senate leaders have recognized Judge Garland's impeccable credentials in the past. He deserves a fair hearing and a… https://t.co/w9bPtpSmm7 +10/14/2016,Politicians,@BarackObama,We need a fully functional Supreme Court. Editorial boards across the country agree: https://t.co/BkLrNaTtzN #DoYourJob +10/14/2016,Politicians,@BarackObama,The American Bar Association gave Judge Garland its highest rating. Senate leaders: #DoYourJob and fill the #SCOTUS… https://t.co/iTVTqGIUvV +10/14/2016,Politicians,@BarackObama,Denying climate change is dangerous. Join @OFA supporters in standing up for bold action now: https://t.co/7MDQGYgX2u #ActOnClimate +10/14/2016,Politicians,@BarackObama,"Cynics, take note: When we #ActOnClimate, we build a stronger future. https://t.co/wHHMdo2ro6" +10/13/2016,Politicians,@BarackObama,"""That’s how we will overcome the challenges we face: by unleashing the power of all of us for all of us."" Read more: https://t.co/VxpwLIR4uF" +10/13/2016,Politicians,@BarackObama,Check out the most recent editorial boards calling on Senate leaders to vote on Judge Garland: https://t.co/hzuhZYevfo #DoYourJob +10/13/2016,Politicians,@BarackObama,"Senate leaders have undercut the functionality of the Supreme Court, and that's unacceptable. #DoYourJob https://t.co/5HFXhgTMoP" +10/13/2016,Politicians,@BarackObama,Senate leaders' political games are handicapping the Supreme Court—and judgeships across the country. https://t.co/PhKOBKXLmS #DoYourJob +10/13/2016,Politicians,@BarackObama,"RT @WIRED: After eight years in office, @POTUS remains optimistic about the world's future. His essay as WIRED’s guest editor: https://t.co…" +10/12/2016,Politicians,@BarackObama,LIVE: President Obama is speaking at a reception celebrating #HispanicHeritageMonth. https://t.co/FK0ytbKw1q +10/12/2016,Politicians,@BarackObama,"RT @WhiteHouse: In honor of #HispanicHeritageMonth, we celebrate the progress that Hispanic Americans have made under @POTUS: https://t.co/…" +10/12/2016,Politicians,@BarackObama,Support the bold steps we're taking against climate change. Say you're ready to #ActOnClimate: https://t.co/EtwjaKgYFW +10/12/2016,Politicians,@BarackObama,"Last week, more than 190 countries reached a landmark deal to reduce carbon pollution from aviation. https://t.co/LRYkXVw3rO #ActOnClimate" +10/12/2016,Politicians,@BarackObama,Let's leave our children and grandchildren a planet that's healthier than the one we have today. #ActOnClimate https://t.co/mP29bpRdU9 +10/12/2016,Politicians,@BarackObama,Climate change's effects are devastating. Denying the science behind it does nothing to help. https://t.co/Rww40wwgD9 #ActOnClimate +10/11/2016,Politicians,@BarackObama,"""On behalf of Michelle and our family, G’mar Chatimah Tovah."" —President Obama #YomKippur" +10/11/2016,Politicians,@BarackObama,"""LGBT individuals deserve to know their country stands beside them."" —President Obama #NationalComingOutDay https://t.co/op7nBzbaod" +10/11/2016,Politicians,@BarackObama,The Supreme Court must remain above politics. Judge Garland needs a hearing and a vote. #DoYourJob https://t.co/eVSPSIFNpB +10/11/2016,Politicians,@BarackObama,Don't stand idly by while Senate leaders continue to block Judge Garland from a fair hearing and vote: https://t.co/TSavHP3mHg #DoYourJob +10/11/2016,Politicians,@BarackObama,"Judge Garland is just as qualified now as he was in 1997, Senate leaders. It's time to #DoYourJob. https://t.co/j1lEkdMYV6" +10/11/2016,Politicians,@BarackObama,Dispel misinformation with facts from the @OFA Truth Team. https://t.co/zjexLUJXAC +10/07/2016,Politicians,@BarackObama,"The uninsured rate is the lowest it's been in decades, thanks to #Obamacare. Spread the word.… https://t.co/ZkN8HVbn3E" +10/07/2016,Politicians,@BarackObama,Deadline tonight—help rein in payday lenders that succeed by targeting vulnerable Americans: https://t.co/7OlpH6OFek #StopTheDebtTrap +10/07/2016,Politicians,@BarackObama,The Obama administration and @CFPB are working to protect consumers and #StopTheDebtTrap. https://t.co/UMO01OUkdh +10/07/2016,Politicians,@BarackObama,"Our economy is on a better, stronger course. https://t.co/yzB6x7CExJ" +10/07/2016,Politicians,@BarackObama,The economic progress we've made is undeniable—let's keep it up. https://t.co/gAlfaC1hkI +10/07/2016,Politicians,@BarackObama,Check out President Obama's essay in @TheEconomist on the unique challenges the American economy faces. https://t.co/jKJNCrQALL +10/07/2016,Politicians,@BarackObama,"The economy added 156,000 jobs in September—extending the longest streak of total job growth on record." +10/06/2016,Politicians,@BarackObama,ICYMI: Read about the historic #ParisAgreement and what it means for the fight to #ActOnClimate. https://t.co/eMefgFZk53 +10/06/2016,Politicians,@BarackObama,"RT @WhiteHouse: This is #SXSL: The White House festival of ideas, art, and action. Take a peek inside: https://t.co/BbvvMEaQTF https://t.co…" +10/06/2016,Politicians,@BarackObama,The cost of clean energy technology dropped significantly over the last eight years. Get the chart: https://t.co/fuGQMXeRYb #ActOnClimate +10/05/2016,Politicians,@BarackObama,This historic step in the fight to #ActOnClimate came faster than anyone predicted. https://t.co/W2rtcNXkI7 +10/05/2016,Politicians,@BarackObama,"""Today is a historic day in the fight to protect our planet for future generations."" —President Obama #ActOnClimate https://t.co/x3dJSCYUcj" +10/05/2016,Politicians,@BarackObama,LIVE: President Obama is delivering a statement on the Paris Climate Agreement. https://t.co/mNpQ6QyA91 +10/05/2016,Politicians,@BarackObama,Read from @NYTopinion about why filling the Supreme Court vacancy is crucial for our democracy: https://t.co/zuSWzxSaqW #DoYourJob +10/04/2016,Politicians,@BarackObama,Enough is enough. Say it's time for Senate leaders to get to work: https://t.co/2M789YIcBk #DoYourJob +10/04/2016,Politicians,@BarackObama,"""Everybody cares about their kids, their grandkids, and the kind of world we pass on to them."" —President Obama https://t.co/cfxpSBNWIU" +07/01/2018,Politicians,@BillClinton,Thanks for having us! We loved being on @amazon’s campus. https://t.co/ZxlmQdjNRD +06/25/2018,Politicians,@BillClinton,Going up to Maine and spending time with you is one of my favorite times of the year. Happy to see you. https://t.co/FQTTU7niV9 +06/21/2018,Politicians,@BillClinton,"RT @ChelseaClinton: Grateful for the opportunity to help launch @2SmalltoFail’s newest #TalkingIsTeaching campaign today, in partnership wi…" +06/19/2018,Politicians,@BillClinton,Excited to hear that #ThePresidentIsMissing is officially a #1 New York Times Bestseller! Thank you to everyone who… https://t.co/ZbHSwhIMmx +06/17/2018,Politicians,@BillClinton,On this Father’s Day I’m thinking of the thousands of children separated from their parents at the border. These ch… https://t.co/bAy4F4cvOM +06/06/2018,Politicians,@BillClinton,I was honored to join the Kennedy family today at Arlington National Cemetery to celebrate the life of Robert F. Ke… https://t.co/FQd0a8QibB +06/05/2018,Politicians,@BillClinton,"RT @JP_Books: Hello New York! 🌇 + +I am signing #ThePresidentMissing at the 5th Ave @BNBuzz at 12:00pm with @BillClinton. Come get your copy…" +05/28/2018,Politicians,@BillClinton,"Remembering, honoring, and thanking all who served our great country. #MemorialDay2018" +05/24/2018,Politicians,@BillClinton,"At the @ClintonFdn, we're changing lives across the United States and around the world. I'm proud to share this upd… https://t.co/fi0Bf8ktK0" +05/23/2018,Politicians,@BillClinton,"RT @HillaryClinton: Just spent a great evening with two of my favorite authors discussing their new book, The President is Missing. It’s a…" +05/16/2018,Politicians,@BillClinton,"Join James Patterson and me as we travel across the country to talk about our new thriller, The President is Missin… https://t.co/oa7qUXe85z" +05/14/2018,Politicians,@BillClinton,James Patterson (@JP_Books) and I think we’ve come up with three of the most frightening days in the history of the… https://t.co/sZbkbS6cUj +05/07/2018,Politicians,@BillClinton,"On his last day in office, I am grateful to @MayorLandrieu for his leadership these past 8 years as mayor of New Or… https://t.co/1tWCOjpzHs" +05/06/2018,Politicians,@BillClinton,Honored to have joined the Advisory Council for Bosnia Herzegovina to reflect on how we came together to end war th… https://t.co/7NrtfiWEDz +04/28/2018,Politicians,@BillClinton,"RT @ClintonFdn: We're partnering to offer colleges 40K doses of #naloxone, a lifesaving drug that can reverse opioid overdose. https://t.co…" +04/23/2018,Politicians,@BillClinton,Want to meet me and James Patterson (@JP_Books) in person? Here’s a chance for you and a guest to join us at one of… https://t.co/opuoqVlPxE +04/22/2018,Politicians,@BillClinton,"This #EarthDay, I join in celebrating efforts by young people, socially-responsible businesspeople, local & nationa… https://t.co/VceNifW5aj" +04/20/2018,Politicians,@BillClinton,"If you know a young leader with big ideas, I hope you’ll encourage them to join us at @CGIU 2018 this fall:… https://t.co/aV1ezdKS8s" +04/19/2018,Politicians,@BillClinton,"Coach Popovich - I join the NBA family and countless fans across the country who are thinking of you, Jill, and Mic… https://t.co/6VahY0xX9s" +04/17/2018,Politicians,@BillClinton,"Barbara Bush was a remarkable woman. She had grit & grace, brains & beauty. She was fierce & feisty in support of h… https://t.co/0kyGOCt32Y" +04/15/2018,Politicians,@BillClinton,"This #JackieRobinsonDay, I join in celebrating his legendary life and career—and his vision for a more inclusive Am… https://t.co/3L4bbBqgHH" +04/15/2018,Politicians,@BillClinton,RT @PLSprogram: Mrs. Bush inspired 2018 Scholars and staff during our time in College Station last month. We are keeping her and the entire… +04/10/2018,Politicians,@BillClinton,"Twenty years ago today, the Good Friday Agreement, in Seamus Heaney’s words, “cleared a space for the miraculous.”… https://t.co/QTxIxAWiuR" +04/05/2018,Politicians,@BillClinton,"What an incredible accomplishment, Micheal. Follow your heart and your head, your future is incredibly bright. I ca… https://t.co/E5AvD21FG2" +04/04/2018,Politicians,@BillClinton,Fifty years after his death Dr. King’s work lives on—reminding us all that on this hallowed day we should celebrate… https://t.co/2aaMwLFy49 +04/03/2018,Politicians,@BillClinton,"Tune in now as we turn #IdeasIntoAction in support of the people of Puerto Rico, the U.S. Virgin Islands, and the C… https://t.co/L5ykeOJgmG" +04/01/2018,Politicians,@BillClinton,RT @KevinThurm: A terrific collaboration by two members of the @ClintonGlobal community uses recycled material from Haiti to create new job… +03/25/2018,Politicians,@BillClinton,"Rest in peace, Michael Davidson, a 15-year veteran of the @FDNY. My prayers are with his wife Eileen and their 4 ch… https://t.co/sm74TPwPSR" +03/24/2018,Politicians,@BillClinton,"Led by inspiring, determined students of Stoneman Douglas High School, today we saw hundreds of thousands across Am… https://t.co/cgdiCg8yT4" +03/23/2018,Politicians,@BillClinton,America owes its gratitude to the students of Stoneman Douglas and their peers across the country who have joined t… https://t.co/XzJpsyINB9 +03/21/2018,Politicians,@BillClinton,"Pete Peterson was a brilliant businessman, principled public servant, committed philanthropist, great friend and pr… https://t.co/ISzXe2lrfY" +03/16/2018,Politicians,@BillClinton,Hillary and I loved and admired Louise Slaughter: https://t.co/u992GZryXL +03/15/2018,Politicians,@BillClinton,"Today, the war in Syria—already one of the worst crises of our time—enters its 7th year, with thousands of children… https://t.co/W0nwwmZWNP" +03/13/2018,Politicians,@BillClinton,"Congratulations on the great news, @TigerWoods. You and @TheBig_Easy will make fantastic captains for the… https://t.co/ckPDwldUWj" +03/09/2018,Politicians,@BillClinton,Can’t wait to meet them at the @ClintonCenter in Little Rock! https://t.co/TI2dUipCvb +03/06/2018,Politicians,@BillClinton,What a deeply meaningful way to carry on his efforts to help kids. https://t.co/H4lg7i6wE7 +02/26/2018,Politicians,@BillClinton,A big congrats to @ChefJoseAndres on a well-deserved honor. José’s tireless work in Haiti and Puerto Rico with… https://t.co/MA1fmmqibP +02/24/2018,Politicians,@BillClinton,"I loved this story! Mr. Lewis, why don’t you come by the @ClintonCenter and I’ll treat you, Karmen, and your co-wor… https://t.co/Fzc4HPOoe5" +02/21/2018,Politicians,@BillClinton,"Billy Graham lived his faith fully, and his powerful words and the conviction they carried touched countless hearts… https://t.co/UWlyt6J8zW" +02/16/2018,Politicians,@BillClinton,Congratulations to the people of Kosovo on the 10th anniversary of their independence. https://t.co/NVIcagsD4t +02/15/2018,Politicians,@BillClinton,Ron’s right. Courage and conviction led to an assault weapons ban once before. Let’s do it again. https://t.co/pG6bj6zzol +02/15/2018,Politicians,@BillClinton,"In so many industries, doing the right thing for customers is helping, not hurting, the bottom line. https://t.co/HLci9Hn59x" +02/15/2018,Politicians,@BillClinton,She’s right. https://t.co/A9DF8UEAsu +02/05/2018,Politicians,@BillClinton,Follow along on my day in the USVI: https://t.co/FYMRH4FTKU +02/05/2018,Politicians,@BillClinton,"On the 25th anniversary of the Family and Medical Leave Act, a reminder the job’s not done: https://t.co/I8yB5iiWse" +01/30/2018,Politicians,@BillClinton,I'm very excited to meet our incoming class! The #PLScholars program has given me the opportunity to meet so many f… https://t.co/2YJDqUeSl3 +01/24/2018,Politicians,@BillClinton,"Thank you, America. https://t.co/79EQeP4nJM" +01/15/2018,Politicians,@BillClinton,RT @KingJames: -Injustice Anywhere Is A Threat To Justice Everywhere- Our Lives Begin To End The Day We Become Silent About Things That Ma… +01/15/2018,Politicians,@BillClinton,"RT @BerniceKing: Today, we commemorate my father’s 89th birthday. Beyond sharing #MLK quotes, I pray that our global community, from educat…" +01/15/2018,Politicians,@BillClinton,"50 years after Dr. King's last birthday, it's up to all of us to keep his Dream of a Beloved Community alive: don't… https://t.co/JpzJqqdQl7" +01/13/2018,Politicians,@BillClinton,No Clinton Foundation funds—dedicated to Haiti or otherwise—were used to pay for Chelsea’s wedding. It’s not only u… https://t.co/djxbyo0SDo +01/12/2018,Politicians,@BillClinton,"I’ve traveled and worked in Haiti, and across Africa and Central America. The countries the president described wit… https://t.co/P5ro8z1BUC" +01/09/2018,Politicians,@BillClinton,A free press is critical to a free society—the detention of journalists anywhere is unacceptable. The Reuters journ… https://t.co/fMa0e4v5Ix +12/30/2017,Politicians,@BillClinton,RIP Sue Grafton. Hillary and I loved all your novels from “A is for Alibi” to “Y is for Yesterday.” We’ll miss Kinsey and you. Godspeed. +12/30/2017,Politicians,@BillClinton,"The @ClintonFdn's programs are helping people improve their lives. Together, we can help more people and improve ev… https://t.co/J283jpC9mI" +12/27/2017,Politicians,@BillClinton,"Words to live by, from Coach Pop. https://t.co/fOioFMtSO1" +12/27/2017,Politicians,@BillClinton,"Some wise lessons from @Eric_OGrey: + +• Small interventions and taking the first step can make a big difference in i… https://t.co/ffIYEFICGV" +12/19/2017,Politicians,@BillClinton,You know you’ve earned being called the #Mamba when you get two jerseys retired! Congratulations on a storied caree… https://t.co/4ECjmQhPku +12/14/2017,Politicians,@BillClinton,"Five years after the devastating attack on teachers and children in Sandy Hook, we mourn them and remember them. Am… https://t.co/OY2P5lXJCl" +12/13/2017,Politicians,@BillClinton,"Saddened by the loss of my friend, Mayor Ed Lee. I’ll always be grateful for his leadership and his steadfast suppo… https://t.co/XNWqujyFmF" +12/13/2017,Politicians,@BillClinton,"Congratulations, Doug Jones. You were a great US Attorney, and you ran a terrific campaign. You deserve this win. I… https://t.co/NSfv16OTwx" +12/11/2017,Politicians,@BillClinton,"There are only 4 days left to sign up for healthcare under the Affordable Care Act for 2018, so don’t wait. Visit… https://t.co/Wtgfq2aRMN" +12/01/2017,Politicians,@BillClinton,It was important to sign the legislation designating the National AIDS Memorial Grove in 1996. Great strides have b… https://t.co/Zz9TobYn8o +11/28/2017,Politicians,@BillClinton,"RT @ClintonFdn: This #GivingTuesday, see how Pres. @BillClinton & the @ClintonFdn are giving back to help Puerto Rico recover. More: https:…" +11/21/2017,Politicians,@BillClinton,People in Puerto Rico and the U.S. Virgin Islands still need help. I’m grateful for the relief organizations who ar… https://t.co/mT10XQJxqC +11/18/2017,Politicians,@BillClinton,"Tonight, @HillaryClinton and I will join our friend @JamesCarville for a look back at the '92 campaign—25 years lat… https://t.co/m7ipByWi6Q" +11/11/2017,Politicians,@BillClinton,"To our veterans and their families, today and every day: Thank You." +11/09/2017,Politicians,@BillClinton,Great having @ConanOBrien in Harlem at the @ApolloTheatre to talk about how @ClintonFdn is combating the #opioid cr… https://t.co/COv5fNDQFh +11/08/2017,Politicians,@BillClinton,"These commitments by solar companies and relief organizations, in partnership with @ClintonFdn, will help many Amer… https://t.co/OnzwZiVJKR" +11/07/2017,Politicians,@BillClinton,Don't spend tomorrow sitting around wondering why more people didn’t turn out to vote. Democracy takes work. Our job today is to VOTE. +11/03/2017,Politicians,@BillClinton,"RT @algore: @BillClinton Thanks, @BillClinton. It was a privilege to serve our nation with you for those 8 yrs. Along with our team, we wer…" +11/03/2017,Politicians,@BillClinton,"Waking up this morning grateful for being elected 25 years ago today, alongside my friend @AlGore. Honored to have served our great country." +10/31/2017,Politicians,@BillClinton,New Yorkers see this attack for what it is—an attempt to sow fear. We stand against terror as we grieve for the victims and thank the @NYPD. +10/30/2017,Politicians,@BillClinton,The opioid crisis affects us all. I hope you'll tune in for an important discussion on solutions at @JohnsHopkinSPH: https://t.co/S3zIxcvrgv +10/27/2017,Politicians,@BillClinton,RT @ClintonFdn: The airlift will help people in need in Puerto Rico. To support @DirectRelief visit: https://t.co/BdSyTqdg1E +10/26/2017,Politicians,@BillClinton,"70 has never looked so beautiful. Happy birthday, @hillaryclinton!" +10/21/2017,Politicians,@BillClinton,"Tonight, we're coming together for an unforgettable event helping storm victims begin to heal. Tune in:… https://t.co/DGPCEv5bD1" +10/21/2017,Politicians,@BillClinton,"As Americans, we lift each other up. I’m proud to be a part of this night. Hope you’ll tune in.… https://t.co/xqIh52Qusi" +10/17/2017,Politicians,@BillClinton,"Congratulations to @SenJohnMcCain, recipient of #LibertyMedal from the @ConstitutionCtr. He is a true American hero." +10/16/2017,Politicians,@BillClinton,"Our hearts are with our friends in California, who have lost so many and so much in the devastating fires." +10/14/2017,Politicians,@BillClinton,"Looking forward to an interesting conversation with @RepJoeKennedy, @ChelseaClinton, & 1,000+ students at #CGIU2017. https://t.co/M9K7pwyATY" +10/13/2017,Politicians,@BillClinton,"Each year, I'm inspired by the young leaders who participate in @CGIU. I hope you'll tune in: https://t.co/M9K7pwyATY #CGIU2017" +10/04/2017,Politicians,@BillClinton,.@StephenAtHome: the awkward years—big dreams & even bigger hair. Thank you for helping those in need.… https://t.co/mCV4P7y66i +10/02/2017,Politicians,@BillClinton,Thinking of the victims and responders in Las Vegas. This should be unimaginable in America. +10/01/2017,Politicians,@BillClinton,Congratulations Team USA on a strong #PresidentsCup victory! Always a treat to watch the best play the best. +10/01/2017,Politicians,@BillClinton,"Many happy returns, Mr. President! #39turns93 https://t.co/drgKoxwYY3" +09/25/2017,Politicians,@BillClinton,Our fellow Americans in Puerto Rico and the US Virgin Islands are in peril. They need our help now. +09/20/2017,Politicians,@BillClinton,We are keeping our friends and neighbors in Mexico and the Caribbean foremost in our thoughts now and in the difficult days ahead. +09/15/2017,Politicians,@BillClinton,"Farewell @CassiniSaturn. Twenty years since you launched, and you've brought us a universe of understanding. https://t.co/eCnjm6Uecm" +09/12/2017,Politicians,@BillClinton,"In standing up for herself, Edie also stood up for millions of Americans and their rights. May she rest in peace. https://t.co/9nNazdmnPP" +09/11/2017,Politicians,@BillClinton,"We are united in remembering those we lost, their families, and the heroic first responders in NY, VA, PA, and across America. #September11" +09/07/2017,Politicians,@BillClinton,Hurricane Harvey shattered homes and lives. Irma is just as dangerous. Americans lift each other up. Join us to hel… https://t.co/WqhUglmkpu +09/06/2017,Politicians,@BillClinton,These young people's dreams are part of the American Dream. And they make it more real for all of us. https://t.co/kVXyg0p85G +09/04/2017,Politicians,@BillClinton,America works because of all the men and women we honor today. #HappyLaborDay +08/30/2017,Politicians,@BillClinton,"So many great organizations are helping. Our family has donated to three of them: @TeamRubicon, @DirectRelief, and @TXDIAPERBANK." +08/30/2017,Politicians,@BillClinton,Our thoughts and prayers continue to be with all of the people affected by Hurricane Harvey and with those helping them. +08/29/2017,Politicians,@BillClinton,RT @ClintonFdn: Our thoughts are with those affected by #HurricaneHarvey. Here are a few ways you can support. <thread> https://t.co/Z9LTuL… +08/27/2017,Politicians,@BillClinton,"RT @HillaryClinton: As we keep everyone affected by Hurricane Harvey in our thoughts, here’s how you can help: +https://t.co/RVReG1lRAd" +08/17/2017,Politicians,@BillClinton,Standing with and grieving for the people of Barcelona in the wake of this despicable terror attack. +08/12/2017,Politicians,@BillClinton,"Even as we protect free speech and assembly, we must condemn hatred, violence and white supremacy. #Charlottesville" +08/11/2017,Politicians,@BillClinton,Proud and grateful. https://t.co/35u6IOJ2D2 +08/09/2017,Politicians,@BillClinton,There are few things I enjoy more than reading a good book. Here are a few I’ve read and recommend: https://t.co/maukY59SNE #BookLoversDay +08/09/2017,Politicians,@BillClinton,Glen Campbell was an iconic American artist & fellow Arkansan. His legacy will be his great talent & how he decided to live with Alzheimers. +08/08/2017,Politicians,@BillClinton,Standing with the Kenyan people who exercised their democratic right to vote. Hoping for a fair & credible process & peace in coming days. +08/07/2017,Politicians,@BillClinton,Proud of the work we’ve done—and continue to do every day—here and around the world. https://t.co/kSMm2JFfSn +08/07/2017,Politicians,@BillClinton,Mark White was governor of Texas while I served in Arkansas. He was a good man and a terrific leader on public education. He'll be missed. +08/04/2017,Politicians,@BillClinton,Happy Birthday @BarackObama! Hope you get some balloons. I love a good balloon. #HBD44 +07/20/2017,Politicians,@BillClinton,"As he’s shown his entire life, don’t bet against John McCain. Best wishes to him for a swift recovery." +07/18/2017,Politicians,@BillClinton,"RT @ClintonCenter: @FreedomCenter From humble beginnings to first post-Apartheid President—""Mandela"" tells of a man prepared to die in the…" +07/18/2017,Politicians,@BillClinton,The continent of Africa is full of extraordinary cultures and people. I’m proud to bring these two exhibits to the… https://t.co/ksfvgJ4ySt +07/18/2017,Politicians,@BillClinton,"Remembering my friend on #MandelaDay—his life is an ongoing inspiration to all who treasure freedom, peace, and rec… https://t.co/an3nb3HvQf" +07/15/2017,Politicians,@BillClinton,"Can't keep a good man down! Welcome back, #39. https://t.co/axnBBMihHX" +07/14/2017,Politicians,@BillClinton,Note: Not to scale. https://t.co/fTY9L401uc +07/14/2017,Politicians,@BillClinton,Thinking of Jimmy Carter today. He was working hard helping others through Habitat. I wish him a speedy recovery. +07/13/2017,Politicians,@BillClinton,Looking forward to joining President George W. Bush at the 2017 @PLSProgram graduation ceremony: https://t.co/fp6e48ugav +07/09/2017,Politicians,@BillClinton,I'm happy to see Leopoldo Lopez was reunited with his family. He and other political prisoners in Venezuela deserve their freedom. +07/04/2017,Politicians,@BillClinton,What we celebrate today is not just the birth of a nation but the ideals that built and sustain a democracy. Happy 4th of July! +06/28/2017,Politicians,@BillClinton,@Kiva This is a big deal! Congrats to @Kiva for helping make so many good things happen all over the world. +06/16/2017,Politicians,@BillClinton,Helmut Kohl’s visionary leadership prepared Germany and all of Europe for the 21st century. https://t.co/ltdamqIgt5 +06/16/2017,Politicians,@BillClinton,The @ClintonSchool is adding the first online Master of Public Service degree. This is a big deal! https://t.co/omsUnwJo0K +06/15/2017,Politicians,@BillClinton,"RT @ClintonFdn: Together, we’re changing the world. Donate today & President @BillClinton will double your impact https://t.co/CmLYWgZsaI h…" +06/12/2017,Politicians,@BillClinton,Nothing beats a 93rd birthday phone call with the remarkable @GeorgeHWBush. Many happy returns #41! +06/12/2017,Politicians,@BillClinton,"Our work at the Clinton Foundation is a reminder that when people come together to solve problems, good things can… https://t.co/YQ4Hl8JPJB" +06/01/2017,Politicians,@BillClinton,Walking away from Paris treaty is a mistake. Climate change is real. We owe our children more. Protecting our future also creates more jobs. +06/01/2017,Politicians,@BillClinton,Great tribute to Willie Mays the other night—Hank Aaron told me Willie was the best he’d ever played with. #SayHey https://t.co/ZYwkhFS3nj +06/01/2017,Politicians,@BillClinton,RT @ClintonFdn: Join a life-long network of change-makers. Apply for the 2018 class of Presidential Leadership Scholars: https://t.co/iopxA… +06/01/2017,Politicians,@BillClinton,"After reading this speech, I feel better about our future. Bravo @hamdiulukaya for an inspiring message of hope. Ev… https://t.co/lCwwpkR6xP" +05/30/2017,Politicians,@BillClinton,RT @MinassianMedia: New from the Arkansas Democrat-Gazette: how @ClintonFdn is helping police departments save lives. https://t.co/pphyZd6Z… +05/29/2017,Politicians,@BillClinton,AmeriCorps grew out of the Peace Corps’ infectious loyalty—a big part of JFK’s legacy. He knew what happens in the… https://t.co/42SF21ghqP +05/29/2017,Politicians,@BillClinton,"JFK’s legacy includes his belief in peace for everyone on earth. Our differences are interesting, our common humanity matters more. #JFK100" +05/29/2017,Politicians,@BillClinton,Today—and every day—we remember the sacrifices of the fallen and thank them for all they made possible. +05/26/2017,Politicians,@BillClinton,What a great speech. @HillaryClinton will never stop believing in—and fighting for—truth and reason. https://t.co/nSTxVsnYKt +05/24/2017,Politicians,@BillClinton,Congratulations to Dr. Tedros—the work of the WHO is now more important than ever. https://t.co/oojIwjIsvr +05/23/2017,Politicians,@BillClinton,Senseless & vicious acts of terror will never drive us apart and will always be met with strength. Praying for the victims in Manchester. +05/20/2017,Politicians,@BillClinton,"This weekend is @HarlemEatUp festival, celebrating Harlem food, culture, and spirit. Congratulations on the 3rd year! #HarlemEatUp" +05/14/2017,Politicians,@BillClinton,Happy Mother's Day to two special mothers in my life - @HillaryClinton and @ChelseaClinton - and all mothers here and gone. +05/12/2017,Politicians,@BillClinton,"Hey @NYTimesWordplay, hope you all enjoy the puzzle! https://t.co/H5WJS3KWWA" +05/10/2017,Politicians,@BillClinton,RT @CGIU: TODAY is the LAST DAY to apply for #CGIU2017! Don’t procrastinate – apply now: https://t.co/tdVGoNvhaX https://t.co/iCZWhqBf0u +05/09/2017,Politicians,@BillClinton,Great piece by @HowellWechsler on how business sector partnerships can have a profound impact on children's health: https://t.co/NQlSvQkLvU +05/07/2017,Politicians,@BillClinton,Congratulations to President-elect @EmmanuelMacron and the French people. +04/23/2017,Politicians,@BillClinton,BREAKING: We just learned that the @ClintonCenter has been bugged. https://t.co/4Or6lrnRPN +04/22/2017,Politicians,@BillClinton,"RT @ClintonFdn: This #EarthDay, see how we're turning ideas into action for a greener 🌎 → https://t.co/bHQDKeelSI https://t.co/6vtfqEh3R7" +04/19/2017,Politicians,@BillClinton,"OKC, for 22 years you have honored the memories of your loved ones & inspired us with the power of your renewal. #okcbombing #OklahomaStrong" +04/18/2017,Politicians,@BillClinton,The opioid crisis affects so many all across America—proud that @RyanForRecovery found help and is helping others. https://t.co/7DeeqIyEdk +04/18/2017,Politicians,@BillClinton,So glad to have been a part of this important and timely event. #Recommit2Kids https://t.co/IIYpiacReU +04/17/2017,Politicians,@BillClinton,"If you're a student with big ideas, I hope you'll join us at #CGIU2017: https://t.co/mJZ0nVqJZ2 https://t.co/tUIYBrE80b" +04/13/2017,Politicians,@BillClinton,"RT @ClintonFdn: ""Small interventions can have a big impact when multiplied"" —Pres. @BillClinton reflects on #HealthMatters2017: https://t.c…" +04/10/2017,Politicians,@BillClinton,Looking forward to important conversations today on improving health outcomes for all. Tune in: https://t.co/ZL1CKIlHv9 #HealthMatters2017 +04/09/2017,Politicians,@BillClinton,"Great to spend time with @GeorgeHWBush & Mrs. Bush in Houston today. We caught up about kids, grandkids, old times… https://t.co/A0ERlfcKLq" +04/06/2017,Politicians,@BillClinton,"RT @ClintonCenter: Welcome to Little Rock, @PLSprogram. We're happy to have you at the @ClintonCenter this week. #PLScholars https://t.co/N…" +04/05/2017,Politicians,@BillClinton,So happy to see Patrick Ewing coming home to @GeorgetownHoyas. Hoya Saxa! #HomeSw33tHome +04/03/2017,Politicians,@BillClinton,Congratulations to my friend @DawnStaley and the great @GamecockWBB on a terrific win! +04/02/2017,Politicians,@BillClinton,"RT @ClintonCenter: Tonight, 100+ student designers will show off their sustainable designs at Curbside Couture, our annual ""green"" fashion…" +03/31/2017,Politicians,@BillClinton,Wonderful essay by a @PLSprogram scholar on seeing the world from different viewpoints. #PLScholars https://t.co/pF8yXk8AGH +03/29/2017,Politicians,@BillClinton,Great piece. https://t.co/NO7Oz6AXSW +03/29/2017,Politicians,@BillClinton,Proud @ClintonFdn boosts access to Naloxone--to stop the epidemic we need community-based prevention & treatment. https://t.co/cMU12mL64s +03/28/2017,Politicians,@BillClinton,"Excited to get to work expanding @ClintonFdn #HealthMatters efforts to San Diego, together with these terrific part… https://t.co/TubvHoE56R" +03/28/2017,Politicians,@BillClinton,"RT @MinassianMedia: And while we have your attention from recycled, false claims, here are some facts about how @ClintonFdn has improved li…" +03/24/2017,Politicians,@BillClinton,RT @HillaryClinton: Today was a victory for all Americans. https://t.co/LX6lzQXtBR +03/24/2017,Politicians,@BillClinton,"At @ClintonFdn, we believe that we all do better when we work together. I hope you'll join us in the year ahead: https://t.co/X8lj6cJ5Hs" +03/24/2017,Politicians,@BillClinton,Proud of @ClintonCenter & @ClintonSchool for hosting an inspirational lecture about women STEM pioneers—including t… https://t.co/TbMrprM91N +03/22/2017,Politicians,@BillClinton,On #WorldWaterDay recalling a terrific visit to @ClintonGlobal partner @HarborSchool—great program & oyster project… https://t.co/3IDSzysWH1 +03/21/2017,Politicians,@BillClinton,Martin McGuinness believed in a shared future for Northern Ireland and he was steadfast & courageous in its pursuit. https://t.co/rykG5AxPjw +03/20/2017,Politicians,@BillClinton,Nobody should be left out or left behind—not rural businesses or schoolkids. Glad to see broadband expanding in NY: https://t.co/DBvXzHt6mC +03/19/2017,Politicians,@BillClinton,"Chuck Berry’s life was a treasure and a triumph, and he’ll never be forgotten. https://t.co/3Q7z0NatUd" +03/15/2017,Politicians,@BillClinton,"We must always strive to make it easier to vote, not harder. The work continues. https://t.co/CfiixXwQ3G" +03/13/2017,Politicians,@BillClinton,"Kika de la Garza was a good man, very effective congressman, valued friend, & a champion for opportunity and social… https://t.co/DXkkIdiS9H" +03/10/2017,Politicians,@BillClinton,Robert Osborne taught us more about movies so we could love them as much as he did. May he rest in peace. +03/08/2017,Politicians,@BillClinton,RT @ChelseaClinton: Last book Charlotte asks for every night before bed. Looking forward to reading it later to her & Aidan on #IWD2017 htt… +03/08/2017,Politicians,@BillClinton,"RT @HillaryClinton: On #InternationalWomensDay I'm thinking about this young girl, & all the others like her out there. 💪✨ https://t.co/u1f…" +03/07/2017,Politicians,@BillClinton,"Thank you for your leadership, @RepJohnLewis, then and now. https://t.co/UJZtoc8pJ6" +03/06/2017,Politicians,@BillClinton,"Proud to have established Cascade-Siskiyou National Monument, and so glad that @BarackObama expanded it in January! https://t.co/DJJOYQHzuy" +02/25/2017,Politicians,@BillClinton,"Congratulations to new DNC Chair Tom Perez, Keith Ellison, & the great field of candidates who ran. United Democrats are stronger Democrats." +02/20/2017,Politicians,@BillClinton,"On #PresidentsDay, reaffirming Lincoln’s words in his 1st Inaugural Address: “This country, with its institutions, belongs to the people…”" +02/18/2017,Politicians,@BillClinton,I second this recommendation! https://t.co/iUpKmrxydB +02/18/2017,Politicians,@BillClinton,Terrific piece by a @PLSprogram scholar on listening to and hearing one another despite our differences: https://t.co/30Z7MvgxRR +02/09/2017,Politicians,@BillClinton,Bill Frist is right about PEPFAR. We need U.S. leadership on global health more than ever. https://t.co/LVOjA840AC +02/03/2017,Politicians,@BillClinton,We're proud of all we've accomplished together—I hope you'll join us as we work to expand opportunity in 2017: https://t.co/5zAaW7uBWc +02/03/2017,Politicians,@BillClinton,RT @ClintonFdn: We’re proud of what we accomplished together in 2016 and hope you'll join as we expand our impact in the year ahead: https:… +02/02/2017,Politicians,@BillClinton,"Hillary and I loved visiting with the cast and crew of @InTransitBway, a moving, creative story of different lives… https://t.co/gFYyHI9DQF" +02/02/2017,Politicians,@BillClinton,Excited about the 10th CGIU meeting in October at Northeastern University in Boston! #CGIU2017 https://t.co/HqOJSfrRJN +01/30/2017,Politicians,@BillClinton,RT @ClintonCenter: Proud to announce the 2017 class of Presidential Leadership Scholars. Join us in congratulating them! https://t.co/pgEZG… +01/20/2017,Politicians,@BillClinton,RT @HillaryClinton: I'm here today to honor our democracy & its enduring values. I will never stop believing in our country & its future. #… +01/18/2017,Politicians,@BillClinton,"41 and Barbara—thinking about you both and sending wishes for a speedy recovery. Love, 42." +01/16/2017,Politicians,@BillClinton,"Life's most persistent and urgent question is, “What are you doing for others?”— Dr. Martin Luther King, Jr. #MLKDay" +01/12/2017,Politicians,@BillClinton,"As we remember those lost on that terrible day 7 years ago, I remain hopeful about the future of #Haiti & its resilient people." +01/05/2017,Politicians,@BillClinton,Terrific work by six @CGIU alumni who represent a new generation of leaders and innovators. https://t.co/yMuFXnKepF +01/01/2017,Politicians,@BillClinton,"Happy New Year—2017 & beyond will be bright if we use our imagination, passion & skills to lift each other up & make all our lives stronger." +12/21/2016,Politicians,@BillClinton,I’m excited about the important work #PLScholars are doing around the world. Read about it: https://t.co/GNhewkaFKu +12/20/2016,Politicians,@BillClinton,Here’s one thing @realDonaldTrump and I can agree on — I called him after the election. https://t.co/URSS89oQ6P +12/20/2016,Politicians,@BillClinton,"As an elector from my home state of New York, I've never been more proud to cast a vote than my vote today for @HillaryClinton." +12/09/2016,Politicians,@BillClinton,Our friend John Glenn was a uniquely American hero and one of the finest men Hillary and I have ever known. https://t.co/EjYIfgUFka +12/05/2016,Politicians,@BillClinton,"Every day, I think of my dear friend Madiba, and the great mind and heart he shared equally with all." +12/05/2016,Politicians,@BillClinton,My heart goes out to the families and friends of all those lost in the terrible fire in Oakland. +12/01/2016,Politicians,@BillClinton,On #WorldAIDSDay let’s reaffirm our commitment to ending the HIV/AIDS epidemic & discrimination hindering treatment. https://t.co/MIuBY4uWWw +11/15/2016,Politicians,@BillClinton,"Gwen Ifill was a trailblazer and a bright light in journalism. She informed and challenged us, and did so with grace. I will miss her." +11/11/2016,Politicians,@BillClinton,Remembering and honoring our veterans today. We owe them more than we can ever repay. +11/07/2016,Politicians,@BillClinton,Janet Reno was an extraordinary public servant who never forgot about the lives of real people. https://t.co/CJw6clqRfX +11/03/2016,Politicians,@BillClinton,Enjoyed an early morn visit to Detroit's Eastern Mkt to see some voters. Go see @HillaryClinton tomorrow:… https://t.co/gHDihJRBTu +11/02/2016,Politicians,@BillClinton,Praying for the loved ones and the communities of the two police officers killed in Iowa in a senseless act of violence. +06/30/2018,Politicians,@BernieSanders,"I was very pleased to join friends, supporters, volunteers, and the people of the Northeast Kingdom at Newport’s Ce… https://t.co/KPNC6KxXIu" +06/29/2018,Politicians,@BernieSanders,"“In a modern, moral and wealthy society, no person in America should be too poor to live.” –@Ocasio2018" +06/27/2018,Politicians,@BernieSanders,The people of Maryland understand that we can most effectively oppose Donald Trump's extremism with strong progress… https://t.co/KRNyO47uNE +06/27/2018,Politicians,@BernieSanders,"Congratulations to @BenJealous on his great victory tonight! Ben showed that running a progressive, issue-oriented… https://t.co/PJjxIwmrm5" +06/27/2018,Politicians,@BernieSanders,Congratulations to @Ocasio2018 on her extraordinary upset victory tonight! She took on the entire local Democratic… https://t.co/HCcdDDEuVC +06/26/2018,Politicians,@BernieSanders,"CO, NY, MD, MS, OK & UT: If you haven't voted yet, get to your polling place & make your voice heard! When we stand… https://t.co/9FTuXGPss3" +06/24/2018,Politicians,@BernieSanders,There's a reason why Nikki Haley has tried to discredit the UN report on poverty in America. It's because in the we… https://t.co/xJWvcCxyp6 +06/24/2018,Politicians,@BernieSanders,"When you represent the billionaire class and have nothing relevant to say to working families, the only way you win… https://t.co/SErhZces2c" +06/23/2018,Politicians,@BernieSanders,"Now is not a time for despair or resignation. It is a time for the American people to fight back on every front. + +https://t.co/IE0T7iil9c" +06/23/2018,Politicians,@BernieSanders,"Trump's pathological dishonesty is undermining American democracy, is setting a terrible example for our children a… https://t.co/z6zb5KlbBu" +06/23/2018,Politicians,@BernieSanders,"Honest people can have philosophical and political differences and, in a democracy, we debate those differences. T… https://t.co/PxtAGcy5fg" +06/22/2018,Politicians,@BernieSanders,The rally in Washington will start at 10 a.m. on the Mall at 7th Street. +06/22/2018,Politicians,@BernieSanders,What @RevDrBarber and @UniteThePoor are doing is bringing Americans together to stand up and fight for change in th… https://t.co/GCSvjXb25P +06/21/2018,Politicians,@BernieSanders,Jane Kleeb is doing a great job. If Democrats are going to compete and win in all 50 states we need more state par… https://t.co/zTJAXcObNj +06/19/2018,Politicians,@BernieSanders,The Trump administration policy of separating children from their parents at our border is a national disgrace. Kid… https://t.co/j4Gw50oLBx +06/19/2018,Politicians,@BernieSanders,RT @AriRabinHavt: Big crowd for @BernieSanders and @BenJealous in Silver Spring Watch live: https://t.co/bzTMeyNAy9 https://t.co/tY1Zl67Lcs +06/16/2018,Politicians,@BernieSanders,It's time to make public colleges and universities tuition-free. https://t.co/2fyMXN5qjW +06/07/2018,Politicians,@BernieSanders,I am proud to support @BenJealous in his campaign for Governor of Maryland. Ben is a proven leader running a truly… https://t.co/yacwbaLZS2 +06/03/2018,Politicians,@BernieSanders,We need district attorneys and prosecutors who understand that their job is not just throwing people in jail but fi… https://t.co/sPpTVL3qYW +06/03/2018,Politicians,@BernieSanders,"RT @reformlajails: If you didn't get a chance to watch the event yesterday, check out our re-stream from yesterday with @BernieSanders , #…" +06/03/2018,Politicians,@BernieSanders,RT @shawneebadger: Thank you so much for coming to speak to Disneyland cast members @BernieSanders @SenSanders! When guests forget we are r… +06/03/2018,Politicians,@BernieSanders,Violence and murder by the state is not a civilized act. We must abolish the death penalty. +06/03/2018,Politicians,@BernieSanders,"$30,000: The cost to send a California student to UCLA + +$75,000: The cost to send someone to prison in California… https://t.co/ccvmxkfHko" +06/03/2018,Politicians,@BernieSanders,We have one system of justice for the wealthy and another for the poor. We have one system of justice if you are wh… https://t.co/VYXFCOdVlU +06/03/2018,Politicians,@BernieSanders,"@ShaunKing Thank you, Shaun. But at the end of the day it’s not Bernie. It’s us. Change will only come from million… https://t.co/sIl892BRdS" +06/03/2018,Politicians,@BernieSanders,"RT @ShaunKing: @BernieSanders Who you are, what you do, who you fought for, and where you were during the #BlackLivesMatter movement means…" +06/03/2018,Politicians,@BernieSanders,We claim to have justice for all in this country. That would be naïve to believe. We have one system of justice for… https://t.co/l0JxL71dfy +06/02/2018,Politicians,@BernieSanders,"RT @GoodJobsNation: ""I go hungry most days"" - Glynndana Shevlin, Disneyland worker w/@UNITEHERE11. #StopDisneyPoverty #RaiseTheWage" +06/02/2018,Politicians,@BernieSanders,"RT @Fightfor15LA: ""While working at #Disneyland I've been evicted twice, I live on one meal a day. I work in one of the most beautiful room…" +06/02/2018,Politicians,@BernieSanders,"Recently, Disney CEO Bob Iger did the right thing and cancelled Roseanne after her racist tweet. + +I say to Mr. Ige… https://t.co/yIxnQZVtNU" +06/02/2018,Politicians,@BernieSanders,"In the year 2018, no one in America, especially those working for a profitable corporation like Disney, should be h… https://t.co/dISMTiVtRw" +06/02/2018,Politicians,@BernieSanders,You want to know what is radical? A company like Disney that makes $9 billion in profits while nearly 75% of its wo… https://t.co/Uhkb5l2FXD +06/02/2018,Politicians,@BernieSanders,"We are here at Disneyland to say loudly and clearly to the CEO of Disney: Pay your workers a living wage, not a pov… https://t.co/VmHhpGivnc" +06/02/2018,Politicians,@BernieSanders,"While Disney’s CEO makes up to $423 million: + +- 1 in 10 Disneyland workers have been homeless in the past 2 years +-… https://t.co/qhiCmrXJNv" +06/02/2018,Politicians,@BernieSanders,"RT @unitehere: Live from Anaheim! #stopdisneypoverty roundtable getting ready to start soon, with host @SenSanders. Disney workers from @un…" +06/02/2018,Politicians,@BernieSanders,RT @GoodJobsNation: TWICE: Bernie Sanders will go live with us today to protest wage theft by port truck companies AND demand a living wage… +05/26/2018,Politicians,@BernieSanders,I was pleased to be joined by so many Vermonters in the Essex Memorial Day Parade today. Memorial Day is a time to… https://t.co/MoNsi9pZ9J +05/22/2018,Politicians,@BernieSanders,RT @lcmoser: RT to remind folks to VOTE today! https://t.co/ToJ2KB2I9L https://t.co/c0AmEa3S7s +05/22/2018,Politicians,@BernieSanders,"RT @staceyabrams: Today's the day – It’s Election Day! Starting at 7 AM, voters across Georgia will begin casting ballots to choose the dir…" +05/21/2018,Politicians,@BernieSanders,"But today, I wanted to let you know that it was my intention to run again for the Senate, and to ask if you could h… https://t.co/cwGRAGQ8Mo" +05/21/2018,Politicians,@BernieSanders,It is my intention to run a strong grassroots campaign throughout Vermont and I look forward to your support. +05/21/2018,Politicians,@BernieSanders,But being anti-Trump and anti-Republican is not enough. We need to continue our fight for a progressive agenda whic… https://t.co/B53MVHj6qT +05/21/2018,Politicians,@BernieSanders,"If reelected, you can be sure that I will continue to be the fiercest opponent in the Senate to the rightwing extre… https://t.co/GAOVj02K1y" +05/21/2018,Politicians,@BernieSanders,"These are frightening and unprecedented times. We have a president who is not only a pathological liar, but someone… https://t.co/HU1xBYPlPy" +05/21/2018,Politicians,@BernieSanders,"I have some important news to share, and I wanted you to hear it from me: Today, I am announcing my intention to ru… https://t.co/5PpvGZInpN" +05/17/2018,Politicians,@BernieSanders,"RT @ShaunKing: Los Angeles & All of SoCal! + +The free tickets for this amazing event I’m co-hosting on Saturday, June 2nd w/ @BernieSanders…" +05/17/2018,Politicians,@BernieSanders,"By allowing cheaper imported drugs into the state, we have taken a great step in the fight for health justice." +05/17/2018,Politicians,@BernieSanders,I am proud that my home state of Vermont has chosen to allow importation of drugs from Canada. The goal of a sane h… https://t.co/YUfhUPLV0y +05/17/2018,Politicians,@BernieSanders,"In 1999, I became the first member of Congress to take constituents over the Canadian border to purchase low-cost p… https://t.co/UHzNE6OklY" +05/17/2018,Politicians,@BernieSanders,"RT @staceyabrams: So grateful for Senator @BernieSanders’ endorsement. We’re excited you’re on our team to move Georgia forward. United, we…" +05/15/2018,Politicians,@BernieSanders,"I am proud to support @JohnFetterman for Lieutenant Governor and @edwardsforpa, @jessforcongress, and @RichLazerPHL… https://t.co/utQAKUsfIq" +05/15/2018,Politicians,@BernieSanders,Pennsylvania: today you have a chance to support some true progressives who share our vision for the future. +05/11/2018,Politicians,@BernieSanders,RT @RichLazerPHL: Proud to have the endorsement of @BernieSanders in #PA05 -- I look forward to fighting alongside him for working families… +05/06/2018,Politicians,@BernieSanders,"Bernie just returned from a campaign swing with these candidates. Turnouts at each of the rallies was great, and en… https://t.co/QUgPPkPsRe" +05/06/2018,Politicians,@BernieSanders,"Thanks to all the people who have provided support for progressive Pennsylvania candidates like John Fetterman, can… https://t.co/Lqtqptj4Qy" +05/06/2018,Politicians,@BernieSanders,"If we are going to turn this country around politically, we need to do well in states like Pennsylvania." +05/05/2018,Politicians,@BernieSanders,"RT @AriRabinHavt: . @edwardsforpa agrees with Bernie - we’re not going to let Republicans cut Social Security, Medicare, and Medicaid. http…" +05/05/2018,Politicians,@BernieSanders,RT @jessforcongress: AMAZING crowd this morning in Lancaster city for our rally with @berniesanders! ♥️🇺🇸 #allofus #pa11 https://t.co/aGbAU… +05/04/2018,Politicians,@BernieSanders,Watch: Rally with John Fetterman https://t.co/qs3E6iNK7U +05/04/2018,Politicians,@BernieSanders,"In Vermont, the first Saturday in May is Green Up Day! Vermonters from all over the state will be getting together… https://t.co/2I1z4lAjQX" +05/04/2018,Politicians,@BernieSanders,"Pete D’Alessandro grew up in a union household and he has spent his life fighting for people. Now, we need him in C… https://t.co/Usr1YO12gI" +05/03/2018,Politicians,@BernieSanders,"RT @jacobinmag: Bernie talks with Jacobin Radio's @DanielDenvir live! + +A round table on criminal justice reform streams Friday, May 4 at 2…" +05/02/2018,Politicians,@BernieSanders,"RT @JohnFetterman: This Friday, May 4th, @BernieSanders is joining me in #Philadelphia to rally for a Pennsylvania that leaves no one behin…" +05/01/2018,Politicians,@BernieSanders,"RT @EmilyForCO: GREAT NEWS: I've just been endorsed by the @AFLCIOCO! So honored to have this support as I campaign for workers' rights, pa…" +04/30/2018,Politicians,@BernieSanders,"RT @jessforcongress: This Saturday, May 5th, @BernieSanders is joining me in #PA11 to rally for an America that works for all of us. + +RSVP…" +04/30/2018,Politicians,@BernieSanders,"In Seattle, officials recently announced that they have filed a motion to vacate all convictions and drop all charg… https://t.co/KuSVAPeMvb" +04/30/2018,Politicians,@BernieSanders,"A number of states are now rethinking the ""war on drugs"" and are either decriminalizing possession of marijuana or making it legal." +04/30/2018,Politicians,@BernieSanders,We are finally beginning to win some major victories in reforming our broken criminal justice system which has dest… https://t.co/bdsqwCWD2A +04/28/2018,Politicians,@BernieSanders,"Instead of spending billions on jails and incarceration, we need to invest in our teachers and our schools. Instead… https://t.co/QgHU09QZRC" +04/28/2018,Politicians,@BernieSanders,"Congratulations to the teachers of West Virginia, Oklahoma, Kentucky and Arizona for helping to lead this country f… https://t.co/xRFQJAXNHh" +04/26/2018,Politicians,@BernieSanders,This is not about ME. This is about US. The truth is that the agenda we are fighting for is not only becoming the a… https://t.co/iU7U5GIccA +04/25/2018,Politicians,@BernieSanders,Neither democracy nor the Democratic Party is well-served when some 700 super-delegates can ignore the will of thei… https://t.co/GFpmyGUC8P +04/24/2018,Politicians,@BernieSanders,RT @mic: .@BernieSanders wants to tackle the #opioidcrisis by attacking it from the top down: by punishing every single Big Pharma CEO who… +04/23/2018,Politicians,@BernieSanders,"Oregon - Make sure you're registered to vote in the May 15th primary. Registration ends Tuesday (tomorrow), April 2… https://t.co/Mm8EGIjZzE" +04/23/2018,Politicians,@BernieSanders,"Thank you to the people around the country fighting to make health care a right. Change does not happen overnight,… https://t.co/Sq5eAKefS7" +04/21/2018,Politicians,@BernieSanders,RT @VanJones68: This Saturday -- Set your DVRs! @BernieSanders & @CecileRichards joins The #VanJonesShow on @CNN at 7PM ET!! https://t.co/W… +04/19/2018,Politicians,@BernieSanders,"Our political revolution means getting real progressives to run for office at every level, in every state, and in e… https://t.co/50OIXIfIel" +04/19/2018,Politicians,@BernieSanders,"RT @vicenews: Bernie Sanders has a plan to save the postal service +https://t.co/goA1vHy2Jn https://t.co/4CgaqDcmyL" +04/12/2018,Politicians,@BernieSanders,"RT @BoldProgressive: ""We started the campaign by developing a progressive agenda that said that we are going to deal with the disgrace of h…" +04/12/2018,Politicians,@BernieSanders,"RT @BoldProgressive: Who’s ready to hear from today’s keynote speakers @ElizabethforMA and @SenSanders?? Watch live here: link +https://t.co…" +04/11/2018,Politicians,@BernieSanders,"RT @briebriejoy: In my newest piece for @NYMag, I cover how southerners, rather than the pundit class, responded to @SenSanders's recent tr…" +04/05/2018,Politicians,@BernieSanders,It's unfortunate that some have so degraded our discourse that my recognition of the historical significance of the… https://t.co/IlFIreM9Kw +04/05/2018,Politicians,@BernieSanders,"Thank you @ChokweALumumba for hosting a great town hall last night. We can, we must and we shall overcome the force… https://t.co/Hy9m9ZFU3b" +04/04/2018,Politicians,@BernieSanders,"RT @TheRevAl: Marching in Memphis marking the Memphis Sanitation Workers Strike w/ Martin Luther King lll, Senator Bernie Sanders, Lee Saun…" +04/04/2018,Politicians,@BernieSanders,RT @trymainelee: Bernie Sanders addressing crowd of thousands gathered at AFSCME hq to commemorate Dr. King’s legacy. Sanders calls for dou… +04/04/2018,Politicians,@BernieSanders,I want to thank the teachers across the country who are saying loudly and clearly that taking care of our kids and… https://t.co/edXRCnPf2V +04/03/2018,Politicians,@BernieSanders,"I very much look forward to seeing our friends in Jackson tomorrow night, along with @ChokweALumumba to hold a town… https://t.co/rz15xCdljq" +03/29/2018,Politicians,@BernieSanders,"We have got to take the fight for economic, social, racial, and environmental justice to every county in every stat… https://t.co/SgqAbXGw53" +03/23/2018,Politicians,@BernieSanders,"RT @mehdirhasan: “We need to talk about inequality” - the first episode of my new podcast, Deconstructed, is out, featuring @BernieSanders.…" +03/22/2018,Politicians,@BernieSanders,RT @DukeChronicle: @BernieSanders will now speak at Duke with Rev. William Barber II on April 19: https://t.co/0nYuQhNAW8 +03/21/2018,Politicians,@BernieSanders,"Congratulations to @ChuyForCongress, @ortizstaterep, @AlmaAnaya7th, @beatrizforjudge & @Delia4StateRep. The politic… https://t.co/KBinKmXiZP" +03/19/2018,Politicians,@BernieSanders,RT @thenation: Bernie Sanders Wants to Tell the Story That Corporate Media Fails To https://t.co/eEh2YxfD0w +03/18/2018,Politicians,@BernieSanders,RT @thenation: Bernie Sanders Wants to Tell the Story That Corporate Media Fails To https://t.co/yUoxNl2VxU +03/16/2018,Politicians,@BernieSanders,RT @GdnInequality: The corporate media ignores the rise of oligarchy. The rest of us shouldn't | Bernie Sanders https://t.co/t8anXYUedx htt… +03/14/2018,Politicians,@BernieSanders,"RT @nowthisnews: 'The time is now, for all of us together, to stand up to the NRA and to pass commonsense gun legislation' - Bernie Sanders…" +03/11/2018,Politicians,@BernieSanders,"Arizona, if there was ever a time in the modern history of this country where people have got to stand up and fight… https://t.co/5EpsTIm03O" +03/11/2018,Politicians,@BernieSanders,Pathetic that President Trump attacked smart and compassionate @RepMaxineWaters -- both traits alien to him. +03/11/2018,Politicians,@BernieSanders,We’re here to bring the Dodgers back to Brooklyn. https://t.co/V5Zrqir9cw +03/11/2018,Politicians,@BernieSanders,With a few tweaks I think @YasielPuig had 30 home runs in him this year. https://t.co/sPqphKlOi3 +03/11/2018,Politicians,@BernieSanders,The rumors are true. I am trying out for the Dodgers. https://t.co/U1DuGOeLdX +03/10/2018,Politicians,@BernieSanders,"If we can transform politics in Texas, we can do it in every state in America. Thank you, Lubbock! https://t.co/ComSKMasql" +03/10/2018,Politicians,@BernieSanders,Watch live here: https://t.co/eFKOtrS7Ab +03/10/2018,Politicians,@BernieSanders,"I've never believed in this blue-state, red-state nonsense. Yes, Lubbock voted overwhelmingly for Trump. But any co… https://t.co/dPHDvvQyOm" +03/10/2018,Politicians,@BernieSanders,Assault weapons are military weapons designed to kill human beings. They should not be sold in this country. +03/10/2018,Politicians,@BernieSanders,"Our message to Donald Trump, perhaps our most important message, is that we will not let bigots divide us up. Regar… https://t.co/lTX5JZkryp" +03/10/2018,Politicians,@BernieSanders,"If Texans are prepared to work hard, stand up, fight back, talk to people who voted for Trump, make sure that every… https://t.co/t00k9JnqKr" +03/09/2018,Politicians,@BernieSanders,"RT @AustinChronicle: Jake Tapper interviews Sen. Bernie Sanders during an early keynote at #SXSW 2018. + +📷: @JanaB04 https://t.co/jepTkre8Gc" +03/08/2018,Politicians,@BernieSanders,.@Marie4Congress has made it clear that she will be a champion for working families. I'm proud to support her campa… https://t.co/i12gM2YzMV +02/28/2018,Politicians,@BernieSanders,"Pastor Tillman, your work as well as all of those I met in Flint is extraordinary. I look forward to continuing to… https://t.co/pcKYfsKkkD" +02/27/2018,Politicians,@BernieSanders,We should not be selling assault weapons in this country. These weapons are not for hunting. They are military weap… https://t.co/2ZOCwrh2pB +02/26/2018,Politicians,@BernieSanders,"RT @taxmarch: ICYMI: @LittleMissFlint spoke out for so many kids yesterday: + +""To the grown ups in Washington, I want to make it clear that…" +02/26/2018,Politicians,@BernieSanders,Thank you Mari for joining us today. https://t.co/m25h9z9nQ9 +02/25/2018,Politicians,@BernieSanders,RT @AriRabinHavt: Another view of Bernie's rally in Lansing https://t.co/V9VYwQW08b +02/24/2018,Politicians,@BernieSanders,"Watch our rally in Green Bay, Wisconsin with #NotOnePenny & @TaxMarch tonight at 8pm EST on https://t.co/dWgRIKgZX1 https://t.co/D2hC5Udn5z" +02/24/2018,Politicians,@BernieSanders,Saying hello to the people in the Milwaukee Public Market. https://t.co/UixX8oyTTX +02/22/2018,Politicians,@BernieSanders,"No one, including Clinton, should ever face meddling from foreign government https://t.co/bMKOAGVQAw" +02/22/2018,Politicians,@BernieSanders,"The findings of Robert Mueller's investigation must be taken seriously at every level of government, and he must be… https://t.co/G1UpEI0esg" +02/22/2018,Politicians,@BernieSanders,Mueller's indictment provides further evidence that the Russian government interfered in 2016. It also shows that t… https://t.co/m98fM9EZV0 +02/21/2018,Politicians,@BernieSanders,"The key issues now are: + +1) How we prevent the unwitting manipulation of our electoral and political system by for… https://t.co/OeK6US1AjK" +02/21/2018,Politicians,@BernieSanders,"As someone who campaigned hard for Hillary Clinton from one end of this country to another, it is an outrage that s… https://t.co/QHtTZI6Neg" +02/21/2018,Politicians,@BernieSanders,What the Russians did in the 2016 election cycle deserves unconditional condemnation. That includes all of their co… https://t.co/YfYYwYzZLP +02/21/2018,Politicians,@BernieSanders,RT @sxsw: Senator @BernieSanders will sit down with @CNN's @jaketapper for a conversation at #SXSW 2018! https://t.co/36K5eOxi9Y https://t.… +02/16/2018,Politicians,@BernieSanders,It is absolutely imperative that the Mueller investigation be allowed to go forward without obstruction from the Tr… https://t.co/rlPK2QKheN +02/16/2018,Politicians,@BernieSanders,It has been clear to everyone (except Donald Trump) that Russia was deeply involved in the 2016 election and intend… https://t.co/yak1Vr8L2q +02/14/2018,Politicians,@BernieSanders,RT @RollingStone: Is a progressive revolt brewing in West Virginia? https://t.co/KZs3EuyIUD https://t.co/2iO4t9IFQt +02/10/2018,Politicians,@BernieSanders,"Reg E. Cathey was a voice of the political revolution, and someone I had the honor of working with during my 2016 c… https://t.co/a5UHYfPwVl" +02/08/2018,Politicians,@BernieSanders,RT @nowthisnews: Here's why this Canadian doctor supports @BernieSanders' plan for universal health care https://t.co/NRMLLgUHCy +02/01/2018,Politicians,@BernieSanders,"RT @andrewkimmel: ""@realdonaldtrump, one of the great scientists of our time, has determined after years and years of exhaustive study that…" +02/01/2018,Politicians,@BernieSanders,RT @emilyhholden: @BernieSanders: My request of you is please get involved in the political process. Start running for office. You can do i… +02/01/2018,Politicians,@BernieSanders,RT @powershiftnet: .@BernieSanders: The days of the fossil fuel industry are numbered. But we need *everyone* to come together if we are to… +01/31/2018,Politicians,@BernieSanders,"RT @danielmarans: In era of Donald Trump, @BernieSanders sees ""the beginning of a political revolution"" https://t.co/Drb0eVQsZa" +01/30/2018,Politicians,@BernieSanders,I will not support any spending bills as long as Trump and Republican leadership refuse to address the crisis they… https://t.co/yZyepGWm0h +01/30/2018,Politicians,@BernieSanders,"Today, our government is controlled by the most extremist, reactionary, xenophobic, bigoted, and thankfully, in man… https://t.co/hWz40zfkNn" +01/29/2018,Politicians,@BernieSanders,RT @latinovictoryus: TOMORROW: @BernieSanders. Latino resistance. You. Tune in here tomorrow morning: https://t.co/9AeFxDn2Jh https://t.co/… +01/29/2018,Politicians,@BernieSanders,RT @MarkRuffalo: Livestream the #PeoplesSOTU TONIGHT at 8pm ET: https://t.co/ADTWe9AAUr Celebrating the #ResistanceMovement and charting a… +01/29/2018,Politicians,@BernieSanders,"Pete has spent his entire career fighting for working families and as a champion of progressive values, and I'm con… https://t.co/tYnyusbzZl" +01/27/2018,Politicians,@BernieSanders,RT @viceimpact: .@BernieSanders on why it's time to make college tuition free. Here's how it is going to happen: https://t.co/Sytekdur7a ht… +01/26/2018,Politicians,@BernieSanders,"RT @IronStache: I’m going to the State of the Union next Tuesday with @MarkPocan to hold @SpeakerRyan accountable, work boots and all. + +He…" +01/26/2018,Politicians,@BernieSanders,"RT @latinovictoryus: We're honored to be joined by @BernieSanders at our Latino Political Summit on Tuesday, January 30th. + +We need to wor…" +01/26/2018,Politicians,@BernieSanders,RT @RepGutierrez: $25 billion as ransom for Dreamers with cuts to legal immigration and increases to deportations doesn’t pass the laugh te… +01/25/2018,Politicians,@BernieSanders,RT @weatherchannel: Vermont’s seemingly spacey climate change goals are putting the rest of the country to shame. #USofClimateChange https:… +01/20/2018,Politicians,@BernieSanders,"People are more determined than ever to build a nation based on love and compassion, not hatred or division. Congra… https://t.co/PVj3PnG7WN" +01/20/2018,Politicians,@BernieSanders,"RT @peoplepower: .@BernieSanders: We need to face the crises facing this country, including Trump's self-made crisis of ending DACA. It is…" +01/19/2018,Politicians,@BernieSanders,RT @Morning_Joe: Coming up: @BernieSanders https://t.co/fYVsGRUGF7 +01/14/2018,Politicians,@BernieSanders,RT @guardianopinion: Let’s wrench power back from the billionaires | Bernie Sanders https://t.co/PGibSEvVPB +01/12/2018,Politicians,@BernieSanders,"Republicans in Congress must now summon the courage to stand up to the racist ramblings of our ""stable genius"" pres… https://t.co/iBN4obUdlc" +01/09/2018,Politicians,@BernieSanders,RT @DukeChronicle: U.S. Sen. Bernie Sanders is coming to Duke Jan. 19 for a public forum with Rev. William J. Barber II: https://t.co/0nYuQ… +01/09/2018,Politicians,@BernieSanders,RT @PostOpinions: It’s on Republicans to stop a shutdown https://t.co/Fxt8X7gv2T by @berniesanders +12/30/2017,Politicians,@BernieSanders,I had the honor of getting to know Erica and I was inspired by the commitment she made working towards a more just… https://t.co/0HpXnY3N5d +12/30/2017,Politicians,@BernieSanders,"Though Erica didn't ask to be an activist, she responded to the personal tragedy of seeing her father die while bei… https://t.co/rnkrgsn7Jj" +12/30/2017,Politicians,@BernieSanders,"Erica Garner was an exceptional young woman. She was a loving daughter, sister, mother, friend. Jane and I send our… https://t.co/WoVnVLaCwX" +12/28/2017,Politicians,@BernieSanders,"RT @IronStache: If we defeat @SpeakerRyan and swing the massive arm of change back toward working people, even a little, it will be worth t…" +12/24/2017,Politicians,@BernieSanders,"If I were the Republicans, I would worry very much about 2018. +https://t.co/UQcWla7pST" +12/20/2017,Politicians,@BernieSanders,"RT @CNNPolitics: Sen. Bernie Sanders: The new tax bill is ""a disaster for the American people"" https://t.co/2M9d8cGKii https://t.co/h9R6wft…" +12/18/2017,Politicians,@BernieSanders,RT @nytopinion: .@SenWarren & @BernieSanders: Will congressional Republicans work with Democrats to pass a budget that supports working peo… +12/14/2017,Politicians,@BernieSanders,"RT @IronStache: Hey @SpeakerRyan. Word on the street is that before we've even gotten into the ring, you’ve had enough. Give me a call. I’v…" +12/13/2017,Politicians,@BernieSanders,My thoughts on last night’s election in Alabama: https://t.co/6HtPQczR3Q +12/13/2017,Politicians,@BernieSanders,"RT @GetUSCovered: YOU HAVE TWO DAYS LEFT TO SIGN UP. + +Go to https://t.co/p8DQwo89C7 right now and sign up for affordable health coverage be…" +12/13/2017,Politicians,@BernieSanders,RT @washingtonpost: Opinion: Democrats have a chance to revive the party. Will they seize it? https://t.co/c3nMxZtcdv +12/13/2017,Politicians,@BernieSanders,Congratulations to @GDouglasJones for his great victory.  Congratulations to the people of Alabama for doing what f… https://t.co/B8WJ0y2eZ9 +12/12/2017,Politicians,@BernieSanders,"Alabama, you have extraordinary power today. By voting for @GDouglasJones, you can stop the Republican Party's plan… https://t.co/LOWZsArDm5" +12/09/2017,Politicians,@BernieSanders,The Democratic Party will not become a vibrant and successful 50 state party until it opens its doors widely to the… https://t.co/rZdxnRjHIa +12/02/2017,Politicians,@BernieSanders,"RT @ninaturner: I’m here in Dayton, Ohio w/ @BernieSanders bringing the message to the people! We are on the move. #GOPTaxBill @OurRevoluti…" +11/29/2017,Politicians,@BernieSanders,The Republican tax bill is a moral abomination that would take away from so many in need to give more to people who… https://t.co/Ki5nI52akn +11/21/2017,Politicians,@BernieSanders,Attacks against trans people are part of a bigotry which has got to end. We must work together until hatred and dis… https://t.co/ivvXgcmIV2 +11/17/2017,Politicians,@BernieSanders,RT @viceimpact: .@BernieSanders on why it's time to make college tuition free. Here's how it is going to happen: https://t.co/SytekdcQfC ht… +11/16/2017,Politicians,@BernieSanders,RT @politico: Tim Kaine calls for eliminating superdelegates https://t.co/9wT14ztIrq https://t.co/ntqurvzzb2 +11/15/2017,Politicians,@BernieSanders,"RT @VICE: Bernie Sanders’s socialist revolution is happening, very slowly: https://t.co/SCJvacI8CW https://t.co/cc3ZPb4GKr" +11/13/2017,Politicians,@BernieSanders,"I hope and expect that the United States will assist in disaster relief efforts for Iran, as we did in 2003 and 201… https://t.co/SDA0rUONXR" +11/13/2017,Politicians,@BernieSanders,"The devastation from the earthquake in Iran last night is horrific. My thoughts are with the victims, their loved o… https://t.co/SekzUHAWAN" +11/13/2017,Politicians,@BernieSanders,"RT @IronStache: I’m a union ironworker from Caledonia, Wisconsin. A Veteran. Cancer Survivor. I build things with my hands to put food on t…" +11/12/2017,Politicians,@BernieSanders,Progressives didn’t just say no to Trump. They offered an agenda to make our country work for everyone not just the… https://t.co/EEHz6dRmK0 +11/10/2017,Politicians,@BernieSanders,"At a time when Trump and the Republican agenda are strongly opposed by the American people, it's critical we come t… https://t.co/W4vVI1XXo9" +11/09/2017,Politicians,@BernieSanders,RT @JessicaGlenza: Ban Ki-moon calls for US to enact universal healthcare (like @BernieSanders proposal) and stop “powerful interests” from… +11/09/2017,Politicians,@BernieSanders,Many people who had not previously been involved in politics won local positions this week. That is what the politi… https://t.co/jdLzciHESv +11/08/2017,Politicians,@BernieSanders,"The political revolution we're fighting for is to get more people involved in the political process, to run for off… https://t.co/KiIo3hFptJ" +11/08/2017,Politicians,@BernieSanders,I want to congratulate everyone who won yesterday – from governorships to the many first-time candidates who won po… https://t.co/O4CMNoslZW +11/08/2017,Politicians,@BernieSanders,"Yesterday was a referendum on President Trump, and he lost badly. It’s clear the American people are deeply concern… https://t.co/Ne9ayn2kTR" +11/07/2017,Politicians,@BernieSanders,It’s Election Day in NYC. Get out and vote for @BilldeBlasio and Democrats up and down the ballot. https://t.co/z50hRyRolC +11/07/2017,Politicians,@BernieSanders,"It’s #ElectionDay, New Jersey. Get out and vote for the Democratic ticket. Then ask your friends to do the same. https://t.co/OXv5faw46k" +11/07/2017,Politicians,@BernieSanders,"Atlanta, it’s time to get out and vote for @fortforatlanta. #ElectionDay Find your polling place here: https://t.co/yudlkEz2Fb" +11/07/2017,Politicians,@BernieSanders,"It’s #ElectionDay. Get to the polls, bring your friends and vote for the Democratic ticket. Every vote counts. https://t.co/c9UEDRaYBJ" +11/07/2017,Politicians,@BernieSanders,It’s Election Day in Virginia. Get out and vote for the Democratic ticket. Find your polling place here: https://t.co/I0CblDT2J5 +11/06/2017,Politicians,@BernieSanders,RT @guardian: Bernie Sanders warns of 'international oligarchy' after Paradise Papers leak https://t.co/Ovx7keSdVG +11/06/2017,Politicians,@BernieSanders,"RT @latimes: Bernie Sanders: As president, Trump is doing the exact opposite of what he promised on the campaign trail https://t.co/ZRY0Qot…" +11/05/2017,Politicians,@BernieSanders,My thoughts are with the victims of Sutherland Springs and their loved ones. No community should have to face such a senseless tragedy. +11/01/2017,Politicians,@BernieSanders,"Instead of more tax breaks for Wall Street, we must make public colleges and universities tuition-free by taxing Wall Street speculators." +11/01/2017,Politicians,@BernieSanders,"Instead of giving more tax breaks to corporate tax evaders, we should rebuild our nation’s infrastructure by closing offshore tax loopholes." +11/01/2017,Politicians,@BernieSanders,"Instead of more tax breaks for billionaires, we must demand the wealthiest people in this country start paying their fair share of taxes." +11/01/2017,Politicians,@BernieSanders,RT @nowthisnews: .@BernieSanders asked what it meant to be free – and every American needs to hear the answer https://t.co/scG9LPnEh2 +10/31/2017,Politicians,@BernieSanders,My thoughts are with the victims of today’s horrific attack in Manhattan and their loved ones. https://t.co/1zCNc5PiTK +10/31/2017,Politicians,@BernieSanders,"RT @BilldeBlasio: .@BernieSanders: Brothers and sisters, on Election Day, let’s re-elect Bill de Blasio and show the world what this great…" +10/31/2017,Politicians,@BernieSanders,I was proud to endorse @BilldeBlasio tonight. He is leading the city in a way that brings people together to make a better life for all. +10/29/2017,Politicians,@BernieSanders,"RT @CTVToronto: WATCH LIVE: Bernie Sanders speaks about the Canadian health care system at U of T +https://t.co/oL2vsTGnas https://t.co/6jOJ…" +10/27/2017,Politicians,@BernieSanders,RT @rbecker51: San Juan Mayor Carmen Yulín Cruz y Sen. @BernieSanders discussing short term y long term solutions for rebuilding Puerto Ric… +10/25/2017,Politicians,@BernieSanders,"RT @tammybaldwin: READ: Tammy Baldwin and Bernie Sanders fight economic inequality and fiscal irresponsibility + +https://t.co/AWX3w2U3A1" +10/25/2017,Politicians,@BernieSanders,"RT @BilldeBlasio: Throughout his life, Sen. @BernieSanders has fought for change for working Americans. Join us at a campaign rally: https:…" +10/19/2017,Politicians,@BernieSanders,"RT @AC360: Sen. Sanders on Trump's tax plan: ""It is a Robin Hood proposal in reverse...it must be defeated"" #CNNDebateNight https://t.co/VQ…" +10/18/2017,Politicians,@BernieSanders,"RT @CNN: Tonight at 9 ET, Sens. Ted Cruz and Bernie Sanders go head-to-head on tax reform in #CNNDebateNight https://t.co/r5VG1xWjLx https:…" +10/13/2017,Politicians,@BernieSanders,Why would any country sign such an agreement with the U.S. if they knew a reckless president might simply discard i… https://t.co/AQaysBhsyy +06/30/2018,Politicians,@tedcruz,"RT @FreedomWorks: Support @SenTedCruz's Student Empowerment Act, S. 3102! #SchoolChoice #ampFW via https://t.co/lf9wpELolh https://t.co/tao…" +06/29/2018,Politicians,@tedcruz,RT @rumpfshaker: Some Jerks Robbed 112-Year-Old WWII Vet Richard Overton. Let's Help Him Out. https://t.co/GVnEfQWfzh #atx #txlege #veterans +06/29/2018,Politicians,@tedcruz,"This is horrific. An avowed Nazi running for Congress. To the good people of Illinois, you have two reasonable choi… https://t.co/W3U3vTWxJV" +06/29/2018,Politicians,@tedcruz,"RT @CR: Watch: @tedcruz on @SenMikeLee and the Supreme Court + +https://t.co/aUhJdg9slH" +06/29/2018,Politicians,@tedcruz,RT @TexasCruzer: Pastor Cruz addressing the crowd at the 15th Annual Patriotic Celebration in New Braunfels! #GodBlessAmerica https://t.co/… +06/28/2018,Politicians,@tedcruz,"RT @CR: WATCH: @tedcruz thinks @SenMikeLee would make a great choice for SCOTUS + +https://t.co/aUhJdg9slH" +06/28/2018,Politicians,@tedcruz,RT @CR: “I think the single best choice that President Trump could make to fill this vacancy is @SenMikeLee. I think he would be extraordin… +06/28/2018,Politicians,@tedcruz,RT @SenJohnKennedy: Thank you to my Republican colleagues who stood with me @tedcruz and @SenMikeLee on our food stamp amendment to fight f… +06/28/2018,Politicians,@tedcruz,"RT @CR: “I know beyond a shadow of a doubt that Mike Lee would be faithful to the Constitution and Bill of Rights, that he’s not going to e…" +06/28/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz raises comparison between @BetoORourke and @Ocasio2018, saying O'Rourke's ""running like a Bernie Sanders liber…" +06/28/2018,Politicians,@tedcruz,"RT @marklevinshow: The president's list of candidates for the Supreme Court is outstanding. That said, I would strongly encourage him to se…" +06/28/2018,Politicians,@tedcruz,Why does the hard Left have such deep hatred for Israel? Even most Senate Dems say they supported moving the embas… https://t.co/v2uyaBQBLm +06/28/2018,Politicians,@tedcruz,"RT @thehill: Ted Cruz: Mike Lee is the ""single best choice"" to replace Kennedy on Supreme Court https://t.co/ocStrovMkR https://t.co/hRFPKw…" +06/28/2018,Politicians,@tedcruz,RT @SaintRPh: Every democrat in America now believes in thoughts and prayers https://t.co/bGux9AhgvY +06/28/2018,Politicians,@tedcruz,"RT @CalebHowe: Ted Cruz Says Voters Have Already Weighed In On SCOTUS: If Scalia Hadn't Passed Away, Hillary May Have Won https://t.co/Bk2D…" +06/28/2018,Politicians,@tedcruz,RT @toddgillman: .@TedCruz and @BetoORourke agree: Supreme Court vacancy raises stakes in Texas Senate race #2018 #Texas https://t.co/IPWgw… +06/28/2018,Politicians,@tedcruz,"RT @CR: .@tedcruz: Mike Lee would not ‘evolve’ if chosen to replace Justice Anthony Kennedy + +https://t.co/aUhJdg9slH" +06/28/2018,Politicians,@tedcruz,RT @FoxNews: .@SenTedCruz: “This could well prove to be the most significant thing President Trump does in his entire time in office.” http… +06/28/2018,Politicians,@tedcruz,Fully agree. And the overwhelming majority of Texans want Supreme Court Justices who will preserve the Constitution… https://t.co/sqcmmgyyds +06/28/2018,Politicians,@tedcruz,"RT @PatrickSvitek: In addition to @SenMikeLee, @TedCruz says Trump should consider Cruz friends Noel Francisco (U.S. solicitor general) and…" +06/28/2018,Politicians,@tedcruz,"This is an opportunity for President @realDonaldTrump to nominate a strong Constitutionalist to #SCOTUS. + +Three fan… https://t.co/C3pdGiiX2R" +06/28/2018,Politicians,@tedcruz,"RT @thehill: Ted Cruz: Mike Lee is the ""single best choice"" to replace Kennedy on Supreme Court https://t.co/tzEuJFXMGH https://t.co/BCuyhP…" +06/28/2018,Politicians,@tedcruz,"RT @dcexaminer: Ted Cruz: Mike Lee ""the single best choice"" to replace Anthony Kennedy on Supreme Court https://t.co/JGIoGhzp6a https://t.c…" +06/27/2018,Politicians,@tedcruz,RT @senorrinhatch: While there was no precedent for confirming a Justice who had been nominated by an outgoing President in a Presidential… +06/27/2018,Politicians,@tedcruz,"RT @FoxNewsInsider: Sen. @tedcruz: 'We Should Confirm SCOTUS Pick Before Election', Suggests @SenMikeLee , via @DanaPerino's @dailybriefing…" +06/27/2018,Politicians,@tedcruz,I think the single best choice President @realDonaldTrump could make to fill this vacancy is @SenMikeLee. He would… https://t.co/BGew9qLKG0 +06/27/2018,Politicians,@tedcruz,RT @WilsonWPA: Worth the view (Ted Cruz on @FoxNews discussing #SCOTUS vacancy) #CruzCrew #txsen #txlege https://t.co/URqmuKxKb7 via @YouTu… +06/27/2018,Politicians,@tedcruz,RT @specialkids: 529 Proposal may benefit k-12 children with special needs. https://t.co/sdBbYea3jQ +06/27/2018,Politicians,@tedcruz,"#CruzCrew: Get your #ToughasTexas gear today! + +Order now --> https://t.co/idG3F7kfqZ #TXSen #KeepTexasRed https://t.co/ndm3OrQoLr" +06/27/2018,Politicians,@tedcruz,RT @SenTedCruz: Proud of the work @ptsdusa's Camp Hope is doing to provide for our veterans living w Post Traumatic Stress Disorder (PTSD).… +06/27/2018,Politicians,@tedcruz,"Thank you, #CruzCrew! #TXSen #KeepTexasRed https://t.co/01PFyTRW98" +06/27/2018,Politicians,@tedcruz,"RT @resurgent: 1) Cruz told truth. 2) But only with context. 3) Cruz gave that context. POLITIFACT RATING: Mostly False. (wut?) + +https://t.…" +06/26/2018,Politicians,@tedcruz,"RT @joelpollak: Now that it's clear #TravelBan is constitutional, does @SallyQYates have to give back her honorary degrees for claiming it…" +06/26/2018,Politicians,@tedcruz,@gabrielmalor https://t.co/SzMdhPImL7 +06/26/2018,Politicians,@tedcruz,"RT @gabrielmalor: This piece says that Cruz is ""technically correct"" and then rates the claim ""Mostly False"" in case you were wondering how…" +06/26/2018,Politicians,@tedcruz,"Small business drives our economy: 2/3 of new jobs come from small businesses. + +We want an environment where small… https://t.co/rQTwlCM4Q8" +06/26/2018,Politicians,@tedcruz,Texas Sentinels Foundation Honors Texan Medal Of Honor Recipient With New Home: https://t.co/pNdw4a04yL +06/25/2018,Politicians,@tedcruz,"RT @DonHuffines: I support @tedcruz for re-election. He’s leading our nation & TX toward a brighter & more prosperous future for all, and I…" +06/25/2018,Politicians,@tedcruz,RT @FreedomWorks: #SchoolChoice #ampFW https://t.co/WtNVpi178H +06/25/2018,Politicians,@tedcruz,"By investing in the next generation of students and expanding school choice, we’re able to allow more students to h… https://t.co/esCfxQ17Tt" +06/25/2018,Politicians,@tedcruz,RT @FreedomWorks: .@SenTedCruz introduces legislation expanding #SchoolChoice! #ampFW via @DailyCaller https://t.co/X3MXkgChhO +06/23/2018,Politicians,@tedcruz,RT @FreedomWorks: .@SenTedCruz introduces legislation expanding #SchoolChoice! #ampFW via @DailyCaller https://t.co/X3MXkgChhO +06/23/2018,Politicians,@tedcruz,"RT @FoxNews: .@tedcruz: ""It ought to be entirely consistent to protect kids, to keep kids with their parents, and at the same time respect…" +06/23/2018,Politicians,@tedcruz,"RT @chiproytx: Happy 70th birthday to Justice Clarence Thomas. One of the best human beings I have known, a great patriot, and someone I am…" +06/22/2018,Politicians,@tedcruz,"RT @TexasTribune: Today, @tedcruz and @JohnCornyn reaffirmed their commitment to keeping kids with their parents after they cross the borde…" +06/22/2018,Politicians,@tedcruz,RT @TexasCruzer: We ❤️ our Convention Volunteers!!! #CruzCrew https://t.co/0DutWxoKDl +06/22/2018,Politicians,@tedcruz,Get yours here: https://t.co/25cD9fUceA #TXSen #KeepTexasRed #CruzCrew https://t.co/2IFD3R8ssQ +06/22/2018,Politicians,@tedcruz,"RT @EmpowerTexans: @tedcruz introduces legislation that not only protects families, but ends catch and release. #txlege #TXSEN + +https://t.…" +06/21/2018,Politicians,@tedcruz,"RT @ALEC_Action: ALEC Action is proud to support the Student Empowerment Act to expand #SchoolChoice and #EmpowerOurStudents. + +@SenateGOP @…" +06/21/2018,Politicians,@tedcruz,"RT @LarryAudas: @tedcruz accommodates one, two and then a whole class of #Texas students visiting #DC. @TEGNA @KHOU Airport Group Pic. http…" +06/21/2018,Politicians,@tedcruz,RT @TheDCPolitics: Ted Cruz Introduces Legislation Expanding School Choice https://t.co/W9iyRel4O5 https://t.co/MnAJmBWcJT +06/21/2018,Politicians,@tedcruz,RT @DailyCaller: Ted Cruz Demands Investigation Into Taxpayer-Funded Global Warming ‘Advocacy’ https://t.co/bol3IYCETm https://t.co/t2Lvfc8… +06/20/2018,Politicians,@tedcruz,"RT @IsraeliPM: Israel thanks President Trump, Secretary Pompeo and Ambassador Haley for their courageous decision against the hypocrisy and…" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/iS7VfUqleE https://t.co/ibA3ALHFhI" +06/20/2018,Politicians,@tedcruz,"RT @politico: ""This has to stop,"" Texas Sen. Ted Cruz said when asked about the separation of migrant families at the border in his state.…" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/yI50mra7M2 https://t.co/EGOxL1I2mq" +06/20/2018,Politicians,@tedcruz,"RT @granitewinger: WATCH: @jimmykimmel and @tedcruz played a game of basketball, but most importantly, they raised over $80,000 for charity…" +06/20/2018,Politicians,@tedcruz,RT @SenMikeLee: I urge the Senate to do their job and take quick action on @SenTedCruz’s Protect Parents and Kids Act. We can end family se… +06/20/2018,Politicians,@tedcruz,RT @GlenMillsABC4: #Utah @SenMikeLee is supporting Sen. Ted Cruz’s border bill and wants his colleagues to take quick action on it. #utpol… +06/20/2018,Politicians,@tedcruz,"RT @SenJoniErnst: I am co-sponsoring @SenTedCruz Protect Kids and Family Act because I believe that we can, and should, treat children and…" +06/20/2018,Politicians,@tedcruz,RT @JimInhofe: Learn more about this important legislation here: https://t.co/Jcaqikv2bN +06/20/2018,Politicians,@tedcruz,"RT @SenToddYoung: I’ve signed on to co-sponsor the Protect Kids and Parents Act to keep families together, expedite hearings, and double th…" +06/20/2018,Politicians,@tedcruz,"RT @senorrinhatch: In addition to calling on the administration to halt family separations while Congress works on a legislative solution,…" +06/20/2018,Politicians,@tedcruz,"RT @SenatorWicker: I support the ""Protect Kids and Parents Act"" introduced by @SenTedCruz. It would #KeepFamiliesTogether & help clear the…" +06/20/2018,Politicians,@tedcruz,RT @SenPatRoberts: I am cosponsoring @SenTedCruz Protect Kids and Parents Act to stop parental separation at the border. https://t.co/Ab65D… +06/20/2018,Politicians,@tedcruz,"""Cruz’s bill seems to strike the right balance."" + +Ted Cruz's border bill to end family separations makes sense --> https://t.co/DMB1ljaWxP" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/hO2riT7sTq https://t.co/IfzlrlC5Uu" +06/20/2018,Politicians,@tedcruz,RT @CNN: Sen. Ted Cruz beat late-night host Jimmy Kimmel in a one-on-one basketball game https://t.co/F5xkq1V6vG https://t.co/hIMLpPKBAe +06/20/2018,Politicians,@tedcruz,RT @TIME: Texas Sen. Ted Cruz promises a bill to deal with the family separation crisis at the border https://t.co/3Avf2Opvfe https://t.co/… +06/19/2018,Politicians,@tedcruz,RT @TheRightScoop: Ted Cruz praises Trump-backed recision package as a FIRST STEP https://t.co/sFpTGB5jaS https://t.co/Sp4UWUWnJb +06/19/2018,Politicians,@tedcruz,RT @townhallcom: Immigration Firestorm: Tune Out the Shouting and Read Ted Cruz's Solid Plan on Family Separation https://t.co/QPXpiKeF7q +06/19/2018,Politicians,@tedcruz,Ted Cruz and Jimmy Kimmel are better at raising money for charity than they are at playing basketball: https://t.co/s76yIvWCkK #KimmelvsCruz +06/19/2018,Politicians,@tedcruz,"RT @TheRightScoop: TED CRUZ: Child separation has to stop, but this isn’t a NEW issue! – [VIDEOS] https://t.co/uIOHGhMrjZ https://t.co/1Ana…" +06/19/2018,Politicians,@tedcruz,RT @NBAWorldNewz: Ted Cruz and Jimmy Kimmel are better at raising money for charity than they are at playing basketball - CNN https://t.co/… +06/19/2018,Politicians,@tedcruz,"RT @JustinTHaskins: WATCH: @jimmykimmel and @tedcruz played a game of basketball, but most importantly, they raised over $80,000 for charit…" +06/19/2018,Politicians,@tedcruz,"RT @leebright: ""In the 4th District Congressional runoff, I am proud to endorse Lee Bright, and I urge voters there to join me by supportin…" +06/19/2018,Politicians,@tedcruz,"RT @CatholicVote: Sen. Ted Cruz has proposed emergency legislation that would: + +- Allow immigrant families entering illegally to stay toget…" +06/19/2018,Politicians,@tedcruz,RT @NRO: Ted Cruz Introduces Emergency Legislation to End Family Separation – It Looks Solid https://t.co/l81Zzxkxg6 via @DavidAFrench http… +06/19/2018,Politicians,@tedcruz,RT @EWErickson: TAKE ACTION: Tell Your Senator to Support Ted Cruz's Plan https://t.co/sPOHNykaDL https://t.co/oZACUpgsEb +06/19/2018,Politicians,@tedcruz,"WATCH: @jimmykimmel and I played a game of basketball, but most importantly, we raised over $80,000 for charity to… https://t.co/NyPzns0Caa" +06/19/2018,Politicians,@tedcruz,"RT @TexasChildrens: Thank you @JimmyKimmelLive, @tedcruz and everyone who donated to @TexasChildrens for your incredible support throughout…" +06/19/2018,Politicians,@tedcruz,RT @hughhewitt: .@TedCruz introduces legislation to keep immigrant families together after they cross the border https://t.co/2sDe825WCF vi… +06/19/2018,Politicians,@tedcruz,"RT @generation1TX: WE ARE THE CHAMPIONS!!! Sen. Cruz Wins against Jimmy Kimmel!! Thank You, Sen.Ted Cruz, for choosing Generation One for y…" +06/19/2018,Politicians,@tedcruz,RT @TheRightScoop: WATCH: Ted Cruz WHUPS Jimmy Kimmel in charity basketball game! https://t.co/0z3zOGmq2G https://t.co/rWyyyHFLFn +06/19/2018,Politicians,@tedcruz,"We had a great time playing basketball and raising over $80,000 for charity on Saturday! + +Watch highlights from the… https://t.co/VjTjcIvulA" +06/19/2018,Politicians,@tedcruz,"RT @AmeriCorps: Before hitting the hardwood in #KimmelvsCruz's Blobfish Classic 🏀, @SenTedCruz met with @AmeriCorpsNCCC members serving wit…" +06/19/2018,Politicians,@tedcruz,RT @HoustonChron: Ted Cruz introducing legislation to keep migrant families together https://t.co/lLMfUbiOTl +06/19/2018,Politicians,@tedcruz,RT @DailyCaller: Ted Cruz Announces Legislation To Keep Illegal Immigrant Families Together https://t.co/YuyCEPT6lA https://t.co/t6W2WyLTYl +06/19/2018,Politicians,@tedcruz,"RT @amzam: U.S. Sen. @TedCruz has introduced legislation to keep immigrant families together ""absent aggravated criminal conduct or threat…" +06/18/2018,Politicians,@tedcruz,"RT @Kenny_Mayne: As for the game itself.....you can see it tonight on @JimmyKimmelLive. + +In slow motion. + +https://t.co/seJqZOzcD1" +06/18/2018,Politicians,@tedcruz,RT @RepMattKrause: Great work by @tedcruz tailoring a solution that ensures families stay together and continues to enforce the rule of law… +06/18/2018,Politicians,@tedcruz,RT @statesman: BREAKING: Ted Cruz says he’ll introduce a bill to end most family separations https://t.co/fRMuM0cN3P https://t.co/L1ncSiJuFR +06/18/2018,Politicians,@tedcruz,RT @CaryCheshireTX: BREAKING: @tedcruz introduces legislation to protect families and end catch and release. #txlege #TX2018 #TXSEN https:… +06/18/2018,Politicians,@tedcruz,"RT @abc7breaking: Learn more about Senator Cruz's bill, which would double the number of federal immigration judges, from roughly 375 to 75…" +06/18/2018,Politicians,@tedcruz,"RT @DavidAFrench: My first take on the Cruz legislation. It looks solid, with one concern (as many folks are expressing in my timeline) abo…" +06/18/2018,Politicians,@tedcruz,RT @axios: NEW: Sen. Ted Cruz to introduce the first Republican bill aimed at solving the child separation policy https://t.co/Psqzxh2y0m +06/18/2018,Politicians,@tedcruz,RT @TheRightScoop: Ted Cruz JUST proposed a GREAT SOLUTION to the child separation chaos at the border https://t.co/oDr5IY89SA https://t.co… +06/18/2018,Politicians,@tedcruz,RT @trscoop: Ted Cruz JUST proposed a GREAT SOLUTION to the child separation chaos at the border https://t.co/kC0x1CueSu https://t.co/rluvs… +06/18/2018,Politicians,@tedcruz,RT @TexasTribune: New: Ted Cruz announced emergency legislation to keep immigrant families together after they cross the border into the Un… +06/18/2018,Politicians,@tedcruz,RT @WashTimes: BREAKING: Ted Cruz announces bill to stop family separations at border https://t.co/yyTn1hQH6K https://t.co/84kPgpyckC +06/18/2018,Politicians,@tedcruz,RT @cbs11jack: #BREAKING #Texas Senator @tedcruz is introducing emergency leg this week to keep families together after illegally crossing… +06/18/2018,Politicians,@tedcruz,RT @AllisonFox4News: .@tedcruz introducing emergency legislation to keep illegal immigrant families together https://t.co/uJdwAAptpC +06/18/2018,Politicians,@tedcruz,"RT @AmeriCorps: Before hitting the hardwood in #KimmelvsCruz's Blobfish Classic 🏀, @SenTedCruz met with @AmeriCorpsNCCC members serving wit…" +06/18/2018,Politicians,@tedcruz,"The winners on Saturday Night were the children of @generation1TX and @TexasChildrens. Over $83,000 raised and coun… https://t.co/hdEWL87bzW" +06/18/2018,Politicians,@tedcruz,RT @TexasChildrens: #KimmelVsCruz attracted thousands to Houston this past weekend! @abc13houston shares a behind-the-scenes look at the ga… +06/18/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible happened: Grayson Allen met Ted Cruz https://t.co/OUVICuhI47 +06/18/2018,Politicians,@tedcruz,"RT @club4growth: Club for Growth PAC is proud to endorse @tedcruz for U.S. Senate! + +When it comes to fiscal conservatives, Ted Cruz is the…" +06/18/2018,Politicians,@tedcruz,"With your generous help, we’ve already raised over $80k for two wonderful Texas charities. Thank you for making a d… https://t.co/Gy9ha62Yro" +06/18/2018,Politicians,@tedcruz,"And please make a donation to either @generation1TX or @TexasChildrens (or both) now: + +Generation One:… https://t.co/a4fgGhoQec" +06/17/2018,Politicians,@tedcruz,"The game was yesterday, but you can still make a difference today... + +Donate now to either @generation1tx or… https://t.co/uEAor4Tkq1" +06/17/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible happened: Grayson Allen met Ted Cruz https://t.co/CtJrtUIUoa +06/17/2018,Politicians,@tedcruz,"RT @SInow: Ted Cruz may be Grayson Allen's doppelgänger, but can he actually hoop? https://t.co/JFgQ69ZnRS" +06/17/2018,Politicians,@tedcruz,My dad has been my hero my whole life. Here’s to wishing a very happy #FathersDay to all the dads out there! https://t.co/aWSlA0aznY +06/17/2018,Politicians,@tedcruz,"RT @USNavy: On this #FathersDay and every day, we're thankful for our #USNavy dads! BZ! https://t.co/DOEehirmNE" +06/17/2018,Politicians,@tedcruz,RT @SylvesterTurner: Tip off for the much anticipated #blobfishclassic begins at 5pm as @jimmykimmel takes on Sen. @tedcruz in a 1-on-1 bas… +06/17/2018,Politicians,@tedcruz,RT @JeffEisenband: Ted Cruz relying hard on the right. https://t.co/8crmawT9UM +06/17/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible has happened: Grayson Allen met Ted Cruz https://t.co/DplMPpKLv3 +06/17/2018,Politicians,@tedcruz,RT @jimmykimmel: Agreed. Two great charities run by great people. https://t.co/VBDhB8YNso +06/17/2018,Politicians,@tedcruz,"The winner tonight? + +@generation1TX and @TexasChildrens + +Support them below: + +Generation One:… https://t.co/vTyZgX6vLW" +06/17/2018,Politicians,@tedcruz,Post game interview with @IAMGUILLERMO #KimmelvsCruz🏀 https://t.co/FQyLgukUP0 +06/16/2018,Politicians,@tedcruz,The crowd is fired up! #KimmelvsCruz🏀 #CruzToVictory https://t.co/jvMsdsU0Np +06/16/2018,Politicians,@tedcruz,RT @abc13houston: Sen. @tedcruz is rocking @HoustonRockets red and did a pregame interview with @IAMGUILLERMO before the #KimmelvsCruz game… +06/16/2018,Politicians,@tedcruz,RT @abc13houston: Sen. @tedcruz left this note in the locker room for @JimmyKimmelLive. What do y’all think about this message? https://t.c… +06/16/2018,Politicians,@tedcruz,20 minutes! #KimmelvsCruz🏀 https://t.co/PVVgejEMSy +06/16/2018,Politicians,@tedcruz,RT @BarstoolBDevils: Oh my god. https://t.co/GldNcAjR7j +06/16/2018,Politicians,@tedcruz,RT @DukeMBB: 🧐🧐🧐🧐🧐🧐🧐🧐🧐🧐 https://t.co/9AfUHUjLAY +06/16/2018,Politicians,@tedcruz,A couple of pregame interviews #KimmelvsCruz🏀 #CruzToVictory https://t.co/rP6nXG8Qdx +06/16/2018,Politicians,@tedcruz,"Rest easy, @jimmykimmel... you won’t be playing @GraysonJAllen today, but it looks like he’s made his pick...… https://t.co/Cb9vQDFRAn" +06/16/2018,Politicians,@tedcruz,RT @jeremiah_hunter: Awesome! My boys got to hang out with Senator Ted Cruz! https://t.co/vB5u98RIpB +06/16/2018,Politicians,@tedcruz,RT @BleacherReport: It finally happened @GraysonJAllen @tedcruz https://t.co/EK5qswyNsR +06/16/2018,Politicians,@tedcruz,"RT @marchmadness: The photo America has been waiting for... + +Grayson Allen + Ted Cruz = #Twinning 😂 + +(📷 - @tedcruz) https://t.co/goLRt1aCnf" +06/16/2018,Politicians,@tedcruz,"RT @SBNation: Looks like Ted Cruz is about to ball with Jimmy Kimmel for charity, and he brought in a stand in 😂 https://t.co/NGTA6QJLZA" +06/16/2018,Politicians,@tedcruz,"Picking up my stand in… are you ready, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/z8LGoM0ljV" +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: IT'S FOR THE KIDS! When Sen. @tedcruz and @JimmyKimmelLive hit the basketball court today, the real winners will be @Texa…" +06/16/2018,Politicians,@tedcruz,RT @BE_1776: Quick stop for @tedcruz at the RPT Congressional Lunch before heading back to Houston for the basketball game with Jimmy Kimme… +06/16/2018,Politicians,@tedcruz,RT @abc13houston: It's almost game time. Senator Ted Cruz and Jimmy Kimmel are just hours away from hitting the hardwood. https://t.co/L3T… +06/16/2018,Politicians,@tedcruz,"RT @tedcruz: Get ready for the showdown of the summer... + +Are you ready for it, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/DQ…" +06/16/2018,Politicians,@tedcruz,Meeting the future of the @TexasGOP #RPTCon18 https://t.co/sBhQKnsz6E +06/16/2018,Politicians,@tedcruz,Five hours until 🏀 time with ⁦@jimmykimmel⁩ #KimmelvsCruz #CruzToVictory https://t.co/ilXtWBCgre +06/16/2018,Politicians,@tedcruz,We need @KonniBurton to come back to the Texas Senate. She’s a warrior and a dear friend! #TXLege #RPTCon18… https://t.co/x27QkIupNk +06/16/2018,Politicians,@tedcruz,"Miss my speech at #RPTCon18? + +Watch it here: https://t.co/mdVA8PEKZ9 #txsen #KeepTexasRed https://t.co/2MBp3bxBaU" +06/16/2018,Politicians,@tedcruz,"RT @TeamTedCruz: #CruzCrew 📷 line! #RPTCon18 + +The @TexasGOP loves @tedcruz! +#TXSEN #KeepTexasRed https://t.co/AUfo024xT5" +06/16/2018,Politicians,@tedcruz,"RT @toddgillman: ""Bless you. I am Rafael Cruz. I'm the senator's father."" Long line for photos with @tedcruz at #RPT2018 https://t.co/34csR…" +06/16/2018,Politicians,@tedcruz,RT @toddgillman: .@tedcruz is now taking photos with fans at the @TexasGOP convention. Hundreds are lined up. His dad is keeping them occu… +06/16/2018,Politicians,@tedcruz,"RT @CourtneyABC13: ....and @tedcruz is playing for @generation1TX. So, if the senator wins #BlobfishBasketballClassic, @jimmykimmel must pa…" +06/16/2018,Politicians,@tedcruz,"RT @TeamTedCruz: The line to get a pic with @tedcruz at #RPTCon18 stretches all the way out to the back of the exhibit hall! + +Get in line a…" +06/16/2018,Politicians,@tedcruz,RT @WPAIntel: Hey #RPTCon2018! Remember that app ⁦@tedcruz⁩ mentioned? You can download it right here! https://t.co/at0lZjAp7o +06/16/2018,Politicians,@tedcruz,#CruzCrew: come get a photo at our @TexasGOP Convention booth now! #TXSen #KeepTexasRed https://t.co/OA7AjbW8yp +06/16/2018,Politicians,@tedcruz,"See y’all soon at the @TexasGOP convention! + +10 am CT #KeepTexasRed #CruzCrew #TXSen https://t.co/gjs1PgV6qB" +06/16/2018,Politicians,@tedcruz,RT @barstoolsports: Grayson Allen flying up draft boards after his most recent performance @BarstoolNewsN https://t.co/lzTS8gnKaN +06/16/2018,Politicians,@tedcruz,"GAME DAY! Are you ready for it? + +Tweet #TeamCruz below and let your followers know where you stand for #KimmelvsCruz!" +06/16/2018,Politicians,@tedcruz,RT @JohnCornyn: I think this is self-explanatory https://t.co/UdujQU229I +06/16/2018,Politicians,@tedcruz,RT @TeamTedCruz: I'm rooting for @tedcruz to take down @jimmykimmel in the #KimmelvsCruz showdown. RT if you are too! #CruzToVictory #TeamC… +06/16/2018,Politicians,@tedcruz,RT @TeamTedCruz: SATURDAY: It's Houston vs Hollywood and I'm rooting for @tedcruz to beat @jimmykimmel! RT if you are too! #KimmelvsCruz #T… +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: GAME DAY: In just a few hours, Sen. @tedcruz and @JimmyKimmelLive will meet face-to-face at @TexasSouthern for a charity…" +06/16/2018,Politicians,@tedcruz,Today... #KimmelvsCruz🏀 #CruzToVictory https://t.co/u5tNwDBSAX +06/16/2018,Politicians,@tedcruz,RT @rightwingtrout: I'm rooting for @tedcruz to take down @jimmykimmel in the #KimmelvsCruz showdown. RT if you are too! #CruzToVictory #Te… +06/16/2018,Politicians,@tedcruz,RT @AngelartrHughes: SATURDAY: It's Houston vs Hollywood and I'm rooting for @tedcruz to beat @jimmykimmel! RT if you are too! #KimmelvsCru… +06/16/2018,Politicians,@tedcruz,RT @alweaver22: VERY IMPORTANT NEWS: Ted Cruz says the Kimmel game will feature “the least talent in the history of basketball” https://t.c… +06/16/2018,Politicians,@tedcruz,"NEW VIDEO: Tweet #TeamCruz to unlock the full video NOW! + +It's Houston vs Hollywood. Are you ready, @jimmykimmel?… https://t.co/eFnAsJT8yf" +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: IT'S FOR THE KIDS: For all the mudslinging hilarity that has come up before this game, both @jimmykimmel and @tedcruz wan…" +06/15/2018,Politicians,@tedcruz,The #KimmelvsCruz showdown is about the kids --> https://t.co/CMokK0L4WT +06/15/2018,Politicians,@tedcruz,"RT @newzealblog: Ted Cruz Gets Ready To Rumble With Jimmy Kimmel – It’s The Showdown Of The Summer Y’all! + +""Houston is getting ready to rum…" +06/15/2018,Politicians,@tedcruz,"TOMORROW: The Showdown of the Summer at @TexasSouthern. + +Me vs @jimmykimmel. Tweet #TeamCruz to let everyone know w… https://t.co/fUnEy5RmAE" +06/15/2018,Politicians,@tedcruz,RT @abc13houston: BALLIN': Sen. @tedcruz was keeping it 💯 at practice today before his charity basketball game Saturday against @JimmyKimme… +06/15/2018,Politicians,@tedcruz,"Less than 24 hours to go... see you soon, @jimmykimmel #KimmelvsCruz🏀 #CruzToVictory https://t.co/1zkWqyEo6F" +06/15/2018,Politicians,@tedcruz,"RT @ColumbiaBugle: Ted Cruz playing basketball is probably the funniest thing you'll see all day. + +He's still going to beat Kimmel. https:…" +06/15/2018,Politicians,@tedcruz,RT @jennybethm: Text the number 500 to 96000 or cast your vote online to join me in electing @marklevinshow into the National Radio Hall of… +06/15/2018,Politicians,@tedcruz,RT @Rational_Press: Ted Cruz is my spirit animal. https://t.co/esTxb3SRHO +06/15/2018,Politicians,@tedcruz,"RT @JerryDunleavy: Okay so this #KimmelvsCruz hype video put out by @TedCruz is actually pretty good TBQH. +https://t.co/ngS4j0Opur" +06/15/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz's campaign, having quite a bit of fun, releases a trailer for his basketball game against @jimmykimmel tomorro…" +06/15/2018,Politicians,@tedcruz,RT @NickABC13: Here’s a look at Sen. @tedcruz shooting hoops ahead of tomorrow’s game with @jimmykimmel. https://t.co/31YoC4TIxT +06/15/2018,Politicians,@tedcruz,"RT @ScyllaLopez: Dude is serious about this game. Watch out, @jimmykimmel. +You gotta watch more of this practice video with @SenTedCruz to…" +06/15/2018,Politicians,@tedcruz,"RT @chicksonright: I LOVE this! + +GO Ted! https://t.co/CY23QmYYHq" +06/15/2018,Politicians,@tedcruz,"Left a note for you in your locker room, @jimmykimmel. #KimmelvsCruz https://t.co/N5f0rUgSFt" +06/15/2018,Politicians,@tedcruz,#CruzToVictory #KimmelvsCruz🏀 https://t.co/eGbVnMnIKu +06/15/2018,Politicians,@tedcruz,"RT @Newsweek: Jimmy Kimmel will face Ted Cruz on the court in ""Blobfish Basketball Classic"" https://t.co/PR9IxqoAaQ https://t.co/rjpJFNyqTj" +06/15/2018,Politicians,@tedcruz,RT @billboard: Ted Cruz listed by oddsmakers as favorite over Jimmy Kimmel for upcoming charity basketball game https://t.co/2d31nCZLGj htt… +06/15/2018,Politicians,@tedcruz,RT @TheRightScoop: Look out Jimmy Kimmel! Ted Cruz is DROPPING THE ROCK on the practice court before tomorrow’s big game! https://t.co/bUBK… +06/15/2018,Politicians,@tedcruz,"RT @TomAbrahams13: If you haven't watched this, you should. @tedcruz preparing for his game against @jimmykimmel in Houston at @TexasSouth…" +06/15/2018,Politicians,@tedcruz,"RT @TwitchyTeam: Think he's got a shot? Ted Cruz gears up for basketball game with Jimmy Kimmel [pics, video] https://t.co/OHV7gGfQDF" +06/15/2018,Politicians,@tedcruz,RT @abc13houston: @CNNJustin You can see more video from the practice here: https://t.co/qXf2a44XZJ +06/15/2018,Politicians,@tedcruz,@Zachary_Cohen @GraysonJAllen https://t.co/YrIf48RRM6 +06/15/2018,Politicians,@tedcruz,"Get ready for the showdown of the summer... + +Are you ready for it, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/DQoXuHgD1v" +06/15/2018,Politicians,@tedcruz,RT @ArmyStrong34: @abc13houston @tedcruz @JimmyKimmelLive @jimmykimmel He was better when he played for Duke. https://t.co/r4SYB2s9Kk +06/15/2018,Politicians,@tedcruz,RT @abc13houston: HE GOT GAME! Sen. @tedcruz hit the court today with 🔥🔥🔥 in preparation for his charity basketball game Saturday against @… +06/15/2018,Politicians,@tedcruz,"RT @NickABC13: He’s got game! Take a look at Sen. @tedcruz gets pointers from @UHouston great, Lynden Rose. Watch the shoot around live on…" +06/15/2018,Politicians,@tedcruz,RT @KHOUSportsMatt: #KHOU11 #KimmelvsCruz Senator Ted Cruz is working hard with UH Alum Lyndon Rose in preparation for his upcoming 1 on… +06/15/2018,Politicians,@tedcruz,RT @tedcruz: @keranews @jimmykimmel https://t.co/n3sa6BisC8 +06/15/2018,Politicians,@tedcruz,⛹️‍♂️ #KimmelvsCruz https://t.co/0EKVupOhpC +06/15/2018,Politicians,@tedcruz,Getting some tips from @UHCougarMBK Phi Slama Jama star Lynden Rose #KimmelvsCruz🏀 #CruzToVictory https://t.co/4iRWwdOuVb +06/15/2018,Politicians,@tedcruz,"RT @generation1TX: You've heard about the game on Saturday! If you haven't reserved your ticket yet, you can still support us by making a…" +06/15/2018,Politicians,@tedcruz,@keranews @jimmykimmel https://t.co/n3sa6BisC8 +06/15/2018,Politicians,@tedcruz,A little improvement 🏀 #KimmelvsCruz #CruztoVictory https://t.co/iCyIGthoBO +06/15/2018,Politicians,@tedcruz,Some practice before the big game tomorrow... 🏀 #KimmelvsCruz #CruzToVictory https://t.co/xPXKy2ch2n +06/15/2018,Politicians,@tedcruz,"RT @starsandstripes: A Medal of Honor winner is settling into his brand new, donated house in Texas https://t.co/oR1ohAWiTI" +06/15/2018,Politicians,@tedcruz,⛹️ https://t.co/P3gyEgeesn +06/15/2018,Politicians,@tedcruz,RT @DiazChron: Ted Cruz v Jimmy Kimmel one-on-one hoops: Bible Belt v Hollywood https://t.co/3KqdSNwbqN via @HoustonChron +06/15/2018,Politicians,@tedcruz,"RT @FNC_Ladies_Rule: 🏀 Jimmy Kimmel is the underdog heading into Saturday's charity game against Ted Cruz, betting site says + +https://t.co…" +06/15/2018,Politicians,@tedcruz,Only on The Ocho. https://t.co/6ylXU9lqjr +06/30/2018,Politicians,@JohnKasich,"Six GM facilities in Ohio provide jobs for about 6,000 Ohioans. + +Because of this Administration’s trade war, those… https://t.co/eCeSMRp4ES" +06/30/2018,Politicians,@JohnKasich,"As the State of Ohio closes out its fiscal year today, I’m pleased to report that our budget is balanced and our fi… https://t.co/OZf0VvaT2V" +06/30/2018,Politicians,@JohnKasich,The priority along our border must be to reunite these families. We need to bring everyone together and deal with t… https://t.co/iL8xBCbkPo +06/29/2018,Politicians,@JohnKasich,"Excellent example of business and education partnering together to help Ohioans increase their tech skills! + +https://t.co/OKepZ6G7E3" +06/29/2018,Politicians,@JohnKasich,The courage and determination of the @capgaznews staff has been incredible. A strong reminder of the importance of… https://t.co/8o9rv49FmH +06/28/2018,Politicians,@JohnKasich,Terrible news out of Annapolis today -- five newspeople senselessly and tragically murdered. Local law enforcement… https://t.co/nxkz4dnXyV +06/28/2018,Politicians,@JohnKasich,Columbus has “implemented a thoughtful business approach and capitalized on its local institutions to build a well-… https://t.co/Q31FI4DwOb +06/27/2018,Politicians,@JohnKasich,"In Ohio, we’ve been working to help legal immigrants successfully integrate in our communities. I appreciate member… https://t.co/0H6jTHp6mI" +06/27/2018,Politicians,@JohnKasich,"From biotech to software to life sciences, @ohiou’s Innovation Center is inspiring exciting new fields that will gr… https://t.co/yjapwZbcA6" +06/26/2018,Politicians,@JohnKasich,Did anyone really believe American businesses would sit back while the administration’s tariffs force their costs t… https://t.co/XHXRfGg1s9 +06/26/2018,Politicians,@JohnKasich,"Today the CBO announced the federal debt is headed for its highest levels since World War II. + +As I’ve long been sa… https://t.co/xtBvTmLqeM" +06/26/2018,Politicians,@JohnKasich,"Today marks the 50th anniversary of @TheKingCenter, honoring the legacy of one of America’s greatest leaders and re… https://t.co/APv3nkOemw" +06/26/2018,Politicians,@JohnKasich,"For the future of America, both the left and the right need to remember our values, pursue truth and do what's best… https://t.co/oNLgEBmFGl" +06/25/2018,Politicians,@JohnKasich,We are continuing to lead the world in transportation technology – making our roads safer and our lives easier at t… https://t.co/6YMt4E5N9O +06/25/2018,Politicians,@JohnKasich,"Ohioans: Please tune in to @TheOhioChannel at 5:30PM tonight to see my interview on @PBS @FiringLineShow! + +If you'd… https://t.co/J8VfgB5h4b" +06/24/2018,Politicians,@JohnKasich,Saddened to hear about the death of an officer of the Mentor Police Department. We extend our deep condolences to t… https://t.co/aBce8UjKz2 +06/23/2018,Politicians,@JohnKasich,"There’s a reason Ohio cities are attracting more and more millennials – innovation and opportunity. + +https://t.co/Unf0zoRuRz" +06/23/2018,Politicians,@JohnKasich,It’s time for politicians in Washington to stop pointing fingers and playing politics. Solve the problem. There’s a… https://t.co/nSnY6Mpyj2 +06/23/2018,Politicians,@JohnKasich,Thank you for having me on! https://t.co/pTA26QoWft +06/22/2018,Politicians,@JohnKasich,"With over a half-million jobs created since 2011, JobsOhio has become a model for economic development across the c… https://t.co/Tx5yyr0DTQ" +06/22/2018,Politicians,@JohnKasich,"UPDATED: I will be on @NPRWeekend Saturday around *9:20AM ET! + +Thx @NPR and @nprscottsimon for having me! https://t.co/JEIiROcvNB" +06/22/2018,Politicians,@JohnKasich,Lots to discuss on @CNN’s @Smerconish at 9AM & 6PM ET on Saturday! Hope you can tune in! https://t.co/T3LjOwty9U +06/22/2018,Politicians,@JohnKasich,Looking forward to discussing the future of the Republican Party with @NPR's @NPRScottSimon Saturday morning around… https://t.co/mXhAGJb3kS +06/22/2018,Politicians,@JohnKasich,Tune in! https://t.co/en13enT487 +06/22/2018,Politicians,@JohnKasich,Looking forward to being on this week’s @PBS @FiringLineShow - check your local listing and tune in! https://t.co/v54E83jY7O +06/22/2018,Politicians,@JohnKasich,RT @FiringLineShow: This week on #FiringLineShowPBS... we go #national! Check your local @pbs listings to watch https://t.co/lBzt05iNPe +06/22/2018,Politicians,@JohnKasich,What a fun event for the whole family! https://t.co/vsyqPXmZLt +06/21/2018,Politicians,@JohnKasich,"We all hope @KingJames stays here in Ohio, but no matter what, we're +proud of all he's doing as a role model for yo… https://t.co/kw8b50TxAO" +06/21/2018,Politicians,@JohnKasich,"AP: House GOP postpones key immigration vote amid party infighting +https://t.co/YO2yRYfvZS + +=== + +Enough is enough.… https://t.co/tqV5bGsJN2" +06/21/2018,Politicians,@JohnKasich,"In Ohio, we have been working to better align education and workforce-training to get people on a path to a rewardi… https://t.co/q8WprT7cQi" +06/21/2018,Politicians,@JohnKasich,It’s great to see more low-cost pathways for Ohioans to get college degrees all across the state. https://t.co/NChVRwFXtG +06/21/2018,Politicians,@JohnKasich,The government needs all hands on deck to protect these children and reunite these families. Enough is enough. Get… https://t.co/PxRqY5BBYa +06/20/2018,Politicians,@JohnKasich,My statement on the President's executive order. https://t.co/viCqAt3KN5 +06/20/2018,Politicians,@JohnKasich,"In the fight against drugs, we need all hands on deck! I appreciate all the members of the @OhioOpioidEdu coming to… https://t.co/BHCwp3NueJ" +06/20/2018,Politicians,@JohnKasich,The innovations coming out of Cincinnati Children’s Hospital are just incredible. Keeping our kids safe and comfort… https://t.co/peXt1VD0e4 +06/19/2018,Politicians,@JohnKasich,"Can you imagine being ripped away from your family? That's no +solution. That's not America. https://t.co/ak3pCp3X6E" +06/19/2018,Politicians,@JohnKasich,"When I look down at the border, I feel as though in some people’s eyes these people are objects, that they’re not p… https://t.co/g9KtXNY8Sp" +06/19/2018,Politicians,@JohnKasich,Looking forward to speaking with @BrookeBCNN on @CNNNewsroom today at 2PM ET. Hope you can tune in! https://t.co/MwQlSh12B6 +06/19/2018,Politicians,@JohnKasich,Looking forward to appearing on the @11thHour tonight on @MSNBC. Tune in around 11PM ET! https://t.co/dnf8VRpQhV +06/18/2018,Politicians,@JohnKasich,"Ohio has come a long way since losing 350,000 jobs, and we’ve worked hard since 2011 to transform this state for gr… https://t.co/yBIUeb6SAd" +06/18/2018,Politicians,@JohnKasich,"Unbelievably, the Administration has chosen to no longer defend the law of the land that protects those with pre-ex… https://t.co/QDIGi1rI30" +06/18/2018,Politicians,@JohnKasich,Ripping apart families is serious business. It’s up to all of us to speak out. https://t.co/HftFLAOmlf +06/18/2018,Politicians,@JohnKasich,"We are LIVE today at JobsOhio to celebrate Ohio’s strong private sector growth — 520,500 private sector jobs since… https://t.co/hwHBB2vZLh" +06/18/2018,Politicians,@JohnKasich,Our country is tearing kids from their moms and dads. I can’t believe it. Can you imagine it happening to your fami… https://t.co/Q8sHLuEdI7 +06/18/2018,Politicians,@JohnKasich,"Tune in to @MSNBC with @SRuhle right now. I’ll be talking economy, entitlements, immigration and more." +06/17/2018,Politicians,@JohnKasich,Encouraging to see reports of fewer overdose deaths in some of our communities. Let’s hope this trend continues. F… https://t.co/aPesMfktqG +06/17/2018,Politicians,@JohnKasich,"I’m so blessed to have my girls. To everyone who feels as lucky as I do to be called “dad,” I hope you have a great… https://t.co/SYTwmVQI5g" +06/17/2018,Politicians,@JohnKasich,Want proof that the Ohio Model is working? https://t.co/DfFSwesPwi +06/17/2018,Politicians,@JohnKasich,"It’s getting hot outside, make sure you take some time to check in on your family and neighbors. Click here for tip… https://t.co/V43PHae0dj" +06/16/2018,Politicians,@JohnKasich,"Since 2011, Ohio has added 520,500 new private sector jobs! That means more opportunities, stronger families, and a… https://t.co/iBU9ttriNY" +06/16/2018,Politicians,@JohnKasich,"Great work by law enforcement in Dayton keeping this deadly drug off our streets. +https://t.co/1gTbxnKRCE" +06/15/2018,Politicians,@JohnKasich,We can’t allow our seniors to be victims of abuse. Learn the signs of elder abuse – help our elders live with digni… https://t.co/j9gd9LZ4xA +06/15/2018,Politicians,@JohnKasich,"Quit separating families. It's that simple. + +https://t.co/8C7E5QFyHV https://t.co/RWo6SZzgiu" +06/15/2018,Politicians,@JohnKasich,"With today’s jobs report, Ohio is now creating jobs 48 percent faster than the national rate since the start of the… https://t.co/6VBfHG1CZM" +06/15/2018,Politicians,@JohnKasich,"New jobs report out this morning shows more than 20,000 private sector jobs created in Ohio last month. We're showi… https://t.co/xqsYUJAG5b" +06/15/2018,Politicians,@JohnKasich,"Logistics has become a big part of Ohio’s more diversified economy. We’re leaning into it, and it’s paying off for… https://t.co/FI9SVtAp4A" +06/14/2018,Politicians,@JohnKasich,Today we take pride in the stars and stripes and honor Old Glory. #FlagDay https://t.co/gUeZFK2sEJ +06/14/2018,Politicians,@JohnKasich,"Good for @SenBobCorker for calling attention to Congress’ inaction on common-sense, conservative issues like DACA a… https://t.co/V4PILvKVMt" +06/14/2018,Politicians,@JohnKasich,A sad time for American values. The inaction by Congress to fix DACA will certainly be remembered when voters go to… https://t.co/7AOBM0d2zJ +06/13/2018,Politicians,@JohnKasich,"Ohio goes the extra mile to help our veterans find their next job opportunity. If you know a veteran, tell them abo… https://t.co/XHw9Oxt4ph" +06/13/2018,Politicians,@JohnKasich,"Columbus is booming. Ohio is booming. We’re not slowing down. +https://t.co/63AppU5IaD" +06/12/2018,Politicians,@JohnKasich,"Businesses. Schools. Jobs. All are growing stronger thanks to Ohio’s all-of-the-above energy policy. +https://t.co/z6MTBbC6mS" +06/12/2018,Politicians,@JohnKasich,"Happy Birthday to @GeorgeHWBush, one of America's most honorable leaders. Thank you for your service to our nation! https://t.co/cTHuckKqpL" +06/12/2018,Politicians,@JohnKasich,Time is up. Republicans can’t sit on the sideline any longer. Sign the discharge petition. Act on DACA now. https://t.co/LDui4ZUfOY +06/12/2018,Politicians,@JohnKasich,Promises from #NorthKorea don’t matter; we should not back off our economic and political pressure until there is a… https://t.co/MZwdwEAMRy +06/11/2018,Politicians,@JohnKasich,"As children, these people didn’t choose to come to America -- and as adults they’ve followed the rule of law, raise… https://t.co/PqXsOTVUuE" +06/11/2018,Politicians,@JohnKasich,We should not give anything away to #NorthKorea. We have to keep the pressure up until we get verifiable results. T… https://t.co/0sAnSqrqBP +06/11/2018,Politicians,@JohnKasich,"This is huge for NW Ohio! JobsOhio and their regional partners deserve a lot of credit for this big win! +https://t.co/v6aAYRxduX" +06/10/2018,Politicians,@JohnKasich,A sad and shameful end to the #G7Summit with America again standing alone while our allies fill the vacuum of leade… https://t.co/vrQvPpvlMV +06/10/2018,Politicians,@JohnKasich,"Ohio’s interactive budget is now two years old. We take taxpayer dollars seriously, so we built this comprehensive… https://t.co/Lcc16CLuYt" +06/09/2018,Politicians,@JohnKasich,Read more: Global security suffers when Trump snubs America’s trading allies. @GlobeAndMail #G7Summit… https://t.co/3l14YnWRTx +06/09/2018,Politicians,@JohnKasich,"Free trade is key to innovation, expansion and lasting global security. As the G-7 summit concludes in Quebec today… https://t.co/oztoIj8VBf" +06/08/2018,Politicians,@JohnKasich,"As the G-7 kicks off in Quebec, I hope the attendees will take some time to read my op-ed in Canada’s @GlobeandMail… https://t.co/4QX1kNCmKm" +06/08/2018,Politicians,@JohnKasich,"If life seems hopeless, contact someone. There is always someone there to listen. + +National suicide prevention hot… https://t.co/BIDfIHCVQ4" +06/08/2018,Politicians,@JohnKasich,President Trump's idea of renewing Russian membership in the G-7/G-8 does not protect or defend the national securi… https://t.co/SwuRbIcU0I +06/07/2018,Politicians,@JohnKasich,"RT @ForeignAffairs: In the new issue of Foreign Affairs, @JohnKasich writes about the right way put America first https://t.co/7kRDkW7B2E" +06/07/2018,Politicians,@JohnKasich,"DREAMers are our neighbors, schoolmates and co-workers. They live in our communities and are Americans in every sen… https://t.co/oNFjVdlX3K" +06/07/2018,Politicians,@JohnKasich,"WAPO: “If Stripmatic’s experience is any guide, protectionism may already be backfiring on Americans and underminin… https://t.co/U4repVZYqE" +06/07/2018,Politicians,@JohnKasich,"There's a better way to put America first. A smarter way. One that makes us more secure. + +Here it is:… https://t.co/1GqPzuLQiD" +06/07/2018,Politicians,@JohnKasich,DREAMers didn't have a choice coming to America as children. They've done nothing wrong since they got here. In fac… https://t.co/fahBadwh6h +06/07/2018,Politicians,@JohnKasich,"If you’re looking for your next great job opportunity, there are currently over 150,000 jobs available on … https://t.co/3yGuo033fB" +06/06/2018,Politicians,@JohnKasich,The members of the General Assembly have been active partners in Ohio’s success and I look forward to continuing th… https://t.co/mdPr5280V1 +06/06/2018,Politicians,@JohnKasich,We can’t make America First if we refuse to even play ball in the same league as our allies. Trade wars will only h… https://t.co/TxkVD8dE1K +06/06/2018,Politicians,@JohnKasich,"On this anniversary of D-Day, President Reagan’s words from his 1984 commemoration at Pointe du Hoc in Normandy con… https://t.co/1cPKXhVSCG" +06/06/2018,Politicians,@JohnKasich,"This is someone’s healthcare. Their retirement. Unless Congress gets serious about our national debt, our entire co… https://t.co/fNhnmd6ooN" +06/05/2018,Politicians,@JohnKasich,"American leaders who offer hope and challenge us to be better people are the ones we remember. This week, we rememb… https://t.co/6ZGGAfDh55" +06/05/2018,Politicians,@JohnKasich,"Echoes from the past? Maybe, but this feels different. Check out Jules Witcover’s column in the @BaltimoreSun about… https://t.co/Wqj3ywYYbA" +06/05/2018,Politicians,@JohnKasich,"It's time to be real. Russia and the West are in conflict and their behavior can not be tolerated. + +Read my column… https://t.co/rsPnnOLWe2" +06/04/2018,Politicians,@JohnKasich,"We helped set the stage for strong economic growth by cutting taxes, reducing unnecessary red tape and keeping Ohio… https://t.co/eiF0JMEegA" +06/04/2018,Politicians,@JohnKasich,"Here in Ohio, @Microsoft and @CWRU are coming together to develop new, cool tech. Further proof that Ohio continues… https://t.co/RKRPwUpOgw" +06/04/2018,Politicians,@JohnKasich,"RT @WSJ: Opinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/NVQCKDdXtQ" +06/03/2018,Politicians,@JohnKasich,Why do Congressional leaders feel they have to ask @POTUS for permission to do anything? Pass something. Let him ve… https://t.co/J68AnSxKVd +06/03/2018,Politicians,@JohnKasich,"Tariffs don’t make America First — they make it America Alone. + +Fair, free competitive trade is good for the USA. https://t.co/bjJlnuPtYk" +06/03/2018,Politicians,@JohnKasich,Promises don’t matter. We cannot let up the pressure on North Korea. https://t.co/2DgWeGbZHg +06/03/2018,Politicians,@JohnKasich,I’ll be on @FaceTheNation with @MargBrennan today. Make sure you check your local listings and tune in:… https://t.co/EF5vo60pRY +06/02/2018,Politicians,@JohnKasich,Hope you can tune in to @CBS @FaceTheNation Sunday morning. I'll be on to talk about why I'm standing with… https://t.co/JxZ8h0mmj1 +06/02/2018,Politicians,@JohnKasich,I’ll be on @FaceTheNation with @MargBrennan this Sunday. Check your local listings and tune in:… https://t.co/yRYTfzzVMm +06/02/2018,Politicians,@JohnKasich,So proud of my daughter Emma — what she’s accomplished at the state track championships these past four years is in… https://t.co/zm8DpBpgkl +06/01/2018,Politicians,@JohnKasich,"Improving cybersecurity has been a priority for us. With this new cyber range, we’ll have a virtual environment to… https://t.co/8AK9NcjWHf" +06/01/2018,Politicians,@JohnKasich,RT @FaceTheNation: SUNDAY: don't miss Ohio GOP Gov. @JohnKasich on @FaceTheNation https://t.co/CoBpCuagIb https://t.co/hU5HJOQ3Yj +06/01/2018,Politicians,@JohnKasich,So proud of Emma and her teammates! https://t.co/1ELYZtzjOa +06/01/2018,Politicians,@JohnKasich,Here at the HS state track meet. Just watched my daughter Emma and her 4x200 relay team advance to the state champi… https://t.co/DReFDlrQwh +06/01/2018,Politicians,@JohnKasich,"Central Ohio is booming! Thanks to the work of #JobsOhio and @CBusRegion, 150,000 new jobs have been added to the C… https://t.co/tZZTfB7L5c" +06/01/2018,Politicians,@JohnKasich,It all starts tonight. Let’s go @Cavs! #WhateverItTakes +06/01/2018,Politicians,@JohnKasich,RT @cspan: Governor @johnkasich (R-OH) at Harvard @kennedy_school – 8:25pm ET on C-SPAN https://t.co/9y6UBycA3C +06/01/2018,Politicians,@JohnKasich,Just had a great call with @RepCurbelo who is fighting for Dreamers. He's the kind of GOPer I will work hard for an… https://t.co/01kEtBBymj +05/31/2018,Politicians,@JohnKasich,The ballooning national debt is going to suffocate our economy if we don’t get it under control. Read my column tod… https://t.co/uMpifEVniS +05/31/2018,Politicians,@JohnKasich,The occupant of the Oval Office should speak for all Americans. Enough with the political division. @POTUS should c… https://t.co/Sa2OcmLV2C +05/31/2018,Politicians,@JohnKasich,"RT @WSJopinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/BVn1SdM170 via @WSJOpinion" +05/31/2018,Politicians,@JohnKasich,"RT @WSJ: Opinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/BceYhYqU7i" +05/31/2018,Politicians,@JohnKasich,"By imposing damaging tariffs, do we really want to treat our allies like enemies? That’s not how America leads. It… https://t.co/YppsMhf4mR" +05/31/2018,Politicians,@JohnKasich,"With these tariffs, it’s no longer America first. What we’re seeing now is America alone. https://t.co/UAcZUcAgOv" +05/31/2018,Politicians,@JohnKasich,I really appreciate @CNN wanting to talk about the importance of getting DACA passed through congress. I’ll be chat… https://t.co/7oVbmhBYdj +05/31/2018,Politicians,@JohnKasich,My latest column in today’s @WSJ about our nation's out-of-control national debt. Please share your thoughts!… https://t.co/pfemot54Fo +05/31/2018,Politicians,@JohnKasich,Our $21 trillion national debt should be setting off alarm bells for families across the nation. What can the count… https://t.co/iP05cPiVtE +05/30/2018,Politicians,@JohnKasich,"The Cleveland Clinic is always on the cutting-edge of medical innovation… and now they’re at it again.  +https://t.co/9OLme0hfv4" +05/30/2018,Politicians,@JohnKasich,Getting students involved in in-demand fields is so vital to preparing them for successful careers — it’s great to… https://t.co/JCYuCImuWj +05/30/2018,Politicians,@JohnKasich,"RT @NatImmForum: .@JohnKasich: “[Dreamers] are Americans in every sense, except for their paperwork. They grew up in this country. They are…" +05/30/2018,Politicians,@JohnKasich,Great news for Cincinnati! Congratulations! https://t.co/y3txPDbuJn +05/29/2018,Politicians,@JohnKasich,"Ohio is the proud home to the +@AFMuseum. It’s a must see for those traveling to the Buckeye State and it’s +one of t… https://t.co/HbrBPH2sZX" +05/29/2018,Politicians,@JohnKasich,"Read my latest op-ed in @USATODAY. #DACA should be a slam dunk for Congress. + +https://t.co/5zcbJaGymv https://t.co/23OPOgUdmA" +05/29/2018,Politicians,@JohnKasich,"Time’s Up, Congress! If leadership won’t act to find a solution for Dreamers, lawmakers need to trigger change by… https://t.co/NbE1XDg7BH" +05/28/2018,Politicians,@JohnKasich,"On this #MemorialDay, we remember the heroic men and women who gave their lives in service to our country. May they… https://t.co/yWIrqhkrGq" +05/28/2018,Politicians,@JohnKasich,"After last night, there really can’t be a doubt in anyone’s mind. @KingJames is just the best. https://t.co/o5XjFC7JAu" +05/28/2018,Politicians,@JohnKasich,"Today, we are lowering the flags in honor all of those heroes who gave their lives defending our great nation. https://t.co/KUbTehU2ru" +05/28/2018,Politicians,@JohnKasich,"Incredible. See you in the Finals, @cavs! + +#WhateverItTakes https://t.co/0KgCsgX07h" +05/28/2018,Politicians,@JohnKasich,Proud moment today as my daughters celebrated their graduation from high school. https://t.co/UKmHsCH4Tx +05/27/2018,Politicians,@JohnKasich,"The health care industry is thriving in Ohio.  +https://t.co/mzn8MWmMAw" +05/27/2018,Politicians,@JohnKasich,Cincinnati is a great place to live and a great place to visit – there’s so much to do and see. And the same is tru… https://t.co/21cJKqnspO +05/26/2018,Politicians,@JohnKasich,"More than six years ago, Ohio created a Human Trafficking Taskforce to raise awareness to help prevent this horribl… https://t.co/V6HpSkZz8m" +05/26/2018,Politicians,@JohnKasich,"This week, I signed an executive order to help improve the lives of Ohioans with developmental disabilities with a… https://t.co/5jHFm1hrdT" +05/26/2018,Politicians,@JohnKasich,Congrats to Emma and her @WCWarriorSports teammates! Their strong performance at regionals in the 4x100 & 4x200 has… https://t.co/xw8l9NiNbI +05/25/2018,Politicians,@JohnKasich,"""There's no wall at the Ohio border"" +Read my recent guest column here: https://t.co/CqgUyuLgFv + +https://t.co/P59XILJQTu" +05/25/2018,Politicians,@JohnKasich,"To all those traveling across Ohio this #MemorialDayWeekend, stay safe out there! And remember, … https://t.co/hPxpQsDYps" +05/25/2018,Politicians,@JohnKasich,Some virtues are written on our hearts and they’re instinctive. Just look at what @JJWatt has done for so many peop… https://t.co/gPJdPWwRQw +05/24/2018,Politicians,@JohnKasich,"Today, I signed an executive order declaring Ohio a Technology First state — taking an important step toward improv… https://t.co/IJQUPPr5nl" +05/24/2018,Politicians,@JohnKasich,"RT @DOMTIBERI: .@JohnKasich please share... +Don't let your child become a STATISTIC. If your CHILD drives RECKLESS. drives DISTRACTED. Tak…" +05/24/2018,Politicians,@JohnKasich,"When we recognize the virtues of love, compassion and humility, making decisions as a leader is easy. Too many lead… https://t.co/DWzUEXJGHW" +05/24/2018,Politicians,@JohnKasich,Ohio Gov. John Kasich joins developmentally disabled advocates to sign an executive order declaring Ohio a Technolo… https://t.co/ez95civ33b +05/24/2018,Politicians,@JohnKasich,Behind the Scenes: Gov. Kasich and special guest Milo getting ready for a press conference to announce that Ohio wi… https://t.co/9WfriQvkTR +05/24/2018,Politicians,@JohnKasich,This morning we will be taking an important step forward in our efforts to improve the lives of our neighbors with… https://t.co/pI5Vcw2gpH +05/24/2018,Politicians,@JohnKasich,Thank you for the opportunity. It was my honor! https://t.co/0GyNWtZLqI +05/24/2018,Politicians,@JohnKasich,"As our politics shows, in some ways my generation has failed us. To all of the Millennials and young Americans, the… https://t.co/NHnLUL8C7U" +05/23/2018,Politicians,@JohnKasich,It’s up to each of us to live a life a little bigger than ourselves. Don’t wait for politicians to fix our country. https://t.co/QHZWRBVw6w +05/23/2018,Politicians,@JohnKasich,I hope you can tune in at 2PM ET today. I'm honored to have the opportunity to give the @Harvard @Kennedy_School gr… https://t.co/9RWOmRfMuR +05/23/2018,Politicians,@JohnKasich,Honored to have the opportunity to deliver the graduation address today at @Harvard University's @Kennedy_School. T… https://t.co/aaH2VeKACL +05/23/2018,Politicians,@JohnKasich,Life in Boston https://t.co/d9rB0OaiOw +05/22/2018,Politicians,@JohnKasich,"Data analytics is key to solving many of the challenges facing society, and Ohio has been working to be a leader in… https://t.co/e5qoFo1HIZ" +05/22/2018,Politicians,@JohnKasich,It’s amazing to see companies coming forward with innovative ideas like this that can be put to use in combatting o… https://t.co/tm4KF0cbBv +05/22/2018,Politicians,@JohnKasich,The tsunami of change that’s coming to our workforce is among the most important issues facing our nation. Just fin… https://t.co/xb3aBPrPRy +05/22/2018,Politicians,@JohnKasich,Union Metal has been manufacturing in Canton since 1906. Great to see this historic facility and hundreds of Stark… https://t.co/23cY9lGw7J +05/21/2018,Politicians,@JohnKasich,"In Ohio, we’re utilizing technology to help those with developmental disabilities. We’re planning to take our effor… https://t.co/vOHWM5VzSy" +05/21/2018,Politicians,@JohnKasich,Gov. Kasich is live speaking at Ohio’s annual wreath-laying ceremony honoring our fallen heroes. Watch at… https://t.co/U43dR9UWiO +05/21/2018,Politicians,@JohnKasich,"Today, Ohio honors those military men and women who made the ultimate sacrifice. Join us live for our annual wreath… https://t.co/VMNlpg4MQ1" +05/20/2018,Politicians,@JohnKasich,"Last week, we created the Office of Opportunities for New Americans to focus on making sure new Ohioans are job rea… https://t.co/afRU9Dxt7h" +05/19/2018,Politicians,@JohnKasich,"So proud of my daughter, Emma, and her teammates for their first place finish at the district track meet in both th… https://t.co/7ptE1Qp5DP" +05/19/2018,Politicians,@JohnKasich,"On this Armed Forces Day, we thank all those that served and those that continue to serve in our nation’s military… https://t.co/yr8UWsOisr" +05/18/2018,Politicians,@JohnKasich,"Today, we’re lowering the flags in honor of the victims of the attack in Santa Fe, Texas. https://t.co/koJWBI1hJx" +05/18/2018,Politicians,@JohnKasich,Enjoyed it! https://t.co/uqEhr80QBX +05/17/2018,Politicians,@JohnKasich,The Midwest IS booming. And Ohio is helping to lead the way. We have all the resources for success – a talented wor… https://t.co/heFaLfE2VV +05/17/2018,Politicians,@JohnKasich,"Ohio isn’t slowing down… + +“12, 874 new entities filed to do business in Ohio last month, making April 2018 the bes… https://t.co/NHBg29imIR" +05/16/2018,Politicians,@JohnKasich,"It’s great to see Amazon continuing to grow and invest in Ohio. +https://t.co/vFTAxSlPlq" +05/16/2018,Politicians,@JohnKasich,RT @OHPediatricians: Check out Ohio AAP board member Mike Gittelman @gittel21 who spent a few minutes talking with @Local12 #Cincinnati abo… +05/16/2018,Politicians,@JohnKasich,.@CarloslCurbelo has been a leading voice in the GOP on this issue. His peers in Washington should listen and vote with their hearts. #DACA +05/16/2018,Politicians,@JohnKasich,Let's not let politics prevent Republicans from doing the right thing on #DACA. These are real lives we're talking… https://t.co/4u6DK9N45F +05/16/2018,Politicians,@JohnKasich,Appreciated students from Hoffman Trails Elementary School listening to a little advice from the governor today dur… https://t.co/n6UreeQuve +05/16/2018,Politicians,@JohnKasich,"A state built by immigrants, Ohio is finding better ways to help newcomers achieve success in the Buckeye State. Re… https://t.co/xWRPuidlIH" +05/15/2018,Politicians,@JohnKasich,If you’re a legal immigrant or are considering a move to America and you’re looking for great opportunities – come… https://t.co/kbU7hcdiBv +05/15/2018,Politicians,@JohnKasich,Looking forward to talking about our new Office of Opportunities for New Americans with @camanpour on @CNNi. Tune in at 2pm. +05/15/2018,Politicians,@JohnKasich,"Today, we’re announcing a new initiative to help legal immigrants successfully integrate into Ohio. Join us at 11am… https://t.co/kGuNwkFutn" +05/15/2018,Politicians,@JohnKasich,Today we recognize Peace Officers Memorial Day and National Police Week by lowering the flags in honor of the tirel… https://t.co/0JTZKOmjLh +05/14/2018,Politicians,@JohnKasich,Violence has no place in our schools — no student should ever feel unsafe in their classrooms. I’m so proud to see… https://t.co/FFXkx9N7zP +05/14/2018,Politicians,@JohnKasich,Thank you! https://t.co/sIFoI4OYbP +05/14/2018,Politicians,@JohnKasich,Proud of the progress Ohio has made to strengthen pathways toward a lower-cost college degree by increasing opportu… https://t.co/5GEjG0VZHc +05/13/2018,Politicians,@JohnKasich,"To all the women blessed with the toughest and most important job out there, happy Mother’s Day! +#MothersDay https://t.co/xuqSzpG7Hz" +05/12/2018,Politicians,@JohnKasich,Great to see! Programs like this are a great way to help the women of the Ohio Reformatory for Women give back and… https://t.co/ARNDagAyuQ +05/12/2018,Politicians,@JohnKasich,"As the weather warms up, it’s important to be aware of the dangers of ticks and the diseases they carry. Some good… https://t.co/O2PS26xN9S" +05/11/2018,Politicians,@JohnKasich,The comments by a White House staffer in regard to Sen. John McCain were just outrageous and totally out-of-line. https://t.co/MPz8EF6Op5 +05/11/2018,Politicians,@JohnKasich,Appreciated the @MichiganPress Association for the invitation to speak at their closing session of their 150th anni… https://t.co/o0Nije9b4A +05/11/2018,Politicians,@JohnKasich,"In-Demand Jobs Week may be coming to an end, but the demand for the jobs we’ve highlighted this week isn't going aw… https://t.co/iKgrOovkG1" +05/10/2018,Politicians,@JohnKasich,“Cincinnati has developed a winning model for collaboration that stretches across political boundaries that will co… https://t.co/LeaUWGGIMK +05/10/2018,Politicians,@JohnKasich,Enjoyed sitting down with @BenWSYX6 yesterday to talk about Ohio’s leadership in autonomous and connected vehicles… https://t.co/glaz5rPBSc +05/09/2018,Politicians,@JohnKasich,"Ohio is cementing its status as a leader in the development of autonomous and connected vehicles – today, I signed… https://t.co/n8QTyCgbkU" +05/09/2018,Politicians,@JohnKasich,Ohio businesses are doing amazing things in the way of developing new technologies for autonomous and connected veh… https://t.co/2JmpWW0eMe +05/09/2018,Politicians,@JohnKasich,RT @SXMPOTUS: Did you miss @PrestonCNN's excellent sit-down with @JohnKasich? It re-airs today 2PM East on @siriusxm Ch. 124. Also On Deman… +05/09/2018,Politicians,@JohnKasich,We’re doing all we can to keep Ohio a leader in developing the cars of the future. Join us at 10:30am on… https://t.co/v3Ez4pfz6z +05/08/2018,Politicians,@JohnKasich,"If you live in Ohio and haven’t voted yet, you still have time! The polls are open until 7:30PM + +Find your polling… https://t.co/Ww6ycazlFG" +05/08/2018,Politicians,@JohnKasich,.@RepCharlieDent defined himself as a problem solver -- and Capitol Hill needs more people like him. While I wish h… https://t.co/Oq0wmTkPiI +05/08/2018,Politicians,@JohnKasich,Gov. John Kasich statement on the withdraw from the Joint Comprehensive Plan of Action #IranDeal https://t.co/VzdxBXt9Bp +05/08/2018,Politicians,@JohnKasich,"We all can think of a teacher that has made a difference in our lives. And right now, teachers across Ohio are doin… https://t.co/8HOp6XprbA" +05/08/2018,Politicians,@JohnKasich,"Today is Election Day in Ohio! Now is your chance to make your voice heard! + +Find your polling location or a sample… https://t.co/WIjgY9v6P1" +05/07/2018,Politicians,@JohnKasich,"If you live in Ohio, I’m asking you to vote YES on State Issue 1 on Tuesday (Election Day). Legislators came togeth… https://t.co/B9rBQ48vAm" +05/07/2018,Politicians,@JohnKasich,"Ohioans, Tuesday is Election Day. We have some really important races to select the candidates for the November ele… https://t.co/K1xksK9L3F" +05/07/2018,Politicians,@JohnKasich,"While opportunities are dwindling nationally for college grads, “local experts said that doesn’t appear to be the c… https://t.co/HxLwxrFIhd" +05/07/2018,Politicians,@JohnKasich,This week is Ohio In-Demand Jobs Week. Ohio is home to so many talented people and it is so important that they're… https://t.co/rrrX9k1Hxw +05/07/2018,Politicians,@JohnKasich,"Just watched a @TomPetty Fenway Park show. Wow. + +We all lost a little when we lost him. + +https://t.co/nNWEsn9PxU" +05/06/2018,Politicians,@JohnKasich,Ohio has so much to do and see – it’s affordable and easy to travel. #OhioTourismDay is next Wednesday – celebrate… https://t.co/wU6aQmP3va +05/06/2018,Politicians,@JohnKasich,I enjoyed sitting down with @jheil last week. Be sure to tune in to @Showtime's @SHO_TheCircus this evening at 8PM! +05/05/2018,Politicians,@JohnKasich,Next week is Ohio #InDemandJobsWeek! We have over 120 events across Ohio to learn about the rewarding and high-dema… https://t.co/8Dt0cTw8Wr +05/05/2018,Politicians,@JohnKasich,Tune in today at Noon ET or 5PM ET on Sunday - I’ll be on Full Stop with @PrestonCNN on @SXMPOTUS ch. 124! +06/30/2018,Politicians,@marcorubio,"More Americans have been evacuated from #China after abnormal sounds & sensations, like the ones which led to previ… https://t.co/NRNCVf7wvR" +06/30/2018,Politicians,@marcorubio,"The LORD is my strength and my shield, in whom my heart trusts. I am helped, so my heart rejoices; with my song I praise him. Psalms 28:7" +06/29/2018,Politicians,@marcorubio,So this is the great deal we have on #ZTE? They replace board members with new directors hand­picked by the control… https://t.co/Dze66E4i2D +06/29/2018,Politicians,@marcorubio,These are the three things we need to do if we’re serious about bringing the immigration issue under control. https://t.co/aDTy3jPkjb +06/29/2018,Politicians,@marcorubio,It’s fine for @POTUS to meet with #Putin. U.S. & Russia possess largest nuclear arsenals in world. But would be a g… https://t.co/XFUiqmv9c0 +06/29/2018,Politicians,@marcorubio,Too often we look to D.C. for the answers. But here is a reminder that most of the important innovations we need to… https://t.co/OnjKp3umg1 +06/29/2018,Politicians,@marcorubio,Claim that departure of @IvankaTrump staffer signals “a likely pullback” from efforts to pass a paid family leave b… https://t.co/i88taxMehI +06/29/2018,Politicians,@marcorubio,Thank you to ⁦@united⁩ ⁦@AmericanAir⁩ & ⁦@Delta⁩ for continuing to refuse #China unreasonable demands. Stay strong. https://t.co/hDHaPM80HV +06/29/2018,Politicians,@marcorubio,#Putin would not be doing us a favor helping curb #Iran military in #Syria. It’s in his interest as well. But know… https://t.co/tf4ffVdtCY +06/29/2018,Politicians,@marcorubio,"Should never forget that #KJU is a sadist with political prison camps & who engages in abductions,torture,forced st… https://t.co/BAfaa9NE3I" +06/29/2018,Politicians,@marcorubio,"Sign of our times... the F word is now routinely used in news stories, tweets etc It’s not even F*** anymore. Who made that decision???" +06/29/2018,Politicians,@marcorubio,"This is a vanity that occurs on earth: There are those who are just but are treated as though they had done evil, a… https://t.co/9B2Pzwr58w" +06/28/2018,Politicians,@marcorubio,"#Putin has influence campaign is to divide us,but #China has an even broader one to create domestic pressure on U.S… https://t.co/Q4gQJcvArr" +06/28/2018,Politicians,@marcorubio,In attacking me #Huawei exec said it “takes decades” to turn research into something marketable. The problem is… https://t.co/NusxTelmEQ +06/28/2018,Politicians,@marcorubio,"With all the fighting going on in America, the one thing I think has bipartisan support is the fact that we have to… https://t.co/PFky4LMF9y" +06/28/2018,Politicians,@marcorubio,It’s not good that people increasingly get news & information only from sources that confirm what they want to hear… https://t.co/gDGjvJvtP4 +06/28/2018,Politicians,@marcorubio,BTW I’m not happy about this reality. It’s terrible for country. Lack of trust in reporting leaves us vulnerable to… https://t.co/3IUNN0Ly7t +06/28/2018,Politicians,@marcorubio,"Of course #Putin continues to deny interfering in our elections. But he did. That is not a matter of opinion, it is an indisputable FACT." +06/28/2018,Politicians,@marcorubio,McCain is hero & patriot. But in 2008 “journalists” who now extol his virtues portrayed him as a madman & the… https://t.co/NwjsJQh5FP +06/28/2018,Politicians,@marcorubio,"Re-upping this tweet from 2 days ago. GOP voters defend Trump when attacked by media,OFTEN DESPITE NOT LIKING WHAT… https://t.co/Yux4zEbpr7" +06/28/2018,Politicians,@marcorubio,".@AxiosAm : “The MEDIA,normally the LAST CHECK on a president with total control of government,HAS LOST THE TRUST O… https://t.co/XlyoKUJNpe" +06/28/2018,Politicians,@marcorubio,Some very good suggestions in this column about how to deal with #China. I filed a bill two months ago that offers… https://t.co/bYw0t8l2go +06/28/2018,Politicians,@marcorubio,"As expected,the reaction of the “usual suspects” to this tweet yesterday either proved my point or missed it. Many… https://t.co/Q7x5yKOCxZ" +06/28/2018,Politicians,@marcorubio,A roaring lion or a ravenous bear is a wicked ruler over a poor people. Proverbs 28:15 +06/27/2018,Politicians,@marcorubio,Read this account of an outrageous theft by #China of an American companies chip design. They do this every day & a… https://t.co/n2uAAaL813 +06/27/2018,Politicians,@marcorubio,I admire Justice Kennedy's frequent calls for greater civility in our discourse. Now I look forward to a fair & tho… https://t.co/csqNzA7xTd +06/27/2018,Politicians,@marcorubio,It is a mistake to pretend the migration & trade fights we are debating in U.S. are unique to us. Europe is having… https://t.co/fhmoJ3wYOV +06/27/2018,Politicians,@marcorubio,Head of #Huawei attacked me for wanting restrictions on their research with our universities. They’ve made fortune… https://t.co/evwcGGhSQi +06/27/2018,Politicians,@marcorubio,I have decided to block the addition of any new amendments to #FarmBill until they either accept the Cruz amendment… https://t.co/nBKc3akOqM +06/27/2018,Politicians,@marcorubio,Stronger CFIUS good for stopping bad deals. But some technologies critical to national security should NEVER be sol… https://t.co/Fuehj7A6n0 +06/27/2018,Politicians,@marcorubio,While we spend our time fighting each other a China-centric technology future is taking shape. If we don’t wake up… https://t.co/plfNF3Iayr +06/27/2018,Politicians,@marcorubio,Many Republicans won’t criticize Trump even when they don’t agree with him b/c it means siding with a media that ne… https://t.co/IIsOwdZuzV +06/27/2018,Politicians,@marcorubio,A Chinese national who lives in Massachusetts as a green card permanent resident was charged with stealing U.S. ant… https://t.co/aK3xhG0o8f +06/27/2018,Politicians,@marcorubio,#China has ordered trade & news outlets to not mention #MadeinChina2025 which is their industrial “master plan” to… https://t.co/X0f3VtQ3mI +06/27/2018,Politicians,@marcorubio,Amazing story about a man in #PuertoRico created a solar-powered generator for families without power https://t.co/C8ufN7p2og +06/27/2018,Politicians,@marcorubio,I am filing a new bill that will ban #China companies from receiving taxpayer funded small business loans from the… https://t.co/VuHqcEsTfp +06/27/2018,Politicians,@marcorubio,"If in fact President Trump is now backtracking on tough limits on Chinese investment, it is a VERY BIG MISTAKE.… https://t.co/VdGvYdCtab" +06/27/2018,Politicians,@marcorubio,Consider the work of God. Who can make straight what God has made crooked? Ecclesiastes 7:13 +06/27/2018,Politicians,@marcorubio,Congratulations to my friend William Timmons on earning the GOP nomination in #SC04 tonight. On to the general elec… https://t.co/gTokePq4cx +06/26/2018,Politicians,@marcorubio,Recurring nightmare of Algae bloom from Lake O is back. Yesterday I passed an amendment in spending bill that requi… https://t.co/NuFBFPIQlU +06/26/2018,Politicians,@marcorubio,South Carolina is voting today - I encourage you to support William Timmons in his runoff election. @votetimmons. #sc04 +06/26/2018,Politicians,@marcorubio,"100% correct: “Individuals emerge out of families, communities,faiths,neighborhoods & nations” not the other way ar… https://t.co/KBwoFGKoj7" +06/26/2018,Politicians,@marcorubio,"We are ALL fiddling during this fire! While we fight with each other,try to out nasty each other & harass each othe… https://t.co/xP0wxzyHUc" +06/26/2018,Politicians,@marcorubio,44 yr old migrant says“I’m not leaving my country because I want to”. She once owned restaurant but gang demanded $… https://t.co/BNfjoGce9B +06/26/2018,Politicians,@marcorubio,Immigration issue is hard b/c our sovereignty requires us to have borders. Our history requires us to remember we a… https://t.co/e5blUl3uoF +06/26/2018,Politicians,@marcorubio,When you have migrants saying “I’d rather be in jail in the U.S. than killed in my own country” it is clear the mos… https://t.co/eBVEdN8hHS +06/26/2018,Politicians,@marcorubio,#ZTE & #Huawei equipment provides #China access to U.S. data flowing through networks. And they also use billions o… https://t.co/BrUmVkxty7 +06/26/2018,Politicians,@marcorubio,"Fear of others becomes a snare, but the one who trusts in the LORD is safe. Proverbs 29:25" +06/26/2018,Politicians,@marcorubio,"Spoke to Sheriff Smith of Franklin County,Florida. 30 to 40 mobile homes destroyed by terrible fire leaving 200 har… https://t.co/kq5WkifUfw" +06/25/2018,Politicians,@marcorubio,After Xi threatened “American” multinational companies saying #China will give preferen­tial treat­ment to com­pa­n… https://t.co/FwMgxR7uym +06/25/2018,Politicians,@marcorubio,#China President Xi told a group of CEO’s from U.S. that “In the West you have the no­tion that if somebody hits yo… https://t.co/dBDhRbs5Z5 +06/25/2018,Politicians,@marcorubio,"Actually, the press got to tour the Homestead facility before either one of us at 10am Friday. DHS offered members… https://t.co/dZMqQICLNi" +06/25/2018,Politicians,@marcorubio,"Liberal harassment of Trump aides & GOP officials will galvanize #GOP base in Nov,but it’s terrible for America. On… https://t.co/1O2PQbNlSF" +06/25/2018,Politicians,@marcorubio,"Wonder if ⁦after @EU_Commission⁩ hit 11 more cronies of #Venezuela dictator @NicolasMaduro⁩ with sanctions,he & tho… https://t.co/xAYpmnzhWn" +06/25/2018,Politicians,@marcorubio,I’m not only one who realizes that many Republicans who don’t agree with everything Trump does are moved to support… https://t.co/CY9euqDkxO +06/25/2018,Politicians,@marcorubio,"Politics on both sides so tribal it reaches dining,entertainment & sports & where being nasty to those on other sid… https://t.co/U76R5qNIcw" +06/25/2018,Politicians,@marcorubio,These incidents of harassing Republicans during private time weren’t organic actions of an outraged public. They we… https://t.co/1agwTXNd56 +06/25/2018,Politicians,@marcorubio,Trump haters still haven’t realized how much they help him with their condescension of those who either voted for h… https://t.co/Q7HaEypu6K +06/25/2018,Politicians,@marcorubio,"I filed bill 2 months ago that does what Trump administration plans to do later this week by executive order,ban… https://t.co/ewzA7jaaeX" +06/25/2018,Politicians,@marcorubio,This is happening. Whether we like it or not the age of automation is well underway. But most policy makers do not… https://t.co/on7tzl9W4c +06/25/2018,Politicians,@marcorubio,"You rocked the earth, split it open; repair the cracks for it totters. You made your people go through hardship, +ma… https://t.co/OYT89Cc15j" +06/24/2018,Politicians,@marcorubio,"LORD,you have probed me,you know me: you know when I sit & stand;you understand my thoughts from afar. You sift thr… https://t.co/UadvVlFK6z" +06/22/2018,Politicians,@marcorubio,Actually more like 2 screaming people who apparently support a release policy that encourges already vulnerable mig… https://t.co/rmu2HMCBVy +06/22/2018,Politicians,@marcorubio,"Won’t be easy to house families together,but we must do it. Because we can never again go back to policy of either… https://t.co/h0Lm9zZess" +06/22/2018,Politicians,@marcorubio,"Should pass bill we filed asap. It creates capacity to hold families together,sets standards for family detention,h… https://t.co/QDLobeilLn" +06/22/2018,Politicians,@marcorubio,Visited Homestead shelter for migrant children. We must make sure they are safe & cared for & held together with pa… https://t.co/rv3DWGzLzY +06/22/2018,Politicians,@marcorubio,Wow what a surprise! Yet another American citizen working at embassy in #Cuba was injured. We have embassies in vir… https://t.co/jWiH40ji8e +06/22/2018,Politicians,@marcorubio,I know for a FACT that @FLOTUS has been a strong voice of compassion for migrant children. The vicious treatment of… https://t.co/Cf51F2i4dW +06/22/2018,Politicians,@marcorubio,We are AMERICA which means no matter the legality of their entry we MUST meet a higher standard in our treatment of… https://t.co/0RujpLqvIn +06/22/2018,Politicians,@marcorubio,ELISHA was filled with his spirit; He worked twice as many marvels & and every utterance of his mouth was wonderful… https://t.co/NO9cV4pa8n +06/21/2018,Politicians,@marcorubio,Charles Krauthammer was a man of extraordinary intellect. Truly one of a kind. The conservative movement & the nati… https://t.co/IExxFpE7rU +06/21/2018,Politicians,@marcorubio,I have already filed a bill that would curb #China investment in industries critical to national security. Once thi… https://t.co/W4ePMxqA9h +06/21/2018,Politicians,@marcorubio,"Here you go, the long arm of China. At least John Oliver is standing up to them after he was censored in #China for… https://t.co/NhlZwnm55V" +06/21/2018,Politicians,@marcorubio,Earlier today I spoke on the Senate Floor about our immigration issues and the need for Congress to act if we want… https://t.co/adw7SszDVp +06/21/2018,Politicians,@marcorubio,I support a generous immigration system. I support responsibly accommodating those who came years ago as children &… https://t.co/rcYqiHFjrX +06/21/2018,Politicians,@marcorubio,Based on Senate speeches Democrat position is: Don’t detain children; Don’t detain their parents either so we don’t… https://t.co/05Svs6IY0y +06/21/2018,Politicians,@marcorubio,Great news! The world is waking up to the #China threat. #Britain just held up a China aerospace deal over national… https://t.co/KE6eVyqTbe +06/21/2018,Politicians,@marcorubio,Wish big business backing #China on tariffs would realize if we continue to allow them to steal our innovations soo… https://t.co/xy9vVkD5Qa +06/21/2018,Politicians,@marcorubio,The tariffs on #China are a #TheftTax & frankly could be more. China is stealing between $300 & $600 BILLION a year… https://t.co/944OFSMtNp +06/21/2018,Politicians,@marcorubio,How exactly does helping save #ZTE give us leverage in broader negotiations with China? Giving in to their demands… https://t.co/nJCCEuoYZk +06/21/2018,Politicians,@marcorubio,"Our Father in heaven, hallowed be your name, your kingdom come, your will be done,on earth as in heaven. Give us to… https://t.co/V6DYc9WBzO" +06/20/2018,Politicians,@marcorubio,Just heard Senate colleague on floor say U.S. detains immigrant children “indefinitely & indiscriminately”. That is… https://t.co/H2oBFWPEgB +06/20/2018,Politicians,@marcorubio,Some Democrats now even using the disingenuous “indefinite detention” term. They know full well that those who unla… https://t.co/29CVzHzrwP +06/20/2018,Politicians,@marcorubio,The ink isn’t even dry on the new executive order ending separation policy & some Democrats already arguing that ke… https://t.co/eBsNHk9wjo +06/20/2018,Politicians,@marcorubio,It is cruel to separate families. But it’s also cruel & irresponsible to return to policy that encourages bringing… https://t.co/iNL9gmn3Oi +06/20/2018,Politicians,@marcorubio,Bill was just filed led by @SenThomTillis & many others like @SenatorFischer The executive order today does NOT tak… https://t.co/ZvcnUEQ64Y +06/20/2018,Politicians,@marcorubio,"Just filed the Keep Families Together Act. While todays reversal of decision to separate families is good,it will b… https://t.co/lWKKYm5E70" +06/20/2018,Politicians,@marcorubio,President just announced the White House is going to do something to keep families together after unlawful entry. W… https://t.co/sFXSu7yjtf +06/20/2018,Politicians,@marcorubio,"Recently, I admitted that I was wrong about a bill I voted for while in the Florida Legislature. Here’s why my new… https://t.co/zkHV3kkpxM" +06/20/2018,Politicians,@marcorubio,#ZTE poses a threat to entire U.S. telecommunication network not just our govt. #China already steals $300 billion… https://t.co/Wap9l1frn6 +06/20/2018,Politicians,@marcorubio,Returning to a policy that only adults with children are released would create an incentive to bring kids. Yes sepa… https://t.co/td1Q2yqme7 +06/20/2018,Politicians,@marcorubio,"Yesterday I had the opportunity to meet with Ethiopian dissident @eskindernega We must support freedom, liberty & d… https://t.co/vgm8anf25z" +06/20/2018,Politicians,@marcorubio,#China get much of their technology by stealing it from the U.S. & by forc­ing U.S. com­pa­nies in China to trans­f… https://t.co/J8f5uBJPID +06/20/2018,Politicians,@marcorubio,"Do not let anger upset your spirit, for anger lodges in the bosom of a fool. Ecclesiastes 7:9" +06/19/2018,Politicians,@marcorubio,"If every Senator is willing to support it by unanimous consent, the Senate could pass a bill, before the end of the… https://t.co/GxhP8c7Eum" +06/19/2018,Politicians,@marcorubio,Led by @JohnCornyn a group of us are finalizing bill that will allow families to be held together pending expedited… https://t.co/JA35DiJYao +06/19/2018,Politicians,@marcorubio,Releasing those who unlawfully enter b/c they came with children creates a cruel incentive to bring children on dan… https://t.co/06qenHFf5J +06/19/2018,Politicians,@marcorubio,"Listen to counsel and receive instruction, +that you may eventually become wise. Proverbs 19:20" +06/18/2018,Politicians,@marcorubio,"Tonight I issued a joint bi-partisan statement with @SenTomCotton, @SenSchumer, @ChrisVanHollen after the Senate to… https://t.co/40mk1yb9iu" +06/18/2018,Politicians,@marcorubio,"#China has a new tactic it is using to pressure people inside the U.S., it is holding U.S. Citizens ‘Hostage’ in Ch… https://t.co/VADPigK0eu" +06/18/2018,Politicians,@marcorubio,Ortega is using the “national dialogue” in #Nicaragua as a stalling tactic to remain in power & leave his wife as t… https://t.co/cNJPWCX8nV +06/18/2018,Politicians,@marcorubio,Currently govt must either release parents & continue incentive for illegal entry with children or separate familie… https://t.co/QZbUP3yPvf +06/18/2018,Politicians,@marcorubio,You are not a god who delights in evil;no wicked person finds refuge with you;the arrogant cannot stand before your… https://t.co/wb7mBjxTUi +06/17/2018,Politicians,@marcorubio,"Fathers, do not provoke your children to anger, but bring them up with the training and instruction of the Lord. Ephesians 6:4" +06/16/2018,Politicians,@marcorubio,"One reaction on the 1st anniversary of Trump's #Cuba policy, we don’t have a bunch of big U.S. corporations all ove… https://t.co/4NxbAq4liC" +06/16/2018,Politicians,@marcorubio,Fatherhood in America is in decline. It comes with responsibilities all fathers need to fulfill. And it has an impo… https://t.co/dtcAsAiihJ +06/16/2018,Politicians,@marcorubio,"#China started trade war blocking U.S. companies,stealing their intellectual property & forcing hand over of techno… https://t.co/omy2wInhnM" +06/16/2018,Politicians,@marcorubio,"But I say to you, love your enemies,& pray for those who persecute you, that you may be children of your heavenly F… https://t.co/wVM2rExlW2" +06/16/2018,Politicians,@marcorubio,Negotiations with Cuba & #NorthKorea are very different. Deal with Cuba was about rewarding dictatorship with diplo… https://t.co/G1stmzZhLw +06/15/2018,Politicians,@marcorubio,"#China issue isn’t just simple trade dispute. They are executing on a masterplan called ""Made in China 2025"" which… https://t.co/9k16GSRZfw" +06/15/2018,Politicians,@marcorubio,"Article doesn’t go far enough. #China isn’t “warning” U.S. companies,it’s threatening them if they don’t lobby hard… https://t.co/Yt3h7uZ7OK" +06/15/2018,Politicians,@marcorubio,What do you think of Kanye West’s new album? https://t.co/w1207wVgZ0 +06/15/2018,Politicians,@marcorubio,"RT @MariaCorinaYA: Senator @marcorubio, we are deeply grateful for your continued support of the Venezuelan people in our struggle for demo…" +06/15/2018,Politicians,@marcorubio,"All of these abuses are being well documented. Not just Maduro, but those running these prisons & even the guards w… https://t.co/TBpyzVHzLy" +06/15/2018,Politicians,@marcorubio,I support the #TheftTax imposed on #China by ⁦@realDonaldTrump⁩ 1000%. They are 211ing our innovations to establish… https://t.co/RC5hRC5LYO +06/15/2018,Politicians,@marcorubio,I admit I had initial reservations about Jim Bridenstine to head up @NASA but I am VERY impressed with the job he i… https://t.co/OdIvghLz7d +06/15/2018,Politicians,@marcorubio,Great news! We were able to increase to this years funding for #StopSchoolViolenceAct programs to $100 million. Ide… https://t.co/Fmkm9SrJSk +06/15/2018,Politicians,@marcorubio,This is an EXCELLENT move by ⁦@realDonaldTrump⁩ most of these technology products from #China are made from technol… https://t.co/QPume6suwp +06/15/2018,Politicians,@marcorubio,Hollywood celebrities never pass up the chance to attack American conservatives but they make their millions on mov… https://t.co/7o4RiUsMJU +06/15/2018,Politicians,@marcorubio,"The heart of the just ponders a response, +but the mouth of the wicked spews evil. Proverbs 15:28" +06/14/2018,Politicians,@marcorubio,"I wonder why this isn’t receiving more focus in the media reports: “In addition,we identified instances where FBI e… https://t.co/cHnLgjSM7B" +06/14/2018,Politicians,@marcorubio,@MariaCorinaYA @SecPompeo .@MariaCorinaYA esta con el pueblo de #Venezuela en su lucha por la libertad. Maduro y su… https://t.co/dPErrMvJuN +06/14/2018,Politicians,@marcorubio,.@MariaCorinaYA stands with the people of #Venezuela in the fight for freedom. Maduro and his cronies should think… https://t.co/wEjuipYRJ6 +06/14/2018,Politicians,@marcorubio,Good for ⁦@AmericanAir⁩ ⁦@united⁩ & ⁦@Delta⁩ for standing up to #China bullying & refusing to cave to demand they c… https://t.co/7CVeZRJQTQ +06/14/2018,Politicians,@marcorubio,I strongly support the great Americans at @FBI⁩ but the conduct of the senior officials outlined in this report has… https://t.co/RQolMBarf5 +06/14/2018,Politicians,@marcorubio,CFIUS is process used to potentially block attempts by foreign companies to do deals which pose a threat to our nat… https://t.co/xVOLOrEEbu +06/14/2018,Politicians,@marcorubio,Continuing to talk about how harsh the penalties are on #ZTE for violating sanctions is a effort to distract from t… https://t.co/7WhC7Ca2Yh +06/14/2018,Politicians,@marcorubio,"Today, we celebrate Old Glory and the 243rd birthday of our U.S. Army. Let us never forget the freedom our flag rep… https://t.co/ze5edNydvd" +06/14/2018,Politicians,@marcorubio,B While in #Florida legislature I voted for a bill that allowed state to suspend professional licenses of those who… https://t.co/yDHG5dYSNJ +06/14/2018,Politicians,@marcorubio,"Some media reactions to @potus comments on #KJU are fair, may others are complete overreaction. But lost in the dai… https://t.co/OtDY4nxNqQ" +06/14/2018,Politicians,@marcorubio,"As I said yesterday in Foreign Relations hearing still time for a peaceful path forward in #Nicaragua + +1. Allow N… https://t.co/Q2GQL5LIjx" +06/14/2018,Politicians,@marcorubio,Alarming increase in #Suicide is a reminder that we have serious problems in our country that are much deeper than… https://t.co/nQreVqnzEL +06/14/2018,Politicians,@marcorubio,"Why are we still giving so much money to the ⁦@UN⁩ ? The General Assembly vote was not just anti #Israel bias,it is… https://t.co/duuVc4BJaY" +06/14/2018,Politicians,@marcorubio,Timeline important. #China wants #NorthKorea talks to be step by step process of simultaneous actions which are syn… https://t.co/vJxk2yNkfe +06/14/2018,Politicians,@marcorubio,"The naive believe everything,but the shrewd watch their steps. Proverbs 14:15" +06/13/2018,Politicians,@marcorubio,BTW @Apple who is very proud of how they are making it harder for American law enforcement to collect evidence from… https://t.co/zQaHTGLMrG +06/13/2018,Politicians,@marcorubio,The next time someone asks “what’s the difference between what China telecomms do & what ours do?” show them this a… https://t.co/cMNjv3TkF0 +06/13/2018,Politicians,@marcorubio,3 months ago blocked foreign purchase of ZTE’s top U.S. supplier b/c it would endanger natl security & cede U.S. pr… https://t.co/EVuwimhPXe +06/13/2018,Politicians,@marcorubio,The current deal with #ZTE does indeed make them pay a big price for violations of #NorthKorea & #Iran sanctions. B… https://t.co/GyokukwRWf +06/13/2018,Politicians,@marcorubio,"Important to remember #ZTE is about 2 seperate issues. +1: Sanctions violations. The penalties imposed for that are… https://t.co/vJBP2I8zQV" +06/13/2018,Politicians,@marcorubio,Watch @FoxNews @AmericaNewsroom at 10AM will discuss how role of @potus & congress on #NorthKorea are different. He… https://t.co/Sgf6u99YfZ +06/13/2018,Politicians,@marcorubio,#EVerify is a very important reform. And while it is true that we struggle to find U.S. workers for many agricultu… https://t.co/ULTa5UjjLn +06/13/2018,Politicians,@marcorubio,Yes the video @potus produced & played for #KJU is unusual. But he was meeting with a different kind of guy. The vi… https://t.co/pTLmy0RpgB +06/13/2018,Politicians,@marcorubio,Drug lord @dcabellor knows full well he has lost many of the things he bought under other names with stolen money.… https://t.co/WvF34p7M2i +06/13/2018,Politicians,@marcorubio,Now is a good time to start getting rid of your #Huawei investments. Because while #ZTE poses a very serious threat… https://t.co/IgML1aPkyZ +06/13/2018,Politicians,@marcorubio,I bless the LORD who counsels me;even at night my heart exhorts me. I keep the LORD always before me; with him at m… https://t.co/yK8dkTNtWe +06/12/2018,Politicians,@marcorubio,"One more thing about KJU. While I know @potus is trying to butter him up to get a good deal, #KJU is NOT a talented… https://t.co/y8ORxuzbye" +06/12/2018,Politicians,@marcorubio,.@NickKristof I’m uncomfortable with suspending military exercises & if this becomes permanent in exchange for noth… https://t.co/qG0lYchgsB +06/12/2018,Politicians,@marcorubio,Any “deal” that doesn’t ultimately bring to an end these atrocities under #KimJongun is not a good deal. https://t.co/jDL3vHDvaD +06/12/2018,Politicians,@marcorubio,Should be skeptical of any deal with #KJU Limits to future strategic weapons instead of eliminating current program… https://t.co/KfuJ74Q5r0 +06/12/2018,Politicians,@marcorubio,"Presidents meeting with #KJU exposed incredible hypocrisy of many in media. When Obama did these things,he was desc… https://t.co/qvL5e7Pttc" +06/12/2018,Politicians,@marcorubio,I too have concerns about how all this with #NorthKorea will turn out. But I don’t recall all the “experts” critici… https://t.co/At5KNDgjad +06/12/2018,Politicians,@marcorubio,"It is true @Potus did what previous administration didn’t do,punish #ZTE for sanctions violations. But this is abou… https://t.co/99UGZAbIoA" +06/12/2018,Politicians,@marcorubio,"How long, O people, will you be hard of heart? Why do you love what is worthless, chase after lies? Psalms 4:3" +06/11/2018,Politicians,@marcorubio,Great news! Our bipartisan amendment restoring penalties on #ZTE is included in the #NDAA bill the Senate will be a… https://t.co/3snOqfbRgB +06/11/2018,Politicians,@marcorubio,The message from latest @ChickfilA incident is this: “Your church can still teach traditional marriage (which by th… https://t.co/BRpJe5Woys +06/11/2018,Politicians,@marcorubio,.@ChickfilA isn’t denying service to anyone. But if you eat there you must be attacked by the twitter mob b/c owner… https://t.co/j8yhdWE8Ig +06/11/2018,Politicians,@marcorubio,This lunacy has gone too far. The CEO of @Twitter bullied into apology for patronizing @ChickfilA because owners su… https://t.co/lBGtZ211Ii +06/11/2018,Politicians,@marcorubio,I STRONGLY support trans-Atlantic alliance & wish ⁦@POTUS⁩ would have dealt with #China before turning to trade wit… https://t.co/qSv0Jzvte8 +06/11/2018,Politicians,@marcorubio,Our #TaiwanTravelAct signed by @potus pushes for more high level visits. Opening of the compound in #Taiwan is perf… https://t.co/6yNXFpKrSo +06/11/2018,Politicians,@marcorubio,"Blessed are the merciful, for they will be shown mercy. Blessed are the clean of heart,for they will see God. Bless… https://t.co/47sYrg8oHM" +06/10/2018,Politicians,@marcorubio,"Thorns & thistles it shall bear for you,& you shall eat the grass of the field. By the sweat of your brow you shall… https://t.co/14jkhnNR5V" +06/08/2018,Politicians,@marcorubio,Many valid points here. Our allies do impose unfair tariffs & non-tariff barriers on us. But we should first have w… https://t.co/sOIyKg34b4 +06/08/2018,Politicians,@marcorubio,One point is missed in this analysis. If #China tech companies use protection given by govt to grab dominance in 5… https://t.co/gSaBzvVtOg +06/08/2018,Politicians,@marcorubio,Here’s some advice for all of the recent high school and college graduates out there. https://t.co/E6KWzbbqaJ +06/08/2018,Politicians,@marcorubio,Please read this story about an amazing family in need of a helping hand & the incredible people who helped them. A… https://t.co/zcMtFr3O8d +06/08/2018,Politicians,@marcorubio,"God indeed is my salvation; I am confident and unafraid. +For the LORD is my strength and my might,and he has been my salvation. Isaiah 12:2" +06/07/2018,Politicians,@marcorubio,"What Kim Jong-un wants from summit is to be viewed as an important world leader that is reasonable,affable & equal… https://t.co/K9IjxBYTO3" +06/07/2018,Politicians,@marcorubio,"As I said 2 days ago,U.S. not going to stand by & allow human rights abusers & those undermining democracy in… https://t.co/TZHCRVd7EJ" +06/07/2018,Politicians,@marcorubio,"If the apps you download to your phone, like Facebook, can access your private information, imagine what a company… https://t.co/WnYa6v0S7l" +06/07/2018,Politicians,@marcorubio,"After todays decision to give #ZTE a pass, we have introduced a bipartisan amendment to restore penalties on ZTE, &… https://t.co/wpbtmOhKNx" +06/07/2018,Politicians,@marcorubio,U.S. has had to evacuate some employees from #China after complaints of mystery illness. And we should have every r… https://t.co/BfYqSAMRP6 +06/07/2018,Politicians,@marcorubio,Next time ⁦@CommerceGov⁩ says problem with #ZTE was only about sanctions violations & that all they make are phones… https://t.co/cmAeFzxOY2 +06/07/2018,Politicians,@marcorubio,Why is #ZTE and #Huawei a big threat? #China already on verge of becoming global leader in 5G. Will have full scale… https://t.co/xXPD95YwVJ +06/07/2018,Politicians,@marcorubio,I’m rooting for the Knights. How about you? https://t.co/5xKA2aEDbn +06/07/2018,Politicians,@marcorubio,I assure you with 100% confidence that #ZTE is a much greater national security threat than steel from Argentina or Europe. #VeryBadDeal +06/07/2018,Politicians,@marcorubio,This “deal” with #ZTE may keep them from selling to Iran and North Korea. That’s good. But it will do nothing to ke… https://t.co/0mAL3UnQoG +06/07/2018,Politicians,@marcorubio,"Hear, O Israel! The LORD is our God, the LORD alone! +Therefore, you shall love the LORD, your God, with your whole… https://t.co/xY04pzRw7P" +06/06/2018,Politicians,@marcorubio,When all is said & done the attacks in #China will prove to be broader than initially suspected & potentially relat… https://t.co/ObDdQ0EIyv +06/06/2018,Politicians,@marcorubio,"Me reuní con líderes de la Coalición Universitaria de Nicaragua y Migueliuth Sandoval, Viuda de Gahona, hablamos so… https://t.co/OVNRuDxOqw" +06/06/2018,Politicians,@marcorubio,"I met with leaders of the Nicaraguan University Coalition and Migueliuth Sandoval, widow of Gahona, SPOKE about the… https://t.co/FtsWcOBbpN" +06/06/2018,Politicians,@marcorubio,"On this day in 1944, 160,000 fearless Allied troops led the charge to beat the reign of Nazi terror. The heroism of… https://t.co/GCw3oDp1KX" +06/06/2018,Politicians,@marcorubio,Why didn’t @facebook just reveal this data sharing deal with #Huawei months ago? And don’t compare this to deals wi… https://t.co/lBNiTe30w5 +06/06/2018,Politicians,@marcorubio,Go here now & donate whatever you can to make @KristiNoem the next Governor of #SouthDakota https://t.co/mIRB6V4pE0 +06/06/2018,Politicians,@marcorubio,.@KristiNoem is a very special person and leader. She is going to be a great Governor for her state. We need to hel… https://t.co/Yq2RUzeXJK +06/06/2018,Politicians,@marcorubio,"RT @JonThompsonGOP: Republicans nominated three strong female candidates for governor tonight: @KristiNoem in SD, @KimReynoldsIA in Iowa, &…" +06/06/2018,Politicians,@marcorubio,#China on the verge of winning again. They mock us by appointing someone from another sanctioned company as the sup… https://t.co/fOgu3YiysH +06/06/2018,Politicians,@marcorubio,The images from #Guatemala after the volcanic eruption are heartbreaking. Today I will be speaking to @StateDept to… https://t.co/5guiAD0kxm +06/06/2018,Politicians,@marcorubio,Very happy for @willainsworthAL With your help he will be the next https://t.co/lD6AKJtTUE of #Alabama https://t.co/GZH1vLNfOe +06/06/2018,Politicians,@marcorubio,This is great news. @RepKristiNoem is going to be a GREAT Governor of #SouthDakota now let’s go help her win in Nov… https://t.co/nulc6AHC5U +06/06/2018,Politicians,@marcorubio,"Show us favor, LORD, show us favor, for we have our fill of contempt. Our souls are more than sated with mockery fr… https://t.co/J6RecEi0am" +06/06/2018,Politicians,@marcorubio,This situation in #Nicaragua has now reached a very dangerous point & could escalate rapidly. Expect to see it take… https://t.co/p7flhp34d6 +06/06/2018,Politicians,@marcorubio,This could be a very big problem. If @Facebook granted Huawei special access to social data of Americans this might… https://t.co/bBeHUv4jA6 +06/05/2018,Politicians,@marcorubio,My batting average on #UFvsFSU jokes is below the Mendoza line but another swing here: cheering on @FSU_Softball as… https://t.co/fh6Razxscf +06/05/2018,Politicians,@marcorubio,.@KristiNoem is a great friend in Congress and has always been a strong supporter. I encourage you to vote for her… https://t.co/EVLWscyCDt +06/05/2018,Politicians,@marcorubio,Alabama - @willainsworthAL will make a great Lieutenant Governor and is a hardworking member of #TeamMarco. Get out… https://t.co/YxmsUACMSc +06/05/2018,Politicians,@marcorubio,"Republicans in Iowa have the chance to nominate a strong, principled conservative for Secretary of Agriculture toda… https://t.co/LR9v3RPu4e" +06/05/2018,Politicians,@marcorubio,"We will continue to try to help the people of #Haiti but as I warned over a year ago, their government leaders refu… https://t.co/9krMhfBzY5" +06/05/2018,Politicians,@marcorubio,A veteran of the U.S. Army tried to spy for #China according to @FBI https://t.co/JwWidKc93Q +06/05/2018,Politicians,@marcorubio,It’s not just in the U.S. that #China is forcing private companies to kneel. Now @Qantas has surrendered to China o… https://t.co/QkacZ5VOYt +06/28/2018,Politicians,@SecretaryCarson,Was just joined by @FLGovScott to announce that @HUDgov has approved a disaster recovery plan to help Floridians re… https://t.co/zwLFi88Yus +06/28/2018,Politicians,@SecretaryCarson,"I'm excited that Youngstown, Ohio is going to be a part of @HUDgov's EnVision Center Demonstration.… https://t.co/4NdQa8wZls" +06/27/2018,Politicians,@SecretaryCarson,"Yesterday, I held an EnVision Center round table where we discussed the different services that will be available t… https://t.co/ofhwBO8me4" +06/26/2018,Politicians,@SecretaryCarson,"Educational Advancement, Economic Empowerment, Health and Wellness, and Character and Leadership Development are go… https://t.co/sgSe0UKsNE" +06/26/2018,Politicians,@SecretaryCarson,"Shernitta Jefferson is an inspiration, she went from homeless to homeownership because she had vision for what she… https://t.co/Clbv3LFQkL" +06/26/2018,Politicians,@SecretaryCarson,Excited to work with @DC_Housing and their Executive Director Tyrone Garret on increasing self-sufficiency for HUD-… https://t.co/THmAooneZI +06/26/2018,Politicians,@SecretaryCarson,Participating in an EnVision Center roundtable in Washington DC. Hearing about the great services that will help HU… https://t.co/RGDTIyemLq +06/25/2018,Politicians,@SecretaryCarson,Today HUD approved $5 Billion Texas disaster recovery plan. https://t.co/1C8lDvI6b1 https://t.co/GytqjsUmaR +06/21/2018,Politicians,@SecretaryCarson,I enjoyed speaking to the summer class of White House interns ab leadership. There are many lessons from the medica… https://t.co/mI6irmvvh0 +06/20/2018,Politicians,@SecretaryCarson,I appreciate the opportunity to be with this outstanding group of civil servants at the SES Orientation. At @HUDgov… https://t.co/6b3LpuDWt3 +06/19/2018,Politicians,@SecretaryCarson,This morning I spoke at the #Section3 National Training Conference. I am optimistic that we can bring the promise o… https://t.co/vIXmatkOSm +06/19/2018,Politicians,@SecretaryCarson,We are taking a targeted approach—with each #EnVisionCenter acting as a centealized hub to support four pillars of… https://t.co/99cxrkTGHH +06/19/2018,Politicians,@SecretaryCarson,I’m in Ft. Worth this morning hosting an #EnVisionCenter roundtable with local officials and community stakeholder… https://t.co/HY8QmUZIS6 +06/14/2018,Politicians,@SecretaryCarson,While in Milwaukee I had an opportunity to meet with @MayorOfMKE to discuss the EnVision Center initiative and othe… https://t.co/r4q4JnRch3 +06/14/2018,Politicians,@SecretaryCarson,This afternoon I visited with the wonderful employees at our Milwaukee field office. Thank you for your service!… https://t.co/p9FfTzPrgB +06/14/2018,Politicians,@SecretaryCarson,"As a demonstration of our commitment to the families we serve, to empower Americans to lead self-sufficient lives,… https://t.co/YevPALbcVV" +06/14/2018,Politicians,@SecretaryCarson,Opportunity Zones will improve economic development and entrepreneurship in some of the most economically distresse… https://t.co/PukAdGGWUI +06/14/2018,Politicians,@SecretaryCarson,This afternoon I spoke to the Association of Gospel Rescue Mission’s annual conference about some of the exciting t… https://t.co/jT7Xwjjzn3 +06/14/2018,Politicians,@SecretaryCarson,"Earlier this year, @hudgov gave efforts to end homelessness across the country a boost by making $2 billion availab… https://t.co/pHqv7U8XVC" +06/14/2018,Politicians,@SecretaryCarson,".@hudgov is committed to working with our federal, state, and local partners to end homelessness. Organizations lik… https://t.co/PeXLQZQkSi" +06/14/2018,Politicians,@SecretaryCarson,"Today I’m in Milwaukee, Wisconsin visiting the Guest House of Milwaukee, which provides homeless services and drug… https://t.co/HVm3WwqOSm" +06/13/2018,Politicians,@SecretaryCarson,"I believe in an America where people care about their neighbors, have a strong sense of community, and a well-defin… https://t.co/fKrkVVp8JX" +06/12/2018,Politicians,@SecretaryCarson,We are praying for your success and the success of the United States https://t.co/mUIJ7ifCw2 +06/11/2018,Politicians,@SecretaryCarson,"Today @HUDgov, @TheJusticeDept & @EPA announced a historic agreement with the nation's largest public housing auth… https://t.co/Bfwwu3rrYZ" +06/08/2018,Politicians,@SecretaryCarson,RT @VP: POWERFUL new video from @ONDCP on the #OpioidEpidemic that has touched nearly all Americans. @POTUS is committed to doing all he ca… +06/08/2018,Politicians,@SecretaryCarson,RT @WhiteHouse: These young Americans’ true stories are a warning against the allure of prescription drug abuse. Watch the ad campaign from… +06/08/2018,Politicians,@SecretaryCarson,"Empowering people means taking a holistic approach—helping them with a roof over their heads, but also access to h… https://t.co/AkeIhA3AS5" +06/08/2018,Politicians,@SecretaryCarson,"Today I’m speaking at the @FaithandFreedom Policy Conference. At @HUDgov, we work to help millions of people experi… https://t.co/UTh1UBTSsw" +06/08/2018,Politicians,@SecretaryCarson,Pleased to join @FaithandFreedom and their annual policy conference. https://t.co/oqcFmc1MQ8 +06/08/2018,Politicians,@SecretaryCarson,RT @HUDgov: Congratulations to HUD’s OCIO team who was awarded $20 million for its mainframe application migration acceleration proposal!!… +06/08/2018,Politicians,@SecretaryCarson,"As a recent @BPC_Bipartisan study points out, an extreme case of the health and housing relationship comes with hom… https://t.co/yaAipV6vqY" +06/08/2018,Politicians,@SecretaryCarson,"As a physician, I’ve seen the lasting impacts that lead exposure can have upon the health of children. At @HUDgov,… https://t.co/q5avECtROP" +06/08/2018,Politicians,@SecretaryCarson,RT @BPC_Bipartisan: Live at 10: A conversation with @SecretaryCarson. https://t.co/T8NiZYQuPx +06/07/2018,Politicians,@SecretaryCarson,"Today, @ONDCP & @WhiteHouse unveiled the first set of public awareness ads focused on preventing young adults from… https://t.co/WU02QE3PTs" +06/07/2018,Politicians,@SecretaryCarson,"Speaking at the ground breaking of the Inkster, MI #EnVisionCenter. Together we can help HUD-assisted households cl… https://t.co/XDjhcaxsUN" +06/07/2018,Politicians,@SecretaryCarson,It was a joy to meet with some of the residents who will utilize the services offered at the #EnVisionCenters here… https://t.co/1BKOPjF8J5 +06/07/2018,Politicians,@SecretaryCarson,We are working with the Detroit Housing Commission to launch the second #EnVisionCenter in Detroit. Our people are… https://t.co/WWAfW3z6gS +06/07/2018,Politicians,@SecretaryCarson,RT @HUDgov: #EnVisionCenters Character and Leadership Development connects residents with mentors and helps them climb the ladder of opport… +06/07/2018,Politicians,@SecretaryCarson,"RT @HUDgov: EnVision Centers will provide residents with access to training opportunities, so they may develop a skill set that can lead to…" +06/07/2018,Politicians,@SecretaryCarson,We’re planting a tree at the first #EnVisionCenter launch to celebrate the growth that’s going to happen here. It’s… https://t.co/SobDJNzmH5 +06/07/2018,Politicians,@SecretaryCarson,"RT @HUDgov: To help HUD-assisted families achieve self-sufficiency, residents will have access to educational advancement where they will h…" +06/07/2018,Politicians,@SecretaryCarson,"The EnVision Center demonstration will drive collaboration across federal agencies, state & local governments, non-… https://t.co/rPn7E9FvQu" +06/07/2018,Politicians,@SecretaryCarson,It’s an exciting day here in Detroit. I’m joined by @MayorMikeDuggan @ESPNDrLou & Jerome Bettis for the launch of t… https://t.co/7J9KDEHJRv +06/07/2018,Politicians,@SecretaryCarson,The EnVision Centers will offer HUD-assisted households access to support services that can help them achieve self-… https://t.co/tXyp3Oi9Qo +06/07/2018,Politicians,@SecretaryCarson,"This morning in Detroit, I announced dozens of new EnVision Centers in 17 communities around the country. Learn mor… https://t.co/9C8vtcDE5u" +06/07/2018,Politicians,@SecretaryCarson,About to take the stage with this extraordinary group to launch the #EnVisionCenter demonstration in Detroit. https://t.co/FZtlH5lSON +06/07/2018,Politicians,@SecretaryCarson,I’m with @FOX2News here in Detroit talking about the launch of the first #EnVisionCenter demonstration. Tune in to… https://t.co/knYLfGYt2a +06/07/2018,Politicians,@SecretaryCarson,I’m starting off the morning talking with the @foxandfriends team to announce the @HUDgov EnVision Center initiative. Tune in! +06/05/2018,Politicians,@SecretaryCarson,"The strength of America lies in our democratic values, our civility to one another; where people care about their n… https://t.co/ey0WpRaicr" +06/05/2018,Politicians,@SecretaryCarson,Today I visited with our staff at the Hartford Field Office. They’re doing great work serving the housing needs of… https://t.co/XpJaNUcRVu +06/05/2018,Politicians,@SecretaryCarson,In Hartford today I heard some of the concerns of the residents impacted by the housing issues in this community. I… https://t.co/hNrQtlbU9G +06/04/2018,Politicians,@SecretaryCarson,"RT @HUDgov: In the first 500 days of the Trump Administration, HUD allocated more than $35 billion through the CDBG-Disaster Recovery progr…" +06/04/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD made $2 billion available to support of thousands of local homeless assistance programs nationwide through the Continuum of… +06/04/2018,Politicians,@SecretaryCarson,"RT @HUDgov: During the Trump Administration's first 500 days, more than $1 billion in funding has been allocated to combat the opioid crisi…" +06/04/2018,Politicians,@SecretaryCarson,Today I talked with local stakeholders and government officials who have been working on the crumbling foundation i… https://t.co/AsrYaBzetB +06/04/2018,Politicians,@SecretaryCarson,Today I visited the Perracchio family to see firsthand the kind of crumbling foundation problem that’s been impact… https://t.co/BNILs2E5ix +06/01/2018,Politicians,@SecretaryCarson,Thanking the @HUDgov staff in Greensboro for the great work they do everyday. Our @HUDgov staff doesn’t hear thank… https://t.co/5NuvbMP07z +06/01/2018,Politicians,@SecretaryCarson,Today marks the beginning of National Homeownership Month. You can read @POTUS proclamation here:… https://t.co/PJEi4BdeRZ +06/01/2018,Politicians,@SecretaryCarson,"Today, @HUDgov is announcing the Protect Our Kids!— a Department-wide review & effort to ensure compliance with reg… https://t.co/aa9et4K3aR" +06/01/2018,Politicians,@SecretaryCarson,"I approach this endeavor, lead and other home hazard prevention, with a tremendous sense of purpose, with an enormo… https://t.co/Hb3KI3IJOR" +06/01/2018,Politicians,@SecretaryCarson,Each dollar invested in lead hazard control grants returns at least $17 to the nation. This return is from decrease… https://t.co/Ahxuv78kwu +06/01/2018,Politicians,@SecretaryCarson,".@HUDgov, along with our partners and grantees, is focused on lead and their areas of great concern— asthma prevent… https://t.co/1BZ9uuPZUv" +06/01/2018,Politicians,@SecretaryCarson,.@hudgov is launching a Protect Our Kids! campaign to enforce lead safety rules during #HealthyHomesMonth. I’m in G… https://t.co/NPZXxN9fN7 +06/01/2018,Politicians,@SecretaryCarson,With @RepTedBudd and @GHCGreensboro discussing how making homes healthier is a team effort... we all need to partic… https://t.co/h6ekpuyu0A +06/01/2018,Politicians,@SecretaryCarson,In Greensboro kicking of Healthy Homes Month with @RepTedBudd and @GHCGreensboro https://t.co/NPdDDRmyBw +05/30/2018,Politicians,@SecretaryCarson,"Once a soldier, sailor, airman, marine, or coastguardsman completes his or her tour of duty, we commit to assisting… https://t.co/GleWH1jVQ5" +05/30/2018,Politicians,@SecretaryCarson,.@HUDgov has been working closely with medical centers and the @DeptVetAffairs to address the chronically homeless… https://t.co/5eDngasnpJ +05/30/2018,Politicians,@SecretaryCarson,Veterans experiencing homelessness are the same extraordinary Americans we honor before they had a housing need. We… https://t.co/dyhyGI4UPH +05/30/2018,Politicians,@SecretaryCarson,"We need our veterans to flourish. We need their contributions, their skills, and their love for our country. They a… https://t.co/9lidLddxbS" +05/28/2018,Politicians,@SecretaryCarson,"On Memorial Day, we honor those who we lost while they served us, their remarkable legacy. It inspires us to imitat… https://t.co/fCoO7M99kb" +05/28/2018,Politicians,@SecretaryCarson,"We express our eternal gratitude to the Gold Star Mothers and Wives across our country, who alone know the true cos… https://t.co/PZj3ZCl98B" +05/28/2018,Politicians,@SecretaryCarson,"The lives of our fallen veterans give increased vitality to our national creed, to our founding documents, and to o… https://t.co/tbRUYSvMg4" +05/28/2018,Politicians,@SecretaryCarson,"Today, we pay tribute to the heroes of each generation whose patriotism was complete, whose devotion to duty absolu… https://t.co/KYgHBClSvA" +05/23/2018,Politicians,@SecretaryCarson,RT @SecretaryCarson: Just called to congratulate Brian Montgomery for being confirmed as our new @FHAgov Commissioner https://t.co/8DRcYcNw… +05/23/2018,Politicians,@SecretaryCarson,Just called to congratulate Brian Montgomery for being confirmed as our new @FHAgov Commissioner https://t.co/8DRcYcNwLx +05/23/2018,Politicians,@SecretaryCarson,Thanks to @NAHBhome for hosting me today. Together we can create more affordable housing https://t.co/6gBBXzWml2 +05/23/2018,Politicians,@SecretaryCarson,Talking @NAHBhome’s Chairman Randy Noel about how @HUDgov is focused on empowering Section 3– a job training rule t… https://t.co/lo6uLaySjm +05/23/2018,Politicians,@SecretaryCarson,A priority of our at @HUDgov and @FHAgov is to update our antiquated IT system. First time homebuyers shouldn’t be… https://t.co/mstMpiGdnF +05/23/2018,Politicians,@SecretaryCarson,We are tackling over zealous application of the false claims act for nonmaterial mistakes. We will still ensure the… https://t.co/Hn88QYS4M5 +05/23/2018,Politicians,@SecretaryCarson,I pledge here today to help our nation’s home builders construct more affordable housing https://t.co/c3BnMVMUGL +05/23/2018,Politicians,@SecretaryCarson,"The President’s directive to remove two regulations for every new regulation will help home builders, by reducing h… https://t.co/6uNbgOxZES" +05/23/2018,Politicians,@SecretaryCarson,Speaking to @NAHBhome about how we need to reduce the regulatory burdens that hinder home builders from doing what… https://t.co/EtcZfmH41s +05/21/2018,Politicians,@SecretaryCarson,"At @HUDgov, we’ve established a task force to prevent wasteful spending. Our new CFO is overseeing the team that’s… https://t.co/ZLWogq2Mbu" +05/18/2018,Politicians,@SecretaryCarson,I spoke with the Council for National Policy meeting about @HUDgovs's recent rent reform proposal. The current syst… https://t.co/Qoyxqm8HRu +05/18/2018,Politicians,@SecretaryCarson,This afternoon I had the pleasure of addressing the graduates of @divinemercyuniv at their commencement ceremony. C… https://t.co/tOtCXDUqoI +05/18/2018,Politicians,@SecretaryCarson,I enjoyed talking to my friend @JimDeMint at today's Council for National Policy meeting. We discussed how at… https://t.co/dW4HxXnKGh +05/18/2018,Politicians,@SecretaryCarson,I spoke with the Council for National Policy meeting about @HUDgov's recent rent reform proposal. The curent system… https://t.co/kmXkqo54nW +05/18/2018,Politicians,@SecretaryCarson,"At the Laffer Associates Conference, I discussed @HUD’s goals for increasing economic opportunity among those we se… https://t.co/uwngL2iID1" +05/17/2018,Politicians,@SecretaryCarson,Today I’m pleased to speak to the Laffer Associates annual conference about some of the things we’re working on at… https://t.co/n9ObjoL6Df +05/16/2018,Politicians,@SecretaryCarson,"RT @HUDDepSec: Today, I called Puerto Rico Governor @RicardoRossello, U.S. Virgin Islands @GovernorMapp, Representatives @Jenniffer2012 @St…" +05/16/2018,Politicians,@SecretaryCarson,Today @FHAgov extended our foreclosure moratorium for residents with FHA-insured mortgages in Puerto Rico & the U.S… https://t.co/7tbClLGq9w +05/16/2018,Politicians,@SecretaryCarson,Talking to @nardotrealtor’s about the importance of the #FairHousingAct and thanking them for all they do to suppor… https://t.co/CFbi95Pz5j +05/16/2018,Politicians,@SecretaryCarson,Talking to @nardotrealtor about how @TheJusticeDept and @HUDgov are working together to prevent sexual harassment i… https://t.co/kxphkUXqmT +05/15/2018,Politicians,@SecretaryCarson,https://t.co/3f0dm1vuhM +05/14/2018,Politicians,@SecretaryCarson,"During my trip to West Virginia today, I stopped by @HUDgov’s Charleston field office to meet with our staff. Thank… https://t.co/5XKy6rKOOI" +05/14/2018,Politicians,@SecretaryCarson,.@RecoveryPointWV is doing tremendous work in the fight against the #OpioidEpidemic. I’m so pleased to have visited… https://t.co/bMva4J3J8T +05/14/2018,Politicians,@SecretaryCarson,.@RepAlexMooney @RepEvanJenkins and I visited Rea of Hope today and this organization truly lives up to its name. T… https://t.co/cSEKIhI1hU +05/14/2018,Politicians,@SecretaryCarson,"This morning I had the opportunity to visit with some of the ladies at Rea of Hope. Among other things, this recove… https://t.co/UerkzjYjy3" +05/14/2018,Politicians,@SecretaryCarson,Our people are our greatest resource. I’m with @RepAlexMooney and @RepEvanJenkins learning about the great work… https://t.co/OfoK0frWKz +05/14/2018,Politicians,@SecretaryCarson,This morning I’m at @HarmonyHouseWV with @RepEvanJenkins and @RepAlexMooney discussing some of the impacts of the O… https://t.co/RtJfUUGQ0j +05/10/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD to Seek Public Comment on 'Disparate Impact' Regulation. Learn more → https://t.co/sesnuk7XCz. https://t.co/7vwdU7oZlg +05/09/2018,Politicians,@SecretaryCarson,"Last month, I proposed the Making Affordable Housing Work Act to launch a conversation about how we can fix the way… https://t.co/yIg5L8Dfau" +05/09/2018,Politicians,@SecretaryCarson,"Some of America’s federal rental-assistance programs have become barriers to upward mobility, and we at @HUDgov wan… https://t.co/dwasdhp3DX" +05/09/2018,Politicians,@SecretaryCarson,"RT @WhiteHouse: While our men and women in uniform serve our country on base or abroad, their spouses face many challenges to build familie…" +05/09/2018,Politicians,@SecretaryCarson,We are prioritizing various @HUDgov initiatives that seek to provide pathways to economic opportunity: EnVision Ce… https://t.co/i2oe6vuTM1 +05/09/2018,Politicians,@SecretaryCarson,Today I’m discussing a few of @HUDgov’s priorities with @NECouncil at their Spring Conference https://t.co/WVxcgn3P59 +05/09/2018,Politicians,@SecretaryCarson,At @HudGov our goal is to help people achieve their American Dream. Our recent rent reform proposal is one way we a… https://t.co/CCsbDN0sDC +05/09/2018,Politicians,@SecretaryCarson,"There are better, simpler, and less intrusive ways to administer @HUDgov’s rental assistance programs. The current… https://t.co/vdnHSXbtq8" +05/07/2018,Politicians,@SecretaryCarson,"As we kick off #PSRW, I want to thank all of our @HUDgov family for the work they do to improve the lives of our fe… https://t.co/1P6eWJjnZW" +05/03/2018,Politicians,@SecretaryCarson,Taking questions @CLPHA about how we at @HUDgov are collaborating with other federal agencies to get better outcome… https://t.co/sADXaqbSfJ +05/03/2018,Politicians,@SecretaryCarson,.@HUDgov looks forward to continuing to collaborate with @CLPHA to improve outcomes for the families we serve #HousingIs2018 +05/03/2018,Politicians,@SecretaryCarson,.@HUDgov has recently proposed a set of rent reforms to improve the way we assist the more than 4.5 million people… https://t.co/1X3TZ7oswY +05/03/2018,Politicians,@SecretaryCarson,I have been on the road over the past several days talking to those supported by @HUDgov and one common thing I’ve… https://t.co/75TcJyZ1LP +05/01/2018,Politicians,@SecretaryCarson,I enjoyed speaking with our @HUDgov staff at the Little Rock field office. Thank you for the important work you do… https://t.co/QirqRWUUHu +05/01/2018,Politicians,@SecretaryCarson,"While in Arkansas, I had the chance to visit with a few public housing residents. Our people are our most valuable… https://t.co/5Cn4yoRT78" +05/01/2018,Politicians,@SecretaryCarson,Today I’m in Arkansas with @RepFrenchHill to discuss housing issues impacting the community. https://t.co/nm1jk83LE2 +04/30/2018,Politicians,@SecretaryCarson,I spoke with the @DailySignal about @HUDgov's recent rent reform proposal and some of our other priorities at the a… https://t.co/yxNkzPEweG +04/28/2018,Politicians,@SecretaryCarson,Fair housing is more than a symbolic gesture along the long road to justice. Fair housing is an essential element t… https://t.co/jx63A1n22K +04/28/2018,Politicians,@SecretaryCarson,I am delighted to be with the Maryland Commission on Civil Rights. Tonight we celebrate the golden anniversary of t… https://t.co/ByhWCS1G1W +04/28/2018,Politicians,@SecretaryCarson,During this #FairHousingMonth I had the opportunity to tour exhibits at the Reginald F. Lewis Museum in Baltimore… https://t.co/Xf2k35i1G6 +04/28/2018,Politicians,@SecretaryCarson,"Among our priorities @HUDgov, we’re focusing on policies that help people get out of poverty and empower them towar… https://t.co/uu6BKyzvxg" +04/28/2018,Politicians,@SecretaryCarson,This evening I’m with @Heritage discussing some of the work we’re doing at @HUDgov to serve the American people. https://t.co/ZtfDefqEaW +04/25/2018,Politicians,@SecretaryCarson,Visiting Las Vegas’ Courtyard Homeless Resource Center. They are connecting homeless people with resources that can… https://t.co/m9YnxMCKSr +04/25/2018,Politicians,@SecretaryCarson,Visited Veterans Village a great example of how the govt at all levels the private sector and non profits came toge… https://t.co/twP3DCRG2P +04/25/2018,Politicians,@SecretaryCarson,Toby has graduated from high school while being at the Shannon West Youth Center. It’s amazing what these kids can… https://t.co/br2WNv3Qxv +04/25/2018,Politicians,@SecretaryCarson,Since arriving at the Shannon West Center Daniel has been promoted at his job. He is actively climbing his ladder o… https://t.co/SUd7SH8rI6 +04/25/2018,Politicians,@SecretaryCarson,Doing a round table with leaders and residents from Help of Southern Nevada Shannon West Homeless Youth Center. It’… https://t.co/7gXGKD1e9u +04/25/2018,Politicians,@SecretaryCarson,Touring the Help of South Nevada Shannon West Homeless Youth Center to see the great work they are doing to give ki… https://t.co/ff83jHUgvD +04/25/2018,Politicians,@SecretaryCarson,Was great to do lunch with @mayoroflasvegas she is passionate about increasing access to affordable housing https://t.co/fhuYmawOcW +04/25/2018,Politicians,@SecretaryCarson,"Just met with leaders from Clark County, to discuss how we can work together to promote self-sufficiency and help… https://t.co/9rloAgP5xj" +04/25/2018,Politicians,@SecretaryCarson,Today we’re introducing a proposal to reform decades-old rent rules under the Making Affordable Housing Work Act. L… https://t.co/oacmvNmHJb +04/25/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD is proposing the Making Affordable Housing Work Act. This would change how we help millions of families to afford their ren… +04/25/2018,Politicians,@SecretaryCarson,"RT @HUDgov: Today, @SecretaryCarson proposed to reform decades-old rent rules under the Making Affordable Housing Work Act. Learn more http…" +04/25/2018,Politicians,@SecretaryCarson,Thanking the hard working @HUDgov staff in Nevada. They are invested in helping solve the affordable housing crisis https://t.co/BsEXrTdGOl +04/25/2018,Politicians,@SecretaryCarson,.@HUDgov is positioned to usher in a new era of cooperation with the Manufactured Housing industry. We understand h… https://t.co/Ani4yCp60t +04/25/2018,Politicians,@SecretaryCarson,Manufactured housing accounts for nearly 10% of the market and even a greater share in rural areas. @HUDgov can hel… https://t.co/tDGzxPORgV +04/25/2018,Politicians,@SecretaryCarson,I can tell you without qualification that this Administration appreciates all the manufactured housing industry is… https://t.co/mKv1T8UsuK +04/25/2018,Politicians,@SecretaryCarson,The Manufacrured Housing industry is so important. They are a big part of the solution to the affordable housing cr… https://t.co/ClS375iwG4 +04/25/2018,Politicians,@SecretaryCarson,Thanks for joining me @StracnerHUD. There is great work being done. We must work to amplify it and ensure that more… https://t.co/SiDp7aDuZY +04/24/2018,Politicians,@SecretaryCarson,Participating in a round table with leaders from throughout LA on how we can work together to end homelessness. It’… https://t.co/sWMQO7NwY7 +04/24/2018,Politicians,@SecretaryCarson,Here at South Los Angeles Trade-Tech Community College they are preparing people to work on the expanding light rai… https://t.co/2IP6bUknZT +04/24/2018,Politicians,@SecretaryCarson,Touring some of the job training that’s available at the Los Angeles Trade Tech Community College. This is how we c… https://t.co/azB2R07bkm +04/24/2018,Politicians,@SecretaryCarson,Touring & doing a round table at the Los Angeles Trade-Tech Community College. They are a lead agency for @HUDgov’s… https://t.co/Nl3dd8Ymgx +04/24/2018,Politicians,@SecretaryCarson,Toured the Downtown Women’s Center in LA to witness firsthand the great work they are doing for the community to fi… https://t.co/CnNlq0qdNc +04/24/2018,Politicians,@SecretaryCarson,Mrs Smith is an inspiration. She is formerly homeless and now gives back to the Downtown Women’s Center. Her backgr… https://t.co/HogpXLhtUQ +04/24/2018,Politicians,@SecretaryCarson,Talking to Mrs Smith about how with the help of the Downtown Women’s Center in LA helped her overcome homelessness… https://t.co/U1YU2etZnA +04/24/2018,Politicians,@SecretaryCarson,Touring the Dream Center Foundation in LA. They do great work to help the vulnerable recieve the support they need… https://t.co/UNgATWMGGD +04/24/2018,Politicians,@SecretaryCarson,@kathrynbarger @HUDgov It was a pleasure to meet you. Let’s continue to work together +04/24/2018,Politicians,@SecretaryCarson,Thanking the hardworking @HUDgov staff in the LA office. They work tirelessly to help tackle the local housing cha… https://t.co/LOoTMkRpjt +04/24/2018,Politicians,@SecretaryCarson,It’s a delight to have @StracnerHUD show me around LA today. Together @HUDgov must work with local governments and… https://t.co/4UDQfaUlQD +04/24/2018,Politicians,@SecretaryCarson,Talking with @MRTempower & @SupJaniceHahn about how we all have to work together to end the affordable housing cris… https://t.co/p3kce1Vh68 +04/24/2018,Politicians,@SecretaryCarson,I’m in LA today to work with @kathrynbarger on solutions to our homelessness issue and affordable housing crisis. T… https://t.co/bouGzuAoqF +04/23/2018,Politicians,@SecretaryCarson,"RT @StracnerHUD: ""Despite all the good intentions, our nation’s welfare system continues to encourage a culture of dependency rather than s…" +04/23/2018,Politicians,@SecretaryCarson,"I am grateful for the direct work with those here at @NAHROnational to make services possible, whether it is public… https://t.co/FKBhFeE9MX" +04/23/2018,Politicians,@SecretaryCarson,This morning I’m with @NAHROnational discussing my ongoing priorities for @HUDgov and how we are working together t… https://t.co/OYHLiPVl5s +04/21/2018,Politicians,@SecretaryCarson,Participating in a round table on the impact of lead in our communities. @HUDgov provides funding to help homes rem… https://t.co/7ENuGraRw4 +04/21/2018,Politicians,@SecretaryCarson,"RT @HoustonHealth: Since September 2017, more than 86 homes have been referred to the Houston Health Department’s lead abatement and health…" +04/21/2018,Politicians,@SecretaryCarson,Touring homes in Houston that are going through lead remediation thanks to @HUDgov lead grants. As a doctor I under… https://t.co/3BLLbavQnY +04/21/2018,Politicians,@SecretaryCarson,RT @HoustonHealth: “You are the people that are making a difference.” @SecretaryCarson @HUDgov #LeadFree #HoustonHealth https://t.co/4a8cQ9… +04/21/2018,Politicians,@SecretaryCarson,"These victims of Harvey experienced more than $200k in damage. They lost cars, keepsakes, and many are still strugg… https://t.co/kDXeS45o88" +04/21/2018,Politicians,@SecretaryCarson,W/ @johnculberson meeting Texans who were outside of the flood plan but experienced two plus feet of water in their… https://t.co/gqjwsFzaN8 +04/21/2018,Politicians,@SecretaryCarson,It‘s a joy to volunteer at the Houston Food Bank https://t.co/VVDxBeXfFm +04/21/2018,Politicians,@SecretaryCarson,I’m volunteering at the Houston Food Bank this morning. Volunteerism is a part of what makes America special. We al… https://t.co/ashOPR1iCf +04/21/2018,Politicians,@SecretaryCarson,Talking with @SylvesterTurner this morning at the Houston Food Bank about how we can help Houstonians climb the lad… https://t.co/zZnsbwOn8B +04/21/2018,Politicians,@SecretaryCarson,.@hudgov is going to stand with @SylvesterTurner and Houston as they continue to rebuild from Harvey. HUD has award… https://t.co/Akj4LfIW5A +04/20/2018,Politicians,@SecretaryCarson,.@chucknorris’s @KICKSTART_KIDS helps children develop positive character traits & has helped increase graduation r… https://t.co/80VzJ4w7FM +04/20/2018,Politicians,@SecretaryCarson,Talking with @chucknorris about how @KICKSTART_KIDS and @HUDgov’s EnVision Centers program can stop generational po… https://t.co/bIxWpgxYBf +04/20/2018,Politicians,@SecretaryCarson,.@GHPartnership is interested in how they can work with @hudgov on the long term recovery of Houston after Harvey https://t.co/j6Phwo0H0b +04/20/2018,Politicians,@SecretaryCarson,Talking with the @GHPartnership about how we can work together through public private partnerships to help Houston… https://t.co/BB9Cx07PRW +04/20/2018,Politicians,@SecretaryCarson,Listening to how @HUDgov helped these families find housing by using Housing Choice Vouchers after they lost their… https://t.co/kgdvRnszWO +04/20/2018,Politicians,@SecretaryCarson,.@HUDgov helped these families find housing after their old homes were uninhabitable due to Harvey. The resilience… https://t.co/icIYWpPZ0e +04/20/2018,Politicians,@SecretaryCarson,Listening to families who @HUDgov helped after their homes were flooded during Harvey https://t.co/7Cxf9ye0iG +04/20/2018,Politicians,@SecretaryCarson,Thanking Anthony for driving through water during Harvey to save people in need of rescue due to the floods. Anthon… https://t.co/iIHDkY7xiy +04/20/2018,Politicians,@SecretaryCarson,Thanking @MattressMack and the incredible staff of Gallery Furniture for sheltering 400 people during Hurricane Har… https://t.co/iTY1yaxHNB +04/20/2018,Politicians,@SecretaryCarson,Thanking @MattressMack for all the work he did during Harvey to help those impacted. He is a example of the selfles… https://t.co/49TRUMY8YA +04/20/2018,Politicians,@SecretaryCarson,.@MattressMack showing me where he houses people impacted by Harvey https://t.co/LvZybUGmt0 +04/20/2018,Politicians,@SecretaryCarson,Was a pleasure to be with you @HUDgov will be with as Texas rebuilds https://t.co/N8tMLIuBhb +04/20/2018,Politicians,@SecretaryCarson,Just paid my respects to former First Lady Barbara Bush. My thoughts and prayers are with the entire Bush family. https://t.co/GrPzLkXAdL +04/20/2018,Politicians,@SecretaryCarson,It’s great to see our next generation is so patriotic #USA We are going to work hard to make sure their future is b… https://t.co/DVIFz1jkS7 +04/20/2018,Politicians,@SecretaryCarson,".@HUDgov will stand with the state of Texas as it rebuilds. Texans, not Washington, will determine how the rebuildi… https://t.co/EpsiSZnr8P" +04/20/2018,Politicians,@SecretaryCarson,.@HUDgov’s total investment in Texas post Harvey is $10 billion https://t.co/u6kNoS5ewH +04/20/2018,Politicians,@SecretaryCarson,Excited to be here https://t.co/JNlSjsTmBz +04/20/2018,Politicians,@SecretaryCarson,The first responders in Texas selflessly put others first during Harvey. https://t.co/9sfgnyGhGf +04/20/2018,Politicians,@SecretaryCarson,Chatting with @GovAbbott @SenTedCruz and @CongCulberson ahead of our CDBG-DR announcement. Texans have been resilie… https://t.co/Mk1l3xQdDQ +04/20/2018,Politicians,@SecretaryCarson,Thanking first responder in Texas for their work after Hurricane Harvey. In Texas today to award the Lone Star stat… https://t.co/9IkrwRtw0T +04/19/2018,Politicians,@SecretaryCarson,Visiting the apartments the ASAC Heart of Iowa provides mothers dealing with substance abuse issues. They really he… https://t.co/ILKR1NEIis +04/19/2018,Politicians,@SecretaryCarson,"Visiting ASAC Heart of Iowa, a location that houses and helps mothers recover from substance abuse #OpioidCrisis https://t.co/4002OAM8f9" +04/19/2018,Politicians,@SecretaryCarson,"The #OpiodCrisis is something that we all have face together. State, Federal, & local governments along with non-pr… https://t.co/cy6PfgAk5y" +04/19/2018,Politicians,@SecretaryCarson,Listening to an ASAC resident talk about how the support he is receiving here is changing his life #OpioidCrisis https://t.co/yJwHF4KLFP +04/19/2018,Politicians,@SecretaryCarson,Kicking off the opioid round table at ASAC in Cedar Rapids. To solve the #OpioidCrisis we are all going to have to… https://t.co/EZY2BXWcVz +04/19/2018,Politicians,@SecretaryCarson,Watching a video that details the great work that Area Substance Abuse Council (ASAC). Soon we will begin a round t… https://t.co/lcLQhTn353 +04/19/2018,Politicians,@SecretaryCarson,Today is the 23rd anniversary of the bombing of the Alfred P. Murrah Federal Building in #OklahomaCity. On this da… https://t.co/uEOjtQ7CMd +04/19/2018,Politicians,@SecretaryCarson,Will be in Cedar Rapids today to discuss opioid abuse and what @hudgov is doing to help stop the opioid crisis https://t.co/wetEo5UBmj +04/18/2018,Politicians,@SecretaryCarson,"Like millions of Americans, Barbara Bush was one of my mother's heroes. She will be missed." +04/18/2018,Politicians,@SecretaryCarson,All of @HUdgov's thoughts and prayers are with the Bush family. Former First Lady Barbara Bush was an example of st… https://t.co/bfyNgQoqPh +04/17/2018,Politicians,@SecretaryCarson,I took time this morning to stop by the Children’s House to read to the kids there. It’s always inspiring to see yo… https://t.co/wmNMxA2GuE +04/17/2018,Politicians,@SecretaryCarson,"RT @NSCsafety: Thank you @SecretaryCarson & @HUDDepSec Patenaude of @HUDgov for visiting ""Prescribed to Death: A memorial to the victims of…" +04/17/2018,Politicians,@SecretaryCarson,".@HUDgov has an important role to play in combatting the #opioidcrisis. Last year, approximately 25% of those treat… https://t.co/IUkggDcA4h" +04/17/2018,Politicians,@SecretaryCarson,This morning I’m humbled to visit the @NSCsafety opioid memorial” “Prescribed to Death” at the @WhiteHouse. We all… https://t.co/JhqbVAAQap +04/16/2018,Politicians,@SecretaryCarson,"I joined our dedicated Fair Housing & Equal Opportunity (FHEO) office to visit the “Opening Doors"" exhibit at… https://t.co/E1hHWGzCiP" +07/01/2018,Politicians,@JebBush,Nicaragua’s bloodshed is worse than Venezuela’s. Where’s the international uproar? https://t.co/whuTGUFhXW +06/30/2018,Politicians,@JebBush,“Retirement costs already 44% of teacher pay in San Francisco” https://t.co/P48vI0PNLl +06/29/2018,Politicians,@JebBush,Bob Luddy has the right approach https://t.co/UtsKGfd28r +06/29/2018,Politicians,@JebBush,"@ABC Very classy, Aaron Judge." +06/29/2018,Politicians,@JebBush,Courageous story of Capital Gazette reporters getting their daily paper out after their colleagues were murdered. https://t.co/SepMTqKCFs +06/29/2018,Politicians,@JebBush,RT @RepKinzinger: The war crimes & horrific attacks are STILL happening in #Syria. We cannot turn a blind eye to the atrocities; we cannot… +06/29/2018,Politicians,@JebBush,RT @ExcelinEd: #ICYMI: @JebBush on What #SCOTUS Union Decision Means for Kids - https://t.co/OA9HA56ftC https://t.co/CwDEFDEJxu +06/29/2018,Politicians,@JebBush,⁦@SteveForbesCEO⁩ makes compelling points https://t.co/CVBenjGOy0 +06/28/2018,Politicians,@JebBush,"#JANUSvsAFSCME is an opportunity for parents, educators and reformers to overcome two of the biggest obstacles to t… https://t.co/44TbYmE4wd" +06/28/2018,Politicians,@JebBush,"RT @CNN: The Supreme Court's union decision is a real opportunity for education reform, writes @JebBush for @CNNOpinion https://t.co/gP2Ksq…" +06/28/2018,Politicians,@JebBush,Here's why the Supreme Court's union decision is a real opportunity for #edreform https://t.co/HEG1op4rHK +06/28/2018,Politicians,@JebBush,@johnrobertsFox @PressSec @SecretService This is crazy. There is no good outcome if we continue down the path of this poisonous environment. +06/28/2018,Politicians,@JebBush,How long will it be before San Fran has a brain drain because of the lack of workers? https://t.co/1iyn9Gq6WA +06/28/2018,Politicians,@JebBush,"At our best, we are bottom up country. When we lose our civic engagement, we lose the best of America. https://t.co/SfrgxcMBAd" +06/28/2018,Politicians,@JebBush,RT @RichLowry: It's funny how life works--Donald Trump may end up being the biggest boon to constitutional fidelity in a generation +06/27/2018,Politicians,@JebBush,I am hopeful that the era of teachers union bosses playing politics w/ our schools will give way to a 21st-century… https://t.co/2y0l9SWhxE +06/27/2018,Politicians,@JebBush,The rage should be against the man in the mirror. https://t.co/pn2aoEP0zU +06/27/2018,Politicians,@JebBush,Congratulations to @WalkerStapleton on a great primary win tonight! He is the proven leader Colorado needs. Onward… https://t.co/MQCVX9qL2Q +06/26/2018,Politicians,@JebBush,'This would widen the trade war tenfold': U.S. automakers say no to Trump's car tariffs via @POLITICO for iOS… https://t.co/Xg8Wr8X2lk +06/26/2018,Politicians,@JebBush,@SalenaZito No they are not. +06/26/2018,Politicians,@JebBush,Great to be with Superintendent @MarkRJohnsonNC today in Raleigh to talk about the future of education for North Ca… https://t.co/t67y8qj6GT +06/26/2018,Politicians,@JebBush,RT @ExcelinEd: Earlier today @JebBush and @MarkRJohnsonNC met with #NC policymakers to discuss bold education policies to help all students… +06/26/2018,Politicians,@JebBush,Bobby raises some good points on school choice. The U.S. broadly respects parental rights—except with regard to sch… https://t.co/DmyGkWOppe +06/26/2018,Politicians,@JebBush,President calls for patience. For how long? https://t.co/N5T9YdFSs9 +06/26/2018,Politicians,@JebBush,Sec Pompeo is reassuring. https://t.co/xEGp4IMKeG +06/26/2018,Politicians,@JebBush,Sully! Thanks to @AmericasVetDogs for this great new addition to the family! https://t.co/evsDTLo9uz +06/26/2018,Politicians,@JebBush,"Congratulations to Frank Brogan, just confirmed as assistant secretary for @usdoegov. He is a phenomenal leader, go… https://t.co/63Nc9msTKW" +06/25/2018,Politicians,@JebBush,Kudos to Senator Toomey for standing on principle. https://t.co/gwUS0SAxyx https://t.co/UXjhPVuvOM +06/25/2018,Politicians,@JebBush,"RT @RichLowry: This is not how it was supposed to work + +https://t.co/syUfx5jJZK" +06/25/2018,Politicians,@JebBush,Totally true https://t.co/vUL66JwDnD +06/25/2018,Politicians,@JebBush,Maxine Waters calls on supporters to confront Trump officials in public spaces https://t.co/nSQKlTiUFB +06/25/2018,Politicians,@JebBush,Great news on Florida's strong fiscal health. Rick Scott deserves credit for his leadership. https://t.co/aYfw6JGy4d +06/24/2018,Politicians,@JebBush,"RT @EWErickson: But bake us cakes, you bigots, or we’ll put you out of business. https://t.co/VjUC6qZq4T" +06/24/2018,Politicians,@JebBush,"1 big thing: In China, a clue to how jobs may go https://t.co/ZYPUxAuuHa" +06/23/2018,Politicians,@JebBush,RT @BarbaraBushFdn: So inspired by these teams and their dedication to creating opportunities for adult learners. #LiteracyNow https://t.co… +06/23/2018,Politicians,@JebBush,"RT @nicadispatch: Students in UNAN Managua say 2 students killed, 5 kidnapped, and 15 injured in government attacks this morning. Attacks o…" +06/23/2018,Politicians,@JebBush,The Normalization of Nazi Analogies  https://t.co/iQrENgTRbE +06/23/2018,Politicians,@JebBush,Scoring 30% on a test is enough to graduate high school in NYC https://t.co/seSpRqJjEi via @nypmetro Let’s Lower the Bar! +06/22/2018,Politicians,@JebBush,The world lost a giant in Charles Krauthammer. This brilliant and decent man was the gold standard of conservative… https://t.co/ar5EkrM03Y +06/20/2018,Politicians,@JebBush,"Refreshing message from Hollywood: ""God is real and prayer gets results."" Amen, brother. @prattprattpratt https://t.co/2CMMJxW0ma" +06/20/2018,Politicians,@JebBush,Democrats shouldn’t use children as a negotiating tool either. https://t.co/7UtG5dG6mZ +06/18/2018,Politicians,@JebBush,Tomorrow @FLGovScott heads to Puerto Rico for his 7th visit post Hurricane Maria. Governor Scott deserves credit fo… https://t.co/4y6ebFMMzt +06/18/2018,Politicians,@JebBush,https://t.co/9WlGAtXbdp +06/18/2018,Politicians,@JebBush,Children shouldn’t be used as a negotiating tool. @realDonaldTrump should end this heartless policy and Congress sh… https://t.co/mvuxTmSEfG +06/18/2018,Politicians,@JebBush,"No Country for American Locker Makers . Hopefully, clearer heads will prevail before we get into a full blown trade… https://t.co/bPiCKFY2LZ" +06/17/2018,Politicians,@JebBush,Great win! https://t.co/uhtU0SC0ep +06/16/2018,Politicians,@JebBush,"Well said: Progressive, affluent parents who send their kids to good schools shouldn’t deny others that right https://t.co/el18PS6Re8" +06/15/2018,Politicians,@JebBush,Congratulations to the 2018 Arts for Life recipients! It was an honor and joy to celebrate these fantastic young Fl… https://t.co/UO67AMF562 +06/15/2018,Politicians,@JebBush,Great. We get the Ocho here in Miami. https://t.co/FAQBEnPWJS +06/15/2018,Politicians,@JebBush,"RT @ExcelinEd: Happy #FlagDay! Today we celebrate the adoption of the flag of the United States, which happened on June 14, 1777! https://t…" +06/15/2018,Politicians,@JebBush,"RT @EWErickson: If one is wrong, the other is too. https://t.co/3cK95cz07x" +06/15/2018,Politicians,@JebBush,"RT @WalshFreedom: If this were a Democrat president saluting a military officer of one of the most brutal, tyrannical, oppressive regimes i…" +06/15/2018,Politicians,@JebBush,RT @DouthatNYT: Comey is such a great character for the drama of a declining republic: The archetypal G-Man hero gradually exposed as a pom… +06/15/2018,Politicians,@JebBush,RT @SenJohnMcCain: Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts to ac… +06/15/2018,Politicians,@JebBush,Will it be on ESPN? https://t.co/yqXonmEAKU +06/13/2018,Politicians,@JebBush,"In China, a picture of how warehouse jobs can vanish https://t.co/585SFd0Wy4" +06/12/2018,Politicians,@JebBush,"RT @CIA: I Want This Job: George H. W. Bush & the CIA + +This video retrospective on Bush's tenure as DCI was shown during a January 29, 2016…" +06/12/2018,Politicians,@JebBush,"RT @CIA: Happy Birthday, President Bush! + +In honor of President George H. W. Bush’s 94th birthday, we released 2 never-before-seen videos…" +06/12/2018,Politicians,@JebBush,"Thank you @purduemitch, for this very kind piece about my Dad on his 94th birthday. Happy birthday, @GeorgeHWBush! https://t.co/1a7BxHlDrr" +06/12/2018,Politicians,@JebBush,Mexico candidate shot while posing for selfie in latest murder of politician | World news | The Guardian https://t.co/FbAbxvKCmA +06/11/2018,Politicians,@JebBush,Their Grandparents Toppled a Dictator. Now They Are the Revolutionaries Time for Ortega to go. https://t.co/VzQykMBF6T +06/10/2018,Politicians,@JebBush,"Venezuela’s Long Road to Hell, by @MaryAnastasiaOG Well Said! https://t.co/8VSyhhuAbn" +06/09/2018,Politicians,@JebBush,How does this keep happening? https://t.co/IVGFbjK5Zt +06/08/2018,Politicians,@JebBush,RT @GeorgeHWBush: Sending our gratitude and family love on this special day to all who are helping carry forward the selfless work of one B… +06/08/2018,Politicians,@JebBush,Teen goes from Bronx homeless shelter to full-ride at MIT https://t.co/CHt4KMLnak via @nypmetro +06/08/2018,Politicians,@JebBush,Protecting our liberty as important today as it was in 1789. https://t.co/ABIMSbqm9X +06/08/2018,Politicians,@JebBush,Latin Americans Against Venezuela: The OAS takes a rare stand against the Havana-Caracas axis. There is broad conse… https://t.co/ckl9Rc9Ybx +06/08/2018,Politicians,@JebBush,What a tragedy https://t.co/IO5GGhL1fk +06/07/2018,Politicians,@JebBush,RT @dcexaminer: Jeb Bush to House GOP: Tackle immigration before November https://t.co/bLoONMqXCS https://t.co/8asyBDxlcF +06/07/2018,Politicians,@JebBush,"I don’t always do morning TV, but when I do, I prefer @SquawkCNBC, one of the more civilized members of the fourth… https://t.co/wid21Rm3eW" +06/06/2018,Politicians,@JebBush,RT @TIMEPolitics: Jeb Bush: Delaying immigration reform is a missed opportunity for Republicans https://t.co/BxIyYjsh95 +06/06/2018,Politicians,@JebBush,"Republican leadership should embrace opportunity to tackle immigration reform, not run from it. https://t.co/NXYYlTfN8S" +06/06/2018,Politicians,@JebBush,Warren's must-see catch of the night https://t.co/CZeOqWb5RN via @espnW Go Noles! +06/05/2018,Politicians,@JebBush,RT @FightExtremism: Updated CEP World Map Profiles Extremism and Counter-Extremism in 55 Countries. Check it out here: https://t.co/ccmIzmw… +06/04/2018,Politicians,@JebBush,"Thanks, @RosLehtinen!! Me too! https://t.co/twwwZDQkif" +06/04/2018,Politicians,@JebBush,Steve Klinsky and I weigh in on incredible opportunity governors have through @modernstatesed to give all students… https://t.co/8iLgo6avio +06/03/2018,Politicians,@JebBush,Kessler is right that how we measure income and GDP should be adjusted based on the new economy. https://t.co/s74DGrnbvd +06/03/2018,Politicians,@JebBush,Cool new resource: @khanacademy just launched its first ever online training just for teachers. #edreform https://t.co/t7O0w0O77A +06/03/2018,Politicians,@JebBush,Great Oaks Have Deep Roots . Jonah is such a great writer and he is so correct we need to get back to being a botto… https://t.co/d0uxWvctZg +06/02/2018,Politicians,@JebBush,"St. Patrick Weeping, Begging for Conversion: A few thoughts from his home away from home in Manhattan. https://t.co/lKWaNo2gYM" +06/02/2018,Politicians,@JebBush,Thank you Senator for staying true to conservative trade policy and understanding America’s leadership role in the… https://t.co/4VDEw2HRpE +06/02/2018,Politicians,@JebBush,I agree with Senator McCain. Good conservative policy is good politics for vulnerable Republicans in swing district… https://t.co/Xi77AzGG86 +06/02/2018,Politicians,@JebBush,Marco Rubio to King's Academy grads: 'Rebel against our modern culture' https://t.co/ludDWEUhjb via @gbennettpost Well done Senator. +06/01/2018,Politicians,@JebBush,Joy Reid apologizes after more controversial blog posts surface via @POLITICO for iOS There really is a double stan… https://t.co/Gj9PGXHWbq +06/01/2018,Politicians,@JebBush,"Florida's Disaster Preparedness Sales Tax Holiday, starting today, is a great opportunity for residents to stock up… https://t.co/5dCAQSCQaa" +06/01/2018,Politicians,@JebBush,Today is the first day of the 2018 Atlantic Hurricane Season. Get a plan! https://t.co/fpb5w9sja4 +06/01/2018,Politicians,@JebBush,RT @GeorgeHWBush: Enjoying a great book and a wonderful walk down memory lane this morning. Yet another reminder of just how lucky I have b… +05/31/2018,Politicians,@JebBush,Private schools flourishing in the “deserts” https://t.co/jCdSdVjYd2 +05/30/2018,Politicians,@JebBush,"Incredible, commendable effort by @Walmart: Walmart to offer employees a college education for $1 a day https://t.co/ZqkHdiOY7J" +05/30/2018,Politicians,@JebBush,Trump signs 'right to try' drug bill https://t.co/Ev9BWbXFFP This will save lives. +05/30/2018,Politicians,@JebBush,"Proud to support my friend Mac McNeill for Jefferson County Sheriff! A military veteran, Mac has an exceptional rec… https://t.co/j0omPsOA20" +05/28/2018,Politicians,@JebBush,Lebron is amazing. we need Lebrons in other parts of life. https://t.co/jSjcpFLQYR +05/28/2018,Politicians,@JebBush,RT @IvanDuque: Quiero darle gracias a Dios y a todos los colombianos que votaron hoy expresando su voluntad por mí y por todos los candidat… +05/28/2018,Politicians,@JebBush,Former CIA Director Gen. Michael Hayden responded with three letters: 'OMG.' https://t.co/ytFAhPl0rT via @MailOnline +05/28/2018,Politicians,@JebBush,"Martin Dempsey, the former chairman of the Joint Chiefs of Staff during the Obama ... https://t.co/33SlYehXY9 via @MailOnline" +05/28/2018,Politicians,@JebBush,"Land of the free, because of the brave. We are forever indebted to those who serve and have served, especially the… https://t.co/Wcz4uq8vYi" +05/26/2018,Politicians,@JebBush,Super-sub Bale earns Real third straight UCL crown - via @ESPN Appn WHAT A GOOOOLLLLL! https://t.co/pB7Gm3HjIf +05/26/2018,Politicians,@JebBush,"RT @GeorgeHWBush: Delighted to join the veterans, including my dear friend Gen. Brent Scowcroft, at the @AmericanLegion Post 159 monthly pa…" +05/26/2018,Politicians,@JebBush,Two great American patriots with other great patriots. https://t.co/WZ89Aq4KIn +05/26/2018,Politicians,@JebBush,"Family drug courts help addicted mothers stay clean, writes @NaomiSRiley Drug courts work. https://t.co/xEvdxVfNdg" +05/23/2018,Politicians,@JebBush,Looking forward to celebrating the Center for Education Reform's 25 years of bold leadership and relentless advocac… https://t.co/rUXDpYMCGd +05/23/2018,Politicians,@JebBush,"A Right To Try Arrives Great legislation, soon to be law. https://t.co/WjNWZZ95ad" +05/22/2018,Politicians,@JebBush,"Trump, the Six Billion Dollar Man* https://t.co/TJtpYctdLA via @WSJOpinion This is how economic growth occurs." +05/22/2018,Politicians,@JebBush,Accountability in education works #edreform https://t.co/o3T18hYoie +05/22/2018,Politicians,@JebBush,Houston Texans’ J.J. Watt to Help Pay for Sante Fe Funerals https://t.co/XTE8T0XULF Impressive but not surprising. +05/20/2018,Politicians,@JebBush,My beloved dad is in Maine. https://t.co/fu6h8Xgg9U +05/20/2018,Politicians,@JebBush,RT @MarioDB: The Venezuelan people deserve much more than today’s sham “elections.” I commend the Administration + U.S. Congress for tough… +05/20/2018,Politicians,@JebBush,RT @marcorubio: This feature in todays @NYT does an excellent job of capturing how the regime of dictator @NicolasMaduro uses access to foo… +05/20/2018,Politicians,@JebBush,"RT @RosLehtinen: Today’s election is a farce, a fraud + disrespects the ppl of #Venezuela who aspire 2 restore democratic order thru free,…" +05/19/2018,Politicians,@JebBush,"Identity politics threatens the American experiment, writes @orrinhatch Words of wisdom from Senator Hatch. https://t.co/qW1S4mHge3" +05/19/2018,Politicians,@JebBush,‘I Don’t Believe That Anymore’ Forstmann and Walton deserve our praise and thanks. https://t.co/32s7W4y1Fa +05/17/2018,Politicians,@JebBush,Congratulations to Gina Haspel. She is a patriot and will continue to serve our nation well. https://t.co/9eh2ZmPr0t +05/16/2018,Politicians,@JebBush,Gaza and Hamas https://t.co/SGK8R7Hdhf via @CFR_org +05/16/2018,Politicians,@JebBush,Seattle to Business: Drop Dead: The city taxes companies for hiring more workers. A counterproductive and dumb idea… https://t.co/yKwsRmlpah +05/16/2018,Politicians,@JebBush,"U.S. sanctions Iran’s central bank governor, alleges he funneled money to Hezbollah. Smart action taken by Treasury… https://t.co/wQb4cOqlX7" +05/16/2018,Politicians,@JebBush,"Venezuela’s crisis and Argentina’s inflation, plus entrenched corruption, are helping fuel an illicit economy worth… https://t.co/EUkWPumvqP" +05/16/2018,Politicians,@JebBush,Very cool. Thanks @HamiltonMusical team! https://t.co/I21TdBJhpC +05/15/2018,Politicians,@JebBush,Totally agree with David French. America's partisan polarization demands a federalist government. https://t.co/1CdYcB3r5D +05/10/2018,Politicians,@JebBush,Good piece by @JohnStossel. Why the Left Hates Betsy DeVos: The secretary of education is fighting government burea… https://t.co/yokeNBaOQX +05/10/2018,Politicians,@JebBush,Powerful message from @BrieIndependent on the need to focus on and engage parents in the education of their childre… https://t.co/HXRQ1ZcOlV +05/09/2018,Politicians,@JebBush,"Bret gets this right. It is important to give credit where it is due, and @POTUS deserves credit on his recent acti… https://t.co/7OKVHNcEPf" +05/09/2018,Politicians,@JebBush,Why start a charter school? @excelined shares 7 powerful examples of changemakers and their drive to expand opportu… https://t.co/ypvn1kbdwr +05/09/2018,Politicians,@JebBush,Credit to @POTUS and @SecPompeo for bringing these Americans home. https://t.co/h77YOO2gHy +05/09/2018,Politicians,@JebBush,"George Deukmejian dead at 89, public safety and law-and-order dominated two-term governor's agenda… https://t.co/wa6Hf4Nlr2" +05/08/2018,Politicians,@JebBush,Charter schools are democracy in action. #CharterSchoolsWeek https://t.co/i08TIAHecc +05/08/2018,Politicians,@JebBush,No shortage of hypocrisy among these famous parents who like their children's handpicked school but oppose educatio… https://t.co/FehIPxFGod +05/08/2018,Politicians,@JebBush,RT @BarbaraBushFdn: We hope our nation's teachers feel special all throughout #TeacherAppreciationWeek but especially today on #TeacherAppr… +05/07/2018,Politicians,@JebBush,Big thanks to @GovernorDeal for signing legislation to expand #educationalopportunities and help students find the… https://t.co/D2QOHhjrKG +05/07/2018,Politicians,@JebBush,"RT @JebBushJr: As a board member of @charteralliance and advocate for high-quality public education, I’m celebrating #CharterSchoolsWeek th…" +05/07/2018,Politicians,@JebBush,Informative look at our changing economy: High-Paying Jobs Go Begging While High School Grads Line Up for Bachelor’… https://t.co/bzjLvMPfOi +05/06/2018,Politicians,@JebBush,Kicking off National #CharterSchoolsWeek and celebrating families like Christopher Collot and his son Jayden. Check… https://t.co/eHaSpDUsG9 +05/06/2018,Politicians,@JebBush,RT @ExcelinEd: .@JebBush: Student Success is at the Heart of National #CharterSchoolsWeek - https://t.co/mlK2tEILk1 https://t.co/Gp1WnNdUW3 +05/05/2018,Politicians,@JebBush,Thanks for all of your prayers. Dad is doing well and headed home. https://t.co/Aq99DV2XDR +05/04/2018,Politicians,@JebBush,We need to ensure more students have access to high quality charter schools #edreform https://t.co/oO0RCXDtsD +05/03/2018,Politicians,@JebBush,Honored to address @UCF commencement exercises today and pay tribute to Dr. Hitt's legacy as one of the most innova… https://t.co/Ny5Y41LQKB +05/03/2018,Politicians,@JebBush,RT @ourmedschool: Governor @JebBush was instrumental in working with the Florida Legislature in approving the @UCF College of Medicine in 2… +05/01/2018,Politicians,@JebBush,Good advice from @CondoleezzaRice for @POTUS https://t.co/1uYbQe62EC +05/01/2018,Politicians,@JebBush,".@BetsyDeVosED is doing a great job advancing #edreform as a national priority. She has a heart for young people, i… https://t.co/uqkYQMCmcf" +05/01/2018,Politicians,@JebBush,We are a bottom up country. We do things better when we don’t outsource our responsibilities to DC. Policy is best… https://t.co/RlCWl4uUfL +05/01/2018,Politicians,@JebBush,RT @ExcelinEd: Our 2017 Annual Report highlights states that are reimagining & reinventing ways to boost student learning. - https://t.co… +04/27/2018,Politicians,@JebBush,Thanks @jaynordlinger for the great conversation. https://t.co/Va63HIuxV3 +04/27/2018,Politicians,@JebBush,Ramesh is right. What the British government is doing to Alfie Evans and his family is almost unbelievable. Why are… https://t.co/c6tAxTCXIM +04/27/2018,Politicians,@JebBush,Great story https://t.co/l2aNvXVX8j +04/27/2018,Politicians,@JebBush,"Senate confirmation is becoming so difficult that the government might soon be unable to function, writes Peter J.… https://t.co/i4lzFcoVC9" +04/26/2018,Politicians,@JebBush,Thanks to the @BrownUniversity community for the kind welcome and great event last evening. Our conversation is ava… https://t.co/uARXpkrosS +04/26/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: We are so thankful for your kind wishes, donations in honor of Barbara Bush and heartfelt tribute messages that you sha…" +04/26/2018,Politicians,@JebBush,"Mike Pompeo is a smart, committed, competent public servant. Glad he has been confirmed to serve as our next Secretary of State." +04/25/2018,Politicians,@JebBush,"“I promise you, 99 percent of the time, if you give parents accurate, transparent information, they will make bette… https://t.co/CYFwVdPplv" +04/25/2018,Politicians,@JebBush,Join me for a conversation with @BrownUniversity students and faculty on the role of leadership in a changing world… https://t.co/h6kn7Y1jqn +04/25/2018,Politicians,@JebBush,Thankful there are so many champions for students and for education reform in the Florida Legislature. Can't wait t… https://t.co/Y72VAaTxez +04/25/2018,Politicians,@JebBush,"RT @GeorgeHWBush: My family and I thank Mayor @SylvesterTurner, his terrific staff, @houstonpolice, @METROHouston, @SBCHouston, @StMartinsD…" +04/25/2018,Politicians,@JebBush,"In preparation for my lecture at @BrownUniversity tonight, I learned there is a ""Boston funk band"" called the ""Jeb… https://t.co/U1IVO0FskE" +04/23/2018,Politicians,@JebBush,"Wonderful, touching piece by James McBride https://t.co/GguHvB7bEd" +04/22/2018,Politicians,@JebBush,"RT @bradmeltzer: Leaving Barbara Bush’s funeral in Houston and LOVE that even now, she was still getting the best laughs. +She hugged AIDS…" +04/22/2018,Politicians,@JebBush,RT @ExcelinEd: Thank you Mrs.Barbara Bush! https://t.co/pHNBR06HAJ +04/22/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: You left each of us so much and taught us about the importance of family, about caring for everyone, about passion for…" +04/21/2018,Politicians,@JebBush,The Bush family is grateful for the thousands and thousands of expressions of condolence and love for our precious… https://t.co/Ank8RSrRyr +04/20/2018,Politicians,@JebBush,Thank you @michaelbhorn for honoring my Mother's lifelong passion for literacy https://t.co/SWFYFbpQpB +04/19/2018,Politicians,@JebBush,Florida’s Rising NAEP Scores Show Education Reforms Are Working for All Students in the State @The74 #edreform https://t.co/xEStnSaLrI +04/18/2018,Politicians,@JebBush,"RT @NBCNews: “I’m so blessed to be her son. She taught us to serve others, she taught us to be civil, she taught us to love your family wit…" +04/18/2018,Politicians,@JebBush,RT @jgm41: Herewith a statement from former President @GeorgeHWBush. https://t.co/USSq5RkD4g +04/18/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: We mourn the passing of Barbara Bush, who believed that the world would be a better place if more people could read, wr…" +04/18/2018,Politicians,@JebBush,"Statement by Governor Jeb Bush on the Passing of Mrs. Barbara Bush +https://t.co/7FXQlMH9Xe" +04/17/2018,Politicians,@JebBush,RT @edreform: #ASUGSV2018 Happening now - Is There an App for That? Transforming the Lives is Low-Literate Adults Through Mobile Tech. Cell… +04/17/2018,Politicians,@JebBush,"Cool innovation from the homebuilding industry: Lennar Building Agrihood, Where Homeowners Can Share Farm Produce https://t.co/82e3aqoxLq" +04/13/2018,Politicians,@JebBush,Mitch Daniels is a true profile in leadership @purduemitch @LifeAtPurdue #edreform #highered https://t.co/WEccBkROsJ +04/12/2018,Politicians,@JebBush,This Man Expects to Run a 2:50 in the Boston Marathon on Monday via @NYTimes Amazing story! https://t.co/EEvjMUfq8x +04/12/2018,Politicians,@JebBush,"It's been 35 years since ""A Nation at Risk"" was released, and America is still plagued by an education system that… https://t.co/2E4hYezyWx" +04/11/2018,Politicians,@JebBush,Thanks to you and Senator Huffman for leading the charge to expand opportunity for Ohio families! #edreform https://t.co/DaE0qOb6jb +04/11/2018,Politicians,@JebBush,"Paul Ryan is a good and honorable man who has governed the House with strong, principled leadership. Grateful for h… https://t.co/lvp7Sdr04e" +04/11/2018,Politicians,@JebBush,Congratulations to my friend Wendy Berger on her appointment to the federal bench. I know she will continue her rec… https://t.co/iyUkyBpX8B +04/10/2018,Politicians,@JebBush,"RT @AFloridaPromise: ""By remaining focused for 2 decades on #earlyreading, #accountability for schools, rewarding great teachers & empoweri…" +04/10/2018,Politicians,@JebBush,Record Donation to https://t.co/Fm7P8E2Ya9 Makes Cryptocurrency Company a Teachers’ Pet https://t.co/t84udNbpWM +04/10/2018,Politicians,@JebBush,Preview of NAEP results coming out this morning: Orlando Sentinel: 'Something very good is happening in Florida'… https://t.co/X3kTw0800P +04/09/2018,Politicians,@JebBush,"Rick Scott has provided strong, conservative leadership for our state throughout his time as governor. Rick's exact… https://t.co/vbUbzyXDxf" +04/06/2018,Politicians,@JebBush,"We disagree about some aspects of MLK’s legacy, but the role of faith is indisputable, write Cornel West &… https://t.co/C3H7s4P1N4" +04/05/2018,Politicians,@JebBush,Billionaire @JBPritzker's top priority in Illinois: kill bipartisan scholarship program for low income students. Th… https://t.co/8MOEfMvGhl +04/05/2018,Politicians,@JebBush,Pleased with today’s ruling in favor of #publiccharterschool funding in #Florida. Big victory for educational freed… https://t.co/vdyKAbabmA +04/04/2018,Politicians,@JebBush,Great news out of College Station: @TAMU @BushSchool Rises in U.S. News & World Report Rankings https://t.co/5FiXpm8sGZ +04/04/2018,Politicians,@JebBush,A Model for Licensing Reform Let freedom ring! https://t.co/Jb3llPpqbA +04/03/2018,Politicians,@JebBush,Jim gets this right https://t.co/tGayCA1ZoE +04/03/2018,Politicians,@JebBush,The President made an excellent choice in tapping Justin Muzinich to help lead the Treasury Department. He is a man… https://t.co/mWxctwICld +04/03/2018,Politicians,@JebBush,"New Report: In 46 States, High School Graduation Requirements Aren’t Enough to Qualify for Nearby Public Universiti… https://t.co/19wwkyIUP5" +04/01/2018,Politicians,@JebBush,A very happy Easter to everyone! https://t.co/r9kBdX4OEh +03/24/2018,Politicians,@JebBush,China accuses US of ‘serious provocation’ in South China Sea https://t.co/hIyzwVUPsW via @SCMP_News These are inter… https://t.co/uoqXWfQtwA +03/24/2018,Politicians,@JebBush,Wayne Huizenga’s passing is a tremendous loss. He was an incredible man and a Florida icon. More than just a trailb… https://t.co/40repdeUNg +03/23/2018,Politicians,@JebBush,The Democrats Abandon Catholics Thank you Cardinal Dolan! https://t.co/4ty120AuhP +03/22/2018,Politicians,@JebBush,"Just spent an incredible day at @ADHUS_FAUHS. One of the most impressive schools in the nation! Students, teachers… https://t.co/EEKGViC1VH" +03/22/2018,Politicians,@JebBush,RT @GeorgeHWBush: Yesterday I was inspired by my friend John Cronin to wear these beauties from @JohnsCrazySocks marking World Down Syndrom… +03/20/2018,Politicians,@JebBush,Excited to visit with members of the @BuckleyProgram at @Yale next week! https://t.co/HchXtdiMe9 +03/19/2018,Politicians,@JebBush,America's Distracted Syria Policy Is on the Rocks | RealClearWorld https://t.co/gpKkU5zB6c +03/17/2018,Politicians,@JebBush,"Arlington, Texas replaces local bus service with Via on-demand ride-sharing https://t.co/PDuBcr5pne via @techcrunch… https://t.co/6YbUs2NSSs" +03/17/2018,Politicians,@JebBush,I hope Floridians have an opportunity to vote for a constitutional amendment that would ensure victims and their fa… https://t.co/2BSNMpoW2n +03/15/2018,Politicians,@JebBush,Absolutely heartbreaking https://t.co/nBI0g6U9xk +03/15/2018,Politicians,@JebBush,"Scott Kelly spent a year in space, and came back with different DNA than his identical twin https://t.co/FVX1xrcCcf via @nationalpost" +03/14/2018,Politicians,@JebBush,Syrian Observatory says war has killed more than half a million https://t.co/NrWMWDWKja +03/13/2018,Politicians,@JebBush,Today’s court ruling is a clear victory for Louisiana families and for educational choice. #charterschools provide… https://t.co/wrjuPDZeVz +03/13/2018,Politicians,@JebBush,"Check out my friend @CharlesSauer's new book, Profit Motive: What Drives the Things We Do, out today:… https://t.co/XxM9FwLHth" +03/11/2018,Politicians,@JebBush,"Every parent, regardless of ZIP code or financial status, deserves the opportunity to make the best decisions for t… https://t.co/AcxKtMjnMz" +03/10/2018,Politicians,@JebBush,Trump-Loving Pastor Robert Jeffress Was Once Unwilling To ‘Trade People’s Eternal Destiny For Some Temporary Change… https://t.co/lfxpRWu6or +06/29/2018,Politicians,@gov_gilmore,"RT @librarycongress: #BaseballAmericana + +NOW OPEN! + +https://t.co/LmDKwtuCJn https://t.co/tpVsAIZwF1" +06/27/2018,Politicians,@gov_gilmore,RT @LibnOfCongress: THREE days to the opening of the #BaseballAmericana exhibit at @librarycongress. See amazing items from the Library’s b… +06/26/2018,Politicians,@gov_gilmore,RT @APTA_Transit: #TransitFactFriday #TFF https://t.co/qfpMoI9BfG +06/26/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/HH9WEQQiEb +06/26/2018,Politicians,@gov_gilmore,RT @APTA_info: Read today's @detroitnews opinion piece by APTA President and CEO Paul Skoutelas: #Transit is key to job attraction https:… +06/22/2018,Politicians,@gov_gilmore,RT @ameriopp: Tax Reform -- The Growth Code 2.0 | American Opportunity https://t.co/LfbVkI5OkC +06/22/2018,Politicians,@gov_gilmore,Make the #taxcuts permanent. A winning message for 2018. https://t.co/zKW3W1KUvO +06/19/2018,Politicians,@gov_gilmore,RT @APTA_Transit: The federal government must continue to play a leading role in public transit funding. Read why in the latest from #Voice… +06/18/2018,Politicians,@gov_gilmore,Will join @jfradioshow later this morning at 9:05am ET to discuss making President Trump's Tax Cuts permanent. List… https://t.co/DAXi5kMYao +06/14/2018,Politicians,@gov_gilmore,"RT @USArmy: Happening now at @ArlingtonNatl, a #USArmy Full Honors Wreath Laying ceremony with @ArmyChiefStaff, @SecArmy and @15thSMA in re…" +06/14/2018,Politicians,@gov_gilmore,RT @SFBART: BART put every available car into service for the Warriors parade and it paid off. Watch how BART helped a half million people… +06/14/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: the Continental Congress approves the design for a national flag, 1777 #FlagDay #otd #tih https://t.…" +06/09/2018,Politicians,@gov_gilmore,RT @ameriopp: Investing in #transit is essential to economic growth. https://t.co/ZuVcToAuvk +06/08/2018,Politicians,@gov_gilmore,"RT @WaltonCaps: ZERO WINS TO GO, THE WASHINGTON CAPITALS ARE STANLEY CUP CHAMPIONS!" +06/07/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: Trump Has A Historic Opportunity For Peace On N. Korean Peninsula: https://t.co/43W1kwHq1…" +06/06/2018,Politicians,@gov_gilmore,"RT @DeptofDefense: On June 6, 1944, 160,000+ Allied troops landed at #Normandy, a heavily fortified stretch of French coastline to initiate…" +06/06/2018,Politicians,@gov_gilmore,"RT @SecPompeo: 74 years ago, U.S. & Allied troops landed in Normandy to begin the liberation of Europe. #DDay was the turning point in the…" +06/06/2018,Politicians,@gov_gilmore,Tune in @jfradioshow at 9:05am ET to the Commander of Common Sense - John Fredericks. John and I will discuss the u… https://t.co/BM30wKWcdv +06/06/2018,Politicians,@gov_gilmore,Listen in to @jfradioshow this morning. I will join the show at 9:05am ET. +06/05/2018,Politicians,@gov_gilmore,"RT @APTA_Transit: #Publictransit is easy, even when playing in the #StanleyCupFinals! Just ask @TJOshie77 . + +""It was great. It was actually…" +06/05/2018,Politicians,@gov_gilmore,Time to move forward! #transittuesday @APTA_Transit @APTA_info @aptapolicylab https://t.co/rDWqiji1CL +06/05/2018,Politicians,@gov_gilmore,"RT @gohrt_com: #DidYouKnow Access to public transportation gives people transportation options to get to work, go to school, visit friends,…" +06/03/2018,Politicians,@gov_gilmore,RT @Denver4VA: Thank you to everyone for the overwhelming support and congratulations. I’m honored to be your nominee. Big thank you to all… +06/03/2018,Politicians,@gov_gilmore,A Nation’s infrastructure is a measure of its greatness! @APTA_Transit @APTA_info +05/31/2018,Politicians,@gov_gilmore,RT @FTA_DOT: Private Investment Project Procedures (PIPP) Final Rule describes new procedures to encourage private involvement in transit p… +05/31/2018,Politicians,@gov_gilmore,"⚡️ “Crowds flock to capture the best photo of Manhattanhenge” + +https://t.co/iWeB31v5hN" +05/30/2018,Politicians,@gov_gilmore,"Virginia: Say ""No"" to Medicaid Expansion and More Taxes! @AFPVA The latest Growth PAC commentary:… https://t.co/SZARDDawbT" +05/30/2018,Politicians,@gov_gilmore,Thanks for the time on your show this morning to discuss this important topic for Virginia and the nation.… https://t.co/W8nFeWrfE1 +05/30/2018,Politicians,@gov_gilmore,"Virginia: Say ""No"" to Medicaid Expansion and More Taxes! +https://t.co/ioBsFpXnhH" +05/30/2018,Politicians,@gov_gilmore,Tune in this morning to the John Fredericks Radio Network @jfradioshow - I will join the show at 7:05. Talking Medi… https://t.co/Oav4V4q1sX +05/29/2018,Politicians,@gov_gilmore,"Tune in tomorrow morning (Wed., May 30th at 7:05am ET) @jfradioshow - We will discuss Medicaid expansion in Virgini… https://t.co/Q2BCEjKLZP" +05/29/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/tFkpZ4L63a Former Va Governor, Jim Gilmore: After A Year Of Investigat…" +05/26/2018,Politicians,@gov_gilmore,"RT @usmissiongeneva: At #WHA71, Assistant Secretary Moley @State_IO condemned the draft decision on health conditions in #Palestine and #Go…" +05/25/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly:On North Korea, Keep Sending The Right Message. The North Koreans are objecting to J… https://t.co/f9KbhjWxuI" +05/25/2018,Politicians,@gov_gilmore,"Say ""No"" to #MedicaidExpansion in #Virginia. Follow the lead of @AFPVA. +https://t.co/C5XO6og1qO" +05/25/2018,Politicians,@gov_gilmore,RT @APTA_Transit: We have reached another Transit Fact Friday. Be safe and enjoy the long weekend! #TFF https://t.co/LcpagqX3kz +05/25/2018,Politicians,@gov_gilmore,"RT @ameriopp: Soldiers Place 230,000 US Flags at Arlington National Cemetery | NBC4 Washington https://t.co/jvwc7bTQlY via @nbcwashington" +05/25/2018,Politicians,@gov_gilmore,The latest A/O Newsletter focuses on the N. Korea situation. +05/25/2018,Politicians,@gov_gilmore,"RT @MichaelLeePope: From the @librarycongress: Spectators at #MemorialDay services in @ArlingtonNatl amphitheater, May 1943 #MemorialDayWee…" +05/25/2018,Politicians,@gov_gilmore,RT @MichaelLeePope: Researchers at @VTAgEcon say exporting used clothing and worn textiles is extremely valuable to low-income countries wh… +05/25/2018,Politicians,@gov_gilmore,"RT @librarycongress: What is your go-to #baseball food? + +Our #BaseballAmericana exhibit opens on June 29 and we’re celebrating all things…" +05/25/2018,Politicians,@gov_gilmore,"RT @VVMF: As many are making their way to Washington, D.C. to recognize the sacrifices and contributions made by our veterans, let us never…" +05/24/2018,Politicians,@gov_gilmore,RT @johnmcguire56: My wife Tracy and I enjoyed our time at @gov_gilmore and Roxanne Gilmore’s home for the James River Republican women’s f… +05/24/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/IZiqMA0hXQ Vice Admiral Lee Gunn, USN (Ret.) - Va. Can Be A Leader In…" +05/24/2018,Politicians,@gov_gilmore,RT @jfradioshow: Speaker Kirk Cox: There Needs To Be More Sense Of Urgency On The Budget: https://t.co/2GQszMHuoO via @YouTube +05/24/2018,Politicians,@gov_gilmore,RT @markknoller: Today at the WH. Pres hosts East Room ceremony to present the Medal of Honor to retired Navy SEAL Master Chief Britt Slabi… +05/23/2018,Politicians,@gov_gilmore,"RT @markknoller: ""We have made zero concessions to Kim Jong-un to date, and have no intentions of doing so,"" said @SecPompeo” in testimony…" +05/23/2018,Politicians,@gov_gilmore,RT @FoxNews: Arizona college plants 10K flags to honor the fallen for Memorial Day https://t.co/sxWb3uR6IX +05/23/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: Today, President Trump welcomed @NASCAR Cup Series Champion @MartinTruex_Jr and team to the White House! https://t.co/hLDuC…" +05/22/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly:On North Korea, Keep Sending The Right Message. The North Koreans are objecting to J… https://t.co/fstpwwhCiW" +05/22/2018,Politicians,@gov_gilmore,Later today we'll be releasing our latest newsletter and discussing the potential USA - N. Korean Summit and other… https://t.co/pqBl9sAita +05/22/2018,Politicians,@gov_gilmore,RT @jfradioshow: Coming up next on crazy FBI spyware @CLewandowski_ 8:35; on North Korea @gov_gilmore 9:05 live https://t.co/tIUUQaX1Hp +05/22/2018,Politicians,@gov_gilmore,Will join @jfradioshow later this morning at 9:05am ET to discuss N. Korea. Listen Live: https://t.co/d8G96eNEDm +05/22/2018,Politicians,@gov_gilmore,RT @SpeakerRyan: 67% of Americans believe now is a good time to find a good-paying job—the highest percentage in 17 years. Our thriving eco… +05/21/2018,Politicians,@gov_gilmore,https://t.co/LMH9rKZ2Al +05/16/2018,Politicians,@gov_gilmore,"The more we grow, the more we share. Learn about public transit and other projects at Infrastructure Week 2018 (May… https://t.co/pYgFbm0ZJU" +05/15/2018,Politicians,@gov_gilmore,Infrastructure jobs are good jobs! Learn about the industry at Infrastructure Week 2018 (May 14-21) https://t.co/RjMnlOqENv +05/14/2018,Politicians,@gov_gilmore,A foundation in infrastructure is a foundation in jobs. Learn about federal investment at Infrastructure Week Week… https://t.co/FFZEgsxx8l +05/14/2018,Politicians,@gov_gilmore,"RT @APTA_info: #InfrastructureWeek means jobs, building our community, and means an investment in tomorrow. It is #timetobuild our future.…" +05/14/2018,Politicians,@gov_gilmore,Investment is needed. Learn about infrastructure needs at Infrastructure Week 2018 (May 14-21) https://t.co/Ib8LvcwY1L +05/10/2018,Politicians,@gov_gilmore,@ameriopp Here's to another great #InfrastructureWeek in 2018 @InfraWeek +05/10/2018,Politicians,@gov_gilmore,@ameriopp Transit creates and sustains great jobs all over America. @APTA_info @APTA_Transit @InfraWeek +05/10/2018,Politicians,@gov_gilmore,"RT @ameriopp: In its 6th year, Infrastructure Week is a coalition-led effort. This year Infrastructure Week is May 14th through 21st. https…" +05/10/2018,Politicians,@gov_gilmore,RT @ameriopp: 87 percent of #publictransit trips impact the economy.Trillion Dollar Infrastructure Proposals Could Create Millions of Jobs… +05/10/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/1OBAhsKXmk +05/10/2018,Politicians,@gov_gilmore,"RT @librarycongress: We’re talkin' #baseball & want to hear from YOU! Here is the 2nd question in our #BaseballAmericana conversation: + +Wha…" +05/10/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: ""golden spike"" joins transcontinental railroad at Promontory Point, Utah Territory, 1869 #otd #tih h…" +05/08/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: Last month, the economy added 164,000 new jobs as the unemployment rate fell to 3.9%, cracking 4% for the first time since…" +05/08/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: President Trump was in Cleveland, OH on Saturday talking with local residents about the impact of his Dec. tax cuts legisla…" +05/08/2018,Politicians,@gov_gilmore,"RT @librarycongress: How did YOU become a baseball fan? + +Join the great American conversation during the 9-week countdown to our #Baseball…" +05/08/2018,Politicians,@gov_gilmore,Thank you @VFRWomen for a wonderful evening! https://t.co/3VntAc1mq9 +05/07/2018,Politicians,@gov_gilmore,RT @ameriopp: The State of American Foreign Policy. A/O's 6-part series of essays on ideas to improve our foreign policy. https://t.co/nqWO… +05/07/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/u5MQtl8zZY Former Va Governor, Jim Gilmore: Logan Act, Iran Deal, Mike…" +05/07/2018,Politicians,@gov_gilmore,RT @andrew5047: “What kind of cities do we want to live in?” Listening to @gabe_klein at #APTABus18. There are many ways to answer the ques… +05/07/2018,Politicians,@gov_gilmore,"Hope to see you at the ""Infrastructure Week Rooftop Reception"" in DC https://t.co/7KQCm7UZV6 via @Eventbrite" +05/07/2018,Politicians,@gov_gilmore,RT @jfradioshow: Too much fun: #GodzillaOfTruth coming up #JFRS @DaveBratVA7th 8:05; @JohnWhitbeck 8:35 (oh this will be fun!); @CarlHigbie… +05/04/2018,Politicians,@gov_gilmore,"BCG | To achieve ambitious employment goals, planners must adopt a ""jobs-centric"" approach for prioritizing investm… https://t.co/v0tMWDLA0y" +05/04/2018,Politicians,@gov_gilmore,"RT @APTA_info: ‘Wrench time’ ratchets up: @wmata workers 34% more productive in rebuilding #transit infrastructure, GM says https://t.co/ic…" +05/04/2018,Politicians,@gov_gilmore,"RT @FTA_DOT: June 6 is TCRP DAY, aimed at showcasing how research helps the transit industry & how transit professionals can get involved h…" +05/03/2018,Politicians,@gov_gilmore,RT @librarycongress: The 9-week countdown to our #BaseballAmericana exhibit begins! Baseball is a great community & you’re a part of it. Re… +05/03/2018,Politicians,@gov_gilmore,@librarycongress I became a lifelong NY Yankees fan as a young boy in the mid 1950s when their Triple A team played… https://t.co/sO7ZT7o3f8 +05/03/2018,Politicians,@gov_gilmore,A/O Global Intelligence Weekly: Some Brief Updates On Our Current National Security Condition.... https://t.co/jw36XltZie +05/03/2018,Politicians,@gov_gilmore,Rebuilding our public transportation infrastructure by investing in public transit to promote economic growth w/ co… https://t.co/KDpOjzXtU9 +05/02/2018,Politicians,@gov_gilmore,Editorial: A back-to-basics look at Virginia's budget. Virginia spends most of its money on core services: social w… https://t.co/sad2bnDhNE +05/01/2018,Politicians,@gov_gilmore,RT @LibnOfCongress: On this day 229 years ago George Washington delivered his first inaugural address. Did you know the @librarycongress ha… +05/01/2018,Politicians,@gov_gilmore,RT @ameriopp: ICYMI: The Latest A/O Global Intelligence Weekly from @ameriopp from @gov_gilmore https://t.co/eyUzK5vyON +04/27/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: Union General, 18th US President & successful memoirist U.S. Grant born, 1822 #otd #tih https://t.co…" +04/26/2018,Politicians,@gov_gilmore,"RT @APTA_info: Discover practical #transit solutions from eight new Transit Cooperative Research Program reports, sign up for a free May 3…" +04/26/2018,Politicians,@gov_gilmore,ICYMI: A Blueprint for National Security & @ameriopp's Global Intelligence Newsletter Archive! https://t.co/cW0dNpGCAq +04/24/2018,Politicians,@gov_gilmore,RT @jfradioshow: Congresswoman Barbara Comstock: More Jobs Will Be Available Under The Trump Economy: https://t.co/QbpmVZvJzl via @YouTube +04/24/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/hpPuHIMYey Former Va Governor, Jim Gilmore: Virginians Want To Be Supp…" +04/24/2018,Politicians,@gov_gilmore,"RT @APTA_info: ""@PurpleLineMD Construction Already Sparking Suburban Maryland Office Renaissance,"" reports @Bisnow https://t.co/lwmukABCQr…" +04/24/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: Happy Birthday to us! President John Adams approves establishment of the Library of Congress, 1800 #…" +04/23/2018,Politicians,@gov_gilmore,The United States must be clear that the North Koreans must eliminate their nuclear program. https://t.co/zh8K5d7Ati +04/23/2018,Politicians,@gov_gilmore,@jfradioshow @TimHugo @SpeakerCox @DaveBratVA7th @BarbaraComstock @JobCreatorsUSA Will be #TruckingTheTruth with… https://t.co/MfY6OTcLHY +04/23/2018,Politicians,@gov_gilmore,RT @jfradioshow: Great show today #JFRS #TruckingTheTruth Coming up @TimHugo 7:05; @SpeakerCox 7:35; @DaveBratVA7th 8:05; @BarbaraComstock… +04/20/2018,Politicians,@gov_gilmore,"RT @VP: Congrats Rep Bridenstine on being confirmed as the next @NASA Administrator! Under @POTUS, America will lead in space once again. W…" +04/20/2018,Politicians,@gov_gilmore,RT @RepTomGarrett: DUE TODAY: Our #VA05 offices in @CvilleCityHall and @cityofdanville are accepting submissions for our 2018 Congression… +04/20/2018,Politicians,@gov_gilmore,RT @LincolnsCottage: #getyouamuseumthatcandoboth https://t.co/G8VfLC4Gph +04/20/2018,Politicians,@gov_gilmore,RT @APTA_info: Last chance to register for next hour's free #TCRP webinar on private #transit services and a discussion of ways they may af… +04/19/2018,Politicians,@gov_gilmore,"RT @APTA_Transit: Just over 2 years ago, Congress passed the FAST Act, the first long-term #transportation bill in a decade. See how the #F…" +04/19/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: battles of Lexington & Concord during American Revolution, 1775 #otd #tih https://t.co/H1VeNfUMcm ht…" +04/17/2018,Politicians,@gov_gilmore,The Supreme Court should not reverse internet sales tax law...@quill @NetChoice @GeorgeWill https://t.co/0beKtX5B7c +04/17/2018,Politicians,@gov_gilmore,"RT @ShariBolouri: @gov_gilmore was Chair of the national advisory Commission on electronic Commerce, charged with making recommendations to…" +04/17/2018,Politicians,@gov_gilmore,RT @MineForSale: NetChoice Calls on U.S. Supreme Court to Uphold Current Internet Sales Tax Laws #mining https://t.co/NTNwaIrKYK +04/17/2018,Politicians,@gov_gilmore,"RT @NetChoice: While we wait for oral arguments to start, take a look at our new op-ed, by NetChoice President Steve DelBianco, ""#Amazon wo…" +04/17/2018,Politicians,@gov_gilmore,Discussing online retail at US Supreme Court. Decision expected in June. https://t.co/CbnJpO3F7e +04/17/2018,Politicians,@gov_gilmore,At Supreme Court with former Congressman Chris Cox discussing online retail issues. https://t.co/OQv6OScKuy +04/17/2018,Politicians,@gov_gilmore,RT @lawrencehurley: And on Tuesday the court hears arguments in this big case on sales taxes & online commerce: South Dakota urges Supreme… +04/17/2018,Politicians,@gov_gilmore,RT @PeteWilliamsNBC: I awaken from my long Twitter nap to preview Tuesday's Supreme Court case on Internet sales taxes. https://t.co/5WUg3… +04/16/2018,Politicians,@gov_gilmore,Looking forward to it! https://t.co/wYHb4HqKHL +04/16/2018,Politicians,@gov_gilmore,RT @ameriopp: The Latest @ameriopp Blueprint for America's National Security Strategy (NSS) The national security of the U.S. as set out in… +04/11/2018,Politicians,@gov_gilmore,"@APTA_info @ameriopp continues to address the importance of a federal role in public transportation, with a particu… https://t.co/08rdRqFTvr" +04/11/2018,Politicians,@gov_gilmore,"RT @APTA_info: “In late March, Congress appropriated $13.5 billion for public transit – that’s the largest annual amount of federal #transi…" +04/10/2018,Politicians,@gov_gilmore,"RT @APTA_info: APTA names Ward W. McCarragher as Vice President, Government Affairs. McCarragher has served as Majority/Minority Chief Coun…" +04/09/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: Chemical Attack In Syria: https://t.co/g9iDdQedvh via @YouTube" +04/09/2018,Politicians,@gov_gilmore,Will now join @jfradioshow this morning at 9:40am ET. Discussing the latest on Syria. https://t.co/AYFNBgqxqv +04/09/2018,Politicians,@gov_gilmore,Listen to @jfradioshow this morning. I will join John at 9:05am ET. https://t.co/AYFNBgqxqv +04/06/2018,Politicians,@gov_gilmore,RT @APTA_info: Learn more about public #transit funding in the $1.3 trillion omnibus spending bill -> https://t.co/NSQqgct3E0 #PassengerTra… +04/06/2018,Politicians,@gov_gilmore,RT @APTA_info: Federal grant to grow @Ride_BT fleet in Virginia https://t.co/IZAOwJQc7K #TransitFundingTuesday @YannRanaivo @roanoketimes @… +04/04/2018,Politicians,@gov_gilmore,"RT @librarycongress: As we remember Martin Luther King today, please take a moment to view our exhibition ""The Civil Rights Act of 1964: A…" +04/03/2018,Politicians,@gov_gilmore,RT @dcsportsbog: The Library of Congress digitized more than 1700 of Branch Rickey's scouting reports. This is awesome https://t.co/5Cdi29k… +03/30/2018,Politicians,@gov_gilmore,RT @PaulONeillYES: Baseball is back!! It’s going to be a fun year!!! +03/30/2018,Politicians,@gov_gilmore,A/O Global Intelligence Weekly: Bolton Might Be The Shot In The Arm We Need. https://t.co/uTiJyK3GdD +03/28/2018,Politicians,@gov_gilmore,RT @jfradioshow: Live today #JFRS #TruckingTheTruth on @Amtrak rolling through @AmtrakVA from Danville and Lynchburg to DC! Great views and… +03/27/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: President Trump Signs Budget Bill, Middle East & More...: https://t.co/bQ1Fm2vLpl via @Yo…" +03/26/2018,Politicians,@gov_gilmore,Must boost up our military budget. Listen now @jfradioshow https://t.co/MhlR2YEr2z +03/26/2018,Politicians,@gov_gilmore,RT @jfradioshow: We are live in Atlanta! Coming up on the #GodzillaNetwork #TruckingTheTruth today: Mike Troxel CD 6 Scam update 7:35; @Dav… +03/26/2018,Politicians,@gov_gilmore,"Listen to @jfradioshow this morning at 8:35 ET. Listen live. Download the app. +https://t.co/MhlR2YEr2z" +03/23/2018,Politicians,@gov_gilmore,"RT @APTA_info: All across America, people board public #transit 35 million times each weekday. #InvestInTransit https://t.co/R7xTMIyjdF" +03/22/2018,Politicians,@gov_gilmore,RT @APTA_info: Public #transit leaders lobby Congress to restore federal grants for new projects https://t.co/az7cC2SAVr @PittsburghPG @PGH… +03/22/2018,Politicians,@gov_gilmore,RT @bigleaguestew: The Orioles are making it cheaper (and more fun!) for families to attend games at Camden Yards https://t.co/Pn4KY2fTr4 +03/22/2018,Politicians,@gov_gilmore,"ICYMI A/O Global Intelligence Weekly: A Breakthrough In North Korea? +Yes, ladies and gentlemen -- it is a breakthro… https://t.co/qllqQs88tW" +03/22/2018,Politicians,@gov_gilmore,RT @SEPTANews: A big THANK YOU to #SEPTA crews who were out all day and night clearing platforms and sidewalks throughout our system! #Tack… +03/22/2018,Politicians,@gov_gilmore,@ameriopp @WhiteHouse Trillion Dollar Infrastructure Proposals Could Create Millions of Jobs...These jobs include j… https://t.co/PNEt8AO7wT +03/20/2018,Politicians,@gov_gilmore,RT @APTA_info: House @Transport Subcommittee Chair @RepSamGraves (R-MO) tells #APTAleg18 about upcoming legislation: “You will see the @FTA… +03/20/2018,Politicians,@gov_gilmore,RT @ChamberMoves: Glad to partner with @APTA_Transit to ensure enactment of federal infrastructure modernization bill this year!#APTALEG18… +03/15/2018,Politicians,@gov_gilmore,RT @jfradioshow: Del. Ben Cline: We Have To Be On Our Toes In The 6th District: https://t.co/B6Cw1cCH6Z via @YouTube +03/13/2018,Politicians,@gov_gilmore,"RT @ameriopp: Jobs jump by 313,000 in February, best since July 2016 #JobsReport https://t.co/9XvXGnVO4n https://t.co/qyxrYMjXx4" +03/13/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: ORANGE & BLUE: #MarchMadness tips off today! Get ready for our first game in #Charlotte on Friday as @wahoovoice and @Jef… +03/12/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: Hoos are heading to Charlotte! Take a look at the team's reaction and hear from Coach Bennett ahead of the start of #Marc… +03/12/2018,Politicians,@gov_gilmore,Have a great time John. https://t.co/aviedxNLAu +03/12/2018,Politicians,@gov_gilmore,RT @jfradioshow: Rocking on #JFRS today #TruckingTheTruth in America! @DaveBratVA7th 8:05 am; @AmericaFirstPol Curtis Ellis 8:35; @gov_gilm… +03/09/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly: A Breakthrough In North Korea? +Yes, ladies and gentlemen -- it is a breakthrough th… https://t.co/GTpLnZJZj0" +03/09/2018,Politicians,@gov_gilmore,RT @WaysandMeansGOP: STATEMENT: Chairman @RepKevinBrady on the February 2018 jobs report https://t.co/6iiKUi5J4i ⬇️ https://t.co/rPdQbSy3Of +03/08/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Rise and shine! Our postseason starts today vs. @LouisvilleMBB! +⏰ Noon +📍@barclayscenter +📺 ESPN & ACC Network https://t.c…" +03/06/2018,Politicians,@gov_gilmore,RT @ameriopp: A Nation’s infrastructure is a measure of its greatness. Building a Stronger America https://t.co/5KJKlczJ3A via @whitehouse +03/04/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: A picture is worth a thousand words! #Wahoowa https://t.co/3QKdmPKV7V +03/02/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: A 3⃣ at the buzzer by @Dr_Dre14 is the difference tonight #GoHoos + +👀 at the full Tale of the Tape 👇 https://t.co/qEUaFVg…" +02/27/2018,Politicians,@gov_gilmore,READ: @ameriopp's 5-Part Series on a New American Foreign Policy https://t.co/XdJjaHzdjV +02/21/2018,Politicians,@gov_gilmore,RT @VanHipp: Looking forward to #CPAC #CPAC2018! Can't wait to discuss how we can continue to make America stronger than ever. @realDonaldT… +02/20/2018,Politicians,@gov_gilmore,RT @ameriopp: READ: Jim Gilmore's 5-Part Series on a New American Foreign Policy https://t.co/x907odq8Bd +02/20/2018,Politicians,@gov_gilmore,"RT @BeschlossDC: At White House, JFK and LBJ nervously watch John Glenn’s launch into earth orbit, with Congressional leaders (Boggs, Alber…" +02/19/2018,Politicians,@gov_gilmore,"RT @librarycongress: All things presidential on our social media sites today, #PresidentsDay -- here, presidential pets from our Pinterest…" +02/16/2018,Politicians,@gov_gilmore,RT @cspanhistory: Tune into C-SPAN 3 tomorrow night at 8pm to watch @governorwilder's lecture on modern politics in Richmond at @vcu. Mr. W… +02/16/2018,Politicians,@gov_gilmore,Great show from Richmond @jfradioshow ! https://t.co/qXVBOcX72t +02/15/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/r9XgRk4oLT +02/15/2018,Politicians,@gov_gilmore,"RT @librarycongress: Getting ready for baseball? Pitchers & catchers report today! We're getting ready, too: our #BaseballAmericana exhibit…" +02/14/2018,Politicians,@gov_gilmore,RT @dcexaminer: Treasury wipes 300 IRS regulations off the books https://t.co/K9hp8OWnMH https://t.co/2kVZjfqDDy +02/12/2018,Politicians,@gov_gilmore,RT @TwitterMoments: Former US President Abraham Lincoln was born in Kentucky on this day in 1809. https://t.co/OPkiVZObnj +02/12/2018,Politicians,@gov_gilmore,Listen to @jfradioshow at 7:35am. We will be discussing the issues of the day and foreign policy. #JFRS Listen her… https://t.co/4zwCiz0GR2 +02/12/2018,Politicians,@gov_gilmore,Listen to @jfradioshow at 7:35am tomorrow (Monday). We will be discussing the issues of the day and foreign policy.… https://t.co/zr8HeADJsg +02/10/2018,Politicians,@gov_gilmore,RT @ManchesterGOP: Deepest condolences to the Cataldo family on the passing of Sam Cataldo this past weekend from a fatal car accident. He… +02/10/2018,Politicians,@gov_gilmore,RT @VirginiaSports: Here comes @UVAMensHoops for warmups! #GoHoos #Wahoowa 🔶🔷🏀 https://t.co/T1gOiI6hKp +02/10/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Pregame 🏀 falling! +Hoos vs. Hokies at 6:15. #GoHoos #Wahoowa 🔶🔷 https://t.co/QD5k1j9Q0n" +02/09/2018,Politicians,@gov_gilmore,READ: @ameriopp's 4-Part Series on a New American Foreign Policy https://t.co/XdJjaHzdjV +02/07/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: .@HurdOnTheHill: ""Jeff and Mary Marsh have owned and operated Hinee Coffee in Helotes, Texas for the past seven years.…" +02/07/2018,Politicians,@gov_gilmore,RT @APTA_info: Invest in safe transportation by investing in public #transit. #TransitFundingTuesday https://t.co/mFvJN0X1wA https://t.co/r… +02/07/2018,Politicians,@gov_gilmore,"RT @SteveScalise: Chipotle is paying its employees bonuses thanks to the Tax Cuts & Jobs Act. #TacoTuesday +https://t.co/lNZ5EhGIVJ" +02/05/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Next Saturday, Feb. 10, @CollegeGameDay will be back in JPJ for the third time as No. 2 Virginia hosts the Commonwealth C…" +02/03/2018,Politicians,@gov_gilmore,READ: American Opportunity's 4-Part Series on a New American Foreign Policy @ameriopp #foreignpolicy… https://t.co/hHsU1cWXON +02/02/2018,Politicians,@gov_gilmore,on now with @GibsonRadio https://t.co/vOTSH7Kp5O +02/02/2018,Politicians,@gov_gilmore,Tune in to @GibsonRadio this afternoon. I'll be on at 1:15pm ET. https://t.co/vOTSH7Kp5O +02/01/2018,Politicians,@gov_gilmore,READ: A/O Global Intelligence Weekly: American Foreign Policy (Part 4). A New Direction For America! | American Opp… https://t.co/BIdYOmVXDe +02/01/2018,Politicians,@gov_gilmore,Looking forward to chatting with @jfradioshow again this morning at 8:05am ET. Download his App and listen every m… https://t.co/72QBOJa2cx +01/31/2018,Politicians,@gov_gilmore,Gilmore: Dems 'Closed Both Eyes' on Immigration Issue | https://t.co/kyzNHy8STC https://t.co/JITDFireeH via @Newsmax +01/31/2018,Politicians,@gov_gilmore,Thanks @KattyKayBBC for another interesting analysis on BBC. https://t.co/zk5QpNCaAz +01/31/2018,Politicians,@gov_gilmore,Enjoyed another great segment wirh @TeamCavuto today! https://t.co/GEgmvEhi52 +01/31/2018,Politicians,@gov_gilmore,On with BBC's @KattyKayBBC right now discussing #SOTUResponse +01/31/2018,Politicians,@gov_gilmore,"RT @TeamCavuto: Former Virginia Governor Jim Gilmore (@gov_gilmore) on the FBI's ""grave concerns"" over the release of Devin Nunes' memo: + +""…" +01/31/2018,Politicians,@gov_gilmore,Tune in at 1:25pm ET to @FoxBusiness with @TeamCavuto discussing #StateOfTheUnion and MS-13 https://t.co/NvV1cSISPJ +01/31/2018,Politicians,@gov_gilmore,RT @TeamCavuto: We are covering this and much more NOW on @FoxBusiness https://t.co/H6pgx3kh5U +01/31/2018,Politicians,@gov_gilmore,RT @TeamCavuto: #BreakingNews now on @FoxBusiness: Congressman Trey Gowdy (R-SC) announces he will not run for re-election. https://t.co/hB… +01/31/2018,Politicians,@gov_gilmore,Looking forward to appearing @FoxBusiness with @TeamCavuto this afternoon at 1:25pm ET. Tune in! +01/31/2018,Politicians,@gov_gilmore,RT @ameriopp: @foxandfriends @EricTrump .@ameriopp has been working hard on conservative transportation solutions for more than 20 years. L… +01/31/2018,Politicians,@gov_gilmore,RT @jfradioshow: Dems want you in the pit of misery! #POTUS hits HOME RUN In #SOTU2018 Next up on #JFRS #TruckingTheTruth accross America:… +01/30/2018,Politicians,@gov_gilmore,RT @BillOReilly: I will analyze Trump's State of the Union address live on @Newsmax TV Tuesday night. Spread the word!!! https://t.co/9W9hX… +01/30/2018,Politicians,@gov_gilmore,Tune in now to @NewsmaxTV with @billtuckertv - I'll be discussing #SOTUnion and other news of the day. https://t.co/gCJhGgqu2C +01/30/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: President Trump Is Setting A Change In Direction For The U.S.: https://t.co/nYQn4DMkzz vi…" +01/30/2018,Politicians,@gov_gilmore,RT @gov_gilmore: Latest AO Newsletter (Part 3) on Promoting a New American Foreign Policy! @ameriopp https://t.co/wEPjWMO0IG +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: All across the country, hard-working families are seeing: +✅ Pay raises and bonuses +✅ Businesses hiring more employees…" +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: ICYMI: @RepAndyBarr lauds tax reform in visit with local business owners: ""Comments on the tax act were overwhelmingly…" +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: With our new tax code, you get to take home more of every hard-earned paycheck. Here is where to look on your pay stub…" +01/29/2018,Politicians,@gov_gilmore,"RT @cspan: Internet Policy Conference, @netedfound hosts – LIVE on C-SPAN2 https://t.co/Z6pDFjUgZZ https://t.co/d4SzHyFpmy" +01/29/2018,Politicians,@gov_gilmore,Tune in to @jfradioshow this morning. Download his app. Get the latest news. +01/29/2018,Politicians,@gov_gilmore,RT @jfradioshow: Live from D.C. this week #TruckingTheTruth on #JFRS up next @RepDaveBrat 8:05; @ParisBarns 8:35; @gov_gilmore 9:05 Downloa… +01/27/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: VICTORY: Big plays down the stretch propel 'Hoos to a huge W in Durham! Many more highlights to come! #wahoowa https://t.… +01/27/2018,Politicians,@gov_gilmore,"RT @UVA: BREAKING: The No. 2 ranked #UVA men’s basketball team has won at Cameron Indoor Stadium for the first time since 1995, defeating N…" +06/28/2018,Politicians,@GovChristie,What a fabulous win today for South Korea over an overrated German team in the World Cup. What you truly learn abou… https://t.co/vZHwGRbqvY +06/27/2018,Politicians,@GovChristie,"A heartfelt thank you to Justice Anthony Kennedy for 43 years of service to our nation. Now, I am confident that… https://t.co/yzH6kL7teL" +06/27/2018,Politicians,@GovChristie,A great day for free speech rights of Gov't workers in NJ & around the country--they no longer will pay exorbitant… https://t.co/xfryaQ1lrm +06/17/2018,Politicians,@GovChristie,Great win today by Mexico in the #FIFAWorldCup over a heavily favored German team. Congrats to Coach Juan Carlos Osorio. +06/05/2018,Politicians,@GovChristie,The WaPo story tonight saying I have been asked to help prepare @realDonaldTrump for any interview with Bob Mueller… https://t.co/KDM9Tjpp4D +06/04/2018,Politicians,@GovChristie,Will be on GMA this morning at 7:10am to discuss the legal issues surrounding the Mueller investigation. +05/29/2018,Politicians,@GovChristie,"RT @KevinSabet: Hey @GovMurphy, look up! +#DontLegalizePot + +Cc: @RAMP_NJ @tomamoran https://t.co/QK3pPWQchs" +05/29/2018,Politicians,@GovChristie,"The fake books would be, I thought, a little off putting for an NYT best selling author. But I'll take your word fo… https://t.co/SwKeZrjQIt" +05/28/2018,Politicians,@GovChristie,Congratulations to Steve and to fellow Blue Hen Ciara on your accomplishment. A great place to go to school. Go Blu… https://t.co/bh5kntnXj2 +05/28/2018,Politicians,@GovChristie,"Today we should all take some time to remember those who served our country in the military, past & present. The sa… https://t.co/FsXxYyjcfr" +05/21/2018,Politicians,@GovChristie,Exactly @NDMikeBrey. These five young men acted as big brothers to our daughter .@SarahChristie23 for the last four… https://t.co/nHNITFILBW +05/15/2018,Politicians,@GovChristie,"Meet the nun Jimmy Kimmel caricatured, writes @wjmcgurn; So agree with Bill McGurn--I urge Jimmy Kimmel to make it… https://t.co/Li6uz2RFCJ" +05/14/2018,Politicians,@GovChristie,A great day for the rights of states and their people to make their own decisions. New Jersey citizens wanted sport… https://t.co/hGJddOBs7u +05/10/2018,Politicians,@GovChristie,Great recognition for one of the best Governors in America--@MassGovernor Charlie Baker https://t.co/cuhoSfbwqM +05/03/2018,Politicians,@GovChristie,"RT @FrankALuna: Life comes at you fast... + +@tomamoran on 4/27: ""Not a single factual correction has been required for any column I wrote on…" +04/29/2018,Politicians,@GovChristie,The performance at the WHCD was awful. Her pounding of .@PressSec and .@KellyannePolls was mean spirited and not fu… https://t.co/M9GhX4I1Y5 +04/28/2018,Politicians,@GovChristie,Thanks to .@FLOTUS for caring so much about this crisis and lending her voice to the fight to save lives in America. https://t.co/geOcBKbwgb +04/28/2018,Politicians,@GovChristie,.@PhillySteaks--you have great folks working for all the customers there on a Friday night. https://t.co/WFLMQrxreL +04/28/2018,Politicians,@GovChristie,Just made a quick visit to @PhillySteaks to bring some to North Jersey for the family. Thanks to all the folks ther… https://t.co/KE7dEwyskX +04/27/2018,Politicians,@GovChristie,A great week of having @FLOTUS on the world stage making us proud and celebrating her birthday too! Happy birthday. https://t.co/MBNYQEM4ju +04/27/2018,Politicians,@GovChristie,Take back day is incredibly important to eliminate these drugs for diversion and misuse. Thanks to @realDonaldTrump… https://t.co/wf7ZybbGV2 +04/25/2018,Politicians,@GovChristie,"@PoliticalStile As for your other typically snarky, non-fact based commentary, I feel bad for you, as I always have… https://t.co/E5RLAv6dQ1" +04/25/2018,Politicians,@GovChristie,@PoliticalStile My criticism of Jim is based on his performance on the HRC email probe. No right to have a presser… https://t.co/KOrBqI80dy +04/25/2018,Politicians,@GovChristie,@mattkatz00 I have consistently criticized Jim's performance regarding the Clinton e-mail investigation since his p… https://t.co/D9yPE3sDpe +04/25/2018,Politicians,@GovChristie,Once again...a class act https://t.co/E02Wy7Lfpk +04/24/2018,Politicians,@GovChristie,Prayers for President Bush 41 from me and Mary Pat. We are sure his heart is heavy and his sorrow profound--it can'… https://t.co/QefDVE6WZH +04/18/2018,Politicians,@GovChristie,Mary Pat and I wish the entire Bush family our condolences on the loss of the one and only Barbara Bush. A great Fi… https://t.co/xcJFcU7bcy +04/15/2018,Politicians,@GovChristie,I think it’s unfortunately obvious that Jim Comey began to believe his own press clippings. It's the biggest danger… https://t.co/HJY47cddkz +04/15/2018,Politicians,@GovChristie,There's a rule at Justice that 60 days before an election you do nothing about somebody who is going to be on the b… https://t.co/4Prq7WXD7G +04/15/2018,Politicians,@GovChristie,What he's proving in his interview is that the president may have been right to fire him. Don't agree with how it… https://t.co/0KWPvbi2SZ +04/15/2018,Politicians,@GovChristie,We're not supposed to care about politics as prosecutors. But what we find out from his interview is that he did. T… https://t.co/1spCeR3ypM +04/15/2018,Politicians,@GovChristie,"When I worked for Jim Comey, if I had told him 11 days before an election that I was releasing information that cou… https://t.co/wLsQWvR3LU" +04/14/2018,Politicians,@GovChristie,Please tune in tomorrow morning to @ThisWeekABC as I give my unvarnished views on Jim Comey and his interview with… https://t.co/4QHSFTz1tR +04/11/2018,Politicians,@GovChristie,"The nation owes real thanks to Speaker Paul Ryan for stepping up to lead the House and for his honest, forthright l… https://t.co/KTsgAt61Mm" +04/11/2018,Politicians,@GovChristie,RT @GStephanopoulos: Quite a day with Jim @Comey. You'll see it all on Sunday @ABC. https://t.co/d2K9AqaOz6 +04/10/2018,Politicians,@GovChristie,Will be on @GMA this morning with @GStephanopoulos to discuss the implications of the FBI search on the offices of… https://t.co/lVWgjMmU3z +04/04/2018,Politicians,@GovChristie,Today my thoughts are on all that Dr. King meant to our nation and how much we could use his voice today as so many… https://t.co/UMtL0Lgc0P +04/02/2018,Politicians,@GovChristie,"Incredible win for @ndwbb! What guts, what grit, what courage...Go Irish! Congrats to Hall of Famer Muffet McGraw on a special win!" +03/31/2018,Politicians,@GovChristie,Let's start the year with a big win over a good program https://t.co/Kwtt6c4xNs +03/29/2018,Politicians,@GovChristie,It was great fun as a lifelong Mets fan to be at Opening Day and see a big Mets win. It was a true honor to be able… https://t.co/axHDj62wLc +03/29/2018,Politicians,@GovChristie,"While Opening Day is always a special day, filled with joy and hope and visions of springtime weather--today, Mets… https://t.co/NgFSILD3vW" +03/17/2018,Politicians,@GovChristie,"Looking forward to discussing another week of fascinating events with .@GStephanopoulos on Sunday morning! + https://t.co/SzgbZh6puW" +03/14/2018,Politicians,@GovChristie,Getting ready to talk with .@GStephanopoulos on @GMA in the 7am hour about the political/legal news of the day. +03/14/2018,Politicians,@GovChristie,Very proud of .@chefjclark on his new position as head of the WH Office of Public Liaison. He will do the job with… https://t.co/v824vHrsif +03/11/2018,Politicians,@GovChristie,"A very tough and unfair night for @NDmbb. They beat Syracuse, at Syracuse, without ND's two best players. They end… https://t.co/HBfAKZCzDL" +03/08/2018,Politicians,@GovChristie,.@TomCrean Great job on the ESPN2 broadcast tonight--you made an incredible Irish comeback even better! The whole f… https://t.co/iUUJkDnAeq +03/08/2018,Politicians,@GovChristie,.@rexpflueger What a great effort--you were a huge part of that record breaking 21 point comeback. We are all proud of you! +03/08/2018,Politicians,@GovChristie,An amazing comeback by a gritty group of guys--especially @Austin_Torres1 who brought real energy to the floor! Way… https://t.co/fsAB7wRAw0 +03/07/2018,Politicians,@GovChristie,Go Irish! Beat Virginia Tech! https://t.co/IEiSr9h4FD +03/07/2018,Politicians,@GovChristie,Let's go get em tomorrow...survive and advance https://t.co/Lu5s8GiKsm +03/04/2018,Politicians,@GovChristie,Looking forward to tomorrow morning's show https://t.co/Vqqc6dtzI9 +02/28/2018,Politicians,@GovChristie,Two extraordinarily proud parents in South Bend honoring our daughter @SarahChristie23 on Senior Night at Notre Dam… https://t.co/TIDnal9UxN +02/24/2018,Politicians,@GovChristie,Congrats to @MattyFarr3 for a huge shot https://t.co/XtRELOIf5h +02/24/2018,Politicians,@GovChristie,Glad to see our little girl's 22nd birthday is being celebrated with her by her second family--@NDmbb. Thanks for t… https://t.co/bUstL9strX +02/20/2018,Politicians,@GovChristie,What a great and gutsy group of young men. https://t.co/gqciTYKtDU +02/17/2018,Politicians,@GovChristie,Great performance from @MattyFarr3 and @NDmbb. Look out ACC--this Irish team is getting healthy and in rhythm for t… https://t.co/B8wvVaKR0d +02/14/2018,Politicians,@GovChristie,Our prayers are with the families of the victims of this horrific school shooting in Florida. Mary Pat and I will k… https://t.co/oFPgO7XRQ5 +02/11/2018,Politicians,@GovChristie,Gutsy win for the Irish! https://t.co/XEexct4X0Q +01/29/2018,Politicians,@GovChristie,"Congratulations to Bob Hugin for 19 years of great leadership for @Celgene. From 200 jobs when he began to over 7,5… https://t.co/Ll2taDXTV8" +01/29/2018,Politicians,@GovChristie,Congratulations on 24 yrs of exemplary service to our state and the nation @USRepRodney. I am proud to have worked… https://t.co/jWddTBwOzT +01/24/2018,Politicians,@GovChristie,Great job by the @NDmbb basketball managers. Great job @SarahChristie23! https://t.co/KqvmLe3AYp +01/18/2018,Politicians,@GovChristie,Neither option was the way I entered airport as Governor(wrong in the story) and PAPD officer never denied me entry… https://t.co/uKYAQxW9xP +01/18/2018,Politicians,@GovChristie,Absolutely false story about my travel today. NJSP security detail & I were led to one entrance in the airport by P… https://t.co/ei03c5Z0Ou +01/16/2018,Politicians,@GovChristie,Thank you to all the people of New Jersey for the honor of being your Governor for the last eight years. It was a true privilege. +01/15/2018,Politicians,@GovChristie,My statement commemorating Dr. Martin Luther King Jr. Day: https://t.co/hzUx61275X +01/12/2018,Politicians,@GovChristie,All State buildings are flying flags at half-staff today in recognition and mourning of a courageous and loyal Amer… https://t.co/rBC6aldBCg +01/11/2018,Politicians,@GovChristie,Flags on all State buildings are at half-staff today in recognition and mourning of the passing of Jersey City Poli… https://t.co/rpTEEFOqVe +01/10/2018,Politicians,@GovChristie,"I leave you today grateful, happy and a better man than I was eight years ago. #SOTS2018 https://t.co/Ae9HEFQzjD" +01/09/2018,Politicians,@GovChristie,Watch my State of the State Address LIVE here: https://t.co/LgGNbWSUnZ +01/09/2018,Politicians,@GovChristie,Be sure to watch as I deliver my final #SOTS2018 address today at 3:00 pm. https://t.co/o3xE44jtlk +01/08/2018,Politicians,@GovChristie,My remarks from today’s Memorial Service for Governor Brendan T. Byrne: https://t.co/nmAhYim75w +01/08/2018,Politicians,@GovChristie,I have ordered all state buildings to fly flags at half-staff today in recognition and mourning of the passing of f… https://t.co/NHMmmRJhgw +01/08/2018,Politicians,@GovChristie,@rizzoTK State funding has been ramped up significantly--2 1/2 times more than the last 5 administrations combined-… https://t.co/8npfDsMP4j +01/04/2018,Politicians,@GovChristie,My statement on the passing of Governor Brendan T. Byrne: https://t.co/FlwWaMlMlB +01/04/2018,Politicians,@GovChristie,It is a shame that Democrats in the Legislature are paralyzed & let the arbitration cap expire. This will lead to h… https://t.co/8QMqOTrVpP +01/04/2018,Politicians,@GovChristie,"Declaring state of emergency in Cape May, Atlantic, Ocean & Monmouth Counties. All state offices will now be closed… https://t.co/nnURnC2bKb" +01/04/2018,Politicians,@GovChristie,"State offices will have a 2 hour delayed opening from normal start times tomorrow, January 4th to allow for the cle… https://t.co/OK2Wf8jYx8" +01/03/2018,Politicians,@GovChristie,We have done this already in NJ and it is working well. I urge NY to follow our lead. https://t.co/UtEzmLvxxh +01/03/2018,Politicians,@GovChristie,I commend A.G. Sessions for selecting Craig Carpenito to be New Jersey's United States Attorney. Craig is an outsta… https://t.co/YqHhLPNogm +01/01/2018,Politicians,@GovChristie,Wishing everyone a very happy & healthy New Year! +01/01/2018,Politicians,@GovChristie,.@TomCrean What a great family! https://t.co/uX4wZCx81g +01/01/2018,Politicians,@GovChristie,Congratulations on another record breaking year at the great Turtle Back Zoo! https://t.co/kZGp9UGhVL +12/31/2017,Politicians,@GovChristie,The real story is that .@Bcolson_35 called a timeout before falling out of bounds! Great job Bonzie! https://t.co/csNFKx6Lzh +12/31/2017,Politicians,@GovChristie,"Great win for my alma mater tonight! + https://t.co/FijJowjSHc" +12/31/2017,Politicians,@GovChristie,RT @TheRobFranklin: It's official. @NDMikeBrey is one win away from the program record at Notre Dame. #BreysChase https://t.co/fgFnRDLJKg +12/28/2017,Politicians,@GovChristie,@PoliticalStile @EliseOnDeadline Another inaccurate story from @EliseOnDeadline endorsed by biased @PoliticalStile.… https://t.co/l46WFlQvT7 +12/27/2017,Politicians,@GovChristie,Today I signed Executive Order No. 237 ordering local Governments to accommodate prepayment of 2018 Property taxe… https://t.co/iwgUfrapFW +12/25/2017,Politicians,@GovChristie,Wishing everyone the joys of the season and happiness throughout the coming year. Merry Christmas! +12/20/2017,Politicians,@GovChristie,"We can do something to fix this, we should make property taxes on our state income tax returns completely deductibl… https://t.co/F7afOWzQEF" +12/20/2017,Politicians,@GovChristie,"As we conclude the celebration of Hanukkah, we do so with great hope for the coming year for good health, prosperit… https://t.co/0V93PKpYa1" +12/20/2017,Politicians,@GovChristie,Congratulations to @SecaucusPSD math teacher Toni-Ann Palmisano on being awarded the prestigious @Milken Educator A… https://t.co/ORW0bXErTS +12/20/2017,Politicians,@GovChristie,The legislation I signed today should stand as a model to other states because we need to give those who have truly… https://t.co/G8vlcM8VdV +12/20/2017,Politicians,@GovChristie,Watch my bill action event LIVE from Trenton: https://t.co/LgGNbWSUnZ +12/19/2017,Politicians,@GovChristie,Having the @NJHallofFame partner with @PANYNJ is a great way for NJ to put our best foot forward and give the peopl… https://t.co/FQrurwrAMJ +12/19/2017,Politicians,@GovChristie,Watch my remarks at the unveiling of the new @NJHallofFame interactive displays @EWRairport LIVE: https://t.co/LgGNbWSUnZ +12/16/2017,Politicians,@GovChristie,We must all work together and I am very happy to have the @NJDevils as partners in this fight. https://t.co/XWZ63mrflr +12/15/2017,Politicians,@GovChristie,Thank you to our @ReachNJ partners the @NJDevils and to their President @hughweber1 and 3x Stanley Cup Champ… https://t.co/p3VpH8sc5U +12/15/2017,Politicians,@GovChristie,Watch LIVE as I join Education Commissioner Harrington and the @NJDevils to speak to a group of students about the… https://t.co/OTRWV0lZ75 +12/14/2017,Politicians,@GovChristie,"I have complete confidence that @KellyannePolls will bring the skill, ability and will to implement the Commission… https://t.co/GcqYTVxnvT" +12/13/2017,Politicians,@GovChristie,Our healthcare providers have to be a major part of solving the opioid epidemic. https://t.co/XO0V9dQwgk +12/13/2017,Politicians,@GovChristie,Watch LIVE as I deliver the keynote remarks at the American Pain Association’s “Turn the Tide” Summit in Camden: https://t.co/LgGNbWSUnZ +12/12/2017,Politicians,@GovChristie,Programs like the Talent Development Center @RutgersU will help to restore lives and make our communities and our s… https://t.co/T3y7X1YfBV +12/12/2017,Politicians,@GovChristie,My statement on the celebration of Hanukkah: https://t.co/S0WER4Jh3l +12/12/2017,Politicians,@GovChristie,Watch my announcement of the Talent Development Center Awards @Rutgers: https://t.co/LgGNbWSUnZ +12/11/2017,Politicians,@GovChristie,My statement regarding the explosion this morning beneath @PABusTerminal in New York City: https://t.co/E5REw25B8W +12/08/2017,Politicians,@GovChristie,Watch my remarks LIVE from the NJ Association of Mental Health and Addiction Agencies Award Ceremony at their headq… https://t.co/G9YfJnYbkq +12/07/2017,Politicians,@GovChristie,The lights that you are holding represent the light of your spirit. #Vigil2017 https://t.co/n1sWwo2oxX +12/07/2017,Politicians,@GovChristie,My statement in honor of Pearl Harbor Remembrance Day: https://t.co/79H3Un2X6q +12/06/2017,Politicians,@GovChristie,#IllBeThereWillYou #Vigil2017 #BeAFace https://t.co/5NRx70YbmQ +12/06/2017,Politicians,@GovChristie,"Tonight’s Candlelight Vigil is to recognize those decimated by this epidemic. #IllBeThereWillYou +https://t.co/851hT8AhXZ" +12/06/2017,Politicians,@GovChristie,"We’ve made great strides, but the public employee pension & health care system needs additional reform. https://t.co/lOOSuU0Ocg" +12/06/2017,Politicians,@GovChristie,Watch my press conference in Trenton LIVE: https://t.co/LgGNbWSUnZ +12/02/2017,Politicians,@GovChristie,"I would like to welcome home the members of @NJSP, local police officers, first responders and civilian officials w… https://t.co/gJ2qvG1Fls" +12/01/2017,Politicians,@GovChristie,Today we show our support for the individuals living with HIV and we remember the many lives lost to AIDS.… https://t.co/kOsXtyb1I0 +11/30/2017,Politicians,@GovChristie,https://t.co/st4qJi7lwo #IllBeThereWillYou #Vigil2017 https://t.co/IB9iKWV1xM +11/30/2017,Politicians,@GovChristie,"RT @reachnj: If you or someone you love is struggling with addiction, choose help. Call 844-REACH-NJ or visit https://t.co/Pwfk6gqefs https…" +11/30/2017,Politicians,@GovChristie,Register to reserve your spot: https://t.co/st4qJi7lwo #IllBeThereWillYou #Vigil2017 https://t.co/V5YUfFe72V +11/30/2017,Politicians,@GovChristie,"We’ve taken steps to combat addiction but We Need Marches. Please join us at 5 pm on December 6, 2017 for the 2nd A… https://t.co/tV088MdNKE" +11/30/2017,Politicians,@GovChristie,All across NJ people have joined with us to make the discussion on addiction louder and stronger and together we ha… https://t.co/HLSaLLFf51 +11/30/2017,Politicians,@GovChristie,From the beginning my Administration began a conversation about the disease of drug addiction and how no life is di… https://t.co/l0sZ5lAc47 +11/29/2017,Politicians,@GovChristie,The @CMSGov waiver’s would not have been made possible without Administrator @SeemaCMS. https://t.co/sfbqZHjhwB +11/29/2017,Politicians,@GovChristie,.@POTUS has done more to combat the addiction crisis than any other President. https://t.co/EfjJVrE29G +11/29/2017,Politicians,@GovChristie,Today I will be joined by @CMSGov Administrator @SeemaCMS for a discussion with clients from @IntegrityNJ and to ma… https://t.co/4ZroKkojYj +11/28/2017,Politicians,@GovChristie,Watch my remarks at the House Committee on Oversight and Government Reform’s Hearing on Combating the Opioid Crisis… https://t.co/mYUN2ybfMF +11/25/2017,Politicians,@GovChristie,Remember to support your local NJ businesses today for #SmallBizSat. #ShopSmall https://t.co/6xEZDay93K +11/23/2017,Politicians,@GovChristie,Wishing everyone a very #HappyThanksgiving! +11/23/2017,Politicians,@GovChristie,To my friend @NDMikeBrey--the loosest coach in America and...Maui Tourney champion! #6winstogo https://t.co/TQ3ZFQz4G3 +11/23/2017,Politicians,@GovChristie,"What a gutty, extraordinary comeback win for @NDmbb! Maui Classic Champs. Great job by @NDMikeBrey. Go Irish! https://t.co/a2mlJGsrMn" +11/21/2017,Politicians,@GovChristie,Tune in tonight at 7:00 pm for #AskGov on @nj1015 https://t.co/kdnMrJUi8e https://t.co/kxtG5bWskD +11/20/2017,Politicians,@GovChristie,The dedication of Governor Chris Christie Drive is truly an honor for me and my family. https://t.co/LjKYaqemhD +11/20/2017,Politicians,@GovChristie,Congratulations to NJ native @MartinTruex_Jr on winning the Monster Energy @NASCAR Cup Series Championship! #jerseypride +11/16/2017,Politicians,@GovChristie,"To mark World Pancreatic Cancer Awareness Day, Drumthwacket is shining purple this evening to spread awareness of t… https://t.co/l7yhD3LLvn" +11/16/2017,Politicians,@GovChristie,New Jersey’s economy is in better shape today than it was eight years ago. #BetterThanWeFoundIt https://t.co/yOjWPuDxC7 +11/16/2017,Politicians,@GovChristie,#ICYMI My Administration Made New Jersey Better - and It Wasn’t Easy. https://t.co/hPgoSVgBWS +11/14/2017,Politicians,@GovChristie,Flags on all State buildings are at half-staff today in recognition and mourning of the victims of the mass shootin… https://t.co/WB4IXT4msy +11/11/2017,Politicians,@GovChristie,Drumthwacket is illuminated green this #VeteransDay to honor the service and sacrifice of our nation’s 18.5 million… https://t.co/kUEBOVYudk +11/11/2017,Politicians,@GovChristie,My statement marking #VeteransDay: https://t.co/ClzYNDyNuC +11/11/2017,Politicians,@GovChristie,At the 92nd St Y with Ron Chernow and General David Patraeus prior to their talk on President Ulysses S. Grant https://t.co/Dfjbn3pjfI +11/10/2017,Politicians,@GovChristie,Happy 242 Birthday @USMC! #HappyBirthdayMarines https://t.co/EfmKFmsGhl +11/09/2017,Politicians,@GovChristie,"I met today with Governor-elect Murphy to ensure the transfer of responsibilities will be organized, cooperative, a… https://t.co/qIyZ2y7sQS" +11/06/2017,Politicians,@GovChristie,"@PollsterPatrick @Morning_Joe @MonmouthPoll No--your tweet said ""NJ's Superstorm Sandy victims"" as if your numbers… https://t.co/r9O7ln2zM1" +11/06/2017,Politicians,@GovChristie,"Today, I have ordered all State buildings to fly flags at half-staff in recognition and mourning of the victims of… https://t.co/J0gieGIiaS" +11/02/2017,Politicians,@GovChristie,New Jersey’s economy is on the right path. #BetterThanWeFoundIt https://t.co/sL3y7KKp9C +11/02/2017,Politicians,@GovChristie,Watch my remarks from FinPro Inc's Annual President and Directors Conference LIVE from Bedminster: https://t.co/LgGNbXavfx +11/01/2017,Politicians,@GovChristie,Another step in fighting the opioid epidemic: @CMSgov has approved demonstrations in both NJ and UT on a new Medica… https://t.co/EQaC8yDOa0 +11/01/2017,Politicians,@GovChristie,NJEA doesn't deny their huge compensation--just some of it paid now & some later. Millions more to come next year. https://t.co/oejBFv31CW +11/01/2017,Politicians,@GovChristie,We are praying for all victims & their families from tonight's terrorist attacks. NJ law enforcement partners with NY & Feds to keep us safe +10/31/2017,Politicians,@GovChristie,Is the @NJEA lying to the IRS or to their members? https://t.co/9R39nl3Yyh +10/31/2017,Politicians,@GovChristie,Congratulations to the new @NJSP Superintendent Colonel Patrick Callahan. https://t.co/6eAIAUdnMY +10/30/2017,Politicians,@GovChristie,@icmyserenity @AGCurtisHill Thank you Brandon. We are all in this fight together. Thank you for your dedication and advocacy. +10/30/2017,Politicians,@GovChristie,We are losing 142 people a day in America to opioids. Very proud to join @AGCurtisHill and Congresswoman… https://t.co/hjEyE7lAbS +10/30/2017,Politicians,@GovChristie,Thank you @AGCurtisHill it was truly my honor to be a part of your #RxSymposium2017. This is a conversation we mus… https://t.co/Eu8XSyvK5Y +10/30/2017,Politicians,@GovChristie,Today I will be delivering the Keynote Address at Indiana Attorney General @AGCurtisHill ‘s 8th Annual Prescription… https://t.co/OKjw2CHYvV +10/30/2017,Politicians,@GovChristie,@PollsterPatrick @Morning_Joe @MonmouthPoll Why care about a poll that deceives recipients by not telling them that… https://t.co/ZTvocUuWFA +10/30/2017,Politicians,@GovChristie,@PollsterPatrick Except your release says that these statistics cannot be applied to the larger group of all NJ San… https://t.co/P85Fj7t4p2 +10/30/2017,Politicians,@GovChristie,"@MonmouthPoll In last paragraph of his biased release ""the survey results cannot be statistically projected to the… https://t.co/Azv9mQXLRv" +10/29/2017,Politicians,@GovChristie,#Thankyou to all the volunteers who are still working hard to help rebuild New Jersey stronger. #STTS: https://t.co/1GQ7UvK9Js +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/FcyBqC3Ug4 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/jAkReuuYp9 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/fjXDcarNQ8 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/rJVB0Rd899 +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/riwC3MhONi" +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/nziMttcpoF" +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/kB44CIgXV8" +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/2MK5fDhafi +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/vtzGREWYg1 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/IOGtPUQQz2 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/zZawkNRG7C +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/MIHLdPKwSD +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/aKvLcQaMyP +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/t9WZfjQaBd +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/lslNT1CQWG +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/LqSobfwADH +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/kx5aLE7MS7 +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/jyCCgPNxCP +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/idmrkRU1JC +10/29/2017,Politicians,@GovChristie,Hope comes from the greater family of America and around the world. #STTS https://t.co/WBEmSvpneX +10/29/2017,Politicians,@GovChristie,I would like to thank everyone at St. Andrews United Methodist Church in Toms River for hosting “A Day of Prayer Th… https://t.co/BvxhMP8fqg +10/29/2017,Politicians,@GovChristie,Watch my remarks at the “Day of Prayer” service commemorating the 5th Anniversary of Super Storm Sandy. https://t.co/LgGNbWSUnZ +10/29/2017,Politicians,@GovChristie,Reflections on Sandy: New Jersey 2012: https://t.co/Lx1ZXuDF39 +10/28/2017,Politicians,@GovChristie,RT @reachnj: Opioid painkillers can be highly addictive and the dependency doesn’t end when the prescription runs out. WATCH how it starts:… +10/28/2017,Politicians,@GovChristie,Today is National Prescription Take Back Day. To find out where in NJ to take your unused and expired prescriptions… https://t.co/Q3GVHD51Ii +10/28/2017,Politicians,@GovChristie,If you’re near Seaside today join in and be a part of history. Help break the Guinness Book World Record for “Most… https://t.co/YlTqaBFwFF +10/27/2017,Politicians,@GovChristie,"New Jersey’s fighting, edgy, spirit makes us America’s most interesting people. #STTS https://t.co/6bPGTxGp3f" +10/27/2017,Politicians,@GovChristie,Our model resiliency program has put New Jerseyans in a much better position since Sandy. #STTS https://t.co/XScvlb5EEf +10/27/2017,Politicians,@GovChristie,Five years ago St. Peters’s University Hospital suffered direct physical damage from Sandy but today with this new… https://t.co/l2V2Qgrq9e +10/27/2017,Politicians,@GovChristie,Watch my remarks on EDA’s Energy Resilience Bank LIVE from New Brunswick: https://t.co/LgGNbWSUnZ +10/27/2017,Politicians,@GovChristie,Great time with @JaniceDean doing the weather this morning on @foxandfriends. Bundle up Bismarck! https://t.co/auJNTiJeFV +10/26/2017,Politicians,@GovChristie,RT @TODAYshow: Tomorrow on TODAY: @MLauer talks to @GovChristie about how NJ has recovered 5 years after Superstorm Sandy and more. https:/… +10/26/2017,Politicians,@GovChristie,@NJSP Great job Trooper Palaia! NJSP always ready to serve. #JerseyPride #Attaboy +10/26/2017,Politicians,@GovChristie,Saturday is National Prescription Drug Take-Back Day. Turn in your unused and expired medication safely at one of t… https://t.co/G6jUZcPuDP +10/26/2017,Politicians,@GovChristie,A proud & important day for so many families in America as @POTUS signs national emergency to deal w/opioid epidemi… https://t.co/nPsRhcMAM2 +10/26/2017,Politicians,@GovChristie,My statement on @POTUS Donald J. Trump’s Action on the opioid crisis: https://t.co/nmNHGCIwIR +10/26/2017,Politicians,@GovChristie,The Commission asked POTUS to declare Nat'l emergency under Public Health Safety Act or Stafford Act. Today he's doing what we asked of him. +10/26/2017,Politicians,@GovChristie,"RT @reachnj: In the US, someone dies every 19 minutes from a drug overdose. Risk reduction starts with knowing the facts: https://t.co/G1KO…" +10/25/2017,Politicians,@GovChristie,"Earlier today, First Lady Mary Pat Christie went to Camp Evans Volunteer Center to meet with Sandy volunteers and t… https://t.co/uNQqihE1Ep" +10/24/2017,Politicians,@GovChristie,Extremely proud of our @NJSP and First Responders who have served and are currently serving out-of-state in areas d… https://t.co/Dn54F8OaiK +10/24/2017,Politicians,@GovChristie,This State will forever remember the service our First Responders provided during Sandy. #STTS https://t.co/8DkT45SqzK +10/24/2017,Politicians,@GovChristie,"Proud to stand with our NJ First Responders and personally thank them for their service, sacrifice and heroism. NJ… https://t.co/bGlh2KG9SN" +10/24/2017,Politicians,@GovChristie,"Whatever the next storm brings us, New Jersey will be prepared. https://t.co/zkEGgmXyDj" +06/27/2018,Politicians,@CarlyFiorina,"I had a great meeting today with @UofLPresNeeli, the new President of the University of Louisville. Wishing her the… https://t.co/pvMeLRQZro" +06/27/2018,Politicians,@CarlyFiorina,"RT @NickyGoren: ""Intentionally and explicitly strengthening #nonprofit #leadership and staff is the work that needs to be done for programs…" +06/22/2018,Politicians,@CarlyFiorina,RT @usatodayopinion: From @CarlyFiorina: #Immigrant children separated from their families need leaders in Washington who are willing to go… +06/22/2018,Politicians,@CarlyFiorina,"For so many Americans, the immigration crisis has left us us wondering, “How did we get here?” + +Read my op-ed in… https://t.co/1xqjmBjX3v" +06/21/2018,Politicians,@CarlyFiorina,I’m honored to work with Jon and his team at @ESealsDCMDVA. They’ve taken the tools and characteristics they’ve lea… https://t.co/6dk9Auz4J1 +06/15/2018,Politicians,@CarlyFiorina,Ruff day at the https://t.co/zSAirYAWS8 office! https://t.co/U0EQC3TsaO +06/06/2018,Politicians,@CarlyFiorina,"Glad to be with @WWP in Jacksonville this week. It is an honor to work with their team to lift leaders up, and to e… https://t.co/n6VrkkXKKh" +05/18/2018,Politicians,@CarlyFiorina,"RT @THRUUE: ""Leadership at any level takes courage because to do anything is to be criticized"" + +Season 2 of Culture Gap is live! Listen no…" +05/09/2018,Politicians,@CarlyFiorina,.@caseyenders is a leader. She demonstrates true humility. It is not false modesty or being overly tentative. It’s… https://t.co/xTyHX36lZm +05/08/2018,Politicians,@CarlyFiorina,The political world has again learned of another case of a someone abusing his power to silence victims of sexual a… https://t.co/yCIflLvMsb +05/02/2018,Politicians,@CarlyFiorina,"RT @caseyenders: Loved hearing from all the fantastic students at last night's Do Good Challenge Finals! Inspiring to see so many smart, pa…" +05/01/2018,Politicians,@CarlyFiorina,".@CCharitiesUSA serves as a tremendous example of citizens leading in their communities, and doing God's work as th… https://t.co/KKNePTwwzQ" +05/01/2018,Politicians,@CarlyFiorina,"Hello from Tampa, where I have spent the last couple of days with leaders in @CCharitiesUSA's O'Grady Leadership In… https://t.co/SROsQ85oVh" +05/01/2018,Politicians,@CarlyFiorina,RT @JSirangelo: “Perspective requires recognizing your own limitations as well as those of the people you work with–and treating both with… +04/12/2018,Politicians,@CarlyFiorina,@emilylazor .@EmilyLazor - Thanks for the question. I chatted with @jmeacham and @Nick_Zeppos about this earlier th… https://t.co/R7goSdCBm6 +04/05/2018,Politicians,@CarlyFiorina,RT @LehighAlumni: Former Hewlett-Packard CEO and 2016 Republican presidential candidate Carly Fiorina delivered the inaugural Peter S. Hage… +04/01/2018,Politicians,@CarlyFiorina,Jesus Christ is risen! Hallelujah! Frank and I wish you and your family the best on this Easter Sunday. +03/07/2018,Politicians,@CarlyFiorina,"RT @USCCFBiz4Good: “A leader sees possibility in the people all around them regardless of their circumstances.” @CarlyFiorina, @UPLeadershi…" +03/07/2018,Politicians,@CarlyFiorina,"It was great to catch up with you, Blair! #USCCFwomen https://t.co/HdZFmB48nC" +02/28/2018,Politicians,@CarlyFiorina,Glad to meet new friends and catch up with old ones like @Howard_Byck at @socialcapital today! https://t.co/TOf0F8ofau +02/23/2018,Politicians,@CarlyFiorina,"RT @VandyHustler: Read The Hustler's full interview with Carly Fiorina, former CEO of Hewlett Packard + +https://t.co/DsVqqZ7tOI" +01/19/2018,Politicians,@CarlyFiorina,"Thinking of and praying for all of those participating in the @March_for_Life today! + +Every person – every life – h… https://t.co/vDJPkWQe0c" +01/03/2018,Politicians,@CarlyFiorina,"@RebeccaSchiebs Thanks, Rebecca! This is one of my favorite moments: +https://t.co/4w66NPE8nE" +01/03/2018,Politicians,@CarlyFiorina,"“In today’s world, we face problems that are desperate, festering, and intractable. If we are going to have any sho… https://t.co/svU9slVMIg" +12/21/2017,Politicians,@CarlyFiorina,"Thank you, Jon! Great to read your reflections on working with @UPLeadership. https://t.co/taW15aHIDW" +12/21/2017,Politicians,@CarlyFiorina,Frank and I wish you all the blessings of this holiday season! https://t.co/KdJ0VeThgt +12/17/2017,Politicians,@CarlyFiorina,"I’m joining @KasieDC this evening to discuss @UPLeadership. Follow and click here for more: +https://t.co/7f8a8MboLG" +12/06/2017,Politicians,@CarlyFiorina,Our founders had it right when they said that patents and intellectual property needed to be protected as a fundame… https://t.co/untvIa7IOK +11/29/2017,Politicians,@CarlyFiorina,"Thank you @kellanhowell for the thoughtful conversation. Keep up the good work at @circa. + +https://t.co/MD84xsbB8W" +11/28/2017,Politicians,@CarlyFiorina,RT @cnsnews: Carly Fiorina: Congress Must Change How It Handles Sexual Harassment Claims https://t.co/9Is2LkNy2c +11/20/2017,Politicians,@CarlyFiorina,Are you going to keep quiet when you should speak up? https://t.co/Kbgr3AXij9 +11/19/2017,Politicians,@CarlyFiorina,"We women will keep fighting, contributing, speaking up and speaking out. The question is will you boys finally man… https://t.co/OaWYwIfHWx" +11/19/2017,Politicians,@CarlyFiorina,"It is men’s turn to tell their fellow men that respect from others requires respect for others. +https://t.co/Kbgr3AXij9" +11/19/2017,Politicians,@CarlyFiorina,I'll be on @ThisWeekABC to discuss sexual harassment in our society. Read my latest thoughts on the subject here: https://t.co/Kbgr3AXij9 +11/06/2017,Politicians,@CarlyFiorina,. @EdWGillespie sees the possibilities in all Virginians. #VAGov https://t.co/eiihsRuCEe +11/06/2017,Politicians,@CarlyFiorina,Tomorrow is election day in Virginia - make your plan and get to the polls and vote for @EdWGillespie @JillHVogel and @JohnAdamsforVA +11/04/2017,Politicians,@CarlyFiorina,Loved being with the VA GOP Team in Springfield - keep up the great work @JohnAdamsforVA https://t.co/ZphsvbcoEs +11/04/2017,Politicians,@CarlyFiorina,"Great morning in Springfield with a strong leader and my friend, the next Governor of Virginia, @EdWGillespie!… https://t.co/D79MOO7zlI" +11/02/2017,Politicians,@CarlyFiorina,Thanks for having me! https://t.co/Wa71YAVXwi +10/25/2017,Politicians,@CarlyFiorina,Joining @hughhewitt this morning at 8:05AM ET. You can listen live here: https://t.co/a0R6KCFzvw +10/24/2017,Politicians,@CarlyFiorina,Looking forward to joining @TheBuschSchool for this evening’s CEO Lecture @CatholicUniv. Watch live here: https://t.co/lktYoLEk6W +10/07/2017,Politicians,@CarlyFiorina,Proud to support @BarbaraComstock for #VA10 tonight! https://t.co/YjgE7uVg4p +09/29/2017,Politicians,@CarlyFiorina,Thanks for having me! #YAFonCampus https://t.co/P9G8WwDGDC +09/27/2017,Politicians,@CarlyFiorina,Excited to speak with @LogCabinGOP tonight as they celebrate their 40th anniversary. +09/20/2017,Politicians,@CarlyFiorina,Looking forward to speaking about leadership at tonight’s @awbolympia event! #AWBsummit17 https://t.co/mFkuaJGkEV +09/14/2017,Politicians,@CarlyFiorina,Enjoyed the opportunity to sit down with @mariabartiromo on @FoxBusiness this morning. https://t.co/2CgCeLsGVp +09/13/2017,Politicians,@CarlyFiorina,Looking forward to joining @mariabartiromo tomorrow on @MorningsMaria at 8am. Hope that you can tune in! +09/08/2017,Politicians,@CarlyFiorina,It was great to join @tracybyrnes with the @TheStreet for a discussion on leadership: https://t.co/A59mP34d9e +07/31/2017,Politicians,@CarlyFiorina,https://t.co/iWFACDwAHg +07/20/2017,Politicians,@CarlyFiorina,God speed my friend. We need you back in Washington. +07/20/2017,Politicians,@CarlyFiorina,"While you may not agree with him every time, there is no doubt that John is a leader of unwavering courage, principle, and honor." +07/20/2017,Politicians,@CarlyFiorina,We all know John is a warrior and he will fight this with same valor that has defined every aspect of his life. +07/20/2017,Politicians,@CarlyFiorina,"My love and prayers go out to my good friends John and Cindy, as well as Meghan and the entire family." +07/18/2017,Politicians,@CarlyFiorina,I truly enjoyed our conversation @tracybyrnes and thank you for having me. Pease keep up your excellent work at… https://t.co/IcMUzc0ASu +06/29/2017,Politicians,@CarlyFiorina,#leadership https://t.co/GgaBJe7trD +06/25/2017,Politicians,@CarlyFiorina,Below are a few of my thoughts on this principled post by @SenMikeLee - https://t.co/wdeveKRdxh https://t.co/wnSrA9fqlo +06/23/2017,Politicians,@CarlyFiorina,#leadership https://t.co/lZV4iIZIM9 +06/22/2017,Politicians,@CarlyFiorina,Looking forward to speaking with @MariaBartiromo at 8:30am this morning live on @FoxBusiness +06/17/2017,Politicians,@CarlyFiorina,". @kylemaynard is realizing his potential. + +Watch Kyle in action here: https://t.co/nYkmTgxmD8 + +(3/3)" +06/17/2017,Politicians,@CarlyFiorina,Last week I had the pleasure to meet @kylemaynard - a true leader. (2/3) +06/17/2017,Politicians,@CarlyFiorina,"Everyone is gifted by God. Everyone, regardless of their circumstances, has far more potential than they realize. (1/3)" +06/13/2017,Politicians,@CarlyFiorina,I was proud to vote for @EdWGillespie today. #TeamGillespie +06/13/2017,Politicians,@CarlyFiorina,"With my favorite polling people. Go Vote! +#VirginiaPrimary https://t.co/LNCVR1bGEt" +05/25/2017,Politicians,@CarlyFiorina,https://t.co/YyZvgYINQ9 +05/23/2017,Politicians,@CarlyFiorina,Challenging the status quo is the purpose of leadership. Criticism is the price. And solving problems is the pay-off #CECPSummit +05/23/2017,Politicians,@CarlyFiorina,We have an abundance of problems and a scarcity of leadership #CECPSummit +05/23/2017,Politicians,@CarlyFiorina,"Leadership is not about title, position or power #CECPSummit" +05/23/2017,Politicians,@CarlyFiorina,Looking forward to joining the @CECPtweets Summit soon! +05/11/2017,Politicians,@CarlyFiorina,It was great to join @TheStreet for a discussion on leadership and heath care reform. https://t.co/hP3dUsFC0F +05/10/2017,Politicians,@CarlyFiorina,"I am excited and honored to be joining the @colonialwmsburg Foundation Board of Trustees! + +https://t.co/WVZQls2Tlr" +05/10/2017,Politicians,@CarlyFiorina,@lynlam Thank you! +05/10/2017,Politicians,@CarlyFiorina,Enjoyed the opportunity to sit down w/ @tvkatesnow to discuss health care and President Trump’s first 100 days https://t.co/UAjSud7XhS +04/22/2017,Politicians,@CarlyFiorina,If you haven’t had the chance take a listen to this weeks @TakeoutPodcast! https://t.co/ttM5CJapIt +04/22/2017,Politicians,@CarlyFiorina,I enjoyed joining @MajorCBS on @TakeoutPodcast! Take a listen if you are interested. https://t.co/blNos83idI +04/15/2017,Politicians,@CarlyFiorina,https://t.co/xE49wsssJ7 +03/20/2017,Politicians,@CarlyFiorina,"I am excited that Jim Donovan is nominated as Treasury Dept. Secretary. He is well-qualified, has business experien… https://t.co/OsMHFb6Grv" +03/19/2017,Politicians,@CarlyFiorina,RT @corinnec: I have always loved this bit from @CarlyFiorina. Felt like going back and reading it again today. https://t.co/tiC95LgcNU +03/19/2017,Politicians,@CarlyFiorina,My deepest sorrows have been eased by Amazing Grace. I reflected on how many times both have lifted me up. I am filled with gratitude. 2/2 +03/19/2017,Politicians,@CarlyFiorina,Today we sang Amazing Grace and The Lord's Prayer. Some of my earliest memories are of whispering the Lord's Prayer in the dark. (1/2) +03/16/2017,Politicians,@CarlyFiorina,Looking forward to speaking at the @NR_Institute Ideas Summit! https://t.co/ZPfCtm2wrq #NRISummit17 +03/05/2017,Politicians,@CarlyFiorina,Thanks for having me! Great event. https://t.co/lalehs8KpO +03/05/2017,Politicians,@CarlyFiorina,".@RevDonDavidson at @FBCAlexandria reminds us that we are saved by grace alone. Thank you, dear Lord, for the gift of your amazing grace." +03/04/2017,Politicians,@CarlyFiorina,Frank and I are driving over to Prince William County for tonight’s GOP Lincoln-Reagan dinner. If you are in area I hope to see you there! +03/03/2017,Politicians,@CarlyFiorina,Looking forward to attending the #NRISummit17- hope to see you there! https://t.co/wAsFvHwA6D +03/02/2017,Politicians,@CarlyFiorina,Thrilled for @GovernorPerry confirmation as our next Energy Secretary. I know he is going to do a great job! https://t.co/6U9fWmmXbN +02/28/2017,Politicians,@CarlyFiorina,Looking forward to speaking at @RegentU Exec Leadership Series at 12:40 today. If you want you can watch live here—> https://t.co/B3n9Np0Ulw +02/28/2017,Politicians,@CarlyFiorina,"It was great to visit @colonialwmsburg yesterday, there are wonderful things going on! Thanks to Mitchell & Elisabe… https://t.co/79Hijfatyc" +02/28/2017,Politicians,@CarlyFiorina,@toddinva Thanks! +02/27/2017,Politicians,@CarlyFiorina,How will we know if we are on track to #MAGA? I believe there are 3 tests. https://t.co/mGswWjckwu +02/27/2017,Politicians,@CarlyFiorina,"Outstanding speech by @Schneider_DC at #CPAC2017 + +https://t.co/8cVP0CI3oP https://t.co/bsaF5r2to6" +02/27/2017,Politicians,@CarlyFiorina,@imanredzepi Thank you! +02/27/2017,Politicians,@CarlyFiorina,@apgarza1979 Thank you very much for those kinds words. +02/27/2017,Politicians,@CarlyFiorina,@jennaep7 Thank you! +02/27/2017,Politicians,@CarlyFiorina,"RT @OppLives: “there are many programs that work to treat the epidemic of addiction, but they don’t start in"" DC +—@CarlyFiorina https://t.c…" +02/27/2017,Politicians,@CarlyFiorina,Looking forward to tomorrow’s event at Regent University’s Executive Leadership Series! https://t.co/g7NCWmEe5M +02/27/2017,Politicians,@CarlyFiorina,"I enjoyed the wonderful conversation with @arthurbrooks +at #CPAC. + +https://t.co/eoViLOHks3" +02/27/2017,Politicians,@CarlyFiorina,It was good to join #CPAC2017 the other day. Check out this nice summary of my conversation with @arthurbrooks. https://t.co/GzlJb8VNJC +02/27/2017,Politicians,@CarlyFiorina,@andreacitymom Thanks Andrea! +02/20/2017,Politicians,@CarlyFiorina,@JustinYonker Thank you! I am glad you are enjoying it. +02/20/2017,Politicians,@CarlyFiorina,RT @LouDobbs: Tonight's #QuoteoftheDay by @CarlyFiorina! #Dobbs https://t.co/UyQ1vzpqjB +02/14/2017,Politicians,@CarlyFiorina,"There is nothing better than a great mystery from history! + +https://t.co/WOiHjfYdnS #History" +02/12/2017,Politicians,@CarlyFiorina,"2/2 ....Because he is a traitor."" Watch the rest of my interview w/ @MariaBartiromo here: https://t.co/7FoULIy7C3" +02/12/2017,Politicians,@CarlyFiorina,"1/2 ""...if Snowden is turned over to the United States, and certainly Russia should turn him over, that he is tried for treason…" +02/10/2017,Politicians,@CarlyFiorina,Thank you! https://t.co/bZd9wbCIgt +02/10/2017,Politicians,@CarlyFiorina,Nice to meet you Jacey! https://t.co/otY3Oink2x +02/10/2017,Politicians,@CarlyFiorina,@MauriceManny Thank you! +02/10/2017,Politicians,@CarlyFiorina,Thank you Congressman. Nice to see you! https://t.co/yLr6pOi2OT +02/10/2017,Politicians,@CarlyFiorina,It was a pleasure joining you https://t.co/aobNJzmRgw +02/10/2017,Politicians,@CarlyFiorina,@jrclaeys I am glad you were able to make it. Hope that you enjoyed the event. +02/10/2017,Politicians,@CarlyFiorina,"#Leaders are made not born. Will you choose to be a leader? + +https://t.co/szdLFLcrLN https://t.co/CcctfsqNQ1" +02/10/2017,Politicians,@CarlyFiorina,@MrBuffs123 Great to see you and thanks for your support! +02/01/2017,Politicians,@CarlyFiorina,The @POTUS has made an excellent choice in naming Judge Gorsuch as the next SCOTUS. He has my full support. +01/22/2017,Politicians,@CarlyFiorina,@JustuW8 Thank you! +01/22/2017,Politicians,@CarlyFiorina,About to join @SundayFutures to discuss economy and @TrumpInagural with @MariaBartiromo tune into Fox Business now! +01/21/2017,Politicians,@CarlyFiorina,Looking forward to joining @MariaBartiromo tomorrow for @SundayFutures. Hope you can tune in! https://t.co/49Wxgvivyl +01/20/2017,Politicians,@CarlyFiorina,We also thank President Obama and VIce-President Biden for their service. #InaugurationDay (2/2) +01/20/2017,Politicians,@CarlyFiorina,Today we celebrate the peaceful transfer of power in our country. Congratulations @realDonaldTrump & @mike_pence (1/2) +01/20/2017,Politicians,@CarlyFiorina,"RT @POLITICOLive: ""The complexity of the tax code favors the big companies over the small companies"" @CarlyFiorina #POLITICOHub #PlaybookLi…" +01/20/2017,Politicians,@CarlyFiorina,Thank you @JakeSherman & @apalmerdc for the wonderful @politico conversation this morning. https://t.co/KYOAfbjHP1 +01/20/2017,Politicians,@CarlyFiorina,@molliekate97 sorry that we missed you at the event! +01/19/2017,Politicians,@CarlyFiorina,RT @Chell_is_Skyy: Do not let people define you. You define yourself by the choices you make----- @CarlyFiorina #CarpeFuturum +01/19/2017,Politicians,@CarlyFiorina,#servantleadership https://t.co/KMZQ2Nzl8W +01/19/2017,Politicians,@CarlyFiorina,@ams2901 I am glad that you enjoyed it! +01/19/2017,Politicians,@CarlyFiorina,@natashawolfff Thanks! Glad that you enjoyed it. +01/19/2017,Politicians,@CarlyFiorina,"RT @eriinmelan: Probably the best saying to define your life ""Know your worth and your value"" - @CarlyFiorina #envision" +01/19/2017,Politicians,@CarlyFiorina,@shestylestou if we can agree on #servantleadership then that is good enough by me. Have a nice night! +01/19/2017,Politicians,@CarlyFiorina,@alexiageorgette glad to hear that! Stay motivated! +01/19/2017,Politicians,@CarlyFiorina,Thank you @theblakebarclay. It was nice to meet you! +01/19/2017,Politicians,@CarlyFiorina,"My friend & very successful former Texas Governor, @GovernorPerry will make an outstanding Sec of Energy. Read —> +https://t.co/nR71Kqwmdq" +01/17/2017,Politicians,@CarlyFiorina,.@BetsyDeVos is an advocate for America’s school children & will take on teacher’s unions. An inspired choice! https://t.co/ym3JwhiY5b +01/14/2017,Politicians,@CarlyFiorina,.@betsydevos will be a transformative Sec of Ed- helping all students- read why I support her: https://t.co/9NJZ77c5bP +01/12/2017,Politicians,@CarlyFiorina,Hope you were able to catch The Messy Truth with @VanJones68 last night on @CNN. Enjoyed the conversation! https://t.co/20zbDw3CQX +01/11/2017,Politicians,@CarlyFiorina,".@realDonaldTrump made a good choice in @ElaineChao, she'll be an excellent Sec. of Trans. I know she’ll impress the American people!" +01/11/2017,Politicians,@CarlyFiorina,Looking forward to the live town hall w/ @VanJones68 tomorrow night at 9pm EST on @CNN. Hope you can watch! +01/10/2017,Politicians,@CarlyFiorina,"During today’s hearing @SenatorSessions demonstrated why he’s the principled, tireless leader we need as our next Attorney General." +12/17/2016,Politicians,@CarlyFiorina,".@GovernorPerry is a great pick to lead America's energy future. He's a tough, smart, dedicated leader. +https://t.co/bChbeym8Gq" +12/16/2016,Politicians,@CarlyFiorina,I offer my wholehearted support to my friend @AndyPuzder as our nation’s next Secretary of Labor. Learn why: https://t.co/droMtUsRHf +12/15/2016,Politicians,@CarlyFiorina,"Proud to support my friend @Linda_McMahon to lead @SBAgov. Read why +https://t.co/rITbEsX3vt" +12/10/2016,Politicians,@CarlyFiorina,"Today, I offer my enthusiastic endorsement of @SenatorSessions to be our next Attorney General. Read why —> +https://t.co/OMjsQ5RUTO" +12/09/2016,Politicians,@CarlyFiorina,Looking forward to attending the @VA_GOP Advance this weekend. Will be great to see friends new and old there. Hope… https://t.co/wnaLbO5w8V +12/09/2016,Politicians,@CarlyFiorina,The inauguration of the 45th President - @realDonaldTrump - is fast approaching. For info & updates make sure you follow @TrumpInaugural +12/07/2016,Politicians,@CarlyFiorina,Enjoyed speaking at Heritage Foundation about the challenges we face domestic and abroad and the great opportunity… https://t.co/yLdY7D5lNn +12/07/2016,Politicians,@CarlyFiorina,"Enjoyed speaking with No VA Chamber the other day. + +“Other people’s comments do not define you.” + +https://t.co/I6lOefPtk5" +12/05/2016,Politicians,@CarlyFiorina,@kathrynfalk @NOVAChamber @CoxVA Thanks for coming! +12/05/2016,Politicians,@CarlyFiorina,.@NOVAChamber Thanks for having me today! https://t.co/TrCbl6FsdL +12/05/2016,Politicians,@CarlyFiorina,"RT @HeliosHR: When looking for people to hire, @CarlyFiorina looks for courage, character, collaboration, and people who see possibilities…" +12/05/2016,Politicians,@CarlyFiorina,"RT @jackmoore_ei: @CarlyFiorina - In a rapidly-changing world, the status quo isn't always the least risky option. Sometimes it's innovatio…" +12/02/2016,Politicians,@CarlyFiorina,Thank you for a wonderful event @TheHRH https://t.co/iAAMbKz2Kd +12/02/2016,Politicians,@CarlyFiorina,Thanks @CABachelder! Thank you to @IWF for a wonderful event. https://t.co/kYH5CkZ6H1 +11/24/2016,Politicians,@CarlyFiorina,As our family gathers today to be thankful for how blessed we are we hope that you and yours have a wonderful day. 3/3 +11/24/2016,Politicians,@CarlyFiorina,"Let us be grateful to live in a nation of citizen government, where we can constrain power, so that it not be abused. 2/3" +11/24/2016,Politicians,@CarlyFiorina,"Frank & I are thankful to live in a nation where each of us, regardless of who we are or what our circumstances, have inalienable rights 1/3" +11/21/2016,Politicians,@CarlyFiorina,Stand with me in supporting my friend @EdWGillespie for Governor. #EdForVirginia https://t.co/RBIJBoPuHt +11/11/2016,Politicians,@CarlyFiorina,"Proud to be American on a day we honor the service & sacrifice of those who keep this the land of the free, home of the brave. #VeteransDay" +11/09/2016,Politicians,@CarlyFiorina,Congrats @realDonaldTrump and @mike_pence. The American people have spoken. Time for real change that unites us and carries us forward. +11/04/2016,Politicians,@CarlyFiorina,Why I’m endorsing Tom Garrett for Congress here in Virginia: https://t.co/IPM9Q7hxQT +11/03/2016,Politicians,@CarlyFiorina,Why I’m endorsing @rogermarshallMD for Congress in Kansas’s 1st District: https://t.co/Mw1p8iH2E3 +11/02/2016,Politicians,@CarlyFiorina,Why I’m standing with Richard Shelby for Senate: https://t.co/zeKVZJKN2j +11/02/2016,Politicians,@CarlyFiorina,Why Florida needs @marcorubio in Washington: https://t.co/X26OyV1FX8 +11/02/2016,Politicians,@CarlyFiorina,Proud to endorse Gen. @DonBacon2016 for Congress in NE: https://t.co/QPGdt8SLhm +10/31/2016,Politicians,@CarlyFiorina,Why @willhurd is the leader Texas’s 23rd District needs in Washington: https://t.co/cvJ4pe3XVc +10/31/2016,Politicians,@CarlyFiorina,I’m proud to endorse @RepMGriffith for Congress in my home state of Virginia: https://t.co/gmhkL19Ggx +10/27/2016,Politicians,@CarlyFiorina,"Why Indiana needs a conservative fighter like @ToddYoungIN in the U.S. Senate: +https://t.co/CzoSZlWFfv" +10/27/2016,Politicians,@CarlyFiorina,.@RoyBlunt is the conservative leader Missouri needs. Here’s why I’m endorsing him: https://t.co/jYGZjZrsm6 +10/26/2016,Politicians,@CarlyFiorina,I’m standing with @MiaBLove for Congress in Utah. And here’s why you should too: https://t.co/MBfPqbWOQu +10/26/2016,Politicians,@CarlyFiorina,Why I’m supporting @TeamCoffman2016 for Congress in Colorado: https://t.co/rkXq3OAiXS +10/25/2016,Politicians,@CarlyFiorina,I’m endorsing @KathyforMD for U.S. Senate in Maryland. Here’s why: https://t.co/B4nhOkY8x0 +10/24/2016,Politicians,@CarlyFiorina,I’m supporting @ScottTaylorVA for Congress in Virginia. Here’s why you should too: https://t.co/ij6dg9wmmy +10/21/2016,Politicians,@CarlyFiorina,Proud to endorse @JohnThune for U.S. Senate in South Dakota: https://t.co/73ZMS9zoKx +10/20/2016,Politicians,@CarlyFiorina,Wonderful time campaigning with @BrianFitzUSA for Congress in Pennsylvania yesterday. I'm proud to endorse him: https://t.co/VzgQPAMxJ5 +10/19/2016,Politicians,@CarlyFiorina,Had a great time campaigning in Roanoke for my friend and fellow Virginian @BobGoodlatte6 on Monday! https://t.co/5IztDjTD1N +10/18/2016,Politicians,@CarlyFiorina,I’m endorsing @MikeforWI. Here’s why: https://t.co/51KosnB4qd +10/17/2016,Politicians,@CarlyFiorina,Why @DannyTarkanian is the leader Nevada’s families and communities need in Congress: https://t.co/QolyP9B3wK +10/15/2016,Politicians,@CarlyFiorina,Why you should vote for Lloyd Smucker: https://t.co/R5sgKLoX4A +10/14/2016,Politicians,@CarlyFiorina,Proud to stand with @SenatorTimScott for South Carolina—and I hope you will too: https://t.co/v48FxVg8Tz +10/14/2016,Politicians,@CarlyFiorina,Why I’m endorsing @leezeldin for Congress in New York: https://t.co/eekr4nqlkg +10/14/2016,Politicians,@CarlyFiorina,I’m proud to endorse @SenatorIsakson in Georgia. Here’s why: https://t.co/FAfSErEViu +10/13/2016,Politicians,@CarlyFiorina,"The Left's policies hold us back, not help us grow. Why we must invest in the potential of the American people: https://t.co/pDg74Vv1H6" +10/12/2016,Politicians,@CarlyFiorina,2 ways the business world made me understand what it means to be a conservative: https://t.co/6sOCJKAfZ6 +10/12/2016,Politicians,@CarlyFiorina,Proud to endorse @repgoodlatte. Here’s why he’s the kind of leader Virginia needs in Washington: https://t.co/QJelCc923N +10/12/2016,Politicians,@CarlyFiorina,.@ClaudiaForNY22 is the conservative leader Upstate New York needs. Here’s why I’m standing with her: https://t.co/WhR6WePhpD +10/10/2016,Politicians,@CarlyFiorina,Why the Constitution needs to be protected now more than ever: https://t.co/Yb2FcIFGbM +10/10/2016,Politicians,@CarlyFiorina,.@RepHardy puts the people of Nevada before himself—and that’s why I’m proud to endorse him: https://t.co/9zAVJk8ATy +10/08/2016,Politicians,@CarlyFiorina,My thoughts: https://t.co/1ck3UddzdR +10/07/2016,Politicians,@CarlyFiorina,Proud to announce my endorsement of @YoungForIowa. Here’s why: https://t.co/m8gmjCvPX3 +10/06/2016,Politicians,@CarlyFiorina,Michigan needs Gen. Jack Bergman in Congress. Here’s why I’m endorsing him: https://t.co/1KQKMkEolD +10/06/2016,Politicians,@CarlyFiorina,Sen. @ChuckGrassley has never stopped fighting for Iowa. Here’s why I’m endorsing him: https://t.co/q8FZRpDffv +10/04/2016,Politicians,@CarlyFiorina,Arkansas needs to keep John Boozman fighting in the U.S. Senate. Here’s why I’m endorsing him: https://t.co/jgiYXFIXSA +10/02/2016,Politicians,@CarlyFiorina,Montana needs a strong conservative leader in Congress. Here’s why I’m supporting Ryan Zinke: https://t.co/t1pYA6Zu7j +10/01/2016,Politicians,@CarlyFiorina,Darryl Glenn is the conservative leader Colorado needs. Here’s why I’m proud to endorse him for U.S. Senate: https://t.co/ShG3l4RJ6X +09/30/2016,Politicians,@CarlyFiorina,I’m proud to endorse my friend @SenJohnMcCain for Senate: https://t.co/6oEwCykVPn +09/29/2016,Politicians,@CarlyFiorina,Michigan needs a leader like Tim Walberg in Congress. Here’s why: https://t.co/8QEbDDWBC9 +09/28/2016,Politicians,@CarlyFiorina,Why I’m proud to endorse @RandPaul for U.S. Senate in Kentucky: https://t.co/jz9es0kbKV +09/28/2016,Politicians,@CarlyFiorina,"Each time I met him, Shimon Peres was a gentleman & a patriot—a true leader for Israel & the world. He'll be missed: https://t.co/jCCu4nuRe9" +09/28/2016,Politicians,@CarlyFiorina,.@RepErikPaulsen is the leader Minnesota needs in Congress—and here’s why I’m proud to endorse him: https://t.co/mC2AvXosJC +09/27/2016,Politicians,@CarlyFiorina,Why I’m standing with @Heck4Nevada for #NVSen (and why you should too): https://t.co/HLkV3u2iy3 +09/27/2016,Politicians,@CarlyFiorina,John Faso is the fighter New York needs in Washington. Here’s why I’m so proud to endorse him: https://t.co/lhSUf1eOD9 +09/27/2016,Politicians,@CarlyFiorina,Don't forget: @GovernorPerry is raising money for veterans on @DancingABC tonight! Vote at 1-800-868-3410 or https://t.co/p7LLsEcaaW #DWTS +09/27/2016,Politicians,@CarlyFiorina,"What we can expect @HillaryClinton on #debatenight: lies, lies, lies, and more lies. https://t.co/X9DiAOGM1H" +09/23/2016,Politicians,@CarlyFiorina,I’m so pleased to endorse Heidi Ganahl for the CU Board of Regents. Here’s why she’s the leader Colorado needs: https://t.co/30LS2xrIhw +06/26/2018,Politicians,@RickSantorum,RT @USAEnergy: #RFSworks for energy security says AESI co-chairs @JimTalent @RickSantorum. Read more here:https://t.co/nMgEuhiMlm https://t… +06/20/2018,Politicians,@RickSantorum,Glad to see @POTUS and @VP are going to SC to campaign for a great conservative @henrymcmaster - the only candidate… https://t.co/ypIvbyHLJ6 +06/18/2018,Politicians,@RickSantorum,"Watch: CNN Panel Looks Off Camera, Starts Twitching When Asked to House Illegals https://t.co/yUXedD36oc" +06/17/2018,Politicians,@RickSantorum,Just saw this article. Thanks @maule_will and Faithwire for a wonderful Father’s Day gift. https://t.co/0Ro9idGDr8 +06/17/2018,Politicians,@RickSantorum,"An inspiring story of parents whose love for their daughter not only saved her life, but the lives of countless oth… https://t.co/c3ciRGkRVh" +06/12/2018,Politicians,@RickSantorum,Prayers going out to my friend Larry Kudlow. +06/06/2018,Politicians,@RickSantorum,".@POTUS Thank you for standing w struggling rural Americans, as you promised you would. https://t.co/NCak4pZdxX" +06/05/2018,Politicians,@RickSantorum,".@POTUS has done a great job w our economy. Only one area hurting - Farm Country. They believed in him, its time to… https://t.co/MnQwnN8Pvq" +05/29/2018,Politicians,@RickSantorum,Will be interested in seeing if all those who attacked me for what I said on @CNNSotu will now direct their venom t… https://t.co/YLufd5JzVu +05/26/2018,Politicians,@RickSantorum,https://t.co/KFcC8r4Rkl. It is time for congress and president to listen to the grassroots and fix the disaster that is the #ACA. +05/25/2018,Politicians,@RickSantorum,Obamacare is imploding and millions are feeling the pain. The #HealthCareChoicesAct will lower costs and increase a… https://t.co/Wj1gJtzoJn +05/25/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Irish Artists Are Horrified by U2 Urging Citizens to Vote for Abortion. @RickSantorum explains what he shared with his… +04/27/2018,Politicians,@RickSantorum,We must fix this broken healthcare system to lower costs and improve access to the doctors you want. It can be done. https://t.co/4RQtuI5gP3 +04/18/2018,Politicians,@RickSantorum,Every Republican in Congress promised they would deal with the problems of the ACA. It is not too late to act to lo… https://t.co/LwyXT0I9tK +04/16/2018,Politicians,@RickSantorum,RT @CNNSotu: On #CNNSOTU @RickSantorum says Trump Twitter habits are a 'frustration' https://t.co/pfEyGdh5PH +04/15/2018,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @SenAngusKing, @MichaelAvenatti, @PreetBharara, @JenGranholm, @RickSantorum, @…" +04/11/2018,Politicians,@RickSantorum,Proud to endorse @MangoForPA for #PAGov It is time Pennsylvania conservatives rally around Paul! A man I trust on… https://t.co/7CTqtq4tKP +04/06/2018,Politicians,@RickSantorum,"We were at dinner w Darrell and Sandy Scott, the founders of @RachelsChalleng. Kyle, I hope your app can match the… https://t.co/S6DDBmJM8n" +03/26/2018,Politicians,@RickSantorum,My point on #CNNSOTU is the same point I have made since the shooting - relying on more government to focus on guns… https://t.co/701Xsr0I8P +03/20/2018,Politicians,@RickSantorum,Life Support for ObamaCare. Great summary of the policy disaster being pushed by House GOP leadership. No life supp… https://t.co/gtkclLXGmb +03/16/2018,Politicians,@RickSantorum,Republicans Are Trying to Bail Out Obamacare https://t.co/bkpB7fjrHB. Propping up a failed system is bad policy and… https://t.co/vyt4lKHEji +03/14/2018,Politicians,@RickSantorum,@jaketapper @ConorLambPA .@jaketapper @ConorLambPA was not chosen in a primary open to the public and progressive m… https://t.co/91Vr9RgKo7 +03/13/2018,Politicians,@RickSantorum,Setting the record straight and making the case for strengthening rural America. https://t.co/UNShHbAo32 #ethanol +03/08/2018,Politicians,@RickSantorum,There is only one true Prolife candidate for governor in PA. https://t.co/RSjaW4CLWn +03/08/2018,Politicians,@RickSantorum,I am a great fan of Joel and his novels. Every book is prescient and gripping and #TheKremlinConspiracy is no excep… https://t.co/XFatModeg0 +03/07/2018,Politicians,@RickSantorum,Please join us! https://t.co/zjZe3zLpcf +03/02/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU with @jaketapper this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @chavezlinda and @Bakari_Sell…" +02/27/2018,Politicians,@RickSantorum,https://t.co/pqeG72oIEd +02/27/2018,Politicians,@RickSantorum,https://t.co/zAa6IkohHU +02/27/2018,Politicians,@RickSantorum,Saying that boys need dads is not an attack on moms. Fact- vast majority of young men in prison & school shooters w… https://t.co/IvfmSXbhNk +02/25/2018,Politicians,@RickSantorum,I will! https://t.co/RYRnta4iSC +02/22/2018,Politicians,@RickSantorum,"Proud to endorse my friend @RogerWicker who has been a stalwart conservative, in particular helping me in the fight… https://t.co/JipdIwTkKv" +02/20/2018,Politicians,@RickSantorum,I admit I am one of the five. https://t.co/sMUXu6D62x +02/20/2018,Politicians,@RickSantorum,"PA is indeed a proud commonwealth and should be referred to as such, but it is not incorrect to call PA a state sin… https://t.co/vPb68AAqCW" +02/14/2018,Politicians,@RickSantorum,In church now praying for the victims the families and the community. May God have mercy on their souls and give comfort to all who mourn. +02/12/2018,Politicians,@RickSantorum,"RT @realDonaldTrump: Rep. Lou Barletta, a Great Republican from Pennsylvania who was one of my very earliest supporters, will make a FANTAS…" +02/11/2018,Politicians,@RickSantorum,Looking forward to seeing how a great university welcomes diverse viewpoints. https://t.co/EsMa1RS6P6 +02/11/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU with @jaketapper this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @chavezlinda and @K_JeanPierr…" +02/04/2018,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Busy morning here at #CNNSOTU w/ @JakeTapper: @SenatorDurbin, @jahimes, @RepBradWenstrup, @RickSantorum, @JenGra…" +01/31/2018,Politicians,@RickSantorum,Like @realDonaldTrump the #sotu is different in that it is laced throughtout with narratives. Not just a policy add… https://t.co/iiPwvTvV57 +01/30/2018,Politicians,@RickSantorum,Will be on CNN tonight before and after #SOTU. Top of my wish list for @realDonaldTrump tonight - challenge senate… https://t.co/kt4GsrGrDk +01/19/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Let's support the @March_for_Life today by passing the Born-Alive Abortion Survivors Protection Act (H.R. 4712) introdu… +01/19/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Thank you @realDonaldTrump for speaking to the @March_for_Life! Watch here at approximately 12:15pm ET: https://t.co/vo… +01/19/2018,Politicians,@RickSantorum,Will be on @AC360 to discuss why Democrats are voting against a spending bill tonight that they had nothing in it t… https://t.co/DAJA0oiiF4 +01/18/2018,Politicians,@RickSantorum,"Not acting on replacing Obamacare would not only be political suicide, but would be abandoning 30 million people tr… https://t.co/Sw6LovdsAD" +01/14/2018,Politicians,@RickSantorum,https://t.co/kVVEvjHiFK. The intolerance of the left rears its ugly head yet again. +01/14/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU w/ @jaketapper this Sunday to hear from our panel: @RickSantorum, @neeratanden,@carlosgutierrez and @K_Jean…" +01/10/2018,Politicians,@RickSantorum,Here are some facts to counter the left’s assertions that the current immigration system works just fine. I am pro… https://t.co/uDUhSxQ1qt +01/10/2018,Politicians,@RickSantorum,"The House Chairmen’s Plan for Immigration Reform. This proposal protects American workers, makes us safer and keeps… https://t.co/FPGzyJwYth" +12/15/2017,Politicians,@RickSantorum,We families with children devote most of our money and time to raise and educate the next generation to defend our… https://t.co/LSVRqVpAQi +12/12/2017,Politicians,@RickSantorum,RT @patriotmom61: Catch @RickSantorum today at the top of the 3 pm ET hour on with @BrookeBCNN #Trump #AlabamaSenateRace #tcot https://t.c… +12/12/2017,Politicians,@RickSantorum,Will be on CNN all evening covering the Alabama senate race. Would appreciate any intel from my Alabama followers. +12/03/2017,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @MarkWarner, @SenatorTimScott, @RickSantorum , @K_JeanPierre , @JenGranholm &…" +11/29/2017,Politicians,@RickSantorum,Looking forward to defending our constitutional rights at GW tonight. Join us at https://t.co/tKIRBI680n. https://t.co/PbWumURcJf +11/28/2017,Politicians,@RickSantorum,The next first family of Minnesota! God speed. https://t.co/EyZAzKBhFM +11/27/2017,Politicians,@RickSantorum,Americans are waking up to war on vast majority of campuses against anything and anybody that doesn’t agree with pr… https://t.co/liTanexA0b +11/27/2017,Politicians,@RickSantorum,.@repmattdean and Laura Dean are great people and will be a huge upgrade in the governors office in MN! Looking fo… https://t.co/z7GRufB9bg +11/27/2017,Politicians,@RickSantorum,Thank you Aimee and all YAF members for your courage and hard work. Can’t wait to defend our constitution at George… https://t.co/yu2nBAVGN0 +11/26/2017,Politicians,@RickSantorum,Stephen Moore is so right! Congress should add these provisions to the tax bill now. https://t.co/GKqdmZGFF6 +11/08/2017,Politicians,@RickSantorum,"Off camera note in large print from @AC360 to me, note in small print added by @VanJones68. https://t.co/2jcnPpe5Gf" +11/01/2017,Politicians,@RickSantorum,"For those not watching WS game 7, join me on @AC360 at 9 ET. Will be on for the full hour." +10/21/2017,Politicians,@RickSantorum,Wish I could join the next Lt Gov of GA @DavidShafer on Sunday in Duluth. https://t.co/9SuciHCGlj +10/21/2017,Politicians,@RickSantorum,@NCCouncilman @alexandraheuser Thanks Ethan. Great being w you and @MikeDeWine at K’s Hamburger Shop in Troy again. +10/20/2017,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @Bakari_Sellers and @Evan_McMullin. https://t.…" +10/10/2017,Politicians,@RickSantorum,".@ingrahamangle new must read book takes on the GOP Establishment & explains the populist rise of @realdonaldtrump. +https://t.co/rJ1MPNkvuD" +10/10/2017,Politicians,@RickSantorum,@EFrazier512 @SarahLeeAnne @alexandraheuser Let me apologize for not sending a thank you. I didn’t have many contri… https://t.co/IBuRnm1pp8 +10/09/2017,Politicians,@RickSantorum,Looks like a good crowd. Looking forward to some great interaction with the students. https://t.co/ACVt2JrFgS +10/09/2017,Politicians,@RickSantorum,Having a great day in Tuscaloosa. Just visited the Sabin Catholic Center. https://t.co/ACVt2JrFgS +10/08/2017,Politicians,@RickSantorum,Will be on in a few minutes. https://t.co/b4UwmyWi69 +09/24/2017,Politicians,@RickSantorum,@valsthewoman Not the same rules. Block grant allows states to spend money to set up a completely different approach. Broad flexibility. +09/22/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum Explains the Graham-Cassidy Healthcare Plan With Mark Levi... https://t.co/UKyzjpPQjS #GrahamCassidy #tcot… +09/21/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum coming up on @marklevinshow at 7:15 pm EST to discuss #GrahamCassidy plan. Tune in! #MAGA #tcot #teaparty… +09/21/2017,Politicians,@RickSantorum,"Read what can happen by giving states the flexibility in #GrahamCassidy. Better coverage, higher quality, less money https://t.co/mfufbfIWpz" +09/21/2017,Politicians,@RickSantorum,Great synopsis dispelling myths and extolling the benefits of #GrahamCassidy. Call your senator now 202-224-3121.… https://t.co/ZUj2LqcrCG +09/21/2017,Politicians,@RickSantorum,Happy to have been part of an effort to end his aggravation permanently. Let's help put him out of his misery - hel… https://t.co/NjIc10Q0Ah +09/21/2017,Politicians,@RickSantorum,".@RandPaul voted for ""skinny"" repeal that kept more ACA taxes than #GrahamCassidy, but opposes GC because it doesn't repeal all ACA taxes???" +09/21/2017,Politicians,@RickSantorum,"Fascinating to see @RandPaul working hard to save Medicaid Expansion. Opposes #GrahamCassidy, but voted for ""skinny"" bill that preserved it." +09/21/2017,Politicians,@RickSantorum,It's #GrahamCassidyِ or Berniecare. Even Bernie agrees Ocare is a failure why else would he propose a new system. https://t.co/v0ljXWXlpP +09/21/2017,Politicians,@RickSantorum,"#GrahamCassidy doesn't amend ACA insurance regs on pre-existing condition, gives states flexibility on how to provi… https://t.co/rDN4Uu7yFF" +09/19/2017,Politicians,@RickSantorum,My response to Senator Paul's distortion of #GrahamCassidy https://t.co/4I2NJ1dsS6. Call your senator to vote yes on repeal and replace! +09/19/2017,Politicians,@RickSantorum,Must read to understand how more people will get better coverage under #GrahamCassidyِ https://t.co/amRQZ2dHyE +09/19/2017,Politicians,@RickSantorum,Call your senators to vote yes on #GrahamCassidy. https://t.co/P8Df8XRfgR +09/18/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Chuck Schumer & Elizabeth Warren tweeting opposition to #GrahamCassidy! Ask Senate to support here https://t.co/CGvOjWD… +09/18/2017,Politicians,@RickSantorum,.@dougducey thank you for all the work you did to improve #GrahamCassidy and for taking the lead for better healthc… https://t.co/8AFuxB7lU7 +09/17/2017,Politicians,@RickSantorum,"Logic? I want to give parents the power to save innocent life, not the power to take innocent life. Not just about… https://t.co/XZC7url7ir" +09/17/2017,Politicians,@RickSantorum,A man who wants to make sure parents of children w birth defects not the government have the power to decide what i… https://t.co/WvF08rP2KO +09/17/2017,Politicians,@RickSantorum,RT @alexandraheuser: @RickSantorum #CNNSOTU here's the story the Democrats have finally stood up and admitted that Obamacare is a failure. +09/17/2017,Politicians,@RickSantorum,Emergency room visits hit all-time high during ACA implementation https://t.co/ad40R57oMJ. Now who is the dolt? Pas… https://t.co/TDZaYRtZDG +09/17/2017,Politicians,@RickSantorum,#GrahamCassidy is only option to stop job killing employer mandate. Passage will cut taxes the deficit and spending… https://t.co/FSYzpWCv4p +09/15/2017,Politicians,@RickSantorum,"At the Capitol today working w senate Republicans building support for innovative, quality driven, affordable healthcare. End of ACA is near" +09/14/2017,Politicians,@RickSantorum,RT @LindseyGrahamSC: https://t.co/AL9KH3cKdL +09/13/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch @RickSantorum live at 4pm with @jennybethm of Tea Party Patriots. Will share here: https://t.co/NbSuBtSdU1 +09/13/2017,Politicians,@RickSantorum,Watch press conference here. Contact your Senators and Governors. #DrainTheSwamp https://t.co/PU9U6GZ86n +09/07/2017,Politicians,@RickSantorum,Great to see my good friend Dan Meuser throw his hat in the ring in #PA11 #papolitics +09/03/2017,Politicians,@RickSantorum,Back to back shows this morning. Join @CNNSotu and me for a #LabourDayWeekend Doubleheader! https://t.co/zkC5XiRAAJ +08/31/2017,Politicians,@RickSantorum,.@ScottWalker has provided incredible leadership to rally support for this proposal w other govs. https://t.co/tpyyBzBwTs via @BreitbartNews +08/29/2017,Politicians,@RickSantorum,Just received an email from @RepLouBarletta. He is running for US Senate in PA! Check out his announcement video. https://t.co/VmjBhHl14Q +08/25/2017,Politicians,@RickSantorum,"For conspiracy theorists who think @FosterFriess is trying to manipulate coffee futures, I am sure that he will pay… https://t.co/2wetyDs2dH" +08/25/2017,Politicians,@RickSantorum,ACA gives 40% of $ to 4 wealthy states w 21% of the people. Support R Govs plan to treat needy the same in each St. https://t.co/uJ7bwwb5dZ +08/24/2017,Politicians,@RickSantorum,Safe spaces and ‘ze’ badges: My bewildering year at a US university https://t.co/36m7XGuHXA +08/22/2017,Politicians,@RickSantorum,Santorum Crafting Different Obamacare Repeal Plan with Lawmakers: ‘It Will Pass Through the House and the Senate’ https://t.co/CIcfzy5VqO +08/21/2017,Politicians,@RickSantorum,What a great challenge! Join @FosterFriess in having coffee with someone you disagree with. #return2civility @VanJones68 coffee? +08/20/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Make sure to watch @RickSantorum on @CNNSotu Sunday morning! https://t.co/VmpXNeYvqa +08/08/2017,Politicians,@RickSantorum,RT @FuelsAmerica: Happy Birthday #RFS. Join the celebration by telling @EPA that the #RFSWorks for America! Click HERE ➡️ https://t.co/MRKi… +08/06/2017,Politicians,@RickSantorum,"RT @CNNSotu: This AM w/ @JakeTapper: @GovChristie, @RepAdamSchiff, @SenRonJohnson, @ninaturner, @RickSantorum, @amandacarpenter, @RepRoKhan…" +08/06/2017,Politicians,@RickSantorum,Santorum: How to get family policy right for working families | TheHill https://t.co/engF9zxDDI +08/03/2017,Politicians,@RickSantorum,American made biofuels will be key to making sure we reach energy security! #MAGA https://t.co/e2Sue77drb +08/03/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Co-Chair @RickSantorum reminds @EPA that #ethanol represents the next great economic driver in the heartland. https://t… +08/03/2017,Politicians,@RickSantorum,Thanks @DineshDSouza & @LifeZette for telling the truth. Debunking the Lie That Trump Is a Fascist | LifeZette https://t.co/LuRAy5Cbmc via +08/03/2017,Politicians,@RickSantorum,.@POTUS Working w GOP Govs on welfare in 96 produced most successful reform in history Thanks for engaging them on #healthcare. #leadership +08/03/2017,Politicians,@RickSantorum,.@POTUS Thanks for not giving up on #healthcarebill & supporting sending money to states where 25 states totally controlled by GOP v 6 by Ds +08/03/2017,Politicians,@RickSantorum,I think Archbishop Chaput sums up my response very well. https://t.co/EHrQHM3WDK. https://t.co/8Ugjqdvx8s +07/31/2017,Politicians,@RickSantorum,"AP is reporting my good friend @loubarletta is running for the Senate against Casey. Boy, wouldn't that be great! #RunLouRun" +07/28/2017,Politicians,@RickSantorum,"If senate passes ""Skinny Repeal"" GCH can be substituted in conference. Only chance to get majorities in both houses. https://t.co/Pq7nkUJJvS" +07/27/2017,Politicians,@RickSantorum,"Congratulations to my good friend, there is no better defender if religious liberty. Well done @POTUS! https://t.co/4IHVQhbe1R" +07/27/2017,Politicians,@RickSantorum,"RT @BillCassidy: Proud to have @SenDeanHeller join me and @LindseyGrahamSC as a cosponsor of the Graham-Cassidy Amendment. ""Graham-Cassidy-…" +07/26/2017,Politicians,@RickSantorum,Thank you for putting the security of our country and the safety and efficacy of our soldiers ahead of gender polit… https://t.co/gzGY83hlZj +07/26/2017,Politicians,@RickSantorum,Tune into CSpan2 to hear Senators Cassidy and Graham discuss the only viable alternative to ACA. +07/20/2017,Politicians,@RickSantorum,Truly enjoyed my conversation w a great former Pittsburgher at the Capitol. @UKCoachCalipari https://t.co/mxiNfe7uD4 +07/20/2017,Politicians,@RickSantorum,Working on moving healthcare decisions out of D.C. and closer to the doctor and patient. #GrahamCassidy.… https://t.co/RaGEhvlLuv +07/18/2017,Politicians,@RickSantorum,"@POTUS after last night's announcements on McConnell bill, the only viable path left to get 50 votes is #GrahamCassidy. #Drain the Swamp" +07/18/2017,Politicians,@RickSantorum,"For the Love of Charlie Gard +Well said Bill, I couldn't have said it better. https://t.co/jvuEgiFEDQ" +07/13/2017,Politicians,@RickSantorum,"Modeled after Welfare Reform. This will #DrainTheSwamp Graham, Cassidy unveil alternative plan @CNNPolitics https://t.co/z8Z99jPXqw" +07/09/2017,Politicians,@RickSantorum,RT @PVCoDirectorVal: @RickSantorum wants #GOP Governors to put together a Healthcare Solution that enables #Senators to #RepealAndReplace #… +07/06/2017,Politicians,@RickSantorum,RT @USAEnergy: #RFSworks for energy security says AESI co-chairs @JimTalent @RickSantorum https://t.co/GYb00oFQd0 https://t.co/7x2KL0r6Wr +07/05/2017,Politicians,@RickSantorum,Looking forward to speaking with our country's future leaders. Great young people who have the courage to stand for… https://t.co/dpKFuQdl3X +07/05/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum will be on @CNNnewsroom at 2:15 EST to discuss @POTUS trip to #G20Summit & more. #Trump #Putin #Russia #AH… +07/04/2017,Politicians,@RickSantorum,RT @USAEnergy: Each gallon of homegrown #ethanol brings us one step closer to long-term energy security. Happy #July4th! https://t.co/lxHqt… +07/01/2017,Politicians,@RickSantorum,"Failure means ACA stays, worse some Rs would join Ds to give it more money so it doesn't collapse. @POTUS must sign… https://t.co/7EwOq2mLAg" +06/26/2017,Politicians,@RickSantorum,"RT @USAEnergy: Pres @realDonaldTrump applauded in US heartland for commitment to homegrown #biofuels, #ethanol https://t.co/oTZ1OUi2Ws" +06/26/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Send quick email to your US Senators to pass Senate Health Care Bill & defund Planned Parenthood by using link here: ht… +06/25/2017,Politicians,@RickSantorum,RT @yaf: Don't miss out on the opportunity to hear @RickSantorum at YAF's NHSLC! Register here: https://t.co/DmXSl0xHL0 https://t.co/J5sliB… +06/23/2017,Politicians,@RickSantorum,Will also be on @OutFrontCNN tonight talking senate healthcare bill. https://t.co/2iN2e61i97 +06/18/2017,Politicians,@RickSantorum,"RT @CNNSotu: Joining @jaketapper this Sunday on #CNNSOTU : @Bakari_Sellers , @RepDebDingell , @RepCharlieDent , and @RickSantorum https://t…" +06/14/2017,Politicians,@RickSantorum,"Praying for @SteveScalise, the injured and those who witnessed this horror. Prayers also for their families." +06/08/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Co-Chair @JimTalent reminds Oregonians that #RFS is economic & national security priority https://t.co/p2NiZe8NmL +06/02/2017,Politicians,@RickSantorum,"More climate on #CNN shortly. Thanks for the feedback +&-, but batteries for storage$$$$? Grid must have reliable base & peak power sources." +06/02/2017,Politicians,@RickSantorum,Keeping pledges bolsters our credibility internationally even w those who disagree w the policy & concessions to the PA won't bring peace +06/02/2017,Politicians,@RickSantorum,"Another @NewDay morning! Congrats to @POTUS for keeping pledge nixing #ParisAccords, but very disappointed he broke one on Jerusalem embassy" +06/01/2017,Politicians,@RickSantorum,Sad to be criticized by the left for something as obvious as solar (clouds & darkness) and wind (calm winds) are no… https://t.co/jmAGv6fSVD +06/01/2017,Politicians,@RickSantorum,Going on @NewDay in minutes to talk Paris Climate decision. #MakeAmericaGreatAgain by helping keep energy prices low for American workers +05/31/2017,Politicians,@RickSantorum,"From @JohnBrabender : Did Russia interfere with our election? Yes. Did it elect Trump, absolutely not https://t.co/lMTkd0Og0E" +05/29/2017,Politicians,@RickSantorum,Feeling very blessed today to be enjoying a day w family. Thanks to all those who sacrificed to make it possible. #memorialdayweekend2017 +05/26/2017,Politicians,@RickSantorum,RT @CNNSotu: Tune in Sunday for thoughts from the best political minds with the #CNNSOTU panel @ninaturner @RickSantorum @JenGranholm and @… +05/25/2017,Politicians,@RickSantorum,Enjoyed helping my city host ambassadors from 34 countries this week. They all were impressed w the comeback story… https://t.co/t3XY0jzE9P +05/25/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Chair @RickSantorum illustrates how homegrown #biofuels are driving American energy security https://t.co/QVts8eD2hp +05/24/2017,Politicians,@RickSantorum,Check out my oped in this morning's @WashTimes about the importance of biofuels in an all of the above energy policy https://t.co/huE9Acv76N +05/23/2017,Politicians,@RickSantorum,We are Manchester 🇬🇧. Praying now for victims and all waking up in UK to this attack on their countrymen and on our friend and ally. +05/21/2017,Politicians,@RickSantorum,RT @PVCoDirectorVal: @Patriot_Voices Chairman @RickSantorum has rallied #Trump supporters with this outstanding push against the #MSM #fake… +05/13/2017,Politicians,@RickSantorum,RT @USAEnergy: US #biofuel production continues to climb - #RFS works for Energy Security https://t.co/bJNfK1c5cb +05/12/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Send a quick email to your U.S. Senators to Repeal Obamacare & Defund Planned Parenthood! Use the link here: https://t.… +05/12/2017,Politicians,@RickSantorum,I enjoyed my time with the men and women from banks across PA who are on the front lines of making the economy work… https://t.co/yfVtHJxe3t +05/02/2017,Politicians,@RickSantorum,I hear that @RepLouBarletta is being strongly encouraged to run for the U.S. Senate. My good friend Lou would make a great Senator. #tcot +04/29/2017,Politicians,@RickSantorum,"Actually next best thing to being at the @penguins @Capitals game, then the PA Trump Rally! #LetsGoPens" +04/29/2017,Politicians,@RickSantorum,"Talking 1st 100 Days 8-11 tonight w @JohnBerman & @PoppyHarlowCNN, then @CNNSotu w @jaketapper, next best thing to being at PA Trump Rally!" +04/24/2017,Politicians,@RickSantorum,Kate Walsh O'Beirne R.I.P. | National Review. Kate defined tough love to her conservative friends. Thank you! https://t.co/syKffQxMXA +04/22/2017,Politicians,@RickSantorum,"Honored to join my friend Larry Wittig to christen the ""Bella Santorum"" into the @DrexelUniv crew fleet. Go Dragons! https://t.co/moNE4fT7S8" +04/18/2017,Politicians,@RickSantorum,RT @PatriotVoicesPA: Packed house awaiting @RickSantorum speaking on the degradation of traditional American values. #YAFonCampus https://t… +04/18/2017,Politicians,@RickSantorum,Just walked around @Princeton beautiful campus on a great spring day. Looking forward to interacting w students her… https://t.co/fdPnRJ1Ac3 +04/16/2017,Politicians,@RickSantorum,Went to Easter Vigil w/ family tonight. Best 2 1/2 hours of the yr. A blessed Easter to my all brothers and sisters in Christ. He is Risen! +04/13/2017,Politicians,@RickSantorum,Excited to speak on 4/27 on how a new village concept called @NeoRetroism can positively reknit our communities. https://t.co/J5ERSL0Jyv +04/13/2017,Politicians,@RickSantorum,Really enjoyed engaging the students at @CalStateLA! Thanks to @yaf for a well run event. https://t.co/ongTFlYiK8 +04/12/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch @RickSantorum speak NOW at 6pm ET @ CA State University LA in spite of the protesters @yaf Stream here: https://t… +04/11/2017,Politicians,@RickSantorum,Hoping CSULA students will come ready to engage in a dialogue on the issues. Tolerance is based on mutual respect n… https://t.co/K1rBjuZ3wd +04/09/2017,Politicians,@RickSantorum,RT @CNNSotu: The #CNNSOTU panel @RepMikeRogers @jrpsaki @RickSantorum @vali_nasr weigh in on the busy news week with @jaketapper https://t.… +04/09/2017,Politicians,@RickSantorum,RT @CNNSotu: This morning on #CNNSOTU w/@jaketapper: UN Amb @nikkihaley @SenMarkey & our panel @RepMikeRogers @jrpsaki @RickSantorum @vali_… +04/07/2017,Politicians,@RickSantorum,RT @CNNSotu: This week on the #CNNSOTU with @jaketapper panel: @RepMikeRogers @jrpsaki @RickSantorum and @vali_nasr. Join us! https://t.co/… +04/07/2017,Politicians,@RickSantorum,Speaking in Dallas on April 27th on why It Takes a Village - I mean a real village! https://t.co/taZ1RHYvHd +04/06/2017,Politicians,@RickSantorum,Congratulations to all Senate Republicans for establishing the proper standard for confirming justices to the… https://t.co/6UPeKnWaaz +04/05/2017,Politicians,@RickSantorum,RT @JamesDAlessio: Great to have @RickSantorum back in SC stumping for @TomMullikinSC! Great crowd and great BBQ in Prosperity! https://t.c… +04/04/2017,Politicians,@RickSantorum,Any deal not to filibuster Gorsuch in exchange for allowing the Ds to filibuster the next one is political insanity. They will block anyone! +04/03/2017,Politicians,@RickSantorum,About to go on @CNN after @seanspicer press conference. Pleased that Republicans united behind nuclear option to confirm #Gorsuch. +04/01/2017,Politicians,@RickSantorum,RT @sandraschulze: Happy to raise funds for former Veteran @shannongrove and for the @warriorrising at @MadoroMwines Thanks to guest speake… +04/01/2017,Politicians,@RickSantorum,RT @RealTimers: Send us your questions for tonight's #RealTime guests and watch them answer LIVE after the show on #RTOvertime: https://t.c… +03/24/2017,Politicians,@RickSantorum,RT @CNNSotu: Watch #CNNSOTU Sunday for thoughts from the best political minds with our panel @Bakari_Sellers @RickSantorum @RepDebDingell @… +03/24/2017,Politicians,@RickSantorum,"Several good candidates, but Tom Mullikin is a solid conservative & veteran who served the US & SC w distinction. https://t.co/Y7Id4b7Xmu" +03/24/2017,Politicians,@RickSantorum,"""Time to govern"" is always the cry of leaders who can't convince on policy to vote for their bill. It rarely is a good reason. It is today" +03/23/2017,Politicians,@RickSantorum,Agree! Any Republican considering this wants to take the next SCOTUS pick away from @POTUS and give it to… https://t.co/vVQjvFXpZ9 +03/23/2017,Politicians,@RickSantorum,Senate Republicans should announce that a simple majority vote will be new requirement to confirm SCOTUS nominees. https://t.co/D4X5uhjb7o +03/23/2017,Politicians,@RickSantorum,Thank you @Students4LifeHQ for your tireless work. Congrats on 10 yrs of incredible achievements #ProLifeGen #SFLA10 https://t.co/V2vEjFPDZf +03/20/2017,Politicians,@RickSantorum,"RT @USAEnergy: Iowa’s @ChuckGrassley leads 23 senators calling on @POTUS to protect #RFS, homegrown fuels, writes @toddneeleyDTN https://…" +03/20/2017,Politicians,@RickSantorum,"RT @jaketapper: .@RickSantorum: Now that FBI disclosed investigation, needs to quickly work to conclude https://t.co/UWpixOKFsE #TheLead" +03/20/2017,Politicians,@RickSantorum,More myth busting on ethanol. @USAEnergy https://t.co/X3xUAE19J0 +03/19/2017,Politicians,@RickSantorum,RT @77WABCradio: Tune in NOW for #ElectionCentral w/@RitaCosby with @RickSantorum @MasseyForMayor @KimGuadagnoNJ.. & Colonel David Hunt Sal… +03/18/2017,Politicians,@RickSantorum,Ben Bernstein the 5 yr old son of my good friend @LukeBernstein is an NCAA March Madness mascot Mensa! https://t.co/Dm1dSAdnoa +03/18/2017,Politicians,@RickSantorum,I know I will enjoy speaking and answering your questions @CalStateLA on April 12th. https://t.co/q6uxcroycz +03/17/2017,Politicians,@RickSantorum,Get your copy of my good friend @JoelCRosenberg book #WithoutWarning. Like all of his books it is a real page turne… https://t.co/GDiIRNJJAu +03/17/2017,Politicians,@RickSantorum,Happy St. Patrick's Day! Will be sporting my green tie in a couple of minutes on @NewDay +03/14/2017,Politicians,@RickSantorum,On @OutFrontCNN I said healthcare solution is to block grant all non-Medicare health $ to states. See this result https://t.co/q9cAFBRTuV +03/12/2017,Politicians,@RickSantorum,Facts about @PPact false claim that reallocating money from their abortion clinics would limit access to healthcare. https://t.co/bjZ4a9g6Ps +03/12/2017,Politicians,@RickSantorum,@neeratanden said I was wrong about ER visits up due to Medicaid expansion. Argue with @washingtonpost not me https://t.co/5fLRP7WBn8 +03/12/2017,Politicians,@RickSantorum,"@RepGutierrez repeats false narrative that ACA gave people health CARE, already was law requiring healthcare, ACA required health INSURANCE." +03/11/2017,Politicians,@RickSantorum,"Check out my oped appearing in tomorrow's @DMRegister : ""Trump will stand strong for RFS, rural America"" #RFS https://t.co/NQWANMwJgH" +03/10/2017,Politicians,@RickSantorum,RT @CNNSotu: Sun on #CNNSOTU w/ @jaketapper @SenJohnMcCain @CoryBooker Dir Mick Mulvaney & panel @RickSantorum @neeratanden @RepMarkMeadows… +03/09/2017,Politicians,@RickSantorum,RT @CNNSotu: Join us on #CNNSOTU this Sunday at 9am & 12pm ET for insights from our panel @RepMarkMeadows @neeratanden @RickSantorum @RepGu… +03/09/2017,Politicians,@RickSantorum,I will be giving my opinion on ACA repeal and replace on @CNN next hour with John and Poppy. There is a better way to do this. +03/07/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch Diamond and Silk talk about how important it is to join Patriot Voices! https://t.co/GbrBnA3ehg @RickSantorum #Ma… +03/06/2017,Politicians,@RickSantorum,"RT @DMRegister: Refiners will continue to be responsible for blending in renewable fuels, the governor said. https://t.co/6CAGycxlAq" +03/04/2017,Politicians,@RickSantorum,Also my friends @DiamondandSilk and Rep Tan Parker and county chair Lisa Hendrickson. Will be a great evening. https://t.co/meWqoyC79c +03/04/2017,Politicians,@RickSantorum,"Another example of systemic bias at colleges. For conservatives at Cornell University, high price for free speech https://t.co/KZdKsCtvJd" +06/27/2018,Politicians,@RandPaul,RT @RandyEBarnett: I’d say it was when Burr shot and killed Hamilton. https://t.co/4fEPsZMO7w +06/27/2018,Politicians,@RandPaul,ICYMI: I joined @FoxNews to discuss Justice Kennedy's resignation and possible #SCOTUS nominees. https://t.co/x4JleEpaUS +06/27/2018,Politicians,@RandPaul,"I commend the court, applaud the decision, and congratulate @RightToWork and their team for their hard work and per… https://t.co/rcfsVf6uww" +06/27/2018,Politicians,@RandPaul,Today the Supreme Court in #Janus gave every public sector worker in America back their First Amendment rights and freedom of association. +06/26/2018,Politicians,@RandPaul,The uses for hemp are many – from buildings to medicine. The Commonwealth of Kentucky has a rich history of hemp gr… https://t.co/4IPLDgUXDU +06/26/2018,Politicians,@RandPaul,"RT @TFASorg: Thank you, Sen. @RandPaul and @SenMikeLee for sharing your expertise on Free Markets, Individual Liberty and Civil Society at…" +06/26/2018,Politicians,@RandPaul,"RT @TFASorg: .@SenMikeLee discusses his Due Process Guarantee Act, legislation he and Sen. @RandPaul say should have bipartisan support. ht…" +06/26/2018,Politicians,@RandPaul,RT @TFASorg: “Everyone should have the presumption of innocence and the right to a trial by jury in America.” - Sen. @RandPaul at the #TFAS… +06/26/2018,Politicians,@RandPaul,RT @TFASorg: Sen. @RandPaul begins today by talking about where right and left can come together. +06/26/2018,Politicians,@RandPaul,Join me and @SenMikeLee live now for the @TFASorg Capitol Hill Lecture Series: https://t.co/Bea4dPrEW9 +06/25/2018,Politicians,@RandPaul,"I recently spoke with Sinclair Broadcast Group’s @KristineFrazao about the failed Kabul ""Marriott"" in Afghanistan,… https://t.co/argApaiX5p" +06/21/2018,Politicians,@RandPaul,Great to have @Judgenap on Capitol Hill today for our summer intern lecture series! You can watch his talk here: https://t.co/M8mi6IR5fm +06/21/2018,Politicians,@RandPaul,"I always enjoy catching up with @KimDarroch, the British Ambassador to the US. Lots of catching up on issues includ… https://t.co/7r8JqY2FOQ" +06/20/2018,Politicians,@RandPaul,Congrats to a true liberty lover! @mkibbe https://t.co/0ajr6VKIQK +06/20/2018,Politicians,@RandPaul,"Today the U.S. Senate failed to discharge H.R. 3, President Trump’s rescissions package to cut $15 billion in unnee… https://t.co/EsWmepXs0n" +06/20/2018,Politicians,@RandPaul,Coming up right now on @FoxBusiness with @MariaBartiromo. +06/19/2018,Politicians,@RandPaul,"Our national debt is over $21 trillion. It has to stop now, or government will be too broke to do anyone any good,… https://t.co/UuPp2t6Wc9" +06/19/2018,Politicians,@RandPaul,"For months, I worked directly with President Donald Trump and Secretary Acosta to make this happen. Today, we are p… https://t.co/6yyzCkZSc3" +06/19/2018,Politicians,@RandPaul,"RT @lesleyclark: .@RandPaul has championed measure in the Senate, saying it would cut funding, including some that has ""sat around unspent…" +06/18/2018,Politicians,@RandPaul,"Join us Thursday, June 21 for @Judgenap's @TFASorg Capitol Hill Lecture: Do We Still Have a Constitution? https://t.co/Vw1TASdDjy" +06/18/2018,Politicians,@RandPaul,RT @amconmag: Excellent new video from our friends at @freethepeople highlighting the work @SenMikeLee @RandPaul @SenSanders and others are… +06/15/2018,Politicians,@RandPaul,"Bridges and roads across the country are in desperate need of repair, and funding is limited. So why are we spendin… https://t.co/3eMOhAhMh8" +06/15/2018,Politicians,@RandPaul,RT @FAMMFoundation: @RepJeffries and Senator @RandPaul are confirmed speakers for our #familiesforjusticereformNOW rally! #Brooklyn and #Ke… +06/14/2018,Politicians,@RandPaul,"From Milton Friedman: ""Nobody spends somebody else's money as carefully as he spends his own."" #ThrowbackThursday" +06/14/2018,Politicians,@RandPaul,It's @thehillbaseball Game Day! Learn more here: https://t.co/0hB7OoRubW https://t.co/LoNYhtjG3w +06/14/2018,Politicians,@RandPaul,RT @ToyotaPolicy: Our largest plant in the world is in Kentucky. Thanks for representing at @thehillbaseball game @RandPaul. #CBG18 https:/… +06/13/2018,Politicians,@RandPaul,America needs to know there is one opponent in the Senate who does not believe in the Bill of Rights. The right to… https://t.co/HuTrj9m4Mg +06/13/2018,Politicians,@RandPaul,RT @KyElectricCoops: @RandPaul with the Kentucky Youth Tour Delegates. #WYT2018 https://t.co/yyEeTHWtzE +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: Sponsored by The Einhorn Family Foundation, the #TFAS and @RandPaul Capitol Hill Lecture Series is free and open to all Washin…" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: “I think #economics intersects with freedom, and it’s what makes #freedom possible.” - Sen. @RandPaul" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: “I've spent my adult life trying to change ideas ... I think that if people understand #economics, the world will be a better…" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: #TFAS and the Office of Senator @RandPaul are co-hosting our one-of-kind lecture series bringing the ideas of free markets, in…" +06/11/2018,Politicians,@RandPaul,Lindsey Graham is a danger to the country by even proposing ideas like authorizing war with Korea https://t.co/JCToKXsDLu +06/11/2018,Politicians,@RandPaul,Giving the accused their day in court isn’t a suggestion. It’s enshrined in our Constitution as a cornerstone of ou… https://t.co/Ezc4z4Bn6e +06/11/2018,Politicians,@RandPaul,Very few other leaders or past presidents would have taken the meeting with North Korea. I agree with… https://t.co/VKLC9upCk4 +06/09/2018,Politicians,@RandPaul,RT @FreedomWorks: Senator @RandPaul continues to warn against the executive branch's unlimited war powers #Constitution #NeedsCongressional… +06/09/2018,Politicians,@RandPaul,ICYMI: I joined Judge Nap to discuss the Federal Spending Oversight Subcommittee hearing on whether or not wars not… https://t.co/fv5mn6m3NM +06/08/2018,Politicians,@RandPaul,"Someone is blocking my amendment to prevent indefinite detention of Americans! +https://t.co/9aoJi94EmK" +06/08/2018,Politicians,@RandPaul,"Earlier this week, I spoke with Newsy about unauthorized war and the Kaine-Corker AUMF. +https://t.co/TaFrc47Nlg" +06/07/2018,Politicians,@RandPaul,"BIG question for John Brennan, who has become such a vocal spokesman. Did you receive any secret info on candidate… https://t.co/0SHENEjGa3" +06/06/2018,Politicians,@RandPaul,RT @jackhunter74: .@RandPaul: Why have we been in Afghanistan 17 years? https://t.co/Gp4THre1Nu #FoxNews +06/06/2018,Politicians,@RandPaul,Here's my opening statement from today's hearing: https://t.co/xyHnhP6oxj +06/06/2018,Politicians,@RandPaul,"Today, I chaired a hearing to discuss the importance of Congress declaring or initiating war. Congress has been neg… https://t.co/KZiytO11XR" +06/06/2018,Politicians,@RandPaul,Lining up for my hearing at 2:30 “War Powers and the Effects of Unauthorized Military Engagements on Federal Spendi… https://t.co/fTzkwvMwcZ +06/05/2018,Politicians,@RandPaul,RT @FreedomWorks: Senator @RandPaul continues to warn against the executive branch's unlimited war powers #Constitution #NeedsCongressional… +06/05/2018,Politicians,@RandPaul,RT @CR: 🔥🔥🔥 @RandPaul ROASTS Bill Clinton for playing 'victim' 20 years after @MonicaLewinsky scandal https://t.co/lamupnunPI +06/05/2018,Politicians,@RandPaul,"RT @reporterjoe: NEW! @RandPaul/@SenGaryPeters holding ""War Powers and the Effects of Unauthorized Military Engagements on Federal Spending…" +06/05/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I’ve been very hopeful that it’s the beginning of dialogue…I think it’s one of President Trump’s strong points th…" +06/05/2018,Politicians,@RandPaul,RT @FoxNews: .@RandPaul on North Korea: “The U.S. taxpayers should not be paying them to not develop nuclear weapons.” @AmericaNewsroom htt… +06/05/2018,Politicians,@RandPaul,"Bill Clinton epitomizes the aggressor, not the victim. You can’t have an appropriate or consensual relationship wit… https://t.co/Rvxt2yr9Cw" +06/05/2018,Politicians,@RandPaul,Joining @BillHemmer shortly on @FoxNews! Tune in for a lively discussion! +06/04/2018,Politicians,@RandPaul,"This is wonderful news for Greenup County and the surrounding communities, and Braidy Industries’ selection of this… https://t.co/i224ujbqOg" +06/01/2018,Politicians,@RandPaul,#Veterans – join the 1000+ Kentucky vets and add your story to @LibraryCongress Veterans History Project! #LOCvets https://t.co/PWg30RkAsM +05/31/2018,Politicians,@RandPaul,I applaud the attention that criminal justice reform is getting from @KimKardashian and @realDonaldTrump. The syste… https://t.co/PQCYjUdhJl +05/30/2018,Politicians,@RandPaul,RT @SenMarkey: 40% of inmates enter the prison system with a substance use disorder. To successfully transition back to their communities a… +05/29/2018,Politicians,@RandPaul,"Stop the wasteful spending and come home. +https://t.co/XdEUOOtvvD" +05/29/2018,Politicians,@RandPaul,Congrats to Senator McCain for owning up to biggest foreign policy mistake of past few decades: the Iraq War. Hopef… https://t.co/QvrBCRC1Sj +05/25/2018,Politicians,@RandPaul,"This Memorial Day weekend, Americans will honor all those who gave their lives in service to our nation. Kelley an… https://t.co/KACw9l07kN" +05/25/2018,Politicians,@RandPaul,We need to acknowledge that Saudi Arabia is a problematic actor in the Middle East. We shouldn’t be enabling an arm… https://t.co/SC19fAJHcf +05/24/2018,Politicians,@RandPaul,"Great move by @realDonaldTrump today! +https://t.co/9rX860RtB5" +05/24/2018,Politicians,@RandPaul,"In case you missed it, I discussed these points in today's Senate Foreign Relations Committee hearing. Here's the… https://t.co/ENKzNyyhrU" +05/24/2018,Politicians,@RandPaul,We need to acknowledge that Saudi Arabia is a problematic actor in the Middle East. We shouldn’t be enabling an arm… https://t.co/cvZBCdejGd +05/23/2018,Politicians,@RandPaul,Worth watching! We need more fiscal conservatives in Washington! https://t.co/iHr40llIqs +05/23/2018,Politicians,@RandPaul,Massive government waste! https://t.co/P7wjM6nwAA +05/23/2018,Politicians,@RandPaul,"Interesting video and project that helps put things in perspective! + +https://t.co/kcyQWE6Yeb" +05/23/2018,Politicians,@RandPaul,"Walter E. Williams: From Russia with Love +https://t.co/K04kUnYO7V" +05/22/2018,Politicians,@RandPaul,Today I stand with @NickForVA. He’ll make a tremendous addition to a stagnant US Senate. I ask you all to support h… https://t.co/VMCYOKBZOM +05/22/2018,Politicians,@RandPaul,"The budget vote was a litmus test for conservatism that too many unfortunately failed. + +https://t.co/pmsH8xogkl" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul on the Middle East: ""We should quit creating chaos, we should defend ourselves when we need to over there, but…" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul: ""There is an argument, a debate we should have in our country over whether or not the military budget is too s…" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul on @LindseyGrahamSC: ""I would call him a big-government Republican. To him, feeding the military industrial com…" +05/21/2018,Politicians,@RandPaul,RT @SecretsBedard: Boom: Team Trump cuts nearly twice as many regulations as promised https://t.co/JoRMuCEuvC +05/18/2018,Politicians,@RandPaul,Enjoyed being on your show! https://t.co/dB96IIYNkS +05/18/2018,Politicians,@RandPaul,I applaud @realDonaldTrump for taking action to stop federal money funding abortions. https://t.co/RciUDxXdfK +05/18/2018,Politicians,@RandPaul,Joining @SRuhle on @MSNBC to discuss my opposition to Ms. Haspel. https://t.co/3jCaFzY9x3 +05/18/2018,Politicians,@RandPaul,Joining @MariaBartiromo shortly on @FoxBusiness. Tune in! https://t.co/Djhd3MeUk8 +05/17/2018,Politicians,@RandPaul,Here's the vote roll call on my Penny Plan Budget from today. I would like to thank the Republicans who stood with… https://t.co/pIZEadHlFQ +05/17/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""Republicans say they are for balancing the budget so today is a litmus test. If your senator's been saying they'r…" +05/17/2018,Politicians,@RandPaul,This vote is a litmus test for conservatives. https://t.co/NaV5jHVHvu +05/17/2018,Politicians,@RandPaul,Our enormous debt threatens our national security. https://t.co/2HQkRciAnK +05/17/2018,Politicians,@RandPaul,The bottom line is whether the debt is threatening our country and it is. It's time for Republicans to step up the… https://t.co/0JkBjwB4mp +05/17/2018,Politicians,@RandPaul,Spending and waste is out of control. How moronic are we to keep flushing tax payer money down a rathole in Afghani… https://t.co/iXR6LpL8in +05/17/2018,Politicians,@RandPaul,"⚡️ “Senator Rand Paul Introduces His Penny Plan Budget” + +https://t.co/1nikzN80LX" +05/17/2018,Politicians,@RandPaul,To those highlighting my vote for tax cuts: allowing Americans to keep more of their own money is what republicans… https://t.co/vkgKQXK4PJ +05/17/2018,Politicians,@RandPaul,"Someone has to say ""enough is enough"" on waste, spending, and debt. https://t.co/H5EfiKKZxT" +05/17/2018,Politicians,@RandPaul,Let's expand Health Savings Accounts! https://t.co/xO3l4DplFz +05/17/2018,Politicians,@RandPaul,We shouldn't tolerate such abuse of taxpayer funds! https://t.co/Jgel4nMv0n +05/17/2018,Politicians,@RandPaul,My budget does much of what Republicans say they believe in. This bill is what we run on. I'm arguing for a yes vot… https://t.co/ezaRHPkNza +05/17/2018,Politicians,@RandPaul,"it continues...$850k for a televised national cricket league, $450k for a video game on climate change. https://t.co/aNy0iXvmAW" +05/17/2018,Politicians,@RandPaul,https://t.co/Zo1z6U3L6f +05/17/2018,Politicians,@RandPaul,https://t.co/Z84DjcJ1zG +05/17/2018,Politicians,@RandPaul,Here's another one of my favorite examples of waste. It's insulting. Today we're going to vote on budget that balan… https://t.co/VQbK0iteeM +05/17/2018,Politicians,@RandPaul,"Even MORE waste: study on the sex habits of quail on cocaine, sea monsters and the supernatural, kids from Pakistan… https://t.co/L85xgTT2mF" +05/17/2018,Politicians,@RandPaul,https://t.co/Wtq7dHzBpW +05/17/2018,Politicians,@RandPaul,Where else do they waste your money? Selfies. But of course we can't cut spending or balance the budget. https://t.co/Ega6xkmEr7 +05/17/2018,Politicians,@RandPaul,https://t.co/Kk7UiOvass +05/17/2018,Politicians,@RandPaul,"Also in Afghanistan, they shred new equipment and destroy it. Your tax dollars pay for it they destroy it. https://t.co/cPKT7Uvgy1" +05/17/2018,Politicians,@RandPaul,This is a hotel in Afghanistan. The government wasted $90 million for a hotel that will never be finished. US tax d… https://t.co/sDonIczbMx +05/17/2018,Politicians,@RandPaul,Should we borrow money to send it to other countries? How much do we spend in Afghanistan on building roads and bri… https://t.co/iwPvkuHOWt +05/17/2018,Politicians,@RandPaul,Does anyone in America think the government can't do with 1% less? If the government ran a balanced budget we would… https://t.co/hSLcZITVbg +05/17/2018,Politicians,@RandPaul,Republicans say we are for devolving spending and limited government and yet why won't they vote for a budget that… https://t.co/onsIHeWwoc +05/17/2018,Politicians,@RandPaul,The budget that republicans passed last year had entitlement reform. Did they do anything to enact those reforms? N… https://t.co/5PJT6Aa3F4 +05/17/2018,Politicians,@RandPaul,When we have a vote on my balanced budget in a minute we'll see republicans saying oh my we can't cut spending. The… https://t.co/iL0nbzG63v +05/17/2018,Politicians,@RandPaul,Dems and Republicans make an unholy alliance. Republicans get more military spending and dems get more welfare spen… https://t.co/8B1CO0djdM +05/17/2018,Politicians,@RandPaul,There is a point which debt is too cumbersome...We have a national debt of $21 trillion dollars. Currently the debt… https://t.co/8h1nRlKUYC +05/17/2018,Politicians,@RandPaul,"Right now, U.S. Senator Rand Paul (R-KY), chairman of the Federal Spending Oversight and Emergency Management (FSO)… https://t.co/tfCa5lRQFQ" +05/16/2018,Politicians,@RandPaul,Your Senator should be voting to balance the budget! This is a way to do it! +05/16/2018,Politicians,@RandPaul,"This is a litmus test for all Republicans! You either vote for fiscal responsibility and a balanced budget, or you… https://t.co/QHfHNtQPCi" +05/16/2018,Politicians,@RandPaul,RT @KelleyAshbyPaul: Enjoyed meeting @RandPaul’s summer intern class! https://t.co/Sd3ui4c2vb +05/16/2018,Politicians,@RandPaul,"This budget vote will be a litmus test for Republicans who claim to be conservative, but are only too happy to grow… https://t.co/EsdydOqQEu" +05/16/2018,Politicians,@RandPaul,"RT @club4growth: Club for Growth urges a ""YES"" vote on @RandPaul's ""Penny Plan"" balanced budget. Look for a key vote alert soon." +05/15/2018,Politicians,@RandPaul,"Earlier today, I sent the @CIA a letter inquiring about Ms. Haspel’s involvement or coordination in possible survei… https://t.co/jhYYpSSLaq" +05/15/2018,Politicians,@RandPaul,RT @CNNSitRoom: Senator @RandPaul: I’m hoping North Korea’s warnings against military drills are a “temporary setback” but “I’m still optim… +05/14/2018,Politicians,@RandPaul,Why Isn’t Gina Haspel Coming Clean About Torture? https://t.co/SLA1UOD68z +05/11/2018,Politicians,@RandPaul,"It’s past time we leave Afghanistan and instead focus on US infrastructure. +https://t.co/TpGBzhcQV7" +05/11/2018,Politicians,@RandPaul,"I stand with @GovMattBevin in cutting regulations, lowering taxes and bringing more jobs to Kentucky! https://t.co/rOcgdq2suG" +05/11/2018,Politicians,@RandPaul,Great to be with @GovMattBevin and @SteveCase in Louisville. Kentucky is open for business and investments! https://t.co/ZiGgSsIIh3 +05/09/2018,Politicians,@RandPaul,Live at 2:30PM: https://t.co/a8xrgmy23h Afghanistan in Review: Oversight of U.S. Spending in Afghanistan. Examining… https://t.co/YGx1ycWZ6w +05/09/2018,Politicians,@RandPaul,Congratulations to @MorriseyWV on his well deserved victory in the WV senate primary tonight. +05/08/2018,Politicians,@RandPaul,RT @McConnellPress: Bipartisan support is growing for the #HempFarmingAct. Joining @SenateMajLdr @RonWyden @SenJeffMerkley @RandPaul so far… +05/08/2018,Politicians,@RandPaul,Who would Jesus torture? Very thoughtful article from @amconmag. https://t.co/Gv3b5da7vj +05/08/2018,Politicians,@RandPaul,"Did Haspel send people to be tortured in Syria? Egypt? +""The most common destinations for rendered suspects are Egy… https://t.co/ZIORhPbgzP" +05/07/2018,Politicians,@RandPaul,The Founders left the power to make war in the legislature on purpose and with good reason. They recognized that th… https://t.co/NijVFxkJFd +05/07/2018,Politicians,@RandPaul,Watch this amazing story and wonderful kid. Great way to start the week. #MondayMotivation https://t.co/Bf9STrHjGN +05/04/2018,Politicians,@RandPaul,"RT @JoshJamesWUKY: .@RandPaul visits DV8 Kitchen in Lexington to meet with the owner and employees, and “learn more about their efforts to…" +05/04/2018,Politicians,@RandPaul,RT @GeorgetownJLPP: Watch incoming @GeorgetownJLPP Administrative Editor and @GtownFedSoc co-President Ryan McNulty give a Lifetime Service… +05/04/2018,Politicians,@RandPaul,"Visited @DV8Kitchen this morning in Lexington, KY. Always excited to highlight a great business focused on giving s… https://t.co/9oRRgm7Knj" +05/03/2018,Politicians,@RandPaul,"Had a great meeting with Marathon Marine in Cattletsburg, KY to talk about their priorities, Kentucky’s waterways,… https://t.co/Xo14tikvo8" +05/03/2018,Politicians,@RandPaul,"In an economic development meeting in Pikeville today, I discussed with local leaders how to bring more business to… https://t.co/nWr7DpkYSc" +05/03/2018,Politicians,@RandPaul,My wife and I love this Celtic prayer. She wanted to share it with you all for #NationalDayOfPrayer. It reminds her… https://t.co/iWgmXXIc66 +05/03/2018,Politicians,@RandPaul,"Starting the day in Pikeville, KY on the beautiful University of Pikeville campus, where Dr. Akers, the dean of the… https://t.co/cqTBq3fHlr" +05/02/2018,Politicians,@RandPaul,A great day to be in Western Kentucky! Thanks to the Owensboro Rotary Club for inviting me back to speak and give a… https://t.co/mAtIIzi8wE +05/02/2018,Politicians,@RandPaul,"We are $20 trillion in debt and counting. Our nation’s politicians are addicted to spending, and they need to be pu… https://t.co/MmPfpSngoS" +05/02/2018,Politicians,@RandPaul,Rand Paul to force Senate vote on budget-slashing bill https://t.co/Xm2ffjj5oi +05/02/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul: “I think there’s enough waste to cut 1% of it and make government more efficient.” #ampFW + +We agree! H…" +04/28/2018,Politicians,@RandPaul,RT @RepThomasMassie: 93 to 1. That was the vote to confirm James Comey as the FBI Director in 2013. Thank you @RandPaul. +04/28/2018,Politicians,@RandPaul,"Pakistani doctor jailed for helping find Bin Laden faces more trouble, moved to higher-security prison https://t.co/dQ4Yk1xq3W" +04/27/2018,Politicians,@RandPaul,RT @TNGOP: Thank you @gopnashville and @RandPaul for a great event! #TNGOP https://t.co/3gEjMYspRA +04/26/2018,Politicians,@RandPaul,"Great article from a lover of liberty! @Judgenap +https://t.co/XUrbvNOCKj" +04/26/2018,Politicians,@RandPaul,"#ThrowbackThursday ""We think we can just blow up Gaddafi and then all of a sudden Thomas Jefferson will get elected… https://t.co/aRP2KPrx3b" +04/26/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I sincerely am trying to end these wars. I'm trying to get them over - and I'll do what it takes."" https://t.co/7…" +04/26/2018,Politicians,@RandPaul,"This week the U.S. Senate Health, Education, Labor and Pensions (HELP) Committee passed my amendment to the Opioid… https://t.co/KNxnnhczXE" +04/26/2018,Politicians,@RandPaul,RT @AutumnDawnPrice: Senate Committee Advances .@RandPaul’s Bill To Fight The Opioid Crisis. https://t.co/W3K1D6mrWs via @dailycaller +04/25/2018,Politicians,@RandPaul,"Horrific report. ""At least 20 people including the bride were killed when an air strike by the Saudi-led coalition… https://t.co/A24kDW8mJx" +04/25/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I sincerely am trying to end these wars. I'm trying to get them over - and I'll do what it takes."" https://t.co/8…" +04/25/2018,Politicians,@RandPaul,RT @kilmeade: Tune into #thebriankilmeadeshow now to hear @MonicaCrowley interview Sen @RandPaul https://t.co/veWu8N7dzw 18664087669 https:… +04/25/2018,Politicians,@RandPaul,"Joining @BillHemmer shortly on @FoxNews, tune in! We’ll be discussing @realDonaldTrump’s desire to get out of Syria!" +04/25/2018,Politicians,@RandPaul,We have made considerable progress to ensure that more Americans struggling with opioid abuse can receive treatment… https://t.co/4SI09Lxr5a +04/24/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul: ""People are going to be surprised over the next year or two that I think there will be some ending of some of…" +04/24/2018,Politicians,@RandPaul,"Some great points! Trump should follow his instincts, de-escalate in the Middle East and pivot to great powers https://t.co/e6QQ4ZAqUh" +04/23/2018,Politicians,@RandPaul,Having received assurances from President Trump and Director Pompeo that he agrees with the President on these impo… https://t.co/Qv9yC8okNd +04/23/2018,Politicians,@RandPaul,"President Trump believes that Iraq was a mistake, that regime change has destabilized the region, and that we must… https://t.co/7nDgyrUYnC" +04/23/2018,Politicians,@RandPaul,After calling continuously for weeks for Director Pompeo to support President Trump’s belief that the Iraq war was… https://t.co/YyXhH8dgVF +04/23/2018,Politicians,@RandPaul,"I just finished speaking to @realDonaldTrump, after speaking to him several times today. I also met with and spoke to Director Pompeo." +04/23/2018,Politicians,@RandPaul,I had a great time seeing everyone and speaking at the Wayne County Reagan Dinner on Friday night. Two students rec… https://t.co/KKoDiFOxJA +04/23/2018,Politicians,@RandPaul,ICYMI I introduced my own “Penny Plan” federal budget that will balance within five years. Read more here:… https://t.co/c2V47uBgo8 +04/23/2018,Politicians,@RandPaul,I take spending and balanced budgets seriously. I’ve never voted for a budget that didn’t balance. Since it appears… https://t.co/kBbitHtiLE +04/20/2018,Politicians,@RandPaul,Putting forward a plan for Congress to balance the budget https://t.co/qy8jgZEKfZ +04/19/2018,Politicians,@RandPaul,"I ran for office to put a stop to Washington’s out-of-control spending! Today, I introduced my ""Penny Plan"" federa… https://t.co/x4oJR5K013" +04/18/2018,Politicians,@RandPaul,Join me today at 3:30pm eastern for a press conference to discuss my plan to end Washington’s out-of-control spendi… https://t.co/7gXmID41k2 +04/17/2018,Politicians,@RandPaul,"Today, the U.S. Senate Foreign Relations Committee held a hearing on our policy in Yemen. I had a few things to sa… https://t.co/5kj1TYfa04" +04/17/2018,Politicians,@RandPaul,"This year on #TaxDay, I say let’s pick up the fight again. Let’s keep fighting for smaller, constitutional governme… https://t.co/AMJrZ3oIRJ" +04/17/2018,Politicians,@RandPaul,Joining @AmericaNewsroom in just a few minutes. Tune in! +04/17/2018,Politicians,@RandPaul,"We can and must fight against terrorism when it rears its ugly head. We can do that in a smarter, constitutional wa… https://t.co/ieRAFwY3Sk" +04/16/2018,Politicians,@RandPaul,RT @FedSoc: “The antithesis of liberty is government power. Liberty is worth the fight.” @SenRandPauI https://t.co/oCrWMkxMAj #FedSocEvent… +04/16/2018,Politicians,@RandPaul,"RT @GeorgetownLaw: TODAY at 6 p.m., @GtownFedSoc will present its Lifetime Service Award to Sen. @RandPaul. Watch it live: https://t.co/pii…" +04/16/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul's bill to balance the budget over five years will serve as a great litmus test to discover, once and fo…" +04/15/2018,Politicians,@RandPaul,"Joined OZY today to guest curate their Presidential Daily Brief! +https://t.co/zebHg7NO1W" +04/15/2018,Politicians,@RandPaul,RT @justinamash: Witness the hypocrisy that our two-party system breeds: Check out these similar letters warning the president about commen… +04/12/2018,Politicians,@RandPaul,RT @AnnCoulter: MUST WATCH VIDEO! Sen. Rand Paul was magnificent. https://t.co/hWM9fMzwXI +04/12/2018,Politicians,@RandPaul,Joining @TeamCavuto on @FoxNews at 4:05pm ET. Tune in! +04/12/2018,Politicians,@RandPaul,"RT @FoxNewsInsider: 'It's Disputed by Our Founding Fathers': @RandPaul Challenges Pompeo on Syria, Military Deployments https://t.co/cgE2e0…" +04/12/2018,Politicians,@RandPaul,ICYMI today I joined the confirmation hearing for Mike Pompeo to find out where he stands on important issues and v… https://t.co/iUI7nM3bIg +04/12/2018,Politicians,@RandPaul,"""I worry you're going to be in too much disagreement with the President. I agree we should get out of Afghanistan.""… https://t.co/YVS8OoJ5Nc" +04/12/2018,Politicians,@RandPaul,Also “defending international human rights” - what happened to “America First” +04/12/2018,Politicians,@RandPaul,Just now at the hearing Rubio/Pompeo (and Woodrow Wilson) agree that “promoting democracy” - aka nationbuilding and… https://t.co/Eqdog939Ss +04/12/2018,Politicians,@RandPaul,Join me for the Foreign Relations Committee confirmation hearing at 10:15am est. https://t.co/XkBpBmNUb1 +04/12/2018,Politicians,@RandPaul,"I’m going to do it, and I’m going to force a vote on the floor of the U.S. Senate, and we’ll see who actually reall… https://t.co/vSnFnZbbcQ" +04/12/2018,Politicians,@RandPaul,RT @HARRISFAULKNER: .@RandPaul told me about the letter he received re: Top Secret Clearances and that adulterous couple of FBI agents accu… +04/11/2018,Politicians,@RandPaul,BREAKING: FBI admits that @realDonaldTrump haters still have Top Secret security clearances which allows them to ac… https://t.co/iyaIh6BHdW +04/11/2018,Politicians,@RandPaul,I wonder whose terrible idea it was to threaten Russia... https://t.co/tKUr31Rq0m +04/11/2018,Politicians,@RandPaul,"Promising war by tweet, insults not only the Constitution but every soldier who puts their life on the line." +04/11/2018,Politicians,@RandPaul,I will introduce a budget that balances within five years that includes spending cuts across the board reforms enti… https://t.co/JOClvmBSEU +04/10/2018,Politicians,@RandPaul,"Tune in now, I’m about to join @AmericaNewsroom" +04/06/2018,Politicians,@RandPaul,RT @Mediaite: Journal of American Medicine: Legalizing Marijuana Could Help Solve the Opioid Crisis https://t.co/JB3neOBeRD https://t.co/Om… +04/05/2018,Politicians,@RandPaul,Honored to have the LIBERTY to introduce Robin Harper Morris. https://t.co/vU6YHK6lJy +04/05/2018,Politicians,@RandPaul,.@EPAScottPruitt is likely the bravest and most conservative member of Trump's cabinet. We need him to help… https://t.co/OOqyszyso1 +04/04/2018,Politicians,@RandPaul,THIS is why it matters if you pick a hawk for SoS. THIS is why it matters if an unreconstructed neocon who still th… https://t.co/Eh4acn5ios +04/04/2018,Politicians,@RandPaul,"RT @WEHTWTVWlocal: Sen. Paul discusses state of workforce in Ohio Co. +https://t.co/uTUsCpfcLE" +04/03/2018,Politicians,@RandPaul,"I’m always grateful for the protection of Kentucky’s law enforcement at events like the one I held in Hartford, KY… https://t.co/ajds5MPSpI" +04/03/2018,Politicians,@RandPaul,RT @foxandfriends: .@RandPaul and his wife presented keys to a new home for wounded veteran through @HelpingAHero https://t.co/ZhxkjStjoH +04/03/2018,Politicians,@RandPaul,"Joining @foxandfriends from Bowling Green, KY in a few minutes - be sure to tune in! https://t.co/AmsEMHh596" +04/03/2018,Politicians,@RandPaul,"Americans want cheaper, generic drugs — time for Congress to deliver https://t.co/7UuSIoldEE" +03/30/2018,Politicians,@RandPaul,Likely no one other than Dick Cheney has been more consistently and unapologetically wrong about foreign policy tha… https://t.co/W3a3rUkIUA +03/30/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul rips omnibus: Maybe 'holding hands' with Democrats not such a great idea #ampFW +https://t.co/Xt0IIn2jIV" +03/29/2018,Politicians,@RandPaul,RT @bgdnphoto: #onassignment w/@RandPaul at Franklin Rotary. @joeimel https://t.co/YEsgLQlMxG +03/29/2018,Politicians,@RandPaul,"Hearing from Scottsville, KY business and community leaders about the issues in Allen County, and asking for sugges… https://t.co/nLb8M1YLAp" +03/29/2018,Politicians,@RandPaul,RT @AutumnLuntzel: Spending my day with Senator Rand Paul. Hear from him tonight on 13 News at 5 and 6! https://t.co/KjA5OJii0i +03/28/2018,Politicians,@RandPaul,Former CIA Chief Brennan used foreigners to spy on President Trump. Why would any Republican vote for Brennan acol… https://t.co/FlqCloSGW0 +06/30/2018,Politicians,@GovMikeHuckabee,"Americans deeply divided on immigration, taxes, abortion, and more, but surely we are all UNITED and agree that new… https://t.co/gheG2vrY5h" +06/30/2018,Politicians,@GovMikeHuckabee,"Folks, the Dems aren’t so dumb as to want to abolish ICE and supporting no border nonsense. They just support aboli… https://t.co/pqFzRFZKLL" +06/30/2018,Politicians,@GovMikeHuckabee,2nite on “HUCKABEE” on https://t.co/OXDC775SgR join us for our show 8&11pm et/7&10ct from Branson MO as we celebrat… https://t.co/PgmEvXjdNv +06/29/2018,Politicians,@GovMikeHuckabee,"After Chris Pratt stunned Hollywood by encouraging young people to be positive, work hard, pray, defend the weak an… https://t.co/oQnTubvF3W" +06/29/2018,Politicians,@GovMikeHuckabee,"Here's a better idea. Abolish Gillebrand's Senate career by electing her opponent Chele Farley in November. ""Star… https://t.co/3PaiH4QxDj" +06/29/2018,Politicians,@GovMikeHuckabee,"A big salute to the staff of the Gazette, who despite being traumatized and losing staffers to death and injury, vo… https://t.co/54zfXWto7a" +06/29/2018,Politicians,@GovMikeHuckabee,Every night @seanhannity has great guests on @FoxNews but he needs balance with lesser lights so I will be on 2nite… https://t.co/6mFhfpDbq0 +06/29/2018,Politicians,@GovMikeHuckabee,"In public hearing, Rosenstein exhibits bizarre behavior and refuses to answer questions https://t.co/CpJU7024k1 https://t.co/3PXSv1YtDT" +06/29/2018,Politicians,@GovMikeHuckabee,"I'm worried. My 1 yr old grandson is at my house. He does nothing for himself, pays for nothing, cries when he does… https://t.co/fA6cfqlmdJ" +06/29/2018,Politicians,@GovMikeHuckabee,"This guy is brilliant! You should watch. Next to Popeye cartoons, there is nothing on TV like this guy. https://t.co/qVwsrFHMBb" +06/29/2018,Politicians,@GovMikeHuckabee,So glad @realDonaldTrump will appoint next SCOTUS Justice but it’s causing Dems to melt faster than Wicked Witch of West at a water park. +06/29/2018,Politicians,@GovMikeHuckabee,Fri I’ll be on @AmericaNewsroom on @FoxNews at 9am et and @Varneyco on @FoxBusiness at 945 et. Having my toes done… https://t.co/bV7xkkz70i +06/29/2018,Politicians,@GovMikeHuckabee,Democrats are going through the stages of grief all at once as they realize there is nothing they can do to prevent… https://t.co/jGCp7CvEQ1 +06/29/2018,Politicians,@GovMikeHuckabee,Only excuse for missing was watching Razorbacks in College World Series...but here's some of what you missed. https://t.co/MqVHyZND5Z +06/28/2018,Politicians,@GovMikeHuckabee,"Will be on w/ @marthamaccallum on @TheStoryFNC during 7pmET hour. Martha's show is smart, insightful, and refreshi… https://t.co/b9QCHca8uv" +06/28/2018,Politicians,@GovMikeHuckabee,Wouldn’t you know it? I go to all the trouble of suggesting 20 questions for the House Committees to ask FBI agent… https://t.co/aGsYy6xtnR +06/28/2018,Politicians,@GovMikeHuckabee,"It’s been said that all the Democrats had to do to win in November was not act crazy, and they’re failing even at t… https://t.co/TWcHtuL81u" +06/27/2018,Politicians,@GovMikeHuckabee,"Wednesday was the last day of the Supreme Court’s session, and if you thought the Democrats were screaming and melt… https://t.co/nbo8nGLYnK" +06/27/2018,Politicians,@GovMikeHuckabee,I'll be on @EveningEdit at 5pm ET today on @FoxBusiness and I'll announce whether I'll accept @realDonaldTrump offe… https://t.co/0WTpplmvJv +06/27/2018,Politicians,@GovMikeHuckabee,President Trump texted that Strzok is a “fraud” and that he should be questioned live on TV. We’ll have to wait a… https://t.co/xvd6ZNlg7o +06/27/2018,Politicians,@GovMikeHuckabee,"Wake up early, America! I'll be w/ @MariaBartiromo on @FoxBusiness at 8am ET Wednesday to explain what Maxine Wate… https://t.co/wULaGPiceX" +06/27/2018,Politicians,@GovMikeHuckabee,Difference btwn GOP & Dems? GOP sees every day as the 4th of July; Dems see every day as Halloween. Will voters w… https://t.co/3hJsBVLquP +06/27/2018,Politicians,@GovMikeHuckabee,Watch @IngrahamAngle on @FoxNews 2nite at 10pmET. Topic? Fishing trip for Red Snapper with grandson in Gulf of Mex… https://t.co/ZKctKbVym5 +06/26/2018,Politicians,@GovMikeHuckabee,"Read the Evening Edition, because doctors say it does wonders for your health: https://t.co/De35bCYqZ4 https://t.co/dQxK3hEoOL" +06/26/2018,Politicians,@GovMikeHuckabee,"Weeks of shameful, misleading and overheated rhetoric and media coverage comparing US detention centers for illegal… https://t.co/SE4NmiqR9y" +06/26/2018,Politicians,@GovMikeHuckabee,"Today, SCOTUS handed down a major ruling and ended a year-and-a-half of pointless, dangerous and indefensible meddl… https://t.co/e9GdftD5uU" +06/26/2018,Politicians,@GovMikeHuckabee,"“It’ll eventually come out. You cannot hide something this corrupt this long.” +So said FOX News legal analyst Greg… https://t.co/xirATdRbG9" +06/26/2018,Politicians,@GovMikeHuckabee,Don’t tell anyone but ⁦@ckchumley⁩ does something poor ol Joe Scarborough didn’t do. She used her brain. Libs and… https://t.co/fjEn1qUJvj +06/26/2018,Politicians,@GovMikeHuckabee,Kipps Restaurant in S Wales NY looks like my kind of place! https://t.co/BM1p2O2yjH +06/26/2018,Politicians,@GovMikeHuckabee,On w/ @ShannonBream on @FoxNews at 11pmET 2nite. Was going to stop for dinner on way but was asked to leave the ga… https://t.co/nDnW1Pq5bH +06/25/2018,Politicians,@GovMikeHuckabee,I want to respond to the idiotic claims by the left that conservatives “have it coming” because this is just like t… https://t.co/0kXH9xpcBT +06/25/2018,Politicians,@GovMikeHuckabee,"Strzok to testify: what if he pulls a ""Bill Clinton""? https://t.co/gtNRYGGw8P https://t.co/GKVKBXOr6A" +06/25/2018,Politicians,@GovMikeHuckabee,I don't understand rejecting the biz of ppl you disagree with. I want as much biz as I can get from libs--the $$ th… https://t.co/ErAS1fcs6X +06/25/2018,Politicians,@GovMikeHuckabee,Insightful and thoughtful analysis of why the left will regret it's condescending and smug crusade against those it… https://t.co/FloA2ujzsW +06/25/2018,Politicians,@GovMikeHuckabee,Thanks Scott. Hearing from ppl who actually know me is way better than criticism from Fake News and those who pret… https://t.co/ZHrye9nfZp +06/24/2018,Politicians,@GovMikeHuckabee,"Here you go! You want to defend gangs who rape, murder, and mutilate little children too? Repeat--a criminal gang… https://t.co/FrIc33u4Zu" +06/24/2018,Politicians,@GovMikeHuckabee,"Thanks, Franklin. You're right about @PressSec . She IS a nice lady. Of course I'm as objective about her as the… https://t.co/v6vegugPSB" +06/24/2018,Politicians,@GovMikeHuckabee,Absurd! To see race in everything IS racist. Nothing about race but about a vile violent criminal gang. Please u… https://t.co/KLydNPA2pR +06/23/2018,Politicians,@GovMikeHuckabee,"Yes @ktumulty because MS-13 is not a race but an illegal gang who rapes, murders, and mutilates children as sport.… https://t.co/5klJXnXqtN" +06/23/2018,Politicians,@GovMikeHuckabee,"RT @HuckabeeOnTBN: TONIGHT: the President of the United States, @realDonaldTrump, sits down to discuss his thoughts about international rel…" +06/23/2018,Politicians,@GovMikeHuckabee,Bigotry. On the menu at Red Hen Restaurant in Lexington VA. Or you can ask for the “Hate Plate”. And appetizers ar… https://t.co/ed8YPlRcJC +06/23/2018,Politicians,@GovMikeHuckabee,ICYMI but truly regret it! https://t.co/XYjaTvL3wu +06/23/2018,Politicians,@GovMikeHuckabee,"Exclusive interview with @realDonaldTrump 2nite on https://t.co/OXDC775SgR 8/11pm et/ 7/10 ct so watch, record, or… https://t.co/7NPkjLCWct" +06/23/2018,Politicians,@GovMikeHuckabee,Nancy Pelosi introduces her campaign committee for the take back of the House. https://t.co/yKDhkVubck +06/23/2018,Politicians,@GovMikeHuckabee,Get up EARLY on Sat b/c I'm on @foxandfriends at 7:30am ET on @FoxNews and will preview my exclusive intvu w/… https://t.co/X8noa0Rd8D +06/23/2018,Politicians,@GovMikeHuckabee,"OK, time-out from all things political. This is one of the coolest videos I've ever watched. Headed to Liverpool… https://t.co/WImoiedwsv" +06/23/2018,Politicians,@GovMikeHuckabee,"Thanks, @brianstelter for the shout out. I hope you and the rest of the world watches intvu w/ @realDonaldTrump S… https://t.co/KIJX0sn7j5" +06/22/2018,Politicians,@GovMikeHuckabee,For the fact deprived Media who has descended into a new level of shame here are some truths they probably will nev… https://t.co/K4rEcx6YyU +06/22/2018,Politicians,@GovMikeHuckabee,Even after the release of a 568-page report documenting example after example of the stunning partisanship infectin… https://t.co/x79sIUhjyB +06/22/2018,Politicians,@GovMikeHuckabee,Cancel your Sat nite plans or set DVR for Sat/Sun 8&11 ET to watch @HuckabeeOnTBN and exclusive intvu w/… https://t.co/yAyyd3nuLR +06/22/2018,Politicians,@GovMikeHuckabee,Don't miss @Varneyco on @FoxBusiness at 9amET and @AmericaNewsroom on @FoxNews at 9:30amET as I will be wearing… https://t.co/9nCFZG3It9 +06/22/2018,Politicians,@GovMikeHuckabee,For those still contending that “there’s nothing to see here” in the investigation of the FBI’s handling of the Cli… https://t.co/jGxbKH4nls +06/22/2018,Politicians,@GovMikeHuckabee,I wrestled with whether to comment on this or not because I didn’t want to call more attention to the sick comments… https://t.co/n8UpTOlRZo +06/21/2018,Politicians,@GovMikeHuckabee,The news that an Islamic reform group had received an apology and a nearly $3.4 million settlement from the Souther… https://t.co/aj8USOpkaM +06/21/2018,Politicians,@GovMikeHuckabee,SC Governor race runoff coming up and I appreciate @henrymcmaster for his consistent fight for the sanctity of life… https://t.co/mKvU0RBRAJ +06/21/2018,Politicians,@GovMikeHuckabee,I hope you will sign up now for the Evening Edition. This email delivers Monday - Saturday from me and might just b… https://t.co/k1oX6LcbVl +06/21/2018,Politicians,@GovMikeHuckabee,Hamas is a terrorist organization. They lie. They kill innocent people and aim rockets at babies. They pretend the… https://t.co/3fUzB99ugq +06/21/2018,Politicians,@GovMikeHuckabee,ALERT! I'll be on @EveningEdit w/ Liz McDonald on @FoxBusiness and will play secretly recorded audio from… https://t.co/O0yjG5wPxv +06/21/2018,Politicians,@GovMikeHuckabee,"Hillary intended to break law, FBI intended to absolve her: https://t.co/3Qqh6RUJHF https://t.co/spkA9wr2aX" +06/21/2018,Politicians,@GovMikeHuckabee,Is there any way Jeff Flake would just go home NOW? His petulance and pride seems more important to him than doing… https://t.co/F93FNpX5HP +06/21/2018,Politicians,@GovMikeHuckabee,"My exclusive interview w/ @realDonaldTrump this weekend. We share recipes, talk sports, show each other our surgic… https://t.co/KAWIbkWqx2" +06/20/2018,Politicians,@GovMikeHuckabee,"Breaking news from ABC! Unemployment numbers UP again...well, at least for some sad sacks at ABC who wrote and bro… https://t.co/PcpUdq2JBd" +06/20/2018,Politicians,@GovMikeHuckabee,Relax America! You're safe now! TSA in Little Rock just felt me up real good and gave me as complete a going over… https://t.co/kDDomrw59s +06/20/2018,Politicians,@GovMikeHuckabee,"As every parent knows, the cry of a child evokes a Pavlovian response that will grab your heartstrings and make you… https://t.co/5rKjMcHjp2" +06/20/2018,Politicians,@GovMikeHuckabee,Let critics call this US withdrawal from one UN council an “outrage” if they want. I’d call it “a good start.”… https://t.co/2m0JEHR33t +06/20/2018,Politicians,@GovMikeHuckabee,Dems and the media couldn’t have planned it better. They kept Tuesday’s news focused hysterically on immigration –… https://t.co/6VbyDUZi80 +06/20/2018,Politicians,@GovMikeHuckabee,Sit. Down. Brace yourself! I am applauding Democrat party in KS for disavowing AG candidate who displayed disgusti… https://t.co/jbPJBuT4zF +06/20/2018,Politicians,@GovMikeHuckabee,I've collected my lists of questions for IG Horowitz and Robert Mueller in one post. Please take a look and let me… https://t.co/T48H8pd3nJ +06/19/2018,Politicians,@GovMikeHuckabee,"With Peter Strzok in the news, I thought it would be helpful for me to pull together my commentaries directly relat… https://t.co/ozZxWjZ1eb" +06/19/2018,Politicians,@GovMikeHuckabee,My newsletter is out! Read it here: https://t.co/5T8RvDtgXJ https://t.co/ONWmG5CNUP +06/19/2018,Politicians,@GovMikeHuckabee,A response to Laura Bush: https://t.co/28wC2009c6 https://t.co/e8U4G014Cn +06/19/2018,Politicians,@GovMikeHuckabee,"I have great respect for Laura Bush, but the attached article spells out why she was terribly wrong in comparing il… https://t.co/0Z1HZEbOZQ" +06/19/2018,Politicians,@GovMikeHuckabee,"Note to Horowitz: ""Past department practices"" could be rotten, too: https://t.co/5KWF73YJkW https://t.co/V4jjQwAT7j" +06/19/2018,Politicians,@GovMikeHuckabee,Good thing media and Dems have been consistent in their concern of immigrant kids. Right? Check out Twitter thread… https://t.co/tM1xfYRfnf +06/18/2018,Politicians,@GovMikeHuckabee,My Evening Edition is out and you don't want to miss it: https://t.co/naRA2AEZ0j https://t.co/YrMHG91cNL +06/18/2018,Politicians,@GovMikeHuckabee,I’ve interviewed Rob Reiner and think he’s a terrific film director. And while he and I certainly don’t agree on m… https://t.co/tkyZ517O05 +06/18/2018,Politicians,@GovMikeHuckabee,Do you agree with President Trump's message to Senate Democrats that they need to come on board and help pass legis… https://t.co/u6PmWCyROF +06/18/2018,Politicians,@GovMikeHuckabee,My newsletter is out: Today's Commentary includes: 20 Questions for IG Michael Horowitz-- a short update about Pet… https://t.co/8A7XGsJrtT +06/18/2018,Politicians,@GovMikeHuckabee,Check out this post via @HearMeOutApp https://t.co/aoKmZ2Z05B +06/18/2018,Politicians,@GovMikeHuckabee,ICYMI I explain how the media is like a swarm of green flies on my show @TBN this past weekend. Not for the faint… https://t.co/nzaD7vSxZO +06/18/2018,Politicians,@GovMikeHuckabee,"Now that DOJ Inspector General Michael Horowitz is about to sit for questioning by congressional committees, I thou… https://t.co/Oc8yjwAjOo" +06/18/2018,Politicians,@GovMikeHuckabee,In DC doing interviews for @TBN Show. Wonder Woman sequel being filmed near my hotel yesterday. One look at me and… https://t.co/08fFbeg2E1 +06/18/2018,Politicians,@GovMikeHuckabee,Never Trumpers at NRO play Sgt Joe Friday with a “just the facts” coverage of emotionally charged immigration issu… https://t.co/ngw8iTAqBP +06/18/2018,Politicians,@GovMikeHuckabee,I'm a big fan of @AGAlanWilson of SC who as Atty General has been a strong leader for protecting Constitutional rul… https://t.co/rW9NCQYxxA +06/18/2018,Politicians,@GovMikeHuckabee,Griffin's irrational screech might have once caused a reaction from those of us who support @realDonaldTrump and re… https://t.co/SvFsvcWWJo +06/17/2018,Politicians,@GovMikeHuckabee,2nite on @TBN Diamond and Silk and Journey’s Jonathan Cain among guests for @HuckabeeOnTBN 8Et/7ct. https://t.co/aUJuTviTBI +06/17/2018,Politicians,@GovMikeHuckabee,"Remembering my Dad today. He died in 1996. Didn’t finish high school, worked 2 jobs and never made much money but… https://t.co/6eFSz1NmW1" +06/17/2018,Politicians,@GovMikeHuckabee,"I don't like immigrant children being temporarily separated from parents, but where is outrage over PERMANENT separ… https://t.co/ceuts2gs39" +06/17/2018,Politicians,@GovMikeHuckabee,I'm up late 2nite planning and preparing for an unplanned and unscheduled impromptu surprise appearance on… https://t.co/U8XLooGnKU +06/17/2018,Politicians,@GovMikeHuckabee,This is now required viewing for all employees at the State Department! https://t.co/YPuesQQaXv +06/17/2018,Politicians,@GovMikeHuckabee,"Tonight, I went to Watters World. https://t.co/kJ5JzduuT9" +06/16/2018,Politicians,@GovMikeHuckabee,A story that should bring a tear to eyes of EVERY American. Everyday men and women put it all on the line for rest… https://t.co/OmZHBBw4Pe +06/16/2018,Politicians,@GovMikeHuckabee,Broadway theaters will be dark 2nite because Robert De Niro urges ppl to stay home and watch @DiamondandSilk on HU… https://t.co/k2edlu2S76 +06/16/2018,Politicians,@GovMikeHuckabee,Inspector General Michael Horowitz may have declined to confirm the cause-and-effect relationship between stunning… https://t.co/AYsoB6WEo0 +06/16/2018,Politicians,@GovMikeHuckabee,Rand Paul nearly murdered and guy gets 30 days. Manafort goes to slammer. Meantime Peter Strzok still getting FBI p… https://t.co/tMU4bWPZDK +06/16/2018,Politicians,@GovMikeHuckabee,Stressed? Too much rancor? Afraid of being Manafort’s roommate or mowing Rand Paul’s lawn and getting sucker punc… https://t.co/yFub2POBIz +06/16/2018,Politicians,@GovMikeHuckabee,Cong Joe Wilson joins Diamond & Silk and @NBCTheVoice Season 7 winner Craig Wayne Boyd and much more on… https://t.co/4redB0i8es +06/15/2018,Politicians,@GovMikeHuckabee,"Thursday, the NY AG filed a lawsuit against President Trump’s charity foundation, claiming that it illegally used m… https://t.co/HDwURdUrP6" +06/15/2018,Politicians,@GovMikeHuckabee,This report is so long that it’s going to take a while to work through it –- but we quickly see it does acknowledge… https://t.co/s2Ul5FJeVo +06/15/2018,Politicians,@GovMikeHuckabee,Oh crap! Now I know why they were handing out free boxes of Honey Smacks in the White House press room! https://t.co/XxugjDirBr +06/15/2018,Politicians,@GovMikeHuckabee,Breaking wind from CNN! @realDonaldTrump announces new tariffs on burgers sold at INTERNATIONAL House of Burgers… https://t.co/X4dz0lGN11 +06/15/2018,Politicians,@GovMikeHuckabee,Get this straight-FBI/DOJ employees take items of value from reporters in exchange for leaked info. Isn’t that leg… https://t.co/vgdEPIhPXw +06/14/2018,Politicians,@GovMikeHuckabee,I’m about to do something I don’t often do: I’m going to offer what I think is some good advice to the leadership o… https://t.co/dsCrYOLkY7 +06/14/2018,Politicians,@GovMikeHuckabee,"That pesky newsletter I write called the Evening Edition is out. I cover the 7-2 SCOTUS ruling, the IG report snow… https://t.co/j7sVV35BXw" +06/14/2018,Politicians,@GovMikeHuckabee,Great observation by my favorite Twitter-master @RealJamesWoods about @PressSec having to put up with obnoxious sho… https://t.co/Vefn9TnpEW +06/14/2018,Politicians,@GovMikeHuckabee,The next thing corrupt FBI official Peter Strzok should hear is “You have the right to remain silent...”. If this t… https://t.co/n6dmClSntX +06/14/2018,Politicians,@GovMikeHuckabee,"Last week’s jobless claims total was 218,000, which is 6,000 fewer than expected and the lowest in 44-1/2 years. H… https://t.co/mQ2W08EwAm" +06/14/2018,Politicians,@GovMikeHuckabee,I knew the anti-Trump elements in the media would never be able to give him any credit for his historic meeting wit… https://t.co/DuL5MRu20n +06/14/2018,Politicians,@GovMikeHuckabee,Stories like this always have a predictable template. “Alcohol was believed to have been involved?” Really???? N… https://t.co/eU4ZDywi0c +06/14/2018,Politicians,@GovMikeHuckabee,Genius Dem pepper sprays himself to demo dealing with school killers. Good thing he wasn’t proposing castrations f… https://t.co/gn10KQXeFq +06/14/2018,Politicians,@GovMikeHuckabee,No doubt the media is sad to recognize that @realDonaldTrump is celebrating his birthday in @WhiteHouse but will R… https://t.co/wZ3H1KTBf9 +06/14/2018,Politicians,@GovMikeHuckabee,The Summit already having profound impact. https://t.co/h7HONIUhOZ +06/14/2018,Politicians,@GovMikeHuckabee,"New study finds people of faith live four years longer than atheists. Actually, I believe they live an ETERNITY lo… https://t.co/4VyNVp6tkv" +06/13/2018,Politicians,@GovMikeHuckabee,Abortion Queen Cecile Richards says abortion safer than Tylenol. Rarely a person dies from reaction to painkillers… https://t.co/9VM8imWW6b +06/13/2018,Politicians,@GovMikeHuckabee,"While media attention has been focused on the astounding events unfolding quickly in Singapore, a longtime standoff… https://t.co/kMLZ098Xqv" +06/13/2018,Politicians,@GovMikeHuckabee,Will be on @LouDobbs on @FoxBusiness tonight during 7ET time. I think we are both fired up about Corker forgetting… https://t.co/qQlCVAaV61 +06/13/2018,Politicians,@GovMikeHuckabee,"Over the past few days, the predominant theme of my commentary has been “double standards.” As I sit and watch the… https://t.co/WSqG8gQuxw" +06/13/2018,Politicians,@GovMikeHuckabee,Here are a few basic truths to bear in mind when you're being bombarded with hysterical media coverage:… https://t.co/9FfoOdn6UJ +06/13/2018,Politicians,@GovMikeHuckabee,"If you’re tired of how the leftist excuses about the 2016 election are now repeated as if they’re “settled science,… https://t.co/zDhzDyrf2g" +06/13/2018,Politicians,@GovMikeHuckabee,"Outgoing (thank goodness!) Sen Corker just said GOP is like ""cult"" because of support of @realDonaldTrump but that'… https://t.co/xaaoWznRz7" +06/13/2018,Politicians,@GovMikeHuckabee,The media and leftists (same thing) are unhinged. Bill Maher wants economy to fail so @realDonaldTrump can be blame… https://t.co/iKesXCph9W +06/13/2018,Politicians,@GovMikeHuckabee,One of the more surreal sidelights to the startling and momentous events in Singapore was an interview given by ex-… https://t.co/AjgwHCqMIi +06/13/2018,Politicians,@GovMikeHuckabee,"On heels of NOKO summit, @realDonaldTrump just announced he will seek to negotiate with @IHOb to get them to change… https://t.co/HaeeMLBocf" +06/12/2018,Politicians,@GovMikeHuckabee,Sen Claire-Air McCaskill of MO has an RV with wings! But it’s the dishonesty about it that’s seems so shady. May… https://t.co/Tdcnt62EDI +06/12/2018,Politicians,@GovMikeHuckabee,I was anxiously awaiting the morning shows and headlines from the liberal media to see how they could possibly spin… https://t.co/sKfROtcxhm +06/12/2018,Politicians,@GovMikeHuckabee,"Billionaire George Soros is discovering that despite pouring many millions into American elections, voters are not… https://t.co/JJOLfM5Zsq" +06/12/2018,Politicians,@GovMikeHuckabee,"I’ve been spending some time catching up on reader comments --- you know, I do read them --- and wanted to respond… https://t.co/GoQgU3ubFf" +06/12/2018,Politicians,@GovMikeHuckabee,Bill Clinton's statement revealing and VERY troubling. Most of us believed that rape and sexual assault were ALWAY… https://t.co/B3rqZgTMAC +06/12/2018,Politicians,@GovMikeHuckabee,"Totally breaks my heart to hear this. Don't know Bode Miller other than by his incredible Olympic feats, but I am… https://t.co/UU1yzSoC1M" +06/12/2018,Politicians,@GovMikeHuckabee,"Rough translation of what Kim & his generals said after meeting: +Generals: Why did U sign the document before we… https://t.co/Leuz5F7eXX" +06/12/2018,Politicians,@GovMikeHuckabee,"Yes, there remains much work to be done, but can even his harshest critics give @POTUS credit for a historic step?… https://t.co/KQgiSSfZHn" +06/11/2018,Politicians,@GovMikeHuckabee,My thoughts on the today's 5-4 SCOTUS decision upholding the Ohio law for purging invalid voters from the voting ro… https://t.co/D87oguIUOy +06/11/2018,Politicians,@GovMikeHuckabee,I’ve had readers who haven’t kept up with what I’ve been writing or saying for the past 10 years or so accuse me of… https://t.co/HjlSAcqlE1 +06/11/2018,Politicians,@GovMikeHuckabee,"I just called Robert De Niro and told him that he's out of my ""circle of trust."" He cried like a 6 year old who di… https://t.co/0NhoRQYFSz" +06/11/2018,Politicians,@GovMikeHuckabee,Only thing sadder than De Niro's vile rant is that high-toned elite snobs at the event gave him a standing O. Were… https://t.co/PiUdyJ90wK +06/11/2018,Politicians,@GovMikeHuckabee,What does Kim Jong Un REALLY want from the summit? Gold? No. Groceries? No. GOLDEN ARCHES! He wants a McDonald's… https://t.co/cObCczbmom +06/11/2018,Politicians,@GovMikeHuckabee,"In Branson, MO for a couple of days taping my TBN show at Silver Dollar City. I love this place! Just ran into Ange… https://t.co/aoae1DyFtI" +06/10/2018,Politicians,@GovMikeHuckabee,Breaking wind from CNN! @realDonaldTrump announces new tariffs on fake eyebrows! https://t.co/LqPOkm625S +06/10/2018,Politicians,@GovMikeHuckabee,Dang hearing loss! @realDonaldTrump asked me to come to Singapore but I thought he said “sing some more” so now I… https://t.co/5rJrvucVYx +06/10/2018,Politicians,@GovMikeHuckabee,Watching the Trump-haters and media (but I repeat myself) faint because he stomps into G-7 like the Incredible Hulk… https://t.co/TnNlDcUe5z +06/09/2018,Politicians,@GovMikeHuckabee,"I'll be on @JudgeJeanine on @FoxNews at9pm ET, right after my show on @TBN at 8pm ET so you get a ""2nd blessing!""… https://t.co/WG8d8vZ1MG" +06/09/2018,Politicians,@GovMikeHuckabee,"@realDonaldTrump is doing what he promised by putting America first and the globalists in the media, GOP and Dem Pa… https://t.co/oEEbmGZQnY" +06/09/2018,Politicians,@GovMikeHuckabee,Jackie Green and Lauren Green McAfee discuss their book for women on @HuckabeeOnTBN 2nite. Refreshingly candid but… https://t.co/I6G15MgLfb +06/09/2018,Politicians,@GovMikeHuckabee,2nite don’t miss @HuckabeeOnTBN Michael Farris of @AllianceDefends talks SCOTUS cake case and Sen James Risch of ID… https://t.co/lthChA3B3g +06/08/2018,Politicians,@GovMikeHuckabee,On @HuckabeeOnTBN this week we talk NOKO w/ Sen James Risch; the SCOTUS cake decision w/ Michael Farris from… https://t.co/gWSqX8Wt3T +06/08/2018,Politicians,@GovMikeHuckabee,"Full story on DOJ ""Black Hole on Documents"" at https://t.co/2robSqR5YJ and YOU should subscribe to the daily and d… https://t.co/DXEnBGAN8O" +06/08/2018,Politicians,@GovMikeHuckabee,"Team of physicists, astronomers and mathematicians at MIT has completed a study of DOJ HQ-finds ""Black Hole for doc… https://t.co/GMHK8DdRCT" +06/08/2018,Politicians,@GovMikeHuckabee,Anthony Bourdain's suicide a sobering reminder of how fragile life is and that we never know what's going on inside… https://t.co/IdzKdA4hsh +06/08/2018,Politicians,@GovMikeHuckabee,Pen wars: The latest extravagant waste of taxpayer money by EPA Chief Scott Pruitt for Trump critics to be OUTRAGED… https://t.co/3yFtNX4Fgz +06/07/2018,Politicians,@GovMikeHuckabee,"Of the many groundless slanders that the left aims at…well, everyone not on the left...I let most of it roll off my… https://t.co/idflIgioVQ" +06/07/2018,Politicians,@GovMikeHuckabee,"Congrats to James Woods, the best Tweeter in the US and obviously a world class poker player! If you ever want to p… https://t.co/bxKepxqs0o" +06/07/2018,Politicians,@GovMikeHuckabee,I find this very offensive. Perhaps true but very offensive. I think I will demand an apology and for several peo… https://t.co/10bO5FZu5H +06/07/2018,Politicians,@GovMikeHuckabee,"Double Standards: As some conservative commentators noted, after eight months of the MeToo movement, prominent Holl… https://t.co/57pn3AAvSF" +06/07/2018,Politicians,@GovMikeHuckabee,"Will be on @scrowder on Louder with Crowder tonight! You will weep, laugh, scream and then sleep peacefully. https://t.co/AJtmvI2cjS" +06/07/2018,Politicians,@GovMikeHuckabee,Watch and be amazed...or amused depending on which universe you live in! https://t.co/yCKYehFaoO +06/07/2018,Politicians,@GovMikeHuckabee,I'll be up all night preparing for appearances on @AmericaNewsroom on @FoxNews at 9:30amET and @Varneyco on… https://t.co/nZ0N1VeCxK +06/07/2018,Politicians,@GovMikeHuckabee,Very funny moment on @Delta flight yesterday from NY to ATL. Tall African-American male boarded and a lady said “Ar… https://t.co/YUmRvwy8Q4 +06/07/2018,Politicians,@GovMikeHuckabee,America needs to reform how we deal with sentencing and drug crimes. My visit with @SandraSmithFox on… https://t.co/kdcJjdOoVa +06/06/2018,Politicians,@GovMikeHuckabee,A real estate broker in Massachusetts thought he and his 11-year-old daughter were just showing patriotism and hono… https://t.co/O61p8icK5A +06/06/2018,Politicians,@GovMikeHuckabee,"Bill Clinton should be very glad he’s not running for anything now, because his interview with Craig Melvin that ai… https://t.co/GhrgacsKRM" +06/06/2018,Politicians,@GovMikeHuckabee,Will be on @TheStoryFNC w/ @marthamaccallum on @FoxNews at 7pm ET/6CT and will break the story about the name chang… https://t.co/Jq9WyeJ0ea +06/06/2018,Politicians,@GovMikeHuckabee,"Don't miss my appearance on @EveningEdit on @FoxBusiness at 5pmET/4pmCT today because admit it, you got NOTHING els… https://t.co/J82Tsfc2gP" +06/06/2018,Politicians,@GovMikeHuckabee,This article by noted libertarian scholar Steven F. Hayward is the best piece about climate change I’ve seen in qui… https://t.co/3bpX74oSAG +06/06/2018,Politicians,@GovMikeHuckabee,"During the 2016 election campaign, President Trump often compared Hillary Clinton to former Navy submariner Kristia… https://t.co/mvs5epqhGi" +06/06/2018,Politicians,@GovMikeHuckabee,"The @WhiteHouse press corps can roll their eyes, but facts be facts! @PressSec HAS more credibility than the media… https://t.co/VOimLyQlJG" +06/06/2018,Politicians,@GovMikeHuckabee,"Was not a mistake on @KellyannePolls part. It's Biblical. ""Blessed are the Cheesemakers."" It's why evangelicals… https://t.co/Tl8Xyh7pck" +06/06/2018,Politicians,@GovMikeHuckabee,One of the most moving and sobering experiences of my life was a trip Janet and I made to Normandy. The depth of v… https://t.co/xzNQEPToy1 +06/06/2018,Politicians,@GovMikeHuckabee,"First Lady Melania Trump has been out of the public eye for a few weeks, which seems perfectly normal considering s… https://t.co/su6j9j9SoH" +06/05/2018,Politicians,@GovMikeHuckabee,I gotta explain to @PressSec that her cred is WAY higher than that! And I’m as objective about her as CNN is about… https://t.co/jc8bnl8c6O +06/05/2018,Politicians,@GovMikeHuckabee,One of the inexplicably major stories of the day is President Trump rescinding a White House invitation to the Supe… https://t.co/bSTEungHlo +06/05/2018,Politicians,@GovMikeHuckabee,One small part of a confidential letter written to special counsel Robert Mueller by the Trump legal team and leake… https://t.co/OvIfpcW3Dq +06/05/2018,Politicians,@GovMikeHuckabee,Great to see Cong @SteveScalise at Fox today during @FoxBusiness morning Show. He’s one of the good ones! https://t.co/Hqj64wGNGW +06/05/2018,Politicians,@GovMikeHuckabee,I'll be on @OutnumberedFNC on @FoxNews today at noonET because all the good looking guys were modeling underwear. I… https://t.co/gF3wFtBgBe +06/05/2018,Politicians,@GovMikeHuckabee,Ppl across America will get up early because I'll be on @MariaBartiromo on @FoxBusiness the entire 3 hrs from 6-9am… https://t.co/XxxHthWIro +06/04/2018,Politicians,@GovMikeHuckabee,The Philadelphia Eagles are NOT going to @WhiteHouse tomorrow but I WILL be on @IngrahamAngle tonight on @FoxNews a… https://t.co/qk0FDmQtq6 +06/04/2018,Politicians,@GovMikeHuckabee,Today marks the 29th anniversary of the Tiananmen Square massacre. That peaceful student pro-democracy protest is m… https://t.co/fSnaNr1LcF +06/04/2018,Politicians,@GovMikeHuckabee,A feature on my @TBN show is ICYMI as I read and report news stories you might have missed. You should watch and s… https://t.co/rIt9pv0seP +06/04/2018,Politicians,@GovMikeHuckabee,The good news of Howard Schultz running in 2020 is you get to use @WhiteHouse restrooms even if you don't pay your… https://t.co/x9rMaEniNc +06/04/2018,Politicians,@GovMikeHuckabee,"Mark your calendars, voters: there are primary elections tomorrow in Alabama, Iowa, Mississippi, Montana, New Jerse… https://t.co/ghdTlxVLrF" +06/04/2018,Politicians,@GovMikeHuckabee,"Unfortunately, while today’s 7-2 ruling in favor of Phillips is welcome and long-overdue relief for him, it still o… https://t.co/TfaUTvjvdc" +06/04/2018,Politicians,@GovMikeHuckabee,The decision upholds 1st Amendment that Govt can’t make law that forces ppl to violate their legitimate religious b… https://t.co/DZcQQmap2y +06/04/2018,Politicians,@GovMikeHuckabee,My daughter @PressSec has dinner with @GeorgeHBrett one of the greatest baseball players EVER! I had a hot dog wit… https://t.co/kPjWUdNVjs +06/04/2018,Politicians,@GovMikeHuckabee,Yes I DID “Keep Up With A Kardashian” on my @TBN show this weekend. My reasons will surprise you! https://t.co/HJhmU0QasP +06/04/2018,Politicians,@GovMikeHuckabee,"After reading Kyle Cheney’s piece in POLITICO that mentioned my commentary about Trey Gowdy, I was left with one qu… https://t.co/DYJIQDLXY1" +06/03/2018,Politicians,@GovMikeHuckabee,David Horowitz and @benshapiro join me on @TBN at 8Et/7ct along with comedian Jason Michaels and Felix Cavaliere of… https://t.co/CtPhhn7897 +06/03/2018,Politicians,@GovMikeHuckabee,2nite don’t miss https://t.co/GH1TONBY5r +06/03/2018,Politicians,@GovMikeHuckabee,Tell me you didn’t miss this on @foxandfriends on @FoxNews today! @realDonaldTrump was watching and you should hav… https://t.co/nxxZFVkW0f +06/03/2018,Politicians,@GovMikeHuckabee,Will be on @foxandfriends today on @FoxNews at 6:30am ET and appear from a @Starbucks in DC where I spent the night… https://t.co/R1PWy7KgWl +06/02/2018,Politicians,@GovMikeHuckabee,Today's newsletter is out and it is full of fresh news (not the fake kind from CNN)! I write about the North Korea… https://t.co/gPoH3SOzaJ +06/02/2018,Politicians,@GovMikeHuckabee,"After sneeringly dismissing the raises and bonuses many workers enjoyed due to the GOP tax cut as “crumbs,” House M… https://t.co/peFBYKMTHA" +06/02/2018,Politicians,@GovMikeHuckabee,"For those keeping score, Nancy Pelosi has now come out against tax cuts, raises, bonuses, strong GDP growth & recor… https://t.co/9uvTOBjLWp" +06/02/2018,Politicians,@GovMikeHuckabee,Musical guest 2nite on https://t.co/GH1TONTyWZ is Felix Cavaliere of the Rascals. “Good Lovin” and Good Fun! https://t.co/OCw0WYMNsK +06/02/2018,Politicians,@GovMikeHuckabee,Headed to DC today. Hope all my shots are current. +06/02/2018,Politicians,@GovMikeHuckabee,My show @TBN is on 2nite. Guests include David Horowitz and @benshapiro and if you don’t watch Bob Mueller will int… https://t.co/Y1wYUnwt9i +06/01/2018,Politicians,@GovMikeHuckabee,"A side of me you've never seen, but absolutely should! Watch and share this video, but only if you are ""BORN TO BE… https://t.co/MPwa3zzxGp" +06/01/2018,Politicians,@GovMikeHuckabee,"Lego my Legos! And I hear he was also ticked because he couldn't find his Batman pajamas with the feet attached, h… https://t.co/megWTlkGhB" +06/01/2018,Politicians,@GovMikeHuckabee,"This morning, the Labor Department reported a better-than-expected 223,000 jobs were created in May, and unemployme… https://t.co/dy1smiVH7R" +06/01/2018,Politicians,@GovMikeHuckabee,Deputy Attorney General Rod Rosenstein needs to be recused in the “Russia/Trump” investigation because he’s a poten… https://t.co/EuisaMqv3Y +06/01/2018,Politicians,@GovMikeHuckabee,There seems to be a theme to this week’s news: controversial comediennes derailing their careers by making offensiv… https://t.co/lJXux8ZNQJ +06/01/2018,Politicians,@GovMikeHuckabee,"Till now, out of everything we knew about the special counsel investigation into “collusion” with Russia, the bigge… https://t.co/kZ16X0vKmV" +06/26/2018,Politicians,@GovernorPataki,Congratulations @AJ_Cats_ on making the Manhattan GOP Stronger! https://t.co/KJ3NY3ebcx +06/16/2018,Politicians,@GovernorPataki,RT @bbretonwindham: Can't forget #ThrowbackThursday today ! A great event thanks to @GovernorPataki ! 2010 #nhpolitics https://t.co/soc9kwD… +06/14/2018,Politicians,@GovernorPataki,Happy Birthday @GeorgeHWBush on your 94th. #USA https://t.co/e9Gc5ZQ12g +06/13/2018,Politicians,@GovernorPataki,Congratulations to my former Press Sec. Lynn Krough @lynnbaby13 on being named @marcmolinaro Campaign Manager. #Win https://t.co/TDygBzOgcH +06/13/2018,Politicians,@GovernorPataki,@marcmolinaro can win this! Daily News had me down 17 the day before. Especially if @CynthiaNixon stays in. #NYGOP https://t.co/fAgSwztb9G +06/10/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Dave’s ALIVE DAY! 6/9/18 > 6/9/15 +No better way to celebrate LIFE than by cheers’ing the marriage of friends. Congrats A…" +06/01/2018,Politicians,@GovernorPataki,Happy 25th Anniversary to my good friends Bill and Cheryl Murray! https://t.co/khrtMmBN2s +05/28/2018,Politicians,@GovernorPataki,"RT @CP1NYS: On this Memorial Day, consider what we owe America's veterans https://t.co/HGXelrcSzp via @nypost" +05/26/2018,Politicians,@GovernorPataki,Herman 'Denny' Farrell was a fierce partisan but someone who's word you could trust and who really cared about NY https://t.co/GlaOYKkl8x +05/26/2018,Politicians,@GovernorPataki,"RT @ERIECOUNTYGOP: “Albany needs to change, and Marc Molinaro will bring that change!” Former Republican Governor George Pataki #BelieveAga…" +05/26/2018,Politicians,@GovernorPataki,Please remember those who have sacrificed this #MemorialDayWeekend https://t.co/3RDUhjzInz +05/25/2018,Politicians,@GovernorPataki,Congratulations to my friend @DaveCurrier1 https://t.co/glaNPjgd3j +05/23/2018,Politicians,@GovernorPataki,I was proud to Introduce @marcmolinaro at the #NYGOPConvention. We beat the odds in 1994 and will do it again in 20… https://t.co/ve3wqe7m5B +05/23/2018,Politicians,@GovernorPataki,In the green room with @marcmolinaro getting ready to nominate him as the next Governor of our great state. #NYGOP https://t.co/3wN7Qqw12t +05/21/2018,Politicians,@GovernorPataki,"RT @jpcahillsr: 1/2 After serious deliberation and reflection, I have decided not to seek the office of NYS AG. I believe the stakes are h…" +05/20/2018,Politicians,@GovernorPataki,"RT @KevinTshirt: Pretty cool to come across a picture of @GovernorPataki at my elementary school in 1997, when I was in 5th grade. I imagin…" +05/17/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Leaving #Chicago w/ grateful & happy hearts after meeting so many wonderful readers, including this warm reception last…" +05/08/2018,Politicians,@GovernorPataki,"RT @jpcahillsr: Respect for women,the rule of law & the integrity of our legal system is imperiled by those who have abused power & turned…" +05/08/2018,Politicians,@GovernorPataki,Congratulations Andrea! It’s nice to see Millennials like YOU getting involved in our political process. @AJ_Cats_… https://t.co/5NMZYJ8wmY +05/05/2018,Politicians,@GovernorPataki,RT @AllisonPataki: My goodness. Speechless. Thank you @JessicaSimpson https://t.co/LVOQ3zbRSr +05/05/2018,Politicians,@GovernorPataki,I remember it well. Tom was a GREAT senator for the people of the Southern Tier and a wonderful friend. https://t.co/JxgkYQKgLH +05/03/2018,Politicians,@GovernorPataki,RT @MMR_MattRyan: Old Glory always makes for a nice backdrop. Here’s a shot today I took of NY’s 53rd Governor @GovernorPataki. https://t.… +05/03/2018,Politicians,@GovernorPataki,RT @CP1NYS: The Future of New York is in Our Hands... https://t.co/lPLFxjDWkE via #constantcontact +05/01/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: @DavidLevy42 & I had the privilege of sharing a bit of our story w/ @JennaBushHager on the @TODAYshow, speaking about Da…" +05/01/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: So grateful to the @washingtonpost for allowing us to share our story behind #BeautyInTheBrokenPlaces : +https://t.co/jIO…" +04/26/2018,Politicians,@GovernorPataki,"Congratulations @RichardGrenell - it took too long, but worth the wait. https://t.co/yhvF3BC6iD" +04/26/2018,Politicians,@GovernorPataki,#ThrowbackThursday to January of 1995. A picture of our NYC Executive Chamber staff in my World Trade Center office. https://t.co/BpXPwsuJLe +04/25/2018,Politicians,@GovernorPataki,Congratulations Doug! You will be a great Assemblyman. https://t.co/T0YDIwY6yJ +04/24/2018,Politicians,@GovernorPataki,RT @SmithForNY: Good Morning! Today is the day! It's 6:00am and polls are now open! Please help us keep our strong voice in Albany by elect… +04/24/2018,Politicians,@GovernorPataki,RT @killian4senate: POLLS ARE OPEN! It's a beautiful day to vote! Local elections provide a real opportunity to affect change because every… +04/23/2018,Politicians,@GovernorPataki,Make sure you get out and vote if you live in NY assembly district 5 for @SmithforNY Doug is the future of our part… https://t.co/GbG6Rpg6LQ +04/23/2018,Politicians,@GovernorPataki,Make sure you go out and vote for @killian4senate tomorrow in NYS-37. We need a two party system in #Albany https://t.co/9U3UH5A7Yd +04/23/2018,Politicians,@GovernorPataki,#ProudFather https://t.co/mSA5A8KteH +04/18/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Woo hoo! @klgandhoda - thank you for naming BEAUTY IN THE BROKEN PLACES as a 'Favorite Thing'! https://t.co/js0eafdIcy +#…" +04/18/2018,Politicians,@GovernorPataki,"Barbara Bush was loved by all Americans, a wonderful first lady, a great wife and mother. Libby and I were honored… https://t.co/AZeuFsjz2k" +04/17/2018,Politicians,@GovernorPataki,Libby and I have #Barbara_Bush in our thoughts and prayers tonight. @GeorgeHWBush @JebBush @BarbaraBushFdn +04/04/2018,Politicians,@GovernorPataki,Happy to help @killian4senate. It’s important that our great state is not completely dominated by NYC liberals.… https://t.co/o2OzJkG4k2 +04/04/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Moody skies and bald trees. April showers bring May flowers, please? And here’s hoping that April gray makes for a color…" +04/04/2018,Politicians,@GovernorPataki,RT @TwitterMoments: People pay tribute to Martin Luther King Jr. on the 50th anniversary of his assassination. #MLK50 https://t.co/6mIEWaz6… +04/04/2018,Politicians,@GovernorPataki,RT @killian4senate: Governor George Pataki endorses Julie Killian for State Senate https://t.co/NT1BzORbGU +04/04/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Sacre bleu, the day is here! WHERE THE LIGHT FALLS is out in the world in paperback! Isn’t it magnifique? It’s lightweig…" +04/04/2018,Politicians,@GovernorPataki,RT @DaveCatalfamo: So what is modern history? Happy to posit the record of my former boss @GovernorPataki against any Gov https://t.co/Jq3… +04/03/2018,Politicians,@GovernorPataki,Where the Light Falls’ written by my son and daughter @AllisonPataki and @owen_pataki is now in paperback. Great Re… https://t.co/k8GVGJyzJv +04/03/2018,Politicians,@GovernorPataki,Looking forward to being with @killian4senate in Westchester tomorrow. https://t.co/eqlQ6cVB3h +04/03/2018,Politicians,@GovernorPataki,"Jasper was a tremendous leader, wonderful man and a good friend who will be greatly missed. https://t.co/LRwUsdaELF" +04/02/2018,Politicians,@GovernorPataki,"It’s not to late to Join me, Sen. Flanagan and Sen. Young at a fundraiser for @killian4senate in NYC tomorrow. https://t.co/2sgBFQUOuQ" +04/01/2018,Politicians,@GovernorPataki,@tuckahoetommy Thank You Tommy. Same to you and your family. +04/01/2018,Politicians,@GovernorPataki,Wishing you and your family the happiest Easter of all. #Easter2018 #HappyEaster #EasterSunday +03/29/2018,Politicians,@GovernorPataki,#ThrowbackThursday #Believe #NYGOP https://t.co/nlkG14jo34 +03/20/2018,Politicians,@GovernorPataki,Great to endorse and support @DougSmithNY at an event tonight. #VoteSmith April 24th @SmithforNY https://t.co/RnoWOu5ORK +03/17/2018,Politicians,@GovernorPataki,#HappyStPatricksDay. We had a great dedicated administration that created real change and made #NY a better place t… https://t.co/3JcA6opWIQ +03/16/2018,Politicians,@GovernorPataki,#FlashbackFriday from the #StPatricksDayParade in Manhattan with my good friend @jpcahillsr #StPatricksDay2018 https://t.co/D3XhnZZuO3 +03/16/2018,Politicians,@GovernorPataki,RT @bbretonwindham: . #ThrowbackThursday Great morning at @SalemRotary with @GovernorPataki ! As always thanks Gov !!! #nhpolitics 🇺🇸… +03/15/2018,Politicians,@GovernorPataki,"RT @KatalinBogyay: Introduced women wine makers from Hungary @UN_CSW @HUNMissionToUN .'Salon extraordinaire ' opened by Min.of State Novak,…" +03/08/2018,Politicians,@GovernorPataki,It was great being on with @JCats2013 for his debut “Cats At Night” show today with @AJ_Cats_ https://t.co/zfUYXoM2pI +03/07/2018,Politicians,@GovernorPataki,Congratulations to my good friend @JCats2013 on his new Wednesday evening talk show “Cats at Night” from 5-6 on @am970TheAnswer #CatsAtNight +03/03/2018,Politicians,@GovernorPataki,RT @CheleFarley: The Countdown begins! https://t.co/oeQGVpn1Za +03/03/2018,Politicians,@GovernorPataki,RT @NLawGlobal: We appreciate @Law360's interview with our lawyer and colleague George Pataki. https://t.co/EvNzQHOJaP +03/03/2018,Politicians,@GovernorPataki,RT @Law360: Check out Randy Maniloff's interview with former #NewYork Gov. George Pataki: https://t.co/I0zKYeFadL https://t.co/tQAh9JgY1R +02/02/2018,Politicians,@GovernorPataki,What a wonderful story. Thank You Philip. https://t.co/xgFjGhUMUP +02/02/2018,Politicians,@GovernorPataki,RT @JCats2013: Great Memories https://t.co/CFfJCZhaV5 +02/02/2018,Politicians,@GovernorPataki,NY needs a senator whose only agenda is to fight for our hardworking families and small businesses @CheleFarley https://t.co/vbm3ZzOO7i +02/01/2018,Politicians,@GovernorPataki,#ThrowbackThursday @JCats2013 home with @MikeBloomberg in 2002. https://t.co/HrgdW6tNue +01/31/2018,Politicians,@GovernorPataki,A great friend and loyal advisor. Congratulations Tommy. https://t.co/huzjW8MdSH +01/29/2018,Politicians,@GovernorPataki,"RT @DaveCatalfamo: “What we did in 94, we did together. But this is not about the past, we will shock the world again.” @GovernorPataki @C…" +01/29/2018,Politicians,@GovernorPataki,RT @chapinfay: Chairman Mike Long @CP1NYS called in an “old friend” to keynote lunch at #cppac. 2 standing O’s in 10 minute speech - maybe… +01/15/2018,Politicians,@GovernorPataki,"It is our obligation to honor the memory of Dr. King, not just today but every day of the year by keeping the dream alive for all. #MLKDay" +01/01/2018,Politicians,@GovernorPataki,Happy New Year! Wishing everyone health and happiness for 2018. #NewYearsEve2018 https://t.co/cR7hbnjgGq +12/31/2017,Politicians,@GovernorPataki,RT @jjk607: Our 2017 year in photos includes a special @GovernorPataki appearance. https://t.co/lbJaPHil4R +12/24/2017,Politicians,@GovernorPataki,#MerryChristmas and Blessings to our incredible military for keeping our country’s freedom and integrity safe https://t.co/n4LJPPwS3k +12/14/2017,Politicians,@GovernorPataki,".@CTLizB thanks for the compliment, but it wouldn’t be prudent for me to speculate at this time." +12/07/2017,Politicians,@GovernorPataki,#ThrowbackThursday Great day @bbretonwindham https://t.co/FY4JmNWszL +11/18/2017,Politicians,@GovernorPataki,RT @Yale: The Bulldogs are the Ivy League champs after defeating Harvard 24-3 at the Yale Bowl! #TheGame @Yale_Football https://t.co/x5XSOa… +11/18/2017,Politicians,@GovernorPataki,Go @Yale_Football #BeatHarvard https://t.co/oP05v8hCbV +11/16/2017,Politicians,@GovernorPataki,Congratulations Bob! https://t.co/nVRI0Wqn42 +11/07/2017,Politicians,@GovernorPataki,"If you live in Westchester, NY don’t forget to vote for @RobAstorino today. https://t.co/dUqhuC0V8y" +11/06/2017,Politicians,@GovernorPataki,Don’t forget to vote for @jackmartinsny for Nassau County Executive tomorrow. +11/06/2017,Politicians,@GovernorPataki,RT @jjk607: “We’re gonna pull a Pataki” exclaimed @NMalliotakis when @GovernorPataki predicted an upset win for her tmrw. https://t.co/7Y1Y… +11/06/2017,Politicians,@GovernorPataki,RT @daveevansabc7: 100th anniversary of women getting right to vote “it’s time for a woman mayor in nyc”@GovernorPataki https://t.co/VnLEnk… +11/06/2017,Politicians,@GovernorPataki,"If you live in #Queens and want a independent voice in City Hall, vote for my friend @junipercivic prez Bob Holden https://t.co/jv7TRjjgRH" +11/04/2017,Politicians,@GovernorPataki,"RT @VanHipp: Great catching up in #NYC w/one of my favs, @GovernorPataki —a true #Statesman who showed us all what #American #leadership is…" +11/01/2017,Politicians,@GovernorPataki,"Worst terror attack on NYC since Sept11 a sober reminder that we must remain vigilant, look out for each other & never bow to terror." +10/27/2017,Politicians,@GovernorPataki,It was a great day. On to victory on Nov 7th @jackmartinsny. https://t.co/5nFhe915Hb +10/25/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: ""I cannot endure to waste anything as precious as autumn sunshine."" - Nathaniel Hawthorne +#fall #outside https://t.co/7…" +10/20/2017,Politicians,@GovernorPataki,"RT @JCats2013: THE GOP’S FUTURE in NY @JCats2013 @AJ_Cats_ +Proud Father Watch Andrea Cats NY1 video +Get common sense Americans +https://t…" +10/17/2017,Politicians,@GovernorPataki,RT @AdirondacksYes: @AdirondacksYes thrilled by support of @GovernorPataki and other former NYS and federal officials and enviro ldrs. http… +10/15/2017,Politicians,@GovernorPataki,"RT @JCats2013: CatsRoundtable listen live 10/15 8:30am EST AM970|https://t.co/R7p9z2wVfg +@NMalliotakis - Feeling good about the election" +10/11/2017,Politicians,@GovernorPataki,"RT @cspencer1508: It was lovely to meet you and your family, and thanks so much for your talk on #Sisi. You added hugely to the @AlthorpLit…" +10/11/2017,Politicians,@GovernorPataki,RT @AllisonPataki: Stunning & surreal weekend at @AlthorpLitFest - an absolute privilege to take part in such a gathering. Many thanks to @… +10/11/2017,Politicians,@GovernorPataki,@AJ_Cats_ @CityAndStateNY Congratulations @AJ_Cats_ You will do a terrific job as our new @Manhattan_GOP Leader! +10/07/2017,Politicians,@GovernorPataki,Thank you @ronnehring native New Yorker for all you do for conservative cause in CA- +10/06/2017,Politicians,@GovernorPataki,RT @jackmartinsny: Honored to have the endorsement of @GovernorPataki our last GOP governor who accomplished so much for Nassau & all of NY… +10/02/2017,Politicians,@GovernorPataki,A great appointment. A tremendous person who has the expertise and knowledge to help those in need. This is exactly… https://t.co/A1tO7gLj4o +09/30/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: Help me #give2veterans. Every retweet means a dollar for @Stand4Heroes, up to $500K, by 9/30. Let's see how much we can…" +09/30/2017,Politicians,@GovernorPataki,"RT @bbretonwindham: Great Tweet @famousquotenet from one of the best my friend @GovernorPataki +#nhpolitics #MAGA https://t.co/Fd8A9wayLp" +09/26/2017,Politicians,@GovernorPataki,American lives are at risk it's critical that we FOCUS efforts now on helping #PuertoRico recover from the devastation of Hurricane Maria +09/22/2017,Politicians,@GovernorPataki,RT @Tourismuganda: @vincent_masabac @realDonaldTrump @NLawGlobal @adoniaayebare @GorillaTrekking @GovernorPataki @scott_eisner The @NLawGlo… +09/18/2017,Politicians,@GovernorPataki,Congratulations @AJ_Cats_ Great choice by @Manhattan_GOP #NYC. https://t.co/wpQMrg83fA +09/13/2017,Politicians,@GovernorPataki,RT @cathy_blaney: @GovernorPataki a class act as always https://t.co/Nh32Q4ZRQu +09/12/2017,Politicians,@GovernorPataki,"RT @jpcahillsr: On Sept. 11, George Pataki remains New York's comforter-in-chief https://t.co/buVFWkgiBy" +09/11/2017,Politicians,@GovernorPataki,Joining my friends @newsmax to share memories from Sept 11th https://t.co/rC9U9LsXrE +09/11/2017,Politicians,@GovernorPataki,"RT @BakerMachado: On the anniversary of 9/11, we ask @GovernorPataki if we are safer. Join me and @jiveDurkey on #CheddarLIVE +https://t.co/…" +09/11/2017,Politicians,@GovernorPataki,"It's is always an honor and inspiring to spend time with our first responders, but especially today. https://t.co/IHnCFw0fcx" +09/10/2017,Politicians,@GovernorPataki,#NeverForget Ex-New York governor reflects on 9/11 anniversary | TheHill https://t.co/sUpfz3vsZi +09/08/2017,Politicians,@GovernorPataki,"RT @JCats2013: CatsRoundtable listen live 10/10 9:00am EST AM970|https://t.co/R7p9z2wVfg +@GovernorPataki - 9/11, the Governor's leadership" +09/01/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ... #ThrowbackThursday @GovernorPataki at the @WindhamNHRec August Annual Senior Picnic in Windham #nhpolitics #oneoft… +08/19/2017,Politicians,@GovernorPataki,"Libby and I are saddened by the loss of one of the world's greatest political minds, our dear friend Arthur Finkels… https://t.co/bziw9pKdYT" +08/16/2017,Politicians,@GovernorPataki,"Wayne Bennett an outstanding public servant & Superintendent of @nyspolice Saddened by his passing, he & his family are in our prayers" +08/16/2017,Politicians,@GovernorPataki,East Hampton Library benefit with @owen_pataki and @JessSeinfeld - So proud! #WhereTheLightFalls @AllisonPataki https://t.co/Z0ZMm2vafJ +08/15/2017,Politicians,@GovernorPataki,"Kid Rock is exactly the kind of candidate the GOP needs right now. #KidRockForSenate @KidRock + https://t.co/gWagkLPcBb" +08/10/2017,Politicians,@GovernorPataki,RT @JohnnyBPhilV: Former NY Gov George Pataki Joins Phil Valentine Today. @ValentineShow @GovernorPataki +08/04/2017,Politicians,@GovernorPataki,Congratulations @peekskillbrews for taking home the gold! https://t.co/eZGLiU4ZMf +08/04/2017,Politicians,@GovernorPataki,Congrats to my friend David Malpass who was confirmed by #USSenate as Treasury's undersec. for international affairs https://t.co/e9j6FMpQ3K +07/29/2017,Politicians,@GovernorPataki,"RT @LovinOnBuffalo: Thanks, @GovernorPataki for knowing the value of @RichardsonCtr and allocating the funding 11 years ago! #TheMoreYouKno…" +07/29/2017,Politicians,@GovernorPataki,RT @Sept11Memorial: The #911Museum has welcomed over 10 million visitors since opening its doors in 2014. https://t.co/52q2hid1zS https://t… +07/20/2017,Politicians,@GovernorPataki,"John McCain is a patriot, an American hero and the very definition of courage. Prayers for a speedy recovery." +07/17/2017,Politicians,@GovernorPataki,#WheretheLightFalls is launched & off to a tremendous start with @AllisonPataki and Owen appearing on @TODAYshow wi… https://t.co/HrBuror6sn +07/15/2017,Politicians,@GovernorPataki,#ProudFather https://t.co/nODEPlUZaN +07/14/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: Thank you so much for having us, @rosannascotto , great to see you! https://t.co/tY9EEnncap" +07/04/2017,Politicians,@GovernorPataki,RT @EliseStefanik: Look who @danstec and I ran into at the Willsboro 4th of July Parade?! Great to see you @GovernorPataki 🇺🇸 https://t.co/… +07/04/2017,Politicians,@GovernorPataki,https://t.co/Q6fRkq4oRR government. Politicians the servants of the people not our master. Important in 1776 More important now +07/04/2017,Politicians,@GovernorPataki,We are the land of the Brave and the home of the Free. Let's pay tribute to our brave American Heroes today. #IndependenceDay +07/01/2017,Politicians,@GovernorPataki,WHERE THE LIGHT FALLS is on sale for pre-order now! By two of my favorite authors @AllisonPataki & Owen Pataki! https://t.co/IwEINb5SvT +06/30/2017,Politicians,@GovernorPataki,Have a great #July4th weekend! #Independenceday2017 #GODBLESSTHEUSA https://t.co/TBGPeY5OBh +06/29/2017,Politicians,@GovernorPataki,#ThrowbackThursday At an event in January with candidate for #NYC Mayor @NMalliotakis #GOP https://t.co/96ysGjPtZe +06/29/2017,Politicians,@GovernorPataki,"Sad to see my friend @MasseyForMayor out of the Mayors race, hope he stays involved and runs for office again. #NYC #NYC2017" +06/29/2017,Politicians,@GovernorPataki,"RT @kilmeade: .@GovernorPataki joins me on #TheBrianKilmeadeShow today! +Watch now: https://t.co/VuIepVGPlh" +06/28/2017,Politicians,@GovernorPataki,RT @AllisonPataki: 1 month to go...w/ co-author/bro at @RandomHouse HQ to prep for launch of WHERE THE LIGHT FALLS. 7/11 will be here befor… +06/26/2017,Politicians,@GovernorPataki,RT @leemark607: @GovernorPataki Cleaned up at moms. Found I saved this. Thanks for what you did (and tried to) for NY. Too bad dems are s… +06/24/2017,Politicians,@GovernorPataki,Thank You @RyanMoses20 We had a great team! #NewYork #Empirestate https://t.co/m8hOaVdLJW +06/24/2017,Politicians,@GovernorPataki,Thank you @CCFdn. https://t.co/S1FvoBNVPU +06/22/2017,Politicians,@GovernorPataki,RT @AllisonPataki: A busy day of book launching! #books #review #SummerReading https://t.co/3d6KF99MvV +06/22/2017,Politicians,@GovernorPataki,Congratulations @JoeLhota. He's the right person to guide the #MTA again! #NYC #NewYork https://t.co/hwSJQg4qx0 +06/20/2017,Politicians,@GovernorPataki,"RIP George Canon a wonderful man, a great leader for Newcomb & a fierce advocate for all of the residents of the ADK https://t.co/QhEW8BrXLn" +06/18/2017,Politicians,@GovernorPataki,Congratulations @EmilyforPEC! https://t.co/jzpACgs1u9 +06/16/2017,Politicians,@GovernorPataki,#FlashbackFriday announcing the new #Yankees stadium in 2005. https://t.co/o7jM5CShse +06/16/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ...#ThrowbackThursday to Feb 2015 0 degrees outside breakfast at @RedArrow24Diner with @GovernorPataki Thanks for brea… +06/14/2017,Politicians,@GovernorPataki,Libby & I are praying for the full recovery of @SteveScalise & all those injured in today's shooting. America's first responders are heroes. +06/12/2017,Politicians,@GovernorPataki,Pataki Rails Against Status Referendum Boycott – Caribbean Business https://t.co/dGrIH3Beej +06/09/2017,Politicians,@GovernorPataki,#FlashbackFriday At our #Peekskill farm in 1992 with my Mom/Dad and family. #GoodOldDays https://t.co/w3KB4Kd5dh +05/29/2017,Politicians,@GovernorPataki,Today we honor those that have made the ultimate sacrifice for our freedom. We owe a debt of gratitude to all who serve today #memorialday +05/26/2017,Politicians,@GovernorPataki,RT @bbretonwindham: . #ThrowbackThursday Thanks again @GovernorPataki #nhpolitics https://t.co/yE3r83qfGE +05/20/2017,Politicians,@GovernorPataki,"RT @dublinmuseum: Honoured to welcome @GovernorPataki and Mrs Pataki, two very charming visitors, to the museum this evening. https://t.co/…" +05/14/2017,Politicians,@GovernorPataki,#HappyMothersDay to ALL the #Moms and especially @LibbyPataki @emmyhambrg @AllisonPataki @EmilyforPEC! Enjoy your d… https://t.co/zCf4MY12rv +05/14/2017,Politicians,@GovernorPataki,RT @NHLogCabin: The first being @LogCabinGOP friend & ally @GovernorPataki 🏳️‍🌈 https://t.co/GGG3UHToV3 +05/02/2017,Politicians,@GovernorPataki,Sorry to see @JCats2013 not running for #NYC Mayor. He would have made an excellent leader of our great city. https://t.co/AU6119Hwm3 +04/22/2017,Politicians,@GovernorPataki,Thank you @BryanFCranna. We did a lot for our great state. #EarthDay #EmpireState #NY https://t.co/FIQXqk3Qjr +04/22/2017,Politicians,@GovernorPataki,#throwback from when President Bush Visited the Adirondacks with me on #earhday. We worked with Americorp (4/22/02). https://t.co/CUg1MmXGwp +04/22/2017,Politicians,@GovernorPataki,#HAPPYEARTHDAY https://t.co/aIz94o8FnX +04/22/2017,Politicians,@GovernorPataki,Congratulations David! Trump's Brilliant Pick At Treasury May Head Off Next Crisis @Manhattan_GOP https://t.co/CF3OA6jQVv +04/20/2017,Politicians,@GovernorPataki,"#ThrowbackThursday My #NYHallofGovernors portrait in #Garrison, NY with the Hudson River behind me #hudsonvalley https://t.co/u3W0MU1qpC" +04/19/2017,Politicians,@GovernorPataki,"RT @ClaireyHardwick: In honor of #taxday watch my interview with @GovernorPataki on why #taxreform is needed, and how it will create jobs h…" +04/12/2017,Politicians,@GovernorPataki,Thank you for your thoughts and prayers. Libby and I are fortunate to have such a great family and friends. https://t.co/o8R90V5D89 +04/11/2017,Politicians,@GovernorPataki,"RT @cathy_blaney: Rob, this is so true and lovely! ❤️ Peggy Pataki was 'Grandma' to many: Appreciation https://t.co/lYTRg5O2Id" +04/03/2017,Politicians,@GovernorPataki,"After a 101 years my Mother Margaret ""Peggy"" Pataki passed away peacefully in her sleep this morning.Thank you for your thoughts and prayers" +04/02/2017,Politicians,@GovernorPataki,@irishradio Adrian We've been talking about our trip all day. Thank you. And Kieran Playing Danny boy over and over for her +04/02/2017,Politicians,@GovernorPataki,@BGAndersson Brian. Yes. Thank you. And for all your help +04/02/2017,Politicians,@GovernorPataki,@EdwardLynchSR3 thank you. Our sacred grandma still hanging on She loves all her Irish cousins +04/01/2017,Politicians,@GovernorPataki,Thank you to all who called with thoughts/prayers. After 101 years my Mother seems to be coming to the end Quiet/peaceful/no pain or illness +03/25/2017,Politicians,@GovernorPataki,Today is NATIONAL MEDAL OF HONOR DAY. For personal acts of valor above and beyond the call of duty #MedalOfHonorDay https://t.co/fd8LwLtT9e +03/23/2017,Politicians,@GovernorPataki,Sad to see the passing of David Rockefeller. He was the original visionary for lower manhattan. #rockefeller #NYC https://t.co/pKDhqJzy8d +03/22/2017,Politicians,@GovernorPataki,Great to be @ wreath-laying ceremony last week commemorating the 1848/1956 Hungarian revolutions. #Hungary #nyc https://t.co/ZaKNyToLAT +03/22/2017,Politicians,@GovernorPataki,RT @Panorama24H: * En desarrollo: Exgobernador de NY @GovernorPataki está presente en Foro sobre el plan fiscal y que auspicia @Camarapr .… +03/19/2017,Politicians,@GovernorPataki,"""On that terrible day, a nation became a neighborhood. All Americans became New Yorkers"" https://t.co/HEd5RyqC8G" +03/17/2017,Politicians,@GovernorPataki,Congrats to Rob Cole and @JakeMenges of In The Field Global for winning 2 #pollies2017 awards for TV and Radio ad's https://t.co/uJJfeB81Sg +03/15/2017,Politicians,@GovernorPataki,"RT @FerencKumin: Contrary to the extreme cold it was uplifting to dedicate the new 56 Memorial in #NYC with @GovernorPataki, Colleen Bell,…" +03/15/2017,Politicians,@GovernorPataki,RT @HungaryToday: #Hungarian-Americans Commemorate #Anniversary of the 1848 #Revolution @GovernorPataki @clevecserk @AmbSzemerkenyi https:/… +03/14/2017,Politicians,@GovernorPataki,".@PreetBharara effort to combat corruption was terrific & deserves enormous credit, but @POTUS deserves his pick https://t.co/EhuEM8f1KI" +03/13/2017,Politicians,@GovernorPataki,RT @tvkatesnow: Former NY Gov @GovernorPataki weighs in on the Justice dept's decision to purge the 46 remaining Attorney Generals https://… +03/11/2017,Politicians,@GovernorPataki,"RT @bbretonwindham: I'm Proud & Honored ""Voted"" best of 2017 in Windham Magazine. for my service to the town as a Selectmen ! #nhpolitics…" +03/07/2017,Politicians,@GovernorPataki,Congratulations to Andrew Giuliani on his new position at the White House #POTUS Great NYer and even better person. https://t.co/NBWVgpd56N +03/06/2017,Politicians,@GovernorPataki,#ProudFather https://t.co/0UGKKQWX2V +03/02/2017,Politicians,@GovernorPataki,Congratulations to my friend @GovernorPerry on being confirmed by the Senate as our next Energy Secretary #rickperry #MakeAmericaGreatAgain +03/02/2017,Politicians,@GovernorPataki,#ThrowbackThursday When we changed New York for the better! https://t.co/WTb5c6xCJS +03/01/2017,Politicians,@GovernorPataki,Tremendous speech tonight from @POTUS - for the first time in 8 years we have a strong positive vision for America +02/20/2017,Politicians,@GovernorPataki,"“The harder the conflict, the greater the triumph.” — Washington #PresidentsDay https://t.co/Xsnqlyfxhc" +02/20/2017,Politicians,@GovernorPataki,RT @Sept11Memorial: Roses and an American flag patch left as tribute on the first responders parapet of the #911Memorial. https://t.co/ef4k… +02/19/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ..@GovernorPataki says @realDonaldTrump Tax Reform will Create Jobs: https://t.co/WCkdAfh2Xj #nhpolitics #MAGA @CLewa… +02/17/2017,Politicians,@GovernorPataki,RT @cathy_blaney: Ru signed up? Registration is now open for the #911Memorial5K on 4/23. Register 2day use code FRIENDS for $10 off: https:… +02/15/2017,Politicians,@GovernorPataki,RT @FerencKumin: Great dinner benefiting the maintenance of the biggest #Budapest #Jewish cemetery @GovernorPataki @AmbDaniDayan with Yossi… +02/15/2017,Politicians,@GovernorPataki,"Congrats to Adele Malpass @Manhattan_GOP and Dawn Simmons. We didn't win, but nice to see the GOP fighting in Harlem https://t.co/6DfTAPNR0c" +02/14/2017,Politicians,@GovernorPataki,RT @AllisonPataki: @katiyana thank you very much ☺️ I am looking forward to sharing the new book this July! https://t.co/xu3ZcUSCTm +02/12/2017,Politicians,@GovernorPataki,"Malpass is well qualified.Great pick by @realDonaldTrump It's a vital job held by Volcker, Summers, Geithner, Taylor https://t.co/Jc8bAd0Vvq" +02/09/2017,Politicians,@GovernorPataki,RT @AllisonPataki: EXCLUSIVE first look at the cover for #WhereTheLightFalls ! Published today by @EW --what do you think? #cover reveal #h… +02/09/2017,Politicians,@GovernorPataki,"#tbt Awarding the NY Freedom Medal to Eileen Collins and ""Pee Wee"" Reese with Racheal Robinson, D. Zimmer and S. So… https://t.co/c1Dv1BEieR" +02/08/2017,Politicians,@GovernorPataki,Proud Father! https://t.co/3YN7B8H7Yn +02/05/2017,Politicians,@GovernorPataki,Congratulations Jim! #Boeheim1K #OrangeNation https://t.co/DS4RBvUmxQ +02/03/2017,Politicians,@GovernorPataki,Congratulations #RexTillerson. I could not agree more. One team! @realDonaldTrump @StateDept https://t.co/sWXa34NG4A +02/01/2017,Politicians,@GovernorPataki,.@realDonaldTrump selection of Judge Gorsuch to fill the seat of Justice Scalia is outstanding. +01/27/2017,Politicians,@GovernorPataki,"RT @AmbSzemerkenyi: Thank you to @GovernorPataki, Senator @RoyBlunt and @SenatorWicker for attending the Embassy’s ""Salute to Freedom” brun…" +01/27/2017,Politicians,@GovernorPataki,Great to speak at Hungarian diplomats Inauguration event in honor of @realDonaldTrump My ancestors would be proud. https://t.co/y7cehUvMkO +01/26/2017,Politicians,@GovernorPataki,I would not have been Governor of NY without Arthur Finkelstein. Truly A great American. https://t.co/G4yoggmXM5 +01/25/2017,Politicians,@GovernorPataki,Nobody better than @bbretonwindham a good friend and great American. #nhpolitics https://t.co/hlGOOneCjN +01/24/2017,Politicians,@GovernorPataki,Couldn't agree more with @JoeNBC @RepTomPrice #MAGA https://t.co/p1pyFgjBwR +01/21/2017,Politicians,@GovernorPataki,Former Gov. Pataki: President from New York an 'Exciting Prospect' https://t.co/uQV5hVb3sB +01/20/2017,Politicians,@GovernorPataki,Congratulations Donald Trump: Our 45 President of the United States https://t.co/kaSNTLKL0a +01/20/2017,Politicians,@GovernorPataki,"The election is over, it's time for all Americans to come together. https://t.co/mthiNE2RZ9" +01/20/2017,Politicians,@GovernorPataki,#MAGA with my friends @jpcahillsr Ed Morgan & Tom Reynolds https://t.co/lyR68VbaPf +01/19/2017,Politicians,@GovernorPataki,With my favorite Assemblywoman @NMalliotakis at a Reception in tribute to Reince Priebus #Inauguration https://t.co/pYed7hA4oH +06/30/2018,Politicians,@LindseyGrahamSC,I just met with #PastorAndrew Brunson who is being held in a Turkish prison. He’s not guilty of anything in my vie… https://t.co/3tOdhtpCI1 +06/29/2018,Politicians,@LindseyGrahamSC,"We spoke candidly about Pastor Brunson and other friction points, including the purchase of Russian made S-400s and… https://t.co/5wjCFrPdNr" +06/29/2018,Politicians,@LindseyGrahamSC,"Very good, respectful, and candid meeting with President Erdogan. + +We have real differences, but far more in comm… https://t.co/mKDbfA2hGC" +06/28/2018,Politicians,@LindseyGrahamSC,As soon as we get a name we’ll go to work to get the person confirmed. https://t.co/tAmaLOd0Lv +06/28/2018,Politicians,@LindseyGrahamSC,"RT @thehill: Graham: Senate Judiciary Committee is ""ready to go"" once Trump names SCOTUS pick https://t.co/aJC5uNrtdl https://t.co/n6GegAuw…" +06/28/2018,Politicians,@LindseyGrahamSC,"Great to see @MittRomney win the Utah Senate GOP primary. + +Mitt is a good man and I look forward to working with h… https://t.co/8FM7HiFPiI" +06/27/2018,Politicians,@LindseyGrahamSC,"Now speaking with @tperkins of @FRCdc about the Supreme Court vacancy. + +LISTEN: https://t.co/mnEuOgaJPs" +06/27/2018,Politicians,@LindseyGrahamSC,"Speaking with @FRCdc today at 5:05 pm about the retirement of Justice Kennedy. #SCOTUS + +LISTEN: +https://t.co/0VJoaIXGtL" +06/27/2018,Politicians,@LindseyGrahamSC,"As a Supreme Court Justice, he called them as he saw them. He should be proud of the service he has rendered to th… https://t.co/V8fPhDuoTC" +06/27/2018,Politicians,@LindseyGrahamSC,I deeply appreciate Justice Kennedy’s long service to our nation as a member of the Supreme Court and the federal j… https://t.co/TadPZWcYCT +06/27/2018,Politicians,@LindseyGrahamSC,"Hearing on @StateDept budget with @SecPompeo. + +WATCH LIVE: https://t.co/i911WRp7ax" +06/27/2018,Politicians,@LindseyGrahamSC,"Chairing a subcommittee hearing on the @StateDept budget and questioning @SecPompeo today at 2:30 pm. + +WATCH: +https://t.co/i911WRp7ax" +06/27/2018,Politicians,@LindseyGrahamSC,Great decision by the Supreme Court to make sure that workers are not forced to pay dues to a political organizatio… https://t.co/kaXAo3h1Gb +06/27/2018,Politicians,@LindseyGrahamSC,RT @WashTimes: Graham demands answer to whether anti-Trump FBI agents had role in FISA warrant on Carter Page https://t.co/kWLhwCxePn +06/27/2018,Politicians,@LindseyGrahamSC,@votejohnwarren Now is the time we should rally behind @henrymcmaster and our entire #SCGOP team to ensure victory in November. +06/27/2018,Politicians,@LindseyGrahamSC,John Warren (@votejohnwarren) ran a very impressive campaign for #SCGOV which he and his supporters should be proud… https://t.co/CzVGr9b6gE +06/27/2018,Politicians,@LindseyGrahamSC,Mr. Wilkie has been serving as the #2 at the VA and is prepared to bring about much needed-changes to better serve… https://t.co/lOfAhR5pve +06/27/2018,Politicians,@LindseyGrahamSC,"I hope Robert Wilkie is treated well during his confirmation hearing today. + +I’ve known him for years and he is a… https://t.co/qLnd7st6u0" +06/27/2018,Politicians,@LindseyGrahamSC,"@votetimmons He’s a worthy successor to @TGowdySC who has done a terrific job for #SC4, South Carolina, and our nation." +06/27/2018,Politicians,@LindseyGrahamSC,"Congratulations to William @VoteTimmons for winning a hard-fought GOP primary in #SC4. + +William will be a strong a… https://t.co/LqJ2DjBOGN" +06/27/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""The person in charge of the #Clinton email investigation, Mr. Strzok, and Ms. Page were in the tank for Cl…" +06/27/2018,Politicians,@LindseyGrahamSC,"Resounding victory tonight for @AGAlanWilson + +He aggressively represents South Carolina interests and will continue… https://t.co/m9p59BilSb" +06/27/2018,Politicians,@LindseyGrahamSC,RT @realDonaldTrump: Congratulations to Governor Henry McMaster on your BIG election win! South Carolina loves you. We are all proud of you… +06/27/2018,Politicians,@LindseyGrahamSC,"Congratulations to Governor @henrymcmaster on a hard-fought victory. + +There are a lot of good things going on in… https://t.co/osYPt23Aks" +06/26/2018,Politicians,@LindseyGrahamSC,"Speaking with @marthamaccallum now on @FoxNews. + +Tune in!" +06/26/2018,Politicians,@LindseyGrahamSC,"RT @jason_donner: Lindsey Graham on SCOTUS travel ban ruling: ""I thought it was a sound decision. This is not a religious ban. The first or…" +06/26/2018,Politicians,@LindseyGrahamSC,Hearing on Protecting Our Elections: Examining Shell Companies and Virtual Currencies as Avenues for Foreign Interf… https://t.co/J1vwp5A4Ek +06/26/2018,Politicians,@LindseyGrahamSC,Chairing a Judiciary subcommittee hearing on Protecting Our Elections: Examining Shell Companies and Virtual Curren… https://t.co/Vp1qpzPbbk +06/26/2018,Politicians,@LindseyGrahamSC,@realDonaldTrump We are at war with radical Islam and must act accordingly to protect our nation. +06/26/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump As I stated when the new Executive Order was issued, it is not a religious ban. + +The order was f… https://t.co/Ovmnq3FPKv" +06/26/2018,Politicians,@LindseyGrahamSC,Pleased to see the Supreme Court uphold President @realDonaldTrump’s travel ban from countries with high incidences… https://t.co/jkFApZzO4D +06/25/2018,Politicians,@LindseyGrahamSC,"Headed to the White House to travel with President @realdonaldtrump to Columbia. + + Looking forward to the Election Eve Rally!" +06/23/2018,Politicians,@LindseyGrahamSC,Keeping Katie Arrington and everyone involved in last night’s accident in my thoughts and prayers. Hoping for a speedy recovery. +06/21/2018,Politicians,@LindseyGrahamSC,"Charles Krauthammer was one of the strongest voices and most brilliant minds in all of American politics. + +I pray… https://t.co/tWiihrGD9z" +06/21/2018,Politicians,@LindseyGrahamSC,"Great to see the @FLOTUS on the ground in Texas getting a first-hand assessment of the family separation issue. + +S… https://t.co/32YcOmi9Lt" +06/21/2018,Politicians,@LindseyGrahamSC,"You can watch the bipartisan discussion on Strategic Competition at @CNASdc. + +LIVE: +https://t.co/wSP2oZ1l6Z https://t.co/6fDS9EUdaT" +06/20/2018,Politicians,@LindseyGrahamSC,The legislation gives the Department of Homeland Security (DHS) the clear legal authority to keep children under th… https://t.co/iviFPgFDzN +06/20/2018,Politicians,@LindseyGrahamSC,"This bill prevents breaking up real families, but requires adults to show up for court." +06/20/2018,Politicians,@LindseyGrahamSC,"My goal is to make sure families are not separated, but also prevent the rampant abuse of ‘catch and release’ where… https://t.co/kU7iU98an8" +06/20/2018,Politicians,@LindseyGrahamSC,"Just introduced the Keep Families Together and Enforce the Law Act with Senators Tillis, Rubio, Johnson, Cotton, Cruz, Heller and Cornyn." +06/20/2018,Politicians,@LindseyGrahamSC,"RT @abc_columbia: LISTEN: Senator Lindsey Graham speaks with President Donald Trump, other lawmakers about #separationcrisis at the border.…" +06/20/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump Democrats should work with Republicans to allow families to stay together, as well as ensure that… https://t.co/BVwaySl01S" +06/20/2018,Politicians,@LindseyGrahamSC,Very pleased President @realDonaldTrump will issue an Executive Order dealing with the separation of children and p… https://t.co/rwo6XJR3Ja +06/20/2018,Politicians,@LindseyGrahamSC,"A big day for @VolvoCarUSA. + +A big day for #SouthCarolina. + +You Make Us Proud! + +#newS60 https://t.co/6o5zNIKuCJ" +06/20/2018,Politicians,@LindseyGrahamSC,"I’m not buying that the Clinton email investigation was on the up and up. + +And the reason I’m not buying it is bec… https://t.co/KQzkUw2nrp" +06/19/2018,Politicians,@LindseyGrahamSC,Long overdue! https://t.co/gtSyUuLPyc +06/19/2018,Politicians,@LindseyGrahamSC,"NAILED IT. + +If you haven’t done so already please read these tweets from my friend and colleague @SenatorTimScott. https://t.co/71QhcydepR" +06/19/2018,Politicians,@LindseyGrahamSC,"Speaking with @seanhannity in just a few minutes about @FBI +and @TheJusticeDept. + +Tune In: +https://t.co/EqNG02sJ7Q" +06/19/2018,Politicians,@LindseyGrahamSC,"Speaking with @seanhannity today at 4:00 pm about the @TheJusticeDept and @FBI. + +Tune In: +https://t.co/EqNG02sJ7Q" +06/19/2018,Politicians,@LindseyGrahamSC,"@DHSgov She is hard-working, incredibly smart, and passionate. She is the right person at the right time. + +Her res… https://t.co/H7NsjV6nXU" +06/19/2018,Politicians,@LindseyGrahamSC,"I strongly stand behind @DHSGov Secretary Nielsen and her effort to solve a long-standing problem. + +https://t.co/qPk82NBc4O" +06/19/2018,Politicians,@LindseyGrahamSC,"I’m not buying that the CLINTON EMAIL INVESTIGATION was on the UP AND UP. + +WATCH: https://t.co/ogD9iMYykV" +06/18/2018,Politicians,@LindseyGrahamSC,"Questioning the witnesses in Senate Judiciary Committee NOW. + +WATCH: +https://t.co/4o6YeUmPFf" +06/18/2018,Politicians,@LindseyGrahamSC,Will be questioning the witnesses about the Inspector General’s Report on Justice Department and FBI Actions in Adv… https://t.co/l3JEy9c6zQ +06/15/2018,Politicians,@LindseyGrahamSC,"Speaking with @KateBolduan on @CNN in just a few minutes. + +Tune In!" +06/14/2018,Politicians,@LindseyGrahamSC,"Happy Birthday, Mr. President! + +You’re keeping your promise to make America safer and more prosperous. + +And unf… https://t.co/O9LKN7T0cx" +06/14/2018,Politicians,@LindseyGrahamSC,"ICYMI: + +I spoke with @IngrahamAngle last night on @FoxNews about North Korea and President @realDonaldTrump. + +https://t.co/9YZxSYsCUf" +06/14/2018,Politicians,@LindseyGrahamSC,"TONIGHT: Speaking with @FoxNews @IngrahamAngle at 10:00 pm about North Korea. + +Tune in!" +06/13/2018,Politicians,@LindseyGrahamSC,RT @tperkins: .@LindseyGrahamSC: President Trump has done more in 500 days than every president before him in 30 years. #SingaporeSummit… +06/13/2018,Politicians,@LindseyGrahamSC,RT @taylor_reidy: Sen. Graham is live now on @CNN speaking with @andersoncooper https://t.co/2JOQmcUUIE +06/13/2018,Politicians,@LindseyGrahamSC,Now speaking with @cnn @andersoncooper. +06/12/2018,Politicians,@LindseyGrahamSC,Speaking with @CNN @andersoncooper at 8:00 pm about President @realDonaldTrump and North Korea. +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with @marthamaccallum on @FoxNews now. + +Tune in!" +06/12/2018,Politicians,@LindseyGrahamSC,Ill be speaking with @marthamaccallum at 7:00 pm on @FoxNews about this afternoons phone call from President… https://t.co/9sUBc7dp1u +06/12/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump The President has given Kim Jong Un a way out that is good for him and the world. + +I hope Kim is… https://t.co/z9Rt3KA6BF" +06/12/2018,Politicians,@LindseyGrahamSC,@realDonaldTrump I told President @realDonaldTrump I’m pleased and proud of his leadership regarding the North Kore… https://t.co/PaCf31vrLM +06/12/2018,Politicians,@LindseyGrahamSC,Just had a great discussion with President @realDonaldTrump calling from Air Force One. +06/12/2018,Politicians,@LindseyGrahamSC,"ICYMI: +With @CBSThisMorning earlier today discussing #TrumpKimSummit and what is means for the US and North Korea. + +https://t.co/Ef0bz8aMKo" +06/12/2018,Politicians,@LindseyGrahamSC,"ICYMI: Spoke with NBC @TODAY @SavannahGuthrie about North Korea and Singapore #TrumpKimSummit + +https://t.co/3vfschuC3A" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSEveningNews: 'They've done this twice"": Senator Lindsey Graham (R-SC) notes that North Korea has reneged on past promises to denucle…" +06/12/2018,Politicians,@LindseyGrahamSC,RT @kilmeade: .@LindseyGrahamSC believes this is the last chance for peace with North Korea. Do you agree? #TheBrianKilmeadeShow @foxnewsra… +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSNews: ""[Kim Jong Un] kills his own people in large numbers. He killed Otto Warmbier. He is a very bad guy. But I'm willing to deal w…" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSNews: ""President Trump has to convince Kim Jong Un he's safer and more prosperous without nuclear weapons. This is a first step, thi…" +06/12/2018,Politicians,@LindseyGrahamSC,"Glad to hear @larry_kudlow is recovering well. + +He is an invaluable advisor to President @realDonaldTrump. + +Larry… https://t.co/BjPgKjRcWH" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @Kilmeade in just a few minutes. + +Tune In: https://t.co/ksTRBlszUw" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with @hughhewitt now. + +https://t.co/4FslSczFh3" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSThisMorning: ""One thing I would tell you, if there is an agreement it must come to congress for our approval,"" Senator @LindseyGraha…" +06/12/2018,Politicians,@LindseyGrahamSC,RT @CBSThisMorning: Ahead at 8am: Senator @LindseyGrahamSC joins us live to discuss the #TrumpKim summit and how the president can get Nort… +06/12/2018,Politicians,@LindseyGrahamSC,"RT @TODAYshow: “I’m cautiously optimistic. I’ve very pleased with President Trump this far, but we’ve got a long ways to go.”- @LindseyGrah…" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with NBC @TODAYshow in just a few minutes. + +Tune In!" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @TODAYshow: Today on TODAY: A look at President Trump’s meeting with Kim Jong Un, and what this could mean for the U.S. and North Korea…" +06/11/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump When it comes to North Korea, it’s not what they say that matters, but what they do. + +I know Pre… https://t.co/uEM4URtq6Z" +06/11/2018,Politicians,@LindseyGrahamSC,"Hoping for the best in the meeting between President @realDonaldTrump and Kim Jong Un. + +It’s a historic opportuni… https://t.co/9J0zajBku1" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @axios: Lindsey Graham on @ThisWeekABC: ""I'm not so sure most Americans"" are pro-free trade and pro-globalization https://t.co/mHnIwevMNc" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""President Trump, if he has to, will use military force to end this threat to the American homeland."" #Sund…" +06/10/2018,Politicians,@LindseyGrahamSC,Speaking with @MariaBartiromo now on Fox News. +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: After a group of Senate Dems made demands for a potential deal with North Korea, @LindseyGrahamSC says “I embrace this let…" +06/10/2018,Politicians,@LindseyGrahamSC,"Speaking with @MariaBartiromo on Fox News in just a few minutes. + +Tune in!" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: .@LindseyGrahamSC says he's ""not so sure"" @SenJohnMcCain is right that a majority of Americans support free trade, globali…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABCWorldNews: Sen. Lindsey Graham says he's ""not so sure"" Sen. John McCain is right that a majority of Americans support free trade, gl…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABC: After a group of Senate Dems made demands for a potential deal with North Korea, Sen. Graham: “I embrace this letter… here’s the q…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABC: Sen. Lindsey Graham: “There’s three outcomes here: Peace, where we have a win-win solution; military force where we devastate the…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: .@LindseyGrahamSC: “There’s three outcomes here: Peace, where we have a win-win solution; military force where we devastat…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @MollyNagle3: .@LindseyGrahamSC tells @GStephanopoulos that there are only two options in negotiations with North Korea: ""peace or war""…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: As President Trump prepares to go face to face with Kim Jong Un, @GStephanopoulos speaks with Trump ally @LindseyGrahamSC…" +06/08/2018,Politicians,@LindseyGrahamSC,"Very sad to hear about Charles @krauthammer. + +He is one of the strongest voices and most brilliant minds in all of… https://t.co/XW70MqINuI" +06/08/2018,Politicians,@LindseyGrahamSC,My statement on today’s MOX decision. https://t.co/vaxCwd7NYs +06/07/2018,Politicians,@LindseyGrahamSC,"A very Happy Birthday to @VP Mike Pence! + +🎂🎂🎂 https://t.co/O88SMkfsnk" +06/07/2018,Politicians,@LindseyGrahamSC,"Governor McMaster was critical to getting the Port funding over the line. + +@HenryMcmaster's relationship with… https://t.co/SN892m6Sqr" +06/07/2018,Politicians,@LindseyGrahamSC,"@SenatorTimScott @henrymcmaster Charleston Harbor deepening has been a team effort. + +I think we all understand th… https://t.co/ffk5aCppjF" +06/07/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @henrymcmaster I also very much appreciate the support of South Carolina State Senator Hugh Leathe… https://t.co/cwewBdKf4I +06/07/2018,Politicians,@LindseyGrahamSC,I also want to thank the congressional delegation – particularly my friend and colleague @SenatorTimScott -- for th… https://t.co/5mtL60t19l +06/07/2018,Politicians,@LindseyGrahamSC,"RT @dcexaminer: Lindsey Graham: DOJ's non-answer on Rosenstein recusal is pure ""gobbledygook"" https://t.co/nZLAIBjMAh https://t.co/ym3wT3Y9…" +06/07/2018,Politicians,@LindseyGrahamSC,The nearly $50 million in the Army Corps’ work plan allows construction to go forward without delay and keeps the p… https://t.co/tSMEAiSECT +06/07/2018,Politicians,@LindseyGrahamSC,"This is great news for the Port of Charleston and the state of South Carolina. + +Charleston Harbor deepening is ab… https://t.co/RwCCqqy6fx" +06/07/2018,Politicians,@LindseyGrahamSC,I’m very appreciative of the Trump Administration’s decision to dedicate nearly $50 million to deepen Charleston Harbor. +06/06/2018,Politicians,@LindseyGrahamSC,Speaking with @FoxNews tonight at 7:00 pm. Tune in. +06/06/2018,Politicians,@LindseyGrahamSC,My statement on today’s meeting at the White House with President @realDonaldTrump on trade. https://t.co/XMKfk44VRf +06/06/2018,Politicians,@LindseyGrahamSC,"I strongly believe there is a plan in place to lead us to better trade deals. + +We should give the president the t… https://t.co/u2RH4sOp9x" +06/06/2018,Politicians,@LindseyGrahamSC,"Now is not the time to undercut President Trump’s ability to negotiate better trade deals. + +I will not support an… https://t.co/INYTax8vLw" +06/06/2018,Politicians,@LindseyGrahamSC,It was great meeting with President Trump on his trade agenda. I’m confident he is on track to get us better trade… https://t.co/6Lw6W06SH7 +06/06/2018,Politicians,@LindseyGrahamSC,"Great to join President @realDonaldTrump today at the White House for the signing into law of John S. McCain III, D… https://t.co/Ht0OryuxtT" +06/06/2018,Politicians,@LindseyGrahamSC,"To all those who participated and who no longer are with us, may God keep you in his care. And to those who remain,… https://t.co/kaYHlZycHO" +06/06/2018,Politicians,@LindseyGrahamSC,"Today we mark the 74th anniversary of the #DDay landing at Normandy, France – arguably the most impressive military… https://t.co/lMxdNmlejN" +06/06/2018,Politicians,@LindseyGrahamSC,"RT @NBCPolitics: Sen. Lindsey Graham sends letter to Deputy AG Rod Rosenstein asking if he is a witness in the Mueller investigation, and i…" +06/06/2018,Politicians,@LindseyGrahamSC,RT @dcexaminer: Lindsey Graham asks Rod Rosenstein if he should recuse himself from overseeing Robert Mueller https://t.co/AYDhxnSnip https… +06/05/2018,Politicians,@LindseyGrahamSC,RT @dcexaminer: Lindsey Graham asks Rod Rosenstein if he should recuse himself from overseeing Robert Mueller https://t.co/e8BFCDcsnL https… +06/05/2018,Politicians,@LindseyGrahamSC,Speaking with @DanaPerino today in the 2pm hour on @FoxNews. Tune in. +06/05/2018,Politicians,@LindseyGrahamSC,"ICYMI + +Spoke with @ShannonBream last night about my letter to Deputy Attorney General Rod Rosenstein. + +WATCH: +https://t.co/cZd3Xzi16O" +06/01/2018,Politicians,@LindseyGrahamSC,RT @SpecialReport: Top Republican Sen. Lindsey Graham is pressing Deputy Attorney General Rod Rosenstein on whether the Justice Department… +05/31/2018,Politicians,@LindseyGrahamSC,"@Disney @ABC @KeithOlbermann @espn @realDonaldTrump @FullFrontalSamB Time will tell, but I doubt they will be asked… https://t.co/bPjaIr87cm" +05/31/2018,Politicians,@LindseyGrahamSC,@Disney @ABC @KeithOlbermann @espn @realDonaldTrump Are Democratic members being asked whether @FullFrontalSamB sho… https://t.co/iG2tnFZOgA +05/31/2018,Politicians,@LindseyGrahamSC,@Disney @ABC @KeithOlbermann Will Democratic Members of Congress be pursued and asked whether or not… https://t.co/o74BrCrDEn +05/31/2018,Politicians,@LindseyGrahamSC,"I have no issues with @Disney @ABC decision to fire Roseanne. + +But it does raise questions about why the same com… https://t.co/13NciL7wPM" +05/29/2018,Politicians,@LindseyGrahamSC,Devastated to hear of the tragic accident resulting in the deaths of Mike McCormick and Aaron Smeltzer. Both were… https://t.co/2T3bEoigZZ +05/28/2018,Politicians,@LindseyGrahamSC,On #MemorialDay we honor the American heroes who made the ultimate sacrifice defending our values and protecting ou… https://t.co/kAVAZgtDhs +05/27/2018,Politicians,@LindseyGrahamSC,"Speaking with @JudgeJeanine on @FoxNews tonight at 9:30 pm about the latest on North Korea and more. + +Tune In!" +05/26/2018,Politicians,@LindseyGrahamSC,"Today’s @aikenstandard on MOX. + +Story available: https://t.co/leTSUSzB0j https://t.co/2KkLouxWI9" +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice @ENERGY I also appreciate SC Governor @henrymcmaster for sending h… https://t.co/960DfAkcN4 +05/25/2018,Politicians,@LindseyGrahamSC,RT @demarest_colin: U.S. Sens. Tim Scott (@SenatorTimScott) and Lindsey Graham (@LindseyGrahamSC); SC AG Alan Wilson (@AGAlanWilson); and U… +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice @ENERGY We have the opportunity to prevent @ENERGY from repeating… https://t.co/Mp2Xy6brLg +05/25/2018,Politicians,@LindseyGrahamSC,"@SenatorTimScott @CongJoeWilson @SCAttyGenOffice The Dept of @ENERGY has abandoned MOX, but Congress hasn’t. + +The… https://t.co/tvZUMG7ouY" +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice This week I introduced and passed an amendment to the FY 2019 Nati… https://t.co/XvSv1yYhuy +05/25/2018,Politicians,@LindseyGrahamSC,"With @SenatorTimScott @CongJoeWilson, @SCAttyGenOffice Alan Wilson and local Aiken officials discussing the MOX pro… https://t.co/LJwSZ7o7bD" +05/25/2018,Politicians,@LindseyGrahamSC,"As to the drama surrounding a meeting with North Korea: + +I don’t know where we will meet, when we will meet, or… https://t.co/wR9YKzpHp8" +05/25/2018,Politicians,@LindseyGrahamSC,"Great speech by President @realDonaldTrump at the US Naval Academy graduation. + +It was an unapologetic belief in… https://t.co/i4u7PUU9bQ" +05/25/2018,Politicians,@LindseyGrahamSC,Very proud of @MeghanMcCain for holding her own in a hostile environment when it came to standing for the National… https://t.co/9lmK3bla4Y +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/0fSBSeorhE" +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/yoQYThCcze" +05/25/2018,Politicians,@LindseyGrahamSC,"RT @hughhewitt: LG: You know, @realDonaldTrump , you know, he’s not into the giving mode on the golf course.” https://t.co/MPq8ADMRs1" +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/7cjyh0qXMp" +05/25/2018,Politicians,@LindseyGrahamSC,"Speaking with Fox News Radio Brian @kilmeade now. + +Tune In: +https://t.co/Y7MRlJ1hJy" +05/25/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade on Fox News Radio at 10:05 am this morning. + +Tune In: +https://t.co/Y7MRlJ1hJy" +05/25/2018,Politicians,@LindseyGrahamSC,"RT @hughhewitt: For everyone living on or near Korean Peninsula —including 28K US service members and families, hundreds of thousands more…" +05/25/2018,Politicians,@LindseyGrahamSC,RT @TODAYshow: See the full interview with @LindseyGrahamSC about U.S. relations with North Korea https://t.co/LPbigf5Mir +05/25/2018,Politicians,@LindseyGrahamSC,RT @hughhewitt: Up next: @GrahamBlog (aka @LindseyGrahamSC aka the guest who usually has the best lines) +05/25/2018,Politicians,@LindseyGrahamSC,Speaking with NBC @TODAYshow in just a few minutes about North Korea. +05/25/2018,Politicians,@LindseyGrahamSC,Speaking with @foxandfriends in just a few minutes about North Korea. Tune in! +05/24/2018,Politicians,@LindseyGrahamSC,"ICYMI: Discussing Department of @ENERGY Decision to Abandon MOX Program at Savannah River Site. + +LISTEN: +https://t.co/O7vbBqm8KZ" +05/23/2018,Politicians,@LindseyGrahamSC,"The letter I sent — along with Senators @ChuckGrassley and @JohnCornyn — about congressional oversight and DOJ. + +Al… https://t.co/WlMQ336g5j" +05/22/2018,Politicians,@LindseyGrahamSC,My statement on Sherri Lydon being confirmed as the next US Attorney for South Carolina. https://t.co/YtS3WIy4xj +05/22/2018,Politicians,@LindseyGrahamSC,So grateful for the great work done by @the_uso! https://t.co/WBjizT3ItX +05/22/2018,Politicians,@LindseyGrahamSC,"You Rock! + +Thank you to @the_USO for the great work you do! https://t.co/0XYgEVYYYC" +05/21/2018,Politicians,@LindseyGrahamSC,"Speaking with @foxnews @marthamaccallum about American policy toward Iran. +Tune in." +05/21/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum in just a few minutes about Iran and North Korea. + +Tune in." +05/20/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""The only reason we are where we are is because President @realDonaldTrump has tried something new. He's ap…" +05/20/2018,Politicians,@LindseyGrahamSC,"RT @FoxNewsSunday: Today on #FNS: +Oliver North, incoming President, National Rifle Association +Mark Kelly, Co-Founder, Giffords +Steven Mnuc…" +05/18/2018,Politicians,@LindseyGrahamSC,"Praying for the students, families and first responders of #SantaFe." +05/17/2018,Politicians,@LindseyGrahamSC,I know she will serve President Trump and our nation well in this important position. +05/17/2018,Politicians,@LindseyGrahamSC,"I’m very glad the Senate has confirmed Gina Haspel as the new Director of the CIA. + +Ms. Haspel is highly qualifie… https://t.co/QB7Ra5gI9X" +05/17/2018,Politicians,@LindseyGrahamSC,RT @kilmeade: .@LindseyGrahamSC calls out critics of President @realDonaldTrump handling of North Korea #TheBrianKilmeadeShow @foxnewsradio… +05/17/2018,Politicians,@LindseyGrahamSC,"Graham to Trump Critics on North Korea: We Have Two Options – Peace Agreement or War + +https://t.co/EkhWd4pr69" +05/17/2018,Politicians,@LindseyGrahamSC,"Continued.... + +""As Secretary Mattis has always said, ""America can afford survival"" and the ""enemy gets a vote."" Wi… https://t.co/JqsCkecb6L" +05/17/2018,Politicians,@LindseyGrahamSC,"Just received this quote from quote from Assistant Secretary of Defense Rob Hood: + +""Secretary Mattis opposes any p… https://t.co/zUsvvIEcmP" +05/17/2018,Politicians,@LindseyGrahamSC,"If you keep doing what you're doing, you are miscalculating Donald Trump. He's not Obama. + +https://t.co/DhWdhmaOhd" +05/17/2018,Politicians,@LindseyGrahamSC,"I’m here to tell North Korea that our president has drawn a red line. + +If you keep threatening the American homel… https://t.co/eQudNdADY4" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking on the Senate floor in just a few minutes. + +WATCH: https://t.co/eKm1TeLwXf" +05/17/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: Sen. @LindseyGrahamSC to Kim Jong Un: ""If you keep doing what you're doing, you're miscalculating @realDonaldTrump. He's not O…" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade now about North Korea. + +LISTEN: +https://t.co/Y7MRlJ1hJy" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade on @foxnewsradio today at 9:30 am on the latest with North Korea. + +LISTEN: https://t.co/Y7MRlJ1hJy" +05/16/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum in just a few minutes. + +Tune in." +05/16/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum tonight at 7:00 pm about North Korea, Iran, ZTE and more. + +Tune In." +05/16/2018,Politicians,@LindseyGrahamSC,Very pleased & proud Senate has confirmed Mick Zais to serve as the Deputy Sec of Education. He believes in a stro… https://t.co/uvg4rdQPyz +05/16/2018,Politicians,@LindseyGrahamSC,President @realDonaldTrump met with Republicans earlier today. Here’s my statement. https://t.co/ww0MgCl8P4 +05/16/2018,Politicians,@LindseyGrahamSC,First responders like retired Berkeley County Sheriff’s Office Lt. Will Rogers – who was severely injured in the li… https://t.co/K6tFPa99xz +05/16/2018,Politicians,@LindseyGrahamSC,"This morning, I was honored to be recognized by @WeAreCode3, which is dedicated to caring for cops and the communit… https://t.co/4O3xEpu8Yg" +05/16/2018,Politicians,@LindseyGrahamSC,"#PoliceWeek2018 is a time to remember and honor our brave men and women in blue, especially those we’ve lost in the line of duty. 1/3" +05/15/2018,Politicians,@LindseyGrahamSC,"Ms. Haspel: + +* has rejected the interrogation techniques of the past; +* made it clear she is committed to followin… https://t.co/oT0VZLZznO" +05/15/2018,Politicians,@LindseyGrahamSC,"Glad to see Senators Warner, Heitkamp, and Nelson are now supporting Gina Haspel as the next CIA Director. + +She’s h… https://t.co/Gtbcy1YK2D" +05/15/2018,Politicians,@LindseyGrahamSC,My statement on President @realDonaldTrump meeting today with Republicans in the Senate. https://t.co/Pe6o513GYQ +05/15/2018,Politicians,@LindseyGrahamSC,@tperkins @FRCdc He’s testified before our subcommittee numerous times on the erosion of religious liberty abroad.… https://t.co/4AjaijQdXC +05/15/2018,Politicians,@LindseyGrahamSC,Congratulations to @Tperkins of @FRCdc on being selected to serve on the U.S. Commission on International Religious… https://t.co/tvcsZgtxr9 +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump It was a very good foreign policy discussion. + +I appreciate President Trump taking the time to s… https://t.co/m6E1zDycef" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump The President will continue to challenge our European allies to get a better deal. + +He is fully… https://t.co/olLPEFjke0" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump As for Iran, he expressed a strong desire and resolve to sanction the Iranian regime for its effor… https://t.co/KMbEuFOW9F" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump He’s fully committed to denuclearizing the Korean peninsula, and hopes to make it a win-win for No… https://t.co/rJ17ztXvgG" +05/15/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump is a true believer in ‘Peace through Strength’. + +President Trump today gave an excelle… https://t.co/n6r4LDtK2p" +05/15/2018,Politicians,@LindseyGrahamSC,The selection of Ms. Haspel will be good for morale within the CIA and give the country a seasoned intelligence exp… https://t.co/ieFCXhsUxy +05/15/2018,Politicians,@LindseyGrahamSC,Gina Haspel has risen through the ranks of the organization receiving high marks from all who have interacted with… https://t.co/CPmKrThfyd +05/15/2018,Politicians,@LindseyGrahamSC,"My prayers are with Harry and the entire Reid family. + +Wishing him a full and complete recovery!" +05/15/2018,Politicians,@LindseyGrahamSC,"The hearing is available online. + +WATCH: https://t.co/m5AhvtN4SD" +05/15/2018,Politicians,@LindseyGrahamSC,Smokey Robinson and other members of the music industry are testifying before the Senate Judiciary Committee regard… https://t.co/kK0q1lY0yl +05/15/2018,Politicians,@LindseyGrahamSC,"RT @WVOCColumbia: Graham, Scott React To New Embassy In Jerusalem | WVOC https://t.co/4rsOk0kPRV" +05/14/2018,Politicians,@LindseyGrahamSC,Both Senators @LindseyGrahamSC and @tedcruz said the embassy opening was a signal that the US era of “appeasement”… https://t.co/5rTrHgtj56 +05/14/2018,Politicians,@LindseyGrahamSC,"I was proud to beleading the Senate delegation for this historic event. + +It was a true honor. +🇺🇸🇮🇱🇺🇸🇮🇱 https://t.co/7SGWS8375n" +05/14/2018,Politicians,@LindseyGrahamSC,"Great to be with @PastorJohnHagee to celebrate the opening of the #USEmbassyJerusalem. 🇺🇸🇮🇱🇺🇸🇮🇱 + +#History https://t.co/FfJrCdoAZB" +05/14/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@SenMikeLee: “This was recognizing something that was already the case, Jerusalem was and is Israel’s capital.” https://t.co/…" +05/14/2018,Politicians,@LindseyGrahamSC,RT @SenTedCruz: .@FoxNews: “Jerusalem is the undivided and eternal capital of Israel. And that’s been true since 70 years ago today when th… +05/14/2018,Politicians,@LindseyGrahamSC,"RT @Mediaite: Lindsey Graham: If You Have A Problem With Jerusalem As Israeli Capital, 'Take It Up With God' (VIDEO) https://t.co/AbW4rZj1a…" +05/14/2018,Politicians,@LindseyGrahamSC,RT @tedcruz: With @SenMikeLee @LindseyGrahamSC and @SenDeanHeller along with @USAmbIsrael in his new office at our new US Embassy in Jerusa… +06/26/2018,Politicians,@BobbyJindal,"Why does the state respect that some parents are capable of choosing what is best for their children, while acting… https://t.co/ZwBhGke5uz" +06/13/2018,Politicians,@BobbyJindal,.@Clairecmc aka @AirClaireMO is having a bad week. First she lied to voters about touring the state in an RV and n… https://t.co/2dmfMW9XWu +06/12/2018,Politicians,@BobbyJindal,"Class act, Mounds View. +https://t.co/wQXKUe1TTJ" +06/09/2018,Politicians,@BobbyJindal,"Charles has graced us for years with intellect, wit, and integrity. +https://t.co/cm4xZg9hHm" +05/17/2018,Politicians,@BobbyJindal,"Latest @WSJ opinion article: +""...Thus a challenger is not sufficient—Mr. Trump needs a candidate who siphons off no… https://t.co/kc1cK1przh" +05/13/2018,Politicians,@BobbyJindal,Happy Mother’s Day! 🍳 https://t.co/IJgnW1TKlL +05/11/2018,Politicians,@BobbyJindal,Check out #TheGreatRevolt by my friends @BradOnMessage and @SalenaZito. Examines the populist wave that elected Tru… https://t.co/jp4h3kDljZ +05/10/2018,Politicians,@BobbyJindal,"Would be great to have family friendly @LastManStanding back on the air! +https://t.co/sKLmooUAFu" +04/26/2018,Politicians,@BobbyJindal,#tbt to getting to play the role of a doctor by delivering our third child in 2006. Read the full article here:… https://t.co/CvAu9cdxFS +04/24/2018,Politicians,@BobbyJindal,Kneeling athletes we can all applaud. https://t.co/IMQrkKufot +04/23/2018,Politicians,@BobbyJindal,".@GQMagazine should stick to overpriced clothes, and leave faith to others. https://t.co/xdxRtUq2pW" +04/20/2018,Politicians,@BobbyJindal,Go #LSU! https://t.co/2qXjNCLVoW +04/18/2018,Politicians,@BobbyJindal,Thank you Barbara Bush for serving our nation with class and dignity. @BarbaraBushFdn https://t.co/TPAeEiHOkY +04/09/2018,Politicians,@BobbyJindal,"Congratulations @PReedGolf, a graduate of @LSULabSchool! https://t.co/7XWK0s9WAu" +04/04/2018,Politicians,@BobbyJindal,RT @WSJopinion: Donald Trump’s populism is the direct result of the establishment’s hypocrisy. He is implementing policies that more-mainst… +03/24/2018,Politicians,@BobbyJindal,RT @Saints: Former Louisiana Governor @BobbyJindal and wife Supriya’s arrival at Tom Benson’s funeral. https://t.co/B3Ms0L7EuF +03/23/2018,Politicians,@BobbyJindal,"RT @WWLAMFM: Former Louisiana Governor Bobby Jindal, his wife and former Saints Head Coach, Jim Mora at Tom Benson’s second line. https://…" +03/23/2018,Politicians,@BobbyJindal,"The beautiful city of New Orleans was loud celebrating the life of Tom Benson this afternoon. What a perfect, New O… https://t.co/tABn3YPAqM" +03/22/2018,Politicians,@BobbyJindal,"Take a look at my latest opinion piece on The Wall Street Journal​: + +""When Republicans failed to repeal ObamaCare l… https://t.co/qIb4y1TAVy" +03/19/2018,Politicians,@BobbyJindal,Thanks Sun Devils for hosting this weekend’s tournament! https://t.co/dyXcew9czX +03/15/2018,Politicians,@BobbyJindal,Thoughts and prayers with Gayle Benson and the entire @Saints and @PelicansNBA families. Tom was a good friend and… https://t.co/STPG7LG98w +03/11/2018,Politicians,@BobbyJindal,"Crazy... bet they still call 911 when they get robbed. #HastaMuerteCoffee + +https://t.co/gOcnZtcN7B" +03/06/2018,Politicians,@BobbyJindal,Congratulations to Shaan and his basketball team on winning the championship at their Elite 8 basketball tournament… https://t.co/EH2O7VyR5N +03/01/2018,Politicians,@BobbyJindal,#tbt to touring the Capitol with Willie Robertson and the Robertson family. @bosshogswife #throwbackthursday https://t.co/fwKNV4FJgg +02/28/2018,Politicians,@BobbyJindal,Shame singing national anthem is now considered controversial. Thoughts and prayers with family of the fallen. https://t.co/xT8A1Cs2nx +02/25/2018,Politicians,@BobbyJindal,It's a weekend packed with sports. Congratulations to Slade and The Sharks on their championship in their Hammond t… https://t.co/0YpTDsSYHf +02/22/2018,Politicians,@BobbyJindal,#Tbt to my 2007 race ending in my first term as governor for the beautiful state of Louisiana. Thank you to all of… https://t.co/JtBpLaQXuF +02/21/2018,Politicians,@BobbyJindal,My family and I are deeply saddened to hear about the passing of @BillyGraham. His world-wide influence will contin… https://t.co/crwGxNyXLm +02/15/2018,Politicians,@BobbyJindal,"Take a look at my latest opinion piece on @WSJOpinion: + +You hear it all the time from Trump supporters: “I like a l… https://t.co/SHwMJrnSOd" +02/14/2018,Politicians,@BobbyJindal,".@elizabethforma feel free to use my opening line to you at the gridiron “from one Indian to another, I wish you lu… https://t.co/KuBDq8uFVq" +02/01/2018,Politicians,@BobbyJindal,We should create a more populist—Trumpian—bottom-up GOP that loves freedom and flies the biggest American flag in h… https://t.co/upY08S8Mb0 +01/31/2018,Politicians,@BobbyJindal,Democrat leaders in Washington are in danger of alienating a large swath of voters. https://t.co/HR1b1p7EKU +01/15/2018,Politicians,@BobbyJindal,Why Entitlement Reform Needs To Be The Second Half Of Tax Reform https://t.co/7A1JV7eIes +01/12/2018,Politicians,@BobbyJindal,Here’s my latest article on the need for more diversity in higher education. Enjoy. https://t.co/WQ1OQosxOp via @NRO +01/12/2018,Politicians,@BobbyJindal,"Thanks Buckskin Bill Black for all the Monday Morning Marches! God Bless. +https://t.co/6K2TbV3h4E" +12/24/2017,Politicians,@BobbyJindal,Merry Christmas from our family to yours! https://t.co/COxz9Tlg9v +12/22/2017,Politicians,@BobbyJindal,"With #TaxReform out of the way, a reform of Social Security, Medicare and other entitlements must be next. https://t.co/llG0HUHfgQ" +11/27/2017,Politicians,@BobbyJindal,Norwegian immigration minister uses term “No Go Zones” https://t.co/Yoq1Z2xndp +11/27/2017,Politicians,@BobbyJindal,To the encroaching and arrogant spirit of communism and fascism the Vicar of Christ said: “No. You are not the begi… https://t.co/lWxY0GvU7W +11/25/2017,Politicians,@BobbyJindal,"""From the Berlin Wall, to Vietnamese and Cuban boat people, to the DMZ, the prisoners of communism run in only one… https://t.co/Kns8C9Xari" +11/24/2017,Politicians,@BobbyJindal,Sometimes you have to laugh to stop from getting mad. https://t.co/5KXOav1LUK +11/18/2017,Politicians,@BobbyJindal,“Almost all of the growth in top American earners has come from just three economic sectors...that tend to benefit… https://t.co/giTiPa0KIh +11/09/2017,Politicians,@BobbyJindal,“People are motivated by meaning more than money.” and “We must stop emptying our society of meaning.”… https://t.co/AAP0GPq5TT +11/06/2017,Politicians,@BobbyJindal,Democrats Finally Admit Their Real Goal Is Single-Payer Health Welfare https://t.co/FdorHlMkNe +11/02/2017,Politicians,@BobbyJindal,"Repealing O'care invdividual mandate as part of tax cuts would increase freedom and reduce deficit by over $400 bn + +https://t.co/hfKkijO6hB" +11/02/2017,Politicians,@BobbyJindal,Congratulations to #LSU alums Alex Bregman and Will Harris! @abreg_1 got our vote for #worldseries mvp! +10/24/2017,Politicians,@BobbyJindal,"Arthur Toynbee...“Civilizations die from suicide, not by murder.” +https://t.co/gKtqItl7Om" +10/21/2017,Politicians,@BobbyJindal,"Universities should promote open debate, not pc orthodoxy. +https://t.co/8iqTi9GfYh" +10/20/2017,Politicians,@BobbyJindal,Makes me so proud to be an American and want to be worthy of the sacrifices these kids have made. God bless America. https://t.co/5md3YvsJkq +10/06/2017,Politicians,@BobbyJindal,"Jobs so much better than govt dependence + +https://t.co/TngicdIA8A" +10/05/2017,Politicians,@BobbyJindal,#tbt https://t.co/klPHkjXVBP +10/04/2017,Politicians,@BobbyJindal,RT @votedianeblack: Ummmmm...x2 https://t.co/BirI52GLpE +10/04/2017,Politicians,@BobbyJindal,Ummmmm... https://t.co/B2WvUV5cH6 +10/02/2017,Politicians,@BobbyJindal,"Prayers for #LasVegas victims and gratitude for first responders/heroes. + +https://t.co/JENjtRiylV" +09/18/2017,Politicians,@BobbyJindal,"Biden is surprisingly right - should create more jobs not govt programs + +https://t.co/olcjrBy4PQ" +09/18/2017,Politicians,@BobbyJindal,"liberal argument for why dems shouldn't simply rely on race/identity politics. + +https://t.co/4sC1lZ86uM" +09/16/2017,Politicians,@BobbyJindal,"The nanny state lives... +https://t.co/b1Xow9Gf5q" +09/15/2017,Politicians,@BobbyJindal,"It's Friday! In honor of the weekend, here's a throwback to Slade's summer fun. https://t.co/zMV9ZmXPI2" +09/14/2017,Politicians,@BobbyJindal,"Safety comes first, eh? In America we call this private sector initiative. https://t.co/AeBnsov6tL" +09/13/2017,Politicians,@BobbyJindal,"Even hyper-liberal tech elites don't want top-down government. +https://t.co/M6usDgwKTb" +09/11/2017,Politicians,@BobbyJindal,"Being ""orthodox Catholic"" shouldn't disqualify Barrett from being a judge. + +https://t.co/zXH7xgLabI" +09/08/2017,Politicians,@BobbyJindal,.@scottforflorida is tireless in preparing his people for #irma. Praying for all in the path of this monstrous storm. +09/08/2017,Politicians,@BobbyJindal,"It’s still a great country full of great, wonderful people. +https://t.co/RkrigLyR6f" +09/07/2017,Politicians,@BobbyJindal,I enjoyed the debate. Thank you @yaledailynews https://t.co/RiIel0tMV2 +09/05/2017,Politicians,@BobbyJindal,"We must raise our kids to be resilient, not a generation of victims. https://t.co/O9hbmB5gBA" +09/04/2017,Politicians,@BobbyJindal,Proud of Shaan and others who washed cars today @ Jeff Baptist and raised $2k for #harvey victims. https://t.co/2cHPAZSMiT +09/01/2017,Politicians,@BobbyJindal,"Universities can best pursue justice by pursuing truth. +https://t.co/pj17M4RQwK" +08/30/2017,Politicians,@BobbyJindal,"So true, should be self-evident, and yet a message that needs to be heard now more than ever. + +https://t.co/yYJG3pufch" +08/28/2017,Politicians,@BobbyJindal,Donate here: https://t.co/KjE0F4A2KJ https://t.co/GsWWDkuVRb +08/28/2017,Politicians,@BobbyJindal,"TX is a good neighbor, helping us through every storm we've faced. Let's return the favor with prayers and support for them. #harvey" +08/22/2017,Politicians,@BobbyJindal,"""I wish you bad luck..."". Good advice from the Chief Justice. + +https://t.co/H2nCA8WvNs" +08/16/2017,Politicians,@BobbyJindal,RT @ScottforFlorida: What happened in Charlottesville was evil. There's no moral equivalency between the two sides. https://t.co/E8FcQdwku8 +07/28/2017,Politicians,@BobbyJindal,Congrats @govsambrownback. Will do a great job fighting for religious liberty. +07/28/2017,Politicians,@BobbyJindal,"When life gives you lemons, make... bureaucratic regulations. We need less govt, and more common sense/freedom. https://t.co/DeWRCfF97w" +07/20/2017,Politicians,@BobbyJindal,"Something is wrong when 5 of the 10 richest U.S. counties are within DC area. Need to grow our local economies, not… https://t.co/XmSmOPtHLL" +07/20/2017,Politicians,@BobbyJindal,"Praying for Senator McCain and his family. + +https://t.co/f4tcusDWKl" +07/19/2017,Politicians,@BobbyJindal,"Do politicians come with a satisfaction guarantee? If they can't get it done, maybe we should exchange a few at the next election. 2/2" +07/19/2017,Politicians,@BobbyJindal,Senate Republicans need to agree on an Obamacare repeal - or refuse to debate anything else until they can. Seven years is long enough. 1/2 +07/16/2017,Politicians,@BobbyJindal,"So I get a curious email from a ""Natalia"" - yadda yadda yadda - here's a pic of my family in Russia https://t.co/mjxqHOFoRc" +07/10/2017,Politicians,@BobbyJindal,Argument for our #schoolchoice reforms in Louisiana. All kids deserve the chance to get a great education. https://t.co/sDbvtPxx8k +07/08/2017,Politicians,@BobbyJindal,"The West can only be defeated from within, not by any external enemy. We must not give away that which we would nev… https://t.co/YfZDS2NXg1" +07/04/2017,Politicians,@BobbyJindal,"Mark me down as a culturally arrogant westerner who thinks our ways are unique and better, though not perfect. 4/4" +07/04/2017,Politicians,@BobbyJindal,...but I actually think it is important we not take patriotism for granted given current liberal thought. 3/4 +07/04/2017,Politicians,@BobbyJindal,We often share throw away sentiments on days like today... 2/4 +07/04/2017,Politicians,@BobbyJindal,"Happy birthday, America. Still the greatest country in the history of the world! 1/4" +06/30/2017,Politicians,@BobbyJindal,"RT @realDonaldTrump: If Republican Senators are unable to pass what they are working on now, they should immediately REPEAL, and then REPLA…" +06/26/2017,Politicians,@BobbyJindal,.@FLGovScott Great to have all sec match in omaha. Geaux Tigers! https://t.co/zoiakwJz0J +06/26/2017,Politicians,@BobbyJindal,Important 1st amendment victory. Govt can't discriminate against churches. https://t.co/uTPDbJQils +06/25/2017,Politicians,@BobbyJindal,Mannings are a class act. Glad the fields we upgraded are being put to good use. https://t.co/fuCMNo0X2v +06/24/2017,Politicians,@BobbyJindal,"Despicable, Part 2 + +https://t.co/Qz3aUnyyjp" +06/23/2017,Politicians,@BobbyJindal,Geaux Tigers! https://t.co/LZxz4lEaaf +06/23/2017,Politicians,@BobbyJindal,"despicable +https://t.co/rjIQDY1nRD" +06/23/2017,Politicians,@BobbyJindal,Had some thoughts on Obamacare a few wks ago for AmericaNext. Spoiler: I think Congress needs to actually repeal it. https://t.co/C8VkbpLKpr +06/16/2017,Politicians,@BobbyJindal,Supriya and I spent some time at the hospital today. Grateful for the Capitol Police and the nurses and doctors. Praying for @SteveScalise. +06/14/2017,Politicians,@BobbyJindal,"Praying for healing, peace and comfort for @stevescalise and the others wounded in today’s vicious attack." +05/28/2017,Politicians,@BobbyJindal,15th win for @LSUsoftball when it was on the line - nobody else has more than 8. Incredible spirit #GeauxTigers https://t.co/wuxyRGjjhd +05/28/2017,Politicians,@BobbyJindal,GEAUX TIGERS!!! Amazing win by our Champions. https://t.co/uo3eAq9eYh +04/26/2017,Politicians,@BobbyJindal,I will be on with @TeamCavuto at 3:45 to talk about the first 100 days of the @realDonaldTrump Administration. https://t.co/k4R7huVR9u +02/07/2017,Politicians,@BobbyJindal,Confirming @BetsyDevos was a big win for America's underprivileged students. Now the real work begins. +02/03/2017,Politicians,@BobbyJindal,"Extreme liberals like Elizabeth Warren are trying to stop Betsy Devos because she exposes their hypocrisy. + +Watch 📺: https://t.co/N0eH6MVN9j" +02/02/2017,Politicians,@BobbyJindal,"If Republicans are looking for ways to prove to voters that we have become ""them"", I E the DC establishment, this s… https://t.co/tngJK9xFFu" +02/02/2017,Politicians,@BobbyJindal,"On Obamacare, Republicans who want to retreat from repeal to repair should be replaced." +01/30/2017,Politicians,@BobbyJindal,WATCH: Bobby Jindal reacts to Trump's actions on immigration: https://t.co/d6rjsudgfu +01/27/2017,Politicians,@BobbyJindal,The debate over education reflects the defining battle line drawn between right and left. https://t.co/kthFUOdFVd +01/20/2017,Politicians,@BobbyJindal,Congratulations to President @realDonaldTrump. Supriya and I are praying for you as you lead our nation. +01/14/2017,Politicians,@BobbyJindal,".@BetsyDeVos has fought tirelessly for decades to give disadvantaged kids the opportunity to get a great education. +https://t.co/4jtTpmgt0f" +01/09/2017,Politicians,@BobbyJindal,"“Conservative principles, not political posturing, should guide the repeal and replacement of Obamacare. + +READ ⬇️ https://t.co/r2ys4OFmoT" +12/26/2016,Politicians,@BobbyJindal,.@GovernorPerry will be an excellent Energy Secretary. Energy sector workers in Louisiana and the rest of America will have a strong ally. +12/22/2016,Politicians,@BobbyJindal,Merry Christmas from the Jindal family. Isaiah 9:6 https://t.co/UNbfZR0cQr +11/23/2016,Politicians,@BobbyJindal,.@BetsyDeVos has been a champion of education reform for decades and is a fantastic choice to lead the Department of Education. +11/23/2016,Politicians,@BobbyJindal,Congrats to my friend @NikkiHaley! She has done an outstanding job leading South Carolina and will represent us well at the UN. +11/06/2016,Politicians,@BobbyJindal,Let's Geaux Tigers! https://t.co/A9jjinz6Zu +11/01/2016,Politicians,@BobbyJindal,Slade is ready with the ice cold @DrPepper! https://t.co/lrSNs5v9NF +10/25/2016,Politicians,@BobbyJindal,"My former Governor’s Office intern, @MolliexJaY is an up-and-coming singer/songwriter. Check out her latest video: https://t.co/zI0AiTQNut" +10/22/2016,Politicians,@BobbyJindal,The boys are ready to cheer on the Cubs tonight! Throwback from their visit to Chicago last year. https://t.co/vT6tpN8Qiq +10/18/2016,Politicians,@BobbyJindal,RT @FoxNews: .@toddstarnes : The day a college football player stood alone to honor America | https://t.co/Crb8uuqEOR https://t.co/7hyuRnIv… +09/26/2016,Politicians,@BobbyJindal,Thanks Les for all you have done for LSU and Louisiana. It is an honor to call you a friend. +09/01/2016,Politicians,@BobbyJindal,".@LABI_BIZ, @BRAC_BatonRouge and other business groups team up in new program to help small business flood victims: https://t.co/aZkYkPKoLs" +08/09/2016,Politicians,@BobbyJindal,"Candy sales +Computer newsletter +Odd office jobs +Math tutor +Concessions, @LSUfootball +Biochem lab research +Dr's office intern +#firstsevenjobs" +07/17/2016,Politicians,@BobbyJindal,"Our thoughts and prayers are with our law enforcement community after today's horrible shootings. All lives matter, plain and simple." +06/21/2016,Politicians,@BobbyJindal,Supriya and I offer our heartfelt condolences and prayers to his family.” (3/3) +06/21/2016,Politicians,@BobbyJindal,"as well as his humor, Paul was a fixture in our community. He will be missed. (2/3)" +06/21/2016,Politicians,@BobbyJindal,"""Paul brought his tenacity and wit to viewers for decades. Known for his investigative journalism (1/3) https://t.co/MUYJ0w5Ohf" +06/13/2016,Politicians,@BobbyJindal,Horrified and saddened by the deadly terrorist attack in Orlando. Supriya and I are praying for those affected by this terrible tragedy. +06/07/2016,Politicians,@BobbyJindal,Congratulations to @BaseballCrank on your successful tenure at @Redstate. Best of luck in your new endeavor at @NRO. +05/27/2016,Politicians,@BobbyJindal,I'm about to join @GovMikeHuckabee on the @SeanHannity show. Tune in to @FoxNews! +05/23/2016,Politicians,@BobbyJindal,Proud that Slade and the Sharks won their tournament; especially when they came together & prayed after the finals. https://t.co/d2aazVTrOc +05/09/2016,Politicians,@BobbyJindal,Happy Mother's Day to these amazing moms and all mothers out there. https://t.co/lDHJihyfyP +05/04/2016,Politicians,@BobbyJindal,In 15 minutes I’m live with @SeanHannity on @FoxNews. Don’t miss it! +05/04/2016,Politicians,@BobbyJindal,Don’t miss my exclusive interview with @SeanHannity tonight at 9:25 CT where I’ll talk about tonight’s Indiana primary. Tune in! +05/02/2016,Politicians,@BobbyJindal,Trump’s success exposes our failure as conservatives: https://t.co/e6N9rayp21 +03/22/2016,Politicians,@BobbyJindal,"Clearly, open borders don’t work. https://t.co/epltiUqm50" +03/22/2016,Politicians,@BobbyJindal,Our thoughts and prayers are with the people of Brussels. +03/16/2016,Politicians,@BobbyJindal,America is better than our leaders. What I learned running for president. https://t.co/jciTIpebdf +03/10/2016,Politicians,@BobbyJindal,Obama hasn't found a problem he won't blame on GOP. Here is why rise of Trump is on him: https://t.co/s1HlzXR4om https://t.co/9p925SGxIp +02/14/2016,Politicians,@BobbyJindal,“Today we lost the greatest judicial mind most of us have ever known. Every Republican must right now pledge that…” https://t.co/Dt8Dty0jl5 +02/06/2016,Politicians,@BobbyJindal,This election is about the future. That's why I'm endorsing Marco Rubio for President. https://t.co/QFXPz4ZESv +12/24/2015,Politicians,@BobbyJindal,Merry Christmas from our family to yours! https://t.co/8Ka5U7qcKq +12/15/2015,Politicians,@BobbyJindal,Students at St. Benedict the Moor School in NOLA are thriving because of our statewide scholarship program. https://t.co/2u7Ozd1tYv +11/28/2015,Politicians,@BobbyJindal,.@LSUCoachMiles is a great coach and a better man. He is a fantastic ambassador for our state. I hope he remains our coach. +11/22/2015,Politicians,@BobbyJindal,Supriya and I would like to congratulate Governor-elect John Bel Edwards. https://t.co/FdMwt4p43M +11/17/2015,Politicians,@BobbyJindal,It’s been an incredible honor to run for President of this great country. Thank you: https://t.co/IhDcIWOSg8 https://t.co/iRTJ7Bl5IW +11/17/2015,Politicians,@BobbyJindal,RT @SupriyaJindal: .@BobbyJindal about to be on #SpecialReport. Tune in to @FoxNews now. https://t.co/qQAi6vnYRW +11/17/2015,Politicians,@BobbyJindal,RT @BretBaier: Don't miss presidential candidate/Louisiana Gov @BobbyJindal coming up at the top of the hour on #SpecialReport on @FoxNews … +11/17/2015,Politicians,@BobbyJindal,RT @SpecialReport: Tonight on #SpecialReport I'll be joined by presidential candidate and Louisiana Governor Bobby Jindal. Jindal... https:… +11/17/2015,Politicians,@BobbyJindal,"President Reagan reminded us that each generation must renew the principles of freedom. +https://t.co/xbqwrH2OTb" +11/16/2015,Politicians,@BobbyJindal,"Breitbart: ""‘Bobby Jindal Was Right’ On Muslim No-Go Zones"" https://t.co/wL5no8852l +https://t.co/3iC4Kzq8xi" +11/16/2015,Politicians,@BobbyJindal,I just signed an Executive Order instructing state agencies to take all available steps to stop the relocation of Syrian refugees to LA. +11/16/2015,Politicians,@BobbyJindal,"President Obama staying the course on our ISIS “strategy"" is the definition of insanity." +11/14/2015,Politicians,@BobbyJindal,"My letter to @POTUS: In light of Paris terrorist attacks, time to pause process of refugees coming to the US https://t.co/v2K7wuigX0" +11/14/2015,Politicians,@BobbyJindal,"We must destroy Radical Islam. +https://t.co/t1DqcsKR5P" +11/14/2015,Politicians,@BobbyJindal,It’s time for Americans to discard political correctness and come to terms with the truth -- Radical Islam is evil and plans to destroy us. +11/14/2015,Politicians,@BobbyJindal,"This isn't an attack just on France. It's an attack on freedom and free +people everywhere." +11/14/2015,Politicians,@BobbyJindal,I’m speaking live at the @FloridaGOP #SunshineSummit. Watch here: https://t.co/6m3ulrckvZ +11/13/2015,Politicians,@BobbyJindal,Our thoughts are with the people of France. Please say a prayer for Paris as they deal with this horrible attack. +11/13/2015,Politicians,@BobbyJindal,".@RedState: ""The willingness to take on tough jobs and tough issues runs throughout his career"" https://t.co/gFVUlmDKno" +11/13/2015,Politicians,@BobbyJindal,RT @LeonHWolf: I agree with this strongly ---> https://t.co/ZYPuHyJaAO +11/13/2015,Politicians,@BobbyJindal,RT @RedState: Conservative Voters Should Give Bobby Jindal A Chance: https://t.co/wCThEo59MX +11/13/2015,Politicians,@BobbyJindal,RT @BreitbartNews: .@BobbyJindal on the grassroots surge in the GOP primary: There's a sense of urgency and that the idea of America is sli… +11/13/2015,Politicians,@BobbyJindal,.@Redstate: “The Best Man For The Job” https://t.co/gFVUlmDKno +11/12/2015,Politicians,@BobbyJindal,President Obama has encouraged a culture of professional victimhood and grievance: https://t.co/svsh74CWBa +11/12/2015,Politicians,@BobbyJindal,Read my new blog post on the absurdity happening at the University of Missouri & other campuses around the country: https://t.co/rz29G3RuDR +11/12/2015,Politicians,@BobbyJindal,"The absurdity of political correctness on college campuses is laughable, but the consequences are not: https://t.co/svsh74CWBa" +11/12/2015,Politicians,@BobbyJindal,"The failed progressive experiment over the last 7 years has produced more poverty and inequality. +https://t.co/Khx0M5ksl0" +11/11/2015,Politicians,@BobbyJindal,We can't afford to send a big government Republican to the WH. We have too many of those already in DC. https://t.co/uKQwagtIx3 +11/11/2015,Politicians,@BobbyJindal,Retweet if you think big government spending is wrong and immoral. https://t.co/j4vF4JneEB +11/11/2015,Politicians,@BobbyJindal,"We cut the government economy to grow the Louisiana economy. It worked. +https://t.co/uGILYKOxuq" +11/11/2015,Politicians,@BobbyJindal,RT @TeamCavuto: .@BobbyJindal ON #GOPDebate: It's not personal. This is about who is willing to go to D.C. and fight for us. https://t.co/Z… +11/11/2015,Politicians,@BobbyJindal,RT @SupriyaJindal: .@BobbyJindal talking with @TeamCavuto on @FoxBusiness. Tune in now! https://t.co/iKnIgwg1xl +11/11/2015,Politicians,@BobbyJindal,.@TeamCavuto and I will discuss last night’s #GOPDebate at noon ET on @FoxBusiness. Don’t miss it. +11/11/2015,Politicians,@BobbyJindal,"Here is the reality of big government spending: We are stealing money from our kids. That is wrong. That is immoral. +https://t.co/fCFlKnPcGE" +11/11/2015,Politicians,@BobbyJindal,"At 11:30ET, I'm live on @HappeningNow where I’ll talk about last night's #GOPDebate. Tune in!" +11/11/2015,Politicians,@BobbyJindal,"RT @EWErickson: Again, Bobby Jindal Won the First Debate https://t.co/qMXQWL9ZV0" +11/11/2015,Politicians,@BobbyJindal,"We can't afford to send a big government Republican to the WH. We have too many of those already in DC. #GOPDebate +https://t.co/Hr2pRWlXzq" +11/11/2015,Politicians,@BobbyJindal,"Thank you to our Veterans, who run towards danger, not away from it, so that we can live in the greatest country in the history of the world" +11/11/2015,Politicians,@BobbyJindal,"Let’s not just beat Hillary Clinton, let’s elect a real conservative to the White House. #GOPDebate https://t.co/uKQwagtIx3" +11/11/2015,Politicians,@BobbyJindal,I don't just talk about cutting government. I actually did it. https://t.co/mEyoX9mzhE +11/11/2015,Politicians,@BobbyJindal,RT @BreitbartNews: Watch: Bobby Jindal Offers Chris Christie a ‘Participation Ribbon and a Juice Box’ https://t.co/LIGHqqqJbB +11/11/2015,Politicians,@BobbyJindal,We need a President with a proven track record of cutting government to fix our country's spending problem. https://t.co/LHxvEya9WR +11/11/2015,Politicians,@BobbyJindal,My conservative alternative to Obamacare focuses on restoring power to patients & doctors: https://t.co/BCRAScw8fe https://t.co/7chHkLdcOl +11/11/2015,Politicians,@BobbyJindal,"Records matter. #GOPDebate +https://t.co/QWpgrDNoMO" +11/11/2015,Politicians,@BobbyJindal,I'll give the other governors a ribbon & juice box for trying to cut government but I'm the only one who has done it https://t.co/osRoAldelN +11/11/2015,Politicians,@BobbyJindal,"RT @ShaneGoldmacher: More Jindal post-game: ""I think Chris didn't answer those questions because he couldn't answer those questions.""" +11/11/2015,Politicians,@BobbyJindal,RT @FoxBusiness: .@BobbyJindal says Americans need to teach their children to respect the military. #GOPDebate #SemperFi https://t.co/z9MbS… +11/11/2015,Politicians,@BobbyJindal,"Let’s not just beat @HillaryClinton, let’s elect a real conservative to the White House. #GOPDebate +https://t.co/AqZnY2zuXB" +11/11/2015,Politicians,@BobbyJindal,It's time for a President who believes in American Exceptionalism again. #GOPDebate +11/11/2015,Politicians,@BobbyJindal,We purposefully decided to shrink the size of government in Louisiana. It worked. #GOPDebate https://t.co/A0tLHoRfoR +11/11/2015,Politicians,@BobbyJindal,"It’s time we focus on growing the economy, not the government. https://t.co/pymEuUHeAn #GOPDebate https://t.co/PADwsJesyA" +11/11/2015,Politicians,@BobbyJindal,FACT: I’m the only one running for president who has cut the size and scope of government. https://t.co/BFGM4URs0a https://t.co/lF5I428CxA +11/11/2015,Politicians,@BobbyJindal,I wrote a healthcare plan to repeal Obamacare & replace it with a conservative alternative: https://t.co/BCRAScNJ6M https://t.co/uXtUpHMjjD +11/11/2015,Politicians,@BobbyJindal,"In Louisiana, we instituted pro-growth reforms to bring investment and jobs to our state. It worked. #GOPDebate https://t.co/AEUhP8AWGt" +11/11/2015,Politicians,@BobbyJindal,#TellingItLikeItIs https://t.co/YXbUJbUxJI +11/11/2015,Politicians,@BobbyJindal,RT @FiveThirtyEight: Bobby Jindal's claim that he's the only governor running who cut spending is true: https://t.co/KgG5t7oICT #GOPDebate +11/11/2015,Politicians,@BobbyJindal,I am the only one running for president that has actually cut state spending. Everyone else is all talk. #GOPDebate https://t.co/BE0BIDDPWk +11/11/2015,Politicians,@BobbyJindal,The big government crowd hates what we have done – they say we have cut govt more than anyone. Guilty as charged. https://t.co/gcFBtSZwzj +11/11/2015,Politicians,@BobbyJindal,"Louisiana has more people living & working, w/ higher incomes, than ever before: https://t.co/6Pbpk2uXT7 #GOPDebate https://t.co/8eyWZVREGG" +11/11/2015,Politicians,@BobbyJindal,We can't afford to send a big government Republican to the WH. We have too many of those already in DC. #GOPDebate https://t.co/uYQZPyhBwR +11/11/2015,Politicians,@BobbyJindal,Pre-debate prayer. https://t.co/DGAF1WQAW4 +11/10/2015,Politicians,@BobbyJindal,The #GOPDebate is about to start! Tune in to @FoxBusiness or watch online here: https://t.co/KlzqlJhRyW +11/10/2015,Politicians,@BobbyJindal,"We’re 30 minutes from the start of the #GOPDebate. If you don’t have the @FoxBusiness channel, you can watch here: https://t.co/KlzqlJhRyW" +06/28/2018,Politicians,@lessig,"RT @ThePopular_Vote: @staypufd @JosephPatrice Wrong. What the founders meant by ""republic"" was essentially ""representative democracy."" + +htt…" +06/28/2018,Politicians,@lessig,"RT @wiumlie: «The large ""404"" error message on the front page of the Norwegian website https://t.co/tDkc9LyPX8 looks a lot like an ""SOS"" si…" +06/28/2018,Politicians,@lessig,RT @ischieferdecker: Ein herzliches Willkommen zu unserer ersten Weizenbaum Lecture mit Lawrence @lessig ... https://t.co/t0bOwBkIN1 +06/26/2018,Politicians,@lessig,"RT @drumpfterfire: @SickOfTheSwamp @Mikel_Jollett @TanyaGrahamDVM @JeffFlake @jaketapper Its not a car, it’s a Ford! +It’s not a bird, it’s…" +06/26/2018,Politicians,@lessig,"RT @usaamahmed: RT PaulNemitz ""RT JWI_Berlin: Auftakt unserer neuen Veranstaltungsreihe - Weizenbaum Lectures: Lawrence lessig hält am 4. J…" +06/26/2018,Politicians,@lessig,@Lean_Falcon Thanks. Shld be fixed +06/25/2018,Politicians,@lessig,"RT @JWI_Berlin: Auftakt unserer neuen Veranstaltungsreihe - Weizenbaum Lectures: Lawrence @lessig hält am 4. Juli, um 19 Uhr, im Alten Pala…" +06/22/2018,Politicians,@lessig,"RT @DanMunro: @chasedave @JamesFallows I'm over in the @lessig camp: + +""Campaign finance reform (#CFR) isn't the biggest problem facing the…" +06/22/2018,Politicians,@lessig,Seriously- why isn’t there an Office parody of the Trump Administration? +06/20/2018,Politicians,@lessig,RT @GabbaGabbaMeh: “Good Germans” @lessig https://t.co/PNDfPMq1iz +06/20/2018,Politicians,@lessig,"RT @mpawlo: When I attended the Internet & Society course at @BKCHarvard back in 2001, people like @zittrain, @lessig and @YochaiBenkler wa…" +06/20/2018,Politicians,@lessig,@Crell @EqualCitizensUS It is SO rare that I get to count to 5! +06/19/2018,Politicians,@lessig,"RT @EqualCitizensUS: Everyone seems down about the recent Gill v. Whitford Supreme Court decision. @Lessig offers a different, more optimis…" +06/19/2018,Politicians,@lessig,"From the Lawyers-just-never-learn/give-up-Department: “@LawverSays: Hey, @henryjenkins, have you seen this? Think t… https://t.co/yTnh4y96Pm" +06/19/2018,Politicians,@lessig,RT @fightfortheftr: .@SantiagoAD53 is this really what you want your legacy to be? Do you want to be known as the Democrat who sold out rea… +06/19/2018,Politicians,@lessig,RT @tylercreighton: Good on @SenatorTester for successfully pushing for the Senate to enter the 21st century by electronically filing their… +06/19/2018,Politicians,@lessig,"RT @EqualCitizensUS: Let's talk about copyrights: The CLASSICS Act would give a new right for already created works, protecting them until…" +06/19/2018,Politicians,@lessig,RT @EqualCitizensUS: Omg https://t.co/Ba62oalwI1 +06/19/2018,Politicians,@lessig,“This California Democrat is single-handedly ruining our best chance to save net neutrality” by @fightfortheftr https://t.co/n9GvpeSCm8 +06/18/2018,Politicians,@lessig,"Hey, there’s an important silver lining to the gerrymandering case too many are missing: https://t.co/i5fG4YxDkS" +06/17/2018,Politicians,@lessig,"The PoorPeoplesCampaign is making history! It's time for big media to fully cover it. Join & tell CNN, Fox etc here: https://t.co/w5lMk7Cxv4" +06/15/2018,Politicians,@lessig,"RT @innarliiv: Prof @skominers from @HarvardHBS (w)rapping up Primavera's +book presentation ('Blockchain and the Law') with an improvised…" +06/13/2018,Politicians,@lessig,"RT @anineki: @lessig I agree. Our political branches, @Stortinget and @regjeringen should ensure public access to central sources of law, r…" +06/13/2018,Politicians,@lessig,Law should encourage the spread of the law. This result is out of character for the #1 ranked democracy in the worl… https://t.co/8fP94y4TVn +06/11/2018,Politicians,@lessig,BREAKING: The repeal of #NetNeutrality just went into effect. Your cable company now has even more power to screw y… https://t.co/UlvgEwlbkX +06/11/2018,Politicians,@lessig,"Super-smart podcast reviewing my ""pathetic [red] dot"" theory of regulation. I learned tons, and once we fix democra… https://t.co/ONC4eqWgwb" +06/08/2018,Politicians,@lessig,RT @mmckinnon: @Lessig https://t.co/ociVrvReKn +06/05/2018,Politicians,@lessig,"Devin at @TechCrunch has a smart piece about the fight agnst the latest © give away — a ""give away"" not because art… https://t.co/WXHu9euEWJ" +06/05/2018,Politicians,@lessig,The President was an amazing - and moving - addition. So happy to be part of this. https://t.co/9Z8N68dGQs +06/01/2018,Politicians,@lessig,RT @mpinsley: Tonight I’m with Larry Lessig and https://t.co/82DVVFXPJu PA to tackle the rampant corruption in Harrisburg! https://t.co/3H2… +06/01/2018,Politicians,@lessig,"RT @undergradwoman: Me with Professor @lessig, others & my BFF at @EndPACorruption conference in #Scranton, Pennsylvania. #RockTheVote http…" +05/31/2018,Politicians,@lessig,RT @AdHochuli: campaign finance reform is the ONLY issue if addressed would have a cascading restorative effect on US democracy #lessig2020… +05/30/2018,Politicians,@lessig,Jason Harrow of @EqualCitizensUS on why winner-take-all destroys representative democracy EVERY SINGLE election (an… https://t.co/R136V2x17N +05/28/2018,Politicians,@lessig,Great piece by @EqualCitizensUS inspirer @AdamEichen about what getting sensible gun safety laws will take (aka… https://t.co/amGMc5Qs1c +05/24/2018,Politicians,@lessig,RT @EqualCitizensUS: BIG ANNOUNCEMENT: Equal Citizens is partnering with @bassnectar and @Electric_Forest on a first-of-its kind campaign!… +05/23/2018,Politicians,@lessig,@next_ghost_cz @creativecommons What wld it be? +05/23/2018,Politicians,@lessig,"RT @johnverdon: scholars such as Paul Heald, demonstrate that copyright blocks access to all sorts of no-longer-commercially-viable creativ…" +05/22/2018,Politicians,@lessig,"Hey #California, I've known @JeffBleichCA for more than 25 years. He is extraordinary. https://t.co/6YcXJ8u6PQ" +05/21/2018,Politicians,@lessig,"@davidclowery @neilturkewitz My “misunderstanding” is apparently shared by 40 IP law professors. Oh well, those who… https://t.co/NQhcEFrBtK" +05/21/2018,Politicians,@lessig,@enzomazza @neilturkewitz Hey nice quote. But see https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,@ClaraBellino @WIRED @thetrichordist Retirement is so attractive! But me and who else? See https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,@WastedVinyl @neilturkewitz Hey nice quote! But see https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,"@neilturkewitz @devlinhartline @mattbarblan @KevinRMadigan Hey, great point! But see https://t.co/rBdHqME41O" +05/21/2018,Politicians,@lessig,@devlinhartline @neilturkewitz @Lawrence_Spiwak @enzomazza @AlaiItalia @usa @WIRED @terrencehart wow. content based… https://t.co/DaJkl0ergO +05/21/2018,Politicians,@lessig,@undergradwoman @EqualCitizensUS Alas 5 min is all you get! +05/21/2018,Politicians,@lessig,"RT @EqualCitizensUS: Twenty years ago today, @lessig's plea to Congress that it not accept technology's attack on personal privacy: https:/…" +05/21/2018,Politicians,@lessig,Emma Lindsay has a super smart piece about politic$ — and how my friend Shahid Buttar (running for Congress in CA)… https://t.co/LJePM6lrKr +05/21/2018,Politicians,@lessig,"That world where Nancy Pelosi is with Mitch McConnell, and John McCain is with Paul Wellstone https://t.co/babNibVyr9" +05/21/2018,Politicians,@lessig,"Twenty years ago today, my plea to Congress that it not accept technology's attack on personal privacy: https://t.co/tgjRLjNhL7" +05/20/2018,Politicians,@lessig,@neilturkewitz @Lawrence_Spiwak @devlinhartline @enzomazza @AlaiItalia @usa @WIRED @terrencehart I argued Golan and… https://t.co/fjc5ylK2FH +05/20/2018,Politicians,@lessig,"@JonathanTaplin @HorsebackNoise @davidclowery @enzomazza @AlaiItalia @usa @WIRED @Google Why is that laughable, Jon… https://t.co/mfCf912Ged" +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google State law does not protect published work.… https://t.co/cAlZdT8eU9 +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @HorsebackNoise @enzomazza @AlaiItalia @usa @WIRED @Google where is the “contradictio… https://t.co/b1mvroapWo +05/20/2018,Politicians,@lessig,@neilturkewitz @JonathanTaplin @HorsebackNoise @davidclowery @enzomazza @AlaiItalia @usa @WIRED @Google Still ignor… https://t.co/QIw8gHmNou +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @HorsebackNoise @enzomazza @AlaiItalia @usa @WIRED @Google I came to Stanford and sta… https://t.co/ROebE4E5PU +05/20/2018,Politicians,@lessig,"@JonathanTaplin @Google So on your definition of “shill”, you’re a shill too? https://t.co/pRcj25KlYH" +05/20/2018,Politicians,@lessig,"@davidclowery @JonathanTaplin @Google Yes. And as I told them (and so acted) because they did, I would not advance… https://t.co/BFC1Vyxq4y" +05/20/2018,Politicians,@lessig,"@devlinhartline @neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart i’m more an IP kitten, not bear." +05/20/2018,Politicians,@lessig,@neilturkewitz @Lawrence_Spiwak @devlinhartline @enzomazza @AlaiItalia @usa @WIRED @terrencehart you’re missing the… https://t.co/mSKJVr9Ntl +05/20/2018,Politicians,@lessig,@devlinhartline @neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart Thanks for the correction: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,"@richardcowens We’re speaking the same language, Richard, right? How is playing an old recording publicly “plagiarizing” anything?" +05/20/2018,Politicians,@lessig,@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google When? Shortly before I stopped beating my wife: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart As explained here: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,"@davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google You are mistaken, sir. https://t.co/eifMssI40O" +05/20/2018,Politicians,@lessig,"@HorsebackNoise @davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google um, maybe because it’s not… https://t.co/K0kTQOrzJE" +05/19/2018,Politicians,@lessig,"@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart Hmm, so you concede your source does not apply to c… https://t.co/px9ySGRL44" +05/19/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart He is writing about a copyright offered in exchange… https://t.co/jQN8J2N0UK +05/19/2018,Politicians,@lessig,"@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google That’s interesting (re Goigle and pk), but you called me… https://t.co/7Q1DiCCQD6" +05/19/2018,Politicians,@lessig,@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google Huh? (Not to mention wow!) +05/19/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart You should read what you cite - on his definition i… https://t.co/pFGAhUV0Ju +05/19/2018,Politicians,@lessig,"@RobertBLevine_ What, Robert, is my cell conflict?" +05/19/2018,Politicians,@lessig,@richardcowens “Plagiarism”??!Come on Richard. +05/19/2018,Politicians,@lessig,"RT @DrRimmer: The CLASSICS act is simply a gift, paid for by further weakening the ability of archivists to keep our culture accessible. ht…" +05/19/2018,Politicians,@lessig,@enzomazza @AlaiItalia @usa @WIRED Is there a use which before was free but would now be regulated by felony-protec… https://t.co/IH5jecdUKe +05/19/2018,Politicians,@lessig,RT @demartin: Lawrence @Lessig on the seemingly unquenchable thirst of the copyright industry for monopoly privileges https://t.co/CwJPPUM8… +05/19/2018,Politicians,@lessig,"@drjaniceduffy If you thought this, then you need to read more." +05/18/2018,Politicians,@lessig,"@mischmerz @WIRED According to the court, yes" +05/18/2018,Politicians,@lessig,Lots of 20th anniversaries this year: Here's a retrospect on the MSFT case. https://t.co/41OIHbEnOg +05/18/2018,Politicians,@lessig,@bobkohn “Harmonize” was w/r/t foreign law. But your meaning will certainly be relied upon as Congress “harmonizes”… https://t.co/5fkIkMBhKf +05/18/2018,Politicians,@lessig,©️-term extension: Here they go again. #heyCongressYouAreTotallyBroken https://t.co/ajYPcoW4vt +05/17/2018,Politicians,@lessig,"@bmaygers @HuffPost yea, but the second Trump defeat in Congress deserves more than 4 hours of front page coverage!" +05/17/2018,Politicians,@lessig,"The #NetNeutrality story now lives on @HuffPost in Israel, sort of: + +& btw: thank you, ©, for working so hard to “… https://t.co/tMcbHyVrR8" +05/17/2018,Politicians,@lessig,"Besides the ACA vote, was there another vote Trump lost, @HuffPost? #NetNeutrality" +05/17/2018,Politicians,@lessig,@MichaelDolan Excellent! New go-to-news-page. +05/17/2018,Politicians,@lessig,@GiuseppeTaibi @HuffPost @oath More likely that the @HuffPost AI thinks stories mocking Don Jr. are more important to the Republic. +05/17/2018,Politicians,@lessig,"Hey @huffpost, I went to bed (I’m in Israel) watching the Senate vote to save #NetNeutrality and wake to see it NOT COVERED in #HuffPo?" +05/16/2018,Politicians,@lessig,BREAKING: The US Senate just voted to save #NetNeutrality! Now we have to take the fight to the House. Chip in to h… https://t.co/bQtjrKKpWZ +05/16/2018,Politicians,@lessig,RT @demandprogress: CALLING ALL LOUISIANANS!!! Please call the office of @SenJohnKennedy and say THANK YOU for his vote to save #NetNeutral… +05/16/2018,Politicians,@lessig,Deep respect to @SenJohnKennedy for thinking through the issues of #NetNeutrality independently and carefully. His… https://t.co/bJsBJkcdTC +05/16/2018,Politicians,@lessig,RT @EqualCitizensUS: Senators Murkowski and Kennedy vote yes on net neutrality! The bill to save net neutrality will pass! https://t.co/Dnz… +05/16/2018,Politicians,@lessig,BREAKING: Senate files motion to proceed to final #NetNeutrality vote. There's less than two hours to make your voi… https://t.co/sVrq9DRpMe +05/15/2018,Politicians,@lessig,"86% of voters from across the political spectrum support #NetNeutrality. It's essential for small businesses, free… https://t.co/WjiWEYDse0" +05/15/2018,Politicians,@lessig,"What + +if + +all + +your + +favorite + +websites + +loaded + +this + +slowly + +unless + +you + +paid + +extra + +to + +access + +them? + +The + +S… https://t.co/prZusuqsTX" +05/15/2018,Politicians,@lessig,"URGENT: The Senate votes on #NetNeutrality in less than 48 hours + +https://t.co/ffxqmJFhK5 or call (513) 854-0120 to… https://t.co/sIgQo8IRr4" +05/14/2018,Politicians,@lessig,"@some_guy_532135 @superwuster Net neutrality is ONLY that! Based on Saltzer/Clark/Reed end-2-end principle, decentralized power." +05/14/2018,Politicians,@lessig,@some_guy_532135 And what will you do when it follows the history of EVERY such technology and does? Have you read… https://t.co/qSYx4ehACM +05/14/2018,Politicians,@lessig,"@MikeMeservy Competition? +You are not serious, are you? There is squat little broadband competition in America. And… https://t.co/IL5AzevI40" +05/14/2018,Politicians,@lessig,"no doubt, we'll need ""the force"" on this. https://t.co/TucHuv48B6" +05/14/2018,Politicians,@lessig,This must happen. https://t.co/viUpO6HVv2 +05/14/2018,Politicians,@lessig,"This + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +#NetNeutrality + +ends + +on + +June 11 + +unless + +we + +stop + +it… https://t.co/aFYWKcoJC0" +05/12/2018,Politicians,@lessig,RT @bryancallen: Sometimes you do a podcast with a man the whole country should listen to. @TT_LarryLessig explains why your Government doe… +05/11/2018,Politicians,@lessig,more! https://t.co/PqVvQEAbDd +05/11/2018,Politicians,@lessig,@Jeffrey_Marty I am sorry for that loss. It took me way too long to understand what it meant. +05/10/2018,Politicians,@lessig,"As always, @eff is just the best (amicus is great). https://t.co/JgdIdEdqKI" +05/09/2018,Politicians,@lessig,RT @Represent_PA: @RepresentDotUs @FairDistrictsPA @EndPACorruption @commoncausepa @LWVPA @TYTNetwork @DrawTheLinesPA @AdamEichen @lessig h… +05/09/2018,Politicians,@lessig,@Team_Mitch @DonBlankenship Wow. Here's a measure of just how much @realDonaldTrump has destroyed the standards of… https://t.co/640bRGd52a +05/06/2018,Politicians,@lessig,@danielahanley @EqualCitizensUS It is great news. Effect conditional on getting 98 more electors committed. +05/05/2018,Politicians,@lessig,"RT @NewYorkLiveArts: Did you miss the Live Ideas Keynote conversation with Bill T. Jones, Sherilyn Ifill and Lawrence Lessig? It's up on yo…" +05/03/2018,Politicians,@lessig,Wow. Great article. Just one of the reasons why I support Rob Sand @robsandia https://t.co/a1ZfS8VQXR +05/03/2018,Politicians,@lessig,@steveoftheweb Wish I could - but he seems to have good lawyers. We just have bad laws (still). +05/03/2018,Politicians,@lessig,RT @RoKhanna: My Democracy Dollars bill giving every voter a $50 voucher to use to fund campaigns would change the model of campaign financ… +04/29/2018,Politicians,@lessig,RT @EqualCitizensUS: @lessig writes about the corruption in our democracy and how public funding in our elections could fix it. Read his pi… +04/27/2018,Politicians,@lessig,I Joined the Tea Party to Drain the Swamp. Trump Isn’t Helping. via @NYTimes https://t.co/2pYQklOyvj +04/25/2018,Politicians,@lessig,"RT @AdamEichen: ""Mulvaney’s attitude is a thousand times worse for America than even Donald Trump,"" said @Lessig, founder of Equal Citizens…" +04/25/2018,Politicians,@lessig,@MattWisnefsky Don’t give up all money; give up interested money and commit to fundamental reform as a day-one issue. +04/25/2018,Politicians,@lessig,RT @davidhogg111: I dream of an America with morally just leaders and without citizens united. Simply put if you need to take millions of d… +04/25/2018,Politicians,@lessig,#finally https://t.co/SkwmuwGTcu +04/25/2018,Politicians,@lessig,#respect https://t.co/142A9xZuVZ +04/20/2018,Politicians,@lessig,@nitsch_robert Explain? +04/17/2018,Politicians,@lessig,"RT @NewYorkLiveArts: Live Ideas opens tomorrow! Grab your tickets to the opening keynote with Bill T. Jones, Sherrilyn Iffil and Lawrence L…" +04/12/2018,Politicians,@lessig,"RT @BKCHarvard: RSVP now for Monday's conversation with @lessig, Ruth Okediji, @LauraDeNardis, and @zittrain on the foundational laws of th…" +04/12/2018,Politicians,@lessig,RT @BTJAZCo: Bill T Jones will be moderating the Live Ideas Festival Opening Keynote discussion with Lawrence Lessig and Sherrilyn Iffil. h… +04/10/2018,Politicians,@lessig,@rejon Yea! +04/10/2018,Politicians,@lessig,@MariaChappelleN @robschaaf Hey!! Great to hear from you. And thank you for the reading! +04/09/2018,Politicians,@lessig,We stand with Ale! She's an activist who's been detained by ICE for 33 days & is targeted for deportation. Help here https://t.co/ZCyWn3Nw93 +04/07/2018,Politicians,@lessig,@RingelsteinME Honored to stand with reformers. +04/06/2018,Politicians,@lessig,"@noel_fisher @MAYDAYUS Wow. Thank you, sir." +04/03/2018,Politicians,@lessig,Important piece by Rob Natelson: Convention for proposing amendments not as scary as some suggest https://t.co/IxMzrCEIne +04/02/2018,Politicians,@lessig,RT @Sweet4Governor: So excited to hear Larry Lessig and be part of the panel to talk about the foundational issue of getting money out of p… +04/01/2018,Politicians,@lessig,Super smart https://t.co/cIHvRaXmSY +03/31/2018,Politicians,@lessig,@ben_kelly_ivory It’s a paid ad at a subway station. How could it possibly be propaganda? +03/31/2018,Politicians,@lessig,RT @HarvardAsh: Next Wednesday: You're invited to a book talk with authors @lindsey_brink and Steven Teles. @lessig will moderate. https://… +03/31/2018,Politicians,@lessig,So #AreYouASocialist? https://t.co/1ma9vBS3Or +03/30/2018,Politicians,@lessig,"RT @MAYDAYUS: Searing words from @lessig on @PAGOP's attempt to impeach judges just to keep gerrymandering: “In Putin’s Russia, this is com…" +03/26/2018,Politicians,@lessig,Super smart piece by @samuelmoyn — Pinker’s Misguided Optimism | The New Republic https://t.co/At5ComVaeV +03/24/2018,Politicians,@lessig,#marchforourlives https://t.co/k1L9gQ0WfG +03/23/2018,Politicians,@lessig,"Hey, @EqualCitizensUS is looking for interns: research/digital campaigns/Graphic Design. +Turns out there's more to… https://t.co/CuIhivYUgH" +03/21/2018,Politicians,@lessig,"RT @creativecommons: Pleased to announce CC Founder @lessig will present ""From Unlocking Free Culture to Reviving American Democracy"" at ou…" +03/21/2018,Politicians,@lessig,“An American president does not lead the Free World by congratulating dictators on winning sham elections.” @SenJohnMcCain +03/16/2018,Politicians,@lessig,"@tweets4twits @Newsweek Technically it is the president who nominates but congress has to confirm and so yes - if qualified, anyone" +03/16/2018,Politicians,@lessig,"@tweets4twits @Newsweek Decency inspires, always." +03/15/2018,Politicians,@lessig,@tweets4twits @Newsweek 25th Amendment? +03/15/2018,Politicians,@lessig,"RT @carlmalamud: Just FYI, 1 US 1 goes back to 1754. https://t.co/XB8LoOIyMo Not Supreme Court decision but Supreme Court Reports. FWIW, on…" +03/14/2018,Politicians,@lessig,RT @SarcasmLiving: “You and I both know that as long as our representatives are held hostage to their funders — and their funders are not a… +03/14/2018,Politicians,@lessig,"RT @DanielBiss: 11 months ago today I released my tax returns and asked my opponents to do the same. They said yes. They were lying. + +Throu…" +03/12/2018,Politicians,@lessig,"RT @BruceSkarin: Add this to your watchlist! The title should be: ""The Robin Hoods of Power"" + +Didn't realize just how much I missed hearin…" +03/12/2018,Politicians,@lessig,RT @RepresentDotUs: Lawrence Lessig - United by our Dissatisfaction: https://t.co/0YoURMintW via @YouTube +03/11/2018,Politicians,@lessig,My film with Snowden is on Amazon. https://t.co/Y8LPMORwqz +03/09/2018,Politicians,@lessig,@ColinWinter Is doesn’t imply ought. +03/09/2018,Politicians,@lessig,#vproud the pathetic dot has become Wikipediable. https://t.co/8NHvBgUD6o +03/08/2018,Politicians,@lessig,RT @DowntroddenInDC: @tedcruz Says the dude named Rafael born in Canada. Hilarious. +03/08/2018,Politicians,@lessig,RT @EqualCitizensUS: Read & share this great op-ed by our chief counsel Jason Harrow on #EqualVotes https://t.co/GRZlFnlUUM via @usatoday +03/08/2018,Politicians,@lessig,RT @Crell: There's plenty of corruption in the Democratic side of the isle. @speakermadigan is the poster child for it. He's a disgrace to… +03/08/2018,Politicians,@lessig,Wow. @speakermadigan https://t.co/9jtwrxQqCu +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/z38mQxz4Xk +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/Ypr5EtXHBk +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/SRd3WvCuoj +03/07/2018,Politicians,@lessig,RT @leftycoastr: @cameron_kasky @lessig We can’t fix anything until we get the money out of our politics. Overturning citizens united and p… +03/07/2018,Politicians,@lessig,RT @DavidVMitchell: This! @lessig meet @cameron_kasky https://t.co/D29AGbtaoq +03/07/2018,Politicians,@lessig,"RT @cameron_kasky: The NRA is pretty awful about this, but it’s a bigger issue than that. We need to get money out of politics across the b…" +03/05/2018,Politicians,@lessig,"RT @RumbleComics: The most important part is the last line: ""A full review will take place over the summer, so it wasn't clear how the term…" +03/02/2018,Politicians,@lessig,"@nickdanger69 @Salon @EqualCitizensUS Love Sioux Falls, and born in Rapid City" +03/02/2018,Politicians,@lessig,This video by @Salon does a great job explaining the challenge to the Electoral College that @EqualCitizensUS help… https://t.co/xmGokRHMwK +03/02/2018,Politicians,@lessig,"@realDonaldTrump Seriously, Mr. President. You can’t really be this ignorant." +03/02/2018,Politicians,@lessig,RT @AlyonaMink: 2 of our last 3 presidents were elected without winning the popular vote. Now voters in 4 states are suing to change the sy… +03/01/2018,Politicians,@lessig,RT @EqualCitizensUS: Great interview on #EqualVotes with @lessig & @FastCompany https://t.co/quO3krqAOS +02/27/2018,Politicians,@lessig,@CaseyCagle @Delta @NRA Too bad there is no #FirstAmendment in Georgia. +02/26/2018,Politicians,@lessig,"RT @kayalbasi: An office that represents all Americans should be elected equally by all Americans. + +“The challenge to ‘winner-take-all’ la…" +02/26/2018,Politicians,@lessig,"RT @PatSemple: “For example, in 2016, 99% of campaign spending was in 14 states. Those states, representing just 35% of America, are older…" +02/25/2018,Politicians,@lessig,"RT @Crell: Gun control, campaign control — Steemit https://t.co/skPFtxzlhv" +02/23/2018,Politicians,@lessig,"RT @akaelainesk: @EqualDignity @lessig @TheDavidBoies I am in WV. I wrote to all five of our electors, asking them to represent the WV vote…" +02/23/2018,Politicians,@lessig,RT @EqualDignity: Congrats to @lessig and @TheDavidBoies for filing suit against the winner-take-all laws underpinning the Electoral Colleg… +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics SO by avoiding my questions about the 14th Amendment, I assume that means you concede tha… https://t.co/xUED7BL1gg" +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics You realize we’ve brought four suits, including CA and MA, right? In those BLUE states, i… https://t.co/F4yiB6DL9T" +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics I got that part in my constitution too. What I was asking was where is the part that says… https://t.co/xfzyAGuTEb +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics There are plenty of bounds to the 14th Amendment — see, e.g., Washington v. Davis. But ar… https://t.co/7TkDQRo4n2" +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics Huh? Quote a SINGLE example of that view from the framing. +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics I’ve read the constitution. Does it say “winner take all” in yours? Your confusing a COMP… https://t.co/bbNCq9aHzf +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics Now join the ones that read: https://t.co/ehVAsAih0z. #DamnRightWeAreADemocracy +02/23/2018,Politicians,@lessig,@UKBleedingBlue @bassobryce Where is winner-take-all in the Constitution. I must have missed it. +02/23/2018,Politicians,@lessig,RT @ScreenTimeComic: @RumbleComics @douglevin @Scholastic @artandwriting @BoingBoing @doctorow @lessig Well done! And you have _just_ begun… +02/23/2018,Politicians,@lessig,@nashville_brook https://t.co/vkHpCr4hAC +02/23/2018,Politicians,@lessig,@nashville_brook happy to respond to you once you’ve responded to me. +02/23/2018,Politicians,@lessig,"RT @pwb: If it was a pro-Trump partisan issue, the lawsuits would only have been launched in blue states. They weren't. https://t.co/oNQ3WC…" +02/23/2018,Politicians,@lessig,@nashville_brook As a “material implication” of what? I wasn’t predicting anything about Ryan. I was saying what wa… https://t.co/6bBT1gUFwa +02/23/2018,Politicians,@lessig,"This excerpt is almost a decade old, but it still summarizes pretty accurately the ""dependence corruption"" of Congr… https://t.co/A2ex2NJjn1" +02/23/2018,Politicians,@lessig,@nashville_brook @GeoffMiami @BethLynch2020 @bourgeoisalien @blupfront1 And in what world is not saying more “doubl… https://t.co/4yNW39b09r +02/23/2018,Politicians,@lessig,@nashville_brook It doesn’t make me “disingenuous.” It marks me as realistic about the effect of raising and pressi… https://t.co/Nw8vsfL99m +02/23/2018,Politicians,@lessig,@rcfwilmette @smerconish Yea @smerconish! +02/23/2018,Politicians,@lessig,"Galvin defends the current(ly unjustly unequal) system by arguing the alternative is likely to elect Trump. Um, wai… https://t.co/tc1V4SVuzZ" +02/23/2018,Politicians,@lessig,We're hiring a campaign manager at @EqualCitizensUS. Is it you? https://t.co/nH84U2QdS1 +02/23/2018,Politicians,@lessig,RT @PupsNPol: Great article and not the first to say this. I believe @lessig was arguing this as well back in Dec 2016. https://t.co/Ifg3R… +02/23/2018,Politicians,@lessig,@nashville_brook Nope. “Let it go” +02/23/2018,Politicians,@lessig,RT @BunsNotBombs: @dylan_forest @Illini102 @MaryAnnAhernNBC @BernieSanders @DanielBiss @KennedyforIL @Ra_Joy @NationalNurses @OurRevolution… +02/23/2018,Politicians,@lessig,"@jda2000 @Molly_McDonough @ABAJournal Reason and principle?- yea, pretty foreign ideas" +02/23/2018,Politicians,@lessig,@bwohlgemuth @Molly_McDonough @ABAJournal Reading cures lots. But look - the bill of rights is the cure for the so… https://t.co/2G8MpMuJYa +02/23/2018,Politicians,@lessig,@jda2000 @Molly_McDonough @ABAJournal ? +02/23/2018,Politicians,@lessig,@DarkGently @nashville_brook Do you think the author of a blog post written about by Newsweek writes the titles to… https://t.co/MpbysSg0NA +02/23/2018,Politicians,@lessig,@bwohlgemuth @Molly_McDonough @ABAJournal Not a winning strategy. But even if it were- what is the argument FOR den… https://t.co/ioN0ytVzuu +05/29/2018,Politicians,@LincolnChafee,"""Two of my favorite sayings are, 'Fortune favors the bold' and 'Discretion is the better part of valor.' The latter… https://t.co/FgIQzUNOYR" +05/28/2018,Politicians,@LincolnChafee,https://t.co/1Y7ifYrBGK +05/28/2018,Politicians,@LincolnChafee,https://t.co/Z3pQVFwSIn +05/23/2018,Politicians,@LincolnChafee,"Frank Bruni op-ed in NY Times today says Mueller investigation is backfiring on Dems, actually strengthening Trump. Who said that first?" +05/22/2018,Politicians,@LincolnChafee,"It’s unfortunate that Venezuela, in our hemisphere, is gravitating into the China, Russia, Iran and Turkey orbit." +05/20/2018,Politicians,@LincolnChafee,"Good luck to Volvo sailors! Great to work with Dir’s. Licht, Coit et al to fund necessary infrastructure in tough b… https://t.co/SHLHGEQABF" +05/18/2018,Politicians,@LincolnChafee,"Good to see NY Times covering DNC nominating reforms- more open primaries, no superdelegates and better caucus voting procedures." +05/17/2018,Politicians,@LincolnChafee,Electoral College a rout for Trump. Not good. Reforms should include all open primaries. Is Cynthia Nixon next victim of closed NY primary? +05/16/2018,Politicians,@LincolnChafee,Shiite al Sadr leads Iraqi elections. We ousted Sunni Saddam. We embrace Sunni Saudi’s and fight with Shiite Iran.… https://t.co/HOZVMHcGbv +05/15/2018,Politicians,@LincolnChafee,"Best wishes to Rev. Donnie Anderson, a hard worker for just causes." +05/14/2018,Politicians,@LincolnChafee,"NBA’er Jerry West: “What is right is not always popular, and what is popular is not always right.”" +05/13/2018,Politicians,@LincolnChafee,Happy Mother’s Day! +05/12/2018,Politicians,@LincolnChafee,"HRC didn’t campaign in Wisc. Russia’s fault! Dissed Sanders Nation, email server, Clinton Foundation... Refocus on… https://t.co/d4DMcpc6un" +05/11/2018,Politicians,@LincolnChafee,Endless ink on Russian meddling. Waiting for reforms to flawed DNC that gave us a candidate who lost to Trump. Ban superdelegates. +05/10/2018,Politicians,@LincolnChafee,"How are we going to get Middle East back to the days of Carter Begin, Reagan Shamir, HW Bush Rabin, Clinton Peres, Barak, working for peace?" +03/24/2016,Politicians,@LincolnChafee,Help RI #LifeSmarts team by watching their pre-national competition video. More views=more points for our team! https://t.co/bsXUJ1f47H +10/23/2015,Politicians,@LincolnChafee,Thank you Democrats especially in New Hampshire and Iowa! I enjoyed meeting you! I learned a lot! +10/23/2015,Politicians,@LincolnChafee,I look forward to speaking at DNC Women's Forum tomorrow morning. I'll address my future in the campaign there. #chafee2016 +10/22/2015,Politicians,@LincolnChafee,"Especially in Kashmir, unrest calls for reconciliation, not +inflammation. Will @narendramodi stand up for Muslims? +https://t.co/uMXnQKBN4Y" +10/22/2015,Politicians,@LincolnChafee,"Anti-refugee hate, rightwing reactionaries have festooned into +intolerable racial violence that threatens democracy. +https://t.co/DC0nQ4jLSe" +10/22/2015,Politicians,@LincolnChafee,"Peace treaty w/ N. Korea tricky proposal. Good in many ways, +difficult in others. But the first step is believing. +https://t.co/7ebRcvn4or" +10/21/2015,Politicians,@LincolnChafee,"Tragic violence in Israel & Palestine stems directly from +frustration with the perpetuity of conflict. Ppl act in desperation +for change." +10/21/2015,Politicians,@LincolnChafee,"Xi Jinping might have advice for @MBuhari as he bravely combats +systemic corruption in Nigeria, an integral fight. +https://t.co/usCpOA9T5H" +10/21/2015,Politicians,@LincolnChafee,"A culture of fear produces dead innocents everywhere, from +Baltimore to Beersheba. #BlackLivesMatter +https://t.co/v9vwZNOl7S #GetGrounded" +10/20/2015,Politicians,@LincolnChafee,"Sweden & Finland joining NATO may not be the best thing for world +security. A threatened Russia will act accordingly +https://t.co/aNOrTOlHl6" +10/20/2015,Politicians,@LincolnChafee,"The UNSC will discuss the rising unrest in Israel/Palestine, but +will there be courage to address the real issues? +https://t.co/ERCQ9tJIDt" +10/20/2015,Politicians,@LincolnChafee,"US drone policy: 90% ppl killed were unintended targets. What +better way to help our enemies recruit? @the_intercept +https://t.co/AiX2J1vZ4n" +10/20/2015,Politicians,@LincolnChafee,"Drone strikes 10x more likely to kill civilians than manned +aircraft. when you have no skin in the game. +https://t.co/mH1TuPUpkR #chafee2016" +10/19/2015,Politicians,@LincolnChafee,"EU countries can't agree on #refugee distribution so offer $3B to +Turkey. Turkey needs the help, and I'm for whatever works at this +point." +10/19/2015,Politicians,@LincolnChafee,"Smh @MLP_officiel shameful fear mongering hurts the nation, in +France and everywhere. FYI praying Muslims ≠ Nazis +https://t.co/jBrLHsMeBD" +10/19/2015,Politicians,@LincolnChafee,"In Kunduz airstrike, we knew the target was a hospital. How can we +hold others accountable when we don't ourselves? +http://t.co/wOA4WfMhsy" +10/18/2015,Politicians,@LincolnChafee,"Looking forward to the Mt Chocorua Area Dems Friendraiser today at the World Fellowship Center in Albany, NH #nhpolitics #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,Getting ready to talk with Wolf Blitzer on @CNN! http://t.co/QFM8L8AGp3 +10/14/2015,Politicians,@LincolnChafee,"To learn more about #ProsperitythroughPeace and to volunteer or donate to my campaign, please visit http://t.co/bq3HUGxUdP" +10/14/2015,Politicians,@LincolnChafee,"I raised the minimum wage three times as Governor. When it's +needed it's needed. #DemDebate #Chafee2016 #ProsperitythroughPeace" +10/14/2015,Politicians,@LincolnChafee,"No lines in the sand. In trying to assert strength we expose +weakness. #DemDebate #ProsperitythroughPeace #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,"Look at the @GOP primary farce, it's of utmost importance we +elect a Democrat to the White House. #DemDebate #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,".#ProsperitythroughPeace is really only way. Our eagle clutches both +arrows and an olive branch. Let's give the latter a try. #DemDebate" +10/14/2015,Politicians,@LincolnChafee,Politicians shouldn't promise what they can't deliver. #DemDebate #Chafee2016.com #ProsperitythroughPeace +10/14/2015,Politicians,@LincolnChafee,"Unemployment? Not on my watch. As Governor RI saw the biggest drop +in unemployment, second only to Nevada #DemDebate #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,"I'm the only candidate standing with @POTUS on #TPP. Trade will +happen, let's write the rules well and improve our world.#DemDebate" +10/14/2015,Politicians,@LincolnChafee,"Only candidate to be a Mayor, U.S. Senator, and Governor. The most +experience, the highest ethical standards #DemDebate #Chafee2016" +10/13/2015,Politicians,@LincolnChafee,Looking forward to discussing the issues during the #CNNDebate tonight at 8:30 pm eastern time. #ProsperitythroughPeace #chafee 2016 +10/13/2015,Politicians,@LincolnChafee,RT @TreTre0: Everyone enjoys a good underdog story. Let's see what @MartinOMalley @LincolnChafee @JimWebbUSA bring to the #DemocraticDebate… +10/13/2015,Politicians,@LincolnChafee,RT @devintstewart: Policy integrity on TPP from @LincolnChafee https://t.co/k7W23BZEDI +10/13/2015,Politicians,@LincolnChafee,"Repubs too quickly condemn mental illness as the problem, what +about teaching our boys that violence is the answer? +http://t.co/fhuNiZT2Mu" +10/12/2015,Politicians,@LincolnChafee,"Yes! International leaders band together in Peru to address +corporate tax evasion. Exactly as it should be done +http://t.co/BXAfPT08bx" +10/12/2015,Politicians,@LincolnChafee,"Asking your people to die in another Intifada will not lead to +liberation Mr. Haniyeh. Try championing peace #Hunda +http://t.co/LZTJCESRe4" +10/11/2015,Politicians,@LincolnChafee,"Israel/Palestine: attacks by youth with no ties to armed groups +indicates not indoctrination, but deeper problem. +http://t.co/waEdJHEmC8" +10/11/2015,Politicians,@LincolnChafee,"Calling for peace and good will is necessary, but @narendramodi might also +want to condemn violence against Muslims +http://t.co/VdzG2MMX3N" +10/11/2015,Politicians,@LincolnChafee,We cannot be numb to drone strikes. They spread terror. I will end them. #GetGrounded #ProsperitythroughPeace http://t.co/Ko9DiGiYMy +10/10/2015,Politicians,@LincolnChafee,"Dangerous saber-rattling continues. Why do people think deepening +sectarian divides will ever solve anything? +http://t.co/n0K6DwPTwq" +10/10/2015,Politicians,@LincolnChafee,"Climate change is a NATIONAL SECURITY ISSUE. You'd think Repubs +would be all over it. @GOP +http://t.co/wXN8DNyxjk #GetGrounded #chafee2016" +10/09/2015,Politicians,@LincolnChafee,".#TPP isn't about containing China, it's about American leadership, +international order & our allies. @solis_msolis +http://t.co/cZeAO6dl5i" +10/09/2015,Politicians,@LincolnChafee,".@netanyahu's ban is good move to prevent escalation. As things +heat up, we need to cool down #hudna +http://t.co/dceWvnR1oj #chafee2016" +10/09/2015,Politicians,@LincolnChafee,Congrats @GovMaryFallin on suspending executions in OK. US should join the many nations to ban capital punishment. http://t.co/m09qY4eLHP +10/07/2015,Politicians,@LincolnChafee,"Mental health is public health, everywhere. Gaza is no exception. +Look out for the kids. Trauma leads to terror +http://t.co/YUJwUFvd3q" +10/07/2015,Politicians,@LincolnChafee,"A lot of shouting is going on about the TPP trade deal. Let's +actually read the document and measure its merits before demonizing it." +10/07/2015,Politicians,@LincolnChafee,What have we taught Saudis with our drone war? Wedding parties & civilians are NOT targets http://t.co/2YEkV4NNjZ #ProsperitythroughPeace +10/07/2015,Politicians,@LincolnChafee,"While I sometimes must sacrifice my grammar for the tweet, I'm glad +my supporters don't on Facebook! @singernews +http://t.co/iHjri3ZSd9" +10/07/2015,Politicians,@LincolnChafee,"Trust, cooperation starts with respect and a handshake. @POTUS @JZarif http://t.co/2uTorvlWKa #GetGrounded #Chafee2016" +10/06/2015,Politicians,@LincolnChafee,"Hope to see you at the meeting of the Cheshire County Dems tonight in Keene, NH. #Chafee2016 #ProsperitythroughPeace #NHpolitics" +10/06/2015,Politicians,@LincolnChafee,"Good piece by @ConStelz @BrookingsFP ""Why Europe needs America, a little"". We unequivocally need Europe too! +http://t.co/86R6CTwe70" +10/06/2015,Politicians,@LincolnChafee,"Looking forward to talking about my campaign w/ residents of RiverWoods today in Exeter, NH. #chafee2016 #ProsperitythroughPeace #nhpolitics" +10/06/2015,Politicians,@LincolnChafee,"We cannot accept such racism and apathy in our country. +#HisNameIsCayden and he reminds us for what we fight. +https://t.co/KhfesL8wVL" +10/06/2015,Politicians,@LincolnChafee,@yonimweiss against capital punishment +10/06/2015,Politicians,@LincolnChafee,RT @ChairmanBuckley: Great turnout at @SCDCNHDems fall event with @LincolnChafee #nhpolitics http://t.co/SC2Tip2w09 +10/05/2015,Politicians,@LincolnChafee,Chinese cap and trade great start. Where's the US plan to price carbon emissions? Global summit coming soon. http://t.co/MFLzT5qxm1 +10/05/2015,Politicians,@LincolnChafee,"At least @GOP didn't shut down the govt again, but kicking the can down the road isn't good governance http://t.co/3xngrU7IKn #GetGrounded" +10/05/2015,Politicians,@LincolnChafee,More than half of Americans know that US foreign policy bears some responsibility for the #refugeecrisis. Let's act http://t.co/UroBKtOu4R +10/05/2015,Politicians,@LincolnChafee,Unethical price spikes by some drug companies hurt people. Time for price controls?#GetGrounded #Chafee2016 http://t.co/UFTGahfhMq +10/04/2015,Politicians,@LincolnChafee,"It's a crisp fall day in Strafford County, NH! Hope to see you at the @SCDCNHDems Fall Dinner in Rochester! #nhpolitics #Chafee2016" +10/04/2015,Politicians,@LincolnChafee,"Our duty to protect refugees doesn't stop at the camp's welcome mat. Sexual abuse, exploitation are constant dangers http://t.co/DzU5en4tgW" +10/04/2015,Politicians,@LincolnChafee,"US bombs Afghan hospital. Too many similar stories. We need fresh ideas, new approach. #GetGrounded #Chafee2016 http://t.co/fnjGPpiAIA" +10/04/2015,Politicians,@LincolnChafee,"Winter is Coming, and #refugees are racing against a perilous clock. Humanity must act, no time for #GameOfThrones http://t.co/j2zCUI6btf" +10/03/2015,Politicians,@LincolnChafee,With China we have agreements and we have differences. Focusing on the former helps resolve the latter. http://t.co/lNFFKD9WEa #chafee2016 +10/03/2015,Politicians,@LincolnChafee,"ACA, #Obamacare is threatened now by some Democrats call for repeal of ""cadillac tax"". Not good. #chafee2016 http://t.co/sX1IKCneRC r=0" +10/03/2015,Politicians,@LincolnChafee,"Peace draws closer in Colombia, but intl. attention is required to keep the pressure on the players http://t.co/aein8oNl31 #GetGrounded" +10/02/2015,Politicians,@LincolnChafee,"The Marshall Islands know that climate change is an existential threat to humanity. @MinisterTdB stays fighting +http://t.co/O5iFABgUmd" +10/02/2015,Politicians,@LincolnChafee,"Rest in peace Doug Kendall, who bravely fought for a progressive Constitution and a bright future for America http://t.co/NrhsCDsueb" +10/02/2015,Politicians,@LincolnChafee,"Sheikh Tamim of Qatar does the wise thing, calls for dialogue between Iran and Arab states. Let's start talking. http://t.co/mK57K7UzXt" +10/01/2015,Politicians,@LincolnChafee,Both @POTUS and Putin are right on Syria: democracy cannot be imposed but also tyranny cannot be promoted https://t.co/bmLfT6oXS7 #chafee20… +10/01/2015,Politicians,@LincolnChafee,"RT @ForeignPolicyI: .@LincolnChafee-Regarding Assad, our experience toppling leaders has not been a good one. Cold War experience was to wa…" +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: .@LincolnChafee: It wasn't that long ago when we thought that we were on the verge of lasting peace between world power… +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: .@LincolnChafee: I would work to lift sanctions against Russia for its actions in Ukraine. #FPIForum +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: Next at the #FPIForum - Democratic Presidential candidate @LincolnChafee talks to @Adesnik. +10/01/2015,Politicians,@LincolnChafee,Looking forward to taking part in the Foreign Policy Institute's Annual Forum 2:15 pm today at the Newseum in DC. #ProsperitythroughPeace +10/01/2015,Politicians,@LincolnChafee,"I want to wish @NGRPresident @MBuhari and all of Nigeria happy Independence Day! Unity & Faith, Peace & Progress: words worth celebrating!" +10/01/2015,Politicians,@LincolnChafee,"We must strengthen the UN. More peacekeepers & resources can only be good, why stop at here? http://t.co/6U5kxb5ydT #GetGrounded #chafee2016" +09/30/2015,Politicians,@LincolnChafee,What have we taught the Saudis with our drone war? Wedding parties and civilians are NOT targets http://t.co/OePEOvYXCB #chafee2016 +09/30/2015,Politicians,@LincolnChafee,Hear more about my plan to create a new tax bracket for the wealthy on @fbncountdown with @LizClaman today at 3pm ET. #chafee2016 +09/30/2015,Politicians,@LincolnChafee,RT @LizClaman: Democratic Presidential candidate & fmr. Gov. of Rhode Island @LincolnChafee joins us 3pm ET today - tune in! http://t.co/XR… +09/30/2015,Politicians,@LincolnChafee,"Trust, cooperation starts with respect & a handshake.@POTUS @JZarif http://t.co/XlyTDQV1wG #GetGrounded #ProsperitythroughPeace #Chafee2016" +09/29/2015,Politicians,@LincolnChafee,"Mr. @Snowden-Fed court ruled you're right! I'm the only presidential candidate who has vowed to bring you home, charges dropped. #chafee2016" +09/29/2015,Politicians,@LincolnChafee,Something is wrong- we arm and train fighters who then join the other side. Why? That is the question. #GetGrounded #chafee2016 +09/27/2015,Politicians,@LincolnChafee,"By failing to strengthen and fix our intl. institutions, we retreat to a disastrous paradigm of unipolarity +http://t.co/9An8N8QBDw" +09/27/2015,Politicians,@LincolnChafee,"French crops die from WWI we continue to reap the seeds of war, ever sown deep. Why do we keep lusting for conflict? http://t.co/lvxCu0yb2U" +09/27/2015,Politicians,@LincolnChafee,Peace in Colombia w/ FARC looks promising. Accountability remains key. Fingers crossed. #ProsperitythroughPeace http://t.co/YyESCVvfYh +09/27/2015,Politicians,@LincolnChafee,ISIS recruits grow rapidly. We need to understand why people buy what #ISIS sells. #GetGrounded #chafee2016 #ProperitythroughPeace +09/26/2015,Politicians,@LincolnChafee,A great day at @HamptonDems Community Picnic! #chafee2016 #nhpolitics #prosperitythroughpeace http://t.co/C98waStQuW +09/26/2015,Politicians,@LincolnChafee,"Sam Nunn is right: talking and engagement, NOT silence is the key to progress w/ Russia. Good looks @politicalinsidr http://t.co/hhFEw2zGtV" +09/26/2015,Politicians,@LincolnChafee,"Hope to see you @HamptonDems Community Picnic today at noon at 39 Mill Rd, Hampton, NH. #chafee2016 #ProsperitythroughPeace #nhpolitics" +09/26/2015,Politicians,@LincolnChafee,Every nation in the world must reevaluate how its energy subsidies work against a sustainable future http://t.co/FWqYbUjhRq #GetGrounded +09/25/2015,Politicians,@LincolnChafee,".@SteveKingIA how can you say the refugees crisis is a calculated effort by ""Islam"" to invade non-Muslim countries? Fear>anger>hate>darkside" +09/25/2015,Politicians,@LincolnChafee,"“@ReutersWorld: Putin to meet Obama on September 28: Kremlin http://t.co/VAX144c7VK”. Let's start a healthy, honest dialogue. #chafee2016" +09/25/2015,Politicians,@LincolnChafee,"Burkina Faso political turmoil presents test for the nation, region, and world. Diplomacy is the only real solution. http://t.co/wAgHzr3EiE" +09/25/2015,Politicians,@LincolnChafee,With climate change comes investing change. Watch for water as a high value commodity. #GetGrounded #chafee2016 http://t.co/8C0AnyNbLk +09/25/2015,Politicians,@LincolnChafee,Thank you Mt Chocurua Democrats! #nhpolitics #prosperitythroughpeace #chafee2016 http://t.co/qgEiOS5NUb +09/24/2015,Politicians,@LincolnChafee,Both long overdue and very timely: @RepEBJ introduces H.R. 413 to honor victims of hate crimes & prejudice post 9/11 http://t.co/H9JNkRKNHx +09/24/2015,Politicians,@LincolnChafee,The Iraq War caused the refugee crisis and our European allies suffer from our mistakes. Fruits of #neoconkoolaid http://t.co/DiUDno4bsL +09/23/2015,Politicians,@LincolnChafee,Yemen continues to denigrate into worse humanitarian disaster. US should rally intl efforts for peace talks http://t.co/Ky6Rt4QWRK +09/23/2015,Politicians,@LincolnChafee,"If we want the world to listen to us, we need to listen to the world. Time to reflect on the #Cuba embargo @UN http://t.co/kM9QZQOkiV" +09/23/2015,Politicians,@LincolnChafee,At the #EU refugee summit today leaders must come together on more than quotas to address the millions still trying to escape. +09/22/2015,Politicians,@LincolnChafee,"Still, talking w/ Russians is first step. Good to see @POTUS doing it. Repubs would probably just launch missiles http://t.co/aV88qLaOlJ" +09/22/2015,Politicians,@LincolnChafee,How to address source of hate crimes? We must educate to embrace diversity and criticize a whitewashed history. http://t.co/C8fPOLlYji +09/22/2015,Politicians,@LincolnChafee,Russia should know that sustainable peace in Syria is impossible w/o reforming the Assad regime. http://t.co/i1JBrbCqUz #GetGrounded +09/22/2015,Politicians,@LincolnChafee,"RT @RitaCosby: Listen to our great show featuring @CardinalDolan, @DavidGregory, @RandPaul and @LincolnChafee – http://t.co/nOfAaJtLHY + +#po…" +09/22/2015,Politicians,@LincolnChafee,"Welcome Pope Francis! @Pontifex said in #Cuba, ""If you are different than me, why don't we talk?"" #GetGrounded #ProsperitythroughPeace" +09/21/2015,Politicians,@LincolnChafee,"Good to see intl. leadership & cooperation address situation in Burkina Faso. Exactly right, let's keep an eye on it http://t.co/ERS8bYjAWn" +09/21/2015,Politicians,@LincolnChafee,"Oman, on the Arabian Peninsula is emerging as a leader of peaceful efforts in the region. Responsible for release of US prisoners in Yemen." +09/21/2015,Politicians,@LincolnChafee,".@GOP You should already know this, but race baiting and fear mongering, immoral themselves, ultimately hurt you http://t.co/3j6Cl843tb" +09/21/2015,Politicians,@LincolnChafee,.@realBenCarson shames himself and the Constitution with Muslim president comment. Bigotry is incompatible with the values of this nation. +09/21/2015,Politicians,@LincolnChafee,"Brinkmanship in Syria w/Russia will kill more, prolong conflict. Let's come to our senses now and talk. @JyShapiro http://t.co/1RbooIuhFk" +09/21/2015,Politicians,@LincolnChafee,New docs show Bush/Cheney ignored 4th Amend. & Justice Dept on wiretapping. Probably still think they're right. http://t.co/qYCmqySl33 +09/20/2015,Politicians,@LincolnChafee,"Hmm, let's look at just some of the things the Republican candidates got wrong in the debate. http://t.co/0Xc0oydRtx #Chafee2016" +09/20/2015,Politicians,@LincolnChafee,"You can't say #Putin didn't warn us in speech in Munich in '07. The ""unipolar"" speech. #chafee2016 Prosperity through Peace." +09/20/2015,Politicians,@LincolnChafee,"Empowering disgraceful Islamaphobia at his rally may be @realDonaldTrump 's campaign strategy, but it's unequivocally shameful and wrong." +09/19/2015,Politicians,@LincolnChafee,Thank you NH Democrats! Prosperity through Peace! #chafee2016 #nhpolitics http://t.co/IBoqCZcaoa +09/19/2015,Politicians,@LincolnChafee,Governor O'Malley and Governor Chafee exchange pleasantries at the NH Democratic Convention. #chafee2016 #nhpolitics http://t.co/lNgrIQwYyH +09/19/2015,Politicians,@LincolnChafee,RT @cspanradio: 9:30amET LIVE: .@NHDems Convention w/@HillaryClinton @BernieSanders @LincolnChafee @MartinOMalley Lawrence Lessing http://t… +09/18/2015,Politicians,@LincolnChafee,Prejudicial fears poison our nation. @IStandwithAhmed you inspire us all to fight for compassion. #IStandWithAhmed http://t.co/CeCOzV7V8n +09/18/2015,Politicians,@LincolnChafee,"Humbled by diplomacy w/the South, N. Korea seeks to reaffirm fantasy stance of power and legitimacy w/ nukes http://t.co/fwlvgLt3Ac" +09/18/2015,Politicians,@LincolnChafee,I fear fear itself. The last time the @GOP was this scared of Muslims we invaded Iraq. Hawks must stop squawking http://t.co/pOVNm8wm1h +09/17/2015,Politicians,@LincolnChafee,"I'm all for fiscal responsibility, but Republicans are severely harming our govt's ability to make good decisions. http://t.co/4U9swHjWYf" +09/17/2015,Politicians,@LincolnChafee,"Mass incarceration is not ""tough on crime"", its tough on families; wasting money & poisoning society. #GetGrounded http://t.co/Im7fyhSzZq" +09/17/2015,Politicians,@LincolnChafee,The only solution to Syria and the refugee crisis is via diplomacy. Time to bring the players to the table. @npwcnn http://t.co/SspZ0MfAW7 +09/17/2015,Politicians,@LincolnChafee,"Wow, so much anti @Obama vitriol #GOPDebate. THEY forget the mess THEY handed him in '08- deficits, freefall economy, broken MIddle East." +09/17/2015,Politicians,@LincolnChafee,How can they be so indignant? They and @GOP leaders are responsible for class warfare & disparity in this country and beyond. #CNNDebate +09/17/2015,Politicians,@LincolnChafee,An hour in #cnndebate & they've started WWIII and bashed women. Next: beating on immigrants and more damage to the poor & Middle Class. +09/16/2015,Politicians,@LincolnChafee,.@GOP predicate American greatness on mostly violent posturing and offer no vision @Brookings_FP @will_mccants http://t.co/rP2muVfw3s +09/16/2015,Politicians,@LincolnChafee,.@Pontifex very right about the tip of the iceberg. We must reorient global order towards #ProsperitythroughPeace http://t.co/XY7XlPdtSZ +09/16/2015,Politicians,@LincolnChafee,Tea Party Repubs trying to kill Ex-Im Bank are killing good American jobs. Bank's been helping companies since 1934. http://t.co/huGWRaxi57 +09/16/2015,Politicians,@LincolnChafee,"Invading Iraq empowered ISIS, increasing violence & sectarian tensions in climate of poor governance #GetGrounded http://t.co/BTgcRaSllh" +09/16/2015,Politicians,@LincolnChafee,Thank you for a lively conversation @plaistowdems tonight in NH! #chafee2016 #nhpolitics Prosperity through Peace. http://t.co/P6LKXEBtKB +09/16/2015,Politicians,@LincolnChafee,RT @Geoz137: @LincolnChafee Glad to have seen you at @colbysawyer Collge in New Hampshire. +09/15/2015,Politicians,@LincolnChafee,.@steven_pifer at @Brookings_FP notes that Repubs are empty on addressing Russia. Tasty carrot > posturing stick. http://t.co/DerrY2CRB1 +09/15/2015,Politicians,@LincolnChafee,"At Colby-Sawyer College Town Hall Meeting in New London, NH http://t.co/PSi7sqy2p5" +09/15/2015,Politicians,@LincolnChafee,"Learn more about my campaign at a Town Hall Meeting today at 4 pm @colbysawyer in New London, NH #Chafee2016 #ProsperitythroughPeace" +09/15/2015,Politicians,@LincolnChafee,"A lack of transparency plus a paradigm of dire national security produces tragic results, in Egypt and everywhere http://t.co/qzeQcUwdMv" +09/15/2015,Politicians,@LincolnChafee,"RT @iowademocrats: We're excited to announce the speakers for the 2015 JJ Dinner: @LincolnChafee, @HillaryClinton, @MartinOMalley and @Bern…" +09/15/2015,Politicians,@LincolnChafee,RT @RichRubinoPOL: Is Lincoln Chafee the Heir Apparent to Ron Paul on Foreign Policy? http://t.co/ALYjkN9egD +09/15/2015,Politicians,@LincolnChafee,Putin coming to UN. So far he's rebuffed in meeting @POTUS. Why? Let's listen re: Syria and ISIS #GetGrounded http://t.co/OA2snYMPyB +09/14/2015,Politicians,@LincolnChafee,In New Hampshire today for the meeting of the @rcdcnh Rockingham Democrats tonight at 7PM in Exeter. #chafee2016 +09/14/2015,Politicians,@LincolnChafee,"Cheney foolishly against #irandeal. He was wrong about Iraq, he's wrong now. #Prosperity through Peace #chafee2016 http://t.co/VmCkfzQOds" +09/14/2015,Politicians,@LincolnChafee,Think the Middle East is complicated? Some Iranians say US is secretly protecting ISIS. #GetGrounded #chafee2016 http://t.co/38WmZQ6aQe +09/13/2015,Politicians,@LincolnChafee,"Important time in our history. As nations evolve we should avoid ""preachments of the west…laced with hypocrisy."" http://t.co/QeugJ0xjfy" +09/12/2015,Politicians,@LincolnChafee,"In Haverhill, MA for the 350th Anniversary Celebration at Riverside Park." +09/12/2015,Politicians,@LincolnChafee,"Looking forward to meeting you this afternoon @rcdcnh booth during the Old Home Days Celebration in Sandown, NH #chafee2016 #nhpolitics" +09/12/2015,Politicians,@LincolnChafee,"See you at the Chester, NH Old Town Days Fair this afternoon. #chafee2016" +09/12/2015,Politicians,@LincolnChafee,Oklahoma death row case shows flaws of capital punishment. Past due to join civilized nations and end it.#GetGrounded http://t.co/ihujwJUBbX +09/11/2015,Politicians,@LincolnChafee,RT @WMUR9_Politics: WATCH LIVE: Conversation with the Candidate w/ @LincolnChafee - http://t.co/7G4wW2NMa8 #wmur2016 #fitn #nhpolitics http… +09/11/2015,Politicians,@LincolnChafee,RT @WMUR9: WATCH LIVE: Conversation with the Candidate w/ @LincolnChafee - http://t.co/JRsbmK1Dx6 #wmur2016 #fitn #nhpolitics http://t.co/C… +09/11/2015,Politicians,@LincolnChafee,"To learn more about my campaign, watch WMUR-TV's Conversation with the Candidate tonight at 7pm ET or view it on http://t.co/7LjlIP7y5O" +09/11/2015,Politicians,@LincolnChafee,Baltimore settles $6.4 million with Freddie Gray family. High costs all around from irresponsibility and injustice. http://t.co/dADhYjLatV +09/10/2015,Politicians,@LincolnChafee,Thank you @CarrollDems for your warm reception tonight in Ossipee! #chafee2016. #nhpolitics http://t.co/Fx8mwRL7xu +09/10/2015,Politicians,@LincolnChafee,"Looking forward to meeting @CarrollDems tonight in Ossipee, NH #NHpolitics #Chafee2016" +09/10/2015,Politicians,@LincolnChafee,".@POTUS must lead the charge to strengthen intl. institutions & address world humanitarian crises, and end Syrian war http://t.co/VWzT1Alt34" +09/10/2015,Politicians,@LincolnChafee,Meeting with the Keene Sentinel Editorial Board today in NH. #chafee2016 #nhpolitics http://t.co/sEBnBICqBO +09/10/2015,Politicians,@LincolnChafee,"Solving the refugee crisis: treating the source is more than ending conflict, it's addressing climate change http://t.co/C89coWBEKr" +09/10/2015,Politicians,@LincolnChafee,I support raising min. wage but we need more debate on a tax code that better helps low wage workers. #GetGrounded http://t.co/dSzPC7oDKp +09/09/2015,Politicians,@LincolnChafee,"Ready to meet Democrats in Sandown, NH #chafee2016 #nhpolitics http://t.co/SBsjzpksNz" +09/09/2015,Politicians,@LincolnChafee,Hear my plan for Prosperity through Peace at @rcdcnh Presidential Candidate Forum at Sandown Town Hall 7pm tonight. #nhpolitics #chafee2016 +09/09/2015,Politicians,@LincolnChafee,Republicans try once again to undermine American leadership internationally & endanger the whole world. #Chafee2016 http://t.co/0XyxYO1yyb +09/09/2015,Politicians,@LincolnChafee,I approve. Merkel calls for mandatory but fair quotas for refugee resettlement. This burden rests with us all. http://t.co/zy1sbNR8rc +09/09/2015,Politicians,@LincolnChafee,Don't like widening gulf with Russia re: Syrian war. @Potus and Putin should talk. #GetGrounded #chafee2016 http://t.co/qMqSBPxrW4 +09/08/2015,Politicians,@LincolnChafee,"Colin Powell speaks sense about #irandeal. Verification, not trust. Reagan said ""trust but verify"" w/ Soviet Union. http://t.co/FV0DQ7R1Vi" +09/08/2015,Politicians,@LincolnChafee,“@Davos: The case for fusion energy http://t.co/Z2q3MxF8Jx http://t.co/CbtxGZaZey”We must explore all energy to save world for our children +09/08/2015,Politicians,@LincolnChafee,"We should spend our remaining carbon budget on transitioning to a clean economy, not continuing our wasteful one. http://t.co/m1k3hOLyD7" +09/08/2015,Politicians,@LincolnChafee,Now Pakistan and Brits are killing people with drones. What will this genie do out of the bottle?#GetGrounded http://t.co/br8avy1IxU +09/07/2015,Politicians,@LincolnChafee,Looking forward to speaking with @NHDems this afternoon at the Annual Labor Day BBQ in Amherst. #Chafee2016 #nhpolitics +09/07/2015,Politicians,@LincolnChafee,Thank you NH @AFLCIO for all of the good work you do today and every day! #chafee2016 #nhpolitics http://t.co/YYhfkmm9KT +09/07/2015,Politicians,@LincolnChafee,Honoring American workers on this Labor Day 2015 and celebrating with NH@AFL-CIO at annual breakfast in Manchester. #GetGrounded #chafee2016 +09/06/2015,Politicians,@LincolnChafee,Hope @JohnKerry & Russians can get on the same page w/Syria. Need their help to end that war. #GetGrounded#chafee2016 http://t.co/enpjNRnfdR +09/05/2015,Politicians,@LincolnChafee,Iraq War started chain of events leading to refugee crisis. Will Cheney neocons apologize for their tragic mistake? #GetGrounded#chafee2016 +09/04/2015,Politicians,@LincolnChafee,Playing blame game does not produce results. Solution to the refugee crisis requires collective action & cooperation. http://t.co/IQAqZqmVqB +09/04/2015,Politicians,@LincolnChafee,"How can we improve government transparency and accountability, with low cost? Yelp might help. #chafee2016 http://t.co/cCQ5QXkWIW" +09/04/2015,Politicians,@LincolnChafee,"As Russia grapples with energy independence and economic woes, the success of its future relies on peace, diplomacy http://t.co/q2wc1LXDiP" +09/04/2015,Politicians,@LincolnChafee,Years ago govmt officials stopped black students from entering white schools. Now they stop gay people from marriage.#GetGrounded#chafee2016 +09/03/2015,Politicians,@LincolnChafee,Gulf Countries should seize diplomatic opportunity presented by#irandeal; proxy wars can't be alternative.#chafee2016 http://t.co/SSomChzUPP +09/03/2015,Politicians,@LincolnChafee,"If we truly want to prevent radicalization to violence, we need to stop yelling every time. No more #neoconkoolaid http://t.co/q1N6r5a03F" +09/03/2015,Politicians,@LincolnChafee,"UN says Mid East wars costing a generation of children their schooling. Chaos, heartbreak & Cheney won't apologize. http://t.co/P2qag25yyg" +09/02/2015,Politicians,@LincolnChafee,"Turkey: jailing any journalists, not just Americans, erodes democratic legitimacy & incites voiceless to violence. http://t.co/hIektQkx1L" +09/02/2015,Politicians,@LincolnChafee,"Fruits of engagement will soon bloom w/#Cuba, & their youth will be better equipped to contribute to world economy http://t.co/6ZS9UEPwyx" +09/02/2015,Politicians,@LincolnChafee,RT @WMUR9: .@LincolnChafee joins @JoshMcElveen for Conversation with the Candidate to air Sept. 11 #nhpolitics #fitn #wmur2016 http://t.co/… +09/02/2015,Politicians,@LincolnChafee,RT @WMUR9_Politics: .@LincolnChafee joins @JoshMcElveen for Conversation with the Candidate to air Sept. 11 #nhpolitics #fitn #wmur2016 htt… +09/02/2015,Politicians,@LincolnChafee,In Manchester taping A Conversation with the Candidate to air Sept.11 at 7pm ET on WMUR-TV & http://t.co/7LjlIP7y5O http://t.co/gOzBXpFAoR +09/02/2015,Politicians,@LincolnChafee,@Pontifex stance re: Holy Year of Mercy emphasizes the compassion and empathy integral in addressing women's issues http://t.co/Lq7LHuNnuR +09/02/2015,Politicians,@LincolnChafee,The @GOP attack on #PlannedParenthood funding is an assault on poor people. Again. @PPFA #GetGrounded #chafee2016 http://t.co/OIdxtzlCFb +09/01/2015,Politicians,@LincolnChafee,"Racial discrimination in civic participation shames our democracy, be it voting or serving on juries. Time to act. http://t.co/7i9smw3bob" +06/25/2018,Politicians,@JimWebbUSA,Some insight into cotton-picking and my heritage: My Cotton-Pickin Mama https://t.co/QOqt4L7t1o +11/22/2017,Politicians,@JimWebbUSA,RT @POLITICOPro: Former Democratic senator @JimWebbUSA tapped to lead @DeptVetAffairs education panel. More from @mstratford: https://t.co/… +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""I'm comfortable with my vote. My vote is private to me...I did not endorse Hillary Clinton."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: Jim Webb on Trump: ""This is an attempt to pull different types of Republicans into the system"" to payback the voters who…" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: ""They're looking toward 2018 and they don't have a message."" - @JimWebbUSA on the Democratic party. #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""The Democratic party...has moved very far to the left."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""The message that has been shaped by the Democratic party has been based on identity politics."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA to the Democrats: ""You've lost white working people. You've lost flyover land."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA:""There is an aristocracy that pervades American politics."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: This morning on #MTP: @SenSanders, @JimWebbUSA, @greta, @PatMcCroryNC, @Eugene_Robinson & @KattyKayBBC" +01/20/2017,Politicians,@JimWebbUSA,Trump’s electoral base & genuine status as a political outsider positions him to bring two much-needed adjustments: https://t.co/wsUTWxbEh1 +12/20/2016,Politicians,@JimWebbUSA,Bill Clinton reminds media that he won by a “landslide” in electoral college. Let’s remember he won only 43 percent of the popular vote. +12/15/2016,Politicians,@JimWebbUSA,https://t.co/B65D6UdrV9 via @12WCV & @IJRopinion +12/02/2016,Politicians,@JimWebbUSA,"RT @FDRLST: Jim Webb Addresses America's Elites, Trump, And Foreign Policy https://t.co/BWh8ygswfy" +04/27/2016,Politicians,@JimWebbUSA,The United States must step up to this challenge. The future stability of East Asia depends on it. https://t.co/TtGXw9kk8H +04/25/2016,Politicians,@JimWebbUSA,We can celebrate Harriet Tubman without disparaging Andrew Jackson https://t.co/Fiio3K7cwx #WebbNation https://t.co/gee3ERkET0 +04/25/2016,Politicians,@JimWebbUSA,Was Old Hickory a Monster? https://t.co/Fiio3K7cwx +04/25/2016,Politicians,@JimWebbUSA,"Examining the recent debate about President Andrew Jackson, Jim Webb wrote a piece for Monday's @washingtonpost. We'll share it in the a.m." +03/09/2016,Politicians,@JimWebbUSA,"America’s former CIA chief: ‘If we don’t handle China well, it will be catastrophic’ +https://t.co/8zEMVaEhqI" +03/09/2016,Politicians,@JimWebbUSA,"RT @WebbNation2016: Congratulations to @JimWebbUSA. +Named of the 100 most influential on veterans issues. + +https://t.co/s9DFUfHzyo" +03/06/2016,Politicians,@JimWebbUSA,RIP Nancy Reagan and Pat Conroy. Many fond memories with the Gipper & the Great Santini. +03/06/2016,Politicians,@JimWebbUSA,"Glad @TulsiGabbard spoke up: ""A lot of people warned me against doing what I did...” https://t.co/7ujejsLEhQ" +03/05/2016,Politicians,@JimWebbUSA,"""I will never change these views in order to adapt to a party platform as a way to get nominated for the presidency. "" -Jim 10/20/15" +03/05/2016,Politicians,@JimWebbUSA,The Republican Party Is Shattering by @peggynoonannyc https://t.co/UUg1eSoW1x via @WSJ +03/04/2016,Politicians,@JimWebbUSA,RT @WebbNation2016: Let's correct the record. Too many false headlines. Statement from Senator Webb's account: https://t.co/412GpugEMR +03/04/2016,Politicians,@JimWebbUSA,"RT @MelissaMelimac: @mandosally @politico Media headlines false. He said he would not vote Clinton, but doesn't support any candidate at th…" +03/04/2016,Politicians,@JimWebbUSA,"Sen Jim Webb said he would not vote for Mrs. Clinton, but he does not support any candidate at this point. https://t.co/6ILsBkQie1" +03/04/2016,Politicians,@JimWebbUSA,Senator Webb is on deck on @Morning_Joe on #MSNBC right now. +03/04/2016,Politicians,@JimWebbUSA,RT @Morning_Joe: Coming up... @AriFleischer @JimWebbUSA @chucktodd #morningjoe https://t.co/QWVZjUULT1 +03/03/2016,Politicians,@JimWebbUSA,Slated to appear on @MSNBC's @Morning_Joe tomorrow (Friday) morning at around 7:40 ET. #WebbNation https://t.co/aRBADDSCN7 +02/20/2016,Politicians,@JimWebbUSA,"RT @WebbNation2016: World Day of #SocialJustice +@JimWebbUSA - 1st American journalist to report on Japanese prisons. + +https://t.co/9ddEkqVG…" +02/18/2016,Politicians,@JimWebbUSA,The White House must send a very clear message to China: https://t.co/anNoa6KNK8 +02/13/2016,Politicians,@JimWebbUSA,My condolences to Justice Scalia's family on this sad and unfortunate day. +02/12/2016,Politicians,@JimWebbUSA,A statement from Jim Webb https://t.co/l83qdlBW9f #WebbNation +02/08/2016,Politicians,@JimWebbUSA,Jim Webb will address the World Affairs Council in Dallas Thursday & the Dallas Morning News Editorial Board Friday. https://t.co/c3Q1i58WBv +02/03/2016,Politicians,@JimWebbUSA,China's claim of “indisputable sovereignty” in South China Sea must be vigorously disputed by the US. -Jim https://t.co/lYZT9vbcM6 +01/30/2016,Politicians,@JimWebbUSA,"Jim Webb to address the World Affairs Council of Dallas/Fort Worth, Texas, Feb. 11 https://t.co/mGylBT8W3G @dfwworld https://t.co/GfWnONxitq" +01/19/2016,Politicians,@JimWebbUSA,"Rest easy, Glenn Frey. Peaceful, Easy Feeling. You made my world a far richer place." +01/18/2016,Politicians,@JimWebbUSA,RT @WebbNation2016: #WebbNation #RunJimRun We need a leader who puts country before party. https://t.co/38ZiTfSLmn +01/15/2016,Politicians,@JimWebbUSA,"@rtlehr Sen. Webb is actively engaging w/ many stakeholders every day, examining every obstacle he'd need to overcome in an Independent bid." +01/14/2016,Politicians,@JimWebbUSA,WashPost: The Presidential Debate Commission is readying for a serious 3rd party candidate https://t.co/8Ckoa5gZ9L https://t.co/NLXBKiGb0j +01/13/2016,Politicians,@JimWebbUSA,"If there’s one thing nearly all Americans share, it’s a disgust for our broken two-party system. https://t.co/PuWMzmDqap" +01/13/2016,Politicians,@JimWebbUSA,"#SOTU / #DemDebate +#WebbNation https://t.co/NZB8uLQ3nJ" +01/12/2016,Politicians,@JimWebbUSA,"2007: Sen Webb gave official response to State of the Union. Is what he said still relevant? #SOTU #WebbNation +https://t.co/IvXSEthxjn" +01/11/2016,Politicians,@JimWebbUSA,U.S. must emphasize determination to reject China's claims so to maintain stability in one of most vital regions. https://t.co/ooOiHBA2wz +01/08/2016,Politicians,@JimWebbUSA,RT @SalenaZitoTrib: .@JimWebbUSA moves closer to independent run nets finance chair organizes ballot strategy https://t.co/qQRgNPVOcV http… +01/08/2016,Politicians,@JimWebbUSA,RT @UniPolitica: .@JimWebbUSA is considering a possible independent bid for the presidency after dropping from the Democratic race https://… +01/08/2016,Politicians,@JimWebbUSA,"RT @BillKristol: Re @JimWebbUSA considering independent presidential run, here's @weeklystandard edit from three months ago: https://t.co/x…" +01/07/2016,Politicians,@JimWebbUSA,Frm Draft Biden Finance Dir leads fundraising for Jim Webb’s potential independent candidacy https://t.co/igk5LQOBFx https://t.co/tkxctcyOU4 +01/01/2016,Politicians,@JimWebbUSA,RT @MelissaMelimac: @JimWebbUSA #WebbNation Let's make #2016 the year of the #Independent #InWithJim +12/31/2015,Politicians,@JimWebbUSA,Yet again illuminating the reality that our tax system unfairly favors accumulated wealth. https://t.co/BHVqxMWsCy https://t.co/z10zvjG7aS +12/30/2015,Politicians,@JimWebbUSA,"RT @davemontoya: Let's go @JimWebbUSA! America needs a voice, give us a voice in this election. #webbnation #independentnation #2016 https…" +12/29/2015,Politicians,@JimWebbUSA,"RT @davemontoya: It's time, @JimWebbUSA give the American people an opportunity to know you. Run. We're hungry for an #Independent https://…" +12/28/2015,Politicians,@JimWebbUSA,"RT @timkni: If the election comes down to Clinton vs. Trump, I will vote for @JimWebbUSA whether he is on the ballot or not. https://t.co/…" +12/28/2015,Politicians,@JimWebbUSA,"RT @davemontoya: I'm ready @JimWebbUSA. America needs a new voice, an #Independent voice in the corridors of power. #WEBBNATION #2016 https…" +12/28/2015,Politicians,@JimWebbUSA,RT @Gamgra: @JimWebbUSA Jim Webb was the only Democrat I'd ever vote for - and if matched up against many Repubs I'd still vote for him. #W… +12/27/2015,Politicians,@JimWebbUSA,Video: Webb blasts Hillary Clinton for ‘inept leadership’ on Libya https://t.co/caKQnADUUT #WebbNation +12/27/2015,Politicians,@JimWebbUSA,RT @SalenaZitoTrib: If @JimWebbUSA runs as an independent then we will finally have a true independent candidate & one hell of a race. http… +12/26/2015,Politicians,@JimWebbUSA,"RT @edpolicy: Must-read article examines vicious cycle endured by South's rural poor -""A grim bargain"": https://t.co/bxicQQtovN https://t.c…" +12/26/2015,Politicians,@JimWebbUSA,Hillary Clinton’s failed vision in Libya & the Arab Spring are foreign policy leadership at its worst. https://t.co/NC80rbKLfP +12/26/2015,Politicians,@JimWebbUSA,RT @LAMBDF: #WEBBNATION @JIMWEBBUSA Websites and Social Media (Official and Unofficial) https://t.co/0j6BAmYZ7A via @wordpressdotcom +12/24/2015,Politicians,@JimWebbUSA,Obama's comments show how out of touch this administration & the Democratic Party have become w/ working men & women https://t.co/gopcKhDlhn +12/24/2015,Politicians,@JimWebbUSA,Obama has neglected the plight of working Americans. No wonder Democrats got trounced in the last two midterms. https://t.co/gopcKhDlhn +12/23/2015,Politicians,@JimWebbUSA,#WebbNation going strong https://t.co/I9oUzEzaMe +12/22/2015,Politicians,@JimWebbUSA,Our hearts are heavy as we mourn & honor the six U.S. service members who were killed in Afghanistan Monday. +12/22/2015,Politicians,@JimWebbUSA,We are a country founded not by conquest but by the guarantee of freedom. https://t.co/ifo23gJFo7 || #WebbNation +12/20/2015,Politicians,@JimWebbUSA,"Jim Webb​ on call of duty. #WebbNation +https://t.co/ZJJarqzGCQ" +12/19/2015,Politicians,@JimWebbUSA,@David5Fernandez @dknott409 Sen. Webb is no longer seeking the nomination. He's seriously considering an Independent bid for president. +12/18/2015,Politicians,@JimWebbUSA,Good for Bernie. The DNC is nothing more than an arm for the Clinton campaign. https://t.co/nI0Ua2BPwE +12/18/2015,Politicians,@JimWebbUSA,RallyPoint: Jim Webb's Favorite Hand Gun? https://t.co/G4uBjvqHfa via @RallyPoint +12/18/2015,Politicians,@JimWebbUSA,RT @tmills43: https://t.co/ekMfZ1Czge Who was leading on drug policy reform? Criminal Justice reform? @JimWebbUSA Media ignored Jim's vi… +12/18/2015,Politicians,@JimWebbUSA,@guitarplayer232 @1_LovelyBitch @BernieSanders Senator Webb is still a candidate for president. He isn't seeking the Democrat nomination. +12/16/2015,Politicians,@JimWebbUSA,"#WebbNation +https://t.co/RtPImgXaUr https://t.co/Exxv4ffMvC" +12/16/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: NBC/WSJ Poll: 70% believe US is headed in wrong direction. Want a different kind of leadership approach than Obama #Elec… +12/14/2015,Politicians,@JimWebbUSA,@wolfangagua Senator Webb has supported nuclear energy. +12/14/2015,Politicians,@JimWebbUSA,"President doesnt have power to commit US to ""legally binding” agreement. Wrong on Iran & TPP https://t.co/XU76svY48S https://t.co/AHBFW7NyI6" +12/13/2015,Politicians,@JimWebbUSA,@CapeCodGunny Still a candidate. Not seeking a party nomination. Looking at every challenge in considering an independent bid. +12/13/2015,Politicians,@JimWebbUSA,"An introduction to #WebbNation +https://t.co/HO6VXguaiX" +12/13/2015,Politicians,@JimWebbUSA,RT @AleyMags: Come on @JimWebbUSA. We need someone to stop these wars of hate. I can't think of anyone better to fight for peace. +12/12/2015,Politicians,@JimWebbUSA,"@parenthetical Sen Webb still a candidate for POTUS. He's not running for a nomination, but he's still in it, looking @ an Independent bid." +12/11/2015,Politicians,@JimWebbUSA,"RT @tmills43: https://t.co/U6CFJiPGNi ""Take care of your people."" This statement is the epitome of @JimWebbUSA 's lifetime of work." +12/11/2015,Politicians,@JimWebbUSA,"RT @PTWebb1122: As I recall, @JimWebbUSA ONLY participant 1st Dem debate to mention cybersecurity as national security priority. https://t.…" +12/11/2015,Politicians,@JimWebbUSA,".@latimes reports #MiddleClass families, ""pillar of the American dream"", no longer majority https://t.co/apxwhzomae https://t.co/5ZbzfjN435" +12/10/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: The middle class now below 50%. People are struggling. We need @JimWebbUSA for President. #Election2016 https://t.co/aEM… +12/10/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: If we are at war, need a commander in chief. +Define US interests +Develop strategy +Build team +Implement +@JimWebbUSA + https…" +12/09/2015,Politicians,@JimWebbUSA,"RT @Gammalad: @JimWebbUSA The more I see the mess that is this election, the more I lean to lending my support to you." +12/09/2015,Politicians,@JimWebbUSA,"#WebbNation supporters are strong on Twitter, Facebook & in writing to newspapers in support of Webb for President. https://t.co/gl0o3hOx1E" +12/09/2015,Politicians,@JimWebbUSA,RT @endmoronism: @ForgottenProf @JimWebbUSA Amen! Probably the one candidate with the best prepared background to be President. #PureLeader… +12/09/2015,Politicians,@JimWebbUSA,"RT @osok762: @JimWebbUSA with the drums of war beating, the next president should be a veteran. Wow that pretty much eliminates almost ever…" +12/09/2015,Politicians,@JimWebbUSA,"Your support is deeply appreciated! https://t.co/RtPImgXaUr +#WebbNation https://t.co/NRysL4lVy2" +12/09/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: Wanted: exp public servant w foreign policy & govt exp. Mil serv pref/not reqd. +Integrity a must. +House & plane provided. +…" +12/09/2015,Politicians,@JimWebbUSA,"RT @ForgottenProf: @JimWebbUSA I hope your ready make #Independent run, the #USA might need a viable #Alternative #USA is on the edge of th…" +12/08/2015,Politicians,@JimWebbUSA,An ideological divide | Warwick Beacon #WebbNation https://t.co/cBuCfVgFAa +12/08/2015,Politicians,@JimWebbUSA,RT @jesselaymen: @JimWebbUSA So far you are the only candidate reaching out to all Americans and not just certain groups of Americans. +12/08/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: Neither party has offered a serious, trustworthy candidate w/foreign policy, security experience. + +Run @JimWebbUSA Run +@Dr…" +12/08/2015,Politicians,@JimWebbUSA,"RT @Semper_Fi_79: If DNC & RNC hopefuls sound like unwanted extremes, why not take a look @JimWebbUSA who understands the intricacies *real…" +12/08/2015,Politicians,@JimWebbUSA,RT @benscottwheeler: .@JimWebbUSA really enjoyed your foreign policy talk at @CFR_org it's a shame most politicians don't have as nuanced a… +12/07/2015,Politicians,@JimWebbUSA,@JustABonobo Senator Webb is still running for president but is no longer seeking a party nomination. He is considering an Independent bid. +12/07/2015,Politicians,@JimWebbUSA,"""A date which will live in infamy"" +#PearlHarbor attacked December 7, 1941 +Over 2,000 Americans killed. +#NeverForget https://t.co/M2JVY9JRdY" +12/07/2015,Politicians,@JimWebbUSA,Agree w/@David_Gergen. Not looking for a father in chief. Looking for a commander in chief. #ObamaSpeech +12/06/2015,Politicians,@JimWebbUSA,"RT @tmills43: With the national security questions we currently face, https://t.co/nTogLXPTVQ is a MUST READ @JimWebbUSA on point, as usua…" +12/05/2015,Politicians,@JimWebbUSA,"RT @amberpages_g: @TBro_6and12 @JimWebbUSA Gate's Op-Ed describes, but does not name Jim Webb. I don't know who else is running that it des…" +12/05/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: “@JimWebbUSA: Op-ed: The kind of president we need https://t.co/cpTE3vUtUp” +Wise words from Bob Gates. A great public serv…" +12/04/2015,Politicians,@JimWebbUSA,Op-ed: The kind of president we need https://t.co/o7qHRR2qPK +12/04/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: The kind of president we need https://t.co/OWq0KyFwQm @JimWebbUSA #WebbNation #RunJimRun +12/04/2015,Politicians,@JimWebbUSA,RT @tmills43: https://t.co/dNjBBBF4g1 @JimWebbUSA using some good humor with serious policy proposals. https://t.co/irBZMk01dX. Donate w… +12/04/2015,Politicians,@JimWebbUSA,RT @BlueDogPatriot: Vote for @JimWebbUSA #BlueDogDemocrat #RestoreAmerica #Veterans https://t.co/FC5uibbL1y +12/03/2015,Politicians,@JimWebbUSA,"I warned about strategic blunder of so-called Arab Spring, particularly military intervention in Libya. Predictably https://t.co/fFAYlseAjo" +12/01/2015,Politicians,@JimWebbUSA,I warned in ’09 Obama can’t commit U.S. to “legally binding” agreement on climate change w/o Congress's consent. https://t.co/KH2GGVWfaT +12/01/2015,Politicians,@JimWebbUSA,How a Jim Webb independent presidential bid could actually matter (hint: Virginia) https://t.co/NXHPvNXXXx #WebbNation +11/30/2015,Politicians,@JimWebbUSA,"""There is nothing wrong every once in a while with saying the parties are not responding to a rising sentiment..."" https://t.co/0hxtBHX3AY" +11/29/2015,Politicians,@JimWebbUSA,"Treat Drugs Like Cigarettes -- Not As A Crime #WebbNation +https://t.co/xclqcuckju" +11/28/2015,Politicians,@JimWebbUSA,"""We the People"" #WebbNation +https://t.co/7XwPGt9scc" +11/27/2015,Politicians,@JimWebbUSA,"All about Jim Webb. #WebbNation +https://t.co/jwW7vA7KvP" +11/26/2015,Politicians,@JimWebbUSA,"Happy Thanksgiving, #WebbNation. https://t.co/PQN68ROhzy" +11/26/2015,Politicians,@JimWebbUSA,"RT @DraftWebb2016: On behalf of all of us at Draft Webb 2016, we hope that everyone has a very Happy Thanksgiving! https://t.co/HsU12yCNae" +11/25/2015,Politicians,@JimWebbUSA,"RT @hunter_ena: @JimWebbUSA @colbertlateshow I saw that and #TedKoppel said, what I have been saying all along, we need #JimWebb2016" +11/25/2015,Politicians,@JimWebbUSA,"Ted Koppel was on @colbertlateshow this week, discussing the vulnerability of our nation's power grids. https://t.co/ZAzwR4ISQx" +11/25/2015,Politicians,@JimWebbUSA,"RT @Semper_Fi_79: Our country is more divided than ever, do we really need partisan politics as usual? Or do we need someone to #uniteUS? @…" +11/24/2015,Politicians,@JimWebbUSA,RT @averageohvoter: THUNDERCLAP!!! - #RUNJIMRUN https://t.co/xZbbdqrkYs +11/24/2015,Politicians,@JimWebbUSA,"#WebbNation supporters have a ""Thunderclap"" to urge an Independent presidency run. Click through to lend a tweet: https://t.co/6d9OwYO8YS" +11/24/2015,Politicians,@JimWebbUSA,RT @retlt592: @JimWebbUSA @rkuttner PLEASE RUN! +11/24/2015,Politicians,@JimWebbUSA,RT @Scott96735321: @JimWebbUSA We NEED Jim Webb. +11/24/2015,Politicians,@JimWebbUSA,The Quiet Desperation of America’s Working People https://t.co/3AEWkV0Z7w by @rkuttner https://t.co/4lnHTvzloU +11/23/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: Help us get @JimWebbUSA to run as an independent for President in 2016 #WebbNation #politics https://t.co/H1xrqcTLbt +11/22/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: I just supported Ask Jim Webb to run as an (I) on @ThunderclapIt // @draftjimwebb2 https://t.co/NSsCrxt6eC @JImWebbUSA … +11/22/2015,Politicians,@JimWebbUSA,"RT @Wildstar1904: @UlsterUSA @bobbyw24 @Press_Dan @JimWebbUSA wld bring honor, integrity, & leadership to the WH & restore the balance of f…" +11/22/2015,Politicians,@JimWebbUSA,@TimbrookPhD @bobbyw24 Senator Webb has written about why: https://t.co/NVV39v8tE1 +11/22/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: @IsabelleAliciaa @JimWebbUSA Help us get a Thunderclap for Jim! https://t.co/lPZpTOD6bb +11/22/2015,Politicians,@JimWebbUSA,"Thank you for your support! #grateful +https://t.co/e5YzAbh58T https://t.co/yXPRLjWzbu" +11/21/2015,Politicians,@JimWebbUSA,#WebbNation needs your assistance in getting a #ThunderClap going. #Independent https://t.co/PaeYzdq0OY +11/20/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: @JimWebbUSA #webbnation https://t.co/lPZpTOD6bb +11/20/2015,Politicians,@JimWebbUSA,RT @BradWilliamsBDM: @JimWebbUSA We need someone who can keep his head when those about him are losing (or selling) theirs. +11/20/2015,Politicians,@JimWebbUSA,RT @ColoradoTD: @JimWebbUSA Captain the qualities you exhibited as a Marine combat officer are the qualities we need in the leader of the f… +11/20/2015,Politicians,@JimWebbUSA,@ScottCLocke @pbralick Sen. Webb is running for president but not in the Democratic Party. He is exploring an independent bid. +11/20/2015,Politicians,@JimWebbUSA,RT @pbralick: @JimWebbUSA you have best credentials and background to keep USA safe. Hope you run #politics +11/20/2015,Politicians,@JimWebbUSA,"@WakeUp2Politics @darkenator Sen. Webb left the race for Democrat nomination, but he's still a candidate for president, considering options." +11/20/2015,Politicians,@JimWebbUSA,@jesselaymen Very sorry for your loss and grateful for your uncle's service. Thank you for the message. +11/20/2015,Politicians,@JimWebbUSA,"https://t.co/RtPImgXaUr +#WebbNation https://t.co/snEHCJBasU" +11/20/2015,Politicians,@JimWebbUSA,RT @essatu: @JimWebbUSA 2016 election needs him more than ever #jimwebb2016 #jimwebb +11/20/2015,Politicians,@JimWebbUSA,RT @peterogburn: Proud @JimWebbUSA supporter https://t.co/JjGriDrhS6 +11/19/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: I just supported Ask Jim Webb to run as an (I) on @ThunderclapIt // @draftjimwebb2 https://t.co/NSsCrxt6eC @JimWebbUSA … +11/19/2015,Politicians,@JimWebbUSA,RT @eric_barnard4: @JimWebbUSA it was honor to meet you. You'll have my vote! From Vietnam to the White House #OnlyInAmerica https://t.co/w… +11/19/2015,Politicians,@JimWebbUSA,RT @Wildstar1904: @JimWebbUSA 1 of the many reasons I'm all n for #WebbNation. I forwarded that to all my fellow Vet buddies. Run Jim Run! … +11/19/2015,Politicians,@JimWebbUSA,@YumaWxMan @Treezilla Thank you both! +11/19/2015,Politicians,@JimWebbUSA,#WebbNation having some fun. https://t.co/NkWaNR18aL +11/19/2015,Politicians,@JimWebbUSA,RT @Treezilla: @JimWebbUSA Today is 1st time EVER I've donated to a political campaign.Hope 2016 is 1st I vote FOR someone rather than agai… +11/18/2015,Politicians,@JimWebbUSA,RT @realjamesball: @JimWebbUSA I keep trying to imagine a president who is right for these times in my head. I keep coming back to you. Ind… +11/18/2015,Politicians,@JimWebbUSA,"""The Most Presidential Thing Any Candidate Has Ever Said"" +Exclusive interview https://t.co/tpgT1paP5u +#WebbNation #Warriors4Webb" +11/17/2015,Politicians,@JimWebbUSA,"Virginia Poll Looks at Potential Impact of Jim Webb Running as Independent +https://t.co/Oplggw2p4n #WebbNation https://t.co/SToOgjjbYv" +11/16/2015,Politicians,@JimWebbUSA,"@Occidentaljihad @AmateurPolSc @USMC Sen. Webb remains a presidential candidate, but he is no longer running for the Democratic nomination." +11/15/2015,Politicians,@JimWebbUSA,"Mrs. Clinton disparaged integrity of @USMC, claiming wrongly turned away from serving. Tell us when, where & w/whom. https://t.co/NH8SZTk5gw" +11/15/2015,Politicians,@JimWebbUSA,RT @gcrys: Thanks @JimWebbUSA for raising the consciousness on the development gap in our own country. https://t.co/uS4S0Lx2Hu +11/15/2015,Politicians,@JimWebbUSA,Those in France & elsewhere should be able to feel safe & free from the forces of terrorism. https://t.co/jXLrYwQpiM https://t.co/SQL1jPw4fG +11/15/2015,Politicians,@JimWebbUSA,Hong and I offer our prayers and deepest sympathy for the families & friends of each victim of the attacks in Paris. https://t.co/jXLrYwQpiM +11/15/2015,Politicians,@JimWebbUSA,RT @JoshScholer: It's a shame @JimWebbUSA isn't up there. Would be safe to say he would have probably the most sensible plan on foreign pol… +11/15/2015,Politicians,@JimWebbUSA,Our newsrooms filled w/people overwhelmingly from elites who displayed little sensitivity to realities facing many. https://t.co/zlzScsT0Vq +11/14/2015,Politicians,@JimWebbUSA,This article is emblematic of what keeps motivating me despite the very long odds. https://t.co/zlzScsT0Vq https://t.co/Z7vLKWZBi0 +11/13/2015,Politicians,@JimWebbUSA,Watching closely as national media begins turning its attention to #Asia in the coming week. https://t.co/qSIOC3IMWC https://t.co/N4UQTgX2Xx +11/12/2015,Politicians,@JimWebbUSA,"#TBT: Senator Wins Release of US Prisoner in Myanmar +#ThrowbackThursday from Aug 15, 2009 #WebbNation +https://t.co/4stYgt2aaH" +11/12/2015,Politicians,@JimWebbUSA,"RT @LanceCiepiela: @JimWebbUSA @jaketapper ""Once a marine always a marine"" - thank you for your service https://t.co/RNHz0qKysK #USMC https…" +11/11/2015,Politicians,@JimWebbUSA,@jaketapper Thank you for all you do for veterans. You're making a real difference. +11/11/2015,Politicians,@JimWebbUSA,"RT @simonschuster: .@JimWebbUSA on his life in the military, watch https://t.co/GuquZKrMOX. Many thanks to him & all veterans for their ser…" +11/11/2015,Politicians,@JimWebbUSA,"A special #thankyou & wishes for a meaningful Veterans Day to all who have served & those still serving. #ThankAVet +https://t.co/gNVALleOKY" +11/10/2015,Politicians,@JimWebbUSA,RT @NavalAcademy: Happy 240th birthday to the U.S. Marine Corps! @USMC #oorah #SemperFi https://t.co/kS8vR7S9Vg +11/10/2015,Politicians,@JimWebbUSA,Happy 240th birthday to my fellow Marines in every clime & place. #SemperFi #USMCBirthday +11/09/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: If its Hillary v Trump Carson Cruz Rubio, moderates will consider @JimWebbUSA. Will enough $$$ support? #WebbNation https…" +11/09/2015,Politicians,@JimWebbUSA,RT @LAMBDF: #MotivationMonday @JimWebbUSA #WebbNation #WIN2016 https://t.co/kdZuS6dlQY +11/08/2015,Politicians,@JimWebbUSA,"Discussing economic fairness, social justice, #veterans, true stewardship & strong leadership. ( 2008) #WebbNation +https://t.co/36HilHcbuP" +11/07/2015,Politicians,@JimWebbUSA,#WebbNation is roaring... https://t.co/584IBtmSG3 +11/07/2015,Politicians,@JimWebbUSA,@SharonA1225 @Sheikhsquad Sen Webb still officially candidate for president. He isnt running for Democratic nomination. Consider next step. +11/07/2015,Politicians,@JimWebbUSA,Notable @NavalAcademy graduate: https://t.co/4hFgYDJpRn #WebbNation #Service #GoNavy #Warriors4Webb +11/07/2015,Politicians,@JimWebbUSA,RT @SharonA1225: @JimWebbUSA Hoping you will run on independent ticket. Registered Republican but dont like either party. Haven't removed y… +11/06/2015,Politicians,@JimWebbUSA,RT @jackiesalit: @JimWebbUSA hits nail on head in https://t.co/UXs0YWdaF0. Americans dislike both parties while political class dismisses i… +11/06/2015,Politicians,@JimWebbUSA,RT @half_witt: Reads like an endorsement for @JimWebbUSA. https://t.co/aoiCgdgkcz +11/06/2015,Politicians,@JimWebbUSA,RT @YumaWxMan: @CNNPolitics @JimWebbUSA I sure hope so. Need his leadership an sensability opposed yo big money extreme party political pop… +11/06/2015,Politicians,@JimWebbUSA,"RT @CupofLiberal: @JimWebbUSA Please, for the sake of my future children, run as an independent. We need you in our future, whether as POTU…" +11/06/2015,Politicians,@JimWebbUSA,"RT @jsaxhaug: I'm an Army guy, but i'll proudly give an Oorah for an independent @JimWebbUSA run at the presidency. Sign me up, Jim! #WebbN…" +11/06/2015,Politicians,@JimWebbUSA,@Kyredwood @CNNPolitics Senator Webb last week outlined why he is considering this: https://t.co/NVV39v8tE1. +11/06/2015,Politicians,@JimWebbUSA,"RT @PAPADOO: @ColmesRadio @JimWebbUSA @RonPaul @AlanColmes Alan Colmes We Miss You on TV !! Jim Webb, We're With Jim Webb All The Way!!" +11/06/2015,Politicians,@JimWebbUSA,@patcamunez https://t.co/NVV39v8tE1 +11/06/2015,Politicians,@JimWebbUSA,@swimmingturtle7 @CNNPolitics @cnnbrk Senator Webb wrote this last week explaining why he's considering: https://t.co/NVV39v8tE1 +11/06/2015,Politicians,@JimWebbUSA,RT @CNNPolitics: .@JimWebbUSA is eyeing a decision on whether to run as an independent by the new year https://t.co/3r1BBEacp1 https://t.co… +11/06/2015,Politicians,@JimWebbUSA,"RT @PAPADOO: @JimWebbUSA More Than Ever, America Needs The Honesty, Integrity & The Intellectual Prowess & The Military Sense to Protect Ou…" +11/05/2015,Politicians,@JimWebbUSA,"RT @LAMBDF: @JimWebbUSA #StressIn5Words #WEBBNATION Here are five outstanding words! +Peace +Opportunity +Trust +Unity +Stability https://t.co/n…" +11/05/2015,Politicians,@JimWebbUSA,"#TBT: Webb’s intellectualism ensures he'll do something that professional politicians hardly ever do... https://t.co/KUdwyh4YdS +#WebbNation" +11/05/2015,Politicians,@JimWebbUSA,"RT @JeffreyInce: This is an interesting turn of events. For sure this will be an uphill battle, but a very worthwhile effort. https://t.co…" +11/05/2015,Politicians,@JimWebbUSA,"RT @LAMBDF: #WEBBNATION @JIMWEBBUSA Jim Webb's Views on US Foreign Policy | Jim Webb Discussion Forum +https://t.co/cYSZ90Gxze" +11/04/2015,Politicians,@JimWebbUSA,RT @jesselaymen: @JimWebbUSA Jim Webb's gun rights views are common sense! https://t.co/yWacgJgzho +11/04/2015,Politicians,@JimWebbUSA,New poll in #Iowa by Public Policy Polling shows Jim currently getting 9% of the vote in a general election as an #Independent. #WebbNation +11/04/2015,Politicians,@JimWebbUSA,"What are your views on gun rights? +#2A #WebbNation +https://t.co/FbgoB6RtBP" +07/01/2018,Politicians,@ScottWalker,https://t.co/qdvbqScyMf +07/01/2018,Politicians,@ScottWalker,“Technologies on display at Foxconn event will help drive Wisconsin’s economy” https://t.co/8YRMb5lbwJ +07/01/2018,Politicians,@ScottWalker,"Wisconsin’s dairy industry provides jobs and stimulates our economy. Enjoyed the Chequamegon Dairy Day in Maple, WI… https://t.co/JVoGfco4x3" +06/30/2018,Politicians,@ScottWalker,Thursday was quite a day for Wisconsin workers and their families all across the state. We broke ground on the larg… https://t.co/7qiOOh4gIF +06/30/2018,Politicians,@ScottWalker,"Today is the last day of the quarter, which is one of the most important milestones in our campaign. As we head int… https://t.co/ywLDKqnaOe" +06/30/2018,Politicians,@ScottWalker,Obama’s group. Holder. Soros. Steyer. AFSMCE. NEA. SEIU. Planned Parenthood. ACLU. DGA. DNC. They are all coming fo… https://t.co/Wt3IVHXYHc +06/30/2018,Politicians,@ScottWalker,.@Brewers Good luck today against the Reds. Congrats on continuing to have the best record in the NL #ThisIsMyCrew https://t.co/pYSFO0uLFS +06/30/2018,Politicians,@ScottWalker,"Special thanks to the TePoel Family, the Chequamegon Dairy Association and Dairy Farmers of Wisconsin for hosting a… https://t.co/45WiNPRJ0T" +06/30/2018,Politicians,@ScottWalker,We need your help before the deadline at the end of today! National Democrats and their big government special inte… https://t.co/4Ar8Pca05B +06/30/2018,Politicians,@ScottWalker,"RT @wisgop: Valerie is our @wisgop Volunteer of the Week! + +Valerie helps out in our Eau Claire office and loves the experience: ""it's a lot…" +06/30/2018,Politicians,@ScottWalker,“Foxconn Bonus comes to Green Bay!” https://t.co/hilCqzmJjY https://t.co/ycPwPXs0RH +06/30/2018,Politicians,@ScottWalker,"“Foxconn to buy WaterMark building in downtown Green Bay” +https://t.co/GxZFZWWPwr" +06/30/2018,Politicians,@ScottWalker,“Foxconn buying WaterMark building for Green Bay innovation center” https://t.co/fBxuHoK2Xy +06/30/2018,Politicians,@ScottWalker,"Happy Birthday to my son, @MattWalkerWI! He was born on the 1st day of @Summerfest 1994 -- just after the Big Bang… https://t.co/CAbNNzVnRY" +06/30/2018,Politicians,@ScottWalker,“Foxconn Comes to Green Bay” https://t.co/OXtpAfpEBD +06/30/2018,Politicians,@ScottWalker,The Left will decide how much to spend against us based on what we raise by midnight tonight. Pls donate today:… https://t.co/3VHoheHgZI +06/30/2018,Politicians,@ScottWalker,Obama’s political machine is targeting us. Eric Holder’s too. Add in liberal billionaires George Soros & Tom Steyer… https://t.co/KW9huNByLM +06/29/2018,Politicians,@ScottWalker,"“Foxconn buys Watermark building, plans innovation center in downtown Green Bay” https://t.co/x9F60unInx" +06/29/2018,Politicians,@ScottWalker,Honored to join Mary and the kids for the dedication of Ted Kanavas Field at Brookfield East High School. Ted was a… https://t.co/fujUtZpYSp +06/29/2018,Politicians,@ScottWalker,"Foxconn will create at least 13,000 good-paying, family-supporting jobs, and 27 of the 28 companies selected for th… https://t.co/9luMBIRBQm" +06/29/2018,Politicians,@ScottWalker,More great news! Foxconn is creating an Innovation Center in Green Bay to help new startup companies and provide re… https://t.co/mqiG7IooyM +06/29/2018,Politicians,@ScottWalker,"Just as Microsoft transformed the State of Washington, Foxconn will help Wisconsin Win the 21st Century. It will he… https://t.co/JpBSac79BW" +06/29/2018,Politicians,@ScottWalker,Check out how the Foxconn investment is putting Wisconsin first! It’ll involve companies with workers in 60 of Wisc… https://t.co/Gp6vQJwNXK +06/28/2018,Politicians,@ScottWalker,Yet another great project going up in Wisconsin! #FearTheDeer #BuildTheFuture https://t.co/Qc91Gny5ER +06/28/2018,Politicians,@ScottWalker,Wisconsin is working! Today was a great day for Wisconsin’s hard-working families in all corners of the state. We’r… https://t.co/zHsBkS7AjN +06/28/2018,Politicians,@ScottWalker,An independent report shows that Foxconn would add more than $51 billion to the economy of Wisconsin over 15 years.… https://t.co/V2iOzM8FBt +06/28/2018,Politicians,@ScottWalker,"Enjoyed speaking following the Foxconn groundbreaking. This is a historic day for Wisconsin. 13,000 good-paying, fa… https://t.co/jiKye5TuLo" +06/28/2018,Politicians,@ScottWalker,Thanks to the @POTUS for joining as we broke ground for the largest economic development project in Wisconsin histo… https://t.co/VXOr3DvJwh +06/28/2018,Politicians,@ScottWalker,What a great day – we worked to secure the Foxconn commitment to invest in Wisconsin’s workers and help everyone ac… https://t.co/cdnRhpGZLW +06/28/2018,Politicians,@ScottWalker,Exciting news today! We’re breaking ground on Foxconn – the largest single economic development project in the hist… https://t.co/IaWX7k4Ryd +06/28/2018,Politicians,@ScottWalker,An independent report shows that Foxconn will add $51 billion to the Wisconsin economy over the next 15 years. That… https://t.co/VNnC6UTxL9 +06/28/2018,Politicians,@ScottWalker,"RT @GovWalker: In 2011, we declared “Wisconsin is open for business.” Today, we are delivering on that promise in a historic way with the g…" +06/28/2018,Politicians,@ScottWalker,"Wisconsin is working under our leadership – now, we’re working to spur additional economic growth to help hard-work… https://t.co/MlCuKqOZ5I" +06/28/2018,Politicians,@ScottWalker,"In addition, Foxconn has to earn the tax credits. They don’t get the full amount unless they create 13,000 jobs, pa… https://t.co/xlWk5B06Ol" +06/28/2018,Politicians,@ScottWalker,An independent report from the Milwaukee Metropolitan Association of Commerce shows that the project will provide a… https://t.co/V5pIL1iwDt +06/28/2018,Politicians,@ScottWalker,"When fully operational, to put WI first, it’s been estimated that Foxconn will spend about $1.4 billion annually in… https://t.co/0qeIwC7f9e" +06/28/2018,Politicians,@ScottWalker,"Foxconn will provide 13,000 good-paying, family-supporting jobs to Wisconsin through their $10 billion investment t… https://t.co/xCKzrQ7kQn" +06/27/2018,Politicians,@ScottWalker,Remember just a few weeks back when Foxconn announced $100 million in contracts were awarded to 27 Wisconsin subcon… https://t.co/RBvJfi8KPA +06/27/2018,Politicians,@ScottWalker,".@POTUS @realDonaldTrump, typical Wisconsin taxpayer -- 2 parents working and 2 kids at home -- will save $2,508 be… https://t.co/UbJXeDUxLd" +06/27/2018,Politicians,@ScottWalker,Was good to join Air Wisconsin yesterday to announce their new expansion in Appleton! $8 million investment with 80… https://t.co/egohjVx9NR +06/27/2018,Politicians,@ScottWalker,"The Kafka family knows our bold reforms sparked Wisconsin’s comeback! With more bold reform, we can continue to bui… https://t.co/83QDcLTOtu" +06/27/2018,Politicians,@ScottWalker,Big government union bosses were angry when we gave public workers the right to choose. They even tried to recall m… https://t.co/rW9tGQCye5 +06/27/2018,Politicians,@ScottWalker,"Our bold reforms have jumpstarted Wisconsin’s comeback – with more bold reform, we can make sure everyone in our st… https://t.co/8WXsg7SpIf" +06/27/2018,Politicians,@ScottWalker,More people are working now than ever before and unemployment is at an all-time low. Our reforms are helping Wiscon… https://t.co/ZoCsN0qNOQ +06/27/2018,Politicians,@ScottWalker,Wisconsin was ahead of the curve giving public workers the freedom to choose during our 1st year in office. That’s… https://t.co/xmJ9zBuK2l +06/27/2018,Politicians,@ScottWalker,Supreme Court today affirms what we did years ago -- gives public servants the freedom to choose whether they want… https://t.co/BJ2NhtJokx +06/27/2018,Politicians,@ScottWalker,"“Mark R. Hogan: Foxconn’s historic investment in Wisconsin already paying dividends” +https://t.co/4dfHgAR35V" +06/27/2018,Politicians,@ScottWalker,"Foxconn will help create at least 13,000 good-paying, family-supporting jobs! Going forward, our bold reforms will… https://t.co/IdPTEzSeZT" +06/27/2018,Politicians,@ScottWalker,"Nearly 500,000 households have signed up for the child tax rebate. July 2 is the deadline. Sign up today at https://t.co/CJjQ1SR5bi." +06/27/2018,Politicians,@ScottWalker,Wisconsin is America's dairyland -- Wisconsin Cheese Day is about celebrating our state’s dairy industry and the fa… https://t.co/ypGQsK1TiE +06/26/2018,Politicians,@ScottWalker,"As @realDonaldTrump said at the G7, the best answer is no tariffs! I said it again at SelectUSA with Commerce Secre… https://t.co/6Ok7Um5vfr" +06/26/2018,Politicians,@ScottWalker,Air Wisconsin expansion in Appleton will create 80 high-skill careers! https://t.co/gOBCtO53sk +06/26/2018,Politicians,@ScottWalker,Our bold reforms sparked Wisconsin’s comeback! Want to keep our state moving forward and help us share our optimist… https://t.co/Nw8B6KwaSg +06/26/2018,Politicians,@ScottWalker,🚨🚨We need your help to keep WI red! National Democrats and their big government special interests are targeting our… https://t.co/tvUhBbvUGD +06/26/2018,Politicians,@ScottWalker,"What a great day! Air Wisconsin is moving their maintenance operations to Appleton, and building a new, 30,000 sq.… https://t.co/aaRhIfFdNU" +06/26/2018,Politicians,@ScottWalker,“Walker’s latest TV ad features employees of granite company praising his policies” https://t.co/dNdk07Ipja +06/26/2018,Politicians,@ScottWalker,Enjoyed joining County Materials on Friday to discuss how they are taking advantage of this opportunity to grow and create jobs. +06/26/2018,Politicians,@ScottWalker,"Nearly 10,000 construction workers from all over the state and region will be needed to build the new Foxconn eco-center." +06/26/2018,Politicians,@ScottWalker,Foxconn’s state-of-the-art products will be made in the U.S.A. -- proudly in the state of Wisconsin! +06/26/2018,Politicians,@ScottWalker,"At the G7, @POTUS @realDonaldTrump said that no tariffs should be on the table. I said again today that no tariffs… https://t.co/5G0giQQdM3" +06/26/2018,Politicians,@ScottWalker,Cool view in the Miller Beer Caves! https://t.co/9XWlloZme6 +06/26/2018,Politicians,@ScottWalker,"The Washington-based special interest groups, liberal billionaires, and big government union bosses are targeting m… https://t.co/iDZAyAizxt" +06/25/2018,Politicians,@ScottWalker,The Kafka family says our bold reforms jumpstarted Wisconsin’s economy and “absolutely” led to jobs and economic gr… https://t.co/bdQp5ICqO5 +06/25/2018,Politicians,@ScottWalker,The Democrats running for governor will tell you what they are against. We will tell you what we are for! Help us s… https://t.co/m5CGjrK7Bc +06/25/2018,Politicians,@ScottWalker,Had a really great time traveling the state this weekend for some more dairy breakfasts! June Dairy Month really is… https://t.co/AiZjMn2TbU +06/25/2018,Politicians,@ScottWalker,"One week from today (July 2) is the last day to sign up for the Child Tax Rebate. Join more than 475,000 households… https://t.co/6qkEPEpcaD" +06/25/2018,Politicians,@ScottWalker,Want to counter the anger and the hatred of the Left? Help us share our optimistic message and positive plans for t… https://t.co/rLPEiRa7R3 +06/25/2018,Politicians,@ScottWalker,Like good times and rock and roll? Watch this video: https://t.co/NS1P6JbBR2 +06/25/2018,Politicians,@ScottWalker,Enjoyed stopping in Wausau to celebrate #WICheeseDay and award another workforce training grant. We’re standing up… https://t.co/OHm6gzNouv +06/25/2018,Politicians,@ScottWalker,It’s Cheese Day in Wisconsin!!! Eat More Cheese! 🧀 https://t.co/LuU6ep9NQw +06/25/2018,Politicians,@ScottWalker,"Obama’s political group, Eric Holder, George Soros, Tom Steyer, DNC, DGA, ACLU, union bosses, etc. … they are all t… https://t.co/hU8afyObf0" +06/25/2018,Politicians,@ScottWalker,Good to join researchers at UW-Madison to discuss additional ways we can continue to help our dairy farmers.… https://t.co/tHDBnKckgd +06/25/2018,Politicians,@ScottWalker,More people are working now than ever before and unemployment is at an all-time low. Our reforms are helping Wiscon… https://t.co/01wvd3fnw2 +06/24/2018,Politicians,@ScottWalker,"I am a pro-education governor — we balanced our budget and put the state back on track, and we’re investing in our… https://t.co/mpciC6wyuK" +06/24/2018,Politicians,@ScottWalker,"“Scott Walker's big re-election tax cut tout: $8 billion during his time as Wisconsin governor” +https://t.co/roOin8xeI4" +06/24/2018,Politicians,@ScottWalker,"🚨🚨 It’s almost the end of the quarter, which is one of the most important milestones in our campaign. As we head in… https://t.co/WvYWPi4EsI" +06/24/2018,Politicians,@ScottWalker,"RT @journalsentinel: To the parents whose kids have been able to escape low-performing public schools in order to help their children, Walk…" +06/24/2018,Politicians,@ScottWalker,RT @AlexWalkerWI: Fun night in Menomonee Falls with the fam! https://t.co/9lptaHxlvl +06/24/2018,Politicians,@ScottWalker,More ice cream at breakfast on the farm in Marinette County. Mmmm. https://t.co/8Vqb98lsEx +06/24/2018,Politicians,@ScottWalker,Happy to help out at the Marinette County Breakfast on the Farm. Thanks to the Carlson family for hosting us during… https://t.co/Dp6E576Pw0 +06/24/2018,Politicians,@ScottWalker,https://t.co/2dNmFlFjte +06/24/2018,Politicians,@ScottWalker,Sat down with these two great World War II veterans — Harry and Larry — tonight in Menomonee Falls. Thank God for p… https://t.co/ba4stMeG7H +06/23/2018,Politicians,@ScottWalker,Stopped by to see my parents. They are the best! https://t.co/bQsMfzTNIC +06/23/2018,Politicians,@ScottWalker,It is an honor to pay my respects to the family of SSG Krasean Clayborn at funeral services in Milwaukee today. He… https://t.co/nRUexAOvs0 +06/23/2018,Politicians,@ScottWalker,Thank you to the Bratz family for hosting the Racine County Breakfast on the Farm! What a great way to meet Wiscons… https://t.co/hjQng3omAP +06/23/2018,Politicians,@ScottWalker,June is the best because I can eat custard and cheese curds every weekend for breakfast! Happy to serve at Racine C… https://t.co/K9m0FO70mC +06/23/2018,Politicians,@ScottWalker,"We need your help! With all the big government, special interest money that is targeting our state by national Demo… https://t.co/lNPmdZDdSg" +06/23/2018,Politicians,@ScottWalker,What an amazing walk off home run for another @Brewers win!  #ThisIsMyCrew https://t.co/k9NY0OcZGD +06/22/2018,Politicians,@ScottWalker,"With a record investment in our schools, more money for our technical college programs, and a six-year tuition free… https://t.co/N9uUhTuF5k" +06/22/2018,Politicians,@ScottWalker,Good to join County Materials in Marathon today. They were selected as one of the 27 Wisconsin subcontractors and a… https://t.co/UcLXEbht17 +06/22/2018,Politicians,@ScottWalker,"“Racine launches $1.5 million training program for Foxconn construction work” +https://t.co/lGjdnx5Jtd" +06/22/2018,Politicians,@ScottWalker,"Anita, a public school teacher from Racine, supports our bold reforms to empower school districts and invest histor… https://t.co/UJWDvR5ucZ" +06/22/2018,Politicians,@ScottWalker,We’ve returned power to taxpayers and put more money in our classrooms to help students and their families win the… https://t.co/fuIrX5UesH +06/22/2018,Politicians,@ScottWalker,"“Yes, Scott Walker is an 'education governor' for Wisconsin” https://t.co/2NfG68vPkR" +06/22/2018,Politicians,@ScottWalker,"Our goal is to have the highest graduation rate in the nation because, with 2.8% unemployment, we need every studen… https://t.co/x3enH0IK9e" +06/22/2018,Politicians,@ScottWalker,"When I introduced my budget, the state superintendent of public instruction called it: “pro-kid.”" +06/22/2018,Politicians,@ScottWalker,Our budget puts in more funding for mental health services in schools. Anti-bullying efforts too. And lawmakers app… https://t.co/00rB8AdxKQ +06/22/2018,Politicians,@ScottWalker,We doubled youth apprenticeships. Doubled funding for Fab Labs. Increased early college credit. We fully fund acade… https://t.co/M5SmX5wMC9 +06/22/2018,Politicians,@ScottWalker,Our state budget puts more actual dollars into schools than ever before -- an extra $200 per student this past scho… https://t.co/yJTxDXvKQx +06/22/2018,Politicians,@ScottWalker,Our Act 10 reforms allow schools to staff based on merit and pay based on performance. That means they can put the… https://t.co/yAdKzeB566 +06/22/2018,Politicians,@ScottWalker,Our reforms put local school board members back in charge of our schools instead of special interests. +06/22/2018,Politicians,@ScottWalker,Proud to be the Education Governor in Wisconsin. +06/22/2018,Politicians,@ScottWalker,Great to see all these young women working to learn about what it takes to provide real leadership. Programs like B… https://t.co/W1k1d2PRpX +06/21/2018,Politicians,@ScottWalker,"I am a pro-education governor — after balancing our budget and putting the state back on track, we’re now able to i… https://t.co/t8yRkDnfWl" +06/21/2018,Politicians,@ScottWalker,#NationalSelfieDay is a good chance to remember good times with the @Brewers. #ThisIsMyCrew https://t.co/3mxR2labjo +06/21/2018,Politicians,@ScottWalker,"We’re making historic investments in K-12 education, we froze UW system tuition, increased Sparsity Aid for rural c… https://t.co/Ws23P5JnuM" +06/21/2018,Politicians,@ScottWalker,https://t.co/dr1t7WaRs8 +06/21/2018,Politicians,@ScottWalker,#ThisIsMyCrew @Brewers https://t.co/8oIdk5bpin +06/21/2018,Politicians,@ScottWalker,"Summer is officially here, finally! #SummerSolstice2018 #LongestDayOfTheYear 🌞☀️ https://t.co/lUy2IHXZvY" +06/21/2018,Politicians,@ScottWalker,“DuraTech celebrates $7.5 million expansion; La Crosse printing company to add 125 jobs” https://t.co/qsYb6kLz3Q +06/21/2018,Politicians,@ScottWalker,"Anita, a public school teacher in Racine, knows our bold reforms have returned power to taxpayers, and that we’ve p… https://t.co/5F0k8860Nn" +06/20/2018,Politicians,@ScottWalker,"If we’re going to help Wisconsin win the 21st century, we need all of our young people to have the skills necessary… https://t.co/wojBFYjI1l" +06/20/2018,Politicians,@ScottWalker,Joined DuraTech Industries for their expansion ribbon cutting ceremony in La Crosse this morning. Business investme… https://t.co/zLmnJz7QCe +06/20/2018,Politicians,@ScottWalker,Teachers like Anita know that our bold reforms are helping students and their families win the 21st century – we’ve… https://t.co/cM3jGfImbG +06/20/2018,Politicians,@ScottWalker,"On #AmericanEagleDay, remembering Old Abe -- the bald eagle that was the mascot for WI’s 8th Infantry during the Ci… https://t.co/Fz9oryLwja" +06/20/2018,Politicians,@ScottWalker,"I’m a pro-education governor -- and with our bold reforms, we’re working to help Wisconsin’s students and their fam… https://t.co/OL52RfqtlF" +06/19/2018,Politicians,@ScottWalker,We’re fighting for our dairy farmers here in Wisconsin -- they are essential to our state’s success. https://t.co/gZO3bIhJX1 +06/19/2018,Politicians,@ScottWalker,"Our bold reforms gave schools flexibility to put money where it matters most, in our classrooms. Now, after we’ve p… https://t.co/Op4m0u99pO" +06/19/2018,Politicians,@ScottWalker,Sign up to claim yours here! https://t.co/bqBxvtT7ZP +06/19/2018,Politicians,@ScottWalker,"More than 450,000 families have signed up for our child tax rebate, but 200,000 are still eligible. We’re returning… https://t.co/LxSfDhBFW6" +06/19/2018,Politicians,@ScottWalker,"Had a great time in De Pere this past weekend at their dairy breakfast supporting our farmers, their families and W… https://t.co/xZyyf65XkF" +06/19/2018,Politicians,@ScottWalker,"On Juneteenth Day, I am happy to announce our plans to name the new Milwaukee state office building after the Hon. Vel Phillips." +06/19/2018,Politicians,@ScottWalker,"Check out our newest ad! With a record actual-dollar investment in schools, more money for our technical college pr… https://t.co/0yIeltT9mi" +06/18/2018,Politicians,@ScottWalker,"The success of Wisconsin’s dairy industry is important to all of us, and that is why we are standing up for our far… https://t.co/UaDGo5mP4v" +06/18/2018,Politicians,@ScottWalker,"More than 450,000 families have claimed our $100-per-child tax rebate. Last week I stopped in Onalaska to encourage… https://t.co/rTZsaTo9kD" +06/18/2018,Politicians,@ScottWalker,Started off this past weekend in La Crosse! Enjoyed serving food and chatting with our farmers about what it will t… https://t.co/gcyg1n5rtI +06/18/2018,Politicians,@ScottWalker,My mom took a nice photo of me and my brother David with our dad on Father’s Day. https://t.co/vg2OcEh1QI +06/18/2018,Politicians,@ScottWalker,More evidence that Wisconsin is a top target for Washington-based special interest groups on the Left. We need your… https://t.co/xk0MfFwcEl +06/18/2018,Politicians,@ScottWalker,Had a great weekend with our farm families visiting dairy breakfasts across the state! https://t.co/yVo5VzqP4K +06/18/2018,Politicians,@ScottWalker,Great view of the mini-racing sausages from @Johnsonville at Miller Park today during the @Brewers game: https://t.co/KCYRdBSprE +06/17/2018,Politicians,@ScottWalker,Enjoying a @Brewers game on Father’s Day at Miller Park. #ThisIsMyCrew https://t.co/nl7YVd5QL6 +06/17/2018,Politicians,@ScottWalker,This couple came up to me at the Waupaca County Dairy Breakfast and told me that my father had officiated their wed… https://t.co/AtdCIXBltH +06/17/2018,Politicians,@ScottWalker,Stopped in Waupaca County at their breakfast on the farm today! Another great morning. https://t.co/hBmf2SicUL +06/17/2018,Politicians,@ScottWalker,Another great breakfast on the farm. Proud to be in Brown County this morning serving up some great food! #WIProud https://t.co/ngPfWOfZi1 +06/17/2018,Politicians,@ScottWalker,"“Gov. Walker visits Onalaska, encourages parents to apply for child tax rebate” https://t.co/SsTgFqCvXC" +06/17/2018,Politicians,@ScottWalker,Happy Father’s Day to my dad Llew Walker and all of the other fathers out there. https://t.co/bkYMRrNtYf +06/17/2018,Politicians,@ScottWalker,89 degrees and on the water with a cold Summer Shandy! https://t.co/zACjX7Nvo4 +06/16/2018,Politicians,@ScottWalker,"""Governor Scott Walker reminds area families of Child Tax Rebate"" https://t.co/66IIm6BQjI" +06/16/2018,Politicians,@ScottWalker,"Amazing show of support for family and friends of Milwaukee Police Officer Charles Irvine, Jr. Honored to be there… https://t.co/X4F5uAvdUb" +06/16/2018,Politicians,@ScottWalker,Breakfast on the farm is great. Glad to be in La Crosse County this morning celebrating dairy month! https://t.co/rylrBYR0oA +06/16/2018,Politicians,@ScottWalker,Our President of the University of Wisconsin System Board of Regents is a man of many talents. Look at this catch i… https://t.co/oDTlffI5i3 +06/15/2018,Politicians,@ScottWalker,“Gov. Scott Walker touts broadband grants in Oconto Falls visit” https://t.co/0MByDKxR6l +06/15/2018,Politicians,@ScottWalker,"“Governor Stops in FDL, Will Speak in Ripon” https://t.co/aj2KwNCAX6" +06/15/2018,Politicians,@ScottWalker,Stopped in Onalaksa this afternoon to talk about our child tax rebate and how it can help Wisconsin’s hard-working… https://t.co/oXJOTs2n2r +06/15/2018,Politicians,@ScottWalker,"“Foxconn buys downtown office building for $14.9 million, says 500 people will work there” https://t.co/ZPcNI958dB" +06/15/2018,Politicians,@ScottWalker,Enjoyed visiting Platteville today to talk about how our child tax rebate is helping hard-working Wisconsin familie… https://t.co/mXHgVyRxmj +06/15/2018,Politicians,@ScottWalker,"With all of the “help wanted” signs across Wisconsin, our bold reforms are removing barriers to work by helping par… https://t.co/fr00bJRmh1" +06/15/2018,Politicians,@ScottWalker,Grab 20% off a bunch of great Team Walker gear TODAY ONLY and help support our efforts. https://t.co/rA6EmL6Bfc https://t.co/MbvnBTpDUS +06/15/2018,Politicians,@ScottWalker,"With our school safety grants, we’re taking action to keep our children safe. https://t.co/Dj7tC7ja64" +06/15/2018,Politicians,@ScottWalker,"More great news for Wisconsin yesterday!! The employment level in Wisconsin is at an all-time HIGH of 3,090,200 and… https://t.co/ixnUJdO3tO" +06/15/2018,Politicians,@ScottWalker,Happy to address the young leaders at Badger Boys State tonight in Ripon. This program opened my eyes to public ser… https://t.co/nDinYKQwK8 +06/15/2018,Politicians,@ScottWalker,https://t.co/QZYlIzemtK +06/14/2018,Politicians,@ScottWalker,"""Metro Milwaukee hiring outlook for Q3 is third best in nation"" +https://t.co/ZbX2VYgSAm" +06/14/2018,Politicians,@ScottWalker,Proud to be at Rennes Health & Rehab Center in De Pere. We recognize the important work that our nursing assistants… https://t.co/g1YGIfeo9S +06/14/2018,Politicians,@ScottWalker,"BREAKING NEWS: Employment level in Wisconsin is at an all-time high of 3,090,200 and unemployment rate is at all-time low at 2.8% for May." +06/14/2018,Politicians,@ScottWalker,Biggest story overlooked by most in media was @POTUS @realDonaldTrump saying: “We should at least consider no tarif… https://t.co/Rf3Rir6PZb +06/14/2018,Politicians,@ScottWalker,"Happy Birthday to the Dean of the Wisconsin Congressional delegation, Congressman Jim Sensenbrenner! @JimPressOffice https://t.co/5O35b91JdI" +06/14/2018,Politicians,@ScottWalker,"Happy birthday to the @USArmy! 243 years of service to our nation. To all the men and women who serve, thank you fo… https://t.co/7wvnny2ehu" +06/14/2018,Politicians,@ScottWalker,Alex and Matt sleeping on our couch. #TBT https://t.co/r8yElSpqZy +06/14/2018,Politicians,@ScottWalker,"“Transload rail facility opens in Oshkosh's Southwest Industrial Park” +https://t.co/rjderd5XlX" +06/14/2018,Politicians,@ScottWalker,"Happy Birthday, @POTUS @realDonaldTrump! https://t.co/a3qSlUC4Lx" +06/14/2018,Politicians,@ScottWalker,More great news in Oshkosh! https://t.co/RcG3nEwcKF +06/14/2018,Politicians,@ScottWalker,Happy #FlagDay! We are honoring the flag and all that it represents. 🇺🇸 🇺🇸 Fun Fact: Did you know that Flag Day st… https://t.co/2rGhHHWLwe +06/14/2018,Politicians,@ScottWalker,These are my kind of fries at Parkside 23! https://t.co/ggAmAS97A7 +06/13/2018,Politicians,@ScottWalker,Our bold reforms are helping Wisconsin win the 21st century as job creators choose to stay and invest in our state. https://t.co/YSUbvTLoEM +06/13/2018,Politicians,@ScottWalker,"Okay, I admit that I teared up a bit too but it makes you so happy to watch this family!!! https://t.co/2dbnCoF5cm" +06/13/2018,Politicians,@ScottWalker,Joined Green Bay Packaging at the announcement of their expansion yesterday. We’re proud that job creators are inve… https://t.co/T9HRgPtHq6 +06/13/2018,Politicians,@ScottWalker,Great day in Milwaukee for a @Brewers game (sadly I’m in meetings all day and not at the ballpark)! #ThisIsMyCrew https://t.co/2DJhth33Z0 +06/13/2018,Politicians,@ScottWalker,"More examples of the anger and hatred of the Left: +“… coarseness has become standard procedure in a crowded primar… https://t.co/GyXpTFsK3v" +06/13/2018,Politicians,@ScottWalker,Joined the City of Oshkosh today in celebrating the opening of the new transload terminal in town. This will give j… https://t.co/nnx6cO7Ljb +06/13/2018,Politicians,@ScottWalker,"To help Wisconsin win the 21st century, our bold reforms are working to expand broadband access for communities all… https://t.co/g0h9FvY7EU" +06/13/2018,Politicians,@ScottWalker,".@BarackObama and his big government allies finally announced what we’ve always known, they’re targeting our race i… https://t.co/MgDwrCzs2A" +06/12/2018,Politicians,@ScottWalker,Enjoyed spending this past weekend with farmers and their families in Mishicot. We’re standing with you and fightin… https://t.co/b6Kt31eN4U +06/12/2018,Politicians,@ScottWalker,Had a great time on Sunday at the Waubeka Flag Day parade! It’s a celebration of the flag and all that it stands fo… https://t.co/S8YCNwH0AH +06/12/2018,Politicians,@ScottWalker,We’re #1! https://t.co/XmI9ceXxbj +06/12/2018,Politicians,@ScottWalker,We have such great traditions here in Wisconsin – enjoyed seeing folks out supporting our dairy industry over the w… https://t.co/dD9kFQNUOn +06/12/2018,Politicians,@ScottWalker,"There is a special election today in the 1st Senate District in northeastern Wisconsin. Please vote! +https://t.co/PyBXdJxuJi" +06/12/2018,Politicians,@ScottWalker,Don’t forget that there is a special election in the 42nd Assembly district today: https://t.co/EquUHPZfp2 +06/12/2018,Politicians,@ScottWalker,"If Wisconsin is going to win the 21st century, build on our success and push back against these Far-Left groups, we… https://t.co/7zFJoTKQNT" +06/12/2018,Politicians,@ScottWalker,Here’s the full story on @BarackObama’s effort to attack us in WI. We don’t need more out of state special interest… https://t.co/jqegjCdYMx +06/12/2018,Politicians,@ScottWalker,🚨 ALERT: @BarackObama’s political machine just announced that it’s targeting our race in Wisconsin. I need your HEL… https://t.co/bAksVKEUEc +06/12/2018,Politicians,@ScottWalker,"To help connect more of our communities and expand broadband service, we’ve made another increase in our broadband… https://t.co/vz29H7eCSk" +06/12/2018,Politicians,@ScottWalker,Glad to be at Green Bay Packaging to talk about how our bold reforms are helping job creators grow and how we’re st… https://t.co/hzsqOP21cm +06/12/2018,Politicians,@ScottWalker,Happy birthday to former President George H.W. Bush! 🇺🇸 https://t.co/JpQGcGAyl0 +06/12/2018,Politicians,@ScottWalker,Great traveling across Wisconsin yesterday highlighting our expanded broadband investments -- we're making sure rur… https://t.co/sLsCQwUEHq +06/12/2018,Politicians,@ScottWalker,Good to stop by the Brown County GOP office today! Thanks for the hard work! https://t.co/Vza16pHgG3 +06/12/2018,Politicians,@ScottWalker,"Had a great weekend in Sauk, Rock, Manitowoc and Outagamie counties to celebrate Dairy Month and support our farmin… https://t.co/Oiv3HF2zJh" +06/12/2018,Politicians,@ScottWalker,This editorial cartoon from the Wisconsin State Journal says it all. We have to respond with optimism and organiza… https://t.co/OxXz5NDD8f +06/11/2018,Politicians,@ScottWalker,Visited Oconto Falls today to reinforce that we’re making brand-new investments in broadband across the state. We’r… https://t.co/WPz94rgbBR +06/11/2018,Politicians,@ScottWalker,In Eau Claire this morning at the Chippewa Valley Technical College as we talked about our new broadband investment… https://t.co/UHVBgiqbcP +06/11/2018,Politicians,@ScottWalker,Stopped by Viroqua this morning to highlight more of our broadband grants. This is just another way our bold reform… https://t.co/TbcXE6G18V +06/11/2018,Politicians,@ScottWalker,June is Dairy Month and I love working at breakfasts on the farm all over the state. The food is soooooooo good!… https://t.co/kTKGfuMPdt +06/11/2018,Politicians,@ScottWalker,Proud to be with another great group of Project SEARCH graduates in Appleton! https://t.co/CloyuFadf3 https://t.co/t4JVW57EyP +06/10/2018,Politicians,@ScottWalker,"Jordan, a Project SEARCH graduate from one of our campaign’s new TV ads, joined WSAW TV in Wausau to talk about his… https://t.co/VUlWO1Y36p" +06/10/2018,Politicians,@ScottWalker,"According to the press, at the G7 summit the @POTUS said that “We should at least consider no tariffs.” He’s right.… https://t.co/sOMnnR0rRv" +06/10/2018,Politicians,@ScottWalker,Visited the Waubeka Flag Day parade this afternoon. What a great group of patriots who are proud of our flag. Did y… https://t.co/V57dTwK8Nt +06/10/2018,Politicians,@ScottWalker,In Manitowoc County for their Breakfast on the Farm this morning. This is such a fun #Wisconsin tradition.… https://t.co/GEDq089imR +06/10/2018,Politicians,@ScottWalker,Great way to start off a Sunday morning at the Outagamie County Breakfast on the Farm. #Wisconsin #DairyMonth… https://t.co/xtiqolAPVh +06/09/2018,Politicians,@ScottWalker,Health care systems in Wisconsin are ranked #1 in the nation for quality. That’s why I went to this ribbon cutting… https://t.co/E2rdbstBxA +06/09/2018,Politicians,@ScottWalker,"The @POTUS is right. The best answer is for all of the G7 countries to get rid of tariffs, period. American workers… https://t.co/H3cHon4D0Y" +07/01/2018,Politicians,@SecretaryPerry,"Thanks to American ingenuity, American innovation, and American natural gas we’re not just exporting natural resour… https://t.co/zpaR8QiN3w" +06/30/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Just spoke to King Salman of Saudi Arabia and explained to him that, because of the turmoil & disfunction in Iran and…" +06/30/2018,Politicians,@SecretaryPerry,"The world has changed a lot in the 30 years since Ronald Reagan hosted the World Gas Conference. Today, the United… https://t.co/XPx729Euws" +06/30/2018,Politicians,@SecretaryPerry,"Earlier this week I had a meeting with Russian Energy Minister Alexander Novak, which brought together the two larg… https://t.co/m3s6zpv4aZ" +06/30/2018,Politicians,@SecretaryPerry,"America is the world leader in oil and gas production because of American ingenuity, American innovation, and hardw… https://t.co/V3SKL7m3Hj" +06/30/2018,Politicians,@SecretaryPerry,"The United States, Canada and Mexico have a highly integrated, interdependent energy market that leverages the reso… https://t.co/VhnCJwgXLK" +06/29/2018,Politicians,@SecretaryPerry,"Yesterday, I had the chance to meet with Argentine Minister of Energy @JavierJiguacel where we continued talks on h… https://t.co/goAKoFcsSf" +06/28/2018,Politicians,@SecretaryPerry,"Thirteen years ago today, 19 of America’s bravest were lost in support of Operation Redwing. On this solemn day, we… https://t.co/HbCWLT1vuL" +06/28/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Prior to departing Wisconsin, I was briefed on the shooting at Capital Gazette in Annapolis, Maryland. My thoughts and…" +06/28/2018,Politicians,@SecretaryPerry,RT @fossilenergygov: Thanks @SecretaryPerry for stopping by @fossilenergygov's booth @WGC2018! #NewEnergyRealism #WGC2018 https://t.co/lDa5… +06/28/2018,Politicians,@SecretaryPerry,Had a productive meeting with Azerbaijan’s Minister of Energy Parviz Shahbazov on the Southern Gas Corridor and str… https://t.co/gstKIhBlXN +06/28/2018,Politicians,@SecretaryPerry,"Today, U.S. Senator @LisaMurkowski delivered opening remarks about how natural gas will fuel the future prior to a… https://t.co/HxOVK4iBRi" +06/28/2018,Politicians,@SecretaryPerry,"Today, @ENERGY announced its plan to partner with @opicgov on a new partnership in Latin America. Looking forward t… https://t.co/IXnD1baTvF" +06/28/2018,Politicians,@SecretaryPerry,Kicked off day four of #WGC2018 on @SquawkCNBC. #LNG #NatGas #Energy https://t.co/pkjzMI7mF8 +06/27/2018,Politicians,@SecretaryPerry,Had a productive bilateral meeting with @qatarpetroleum’s Saad Sherida Al-Kaabi on #LNG. #WGC2018 https://t.co/eFxRq6Ztsk +06/27/2018,Politicians,@SecretaryPerry,".@IEA's 2018 Gas Report reaffirms the strength of America's growing LNG exports. This ""2nd boom"" is American… https://t.co/qpfq5SGsNd" +06/27/2018,Politicians,@SecretaryPerry,"RT @UKinUSA: ""From promoting peace to fighting terrorism, the special relationship between Britain and the US is one built on shared values…" +06/27/2018,Politicians,@SecretaryPerry,Had a great meeting with Hungary’s Minister of Foreign Affairs and Trade Péter Szijjártó on bolstering energy secur… https://t.co/l5DHSY17JU +06/27/2018,Politicians,@SecretaryPerry,Spoke with business and government leaders at @CSIS’ #WGC2018 breakfast on the rise of American #LNG exports and th… https://t.co/AxSQ6eDrG2 +06/26/2018,Politicians,@SecretaryPerry,Had a great meeting today with @USEmbPortugal Amb. @geglass60 on how American exports of #LNG are going to open new… https://t.co/qOur5NJXOP +06/26/2018,Politicians,@SecretaryPerry,"RT @fossilenergygov: Christopher Freitas, a natural gas analyst from @fossilenergygov , spoke today at #WGC2018 about the role @ENERGY is p…" +06/26/2018,Politicians,@SecretaryPerry,"Today, we celebrate 60 years of partnership and collaboration under the U.S.-U.K. Mutual Defense Agreement. The spe… https://t.co/Q4i9s4tky6" +06/26/2018,Politicians,@SecretaryPerry,"America supports expanding #LNG trade to our Asia-Pacific partners, deepening our partnerships, and advancing our s… https://t.co/CZL2Oq3cGC" +06/26/2018,Politicians,@SecretaryPerry,RT @USEmbPortugal: Amb. Glass sat down with @SecretaryPerry to discuss exciting #LNG opportunities between the U.S. and #Portugal! Another… +06/26/2018,Politicians,@SecretaryPerry,Today at 1:00 p.m. EDT I will be giving a keynote celebrating the 60th anniversary of the United States-United King… https://t.co/F7axTHAKZj +06/26/2018,Politicians,@SecretaryPerry,30 years ago no one thought the U.S. would be producing energy more cleanly and efficiently and from a wider range… https://t.co/fy0aZ1GHD8 +06/26/2018,Politicians,@SecretaryPerry,"About to kick off the World Gas Conference in Washington, D.C. + +America has become a world leader in #NatGas and… https://t.co/dwe0PgGXhq" +06/26/2018,Politicians,@SecretaryPerry,"RT @aga_naturalgas: Join us for the @WGC2018 Opening Ceremony with @SecretaryPerry +@IGU_News’ David Carroll, AGA’s Dave McCurdy and @PSETa…" +06/25/2018,Politicians,@SecretaryPerry,"The Three Seas Initiative offers a new opportunity for engagement. It is a means to increase integration, strengthe… https://t.co/v5Iy46flkD" +06/25/2018,Politicians,@SecretaryPerry,"RT @WhiteHouse: American innovation is fueling an energy success story: cleaner, more efficient use of abundant, affordable energy. @Secret…" +06/25/2018,Politicians,@SecretaryPerry,"Israel and the U.S. have long advanced the cause of freedom. Today, we began a new quest for innovation and science… https://t.co/jFOiuJrAPY" +06/25/2018,Politicians,@SecretaryPerry,Honored to sign an agreement with Israeli Energy Minister Yuval Steinitz to establish the U.S.-Israel Center of Exc… https://t.co/yngK8uKGzK +06/25/2018,Politicians,@SecretaryPerry,Summit’s ranking as the world’s fastest supercomputer demonstrates the strength of American leadership in scientifi… https://t.co/fzykLWdjtU +06/23/2018,Politicians,@SecretaryPerry,Looking for something to listen to this weekend? Check out @ENERGY’s podcast Direct Current where I sit down and ta… https://t.co/cCqS07pSnr +06/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: Thanks to the K9s like Chappy who work every day to keep the Energy Department safe! They're all good dogs. 🐶 + +#TakeYourDogToW…" +06/22/2018,Politicians,@SecretaryPerry,"Affordable, abundant energy is changing the world. We're obtaining energy from a wider range of resources than anyo… https://t.co/b86aQoi33B" +06/22/2018,Politicians,@SecretaryPerry,"This morning, I spoke at @CommerceGov's #SelectUSASummit on America's outstanding energy climate. We're in the mids… https://t.co/2AuJju61Rz" +06/22/2018,Politicians,@SecretaryPerry,"Scientists found that actinium-225 can wipe out late-stage prostate cancer in just three treatments. Now,… https://t.co/BAzXJxin7z" +06/21/2018,Politicians,@SecretaryPerry,Charles @Krauthammer was an inspiration and source of courage for so many. He will truly be missed. Anita and I are… https://t.co/5cXPm2pfgA +06/21/2018,Politicians,@SecretaryPerry,"""America needs coal and nuclear power for energy diversity."" via @Rockland_News https://t.co/iqhY1y0KEC" +06/20/2018,Politicians,@SecretaryPerry,.@ENERGY's Direct Current is back for season three and I was thrilled to be interviewed for its premiere. We talked… https://t.co/TrzGiwZ9G2 +06/20/2018,Politicians,@SecretaryPerry,"RT @ENERGY: PODCAST: Direct Current is back! Season 3 kicks of with a bang, as @SecretaryPerry sits down with us to talk supercomputers, en…" +06/18/2018,Politicians,@SecretaryPerry,“A gas pipeline disruption caused by extreme weather or equipment failure could mean prolonged electricity service… https://t.co/AhDfvO2Syv +06/16/2018,Politicians,@SecretaryPerry,"Great read on the need for nuclear energy by Sen. @lisamurkowski and @JayFaison1: “To meet demand for rural power,… https://t.co/Vl7i7ZJVUq" +06/16/2018,Politicians,@SecretaryPerry,Had a great time watching #Argentina play #Iceland in the @FIFAWorldCup with Argentine Energy Minister… https://t.co/BsdTEHPXDx +06/16/2018,Politicians,@SecretaryPerry,.@doescience reports scientific accomplishments from 40 years of Basic @ENERGY Sciences that have contributed to Am… https://t.co/suhkiQXS3w +06/15/2018,Politicians,@SecretaryPerry,America has become the world leader in combined oil and gas production while at the same time cutting emissions by… https://t.co/wXiYdQKTeG +06/15/2018,Politicians,@SecretaryPerry,"Argentina has the second largest shale gas reserves in the world, but is still a net energy importer. Working toget… https://t.co/n6NdM2rCVw" +06/15/2018,Politicians,@SecretaryPerry,Excited to join my fellow #G20 energy ministers at the #G20Argentina. This is an exciting time for Argentina and th… https://t.co/IIZ36kKpVQ +06/14/2018,Politicians,@SecretaryPerry,Happy birthday to the @USArmy! Thank you for keeping America safe for 243 years. https://t.co/cYPTe4cpRK +06/14/2018,Politicians,@SecretaryPerry,"Happy birthday, @POTUS. Thank you for all of your hard work to make America great. https://t.co/deIf4VKiNs" +06/14/2018,Politicians,@SecretaryPerry,"Today, we celebrate 241 years of the Stars and Stripes. Thank you to the men and women who fought for our independe… https://t.co/NYig0ZOtX3" +06/13/2018,Politicians,@SecretaryPerry,RT @ScienceUnderSec: I recently spoke with @sciencemagazine about my background and vision for @ENERGY’s science programs. Read the intervi… +06/13/2018,Politicians,@SecretaryPerry,"Earlier this month I met with @POTUS, @FLOTUS, @VP and @SecNielsen for the 2018 hurricane briefing at the @fema HQ.… https://t.co/IcOc9BdhmQ" +06/13/2018,Politicians,@SecretaryPerry,"“200,000 trillion calculations per second: U.S. launches the world’s most powerful supercomputer.” via @usatoday +https://t.co/rpktBxef2z" +06/12/2018,Politicians,@SecretaryPerry,"“With 4,608 servers, its equipment fills the space of two tennis courts and weighs more than a commercial aircraft.… https://t.co/iqdwx8McFy" +06/12/2018,Politicians,@SecretaryPerry,#HurricaneSeason has officially begun and every year the Federal government works tirelessly to prepare for such ev… https://t.co/u8p8RkeICj +06/12/2018,Politicians,@SecretaryPerry,Anita and I are keeping @larry_kudlow in our prayers tonight. +06/12/2018,Politicians,@SecretaryPerry,"“Summit boasts a peak performance of 200,000 trillion calculations per second and will be eight times more powerful… https://t.co/n5Wmy4y5VZ" +06/11/2018,Politicians,@SecretaryPerry,"“If a stadium built for 100,000 people was full, and everyone in it had a modern laptop, it would take 20 stadiums… https://t.co/5G7EYJazyh" +06/09/2018,Politicians,@SecretaryPerry,"RT @ORNL: Signed, sealed, delivered. + +✍️ @SecretaryPerry @IBM @nvidia + +#Summit2018 https://t.co/BGux7o8QDF" +06/08/2018,Politicians,@SecretaryPerry,It was great to see all of the children and families enjoying the #STEM fair at @ORNL’s family day. #StemRising https://t.co/AXzlrafxyP +06/08/2018,Politicians,@SecretaryPerry,"Meet Summit — the newest and most powerful supercomputer in the world at @ornl. +Watch live here: https://t.co/s0S7Es8cWH" +06/08/2018,Politicians,@SecretaryPerry,"Just signed @ENERGY & @ORNL’s newest supercomputer, Summit. This is now the most powerful computer in the world and… https://t.co/zVrmdBdleg" +06/08/2018,Politicians,@SecretaryPerry,Visiting @ORNL for an exciting day celebrating American leadership in supercomputing. #NationalLab https://t.co/u1363Xt4AE +06/08/2018,Politicians,@SecretaryPerry,"500 Days of American Greatness: “$3 billion payoff: 101 utilities cut rates, credit GOP tax cuts” via @dcexaminer +https://t.co/T85i3L7CLv" +06/06/2018,Politicians,@SecretaryPerry,"It’s the 74th anniversary of one of the great days in world history, #DDay, a day where Americans sacrificed greatl… https://t.co/dwhMZ1katc" +06/05/2018,Politicians,@SecretaryPerry,Ran into @HurdOnTheHill yesterday at @Energy’s #DOECyberCon18 conference where we talked about the need to be a wor… https://t.co/vRKpI0vjPD +06/05/2018,Politicians,@SecretaryPerry,RT @ENERGY: .@EnergyDepSec Dan Brouillette discusses the need to increase America’s capability to fight imminent cyber threats facing our c… +06/05/2018,Politicians,@SecretaryPerry,500 Days of American Greatness: The United States is a world leader in oil and gas production combined. https://t.co/Kw45aIXYAn +06/04/2018,Politicians,@SecretaryPerry,Today is @realDonaldTrump’s 500th day in office & his commitment to American greatness. In 500 days @POTUS and… https://t.co/Xo8tpbUARV +06/04/2018,Politicians,@SecretaryPerry,"Cybersecurity is a national security issue. That is why @ENERGY has created #CESER, DOE's new office to combat cybe… https://t.co/KQa1Vtzcbs" +06/04/2018,Politicians,@SecretaryPerry,"RT @WhiteHouse: Breakthroughs in renewable energy, the worldwide web, satellite technologies, and safe drinking water are just a few of the…" +05/31/2018,Politicians,@SecretaryPerry,"About to speak at the @TexasIsrael and @ENERGY #CyberSecurity Conference on ""Securing Our Critical Infrastructure""… https://t.co/yf6qDbqi9K" +05/30/2018,Politicians,@SecretaryPerry,RT @lisamurkowski: Check out the editorial I wrote w/ @Energy @SecretaryPerry on why Alaska is the best place in the world to prove a conce… +05/29/2018,Politicians,@SecretaryPerry,"Sen. @lisamurkowski and I want to make Alaska the home of the ""next big idea,"" which is why @ENERGY is hosting its… https://t.co/nqjFahP5w7" +05/28/2018,Politicians,@SecretaryPerry,"Today, we honor the men and women who paid the ultimate sacrifice for our safety and liberty. This #MemorialDay, le… https://t.co/j1Ki1HyLgS" +05/24/2018,Politicians,@SecretaryPerry,.@POTUS' tax cuts and reductions in onerous regulations have provided people the freedom and incentive necessary to… https://t.co/tKHaIlup29 +05/24/2018,Politicians,@SecretaryPerry,"To better help small businesses become more engaged with @ENERGY, our Office of Small and Disadvantaged Business Ut… https://t.co/ifJIvUEJ6Q" +05/24/2018,Politicians,@SecretaryPerry,"Spoke to entrepreneurs and innovators at @ENERGY's Small Business Summit today in Austin, Texas. Supporting small b… https://t.co/Uc9BwcLwM3" +05/24/2018,Politicians,@SecretaryPerry,RT @EnergyDepSec: Very proud to launch the #CEMNICEFuture Initiative today at #CEM9. @SecretaryPerry and I are quite proud to have this ini… +05/23/2018,Politicians,@SecretaryPerry,RT @EnergyDepSec: Very proud to share the successful clean energy research & development efforts in the U.S. with global leaders at #MI3 to… +05/22/2018,Politicians,@SecretaryPerry,Had a great meeting with @POTUS’ @WhiteHouse Fellows on the future of American energy. #NewEnergyRealism #CoolJob https://t.co/HNgfgLajke +05/22/2018,Politicians,@SecretaryPerry,"RT @EnergyDepSec: This week I’m in Copenhagen, Demark at the @CEMSecretariat Clean Energy Minsterial to further collaboration on one of the…" +05/18/2018,Politicians,@SecretaryPerry,Praying for the victims and their families of the Sante Fe high school shooting in Texas. Thank you to the first re… https://t.co/67tIfbMMlp +05/17/2018,Politicians,@SecretaryPerry,"RT @fossilenergygov: Yesterday, @SecretaryPerry spoke @WorldCoal on needing industry’s input to develop small-scale, modular #coal plants o…" +05/17/2018,Politicians,@SecretaryPerry,"RT @ScienceUnderSec: Last week, I had the opportunity to participate at the @WhiteHouse Summit on Artificial Intelligence for American Indu…" +05/15/2018,Politicians,@SecretaryPerry,RT @ENERGY: TODAY: Love energy data? ♥️⚡📈 Join us at 3pm ET on Facebook for a LIVE Q&A with an energy expert from @EIAGov. We'll highlight… +05/14/2018,Politicians,@SecretaryPerry,"Today, we announced a new infrastructure project that will help clean up the legacy of the Cold War. + +Learn more a… https://t.co/ExCx5DkhwQ" +05/13/2018,Politicians,@SecretaryPerry,"Happy Mother’s Day to my wonderful mom, my beautiful wife, and the best daughter-in-law a grandfather could ask for… https://t.co/5zw1krAWJp" +05/11/2018,Politicians,@SecretaryPerry,"RT @lisamurkowski: I was proud to host Secretary of Energy Rick Perry in Alaska last week, to give him a firsthand look at some of the ener…" +05/10/2018,Politicians,@SecretaryPerry,"Last week I toured Alaska's energy infrastructure with Sen. @LisaMurkowski, @SenDanSullivan, and @RepDonYoung. Alas… https://t.co/PEKSqEB4Qr" +05/09/2018,Politicians,@SecretaryPerry,"RT @ENERGY: This week, @SecPompeo announced new efforts by the U.S. and Mexico to partner on nuclear energy. #NewEnergyRealism https://t.co…" +05/08/2018,Politicians,@SecretaryPerry,The Americas are safer today because as a whole we’re producing more energy. America’s new role as an energy export… https://t.co/U81qrlfPK7 +05/07/2018,Politicians,@SecretaryPerry,Had a great lunch today with some wonderful @ENERGY Germantown employees. Everywhere I go in DOE I’m continually le… https://t.co/eIFUqK9Ubp +05/07/2018,Politicians,@SecretaryPerry,".@EnergyDepSec, Under Secretary of Energy Mark Menezes, @ScienceUnderSec, and I are participating in the first Nati… https://t.co/kmjZfpCJ9R" +05/07/2018,Politicians,@SecretaryPerry,Had a great all-hands meeting with @ENERGY employees at our Germantown campus. The dedication and innovation of the… https://t.co/c4bdPO6rai +05/03/2018,Politicians,@SecretaryPerry,The future of America is #supercomputers #Exascale 🇺🇸 https://t.co/qVTDFxJoal +05/03/2018,Politicians,@SecretaryPerry,Just wrapped up an amazing tour of Alaska’s energy infrastructure and meeting with the great people who make the al… https://t.co/IDKyIWUfcQ +05/03/2018,Politicians,@SecretaryPerry,"RT @VP: As we mark 2018 #NationalDayofPrayer at the @WhiteHouse, we remember the American people believe in prayer. Always have. Prayer is…" +05/03/2018,Politicians,@SecretaryPerry,Had the opportunity to tour Alaska’s oil and gas infrastructure with @repdonyoung today. The @AlyeskaPipeline and e… https://t.co/akItqlKXjR +05/02/2018,Politicians,@SecretaryPerry,The scale of Kodiak’s flywheel is amazing. 2 MW of flywheel technology supports the ship crane and the islands’ win… https://t.co/LdtOuxT4xC +05/02/2018,Politicians,@SecretaryPerry,"This is 3 MW of battery storage, which helps support Kodiak islands’ electric wind and hydropower resources.… https://t.co/2U2b8sarRY" +05/01/2018,Politicians,@SecretaryPerry,"Six wind turbines produce 9 MW, about 20 percent of Kodiak’s annual energy needs. #NewEnergyRealism #Alaska #USA https://t.co/9iDiqwTp39" +05/01/2018,Politicians,@SecretaryPerry,"Started today in Kodiak, Alaska with Kodiak Electric Association which generates 98 percent of the island’s electri… https://t.co/BW59WifL8p" +05/01/2018,Politicians,@SecretaryPerry,Excited to tour Alaska’s energy infrastructure with Sen. @LisaMurkowski. Can’t wait to see #NewEnergyRealism at wor… https://t.co/BAMtLr448x +04/28/2018,Politicians,@SecretaryPerry,RT @realDonaldTrump: I urge all Americans to participate in #takebackday tomorrow! Let’s come together and BEAT last October’s record of di… +04/27/2018,Politicians,@SecretaryPerry,RT @AEF_Program: #EinsteinFellows17 and alumni are volunteering @DOE_SC_NSB and were able to meet @SecretaryPerry during his remarks to fin… +04/27/2018,Politicians,@SecretaryPerry,Students from across the country made their way to the Nation’s Capital to compete in the 2018 National Science Bow… https://t.co/fjUdNLKqDq +04/27/2018,Politicians,@SecretaryPerry,Investment in advanced nuclear power technology will support a strong domestic nuclear industry and provide America… https://t.co/KB9wFupjAb +04/27/2018,Politicians,@SecretaryPerry,Excited to be with some of the brightest students in the country at the National Science Bowl @DOE_SC_NSB finals. https://t.co/7vJCV0iGry +04/26/2018,Politicians,@SecretaryPerry,RT @LGHNNSA: Some special guests @Energy are getting the chance to explore the cool world of #STEM careers today. Wouldn’t be surprised if… +04/26/2018,Politicians,@SecretaryPerry,"Excited to be with Mike Pompeo when the 50th vote was cast to confirm him as Secretary of State! @StateDept,… https://t.co/H35QzhXfjI" +04/26/2018,Politicians,@SecretaryPerry,The signing of these SOIs demonstrates the shared commitment of France and United States to nuclear power as an aff… https://t.co/LGWYqqdt4A +04/26/2018,Politicians,@SecretaryPerry,Signed two Statements of Intent with France’s @CEA_Recherche that will further research cooperation between the U.S… https://t.co/zDFIgW46ym +04/26/2018,Politicians,@SecretaryPerry,What is Austin. Thanks for the shoutout @jeopardy. #Texas #MakeAmericaLikeTexas 😉 https://t.co/qovjFqeD5B +04/25/2018,Politicians,@SecretaryPerry,Had a chance to participate in federal #TakeBackDay. Proud of our @Energy workforce who took the opportunity to dis… https://t.co/q6xkgMpeyo +04/24/2018,Politicians,@SecretaryPerry,46 people die every day from prescription opioid overdoses. Protect your family & friends by finding a disposal sit… https://t.co/m5qF1LqS1j +04/24/2018,Politicians,@SecretaryPerry,Honored to be a guest at the @WhiteHouse Arrival Ceremony for French President @EmmanuelMacron. Thank you @POTUS an… https://t.co/Io8wcPszXp +04/23/2018,Politicians,@SecretaryPerry,"RT @ARPAE: ""What you're seeing here today is a window into our future, and the products of some of the very best and brightest in America.""…" +04/22/2018,Politicians,@SecretaryPerry,"This weekend, @ENERGY celebrated #EarthDay at @EarthXorg in Dallas. On exhibit were technological breakthroughs fro… https://t.co/pc5n7MHNIQ" +04/22/2018,Politicians,@SecretaryPerry,"RT @USAndIndia: Ambassador Juster, Deputy Chief of Mission Carlson, and @SecretaryPerry participated in our #EarthDay2018 celebrations by…" +04/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: Happy #EarthDay! Here are a few easy ways you can save energy at home: +💡Switch to efficient lightbulbs +🌡️Adjust thermostat +🚰…" +04/21/2018,Politicians,@SecretaryPerry,"RT @ENERGY: We’re at @EarthXorg in Dallas for #EarthDay weekend! + +Follow our Instagram stories here 👉https://t.co/42XxzwdM4M #EarthX 🌎 htt…" +04/19/2018,Politicians,@SecretaryPerry,The @FIRSTweets Robotics Competition is proof that #STEM can be fun and exciting. It was amazing to witness firstha… https://t.co/oQ8AUCrRnx +04/18/2018,Politicians,@SecretaryPerry,"Anita and I send our love to the entire Bush family tonight. + +We should all cherish the wisdom we received from Fi… https://t.co/swUdjupYLK" +04/17/2018,Politicians,@SecretaryPerry,Today is the last #TaxDay that Americans and companies will have to file under the old system. We're already seeing… https://t.co/ear422ytj2 +04/17/2018,Politicians,@SecretaryPerry,"#NewEnergyRealism means investing in all of our abundant energy sources, including solar technologies, which will h… https://t.co/pAS1FUZ0YF" +04/17/2018,Politicians,@SecretaryPerry,"RT @OfficeOfRKSingh: Minister of Power, and New & Renewable Energy, Shri @RajKSinghIndia met United States Secretary of Energy, H.E. @Secre…" +04/17/2018,Politicians,@SecretaryPerry,RT @dpradhanbjp: Addressing a Joint Press Conference with .@SecretaryPerry https://t.co/6wHxJXdeGv +04/17/2018,Politicians,@SecretaryPerry,RT @USAmbIndia: Excellent discussion at the inaugural session of the Strategic Energy Partnership with @SecretaryPerry and @dpradhanbjp. Gr… +04/17/2018,Politicians,@SecretaryPerry,"RT @dpradhanbjp: Honoured to meet US Sec. of Energy,Mr. @SecretaryPerry on his first visit to India. Jointly launched the India-US Strategi…" +04/17/2018,Politicians,@SecretaryPerry,Proud to host the first inaugural session of the U.S.-India Strategic Energy Partnership with @dpradhanbjp. This pa… https://t.co/FGk0JBa83F +04/16/2018,Politicians,@SecretaryPerry,Had a wonderful time this evening at an industry reception with U.S. and Indian partners. Continued collaboration b… https://t.co/8LY7MGwyue +04/16/2018,Politicians,@SecretaryPerry,"This U.S., India agreement will pave the way for collaborative innovation between @Fermilab's LBNF and DUNE neutrin… https://t.co/E10w2L1UyS" +04/16/2018,Politicians,@SecretaryPerry,"Today, I had the privilege to sign an agreement with India's Atomic Energy Secretary Dr. Sekhar Basu to expand Indi… https://t.co/w7p1Ssa2Ma" +04/16/2018,Politicians,@SecretaryPerry,"Celebrating New Delhi #EarthDay on my India trip. @Energy is working with our Indian partners to produce energy, gr… https://t.co/YBVFgggxsT" +04/16/2018,Politicians,@SecretaryPerry,"Thank you for the warm welcome to India, @USAmbIndia and @USAndIndia. The embassy’s continued support of #USIndia… https://t.co/ZEnccQx6cN" +04/16/2018,Politicians,@SecretaryPerry,Under Secretary of Energy Mark Menezes and I had a great roundtable meeting this morning with @USISPForum and India… https://t.co/J2EHVk2QWx +04/13/2018,Politicians,@SecretaryPerry,"Building on the research of our #NationalLabs, @ENERGY will help tackle this opioid #CrisisNextDoor. One of our top… https://t.co/AK6aBySMlM" +04/13/2018,Politicians,@SecretaryPerry,Had the opportunity to visit @NSCsafety’s #PrescribedToDeath Opioid Memorial today. It’s a sobering reminder and ca… https://t.co/Bm13bMViJ9 +04/12/2018,Politicians,@SecretaryPerry,Excited that we finally had Ted Garrish sworn in as Assistant Secretary of @Energy for International Affairs. I’m c… https://t.co/4wEIzU6Bne +04/12/2018,Politicians,@SecretaryPerry,"Today, on Yom HaShoah, we remember the pain and suffering endured by the Jewish people and the six million lives lo… https://t.co/J878pIq1ym" +04/12/2018,Politicians,@SecretaryPerry,Had a productive meeting with @HouseCommerce @EnergyCommerce on @Energy's #FY2019 priorities to advance… https://t.co/LWxgno4V1m +04/12/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""DOE’s supercomputing and other advance technologies capabilities play a crucial role in combating threats to our energy and na…" +04/11/2018,Politicians,@SecretaryPerry,Today I had the opportunity to testify with @ScienceUnderSec & @LGHNNSA at the Senate Appropriations Subcommittee o… https://t.co/GALI2oVRHg +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""We don’t have to choose between growing our economy and caring for our environment. By embracing innovation, we can benefit bo…" +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""[Exascale supercomputers] will be housed at Argonne, Oak Ridge, and Lawrence Livermore National Labs. They hold immense potent…" +04/11/2018,Politicians,@SecretaryPerry,RT @LGHNNSA: Going to the Hill today with @SecretaryPerry & @ScienceUnderSec to testify on @POTUS' FY19 budget request before the Senate Ap… +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “What is us, Alex?” — @Jeopardy #FinalJeopardy #TodayOnJ + +https://t.co/tzkBXYtz3A https://t.co/UujeylHRQe" +04/10/2018,Politicians,@SecretaryPerry,"RT @ENERGY: New #exascale computers deployed at @Livermore_Lab and @ORNL will help scientists: +💊 Improve healthcare +🔋 Build better batter…" +04/09/2018,Politicians,@SecretaryPerry,"People don’t think of @Energy and the @DeptVetAffairs as being partners, but we’re working together to harness the… https://t.co/ZmNPdYYbkC" +04/09/2018,Politicians,@SecretaryPerry,Five of the 10 fastest supercomputers in the world belong to the Department of @Energy. DOE is investing $1.8 billi… https://t.co/gUtQOFmhKH +04/09/2018,Politicians,@SecretaryPerry,Innovation over regulation is the reason America is a world leader in energy and supercomputing. Innovation has tur… https://t.co/j5woufOoyD +04/09/2018,Politicians,@SecretaryPerry,"RT @FoxBusiness: .@SecretaryPerry on supercomputers: ""This computing capacity that we have now is going to be able to allow us to address i…" +04/09/2018,Politicians,@SecretaryPerry,The Department of @Energy’s initiative for new supercomputers will ensure America’s continued leadership in the vit… https://t.co/ceyzhDcfUz +04/09/2018,Politicians,@SecretaryPerry,"RT @foxandfriends: Coming up…! +@LindseyGrahamSC +@whignewtons +@dbongino +@RepRalphNorman +@HuntingElChapo +@CBP +@DiamondandSilk +@GovAbbott +@…" +04/09/2018,Politicians,@SecretaryPerry,"Congratulations to fellow Texan, @PReedGolf, on his first @TheMasters victory. https://t.co/NinN9lodoU" +04/08/2018,Politicians,@SecretaryPerry,"Had a wonderful time with HRH Mohammed bin Salman, Crown Prince of Saudi Arabia, at the #SABIC event in Katy, Texas… https://t.co/bdZyDWEtD6" +04/05/2018,Politicians,@SecretaryPerry,Just finished a great meeting with @SenateMajLdr and the Paducah Site’s amazing workforce. #energy https://t.co/8hHqeiKgkb +04/05/2018,Politicians,@SecretaryPerry,Thank you to the @hccchamber and @SenateMajLdr for the opportunity to speak at your chamber's lunch today. Kentucky… https://t.co/DgqhUNSjGf +04/05/2018,Politicians,@SecretaryPerry,Kicked off a trip to Kentucky this morning at the Christian County & Hopkinsville energy roundtable with… https://t.co/fPtBc4GTBm +04/04/2018,Politicians,@SecretaryPerry,RT @ENERGY: From sea to shining to sea: Energy Department leadership visits all 17 #NationalLabs⚡️https://t.co/j5N4P6Y3vH @SecretaryPerry @… +04/04/2018,Politicians,@SecretaryPerry,Dr. Martin Luther King Jr. was a man of service who led the fight for equality and paid the ultimate price to advan… https://t.co/cxr0gPUnb1 +04/04/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Today we honor Dr. Martin Luther King, Jr. on the 50th anniversary of his assassination. Earlier this year I spoke abo…" +04/02/2018,Politicians,@SecretaryPerry,"RT @ENERGY: We're teaming up with @ColoradoStateU, @Cummins and @Woodward_Inc to develop medium, heavy-duty and on-road natural gas engines…" +04/02/2018,Politicians,@SecretaryPerry,Had a wonderful time at the @WhiteHouse Easter Egg Roll with my family and @POTUS today. https://t.co/wCkgosvmwc +04/01/2018,Politicians,@SecretaryPerry,He is Risen! Easter is a time to reflect on the joy of the resurrection. Happy Easter! https://t.co/86FaxNITgZ +03/31/2018,Politicians,@SecretaryPerry,Sending my best wishes to all celebrating Pesach. May we all remember and celebrate the inspirational message of re… https://t.co/EfWD6CenhM +03/30/2018,Politicians,@SecretaryPerry,There is no greater sacrifice. Blessings to you and yours this Good Friday. https://t.co/PexxGP67iR +03/30/2018,Politicians,@SecretaryPerry,"RT @ENERGY: As #WomensHistoryMonth comes to a close, we celebrate those who have advanced American energy, science, and technology. #WomenI…" +03/29/2018,Politicians,@SecretaryPerry,An investment in American infrastructure is an investment in American workers. @POTUS' #InfrastructureInAmerica pla… https://t.co/hoFtEdZiiG +03/29/2018,Politicians,@SecretaryPerry,RT @WhiteHouse: .@ENERGY Secretary Rick Perry: “Rising LNG Exports A Sign Trump Administration’s Infrastructure Policies Are Paying Off” ht… +03/29/2018,Politicians,@SecretaryPerry,"America’s energy infrastructure is in need of rebuilding, and @POTUS’ “Building a Stronger America” infrastructure… https://t.co/MuzyhQdwoC" +03/28/2018,Politicians,@SecretaryPerry,RT @SLAClab: Lab leadership welcomes @ENERGY @SecretaryPerry to SLAC this beautiful March morning for a tour of our cutting-edge facilities… +03/28/2018,Politicians,@SecretaryPerry,"⚡️ “Touring Berkeley Lab” + +https://t.co/FJriuE0zpY" +03/27/2018,Politicians,@SecretaryPerry,".@SandiaLabs plays a pivotal role in our Nation’s defense, and it was a privilege to see firsthand the hard work th… https://t.co/BFDzIZXpgr" +03/27/2018,Politicians,@SecretaryPerry,Stopping for some fuel between the labs this morning at @innoutburger. #innout #california #energy https://t.co/WDYai2JfwZ +03/27/2018,Politicians,@SecretaryPerry,"Had a great all hands discussion with scientists, researchers, and innovators from the @Livermore_Lab and… https://t.co/yFjUitRA4l" +03/26/2018,Politicians,@SecretaryPerry,Had a great discussion at lunch with veterans in science and technology at @Livermore_Lab on @ENERGY's #ACTIV progr… https://t.co/Rl30MwbcaE +03/26/2018,Politicians,@SecretaryPerry,RT @Livermore_Lab: Today we’re hosting @ENERGY’s @SecretaryPerry at the Lab to see how we’re making a difference in the security of our nat… +03/26/2018,Politicians,@SecretaryPerry,Just finished touring the largest and most energetic laser in the world at @Livermore_Lab's National Ignition Facil… https://t.co/gpIvCBiA9N +03/26/2018,Politicians,@SecretaryPerry,Excited to be visiting @Livermore_Lab where @ENERGY is working with our #NationalLabs to make America a safer place… https://t.co/vzag6MPDpL +03/26/2018,Politicians,@SecretaryPerry,On #NationalMedalOfHonorDay we honor those who showed valor in the face of adversity. One such man was First Lieute… https://t.co/064QmoW9cX +03/23/2018,Politicians,@SecretaryPerry,"While fossil fuel use and demand continues to rise so does the deployment of renewables, which made the #USA🇺🇸 numb… https://t.co/GlWeLiV7ja" +03/23/2018,Politicians,@SecretaryPerry,"Today, I went on a tour of @BAMC to learn how the Department of @Energy can help the @USArmy improve care for soldi… https://t.co/ncCStHXgiw" +03/22/2018,Politicians,@SecretaryPerry,"#TBT: Proud to join @DepSecHargan earlier this week for the swearing-in ceremony of my good friend, Dr. Brett Gior,… https://t.co/XWU0ybS0kN" +03/22/2018,Politicians,@SecretaryPerry,"Thank you @SASCMajority Chair @SenJohnMcCain, Ranking Member @SenJackReed, and Sen. @JimInhofe for hosting a produc… https://t.co/sEvvTPHAbk" +03/22/2018,Politicians,@SecretaryPerry,"For 100 years @LyondellBasell's Houston refinery has provided reliable energy to Texas and the Nation. Today, they… https://t.co/VKLv39xFTP" +03/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “[@ENERGY’s] budget request capitalizes on the Department of Energy’s scientific capabilities to advance our nuclear security,…" +03/22/2018,Politicians,@SecretaryPerry,RT @ENERGY: “The Department of @Energy’s role in our national security is one I undertake with the utmost seriousness.” – @SecretaryPerry a… +03/22/2018,Politicians,@SecretaryPerry,RT @SASCMajority: Today SASC will hold a hearing on challenges in the Department of @ENERGY atomic energy defense programs with @SecretaryP… +03/21/2018,Politicians,@SecretaryPerry,"Expanding and exporting nuclear energy is a key part of #NewEnergyRealism. +#Energy #USA +https://t.co/0HtszTgWaJ" +03/21/2018,Politicians,@SecretaryPerry,It was an honor to host Crown Prince Mohammad bin Salman of Saudi Arabia with @POTUS at the @WhiteHouse yesterday. https://t.co/ihNLrJU7Bc +03/20/2018,Politicians,@SecretaryPerry,Excited to be working with @POTUS’ @WhiteHouse on using prizes and challenges to foster innovation that improves Am… https://t.co/Ei9xrszF3a +03/20/2018,Politicians,@SecretaryPerry,Thank you @EnergyGOP Chair @LisaMurkowski and @EnergyDems' Ranking Member @SenatorCantwell for a productive hearing… https://t.co/qGoFjvnATw +03/20/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “Wherever I go, one thing is made abundantly clear to me: those who work for the Department of Energy are dedicated, they’re pa…" +03/20/2018,Politicians,@SecretaryPerry,RT @NNSANews: #NNSA’s FY19 budget request is the result of a disciplined process to prioritize funding for validated requirements and will… +03/20/2018,Politicians,@SecretaryPerry,"RT @lisamurkowski: Today I chaired an Energy Committee hearing, where @SecretaryPerry presented the President’s FY19 budget request for the…" +03/20/2018,Politicians,@SecretaryPerry,"RT @NEI: TUNE IN: Senate Energy panel to discuss @ENERGY fiscal year 2019 budget with @SecretaryPerry at 10 am ET +@EnergyGOP @EnergyDems +h…" +06/29/2018,Politicians,@JoeBiden,"We need more men like @terrycrews who will stand up and speak out. You’re helping change the culture, Terry. It mat… https://t.co/4f92EQCtEb" +06/29/2018,Politicians,@JoeBiden,"Another shooting. Another night in America where a father, a wife, a friend, a neighbor won’t be coming home. We ca… https://t.co/zdl0fAGZIp" +06/28/2018,Politicians,@JoeBiden,"It’s up to us, America. Speak out. Rise up. Be heard. The price to be paid for putting our values at risk must be c… https://t.co/pb0DuyNlxp" +06/28/2018,Politicians,@JoeBiden,Advice and consent. Absent that—which we’ve always had for nominees in election years in the past—we shouldn’t move… https://t.co/ybVgl3xzRi +06/28/2018,Politicians,@JoeBiden,I wish this Senate would force a consensus choice—as we did with Justice Kennedy—it no longer has the will. +06/28/2018,Politicians,@JoeBiden,I wish this President would engage in conversations and nominate a consensus candidate. That’s what we’ve done in t… https://t.co/WDOIF2zWgj +06/28/2018,Politicians,@JoeBiden,"I said a year ago we’re living through a battle for the soul of this nation. Now there can be no doubt. Roe, Oberge… https://t.co/Vao0twNtQb" +06/27/2018,Politicians,@JoeBiden,"Inspired by the patients, families, clinicians, and researchers of @stjuderesearch I met earlier this month. They a… https://t.co/ifsZxuRnCh" +06/26/2018,Politicians,@JoeBiden,We don’t need to treat migrants from Central America with cruelty to strengthen US border security. We need persona… https://t.co/2iq6gJxKX4 +06/20/2018,Politicians,@JoeBiden,"A policy that separates young children from their parents isn’t a “deterrent”. It’s unconscionable. + +A policy that… https://t.co/IjWCFZoxRq" +06/16/2018,Politicians,@JoeBiden,"RT @PoetryInAmerica: For #FathersDay, we’re giving free access to our episode on Robert Hayden’s “Those Winter Sundays,” available at https…" +06/15/2018,Politicians,@JoeBiden,RT @BidenCancer: Why this new cancer award may matter more than most https://t.co/WqgCgGlWFD via @FortuneMagazine +06/15/2018,Politicians,@JoeBiden,"RT @DrBiden: Sometimes, it’s the smallest kindness that can make the biggest difference. FIERCE Awards celebrate exceptional people doing i…" +06/11/2018,Politicians,@JoeBiden,RT @DrBiden: Parents: Important information on how to keep your kids safe this summer from @BeauBidenFdn. Review & share. https://t.co/HLkD… +06/09/2018,Politicians,@JoeBiden,"PEPFAR is one of the most successful, effective, and world-changing initiatives the United States has ever led. Now… https://t.co/HFIh0MTOAu" +06/09/2018,Politicians,@JoeBiden,Jamie Dimon & Warren Buffett's call to end quarterly guidance is an important step toward ending our nation's cultu… https://t.co/UQI5onBW80 +06/08/2018,Politicians,@JoeBiden,"GOP all-out assault on healthcare continues. First, they want to cut funding for CHIP. Now DOJ trying to end protec… https://t.co/Vp7Ts6cTel" +06/08/2018,Politicians,@JoeBiden,"Putin’s Russia invaded its neighbors, violated our sovereignty by undermining elections, and attacks dissidents abr… https://t.co/k5egKTRHce" +06/07/2018,Politicians,@JoeBiden,RT @DrBiden: Join us and follow the #WalkOfAmerica journey at @supportthewalk & learn more about the entire team: https://t.co/mEK9WQLVTe (… +06/07/2018,Politicians,@JoeBiden,RT @DrBiden: Joe and I checked in with the amazing military veterans of the #WalkOfAmerica team & were so inspired to hear how they're doin… +06/06/2018,Politicians,@JoeBiden,"They may have murdered our heroes, but the dream still lives buried deep in our broken hearts. Fifty years after he… https://t.co/wGoNN4hUhs" +05/31/2018,Politicians,@JoeBiden,"Last year, Virginians showed up to elect leaders who believe health care is a right, not a privilege. As a result,… https://t.co/z0RNPoQCnM" +05/30/2018,Politicians,@JoeBiden,"Looking forward to continuing my #AmericanPromiseTour in June and discussing “Promise Me, Dad” with these inspiring… https://t.co/3DAv8Ypy9Q" +05/29/2018,Politicians,@JoeBiden,"RT @DrBiden: Today, as we remember all the brave men & women who have made the ultimate sacrifice for our country, let's also honor their f…" +05/28/2018,Politicians,@JoeBiden,"Our men & women in uniform are the heart, the soul, and the spine of this nation. Today we remember those among the… https://t.co/tDDOxhNoU1" +05/27/2018,Politicians,@JoeBiden,"In a moment of crisis, Jason Seaman showed incredible courage. Running directly into gunfire to save his students’… https://t.co/GqNHai3Wuv" +05/25/2018,Politicians,@JoeBiden,"Today, the @OECD officially invited Colombia to become its 37th member. Congratulations to President… https://t.co/WwXSAneYmO" +05/22/2018,Politicians,@JoeBiden,It favors the powerful over the powerless and stacks the deck even further against working people. It's wrong. +05/22/2018,Politicians,@JoeBiden,Yesterday’s Supreme Court decision was a huge blow to workers. It denies them the ability to take their employers… https://t.co/Y7PhFly9YD +05/21/2018,Politicians,@JoeBiden,"Everyone deserves to be treated with dignity and respect, but too many LGBTQ Americans are still denied this basic… https://t.co/aXBMcLOWwP" +05/18/2018,Politicians,@JoeBiden,Enough is enough is enough. Decent people have to take a stand. These are our children. +05/18/2018,Politicians,@JoeBiden,"Count me in, @De11eDonne. Proud to take a stand with you and the incredible athletes of @WNBA who are partnering wi… https://t.co/p2UIYnqr3W" +05/16/2018,Politicians,@JoeBiden,"Guys, if you see one of your classmates trying to take advantage of a woman who did not or could not consent, you m… https://t.co/5P4SS7qYtA" +05/15/2018,Politicians,@JoeBiden,Harry Reid is literally and figuratively a fighter. I’m looking forward to working with him again soon. My thoughts… https://t.co/HVCOwtdWS8 +05/15/2018,Politicians,@JoeBiden,"On behalf of the whole Biden family, I’d like to offer our thoughts and best wishes to @FLOTUS for a swift and full recovery." +05/15/2018,Politicians,@JoeBiden,Joined today @UDBidenInst by one of the most brilliant public servants I’ve ever worked with: @ErnestMoniz. By inve… https://t.co/ySvVcwdUV9 +05/12/2018,Politicians,@JoeBiden,Free and fair elections are at the heart of liberal democracy. That’s why I’ve joined @AndersFoghr and Michael Cher… https://t.co/L06qrkKYaj +05/08/2018,Politicians,@JoeBiden,"Today’s announcement that the United States will withdraw from the Iran nuclear deal is a profound mistake. + +https://t.co/Odx33rBf3V" +05/04/2018,Politicians,@JoeBiden,RT @DrBiden: Our hearts ache for the families of the brave airmen of the Puerto Rico National Guard killed in this week’s crash in SC. Thei… +04/25/2018,Politicians,@JoeBiden,Every person is entitled to be treated with dignity and respect. But far too often LGBTQ youth in this country are… https://t.co/WwiyzG96IE +04/20/2018,Politicians,@JoeBiden,"Cancer patients and their families deserve a system that puts saving lives above every other thing. With your help,… https://t.co/4PnsHyykqD" +04/19/2018,Politicians,@JoeBiden,Testing rape kits should & must be a national priority. I’m proud to have been interviewed for @Mariska’s… https://t.co/w5tGbmpX3Q +04/18/2018,Politicians,@JoeBiden,"RT @bidenfoundation: Tune in NOW to watch @JoeBiden, @ItsOnUs and more recognize the bravery of students who are leading the fight to end s…" +04/18/2018,Politicians,@JoeBiden,There was no one else quite like Barbara Bush. Jill and I — and the entire Biden family — send our heartfelt condol… https://t.co/Tiia0XYyGq +04/15/2018,Politicians,@JoeBiden,"Five years after an act of hate struck Boston, the thousands of acts of charity and compassion on #OneBostonDay rem… https://t.co/pGUol7OnNn" +04/05/2018,Politicians,@JoeBiden,The United States should be leading on this issue. Improving transparency is one essential step to ending the pay g… https://t.co/2thryhh495 +04/04/2018,Politicians,@JoeBiden,Dr. King was proof that the promise of America can beat so strongly in the heart of one person they can move this n… https://t.co/8sohByaYOH +04/03/2018,Politicians,@JoeBiden,"RT @DrBiden: Congratulations to @NovaMBB on tonight’s win, especially Delaware’s own Donte DiVincenzo! Always glad to see a Philly team tak…" +04/02/2018,Politicians,@JoeBiden,I’m grateful to have the opportunity to continue the #AmericanPromiseTour in June and hear from so many more people… https://t.co/7rIwW6p1hB +03/28/2018,Politicians,@JoeBiden,RT @DrBiden: (1/3) Help me & @bidenfoundation recognize our nation’s incredible #military kids & thank them for the sacrifices they make to… +03/28/2018,Politicians,@JoeBiden,"Cierra, you remembered the most important thing I had to say. You will beat this. + +And as I’ve always said, if ther… https://t.co/3wuRYgbUiu" +03/26/2018,Politicians,@JoeBiden,My mother often reminded me that “bravery resides in every heart and some day it will be summoned.” Lt. Col. Arnaud… https://t.co/FbCjXR1HH5 +03/22/2018,Politicians,@JoeBiden,"At @UDBidenInst, we’re working on the pressing domestic policy challenges of our time. But we can't do it alone. I… https://t.co/LEke7FevbK" +03/22/2018,Politicians,@JoeBiden,Our top priority should be investing in our workers by 1. ensuring they have the skills & opportunities to get a go… https://t.co/hymhHBmaJw +03/20/2018,Politicians,@JoeBiden,"Let’s give patients full electronic medical records within 24 hours of request, a safe place to store them, and a t… https://t.co/LO1lUXXn5X" +03/17/2018,Politicians,@JoeBiden,"RT @HeidiHeitkamp: North Dakotans have a strong, tough work ethic & don't quit until they get the job done. VP @JoeBiden shares this same q…" +03/16/2018,Politicians,@JoeBiden,"Louise Slaughter was an unparalleled champion for women. I worked with her on the Violence Against Women Act, and I… https://t.co/LL5E7Uk6Iz" +03/14/2018,Politicians,@JoeBiden,The people of Pennsylvania’s 18th district showed up yesterday. They demonstrated that they want to be represented… https://t.co/hT9bOWBKdm +03/12/2018,Politicians,@JoeBiden,I was in southwestern Pennsylvania with @ConorLambPA last week. Something's changing out there. You can feel the gr… https://t.co/PBoQOoCTwV +03/08/2018,Politicians,@JoeBiden,"Everyone does better when women are able to rise as high as their talents will take them. + +On this International Wo… https://t.co/lP8vHdataP" +03/07/2018,Politicians,@JoeBiden,"Sarah, I'm incredibly proud of you. You're a woman of real courage. https://t.co/kQlQdGWlbt" +02/28/2018,Politicians,@JoeBiden,"It takes courage to speak out against sexual assault, or to step in to stop it from happening. + +If you know someon… https://t.co/Giy6NOfylg" +02/26/2018,Politicians,@JoeBiden,"We need to give young immigrants who came to our country as children permanent assurance that they are safe here, a… https://t.co/iIKBeACnCr" +02/23/2018,Politicians,@JoeBiden,"When I wrote the Violence Against Women Act in 1994, it included a provision that empowered women to take abusers t… https://t.co/TYubZkpm2y" +02/22/2018,Politicians,@JoeBiden,Rev. Graham was spiritual advisor to a dozen Presidents - and countless millions of Americans. We remember his exam… https://t.co/wr0N6JCLaq +02/15/2018,Politicians,@JoeBiden,I am at a loss for what more to say. I grieve with the families in Parkland today. I grieve with the families acros… https://t.co/PaYjuPSkw8 +02/14/2018,Politicians,@JoeBiden,We need to believe women like Colbie. We need to recognize the incredible courage it takes for women like her to co… https://t.co/oyPN3H9klg +02/14/2018,Politicians,@JoeBiden,We had the honor of having Jesmyn Ward moderate the 30th event on the #AmericanPromiseTour last night. It was wonde… https://t.co/gpsK1Kbr5L +02/10/2018,Politicians,@JoeBiden,I’m in Indianapolis with @southcity22 and we have a message for thousands of fraternity brothers and sorority siste… https://t.co/XWbaPwGHcb +02/09/2018,Politicians,@JoeBiden,William Gay is the real deal - on and off the field. He’s using his voice to get other men involved to end sexual a… https://t.co/9ROOwHCPGW +02/09/2018,Politicians,@JoeBiden,Incredible day opening the new @PennBiden Center in Washington. We're working on the foreign policy challenges of t… https://t.co/SPyK9u63bA +02/05/2018,Politicians,@JoeBiden,"RT @DrBiden: Video speaks for itself. Congrats, @Eagles! #SuperBowlLll https://t.co/dedjLtDQSw" +02/05/2018,Politicians,@JoeBiden,"This team never gave up. No matter the injuries, no matter the odds. They showed incredible heart. What a great win… https://t.co/ZBNIvTZX7j" +02/01/2018,Politicians,@JoeBiden,"RT @bidenfoundation: One year ago, our journey started. We’re thankful for this year of progress, collaboration, and purpose, and we’re eag…" +01/31/2018,Politicians,@JoeBiden,"Proud to call you a friend, @RepJoeKennedy. You captured the idealism and optimism of our party — and this nation.… https://t.co/pVmZ4Rwsmq" +01/23/2018,Politicians,@JoeBiden,This country has made great progress in changing the culture around advancing LGBTQ equality and ending violence ag… https://t.co/zVGPMxwfYt +01/15/2018,Politicians,@JoeBiden,"Dr. King said that change “comes through continuous struggle.” As we celebrate his legacy today, we’re once again l… https://t.co/zyHlqpFCyi" +01/12/2018,Politicians,@JoeBiden,"It’s not how a president should speak. It’s not how a president should behave. Most of all, it’s not what a preside… https://t.co/9XqCQfB056" +01/08/2018,Politicians,@JoeBiden,"RT @DrBiden: 3 years ago, @BarackObama & I announced a plan for #FreeCommunityCollege. + +Today there are free tuition programs in 16 states…" +01/01/2018,Politicians,@JoeBiden,"Boston has had many great mayors in its remarkable history, and @marty_walsh can proudly take his place among any o… https://t.co/8by2JjmBu4" +12/24/2017,Politicians,@JoeBiden,"Jill and I, and the whole Biden family, want to wish you a happy, healthy, and safe holiday season. https://t.co/X2xHY8pjtT" +12/15/2017,Politicians,@JoeBiden,It’s been five years since 20 first-graders and 6 educators were murdered by a gunman at Sandy Hook Elementary Scho… https://t.co/TzfjtrOXTQ +12/13/2017,Politicians,@JoeBiden,"Ann Arbor - I’m terribly sorry I won’t get to see you this evening, but we want to make sure everyone can safely ma… https://t.co/aRHCZ1jjun" +12/13/2017,Politicians,@JoeBiden,Help your friends and loved ones get the peace of mind of health insurance for 2018. Remind them that this Friday i… https://t.co/zVRwxpu1eP +12/13/2017,Politicians,@JoeBiden,"Doug Jones. Thank you, Alabama. You’ve elected a man of incredible integrity, grit, and character. A fighter for wo… https://t.co/sOLcmRMQOk" +12/11/2017,Politicians,@JoeBiden,"Tomorrow, the people of Alabama will decide whether the United States Senate will gain the courage, character, and… https://t.co/E1JxiCr5Yr" +12/11/2017,Politicians,@JoeBiden,"The people of California are on my mind as they suffer through these devastating wildfires. Amidst the loss, I’m in… https://t.co/KgpeOqcfb9" +12/11/2017,Politicians,@JoeBiden,"It’s a little too cold for ice cream in Madison, but I hope you liked the cupcakes all the same. Thanks for spendin… https://t.co/dnhLw7XkBY" +12/06/2017,Politicians,@JoeBiden,Be who you are. Stand for what you are. Few people embody that better than @melindagates. Enjoyed discussing… https://t.co/J6V2w4zxGx +12/06/2017,Politicians,@JoeBiden,I'm going to keep speaking out on the importance of standing up to the Kremlin through my work @PennBiden. My colle… https://t.co/hKcBgoWZU2 +12/04/2017,Politicians,@JoeBiden,RT @bidensbriefing: “We Are Living Through A Battle For The Soul Of This Nation”: An op-ed I wrote in the days following the violence and h… +12/02/2017,Politicians,@JoeBiden,"I've been on the road talking about #PromiseMeDad, the book I wrote about my son Beau, but I've been most amazed li… https://t.co/WafkI12S5Q" +12/01/2017,Politicians,@JoeBiden,No one who has ever met Sandy Winnefeld has doubted his strength or resolve. And no one who reads this article will… https://t.co/hbSJEHnmf9 +12/01/2017,Politicians,@JoeBiden,One of the best shines I’ve ever had. https://t.co/1BwrihNF32 +11/29/2017,Politicians,@JoeBiden,"Throughout my career in public service, I’ve heard a lot of great ideas, and developed a few of my own. Now we want… https://t.co/h0QbdZQDjT" +11/29/2017,Politicians,@JoeBiden,"Every week, we’ll hear from leaders in business, politics, academics—and everyday Americans sharing bright ideas th… https://t.co/0NndpuDpnQ" +11/29/2017,Politicians,@JoeBiden,"Today I’m announcing the launch of the Biden Forum, a new space for conversations about America’s future:… https://t.co/8Yo1wcHeo6" +11/25/2017,Politicians,@JoeBiden,"Today, on the International Day for the Elimination of Violence Against Women, let's remember all the work that rem… https://t.co/Uw78owAUg4" +11/22/2017,Politicians,@JoeBiden,Thank you to the #AmericanPromiseTour moderators and thousands of readers who attended events or picked up a copy o… https://t.co/sT6575BdT8 +11/12/2017,Politicians,@JoeBiden,May today serve as a reminder of our solemn duty to look after the men and women who have served in our Armed Force… https://t.co/52zsLxmxVw +11/12/2017,Politicians,@JoeBiden,"RT @DrBiden: To all our service men and women, veterans, and military families, thank you for your sacrifice. #VeteransDay2017 https://t.co…" +11/09/2017,Politicians,@JoeBiden,"You’re going to make us all proud, Danica. https://t.co/doouBh0qME" +11/08/2017,Politicians,@JoeBiden,Juanita Perez Williams ran an incredible campaign in Syracuse. So proud of the work she did. And still hoping for a… https://t.co/51yXACbGLp +11/08/2017,Politicians,@JoeBiden,And mayors like Rick Kriseman and Joyce Craig who are incredible leaders in their communities. +11/08/2017,Politicians,@JoeBiden,"State legislators like Sara Cambensy in Michigan and Danica Roem, Jennifer Carroll Foy, David Reid, John Bell, and… https://t.co/DIsK7TXE9m" +11/08/2017,Politicians,@JoeBiden,"Candidates like Ralph Northam and Justin Fairfax, who will ensure that Virginia’s economic recovery continues to re… https://t.co/wIEMXQ4RF8" +11/08/2017,Politicians,@JoeBiden,A resounding defeat tonight for President Trump. Voters around the country rejected the ugly politics we have seen… https://t.co/Hl9M7wLfry +11/06/2017,Politicians,@JoeBiden,"Folks, there's an election happening tomorrow. We've got to keep our eye on the ball. Let's get this done. https://t.co/UWl53fswMz" +11/06/2017,Politicians,@JoeBiden,These tragedies aren’t inevitable. Don’t let hopelessness win today. We must persist in our efforts to prevent gun violence. +11/06/2017,Politicians,@JoeBiden,Americans again murdered in a place of worship. Jill and I send our prayers to Sutherland Springs. +11/01/2017,Politicians,@JoeBiden,Don’t let politics & misinformation keep your loved ones from getting health insurance. Call/text them today to make sure they sign up! +11/01/2017,Politicians,@JoeBiden,Today is the first day to sign up for 2018 health insurance through https://t.co/3CYKhP8ZoR. Deadline is December 1… https://t.co/P9LK1rMEBI +11/01/2017,Politicians,@JoeBiden,"New York, we love you. Grateful to first responders who saved lives today. Jill and I are keeping you all in our prayers." +10/25/2017,Politicians,@JoeBiden,"Honored to work with a woman of great courage, my friend @ladygaga. With her leadership, and your help, we can chan… https://t.co/gtRifmIR9h" +10/24/2017,Politicians,@JoeBiden,"Alabama, this gets to the heart of why you should vote for Doug Jones on December 12th. A man of incredible integri… https://t.co/dn2nNjzNDe" +10/23/2017,Politicians,@JoeBiden,"RT @UDBidenInst: ""Like yesterday's factory workers, tmrw's workforce needs unions to keep the American dream alive."" - @MaryKayHenry https:…" +10/23/2017,Politicians,@JoeBiden,RT @bidensbriefing: My essay on our fight to end sexual assault on campus. https://t.co/LkjXs3c5FY @ItsOnUs @marieclaire #ItsOnUs #bidensbr… +10/18/2017,Politicians,@JoeBiden,"Looking forward to discussing my new book PROMISE ME, DAD with these inspiring individuals on #AmericanPromiseTour… https://t.co/VQ0Xlr77UB" +10/17/2017,Politicians,@JoeBiden,RT @JohnKasich: Looking forward to joining VP @JoeBiden for a discussion at @UDBidenInst about how we can bridge the divide facing our nati… +10/17/2017,Politicians,@JoeBiden,"@JohnKasich @UDelaware @UDBidenInst There's a lot at stake, but John and I are still optimistic. I hope you'll tune… https://t.co/kGtAaXl3gJ" +10/17/2017,Politicians,@JoeBiden,Looking forward to welcoming Gov @JohnKasich to @UDelaware @UDBidenInst to discuss bridging partisan divides & restoring faith in government +10/17/2017,Politicians,@JoeBiden,"RT @BarackObama: I'm grateful to @SenJohnMcCain for his lifetime of service to our country. Congratulations, John, on receiving this year's…" +10/17/2017,Politicians,@JoeBiden,John McCain is the real deal. A model public servant. And my dear friend. I was honored to present him with the 2017 #LibertyMedal tonight. +10/13/2017,Politicians,@JoeBiden,Unilaterally putting the Iran deal at risk does not isolate Iran. It isolates us: https://t.co/Cj1zu126bb +10/12/2017,Politicians,@JoeBiden,Proud to be at @RutgersU today with survivors & activists working to change the campus culture on sexual assault. #ItsOnUs +10/12/2017,Politicians,@JoeBiden,"RT @bidenfoundation: At 2pm ET, @JoeBiden will be live at @RutgersU to tell students #ItsOnUs to end sexual assault. Watch live at https://…" +10/05/2017,Politicians,@JoeBiden,RT @DrBiden: Inspired by teachers around the globe who help students like these in Zambia reach their dreams. #WorldTeachersDay https://t.c… +10/05/2017,Politicians,@JoeBiden,"Spoke to my friend Jim Murren, so proud of the men and women at MGM Resorts. #VegasStrong" +10/04/2017,Politicians,@JoeBiden,"Jalal Talabani was a champion of the US-Iraq partnership and a friend, whose unifying leadership will be missed." +10/03/2017,Politicians,@JoeBiden,Barack & Michelle: all of the Bidens send our love today on your 25th anniversary. May you have many more years of joy still to come. +10/03/2017,Politicians,@JoeBiden,"RT @DrBiden: On this heartbreaking day, our love to families who lost loved ones & gratitude to first responders in #LasVegas." +10/02/2017,Politicians,@JoeBiden,How long do we let gun violence tear families apart? Enough. Congress & the WH should act now to save lives. There's no excuse for inaction. +10/02/2017,Politicians,@JoeBiden,Appalled by the senseless loss of life in Las Vegas. Jill and I hold all those affected and grieving in our hearts. +09/29/2017,Politicians,@JoeBiden,RT @bidenfoundation: The Bidens caught up with @BarackObama and Prince Harry before cheering on Team USA today at @InvictusToronto. https:/… +09/29/2017,Politicians,@JoeBiden,Now is not the time to go backward—it's on all of us to stop sexual violence. https://t.co/EUh61Mjmit +09/29/2017,Politicians,@JoeBiden,"There is only one way to confront hatred and prejudice: head on. Well said, Lt. Gen Silveria. https://t.co/vQ2Aflo8Tx" +09/28/2017,Politicians,@JoeBiden,"We Veeps stick together. Jill and I, and all of the Bidens, are with you, Julia. https://t.co/JP0c2wtrJ6" +09/28/2017,Politicians,@JoeBiden,"Steve Scalise’s strength and resilience inspire all of us. Good to see you back on the job, Steve." +09/27/2017,Politicians,@JoeBiden,"Southern Florida chose a proven leader and consensus builder yesterday. Congratulations to @Annette_Taddeo, Florida’s newest State Senator." +09/25/2017,Politicians,@JoeBiden,Beau fought to protect the most vulnerable among us. Thanks to my friend @barackobama for honoring his life’s work… https://t.co/2WsWWYPwc9 +09/25/2017,Politicians,@JoeBiden,RT @BeauBidenFdn: Read about the devastating case that prompted Beau to train 5% of Delaware’s population in child abuse prevention: https:… +09/22/2017,Politicians,@JoeBiden,"Today's Title IX decision is shameful, but the law is still the law. Colleges & universities must honor obligations to students & survivors." +09/21/2017,Politicians,@JoeBiden,"@UDBidenInst @PennyPritzker @Airbnb @LinkedIn On the @UDBidenInst blog, @LinkedIn's @allenb says better data & ment… https://t.co/nYBJks88sg" +09/21/2017,Politicians,@JoeBiden,"@UDBidenInst @PennyPritzker @Airbnb @LinkedIn Following @UDBidenInst’s forum on work, @Airbnb's @bchesky writes how… https://t.co/qM8kvrbNuD" +09/20/2017,Politicians,@JoeBiden,"On the new @UDBidenInst blog, @PennyPritzker, @Airbnb & @LinkedIn share strategies to help American workers succeed: https://t.co/ZMPkwBcBsu" +09/20/2017,Politicians,@JoeBiden,Sending prayers to all who lost loved ones in the devastating earthquake. We are seeing the resilience and heart of the Mexican people. +09/19/2017,Politicians,@JoeBiden,"#ItsOnUs is making great progress toward ending sexual assault, but today we face new challenges: https://t.co/gUdR13uYeY" +09/19/2017,Politicians,@JoeBiden,Just had the chance to see President Trump's golf swing tweet. Enough. This has to stop. Our children are watching. +09/18/2017,Politicians,@JoeBiden,Here's a path forward to choose a future that puts work first: https://t.co/Y6B2q21nHF +09/18/2017,Politicians,@JoeBiden,My new initiative at the Biden Institute will identify strategies for building a future of quality jobs: https://t.co/Y6B2q21nHF +09/14/2017,Politicians,@JoeBiden,America is strongest when we lead with our values—at home and abroad. https://t.co/g8vGlXdeqz +09/13/2017,Politicians,@JoeBiden,"23 years ago today, the Violence Against Women Act became law. VAWA is changing the culture & saving lives, but our work continues. #VAWA23" +09/11/2017,Politicians,@JoeBiden,"16 years ago today, terror tried to break us. It did not, and will never, succeed. Our grit & determination are the strongest force I know." +09/10/2017,Politicians,@JoeBiden,Jill and I are praying for the safety of everyone in the path of Hurricane Irma this weekend. Stay strong - the country stands with you. +09/07/2017,Politicians,@JoeBiden,Any change that weakens Title IX protections will be devastating: https://t.co/8E3n3RIMTS +09/05/2017,Politicians,@JoeBiden,"Brought by parents, these children had no choice in coming here. Now they'll be sent to countries they've never known. Cruel. Not America." +08/27/2017,Politicians,@JoeBiden,"We are living through a battle for the soul of this nation. +https://t.co/2XtpeyhVex" +08/24/2017,Politicians,@JoeBiden,"A first look at the cover for my new book, PROMISE ME, DAD https://t.co/Ce1eY5Bghw https://t.co/QRXipZz0Ef" +08/17/2017,Politicians,@JoeBiden,Praying tonight for the victims of #Barcelona attack & their families. Heinous acts of terror cannot break the spirit of our Spanish friends +08/12/2017,Politicians,@JoeBiden,There is only one side. #charlottesville +08/12/2017,Politicians,@JoeBiden,"No. Not in America. We must be stronger, more determined and more united than ever. Racism and hate have no place here. #charlottesville" +08/04/2017,Politicians,@JoeBiden,"Your service has been a great gift to the country, and your friendship and brotherhood are a great gift to me. Happ… https://t.co/ZgvLlwelmu" +07/31/2017,Politicians,@JoeBiden,Thrilled to see the 2028 Olympics coming to Los Angeles. Thanks to @MayorOfLA Garcetti who worked hard to secure a big win for US athletics. +07/28/2017,Politicians,@JoeBiden,Hope to see you at a stop this fall on my #AmericanPromiseTour – tickets are available now: https://t.co/Y7IzxK9m5l https://t.co/LnW8Ob2ah8 +07/28/2017,Politicians,@JoeBiden,Thank you to everyone who tirelessly worked to protect the health care of millions. You saved lives. +07/26/2017,Politicians,@JoeBiden,To all of you working to stop Republicans’ devastating “health” bill: Thank you. We’re not done yet. Please keep going. +07/26/2017,Politicians,@JoeBiden,Any final bill that looks anything like their proposals so far would be devastating. +07/26/2017,Politicians,@JoeBiden,Every patriotic American who is qualified to serve in our military should be able to serve. Full stop. +07/24/2017,Politicians,@JoeBiden,"The GOP's ""health"" plan would gut care & treatment for opioid addiction. Call your senators—the time to act is now. https://t.co/ZHX7KZLgXk" +07/20/2017,Politicians,@JoeBiden,"Incredible progress in cancer research and treatment in just the last year offers new promise and new hope. You can win this fight, John." +07/20/2017,Politicians,@JoeBiden,John and I have been friends for 40 years. He's gotten through so much difficulty with so much grace. He is strong - and he will beat this. +07/17/2017,Politicians,@JoeBiden,@washingtonpost I was a senator for 36 years. I can assure you that your call matters. Your viewpoint might not alw… https://t.co/a6vOmJMTkp +07/17/2017,Politicians,@JoeBiden,"@washingtonpost Especially if you live in WV, NV, AK or OH now is the time to call your senators. Or, encourage you… https://t.co/waMFYIG3n5" +07/17/2017,Politicians,@JoeBiden,"@washingtonpost If you believe health care is a right for all, make sure your senators know that this bill is a big step backward." +07/17/2017,Politicians,@JoeBiden,@washingtonpost All Americans deserve the peace of mind that comes with knowing that you can get affordable care. B… https://t.co/p4K6xfLjYI +07/17/2017,Politicians,@JoeBiden,"@washingtonpost By denying this right, Republican leadership’s “health” bill is fundamentally flawed. It can’t even be fixed on the floor." +07/17/2017,Politicians,@JoeBiden,@washingtonpost Republican leadership's “health” bill would return us to a time when health care was a privilege fo… https://t.co/7NniG8ALfk +07/17/2017,Politicians,@JoeBiden,"Today, I wrote in the @washingtonpost about the big problem with the Republican leadership’s ""health"" bill: https://t.co/GYCeXPhWdX" +07/17/2017,Politicians,@JoeBiden,Excited to share news about #AmericanPromiseTour - a series of conversations I’m hosting around the country… https://t.co/ClcF0sZg5T +07/11/2017,Politicians,@JoeBiden,Jill & I send our condolences to the loved ones of service members lost in MS crash—those who wear the uniform are the heart of our nation. +07/04/2017,Politicians,@JoeBiden,"Happy 4th of July! America continues the march toward tolerance, diversity and equality of opportunity that began in 1776—that's patriotism." +06/26/2017,Politicians,@JoeBiden,We’re live in a few minutes to talk about how @BidenCancer will bring renewed urgency to the fight against cancer: https://t.co/1rcV1XdLmS +06/26/2017,Politicians,@JoeBiden,Jill and I are excited and ready to take the next step toward ending cancer. Are you with us? https://t.co/vVDk81oRtq +06/23/2017,Politicians,@JoeBiden,"Let's see a bill that actually tries to improve folks' health care, and then we can have a reasonable debate about how to best do that." +06/23/2017,Politicians,@JoeBiden,"Especially now, when so many communities are struggling with opioid addiction, the bill's drastic cuts to Medicaid are cruel." +06/23/2017,Politicians,@JoeBiden,"Slashing Medicaid hurts kids, the elderly, people with disabilities and those struggling with addiction. All for tax breaks for the wealthy." +06/23/2017,Politicians,@JoeBiden,The Senate health bill isn't about health care at all—it's a wealth transfer: slashes care to fund tax cuts for the wealthy & corporations. +06/20/2017,Politicians,@JoeBiden,"America’s soul is rooted in the promise of opportunity. We must protect, support & welcome refugees to keep that pr… https://t.co/uKJO1oFp2X" +06/18/2017,Politicians,@JoeBiden,Jill and I are praying for the people of Colombia and the families of the victims of tonight's bomb explosion. #BogotaEstoyContigo +06/15/2017,Politicians,@JoeBiden,"Congrats & good luck to my former staffer Dr. Tony Allen, incoming Provost of @DelStateUniv! A great fit for a passionate public servant." +06/14/2017,Politicians,@JoeBiden,"Jill and I are praying for the victims and their families. Grateful for courage of my former colleagues, first responders & Capitol Police." +06/12/2017,Politicians,@JoeBiden,"We meet unspeakable tragedy and hate with unbound resolve. I stand with the LGBTQ community, today and every day.… https://t.co/q9JZxJxIwG" +06/07/2017,Politicians,@JoeBiden,Honored to see Ecumenical Patriarch Bartholomew in Athens – his leadership on climate change and the environment is… https://t.co/qsRmdl7GWT +06/07/2017,Politicians,@JoeBiden,"Great to be with @PennBiden in Athens. A Europe whole, free, & at peace remains vital to U.S. security–as it has been for the past 7 decades" +06/03/2017,Politicians,@JoeBiden,"Congrats to Ambassador Andy Young, a dear friend and inspiration, on 85 years. Wish I could be in Atlanta tonight for AJY Leadership Awards." +06/01/2017,Politicians,@JoeBiden,We're already feeling impacts of climate change. Exiting #ParisAgreement imperils US security and our ability to own the clean energy future +06/01/2017,Politicians,@JoeBiden,"It's time for big dreams and #AmericanPossibilities. If you're ready to elect folks who agree, say you're in:… https://t.co/TF6zDVcyu9" +06/01/2017,Politicians,@JoeBiden,There’s no one better positioned on Earth to lead the world in the 21st century than America. We just have to believe it. +06/01/2017,Politicians,@JoeBiden,America is at its best when we’re OPTIMISTIC and we THINK BIG. +06/01/2017,Politicians,@JoeBiden,It’s time to remember who we are as Americans: Giving EVERYONE the opportunity to achieve the impossible. +07/01/2018,Politicians,@SenGillibrand,Take @realdonaldtrump at his word. He wants to “punish” women for exercising their reproductive freedom. He promise… https://t.co/wwkpDGCujL +07/01/2018,Politicians,@SenGillibrand,"@JessLivMo Jess, a big thanks to you, to @domesticworkers, @MoveOn, @ACLU, and others who worked so hard to organiz… https://t.co/hRuD54q9sH" +06/30/2018,Politicians,@SenGillibrand,Today’s #FamiliesBelongTogether march was a powerful statement to President Trump that we will not back down until… https://t.co/TqED9cg2Pd +06/30/2018,Politicians,@SenGillibrand,"I’ll be at the #FamiliesBelongTogether march tomorrow, adding my voice to the thousands refusing to sit back or sta… https://t.co/3C5R6RihM0" +06/29/2018,Politicians,@SenGillibrand,I'll be on tonight's episode of @allinwithchris to talk about the future of the Supreme Court. Tune in around 8:15p… https://t.co/hwDYhXRDxZ +06/29/2018,Politicians,@SenGillibrand,"With a Supreme Court seat on the line, President Trump is desperate to reelect @RosenforNevada’s opponent to be a r… https://t.co/aBvzP27VCz" +06/29/2018,Politicians,@SenGillibrand,"Across the country, state legislatures have already made significant moves to limit a woman's access to abortion an… https://t.co/KEeSeZJJBc" +06/29/2018,Politicians,@SenGillibrand,"I believe we need to protect families who need help, and ICE isn’t doing that. It has become a deportation force. W… https://t.co/vkwAsgifQH" +06/29/2018,Politicians,@SenGillibrand,I’m horrified by today’s shooting at the Capital Gazette. Journalists do vital work to further our democracy. They… https://t.co/v2R6PzX1ld +06/28/2018,Politicians,@SenGillibrand,Protesting to end family separation. https://t.co/hA6enBRKuW +06/28/2018,Politicians,@SenGillibrand,RT @kasie: .@SenGillibrand cheering on protestors in Hart as Capitol Police make arrests just feet away https://t.co/kBqDxSaBrB +06/28/2018,Politicians,@SenGillibrand,"With Justice Kennedy's retirement, there’s no doubt that women's reproductive freedom is on the ballot this fall. B… https://t.co/YncahqHa24" +06/28/2018,Politicians,@SenGillibrand,Women’s lives are at stake. I will fight for you to have a voice in the selection of our next Supreme Court justice… https://t.co/bjMqO0kvdl +06/28/2018,Politicians,@SenGillibrand,Any one of President Trump's list of proposed SCOTUS justices would overturn Roe v. Wade and threaten our fundament… https://t.co/5M4Yhq5BUE +06/27/2018,Politicians,@SenGillibrand,RT @adamslily: We live in a majority pro-choice country. We have a majority pro-choice Senate. This fight ain't over and it's for all the m… +06/27/2018,Politicians,@SenGillibrand,The President just said the next Supreme Court nominee WILL come from his list of 25 judges that passed his overtur… https://t.co/B43VL4jKq8 +06/27/2018,Politicians,@SenGillibrand,"Now that there is a vacancy, after the Garland heist, the balance of the court will be tilted even more against wom… https://t.co/v8YgKVjjgW" +06/27/2018,Politicians,@SenGillibrand,"In an economy that is rigged in favor of the wealthy and powerful, unions strengthen our communities, raise our wag… https://t.co/pI4m8m8ISY" +06/27/2018,Politicians,@SenGillibrand,"RT @ilyseh: As the threats to the fundamental freedoms of women grow from a hostile Court, so does the movement for gender equity. My thoug…" +06/27/2018,Politicians,@SenGillibrand,Janus v. AFSCME was nothing short of a political attack on public sector unions at the behest of corporate interest… https://t.co/pE4WLc1qDM +06/27/2018,Politicians,@SenGillibrand,Congratulations to Alexandria Ocasio-Cortez (@Ocasio2018) for running an impressive race in #NY14 and making history. +06/27/2018,Politicians,@SenGillibrand,Supporting Democrats running to flip Republican seats and take back the Senate is the single most powerful thing yo… https://t.co/r9h2B98xPn +06/26/2018,Politicians,@SenGillibrand,I don’t understand why men continue to tell women what to do with their bodies. Every woman on the Supreme Court op… https://t.co/SPWzLKN8DE +06/26/2018,Politicians,@SenGillibrand,"RT @WeDemandJustice: BREAKING: Sen. Gillibrand announces she's a ""NO"" on all of Trump's SCOTUS shortlisters if confirmation fight happens t…" +06/26/2018,Politicians,@SenGillibrand,We need fair-minded judges who will uphold the value of equality. This current list represents a clear danger to wo… https://t.co/JHx7vrYjIV +06/26/2018,Politicians,@SenGillibrand,"If a vacancy occurs during this term, after the Garland heist, the balance of the court could be tilted even more a… https://t.co/qSYQddrBpr" +06/26/2018,Politicians,@SenGillibrand,"It is clear that the president wants to use the courts to shape policy that he can’t get passed through Congress, l… https://t.co/RntLwgvJYw" +06/26/2018,Politicians,@SenGillibrand,"The Roberts Court has repeatedly put corporations over people, including the dangerous Epic Systems decision, which… https://t.co/Eqsy0ROo45" +06/26/2018,Politicians,@SenGillibrand,I second Justice Sotomayor’s words. https://t.co/scnCKXEgnF +06/26/2018,Politicians,@SenGillibrand,We cannot—we must not—stop speaking out. We cannot sit back and let these intolerant actions define who we are. You… https://t.co/08SoFxEriW +06/26/2018,Politicians,@SenGillibrand,"Like I’ve said since the day President Trump announced this terrible Executive Order, our country’s willingness to… https://t.co/QRS5mmjC08" +06/26/2018,Politicians,@SenGillibrand,The president’s travel ban flies in the face of every value on which our country was built. The Supreme Court’s dec… https://t.co/NH1UdDiIyr +06/26/2018,Politicians,@SenGillibrand,"Wendy Davis showed us what it means to raise your voice, as she was relentless in filibustering against an anti-abo… https://t.co/7Jg6nOXWhv" +06/25/2018,Politicians,@SenGillibrand,We are indebted to Chief Spadafora's heroism and decades of service to New York City. Sending my deepest condolence… https://t.co/D1XM3xfHKZ +06/24/2018,Politicians,@SenGillibrand,2018 is defined by women. Women are running for office in record numbers – and they're mobilizing other women to ra… https://t.co/MD8gxePTiz +06/24/2018,Politicians,@SenGillibrand,"No community is better served by having hungry children. That's why I'll keep pushing to pass my legislation, the S… https://t.co/eZHs0TYPvK" +06/24/2018,Politicians,@SenGillibrand,"When we know that kids in this country are going to bed hungry, we have a moral obligation to act. I find it so dis… https://t.co/jhFamwPNnG" +06/23/2018,Politicians,@SenGillibrand,Please send urgent support to these organizations providing legal aid and critical assistance to families at the bo… https://t.co/yWPycNIoOo +06/23/2018,Politicians,@SenGillibrand,Our fight for families separated at the border is far from over. This administration still has no clear plan to reu… https://t.co/tDUgAZxcRP +06/22/2018,Politicians,@SenGillibrand,"Had a great day in Buffalo with @CPeoplesStokes! We met with the Restore Our Community Coalition, a group working t… https://t.co/wpcG0SbS7T" +06/22/2018,Politicians,@SenGillibrand,"RT @pantsuitnation: Thank you for joining us this week on the podcast, @SenGillibrand! https://t.co/XK3IBv0VI8 https://t.co/7hdpJq6lV9" +06/22/2018,Politicians,@SenGillibrand,"While we were watching the crisis that continues to unfold at our borders, Congressional Republicans unveiled a bud… https://t.co/9lOTkrp3Yj" +06/21/2018,Politicians,@SenGillibrand,"We stopped the first inhumane policy, but this administration has completely lost its moral conscience. It’s up to… https://t.co/k1sWK2OOnG" +06/21/2018,Politicians,@SenGillibrand,"Reports say ICE has taken children away from the border, further from their families, to facilities in Michigan, Il… https://t.co/YNvHWoAzlF" +06/21/2018,Politicians,@SenGillibrand,"President Trump wants credit for ending the child separation policy he started. But the cruelty hasn’t stopped, and… https://t.co/SC3AAXIPs1" +06/21/2018,Politicians,@SenGillibrand,RT @getots: From being shot down by enemy fire in Afghanistan as a combat pilot to helping overturn the sexist ban on women in ground comba… +06/21/2018,Politicians,@SenGillibrand,RT @KeepitMadeinUSA: Senator Kirsten Gillibrand is pushing legislation that would allow New York towns or counties to apply for status as a… +06/21/2018,Politicians,@SenGillibrand,"By telling insurance companies they could no longer deny coverage or charge more for pre-existing conditions, the A… https://t.co/rEnGtIXn92" +06/21/2018,Politicians,@SenGillibrand,"RT @NYDailyNews: .@realdonaldtrump must reunite devastated families. Now. https://t.co/viIqoV6gyo + +PLUS: @ICEgov detentions of unaccompanie…" +06/21/2018,Politicians,@SenGillibrand,We must keep raising our voices and fighting the Trump administration's treatment of immigrants and refugees. How a… https://t.co/fdXUoi3ShR +06/20/2018,Politicians,@SenGillibrand,"This is inhumane, cruel, and immoral. The president must stop this today. This policy isn't ""tough"", it's the act o… https://t.co/hwBTN3PkIN" +06/20/2018,Politicians,@SenGillibrand,"On #WorldRefugeeDay, our own government is creating a humanitarian crisis at our border and causing unthinkable pai… https://t.co/uQ8mbQIjdh" +06/20/2018,Politicians,@SenGillibrand,".@HHSgov, @DHSgov let him in. https://t.co/TXYcUKuJiw" +06/20/2018,Politicians,@SenGillibrand,"New York has the best manufacturing tradition in the country. Now, we need to do everything we can to keep that tra… https://t.co/iSvv5hC4Ev" +06/19/2018,Politicians,@SenGillibrand,"My bipartisan bill, the Made in America Manufacturing Communities Act, that would give communities all over New Yor… https://t.co/6rzPnKX2J7" +06/19/2018,Politicians,@SenGillibrand,#Juneteenth is the day we commemorate the abolition of slavery in our country. While we’ve made great strides towar… https://t.co/DH2ZIsQnLH +06/19/2018,Politicians,@SenGillibrand,The Department of Homeland Security is tearing young children away from their parents. It is abhorrent. It is immor… https://t.co/fjzn7krOxh +06/18/2018,Politicians,@SenGillibrand,"Every Democratic senator is co-sponsoring the Keep Families Together Act, but not one Republican has signed on. Cal… https://t.co/Y1g6hduPbj" +06/18/2018,Politicians,@SenGillibrand,"Cages. + +The government is tearing young children away from their parents, putting them in cages, sending them to t… https://t.co/aJb1XlKk1y" +06/17/2018,Politicians,@SenGillibrand,"We can pass the Keep Families Together Act to stop the humanitarian crisis at our border, but only if you’re so lou… https://t.co/wadve9qloO" +06/17/2018,Politicians,@SenGillibrand,"Susan B. Anthony’s bravery reminds us of the impact a single voice can have, and to raise our own as loudly as poss… https://t.co/FsYncR1TZT" +06/16/2018,Politicians,@SenGillibrand,Xiu Qing You was simply seeking to adjust his immigration status so that he could continue providing for his family… https://t.co/pgiJRrFFfz +06/16/2018,Politicians,@SenGillibrand,A breastfeeding mother at a detention center had her daughter ripped away. Border agents tell parents they’re takin… https://t.co/HIc42QR29s +06/16/2018,Politicians,@SenGillibrand,"But Trump won Arizona by four points, and Republicans are spending big to win this seat. So we have to make sure Ky… https://t.co/wswWwKF88j" +06/16/2018,Politicians,@SenGillibrand,Public service is at the center of everything Kyrsten does. She overcame childhood homelessness to earn a full scho… https://t.co/27bcfKZPTx +06/16/2018,Politicians,@SenGillibrand,We need to do everything we can to get my friend @kyrstensinema to the Senate because she’s fighting in Arizona for… https://t.co/A8AMoB3E5J +06/15/2018,Politicians,@SenGillibrand,"DACA was announced on this day in 2012, laying a foundation for Dreamers to build a future in the country they call… https://t.co/wW4AoAj0NF" +06/15/2018,Politicians,@SenGillibrand,"""They’re passed over for promotions and raises. They’re fired when they complain."" + +Worth reading. The stories from… https://t.co/q5Jtc5MhCd" +06/15/2018,Politicians,@SenGillibrand,Most of us in NY know someone who has been affected by Lyme disease. But President Trump refuses to address this ep… https://t.co/eYlpadeIrr +06/15/2018,Politicians,@SenGillibrand,The Trump administration is separating children from families escaping violence and extreme poverty at our border.… https://t.co/bHqFG64RyX +06/15/2018,Politicians,@SenGillibrand,"What a beautiful night for baseball! Spending time with family, friends, and colleagues at tonight’s Congressional… https://t.co/zdNVFe04tU" +06/14/2018,Politicians,@SenGillibrand,"I’m a cosponsor. + +And yes, we can pass this bill—but we need you to raise your voice, loud and clear. + +Pick up the… https://t.co/UpCitR4SA8" +06/14/2018,Politicians,@SenGillibrand,Hosting a bipartisan dinner for women senators @belmontpaulnps this evening! I'm honored to get to host this dinner… https://t.co/1nN0J1oA3T +06/13/2018,Politicians,@SenGillibrand,"This is wrong on every level. Absolutely unconscionable. + +We’ve all read about dark moments in history and asked o… https://t.co/ROyURM0x3J" +06/13/2018,Politicians,@SenGillibrand,I’m fighting to #PassMJIA to make sure survivors can report military sexual assault and harassment without fear of… https://t.co/KxoNZvPRUx +06/13/2018,Politicians,@SenGillibrand,Ripping children from their parents and locking them in tent cities is a new low for this presidency. We should cal… https://t.co/TMCa4u29oY +06/12/2018,Politicians,@SenGillibrand,"Last night on @TheDailyShow, @GoLiveLifeWell, Col. Don Christensen and I sat down with @Trevornoah to discuss how t… https://t.co/wpuGVB2jP5" +06/12/2018,Politicians,@SenGillibrand,I hope North Korea is serious about this effort and determined to join the international community. And I encourage… https://t.co/iHQZwWG30d +06/12/2018,Politicians,@SenGillibrand,President Trump’s meeting with North Korea was the first step on a long road ahead. But now comes the hard work of… https://t.co/jZgKa2elW6 +06/12/2018,Politicians,@SenGillibrand,"While I believe that diplomacy is our best route to peaceful solutions, a deal with North Korea should never come a… https://t.co/oHfY2PV2bf" +06/12/2018,Politicians,@SenGillibrand,"Today, we stand with the LGBTQ community and remember the 49 people who lost their lives in the horrific shooting a… https://t.co/W6RP7b4VBS" +06/12/2018,Politicians,@SenGillibrand,Great thread from the incredible team @TIMESUPNOW about why we must #PassMJIA: https://t.co/7jRPRBKHyH +06/12/2018,Politicians,@SenGillibrand,The Senate could vote on MJIA any day. Now’s the time to speak out. Click below to call your senators – tell your f… https://t.co/AqWB0Wp7Qy +06/12/2018,Politicians,@SenGillibrand,I'm joining @GoLiveLifeWell and Col. Don Christensen of @ProtectRDfnders to discuss the Military Justice Improvemen… https://t.co/pFUrN5r7U3 +06/12/2018,Politicians,@SenGillibrand,"Today's SCOTUS decision is a huge, disappointing setback for voting rights. + +I urge you to speak out—and please, k… https://t.co/vcKxUVY3Gf" +06/12/2018,Politicians,@SenGillibrand,"Let’s not dance around it: By denying asylum to domestic violence victims fleeing their abusers, the administration… https://t.co/ZkSACOLqNG" +06/11/2018,Politicians,@SenGillibrand,"RT @MurrayCampaign: .@SenGillibrand, @DianneFeinstein, @elizabethforma and I are calling on @USGAO to help quantify the economic impacts of…" +06/11/2018,Politicians,@SenGillibrand,"If you live in VA, NV, ND, ME or SC, make sure you vote in tomorrow’s primaries. We have an opportunity to give a r… https://t.co/yRiHpyMJmj" +06/11/2018,Politicians,@SenGillibrand,"See you tonight, @trevornoah! https://t.co/7oRMhDbSFW" +06/11/2018,Politicians,@SenGillibrand,"#NetNeutrality protections end today, but let’s be clear: Our fight is far from over. The Senate voted to save the… https://t.co/NPFYZsL9wW" +06/10/2018,Politicians,@SenGillibrand,Congress needs to act now. Let’s remind them that our fellow Americans need our help. We need to refocus on PR. We… https://t.co/aqfmMbgQdz +06/10/2018,Politicians,@SenGillibrand,"As hurricane season begins, too many in PR still continue to suffer in the wake of Hurricane Maria. This storm was… https://t.co/Vw96LvtB5P" +06/10/2018,Politicians,@SenGillibrand,The Annual National Puerto Rican Day Parade is a chance to celebrate the many contributions Puerto Ricans have made… https://t.co/6OhDJUWHa3 +06/10/2018,Politicians,@SenGillibrand,"Today, on the 55th anniversary of the #EqualPayAct, we’re reminded that the fight for equality is not over. Women a… https://t.co/tdgujqdhsI" +06/09/2018,Politicians,@SenGillibrand,Each and every one of us has the power to make a difference. Each and every voice has the power to change the world… https://t.co/6Sc2zKFm1d +06/09/2018,Politicians,@SenGillibrand,".@SusieLeeNV is running to fight for public education, improve Obamacare and protect women's rights in #NV03. She’s… https://t.co/3YG3KcYj0e" +06/09/2018,Politicians,@SenGillibrand,We need @RosenforNevada in the Senate. But she’s facing a tough race this fall against a flood of dark money. She n… https://t.co/rRyvFRHKtl +06/09/2018,Politicians,@SenGillibrand,"As we’ve come together to stand behind Democratic women this year, we’ve seen victory after victory in primaries ac… https://t.co/JCKGhW2zn6" +06/09/2018,Politicians,@SenGillibrand,"I'm so honored to fight with YOU! Thank you for putting this together—I'll have to check if I can make it, but appr… https://t.co/CX2LfLklFl" +06/09/2018,Politicians,@SenGillibrand,"These children will never forget that when they arrived in the United States, the government ripped them away from… https://t.co/KhvgKMVzGm" +06/09/2018,Politicians,@SenGillibrand,"I was completely devastated after reading these stories. The Trump administration is carrying out a cruel, heartles… https://t.co/L7VKmpcvN2" +06/08/2018,Politicians,@SenGillibrand,"When women raise our voices, we’re a force for good as great as any this world has ever seen – especially when we d… https://t.co/ECR0tPYikQ" +06/08/2018,Politicians,@SenGillibrand,"On Sunday, July 22, I'm heading to OZY Fest in Central Park, joining an exciting lineup of performances and panels.… https://t.co/PJyIMr3xH7" +06/08/2018,Politicians,@SenGillibrand,ICE is acting recklessly and failing to respect human dignity. This administration's approach to immigration enforc… https://t.co/QV0csY5Kuv +06/08/2018,Politicians,@SenGillibrand,"Health care should be a right, not a privilege." +06/08/2018,Politicians,@SenGillibrand,"The Trump administration is trying to destroy the Affordable Care Act by refusing to defend it in court, another mo… https://t.co/HtVgHbEWOG" +06/07/2018,Politicians,@SenGillibrand,From @CWSoftballGame practice this morning. Feeling pretty good about this game. Team press better watch out! https://t.co/px8tF4Dx17 +06/07/2018,Politicians,@SenGillibrand,"I'll not stop fighting to fix our military justice system. This week, I filed my bill, the Military Justice Improve… https://t.co/4H1MGQjCsA" +06/07/2018,Politicians,@SenGillibrand,"The #EqualPayAct was passed 55 years ago, but the pay gap still exists. Gender or race should never impact your pay… https://t.co/SP33gOn98K" +06/07/2018,Politicians,@SenGillibrand,"I was almost as excited about the chance to warm up my pitching arm as I was about seeing the room full of engaged,… https://t.co/niLUF9lLei" +06/06/2018,Politicians,@SenGillibrand,It is completely shameful for ICE to separate a father from his wife and kids like this. This administration's appr… https://t.co/vzImWN0xte +06/05/2018,Politicians,@SenGillibrand,"Stories like Heath’s are the reason why I will never stop fighting for our military justice system to be more fair,… https://t.co/U2jAQJJSC9" +06/05/2018,Politicians,@SenGillibrand,It’s already abundantly clear that Trump and the GOP’s sabotage of our health care system will hurt many of our fam… https://t.co/EDj7gSYnsZ +06/04/2018,Politicians,@SenGillibrand,Getting to the polls is one of the best ways to make real change. The last few months of progressive wins prove tha… https://t.co/TgUfFu7TS8 +06/04/2018,Politicians,@SenGillibrand,Harmful and disappointing ruling from the Supreme Court this morning. Companies shouldn't discriminate against memb… https://t.co/LxqjOyc2gU +06/04/2018,Politicians,@SenGillibrand,The president’s repeated attempts to undermine the Special Counsel’s investigation are extremely troubling — Congre… https://t.co/MWd0hjf7CU +06/03/2018,Politicians,@SenGillibrand,We need to show we truly value women by addressing the tragic reality of maternal mortality. A woman in the U.S. is… https://t.co/yXsr7h6H64 +06/02/2018,Politicians,@SenGillibrand,"So today, on National Gun Violence Awareness Day, we #WearOrange to remember the families and communities that have… https://t.co/83AAkOyvhp" +06/02/2018,Politicians,@SenGillibrand,"We have a gun violence epidemic in our country, and it claims 96 lives every day. But lawmakers haven’t come close… https://t.co/IJtXzFAVHa" +06/02/2018,Politicians,@SenGillibrand,".@DianneFeinstein has broken down barriers her entire career, and she continues to be an inspiration and advocate f… https://t.co/iUNtZNQvBq" +06/02/2018,Politicians,@SenGillibrand,".@tanziefornj is a former teacher and Blue Star Mother running in #NJ02 to fight for a more inclusive, progressive… https://t.co/70Bm52ilf7" +06/02/2018,Politicians,@SenGillibrand,"In #IA01, @Abby4Iowa is fighting for women’s rights, affordable education and quality health care. She needs a stro… https://t.co/pHrzrxOwNY" +06/02/2018,Politicians,@SenGillibrand,"After nearly 20 years as an attorney taking on special interests, @katieporteroc is ready to bring that fight to Co… https://t.co/Egjrr1uSbc" +06/02/2018,Politicians,@SenGillibrand,"In #CA39, @DocTran2018 is running to protect the values and opportunities that allowed her to overcome tremendous o… https://t.co/xOjnF2Mytt" +06/02/2018,Politicians,@SenGillibrand,A record number of women are running for office this year! Here are just a few candidates with primaries on June 5… https://t.co/V9lRBZRjUm +06/01/2018,Politicians,@SenGillibrand,I’m still in. https://t.co/2IHSzgU0T2 +06/01/2018,Politicians,@SenGillibrand,"Gun violence isn’t inevitable or untouchable. We can overcome it, but it’ll take all of us raising our voices again… https://t.co/fxKwfB5Kko" +06/01/2018,Politicians,@SenGillibrand,"“The first step is telling the truth—the next step is changing the system.” + +@GretchenCarlson writes about last wee… https://t.co/cF9ulr7xJe" +06/01/2018,Politicians,@SenGillibrand,"Each day, the incredible leaders and fighters of our LGBTQ communities inspire us all with their strength, their lo… https://t.co/avok0YLZru" +06/01/2018,Politicians,@SenGillibrand,Major General Bannister was an exceptional leader who dedicated his entire life to this country. His legacy will no… https://t.co/RyTE8tP9sS +05/31/2018,Politicians,@SenGillibrand,"I hope you’ll read this. Veteran Alonzo Neese, a gun owner and former NRA member, shares why he’s joining the fight… https://t.co/DiLE6jE2BC" +05/31/2018,Politicians,@SenGillibrand,"Workplace harassment is clearly a drag on our economy, but we don't know by how much, in part because @BLS_gov absu… https://t.co/Wg0xhykznN" +05/31/2018,Politicians,@SenGillibrand,"If you believe as fiercely as I do that America is better than ripping children from the arms of asylum seekers, we… https://t.co/ZVvkvHQgOP" +05/31/2018,Politicians,@SenGillibrand,Children are being ripped from the arms of their mothers at our southern border because of policy made and implemen… https://t.co/vHUpz4zHHI +05/31/2018,Politicians,@SenGillibrand,"When mothers came to our southern border desperate for help, they expected to meet the America the world believes i… https://t.co/UXpEK1HjsM" +05/30/2018,Politicians,@SenGillibrand,"No way, @LACaldwellDC. Team Congress is ready to play and ready to WIN! https://t.co/KvktpvPvcm" +05/30/2018,Politicians,@SenGillibrand,"While many try to deride and undermine our unions, the truth is, unions are leading the fight to reward work, for e… https://t.co/fVUp0rGdA3" +05/30/2018,Politicians,@SenGillibrand,Thanks to all who are working so hard to ensure the @Sept11Memorial recognizes the responders and survivors still s… https://t.co/kC9t7DgllZ +05/30/2018,Politicians,@SenGillibrand,This new report demands answers from the federal government about what happened to our fellow citizens in crisis. https://t.co/4RcVNJANT7 +05/29/2018,Politicians,@SenGillibrand,"On this day in 1851, abolitionist Sojourner Truth stood up to demand equal rights for all women and for black Ameri… https://t.co/yzw6hBRfPA" +05/29/2018,Politicians,@SenGillibrand,"Please watch my friend @ValerieJarrett respond to yet another example of everyday racism. As allies in this fight,… https://t.co/MkD63o09Zm" +05/28/2018,Politicians,@SenGillibrand,"Today, on Memorial Day, as we spend time with family and friends, we honor the women and men in uniform who gave th… https://t.co/c8Gt7i8dHg" +05/28/2018,Politicians,@SenGillibrand,.@AbbyWambach shared some incredible wisdom with the women of @BarnardCollege's graduating class (and with all of u… https://t.co/kjuLwq6IzK +05/27/2018,Politicians,@SenGillibrand,Justice Ginsburg is right: The Supreme Court’s ruling on forced arbitration is “egregiously wrong” and undermines w… https://t.co/TPtTKLpe4t +05/27/2018,Politicians,@SenGillibrand,The Trump administration's domestic gag rule should enrage us all. I’m tired of the relentless attempts to roll bac… https://t.co/vsPwDHAGmj +05/26/2018,Politicians,@SenGillibrand,This administration’s immigration policies are heartless and infuriating. Congress must immediately demand accounta… https://t.co/S1rIM6iczq +05/26/2018,Politicians,@SenGillibrand,"Progress seldom comes fast, and it’s never easy. But when we come together to fight for our rights, we have the cap… https://t.co/ZEKucwJSWq" +05/26/2018,Politicians,@SenGillibrand,I am in awe of what the fearless women of Ireland accomplished yesterday. They activated and organized for years to… https://t.co/fxZgS96fyz +05/26/2018,Politicians,@SenGillibrand,"I need my friend @kyrstensinema by my side in the Senate to defend our values and take our country forward, never b… https://t.co/Y3RMSRzlO4" +05/25/2018,Politicians,@SenGillibrand,"While you weren’t looking, President Trump quietly moved to undermine public sector unions and the rights of our fe… https://t.co/TYr6LBq8OP" +05/25/2018,Politicians,@SenGillibrand,"In a blatant attack on women’s reproductive rights, the Trump administration’s “gag rule” would go further than eve… https://t.co/r1pIh8AflD" +05/25/2018,Politicians,@SenGillibrand,🙋🏼‍♀️ https://t.co/sjpEH4Iai5 +05/25/2018,Politicians,@SenGillibrand,"We will not stay silent. Women will lead the charge against Trump's harmful domestic gag rule. Today, in the Senate… https://t.co/o20v1pj9YY" +05/24/2018,Politicians,@SenGillibrand,"The new domestic ""gag rule"" is another attempt by the Trump administration to take away women's access to critical… https://t.co/UXoWz0EV19" +05/24/2018,Politicians,@SenGillibrand,"RT @PattyMurray: We’ve now shown that we can work together to make progress on this issue, and there is every reason to keep pushing for mo…" +05/24/2018,Politicians,@SenGillibrand,"These reforms are commonsense—and I'm optimistic that we can finish the job and get this bill signed into law. + +Un… https://t.co/TptI0xf98J" +05/24/2018,Politicians,@SenGillibrand,"The Senate just passed bipartisan reforms to fix Congress's broken process for reporting sexual harassment, and fin… https://t.co/jzuAYAxf6r" +05/24/2018,Politicians,@SenGillibrand,Our troops sacrifice a great deal for the American people. They deserve our continued support. I was proud to work… https://t.co/E7DuZp0DFV +05/23/2018,Politicians,@SenGillibrand,"Congress should focus on rewarding work and protecting families, not helping big banks make more money. https://t.co/x3G63tnSrq" +05/23/2018,Politicians,@SenGillibrand,"In November, we have an incredible opportunity to take back the House and Senate, and we’ll need you and everyone y… https://t.co/qwxJ21Zmp7" +05/23/2018,Politicians,@SenGillibrand,"Throughout the primary season, women have run and women have won. Some incredible organizations have been by their… https://t.co/RWRVU2SKu0" +05/23/2018,Politicians,@SenGillibrand,".@AmyMcGrathKY once trailed by 47 points in her primary. Forty-seven. No matter the odds, if we run strong candidat… https://t.co/5xp0mJZtHC" +05/23/2018,Politicians,@SenGillibrand,"Democrats are going into November behind candidates like @LucyWins2018, @LupeValdez, @staceyabrams and… https://t.co/2Rf6SWkS4r" +05/23/2018,Politicians,@SenGillibrand,We must remain focused on finishing this fight by passing this bill once it comes to the Senate floor. I hope you’l… https://t.co/r64x0utufe +05/23/2018,Politicians,@SenGillibrand,"Today, Senate leadership announced a bipartisan deal on legislation to address sexual harassment in Congress. This… https://t.co/pZTzHX3QQt" +05/23/2018,Politicians,@SenGillibrand,".@realDonaldTrump, here are some more firsts for you: Record numbers of women are marching, speaking out, fighting… https://t.co/TuyO7OtUiQ" +05/23/2018,Politicians,@SenGillibrand,"From the beginning of Amy’s race, @getots has been by her side. Now we need to help her bring it home. Can you make… https://t.co/VBwexakMc8" +05/23/2018,Politicians,@SenGillibrand,"Amy was the first woman in the Marine Corps to fly into combat in an F-18, and she went on to fly 89 missions in pl… https://t.co/7dklZ5PrcH" +05/23/2018,Politicians,@SenGillibrand,This is just the first step. We all have to come together now. Electing candidates like Amy is how we fight for a f… https://t.co/4KRtb45frZ +05/23/2018,Politicians,@SenGillibrand,Congratulations to @AmyMcGrathKY on securing the Democratic nomination in KY-6. We’re ready to fight alongside you… https://t.co/aEU3Hn8uQt +05/22/2018,Politicians,@SenGillibrand,Thrilled to help launch @voterunlead + @wework's #WomensLeadershipWorks partnership tonight. A great discussion wit… https://t.co/7rBoDWKtw2 +05/22/2018,Politicians,@SenGillibrand,"RT @VoteRunLead: Tonight @WeWork & @VoteRunLead officially kick-off our powerful #WomensLeadershipWorks partnership, bringing #RunAsYouAre…" +05/22/2018,Politicians,@SenGillibrand,"If you live in Texas, your vote in today’s primary runoff is so important. @ginaortizjones in #TX23, @mjhegar in… https://t.co/4HcUI1vr5r" +05/22/2018,Politicians,@SenGillibrand,"If you live in #GA06, or know someone who does, make sure you support @LucyWins2018 in today’s primary election! Sh… https://t.co/JuxT6XCPdP" +05/22/2018,Politicians,@SenGillibrand,.@AmyMcGrathKY has her primary election today. She’s running to continue a life of service to our country and fight… https://t.co/QbcRdoNWbp +05/22/2018,Politicians,@SenGillibrand,"If you live in GA, your vote for @staceyabrams for #GAGov is a vote for affordable childcare, an economic agenda to… https://t.co/NSshDQ7K5H" +05/22/2018,Politicians,@SenGillibrand,"There are incredible women candidates on ballots across the country today, in primaries and in runoffs. Over the ne… https://t.co/KFAw9d8dr3" +05/22/2018,Politicians,@SenGillibrand,"Last week, I sat down with @Kasie to discuss our fight to reform the way Congress handles sexual harassment. I'm ho… https://t.co/8wy5OBQ36L" +05/21/2018,Politicians,@SenGillibrand,So impressed by the teams at @IceStoneLLC and Brooklyn Stone and Tile. Not only do they bring quality manufacturing… https://t.co/tVQvnEWtkZ +05/21/2018,Politicians,@SenGillibrand,Dana Baiocco has spent her career helping companies avoid responsibility for making harmful products. Why on earth… https://t.co/E35T29FMgZ +05/21/2018,Politicians,@SenGillibrand,"This decision could have devastating consequences for workers, who might now be forced to choose between keeping th… https://t.co/exexY7HTRy" +05/21/2018,Politicians,@SenGillibrand,"Yesterday, I had a fanatstic coffee meeting @SylviasSoulFood with @SheenaWrightNYC of @unitedwaynyc! Thanks to all… https://t.co/s4NgIYpMY8" +05/20/2018,Politicians,@SenGillibrand,I draw inspiration from trailblazing women who shaped our country’s history. Their stories are as relevant today as… https://t.co/Nz0aqXxGdj +05/20/2018,Politicians,@SenGillibrand,"Lucy is facing a tough primary fight on Tuesday, and we need to send her our urgent support! Will you donate $5 rig… https://t.co/e64dy5LpFB" +05/20/2018,Politicians,@SenGillibrand,".@LucyWins2018 is a mother, wife, businesswoman and social justice activist fighting to flip #GA06 blue in November… https://t.co/DuM8v9xV5X" +05/20/2018,Politicians,@SenGillibrand,RT @NYCDCA: Today Cmsr Salas joined @SenGillibrand and recent college grads to talk about the financial burdens caused by the growing stude… +05/20/2018,Politicians,@SenGillibrand,But just days ago the Trump admin decided to eliminate a program that protects graduates from predatory student loa… https://t.co/pP65q88vEs +05/20/2018,Politicians,@SenGillibrand,"It’s graduation season! As we congratulate all who are finishing up school this year, here’s my wish for our colleg… https://t.co/QErEq4M8ND" +05/19/2018,Politicians,@SenGillibrand,"I’ve been on the campaign trail with young kids, and I couldn’t have juggled those long days and late nights withou… https://t.co/QiJwmQeQPO" +05/19/2018,Politicians,@SenGillibrand,"If we’re going to change our politics, we need to change who our leaders are. @staceyabrams is the kind of leader w… https://t.co/qu8PQ1Yin8" +05/19/2018,Politicians,@SenGillibrand,I still don’t understand how lawmakers in this country continue to think that it’s their job to tell women what to… https://t.co/4Tt53Qpg7e +05/18/2018,Politicians,@SenGillibrand,"Heartbreaking, unbearable news out of Santa Fe, TX, the latest community to be torn apart by a horrific school shoo… https://t.co/3BmTorqJOC" +05/18/2018,Politicians,@SenGillibrand,RT @CNNPolitics: Sen. Kirsten Gillibrand on the Trump administration proposing a rule that could strip Planned Parenthood funding: “I think… +05/18/2018,Politicians,@SenGillibrand,"This is an attack on Planned Parenthood. It’s an attack on choice. It’s an attack on women’s rights. + +Women’s healt… https://t.co/aHXY6ji813" +05/17/2018,Politicians,@SenGillibrand,No need to look too far! We have a great bill you could support. The #FAMILYAct would allow every American worker u… https://t.co/b7NufnvLcc +05/17/2018,Politicians,@SenGillibrand,"Someone who refuses to say torture is immoral, and who was engaged in destroying evidence of torture, should not be… https://t.co/im2IEbcAjW" +05/17/2018,Politicians,@SenGillibrand,The House passed reform 100 days ago. It is long past time for the Senate to act. There is no reasonable excuse for… https://t.co/WSUr4RrQvP +05/17/2018,Politicians,@SenGillibrand,"On the one-year anniversary of the Mueller investigation’s start, I’m renewing my call for the Senate to put a bipa… https://t.co/O9YlOMAdu2" +05/17/2018,Politicians,@SenGillibrand,RT @CNN: New York Democratic Sen. Kirsten Gillibrand will take to the Senate floor Thursday attempting to utilize a rare procedural maneuve… +05/17/2018,Politicians,@SenGillibrand,"I often tell people that on a good day, Congress is still 20 years behind the rest of the country. It is in our pow… https://t.co/DbCiaM4lUq" +07/01/2018,Politicians,@SenWarren,.@realDonaldTrump’s short list of Supreme Court nominees was hand-picked by right-wing extremists who want to crimi… https://t.co/5cIqU0ohgS +06/29/2018,Politicians,@SenWarren,"At the #FamiliesBelongTogether march tomorrow, we’ll show @realDonaldTrump that the real power is with the people.… https://t.co/BhWUoW92lz" +06/29/2018,Politicians,@SenWarren,"Tomorrow, thousands of Puerto Rican evacuees will lose federal housing assistance & many will be left homeless.… https://t.co/OGzwO9swP1" +06/29/2018,Politicians,@SenWarren,Great news: Massachusetts is moving closer to a level playing field for working families. Congratulations to… https://t.co/AlF8q8450g +06/29/2018,Politicians,@SenWarren,RT @RepCummings: The House GOP’s “opioid week” failed to address the crisis by providing adequate treatment funding. My bill with @SenWarre… +06/28/2018,Politicians,@SenWarren,My heart goes out to the Capital Gazette. No journalist should have to duck bullets in the newsroom. No student sho… https://t.co/2wWcvzfTbP +06/28/2018,Politicians,@SenWarren,.@nationalgridus got a huge windfall from the #GOPtaxscam – but the gas company is still squeezing its own employee… https://t.co/MdRO07RiE0 +06/28/2018,Politicians,@SenWarren,The fight for equal justice for ALL Americans – not just the rich and powerful – has only just begun. Watch live: https://t.co/nmuyzd5gjQ +06/27/2018,Politicians,@SenWarren,Mitch McConnell should follow the Mitch McConnell rule. Let the American people have a say when women’s health and… https://t.co/hOlinahSjR +06/27/2018,Politicians,@SenWarren,"RT @ChrisVanHollen: Today’s SCOTUS decision in Janus v. AFSCME was a major blow to unions and working people, while further rigging the sys…" +06/27/2018,Politicians,@SenWarren,Corporate interests have been rigging the system against workers for decades – and the Supreme Court just handed th… https://t.co/Lop4IFq9zu +06/27/2018,Politicians,@SenWarren,"I went down to the border protection processing center in McAllen, Texas so I could see what’s happening there with… https://t.co/BLtpuwS0SS" +06/26/2018,Politicians,@SenWarren,The Supreme Court – thanks to a seat stolen by right-wing Republicans – just upheld Trump’s Muslim ban. While the C… https://t.co/LH9MSIM110 +06/26/2018,Politicians,@SenWarren,"Last year, I joined hundreds of people at Logan Airport to protest @realDonaldTrump's Muslim ban. We believed that… https://t.co/6quvNTWv6i" +06/24/2018,Politicians,@SenWarren,I believe that when a woman flees the only home she's ever known with her 4-year-old son and begs the United States… https://t.co/djIDGLiore +06/24/2018,Politicians,@SenWarren,"I spoke with one woman from El Salvador at a CBP processing center. She gave a policeman a drink of water, and the… https://t.co/hJxR7Liqeh" +06/24/2018,Politicians,@SenWarren,"Today, I'm in McAllen, TX. What I've witnessed here is truly disturbing. People are being held in cages – there's n… https://t.co/riSBGHSxjL" +06/24/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, and public health and s… https://t.co/7uyn1YI1EU" +06/23/2018,Politicians,@SenWarren,Powerful corporations and their Republican allies are working overtime to roll back basic rules that protect workin… https://t.co/DXdfcts87U +06/22/2018,Politicians,@SenWarren,It's been 6 months since Trump signed the #GOPtaxscam into law. I spoke with @KellerAtLarge about how it's hurting… https://t.co/8UH9lrc2el +06/21/2018,Politicians,@SenWarren,UPDATE: @BetsyDeVosED has lost another round in federal court. A judge just ruled that she cannot collect loans fro… https://t.co/PT4cXn2P23 +06/21/2018,Politicians,@SenWarren,If you agree that Thomas Farr – who has defended discrimination & worked to restrict the voting rights of African A… https://t.co/3L5W7vF9sB +06/20/2018,Politicians,@SenWarren,This isn’t over. Thousands of kids have been ripped from their parents with no plan to reunite them. And now… https://t.co/gMiJwZzQtI +06/20/2018,Politicians,@SenWarren,"On #WorldRefugeeDay, we cannot ignore the humanitarian crisis happening on our border as desperate families flee vi… https://t.co/ecoGve7HFR" +06/20/2018,Politicians,@SenWarren,.@RepCummings has devoted his life to the fight for justice. Watch as he makes a powerful case for why… https://t.co/zWY55CrGbY +06/19/2018,Politicians,@SenWarren,@realDonaldTrump is meeting with House Republicans to discuss his immigration crisis. Will they have the courage to… https://t.co/wJ2OgGKrq0 +06/19/2018,Politicians,@SenWarren,RT @SenSherrodBrown: Demanding answers today with @SenWarren about exactly what role Kraninger has played in developing and implementing th… +06/19/2018,Politicians,@SenWarren,"RT @FSCDems: #RELEASE: Ranking Member @RepMaxineWaters' Statement on the Nomination of Kathy Kraninger to Head the @CFPB + +https://t.co/dKl…" +06/19/2018,Politicians,@SenWarren,Kathy Kraninger helps oversee the agencies that are ripping kids from their parents. Now @realDonaldTrump wants her… https://t.co/1GEiiTwTOb +06/19/2018,Politicians,@SenWarren,".@realDonaldTrump’s nominee to run the @CFPB, Kathy Kraninger, has no track record of helping consumers. That's bad… https://t.co/OeqZ3y3kvq" +06/18/2018,Politicians,@SenWarren,".@realdonaldtrump could pick up the phone and stop the separation of families seeking refuge in the US. Instead, he… https://t.co/hV65UArXrZ" +06/17/2018,Politicians,@SenWarren,Kids across the US are spending today with their dads. But thousands of children who have been separated from their… https://t.co/630gU6vMUB +06/15/2018,Politicians,@SenWarren,Thousands of Americans have joined @UniteThePoor to call on our government to pay attention: to flat wages and risi… https://t.co/EBMljKXQJr +06/15/2018,Politicians,@SenWarren,Joseph Otting told Congress he’s never seen discrimination – even though he used to run a bank that went out of its… https://t.co/RNb1ZtC23W +06/15/2018,Politicians,@SenWarren,My colleague @RepJayapal is right. We are not talking about immigration policy. We are talking about the soul of Am… https://t.co/8ApE0b0aZN +06/15/2018,Politicians,@SenWarren,I’m going to fight like hell with @SenatorDurbin and the @SenateDems to end this cruel Trump Administration policy.… https://t.co/c7MlB6cvUd +06/15/2018,Politicians,@SenWarren,The official policy of this administration is to rip children from their parents. Let that sink in. And then fight… https://t.co/8irLEVGJXd +06/14/2018,Politicians,@SenWarren,Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice h… https://t.co/aXRpsgRPhb +06/14/2018,Politicians,@SenWarren,"We don't know how many Puerto Ricans died from Hurricane Maria, but we do know the official death toll of 64 is a h… https://t.co/Xy4lfmTOci" +06/14/2018,Politicians,@SenWarren,The Trump Admin is packing our courts with right-wing nominees like Chad Readler who want to tilt the scales in fav… https://t.co/fVZTGm5gC2 +06/14/2018,Politicians,@SenWarren,Some state governments are punishing people struggling with student loans by taking away their drivers’ & professio… https://t.co/mOuZJY890z +06/13/2018,Politicians,@SenWarren,"Power is more and more concentrated in a handful of giant companies at the expense of small businesses, entrepreneu… https://t.co/7gMvtPngdt" +06/13/2018,Politicians,@SenWarren,Thousands of children have been torn from their parents’ arms because of @realdonaldtrump’s cruel immigration polic… https://t.co/LwpVD9VlQS +06/13/2018,Politicians,@SenWarren,Congress is voting on a reckless provision jammed into this year’s defense bill that would give @realdonaldtrump fr… https://t.co/DxTsmAzooD +06/13/2018,Politicians,@SenWarren,.@SecAzar told the Senate about his shiny new drug pricing plan yesterday. But he can’t guarantee it won't raise pr… https://t.co/RzpnCtbOYi +06/13/2018,Politicians,@SenWarren,RT @SenateDems: Debemos hacer todo lo posible para ayudar a nuestros hermanos y hermanas en #PuertoRico. La Ley de Vivienda Para Víctimas d… +06/12/2018,Politicians,@SenWarren,Poor & marginalized Americans are coming together across the country to demand a government that works for the peop… https://t.co/5AOouapvUt +06/12/2018,Politicians,@SenWarren,"RT @SenTinaSmith: In his campaign, @POTUS made bold promises about reducing drug prices. But @SenWarren and I are gravely concerned that th…" +06/12/2018,Politicians,@SenWarren,My full statement on President Trump’s meeting with Kim Jong Un: https://t.co/BgyTMzhI4q https://t.co/Dk1LNOnMuM +06/12/2018,Politicians,@SenWarren,Jeff Sessions' move to deny asylum to women fleeing domestic violence does not reflect our country's true values. T… https://t.co/NWsVeIqtGo +06/11/2018,Politicians,@SenWarren,"Red & blue states alike have taken their own thoughtful approaches to marijuana. Now, 12 governors – led by… https://t.co/SlLzk3G5rq" +06/11/2018,Politicians,@SenWarren,Our democracy is under attack – but not lost. Watch live as I talk with the @ACLU about how we’re fighting to save… https://t.co/gEcBbyB7YP +06/11/2018,Politicians,@SenWarren,The Supreme Court’s decision to make it easier for Ohio to cross eligible voters off the rolls is a major step back… https://t.co/jPB6mi1ZoV +06/11/2018,Politicians,@SenWarren,"RT @SenMarkey: The repeal of #NetNeutrality officially goes into effect today, but the fight is far from over. + +The people saying we can’t…" +06/10/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, public health & safety… https://t.co/IHN37uFDLk" +06/08/2018,Politicians,@SenWarren,"When I questioned Trump's pick to be the head of civil rights at @usedgov, he dipped & dodged on whether he'd prote… https://t.co/YNCWutojS7" +06/08/2018,Politicians,@SenWarren,Yesterday I met with Puerto Rican families who evacuated to MA after Hurricane Maria. They want to make MA their ho… https://t.co/Rjs3ip4eO9 +06/07/2018,Politicians,@SenWarren,"A majority of Americans support legalizing marijuana. It’s time for Congress to listen, and pass this new bipartisa… https://t.co/x6COyGCPci" +06/07/2018,Politicians,@SenWarren,There's a lot we can do to address America’s broken marijuana policies – like passing @SenBooker’s… https://t.co/mf11K7ZMHr +06/07/2018,Politicians,@SenWarren,No qualified scientist should have to struggle to conduct basic research on marijuana. Their findings could spur me… https://t.co/bn37ADU6XB +06/07/2018,Politicians,@SenWarren,No legitimate business should be blocked from basic banking services – but that’s exactly what’s happening to law-a… https://t.co/fTVV0eP0IN +06/07/2018,Politicians,@SenWarren,"No veteran with chronic pain, child with a rare disease, or person struggling with a terminal illness should be den… https://t.co/Xhlu1YfW7q" +06/07/2018,Politicians,@SenWarren,No one should go to jail for a joint. But more Americans are arrested for marijuana possession than all violent cri… https://t.co/P1Rr1tk0rK +06/07/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, & public health & safet… https://t.co/q5d85SGxSu" +06/07/2018,Politicians,@SenWarren,"The federal government’s marijuana policies are broken, outdated, and disregard the rights of states like MA & CO t… https://t.co/NJU1t1FeC3" +06/07/2018,Politicians,@SenWarren,It’s time to reform American’s outdated marijuana policies. Watch live as @SenCoryGarder and I discuss our new legi… https://t.co/CSUmSKYPSt +06/06/2018,Politicians,@SenWarren,.@MickMulvaneyOMB has no intention of putting consumers above financial firms that cheat them. This is what happen… https://t.co/GRcWGiA5JD +06/06/2018,Politicians,@SenWarren,"RT @SenTinaSmith: When women are empowered to contribute, we all benefit. We’re seeing it more and more here in the Senate. And I’m proud t…" +06/06/2018,Politicians,@SenWarren,Robert Kennedy understood that we cannot simply run our economy for those at the top and assume that it will solve… https://t.co/wVYiobM82c +06/06/2018,Politicians,@SenWarren,Corruption oozes out of @EPAScottPruitt’s office like toxic sludge – and working families will get burned by it. I… https://t.co/8bJhKoM6ug +06/05/2018,Politicians,@SenWarren,The GOP wants you to believe that their war on regulations is about freedom. Baloney. Good rules empower people to… https://t.co/MNdMNAJVBm +06/04/2018,Politicians,@SenWarren,".@realDonaldTrump is playing a political game, and he believes he gets to make up the rules. He doesn’t. The Consti… https://t.co/ukMqIVrp7S" +06/03/2018,Politicians,@SenWarren,La respuesta del gobierno federal en Puerto Rico después del huracán María ha sido pésima. Hablé con @TelemundoNI s… https://t.co/XTKbqAvG7U +05/31/2018,Politicians,@SenWarren,.@SenMarkey & I are introducing a bill to make @FEMA address the medium & long-term housing needs of survivors of H… https://t.co/xyXkQkkz5y +05/31/2018,Politicians,@SenWarren,Let’s be clear: @realDonaldTrump's gag rule isn't about improving women’s health care. It's an attempt to control w… https://t.co/g20gU9oi70 +05/31/2018,Politicians,@SenWarren,Car dealers are exempt from @CFPB oversight – and auto loan defaults just hit a 15-year high. That's not a coincide… https://t.co/QXcxmFZLJd +05/30/2018,Politicians,@SenWarren,"Even as banks make record profits, their former banker buddies turned regulators are doing them favors by rolling b… https://t.co/PzWIXHExiE" +05/30/2018,Politicians,@SenWarren,"Thousands of students were cheated by for-profit colleges, but @BetsyDeVosED wants to stop students from getting th… https://t.co/7it5Yqrdak" +05/30/2018,Politicians,@SenWarren,".@Walmart rakes in billions from the #GOPTaxScam and sends the profits straight to Wall Street, while many employee… https://t.co/su7bcDzF52" +05/29/2018,Politicians,@SenWarren,"In another example of weak enforcement that will harm our economy, the DOJ just approved the @Bayer-@MonsantoCo mer… https://t.co/zqxWOy5G6g" +05/29/2018,Politicians,@SenWarren,The official death count in Puerto Rico from Hurricane Maria is only 64. A new study shows the real total could be… https://t.co/s38Kh0lLKt +05/28/2018,Politicians,@SenWarren,All 3 of my brothers served & came home safe. But many do not. I had the chance to honor a special group of veteran… https://t.co/21adDPdDwU +05/26/2018,Politicians,@SenWarren,Firefighters face a higher rate of cancer than the rest of the population. They face enough risk every day – we’ve… https://t.co/riciYDCrV8 +05/25/2018,Politicians,@SenWarren,"Update: Brian Montgomery has been confirmed by the Senate 74 to 23. In Donald Trump’s Washington, the revolving doo… https://t.co/XYlEWcU0Dz" +05/24/2018,Politicians,@SenWarren,The #BankLobbyistAct was just signed into law – rolling back rules on big banks. But bank lobbyists are already ask… https://t.co/5cyAvODIxv +05/24/2018,Politicians,@SenWarren,President Trump’s wild back and forth with Kim Jong Un shows once again that he has no strategy. If… https://t.co/zMXET6LcBx +05/24/2018,Politicians,@SenWarren,"I spoke with preachers from across the country about growing up a Methodist, teaching Sunday School to rowdy 5th gr… https://t.co/qti7O5JIWF" +05/24/2018,Politicians,@SenWarren,"I love when the USW comes to the Capitol. They’re loud, they’re strong, and they won’t back down from the fight. Co… https://t.co/PcVQH70wC1" +05/23/2018,Politicians,@SenWarren,RT @UNITEDWEDREAM: Find out if you can renew your #DACA TODAY! United We Dream has put a list of resources for you to figure out if you qua… +05/23/2018,Politicians,@SenWarren,"Over 700 children have been separated from their parents thanks to a new, cruel Trump Admin policy. Today,… https://t.co/8n3tBVxUH9" +05/23/2018,Politicians,@SenWarren,"Yesterday, I met with @AMarch4OurLives leaders @Alfonso_Cal, @davidhogg111, and @Charlie_Mirsky. Congress still has… https://t.co/Dj73Sau6UI" +05/23/2018,Politicians,@SenWarren,"We should be expanding – not limiting – women’s access to reproductive health care. Instead, the GOP is attacking s… https://t.co/zx0mPFU3L1" +05/22/2018,Politicians,@SenWarren,Big banks have spent millions of dollars trying to roll back the rules we put in place after we bailed them out ten… https://t.co/rd0DtmYQXB +05/22/2018,Politicians,@SenWarren,"In a decision written by Justice Gorsuch, the Supreme Court has ruled that corporations can block workers from suin… https://t.co/Ys1c8ySKED" +05/22/2018,Politicians,@SenWarren,"For years, armies of bank lobbyists & executives have groaned about how financial rules are hurting them. But there… https://t.co/Gtjacxqkdp" +05/21/2018,Politicians,@SenWarren,The #BankLobbyistAct rolls back the rules on big banks & increases the risk of another taxpayer bailout. It could p… https://t.co/apSASLY4vj +05/20/2018,Politicians,@SenWarren,I graduated from a commuter college like @Quinsig. Even as the rich and powerful tighten their hold on our democrat… https://t.co/XCe9iKXeGb +05/19/2018,Politicians,@SenWarren,"Today I told the graduates of @lesley_u: There will be plenty of people in your life who will try to shut you up, b… https://t.co/KTRFnPIpJV" +05/18/2018,Politicians,@SenWarren,"My heart breaks for the students and faculty of Santa Fe High School, and the families of those who lost their live… https://t.co/8f9RbOZqYo" +05/18/2018,Politicians,@SenWarren,"We're going to keep fighting back against @realdonaldtrump, @VP Pence, and right-wing politicians who want to regul… https://t.co/HVEUwglVOR" +05/18/2018,Politicians,@SenWarren,.@realdonaldtrump's gag rule is designed to kick providers like Planned Parenthood out of Title X & hold women host… https://t.co/zK3EKPBmp2 +05/18/2018,Politicians,@SenWarren,"Title X provides birth control, cancer screenings & HIV tests to over 4M Americans. It doesn’t fund abortions & nev… https://t.co/kBpqg6tKvz" +05/17/2018,Politicians,@SenWarren,"Creating fake accounts, cheating servicemembers, overcharging mortgage borrowers – and now altering documents to fa… https://t.co/nviNSb4rwa" +05/17/2018,Politicians,@SenWarren,"No matter how you dress it up, torture is torture. It’s inhumane, ineffective, and un-American. Gina Haspel advocat… https://t.co/bUdt01PYmj" +05/16/2018,Politicians,@SenWarren,I ran into 2018 @bostonmarathon champ @des_linden today. I’m glad she slowed down long enough for us to grab a phot… https://t.co/c67kFGSDN7 +05/16/2018,Politicians,@SenWarren,Thanks to my partner @SenMarkey for leading the charge in the Senate to save #NetNeutrality. We won this fight toda… https://t.co/NtTNResF3n +05/16/2018,Politicians,@SenWarren,"Democrats want to stop internet providers from blocking access, filtering content, or charging higher fees. I’m spe… https://t.co/VQ5Vn27hJ2" +05/16/2018,Politicians,@SenWarren,"CEO salaries are soaring while wages for American workers are barely budging. At many companies, CEOs make more in… https://t.co/ajLRsicf2Q" +05/15/2018,Politicians,@SenWarren,".@Equifax faced no real penalty after compromising the data of 148M Americans. Instead of demanding accountability,… https://t.co/kfJ5DDVDxx" +05/15/2018,Politicians,@SenWarren,"Thomas Farr, @realdonaldtrump's nominee for a federal judgeship, worked to undermine voting rights & defended discr… https://t.co/0eAjG6Bk13" +05/14/2018,Politicians,@SenWarren,Both @ATT and @Novartis had significant business before the Trump Admin when they secretly paid Trump’s attorney Mi… https://t.co/r0vxrQH2aH +05/14/2018,Politicians,@SenWarren,.@BetsyDeVosED has filled @usedgov with for-profit college hacks who only care about making sham schools rich and s… https://t.co/vLnhx9QrT6 +05/13/2018,Politicians,@SenWarren,Hey @PhilipsLight: You don’t get to walk away with millions in tax breaks and then turn around and spit in the face… https://t.co/pUKCUEDbHB +05/12/2018,Politicians,@SenWarren,Carl knows what it will take to beat the opioid epidemic – because he’s been fighting the AIDS epidemic for years.… https://t.co/sQNropkPce +05/11/2018,Politicians,@SenWarren,I pushed the @federalreserve hard to hold a public vote on whether @WellsFargo should be allowed to get any bigger… https://t.co/4mflZndgOx +05/11/2018,Politicians,@SenWarren,We owe our @USNationalGuard members the very best. But some officers are forced to wait months for their promotions… https://t.co/28IlXTo9TZ +05/10/2018,Politicians,@SenWarren,It’s unacceptable that @Equifax has taken so long to tell the whole truth about the extent of the breach. @Equifax… https://t.co/wWx1ROZ8RQ +05/10/2018,Politicians,@SenWarren,A months-long investigation by my office revealed that @Equifax failed to disclose all the information that was tak… https://t.co/kFccQIUdew +05/10/2018,Politicians,@SenWarren,I agree with @SenJohnMcCain. I opposed Gina Haspel’s nomination from the beginning – and I will vote against her co… https://t.co/qj37SFHSug +05/10/2018,Politicians,@SenWarren,About to call into @BosPublicRadio to talk with @margeryeagan and @criticalthawt (in for @jimbraude). Tune in live… https://t.co/EAGdYi7Viu +05/09/2018,Politicians,@SenWarren,"Student loan debt is exploding, but @MickMulvaneyOMB is planning to shut down the only federal office fully focused… https://t.co/LghPHDa5WP" +05/09/2018,Politicians,@SenWarren,"Today, Senate Democrats are moving to force a vote on @SenMarkey’s resolution to save #NetNeutrality. We only need… https://t.co/SBRpMePO68" +05/09/2018,Politicians,@SenWarren,"When I was in 2nd grade, Mrs. Lee told me that I too could be a teacher one day. I grew up to be a teacher, then a… https://t.co/6kuCihOcG0" +05/08/2018,Politicians,@SenWarren,Our justice system is broken. Black and brown Americans receive harsher sentences than white Americans for the same… https://t.co/GZN9uPX3Bi +05/08/2018,Politicians,@SenWarren,The @OfficialCBC is hosting a Twitter town hall right now on our broken criminal justice system. This is a powerful… https://t.co/ctCBdIG9cn +05/08/2018,Politicians,@SenWarren,Even the Trump Administration has conceded that Iran is complying with the deal. Now @realdonaldtrump has pulled ou… https://t.co/evx7zOJPIm +05/08/2018,Politicians,@SenWarren,The Obama Administration negotiated a landmark agreement to prevent Iran from obtaining a nuclear weapon.… https://t.co/IwYOdVvK3q +05/08/2018,Politicians,@SenWarren,Massachusetts has some of the strictest gun control laws in the country – and one of the lowest gun fatality rates… https://t.co/g1HWdTzxLn +05/05/2018,Politicians,@SenWarren,Crystal Perry of the Mashpee Wampanoag tribe in MA loved horses & her family. She & a friend were murdered in 2013… https://t.co/aziZwPx96R +05/05/2018,Politicians,@SenWarren,Today is National Day of Awareness for Missing and Murdered Native Women and Girls. Thousands of Native American wo… https://t.co/EYCnnUFOFG +05/04/2018,Politicians,@SenWarren,"Last month, Bruce & I visited the @NPG to see the stunning new portraits of the Obamas. @BarackObama's captures the… https://t.co/439iNFqbAm" +05/03/2018,Politicians,@SenWarren,I hope President Trump’s negotiations with North Korea succeed – the world will be a safer place if they do. But th… https://t.co/94TL3YhSTm +05/03/2018,Politicians,@SenWarren,Why are teachers paid so little? Why aren’t more politicians across state legislatures standing up for them? I’ll t… https://t.co/jnxE5Vv4gL +05/02/2018,Politicians,@SenWarren,RT @SenCortezMasto: I welcome the Trump Admin pursuing diplomacy with North Korea. But in order for there to be a peaceful resolution to a… +05/02/2018,Politicians,@SenWarren,"America is safer when our State Department is fully funded, well-staffed, and focused on diplomacy. Now that he's S… https://t.co/G7mJysHOYN" +05/01/2018,Politicians,@SenWarren,"@PhilipsLight is hanging loyal, hard-working employees and the Fall River community out to dry. This is the real le… https://t.co/pEClqeWbwt" +05/01/2018,Politicians,@SenWarren,"Instead of buying back their own stock and outsourcing jobs, companies like @PhilipsLight should be investing in th… https://t.co/7eNlGq5Q3q" +05/01/2018,Politicians,@SenWarren,".@PhilipsLight can afford to shell out $187 million to shareholders, so @RepJoeKennedy and I want to know why they’… https://t.co/E2eDrZOxIs" +05/01/2018,Politicians,@SenWarren,Did you know it’s legal for companies to pay people with disabilities pennies on the dollar for doing the same job… https://t.co/cyt4102XTW +05/01/2018,Politicians,@SenWarren,The proposed merger between Sprint and T-Mobile could strangle competition in the telecom industry and end up hurti… https://t.co/TRWfXjMEzS +04/30/2018,Politicians,@SenWarren,I agree with Sheriff @stevenwtompkins of Suffolk County – the opioid epidemic is out of control and our country nee… https://t.co/QKpd08mgXJ +04/30/2018,Politicians,@SenWarren,"Over 20,000 consumers have filed complaints about @Equifax with the @CFPB since the #EquifaxBreach. But instead of… https://t.co/SpK2ERs3g5" +04/29/2018,Politicians,@SenWarren,"Firefighters are exposed to harsh chemicals on the job, and develop cancer at higher rates as a result. I've been p… https://t.co/3OvDTBh9Hj" +04/27/2018,Politicians,@SenWarren,"Last month, corporate lobbyists found a single court willing to block @USDOL's conflict-of-interest rule, which was… https://t.co/Yfyumu0rkE" +04/27/2018,Politicians,@SenWarren,I’d like @MickMulvaneyOMB to explain to the American people why almost every major decision he’s made at the @CFPB… https://t.co/oOJiFhhU55 +04/26/2018,Politicians,@SenWarren,"The DOJ is on track to approve a merger between Monsanto and Bayer, which would hand control of 1/4 of the world’s… https://t.co/tN2P38ILLk" +04/26/2018,Politicians,@SenWarren,Our military leaders have told us – many times – that a strong State Department is critical to their mission. Now t… https://t.co/cxLXeiosAS +04/26/2018,Politicians,@SenWarren,Favorite meeting of the day. #TakeYourChildToWorkDay https://t.co/wYqCacKLbt +04/26/2018,Politicians,@SenWarren,"Mike Pompeo has repeatedly embraced military action over diplomatic solutions, supported interrogation techniques t… https://t.co/UvVMFiq4PV" +04/25/2018,Politicians,@SenWarren,"For a long time, Washington has worked for people who can write big campaign checks & hire armies of lobbyists. But… https://t.co/smZAlqDovV" +04/25/2018,Politicians,@SenWarren,"Valeria's little sister applied for DACA, but @realdonaldtrump ended it before she could get it. A federal judge ju… https://t.co/SmrWSjmG9Z" +04/25/2018,Politicians,@SenWarren,This is the most corrupt administration ever. https://t.co/uHr0tek2G1 +04/24/2018,Politicians,@SenWarren,RT @reveal: .@SenWarren just fired off letters accusing regulators of rolling back anti-discrimination protections for people of color in t… +04/24/2018,Politicians,@SenWarren,Federal judges are supposed to dispense equal justice under the law. But Kyle Duncan – @realdonaldtrump’s nominee f… https://t.co/5GuBBYgqJn +04/24/2018,Politicians,@SenWarren,"I've been fighting to pass the Firefighter Cancer Registry Act, which will allow us to better protect the firefight… https://t.co/fwyyKACVoU" +04/24/2018,Politicians,@SenWarren,Bob’s resilience inspires me. He’s done so much for his community – and it’s time Congress is there for him and tho… https://t.co/hcoHIOr0xb +04/23/2018,Politicians,@SenWarren,"Mike Pompeo’s brand of foreign policy doesn’t reflect America’s values, and won’t make us any safer. I urge my Sena… https://t.co/HqHnfyPQCz" +04/23/2018,Politicians,@SenWarren,"After the Boston Marathon bombing, our whole country grieved – including people of Islamic faith. But Mike Pompeo u… https://t.co/Ap9dEbaGvJ" +04/23/2018,Politicians,@SenWarren,"A strong State Department requires a leader who actually believes in the power of diplomacy, and the importance of… https://t.co/whiThuA4fE" +04/23/2018,Politicians,@SenWarren,"This weekend, I met with members of the Mashpee Wampanoag Tribe to discuss the opioid crisis, which has hit Native… https://t.co/esyBacMYbI" +04/22/2018,Politicians,@SenWarren,"The @nytimes lays out the history and scope of opioid addiction in America, lessons learned from our response to th… https://t.co/t5rTKIxoL9" +04/22/2018,Politicians,@SenWarren,"Last year, I got a big stack of letters from the 7th graders at Clarke Middle School. They wrote to tell me how wor… https://t.co/RvJm2dKeyo" +04/20/2018,Politicians,@SenWarren,The federal government needs to get out of the business of outlawing marijuana. States should make their own decisi… https://t.co/ZMK6OuvZ7b +04/20/2018,Politicians,@SenWarren,"⚡️ Thirty years ago, Congress passed the Ryan White CARE Act to combat the HIV/AIDS epidemic. This week,… https://t.co/cRq7EdCGyL" +04/20/2018,Politicians,@SenWarren,Most of the students marching in today’s #NationalSchoolWalkout were born after the Columbine shooting. They grew u… https://t.co/NQbVFVfNqA +04/19/2018,Politicians,@SenWarren,"For months, @SenMarkey & I have fought for Puerto Rican families who evacuated to Massachusetts after Hurricane Mar… https://t.co/vIj6mMLEL6" +04/19/2018,Politicians,@SenWarren,"RT @RepCummings: This morning, @SenWarren and I went on @Morning_Joe to discuss our new #CAREAct and taking on the #OpioidEpidemic. The opi…" +04/19/2018,Politicians,@SenWarren,".@SenDuckworth, I'm so glad to see the Senate take this baby step forward. I'll be the first in line to hold Maile… https://t.co/g5gFFh4whj" +04/18/2018,Politicians,@SenWarren,Enough is enough. It’s time for the Trump Administration to step up and take responsibility for the repeated blacko… https://t.co/XRNMVz9Qle +04/18/2018,Politicians,@SenWarren,I worked with @SenTedCruz to pass a bipartisan resolution designating today as Military Retiree Appreciation Day. A… https://t.co/Dp0yfNze6w +04/18/2018,Politicians,@SenWarren,We can’t defeat the opioid crisis with empty words and half measures. Congress acted before to stop an epidemic whe… https://t.co/vNUCviZfs5 +04/18/2018,Politicians,@SenWarren,The #CAREact includes $1 billion a year for clinics and non-profits to improve addiction treatment – along with $50… https://t.co/Hq0XGnzAPF +04/18/2018,Politicians,@SenWarren,"In addition to funding for communities on the front lines of the opioid crisis, the #CAREact will provide $1.8 bill… https://t.co/8PQigLmtK7" +04/18/2018,Politicians,@SenWarren,"The #CAREact will provide $4 billion per year to states, territories, and tribal governments. An additional $2.7 bi… https://t.co/1mwQb9ypRh" +04/18/2018,Politicians,@SenWarren,"Today, @RepCummings and I are introducing the #CAREact. Our bill will provide $100 billion in federal funding over… https://t.co/WveLaxQQX2" +04/18/2018,Politicians,@SenWarren,"RT @CNBC: Remembering Barbara Bush, who in addition to supporting her husband and raising her family, was an independent spirit, willing to…" +04/17/2018,Politicians,@SenWarren,"RT @SenMarkey: With 30 signatures on this petition, @SenateDems can and will force a vote on the CRA resolution to save #NetNeutrality. + +So…" +04/17/2018,Politicians,@SenWarren,"RT @SenateDems: Who reaps most of the benefits from the #GOPTaxScam? Corporate executives and wealthy investors, not American workers. #Tax…" +04/17/2018,Politicians,@SenWarren,The Senate is on the verge of voting to make it easier for auto lenders to discriminate. Here’s why I'm voting agai… https://t.co/ysMnLEaSob +04/17/2018,Politicians,@SenWarren,"Harry from Hull, MA tried everything to get his son out of an auto-loan scam, but no agency would help – until he c… https://t.co/0X7k5rPhR1" +04/15/2018,Politicians,@SenWarren,"On #OneBostonDay, we ask the rest of the world to join our city in doing one random act of kindness – big or small.… https://t.co/U5GJO3ZT64" +04/15/2018,Politicians,@SenWarren,"As we mark the fifth anniversary of the Boston Marathon bombing, I'm grateful to Jessica Kensky and Patrick Downes… https://t.co/DbEMPk7Vkn" +04/15/2018,Politicians,@SenWarren,I introduced a bipartisan bill with @SenatorCollins named after Jessica & Patrick to give other survivors of terror… https://t.co/l3zomDOboy +04/15/2018,Politicians,@SenWarren,Jessica Kensky and Patrick Downes are a courageous young couple who both lost legs during the Boston Marathon bombi… https://t.co/uxmPcWOoj2 +04/14/2018,Politicians,@SenWarren,The Constitution gives Congress the power to authorize military action. If @realDonaldTrump wants to expand America… https://t.co/Ozuzkl11Ql +04/14/2018,Politicians,@SenWarren,"Chemical attacks in Syria are horrifying, and a clear violation of international law. The world must hold Assad acc… https://t.co/iO8ceDnjRb" +04/13/2018,Politicians,@SenWarren,"RT @MassStatePolice: With a heavy heart 💙, our condolences go out tonight to our brothers & sisters of the @yarmouthpolice & to Officer Sea…" +04/13/2018,Politicians,@SenWarren,Time may be running out. Congress must immediately pass this bipartisan bill to ensure that Mueller can complete a… https://t.co/ZDdBkMN6NP +04/13/2018,Politicians,@SenWarren,The Washington swamp just got a little dirtier. The Senate just voted to confirm former coal lobbyist Andrew Wheele… https://t.co/20hbwmOPX2 +04/12/2018,Politicians,@SenWarren,"On Yom Hashoah, #WeRemember the 6 million Jews who were murdered during the Holocaust. We honor their memories by c… https://t.co/u2cW3WNvP0" +04/12/2018,Politicians,@SenWarren,.@realDonaldTrump has sworn up and down that he won't support bad trade deals. He pulled out of the TPP after he wa… https://t.co/sOmMFiIHe3 +04/12/2018,Politicians,@SenWarren,The @CFPB was created to protect people. If @MickMulvaneyOMB wants to prevent the agency from stopping scams & help… https://t.co/j7321NPRO6 +04/12/2018,Politicians,@SenWarren,"Harry from Hull, MA told the @CFPB about his son’s shady auto-loan. The agency looked into his complaint & forced t… https://t.co/CTVWsbi1BO" +04/12/2018,Politicians,@SenWarren,"One of those people is Ari. Before he deployed to Iraq, he bought a truck and got pushed into a subprime auto-loan… https://t.co/jb59TYIpwd" +04/12/2018,Politicians,@SenWarren,"I just finished questioning @MickMulvaneyOMB in a Senate hearing. Before he started running the @CFPB, he tried to… https://t.co/vzAoXO7IQu" +04/12/2018,Politicians,@SenWarren,.@MickMulvaneyOMB has been bringing up my name a lot lately when talking about the @CFPB. But what he doesn’t get i… https://t.co/hX7O0u1UuT +04/12/2018,Politicians,@SenWarren,It’s been four months since @MickMulvaneyOMB took over the @CFPB – and he hasn’t lifted a finger to help consumers.… https://t.co/bvyNsWCagd +04/11/2018,Politicians,@SenWarren,"The #BankLobbyistAct is dangerous enough, but now House Republicans want to load the bill up with even more favors… https://t.co/heGpUb2XRe" +04/10/2018,Politicians,@SenWarren,"Women should be paid the same as men for doing the same work – period. This year, we’re marking #EqualPayDay with a… https://t.co/JxkxC17Wbz" +04/10/2018,Politicians,@SenWarren,"RT @nwlc: Today is #EqualPayDay, when pay for all women catches up to the pay for all men from the previous year. Check out our factsheet a…" +06/30/2018,Politicians,@CoryBooker,So grateful for your leadership Vanita. I will be marching in Jersey. https://t.co/IuHww7MqSG +06/30/2018,Politicians,@CoryBooker,@lyttle_david @TheBeatWithAri Thank you. +06/30/2018,Politicians,@CoryBooker,"RT @LC67472446: It was an honor meeting Senator @CoryBooker and Tom @Malinowski tonight at the Election Kick Off event for #TeamTom #NJ07 +P…" +06/30/2018,Politicians,@CoryBooker,@katwardphoto @SenBooker Thanks. +06/30/2018,Politicians,@CoryBooker,@rasincanegirl Thank you. +06/30/2018,Politicians,@CoryBooker,@DashMan18 @tribelaw @SenSchumer @RepAdamSchiff Gratitude +06/30/2018,Politicians,@CoryBooker,"RT @TheBeatWithAri: Senator @CoryBooker warns Trump could pick a Supreme Court Justice to ""protect himself"" https://t.co/yAiOIlTjk2" +06/30/2018,Politicians,@CoryBooker,"RT @Shareblue: Sen. Corey Booker calls on lawmakers to halt SCOTUS confirmation process until Mueller finishes investigating Trump +https:/…" +06/30/2018,Politicians,@CoryBooker,RT @dailykos: Cory Booker makes it clear: The Senate can't consider a nominee until Russia investigation is over https://t.co/1zJuggoWAa +06/30/2018,Politicians,@CoryBooker,RT @SenBooker: VIDEO: At Judiciary Committee Hearing @CoryBooker Warns of POTUS Conflict of Interest in Selecting #SCOTUS Justice: https://… +06/29/2018,Politicians,@CoryBooker,"“Not everything that is faced can be changed, + +but nothing can be changed until it is faced.” + +James Baldwin… https://t.co/FeFdVBMtXK" +06/28/2018,Politicians,@CoryBooker,I'm deeply saddened by the shooting at #CapitalGazette in Annapolis & horrified that journalists were attacked like… https://t.co/Ubg6umMIA9 +06/28/2018,Politicians,@CoryBooker,"RT @NARAL: “This will NOT happen without a fight. We, who believe that a woman has the right to make her own medical decisions, we now must…" +06/28/2018,Politicians,@CoryBooker,"RT @LambdaLegal: ""For those of us who believe love is love is love is love, we must now fight! Don't tell me this battle is already lost.""…" +06/28/2018,Politicians,@CoryBooker,"RT @ABC: Cory Booker on Supreme Court: ""The menacing truth is that we have to face a reality coming at us where we might lose some of the p…" +06/28/2018,Politicians,@CoryBooker,"RT @ThisWeekABC: Cory Booker on Supreme Court: ""The menacing truth is that we have to face a reality coming at us where we might lose some…" +06/28/2018,Politicians,@CoryBooker,RT @CAPAction: Senator @CoryBooker has a message: Stand strong. This is a time us to believe that we're on the right side of history...you… +06/28/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: ""I stand here to say: This will not happen without a fight"" @SenBooker #DitchtheList https://t.co/ISMpS96Py8" +06/28/2018,Politicians,@CoryBooker,https://t.co/ZgZceOfFmU +06/28/2018,Politicians,@CoryBooker,RT @SenBooker: Trump is the subject of a criminal investigation that could eventually come before the Supreme Court—he has a clear conflict… +06/28/2018,Politicians,@CoryBooker,"For that reason, I do not believe the Judiciary Committee should or can in good conscience consider a nominee put f… https://t.co/m7BKQRqvRm" +06/28/2018,Politicians,@CoryBooker,Should we be considering a Supreme Court nominee from a President who has a history of demanding these loyalty test… https://t.co/YaVyeYZ8tq +06/28/2018,Politicians,@CoryBooker,We’ve seen numerous people that are close to the President or on his campaign who have plead guilty … and we have a… https://t.co/86KNxhdcvI +06/28/2018,Politicians,@CoryBooker,The President of the United States is a subject of an ongoing criminal investigation – an investigation that every… https://t.co/c5jjT8sYXJ +06/28/2018,Politicians,@CoryBooker,"Regarding this Supreme Court vacancy: among the many consequential issues at stake, there is clearly a potential co… https://t.co/gbckfvIHYZ" +06/28/2018,Politicians,@CoryBooker,"In Judiciary Hearing. + +I will argue, among other things, that we should wait until after the election (McConnell r… https://t.co/rE2us944Fc" +06/27/2018,Politicians,@CoryBooker,"From low wages to short-termism, today’s corporations are keeping American workers from reaching their dreams. It’s… https://t.co/xYNFFGFO23" +06/26/2018,Politicians,@CoryBooker,"We still have work to do, America. +We still have work to do. +#NoBanNoWall https://t.co/YZlnEdMFRB" +06/23/2018,Politicians,@CoryBooker,"RT @CoryBooker: Love over hate + +Love over indifference + +Love over ignorance + +Love over ego + +Love over fear + +Love over barriers + +Love ove…" +06/23/2018,Politicians,@CoryBooker,"RT @senorrinhatch: “Tender age shelters” is a chilling phrase we will not soon forget. + +The child separation policy should be halted now.…" +06/23/2018,Politicians,@CoryBooker,"RT @JeffFlake: ""Tender Age"" shelters for toddlers? This gets even worse as the layers are peeled back. End the policy, Mr. President. https…" +06/23/2018,Politicians,@CoryBooker,"RT @M_Breen: The most powerful nation in the history of the world is now reduced to detaining babies in the name of national security. +http…" +06/23/2018,Politicians,@CoryBooker,RT @mattyglesias: I know I sleep better at night knowing the President is working hard to protect my family from the twin menaces of Centra… +06/23/2018,Politicians,@CoryBooker,"RT @mattklapper: Meet Senator @CoryBooker’s environment legislative aide, @ArianaSpawn, who earlier this month led efforts to introduce the…" +06/23/2018,Politicians,@CoryBooker,RT @voxdotcom: Sen. Cory Booker just introduced a bill that could legalize marijuana nationwide https://t.co/sTDu1yFXfp +06/22/2018,Politicians,@CoryBooker,Love is an active not a passive word. Thank you and all the best to you. https://t.co/PfgEebLNVv +06/22/2018,Politicians,@CoryBooker,Nothing truly worthwhile is easy. May we both take on this struggle with the understanding of Frederick Douglass’ w… https://t.co/2JOFo94vT9 +06/22/2018,Politicians,@CoryBooker,"I love you. May both you and I, seek less to assign blame and work more to accept responsibility. https://t.co/CYuJbkT5G7" +06/22/2018,Politicians,@CoryBooker,"Love over hate + +Love over indifference + +Love over ignorance + +Love over ego + +Love over fear + +Love over barriers… https://t.co/TYYaoaEaez" +06/20/2018,Politicians,@CoryBooker,We are supposed to learn from our past mistakes. Not repeat them. https://t.co/Ku3LTprSsC +06/19/2018,Politicians,@CoryBooker,"Celebrating #Juneteenth today – recognizing we've come a long way, but we still got a long way left to go." +06/19/2018,Politicians,@CoryBooker,RT @brianschatz: They want you to be so afraid of other people that you don’t notice when they take away your health care. +06/19/2018,Politicians,@CoryBooker,RT @brianschatz: Just because the Trump administration is separating kids from their parents doesn’t mean they aren’t also trying to elimin… +06/18/2018,Politicians,@CoryBooker,"We must all demand that our nation stop tearing apart families. + +To do nothing, to say nothing is to be complicit… https://t.co/qhVq0GOX33" +06/18/2018,Politicians,@CoryBooker,"RT @BillKristol: Trump: The Democrats made us do it. +Stephen Miller: It's our policy to do it. +Sec. Nielsen: We're not doing it." +06/18/2018,Politicians,@CoryBooker,RT @anastasianylon: Family detention under Obama was appalling and ultimately did not work; separating children from their parents is even… +06/18/2018,Politicians,@CoryBooker,RT @BetoORourke: Catch-22. We are preventing families from lawfully requesting asylum at our ports of entry & then criminally prosecuting t… +06/18/2018,Politicians,@CoryBooker,"RT @ajcorchado: Outraged over Trump administration's policy of splitting up families, hundreds of protesters marched Sunday to a shelter w…" +06/18/2018,Politicians,@CoryBooker,"RT @prernaplal: The 1997 Flores Agreement that the Trump Administration is now attacking does not call for separating families. + +Flores was…" +06/18/2018,Politicians,@CoryBooker,"RT @RealAfroScholar: Honored to have been asked to share my story and a bit about my hometown of #NewarkNJ. Between #Princeton, #YaleLaw, a…" +06/18/2018,Politicians,@CoryBooker,"Read this powerful op-ed by @LaurawBush then take 2 actions: + +Call on Trump to end his despicable policy of separat… https://t.co/zPuFintAkX" +06/18/2018,Politicians,@CoryBooker,Looking forward to co-hosting @NewarkMentoring Movement’s 7th Annual Charity Golf Outing with @markherzlich later t… https://t.co/hvsZXujOMD +06/15/2018,Politicians,@CoryBooker,"Earlier this year, I announced my campaign would no longer accept corporate PAC donations, a pledge only 6 of 100 s… https://t.co/EXmuyTvncr" +06/15/2018,Politicians,@CoryBooker,"To the hundreds of thousands of Dreamers: I see you, I hear you, I stand with you, I love you. Your stories are so… https://t.co/VRj8DCl5sl" +06/15/2018,Politicians,@CoryBooker,We have a moral obligation to pass the bipartisan #DreamAct to permanently protect Dreamers. Republican leaders in… https://t.co/6xyXtmVzAL +06/15/2018,Politicians,@CoryBooker,"On this day 6 years ago, President Obama created #DACA giving hope & security to thousands of young people across o… https://t.co/VDkdWTrk1F" +06/15/2018,Politicians,@CoryBooker,We can't allow the House GOP to continue putting oil company profits ahead of the health and safety of our coastal… https://t.co/T3ksKp2WER +06/14/2018,Politicians,@CoryBooker,Early voting starts today in Maryland! Heading out to a rally with Ben Jealous today. https://t.co/cviTzhWIvP +06/14/2018,Politicians,@CoryBooker,#tbt to last year’s @NewarkMentoring Movement Charity Golf Outing. Looking forward to this year’s 7th Annual Outing… https://t.co/wk5Uv2SbvW +06/11/2018,Politicians,@CoryBooker,"My friend @JoshGottheimer is running for re-election—he's a great partner in Congress fighting for our vets, first… https://t.co/Xj0xz4PNyI" +06/11/2018,Politicians,@CoryBooker,Had a great time chatting with @RondiCharleston for #TheResilienceConversations. Thanks for having me! https://t.co/TaHDH4KKPd +06/10/2018,Politicians,@CoryBooker,RT @SenBooker: The confirmation of Kenneth Marcus would be another blow to the civil rights of our students: https://t.co/qp4SKRBVE0 +06/10/2018,Politicians,@CoryBooker,"Be kind + +It is a great gift of generosity + +To oneself + +With the collateral benefit + +Of helping others." +06/10/2018,Politicians,@CoryBooker,"RT @SenBooker: ""Don't forget the title does not make the man, the man or woman must make the title"" – @CoryBooker, graduation speech to @Pr…" +06/10/2018,Politicians,@CoryBooker,"RT @SenBooker: 55 years ago today, JFK signed into law the #EqualPayAct of 1963—legislation mandating #equalpay for equal work. But 55 year…" +06/09/2018,Politicians,@CoryBooker,RT @nwlc: “[Kenneth Marcus] possesses at best a disturbing apathy and at worst a wanton disregard to protecting the rights of our kids in s… +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: VIDEO: @CoryBooker Opposes Nomination of Kenneth Marcus to Head Office for Civil Rights at U.S. Department of Education: +ht…" +06/09/2018,Politicians,@CoryBooker,RT @SenBooker: .@SenatorTimScott & I introduced bipartisan legislation to encourage capital investments in low-income or distressed communi… +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: Today is the 112th anniversary of the #AntiquitiesAct—a law that has protected our shared historical, cultural and national…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: Today, on #WorldOceansDay, I introduced the SAVE Right Whales Act to help reduce the impacts of human activities on North At…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenatorMenendez & 30 Senate Colleagues Introduce Bill to Halt Separation of Immigrant Families: https://t.co/…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenBobCasey & @timkaine Introduce Bill to Empower Community College Students: https://t.co/qEbFvcimJM" +06/09/2018,Politicians,@CoryBooker,RT @SenBooker: .@CoryBooker Calls for Social Security Administration to Address Growing Disability Backlog: https://t.co/QYXI3xmAbY +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenatorCarper & @SenBillNelson Introduce Bicameral Bill to Establish Grant Program for Right Whale Conservati…" +06/09/2018,Politicians,@CoryBooker,"To the graduates of the Class of 2018: + +You are your ancestors' wildest dreams. And as you each strive to make tha… https://t.co/aN50Iwx4y6" +06/07/2018,Politicians,@CoryBooker,"RT @civilrightsorg: On the Senate floor, Sen. @CoryBooker just said the confirmation of Ken Marcus to lead @usedgov's Office for Civil Righ…" +06/07/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker testifies against Jeff Sessions: ""our country demands a more courageous empathy"" https://t.co/Tnr3t9OyPM" +06/07/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: The group that Trump has put on the bench is the least diverse group from any President, Democrat or Republican, since…" +06/07/2018,Politicians,@CoryBooker,RT @LawyersComm: .@CoryBooker https://t.co/rpMd25udNI +06/07/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: If confirmed, Farr will have the power to decide to suppress or protect the rights of Americans to vote...to strengthe…" +06/07/2018,Politicians,@CoryBooker,"RT @NAACP: If confirmed Thomas Farr will have the power to affect the lives and livelihoods of vulnerable Americans, to either strengthen o…" +06/07/2018,Politicians,@CoryBooker,"RT @nwlc: ""We are at a time of crisis. This judge, like all judges, will have the opportunity to shape the outcomes of our democracy for ge…" +06/07/2018,Politicians,@CoryBooker,RT @SenBooker: Today on the 74th anniversary of #DDay we honor the courage and sacrifice of the brave Americans who stormed the beaches of… +06/07/2018,Politicians,@CoryBooker,RT @SenBooker: The Trump Administration wants to nominate a man named Thomas Farr for a lifetime appointment to a U.S. District Court. This… +06/07/2018,Politicians,@CoryBooker,RT @WeDemandJustice: Trump’s latest judge nominee has built his career around attempts to disenfranchise minorities. Why won't Chuck Grassl… +06/06/2018,Politicians,@CoryBooker,Thank you. I am so grateful for your leadership Chairman. https://t.co/TcLe7KdRRV +06/06/2018,Politicians,@CoryBooker,"RT @LawyersComm: .@CoryBooker ""we must decide to whether to sit down as spectators or stand up...now we have to raise our voices and demand…" +06/06/2018,Politicians,@CoryBooker,RT @NAACP: The opposite of justice is not injustice — it is INACTION. Sen. @CoryBooker #StopFarr +06/06/2018,Politicians,@CoryBooker,RT @civilrightsorg: Thank you Senate Judiciary Committee members @CoryBooker and @SenKamalaHarris for standing on the side of justice and f… +06/06/2018,Politicians,@CoryBooker,"RT @peoplefor: .@CoryBooker: We must rise up for justice, for love, for voting rights, civil rights, workers rights... we must rise up to s…" +06/06/2018,Politicians,@CoryBooker,Thank you for being at the rally. https://t.co/8vQjaJ2lxO +06/06/2018,Politicians,@CoryBooker,"RT @civilrightsorg: We demand justice. We demand equality. We demand ALL senators #StopHateStopFarr. + +Thank you @RevDrBarber, @GKButterfiel…" +06/06/2018,Politicians,@CoryBooker,"Remembering Robert F. Kennedy. 50 years after death, his words still hold true today. https://t.co/9HeOtnORsY" +06/06/2018,Politicians,@CoryBooker,"RT @deray: Kalief Browder died 3 years ago today. + +He spent 1,120 days in jail but was NEVER convicted of a crime. + +He couldn’t afford bail…" +06/06/2018,Politicians,@CoryBooker,RT @UNHCRLebanon: U.S. Senator @CoryBooker & Ambassador Elizabeth Richard of @usembassybeirut met Mahmoud & his family in their tent in Bek… +06/06/2018,Politicians,@CoryBooker,"RT @SenBooker: In March, Toys “R” Us announced layoffs for all employees including 1,500 in NJ w/ no severance pay after being forced into…" +06/06/2018,Politicians,@CoryBooker,"RT @AsburyParkPress: .@ToysRUs: NJ politicians blast worker treatment, demand severance pay @SenBooker @SenatorMenendez https://t.co/jQNXN…" +06/06/2018,Politicians,@CoryBooker,"RT @Fuscarino: Happy Pride! ❤️🧡💛💚💙💜 + +Thank you @GovMurphy and @SenBooker for marching with @GSEquality and standing with the LGBTQ communit…" +06/06/2018,Politicians,@CoryBooker,"RT @SenBooker: Disappointed in SCOTUS #MasterpieceCakeshop decision. To deny anyone equal justice under the law is wrong. A setback, but th…" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""It's so important to let gratitude be your gravity."" -- #Princeton18 Class Day speaker @SenBooker https://t.co/GjFV0dIDzE" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""Never forget that the biggest thing you can do on almost everyday is often just a small act of kindness, decency, love, and…" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""Life is not about collecting complaints or gathering grievances ... You don't have to attend every argument you're invited…" +06/06/2018,Politicians,@CoryBooker,RT @NAACP: TODAY is the day #WashingtonDC—Join us on Capitol Hill at 2pm ET/11am PT to demand qualified judges—Stop Hate | #StopFarr: Sens.… +06/06/2018,Politicians,@CoryBooker,"RT @LawyersComm: TODAY (6/6), join @KristenClarkeJD @CoryBooker @KamalaHarris, @RevDrBarber, @DerrickNAACP & @GKButterfield to stand up aga…" +06/05/2018,Politicians,@CoryBooker,"RT @JohnKDelaney: Alabama. +California. +Iowa. +Mississippi. +Montana. +New Jersey. +New Mexico. +South Dakota. +These states have primary electio…" +06/05/2018,Politicians,@CoryBooker,"RT @ProudResister: I JUST VOTED! + +🗳California +🗳Montana +🗳Alabama +🗳Iowa +🗳Mississippi +🗳New Jersey +🗳New Mexico +🗳South Dakota + +Get. Out. And. Vo…" +06/05/2018,Politicians,@CoryBooker,You Rock (the vote). https://t.co/3XG9XQPiPO +06/05/2018,Politicians,@CoryBooker,"New Jersey: + +Don’t forget to vote today in the Primary. + +And also + +California, +Iowa, +Montana, +Alabama, +Missi… https://t.co/cTr3yd6faQ" +06/05/2018,Politicians,@CoryBooker,"""Loudly and proudly"" playing the national anthem does not make you any more patriotic than actively fighting for ou… https://t.co/FbXb6nQ0dU" +06/05/2018,Politicians,@CoryBooker,"Protest is not un-American. Often, it is the most American thing we can do. +https://t.co/YZAyMBczjX" +06/04/2018,Politicians,@CoryBooker,Very excited and honored to be celebrating the great class of 2018 and sharing with them some remarks later this mo… https://t.co/l7FK51dX34 +06/04/2018,Politicians,@CoryBooker,"RT @jonfavs: In 3 California House Districts, Democrats could get locked out of competing in the general election because of the top-2 jung…" +06/04/2018,Politicians,@CoryBooker,RT @brianschatz: Net neutrality update: the Senate passed the CRA bill to restore net neutrality. Now the Speaker is bottling the bill up i… +05/31/2018,Politicians,@CoryBooker,"I’ve known Gina since our early 20s (and Andy her husband was my law school roommate). + +I steadfastly support her… https://t.co/SIbd4QNhQy" +05/28/2018,Politicians,@CoryBooker,"Today we honor the heroic men and women who gave their lives in service to our country, and remind ourselves that w… https://t.co/IAySl9eGM7" +05/24/2018,Politicians,@CoryBooker,"The NFL anthem protest decision is not honoring America, it is an affront to our proud legacy of athletes and other… https://t.co/2innbhMWSi" +05/24/2018,Politicians,@CoryBooker,"I deeply disagree with the decision of the NFL. + +Their decision is an affront to the American ideal of protest and… https://t.co/xBlE7sIioE" +05/24/2018,Politicians,@CoryBooker,"The special counsel investigation has produced almost 20 indictments, 5 guilty pleas—3 from Trump's team & 1 alread… https://t.co/QLsNjk5JN9" +05/24/2018,Politicians,@CoryBooker,@Kattorney Thanks so much for your kind words! +05/23/2018,Politicians,@CoryBooker,"“Hope will never be silent.” + +Harvey Milk" +05/23/2018,Politicians,@CoryBooker,"RT @TheDLCC: ""The stakes in this election couldn’t be higher. Almost 800 state legislative seats are up in November, and Democrats are in a…" +05/23/2018,Politicians,@CoryBooker,"RT @voxdotcom: Breaking: first-time candidate Amy McGrath has won Kentucky's Sixth District Democratic primary. + +The retired Marine fighte…" +05/23/2018,Politicians,@CoryBooker,I am so excited my friend Stacey Abrams won Georgia’s Democratic primary to become the nominee for governor - The 1… https://t.co/kJEQcg5yC2 +05/22/2018,Politicians,@CoryBooker,"RT @SenBooker: Workers should be able to band together to take on giant corporations in cases of sexual harassment, wage theft, and other w…" +05/22/2018,Politicians,@CoryBooker,"Excited for @Harvard_Law! Tomorrow grads will hear from my friend Sen @JeffFlake. + +I’ve heard some may not to atten… https://t.co/mmFxHI7u5J" +05/22/2018,Politicians,@CoryBooker,"Excited for @Harvard_Law! Tomorrow grads will hear from my friend Sen @JeffFlake. + +I’ve hear some may not to atten… https://t.co/rLAP8t5GJy" +05/21/2018,Politicians,@CoryBooker,@Pleasant_11 Great meeting you! +05/21/2018,Politicians,@CoryBooker,@Near_more @McCaskill4MO No they did not. +05/21/2018,Politicians,@CoryBooker,"RT @clairecmc: Ok St Louis, you turned it out and up! Goodness gracious what a wonderful rally. Remember: volunteer at Claire https://t.co/…" +05/21/2018,Politicians,@CoryBooker,@k_brinst It is critically important. I am not only fighting for campaign finance reform but am one of only 6 senat… https://t.co/2vtCFkfMiU +05/21/2018,Politicians,@CoryBooker,@jake0149 You can look it all up easily. Also I’m on of only 6 senators who does not take corporate contributions. +05/21/2018,Politicians,@CoryBooker,RT @SenWhitehouse: At the heart of what is wrong with American politics is that someone can anonymously donate $24 million. What secret pro… +05/21/2018,Politicians,@CoryBooker,"""We have a system of justice in this country that treats you much better if you're rich and guilty than if you're p… https://t.co/CvP0C0hNyj" +05/21/2018,Politicians,@CoryBooker,"RT @TheDLCC: When we win back state legislatures, we can resist Trump’s agenda and enact America’s agenda. This video with @corybooker expl…" +05/20/2018,Politicians,@CoryBooker,So awesome to see such incredible support here in Missouri for my friend and colleague Claire McCaskill… https://t.co/nAnxXciNyy +05/20/2018,Politicians,@CoryBooker,"I’m in Missouri today and excited to support @mccaskill4mo! + +Please consider making a small donation to help my co… https://t.co/lt0mtbtoi3" +05/20/2018,Politicians,@CoryBooker,"RT @McCaskill4MO: Hey, @CoryBooker— +Your fans Lamont and T.J. have a quick question for you! ⤵️ #kidz4claire #MOSen https://t.co/yWnfVMEbGt" +05/19/2018,Politicians,@CoryBooker,I landed and am driving into the city now. I so look forward to meeting Lamont! https://t.co/gxuUlG7YY3 +05/19/2018,Politicians,@CoryBooker,RT @clearwaterfire: The chin-up challenge was on earlier today at Station 46. Here's a look at @SenBillNelson showing our guys how to do it… +05/19/2018,Politicians,@CoryBooker,"RT @FrankLuntz: American deaths so far in 2018… + +• Deployed military: 29 +• Kids at school: 31 + +https://t.co/WdwaeCTFM7" +05/18/2018,Politicians,@CoryBooker,"That a young child thinks a school shooting is inevitable in America is utterly heartbreaking and unacceptable! + +T… https://t.co/Q6ZSmmWMY0" +05/18/2018,Politicians,@CoryBooker,"Santa Fe High School deserves better. + +ALL AMERICA’S CHILDREN DESERVE BETTER. + +We've become a nation where our ki… https://t.co/5kUGvIg3Um" +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: Right now, the president can order the firing of a special counsel on a whim. That clearly shouldn’t be allowed to happen—es…" +05/17/2018,Politicians,@CoryBooker,RT @SenBooker: Honored to speak to @KeanUniversity graduates today. Congratulations to #Kean2018! https://t.co/HByPf5coi0 +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: In America, this should not be the case – no American should be economically forgotten. This is why the fight for economic j…" +05/17/2018,Politicians,@CoryBooker,RT @CatherineForNV: My friend @CoryBooker is right. This is an important message for democrats to hear. https://t.co/Ikip2I6Mov +05/17/2018,Politicians,@CoryBooker,RT @CoryBooker: In honor of National Women's Health Week I'm introducing a resolution to recognize the deep importance of supporting women'… +05/17/2018,Politicians,@CoryBooker,RT @MelissaRyan: Greatly appreciate @CoryBooker laying out just how vile Cambridge Analytica's tactics (not to mention the clients who used… +05/17/2018,Politicians,@CoryBooker,RT @CoryBooker: Great news – the Senate just voted to save #NetNeutrality! But the battle is not over – now we need to put pressure on the… +05/17/2018,Politicians,@CoryBooker,RT @annabanana0626: This is a story of what one small act can do for a child. You can see in 2 of the photos in this thread that Henry is p… +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: I oppose the House Farm Bill, H.R. 2. This damaging bill would harm the most vulnerable Americans by reducing or eliminating…" +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: I urge all House members to vote YES on the Brat-Blumenauer Amendment No. 71 to H.R. 2, which would provide much-needed refo…" +05/17/2018,Politicians,@CoryBooker,"“It is certain, in any case, that ignorance, allied with power, is the most ferocious enemy justice can have.” + +James Baldwin" +05/17/2018,Politicians,@CoryBooker,RT @AmericaVotes: Progressives are working hard to #FlipEverything this fall to bring back the values Democrats fight for every day in stat… +05/17/2018,Politicians,@CoryBooker,@JessicaPost You are welcome. Thanks for the tweet. +05/17/2018,Politicians,@CoryBooker,"RT @JessicaPost: Democrats are 16 seats away from flipping 8 state legislative chambers around the country. This November is HUGE. + +I love…" +05/16/2018,Politicians,@CoryBooker,Excited to be a part of #HorizonsGivingDay! Please support our NJ programs by visiting https://t.co/jWqYyPhEoj and… https://t.co/eBMimyad4g +05/16/2018,Politicians,@CoryBooker,RT @Alyssa_Milano: Democrats are working hard to #FlipEverything this fall in order to bring back the values Democrats fight for every day… +05/16/2018,Politicians,@CoryBooker,@North2North @Alyssa_Milano @TheDLCC And you are probably a very good and honorable person. I hope that we both can… https://t.co/DjtceO4ccM +05/16/2018,Politicians,@CoryBooker,"RT @TheDLCC: Of 99 state legislative chambers, Republicans control 66 of them. The stakes in this year’s election couldn’t be higher for De…" +05/16/2018,Politicians,@CoryBooker,Great news – the Senate just voted to save #NetNeutrality! But the battle is not over – now we need to put pressure… https://t.co/Vk5K5up2XF +05/16/2018,Politicians,@CoryBooker,In honor of National Women's Health Week I'm introducing a resolution to recognize the deep importance of supportin… https://t.co/g5p7VknaDp +05/16/2018,Politicians,@CoryBooker,Today is the day. The vote to save #NetNeutrality is finally happening in the Senate – and it's a close one. Call y… https://t.co/PfkroApKR0 +05/16/2018,Politicians,@CoryBooker,"RT @ScottHech: Daily reminder of the #PowerofProsecutors. They had (still have) the power to decide whether to charge, whether to charge a…" +05/16/2018,Politicians,@CoryBooker,"RT @ScottHech: Powerful photo of one of my favorite judges-Judge Simpson-consoling Mr. Bunn. ""I am more than emotional about this day,"" sai…" +05/16/2018,Politicians,@CoryBooker,RT @ScottHech: He was 14 when he was falsely arrested & prosecuted. 14. Years. Old. His trial lasted a single day. He spent 17 innocent yea… +05/16/2018,Politicians,@CoryBooker,RT @unionfreepress: RT SenBooker RT TIDAL: .CoryBooker calls up his mother for a very special #MothersDay-themed episode of #LiftEveryVoice… +05/16/2018,Politicians,@CoryBooker,"RT @Lyncherator: What do chicken pox and oatmeal baths have to do with @CoryBooker's commitment to paid family leave? + +Find out on the late…" +05/16/2018,Politicians,@CoryBooker,RT @SenDougJones: Read my full statement here on my decision not to support Gina Haspel’s confirmation as CIA Director: https://t.co/cdAFY8… +05/16/2018,Politicians,@CoryBooker,Wishing a blessed #Ramadan to all who observe! #RamadanKareem +05/16/2018,Politicians,@CoryBooker,RT @TinaSmithMN: Trump is making lifetime appointments to federal courts with judges like Michael Brennan who wouldn't admit racial bias ex… +05/16/2018,Politicians,@CoryBooker,RT @SenBooker: The threat of President Trump ordering the firing of Special Counsel Mueller and triggering a constitutional crisis is growi… +05/16/2018,Politicians,@CoryBooker,"RT @TIDAL: .@CoryBooker calls up his mother for a very special #MothersDay-themed episode of #LiftEveryVoice. + +Listen as they talk about e…" +05/16/2018,Politicians,@CoryBooker,RT @NBCDI: Thank you @PBS for partnering with @NBCDI during National Black Child Development Week #NBCDW. Please watch and share a powerful… +05/16/2018,Politicians,@CoryBooker,RT @rashadrobinson: This is big...Thank you @CoryBooker for pushing @facebook to use its data as a source for good by creating a public dat… +05/16/2018,Politicians,@CoryBooker,"RT @RepRoKhanna: Why we need @SenBooker's #MarijuanaJusticeAct: in NYC, Hispanic and black people are arrested at 5 and 8 times, respective…" +05/15/2018,Politicians,@CoryBooker,"This is outrageous and unacceptable! + +No one, especially not our government with our tax dollars, should Torture a… https://t.co/OIC5YgpNNn" +05/14/2018,Politicians,@CoryBooker,"So proud of my old friend and now head of the Ohio Democratic Party, David Pepper. + +As an author he is killing it.… https://t.co/ScN52fwr6l" +05/14/2018,Politicians,@CoryBooker,"RT @fightfor15: A MUST SEE: ""We have to cry loud until hearts are changed. We have to cry loud until workers are paid what they deserve. It…" +05/14/2018,Politicians,@CoryBooker,RT @liztheo: Join us! #PoorPeoplesCampagin Find an action near you: https://t.co/5tIAy6w5LO https://t.co/PmrZmIPiQC +05/14/2018,Politicians,@CoryBooker,"RT @UniteThePoor: Somebody's hurting our people and it's gone on far too long, and we don't be silent anymore! The #PoorPeoplesCampaign's 4…" +05/14/2018,Politicians,@CoryBooker,@TeaClark3 Love you too. Darkness can't drive out darkness. +05/14/2018,Politicians,@CoryBooker,@meggsss1221 Thank you for your kind and encouraging words. +05/14/2018,Politicians,@CoryBooker,@jeffstabley @vegan Yes +05/14/2018,Politicians,@CoryBooker,@ABonnieMarie Yes +05/14/2018,Politicians,@CoryBooker,"@takingshape Ha, we were probably out there together then." +05/14/2018,Politicians,@CoryBooker,"@WindaWester @artjr1971 Ahhhhh, I see what you did there!" +05/14/2018,Politicians,@CoryBooker,@mrasg1 I am just now seeing your question - from severely limiting chemical testing on animals to protecting endan… https://t.co/7Cnjnk96op +05/14/2018,Politicians,@CoryBooker,"Remember that the biggest thing you could do today is a small act of kindness, decency or love extended to another." +05/14/2018,Politicians,@CoryBooker,RT @SenGillibrand: It has been 96 days since the House unanimously passed a bill to address sexual harassment in Congress. The Senate still… +05/14/2018,Politicians,@CoryBooker,"RT @mic: It's a holiday for all mothers — even those who can't afford bail. + +https://t.co/O4PvqDaN4D" +05/13/2018,Politicians,@CoryBooker,Driving in Jersey today I saw something I never saw before: A Vegan Vehicle. #Vegan #VeganCar https://t.co/4biMnL9JRq +05/13/2018,Politicians,@CoryBooker,"No, but I can tell you where to get an awesome vegan cheese steak. Try @HipCityVeg - it is amazing. + +Either way, e… https://t.co/uvkdShpfiM" +05/13/2018,Politicians,@CoryBooker,"RT @Lyncherator: This was one of my favorite excerpts from @CoryBooker's moving conversation with his mom for #MothersDay + +Here's to being…" +05/13/2018,Politicians,@CoryBooker,RT @Menendez4NJ: Retweet if you agree with @CoryBooker and @PhilMurphyNJ - Bob Menendez is NJ's champion and should be reelected this Novem… +05/13/2018,Politicians,@CoryBooker,@BeverlyBednarc1 Thank you! +05/13/2018,Politicians,@CoryBooker,@TheDonDrew Yes and it was awesome. +05/13/2018,Politicians,@CoryBooker,@andlav Thank you! +05/13/2018,Politicians,@CoryBooker,@lilmizzcbw Thank you! +05/13/2018,Politicians,@CoryBooker,Thank you! https://t.co/lmOs0kHjNH +06/29/2018,Politicians,@SenSherrodBrown,The expansion of the Women’s Recovery Center in Cleveland is just a small step toward ensuring Ohioans have the res… https://t.co/GECzVdNFrf +06/29/2018,Politicians,@SenSherrodBrown,"What’s worse is that the Federal Reserve wants to make life even easier for the big banks, by removing a key fundin… https://t.co/tZ04imCORB" +06/29/2018,Politicians,@SenSherrodBrown,"Instead of payouts to executives and wealthy shareholders, big banks should be reinvesting profits into workers, lo… https://t.co/SQAVdcKCLs" +06/29/2018,Politicians,@SenSherrodBrown,"Between the partisan tax bill, the #DoddFrankRollback bill, and the Administration constantly checking items off of… https://t.co/CKZu3v5Nvm" +06/29/2018,Politicians,@SenSherrodBrown,"This past month, we joined together to recommit ourselves to ensuring all Americans, regardless of who they love, h… https://t.co/iW67Qrzb0D" +06/29/2018,Politicians,@SenSherrodBrown,"For the 2nd year in a row, the White House broke with tradition & failed to offer an official presidential proclama… https://t.co/bGyxHFNV6a" +06/29/2018,Politicians,@SenSherrodBrown,"Journalists ask tough questions, bring us stories that affect our day-to-day lives, & tell stories that might not o… https://t.co/2NfNBWwJxB" +06/28/2018,Politicians,@SenSherrodBrown,Our hearts break for all those affected by this horrific act of violence. Thank you to the police and first respond… https://t.co/gxAqjr31ia +06/27/2018,Politicians,@SenSherrodBrown,"An attack on public service unions is an attack on all unions, & an attack on unions is an attack on all workers. T… https://t.co/6tyzg2lD4g" +06/27/2018,Politicians,@SenSherrodBrown,"I’m already very troubled by SCOTUS' actions in just the last few weeks—taking away workers’ rights, voters’ rights… https://t.co/IaIB0pK1vZ" +06/27/2018,Politicians,@SenSherrodBrown,"The decision in #JanusvsAFSCME is shameful, and it’s a setback – but we're not going to stop organizing and fightin… https://t.co/XVTgWHa007" +06/27/2018,Politicians,@SenSherrodBrown,"Pope Francis said, “We don't get dignity from power nor money or culture. We get dignity from work.” And part of th… https://t.co/8sTcW9X8AV" +06/27/2018,Politicians,@SenSherrodBrown,"#JanusvsAFSCME is an attack on workers' freedom to advocate for themselves. Workers produce more than ever, but don… https://t.co/QtqGPSr9iN" +06/26/2018,Politicians,@SenSherrodBrown,Thanks to the families from each of Ohio’s children’s hospitals for coming in today to tell your stories and discus… https://t.co/5gjc3O9omJ +06/26/2018,Politicians,@SenSherrodBrown,WATCH LIVE: after @DispatchAlerts reported that just two out of the ten most common jobs in Ohio pay enough to affo… https://t.co/LniHzRpkx9 +06/26/2018,Politicians,@SenSherrodBrown,"We keep America safe by aggressively going after terrorism, not by turning our backs on children and families who a… https://t.co/Uj78WC6sGA" +06/26/2018,Politicians,@SenSherrodBrown,"It’s no secret that Ohio is home to all kinds of innovation and excellence. On this day in 1974, the first Universa… https://t.co/4Z36B8SG9E" +06/25/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod’s speaking out about GM’s decision to build the Chevy Blazer in Mexico – a move that was report… https://t.co/oryzzgl8iV +06/24/2018,Politicians,@SenSherrodBrown,We are so grateful to all Ohio officers who put themselves in harm’s way protecting our communities every day. -SB +06/24/2018,Politicians,@SenSherrodBrown,"Our hearts go out to the officer’s family, fellow officers and the entire Mentor community. We send our support to… https://t.co/NgAnp0MLla" +06/23/2018,Politicians,@SenSherrodBrown,"GM should reverse this irresponsible decision, and use its tax windfall to invest in American workers. -SB" +06/23/2018,Politicians,@SenSherrodBrown,GM’s timing on this outrageous decision could not have been worse. On the same day GM is laying off workers in Youn… https://t.co/xrn2eIOArr +06/22/2018,Politicians,@SenSherrodBrown,In Columbus today talking about the need to protect thousands of civilian defense jobs in Central OH. These workers… https://t.co/Un8SASoq9i +06/21/2018,Politicians,@SenSherrodBrown,"Excited to announce that the 2018 Propel Ohio Leadership Summit for undergraduate students will be on Friday, Octob… https://t.co/czwDxTHvi7" +06/21/2018,Politicians,@SenSherrodBrown,Hoping for a quick recovery of the wounded officer. Thinking of everyone involved and grateful to Ohio officers who… https://t.co/FDK0vvUHcT +06/20/2018,Politicians,@SenSherrodBrown,Today was the 11th annual Ohio College Presidents Conference hosted by our office. Thank you to the 35 college pres… https://t.co/StvsKjBAyk +06/20/2018,Politicians,@SenSherrodBrown,RT @NGattozzi: .@PresBWarren joins with Ohio university president's for the 11th Ohio College Presidents' Conference hosted by @SenSherrodB… +06/20/2018,Politicians,@SenSherrodBrown,"RT @OHIOPrezOffice: I am attending the Ohio College Presidents Conference hosted by @SenSherrodBrown in Washington, D.C. today. Lots of opp…" +06/20/2018,Politicians,@SenSherrodBrown,RT @CSU_President: Great to be at the Ohio College Presidents Conference with @SenSherrodBrown and 50 colleagues to talk about innovation a… +06/20/2018,Politicians,@SenSherrodBrown,RT @OCCPresident: @SenSherrodBrown kicking off the Ohio College Presidents conference in DC. Great dialogue and information sharing. https:… +06/20/2018,Politicians,@SenSherrodBrown,"RT @MJuhas: TY ⁦@SenSherrodBrown⁩ 4 hosting the Ohio College Presidents Conference! Great panel on Innovation, Incubators & Entrepreneurshi…" +06/20/2018,Politicians,@SenSherrodBrown,RT @sean_decatur: With @SenSherrodBrown at the 2018 College Presidents Conference. #OhioSchoolsDC https://t.co/6jdYfOxs5x +06/20/2018,Politicians,@SenSherrodBrown,RT @clarkstatepres: We are here at @SenSherrodBrown Annual meeting for #Ohio presidents! https://t.co/383RN1gRWi +06/20/2018,Politicians,@SenSherrodBrown,"RT @WCPresJimR: Pleased to be part of Senator Brown’s Ohio College President’s Conference in Washington, DC today. Wonderful program and p…" +06/20/2018,Politicians,@SenSherrodBrown,RT @ctambar: Thanks Senator Sherrod Brown for asking Oberlin to be on the host committee for your 11th annual Ohio College Presidents’ Conf… +06/20/2018,Politicians,@SenSherrodBrown,"RT @HJamesWilliams: Ohio colleges and universities are meeting, here in Washington, DC, to discuss higher education issues and opportunitie…" +06/20/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod speaks after President Trump reverses course and ends the family separation policy. https://t.co/x9OV4FgJOm +06/20/2018,Politicians,@SenSherrodBrown,https://t.co/x9OV4FgJOm +06/20/2018,Politicians,@SenSherrodBrown,"And in our meeting this afternoon, @DeptVetAffairs Secretary-nominee Robert Wilkie must commit to working toward gr… https://t.co/9D9BYXbqt0" +06/20/2018,Politicians,@SenSherrodBrown,"Joining with @SenatorTester, @SenDougJones, @SenGillibrand & @SenBillNelson to file an amendment that would require… https://t.co/UApOPpXigM" +06/20/2018,Politicians,@SenSherrodBrown,"This week we learned @DeptVetAffairs has secret data about VA nursing home facilities – what’s worse, this data sho… https://t.co/yhwvg5SVC2" +06/20/2018,Politicians,@SenSherrodBrown,"I am imploring @POTUS, not as a Senator, but as an American, as a father and grandfather – please take action to pr… https://t.co/zt6dJvaX5q" +06/20/2018,Politicians,@SenSherrodBrown,"Dr. Colleen Kraft, current President of @AmerAcadPeds and past Medical Director of the Health Network by Cincinnati… https://t.co/ZB8eYOkLaG" +06/20/2018,Politicians,@SenSherrodBrown,"I’m demanding answers from @SecNielsen and @SecAzar about what they are doing to care for the mental, physical and… https://t.co/YUhIdivoQo" +06/20/2018,Politicians,@SenSherrodBrown,"Further, their reporting warns that in at least one facility housing these children, staff are under the impression… https://t.co/38HM04RXxb" +06/20/2018,Politicians,@SenSherrodBrown,.@kristinegWP and @NPRJoel have reported that the trauma experienced by children forcibly taken from their parents… https://t.co/oiZ4AxsXIO +06/20/2018,Politicians,@SenSherrodBrown,Introducing a bill with @SenAmyKlobuchar today to restore the rights of voters and uphold the integrity of our elec… https://t.co/BGXsglQZrF +06/20/2018,Politicians,@SenSherrodBrown,Last week’s decision in the Ohio voter purge Supreme Court case was a step backward for our democracy – we need to… https://t.co/NLBXwjQt5u +06/19/2018,Politicians,@SenSherrodBrown,".@BetsyDeVosED has continued to chip away at protections for student loan borrowers, and she’s made it a lot harder… https://t.co/b8WQo0zQEq" +06/19/2018,Politicians,@SenSherrodBrown,Demanding answers today with @SenWarren about exactly what role Kraninger has played in developing and implementing… https://t.co/YBESshpY8t +06/19/2018,Politicians,@SenSherrodBrown,"At @OMBPress, Kathy Kraninger - the Administration's nominee to head the @CFPB – oversees policies implemented by… https://t.co/XykExjwM8K" +06/18/2018,Politicians,@SenSherrodBrown,Tearing apart families is wrong and will not fix our broken immigration system. President Trump can immediately rev… https://t.co/z479Q34dCg +06/18/2018,Politicians,@SenSherrodBrown,"Joined veterans in Cleveland to talk about the All-American Flag Act, which would require the fed gov't to only buy… https://t.co/4nBDQiK9Xq" +06/18/2018,Politicians,@SenSherrodBrown,OCC Comptroller Joseph Otting – the man who’s charged with overseeing our country’s large banks – said he can’t say… https://t.co/ZFPG5w5xAc +06/18/2018,Politicians,@SenSherrodBrown,Working families need a @CFPB Director who will fight for them. For months I have called for a CFPB Director with a… https://t.co/EedmKXXbp1 +06/17/2018,Politicians,@SenSherrodBrown,Wishing Ohio dads a happy #FathersDay – as well as the father figures who help raise and teach our children. We als… https://t.co/Br3YCEziNH +06/17/2018,Politicians,@SenSherrodBrown,Thank you to everyone following this important legislation. The online list of cosponsors should be updated soon. -SB +06/17/2018,Politicians,@SenSherrodBrown,We demand all children be treated with compassion. Tearing families apart is wrong and will not fix our broken immi… https://t.co/oJ669RtiyZ +06/15/2018,Politicians,@SenSherrodBrown,ICYMI: Otting must open his eyes to this reality in order to do his job. #OCCnoColor https://t.co/DsUw90yYmB +06/15/2018,Politicians,@SenSherrodBrown,Here are some additional steps we can take → https://t.co/7yDkFpa0ao https://t.co/dNhTZoMMRH +06/15/2018,Politicians,@SenSherrodBrown,"We have more work to do to address the root of China’s cheating and reset our trade imbalance, and I will continue… https://t.co/RZi5ulYKqd" +06/15/2018,Politicians,@SenSherrodBrown,"China’s cheating has shuttered steel plants across our state, put Ohioans out of work, and distorted global markets… https://t.co/j6D5zeRw5E" +06/14/2018,Politicians,@SenSherrodBrown,Watch Sherrod question Otting at this morning’s @SenateBanking hearing. https://t.co/tKHRcnw9V1 +06/14/2018,Politicians,@SenSherrodBrown,"And @PewResearch found that in 2015, ""27.4% of black applicants and 19.2% of Hispanic applicants were denied mortga… https://t.co/JWlFp5N9Ki" +06/14/2018,Politicians,@SenSherrodBrown,"In the banking sector Otting oversees? +The Center for Investigative Reporting analyzed tens of millions of mortgag… https://t.co/iuzSuD9Fld" +06/14/2018,Politicians,@SenSherrodBrown,@PewResearch: “About half of Hispanics in the U.S. (52%) say they have experienced discrimination or have been trea… https://t.co/Fkl4n8V76U +06/14/2018,Politicians,@SenSherrodBrown,@NPR: “Almost all of the black people who responded — 92 percent — said they felt that discrimination against Afric… https://t.co/0dZGKQYLG2 +06/14/2018,Politicians,@SenSherrodBrown,@PewResearch: “About four-in-ten working women (42%) in the United States say they have faced discrimination on the… https://t.co/GWtZv2uABj +06/14/2018,Politicians,@SenSherrodBrown,OCC Comptroller Joseph Otting – the man who’s charged with overseeing our country’s large banks – said he can’t say… https://t.co/TDTGNCFaZX +06/14/2018,Politicians,@SenSherrodBrown,"What’s more patriotic than the American flag? +Supporting American jobs by buying American-made products. + +This… https://t.co/swuZBeh8Mq" +06/13/2018,Politicians,@SenSherrodBrown,We already knew that Readler has tried to strip Ohioans of their rights – and now he’s putting politics above legal… https://t.co/1LKLCY4haJ +06/13/2018,Politicians,@SenSherrodBrown,"Readler's attack on patients with pre-existing conditions – which 3 other career lawyers refused to make – ""could h… https://t.co/yHpSW59XaP" +06/13/2018,Politicians,@SenSherrodBrown,Nor did the significance of the 3 lawyers’ refusal to sign on to the Administration’s argument.… https://t.co/BV5wogyOtb +06/13/2018,Politicians,@SenSherrodBrown,This serendipity didn't go unnoticed. https://t.co/kSdrp9vL57 https://t.co/fae35MoaX1 +06/13/2018,Politicians,@SenSherrodBrown,"Last week, 3 career @TheJusticeDept attorneys withdrew from a legal brief challenging protections for pre-existing… https://t.co/pVKWmZeqRi" +06/13/2018,Politicians,@SenSherrodBrown,"Chatting with @SenateMajLdr about how great this year's #FarmBill is, in terms we both understand: it's both a gran… https://t.co/lqF2RnOX6r" +06/13/2018,Politicians,@SenSherrodBrown,"""The risk to businesses include employers not only in declining plans but also in healthy plans & the job risks imp… https://t.co/3ZeDyDprQM" +06/13/2018,Politicians,@SenSherrodBrown,"""My message today is simple: this committee must succeed in its mission to solve the multiemployer funding crisis.""… https://t.co/uGGnqXywKj" +06/13/2018,Politicians,@SenSherrodBrown,WATCH NOW: Businesses are urging the Pensions Committee to find a solution to the pensions crisis. https://t.co/gQjdrYN77N +06/13/2018,Politicians,@SenSherrodBrown,BREAKING NEWS: @USChamber new report “The Multiemployer Pension Plan Crisis: Businesses and Jobs at Risk” https://t.co/vgdm1NpUDt +06/13/2018,Politicians,@SenSherrodBrown,RT @USChamber: Op-ed in @thehill by @USChamberEPD: The multi-employer pension crisis https://t.co/Xvuip2jIbc +06/13/2018,Politicians,@SenSherrodBrown,WATCH LIVE: @senorrinhatch and Sherrod hold a hearing of the Pensions Committee to learn more about how the pension… https://t.co/50Rgm7eLrH +06/12/2018,Politicians,@SenSherrodBrown,"Hear more from Ohio @CWAUnion workers about what it means to them to work in a call center, and the pride that they… https://t.co/s02NjVbcGH" +06/12/2018,Politicians,@SenSherrodBrown,"Great to see @CWAUnion workers today, and thank them for their continued advocacy. We join them in fighting for a t… https://t.co/hBHbDfVxgK" +06/12/2018,Politicians,@SenSherrodBrown,"But we’ve heard empty promises from the North Koreans before, so we must continue to hold them accountable with tou… https://t.co/K8QhQD3D5n" +06/12/2018,Politicians,@SenSherrodBrown,"We all want these negotiations to succeed, and I’m glad the President had a positive meeting with Kim Jong Un. https://t.co/QQCnmw6qxv" +06/11/2018,Politicians,@SenSherrodBrown,"“Sherrod Brown wants you to know he has your back.” Damn right – and that’s regardless of what you look like, where… https://t.co/kBKABJ9ELl" +06/11/2018,Politicians,@SenSherrodBrown,"We need to fight the addiction crisis at every level – prevention, treatment, and recovery. And that must include m… https://t.co/Xy9j8Ud8tc" +06/11/2018,Politicians,@SenSherrodBrown,This ruling further shows why we can’t afford to pack our federal courts with judges who have a track record of hos… https://t.co/iOprpqHsYM +06/11/2018,Politicians,@SenSherrodBrown,"Ohio should be working to make voting easier, not harder. Instead, today’s decision empowers Ohio to further strip… https://t.co/gCrjYcmiXC" +06/11/2018,Politicians,@SenSherrodBrown,"It also includes our Local FARMS Act – which would help farmers sell their products directly to consumers, create r… https://t.co/5niSJTsTQU" +06/11/2018,Politicians,@SenSherrodBrown,"The bipartisan Senate Farm Bill is good for farmers, good for families, good for taxpayers, good for jobs, and good… https://t.co/U7ghMTaJgT" +06/09/2018,Politicians,@SenSherrodBrown,Congrats to the @warriors on their victory – and to the @cavs & @KingJames on another great season. While I maintai… https://t.co/nqGq6DI0eT +06/08/2018,Politicians,@SenSherrodBrown,".@senrobportman – despite a rigged Game 1, I’m staying optimistic about the series. Nobody does a comeback like Cle… https://t.co/Jk9DYoo7p4" +06/08/2018,Politicians,@SenSherrodBrown,"The Toledo area has a long and storied history as a center for the American glass industry, and First Solar's inves… https://t.co/KZhSz0Sa0W" +06/08/2018,Politicians,@SenSherrodBrown,Congratulations to First Solar as they break ground on their newest Wood County plant – set to be one of the larges… https://t.co/91fkgtH2JM +06/08/2018,Politicians,@SenSherrodBrown,It’s simple: women should be paid the same as men for the same work. We need to strengthen the #EqualPayAct by pass… https://t.co/AurHy8Natk +06/08/2018,Politicians,@SenSherrodBrown,This Sunday marks the 55th anniversary of the #EqualPayAct. And yet too many women still aren't earning the same am… https://t.co/uFHSiNO4AN +06/08/2018,Politicians,@SenSherrodBrown,Learn more about Readler and Murphy’s records – and their work trying to strip Ohioans of their rights → https://t.co/1HtRmySTVw +06/08/2018,Politicians,@SenSherrodBrown,I cannot support nominees who have actively worked to strip Ohioans of their rights. Special interests already have… https://t.co/hODh5o32Ko +06/08/2018,Politicians,@SenSherrodBrown,"I believe Ohio kids have the right to quality education, Ohio citizens have the right to vote, working families hav… https://t.co/jOiMZQzklh" +06/07/2018,Politicians,@SenSherrodBrown,"But this alone is not enough - just as we protect our national security against threats from foreign investments, w… https://t.co/TN8bsJPrw9" +06/07/2018,Politicians,@SenSherrodBrown,It's great news that this year's #NDAA includes our bipartisan measure to strengthen the tools the U.S. uses to blo… https://t.co/D6mx8xW1Iq +06/06/2018,Politicians,@SenSherrodBrown,Mulvaney has proven once again he would rather cozy up with payday lenders and industry insiders than listen to con… https://t.co/gk1dVWcogG +06/06/2018,Politicians,@SenSherrodBrown,Glad to have Tina sitting at the table – and already grateful for her work on tough problems like the pension crisi… https://t.co/1Vk2zupEiC +06/06/2018,Politicians,@SenSherrodBrown,"Congratulations to Ohio’s @BorenAwards scholars, who will soon begin their studies in countries all over the world.… https://t.co/jnmGxdIbMx" +06/05/2018,Politicians,@SenSherrodBrown,"Last week, Boeing flight technicians in SC voted to join a union for the first time, giving them a voice in their w… https://t.co/OSilyL8akK" +06/04/2018,Politicians,@SenSherrodBrown,"So what does the Volcker Rule do? It stops banks from taking big risks with your money. Those complicated, risky be… https://t.co/ezgurIrS4H" +06/04/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod's on the floor blasting the latest handout to Wall Street: a proposal gutting one of the key co… https://t.co/ef8hip9XGt +06/04/2018,Politicians,@SenSherrodBrown,"All Americans deserve to be protected from discrimination – regardless of where they live, what they look like, or… https://t.co/uBitWXPApg" +06/01/2018,Politicians,@SenSherrodBrown,"Standing with @SenBooker, @maziehirono, @SenMarkey, @SenJeffMerkley @SenSanders, @SenBrianSchatz, @SenatorTomUdall,… https://t.co/ZmGueWJMmF" +06/01/2018,Politicians,@SenSherrodBrown,"Following our success in securing new screening devices for federal law enforcement agents earlier this year, we ne… https://t.co/vc5cCDGAtP" +06/01/2018,Politicians,@SenSherrodBrown,"I urge Boeing to respect the decision its workers have made, and come to the negotiating table in good faith. -SB" +06/01/2018,Politicians,@SenSherrodBrown,"Tonight’s victory is a win not just for the Boeing technicians, but for all workers trying to advocate for themselv… https://t.co/NXCjBfV7Zn" +06/01/2018,Politicians,@SenSherrodBrown,I congratulate the Boeing flight readiness technicians for voting to join a union. https://t.co/q0InEhqYhq +06/01/2018,Politicians,@SenSherrodBrown,Thanks to students in CLE today who joined us to discuss gun violence prevention. We can’t say we're doing what it… https://t.co/Z7kQ7QmAKc +05/31/2018,Politicians,@SenSherrodBrown,Hey @SenFeinstein and @SenKamalaHarris – let’s make the #NBAFinals a little more interesting. When the @cavs do… https://t.co/0OAgd1Zx5K +05/31/2018,Politicians,@SenSherrodBrown,RT @ScottWartman: Democratic and Republican senators agree: Keep the Amtrak ticket window open at Union Terminal https://t.co/TTXg3Nu8yJ @S… +05/30/2018,Politicians,@SenSherrodBrown,"To effectively fight the opioid epidemic, we need to give law enforcement the tools they need to detect and identif… https://t.co/Nygu1TfN8O" +05/30/2018,Politicians,@SenSherrodBrown,"The U.S. lost 200,000 call center jobs between 2006 and 2014 - and make no mistake, these are good jobs that we wan… https://t.co/S8FfA35YcF" +05/29/2018,Politicians,@SenSherrodBrown,It’s a disgrace that we have allowed the transportation system our parents and grandparents left us to fall into di… https://t.co/8gXh5Cy2qW +05/29/2018,Politicians,@SenSherrodBrown,It’s no secret that Brent Spence is in bad shape – but Cincinnati’s Western Hill Viaduct is in disrepair too. In fa… https://t.co/Lwx65G1cjo +05/29/2018,Politicians,@SenSherrodBrown,Good luck to Ohio's P-R-E-C-O-C-I-O-U-S competitors. #SpellingBee https://t.co/3p778NVzd0 +05/28/2018,Politicians,@SenSherrodBrown,"On #MemorialDay, we remember all Ohioans who made the ultimate sacrifice for our country. It’s our duty to honor th… https://t.co/t0i27FRVPG" +05/27/2018,Politicians,@SenSherrodBrown,"In @KingJames’ words – “In Northeast Ohio, nothing is given. Everything is earned.” Cleveland’s ready for #Game7. #WhateverItTakes" +05/27/2018,Politicians,@SenSherrodBrown,As they say – it ain’t over till it’s over. What a comeback for the @cavs last night. #WhateverItTakes +05/26/2018,Politicians,@SenSherrodBrown,An alternative headline: “Caps Fans Encounter Cleveland Hospitality” https://t.co/8E94WijV4O +05/25/2018,Politicians,@SenSherrodBrown,This proposed rule isn’t about protecting women; it’s about scoring political points at the expense of women's heal… https://t.co/HQkstvnBZp +05/25/2018,Politicians,@SenSherrodBrown,"By placing the federal government in between a woman and her doctor, the Administration's misguided and rushed prop… https://t.co/6lAipekRAl" +05/24/2018,Politicians,@SenSherrodBrown,It's always a pleasure to see the inimitable @sr_simone. Her advocacy continues to change our country for the bette… https://t.co/7alBgIgZ0A +05/24/2018,Politicians,@SenSherrodBrown,Rooting for @CWRU Softball today in their first game of the NCAA DIII Championships! https://t.co/EX7pR2BplR +05/24/2018,Politicians,@SenSherrodBrown,"We have more to do to make sure that every worker feels safe, supported, and heard in their workplace – regardless of where that is." +05/24/2018,Politicians,@SenSherrodBrown,"Just now, the Senate passed bipartisan legislation that will improve how cases of sexual harassment and workplace d… https://t.co/3cp5cFKwBZ" +05/24/2018,Politicians,@SenSherrodBrown,"Last week, @Pontifex called our current financial system “an inadequate framework that exclude[s] the common good.”… https://t.co/RNUwU9RzqG" +05/24/2018,Politicians,@SenSherrodBrown,#DoddFrankRollBack – which just got signed into law – increases the likelihood of a big bank failure and a financia… https://t.co/S75ILU22f4 +05/24/2018,Politicians,@SenSherrodBrown,Wages have been largely flat. 44 percent of Americans adults can’t afford an emergency expense of $400. One in four… https://t.co/euZP2rJlbU +05/24/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: As the #DoddFrankRollback bill gets signed into law, Sherrod quotes @Pontifex on the floor: our current… https://t.co/v0VkuwPJ2U" +05/23/2018,Politicians,@SenSherrodBrown,Ohioans still deserve answers from Discovery Tours and that’s why I’ve called federal authorities to investigate. -… https://t.co/msH3Xli6eA +05/23/2018,Politicians,@SenSherrodBrown,I was proud to welcome Northwood Middle School’s 8th graders and Van Cleve Elementary’s 6th graders to our nation’s… https://t.co/IKzMHdFFhZ +05/23/2018,Politicians,@SenSherrodBrown,"Yesterday, Congress once again sided with special interests and Wall Street instead of taxpayers, homeowners, stude… https://t.co/AeiCdcnnuq" +05/23/2018,Politicians,@SenSherrodBrown,"""Congress sent a bill to President Donald Trump’s desk Tuesday intended to roll back regulations adopted after the… https://t.co/F0OavXqsxL" +05/23/2018,Politicians,@SenSherrodBrown,.@steelworkers are here today to tell their stories – about how Chinese cheating has shuttered steel mills & devast… https://t.co/3a7E7IKggC +05/23/2018,Politicians,@SenSherrodBrown,"Army Pfc. Michael J. Metcalf made the ultimate sacrifice for our country, and Ohio remains grateful for his service. https://t.co/1O43VkrJr0" +05/22/2018,Politicians,@SenSherrodBrown,"Workers are producing more and working harder than ever before – they are the ones who grow our economy. + +This rul… https://t.co/4UVIbgW5J5" +05/22/2018,Politicians,@SenSherrodBrown,Workers deserve to have their day in court when they've been wronged. This ruling means they'll have to settle thei… https://t.co/RjiGC0kjVu +05/22/2018,Politicians,@SenSherrodBrown,"Yesterday, the Supreme Court chose big companies over workers, and stripped workers of their power to sue the emplo… https://t.co/O0LnLSt2Ul" +05/22/2018,Politicians,@SenSherrodBrown,HAPPENING NOW: Sherrod's talking to @thehill at the @Newseum this morning about opioid addiction prevention.… https://t.co/bRThOXq0JV +05/22/2018,Politicians,@SenSherrodBrown,Thank you to the workers and retirees who joined us in Columbus this morning. We won’t stop speaking out about the… https://t.co/tE6NV8FCml +05/21/2018,Politicians,@SenSherrodBrown,"They are counting on Congress to put partisan politics aside and work together, and I am committed to working with… https://t.co/HsF5TmLqhM" +05/21/2018,Politicians,@SenSherrodBrown,"Ohio farmers, families and communities depend on the #FarmBill to support agriculture jobs, feed hungry families an… https://t.co/mcDMItTO40" +05/21/2018,Politicians,@SenSherrodBrown,Banks and payday lenders already have armies of lobbyists on their sides – they don’t need one more. -SB https://t.co/XycF7XhQ3Y +05/21/2018,Politicians,@SenSherrodBrown,"Our workers are more than a line item in a budget, a cost to be minimized – rather, they are our greatest resource.… https://t.co/RxgNOi2vri" +05/21/2018,Politicians,@SenSherrodBrown,"""What is morally unacceptable is not simply to profit, but rather to avail oneself of an inequality for one’s own a… https://t.co/4v55zv34IB" +05/21/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: Sherrod’s with Ohio retirees and workers in Columbus this morning, talking about protecting the retirem… https://t.co/USJYYIBJc9" +05/20/2018,Politicians,@SenSherrodBrown,"In Cincinnati today, calling on the administration to keep its commitment to this city, and make sure the NIOSH pro… https://t.co/OpK2zO2MPd" +05/20/2018,Politicians,@SenSherrodBrown,“A big overarching problem in America isn’t that poor people aren’t working hard enough; it’s that their wages aren… https://t.co/CEBDaxXsoD +05/18/2018,Politicians,@SenSherrodBrown,Horrified by another senseless act of violence. Ohio stands with Santa Fe and we are grateful to all first responde… https://t.co/d6pg9gdbP5 +05/17/2018,Politicians,@SenSherrodBrown,"WATCH: Pensions expert confirms the cost of doing nothing is unimaginable for retirees, workers, businesses, and ta… https://t.co/dGmfrgQmUW" +05/17/2018,Politicians,@SenSherrodBrown,"Thanks to Maj General Cooley, the Air Force Research Lab Commander at Wright-Patterson Air Force Base, for coming i… https://t.co/aJSqhtWdRz" +05/17/2018,Politicians,@SenSherrodBrown,"WATCH: during Police Week, Sherrod thanked Ohio’s law enforcement officers on the Senate floor, and honored those w… https://t.co/gVqYUGV2D6" +05/17/2018,Politicians,@SenSherrodBrown,"Like many Ohio businesses, the Internet is crucial to realtors. Glad that so many Ohio members of @nardotrealtor we… https://t.co/m41xC9aqYq" +05/17/2018,Politicians,@SenSherrodBrown,"Simply propping up the PBGC is not enough. We can’t take our hands off the wheel, close our eyes and allow this car… https://t.co/vRPI7Sq9Kz" +05/17/2018,Politicians,@SenSherrodBrown,"We have the opportunity to do just that – to keep those businesses open, to save those jobs, and to ensure workers… https://t.co/vAlB9nQghb" +05/17/2018,Politicians,@SenSherrodBrown,Ask anyone who’s ever totaled a car or dealt with flooding or fire in their homes – you’re sure glad you have insur… https://t.co/2AMECIKmvV +05/17/2018,Politicians,@SenSherrodBrown,"PBGC is the insurance company for these retirement plans. Like any insurance plan, PBGC doesn’t kick in until the d… https://t.co/PH7afH0NT2" +05/17/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: Sherrod and @senorrinhatch chair the third hearing of the Pensions Committee, focused on the crisis thr… https://t.co/a6FVqGluCX" +05/16/2018,Politicians,@SenSherrodBrown,Thank you to everyone who made their voices heard in this fight. And as this #NetNeutrality bill moves to the House… https://t.co/JqHWtlGc9i +05/16/2018,Politicians,@SenSherrodBrown,A victory in the Senate today for the thousands of Ohioans who depend on a free and open Internet. #NetNeutrality i… https://t.co/bL5OL17wrx +05/16/2018,Politicians,@SenSherrodBrown,"And today, Brandon Standley, President of the Ohio Association of Chiefs of Police, came in today for a discussion… https://t.co/l56hqDcRRP" +05/16/2018,Politicians,@SenSherrodBrown,"Yesterday, members of the Ohio Patrolmen’s Benevolent Association talked officer safety and healthcare, and saw a d… https://t.co/DJVDt1skye" +05/16/2018,Politicians,@SenSherrodBrown,"During #NationalPoliceWeek, we thank the law enforcement who've devoted their lives to keeping us safe – and hear f… https://t.co/Sb6tGTkVc9" +05/16/2018,Politicians,@SenSherrodBrown,RT @RepDaveJoyce: A member of my staff delivered House and Senate gallery passes to @SolonSchools Middle School students today for their up… +05/16/2018,Politicians,@SenSherrodBrown,"Today’s vote on #NetNeutrality is about whose side we’re on: corporate special interests, or the people we serve wh… https://t.co/6JA4ByIqLw" +05/15/2018,Politicians,@SenSherrodBrown,#Ramadan Mubarak to all those celebrating! +05/15/2018,Politicians,@SenSherrodBrown,#NetNeutrality is about making sure your access to information doesn’t depend on how much money you have. We must a… https://t.co/4r1xCb8iCQ +05/15/2018,Politicians,@SenSherrodBrown,The third bill is the Working Families Tax Relief Act. This would provide a stronger Earned Income Tax Credit and C… https://t.co/1sB7afd4D8 +05/15/2018,Politicians,@SenSherrodBrown,"Then there's the Corporate Freeloader Fee: if you pay your workers what their work is worth, you get a tax cut. But… https://t.co/3OCzSefVpD" +05/15/2018,Politicians,@SenSherrodBrown,"First, the Patriot Corporation Act: this bill would cut taxes for corporations that commit to staying in the US, to… https://t.co/xDp5qBuFTB" +05/15/2018,Politicians,@SenSherrodBrown,"At #CAPIdeas this morning, discussed some of our ideas for a tax bill that would have actually put more money back… https://t.co/asjjgVH7YV" +05/15/2018,Politicians,@SenSherrodBrown,"We trust schools to educate and prepare students, but ECOT, William Lager, and his companies have abused that trust… https://t.co/L9Qg0G7mx8" +05/15/2018,Politicians,@SenSherrodBrown,"""I think workers in my state are looking for somebody in elected office to talk about the dignity of work, to talk… https://t.co/1QBQ5rimfD" +05/15/2018,Politicians,@SenSherrodBrown,"""I think we need to talk about work differently. Some people on the coasts call my state the Rust Belt, and that di… https://t.co/2Gb3YmkllK" +05/15/2018,Politicians,@SenSherrodBrown,"RT @alexnazaryan: ""Are you on the side of Wall Street or are you fighting for the little guy?"" -@SenSherrodBrown at #capideas 2018." +05/15/2018,Politicians,@SenSherrodBrown,.@paulkrugman agrees with Sherrod - companies must look at workers as more than a cost to be minimized. The idea th… https://t.co/4VVlKLjKkD +05/15/2018,Politicians,@SenSherrodBrown,Sherrod kicks off the conversation by talking about his plan to make hard work pay off - he argues that Americans a… https://t.co/tSd5DPl9X7 +05/15/2018,Politicians,@SenSherrodBrown,HAPPENING SOON: Sherrod’s kicking off today’s #CAPIdeas Conference in a conversation with @neeratanden and… https://t.co/E9EypCQgDO +05/14/2018,Politicians,@SenSherrodBrown,"They don't make them tougher than Harry Reid. We're all rooting for you, Harry - give cancer hell. -SB" +05/14/2018,Politicians,@SenSherrodBrown,Helen and Jesse are just two of the hundreds of small business owners across Ohio who've depended on @Google and th… https://t.co/H8NFNohtsh +05/13/2018,Politicians,@SenSherrodBrown,Excited to once again watch the King and the @Cavs take care of business in the Eastern Conference Finals. Go Cavs! #WhateverItTakes +05/13/2018,Politicians,@SenSherrodBrown,"Today, we celebrate the moms across Ohio who work so hard to give their children the best possible life – and that… https://t.co/TYBAI2aPiz" +05/13/2018,Politicians,@SenSherrodBrown,We are keeping this brave Deputy in our thoughts. Thank you to all the first responders on the scene. https://t.co/4pPAHkpzg5 +05/12/2018,Politicians,@SenSherrodBrown,"Considering Mr. Mulvaney's comments on how he chooses who to meet with, we want to know who's on his schedule every… https://t.co/dXHiULqRBg" +05/11/2018,Politicians,@SenSherrodBrown,President Trump says he wants to lower drug costs. He could make good on his promises to lower prescription drug pr… https://t.co/HylEcucovi +05/11/2018,Politicians,@SenSherrodBrown,"As Ohioans increasingly learn, do business & communicate online, I’m glad to be partnering with @Google to help con… https://t.co/kYBpJLszdf" +05/11/2018,Politicians,@SenSherrodBrown,"Nurses want to provide the best possible care to their patients, & to do so safely. We must establish standards tha… https://t.co/aRt78yFaHS" +05/11/2018,Politicians,@SenSherrodBrown,"Every day, patients across Ohio count on nurses in their time of need - and during #nursesappreciationweek, we say… https://t.co/p4QOAVSHKL" +05/11/2018,Politicians,@SenSherrodBrown,Our bipartisan resolution designating this week as National #TeacherAppreciationWeek just passed the Senate. But th… https://t.co/sZ0Gi5dKsX +05/10/2018,Politicians,@SenSherrodBrown,"If President Trump wants to lower prescription drug prices, he can start by helping us pass the Improving Access to… https://t.co/BTH5GCLw8Z" +05/10/2018,Politicians,@SenSherrodBrown,"@TheJusticeDept and @FTC must determine whether Discovery Tours broke any laws, and ensure there are proper consequ… https://t.co/n5xH0Oo3Na" +05/10/2018,Politicians,@SenSherrodBrown,"Discovery Tours defrauded hundreds of Ohio students - not only will these kids miss long-awaited school trips, but… https://t.co/t6b3OiLTqQ" +07/01/2018,Politicians,@KamalaHarris,An economy that only works for those at the very top is an economy that is broken. Together we can build a country… https://t.co/RLKf5XOKSs +06/30/2018,Politicians,@KamalaHarris,"For generations, Social Security has been the difference for millions of American seniors between getting by and li… https://t.co/WrFEfK6pOe" +06/30/2018,Politicians,@KamalaHarris,We’ve already seen the President’s list of potential SCOTUS nominees — they are conservative ideologues who would p… https://t.co/sKjGeD1L8U +06/30/2018,Politicians,@KamalaHarris,@WaywardWinifred So great to meet a young activist! +06/30/2018,Politicians,@KamalaHarris,This Administration's solution to the humanitarian crisis they purposely created could mean indefinitely detaining… https://t.co/aLw45Jkpvs +06/30/2018,Politicians,@KamalaHarris,"RT @ajplus: ""When we have over 2,000 children that right now are not with their parents because we separated them ... When we know those ch…" +06/30/2018,Politicians,@KamalaHarris,We know we are better than this! #FamiliesBelongTogether https://t.co/JzHJ8SwMV5 +06/30/2018,Politicians,@KamalaHarris,"From 1882 to 1986, there have been 200 attempts that have failed to get Congress to pass federal anti-lynching legi… https://t.co/BJ7tS5Fm5Z" +06/30/2018,Politicians,@KamalaHarris,"As #Pride Month comes to an end, let us not forget — the struggle for LGBTQ equality is far from over. We must keep… https://t.co/E1g0S50Z1i" +06/30/2018,Politicians,@KamalaHarris,More and more toddlers are ending up alone in immigration court because of this Administration’s cruel policy of br… https://t.co/4YMOIq4mQq +06/30/2018,Politicians,@KamalaHarris,Women aren’t just marching — they’re running and fighting for our future. https://t.co/2zHSZsub7z +06/30/2018,Politicians,@KamalaHarris,"The fight over this Supreme Court vacancy is going to require each and every one of us talking with our friends, fa… https://t.co/oD6HsGBTyF" +06/29/2018,Politicians,@KamalaHarris,"In nearly every industry, Black women continue to face barriers, stereotypes and discrimination. As they continue t… https://t.co/s5dF93MhS3" +06/29/2018,Politicians,@KamalaHarris,This is a moment in time that is requiring us to speak out and fight for who we are as a country. We must not despa… https://t.co/ieKFvWIrdn +06/29/2018,Politicians,@KamalaHarris,This Administration knows the kind of trauma it inflicted by separating children from their parents. I’ve sent a le… https://t.co/zutQXARZWt +06/29/2018,Politicians,@KamalaHarris,Make no mistake — this Supreme Court vacancy puts a woman’s constitutionally protected right to make her own health… https://t.co/k4kVy1EPi2 +06/29/2018,Politicians,@KamalaHarris,"As we demand our leaders take action against this epidemic of mass shootings, we must not ignore the connection bet… https://t.co/yQcGi9gyop" +06/29/2018,Politicians,@KamalaHarris,American women are 16 times more likely to be killed with guns than women in other developed countries. And each mo… https://t.co/hnSSDej4CP +06/29/2018,Politicians,@KamalaHarris,"Lynching is a dark, despicable part of our history​. Passing an anti-lynching law is long overdue. https://t.co/BnYFofEy87" +06/29/2018,Politicians,@KamalaHarris,"RT @tammybaldwin: Getting the job done for hardworking Americans has made me some well-funded enemies, but that’s never scared me. And it’s…" +06/29/2018,Politicians,@KamalaHarris,So much of what is at the foundation of who we are is based on words that have been spoken in the United States Sup… https://t.co/fC9pJ6YK4d +06/28/2018,Politicians,@KamalaHarris,I'm heartbroken by the shooting at the Capital Gazette. Journalists play such a critical role in our democracy and… https://t.co/K23Mmp3ohI +06/28/2018,Politicians,@KamalaHarris,Those are the kind of generational impacts our courts can have on our country. We cannot and will not accept conser… https://t.co/DNjlwLNEZh +06/28/2018,Politicians,@KamalaHarris,"On this day in 2013, I was honored to marry Sandy Stier and Kris Perry after the courts lifted CA's ban on same-sex… https://t.co/R5LURN9MAA" +06/28/2018,Politicians,@KamalaHarris,This SCOTUS vacancy puts issues that affect every single American in the balance — from a woman’s right to choose t… https://t.co/8PkVBn2fnD +06/28/2018,Politicians,@KamalaHarris,"RT @CAPAction: Senator @KamalaHarris: + +""If not for Brown v. Board, I would not be standing here as a black woman today."" #SaveSCOTUS https:…" +06/28/2018,Politicians,@KamalaHarris,This morning I will be rallying with @WeDemandJustice on the steps of the Supreme Court to talk about how our funda… https://t.co/YzPiSdR1z9 +06/27/2018,Politicians,@KamalaHarris,This Supreme Court seat is going to have a generational impact — on everything from Roe v. Wade to same-sex marriag… https://t.co/g9BFVFXDRQ +06/27/2018,Politicians,@KamalaHarris,"RT @hardball: Tonight on #Hardball: Justice Kennedy announces his retirement. @KamalaHarris, @Eugene_Robinson, @SusanPage join Hardball." +06/27/2018,Politicians,@KamalaHarris,I know from personal experience — as a beneficiary of the landmark Brown vs. Board ruling desegregating our nation’… https://t.co/2vikoHWOg2 +06/27/2018,Politicians,@KamalaHarris,We've already seen the President's list of potential SCOTUS nominees. They are complete non-starters. The American… https://t.co/upxhxSfI3D +06/27/2018,Politicians,@KamalaHarris,"With fundamental rights in the balance, the American people, who vote in fewer than 4 months, deserve to have their… https://t.co/uENUL499Jd" +06/27/2018,Politicians,@KamalaHarris,"Congratulations to @BenJealous, @JoeNeguse, @Ocasio2018, and the hundreds of other Democrats leading our party into… https://t.co/Gd48ldrgNL" +06/27/2018,Politicians,@KamalaHarris,"Every single day we don’t reunite these babies and children with their parents, our country is failing an important… https://t.co/RVka5YD1Q1" +06/27/2018,Politicians,@KamalaHarris,"Congress must act to bolster the labor movement that built our middle class. Earlier this year, I wrote about why t… https://t.co/kHOHmAxSeO" +06/27/2018,Politicians,@KamalaHarris,"This decision is part of an ongoing trend of this Court that has repeatedly sided with employers over employees, co… https://t.co/JJiTIst4qs" +06/27/2018,Politicians,@KamalaHarris,"After Hurricane Maria, our government failed Puerto Rico at every level, including misinforming grieving communitie… https://t.co/J8PtIg0RK7" +06/26/2018,Politicians,@KamalaHarris,This Administration has rolled back the protections that have existed for pregnant women seeking asylum — and now t… https://t.co/aoyjWCRKdO +06/26/2018,Politicians,@KamalaHarris,"Yesterday, I introduced legislation to ensure farmworkers are guaranteed overtime protections and a minimum wage. T… https://t.co/TYvksIGmQl" +06/26/2018,Politicians,@KamalaHarris,I am a career prosecutor. I have visited many prisons and jails. The facilities being used to detain these immigran… https://t.co/Hcqe6jCiVg +06/26/2018,Politicians,@KamalaHarris,"Women deserve accurate information about the full range of reproductive services available to them, including abort… https://t.co/sZuwkcKnW2" +06/26/2018,Politicians,@KamalaHarris,This decision from the Supreme Court upholds a policy that is an affront to our values. Trump's Muslim Ban is discr… https://t.co/EZVh0QMq9k +06/26/2018,Politicians,@KamalaHarris,"On this day in 2015, the right of every American to marry the person they love was finally recognized. As we celebr… https://t.co/rXgTjBvYZs" +06/26/2018,Politicians,@KamalaHarris,"It’s unconscionable the Trump Administration decided to exact what could be a lifetime of trauma for over 2,000 kid… https://t.co/85hoqukpI2" +06/25/2018,Politicians,@KamalaHarris,Asylum seekers fleeing extreme violence and poverty are being told by our government they can have their kids back… https://t.co/zMmHyexz7L +06/25/2018,Politicians,@KamalaHarris,"As today’s ruling on Texas’ gerrymandering shows, we need to update and reinvigorate the Voting Rights Act to ensur… https://t.co/XKiL2Qd5FF" +06/25/2018,Politicians,@KamalaHarris,"5 years ago today, the Supreme Court gutted the Voting Rights Act, putting the right to speak out and make our voic… https://t.co/QKeBt6vhoO" +06/25/2018,Politicians,@KamalaHarris,Parents at one immigrant detention center say they “took to sleeping with their legs wrapped around their children… https://t.co/7ofPg4dBt7 +06/25/2018,Politicians,@KamalaHarris,We will leave no one to fight alone for their civil rights. #Pride https://t.co/0gu44Lrg4C +06/25/2018,Politicians,@KamalaHarris,It was so great to see my sorors in St. Louis last week! #AKA @akasorority1908 https://t.co/38HPJziFW9 +06/25/2018,Politicians,@KamalaHarris,There is no distinction between these “detention centers” and a prison. You walk through the halls and the doors cl… https://t.co/ZtYURJsvu0 +06/25/2018,Politicians,@KamalaHarris,"I remain committed to fighting for raising the federal minimum wage, making public colleges and universities tuitio… https://t.co/Y7fqziE02n" +06/24/2018,Politicians,@KamalaHarris,"As our country moves toward legalizing marijuana, let's remember how many lives have been ruined because of our reg… https://t.co/JbK6o12ThT" +06/24/2018,Politicians,@KamalaHarris,".@LenaWaithe is “disrupting the hell out of Hollywood"" by ensuring diverse communities can turn on the TV and see v… https://t.co/AVxNqcynh0" +06/24/2018,Politicians,@KamalaHarris,The anti-environment agenda of this admin is wrongheaded. Most Americans want to protect the environment and keep o… https://t.co/c6E1JONlun +06/24/2018,Politicians,@KamalaHarris,"The government should be in the business of keeping families together, not tearing them apart. The mothers I spoke… https://t.co/hMyjNlYw8H" +06/24/2018,Politicians,@KamalaHarris,"To everyone marching, dancing, and chanting today at #SFPride2018 and across the country: We’re in this fight toget… https://t.co/AKTj7cRCh3" +06/24/2018,Politicians,@KamalaHarris,Proud to march in the @SFPride parade today! Such amazing energy. A celebration of love and solidarity. #Pride2018 https://t.co/xCpMeXNfrC +06/24/2018,Politicians,@KamalaHarris,"RT @eqca: “We’ve seen this discrimination before. We saw it at a lunch counter, and now we see it at a cake counter. And we’ll have to figh…" +06/24/2018,Politicians,@KamalaHarris,Excited to march in San Francisco’s Pride Parade today! Happy #Pride! https://t.co/fDnUuQ8BAQ +06/24/2018,Politicians,@KamalaHarris,"Tornillo, Texas is the first site where hundreds of migrant children have been detained in temporary shelters and s… https://t.co/ZpiflJfpcv" +06/24/2018,Politicians,@KamalaHarris,Kirstjen Nielsen should resign immediately. She is leading an agency that has separated children from their parents… https://t.co/3VtXVC8roP +06/23/2018,Politicians,@KamalaHarris,Too many lives have been ruined because of the War on Drugs. Federal marijuana legalization and restorative justice… https://t.co/7kYZhzTZic +06/23/2018,Politicians,@KamalaHarris,Huge corporations should not be profiting from the detention of human beings. Period. https://t.co/C0wPEtKbKs +06/23/2018,Politicians,@KamalaHarris,Yesterday I got a tour of an immigration detention facility and visited with the mothers separated from their child… https://t.co/9BzAlwNjHq +06/23/2018,Politicians,@KamalaHarris,"Our government's continued failure in Puerto Rico is unacceptable. With another hurricane season coming, we need to… https://t.co/rI6CYo2OBS" +06/23/2018,Politicians,@KamalaHarris,Let’s be clear: a society is judged based on how it treats its children. A society is judged based on how it treats… https://t.co/PolG1BNoeQ +06/23/2018,Politicians,@KamalaHarris,From Trump’s Muslim ban to the recent human rights abuses being committed by our government along the southern bord… https://t.co/YIVp1V1Gg4 +06/22/2018,Politicians,@KamalaHarris,I’m proud to see California fighting against this administration’s cruel immigration policies. https://t.co/RaGH7uzRxR +06/22/2018,Politicians,@KamalaHarris,"Congratulations to Canada on moving forward with the legalization of marijuana. As the world moves forward, we can’… https://t.co/3wvdsAJNTz" +06/22/2018,Politicians,@KamalaHarris,A few moments ago I finished visiting with mothers who were separated from their children at the border. I can tell… https://t.co/Y92mhGO0xD +06/22/2018,Politicians,@KamalaHarris,We must keep fighting so our courts will not be stacked for generations with individuals who have spent their caree… https://t.co/7jnvbzttrp +06/22/2018,Politicians,@KamalaHarris,"We still don't know how many died in the aftermath of Hurricane Maria, but we do know the impact of our government'… https://t.co/TU6bK6CNJi" +06/22/2018,Politicians,@KamalaHarris,I’ll be visiting an immigration center later today to speak with mothers who have been separated from their childre… https://t.co/YNDvPQ5cn5 +06/22/2018,Politicians,@KamalaHarris,"77 years ago this week, Ford Motor Company became the last major American auto manufacturer to sign its first union… https://t.co/jv0Kv3Wgel" +06/21/2018,Politicians,@KamalaHarris,Secretary Nielsen misled the American public and implemented and defended the inhumane policy of separation of chil… https://t.co/jfzXJBR0bD +06/21/2018,Politicians,@KamalaHarris,"More than ever, we need leaders in state government with courage and tenacity to fight for progressive values. That… https://t.co/25AzLCRog3" +06/21/2018,Politicians,@KamalaHarris,#TBT to San Francisco’s Pride Parade two years ago. Happy #Pride! https://t.co/llBSQw7UyT +06/21/2018,Politicians,@KamalaHarris,"Reporters, advocates, and even elected officials are being turned away while trying to find out more about how this… https://t.co/L8wFXfuhQC" +06/21/2018,Politicians,@KamalaHarris,"Every week, we learn more about the tragic repercussions of our government’s failure to identify the dead in Puerto… https://t.co/1KMvyjo6NG" +06/21/2018,Politicians,@KamalaHarris,The thousands of children who’ve spent days and weeks separated from their families still woke up this morning with… https://t.co/DUtfc10smX +06/20/2018,Politicians,@KamalaHarris,Trump's executive order does not fix this crisis. It gives no solution for the thousands of children who have been… https://t.co/LgtOlCCdYW +06/20/2018,Politicians,@KamalaHarris,"In the years that followed, San Francisco would witness critical moments in LGBTQ history: the election of Californ… https://t.co/AreS2Rquy0" +06/20/2018,Politicians,@KamalaHarris,I’m looking forward to once again joining in San Francisco’s tradition of #Pride this weekend. One year after the S… https://t.co/Z25TcjULDf +06/20/2018,Politicians,@KamalaHarris,There is no law that requires ripping these babies from their families. The president should pick up the phone and… https://t.co/eY39wA7T92 +06/20/2018,Politicians,@KamalaHarris,"If our leaders truly care about family values, then they will act to end these human rights abuses being committed… https://t.co/M4NbtOQL5x" +06/20/2018,Politicians,@KamalaHarris,States across America are already working to stop our country from repeating the same mistakes of the past. We need… https://t.co/DxpcMyi4XB +06/19/2018,Politicians,@KamalaHarris,"Black women continue to be underrepresented in elected office, despite having some of the highest rates of voter tu… https://t.co/n7o6rabJ7e" +06/19/2018,Politicians,@KamalaHarris,Many of you have asked how you can help the families being impacted by our government's human rights abuses along t… https://t.co/eKmEOBMFbz +06/19/2018,Politicians,@KamalaHarris,"Laverne Cox, the first openly trans woman of color to have a lead role on a mainstream TV show, has been a powerful… https://t.co/I8LeRIQTtU" +06/19/2018,Politicians,@KamalaHarris,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/19/2018,Politicians,@KamalaHarris,"Despite their best efforts to conceal from and confuse the American people about what’s going on, one thing is clea… https://t.co/XjCJJ4y3yo" +06/19/2018,Politicians,@KamalaHarris,"With the constant challenges we face today to our deepest values as a nation, it’s easy to feel overwhelmed. But no… https://t.co/sPqHy2Tb5o" +06/19/2018,Politicians,@KamalaHarris,There is no excuse for inflicting these abuses and trauma on children. The Administration must immediately reverse… https://t.co/hQjCEtyUsv +06/19/2018,Politicians,@KamalaHarris,"On #Juneteenth, we celebrate emancipation and remember the long struggle for freedom. The slaves in Galveston were… https://t.co/qOzyflpKag" +06/19/2018,Politicians,@KamalaHarris,Secretary Nielsen must resign. The human rights abuses being committed against children — many are just toddlers —… https://t.co/URclCoQClA +06/19/2018,Politicians,@KamalaHarris,"Parents are being deported without their children, many of whom are under the age of 4. Congress can’t let the scal… https://t.co/dSfclVKReR" +06/19/2018,Politicians,@KamalaHarris,Republican leaders should bring legislation to protect Special Counsel Robert Mueller to the Senate floor immediate… https://t.co/W4IexK2XbP +06/19/2018,Politicians,@KamalaHarris,"2,000 children have already been separated at the border. These detention facilities are filled with children suffe… https://t.co/j1txPRerzL" +06/18/2018,Politicians,@KamalaHarris,Finding out why the government was unable to accurately assess the damage or provide adequate resources to rebuild… https://t.co/l1yA1e9AiZ +06/18/2018,Politicians,@KamalaHarris,"An openly gay man, some regarded Bayard Rustin's sexuality as a liability to be associated with the high-profile Ma… https://t.co/02NC8zy7i8" +06/18/2018,Politicians,@KamalaHarris,“This is America. You never expect your loved one to be ripped away from you in front of your home.” - Natalie Garc… https://t.co/q31p96BrJH +06/18/2018,Politicians,@KamalaHarris,I’m standing in solidarity with the activists and families standing up to our government’s human rights abuses alon… https://t.co/xOSWwdqsND +06/18/2018,Politicians,@KamalaHarris,"I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has co… https://t.co/kbYYKvLmFP" +06/18/2018,Politicians,@KamalaHarris,This is how our government is treating children at the border. There’s only one way to describe this: our governmen… https://t.co/lZh4grQSke +06/18/2018,Politicians,@KamalaHarris,"This must stop, before thousands more kids are separated from their parents at the border. These kids should not be… https://t.co/QIIERJe4Cp" +06/18/2018,Politicians,@KamalaHarris,"We must choose hope, over hate; action, over apathy. Every single day." +06/18/2018,Politicians,@KamalaHarris,We can’t forget about the additional suffering our government’s failures in Puerto Rico has caused after Hurricane… https://t.co/nMSFXwxrX2 +06/18/2018,Politicians,@KamalaHarris,"An economy that only works for those at the very top is an economy that is broken. I know by working together, we c… https://t.co/ZRlWVuO9Ru" +06/17/2018,Politicians,@KamalaHarris,"As we celebrate Father’s Day and continue to celebrate #Pride Month, let’s recognize that LGBTQ rights, including t… https://t.co/CM3fuaN6zO" +06/17/2018,Politicians,@KamalaHarris,"For decades, our country has opened our doors to the most vulnerable who are fleeing violence and oppression. We ar… https://t.co/t0XPMGrj1n" +06/17/2018,Politicians,@KamalaHarris,Make no mistake — this Administration is abdicating our country’s moral leadership. https://t.co/W4N85q0Vqo +06/17/2018,Politicians,@KamalaHarris,"To my husband and best friend, and to all the fathers and father-figures — Happy Father’s Day! https://t.co/drRQqZzyah" +06/17/2018,Politicians,@KamalaHarris,"As many of us spend the day celebrating our fathers and father-figures, we know there are potentially thousands of… https://t.co/L6at6m8Nq3" +06/17/2018,Politicians,@KamalaHarris,"After Hurricane Maria, our government failed Puerto Rico at every level, including misinforming grieving communitie… https://t.co/vSSLIUA6BY" +06/17/2018,Politicians,@KamalaHarris,"Because of the Administration’s policy of breaking up families at the border, these detention facilities are overfl… https://t.co/4b2wf0TfY8" +06/16/2018,Politicians,@KamalaHarris,"I am deeply troubled that despite recent developments in Robert Mueller’s investigation, the special counsel contin… https://t.co/HN7qvL1Aof" +06/16/2018,Politicians,@KamalaHarris,Let’s call this policy of indiscriminately separating children from their parents at the border exactly what it is:… https://t.co/isWnCo4ULG +06/16/2018,Politicians,@KamalaHarris,"Because of @LenaWaithe, diverse communities can see a both funny and deeply real portrayal of someone like them on… https://t.co/3CqyNsCCus" +06/16/2018,Politicians,@KamalaHarris,"Quantum computing is the next technological frontier that will change the world. We cannot afford to fall behind. +https://t.co/t1s2XLMh3H" +06/16/2018,Politicians,@KamalaHarris,It’s simple: this Administration is committing a human rights abuse along our southern border. Call your representa… https://t.co/wfH43vG9LV +06/16/2018,Politicians,@KamalaHarris,"Across our country, LGBTQ Americans and women of color are changing the equation for elected office to be about who… https://t.co/Ec0eVTTU1V" +06/16/2018,Politicians,@KamalaHarris,Using kids as leverage to get billions for a wasteful border wall is outrageous and immoral. This is simple: the Ad… https://t.co/Pv2XT7hgUE +06/16/2018,Politicians,@KamalaHarris,"Sexual harassment and assault are real in this country, from the factory floors to movie sets, and even in our cour… https://t.co/SqAJB2MVDP" +06/15/2018,Politicians,@KamalaHarris,Let’s call this policy of indiscriminately separating children from their parents at the border exactly what it is:… https://t.co/Qb5CLJ86yV +06/15/2018,Politicians,@KamalaHarris,Edie Windsor’s fight against DOMA before SCOTUS in 2013 helped pave the way for marriage equality nationwide just t… https://t.co/MPu2Vw9x4b +06/15/2018,Politicians,@KamalaHarris,"Right now, you have an opportunity to make a real difference in the lives of DACA recipients across the country by… https://t.co/bXRsNYtEmi" +06/15/2018,Politicians,@KamalaHarris,"It is true that the Administration ended DACA for new applicants — but +current DACA recipients can still apply for… https://t.co/KOLevUFLo2" +06/15/2018,Politicians,@KamalaHarris,"According to a shocking report, about 2,000 children have been separated from their families. That's an average of… https://t.co/K1rjIUP5BO" +06/15/2018,Politicians,@KamalaHarris,"We still don't know how many died in the aftermath of Hurricane Maria, but we do know the impact of our government'… https://t.co/96zAwL12Ly" +06/15/2018,Politicians,@KamalaHarris,"DACA was first announced six years ago today. We as a country gave these kids, Dreamers, a promise that we would no… https://t.co/OnmCqLSu5I" +06/15/2018,Politicians,@KamalaHarris,"Despite having some of the highest rates of voter turnout in the country, Black women continue to be underrepresent… https://t.co/ccPJyRjNCa" +06/15/2018,Politicians,@KamalaHarris,The Administration must stop breaking up families at the border now. Period. The GOP’s use of this immoral policy a… https://t.co/Q565Vxpw2x +06/15/2018,Politicians,@KamalaHarris,"It is unacceptable that tens of millions of Americans are still crippled by poverty. Women, young people, seniors,… https://t.co/YYutfUUQca" +06/15/2018,Politicians,@KamalaHarris,The government's failure to provide accurate information in the aftermath of Hurricane Maria has had devastating co… https://t.co/yNZpvE6uc3 +06/15/2018,Politicians,@KamalaHarris,.@JahanaHayesCT is the type of leader we need in Congress. She understands the issues facing the residents of Conne… https://t.co/nq3YtqWb3W +06/14/2018,Politicians,@KamalaHarris,Our country was founded on certain ideals: that we are all equal and should be treated as equals. Much like when my… https://t.co/fFvoxfbq0c +06/14/2018,Politicians,@KamalaHarris,Reports like this about the consequences of this Administration’s immigration policies are heartbreaking. We cannot… https://t.co/0CZBQk4tCr +06/14/2018,Politicians,@KamalaHarris,Young people across America are demonstrating the kind of courage and determination we need from leaders in Congres… https://t.co/660ioujXaj +06/14/2018,Politicians,@KamalaHarris,"The WH wants to pour billions of dollars into ICE’s detention facilities, despite reports of rampant abuse and negl… https://t.co/fJ6wjzXLMg" +06/14/2018,Politicians,@KamalaHarris,"Since October, more than 1,300 children have been taken from their parents at the border. These families are suffer… https://t.co/Ac1mC1pCdO" +06/14/2018,Politicians,@KamalaHarris,Congratulations to London Breed on her historic election victory in San Francisco! Your leadership will pave the wa… https://t.co/qate4nsDiD +06/14/2018,Politicians,@KamalaHarris,"Dreamers like Erika study in our colleges, serve in our military and work in Fortune 100 companies. They are contri… https://t.co/E3ve2SRcf8" +06/14/2018,Politicians,@KamalaHarris,This Administration’s continued attacks on women’s health clinics threaten access to critical services for millions… https://t.co/1H3KXhKK3U +06/13/2018,Politicians,@KamalaHarris,"When Ellen DeGeneres came out, her character followed suit, becoming the first lead in sitcom history to come out o… https://t.co/WchVaClxJw" +06/13/2018,Politicians,@KamalaHarris,We must act now to address the challenges we face in the development of this technology – our national security and… https://t.co/uIJcvLsPTq +06/13/2018,Politicians,@KamalaHarris,How many communities are going to be senselessly torn apart by gun violence before our leaders finally do something… https://t.co/zuarXmnByo +06/13/2018,Politicians,@KamalaHarris,The government failed to provide grieving families and those conducting disaster relief efforts with accurate infor… https://t.co/xEuESxfTb1 +06/13/2018,Politicians,@KamalaHarris,Let’s call this what it is — a human rights abuse being committed by the United States government. Congress cannot… https://t.co/7WPvpBV7wv +06/13/2018,Politicians,@KamalaHarris,Marijuana laws are not applied and enforced in the same way for all people. I’m happy to see some members of the la… https://t.co/zpAfLoBFO5 +06/12/2018,Politicians,@KamalaHarris,Our government’s failures in Puerto Rico are unacceptable. I’ve sponsored legislation to guarantee adequate resourc… https://t.co/zzZDfk36oe +06/12/2018,Politicians,@KamalaHarris,This is simple — this Administration is willing to let insurers deny you coverage if you have a pre-existing condit… https://t.co/4swVte9PJX +06/12/2018,Politicians,@KamalaHarris,I started Back on Track​ because I thought we could get ​​smart on crime and prevent recidivism. Great to see succe… https://t.co/KryPAFGIfH +06/12/2018,Politicians,@KamalaHarris,"51 years ago today, the Loving v. Virginia decision invalidated laws prohibiting interracial marriage. Mildred and… https://t.co/JeqFRTSLxX" +06/12/2018,Politicians,@KamalaHarris,We cannot let this continue. Congress must act to end this Administration’s inhumane policy of separating children… https://t.co/jVDFnY85jB +06/12/2018,Politicians,@KamalaHarris,Accurately counting every single American in the U.S. Census is critical to our nation’s future. No one should be l… https://t.co/cdU9ULEzPm +06/12/2018,Politicians,@KamalaHarris,"2 years ago today, 49 lives — mostly Latinx — were taken at #Pulse. It's the deadliest known incident of violence s… https://t.co/QHQeBZa8CC" +06/12/2018,Politicians,@KamalaHarris,"We’ve opened our doors to those fleeing violence and oppression for decades. It’s helped global stability, made our… https://t.co/Dd88YCguiu" +06/12/2018,Politicians,@KamalaHarris,"Each month, more than 50 American women are shot and killed by current or former intimate partners. As we demand ou… https://t.co/VzJhQUb5kZ" +06/12/2018,Politicians,@KamalaHarris,"For more than 100 days, Alan Doran has walked 2.2 miles to advocate on behalf of Dreamers and immigrants. We should… https://t.co/eWsUcPPXv0" +06/12/2018,Politicians,@KamalaHarris,Ripping kids from the arms of their parents is just wrong. I've introduced legislation to put an end to this policy… https://t.co/3UEf8vbXok +06/11/2018,Politicians,@KamalaHarris,Climate change is a reality we must confront. We cannot abandon our environment at this critical moment in time. https://t.co/ppA68UKMOg +06/11/2018,Politicians,@KamalaHarris,This is abhorrent. The Administration is turning its back on victims of domestic violence and gang violence and fur… https://t.co/yXYpZCUNAZ +06/11/2018,Politicians,@KamalaHarris,"Harvey Milk knew there was more that unites us than divides us, and he understood that representation matters. Figh… https://t.co/U5eOEESGUZ" +06/11/2018,Politicians,@KamalaHarris,We cannot allow our government’s failed response in Puerto Rico to ever happen again. I’ve introduced legislation t… https://t.co/qHf68AXWvw +06/11/2018,Politicians,@KamalaHarris,"Thanks to the Affordable Care Act, more than 100 million people are now protected from being denied coverage or cha… https://t.co/GrTwu5Z2Ny" +06/11/2018,Politicians,@KamalaHarris,This decision is deeply wrong. More than 2 million voters have been purged in Ohio since 2011. Instead of making it… https://t.co/lvsO9e8wrq +06/11/2018,Politicians,@KamalaHarris,"The FCC just ended #NetNeutrality, putting freedom of speech and innovation online at risk. Now we need Congress to… https://t.co/hg4ealA6do" +06/11/2018,Politicians,@KamalaHarris,Americans already know the GOP tax bill was a scam. Instead of exploding the deficit by billions of dollars to pay… https://t.co/U8M820CJQS +06/11/2018,Politicians,@KamalaHarris,Our country is deporting immigrants who pose no harm to the public. This is not who we are. https://t.co/mzLSUoRYbl +06/11/2018,Politicians,@KamalaHarris,It’s time to end the culture of fear and silence that surrounds workplace harassment. We need to do more than just… https://t.co/U5WcbYhpM1 +06/11/2018,Politicians,@KamalaHarris,"Even though women earn college degrees at a higher rate than men, more women, especially women of color, are stuck… https://t.co/7X5ORIGJ1b" +06/10/2018,Politicians,@KamalaHarris,Jeff Sessions should focus on issues like transnational criminal organizations and investigating and prosecuting hu… https://t.co/OB63M5tvMo +06/10/2018,Politicians,@KamalaHarris,I’ve asked Secretary Carson to explain why this Administration believes raising rents for low-income households wil… https://t.co/1ev0gJAIEd +06/10/2018,Politicians,@KamalaHarris,"A few days ago, I introduced legislation to end this Administration's cruel policy of breaking up families at the b… https://t.co/k9hUdNyAHn" +06/10/2018,Politicians,@KamalaHarris,I am so inspired by the hundreds of women of color leading our party in the 2018 elections. Their leadership will p… https://t.co/5RNy3cAjZz +06/09/2018,Politicians,@KamalaHarris,Quantum computing is the next technological frontier that will change the world and we cannot afford to fall behind… https://t.co/pFHg6Ck3v9 +06/09/2018,Politicians,@KamalaHarris,We must fight so our courts are not stacked with individuals who have spent their careers to undermining the equali… https://t.co/SB12WL8QRc +06/09/2018,Politicians,@KamalaHarris,"In just a few days, #NetNeutrality will be ended by the FCC. The Senate has already voted to save the internet. Now… https://t.co/oCSO1LQUcA" +06/09/2018,Politicians,@KamalaHarris,Legalizing marijuana at the federal level is about stopping our country from repeating the same mistakes of the pas… https://t.co/CX066jyM49 +06/09/2018,Politicians,@KamalaHarris,This Administration’s deportation force is forcing immigrants back into the shadows. The consequences are devastati… https://t.co/XjhzSdnEeB +06/09/2018,Politicians,@KamalaHarris,Proud to stand in solidarity with those marching in Sacramento for the #BlackWomensMarch. They’re shining a light o… https://t.co/f2D6mChZZg +06/09/2018,Politicians,@KamalaHarris,RT @tammybaldwin: Thrilled @KamalaHarris is joining me in Wisconsin today. Our first event talking to young folks in Madison and having som… +06/09/2018,Politicians,@KamalaHarris,"Today in Wisconsin, I'll be campaigning for my friend and colleague @tammybaldwin. Tammy has stood with us when we… https://t.co/1zy9vwhcMC" +06/09/2018,Politicians,@KamalaHarris,RT @tammybaldwin: “If she weren’t such a force speaking for working families... [special interests] wouldn’t be putting the millions of dol… +06/09/2018,Politicians,@KamalaHarris,"Congrats, @warriors! #DubNation, it's been an incredible season. #NBAChamps https://t.co/emVM1yiHfN" +06/09/2018,Politicians,@KamalaHarris,Our government continues to fail our fellow Americans in Puerto Rico. We need to dedicate the resources necessary f… https://t.co/dGbu80NU3K +06/08/2018,Politicians,@KamalaHarris,It’s time to end the culture of fear and silence that surrounds workplace harassment. We need to support victims an… https://t.co/mzOkmorSIp +06/08/2018,Politicians,@KamalaHarris,We can’t let the Administration keep breaking up immigrant families like José’s. We need to stand with them and spe… https://t.co/3o0MqOVwxO +06/08/2018,Politicians,@KamalaHarris,The Affordable Care Act ensures millions of Americans with pre-existing conditions have access to affordable care.… https://t.co/AhEn1oQY0L +06/08/2018,Politicians,@KamalaHarris,"If you or a loved one needs it, help is available. Call 1-800-273-8255 for free and confidential support. https://t.co/UZMpF3vkLM" +06/08/2018,Politicians,@KamalaHarris,"Gilbert Baker, the designer of the rainbow flag, created a symbol of pride for the LGBTQ movement. He refused to tr… https://t.co/XjcWHcYDTu" +06/08/2018,Politicians,@KamalaHarris,The Administration wants to increase rent six times greater than the growth in average hourly earnings for low-inco… https://t.co/vyPe0u7XFv +06/08/2018,Politicians,@KamalaHarris,"To tackle the challenges of the 21st century, we must empower women and girls. If we do not lift them up, everyone will fall short." +06/08/2018,Politicians,@KamalaHarris,"In just 5 days, the FCC will end #NetNeutrality at the federal level, eliminating vital protections for innovation… https://t.co/OrJLXKdnH5" +06/08/2018,Politicians,@KamalaHarris,"Mulvaney’s job is to protect and advocate for consumers. Instead, he's doing everything he can to weaken the safegu… https://t.co/1tYSEZetW4" +06/07/2018,Politicians,@KamalaHarris,"We owe meaningful change in our laws not just to courageous women who have come forward in the #MeToo conversation,… https://t.co/BIX8Xm6ZOw" +06/07/2018,Politicians,@KamalaHarris,We deserve more than silence from this White House about how and why the government failed our fellow Americans in… https://t.co/Ab5aLBkNWt +06/07/2018,Politicians,@KamalaHarris,"In times like these, when our government works to reject LGBTQ rights, restrict women’s health care access, and bre… https://t.co/42o1JmHbe3" +06/07/2018,Politicians,@KamalaHarris,My heart breaks for these kids being separated from their families at the border – many are just toddlers. We need… https://t.co/FdOxDQ2RxN +06/27/2018,Politicians,@AKWeissman,RT @BBQsnob: Less than 12 hours away folks. #Smokelandia on the @CookingChannel tonight at 8:30ET/7:30CT. Catch the pilot and maybe we’ll m… +06/24/2018,Politicians,@AKWeissman,@sanantonioheron great news! Glad you are bringing another perspective to the 210. ¡Buena suerte! +06/22/2018,Politicians,@AKWeissman,#happyfathersday #costarica #weissmantravels #flyfishing101 #rankbegginer #ticotrucha #puravida #210 #2018… https://t.co/kgQxIDLgp8 +06/22/2018,Politicians,@AKWeissman,#secondhome #wishyouwerehere #puravida #ticos #monkeys #ocean #vistas #family #hiking #anteatersonthetrail… https://t.co/8n4FIxfvJi +06/22/2018,Politicians,@AKWeissman,#myhomeforawhile #summerincostarica #ticos #puravida #gallopinto #lifeisshort #wishyouwerehere #hike/fish/run/swim/… https://t.co/eI9QiJOtZa +06/22/2018,Politicians,@AKWeissman,#costarica #puravida #mahimahi #weissmantravels #worldcup #ticos #summerforuswinterforthem #freshfish #chefsabroad… https://t.co/FrDC0q8FhO +06/22/2018,Politicians,@AKWeissman,#wishyouwerehere #puravida #costarica #havethisbeachtoourselves #summer/wintercostarica2018 ##sanantonio #210… https://t.co/PjChD8sYqn +06/13/2018,Politicians,@AKWeissman,Hope to see you there! https://t.co/C6kB9CEWLQ +06/08/2018,Politicians,@AKWeissman,"We live in a world where the unnatural has become natural, the shocking commonplace and tragedy occurring with fero… https://t.co/aNAJ2vF2iI" +06/08/2018,Politicians,@AKWeissman,Starting them off early. #whenyourdaughterlikescoffeeasmuchasyoudo #stuntsgrowth https://t.co/SUkcHOL316 +06/07/2018,Politicians,@AKWeissman,@dochoatittel Thanks for stopping in. I wasn’t there today as I am in Houston. Back 2moro working out the kinks. +06/07/2018,Politicians,@AKWeissman,RT @dochoatittel: Great breakfast at Moshe’s. We will be back. @AKWeissman https://t.co/YW9uGGQsfV +06/07/2018,Politicians,@AKWeissman,RT @mySA_Food: Chef Andrew Weissman brings Israeli shakshuka to breakfast in San Antonio — and it feels so right https://t.co/kD5jCjhwpm +06/06/2018,Politicians,@AKWeissman,Anything is possible when you start your day with shakshuka for breakfast at Moshes golden falafel. 7am-10:30am mon-sat🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙 +06/02/2018,Politicians,@AKWeissman,RT @mySA_Food: Starting my day the Israeli with red and green shakshuka from Moshe’s Golden Falafel. Breakfast now served 7-10:30 a.m. —@pj… +05/29/2018,Politicians,@AKWeissman,Stop what your doing and head over to Moshes golden falafel for breakfast!!!🥙🥙🥙🥙 +05/26/2018,Politicians,@AKWeissman,@chefjasondady You always have the best ideas! +05/26/2018,Politicians,@AKWeissman,RT @chefjasondady: You pay for it. We will come. 🤑🤑. Emerite @AKWeissman l??? https://t.co/9GmKBxbdDR +05/26/2018,Politicians,@AKWeissman,RT @jgillm: Maybe @City_of_Helotes could recruit a restaurant or chef that doesn’t specialize in fast food chicken. @chefjasondady @AKWeiss… +05/25/2018,Politicians,@AKWeissman,"@SophieHChrist @TheMontereySA Pssst...he ain’t got nothing else to do. +#heisanMVPtho" +05/25/2018,Politicians,@AKWeissman,RT @LocalD: My favorite spot. @AKWeissman https://t.co/396zpm5A4e +05/25/2018,Politicians,@AKWeissman,@TheMontereySA @EasyTigerATX @TheMontereySA Do you have a time traveling machine? I saw you this morning in the far… https://t.co/urVXIUxxiX +05/24/2018,Politicians,@AKWeissman,@fedmanwalking @mySA_Food come check us out at #moshesgoldenfalafel but only if you like to eat interesting food an… https://t.co/WjXSdtxVv8 +05/24/2018,Politicians,@AKWeissman,@MileHigh_Texan Thank you for being one of the first!!!! #happybirthday!!!! +05/24/2018,Politicians,@AKWeissman,RT @MileHigh_Texan: Thank you @AKWeissman for starting my birthday of right! #SATX #Foodie #birthdaygirl https://t.co/tvZsjnaAKV +05/22/2018,Politicians,@AKWeissman,RT @etij: Looking forward to trying it! https://t.co/Ps1KB4LS14 +05/22/2018,Politicians,@AKWeissman,RT @dochoatittel: @AKWeissman Can’t wait! +05/22/2018,Politicians,@AKWeissman,First look at moshes golden falafel breakfast menu. Starts Wednesday. Take a chance and experience crazy good flavo… https://t.co/cUwCQA25wr +05/21/2018,Politicians,@AKWeissman,@KimWarner4 Thank you. Please come see us in the meantime at moshes—-stay tuned for new concepts in early spring 2019! +05/18/2018,Politicians,@AKWeissman,RT @MarlaCimini: Check it out! Where chef Andrew Weissman eats in San Antonio @visitsanantonio @lacanteraresort @dfisk @AKweissman https://… +05/15/2018,Politicians,@AKWeissman,Big sale of restaurant equipment starts tomorrow. Drop by ilso anytime between 9-3 for restaurant items like chairs… https://t.co/b4nfmEqbuS +05/15/2018,Politicians,@AKWeissman,"RT @pfrench99: Our biggest fans this week: @AKWeissman, @RayvzBlanca1, @jacobplans. Thank you! via https://t.co/9nOEZwuhzv https://t.co/dot…" +05/11/2018,Politicians,@AKWeissman,"RT @louisfer67z: Kind of odd that @Rivardreport article leads with Il Sogno closure, but you've got to wade through the comments section to…" +05/11/2018,Politicians,@AKWeissman,@Rivardreport feel free to contact me regarding the article written about the state of fine dining in San Antonio.… https://t.co/ua8X99yhP5 +05/11/2018,Politicians,@AKWeissman,RT @MikeBoard1200: @arrrkane @AKWeissman @pfrench99 I hope @AKWeissman pivots from Italian noodles to Vietnamese noodles. It’s good pho th… +05/11/2018,Politicians,@AKWeissman,RT @arrrkane: @pfrench99 @AKWeissman there cannoli be so many of these puns. +05/11/2018,Politicians,@AKWeissman,RT @pfrench99: Il Sogno’s legacy will definitely become a pizza San Antonio’s culinary history. #SA300 #culinaryculture #lastoneipromise ht… +05/10/2018,Politicians,@AKWeissman,RT @TheMontereySA: @richmcneal85 @AKWeissman @pfrench99 @HistoricPearl ARE YOU PEOPLE HAPPY WITH YOURSELVES??? +05/10/2018,Politicians,@AKWeissman,RT @WD3_79: @pfrench99 @AKWeissman @HistoricPearl @TheMontereySA Damn; I love that place! +05/10/2018,Politicians,@AKWeissman,@pfrench99 @HistoricPearl @TheMontereySA Hoping to get pasta the bad puns. Then everything will be just pici. +05/10/2018,Politicians,@AKWeissman,RT @TheMontereySA: @pfrench99 @AKWeissman @HistoricPearl This is an atrocious pun and I’m seriously considering an unfollow. +05/10/2018,Politicians,@AKWeissman,RT @pfrench99: @AKWeissman @crlazaro @BlueRockCG @HistoricPearl Sad trombone +05/09/2018,Politicians,@AKWeissman,@crlazaro @BlueRockCG @pfrench99 @HistoricPearl Closed. +05/09/2018,Politicians,@AKWeissman,@BlueRockCG @pfrench99 @HistoricPearl Already closed. Sunday was our last day in service. +05/09/2018,Politicians,@AKWeissman,RT @pfrench99: Il Sogno dreams and gnocchi wishes... https://t.co/uh3KwZXDu3 +05/09/2018,Politicians,@AKWeissman,"RT @dfiske: When in San Antonio, do as the San Antonians. #EATUP https://t.co/AvaUjGEQEa @USATODAY @10Best @MarlaCimini @LaCanteraResort @E…" +05/09/2018,Politicians,@AKWeissman,@TheMontereySA Y’all got me wrong. Friday’s are made for #chadboobiesandgout +05/09/2018,Politicians,@AKWeissman,RT @globaljmg: @TheMontereySA @AKWeissman i love all this love between you both TMTYSA & AKW... but loved you too when you both were opened… +05/08/2018,Politicians,@AKWeissman,RT @Eat_Sip_Trip: @ptconroy @AKWeissman We figured we’d ask an expert 😉 +05/08/2018,Politicians,@AKWeissman,RT @MarlaCimini: I adore the food in San Antonio! This was such a fun story to write! Thanks @AKWeissman for these great tips! @LaCanteraRe… +05/08/2018,Politicians,@AKWeissman,"RT @ptconroy: @AKWeissman @Eat_Sip_Trip First one of these ""where to eat in SA"" lists with which I've wholeheartedly agreed." +05/08/2018,Politicians,@AKWeissman,RT @TheMontereySA: @MikeBoard1200 @AKWeissman @lgomez123 I know the perfect venue for that show. +05/08/2018,Politicians,@AKWeissman,@pinchboilhouse No worries-next time I’ll wear a smock! See y’all soon and I’m glad to be able to help get the word out. +05/08/2018,Politicians,@AKWeissman,"RT @pinchboilhouse: Gotta agree, Moshe’s is fu*kin good! Appreciate the love & mention, and sorry about the messy clothes! 😂#garlicbutterja…" +05/07/2018,Politicians,@AKWeissman,RT @jeff_goldblatt: @TheMontereySA @AKWeissman Amen! +05/07/2018,Politicians,@AKWeissman,@TheMontereySA @TheMontereySA all joking aside Chad—that’s about the nicest thing you could have said.… https://t.co/cYyhUBCAly +05/07/2018,Politicians,@AKWeissman,"RT @TheMontereySA: I struggled to think of a smart way to memorialize Il Sogno. + +I just keep thinking about what SA restaurants were like b…" +05/07/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Sorry to see this. Happy trails! +05/07/2018,Politicians,@AKWeissman,"RT @RichardMarini: Farewell to il Sogno Osteria. + +When Chef is serenaded by mariachi on the closing evening of a wonderful 9-year run. + +@A…" +05/07/2018,Politicians,@AKWeissman,RT @RichardMarini: Feel like it’s closing night of a Tony Award-winning play. @AKWeissman https://t.co/mVtG8XRY7V +05/06/2018,Politicians,@AKWeissman,#setupforaspecialguest #signature #inbetweenshifts@ilso #buyout #cheese #meat… https://t.co/rB1LbZkury +05/06/2018,Politicians,@AKWeissman,#ilsognosanantonio #lastnight #pearlbrewery #thanksforthememories… https://t.co/q0UnWjZdS4 +05/06/2018,Politicians,@AKWeissman,RT @C_BOYCE: @AKWeissman So disappointed not to eat one last great meal at il Sogno. I live in the Pacific NW now and only get to SA a coup… +05/06/2018,Politicians,@AKWeissman,RT @joealderete3: Just wanted to give a quick shoutout to @AKWeissman and everybody who worked at Ill Sogno. @KarinaCAlderete and I enjoyed… +05/06/2018,Politicians,@AKWeissman,@RAConomics @SAHispanicCC @IlSognoSA @globaljmg #culinaryrabbi #hebrewhammer #hispanicchamber for the win!!! +05/06/2018,Politicians,@AKWeissman,RT @notthefakeSTU: @AKWeissman Had many great meals there. Thank you. +05/06/2018,Politicians,@AKWeissman,@barronbichon Thank you. And thank you for the gift! Don’t ever get a kitchen used to you bringing them beer——now i… https://t.co/N0ZNaB0NCr +05/06/2018,Politicians,@AKWeissman,RT @barronbichon: @AKWeissman Thanks so much for fitting us in tonight. Dinner was fantastic. We have a lot of memories at IlSo. Thanks for… +05/05/2018,Politicians,@AKWeissman,"RT @SACharterMoms: ""Where chef Andrew Weissman eats in San Antonio"" https://t.co/66vmzt0pdN via @eat_sip_trip @akweissman @mariacimini" +05/05/2018,Politicians,@AKWeissman,@barronbichon I have you at 6 for 2 peeps. See you then. +05/05/2018,Politicians,@AKWeissman,@etij @saflavor @SAcurrent now it is time to get your fix of what will surely be a first in SA the Israeli breakfas… https://t.co/o3UsuZma2m +05/05/2018,Politicians,@AKWeissman,RT @etij: One last brunch at Il Sogno. Thank you @akweissman! #sanantonio… https://t.co/fYK4p3MPCh +05/05/2018,Politicians,@AKWeissman,RT @mrs_liserio: Thank you @AKWeissman for the amazing food! We will miss Ill Songo! https://t.co/TUfpuVh0Mq +05/05/2018,Politicians,@AKWeissman,Where chef Andrew Weissman eats in San Antonio https://t.co/FWSbE24P0A via @eat_sip_trip +05/05/2018,Politicians,@AKWeissman,@barronbichon If you would like I can get you in at 6 for two. I know it’s not your ideal time but it’s the only wa… https://t.co/Lje2ptih01 +05/04/2018,Politicians,@AKWeissman,RT @dochoatittel: Having a drink @blueboxbar before we have our final dinner at Il Sogno @AKWeissman https://t.co/Vvwa9iROtU +05/04/2018,Politicians,@AKWeissman,RT @livinsassy: @MrDarrylByrd @AKWeissman We are going to miss it so much! +05/04/2018,Politicians,@AKWeissman,@MrDarrylByrd I aspire to be more like you DB. #missseeingyou #staytuned +05/04/2018,Politicians,@AKWeissman,RT @MrDarrylByrd: My #lastmeal at the great Il Sogno restaurant. I remember signing the first lease almost a decade ago and of how happy I… +05/04/2018,Politicians,@AKWeissman,"RT @themollycox: Yesterday, after multiple breakfasts where we solved (& maybe started) a few of the world’s problems, @magalyc & I had our…" +05/04/2018,Politicians,@AKWeissman,@barronbichon I’m truly sorry—-I got my wires crossed—for some crazy reason(not worth mentioning) I screwed up. I w… https://t.co/09V2wgjwwo +05/04/2018,Politicians,@AKWeissman,@barronbichon You don’t have a reservation yet? +05/03/2018,Politicians,@AKWeissman,@barronbichon Yes! I had the tweet loaded 2days ago to let u know but never hit reply. +05/02/2018,Politicians,@AKWeissman,@CBSLAElsa Thank u @CBSLAsa hope you r well—-all y’all need to come back home! +05/02/2018,Politicians,@AKWeissman,"RT @CBSLAElsa: I would like to second this, @AKWeissman!!! One of my favorite places of all time!! 😢 Best to you and your family! https://t…" +05/02/2018,Politicians,@AKWeissman,@JaimeVaughn You betcha And I’m treating to a pastrami Rueben dog at pinks!! +05/02/2018,Politicians,@AKWeissman,RT @JaimeVaughn: @AKWeissman Our very most favorite restaurant in San Antonio and one of our favs all around. Thanks for the fond memories.… +05/02/2018,Politicians,@AKWeissman,"RT @SAcurrent: As one of the first restaurants in the now vital area, Il Sogno garnered plenty of praise from local and national publicatio…" +05/02/2018,Politicians,@AKWeissman,RT @JessElizarraras: Packed house at Il Sogno this am. Power breakfast with some cool kids. https://t.co/N0x7nA6pMP +05/02/2018,Politicians,@AKWeissman,@TheMontereySA If I wasn’t so busy closing down establishments I’d come over and show you how it’s done @TheMontereySA #childoftheeighties +05/01/2018,Politicians,@AKWeissman,RT @mySA_Food: Restaurant shakeup at The Pearl leaves three spaces in flux https://t.co/G0Z17hFS33 +05/01/2018,Politicians,@AKWeissman,@neffhudson Me too. On both accounts. I hope to one day do something like sandbar again but more user friendly. +04/30/2018,Politicians,@AKWeissman,RT @TheMontereySA: The premiere of @tiachuckfilm is happening this Saturday. Chuck was a wonderful person & artist (he did the Monty's men… +04/30/2018,Politicians,@AKWeissman,@barronbichon I def have not forgotten you—-just waiting to see if staff shows up Tuesday b4 I take any reservations. +04/30/2018,Politicians,@AKWeissman,@jaybirdsatx Thanks jay. Hope to see you soon old friend. +04/29/2018,Politicians,@AKWeissman,@curtisgsmith The only diff is that I wasn’t there to mentor you—-for that I’m sorry. #lefttothewolves +04/29/2018,Politicians,@AKWeissman,"RT @curtisgsmith: How fitting that a story like this pops up today. About a year a go, I did this very same thing and started a crazy job i…" +04/29/2018,Politicians,@AKWeissman,@ChilledPickett Thank you for the kind words and the encouragement!!!! +04/28/2018,Politicians,@AKWeissman,Please visit my insta page for more insight as to why I am closing ilso @weissmansndrew Thanks again! AW +04/28/2018,Politicians,@AKWeissman,@paynepga I am currently working out a plan to accept gift cards at Signature that were issued at ilso. It is a lit… https://t.co/Zsu9RHIHsz +04/28/2018,Politicians,@AKWeissman,@throw63 Love that GIF!!!😜 +04/28/2018,Politicians,@AKWeissman,@SiobhanWalshRD Hope you are well! It’s been too long. +04/28/2018,Politicians,@AKWeissman,"RT @allenaction22: @AKWeissman Hate to see it go, we love that place!" +04/28/2018,Politicians,@AKWeissman,@layscrispytaco Thank you so much for the kind words. +04/28/2018,Politicians,@AKWeissman,@QueenKutie55 Your awesome! No I am not planning on moving locations but I promise more things to come!!! Please co… https://t.co/hSonnP1SPp +04/28/2018,Politicians,@AKWeissman,"Oops apparently @TheMontereySA is live tweeting from the drunk tank down at la villita square. +#success #fiesta" +04/28/2018,Politicians,@AKWeissman,@50Run @TheMontereySA @HistoricPearl Miss seeing you and your family! +04/28/2018,Politicians,@AKWeissman,@50Run @TheMontereySA @HistoricPearl 9 years 1 month but who’s counting! +04/28/2018,Politicians,@AKWeissman,@TheMontereySA @HistoricPearl @TheMontereySA apparently you have failed miserably at fiesta if you are still able… https://t.co/wcpc0tL8Tu +04/28/2018,Politicians,@AKWeissman,RT @TheMontereySA: We approached @HistoricPearl with the idea to throw Il So out on the street and replace it with a build-your-own poke/qu… +04/28/2018,Politicians,@AKWeissman,@barronbichon I will let you know 2moro when I stop in at ilso. Thx. +04/28/2018,Politicians,@AKWeissman,@Resendezgurl @HistoricPearl Excited about future concepts/plans as well as current ones(signature and moshes in pa… https://t.co/fhyeTnvndK +04/28/2018,Politicians,@AKWeissman,@barronbichon Let me know when you need the reservation and I will take care of it. +04/28/2018,Politicians,@AKWeissman,@barronbichon May 6th. +04/28/2018,Politicians,@AKWeissman,.RIP ILSO. +04/27/2018,Politicians,@AKWeissman,@RAConomics Yes! +04/27/2018,Politicians,@AKWeissman,@RAConomics Breakfast next week? +04/25/2018,Politicians,@AKWeissman,@JaimeVaughn Love it there! +04/24/2018,Politicians,@AKWeissman,@louisfer67z @TheMontereySA @SomeGirlinCT Tell your daughter to make good on that note(it will cost about 2500$)and… https://t.co/Ynx4rn6PPy +04/23/2018,Politicians,@AKWeissman,@louisfer67z @TheMontereySA Agreed. But you are paying for the whiskey. It is (relatively) reasonably priced at 18$… https://t.co/f7qQqP0fbA +04/23/2018,Politicians,@AKWeissman,"@TheMontereySA stylized sammies and egg rolls and now this? +#asteptoofar https://t.co/FClP9gftPu" +04/23/2018,Politicians,@AKWeissman,@jonprado that smoked old fashioned is made with hibiki. Just sayin... +04/23/2018,Politicians,@AKWeissman,@TheMontereySA Reminiscent of cutting an egg roll on the bias and standing them up to justify paying 14$… https://t.co/Ro3bJidPaj +04/22/2018,Politicians,@AKWeissman,@themollycox 🙏🏼👨‍🍳✊️ +04/22/2018,Politicians,@AKWeissman,@themollycox Damn you @themollycox you know your people are under strict orders to let me know in advance of your a… https://t.co/dJr7XTtEYp +04/18/2018,Politicians,@AKWeissman,"@TheMontereySA As good a place holder as I can think of. They are just mad cuz u didn’t eat the beak. +#chadtravels #eatthebeakjanke" +04/17/2018,Politicians,@AKWeissman,@TheMontereySA The andouille looks like a cross section of your finger. +04/15/2018,Politicians,@AKWeissman,RT @NBAcoaching: @AKWeissman Be there soon Andrew! Can’t wait! @Cassandra_TV +04/15/2018,Politicians,@AKWeissman,@WhoIsScottyJ @Bjackso87 Let me know if u decide to go—-would love to see you out there. #reservationsramust +04/15/2018,Politicians,@AKWeissman,"RT @WhoIsScottyJ: @AKWeissman Was just talking to @Bjackso87 about getting out to Signature, hope to be there soon!" +04/15/2018,Politicians,@AKWeissman,Come and see what’s happening at Signature it won’t disappoint! Our new menu is about to drop!!!@lacanteraresortand… https://t.co/NDcXRDRfCl +04/14/2018,Politicians,@AKWeissman,@TheMontereySA #gavage #chadtravels +04/14/2018,Politicians,@AKWeissman,"RT @TheMontereySA: @AKWeissman Thus far, they’ve been equal parts terrified and amused. + +“Un autre andouillete, monsieur?” + +“You bet your…" +04/14/2018,Politicians,@AKWeissman,"RT @pinchboilhouse: @AKWeissman 😂❤️! #juicycouture +Appreciate the kind words, brotha!" +04/14/2018,Politicians,@AKWeissman,"@TheMontereySA just woke up in cold sweat remembering that my buddy Chad is in France. G-d save France. +Oh n I fee… https://t.co/dFJPbQI83j" +04/14/2018,Politicians,@AKWeissman,@pinchboilhouse y’all do a great job. My family and I really enjoyed our experience. You guys should provide a disc… https://t.co/XDllQ7hk4i +04/12/2018,Politicians,@AKWeissman,This happened last night when I put the kids and their mom to bed.#shhhhhhhhh #Zzzzzzzzzz https://t.co/ZgVsonE9mL +04/10/2018,Politicians,@AKWeissman,@N7Zebracakes @pricetagsa Your kind words started my Tuesday off the right way! As a side note I will be doing smal… https://t.co/Q0QRjgII90 +04/10/2018,Politicians,@AKWeissman,"RT @N7Zebracakes: @pricetagsa @AKWeissman I never had the good fortune to go to either. As I hear it, losing Le Rêve was a loss for the ent…" +04/10/2018,Politicians,@AKWeissman,RT @pricetagsa: @N7Zebracakes @AKWeissman If only! #foodies The loss of Le Reve and years ago Chez-Ardez was a huge loss for the city of S.… +04/10/2018,Politicians,@AKWeissman,"RT @N7Zebracakes: @AKWeissman my wife brings up Le Rêve on a weekly basis, lamenting it's demise. I know there was a single night event las…" +04/04/2018,Politicians,@AKWeissman,@TheMontereySA #merkins +04/04/2018,Politicians,@AKWeissman,RT @TheMontereySA: Yo @AKWeissman you know you can BUY dried pasta it’s not like you gotta make your own https://t.co/Z9gj1WDJfd +04/04/2018,Politicians,@AKWeissman,@davetapia @BCEapenMD Thanks Dave for the recommendation !!! #localshelpinglocals +04/04/2018,Politicians,@AKWeissman,RT @davetapia: @BCEapenMD @AKWeissman Glad you enjoyed it! The Signature never disappoints. #firstclassfood #firstclassservice +04/04/2018,Politicians,@AKWeissman,"RT @BCEapenMD: Had dinner at signature restaurant for my wife’s birthday. The food, service and decor were phenomenal. Overall a magnificen…" +04/03/2018,Politicians,@AKWeissman,@B_Mains_Cincy @Grace_Yek @WCPO Good for you Ned. Best of luck! +04/03/2018,Politicians,@AKWeissman,RT @B_Mains_Cincy: Seven Hills grad Ned Elliott is coming home to open a restaurant in Over-the-Rhine. Story by @Grace_Yek @WCPO. https://t… +04/02/2018,Politicians,@AKWeissman,The luxury is looking for cooks 12+tips+OT a good attitude is all you need! Cashiers as well 11+tips+OT #hollarback +04/01/2018,Politicians,@AKWeissman,@postcardsfromsa Crowds at luxury currently rival numbers at the Loyola/mich game! Thanks for the shoutout! +04/01/2018,Politicians,@AKWeissman,RT @postcardsfromsa: Final Four crowds pushing you out of downtown? Walk upriver for a lalaland salad and find a riverside swing seat at Th… +03/30/2018,Politicians,@AKWeissman,@chrissandoval @claudmac Great to see y’all! What a tremendous event! Let’s get together soon +03/26/2018,Politicians,@AKWeissman,@united worst customer service out of SFO. Ever. Never again. +03/26/2018,Politicians,@AKWeissman,RT @davetapia: @dfiske @AKWeissman @SABizJournal Congrats Chef and staff on the continued success! +03/26/2018,Politicians,@AKWeissman,@pricetagsa @dfiske @SABizJournal Thank you so much! +03/26/2018,Politicians,@AKWeissman,RT @pricetagsa: @dfiske @AKWeissman @SABizJournal Love this place. It is one of my favorite places to celebrate! +03/26/2018,Politicians,@AKWeissman,"RT @dfiske: La Cantera restaurant, Signature named to Southern Living's top 10 list https://t.co/7LIVwfiEb7 via @SABizJournal @AKWeissman" +03/25/2018,Politicians,@AKWeissman,@GGenebarris We will be back open on Tuesday -thru sat closed for Easter Sunday and Monday. +03/25/2018,Politicians,@AKWeissman,@GGenebarris Thx for your inquiry. It’s the one concept that I have that requires my wife and I to b there every da… https://t.co/1WTkp8DVDI +03/24/2018,Politicians,@AKWeissman,Let the judging begin! https://t.co/XKt4qza9dn +03/23/2018,Politicians,@AKWeissman,"RT @RajivRajani1: @Sean_Callahan @Andy_Staples Truth. @IlSognoSA @AKWeissman @CuredatPearl @HistoricPearl @TheHotelEmma + +On river walk but…" +03/21/2018,Politicians,@AKWeissman,@chocolatbises Thank you. Hope u r well! +03/21/2018,Politicians,@AKWeissman,RT @chocolatbises: @AKWeissman Congratulations! +03/21/2018,Politicians,@AKWeissman,@BBQsnob can you follow me for a sec so I can DM you? +03/21/2018,Politicians,@AKWeissman,@WGHarris77 Thanks! Looking forward to having coffee or the like sometime in the near future! +03/21/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Congratulations! +03/21/2018,Politicians,@AKWeissman,RT @jonprado: @AKWeissman Well deserved. Congratulations! +03/21/2018,Politicians,@AKWeissman,RT @Brahma71: Congrats to the whole gang! https://t.co/kgWgi7DqWe +03/21/2018,Politicians,@AKWeissman,RT @RajivRajani1: @AKWeissman Unbelievable food. Tied with @IlSognoSA for best in town. +03/21/2018,Politicians,@AKWeissman,@neffhudson I appreciate that and thank you for your kind words-but seriously take the offer! +03/21/2018,Politicians,@AKWeissman,@neffhudson Sorry about that. Come by and show this to my wife for a free falafel sandwich. +03/21/2018,Politicians,@AKWeissman,*named best restaurant in the April addition of southern living. +03/21/2018,Politicians,@AKWeissman,This is just a part of the Signature crew that just got named best restaurant in Texas and second best in the south… https://t.co/XPZKZkPzbK +02/23/2018,Politicians,@AKWeissman,Come see us over at moshes so we can introduce you to extremely flavorful healthy eating!!!! +02/21/2018,Politicians,@AKWeissman,"RT @globaljmg: @AKWeissman @RAConomics @TXsecofstate @SAHispanicCC @SanAntonioEDF @CoSAEDD @Trevino_D1 @GreenblumRobbie we def missed you,…" +02/21/2018,Politicians,@AKWeissman,@RAConomics @TXsecofstate @SAHispanicCC @SanAntonioEDF @CoSAEDD @Trevino_D1 @globaljmg @GreenblumRobbie Damn I’m in the dark about erything! +02/21/2018,Politicians,@AKWeissman,RT @RAConomics: Trade trip to Israel October 2018@Ron_Nirenberg opened more economic hope for @TXsecofstate @SAHispanicCC @SanAntonioEDF @C… +02/19/2018,Politicians,@AKWeissman,@TheMontereySA The uptick in corn dog fellatio can be directly attributed to a “general feeling of wellness in the… https://t.co/TonmlZ8WjI +02/19/2018,Politicians,@AKWeissman,@TheMontereySA @MikeBoard1200 Agreed. #corndogging +02/19/2018,Politicians,@AKWeissman,@TheMontereySA agreed. https://t.co/KDTlRaCTxa +02/19/2018,Politicians,@AKWeissman,@TheMontereySA The good lord provides. +02/16/2018,Politicians,@AKWeissman,@StefanBowers And a stained jacket. Can you do us all a favor and teach them to say “behind” when passing? Also imp… https://t.co/KnVF5Gcu6U +02/15/2018,Politicians,@AKWeissman,RT @pastorkirkMD: That makes me laugh @AKWeissman I guess this is an appropriate time to confess my bowl of Cap’n Crunch https://t.co/Wyi8I… +02/15/2018,Politicians,@AKWeissman,@richmcneal85 Correction “orange drank” +02/15/2018,Politicians,@AKWeissman,@TheMontereySA Does not compute. *similiar aberration would be @TheMontereySA doing calisthenics. #shocking +02/15/2018,Politicians,@AKWeissman,@TheMontereySA My big fat fabulous life. +02/15/2018,Politicians,@AKWeissman,@JMCoyle The day is young my friend. +02/15/2018,Politicians,@AKWeissman,RT @JMCoyle: @AKWeissman No meat in there! Awesome +02/15/2018,Politicians,@AKWeissman,My diet is not only varied but kinda fu$&@d up. It’s only 11 and I have already consumed beets w/tahini a hothouse… https://t.co/6qxOZQJ8T5 +02/15/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Delizioso! +02/15/2018,Politicians,@AKWeissman,@chefjasondady @jwdanklefs @BIN555 Those are truly sick! #congrats!!!! +02/15/2018,Politicians,@AKWeissman,This is the salad course I created for the Valentine’s Day prixe fixe at Signature. Thanks to all my awesome staff… https://t.co/0Doh15UWLp +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @AKWeissman Outstanding +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @AKWeissman Awesome one of my favorite places. +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @foodhussy @AKWeissman @IlSognoSA Looks amazing +02/12/2018,Politicians,@AKWeissman,@foodhussy @IlSognoSA Please come see us out at signature😜 +02/12/2018,Politicians,@AKWeissman,RT @foodhussy: @AKWeissman Everybody was fantastic- Chef Chris and all the staff were a pleasure - especially dessert/salad guy. I was at t… +02/12/2018,Politicians,@AKWeissman,RT @foodhussy: Just arrived and the smells are amazing!!!!! I can’t wait for dinner! @IlSognoSA https://t.co/tDiIkgjdLh +02/10/2018,Politicians,@AKWeissman,Find out what you’ve been missing if you have not discovered Signature yet! @fedmanwalking https://t.co/maZqIOHEJh +07/01/2018,Politicians,@lpolgreen,@hels Embrace shorts. Thick legs and all. +06/30/2018,Politicians,@lpolgreen,@aterkel Sounds kinda like Obama tbh. +06/30/2018,Politicians,@lpolgreen,"RT @oneunderscore__: There’s something very, very wrong with whatever/whoever is running the AP Twitter account, and it’s been going on for…" +06/30/2018,Politicians,@lpolgreen,Fantastic column by ⁦@michelleinbklyn⁩. There are other heartlands that need visiting and serious journalistic enga… https://t.co/Tf3CgzUjbw +06/30/2018,Politicians,@lpolgreen,@chick_in_kiev I can only imagine what your mentions look like. Courage. 💪🏽👊🏽🙏🏽 +06/30/2018,Politicians,@lpolgreen,"RT @chick_in_kiev: Every journalist, especially female journalists, journalists of color and Jewish journalists, deals with threats and slu…" +06/30/2018,Politicians,@lpolgreen,RT @alyspereira: this is true and the craziest thing to me is when journalists post screenshots of horrible messages they get they usually… +06/30/2018,Politicians,@lpolgreen,RT @ChloeAngyal: One of the hardest parts about being on the receiving end of this abuse is not sharing it with the people who love you the… +06/30/2018,Politicians,@lpolgreen,"RT @MSNBC: ""We may have to turn American upside down to turn it right-side up,"" Rep. John Lewis says at immigration march in Atlanta. https…" +06/30/2018,Politicians,@lpolgreen,"RT @TrevorIrvin2: My cartoon of watching the Supreme Court turn to crap. +Regards, +T https://t.co/V5PsZ4KsGo" +06/30/2018,Politicians,@lpolgreen,"RT @deanemurphy: “They can build as many walls as they want,” one migrant from El Salvador said. “They can send as many soldiers to the bor…" +06/30/2018,Politicians,@lpolgreen,RT @kainazamaria: “I have almost reached the regrettable conclusion that the Negro’s great stumbling block in his stride toward freedom is… +06/30/2018,Politicians,@lpolgreen,RT @MattBinder: damn looks like we've got a real conundrum on our hands here https://t.co/pVDaJ0DvE9 +06/30/2018,Politicians,@lpolgreen,RT @jbouie: nice that the president under criminal investigation can nominate a justice who thinks presidents should be able to ignore crim… +06/30/2018,Politicians,@lpolgreen,"RT @HuffPost: At HuffPost, reporters have been doxed more than once. They get death threats. They’re Photoshopped into gas-chamber cartoons…" +06/30/2018,Politicians,@lpolgreen,"RT @rtraister: I wrote about minority rule, SCOTUS, Maxine Waters, Charlie Rose, Schumer Pelosi and Bernie, Alexandria Ocasio-Cortez, aboli…" +06/30/2018,Politicians,@lpolgreen,RT @tylerkingkade: I see my friends share some of these once in a while. But it’s still pretty jarring to see a bunch gathered in one servi… +06/29/2018,Politicians,@lpolgreen,RT @chernandburn: After publishing this months-long investigation into anti-Semitism at the largest 40 school districts in the Bay Area I r… +06/29/2018,Politicians,@lpolgreen,@chernandburn Thanks for doing what you do. Stay strong. +06/29/2018,Politicians,@lpolgreen,Journalists in newsrooms across the country have received similar messages. It’s the hidden reality of the job now.… https://t.co/osvWC1h0fU +06/29/2018,Politicians,@lpolgreen,"Our Hate Mail. A compilation of recent threats, slurs and other nastiness aimed at HuffPost journalists. Who are ju… https://t.co/STQdOzVMHz" +06/29/2018,Politicians,@lpolgreen,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/29/2018,Politicians,@lpolgreen,"RT @Robillard: HuffPost watched Germany crash out of the World Cup with a member of the country’s right-wing party, AfD. + +He blamed player…" +06/29/2018,Politicians,@lpolgreen,"Love this love letter to @capgaznews by @hilella, who grew up in Annapolis. https://t.co/upPC1YaPhY" +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh I don’t know so much of the caffeine impact is olfactory. Same for nicotine tbh. +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh I’m a fan! Having given it up I’m... aware of its appeal. +06/29/2018,Politicians,@lpolgreen,@poniewozik @gabrielsnyder You can download your tweets in a CSV file that is actually much more useful for archival purposes. +06/29/2018,Politicians,@lpolgreen,"@ashleyfeinberg @gabrielsnyder Find your courage, ashley." +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh Which is more addictive: nicotine or caffeine? I literally cannot function without the latter.… https://t.co/3gqjW6pNws +06/29/2018,Politicians,@lpolgreen,"RT @danielmarans: Seth Moulton styles himself a New Democrat, but given where the energies in his party lie at the moment, he sounds very m…" +06/29/2018,Politicians,@lpolgreen,@MikeIsaac https://t.co/WTv351l5hz +06/29/2018,Politicians,@lpolgreen,@gabrielsnyder I have mine set up to delete at 60 days but might go shorter. +06/29/2018,Politicians,@lpolgreen,@MikeIsaac I’m OBSESSED with this company’s story +06/29/2018,Politicians,@lpolgreen,"RT @MikeIsaac: i LOVE this story. an e-cigarette company raising money valued at a tech multiple. + +https://t.co/ElX7Ofy9BM" +06/29/2018,Politicians,@lpolgreen,RT @JeffYoung: Medicaid work requirements took a big hit in court today. Kentucky Gov. Matt Bevin (R) and the Trump administration were pla… +06/29/2018,Politicians,@lpolgreen,RT @ChloeAngyal: You guys. @Rowaida_Abdel and @letsgomathias have spent over a year tracking anti-Muslim hate all over the nation. Now @the… +06/29/2018,Politicians,@lpolgreen,RT @srl: Going to tweet a few transcribed exchanges from the most recent meeting of the Florida panel that has the sole power to restore vo… +06/29/2018,Politicians,@lpolgreen,The biggest cases this term often broke down along partisan lines https://t.co/JhH7SwZjqN via @HuffPostPol +06/29/2018,Politicians,@lpolgreen,"RT @dannysanchez: There is now a fund to aid the victims of the @capitalgazette shooting, administered by the Annapolis-based Anne Arundel…" +06/29/2018,Politicians,@lpolgreen,"The Capital was @hilella’s hometown paper. She has written a love letter to it, especially its coverage of teenager… https://t.co/d9LLU0XR29" +06/29/2018,Politicians,@lpolgreen,"“While there is no causality, there is a connection in the attitudes of this unhinged gunman and the president of t… https://t.co/xROAnr3SjV" +06/29/2018,Politicians,@lpolgreen,"“Rejection needs to be normalized, not catastrophized.” https://t.co/Mxnx3repzA" +06/29/2018,Politicians,@lpolgreen,So excited about the moves @HuffPostUK is making. Follow along here! https://t.co/cPx5HrAKoU +06/29/2018,Politicians,@lpolgreen,"RT @thehighsign: Watching David Simon & his wife @LauraMLippman learn their close friends died at the Capital Gazette, while trolls mock th…" +06/29/2018,Politicians,@lpolgreen,"""Body positivity takes a movement that sought to rewrite the conversation about bodies and weight and acceptability… https://t.co/77EMknDCpj" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: Trump just now: ""Journalists, like all Americans should be free from the fear of being violently attacked while doing their j…" +06/29/2018,Politicians,@lpolgreen,RT @SherylNYT: Trump strategically stocked courts with Kennedy clerks. Also had a business relationship with Kennedy's son. Fascinating @ad… +06/29/2018,Politicians,@lpolgreen,RT @nickpwing: Small newsrooms: I want to talk to you. How are you responding to yesterday’s attack? Increased security? Discussions about… +06/29/2018,Politicians,@lpolgreen,RT @abogada_laura: My 5-yr-old client can’t tell me what country she is from. We prepare her case by drawing pictures with crayons of the g… +06/29/2018,Politicians,@lpolgreen,@lisatozzi @shani_o My housemates (three blonde dogs) preclude black as a general rule. +06/29/2018,Politicians,@lpolgreen,@shani_o You’re too young for EF Shani +06/29/2018,Politicians,@lpolgreen,RT @YahooNews: A Democratic strategist says the first question Trump’s Supreme Court nominee should be asked is whether he or she was requi… +06/29/2018,Politicians,@lpolgreen,"RT @AshaRangappa_: You literally made a video for the NRA called ""We are coming for you, New York Times."" https://t.co/JukE2p9d8p" +06/29/2018,Politicians,@lpolgreen,RT @timkmak: Anne Arundel County Police says reports of suspect at Capital Gazette having mutilated his fingertips is untrue +06/29/2018,Politicians,@lpolgreen,"RT @maxwellstrachan: Stuyvesant's valedictorian: Find a way to diversify my school + +This is a wonderful speech by a teenager who is much sm…" +06/29/2018,Politicians,@lpolgreen,Twenty-five percent of the population can't detect bitterness. Those are the people who naturally love IPAs.… https://t.co/f7VWpBiNbz +06/29/2018,Politicians,@lpolgreen,RT @paulwaugh: EXCLUSIVE by @owenjbennett: Brexit 'bad boy' Richard Tice puts himself forward to be Tory candidate for London mayor https:/… +06/29/2018,Politicians,@lpolgreen,"RT @HuffPost: “We are seeing the consequences of when one vision is realized, or in charge.” https://t.co/Dd9PfPc35t" +06/29/2018,Politicians,@lpolgreen,"RT @maggieNYT: Supporting local journalism is important, what happened today is sickening. This alleged gunman appears to have had a longst…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: ┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| _ +┻┳| •.•) it's nice seeing people fired up about li…" +06/29/2018,Politicians,@lpolgreen,"RT @lkmcgann: I could barely read the final lines of this story...the Gazette staff's moving commitment to their craft, community and colle…" +06/29/2018,Politicians,@lpolgreen,"RT @sherifink: Ever wonder how @nytimes works and what standards are applied to strive for a trustworthy, unbiased news report? An ongoing…" +06/29/2018,Politicians,@lpolgreen,"“In essence, the Eighth Amendment meant whatever Justice Kennedy thought it meant,” said one death penalty expert.… https://t.co/T7crG4kKTm" +06/29/2018,Politicians,@lpolgreen,"RT @PamelaPaulNYT: Looking for a big, engrossing epic novel to sink into this summer? We are thrilled to announce that Min Jin Lee’s “Pachi…" +06/29/2018,Politicians,@lpolgreen,"RT @noahmichelson: Beware women who tell other women the answer to America's problems is for them to embrace a return to ""modesty"" and thei…" +06/29/2018,Politicians,@lpolgreen,"RT @jessicabennett: “My title is Dr. Fern Riddell, not Ms. or Miss Riddell. I have it because I am an expert... I worked hard to earn my au…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: A day after the shootings, Capital Gazette leaves its editorial section blank https://t.co/IlMrrm562v" +06/29/2018,Politicians,@lpolgreen,"RT @Yamiche: At least 41 journalists have been killed this year, according to data from the Committee to Protect Journalists. https://t.co…" +06/29/2018,Politicians,@lpolgreen,RT @shelbygrad: Every journalist’s nightmare. https://t.co/LiIoTKWJnP https://t.co/Nl5vxzDiif +06/29/2018,Politicians,@lpolgreen,RT @adamgoldmanNYT: #journalism https://t.co/Ds7HrnUzhS +06/29/2018,Politicians,@lpolgreen,Would you look at that tan suit. What a scandal. https://t.co/FkdKJr0jzr +06/29/2018,Politicians,@lpolgreen,Each one a heartbreak. https://t.co/HkU1mTjMbz +06/29/2018,Politicians,@lpolgreen,"RT @Robillard: I’m having a hard time articulating my thoughts right now, but as I attempt to sleep, I’ll leave you with this: + +On Monday n…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: Barrett was also a member of a tightly knit Christian group called People of Praise, -- where men are referred to as “heads”…" +06/29/2018,Politicians,@lpolgreen,RT @qualityrye: Gabrielle Giffords is correct https://t.co/TEIKamu0SF https://t.co/1HhOLSZf9r +06/29/2018,Politicians,@lpolgreen,RT @AMLwhere: The climate in which journalists now work: “More and more democratically-elected leaders no longer see the media as part of d… +06/28/2018,Politicians,@lpolgreen,"RT @Poynter: Today's an unwelcome reminder that journalism is difficult and dangerous work +https://t.co/QNwYic7WkY https://t.co/G1lAeLxHz0" +06/28/2018,Politicians,@lpolgreen,My first job was at the Albany Times Union. It felt exactly like this. Family. https://t.co/s1HFMUtZ7o +06/28/2018,Politicians,@lpolgreen,"RT @hilella: I am from Annapolis, MD. I was featured in The Capital a bunch of times as a kid, mostly for my field hockey stats (I was the…" +06/28/2018,Politicians,@lpolgreen,"RT @YahooNews: Though Democrats are the minority party on Capitol Hill, they are promising to mount a furious opposition campaign to Trump’…" +06/28/2018,Politicians,@lpolgreen,My Alma Mater. https://t.co/uhzuNiLbbK +06/28/2018,Politicians,@lpolgreen,"RT @NBCNews: BREAKING: White male suspect in Maryland newsroom shooting has been identified via use of facial recognition technology, and l…" +06/28/2018,Politicians,@lpolgreen,Damn right. And we all stand with you. Can’t wait to read it. https://t.co/7tsrsg3nqI +06/28/2018,Politicians,@lpolgreen,Hilarious. https://t.co/UOQrYjAMHA +06/28/2018,Politicians,@lpolgreen,RT @joshuamckerrow: Continuing to cover story with Capital journalists Chase Cook and Pat Ferguson. Thanks to our @baltimoresun colleagues… +06/28/2018,Politicians,@lpolgreen,"@marinafang @paigelav @womenjournos Way to go, @marinafang!!!" +06/28/2018,Politicians,@lpolgreen,RT @kathrynw5: >>> A law enforcement source tells one of my CBS News colleagues that the Annapolis shooting suspect damaged his finger tips… +06/28/2018,Politicians,@lpolgreen,"RT @HuffPost: ""I’ve been saying now for days that something horrible was going to happen because of the rhetoric. Really Maxine?"" said Sean…" +06/28/2018,Politicians,@lpolgreen,RT @bariweiss: Ramzi Yousef. Richard Reid. Mohammad Atta. The Tsarnaev brothers. None of these evil men would have been barred by Trump's t… +06/28/2018,Politicians,@lpolgreen,"RT @wesyang: Remarkable 23 percent shift away from D to R among white millennial men since 2016. https://t.co/GXv9HKZKFL + +Genuinely curio…" +06/28/2018,Politicians,@lpolgreen,Devastating thread. https://t.co/xB7gzBaMMw +06/28/2018,Politicians,@lpolgreen,"RT @PeterAlexander: And, thank you to the Capital Gazette journalists who, under the worst imaginable circumstances, keep reporting about a…" +06/28/2018,Politicians,@lpolgreen,"RT @JaneLytv: This is a fake New York Times screenshot. + +(The nope is my addition to avoid spread.) https://t.co/fkEH6tJWyl" +06/28/2018,Politicians,@lpolgreen,"RT @fordm: A small but meaningful response to the Capital Gazette tragedy would be to subscribe to a similar local newspaper in your area,…" +06/28/2018,Politicians,@lpolgreen,"RT @Wolfe321: At CPJ, we waited until we were clear that a murder/death of a journalist was related to their #journalism before we wrote up…" +06/28/2018,Politicians,@lpolgreen,"As I type this, NYPD officers are guarding the building where my colleagues and I work. This is essential context f… https://t.co/8uKvmvfoM9" +06/28/2018,Politicians,@lpolgreen,Talking about the violent threats journalists face in America today is not the same as speculating about motive. +06/28/2018,Politicians,@lpolgreen,"We know nothing about the shooter’s motive, but that hasn’t stopped some from celebrating the attack. https://t.co/baY4dIXm36" +06/28/2018,Politicians,@lpolgreen,My god. Five dead. More “gravely injured.” +06/28/2018,Politicians,@lpolgreen,"“But as much as I’m going to try to articulate how traumatizing it is to be hiding under your desk, you don’t know… https://t.co/8sethgq2hj" +06/28/2018,Politicians,@lpolgreen,"RT @Mosheh: Latest from @CBSNews investigative unit: Suspect in @capitalgazette shooting is white, male, in his 20s, had no ID on him and r…" +06/28/2018,Politicians,@lpolgreen,"A lot of us experience this. I was doxed a couple of weeks ago, along with several colleagues. Phone numbers, home… https://t.co/uGkfRREmfr" +06/28/2018,Politicians,@lpolgreen,RT @jeffjarvis: Police outside The New York Times now. Thank goodness. https://t.co/6ICl9JMKeD +06/28/2018,Politicians,@lpolgreen,RT @hunterw: Seeing more than a few journalists who should know better tweeting stuff like police scanner chatter and speculation about the… +06/28/2018,Politicians,@lpolgreen,RT @JaneLytv: 1. The suspect is NOT SAM HYDE. This is the #1 hoax during breaking news situations. https://t.co/yIA7aTAtYI +06/28/2018,Politicians,@lpolgreen,RT @AlecMacGillis: It's becoming ever clearer that Mitch McConnell is the Keyser Soze of our times. New @propublica and @nytimes: https://t… +06/28/2018,Politicians,@lpolgreen,RT @jbendery: Susan Collins and Lisa Murkowski do say they are pro-choice -- and have voted to confirm ALL of Trump's anti-abortion lifetim… +06/28/2018,Politicians,@lpolgreen,"RT @DTOhl: I don't have many details right now. My colleagues Phil Davis, Chase Cook, Anthony Messenger, Rick Hutzell and Selene San Felice…" +06/28/2018,Politicians,@lpolgreen,RT @BenWeathers83: Devasted. Just devasted. +06/28/2018,Politicians,@lpolgreen,RT @merrillwilliams: Our family business for 40 years. Great people. We are devasted and praying for entire @capgaznews team. #annapolis… +06/28/2018,Politicians,@lpolgreen,"RT @ShaneGoldmacher: ""Mooooooooommmmmmm"" + +https://t.co/qEvKt8qpC2 https://t.co/4RGjOM5ChI" +06/28/2018,Politicians,@lpolgreen,RT @MattStoneABC: .@ABC News going live with a special report momentarily- reports of multiple people injured in a shooting at Capital Gaze… +06/28/2018,Politicians,@lpolgreen,RT @michaelroston: I deleted a tweet about the shooting in Annapolis at the Capital Gazette because I didn't want it to be misinterpreted -… +06/28/2018,Politicians,@lpolgreen,"RT @Jean_Marbella: Keep our colleagues in your thoughts, please https://t.co/Q0ZoWsa26r" +06/28/2018,Politicians,@lpolgreen,RT @PhilDavis_CG: Gunman shot through the glass door to the office and opened fire on multiple employees. Can't say much more and don't wan… +06/28/2018,Politicians,@lpolgreen,"RT @PhilDavis_CG: A single shooter shot multiple people at my office, some of whom are dead." +06/28/2018,Politicians,@lpolgreen,Absolutely chilling tweet from a reporter at the Capital Gazette. https://t.co/tsWsGm2NvD +06/28/2018,Politicians,@lpolgreen,RT @b_fung: Just a quick reminder to everyone that we don't yet know who the suspect or what the motive was. +06/28/2018,Politicians,@lpolgreen,RT @awprokop: WSJ says Nick Ayers is a frontrunner to replace John Kelly as chief of staff. @VickyPJWard had quite the profile of Ayers a f… +06/28/2018,Politicians,@lpolgreen,I went to college in Annapolis and both my parents live there now. It’s a small town at heart. This is heartbreakin… https://t.co/5bi0NR01lC +06/28/2018,Politicians,@lpolgreen,RT @Robillard: I interned at the Capital Gazette in college. This is surreal and awful. https://t.co/irFp5U8BiH +06/28/2018,Politicians,@lpolgreen,"RT @feliciasonmez: Barbara Lee, a stalwart of the left, considering bid for House Democratic leadership, @daveweigel reports: https://t.co/…" +06/28/2018,Politicians,@lpolgreen,"RT @Noahpinion: Wow, this is big news. The number of Americans who think legal immigration should be increased has surpassed the number who…" +06/28/2018,Politicians,@lpolgreen,@michaelbd Hard agree! +06/28/2018,Politicians,@lpolgreen,This is very true. https://t.co/8m95UVzlej +06/28/2018,Politicians,@lpolgreen,"Good marching orders for reporters, which we follow here at HuffPost: “Get closer to what voters are thinking and f… https://t.co/em13nsqnGM" +06/28/2018,Politicians,@lpolgreen,@emilynussbaum That was some smart assigning! +06/28/2018,Politicians,@lpolgreen,Great review of ⁦@Hannahgadsby⁩’s Nanette in the New Yorker. Genius assignment: ⁦⁦@MoiraDonegan⁩ https://t.co/RnPhO2RN3M +06/28/2018,Politicians,@lpolgreen,RT @danielmarans: Alexandria Ocasio-Cortez's ad stands out as a tipping point that both reflected her strengths as a candidate and amplifie… +06/28/2018,Politicians,@lpolgreen,"""The Supreme Court, Congress and the executive branch are instruments of political power. All three are currently b… https://t.co/1MuCG8culC" +06/28/2018,Politicians,@lpolgreen,"@joelpollak @AliVelshi @ThePlumLineGS I think it’s a much broader set of concerns than gay marriage, ACA and Roe." +06/28/2018,Politicians,@lpolgreen,RT @JackMorrison208: The green light from the great gatsby was from a juul +06/28/2018,Politicians,@lpolgreen,Here's what it's like to endure wildfire season in California: “We’re getting used to it. You’ve got to have your b… https://t.co/8lwVpOyKlZ +06/28/2018,Politicians,@lpolgreen,"""So we tweet on, users against the content, borne back ceaselessly into our favs.” https://t.co/Rj23Tr8rxm" +06/28/2018,Politicians,@lpolgreen,RT @nytopinion: Anthony Kennedy’s retirement means the Supreme Court is likely to side more often with those who already have power — and a… +06/28/2018,Politicians,@lpolgreen,@KimBhasin @Gothamist 🙏🏾 +06/28/2018,Politicians,@lpolgreen,What a jerk. https://t.co/kHtGwynoIg +06/28/2018,Politicians,@lpolgreen,"RT @mediagazer: Sources: Fox News CEO Suzanne Scott tells producers they must protect the talent and brand, and will be held accountable fo…" +06/28/2018,Politicians,@lpolgreen,RT @Ocasio2018: A Girl Has No Name: Headlines from the Political Patriarchy https://t.co/xohAiHSk3b +06/28/2018,Politicians,@lpolgreen,"RT @Robillard: NEW: The Foxconn deal Scott Walker and President Trump are celebrating today? + +Polls say it’s unpopular, and Democrats want…" +06/28/2018,Politicians,@lpolgreen,A gay rights lawyer argues that Kennedy’s true legacy will be this: deliberately choosing to let Trump choose and t… https://t.co/Tsi5tk2djx +06/28/2018,Politicians,@lpolgreen,Good morning. https://t.co/sx1krY8ZvH +06/28/2018,Politicians,@lpolgreen,RT @ashleyfeinberg: outsourcing all my research to teens now https://t.co/r1g9W44zVj +06/28/2018,Politicians,@lpolgreen,"“We’d use a coat hanger, like our grandmothers did.” https://t.co/fQ0VNYe1vW by @mtredden" +06/28/2018,Politicians,@lpolgreen,"RT @joshtpm: Trump: ""We have more money and more brains and better houses and apartments and nicer boats. We are smarter than they are. The…" +06/28/2018,Politicians,@lpolgreen,Justice Elena Kagan Says The Supreme Court Turned The First Amendment 'Into A Sword' https://t.co/Y0XCszFetK +06/28/2018,Politicians,@lpolgreen,"RT @HuffPost: ""In the near future, getting abortions and transporting people to places where they can still get them will require massive f…" +06/28/2018,Politicians,@lpolgreen,RT @seungminkim: It should be noted here that Heitkamp voted for Gorsuch. https://t.co/9bGOf4tFLm +06/28/2018,Politicians,@lpolgreen,"RT @NinaBernstein1: “For those who face the future in fear after Wednesday, there are no easy answers — but there is a clear duty. Do not f…" +06/28/2018,Politicians,@lpolgreen,RT @NAACP_LDF: “This is no time for leaning back and reclining and doing milquetoast politics. This is about the future of our democracy… i… +06/28/2018,Politicians,@lpolgreen,"RT @AriMelber: Does POTUS have to turn over evidence in a criminal probe, like the Nixon tapes? + +Must a POTUS testify before a grand jury?…" +06/28/2018,Politicians,@lpolgreen,RT @chrislhayes: None of what happens now has anything to do with arguments or persuasion but solely the calculated use of maximal applicat… +06/28/2018,Politicians,@lpolgreen,RT @MaraGay: The liberal base is on fire https://t.co/3FOz8OSXBG +06/28/2018,Politicians,@lpolgreen,"RT @ChloeAngyal: ""Opposition to abortion is not just about hostility to abortion or even discomfort with women’s sexuality. At its core, op…" +06/28/2018,Politicians,@lpolgreen,RT @emilysteel: Bill Shine was ousted last year amid the sexual harassment scandal at Fox News. He now is expected to be offered the job of… +06/28/2018,Politicians,@lpolgreen,Democrats Demand GOP Follow 'McConnell Rule' And Delay Supreme Court Hearing. Good luck. https://t.co/1ElMhnoD9Q +06/27/2018,Politicians,@lpolgreen,Bless you @petridishes. https://t.co/PgDYPqe1CL +06/27/2018,Politicians,@lpolgreen,RT @AsteadWesley: The typical US Congress member is 12 times richer than the typical American household. https://t.co/cS8Ex3oGPC +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: On abortion rights + Trump's SCOTUS pick: + +On one hand, GOP can't afford to lose any votes to confirm Trump's pick & there a…" +06/27/2018,Politicians,@lpolgreen,@joelpollak That was before McConnell made the rule! +06/27/2018,Politicians,@lpolgreen,RT @danielmarans: A model for left activists who *sometimes sound* like they think inclusive framing and organizing is tantamount to selli… +06/27/2018,Politicians,@lpolgreen,"RT @Ocasio2018: I completely agree with @SenSanders. Interpretations of “us vs them” are unproductive in our discourse and, in my opinion,…" +06/27/2018,Politicians,@lpolgreen,RT @zachdcarter: Here is a take you might have cared about three hours ago. https://t.co/v0cFSuUdGs +06/27/2018,Politicians,@lpolgreen,"RT @joshrogin: Hey guys, Assad has started a fresh campaign of murder and atrocities, this time near the border with Jordan. In case anyone…" +06/27/2018,Politicians,@lpolgreen,RT @chrislhayes: Kennedy handing his seat over to Trump is the most perfect example *ever* about how it is all the party of Trump. All of i… +06/27/2018,Politicians,@lpolgreen,"RT @jbouie: This is absolutely true. + +McCain: https://t.co/drd5Zvecj8 + +Chuck Grassley and Orrin Hatch: https://t.co/qd1teGbEP9 + +And conserv…" +06/27/2018,Politicians,@lpolgreen,RT @jackmjenkins: Oh yeah there was that time John McCain promised that Republicans would block ANY Supreme Court nominee by Clinton if she… +06/27/2018,Politicians,@lpolgreen,“The funny thing about beginnings is that you rarely know you’re in them. ... My beginning was losing a parent to c… https://t.co/fP6SEKl4RP +06/27/2018,Politicians,@lpolgreen,The Supreme Court's ruling isn't just a blow to organized labor. https://t.co/Ac2f3bqghK via @HuffPostPol +06/27/2018,Politicians,@lpolgreen,"RT @jamieson: The kicker to Kagan's dissent in Janus was brutal: She referred to the majority as ""black-robed rulers overriding citizens' c…" +06/27/2018,Politicians,@lpolgreen,"RT @HuffPost: The Supreme Court found regulations on ""crisis pregnancy centers"" unconstitutional. What about laws that force abortion provi…" +06/27/2018,Politicians,@lpolgreen,"RT @gabrielroth: everyone on twitter: why are we wasting our lives on this disgusting hell site +jonathan franzen: wow sounds bad, i'm going…" +06/27/2018,Politicians,@lpolgreen,"RT @Max_Fisher: Entirely possible that by 2020 we have a situation in which: + +• Democrats have won 6 out of the last 7 popular votes for pr…" +06/27/2018,Politicians,@lpolgreen,RT @aterkel: Here’s what Schumer told me in January 2017 on how he’d be looking at Roe v Wade as a major indicator for a SCOTUS nominee htt… +06/27/2018,Politicians,@lpolgreen,"Telling that Schumer singles out that issue, as opposed to, say, voting rights. https://t.co/4jsgoqQ45d" +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: no it won't, he does not care https://t.co/dj3wSmJNQD" +06/27/2018,Politicians,@lpolgreen,"RT @JakeSherman: Here is what McConnell said about not holding confirmation hearings on Garland and keeping the seat open: + +""I think it was…" +06/27/2018,Politicians,@lpolgreen,"RT @bjmartino: I felt a great disturbance in the Polling Community, as if millions of questionnaires suddenly cried out in terror, and were…" +06/27/2018,Politicians,@lpolgreen,She already is but ok! https://t.co/lpm3ZopyIA +06/27/2018,Politicians,@lpolgreen,"RT @NBCNews: @PeteWilliamsNBC JUST IN: “There’s no presidential election this year,"" Majority Leader McConnell says when asked if he thinks…" +06/27/2018,Politicians,@lpolgreen,"RT @DaviSusan: .⁦@SenatorDurbin⁩ immediately calls to postpone SCOTUS vote until after midterms. Not gonna happen. But, wow, is this gonna…" +06/27/2018,Politicians,@lpolgreen,That’s an interesting idea! https://t.co/zbot7donH2 +06/27/2018,Politicians,@lpolgreen,"RT @Robillard: Timely story from @igorbobic, @aterkel and @jbendery: “Democrats Regret Not Fighting Harder For Obama’s Supreme Court Pick”…" +06/27/2018,Politicians,@lpolgreen,RT @kaitlancollins: Big news from the pool — Trump says he will pick Anthony Kennedy’s replacement from his existing list of 25 potential n… +06/27/2018,Politicians,@lpolgreen,Welp. https://t.co/XvREwDxuH4 +06/27/2018,Politicians,@lpolgreen,RT @JeffreyToobin: Anthony Kennedy is retiring. Abortion will be illegal in twenty states in 18 months. #SCOTUS +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: Well the timing of this story was unexpectedly good. + +Let's see what Senate Dems are prepared to do this time around. https:/…" +06/27/2018,Politicians,@lpolgreen,Welp +06/27/2018,Politicians,@lpolgreen,His departure will likely tilt the balance of the court further to the right. https://t.co/lFM4nwdoQX +06/27/2018,Politicians,@lpolgreen,RT @katierogers: SCOTUS loses its swing vote. Speaking of voting: it always matters. https://t.co/Rf0xpZR6kO +06/27/2018,Politicians,@lpolgreen,"RT @PoliticoScott: Some quick census stats on #NY14: 49% Latino, 23% white, 17% Asian, 9% black + +There are 31 Dem House seats where whites…" +06/27/2018,Politicians,@lpolgreen,"RT @KatrinaNation: Great Ocasio-Cortez quote: +https://t.co/rHcgOvqPSW +“I can’t name a single issue w roots in race that doesn’t have econom…" +06/27/2018,Politicians,@lpolgreen,Now that Slack is back Twitter will be a little less extra. +06/27/2018,Politicians,@lpolgreen,RT @Hadas_Gold: The melding of Fox News and the White House is nearly complete. +06/27/2018,Politicians,@lpolgreen,RT @jessicabennett: Thrilled to announce @Maya__Salam will join @nytimes gender team as newsletter writer & jane-of-all-trades. About Maya:… +06/27/2018,Politicians,@lpolgreen,Sounds perfect for the job. https://t.co/pFhLzj4wYO https://t.co/ULGQFTbGlI +06/27/2018,Politicians,@lpolgreen,RT @natefc: the word schadenfreude was created for this literal moment +06/27/2018,Politicians,@lpolgreen,Fair and balanced. https://t.co/vcxurGmrld +06/27/2018,Politicians,@lpolgreen,"RT @maggieNYT: Our story coming soon on Bill Shine, who golfed with Hannity - his close friend - and Trump at Mar-a-Lago in March. Shine li…" +06/27/2018,Politicians,@lpolgreen,"RT @evgennari: First *man.* + +@MiaHamm did it first. https://t.co/CLNhhyNAjI" +06/30/2018,Politicians,@Schriock1,I'm so proud of our women who are speaking out and marching today. The separation of families is horrific — and hig… https://t.co/eByGreIkDA +06/30/2018,Politicians,@Schriock1,RT @GwenGraham: “This isn’t just the best woman for the job. This is the best person to be Florida’s next governor! The very best candidate… +06/29/2018,Politicians,@Schriock1,Our interns are the best! https://t.co/JBC5TaamBL +06/29/2018,Politicians,@Schriock1,"If we want to fight back against the Trump administration, we need to send @vgescobar and pro-choice Democratic wom… https://t.co/v1I0DZ36Gz" +06/29/2018,Politicians,@Schriock1,"@emilyslist I may have some fear, but I am motivated by hope. I am motivated by the energy I see every day at… https://t.co/rsQ3oiAlMT" +06/29/2018,Politicians,@Schriock1,"@emilyslist And most of all, be kind to one another. This fight will be hard. So we must have each other's backs an… https://t.co/Sozib3k75N" +06/29/2018,Politicians,@Schriock1,"Here's some things you can do: +✅ Tweet every day for candidates you support. +✅ Become a monthly donor to help… https://t.co/DpJBczEO50" +06/29/2018,Politicians,@Schriock1,@emilyslist .@emilyslist has a very big map — including governors' races and state legislative races that are going… https://t.co/wGOa0q2Ylk +06/29/2018,Politicians,@Schriock1,"I'm so proud of what my team at @emilyslist and our community have done this cycle. However, we must dig deeper now… https://t.co/8hRQi5kcsx" +06/29/2018,Politicians,@Schriock1,Trump has promised to criminalize abortion and punish women — and most of the Senate GOP is ready to fulfill that promise. +06/29/2018,Politicians,@Schriock1,We cannot allow them to take us back to the time of our mothers and grandmothers on abortion access or birth contro… https://t.co/2tAxrYovxK +06/29/2018,Politicians,@Schriock1,Extreme right-wing Republicans have been masterminding the takeover of our courts for decades. When we told you the… https://t.co/1v66O9WS1g +06/29/2018,Politicians,@Schriock1,"Even under the current administration, the past few weeks have been especially hard. We are all hurting. Your fear,… https://t.co/SWwKiEFErq" +06/28/2018,Politicians,@Schriock1,RT @emilyslist: Our own @Schriock1 is going to be on @TheBeatWithAri soon to talk about SCOTUS and the impact on #ReproRights — tune in. +06/27/2018,Politicians,@Schriock1,Elections have consequences. The GOP will use this opportunity to nominate an anti-choice justice to the Supreme Co… https://t.co/XRe7yWvcpP +06/27/2018,Politicians,@Schriock1,Today's #Janus decision is deeply disappointing. I stand with my union sisters and brothers — we will keep fighting… https://t.co/3KO5vFLgxf +06/27/2018,Politicians,@Schriock1,RT @emilyslist: Congrats to @RepDMB on winning her primary! https://t.co/Z8y6XSvyoF +06/27/2018,Politicians,@Schriock1,RT @emilyslist: Congrats to @liuba4congress on winning her primary! https://t.co/W712herAGQ +06/27/2018,Politicians,@Schriock1,"Thanks for your support of @emilyslist, @JoshMalina! And thanks for helping us get out the vote for our pro-choice… https://t.co/CErOWmdNDv" +06/26/2018,Politicians,@Schriock1,The #NIFLAvBecerra decision is devastating. It will let fake clinics lie to vulnerable women and withhold potential… https://t.co/zDNV9sJjzw +06/26/2018,Politicians,@Schriock1,"“Congress has a moral obligation to take a stand and say that families should not be forcibly separated."" —… https://t.co/rvoM6D604G" +06/25/2018,Politicians,@Schriock1,"Remember the time before the Affordable Care Act, when women were routinely charged more for health care because of… https://t.co/Dch3DuNhmf" +06/25/2018,Politicians,@Schriock1,Here's a hot take for you: Maybe more Democratic women are winning because they're just the best candidates in the… https://t.co/Ti6nKC7nkY +06/24/2018,Politicians,@Schriock1,"Trump attacked @RosenforNevada and @elizabethforma with racist and petty insults yesterday, and Sen. Heller embrace… https://t.co/kvB0BCEfx4" +06/22/2018,Politicians,@Schriock1,"RT @GwenGraham: Florida Democrats, are you ready for this year's Leadership Blue? Join me, EMILY's List President @Schriock1 and more speci…" +06/22/2018,Politicians,@Schriock1,"We're so proud to endorse @liuba4congress today! As a mother to young children, Liuba has a crucial perspective of… https://t.co/UyrF3IXMCM" +06/22/2018,Politicians,@Schriock1,RT @nowthisnews: These 17 congresswomen have zero tolerance for children being ripped from their mothers at the border https://t.co/8JeCjz6… +06/22/2018,Politicians,@Schriock1,The stories that @PramilaJayapal is highlighting from the mothers who have been separated from their children are h… https://t.co/HBUXYcfB8C +06/21/2018,Politicians,@Schriock1,Our work isn't done. We need to keep fighting for these families: https://t.co/1CouCLSM2E #KeepFamiliesTogether https://t.co/fc4zgha5Ax +06/20/2018,Politicians,@Schriock1,"Thank you @JoeBiden! @emilyslist agrees, @Michelle4NM has been a champion for New Mexico families, and we need to e… https://t.co/b0e5tMLhFm" +06/20/2018,Politicians,@Schriock1,.@vgescobar was so powerful on @hardball last night. I'm so grateful for her leadership on behalf of these families… https://t.co/rii1swyEug +06/20/2018,Politicians,@Schriock1,Trump swore up and down that he couldn't do anything. He's proven himself a liar. But this order leaves a lot of ve… https://t.co/hoy2IqkYot +06/20/2018,Politicians,@Schriock1,"It feels like the entire internet has already seen @keldahelenroys' amazing video ""Our Girls,"" but if you haven't s… https://t.co/cmCxpgmzyV" +06/20/2018,Politicians,@Schriock1,"@emilyslist @MikeBloomberg @howiewolf From @JenniferWexton & @LucyWins2018 fighting against gun violence, to… https://t.co/0ttWvGNalw" +06/20/2018,Politicians,@Schriock1,".@emilyslist has partnered with @MikeBloomberg and @howiewolf in the past to win elections, and we know just how sm… https://t.co/AhGiAAFOFt" +06/20/2018,Politicians,@Schriock1,Thank you @PramilaJayapal for making sure these mothers' voices are being heard. https://t.co/3X4Bu5vDXP +06/20/2018,Politicians,@Schriock1,Pennsylvania currently has no women in its Congressional delegation. Today @emilyslist is proud to endorse our FOUR… https://t.co/FUkO0h8hO7 +06/18/2018,Politicians,@Schriock1,It's okay to have questions about running for office! Our #RunToWin Training Center has you covered. How many lesso… https://t.co/nvKno3djWm +06/18/2018,Politicians,@Schriock1,The separation of children from their families is horrifying us all. I'm so grateful for @vgescobar's leadership. W… https://t.co/xOaQ87nLYB +06/15/2018,Politicians,@Schriock1,Trump's behavior during the North Korea summit was sickening. Equally sickening was the complicity of congressional… https://t.co/zjgtIi9zYn +06/15/2018,Politicians,@Schriock1,"So thrilled to see @wildforcongress and @Axne4Congress on the @dccc's Red to Blue list! They've worked hard, and… https://t.co/XU8wM7gBoY" +06/15/2018,Politicians,@Schriock1,I really enjoyed joining The Opposition earlier this year. Good luck on whatever comes next for you and your team!… https://t.co/9ILLbORlRv +06/15/2018,Politicians,@Schriock1,I had so much fun joining you both on the podcast! https://t.co/2wUvRV7YKV +06/15/2018,Politicians,@Schriock1,"Sisters, either you run for office, or you help another woman run for office! Help us make 2018 a historic year — c… https://t.co/Uf7Y1uOW5m" +06/14/2018,Politicians,@Schriock1,We've been laying the groundwork for this moment for 30 years. But we couldn't do anything without the truly except… https://t.co/ADnztc6SOt +06/14/2018,Politicians,@Schriock1,".@emilyslist is proud to be standing beside Gov. @GinaRaimondo. She IS a champion for reproductive health care, and… https://t.co/TXXmntXBPj" +06/13/2018,Politicians,@Schriock1,The Trump administration's attacks on the Affordable Care Act will be devastating to women and families. Women are… https://t.co/G1lw4loYMB +06/13/2018,Politicians,@Schriock1,Want to help @emilyslist elect a historic number of pro-choice Democratic women this cycle? We're looking for a pol… https://t.co/tsA2x0frSi +06/13/2018,Politicians,@Schriock1,"What a great night for our candidates! Congratulations to @ElaineLuriaVA, @SpanbergerVA07, @SusieLeeNV, and… https://t.co/12oVHB7fhi" +06/11/2018,Politicians,@Schriock1,Ridiculous — and insulting. @SpanbergerVA07 has had nothing handed to her. No woman candidate ever does. If anythin… https://t.co/0Bo8kDmmz9 +06/11/2018,Politicians,@Schriock1,"I had such a great time joining @cortneyt and @libbyirwin for a chat with @pantsuitnation today! Ladies, this is ou… https://t.co/CjrpFQZAPt" +06/07/2018,Politicians,@Schriock1,This is such a powerful interview. NEVER underestimate @mazieforhawaii! https://t.co/seb7lZvFPA +06/07/2018,Politicians,@Schriock1,RT @emilyslist: Thank you @ginaortizjones for dropping in to say hello today! We can't wait to help elect you this November! https://t.co/i… +06/06/2018,Politicians,@Schriock1,"RT @Deb4CongressNM: Thank you @emilyslist! +#nm01 #nmpol #ruready #befierce https://t.co/OkNKDncxRO" +06/06/2018,Politicians,@Schriock1,"It's a SWEEP in New Jersey, Iowa, and New Mexico for our congressional and gubernatorial endorsements! Congratulati… https://t.co/CpadtksQ91" +06/05/2018,Politicians,@Schriock1,"New Jersey, Iowa, New Mexico, California, Missouri — get out and vote today! https://t.co/ZspYmtd3WM" +06/04/2018,Politicians,@Schriock1,RT @amandalitman: Dream job alert: @emilyslist is hiring an Email Director. Raise money and connect with supporters to hire pro-choice Demo… +06/01/2018,Politicians,@Schriock1,.@staceyabrams is leading in the #GAGov race! This shows what we've known all along — Stacey is the strongest candi… https://t.co/Nn7D4OGblc +06/01/2018,Politicians,@Schriock1,"Here at @emilyslist, we have been so proud of all the incredible things that @GinaRaimondo has accomplished during… https://t.co/LYmYY8PJux" +06/01/2018,Politicians,@Schriock1,"Yes! We're focused on electing #LGBTQ women like @KateBrownForOR, @tammybaldwin, @kyrstensinema, @ginaortizjones,… https://t.co/9ocxwuAe7M" +05/30/2018,Politicians,@Schriock1,"And then on top of this, Trump's reckless policies are helping drive up gas prices. Together, rising health care pr… https://t.co/sCmxZ4kGFT" +05/29/2018,Politicians,@Schriock1,I'm so proud of @MikieSherrill for earning the @nytimes endorsement! She worked so hard to make this race one of ou… https://t.co/rMLyPCR42G +05/28/2018,Politicians,@Schriock1,"Yes. Today as I honor and remember those who gave their lives, I will also be thinking of veterans like my dad. We… https://t.co/wW5W4UBEue" +05/26/2018,Politicians,@Schriock1,"Congratulations to all of the organizers, activists, and voters in Ireland who helped achieve this incredible victo… https://t.co/ndkARJTRth" +05/25/2018,Politicians,@Schriock1,"Wow, @AbbyWambach, this speech is something else: ""Women are feared as a threat to our system, and we will also be… https://t.co/4WA2gt9PsV" +05/25/2018,Politicians,@Schriock1,Congratulations @Axne4Congress on earning the @DMRegister endorsement! #IA03 https://t.co/JUbPLKqHFh +05/25/2018,Politicians,@Schriock1,Trump and the GOP's sabotage of the Affordable Care Act has caused premium rates to skyrocket. They're treating hea… https://t.co/CkurfX4JuQ +05/25/2018,Politicians,@Schriock1,Thank you @apoliticalco for including me on your Gender Equality Top 100! My team and I are working harder than eve… https://t.co/cQcPBeXXlo +05/23/2018,Politicians,@Schriock1,"Congrats to all of our women who won their primaries tonight! @staceyabrams, @ginaortizjones, and @Lizzie4Congress… https://t.co/59EAYhasQR" +05/22/2018,Politicians,@Schriock1,Congrats @MayorBowser! I'm so happy for you and your new little one. All of us at @emilyslist are wishing you both… https://t.co/ymVeesfsj3 +05/20/2018,Politicians,@Schriock1,I was so happy to join @Giunchigliani in Nevada yesterday! @emilyslist is all-in to help her become Nevada's next g… https://t.co/Un9UK8Bzqh +05/20/2018,Politicians,@Schriock1,RT @Astrid_NV: It was great to join @Schriock1 of @emilyslist to support our wonderful Tia Chris @Giunchigliani in her bid for the First Fe… +05/19/2018,Politicians,@Schriock1,RT @Giunchigliani: Thank you so much to @Schriock1 for joining me for brunch and to @EMILYslist for your support. Nevada deserves a progres… +05/19/2018,Politicians,@Schriock1,Done. Let's show Republicans just how strong this community is. https://t.co/EeAJmHEDW9 +05/18/2018,Politicians,@Schriock1,Our endorsed Democratic women are PROUDLY pro-choice — and they are running for office in record numbers to fight b… https://t.co/egukhQhipd +05/18/2018,Politicians,@Schriock1,.@DonnaShalala is one of the most qualified and experienced women we've endorsed this cycle! We're proud to help he… https://t.co/yptjSLyCZH +05/16/2018,Politicians,@Schriock1,"RT @hardball: ""Those women marched back in their communities, they started organizing, and they started running."" @Schriock1 on Democratic…" +05/16/2018,Politicians,@Schriock1,"RT @hardball: ""We had our staff on the ground immediately, we knew we had an opportunity."" @Schriock1 on Democratic women winning House pri…" +05/16/2018,Politicians,@Schriock1,I'm going to be live from California with @HardballChris shortly to talk about our incredible pro-choice Democratic… https://t.co/upf1erb8TT +05/16/2018,Politicians,@Schriock1,"Our women are storming the old boys' clubs! Well done @mad4pa, @HoulahanForPa, and @wildforcongress — on to Novembe… https://t.co/fDzSOvVxQm" +05/15/2018,Politicians,@Schriock1,"Pennsylvania, let's kick down the door to the old boys' club! Get out and vote for @RachelReddick, @mad4pa,… https://t.co/Rq317M3BUC" +05/11/2018,Politicians,@Schriock1,"Spread the word, Pennsylvania. John Morganelli does not represent #PA07's values. In Tuesday's primary election, vo… https://t.co/LtIsT2NZiM" +05/10/2018,Politicians,@Schriock1,One of the most common questions we get from the women we recruit and train is about how they'll be able to afford… https://t.co/QUlE5Op1YJ +05/10/2018,Politicians,@Schriock1,"Some incredible women are running for office in Pennsylvania, including @wildforcongress and @ChristaForPA189! Now… https://t.co/Nspe1XLiZo" +05/10/2018,Politicians,@Schriock1,Thank you @FullFrontalSamB for uplifting @RachelforOhio and @emilyslist! https://t.co/WcOxjRNeQp +05/09/2018,Politicians,@Schriock1,These victories confirm that we are seeing a sea change this year. The @emilyslist team has been working hard on th… https://t.co/Fiu3vCyER5 +05/09/2018,Politicians,@Schriock1,"RT @ilyseh: Thrilled to be in #PA07 w/my sister @Schriock1 to support @wildforcongress, a champ for women and families running against an a…" +05/09/2018,Politicians,@Schriock1,I joined my friend @ilyseh in Pennsylvania today to support @wildforcongress. Susan is the true pro-choice champion… https://t.co/O4SGGkYuX7 +05/07/2018,Politicians,@Schriock1,Pennsylvania is a state where @emilyslist wants to make a BIG impact up and down the ballot. I'm proud of my team f… https://t.co/OFUtUqACWJ +05/05/2018,Politicians,@Schriock1,"RT @MurrayCampaign: There’s that saying, behind every great man is a great woman. The truth? Behind every strong woman is a whole lot of ot…" +05/04/2018,Politicians,@Schriock1,This is infuriating. My dad is a veteran and a Democrat. And he is proud of his country. This is not the kind of le… https://t.co/ctAy9aMDoW +05/04/2018,Politicians,@Schriock1,".@DianneFeinstein has been a champion for California, passing critical and groundbreaking legislation. We need her… https://t.co/0fAtcRGNHr" +05/04/2018,Politicians,@Schriock1,Arizona and Nevada are our best pickup opportunities this year! @kyrstensinema and @RosenforNevada are two of the s… https://t.co/Q8HdNI47NF +05/04/2018,Politicians,@Schriock1,"An achievement like this doesn't happen overnight. @emilyslist has been working for years to recruit, train, suppor… https://t.co/8fpCYma1bf" +05/03/2018,Politicians,@Schriock1,"Exactly! Florida needs a governor with Gwen's focus, determination, and empathy. https://t.co/1I1JrUPAqV" +05/03/2018,Politicians,@Schriock1,".@KamalaHarris and @elizabethforma are with @katieporteroc, and so is @emilyslist! https://t.co/pPLIF171SL" +05/03/2018,Politicians,@Schriock1,"We're so proud to endorse @senatorkelly today. Kansas deserves a governor who will be a champion for families, and… https://t.co/0Tk61vozPb" +05/02/2018,Politicians,@Schriock1,"The only ""disgraceful"" thing I see here is an administration more interested in engaging in baseless, petty fights… https://t.co/s75KEpM4XM" +05/02/2018,Politicians,@Schriock1,"RT @creynoldsnc: .@Schriock1 on why @emilyslist is so focused on state legislatures: +1) They make big and often bad policy +2) They do redis…" +05/02/2018,Politicians,@Schriock1,"Thank you @KamalaHarris for endorsing @StaceyAbrams! She's the best candidate to be Georgia's next governor, and we… https://t.co/rtdEcMzvX7" +05/02/2018,Politicians,@Schriock1,Congratulations @mad4pa! This is a well-earned endorsement. We can't wait to help you win in #PA04! https://t.co/NEV9CCyrLP +05/01/2018,Politicians,@Schriock1,"Another reason we need new leadership? Thanks to the GOP's sabotage, four million Americans have lost health insura… https://t.co/sWUiFT5MHB" +05/01/2018,Politicians,@Schriock1,We need new leadership in Congress. Lawmakers are being personally enriched by the tax bill they passed while famil… https://t.co/hCxSRqq92n +05/01/2018,Politicians,@Schriock1,"That'll be the day. Thankfully, @jontester will keep fighting for veterans because he knows they deserve the very b… https://t.co/YTpcVkXCyy" +04/30/2018,Politicians,@Schriock1,"Oh COME ON. How could anyone, much less anyone working in the TRUMP administration, say this with a straight face?… https://t.co/jIWgAUlyTD" +04/30/2018,Politicians,@Schriock1,"I love this photo of the three of us! No matter what's next for you, your fellow Charlie's Angels have your back! https://t.co/ySXwTDUxdN" +04/30/2018,Politicians,@Schriock1,"Today may be @CecileRichards' last day at Planned Parenthood, but her legacy of activism will be felt for years!… https://t.co/IkxwafimF6" +04/29/2018,Politicians,@Schriock1,RT @votevets: Our @will_c_fischer spoke with Montana @SenatorTester about the fight to protect our #VA from being destroyed and privatized.… +04/29/2018,Politicians,@Schriock1,.@jontester is a good man and a good senator who is upholding his constitutional duty to thoroughly vet the next le… https://t.co/BUShMdp7Zf +04/29/2018,Politicians,@Schriock1,"Just incredible. Trump's VA nominee withdrew after multiple disturbing allegations, and now Trump's throwing a tant… https://t.co/bOcMe9Hkbr" +04/28/2018,Politicians,@Schriock1,"Thank you, @RuthMarcus, for highlighting heroes like @tammyduckworth this week. Times continue to change, and still… https://t.co/oBws72s1rd" +04/27/2018,Politicians,@Schriock1,Thank you @JeanneShaheen. We need to elect a wave of pro-choice Democratic women to protect our health care from Tr… https://t.co/qjojevDOHU +04/26/2018,Politicians,@Schriock1,More than ONE HUNDRED AND THIRTY Democratic women have filed to run for state legislative seats in Michigan. I'm so… https://t.co/I2C3SI3kPW +04/26/2018,Politicians,@Schriock1,"RT @JasonKander: Great to share a stage with @SymoneDSanders, @Schriock1 & Cleo Wade at @92Y's event last week. Heard that Cleo has been po…" +04/26/2018,Politicians,@Schriock1,"Now THAT's impressive! It may take some serious courage to climb like that, but it takes even more to put your name… https://t.co/YssdpsvKWG" +04/26/2018,Politicians,@Schriock1,Thank you @BetsyforIL and @vgescobar for inspiring the @emilyslist team today! https://t.co/BJyvoCSH3s +04/26/2018,Politicians,@Schriock1,We're so proud to endorse these excellent women today! https://t.co/SrRHLDUE0U +04/26/2018,Politicians,@Schriock1,We have a really exciting opportunity to flip #GA07 this cycle! @Carolyn4GA7 is a passionate defender of health car… https://t.co/1wHtbQrVYz +04/26/2018,Politicians,@Schriock1,"This is a race we're very excited about. We can flip #GA06, and @LucyWins2018 is absolutely the best candidate to d… https://t.co/QI35syStu0" +04/25/2018,Politicians,@Schriock1,Thank you @jontester for your steadfast leadership on behalf of our veterans and your work every day to improve the… https://t.co/XFW9PaJK83 +04/25/2018,Politicians,@Schriock1,"Absolutely disgusting that Blankenship is playing on Trump's crude ""Lock her up!"" chant in his campaign ads. He's t… https://t.co/63ZZP4uEbT" +04/25/2018,Politicians,@Schriock1,"I'm so proud of what @hiral4congress accomplished last night. Democrats overall are making gains, and we know a wav… https://t.co/Zv7O4RTCV4" +04/25/2018,Politicians,@Schriock1,"Congratulations, @Shelley4Senate! https://t.co/JSLfx9oF6N" +04/24/2018,Politicians,@Schriock1,"RT @CNBC: With Trump in the White House, stakes are higher than ever for @EMILYsList and Democratic women. “We just have to win,” Stephanie…" +04/24/2018,Politicians,@Schriock1,"RT @emilyslist: There are state legislatures around the country that are ready to flip from red to blue. And we're working with 1,200 women…" +04/23/2018,Politicians,@Schriock1,"Thanks for sharing, @chelseahandler. I know she will! We were so proud to award her the @GabbyGiffords Rising Star… https://t.co/sfIVUJY8z0" +04/23/2018,Politicians,@Schriock1,Farmworkers and domestic workers MUST have legal protections against workplace sexual violence. It's what EVERY wor… https://t.co/LB4SXOhn8T +04/23/2018,Politicians,@Schriock1,RT @BBCNewsnight: “I honestly sometimes feel we’ve been practising for three decades for this moment” – President of EMILY's List Stephanie… +04/23/2018,Politicians,@Schriock1,Looking forward to joining @BBCNewsnight to talk about this historic election cycle and our incredible pro-choice D… https://t.co/Z5lROLKIOa +04/21/2018,Politicians,@Schriock1,"Had so much fun with @JasonKander, @SymoneDSanders and @withlovecleo at @92Y tonight! Gotta say, having my face on… https://t.co/x0xKrBjuov" +04/20/2018,Politicians,@Schriock1,Democrats in Colorado are running in every. Single. Seat. https://t.co/CooyjwiArM +04/20/2018,Politicians,@Schriock1,.@mad4pa can hold a critical blue seat in #PA04. Thrilled to endorse her today! https://t.co/0A5wVMgzFG +04/20/2018,Politicians,@Schriock1,.@LeslieCockburn can flip a crucial red seat blue in #VA05! We all need to do everything we can to help her win thi… https://t.co/0VS83QUtbT +04/20/2018,Politicians,@Schriock1,.@nancysoderberg is such an incredible candidate who can flip a red seat blue in Florida! It was so wonderful getti… https://t.co/5pokx3khR9 +04/20/2018,Politicians,@Schriock1,Congratulations Pamela Goodman (@lwvfvoter) on being named the new executive director of @RuthsListFL! +04/20/2018,Politicians,@Schriock1,This is our bench of candidates. These are the leaders who will introduce legislation and set policy agendas. This… https://t.co/PMssFBRscu +04/20/2018,Politicians,@Schriock1,"36,000 women have reached out to tell us they want to run for office. Imagine how much higher that number could be next cycle!" +04/20/2018,Politicians,@Schriock1,"But I've said it before and I'll say it again, this isn't a wave — this is a sea change. Did you notice our previou… https://t.co/uYdmhJ5K61" +04/20/2018,Politicians,@Schriock1,You can't talk about a blue wave in 2018 without talking about the wave of women who are going to win back seats up… https://t.co/6jTrW3RcGg +04/20/2018,Politicians,@Schriock1,"And that's just at the federal and gubernatorial level. On the state and local level, the good news continues! EMIL… https://t.co/N4UtLoG2tz" +04/20/2018,Politicians,@Schriock1,"Of these 70 women, 34 can flip red House seats and two can flip red Senate seats. That's enough pro-choice Democrat… https://t.co/ob2y6pt4yw" +04/20/2018,Politicians,@Schriock1,"This is incredible — and we've got even more great endorsements on the way! + +Let's put these numbers in context. B… https://t.co/ON4XLQc8y3" +04/19/2018,Politicians,@Schriock1,"After 7 years, @ScandalABC is ending tonight. Congrats to @shondarhimes, @kerrywashington, and @JoshMalina for an incredible run!" +04/19/2018,Politicians,@Schriock1,".@tammyduckworth, you and Maile Pearl look amazing. Congratulations again, and thank you for making history! https://t.co/1wKRvvEO53" +04/19/2018,Politicians,@Schriock1,This is why we need more women and more Democrats in office. Period. https://t.co/97e8lmh6z2 +04/19/2018,Politicians,@Schriock1,RT @TinaSmithMN: An absolute joy to be with @emilyslist and @Schriock1 tonight. Their work helping elect pro-choice women is more important… +04/19/2018,Politicians,@Schriock1,".@MurrayCampaign has been a fearless champion for women and families in the Senate. Tonight, I was so proud to pres… https://t.co/qyoZ7imre4" +04/19/2018,Politicians,@Schriock1,I'm so proud to welcome @GabbyGiffords and @HelenGym2015 to the #WeAreEMILY gala to help us present the 2018 Gabrie… https://t.co/A8QLbkUvxs +04/18/2018,Politicians,@Schriock1,"Thank you @anidifranco for that incredible performance, and for all your work to help us #ElectWomen in 2018! #WeAreEMILY" +04/18/2018,Politicians,@Schriock1,RT @MurrayCampaign: Can't wait! https://t.co/iJXA792ui3 +04/18/2018,Politicians,@Schriock1,"It's been a great day at the #WeAreEMILY conference! Tonight, we'll hear from incredible pro-choice Democratic wome… https://t.co/a1rbwaYW6Z" +04/18/2018,Politicians,@Schriock1,"Good afternoon! #WeAreEMILY is in full-swing now! Coming up this afternoon: Our ""Not Just Another Year of the Woman… https://t.co/sKkDmEvuNU" +04/18/2018,Politicians,@Schriock1,What an exceptional panel! Every single one of these women is going to go on to do incredible things. #ElectWomen… https://t.co/BKfRgHyzD6 +04/16/2018,Politicians,@Schriock1,These women are a testament to the strength of our movement. Women are fired up & ready to take back our country fr… https://t.co/Ygxp3LVwDU +04/13/2018,Politicians,@Schriock1,"RT @jmpalmieri: Thanks, Schriock! Sure are a lot of women candidates we got out there to advise and admire! #EmilysList https://t.co/CYBpc3…" +04/13/2018,Politicians,@Schriock1,"Big congrats to @jmpalmieri and @CecileRichards. Their books ""Dear Madam President"" and ""Make Trouble"" are leading… https://t.co/bma9aWXt1M" +04/13/2018,Politicians,@Schriock1,".@NHMollyKelly knows the challenges working families face because she’s experienced them herself. Meanwhile, Gov. C… https://t.co/kKyISC0kWJ" +04/12/2018,Politicians,@Schriock1,RT @jess_mc: New Yorkers! On 4/20 activists @SymoneDSanders & @JasonKander will be @92Y for a lively discussion on the change we want to se… +04/11/2018,Politicians,@Schriock1,Thank you @RonBieberMI and @MIAFLCIO! @GretchenWhitmer is a champion for working families in MI! https://t.co/4jBuW6w9rY +04/11/2018,Politicians,@Schriock1,"Thank you @JerryBrownGov for endorsing @DianneFeinstein! You're exactly right, Sen. Feinstein is the person we need… https://t.co/XBZ0BSe9iZ" +04/11/2018,Politicians,@Schriock1,.@KamalaHarris's questions during this panel were pointed and persistent. She's an advocate for her constituents an… https://t.co/6cZ39ac2Yo +04/11/2018,Politicians,@Schriock1,RT @TaranaBurke: New Yorkers HEADS UP! On 4/20 activists @SymoneDSanders & @JasonKander will be @92Y for a lively discussion on the change… +04/11/2018,Politicians,@Schriock1,"RT @katieporteroc: Grateful for the shout-out from @emilyslist president @Schriock1 on @thenation's ""Start Making Sense"" podcast hosted by…" +04/11/2018,Politicians,@Schriock1,Good riddance. Paul Ryan loved nothing more than pushing viciously anti-woman budgets. Under his leadership - if we… https://t.co/mdEkWN6I51 +04/10/2018,Politicians,@Schriock1,"Happy birthday @DoloresHuerta! Thank you so much for your activism, your dedication, and your persistence! https://t.co/Q9j4Pck3lt" +04/10/2018,Politicians,@Schriock1,This is excellent news. The recall petitions were an underhanded attempt to undermine voters and remove two of our… https://t.co/QVucddURcd +04/10/2018,Politicians,@Schriock1,"RT @emilyslist: Hi @emilyslist community! My name is @MikieSherrill, and I’m running for Congress in #NJ11. I’ll be taking over the EMILY’s…" +04/09/2018,Politicians,@Schriock1,"This is excellent news! The @emilyslist team has been hard at work recruiting women to run. Some, like… https://t.co/edys4zk2ip" +04/09/2018,Politicians,@Schriock1,Congratulations @tammyduckworth! And a very happy birthday to baby Maile Pearl! ❤️ https://t.co/idiTbZhgtQ +04/09/2018,Politicians,@Schriock1,Thanks @davidaxelrod! I had a great time talking with you for the #AxeFiles. A wave of women IS coming! https://t.co/vCjmX1eJu9 +04/09/2018,Politicians,@Schriock1,"This is a great piece on @rweingarten's leadership during the teachers' strikes. As Randi says, ""the time for passi… https://t.co/5J0PBYVmVS" +04/06/2018,Politicians,@Schriock1,"Thank you for your leadership, @NancyPelosi. It's time for Pruitt to go. https://t.co/C23U8Ar89G" +04/06/2018,Politicians,@Schriock1,So proud to endorse @Axne4Congress today! We've got a great opportunity to flip a red seat blue in #IA03. https://t.co/rsy6dcxBgx +04/05/2018,Politicians,@Schriock1,Congratulations @denisejuneau! Seattle's students are very lucky to have you! https://t.co/6jZA7t05oB +04/05/2018,Politicians,@Schriock1,Well done! Congrats! https://t.co/0Fk2UCkuYf +04/05/2018,Politicians,@Schriock1,I had such a great time at last night's reception hosted by the wonderful @genevievethiers! https://t.co/ZbFdJSkUts +04/05/2018,Politicians,@Schriock1,"Thanks @JonWiener1 for talking with me on @thenation podcast! Our women have a real chance of flipping the House, b… https://t.co/H3JqbBZIOF" +04/05/2018,Politicians,@Schriock1,"We're driven by care for our friends & family who need access to health care & repro health care. +We're driven by c… https://t.co/8VzfOnc8MA" +04/04/2018,Politicians,@Schriock1,"RT @hiral4congress: Thanks, Stephanie! Here in #AZ08, we appreciate your energy & enthusiasm! https://t.co/n2FDWPkLBp" +04/04/2018,Politicians,@Schriock1,Great news out of Wisconsin last night! This incredible energy isn't going away. Let's keep it going so we can get… https://t.co/UNHuNcnLbI +04/04/2018,Politicians,@Schriock1,You all helped Conor Lamb flip a tough seat from red to blue. Now we need to help @hiral4congress win her special e… https://t.co/1CBqWgtkz1 +04/04/2018,Politicians,@Schriock1,"Congratulations, @sydneykamlager! We're so proud of you! https://t.co/gslEY6z3O3" +04/04/2018,Politicians,@Schriock1,Congrats @RealLyndaCarter! You so deserve it. https://t.co/jcFd9FsXhP +04/03/2018,Politicians,@Schriock1,"This is wonderful! Just like we need more women running for office, we need more women working on and leading their… https://t.co/q5UnM2L6Rc" +04/02/2018,Politicians,@Schriock1,I love this excerpt from @CecileRichards's new book. Pro-choice Democratic women in Congress were KEY to passing a… https://t.co/ibtDFiasx7 +04/02/2018,Politicians,@Schriock1,"The teachers in Oklahoma, Kentucky, and Arizona who are organizing for their classrooms are incredible. And I'm pro… https://t.co/KJehVrZQr4" +04/02/2018,Politicians,@Schriock1,"Arla Harrell reminds me of my grandfathers, who both fought in WWII. @McCaskill4MO is the daughter of a veteran, an… https://t.co/bQKaPJYv8A" +03/30/2018,Politicians,@Schriock1,Another state is seeing an increase in the number of women stepping up to run for office! I'm so proud of these new… https://t.co/biKvzVVXxY +03/30/2018,Politicians,@Schriock1,"I'll be the first to say that women usually face more challenges when running for office. But this year, voters WAN… https://t.co/BjkVvhe5dD" +03/29/2018,Politicians,@Schriock1,"Happy birthday to my friend, the extraordinary and dedicated @emilyslist's executive director, @emilyanncain! https://t.co/o6zHLQHfgs" +03/29/2018,Politicians,@Schriock1,It was so wonderful to welcome @nicoleboxer to the @emilyslist office to talk about all of the women we can elect i… https://t.co/W9WqPyY54n +03/28/2018,Politicians,@Schriock1,"RT @SEIU: “At the end of the day, the people who suffer most when unions are under attack are the same people whose rights are being threat…" +03/28/2018,Politicians,@Schriock1,Happy belated birthday @NancyPelosi! https://t.co/PXDR3kEd6M +03/28/2018,Politicians,@Schriock1,"What an excellent profile of @MurrayCampaign! Sen. Murray is tenacious, persistent, & always finds a way to build b… https://t.co/zrpZx0SDS3" +03/22/2018,Politicians,@Schriock1,Snowed in to NYC but luckily we get to see Come From Away. The women in this show are amazing! https://t.co/kegERtjOwq +03/21/2018,Politicians,@Schriock1,"RT @AM2DM: EMILY's List president @Schriock1, She Should Run founder @erinlooscutraro, and Congressional candidate @ginaortizjones join #AM…" +03/21/2018,Politicians,@Schriock1,"RT @emilyslist: Both @ginaortizjones and @Schriock1 agree: Women have to run for office, or help another woman run and win! Sign up with #R…" +03/21/2018,Politicians,@Schriock1,RT @emilyslist: .@Schriock1 will be on @AM2DM this morning to talk about the wave of women running for office across the country! Watch liv… +03/21/2018,Politicians,@Schriock1,.@JayInslee followed @KateBrownForOR in enacting automatic voter registration in Washington! Protecting our right t… https://t.co/1pITVjHwGh +03/19/2018,Politicians,@Schriock1,Congratulations @toniatkins on becoming the first woman and first #LGBTQ state Senate leader in California! https://t.co/4XHuAHiwXg +07/01/2018,Politicians,@ninaturner,RT @RevJJackson: https://t.co/LgBOr5vgkA: President Trump calls the press the 'enemy of the people'. Do you agree? #PresidentTrump #media #… +06/30/2018,Politicians,@ninaturner,"RT @YWCAUSA: ""Why is there such fascination with & fetishization of black women’s strength, but such failure to support us when we experien…" +06/30/2018,Politicians,@ninaturner,"RT @TamikaDMallory: Family, I’m back at @essencefest this year! Register at https://t.co/pTYKGDLC07 +#EssenceFest https://t.co/2fgk8YKUJd" +06/30/2018,Politicians,@ninaturner,@TamikaDMallory @essencefest Work it! +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Regardless of your zip code — whether you live in a city of 800,000 or a town of 8,000 — in the richest country on the f…" +06/30/2018,Politicians,@ninaturner,RT @OurRevolution: On what planet is it remotely acceptable to have 3-year-old children in courts of law to plead their cases for why they… +06/30/2018,Politicians,@ninaturner,"RT @j0nny5: I feel like this is the thing that too many Americans do not understand. You need to work for a better tomorrow, even if you do…" +06/30/2018,Politicians,@ninaturner,@scapelliti @PortiaABoulger @TaraLSamples @_SemaHernandez_ @jjz1600 @GeoffMiami @OurRevolution @BernieNina2020… https://t.co/xakckzdpUo +06/30/2018,Politicians,@ninaturner,RT @SenSanders: Thank you to the thousands of people turning out today to protest Trump's cruel policy of separating families. The United S… +06/30/2018,Politicians,@ninaturner,RT @RightsNH: If you enjoyed our Congressional forum - you’ll like our gubernatorial forum starting soon in Plymouth with Sen @ninaturner o… +06/30/2018,Politicians,@ninaturner,"RT @RightsNH: ""Nobody aspires to be poor... It is about a flat-out rigged system that leaves the working class behind."" -@ninaturner of @Ou…" +06/30/2018,Politicians,@ninaturner,"RT @RightsNH: It's our turn with @ninaturner today New Hampshire! Keene, Manchester, then Plymouth. Details: https://t.co/jRo0gEEEgk #nhpol…" +06/30/2018,Politicians,@ninaturner,RT @scapelliti: What political consultant Lloyd Green means is that 𝗘𝘀𝘁𝗮𝗯𝗹𝗶𝘀𝗵𝗺𝗲𝗻𝘁 Democrats can kiss swing voters goodbye. So can Republica… +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Tomorrow night, in Burlington, Vermont, join Our Revolution President @ninaturner and @RightsVT for ‘From Protest to Pow…" +06/30/2018,Politicians,@ninaturner,RT @RightsVT: “We must be willing to plant trees whose shade we will never enjoy.” Sen. @ninaturner of @OurRevolution in #Rutland #VT #vtpo… +06/30/2018,Politicians,@ninaturner,"RT @iteptweets: Instead of further counteracting income inequality, the Tax Cuts and Jobs Act will make it much worse: https://t.co/MYSyOB3…" +06/30/2018,Politicians,@ninaturner,"RT @SenWarren: Tomorrow, thousands of Puerto Rican evacuees will lose federal housing assistance & many will be left homeless. @FEMA refuse…" +06/30/2018,Politicians,@ninaturner,"RT @commondreams: Five Justices Cannot Break the Solidarity of America’s Unions +https://t.co/FQ5eZMIBet +@AFSCME prez says union unbowed by…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Our Revolution is proud to endorse +➡️ @PramilaJayapal +➡️ @standwithraul +➡️ @TulsiGabbard +for re-election. Pramila, Ra…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: In New York, for State Senate, we’re proud to endorse +➡️ @jessicaramos +➡️ @jasirobinson34 +➡️ @SRachelMay +➡️ @zellnor4n…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: “We must plan, we must organize, we must strategize, we must come together."" +Our Revolution President @ninaturner is LIV…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: #PrideMonth is almost over, but you can still get your Our Revolution Pride gear in our shop! https://t.co/wUJWW15nWS ht…" +06/30/2018,Politicians,@ninaturner,"RT @KiahMorrisVT: So I end my own erasure through writing my truths to create a permanent record. And I will speak my truths wherever, and…" +06/30/2018,Politicians,@ninaturner,RT @RightsNH: “There’s no greater force on this Earth than collective people power.” Sen. @ninaturner of @OurRevolution closing out our Kee… +06/30/2018,Politicians,@ninaturner,RT @RightsVT: If you missed Sen. @ninaturner of @OurRevolution yesterday - she’s barnstorming our neighbors in NH today on her way back to… +06/30/2018,Politicians,@ninaturner,@kroton13 🤗 +06/30/2018,Politicians,@ninaturner,"RT @PortiaABoulger: This right here, family. This is what it is about. .@ninaturner knows that we are in this for the long haul - yes, for…" +06/30/2018,Politicians,@ninaturner,RT @janeedoc: @robdelaney @dsam4a @DemSocialists @OurRevolution @keithellison @SenSanders @crulge @justicedems @WaywardWinifred @ninaturner… +06/30/2018,Politicians,@ninaturner,RT @EmilyForCO: Thank you to @OurRevolution & @OurRevDenver for your support during the campaign. It's an honor to be named here along with… +06/30/2018,Politicians,@ninaturner,RT @BenJealous: I was proud to be arrested outside of Trump’s White House standing up for our DREAMers and helping to steer passage of the… +06/30/2018,Politicians,@ninaturner,RT @BernieSanders: The people of Maryland understand that we can most effectively oppose Donald Trump's extremism with strong progressive l… +06/30/2018,Politicians,@ninaturner,"RT @christineforvt: What a great series of events today with @ninaturner, @momdogz, @RightsVT, & @OurRevolution in Bristol, Rutland, and Be…" +06/30/2018,Politicians,@ninaturner,RT @RobinScheu: We should be doing this in Vermont - and could have but for @GovPhilScott’s vetos. MA Gov. Charlie Baker signed a bill Thur… +06/30/2018,Politicians,@ninaturner,@PauloFaustini @BernieSanders @TYTNetwork Sending that love right back! +06/30/2018,Politicians,@ninaturner,RT @PortiaABoulger: .@ninaturner! So incredible! Always lifting us up. Always giving us the hope and strength to believe in ourselves - to… +06/30/2018,Politicians,@ninaturner,@PortiaABoulger @TaraLSamples @_SemaHernandez_ @jjz1600 @GeoffMiami @OurRevolution @BernieNina2020 @appalachians_r… https://t.co/ROeSHD8ICB +06/29/2018,Politicians,@ninaturner,"RT @RightsVT: ""All that we love is on the line - we must keep going, we must never stop. We can turn this thing around."" - Sen. @ninaturner…" +06/29/2018,Politicians,@ninaturner,RT @PortiaABoulger: @ninaturner @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600 @JimHight… +06/29/2018,Politicians,@ninaturner,@PortiaABoulger @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600… https://t.co/NsIKwNRMD3 +06/29/2018,Politicians,@ninaturner,"@OurRevolution in Bristol, VT with Michael Castelli who is a new volunteer for our texting team. 👏👏 +@RightsVT https://t.co/q48eUQ9DT6" +06/29/2018,Politicians,@ninaturner,RT @RightsVT: We’re live in Bristol with @MariInTheHouse & Sen. @ninaturner - watch on FB-> https://t.co/vnp6byhBKX #vt #btv #vtpoli +06/29/2018,Politicians,@ninaturner,RT @dsam4a: The UK's National Health Service spared @robdelaney's family from financial stress while they endured the grief of losing their… +06/29/2018,Politicians,@ninaturner,RT @PortiaABoulger: .@ninaturner knows we cannot have justice without love. Our movement is grounded in humanity - in the Golden Rule - in… +06/29/2018,Politicians,@ninaturner,@PortiaABoulger @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600… https://t.co/UFGZORpN8a +06/29/2018,Politicians,@ninaturner,"RT @TheRealNews: Decisions in favor of gay marriage, abortion, affirmative action, limits on the death penalty and rectifying housing discr…" +06/29/2018,Politicians,@ninaturner,"RT @joshfoxfilm: Over 10,000 migrant children are now in US government custody at 100 shelters in 14 states https://t.co/wzFpS3joqf" +06/29/2018,Politicians,@ninaturner,RT @TheSandersInst: https://t.co/Gpllpbb2O7 +06/29/2018,Politicians,@ninaturner,RT @RightsVT: Lunch & conversation with Sen. @ninaturner of @OurRevolution in the RAD #BTV office as we fuel up for the start of our bi-sta… +06/29/2018,Politicians,@ninaturner,@DonnaMgraduates @RightsVT @OurRevolution @RightsNH Looking forward to it!!! +06/29/2018,Politicians,@ninaturner,"At the office of @RightsVT. If walls could talk they would say, “#People&PlanetOverProfit and #WaterIsLife… https://t.co/kuMaQPyxgH" +06/29/2018,Politicians,@ninaturner,RT @RightsNH: How can we bring NH forward in this time of national distress? @ninaturner of @OurRevolution & @AndruVolinsky will discuss to… +06/29/2018,Politicians,@ninaturner,RT @quotebard: 👍#FridayFeeling #BoldMoves @RyanEliason @Ocasio2018 @ninaturner @CynthiaNixon @ZephyrTeachout https://t.co/ZAa60yMsIc +06/29/2018,Politicians,@ninaturner,"On Episode 5 of “We the People”, we talk Transformation with Sen. @BernieSanders. Listen in https://t.co/AGkSSNg2ki… https://t.co/sr2vf62Cum" +06/29/2018,Politicians,@ninaturner,@SusanSarandon You are a class act!❤️ +06/29/2018,Politicians,@ninaturner,"RT @Ocasio2018: We pulled off an enormous upset, against all established power and big money, because of a few groups and people that had t…" +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: Congratulations to @OurRevolutionTX for successfully overseeing the adoption of health care for all, criminal justice re…" +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @BenJealous on your primary victory tonight! https://t.co/n8552k1TOV +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @gacevero on your primary win tonight! https://t.co/RkRV3ccu2N +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @EmilyForCO on your primary victory last night! https://t.co/ficlOnR6Zx +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: The billionaire effort to derail public sector unions with the #Janus case will likely hit Black women hardest, who make…" +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: Keene, New Hampshire! +This Saturday, join Our Revolution President @ninaturner and @RightsNH for a discussion on how to…" +06/29/2018,Politicians,@ninaturner,@clintwj1s Welcome to America. +06/29/2018,Politicians,@ninaturner,"RT @SorenCSorensen: .@ninaturner's tweet included a graphic that displayed the Mother Jones quote, ""Some day the workers will take possessi…" +06/29/2018,Politicians,@ninaturner,"The day #MotherJones spoke of is today & everyday. We are on the move bringing justice where there is injustice, br… https://t.co/nPNMuJhlZ6" +06/29/2018,Politicians,@ninaturner,https://t.co/Ev4PhjVi2S +06/29/2018,Politicians,@ninaturner,https://t.co/nkdNm6KVir +06/29/2018,Politicians,@ninaturner,"Five dead in Capital Gazette shooting; suspect Jarrod Ramos is in custody, police say - The Washington Post https://t.co/b8CJfGmcK5" +06/29/2018,Politicians,@ninaturner,RT @cenkuygur: Alexandria Ocasio-Cortez Says She Might Use @seanhannity Segment As Ad for Herself https://t.co/83V2uBzXyE via @YouTube @Oca… +06/29/2018,Politicians,@ninaturner,RT @JamiaStarheart: @bbdevices @JYoungDjango @CBSNews https://t.co/cTqziwLj8l +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: .@BenJealous assembled a movement comprised of working families that focused on bold solutions to help the working peopl… +06/29/2018,Politicians,@ninaturner,"RT @People4Bernie: .@SenSanders responds to Nancy Pelosi's comments: + +Both @Ocasio2018 and @BenJealous were ""candidates running grassroots…" +06/29/2018,Politicians,@ninaturner,RT @OurRevEssexNJ: Stand with unions! Yesterday’s SCOTUS decision was a major set back for working class people and #union rights. Keep fig… +06/29/2018,Politicians,@ninaturner,RT @dsam4a: How many of y’all like single payer healthcare? 🤗 https://t.co/ImxWIsXbO2 +06/29/2018,Politicians,@ninaturner,"RT @BenJealous: “Thank you Maryland. I am proud to stand before you as your Democratic nominee for governor.” + +Two nights ago, this movemen…" +06/29/2018,Politicians,@ninaturner,"RT @justicedems: LOL @ "" as a negative"". https://t.co/0jlfZjN2ev" +06/29/2018,Politicians,@ninaturner,"RT @CynthiaNixon: In case you're wondering about my position on marijuana, here it is. #TBT https://t.co/eYqUuG3Ona" +06/29/2018,Politicians,@ninaturner,RT @proviewsusa: #Bernie2020 Bernie is the leader of a FREE AMERICA! https://t.co/FzjODzxeL4 +06/29/2018,Politicians,@ninaturner,RT @joegarofoli: An African-American woman has NEVER served in a House leadership position in EITHER party. Rep. Barbara Lee wants to chang… +06/29/2018,Politicians,@ninaturner,RT @ShavedWookieeRN: Be the change: while our elected officials ignore the hurt many are facing to fight over who should have say in how be… +06/29/2018,Politicians,@ninaturner,@ShavedWookieeRN @Ocasio2018 @CynthiaNixon @ZephyrTeachout @BenJealous @OurRevolution Agreed! +06/28/2018,Politicians,@ninaturner,@SDeniseT Indeed +06/28/2018,Politicians,@ninaturner,@WaywardWinifred @lsarsour @RoseAnnDeMoro And we ❤️ you Winnie! +06/28/2018,Politicians,@ninaturner,@octaves5 @CNN I hear ya!!! +06/28/2018,Politicians,@ninaturner,@Clarknt67 @CNN You might be right. I was hoping not. This is certainly a “I couldn’t make this stuff up moment...h… https://t.co/eS7XOysBtE +06/28/2018,Politicians,@ninaturner,@bunkybun Right! +06/28/2018,Politicians,@ninaturner,Somebody definitely skipped their history classes!😒😱 ⁦@CNN⁩ https://t.co/N7YYH4CG2p +06/28/2018,Politicians,@ninaturner,RT @BenJealous: Deeply saddened about these unfolding events in Annapolis. Everyone please stay safe as the police assess the situation. ht… +06/28/2018,Politicians,@ninaturner,"RT @TwitterMoments: Police are responding to a shooting at the Capital Gazette newspaper's offices in Annapolis, Maryland, officials say. h…" +06/28/2018,Politicians,@ninaturner,"RT @PortiaABoulger: Are you listening? @DNC @OHDems? +""In an interview on MSNBC, Ocasio-Cortez said that Democrats need to focus their mess…" +06/28/2018,Politicians,@ninaturner,"RT @womensmarch: Today, 1,000 women will engage in nonviolent civil disobedience to protest the criminalization and detention of immigrants…" +06/28/2018,Politicians,@ninaturner,RT @lsarsour: Women are powerful. #WomenDisobey #EndFamilyDetention #EndFamilySeparation #AbolishICE https://t.co/1Z6524N0Lt +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: “We need to learn the lessons of teachers in states being led by West Virginia, and organize in different ways — we can…" +06/28/2018,Politicians,@ninaturner,"RT @RightsNH: Catch @ninaturner at 3 events we're proud to be hosting in Manchester, Plymouth, and Keene this Saturday! Details: https://t.…" +06/28/2018,Politicians,@ninaturner,RT @SusanSarandon: SAY HER NAME! ALEXANDRIA OCASIO-CORTEZ. https://t.co/VIpH5O3W5v +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: 📣 Vermont! +This Friday, don’t miss your chance to join Our Revolution President @ninaturner as she speaks at the @Rights…" +06/28/2018,Politicians,@ninaturner,"RT @ejmedia3: Forward together, not one step back! https://t.co/3xIdVUBC5m" +06/28/2018,Politicians,@ninaturner,"RT @WATL_news: @ninaturner @OurRevolution They said ""If you don't like it, run!"" - so we ran + +They said ""You can't raise enough money!"" - w…" +06/28/2018,Politicians,@ninaturner,"@wartrout89 Right, never let the truth get in the way of a good story." +06/28/2018,Politicians,@ninaturner,@bluntedpurpose For all of us. +06/28/2018,Politicians,@ninaturner,"RT @ProjectBernie16: The Truth Won Yesterday. +And The Truth Will Win Again In November. + +The Truth Is: @BenJealous Is Maryland's Next Gover…" +06/28/2018,Politicians,@ninaturner,@darts89119 @OurRevolution 😊🙏🏾 +06/28/2018,Politicians,@ninaturner,RT @stinaa1982: ❤️❤️❤️ https://t.co/47z7J39xmN +06/28/2018,Politicians,@ninaturner,Just beautiful! @OurRevolution #ThursdayThoughts https://t.co/UwCVr9sWsw +06/28/2018,Politicians,@ninaturner,@mjfree Ooooooooweeee!!!! +06/28/2018,Politicians,@ninaturner,@mikelove719 Good morning Mike. +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: Last night “...shows us that when we double down on progressive issues, pound the pavement like our life depends on it,…" +06/28/2018,Politicians,@ninaturner,https://t.co/JchwMTPIcp +06/28/2018,Politicians,@ninaturner,RT @EALindquist: Hey @CarolAmmons4IL let's get our friend @LitesaWallace to be selected for Executive Director of the Democratic Party of I… +06/28/2018,Politicians,@ninaturner,"RT @IllinoisWorking: REMINDER: ""Black women will be most affected by Janus"" (via @EconomicPolicy) + +#twill #ilgov #JANUSvsAFSCME +https://t.…" +06/28/2018,Politicians,@ninaturner,"RT @theRza2u: 🚨CALL TO ACTION🚨 + +⚬FAKE account. +⚬Please report. + +Page is IDENTICAL TO @ninaturner's. They are dm'ing, pretending to be her.…" +06/28/2018,Politicians,@ninaturner,RT @UniteThePoor: Some tourists have been wondering what this is. It’s the new and unsettling force for your liberation and mine! #PoorPeop… +06/28/2018,Politicians,@ninaturner,"RT @BenJealous: We won. We won BIG! + +As we say in the NAACP...Thank you to everyone who gave their time, their treasure or their talent!…" +06/28/2018,Politicians,@ninaturner,"RT @TulsiGabbard: .@Ocasio2018 Congratulations on your historic win last night! Throughout your activism and your campaign, you demonstrat…" +06/27/2018,Politicians,@ninaturner,"RT @fightfor15: BREAKING:  #SCOTUS has ruled against workers. We stand in solidarity with our public sector #union family, and stay focused…" +06/27/2018,Politicians,@ninaturner,"RT @LammanRucker: #Senator @NinaTurner dropping science and telling the #TRUTH about the power of big money influence in the campaign, elec…" +06/27/2018,Politicians,@ninaturner,@LammanRucker Thank you Lamman . It’s good to have your voice in this space. And you are doing the thing on @GreenleafOWN +06/27/2018,Politicians,@ninaturner,RT @commondreams: 'He Had the Machine... We Had the People': Alexandria Ocasio-Cortez Landslide Win Over Wall St. Favorite Joe Crowley http… +06/27/2018,Politicians,@ninaturner,"RT @foe_us: ""Being governor is about a lot more than putting out good policy papers—and it is in his leadership ability that @BenJealous ex…" +06/27/2018,Politicians,@ninaturner,@LammanRucker Thanks Lamman! +06/27/2018,Politicians,@ninaturner,RT @RightsVT: Join us Friday at 7PM in #Bennington for a gubernatorial forum feat. Guest Speaker @ninaturner of @OurRevolution -> Details:… +06/27/2018,Politicians,@ninaturner,"RT @NNUBonnie: Women of color stand to lose the most from the #Janus outcome. + +WOC face a double wage gap: a gender and a racial pay gap -…" +06/27/2018,Politicians,@ninaturner,"RT @NomikiKonst: There are going to be a million hot takes. Here’s mine: +@BenJealous and @Ocasio2018 are as progressive and grassroots as…" +06/27/2018,Politicians,@ninaturner,"RT @staceyabrams: Congratulations to @BenJealous - my dear friend, extraordinary leader & the next Governor of Maryland! Very proud of you…" +06/27/2018,Politicians,@ninaturner,"RT @Ocasio2018: This is the start of a movement. + +Thank you all." +06/27/2018,Politicians,@ninaturner,RT @NYDailyNews: Ice Cube's Big3 basketball league is counter-suing former employee who complained about Steve Bannon banter https://t.co/8… +06/27/2018,Politicians,@ninaturner,HELLO!!!!!! https://t.co/BXOvRylBfA +06/27/2018,Politicians,@ninaturner,RT @WaywardWinifred: The good people of Maryland deserve a governor who will fight like hell to win #MedicareForAll. Healthcare is a human… +06/27/2018,Politicians,@ninaturner,"RT @IAmMLKJrFilm: ""The president felt that he couldn't go back to the congress for another civil rights field"" MLK said ""We got to get the…" +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Vaughn4Maryland on your primary win tonight! https://t.co/DKRNgCrdbf +06/27/2018,Politicians,@ninaturner,RT @jjz1600: Message to “pundits” who said progressives were fading & the establishment was in control: GUESS AGAIN! We are in this for the… +06/27/2018,Politicians,@ninaturner,@jjz1600 @BenJealous @Ocasio2018 @OurRevolution Say that Doc! +06/27/2018,Politicians,@ninaturner,"Joe Jackson, musical family patriarch, dead at 89 - CNN https://t.co/wWDHUxZ6gr" +06/27/2018,Politicians,@ninaturner,"RT @DrAvariceJ: This is groundbreaking,earth shattering and truly signals the power of ordinary people rising up to make their voices heard…" +06/27/2018,Politicians,@ninaturner,"RT @EmilyForCO: Last night, we won a great victory - and when I say “we,” thats exactly what I mean. This campaign is not about me - it is…" +06/27/2018,Politicians,@ninaturner,@breakfastclubam bringing hip hop and politics together. I asked @icecube what words he has for folks in this momen… https://t.co/Q5eKd85PMr +06/27/2018,Politicians,@ninaturner,@JenniferW83 @OurRevolution Thank you +06/27/2018,Politicians,@ninaturner,Progressives are on the move. ⁦@OurRevolution⁩ ⁦@inthesetimesmag⁩ https://t.co/kB2upVwHBd +06/27/2018,Politicians,@ninaturner,@AsimSupreme Good morning! 🌞 +06/27/2018,Politicians,@ninaturner,RT @ChrisImes5: @ninaturner @OurRevolution @People4Bernie @justicedems @DFAaction @DemSocialists #BernItAllDown https://t.co/jLSlxEyDBK +06/27/2018,Politicians,@ninaturner,@ChrisImes5 @OurRevolution @People4Bernie @justicedems @DFAaction @DemSocialists True that! +06/27/2018,Politicians,@ninaturner,@LCellini @OurRevolution @Morning_Joe @DNC @Ocasio2018 @nytimes @NYDailyNews @CynthiaNixon Thank you! Team work! +06/27/2018,Politicians,@ninaturner,"We must never give up! Hope does spring eternal &with collective sweat equality, all things are possible! Congrats… https://t.co/QWlVsaqHtA" +06/27/2018,Politicians,@ninaturner,"RT @wildwestpie: @ninaturner @AdamUmak @BenJealous @OurRevolution @OurRevolutionMD ❤ you Nina! + +Thank you! + +Thank you! + +Thank you! + +Thank y…" +06/27/2018,Politicians,@ninaturner,"@wildwestpie @AdamUmak @BenJealous @OurRevolution @OurRevolutionMD Nevertheless, we keep pushing!" +06/27/2018,Politicians,@ninaturner,@AdamUmak @BenJealous @OurRevolution @OurRevolutionMD We are on the move! +06/27/2018,Politicians,@ninaturner,@couponpadawan @NanInKansas @BenJealous @OurRevolution @OurRevolutionMD @EmilyForCO Sending ❤️ back +06/27/2018,Politicians,@ninaturner,RT @kendrick38: Congrats @BenJealous 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/CaUXyENlXD +06/27/2018,Politicians,@ninaturner,"RT @mddems: Congratulations to our next governor @BenJealous! While Larry Hogan shortchanges Marylanders, Ben’s bold progressive leadershi…" +06/27/2018,Politicians,@ninaturner,RT @NicholsUprising: Huge victory tonight for @BenJealous — a progressive who will be the Democratic nominee for governor of Maryland. A ke… +06/27/2018,Politicians,@ninaturner,@NanInKansas @BenJealous @OurRevolution @OurRevolutionMD @EmilyForCO Yes! +06/27/2018,Politicians,@ninaturner,RT @PatFromm: It's happening! #OurRevolution is living out the vision Bernie instilled in us. We won't stop until we reclaim this country #… +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @liuba4congress on your primary victory tonight! https://t.co/QZiklPl8b3 +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @DrHall38A on your primary victory tonight! https://t.co/dGQOkWPrdF +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Angela4OK on your primary victory tonight! https://t.co/Ps1cC7SyV1 +06/27/2018,Politicians,@ninaturner,"RT @OurRevolution: “@Ocasio2018 ran a bold campaign built on substance. She ran in the interest of the people, not corporate developers."" R…" +06/27/2018,Politicians,@ninaturner,RT @TYTNetwork: https://t.co/BoPv2L7paF +06/27/2018,Politicians,@ninaturner,RT @Jehane94: @ninaturner @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie @DFAaction #AnyOleBlueJustWontDo #AlexandriaOcasio… +06/27/2018,Politicians,@ninaturner,RT @NationalNurses: Nurses are excited that @BenJealous moves forward to November. This is a big win for #MedicareForAll. NNU's endorsed ca… +06/27/2018,Politicians,@ninaturner,Progressives...this!!!! Tonight and All. Life. Long! @OurRevolution @People4Bernie @justicedems @DFAaction… https://t.co/oUEWVHvKrC +06/27/2018,Politicians,@ninaturner,Progressives are on the move tonight baby! 🔥🔥🔥🔥 @BenJealous @OurRevolution @OurRevolutionMD https://t.co/5Sd68TeHZm +06/27/2018,Politicians,@ninaturner,RT @CiscoFever: @ninaturner @Ocasio2018 @OurRevolution The revolution continues!! #PoliticalEarthquake https://t.co/7qrDp7LjM9 +06/27/2018,Politicians,@ninaturner,"RT @johncusack: 1 country is moving towards new deal 2.0 +@pplsummit politics -@BernieSanders & @ninaturner and so many others have alre…" +06/27/2018,Politicians,@ninaturner,"RT @ninaturner: Ooooooooweee! Any ole blue, just won’t do! Team work @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie @DFAact…" +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @jamie_raskin on your primary win tonight! https://t.co/cRY1YV4DkV +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @dana_balter on your primary victory tonight! https://t.co/33YleB655w +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @RobbieLeonard42 on your primary win tonight! https://t.co/gZAdbJNHX1 +06/27/2018,Politicians,@ninaturner,RT @BradleyRBloom: @ninaturner @proviewsusa @Ocasio2018 @OurRevolution I don’t think I’ve felt this feeling since you & Bernie were in NYC.… +06/27/2018,Politicians,@ninaturner,@BradleyRBloom @proviewsusa @Ocasio2018 @OurRevolution 😊 +06/27/2018,Politicians,@ninaturner,RT @ACLU: Today's Supreme Court ruling repeats the mistakes of the Korematsu decision. It takes the government lawyers' flimsy national sec… +06/27/2018,Politicians,@ninaturner,"RT @nycDSA: Congrats on the win, @Ocasio2018. The number of votes cast tonight—in what has been the lowest turnout district in the country…" +06/27/2018,Politicians,@ninaturner,@nycDSA @SenseOf_OUTRAGE @Ocasio2018 Say that!! +06/27/2018,Politicians,@ninaturner,@proviewsusa @Ocasio2018 @OurRevolution Indeed! +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Ocasio2018 on your primary victory tonight! https://t.co/zBCKJAwnom +06/27/2018,Politicians,@ninaturner,RT @PattiTweeting: @ninaturner @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie @DFAaction 🔥💯🔥 yaaaasssss!!!!! #OurRevolution… +06/27/2018,Politicians,@ninaturner,RT @ShavedWookieeRN: Alright @BenJealous!! Almost there!! This could be an incredible night for progressive candidates & an even better nig… +06/27/2018,Politicians,@ninaturner,"Ooooooooweee! Any ole blue, just won’t do! Team work @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie… https://t.co/TuEmF16zrf" +06/27/2018,Politicians,@ninaturner,"RT @WaywardWinifred: @ninaturner @justicedems and @nycDSA, @People4Bernie @DFAaction." +06/27/2018,Politicians,@ninaturner,@WaywardWinifred @justicedems @nycDSA @People4Bernie @DFAaction Indeed!!! +06/27/2018,Politicians,@ninaturner,And @justicedems +06/27/2018,Politicians,@ninaturner,"RT @PeteSikora1: A political star is born and she's a young progressive latina congresswoman from bernie-land who stands for racial, gender…" +06/27/2018,Politicians,@ninaturner,"RT @NomikiKonst: Guys: if the NY machine goes down, the National Dem establishment is dead." +06/27/2018,Politicians,@ninaturner,"“Any ole blue, just won’t do baby” You did that @Ocasio2018 @OurRevolution https://t.co/rgL2S9WwKw" +06/27/2018,Politicians,@ninaturner,RT @NomikiKonst: .@Ocasio2018 speaking at “VICTORY PARTY” https://t.co/99CJWCz5F0 +06/27/2018,Politicians,@ninaturner,RT @ShavedWookieeRN: @People4Bernie @Ocasio2018 @KatBrezler @ShaunKing @votolatino @SusanSarandon @lsarsour @DemSocialists @justicedems @Mi… +06/27/2018,Politicians,@ninaturner,RT @People4Bernie: BREAKING: @Ocasio2018 HAS DEFEATED JOE CROWLEY #NY14 https://t.co/UPheyVccYk +06/27/2018,Politicians,@ninaturner,RT @jjz1600: Amen. #Bernie speaking the truth - clearly & boldly. He’s calling #Trump’s #TravelBan what it is - a ploy by this Administrati… +06/27/2018,Politicians,@ninaturner,"RT @ShaunKing: I’m disturbed by this article. + +It critiques Bernie for not campaigning for Democrats on a particular Saturday he was in Ca…" +06/27/2018,Politicians,@ninaturner,"RT @AriRabinHavt: I agree with Shaun. + +Another issue with this article. It cites anonymous sources claiming Bernie received requests from…" +06/26/2018,Politicians,@ninaturner,"RT @AriRabinHavt: Bernie’s central theme as always was that if you want change, you need to participate in the political process and fight…" +06/26/2018,Politicians,@ninaturner,"RT @billmckibben: Meanwhile, out in the sane world, India is getting ready to take bids on the biggest solar tender of all time: 100 gigawa…" +06/26/2018,Politicians,@ninaturner,"RT @BoldNebraska: Over 189,000 Public Comments Submitted in Opposition to @TransCanada #KeystoneXL Pipeline, Trump Administration's Sham E…" +06/26/2018,Politicians,@ninaturner,"RT @NebraskaDems: ""The majority of the Supreme Court failed to serve as a checks and balance in order to bring justice for all. The extreme…" +06/26/2018,Politicians,@ninaturner,"RT @janekleeb: Thanks to @rogergarcia1 these kids are back with their mom. Dad is still in ICE custody, but Nebraskans stepped up to help w…" +06/26/2018,Politicians,@ninaturner,"RT @janekleeb: Good luck today @BenJealous we are all behind you! https://t.co/cDNzcGkQo9 If you live in MD, go vote for Ben! https://t.co/…" +06/26/2018,Politicians,@ninaturner,@bootsie5 @SenseOf_OUTRAGE @TwitterSupport @jack ☺️ +06/26/2018,Politicians,@ninaturner,@It_is_NunyaDB @OurRevolutionNv Thank you! +06/26/2018,Politicians,@ninaturner,@ProgBlacksmith1 @TwitterSupport @jack Thanks ☺️ +06/26/2018,Politicians,@ninaturner,@Anita4Bernie @TwitterSupport @jack Thank you +06/26/2018,Politicians,@ninaturner,@RenagadeGirl @TwitterSupport @jack Thank you +06/26/2018,Politicians,@ninaturner,@themainepain @OurRevolution @TwitterSupport @jack 😊 +06/29/2018,Politicians,@MassAGO,Hard work. Discipline. Teamwork. Sports were a salvation for me. @scholarathletes https://t.co/BRNpQIT2UG +06/29/2018,Politicians,@MassAGO,"We are incredibly relieved that Elmer, Lubin, and their children are together again. Families like theirs deserve o… https://t.co/1wwBciVujZ" +06/29/2018,Politicians,@MassAGO,"After 5 weeks apart, the Oliva family is now safe and together in Massachusetts. They met with us yesterday to tell… https://t.co/FqcAW3NQNT" +06/29/2018,Politicians,@MassAGO,We need action if we are ever going to stop this madness. #Annapolis #Enough https://t.co/EG0SbRcsxs +06/28/2018,Politicians,@MassAGO,"Today the @MA_Senate joined the House in voting to raise the age to purchase tobacco products to 21.  + +This is huge… https://t.co/itSUfBebnk" +06/28/2018,Politicians,@MassAGO,"Today we grieve with #Annapolis. Tomorrow we can prevent the next shooting. + +The #EPRO law will prevent people fro… https://t.co/7LCTU7nFLR" +06/28/2018,Politicians,@MassAGO,"Many are feeling discouraged or wondering if anyone will take action to end this madness. + +The answer is yes. + +On… https://t.co/rbcPP0gRwD" +06/28/2018,Politicians,@MassAGO,"An elementary school. A movie theater. Churches. High schools. A concert. Now a newsroom in #Annapolis. + +Our heart… https://t.co/p4XtxTnjpo" +06/28/2018,Politicians,@MassAGO,"@Efifiknow @Roche_Bros Hi there, you can call our office's Consumer Assistance and Response Division at (617) 727-8… https://t.co/4kJPO1ZhRQ" +06/28/2018,Politicians,@MassAGO,TOMORROW: Join us for office hours in #Pittsfield at the Ralph Froio Senior Center. Meet our team and find help wit… https://t.co/xxab07oNJD +06/28/2018,Politicians,@MassAGO,"This shows us again that when working people organize and take collective action, they can fight for fair wages and… https://t.co/yiH9lRWGkn" +06/28/2018,Politicians,@MassAGO,Massachusetts will now guarantee paid family and medical leave and raise the minimum wage to $15 an hour.… https://t.co/xSaK52Bp3v +06/28/2018,Politicians,@MassAGO,Angelica is suing the Trump Administration and we stand with her. #FamiliesBelongTogether https://t.co/FcWrC8HuUP +06/28/2018,Politicians,@MassAGO,"Angelica and her 8 year old daughter were allowed entry into the US by an asylum officer, but the very next day the… https://t.co/LwwgG8IHVf" +06/27/2018,Politicians,@MassAGO,"Thank you @SpeakerDeLeo and the House, as well as the late Rep. Peter Kocot, for passing this bill and working to e… https://t.co/KUfC30I1h4" +06/27/2018,Politicians,@MassAGO,Voting is our most basic and essential right. Every citizen should be automatically registered to vote. Today the M… https://t.co/MXqtKacLGs +06/27/2018,Politicians,@MassAGO,如果你接到类似的电话或信息,应该立即挂掉电话或删除相关的信息。中国领事馆或大使馆是不会这样打电话向你要钱的。请从来不要把你的社会安全号码,银行卡号、信用卡号或其他敏感的信息通过电话方式提供给你不十分熟悉和完全信任的任何人。 +06/27/2018,Politicians,@MassAGO,你有没有接到过自称是从中国领事馆打来的电话?如果有,你并不是唯一的。全国各地都有人举报说接到过用普通话的这类电话或信息,向他们要钱或有关信用卡的信息。https://t.co/ntIcZJoUGJ +06/27/2018,Politicians,@MassAGO,"If you get a call or message like this, hang up or delete it. + +The real Chinese Consulate will not call you to ask… https://t.co/nQrKfFFwDb" +06/27/2018,Politicians,@MassAGO,Have you received a call from someone claiming to work for the Chinese Consulate? You're not alone. People across t… https://t.co/S0UQACbD1v +06/27/2018,Politicians,@MassAGO,The Massachusetts House just passed a bill that would ban subjecting minors to “conversion therapy.” We need to pro… https://t.co/eS9XPN1HxQ +06/27/2018,Politicians,@MassAGO,We met with middle school students in #Everett today to hear from them and talk about the risks of substance use.… https://t.co/MAmJnNcAQ1 +06/27/2018,Politicians,@MassAGO,"#SCOTUS just turned its back on millions of public sector workers who keep us safe, teach our children, and care fo… https://t.co/T8FiMLMRXs" +06/27/2018,Politicians,@MassAGO,"RT @MaddowBlog: ""It's illegal, it's unconstitutional, it's un-American, and we're going to continue to see the Trump administration in cour…" +06/27/2018,Politicians,@MassAGO,"What the President is doing to families in our country is not just immoral, it’s illegal. That’s what this lawsuit… https://t.co/2kI5LvokSN" +06/27/2018,Politicians,@MassAGO,"Purdue's executives led and directed an illegal business model, using addiction and deception to enrich themselves… https://t.co/Rir7fDf0BH" +06/27/2018,Politicians,@MassAGO,"We simply cannot trust the President to stop this. Today, with 17 AGs, we sued to #KeepFamiliesTogether. +https://t.co/8IwDbK9bKp" +06/26/2018,Politicians,@MassAGO,We're going to keep working with leaders in government and immigrant communities across Massachusetts to protect ev… https://t.co/7FNYjNCb30 +06/26/2018,Politicians,@MassAGO,I disagree with the court’s decision today and am proud that we successfully stopped the first two versions of the… https://t.co/Dd39njX6C5 +06/26/2018,Politicians,@MassAGO,"We have a responsibility as a nation to protect children and keep families together. + +Join me live with @Maddow at… https://t.co/589oStdVOW" +06/26/2018,Politicians,@MassAGO,The Trump Administration is inflicting devastating and long-lasting trauma on these children and thousands of other… https://t.co/gqGL2xXMOO +06/26/2018,Politicians,@MassAGO,Two Guatemalan children were separated from their mother and held in Michigan for five weeks. The children have bee… https://t.co/Ib53ijtREU +06/26/2018,Politicians,@MassAGO,"As a result of this unconstitutional policy, a mother — now in Hyannis after an asylum officer found she faces pers… https://t.co/Wz7O73YQHm" +06/26/2018,Politicians,@MassAGO,"#BREAKING We just sued the Trump Administration to end the cruel and illegal policy of tearing apart families, reun… https://t.co/YkZQIkukeL" +06/26/2018,Politicians,@MassAGO,"@mampamparam Last May, we issued an advisory reaffirming our commitment to protecting all workers irrespective of i… https://t.co/Vd4VB46zvZ" +06/26/2018,Politicians,@MassAGO,"@mampamparam All workers are entitled to their wages regardless of immigration status, and are welcome to attend a… https://t.co/CKHf9UrElF" +06/26/2018,Politicians,@MassAGO,"@calph7 Hi Chris, the team at our Consumer Assistance and Response Division will be able to answer your question an… https://t.co/nnAUdpCWk3" +06/25/2018,Politicians,@MassAGO,"The next #wagetheft clinic is Tuesday, July 10 in #NewBedford. Walk-ins welcome! + +You can report wage theft online:… https://t.co/dloaVftHMe" +06/25/2018,Politicians,@MassAGO,We invited workers who reported #wagetheft to get free legal consultation at our clinic tonight. Great turnout! https://t.co/aU42GX5200 +06/25/2018,Politicians,@MassAGO,"@s4m_bloch Hi Samuel, thanks for reaching us. The team at our Student Loan Assistance Unit may be able to help. You… https://t.co/PzW2wl3wwN" +06/24/2018,Politicians,@MassAGO,We are at the 15th Annual Asian Festival in #Worcester today to connect people with our office and share the many w… https://t.co/uH9I2ePHB3 +06/23/2018,Politicians,@MassAGO,Drop by and meet the team at today's Health and Safety Fair in #Worcester! https://t.co/UgAfLJjjkZ +06/22/2018,Politicians,@MassAGO,Ending #TPS will tear hundreds of thousands of families apart and force people into countries that are unsafe. It's… https://t.co/H80g5BcqqP +06/22/2018,Politicians,@MassAGO,"President Trump's termination of #TPS is discriminatory, unlawful, and undermines who we are as Americans. We filed… https://t.co/6AdQhfr0pF" +06/22/2018,Politicians,@MassAGO,This is about our duty as a nation to protect children and keep families together. We are suing to make sure this c… https://t.co/pcYaFMSk0p +06/21/2018,Politicians,@MassAGO,"President Trump's family separation policy is immoral, reprehensible, and must end. We need to reunite these famili… https://t.co/J3F2u0YCBu" +06/21/2018,Politicians,@MassAGO,Separating children from their parents simply is not who we are as Americans and it cannot continue.… https://t.co/f7Vl6eUjXH +06/21/2018,Politicians,@MassAGO,We are also asking the court to order the Administration to reunite families that have been unlawfully torn apart a… https://t.co/cfswcXL32E +06/21/2018,Politicians,@MassAGO,"The President’s words cannot be trusted. Since the Administration won't do the right thing, we will. #KeepFamiliesTogether" +06/21/2018,Politicians,@MassAGO,"With @AGOWA, our coalition of 11 states is asking the court to declare the President’s policy unconstitutional and… https://t.co/H0lRNpKgBK" +06/21/2018,Politicians,@MassAGO,#BREAKING We are suing the President to put an end to his cruel policy of separating immigrant families. #KeepFamiliesTogether +06/21/2018,Politicians,@MassAGO,"Employers who take advantage of their workers, steal their pay, and put them in danger at work will continue to fac… https://t.co/Y9tKcAXJHh" +06/21/2018,Politicians,@MassAGO,President Trump's 'Association Health Plan' rule is unlawful and will lead to fewer protections for people in need… https://t.co/1jN8MLnTFq +06/21/2018,Politicians,@MassAGO,"If you have a defective item, try to contact the manufacturer for a warranty repair, replacement, or refund. + +If t… https://t.co/QsZkaziVY4" +06/21/2018,Politicians,@MassAGO,"If you were enrolled in the Babies ""R"" Us “Endless Earnings” reward program, you don’t need to submit a claim. The… https://t.co/kb17OBuSAR" +06/21/2018,Politicians,@MassAGO,"If you paid for a Toys ""R"" Us order, but never received your delivery, you can submit a claim at the link. + +The la… https://t.co/co55JFoomh" +06/21/2018,Politicians,@MassAGO,We will stop at nothing to keep young people safe from addiction and protect future generations from the devastatio… https://t.co/nkJX0GYtBv +06/21/2018,Politicians,@MassAGO,"Purdue Pharma executives directed a false and aggressive marketing scheme to sell as much OxyContin as possible, no… https://t.co/cdKhVPZLg3" +06/20/2018,Politicians,@MassAGO,"The NRA sued us to try and overturn our state's assault weapons ban. +We won. The ban remains in place. + +Every comm… https://t.co/fA4jRxwUZe" +06/20/2018,Politicians,@MassAGO,We've funded over 750 summer jobs for low-income teens in the last four years. Another #HealthySummer is kicking of… https://t.co/c9yDjdVhzb +06/20/2018,Politicians,@MassAGO,"NO HATE +NO FEAR +IMMIGRANTS ARE WELCOME HERE + +Hundreds are rallying at the Massachusetts State House calling on… https://t.co/OP2AMU35eE" +06/20/2018,Politicians,@MassAGO,"Our country should be welcoming refugees, not tearing children from their parents and locking them in cages. + +For t… https://t.co/qPkeKCo2KO" +06/20/2018,Politicians,@MassAGO,"The President is inviting fraud, mismanagement, and deception to the health insurance market while doing nothing to… https://t.co/qQiRMSVKJ7" +06/20/2018,Politicians,@MassAGO,"With @NewYorkStateAG, we are suing the Trump Administration to stop the unlawful expansion of Association Health Pl… https://t.co/3rYNsHwLgG" +06/20/2018,Politicians,@MassAGO,In #Dorchester this morning? Drop by the YMCA for OFFICE HOURS until 10 a.m. https://t.co/3P9JWjldsY +06/20/2018,Politicians,@MassAGO,"While Purdue generated billions of dollars in profit, people from all across Massachusetts and the US were becoming… https://t.co/BvT3ybNRxJ" +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice ICYMI: We launched a new coalition of Boston businesses with Mayor @Marty_Walsh comm… https://t.co/Wdz3sD0KlY +06/19/2018,Politicians,@MassAGO,"With more than $300,000 from settlements we've won, we're able to help young people do good work promoting public h… https://t.co/9OIHilzfDZ" +06/19/2018,Politicians,@MassAGO,We're funding #HealthySummer jobs for young people across Massachusetts for the fourth year in a row. https://t.co/PJbHy1IffQ +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice Women trafficked by these men and others are victims. We are working with victims se… https://t.co/2p7sO8mUIH +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice We also secured indictments against two men for trafficking victims – including min… https://t.co/hlaNpoNBKk +06/19/2018,Politicians,@MassAGO,"In Allston, @MassStatePolice in our office and @BostonPolice partners arrested a Quincy man who was trafficking wom… https://t.co/uusmUFYxdo" +06/19/2018,Politicians,@MassAGO,"Human traffickers continue to prey on vulnerable women and exploit them for profit. In the last week, we’ve charged… https://t.co/zGhHVLbnQq" +06/19/2018,Politicians,@MassAGO,Patients need the security of comprehensive coverage. We will not allow fly-by-night health plans to evade the high… https://t.co/McJEaPTaVg +06/19/2018,Politicians,@MassAGO,The President’s ‘Association Health Plan Rule’ undermines years of work to ensure that all people and small busines… https://t.co/6eIEAjbLHj +06/19/2018,Politicians,@MassAGO,"The Department of Justice is inflicting devastating and long-lasting trauma on thousands of innocent children. + +It… https://t.co/8UycCkxPxL" +06/19/2018,Politicians,@MassAGO,The President is trying to play politics by tearing babies from their mothers and leaving toddlers stranded and cry… https://t.co/AT0SFepmXN +06/19/2018,Politicians,@MassAGO,"What the Trump Administration is doing to immigrant children is immoral and reprehensible. + +21 state AGs are deman… https://t.co/mEP6DOGYl1" +06/19/2018,Politicians,@MassAGO,RT @BostonDotCom: AG Healey’s office funds summer jobs. https://t.co/DRxs13QsW5 https://t.co/KRoQrSTGOv +06/19/2018,Politicians,@MassAGO,Our lawsuit against Purdue Pharma explicitly names the Sackler family and other top executives. They can't hide beh… https://t.co/ByWzszyO1t +06/19/2018,Politicians,@MassAGO,Purdue Pharma's executives will not escape justice again. We will hold them accountable for the devastation they ha… https://t.co/PSHVaDq9ov +06/18/2018,Politicians,@MassAGO,"RT @TinaGaoOnAir: .@MassAGO is awarding nearly $327,000 to more than 90 organizations across #Massachusetts to fund summer #jobs for low-in…" +06/18/2018,Politicians,@MassAGO,This is a stain on our country and a moral crisis. President Trump needs to end this. Now. For the sake of these ch… https://t.co/ltOBml1DAU +06/18/2018,Politicians,@MassAGO,All of us in Massachusetts have worked hard to reduce cigarette and nicotine use among minors. We’re ready to take… https://t.co/fWP0Yoom55 +06/18/2018,Politicians,@MassAGO,We just sent letters to every school in MA cautioning administrators about the dangers these devices pose to their… https://t.co/PkAb69Xcln +06/18/2018,Politicians,@MassAGO,E-cigarettes and vaping devices pose a serious health risk to students. They can contain addictive and unhealthy ch… https://t.co/hNBw4b7qZJ +06/18/2018,Politicians,@MassAGO,Purdue executives and board members knew the truth about their drugs and did nothing to stop the crisis of addictio… https://t.co/vktPB3vq5O +06/18/2018,Politicians,@MassAGO,"By meeting young people where they are, talking openly about substance use and addiction, and listening to the very… https://t.co/MGcL0PlpUl" +06/18/2018,Politicians,@MassAGO,"Purdue marketers told doctors their pills were safer than Tylenol. As a result, high school students in Massachuset… https://t.co/qo9wWk41E4" +06/18/2018,Politicians,@MassAGO,"Purdue lied to keep patients away from safer alternatives, even when company executives knew people were increasing… https://t.co/91rcGHR2sy" +06/17/2018,Politicians,@MassAGO,Students need to know that there are companies and executives out there only looking to turn a profit off of addict… https://t.co/6uEW1YqFeH +06/17/2018,Politicians,@MassAGO,"We're tackling the opioid epidemic on all fronts. In a joint law enforcement effort last week, we seized nearly 2,0… https://t.co/nyO5vXb8LK" +06/17/2018,Politicians,@MassAGO,"The more drugs Purdue's executives sold, the more money they made, and the more people died. https://t.co/98J7RYCy9t" +06/16/2018,Politicians,@MassAGO,We're at the #Lowell African Festival today! Come by and hear about how our office can help you. https://t.co/Z02lKUb6Or +06/16/2018,Politicians,@MassAGO,RT @sethmoulton: Add this to the list of MA being a state of firsts. Proud of the leadership of @MassAGO to take action against the very pe… +06/15/2018,Politicians,@MassAGO,We know finding the answers to questions about elder issues can sometimes be challenging. That's why the AG's Offic… https://t.co/Q2wzT6lTqE +06/15/2018,Politicians,@MassAGO,"On #ElderAbuseAwarenessDay, we filed a settlement with these nursing home companies that jeopardized the safety of… https://t.co/4g8M2IjamR" +06/15/2018,Politicians,@MassAGO,"RT @lisakashinsky: Days after filing a lawsuit against major opioid manufacturer Purdue, @MassAGO Maura Healey stopped by #Methuen to talk…" +06/15/2018,Politicians,@MassAGO,We're at @BristolDA's Celebration of Seniors event today in #Westport. Teams across our office are fighting elder a… https://t.co/fCbnczhYtj +06/15/2018,Politicians,@MassAGO,#EidMubarak to our Muslim friends and neighbors as they celebrate the end of Ramadan and break their fast. Peace and joy to all! +06/15/2018,Politicians,@MassAGO,TODAY: We're at Senator @EricLesser's Thrive After 55 fair to share how we can help protect people from fraud and d… https://t.co/AsFYJWAewv +06/15/2018,Politicians,@MassAGO,RT @NSChamber: Packed house at the Hawthorne Hotel w @MassAGO in Salem. @maura_healey talks strategy to business leaders on leading fight o… +06/15/2018,Politicians,@MassAGO,The men and women of @NSChamber care deeply about the North Shore. They're working to ensure it thrives and it has… https://t.co/Ey9JLxcXQ7 +06/14/2018,Politicians,@MassAGO,"RT @RepMoran: I was pleased to join @MassAGO, Mayor Jajuga & @rep_campbell today at the Marsh Grammar School in Methuen to participate in a…" +06/14/2018,Politicians,@MassAGO,"With partners like @CommonCause, we have a fighting chance at restoring sanity to campaign finance laws, overturnin… https://t.co/kFPCFJpIqr" +06/14/2018,Politicians,@MassAGO,RT @ParkerMSHealth: Thank you @MassAGO This was a wonderful opportunity for my students. Thank you for speaking about such important topics… +06/14/2018,Politicians,@MassAGO,RT @ParkerPrincipal: Thank you @MassAGO for your support and for visiting our school! #parkerpride @ParkerMSHealth https://t.co/eyDWMxyl0S +06/14/2018,Politicians,@MassAGO,"Thank you Ms. Parks, your students, and the incredible caring leadership of Parker Middle School in #Chelmsford for… https://t.co/whyOUWPOUS" +06/14/2018,Politicians,@MassAGO,Health students at the Marsh School understand the risks of substance use and the importance of healthy decisions.… https://t.co/NMdTLXv2QX +06/14/2018,Politicians,@MassAGO,There’s nothing more important than making sure young people understand the importance of health and wellness.… https://t.co/GRllNvl3Un +06/14/2018,Politicians,@MassAGO,Two days ago we sued the top executives of Purdue Pharma. Today we’re visiting students in #Methuen and… https://t.co/Phnfj8r1w1 +06/14/2018,Politicians,@MassAGO,RT @telegramdotcom: Attorney General Maura Healey spotlights drug use prevention at Fitchburg High forum https://t.co/aQUB3LkExp @PaulaOwen… +06/14/2018,Politicians,@MassAGO,"If you have been taken advantage of by a company that promised help with student loans, call us at 1-888-830-6277 o… https://t.co/QqAj4323m0" +06/14/2018,Politicians,@MassAGO,Purdue and its executives made more than $500 million as the opioid crisis exploded in Massachusetts. They knew the… https://t.co/XpjzftOB76 +06/14/2018,Politicians,@MassAGO,This fraud student loan company is paying back every student harmed and is blocked from coming back to Massachusett… https://t.co/Gjwe1pGYeT +06/13/2018,Politicians,@MassAGO,"Giant pharmaceutical companies like Purdue have put profits over people and as a result more than 11,000 have died… https://t.co/CsR5vSqO3I" +06/13/2018,Politicians,@MassAGO,RT @RepJoeKennedy: Our Commonwealth has witnessed too many funerals for lives lost to the opioid epidemic. Thank you @MassAGO for holding P… +06/13/2018,Politicians,@MassAGO,Healthcare career students at Keefe Regional Tech are preparing to take on the opioid crisis and provide the kind o… https://t.co/FuSQhA0WTN +06/13/2018,Politicians,@MassAGO,RT @FitchburgPS: What a tremendous visit from Attorney General Maura Healey today at FHS to talk about the opioid crisis. Amazing and can’t… +06/13/2018,Politicians,@MassAGO,RT @FitchburgPS: VIDEO: Attorney General Maura Healey talked to students and teachers at FHS for a roundtable discussion on the opioid cris… +06/13/2018,Politicians,@MassAGO,RT @Principal_FHS: @FitchburgPS @MassAGO @Superin33564261 So glad to be able to host @MassAGO at FHS on these important topics! We thank y… +06/13/2018,Politicians,@MassAGO,"Yesterday we sued Purdue Pharma and the company’s executives for their role in creating the opioid crisis. + +And to… https://t.co/p0CyC39yjG" +06/13/2018,Politicians,@MassAGO,"As we fight the opioid crisis in Massachusetts, we look to young people for insight. Thank you to #Fitchburg High S… https://t.co/BdcLZDphnP" +06/13/2018,Politicians,@MassAGO,"RT @RyanForRecovery: Massachusetts on Tuesday filed a lawsuit against Purdue Pharma LP, and became the first state to sue the drugmaker's e…" +06/13/2018,Politicians,@MassAGO,"RT @ArlingtonMAPD: “The opioid epidemic that has taken many lives and has ruined so many more has many causes, but the evidence clearly dem…" +06/13/2018,Politicians,@MassAGO,RT @HerrenProject: @MassAGO Maura Healey sues opioid maker Purdue Pharma #opioidepidemic #addiction #togetherwecan https://t.co/8jVKEvetgb +06/13/2018,Politicians,@MassAGO,Purdue Pharma and its executives built a multi-billion-dollar business based on deception and addiction. We're suin… https://t.co/BofCtUr882 +06/12/2018,Politicians,@MassAGO,The opioid epidemic is killing 5 people every day in Massachusetts. We will hold Purdue Pharma and its executives a… https://t.co/yECvHF5kz6 +06/12/2018,Politicians,@MassAGO,"It's time for Purdue Pharma to pay. Today we filed suit against the pharmaceutical giant, as well as its board and… https://t.co/1iBPDS8tow" +06/12/2018,Politicians,@MassAGO,RT @CindyFriedmanMA: Thank you @MassAGO for taking action against Purdue Pharma for their role in contributing to the #opioidcrisis in Mass… +06/12/2018,Politicians,@MassAGO,We remember the 49 innocent lives lost at the Pulse nightclub two years ago today and promise to honor them with ac… https://t.co/Vi84rWwNgw +06/12/2018,Politicians,@MassAGO,"RT @bjoewolf: Two years ago, a man fired 45 rounds a minute into the crowded club while I washed my hands in the sink. 13 of those rounds k…" +06/12/2018,Politicians,@MassAGO,"RT @SenJasonLewis: I applaud @MassAGO for her bold action: a lawsuit against Purdue Pharma. + +More than 11,000 people in Mass. have died of…" +06/12/2018,Politicians,@MassAGO,RT @learn2cope2001: We thank you Attorney General Healey and your staff for you work and dedication to the families of Massachusetts! Final… +06/12/2018,Politicians,@MassAGO,RT @RepKClark: Thank you @MassAGO for holding Purdue accountable for their dangerous and predatory practices. Too many families and communi… +06/12/2018,Politicians,@MassAGO,RT @MassGovernor: I want to thank @MassAGO and her team for their determined work to put Purdue Pharma and their executives where they belo… +06/12/2018,Politicians,@MassAGO,RT @BisforBerkshire: Massachusetts just became the first state to sue OxyContin maker Purdue Pharma AND its executives and directors. Civil… +06/12/2018,Politicians,@MassAGO,RT @StephanieCNews: Posters at @MassAGO announcement they are suing Purdue Pharma for “illegally marketing opioids and profiting from opioi… +06/12/2018,Politicians,@MassAGO,We owe it to families everywhere to hold Purdue and its executives accountable for the damage they have caused and to make them pay. +06/12/2018,Politicians,@MassAGO,"RT @mbebinger: Joanne Peterson, representing families hurt by #opioidcrisis, says “it’s time to hold Purdue Pharma accountable for their gr…" +06/12/2018,Politicians,@MassAGO,RT @ArlingtonMAPD: Chief Ryan stands with @MassAGO for major announcement “Purdue Pharma and its and executives lied about their addictive… +06/12/2018,Politicians,@MassAGO,This is the first lawsuit to name Purdue Pharma executives personally and to tell the story of how they contributed to this crisis. +06/12/2018,Politicians,@MassAGO,"Purdue executives led and directed an illegal business model, using addiction and deception to enrich a few, while… https://t.co/Ebm9pI3Gs9" +06/12/2018,Politicians,@MassAGO,"The more drugs Purdue sold, the more money they made, and the more people died. https://t.co/3zJASsJI0f" +06/12/2018,Politicians,@MassAGO,Purdue even pushed their drugs to prescribers they knew were writing illegal prescriptions and had patients dying of overdoses. +06/12/2018,Politicians,@MassAGO,Purdue targeted vulnerable people including veterans and the elderly to boost their profits. +06/12/2018,Politicians,@MassAGO,Purdue overstated the benefits of opioids and even claimed that they were safer than ibuprofen and Tylenol. +06/12/2018,Politicians,@MassAGO,Purdue pushed prescribers to give higher and more dangerous doses to keep patients on drugs longer without regard f… https://t.co/iqkEhVuXFt +06/12/2018,Politicians,@MassAGO,"Purdue Pharma and its and executives lied about their addictive drugs and profited from the opioid crisis. +We are… https://t.co/63zHiePICL" +06/12/2018,Politicians,@MassAGO,Please join us LIVE this morning for a major announcement related to our investigation into the sale and marketing… https://t.co/Ywrt48FnaH +06/11/2018,Politicians,@MassAGO,"Today President Trump’s @FCC officially repeals #NetNeutrality, but our lawsuit to reverse this illegal action and… https://t.co/Ifp6U3mCKX" +06/10/2018,Politicians,@MassAGO,The President’s irrelevant and baseless arguments against the #ACA won’t stand in court. We’re intervening to prote… https://t.co/UoPqdmSd2m +06/10/2018,Politicians,@MassAGO,Wage theft is illegal and victims are entitled to full restitution and sometimes triple-damages. If your employer i… https://t.co/kC9NdPupEC +06/10/2018,Politicians,@MassAGO,It's time for every state to pass an #ERPO bill. https://t.co/imHuwCVSpC +06/08/2018,Politicians,@MassAGO,The President has called asbestos a “mob conspiracy.” It’s actually a deadly carcinogen. While his EPA does pollute… https://t.co/5BrqdEestp +06/08/2018,Politicians,@MassAGO,"RT @BOSImmigrants: .@MassAGO is hosting a webinar training on Immigration Scams Prevention & Resources Tue, June 12, 2018 at 10:30am. + +Serv…" +06/08/2018,Politicians,@MassAGO,The student debt crisis is crushing families all across the country. Meanwhile Betsy DeVos wants to give fraud for-… https://t.co/lLqfBcQrM2 +06/08/2018,Politicians,@MassAGO,@methuensports @Patriots Thank you Game Changers and enjoy your summer! #GameChange +06/08/2018,Politicians,@MassAGO,"RT @Sen_Chandler: Yesterday, the Senate acted on #gunviolence and passed the #ERPO Bill. In MA we’re proud to have the lowest rate of gun d…" +06/08/2018,Politicians,@MassAGO,In New England National Grid can be reached at 1-800-322-3223 and you can report scams to our office at 617-727-840… https://t.co/OZFFwN4iYp +06/08/2018,Politicians,@MassAGO,"National Grid will never demand immediate payment. There’s a long process before your service can be shut off. + +If… https://t.co/ZbFZKb2D1h" +06/08/2018,Politicians,@MassAGO,.@NationalGridUS customers are getting calls from scammers claiming to work for the utility and demanding payment.… https://t.co/AgY7EpY3w6 +06/08/2018,Politicians,@MassAGO,"If your employer is stealing your wages, threatening you, or otherwise treating you unfairly, call our Fair Labor H… https://t.co/3gKbXvmRkP" +06/08/2018,Politicians,@MassAGO,He ripped off his workers and threatened them when they demanded they wages they earned. After pleading guilty to 1… https://t.co/qCJncZxYeT +06/07/2018,Politicians,@MassAGO,Transgender servicemembers defend our country with dignity and selflessness. They should be honored and allowed to… https://t.co/38yS7StaX1 +06/07/2018,Politicians,@MassAGO,"Every week we witness another mass shooting, domestic violence assault, or suicide by gun that could have been prev… https://t.co/gEKKKQbgf6" +06/07/2018,Politicians,@MassAGO,"#ERPO has now passed both chambers of the MA Legislature. Thank you @Sen_Chandler, @KarenSpilka, and the @MA_Senate… https://t.co/PIrdF0ozTF" +06/07/2018,Politicians,@MassAGO,We have the lowest rate of gun violence in the country in part because strong gun laws save lives. This common sens… https://t.co/jtagHeT9im +06/07/2018,Politicians,@MassAGO,We held a training today at the #Marlborough Senior Center because seniors need to know how they can help prevent f… https://t.co/bqyrDOMJWO +06/07/2018,Politicians,@MassAGO,"RT @MA_Senate: #ERPO bills work. While the Senate is in recess, read up on #ERPO laws in states like #Connecticut and #Indiana and how thes…" +06/07/2018,Politicians,@MassAGO,"There are more than 20,000 suicides by gun every year. Those deaths and countless acts of domestic and mass violenc… https://t.co/5A75Nc5Zp4" +06/07/2018,Politicians,@MassAGO,For years this employer refused to pay his workers. He tried to keep them from the wages they earned. Now he's payi… https://t.co/0Pd0vWVXkY +06/07/2018,Politicians,@MassAGO,We're in #Revere tonight to make sure workers know their rights and to help prevent fraud by unlicensed practioners… https://t.co/8pz0jQsx30 +06/06/2018,Politicians,@MassAGO,Windstar Farm is a vital resource for Cape Cod and the state as a whole. Our settlement paves the way for it's rest… https://t.co/mlhfNGQLP3 +06/06/2018,Politicians,@MassAGO,RT @CHAPAdotorg: Massachusetts Attorney General Maura Healey @MassAGO Joins coalition filing Amicus Brief opposing suspension of @HUDgov #F… +06/06/2018,Politicians,@MassAGO,You can't categorically exclude job applicants with a criminal history. Everyone deserves a fair chance at a job. https://t.co/RmXT5PmE29 +06/06/2018,Politicians,@MassAGO,"When people have access to safe, affordable housing, families are healthier and children do better in school. + +We… https://t.co/kBqXx6j2Am" +06/06/2018,Politicians,@MassAGO,"If you were unfairly or unlawfully denied employment or housing, call our civil rights team at (617) 963-2917. +https://t.co/V03XtI0unO" +06/06/2018,Politicians,@MassAGO,"All people deserve a fair chance at the economic security that comes with a job, including those with criminal reco… https://t.co/vm7YmbGJcV" +06/06/2018,Politicians,@MassAGO,"“We applaud AG Healey’s actions because without this kind of monitoring and enforcement, countless people with CORI… https://t.co/GwwM4V875w" +06/06/2018,Politicians,@MassAGO,Unfortunately many people with criminal records continue to face unnecessary barriers to employment. We're making s… https://t.co/vN5EVSrIkL +06/06/2018,Politicians,@MassAGO,Jobs are the pathway to economic security and a better life—that's why Massachusetts banned employers from asking j… https://t.co/IKhf7pE2cA +06/05/2018,Politicians,@MassAGO,"We should not be bailing out aging, unprofitable power plants at the ratepayer's expense. It's totally unjustified… https://t.co/qtsMjYhVA8" +06/05/2018,Politicians,@MassAGO,The @CFPB keeps a public database of every complaint it’s received. It helps consumers spot bad actors and make sma… https://t.co/8CMTBMhJV9 +06/04/2018,Politicians,@MassAGO,"@throwinganet Hi Anne, you can call our office's Consumer Assistance and Response Division at (617) 727-8400 to rep… https://t.co/LBkyRwG7dI" +06/04/2018,Politicians,@MassAGO,"We will continue to enforce the law, which remains unchanged, and will redouble our efforts to expand equality across the country. #SCOTUS" +06/04/2018,Politicians,@MassAGO,There is no license to discriminate. The #SCOTUS decision in Masterpiece Cakeshop affirms the broad authority of st… https://t.co/o8iWzzyfa8 +06/01/2018,Politicians,@MassAGO,"On #NationalGunViolenceAwarenessDay, I #WearOrange because every day in this country, over 90 people are killed by… https://t.co/cQxVOvAvVZ" +06/01/2018,Politicians,@MassAGO,Learn more about our office’s education campaign to protect residents from the unauthorized practice of immigration… https://t.co/dEMoqSjycA +06/01/2018,Politicians,@MassAGO,Our team was at the Revere Community School tonight hosting a training on workers’ rights and the unauthorized prac… https://t.co/RQkiHmJzSn +05/31/2018,Politicians,@MassAGO,Every nursing home resident deserves a safe and healthy living environment. I’m calling on the federal government t… https://t.co/5WCqiMCh3F +05/30/2018,Politicians,@MassAGO,The Trump Administration’s rollback of the contraceptive coverage mandate is a direct attack on women’s health and… https://t.co/bYQh403yu3 +05/30/2018,Politicians,@MassAGO,Missing Children's Day is a reminder that we all have a role to play to keep our children safe and remember those w… https://t.co/0pWwESQM8J +05/30/2018,Politicians,@MassAGO,"Yesterday, my office joined @marty_walsh and Boston business leaders to announce a new coalition, Employers Against… https://t.co/Rhbslbm61g" +05/29/2018,Politicians,@MassAGO,"Commercial sex exploits women and children, and has no place in the workplace. Thank you to our partners… https://t.co/5FltnGDNhi" +05/29/2018,Politicians,@MassAGO,"Today, 23 companies have committed to adopting zero-tolerance workplace policies on sex buying for their employees. https://t.co/DkYhLBrzPG" +05/29/2018,Politicians,@MassAGO,"Buyers are the catalyst for sex trafficking, and often search for sex during the workday on company equipment. EAST… https://t.co/3aWFOmwhh3" +05/29/2018,Politicians,@MassAGO,We owe it to survivors of sex trafficking to do everything we can to put an end to this abuse and exploitation. Tod… https://t.co/5tsKovv16y +05/29/2018,Politicians,@MassAGO,"LIVE now at https://t.co/CoDQXZQqtN - AG Healey, Mayor Walsh, business leaders announcing zero tolerance workplace policies on sex buying" +05/28/2018,Politicians,@MassAGO,We remember the brave men and women who gave everything in service to our country. We offer our gratitude to their… https://t.co/yFVoCCh5dA +06/30/2018,Politicians,@susanamendoza10,Thousands marched in Chicago bcuz #FamiliesBelongTogether. We marched in the sweltering heat to put heat on… https://t.co/dH5zj9sE0s +06/28/2018,Politicians,@susanamendoza10,RT @AndyManar: Thanks for your continued work @JasonKander @letamericavote! It was good to talk to you & @susanamendoza10 about our success… +06/28/2018,Politicians,@susanamendoza10,"RT @SenSanders: To nobody’s surprise the U.S. Supreme Court, in a 5-4 decision, sided with big money interests and against the needs of wor…" +06/28/2018,Politicians,@susanamendoza10,RT @JPolydoris: If only ⁦@GovRauner⁩ @idph would have put this much effort/action into the LEGIONELLA bacteria issue at Quincy Vets home -… +06/28/2018,Politicians,@susanamendoza10,RT @SenDuckworth: The American people should have a voice in the selection of their next Supreme Court Justice. #Kennedy https://t.co/TAgp0… +06/28/2018,Politicians,@susanamendoza10,"The best way to protect your collective bargaining rights, mobilize to protect good wages, and fight back against a… https://t.co/KJS2jC0Qt1" +06/27/2018,Politicians,@susanamendoza10,"RT @CarolAmmons4IL: Illinois - your Governor has been hanging out in DC all week, waiting to celebrate a ruling that will hurt workers. + +V…" +06/26/2018,Politicians,@susanamendoza10,"I am excited to announce the Anti-Harassment, Equality, & Access Panel (AHEAP) is beginning its statewide roundtabl… https://t.co/DYKaig2Ad1" +06/26/2018,Politicians,@susanamendoza10,"RT @CarolAmmons4IL: I’m not going to stand by as @BruceRauner attacks Champaign-Urbana. + +Here are the facts, Governor. Please read them bef…" +06/25/2018,Politicians,@susanamendoza10,What better way to celebrate #LGBTQ #Pride Month than by marching in the 49th Annual Chicago Pride Parade! Thank yo… https://t.co/XYDJ7jXB06 +06/24/2018,Politicians,@susanamendoza10,"RT @BobMorganIL: Such a great morning, thanks to @EqualityILL and friends @JBPritzker, @JulieForSenate, @RamForSenate, @MikeforIllinois, @…" +06/24/2018,Politicians,@susanamendoza10,We are ready to march in the Chicago Pride Parade. https://t.co/PBhbGhxc3p +06/24/2018,Politicians,@susanamendoza10,RT @BobFiorettiChi: Great to be in the @WVON1690 studio again today with the governor of talk radio #CliffKelley discussing veterans issue… +06/23/2018,Politicians,@susanamendoza10,RT @JBPritzker: I ended the day at a press conference at @heartlandhelps with @repgutierrez to speak about Trump’s devastating family separ… +06/23/2018,Politicians,@susanamendoza10,Happy 93rd Birthday to wonderful @revclayevans! May God bless you and keep you going strong for many more happy yea… https://t.co/H2avCO2biR +06/23/2018,Politicians,@susanamendoza10,Thank you to the @jolietslammers for letting me throw out the first pitch at tonight's baseball game. What a blast!… https://t.co/ystgR00pNo +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump I'm not worried about you not liking me. I'm much more worried ab… https://t.co/mNQLCDlM2A +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Realmente es incomprensible que existan personas, y mucho peor, s… https://t.co/p1F9GeFoGG" +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump Mal hecho por Obama y mal hecho por Trump. Y por si no te has dad… https://t.co/K2nD1qOBQl +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Por última vez, NO. Yo nací en Chicago." +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Y los que deben sentir vergüenza, son aquellos que defienden esta… https://t.co/HBq5Nk3fD9" +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump Yo no nací en México. Nací aquí y porque amo a USA tengo todo el… https://t.co/XmrFGXH9ga +06/22/2018,Politicians,@susanamendoza10,@brianmcdonagh Love it! Thanks for representing! 💓 +06/22/2018,Politicians,@susanamendoza10,I'd like to retweet this at least 1000x. https://t.co/7CzwzVSSIH +06/22/2018,Politicians,@susanamendoza10,"@tahmanbradley Seriously? The Black Caucus members are doing their best, but it doesn't help that they have a… https://t.co/YrzCwzQw76" +06/22/2018,Politicians,@susanamendoza10,Thank you. Honored to have your endorsement! https://t.co/N2Fpr0W4cT +06/20/2018,Politicians,@susanamendoza10,America is in danger of losing her soul. We know we're better than this. Here are my thoughts on the cruel Zero Tol… https://t.co/EcFkkXhbud +06/20/2018,Politicians,@susanamendoza10,"RT @A_Safe_Haven: We’d like to give a special shout-out to @SenatorVanPelt ,@RetainAnneBurke , and @susanamendoza10 for being members of t…" +06/19/2018,Politicians,@susanamendoza10,Honored to join so many civic and business leaders for the @CivicFederation Annual Awards Luncheon. #twill https://t.co/cU0xNfV8QS +06/18/2018,Politicians,@susanamendoza10,"RT @helenprejean: Like so many of you, I'm morally outraged at what is happening to the children at the border, where they're being separat…" +06/18/2018,Politicians,@susanamendoza10,"Rest In Peace, Elizabeth. Godspeed. 😢🙏 https://t.co/rIzkKH2Kwx" +06/18/2018,Politicians,@susanamendoza10,"Amen. Thank you, @JillWineBanks 💓 https://t.co/aDA4kvwMkz" +06/17/2018,Politicians,@susanamendoza10,Father's Day Camping! Nothing better than that! Happy Father's Day to all the amazing dads out there! 💓 #FathersDay https://t.co/S946mdaMlr +06/15/2018,Politicians,@susanamendoza10,@aenelson4 Pocket tweet. 🤪 +06/14/2018,Politicians,@susanamendoza10,"RT @staceyabrams: “Abrams’ platform draws from her own experiences and those of others struggling to attain better lives for themselves, th…" +06/14/2018,Politicians,@susanamendoza10,Elizabeth Bracket is a tough and fierce champion. She is an amazing role model to women everywhere. She's had bruta… https://t.co/kJbhqg2KbK +06/14/2018,Politicians,@susanamendoza10,"RT @rlharri: Of all the ridiculous things @GovRauner has said about the Quincy Vets Home, this one, this one may be the best #twill #Rauner…" +06/14/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: WATCH: Bruce Rauner blames ""massive floods and tornadoes"" for 2015 veterans home outbreak of Legionnaires', which he d…" +06/14/2018,Politicians,@susanamendoza10,@IllinoisWorking Say what? https://t.co/3e6ZM0O2gL +06/13/2018,Politicians,@susanamendoza10,"Blessed to be having Iftar dinner with friends who are more like family. Great food, fun & family with @MHilmiCinar… https://t.co/vuOgMkYNui" +06/11/2018,Politicians,@susanamendoza10,"RT @JPolydoris: Ok Twitter-verse, now - we need you to do what you do best ... Retweet! + +Help us 🇺🇸🇺🇸🇺🇸HELP OUR VET🇺🇸🇺🇸🇺🇸! https://t.co/K…" +06/11/2018,Politicians,@susanamendoza10,@ashvinlad @PoliticalEditor Good point. Thanks. +06/09/2018,Politicians,@susanamendoza10,RT @jenndangerous: Anthony Bourdain on Chicago always stirs my heart: https://t.co/2ZHJp67C1W +06/09/2018,Politicians,@susanamendoza10,"RT @JBPritzker: Today I called Virginia Governor @RalphNortham, a fellow ERA advocate, to offer my support in getting the #EqualRightsAmend…" +06/08/2018,Politicians,@susanamendoza10,@SkywayWilly @rrosenthal Hahahaha! Love it! Thanks 😁 +06/08/2018,Politicians,@susanamendoza10,RIP @Bourdain. My sincere condolences to his family and his @CNN work family. +06/08/2018,Politicians,@susanamendoza10,"Shocked. So many, myself included, thought his was the coolest job/life in the world. Another reminder that depress… https://t.co/wkVOiG1cDg" +06/08/2018,Politicians,@susanamendoza10,"Thanks, @rrosenthal! I didn't remember that fun fact. Woohoo! Gooooaaaalll!!!⚽ https://t.co/h6h1yFe1I2" +06/08/2018,Politicians,@susanamendoza10,"@JulieDiCaro You better believe I was playing soccer in 1988, on @BolingbrookHigh girl's team that started that yea… https://t.co/CRCeUuo7zd" +06/06/2018,Politicians,@susanamendoza10,"So sad. If you know someone in crisis, call the toll-free National Suicide Prevention Lifeline (NSPL) at 1-800-273-… https://t.co/m3a6jUoeFi" +06/05/2018,Politicians,@susanamendoza10,"@kylehillman Hi Kyle, I have my staff looking into this issue. We hope we can help. We will get back to you shortly." +06/05/2018,Politicians,@susanamendoza10,@craigrwall For sure. Going in a frame and up on my wall. Make me smile every single time. +06/05/2018,Politicians,@susanamendoza10,And THIS fills my heart with joy. 💓 https://t.co/CvibR2G4Fa +06/04/2018,Politicians,@susanamendoza10,@kingLudvikII I agree. +06/03/2018,Politicians,@susanamendoza10,"WLS-TV: Visitation Sunday for CFD diver Juan Bucio. +https://t.co/tdIeuXlDiO + +via @GoogleNews" +06/03/2018,Politicians,@susanamendoza10,You go girl! https://t.co/soMOT2PIAu +06/03/2018,Politicians,@susanamendoza10,Today at 12:30 pm... Join me and the Bloomingdale Township Democrats in the 59th Annual Roselle Rose Parade. To sig… https://t.co/phOvbyMH0r +06/02/2018,Politicians,@susanamendoza10,"Team Susana unite! Join me tomorrow, 6/3, as we march at the 59th Annual Roselle Rose Parade. To sign up, please cl… https://t.co/pwPJY8JopU" +06/02/2018,Politicians,@susanamendoza10,Nice hit! Go David! Go Cardinals! 💓 Tee Ball! https://t.co/AsSY39k1nE +06/01/2018,Politicians,@susanamendoza10,I’ve launched my 2018 website! If you would like to learn about what my team and I have accomplished in the last tw… https://t.co/0lNMcJDAem +06/01/2018,Politicians,@susanamendoza10,Happy #PrideMonth! 🏳️‍🌈 https://t.co/mUQuoMHLK9 +06/01/2018,Politicians,@susanamendoza10,"@ArchTwohey Thank you. 😊 How about, Mendoza for Comptroller? 😉" +06/01/2018,Politicians,@susanamendoza10,"Thank you, Illinois, for giving me & my stellar team the honor & privilege of working hard on your behalf. Thank yo… https://t.co/vjRmd2Abna" +05/31/2018,Politicians,@susanamendoza10,"RT @actionillinois1: Today Illinois lawmakers +☑️ratified the #ERA +☑️passed a balanced budget +☑️increased education funding +☑️crated an ant…" +05/31/2018,Politicians,@susanamendoza10,"RT @SanofiUS: People of all races, religions and nationalities work at Sanofi every day to improve the lives of people around the world. Wh…" +05/31/2018,Politicians,@susanamendoza10,RT @VozdeRaquel: Illinois: Getting stuff done this year. Proud of my legislature tonight. #ERANow and a budget? We're on FIRE! https://t.co… +05/31/2018,Politicians,@susanamendoza10,RT @WCIA3Mark: Sen. @ElgieSims says this bipartisan budget is evidence of what can happen when lawmakers focus on policy over politics. Not… +05/31/2018,Politicians,@susanamendoza10,Woohoo! Yes! Yes! Yes!!! https://t.co/T1pvqGlYV1 +05/31/2018,Politicians,@susanamendoza10,RT @HeidiLiFeldman: This is making me smile and cry at the same time. #ERA #ERANow https://t.co/qSsqRAWTjZ +05/31/2018,Politicians,@susanamendoza10,RT @ILComptroller: My heartfelt thanks go to the legislators of the State House & Senate for honoring women today by voting to make #Illino… +05/31/2018,Politicians,@susanamendoza10,"@AmandaVinicky Guilty as charged. Former legislator, mind you. 😉" +05/30/2018,Politicians,@susanamendoza10,Are you ready for parade this Sunday Jun 3? March with me and the Bloomingdale Township Democrats in the 59th Rosel… https://t.co/IWkX4Ap7eH +05/28/2018,Politicians,@susanamendoza10,Le Superman. Magnifique! https://t.co/g2bEZtbdRa +05/28/2018,Politicians,@susanamendoza10,Thank you. #MemorialDay https://t.co/usGw0q8jP9 +05/27/2018,Politicians,@susanamendoza10,Happy to cheer on the @chiredstarsPR on their Pride Match celebrating #inclusion with @ILTreasurer. Go Red stars! https://t.co/0gDu8MLVdI +05/26/2018,Politicians,@susanamendoza10,Had fun scoring on the @chiredstarsPR mascot Supernova today at the Pride Match during halftime. My former coaches… https://t.co/eAmtAojJAZ +05/26/2018,Politicians,@susanamendoza10,@Jodyanne1 @SeniorCaucus @ReclaimTheBurbs @reclaimchicago @peopleslobbyusa Sure. Info@susanamendoza.com. +05/24/2018,Politicians,@susanamendoza10,RT @PPIAction: “It’s exhausting to be a woman under this administration. This needs to stop. ” @susanamendoza10 #NoGagRule #IStandWithPP ht… +05/23/2018,Politicians,@susanamendoza10,RT @ChampaignCoDems: Congratulations to Ms Abrams! https://t.co/BFvfI9CpV4 +05/22/2018,Politicians,@susanamendoza10,"Going to make my honey, @DavidSzostak, a yummy dinner tonight. 😋 https://t.co/FLtZOvZ03X" +05/22/2018,Politicians,@susanamendoza10,"Wishing my dear friend, Stacey Abrams, good luck in her primary election tomorrow! If you have friends or family in… https://t.co/jP7um7WCrz" +05/20/2018,Politicians,@susanamendoza10,Congrats to the beautiful couple! May they live happily ever after. ❤️❤️❤️ #RoyalWedding https://t.co/mQ5F3NfWTt +05/18/2018,Politicians,@susanamendoza10,RT @GOVERNING: Illinois Comptroller Susana Mendoza has a long-running feud with gov. Bruce Rauner that has made her already difficult job t… +05/18/2018,Politicians,@susanamendoza10,"RT @RBLandmark: ""Just Judy"" is the first and only biography of the former Illinois state legislator, state comptroller, state treasurer and…" +05/17/2018,Politicians,@susanamendoza10,"RT @daveclarkin: I, too, an struck by the fact that the most significant accomplishments over the last three years in Springfield are thing…" +05/16/2018,Politicians,@susanamendoza10,RT @rrstar: Our View: Reforms meant to end deceptive spending practices. https://t.co/oHsKdQHJds https://t.co/xzsYqfSvVs +05/16/2018,Politicians,@susanamendoza10,.@sengerdarlene is unfit for a position of public trust. She disqualified herself as someone who cannot be trusted… https://t.co/tG4R8gLX7i +05/16/2018,Politicians,@susanamendoza10,@sengerdarlene is unfit for a position of public trust. She disqualified herself as someone who cannot be trusted b… https://t.co/VgHCAyBydM +05/13/2018,Politicians,@susanamendoza10,Happy Mother's Day to all those special moms out there! A special thank you to my amazing 82 year old mother. She's… https://t.co/sB5BL5eWRS +05/10/2018,Politicians,@susanamendoza10,"@ckjbg @sengerdarlene @WBEZ @davemckinney She works for Gov. Rauner. He has praised her work, hence endorsing it.… https://t.co/PkOhNF3KDb" +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene @WBEZ @davemckinney @GovRauner I'll tell you who it WASN'T: @SenDuckworth. #twill #Apologize2Tammy +05/10/2018,Politicians,@susanamendoza10,"@ckjbg @sengerdarlene @WBEZ @davemckinney Yes. In fact, Rauner is responsible for HIS administration's decision to… https://t.co/TncInGjhNq" +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene And here is new information uncovered today by @WBEZ @davemckinney. https://t.co/bKx0aark9V #twill #FailedGovernor +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene Here's how. This investigative report by @WBEZ @davemckinney lays out the FACTS. The… https://t.co/8mJNWeBWbe +05/10/2018,Politicians,@susanamendoza10,@mestasenesta @AnitaPadilla32 @JoanieLum @LisaChavarria @SylviaFOX32 @BurtonABC7 @erinkennedytv @MarissaBaileyTV… https://t.co/6GJkJPbs7l +05/09/2018,Politicians,@susanamendoza10,Truth. 💪 https://t.co/AxfP3tNLrZ +05/08/2018,Politicians,@susanamendoza10,@mestasenesta I appreciate you.🙂 +05/05/2018,Politicians,@susanamendoza10,"My family is the most important part of my life, so I was super excited to be at my son David Quinten's 1st Tee-Bal… https://t.co/TBUQBGjCGj" +05/05/2018,Politicians,@susanamendoza10,"""Blah blah blame blah...noise...blah blah blah blame blah""-@sengerdarlene. Didn't see an apology in all that blah b… https://t.co/FKWHU73QYU" +05/05/2018,Politicians,@susanamendoza10,"As low as it gets. #Apologize2Tammy +https://t.co/sgJCiZd8BJ" +05/05/2018,Politicians,@susanamendoza10,"RT @DonGerard: ""Thumbs down: @sengerdarlene for putting politics first as the severity of repeated Legionnaires disease outbreak at the Ill…" +05/04/2018,Politicians,@susanamendoza10,"RT @jasrubin: ""Democrats @JBPritzker and Comptroller @susanamendoza10 are demanding an apology"" #ilgov #twill https://t.co/p0y6KRyz3F" +05/04/2018,Politicians,@susanamendoza10,"RT @alexhanns: ""@JBPritzker and Comptroller @susanamendoza10 calling on @BruceRauner and his policy chief to apologize to @SenDuckworth."" @…" +05/03/2018,Politicians,@susanamendoza10,"""Rauner Administration got caught trying to pass the blame for the death of 13 veterans at a state home on to a wou… https://t.co/Tro5YIN9uH" +05/03/2018,Politicians,@susanamendoza10,Thank YOU for your service and for all you've done to protect our service men and women and our veterans. 💓 https://t.co/gm256z5SWW +05/03/2018,Politicians,@susanamendoza10,100% accurate. https://t.co/PWBSSt3zqJ +05/03/2018,Politicians,@susanamendoza10,https://t.co/f7I9RtrjoP https://t.co/iiOuPGpElv +05/03/2018,Politicians,@susanamendoza10,It’s appalling that someone with such poor character & misdirected moral compass would be running for statewide office. #twill +05/03/2018,Politicians,@susanamendoza10,"She needs to apologize: +➖To the families of the victims for choosing to protect her former boss over protecting… https://t.co/mj1jwZ64R3" +05/03/2018,Politicians,@susanamendoza10,"Today, I joined @JBPritzker @lindachapalavia @repkifowit @Gilbert36ward & IL veterans to call on @sengerdarlene (… https://t.co/zZcSB2NKTQ" +05/03/2018,Politicians,@susanamendoza10,RT @JBPritzker: Tune in as @susanamendoza10 and I discuss Bruce Rauner’s disastrous Quincy cover up and his attempt to blame U.S. Senator D… +05/02/2018,Politicians,@susanamendoza10,"RT @hannahmeisel: The *day after* WBEZ published its first story on the 13 deaths at the Quincy Vets Home in December, @GovRauner’s deputy…" +05/02/2018,Politicians,@susanamendoza10,"RT @ILComptroller: I loved visiting Landmark Cafe & Creperie while in Galesburg, #Illinois last month. If you’re in the area, the spinach b…" +05/02/2018,Politicians,@susanamendoza10,RT @EJMill: The latest from @davemckinney & @tonyjarnold on @GovRauner's response to the Veteran deaths in Quincy continues to drag this ad… +05/02/2018,Politicians,@susanamendoza10,"Hey, @DarleneSenger. Don't mess with @SenDuckworth. She left half her body on the battlefield fighting to protect u… https://t.co/47igtDe23z" +05/02/2018,Politicians,@susanamendoza10,"Instead of her immediate reaction to the deaths of 13 war heroes being, ""Good God, what can we do to help the remai… https://t.co/IDBYQJd045" +05/02/2018,Politicians,@susanamendoza10,Sick and shameless. https://t.co/8zsN3XEqYl +04/29/2018,Politicians,@susanamendoza10,"It's a tough job, but I'm honored and blessed to get to do it. Thank you, Illinois. https://t.co/1JlBpLxufz" +04/29/2018,Politicians,@susanamendoza10,@sunshinedreary @ILComptroller Wow. Thank you. So nice and appreciated. 😊 +04/27/2018,Politicians,@susanamendoza10,RT @GOVERNING: Illinois Comptroller Susana Mendoza has a long-running feud with gov. Bruce Rauner that has made her already difficult job t… +04/27/2018,Politicians,@susanamendoza10,"@DonSynowiec @ILComptroller It was a combination of cuts and taxes. Not pretty, but it stopped the state from caree… https://t.co/moWOYtt0zi" +04/27/2018,Politicians,@susanamendoza10,@DonSynowiec @ILComptroller Article 8 Section 2a of IL Constitution is clear: the GOVERNOR shall prepare and submit… https://t.co/GHg45dw4la +04/27/2018,Politicians,@susanamendoza10,@DonSynowiec @ILComptroller Article 8 Section 2a of IL Constitution is clear: the GOVERNOR shall prepare and submit… https://t.co/Mp2Vsj59jN +04/27/2018,Politicians,@susanamendoza10,I joined @AFSCME workers today to call on Gov Rauner to give them their court mandated step increases. It’s been th… https://t.co/pwRkxeCE7f +04/26/2018,Politicians,@susanamendoza10,"@tahmanbradley Rauner lies. The numbers don't. The Truth hurts. The truth is, it took @GovRauner only 2.5 years to… https://t.co/XEI0lWbRZd" +04/25/2018,Politicians,@susanamendoza10,"RT @melinrogovin: This was a failure of leadership by Bruce Rauner, plain & simple. Illinois suffered greatly as a result. It’s why I’m vot…" +04/24/2018,Politicians,@susanamendoza10,"Thank you for your leadership in sponsoring our Truth in Hiring legislation! +https://t.co/TJyUijnJLZ" +04/24/2018,Politicians,@susanamendoza10,"RT @repgregharris: And on top of this, because of @ILComptroller Mendoza's new debt transparency law, we found out that @GovRauner had yet…" +04/24/2018,Politicians,@susanamendoza10,"RT @ILComptroller: A special report released by my office today reveals that over the course of the 736-day-budget impasse, #Illinois accru…" +04/24/2018,Politicians,@susanamendoza10,"RT @ILComptroller: The fact that, under Governor Rauner, the state allowed its bill backlog to grow to a point where we incurred nearly two…" +04/24/2018,Politicians,@susanamendoza10,"RT @APOConnor: APNewsBreak: #IL late-payment interest since 2015 $1.14B, more than previous 18 years combined. @APCentralRegion: https://t.…" +04/23/2018,Politicians,@susanamendoza10,"“Empowered women, empower women."" It was a pleasure to co-chair Congresswoman @janschakowsky’s Annual Women's Power… https://t.co/yOXFCSxL1E" +04/23/2018,Politicians,@susanamendoza10,Honored to co-chair & looking forward to attending today’s Ultimate Women’s Power Lunch in support of superstar Con… https://t.co/T2QMMx4ID5 +04/19/2018,Politicians,@susanamendoza10,RT @ILComptroller: Thank you to @cljmitchell & all of the cosponsors of the #Truthinhiring Act! I am thrilled that it passed unanimously to… +04/19/2018,Politicians,@susanamendoza10,RT @ILComptroller: Thank you to all the members of the #Illinois House of Representatives who voted UNANIMOUSLY to pass the #TruthinHiring… +04/19/2018,Politicians,@susanamendoza10,RT @TrishPrabhu: It was an honor to speak at the @ymca State Advocacy Day today! Thank you @ILComptroller @susanamendoza10 for your keynote… +04/18/2018,Politicians,@susanamendoza10,"Rest in Peace, First Lady Barbara Bush. My condolences to the entire Bush family for their enormous loss. She was a… https://t.co/iQ6kU4GyWv" +04/13/2018,Politicians,@susanamendoza10,RT @alexhanns: Must be tough being a failed governor #ilgov #twill https://t.co/EoR15hKUdI +04/13/2018,Politicians,@susanamendoza10,RT @alexhanns: And another: @BruceRauner's then-legislative director @sengerdarlene wanted to blame Rauner's fatal mismanagement of the Qui… +04/13/2018,Politicians,@susanamendoza10,"RT @alexhanns: #FlashbackFriday to @BruceRauner exchanging his ""to do"" list for a ""to blame"" list: https://t.co/Kbj4uBZK0V #ilgov #twill ht…" +04/13/2018,Politicians,@susanamendoza10,RT @IllinoisWorking: 2) Rauner is training his team in the ways of blame. Remember when Rauner’s hand-picked comptroller candidate Darlene… +04/13/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: wait wait wait...today is NATIONAL BLAME SOMEONE ELSE DAY? + +how can we NOT look at some of the highlights of Bruce Rau…" +04/12/2018,Politicians,@susanamendoza10,Thanks for your support! https://t.co/JYxW57tfk1 +04/12/2018,Politicians,@susanamendoza10,RT @TheMartyCastro: Great turnout tonight for @susanamendoza10 general #election #campaign kickoff including great friends like @billzwecke… +04/11/2018,Politicians,@susanamendoza10,RT @TheMartyCastro: Looking forward to attending @susanamendoza10 general #election #campaign kickoff tomorrow night at @texasdebrazil! Ple… +04/07/2018,Politicians,@susanamendoza10,Dems came together 4 Interfaith #Unity Breakfast today at the New Home Baptist Church in Chicago. I’m proud to be p… https://t.co/r2b2NiBsTQ +04/05/2018,Politicians,@susanamendoza10,And in today's feel good/awesome story...https://t.co/74tP1zCD6p +04/04/2018,Politicians,@susanamendoza10,"@JimmyRiley234 Thanks, Jim! It was delish and an even bigger treat to get to see you! 😃" +04/03/2018,Politicians,@susanamendoza10,The #bluewave is certainly coming through McDonough County! Wonderful seeing the loyal McDonough democrats tonight.… https://t.co/gn2tXuWgq4 +04/02/2018,Politicians,@susanamendoza10,"RT @ILComptroller: To mark #WorldAutismday, I visited Willowglen Academy. The dedicated efforts of staff there help #IL residents w/ specia…" +04/01/2018,Politicians,@susanamendoza10,Great season @LoyolaChicago Ramblers! You made Chicago and Illinois and fans across the country very proud. Hold yo… https://t.co/arGK6luG92 +03/31/2018,Politicians,@susanamendoza10,"C'mon, @LoyolaChicago Ramblers! Up at halftime. Keep that lead going to the very end! You can do it!!! Great team +… https://t.co/2pfjIl6LiX" +03/31/2018,Politicians,@susanamendoza10,"On April 12th, celebrate the life and legacy of the late and great Judy Baar Topinka! All proceeds from this event… https://t.co/AKkAqP07rT" +03/26/2018,Politicians,@susanamendoza10,"RT @playbookplus: With the last four teams decided, @BallardFirm's Brian Ballard sits at the top of #PlaybookPool, followed closely behind…" +03/25/2018,Politicians,@susanamendoza10,RT @cnnbrk: Aerial footage shows the turnout at various March for Our Lives events across the US today https://t.co/K4g34viFVh https://t.co… +03/25/2018,Politicians,@susanamendoza10,This is so great!!! Congrats @LoyolaChicago Ramblers and way to go #SisterJean! 🏀 https://t.co/CAGQq8mNdh +03/24/2018,Politicians,@susanamendoza10,RT @gslayen: READ: Downstate holds key to @JBPritzker’s blowout win in primary via @SJRbreaking: https://t.co/hzMEnugQgp #ilgov #twill +03/24/2018,Politicians,@susanamendoza10,@Jrock08 @GovRauner I imagine it would be something like this fast: https://t.co/s2W5qloyzi via @giphy +03/24/2018,Politicians,@susanamendoza10,"#FAILEDGOVERNOR @GovRauner thinks mismanaged taxpayer $ is no big deal. ""Clerical errors, or mistakes, get made, an… https://t.co/izKOHoUQgr" +03/24/2018,Politicians,@susanamendoza10,"RT @kylegriffin1: 11-year old Christopher Underwood, who lost his brother to gun violence: “For me, I would like to not worry about dying,…" +03/24/2018,Politicians,@susanamendoza10,"RT @NancyRotering: We do not have to live like this. +#Enough #MarchForOurLives #StopTheSlaughter #TheTimeIsNow" +03/24/2018,Politicians,@susanamendoza10,Democrats were energized and ready to work hard to elect @JBPritzker and @JulianaforLG at this morning’s Unity Brea… https://t.co/MOoKwcuzuK +03/23/2018,Politicians,@susanamendoza10,RT @POLITICOPress: #PlaybookPool update! @Steve_Glazer currently leads our scoreboard with @RepDebDingell @ChicagosMayor @susanamendoza10 @… +03/23/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: this is *bananas*, especially from the guy who is trying to destroy unions under the guise of “forced political speech…" +03/23/2018,Politicians,@susanamendoza10,@WCIA3Mark @zakouts84 @GovRauner https://t.co/YOe3KqR9G2 +03/23/2018,Politicians,@susanamendoza10,Woohoo! @LoyolaChicago Ramblers did it! Great job boys and thank you Sister Jean! I was praying right along with yo… https://t.co/vth88LOa0S +03/23/2018,Politicians,@susanamendoza10,It's tied. Don't lose faith. C'mon people - start praying with Sister Jean! Let's go @LoyolaChicago Ramblers! https://t.co/tSIHMZqpC3 +03/23/2018,Politicians,@susanamendoza10,"RT @IGsolidarityNET: @LoyolaChicago's halftime lead is huge — now stand w/ Belsy Garcia, a 3rd-Year Loyola Medical School student whose fat…" +03/22/2018,Politicians,@susanamendoza10,"Woohoo! Let's do this, @LoyolaChicago Ramblers! Keep praying, Sister Jean!!! 💓" +03/22/2018,Politicians,@susanamendoza10,"RT @gslayen: While @JBPritzker has a clear vision for beating @BruceRauner in the general election, the failed governor is still fighting w…" +03/22/2018,Politicians,@susanamendoza10,@mary_cresto Thank you! 💓 +03/21/2018,Politicians,@susanamendoza10,I'm so proud of my friends @JBPritzker & @JulianaforLG for their remarkable victory in last night's Democratic Prim… https://t.co/HbkxM1poQ4 +03/21/2018,Politicians,@susanamendoza10,RT @ILDCCA: Congrats to @JBPritzker & @JulianaforLG! Let’s work together to unite @demsforillinois and win in November! #JBForGov #Democrat… +03/21/2018,Politicians,@susanamendoza10,"Thanks, @Ameya_Pawar_IL! https://t.co/rPtb1AP34g" +03/20/2018,Politicians,@susanamendoza10,There’s still time left to cast your vote! Meeting some voters at Union Train Station with @JBPritzker &… https://t.co/aKWozJowHw +03/20/2018,Politicians,@susanamendoza10,"Quick coffee break ☕️ on the campaign trail with @JBPritzker, @chicityclerk, @AldermanSolis & others. Get out there… https://t.co/tBlSN2MoQj" +03/20/2018,Politicians,@susanamendoza10,Fun phone banking with some fantastic volunteers at JB & Juliana’s South Side Office! #twill #ILGov https://t.co/BxODMQ8ntP +03/20/2018,Politicians,@susanamendoza10,It’s always good to be back in Little Village— The place I was born in and gave me my start in politics. I had lunc… https://t.co/OCaxKypF9x +03/20/2018,Politicians,@susanamendoza10,@WendiChicago Aww. Thanks! Good times: https://t.co/Sy9uSq1N3s +03/20/2018,Politicians,@susanamendoza10,"This is exactly @JBPritzker and why I truly believe he will make a great Governor. Genuine and down to earth, huge… https://t.co/zt69pIlmGo" +03/20/2018,Politicians,@susanamendoza10,RT @tayloremrey: Just three awesome women who are #TeamJB @JulianaforLG @susanamendoza10 @anacaprana https://t.co/qW1TM4eI1X +03/20/2018,Politicians,@susanamendoza10,"It was great starting my morning with some delicious Manny’s Deli— an Election Day tradition! Everyone, remember to… https://t.co/ZVqX2kCn1q" +03/20/2018,Politicians,@susanamendoza10,RT @WendiChicago: I voted for @susanamendoza10 for all the usual good reasons but also because she's a badass who chased down a drunk drive… +03/20/2018,Politicians,@susanamendoza10,@rl_klein Thanks 💓 +03/20/2018,Politicians,@susanamendoza10,Today is your last chance to #VOTE! Please get out there and make it count! https://t.co/sYaWVzX1SH +03/19/2018,Politicians,@susanamendoza10,"@JBPritzker, Treasurer @MikeforIllinois, and I addressed laborers from Local 393 in Marseilles, Illinois. Let’s ens… https://t.co/O68cETiXEV" +03/19/2018,Politicians,@susanamendoza10,RT @JordanAbudayyeh: .@JBPritzker @MikeforIllinois and @susanamendoza10 standing with AFSCME members striking for better wages at NIU. #twi… +03/19/2018,Politicians,@susanamendoza10,@CarlNyberg312 @45thWardDems @DanielBiss @LitesaWallace @RepJaimeAndrade @Melissa4DPI @ToniPreckwinkle… https://t.co/IyNTtRPbWl +03/19/2018,Politicians,@susanamendoza10,@rick_bossen Yes. Enthusiastically endorsing @JBPritzker & Juliana! +03/19/2018,Politicians,@susanamendoza10,"RT @playbookplus: After two rounds of basketball, @RepDebDingell, @ChicagosMayor Rahm Emanuel and @susanamendoza10 sit at the top of the #P…" +03/19/2018,Politicians,@susanamendoza10,"RT @POLITICOPress: Leading our #PlaybookPool VIP right now -- @RepDebDingell, with @ChicagosMayor & @susanamendoza10 following closely behi…" +03/18/2018,Politicians,@susanamendoza10,Beautiful day for a bike ride! 20 miles on the North Branch Trail with a little pit stop for DQ to get some ice cre… https://t.co/7UVUHdqFRY +03/18/2018,Politicians,@susanamendoza10,Let's do this! Join us to help get Illinois back on track! https://t.co/5Sx2ivBu9a +03/18/2018,Politicians,@susanamendoza10,OMG. Way to go @RamblersMBB! You're making Illinois proud - you made the Sweet 16! #MarchMadness https://t.co/lUAUZOSM7v +03/18/2018,Politicians,@susanamendoza10,Sister Jean and the @RamblersMBB rock! Go Loyola Ramblers!!! 🏀 https://t.co/zTsG35ibKc +03/18/2018,Politicians,@susanamendoza10,"I spent my #StPatricksDay2018 in Chicago in the best way imaginable, alongside my family and friends at the downtow… https://t.co/bGH2qmDjJL" +03/17/2018,Politicians,@susanamendoza10,Go @DePaulWBBHoops Lady Blue Demons! Congrats!! Illinois is proud and rooting for you. https://t.co/orPf0yYLgb +03/16/2018,Politicians,@susanamendoza10,March with me in the upcoming Chicago St. Patrick's Day Parade! Sign up here: https://t.co/BnNyJiWoMD #StPatricksDay https://t.co/VpK8Lw1Uz2 +03/15/2018,Politicians,@susanamendoza10,RT @lumitynpo: Team “Eco-Friends” pitch their hydroponic tower to @susanamendoza10. The tower would combat #fooddeserts and create jobs in… +03/15/2018,Politicians,@susanamendoza10,YES! Go @RamblersMBB! Congrats!! #MarchMadness https://t.co/30vryYVvbd +06/30/2018,Politicians,@BrianBallard723,Love this! https://t.co/KHzm9mjX9m +06/05/2018,Politicians,@BrianBallard723,JOY! https://t.co/M2vvzIEBAY +06/05/2018,Politicians,@BrianBallard723,WIN!!!!!!!! #AllCaps @neverest5 #StanleyCup https://t.co/gbnyBpl8r9 +06/04/2018,Politicians,@BrianBallard723,"LET'S GO CAPS!!! + +#ALLCAPS" +06/01/2018,Politicians,@BrianBallard723,"As a #ALLCAPS fan who was at Game 1, I got to meet a wonderful and welcoming set of fans. For those who cheer… https://t.co/ngkObk5E7P" +05/30/2018,Politicians,@BrianBallard723,Fireside chat - AR transformation from the experts @neverest5 @blumbr01 @upskillio @Accenture #AWE2018 #Industry40 https://t.co/Dml7o7ppNI +05/29/2018,Politicians,@BrianBallard723,@maxwellelliot Thanks buddy! +05/29/2018,Politicians,@BrianBallard723,GOAL 4 https://t.co/BjcDUGwYvF +05/29/2018,Politicians,@BrianBallard723,Overall a really good show. Felt a bit like a Medieval Times show during the knight part. But the venue is pretty a… https://t.co/4KfWpfluHr +05/29/2018,Politicians,@BrianBallard723,WIN ONE FOR DC! #ALLCAPS https://t.co/8IMqy6N4pp +05/16/2018,Politicians,@BrianBallard723,"Into Enterprise Augmented Reality that matters? Let us know, vote for Skylight for best AR Application for Enterpri… https://t.co/047C2R5C2n" +05/15/2018,Politicians,@BrianBallard723,"@Plantandwatch Fair enough. When I'm quiet on twitter(always), I'm probably busy on work(almost always). What do u want to know?" +05/15/2018,Politicians,@BrianBallard723,I think ARGrandpa would be a great new Twitter handle for you! ;) https://t.co/lDLCNivalh +05/15/2018,Politicians,@BrianBallard723,RT @upskillio: Time to VOTE! Choose Skylight for Best Enterprise Solution for this year's Auggie Awards ----> https://t.co/hKsYxCJyLv https… +05/15/2018,Politicians,@BrianBallard723,@SteveCase I can believe that! It certainly created a challenge in my home.... Daughter is 'Lexi'. I ask her a ques… https://t.co/HnmivhvvW7 +04/23/2018,Politicians,@BrianBallard723,RT @upskillio: Excited for tonight's Opening Ceremony at @hannover_messe! We've been nominated as one of five finalists for the Hermes Awar… +04/23/2018,Politicians,@BrianBallard723,So proud of the team for this accomplishment. https://t.co/pnxGs1iWPW +04/23/2018,Politicians,@BrianBallard723,RT @neverest5: About to go on stage with Eric Schaeffer lex @Accenture #IndustryX0 panel on artificial intelligence! https://t.co/4mj8AY6ZkS +04/22/2018,Politicians,@BrianBallard723,RT @neverest5: #HM18 opening ceremony representing @upskillio in the VIP area with @christinebohle - two very powerful women in close proxi… +04/22/2018,Politicians,@BrianBallard723,RT @upskillio: So amazing to be here and be part of it! Thank you @hannover_messe for recognizing our hard work and technology! https://t.c… +04/19/2018,Politicians,@BrianBallard723,As we get ready for #HannoverMesse I thought I'd share this blast from the past. Look @upskillio up this year in H… https://t.co/Lq7ieRngDI +03/27/2018,Politicians,@BrianBallard723,"This is truly heartwarming. + +Cisco commits $50 million to help fix Silicon Valley's homelessness crisis… https://t.co/l0B391VDKO" +02/07/2018,Politicians,@BrianBallard723,RT @DMDII_: We're looking forward to the first day of our Augmented Reality Workshop with @theAREAorg! Thank you to our sponsors @Boeing &… +01/11/2018,Politicians,@BrianBallard723,RT @neverest5: @Vuzix color me impressed on the #VuzixBlade! I've seen the fundamental tech working with you for a while & this product ex… +11/11/2017,Politicians,@BrianBallard723,@ddebow Verified by a 3yr old too +10/24/2017,Politicians,@BrianBallard723,Once the helmet goes on though... @alexkelly617 needs to try out @rideNUVIZ! https://t.co/LAULBaO5fk +10/21/2017,Politicians,@BrianBallard723,RT @upskillio: Chris Delvizis demos #Skylight Application Builder to a packed house. Learn how you can build #AR apps without code. https:/… +10/19/2017,Politicians,@BrianBallard723,"RT @rideNUVIZ: What an honor! NUVIZ has been awarded @popsci’s 2017 Best of What’s New award in the Automotive category! #BOWN2017 +https://…" +10/19/2017,Politicians,@BrianBallard723,RT @PaulBorisVuzix: Peggy Gulick of industry leader .@AGCOcorp - “...wearables are just one more tool in our #Lean Toolbox.” @BrainXchange1… +10/19/2017,Politicians,@BrianBallard723,RT @PaulBorisVuzix: Bryan Shackelford .@EastmanChemCo “...we team with hardware partners to drive adoption in harsh environments “@BrainXch… +10/19/2017,Politicians,@BrianBallard723,"RT @fcostaealmeida: Coca Cola shares examples of #AugmentedReality use cases on stage @ #AWE2017: remote maintenance, lead time reduction &…" +10/19/2017,Politicians,@BrianBallard723,"RT @VirtualGirlNY: This tech is ""fundamentally changing how we work"" - Jay Kim @neverest5 @comogard @upskillio @jaykothari #googleglass #A…" +10/19/2017,Politicians,@BrianBallard723,RT @neverest5: Thanks for inviting @upskillio to open #AWE2017 Europe! What an honor to kick it off! https://t.co/SMyDZyiR4z +10/19/2017,Politicians,@BrianBallard723,RT @ARealityEvent: The expo at AWE Europe is open #AWE2017 https://t.co/weYpXR2PJe +10/01/2017,Politicians,@BrianBallard723,RT @ARealityEvent: Just announced! Our keynote talk from @CocaCola @upskillio & Glass from Google's @Theteamatx at AWE Europe 2017 https://… +10/01/2017,Politicians,@BrianBallard723,RT @JAaronTate: Great lineup of #logistics topics at @poweredbymhi #MHIES17 including @TheAtlantic 's @alexismadrigal Honored to represent… +09/29/2017,Politicians,@BrianBallard723,RT @upskillio: Woot woot! @upskillio announced runner up as the Best Tech Startup in DC. Congrats to our hard working team #TimmyAwards htt… +09/29/2017,Politicians,@BrianBallard723,RT @neverest5: Looking forward to kicking the event off right! https://t.co/KmRSQ7huaH +09/24/2017,Politicians,@BrianBallard723,"RT @upskillio: According to @Dell, 1 in 5 workers are looking forward to #AR for skills acquisition. Learn about the smart office. https://…" +09/19/2017,Politicians,@BrianBallard723,RT @ChrisHoyt1: Love our partnership with @GE_Ventures and @generalelectric. Augmented Reality is going to change the work gets done in en… +07/28/2017,Politicians,@BrianBallard723,Head-worn with a purpose! https://t.co/3aPgoPLKD4 +07/28/2017,Politicians,@BrianBallard723,Love this. Hope it can make a dent on our output. https://t.co/Bxu5ONjdW5 +07/21/2017,Politicians,@BrianBallard723,"RT @GE_Reports: Smart Specs: OK Glass, Fix This Jet Engine https://t.co/3t7NcMc7xx @Google @GEAviation #avgeek" +07/19/2017,Politicians,@BrianBallard723,RT @GE_Ventures: Ready for the future in productivity? Check out @upskillio’s successful smart glasses pilot at @GEAviation: https://t.co/J… +07/19/2017,Politicians,@BrianBallard723,@RynFnk @upskillio Thank you @RynFnk !! +07/19/2017,Politicians,@BrianBallard723,@danprimack And mine was running around in her 'Elsa Dress' today. Must be a subconscious thing happening! Good luck. +07/18/2017,Politicians,@BrianBallard723,RT @neverest5: This is a huge milestone for #GlassEE and @upskillio having worked together for many yrs - excited for the future! https://t… +07/18/2017,Politicians,@BrianBallard723,"RT @StevenLevy: Google Glass is back! This time, for work. I visit a factory in Midwest for exclusive story. https://t.co/U9ck2oykb5" +07/18/2017,Politicians,@BrianBallard723,RT @RaymondDurk: @StevenLevy I miss that device so much. It's the best device I've ever used despite being a beta product. 😍 +07/07/2017,Politicians,@BrianBallard723,"RT @jsantell: Exploring stenciling and portals in WebAR, using 6DOF tracking/camera rendering #XR #AR #VR https://t.co/ifgnEUVMFK" +06/17/2017,Politicians,@BrianBallard723,@GaneshBell @alexkelly617 Have you guys watched Faster? +06/13/2017,Politicians,@BrianBallard723,"RT @neverest5: @theAREAorg @upskillio A little more than a month later, the @PristineIO team (now the @upskillio Austin team) has had an am…" +05/31/2017,Politicians,@BrianBallard723,Interesting comparison by @Boeing's Paul Davies on Technology Readiness Level vs Cultural Readiness Level. Great in… https://t.co/WQw5vCPmXJ +05/16/2017,Politicians,@BrianBallard723,Help out team @upskillio on our quest to lead the workforce revolution. This time in a friendly competition. Vote: https://t.co/rFglz61E3w +05/12/2017,Politicians,@BrianBallard723,Great #connectedworkforce insights from GE's @SamMurley at #EWTS17 +05/11/2017,Politicians,@BrianBallard723,I hope this trend continues @c3croteau and we can collect a whole set! #EWTS17 https://t.co/jnwX1cy1Fw +05/09/2017,Politicians,@BrianBallard723,"RT @NHL: #Game7. + +#StanleyCup https://t.co/svCihSSkAI" +05/09/2017,Politicians,@BrianBallard723,"Welcome to the team, @PristineIO https://t.co/XfsqVvNMDj https://t.co/PibdEbRf4s" +04/27/2017,Politicians,@BrianBallard723,"RT @upskillio: Good morning, Germany! You don't want to miss our #IoT #manufacturing demo with @Recon Jet Pro @hannover_messe Hall 6, G52/7…" +04/27/2017,Politicians,@BrianBallard723,RT @upskillio: Learn how 4 companies use Skylight to improve performance & lower costs in #manufacturing and #logistics --> https://t.co/Kw… +04/27/2017,Politicians,@BrianBallard723,RT @neverest5: All that equipment on the so-called #industry40 worker? Get this person some #smartglasses & get rid of all the other stuff.… +04/27/2017,Politicians,@BrianBallard723,RT @ericjohnsen: looking fwd seeing friends in AR space at #AWE2017 @ARealityEvent. thx to @Qualcomm for panel invite https://t.co/knzpmq0d… +04/24/2017,Politicians,@BrianBallard723,"RT @BenRaby31: Closing out series isn't easy, they easy. Since 2010, #Caps are 1-5 in GM6 with chance to advance; 2016 the exception https:…" +04/18/2017,Politicians,@BrianBallard723,RT @AMRayEsq: The technology ecosystem in the DMV is large and vibrant: https://t.co/RH1axUyzeF +04/12/2017,Politicians,@BrianBallard723,"RT @editorialiste: ""I never realized how amazing humans are until I tried to build one."" —Nest CTO Yoky Matsuoka at… https://t.co/xpHFk5TCnD" +04/05/2017,Politicians,@BrianBallard723,@augmedix @ianshakil @upskillio @Boeing @GEHealthcare I love that # ! +04/05/2017,Politicians,@BrianBallard723,"Fuel for the journey ahead! ""New Funding: How @Boeing HorizonX @GE_Ventures will help us Scale +""https://t.co/hKzdylvH4M @upskillio" +04/05/2017,Politicians,@BrianBallard723,"Knock 'em dead, Jay https://t.co/vMNR2Mmv21" +03/31/2017,Politicians,@BrianBallard723,"Congratulations @Betsy_Atkins & John Dineen, powerhouse additions to board of directors @Cognizant! https://t.co/tqMAtZNsKD #tech" +03/31/2017,Politicians,@BrianBallard723,RT @SamMurley: What's Next: Preparing Your Organization For Enterprise Wearables from @Inteliot @Recon @upskillio https://t.co/nDTDquENMg h… +03/30/2017,Politicians,@BrianBallard723,There are a slew of impressive #AR devices that have come or are coming. 2017 has just started and it's exciting https://t.co/bwLELHdjzf +03/13/2017,Politicians,@BrianBallard723,RT @upskillio: We're hiring in #softwareengineering and #accounting. Come work with this awesome team! https://t.co/Egqax3ubEv https://t.co… +03/13/2017,Politicians,@BrianBallard723,RT @PaulBorisGE: This video says it all @GE_Digital @upskillio @Vuzix GE Renewables Skylight Side-by-Side Productivity https://t.co/qmxoUb… +03/13/2017,Politicians,@BrianBallard723,RT @upskillio: New report on @HarvardBiz discusses how #AR improves worker performance. By @marcoannunziata & @m_abraham https://t.co/DECHu… +03/12/2017,Politicians,@BrianBallard723,"RT @CHIhealth: How #GoogleGlass is improving the patient-provider experience: +https://t.co/tZZQb7v5Nf https://t.co/RvdVbbig8G" +03/11/2017,Politicians,@BrianBallard723,RT @upskillio: Know any rockstar #AndroidDevelopers? We're hiring! https://t.co/iZD9HlpDz6 +03/06/2017,Politicians,@BrianBallard723,"RT @kevinspain: After a Decade, the Mobile Enterprise Revolution Has Only Just Begun https://t.co/d8NykM6zIk" +03/02/2017,Politicians,@BrianBallard723,RT @ElizabethWatson: Rocking @Recon Jet Pros at the @DC_Inno #techmadnessdc event tonight! https://t.co/Dxk92B6mIb +03/02/2017,Politicians,@BrianBallard723,RT @upskillio: We made it into @DC_Inno #techmadnessdc bracket! Had a great night demoing @Vuzix & @Recon with @christinebohle and @Elizabe… +02/28/2017,Politicians,@BrianBallard723,RT @neverest5: Getting ready to give a talk on how smart glasses empower the #industry40 workforce featuring @upskillio Skylight at @AirWat… +02/13/2017,Politicians,@BrianBallard723,What!?!??! How did Chick-fil-A just roll out the best VR commercial yet!? FTW +02/09/2017,Politicians,@BrianBallard723,"So so so awesome. + +https://t.co/VUIKkEV0Dx" +02/02/2017,Politicians,@BrianBallard723,RT @augmedix: Watch out for #Augmedix in 2017. Click https://t.co/9JDPwJAOtg for the full list +02/02/2017,Politicians,@BrianBallard723,So proud of these guys @rideNUVIZ. Great product vision. Great partnership. The fuel to make it real. Ride on!… https://t.co/36XqCbYYNV +01/28/2017,Politicians,@BrianBallard723,"RT @upskillio: In just 3 to 5 years, @PaulBorisGE can’t imagine a person on the plant floor that doesn’t have a wearable https://t.co/YXcZk…" +01/20/2017,Politicians,@BrianBallard723,"Loved the chance to share our vision, @EllynJShook1. Glad to have amazing partners on the journey. Thank you!" +01/16/2017,Politicians,@BrianBallard723,RT @ItsYamnitsky: .@upskillio's rebranding in full effect >> https://t.co/nGajvNqXes @BrianBallard723 @ChrisHoyt1 are the robin hoods of Io… +01/16/2017,Politicians,@BrianBallard723,RT @neverest5: The big moment - APX Labs is now Upskill! @upskillio +01/16/2017,Politicians,@BrianBallard723,RT @upskillio: Why Upskill? @BrianBallard723 answers that question: https://t.co/N64viNJ6eD +01/15/2017,Politicians,@BrianBallard723,"Great share @PaulBorisGE @S_Leffler . ""The more we know – the more we can do"" should guide all kids' confidence. Adults too..." +01/11/2017,Politicians,@BrianBallard723,RT @neverest5: The webinar I did for @APXLabs on enterprise #augmentedreality and #wearables is now available on demand: https://t.co/jhfqS… +01/06/2017,Politicians,@BrianBallard723,Kudos to the @united crew at #FtLauderdale. You guys are a class act in an otherwise terrible situation. +01/02/2017,Politicians,@BrianBallard723,"RT @thevrara: VR and AR have very high disruption potential to ""change the world"" according to @forrester #VirtualReality #AugmentedReality…" +12/07/2016,Politicians,@BrianBallard723,RT @neverest5: Representing @APXLabs at @GE_Ventures Advanced Manufacturing Summit. Inspiring talk by @TimRyan on the future of USA #manufa… +12/05/2016,Politicians,@BrianBallard723,RT @APXLabs: #50onFireDC #APXLabs We build technology that makes people competitive in the industrial world #bravo https://t.co/vrdRvdOjAA +11/18/2016,Politicians,@BrianBallard723,RT @lizzyli18: How does augmented reality enhance manufacturing? Learn from @APXLabs at the Digital Industrial Journey booth at 1 pm. #GEMM… +11/18/2016,Politicians,@BrianBallard723,RT @lizzyli18: #GEMM16 day 1! Visit the Digital Industrial Journey booth to see live manufacturing + augmented reality! @OkumaAmerica @APXL… +11/18/2016,Politicians,@BrianBallard723,We were all in SF for #GEMM16 !! :) https://t.co/S7gms23ldB +11/18/2016,Politicians,@BrianBallard723,"RT @jpsoltesz: #GEMM16 Jeff Immelt: in any economy, winning has a common face: productive, innovative, competitive, adaptive and resilient…" +11/18/2016,Politicians,@BrianBallard723,RT @laura_correnti: Congrats @lindaboff on being named one of top 5 CMOs in the world! To more fun and more innovation! https://t.co/V4OKNl… +11/18/2016,Politicians,@BrianBallard723,"RT @marcoannunziata: and as @bethcomstock noted, it happens ""gradually, then suddenly"" (Hemingway). A biologist quoting a novelist to expla…" +11/17/2016,Politicians,@BrianBallard723,Great premise at #GEMM16. @PaulBorisGE and @marcoannunziata exploring how technology benefits the workforce. Realit… https://t.co/GikOgSzHbT +11/15/2016,Politicians,@BrianBallard723,RT @neverest5: #PatentMonday for @APXLabs! Proud of the team that continues to create innovations in #augmentedreality #industrie40 #IIoT… +11/10/2016,Politicians,@BrianBallard723,"RT @AlVelosa: I've repeated this my whole trip: +#IoT is not about the technology. It's about the business process transformation" +11/07/2016,Politicians,@BrianBallard723,My favorite people in tech. @DC_Inno 50onFire fun. @JeffEJenkins @neverest5 @JAaronTate @APXLabs https://t.co/wiRmN8Tgz7 +11/02/2016,Politicians,@BrianBallard723,RT @DanNieves: Love the quote when you walk into @Work_Bench - looking forward to the #nyctech Meetup tonight with @RRE and @PrimaryVC as w… +10/26/2016,Politicians,@BrianBallard723,"RT @helengreiner: Technology has created more jobs than it has destroyed, says 140 years of data https://t.co/fegYHstvnQ" +10/26/2016,Politicians,@BrianBallard723,RT @jgownder: Great #VirtualReality comic strip from @berkebreathed https://t.co/QRexN13KqC +10/25/2016,Politicians,@BrianBallard723,RT @neverest5: Congrats to my friends at @eyefluence! Google Acquires Eyefluence: https://t.co/cubMolzpPP +10/09/2016,Politicians,@BrianBallard723,RT @GeorgeTakei: I'm just going to let this speak for itself. https://t.co/DPiwpmx5ii +10/08/2016,Politicians,@BrianBallard723,RT @comogard: Mark Zuckerberg's VR Selfie Is a Bigger Deal Than You Realize https://t.co/QtGGhqxsQV via @WIRED +10/08/2016,Politicians,@BrianBallard723,"RT @NEA: A ""smart"" partnership. @VMware and @APXLabs join forces to make smart glasses more #enterprise friendly: https://t.co/b2GtTBWYRX" +10/07/2016,Politicians,@BrianBallard723,RT @BrainXchange1: .@VMware Partners with @APXLabs to Support Workplace #Wearables https://t.co/pojc4hr7MJ #smartglasses #enterprisemobilit… +10/05/2016,Politicians,@BrianBallard723,RT @neverest5: Material handling application powered by Skylight @APXLabs starting! https://t.co/ZrRQwBOfBi +10/05/2016,Politicians,@BrianBallard723,RT @neverest5: One size doesn't fit all for smart glasses. That's exactly why bwhat we built Skylight by @APXLabs for. #awconnect https:/… +10/04/2016,Politicians,@BrianBallard723,"RT @neverest5: Sue Harris from @Boeing ""We have been working with @APXLabs on smart glasses technology and can't go fast enough."" #AWConnec…" +10/04/2016,Politicians,@BrianBallard723,"RT @neverest5: Sanjay Poonen from @AirWatch : ""@APXLabs is the leading smart glasses software provider in the industry"" #AWConnect" +10/04/2016,Politicians,@BrianBallard723,RT @AirWatch: Sue Harris of @Boeing onstage talking about the impact of mobile tech on aviation #AWConnect https://t.co/hfF63qF0qQ +10/04/2016,Politicians,@BrianBallard723,RT @teena_maddox: @VMware and @APXLabs announce a unified solution for smart glass management in the enterprise https://t.co/2nfQ8qMC8U @te… +09/28/2016,Politicians,@BrianBallard723,RT @albertschan: Great partnership @SutterHealth @augmedix to improve patient/provider experience. Thx @lizzadwoskin @washingtonpost https:… +09/28/2016,Politicians,@BrianBallard723,"Elon Musk: A Million Humans Could Live on Mars By the 2060s +https://t.co/mvCSkLjsSa" +09/27/2016,Politicians,@BrianBallard723,Wearables powering #AdvancedManufacturing https://t.co/yyK1JL3eIE @APXLabs +08/16/2016,Politicians,@BrianBallard723,"Friends, help vote up Jay, Paul, and myself at our SXSW Panel. We'll be talking about a whole new future of work https://t.co/D9FBVWpFtu" +08/16/2016,Politicians,@BrianBallard723,Vote for #SXSW Panel: Rehumanizing Manufacturing: AR and Industry 4.0 https://t.co/N8uJXdRscK @APXLabs @GE_Digital +07/29/2016,Politicians,@BrianBallard723,"RT @augmedix: Meet the Google Glass Company Saving Doctors Hours Each Day +https://t.co/EUSSHhzPde -nice coverage from @MDDIonline https://t…" +07/23/2016,Politicians,@BrianBallard723,https://t.co/uAkdR4M6B0 +07/18/2016,Politicians,@BrianBallard723,"""I would encourage everyone to look at #MixedReality [for] business apps ...as it will really be the most transformative"" -@satyanadella" +07/13/2016,Politicians,@BrianBallard723,RT @ianshakil: The Internet of Medical Things will continue to evolve; @augmedix is leading the way https://t.co/nh4ibPopUz https://t.co/rJ… +07/12/2016,Politicians,@BrianBallard723,@Anon0Mouse @magicleap @RickKing16 I think Fortune streamed it +07/12/2016,Politicians,@BrianBallard723,Just listened to @magicleap CEO and CMO at #FortuneTech. Couldn't be more excited about the world my daughter and son can grow up in. +07/12/2016,Politicians,@BrianBallard723,"""We are giving you a neurological true"" image - @magicleap CEO Rony Abovitz #FortuneTech aaaahhhhh, I can't wait. 😃" +07/11/2016,Politicians,@BrianBallard723,"RT @seanwatson24: .@haleyvandyck: @USDS, @WhiteHouse's ""tech startup,"" getting incredible bipartisan support in quest to bring techies to g…" +07/11/2016,Politicians,@BrianBallard723,Really neat talk on innovation. And more enjoyable one liners than an average 2 hour Hollywood production https://t.co/By0Wsdg7GL +07/11/2016,Politicians,@BrianBallard723,RT @jerseejess: Awesome to have @fendien speaking at #Inforum2016 and discussing NYC enterprise tech ecosystem cc @Work_Bench https://t.co/… +07/11/2016,Politicians,@BrianBallard723,"Apparently I've spent too much time near sea level. Thought all the 30,000ft hours would have prepped me better. #FortuneTech" +07/10/2016,Politicians,@BrianBallard723,"The business of a connected workforce +https://t.co/8VFi9lEfsl #APXLabs" +07/09/2016,Politicians,@BrianBallard723,"RT @BoJackson: Before you go to sleep tonight, I challenge every single one of you to do something nice for a complete stranger. Our world…" +06/29/2016,Politicians,@BrianBallard723,Working with companies like this is why I love getting out of bed every morning! https://t.co/vIf5UKU6Or +06/28/2016,Politicians,@BrianBallard723,Really great group in Tianjin this week. Will leave a lasting impression. https://t.co/aW1pUoYmG2 +06/28/2016,Politicians,@BrianBallard723,"Going to have to add these to the reading list. Were they insightful, @ron_miller ?" +06/27/2016,Politicians,@BrianBallard723,RT @Joi: Rome elects first female mayor in 2800 years | The New Daily https://t.co/FYYYnvbgID +06/27/2016,Politicians,@BrianBallard723,RT @APXLabs: Honored to be named by the World Economic Forum @wef as a 2016 #techpioneer! https://t.co/3BykJPdMyx #connectedworkforce #amnc… +06/27/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Accelerating innovation & the IIoT eco -APX Labs teaming with GE & Boeing to put wearables to work https://t.co/7zzw3ClUcA… +06/27/2016,Politicians,@BrianBallard723,RT @nisselson: Congrats @ldvcapital co's @APXLabs @mapillary win Technology Pioneer by World Economic Forum https://t.co/Sncs1PhAAr https:/… +06/26/2016,Politicians,@BrianBallard723,Amazing talk by @NergisMavalvala in Tianjin . #Science and the discovery of gravitational waves. #amnc16 #wef https://t.co/Uo3s3RHqqu +06/26/2016,Politicians,@BrianBallard723,"RT @FuturistechInfo: Top 10 Emerging Technologies of 2016 from the World Economic Forum +https://t.co/cv6PrH02ou https://t.co/2DAX7kJQ83" +06/21/2016,Politicians,@BrianBallard723,RT @mattj_di: 62% IT & Business leaders say wearable computing is critical to moderate priority-JPGownder @forrester #ewts #IoT https://t.c… +06/21/2016,Politicians,@BrianBallard723,"RT @micahjay1: Tech Founders, Journalists & VCs should create a mandatory job exchange program. Everyone spends 3 mos in each role. Much wo…" +06/04/2016,Politicians,@BrianBallard723,@tomemrich @515406843 it's hard to pick my favorite +06/04/2016,Politicians,@BrianBallard723,"RT @EdwardCarmack: Brian Ballard (CEO, APX Labs) The Business Impact of Smart Glasses for Work https://t.co/yaGwsMYVDy via @YouTube" +06/04/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Thanks Joe @joesoop https://t.co/bUOx0Hwh36 +06/02/2016,Politicians,@BrianBallard723,Yeah @WTEric !!! Best hardware Auggie! https://t.co/oUZl4rVTtn +05/23/2016,Politicians,@BrianBallard723,AWE is bringing superpowers to the people & here are 10 reasons why — AWE Blog https://t.co/umVMTwqL9E +05/20/2016,Politicians,@BrianBallard723,.@APXLabs in Good company https://t.co/DEUyFPWe91 # pioneers Congrats @AtheerAiR @PristineIO @XOEyeTech VitalEnt +05/18/2016,Politicians,@BrianBallard723,"RT @levie: The future, as imagined by the tech industry, will be people wandering around their house talking to objects. My grandpa was bor…" +05/12/2016,Politicians,@BrianBallard723,"Great talk with Nima from ODG and Ramesh from @intel. Thanks @mc_angela for leading our band of merry men! + + https://t.co/nHWpwFF6BI" +05/06/2016,Politicians,@BrianBallard723,"Having a foot in both worlds, really appreciate this article. #gov <-> @tech https://t.co/Zky4DrdQzq" +05/06/2016,Politicians,@BrianBallard723,RT @APXLabs: The Dirtiest Man On TV @mikeroweworks Dispels 5 Damaging Myths About Blue Collar Labor @Forbes https://t.co/WI3RPjbicv +05/06/2016,Politicians,@BrianBallard723,RT @APXLabs: Project Juggernaut is in the running for an AuggieAward! Support @Boeing & @APXLabs #AWE2016 https://t.co/xmUNCcFAqb https://t… +05/05/2016,Politicians,@BrianBallard723,"""Target is being targeted for doing the right thing, not the easy thing."" https://t.co/LHcp2TuKau" +05/05/2016,Politicians,@BrianBallard723,".@forrester report: #smartglasses top use cases in #aerospace, #mfg, #fieldservice https://t.co/qCs7vMElJm https://t.co/RjZxE24Psq" +05/05/2016,Politicians,@BrianBallard723,@amit_pande @APXLabs @HoloLens Yes! Something that would appeal to all ages. +05/05/2016,Politicians,@BrianBallard723,@NancyLBSmith you got the wrong Brian Ballard. Would you mind removing me from your post? +05/05/2016,Politicians,@BrianBallard723,Got a surprise visitor to the @APXLabs office today! Figured we better get him used to the future now. @HoloLens https://t.co/IzgNZ1IRHI +05/05/2016,Politicians,@BrianBallard723,"RT @Vuzix: Vuzix and APX-Labs educate C-Level execs on M100 Smart Glasses at Field Service USA in Palms Springs, CA. Booth #122 https://t.c…" +04/26/2016,Politicians,@BrianBallard723,@TedLeonsis Thanks for posting that. It was a great use of narrative and graphics! Reminiscent of Edward Tufte! +04/26/2016,Politicians,@BrianBallard723,"Congrats @ianshakil. I don't always go the hospital, but when I do, I use @augmedix! +https://t.co/EI1C7Baa31 https://t.co/61jiKpysFp" +04/21/2016,Politicians,@BrianBallard723,"RT @fendien: .@Work_Bench has been calling it for ages: “threats to traditional on-premise IT infrastructure vendors are serious"" https://t…" +04/01/2016,Politicians,@BrianBallard723,RT @FastCoExist: This insane anti-distraction helmet from 1925 would fit into any modern open office https://t.co/I8OGubu1mZ https://t.co/u… +03/30/2016,Politicians,@BrianBallard723,Any my @oculus just arrived yesterday.... AR+VR+HUD trifecta almost complete! https://t.co/tCxOXWUDmT +03/30/2016,Politicians,@BrianBallard723,"@pmarca and now I won't be able to get ""You failed this city.."" out of my inner monologue for the next hour. :)" +03/29/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Can't join us today @GEDetroit - follow the livestream https://t.co/Rkc4UgwaIm #LeadingEdgeMFG #IIoT with @GE_Digital @PTC… +03/29/2016,Politicians,@BrianBallard723,"""Manufacturers are going to be the rock stars of the IOT"" - Jim Heppelmann @PTC #LeadingEdgeMFG" +03/29/2016,Politicians,@BrianBallard723,RT @JAaronTate: @BrianBallard723 from @APXLabs presenting the important role of wearables to IIoT #digitalthread #LeadingEdgeMFG. https://t… +03/25/2016,Politicians,@BrianBallard723,"RT @SteveCase: Study: Immigrants Founded 51% of U.S. Billion-Dollar Startups https://t.co/sJOQRqywsb ""American innovation benefits from rob…" +03/24/2016,Politicians,@BrianBallard723,I'm genuinely excited to see AR take another step toward mainstream @HoloLens is really well done. @APXLabs @taherman @neverest5 +03/24/2016,Politicians,@BrianBallard723,RT @km_bic: It is crucial that technology helps improves lives. @cabadie @APXLabs @EpicQueenSV https://t.co/uUcJ9a8nVQ +03/15/2016,Politicians,@BrianBallard723,Help us shoot threes like Curry!!! https://t.co/Pvlmbu8hpB +03/14/2016,Politicians,@BrianBallard723,RT @_johny: This may be the year a #12 seed wins it all @APXLabs https://t.co/im8q3c7gxb +03/08/2016,Politicians,@BrianBallard723,@WTEric @EpsonAmerica WOW!!! That brought back some memories!!! +02/29/2016,Politicians,@BrianBallard723,"Getting closer to the future! #HoloLens ship dates are confirmed. + +https://t.co/DnAWFiyc3Y" +02/26/2016,Politicians,@BrianBallard723,"I think we're going to see more and more ""rehumanizing"" of the workforce in a lot of areas right along side robots + +https://t.co/mZGkLlRgDe" +02/26/2016,Politicians,@BrianBallard723,Congrats @KPN @Accenture! Trailblazing a new industrial revolution across the telco industry. #powerfulworkforce built on #APXSkylight +02/26/2016,Politicians,@BrianBallard723,RT @JeffEJenkins: Fantastic @KPN and @Accenture! Great to see @APXLabs #APXSkylight powering such fantastic projects! https://t.co/do6gM7P1… +02/24/2016,Politicians,@BrianBallard723,RT @APXLabs: Come see #APXskylight running on the #ReconJet in the @intel booth at #MWC16 https://t.co/lJeOVAOenM https://t.co/CLpymIysWX +02/21/2016,Politicians,@BrianBallard723,RT @TechCrunch: Wearables Drive The Component Technology Innovation https://t.co/9dIYj48WJ4 by @brianballard723 +02/11/2016,Politicians,@BrianBallard723,"So exciting! #SCIENCE + +Physicists Detect Gravitational Waves, Proving Einstein Right https://t.co/PvsAqonbRH" +02/10/2016,Politicians,@BrianBallard723,I'm crazy excited for this... ever since I read Mutineers' Moon (fav SciFi book!) #gravitonics .. https://t.co/mhdyR5ra8t +02/03/2016,Politicians,@BrianBallard723,RT @Sm4rtglass: This is what we do @APXLabs - we shift the performance curve with #wearabletech @googleglass and #skylight. http://t.co/nG… +01/12/2016,Politicians,@BrianBallard723,Congrats to @thehumanwatson and Harvest.AI #SXSW2016 https://t.co/KWki6JFx7i +01/12/2016,Politicians,@BrianBallard723,Love the student enthusiasm from @CarnegieMellon ! Change the world with @elonmusk's #Hyperloop. Go get 'em tartans! https://t.co/5D6QmtOQm6 +01/11/2016,Politicians,@BrianBallard723,The Industrialist’s Dilemma https://t.co/vj7iuVbuZl via @techcrunch +01/04/2016,Politicians,@BrianBallard723,RT @NEAVC: Congratulations to @NEAVC's @aaronej & @AmitMukherjee! @Forbes #30Under30 #VentureCapital: https://t.co/ulJyTOHnQp https://t.co… +12/14/2015,Politicians,@BrianBallard723,Lead the way @tomemrich ! https://t.co/JHxel02NeY +12/13/2015,Politicians,@BrianBallard723,"RT @cdixon: Adoption of technology in the U.S., 1900 to present https://t.co/YECfwxLnSP https://t.co/ig9s8TaxPr" +12/10/2015,Politicians,@BrianBallard723,.@daynagrayson should we do our next Board Meeting virtually? https://t.co/Ocpq2SNN5N +12/10/2015,Politicians,@BrianBallard723,That's pretty funny https://t.co/aiaFFKvD8K +12/10/2015,Politicians,@BrianBallard723,"""It is industry's turn now"" @JeffImmelt & @generalelectric on the Enterprise revolution https://t.co/CqI05rTGsr https://t.co/CcSGcTU5Pv" +06/30/2018,Politicians,@nick_ayers,"RT @GroverNorquist: Met today with Illinois governor Bruce Rauner +The “Janus” SCOTUS Case was at the start —AFSCME vs Rauner. +Rauner will s…" +06/27/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP on immigration mtg in Guatemala: “We are doing what we need to do in the U.S. to secure our border.. but tomorrow in G… +06/27/2018,Politicians,@nick_ayers,RT @HashtagGriswold: read the last three words of that quote again https://t.co/n8fVlsFdn5 +06/23/2018,Politicians,@nick_ayers,"I thought “Love wins” + +Stay classy @PressSec + +We admire your fortitude, grace, and humility under fire AND your fa… https://t.co/oyQkmQoF2H" +06/22/2018,Politicians,@nick_ayers,"RT @Alyssafarah: In his final column, Krauthammer wrote: ""I believe that the pursuit of truth & right ideas through honest debate and rigor…" +06/19/2018,Politicians,@nick_ayers,"RT @sendavidperdue: Last week, it was announced that the Savannah Harbor Expansion Project will receive the federal funding it needs to sta…" +06/17/2018,Politicians,@nick_ayers,Happy Father’s Day to all you great Dad’s out there...especially mine who is the best! Not a day goes by that I am… https://t.co/zr1I0PQLqP +06/06/2018,Politicians,@nick_ayers,RT @brithume: The sad news of Kate Spade’s apparent suicide is a reminder of the wisdom here: https://t.co/25pSOLVr6x +05/30/2018,Politicians,@nick_ayers,"RT @CNBC: Virgin Galactic took another step on Tuesday toward beginning commercial operations with its latest test flight, only 54 days aft…" +05/28/2018,Politicians,@nick_ayers,RT @YahooFinance: Jeff Bezos outlines Blue Origin's space colony ambitions https://t.co/4jAiJAAt8o via @engadget https://t.co/5q1wcDNGW9 +05/17/2018,Politicians,@nick_ayers,RT @WhiteHouse: #Laurel? #Yanny? Or... https://t.co/5hth07SdGY +05/17/2018,Politicians,@nick_ayers,RT @WillieGeist: James Shaw’s instinct just hours after the shooting and his release from the hospital was to start raising money for the v… +05/10/2018,Politicians,@nick_ayers,RT @PressSec: A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@nick_ayers,RT @USATODAY: Vice President Mike Pence accompanied by his wife Karen Pence and others arrive to greet former North Korean detainees Kim Do… +05/10/2018,Politicians,@nick_ayers,"RT @The_Gospels: Jesus said, ""For mortals it is impossible, but for God all things are possible."" -Mat 19:26" +05/10/2018,Politicians,@nick_ayers,Soon we will board Marine 2 en route to Joint Base Andrews to welcome these patriots back to the Land of the FREE a… https://t.co/JcMXj5ivVx +05/08/2018,Politicians,@nick_ayers,"RT @SenatorLankford: Today’s sham trial involving Dr. Andrew Brunson, filled with secret witnesses & conspiracy theories, is further proof…" +05/08/2018,Politicians,@nick_ayers,RT @StephenMiller: Humbly asking for prayer. Got some hard news today. https://t.co/f4h1HxLRv1 +05/01/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP has been criss-crossing the country talking about how the TAX CUTS are working. Today in Arizona —> “Tax Cuts Have Put… +05/01/2018,Politicians,@nick_ayers,RT @realDonaldTrump: I recently had a terrific meeting with a bipartisan group of freshman lawmakers who feel very strongly in favor of Con… +04/29/2018,Politicians,@nick_ayers,"RT @b0yle: Godspeed, H.G. Wells: @blueorigin sends #NewShepard suborbital spaceship to new heights: https://t.co/z6jcd2baU0 https://t.co/kf…" +04/27/2018,Politicians,@nick_ayers,"RT @CBSNews: Nikki Haley drives Pres. Trump's Israel policy at U.N. -- since arriving at the U.N., she has made a point of trying to turn t…" +04/22/2018,Politicians,@nick_ayers,RT @kanyewest: The thought police want to suppress freedom of thought +04/18/2018,Politicians,@nick_ayers,RT @VPPressSec: Spanish language version of @VP’s op-ed calling out Venezuelan & Cuban regimes & supporting a “hemisphere of freedom” in th… +04/18/2018,Politicians,@nick_ayers,"RT @SecondLady: When I first met Barbara Bush in 1988 as she entertained spouses of congressional candidates at the @VP Residence, her sage…" +04/16/2018,Politicians,@nick_ayers,RT @VP: With our international and commercial partners – American astronauts will return to the Moon to explore its surface & learn how to… +04/11/2018,Politicians,@nick_ayers,"RT @mdubowitz: Before the Islamic Revolution, it took about 70 Iranian rials to buy one US dollar. Today it will take you 60,000. Yet one m…" +04/05/2018,Politicians,@nick_ayers,"RT @wsbtv: To this day, Atlanta is called ""The City Too Busy to Hate."" It's up to all of us to carry on Dr. King's legacy of inclusion. #Ho…" +03/30/2018,Politicians,@nick_ayers,"Truly, a Good Friday #Perrydise https://t.co/zu6R88jQuD" +03/27/2018,Politicians,@nick_ayers,RT @ericgeller: Absolutely amazing that this is happening in a major American city https://t.co/x6pGEsu70K +03/25/2018,Politicians,@nick_ayers,Great to fly down to GA w/my family and the @VP. Thank you @NathanDeal & @GAFirstLady for the warm welcome! Georgia… https://t.co/EMlvWGBhqo +03/24/2018,Politicians,@nick_ayers,Zell Miller was one of my first political heroes. As I got to know him he was always long on good counsel & encoura… https://t.co/OV1E0J06AW +03/17/2018,Politicians,@nick_ayers,The few times @VP has told the story of his grandfather leaving Ireland for the USA it’s brought nearly everyone in… https://t.co/wwLGwgqYdB +03/16/2018,Politicians,@nick_ayers,"RT @SecretarySonny: We're very excited to have @VP Mike Pence headlining our #NationalAgricultureDay celebration at @USDA this Tuesday, hig…" +03/14/2018,Politicians,@nick_ayers,RT @plattdavid: With a heavy heart I share that @IMB_SBC missionaries Randy and Kathy Arnett lost their lives today in a car accident in Af… +03/14/2018,Politicians,@nick_ayers,RT @Suntimes: Pence to lay out administration views on Latin America https://t.co/wjMT9RKVXA https://t.co/AacfRm0Ln2 +03/10/2018,Politicians,@nick_ayers,Love this https://t.co/uoF4C7NbK7 +02/26/2018,Politicians,@nick_ayers,It makes my heart hurt to think about how fast these times go by. A few of my fav pics and memories from their firs… https://t.co/4tqlCSrUPF +02/05/2018,Politicians,@nick_ayers,RT @AshleyRParker: I interrupt your Super Bowl to bring you a micro scoop from me and @annafifield: Otto Warmbier’s father will join Mike P… +02/05/2018,Politicians,@nick_ayers,Agreed. Hard to beat the bio @ericmetaxas wrote. Highly recommend. https://t.co/IDGRkwKgst +02/04/2018,Politicians,@nick_ayers,Depart tomorrow 👇🏼 https://t.co/NMa2hWAZxT +02/04/2018,Politicians,@nick_ayers,"My weekend: +Pizza night w/fam ✔️; Watched Secret Garden w/fam piled on couch ✔️; few hours in Sit Room prepping for… https://t.co/l8tqp1FEmb" +02/03/2018,Politicians,@nick_ayers,Correct https://t.co/xE7IMByVsi +02/03/2018,Politicians,@nick_ayers,RT @BrookingsFP: “The 2018 National Defense Strategy is a heady attempt to drive the U.S. military faster in the direction it has been head… +01/31/2018,Politicians,@nick_ayers,"RT @RepMarkMeadows: The powerful image of a young man, lifting his crutches in defiance of a North Korean regime that once tortured him. I…" +01/31/2018,Politicians,@nick_ayers,RT @jonathanvswan: What a beautiful story. https://t.co/8ynojSjqgN +01/28/2018,Politicians,@nick_ayers,"RT @NinjaEconomics: 1,500 Chinese construction workers built this train station in just nine hours. https://t.co/xYJLuCWmZZ" +01/27/2018,Politicians,@nick_ayers,"RT @ConSource: On this day in 1785, the Georgia General Assembly incorporates the University of Georgia, the first state-funded institution…" +01/27/2018,Politicians,@nick_ayers,Major (positive) ramifications for US space industry if this goes according to plan https://t.co/zGSKk9ZLhT +01/27/2018,Politicians,@nick_ayers,I’ve been close friends w/@nikkihaley for more than a decade and watched her endure/overcome a number of false rumo… https://t.co/5nhnPP2S12 +01/26/2018,Politicians,@nick_ayers,RT @glamourmag: What it's really like to travel with vice president Mike Pence? One female journalist explains: https://t.co/XMIIr8uhg3 htt… +01/24/2018,Politicians,@nick_ayers,NBC News/Lester Holt apparently fall for North Korean propaganda - Fox News https://t.co/nx6CCR9l2k +01/23/2018,Politicians,@nick_ayers,RT @AlliemalCNN: This is done every day at the wall. The VP's office actually made it more accessible for us to see- adding chairs and remo… +01/23/2018,Politicians,@nick_ayers,RT @jdgreenblatt45: At the airport to see off @VP & @SecondLady after their incredibly successful trip. Their visit was a powerful testamen… +01/20/2018,Politicians,@nick_ayers,"RT @jonathanweisman: Own it, Dan. The Democrats held together and voted no. They stopped the CR. If every Republican had voted yes, they st…" +01/20/2018,Politicians,@nick_ayers,"RT @jmartNYT: Hard for Ds to say this is a GOP shutdown if most Rs vote to keep gov’t open & they’re joined by red state Ds + +https://t.co/A…" +01/19/2018,Politicians,@nick_ayers,"RT @MatthewNussbaum: PENCE is still leaving for planned Middle East trip tonight at 7:30, regardless of whether or not govnt shuts down. +h…" +01/19/2018,Politicians,@nick_ayers,"RT @RepMiaLove: Tonight, I voted with the majority in the House of Representatives to prevent a disastrous shutdown, and to ensure funding…" +01/16/2018,Politicians,@nick_ayers,"RT @realMikeLindell: 9-years ago today ( January 16, 2009) I prayed to be free of crack cocaine, alcohol and other addictions. Thankyou Jes…" +01/13/2018,Politicians,@nick_ayers,"RT @susancrabtree: GREAT NEWS -- After pressure from @VP Pence, @USAID.gov Shifts on Aid to Christians, Yazidis in Iraq https://t.co/GOPXBB…" +01/12/2018,Politicians,@nick_ayers,RT @dougstafford: An item in Walmart’s announcement I and others seemed to have missed - a new adoption benefit including paid family leave… +01/11/2018,Politicians,@nick_ayers,RT @mboorstein: This should be retweeted millions of times. https://t.co/0iHNeQuRZO +01/11/2018,Politicians,@nick_ayers,"Promises made, promises kept https://t.co/IpLih1Zqth" +01/11/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP touches down at @NellisAFB with @SecAFOfficial & @SenDeanHeller. Later he’ll thank our brave airmen & women for their… +01/10/2018,Politicians,@nick_ayers,RT @JakeSherman: ! https://t.co/haQZmW5PfZ +01/10/2018,Politicians,@nick_ayers,It was wonderful to have @realDonaldTrump in our state and grateful (but not surprised) for the roaring welcome he… https://t.co/KBBpjpxOgm +01/07/2018,Politicians,@nick_ayers,100% https://t.co/I6MAP7bFDh +01/07/2018,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Your impression is 100% correct Jake. I have never & would ever say such a thing (I doubt any others did either) I’ve s… +01/06/2018,Politicians,@nick_ayers,RT @MarcusReports: Defense Secretary Jim Mattis talked to reporters at the Pentagon this afternoon. Asked his biggest military concern in 2… +01/05/2018,Politicians,@nick_ayers,RT @VP: Karen & I were honored to host faith leaders for dinner at the Naval Observatory to review what @POTUS has done to protect life & p… +01/04/2018,Politicians,@nick_ayers,.@vp on #IranProtests https://t.co/HT511BxLmj +12/31/2017,Politicians,@nick_ayers,Gov: I gave Sarah pecans from our orchard for Christmas. Are we sure she shot them out of a tree??? See here… https://t.co/lnk4cwyf6r +12/31/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: As our Country rapidly grows stronger and smarter, I want to wish all of my friends, supporters, enemies, haters, and…" +12/30/2017,Politicians,@nick_ayers,RT @VP: .@POTUS & I stand w/ peaceful protestors in Iran who are speaking out for freedom & we condemn the arrests of innocents. The time h… +12/22/2017,Politicians,@nick_ayers,RT @guypbenson: Must. Watch. https://t.co/LXhKH5c2sV +12/21/2017,Politicians,@nick_ayers,"It was inspiring to see America’s absolute best who are crushing ISIS and other terrorists in the region. @POTUS,… https://t.co/tzJqpbTMF0" +12/19/2017,Politicians,@nick_ayers,RT @guypbenson: AP had plenty of characters to spare to add accurate & important context about the bill's sweeping middle class tax cuts. T… +12/19/2017,Politicians,@nick_ayers,RT @rodney_bullard: We want to thank the @ChickfilA Operators and Team Members that answered the call late on a Sunday evening to help serv… +12/19/2017,Politicians,@nick_ayers,"As long as @realDonaldTrump and @VP are here, that’s a fact https://t.co/BHFOvbAsmI" +12/18/2017,Politicians,@nick_ayers,"RT @marc_lotter: In addition to: +✔️ crush ISIS +✔️ lowest unemployment in decades +✔️highest biz/consumer confidence in decades +✔️ 69 new sto…" +12/18/2017,Politicians,@nick_ayers,Cc @KasimReed https://t.co/5PKty4ogvV +12/18/2017,Politicians,@nick_ayers,RT @cbudoffbrown: New @politico investigation from @joshmeyerdc: An ambitious DEA-led campaign targeted Hezbollah’s alleged criminal activi… +12/17/2017,Politicians,@nick_ayers,RT @ArlingtonNatl: Thank you to the more than 75k volunteers who braved the cold weather and heavy traffic to help #HonorThem during @Wreat… +12/17/2017,Politicians,@nick_ayers,I’d say we are off to a good start from a policy perspective 👇🏼 https://t.co/2AoLIX0Llc +12/17/2017,Politicians,@nick_ayers,"RT @dcexaminer: Religious schools, homeschoolers to get a boost in GOP tax plan, thanks to Ted Cruz and Mike Pence https://t.co/MzpQ3ZGi5N…" +12/17/2017,Politicians,@nick_ayers,"RT @BretStephensNYT: I wonder what Oliver Stone, Sean Penn, Naomi Klein, Jeremy Corbyn and the rest of the Chavista love club think when th…" +12/17/2017,Politicians,@nick_ayers,"Infuriating. I couldn’t make it thru the first few paragraphs. This was once, and still should be, one of the most… https://t.co/NPYBV3RO3M" +12/17/2017,Politicians,@nick_ayers,"Great evening, great team. #MAGA https://t.co/h5QxLALQO8" +12/16/2017,Politicians,@nick_ayers,"RT @mattklewis: I don’t think people appreciate how important this tax bill is. IF it passes, GOP can say they (a) passed tax reform, (b)…" +12/16/2017,Politicians,@nick_ayers,RT @DefenseOne: The National Geospatial-Intelligence Agency Launches Bold Recruitment Plan to Hire Silicon Valley’s Best https://t.co/9l3bJ… +12/07/2017,Politicians,@nick_ayers,"RT @StephGrisham45: On our way out of town, @FLOTUS & @SecondLady decided to stop in to @Whataburger for some lunch! The American chain ope…" +12/05/2017,Politicians,@nick_ayers,RT @VPPressSec: “The @VP is committed to doing all he can to support @POTUS’ efforts to keep the homeland safe from threats both foreign &… +12/03/2017,Politicians,@nick_ayers,It’s beginning to look a lot like Christmas! #GoDAWGS +12/02/2017,Politicians,@nick_ayers,"RT @CharlieDaniels: Do not be anxious about anything, but in everything, by prayer and petition, with thanksgiving, present your requests t…" +12/01/2017,Politicians,@nick_ayers,"RT @AjitPaiFCC: Incredible feat of engineering: ""[T]hese well-rested thrusters pick[ed] up the baton as if no time had passed at all."" http…" +11/28/2017,Politicians,@nick_ayers,"RT @NBCNews: “Are you the first lady?!” a boy asked as he embraced Melania Trump during a White House Christmas event. + +“She seriously look…" +11/24/2017,Politicians,@nick_ayers,"Grateful for time with our fam today. And @Sendavidperdue, @SecretarySonny, and I enjoyed the break from DC!… https://t.co/jZhZIBWkcg" +11/24/2017,Politicians,@nick_ayers,RT @LilJon: YEAHHHHHHH https://t.co/QNBlZK15lb +11/23/2017,Politicians,@nick_ayers,First day out of DC in months: bfast at @WaffleHouse w/fam ✔️; four-wheeling w/my boys on the farm ✔️; drove GA bac… https://t.co/bnoGRtEWDD +11/23/2017,Politicians,@nick_ayers,"I will give thanks to you, Lord, with all my heart; I will tell of all your wonderful deeds. Psalm 9:1 #Thanksgiving" +11/18/2017,Politicians,@nick_ayers,"RT @dougstafford: Great read from @arthurbrooks. As the father of 3 adopted children, I can add - if you can, please consider this. https:…" +11/16/2017,Politicians,@nick_ayers,"RT @FreeBeacon: .@VP Trying to Fast-Track U.S. Help to Iraqi Christians, Yazidis, Other Religious Minorities, @susancrabtree reports https:…" +11/15/2017,Politicians,@nick_ayers,"RT @RepMarkMeadows: There are a lot of individuals who worked hard on this, but @SenTomCotton particularly deserves a ton of credit here--h…" +11/15/2017,Politicians,@nick_ayers,RT @RandPaul: Today I am announcing my intention to amend the Senate tax bill to repeal the individual mandate and provide bigger tax cuts… +11/13/2017,Politicians,@nick_ayers,RT @brithume: Fascinating video on the effect wolves have had on Yellowstone Park. Hint: it’s positive. https://t.co/7pl7abhAel +11/11/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP Pence honors veterans by cleaning Vietnam memorial https://t.co/QmL7pSnY7e via @USATODAY +11/11/2017,Politicians,@nick_ayers,RT @ffweekend: VP Pence cleans the Vietnam memorial in D.C. ahead of visit to Arlington National Cemetery #VeteransDay https://t.co/TW6g9Mh… +11/09/2017,Politicians,@nick_ayers,"A heartbreaking and hopeful evening in TX with heroes, survivors, and loved ones of the fallen. Texas: you represen… https://t.co/y48dHnj9Th" +11/06/2017,Politicians,@nick_ayers,"RT @plattdavid: ""Through the darkest night, His light will shine"" - From the first song last week at FBC Sutherland Springs: https://t.co/n…" +11/04/2017,Politicians,@nick_ayers,Thanks Hollywood https://t.co/HjEc2SUPQr +11/02/2017,Politicians,@nick_ayers,"🇺🇸 +Cc @SecretarySonny https://t.co/pqRRHnMTPy" +11/01/2017,Politicians,@nick_ayers,"GA is #1 in college football... + +And #1 for business + +🏈🏦💪🏼 https://t.co/9Ka9mh39Wn" +10/31/2017,Politicians,@nick_ayers,"RT @SecretService: Secret Service Officers help @WhiteHouse welcome local trick or treaters. + +Turns out heroes come in all shapes and sizes…" +10/28/2017,Politicians,@nick_ayers,"RT @VPComDir: .@VP: As you take to the air, as u take a stand for freedom, know you go on the wings of grace & the grateful prayers of the…" +10/25/2017,Politicians,@nick_ayers,RT @VaughnHillyard: Vice President Pence to travel to Israel & Egypt in December--during Hanukkah. +10/25/2017,Politicians,@nick_ayers,"RT @TheBrodyFile: JUST IN: @VP says @realDonaldTrump will rely on faith-based groups, NOT just ineffective @UN to help persecuted Christian…" +10/25/2017,Politicians,@nick_ayers,Passionate speech by @VP in defense of persecuted Christians abroad. Announced new policy of @POTUS via USAID that… https://t.co/zyDmlPHQAH +10/25/2017,Politicians,@nick_ayers,RT @sendavidperdue: The markets have built in the expectation that tax is going to get done this year. Congress must act w/ urgency. https:… +10/24/2017,Politicians,@nick_ayers,A moving speech by the @VP and one more reminder of just how great the men and women who wear the uniform are. 🇺🇸 https://t.co/tA1d11zcGb +10/24/2017,Politicians,@nick_ayers,"RT @VPPressSec: ✂️✂️✂️ +https://t.co/fF3OuADk5H" +10/24/2017,Politicians,@nick_ayers,"RT @USMC: OTD 34 yrs ago the Marine barracks in Beirut, Lebanon was bombed. @VP visited @MBWDC to remember the 241 service members lost. ht…" +10/20/2017,Politicians,@nick_ayers,RT @CurtOnMessage: Every NFL team should force their players to watch Gen. Kelly's remarks today from the White House today. +10/20/2017,Politicians,@nick_ayers,"RT @JenniferJJacobs: “Not a dry eye” in our office, a West Wing staffer tells me after White House watched General John Kelly’s emotional w…" +10/20/2017,Politicians,@nick_ayers,RT @juliehdavis: An incredible moment in the White House briefing room today: https://t.co/sE8iJjqAWp +10/18/2017,Politicians,@nick_ayers,RT @marcorubio: ......His invisible attributes of eternal power & divinity have been able to be understood & perceived in what He has made.… +10/14/2017,Politicians,@nick_ayers,RT @petesnyder: Tremendous having @VP in #SWVA tonight w @EdWGillespie + all our rowdy friends! https://t.co/D4FNifJD5c +10/14/2017,Politicians,@nick_ayers,RT @mike_pence: Well said Mr. President! Looking forward to sharing your message about @EdWGillespie directly with an excited crowd tonight… +10/14/2017,Politicians,@nick_ayers,This never gets old https://t.co/JA9zLOtZgx +10/08/2017,Politicians,@nick_ayers,RT @EricGreitens: Great to join @LukeBryanOnline to celebrate MO farmers and ranchers! #HeresToTheFarmer https://t.co/Jf8iRP1HrQ +10/07/2017,Politicians,@nick_ayers,RT @VaughnHillyard: .@VP & @SecondLady stopped shortly ago at the 58 crosses built in memoriam of the 58 victims of the Las Vegas shooting.… +10/07/2017,Politicians,@nick_ayers,Yesterday https://t.co/BxDCWwZlpt +10/07/2017,Politicians,@nick_ayers,Moving words from a @VP who has traveled relentlessly to bring unity and hope to survivors of one tragedy after ano… https://t.co/R4IPS6AaB7 +10/07/2017,Politicians,@nick_ayers,RT @ricardorossello: My deepest gratitude to @VP & @SecondLady. I admire your faith & appreciate your support; 🇵🇷 is grateful that you are… +10/03/2017,Politicians,@nick_ayers,"RT @ABC: Incredibly moving rendition of ""Amazing Grace"" sung at a candlelight vigil attended by thousands for the victims of the Las Vegas…" +09/30/2017,Politicians,@nick_ayers,"RT @GaramoneDODNews: Federal Emergency Response Working Smoothly, Puerto Rico’s Governor Says https://t.co/UcnmwKUWef https://t.co/6wtN1PhQ…" +09/30/2017,Politicians,@nick_ayers,This GA judge is state treasure. Incredible compassion/wisdom for those who go before her https://t.co/jwQtmVjmJg https://t.co/2A2LDMKn1r +09/30/2017,Politicians,@nick_ayers,"I love it when the public catches a glimpse of who most of these people are behind the scenes, irrespective of part… https://t.co/voZsUVYpTh" +09/29/2017,Politicians,@nick_ayers,RT @SpaceX: Falcon 9 has completed 16 successful landings. https://t.co/OzAA6ziSCz +09/29/2017,Politicians,@nick_ayers,#ThrowbackThursday to the first night we finally had all three at home with us after nearly 2 months of NICU! https://t.co/9ahE8B736H +09/29/2017,Politicians,@nick_ayers,Thrilled. https://t.co/Dnq77Ftuab +09/28/2017,Politicians,@nick_ayers,"RT @VP: As Michigan knows, when the field is level, American workers always win. #VPInMI https://t.co/5b9JKc94ds" +09/25/2017,Politicians,@nick_ayers,RT @RichardGrenell: one year ago > https://t.co/fg6DtJnP2A +09/22/2017,Politicians,@nick_ayers,"RT @nikkihaley: Thousands of Yazidi women have been sold like animals by ISIS. Thanks to this vote,ISIS will face justice, giving victims t…" +09/20/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP called on the @UN to end its “forum for anti-Semitism” against Israel & to boot repressive countries off the U.N. Human… +09/20/2017,Politicians,@nick_ayers,"RT @WiredSources: VP Pence: ""The UN Human Rights Council actually welcomes many of the worst human rights violators in the world."" https://…" +09/20/2017,Politicians,@nick_ayers,"RT @Franklin_Graham: Join me in praying for @POTUS. He reminded the world, “If the righteous many do not confront the wicked few, then evil…" +09/20/2017,Politicians,@nick_ayers,"RT @SheenaGreitens: On North Korea and #RocketMan: photo from my archives. Economist cover, ~2006: https://t.co/vjg8nNKyRt" +09/18/2017,Politicians,@nick_ayers,We are looking forward to two great professionals joining @WhiteHouse @VP team: @Alyssafarah & @CMandreucci will start 10/2 #MAGA +09/16/2017,Politicians,@nick_ayers,He's been with us since Day 1 and will continue to be. The mission continues for Lotter! Thank you for your govt se… https://t.co/zDBQGdWe0j +09/15/2017,Politicians,@nick_ayers,RT @CIA: CIA Director Withdraws from Harvard Kennedy School Forum https://t.co/N7YKyGy9H4 +09/03/2017,Politicians,@nick_ayers,Productive day at @WhiteHouse followed by firing this up & smoking a 9lb 🐷 shoulder. I'm not in a dove field in mid… https://t.co/MsbwH3z2Eh +09/03/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: Together, we will prevail in the GREAT state of Texas. We love you! + +GOD BLESS TEXAS & GOD BLESS THE USA🇺🇸 https://t.c…" +09/02/2017,Politicians,@nick_ayers,"RT @PressSec: ""I just met my President!"" Said lady in pink after taking this selfie with @POTUS. #TexasStrong https://t.co/rtK9IMP1CI" +09/01/2017,Politicians,@nick_ayers,"RT @VP: To people of TX, @POTUS & our admin will be w/ you every day until these great communities rebuild to be better & stronger than eve…" +09/01/2017,Politicians,@nick_ayers,RT @PressSec: .@POTUS signs proclamation declaring this Sunday a National Day of Prayer. https://t.co/eA0rmTm1tF +09/01/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: 'President Donald J. Trump Proclaims September 3, 2017, as a National Day of Prayer' #HurricaneHarvey #PrayForTexas ht…" +08/19/2017,Politicians,@nick_ayers,RT @realDonaldTrump: I want to applaud the many protestors in Boston who are speaking out against bigotry and hate. Our country will soon c… +08/13/2017,Politicians,@nick_ayers,Few mins away from skids up with @VP to Andrews Joint Base ➡️ Colombia ➡️ Argentina ➡️ Chile ➡️ Panama 🇺🇸 https://t.co/DY1FzIyPJo +08/10/2017,Politicians,@nick_ayers,"RT @VP: Productive time in Bedminster with @POTUS Trump. Working lunch w/ Chiefs of Staff, security briefing, and important opioid announce…" +08/06/2017,Politicians,@nick_ayers,"RT @ABCPolitics: .@KellyannePolls: ""Absolutely true the vice president is getting ready for 2020: for reelection as vice president."" https:…" +08/06/2017,Politicians,@nick_ayers,"RT @ABC: .@KellyannePolls on reports VP Mike Pence is eyeing 2020 run: ""That is complete fabrication."" https://t.co/u1wqMuuvAO #ThisWeek ht…" +08/05/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: ""Under Trump, gains against #ISIS have dramatically accelerated"" +https://t.co/jNtOTh0moL" +08/05/2017,Politicians,@nick_ayers,...Yet they are unable to name one donor that has ever heard me say that...because I haven't. #shameful #fakenews https://t.co/j3CZQIPFH2 +08/05/2017,Politicians,@nick_ayers,".@alexburnsNYT @jmartNYT print total lie in #fakenews article. Said I've ""signaled to multiple donors @VP wants to be ready for 2020"" (cont)" +08/02/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP Pence assures Eastern Europe's NATO partners in interview with @FoxNews for @SpecialReport https://t.co/9R69Djos3W #VPin… +08/01/2017,Politicians,@nick_ayers,".@GeorgiaGuard bird behind @VP in Tbilisi, Georgia 💪🏽🇺🇸cc: @SecretarySonny @SecPriceMD https://t.co/6IU24qkpaA" +07/31/2017,Politicians,@nick_ayers,Strong statement from the @VP in Estonia. No more 'leading from behind.' 🇺🇸 https://t.co/8KRswtQIsJ +07/30/2017,Politicians,@nick_ayers,"RT @PhilipRucker: Jarrod Agen @VPComDir has been promoted to Pence's deputy chief of staff, @nick_ayers announces on Air Force Two, via @As…" +07/28/2017,Politicians,@nick_ayers,Honored and humbled beyond words. Excited to partner with General Kelly to serve and support @POTUS and @VP #MAGA https://t.co/5TRRDDm43W +07/23/2017,Politicians,@nick_ayers,RT @JasonMillerinDC: Vice President Mike Pence op-ed: Trump's triumphs are many after only six months and he's just getting started https:/… +07/22/2017,Politicians,@nick_ayers,RT @VP: Congress needs to step up & do their job. Every member of the Senate should vote to begin debate to rescue the U.S. people from Oba… +07/20/2017,Politicians,@nick_ayers,My 80+ grandmother had never voted until I intro'd her to Sen McCain. He clinched her hand & held her close for a photo. I'll never forget. +07/15/2017,Politicians,@nick_ayers,Amen. GA has a lot to be proud of. The legacy of @TheMasters is high on that list and he was a big part. https://t.co/K28RRhFsfY +07/09/2017,Politicians,@nick_ayers,Except of course they aren't donor dinners nor are taxpayer funds used for non govt dinners 😱#MAGA https://t.co/rFr5dcmRyl +06/29/2017,Politicians,@nick_ayers,RT @lecrae: I got the best of Jesus. He got the worst of me. +06/21/2017,Politicians,@nick_ayers,RT @CillizzaCNN: This is right. https://t.co/8EBKj90McP +06/21/2017,Politicians,@nick_ayers,"Big win for @POTUS, @karenhandel, the @GOP, @AmericaFirstPol and the great State of Georgia! This is huge #sweptthespecials #MAGA" +06/18/2017,Politicians,@nick_ayers,#LuckyDad #HappyFathersDay https://t.co/oBYfwW3iL7 +05/30/2017,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Disgusting but not surprising. This is the left today. They consider this acceptable. Imagine a conservative did this t… +05/29/2017,Politicians,@nick_ayers,"RT @LordTinsdale: Exactly right, @sendavidperdue! Those who attack @potus budget cuts as savage want to pass the savagery to my daughter's…" +05/26/2017,Politicians,@nick_ayers,RT @BradOnMessage: You mean the state that just re-elected a Dem gov in '16 and has had Dem senators for 17 of the last 20 overlapping term… +05/21/2017,Politicians,@nick_ayers,RT @IngrahamAngle: Any media outlet claiming to be fair yet doesn't remark on the boldness of @realDonaldTrump speech and purpose is guilty… +05/20/2017,Politicians,@nick_ayers,"""My dear brothers and sisters, don’t be fooled about this. Everything good comes from God. Every perfect gift is from him."" James 1:16" +05/19/2017,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Strange how this isn't getting coverage. #maga https://t.co/I0AGOxzyNY +05/19/2017,Politicians,@nick_ayers,Last day of school here we come! https://t.co/yNb2zbCNzj +05/17/2017,Politicians,@nick_ayers,"RT @ILElectionData: Governor Rauner adds $20 million from Ken Griffin, on top of the $50 million he personally added late last year. +https:…" +05/14/2017,Politicians,@nick_ayers,If God created the perfect mother she was mine #MothersDay +05/12/2017,Politicians,@nick_ayers,Waiting on a table at Jaliscos with this crew who are kicking off a weekend to celebrate that great mama! https://t.co/Mx2JNRML6o +05/11/2017,Politicians,@nick_ayers,RT @VP: TUNE IN! I'm speaking in D.C. at the World Summit in Defense of Persecuted Christians NOW ➡️ https://t.co/D6bv93w8d2 +05/11/2017,Politicians,@nick_ayers,"RT @JusticeWillett: ""Success is not final, failure is not fatal: It is the courage to continue that counts.” +—Winston Churchill + https://t.…" +04/27/2017,Politicians,@nick_ayers,"RT @WashTimes: Every hour, around the world, a Christian is killed for the simple reason of worshipping #RapidReactions @ckchumley https://…" +04/26/2017,Politicians,@nick_ayers,RT @JasonMillerinDC: Fired up for this tax cut news. Making good on another campaign trail promise. #MAGA +04/25/2017,Politicians,@nick_ayers,Thank you @POTUS! A great day for farmers @ The White House. This team continues fighting bad trade deals and elimi… https://t.co/eZXCA20qsj +04/25/2017,Politicians,@nick_ayers,One of many epic hunts with Sonny. A great day for #USA & #USDA cc: @DonaldJTrumpJr https://t.co/Sy0vMHxUvw +04/24/2017,Politicians,@nick_ayers,Wise for them to focus on his first 100 days and not his last... https://t.co/QwEI4Uw0qX +04/24/2017,Politicians,@nick_ayers,This is awesome 👇🏼 https://t.co/WchxSS51lG +04/24/2017,Politicians,@nick_ayers,I appreciate @SenStabenow kind words/support of our next @USDA Secretary Sonny Perdue & wish we saw more of it in Congress! Well done. +04/24/2017,Politicians,@nick_ayers,And Sally Yates didn't resign over this? I'm shocked. https://t.co/nGmFVhfJXY +04/24/2017,Politicians,@nick_ayers,RT @zackroday: Missed this over the weekend. But congrats to Marc Short on the well-deserved recognition. https://t.co/c81Amn3r5H via @virg… +04/24/2017,Politicians,@nick_ayers,RT @bestnaunieever: Calling all #Republicans will you help rally behind @karenhandel 4 #GA06 we need a strong woman in #Congress. https://t… +06/30/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: RETWEET if you support the full legalization of marijuana in Florida! +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: A well deserved head scratch in between takes with @johnmorganesq and Emma. +#ForThePeople #commercial #dogs https://t.co/…" +06/29/2018,Politicians,@JohnMorganESQ,"Opioid makers are dirty rotten crooks who have stolen from us all, killed our children and wreaked havoc for millio… https://t.co/yj84GoFGYo" +06/29/2018,Politicians,@JohnMorganESQ,"Meanwhile #SlickRick fights to allow smokeable cannabis already approved by 72% of the electorate. + +The biggest lo… https://t.co/6J7wIoud2G" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: If you've been overwhelmed by #robocalls recently, you're not alone! Over 4 billion calls were placed last month - many o…" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Just in time for #swimming season, the CDC has issued a new report on disease #outbreaks associated with swimming in rive…" +06/29/2018,Politicians,@JohnMorganESQ,"Stay strong, keep them wondering how you’re still smiling. 😁😎😊" +06/29/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: Unwanted calls and text messages are some of the top complaints people file with the #FCC every year. #robocalls #tcpa… +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: At a chiropractor's office. Office pet Logan is #ForThePeople, too 🤗 +#EverywhereForEveryone #Dogs https://t.co/m4HCHHvQrr" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In our #JourneyForJustice, no road is too long, no journey too far, and no fight is too hard. #ForThePeople https://t.co/…" +06/29/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Never get tired of doing little things for others. Sometimes, those little things occupy the biggest part of their heart…" +06/29/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: Retweet this if you are with me. Live free or die! https://t.co/0bzVs0for8 +06/29/2018,Politicians,@JohnMorganESQ,👀 The people have spoken! https://t.co/8rzvZfmP29 +06/28/2018,Politicians,@JohnMorganESQ,"Thank you @RonDeSantisFL, states' rights matter!! https://t.co/XKqOVbFhp3" +06/28/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Behind the scenes of our new commercial with @JohnMorganESQ and Luke 👋🏼 +#HiEmma #ForThePeople https://t.co/62JXCpAdRT" +06/28/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The most outrageous part of @FLGovScott’s appeal is that tax payers are FUNDING all of the legal bills. + +🤔 Think about…" +06/28/2018,Politicians,@JohnMorganESQ,"Small minds can’t comprehend big spirits. To be great, you have to be willing to be mocked, hated and misunderstood. Stay strong. #BELIEVE" +06/28/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: This is the tearing down of prohibition. There are no domestic violence calls because of cannabis but plenty for tequila… +06/28/2018,Politicians,@JohnMorganESQ,Retweet this if you are with me. Live free or die! https://t.co/0bzVs0for8 +06/27/2018,Politicians,@JohnMorganESQ,Carlos together we can! #ForThePeople https://t.co/sArJY3MwWP +06/27/2018,Politicians,@JohnMorganESQ,Build it and they will come. #ForThePeople https://t.co/eBoYxqzU69 +06/27/2018,Politicians,@JohnMorganESQ,This is the tearing down of prohibition. There are no domestic violence calls because of cannabis but plenty for te… https://t.co/AcLWtfCdQA +06/27/2018,Politicians,@JohnMorganESQ,RETWEET if you support the full legalization of marijuana in Florida! +06/27/2018,Politicians,@JohnMorganESQ,As you waste OUR taxpayer money fighting what we voted for... we are watching! You've barely won your 2 races! 1%… https://t.co/zShNIdkmaM +06/27/2018,Politicians,@JohnMorganESQ,".@FLGovScott as you run for US Senate read this ⬇️ + +You may think you can ignore really sick people and our vetera… https://t.co/aJDSQDeTFa" +06/27/2018,Politicians,@JohnMorganESQ,"And why? Because the makers of opioids and other dangerous drugs buy politicians every day. + +This one issue will c… https://t.co/jSZovCI739" +06/27/2018,Politicians,@JohnMorganESQ,"The most outrageous part of @FLGovScott’s appeal is that tax payers are FUNDING all of the legal bills. + +🤔 Think a… https://t.co/YLflVA6QRX" +06/27/2018,Politicians,@JohnMorganESQ,RT @orlandosentinel: John Morgan wants to put recreational marijuana legalization on the ballot https://t.co/27QPeIsREZ https://t.co/4FaLDL… +06/27/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: I'm going to look at starting a fund where we all can donate to get full marijuana legalization on the ballot in 2020.… +06/27/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: The dominoes are falling. + +Senate Approves Medical #Marijuana For Military Veterans And Advances Hemp #Legalization + +h…" +06/27/2018,Politicians,@JohnMorganESQ,"“The secret of change is to focus all of your energy, not on fighting the old, but on building the new.” + +– Socrates" +06/26/2018,Politicians,@JohnMorganESQ,"RT @MayorLevine: If the Legislature won’t do it—we’ll get it done, John! https://t.co/KaU0YMQGyI" +06/26/2018,Politicians,@JohnMorganESQ,Phil you could drop the appeal your first day in office and I know you will. Thank you!! #NoSmokeIsAJoke https://t.co/oqQK0KXLns +06/26/2018,Politicians,@JohnMorganESQ,RT @Fla_Pol: John Morgan hints at ballot initiative for marijuana legalization https://t.co/wAriTApLwl via @JimRosicaFL #FlaPol https://t.c… +06/26/2018,Politicians,@JohnMorganESQ,And guess what Troy? Money will pour in. Let’s legalize gambling in Miami while we're at it. Would kill Vegas. https://t.co/ETDOBhPwio +06/26/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: This is huge. + +Everything is about to change. + +""This approval serves as a reminder that advancing sound development pr…" +06/26/2018,Politicians,@JohnMorganESQ,".@SenBillNelson voted #YesOn2 + +And fully supports the smoking of #MedicalMarijuana as called for in the amendment.… https://t.co/wwefjYnH81" +06/26/2018,Politicians,@JohnMorganESQ,"The United States Senate race between The Astronaut and #SlickRick will be decided by the politics of pot! + +We are… https://t.co/SjFK8WHFhs" +06/26/2018,Politicians,@JohnMorganESQ,I'm going to look at starting a fund where we all can donate to get full marijuana legalization on the ballot in 20… https://t.co/rNsVVUhcfv +06/26/2018,Politicians,@JohnMorganESQ,"Maybe it’s just time for full legalization. It would pass with flying colors! + +Guys like @FLGovScott would vote no… https://t.co/GQitb6N3ng" +06/26/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Very proactive approach by Fiat Chrysler in what appears to be a move that puts people over profits! https://t.co/tBW6Kj… +06/26/2018,Politicians,@JohnMorganESQ,"Be strong, things will get better. It might be stormy now, but rain doesn’t last forever. #BELIEVE" +06/25/2018,Politicians,@JohnMorganESQ,"Work hard for what you want because it wont come to you without a fight. You have to be strong, courageous, and kno… https://t.co/mFOxMbpFqV" +06/23/2018,Politicians,@JohnMorganESQ,RT @forthepeople: June is Alzheimer's Awareness Month and Morgan & Morgan wants to help improve the lives of people who have the disease. T… +06/23/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: A message for @FLGovScott, enough is enough drop YOUR #MedicalMarijuana appeal. Do it for the PEOPLE! + +I'm urging you al…" +06/22/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Fighting for justice takes a lot out of man's best friend! 🐕 Molly's catching some 💤 in @JohnMorganEsq's office. Happy #… +06/22/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Everyone likes the idea of a self-driving car, but most people don’t want to be the test rats for the industry. + +Not a…" +06/22/2018,Politicians,@JohnMorganESQ,RT @forthepeople: We're pleased to announce that 44 of our #attorneys were recently revealed as selected by @SuperLawyers Magazine for its… +06/22/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Every year, @SuperLawyers evaluates #lawyers across the country based on peer recognition and professional achievement fo…" +06/22/2018,Politicians,@JohnMorganESQ,"Never give up on something you really want. It’s difficult to wait, but more difficult to regret!!" +06/22/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: The Business Trial Group is pleased to announce that seven of our #attorneys were recognized by @SuperLawyers Magazin… +06/22/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: New commercials coming soon! Approved by Emma and Molly who kept a close eye on set 🎬📺 +#ForThePeople #ForTheDogs https://…" +06/21/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: I've been saying this loudly for the last 5yrs. It's a no brainer. Small minded people & politicians on the take from dr… +06/21/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: “Look at the sparrows; they do not know what they will do in the next moment. Let us literally live from moment to momen… +06/21/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: ""Influence is difficult to quantify but you know it when you see it.” @JohnMorganESQ is featured in the 2018 edition of t…" +06/21/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: Friendly Challenge: + +Try to acknowledge and smile at every person you pass today. It’s not an easy challenge. But watch…" +06/21/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In our #JourneyForJustice, we've assembled an army of support staff to take on thousands of cases and fight #ForThePeople…" +06/21/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: #SlickRick meanwhile let’s our vets with PTSD suffer. Suicide is often a likely solution. This cruelty will cost @FLGovS… +06/21/2018,Politicians,@JohnMorganESQ,“We all have great inner power. The power is self-faith. There’s really an attitude to winning. You have to see you… https://t.co/ghXLiLqD4K +06/20/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: I again challenge @FLGovScott to a debate so I can show him and all of Florida why he's breaking the law, not following…" +06/20/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The wait is all on #SlickRick, this will cost him the US Senate. + +When you don’t have compassion for our vets, cops, fir…" +06/20/2018,Politicians,@JohnMorganESQ,"RT @JoshConstine: Is this the next HQ Trivia? No waiting. You can wager $3 right now on movies, tech, history trivia and win cash https://t…" +06/20/2018,Politicians,@JohnMorganESQ,If you want to have some fun play our new game @PlayProveIt on your iPhone and make some money! https://t.co/HxCQAfBSg5 +06/20/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: A worldwide paradigm shift is happening as we speak. + +#HealingTheNation + +🙌🏼❤️✌🏼🍃 https://t.co/AJyl4DxpbR" +06/20/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: The dominoes are falling. https://t.co/PNPgjeeY0i +06/20/2018,Politicians,@JohnMorganESQ,"If someone is strong enough to bring you down, show them you are strong enough to get back up!!" +06/20/2018,Politicians,@JohnMorganESQ,The dominoes are falling. https://t.co/PNPgjeeY0i +06/19/2018,Politicians,@JohnMorganESQ,RT @daniprieur: Spoke with @JohnMorganESQ about #smokable medical marijuana ban https://t.co/ghxcBU7xFi +06/19/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: “These are likely lifelong injuries that they are going to be dealing with,” @MattMorganESQ said. He will #fight to ensur…" +06/19/2018,Politicians,@JohnMorganESQ,RT @APSouthRegion: An attorney says some passengers on a #Florida roller coaster that derailed could have lifelong injuries. He says a laws… +06/19/2018,Politicians,@JohnMorganESQ,#SlickRick meanwhile let’s our vets with PTSD suffer. Suicide is often a likely solution. This cruelty will cost… https://t.co/LBQiBmb6G2 +06/19/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: As the parent of two infants, I am constantly experiencing the lack of consistency in children products. https://t.co/hb…" +06/19/2018,Politicians,@JohnMorganESQ,RT @TODAYshow: “I really thought I was going to die.” One of the riders injured in last week’s roller coaster accident in Florida shares he… +06/19/2018,Politicians,@JohnMorganESQ,"""Nothing in the world can take the place of perseverance. Talent will not; nothing is more common than unsuccessful… https://t.co/5ImeBoo1QZ" +06/18/2018,Politicians,@JohnMorganESQ,"And thank you @realDonaldTrump for your support. You get it. + +The makers of opioids thank you @FLGovScott. #NoSmokeIsAJoke" +06/18/2018,Politicians,@JohnMorganESQ,"I again challenge @FLGovScott to a debate so I can show him and all of Florida why he's breaking the law, not follo… https://t.co/t5p3cQTBQj" +06/18/2018,Politicians,@JohnMorganESQ,"The wait is all on #SlickRick, this will cost him the US Senate. + +When you don’t have compassion for our vets, cops… https://t.co/yrKYrNMdxA" +06/18/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Happening Now: Press conference on the #DaytonaBeach Roller Coaster Derailment: https://t.co/ggnaJBpalN +06/18/2018,Politicians,@JohnMorganESQ,"RT @JustinWarmoth: Attorney @MattMorganESQ, who represents three people who were hurt in last week’s roller coaster derailment in Daytona B…" +06/18/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Life is a gift, and it offers us the privilege, opportunity, and responsibility to give something back by becoming more." +06/18/2018,Politicians,@JohnMorganESQ,RT @forthepeople: A woman who was severely injured when a #rollercoaster on the #DaytonaBeach Boardwalk derailed has hired @MattMorganESQ t… +06/18/2018,Politicians,@JohnMorganESQ,I've been saying this loudly for the last 5yrs. It's a no brainer. Small minded people & politicians on the take fr… https://t.co/aBi4IJ2XmZ +06/18/2018,Politicians,@JohnMorganESQ,RT @orlandosentinel: Woman hurt in Daytona roller coaster derailment hires Matt Morgan https://t.co/Xt7YsmCH1Y https://t.co/OtaxDorAnM +06/18/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: Media Advisory: https://t.co/HdECbJUbZi +06/18/2018,Politicians,@JohnMorganESQ,"""Our greatest glory is not in never falling, but in rising every time we fall."" + +– Confucius" +06/17/2018,Politicians,@JohnMorganESQ,"Of all of the jobs I’ve had in life, being a dad was the most challenging and most rewarding. My children are grown… https://t.co/pOeXlt0U5W" +06/17/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: I have been retained to represent the interests of a woman severely injured in the Daytona Beach Boardwalk roller coaste… +06/17/2018,Politicians,@JohnMorganESQ,"RT @darrenrovell: After spending 17 years in an LA parking garage, Al Cowlings Ford Bronco, made famous on this date in 1994 in the highway…" +06/16/2018,Politicians,@JohnMorganESQ,You must understand that the @OrlandoMagic make big money off a free arena & selling tickets to VISITING fans to se… https://t.co/JUVqfTzhAu +06/16/2018,Politicians,@JohnMorganESQ,RT @forthepeople: 30 seconds is all it takes for @JohnMorganESQ to explain why we are #ForThePeople. https://t.co/tj566QDaa2 +06/15/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: Not surprisingly, #BigPharma has found a way to reap additional profits from the #Opioid epidemic that it helped to cre…" +06/15/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: We're running a Virtual #FoodDrive to raise $10,000 for Second Harvest Food Bank @feedhopenow. Join us! Click here to don…" +06/15/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Help others achieve their dreams and you will achieve yours. +06/15/2018,Politicians,@JohnMorganESQ,"RT @BibeeChristian: And Morgan and Morgan can help turn that tide. The Columbus, GA office have some of the finest attorneys and staff you…" +06/15/2018,Politicians,@JohnMorganESQ,"""When you get into a tight place and everything goes against you … never give up then, for that is just the place a… https://t.co/SvUvKs7Fz5" +06/14/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Congrats to attorneys David Henry & John Berke - with help from attorney Adam Kemp - for earning a $214k #verdict for the… +06/14/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Never underestimate the difference you can make in the lives of others. Step forward, reach out and help. This week reac…" +06/14/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Our attorneys aren't afraid to take on the biggest corporations. We never stop fighting #ForThePeople. #StrengthInNumbers… +06/14/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: #Attorney Clay Townsend discusses how experience and persistence paid off in various high-profile #intellectualpropert… +06/14/2018,Politicians,@JohnMorganESQ,We either find a way or make one!! #BELIEVE +06/14/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: ✌🏼be with you today ☀️ https://t.co/2x7Dyb6RDj +06/14/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: 'One person can make a difference, and everyone should try.' - JFK. + +It started with one person's fight, it's grown into…" +06/13/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: 4.1 billion. That’s the number of #robocalls made to American consumers last month, according to a new report. #TCPA #F…" +06/13/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: What did @RobertKennedyJr discuss with us yesterday? Tort reform, #democracy, #justice, and @JohnMorganESQ. Here's a snea…" +06/13/2018,Politicians,@JohnMorganESQ,There is no failure except in no longer trying!! +06/12/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Morgan & Morgan of counsel #attorney @RobertKennedyJr talks about his new book, 'American Values: Lessons I Learned From…" +06/12/2018,Politicians,@JohnMorganESQ,Neal I met him in Underground Atlanta in 1975. I was listening to Piano Red. He gave me an ax handle. Jeff Sessions… https://t.co/If7S2w8vy9 +06/12/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: We just received a $2,500,000.00 #verdict in Orange County. Our client had a permanent injury in his neck called a disc…" +06/12/2018,Politicians,@JohnMorganESQ,.@WillieNelson can you or @SnoopDogg write us a song?? #NoSmokeIsAJoke +06/12/2018,Politicians,@JohnMorganESQ,.@realDonaldTrump needs to FIRE this backwards racist. Sessions is George Wallace & Lester Maddox rolled into one.… https://t.co/0dY4AWhDio +06/12/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: “No act of kindness, no matter how small, is ever wasted.” + +– Aesop" +06/12/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: The #recall is especially important to Floridians because experts say vehicles with #Takata #airbags in hot and humid c… +06/12/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: The hotter it gets the greater the risk! https://t.co/JNKjYXxZqV +06/12/2018,Politicians,@JohnMorganESQ,Gaetz gets it. @mattgaetz please tell #SlickRick it’s time to break away from Jeff Beauregard Sessions and enter th… https://t.co/v4msaEle7I +06/12/2018,Politicians,@JohnMorganESQ,Character consists of what you do on the third and fourth tries. +06/11/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: @ChristieZizo @JimRosicaFL @JohnMorganESQ You got it @ChristieZizo! Emma, and Molly - they’re never far from @JohnMorganE…" +06/11/2018,Politicians,@JohnMorganESQ,"I don’t think @FLGovScott should want to be in that company, he can allow smoke today with the wave of a pen.… https://t.co/exqbKSyO1s" +06/11/2018,Politicians,@JohnMorganESQ,"Many thanks to @realDonaldTrump for his statements concerning #MedicalMarijuana. He gets it. + +It seems the last two… https://t.co/vDQSBUwKqQ" +06/11/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: When you hire us, you're hiring an army of lawyers who'll fight on your behalf. #ForThePeople #StrengthInNumbers https://…" +06/11/2018,Politicians,@JohnMorganESQ,"Your future is created by what you do TODAY, not tomorrow!" +06/09/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: 🙌🏼🙌🏼🙌🏼 https://t.co/ZmGwQj3LGp +06/09/2018,Politicians,@JohnMorganESQ,RT @forthepeople: What does it mean to be #ForThePeople? We're an army of over 400 lawyers who are built for the fight. 💪 #StrengthInNumbe… +06/09/2018,Politicians,@JohnMorganESQ,"RT @MayorLevine: Thanks @JohnMorganESQ, it’s time to do the right thing and legalize recreational marijuana in Florida! #sayfie #flapol htt…" +06/08/2018,Politicians,@JohnMorganESQ,"But in the end, for you, and those that benefit from full #legalization, it will have made all the difference in th… https://t.co/0zZkTgu3rT" +06/08/2018,Politicians,@JohnMorganESQ,Like many big things it takes time to make change. Think of same sex marriage. The politicians who were brave enoug… https://t.co/FL3ELh3VE1 +06/08/2018,Politicians,@JohnMorganESQ,"Phil your position is the correct one! 👏👏👏 + +Minorities, young people, & those without money are the ones that get c… https://t.co/kGasxMKP5s" +06/08/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: If you want to understand fully what @FLGovScott is doing to our veterans, first responders, and really sick Floridians.…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: “The batteries, when unstable, can pack the punch of a roman-candle grenade,” said @MikeMorganESQ, managing partner of…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: You need to be aware of what others are doing, applaud their efforts, acknowledge their successes, and encourage them in…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Get your car checked, if not it will be too late when you realize you have a problem! https://t.co/mxtIdJFKgT" +06/08/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: .@forthepeople is proud to announce that attorney Keith Meehan has joined the firm's Business Trial Group. Meehan brin… +06/08/2018,Politicians,@JohnMorganESQ,"""Keep away from people who try to belittle your ambitions. Small people always do that, but the really great makes… https://t.co/AilNR5jgKb" +06/08/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: When a #drug company pays kickbacks to a physician, they’re trying to get that physician’s patients to use a product. Usi…" +06/08/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: President @realDonaldTrump just said he “probably will end up supporting” the bipartisan #marijuana legislation reform b… +06/08/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: While at the same time #SlickRick is denying smoke to veterans with PTSD. The cruelty and meanness has no rival! + +Smoke…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: Over the past 30 years, our firm has represented over 200K people, collecting #billions in the process. I often wonder w…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: #SlickRick is out of touch with his own President! + +Thank you @realDonaldTrump. You get it, #NoSmokeIsAJoke. https://t.c…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: I have heard similar comments from other President Trump “insiders”. + +Very popular issue for President @realDonaldTrum…" +06/07/2018,Politicians,@JohnMorganESQ,"Think of the ratings for that hour. We might beat the #RoyalWedding! + +#NoSmokeIsAJoke #100K https://t.co/shRFve1Gig" +06/07/2018,Politicians,@JohnMorganESQ,While at the same time #SlickRick is denying smoke to veterans with PTSD. The cruelty and meanness has no rival!… https://t.co/A43H11oWXV +06/07/2018,Politicians,@JohnMorganESQ,"#SlickRick is out of touch with his own President! + +Thank you @realDonaldTrump. You get it, #NoSmokeIsAJoke. https://t.co/MfVeKU2Gr1" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: We’ve come a long way!! + +65% of Americans say it is “morally acceptable” to 💨 #marijuana. + +Yes, that’s a healthy majori…" +06/07/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Happiness is a by-product of an effort to make someone else happy. 😀 +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: If #SlickRick would rather, I will donate $100K to the charity of his choice! The Ann Scott Trust located in the Isle of…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Gary, here's my offer to Florida. I would like to debate @FLGovScott on this issue so all of Florida can see his positio…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Someone’s keeping a close eye on today’s commercial shoot. +#ForTheDogs #Emma #ForThePeople https://t.co/xFUimXdLWW" +06/07/2018,Politicians,@JohnMorganESQ,The only way of finding the limits of the possible is by going beyond them into the impossible. +06/07/2018,Politicians,@JohnMorganESQ,"If #SlickRick would rather, I will donate $100K to the charity of his choice! The Ann Scott Trust located in the Is… https://t.co/PuAaHAuzwJ" +06/06/2018,Politicians,@JohnMorganESQ,"Florida deserves to hear @FLGovScott out and I am willing to pay for it! + +Anywhere. Anytime. + +You can run but you… https://t.co/3bI7MY1AZo" +06/06/2018,Politicians,@JohnMorganESQ,"Gary, here's my offer to Florida. I would like to debate @FLGovScott on this issue so all of Florida can see his po… https://t.co/3lR8RGD7IN" +06/06/2018,Politicians,@JohnMorganESQ,"And remember this @FLGovScott... + +#MedicalMarijuana got 500,000 MORE votes than you last time and you won by only… https://t.co/famcfdma55" +06/06/2018,Politicians,@JohnMorganESQ,"Or it could be ended TODAY if #SlickRick stops wasting the state's money and hurting veterans, cops, firefighters a… https://t.co/8PsTpmG2wX" +06/06/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The department of health's delay in getting #MedicalMarijuana cards has been intentional. No one could be that inept! + +I…" +06/06/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: That shirt tho 🔥 🔥🔥 + +Let me borrow that @JohnMorganESQ https://t.co/FKnFvcnBdQ" +06/06/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: The U.S. Food and Drug Administration has named dozens of #drugmakers who game the system by delaying cheaper, #generic…" +06/06/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: “If you light a lamp for somebody, it will also brighten your path.” + +– Buddha" +06/06/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Judge Karen Gievers lifted an automatic stay on her ruling on smokable #medicalmarijuana. It's about compassion #forthepe… +06/06/2018,Politicians,@JohnMorganESQ,Nobody who ever gave their best has regretted it!! +06/06/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: #SlickRick please follow the law & the will of 72% of the people. Everyday you waste taxpayers' money w/ this frivolous… +06/05/2018,Politicians,@JohnMorganESQ,The department of health's delay in getting #MedicalMarijuana cards has been intentional. No one could be that inep… https://t.co/ylDlkpjY10 +06/05/2018,Politicians,@JohnMorganESQ,#SlickRick please follow the law & the will of 72% of the people. Everyday you waste taxpayers' money w/ this frivo… https://t.co/u1gpG4UAgL +06/05/2018,Politicians,@JohnMorganESQ,"If you want to understand fully what @FLGovScott is doing to our veterans, first responders, and really sick Florid… https://t.co/HFECoE00Uf" +06/05/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: But not to #SlickRick! + +This will cost @ScottforFlorida!! #NoSmokeIsAJoke https://t.co/67RqkLJuqP" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: .@JohnMorganESQ speaks to @wmfeorlando about the legal battle over smokable #MedicalMarijuana, and how he thinks it will…" +06/05/2018,Politicians,@JohnMorganESQ,"But not to #SlickRick! + +This will cost @ScottforFlorida!! #NoSmokeIsAJoke https://t.co/67RqkLJuqP" +06/05/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: 🙏 Pray for Beauregard, he has many issues. https://t.co/oMXvNV93H5" +06/05/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: In a democracy, in which the majority (95%) of the people support #marijuana for #medical purposes, this should be treat…" +06/05/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: This has prompted questions about why the #drug does not have warning labels about potentially fatal side effects. http… +06/05/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: In order to be who you are, you must let go of who you think you are. 👌🏼" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: We believe in your right to smoke #medicalmarijuana. We fought to protect that right, and we won. It's time for compassio…" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In five years, they've become a dynamic duo. @MattMorganESQ & @KeithMitnikESQ talk about their partnership: https://t.co/…" +06/05/2018,Politicians,@JohnMorganESQ,"When was the last time you visited a library?! Money down the drain. + +@WinterParkFla, spend it on food!! https://t.co/tAlYIlctND" +06/05/2018,Politicians,@JohnMorganESQ,"🙏 Pray for Beauregard, he has many issues. https://t.co/oMXvNV93H5" +06/05/2018,Politicians,@JohnMorganESQ,"""When we strive to become better than we are, everything around us becomes better too."" + +- @paulocoelho" +06/04/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Take off the Navy hat, I have a new one that's more appropriate: #ScrewTheVets + +These men & women have fought wars for u…" +06/04/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: .@FLGovScott says he's “just following the law” while denying the will of the people and hurting really sick people. Don… +06/04/2018,Politicians,@JohnMorganESQ,"Governor Scott, you have the power. You are the law. #CompassionMatters + +#NoSmokeIsAJoke" +06/04/2018,Politicians,@JohnMorganESQ,"Take off the Navy hat, I have a new one that's more appropriate: #ScrewTheVets + +These men & women have fought wars… https://t.co/EsbpdRTYaP" +06/04/2018,Politicians,@JohnMorganESQ,"This chapter will be a stain on @ScottforFlorida forever. Every day he delays is a day of suffering for one of us,… https://t.co/ur9RN7x3II" +06/04/2018,Politicians,@JohnMorganESQ,"Likewise he could today, drop the state's appeal and smokeable #marijuana would be there for those who need it most… https://t.co/Mr4iTDZJ1D" +06/04/2018,Politicians,@JohnMorganESQ,"Gov. Scott is smart, he read in the intent language the same thing Judge Gievers read that the voters approved, smo… https://t.co/iRAnmj5Nby" +06/04/2018,Politicians,@JohnMorganESQ,.@FLGovScott says he's “just following the law” while denying the will of the people and hurting really sick people… https://t.co/MDlYNqJKjc +06/04/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Morgan & Morgan. AND Morgan. 😉 +#ForThePeople #LAW #Verdict https://t.co/aID9bToSXQ" +06/04/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Former judge and current @forthepeople attorney @BelvinPerryJr speaking at last night's @The100GO #scholarship dinner. Me… +06/04/2018,Politicians,@JohnMorganESQ,It’s a matter of dignity. #NoSmokeIsAJoke https://t.co/SraspalPxS +06/04/2018,Politicians,@JohnMorganESQ,"Governor Scott, it is not about your past, it is about COMPASSION for Florida! + +Learn and grow! + +I don’t think you'… https://t.co/qboX5iuBDR" +06/04/2018,Politicians,@JohnMorganESQ,.@FLGovScott had family members who had problems with drugs. Not with cannabis but with drugs. He can’t separate th… https://t.co/60jtZJfKjj +06/04/2018,Politicians,@JohnMorganESQ,"""You will never plough a field if you only turn it over in your mind."" + +- Irish Proverb ☘️" +06/03/2018,Politicians,@JohnMorganESQ,Please ask your friends to follow me here on Twitter as the people speak truth to power and the makers of opioids. #LiveFreeOrDieTrying +06/03/2018,Politicians,@JohnMorganESQ,".@FLGovScott was elected and reelected by one percentage point. Our veterans, cops, & firefighters who desperately… https://t.co/tJn8tdle4l" +06/03/2018,Politicians,@JohnMorganESQ,"Gary in this new day on the internet with Twitter & Facebook, all the shares & retweets are the airwaves. I will ha… https://t.co/rqGuzJRej7" +06/03/2018,Politicians,@JohnMorganESQ,Are you moving to a bigger mansion? https://t.co/7eFY4h7RhQ +06/03/2018,Politicians,@JohnMorganESQ,".@FLGovScott this is the law. Did you read the statement of intent? Yes or no? + +@SenBillNelson did and voted YES!!… https://t.co/pjjSDuAGk6" +06/02/2018,Politicians,@JohnMorganESQ,"Do they have Makers Martinis? + +I am a hillbilly from Kentucky. I might just fly down and surprise you! https://t.co/ri2vs6RFBp" +06/02/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: The dream team! Full video here: https://t.co/y6skdiaGL7 +#ForThePeople #StrengthInNumbers #LAW https://t.co/Kx2OQnnLK9" +06/02/2018,Politicians,@JohnMorganESQ,Hey Neal let’s have a drink and discuss. To know me is to love me! https://t.co/vKqfrLvzJ5 +06/02/2018,Politicians,@JohnMorganESQ,Billy that is so true!! https://t.co/paSsF9An0v +06/02/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: Verdict !!!! +Last offer to my client was 3k, the jury just returned a verdict in the amount of 170k !!!! Justice has been s…" +06/02/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Now for a few questions for @FLGovScott... + +Did you vote NO and now have found a way to thwart the WILL of the people an…" +06/02/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: .@SenBillNelson read the intent language that clearly stated it was to be smoked. He read the ballot language that said… +07/01/2018,Politicians,@SenJohnMcCain,"RT @FaceTheNation: TODAY: +💬 @AmbJohnBolton +💬 @SenToomey +💬 @SenBlumenthal +💬 Fmr. Amb. Roberta Jacobson +💬 @MarkSalter55 + +📺 Don't miss @F…" +06/29/2018,Politicians,@SenJohnMcCain,"Cindy & I are praying for the families, friends & colleagues of the victims of the terrible shooting… https://t.co/LYfLWN9QI2" +06/29/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""What Does the United States Stand For?"" https://t.co/C0dzQkn7RQ" +06/29/2018,Politicians,@SenJohnMcCain,Thank you @jamiemfly for the great review in @weeklystandard of my new book #TheRestlessWave! https://t.co/YJahRn50fU +06/27/2018,Politicians,@SenJohnMcCain,Congratulations to my friend @MittRomney on his victory last night - an outstanding leader for #Utah & the nation! #utpol +06/27/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""Trump Rides a Harley—to Europe: The U.S. casualties of his trade war are starting to mount"" https://t.co/TPacnAwp5X" +06/25/2018,Politicians,@SenJohnMcCain,"Must-read @azcentral: ""Granite Mountain Hotshots: An untold story from the day 19 firefighters died"" https://t.co/Wbkee1zwAe" +06/24/2018,Politicians,@SenJohnMcCain,Cindy & I send our prayers to the family & friends of Lt. Christopher Carey Short who was tragically killed in an A… https://t.co/wiN0I3jLu7 +06/22/2018,Politicians,@SenJohnMcCain,"Cindy & I are deeply saddened by the passing of our friend Charles Krauthammer. Brilliant, kind, funny & generous,… https://t.co/bBDJoZfcZn" +06/21/2018,Politicians,@SenJohnMcCain,Sent letter today urging @DeptVetAffairs to address poor quality ratings at #Arizona VA nursing homes https://t.co/BOaXiHh7YO +06/20/2018,Politicians,@SenJohnMcCain,"RT @ChrisCoons: On #WorldRefugeeDay, @SenJohnMcCain & I are calling on the Trump admin to withdraw the nomination of Ronald Mortensen to se…" +06/19/2018,Politicians,@SenJohnMcCain,Sent letter w/ @ChrisCoons urging the admin to withdraw nomination of Ronald Mortensen to lead US refugee & migrati… https://t.co/UF4BTaUBZt +06/19/2018,Politicians,@SenJohnMcCain,"RT @joshledermanAP: NEW from @AP: ⁦@SenJohnMcCain⁩, ⁦@ChrisCoons pen letter to ⁦@SecPompeo⁩ urging Trump administration to withdraw migrati…" +06/19/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost by human rights icon Natan Sharansky: ""The U.S. stood with Soviet dissidents. It should s… https://t.co/cT5YpRzuHk" +06/19/2018,Politicians,@SenJohnMcCain,"Wonderful @washingtonpost piece on my friend @SenatorDole, a man who can teach all Americans about what it means to… https://t.co/GRtXCv5teo" +06/18/2018,Politicians,@SenJohnMcCain,"The administration’s current family separation policy is an affront to the decency of the American people, and cont… https://t.co/dcHVT3KtCw" +06/18/2018,Politicians,@SenJohnMcCain,"I'm very proud the Senate voted 85-10 to pass the #FY19NDAA, vital legislation that will provide for our men & wome… https://t.co/ixpHqOzAto" +06/18/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""A Troops for Nukes Trade? U.S. forces in South Korea do far more than protect Seoul"" https://t.co/09twqxAn0J" +06/14/2018,Politicians,@SenJohnMcCain,Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts… https://t.co/vGnkifQFyu +06/14/2018,Politicians,@SenJohnMcCain,I'm deeply honored @SenJackReed & my colleagues have voted to designate the Strategic Defense Fellows Program in my… https://t.co/NdT50RAP56 +06/14/2018,Politicians,@SenJohnMcCain,"Must-read by @vkaramurza in @washingtonpost: ""Yes, #Russia should rejoin the Group of Seven — when it becomes a dem… https://t.co/xtWcI3DGZX" +06/14/2018,Politicians,@SenJohnMcCain,Thank you my friend @JeffFlake https://t.co/bgc4ICrwiL +06/13/2018,Politicians,@SenJohnMcCain,US sanctions on Hun Sen's bodyguards represent a positive step forward in holding the regime accountable. More desi… https://t.co/E11dD3l79j +06/13/2018,Politicians,@SenJohnMcCain,"Must-read column by @marcthiessen in @washingtonpost today: ""On Charles Krauthammer, my friend, mentor and lodestar"" https://t.co/aDlr4l8iYA" +06/13/2018,Politicians,@SenJohnMcCain,"A worthy honor for an extraordinary man: ""@usairforce honors #Vietnam hero who served in 3 wars, was John McCain’s… https://t.co/m4L6Haa9zt" +06/13/2018,Politicians,@SenJohnMcCain,RT @people: Meghan McCain Honors Her Dad Ahead of Father’s Day: 'I Have a Beautiful Feeling About Our Relationship' https://t.co/Yg6ro3ORmC +06/12/2018,Politicians,@SenJohnMcCain,Sending full support to @tsipras_eu & @Zoran_Zaev as they work together to solve the #Macedonia naming dispute. If… https://t.co/HeFWGvVb9G +06/11/2018,Politicians,@SenJohnMcCain,"Cindy & I send our heartfelt condolences to the family & friends of Staff Sgt. Alexander W. Conrad of Chandler,… https://t.co/Y3CUxl0B72" +06/10/2018,Politicians,@SenJohnMcCain,"To our allies: bipartisan majorities of Americans remain pro-free trade, pro-globalization & supportive of alliance… https://t.co/IcT1QCv2YC" +06/09/2018,Politicians,@SenJohnMcCain,RT @MeghanMcCain: So amazing to be here tonight at The American Spirit Awards at The National WWII Museum in New Orleans - such an honor to… +06/08/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Friday will always be Charles’s day"" https://t.co/hRCXFPhrSN" +06/08/2018,Politicians,@SenJohnMcCain,"Cindy & I are praying for our dear friend Charles @krauthammer. A man of incredible intellect & character, Charles… https://t.co/lJA1gDhQgt" +06/08/2018,Politicians,@SenJohnMcCain,Vladimir Putin chose to make #Russia unworthy of membership in the G-8 by invading Ukraine and annexing Crimea. Not… https://t.co/ipcYsr3zfa +06/08/2018,Politicians,@SenJohnMcCain,RT @TJQuinnESPN: We were joined by @SenJohnMcCain @Kasparov63 @MichaelJMorell @MartynyukLeonid Richard McLaren and many others. Please watc… +06/07/2018,Politicians,@SenJohnMcCain,RT @SASCMajority: The report to accompany the John S. McCain #FY19NDAA (S. Rpt. 115-262) has been posted: https://t.co/UXOI7dyZi8 +06/07/2018,Politicians,@SenJohnMcCain,"Must-read @lawfareblog by @RHFontaine & Vance Serchuk: ""Congress Should Oversee America’s Wars, Not Just Authorize… https://t.co/a0uayIQLUB" +06/07/2018,Politicians,@SenJohnMcCain,".@thehill: ""Senate defense bill eyes threats from #Russia, #China"" https://t.co/IR7kCGkwTD" +06/06/2018,Politicians,@SenJohnMcCain,Proud the #VAMISSIONAct has been signed into law. This bill will provide veterans w/ greater health care choices &… https://t.co/IWY0gXyE3W +06/06/2018,Politicians,@SenJohnMcCain,"America is the land of the immigrant’s dream. For centuries, people have come to this country for the opportunities… https://t.co/KA2cVfF0MT" +06/05/2018,Politicians,@SenJohnMcCain,"Great to hear the Senate will soon be opening debate on the #FY19NDAA, a bipartisan bill that will provide America'… https://t.co/cTvSCZC5r6" +06/05/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""#China’s Military Escalation: Mattis and Congress push back against Beijing’s South China Sea depl… https://t.co/mO1pJ3SfEu" +06/02/2018,Politicians,@SenJohnMcCain,I strongly support the bipartisan effort in the House to file a discharge petition to reopen the debate on immigrat… https://t.co/DrgFB72xwZ +06/01/2018,Politicians,@SenJohnMcCain,Important @CNN read by George Shultz & Pedro Aspe: “A better way than tariffs to improve America's trade picture” https://t.co/A3e38jBkTp +06/01/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""#Burma’s crimes against humanity went unpunished. No wonder it’s at it again."" https://t.co/nF55uRrXSl" +05/31/2018,Politicians,@SenJohnMcCain,RT @cindymccain: It is our duty as a country to take care of these vulnerable children and adults. https://t.co/Z1atwtZZJ8 +05/31/2018,Politicians,@SenJohnMcCain,"My deepest thanks to the readers of our new book, The Restless Wave, which is now #1 on @nytimes best sellers list… https://t.co/OTzeJDtkqA" +05/30/2018,Politicians,@SenJohnMcCain,Must-read by my friend @GrantWoods in @USATODAY https://t.co/bzeq1XUBEk +05/30/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""Myanmar Is Intensifying Violence Against Ethnic Minorities, U.S. Says"" https://t.co/9UeXC5jOth" +05/28/2018,Politicians,@SenJohnMcCain,Today we honor the Americans who sacrificed everything to secure the blessings of liberty. Family and friends to so… https://t.co/mlkXE1YLv9 +05/27/2018,Politicians,@SenJohnMcCain,"RT @jaketapper: Corporal Matthew Stanley, KIA December 16, 2006 when his Humvee struck an IED on patrol in Taji, Iraq. @SenJohnMcCain wears…" +05/27/2018,Politicians,@SenJohnMcCain,Happy 95th birthday to my friend Dr. Henry Kissinger! +05/24/2018,Politicians,@SenJohnMcCain,RT @SenJackReed: Chairman @SenJohnMcCain’s devotion to duty & sheer determination are inspiring. He has always taken on challenges with a s… +05/24/2018,Politicians,@SenJohnMcCain,"Every year, our committee reports out a bill that is debated, amended & signed into law—imperfect, full of compromi… https://t.co/yCqqPeKdZX" +05/24/2018,Politicians,@SenJohnMcCain,"Thanks to my #SASC colleagues’ commitment to principled legislating, I believe the NDAA will continue to serve as a… https://t.co/Yd15TbfBEX" +05/24/2018,Politicians,@SenJohnMcCain,My term as #SASC Chairman has been far from perfect. But I'm proud our members have upheld the Senate’s finest trad… https://t.co/VoNOJquONI +05/24/2018,Politicians,@SenJohnMcCain,I’d also like to express my thanks to @JimInhofe for shepherding the #FY19NDAA through the committee markup in my a… https://t.co/7TiUgUr1r3 +05/24/2018,Politicians,@SenJohnMcCain,I count myself fortunate to have @SenJackReed as my partner on the committee. We come from different parties & we’v… https://t.co/RavgP3ajHX +05/24/2018,Politicians,@SenJohnMcCain,I’m proud #SASC voted overwhelmingly to pass the #FY19NDAA. One of the greatest honors of my life has been to serve… https://t.co/AQTT0MGUmG +05/24/2018,Politicians,@SenJohnMcCain,I applaud @POTUS for issuing a posthumous pardon of boxing legend Jack Johnson for his racially charged conviction… https://t.co/KyakCfSZwA +05/24/2018,Politicians,@SenJohnMcCain,RT @TODAYshow: Here’s a powerful new look at @HBO’s documentary about the life and career of @SenJohnMcCain https://t.co/0vo7uYFSdo +05/24/2018,Politicians,@SenJohnMcCain,".@ABC: ""John McCain says in new biopic: 'I'm a human being and I'm not a maverick'"" https://t.co/vf9OVupd8Q" +05/24/2018,Politicians,@SenJohnMcCain,RT @CNNPolitics: The VA health care bill is named after Sen. John McCain https://t.co/vwPsoDhSby https://t.co/wH3FgjmWd1 +05/23/2018,Politicians,@SenJohnMcCain,"I'm deeply humbled my colleagues have designated this bill in my name, along with my friend & comrade,… https://t.co/sRfSu75gNC" +05/23/2018,Politicians,@SenJohnMcCain,"I applaud the Senate for passing the #VAMISSIONAct, which includes major reforms I cosponsored with @JerryMoran to… https://t.co/J158F018ma" +05/23/2018,Politicians,@SenJohnMcCain,"Must-read @JeffreyGoldberg @TheAtlantic: ""John McCain’s Greatest Fear: A conversation with Mark Salter about the co… https://t.co/7sDZxcbSxc" +05/22/2018,Politicians,@SenJohnMcCain,"Cindy & I send our heartfelt prayers to Susan, Evan & the entire Bayh family. We are with you in this fight & confi… https://t.co/nJ0q6PDpEA" +05/22/2018,Politicians,@SenJohnMcCain,"RT @iBooks: .@SenJohnMcCain’s new memoir: Read his candid story. #TheRestlessWave +https://t.co/4zLttRqiMO https://t.co/NtPxPjzJxg" +05/22/2018,Politicians,@SenJohnMcCain,"RT @CNN: Speechwriter helps Sen. John McCain say his piece in his new book, ""The Restless Wave,"" which is being released this week https://…" +05/22/2018,Politicians,@SenJohnMcCain,"RT @ABCPolitics: Sen. John McCain's new book provides insights into his 2008 presidential race against Barack Obama, his thoughts on Donald…" +05/22/2018,Politicians,@SenJohnMcCain,"RT @mikeallen: on publication day, @MarkSalter55 tells me how he and @SenJohnMcCain wrote their final book together ... Salter has 20-25 ho…" +05/22/2018,Politicians,@SenJohnMcCain,".@NPR: ""In 'The Restless Wave' Sen. John McCain Discusses Principles He Wants The U.S. To Keep"" https://t.co/zzYGi7joLD" +05/22/2018,Politicians,@SenJohnMcCain,".@CNN on my new book w/ @MarkSalter55, The Restless Wave, which is now out today: ""Speechwriter helps John McCain s… https://t.co/OpEzwgX847" +05/21/2018,Politicians,@SenJohnMcCain,RT @MeghanMcCain: So wonderful having my fathers alter ego (and author of The Restless Wave) @MarkSalter55 & filmmaker of my fathers new @H… +05/21/2018,Politicians,@SenJohnMcCain,"RT @TheView: Filmmaker Teddy Kunhardt says @SenJohnMcCain had two goals for his documentary: ""I want to tell the American people I'm not pe…" +05/21/2018,Politicians,@SenJohnMcCain,".@nypost: ""This week’s must-read books"" https://t.co/svS1iUzfnQ" +05/21/2018,Politicians,@SenJohnMcCain,"RT @TheView: THIS MORNING: We talk to the co-author of @SenJohnMcCain's new book, @MarkSalter55, and the director of his documentary, Teddy…" +05/21/2018,Politicians,@SenJohnMcCain,".@USATODAY: ""5 books you won't want to miss this week, including Stephen King, John McCain"" https://t.co/okR35aCedN" +05/21/2018,Politicians,@SenJohnMcCain,"RT @NorahODonnell: ""Eternal Father, strong to save, Whose arm hath bound the restless wave."" Our conversation with @MarkSalter55 on new boo…" +05/21/2018,Politicians,@SenJohnMcCain,"RT @CBSThisMorning: Senator John McCain says his cancer diagnosis makes him free to speak his mind. He does exactly that in his new book, ""…" +05/21/2018,Politicians,@SenJohnMcCain,"RT @CBSNews: ""[Sen. John McCain] recognizes that so much more unites us than divides us and in this country the only way to get things done…" +05/21/2018,Politicians,@SenJohnMcCain,"My friend & coauthor @MarkSalter55 joined @CBSThisMorning today to discuss our new collaboration, The Restless Wave… https://t.co/v9EyGaq91D" +05/20/2018,Politicians,@SenJohnMcCain,"RT @CBSSunday: Co-writer @MarkSalter55 talks about the themes of the latest memoir by +@SenJohnMcCain, who has been diagnosed with brain ca…" +05/20/2018,Politicians,@SenJohnMcCain,Happy birthday to my extraordinary wife @cindymccain - you make us very proud! https://t.co/Xln5OOvQKJ +05/18/2018,Politicians,@SenJohnMcCain,"Thanks to my family, friends & colleagues for coming together yesterday for the premiere of the new @HBODocs ""John… https://t.co/KPNV2Jccvs" +05/17/2018,Politicians,@SenJohnMcCain,Happy 37th anniversary to my love @cindymccain - time flies when you’re having fun! https://t.co/eivKVUylHb +05/16/2018,Politicians,@SenJohnMcCain,RT @weeklystandard: Mattis: ‘Everything I Love About America is Resident’ in John McCain https://t.co/YyE4mpoQTg +05/16/2018,Politicians,@SenJohnMcCain,Grateful to our son Jimmy for speaking at @IRIglobal’s #FreedomDinner tonight as Sec Mattis & Amb @nikkihaley are h… https://t.co/G5IBEQm3SX +05/14/2018,Politicians,@SenJohnMcCain,"From one cantankerous senator to another, sending my prayers & best wishes to @SenatorReid as he recovers from a successful surgery" +05/14/2018,Politicians,@SenJohnMcCain,"Must-read @Militarydotcom: ""Training Kills More Troops Than War. Here's What's Being Done About It"" https://t.co/psaX3udizn" +05/13/2018,Politicians,@SenJohnMcCain,Happy #MothersDay to all the moms around the country & the world! I’m especially grateful for my remarkable mom Rob… https://t.co/YRPOnjOiD4 +05/10/2018,Politicians,@SenJohnMcCain,RT @WSJ: 'Putin’s goal isn’t to defeat a candidate or a party. He means to defeat the West.' An excerpt from the new memoir from @SenJohnMc… +05/10/2018,Politicians,@SenJohnMcCain,"Read a new excerpt from my upcoming book in @WSJ: ""John McCain: ‘Vladimir Putin Is an Evil Man’"" https://t.co/0Bu6kx8cHe" +05/10/2018,Politicians,@SenJohnMcCain,"RT @hillhulse: John McCain, his book, Lindsey Graham, the Senate and The Man Who Shot Liberty Valance. https://t.co/xWMtNLpXXT" +05/10/2018,Politicians,@SenJohnMcCain,RT @PowerPost: Why @SenJohnMcCain is voting against #Gina_Haspel to lead the CIA – and why it matters via @jameshohmann https://t.co/ufKojC… +05/10/2018,Politicians,@SenJohnMcCain,I believe Gina Haspel is a patriot who loves our country & has devoted her professional life to its service & defen… https://t.co/nSU8tuawsj +05/08/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Hear #China’s totalitarian cruelty in this widow’s sobs"" https://t.co/LYZa2LL9sw" +05/08/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""A Relative Wages Jack Johnson’s Biggest Fight: To Clear His Name"" https://t.co/wtYeLdyhFE" +05/03/2018,Politicians,@SenJohnMcCain,"RT @nytimesbooks: What John McCain learned from reading Hemingway: ""No just cause is futile, even if it’s lost, if it helps make the future…" +05/03/2018,Politicians,@SenJohnMcCain,RT @AmericanAcademy: We are pleased to announce that the @AmericanAcademy has awarded the 2018 Henry A. Kissinger Prize to United States Se… +05/02/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the families of the brave members of the National Guard whose lives were lost in the trag… https://t.co/l9ZV7hM53u +04/18/2018,Politicians,@SenJohnMcCain,"Former First Lady Barbara Bush remains an example to all of us of kindness and patriotism, and will fondly be remem… https://t.co/AiaAZ8VsqE" +04/16/2018,Politicians,@SenJohnMcCain,RT @HBOPR: Production begins on @HBO documentary about @SenJohnMcCain : https://t.co/becR1kHAQx @HBODocs https://t.co/dD3k6Na0py +04/14/2018,Politicians,@SenJohnMcCain,"I applaud the President for taking military action against the Assad regime, and I am grateful to our British and F… https://t.co/0hYUrfVklf" +04/13/2018,Politicians,@SenJohnMcCain,"Director Pompeo has the experience & understanding needed to reassert strong American leadership, confront complex… https://t.co/Z7hhXuYsCs" +04/11/2018,Politicians,@SenJohnMcCain,"Today, @POTUS signed into law our bipartisan #SESTA. This bill will enable Backpage and other websites to be held a… https://t.co/b4QIJlMjgy" +04/11/2018,Politicians,@SenJohnMcCain,"Must-read by @DCTwining @IRIglobal & @kwollack @NDI in @washingtonpost: ""#Russia’s nefarious meddling is nothing li… https://t.co/zRHVYb09Ue" +04/11/2018,Politicians,@SenJohnMcCain,.@SpeakerRyan is a good man who has served the country and the people of Wisconsin with honor and distinction. Whil… https://t.co/M6nV7d3H5v +04/09/2018,Politicians,@SenJohnMcCain,"Important @MilitaryTimes: ""The death toll for rising aviation accidents: 133 troops killed in five years"" https://t.co/JLkL6Upx3J" +04/08/2018,Politicians,@SenJohnMcCain,".@POTUS's pledge to withdraw from #Syria has only emboldened Assad, backed by Russia & Iran, to commit more war cri… https://t.co/qendPcTlrX" +04/06/2018,Politicians,@SenJohnMcCain,The seizure of the malicious sex marketplace https://t.co/KUfHCHvNpB marks an important step forward in the fight a… https://t.co/eQDgEZybbM +04/06/2018,Politicians,@SenJohnMcCain,It’s easy to punish #China. It’s a lot harder to hold it truly accountable and change its behavior. That requires a… https://t.co/baP92lz7H4 +04/06/2018,Politicians,@SenJohnMcCain,New sanctions send a message to #Putin & his cronies that there will be a high price to pay for Russian aggression.… https://t.co/AbebT23zC8 +04/05/2018,Politicians,@SenJohnMcCain,Good news from @DeptofDefense that they intend to shock test USS Gerald R Ford. Full ship shock trials before first… https://t.co/a3ERq5JVCP +04/05/2018,Politicians,@SenJohnMcCain,Praying for the family & friends of @AFThunderbirds pilot killed in F-16 crash in #Nevada. With more service member… https://t.co/P0dkBUXUES +04/05/2018,Politicians,@SenJohnMcCain,"Must-read @azcentral editorial: ""#RioReimagined challenges metro #Phoenix to think big. Are we ready?"" https://t.co/gWwiWJbfMB" +04/05/2018,Politicians,@SenJohnMcCain,"Thank you @GrandCanyonNPS @GrandCanyonAssn & @dougducey for this incredible honor, which I'm proud to share with my… https://t.co/SEM6PY1l2h" +04/04/2018,Politicians,@SenJohnMcCain,"RT @ASU: #RioReimagined, the visionary plan put in motion by @SenJohnMcCain and @ASU to transform the Salt River into an urban and environm…" +04/04/2018,Politicians,@SenJohnMcCain,Cindy & I send our prayers & condolences to the families of the four Marines whose lives were lost in the CH-53E cr… https://t.co/BzXKpk3ysF +04/02/2018,Politicians,@SenJohnMcCain,".@TIME: ""How Poetry Helped Sustain John McCain During His Years as a Prisoner of War"" #NationalPoetryMonth https://t.co/P1gwverYrQ" +03/30/2018,Politicians,@SenJohnMcCain,"RT @MayorStanton: Thank you @SenJohnMcCain for bringing together federal, state, regional & tribal leaders to launch the next chapter of th…" +03/30/2018,Politicians,@SenJohnMcCain,"#RioReimagined is a grand project that will transform the Valley, enhance our communities & connect all Arizonans.… https://t.co/7Dx8TW1P46" +03/30/2018,Politicians,@SenJohnMcCain,"RT @michaelcrow: #RioReimagined will be an ambitious, regional initiative that engages communities across the Valley and serves as a point…" +03/29/2018,Politicians,@SenJohnMcCain,Happy #DbacksOpeningDay! Here's hoping the @Dbacks have better luck fielding flies than @cindymccain & I did! https://t.co/rjcOD7DeUl +03/29/2018,Politicians,@SenJohnMcCain,Glad to see the concerns of #Phoenix residents addressed & this long-standing issue resolved. https://t.co/ksNp8qaRcf +03/28/2018,Politicians,@SenJohnMcCain,"Must-read from @insidedefense ""How GOP defense hawks delivered a massive military budget"" https://t.co/Kw2wmsF8Ir" +03/27/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""The #Russian expulsions are a good first step. But only a first step."" https://t.co/ksuglSKww4" +03/26/2018,Politicians,@SenJohnMcCain,RT @capgaznews: ICYMI: Former VP @JoeBiden accepted the @NavalAcademy Alumni Association’s Distinguished Graduate Award on behalf of @SenJo… +03/25/2018,Politicians,@SenJohnMcCain,"On the 100th anniversary of the Republic of Belarus declaring its independence, I stand with the Belarusian people… https://t.co/LLxF1hvk3a" +03/23/2018,Politicians,@SenJohnMcCain,Thank you @JoeBiden for always being a true friend. It’s a surreal honor after graduating 5th from the bottom of my… https://t.co/JrtRjI2dyk +03/23/2018,Politicians,@SenJohnMcCain,"Very proud the Senate passed my bill w/ @SenatorHeitkamp, named for Ashlynne Mike, to expand the AMBER Alert child… https://t.co/A2R6WSmEJ8" +03/23/2018,Politicians,@SenJohnMcCain,I sent a letter to CIA Director nominee Gina Haspel asking her to explain her role in the CIA’s so-called “enhanced… https://t.co/DD4Ch0X2wq +03/22/2018,Politicians,@SenJohnMcCain,Congrats to @MeghanMcCain & @TheView on being nominated for four #DaytimeEmmys - very proud! https://t.co/holA2QmTgG +03/22/2018,Politicians,@SenJohnMcCain,Congratulations #Kosovo! An important step forward for Kosovo’s European future. https://t.co/XahvAT52Xp +03/21/2018,Politicians,@SenJohnMcCain,RT @cindymccain: To all of our friends in the United States Senate thank you for the overwhelming passage of #SESTA today. By doing so you… +03/21/2018,Politicians,@SenJohnMcCain,"Thanks @senrobportman, @clairecmc, @SenBlumenthal, @JohnCornyn, @SenatorHeitkamp, our colleagues & especially my wi… https://t.co/JBNbhIk7nT" +03/21/2018,Politicians,@SenJohnMcCain,"The Senate's overwhelming, bipartisan passage of #SESTA is an imp't step forward in providing justice for victims o… https://t.co/OZMalq1jTr" +03/21/2018,Politicians,@SenJohnMcCain,"Saddened by the passing of Pete Peterson, a successful businessman, public servant & philanthropist dedicated to ra… https://t.co/SdRoR1iyBh" +03/21/2018,Politicians,@SenJohnMcCain,"#Nowruz greetings all those who celebrate in the US & around the world, including our friends in Afghanistan, Iraq,… https://t.co/8z20JqMlbQ" +03/21/2018,Politicians,@SenJohnMcCain,Today the Senate will vote on #SESTA to help #EndHumanTrafficking & provide justice to victims of this heinous crim… https://t.co/m80P1qFo4C +03/20/2018,Politicians,@SenJohnMcCain,#Nowruz Mobarak to the Iranian-American community and to all Iranians around the world yearning for peace and freed… https://t.co/VTGVN4jO6u +03/20/2018,Politicians,@SenJohnMcCain,An American president does not lead the Free World by congratulating dictators on winning sham elections. And by do… https://t.co/tdRTGcnH3h +03/19/2018,Politicians,@SenJohnMcCain,Sent letter w/ @SenatorShaheen urging USTR to support a full repeal of @USDA's wasteful & duplicative catfish inspe… https://t.co/CnSMVfwyr1 +03/18/2018,Politicians,@SenJohnMcCain,Special Counsel Mueller has served our country with honesty and integrity. It’s critical he be allowed to complete… https://t.co/ZDdah23bQh +03/18/2018,Politicians,@SenJohnMcCain,That #Putin had to work so hard to drive voter turnout shows the Russian people know his claim to power is a sham.… https://t.co/O46rTv9ANs +03/17/2018,Politicians,@SenJohnMcCain,Beautiful day on Oak Creek! #Arizona https://t.co/btWBvDkoOH +03/16/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the families of the service members killed in the helicopter crash in #Iraq. The Senate A… https://t.co/ArUu3cwK5X +03/16/2018,Politicians,@SenJohnMcCain,Deeply disturbed by @AP reports detailing child sexual assault on military bases. @SenJackReed & I sent a letter to… https://t.co/zyUR45bJXO +03/15/2018,Politicians,@SenJohnMcCain,The admin took an overdue step forward today in holding #Putin accountable for his brazen attack on our democracy.… https://t.co/OVO2sjbUEC +03/15/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the @USNavy aviators whose lives were lost in yesterday's F-18 crash. With our men & wome… https://t.co/sYaPvEo7oE +03/15/2018,Politicians,@SenJohnMcCain,"On the 7th anniversary of the war in #Syria, half a million people are dead, 11 million have been forced to flee th… https://t.co/FRUntZdEqf" +03/15/2018,Politicians,@SenJohnMcCain,Glad the Senate is taking up our bipartisan #SESTA thanks to the leadership of @senrobportman. It's long past time… https://t.co/WgqvoBpelJ +03/15/2018,Politicians,@SenJohnMcCain,"RT @SenateMajLdr: We're not only grateful that @SenJohnMcCain was welcomed home, we are especially grateful for his more than 30 years of s…" +03/15/2018,Politicians,@SenJohnMcCain,#Arizona will miss you Honey Badger - thanks for the memories! #AZCardinals https://t.co/fk4gltUg6V +03/14/2018,Politicians,@SenJohnMcCain,Finished my #MarchMadness bracket - very proud #Arizona has two teams competing this year! #BearDown #ForksUp https://t.co/TDPyT652s8 +03/14/2018,Politicians,@SenJohnMcCain,"RT @USNatArchives: Forty-five years ago today, @SenJohnMcCain was released by the North Vietnamese. He was held as a POW for over five year…" +03/14/2018,Politicians,@SenJohnMcCain,RT @NYTArchives: Today in 1973: Senator John McCain was one of the 108 prisoners of war released by North Vietnam. He had spent more than f… +03/14/2018,Politicians,@SenJohnMcCain,45 years ago today... https://t.co/jXhCFY9pK2 +03/14/2018,Politicians,@SenJohnMcCain,Important action by PM @theresa_may to hold #Putin accountable for the chemical attack in Salisbury. The United Sta… https://t.co/fsnVnAKSvn +03/14/2018,Politicians,@SenJohnMcCain,"RT @PacificForum: .@SenJohnMcCain: “Joe was a good man, an officer and a gentleman, and a brave defender of this nation. We will miss him.…" +03/13/2018,Politicians,@SenJohnMcCain,"Cindy & I are saddened by the passing of Admiral Joe Vasey, a WWII veteran, distinguished naval leader & my father'… https://t.co/QBnXnRbwfu" +03/13/2018,Politicians,@SenJohnMcCain,"As we hope for the recovery of Sergei & Yulia Skripal, we must recognize #Putin will not hesitate to engage in stat… https://t.co/PzPu6Tbk2b" +03/13/2018,Politicians,@SenJohnMcCain,The torture of detainees in U.S. custody during the last decade was one of the darkest chapters in American history… https://t.co/muvI5an1YX +03/09/2018,Politicians,@SenJohnMcCain,"Glad to see @USArmy decide to replace DCGS program w/ commercially available capability. After $3B spent, it was ti… https://t.co/Qnvp4bgCT0" +03/09/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""Trade Agreements Are the Answer to Trade Deficits"" https://t.co/kUqviTwdXA" +03/09/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Is #Putin’s poison squad back in Britain?"" https://t.co/NNM1cB2qxa" +03/09/2018,Politicians,@SenJohnMcCain,"Cindy & I are saddened by the passing of Joe Woods, one of Mesa’s most prominent businessmen & influential civic le… https://t.co/NxrDPeBYwA" +03/09/2018,Politicians,@SenJohnMcCain,"RT @nytopinion: We need to show equal resolve now to stop the violence and safeguard the rights and freedoms of all Burmese peoples, write…" +03/09/2018,Politicians,@SenJohnMcCain,I write in @nytimes today with filmmaker & humanitarian Angelina Jolie that America must take the lead in defending… https://t.co/vyzqF2ds8D +03/08/2018,Politicians,@SenJohnMcCain,"Congratulations to Jonathan Karp, @simonschuster's new president and publisher. We’ve done 7 books together and not… https://t.co/tPPLFB1kEu" +03/08/2018,Politicians,@SenJohnMcCain,President Trump’s decision to impose steep tariffs on steel & aluminum imports will not protect America. They will… https://t.co/daRpsebRA0 +03/08/2018,Politicians,@SenJohnMcCain,Must-read @WSJ: “How a Trade War Escalates” https://t.co/iuO4obDbQD +03/08/2018,Politicians,@SenJohnMcCain,Must-read @WSJ: “#Russia’s Trail of Poison” https://t.co/8yK7EWepJZ +03/08/2018,Politicians,@SenJohnMcCain,RT @SCClemons: My discussion at #BrusselsForum last year with @SenJohnMcCain & @dreynders. McCain's comments on Trump administration's back… +03/08/2018,Politicians,@SenJohnMcCain,RT @TheStudyofWar: Right now @SASCMajority @SASCDems are hearing from @US_EUCOM on #US defense strategy in #Europe. Read up on #Russia's gr… +03/08/2018,Politicians,@SenJohnMcCain,No US policy or strategy in #Europe can succeed without a strong #NATO alliance. We must not forget that America is… https://t.co/4x2YJ9NaxD +03/06/2018,Politicians,@SenJohnMcCain,Thank you @MayorStanton for your support of the Rio Salado project! https://t.co/5dLDIg0Zch +03/06/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""Former Russian Spy Mysteriously Falls Ill in Britain. Again."" https://t.co/yGinSfBI03" +03/05/2018,Politicians,@SenJohnMcCain,Thank you @MayorStanton & @CityofPhoenixAZ for leading an interagency initiative to combat military & veteran suici… https://t.co/oADcNjbKF1 +03/05/2018,Politicians,@SenJohnMcCain,Today’s historic port call by the USS Carl Vinson in #Vietnam underscores the enormous progress the United States &… https://t.co/CnHMTn286o +03/05/2018,Politicians,@SenJohnMcCain,"Important @NickKristof @nytimes read: ""I Saw a Genocide in Slow Motion: Myanmar continues to kill its #Rohingya, no… https://t.co/m2vEVoQtJk" +03/05/2018,Politicians,@SenJohnMcCain,"Must-read @hiattf @washingtonpost: ""Putin and Sissi are putting on elections. Why bother?"" https://t.co/EyJWECPTjG" +03/05/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""The U.N. human rights commissioner says ‘shame is in retreat.’ He’s right."" https://t.co/7BdI85oH01" +03/05/2018,Politicians,@SenJohnMcCain,"The work of @NEDemocracy @IRIglobal & @NDI to foster the infrastructure of democracy—freedom of the press, politica… https://t.co/kSsKRa62nN" +03/03/2018,Politicians,@SenJohnMcCain,Must-read @BretStephensNYT @nytopinion: “The Rise of Dictatorship Incorporated” https://t.co/LNeafqDUsF +03/03/2018,Politicians,@SenJohnMcCain,Beautiful warm day in #Sedona with @cindymccain! https://t.co/J2xBGcSuvf +03/02/2018,Politicians,@SenJohnMcCain,"The President’s sweeping tariffs will only serve to hurt American workers and consumers, and alienate us from our m… https://t.co/2uRWV2V04y" +02/28/2018,Politicians,@SenJohnMcCain,"Great watching @cindymccain & @MeghanMcCain on @TheView @ABC today! ""We need more compassion, we need more empathy,… https://t.co/of9ZjOy78o" +02/28/2018,Politicians,@SenJohnMcCain,Looking forward to watching @cindymccain & @MeghanMcCain on @TheView @ABC today - be sure to tune-in! +02/28/2018,Politicians,@SenJohnMcCain,Tonight the House passed our bill to provide justice to victims of online sex trafficking & hold all enablers of th… https://t.co/KcnL8ccNIc +02/27/2018,Politicians,@SenJohnMcCain,RT @SenatorHeitkamp: My bipartisan bill w/ @SenJohnMcCain to make AMBER Alerts more accessible to Indian Country passed the U.S. House yest… +02/27/2018,Politicians,@SenJohnMcCain,"3 yrs after Boris Nemtsov’s murder, the street outside the Russian Embassy was named in his honor. The greatest mem… https://t.co/Dzw8RM67Ht" +02/27/2018,Politicians,@SenJohnMcCain,"Last night, the House passed my bill w/ @SenatorHeitkamp named for Ashlynne Mike, an 11 yr old Navajo girl who was… https://t.co/VUCFxjQAGC" +02/27/2018,Politicians,@SenJohnMcCain,#Kremlin trolls are at it again! https://t.co/KaZx3mQMu6 +02/27/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""U.N. Links #NorthKorea to #Syria’s Chemical Weapon Program"" https://t.co/9t15twpui3" +02/27/2018,Politicians,@SenJohnMcCain,I joined @SenatorWicker yesterday in cosponsoring a bill to help @USNavy restore its surface force readiness so we… https://t.co/t8QdjMrfuQ +02/26/2018,Politicians,@SenJohnMcCain,"America must fight for universal values, rule of law, open commerce & respect for sovereignty. If we don’t, who wil… https://t.co/ZvHzXiroBa" +02/25/2018,Politicians,@SenJohnMcCain,RT @cindymccain: I strongly recommend the book Pear Shaped by @AdamBBlain . It is a funny and real book about brain cancer. @SenJohnMcCain… +02/25/2018,Politicians,@SenJohnMcCain,"Important @washingtonpost read: ""#Burma is bulldozing history and memory"" https://t.co/0zaFzavbRV" +02/24/2018,Politicians,@SenJohnMcCain,Must-read @washingtonpost: “A death in an Iranian prison is one more shocking sign of repression” https://t.co/cIV4dRxvTS +02/24/2018,Politicians,@SenJohnMcCain,"Cindy & I enjoyed a wonderful visit yesterday with our friend, @AZCardinals legend @LarryFitzgerald. We're grateful… https://t.co/CNz2g7R8Ss" +06/27/2018,Politicians,@GeorgeHWBush,"Happy to congratulate @WalkerStapleton on a terrific primary victory last night, and to join him in thanking those… https://t.co/y0fWf5lHep" +06/25/2018,Politicians,@GeorgeHWBush,"A great joy to welcome home the newest member of our family, ""Sully,"" a beautiful -- and beautifully trained -- lab… https://t.co/uEXR16b7gs" +06/25/2018,Politicians,@GeorgeHWBush,"Special visit today with a great friend -- and now, a best-selling author. Luckily I had a freshly laundered pair o… https://t.co/rch4gT1low" +06/18/2018,Politicians,@GeorgeHWBush,"Proud of Natalye Paquin and @nmbush opening the @PointsofLight conference with a wonderful message: ""We are united… https://t.co/pZIBHsMtrE" +06/08/2018,Politicians,@GeorgeHWBush,Sending our gratitude and family love on this special day to all who are helping carry forward the selfless work of… https://t.co/PN3B8cdBvg +06/01/2018,Politicians,@GeorgeHWBush,Enjoying a great book and a wonderful walk down memory lane this morning. Yet another reminder of just how lucky I… https://t.co/4Cb7z5wY7A +05/28/2018,Politicians,@GeorgeHWBush,"Very much regret missing the Memorial Day parade today in Kennebunkport, and am forever grateful not only to those… https://t.co/5UgoXNUk5w" +05/26/2018,Politicians,@GeorgeHWBush,"Delighted to join the veterans, including my dear friend Gen. Brent Scowcroft, at the @AmericanLegion Post 159 mont… https://t.co/8i8nv2i8Wo" +05/20/2018,Politicians,@GeorgeHWBush,Finally had the chance yesterday to catch some new friends in action @HamiltonMusical -- properly attired in Hamilt… https://t.co/BnkkPCA1ea +05/17/2018,Politicians,@GeorgeHWBush,Gina Haspel has selflessly and courageously devoted herself to the service of her country. I have great confidence… https://t.co/3jZH6rlc2M +05/15/2018,Politicians,@GeorgeHWBush,A complete joy to welcome the “HamFam” — the cast and crew of @HamiltonMusical — to our Houston office for a specia… https://t.co/bI9CIgaT7G +05/03/2018,Politicians,@GeorgeHWBush,"Quite moved by this announcement by @MethodistHosp. The atrium is beautiful, but recent developments notwithstandin… https://t.co/GmRIS1qjCy" +04/25/2018,Politicians,@GeorgeHWBush,"My family and I thank Mayor @SylvesterTurner, his terrific staff, @houstonpolice, @METROHouston, @SBCHouston,… https://t.co/xLtIyehZDd" +04/07/2018,Politicians,@GeorgeHWBush,Delighted to join the 43rd President and Jim Baker in welcoming the Saudi Crown Prince His Royal Highness Prince Mo… https://t.co/c6XV0L8sv4 +03/22/2018,Politicians,@GeorgeHWBush,Yesterday I was inspired by my friend John Cronin to wear these beauties from @JohnsCrazySocks marking World Down S… https://t.co/p5L7JJzYLd +03/19/2018,Politicians,@GeorgeHWBush,"Wishing a very happy 93rd birthday today to one of the noblest, most selfless public servants in the history of the… https://t.co/dqwEBpV82h" +03/15/2018,Politicians,@GeorgeHWBush,"Respectfully differing with @BarackObama so out on a limb here, but I have a gut feeling my @TAMU @aggiembk #Aggies… https://t.co/x0EB6u1P1R" +03/13/2018,Politicians,@GeorgeHWBush,The First Lady of Family Literacy and I are proud to support this wonderful initiative by @Disney and @FirstBook to… https://t.co/hUodj6YwHh +03/09/2018,Politicians,@GeorgeHWBush,Barbara and I are even more optimistic about our country's future after meeting the remarkable men and women in thi… https://t.co/NSCWsCHz5Q +03/02/2018,Politicians,@GeorgeHWBush,Encouraging my fellow Texans to do your civic duty by early voting today. Election Day is next Tuesday the 6th. Whi… https://t.co/ey7fswN99a +02/26/2018,Politicians,@GeorgeHWBush,"Wonderful visit today with Jimmy Baker and our respected former colleague, Carlos Salinas of Mexico -- a good frien… https://t.co/MbtULWkfWD" +02/21/2018,Politicians,@GeorgeHWBush,"Barbara and I couldn’t be happier seeing each of our grandkids finding ways to help others. Today, I had the specia… https://t.co/ndyPn4xHMS" +02/06/2018,Politicians,@GeorgeHWBush,The @NFL chose well in naming our inspiring friend @JJWatt as Man of the Year. Barbara and I also salute… https://t.co/48U8RorZm4 +01/24/2018,Politicians,@GeorgeHWBush,"Delighted to join my distinguished colleagues in thanking each donor who, out of the goodness in their hearts, help… https://t.co/MbDyOcmxMK" +11/28/2017,Politicians,@GeorgeHWBush,"In my case, one of the few good things about becoming the oldest president -- or anything -- is seeing my friend Pr… https://t.co/CorFn3W362" +11/20/2017,Politicians,@GeorgeHWBush,"Wonderful visit today with 104 year-old Lt. Jim Downing, USN, Ret., the oldest living survivor of Pearl Harbor. Giv… https://t.co/lebv9VeUrt" +11/02/2017,Politicians,@GeorgeHWBush,"Barbara and I join in congratulating the @Astros organization for their incredible season. They inspired, united and lifted our entire city." +10/23/2017,Politicians,@GeorgeHWBush,"Not sure abt 39, @BillClinton, 43 and @BarackObama, but I would have sung w @ladygaga if asked. Thanks to all for supporting @AmericaAppeal." +10/17/2017,Politicians,@GeorgeHWBush,Saluting a genuine American hero @SenJohnMcCain on receiving the #LibertyMedal from @ConstitutionCtr for his singular life of service. +10/06/2017,Politicians,@GeorgeHWBush,Our sincere thanks to @StephenAtHome for his kind donation to #OneAmericaAppeal. Here are two more for the file. No… https://t.co/OhEZmZbWq4 +09/27/2017,Politicians,@GeorgeHWBush,"Barbara and I loved meeting a few of the patriots and service animals featured in a wonderful new book, ""Vets and P… https://t.co/MAbFP36Z1q" +09/26/2017,Politicians,@GeorgeHWBush,Gov. @RicardoRossello reports Puerto Rico is facing an urgent situation. We must help. Private citizens can through… https://t.co/hb3SQF64zt +09/14/2017,Politicians,@GeorgeHWBush,Artist John Palmer captured the spirit of #Harvey response in Houston. Proceeds to @PointsofLight long-term efforts. https://t.co/kTXxJ0fgwR +09/10/2017,Politicians,@GeorgeHWBush,"Across the U.S., Americans have answered the call to help with hurricane recovery. Praying for all Floridians. #Irma https://t.co/dJPYU495RE" +09/08/2017,Politicians,@GeorgeHWBush,"Pleased to join these friends, distinguished leaders helping our fellow Americans recovering from #Harvey. Join us: https://t.co/JHlRaByt2M" +09/07/2017,Politicians,@GeorgeHWBush,"As former presidents, as citizens, we wanted to help our fellow Americans begin to recover. https://t.co/qxz68TK8Sk" +08/29/2017,Politicians,@GeorgeHWBush,Very proud of our friend @JJWatt and the caring citizens joining to keep #HoustonStrong. Let's keep it going at: https://t.co/J4S0dlsTjn +08/21/2017,Politicians,@GeorgeHWBush,Four generations of family taking in the partial eclipse today. Already looking forward to the next one in Texas in… https://t.co/bEtYcOyzU3 +07/26/2017,Politicians,@GeorgeHWBush,Joyful reunion with a great friend and a wonderful public servant. Lucky to have had Dan by my side during 4 years… https://t.co/7cx6kjteDf +07/17/2017,Politicians,@GeorgeHWBush,Very pleased @PointsofLight has named a dynamic leader of Natalye Paquin's broad experience and skills as CEO: https://t.co/U0fSOvqaJa +06/13/2017,Politicians,@GeorgeHWBush,What better place for the Gampster to have birthday emails read by a truly wonderful granddaughter in law? Thanks t… https://t.co/VJl4s3rHK8 +06/09/2017,Politicians,@GeorgeHWBush,"Congratulating @YaleBaseball for terrific season: Ivy League champs, school record for wins, 1st multi-win trip to… https://t.co/Tci4WYLg6A" +06/08/2017,Politicians,@GeorgeHWBush,"Happiest of birthdays to Barbara Pierce of Rye, NY. I'm still the luckiest guy in the world. https://t.co/qsUHtyBIez" +05/23/2017,Politicians,@GeorgeHWBush,Counting our blessings after a weekend with dear friends like John Major and the amazing @SingingCadets. So gratefu… https://t.co/pves6zgMtc +05/18/2017,Politicians,@GeorgeHWBush,"He wasn't perfect, but Roger Ailes was my friend & I loved him. Not sure I would have been President w/o his great talent, loyal help. RIP." +05/15/2017,Politicians,@GeorgeHWBush,"Congrats to Kylee McGrane, the 6000th #DailyPointofLight, who helps hospitalized kids experience a Moment of Magic: https://t.co/TTCsCBhYTp" +05/04/2017,Politicians,@GeorgeHWBush,Barbara and I join in saluting @DaveWardABC13. Could not be prouder of him and his singular career @abc13houston. H… https://t.co/NFja9mG1Qf +04/20/2017,Politicians,@GeorgeHWBush,"Big morale boost from a high level delegation. No father has ever been more blessed, or prouder. https://t.co/ekX4VyG2aO" +03/06/2017,Politicians,@GeorgeHWBush,28 yrs ago today I proudly watched Barbara create @BarbaraBushFdn. So many lives changed through #literacy since th… https://t.co/OBspTczcal +02/01/2017,Politicians,@GeorgeHWBush,Getting fired up for Sunday and #SuperBowl. https://t.co/zlXmsZJrTM +01/19/2017,Politicians,@GeorgeHWBush,"Hearty congrats to a good friend and great player, Jeff Bagwell, on his well-deserved induction into @baseballhall. https://t.co/PvRb7UOX89" +12/09/2016,Politicians,@GeorgeHWBush,Sino-US bilateral relationship is critical to peace in 21st Century. President-elect Trump is wise to name @TerryBrandstad as Ambassador. +11/28/2016,Politicians,@GeorgeHWBush,"The ageless @BarbraStreisand & James Brolin before her fantastic Houston show. ""Babs"" was more gracious about my si… https://t.co/VqBl4MjxGu" +11/24/2016,Politicians,@GeorgeHWBush,"#Thankful most of all for the blessings of family. From ours to yours, have a safe and very Happy Thanksgiving. https://t.co/xQz97niRkZ" +11/23/2016,Politicians,@GeorgeHWBush,"Of course, Barbara and I feel blessed and #thankful to live in the greatest nation on earth and for the selfless pa… https://t.co/ler3396hdd" +11/22/2016,Politicians,@GeorgeHWBush,Also #thankful for mentors like Coach Dave Colschen who teach respect and character are more important than winning… https://t.co/q1fLgylLPL +11/21/2016,Politicians,@GeorgeHWBush,"Incredibly #thankful that my friend Patrick, the courageous young man (with hair!) to my left, is feeling and doing… https://t.co/kxFgz6EuQt" +11/09/2016,Politicians,@GeorgeHWBush,"Barbara and I congratulate @realDonaldTrump, wish him well as he guides America forward as our next President. His family is in our prayers." +10/07/2016,Politicians,@GeorgeHWBush,"Barbara and I salute @AmeriCorps for enlisting their 1,000,000th volunteer to the service movement that is so essential to America’s future." +10/03/2016,Politicians,@GeorgeHWBush,Hearty congrats to our friend Capt @Love3d and all @RyderCupUSA for a gritty win in the 41st @rydercup. Classy competitors on both sides. +09/26/2016,Politicians,@GeorgeHWBush,"Barbara and I mourn The King, Arnie, the people’s champion. He brought golf to millions by his daring and caring. We miss him already." +09/24/2016,Politicians,@GeorgeHWBush,"Barbara and I regret missing the dedication of @NMAAHC, but we join our fellow Americans in celebrating this important day for our nation." +08/09/2016,Politicians,@GeorgeHWBush,"The superb effort, class shown by @TeamUSA in Rio @Olympics truly inspiring. We're watching, proud of them all. #USA https://t.co/B9QYNjiIXd" +06/25/2016,Politicians,@GeorgeHWBush,"Proud of young Cooper's interest in healthy eating. His declared love of broccoli is genuine, if also unpersuasive. https://t.co/r5wHKvigDb" +01/30/2016,Politicians,@GeorgeHWBush,Moving return to Langley and Memorial Wall today. The stars represent @CIA agents whose heroism is unknown to most. https://t.co/ZPduGNdsXj +01/28/2016,Politicians,@GeorgeHWBush,Proud to join those remembering the courageous crew of Challenger shuttle in this special @PopMech oral history: https://t.co/I9r75s4xQd +10/21/2015,Politicians,@GeorgeHWBush,Grateful to each @PointsofLight attendee in Houston for your commitment to service. The world is a brighter place b/c of you. #ServiceUnites +08/20/2015,Politicians,@GeorgeHWBush,"I spoke with President Carter to wish him well, and he sounded strong. Bar and I are wishing him the very best as he fights the good fight." +08/10/2015,Politicians,@GeorgeHWBush,"Congratulating Tyler Jeffries and Lauren Lilly on their engagement, and wishing them a lifetime of joy together. http://t.co/W7hjX3dgWL" +08/10/2015,Politicians,@GeorgeHWBush,"Inspiring day hosting wounded veterans and their mothers. Forever grateful for their sacrifice, service to country. http://t.co/zNh9eZGRiF" +07/30/2015,Politicians,@GeorgeHWBush,Who knew jumping out of planes was safer than getting out of bed? Thanks to all for your kind get-well messages. http://t.co/T9FmhCqyme +06/16/2015,Politicians,@GeorgeHWBush,Yesterday the country saw a great leader and good man point the way to a better future. I am 1 of the 2 proudest parents in America today. +06/11/2015,Politicians,@GeorgeHWBush,"Very grateful to our selfless, dear friends @reba @michaelwsmith and @amygrant for making Barbara's 90th so special. http://t.co/OLHV603kBh" +04/29/2015,Politicians,@GeorgeHWBush,Proud to endorse Thumbs Up program strengthening Houston's police-community ties. Need more great efforts like this. http://t.co/rN7JdRmW52 +04/23/2015,Politicians,@GeorgeHWBush,"Barbara and I have great respect for, and confidence in, the men and women of @SecretService. That respect and confidence has never waned." +04/21/2015,Politicians,@GeorgeHWBush,"Enjoyed my visit with Tom Ridge, whose ongoing leadership on issues affecting the disabled makes him a hero of mine. http://t.co/C7heAmTxw9" +04/07/2015,Politicians,@GeorgeHWBush,Very proud of our friend Coach K and the entire @Duke_MBB team on winning the national championship. Great win against a tough Badger team. +03/25/2015,Politicians,@GeorgeHWBush,Happy @OakRidgeBoys just selected for Country Music Hall of Fame. Great friends who have always made great music! http://t.co/sLHvxPFTIl +02/11/2015,Politicians,@GeorgeHWBush,Happy bday @JebBush! (His table manners have improved dramatically since this early outing.) https://t.co/7WNfy5SiXf http://t.co/EROuf1Pd1M +01/30/2015,Politicians,@GeorgeHWBush,"Sending best wishes and respect to a true friend @MittRomney. We need more decent, selfless, capable people like him in public service." +01/06/2015,Politicians,@GeorgeHWBush,"Seventy years ago this very day, Barbara Pierce of Rye, NY made me the happiest, and luckiest, man on earth. http://t.co/rgZqpL9XfE" +11/24/2014,Politicians,@GeorgeHWBush,"Celebrating 25th anniv of Daily Points of Light Award today, and saluting Dr Patricia Wolff for her selfless work in Haiti. @pointsoflight" +10/30/2014,Politicians,@GeorgeHWBush,"Saluting the home-bound crew of the @USN_BushCVN77 for their able, brave service during their second deployment. God bless all who serve." +10/28/2014,Politicians,@GeorgeHWBush,"With one week until Election Day, ditching the socks and pulling hard for a good man -- @georgepbush. #EarlyVoting http://t.co/eAoaVswgtB" +09/15/2014,Politicians,@GeorgeHWBush,"Barbara and I enjoyed meeting David Perdue, a good man with an impressive background. I am proud to endorse him in the US Senate race in GA." +08/30/2014,Politicians,@GeorgeHWBush,"RT @WWIIMemorial: #TBT @georgepbush visiting grandfather @GeorgeHWBush at White House. George P. to speak at #WWII Memorial, 9/2 @ 9am. htt…" +08/09/2014,Politicians,@GeorgeHWBush,"Proud of and praying for the able, brave men and women on board the @USN_BushCVN77 as they carry out their mission." +06/12/2014,Politicians,@GeorgeHWBush,"It's a wonderful day in Maine -- in fact, nice enough for a parachute jump." +05/09/2014,Politicians,@GeorgeHWBush,Congratulations to the @BushSchool Class of 2014. Very proud of these public servants and all who taught them. http://t.co/R6je5LtHf7 +04/07/2014,Politicians,@GeorgeHWBush,Excited PM @David_Cameron has launched UK #pointsoflight. I join him in saluting Britain's volunteers who lift lives. http://t.co/sY1IBI5fHP +03/27/2014,Politicians,@GeorgeHWBush,With @JManziel2 before his pro day @TAMU. I could have used this helmet in my previous day job. http://t.co/m0QvMR1GHe +03/21/2014,Politicians,@GeorgeHWBush,Pulling hard for my good friend Coach K and the @DukeBasketball Blue Devils today. Bracket otherwise in shambles. #MarchMadness +03/06/2014,Politicians,@GeorgeHWBush,"@BradPaisley Thank you, Brad, for teaching me what a ""Selfie"" is. You and @TheEllenShow made it look so easy. #Selfie’ing" +03/05/2014,Politicians,@GeorgeHWBush,"We couldn't be prouder of @georgepbush tonight. A good man and hard worker, he'll do a great job if elected the next TX Land Commissioner." +02/12/2014,Politicians,@GeorgeHWBush,It doesn’t matter if he won a medal; @Shaun_White exemplified the Olympic spirit. I’m proud of him and all our Olympians. #TeamUSA +01/24/2014,Politicians,@GeorgeHWBush,Barbara and I are grateful to all at #BushReunion. We had a good team that served with honor. So have fun and don't steal the silverware! +01/21/2014,Politicians,@GeorgeHWBush,Went to Duke to honor Coach K for his leadership of @cchangetogether. He is the right leader to help us beat cancer. http://t.co/FovMLrvk0d +01/20/2014,Politicians,@GeorgeHWBush,"25 years ago this hour, the people placed their hopes and trust in our team. Still hard to believe I had the honor to serve as President." +01/16/2014,Politicians,@GeorgeHWBush,Becoming an honorary member of the @BlueAngels in Houston last week. God bless all who serve. http://t.co/oo4GLJNuQQ +01/15/2014,Politicians,@GeorgeHWBush,Properly attired for my meeting with new @HoustonTexans head coach Bill O'Brien. #socksupdate http://t.co/jHMO4vcm9i +01/13/2014,Politicians,@GeorgeHWBush,Delighted to see my friend Bob McNair and meet new @HoustonTexans head coach Bill O'Brien & his lovely wife Colleen. http://t.co/iGEJDVvuRK +01/02/2014,Politicians,@GeorgeHWBush,Barbara thanks @BarackObama & @billclinton for their get-well wishes and is heeding their advice. Doesnt happen w every President she knows! +12/12/2013,Politicians,@GeorgeHWBush,"Incredible photo of the Blue Angels and CVN-77. God bless all who serve our country in uniform, and their families. http://t.co/n03nZSE7jW" +12/10/2013,Politicians,@GeorgeHWBush,"Barbara and I wish we could have joined the U.S. delegation honoring President Mandela today. He, and his countrymen, are in our prayers." +06/29/2018,Politicians,@TheBushCenter,"RT @knightfdn: Americans overwhelmingly support the ideals of democracy, but a majority view democracy in the U.S. as weak and getting weak…" +06/29/2018,Politicians,@TheBushCenter,"""Approximately 50 percent of veterans respond well to the best available [PTS] treatments - cognitive processing th… https://t.co/mohEjzB4f1" +06/29/2018,Politicians,@TheBushCenter,"""The American public has not soured on promoting democracy or forgotten that the United States benefits when there… https://t.co/mNyJ4gTJoD" +06/28/2018,Politicians,@TheBushCenter,“The experience of a lifetime.” - Sergeant Trevor Allenby on his experience in the Warrior Open. Check out a full r… https://t.co/nUyOxFL3uz +06/28/2018,Politicians,@TheBushCenter,RT @fpoplady: Democracy Project poll commissioned by @pennbiden @freedomhouse & @thebushcenter suggests groups historically underserved by… +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Read @hollykuzmich @ablinken @abramowitz on the Democrcy Project - Restoring American democracy a challenge that is with… +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Talking with @kenrudin about the Democracy Project poll results - available here https://t.co/bwr1JTsrW4. Important ini… +06/28/2018,Politicians,@TheBushCenter,"Did you catch the @rangers dot race last night? Surprise! Disguised as mascots were Bush Center CEO Ken Hersh, Wyat… https://t.co/gV0mNcW55f" +06/28/2018,Politicians,@TheBushCenter,"RT @PennBiden: ""Although the frustrations Americans share are not new, our collective failure to address them more effectively increasingly…" +06/28/2018,Politicians,@TheBushCenter,"RT @WLindsayLloyd: Fascinating look on @CityLab at how North Korean escapees acclimate to freedom. @TheBushCenter, we're helping them get…" +06/28/2018,Politicians,@TheBushCenter,"""A pessimist might use these findings to talk up despair, but the optimist within us has a different takeaway."" Che… https://t.co/GZID3V0o2o" +06/28/2018,Politicians,@TheBushCenter,RT @kenrudin: Podcast! @WLindsayLloyd of the George W. Bush Institute on growing fears for the future of democracy in the U.S. https://t.… +06/28/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? Did family separation end? @lvtcollins ans… https://t.co/9Cc2MxmRkj +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Today's @DallasNews on the Supreme Court's decision on the travel ban cites The Democracy Project's findings. https://t.… +06/28/2018,Politicians,@TheBushCenter,#Team43 member @RandyNantz on throwing out the first pitch at @rangers US Special Operations Command Night https://t.co/OXjcilonrB +06/28/2018,Politicians,@TheBushCenter,#Team43 member @randynantz stands with @Bannyrooster28 during the National Anthem at the @rangers game after throwi… https://t.co/WBoBjVDgjW +06/27/2018,Politicians,@TheBushCenter,"""People are enthusiastic about change. Large majorities support improving civic education and creating incentives f… https://t.co/QZT44ImIKl" +06/27/2018,Politicians,@TheBushCenter,"""Americans agree living in a democracy is important, but there is broad agreement that our system isn’t working as… https://t.co/FNDtk1u8pU" +06/27/2018,Politicians,@TheBushCenter,What is your top concern about US #democracytoday? See if you agree with the majority of Americans: https://t.co/hMbxRcYYBR +06/27/2018,Politicians,@TheBushCenter,"RT @PennBiden: Have you checked out https://t.co/q5XGE4a7po yet? +Learn more about Americans top concerns about their #DemocracyToday in a…" +06/27/2018,Politicians,@TheBushCenter,"#ICYMI, check out a full photo recap of last night's Engage, presented by @HighlandCapMgmt, ""The Art & Leadership o… https://t.co/7HgI08l6st" +06/27/2018,Politicians,@TheBushCenter,The majority of Americans are encouraged by observations of increased civic engagement. Check out the rest of the r… https://t.co/WaqYs6UzYP +06/27/2018,Politicians,@TheBushCenter,"Continue last night’s conversation about ""The British Bulldog"" and listen to Episode 10 of ""Ladies,First"" to learn… https://t.co/bsoZlNv0fj" +06/27/2018,Politicians,@TheBushCenter,"“It’s an amazing period — to think about England battling Adolf Hitler, and the United States being tepid to engage… https://t.co/SAOwuiXIhW" +06/27/2018,Politicians,@TheBushCenter,“I’m in history because I believe it is essential to where we are now. What interests me is looking at the roots of… https://t.co/BXaCk0Fxxu +06/27/2018,Politicians,@TheBushCenter,"“I think what Clementine did, was what very few could do, and that was to manage Winston Churchill… She could also… https://t.co/ESDhyUhgL9" +06/27/2018,Politicians,@TheBushCenter,"“We now think of Churchill as a great orator, but he was not first and foremost a speaker, he was first and foremos… https://t.co/y1s2oesPwy" +06/27/2018,Politicians,@TheBushCenter,"“Churchill put a huge amount of effort into writing letters, but he also believed, like Roosevelt, to get up close… https://t.co/JHxEgFo9SW" +06/27/2018,Politicians,@TheBushCenter,“I think this painting captures an aspect of Churchill that is not in any other paintings I have mentioned… His sen… https://t.co/iSceXByo4q +06/27/2018,Politicians,@TheBushCenter,"“What you bring to the job, what you learn on the job, and what you have to live in with your conscious on the job.… https://t.co/OFxXFF7Te0" +06/27/2018,Politicians,@TheBushCenter,“I would argue that the two are inseparable (art and leadership). They are two complimentary parts of his great and… https://t.co/YdlSyFDqjz +06/27/2018,Politicians,@TheBushCenter,“I really enjoyed painting Churchill - I painted him with a lot of affection. I thought about the character of the… https://t.co/Dixwidvtnz +06/26/2018,Politicians,@TheBushCenter,"#LIVE: Tune in now to https://t.co/FDxzxAlw0R for ""Engage: The Art & Leadership of Winston Churchill,"" presented by… https://t.co/TUrdYTnumT" +06/26/2018,Politicians,@TheBushCenter,"Tune in to https://t.co/FDxzxAlw0R in one hour to watch Engage at the Bush Center, presented by @HighlandCapMgmt, ""… https://t.co/4pzyDkh2OZ" +06/26/2018,Politicians,@TheBushCenter,ICYMI: @AriFleischer and @DanaPerino discuss The Democracy Project on @dailybriefing: https://t.co/kkjnMXHzaO #democracytoday +06/26/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? What is the Flores Settlement? Did family… https://t.co/W5SlN9F2dc +06/26/2018,Politicians,@TheBushCenter,"For Americans to become more responsible and engaged citizens, we must start by helping our children develop civic… https://t.co/DjqnYO89p7" +06/26/2018,Politicians,@TheBushCenter,"RT @PennBiden: Take the time today to dig into the findings of The Democracy Project--a #bipartisan report from @PennBiden, @freedomhouse a…" +06/26/2018,Politicians,@TheBushCenter,"When it comes to our #democracytoday, Americans are motivated by calls to service and civic engagement. https://t.co/ogJ76OXL5e" +06/26/2018,Politicians,@TheBushCenter,“There is a good reason to be proud of biliteracy.” - @Bill_McKenzie in this week’s @dallasnews on the importance o… https://t.co/2U04Qf53ec +06/26/2018,Politicians,@TheBushCenter,Your #immigration questions answered: Read @lvtcollins' breakdown of what’s going on at the border. https://t.co/5ODHwSmq4Y +06/26/2018,Politicians,@TheBushCenter,"Today, North America is the most economically competitive region in the world. Explore the data here:… https://t.co/rSZi0NURL7" +06/26/2018,Politicians,@TheBushCenter,The jobs of 2.8 million Americans are dependent upon our trade relationship with our North American neighbors.… https://t.co/WcHJckKuBq +06/26/2018,Politicians,@TheBushCenter,RT @demdigest: Analysis | The Daily 202: A poll commissioned by Bush and Biden shows Americans losing confidence in democracy https://t.co/… +06/26/2018,Politicians,@TheBushCenter,Trade increases the number and variety of lower priced goods available for middle class consumers. Workers in trade… https://t.co/ZNdLxphc5V +06/26/2018,Politicians,@TheBushCenter,The North America Competitiveness Scorecard is a tool to compare America's competitive position relative to other c… https://t.co/qEKH31taii +06/26/2018,Politicians,@TheBushCenter,"A large majority of Americans consider it important to live in a live in a country that is governed democratically,… https://t.co/LjdRFheLSi" +06/26/2018,Politicians,@TheBushCenter,The Democracy Project sheds new light on American attitudes toward the promotion of democracy and human rights abro… https://t.co/fQNJOJQTTg +06/26/2018,Politicians,@TheBushCenter,"Economic integration among the U.S., Canada, and Mexico strengthens the U.S. economy and creates opportunity across… https://t.co/C9rV6YWaIp" +06/26/2018,Politicians,@TheBushCenter,NAFTA offers a solid foundation and frame on which to build-on. Here are five steps to improve North American trade… https://t.co/PltQVAD6ky +06/26/2018,Politicians,@TheBushCenter,"RT @PennBiden: So proud to be part of this work, along with our partners at @freedomhouse and @TheBushCenter, exploring Americans' attitude…" +06/26/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Analysis | The Daily 202: A poll commissioned by Bush and Biden shows Americans losing confidence in democracy https://t… +06/26/2018,Politicians,@TheBushCenter,RT @freedomhouse: BREAKING: #Bipartisan poll released today by @FreedomHouse @TheBushCenter @PennBiden shows Americans’ top concerns for st… +06/26/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? What is the Flores Settlement? Did family… https://t.co/R3NUBaQxMb +06/26/2018,Politicians,@TheBushCenter,"NEW TODAY: @TheBushCenter, @PennBiden, and @freedomhouse released a survey of American attitudes on our… https://t.co/a3C0z0G8Of" +06/25/2018,Politicians,@TheBushCenter,RT @annewicks: Trying to understand the policy/law in place at the border? Check out my @TheBushCenter colleague @lvtcollins primer on the… +06/25/2018,Politicians,@TheBushCenter,Your #immigration questions answered: Read @lvtcollins breakdown of what’s going on at the border. https://t.co/BbIFAfTbMv +06/25/2018,Politicians,@TheBushCenter,"""By taxing #trade and reducing the amount of trade, we are actually reducing our own ability to grow."" -… https://t.co/NBVYkksYEs" +06/25/2018,Politicians,@TheBushCenter,RT @TheFundChicago: Community of Practice participants just finished a very productive session led by @annewicks and @evamyrickchiang from… +06/25/2018,Politicians,@TheBushCenter,RT @TheFundChicago: A big THANK YOU to @MNComeback @JaxPEF @SCORE4Schools @Dan_Berkowitz @wk_kellogg_fdn @BCLynchAcademy @themindtrust @hol… +06/25/2018,Politicians,@TheBushCenter,"RT @IVMFSyracuseU: Amy Taft, IVMF curriculum and learning manager, was selected to participate in the @TheBushCenter's Stand-To Veteran Lea…" +06/23/2018,Politicians,@TheBushCenter,Who was the woman behind the “British Bulldog?” Listen now to @yankeebean and @soniapurnell https://t.co/ZWctcjWT43 +06/22/2018,Politicians,@TheBushCenter,"Sir Winston Churchill was one of the most well-known world leaders, but few realize that it was his wife, Clementin… https://t.co/CvdfTTJKjD" +06/22/2018,Politicians,@TheBushCenter,"Countries don't trade, people trade. As a result, #Tariffs increase the prices of consumer goods like cell phones,… https://t.co/TRjm4yQysy" +06/22/2018,Politicians,@TheBushCenter,Media Advisory: Experts to Explore “The Art & Leadership of Winston Churchill” on June 26 Engage at the Bush Center… https://t.co/ARPMEFdCuJ +06/22/2018,Politicians,@TheBushCenter,What is @ChiefDavidBrown's take on #leadership? Find out here: https://t.co/id4Om2AmzN +06/22/2018,Politicians,@TheBushCenter,"A recent report from @politico and @Prudential, along with recent data, point to the same problem: the median net w… https://t.co/w0u6BaSubb" +06/22/2018,Politicians,@TheBushCenter,The lady who empowered and tamed the “British Bulldog” – Clementine Churchill helped shape her husband’s political… https://t.co/Pe4LVQ64lN +06/22/2018,Politicians,@TheBushCenter,Statement by President George W. Bush on Charles Krauthammer https://t.co/jo2KhAjndB https://t.co/zmEwF58rXn +06/21/2018,Politicians,@TheBushCenter,"As seen in last year’s @TheAcademy winning movie @DarkestHour, Sir Winston Churchill’s memorable quotes & anecdotes… https://t.co/n2afBcEPWd" +06/21/2018,Politicians,@TheBushCenter,"""Americans ought to know more about one of our closest allies and a longtime adversary that might perhaps become a… https://t.co/HyP0WLdTTM" +06/21/2018,Politicians,@TheBushCenter,"Sir Winston Churchill was one of the most well-known world leaders, but few realize that it was his wife, Clementin… https://t.co/tC0EKQcLYO" +06/21/2018,Politicians,@TheBushCenter,"As first lady, @laurawbush had a strong influence on the global human rights agenda, including her advocacy for Afg… https://t.co/QX0feHdTQt" +06/21/2018,Politicians,@TheBushCenter,"Learn why Americans may soon be paying more for consumer goods like cars, dishwashers, and cell phones. #Tariffs… https://t.co/0bfcyv5g45" +06/21/2018,Politicians,@TheBushCenter,"""Student debt now tops $1.4 trillion, causing young people to defer the “American dream”— marriage, children, home… https://t.co/49W9zPL8BM" +06/21/2018,Politicians,@TheBushCenter,"""It really is a priceless thing to be involved in an organization in any way, whether it’s military, policing, or e… https://t.co/rss48hVTxe" +06/20/2018,Politicians,@TheBushCenter,From timely takes by policy experts on world news to recommended #reading lists and #podcasts… don’t miss the lates… https://t.co/eZW42tDL1K +06/20/2018,Politicians,@TheBushCenter,A recent report from @politico and @Prudential notes that #millennials are further behind in accumulating savings t… https://t.co/AlMGCGRFhc +06/20/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/KKL9hgruI3" +06/20/2018,Politicians,@TheBushCenter,"For most Americans, Korea – North and South – is still not well known. @WLindsayLloyd suggests 5 books that offer i… https://t.co/vjktMqwtmp" +06/20/2018,Politicians,@TheBushCenter,"""The explosive growth in student #debt, among other challenges, is causing #millennials to under-save, which presen… https://t.co/1DD8AuUk8l" +06/20/2018,Politicians,@TheBushCenter,RT @CSISKoreaChair: The Bookshelf: Five Books to Understand Korea @WLindsayLloyd @TheBushCenter https://t.co/s5pRNiHPHZ +06/20/2018,Politicians,@TheBushCenter,Former Chief of the @DallasPD @ChiefDavidBrown spoke with our #StandTo Veteran Leadership Program scholars about hi… https://t.co/FmRxesCGRx +06/20/2018,Politicians,@TheBushCenter,"Refugees don’t play a small portion in making America great, they play a significant role in elevating this country… https://t.co/VTeFqUPJ4v" +06/20/2018,Politicians,@TheBushCenter,"""If you’re leading and no one is following you, you’re just taking a walk."" --@ChiefDavidBrown. Read his ""Two Minut… https://t.co/6g6MBdYy1t" +06/20/2018,Politicians,@TheBushCenter,"North Korea may be odd and menacing, but fortunately, it’s much less opaque these days. More and more books are bei… https://t.co/jYWDDAwjpv" +06/20/2018,Politicians,@TheBushCenter,"""[@laurawbush] used her voice to be an advocate for those who were silenced. And she drew attention to those who ne… https://t.co/e9wCBT8k08" +06/19/2018,Politicians,@TheBushCenter,"Learn why Americans may soon be paying more for consumer goods like cars, dishwashers, and cell phones. #Tariffs… https://t.co/cSb645tQEz" +06/19/2018,Politicians,@TheBushCenter,The role of First Lady is vast and undefined. @laurawbush describes her journey in the White House in episode 4 of… https://t.co/lsjGgVehFM +06/19/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Five books to better understand Korea. https://t.co/8uVUAKcA00 @TheBushCenter @MelanieKirkpat @VictorDCha +06/19/2018,Politicians,@TheBushCenter,The tariffs imposed on China are protecting sunset industries where our comparative advantage has dwindled. America… https://t.co/GgGCHxrzsT +06/19/2018,Politicians,@TheBushCenter,RT @USGLC: “We have to be proud of what has taken place… @PEPFAR has always had incredible bipartisan support… we hope that support continu… +06/19/2018,Politicians,@TheBushCenter,"RT @PEPFAR: At @USGLC State Leaders Summit #PEPFAR15 tribute, #AmbBirx congratulates @TomDaschle and George W. Bush on their awards and lea…" +06/19/2018,Politicians,@TheBushCenter,"RT @MiguelHoweMSI: Our nations #Veterans, even those who overcome serious wounds, injuries and illnesses are strong resilient servant leade…" +06/19/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/eEthJVy9QV" +06/18/2018,Politicians,@TheBushCenter,"ICYMI: ""In 2018, can we not as a nation find a kinder, more compassionate and more moral answer to this current cri… https://t.co/xF99BpInxT" +06/18/2018,Politicians,@TheBushCenter,The Bush Institute met with Acting Secretary of @DeptVetAffairs Peter O’Rourke today to discuss ways to continue to… https://t.co/a6u4PhaofI +06/18/2018,Politicians,@TheBushCenter,.@FortWorth_ISD superintendent @KentPScribner talks about the goals he hopes to achieve by participating in the Bu… https://t.co/GpnrJfr5Ic +06/18/2018,Politicians,@TheBushCenter,"""By imposing tariffs and escalating tensions with China we are only raising prices for American families and are un… https://t.co/NGItVtNS9S" +06/18/2018,Politicians,@TheBushCenter,.@AnneWicks speaks to @FortWorth_ISD about goals and next steps in their work to improve #SchoolLeadership. Learn m… https://t.co/ZEJnUTd8RR +06/18/2018,Politicians,@TheBushCenter,"Today, the Bush Institute’s School Leadership Initiative team visits @FortWorth_ISD to check in on their progress.… https://t.co/YoI10Vndu3" +06/18/2018,Politicians,@TheBushCenter,Stay up to date on the latest from the George W. Bush Institute and President and Mrs. Bush. Sign up to receive upd… https://t.co/vRFBzzYErq +06/18/2018,Politicians,@TheBushCenter,"""I appreciate the need to enforce and protect our international boundaries, but this zero-tolerance policy is cruel… https://t.co/Qf8iK14Qc6" +06/16/2018,Politicians,@TheBushCenter,#DYK: Jackie Kennedy spoke 5 languages and saved Egyptian temples from being torn down. Learn how she helped shape… https://t.co/OAibUpLnoB +06/15/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/i0X19GMwdP" +06/15/2018,Politicians,@TheBushCenter,Our analysis of global competitiveness shows that economically China is nowhere near the U.S. Take a look at our da… https://t.co/jCGHtMLxdb +06/15/2018,Politicians,@TheBushCenter,"""By imposing tariffs and escalating tensions with China we are only raising prices for American families and are un… https://t.co/DLa2bAbQyY" +06/15/2018,Politicians,@TheBushCenter,"RT @PLSprogram: Scholars kicked off their fifth session at @LBJLibrary yesterday with administration alums Tom Johnson, @BillMoyers, Larry…" +06/14/2018,Politicians,@TheBushCenter,"“Over the coming months, [the Bush Institute-@SMU Economic Growth Initiative] will build Dallas into a globally res… https://t.co/dhBnIDJdhV" +06/14/2018,Politicians,@TheBushCenter,North America is the most economically competitive region in the world. Explore our data to learn how #trade agreem… https://t.co/AItFztwMUR +06/14/2018,Politicians,@TheBushCenter,#ThursdayThoughts: “[The role of first lady] has adapted over time because it has adapted with time and with change… https://t.co/trg0hH7zZA +06/13/2018,Politicians,@TheBushCenter,"@andersoncooper Thank you for highlighting Kang Chol-Hwan’s story, and for keeping the spotlight on the estimated 2… https://t.co/PKOkfk8kcW" +06/13/2018,Politicians,@TheBushCenter,"#WednesdayWisdom: ""Seeing Mom and Dad throughout their lives serving others was an enormous gift to us. My dad once… https://t.co/EQ03xCpoQl" +06/13/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Don't miss @VictorDCha in the @NYTimes today on what the Singapore summit means. Proud to have him at @TheBushCenter as… +06/13/2018,Politicians,@TheBushCenter,"“I think it’s a great example for all the women in our family to stand up for yourself, speak loudly about issues t… https://t.co/sJqLGlIHGK" +06/13/2018,Politicians,@TheBushCenter,RT @dallasnews: New Bush-SMU institute hopes to become globally recognized source of economic policy ideas https://t.co/NQirsb0aI3 +06/13/2018,Politicians,@TheBushCenter,RT @ChrisJamesWalsh: My great @TheBushCenter colleagues @WLindsayLloyd & @junepyun on @wfaa w/ a needed reminder that North Korea is the wo… +06/13/2018,Politicians,@TheBushCenter,"""The [Bush-@SMU] initiative will ensure Dallas has a strong voice in economic circles. We will advance high-impact… https://t.co/FW00AoQURY" +06/12/2018,Politicians,@TheBushCenter,".@WLindsayLloyd talks #TrumpKimSummit with @CKNW's @simisara980: ""If you have a regime that's willing to treat its… https://t.co/boF7sPuqF8" +06/12/2018,Politicians,@TheBushCenter,"""The majority of the prison camps are meant for permanent incarceration. Analysts think there are about 200,000 men… https://t.co/35TShMufN1" +06/12/2018,Politicians,@TheBushCenter,"""By the time I arrived at Yodok, only three fish survived. When winter came, our room was so cold the aquarium froz… https://t.co/v9VbhcfvJT" +06/12/2018,Politicians,@TheBushCenter,"RT @MiguelHoweMSI: Important day @LinkedIn HQs yesterday, thx 2 @dsavage_83 @LizOBrien30 @hiringourheroes & companies/leaders like Mike Kel…" +06/12/2018,Politicians,@TheBushCenter,#WatchNow: Two-Minute Take with @WLindsayLloyd on #TrumpKimSummit and why North Korea's human rights abuses need to… https://t.co/uGZyFfQl6Y +06/12/2018,Politicians,@TheBushCenter,1 in every 185 North Koreans is a political prisoner. Punishable crimes include criticizing the government (or havi… https://t.co/cMCxVtY3B1 +06/12/2018,Politicians,@TheBushCenter,"""We must not lose sight of the condition of the North Korean people."" - @WLindsayLloyd in interview with @ABC:… https://t.co/F8J9reaj4p" +06/12/2018,Politicians,@TheBushCenter,Happy 94th birthday to President @GeorgeHWBush from all of us at President #43’s Institute! We’re sporting our favo… https://t.co/gtG56gsibH +06/12/2018,Politicians,@TheBushCenter,RT @VictorDCha: Waiting to join ⁦@hodakotb⁩ ⁦@SavannahGuthrie⁩ ⁦@TODAYshow⁩ (with one hour of sleep) to talk #SingaporeSummit ⁦@georgetown… +06/12/2018,Politicians,@TheBushCenter,ICYMI: @junepyun and @WLindsayLloyd spoke to @wfaa's @twoodard8 about North Korean human rights and why they must r… https://t.co/feyUUmaZM6 +06/12/2018,Politicians,@TheBushCenter,"“She made sure she improved the lives of others... and it’s a great example for her daughter, for her children, and… https://t.co/khQXlydEiv" +06/11/2018,Politicians,@TheBushCenter,#DYK: Jackie Kennedy spoke 5 languages and saved Egyptian temples from being torn down. Learn how she helped shape… https://t.co/NDW5wenRsz +06/11/2018,Politicians,@TheBushCenter,DFW: tune into @wfaa's story on the US-North Korea Summit tonight at 6 featuring Bush Institute human freedom exper… https://t.co/UJIFZWm3lb +06/11/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/NnyqEImxdJ +06/11/2018,Politicians,@TheBushCenter,"Thank you to @TeamRubicon, #Team43, @DennisClancey, @PatRossIII, @Hope4Warriors, @022KILL, @HoovesForHeroes,… https://t.co/2F2qE7MKT2" +06/11/2018,Politicians,@TheBushCenter,We welcomed @supportthewalk today as they began their journey through #Texas. The 3 U.S. & 3 U.K. wounded #veterans… https://t.co/m5Sswa6JZ0 +06/11/2018,Politicians,@TheBushCenter,"As the U.S. and the rest of the world grapple with denuclearizing #NorthKorea, the country’s atrocious human rights… https://t.co/ofyC1Vv77X" +06/11/2018,Politicians,@TheBushCenter,"""While it may sound like the U.S. can get a better deal negotiating [NAFTA] separately, bilateral agreements inevit… https://t.co/GdYMeO1sWw" +06/11/2018,Politicians,@TheBushCenter,RT @MontseTXAFLCIO: We all have an obligation to ensure that we are sharing the positive impacts of immigration @lvtcollins @latinocld #Lat… +06/11/2018,Politicians,@TheBushCenter,Team 43 member Johnnie Yellock speaking about @supportthewalk. #whyiwalk #supportthewalk #walkofamerica https://t.co/zMYvlhjptY +06/11/2018,Politicians,@TheBushCenter,"And they’re off! @supportthewalk will walk 18 miles to Grand Prairie today. They will walk a total of 1,000 miles d… https://t.co/6JJyFdQbSW" +06/11/2018,Politicians,@TheBushCenter,Bush Center Staff with @supportthewalk walkers as they embark on their Texas journey today. 🇬🇧🇺🇸 #supportthewalk… https://t.co/lAC4vEAbkk +06/11/2018,Politicians,@TheBushCenter,We’re welcoming @supportthewalk to the the Bush Center this morning! #walkofamerica #whyiwalk #supportthewalk https://t.co/6CSUQzputW +06/11/2018,Politicians,@TheBushCenter,"Barbara Bush’s dedication to faith, family, and friends captured the hearts of Americans. The latest episode of “La… https://t.co/MRk9R97A58" +06/10/2018,Politicians,@TheBushCenter,"“I think it’s a great example for all the women in our family to stand up for yourself, speak loudly about issues t… https://t.co/VsaayJ97Sb" +06/09/2018,Politicians,@TheBushCenter,"Stay connected with the Bush Center! Be the first to hear our ideas, receive updates, engage with us, and more. Sig… https://t.co/QEpdlytxqV" +06/09/2018,Politicians,@TheBushCenter,"“She made sure she improved the lives of others... and it’s a great example for her daughter, for her children, and… https://t.co/mPAPEwYFsV" +06/09/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/08/2018,Politicians,@TheBushCenter,#StandTo Veteran Leadership scholars heard from @ChiefDavidBrown this morning - an inspiring way to wrap up week on… https://t.co/sR8rVnUAwQ +06/08/2018,Politicians,@TheBushCenter,"Do you know what policy changes can be made to prolong Social Security and Medicaid's solvency? Find out: +https://t.co/nXye5wfhrE" +06/08/2018,Politicians,@TheBushCenter,"In honor of what would have been Barbara Bush's 93rd birthday, we sat down for a conversation with her daughter, Do… https://t.co/3apWqubSp3" +06/08/2018,Politicians,@TheBushCenter,"Be the first to hear our ideas, engage with us, and stay up-to-date on what we have going on. Sign up now: https://t.co/mHu9WTZNbN" +06/07/2018,Politicians,@TheBushCenter,"""Veterans entering into all frames of leadership – political, business, and society leadership – fills out the pale… https://t.co/NAqrSMdOs3" +06/07/2018,Politicians,@TheBushCenter,"Stay connected with the Bush Center! Sign up to receive updates, newsletters, ideas, and more from our experts. https://t.co/mHu9WTZNbN" +06/07/2018,Politicians,@TheBushCenter,General @StanMcChrystal spoke this week to the #StandTo Veteran Leadership scholars about the importance of the pro… https://t.co/uk2zmWNOQq +06/07/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/07/2018,Politicians,@TheBushCenter,Do you know the number of countries and territories represented in the @NBA? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/06/2018,Politicians,@TheBushCenter,RT @KacieAKelly: Honored to discuss #health & #wellbeing with @JJPint at the @TheBushCenter today! Excited about the diversity of thought &… +06/06/2018,Politicians,@TheBushCenter,"Massive human rights abuses against the Rohingya are becoming widely known, yet many aren't aware there are multipl… https://t.co/WL8wRtyymY" +06/06/2018,Politicians,@TheBushCenter,"“Be as good as you can, don’t try to be more than you are” - General @StanMcChrystal to #StandTo Vet Leadership Pro… https://t.co/zR5rW09TmA" +06/06/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/MSvzmfe3Me +06/06/2018,Politicians,@TheBushCenter,"""Tariffs on our closest allies put us in conflict with the very countries who are our strongest allies in confronti… https://t.co/pRSkBoPPQY" +06/05/2018,Politicians,@TheBushCenter,"""The opportunity to be here with these outstanding young leaders is a blessing."" - Sec. Bob McDonald to #StandTo Ve… https://t.co/AJhSOOqkQL" +06/05/2018,Politicians,@TheBushCenter,Applications for the 2019 class of #PLScholars are now open! Learn more about the @PLSprogram: https://t.co/EYsQ7ZAAkY +06/05/2018,Politicians,@TheBushCenter,“Our vets are a tremendous national asset…and to help vets transition from military life to civilian life is in the… https://t.co/HG0Kha6Vb3 +06/05/2018,Politicians,@TheBushCenter,"“I’m thrilled to be with you, and I appreciate you very much joining the initial class of an effort that’s going to… https://t.co/nWp9yEtVbu" +06/05/2018,Politicians,@TheBushCenter,Bush Institute Fellow @VictorDCha testifies before the Senate Foreign Relations Asia Subcommittee about the challen… https://t.co/SbRq3hs6Dz +06/05/2018,Politicians,@TheBushCenter,Yesterday was the first day of a week long trip to #Dallas for the inaugural class of our Stand-To Veteran Leadersh… https://t.co/DBB5S3HSi4 +06/05/2018,Politicians,@TheBushCenter,RT @JJPint: Fired up and coming in hot to talk #Health and #Wellbeing with @KacieAKelly for the 1st @TheBushCenter #veteran leadership prog… +06/05/2018,Politicians,@TheBushCenter,"RT @KacieAKelly: Day 2 of first week of @TheBushCenter Veteran Leadership Program kicks off with a roar, “...our veterans are a tremendous…" +06/04/2018,Politicians,@TheBushCenter,"June is here which means more vacations, road trips, and family time. Download ""Ladies, First"" – a fun, informative… https://t.co/9lZEgD98fT" +06/04/2018,Politicians,@TheBushCenter,“This program isn’t just about veteran outcomes and programs; it’s about continued veteran leadership too” -… https://t.co/p8SvubIk1G +06/04/2018,Politicians,@TheBushCenter,“This is about educating and informing the country about how to leverage this great asset we have.” -… https://t.co/Tpp7o7w8y9 +06/04/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/Ouo4jjLPEd +06/04/2018,Politicians,@TheBushCenter,"RT @jaynordlinger: How bad are these new tariffs against our allies (and against ourselves, really)? @EconGrowth puts it in a nutshell. htt…" +06/04/2018,Politicians,@TheBushCenter,"Explore our data to learn why maintaining good #trade relations with our allies-- Canada, Mexico, and the EU-- are… https://t.co/HxSByxLiiX" +06/04/2018,Politicians,@TheBushCenter,.@EconGrowth explains why steel and aluminum #tariffs will increase the price of many consumer goods including soda… https://t.co/0ZhFHUqZnY +06/04/2018,Politicians,@TheBushCenter,"RT @jaynordlinger: Interesting little article by @lvtcollins on the ""global flavor of the NBA."" (I didn't know Dr. Naismith was an immigran…" +06/04/2018,Politicians,@TheBushCenter,#DYK Kim Jong-Un’s nuclear program is partially funded by sending North Koreans to places like China and Russia to… https://t.co/MjRkdJKoHi +06/04/2018,Politicians,@TheBushCenter,RT @blaynepsmith: TPA->DFW. Pumped to join @ToddConnor and @MiguelHoweMSI to help kick off the Stand-To Veteran Leadership Program @TheBush… +06/04/2018,Politicians,@TheBushCenter,We are excited to welcome the inaugural class of our Stand-To Veteran Leadership scholars to #Dallas this week! Sta… https://t.co/ddzhSBTNKg +06/04/2018,Politicians,@TheBushCenter,How can we make economic growth more inclusive? Director of the Bush Institute-SMU Economic Growth Imitative Cullum… https://t.co/BDiRsGkUvk +06/04/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/02/2018,Politicians,@TheBushCenter,"RT @wendykopp: A fitting tribute to the extraordinary roles many grandmothers take on, featuring @Kassaga4UG, via Natalie Gonnella-Platts o…" +06/02/2018,Politicians,@TheBushCenter,“The United States owes its leading place in the world economy to its historic achievements in education.” -- Direc… https://t.co/p4M5AAP7J3 +06/02/2018,Politicians,@TheBushCenter,"June is here which means more vacations, road trips, and family time. Download ""Ladies, First"" – a fun informative… https://t.co/RQlQ3viZ3x" +06/02/2018,Politicians,@TheBushCenter,"North Korea’s leader Kim Jong-un takes pride in his country’s nuclear program. However, a recent survey from @CSIS… https://t.co/dqYLpr1Cyf" +06/01/2018,Politicians,@TheBushCenter,"As the U.S. and the rest of the world grapple with denuclearizing #NorthKorea, the conversation must begin at the r… https://t.co/kr2k0BSGsT" +06/01/2018,Politicians,@TheBushCenter,"RT @DallasBizNews: Bush Institute, SMU launch economic growth initiative: https://t.co/w2DA02jymV" +06/01/2018,Politicians,@TheBushCenter,"Steel and aluminum tariffs will increase the cost of sodas, cars, refrigerators and many other consumer goods. Lear… https://t.co/AcQ2Dkmtir" +06/01/2018,Politicians,@TheBushCenter,RT @SMUDedman: Today's a big day: @TheBushCenter Institute-@SMU Economic Growth Initiative officially launches https://t.co/BKOB35qFIw +06/01/2018,Politicians,@TheBushCenter,Read more about the George W. Bush Institute-SMU Economic Growth Initiative that formally launched today:… https://t.co/NfGyqX6RpZ +06/01/2018,Politicians,@TheBushCenter,Bush Institute's @EconGrowth talks to @washingtonpost about new tariffs put on U.S. allies: https://t.co/28vR5RO88R +06/01/2018,Politicians,@TheBushCenter,Director of the Bush Institute-SMU Economic Growth Initiative Cullum Clark shares his thoughts on how to strengthen… https://t.co/Pa8ldSRpTy +06/01/2018,Politicians,@TheBushCenter,"“Raising #tariffs is raising taxes, and tariffs are a tax that is paid by consumers, not producers.” -- @EconGrowth… https://t.co/U6CQXQ7FI0" +06/01/2018,Politicians,@TheBushCenter,“The Initiative combines [our] action-oriented approach to policy & extraordinary convening ability w/ @SMU's resea… https://t.co/eTT75jY5jT +06/01/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: From my @TheBushCenter colleagues @lvtcollins & @EconGrowth in @ForeignPolicy - The US must foster free trade and econom… +06/01/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/6UgEvHqw4S +06/01/2018,Politicians,@TheBushCenter,What's the best part about the @NBA finals? The global flavor. Read more: #NBAFinals #NBATwitter https://t.co/Wxs3dOKrLP +05/31/2018,Politicians,@TheBushCenter,"Steel and aluminum tariffs will increase the cost of sodas, cars, refrigerators and many other consumer goods. Lear… https://t.co/fyISZ87cWS" +05/31/2018,Politicians,@TheBushCenter,"""The ability to adapt must become a must-have skill instead of a nice-to-have skill.  Learning is like breathing.""… https://t.co/33QZGhzg0R" +05/31/2018,Politicians,@TheBushCenter,"""When you have children, put your phone down and pay attention to them. Read to them—that’s the most important thin… https://t.co/sdQya1piLL" +06/30/2018,Politicians,@SpeakerRyan,RT @PatrickMcHenry: Click here to learn more about how House passage of the Department of Defense Appropriations Act is another step toward… +06/30/2018,Politicians,@SpeakerRyan,"As promised, the new tax forms are the size of a postcard. Filing your taxes just got a little less taxing. This is… https://t.co/mvBoDoCMbj" +06/29/2018,Politicians,@SpeakerRyan,"RT @SteveScalise: 6 months ago, when we passed the #TaxCutsandJobsAct, we promised simple tax returns the size of a postcard. Today, @USTre…" +06/29/2018,Politicians,@SpeakerRyan,"RT @CNBCnow: JUST IN: Treasury, IRS announce postcard-size form 1040 for next year https://t.co/ZaAhnbWc2z https://t.co/YdWMMi02vb" +06/29/2018,Politicians,@SpeakerRyan,"Filing your taxes just got a little less taxing. @USTreasury unveiled the new return for 2019, and as promised, it’… https://t.co/0eVsY7E3yx" +06/29/2018,Politicians,@SpeakerRyan,"RT @GovWalker: With up to 13,000 jobs and $10 billion in capital, Foxconn’s investment in Wisconsin is by far the largest economic developm…" +06/29/2018,Politicians,@SpeakerRyan,"In the 6️⃣ months since #TaxReform: + +6️⃣5️⃣% of Americans say now is the time to find a quality job +9️⃣5️⃣.1️⃣% of… https://t.co/aGvlM1zhVV" +06/28/2018,Politicians,@SpeakerRyan,The senseless attack on a Maryland newspaper today is sickening. God bless these journalists. We pray for them and their families tonight. +06/28/2018,Politicians,@SpeakerRyan,"Today, we demonstrate to the rest of the world that the Badger State will be a manufacturing powerhouse for generat… https://t.co/2C11vcFDl9" +06/28/2018,Politicians,@SpeakerRyan,The Badger State is a great place to do business. Just broke ground on Foxconn's facility in Southeastern Wisconsin… https://t.co/Wi5O3NFp70 +06/28/2018,Politicians,@SpeakerRyan,Great news→ The House just voted to give our men and women in uniform their largest pay raise in 9 years. They dese… https://t.co/pRjXhpFSZQ +06/28/2018,Politicians,@SpeakerRyan,This funding package will help deliver better care for our veterans and grow our economy with critical investments… https://t.co/zJ11VvNMUl +06/28/2018,Politicians,@SpeakerRyan,Retweet to agree → Our men and women in uniform deserve a pay raise. The House is about to vote to give them their… https://t.co/CRO1eLROEf +06/28/2018,Politicians,@SpeakerRyan,"The House will soon take a big vote to rebuild our military. Here are 8 reasons the #NDAA is so important, includin… https://t.co/Gzf3p3ZgtQ" +06/27/2018,Politicians,@SpeakerRyan,"Welcomed a delegation of European speakers, ambassadors, and other leaders to the Capitol today to discuss our shar… https://t.co/MbMcRkelRX" +06/27/2018,Politicians,@SpeakerRyan,RT @BudgetGOP: DON'T MISS @SpeakerRyan highlighting @BudgetGOP Chair @SenatorEnzi's biennial appropriations idea. Moving Congress to two-ye… +06/27/2018,Politicians,@SpeakerRyan,"RT @PolishEmbassyUS: Today @SpeakerRyan welcomed parliamentary leaders from Central & Eastern Europe, including Deputy Speaker of the Polis…" +06/27/2018,Politicians,@SpeakerRyan,RT @BudgetGOP: MUST READ @SpeakerRyan endorses @SenatorEnzi’s two-year spending plan - https://t.co/6YkKTQgbqx - via @washtimes & @dsherfin… +06/27/2018,Politicians,@SpeakerRyan,"RT @SenatorEnzi: Thanks to @SpeakerRyan for promoting my #BiennialAppropriations idea. Moving Congress to a two-year appropriations cycle,…" +06/27/2018,Politicians,@SpeakerRyan,RT @rep_stevewomack: Thanks to @SpeakerRyan for sharing his reform ideas during today’s Members’ Day hearing in the Joint Select Committee… +06/27/2018,Politicians,@SpeakerRyan,The following members will lead negotiations for reforms to the Committee on Foreign Investment in the United State… https://t.co/KY42PBAR8N +06/27/2018,Politicians,@SpeakerRyan,"After years of being hollowed out, we are on the road to rebuilding our military. The 2018 #NDAA is about keeping t… https://t.co/GEP6ZpuTxH" +06/27/2018,Politicians,@SpeakerRyan,"In his decades of faithful service on the bench, Justice Kennedy has been a man of integrity and decency. He has ea… https://t.co/zhijXP3J8x" +06/27/2018,Politicians,@SpeakerRyan,"For years, our military has been hollowed out. This year’s defense bill is all about ensuring our Armed Forces can… https://t.co/V9A5UszVDp" +06/27/2018,Politicians,@SpeakerRyan,"RT @SteveKnight25: My bill, the Small Business Investment Opportunity Act, has been signed into law! Small businesses are the backbone of o…" +06/27/2018,Politicians,@SpeakerRyan,RT @EdWorkforce: The SCOTUS ruling in Janus v. AFSCME is a win for individual freedom for public sector employees. Read Chairwoman @Virgini… +06/27/2018,Politicians,@SpeakerRyan,"A generation of the people’s representatives have become accustomed to a failed budget process. This has to change,… https://t.co/JPWw0ObjWt" +06/27/2018,Politicians,@SpeakerRyan,Biennial budgeting offers a path to rewriting this process—it brings renewed transparency & accountability so we're… https://t.co/HJLwK5dbUV +06/27/2018,Politicians,@SpeakerRyan,"Continuing resolution after continuing resolution, and all of these omnibuses, are not in the best interest of our… https://t.co/Dn9PbF3jZP" +06/27/2018,Politicians,@SpeakerRyan,"I’ve often lamented that the budget process was broken—""organized chaos” would be too generous a description. It is… https://t.co/Wy6mSRW6wx" +06/27/2018,Politicians,@SpeakerRyan,"RT @rep_stevewomack: WATCH: The Joint Select Committee on Budget and Appropriations Process Reform hosts Members’ Day, including testimony…" +06/26/2018,Politicians,@SpeakerRyan,Thank you @KingAbdullahII & @QueenRania for meeting with a bipartisan group of lawmakers in the Capitol today to di… https://t.co/yGHOqo9acS +06/26/2018,Politicians,@SpeakerRyan,"Every day, firefighters put themselves in harm’s way. This bill allowing researchers to better understand the impac… https://t.co/97yfHi6vRA" +06/26/2018,Politicians,@SpeakerRyan,This year’s defense funding bill gives our service members their biggest pay raise in nine years. What our country’… https://t.co/1XGPoQv5fI +06/26/2018,Politicians,@SpeakerRyan,"After tax reform, @HouseGOP’s top priority was to rebuild our military. I’ll be speaking about the steps we’re taki… https://t.co/onYsshv5xq" +06/25/2018,Politicians,@SpeakerRyan,RT @cathymcmorris: The deadly #opioidcrisis is ravaging communities across our nation. See what we are doing to stop it at https://t.co/G3d… +06/24/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: The House passed over 70 bills that target specific weaknesses in the treatment and prevention of opioid addiction. To… +06/22/2018,Politicians,@SpeakerRyan,Dr. Charles Krauthammer was a widely respected thinker and writer who used his immeasurable gifts to contribute to… https://t.co/T5RbkrgIu2 +06/22/2018,Politicians,@SpeakerRyan,"RT @WaysandMeansGOP: Today, a #bipartisan group of 396 Representatives got together and voted for a “massive” package of bills to help in t…" +06/22/2018,Politicians,@SpeakerRyan,"Over the last six months, I’ve visited dozens of businesses across the country to hear directly from company leader… https://t.co/MMtitOfBV0" +06/22/2018,Politicians,@SpeakerRyan,"The Tax Cuts and Jobs Act was signed into law six months ago today, but it was a moment that was decades in the mak… https://t.co/DFL9jKfrEC" +06/22/2018,Politicians,@SpeakerRyan,"RT @NBCNightlyNews: NEW: House passes largest opioids legislative package in recent history, with provisions directing federal agencies to…" +06/22/2018,Politicians,@SpeakerRyan,RT @RepKevinBrady: Something big indeed. America is back! Read my op-ed in the @WSJ ⬇️ https://t.co/ldKww7DzTb +06/22/2018,Politicians,@SpeakerRyan,"These kinds of bipartisan moments don’t always make it into the top of your newsfeed, but this Congress—Republicans… https://t.co/YJwmD4ytIU" +06/22/2018,Politicians,@SpeakerRyan,Just in→ House Republicans and Democrats came together pass the SUPPORT for Patients and Communities Act in order t… https://t.co/nWyjgaOcuT +06/22/2018,Politicians,@SpeakerRyan,"Today’s SUPPORT bill fights the #OpioidCrisis by + +✔Advancing treatment and recovery programs +✔Improving prevention… https://t.co/rdSpu5J1Vh" +06/22/2018,Politicians,@SpeakerRyan,Speaker Ryan's Tribute to Charles Krauthammer https://t.co/tHqiXsnyXV +06/22/2018,Politicians,@SpeakerRyan,"Our nation is facing an #OpioidCrisis. Soon, I’ll be speaking on the House Floor about how the SUPPORT for Patients… https://t.co/p0t4tW3rMr" +06/21/2018,Politicians,@SpeakerRyan,Charles Krauthammer was one of the great thinkers of our time. A giant in his intellect and his character. A good a… https://t.co/pssNKyCemW +06/21/2018,Politicians,@SpeakerRyan,"Today’s House passage of the #2018FarmBill is a big deal. With our booming economy, there is no better time to clos… https://t.co/ztC5lX1g79" +06/21/2018,Politicians,@SpeakerRyan,RT @HouseAgNews: BREAKING: House advances the #2018FarmBill. H.R. 2 provides certainty to farmers and ranchers who have been struggling und… +06/21/2018,Politicians,@SpeakerRyan,RT @SteveScalise: Another reason to celebrate the 6-month anniversary of the #TaxCutsandJobsAct? Utility bills are dropping for over 80 mil… +06/21/2018,Politicians,@SpeakerRyan,"RT @TheFGA: “This is the time to get people off the sidelines, out of poverty, into the workforce, into school, so that they can reach thei…" +06/21/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan: ""There are more job openings in this country than there are people looking for work."" https://t.co/G7o083zB…" +06/21/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: “We’re never going to be complacent. We’re going to continue to fight for American workers and American families to ma… +06/21/2018,Politicians,@SpeakerRyan,"In just six months. #TaxReform has meant: + +✅ Economic resurgence +✅ Higher pay for workers +✅ More job openings +✅ Mor… https://t.co/x3b3szMvTj" +06/21/2018,Politicians,@SpeakerRyan,We do not want children taken away from their parents. Yesterday’s action by @POTUS will ensure families can remain… https://t.co/Zzd9tVznp7 +06/21/2018,Politicians,@SpeakerRyan,"Soon, I’ll be speaking about the situation at the border and the strength of the American economy at my weekly pres… https://t.co/VV9UPjVCbt" +06/21/2018,Politicians,@SpeakerRyan,"The US is now in a pro-growth cycle where Americans are confident, they're risk-taking, they're hiring, and wages a… https://t.co/9hIHCBh2ca" +06/21/2018,Politicians,@SpeakerRyan,"Six months ago today, Congress passed the Tax Cuts and Jobs Act, and the good economic news continues to roll in. https://t.co/USwZO6WwFc" +06/21/2018,Politicians,@SpeakerRyan,The Capitol Hill community came together tonight at the @CWSoftballGame to raise awareness and money to… https://t.co/Lz29l9ItaJ +06/21/2018,Politicians,@SpeakerRyan,RT @PatrickMcHenry: Great piece from @SpeakerRyan highlighting all the reasons #taxreform is making American workers and businesses feel mo… +06/21/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan on the impact of the Tax Cuts and Jobs Act, 6 months since it was passed: ""More than 1 million jobs have bee…" +06/20/2018,Politicians,@SpeakerRyan,Looking forward to tonight’s Congressional Women’s Softball Game against the DC press corps to benefit breast cance… https://t.co/0fiXp0YCFd +06/20/2018,Politicians,@SpeakerRyan,Today marks six months since Congress passed a historic reform of our country’s tax code. In this short amount of t… https://t.co/5yy2PEMalk +06/20/2018,Politicians,@SpeakerRyan,"Thanks to the Republican-led tax law, America is experiencing a boom in US manufacturing. ⚙️ https://t.co/KDRZa0KoqM" +06/20/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan: ""In just 6 months, tax reform has already improved so many people's lives."" https://t.co/yfwTDwp3Ln" +06/20/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: .@SpeakerRyan is right: ""Tax reform has improved American lives in just six months."" Check out his @CNBC piece on #TaxRef…" +06/20/2018,Politicians,@SpeakerRyan,"Tax reform is working, not just for our economy, but for American workers, too. https://t.co/z7vBBcqW6h" +06/20/2018,Politicians,@SpeakerRyan,It’s only been six months and #TaxReform has already proven to be a game-changer for our economy. Tune in live as… https://t.co/RontKHK4hA +06/20/2018,Politicians,@SpeakerRyan,RT @ShopFloorNAM: A record-high 95.1% of manufacturers report an optimistic outlook for their company in our Q2 Manufacturers’ Outlook Surv… +06/20/2018,Politicians,@SpeakerRyan,RT @CNBC: Commentary: Paul Ryan: Tax reform has improved American lives in just six months https://t.co/j2GzRkKZaf +06/20/2018,Politicians,@SpeakerRyan,"Six months ago this week, historic #TaxReform was passed and signed into law. It has been a game-changer for the Am… https://t.co/GKkLiQiyyO" +06/20/2018,Politicians,@SpeakerRyan,"RT @cspan: .@SpeakerRyan: ""We do not want children taken away from their parents. We can enforce our immigration laws without breaking fami…" +06/20/2018,Politicians,@SpeakerRyan,"We can enforce our immigration laws without breaking families apart. Tomorrow, the House will vote on legislation t… https://t.co/7d4rwa1ZPb" +06/20/2018,Politicians,@SpeakerRyan,"Tune in for this morning's news conference with @HouseGOP leadership, where we'll talk about the situation at the b… https://t.co/tKbkNYGHZ3" +06/20/2018,Politicians,@SpeakerRyan,"It’s been 6 months since the House passed #TaxReform and since then: +✅ 1 million jobs created +✅ Unemployment droppe… https://t.co/xpaF8U6OQt" +06/19/2018,Politicians,@SpeakerRyan,The United States and Spain have many shared priorities. I was delighted to meet with His Majesty King Felipe VI to… https://t.co/Cl0o8zrJIv +06/19/2018,Politicians,@SpeakerRyan,RT @GOPLeader: This is the most significant congressional effort against a single drug crisis in history. Last week the House passed 38 #op… +06/19/2018,Politicians,@SpeakerRyan,"The #OpioidCrisis has impacted communities across the country. By the end of this week, the House will have conside… https://t.co/gdZGrJ2wLm" +06/18/2018,Politicians,@SpeakerRyan,"RT @WaysandMeansGOP: Who’s affected by opioids? +The better question is: “Who hasn't been touched by the opioid crisis in America?” + +READ 📚…" +06/18/2018,Politicians,@SpeakerRyan,Opioid overdose is now the leading cause of death for Americans under the age of 50. The House will not relent in c… https://t.co/4Pi7slt4DR +06/16/2018,Politicians,@SpeakerRyan,"My life changed the day I became a father. Liza, Charlie, and Sam are my highest priority. Wishing all of the dads… https://t.co/KRd3ksGJRT" +06/16/2018,Politicians,@SpeakerRyan,"RT @PatrickMcHenry: In honor of #FathersDay , @SpeakerRyan and I went head to head with some of our best #dadjokes. They weren't good... ht…" +06/15/2018,Politicians,@SpeakerRyan,RT @HeardontheHill: Bad Dad Jokes for Father’s Day: @SpeakerRyan and @PatrickMcHenry face off with lame puns https://t.co/3YTO1RfYif +06/15/2018,Politicians,@SpeakerRyan,RT @HouseSmallBiz: HUGE news for America's small businesses: Chairman @RepSteveChabot's H.R. 4743 is en route to the @WhiteHouse after @Spe… +06/15/2018,Politicians,@SpeakerRyan,"I love a good dad joke. Especially the ones that are so bad, they’re good. But @PatrickMcHenry’s #DadJokes are just… https://t.co/ivkoGBQDng" +06/15/2018,Politicians,@SpeakerRyan,The House is hard at work passing legislation that will continue to strengthen our economy. These two bills helping… https://t.co/NPzA2wBT9S +06/15/2018,Politicians,@SpeakerRyan,RT @SteveScalise: For the countless prayers and support on this journey — thank you. https://t.co/eNR0HPouVI +06/15/2018,Politicians,@SpeakerRyan,.@SteveScalise and the rest of the baseball team that day owe a debt of gratitude to the two Capitol Police officer… https://t.co/cHTwE9I7uE +06/14/2018,Politicians,@SpeakerRyan,Retweet to join me in welcoming @SteveScalise back on the field. #ScaliseStrong https://t.co/IFYjuvhNZs +06/14/2018,Politicians,@SpeakerRyan,My statement on the Department of Justice Inspector General report→ https://t.co/ZfIOIOj7gG +06/14/2018,Politicians,@SpeakerRyan,Happy birthday to President Trump! https://t.co/56fOsteJ2G +06/14/2018,Politicians,@SpeakerRyan,The American flag is the greatest symbol for democracy and freedom that the world has ever known. Happy #FlagDay! 🇺🇸 https://t.co/GdqUca1ObT +06/14/2018,Politicians,@SpeakerRyan,2.7 million people across the country are struggling with opioids. We’re losing 115 lives each day to the… https://t.co/JszCyetaml +06/14/2018,Politicians,@SpeakerRyan,The #OpioidCrisis is an epidemic in the truest sense of the word. I’ll be speaking more about why this needs to be… https://t.co/jmSFrpVv9N +06/14/2018,Politicians,@SpeakerRyan,Jobless claims just fell to a near 44-year low. 📉 https://t.co/5q8WuX9f28 +06/14/2018,Politicians,@SpeakerRyan,"When I announced my retirement from Congress, much of the media focused on what I was giving up. All I could think… https://t.co/rA34buBjX6" +06/14/2018,Politicians,@SpeakerRyan,"Around this time last year, I was in my office on the phone with @SteveScalise's wife. We didn’t yet know that Stev… https://t.co/3qXvQFNBmr" +06/14/2018,Politicians,@SpeakerRyan,This is the day that the Lord has made. Let us rejoice and be glad in it. So glad to be here speaking at the… https://t.co/AM4KY4VMAf +06/14/2018,Politicians,@SpeakerRyan,RT @SteveScalise: It's more than a game. https://t.co/Obltwoeu2U +06/13/2018,Politicians,@SpeakerRyan,Rep. Sam Johnson is an absolute hero for his sacrifice as a POW and his continued service to America. It is a privi… https://t.co/at0bXSwSzN +06/13/2018,Politicians,@SpeakerRyan,"RT @RepBradWenstrup: The Tax Cuts and Jobs Act created 320 Opportunity Zones in Ohio. That’s 320 economically-distressed Ohio communities,…" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepPittenger: Thanks to the #TaxCutsandJobsAct, there are now 252 “Opportunity Zones” throughout North Carolina. These “Opportunity Zon…" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepMikeBishop: Across Michigan, the #TaxCutsandJobsAct created 280+ #OpportunityZones to incentivize investment & spur growth in low-in…" +06/13/2018,Politicians,@SpeakerRyan,The time is now → We need to step up and fight the opioid epidemic from all sides. Kyle is proof that no matter how… https://t.co/qACHWP8sS0 +06/13/2018,Politicians,@SpeakerRyan,Bills passed in Washington alone will not stop this epidemic. We all have a role to play in supporting those affect… https://t.co/taq4ox3kkI +06/13/2018,Politicians,@SpeakerRyan,"This week, we are voting on the most significant congressional reforms against a single drug crisis in history. Bip… https://t.co/kz3cafH4xm" +06/13/2018,Politicians,@SpeakerRyan,"For Kyle Pucek, an ankle injury at 23 turned into an addiction to heroin that nearly took his life. Kyle has been c… https://t.co/6qxC3M8mwh" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepRalphNorman: Thanks to #TaxReform, #SC has received 135 #OpportunityZones, which encourages long-term investments and boosts the eco…" +06/13/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: Michelle's story – and the thousands like it across the country – are the reason our members are working on legislatio… +06/13/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: Take a moment today to read @SpeakerRyan's piece in @journalsentinel about ""How Congress is stepping up to crack down on…" +06/13/2018,Politicians,@SpeakerRyan,The #OpioidCrisis touches all of our communities. Michelle is a mother of two from Southern Wisconsin. Both of her… https://t.co/d9IZHiW0w9 +06/13/2018,Politicians,@SpeakerRyan,115 lives are lost every day to the #OpioidCrisis. These statistics are harrowing. Learn more about how the House i… https://t.co/kP4d10w5QU +06/13/2018,Politicians,@SpeakerRyan,RT @SteveScalise: Tomorrow. https://t.co/RDx7AbXLkp +06/12/2018,Politicians,@SpeakerRyan,"From cementing a conservative judiciary to helping guide historic tax reform into law, and always looking out for K… https://t.co/0iw60aLFQI" +06/12/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: As a part of @HouseGOP’s historic #TaxReform, Wisconsin has received 120 #OpportunityZones to help spur investment and ec…" +06/12/2018,Politicians,@SpeakerRyan,RT @RepAndyHarrisMD: And unemployment is at a historically low 3.8%. #TaxReform works! https://t.co/p9ELU7j5cf +06/12/2018,Politicians,@SpeakerRyan,"RT @HouseGOP: A booming economy doesn’t just happen. It develops when sound, pro-growth policies are written and passed, policies that are…" +06/12/2018,Politicians,@SpeakerRyan,RT @HouseCommerce: Dozens of bills aimed at combating the #OpioidCrisis will hit the House Floor today. Get the latest from @USATODAY on th… +06/12/2018,Politicians,@SpeakerRyan,"✅ Lowest unemployment rate in half a century +✅ Highest optimism from #smallbiz in 30+ years +❌ Predictions of tax re… https://t.co/wzvX6kyPrV" +06/12/2018,Politicians,@SpeakerRyan,"Awesome news. Can’t wait to see you out there, Steve-o! https://t.co/myv4xJW0nF" +06/12/2018,Politicians,@SpeakerRyan,"Only time will tell if North Korea is serious this time, and in the meantime, we must continue to apply maximum eco… https://t.co/pVaWhp1pv9" +06/12/2018,Politicians,@SpeakerRyan,We must always be clear that we are dealing with a brutal regime with a long history of deceit. +06/12/2018,Politicians,@SpeakerRyan,"For decades, American policy toward North Korea has failed, and I commend @POTUS for not accepting the status quo.… https://t.co/w0PtpkiPGr" +06/12/2018,Politicians,@SpeakerRyan,.@GeorgeHWBush is a national treasure. Retweet to join me in wishing him a happy 94th birthday! +06/12/2018,Politicians,@SpeakerRyan,"Glad that you are already feeling better, @larry_kudlow. Praying for a full and speedy recovery for my friend." +06/12/2018,Politicians,@SpeakerRyan,Small business optimism just rose to its highest in more than 30 years. 📈 https://t.co/0K7Tbl88xQ +06/11/2018,Politicians,@SpeakerRyan,"RT @SteveScalise: This week, we're taking action to combat the #OpioidCrisis, which is truly the #CrisisNextDoor. The House will consider a…" +06/11/2018,Politicians,@SpeakerRyan,@jamiedupree Glad to hear you'll be back on the airwaves soon! +06/11/2018,Politicians,@SpeakerRyan,RT @RepErikPaulsen: Some good news ---> House set to vote on more than 20 bills to combat opioid addiction @CNNPolitics https://t.co/YqBCOa… +06/11/2018,Politicians,@SpeakerRyan,"RT @cathymcmorris: On the agenda next week to prevent, treat, and help people recover from addiction→ House set to vote on more than 20 bil…" +06/10/2018,Politicians,@SpeakerRyan,Had the pleasure of meeting Kayla a few months back. She truly is an inspiration to all of us and a great advocate… https://t.co/FuNHWLStzb +06/09/2018,Politicians,@SpeakerRyan,"RT @michaelcburgess: Over the next two weeks, the House will consider meaningful legislative solutions to combat the opioid epidemic. It's…" +06/09/2018,Politicians,@SpeakerRyan,"As a proud #MiamiOH alum, I always enjoy it when fellow #RedHawks stop by the office. Had a great discussion about… https://t.co/ZUYMIRMMOz" +06/08/2018,Politicians,@SpeakerRyan,"RT @RepEvanJenkins: We’re continuing to provide solutions and funding to stop drug trafficking, expand recovery programs, and educate peopl…" +06/08/2018,Politicians,@SpeakerRyan,"Bonuses and bigger paychecks aren’t the only ways #TaxReform is helping American workers. @Boeing, @McDonalds,… https://t.co/3J1J5sxmjq" +06/08/2018,Politicians,@SpeakerRyan,RT @RobWittman: The Project Safe Neighborhoods Grant Program Authorization Act gives state and local law enforcement agencies the resources… +06/08/2018,Politicians,@SpeakerRyan,JUST NOW→ House Republicans voted to cut $15 billion in wasteful government spending—the largest rescission package in history. +06/07/2018,Politicians,@SpeakerRyan,RT @RepComstock: Joined @RepGoodlatte and @RobWittman as @SpeakerRyan enrolled my anti MS-13 gang bill today. This legislation will help g… +06/07/2018,Politicians,@SpeakerRyan,"1,000,000. That's how many new jobs have been created since #TaxReform took effect. + +It's been less than 6 months. https://t.co/CQcd59I3Ts" +06/07/2018,Politicians,@SpeakerRyan,The #OpioidEpidemic has brought harrowing losses to our communities and has cut short too many futures. With the… https://t.co/nnh7VV6mUw +06/07/2018,Politicians,@SpeakerRyan,Gangs like MS-13 prey on our country’s young people through chilling violence and recruitment tactics. It’s crucial… https://t.co/5CWJC3wsQw +06/07/2018,Politicians,@SpeakerRyan,Great news → The House just started debate on the largest rescission package in history. This budget-cutting tool w… https://t.co/T0EX8zvnCy +06/07/2018,Politicians,@SpeakerRyan,"Retweet to join me in wishing our @VP, Mike Pence, a very happy birthday🎉 https://t.co/DUriUgG3aD" +06/07/2018,Politicians,@SpeakerRyan,"✔Following #TaxReform, our economy is on a roll +✔Most significant pediatric cancer bill in history: LAW +✔Quality ca… https://t.co/LvFz83oNUz" +06/07/2018,Politicians,@SpeakerRyan,We remain focused on getting big things done for the American people. I’ll be talking about how House Republicans a… https://t.co/XRDMpo7hus +06/07/2018,Politicians,@SpeakerRyan,"RT @Transport: 📢 #BreakingNews: The House has overwhelmingly passed ✅ H.R.8, the Water Resources Development Act of 2018 (#WRDA) by a vote…" +06/06/2018,Politicians,@SpeakerRyan,Today was a great day for our veterans because legislation ensuring they receive quality care became the law of the… https://t.co/oVOPc4SMxr +06/06/2018,Politicians,@SpeakerRyan,"RT @WhiteHouse: President Trump signed the VA Choice and Quality Employment Act into law, authorizing $2.1 billion in additional funds for…" +06/06/2018,Politicians,@SpeakerRyan,"@EWErickson I know, Erick. It's Armageddon out there. https://t.co/0Z4t3WmVSk" +06/06/2018,Politicians,@SpeakerRyan,RT @RepMcSally: On my way to @WhiteHouse to see @POTUS sign the VA Mission Act into law. I supported this legislation b/c it will streamli… +06/06/2018,Politicians,@SpeakerRyan,There are 6.7 million open jobs in this country—a record. Unemployment is at 3.8%—the lowest in half a century. And… https://t.co/9b6JTowjbp +06/06/2018,Politicians,@SpeakerRyan,This economic momentum doesn’t happen by accident. We’ve worked hard to create an economic environment where growth… https://t.co/nwoQFtuvCJ +06/06/2018,Politicians,@SpeakerRyan,"74 years ago today, more than 150,000 Allied troops stormed the beaches of Normandy. We are forever grateful for th… https://t.co/3iaLflh30J" +06/05/2018,Politicians,@SpeakerRyan,"RT @RepFredUpton: DYK: Michigan has 288 #OpportunityZone designations including 24 in #MI06 alone. These will help spur private investment,…" +06/05/2018,Politicians,@SpeakerRyan,"We must continue to bolster our country’s #infrastructure. This year’s Water Resources Development ACT (#WRDA): + +✔E… https://t.co/hdlucjIOrr" +06/05/2018,Politicians,@SpeakerRyan,RT @JECRepublicans: Chairman @RepErikPaulsen in the @DCExaminer: How Tax Reform Uses #OpportunityZones to Lift Neighborhoods in Need: https… +06/05/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: And with our pro-growth, limited government policies like #TaxReform and smart regulation, more Americans will be able to…" +06/05/2018,Politicians,@SpeakerRyan,Great news→ The number of job openings in the U.S. now exceeds the number of unemployed Americans. There is no bett… https://t.co/iVhZxccjAV +06/05/2018,Politicians,@SpeakerRyan,"RT @RepRichHudson: As part of the landmark reform, the #TaxCutsandJobsAct created #OpportunityZones to spur economic growth & jobs in disad…" +06/05/2018,Politicians,@SpeakerRyan,"RT @Transport: The Water Resources Development Act (WRDA) works because it is: +✅ Biennial +✅ Bipartisan +✅ Targeted +✅ Transparent +✅ No E…" +06/05/2018,Politicians,@SpeakerRyan,"RT @RepDougCollins: Georgia is home to 260 new economic #OpportunityZones, which incentivize businesses to invest in local communities, hel…" +06/05/2018,Politicians,@SpeakerRyan,"Our economy is on a roll: + +3️⃣.8️⃣% unemployment (lowest in half a century) +2️⃣.7️⃣% wage increase over the last y… https://t.co/4w5rUyTk0m" +06/04/2018,Politicians,@SpeakerRyan,"RT @RepBlainePress: We’ve been working hard to get America’s economy back on the right track, and it looks like our hard work is paying off…" +06/04/2018,Politicians,@SpeakerRyan,RT @carloslcurbelo: Good news across the board but especially for Americans who’ve been out of work and those seeking to transition from pa… +06/04/2018,Politicians,@SpeakerRyan,"To tackle the multi-generational poverty trap, we must change our approach to fighting poverty. Instead of measurin… https://t.co/DEieJLasnA" +06/04/2018,Politicians,@SpeakerRyan,"From cheeseheads to cheese curds, there’s nothing more Wisconsin than cheese. Happy #NationalCheeseDay🧀 to all Wisc… https://t.co/nr5L9GpW5t" +06/04/2018,Politicians,@SpeakerRyan,"The U.S. economy is roaring: +✔Lowest unemployment in half a century +✔Wages are ⬆️ +✔Consumer spending is ⬆️ +✔Consume… https://t.co/QAR3J9yP3J" +06/03/2018,Politicians,@SpeakerRyan,"RT @HouseGOP: ✓ Hiring more workers +✓ Increasing wages +✓ Delivering new or expanded benefits + +This is how #taxreform is changing the game i…" +06/02/2018,Politicians,@SpeakerRyan,RT @RepErikPaulsen: My op-ed in today's @DCExaminer: How tax reform brings opportunity to poor neighborhoods https://t.co/KtGj0KcMwX +06/01/2018,Politicians,@SpeakerRyan,"Oregon: The state has designated 86 #OpportunityZones, with business owners becoming excited about the opportunity… https://t.co/SL6cl1mYQT" +06/01/2018,Politicians,@SpeakerRyan,"Iowa: Officials are seeing a “waiting list” of potential investors for the state’s 62 #OpportunityZones, springing… https://t.co/xi049zWQYk" +06/01/2018,Politicians,@SpeakerRyan,"West Virginia: @WVGovernor says the state’s 55 #OpportunityZones continue ""our movement forward and the hope for br… https://t.co/9zaMIts7ft" +06/01/2018,Politicians,@SpeakerRyan,Michigan: Kalamazoo County contains 5 of the state’s 288 #OpportunityZones. County leaders believe these zones will… https://t.co/GOynyCJgYO +06/01/2018,Politicians,@SpeakerRyan,Massachusetts: Gloucester community officials are hopeful that its designated #OpportunityZones will attract invest… https://t.co/tUxn7Cl7Pf +06/01/2018,Politicians,@SpeakerRyan,Illinois: 327 #OpportunityZones throughout 85 counties. @GovRauner→ “These zones include some of the most underserv… https://t.co/afJfsmN46Y +06/01/2018,Politicians,@SpeakerRyan,North Carolina: 252 of its lowest-income areas have been designated as #OpportunityZones. This is great news for th… https://t.co/dQbNRn894t +06/01/2018,Politicians,@SpeakerRyan,"The American economy is in great shape. And thanks to #TaxReform, states and local communities will start to see th… https://t.co/4jV3obeJbH" +06/01/2018,Politicians,@SpeakerRyan,"RT @HouseSmallBiz: Some #FeelGoodFriday news to wake up to: US unemployment drops to 3.8%, matching its lowest point in half a century. The…" +06/01/2018,Politicians,@SpeakerRyan,"America is making its comeback. +➡️ Unemployment is dropping +➡️ Wages are rising https://t.co/95GuSMCZop" +05/30/2018,Politicians,@SpeakerRyan,"The People’s House is not slowing down. From #RightToTry to ensuring our veterans get the care they need, we’re mov… https://t.co/V2Zcbk4GcK" +05/30/2018,Politicians,@SpeakerRyan,Great news for these patients and their families→ #RightToTry is now the law of the land! https://t.co/FVRs6lyeap +05/30/2018,Politicians,@SpeakerRyan,"RT @WhiteHouse: Today President Trump signs S. 204, the “Right to Try Act” - watch live: https://t.co/EmsdctGWtd https://t.co/NWzQYfyBrb" +05/30/2018,Politicians,@SpeakerRyan,"Growing up, I spent my summers as a camp counselor at the YMCA’s Camp Manito-wish in Wisconsin. Enjoyed meeting wit… https://t.co/DcS0U5s6LF" +05/30/2018,Politicians,@SpeakerRyan,"RT @RepKevinBrady: #TaxReform is working for Texas families and Texas businesses, and the results speak for themselves. Check out the great…" +05/29/2018,Politicians,@SpeakerRyan,"And in the House: +→ Most significant pediatric cancer research bill in history: PASSED +→ Bill supporting federal pr… https://t.co/veXvd0WOnR" +05/29/2018,Politicians,@SpeakerRyan,"Did you miss this news? Congress sent 3 major bills to the @WhiteHouse last week: + +✔#RightToTry +✔Improving… https://t.co/ZZpy3mbAQ4" +05/29/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: Americans in 48 states are going to see lower utility bills this summer because of #TaxReform. Is your state on the li… +05/29/2018,Politicians,@SpeakerRyan,This is a remarkable chronicle of the achievements of the Asian Americans and Pacific Islanders who have served in… https://t.co/YnHKCsrIVp +05/29/2018,Politicians,@SpeakerRyan,"#OTD in 1848, Wisconsin became the 30th state to join the union. Happy Birthday to the Badger State! #OnWisconsin https://t.co/NMO9O8keYo" +05/28/2018,Politicians,@SpeakerRyan,Honored to host veterans and their families from Walter Reed at the Capitol for the annual #MemorialDay concert yes… https://t.co/eYwcpzF3Bt +05/28/2018,Politicians,@SpeakerRyan,"The blessings of freedom come at a dear cost. On #MemorialDay, we honor the men and women who gave the ultimate sac… https://t.co/95dAklPIhm" +05/27/2018,Politicians,@SpeakerRyan,"In our country, religious freedom is an unwavering right. Unfortunately, that’s not the case around the world. Welc… https://t.co/AiCKBW6J4Y" +05/26/2018,Politicians,@SpeakerRyan,"RT @RepHultgren: Today, I joined the House signing of legislation which was also signed into law by the President. In it are bipartisan ref…" +05/25/2018,Politicians,@SpeakerRyan,"RT @legionindc: We wear poppies in honor every servicemember who has died in the name of liberty, freedom and democracy. Honor the fallen;…" +05/25/2018,Politicians,@SpeakerRyan,RT @RepTenney: I attended the signing of S.2155 with @SpeakerRyan. Two pieces of my leg introduced to ease burdens on community financial i… +05/25/2018,Politicians,@SpeakerRyan,RT @DrPhilRoe: It was a privilege to join @SpeakerRyan as he sent the #VAMISSIONAct to @realDonaldTrump’s desk this morning. This bill is a… +05/25/2018,Politicians,@SpeakerRyan,RT @HouseCommerce: .@SpeakerRyan readies #RightToTry for @POTUS’ signature >> https://t.co/IhckMtgeAr +05/25/2018,Politicians,@SpeakerRyan,"✔Reforming the @DeptVetAffairs +✔#RightToTry +✔Financial reform to unleash our economy + +These were all promises made.… https://t.co/IZJAAyvx1Z" +06/30/2018,Politicians,@CarterCenter,Want to hear about the latest activities at The Carter Center? Follow us on social media and… https://t.co/n06lkmqQ66 +06/28/2018,Politicians,@CarterCenter,"Meet Kate Orji, a community-directed distributor in Umudurudu, Nigeria since 1995. She distributes drugs to help fi… https://t.co/986fh7CDhH" +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: From 1.1million doses in 1999 to >740million in 2018 – how do we do it? #20years of #Stewardship of donated drugs to #beat… +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: Read about @Pfizer commitment to #endtrachoma. Continuing the Fight to Eliminate Trachoma https://t.co/VeNWxWt1IY #PfizerCo… +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: WATCH: 20 years of working to eliminate #trachoma made possible by #powerfulpartnerships! Find out how we’ve worked with pa… +06/27/2018,Politicians,@CarterCenter,Looking for a unique gift? This gold and ruby jewelry set will be available for auction on June 30 and all proceeds… https://t.co/Jw8IPB1r0p +06/26/2018,Politicians,@CarterCenter,"In celebration of @ITIatlanta’s #20thanniversary, learn about 4 reasons for optimism in the work to #endtrachoma, t… https://t.co/g3JSkcuAXF" +06/26/2018,Politicians,@CarterCenter,This Native American inspired quilt by artist Suzanne McMahon of North Carolina is available for auction June 30. T… https://t.co/04xitbXxZB +06/26/2018,Politicians,@CarterCenter,"RT @ITIatlanta: Partners gather in @DecaturATL this week for the +18th #trachomaexpertcommittee meeting to #beatNTDs #endtrachoma +#HumansAga…" +06/25/2018,Politicians,@CarterCenter,"Meet Magdalena Leon, an information liaison for the Carter Center's Global Access to Information Program who trave… https://t.co/M00thoc6Nl" +06/25/2018,Politicians,@CarterCenter,"Thanks to Liberia's 1st National Mental Health Policy, a new Mental Health Unit was just established at a hospital.… https://t.co/jdkkg1aLT6" +06/24/2018,Politicians,@CarterCenter,"Ever heard of an Omani khanjar? This traditional dagger, once gifted to President Carter, is available for auction… https://t.co/irIglpi2Cf" +06/23/2018,Politicians,@CarterCenter,"Want to walk a mile in Jimmy Carter’s shoes? These running shoes, autographed by Jimmy Carter, are available at auc… https://t.co/j3p33VJTlG" +06/22/2018,Politicians,@CarterCenter,"When the problems seem too big to tackle, remember that small victories matter. ""We don’t shy away from big challen… https://t.co/Xo3okwnojX" +06/22/2018,Politicians,@CarterCenter,RT @CDCGlobal: #DYK CDC started the #Guinea #worm Eradication Program and is still a @WHO Collaborating Center? Through unique partnerships… +06/22/2018,Politicians,@CarterCenter,RT @NYCuratrix: Campbell giving shout out to Jimmy Carter and @CarterCenter for their great efforts in distributing ivermectin to treat onc… +06/21/2018,Politicians,@CarterCenter,"What’s almost as good as Georgia #BBQ? These aprons, signed by President and Mrs. Carter, available at The Carter C… https://t.co/PVorv1rrJZ" +06/21/2018,Politicians,@CarterCenter,@mapintl @stevenstirling Congratulations! +06/21/2018,Politicians,@CarterCenter,RT @Sightsavers: Hope in sight: ending the infection that scrapes eyes blind. https://t.co/4eNy12njdS Via @CNN #beatNTDs +06/20/2018,Politicians,@CarterCenter,@namigeorgia @GovernorDeal @NotOKApp @BrookhavenGA_PD @GYandura From @DrEveByrd: We congratulate @GovernorDeal on h… https://t.co/ce2l671ShL +06/20/2018,Politicians,@CarterCenter,RT @NAMICommunicate: The House is voting TODAY on #HR6082. This bill will keep strong patient protections in place while allowing for bette… +06/20/2018,Politicians,@CarterCenter,https://t.co/lZFwA4aZz8 +06/20/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: Reaching #Refugees: Leaving no one behind in the fight against #NTDs→ New blog from @RTI_Intl @slisabackers on our work… +06/20/2018,Politicians,@CarterCenter,"The NY Declaration for #Refugees & Migrants expresses political will to save lives, protect rights & share respons… https://t.co/9XDB1Pr4GH" +06/18/2018,Politicians,@CarterCenter,Statement from former U.S. First Lady Rosalynn Carter on children separated from their parents at the border: https://t.co/WVg91SWutl +06/18/2018,Politicians,@CarterCenter,"2018 Carter Center Auction items are here! An original oil painting by Jimmy Carter, a lock of JFK's hair, a photog… https://t.co/adDZtApTbO" +06/17/2018,Politicians,@CarterCenter,"On #FathersDay and every day, we honor the dads and all men who help bring peace, health, and happiness to the worl… https://t.co/NxUFf5E6oX" +06/15/2018,Politicians,@CarterCenter,The @WHO Malaria Elimination Oversight Committee (chaired by Dr. Frank Richards of The Carter Center) celebrating t… https://t.co/wsEZYCL1zn +06/15/2018,Politicians,@CarterCenter,@hussmanjp @KellyCTrachoma Thank you so much @hussmanjp! We greatly appreciate your support & assistance to help t… https://t.co/g2uzfr2pwY +06/14/2018,Politicians,@CarterCenter,Want to be a Carter Center intern? June 15 (TOMORROW) is the deadline to apply for a fall internship. Please share!… https://t.co/pJedS7ksTE +06/14/2018,Politicians,@CarterCenter,Ghana is the FIRST sub-Saharan African country to be validated by @WHO for eliminating trachoma as a public health… https://t.co/lzaBiwLBz4 +06/14/2018,Politicians,@CarterCenter,"Carter Center Congratulates Ghana for Triumph over Trachoma + +""I applaud Ghana's dedicated trachoma health workers f… https://t.co/CbvIjC2nDi" +06/14/2018,Politicians,@CarterCenter,Noncommunicable Diseases: We have had ENOUGH. It’s time to move from commitment to action. #BeatNCDs… https://t.co/VaWU04F73m +06/13/2018,Politicians,@CarterCenter,Check out the new @VOANews @Africa54Tv story today on the hard work and progress by Liberia's govt. & hundreds of… https://t.co/QEh4RyvkUU +06/13/2018,Politicians,@CarterCenter,RT @Sightsavers: Ghana has eliminated trachoma! https://t.co/rEfXjQ0GuF https://t.co/uvgtE79lzb +06/13/2018,Politicians,@CarterCenter,RT @NTDworld: @WHO congratulates Ghana for eliminating trachoma & freeing millions from suffering and blindness https://t.co/iFJ95WYOn8 The… +06/13/2018,Politicians,@CarterCenter,The Carter Center strongly condemns the violent retaliation and excessive use of force against demonstrators in… https://t.co/KBsfHNkPgw +06/12/2018,Politicians,@CarterCenter,RT @lisarotondo: Fantastic announcement from @pfizer today at #DevexWorld We are reinvigorated in the fight to #EndTrachoma https://t.co/… +06/12/2018,Politicians,@CarterCenter,"The Carter Center has appointed 20 new members to its Board of Councilors, bringing total membership to 216. https://t.co/tTiaLyjHIg" +06/12/2018,Politicians,@CarterCenter,Great news! @pfizer Announces Extension of Zithromax® Antibiotic Donation Program through 2025 to Help Eliminate Wo… https://t.co/2ABNI2mo1X +06/12/2018,Politicians,@CarterCenter,@jgm41 @PointsofLight @nmbush Happy Birthday to President Bush! #41 +06/11/2018,Politicians,@CarterCenter,"The Carter Center's 2018 summer interns had a wonderful trip to Plains, Ga., over the weekend. They saw the boyhood… https://t.co/oASfb7qyEI" +06/10/2018,Politicians,@CarterCenter,Know someone who needs a rewarding internship experience? The next Carter Center INTERNSHIP DEADLINE is June 15! Ap… https://t.co/7N9VY9BRWN +06/08/2018,Politicians,@CarterCenter,"RT @jaclyncosgrove: For reporters writing about suicide, please take a moment to read over recommendations on https://t.co/UJ5PrzQ6Kv + +Also…" +06/08/2018,Politicians,@CarterCenter,Do you know the warning signs & risk factors for suicide? Learn what to look for & what to do when someone is in cr… https://t.co/Zfz6kNxSPe +06/08/2018,Politicians,@CarterCenter,RT @PDHgt: .@PDHgt @JordanRodas firma convenio con @CarterCenter para ampliar y fortalecer la colaboración conjunta promoviendo el derecho… +06/08/2018,Politicians,@CarterCenter,RT @sandykjohnson: Anthony Bourdain. Kate Spade. Words matter when reporting on #suicide. Here are some journalist guidelines from @RGPalpa… +06/07/2018,Politicians,@CarterCenter,RT @DrEveByrd: Great to spend time this week with our Colombia-based @carterfellows partner Universidad de La Sabana. Journalism fellows ar… +06/07/2018,Politicians,@CarterCenter,“Tomorrow they will come back and say the thorns have gone” – Surgeon Henry from #uganda describes the joy of pati… https://t.co/wVR7nCVEEQ +06/06/2018,Politicians,@CarterCenter,NEW on the @CarterCenter podcast: Mental health expert and @RutgersU professor & @CarterFellows journalist Dr. Caro… https://t.co/xMbyeqFxKY +06/06/2018,Politicians,@CarterCenter,RT @ssaxenageneva: Levels of public expenditure on #MentalHealth are very low. Nobody should be missing out on mental health care because o… +06/05/2018,Politicians,@CarterCenter,"RT @AmbKawar: The research & work by @CarterCenter was the gist of my meeting today with CEO Mary Ann Peters, VP @JordanDRyan of Peace Prog…" +06/05/2018,Politicians,@CarterCenter,Carter Center Syria Mapping Summary April 25- May 30: includes updates on the evacuation of southern #Damascus and… https://t.co/aloqD7KtRC +06/04/2018,Politicians,@CarterCenter,1.5 billion people around the world are affected by #NTDs. Take part in the @RSTMH and @NTD_NGOs photo contest and… https://t.co/qOUDMQ0uMr +06/04/2018,Politicians,@CarterCenter,"RT @ncdalliance: 🌏🏓🏃‍♀️🏊‍♂️💃🌎🚵‍♂️👩‍🌾🚶‍♂️⚽️🌍 +Launching today: @WHO's +Global Action Plan on #PhysicalActivity: +More people active for a healt…" +06/03/2018,Politicians,@CarterCenter,"Since 2006, The Carter Center has worked at the invitation of the government of Liberia to help educate citizens on… https://t.co/4I3RzQ8v77" +06/01/2018,Politicians,@CarterCenter,The Carter Center's Public Health Training Initiative aims to increase quality health care in rural areas to meet t… https://t.co/iXiYx0UhiW +06/01/2018,Politicians,@CarterCenter,@CarterLibrary @OurPresidents We love this! Lots of great photos on the #ArchivesRoadTrip hashtag today. Check them out! +06/01/2018,Politicians,@CarterCenter,RT @NTDworld: Eradicating #guineaworm disease- Chad to integrate all approaches to break transmission in humans and in animals with support… +06/01/2018,Politicians,@CarterCenter,"RT @FoegeAward: Global leaders honor Jimmy and Rosalynn Carter: Both over 90, they’re still helping the world’s poor https://t.co/KFs26WjXiU" +06/01/2018,Politicians,@CarterCenter,"RT @UBSoptimus: With the help of our partner @CarterCenter, Liberia is on course to reach its goal of expanding access to mental health car…" +05/31/2018,Politicians,@CarterCenter,Marginalized youth are often ripe for extremist recruitment. The Carter Center's media training & workshops are hel… https://t.co/6KeGJ4uMpk +05/30/2018,Politicians,@CarterCenter,Dr. Janice Cooper shares progress made in the Center's Mental Health Program in Liberia. With support from the govt… https://t.co/TZvn7lt2rS +05/29/2018,Politicians,@CarterCenter,"@MariguKaranja @SenatorCarter Hi, thanks for your interest. Please refer to this page on how to get involved with e… https://t.co/JH2r7Fn6I7" +05/29/2018,Politicians,@CarterCenter,"BAMAKO, MALI - Le Centre Carter, qui est l’Observateur indépendant de la mise en œuvre de l'Accord pour paix au Mal… https://t.co/BYv1FvW45M" +05/29/2018,Politicians,@CarterCenter,"The Carter Center, which is serving as Independent Observer of the implementation of the 2015 Agreement on Peace an… https://t.co/EpoqBNSCmW" +05/29/2018,Politicians,@CarterCenter,"RT @qejubileetrust: ""We can stamp out the disease & no one should be left behind, no matter where they come from"" +On #AfricaDay, @Sightsave…" +05/29/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: #Mali Peace Agreement Monitoring Committee, which includes #AU, ECOWAS, UN, EU, France, USA, UK, Algeria, Burkina Fas…" +05/28/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: Malian Parties, Signatories to Peace Agreement, need to further speed-up efforts to implement the Accord; delays in imp…" +05/28/2018,Politicians,@CarterCenter,RT @AU_PSD: Bamako: Many good things hv happened in #Mali since Peace Agreement was signed in 2015 e.g. armed conflict btw Govt & Rebel Gro… +05/28/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: The @CarterCenter, Independent Observer for implementation of the Algiers Agreement for Peace & Reconciliation in #Mali…" +05/28/2018,Politicians,@CarterCenter,The Carter Center has observed 107 elections in 39 countries and continues to develop monitoring standards and tool… https://t.co/w3gWPh3egV +05/28/2018,Politicians,@CarterCenter,"RT @abdoulayekn1: "" Le comité de suivi de l'accord (CSA) n'assume pas toutes responsabilités que lui confie l'accord, notamment la supervis…" +05/28/2018,Politicians,@CarterCenter,"RT @SangareSoule: L'observateur Indépendant de l'Accord publie son premier rapport cet après-midi à #SheratonHotel de Bamako + +Le @CarterCe…" +05/25/2018,Politicians,@CarterCenter,"On #AfricaDay, we sincerely thank our partners, volunteers, and donors for working with us to make a brighter futur… https://t.co/D6Jfuh757h" +05/25/2018,Politicians,@CarterCenter,"Daesh, the terrorist group also known as ISIS, has lost 98 % of the territory it once held in Syria & Iraq. This go… https://t.co/L9w3HjIkfo" +05/24/2018,Politicians,@CarterCenter,Los Amigos de la Carta Democrática Interamericana exhortan al estado venezolano para que restaure el orden constitu… https://t.co/LR7HQSFgFu +05/24/2018,Politicians,@CarterCenter,The Friends of the Inter-American Democratic Charter Call on Venezuelan Government to Restore Constitutional Order… https://t.co/uQLH6FTHwJ +05/24/2018,Politicians,@CarterCenter,RT @RMinghui: .@WHO DG @DrTedros called upon countries and partners for great efforts in eradicating Guinea-Worm Disease at the annual info… +05/24/2018,Politicians,@CarterCenter,RT @DrAxelrod_WHO: We hear an emerging consensus to integrate #mentalhealth into the scope of the third High-level Meeting on NCDs. We hope… +05/24/2018,Politicians,@CarterCenter,Carter Center CEO Mary Ann Peters & colleagues Jonathan Stonestreet & Greg Kehailia discuss democracy in Myanmar. (… https://t.co/W3WCngjCT7 +05/23/2018,Politicians,@CarterCenter,"The Carter Center talks peace in Myanmar. LEFT Carter Center CEO Mary Ann Peters & staff Jonathan Stonestreet, Greg… https://t.co/xNCyY9aiqB" +05/23/2018,Politicians,@CarterCenter,RT @EmoryUniversity: Emory is proud to celebrate 35 years of partnership with @CarterCenter to address some of the world's most pressing is… +05/22/2018,Politicians,@CarterCenter,"President Carter recently met with former U.S. Ambassador Bisa Williams, leader of the Center’s mission as official… https://t.co/XYui7IICvm" +05/21/2018,Politicians,@CarterCenter,"Great news for children in Africa! A Carter Center epidemiologist in Niger is a co-author of a study, published in… https://t.co/UoCdGDQvRr" +05/21/2018,Politicians,@CarterCenter,RT @WHO: LIVE from the World Health Assembly: @DrTedros addresses the Assembly #WHA71 https://t.co/qm3ltJinMl +05/21/2018,Politicians,@CarterCenter,RT @alisonbrunier: Great to see WHO's #mentalhealth team out in force for our #HealthForAll event today #LetsTalk and #LetsWalk @ssaxenagen… +05/21/2018,Politicians,@CarterCenter,"RT @KellyCTrachoma: So cool!! +@CarterCenter https://t.co/5iDbecUjiW" +05/18/2018,Politicians,@CarterCenter,"New on The Carter Center podcast: Even though the Democratic Republic of Congo is rich in natural resources, its pe… https://t.co/A6hquqw7GR" +05/18/2018,Politicians,@CarterCenter,RT @kristiwooten: Jimmy Carter and Bono get nice shout outs from @taianderson in this story about U2's fascinating intersections with Atlan… +05/18/2018,Politicians,@CarterCenter,RT @RTI_INTL_DEV: Lymphatic filariasis has been eliminated as a public health problem in 11 countries. Amazing #beatNTDs progress! Learn ho… +05/17/2018,Politicians,@CarterCenter,"After a civil war & Ebola crisis, @CarterCenter worked w Liberia's govt. & partners to ramp up mental health resour… https://t.co/NkFW2E9zoH" +05/17/2018,Politicians,@CarterCenter,"Thanks. We like it, too! https://t.co/Y1XKL0clDv" +05/17/2018,Politicians,@CarterCenter,"RT @CDC_NCBDDD: An #inclusive world includes digital accessibility. This Global Accessibility Awareness Day, think about how you can make y…" +05/16/2018,Politicians,@CarterCenter,@MariaThackerG We are proud to be involved! +05/16/2018,Politicians,@CarterCenter,@DrAxelrod_WHO @DrTedros @etiennekrug @DougBettcher @MikeBloomberg @BloombergDotOrg @IlonaKickbusch @ncdalliance… https://t.co/R9PrzpiaQk +05/16/2018,Politicians,@CarterCenter,RT @NTD_SC: No longer will #NTDs prevent children from going to school or their parents from earning a living. We are winning the fight aga… +05/15/2018,Politicians,@CarterCenter,"Though the Democratic Republic of Congo has more than half of the global supply of cobalt, its people are among the… https://t.co/46o25Q0wfI" +05/15/2018,Politicians,@CarterCenter,"""For business leaders & corporations, investing in ending #NTDs is probably the highest & most measurable return yo… https://t.co/XEIKonvXsd" +05/14/2018,Politicians,@CarterCenter,Great to have Dr. @sandrogalea from @BUSPH here last week to talk at @CarterLibrary. What should we talk about when… https://t.co/Mhwh3ptitH +05/14/2018,Politicians,@CarterCenter,RT @qejubileetrust: On #MentalHealthAwarenessWeek we are celebrating the work of @QueensLeaders in the field of #mentalhealth. Hauwa runs a… +05/14/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: #NTDs leaders coming together for open discussion with #Ethiopia's new health minister. Great to keep #beatNTDs progress… +05/13/2018,Politicians,@CarterCenter,RT @aljalilauae: #UAE @CarterCenter @CarterFellows Amna Al Haddad participated in the #DarknessIntoLight global walk today to help spread a… +05/13/2018,Politicians,@CarterCenter,"RT @ITIatlanta: On #mothersday, we celebrate #women around the world working to #endtrachoma #beatNTDs #womeninglobalhealth #happymothersd…" +05/13/2018,Politicians,@CarterCenter,Sending #HappyMothersDay wishes to moms and thanks 🙏 to all of those working to keep moms and children healthy and… https://t.co/vr0LssyOFD +05/12/2018,Politicians,@CarterCenter,"On #MothersDay, you can honor the special women in your life with a unique gift that will bring hope to the world's… https://t.co/YmdoRVpJd9" +05/11/2018,Politicians,@CarterCenter,RT @kennedysatcher: Commissioner Fitzgerald illustrates a 10 year journey (2009 -2019) of improving behavioral health care in Georgia @DBHD… +05/11/2018,Politicians,@CarterCenter,"“I have worked on mental health issues for 47 years, and I plan to make it to 50.” Rosalynn Carter today. Congratul… https://t.co/ljDi89xlug" +05/11/2018,Politicians,@CarterCenter,RT @mhagadvocacy: MH LEGACY. So proud that 3 of 4 panelist at #GaMentalHealth18 Forum have steered the @MHAofGeorgia ship. #amazingleader… +05/11/2018,Politicians,@CarterCenter,Project aware by @samhsagov is de-stigmatizing mental health disorders among youth. #GaMentalHealth18 https://t.co/hsdtzXkt6E +05/11/2018,Politicians,@CarterCenter,RT @namigeorgia: Dante McKay of @DBHDD discusses school-based mental health in Georgia #GaMentalHealth18 @CarterCenter https://t.co/ZzvZBrT… +05/11/2018,Politicians,@CarterCenter,Number one challenge is workforce shortage. #GaMentalHealth18 https://t.co/A9Kbwg12NG +05/11/2018,Politicians,@CarterCenter,We have accomplished this together in Georgia! Thanks also to Gov. Deal for leadership and state representatives.… https://t.co/s2u0g9nfrQ +05/11/2018,Politicians,@CarterCenter,Housing first model and expansion of crisis services are underway. #GaMentalhealth18 https://t.co/K6TKjHIxWD +05/11/2018,Politicians,@CarterCenter,"RT @CDC_NCBDDD: We work to understand the policies that affect access to children’s mental health care, like behavioral health integration.…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: “We have come a long way, but there is much more to do. It starts with early intervention,” Cynthia Wainscott, @DBHDD Regi…" +05/11/2018,Politicians,@CarterCenter,"Judy Fitzgerald, commissioner of DBHDD, gives context of how broken the system was in 2009. “That’s not who we are… https://t.co/ZE6HnFJeNz" +05/11/2018,Politicians,@CarterCenter,Jewell Gooding gives an update of the work that is still needed in Georgia for compliance with the state settlement… https://t.co/9w6npDsizJ +05/11/2018,Politicians,@CarterCenter,@namigeorgia We appreciate you @namigeorgia ! +05/11/2018,Politicians,@CarterCenter,Early interventions are needed to relieve the pressure on the mental health crisis system. #GaMentalHealth18 https://t.co/apV7qE5YzZ +05/11/2018,Politicians,@CarterCenter,The state of Georgia is spending $314 million more on behavior health services than in 2011. #GaMentalHealth18 +05/11/2018,Politicians,@CarterCenter,Big news from settlement agreement is the transition into homes. #GaMentalHealth18 https://t.co/uKkgzDAlHj +05/11/2018,Politicians,@CarterCenter,Cynthia Wainscott gives an update of progress made from the settlement agreement. example: now have 19 crisis apart… https://t.co/7wub3wdjq7 +05/11/2018,Politicians,@CarterCenter,What happens with the Georgia / DOJ settlement on June 30? Work continues. The 5 year agreement has been extended s… https://t.co/l16LCv9egQ +05/11/2018,Politicians,@CarterCenter,"RT @CraigLucie: This is what she told the crowd when I was at the @CarterCenter “We still have much work to do.” Congratulations, First Lad…" +05/11/2018,Politicians,@CarterCenter,"RT @DrAxelrod_WHO: Have your say on the actions that world leaders should take to #beatNCDs +A web-based public consultation on the draft re…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: ""Evidence suggests services become more affordable with parity"" Marvin So, M.P.H., @CDCgov #GaMentalHealth18 @CarterCenter…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: ""The vast majority of GA does not have child and adolescent psychiatrics"" Joseph Holbrook, Ph.D., @CDCgov #GaMentalHealth1…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: 440,000 GA children with a mental, behavioral, or developmental disorder; insufficient # of healthcare providers // Joseph…" +05/11/2018,Politicians,@CarterCenter,RT @apadiv18: Congratulations to Mrs. Carter @CarterCenter who was honored with a presidential citation from Past President Puente @AEPuent… +05/11/2018,Politicians,@CarterCenter,RT @mdouglas1313: Love that #GAMentalHealth18 kicks off with @CDC_NCBDDD presentation on how laws impact health ❤️🤓 #publichealthlaw #phlr… +05/11/2018,Politicians,@CarterCenter,The panel with CDC on science and policies with families with young children #GAMentalHealth18 https://t.co/Kqe0O8NrrL +05/11/2018,Politicians,@CarterCenter,https://t.co/5rtmCr6iPv +05/11/2018,Politicians,@CarterCenter,Getting ready to livestream the #GaMentalHealth18 Forum. Follow along here. https://t.co/PQeqyffmei +05/10/2018,Politicians,@CarterCenter,@samhsagov A question from @DrEveByrd @CarterCenter for #HeroesofHope. The Carter Center works with juvenile court… https://t.co/Vwf4SZiQtA +05/10/2018,Politicians,@CarterCenter,RT @samhsagov: Starting soon: Paolo del Vecchio will take over SAMHSA’s Twitter handle and cover tonight's #HeroesofHope event live. #Menta… +05/10/2018,Politicians,@CarterCenter,"This will be an important event on children's #mentalhealth. Please tune in and learn about interventions, caregivi… https://t.co/g9higCRXOw" +05/10/2018,Politicians,@CarterCenter,"RT @ncdalliance: Health promoting prescriptions - win-win ways to reduce #NCDs! + +Doctors in the UK are prescribing social activities to fig…" +05/10/2018,Politicians,@CarterCenter,"RT @MichelleNunn: So inspired to celebrate the #FoegeAward, the tremendous work of @MAPintl and a lifetime of extraordinary service by Rosa…" +05/10/2018,Politicians,@CarterCenter,RT @GlobalHealthOrg: #WHA71 events are now OPEN to RSVP! Check out our special events calendar to get engaged with #globalhealth partners a… +05/10/2018,Politicians,@CarterCenter,https://t.co/gENPrRzgis +05/10/2018,Politicians,@CarterCenter,"RT @TedTurnerIII: I was lucky enough to attend this great event last night honoring my good friends, President and Mrs. Carter, for their t…" +05/10/2018,Politicians,@CarterCenter,Distinguished group of health leaders on stage (and in the room). #FoegeAward https://t.co/pdtwQ72QTl +05/10/2018,Politicians,@CarterCenter,Good to hear about the #GlobalHealthATL initiative from Kornelius Bankston of Metro Atlanta Chamber at @FoegeAward https://t.co/7gHRuZxeY7 +05/10/2018,Politicians,@CarterCenter,"When @drsanjaygupta asks Dr. Bill Foege about “saving more lives than any other man in the world,” Dr. Foege says i… https://t.co/R7MMOq1dkY" +05/10/2018,Politicians,@CarterCenter,You cannot use the same approach to eradicate polio and smallpox. - Dr. Bill Foege #FoegeAward +05/10/2018,Politicians,@CarterCenter,Mental health champion Rosalynn Carter thanks @mapintl for their Liberia mental health support and for the… https://t.co/WImD6rEUv2 +05/10/2018,Politicians,@CarterCenter,Map Intl. is collecting donations tonight to help the @CarterCenter mental health work in Liberia #FoegeAward… https://t.co/TJ12RO2tmu +05/10/2018,Politicians,@CarterCenter,"RT @mapintl: Thank you, Ted Turner for joining us as one of the Honorary Co-chairs for the @FoegeAward this evening. #FoegeAward #grateful…" +05/10/2018,Politicians,@CarterCenter,President Carter receives @FoegeAward for Global Health #FoegeAward https://t.co/etAVruvGRy +05/09/2018,Politicians,@CarterCenter,"Good to see @CARE CEO Michelle Nunn, photographed here with Dr Janice Cooper who heads up @CarterCenter’s Liberia M… https://t.co/87oLgKMQ7W" +05/09/2018,Politicians,@CarterCenter,Dr. @drsanjaygupta is moderating the Bill @FoegeAward dinner tonight. Map Intl. is hosting at @delta Museum. Watch… https://t.co/fI6M4y0NYz +05/09/2018,Politicians,@CarterCenter,Carter Center CEO Mary Ann Peters mentions her gratitude to @mapintl for their partnership to bring medicine to Lib… https://t.co/Pd65zSCpn5 +05/09/2018,Politicians,@CarterCenter,Watch TONIGHT on Facebook at 7 pm ET as @mapint presents the Dr. Bill @FoegeAward to President & Mrs. Carter. Addit… https://t.co/Sf3Mp06lfq +05/09/2018,Politicians,@CarterCenter,"RT @mapintl: MAP International will honor President Jimmy and Mrs. Rosalynn Carter, co-founders of the @CarterCenter, at the Dr. Bill @Foeg…" +05/08/2018,Politicians,@CarterCenter,"Sometimes, something as simple as a radio message can change lives. Read what this Liberia woman did after hearing… https://t.co/r5tICFNWih" +05/08/2018,Politicians,@CarterCenter,RT @NTDworld: Despite war&widespread destruction-a ray of hope as ≃450 000 Yemenis get treated in the country's 1st #trachoma mass treatme… +05/08/2018,Politicians,@CarterCenter,May 10 is Children's #MentalHealthAwareness Day. Watch a live event on children impacted by trauma and recommendati… https://t.co/Uz5ioP6901 +05/07/2018,Politicians,@CarterCenter,RT @GGHAlliance: Carter Center Mental Health Forum to Address Policy in Georgia and Children’s Issues https://t.co/HFsuRSQdNf @CarterCenter +05/07/2018,Politicians,@CarterCenter,"The @CarterCenter is looking and women, violence, & elections. “We’re trying to do a better job of making sure we’r… https://t.co/PIim6jSvDn" +05/07/2018,Politicians,@CarterCenter,RT @aljalilauae: #UAE @CarterFellows @ImanBenChaibah explores the measures that universities can take to better manage their students’ ment… +05/05/2018,Politicians,@CarterCenter,Ethiopia's top notch laboratory is key in the river blindness fight. “It’s right on the campus of the Ministry of H… https://t.co/8gWBsHRVq5 +05/05/2018,Politicians,@CarterCenter,@jgm41 @GeorgeHWBush @MethodistHosp Great news and our very best wishes for President @GeorgeHWBush +05/04/2018,Politicians,@CarterCenter,"RT @alisonbrunier: #MentalHealth ‘neglected issue’ but key to achieving Global Goals, say UN chiefs https://t.co/QPMsdV7x4o #NCDs" +05/04/2018,Politicians,@CarterCenter,"Check out our final report for the October 3, 2018 Primary and December 12, 2018 General Elections in Cheyenne and… https://t.co/fEGGaOnDYN" +05/03/2018,Politicians,@CarterCenter,RT @PubHealth_NG: @Fmohnigeria's Director of Public Health Dr Evelyn Ngige formally opens the 20th session of @NTDnigeria steering committe… +05/03/2018,Politicians,@CarterCenter,RT @CarterLibrary: Tonight at 7...join us for Stuart Eizenstat and the definitive history of The Carter Administration. His book is Jimmy C… +05/03/2018,Politicians,@CarterCenter,"On #WorldPressFreedomDay, we express our sincere gratitude for the reporters who cover our peace and health work ac… https://t.co/Pq2N3leFvA" +05/03/2018,Politicians,@CarterCenter,RT @FoegeAward: MAP would like to thank @SanofiUS for their Silver level sponsorship of the upcoming Bill Foege Global Health Awards. This… +05/03/2018,Politicians,@CarterCenter,"RT @TFGH: ""C​an we do no harm?"" asks our CEO Dr. Ross when assessing new program opportunities and he posed this question to Dr. Lavery @Em…" +05/03/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: We’re winning the fight against #NTDs! Join us in celebrating the global progress to control and eliminate these disease… +05/02/2018,Politicians,@CarterCenter,Read our blog to see how two @CarterFellows creatively used social media skills to engage their followers & extend… https://t.co/WAWS1ZPO2L +05/02/2018,Politicians,@CarterCenter,@ssaxenageneva @NIMHgov @WHO Congratulations! #MentalHealthMonth +04/30/2018,Politicians,@CarterCenter,"The Carter Center works in the Middle East, North Africa, and Liberia to prevent violent extremism, build sustainab… https://t.co/zh39MbkB01" +04/30/2018,Politicians,@CarterCenter,"RT @HamptonStall: TCC April 19-25 update includes three region maps dated April 25. These are (from left to right) Daraa area, Rif Damascus…" +04/29/2018,Politicians,@CarterCenter,"As we look ahead to #MentalHealthAwareness month in May, check out this updated #Parity website on insurance for me… https://t.co/kA3OsTTdux" +04/28/2018,Politicians,@CarterCenter,"Join tonight for a panel discussion with @TFGH CEO, Dr. Dave Ross, @AgnesScott Pres., Dr. Elizabeth Kiss, and… https://t.co/3QkGzFlwUJ" +04/27/2018,Politicians,@CarterCenter,"""After numerous delays, the multinational team of investigators from the OPCW finally gained access to the area of… https://t.co/Dd2cOa0L7z" +04/27/2018,Politicians,@CarterCenter,Carter Center health staffers were honored to meet with the Prime Minister of Haiti today. The Center works with th… https://t.co/3Xu6q0q2ou +04/27/2018,Politicians,@CarterCenter,"Check out our new ""Inclusive Approaches to Preventing Violent Extremism"" report https://t.co/dfUx90CKVV" +04/26/2018,Politicians,@CarterCenter,"RT @aljalilauae: مقالاً جديداً بقلم ناهد النقبي، الحاصلة على منحة #مؤسسة_الجليلة لزمالة برنامج روزالين كارتر للصحة النفسية بعنوان""مجلس وطن…" +04/26/2018,Politicians,@CarterCenter,RT @Sightsavers: Exciting find in @NEJM: Azithromycin could save children’s lives! Great to see so many partners involved in this groundbre… +04/26/2018,Politicians,@CarterCenter,RT @HamptonStall: .@CarterCenter #Syria nationwide map from upcoming weekly update. Map is dated April 25 and arrows represent fronts of ad… +04/26/2018,Politicians,@CarterCenter,"Great news about infant mortality and a drug used for trachoma. + +https://t.co/dmi7VZGZ5Y" +04/26/2018,Politicians,@CarterCenter,A groundbreaking study in Africa will have a significant impact on public health and child mortality. “This is a pu… https://t.co/1zoN4ggKGw +04/26/2018,Politicians,@CarterCenter,"We are very sad to hear about the passing of @BrettNorman, a @Politico reporter and 2015/16 Rosalynn Carter Mental… https://t.co/jmrpf4MfLv" +04/26/2018,Politicians,@CarterCenter,"600M+ doses of Azithromycin have been distributed in the fight to end #trachoma worldwide. And now, exciting @NEJM… https://t.co/DdsGdIOj9F" +04/26/2018,Politicians,@CarterCenter,"Promising news in @NEJM: in high-mortality settings, distributing the #trachoma drug Azithromycin reduced deaths am… https://t.co/kGzmoOOqUv" +04/25/2018,Politicians,@CarterCenter,The verdict is in: We are #ReadytoBeatMalaria. Carter Center staff joined partners & talented musicians in #Haiti t… https://t.co/EnC3wbTvuS +04/25/2018,Politicians,@CarterCenter,"RT @SkollFoundation: At #SkollWF, Jimmy Carter reminded us that to achieve lasting global peace, we must look to the Universal Declaration…" +04/25/2018,Politicians,@CarterCenter,"On #WorldMalariaDay, Dr. Jean Frantz Lemoine in Haiti’s federal Ministry of Health is grateful for new ways and mus… https://t.co/3zlAQOL4QH" +04/25/2018,Politicians,@CarterCenter,"RT @CDCGlobal: On this #WorldMalariaDay, CDC Global & many #MalariaZero partners are on the verge of eliminating #malaria from Hispaniola,…" +04/25/2018,Politicians,@CarterCenter,RT @CDCFound: #ReadyToBeatMalaria with targeted interventions in the Grand Anse Department in Haiti. https://t.co/dGGjbUcxVB #MalariaZero #… +04/25/2018,Politicians,@CarterCenter,“We have the tools today to beat malaria in Hispaniola and know that the benefits of creating a malaria-free Caribb… https://t.co/EmIWjtYL7f +04/25/2018,Politicians,@CarterCenter,"RT @MalariaNoMore: We can #endmalaria in the Caribbean by 2020, but continued investment from donors and commitment is essential. Join #Mal…" +04/25/2018,Politicians,@CarterCenter,"For #WorldMalariaDay, we partnered w the Haitian Ministry of Public Health & Population, as part of the Malaria Zer… https://t.co/knamTsoOcf" +04/25/2018,Politicians,@CarterCenter,"RT @ChelseaClinton: On #WorldMalariaDay, a helpful thread from @WHO on the disease and what more we must do to defeat this scourge that sti…" +04/25/2018,Politicians,@CarterCenter,It’s #WorldMalariaDay! We’re honored to join Haiti’s First Lady and more than 300 govt. & civil society representat… https://t.co/7youTQpTE0 +04/24/2018,Politicians,@CarterCenter,We are pleased that #Guineaworm warrior Dr. Don Hopkins is on the list of The World's 50 Greatest Leaders from… https://t.co/uESaZWU769 +04/24/2018,Politicians,@CarterCenter,Mental Health Program Director @DrEveByrd attended the recent Rally to Prevent Suicide in Wash. D.C. Attendees incl… https://t.co/T81LLP2V85 +04/04/2018,Politicians,@farenthold,"This morning the Westside Business Association held their monthly breakfast. Today, Frost Bank presented the differ… https://t.co/sZEOMqN7bs" +04/01/2018,Politicians,@farenthold,"From my family to yours, Happy Easter! We wish you a blessed holiday with your family and loved ones. https://t.co/ZNMbq8OTzw" +03/28/2018,Politicians,@farenthold,At @UnitedCCChamber State of the City lunch with Mayor Joe McComb https://t.co/cZa3jUI8ee +03/27/2018,Politicians,@farenthold,"Today, the Veterans Band of Corpus Christi and the Nueces County Veterans Service Office commemorated the 50th anni… https://t.co/c8ustzu75y" +03/27/2018,Politicians,@farenthold,"Today, Greg McCarthy from my office, who is also an Eagle Scout, presented new Eagle Scouts Jace Stevens and Aaron… https://t.co/meFt07ve8p" +03/22/2018,Politicians,@farenthold,"Today, Luis with my office presented Teacher of the Year certificates during the Portland Chamber of Commerce Lunch… https://t.co/1Zft9wlx0r" +03/16/2018,Politicians,@farenthold,"Sad to hear of the passing of my colleague from NY, Rep. Louise Slaughter. Prayers to her family." +03/16/2018,Politicians,@farenthold,RT @GOPoversight: 🚨ICYMI: Subcommittee Chairman @farenthold visited the U.S. Virgin Islands to assess ongoing hurricane response efforts an… +03/15/2018,Politicians,@farenthold,"More than 3,600 civilian employees work at the @CCADPAO. The amendment I introduced today would help protect these… https://t.co/5bK5z0Zc7B" +03/14/2018,Politicians,@farenthold,It was a packed house at the Aransas Pass Civic Center for the State of the Port of Corpus Christi. @PoccaPort CEO… https://t.co/e6yRgoO9pw +03/14/2018,Politicians,@farenthold,"If you’re having a problem dealing with the federal government, my Red Taper Cutters will be holding mobile office… https://t.co/FFybeVJouH" +03/12/2018,Politicians,@farenthold,"HAPPENING NOW: I am chairing a @GOPoversight Subcommittee on Interior, Environment and Energy field hearing on the… https://t.co/HYz7muX5Zy" +03/12/2018,Politicians,@farenthold,"RT @GOPoversight: Live at 9:30ET➡️The Historic 2017 Hurricane Season: Impacts on the U.S. Virgin Islands. +Watch📺 https://t.co/owXK4B1Yp4 ht…" +03/10/2018,Politicians,@farenthold,"Tonight, @RockportFulton & @UnitedCCChamber held a ribbon cutting ceremony for Rockport Warriors United, a nonprofi… https://t.co/guyUFXblls" +03/09/2018,Politicians,@farenthold,Visited with Mayor Bujan today to check on Port Aransas’ recovery. Great to hear about their successes.… https://t.co/eqjM6uMdfV +03/06/2018,Politicians,@farenthold,"RT @GOPoversight: #Live: The Subcommittee on Interior, Energy, and the Environment examines the U.S. Army Corps of Engineers | Chaired by @…" +03/06/2018,Politicians,@farenthold,"This morning, the Subcommittee on the Interior, Energy and Environment, which I chair, is holding a hearing to exam… https://t.co/vYgDK7Paur" +02/27/2018,Politicians,@farenthold,"If you are having issues with the federal government, my caseworkers will be having mobile office hours tomorrow in… https://t.co/2jUuDb2O20" +02/27/2018,Politicians,@farenthold,Met with @GovAbbott today to discuss Hurricane Harvey disaster relief for #TX27 https://t.co/iB1WFM0J1i +02/15/2018,Politicians,@farenthold,Discussing the Music Modernization Act with songwriters from the @NMPAorg. Thanks for stopping by and performing so… https://t.co/2ZepEGwSWv +02/15/2018,Politicians,@farenthold,"@peterthiel is moving because of left-leaning politics in the Silicon Valley. Might I suggest Texas instead of LA? +https://t.co/pnnQxT7tmI" +02/14/2018,Politicians,@farenthold,Met with officials from @PoccaPort today to discuss the next steps for widening and deepening the port. https://t.co/svxhEakolt +02/13/2018,Politicians,@farenthold,@GovAbbott gave an update on Hurricane Harvey relief & funding at the Rockport Chamber lunch this afternoon. Last w… https://t.co/4V2h8sKHHT +02/13/2018,Politicians,@farenthold,"While this is a great step forward, this is just a proposal. I will continue working to ensure that the @PoccaPort… https://t.co/5Vte62UMjZ" +02/06/2018,Politicians,@farenthold,This morning the Corpus Christi Regional Economic Development Corporation hosted its monthly breakfast. JD & Luis f… https://t.co/eAqfyvyjCc +01/31/2018,Politicians,@farenthold,"Hope no one was seriously injured in today's train crash. Prayers for all involved. Debbie and I were not on the train, we are driving." +01/30/2018,Politicians,@farenthold,President @realDonaldTrump levels the playing field in the skies ending Qatar's unfair practices that hurt American… https://t.co/uDy0vN3Nua +01/30/2018,Politicians,@farenthold,I urge @realDonaldTrump to #ReleaseTheMemo https://t.co/XumrPlKsZR +01/30/2018,Politicians,@farenthold,"If you are having issues with the federal government, my Red Tape Cutters will be having mobile office hours today… https://t.co/vHFjgSvPRc" +01/26/2018,Politicians,@farenthold,"Congratulations to @CCADPAO on producing its 1000th T-55 engine! +https://t.co/2wjL9xBI5X" +01/24/2018,Politicians,@farenthold,Checking out progress on Hurricane Harvey recovery in Aransas County on the Rockport-Fulton Chamber of Commerce bus… https://t.co/PQ0jX0lNsl +01/22/2018,Politicians,@farenthold,"Senate Democrats, led by Chuck Schumer, unnecessarily shut down the government Friday because they put the interest… https://t.co/lYJKTzmhTj" +01/19/2018,Politicians,@farenthold,#ShutdownSchumer putting illegal aliens ahead of our military and children. +01/19/2018,Politicians,@farenthold,Signing onto a letter to urge @HouseIntelComm to #ReleaseTheMemo. +01/19/2018,Politicians,@farenthold,"As the March for Life​ begins outside the Capitol, the House just passed H.R. 4712, the Born-Alive Abortion Survivo… https://t.co/h0bJKDvsWe" +01/18/2018,Politicians,@farenthold,Corpus Christi International Airport will be holding a TSA PreCheck enrollment event from 1/23 to 1/25. https://t.co/T8w8hGHBJR +01/16/2018,Politicians,@farenthold,"Due to inclement weather, our Corpus Christi and Victoria offices are closed for the rest of the afternoon. If you… https://t.co/c5pK6AYKl1" +01/12/2018,Politicians,@farenthold,"FYI: Transitional Shelter Assistance has been extended until March 12, 2018 for those currently displaced by Hurric… https://t.co/WuJIYPQzeE" +01/11/2018,Politicians,@farenthold,"It is troubling that despite having a warrant requirement, the exceptions are so broad they eviscerate the rule. Pa… https://t.co/Umej9p96I9" +01/10/2018,Politicians,@farenthold,I'm disappointed the Rules Committee didn't accept my commonsense amendment to protect your right to privacy. Here… https://t.co/4O90z0y7KO +12/25/2017,Politicians,@farenthold,"From my family to yours - Merry Christmas! I hope your Christmas is blessed with family and friends, and may we nev… https://t.co/UBI61Vw1yU" +12/19/2017,Politicians,@farenthold,"Today, I fulfilled one of my long-term goals serving in Congress; voting for a fairer, flatter and simpler tax code… https://t.co/oYeQku8P3l" +12/12/2017,Politicians,@farenthold,Happy Hanukkah to those who celebrate! 🕎🕯️🎁 https://t.co/EowSAhTnpD +12/11/2017,Politicians,@farenthold,Congratulations again to Christian Bertoni for winning the Congressional App Challenge! #NationalAppDay https://t.co/qjmiiKwkGV +12/11/2017,Politicians,@farenthold,"While this morning’s attempted terrorist attack did not achieve its goal, it’s a harsh reminder of the radicalizati… https://t.co/8942hNCzPV" +12/07/2017,Politicians,@farenthold,"Congratulations to Christian Bertoni, a junior at Hallettsville High School for winning the 2017 Congressional App… https://t.co/EUMwTycd6L" +12/07/2017,Politicians,@farenthold,"76 years ago today, the U.S. naval base at Pearl Harbor was devastated by a surprise military strike that pushed th… https://t.co/TbzlglCo3C" +12/07/2017,Politicians,@farenthold,"Thank you @FLOTUS Melania Trump and Karen Pence for visiting the Coastal Bend, and continuing to show your support… https://t.co/5UDTkHaEYn" +12/06/2017,Politicians,@farenthold,"Just like your state-issued driver’s license is valid in any state, your concealed carry license should be too.… https://t.co/OMKDpL90ah" +11/30/2017,Politicians,@farenthold,"@RileyWi77648955 @fema @TSA @FEMA_Brock @FEMARegion6 @toddahunter Riley, give Nicole in my office a call so she can… https://t.co/A3Nl5iyS2j" +11/30/2017,Politicians,@farenthold,"Happy birthday to my colleague from South Dakota, @RepKristiNoem!" +11/30/2017,Politicians,@farenthold,"For #ComputerSecurityDay, I want to share some helpful tips to ensure that your personal information stays secure. https://t.co/q13v4aLMXc" +11/30/2017,Politicians,@farenthold,🚨 REMINDER: TODAY IS THE FINAL DEADLINE TO APPLY FOR HURRICANE HARVEY RELIEF. 🚨https://t.co/JrmclfjRYr +11/30/2017,Politicians,@farenthold,"This morning, @Transport is holding a markup on the Disaster Recovery Reform Act, legislation that reforms federal… https://t.co/Iugi4sWyX5" +11/29/2017,Politicians,@farenthold,"🚨 Tomorrow, November 30, 2017, is the last day for Texans affected by Hurricane Harvey to register for federal assi… https://t.co/thGvJgLzPj" +11/29/2017,Politicians,@farenthold,I support @POTUS @realDonaldTrump working with Chinese President Xi and other Asian leaders to continue pressuring… https://t.co/hknLpYWv2U +11/29/2017,Politicians,@farenthold,"Happening now: @GOPoversight's Interior subcommittee hearing, ""Regulatory Reform Task Force Check-In."" https://t.co/h7vEXxTMKF" +11/28/2017,Politicians,@farenthold,REMINDER: I am holding a Conference Call with Your Congressman at 6 p.m. CST. https://t.co/6TtUWyYGPO +11/28/2017,Politicians,@farenthold,TONIGHT: I will be holding a Conference Call with Your Congressman tonight at 6 p.m. CST to discuss FEMA and disast… https://t.co/gFQqGXUCD7 +11/27/2017,Politicians,@farenthold,"Happy birthday to my colleague from Arizona, @RepGosar!" +11/27/2017,Politicians,@farenthold,"Over the weekend, Former President George H.W. Bush became the longest-living president in U.S. history at 93 years… https://t.co/Ac7w4j7Oup" +11/23/2017,Politicians,@farenthold,"From my family to yours, Happy Thanksgiving! 🦃🍂👪🇺🇸https://t.co/rcynU506A4" +11/22/2017,Politicians,@farenthold,"OTD in 1995, Toy Story, the first feature-length film created entirely using CGI, was released. To Infinity and beyond!" +11/22/2017,Politicians,@farenthold,"A great new program, sponsored by The Associated Builders and Contractors, will provide veterans with apprenticeshi… https://t.co/2S7Cj0eaX2" +11/22/2017,Politicians,@farenthold,"Today, I visited with Texas State Rep. Phil Stephenson about Harvey recovery and the tax reform bill the House pass… https://t.co/AxrzEFBNYs" +11/21/2017,Politicians,@farenthold,REMINDER: The FEMA Disaster Assistance registration deadline has been extended to November 30. https://t.co/QyeTeZAlhX @fema +11/21/2017,Politicians,@farenthold,"Happy birthday to my colleague from FL, @TomRooney!" +11/21/2017,Politicians,@farenthold,Unemployment rates have hit a four decade low in Texas at 3.9%. https://t.co/qPzMUlF1HT +11/20/2017,Politicians,@farenthold,"This morning, I met with local Alzheimer's Association ambassador, Gracie Cooley. We spoke about the importance of… https://t.co/S47Ke9DFMY" +11/20/2017,Politicians,@farenthold,"It is with a heavy heart that I share some very sad news. Collin Kennedy, who recently worked as my Victoria Field… https://t.co/6t1AwWtKHd" +11/20/2017,Politicians,@farenthold,"Debbie and my thoughts and prayers are with the family of the Border Patrol officer killed over the weekend, as wel… https://t.co/PfVZB7SCDd" +11/17/2017,Politicians,@farenthold,"After reviewing the latest Office of Management and Budget (OMB) supplemental request for disaster recovery, we fin… https://t.co/nAl0FKRUgx" +11/17/2017,Politicians,@farenthold,"OTD in 1800, the United States Congress held its first session in Washington, D.C. https://t.co/Nukt1yj48A" +11/17/2017,Politicians,@farenthold,"Last night, Vanessa with my office attended the House of Palms Banquet at Faith Family Church in Victoria. Faith Fa… https://t.co/sZZMmNRMoR" +11/16/2017,Politicians,@farenthold,"Yesterday, Debbie joined U.S. Secretary of Education, @BetsyDeVosED, in Port Aransas to see the rebuilding and reco… https://t.co/yusqnJGSuQ" +11/16/2017,Politicians,@farenthold,"This pro-growth, pro-family legislation will help you keep more of your paycheck. https://t.co/BGiv9TFGuH" +11/16/2017,Politicians,@farenthold,"Today, I’m wearing purple for World Pancreatic Cancer Day. I lost my great grandmother to this horrible disease. 💜… https://t.co/bmY375fZMt" +11/16/2017,Politicians,@farenthold,It’s time to pass the first comprehensive tax reform legislation since 1986. #HR1 https://t.co/I0isN2HeDb +11/15/2017,Politicians,@farenthold,"Today, @DogBountyHunter and @MrsdogC tracked me down... to talk about H.R. 2152, the Citizens' Right to Know Act. https://t.co/MLamshE7nX" +11/15/2017,Politicians,@farenthold,"Taxpayers are already paying for this data, so they should be able to use it. https://t.co/xRCefOSXHG https://t.co/mUAAFD8pUu" +11/15/2017,Politicians,@farenthold,"Taxpayers are already paying for this data, so they should be able to use it. This legislation allows for people to… https://t.co/yIsQbcHpqt" +11/15/2017,Politicians,@farenthold,".@Cheniere’s new MOU to export LNG to China will be great for TX27 and @PoccaPort, the nation’s largest LNG export… https://t.co/OueJ37yKn8" +11/15/2017,Politicians,@farenthold,"The #TaxCutsAndJobsAct will simplify the complicated tax filing system, so they could be done on a form as simple a… https://t.co/WtRcJm1tWn" +11/15/2017,Politicians,@farenthold,H.R. 4174 will track the effectiveness of federal agencies through data analysis. https://t.co/yLLavQckmq +11/14/2017,Politicians,@farenthold,Click to watch my questioning of Attorney General Jeff Sessions at today's @HouseJudiciary Committee hearing. ⚖️ https://t.co/ucleUgvsbC +11/14/2017,Politicians,@farenthold,"This morning, Attorney General Jeff Sessions will testify before the @HouseJudiciary at an oversight hearing for… https://t.co/ZO6kS2qTRt" +11/13/2017,Politicians,@farenthold,Port Aransas ISD celebrated Veterans Day this morning to honor and thank veterans from all branches for their servi… https://t.co/sIDMMguQYs +11/13/2017,Politicians,@farenthold,"OTD in 1982, the Vietnam Veterans Memorial was dedicated in DC. The memorial wall is etched with 58,318 names. https://t.co/lfa2sPhTJO" +11/13/2017,Politicians,@farenthold,#HR3071 will require each executive agency to examine its equipment acquisition practices to save taxpayer dollars. https://t.co/d3UHaGJdoT +11/13/2017,Politicians,@farenthold,What an inspirational story about a Marine veteran who lost both of his legs in Afghanistan and just completed 31 m… https://t.co/Qlt2v63vV4 +11/11/2017,Politicians,@farenthold,"99 years ago today, at the 11th hour of the 11th day of 11th month, WWI ended. This morning at the 11th hour, the… https://t.co/jsn3qUiptA" +11/11/2017,Politicians,@farenthold,It was an honor and privilege to speak at the Victoria Veterans Day ceremony this morning. I thanked our veterans f… https://t.co/tW9iKqiP2W +11/11/2017,Politicians,@farenthold,"Today, we commemorate Veterans Day and honor those who served our country. We should always remember that we must k… https://t.co/sbZcqXCs89" +11/10/2017,Politicians,@farenthold,"Earlier today, Luis with my office attended the TAMUCC Veterans Day Ceremony, where CAPT. Steve Banta (Ret) was the… https://t.co/cbSd8jqqlC" +11/10/2017,Politicians,@farenthold,"Happy birthday to my colleague from OH, @RepBillJohnson!" +11/10/2017,Politicians,@farenthold,Happy 242nd birthday to the United States Marine Corps! 🇺🇸@USMC https://t.co/jbdg8n65OO +11/09/2017,Politicians,@farenthold,"It’s time for Congress to take a hard look at the @TSA, which can’t seem to get its act together. https://t.co/bFYQuXua4S" +11/09/2017,Politicians,@farenthold,"Happy birthday to my colleagues from NY, @RepJohnKatko, and CO, @RepTipton!" +11/09/2017,Politicians,@farenthold,"Commander Solis has touched the lives of thousands of students, instilling them with values of patriotism, loyalty,… https://t.co/8j85YRqQY5" +11/08/2017,Politicians,@farenthold,"Today, we highlight the importance of STEM fields and education. #NationalSTEMDay https://t.co/aWCTdn8nls" +11/08/2017,Politicians,@farenthold,.@HouseJudiciary is marking up H.R. 3989 which deals with the way the govt conducts surveillance. I’m working hard… https://t.co/EejUbgL7iO +11/08/2017,Politicians,@farenthold,"Congratulations to Rockport-Fulton senior and former intern, Blake Mieth! Keep up the awesome work! https://t.co/rhqbex9ydz" +11/08/2017,Politicians,@farenthold,"Congratulations to George Gonzales, his team, and everyone at @CCADPAO, who are doing an outstanding job of ensurin… https://t.co/KVu7N4nlqW" +11/08/2017,Politicians,@farenthold,"OTD in 1916, Jeanette Rankin was elected the first woman elected to Congress. https://t.co/ZCQTRQQ1fc" +11/07/2017,Politicians,@farenthold,"Today, the House votes to provide former military members with better mental health care. #HR918 https://t.co/Bi0XbLX7Ul" +11/07/2017,Politicians,@farenthold,I’m hopeful that President @realDonaldTrump’s visit to Asia will push North Korea to come to the table. https://t.co/f7XAPwma4l +11/07/2017,Politicians,@farenthold,It’s important the House passes the PAWS Act & allows the VA to examine providing vets w/PTSD with service dogs. 🐕🇺🇸 https://t.co/aqd7z0iTVH +11/07/2017,Politicians,@farenthold,"Happy birthday to my colleague from MO, @RepSamGraves!" +11/06/2017,Politicians,@farenthold,RT @TexasGameWarden: Honored that Asst Cmdr B Reeder testified last week on Capitol Hill at House Subcommittee mtg discussing combating ill… +11/06/2017,Politicians,@farenthold,.@POTUS has ordered all US flags be flown at half-staff in honor of those killed and wounded in Sutherland Springs. https://t.co/OxF7vthzfz +11/06/2017,Politicians,@farenthold,#HR3122 will make sure the VA works to protect low-income and older vets from scam artists. https://t.co/uPjfFlRrJg +11/05/2017,Politicians,@farenthold,Houses of worship should always be held sacred. My heart is w/TX28 and our fellow Texans touched by today's attack. https://t.co/1SIioIXrne +11/04/2017,Politicians,@farenthold,"Had a great lunch at Tivoli High School, where the seven seniors are holding a steak sale for Hurricane Harvey reli… https://t.co/ZffkfaYUlj" +11/03/2017,Politicians,@farenthold,@JessicaSavageCC Congratulations! +11/03/2017,Politicians,@farenthold,"Happy birthday to my colleague from WA, @HerreraBeutler!" +11/02/2017,Politicians,@farenthold,"""This pro-growth, pro-family tax reform bill will help you keep more money from your paychecks..."" https://t.co/ShhES8XDdq" +11/02/2017,Politicians,@farenthold,"RT @GOPoversight: Live now-> We examine ways to resolve the shark finning problem. +https://t.co/nuTIekOOic https://t.co/MJvL259XRo" +11/02/2017,Politicians,@farenthold,#HappeningNow: Examining the Regulation of Shark Finning in the United States. 📺⬇️ https://t.co/Az19USbKIP @GOPoversight +11/02/2017,Politicians,@farenthold,"After a wild 7 games, congrats to the Houston @astros on winning their first ever #WorldSeries! #TexasStrong ⚾🏆 https://t.co/oZbQHvJcUg" +11/02/2017,Politicians,@farenthold,"RT @Salient_CRGT: If you don’t know how customers are seeing you, you can’t fix it. - Cong. @farenthold #CXSummit @GovExec @Nextgov @Frank_…" +11/02/2017,Politicians,@farenthold,RT @Frank_Konkel: Congressman @farenthold talking about opening government’s data and improving federal customer experience at @GovExec’s #… +11/01/2017,Politicians,@farenthold,Just spoke to @Liz_Wheeler on @OANN about tax reform. Be sure to tune into her show tonight at 8 p.m central. https://t.co/lnghl3CGG7 +11/01/2017,Politicians,@farenthold,"This World Series has been exciting, but it’s time for the @astros to win it all tonight! Go ‘Stros! #WorldSeries⚾ https://t.co/VQUWvVXS7C" +11/01/2017,Politicians,@farenthold,Net neutrality hearing today @HouseJudiciary on who is best suited to regulate the internet - the @FCC or the @FTC. https://t.co/oXC8BZFwkQ +11/01/2017,Politicians,@farenthold,We must continue our fight against radicalization both at home and abroad. https://t.co/CcykUn6anu +11/01/2017,Politicians,@farenthold,"RT @SpeakerRyan: Proud to introduce a bill yesterday with @TGowdySC, @RepDerekKilmer, @farenthold, @SenBrianSchatz, & @PattyMurray. https:/…" +10/31/2017,Politicians,@farenthold,"For Howl-o-ween, unofficial DC office mascot Dale is dressing up as one of his favorite paw-liticians… https://t.co/iiv6CeI4Ry" +10/31/2017,Politicians,@farenthold,I've enjoyed my time working alongside @RepHensarling and I wish him the best of luck. https://t.co/6strEvbWdl +10/31/2017,Politicians,@farenthold,ICYMI – I spoke with @FoxNews over the weekend about the upcoming investigations into the Uranium One deal. https://t.co/BO8wcvDsSg +10/31/2017,Politicians,@farenthold,"The deadline for the Congressional App Challenge is tomorrow, be sure to get your entries in! https://t.co/xOxciiIbIh @CongressionalAC" +10/31/2017,Politicians,@farenthold,Seems like @Whataburger costumes are the Texas meme for this Halloween. 🎃 2 Stories: https://t.co/hfoyea966E https://t.co/UsSs7NZgLX +10/31/2017,Politicians,@farenthold,Happy Halloween! https://t.co/35t8aiWwWk +10/30/2017,Politicians,@farenthold,"OTD in 1938, Orson Welles broadcast his infamous radio play of The War of the Worlds. https://t.co/SmR0eqse8a" +10/27/2017,Politicians,@farenthold,"""If you're having a problem with a federal agency, call my Red Tape Cutters at 361-884-2222."" @bobjonescc" +10/27/2017,Politicians,@farenthold,I'm talking live with @bobjonescc on @1440KEYSAM. https://t.co/Ng0VS1q3Y0 +10/26/2017,Politicians,@farenthold,REMINDER: There is one week left in the 2017 Congressional App Challenge! Be sure to get those entries in! https://t.co/xOxciiIbIh +10/26/2017,Politicians,@farenthold,Thank you to the brave men and women deployed to defend our country. #dayofthedeployed +10/26/2017,Politicians,@farenthold,It looks like there may have been Russian collusion last election… involving the DNC and the Clinton Campaign. https://t.co/8GSHB5ujtC +10/25/2017,Politicians,@farenthold,"ICYMI - The video from my Conference Call With Your Congressman is viewable online. + 📹 + https://t.co/Ro8ZRBOKuU" +10/25/2017,Politicians,@farenthold,Spoke to @KendallForward of @OANN today about @HouseJudiciary & @GOPoversight's probe into DOJ actions last electio… https://t.co/TF3E6shefn +10/25/2017,Politicians,@farenthold,.@GOPoversight & @HouseJudiciary announce probe into DOJ actions during 2016 election. https://t.co/QSnPaFRypt +10/25/2017,Politicians,@farenthold,"Last night, the House passed the Otto Warmbier Act, which will enact sanctions on North Korea’s backers in China. https://t.co/Y4pGmN6hAH" +10/24/2017,Politicians,@farenthold,Go Houston Astros! ⚾ #WorldSeries @astros https://t.co/pT4PuYpR6O +10/24/2017,Politicians,@farenthold,The Social Security Administration has announced a 2% cost-of-living adjustment for 2018. https://t.co/68aJXPFLgc @SocialSecurity +10/24/2017,Politicians,@farenthold,"Corpus Christi will soon be the home to a minor league soccer team, Corpus Christi FC. https://t.co/4ZChZWq3Op" +10/23/2017,Politicians,@farenthold,"""We need to look at our government programs because there are some out there that incentivize not working over getting a job."" @1360KKTX" +10/23/2017,Politicians,@farenthold,“This budget sets up the mechanism for reconciliation that will allow tax reform.” @1360KKTX +10/23/2017,Politicians,@farenthold,I’m live on the air with Lago on @1360KKTX. Tune in! https://t.co/mmtp8Og3tH +10/22/2017,Politicians,@farenthold,"Join me LIVE on my ""Conference Call With Your Congressman,"" going on right now: https://t.co/Ro8ZRBOKuU" +10/22/2017,Politicians,@farenthold,I’ll be hosting a “Conference Call with your Congressman” tonight at 6:00 p.m. CDT. https://t.co/DJ5KsqDvdj +10/21/2017,Politicians,@farenthold,"Tomorrow, I will be hosting a “Conference Call with your Congressman” at 6:00 p.m. CDT. https://t.co/rE55aXzdVg" +10/20/2017,Politicians,@farenthold,"Happy birthday to my colleague and fellow Texan @RepRatcliffe and colleague from PA, @RepMeehan!" +10/20/2017,Politicians,@farenthold,RT @PoccaPort: Project Partnership Agreement signed for CC Ship Channel Improvement Project! @farenthold Chairman Zahn with Col Zetterstro… +10/20/2017,Politicians,@farenthold,The deadline to apply for FEMA disaster aid has been extended until 11/24/2017. https://t.co/oWD9hEcjE7 +10/20/2017,Politicians,@farenthold,REMINDER: I will be hosting a “Conference Call With Your Congressman” this Sunday night. https://t.co/h4gOQmdMgc +10/19/2017,Politicians,@farenthold,I’ll be holding a “Conference Call With Your Congressman” this Sunday at 6 p.m. https://t.co/81wyOr3wua +10/19/2017,Politicians,@farenthold,"OTD in 1781, reps of Lord Cornwallis surrendered to Washington @ Yorktown. You can see the painting of the moment o… https://t.co/DfIFFukzvm" +10/18/2017,Politicians,@farenthold,"OTD in 1954, @TXInstruments announced the first transistor radio. https://t.co/OC9UKhc9hh" +10/18/2017,Politicians,@farenthold,The Congressional App Challenge ends on November 1. Be sure to get your entries in! https://t.co/xOxciiqAQJ @CongressionalAC +10/18/2017,Politicians,@farenthold,"Happy birthday to my colleague from FL, @RepDennisRoss!" +10/17/2017,Politicians,@farenthold,My office will be holding a FEMA town hall tomorrow night in Bayside. https://t.co/Tw4eh6aFfC +10/17/2017,Politicians,@farenthold,"I attended the Victoria Partnership meeting this morning, where we discussed Harvey recovery, Victoria Regional Air… https://t.co/VaQOkq13ar" +10/17/2017,Politicians,@farenthold,Be sure to check out the great video tribute to Selena on @Google’s homepage today. https://t.co/uOOAlDs27x +10/17/2017,Politicians,@farenthold,"OTD in 1839, Mirabeau Lamar, president of the Republic of Texas, and his cabinet arrived in the new capital city of… https://t.co/pZdpUmSuwH" +10/17/2017,Politicians,@farenthold,I'm live in studio with @WadeandCarter 🎙 listen in ➡️ https://t.co/8QtzarlKsN +10/16/2017,Politicians,@farenthold,"Happy birthday to my colleague from MI, @repdavetrott, and NJ, @RepTomMacArthur!" +10/16/2017,Politicians,@farenthold,I want to know your thoughts on the GOP tax framework. Please read it and respond. https://t.co/Cz6UApTM8q +10/15/2017,Politicians,@farenthold,"Congratulations to Belinda Casanova on an outstanding year as chairman of the Ingleside Chamber, and Jane Gimler fo… https://t.co/6QSCZYuWBr" +10/13/2017,Politicians,@farenthold,Hazard mitigation specialists will be providing free repair and rebuilding advice in Nueces County until the 22nd. https://t.co/Dtc4uTnaGd +10/13/2017,Politicians,@farenthold,"Happy 242nd Birthday, @USNavy! https://t.co/5pprIpmpAJ" +10/13/2017,Politicians,@farenthold,"Happy birthday to my colleague from MO, @RepHartzler!" +10/12/2017,Politicians,@farenthold,Repealing and replacing Obamacare remains as one of my top priorities. https://t.co/tD9EN9DBWb +10/12/2017,Politicians,@farenthold,We cannot delay much needed flood insurance payments to Texans who paid for flood insurance & were ravaged by Harvey https://t.co/5QnjzvQhUx +10/12/2017,Politicians,@farenthold,A great program at @DelMarCollege is teaching future truckers how to stem the tide of human trafficking. https://t.co/VFAATcQ5WG +10/12/2017,Politicians,@farenthold,Happy #NationalFarmersDay to the hardworking farmers of TX27! https://t.co/guQTeGESEf +10/12/2017,Politicians,@farenthold,Happy birthday to my colleague from CA and @HouseForeign Chairman @RepEdRoyce! +10/12/2017,Politicians,@farenthold,I support @realDonaldTrump’s decision to withdraw the US from UNESCO until the body undergoes serious reforms. https://t.co/9TLinyYSFX +10/11/2017,Politicians,@farenthold,Congratulations @joegazin on celebrating 40 years at @kiii3news! https://t.co/8imLzqa7J4 +10/11/2017,Politicians,@farenthold,Thank you to @TeamRubicon for the help they have provided TX27 and @JaniceDean of @FoxNews for sharing their story. https://t.co/1vBxEIXX4M +10/11/2017,Politicians,@farenthold,"OTD in 1890, @TodaysDAR was founded in Washington, D.C." +10/11/2017,Politicians,@farenthold,"Happy birthday to my colleague and fellow Texan @SamsPressShop, and Tennessean, @RepChuck!" +10/10/2017,Politicians,@farenthold,"OTD in 1845, @NavalAcademy opened in Annapolis. You can find out more about academy nominations at my event tonight. https://t.co/mtjzTzkqUZ" +10/10/2017,Politicians,@farenthold,Happy #DoubleTenDay Taiwan! https://t.co/Me7HhaveDd +10/07/2017,Politicians,@farenthold,Thank you to @JaniceDean from @FoxNews for highlighting the amazing work that @TeamRubicon is doing to rebuild TX27. https://t.co/ZFDW1j9LNa +10/06/2017,Politicians,@farenthold,"Happy birthday to my good friend and colleague, @SteveScalise! It’s great to have you back!" +10/06/2017,Politicians,@farenthold,There will be a meeting for farmers and ranchers in need of disaster relief on October 12th. https://t.co/eCYiEJmc3r +10/05/2017,Politicians,@farenthold,"Yesterday, @WhiteHouse sent a formal request to Congress requesting more disaster relief for the recent hurricanes. https://t.co/GwwyyNDE3p" +10/05/2017,Politicians,@farenthold,A new tax reform plan will allow you to keep more of your money in your pocket. Find out more -> https://t.co/Cz6UAqbmZY +10/05/2017,Politicians,@farenthold,Congratulations George Gonzales for being named the Donald F. Luce Depot Maintenance Artisan of the Year! https://t.co/6ili2ZJZu4 +10/04/2017,Politicians,@farenthold,A new FEMA disaster recovery center opened yesterday at La Palmera Mall. https://t.co/cokoTrQP1x +10/04/2017,Politicians,@farenthold,The Red Cross will be reassessing applications from Port Aransas that were denied the first time. https://t.co/1nZenlisbN +10/04/2017,Politicians,@farenthold,"Happy #NationalTacoDay! Next time you’re in TX27, be sure to have some of the best tacos in Texas! https://t.co/dUtjgTNJhE" +10/04/2017,Politicians,@farenthold,I am proud to represent so many South Texans that are proud of our military and honoring fallen military aviators. https://t.co/Ys5iNjEFi9 +10/03/2017,Politicians,@farenthold,ICYMI – Click below to watch the FEMA town hall I held last Friday in Port Aransas. https://t.co/noiyCYdk5K +10/03/2017,Politicians,@farenthold,"Less than a year in, the Trump Administration has already saved $560 million by cutting bad regulations. https://t.co/lsYhDIINwp" +10/03/2017,Politicians,@farenthold,RT @Energy_Dialogue: Legislative panel @ #NAGF17 @natgas_ngsa @Energy_Dialogue @RepTipton @RepCuellar @RepBillJohnson @RepJoeBarton @farent… +10/02/2017,Politicians,@farenthold,Horrified to wake up to the news of the Las Vegas shooting. I'm praying for the victims and their loved ones. +09/29/2017,Politicians,@farenthold,FEMA is looking for temporary local workers to help out with recovery efforts. https://t.co/jI2S8Fm8Uj +09/29/2017,Politicians,@farenthold,"OTD in 1789, the 1st United States Congress adjourned at Federal Hall in New York City." +09/29/2017,Politicians,@farenthold,"On #NationalVFWDay, let's take a moment to remember the VFWs that were impacted by Hurricane Harvey. This was the V… https://t.co/AbMxl5Rcyo" +07/01/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: When people come into our Country illegally, we must IMMEDIATELY escort them back out without going through years of l…" +07/01/2018,Politicians,@MooreSenate,"RT @dbongino: Jim Acosta has become an ongoing comedy act. Yet, ironically, he thinks he’s helping rescue the broken reputation of the medi…" +07/01/2018,Politicians,@MooreSenate,RT @NASA: Scientists are using Earth to study distant worlds that orbit stars outside our solar system in an effort to answer big questions… +07/01/2018,Politicians,@MooreSenate,RT @washingtonpost: North Korea is working to conceal key aspects of its nuclear program and does not intend to fully surrender its stockpi… +07/01/2018,Politicians,@MooreSenate,RT @cs0058sc: 😡😡POPE TELLS U.S. TO OPEN BORDERS TO FLOODS OF ILLEGALS. This is no Pope. He is a left wing radical activist for globalism.… +07/01/2018,Politicians,@MooreSenate,"RT @JudgeJeanine: “Socialists want what you have. I for one work hard, pay taxes, believe in capitalism, and have no plan to move to Venezu…" +07/01/2018,Politicians,@MooreSenate,RT @DanScavino: “@GovMikeHuckabee: Trump could nominate Moses for Supreme Court and Democrats would fight it” https://t.co/5wx3nVJxvF +07/01/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Iron trainer = Iron 🐶! + +Press ▶️ for the story of @USNavy #sailor Ashly Lester and how she became a two-time winner of #…" +06/30/2018,Politicians,@MooreSenate,"RT @HHSGov: As many parts of the U.S. face an excessive heat warning, know how to spot heat stroke–and know when it's time to get medical h…" +06/30/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Working together. + +#USSWilliamPLawrence sails with Japanese 🇯🇵 ship JS Ise, Singaporean 🇸🇬 ship RSS Tenacious, Indian 🇮🇳…" +06/30/2018,Politicians,@MooreSenate,"RT @FoxBusiness: .@IvankaTrump: ""I think one of the tremendous opportunities that were seeing because the economy is so strong is that peop…" +06/28/2018,Politicians,@MooreSenate,"RT @JudicialWatch: NEW: When Maxine Waters encouraged violence against Trump Cabinet members, it wasn’t the first time she displayed behavi…" +06/28/2018,Politicians,@MooreSenate,RT @SonjaHHarris: The Left has been screaming at the top of their lungs about the children at the border being RIPPED from their mother's a… +06/28/2018,Politicians,@MooreSenate,"RT @MichaelCohen212: My family & I are owed an apology. After 2 years, 15 hours of testimony before House & Senate under oath & producing m…" +06/28/2018,Politicians,@MooreSenate,RT @JudgeJeanine: At the Statue of Liberty 🗽 https://t.co/6LLJKmPrYa +06/28/2018,Politicians,@MooreSenate,RT @realDonaldTrump: Just landed in North Dakota with @SenJohnHoeven and @RepKevinCramer. We will see everyone at Scheels Arena shortly! ht… +06/28/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Can you say #airpower? 💪🏿💪🏾💪🏻 + +@USAirForce #F15E Strike Eagles with the 4th Fighter Wing get in formation behind a #KC13…" +06/28/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Thank you North Dakota. Together, we are MAKING AMERICA SAFE AND GREAT AGAIN! #MAGA https://t.co/6Am9n6px8I" +06/28/2018,Politicians,@MooreSenate,Do you remember when you joined Twitter? I do! #MyTwitterAnniversary https://t.co/fQmVezlzXa +06/27/2018,Politicians,@MooreSenate,"RT @bigleaguepol: Proving once again that President Trump’s election was truly consequential! + +BREAKING: Justice Kennedy Retiring from Sup…" +06/27/2018,Politicians,@MooreSenate,"RT @washingtonpost: Have you ever watched a fireworks show in America? + +Chances are this Chinese businessman supplied it, but many have nev…" +06/27/2018,Politicians,@MooreSenate,"RT @USUN: ""The United States will not allow #Iran’s violations and destructive actions to go unchecked, and we urge members of the Security…" +06/27/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Today, I was thrilled to join student leaders from Colleges and Universities across the country... https://t.co/OQp3Nc…" +06/26/2018,Politicians,@MooreSenate,RT @HHSGov: Many people become more forgetful as they age. How can you tell the difference between mild forgetfulness and serious memory pr… +06/26/2018,Politicians,@MooreSenate,"RT @DeptofDefense: #OTD: June 26 marks the 70th anniversary of the beginning of the #BerlinAirlift, America’s first major test of resolve d…" +06/26/2018,Politicians,@MooreSenate,RT @DeptofDefense: Raise it up! A @USNavy #sailor raises the First Navy Jack aboard #USSMountWhitney while arriving in #Germany 🇩🇪 for Kiel… +06/26/2018,Politicians,@MooreSenate,"RT @NASA: We’re sending a helicopter to Mars! As the first helicopter to ever fly on a planetary body other than Earth, our #Marscopter wil…" +06/26/2018,Politicians,@MooreSenate,"RT @FoxBusiness: .@RepMaxineWaters moments ago: ""I have not called for the harm of anybody. This @POTUS has lied again, when he's saying th…" +06/25/2018,Politicians,@MooreSenate,RT @TheEconomist: Its objectives include freeing women from violence and furthering their political participation and economic empowerment… +06/25/2018,Politicians,@MooreSenate,"RT @HHSGov: When you learn new things, you engage your #brain. Find out some ways you can challenge your brain and stay on top of your game…" +06/25/2018,Politicians,@MooreSenate,"RT @CNN: Shares of Campbell Soup rose more than 10% Monday following a report hat said Kraft Heinz is ""very interested"" in trying to buy th…" +06/25/2018,Politicians,@MooreSenate,RT @TheEconomist: How can we make that happen? Read what @margotwallstrom proposes is the solution #OpenFuture https://t.co/rpkdT5FzSB http… +06/25/2018,Politicians,@MooreSenate,RT @theoverheadwire: Weekend's Most Read #1: Stopping the decline of transit in rich countries https://t.co/cfTM525RW7 @TheEconomist +06/25/2018,Politicians,@MooreSenate,"RT @JenNongel: I’M + PROUD + TO + BE + EVERYTHING…" +06/25/2018,Politicians,@MooreSenate,RT @seanhannity: https://t.co/BKlak9AHOL +06/25/2018,Politicians,@MooreSenate,RT @FoxNews: Sprint car driver Jason Johnson dead after racing crash https://t.co/z3e08q4uvQ +06/25/2018,Politicians,@MooreSenate,RT @FoxNews: Dow down on trade concerns @AmericaNewsroom https://t.co/rp0I1bGdKG +06/25/2018,Politicians,@MooreSenate,RT @libertarianism: We are currently living through a revolution in education. https://t.co/cRblIUJMRM +06/25/2018,Politicians,@MooreSenate,RT @FoxBusiness: Trump Space Force could fuel next trillion-dollar economy: Morgan Stanley https://t.co/AI0uHqMv7V +06/25/2018,Politicians,@MooreSenate,RT @ABC: NEW: Trump ally and Blackwater founder Erik Prince has provided special counsel Robert Mueller with “total access to his phone and… +06/25/2018,Politicians,@MooreSenate,"RT @ABC: As the government plans Arctic refuge drilling, activists vow to continue protests: “The survival of that place is really a part o…" +06/25/2018,Politicians,@MooreSenate,RT @beinlibertarian: https://t.co/xi6FRIXb6H +06/25/2018,Politicians,@MooreSenate,RT @CNN: What 40 years of 'Space Invaders' says about the 1970s -- and today https://t.co/UaA2bwlx88 via @CNNStyle https://t.co/Xc9H8djgd8 +06/24/2018,Politicians,@MooreSenate,RT @Reuters: Kane fires England to record 6-1 win against Panama https://t.co/p0UWLZN8dR https://t.co/EoJ2fJglU4 +06/24/2018,Politicians,@MooreSenate,RT @derekalberts1: Expect a spotless stadium after this clash #JAPSEN https://t.co/gLKVVXCKbt +06/24/2018,Politicians,@MooreSenate,"RT @TheBarmyArmy: YESSS!!!! + +Jos Buttler's incredible century takes us to a series whitewash over Australia. GET IN!! 👏🙌 + +#ENGvAUS https://…" +06/24/2018,Politicians,@MooreSenate,RT @DonaldJTrumpJr: Don Jr. storms the midterms https://t.co/E6NYQQVfrN via @politico +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: If Saturn were as close as the moon https://t.co/qed2ZVbTWl +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Pacific City https://t.co/zIktd89Kf1 +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Takhlakh Lake https://t.co/rgl1PfwBUL +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Oregon https://t.co/YtDhAl64k1 +06/24/2018,Politicians,@MooreSenate,"RT @HHSGov: Did you know that nearly 1 in 5 men smoke cigarettes? If you quit smoking, it can help reduce the risk of cancer, heart disease…" +06/24/2018,Politicians,@MooreSenate,RT @NASA: Mystery solved! A new study explains why two glaciers that flow side by side in northwest Greenland are melting at radically diff… +06/24/2018,Politicians,@MooreSenate,RT @TeamTrump: #TeamTrump in Ft. Worth for round table discussions #Texas on #TrumpTour #DFW #MAGA 🇺🇸 https://t.co/StqbPdauw9 +06/24/2018,Politicians,@MooreSenate,RT @foxandfriends: HEGSETH VS. HENRY: @PeteHegseth and @edhenry went head-to-head in yesterday’s After the Show Show - see who won! https:/… +06/24/2018,Politicians,@MooreSenate,RT @TeamTrump: #TeamTrump in #Midland #TX for round table discussions. June #TrumpTour #MAGA 🇺🇸 https://t.co/fu0fFUGm45 +06/24/2018,Politicians,@MooreSenate,"RT @tabithanaylor: It's Pink Day! A great day to encourage everybody to wear at least a little bit of pink – guys included! + +Do you think i…" +06/24/2018,Politicians,@MooreSenate,RT @NASAhistory: Did you see the #supermoon that happened #today in 2013? Supermoons happen when a full Moon occurs at or near the Moon's p… +06/24/2018,Politicians,@MooreSenate,RT @realDonaldTrump: Major Wall Street Journal opinion piece today talking about the Russian Witch Hunt and the disgrace that it is. So man… +06/24/2018,Politicians,@MooreSenate,RT @DHSgov: Fact Sheet: Zero-Tolerance Prosecution and Family Reunification https://t.co/Mnymy5xXvj +06/24/2018,Politicians,@MooreSenate,RT @DeptofDefense: Getting the job done. A #C17 aircraft drops equipment for the @173rdAbnBde Combat Team during an airborne insertion exer… +06/23/2018,Politicians,@MooreSenate,Took too Much... https://t.co/86yNYgNog1 +06/23/2018,Politicians,@MooreSenate,Happy Birthday https://t.co/b9UG3okdc8 +06/23/2018,Politicians,@MooreSenate,RT @foxandfriends: “The separation here is from the facts”: White House reacts to TIME magazine’s misleading cover https://t.co/WV09opOw9a +06/23/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Drudge Report “OBAMA KEPT THEM IN CAGES, WRAPPED THEM IN FOIL” We do a much better job while at the same time maintai…" +06/23/2018,Politicians,@MooreSenate,RT @r_wibberley: What an absolute privilege it has been spending the last 2 days at the 38th Session of the Human Rights Council in Geneva… +06/23/2018,Politicians,@MooreSenate,RT @Newsweek: Cynthia Nixon calls ICE a “terrorist organization” led by “egomaniacal” Donald Trump https://t.co/14gKM0qSw3 https://t.co/fge… +06/23/2018,Politicians,@MooreSenate,RT @TomArnold: Michael Cohen didn’t say Me & him were teaming up to take down Donald Trump! Michael has enough Trump on his plate. I’m the… +06/23/2018,Politicians,@MooreSenate,"RT @PalmerReport: Donald Trump’s day so far: + +- Michael Cohen with Tom Arnold +- Insane Trump press conference +- UN condemns his child “tort…" +06/23/2018,Politicians,@MooreSenate,"RT @MaddowBlog: ""The way that Donald Trump describes what's happening down on the border in Washington, D.C. is just about as far removed f…" +06/23/2018,Politicians,@MooreSenate,"RT @Lawrence: If Donald Trump can be president, Tom Arnold can be an investigative reporter. + + @TomArnold joins @TheLastWord tonight 10pm." +06/23/2018,Politicians,@MooreSenate,"RT @TheRickWilson: Line I wanted to use in this article but can't fit: + +""Donald Trump is a soft creature, indolent, cosseted, and overfed.…" +06/23/2018,Politicians,@MooreSenate,"RT @VP: Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the @WhiteHouse today. @POTUS…" +06/23/2018,Politicians,@MooreSenate,"RT @NASA: This week, our administrator @JimBridenstine attended the third National Space Council meeting, we announced an action plan for n…" +06/23/2018,Politicians,@MooreSenate,RT @RealJoshReddick: What a day today was. Took advantage of an off… https://t.co/S0zG3ARiXW +06/23/2018,Politicians,@MooreSenate,RT @Scavino45: REQUESTED by family members after their private meeting and visit to the Oval Office - which took place before public remark… +06/23/2018,Politicians,@MooreSenate,"RT @FoxBusiness: Steel maker JSW to build new plant, invest $500M after Trump tariffs https://t.co/pR3rIVvvZG" +06/23/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Thunderbolt line. ✈️⚡ + +Four #A10 Thunderbolt II aircraft fly next to a #KC135 Stratotanker during #SaberStrike18 in Latv…" +06/27/2018,Politicians,@MittRomney,"Thank you for your gracious support, Rep. Mike Kennedy, and your offer to counsel on Health policy. You show that w… https://t.co/ZCnZJ8XqRZ" +06/24/2018,Politicians,@MittRomney,Here’s where I stand on the Trump Agenda; I appreciate the argument made by those who believe we should stay silent… https://t.co/n7UDn1fVRx +06/22/2018,Politicians,@MittRomney,"With Krauthammer now absent, the nation is bereft a full measure of character and integrity. Ann and I mourn the lo… https://t.co/8i4Zi3e90K" +06/18/2018,Politicians,@MittRomney,I agree that we need a more compassionate answer. https://t.co/3NOPEF0G3o +06/15/2018,Politicians,@MittRomney,".@AnnRomney and I exercised our right to vote by mailing in our ballots. Utahns, remember to vote by mail before Ju… https://t.co/csi641fbmH" +06/09/2018,Politicians,@MittRomney,"Charles’ greatness derives not only from his brilliant mind, blinding insights, and searing commentary; it is that… https://t.co/0zUwGdv3WH" +06/06/2018,Politicians,@MittRomney,RT @DeseretNews: LIVE: @MittRomney to keynote #UtahInnovationSummit followed by award ceremony including lifetime achievement award for LDS… +06/01/2018,Politicians,@MittRomney,"It took some cajoling, but I got a famous Utahn to star in my commercial. https://t.co/AAPxanibTp" +06/01/2018,Politicians,@MittRomney,Congratulations @DougWrightShow on 40 years at @kslnewsradio and a well-deserved retirement. Our conversations over… https://t.co/TbsmjgCpLU +05/28/2018,Politicians,@MittRomney,"""Greater love hath no man than this, that a man lay down his life for his friends."" (John 15:13) Today, we salute t… https://t.co/fCZThaSu0C" +05/26/2018,Politicians,@MittRomney,RT @Romney4Utah: Wonderful day at the Scandinavian Festival in Ephraim! #TeamMITT #utpol @ephraimcity https://t.co/q6Y06VBq3a +05/23/2018,Politicians,@MittRomney,RT @JAofUtah: What an amazing #jainaday at Edison with all our outstanding VIP #volunteers and a special thanks to @MittRomney for presenti… +05/15/2018,Politicians,@MittRomney,RT @Romney4Utah: HAPPENING FRIDAY: A conversation with Mitt & Ann about how principled leadership has guided them through challenging times… +05/15/2018,Politicians,@MittRomney,Prayers for the First Lady and for Harry Reid. Hoping for healing and recovery for both. +05/14/2018,Politicians,@MittRomney,"Robert Jeffress says “you can’t be saved by being a Jew,“ and “Mormonism is a heresy from the pit of hell.” He’s s… https://t.co/wwylmlryQN" +05/13/2018,Politicians,@MittRomney,"Ann and I reflect daily on the lessons our mothers, Lois and Lenore, taught us about life, faith, and family. Today… https://t.co/Meno7umxt6" +05/12/2018,Politicians,@MittRomney,"John McCain makes America great. Father, grandfather, Navy pilot, POW hero bound by honor, an incomparable and irre… https://t.co/U5Qdw78Mtn" +05/08/2018,Politicians,@MittRomney,My statement on the Iran Nuclear Deal. https://t.co/ypqBpaHp6H +04/23/2018,Politicians,@MittRomney,RT @Romney4Utah: MUST LISTEN: @MittRomney's first interview on Saturday's convention results and his plan for the US Senate GOP Primary in… +04/22/2018,Politicians,@MittRomney,Thank you to all the delegates who hung in there with us all day at the Convention. I appreciate the support I rece… https://t.co/O5eLKC9gNo +04/17/2018,Politicians,@MittRomney,"Barbara raised a family of service & character, stood by her beloved husband in the best & worst of times, and spok… https://t.co/K23OQgDBmo" +04/17/2018,Politicians,@MittRomney,"Celebrating Ann's birthday at home with some of our favorite ""neighbors"". Happy birthday, sweetie! https://t.co/jM3yoyhpZ3" +04/15/2018,Politicians,@MittRomney,"Barbara, thank you for your faith and family. Thank you for your conviction, character and fortitude. Thank you for… https://t.co/tlEwqzNQsu" +04/11/2018,Politicians,@MittRomney,"Love of country compelled Paul Ryan to accept the Speakership, a role he alone could fill at a critical time. He un… https://t.co/udQhRBpMVb" +04/05/2018,Politicians,@MittRomney,Tonight at 5p @AnnRomney & I will be at @Hale_Theater in Sandy. Hope you can join us! https://t.co/eMpZxXiBRD #TeamMITT +04/01/2018,Politicians,@MittRomney,"He is risen! He is risen! +Tell it out with joyful voice. +He has burst his three days’ prison; +Let the whole wide ea… https://t.co/eXpxkLHZ22" +03/22/2018,Politicians,@MittRomney,49 years today with the love of my life. https://t.co/GX6eQT60ye +03/21/2018,Politicians,@MittRomney,Incredible caucus night here in Holladay and across the state. Thank you to all who participated in their neighborh… https://t.co/XwduDmGPTZ +03/20/2018,Politicians,@MittRomney,I encourage all Utahns to attend and participate in tonight’s caucuses. Visit https://t.co/3xlRCOw1rp to find your… https://t.co/WUqrp5RoLP +03/19/2018,Politicians,@MittRomney,RT @AnnRomney: Out encouraging women to run as delegates at tomorrow's caucuses. We need more women's voices to be heard at the April Conve… +03/15/2018,Politicians,@MittRomney,"Today, I visited the office of LG @SpencerJCox to officially file for the US Senate race. In the month since I anno… https://t.co/uZY4lAyRGY" +02/21/2018,Politicians,@MittRomney,"Billy Graham lifted eyes toward heaven and instilled heaven’s values in hearts. The world mourns this man of character, this man of God." +02/20/2018,Politicians,@MittRomney,Thank you Mr. President for the support. I hope that over the course of the campaign I also earn the support and en… https://t.co/PyeE0ZhCD9 +02/19/2018,Politicians,@MittRomney,Never too many cooks in the kitchen. https://t.co/FWM33vHpT3 +02/17/2018,Politicians,@MittRomney,Out knocking doors this morning I met Paul and Orva Johnson—was thrilled to earn their support! https://t.co/879nuNRDJX +02/17/2018,Politicians,@MittRomney,Thanks Mayor Vanleeuwen for the warm welcome at Jeremiah’s Restaurant this morning! https://t.co/lyGmW1d3YZ +02/16/2018,Politicians,@MittRomney,Wonderful meeting with @UVU students today. It’s great to see Utah's college students politically active! https://t.co/5vE8tAbGjJ +02/16/2018,Politicians,@MittRomney,This morning I went to @GreenAcresDairy to see their operation and hear about the agricultural issues our hardworki… https://t.co/ivYx32tGdK +02/16/2018,Politicians,@MittRomney,RT @Romney4Utah: Join #TeamMITT. Check out https://t.co/24T6VWkXb1 to get involved and sign up for updates. +02/16/2018,Politicians,@MittRomney,I am running for United States Senate to serve the people of Utah and bring Utah's values to Washington. https://t.co/TDkas6gD2p +02/15/2018,Politicians,@MittRomney,"Out of respect for the victims and their families, I will not be making an announcement tomorrow about the Senate race. (2/2)" +02/15/2018,Politicians,@MittRomney,"As a father and grandfather, my heart aches for the victims of today’s tragic events. My prayers go out to all of t… https://t.co/hniQWm3nOS" +02/09/2018,Politicians,@MittRomney,"I stand in admiration of our Olympians' determination, sportsmanship, and patriotism. May they compete at their bes… https://t.co/WuRSZjaQnU" +02/02/2018,Politicians,@MittRomney,"With Jon Huntsman’s passing, we lose a Lion of Utah. Ann and I will profoundly miss our good friend’s broad smile,… https://t.co/y0D5qJ0i2s" +02/01/2018,Politicians,@MittRomney,Looking forward to making an announcement on February 15th about the Utah Senate race. https://t.co/OLXWZWREEK +01/29/2018,Politicians,@MittRomney,"RT @mcuban: It's time for @twitter to confirm a real name and real person behind every account, and for @facebook to to get far more string…" +01/24/2018,Politicians,@MittRomney,"Over the years, I’ve witnessed the courage of athletes in Olympic Games but I’ve never seen greater Olympic courage… https://t.co/XXvfSEQXxJ" +01/15/2018,Politicians,@MittRomney,The poverty of an aspiring immigrant’s nation of origin is as irrelevant as their race. The sentiment attributed to… https://t.co/7K23QCtXVG +01/03/2018,Politicians,@MittRomney,"Thomas S. Monson walked where Jesus walked, lifting the downtrodden, comforting the wounded, healing the sick, brig… https://t.co/1uVRBLi0xb" +01/02/2018,Politicians,@MittRomney,"I join the people of Utah in thanking my friend, Senator Orrin Hatch for his more than forty years of service to ou… https://t.co/PkJQLpAnPM" +12/31/2017,Politicians,@MittRomney,Profoundly moving to watch those seeking freedom in Iran. Patriots afar remind us of the patriots who won our own f… https://t.co/ZoRvRn4X7Y +12/25/2017,Politicians,@MittRomney,Merry Christmas from our family to you and your family. https://t.co/kep6SnNysO +12/14/2017,Politicians,@MittRomney,"Putin today blames US politics for icy relations. Get real: It was Russia invading sovereign nations, propping up d… https://t.co/8K2Y0pMOCz" +12/05/2017,Politicians,@MittRomney,"By sanctioning Russia, Olympic officials place honor and integrity above money and politics. Russia under Putin is… https://t.co/M2PqwbGGSf" +12/04/2017,Politicians,@MittRomney,Roy Moore in the US Senate would be a stain on the GOP and on the nation. Leigh Corfman and other victims are coura… https://t.co/HaUCH8TE9W +12/02/2017,Politicians,@MittRomney,"A very big week for Utah’s own Senator @OrrinHatch with tax reform, Bears Ears reversion, and a presidential visit." +11/28/2017,Politicians,@MittRomney,"RT @CharityVision: If 1,000 share this & donate at least $1, then we can give eyesight to THIS MANY PEOPLE! Donate at https://t.co/6AKC2tlH…" +11/24/2017,Politicians,@MittRomney,"RT @AnnRomney: On Thanksgiving, you can never have too many cooks in the kitchen! https://t.co/dVODluEBlF" +11/11/2017,Politicians,@MittRomney,"On this Veterans Day, let’s honor our servicemen and women and take a moment to reflect on the sacrifices they make to ensure our liberty." +11/10/2017,Politicians,@MittRomney,"Innocent until proven guilty is for criminal convictions, not elections. I believe Leigh Corfman. Her account is to… https://t.co/J7YLdKENtq" +11/08/2017,Politicians,@MittRomney,"Congratulations, Congressman-elect Curtis! https://t.co/5njtnbWCiH" +11/06/2017,Politicians,@MittRomney,RT @AnnRomney: Happy to vote by mail today for John Curtis for Congress. https://t.co/2KynT599Cx +11/06/2017,Politicians,@MittRomney,"Praying for the people of Sutherland Springs, who today were met with tremendous evil in their most sacred space." +10/31/2017,Politicians,@MittRomney,Overwhelmed today with thought of the pain and heartache suffered by victims and families in New York. God bless these fellow Americans. +10/17/2017,Politicians,@MittRomney,"Ran against him, sometimes disagree, but proud to be a friend of @SenJohnMcCain: hero, champion of character and last night, Lincolnesque." +10/12/2017,Politicians,@MittRomney,"Uncontrolled fires, loss of lives & property = failure of prime govt responsibility, underinvestment in helos, planes, personnel, systems." +10/02/2017,Politicians,@MittRomney,Ann and I pray for the dead and wounded in the Las Vegas massacre. Grateful for the heroes who risked their lives to help the innocent. +09/28/2017,Politicians,@MittRomney,Congratulations to Jon Huntsman Jr. on confirmation as Ambassador to Russia. His experience and clear-eyed resolve are badly needed. +09/25/2017,Politicians,@MittRomney,"Just spoke w/ fmr Gov @luisfortuno51: “PR on brink of humanitarian disaster."" USVI too. DC must put aside controversies, prioritize rescue." +09/25/2017,Politicians,@MittRomney,"Patriot, Uniter, Leader, Hero. https://t.co/Lf4WTO301f" +09/19/2017,Politicians,@MittRomney,"President Trump gave a strong and needed challenge to UN members to live up +to its charter and to confront global challenges." +09/15/2017,Politicians,@MittRomney,Harvard's about-face deserves credit; not easy to admit being wrong. +09/14/2017,Politicians,@MittRomney,"Well done, Mike. And abject shame on Harvard. https://t.co/SfI1HxDpdD" +08/30/2017,Politicians,@MittRomney,Harvey's historic devastation has been met with historic Texas compassion and resolve. A true testament to American character. +08/18/2017,Politicians,@MittRomney,"Having created a natl inflection point of consequence, POTUS must apologize & repudiate the racists. Full statement: https://t.co/6QXd9LWIE3" +08/16/2017,Politicians,@MittRomney,"No, not the same. One side is racist, bigoted, Nazi. The other opposes racism and bigotry. Morally different universes." +08/13/2017,Politicians,@MittRomney,"Racial prejudice, then hate, then repugnant speech, then a repulsive rally, then murder; not supremacy, barbarism." +07/20/2017,Politicians,@MittRomney,".@SenJohnMcCain’s patriotism and courage are vital to the nation. With the fearful news tonight, Ann and I pray for his recovery." +07/18/2017,Politicians,@MittRomney,"Spoke this morning with @SenJohnMcCain re: his health, tax reform, Syria. A true ""Timex hero”: He takes a licking and keeps on ticking." +07/04/2017,Politicians,@MittRomney,"Celebrating independent speech, worship, and association; independence from autocracy; these defining rights and more won at great cost." +07/01/2017,Politicians,@MittRomney,"RT @AnnRomney: This week, our granddaughter returned from her mission in France. So glad to have her home & so proud of her work over the p…" +06/21/2017,Politicians,@MittRomney,Congrats to @karenhandel on a big win in #ga6 tonight! We need more leaders like Karen in Washington. +06/14/2017,Politicians,@MittRomney,.@AnnDRomney and I are praying for a speedy recovery for @SteveScalise and those injured this morning’s shooting in Alexandria. +06/14/2017,Politicians,@MittRomney,"Congratulations to my friend @EdWGillespie on his #VAgov primary win. Here's to electing strong, conservative leaders in November." +06/10/2017,Politicians,@MittRomney,"#E2Summit17 is in the books. Thanks to our speakers, attendees, and volunteers for another great year in Deer Valle… https://t.co/jbAg0jVoBL" +06/09/2017,Politicians,@MittRomney,Follow @E2Summit for official updates from #E2Summit17 in Park City. https://t.co/lxQDaMPUDN +05/31/2017,Politicians,@MittRomney,Affirmation of the #ParisAgreement is not only about the climate: It is also about America remaining the global leader. +05/30/2017,Politicians,@MittRomney,"Our politics have become too base, too low, & too vulgar, but Kathy Griffin's post descends into an even more repugnant & vile territory." +05/29/2017,Politicians,@MittRomney,"Today, we remember the fallen, who, as Pres Reagan noted, were all different ""but they shared this in common: They loved America very much.""" +05/14/2017,Politicians,@MittRomney,"#happymothersday to @AnnDRomney, who with 24 grandchildren, continues to be an example of strength and grace to a 2… https://t.co/Fu4qyKhv9C" +04/27/2017,Politicians,@MittRomney,This year's @CharityVision project took us to Indonesia. https://t.co/6BBXvGgcd0 +04/16/2017,Politicians,@MittRomney,RT @AnnDRomney: From our family to yours: wishing you peace and joy as we celebrate the good news. https://t.co/9YFHNROgGG +03/28/2017,Politicians,@MittRomney,"Ann’s best-seller ""In This Together"" is out today in paperback. All her proceeds go to neurologic disease research. https://t.co/1dCYKTV5qd" +03/21/2017,Politicians,@MittRomney,Celebrating our 48 years of marriage with some of its products. https://t.co/geOGezQOpA +03/15/2017,Politicians,@MittRomney,I'm a fan of proposed Deputy Treasury Secretary Jim Donovan. A qualified person of integrity and a friend for many years. +02/28/2017,Politicians,@MittRomney,Thanks to the WashU students and @DeanNancyStaudt for hosting me this afternoon. Really enjoyed your thoughtful que… https://t.co/sJgyMt0jmJ +02/27/2017,Politicians,@MittRomney,"Congrats to my great-nephew, @BYUCougars center Eric Mika, on his 29 points and the win Saturday vs. Gonzaga. https://t.co/QxT5tiwkdK" +02/14/2017,Politicians,@MittRomney,"Happy Valentine’s Day to my sweetheart, Ann. https://t.co/EsUbFRfdAh" +02/13/2017,Politicians,@MittRomney,I strongly urge the Senate to confirm Andy Puzder as our next Secretary of Labor. https://t.co/Cc15lDS3V6 +02/08/2017,Politicians,@MittRomney,Thought-provoking plan from highly respected conservatives to both strengthen the economy & confront climate risks: https://t.co/U6kmrQTPth +02/07/2017,Politicians,@MittRomney,RT @SenJohnMcCain: Happy 105th birthday to my wonderful mother Roberta - we love you mom! https://t.co/63E912Imub +02/01/2017,Politicians,@MittRomney,An important and welcome choice: Judge Gorsuch will help restore much needed faithfulness to the Constitution. +01/16/2017,Politicians,@MittRomney,"MLK inspired my mom: ""We must forever conduct our struggle on the high plane of dignity and discipline."" https://t.co/HaBg7s7Qco" +01/08/2017,Politicians,@MittRomney,Betsy DeVos is a smart choice for education secretary. My op-ed in today’s @washingtonpost: https://t.co/5LmmbrHSt1 +12/25/2016,Politicians,@MittRomney,From our family to yours: Merry Christmas. https://t.co/9n2omOws7M +12/13/2016,Politicians,@MittRomney,It was an honor to have been considered for Secretary of State of our great country. https://t.co/FC9tB7rdoy +12/11/2016,Politicians,@MittRomney,Honored today to help ordain my grandson Wyatt a deacon in my church. https://t.co/NND17FQKpF +12/08/2016,Politicians,@MittRomney,"As a boy, John Glenn lifted my eyes to the heavens. Today, they welcome him back." +12/01/2016,Politicians,@MittRomney,"Thank you, @NHJennifer for your steady hand guiding the NH GOP. Your leadership will be missed." +11/28/2016,Politicians,@MittRomney,No greater joy than making discoveries together with grandchildren. https://t.co/NxIYsog6lC +11/24/2016,Politicians,@MittRomney,RT @AnnDRomney: Thankful today for a full house and full heart. https://t.co/KGfOO4LWW2 +11/15/2016,Politicians,@MittRomney,One of America's finest journalists gone far too soon. We will miss Gwen Ifill's brilliant voice and kind heart. +11/11/2016,Politicians,@MittRomney,Let us today honor the sacrifice and service of our heroic men and women in arms. #VeteransDay +11/09/2016,Politicians,@MittRomney,"Best wishes also for the GOP victors in the House, Senate & statehouses: may you govern with the high seriousness befitting our great nation" +11/09/2016,Politicians,@MittRomney,Best wishes for our duly elected president: May his victory speech be his guide and preserving the Republic his aim. +11/04/2016,Politicians,@MittRomney,Great to spend some time in Arizona in support of my friend @SenJohnMcCain. We need his leadership in the US Senate. https://t.co/BeI0R8sZe9 +11/04/2016,Politicians,@MittRomney,RT @thatgirlmarg: Gov. Romney: We need John McCain and the get-it-done-attitude #AZSen https://t.co/t9YWuoM8lP +10/27/2016,Politicians,@MittRomney,RT @LegalReform: WATCH: @MittRomney 's speech at the @LegalReform #ILRSummit yesterday at the @USChamber: https://t.co/3goeavBi1M https://… +10/26/2016,Politicians,@MittRomney,"Be sure to head to the polls for GOP Senate, House and statehouses; they are essential to defend and advance constitutional conservatism." +10/08/2016,Politicians,@MittRomney,Hitting on married women? Condoning assault? Such vile degradations demean our wives and daughters and corrupt America's face to the world. +09/26/2016,Politicians,@MittRomney,"I shook the hand of a legend, a man whose life left the world larger and kinder. https://t.co/Fd9zo5vYz0" +09/13/2016,Politicians,@MittRomney,"My good friend Ed Conard has a new book out today. Whether you agree with him or not, it’s a fascinating read. https://t.co/liNMtIZhhW" +09/11/2016,Politicians,@MittRomney,"Fifteen years on, we remember the innocent who perished on 9/11, and salute the brave who have served in defense of our nation since." +09/07/2016,Politicians,@MittRomney,I hope voters get to see former GOP Governors Gary Johnson and Bill Weld on the debate stages this fall. +07/08/2016,Politicians,@MittRomney,"May we stop seeing people as black, white, brown or wearing blue & see them instead as husbands, wives, sons, daughters & children of God." +07/04/2016,Politicians,@MittRomney,"Today, let’s pay tribute to the Founders who declared our independence and to the brave men and women who have fought to maintain it." +07/02/2016,Politicians,@MittRomney,I pray that the beacon that was Elie Wiesel will long guide us away from the shoals of hatred and racism. +06/24/2016,Politicians,@MittRomney,"Bob Semonian, the very proper publisher of the Improper Bostonian, passed away today. We will miss our fine friend." +06/22/2016,Politicians,@MittRomney,"Saving the Senate got a big boost with @marcorubio's decision today. Thank you, Marco for fighting on." +06/13/2016,Politicians,@MittRomney,"As we mourn the victims of Islamic terror in Orlando, Ann & I say a special prayer for the LGBT community that was the focus of this attack." +06/12/2016,Politicians,@MittRomney,Deeply saddened to learn of the horrific attack in Orlando. Our hearts go out to those who lost loved ones. +06/12/2016,Politicians,@MittRomney,"Just when I thought I was out, they pull me back in. #GiveSight25 https://t.co/wsZjPudxMJ" +06/12/2016,Politicians,@MittRomney,Glad to be on this side of the ropes for @CharityVision Fight Night 2016. #GiveSight25 https://t.co/R1qiQH2uxi +06/11/2016,Politicians,@MittRomney,"Thanks to our volunteers and speakers for making #E2Summit16 fun, informative and memorable. https://t.co/lWR8c9Iri7" +06/01/2016,Politicians,@MittRomney,"I know David French to be an honorable, intelligent and patriotic person. I look forward to following what he has to say." +05/30/2016,Politicians,@MittRomney,"""Today is the day we put aside to remember fallen heroes and to pray that no heroes will ever have to die for us again."" - Ronald Reagan" +05/11/2016,Politicians,@MittRomney,"Mr. Trump, tear down that tax wall. https://t.co/pQUZAJuE0k" +05/05/2016,Politicians,@MittRomney,"God be with you, Bob, till we meet again at Jesus' feet. https://t.co/0VVfCQTOW5" +05/04/2016,Politicians,@MittRomney,"Thanks to @tedcruz for making a fight for conservatism, American leadership and freedom." +04/22/2016,Politicians,@MittRomney,"RT @davidgregory: DG PODCAST: catch my revealing interview with @MittRomney. We talk 2016, faith, and more. https://t.co/OLFY8HxL9r https:/…" +04/18/2016,Politicians,@MittRomney,God bless you for a full and rapid recovery. https://t.co/AVfBGgQvFq +04/16/2016,Politicians,@MittRomney,"Happy birthday, @AnnDRomney, from me and from some of your favorite grandsons. https://t.co/QRB0PfGMGP" +04/09/2016,Politicians,@MittRomney,"With Barbara Anderson's passing, the Bay State has lost a tireless champion for tax fairness. https://t.co/NfgWbSjl89" +03/27/2016,Politicians,@MittRomney,"Thankful this day and every day for Jesus Christ who conquered death and gave us the Way, the Truth and the Life." +03/25/2016,Politicians,@MittRomney,"As a fmr missionary & a father & grandfather of missionaries, this is simultaneously heartbreaking & heartwarming. https://t.co/TKDzKVm8xn" +03/23/2016,Politicians,@MittRomney,President Obama's response is mind numbing. ISIS attacks are existential to every person who is killed! Stand with #Brussels. +03/18/2016,Politicians,@MittRomney,"RT @nytdavidbrooks: No, Not Trump, Not Ever https://t.co/E76Or5VaLu" +03/18/2016,Politicians,@MittRomney,"This week, in the Utah nominating caucus, I will vote for Senator Ted Cruz. https://t.co/e2lAkWrt4l" +03/08/2016,Politicians,@MittRomney,Trump has the best words. Take it from him. @AmFutureFund https://t.co/SC86cTts6E +03/06/2016,Politicians,@MittRomney,"With the passing of Nancy Reagan, God and Ronnie have finally welcomed a choice soul home. https://t.co/NjiOBT9xoQ" +03/03/2016,Politicians,@MittRomney,"If Trump had said 4 years ago the things he says today about the KKK, Muslims, Mexicans, disabled, I would NOT have accepted his endorsement" +03/03/2016,Politicians,@MittRomney,"Full remarks from today's speech are up on @Medium +https://t.co/SvtLxETPgd" +03/03/2016,Politicians,@MittRomney,ICYMI: Watch my speech on the state of the 2016 presidential race https://t.co/uJmonN0IwD +03/03/2016,Politicians,@MittRomney,He's playing the American public for suckers: He gets a free ride to the White House and all we get is a lousy hat. (2/2) +03/03/2016,Politicians,@MittRomney,"Here's what I know. Donald Trump is a phony, a fraud. His promises are as worthless as a degree from Trump University. (1/2)" +03/03/2016,Politicians,@MittRomney,...endurance & high purpose & into the will to defeat the enemies of freedom. Our anger was transformed into energy directed for good. (2/2) +03/03/2016,Politicians,@MittRomney,"I understand the anger Americans feel today. In the past, our presidents channeled that anger, and forged it into resolve, into... (1/2)" +03/03/2016,Politicians,@MittRomney,A person so untrustworthy and dishonest as Hillary Clinton must not become president. But a Trump nomination enables her victory. +03/03/2016,Politicians,@MittRomney,"She compromised our nat'l secrets, dissembled 2 families of the slain & jettisoned her most profound beliefs 2 gain presidential power (2/2)" +03/03/2016,Politicians,@MittRomney,"On Hillary Clinton's watch at the State Department, America's interests were diminished in every corner of the world. (1/2)" +03/03/2016,Politicians,@MittRomney,Trump relishes any poll that reflects what he thinks of himself. But polls are also saying that he will lose to Hillary Clinton +03/03/2016,Politicians,@MittRomney,All of them bear the responsibility of being an example for our children and grandchildren. (3/3) +03/03/2016,Politicians,@MittRomney,@MittRomney The president and yes the nominees of the country's great parties help define America to billions of people. (2/3) +03/03/2016,Politicians,@MittRomney,The president of the United States has long been the leader of the free world. (1/3) +03/03/2016,Politicians,@MittRomney,"Trump says he admires Vladimir Putin, while he has called George W. Bush a liar. That is a twisted example of evil trumping good." +03/03/2016,Politicians,@MittRomney,"Of remaining candidates the only serious policy proposals 2 deal w broad range of nat'l challenges we confront come from Cruz,Rubio & Kasich" +03/03/2016,Politicians,@MittRomney,"But if we make the right choices, America's future will be even better than our past and better than our present." +03/03/2016,Politicians,@MittRomney,the growing assertiveness of China and the nuclear tests of North Korea confirm that we live in troubled and dangerous times. (2/2) +03/03/2016,Politicians,@MittRomney,"At home, poverty persists and wages are stagnant. The horrific massacres of Paris and San Bernardino, the aggressions of Putin... (1/2)" +03/03/2016,Politicians,@MittRomney,https://t.co/c4mx17MQWw +03/03/2016,Politicians,@MittRomney,"Watch my speech on the state of the 2016 presidential race LIVE on Facebook at 11:30 AM, ET https://t.co/Si380LXWTB" +03/01/2016,Politicians,@MittRomney,Another #bombshell? Trump should authorize the @nytimes to release the transcript of his ed board interview. #WhatIsHeHiding +02/29/2016,Politicians,@MittRomney,A disqualifying & disgusting response by @realDonaldTrump to the KKK. His coddling of repugnant bigotry is not in the character of America. +02/28/2016,Politicians,@MittRomney,@realDonaldTrump Facts are stubborn. I released my back taxes on 1/24/12. No excuse for hiding your back taxes. https://t.co/P9vRhmEcF3 +02/26/2016,Politicians,@MittRomney,".@realDonaldTrump got it wrong: I released back taxes in Jan '12, early in primary process--just like he should do. https://t.co/VrLgnEnNI7" +02/26/2016,Politicians,@MittRomney,.@realDonaldTrump taxes for last 4+ years are still being audited. There are more #bombshells or he would release them. +02/26/2016,Politicians,@MittRomney,"No legit reason @realDonaldTrump can't release returns while being audited, but if scared, release earlier returns no longer under audit." +02/25/2016,Politicians,@MittRomney,"Methinks the Donald doth protest too much. Show voters your back taxes, @realDonaldTrump. #WhatIsHeHiding" +02/24/2016,Politicians,@MittRomney,"RT @TeamCavuto: Watch the full @MittRomney interview with Neil today on 'Your World': +https://t.co/Xrkn6KLci0 https://t.co/rp4mQMeUwh" +02/22/2016,Politicians,@MittRomney,The case for waiting for the next president to name the next SCOTUS nominee was well expressed by Joe Biden. https://t.co/CofEma012N +02/21/2016,Politicians,@MittRomney,.@JebBush followed his family's pattern of putting country above himself. I am proud to call him a friend. https://t.co/AxtPzgtqac +02/16/2016,Politicians,@MittRomney,"New president should nominate new SCOTUS justice. Dems may complain, but they should talk to @chuckschumer. https://t.co/Hydf5Gtq5k" +02/10/2016,Politicians,@MittRomney,Courage and unwavering determination have defined the @CarlyFiorina campaign. Thank you for standing up and standing tall. +02/10/2016,Politicians,@MittRomney,Thank you @ChrisChristie for pushing the race towards real and honest solutions. Your candor and integrity on the trail will be missed. +02/04/2016,Politicians,@MittRomney,Hey @ABC: put @CarlyFiorina on the debate stage! She got more Iowa votes than John and Chris. Don't exclude only woman. +01/29/2016,Politicians,@MittRomney,"RELEASE: My remarks from last night: “Happy birthday to you; happy birthday to you; happy birthday @SpeakerRyan…"" https://t.co/GnDXgmjn8h" +01/24/2016,Politicians,@MittRomney,"4 years ago today, I released my taxes; became issue. 2016 candidates should release taxes before first contests." +01/13/2016,Politicians,@MittRomney,".@nikkihaley criticized the anger, not the policy. It was courage you can count on." +01/11/2016,Politicians,@MittRomney,"Praying for @TheBostonPride's Denna Laing and her family. To support the Denna Laing Fund, go to https://t.co/rsBg6oRCbx. #14Strong" +01/08/2016,Politicians,@MittRomney,".@tedcruz is a ""natural born citizen."" Obama too. Even George Romney. This isn't the issue you're looking for." +12/28/2015,Politicians,@MittRomney,#SteinEriksen was a champion for the 2002 Olympic Winter Games just as he himself was a champion Olympic athlete. https://t.co/R5TphMfebb +12/24/2015,Politicians,@MittRomney,Merry Christmas from our family to yours. https://t.co/rbwDf8MJmD +12/21/2015,Politicians,@MittRomney,"While the race will miss his unique voice of truth and experience, the @LindseyGrahamSC fight must carry on." +12/18/2015,Politicians,@MittRomney,Important distinction: thug Putin kills journalists and opponents; our presidents kill terrorists and enemy combatants. +12/13/2015,Politicians,@MittRomney,"Great day with @TeamMcCain, @SenJohnMcCain and @CindyMcCain in Mesa, AZ yesterday. https://t.co/DeWybuEIih" +12/09/2015,Politicians,@MittRomney,"RT @AmericaRising: Just Launched: @AmericaRising's new ad ""Leading From Behind."" Watch it here: +https://t.co/FPYROYSvP4" +12/08/2015,Politicians,@MittRomney,"On Muslims, @realDonaldTrump fired before aiming. @SpeakerRyan is on target: https://t.co/vgK4dll0A0" +11/28/2015,Politicians,@MittRomney,Praying for those struck by the tragic violence in Colorado Springs. Grateful for bravery of first responders. +11/27/2015,Politicians,@MittRomney,"#Thanksgiving w all but @tromney and fam, who are on the other coast. Easy to get lost in this crew! #WheresWillard? https://t.co/5UTdVmaBrw" +06/29/2018,Politicians,@Schwarzenegger,"I know that my career would have been impossible without the media. But more importantly, journalists put their liv… https://t.co/FywYgvWvj6" +06/29/2018,Politicians,@Schwarzenegger,"Some days, I don't agree with the media. Some days, they are a fantastic sparring partner. But every day, journalis… https://t.co/eezIyqsqUC" +06/28/2018,Politicians,@Schwarzenegger,"I know the 80s were great for both of us, @realDonaldTrump. But when it comes to energy, our country needs to look… https://t.co/Uj8wZjl7le" +06/28/2018,Politicians,@Schwarzenegger,"So, @realDonaldTrump, if you want to be an action hero, let's retrain those coal miners for new, safer jobs. Don't… https://t.co/dJodqIa6H7" +06/28/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: You can’t bring back coal, just like you can’t bring back Blockbuster. So let’s train those coal miners for safer, bett…" +06/28/2018,Politicians,@Schwarzenegger,"And this, about California's 4.9% economic growth (more than double the US GDP growth): https://t.co/RB4XNncLnV" +06/28/2018,Politicians,@Schwarzenegger,"Read this, about California oil workers who have transitioned to better jobs in clean energy: https://t.co/CIAtQz3YKS" +06/28/2018,Politicians,@Schwarzenegger,"You can’t bring back coal, just like you can’t bring back Blockbuster. So let’s train those coal miners for safer,… https://t.co/jLJqYySVmZ" +06/28/2018,Politicians,@Schwarzenegger,@realchefrush Thank you for all you do! +06/25/2018,Politicians,@Schwarzenegger,RT @Crowdpac: Today's #SCOTUS rulings in the gerrymandering cases in Texas & North Carolina made it clear – we must continue the fight for… +06/22/2018,Politicians,@Schwarzenegger,This is shameful. Everyone involved in the cover-up should be out of a job by Monday. No American should be tricked… https://t.co/1yDogKmkDh +06/22/2018,Politicians,@Schwarzenegger,#NationalSelfieDay wouldn’t be complete without a cameo by Whiskey. https://t.co/JRyjVvbYrv +06/21/2018,Politicians,@Schwarzenegger,RT @happycath5: The Supreme Court won't decide on extreme partisan gerrymandering for now. But the war for fair districts is far from over.… +06/20/2018,Politicians,@Schwarzenegger,RT @Crowdpac: Here's how @Schwarzenegger is continuing the fight for #FairDistricts after this week's Supreme Court ruling: https://t.co/HW… +06/20/2018,Politicians,@Schwarzenegger,RT @SteveWestly: This misinformed hype that California’s top-two primary election system doesn’t work is centered in out-of-sync priorities… +06/20/2018,Politicians,@Schwarzenegger,The administration is right that we need to fix our immigration system. But if anybody is going to be in a cage whi… https://t.co/K7wnb3Mf11 +06/20/2018,Politicians,@Schwarzenegger,"As an immigrant, I know the magnetic power of America's greatness. As a former border Governor, I know the importan… https://t.co/HjGgeNXCOE" +06/19/2018,Politicians,@Schwarzenegger,Thank you. We don't have to agree on every policy to agree that politicians picking their voters is a scam that nee… https://t.co/btlduDOlNt +06/19/2018,Politicians,@Schwarzenegger,RT @AdamBKushner: Don’t listen to the establishment critics. California’s open primary works. By @Schwarzenegger and @RepRoKhanna https://t… +06/19/2018,Politicians,@Schwarzenegger,Establishment politicians don't like the uncertainty of California's open primary. But there isn't a voter in Ameri… https://t.co/CTDnNJO20I +06/19/2018,Politicians,@Schwarzenegger,RT @OpenPrimaryUSA: “It’s not about moving legislators in any one political direction. It’s about moving them closer to the voters.” @Schwa… +06/18/2018,Politicians,@Schwarzenegger,The fight continues. I've launched a @Crowdpac campaign to support the active redistricting reform campaigns in Mic… https://t.co/0WTmUVnDEU +06/18/2018,Politicians,@Schwarzenegger,"RT @MoveCAFWD: .@Schwarzenegger & @RoKhanna ""don’t bench-press the same amount"" but agree CA's top-two primary ""works best because it puts…" +06/18/2018,Politicians,@Schwarzenegger,RT @PostOpinions: Don’t listen to the establishment critics. California’s open primary works. https://t.co/i1Mr5b4ytB by @Schwarzenegger &… +06/18/2018,Politicians,@Schwarzenegger,"RT @rachaelmyrow: ""To those of you who are disheartened, let me remind you that California attempted to reform our redistricting process fo…" +06/18/2018,Politicians,@Schwarzenegger,"We elect our representatives to be public servants, not party servants. It's time to take California's open primary… https://t.co/AkJwZhxXyl" +06/18/2018,Politicians,@Schwarzenegger,"To those of you who are disheartened, let me remind you that California attempted to reform redistricting four time… https://t.co/ApsWwLVFZ0" +06/18/2018,Politicians,@Schwarzenegger,"RT @FSBarry: The bipartisan case for top two voting, via @Schwarzenegger & @RoKhanna -- ""uncertainty and increased competition is a feature…" +06/18/2018,Politicians,@Schwarzenegger,While I am disappointed that the Supreme Court has chosen not to decide on the merits of extreme partisan gerrymand… https://t.co/MbdFebnqGN +06/18/2018,Politicians,@Schwarzenegger,"RT @PostEverything: Don’t listen to the establishment critics, say former governor Arnold @Schwarzenegger and Rep. @RoKhanna. California’s…" +06/18/2018,Politicians,@Schwarzenegger,"Proud to join @RoKhanna to talk @OpenPrimaryUSA in the @washingtonpost. For those of us who embrace top-two, it’s n… https://t.co/RsojlJjpie" +06/18/2018,Politicians,@Schwarzenegger,RT @RoKhanna: Proud to make the case for open primaries with ⁦@Schwarzenegger⁩. ⁦@BernieSanders⁩ is correct that closed primaries are a tot… +06/12/2018,Politicians,@Schwarzenegger,"Happy birthday, @GeorgeHWBush. You’re my friend, my mentor, my hero. You’re a model of public service for all of us… https://t.co/64lcX4KNPY" +06/12/2018,Politicians,@Schwarzenegger,@realchefrush Your service to our country and work on behalf of veterans inspires me. I can’t wait! +06/12/2018,Politicians,@Schwarzenegger,"Chef Rush, the next time I’m in DC, we absolutely have to get together. https://t.co/GlgUS6EExe" +06/11/2018,Politicians,@Schwarzenegger,RT @WSJ: Arnold Schwarzenegger says the lesson from both his successes and failures is to 'never do anything that you're not really prepped… +06/11/2018,Politicians,@Schwarzenegger,RT @CLourosa: Arnold @Schwarzenegger says both his successes and failures have taught him to ‘never do anything that you’re not really prep… +06/11/2018,Politicians,@Schwarzenegger,"RT @chriskornelis: “Just like in bodybuilding, don’t go in the competition if you haven’t done the reps. The same is with anything else. Do…" +06/08/2018,Politicians,@Schwarzenegger,RT @wef: Do you agree with @Schwarzenegger when it comes to the economy and environment? Watch his session at #ism18: https://t.co/SpXwTOI4… +06/07/2018,Politicians,@Schwarzenegger,RT @wef: Arnold @Schwarzenegger is taking over our Instagram story. Watch here: https://t.co/vZqBjKt5QT https://t.co/swP5oaL1vD +06/07/2018,Politicians,@Schwarzenegger,"RT @Davos: ⚡️ “Arnold Schwarzenegger's suggestions for a cleaner world” - A conversation with @Schwarzenegger at #ism18 +https://t.co/B3XGd…" +06/06/2018,Politicians,@Schwarzenegger,You can catch up on my conversation at the @Davos meeting in this great thread! https://t.co/MbNFevuVRX +06/06/2018,Politicians,@Schwarzenegger,RT @wef: Live now: A conversation with Arnold Schwarzenegger on driving global climate action and the role of business in shaping the Fourt… +06/06/2018,Politicians,@Schwarzenegger,"Thank you, thank you, thank you to everyone who came to our @ASASafterschool fundraiser at my house and helped us r… https://t.co/81wVzLm3LT" +06/05/2018,Politicians,@Schwarzenegger,"Californians, whether you are to the left of me, to the right of me, or in the center, get out and vote. This is yo… https://t.co/43A5TSwWcy" +06/05/2018,Politicians,@Schwarzenegger,Nope. https://t.co/Db5Uwm25iT https://t.co/SHW7MJiwHc +06/05/2018,Politicians,@Schwarzenegger,"@GovHawaii Congratulations on your clean energy leadership, Governor! I'm so proud of Hawaii and I can't wait for my next visit." +06/05/2018,Politicians,@Schwarzenegger,"Congratulations to @GovHawaii and +@chrisleeforhi for your bold clean energy action! I hope you inspire leaders all… https://t.co/efGxyiKKmw" +06/05/2018,Politicians,@Schwarzenegger,RT @chrisleeforhi: @Schwarzenegger Hawai’i becomes 1st state committing to full carbon neutrality by 2045 as @GovHawaii signs our bill I in… +06/01/2018,Politicians,@Schwarzenegger,"Second workout of the day! The surgery comeback is all about reps, reps, reps. #thereisnomagicpill https://t.co/lBBJJ7rI98" +06/01/2018,Politicians,@Schwarzenegger,"If Republicans won't stand up for California's right to clean our air, and they won't stand up against regulations… https://t.co/JZYcle35Go" +06/01/2018,Politicians,@Schwarzenegger,"I eagerly await the administration’s regulations protecting pagers, fax machines, and Blockbuster. https://t.co/ykLJHT4OvK" +06/01/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: 2017 US GDP Growth: 2.3% +Your ""Huge"" Goal: 3% +2017 CA GDP Growth: 4.9% +Look at the scoreboard, Mr. President. Instead…" +05/31/2018,Politicians,@Schwarzenegger,Focus on your job. Focus on building the infrastructure this country needs. We don’t need your endorsements. We are… https://t.co/2kqeeESU7H +05/31/2018,Politicians,@Schwarzenegger,https://t.co/iPCOv89zun +05/31/2018,Politicians,@Schwarzenegger,"At the same time jobs and our economy boom, we have instituted the most stringent environmental protections. We pro… https://t.co/RdQdVQBcJ3" +05/31/2018,Politicians,@Schwarzenegger,We in California have doubled the growth rate that you have produced so far. We are the fifth largest economy in th… https://t.co/hnXYpnNWbk +05/31/2018,Politicians,@Schwarzenegger,"2017 US GDP Growth: 2.3% +Your ""Huge"" Goal: 3% +2017 CA GDP Growth: 4.9% +Look at the scoreboard, Mr. President. Inst… https://t.co/vuMdzdPJFo" +05/30/2018,Politicians,@Schwarzenegger,"The comeback continues. Training every day, doing my reps, reps, reps. Your support has really pumped me up, so I r… https://t.co/PbEWxrK5VT" +05/30/2018,Politicians,@Schwarzenegger,"Thank you @PEspinosaC for tagging me in. We have already terminated the plastic bags, so to #BeatPlasticPollution,… https://t.co/jMK2VnGrS8" +05/28/2018,Politicians,@Schwarzenegger,Today I am filled with gratitude for the selflessness of our men and women in uniform who have sacrificed to make t… https://t.co/JCmsZmabwT +05/16/2018,Politicians,@Schwarzenegger,@Klitschko You’re looking fantastic my friend! +05/16/2018,Politicians,@Schwarzenegger,I’m a simple guy so I have a simple remedy when people like Pruitt ignore or hide pollution: if you don’t have a pr… https://t.co/Eh063ICHwY +05/15/2018,Politicians,@Schwarzenegger,"RT @PEspinosaC: ""Climate Change is not a political issue, it is a health issue"", says @Schwarzenegger at Austrian World Summit #R20AWS htt…" +05/15/2018,Politicians,@Schwarzenegger,"With one of my heroes, @JaneGoodallInst, at our Austrian World Summit. Such an amazing leader! https://t.co/RQYpBRAHCH" +05/15/2018,Politicians,@Schwarzenegger,"Denmark PM @larsloekke emphasis on wind energy shows us that there are so many renewable, clean options. Denmark so… https://t.co/vXMRb4hJPJ" +05/15/2018,Politicians,@Schwarzenegger,"Love hearing from Norway PM @erna_solberg that even though their country is oil-rich, their domestic energy comes f… https://t.co/9ANnd4Hyr8" +05/15/2018,Politicians,@Schwarzenegger,President @vanderbellen and Chancellor @sebastiankurz joining together at @R20_AWS sends a message. The environment isn’t a political issue. +05/15/2018,Politicians,@Schwarzenegger,UN Secretary General @antonioguterres is inspirational and he is so right that a clean energy future is a profitable path! @R20_AWS +05/15/2018,Politicians,@Schwarzenegger,"RT @UN_Vienna: .@antonioguterres calls for global action to confront climate change in address to #AustrianWorldSummit, w/ @sebastiankurz,…" +05/15/2018,Politicians,@Schwarzenegger,RT @MarosSefcovic: All set for @R20_AWS. TUNE IN for its impressive opening now - https://t.co/VSt4jdtvTa. #ClimateAction https://t.co/BxuL… +05/15/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: Don’t miss the Austrian World Summit tomorrow. You can watch live, and I’ll be taking over the @R20_AWS twitter account…" +05/14/2018,Politicians,@Schwarzenegger,RT @UN_Spokesperson: A look behind-the-scenes with @antonioguterres @Schwarzenegger & @sebastiankurz as they prepare to talk climate action… +05/14/2018,Politicians,@Schwarzenegger,"Don’t miss the Austrian World Summit tomorrow. You can watch live, and I’ll be taking over the @R20_AWS twitter acc… https://t.co/hH2vj7hKaT" +05/12/2018,Politicians,@Schwarzenegger,RT @Schwarzenegger: .@SenJohnMcCain deserves respect. We must stretch for our better angels instead of falling toward our lowest instincts.… +05/12/2018,Politicians,@Schwarzenegger,.@SenJohnMcCain deserves respect. We must stretch for our better angels instead of falling toward our lowest instin… https://t.co/2ePolgugIu +05/09/2018,Politicians,@Schwarzenegger,Governor Deukmejian was a tremendous public servant to the people of California. My thoughts and prayers are with his family. +05/08/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: I couldn’t agree more. Luckily, there is a path to relevance: @NewWayCA, led by Republicans like @RockyChavez4CA and @C…" +05/08/2018,Politicians,@Schwarzenegger,There are other great Republicans like @Cunning_Jordan you should follow. +05/08/2018,Politicians,@Schwarzenegger,"I couldn’t agree more. Luckily, there is a path to relevance: @NewWayCA, led by Republicans like @RockyChavez4CA an… https://t.co/kOBPGnR5ns" +05/08/2018,Politicians,@Schwarzenegger,RT @karenkasler: .@Schwarzenegger toasted OH lawmakers w schnapps when they put Issue 1 on the ballot. Now the Governator is urging voters… +05/08/2018,Politicians,@Schwarzenegger,"Mr. Pruitt, I can assure you that California, and those who believe in a cleaner future, will win again. https://t.co/XCn8tlSR5c" +05/08/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: Ohio, get out to vote today and don’t forget to vote YES on Issue One. It’s time to terminate gerrymandering! @OhFairDi…" +05/08/2018,Politicians,@Schwarzenegger,"Ohio, get out to vote today and don’t forget to vote YES on Issue One. It’s time to terminate gerrymandering!… https://t.co/UccH8lljnr" +05/04/2018,Politicians,@Schwarzenegger,"Major update! It feels so good to be back and I remain so, so grateful to all of you for your healing thoughts! https://t.co/CY9hFKwSlq" +04/30/2018,Politicians,@Schwarzenegger,"Tune into James Cameron’s Story of Science Fiction tonight at 10/9c on @AMC_TV. Trust me, there is no better guide… https://t.co/SBmq4OGLJ6" +04/26/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: This was a double whammy for me @EmmanuelMacron. First, a fantastic speech. Second, at this stage in my recovery it was…" +04/25/2018,Politicians,@Schwarzenegger,"This was a double whammy for me @EmmanuelMacron. First, a fantastic speech. Second, at this stage in my recovery it… https://t.co/VxqPaoETci" +04/24/2018,Politicians,@Schwarzenegger,"President Bush, you are at the top of my mind. I am praying for a full recovery and I am here to pump you up if you… https://t.co/lZmXPwaDSG" +04/23/2018,Politicians,@Schwarzenegger,"#JamesShawJr, you proved that you don’t have to be a Terminator or Superman to be an extraordinary hero. Thank you… https://t.co/fCrHJob4x9" +04/18/2018,Politicians,@Schwarzenegger,"RT @WWE: ""He brought so much great inspiration to so many millions of children...He has made such great contributions to this country."" - A…" +04/18/2018,Politicians,@Schwarzenegger,"And away from the spotlights and attention, he had the biggest heart you can imagine. I’ll miss you, Bruno." +04/18/2018,Politicians,@Schwarzenegger,Bruno Sammartino was a legend. He was the American Dream personified. From his childhood in Italy hiding from Nazis… https://t.co/LmxGCsQV1g +04/17/2018,Politicians,@Schwarzenegger,"My thoughts are with President Bush and the entire Bush family, along with every person on this planet who was luck… https://t.co/e0uz9cvRvR" +04/16/2018,Politicians,@Schwarzenegger,https://t.co/VE6xvY2zp9 +04/16/2018,Politicians,@Schwarzenegger,She refused to let any of us go with her to the hospital and demanded that we keep enjoying ourselves. That’s Barba… https://t.co/Yhp7BscUUZ +04/16/2018,Politicians,@Schwarzenegger,"She put everyone else before herself, but let me tell you: when Barbara talked, you listened. Once, at Camp David,… https://t.co/SnqUpDPo9r" +04/16/2018,Politicians,@Schwarzenegger,"She’s strong, she’s smart, she’s classy, and she’s unfailingly kind and giving. She is a public servant in every se… https://t.co/8LvY0Hi67A" +04/16/2018,Politicians,@Schwarzenegger,Barbara Bush is a truly great American. She might be best known as the wife of one President and the mother of anot… https://t.co/QS2uRwzW2i +04/12/2018,Politicians,@Schwarzenegger,Thank you all for caring. We are moving forward! https://t.co/kvauldg3Mq +04/12/2018,Politicians,@Schwarzenegger,"#tbt to one of the rare moments I felt completely puny, with Wilt Chamberlain and Andre the Giant. I absolutely lov… https://t.co/GdRcboQzaQ" +04/10/2018,Politicians,@Schwarzenegger,"Catching up on the news. I’m saddened to hear about the loss of Justice Reinhardt. We didn’t always agree, but I di… https://t.co/D4ir7f5Xor" +04/10/2018,Politicians,@Schwarzenegger,RT @NextRevFNC: .@stevehiltonx talks to California Governor @Schwarzenegger about President Trump and the state of the GOP. #NextRevFNC htt… +04/10/2018,Politicians,@Schwarzenegger,"RT @HBO: Andre The Friend. + +@Schwarzenegger shares his #MyAndreStory. #AndreTheGiant https://t.co/7zAD0Y69rk" +04/04/2018,Politicians,@Schwarzenegger,I’m with @RepCurbelo. https://t.co/ft5t6A6dDg +04/03/2018,Politicians,@Schwarzenegger,"Bonnie Reiss was a true treasure to California, the United States, the world, and everyone she has ever met. My ful… https://t.co/SLeUafh7c3" +04/02/2018,Politicians,@Schwarzenegger,It’s true: I’m back! I went to sleep expecting to wake up with a small incision and woke up with a big one - but gu… https://t.co/60TNM8pdL1 +03/28/2018,Politicians,@Schwarzenegger,"RT @TameGerrymander: While @Schwarzenegger couldn't make it to our #SCOTUS rally today, he did send this message urge you all to keep up th…" +03/28/2018,Politicians,@Schwarzenegger,RT @sxsw: Watch Actor and Former Governor of California Arnold @Schwarzenegger's conversation with @politico's @IsaacDovere at #SXSW 2018 h… +03/28/2018,Politicians,@Schwarzenegger,"RT @vicenews: The Supreme Court is about to hear to a case on partisan gerrymandering. + +@GiannaToboni spoke to @schwarzenegger last year a…" +03/24/2018,Politicians,@Schwarzenegger,Don’t mock them because they are young or because you disagree. Learn from them. They’re giving you an example of h… https://t.co/MveYC51bU8 +03/24/2018,Politicians,@Schwarzenegger,"The students organizing #MarchForOurLives and I might not agree on everything, but their engagement inspires me. Th… https://t.co/drJb0U6rNe" +03/24/2018,Politicians,@Schwarzenegger,It was fantastic to sit down with @smerconish to chat about the future of the CA Republican Party and @NewWayCA. https://t.co/qYDFWhc39k +03/24/2018,Politicians,@Schwarzenegger,RT @smerconish: here's my full interview with @Schwarzenegger - a portion of which just aired @CNN @CNNi https://t.co/9SrJGhhoW1 @NewWayCA… +03/23/2018,Politicians,@Schwarzenegger,I just heard the terrible news. Nancy McFadden was a public servant in every sense of the word. She always put othe… https://t.co/hXPBqjzuwK +03/23/2018,Politicians,@Schwarzenegger,RT @omaze: BIG news from Arnold! Watch and make sure to enter—it's your LAST CHANCE: https://t.co/l2R6EltFUm https://t.co/RtFzWCUEU4 +03/22/2018,Politicians,@Schwarzenegger,"It’s your LAST CHANCE to join me for lunch, cigars and some life advice—all before we get to the choppa. ENTER:… https://t.co/LEm4t53AG7" +03/22/2018,Politicians,@Schwarzenegger,"It was such an honor to have breakfast with Xavier DeGroat, who is an incredible autism advocate. He truly inspires… https://t.co/8NvbwkKlZO" +03/21/2018,Politicians,@Schwarzenegger,"RT @NewWayCA: ""The soul of the Republican Party is worth fighting for."" #NewWay + +- @Schwarzenegger" +03/21/2018,Politicians,@Schwarzenegger,"Tune in now to join a conversation with me, @JohnKasich @ChadMayesCA and all the members of @NewWayCA about the fut… https://t.co/P6XCuZJ3JW" +03/20/2018,Politicians,@Schwarzenegger,"Tune in tomorrow at 9AM PDT to hear from me, @JohnKasich, @ChadMayesCA, and many more Republicans about the future… https://t.co/hiD6a70UUY" +03/19/2018,Politicians,@Schwarzenegger,"RT @JohnKasich: Looking forward to joining @Schwarzenegger on Wednesday, 3/21 - Tune in at Noon ET (9AM PT)! @NewWayCA + +Watch live at: htt…" +03/17/2018,Politicians,@Schwarzenegger,"RT @7NewsMelbourne: Movie star and former governor of California @Schwarzenegger toured the Arnold Fitness Expo in the city, meeting fans a…" +03/17/2018,Politicians,@Schwarzenegger,Congratulations Roelly on your first @ArnoldSports victory in Australia. You worked so hard to lose those 20 pounds… https://t.co/sj7nJP61gO +03/16/2018,Politicians,@Schwarzenegger,I am so darn proud of @CSchwarzenegger for the launch of her documentary “Take Your Pills” on Netflix. It puts a sp… https://t.co/G116xoX5Ek +03/14/2018,Politicians,@Schwarzenegger,"RT @YEARSofLIVING: ""They know they are killing people and they continue doing the same thing over and over.”-- @Schwarzenegger + +The fossil…" +03/12/2018,Politicians,@Schwarzenegger,Don’t miss my podcast with @IsaacDovere from @politico. We had a great time talking about my governing principles (… https://t.co/VoY5hBpSsc +03/12/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: We’re going to put the whole conversation out a day early, so you’ll be able to hear it tomorrow on OFF MESSAGE. Subscribe…" +03/11/2018,Politicians,@Schwarzenegger,RT @ncelenviro: Solving environmental challenges often requires innovative solutions. Easily access some of the nation's most inventive bil… +03/11/2018,Politicians,@Schwarzenegger,It was fantastic to talk politics with all of you at @sxsw! Thank you @IsaacDovere for a wonderful conversation. We… https://t.co/6BAP9mx4Wb +03/11/2018,Politicians,@Schwarzenegger,@campaignforleo I look forward to seeing you soon! +03/11/2018,Politicians,@Schwarzenegger,RT @sxsw: Actor and Former Governor of California Arnold @Schwarzenegger on the role of a politician at #SXSW 2018. https://t.co/tDsN9wt0sP +03/11/2018,Politicians,@Schwarzenegger,"RT @sxsw: Politico's @IsaacDovere will sit down with Arnold @Schwarzenegger to discuss effective governing, gerrymandering, and the future…" +03/11/2018,Politicians,@Schwarzenegger,RT @IsaacDovere: Little logistical change-up for our OFF MESSAGE interview with @Schwarzenegger at @SXSW - we'll now start today a little l… +03/10/2018,Politicians,@Schwarzenegger,"RT @Crowdpac: Together, @schwarzenegger and @commoncause have raised nearly $150K in their fight against gerrymandering. Donate to democrac…" +03/09/2018,Politicians,@Schwarzenegger,DO IT. https://t.co/8MBF5FIhGy +03/09/2018,Politicians,@Schwarzenegger,"#tbt to when I was 16, before I ever competed. https://t.co/Ozb17lZS8q" +03/07/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: Going to be in Austin for @sxsw? Join me Sunday for an edition of OFF MESSAGE on the road, with @Schwarzenegger live on st…" +03/06/2018,Politicians,@Schwarzenegger,Thank you for being the best apprentice ever and for always helping raise money for our @ASASafterschool kids. https://t.co/JsOCpWxblq +03/05/2018,Politicians,@Schwarzenegger,Don’t miss the @ArnoldSports story on Snapchat. Trust me. https://t.co/Y9llD6tAlv +03/05/2018,Politicians,@Schwarzenegger,"RT @JohnKasich: Great to see my friend @Schwarzenegger in Ohio to celebrate the bipartisan compromise on redistricting. + +This is another co…" +03/04/2018,Politicians,@Schwarzenegger,This sums up my weekend at the 30th Anniversary of the @ArnoldSports Festival. I loved bringing all of you with me… https://t.co/uKkmc4YRaw +03/04/2018,Politicians,@Schwarzenegger,Thank you for the compliment! I was worried you’d say it’s like getting a snap from your grandfather. https://t.co/frvc3VkLFB +03/04/2018,Politicians,@Schwarzenegger,Tune in for my live q and a at the @ArnoldSports Sunday Showcase. https://t.co/hFM5Mu5E1Q +03/04/2018,Politicians,@Schwarzenegger,RT @ArnoldSports: 2018 Arnold Classic Results: 1. William Bonac 2. Dexter Jackson 3. Cedric McMillan 4. Roelly Winklaar 5. Steve Kuclo 6. L… +03/04/2018,Politicians,@Schwarzenegger,Thanks for following! I love using it to bring you guys with me everywhere. https://t.co/H2hrHMRdIN +03/04/2018,Politicians,@Schwarzenegger,Watch the 30th Anniversary of the @ArnoldSports live NOW: https://t.co/qNgkJSGdfK https://t.co/aXClOFvwjx +03/03/2018,Politicians,@Schwarzenegger,Thanks to both of you for supporting our kids! https://t.co/TCb5vQg6nZ +03/03/2018,Politicians,@Schwarzenegger,"A lot of you tell me that I inspired you at some point in your life. But I need inspiration too, and that’s why I l… https://t.co/V4w3WaPWmA" +03/03/2018,Politicians,@Schwarzenegger,RT @huntleypenniman: Following @Schwarzenegger on Snapchat was one of the best decisions I’ve made all week (👻: arnoldschnitzel) 💪🏻 +03/02/2018,Politicians,@Schwarzenegger,"RT @ArnoldSports: Tonight: Arnold Classic 212, Fitness & Figure International FINALS 7-10pm. Watch LIVE: https://t.co/cTOQtxGyYU #ASF2018 #…" +03/02/2018,Politicians,@Schwarzenegger,RT @JohnKasich: A great day with Gov. @Schwarzenegger and our legislative leaders celebrating congressional redistricting reform here in Oh… +03/02/2018,Politicians,@Schwarzenegger,Love seeing the #YesonIssue1 campaign talking to voters about redistricting reform inside the @ArnoldSports Festiva… https://t.co/pfm8o35H7m +03/02/2018,Politicians,@Schwarzenegger,Join me and don’t forget to add your snaps from the @ArnoldSports Festival to Our Story on Snapchat so they can be… https://t.co/Cjj1oZs0kN +03/02/2018,Politicians,@Schwarzenegger,Congratulations to all of you. This is a big win for the people of Ohio. I was proud to celebrate with you today. M… https://t.co/DqVdxr8kxQ +03/02/2018,Politicians,@Schwarzenegger,"RT @TheArnoldFans: We're at the Arnold Classic having a blast! Sure, you could watch @Schwarzenegger on Snapchat (ArnoldSchnitzel) or you c…" +03/02/2018,Politicians,@Schwarzenegger,@JamesFallows Thanks Jim! Now the important thing is that Ohio voters pass Issue One on May 8. And that great journ… https://t.co/uMJ6kLMunX +03/02/2018,Politicians,@Schwarzenegger,Just having fun in the @ArnoldSports Festival getting a quick pump. https://t.co/GI6PvaD5oE +03/02/2018,Politicians,@Schwarzenegger,Stop by and chat with this great team when you see them at the @ArnoldSports Festival. #YesonIssue1 https://t.co/HMr5YjXhZd +03/02/2018,Politicians,@Schwarzenegger,"RT @karenkasler: If you were wondering why @Schwarzenegger was at the OH Statehouse doing shots with @JohnKasich, @CARosenberger, @LarryObh…" +03/02/2018,Politicians,@Schwarzenegger,RT @clevelanddotcom: LIVE VIDEO: Watch Arnold @Schwarzenegger meet with Gov. @JohnKasich and legislative leaders to celebrate passing a con… +03/02/2018,Politicians,@Schwarzenegger,The @ArnoldSports Festival is for everyone from 1 month to 120 years old. I’m so pumped up to be in Columbus for th… https://t.co/JrS18zDxct +02/28/2018,Politicians,@Schwarzenegger,I'm a little depressed today. I have to admit I got addicted to watching the Olympics every night. I want to congra… https://t.co/HWS0vnoDSX +02/27/2018,Politicians,@Schwarzenegger,"Via @LATSeema, I’m pumped up to join my good friends @JohnKasich and @ChadMayesCA next month in LA to discuss a pos… https://t.co/WaC46Oqwja" +02/27/2018,Politicians,@Schwarzenegger,"RT @LATSeema: Schwarzenegger, Kasich to team up in L.A. for group seeking to reform California GOP https://t.co/FPiT4y6aFq" +02/26/2018,Politicians,@Schwarzenegger,RT @ncelenviro: Discover some of the nation's greatest state legislation combatting environmental degradation and protecting public health… +02/22/2018,Politicians,@Schwarzenegger,"Congratulations @lindseyvonn! You are a true champion, and it is always a joy to watch you ski. You've inspired so… https://t.co/ULiRFGsJh2" +02/21/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: If you really want to drain the swamp, you don’t do it by defending gerrymandering, which allows politicians to rig th…" +02/21/2018,Politicians,@Schwarzenegger,RT @ketch: @Schwarzenegger You can join @Schwarzenegger’s campaign to terminate gerrymandering on @Crowdpac at https://t.co/HlxIs86jVe. He… +02/20/2018,Politicians,@Schwarzenegger,RT @attn: @Schwarzenegger and here. https://t.co/Vy9qsNt3Ou +02/20/2018,Politicians,@Schwarzenegger,"RT @attn: @Schwarzenegger here, https://t.co/9ZwmTHni2B" +02/20/2018,Politicians,@Schwarzenegger,"RT @attn: @Schwarzenegger We agree, @Schwarzenegger. It's time to terminate gerrymandering just like you explained it for us here, https://…" +02/20/2018,Politicians,@Schwarzenegger,"If you really want to drain the swamp, you don’t do it by defending gerrymandering, which allows politicians to ri… https://t.co/msKJ8VI4Kx" +02/19/2018,Politicians,@Schwarzenegger,So proud to sit with Salma from @ASASafterschool courtside at the All-Star Game. Go #TeamLebron! Thanks for playing… https://t.co/0yzzSUmu3T +02/17/2018,Politicians,@Schwarzenegger,"Love this! @KingJames, thank you for supporting @ASASafterschool. https://t.co/Q2pQgnBqRE" +02/16/2018,Politicians,@Schwarzenegger,"RT @GrayForAssembly: We had a deal. Without Sites,Temperance you're breaking a promise and nullifying the will of the Voters who... https:/…" +02/14/2018,Politicians,@Schwarzenegger,"RT @mattiseman: Yesterday was the day I won Celebrity Apprentice. My boss, @Schwarzenegger, got me involved with his charity @ASASaftersch…" +02/12/2018,Politicians,@Schwarzenegger,"Like Lincoln said, we should seek the better angels of our nature and strive to remember that regardless of our pol… https://t.co/2ydpVA7ulF" +02/12/2018,Politicians,@Schwarzenegger,President Lincoln is one of my heroes. I keep this sculpture by my front door so that I’m reminded every day of the… https://t.co/nR3jNemj6Q +02/12/2018,Politicians,@Schwarzenegger,"Proud to hear a young Californian, @thisisrozzi, who blew us all away when she sang at the Capitol Christmas tree-… https://t.co/Z0CJvO3lSg" +02/08/2018,Politicians,@Schwarzenegger,"RT @AirResources: ICYMI: Governor Arnold @Schwarzenegger accepts #HaagenSmit Legacy Award for #climatechange leadership #AB32 + +“I’m proud o…" +02/08/2018,Politicians,@Schwarzenegger,#tbt to this guy coming to visit the State Capitol when I was Governor and taking over as national spokesman for… https://t.co/P7vp8f8YXb +02/08/2018,Politicians,@Schwarzenegger,"@AirResources Of all of our great environmental work, appointing @MaryNicholsCA was by far one of my smartest decis… https://t.co/YXG8mhmTuK" +02/08/2018,Politicians,@Schwarzenegger,"I am honored to receive the Haagen-Smit Award, named after a great immigrant to California, genius scientist, and p… https://t.co/mD165CtGFU" +02/08/2018,Politicians,@Schwarzenegger,We can't let our politics get in the way of fighting for a better system and a better Congress for all voters. Poli… https://t.co/bwuNQ99QwC +02/07/2018,Politicians,@Schwarzenegger,"Thank you @KingJames! No pressure, but at $5.50 per day of @ASASafterschool programming per kid, if you win, that’s… https://t.co/mHlvnn6pN7" +02/07/2018,Politicians,@Schwarzenegger,I am proud of you! Keep up the fantastic work! https://t.co/JF2f3TSSi2 +02/07/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: .@Schwarzenegger to people who criticize his gerrymandering crusade: +""your comments really worry me, because I think some…" +02/06/2018,Politicians,@Schwarzenegger,@FrankLaRose Thank you for your leadership on the issue! I'm very proud of you and Ohio. +02/06/2018,Politicians,@Schwarzenegger,It was such a bold choice to have them star in their own story - only Clint could make that decision. But all three… https://t.co/8dgEKUWsSQ +02/06/2018,Politicians,@Schwarzenegger,"Clint has done it again. “The 15:17 to Paris” is brilliant. Well-acted, flawlessly directed. Best of all, for the f… https://t.co/pvRjMxELw2" +02/06/2018,Politicians,@Schwarzenegger,"Congratulations to my friend @JohnKasich, the Ohio Legislature, and most of all, the great people of Ohio on this b… https://t.co/piw7DETrXo" +02/02/2018,Politicians,@Schwarzenegger,Add more weight. https://t.co/O3wmBxeBvs +02/02/2018,Politicians,@Schwarzenegger,Check out this piece about former oil workers in our Central Valley who have become iron and electrical workers in… https://t.co/qoPoez9Za4 +02/02/2018,Politicians,@Schwarzenegger,Here are two facts: pollution from fossil fuels is killing us and cleaning our air should be a bipartisan goal; and… https://t.co/Cnh9Y846mA +02/02/2018,Politicians,@Schwarzenegger,RT @smerconish: thank you to our latest contributor Arnold @Schwarzenegger exclusive to https://t.co/UCpx3FqWfX: To Drain The Swamp Termina… +01/30/2018,Politicians,@Schwarzenegger,RT @CommonCause: @LarryHogan @JohnKasich @Schwarzenegger @GovernorDavis .@Schwarzenegger (former Republican governor of California) and @Go… +01/29/2018,Politicians,@Schwarzenegger,"It’s time to put the voters’ interests above the politicians, because the politicians have proven they are incapabl… https://t.co/NRegcyoDt7" +01/29/2018,Politicians,@Schwarzenegger,I am hopeful that the Supreme Court will hear our concerns and reject this fixed system that allows extreme partisa… https://t.co/XSWswep2B9 +06/13/2018,Politicians,@USAGSessions,.@RepMarkMeadows @Jim_Jordan You are wasting time with Rosenstein yanking your chain. https://t.co/aPHmP8DZS6 +06/06/2018,Politicians,@USAGSessions,"Rosenstein was willing to help @realDonaldTrump clean DOJ/FBI hence his letter, but then media and Dems pounced. Th… https://t.co/AA5J4qtm4Y" +06/06/2018,Politicians,@USAGSessions,"Comey firing was done in part by Rosenstein which means he can’t oversee Mueller, but if @jeffsessions removes Rose… https://t.co/lWZlySW8NP" +06/06/2018,Politicians,@USAGSessions,Easy for @realDonaldTrump to blame everything on @jeffsessions but if @POTUS had demanded that by day one all senio… https://t.co/sTbFuRjSoR +06/06/2018,Politicians,@USAGSessions,The IG recomended months ago that McCabe be prosecuted for lying. Now this coward - who sent Strzok to trip up… https://t.co/CkF8VqSP8W +04/19/2018,Politicians,@USAGSessions,.@RepMarkMeadows This should have been referred to a Special Counsel who like Mueller to Flynn would have easily sq… https://t.co/yRu4eIa573 +04/18/2018,Politicians,@USAGSessions,Good work by @RepDeSantis and others. But as long national TV hosts and “reporters” shill for Rosenstein and Muelle… https://t.co/46GLrHcqRh +04/16/2018,Politicians,@USAGSessions,.@charliekirk11 For the same reason McCabe and the @ClintonFdn are getting a pass. https://t.co/LvwzQuSlWq +04/16/2018,Politicians,@USAGSessions,It won’t happen; same as McCabe won’t be prosecuted for lying under oath and the @ClintonFdn is not being investiga… https://t.co/owJPTrqAp4 +04/12/2018,Politicians,@USAGSessions,His current boss. Trump. https://t.co/n23aD3vLNz +04/10/2018,Politicians,@USAGSessions,"They would not be raided. In fact, her lawyers helped in the conspiracy to obstruct an investigation yet faced no c… https://t.co/vIQdAmFXNs" +04/10/2018,Politicians,@USAGSessions,There is “a high standard” to get a FISA warrant too. Remember what happened? FBI played the court. https://t.co/KSzz5x4kWF +04/10/2018,Politicians,@USAGSessions,Can anyone explain why Sessions has not appointed a Special Counsel on the intelligence leaks? On the IRS thuggery… https://t.co/p64C6LcNQc +03/30/2018,Politicians,@USAGSessions,McCabe will have no legal consequences because Rod Rosenstein and Robert Mueller are out to protect their Obama era… https://t.co/DZ4VM81ipL +03/23/2018,Politicians,@USAGSessions,.@realDonaldTrump Why would Congress give you such a power over them? If they want you to veto an item they will ch… https://t.co/qUiw7IIzJs +03/18/2018,Politicians,@USAGSessions,Thank you @RepGoodlatte! https://t.co/GRpABW4NMl +03/18/2018,Politicians,@USAGSessions,This country is thankful to patriots like @RandPaul for speaking the truth when whoring one out to say what… https://t.co/aihkdXqgrx +03/12/2018,Politicians,@USAGSessions,Another beauty from our amazing AG. Giving surveillance abuser and liar Clapper a pass. @RepGoodlatte @TGowdySC are… https://t.co/9TkLgCzx44 +03/04/2018,Politicians,@USAGSessions,Great patriot @RepChrisStewart! https://t.co/OAoNW24XkH +02/28/2018,Politicians,@USAGSessions,There is no honor/integrity in an AG that doesn’t appoint a Special Counsel on the illegal classified leaks and on… https://t.co/s81inhw7z8 +02/28/2018,Politicians,@USAGSessions,.@JerryFalwellJr @JonahNRO There is no honor in accepting the AG job knowing you will recuse yourself from an issue… https://t.co/wp8tlZIxJC +02/28/2018,Politicians,@USAGSessions,"Let’s applaud the patriots @RepLeeZeldin @Jim_Jordan, @RepRooney @RepTedBudd @RepMattGaetz @RepMarkMeadows… https://t.co/tllshy8O9m" +02/19/2018,Politicians,@USAGSessions,"Correct @FLGovScott and @marcorubio should help reform the FBI process instead of joining the ratings brothel, vict… https://t.co/TUErUj0Y4H" +02/18/2018,Politicians,@USAGSessions,.@jaketapper Well @marcorubio and @realDonaldTrump don’t need to join your victim-exploitation-for-ratings to hear… https://t.co/mDV0tdmOTT +02/07/2018,Politicians,@USAGSessions,Patriot @DevinNunes says it as it is. Will Rod Rosenstein do something about these crimes? No because he is a cowar… https://t.co/ViDmnH6uHJ +02/06/2018,Politicians,@USAGSessions,.@JaySekulow Get Trump to fire the idiot Cobb! How many more people who worked like dogs for @POTUS need to suffer… https://t.co/ZlQhcR48cO +02/06/2018,Politicians,@USAGSessions,Applaud the patriots who despite mockery and “burning bridges” with sources keep the bell ringing against gov abuse… https://t.co/G8IqCKJBK1 +02/02/2018,Politicians,@USAGSessions,@realDonaldTrump #ReleaseTheMemo! +02/02/2018,Politicians,@USAGSessions,Thank you @Jim_Jordan. https://t.co/HLDliIKusP +02/01/2018,Politicians,@USAGSessions,Another patriot in @RepJeffDuncan trying to restore the integrity of the FBI and hold them accountable as outlined… https://t.co/5GvGnKspXI +02/01/2018,Politicians,@USAGSessions,Thank you for your bold patriotism @RepMarkMeadows. https://t.co/lWdXq3pEXX +01/30/2018,Politicians,@USAGSessions,Thank you @RepChrisStewart for your patriotism and courage. Nice to see people putting country over media accolades. https://t.co/7XbHtrNgqS +01/30/2018,Politicians,@USAGSessions,Today a Battalion of patriots led by @DevinNunes helped Congress execute its constitutional duty of having oversigh… https://t.co/AQ9twUPtJl +01/25/2018,Politicians,@USAGSessions,Go easy there @WalshFreedom or else CNN won’t pick you up next time you stand at the corner. https://t.co/ZRxNV9816F +01/25/2018,Politicians,@USAGSessions,First @JusticeOIG said he has the text. Then DOJ said they don’t have it. After the blow back to a potentially huge… https://t.co/cAlTLobTij +01/25/2018,Politicians,@USAGSessions,@CheriJacobus @scottrgordon @JohnJHarwood Bill like you is saying things to get on TV. He is putting TV ahead of principles. +01/25/2018,Politicians,@USAGSessions,@JohnJHarwood Media have always been susceptible to publicity whores who say things hoping to be picked up by CNBC for a few minutes. +01/25/2018,Politicians,@USAGSessions,See @JaySekulow @DonaldJTrumpJr? @johncardillo gets it! https://t.co/E19tvDV91x +01/25/2018,Politicians,@USAGSessions,"Get your head out of Cobb’s backside, @realDonaldTrump! Have these hacks - out to distract from Obama era crimes -… https://t.co/3tMUoi9QOP" +01/24/2018,Politicians,@USAGSessions,be proper for the Obama administration—or any administration—to use something like that to authorize further invest… https://t.co/wEpAPBA8kl +01/24/2018,Politicians,@USAGSessions,"More @ChuckGrassley: @Comey testified in 2017 that it was “salacious and unverified.” If it was unverified in 2017,… https://t.co/f4mW0ZuXIg" +01/24/2018,Politicians,@USAGSessions,"More @ChuckGrassley “First, despite all the hubbub, this is not all that unusual. Anyone can ask for a criminal inv… https://t.co/Wsi4LKcOGK" +01/24/2018,Politicians,@USAGSessions,More @ChuckGrassley “We saw Mr. Steele swearing one thing in a public libel suit against him in London. Then we saw… https://t.co/MV9OGc8WPZ +01/24/2018,Politicians,@USAGSessions,"@ChuckGrassley More @ChuckGrassley “Steele shared his, at least partially, Russian-based allegations far and wide.… https://t.co/ScscnqchIi" +01/24/2018,Politicians,@USAGSessions,"From @ChuckGrassley “Many of his sources for claims about the Trump campaign are Russian gov officials. So, Steele,… https://t.co/CxSPIaSRE0" +01/24/2018,Politicians,@USAGSessions,The future of our country is in the hands of patriots like @RepGoodlatte. https://t.co/tBjpm5PXbh +01/24/2018,Politicians,@USAGSessions,A great thanks to @Jim_Jordan who patriotically defends the honor of the FBI while many in DC stand at the corner h… https://t.co/9uqGp89NAc +01/24/2018,Politicians,@USAGSessions,Correct @RealJamesWoods and now a U.S. Attorney who saw nothing wrong with Hillary’s private server will be the FBI… https://t.co/LiepNDJk7a +01/24/2018,Politicians,@USAGSessions,Thank you @SenRonJohnson for your patriotism. https://t.co/1RjfDEehRW +01/23/2018,Politicians,@USAGSessions,Oh great. @WalshFreedom is at the corner again hoping to be picked up by CNN. https://t.co/OTu587LyUc +01/23/2018,Politicians,@USAGSessions,"Odd. @Comey and his team knew on their own to cover for @HillaryClinton, but Wray needs to be “pressured” publicaly… https://t.co/QIT54xvzBb" +01/23/2018,Politicians,@USAGSessions,"Wray’s bosses R Sessions-Trump. Secondly, McCabe’s wife money; McCabe whitewashing the emails and derailing the Fou… https://t.co/wVQjHg5Omd" +01/22/2018,Politicians,@USAGSessions,"IRS records? Missing. + +Hillary records? Missing. + +Strzok records? Missing. + +Page records? Missing. + +This is the M.O… https://t.co/4YDwwOr5FD" +01/19/2018,Politicians,@USAGSessions,.@ShannonBream Please ask @LindseyGrahamSC why he is not funding the fence he supported a decade ago? Why give citi… https://t.co/Z7ecbmsNRS +01/19/2018,Politicians,@USAGSessions,"For the sake of transparency and out democracy, Congress should #ReleaseTheMemo. We can’t have a law enforcement of… https://t.co/jmJ5eKACSC" +01/17/2018,Politicians,@USAGSessions,Hey @RepMattGaetz @DevinNunes @RepStefanik @RepMikeTurner @TGowdySC Don’t be useful idiots! Release FULL transcript… https://t.co/kxq1Z3ObkE +01/09/2018,Politicians,@USAGSessions,.@justinjm1 In an effort to help DOJ staff prepare for their own testimony. Obstruction. https://t.co/Dlwl2vKz4z +01/09/2018,Politicians,@USAGSessions,.@kylegriffin1 Big as in helping DOJ officials prepare their answers for upcoming testimony. https://t.co/DdFyRvRmkZ +01/09/2018,Politicians,@USAGSessions,"Simpson wrote it in the op ed; nothing new, and it confirms that the FBI did in fact work with the DNC funded Steel… https://t.co/MmMValYlJZ" +01/09/2018,Politicians,@USAGSessions,Thanks for tweeting this @MariaBartiromo. https://t.co/kPWVrsMFuA +01/07/2018,Politicians,@USAGSessions,.@dbongino No. https://t.co/xbogwFCkvY +01/07/2018,Politicians,@USAGSessions,Great question by @charliekirk11. https://t.co/nyjB6gJKG3 +01/04/2018,Politicians,@USAGSessions,Right on @johncardillo https://t.co/z0UamhojLB +01/04/2018,Politicians,@USAGSessions,Yes. https://t.co/y757bnglM4 +01/04/2018,Politicians,@USAGSessions,Can @MarkWarner explain why Mueller should be looking beyod collusion? How about we appoint a Special Counsel to ov… https://t.co/jVnUdklRbY +01/03/2018,Politicians,@USAGSessions,.@tedlieu Who gives a F... what Fusion GPS founders bark in the @nytimes? It is not the role of @RepGoodlatte or… https://t.co/B2zQvxrAfe +12/31/2017,Politicians,@USAGSessions,Thank you @LindseyGrahamSC! Obama people like @Comey were dishonest with the court about the sourcing of the dossie… https://t.co/jClwfSexy4 +12/28/2017,Politicians,@USAGSessions,Thanks @RepMattGaetz https://t.co/vZmj6P9G4f +12/28/2017,Politicians,@USAGSessions,The same DOJ that wasted no time appointing a Special Counsel. +12/28/2017,Politicians,@USAGSessions,This is the same DOJ that Sessions directed to investigate Obama’s treatment of Hizbollah and Mueller giving Uraniu… https://t.co/EIUEWD8clK +12/20/2017,Politicians,@USAGSessions,Look what we have here. Oh no @Rosie. https://t.co/ckkrugNQ8U +12/18/2017,Politicians,@USAGSessions,Thanks @ChrisRBarron https://t.co/XtO4MmCyjK +12/17/2017,Politicians,@USAGSessions,Thanks @DarrellIssa https://t.co/lcEH6rol27 +12/17/2017,Politicians,@USAGSessions,Thanks @RepDeSantis https://t.co/TWG826Pmfo +12/17/2017,Politicians,@USAGSessions,Thanks @AlanDersh https://t.co/Zt9CF2uuIV +12/17/2017,Politicians,@USAGSessions,Thanks @JudgeJeanine https://t.co/Icoq3MFqBt +12/17/2017,Politicians,@USAGSessions,Thanks @JohnCornyn https://t.co/WR8U1jPoj8 +12/17/2017,Politicians,@USAGSessions,Thanks @johncardillo https://t.co/xNTKWlq141 +12/17/2017,Politicians,@USAGSessions,Thanks @TuckerCarlson https://t.co/lm5cXevJNx +12/15/2017,Politicians,@USAGSessions,Thanks @KimStrassel https://t.co/Q7mcVUXSJL +12/15/2017,Politicians,@USAGSessions,"RT @RiskRewardFBN: Former FBI Assistant Director James Kallstrom on the Peter Strzok anti-Trump texts: ""He belongs in Leavenworth. He belon…" +12/15/2017,Politicians,@USAGSessions,Thanks @AmbJohnBolton https://t.co/1uZzBD2JOp +12/15/2017,Politicians,@USAGSessions,Thanks @newtgingrich https://t.co/QFJ0sCP0ll +12/15/2017,Politicians,@USAGSessions,RT @LouDobbs: Deep State Exposed- @CharlesHurt: This is the most sinister & corrupt Deep State that anyone could have ever imagined. If you… +12/14/2017,Politicians,@USAGSessions,Good point by @ggreenwald. https://t.co/rkFlEKh9ZO +12/14/2017,Politicians,@USAGSessions,"RT @ChuckGrassley: FBI owes answers abt ""insurance policy"" against Trump victory...& if nothing to hide, why would senior FBI leaders use s…" +12/13/2017,Politicians,@USAGSessions,Why @charliekirk11 are they wasting time on these investigations when Mueller is already out there? https://t.co/4QRFdYHwLe +12/11/2017,Politicians,@USAGSessions,"RT @RepMattGaetz: ""We don’t know if taxpayer funds were used to buy political opposition research to discredit the President. We don’t know…" +12/10/2017,Politicians,@USAGSessions,Once again @realDonaldTrump’s mistake of not nominating @JudgeJeanine as DAG is seen. For his own legacy and for DO… https://t.co/QG8l1URhS6 +12/10/2017,Politicians,@USAGSessions,Yes it did. https://t.co/4E5v8d3gAu +12/09/2017,Politicians,@USAGSessions,Thank you @LindseyGrahamSC https://t.co/1Z8jGKGeW2 +12/07/2017,Politicians,@USAGSessions,.@RepDeSantis Correct. Rosenstein acted against DOJ policy. https://t.co/QXJhE5fb0R +12/07/2017,Politicians,@USAGSessions,TrumpRussia was also an “ongoing investigation” yet Comey asked Rosenstein for permission to reveal it (while not r… https://t.co/FkLDQIy89z +12/07/2017,Politicians,@USAGSessions,Rosenstein authorized @Comey to say publicly that there is an investigation but here Wray together with Obama holdo… https://t.co/wv9AWupReN +12/07/2017,Politicians,@USAGSessions,Good work here by @RepGoodlatte of @HouseJudiciary https://t.co/FFD5KowTrd +12/07/2017,Politicians,@USAGSessions,“Highly critical” @jaketapper. How many panels did he have on this? How many times did he ask on TV what Obama knew… https://t.co/4u9G4AMjVO +12/05/2017,Politicians,@USAGSessions,Right on point @TuckerCarlson. All the American people get from @Comey @SallyQYates and @EricHolder when confronted… https://t.co/bTXVunBvCa +12/05/2017,Politicians,@USAGSessions,Bingo! Right on point @StefanMolyneux! @Comey @EricHolder @SallyQYates know very well what a politically-corrupt sh… https://t.co/H94RAZTvis +12/04/2017,Politicians,@USAGSessions,Why is @Comey into photos of FBI agents’ backsides? Ok not to show faces but this is his only alrernative? https://t.co/eyMeqEjJyD +12/04/2017,Politicians,@USAGSessions,.@johncardillo is right on point @EricHolder. https://t.co/dH8Bva4xIq +12/04/2017,Politicians,@USAGSessions,"In the face of partisan hype and anti-Russia hysteria, @AlanDersh summarizes in less than 70 seconds what a POTUS c… https://t.co/yVuirJOKw1" +12/04/2017,Politicians,@USAGSessions,So now @Comey quotes himself. https://t.co/eyMeqEjJyD +12/04/2017,Politicians,@USAGSessions,Wow https://t.co/xxt96TEIUe +12/03/2017,Politicians,@USAGSessions,Actually as @AlanDersh and former AG Mukasey pointed out cooperating witnesses are usually charged with serious cri… https://t.co/t0s8xzSXEf +12/03/2017,Politicians,@USAGSessions,Powerful words from @RepChrisStewart protecting the rights of American citizens while @RepAdamSchiff wants to tramp… https://t.co/a2MDIXSJ8L +11/30/2017,Politicians,@USAGSessions,The @FBI still has many @Comey holdovers who put protecting @HillaryClinton ahead of protecting the rule of law. Wh… https://t.co/mU95Aywp3J +11/27/2017,Politicians,@USAGSessions,President @realDonaldTrump is the head of the executive branch and can hire or fire whomever he wants at the DOJ an… https://t.co/3HyQg6UmXf +11/22/2017,Politicians,@USAGSessions,Why in HELL is he still number two at the FBI? Say again @TGowdySC why there is no need for a Special Counsel? https://t.co/tE1SISg6at +11/15/2017,Politicians,@USAGSessions,HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA IDIOT JEFF SESSIONS HA HA HA HA HA HA HA HA HA MESSE… https://t.co/EyP8zWInHc +11/14/2017,Politicians,@USAGSessions,Welcome Special Counsel @JudgeJeanine. +11/14/2017,Politicians,@USAGSessions,".@AndrewCMcCarthy The point is that Obama hacks at DOJ ran interference on all those matters. Therefore,… https://t.co/ehCMBDK7n3" +11/10/2017,Politicians,@USAGSessions,It appears that @RepMattGaetz is of the few in @HouseGOP who are bold enough to demand accountability over Mueller.… https://t.co/gSVlgYXd5W +11/02/2017,Politicians,@USAGSessions,.@SenatorBurr Russian-linked accounts include anyone who tweets in Russian even here in the US. This includes patri… https://t.co/FE3Q0oEDcN +11/02/2017,Politicians,@USAGSessions,.@SenatorBurr Diplomats of a foreign power meddled in the election by giving a DNC contractor dirt on Manafort yet… https://t.co/CuMGTYZMCy +11/02/2017,Politicians,@USAGSessions,.@TheDemCoalition Not remembering the details of a potential meeting or a conversation is not perjury. Just ask… https://t.co/jg0Gved8dz +11/01/2017,Politicians,@USAGSessions,.@RepChrisStewart Not even indirectly. It shows Mueller is desperate and abusive too. https://t.co/VynLaPhSqb +10/29/2017,Politicians,@USAGSessions,Where is @MarkWarner @RepAdamSchiff? Rosenstein and Mueller? The last two helped protect Hillary. They don’t want p… https://t.co/5Y4AZrJNA9 +10/29/2017,Politicians,@USAGSessions,".@maggieNYT There is still no proof that Russia hacked @johnpodesta. Besides, maybe Russia had a seperate score wit… https://t.co/Zbul9ceAPF" +10/27/2017,Politicians,@USAGSessions,.@ChuckGrassley @SenFeinstein @DevinNunes @SenatorBurr will investigate Y Obama’s DOJ blocked a CW from speaking to Congress. @RepAdamSchiff +10/27/2017,Politicians,@USAGSessions,.@RepAdamSchiff Trump put a stop to the political intervention by Obama holdovers yet you see a prob with Trump; no… https://t.co/LPGA8SvsEe +10/27/2017,Politicians,@USAGSessions,.@SharylAttkisson More incredible is that it was “investigated” by the same Admin that did this crime and - shock -… https://t.co/gVhVooLY4L +10/27/2017,Politicians,@USAGSessions,.@RepAdamSchiff 15 people were convicted of crimes in Whitewater and it took years to get there. @DevinNunes good w… https://t.co/4RQHjMstRr +10/26/2017,Politicians,@USAGSessions,.@johnrobertsFox @jaketapper Very good. DOJ works at the pleasure of POTUS. The political hacks Obama holdovers at… https://t.co/z1BbZmyJKO +10/25/2017,Politicians,@USAGSessions,Whoa! @seanmdav shows that the DNC dossier news is a ploy by FussionGPS to cover for other funders of the Dossier.… https://t.co/AKxBXeFDTe +10/25/2017,Politicians,@USAGSessions,".@ChuckGrassley Why should the AG not be able to do it? Between him, Mueller and Rosenstein, the AG was not at DOJ… https://t.co/p9rRxb5E0s" +10/25/2017,Politicians,@USAGSessions,"Well, @DonaldJTrumpJr meeting the Russian attorney was also only oppo research. Thanks for your help! https://t.co/iSIwd0ykpi" +10/25/2017,Politicians,@USAGSessions,.@maggieNYT True but the @nytimes went along with the agenda of the people pushing the dossier than trying to find… https://t.co/4qZA0eresp +10/24/2017,Politicians,@USAGSessions,"What did @DavidCornDC know and when did he know it? He was of the first to spread the DNC-paid, Russia disinformation content. Attn @JoeNBC" +10/22/2017,Politicians,@USAGSessions,Fusion GPS worked for Russia on Magnitsky and produced a dossier with Russia disinformation. Where is Mueller? @seanhannity @SenatorBurr +10/22/2017,Politicians,@USAGSessions,Reminder that @DavidCornDC helped spread Russia disinformation on @realDonaldTrump produced by a company who worked… https://t.co/zWxRl7wJ8Q +10/22/2017,Politicians,@USAGSessions,If only @RepAdamSchiff and @MarkWarner cared about Ukraine’s & Russia-through-Fusion efforts to interfere as they c… https://t.co/TSg16vsQNZ +10/18/2017,Politicians,@USAGSessions,"You would think the Judiciary Committee would spend every minute asking questions about DOJ covering for Hillary, but they troll AG instead." +10/18/2017,Politicians,@USAGSessions,Totally corrupt Bob Mueller turned a blind eye to the Russians bribing @BillClinton and the @ClintonFdn. Now @jaketapper downplays it. +10/10/2017,Politicians,@USAGSessions,Sad. @PreetBharara turned into a mid-night troll and he is making @ArthurSchwartz more popular. https://t.co/4YjDsttdaY +09/18/2017,Politicians,@USAGSessions,Selling gov favors; being reckless with classified info; conspiring to and actually delete emails; lying under oath… https://t.co/Sfc8lKaH0P +09/18/2017,Politicians,@USAGSessions,Interesting that @RobbyMook @johnpodesta and @HillaryClinton really think the Obama DOJ was unfair to them. Total p… https://t.co/u8OVUrvx0k +09/14/2017,Politicians,@USAGSessions,.@ChuckGrassley Your committee is ripping this administration apart with the Russia circus yet you have the nerve t… https://t.co/JhyoXJdZ1n +09/14/2017,Politicians,@USAGSessions,.@MaxBoot Clearly says in the constitution that @TomRooney decides what is a scandal... https://t.co/4FnLNf8uHY +09/01/2017,Politicians,@USAGSessions,No one is. DOJ is too busy going after @POTUS via Mueller and still busy protecting @HillaryClinton. Thank Jared fo… https://t.co/wgcMUE0hSf +08/14/2017,Politicians,@USAGSessions,But then gave antifa a pass. https://t.co/vc4JSHDRdH +08/13/2017,Politicians,@USAGSessions,.@tribelaw It is time to investigate any and all who drive violence including antifa. https://t.co/5yPYWFwIxz +08/09/2017,Politicians,@USAGSessions,.@RepAdamSchiff Why do you care more about alleged interference by Russia than actual interference by Ukraine? https://t.co/m7RgrxtIfd +07/31/2017,Politicians,@USAGSessions,.@AdamParkhomenko Why would you fire people who know details of crimes and abuse of power? They will have incentive… https://t.co/rJv7PaZ3PM +07/31/2017,Politicians,@USAGSessions,Whoa! Solid work by @KimStrassel! @RepAdamSchiff is hiding the real collusion. https://t.co/PCaBG3gY7h +07/30/2017,Politicians,@USAGSessions,Arrogance. @SallyQYates who obstructed an investigation into @HillaryClinton and protected the IRS says DOJ needs to be protected from POTUS +07/28/2017,Politicians,@USAGSessions,.@EmilyMiller So the Obama DOJ helped deny the murder of a Russian who was supposed to speak with the Feds. Tell me… https://t.co/kGQHmOJhRR +07/27/2017,Politicians,@USAGSessions,.@JoeNBC What if the opponent violated laws? Does the opponent get a pass simply because of being an opponent? https://t.co/vzDK5cERc2 +07/27/2017,Politicians,@USAGSessions,.@ashleyfeinberg Do you know that U.S. attorneys (part of the DOJ) can run investigations separate from the FBI and… https://t.co/UcoNUg8rG0 +07/25/2017,Politicians,@USAGSessions,.@mmurraypolitics because Obama's DOJ did not investigate its own IRS and never appointed a special counsel against its own @HillaryClinton. +07/25/2017,Politicians,@USAGSessions,.@mmurraypolitics Because McCabe was involved in Hillary׳s investigation; because Holder who helped Obama in 2008 n… https://t.co/vhlBUtfOso +07/25/2017,Politicians,@USAGSessions,.@RepAdamSchiff Why should Mueller be able to do what he wants? Because Rosenstein can't take pressure from media a… https://t.co/XCEv4617Yh +07/24/2017,Politicians,@USAGSessions,No @matthewamiller. @POTUS merely wants his opponents to be treated as he is. Equal treatment under the law is a be… https://t.co/VOBkTEI3ly +07/23/2017,Politicians,@USAGSessions,.@mitchellvii Where is Rosenstein? To avoid media blowback he is scared to tell Mueller 'stop the leaks or I stop y… https://t.co/GzcWdqX6Ge +07/21/2017,Politicians,@USAGSessions,.@EricHolder The U.S. is not a fascist dictatorship where it's forbidden to question the integrity of officials.… https://t.co/bA7PtRhIiP +07/21/2017,Politicians,@USAGSessions,".@JudyWoodruff Yet rather than stopping it, Obama's DOJ was busy defending @HillaryClinton and spying on Trump's pe… https://t.co/aq4o4G8Ybe" +07/20/2017,Politicians,@USAGSessions,.@Carrasquillo How can Mueller have independence when he speaks with @MarkWarner @RepAdamSchiff about his work? https://t.co/W41AqToHV3 +07/16/2017,Politicians,@USAGSessions,"Just ""X appropriate""? This is more direct help from Ukraine than anything from Russia! Where are the hearings,… https://t.co/n5s1kWQJo6" +07/07/2017,Politicians,@USAGSessions,"""Hacked election""? No one hacked the election @allinwithchris @chrislhayes. Enough with the lie @RepAdamSchiff. https://t.co/JguCI3uK0z" +07/07/2017,Politicians,@USAGSessions,".@MarkWarner @TGowdySC @SenatorBurr @ChuckGrassley @RepAdamSchiff @HurdOnTheHill + +Why not say it under oath in pub… https://t.co/61MeJtJScG" +07/06/2017,Politicians,@USAGSessions,".@JoeNBC @DavidCornDC If we know for a FACT that Russia interfered, why are @MarkWarner @RepAdamSchiff still investigating if Russia did it?" +07/02/2017,Politicians,@USAGSessions,"Fraud @MarkWarner keeps spreading smoke regarding Trump and Russia, then he says ""whoa, look at the smoke."" @SenTomCotton @FareedZakaria" +06/29/2017,Politicians,@USAGSessions,Amen @RossBarkan. Great line on @PreetBharara. https://t.co/c7jJXexrsS +06/27/2017,Politicians,@USAGSessions,"Get to the spying, unmasking and leaking by Obama officials! What the hell is wrong with @SenatorBurr? @marcorubio… https://t.co/hn3QQJgWAN" +06/27/2017,Politicians,@USAGSessions,!!! @RepSwalwell echoes @RepAdamSchiff that all they have is reason to investigate; no evidence of actual wrongdoing https://t.co/Oi7GZ7HhyF +06/26/2017,Politicians,@USAGSessions,Ha! Remember when @PreetBharara bragged that he had subpoena power while his brother is only selling diapers? Preet… https://t.co/Q8IGyMCclf +06/18/2017,Politicians,@USAGSessions,Sad. @PreetBharara went from having subpoena power to being a troll. https://t.co/0H08c8WmhU +06/18/2017,Politicians,@USAGSessions,"Great @RepAdamSchiff. This means you support investigating the spying, leaking and unmasking by @AmbassadorRice and… https://t.co/9pbUhBZ0V5" +06/18/2017,Politicians,@USAGSessions,All of U.S. is waiting what Mueller will do next because Rosenstein wanted to ease up the intimidating attacks from… https://t.co/9M0BLg7L2Q +06/17/2017,Politicians,@USAGSessions,The McCarthyism by @MarkWarner @RepAdamSchiff @RepSwalwell against Americans after months of no evidence is shameful. Have you no shame? +06/16/2017,Politicians,@USAGSessions,The @HouseGOP and @SenateGOP are chasing people against whom there is ZERO clues of wrong doing; let alone evidence of a specific crime. +06/16/2017,Politicians,@USAGSessions,It is a disgrace that a distinguished public servant has been intimidated into doing an investigation that has no reason or merit. +06/16/2017,Politicians,@USAGSessions,"Rosenstein appointed Mueller for no reason and on no merit but too shield himself, Rosenstein, from intimidation from the media & Democrats." +06/15/2017,Politicians,@USAGSessions,.@RepAdamSchiff So did Rosenstein yet you and Dems like @SenSchumer questioned Rosenstein's integrity until he appo… https://t.co/r76LgyTjkO +06/15/2017,Politicians,@USAGSessions,Sad. @ChuckGrassley thinks he got concessions from @SenFeinstein to look into Lynch. Worthless! Let's see her agree to investigate unmasking +06/15/2017,Politicians,@USAGSessions,.@DevinNunes @TGowdySC @RepStefanik @HurdOnTheHill Anyone with a drop of patriotism will ask those questions from former DHS Sec Johnson. +06/15/2017,Politicians,@USAGSessions,Obama's DHS Johnson needs to be asked why he failed to protect America from Russian interference and if he knows about unmasking activity. +06/15/2017,Politicians,@USAGSessions,Sick. @RepAdamSchiff and @DevinNunes agreed to bring Obama's DHS Johnson to testify next week but not Obama NatSec advisor @AmbassadorRice. +06/15/2017,Politicians,@USAGSessions,Sad. @ChuckGrassley says he wants to investigate Russia interference. Didn't the IC already conclude it's Russia? Isn't Mueller onto this? +06/15/2017,Politicians,@USAGSessions,WTF @SenatorBurr @MarkWarnerVA? Mueller's work needs to be independent. You have no business talking with Mueller! https://t.co/yMmffWMKGX +06/14/2017,Politicians,@USAGSessions,RT @USAGSessions: @SenKamalaHarris @jonathanchait https://t.co/v2Qpz2khQP +06/14/2017,Politicians,@USAGSessions,@SenKamalaHarris @jonathanchait https://t.co/v2Qpz2khQP +06/14/2017,Politicians,@USAGSessions,"Clearly, @SenKamalaHarris was trying to distract from the fact that there is no evidence of collusion, which is why… https://t.co/zheeWFHK2o" +06/13/2017,Politicians,@USAGSessions,@joshgerstein @mtracey Only because Comey has made a mess by going public in the first place. +06/13/2017,Politicians,@USAGSessions,".@MarkWarner @MarkWarnerVA is protecting @AmbassadorRice. BTW, Y would she not want to give her 2 cents on Russia?… https://t.co/uEkI4sSFwv" +06/13/2017,Politicians,@USAGSessions,A great day! https://t.co/UHpKlfOKzg +06/13/2017,Politicians,@USAGSessions,Big time. https://t.co/MSwbXC5IQp +06/13/2017,Politicians,@USAGSessions,"SICK. @elizabethforma tells @davidaxelrod that AG Sessions ""needs to be taken out""" +06/13/2017,Politicians,@USAGSessions,".@RepAdamSchiff + +Yes. +Maybe. +McCarthyism. + +This is all you have after 11 months of investigations? + +@SenAngusKing… https://t.co/lxd8RtJLjs" +06/13/2017,Politicians,@USAGSessions,.@RepAdamSchiff MUELLER will resign! His BFF Comey said POTUS was not under investigation. Mueller's staff is taint… https://t.co/t8nWUzBuET +06/12/2017,Politicians,@USAGSessions,"Yes, @ByronYork. It is a conflict! https://t.co/GDLhgw8k9O" +06/12/2017,Politicians,@USAGSessions,.@HillaryClinton was not interviewed under oath and Comey made his announcement the first businees day after the interview. The fix was in! +06/12/2017,Politicians,@USAGSessions,"Comey admits he was going to close the @HillaryClinton case; he just wanted to do it ""credibly."" The fix was in. He… https://t.co/OmAIzOrXae" +06/12/2017,Politicians,@USAGSessions,"Mueller, Comey are close which puts a cloud over Mueller's work. Will Mueller investigate Comey's violations as outlined by @JonathanTurley?" +06/11/2017,Politicians,@USAGSessions,OPINION: Robert Mueller should step aside because friends shouldn’t be investigating friends. https://t.co/tMNa75M8QN +06/11/2017,Politicians,@USAGSessions,Stop the witch hunt @SenatorLeahy! A year into investigations and there is still no evidence of collusion. Listen t… https://t.co/Nka5YZBVT6 +06/11/2017,Politicians,@USAGSessions,"Surely, @SenatorLeahy will heed the advice of fellow Dem @SenFeinstein and get to the bottom of the real story - Ob… https://t.co/0bUSSxLm4d" +06/11/2017,Politicians,@USAGSessions,"@MarkCorallo1 Interesting, @PreetBharara gleefully met the president in January; as did Comey. Suddenly they became… https://t.co/4qWhxeqXxZ" +06/11/2017,Politicians,@USAGSessions,"Oof, @FrankQuattrone. https://t.co/E1TRa8gYrH" +06/11/2017,Politicians,@USAGSessions,.@yashar of course not because @EricHolder did @BarackObama's dirty work such as ordering @PreetBharara to free the… https://t.co/tmf0bWP3mG +06/11/2017,Politicians,@USAGSessions,.@PreetBharara acts as if he was so uneasy to get a call from POTUS but remember how gleeful Bharara was after meet… https://t.co/MR6l1g2yX9 +11/26/2017,Politicians,@RepJohnConyers,I am grateful to my colleagues who have called for due process before weighing judgment. I would urge them to conti… https://t.co/kMqhUYuCoM +11/26/2017,Politicians,@RepJohnConyers,"I’ll never allow that legacy – a legacy I owe to my father John Conyers, Sr., who integrated labor unions, or my… https://t.co/floxETEKiK" +11/26/2017,Politicians,@RepJohnConyers,I am proud and fortunate to be part of a legacy of more than 50 years of fighting for civil rights and making our c… https://t.co/3DBwddXG02 +11/26/2017,Politicians,@RepJohnConyers,"I cannot in good conscience allow these charges to undermine my colleagues in the Democratic Caucus, and my friends… https://t.co/8K9heki4Xm" +11/26/2017,Politicians,@RepJohnConyers,But I have come to believe that my presence as Ranking Member on the Committee would not serve these efforts while… https://t.co/No5xgt2BaQ +11/26/2017,Politicians,@RepJohnConyers,These challenges could not be more pressing in the face of an Administration that cares little for the rule of law… https://t.co/tssA4XHAHe +11/26/2017,Politicians,@RepJohnConyers,"To be clear, I would like very much to remain as Ranking Member. There is still much work to be done on core concer… https://t.co/lmHi7L1sW8" +11/26/2017,Politicians,@RepJohnConyers,"I deny these allegations, many of which were raised by documents reportedly paid for by a partisan alt-right blogge… https://t.co/FQ9csOMzDg" +11/26/2017,Politicians,@RepJohnConyers,"After careful consideration and in light of the attention drawn by recent allegations made against me, I have notif… https://t.co/VgB0ZhaiEJ" +11/18/2017,Politicians,@RepJohnConyers,"I miss Barack Obama + +#2017In4Words https://t.co/WVhqWhywjV" +11/17/2017,Politicians,@RepJohnConyers,"Folks, this is the same policy that was strictly enforced, at the request of @SenateGOP throughout President #Obama… https://t.co/j0mND9XOfy" +11/17/2017,Politicians,@RepJohnConyers,"Happening tomorrow! My annual Veterans Resource Fair. Come join to get valuable information on housing, employment,… https://t.co/OMNjNsA6bw" +11/16/2017,Politicians,@RepJohnConyers,"Hello everyone. I'm hosting a Veterans Resource Fair this Saturday, November 18, 11:00AM at Piquette Square. + +Plea… https://t.co/eNzlMTNUTh" +11/16/2017,Politicians,@RepJohnConyers,"If you have student loans, you’ve benefited from an interest break. + +@HouseGOP is cutting that because to give… https://t.co/DhLHaFwNUE" +11/16/2017,Politicians,@RepJohnConyers,"I will be calling on the US @StateDept to investigate why #WendellBrown is still in a Chinese jail. + +We must do ev… https://t.co/16NVX3XZTe" +11/16/2017,Politicians,@RepJohnConyers,"When the #GOPTaxScam explodes the deficit, #Republicans will call for spending cuts to critical initiatives (e.g.… https://t.co/NCzERK7Ccx" +11/16/2017,Politicians,@RepJohnConyers,The @HouseGOP keep spewing #AlternativeFacts about its #GOPTaxScam. They just want to give a tax break to the compa… https://t.co/Gsv8OkCP34 +11/16/2017,Politicians,@RepJohnConyers,"FACT: 36 MILLION middle class families would see their taxes go up under the #GOPTaxScam. + +@HouseGOP, you simply c… https://t.co/mkVrTBYHS5" +11/15/2017,Politicians,@RepJohnConyers,"#HR4140, No Unconstitutional Strike on #NorthKorea Act, w over 70 bipartisan cosponsors in the House & Senate, woul… https://t.co/hHgIBMVEtB" +11/15/2017,Politicians,@RepJohnConyers,"Finally, @realDonaldTrump must publicly acknowledge that he is constitutionally-barred from launching a preemptive… https://t.co/ivhLlih9cE" +11/15/2017,Politicians,@RepJohnConyers,It is now @realDonaldTrump’s responsibility to control his impulsive behavior and give diplomacy a chance to work.… https://t.co/51uHy6L1j5 +11/15/2017,Politicians,@RepJohnConyers,"Despite his unhelpful comments, I am quite encouraged to see that the @WhiteHouse has dispatched negotiators to tal… https://t.co/smdFMGiv61" +11/15/2017,Politicians,@RepJohnConyers,"Pleased that @realDonaldTrump was able to avoid reckless threats during his Asia trip, as I urged him to do. + +Unfor… https://t.co/iZISC3iHZY" +11/15/2017,Politicians,@RepJohnConyers,"The @HouseJudiciary Committee has the privilege of debating some of the most important, and often controversial, is… https://t.co/kGZr1PZnWb" +11/15/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🆕 @DavidCicilline, @RepJohnConyers Push for Hearing on White House Political Interference in Telecom, Media Industries🆕…" +11/14/2017,Politicians,@RepJohnConyers,How many times? #SessionsHearing #SessionsTestimony https://t.co/9bySQuELim +11/14/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: The letter from @TheJusticeDept was sent to the Majority, without the customary and appropriate notice to @RepJohnConye…" +11/14/2017,Politicians,@RepJohnConyers,"Virtually every Clinton-related matter that President Trump complains about has been well-litigated, carefully exam… https://t.co/dfsPdtMoyX" +11/14/2017,Politicians,@RepJohnConyers,"Further, we cannot refer an investigation to a second special counsel if we lack the evidence to predicate a crimin… https://t.co/Xoh9SF0R9d" +11/14/2017,Politicians,@RepJohnConyers,"The fact that this letter was sent to the Majority, without the customary and appropriate notice to me, indicates t… https://t.co/dT0l5hr45k" +11/14/2017,Politicians,@RepJohnConyers,"RT @RepJayapal: @HouseJudDems Lots of ""I don't recall"" from AG Sessions in response to @RepJerryNadler's questions about the Trump campaign…" +11/14/2017,Politicians,@RepJohnConyers,"RT @RepJayapal: @HouseJudDems @RepJohnConyers Rep. Conyers asked yes/no questions: +• Is it common in a democracy to use the justice system…" +11/14/2017,Politicians,@RepJohnConyers,Read my entire statement from today's hearing. https://t.co/U8hf2vgjfj +11/14/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: Watch it live today at 10AM on https://t.co/n4BJFROwXl https://t.co/QVuvZpZCyT +11/13/2017,Politicians,@RepJohnConyers,"RT @USRepRickNolan: America's support for this Saudi-led war in Yemen is: + +1. Unauthorized by Congress, +2. Contributing to horrific starva…" +11/13/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Under AG #Sessions, the @TheJusticeDept has taken a sharp turn away from the evidence-based policies & priorities establi…" +11/08/2017,Politicians,@RepJohnConyers,RT @RepRaulGrijalva: Here's a brief history of the Navajo Nation. #NativeAmericanHeritageMonth https://t.co/KMXS77ATbV +11/08/2017,Politicians,@RepJohnConyers,"RT @HouseJudiciary: @RepGoodlatte @RepJohnConyers @JimPressOffice @JacksonLeeTX18 @RepRutherfordFL .@RepJerryNadler: ""The USA Liberty Act r…" +11/08/2017,Politicians,@RepJohnConyers,"RT @HouseJudiciary: @RepGoodlatte .@RepJohnConyers: ""The USA Liberty Act provides both security and privacy, and gives the government the t…" +11/08/2017,Politicians,@RepJohnConyers,The central thesis of the USA Liberty Act is that we can have both security and privacy. We can give the governmen… https://t.co/iLJxcdb70r +11/08/2017,Politicians,@RepJohnConyers,Do you or your friends have college debt? #GOPTaxScam makes it harder for Americans to afford to higher education https://t.co/chyEwsREYy +11/08/2017,Politicians,@RepJohnConyers,Last year 8.8 million Americans received a tax deduction that helped them afford health care expenses. #GOPTaxScam… https://t.co/N9BBoPiKvD +11/08/2017,Politicians,@RepJohnConyers,"Who are the Americans that end up paying more under the #GOPTaxScam? + +Middle-class families, teachers, Americans pa… https://t.co/xBw9IOxWhp" +11/07/2017,Politicians,@RepJohnConyers,I am incredibly saddened to hear of the passing of my friend Judge Anna Diggs Taylor https://t.co/xUaXpt9T1c +11/07/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 Ahead Of @TheJusticeDept Oversight Hearing, House Judiciary Committee Dems Put #Sessions On Notice + +https:/…" +11/07/2017,Politicians,@RepJohnConyers,"A ground invasion of North Korea would prove catastrophic and could result in thousands, if not millions of deaths. https://t.co/W5hM52rLba" +11/07/2017,Politicians,@RepJohnConyers,Pleased that Judge Morin dropped this case after I expressed concerns ab the threat it posed to #freedomofspeech. https://t.co/AmS5zMWNQa +11/07/2017,Politicians,@RepJohnConyers,"I hope that the @HouseJudiciary will take up the issue of #gunviolence, including an examination of #bumpstocks, as… https://t.co/7FoToUBweZ" +11/07/2017,Politicians,@RepJohnConyers,"An infusion of 50,000 people could push Haiti to an even higher level of instability. #SaveTPS" +11/07/2017,Politicians,@RepJohnConyers,"Haitians with temporary protected status working in the US contribute millions of dollars to Social Security, Medicare & Medicaid. #SaveTPS" +11/07/2017,Politicians,@RepJohnConyers,Ending temporary protected status for Haitians could put them at risk of poverty and illness. #SaveTPS +11/06/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: Join us tomorrow morning at 10AM for a subcommittee hearing examining 'Anti-Semitism on College Campuses.' https://t.co/7… +11/06/2017,Politicians,@RepJohnConyers,Ending #TPS will have wide-ranging & negative consequences. Please read more here: https://t.co/3mRu0GesvE +11/06/2017,Politicians,@RepJohnConyers,The mass deportation of 325K #TPS recipients would cost taxpayers more than $3 billion & upend thousands of communities. We must #SaveTPS. +11/06/2017,Politicians,@RepJohnConyers,"#TPS holders are vetted, legally present and authorized to work in our country. They are our neighbors, friends, coworkers. #SaveTPS" +11/06/2017,Politicians,@RepJohnConyers,"DYK: #TPS was est. through Congress by the Immigration Act of 1990? It covers nearly 325,000 TPS holders: https://t.co/1VTRstebEn #SAVETPS" +11/06/2017,Politicians,@RepJohnConyers,"RT @NancyPelosi: No matter how you look at it, the reality is that the #BillionairesFirst tax plan will explode the debt. #CNNSOTU https://…" +11/06/2017,Politicians,@RepJohnConyers,"My bill, #HR4140 The No Unconstitutional Strike on #NorthKorea Act, has over 60 cosponsors in the House, and has su… https://t.co/nqm5e9JQ0h" +11/05/2017,Politicians,@RepJohnConyers,"Open enrollment started Nov1st, and ends Dec 15th. There isn’t much time, so go to https://t.co/i0pyJbPXmH now, to… https://t.co/se2ipW4V9d" +11/04/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Thank you @RepJohnConyers for your leadership against an unconstitutional unprovoked attack on #NorthKorea. #NotoNKWar h… +11/04/2017,Politicians,@RepJohnConyers,"@HouseGOP & @SenateGOP may not want you to know, but @HouseDemocrats & @SenateDems do. It’s time to #GetCovered at… https://t.co/49K2ORvJVz" +11/04/2017,Politicians,@RepJohnConyers,I miss @BarackObama. https://t.co/wFxSWIKLNu +11/03/2017,Politicians,@RepJohnConyers,Hope this means I can count on you to oppose #Trump’s proposed cuts for low-income utility bill assistance:… https://t.co/jWYd2d2bvn +11/03/2017,Politicians,@RepJohnConyers,RT @RepRoKhanna: .@RepJohnConyers & I penned an oped on voting rights. We must protect the right to vote of all Americans .https://t.co/MSE… +11/03/2017,Politicians,@RepJohnConyers,"Oh I just wanted to share this wonderful flashback with my good friend #shirleychisholm. + +Happy #Friday, folks ✌🏽 https://t.co/PCswSl1qug" +11/03/2017,Politicians,@RepJohnConyers,A flashback to this Wednesday during a committee hearing on the so-called unconstitutionality of Obama's Executive… https://t.co/oQUGGrM4ME +11/02/2017,Politicians,@RepJohnConyers,"#Detroit bankruptcy court to beef up its bench. + +Via @_TylerTheTyler_ https://t.co/LFMsXCOdVJ" +11/02/2017,Politicians,@RepJohnConyers,Thank you @TheRevAl for inviting me to speak at @NationalAction Network Legislative and Policy Conference.… https://t.co/2Vod9mP3xH +11/02/2017,Politicians,@RepJohnConyers,"but takes issue with the latter. + +https://t.co/Qfu5lhRjWc" +11/02/2017,Politicians,@RepJohnConyers,"Ben Franklin said “nothing can…be certain, except death and taxes.” The #GOP appears fine with the first, https://t.co/HpnuCCuNwt" +11/02/2017,Politicians,@RepJohnConyers,"Rather than tweeting reckless statements, @realDonaldTrump should spend his Asia trip searching for a diplomatic resolution to this conflict" +11/02/2017,Politicians,@RepJohnConyers,The Framers chose Congress to be the body that declares war and authorizes military action. This legislation reinforces that intent. +11/02/2017,Politicians,@RepJohnConyers,"Bipartisan and bicameral, H.R 4140 prevents the expenditure of funds for any kind of first strike against North Korea." +11/02/2017,Politicians,@RepJohnConyers,"As @realDonaldTrump embarks on his trip to Asia, we want to remind him that he cannot attack North Korea without approval from Congress" +11/02/2017,Politicians,@RepJohnConyers,It is crucial that Congress reaffirm its constitutional authority over approving any first strike against North Korea. +11/02/2017,Politicians,@RepJohnConyers,"SOON: Press Conference with @SenMarkey & @ChrisMurphyCT on the ""No Unconstitutional Strike on North Korea Act"" HERE: https://t.co/46qq6YKMCW" +11/02/2017,Politicians,@RepJohnConyers,"RT @SenMarkey: LIVE 11:30AM: Join men, @RepJohnConyers @SenMurphy to demand no war in #NorthKorea w/o Congressional authorization https://t…" +11/02/2017,Politicians,@RepJohnConyers,"Join me, @SenMarkey & our colleagues from both Chambers today at 11:30A for a press conference. + +Watch Live on… https://t.co/YTJ0XtSIBW" +11/01/2017,Politicians,@RepJohnConyers,"@ChrisMurphyCT @SenMarkey LIVE TOMORROW AT 11:30EST: https://t.co/eXnUtqVZjf + +Bicameral, and bipartisan in the Hous… https://t.co/D7sw1fI5AA" +11/01/2017,Politicians,@RepJohnConyers,TOMORROW at 11:30 EST Rep. Conyers @ChrisMurphyCT & @SenMarkey to discuss their bill demanding Congressional approval before an attack on NK +11/01/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: .@RepJohnConyers: @DOJ_EOIR has moved to strip children in #immigration proceedings of other vital protections. +📝:: https…" +11/01/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: REMINDER: + +Join us for the 10:30A #NetNeutrality and Anti Trust Law hearing + +Watch Live: https://t.co/lSWEV7qktp https://…" +10/31/2017,Politicians,@RepJohnConyers,Join @HouseJudDems tomorrow for a hearing on #NetNeutrality. https://t.co/S10OYX6FZV +10/31/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Rep. Conyers just introduced a bill to prevent Trump from starting a war with #NorthKorea. Thank you @RepJohnConyers for… +10/31/2017,Politicians,@RepJohnConyers,"Controlling pet coke is another step towards #environmental justice —miles to go before we are there. + +https://t.co/lgM799o4sK" +10/31/2017,Politicians,@RepJohnConyers,"Tomorrow is Nov 1, which means just 1 day until you can buy or change your health care plan. + +Visit… https://t.co/J8ZXSNr4Wi" +10/31/2017,Politicians,@RepJohnConyers,"#ICYMI: I urged @RepGoodlatte to move in bipartisan manner to protect #SpecialCounsel from partisan attacks. + +https://t.co/Gn0WbmWbxE" +10/31/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: REMINDER: Join us. tomorrow for the following Hearings: + +1⃣ #NetNeutrality +2⃣ #HR490 +3⃣ @realDonaldTrump Admin #Immigrat…" +10/30/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: #BREAKING: Conyers Expresses Concern Ab Gop Efforts To Divert Attention From Ongoing Russian Threat To Our Elections http… +10/27/2017,Politicians,@RepJohnConyers,#NotFakeNews: President #Trump’s refugee policies leave tens of thousands of #refugees in limbo and danger. https://t.co/dr5IDDLFuw +10/27/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: This is BIG news. @USGAO will investigate @POTUS’s “#VoterFraud” Commission. Thanks to @SenBennetCO, @amyklobuchar, & @Co…" +10/27/2017,Politicians,@RepJohnConyers,"Our committee calendar is going to be full next week, folks. I hope you can tune in to watch live. https://t.co/yeazLjCeZq" +10/27/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 CONYERS & CUMMINGS DEMAND TOP #TRUMP CAMPAIGN CONSULTANTS DISCLOSE DETAILS OF CAMPAIGN DATA OPERATIONS +http…" +10/27/2017,Politicians,@RepJohnConyers,"RT @USRepRickNolan: Proud to join @RepJohnConyers and @SenMarkey's bill to prevent an unconstitutional first strike on North Korea. + +https:…" +10/27/2017,Politicians,@RepJohnConyers,"I am pleased that Congress took action. + +Via @nannburke https://t.co/rvFbIWQzBD" +10/26/2017,Politicians,@RepJohnConyers,RT @OversightDems: @RepCummings @RepJohnConyers @CamAnalytica @GilesParscale @DeepRootX @TheDataTrust Consultants which provided data analy… +10/26/2017,Politicians,@RepJohnConyers,RT @OversightDems: .@RepCummings and @RepJohnConyers letter to Cambridge Analytica Giles-Parscale TargetPoint Consulting The Data Trust and… +10/26/2017,Politicians,@RepJohnConyers,"Glad to work on this letter with my friend & colleague, @RepCummings, RM of @OversightDems. + +Please click the link… https://t.co/RH0PGWPcnA" +10/26/2017,Politicians,@RepJohnConyers,"RT @EnergyCommerce: RMs @FrankPallone & @RepJohnConyers: President Trump's declaration ""is essentially meaningless"" w/out new $$$ to fight…" +10/26/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🆕 @FrankPallone & @RepJohnConyers: @realDonaldTrump’s #Opioid Announcement Is Meaningless W/O Additional Funding🆕 + +https:…" +10/26/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Thank you @RepJohnConyers for working to keep us safe from an impulsive and incompetent administration. We must let dipl… +10/26/2017,Politicians,@RepJohnConyers,... commit to the diplomatic path advocated by both American experts and the #SouthKorean government. +10/26/2017,Politicians,@RepJohnConyers,#Trump must immediately cease talk of pre-emptive war and... +10/26/2017,Politicians,@RepJohnConyers,"... the power to initiate a nuclear conflict — less than a year later, those fears are far too close to being realized." +10/26/2017,Politicians,@RepJohnConyers,"... does not permit military attacks without Congressional approval. During the campaign, people feared a President @realDonaldTrump with..." +10/26/2017,Politicians,@RepJohnConyers,That is why Congress is standing up today to ensure that this Administration understands that the Constitution... +10/26/2017,Politicians,@RepJohnConyers,... reckless manner that endangers our troops stationed in #SouthKorea and our regional allies.” +10/26/2017,Politicians,@RepJohnConyers,"As a veteran of the Korean War, I am ashamed that our Commander-in-Chief is conducting himself in a... https://t.co/BJXOZhCZd8" +10/26/2017,Politicians,@RepJohnConyers,Would ensure no funds are used to launch an unconstitutional strike that experts say would lead to catastrophic war… https://t.co/MiizfxTuMF +10/26/2017,Politicians,@RepJohnConyers,"🚨 #BREAKINGNEWS 🚨 + +https://t.co/f81f9QnK7R" +10/26/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Read the full Statement from RM @RepJohnConyers at Hearing on Oversight of the US #Refugee Program: + +https://t.co/YBj4af…" +10/26/2017,Politicians,@RepJohnConyers,"@HouseJudDems .@RepJohnConyers: In swift fashion, @realDonaldTrump abandoned America’s bipartisan leadership in this arena." +10/25/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 @HouseGOP passed #HR469, a bill that jeopardizes the welfare of ALL Americans.👎" +10/25/2017,Politicians,@RepJohnConyers,#NotFakeNews: The Obama Admin issued a veto threat when a previous version of #HR469 was considered in the 114th Congress. #voteNO +10/25/2017,Politicians,@RepJohnConyers,"#HR469 is a is a costly solution in search of a problem. I will #voteNO & I urge my colleagues to do the same. + +https://t.co/UZG3mlnOMz" +10/25/2017,Politicians,@RepJohnConyers,...economic distress -- can come together to provide critical aid to those most in need.” +10/25/2017,Politicians,@RepJohnConyers,This aid package reflects how our Nation -- when called upon to address overwhelming devastation resulting from natural disaster and... +10/25/2017,Politicians,@RepJohnConyers,...debt relief to the citizens of #PuertoRico by forgiving certain flood insurance obligations and loans owed by the Commonwealth. +10/25/2017,Politicians,@RepJohnConyers,#HR2266 also contains much needed economic aid to those who were harmed by recent hurricanes and wildfires and provides critical... +10/25/2017,Politicians,@RepJohnConyers,"...these judgeships permanent, I am pleased that Congress took action." +10/25/2017,Politicians,@RepJohnConyers,"...from a fully-staffed #bankruptcy court. While I would have preferred the original version of my legislation, which would have made ..." +10/25/2017,Politicians,@RepJohnConyers,"This legislation will ensure that citizens of #Detroit, especially those facing economic distress, are able to obtain financial relief..." +10/25/2017,Politicians,@RepJohnConyers,"🆕CONYERS BILL TO ADD MORE JUDGES TO #DETROIT BANKRUPTCY COURT SET TO BECOME LAW🆕 +https://t.co/b78WoTeALf" +10/25/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Today, @HouseGOP will bring #HR469 to the Floor. This bill is an assault on Americans’ health, safety, and privacy. New d…" +10/25/2017,Politicians,@RepJohnConyers,Open Enrollment is much shorter this year. We only have from November 1st to December 15th to #GetCovered. Visit… https://t.co/IsTMnasrZT +10/25/2017,Politicians,@RepJohnConyers,Open Enrollment starts in one week! Find a plan for yourself and your family. Find a plan HERE: https://t.co/ld5ND2AF4n #GetCovered +10/25/2017,Politicians,@RepJohnConyers,"RT @RepAdams: Women-owned small businesses are the economic engines of our communities, employing millions each year. They need a #ABetterD…" +10/24/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Ranking member @RepJohnConyers' statement opposing #HR732, the “Stop Settlement Slush Funds Act of 2017” https://t.co/Euu…" +10/24/2017,Politicians,@RepJohnConyers,"#HR1673 would also end water issues like you see in #Flint, Detroit, and Oakland county." +10/24/2017,Politicians,@RepJohnConyers,My bill #HR1673 would fund modern water systems in world’s richest country. https://t.co/t1wvPN2VtF +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@RepGoodlatte: bill proposes a ""true guestworker program"" w/o path to citizenship for current undocumented ag workers" +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@repjohnconyers: this version of ag guestworker bill is ""not an improvement over its predecessors""" +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@RepJohnConyers: ag bill ""an incentive to replace well-paid American workers with temporary foreign workers at a drasti…" +10/24/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Watch today's markup of #HR4092 & #HR3711 LIVE: +https://t.co/LoiCgwy7gW https://t.co/oltNJVgF2p" +10/23/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: THIS WEEKIN COMMITTEE: + +1⃣ Ag Guestworker Act +2⃣ #HR3711 “Legal Workforce Act +3⃣ Refugee Programs hearing + +📝 https://t.c…" +10/23/2017,Politicians,@RepJohnConyers,Why Won’t The #NFL Address What Players Are Actually Protesting? Asks Michigan Lawmaker https://t.co/GQpbZnqIkG via @darrensands +10/23/2017,Politicians,@RepJohnConyers,"Speaking of #ABetterDeal, have you all seen @HouseGOP 's devastating budget? They should go back to the drawing board." +10/23/2017,Politicians,@RepJohnConyers,"FACT: Instead of lowering prescription drug prices, #Trumpcare would have forced families to pay even more. We have #ABetterDeal." +10/23/2017,Politicians,@RepJohnConyers,It seems like prescription drug prices will never stop going up. Americans deserve #ABetterDeal: https://t.co/KTSSnjoNXv +10/23/2017,Politicians,@RepJohnConyers,RT @RepSwalwell: I hope everyone watches this for a better sense of the grief felt by families of fallen soldiers. They loved our best. God… +10/13/2017,Politicians,@RepJohnConyers,RT @anthonyjr_: Exciting news! 📣 @repjoecrowley and @RepLindaSanchez introduce House Democrats' new Spanish-language Twitter account. Follo… +10/13/2017,Politicians,@RepJohnConyers,It was definitely an honor to meet Mr. Carson & glad that he’s participating in today’s very important Forum about… https://t.co/0rYUos3xgv +10/13/2017,Politicians,@RepJohnConyers,The extent of injury is particularly problematic for our youth as most brains are not fully developed until age 25. https://t.co/vXylKVNdeJ +10/12/2017,Politicians,@RepJohnConyers,I support this bill and ask that my colleagues join me in doing so. https://t.co/X4S8uApy3u +10/11/2017,Politicians,@RepJohnConyers,In 2016 more than 1 in 6 #Latinos lived in poverty. We need an economic future that works for everyone. #HispanicHeritageMonth +10/11/2017,Politicians,@RepJohnConyers,We celebrate #HispanicHeritageMonth and the immense contribution that the Latino community has made to our culture and economy. +10/11/2017,Politicians,@RepJohnConyers,"My bill, #HR1673 - WATER Act - would provide the needed investment in Detroit’s infrastructure. We need to act now. https://t.co/e5PtGNSQUS" +10/11/2017,Politicians,@RepJohnConyers,"RT @RepPeteAguilar: .@realDonaldTrump’s attacks on #DREAMers cut to the core of communities, and his extremist immigration ""principles"" wil…" +10/10/2017,Politicians,@RepJohnConyers,.@realDonaldTrump & @EPAScottPruitt are OK with destroying our planet. American’s aren’t & will fight this at ever… https://t.co/CLX0FutRvB +10/10/2017,Politicians,@RepJohnConyers,"Well that's not right, @HouseGOP. https://t.co/gY83Tjuu8K" +10/10/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: THIS WEEK'S FULL COMMITTEE #MARKUP: + +1⃣ Congressional #Subpoenas +2⃣ #HR2228, “Law Enforcement #MentalHealth +3⃣ Access to…" +10/10/2017,Politicians,@RepJohnConyers,"RT @RepCarbajal: Being American is about more than a piece of paper. What matters are your hopes, dreams, and a belief in a better tomorrow…" +10/09/2017,Politicians,@RepJohnConyers,This President is simply not serious about finding solutions to this country’s challenges. https://t.co/Pr9K1P8NJX +10/06/2017,Politicians,@RepJohnConyers,"Will continue to fight for the rights of all of you to be free from discrimination no matter gender, gender identit… https://t.co/wnMVz4j0G3" +10/06/2017,Politicians,@RepJohnConyers,I call on my colleagues on both sides of the aisle to come to the table and find real solutions for all Americans. #TrumpEconomy +10/06/2017,Politicians,@RepJohnConyers,It is clear that Trump & this Republican Congress are more concerned with giving the top 1% tax breaks than helping middle class Americans. +10/06/2017,Politicians,@RepJohnConyers,Average jobs growth is far below 193k jobs created monthly under @barackobama in 2016. +10/06/2017,Politicians,@RepJohnConyers,"As Republicans meet behind closed doors to slash taxes for the wealthy, today's job report shows 33k were lost in September. #TrumpEconomy" +10/06/2017,Politicians,@RepJohnConyers,Our nation comes together in times of need. Puerto Rico & US Virgin Islands should be no different. We must stand with #OurFellowAmericans +10/06/2017,Politicians,@RepJohnConyers,#OurFellowAmericans in Puerto Rico & US Virgin Islands need help as they recover. We must deploy every resource to provide relief +10/06/2017,Politicians,@RepJohnConyers,Today’s rule is no different. Shame on @realDonaldTrump for this dangerous rule that sets our country backward & limits women’s #reprorights +10/06/2017,Politicians,@RepJohnConyers,"Since #POTUS' first day in office, his admin & @HouseGOP have relentlessly attacked women’s #reprorights & access to care." +10/06/2017,Politicians,@RepJohnConyers,"This rule allows virtually anyone - + bosses, health plans, & schools - to discriminate against women by refusing to cover #birthcontrol." +10/06/2017,Politicians,@RepJohnConyers,".@POTUS just released a contraception rule that would rip guaranteed #birthcontrol away from countless women. +https://t.co/nbtfl4Ak5t" +10/05/2017,Politicians,@RepJohnConyers,#DREAMers: TODAY is the deadline for renewal. My colleagues & I have your backs & we'll fight to pass the #DREAMAct… https://t.co/lkHcrCqfJG +10/05/2017,Politicians,@RepJohnConyers,RT @NancyPelosi: Republicans need to stop misleading Americans and tell the truth: their tax plan will raise taxes on middle class families… +10/05/2017,Politicians,@RepJohnConyers,RT @HouseJudiciary: @RepGoodlatte @RepJohnConyers @JimPressOffice @JacksonLeeTX18 REMINDER: Tune in at 9:45AM on Facebook as we unveil to #… +10/05/2017,Politicians,@RepJohnConyers,"Join us this morning, folks. https://t.co/1BVNzIQjHS" +10/04/2017,Politicians,@RepJohnConyers,"America Has Never Truly Atoned For Slavery. Conyers Has Pressed the Issue for Nearly 30 Years. +Via @myblackmindd + +https://t.co/Dqa4VzUeZz" +10/04/2017,Politicians,@RepJohnConyers,The #Equifax data breach shook public confidence in the entire credit rating industry. https://t.co/lrGGeEoP07 +10/04/2017,Politicians,@RepJohnConyers,"RT @RepDonBeyer: We raised the issue of forced arbitration (the #RipoffClause) to Equifax' CEO, and their response entirely failed to addre…" +10/04/2017,Politicians,@RepJohnConyers,RT @RepDonBeyer: As House & Senate hold hearings on Equifax @SenateGOP is quietly courting votes to repeal consumer protections & reinstate… +10/04/2017,Politicians,@RepJohnConyers,RT @RepDonBeyer: New OpEd w/ @HouseJudDems Ranking Member @RepJohnConyers @RepHankJohnson @davidcicilline on forced arbitration here: https… +10/04/2017,Politicians,@RepJohnConyers,RT @RepRobinKelly: Too many communities have seen terrible tragedies. Watch @HouseDemocrats take a stand to #EndGunViolence at 9 am ET.http… +10/03/2017,Politicians,@RepJohnConyers,Read my statement to #HR36. ⬇️ https://t.co/zarr2deDV0 +10/03/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: RM @RepJohnConyers: #HR36's exception for victims of rape is woefully inadequate. #VOTENO https://t.co/H1KCajPF23 +10/03/2017,Politicians,@RepJohnConyers,This is extremely disappointing 🤦🏽‍♂️ https://t.co/FwBvukrLSa +10/03/2017,Politicians,@RepJohnConyers,"RT @NRDems: After @RepRaulGrijalva & @RepJohnConyers urge @SpeakerRyan 2 pull shameful #SHAREAct, Ryan pulls SHARE Act https://t.co/btvL9fG…" +10/03/2017,Politicians,@RepJohnConyers,"#HR36 is opposed by civil liberties groups, women’s organizations, medical providers, and a coalition of 15 nationa… https://t.co/ZCDhS0Jcwv" +10/03/2017,Politicians,@RepJohnConyers,#HR36 is the fifth @HouseGOP vote to attack women’s health care so far in the 115th Congress. #VOTENO https://t.co/eqNOaZ50eK +10/03/2017,Politicians,@RepJohnConyers,"RT @NancyPelosi: #DREAMers, make sure you mail your DACA renewal application today to make sure it’s received by the Oct 5 deadline. https:…" +10/03/2017,Politicians,@RepJohnConyers,"Today, @HouseGOP, will bring up a bill that is designed to restrict women’s access to the full range of health care… https://t.co/GD05fWvRdc" +10/03/2017,Politicians,@RepJohnConyers,Proud to see #Detroit leading the way to a more sustainable automotive future. Congrats to @GM on this bold plan https://t.co/vSgsCHCcO4 +10/03/2017,Politicians,@RepJohnConyers,No one should be in jail for months or years pending deportation. We need a humane alternative to indefinite detention. +10/03/2017,Politicians,@RepJohnConyers,The Dignity for Detained Immigrants Act fixes our broken system and removes the profit motive behind the jailing of thousands of people. +10/03/2017,Politicians,@RepJohnConyers,I fully back @RepAdamSmith & @RepJayapal’s Dignity for Detained Immigrants Act of 2017. #DignityandJustice +10/03/2017,Politicians,@RepJohnConyers,"RT @RepThompson: If GOP Congress does nothing, its Leadership is complicit. We must establish a Select Committee on Gun Violence. #EndGunVi…" +10/02/2017,Politicians,@RepJohnConyers,Read my entire statement ⬇️ https://t.co/650JZwkuPb +10/02/2017,Politicians,@RepJohnConyers,...we find ourselves once again putting out statements of condolences. Moments of silence are just not enough. +10/02/2017,Politicians,@RepJohnConyers,"@HouseGOP ...adopt legislation designed to actually make Americans safer from gun violence. #Congress must act, and it must do so before..." +10/02/2017,Politicians,@RepJohnConyers,My @HouseGOP colleagues refuse to hold hearings on the scourge of #gunviolence in our country or... +10/02/2017,Politicians,@RepJohnConyers,"...remove military-type weaponry from our streets, but it ignores the existence of this epidemic in its entirety." +10/02/2017,Politicians,@RepJohnConyers,Not only does Congress refuse to pass legislation that strengthens #backgroundchecks or... +10/02/2017,Politicians,@RepJohnConyers,It is unfathomable that Congress’s response to these mass shootings continues to be that of complete inaction. +10/02/2017,Politicians,@RepJohnConyers,"This horror has no place in our country, and I pray for those affected today." +10/02/2017,Politicians,@RepJohnConyers,"I am heartbroken for these families who have lost sons, daughters, mothers, fathers, brothers and sisters." +10/02/2017,Politicians,@RepJohnConyers,Many families woke up this morning with their lives completely shattered. +10/02/2017,Politicians,@RepJohnConyers,🆕 Conyers On Horrific #LasVegasShootings Shooting: Congress Must Hold Hearings On #GunViolence 🆕 https://t.co/xmQpwcgkWp +10/02/2017,Politicians,@RepJohnConyers,"It is not enough to simply hold a moment of silence, or place U.S. flags at half-staff; we have to do the work to p… https://t.co/ds3tipWZT2" +09/29/2017,Politicians,@RepJohnConyers,A tragedy such as this one must never occur again. We will be closely monitoring this situation. +08/31/2007,Politicians,@dickcheney,"Won a baboon on eBay. Condition as-is, but I'm going to use the little guy for parts anyway. Never know when the ticker might blow a valve." +07/22/2007,Politicians,@dickcheney,Slept through alarm clock yesterday. Didn't wake up in time to launch full-scale nuclear attack on world while President. I'm such an ass. +07/21/2007,Politicians,@dickcheney,Hangin' in the oval tomorrow during G's colonoscopy. I'm thinking a club sandwich aroun noon and then bomb the fuck out of Iran at 2:30. +04/24/2007,Politicians,@dickcheney,Heh. Kucinich thinks he can impeach me. Nothing a little blot clot in the leg can't fix. Suckas! http://tinyurl.com/3c2xrx +04/11/2007,Politicians,@dickcheney,"Heh. CNN and MSNBC were all over me last week. Pretty cool how we got Imus to take one for the team over the last four news cycles, huh?" +04/10/2007,Politicians,@dickcheney,Working on my BYU commencement address. Thinking about trying out some new Iraq/Al Qaeda material. It's so gonna kill with the kids. +04/07/2007,Politicians,@dickcheney,Told Lynne she looked hot last night. She just stared and shook her head. Did I miss something? It's like no one believes anything I say. +04/07/2007,Politicians,@dickcheney,Just heard that Jesus was killed in Jerusalem this afternoon. Looks like a couple tomahawks are in Palestine's future. +04/06/2007,Politicians,@dickcheney,Starting to think that potato-powered mind control device I bought out of Popular Mechanics back in '02 isn't working as advertised. +04/06/2007,Politicians,@dickcheney,"Picked up a new CD today. ""Drums and Guns"" by some band named Low. Rove said it was right up my alley...that guy's a total prick." +04/05/2007,Politicians,@dickcheney,Left arm's tingling again. It's gonna rain tomorrow. +06/22/2018,Politicians,@GregForMontana,"Welcome back to Big Sky Country, @DonaldJTrumpJr. Thank you for standing with us!" +06/15/2017,Politicians,@GregForMontana,I’m ready to go to work and serve the people of Montana! https://t.co/fWwi3E2bo5 +06/15/2017,Politicians,@GregForMontana,It was an honor to present these pins to our Vietnam veterans. Welcome home and thank you for your service. https://t.co/rfLchIwuZh +06/15/2017,Politicians,@GregForMontana,I delivered my first official speech today since being elected Congressman at the VFW State Convention in Billings.… https://t.co/KQCbji7LHy +06/14/2017,Politicians,@GregForMontana,"My heart broke with news of this morning’s shooting. Susan and I are praying for @SteveScalise, staff, and the @CapitolPolice." +06/10/2017,Politicians,@GregForMontana,Proud to be here in Billings for the @MTGOP State Convention! #UnitedWeStand https://t.co/9Y1zo6l1mS +05/29/2017,Politicians,@GregForMontana,Truly thankful to all the men and women who gave their lives to defend our country & protect our freedoms #MemorialDay #USA +05/26/2017,Politicians,@GregForMontana,Thank you @RobQuistforMT for a spirited race; I promise to listen to the voices of all Montanans -Greg #mtpol +05/26/2017,Politicians,@GregForMontana,"Thank you, Montana. I am humbled by this incredible honor. I will always be on Montana's side. https://t.co/yZtYbPtRAl" +05/24/2017,Politicians,@GregForMontana,"I will defend the Second Amendment, and our access to public lands. https://t.co/by6FguoTFU" +05/24/2017,Politicians,@GregForMontana,It was great seeing everyone in Helena today! #GOTV #mtpol https://t.co/hqvmHLSdsj +05/24/2017,Politicians,@GregForMontana,Incredible turnout in Helena! #GOTV #mtpol https://t.co/jQ1lTaqqQR +05/24/2017,Politicians,@GregForMontana,"What an incredible honor to be endorsed by three of MT’s biggest +newspapers. Thank you @missoulian @billingsgazette… https://t.co/pRFj9Cmf8q" +05/24/2017,Politicians,@GregForMontana,Thank you to all who came out in Missoula this morning! #GOTV #mtpol https://t.co/wKKEdZbbjD +05/24/2017,Politicians,@GregForMontana,Thank you Kalispell for a great evening! #GOTV #mtpol https://t.co/xsyU33fsFr +05/23/2017,Politicians,@GregForMontana,What a warm welcome in Hamilton today! #GOTV #mtpol https://t.co/Vj8krU7gMY +05/23/2017,Politicians,@GregForMontana,Support is strong in Ravalli County! #GOTV #mtpol https://t.co/TFcdxf8YfC +05/23/2017,Politicians,@GregForMontana,Great turnout in Great Falls! Encouraged by your support! #GOTV #mtpol https://t.co/LWgy33UeBu +05/23/2017,Politicians,@GregForMontana,"Sarge and Troy, thanks for having me on this morning. #WhenInGreatFalls #GOTV #mtpol https://t.co/MqNhIiNVlX" +05/23/2017,Politicians,@GregForMontana,Appreciate​ seeing everyone last night in Billings! #GOTV #mtpol https://t.co/mTcizPMh2n +05/22/2017,Politicians,@GregForMontana,The path to job creation starts with protecting small businesses like the ones I visited today in Billings.… https://t.co/SkLuDkr9Ud +05/22/2017,Politicians,@GregForMontana,Thank you @SteveDaines for all your support! https://t.co/D7jY8hgcUP +05/22/2017,Politicians,@GregForMontana,Had a great time at the Billings Rotary Club today. Thank you for having me! https://t.co/RS5wPKH8hd +05/22/2017,Politicians,@GregForMontana,Breakfast in Billings? Stella’s is a must. Great food. Great people. #WhenInBillings #mtpol https://t.co/zE3eItnwM5 +05/22/2017,Politicians,@GregForMontana,Thank you @406Arneson for having me on @VoicesofMT! #WhenInBillings #mtpol https://t.co/0CL3Gz7ozc +05/22/2017,Politicians,@GregForMontana,Thanks for having me on @CatCountry1029 this morning. Always enjoy talking with you guys. https://t.co/CnAHyloDCw +05/21/2017,Politicians,@GregForMontana,Wonderful time at the #BuckingHorseSale this weekend! #mtpol https://t.co/7oJtfs2UNC +05/21/2017,Politicians,@GregForMontana,RT @gianforte: Me with Cooper the Miles City Bucking Horse Mutton Busting Champion and his new championship buckle. (He told me he practice… +05/20/2017,Politicians,@GregForMontana,Thank you to all our brave servicemen and women. We are eternally grateful for your dedication and sacrifice. #ArmedForcesDay +05/20/2017,Politicians,@GregForMontana,Great to be back in Miles City for the Bucking Horse Sale! #mtpol https://t.co/33usBljYhj +05/20/2017,Politicians,@GregForMontana,Thank you for a great day in Crow Agency! #mtpol https://t.co/2O5VyyxRF4 +05/20/2017,Politicians,@GregForMontana,Honored to have these endorsements #mtpol https://t.co/RATeq3y9ay +05/19/2017,Politicians,@GregForMontana,Thank you Montana Logging Association for having me to speak at your convention luncheon today! https://t.co/Z1WgGvbZgY +05/19/2017,Politicians,@GregForMontana,"It’s the final stretch, and I need your help! Sign up to help: https://t.co/wKDIaNk1UT" +05/18/2017,Politicians,@GregForMontana,Susan and I made our votes official today. Have you voted yet? Learn how: https://t.co/wTqYGEA1Vw https://t.co/Xt15D6d8Xv +05/18/2017,Politicians,@GregForMontana,Beautiful ceremony. Incredible people. Congrats to all the athletes competing in the Special Olympics! https://t.co/b8yntjNbzT +05/17/2017,Politicians,@GregForMontana,Had a great visit with the Confederated Salish and Kootenai Tribes yesterday! https://t.co/JQjeP3gIZL +05/16/2017,Politicians,@GregForMontana,"There’s a lot of work to be done, but I’m ready for the challenge. Proud to have the endorsement of the @missoulian. https://t.co/QQSWSKyZC7" +05/16/2017,Politicians,@GregForMontana,Proud to receive the endorsement of the NFIB at Ron Terry Construction in Kalispell. https://t.co/jbm4b8SGxf +05/16/2017,Politicians,@GregForMontana,"Please join Susan and I in praying for the Broadwater County Sheriff’s office and the fallen deputy's family. +https://t.co/G1q8O9zJP2" +05/16/2017,Politicians,@GregForMontana,Good morning Kalispell! Did you catch my interview on @KGEZ1? https://t.co/dZsVrsV8UT +05/16/2017,Politicians,@GregForMontana,Thank you for your endorsement @helenaironline. I will always fight for our Montana way of life. https://t.co/Nyvdh89Vpa +05/15/2017,Politicians,@GregForMontana,It’s an honor to have earned the endorsement of the @billingsgazette https://t.co/fo0JZqO6nh +05/14/2017,Politicians,@GregForMontana,Congrats to all the runners this morning at the @HAVENMT Mother's Day 5K in Bozeman! https://t.co/zHOaAii8o5 +05/14/2017,Politicians,@GregForMontana,It was a beautiful morning yesterday cheering on all the runners at the Montana Women's Run in Billings! https://t.co/5kAdeLVjOD +05/14/2017,Politicians,@GregForMontana,RT @gianforte: Happy Mother's Day all Moms! My mom grew up on a dairy farm and taught math at a public HS while raising me and my brothers.… +05/14/2017,Politicians,@GregForMontana,"RT @MTGOP: Thank you @VP Pence, @Interior Sec @RyanZinke and Sen @SteveDaines! Get out and vote for @GregForMontana on May 25! #mtpol https…" +05/13/2017,Politicians,@GregForMontana,RT @mike_pence: Thank you Montana for helping make @realDonaldTrump the 45th President of the United States 🇺🇸. Let's send Greg Gianforte t… +05/13/2017,Politicians,@GregForMontana,RT @SteveDaines: Thumbs up for a great day in Montana with @VP & @GregForMontana! https://t.co/n9yH7JhdiF +05/13/2017,Politicians,@GregForMontana,Onward to victory! #mtpol https://t.co/AvT1aSiCmm +05/13/2017,Politicians,@GregForMontana,RT @RyanZinke: In good company-rallying the grassroots for @GregForMontana #gotv @mike_pence @SteveDaines #mtpol https://t.co/t2zaWjRe5B +05/13/2017,Politicians,@GregForMontana,"""America is back under @realDonaldTrump"" -@VP #mtpol https://t.co/bOVmclew6U" +05/13/2017,Politicians,@GregForMontana,Welcome back to Montana @VP! #mtpol https://t.co/Tu9dvqCbRX +05/13/2017,Politicians,@GregForMontana,I will always be on Montana's side! #mtpol https://t.co/GZJ4zsamMn +05/13/2017,Politicians,@GregForMontana,"RT @AGTimFox: Great to have a chance to meet with @SecretaryZinke, @SteveDaines and @VP Pence in Montana today! #MTPol #MTNews https://t.co…" +05/13/2017,Politicians,@GregForMontana,Thank you for all your support @RyanZinke! #mtpol https://t.co/XCg2XO7oRU +05/13/2017,Politicians,@GregForMontana,RT @SteveDaines: Getting the rally underway in Billings with @VP to support @GregForMontana! https://t.co/Xw0CMEM8Cj +05/13/2017,Politicians,@GregForMontana,.@SteveDaines kicks off the campaign rally in Billings! #mtpol https://t.co/jWNyGbHUAk +05/13/2017,Politicians,@GregForMontana,It's an honor to have you in Billings @VP! #mtpol https://t.co/GuJT6Psboj +05/13/2017,Politicians,@GregForMontana,Backstage ... @VP arrives at the Metra Pavilion! #mtpol https://t.co/tiPNX3j6eg +05/12/2017,Politicians,@GregForMontana,Today’s the day! This is your last chance to RSVP to see @VP in Billings with me today! https://t.co/OAF06wGFYT +05/12/2017,Politicians,@GregForMontana,RT @ChrisCoxNRA: Great day with @DonaldJTrumpJr @GregForMontana & @charliekirk11 in Montana fighting for freedom & our Second Amendment rig… +05/12/2017,Politicians,@GregForMontana,One last crowd with @DonaldJTrumpJr tonight in Great Falls! #trumpinmontana #mtpol https://t.co/pBx8jXHlyV +05/12/2017,Politicians,@GregForMontana,Proud to have the support of such a great group of volunteers! #TeamGreg https://t.co/M5ez4FDT00 +05/12/2017,Politicians,@GregForMontana,There’s still time! RSVP now to join me and my special guest @VP in Billings tomorrow! https://t.co/OAF06wGFYT +05/11/2017,Politicians,@GregForMontana,Eastern Montana gives a warm welcome to @DonaldJTrumpJr #TrumpInMontana #mtpol https://t.co/bBvknUGRHW +05/11/2017,Politicians,@GregForMontana,We’re going to need a bigger tent! People were lined up to see @DonaldJTrumpJr in Butte today. #TrumpInMontana… https://t.co/7lQivqEgkl +05/11/2017,Politicians,@GregForMontana,Welcome back to Montana @DonaldJTrumpJr! https://t.co/OE0AKhI1a5 +05/11/2017,Politicians,@GregForMontana,Butte is ready for @DonaldJTrumpJr @GregForMontana! #TrumpInMontana #mtpol https://t.co/CLaLdE1Mwc +05/11/2017,Politicians,@GregForMontana,First stop today in Helena! https://t.co/CMCDkoEB3Z +05/11/2017,Politicians,@GregForMontana,Packed house tonight at the Yellowstone County Lincoln Reagan Day Dinner! https://t.co/jeokIrASEN +05/11/2017,Politicians,@GregForMontana,Thank you @IslandMDGroup for welcoming me to your office today in Billings to talk about Montana jobs and entrepren… https://t.co/sdxIM5o9kz +05/10/2017,Politicians,@GregForMontana,RT @SteveDaines: Have you registered yet for the @VP in Billings? Visit: https://t.co/7vUBvAso2S. https://t.co/74XadJsjSG +05/10/2017,Politicians,@GregForMontana,"#ICYMI: @VP is coming to MT! Sign up now for your chance to +meet him! https://t.co/kjN0vqIr40" +05/10/2017,Politicians,@GregForMontana,Didn’t get to see @DonaldJTrumpJr when he was in Montana? Well he’s coming back! RSVP here: https://t.co/CiGsjVTEVq +05/10/2017,Politicians,@GregForMontana,"Busy two days in Eastern Montana. It’s great to be back! + +Malta -> Glasgow -> Opheim -> Scobey -> Culbertson https://t.co/eIa6y7WCyo" +05/09/2017,Politicians,@GregForMontana,".@DonaldJTrumpJr is coming back to MT! On deck: Helena, Butte, Sidney, Great Falls. Sign up to come out and see us! https://t.co/CiGsjVTEVq" +05/09/2017,Politicians,@GregForMontana,"I’m honored to announce that @VP will be joining me in +Billings this week. RSVP now to get the chance to meet him! https://t.co/QpPiZgwyZx" +05/06/2017,Politicians,@GregForMontana,Thank you Ravalli County Republican Women for inviting me to speak at the Lincoln Reagan Luncheon. https://t.co/OQt0yy8oTM +05/06/2017,Politicians,@GregForMontana,Beautiful morning at the Hamilton Farmer's Market! https://t.co/0OCHHzeE3w +05/06/2017,Politicians,@GregForMontana,Kicked off the weekend in Superior last night at the Mineral County Fairgrounds. https://t.co/hH3D4FJYXK +05/05/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr is joining me on the trail again! Those interested in attending can RSVP here: https://t.co/sXxx6n7xU1 +05/04/2017,Politicians,@GregForMontana,"Today, in honor of the #NationalDayofPrayer, we join together to pray for our leadership, and for the future of our country." +05/04/2017,Politicians,@GregForMontana,Best part of my day. Thank you for your support Sydney. I like your spirit too! https://t.co/EovazUdxGI +05/04/2017,Politicians,@GregForMontana,What a great group! Thanks to all who came out to our event at the Clubhouse in Fort Benton. https://t.co/5hUvWtALHg +05/04/2017,Politicians,@GregForMontana,I spoke with the Montana Economic Developers Association in Great Falls today about my top priorities: job creation… https://t.co/yU4Uy2XB1S +05/02/2017,Politicians,@GregForMontana,Tune in THIS Sunday for my Face the State interview with @dparkermontana & @mikedennison https://t.co/EbF5W8WRpB +05/02/2017,Politicians,@GregForMontana,I held a Veterans Roundtable in Bozeman today because our nation must keep its promises to our vets and ensure thei… https://t.co/j3RTk2Jiec +05/01/2017,Politicians,@GregForMontana,There’s always time for a stop at the Great Falls Gun Show. Now that’s what I call a great Saturday! https://t.co/1JvJERMhbj +05/01/2017,Politicians,@GregForMontana,Saturday was a big day across Montana! Thank you to all who came out to get out the vote on our #DayofAction! https://t.co/ipr2cTNyg3 +04/30/2017,Politicians,@GregForMontana,"""I will serve with compassion for those in need and a strong conviction to preserve the Montana way of life."" #mtpol" +04/30/2017,Politicians,@GregForMontana,"""If I'm elected, I'll go back to negotiate for Montana and Montana will win."" #mtpol" +04/30/2017,Politicians,@GregForMontana,"""I'm a businessman and an engineer. I know how to work hard and solve problems.""" +04/30/2017,Politicians,@GregForMontana,"""The path out of poverty is a job. That is what I've done my whole life. I've helped people learn how to get and create jobs""" +04/30/2017,Politicians,@GregForMontana,"""There are too many lawyers in Washington. We need problem solver. I'm an engineer... trained to solve problems."" #mtpol" +04/30/2017,Politicians,@GregForMontana,On the #2A the choice is clear: @GregForMontana has an “A” rating from the NRA; @RobQuistforMT has an “F” rating #mtpol +04/29/2017,Politicians,@GregForMontana,Today’s the day! Let’s rock ‘n roll. #mtdebate #mtpol #OnMontanasSide +04/29/2017,Politicians,@GregForMontana,We had an incredible turnout in Conrad for the Pondera LRDD last night! https://t.co/m0hBvU5z3B +04/29/2017,Politicians,@GregForMontana,Spent some time in Helena yesterday and sat down for a productive meeting with Montana’s Credit Unions. https://t.co/3vmA4rWLrO +04/28/2017,Politicians,@GregForMontana,Tune in this Saturday for the #MTDebate at 7pm on your local CBS station! #mtpol +04/28/2017,Politicians,@GregForMontana,Great visit with Sun Mountain Lumber yesterday. Thanks for showing me around! https://t.co/GU1ldMFokT +04/28/2017,Politicians,@GregForMontana,#Spotted yesterday in Deer Lodge: Mayor Cozby! #WhenInDeerLodge https://t.co/youhPcoj2g +04/27/2017,Politicians,@GregForMontana,Special thanks to the Deer Lodge Rotary Club for inviting me to speak about my plans for MT! https://t.co/fgnkTRvIul +04/26/2017,Politicians,@GregForMontana,Rob Quist wants to register your guns. We must STOP a national gun registry! https://t.co/cBZsqWzQa6 +04/25/2017,Politicians,@GregForMontana,Always great to see Ziggy and Stella #WhenInBillings https://t.co/chuhZcrCyf +04/24/2017,Politicians,@GregForMontana,Our 2nd Amendment rights are not up for negotiation. I will always defend the 2nd Amendment and our MT way of life. https://t.co/czkbquHebH +04/23/2017,Politicians,@GregForMontana,.@donaldjtrumpjr takes the stage for his fourth and final speech this weekend. Thank you Donald! https://t.co/TCi9KGB7AB +04/23/2017,Politicians,@GregForMontana,Thank you for the kind introduction @SteveDaines #trumpinmontana #mtpol https://t.co/n6HBPNE1a7 +04/23/2017,Politicians,@GregForMontana,Bozeman rally! #TrumpInMontana #mtpol https://t.co/SjG66VhKzQ +04/22/2017,Politicians,@GregForMontana,That's a wrap! See you in Bozeman tomorrow! https://t.co/BpXe8v6R4O +04/22/2017,Politicians,@GregForMontana,Thank you Yellowstone County for the warm welcome! The momentum is on our side! https://t.co/2t69GzYG8j +04/22/2017,Politicians,@GregForMontana,Last speech of the night! @Donaldjtrumpjr #mtpol #trumpinmontana https://t.co/7CkBOxLhvi +04/22/2017,Politicians,@GregForMontana,Thank you to all who joined us in Billings tonight! #mtpol #trumpinmontana https://t.co/JUUHIkUuRO +04/22/2017,Politicians,@GregForMontana,Getting ready for the final rally of the day in Billings! #TrumpInMontana #mtpol https://t.co/NM0SAVV66V +04/21/2017,Politicians,@GregForMontana,Incredible energy here in Hamilton today. #mtpol #trumpinmontana https://t.co/RytxPOxyCU +04/21/2017,Politicians,@GregForMontana,Onward to victory! https://t.co/9RdWOJGrRJ +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr takes the stage in Hamilton. #mtpol #trumpinmontana https://t.co/SvgaJ7Rvax +04/21/2017,Politicians,@GregForMontana,What a crowd! It’s a packed house here in Hamilton. @DonaldJTrumpJr. #TrumpInMontana #mtpol https://t.co/mG8lgHRraB +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr: It's time to respect America again. #TrumpInMontana #mtpol https://t.co/3EnLNubARc +04/21/2017,Politicians,@GregForMontana,Welcome back to Montana @DonaldJTrumpJr! #TrumpInMontana #mtpol https://t.co/92ICEV4RlN +04/21/2017,Politicians,@GregForMontana,I will always be on Montana’s side. Thank you Kalispell! #TrumpInMontana #mtpol https://t.co/iJLyOB8hDG +04/21/2017,Politicians,@GregForMontana,Steve Daines introduces Special Guest Ryan Zinke at #TrumpInMontana rally https://t.co/pgEKl1FChU +04/21/2017,Politicians,@GregForMontana,Make Montana Great Again! #MakeAmericaGreatAgain #TrumpInMontana #mtpol #MAGA https://t.co/O6rEnpiMWM +04/21/2017,Politicians,@GregForMontana,Backstage before our big rally in Kalispell! #trumpinmontana #mtpol https://t.co/ZpBP3plfvM +04/21/2017,Politicians,@GregForMontana,Here we go! Almost time for our event with @DonaldJTrumpJr in Kalispell. See you there! #TrumpInMontana https://t.co/wP2d9kDWG2 +04/21/2017,Politicians,@GregForMontana,Good morning Kalispell! Great to be on the air with John Hendricks on @600KGEZKalispel @600KGEZ https://t.co/WYkvnENGMe +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr is joining me on the trail tomorrow! It’s not too late to RSVP: https://t.co/nLBiGWdm8a +04/20/2017,Politicians,@GregForMontana,Stocking up on ammo for our prairie dog hunt this weekend @DonaldJTrumpJr #mtpol https://t.co/Ryj7tCNF7L +04/19/2017,Politicians,@GregForMontana,I had a great time hosting the @MontanaHighTech panel in Bozeman yesterday. Proud to see so many Montana entreprene… https://t.co/iBHfbcdR6m +04/18/2017,Politicians,@GregForMontana,Great day. Great people. Glad to be back in Butte! https://t.co/fUTgAScBss +04/18/2017,Politicians,@GregForMontana,Stopped by @KGVOAM radio in Missoula this morning. Always great to talk with you guys! https://t.co/jmsjIihzIh +04/18/2017,Politicians,@GregForMontana,We had a great turnout in Hamilton last night. Thanks for coming out! https://t.co/AWVduYF8Ly +04/18/2017,Politicians,@GregForMontana,It was an honor to moderate the @MontanaHighTech panel on the high level of entrepreneurship in Montana! https://t.co/Irnt7DqBDK +04/18/2017,Politicians,@GregForMontana,Join us in wishing Greg a happy birthday! Sign our card! – Team Greg For Montana https://t.co/DFURTjkJlR +04/16/2017,Politicians,@GregForMontana,"To all those celebrating, my family and I wish you a Happy Easter!" +04/15/2017,Politicians,@GregForMontana,It was a true honor to participate in the Pow Wow Grand Entry last night at @montanastate https://t.co/ibj3f0td9Q +04/14/2017,Politicians,@GregForMontana,"Had the chance to sit down to lunch with the Missoula Pachyderms, and share a bit about why I’m running for Congres… https://t.co/Mus8SIqCwr" +04/14/2017,Politicians,@GregForMontana,Joined a business roundtable with the @KalispellChambr. Great to discuss growing the economy and creating jobs with… https://t.co/qSbPFbxNez +04/14/2017,Politicians,@GregForMontana,Coming to you live from Missoula with Maritsa on @1025mountainfm's Mountain Morning Show. https://t.co/t1iIwZbe7P +04/14/2017,Politicians,@GregForMontana,Had a great time at our meet and greet today in Kalispell. Enjoyed talking to so many hard-working Montanans. https://t.co/cIQofqvGUx +04/14/2017,Politicians,@GregForMontana,Out on the campaign trail and had lunch with the Polson Republicans and shared a bit about my vision for Montana. https://t.co/e7SrUHiZGT +04/13/2017,Politicians,@GregForMontana,We must protect our Montana treasures and our way of life and that's why I oppose the Emigrant and Crevice mines. https://t.co/BqXbWFfWKy +04/12/2017,Politicians,@GregForMontana,Today I sat down for a roundtable discussion in Great Falls with Ag leaders from across MT to talk about the future… https://t.co/b2HMC9ZqTH +04/11/2017,Politicians,@GregForMontana,Never too early to get involved! Had a great chat with Charlie today when I met with the Helena Pachyderms.… https://t.co/CsD4nQAM7A +04/11/2017,Politicians,@GregForMontana,Got a bite to eat with the Helena Pachyderms today and discussed the importance of putting Montana first. Looking f… https://t.co/bcUhaBuhs0 +04/07/2017,Politicians,@GregForMontana,Congratulations #NeilGorsuch! Soon to be #JusticeGorsuch. Looking forward to seeing you take your place on the Court. #SCOTUS +04/06/2017,Politicians,@GregForMontana,Happy #MontanaDay! Thankful for quality family time spent enjoying the beautiful outdoors #406Day #BeehiveLake… https://t.co/HtwDjCivz1 +04/06/2017,Politicians,@GregForMontana,This filibuster is a disgraceful show of party politics. The Dems have let down their constituents & the nation. I stand with #NeilGorsuch. +04/05/2017,Politicians,@GregForMontana,ATTN MT: @SenatorTester plans to filibuster the #SCOTUS confirmation. Join me. Call on him to confirm #NeilGorsuch. https://t.co/atsj14PJAK +04/04/2017,Politicians,@GregForMontana,Had a great meeting with the Montana Building Industry Association. I look forward to protecting and promoting Mont… https://t.co/J2k89SitrA +04/03/2017,Politicians,@GregForMontana,"Obamacare isn’t working. Montanans have less choices and higher costs. It’s time for common sense reforms. +https://t.co/ehkEbdjQEG" +04/01/2017,Politicians,@GregForMontana,Had the privilege of meeting with @MT_Realtors about future opportunities for growth in Montana real estate. https://t.co/Y20G18wKMm +04/01/2017,Politicians,@GregForMontana,Best way to start the weekend? Flipping pancakes at the @VVAmerica Pancake Breakfast in Bozeman. It was an honor...… https://t.co/DoYgG7KIk8 +04/01/2017,Politicians,@GregForMontana,Thank you to the @MontanaChamber for having me today to discuss Montana’s business future. https://t.co/zFdOSjJcA2 +03/31/2017,Politicians,@GregForMontana,This morning I met with the @MHA_Montana in Helena and had a great discussion on health care solutions. https://t.co/uYviPTdult +03/31/2017,Politicians,@GregForMontana,Had a great time talking with Jay Scott at @KCAP950 today in Helena. https://t.co/SkNvhot24b +03/31/2017,Politicians,@GregForMontana,"DC insiders have rigged the system to cash in at your expense. That’s +why it’s time to #draintheswamp. https://t.co/EaYU1qNqnm" +03/31/2017,Politicians,@GregForMontana,Great to see Leif Welhaven and celebrate his big win at the @BillingsChamber awards. An award well earned! Congrats… https://t.co/vQOTRsxxYc +03/30/2017,Politicians,@GregForMontana,Great to see Billings Mayor Tom Hanel and Lisa Harmon at the @BillingsChamber breakfast! https://t.co/5chk98dl1l +03/30/2017,Politicians,@GregForMontana,Had a great discussion today with @LivinLargeLarry on @Mighty790KGHL in Billings. Thanks for having me Larry! https://t.co/ZJONMDDwac +03/28/2017,Politicians,@GregForMontana,I applaud @POTUS’ decision to repeal the EPA’s job-killing #CleanPowerPlan. This is a good news for Montana energy and Montana jobs. +03/27/2017,Politicians,@GregForMontana,I’m running for Congress for one simple reason: to put the people of Montana first: https://t.co/teGwzfxMNm +03/26/2017,Politicians,@GregForMontana,"You can count on me to fight back against Washington, D.C.’s War On The West. https://t.co/exWhGNpd1z" +03/25/2017,Politicians,@GregForMontana,Enjoyed swinging by the SWMBIA home show in Bozeman today. https://t.co/TggtsRm9fd +03/25/2017,Politicians,@GregForMontana,Today we honor #MedalofHonor recipients who went above and beyond the call of duty to defend our nation. Thank you. #NationalMedalOfHonorDay +03/24/2017,Politicians,@GregForMontana,"A great day for Montana! The #KeystoneXL will create high-paying jobs, improve energy security, and generate tax revenue. Thank you @POTUS." +03/23/2017,Politicians,@GregForMontana,It’s time for the Senate to confirm Neil Gorsuch – an excellent choice for #SCOTUS. Join me if you agree: https://t.co/KjQVe4ZFwx +03/22/2017,Politicians,@GregForMontana,"Things are heating up in the race for congress. I need your support, now more than ever, to defend Montana values. https://t.co/qKeZHA5MDV" +03/18/2017,Politicians,@GregForMontana,Susan and I had a great day here in Billings at the #StPatricksDay parade. We met a lot of proud Montanans. We’re t… https://t.co/KotNlFZu38 +03/17/2017,Politicians,@GregForMontana,Had a great conversation today with Jim Sargent at @1027News in Great Falls about my vision for Montana. Great talk… https://t.co/TnmIiUbj3W +03/17/2017,Politicians,@GregForMontana,"You can count on me to fight back against Washington, D.C.'s War On The West. https://t.co/OoD2y6E8ee" +03/15/2017,Politicians,@GregForMontana,Thank you @SteveDaines. Honored to call you a friend. https://t.co/YG7i7IHlbm +03/15/2017,Politicians,@GregForMontana,RT @RyanZinke: Congrats to @GregForMontana. I'm looking forward to calling you Congressman! +03/15/2017,Politicians,@GregForMontana,We’re hitting the ground running with our campaign. Check out our new website to learn more: https://t.co/atsj14PJAK +03/15/2017,Politicians,@GregForMontana,Thanks for your support @mooreplusone! https://t.co/8e8WU3vaNt +03/14/2017,Politicians,@GregForMontana,Stopped by @NBroadcasting today to talk with Montanans about why I'm running for Congress and my fight to give Mont… https://t.co/G871M6MUIY +03/11/2017,Politicians,@GregForMontana,Last week we launched our first ad. Check it out to see why I’m running for Congress! https://t.co/KVHkpTQHn1 +03/07/2017,Politicians,@GregForMontana,"Thank you, Montana GOP. I’m honored to have your support. Let’s get to work. https://t.co/9eEG0SGE50 https://t.co/dHmtJCsSK1" +03/07/2017,Politicians,@GregForMontana,Tonight Republicans from across Montana will meet in Helena. Thank you to all who made the trip. We appreciate your dedication to our party. +03/04/2017,Politicians,@GregForMontana,I’m committed to making sure that Montana’s voice is heard in Washington. Here’s why I’m running for Congress: https://t.co/H4qw8oAYkU +03/03/2017,Politicians,@GregForMontana,Today we launched our first ad in Montana’s Special Election. Check it out! https://t.co/H4qw8oAYkU +03/02/2017,Politicians,@GregForMontana,I’m running for Congress. It’s time to give power back to the people and ensure Montana’s voice is heard. Join me: https://t.co/b0kAglnHk8 +11/09/2016,Politicians,@GregForMontana,Kicking off election night with @GregLaMotteKULR in Bozeman. #MTpol https://t.co/HQa0qsbJC9 +11/08/2016,Politicians,@GregForMontana,Thank you to everyone who has been a part of our campaign! We are honored to have your support! #MTpol https://t.co/dG7aLqqCAw +11/08/2016,Politicians,@GregForMontana,I just voted in Bozeman. I encourage all Montana voters to get out and make your voices heard today! #MTpol https://t.co/7lTM84h2wX +11/08/2016,Politicians,@GregForMontana,Election Day is TODAY. I hope you'll stand with us by casting your vote for the Gianforte/Robinson ticket! #MTpol https://t.co/wm3ew7usRM +11/08/2016,Politicians,@GregForMontana,RT @DainesforMT: Make your voice heard and elect @RyanZinke to Congress -- I need a partner like him in Washington. #mtpol https://t.co/dgz… +11/08/2016,Politicians,@GregForMontana,RT @DainesforMT: Polls are now open across Montana. Montanans please join me today in electing @GregForMontana as our next Governor! #Vote… +11/07/2016,Politicians,@GregForMontana,RT @DainesforMT: We need @GregForMontana in Helena. #mtpol #WheatMontana https://t.co/c37oL2VkoM +11/07/2016,Politicians,@GregForMontana,"We've now driven over 64,000 miles! https://t.co/RlfOlPSuYP" +11/07/2016,Politicians,@GregForMontana,"@DainesforMT is back on the trail with us today, and we started this morning at KMMS in Bozeman. #MTpol #Sweep16 https://t.co/jjj7wWEARk" +11/06/2016,Politicians,@GregForMontana,Dropped in at Willie's Distillery in Ennis this afternoon! #MTpol #Sweep16 https://t.co/xheqDzojLD +11/06/2016,Politicians,@GregForMontana,Great time in Dillon at the Klondike. We finish the day in Ennis. #MTpol #Sweep16 https://t.co/yUl2HtRUZz +11/06/2016,Politicians,@GregForMontana,Great to be in Twin Bridges on a Sunday! Great support in Madison County! #MTpol #Sweep16 https://t.co/OeaW49u95u +11/06/2016,Politicians,@GregForMontana,An honor to speak tonight in Deer Lodge at the Rocky Mountain Stockgrowers Association Banquet! #MTpol #Sweep16 https://t.co/IF33gBWf6q +11/05/2016,Politicians,@GregForMontana,Whistle stop in Hamilton! #MTpol #Sweep16 https://t.co/qMAZkLWcf7 +11/05/2016,Politicians,@GregForMontana,Missoula is ready for new leadership in Helena! #Sweep16 #MTpol https://t.co/iMwZP4xYmX +11/05/2016,Politicians,@GregForMontana,Got started this morning at the Lake City Bakery in Polson! #MTPol #Sweep16 https://t.co/eeO8PLYJNq +11/05/2016,Politicians,@GregForMontana,Finished up a great day in Thompson Falls at the Rex Theater! Thanks to everyone in Sanders County for your support… https://t.co/ur8ObwFDY7 +11/04/2016,Politicians,@GregForMontana,Outstanding support tonight in Libby! Lincoln County is ready for new leadership in Helena! #MTpol #Sweep16 https://t.co/rS7I3iXFdY +06/02/2018,Politicians,@The_Tim_Murphy,There are dinosaurs all over my TV again +03/21/2018,Politicians,@The_Tim_Murphy,Thinking about dinosaurs +11/27/2016,Politicians,@The_Tim_Murphy,I try so hard +11/26/2016,Politicians,@The_Tim_Murphy,"RT @The_Tim_Murphy: If anyone's good at writing OkCupid bios, I'm struggling with mine a little bit http://t.co/OKgkrX0U0C" +11/18/2016,Politicians,@The_Tim_Murphy,Good morning to all my friends and followers on twitter +10/07/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: Excited for the weekend and also excited to never again be trapped on a tropical island full of dinosaurs trying to kil… +10/06/2016,Politicians,@The_Tim_Murphy,I was trapped in a kitchen with actual velociraptors holy christ +10/01/2016,Politicians,@The_Tim_Murphy,Going apple picking tomorrow. Between now and then I'll have some of the worst nightmares you could possibly imagine. +09/30/2016,Politicians,@The_Tim_Murphy,"Thanks to all who've checked in during my Twitter hiatus. I'm doing well, for someone who was hunted by velociraptors when I was 9 years old" +09/29/2016,Politicians,@The_Tim_Murphy,Listening to The National +07/23/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: The new Belle and Sebastian album is great. Dinosaurs tried to kill me when I was 9 years old and I'll always live with… +07/19/2016,Politicians,@The_Tim_Murphy,Tonight was actually pretty chill +07/01/2016,Politicians,@The_Tim_Murphy,"RT @The_Tim_Murphy: Once upon a time, the only thing separating me from the horrific jaws of a T. Rex was a pane of glass supported by my 9…" +07/01/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: It would be a dream come true to know with complete certainty that I will never be in a situation ever again where dino… +06/30/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: I think a lot about going back to Isla Nublar with a machine gun and just killing as many dinosaurs as I can +06/30/2016,Politicians,@The_Tim_Murphy,I'm still here +06/11/2016,Politicians,@The_Tim_Murphy,No +06/09/2016,Politicians,@The_Tim_Murphy,Getting a lot of new followers lately. It makes things maybe 3% better. +06/09/2016,Politicians,@The_Tim_Murphy,Doing karaoke for the first time tonight with my sister Lex haha. Dinosaurs came incredibly close to brutally killing us when we were kids. +06/07/2016,Politicians,@The_Tim_Murphy,I've started taking drawing classes +06/06/2016,Politicians,@The_Tim_Murphy,I am invincible +05/19/2016,Politicians,@The_Tim_Murphy,Thanks everyone who pointed out that electrocution by definition implies death. This is obviously an important distinction that I care about +05/18/2016,Politicians,@The_Tim_Murphy,I was electrocuted by a fence designed to contain massive prehistoric monsters. I just wanted to say that. +05/10/2016,Politicians,@The_Tim_Murphy,Crashed my bike +05/06/2016,Politicians,@The_Tim_Murphy,(These tweets are by @iamchrisscott and not the actual kid from Jurassic Park or the actor who played him. Please no more DMs asking.) +04/28/2016,Politicians,@The_Tim_Murphy,@morelessons thanks I try as hard as I can +04/28/2016,Politicians,@The_Tim_Murphy,@woogirl23 dinosaurs almost killed me when I was 9 years old +04/28/2016,Politicians,@The_Tim_Murphy,"If I get to 10,000 followers it still won't change what happened" +04/19/2016,Politicians,@The_Tim_Murphy,Just started screaming at the gym this morning +04/08/2016,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +04/07/2016,Politicians,@The_Tim_Murphy,I will never die +04/05/2016,Politicians,@The_Tim_Murphy,I tried washing my shoes in the washing machine and they shrunk and don't fit me anymore. So angry. +03/24/2016,Politicians,@The_Tim_Murphy,Tacos for lunch today +03/24/2016,Politicians,@The_Tim_Murphy,Dinosaurs very nearly killed me when I was 9 years old +02/16/2016,Politicians,@The_Tim_Murphy,I came close to dying several times. Maybe that has something to do with it. @DaveHughesRFPB +02/15/2016,Politicians,@The_Tim_Murphy,I hope everyone has a good Monday. I probably won't. +02/12/2016,Politicians,@The_Tim_Murphy,Interesting debate. Dinosaurs. +01/15/2016,Politicians,@The_Tim_Murphy,Excited for the weekend and also excited to never again be trapped on a tropical island full of dinosaurs trying to kill me. +01/03/2016,Politicians,@The_Tim_Murphy,My Christmas tree fell and broke a window. Nothing will ever go right for me. +12/31/2015,Politicians,@The_Tim_Murphy,My New Years resolution is once again to continue not being attacked and killed by dinosaurs. +12/20/2015,Politicians,@The_Tim_Murphy,Why the fuck would I ever do that @sweet_tortilla +12/20/2015,Politicians,@The_Tim_Murphy,Sorry I haven't tweeted in a while. I survived being trapped on an island with literal dinosaurs when I was 9 years old. +11/27/2015,Politicians,@The_Tim_Murphy,Yesterday when my aunt pulled the turkey out of the oven I thought it was a velociraptor and locked myself in the bathroom for 5 hours +11/21/2015,Politicians,@The_Tim_Murphy,TGINot getting killed by dinosaurs +11/07/2015,Politicians,@The_Tim_Murphy,"Just want to say how much I appreciate people constantly tweeting photos of dinosaurs at me. It's great for me, psychologically. Keep it up." +11/05/2015,Politicians,@The_Tim_Murphy,"Had a great night hanging out with Lex, not talking about the time an actual fucking tyrannosaurs rex tried to rip us into a hundred pieces." +10/29/2015,Politicians,@The_Tim_Murphy,Feels like there's a lot going on in the world +10/14/2015,Politicians,@The_Tim_Murphy,Forgot to put the top on the blender and got smoothie all over my kitchen +10/11/2015,Politicians,@The_Tim_Murphy,Listening to Veckatimest by Grizzly Bear. Such a beautiful album. Velociraptors hunted me when I was 9 years old. +10/09/2015,Politicians,@The_Tim_Murphy,A new Beach House album is exactly what I need. I say that as someone who was once trapped in a jeep that was shoved off a cliff by a T. Rex +10/01/2015,Politicians,@The_Tim_Murphy,Dinosaurs +09/23/2015,Politicians,@The_Tim_Murphy,I bought flowers for my girlfriend but forgot them at the store and when I went back to get them they were already gone +09/22/2015,Politicians,@The_Tim_Murphy,I blurted out something about dinosaurs at a job interview again. +09/14/2015,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +09/10/2015,Politicians,@The_Tim_Murphy,This presidential race is getting crazy! Also I was once trapped in a kitchen with actual velociraptors. I think about it constantly. +09/07/2015,Politicians,@The_Tim_Murphy,#LaborDay +09/04/2015,Politicians,@The_Tim_Murphy,Listening to the new Beach House album and not dying. +09/02/2015,Politicians,@The_Tim_Murphy,I'm listening to Neko Case and remembering that I was once nearly killed by actual dinosaurs +08/22/2015,Politicians,@The_Tim_Murphy,"Had a pretty rough time at the Museum of Natural History today. It's more of a Museum of Natural Present to me, in a lot of ways" +08/17/2015,Politicians,@The_Tim_Murphy,I'm alive. +08/16/2015,Politicians,@The_Tim_Murphy,Not a bad weekend. Certainly better than the weekend 20 years ago when dinosaurs tried incredibly hard to kill and eat me. +08/07/2015,Politicians,@The_Tim_Murphy,Eating a croissant +08/04/2015,Politicians,@The_Tim_Murphy,Sometimes in my dreams I'm a dinosaur and I kill a lot of humans. +07/30/2015,Politicians,@The_Tim_Murphy,I'll never be safe will I http://t.co/9vJZZpG6LR +07/29/2015,Politicians,@The_Tim_Murphy,Every shadow is a raptor +07/28/2015,Politicians,@The_Tim_Murphy,Listening to The National and thinking about my life +07/28/2015,Politicians,@The_Tim_Murphy,It would've been cool to see a stegosaurus. It would've been even cooler to not be trapped on an island where dinosaurs tried to kill me. +07/27/2015,Politicians,@The_Tim_Murphy,"The Chipotle near my office is closed today, unfortunately" +07/27/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy no... +07/27/2015,Politicians,@The_Tim_Murphy,"I still remember my grandpa calling me and inviting me to Isla Nublar and me saying ""Yeah, that sounds incredible! Dinosaurs! Wow!"" Christ." +07/26/2015,Politicians,@The_Tim_Murphy,I dropped my iced coffee walking back to my apartment. +07/25/2015,Politicians,@The_Tim_Murphy,"Listening to Sufjan Stevens, one of the best songwriters alive. Velociraptors tried to kill me when I was 9." +07/23/2015,Politicians,@The_Tim_Murphy,I'm sure they'll figure out a way to bring them back somehow. http://t.co/dVbA1vBjOj +07/23/2015,Politicians,@The_Tim_Murphy,They tried @NYid07 +07/23/2015,Politicians,@The_Tim_Murphy,Nothing can kill me +07/22/2015,Politicians,@The_Tim_Murphy,Dinosaurs +07/20/2015,Politicians,@The_Tim_Murphy,I became emotionally overwhelmed during Explosions in the Sky's set at Bonnaroo in 2011 and decided to forgive Dennis Nedry in my heart. +07/19/2015,Politicians,@The_Tim_Murphy,Got a pretty bad sunburn 😔 +07/18/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy can't stress this enough +07/17/2015,Politicians,@The_Tim_Murphy,New Wilco album! Perfect way to end the week. +07/17/2015,Politicians,@The_Tim_Murphy,Cooking classes with my girlfriend are mostly ok but I also associate kitchens with raptors trying to kill and eat me. So it's hard. +07/16/2015,Politicians,@The_Tim_Murphy,She's still crying and I feel so bad. +07/16/2015,Politicians,@The_Tim_Murphy,Having dinner at Lex's and the power went out. I made a joke about being careful with the flashlight and she just started crying. +07/15/2015,Politicians,@The_Tim_Murphy,Yoga helps +07/14/2015,Politicians,@The_Tim_Murphy,Say I had been 12 and not 9 when I visited Jurassic Park. That'd be 3 more years living as a person who hadn't been attacked by dinosaurs. +07/14/2015,Politicians,@The_Tim_Murphy,"My therapist says if I get to 10,000 followers, it won't change what happened." +07/13/2015,Politicians,@The_Tim_Murphy,"Age of Ultron is really good, but not as good as the first Avengers or Winter Soldier" +07/12/2015,Politicians,@The_Tim_Murphy,"I don't let my past define me. Specifically, I'm talking about the time I was viciously hunted by dinosaurs on a tropical island." +07/11/2015,Politicians,@The_Tim_Murphy,"Having a really nice afternoon, grilling with friends and listening to Grizzly Bear and The National." +07/10/2015,Politicians,@The_Tim_Murphy,Been listening to a lot of Wilco again +07/10/2015,Politicians,@The_Tim_Murphy,Sometimes I'll scroll through my followers and all I can see are dinosaurs. +07/09/2015,Politicians,@The_Tim_Murphy,Having a crappy time at Home Depot. +07/08/2015,Politicians,@The_Tim_Murphy,I love indie rock as much as I hated being attacked by velociraptors when I was 9 years old. +07/07/2015,Politicians,@The_Tim_Murphy,What's your favorite Arcade Fire song? Mine's a tie between Rebellion and Ready to Start. +07/07/2015,Politicians,@The_Tim_Murphy,It's been 2 decades. Where are they? Nowhere. They're cowards. +07/07/2015,Politicians,@The_Tim_Murphy,@aprildewdrops I'm committed to not being killed by one +07/07/2015,Politicians,@The_Tim_Murphy,Let's just see if a dinosaur has the fucking balls to come after me again. Let's see. +07/07/2015,Politicians,@The_Tim_Murphy,I'm not afraid of anything. Not anymore. +07/06/2015,Politicians,@The_Tim_Murphy,Sorry I haven't been tweeting much. I beat up a guy pretty bad and spent a few nights in jail. +07/02/2015,Politicians,@The_Tim_Murphy,My cousin Rob always wants to talk about dinosaurs at my family's 4th of July barbecues and I hate it so much. +07/02/2015,Politicians,@The_Tim_Murphy,Pretty nice morning eating cereal and listening to The National. +07/02/2015,Politicians,@The_Tim_Murphy,Nightmares about this. So often. +07/01/2015,Politicians,@The_Tim_Murphy,"My worst birthday was probably my 10th and that's mostly because, a few weeks before it, I was repeatedly attacked by dinosaurs." +06/30/2015,Politicians,@The_Tim_Murphy,"8,000 followers! Incredible. I never thought I'd where's the goat. where's the goat. where's the goat. wheres the goat wheres the goat where" +06/30/2015,Politicians,@The_Tim_Murphy,"Thank you for asking. We probably weren't thinking clearly, on account of being chased by the greatest predator in history. @ArsenaultJay" +06/30/2015,Politicians,@The_Tim_Murphy,I've lost my library card again. Sigh. +06/30/2015,Politicians,@The_Tim_Murphy,Some of you know specific details about what happened to me on Isla Nublar that nobody could possibly know and I can't figure out how... +06/29/2015,Politicians,@The_Tim_Murphy,"Sometimes I sleep in a tree in the park, just to remember." +06/29/2015,Politicians,@The_Tim_Murphy,What's some good new indie music out there? +06/29/2015,Politicians,@The_Tim_Murphy,I'm sure it can't hurt to say this: I never want dinosaurs to kill me. I wish they'd never tried in the first place. +06/28/2015,Politicians,@The_Tim_Murphy,I think a lot about going back to Isla Nublar with a machine gun and just killing as many dinosaurs as I can +06/27/2015,Politicians,@The_Tim_Murphy,@alaskasolo No it's good advice. I will take it to heart. +06/27/2015,Politicians,@The_Tim_Murphy,@alaskasolo Thank you Alaska +06/27/2015,Politicians,@The_Tim_Murphy,I just want to love and be loved. +06/26/2015,Politicians,@The_Tim_Murphy,Dinosaurs tried to kill me when I was 9 years old. +06/25/2015,Politicians,@The_Tim_Murphy,I know what I must become +06/25/2015,Politicians,@The_Tim_Murphy,"""Sorrow found me when I was young."" -The National. One of my favorite songs. And if you replace sorrow with velociraptors it applies to me." +06/25/2015,Politicians,@The_Tim_Murphy,Catching up on political news. Exciting presidential race shaping up. +06/24/2015,Politicians,@The_Tim_Murphy,"If they ever make a movie about my childhood I hope they call it ""This Is A Horrifying Nightmare For Everyone Involved, Especially The Kids""" +06/24/2015,Politicians,@The_Tim_Murphy,"If I had it to do over again, I would not have visited an island full of genetically engineered prehistoric monsters." +06/24/2015,Politicians,@The_Tim_Murphy,My neighbor's car alarm went off all night and I couldn't sleep at all +06/24/2015,Politicians,@The_Tim_Murphy,"Yes, if I'm being completely honest with myself. I would have tried to kill me too. It would be my nature." +06/23/2015,Politicians,@The_Tim_Murphy,"If I had been born a velociraptor, and not a human, would I have done the same thing?" +06/23/2015,Politicians,@The_Tim_Murphy,I have claws in my dreams sometimes +06/23/2015,Politicians,@The_Tim_Murphy,"Listening to Kill the Moonlight for the first time in awhile. Man, Spoon is such a great band." +06/22/2015,Politicians,@The_Tim_Murphy,"Imagine the amount of voltage it would take to contain a Tyrannosaurus Rex. Now imagine you, a human, coming into contact with that voltage." +06/22/2015,Politicians,@The_Tim_Murphy,I was also electrocuted. Did you know that? Dinosaurs hunted me mercilessly and in the midst of that I was also severely electrocuted. +06/22/2015,Politicians,@The_Tim_Murphy,My burrito tore in half at lunch and I got burrito all over my shirt +06/22/2015,Politicians,@The_Tim_Murphy,I cannot figure out my 401k. I also cannot figure out why complete strangers think I want to talk about dinosaurs just for the hell of it. +06/21/2015,Politicians,@The_Tim_Murphy,"Wow I crossed 7,000 followers. All is forgiven, universe! I'm just kidding." +06/21/2015,Politicians,@The_Tim_Murphy,This isn't happening http://t.co/6KtnTH95Ak +06/21/2015,Politicians,@The_Tim_Murphy,It would be a dream come true to know with complete certainty that I will never be in a situation ever again where dinosaurs try to kill me. +06/20/2015,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +06/20/2015,Politicians,@The_Tim_Murphy,I want all living things to like me and be nice to me +06/19/2015,Politicians,@The_Tim_Murphy,Here's hoping the new Mission: Impossible is good and also that someday I'll stop having nightmares about being ripped apart by dinosaurs. +06/19/2015,Politicians,@The_Tim_Murphy,Staying at a friend's cabin this weekend. Gonna fish and relax and just think for a while and sort some things out. Looking forward to it. +06/19/2015,Politicians,@The_Tim_Murphy,"No. + +Please. + +No." +06/19/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy No.... No.... +06/19/2015,Politicians,@The_Tim_Murphy,No. No. No. http://t.co/iRH2ESd8JL +06/19/2015,Politicians,@The_Tim_Murphy,Actual dinosaurs +06/18/2015,Politicians,@The_Tim_Murphy,We should have had indestructible tires by now +06/18/2015,Politicians,@The_Tim_Murphy,Death is for the weak. And I am not weak. I outsmarted a velociraptor. I looked death in the eyes and survived. I'm invincible. +06/18/2015,Politicians,@The_Tim_Murphy,I cannot be killed. I will never die. +06/17/2015,Politicians,@The_Tim_Murphy,Finally started listening to Serial. One episode in and I already see what all the hype was about. Very intriguing... +06/17/2015,Politicians,@The_Tim_Murphy,"Well, I didn't get the job I was interviewing for. I was also once trapped in a kitchen with 2 of the most horrific monsters in history." +06/17/2015,Politicians,@The_Tim_Murphy,"I gotta say, the new Best Coast album is growing on me" +06/17/2015,Politicians,@The_Tim_Murphy,Why didn't I just walk over and give Grant and Sattler that gun instead of yelling at Lex while she was trying to hack the park system? +06/16/2015,Politicians,@The_Tim_Murphy,I'm surprised they haven't figured out how to design better umbrellas than we have now +06/16/2015,Politicians,@The_Tim_Murphy,@kaythaney I gave up trying to figure out Tweetdeck a while ago +06/16/2015,Politicians,@The_Tim_Murphy,I'm alive and eating a taco salad. +06/16/2015,Politicians,@The_Tim_Murphy,Wake up. Eat breakfast. Go to work. Stay focused. No raptors. Stay focused. No raptors. Stay focused. +06/16/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy this is my life motto +06/16/2015,Politicians,@The_Tim_Murphy,"You guys really don't need to keep reminding me about Jurassic Park. It's not the kind of thing I'm going to, like, forget anytime soon." +06/15/2015,Politicians,@The_Tim_Murphy,My bag of groceries broke and then a kid kicked my scallops into the street and then a bus drove over them. Scallops are so expensive. +06/15/2015,Politicians,@The_Tim_Murphy,The new Florence and the Machine album is great. I was once trapped in a vehicle that was pushed off a cliff by an actual Tyrannosaurus rex. +06/15/2015,Politicians,@The_Tim_Murphy,.@Tashairina Arcade Fire +06/15/2015,Politicians,@The_Tim_Murphy,"Wow 6,000 followers. This is one of a couple of things I never imagined would happen to me." +06/15/2015,Politicians,@The_Tim_Murphy,"If I were to put together a list of things I don't need tweeted at me anymore, ""pictures of dinosaurs"" would probably be at the top." +06/14/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy Re-upping this in case any of my new followers are good at online dating. Could use some help. +06/14/2015,Politicians,@The_Tim_Murphy,"Thanks for writing, Conor @conairex" +06/14/2015,Politicians,@The_Tim_Murphy,"I just accidentally spent 4 hours staring at a glass of water, waiting to see if it would ripple." +06/14/2015,Politicians,@The_Tim_Murphy,Kintsugi has its moments but it'd be great to see Death Cab go back to its roots. I'm talking We Have the Facts or even Transatlanticism. +06/13/2015,Politicians,@The_Tim_Murphy,This velociraptor just hissed at me http://t.co/WTyH9QZZyR +06/13/2015,Politicians,@The_Tim_Murphy,Just listening to Grizzly Bear and thinking about my future +06/13/2015,Politicians,@The_Tim_Murphy,"I've gotten a lot of new followers tonight. I was also once mercilessly hunted by actual, real life dinosaurs. Both of these things are true" +06/12/2015,Politicians,@The_Tim_Murphy,"Yes, I'm aware. Thanks." +06/11/2015,Politicians,@The_Tim_Murphy,I think I need to go on a really long road trip alone +06/10/2015,Politicians,@The_Tim_Murphy,I can't tell you how much I'm looking forward to being able to watch TV again without seeing dinosaurs during every commercial break. +06/09/2015,Politicians,@The_Tim_Murphy,Sorry I should've clarified: Good movies that don't directly reference the single most traumatic experience of my entire life. +06/09/2015,Politicians,@The_Tim_Murphy,Are there any good movies coming out +06/09/2015,Politicians,@The_Tim_Murphy,@alexwatsonian what are you talking about +06/08/2015,Politicians,@The_Tim_Murphy,I will never die +06/05/2015,Politicians,@The_Tim_Murphy,@tobytobitobe Congrats on your amazing work at OFA. I regularly have nightmares about the time dinosaurs tried to kill me when I was 9. +06/04/2015,Politicians,@The_Tim_Murphy,Nothing ever stays the same. +06/02/2015,Politicians,@The_Tim_Murphy,Excited for the new Beach House album. Bloom was a masterpiece. +06/02/2015,Politicians,@The_Tim_Murphy,"I've been having nightmares about birds, of all things" +05/30/2015,Politicians,@The_Tim_Murphy,Still need to see Mad Max +05/27/2015,Politicians,@The_Tim_Murphy,"600 followers! I never imagined I'd get this far, especially given that, when I was 9 years old, dinosaurs tried very hard to kill me." +05/26/2015,Politicians,@The_Tim_Murphy,"@oliveiranth Anthony, thank you for clearing this up. In my defense, I was severely electrocuted and also, as an fyi, hunted by dinosaurs." +05/25/2015,Politicians,@The_Tim_Murphy,Just not crazy about Will Butler's solo album. And I say that as someone who loves Arcade Fire and was once hunted by velociraptors. +05/25/2015,Politicians,@The_Tim_Murphy,A list of things I used to be afraid but no longer am would include dinosaurs. I wonder if you could say the same. +05/21/2015,Politicians,@The_Tim_Murphy,Dennis Nedry +05/19/2015,Politicians,@The_Tim_Murphy,Gennaro +04/29/2015,Politicians,@The_Tim_Murphy,I'm considering taking up painting. +04/24/2015,Politicians,@The_Tim_Murphy,"Sometimes when I tweet, or do anything really, I'll get distracted remembering that I was once hunted by prehistoric monsters when I was 9." +04/19/2015,Politicians,@The_Tim_Murphy,Time to go to the mall +04/09/2015,Politicians,@The_Tim_Murphy,I'm out of oranges +03/28/2015,Politicians,@The_Tim_Murphy,"Listening to the new Modest Mouse album. Kinda underwhelmed. Unrelated but, velociraptors tried to kill me one time." +03/21/2015,Politicians,@The_Tim_Murphy,"The best part about surviving what I went through is having a therapist who won't stop referring to it as ""the dinosaur thing.""" +03/21/2015,Politicians,@The_Tim_Murphy,Sorry I don't tweet as much anymore. Dinosaurs. +03/20/2015,Politicians,@The_Tim_Murphy,I'm drinking a stout beer +03/01/2015,Politicians,@The_Tim_Murphy,"Excited for House of Cards, to say the least" +02/27/2015,Politicians,@The_Tim_Murphy,lol at the dress debate. I say it's black and blue but who knows! Prehistoric monsters almost killed me when I was 9. +02/24/2015,Politicians,@The_Tim_Murphy,Nothing can scare me +02/22/2015,Politicians,@The_Tim_Murphy,"Once upon a time, the only thing separating me from the horrific jaws of a T. Rex was a pane of glass supported by my 9-year-old arms." +02/19/2015,Politicians,@The_Tim_Murphy,I don't remember tweeting any of that the other night +02/17/2015,Politicians,@The_Tim_Murphy,I just screamed at the sunset. Make your move. +02/17/2015,Politicians,@The_Tim_Murphy,"I know what fear is. I know what it means to say ""I'm alive."" I'll take any one of you motherfuckers on any time. Come and get me." +02/17/2015,Politicians,@The_Tim_Murphy,I'd fucking love to see one of you survive what I did at Isla Nublar then turn around 2 decades later and crowd surf at an Arcade Fire show +02/17/2015,Politicians,@The_Tim_Murphy,This world doesn't have the balls to kill me +06/20/2018,Politicians,@JohnKerry,"Not surprisingly, The Boss says it best. This isn’t who we are, or who we should ever risk becoming - and fixing it… https://t.co/M2BnPEiFHX" +05/16/2018,Politicians,@JohnKerry,An important step towards fixing what’s been broken - kudos to @SecPompeo. https://t.co/8ZmTN8ruYs +05/16/2018,Politicians,@JohnKerry,Cancer is an evil foe - but Harry has more than our well-wishes in his corner going for him - he's got family and f… https://t.co/SrjTQZRN2X +05/16/2018,Politicians,@JohnKerry,"Thinking of @SenatorReid - the fourth and final Leader with whom I served in the Senate - and one of the toughest,… https://t.co/vRFsrdtwbh" +05/11/2018,Politicians,@JohnKerry,"Actually Jeff, you’re too kind. There are words - four letter ones. If @SenJohnMcCain and I didn’t know how to use… https://t.co/f7deHnfyOj" +05/08/2018,Politicians,@JohnKerry,My thoughts on President Trump’s Iran statement: https://t.co/E5A12PKnnx +05/02/2018,Politicians,@JohnKerry,"These comments are wrong, ugly, and unacceptable - anywhere from anyone - but particularly from anyone who says he… https://t.co/TEF6VdMOFR" +05/01/2018,Politicians,@JohnKerry,There was no negotiation - and all of that changed with JCPOA. Blow up the deal and you're back there tomorrow! 4/4 +05/01/2018,Politicians,@JohnKerry,It’s worth remembering that the early 2000's - when his evidence comes from - was the period where the world had n… https://t.co/VaJpQPz7Ec +05/01/2018,Politicians,@JohnKerry,Read their unprecedented letter in its entirety here: https://t.co/8NABgACTLW. Everything that PM Netanyahu laid ou… https://t.co/SwjdaX6kwA +05/01/2018,Politicians,@JohnKerry,Every detail PM Netanyahu presented yesterday was every reason the world came together to apply years of sanctions… https://t.co/vcPamZ0gty +05/01/2018,Politicians,@JohnKerry,Something I've never done before - and I'm not done writing - but it's been an interesting exercise looking back on… https://t.co/3Ta8IxVzgZ +04/26/2018,Politicians,@JohnKerry,Excited to team up with @TheRiseFund to try and create a private sector Marshall Plan: https://t.co/Y1S3BiZiD7 https://t.co/MJGH6NZENZ +04/23/2018,Politicians,@JohnKerry,Thank you @ourdailyplanet & @MonicaMedinaDC for the great questions & for all you do to highlight the enormous impa… https://t.co/gbu79V6rci +04/22/2018,Politicians,@JohnKerry,Thanks for hosting me @ozy - this was a lot of fun! https://t.co/B6GQi4F8z0 +04/20/2018,Politicians,@JohnKerry,"Just in time for #EarthDay, I had a great chat with @OurOcean CEO @InVeritas_Jones about the legacy of the… https://t.co/5Y0m0yH8HP" +04/19/2018,Politicians,@JohnKerry,My friend @David_Cameron has lived and led at the intersection of complicated global challenges - delighted to see… https://t.co/kNh0Rbz39O +04/18/2018,Politicians,@JohnKerry,My thoughts on the passing of Former First Lady Barbara Bush: https://t.co/8Ska9YiyhC +04/18/2018,Politicians,@JohnKerry,First she made BoA a corporate leader on coal pollution and now assault-style firearms. Bold moves to align the pub… https://t.co/sRgMcNPAvm +04/17/2018,Politicians,@JohnKerry,"Good one, David - that joke's as old as the Super Bowl Shuffle! #FiveRings https://t.co/HFXPktWCnd" +04/16/2018,Politicians,@JohnKerry,"Boston’s strength and courage lifted all of us up. Today I'm thinking of those we lost, their families and everyone… https://t.co/0bnM19sAld" +04/16/2018,Politicians,@JohnKerry,Five years ago and it feels like yesterday: I was trapped on a flight a thousand miles away when the bombs went off… https://t.co/lt0zOHcJln +04/02/2018,Politicians,@JohnKerry,Proud to join a bipartisan group of over 50 former national security leaders in filing a brief at the Supreme Court… https://t.co/Krx7J2JT6L +03/27/2018,Politicians,@JohnKerry,The always thoughtful @ErnestMoniz with an important piece on Iran/DPRK - does a nice job debunking the myth on su… https://t.co/GyfHpPGvP7 +03/02/2018,Politicians,@JohnKerry,Mentor to so many - she walks the walk: no coincidence that 40% of the management team is comprised of women. Still… https://t.co/A1gCMil4kS +03/02/2018,Politicians,@JohnKerry,"An important civic/business voice from Boston, everyone should watch this interview w/ @AnneFinucane. Anne's spent… https://t.co/OWuUZIpcQ5" +03/01/2018,Politicians,@JohnKerry,"Whether it was Mexico, Colombia, Cuba and more - Roberta demonstrated the difference diplomacy can make to advance… https://t.co/h2SE714N5M" +03/01/2018,Politicians,@JohnKerry,Grateful for all @EmbRoberta has contributed to the @StateDept - thirty-plus years of public service and respected… https://t.co/VhdqIY3vUW +02/28/2018,Politicians,@JohnKerry,"""We are children who are being expected to act like adults, while the adults are proving themselves to behave like… https://t.co/8MXcWVULJF" +02/28/2018,Politicians,@JohnKerry,".@emma4change: I can’t improve on your eloquence - but can tell you that when I wasn’t that much older, and wanted… https://t.co/GcQIFHcUlC" +02/27/2018,Politicians,@JohnKerry,Grateful to President @mbachelet for signing a decree to create the Rapa Nui Marine Protected Area around… https://t.co/ZBSvhakuUn +02/23/2018,Politicians,@JohnKerry,A powerful piece that I hope you'll all read. Thank you @johnfkirby63 and Meagan for sharing your inspiring story. https://t.co/SjFZDPzfbn +02/23/2018,Politicians,@JohnKerry,"A big congrats to @margbrennan – smart, tough, fair, responsible – we traveled a lot of miles together while I was… https://t.co/2xGZXsd9J0" +02/22/2018,Politicians,@JohnKerry,The police that Republicans love to give speeches praising support the assault weapons ban and I'd stand with them… https://t.co/vsxXYq2N1Y +02/22/2018,Politicians,@JohnKerry,Getting rid of assault weapons and strengthening background checks doesn't take anything away from the 2nd Amendmen… https://t.co/Fs3bO7JHoz +02/22/2018,Politicians,@JohnKerry,"Fed up that more than 13 years since the @GOP Congress let the assault weapons ban expire, we still can't settle a… https://t.co/gTYOFrmRPK" +02/14/2018,Politicians,@JohnKerry,Nice to be back in “the real Washington” where good things are actually happening to responsibly deal w/climate cha… https://t.co/Cb6dIlPT9t +02/09/2018,Politicians,@JohnKerry,"If you haven’t seen @IcarusNetflix, you should - a really powerful story. https://t.co/yC1XNOEXzQ" +02/08/2018,Politicians,@JohnKerry,A beautiful child of God - an important step by Gerber - and it’s about time! Hope to see lots more of this everywh… https://t.co/PahusUO3zU +02/07/2018,Politicians,@JohnKerry,Happy 106th birthday to a strong and witty woman of character. @SenJohnMcCain - I think might know where you got it… https://t.co/1HIrmt5i1X +02/07/2018,Politicians,@JohnKerry,Eight years later and despite what opponents predicted in 2010 - New START is a success. A good reminder about sou… https://t.co/DYMvqiHBot +02/06/2018,Politicians,@JohnKerry,"RT @StimsonEnvSec: Resource theft on the ocean is leading to economic, food, and environmental insecurity in coastal nations around the glo…" +02/02/2018,Politicians,@JohnKerry,"and the whole world suffers when that happens to America. In Watergate, the difference was, regardless of Party, ev… https://t.co/Ax68UmOj90" +02/02/2018,Politicians,@JohnKerry,"The Nunes memo is dangerous, ugly, and an assault on the integrity of the institutions of our country. I lived thro… https://t.co/N5ttpHQDPw" +02/01/2018,Politicians,@JohnKerry,Congrats on a well-deserved retirement for Tom Shannon. We are all - all ten secretaries he worked with - better of… https://t.co/8Nh2nlFy9p +01/30/2018,Politicians,@JohnKerry,Proud of my friend @LeoDiCaprio and the tremendous work the @DiCaprioFDN and their partners are doing worldwide to… https://t.co/04eKkmaOzk +01/25/2018,Politicians,@JohnKerry,Insightful piece by my friend @AnneFinucane on the impact of capital deployment to address some of the world’s most… https://t.co/3ew8jTzi1g +01/18/2018,Politicians,@JohnKerry,"A privilege to know we’ll soon be reading @jrezaian in the @washingtonpost again. Smart, courageous, and strong are… https://t.co/cjzr1EWOeY" +01/10/2018,Politicians,@JohnKerry,Grateful to my longtime friend @GovInslee and all of the leaders who are ensuring U.S. states step up to address cl… https://t.co/VX8UNnpQXo +12/31/2017,Politicians,@JohnKerry,"With humility about how little we know about what's happening inside Iran, this much is clear: it's an Iranian mome… https://t.co/hMUYKnKAnz" +12/20/2017,Politicians,@JohnKerry,RT @CarnegieEndow: .@JohnKerry explains how climate change can have a profound impact on national security. https://t.co/RFdIa0a44I +12/14/2017,Politicians,@JohnKerry,My friend @jonmacks1 - a gifted writer and class act - wrote this beautiful tribute to his mom. I would've liked to… https://t.co/dQkZc7W5xw +12/14/2017,Politicians,@JohnKerry,A must-read. Talent made my friend @Lin_Manuel an artist - but necessity made him an activist. https://t.co/RAVIh8gjwJ +12/12/2017,Politicians,@JohnKerry,"Too soon, Karen...too soon. https://t.co/SJwkFmYuPY" +12/12/2017,Politicians,@JohnKerry,"RT @CarnegieEndow: Two years ago today, most of the world’s countries adopted the Paris Climate Agreement. By pulling out of the agreement,…" +12/07/2017,Politicians,@JohnKerry,"Island-nation Palau announces all visitors now have to sign a contract, stamped in their passports, promising to pr… https://t.co/SoQm9iZFXD" +12/01/2017,Politicians,@JohnKerry,Always important and meaningful when @madeleine speaks out - we both lived it: Foreign Service is the backbone of o… https://t.co/H1GyEfxvDc +11/28/2017,Politicians,@JohnKerry,Wise words from two accomplished career diplomats - and I can promise you they don't ring this alarm bell lightly;… https://t.co/z2oNsGVhbz +11/27/2017,Politicians,@JohnKerry,Grateful to President @EPN for his tremendous leadership in making Mexico's Revillagigedo a national park and the l… https://t.co/KKCORcJjDu +11/20/2017,Politicians,@JohnKerry,Erik Jacobs' latest project captures something that's always made Boston and America special -… https://t.co/HuAjxUle8U +11/14/2017,Politicians,@JohnKerry,"Encouraged by what's happening at #COP23. The world is continuing to advance the Paris Agreement, unmoved by @POTUS… https://t.co/k2JNmjUITc" +11/13/2017,Politicians,@JohnKerry,Proud of the work that the @KerryInitiative & @JacksonYale is doing on climate change and beyond. Their summary rep… https://t.co/IAh8tetPbO +10/24/2017,Politicians,@JohnKerry,Amen @SenJohnMcCain. @JeffFlake has the courage of convictions in an institution built on far more than party. https://t.co/F1WFoAawJX +10/17/2017,Politicians,@JohnKerry,Just one of the many reasons I'm so proud of @VBKerry every single day. https://t.co/Hiloz1RtpG +10/13/2017,Politicians,@JohnKerry,It's all hands on deck standing up to President Trumps's dangerous decision on Iran. Here's my statement. https://t.co/VsTBwrqBZQ +10/12/2017,Politicians,@JohnKerry,This is huge problem. Smart analysis by @davideckelswade. I know @SenateCommerce/@EdMarkey will ask these q's too. https://t.co/VIvBX1rUlx +10/12/2017,Politicians,@JohnKerry,Thanks for sharing @jrpsaki! A terrific resource created by my colleagues at @CarnegieEndow. https://t.co/4eTrR8hIBw +10/06/2017,Politicians,@JohnKerry,Very excited to be teaming up with @juliepackard and @MontereyAq to tackle these critical issues. https://t.co/LjbMyt6JLp +10/06/2017,Politicians,@JohnKerry,"Thrilled to be in Malta to participate in #OurOcean. Grateful to Malta, @FedericaMog @KarmenuVella @EU_MARE for ho… https://t.co/Cr96Po2Xfl" +10/05/2017,Politicians,@JohnKerry,"Smart piece by @GerryConnolly. Thank you for your leadership, Congressman! https://t.co/LlzaZb0KKa" +10/05/2017,Politicians,@JohnKerry,".@johnfkirby63 tells it like is is here. Thank you, Admiral! https://t.co/48nASadsKv" +10/04/2017,Politicians,@JohnKerry,"When @ErnestMoniz talks, I listen - and you should too. Well done, Ernie! https://t.co/BU5xylWExb" +10/03/2017,Politicians,@JohnKerry,"True to form, @SenatorShaheen is right. I hope so too. https://t.co/a5JHaYTwOB" +10/02/2017,Politicians,@JohnKerry,https://t.co/D47ZLrx8Mj +09/30/2017,Politicians,@JohnKerry,Putting myself back in the shoes of those who may have to vote. Here's how we got to the nuclear deal that works. https://t.co/yzSiA9OMjw +09/29/2017,Politicians,@JohnKerry,"Congrats @StimsonCenter, @NatGeo, RADM Sharp for highlighting the need to combat #IUUfishing for the security of… https://t.co/GvQhjZxPNG" +09/25/2017,Politicians,@JohnKerry,Eager to head to Malta next week for #OurOcean. Thank you @KarmenuVella & @FedericaMog for continuing strong global… https://t.co/FZptnscW46 +09/21/2017,Politicians,@JohnKerry,"Congrats to @investinclimate: a long-time member of my team, a super-smart environmentalist and an even better pers… https://t.co/E2ylWO46kc" +09/21/2017,Politicians,@JohnKerry,"A well-deserved honor by my friend, the incomparable @AnneFinucane! #FortuneMPW https://t.co/8AIOJjOx3d" +09/21/2017,Politicians,@JohnKerry,Some highlights from the productive/insightful #YaleClimateConference. A big thanks to all of our brilliant guests. https://t.co/jNqPAfFue6 +09/19/2017,Politicians,@JohnKerry,@LeoDiCaprio .@LeoDiCaprio & @dicapriofdn walks the walk/talks the talk. Proud of all he does to combat climate cha… https://t.co/MppDRfkgkg +09/19/2017,Politicians,@JohnKerry,Thrilled to have hosted @LeoDiCaprio at the #YaleClimateConference today. Watch his remarks/our conversation here: https://t.co/EXNe5dv0xI +09/19/2017,Politicians,@JohnKerry,RT @Yale: WATCH LIVE: @JohnKerry & @LeoDiCaprio discuss citizen engagement & activism at #YaleClimateConference https://t.co/DDh7zZ4VmP @Ja… +09/19/2017,Politicians,@JohnKerry,Climate change has no political affiliation-it affects us all.Talking bipartisan solutions w/61st SecState Jim Bake… https://t.co/QF7Knww8Ny +09/19/2017,Politicians,@JohnKerry,All-star #YaleClimateConference line-up: @GovInslee @Anne_Hidalgo @JimYongKim @JerryBrownGov discuss the roles citi… https://t.co/pZ7ZupEEHP +09/18/2017,Politicians,@JohnKerry,Great #YaleClimateConference discussion w/@AnneFinucane @JeffImmelt @PaulsonInst on the private sector's role in c… https://t.co/DDbsC4vL8h +09/18/2017,Politicians,@JohnKerry,Delighted to welcome energy experts like @ErnestMoniz & @Hewlett_Found's Jonathan Pershing to help kick off the… https://t.co/8kkQJXP7pk +09/18/2017,Politicians,@JohnKerry,RT @Yale: Watch sessions of the #YaleClimateConference via livestream https://t.co/vpuidWmKcT @KerryInitiative @YaleJackson @YaleFES @YaleS… +09/18/2017,Politicians,@JohnKerry,Proud to host the first #yaleclimateconference this week with the @KerryInitiative & @JacksonYale. We must face th… https://t.co/xdoLaDHbe5 +09/13/2017,Politicians,@JohnKerry,Always fun to spend time w/ @SenJohnMcCain. Funny how life always brings us full circle. Don't miss @KenBurns &… https://t.co/e682o85ztV +09/01/2017,Politicians,@JohnKerry,Some important thoughts from @CarterCenter on the #Kenya Supreme Court Ruling. https://t.co/KxjRP9DNK4 +08/23/2017,Politicians,@JohnKerry,The ocean isn't a commodity to be bought and sold. We must put Pacific bluefin tuna on a path to recovery - now:… https://t.co/eSxuuHg13Q +08/15/2017,Politicians,@JohnKerry,I’ll be on @WEEI @NESN @TheJimmyFund Radio-Telethon at 10:15a today. Call 877-738-1234 to help #KCANCER. Listen on https://t.co/cL4nVxLUSq +08/14/2017,Politicians,@JohnKerry,All the people of Kenya are in my thoughts. I urge all to resolve complaints through the courts & for police to all… https://t.co/h8qCK9yu4k +08/14/2017,Politicians,@JohnKerry,@POTUS 3. @potus has been tougher naming/shaming an American CEO and Senate Majority Leader than a domestic terrori… https://t.co/8te9y43FBP +08/14/2017,Politicians,@JohnKerry,@POTUS 2. @potus empowered the worst of the worst to hear exactly what they wanted to hear. +08/14/2017,Politicians,@JohnKerry,"1.No matter what @potus says now-first instincts always revealing; his was to look into the camera and say ""many sides""-that cant be erased." +08/12/2017,Politicians,@JohnKerry,2) The United States condemns it overseas and needs to start to do same at home. +08/12/2017,Politicians,@JohnKerry,"1) What we've seen today in #Charlottesville needs to be condemned and called what it is: hatred, evil, racism & homegrown extremism." +08/08/2017,Politicians,@JohnKerry,An inspiring day in Kenya watching democracy in action. Enthusiastic voters not fazed by long lines - all agree ele… https://t.co/k1C9mEqAna +08/07/2017,Politicians,@JohnKerry,A powerful statement from @BarackObama. The stakes are high in Kenya this Election Day and I'm hopeful the nation i… https://t.co/peX01MsUbc +08/07/2017,Politicians,@JohnKerry,"Glad to be on the ground in Nairobi for this key election. There's a lot riding on a free, fair and safe election.… https://t.co/qsih8rvsbv" +08/01/2017,Politicians,@JohnKerry,Traveled many miles w/Mark in 2004. A fair reporter with great senses of both decency and humor. He'll be missed. https://t.co/u3zlUsnT7x +07/27/2017,Politicians,@JohnKerry,"An unsurprisingly spot-on piece by my fmr Asst Secretary @johnfkirby63. Keep it up, Admiral! https://t.co/UDC6vpDCZe" +07/26/2017,Politicians,@JohnKerry,"@POTUS 5) Instead, this is just conjuring up fake excuses to discriminate/distract. We’re better than this." +07/26/2017,Politicians,@JohnKerry,@POTUS 4) Nor is this decision in line with America's traditional role setting standard for other countries to treat people with dignity. +07/26/2017,Politicians,@JohnKerry,@POTUS 3) Nothing about today’s announcement is in line with our nation’s values. +07/26/2017,Politicians,@JohnKerry,2) Harry Truman didn't break down barriers with an executive order just to have @POTUS try and build them back up via a tweet. +07/26/2017,Politicians,@JohnKerry,1) America has always been strongest when we find a place for everyone willing to lay down their life to serve. +07/25/2017,Politicians,@JohnKerry,"Bob was a legendary fund-raiser - but he was an even better father, grandfather, husband and friend. Thinking about… https://t.co/QdCfmDgGO6" +07/21/2017,Politicians,@JohnKerry,@USEmbassyTurkey This is a crucial post and Amb. Bass is the right officer for the job. +07/21/2017,Politicians,@JohnKerry,Big congrats to @USEmbassyTurkey Amb John Bass on his nom to be COM in Kabul. Grateful he & Holly (the ultimate tea… https://t.co/cDm83c5ZwW +07/20/2017,Politicians,@JohnKerry,"Well said, Meghan. Teresa and I are thinking of you, your dad, and the entire family tonight. https://t.co/NFDo2pwAt0" +07/20/2017,Politicians,@JohnKerry,"I love @SenJohnMcCain. Unbeatable, unbreakable. He's Teddy Roosevelt's ""man in the arena"" even when we're on opposi… https://t.co/rkLNj5ToVL" +07/14/2017,Politicians,@JohnKerry,2) A place where from FDR to Churchill being a 'globalist' is a badge of honor! cc: @strobetalbott +07/14/2017,Politicians,@JohnKerry,1) Was privileged to deliver this year's Ditchley Foundation Lecture - https://t.co/d0fRQXUZh1 +07/14/2017,Politicians,@JohnKerry,Congrats Chris - such an important issue. Our vets are lucky that you have their back - keep on fighting! https://t.co/AV74nxzoIW +07/14/2017,Politicians,@JohnKerry,"Thinking of President Carter; he's as strong as he is decent. He'll be back on his feet soon, building home at 92!… https://t.co/GtvPaOMj2J" +07/14/2017,Politicians,@JohnKerry,@JimLangevin 4) @amsecproject with a great piece on where we are: https://t.co/clmT5t7KIM +07/14/2017,Politicians,@JohnKerry,@JimLangevin 3) Climate change is a driver of conflict and a national security issue. +07/14/2017,Politicians,@JohnKerry,"@JimLangevin 2) More impressively, congrats to @JimLangevin for beating back effort to deny what the Pentagon has argued for years:" +07/14/2017,Politicians,@JohnKerry,1) Big congrats to my former NE colleague @JimLangevin: huge win today on the NDAA and a longtime champion against… https://t.co/o6QyKsiCLH +07/12/2017,Politicians,@JohnKerry,JCPOA's anniversary is approaching and this is worth a read: 38 generals and admirals know what they're talking abo… https://t.co/AMdk90lXGv +07/12/2017,Politicians,@JohnKerry,Tragic. A doctor comes to the US to save lives and this happens. This is not who we are. https://t.co/l0kOaP4Xa1 +06/23/2017,Politicians,@JohnKerry,"Given the Jets track record, would we call this moving to England or just fleeing Metlife Stadium? Go @Patriots!! https://t.co/Hf4K3THxjb" +06/18/2017,Politicians,@JohnKerry,Prayers for those we lost on the USS Fitzgerald. A reminder of the risks that all those on duty for America take on every day. +06/14/2017,Politicians,@JohnKerry,Honored to be heading back to Kenya for these important elections. https://t.co/rIrEQDc67M +06/07/2017,Politicians,@JohnKerry,Important story about dignity & courage. Being yourself is in America's DNA. https://t.co/fRKkV6XgH0 +06/01/2017,Politicians,@JohnKerry,My thoughts on today's big mistake by President Trump to put America last - and the big fight he's started. Lets go. https://t.co/YmgI8FBwhg +05/31/2017,Politicians,@JohnKerry,"Clear argument by ""the Davids"" - @davideckelswade & David McKean - two of my former Chiefs who've been working on c… https://t.co/ZAImYPbU0N" +05/31/2017,Politicians,@JohnKerry,"Good question. But more importantly: billions of grandkids will have to live with this decision, however it lands.… https://t.co/Eb0QvT1ZFn" +05/27/2017,Politicians,@JohnKerry,@morningmika Zbig was an incredible friend - was always there to give me advice. The world is a safer place bc of h… https://t.co/zqLWLXSGMp +05/25/2017,Politicians,@JohnKerry,"@Harvard hosted @joebiden and I - ""centennials” Today - younger! Please watch Mark Z's powerful case to millennials. https://t.co/0z0wDHyGbN" +05/25/2017,Politicians,@JohnKerry,More change than ever before-short and long term. Wanted to share a few thoughts on how we got here and where we go. https://t.co/4MXDJhq0RZ +05/24/2017,Politicians,@JohnKerry,"Cut me some slack on ""threading."" To paraphrase Yoda: ""Tweet this well when 73 you are I doubt.""" +05/24/2017,Politicians,@JohnKerry,"9- Must also consider how to make any move in coordination/consultation with our European allies, who were and are essential." +05/24/2017,Politicians,@JohnKerry,8- We need to consider the implications of confrontation without conversation. +05/24/2017,Politicians,@JohnKerry,7- There are many tools to up the pressure already in place and at our disposal. We need to weigh/consider risk to JCPOA. +05/24/2017,Politicians,@JohnKerry,"6- After Rouhani’s reelection, there is much up in the air/room for misinterpretation. This is not the moment for a new Iran bill." +05/24/2017,Politicians,@JohnKerry,"5- But to my friends & former colleagues, here is my take: this is a time to tread carefully." +05/24/2017,Politicians,@JohnKerry,"4- On #JCPOA, we engaged in an important back and forth. And I welcomed that debate." +05/24/2017,Politicians,@JohnKerry,"3- #SFRC has made constructive contributions over years, both sanctions + exploring Iran nuclear issue substantively." +05/24/2017,Politicians,@JohnKerry,"2- Tomorrow, #SFRC is considering the Iran bill. Big decision. I respect SFRC's prerogatives - I spent 28 years there myself." +05/24/2017,Politicians,@JohnKerry,"1- My first ""tweet storm."" What recovering Senator could be constrained by 140 characters?! #Fillibuster habits die hard." +05/24/2017,Politicians,@JohnKerry,Home in MA & lucky to speak with @Kennedy_School graduates today. I promise to keep it short! Watch live at 2pm. https://t.co/GrnKOz53vp +05/23/2017,Politicians,@JohnKerry,@LindseyGrahamSC and I do not always agree - but he is spot on here. https://t.co/q9HphkdMPy +05/23/2017,Politicians,@JohnKerry,3) Murdering children the ultimate act of cowardice. The whole world must find answers and act so that this does not become the new normal. +05/23/2017,Politicians,@JohnKerry,"2) Moms/Dads: imagine dropping off your kids at concert, later turning on the TV and fearing whether it's your son or daughter lost." +05/23/2017,Politicians,@JohnKerry,"1) Prayers, yes, but need more than that for all of our friends in Manchester/UK." +05/16/2017,Politicians,@JohnKerry,A big night for me. Such an honor to be recognized by @RogersonComm. An historic organization that makes Boston pro… https://t.co/5mrc0C5wKH +05/10/2017,Politicians,@JohnKerry,Proud to interview my daughter @VBKerry about service & her vision for @seed_global in the #GlobalMoms relay:… https://t.co/TR0f61K1is +04/22/2017,Politicians,@JohnKerry,Why I’m an optimist this Earth Day: https://t.co/zWHGrkEHRq https://t.co/o2RHBYG0kB +03/21/2017,Politicians,@JohnKerry,My Thoughts on the Passing of Martin McGuinness: https://t.co/pyd82WSaZu +02/06/2017,Politicians,@JohnKerry,Heartened to see people and companies standing with those doing so much good for those most in need -- leadership t… https://t.co/x3NTwUDdFm +01/19/2017,Politicians,@JohnKerry,I will always be grateful for the opportunity to serve this great country as Secretary of State. It has been the ho… https://t.co/1I8nYm3FX0 +01/19/2017,Politicians,@JohnKerry,"The @StateDept team has inspired me, informed me & guided me every day of this job. I am profoundly thankful for th… https://t.co/9zm0wI8pKI" +01/19/2017,Politicians,@JohnKerry,We've restored assertive diplomacy as a tool of first resort & deployed it to advance our security & prosperity. https://t.co/6lOa8Qv2oz +01/17/2017,Politicians,@JohnKerry,U.S. is more engaged in many places than at any time in our history. American leadership on world stage remains essential. #WEF17 +01/17/2017,Politicians,@JohnKerry,Good discussion with @tomfriedman on the importance of diplomacy in facing today's complex challenges. #WEF17 https://t.co/HT2MXhVdsF +01/16/2017,Politicians,@JohnKerry,Grateful to @BorisJohnson for his hospitality today and partnership in keeping the U.S.-U.K. special relationship strong and vital. +01/16/2017,Politicians,@JohnKerry,Inspiring to discuss international reconciliation work with the Archbishop of Canterbury and to tour Lambeth Palace. https://t.co/P014GsdIiK +01/16/2017,Politicians,@JohnKerry,"""Life's most persistent and urgent question is: 'What are you doing for others?'"" #MLKDay" +01/14/2017,Politicians,@JohnKerry,Very powerful that veterans from both sides of the war can now be friends & work towards same goal of strengthening… https://t.co/zs4xmE0bYi +01/14/2017,Politicians,@JohnKerry,"Today I met Vo Ban Tam, a former VC enemy who farms shrimp and crab on the same #Mekong river we once fought over. https://t.co/O1h4RxpwS6" +01/13/2017,Politicians,@JohnKerry,"Our focus with #Vietnam is on the future - deepening our partnership, broadening the bilateral agenda & promoting i… https://t.co/OS1HDoe50G" +01/13/2017,Politicians,@JohnKerry,"We're getting close to making Fulbright University #Vietnam a reality. This independent, world-class institution wi… https://t.co/Idq4f9bflw" +01/13/2017,Politicians,@JohnKerry,"U.S.-#Vietnam relationship is built on economic cooperation, cultural exchange & open dialogue. I look forward to s… https://t.co/oV38jiYGJU" +01/10/2017,Politicians,@JohnKerry,Fifty years ago I was commissioned in the @USNavy. Honored today to speak with the next generation of #Midshipmen a… https://t.co/pXdGSxCavN +01/10/2017,Politicians,@JohnKerry,"In ’04, I asked a young Senator to keynote the Dem Convention. Tonight, @POTUS gives his farewell address. Proud of… https://t.co/ga2oEhatIh" +01/09/2017,Politicians,@JohnKerry,"Challenged @MIT students to recognize the vast potential of the energy market, work toward building a sustainable f… https://t.co/TVZVg1WYgu" +01/09/2017,Politicians,@JohnKerry,"I thank Gov't of Mexico for swift arrest of suspect in attack on @USCGGuadalajara colleague; thoughts, prayers remain with him & his family." +01/05/2017,Politicians,@JohnKerry,Global security & prosperity require U.S. leadership & engagement with our key partners. My exit memo to @POTUS → https://t.co/GOnNWaUfT6 +01/01/2017,Politicians,@JohnKerry,"Teresa & I extend best wishes for a Happy New Year. May we begin 2017 with a renewed commitment to promoting peace, prosperity & progress." +12/25/2016,Politicians,@JohnKerry,Teresa and I wish our @StateDept family -- and everyone -- a very Merry #Christmas. +12/24/2016,Politicians,@JohnKerry,"Happy #Hanukkah! May the lights of the menorah brighten your home and the year ahead. From my family to yours, Chag Sameach." +12/20/2016,Politicians,@JohnKerry,"Pivotal moment for #DRC. We call on all parties to respect human rights, reject violence & redouble commitment to an inclusive agreement." +12/19/2016,Politicians,@JohnKerry,"US condemns assassination of Russian Amb to Turkey. Thoughts are w/his loved ones, Russian people, & other victims of this despicable act." +12/18/2016,Politicians,@JohnKerry,"Today, on #InternationalMigrantsDay, we reflect on the ways migrants enrich our culture, improve our economy, and make our nation stronger." +12/18/2016,Politicians,@JohnKerry,"Worked with Saudi Arabia, Oman, UAE, UN, UK to chart a way forward on #Yemen, including urgent need for ceasefire &… https://t.co/8XeSgIIpJ0" +12/18/2016,Politicians,@JohnKerry,"Discussed strength of US-Saudi ties, urgent need to address conflict & humanitarian crisis in #Yemen with… https://t.co/qeowCJopjT" +12/13/2016,Politicians,@JohnKerry,"To @StateDept employees overseas w/out their families this holiday season, thank you & your families for your incre… https://t.co/WqfWL3vUrU" +12/10/2016,Politicians,@JohnKerry,"On Human Rights Day, we recommit to the truth all human beings are endowed with equal and inalienable rights. https://t.co/qrdbTNrORW" +12/10/2016,Politicians,@JohnKerry,Deeply humbled to be recognized in such a profound way by the people of France and to be honored by my friend… https://t.co/tnA3axFxyy +12/10/2016,Politicians,@JohnKerry,"We must continue to strive for a ceasefire, delivery of aid & safe passage for those who want to leave Syria." +12/10/2016,Politicians,@JohnKerry,Important meeting in Paris today to discuss #Syria & siege of Aleppo. https://t.co/KSrcofZrqI +12/09/2016,Politicians,@JohnKerry,"John Glenn was an inspiration to millions, a cherished Senate colleague & a friend. My thoughts & prayers are with his family & loved ones." +12/08/2016,Politicians,@JohnKerry,"Big step today to help stop illegal fishing in #OurOcean - new rule to trace origins of seafood entering US ports. +https://t.co/D3oKGwaV9g" +12/08/2016,Politicians,@JohnKerry,The @OSCE was formed to defend democratic rights. We all need to be aware of the danger of authoritarian populism. #OSCEMC16 +12/08/2016,Politicians,@JohnKerry,Every chip away at the fundamentals of freedom is actually an ugly building block in the road to tyranny. #OSCEMC16 https://t.co/XtvN4U0hsM +12/07/2016,Politicians,@JohnKerry,The C5+1 dialogue has fostered engagement on a range of diverse issues with the goal of a #CentralAsia that is secu… https://t.co/gTwV2WzEig +12/07/2016,Politicians,@JohnKerry,"We remember those lost on #PearlHarbor Day, salute those who served in #WWII, and recommit ourselves to the values for which they fought." +12/06/2016,Politicians,@JohnKerry,"Partnerships with @NATO member countries are vital to our shared security. Important sessions on #Ukraine, #Russia. https://t.co/coWxAAkQil" +12/06/2016,Politicians,@JohnKerry,Agreement signed between EU & U.S. today will enhance close synchronization between our governments during crisis r… https://t.co/VIaaa03Fmk +12/05/2016,Politicians,@JohnKerry,"Grateful for the leadership and friendship of #German FM Steinmeier, a wise and thoughtful partner on Syria, Ukrain… https://t.co/HPzHoR8268" +12/05/2016,Politicians,@JohnKerry,Honored to receive #Germany's Federal Cross of Merit. Even more proud of our strong U.S.-German partnership & trans… https://t.co/fbjTP3GNDn +12/05/2016,Politicians,@JohnKerry,Glad to join Haim Saban & @Martin_Indyk at #Saban16. Enjoyed discussing w/ @JeffreyGoldberg future of two-state sol… https://t.co/7jS9AcEdhX +12/02/2016,Politicians,@JohnKerry,"Valuable #MED2016 initiative is giving momentum to cooperation around the Mediterranean -on security, prosperity, m… https://t.co/AlqqEFndat" +12/02/2016,Politicians,@JohnKerry,Honored to speak with @Pontifex about the world we are building for the next generation. Inspired by his words on… https://t.co/CrvIvqNRIs +12/01/2016,Politicians,@JohnKerry,"Around our world, 36.7 million people are living with #HIV. Today, on World #AIDS Day, we think of them and pledge to #EndAIDS2030. #WAD2016" +11/26/2016,Politicians,@JohnKerry,As a former small biz owner & @SmallBizCmte leader I know the value of local patronage. #ShopSmall on #SmallBizSat!… https://t.co/g5D4R8T3Mi +07/01/2018,Politicians,@jaredpolis,"@thenakedrant I try to keep politics off this feed most of the time, if you want to follow my gubernatorial run fol… https://t.co/WOovLzMXk6" +07/01/2018,Politicians,@jaredpolis,"I think the no-pitch intentional walk is silly, and now it has led to the no-pitch relief appearance #baseball +https://t.co/nK6HPneqgP" +06/30/2018,Politicians,@jaredpolis,@whitedarrenj https://t.co/5nrDNw8BPf +06/29/2018,Politicians,@jaredpolis,"RT @crisantaduran: Honored to stand w/ the next Governor of CO, @jaredpolis! Our state needs a leader w/ bold ideas who will deliver result…" +06/29/2018,Politicians,@jaredpolis,@BrandonRittiman Best of luck in your future endeavors! +06/29/2018,Politicians,@jaredpolis,RT @PolisForCO: Join us this morning as Gov. John Hickenlooper & other leading CO Democrats hold a rally in support of Jared Polis! https:/… +06/28/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: This past week, @RepGutierrez and I visited with 3 mothers at the immigration detention facility in Aurora whose childre…" +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Happy to work with @davek80514 and others on policies to protect our rights and reduce gun violence +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Depends what you are defining as an assault weapon. Fully automatic are already “banned” (he… https://t.co/aLT1ehXjCu +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Where would he get the idea I’m against 2nd amendment? All our gun policy ideas like red fla… https://t.co/rvJx8uEKwJ +06/27/2018,Politicians,@jaredpolis,@SolarRoast It all started at @SolarRoast last Year! +06/27/2018,Politicians,@jaredpolis,RT @justinamash: Congrats to my friend—and the lone Democratic member of the @libertycaucus—@jaredpolis on his big primary win for governor… +06/27/2018,Politicians,@jaredpolis,"RT @MikeJohnstonCO: Jared Polis is an entrepreneur for good. He has earned my respect and support. With tonight's results, I hope you will…" +06/27/2018,Politicians,@jaredpolis,RT @DonnaLynneCO: I want to offer my sincere congratulations to Jared Polis on his victory last night. We have had a hard fought race and w… +06/27/2018,Politicians,@jaredpolis,RT @crisantaduran: I’m proud to stand with @jaredpolis & look forward to helping make him Colorado’s next governor. With the far-right view… +06/27/2018,Politicians,@jaredpolis,Thank you for all the amazing congratulatory tweets! Onwards to November! Here’s my favorite text I got tonight fro… https://t.co/eNELaFRbHx +06/26/2018,Politicians,@jaredpolis,RT @lreeves: Make a difference. Vote today @jaredpolis for next Colorado Governor!! https://t.co/2N15th9iF1 +06/26/2018,Politicians,@jaredpolis,RT @NikkiBirnks: Good luck to @jaredpolis I have met him several times over the years and he is always interested in what everyone around h… +06/26/2018,Politicians,@jaredpolis,RT @AlecGarnett: It’s Election Day!! Get those ballots in and don’t forget to vote for @jaredpolis for #Governor. #copolitics #Elections201… +06/26/2018,Politicians,@jaredpolis,@lsuarez5280 https://t.co/IhT3aGNyDi +06/26/2018,Politicians,@jaredpolis,"RT @PolisForCO: A HUGE thank you to everyone who came out to our election eve rally, and to everyone who has been with our campaign every s…" +06/25/2018,Politicians,@jaredpolis,"RT @PolisForCO: Voting, it's easier than... parking a 🚘 +Turn in your ballot TOMORROW, June 2⃣6⃣ by 7⃣:0⃣0⃣ pm! https://t.co/GLMbla0zOp" +06/25/2018,Politicians,@jaredpolis,"RT @PolisForCO: Vote, it's as easy as... 🇺🇸🗳️#MakeAPlanCO #TeamJared #COpolitics #COgov https://t.co/9g24tFbHhr" +06/25/2018,Politicians,@jaredpolis,"Going door to door in Denver (Montclair), if you’re not home I leave a note for you https://t.co/t4rr0wCg9O" +06/24/2018,Politicians,@jaredpolis,"RT @PolisForCO: As #COgov, I will continue to do everything I possibly can to put a stop to these human rights abuses and #KeepFamiliesTog…" +06/23/2018,Politicians,@jaredpolis,@BoydRBurke I’ll keep working to earn your support for November! +06/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Thank you to everyone who joined me & dropped off their ballots today! Colorado can and will be a leader in the fight again… +06/23/2018,Politicians,@jaredpolis,"RT @PolisForCO: Grateful to spend the morning with @RepGutierrez & Jeanette Vizguerra, two inspirational leaders fighting for immigration r…" +06/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Join Congressman Luis V. Gutierrez & Jeanette Vizguerra at our #DREAMer & Keep Families Together Rally! https://t.co/fAhYPG… +06/22/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""Polis has been fighting for affordable health care & he's gotten things done. With Polis as #COGov, the pharma industry fi…" +06/22/2018,Politicians,@jaredpolis,@alex_burness @SLC_CO You are the pate of Colorado Politics +06/22/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""Voters deserve the benefit of an honest accounting of each candidate's record. In Jared's case, it's a record filled with…" +06/22/2018,Politicians,@jaredpolis,"@MollyElaineB Source: +https://t.co/MWw13iB2BG https://t.co/UR4ubH2hFk" +06/21/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""I’m supporting Jared in his bid to be #COGov because he lives by his values and sticks to his word. And I’m doing more tha…" +06/21/2018,Politicians,@jaredpolis,It’s going to be a long day... so you might as well vote Colorado! #SummerSolstice +06/20/2018,Politicians,@jaredpolis,"RT @PolisForCO: Less than a week until ballots are due! It's too late to mail in your ballot, but you can still drop it off or vote in pers…" +06/20/2018,Politicians,@jaredpolis,RT @KyleClark: Hold on just a hot second. I thought they said they didn’t have the power to do that. https://t.co/sxqjbBdwj6 +06/20/2018,Politicians,@jaredpolis,"RT @PolisForCO: Join me this Saturday with immigrant rights activists @RepGutierrez and Jeanette Vizguerra, as well as several #DREAMers fr…" +06/20/2018,Politicians,@jaredpolis,"@Carleeinco22 Personally I support moving forward w impeachment +https://t.co/km1fCKGWAL" +06/20/2018,Politicians,@jaredpolis,"Here’s the reality: Trump is CHOOSING to terrorize young children, as young or younger than my 3-year-old. This wil… https://t.co/yGawvppgOt" +06/19/2018,Politicians,@jaredpolis,What’s happening to these families is beyond un-American. It’s flat-out horrific. We must all stand in solidarity a… https://t.co/DJDEHdoT8E +06/19/2018,Politicians,@jaredpolis,RT @PolisForCO: Together we can fight for the children who are being ripped away from their families. We must do everything possible to pro… +06/19/2018,Politicians,@jaredpolis,@EllenMignone You might want to follow my official account @RepJaredPolis or my campaign account @PolisForCO this one is my personal account +06/19/2018,Politicians,@jaredpolis,"The hail came through yesterday and minced up my tomatoes 🍅 +They’ll be ok but it certainly didn’t help! https://t.co/yxqdOZcI2s" +06/18/2018,Politicians,@jaredpolis,"RT @BeccaBiblio: Literally the moment I was calling @jaredpolis to complain, once again, about detention centers his gubernatorial campaign…" +06/18/2018,Politicians,@jaredpolis,Study found that egos get bigger after meditation and yoga. I believe it’s an “observer effect” in which the knowle… https://t.co/xwh5g8N0iB +06/18/2018,Politicians,@jaredpolis,RT @VictoryFund: Mayor @AnniseParker and Colorado gubernatorial candidate @jaredpolis are full of PRIDE in Denver today! The primary is jus… +06/17/2018,Politicians,@jaredpolis,"@roger_hamilton I’m sponsoring a bill to stop the separation of children from their parents at the border, and spon… https://t.co/XonDC54SmT" +06/17/2018,Politicians,@jaredpolis,RT @PolisForCO: THANK YOU! Now let’s go win this thing! #COpolitics #COGov #PRIDE #BreakBarriersCO https://t.co/AnOPda6l65 +06/17/2018,Politicians,@jaredpolis,The cool weather today... best #DenverPride ever! +06/16/2018,Politicians,@jaredpolis,RT @PolisForCO: ”He wins in swing counties represented almost entirely by Republicans. And he was rated Colorado’s most effective member of… +06/15/2018,Politicians,@jaredpolis,RT @PolisForCO: We're making a playlist for #Pride! Help us choose the songs here: https://t.co/okDLGoxJTW https://t.co/jBOlo4myxS +06/15/2018,Politicians,@jaredpolis,RT @PolisForCO: No one should have to choose between paying their rent or mortgage and affording the medication that keeps them alive. It's… +06/15/2018,Politicians,@jaredpolis,"RT @PolisForCO: As #COGov, I will make sure that here in Colorado we continue our inclusive tradition of welcoming and appreciating immigra…" +06/15/2018,Politicians,@jaredpolis,"RT @PolisForCO: It's time for bold action in Colorado to ensure that everyone, regardless of zip code, has access to the health care they d…" +06/14/2018,Politicians,@jaredpolis,https://t.co/tSbBfoVpCL +06/14/2018,Politicians,@jaredpolis,"RT @JuanSaaa: .@RepJaredPolis: families deserve to be together, I’m honored to join my colleagues - to reinforce the voice of father’s in C…" +06/14/2018,Politicians,@jaredpolis,@AllysonDowney Please follow my official twitter @RepJaredPolis we did a press conference today of fathers in Congr… https://t.co/GYD0gWhLLD +06/14/2018,Politicians,@jaredpolis,"@squashstreet @CaryKennedy @MikeJohnstonCO From my social justice plan: +“I will end our investment in private priso… https://t.co/QwTIUJWh1h" +06/14/2018,Politicians,@jaredpolis,RT @PolisForCO: Honored to have the endorsement of @GreeleyTribune! “It's hard to find a candidate more well positioned to represent the in… +06/13/2018,Politicians,@jaredpolis,"@Binkley_Paul Thx for being a teacher! +How to increase funding for teacher pay, smaller classes, free full day Pre-… https://t.co/s0ppzcciIM" +06/13/2018,Politicians,@jaredpolis,"RT @DenverWestword: Boom! Mic drop! +https://t.co/9TUbhGi6b4" +06/13/2018,Politicians,@jaredpolis,"RT @PolisForCO: “With his track record of bringing everyone to the table and getting big things done for Colorado, it's clear that Jared is…" +06/13/2018,Politicians,@jaredpolis,RT @SierraClubCO: We are working hard to help @jaredpolis get out the vote in the last weeks before the election! Learn more about our camp… +06/12/2018,Politicians,@jaredpolis,"RT @PolisForCO: If we turn away women and children fleeing horrific domestic violence, who are we as a nation? https://t.co/GK5onfLcky" +06/12/2018,Politicians,@jaredpolis,"@arpurdy Thanks for checking in! Don’t believe negative attack ads here’s my record: +https://t.co/6GST3sU2qn" +06/11/2018,Politicians,@jaredpolis,RT @PolisForCO: You can tell a lot about people by the way they treat animals. I'm the only candidate for #COGov with a policy that will fi… +06/11/2018,Politicians,@jaredpolis,"@Aberu Im also proud of our plan to get to 100% renewable energy by 2040 and endorsement of @SierraClubCO +https://t.co/MX9ZHpIfx7" +06/11/2018,Politicians,@jaredpolis,"@Aberu I appriate your diligence/analysis, wish all voters did that! Healthcare is a big one for me and I’m not new… https://t.co/vuYXiUJTGE" +06/11/2018,Politicians,@jaredpolis,"@Aberu Check out my positions here: +https://t.co/DFSriIyCi2" +06/11/2018,Politicians,@jaredpolis,"@Aberu @CaryKennedy @DOTA2 Yes haven’t had time to play lately with two kids, a day job in Congress and the campaign it’s true!" +06/11/2018,Politicians,@jaredpolis,@Aberu @CaryKennedy Pretty sure I could beat the other candidates in DOTA2 or LoL https://t.co/TQwsRhLn2S +06/11/2018,Politicians,@jaredpolis,RT @RepJaredPolis: My Teachers Are Leaders Act empowers local school districts to develop new leadership opportunities for their teachers.… +06/11/2018,Politicians,@jaredpolis,"Hopeful new tech like this will pan out to trap greenhouse gasses, combat climate change +https://t.co/OPv4kGae4T" +06/11/2018,Politicians,@jaredpolis,@KelseyFritz1 Thanks for all the great turnout work you are doing! +06/10/2018,Politicians,@jaredpolis,@TaraSBostick1 As I said I oppose all breed specific bans. +06/10/2018,Politicians,@jaredpolis,"@TaraSBostick1 I am against breed specific bans, check out my animal welfare policy here: +https://t.co/9qbB2pQV4S" +06/10/2018,Politicians,@jaredpolis,"Does it say more about an era with a smaller ideological divide between parties, or about the remarkable Earl Warre… https://t.co/FFpqZuMhZh" +06/10/2018,Politicians,@jaredpolis,"Printed homes? +“The method will also cut costs and environmental damage” +https://t.co/ZlF8fdfHeL" +06/10/2018,Politicians,@jaredpolis,RT @PolisForCO: These pictures say it all. Vote. It matters. https://t.co/0Rmiw84d43 +06/10/2018,Politicians,@jaredpolis,@IanxFitzpatrick Not a bad arm! Congrats on your upcoming wedding! +06/09/2018,Politicians,@jaredpolis,"Congrats to @IanxFitzpatrick on his upcoming wedding, but also for (after I got six hits) striking me out https://t.co/sa5X4DkUn4" +06/09/2018,Politicians,@jaredpolis,"RT @PolisForCO: Earlier this week, Ian suggested that he could strike me out. Challenge accepted. I’m taking a swing at getting his vote an…" +06/09/2018,Politicians,@jaredpolis,"At 4:30 pm at 26th and Vrain, @IanxFitzpatrick will try to strike me out! If you are nearby come watch one of us ge… https://t.co/4O1mmMmQmF" +06/09/2018,Politicians,@jaredpolis,No parent should ever have to explain this to their children. Marlon and I are sending thoughts to you… https://t.co/vpX9XVeDRZ +06/09/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: Healthcare should be affordable and accessible to all, and Americans with pre-existing conditions shouldn’t face discrim…" +06/09/2018,Politicians,@jaredpolis,@squashstreet @Joe4COAG @BernardDouthit @Vote4Levi @JenaGriswold @CaryKennedy Let me know if you have any questions… https://t.co/pFPoEWFa8c +06/09/2018,Politicians,@jaredpolis,"RT @PolisForCO: Excited to be joined by @SierraClubCO in Pueblo for a GOTV & Canvass Launch! With a bold vision and hard work, we can get t…" +06/09/2018,Politicians,@jaredpolis,@InvisibleLabs Yes it is terrible to symbolize what Trump is doing to our environment! +06/08/2018,Politicians,@jaredpolis,@KonasMama @missLtoe Done! And thank you! +06/08/2018,Politicians,@jaredpolis,"RT @PolisForCO: Actions speak louder than words. As #COGov, I'll be ready on Day 1 to take on Donald Trump. https://t.co/HGmcazsAFI" +06/08/2018,Politicians,@jaredpolis,"@KonasMama Here is my stance: +https://t.co/R9bgPSUKv7" +06/08/2018,Politicians,@jaredpolis,"RT @PolisForCO: Heartbreaking and unacceptable. Tackling mental health has to be a top priority for our state. As governor, I will work to…" +06/08/2018,Politicians,@jaredpolis,"Wanna be pitcher @IanxFitzpatrick thinks he can strike me out.... I’m confident enough to livecast it on Facebook ,… https://t.co/8j9V3wKYby" +06/07/2018,Politicians,@jaredpolis,"RT @9NEWS: Polis grows lead among Democrats for governor, says poll https://t.co/H8v5cPCawJ https://t.co/wibQKezalD" +06/07/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Thrilled to have helped secure $25 million in federal funding for I-70 West 🚗 Less traffic means it’s easier for us to g… +06/06/2018,Politicians,@jaredpolis,@MattHerdman @ShashleyQ League of Legends? +06/06/2018,Politicians,@jaredpolis,"RT @sa_elizabeth: Great turnout in Eagle county to see @PolisForCO and hear his vision for Colorado! Also, ballots are in the mail, make su…" +06/05/2018,Politicians,@jaredpolis,@IanxFitzpatrick Game on! No way you’ll strike me out. I’ll give you two innings (six at bats) to try. Jefferson Hi… https://t.co/zBLvSu4bpN +06/05/2018,Politicians,@jaredpolis,RT @PolisForCO: My closing statement from tonight's #COGov debate: https://t.co/tFnQTvRFWv +06/05/2018,Politicians,@jaredpolis,RT @sonyajlewis: #govdebate @jaredpolis was the only Dem who called for supporting Single Payer health care. He is the true Progressive. M… +06/04/2018,Politicians,@jaredpolis,Glad to have @brothajeff on #TeamJared! Let’s get this done! https://t.co/OkJ1UJ2xsA +06/04/2018,Politicians,@jaredpolis,"RT @PolisForCO: Day 500 of the Trump presidency, and everything’s going great: https://t.co/qL79813kLU" +06/03/2018,Politicians,@jaredpolis,"This is so wrong +https://t.co/AK2qAJ8iN3" +06/03/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""It's imperative to talk about the big, bold goal of getting to 100% renewable energy. When John F. Kennedy talked about go…" +06/03/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Today I #WearOrange for National Gun Violence Awareness Day. We are in the middle of a public health crisis. https://t.c… +06/03/2018,Politicians,@jaredpolis,"RT @PolisForCO: I spent last weekend meeting with folks in southwestern CO, & I know this is top of mind for many. We're facing a warmer, d…" +06/02/2018,Politicians,@jaredpolis,"Flatworms mysteriously retain their old memories after beheading in their newly regenerated brains +https://t.co/FSlEDSIQg2" +06/01/2018,Politicians,@jaredpolis,"RT @PolisForCO: It’s time to stop propping up the past & move forward w/ our green energy future. Renewables are cheaper than fossil fuels,…" +05/31/2018,Politicians,@jaredpolis,RT @PolisForCO: It's disappointing to see one of my opponents resort to ugly and false attack ads. Click the link below to learn more about… +05/31/2018,Politicians,@jaredpolis,RT @PolisForCO: Marcia & Grace are a mother & daughter who were able to receive cancer treatment because of the Affordable Care Act. I was… +05/31/2018,Politicians,@jaredpolis,RT @davidcohen: Join us at this important event in #colorado - Breaking Barriers in Technology & Entrepreneurship with @techstars co-founde… +05/31/2018,Politicians,@jaredpolis,"RT @PolisForCO: Great way to wrap up the day at the Pueblo Democratic Latino Forum! As #COgov, I look forward to working with local leaders…" +05/31/2018,Politicians,@jaredpolis,@BartBanks @PolisForCO @NORML In Pueblo as we speak! It’s up to each country to decide what they want as it should be +05/30/2018,Politicians,@jaredpolis,"RT @ColoradoMatters: Candidate for governor @jaredpolis talked to @cprwarner about free childhood education, expanded Medicare and more in…" +05/30/2018,Politicians,@jaredpolis,RT @PolisForCO: There’s an election wave you probably haven’t heard of yet — and it’s important. https://t.co/cXPQArA7e5 #BreakBarriersCO +05/30/2018,Politicians,@jaredpolis,RT @PolisForCO: “It’s imperative to set the big bold goal of reaching 100% renewable energy by 2040. When JFK set the goal in 1961 of reach… +05/30/2018,Politicians,@jaredpolis,"RT @theJesseDean: Something all Coloradans should support, Republican or Democrat. We need to preserve public land! + +#COpolitics #Colorado…" +05/29/2018,Politicians,@jaredpolis,RT @ColoradoLeads: What are Colorado leaders saying about the #marijuana industry? “You only have to look to the success of CO to see why t… +05/29/2018,Politicians,@jaredpolis,"Let’s replace special interest tax subsidies w student loan relief, making college more affordable, and reducing th… https://t.co/7mluuhvlws" +05/29/2018,Politicians,@jaredpolis,"RT @NColtrain: For those thatve been following along, here’s Rep. @jaredpolis, response to the Presidential Tweet Treatment #copolitics htt…" +05/28/2018,Politicians,@jaredpolis,RT @PolisForCO: .@RealDonaldTrump only one true claim: I did proudly write the bill to repeal your tax scheme. Because your law slashes rat… +05/28/2018,Politicians,@jaredpolis,RT @PolisForCO: I proudly wrote the bill to repeal @RealDonaldTrump’s tax giveaways. Simple choice this election: President and GOP lose by… +05/28/2018,Politicians,@jaredpolis,"RT @PolisForCO: Today, reflect and feel thankful for all those who gave their lives in service of our country. Then, think about how you ca…" +05/28/2018,Politicians,@jaredpolis,@BradMcHargue I am teaching him that the younger (almost) always beat their elders in video games +05/28/2018,Politicians,@jaredpolis,"A 100% renewable energy powered grid isn’t just possible, it’s happening +https://t.co/psvuf1cfb1" +05/26/2018,Politicians,@jaredpolis,@MaxwellJay11 Baseball not softball +05/25/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: Yesterday for #FosterYouthShadowDay, I was proud to welcome Tori from Aurora. Thank you for hosting, @RepKarenBass. Cong…" +05/25/2018,Politicians,@jaredpolis,Thank you @RepTomReed and other brave Republicans helping Democrats break the gridlock that prevents us from acting… https://t.co/DVXYGpFxZk +05/24/2018,Politicians,@jaredpolis,RT @PolisForCO: Grand Junction – join me for a meet & greet and canvass launch this Friday at 4pm in our field office! We look forward to g… +05/23/2018,Politicians,@jaredpolis,RT @RepJaredPolis: People need to know - Special Counsel Robert Mueller already has 17 indictments and 5 guilty pleas. Pass it on. Reality… +05/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Honored to have the endorsement of @NORML! I'm proud to be the only #COGov candidate who supported the legalization of recr… +05/23/2018,Politicians,@jaredpolis,"Why the green energy revolution is here in one chart: +Source: https://t.co/ewoePSRD2B https://t.co/TtLQ6wEHfe" +05/23/2018,Politicians,@jaredpolis,"RT @PolisForCO: Harvey Milk, who would've been 88 today, was a trailblazer for the #LGBTQ community. He showed that no matter who you are o…" +05/22/2018,Politicians,@jaredpolis,RT @RepJaredPolis: We must fully fund special education - public schools desperately and deservingly need additional resources. https://t.c… +05/22/2018,Politicians,@jaredpolis,RT @RepJaredPolis: All students are entitled to an education free from discrimination! https://t.co/KOTilVWVAH +05/21/2018,Politicians,@jaredpolis,"Dawkins the baboon ran around the San Antonio Airport... sounds a lot more interesting than @DENAirport +https://t.co/IKQ8IQ1Mu5" +05/21/2018,Politicians,@jaredpolis,"RT @CSPRColorado: “Studies have demonstrated that if we truly care about addressing the achievement gaps that exist along racial, geographi…" +05/21/2018,Politicians,@jaredpolis,"In 1965, Irving Good said “The first ultraintelligent machine is the last invention that man need ever make, provid… https://t.co/2NzrB6OMy0" +05/21/2018,Politicians,@jaredpolis,"“... where renewables penetration is greatest, wholesale electricity prices have occasionally gone to zero” +https://t.co/PNYH5QV6xB" +05/20/2018,Politicians,@jaredpolis,"RT @KennyNguyen301: This is Judy, she is a 93 year old volunteer and a lifelong Democrat. She started volunteering in the 1940s in New York…" +05/20/2018,Politicians,@jaredpolis,"@ariarmstrong Nuclear has zero carbon emissions and would count towards a 100% goal, but is not currently part of… https://t.co/hglZUliFs8" +05/20/2018,Politicians,@jaredpolis,"The more the merrier! +https://t.co/F8joF121RZ" +05/19/2018,Politicians,@jaredpolis,RT @SierraClubCO: The Colorado primaries are just a few weeks away. We need your help to elect environmental champions like @jaredpolis! #c… +05/19/2018,Politicians,@jaredpolis,RT @markhardencopo: Says @jaredpolis : It doesn’t matter who the GOP candidate for guv is; the real opponent is @realDonaldTrump. At #cociv… +05/19/2018,Politicians,@jaredpolis,"RT @PolisForCO: Happy #COpubliclands Day! Nearly a third of our state is made of #publiclands, and they belong to all Coloradans. As #COgov…" +05/18/2018,Politicians,@jaredpolis,RT @leslieherod: Very honored to host @jaredpolis and Congresswoman Pat Schroeder in an inspiring conversation about #breakingbarriers. Tak… +05/17/2018,Politicians,@jaredpolis,"...and Vulcans! 🖖 +https://t.co/uXG92O6Vor" +05/16/2018,Politicians,@jaredpolis,@WereGeek @OfficialYonni @Yanni Fixed it t/y +05/16/2018,Politicians,@jaredpolis,I hear #laurel but I’d rather hear @Yanni https://t.co/vG0csuv4DZ +05/16/2018,Politicians,@jaredpolis,"RT @PolisForCO: As Colorado’s #cannabis industry goes, so goes the nation’s. I’m ready on Day One to defend legal #marijuana from attacks b…" +05/16/2018,Politicians,@jaredpolis,"RT @PolisForCO: This is the right direction. Health care is a human right. I have supported universal single-payer health care since 2008,…" +05/16/2018,Politicians,@jaredpolis,@ColoradoHOA There are always those that defy the odds! Mine too https://t.co/UlTZRmRANU +05/16/2018,Politicians,@jaredpolis,"New study finds that puppies are cutest at eight weeks old +https://t.co/O7JyJZO01K" +05/15/2018,Politicians,@jaredpolis,RT @PolisForCO: We must rededicate ourselves to a mission of building equitable access to opportunity so that everyone has the means to liv… +05/15/2018,Politicians,@jaredpolis,@stealthisbook Best response ever! +05/15/2018,Politicians,@jaredpolis,"New horror movie? +... Actually just a sensational headline for a scientific study +https://t.co/NZSIjlsg0n" +05/14/2018,Politicians,@jaredpolis,"@betsydornbusch I’m not for requiring it either, just offering full day free instead of charging" +05/14/2018,Politicians,@jaredpolis,https://t.co/Pqr4eJO0AF +05/14/2018,Politicians,@jaredpolis,"RT @PolisForCO: A tremendous leader whose service to Colorado will never be forgotten. My heart goes out to Mayor Steve Hogan’s family, his…" +05/11/2018,Politicians,@jaredpolis,@crisantaduran Thank you for your service and amazing work for all of us! +05/10/2018,Politicians,@jaredpolis,"RT @PolisForCO: The Colorado way of life includes the freedom to choose when, & how, we each start a family. As #COgov, I will never equivo…" +05/10/2018,Politicians,@jaredpolis,RT @PolisForCO: Climate change is real and so are the consequences. Together we will develop a transition plan that will provide new & bett… +05/10/2018,Politicians,@jaredpolis,"...Said the Spirit, turning on him for the last time with his own words. “Are there no workhouses?” +https://t.co/3eCJ3ZD5tI" +05/09/2018,Politicians,@jaredpolis,@WereGeek Yeah and my mom prefers RNA anyway +05/09/2018,Politicians,@jaredpolis,"You know you’re living in the 21st century when you get a “DNA sale” in your inbox! Call me old fashioned, but I’m… https://t.co/0itsh32nMQ" +05/09/2018,Politicians,@jaredpolis,@Malinalarimar https://t.co/9qbB2pzkdk +05/08/2018,Politicians,@jaredpolis,@ariarmstrong And the restoration of democracy and the rule of law in Venezuela while you’re at it! +05/08/2018,Politicians,@jaredpolis,"Over 10,000,000 people work in clean energy! Let’s bring more good-paying green energy jobs to Colorado! +https://t.co/fY0d3ziZgd" +05/08/2018,Politicians,@jaredpolis,RT @PolisForCO: Only 5️⃣0️⃣ days left until the #COGov primary election! Here's a quick guide for eight easy steps you can take to help #Te… +05/08/2018,Politicians,@jaredpolis,"RT @EmmaSJacobs: Fab meeting with @jaredpolis, member of Congress for Colorado. Thanks for making time to meet with the @ADL_National deleg…" +05/08/2018,Politicians,@jaredpolis,"I usually have nostalgia for 80s reruns, but not this one! https://t.co/E2Igqoi3m3" +05/08/2018,Politicians,@jaredpolis,Very real health reasons that the transition to renewable energy is so important https://t.co/ACy0VEsHID +05/08/2018,Politicians,@jaredpolis,There is treatment (which Venezuela’s broken health infrastructure can’t deliver reliably) but the world still awai… https://t.co/0JEe4DSNv1 +05/08/2018,Politicians,@jaredpolis,"In ten billion years, our sun will collapse into a “massive ring of luminous, interstellar gas and dust” +https://t.co/qZmT22pMv2" +05/08/2018,Politicians,@jaredpolis,"Pueblo City and County are embracing a renewable energy future and already seeing growth in green jobs +https://t.co/IAyEwsq9Zd" +05/07/2018,Politicians,@jaredpolis,@KimbieT https://t.co/1b64encR56 +05/07/2018,Politicians,@jaredpolis,"Lied to Congress, illegally smuggled weapons to Iran, now President of the NRA: Oliver North +https://t.co/1b64encR56" +05/07/2018,Politicians,@jaredpolis,"Oliver North, new President of the NRA, had his concealed carry license revoked by a judge who determined he was ""not of good character”" +05/06/2018,Politicians,@jaredpolis,"RT @PolisForCO: I’ve been proud to help lead the fight for #LGBTQ equality at the federal level, and as #COGov, I will stand up for the rig…" +05/06/2018,Politicians,@jaredpolis,"RT @PolisForCO: Opening up these majestic areas to oil and gas hurts our air, land, water, and our health & safety. This is a disgraceful m…" +05/06/2018,Politicians,@jaredpolis,"A solar-powered animal! +https://t.co/M6JtwHoNux" +05/05/2018,Politicians,@jaredpolis,The independent voice of the media is critical to help keep politicians and corporations honest. The emptying out o… https://t.co/8kKOUPZbFV +05/04/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: We didn't always see eye to eye, but I always appreciated Chuck Plunkett's thoughtful words. The slow demise of our inde…" +05/04/2018,Politicians,@jaredpolis,"After the rain ends +Pink flowers fallen from trees +Soft petal carpet +#haiku https://t.co/ss0cJHxCqh" +05/03/2018,Politicians,@jaredpolis,"“Some guests come in full hobbit regalia” +https://t.co/kEy4T6xWNN" +05/03/2018,Politicians,@jaredpolis,"Was hoping this was a crystal that could help us time travel, oh well it’s still pretty cool and mysterious +https://t.co/meGOAe2TSw" +05/02/2018,Politicians,@jaredpolis,"Such a fun headline to read just in time for spring and summer! 😳 +https://t.co/AyVe0MhT2o" +05/02/2018,Politicians,@jaredpolis,RT @PolisForCO: Inexcusable and unacceptable. Education is a civil right. https://t.co/cfSYSqaWMj +05/01/2018,Politicians,@jaredpolis,"RT @PolisForCO: Pat Schroeder, the first woman to represent Colorado in Congress, has always been a hero to me. I'm honored to have her end…" +04/30/2018,Politicians,@jaredpolis,"@DebraRaeShort Honored to work on many issues with Bernie Sanders such as employee ownership +https://t.co/oIJAuQky0t" +04/28/2018,Politicians,@jaredpolis,RT @AGUSciPolicy: #Champs4Science: Rep @JaredPolis and @RepRyanCostello are setting an example as co-chairs of the House Earth and Space Sc… +04/27/2018,Politicians,@jaredpolis,"RT @PolisForCO: #TeamJared standing strong in solidarity with our teachers today! As #COGov, one of my top priorities will be investing in…" +04/27/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Proud of the students across the country participating in the #DayofSilence. You are not alone. 🏳️‍🌈 +04/27/2018,Politicians,@jaredpolis,RT @PolisForCO: It's unacceptable that we have one of the best economies in the country yet consistently underpay and undervalue our educat… +04/27/2018,Politicians,@jaredpolis,"@Sheena_Kadi Yeah I let my ‘stache grow out in DC this week, ready to shave" +04/27/2018,Politicians,@jaredpolis,"Did the airline charge extra for the rat? +https://t.co/gQOyy8AXpg" +04/26/2018,Politicians,@jaredpolis,"#macron said “Freedom is never more than one generation away from extinction,"" but the good news for Venezuela, Nor… https://t.co/uaegG0M8BQ" +04/26/2018,Politicians,@jaredpolis,"#Macron “We must find a smoother transition to a lower carbon economy, because what is the meaning of our life, rea… https://t.co/0Rp2lnkY2j" +04/26/2018,Politicians,@jaredpolis,"@AaronBrockett12 @DaveKrieger I agree that he shouldn’t have been fired for that, he deserves his say" +12/20/2016,Politicians,@PaulManafort,"President Donald J. Trump! +Nothing more to say except now it is time ""To Make America Great Again""!" +11/09/2016,Politicians,@PaulManafort,"Donald Trump in his speech last night began the healing process. +He will be a President with one goal: + +""To Make America Great Again!""" +11/09/2016,Politicians,@PaulManafort,Congratulations President-Elect Trump and Vice-President Elect Pence! +11/08/2016,Politicians,@PaulManafort,HIllary Clinton campaigning in Blue states today? She knows the Trump revolution begins tomorrow night! +11/04/2016,Politicians,@PaulManafort,Battleground states moving to Trump en masse. Media not liking the pattern. By Sunday Trump will be over 270 in polls +08/14/2016,Politicians,@PaulManafort,"And those Upstate NY jobs never materialized either ""Why would anyone believe Hillary’s promise of 10 million jobs? https://t.co/Gz8mHUUxbI""" +08/13/2016,Politicians,@PaulManafort,"cc: Sanders supporters: ""EXCLUSIVE: Dem Official Referred To Hillary As Nominee Before Primaries Even Started https://t.co/yhkHBwmDCV""" +08/12/2016,Politicians,@PaulManafort,Smart take by Curtis Ellis: Families Crushed by Obama-Clinton Pay Freeze https://t.co/ylcwh4AbG1 via @LifeZette +08/12/2016,Politicians,@PaulManafort,Cornyn prods DOJ on Clinton Foundation conduct https://t.co/wPwidx6679 via @DCExaminer +08/12/2016,Politicians,@PaulManafort,".@realdonaldtrump advisor Tom Barrack: ""Here’s a new approach to trade agreements https://t.co/Qk6TfCYFKh via @bi_contributors""" +08/12/2016,Politicians,@PaulManafort,Head of Justice Department’s national security division objected to Iran cash payment: https://t.co/IYOcMsk68E via @WSJ +08/12/2016,Politicians,@PaulManafort,Clinton takes the wrong approach to trade deals https://t.co/xJlUY7pjBX +08/11/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: #CrookedHillary https://t.co/Jux2ikFpXd +08/11/2016,Politicians,@PaulManafort,Donald Trump narrowly leads Hillary Clinton in Iowa https://t.co/9s6oADjhOV +08/11/2016,Politicians,@PaulManafort,New Emails Shed Light on ‘Clinton Cash’ State Department - Breitbart https://t.co/tIWnuQBwH9 +08/11/2016,Politicians,@PaulManafort,"Top of Drudge Report right now - Fox, then MSNBC, then CNN: ""Scoreboard: Tuesday, August 9 https://t.co/eJGLtmJzp0""" +08/11/2016,Politicians,@PaulManafort,"Clinton pay to play update --> ""Hillary played favorites with huge number of Clinton Foundation donors https://t.co/n4yrs4udSc via @nypost""" +08/11/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Reuters just announced that Secret Service never spoke to me or my campaign. Made up story by @CNN is a hoax. Totally… +08/10/2016,Politicians,@PaulManafort,Donald Trump pushes fiscally sound economic plan https://t.co/WHXbil2eIm +08/09/2016,Politicians,@PaulManafort,Trump Campaign Statement on the Dishonest Media https://t.co/WXMo7T0yK6 https://t.co/RlMWrqHcxP +08/09/2016,Politicians,@PaulManafort,RT @TeamTrump: We must bring back our JOBS. @realDonaldTrump will not enter a trade deal unless it puts YOU first! #TrumpIsWithYou https://… +08/09/2016,Politicians,@PaulManafort,Must-read from LTG (R) Keith Kellogg and LTG (R) Michael Flynn pushing back against the Washington insiders: https://t.co/r06vRneLZy +08/08/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: .@realDonaldTrump Statement on Politically Motivated Letter | Donald J. Trump for President https://t.co/a6Eqa3Y1vJ +08/08/2016,Politicians,@PaulManafort,Why Hillary Clinton's email controversy is still haunting her campaign https://t.co/keQbfvm05w via @WSJPolitics +08/08/2016,Politicians,@PaulManafort,".@hillaryclinton short-circuit: As Sen., Clinton promised 200,000 jobs in Upstate New York. Her efforts fell flat. https://t.co/qZnACbKqHJ" +08/07/2016,Politicians,@PaulManafort,RT @DRUDGE_REPORT: CLINTON EMAIL LED TO EXECUTION IN IRAN? https://t.co/4rY1faptL6 +08/06/2016,Politicians,@PaulManafort,Somebody should ask Clinton about this: Obama’s Cash Payment to Iran Was More Than a Ransom — It Broke Criminal Law https://t.co/OQyzWkwJXD +08/06/2016,Politicians,@PaulManafort,".@nypost must-read on Iran ransom deal —> ""Iranian propaganda video claims to show US' $400M cash drop https://t.co/Xr0V7XB7Fa via @nypost""" +08/06/2016,Politicians,@PaulManafort,"“Trump could clean house"": In Trump, some Obama backers see a new champion of hope and change https://t.co/QJk0mL9GPP" +08/05/2016,Politicians,@PaulManafort,RT @ReutersPolitics: BREAKING: Clinton's lead over Trump narrows to less than 3 percentage points in presidential race - Reuters/IPSOS http… +08/05/2016,Politicians,@PaulManafort,Sorry @hillaryclinton - the American public wants to break up the rigged system and elect @realdonaldtrump: https://t.co/OdDBCGUXKu +08/05/2016,Politicians,@PaulManafort,".@hillaryclinton caught lying again: ""AP FACT CHECK: Clinton's new email clarifications fall short https://t.co/2EJy0hSpm9""" +08/05/2016,Politicians,@PaulManafort,"RT @danmericaCNN: HRC on journos: ""We need you to keep holding leaders & candidates accountable."" Tough to do when you don't take many ques…" +08/05/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: Donald J. Trump on Hillary Clinton’s Bad Judgment and Her Being Unfit to Serve as President https://t.co/VNqGgsRknS +08/05/2016,Politicians,@PaulManafort,Clinton repeats debunked claim about FBI email investigation @CNNPolitics https://t.co/kf2UnR7uZl +08/05/2016,Politicians,@PaulManafort,RT @realDonaldTrump: President Obama refuses to answer question about Iran terror funding. I won't dodge questions as your President. http… +08/04/2016,Politicians,@PaulManafort,RT @TeamTrump: Another media bias offender today – CNN's @NewDay aired nearly 200x more coverage on Trump than Iran controversy https://t.… +08/03/2016,Politicians,@PaulManafort,"Fueled by Small Donations, Donald Trump Makes Up Major Financial Ground https://t.co/SMEWTXRCUw" +08/03/2016,Politicians,@PaulManafort,What's $400M between friends? #CrookedHillary https://t.co/yRnBhJmJp3 +08/03/2016,Politicians,@PaulManafort,Joining @FoxNews shortly to talk @realDonaldTrump and the $400M Iran deal that should have @HillaryClinton worried. https://t.co/3L6d86d3E6 +08/03/2016,Politicians,@PaulManafort,The Obama/Clinton admin has failed Americans: “The Obama economy is trouble for Hillary Clinton” https://t.co/JBoCmyHj6v +08/03/2016,Politicians,@PaulManafort,"The Obama/Clinton admin has officially sponsored a hostile regime in Iran, and now claim it was a “benefit” to U.S. Taxpayers. Outrageous." +08/03/2016,Politicians,@PaulManafort,"RT @mike_pence: Really enjoyed our #TownHall this evening- Phoenix, Arizona! Thank you. I look forward to coming back again soon. https://t…" +08/03/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Report raises questions about ‘Clinton Cash’ from Russians during ‘reset' https://t.co/vVcAzY2zcp +08/02/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: The Clinton Story You Didn’t Read Here https://t.co/Bmo2uxly5J +08/02/2016,Politicians,@PaulManafort,RT @FoxNews: .@IvankaTrump: @realDonaldTrump “is the champion of so many people who haven’t previously had a voice.” #Greta https://t.co/ht… +08/02/2016,Politicians,@PaulManafort,Trump Statement In Response To President Obama's Failed Leadership https://t.co/q3Uegdmivu +08/02/2016,Politicians,@PaulManafort,ICYMI ‘Clinton Cash’ author brings to light the Clinton Foundation financial corruption and ties to Russia https://t.co/mnLXB48kw9 +08/02/2016,Politicians,@PaulManafort,"Charles Woods, father of soldier killed in Benghazi, endorses Mr. Trump https://t.co/Dn1aEobMXK" +08/02/2016,Politicians,@PaulManafort,A Trump win is the only way to stop the TPP catastrophe https://t.co/SAx9GvN6HC +08/02/2016,Politicians,@PaulManafort,"National Journal’s Ron Fournier: Clinton Is “Knowingly Misleading” The Public On “Rogue Server” +https://t.co/zgRjGF5X6F" +08/02/2016,Politicians,@PaulManafort,"Crooked: ""Hillary can't stop lying even when she doesn't have to https://t.co/XhT01snWoO""" +08/02/2016,Politicians,@PaulManafort,RT @DailyCaller: Networks Gave GOP Convention 12 Times MORE NEGATIVE COVERAGE Than Dem Convention https://t.co/8Ri1hUdFrl https://t.co/JcQC… +08/02/2016,Politicians,@PaulManafort,Hillary Clinton wrongly claims FBI director Comey called her comments about email 'truthful' https://t.co/qR3CGgLjKy via @PolitiFact +07/31/2016,Politicians,@PaulManafort,RT @TeamTrump: Setting the record straight. Read @realdonaldtrump’s full @thisweekabc transcript here: https://t.co/pLzTF7juuv +07/31/2016,Politicians,@PaulManafort,"RT @JasonMillerinDC: LA Times: Trump leading Clinton 46%-42% nationally: ""USC Dornsife / LA Times Pres. Election Daybreak Poll"" http://96.1…" +07/29/2016,Politicians,@PaulManafort,RATINGS: More People Watched Donald Trump’s Acceptance Speech Than Hillary Clinton’s https://t.co/tITpaM1COe via @dailycaller +07/29/2016,Politicians,@PaulManafort,"Bought and paid for: ""Hedge-fund money: $48.5 million for Clinton, $19,000 for Trump https://t.co/s5bfezo14p via @WSJ""" +07/29/2016,Politicians,@PaulManafort,@hillaryclinton failed to confront radical Islamic terror last night. @realdonaldtrump will identify & defeat enemy. More now @foxandfriends +07/29/2016,Politicians,@PaulManafort,"70% of U.S. believes country going in wrong direction, but @hillaryclinton wants to be Obama's 3rd term! More at 7:14am ET. @foxandfriends" +07/29/2016,Politicians,@PaulManafort,FBI warned Hillary Clinton campaign it had been hacked https://t.co/YcalckCzZ8 - @washtimes +07/29/2016,Politicians,@PaulManafort,Did Bill Clinton Fall Asleep During Hillary’s Speech? https://t.co/tqLet4FWQX +07/29/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Hillary's vision is a borderless world where working people have no power, no jobs, no safety." +07/29/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Hillary will never reform Wall Street. She is owned by Wall Street! +07/29/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Hillary's refusal to mention Radical Islam, as she pushes a 550% increase in refugees, is more proof that she is unfit…" +07/29/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Our way of life is under threat by Radical Islam and Hillary Clinton cannot even bring herself to say the words. +07/29/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: @HillaryClinton will say anything to get elected. https://t.co/u0FBA3mrrm +07/29/2016,Politicians,@PaulManafort,Clinton has been in politics all her life and has put herself 1st. We need an outsider like Mr. Trump to bring fresh solutions to the table +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to talk about the national security risk caused by her home server tonight. +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to mention radical Islamic terrorism tonight. +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to mention Benghazi tonight. +07/27/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Thank you to our amazing law enforcement officers! #MAGA https://t.co/UEZorOQhTw +07/27/2016,Politicians,@PaulManafort,Hillary Just Admitted Her E-mails Are A 'National Security Issue': https://t.co/PCjw2vcabE +07/27/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: .@hillaryclinton Let’s not lose sight why we’re discussing missing emails - remember this? https://t.co/0Ua2elZBLG htt… +07/27/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: If Russia or any other country or person has Hillary Clinton's 33,000 illegally deleted emails, perhaps they should sh…" +07/27/2016,Politicians,@PaulManafort,@realdonaldtrump takes the largest lead of the election in newest @LATimes / @USCDornsife poll: 47-40 https://t.co/bQEhqN7ihw +07/27/2016,Politicians,@PaulManafort,@hillaryclinton: Honest and trustworthy? 67% say NO. +07/27/2016,Politicians,@PaulManafort,"""Change-Maker""? Joining CBS Morning crew right now to talk about how @realdonaldtrump, not @HillaryClinton is the only one to change DC." +07/27/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Just like I have warned from the beginning, Crooked Hillary Clinton will betray you on the TPP. +https://t.co/eoNTWK6I…" +07/27/2016,Politicians,@PaulManafort,"This should surprise nobody! ""Clinton friend McAuliffe says she will flip on TPP trade deal https://t.co/0Rqbs0JlZb""" +07/26/2016,Politicians,@PaulManafort,Pro-Clinton ad spend in gen. elect. now $168M. She's losing. @realDonaldTrump winning b/c people know he'll break up rigged system in DC. +07/26/2016,Politicians,@PaulManafort,Sanders would have had to win every state by an average of 59%-41% to overcome Crooked Hillary's rigged superdelegate game. Never had chance +07/26/2016,Politicians,@PaulManafort,"Clinton Mentions at DNC Last Night: 208. +Trump Mentions at DNC Last Night: 96. +ISIS Mentions at DNC Last Night: 0 (!!!)" +07/26/2016,Politicians,@PaulManafort,Booing Clinton: 6:52. Booing DNC/DWS: 1:37. +07/26/2016,Politicians,@PaulManafort,Some very interesting numbers coming out of the first night of the Democrats' convention in Philly last night... +07/26/2016,Politicians,@PaulManafort,Trump on Convention Speech: 'It Was Very Optimistic' https://t.co/JK08MEERtq via @nbcnews +07/26/2016,Politicians,@PaulManafort,RNC correct that Democrats in Philly didn't say ISIS last night: https://t.co/XGYK1qxg4L via @PolitiFact +07/26/2016,Politicians,@PaulManafort,Kaine backed Wall Street bid for up to 1.8 million cheaper foreign workers https://t.co/SSUoA1ZLKU via @DCExaminer +07/26/2016,Politicians,@PaulManafort,Dems fret over Trump bounce https://t.co/rX5Y96u3pY +07/26/2016,Politicians,@PaulManafort,"Democrat unity night at the Philly Convention Center, and we haven't even gotten to Bernie yet! https://t.co/rtjnOdbi7X" +07/25/2016,Politicians,@PaulManafort,"""The Trump Bump"" With Dem Convention Off to Rocky Start, Trump Enjoys Post-Cleveland Bounce | US News Opinion https://t.co/4muIQNtW3h" +07/25/2016,Politicians,@PaulManafort,"Exclusive: KTNV/Rasmussen poll shows Trump, Heck with post GOP-convention leads in Nevada https://t.co/U2AHr2WUZo via @ktnv" +07/25/2016,Politicians,@PaulManafort,NATE SILVER: Donald Trump would most likely win the election if it were held today https://t.co/QmE0FnfvtL via @bi_politics +07/25/2016,Politicians,@PaulManafort,"RT @JasonMillerinDC: Morning Consult Poll Also Shows Trump Taking Lead Post-Convo: ""Trump Surges Past Clinton With Post-Convention Bump htt…" +07/25/2016,Politicians,@PaulManafort,"RT @larryelder: USC/LA Times Poll: +Trump 45, Clinton 41 +https://t.co/ZKLQcue91k" +07/25/2016,Politicians,@PaulManafort,RT @CNN: Donald Trump leads Hillary Clinton in new CNN/ORC poll https://t.co/cZswxtdgVl https://t.co/srSoTEnB65 +07/24/2016,Politicians,@PaulManafort,"RT @sahilkapur: Trump campaign chair Paul Manafort releases a statement saying Clinton should follow DWS's lead and ""drop out."" https://t.c…" +07/24/2016,Politicians,@PaulManafort,"Dems attack Russia for hacking them but want us to believe that server in HC home was safe from hacking. +HC put national security at risk!" +07/24/2016,Politicians,@PaulManafort,Progressives cheated by Democratic establishment https://t.co/ALyZe44iNG +07/24/2016,Politicians,@PaulManafort,@realdonaldtrump continues to surge in today’s @CBSNews Battleground poll. GOP unified & Trump's message resonating https://t.co/GugVJZQUfe +07/23/2016,Politicians,@PaulManafort,Clinton VP pick Kaine pledged support for TPP hours before announcement. Clinton-Kaine is for bad trade deals. Sanders supporters not happy. +07/23/2016,Politicians,@PaulManafort,Clinton picked a career politician with questionable ethics just like her. Birds of a feather... +07/23/2016,Politicians,@PaulManafort,Crooked Hillary's VP pick helped promote and protect rigged superdelegate system as DNC chair. Sanders supporters will not like that. +07/23/2016,Politicians,@PaulManafort,"Clinton/Kaine -- corrupt, liberal, the rigged system at its worst." +07/23/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Crooked Hillary Clinton has destroyed jobs and manufacturing in Pennsylvania. Against steelworkers and miners. Husband… +07/22/2016,Politicians,@PaulManafort,How energized was the crowd at #RNCinCLE last night? @realdonaldtrump received 24 min. and 29 sec. of applause during his speech! +07/22/2016,Politicians,@PaulManafort,$4M+ raised today - way to go #TrumpTrain!!! +07/22/2016,Politicians,@PaulManafort,"""The time for action has come!"" - DJT" +07/22/2016,Politicians,@PaulManafort,"RT @IngrahamAngle: ""[Hillary] is their puppet and they pull the strings."" --@realDonaldTrump" +07/22/2016,Politicians,@PaulManafort,"""And they have to change right now!"" -DJT" +07/22/2016,Politicians,@PaulManafort,"RT @FoxNews: .@realDonaldTrump: ""Any politician who does not grasp this danger is not fit to lead our country."" #RNCinCLE https://t.co/DPQD…" +07/22/2016,Politicians,@PaulManafort,RT @realDonaldTrump: You can watch 360 video live from the podium! https://t.co/yqcIsBUdAi #RNCinCLE #TrumpIsWithYou #MakeAmericaGreatAgain +07/22/2016,Politicians,@PaulManafort,New rule: Pastor Mark Burns opens every event ever. #MakeAmericaGreatAgain +07/22/2016,Politicians,@PaulManafort,Big energy this evening in Cleveland for @realDonaldTrump. I've never seen a crowd this excited to defeat Crooked Hillary! #RNCinCLE +07/21/2016,Politicians,@PaulManafort,"@realDonaldTrump & @mike_pence form an amazing ticket. The energy, the determination, the vision, the courage. Honored to be on their team." +07/21/2016,Politicians,@PaulManafort,"""If you want a President who will cut taxes and grow our economy...and upend the status quo in Washington, DC...""" +07/21/2016,Politicians,@PaulManafort,@mike_pence is going to make an amazing Vice President. He is ready for this moment. #MakeAmericaGreatAgain +07/20/2016,Politicians,@PaulManafort,Lots of excitement for @realdonaldtrump here at #RNC2016 especially on set with my good friends from @cnn - tune in now! +07/20/2016,Politicians,@PaulManafort,Let's do one more! Tune in to CBS as I join the second hour to talk about tonight's convention theme and what to expect! +07/20/2016,Politicians,@PaulManafort,Coming up at 7:30am: joining @foxandfriends to talk about great speeches we heard last night and what we'll hear from @mike_pence tonight. +07/20/2016,Politicians,@PaulManafort,RT @USATODAY: Ready for Day 3 of the GOP convention? Here's what you need to know. https://t.co/izDoVZChFt +07/20/2016,Politicians,@PaulManafort,"Joining @GMA in just a few minutes to discuss our Republican nominee for President, @realdonaldtrump - tune in to ABC now!" +07/19/2016,Politicians,@PaulManafort,Cool shot: https://t.co/InARuFsz3D +07/19/2016,Politicians,@PaulManafort,RT @FoxNews: BREAKING NEWS: @realDonaldTrump has been formally nominated as the Republican presidential nominee. #RNCinCLE https://t.co/DzO… +07/19/2016,Politicians,@PaulManafort,"And with that @realdonaldtrump is officially the nominee! Thank u for all of your support. The real battle is ahead, we must defeat Hillary" +07/19/2016,Politicians,@PaulManafort,RT @realDonaldTrump: The ROLL CALL is beginning at the Republican National Convention. Very exciting! +07/19/2016,Politicians,@PaulManafort,Tonight’s #RNCinCLE speakers will talk about how @realdonaldtrump will bring back American jobs and leadership. #MakeAmericaWorkAgain +07/19/2016,Politicians,@PaulManafort,@mike_pence live on Fox and CNN right now! @KatrinaPierson live on MSNBC. Good coverage for the @realdonaldtrump team right now! +07/19/2016,Politicians,@PaulManafort,Up next with CBS This Morning. Tune in now! +07/19/2016,Politicians,@PaulManafort,"RT @ABC: Melania Trump: ""If you want someone to fight for you...I can assure you he's the guy. He will never, ever give up."" https://t.co/f…" +07/19/2016,Politicians,@PaulManafort,"RT @USATODAY: Melania Trump: ""My husband has been concerned about our country for as long as I have known him."" https://t.co/QxkKniP5Rk" +07/19/2016,Politicians,@PaulManafort,"RT @FoxNews: Mayor Giuliani: ""Libya is in chaos. [@HillaryClinton] is accountable for this & much more."" #RNCinCLE https://t.co/XJ12JepMIt" +07/18/2016,Politicians,@PaulManafort,Next up: MTP Daily with Chuck Todd - tune in now! +07/18/2016,Politicians,@PaulManafort,Joining Wolf Blitzer right now to discuss #RNCinCLE +07/18/2016,Politicians,@PaulManafort,#RNCinCLE is underway! Looking forward to unifying and invigorating our party this week. @realDonaldTrump and @mike_pence will do just that. +07/18/2016,Politicians,@PaulManafort,Catch @realDonaldTrump on Fox and Friends right now then I'll be up on Today Show. Unified GOP convention for Trump and Pence here in CLE. +07/18/2016,Politicians,@PaulManafort,RT @DanScavino: .@realDonaldTrump joining @foxandfriends in a few minutes- tune in! #GOPConvention #MAGA #TrumpPence16 https://t.co/Czl25Pa… +07/18/2016,Politicians,@PaulManafort,Up next on Morning Joe as we kick off the GOP Convention in Cleveland! +07/17/2016,Politicians,@PaulManafort,Heading over to CBS now to talk @realdonaldtrump with @FaceTheNation - show starts at 10:30am ET. +07/17/2016,Politicians,@PaulManafort,Joining @FoxNewsSunday at the top of the hour to talk about @realDonaldTrump and @mike_pence #MakeAmericaGreatAgain +07/16/2016,Politicians,@PaulManafort,"RT @FoxNews: .@GovPenceIN: ""@realDonaldTrump is offering a vision for America...that would return American strength at home & abroad."" #Han…" +07/15/2016,Politicians,@PaulManafort,Up next on @CNN to talk about @realDonaldTrump and the GOP Convention! +07/15/2016,Politicians,@PaulManafort,Will be on @foxandfriends in a few minutes to talk about @realDonaldTrump and next week's GOP convention. +07/15/2016,Politicians,@PaulManafort,Anti-Trump people get crushed at Rules Committee. It was never in doubt: Convention will honor will of people & nominate @realdonaldtrump. +07/14/2016,Politicians,@PaulManafort,"Re: @realDonaldTrump VP selection, a decision will be made in the near future and the announcement will be tomorrow at 11am in New York." +07/13/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: The Republican platform is most +pro-Israel of all time!" +07/13/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: Kendal Unruh’s claims that she has enough votes for a minority report are not true. The bind/unbind issue is dead. htt… +07/13/2016,Politicians,@PaulManafort,"GOP Platform will now strengthen resolve to build a border wall, more accurately reflecting Mr. Trump’s message: https://t.co/cQd0izUPY9" +07/13/2016,Politicians,@PaulManafort,GOP Platform improvement: Kate’s Law = longer prison sentences for deported illegal immigrants who re-enter US & engage in criminal activity +07/13/2016,Politicians,@PaulManafort,"Very good news via @QuinnipiacPoll this morning. @realDonaldTrump on the move in FL, PA and OH: https://t.co/oRpit4tXJC" +07/13/2016,Politicians,@PaulManafort,GOP Delegates hard at work - Platform will be much improved re: stopping illegal immigration and bad trade deals https://t.co/ZQUoMBOXKk +07/12/2016,Politicians,@PaulManafort,"Per @NBCNews poll, @HillaryClinton lead shrinks as people realize she puts herself above them. @realDonaldTrump will put #AmericaFirst" +07/12/2016,Politicians,@PaulManafort,"@HillaryClinton is pro-TPP/pro-NAFTA, pro-Wall St, won nomination in rigged primary system. Sanders may abandon principles, his voters won't" +07/12/2016,Politicians,@PaulManafort,"Thank you again for having me on the show, @foxandfriends - enjoyed talking about the leadership we're seeing from @realDonaldTrump." +07/12/2016,Politicians,@PaulManafort,Joining the @foxandfriends crew at 8:30am ET to talk about the Republican Convention and @realDonaldTrump - tune in now! +07/08/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: MAKE AMERICA SAFE AGAIN! +https://t.co/m0AJWlV8nm https://t.co/P0GleHEmJy" +07/01/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: #ThrowbackThursday #Trump2016 +https://t.co/gFtspBViXe" +06/30/2016,Politicians,@PaulManafort,AG Lynch secret meeting with Bill Clinton while Hillary under investigation. It’s all about her. +06/26/2016,Politicians,@PaulManafort,I prefer NBC/WSJ poll +06/29/2018,Politicians,@PressSec,"Tonight @POTUS met w/ Senators Grassley, Collins, Murkowski, Manchin, Donnelly, and Heitkamp to discuss the Supreme… https://t.co/pMVXt7edvI" +06/28/2018,Politicians,@PressSec,"Strongly condemn the evil act of senseless violence in Annapolis, MD. A violent attack on innocent journalists doin… https://t.co/yYsg44MxfT" +06/27/2018,Politicians,@PressSec,RT @realDonaldTrump: Statement on Justice Anthony Kennedy. #SCOTUS https://t.co/8aWJ6fWemA +06/27/2018,Politicians,@PressSec,"While in Moscow today, Ambassador Bolton is meeting with President Vladimir Putin and other senior Russian official… https://t.co/cwa71WyiS0" +06/23/2018,Politicians,@PressSec,"Last night I was told by the owner of Red Hen in Lexington, VA to leave because I work for @POTUS and I politely le… https://t.co/C5554K1LVJ" +06/22/2018,Politicians,@PressSec,It’s shameful that dems and the media exploited this photo of a little girl to push their agenda. She was not separ… https://t.co/gh2FTAC9VC +06/22/2018,Politicians,@PressSec,RT @realDonaldTrump: Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/22/2018,Politicians,@PressSec,RT @FLOTUS: Today's visit to #Texas to spend time with children & thank the many hardworking individuals helping to care for them was very… +06/20/2018,Politicians,@PressSec,RT @realDonaldTrump: Homeland Security @SecNielsen did a fabulous job yesterday at the press conference explaining security at the border a… +06/15/2018,Politicians,@PressSec,RT @SteveScalise: It's more than a game. https://t.co/Obltwoeu2U +06/15/2018,Politicians,@PressSec,Incredible. https://t.co/jQJ9biUUIQ +06/15/2018,Politicians,@PressSec,"RT @realDonaldTrump: Happy 243rd Birthday to the @USArmy! Thank you for your bravery, sacrifices, and dedication to the U.S.A. We love you!…" +06/15/2018,Politicians,@PressSec,"RT @SecPompeo: Final day on the road in support of @POTUS's #SingaporeSummit. Traveled to #Seoul and #Beijing, met 2 presidents, held 4 bil…" +06/14/2018,Politicians,@PressSec,"RT @SecPompeo: Trilateral cooperation among US, #ROK & #Japan has been crucial to the effectiveness of our efforts regarding #DPRK We commi…" +06/14/2018,Politicians,@PressSec,RT @SteveScalise: Tomorrow. https://t.co/RDx7AbXLkp +06/14/2018,Politicians,@PressSec,Does @CBSNews know something I don’t about my plans and my future? I was at my daughter’s year-end Kindergarten eve… https://t.co/gwrJzTQCsH +06/13/2018,Politicians,@PressSec,Touchdown in DC after an incredible and historic trip. Circled the globe - 24k miles in 5 days with 42hrs in the ai… https://t.co/CQhjGbg5On +06/13/2018,Politicians,@PressSec,"Praying for my friend @larry_kudlow. Larry is smart, funny, and a true statesman. He is tough and we know he will b… https://t.co/Jm9qEpPoug" +06/13/2018,Politicians,@PressSec,Thankful to the men and women stationed at Hickam in HI. Almost home...but not really (9 more hours to go!) https://t.co/u1XTvp36u9 +06/12/2018,Politicians,@PressSec,"“Anyone can make war, but only the most courageous can make peace.” @POTUS in Singapore at Press conference followi… https://t.co/RBieGUfpfB" +06/12/2018,Politicians,@PressSec,RT @realDonaldTrump: https://t.co/tJG3KIn2q0 +06/12/2018,Politicians,@PressSec,Leader Kim departs Hotel Capella after signing joint statement with @POTUS. https://t.co/W6LQ5ZX8d3 +06/12/2018,Politicians,@PressSec,RT @Scavino45: HISTORY. #SingaporeSummit https://t.co/XF3GNzzBui +06/12/2018,Politicians,@PressSec,.@POTUS and US Delegation start expanded bilateral meeting with Leader Kim Jong Un and North Korean Delegation.… https://t.co/Zz5mznMcqM +06/12/2018,Politicians,@PressSec,.@POTUS and Leader Kim Jong Un on balcony after finishing the one on one. #SingaporeSummit https://t.co/kRiDpRiEq6 +06/12/2018,Politicians,@PressSec,RT @SecPompeo: We’re ready for today. #singaporesummit @StateDept https://t.co/65M9nKYiQ1 +06/12/2018,Politicians,@PressSec,"RT @Scavino45: #SingaporeSummit +(📸@AP @EvanVucci) https://t.co/JK9qfsd2xc" +06/12/2018,Politicians,@PressSec,US Delegation greets North Korean Delegation and watches @POTUS and Leader Kim Jong Un meet for first time. #BTS… https://t.co/qq7QqCCFX6 +06/12/2018,Politicians,@PressSec,".@POTUS arrives at Capella hotel, site of summit with North Korean Leader Kim Jong Un. https://t.co/8arwWYnGtr" +06/11/2018,Politicians,@PressSec,Great day with our very gracious hosts. Thank you Prime Minister Lee Hsien Loong. https://t.co/BW72whSaE3 +06/11/2018,Politicians,@PressSec,"RT @SecPompeo: Early pre-brief with my @StateDept team. Amb Kim meets with #DPRK today. We remain committed to the complete, verifiable, ir…" +06/10/2018,Politicians,@PressSec,.@POTUS arrives in Singapore for meeting with North Korean Leader Kim Jong Un. https://t.co/qj2S0mtEJ9 +06/10/2018,Politicians,@PressSec,"RT @Scavino45: 🚨Happening Now: +Behind the scenes on Air Force One as Team Trump speaks with our teams on the ground in Singapore, in advanc…" +06/09/2018,Politicians,@PressSec,"Dear @newsbyhughes @CNN, +Congratulations! Once again you are wrong. There is no “some kind of group signing” taking… https://t.co/eGgWL3Dqpx" +06/09/2018,Politicians,@PressSec,".@POTUS meets with world leaders and negotiates on Trade, Iran, and National Security. #G72018 #BTS https://t.co/OobyyDswNP" +06/09/2018,Politicians,@PressSec,RT @g7: Day 1 of #G7Charlevoix in 60 seconds. https://t.co/U6jA8ylIgm +06/09/2018,Politicians,@PressSec,Looking forward to joining @POTUS @realDonaldTrump at this evenings @G7 Cultural event at the @G7 Summit in Canada… https://t.co/DTxQ3pB4vF +06/09/2018,Politicians,@PressSec,RT @Scavino45: Behind the scenes at the #G7Summit as President @realDonaldTrump and President @EmmanuelMacron conclude their #G7Summit bila… +06/09/2018,Politicians,@PressSec,"RT @Scavino45: .@POTUS @realDonaldTrump in The Situation Room with @VP Pence and @StateDept @SecPompeo earlier today, discussing the upcomi…" +06/09/2018,Politicians,@PressSec,Great moment between @JustinTrudeau and @POTUS when he gave him picture of the President’s grandfather’s hotel in C… https://t.co/mwZbLf2lXm +06/09/2018,Politicians,@PressSec,RT @Scavino45: Canadian Prime Minister Justin Trudeau and his wife Mrs. Sophie Grégoire Trudeau welcome President @realDonaldTrump at the F… +06/09/2018,Politicians,@PressSec,"RT @Scavino45: In between Session I & II at the #G7Summit in Charlevoix, Canada. https://t.co/8gPEYJQuSD" +06/09/2018,Politicians,@PressSec,"RT @Scavino45: Working Session II at the #G7Summit in Charlevoix, Canada earlier this afternoon... https://t.co/TEKjfqM2ua" +06/08/2018,Politicians,@PressSec,Happy birthday to our great @VP! Thank you for all you do for our country! +06/07/2018,Politicians,@PressSec,"RT @FoxNews: During a briefing on Tuesday, @WhiteHouse @PressSec Sarah Sanders stated that ""the president has worked increasingly hard"" to…" +06/07/2018,Politicians,@PressSec,RT @VP: Honored to join @POTUS today as he signed the #VAMissionAct into law to expand healthcare access for veterans. This administration… +06/07/2018,Politicians,@PressSec,Great work today by all the staff and cabinet who made this happen! #500Days https://t.co/psSpIGSgKj +06/05/2018,Politicians,@PressSec,UPDATE: The venue for the Singapore summit between @POTUS and Leader Kim Jong Un will be the Capella Hotel on Sento… https://t.co/dZEQ0SmnPv +06/05/2018,Politicians,@PressSec,"RT @FoxNews: .@PressSec: ""We have the best economy since World War II."" #Hannity https://t.co/o37qPPuLQr" +06/03/2018,Politicians,@PressSec,"We’ve come a long way since Paul Krugman, writing in the New York Times after the election, said the Trump presiden… https://t.co/25UjQ0e6lP" +06/02/2018,Politicians,@PressSec,"RT @FoxBusiness: .@POTUS: ""We have reached yet one more historic milestone with 3.8% unemployment just announced."" https://t.co/Hy9ZPw4voj" +06/02/2018,Politicians,@PressSec,"RT @FoxBusiness: .@cvpayne on #JobsReport: ""I think it's a great number... We're almost near full employment by almost any measure."" https:…" +06/02/2018,Politicians,@PressSec,".@POTUS is presented with a letter from North Korean Leader Kim Jong Un, Friday, June 1, 2018, by North Korean envo… https://t.co/2jy1XRoCj9" +06/02/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today, it was my great honor to be with the brave men and women of the United States Coast Guard! https://t.co/RAyPbOG…" +06/01/2018,Politicians,@PressSec,This week @US_FDA is stopping drug companies from gaming the system to keep their prices high and block competition… https://t.co/oFrLPRDaMC +05/31/2018,Politicians,@PressSec,If only you’d had on tennis shoes! https://t.co/2DosXcGB5t +05/31/2018,Politicians,@PressSec,"RT @EricTrump: This is amazing. As someone who has dedicated so much of my life to fighting pediatric cancer, I’ve seen the pain an entire…" +05/31/2018,Politicians,@PressSec,RT @Scavino45: President Trump signs #RightToTry into law. https://t.co/6UcmJznEqc https://t.co/UmpmJjjKQB +05/29/2018,Politicians,@PressSec,"Since @POTUS May 24 letter to NK leader Kim Jong Un, the North Koreans have been engaging. The U.S. continues to ac… https://t.co/immQA6Pnsu" +05/28/2018,Politicians,@PressSec,My son had the honor of meeting a few real superheroes today and now knows what he wants to be when he grows up. Th… https://t.co/5YFk51U3m0 +05/28/2018,Politicians,@PressSec,RT @DeptofDefense: We pay tribute to the fallen this #MemorialDay weekend. We thank them for making the ultimate sacrifice for our freedom:… +05/28/2018,Politicians,@PressSec,https://t.co/dQj79A7R2n +05/26/2018,Politicians,@PressSec,I was one of the lucky ones to see him yesterday morning! He assured me they hadn’t let him help cook. Such a great… https://t.co/hqbbTZqiPA +05/25/2018,Politicians,@PressSec,"RT @realDonaldTrump: On behalf of the American People, CONGRATULATIONS! We love you! https://t.co/YRlj0vRXwk" +05/25/2018,Politicians,@PressSec,"“It ain't how hard you hit; it's about how hard you can get hit, and keep moving forward,” -Rocky Balboa +Thank you… https://t.co/a0zDw9L4Ro" +05/24/2018,Politicians,@PressSec,Letter from @POTUS to Kim Jong Un on Singapore Summit. https://t.co/4u5LZL6Lc1 +05/24/2018,Politicians,@PressSec,"RT @realDonaldTrump: Great to be in New York for the day. Heading back to the @WhiteHouse now, lots of work to be done! https://t.co/w3LUiQ…" +05/23/2018,Politicians,@PressSec,View from Marine One (@USMC) during the flyover of @USNavy ships and @USCG cutters for Fleet Week 2018 in NYC.… https://t.co/4H5I80QgBM +05/23/2018,Politicians,@PressSec,As the granddaughter of a firefighter I’m so proud to work for a president who supports the men and women of fire d… https://t.co/2TSrgr8kcV +05/23/2018,Politicians,@PressSec,"RT @realDonaldTrump: For the first time since Roe v. Wade, America has a Pro-Life President, a Pro-Life Vice President, a Pro-Life House of…" +05/23/2018,Politicians,@PressSec,"RT @dougmillsnyt: .@realDonaldTrump kisses 4-year-old Katharine Alexander, who was born with an opioid dependency and was adopted by Lisa &…" +05/22/2018,Politicians,@PressSec,The Iran deal was one of the worst deals in history and didn’t guarantee the safety of Americans. That’s why @POTUS… https://t.co/mPVUwhTEqn +05/21/2018,Politicians,@PressSec,"Historic day for our country: swearing-in ceremony for Gina Haspel, the first woman ever to serve as CIA director.… https://t.co/TCscw2HPYu" +05/18/2018,Politicians,@PressSec,"RT @steveholland1: Pres Trump is donating the first quarter of his 2018 salary to the Veterans Affairs Dept, per @PressSec" +05/18/2018,Politicians,@PressSec,"RT @FoxNews: .@PressSec: ""If the media and liberals want to defend MS-13, they're more than welcome to. Frankly, I don't think the term @PO…" +05/18/2018,Politicians,@PressSec,RT @Scavino45: “Trump donates first quarter salary to VA” https://t.co/qZMmRqjp1C +05/17/2018,Politicians,@PressSec,RT @WhiteHouse: #Laurel? #Yanny? Or... https://t.co/5hth07SdGY +05/16/2018,Politicians,@PressSec,RT @realDonaldTrump: Gina Haspel is one step closer to leading our brave men and women at the CIA. She is exceptionally qualified and the S… +05/16/2018,Politicians,@PressSec,"RT @dougmillsnyt: .@realDonaldTrump kisses the hand of Adrianna Valoy, mother of falling NYPD Detective Milsotis Familia, during his remark…" +05/15/2018,Politicians,@PressSec,Beautiful day at our nation’s Capitol to celebrate some of America’s greatest heroes. Thank you to the great men an… https://t.co/ov0OdpEPcC +05/15/2018,Politicians,@PressSec,Prayers for our amazing First Lady! https://t.co/8kqOD8C2Uq +05/14/2018,Politicians,@PressSec,Proud my parents are at the Embassy opening today. Great moment for @POTUS and all of history. https://t.co/dbskbdfLGA +05/14/2018,Politicians,@PressSec,"RT @FoxNews: Jared Kushner: “I am so proud to be here today in Jerusalem, the eternal heart of the Jewish people and I am especially honore…" +05/14/2018,Politicians,@PressSec,"RT @FoxNews: Jared Kushner: “When President Trump makes a promise, he keeps it.” https://t.co/VoMTeuYXHK" +05/14/2018,Politicians,@PressSec,RT @WhiteHouse: Watch LIVE the dedication of @usembassyjlm: https://t.co/KVhxC50Ywe #USEmbassyJerusalem +05/14/2018,Politicians,@PressSec,"RT @CNN: Standing next to Ivanka Trump, Treasury Secretary Steve Mnuchin reveals the seal of the US embassy, making the embassy's move from…" +05/14/2018,Politicians,@PressSec,"RT @FoxNewsSunday: In his first interview since returning from North Korea, @SecPompeo tells Chris Kim Jong-un ""does follow the Western pre…" +05/14/2018,Politicians,@PressSec,"RT @IvankaTrump: I am honored to join the delegation representing @POTUS, his Admin & the American people at this momentous ceremony commem…" +05/14/2018,Politicians,@PressSec,RT @SarahHuckabee: Perfect end to a great Mother’s Day. Love my family. #crabhunt #welethimgo https://t.co/JfYQS015Br +05/13/2018,Politicians,@PressSec,Happy Mother’s Day! https://t.co/q2K1ozFSM3 +05/12/2018,Politicians,@PressSec,"RT @SarahHuckabee: So fun meeting @RobLowe. Incredibly talented, funny, and very nice guy. Thanks for entertaining us all these years! http…" +05/10/2018,Politicians,@PressSec,RT @PressSec: A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@PressSec,RT @PressSec: .@SecPompeo briefs @POTUS on his trip to North Korea just before the returnees land at JBA. https://t.co/vJQVjqokVl +05/10/2018,Politicians,@PressSec,RT @PressSec: .@POTUS lands at JBA to welcome home the three returnees - incredible night for America. https://t.co/SH2m9LoQ43 +05/10/2018,Politicians,@PressSec,A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@PressSec,.@SecPompeo briefs @POTUS on his trip to North Korea just before the returnees land at JBA. https://t.co/vJQVjqokVl +05/10/2018,Politicians,@PressSec,.@POTUS lands at JBA to welcome home the three returnees - incredible night for America. https://t.co/SH2m9LoQ43 +05/10/2018,Politicians,@PressSec,RT @WhiteHouse: Gina Haspel has developed outstanding intelligence expertise and understanding during her distinguished career at the CIA.… +05/10/2018,Politicians,@PressSec,RT @IvankaTrump: Today @POTUS signed an EO to promote military spouse hiring across ALL federal agencies. To our #MilitarySpouses: Your cou… +05/09/2018,Politicians,@PressSec,A positive gesture brings incredible news for three American families. https://t.co/t6uJU1MoqF +05/08/2018,Politicians,@PressSec,America needs a strong leader at the CIA! Gina Haspel has spent 33 years protecting the homeland. She has the exper… https://t.co/T5bMXN6k8e +05/08/2018,Politicians,@PressSec,"RT @WhiteHouse: ""So today I’m very excited to announce Be Best, an awareness campaign dedicated to the most valuable and fragile among us,…" +05/08/2018,Politicians,@PressSec,RT @virginiafoxx: Joined @FLOTUS at the White House today for the launch of the #BeBest initiative. I couldn't agree more that in our rapid… +05/07/2018,Politicians,@PressSec,"Opioids, social media use and mental and physical well-being are all major issues our children face. Go visit… https://t.co/VvAy0bDH4j" +05/07/2018,Politicians,@PressSec,"ICYMI: @POTUS appointed members to his Council on on Sports, Fitness, and Nutrition, which aims to encourage youth… https://t.co/A9O8Vqsi8L" +05/07/2018,Politicians,@PressSec,Proud to be with Ambassador @RichardGrenell tonight in NYC as he departs for Germany to represent our great country… https://t.co/HI5d0eO8Ee +05/05/2018,Politicians,@PressSec,There is no one more qualified to be the first woman to lead the CIA than 30+ year CIA veteran Gina Haspel. Any Dem… https://t.co/utXxKzk0Bv +05/04/2018,Politicians,@PressSec,"RT @SecPompeo: We have an unprecedented opportunity to change the course of history on the Korean Peninsula, but the outcome is unknown. Ho…" +05/04/2018,Politicians,@PressSec,"The @realDonaldTrump effect: Black and Hispanic unemployment again hits record lows +https://t.co/3HdxUnBW1x" +05/03/2018,Politicians,@PressSec,.@SBALinda is doing big things for small business! She is working with @POTUS to ensure small businesses can compet… https://t.co/pYYHfsaohO +05/03/2018,Politicians,@PressSec,"Today, @POTUS will sign an EO creating a new faith-based initiative, and will continue the @WhiteHouse tradition th… https://t.co/KH3CXwakm0" +05/03/2018,Politicians,@PressSec,RT @realDonaldTrump: Congratulations @SecPompeo! https://t.co/ECrMGkXMQF +05/02/2018,Politicians,@PressSec,.@POTUS speaks @StateDept and welcomes @SecPompeo as the new Secretary of State to applause and cheers. https://t.co/VVcldsQTum +05/02/2018,Politicians,@PressSec,Love @SBALinda and all she does for small businesses across our great country. #SmallBusinessWeek https://t.co/jmwotayDwv +05/02/2018,Politicians,@PressSec,RT @Marcshort45: Rear Admiral Jackson and his family have devoted their lives in service to our country. Sen. Tester should be ashamed of p… +05/02/2018,Politicians,@PressSec,RT @Scavino45: https://t.co/abH0KoErIA +05/01/2018,Politicians,@PressSec,Welcome to Twitter @SecPompeo! You are going to be an amazing Secretary of State for @POTUS and we are all excited… https://t.co/Bluej1qRLS +04/27/2018,Politicians,@PressSec,"RT @realDonaldTrump: KOREAN WAR TO END! The United States, and all of its GREAT people, should be very proud of what is now taking place in…" +04/27/2018,Politicians,@PressSec,"I pity the fool who doesn’t love +@MrT! #TeamUSAAwards https://t.co/77hb9YPyXE" +04/26/2018,Politicians,@PressSec,Congratulations to @RichardGrenell for FINALLY being confirmed as AMB to Germany despite HISTORIC obstruction from… https://t.co/NEq9b2IeJB +04/26/2018,Politicians,@PressSec,Had a great time showing the kids around and answering questions from reporters-in-training! #TakeYourChildToWorkDay https://t.co/YXSTJ39IHU +04/26/2018,Politicians,@PressSec,Great to have Secretary Pompeo confirmed. He will do an excellent job helping @POTUS lead our efforts to denucleari… https://t.co/AsO0AcpK2p +04/26/2018,Politicians,@PressSec,So proud to work with Secretary Pompeo! He will be great. https://t.co/vuv8WsDuGl +04/26/2018,Politicians,@PressSec,Mike Pompeo watches as he’s confirmed Secretary of State https://t.co/qDSehtPskc +04/26/2018,Politicians,@PressSec,"RT @dougmillsnyt: On ""take your child to work day"", @PressSec with the help of her two children, takes questions in the White House Press R…" +04/25/2018,Politicians,@PressSec,So happy for my friend Michael. Truly one of a kind! https://t.co/a6i0fx2zNE +04/25/2018,Politicians,@PressSec,Unforgettable evening at the White House for State Dinner honoring French President @EmmanuelMacron. @FLOTUS did an… https://t.co/FJSHSbayf3 +04/24/2018,Politicians,@PressSec,RT @realDonaldTrump: “President Trump Calls the U.S.-France Relationship ‘Unbreakable.’ History Shows He’s Right.” https://t.co/L0gT4rvaJO +04/24/2018,Politicians,@PressSec,RT @WhiteHouse: .@FLOTUS has selected the dinner setting and décor for the Trump Administration's first State Visit to pay homage to the lo… +04/21/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today, my thoughts and prayers are with the entire Bush family. In memory of First Lady Barbara Bush, there is a remem…" +04/19/2018,Politicians,@PressSec,"John Kerry: 94-3 +Hillary Clinton: 94-2 +Condi Rice: 85-13 +Colin Powell: Unanimous Voice Vote +What does history tell… https://t.co/1JY7JQEamm" +04/19/2018,Politicians,@PressSec,RT @NASKeyWest: #CommanderInChief @POTUS arrives at #BocaChicaField. First visit by a sitting President since Kennedy in 1962. https://t.co… +04/19/2018,Politicians,@PressSec,Thank you @SenJohnBarrasso! https://t.co/6Mv04rB8Jl +04/19/2018,Politicians,@PressSec,Flag at Mar-a-lago at half staff in honor of Barbara Bush. She was a great American and will be dearly missed. Her… https://t.co/ZgpCI5fGgl +04/19/2018,Politicians,@PressSec,"RT @Scavino45: 📲 Behind-the-scenes after today’s joint press conference hosted by President @realDonaldTrump with @JPN_PMO @AbeShinzo! + +🇺🇸…" +04/18/2018,Politicians,@PressSec,Nothing could better underscore the importance of getting America's top diplomat in place for such a time as this.… https://t.co/c4fLOPH0y4 +04/17/2018,Politicians,@PressSec,"On this #TaxDay the Congressional Democrats had a rally to TAKE AWAY the bonuses, wage hikes and other benefits the… https://t.co/mcwLMYKpWC" +04/17/2018,Politicians,@PressSec,.@POTUS meets with Prime Minister of Japan @AbeShinzo today at Mar-a-lago to discuss N. Korea and trade. https://t.co/PeyWKPUyjG +04/17/2018,Politicians,@PressSec,"RT @WhiteHouse: Out with the old, in with the new: tax cuts and reforms that look out for hardworking taxpayers ⬇️ +https://t.co/eEHFWkG8xm" +04/17/2018,Politicians,@PressSec,Flags from all 50 states line the entrance to Mar-a-lago to welcome Prime Minister of Japan @AbeShinzo. https://t.co/V7AD5TJKdt +04/16/2018,Politicians,@PressSec,"Great scoreboard at “USA Open for Business” event in Hialeah, FL. @POTUS is winning for America! https://t.co/dk6Lwj8jv6" +04/15/2018,Politicians,@PressSec,"RT @ABC: Press Sec. Sanders says coalition forces ""100% met their objectives"" in Syria. + +""They also sent a strong message to Syria, to Russ…" +04/15/2018,Politicians,@PressSec,"As I said, the President put our adversaries on notice that he enforces red lines with the strike on Syria Friday n… https://t.co/6JtN3YoIcB" +04/15/2018,Politicians,@PressSec,Last night the President put our adversaries on notice: when he draws a red line he enforces it. (Inside the Situat… https://t.co/PGQ8GzIvyp +04/14/2018,Politicians,@PressSec,"RT @ChiefPentSpox: Yesterday, United States Forces - at the direction of @POTUS - launched precision strikes against #Assad regime targets…" +04/14/2018,Politicians,@PressSec,"RT @ChiefPentSpox: These strikes were a justified, legitimate and proportionate response to the Syrian government's continued use of chemic…" +04/14/2018,Politicians,@PressSec,RT @ChiefPentSpox: We are extremely proud of the U.S. #servicemembers who carried out this operation last night. https://t.co/XThDJEbFB6 +04/14/2018,Politicians,@PressSec,"RT @DeptofDefense: SecDef #Mattis and Chairman of the @TheJointStaff, #GenDunford, brief reporters on the current U.S. air strikes on #Syri…" +04/14/2018,Politicians,@PressSec,"RT @VP: Tonight, at the order of @POTUS, U.S. Armed Forces, with Britain and France, launched strikes against chemical weapon sites in Syri…" +04/14/2018,Politicians,@PressSec,RT @realDonaldTrump: https://t.co/6VLQYAlcto +04/13/2018,Politicians,@PressSec,"RT @SenPatRoberts: I say to those who serve our country here in Washington and at diplomatic posts around the world, Mike Pompeo will work…" +04/13/2018,Politicians,@PressSec,"RT @SenatorRounds: I thank Mike Pompeo for his willingness to continue to serve our country, this time as head of @StateDept. Today’s confi…" +04/13/2018,Politicians,@PressSec,One of the few areas of true bipartisan consensus in Washington is Comey has no credibility-> https://t.co/HblT75ESAY via @YouTube +04/11/2018,Politicians,@PressSec,"As a proud Arkansan, I’m not an Alabama football fan, but I was a big fan of this prayer for @POTUS. #SEC Always… https://t.co/dtp1ITXw8L" +04/08/2018,Politicians,@PressSec,RT @realDonaldTrump: ....to pay. Open area immediately for medical help and verification. Another humanitarian disaster for no reason whats… +04/08/2018,Politicians,@PressSec,"RT @realDonaldTrump: Many dead, including women and children, in mindless CHEMICAL attack in Syria. Area of atrocity is in lockdown and enc…" +04/07/2018,Politicians,@PressSec,Indisputable that the Trump admin has been tougher on Russia than the Obama admin but it just doesn’t fit the fake… https://t.co/jFU9dt7aRm +04/07/2018,Politicians,@PressSec,The President will never stop fighting to do what Democrats won’t: secure our border and keep Americans safe https://t.co/VZoDq8JpLt +04/07/2018,Politicians,@PressSec,The President has ordered an end to “catch and release” https://t.co/rHmFfNFLHn +04/07/2018,Politicians,@PressSec,RT @realDonaldTrump: “BET founder: Trump's economy is bringing black workers back into the labor force” https://t.co/TtMDfi4bv0 +04/07/2018,Politicians,@PressSec,"RT @ChiefNGB: Always Ready, Always There! Moving up to 500 #NationalGuard troops immediately on the SW border security mission. Vehicles, e…" +04/06/2018,Politicians,@PressSec,.@SecretarySonny has traveled to 35 states with a clear message: President Trump and this Administration are the vo… https://t.co/Qx38XInjED +04/04/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today we honor Dr. Martin Luther King, Jr. on the 50th anniversary of his assassination. Earlier this year I spoke abo…" +04/04/2018,Politicians,@PressSec,"RT @Scavino45: Beautiful #TeamTrump send off for #HopeHicks and #JoshRaffel this evening in Washington, DC! On behalf of everyone at the @W…" +04/02/2018,Politicians,@PressSec,"Today we lost Connie Lawn, a remarkable woman who covered the White House for over 50 years. She will always be rem… https://t.co/6CHadduYgK" +04/01/2018,Politicians,@PressSec,RT @SarahHuckabee: Happy Easter! https://t.co/1dPUWkO2d6 +03/31/2018,Politicians,@PressSec,"RT @SarahHuckabee: ""For God so loved the world that he gave his only Son, that whoever believes in Him shall not perish but have eternal li…" +03/30/2018,Politicians,@PressSec,"Mike Pompeo (State), Gina Haspel (CIA), and Admiral Ronny Jackson (VA) have served our country with honor and disti… https://t.co/2nJh58MWeU" +03/30/2018,Politicians,@PressSec,"RT @IvankaTrump: Thanks to #TaxCuts, @McDonalds has committed to increase its investment in #WorkforceDevelopment. The Archways to Opportun…" +03/29/2018,Politicians,@PressSec,"Can’t argue with the results. President Trump’s policies are working-> +https://t.co/yTHxSBuWn8" +03/27/2018,Politicians,@PressSec,"Under the leadership of @DrMcCance_Katz, the Substance Abuse and Mental Health Services Admin. is working to combat… https://t.co/oRm8q811gA" +03/27/2018,Politicians,@PressSec,Dozens of EU and partner countries + NATO have joined the UK and the U.S. to expel Russian intel officers hiding un… https://t.co/2tAYLq73VP +03/27/2018,Politicians,@PressSec,"RT @WhiteHouse: Today, President Trump ordered the expulsion of dozens of Russian intelligence officers from the U.S. and the closure of th…" +03/26/2018,Politicians,@PressSec,.@IvankaTrump: “Skill-based education is crucial to putting more Americans on a path to promising careers – and fil… https://t.co/jkV4PRvar5 +03/26/2018,Politicians,@PressSec,Statement on Expulsion of Russian intelligence officers. https://t.co/4uCzMOMG3f +03/26/2018,Politicians,@PressSec,Had a blast meeting Celia and Natalie @WhiteHouse on Friday. https://t.co/ZbjUDhNYwW +03/24/2018,Politicians,@PressSec,"RT @Scavino45: March 23, 2018 #TeamTrumpBTS +🔟📸 https://t.co/5YiDnLpe3x https://t.co/npFo2W5i8w" +03/21/2018,Politicians,@PressSec,".@POTUS talked w/ @SpeakerRyan & @SenateMajLdr about priorities secured in the omnibus, which all support, especial… https://t.co/rBYoPsfGXo" +03/21/2018,Politicians,@PressSec,RT @repgregwalden: Working across the aisle and with @POTUS I know we can put an end to the #OpioidCrisis once and for all #CrisisNextDoor… +03/21/2018,Politicians,@PressSec,"Much of the chattering class said @POTUS would lose the election, but he won; said he’d hurt the economy, but it’s… https://t.co/erpfxztF1C" +03/20/2018,Politicians,@PressSec,RT @realDonaldTrump: Our Nation was founded by farmers. Our independence was won by farmers. And our continent was tamed by farmers. Our fa… +03/20/2018,Politicians,@PressSec,".@POTUS mourns for victims of the recent bombings in Austin. We are monitoring the situation, federal authorities a… https://t.co/BD3jl8Bc2V" +03/20/2018,Politicians,@PressSec,RT @business: This is what record-low unemployment looks like in America https://t.co/4omUIJL07V https://t.co/EVodCrT6Np +03/19/2018,Politicians,@PressSec,RT @GOPLeader: .@POTUS' proposals to combat opioid addiction demonstrate that there is ample opportunity to reach a bipartisan consensus. W… +03/19/2018,Politicians,@PressSec,"RT @WhiteHouse: The opioid crisis has created stories of despair of shock, but also stories of recovery & hope. President Trump is asking e…" +03/19/2018,Politicians,@PressSec,RT @RepDavidKustoff: I applaud @POTUS @realDonaldTrump for laying out a three-pronged approach to combat the #OpioidEpidemic. In order to e… +03/19/2018,Politicians,@PressSec,RT @AGPamBondi: Ty @POTUS for the comprehensive approach to combat the national opioid crisis. This nationwide initiative will help stop t… +03/19/2018,Politicians,@PressSec,RT @WVGovernor: People are dying every day from opioid abuse. I'm encouraged and hopeful that @POTUS's plans will help us take bigger steps… +03/16/2018,Politicians,@PressSec,RT @realDonaldTrump: Our thoughts and prayers go out to the families and loved ones of the brave troops lost in the helicopter crash on the… +03/16/2018,Politicians,@PressSec,Just spoke to @POTUS and Gen. H.R. McMaster - contrary to reports they have a good working relationship and there are no changes at the NSC. +03/15/2018,Politicians,@PressSec,In the briefing I said I would provide the trade deficit number we have with Canada. In 2017 we had a $17.58 B trad… https://t.co/CwhvJBUqNY +03/14/2018,Politicians,@PressSec,"RT @FoxNews: MOMENTS AGO: @POTUS departs California after visiting border wall prototypes, criticizing state's sanctuary law. https://t.co/…" +03/14/2018,Politicians,@PressSec,RT @steveholland1: Pres Trump arriving at border wall prototypes https://t.co/AjhdjQGjWt +03/09/2018,Politicians,@PressSec,"The New York Times: “jobs reports don’t get much better than this” +https://t.co/1hbF94Mhdp" +03/09/2018,Politicians,@PressSec,"The good economic news keeps coming. Reynolds giving thousands of workers tax cut bonuses +https://t.co/r7RAcnGgzh" +03/09/2018,Politicians,@PressSec,"RT @FoxNews: SoKo security adviser Chung Eui-Yong: ""I explained to @POTUS that his leadership and his maximum pressure policy together with…" +03/09/2018,Politicians,@PressSec,.@POTUS greatly appreciates the nice words of the S. Korean delegation & Pres Moon. He will accept the invitation t… https://t.co/Y0SQ4fGee3 +03/08/2018,Politicians,@PressSec,RT @WhiteHouse: President Trump is protecting American national security from the effects of unfair trade practices by protecting our steel… +03/08/2018,Politicians,@PressSec,"RT @FoxNews: .@POTUS: ""We have to protect and build our steel and aluminum industries, while at the same time showing great flexibility and…" +03/08/2018,Politicians,@PressSec,#InternationalWomensDay https://t.co/qCLjh60Pxx +07/01/2018,Politicians,@SarahPalinUSA,Congress Includes Surprising Provision In New Farm Bill https://t.co/sUX95KPZg5 +07/01/2018,Politicians,@SarahPalinUSA,So Much Winning: Trump Reveals Plan For Another Round Of Tax Cuts https://t.co/vQwIy3Xljz +07/01/2018,Politicians,@SarahPalinUSA,Journalists Spread Conspiracy Theory that DHS Is Sending Out Secret Nazi Code https://t.co/acjMBgNf1n +07/01/2018,Politicians,@SarahPalinUSA,Awful... https://t.co/qLdW1ZE481 +07/01/2018,Politicians,@SarahPalinUSA,"Trump Responds To Democrats Who Are Trying To Abolish ICE, It's Pure Gold https://t.co/BwKhUauiJC" +07/01/2018,Politicians,@SarahPalinUSA,"Dem Senator Wants ICE To Be Abolished, Hopes You Forgot What She Said About Illegal Immigrants In 2009 https://t.co/IgYdNEVzJm" +07/01/2018,Politicians,@SarahPalinUSA,Hollywood Actor Takes Maxine's Words to Heart — Attempts to Stop Senator McConnell from Eating https://t.co/GUutUP5uhB +07/01/2018,Politicians,@SarahPalinUSA,'I Can't Even …' — Hillary Took A Shot At Melania And It Was A Stuttering Mess https://t.co/ZUZgbUmAjZ +07/01/2018,Politicians,@SarahPalinUSA,BOOM. https://t.co/nUHp2ziCJH +07/01/2018,Politicians,@SarahPalinUSA,This is a MUST watch! https://t.co/xa0apuUVqD +07/01/2018,Politicians,@SarahPalinUSA,Too funny!! https://t.co/CXsGPvWvFb +07/01/2018,Politicians,@SarahPalinUSA,Yikes! https://t.co/nyDj9Zu7iG +06/30/2018,Politicians,@SarahPalinUSA,"Restaurant Manager Refuses To Serve Customer Wearing A MAGA Hat, Immediately Suffers The Consequences https://t.co/03RAqfOdE5" +06/30/2018,Politicians,@SarahPalinUSA,A former CNN producer called him out for his actions. https://t.co/x7Q7e1hfL5 +06/30/2018,Politicians,@SarahPalinUSA,Trump's Epic Prediction From 2013 Just Came Back To Bite Dems In A Big Way https://t.co/R2VmgeJuyJ +06/30/2018,Politicians,@SarahPalinUSA,Shouldn't come as a surprise. https://t.co/qsTwU4n6oH +06/30/2018,Politicians,@SarahPalinUSA,She has reportedly canceled her upcoming public speaking events due to a credible death threat. https://t.co/0QS1ZlYdoG +06/30/2018,Politicians,@SarahPalinUSA,Oops... https://t.co/MHopOidU3w +06/30/2018,Politicians,@SarahPalinUSA,Scary! Authorities arrested the man in Los Angeles. https://t.co/y31IOoaTOe +06/30/2018,Politicians,@SarahPalinUSA,Negotiator-In-Chief: Trump Scores MASSIVE Resource Deal From Saudi Arabia https://t.co/gyJpl4y2ai +06/30/2018,Politicians,@SarahPalinUSA,Whoops... https://t.co/Y6nQQgny7a +06/30/2018,Politicians,@SarahPalinUSA,Trump Narrows List Of 25 Supreme Court Nominees To Just 5 Candidates https://t.co/ZnZ9agyQ4R +06/30/2018,Politicians,@SarahPalinUSA,NEW INFO... https://t.co/TMmSBgxBNr +06/30/2018,Politicians,@SarahPalinUSA,Well there you go... https://t.co/qvqhyEpV7A +06/30/2018,Politicians,@SarahPalinUSA,"SHE’S SPIRALING: Maxine Starts 'Crying' In Middle of Interview, Cancels 2 Events, Claims She’s the Real ‘Victim’ https://t.co/iCqmkHjMIH" +06/29/2018,Politicians,@SarahPalinUSA,More on this... https://t.co/Z2QrZAnLF8 +06/29/2018,Politicians,@SarahPalinUSA,Interesting. https://t.co/COPtOu0oGX +06/29/2018,Politicians,@SarahPalinUSA,GOP Rep On Illegal Border Crossings: '[Children] Should Be Reunited With Their Families... In Their Home Country' https://t.co/yy690232ON +06/29/2018,Politicians,@SarahPalinUSA,🇺🇸Bikers for Monetti🇺🇸 https://t.co/N2pMyURq5c +06/29/2018,Politicians,@SarahPalinUSA,Inside Scoop: Tucker Carlson Says White House Shake Up 'Likely Very Soon' https://t.co/3gRW3fiaap +06/29/2018,Politicians,@SarahPalinUSA,Thoughts?? https://t.co/uhvk4INYCb +06/29/2018,Politicians,@SarahPalinUSA,"Democrat Senator Calls For Abolishing ICE, Conservatives Point Out 1 Thing https://t.co/igaXsEDNkF" +06/29/2018,Politicians,@SarahPalinUSA,So Much For Peacefully Protesting: Nearly 600 Women's March Protesters ARRESTED on Capitol Hill https://t.co/dM145raxCA +06/29/2018,Politicians,@SarahPalinUSA,Whoa...this is big. https://t.co/dVmu7VR7z0 +06/29/2018,Politicians,@SarahPalinUSA,Barron Gets the Last Laugh: Peter Fonda's New Movie Is an Utter Disaster at the Box Office https://t.co/MKAeAlyKMU +06/29/2018,Politicians,@SarahPalinUSA,"VICTIMS IDENTIFIED: 5 Dead, Others Injured After Shooting Incident In Maryland Newsroom https://t.co/aV81TqgMGR" +06/29/2018,Politicians,@SarahPalinUSA,Do you agree? https://t.co/wU9aK9aXbI +06/29/2018,Politicians,@SarahPalinUSA,Photo: Sign Spotted at Red Hen After Sanders Incident Proves They're Grade-A Hypocrites https://t.co/EAXJO97XNR +06/29/2018,Politicians,@SarahPalinUSA,Comedy Central Writer Wishes Death Upon Justice Kennedy for Stepping Down https://t.co/zUrQKqny6o +06/28/2018,Politicians,@SarahPalinUSA,Thoughts on this? https://t.co/MrWPhX6DqS +06/28/2018,Politicians,@SarahPalinUSA,Wow! https://t.co/JU5jLTAhp5 +06/28/2018,Politicians,@SarahPalinUSA,Get READY... https://t.co/BJOdVtjcVx +06/28/2018,Politicians,@SarahPalinUSA,BOOM. https://t.co/j8RiEIWX3f +06/28/2018,Politicians,@SarahPalinUSA,Here are the details: https://t.co/7tfY5eGXgv +06/28/2018,Politicians,@SarahPalinUSA,🇺🇸Don’t know if a Senate fundraiser/rally is even supposed to be this much fun🇺🇸😄but I had a blast in America’s hea… https://t.co/XCZROkwepi +06/28/2018,Politicians,@SarahPalinUSA,Narrative Buster: Noncitizen Arrested For Role In Voter Fraud Scheme https://t.co/yJUUaQAhce +06/28/2018,Politicians,@SarahPalinUSA,This: https://t.co/iFoOGRf67s +06/28/2018,Politicians,@SarahPalinUSA,And so it begins... https://t.co/UPkOAMM1rB +06/28/2018,Politicians,@SarahPalinUSA,Big news: https://t.co/7feomwe3Qa +06/28/2018,Politicians,@SarahPalinUSA,'Republicans Are Forbidden': Look What Signs Are Popping Up Across Los Angeles https://t.co/HodhQIKeHT +06/28/2018,Politicians,@SarahPalinUSA,"Jerry Seinfeld Can't Hold It In, Says What Nobody Else In Hollywood Will About Roseanne's Firing https://t.co/d8Kzab8bY5" +06/28/2018,Politicians,@SarahPalinUSA,"BREAKING: Supreme Court Justice Announces Retirement, Gives Trump Biggest Gift of Presidency https://t.co/ybh4EsdW5x" +06/27/2018,Politicians,@SarahPalinUSA,It continues... https://t.co/eBnxDNZYN9 +06/27/2018,Politicians,@SarahPalinUSA,Share...a must see! https://t.co/SigMJUSxXw +06/27/2018,Politicians,@SarahPalinUSA,What do you think about this? https://t.co/Vf24ANa7P5 +06/27/2018,Politicians,@SarahPalinUSA,Remember Chelsea Manning Running For The Senate? Here's How It Turned Out https://t.co/U7yLji8lzm +06/27/2018,Politicians,@SarahPalinUSA,Terrible. https://t.co/n4FRa5VFJd +06/27/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/sUIKzk5A3Q +06/27/2018,Politicians,@SarahPalinUSA,Bolton is in Russia ahead of an anticipated summit between Putin and President Trump. https://t.co/XP23pG5czS +06/27/2018,Politicians,@SarahPalinUSA,Thoughts on this? https://t.co/0GIzhlHcmg +06/27/2018,Politicians,@SarahPalinUSA,And there it is....read up on it. https://t.co/iLJM21TOdc +06/27/2018,Politicians,@SarahPalinUSA,"Mitch McConnell And Wife Latest To Be Confronted By Protesters, She Answered Them With 7 FEISTY Words https://t.co/fg7aNPXuXh" +06/27/2018,Politicians,@SarahPalinUSA,"WATCH: ABC News Heads To Southern Border, Runs Into Illegals Being Smuggled Into US https://t.co/4l9PWdyCUS" +06/27/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/IJC05QO4JM +06/27/2018,Politicians,@SarahPalinUSA,"Another Trump Official Targeted By The Left, This Time Using A Dead Animal Carcass https://t.co/DeKSfzScSY" +06/27/2018,Politicians,@SarahPalinUSA,"James Woods Shreds Obama, Posts Time Cover of His Own https://t.co/yk3dLf2Ccd" +06/27/2018,Politicians,@SarahPalinUSA,Supreme Court Says Pro-Life Pregnancy Centers Don’t Have to Be ‘Abortion Referral Agencies’ https://t.co/Ar11fl5D40 +06/27/2018,Politicians,@SarahPalinUSA,"Pam Bondi Bravely Comes Forward: 3 Huge Guys Screamed and Cursed Me 1 Inch From My Face, Spit On My Head! https://t.co/4gfL1vKLn9" +06/27/2018,Politicians,@SarahPalinUSA,And here it is... https://t.co/xDP7C2oFVO +06/26/2018,Politicians,@SarahPalinUSA,The part of the story everyone should know... https://t.co/VdCjw18FNK +06/26/2018,Politicians,@SarahPalinUSA,Popular Liberal Website Warns GOP of 1970's Style Bombings... 'This Is Just the Beginning' https://t.co/fOBNYEOXlG +06/26/2018,Politicians,@SarahPalinUSA,10 Photos of Life Right Now https://t.co/AoW7ee7oGK +06/26/2018,Politicians,@SarahPalinUSA,"CNN’s Cillizza Is Mad Over Trump Tweet, NRA’s Loesch Had To Remind Him What Obama Said (Which Was Way Worse) https://t.co/7hda26ZniV" +06/26/2018,Politicians,@SarahPalinUSA,More info just came in... https://t.co/NCEARWvfZb +06/26/2018,Politicians,@SarahPalinUSA,Harley-Davidson To Move Work Overseas Following European Tariffs... Trump Is Not Happy About It https://t.co/cMKQRr6LvR +06/26/2018,Politicians,@SarahPalinUSA,Breaking. https://t.co/3O9aHWMjHh +06/26/2018,Politicians,@SarahPalinUSA,Really? https://t.co/kmooNI4na1 +06/26/2018,Politicians,@SarahPalinUSA,Check it out: https://t.co/G9hpzQtsE7 +06/26/2018,Politicians,@SarahPalinUSA,"Fed-Up Trump Says Forget Judges and Courts — Soon As Illegals Cross Border, We Must Return Them 'Immediately' https://t.co/kxuFhysZjL" +06/26/2018,Politicians,@SarahPalinUSA,More on this... https://t.co/0RfQjy3TNC +06/26/2018,Politicians,@SarahPalinUSA,North Korea Reportedly Making Quiet Move That Suggests They Are Serious About Deal With Trump https://t.co/o6Gr304Blc +06/26/2018,Politicians,@SarahPalinUSA,You'll want to see this one... https://t.co/p1AuHNwbH5 +06/25/2018,Politicians,@SarahPalinUSA,I Passed My Realtor’s Test: 3 (Sweet!) Photos of My Life Now https://t.co/mCTpVTXt32 +06/25/2018,Politicians,@SarahPalinUSA,WOW... https://t.co/ad3ssXwTZE +06/25/2018,Politicians,@SarahPalinUSA,He didn't hold back... https://t.co/TaNxD1G8q1 +06/25/2018,Politicians,@SarahPalinUSA,Iran Peace Deal? The Country Faces Economic Disaster And The U.S. Could Be Their Only Hope https://t.co/6SWYeHNxlb +06/25/2018,Politicians,@SarahPalinUSA,He says there are two things people need to do in response. https://t.co/MVcyH6Wjvg +06/25/2018,Politicians,@SarahPalinUSA,Devastating New Poll Shows Just How Out Of Touch Democrats Are On The Immigration Issue https://t.co/GOJjoTlw0A +06/25/2018,Politicians,@SarahPalinUSA,"""...they're not welcome anymore anywhere."" https://t.co/1Hbueidh2K" +06/25/2018,Politicians,@SarahPalinUSA,Here's What The Media Won't Tell You About MS-13 Gang Members Posing As Minors To Cross The Border https://t.co/yIO8Ctya6I +06/25/2018,Politicians,@SarahPalinUSA,RED HOT: Obama DHS Sec. Jeh Johnson Says Border Detentions In 2014 Were 'Necessary' And Still Are https://t.co/IF1f2Zvpoi +06/25/2018,Politicians,@SarahPalinUSA,Leftists Blast Sarah Sanders For Confirming She Was Thrown Out of Restaurant https://t.co/pLrraCaHe2 +06/25/2018,Politicians,@SarahPalinUSA,Leftists Injure Border Patrol Agent During Attempt to Stop a Bus at Detention Center https://t.co/sDItSekdN0 +06/25/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/ftt4VgJQjQ +06/25/2018,Politicians,@SarahPalinUSA,Leftists Make 'Credible Threats' Against the Children of DHS Employees https://t.co/rflHzkVJWc +06/25/2018,Politicians,@SarahPalinUSA,Obama 'Ethics Chief' Claims Sanders Broke the Law After She Was Booted From Restaurant https://t.co/aPqa94fl1t +06/25/2018,Politicians,@SarahPalinUSA,"ANOTHER GOP Woman Politician Harassed By Leftists, This Time at the Movies https://t.co/IfbNVIKgxC" +06/24/2018,Politicians,@SarahPalinUSA,"Maxine Waters: Harass Trump Officials Anywhere You Find Them, Gas Station, Restaurant, Shopping Mall https://t.co/fgqJMLfkCN" +06/24/2018,Politicians,@SarahPalinUSA,What do you think? https://t.co/dBohLu9fnw +06/24/2018,Politicians,@SarahPalinUSA,Terrible. https://t.co/C1NeXgLoGz +06/24/2018,Politicians,@SarahPalinUSA,"DOJ Turns Over Some Documents After Gowdy Threat, But Report Still Not In Compliance https://t.co/B2lIrhy86H" +06/24/2018,Politicians,@SarahPalinUSA,Looks like some people are calling for a boycott now...Thoughts? https://t.co/zfkn46wuB8 +06/24/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/EkBpbNUl5T +06/24/2018,Politicians,@SarahPalinUSA,The two candidates are competing for the newly redrawn 17th District. https://t.co/W1kupIdxrZ +06/24/2018,Politicians,@SarahPalinUSA,OUCH! https://t.co/KLMizwoAqG +06/24/2018,Politicians,@SarahPalinUSA,Liberals Just Came Up With A New Way To Crack Down On Guns And It's Infuriating https://t.co/qp5m8DX8CW +06/24/2018,Politicians,@SarahPalinUSA,"House Calls Peter Strzok's Bluff, Drops Subpoena On Him, And That's Not All https://t.co/eikl29Bg0W" +06/24/2018,Politicians,@SarahPalinUSA,People need to hear this. https://t.co/08e5g3A1ri +06/23/2018,Politicians,@SarahPalinUSA,WAIT...WHAT?? https://t.co/p3sEJxFEMy +06/23/2018,Politicians,@SarahPalinUSA,Fallout From Sanders' Visit: Restaurant Learns QUICKLY That They Probably Should Have Served Her https://t.co/QaNfXQawk6 +06/23/2018,Politicians,@SarahPalinUSA,Yikes. https://t.co/tt1AaIMGma +06/23/2018,Politicians,@SarahPalinUSA,'Angel Mom' Whose Son Was Killed By Illegal Alien Says Trump Saved Her From Suicide https://t.co/XoX6ZJ3IV8 +06/23/2018,Politicians,@SarahPalinUSA,"U.S. Marines Asks If Anyone Can Beat Them In This, It's Not What You Expect https://t.co/00GjsLMIpW" +06/23/2018,Politicians,@SarahPalinUSA,Sad... https://t.co/dbGT02URj7 +06/23/2018,Politicians,@SarahPalinUSA,"Imagine the outrage, and consequences, if this was a conservative - or Trump supporting - restaurant owner. https://t.co/Q3DQjNjE74" +06/23/2018,Politicians,@SarahPalinUSA,"Absolutely heartbreaking. They want to be heard, and President Trump is giving voice to their stories. https://t.co/sYR8iwV1r0" +06/23/2018,Politicians,@SarahPalinUSA,Our prayers for Katie Arrington and her friend. 🙏🏻 https://t.co/Wf2FJkAwFC +06/23/2018,Politicians,@SarahPalinUSA,AG Sessions Reveals Info About Disgraced FBI Official Strzok That We've Been Waiting A Long Time For https://t.co/3ZY0vgWP1C +06/23/2018,Politicians,@SarahPalinUSA,LINE CROSSED: Tom Arnold Vows He's Going To Stalk And Harass Barron At School https://t.co/qYz9XdlDDN +06/23/2018,Politicians,@SarahPalinUSA,Just...wow. https://t.co/gp23p1Gdef +06/23/2018,Politicians,@SarahPalinUSA,"Dem Candidate ARRESTED at Migrant Detention Center, Gets Brutal Reality Check from Border Patrol https://t.co/hHObzZjzEi" +06/22/2018,Politicians,@SarahPalinUSA,Annnnnnnd DONE! https://t.co/Vhn2krcLqy +06/22/2018,Politicians,@SarahPalinUSA,No holding Barack! https://t.co/GlKAhA3vXy +06/22/2018,Politicians,@SarahPalinUSA,Whoa...check it out: https://t.co/T15TuC0JC2 +06/22/2018,Politicians,@SarahPalinUSA,A new proposal to split the state has recently earned enough support to find its way to the November ballot box... https://t.co/RytSyChHf1 +06/22/2018,Politicians,@SarahPalinUSA,"On Summer Solstice ~ Slammin’ Salmon in Bristol Bay!🐟Thankful Piper’s attitude is the best😊 ~ in cold, rainy, windy… https://t.co/4LjnzqqQO3" +06/22/2018,Politicians,@SarahPalinUSA,Sounds like it was directed at the media... https://t.co/xMR21VrDpY +06/22/2018,Politicians,@SarahPalinUSA,House Just Passed Largest Bill EVER To Confront Opioid Crisis https://t.co/12uYH0t68P +06/22/2018,Politicians,@SarahPalinUSA,THIS IN: https://t.co/flgvySXMd3 +06/22/2018,Politicians,@SarahPalinUSA,Turns out it was all a massive lie....WOW. https://t.co/wn7q5Gm9Mv +06/22/2018,Politicians,@SarahPalinUSA,"""Remember their motto, RESIST! Ours is PRODUCE!"" https://t.co/YAglSUwQyK" +06/22/2018,Politicians,@SarahPalinUSA,"According to the poll, only 19% of registered voters favor catch-and-release while 46% support Trump’s executive or… https://t.co/gTByATpOP5" +06/22/2018,Politicians,@SarahPalinUSA,"BREAKING: Melania Defies Critics, Shows Up At the One Place Dems Swore She Never Would https://t.co/VLHsmakn4i" +06/22/2018,Politicians,@SarahPalinUSA,....... https://t.co/If01t8JrwO +06/22/2018,Politicians,@SarahPalinUSA,"Where Was Congress on IRS Scandal? + +How in the world did this take eight years? When the IRS comes knocking... https://t.co/jJ4lgeMuGm" +06/22/2018,Politicians,@SarahPalinUSA,American Airlines Demands Trump Not Use Its Planes for 'Separated Migrant Kids' — DHS Responds with a Vengeance https://t.co/eRCOvSeKTg +06/22/2018,Politicians,@SarahPalinUSA,Democrat Rep. Gives Mike Pence the Finger While Bragging About His 'Brotherly Love' https://t.co/yIHU4uSmLy +06/22/2018,Politicians,@SarahPalinUSA,"Juan Williams Defends Peter Fonda's Attack on Barron, Refuses to Say It Was Disgusting: Just Worded It 'Poorly' https://t.co/n5XFiX6PcS" +06/21/2018,Politicians,@SarahPalinUSA,Can't wait! https://t.co/LvklVkTs7l +06/21/2018,Politicians,@SarahPalinUSA,This is horrible! https://t.co/B1EoI9EROs +06/21/2018,Politicians,@SarahPalinUSA,Right on! https://t.co/UfOcZRv8Cn +06/21/2018,Politicians,@SarahPalinUSA,Just sad (and scary). The person who shared the picture of the sign on social media has reportedly received death t… https://t.co/cUZN4NC5uh +06/21/2018,Politicians,@SarahPalinUSA,Did you see this? https://t.co/pmcLucPgFd +06/21/2018,Politicians,@SarahPalinUSA,Sony Pictures just finished making a movie with Peter Fonda. But then they saw what he did to Barron Trump. Now the… https://t.co/E9yLqsfdcr +06/21/2018,Politicians,@SarahPalinUSA,"This democrat was the McCain/Palin ticket’s head honcho. + +Is it any wonder those running the 2008 campaign deemed… https://t.co/lToRZizLmj" +06/21/2018,Politicians,@SarahPalinUSA,"Just Now: Trump Proposes Border Security Solution, Hits GOP Over Filibuster Rule https://t.co/327EFEctWO" +06/21/2018,Politicians,@SarahPalinUSA,Happening! https://t.co/Jlpr5k44YE +06/21/2018,Politicians,@SarahPalinUSA,President Trump is reportedly looking to fulfill a conservative proposal from more than 20 years ago. https://t.co/dtUv8syXnz +06/21/2018,Politicians,@SarahPalinUSA,They Were Fed False Info! Evidence Now Shows FBI Altered Witness Reports https://t.co/B875AgwYK7 +06/21/2018,Politicians,@SarahPalinUSA,CNN Attempts to Shame Border Patrol Agent — He Turns the Tables and Leaves Host Speechless https://t.co/cBQxemLdb7 +06/21/2018,Politicians,@SarahPalinUSA,"Actor Breaks Silence After Melania Told Secret Service About His Threat to Kidnap, Cage Barron Trump https://t.co/qRtdx09nei" +06/20/2018,Politicians,@SarahPalinUSA,"Trump Finishes Speech, Walks Straight Over to American Flag, Then Let’s His True Patriot Come Out https://t.co/kiUlzgPlJX" +06/20/2018,Politicians,@SarahPalinUSA,Gotta love Texas! Classic. https://t.co/aBAsRYWGCD +06/20/2018,Politicians,@SarahPalinUSA,SICK. https://t.co/0QoXhaG1nW +06/20/2018,Politicians,@SarahPalinUSA,Report: Chuck Schumer Stands In The Way Of Republican Efforts To Fix Separations At The Border https://t.co/pulsT14Trf +06/20/2018,Politicians,@SarahPalinUSA,Definitely need more of this. Love it! https://t.co/4r7kmNabJ9 +06/20/2018,Politicians,@SarahPalinUSA,OUCH... https://t.co/m1cYlo9wOd +06/20/2018,Politicians,@SarahPalinUSA,FBI Refusing To Release Names Of 3 Other FBI Employees Caught Sending Anti-Trump Texts https://t.co/y6KPSZUOXS +06/20/2018,Politicians,@SarahPalinUSA,Oops... https://t.co/3MWp63uBuK +06/20/2018,Politicians,@SarahPalinUSA,Oh boy. https://t.co/SU2zW5VRQD +06/20/2018,Politicians,@SarahPalinUSA,An armed civilian took down a shooter after at least two people were shot at a Washington state Walmart. https://t.co/7nttBhqDki +06/20/2018,Politicians,@SarahPalinUSA,The American people are clearly sending the message that the Trump economy is a healthy one. https://t.co/rhHjamKcPn +06/20/2018,Politicians,@SarahPalinUSA,Must See: Mueller's Blundering Special Counsel Is Getting CLOBBERED In Court — MSM Ignoring All of It https://t.co/nPVI4PyADE +06/19/2018,Politicians,@SarahPalinUSA,BREAKING NEWS.... https://t.co/DqcmWssLEl +06/19/2018,Politicians,@SarahPalinUSA,"Border Official Fights Back, Slams Media For False Depiction of Detention Centers https://t.co/2AMeJwpQmP" +06/19/2018,Politicians,@SarahPalinUSA,"In light of recent info, what do you think? https://t.co/A4LtcRSbXi" +06/19/2018,Politicians,@SarahPalinUSA,Gowdy literally just gave one of his best speeches ever on the House floor. Stop whatever you're doing and watch th… https://t.co/lnhUNTu95c +06/19/2018,Politicians,@SarahPalinUSA,SHE'S TOAST: Merkel May Be Ousted from Office Next Week for 'Open-Door' Migrant Policy https://t.co/zuKazDgci4 +06/19/2018,Politicians,@SarahPalinUSA,Blast From The Past: James Woods Reminds Hillary That She Is NO Moral Authority https://t.co/qAqkwuc3HL +06/19/2018,Politicians,@SarahPalinUSA,Larry Elder: The 'xenophobe quiz'--Who said this about immigration? https://t.co/k88qGM4azI +06/19/2018,Politicians,@SarahPalinUSA,Uh oh... https://t.co/7odmzIZjIV +06/19/2018,Politicians,@SarahPalinUSA,"“As a Nation, we vow to never forget the millions of African Americans who suffered the evils of slavery.” - Presid… https://t.co/rqgasLSLLo" +06/19/2018,Politicians,@SarahPalinUSA,What in the world...What do you think? https://t.co/rhkqQBYIw0 +06/19/2018,Politicians,@SarahPalinUSA,They messed with the wrong couple... https://t.co/4zLKviMuq4 +06/19/2018,Politicians,@SarahPalinUSA,BREAKING: Investigation Opened Into Comey — Turns Out Leaking Classified Docs to Try to 'Take Down' Trump Was a Bad… https://t.co/hrGhcTNV6S +06/19/2018,Politicians,@SarahPalinUSA,Thought Sam Bee Calling Ivanka a 'C--t' Was Sick? Well Kathy Griffin Just Took It to a Whole New Level https://t.co/DtwlqSqOix +06/19/2018,Politicians,@SarahPalinUSA,No he certainly won’t... https://t.co/tfjgacxR7q +06/19/2018,Politicians,@SarahPalinUSA,He didn’t mince words... https://t.co/h5bouVJpe0 +06/19/2018,Politicians,@SarahPalinUSA,Did you see this?! https://t.co/1t5yG3VHXx +06/19/2018,Politicians,@SarahPalinUSA,Yikes... https://t.co/k8YNgGS5Xi +06/19/2018,Politicians,@SarahPalinUSA,Whoops... https://t.co/LR4E74zHWR +06/18/2018,Politicians,@SarahPalinUSA,This from Pope Francis: https://t.co/5JjCriz3ys +06/18/2018,Politicians,@SarahPalinUSA,What? https://t.co/CJ8nrViXy4 +06/18/2018,Politicians,@SarahPalinUSA,"IG Report: McCabe Used Strzok's Mistress To Monitor Clinton Case, Bypass Chain of Command https://t.co/sy0z4Wy31N" +06/18/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/KLF9chRaUS +06/18/2018,Politicians,@SarahPalinUSA,"'It Breaks My Heart': Melania Trump, Laura Bush Weigh-In On Border Situation https://t.co/JsIbg51cXw" +06/18/2018,Politicians,@SarahPalinUSA,"Bristol Bay optimism as our commercial fishing season ramps up in the world’s largest salmon spawning grounds. + +“T… https://t.co/UtugVcCNJ2" +06/18/2018,Politicians,@SarahPalinUSA,Todd readying skiffs and kickers for Bristol Bay commercial fishing opener 🙏🏻🐟 Praying for a strong salmon run! The… https://t.co/FxLY1gMp0H +06/18/2018,Politicians,@SarahPalinUSA,Love this! https://t.co/NpFKs3RSyB +06/18/2018,Politicians,@SarahPalinUSA,Just Wow... https://t.co/M503fJw7OD +06/18/2018,Politicians,@SarahPalinUSA,Big news: https://t.co/JGbS7ZL83R +06/18/2018,Politicians,@SarahPalinUSA,"Happy Father’s Day to the dad who has more energy, work ethic and love of family than anyone we know ~ we love you… https://t.co/cmmJseCDYa" +06/18/2018,Politicians,@SarahPalinUSA,Happy Father’s Day ~ thank you for absolutely everything Dad! We ❤️ you lots! - SP +06/17/2018,Politicians,@SarahPalinUSA,A sweet story. https://t.co/Dl9svnMuzP +06/17/2018,Politicians,@SarahPalinUSA,Love it! https://t.co/lPM5WFeX6z +06/17/2018,Politicians,@SarahPalinUSA,Rubio: Fathers Deserve More Than Stuff For Father’s Day https://t.co/EfIGKRR92q +06/17/2018,Politicians,@SarahPalinUSA,Rubio: Fathers Deserve More Than Stuff For Father’s Day https://t.co/EfIGKRzxDQ +06/17/2018,Politicians,@SarahPalinUSA,Dem Rep. Admits Obama Admin Tried To Cover Up Child Migrant Crisis https://t.co/2WkhKXa9ke +06/17/2018,Politicians,@SarahPalinUSA,Check it out: https://t.co/5hLS8H092e +06/17/2018,Politicians,@SarahPalinUSA,Nancy Pelosi Blasts 'People of Faith' In Disgusting Political Display https://t.co/AEO3vSzOTQ +09/15/2017,Politicians,@BarneyFrank,"I am starting to wonder which side Trump is rooting for in 2018? +https://t.co/I508ROTVjp" +11/11/2015,Politicians,@BarneyFrank,"RT @CGDev: #LGBT Rights in the Developing World: What Can Washington Do? +RSVP to attend our event with @BarneyFrank on Nov 11: https://t.co…" +11/10/2015,Politicians,@BarneyFrank,"RT @CGDev: #LGBT Rights in the Developing World: What Can Washington Do? +RSVP to attend our event with @BarneyFrank on Nov 11: https://t.co…" +11/09/2015,Politicians,@BarneyFrank,"Honoring my mother, Elsie Frank for her public service in Elder affairs. Thank you @UMassBoston https://t.co/Su8GBMB8Kc" +11/09/2015,Politicians,@BarneyFrank,@McCormackGrad #mgsareyouready https://t.co/AHMHc5VdY9 +11/09/2015,Politicians,@BarneyFrank,RT @UMassBoston: .@UMassBoston honors former Congressman Barney Frank tonight at the State House! https://t.co/kpA0gMpGVk +10/26/2015,Politicians,@BarneyFrank,In New Mexico to shoot scenes for my cameo in @GravesEPIX @EpixHD +10/23/2015,Politicians,@BarneyFrank,RT @TheView: Did Biden pull out of the race because of Hillary? @BarneyFrank has some thoughts. WATCH: https://t.co/kgPzBaZyoI https://t.co… +10/23/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Opinion via @BarneyFrank: Wealthy allies have had a free ride for too long https://t.co/2i4lb0aOm9 | Getty https://t.co/Xp… +10/23/2015,Politicians,@BarneyFrank,Thanks to all the hosts @TheView this morning. #comparedtowhat #iconintoemoji #franktalk +10/23/2015,Politicians,@BarneyFrank,RT @whyyradiotimes: We round out Radio Times in Review w. @MartyMossCoane's interview w. @BarneyFrank on his life & career in politics - ht… +10/23/2015,Politicians,@BarneyFrank,"RT @SHO_PR: Today on @TheView, @BarneyFrank will chat about his new #Showtime doc ""Compared to What: The Improbable Journey of Barney Frank""" +10/19/2015,Politicians,@BarneyFrank,"Looking forward to Thursday, 10/23 when I'm back at Harvard https://t.co/QAzWmv9m6M @JFKJrForum @HarvardIOP" +10/18/2015,Politicians,@BarneyFrank,Mismatched fervor sways gun debate http://t.co/3wPQW3OD08 +10/14/2015,Politicians,@BarneyFrank,#DemDebate +10/14/2015,Politicians,@BarneyFrank,RT @katiecouric: Looking forward to having @BarneyFrank join our @YahooNews “After Dark” political party tonight! #DemDebate https://t.co/… +10/13/2015,Politicians,@BarneyFrank,"I’ll be joining @KatieCouric after the #DemDebate at 11pmET for highlights, analysis & more! @YahooNews! http://t.co/X16Y3A2dvo" +10/13/2015,Politicians,@BarneyFrank,http://t.co/0fwYBuvFe0 #princeton +10/11/2015,Politicians,@BarneyFrank,Don't forget to celebrate some success http://t.co/wKE4uSRy2Q +10/08/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Opinion via @BarneyFrank: The Republican Plague on Government http://t.co/aUSygXOm8h | AP Photo http://t.co/fAxK5xqMsu +10/05/2015,Politicians,@BarneyFrank,Questions without answers http://t.co/WzYRMLKxHP +10/02/2015,Politicians,@BarneyFrank,RT @nbroverman: It's a good day when @BarneyFrank calls & says his oped on #boehner is ready 4 @TheAdvocateMag Thankyou Congressman! http:/… +09/28/2015,Politicians,@BarneyFrank,Increasing federal spending on transportation is sound economic policy http://t.co/q1QojE6ur4 +09/26/2015,Politicians,@BarneyFrank,RT @politico: Column via @BarneyFrank: America’s religious masquerade http://t.co/X8CFPQHFKx | AP Photo http://t.co/dQ3hRvEA1Y +09/08/2015,Politicians,@BarneyFrank,"Email issue lingers, but it will fade #hrc2016 http://t.co/lmowaQobzC" +09/05/2015,Politicians,@BarneyFrank,RT @NEBookFair: Mark Your Calendars @BarneyFrank will be talking + signing copies of #Frank Thursday November 19 from 7-8PM #Icon https://… +09/03/2015,Politicians,@BarneyFrank,Why the U.S. Military Can’t Help in Syria http://t.co/IPX8wq1CKq +09/02/2015,Politicians,@BarneyFrank,"RT @TI_Boston: Save the Date: @BarneyFrank will be speaking at Temple Israel on Friday, October 16 during Qabbalat Shabbat. http://t.co/9Ws…" +08/31/2015,Politicians,@BarneyFrank,Predictions proven wrong still matter http://t.co/o7Gtt0NEAa +08/30/2015,Politicians,@BarneyFrank,"RT @redcarpetcrash: 'Compared To What: The Improbable Journey Of Barney Frank' Premieres Friday, October 23 On @SHO_Network http://t.co/IPy…" +08/27/2015,Politicians,@BarneyFrank,RT @CNBCClosingBell: Presidential candidates sounding off on the market volatility. @BarneyFrank & @larry_kudlow with their reaction to tha… +08/27/2015,Politicians,@BarneyFrank,RT @iah_unc: We're excited to announce former Congressman @BarneyFrank to deliver this year's Weil Lecture! Details --> http://t.co/QbF4zst… +08/20/2015,Politicians,@BarneyFrank,How Gay Marriage Is Like Legalizing Pot http://t.co/t31319JS1N +08/17/2015,Politicians,@BarneyFrank,These Republican candidates won't 'compromise' with voters http://t.co/knbRGoQnwC +08/13/2015,Politicians,@BarneyFrank,John Kasich’s Double-Edged Sword http://t.co/jir0k41H0l +08/07/2015,Politicians,@BarneyFrank,"@marcorubio plays GOP bait & switch, repeal Financial Reform so mega-banks can go back to pre-'08 ways #GOPDebate" +08/07/2015,Politicians,@BarneyFrank,"Kasich's central point against @HillaryClinton was he helped balance the budget, he forgot to mention he did this with Bill Clinton" +08/07/2015,Politicians,@BarneyFrank,Fox Reporters have been appropriately & intelligently tough in their questioning #GOPDebate +08/02/2015,Politicians,@BarneyFrank,Some deal is better than no deal with Iran. http://t.co/g9uiYZfcHe +07/27/2015,Politicians,@BarneyFrank,Political party differences aplenty http://t.co/OU72Tayp89 +07/24/2015,Politicians,@BarneyFrank,http://t.co/TQ7uo6qJAk +07/23/2015,Politicians,@BarneyFrank,Why Progressives Shouldn’t Support Bernie http://t.co/NOn5JmjGyl +07/21/2015,Politicians,@BarneyFrank,RT @HouseNewDems: @BarneyFrank says #DoddFrank has brought needed oversight to derivatives. Five years on DF has made our markets work bett… +07/21/2015,Politicians,@BarneyFrank,RT @HillaryClinton: Dodd-Frank was enacted 5 years ago today & has been under GOP attack ever since. As president I'll defend Wall Street r… +07/09/2015,Politicians,@BarneyFrank,"RT @POLITICOMag: Our newest columnist: former Rep. @BarneyFrank. His debut column: ""The Republican War on Wages"" http://t.co/HxQZf4M1vp" +06/27/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Via @BarneyFrank: Justice Scalia is a homophobe http://t.co/pMJAXdvXRm | AP Photo http://t.co/wwRCeCVGqL +06/27/2015,Politicians,@BarneyFrank,Justice Scalia Is a Homophobe http://t.co/eKVEmyP3JE #LoveWins +06/26/2015,Politicians,@BarneyFrank,#lovewins +06/22/2015,Politicians,@BarneyFrank,"Same side, different reason http://t.co/iwfD7fJI9H" +05/20/2015,Politicians,@BarneyFrank,I just scored 0 points in @RulesTheGame and reached level 1! http://t.co/8qZk6FfDqB #RulesGameryrttt http://t.co/vkwXPMhue7 +05/20/2015,Politicians,@BarneyFrank,I just scored 0 points in @RulesTheGame and reached level 1! http://t.co/8qZk6FfDqB #RulesGamehjghhfgjieur http://t.co/0f4qWTvabk +05/20/2015,Politicians,@BarneyFrank,http://t.co/C14H4YE14y Looking forward to this event on Thursday. +05/17/2015,Politicians,@BarneyFrank,"RT @RiversideWDCPAC: ""We don't win what we don't fight for!"" @SenWarren at #CADem15 http://t.co/K87gzYTSdl" +05/14/2015,Politicians,@BarneyFrank,An open letter to Obama on trade http://t.co/At7A94WDIT via @BostonGlobe +05/08/2015,Politicians,@BarneyFrank,"Thursday, May 21, at the Coolidge Corner Theater (290 Harvard St, Brookline, MA). http://t.co/C14H4YE14y Looking forward to this event!" +05/04/2015,Politicians,@BarneyFrank,RT @CA_Dem: CADems are proud to welcome @SenWarren and @BarneyFrank to Convention. Sign the welcome card: http://t.co/nFHBSw6BJV http://t.c… +05/04/2015,Politicians,@BarneyFrank,http://t.co/55bV7tDeA2 +04/30/2015,Politicians,@BarneyFrank,"Thank you @Andy, @BravoWWHL & @MyTrainerBob #mazel" +04/30/2015,Politicians,@BarneyFrank,http://t.co/UcfPWICkHD +04/30/2015,Politicians,@BarneyFrank,Good descriptions @MyTrainerBob @BravoWWHL mazel +04/30/2015,Politicians,@BarneyFrank,RT @BravoWWHL: Let us be Frank - this is going to be a great show. It's @MyTrainerBob & @BarneyFrank at 11/10c! #WWHL http://t.co/7bjnT7F5tk +04/30/2015,Politicians,@BarneyFrank,RT @Andy: AWESOME COMBO! Tweet me Q's for @BarneyFrank and @MyTrainerBob - see you at 11!!! #WWHL +04/30/2015,Politicians,@BarneyFrank,Looking forward to a fun evening with @Andy at 11:00pm tonight on @Bravotv #WWHL +04/28/2015,Politicians,@BarneyFrank,Looking forward to @LateNightSeth tonight #LNSM +04/28/2015,Politicians,@BarneyFrank,Thank you @PennState for hosting The Great Debate http://t.co/WRPbdxPx1y +04/27/2015,Politicians,@BarneyFrank,http://t.co/wsV2KaMsux Netanyahus approach is misguided +04/08/2015,Politicians,@BarneyFrank,http://t.co/FQO3bxV2EC @92Y +04/07/2015,Politicians,@BarneyFrank,"RT @BrazosBookstore: Tonight! Come one, come all! @BarneyFrank will be here at 7PM to talk FRANK! @fsgbooks http://t.co/0pBUF55AXT http://t…" +04/06/2015,Politicians,@BarneyFrank,http://t.co/OtwATp16ss +04/04/2015,Politicians,@BarneyFrank,I will be at Books a Million in South Portland today from 2-4p doing a reading from my book and signing. Hope to see lots of Mainers today! +04/03/2015,Politicians,@BarneyFrank,RT @joekennedy: I was proud to #LIUB today for all those affected by autism #Congress4LIUB #WorldAutismAwarenessDay @autismspeaks http://t.… +04/02/2015,Politicians,@BarneyFrank,"RT @LiveWireRadio: | | | Next Broadcast | | | +PERMISSION TO SPEAK FRANKLY with: +@BarneyFrank +@aparnapkin +@joepug +Listen: http://t.co/onn…" +04/02/2015,Politicians,@BarneyFrank,"RT @SFGateAandE: We talk to @BarneyFrank, who's in town to discuss his new book: http://t.co/1wlJCFUVHX @cityartssf http://t.co/KUOqfqFkfP" +03/27/2015,Politicians,@BarneyFrank,"RT @RealTimers: As always, @BarneyFrank dropped some #RealTalk during his last #RealTime appearance. He's back @HBO tomorrow at 10pm! http:…" +03/24/2015,Politicians,@BarneyFrank,"RT @HarvardBooks: Tue at 7pm: @BarneyFrank presents his political memoir FRANK, cosponsored by @HarvardDems http://t.co/pZVCM299Ad http://t…" +03/21/2015,Politicians,@BarneyFrank,RT @MMFARadio: We're live today with an all new show! Today's guests: @rebeccavallas @BarneyFrank and @benjaminja and @LivKittel @WiseSoph … +03/20/2015,Politicians,@BarneyFrank,'Frightened' about Netanyahu's impact http://t.co/RcbzLoGVl2 via @usatoday +03/19/2015,Politicians,@BarneyFrank,Pull No Punches http://t.co/0TCExvsjMN via @dailybeast +03/19/2015,Politicians,@BarneyFrank,"RT @prattlibrary: TONIGHT! Writers LIVE! @BarneyFrank talks about his new book, Frank, 7pm, Central Library Main Hall http://t.co/qPyl6erqor" +03/18/2015,Politicians,@BarneyFrank,RT @bookbrag: .@BarneyFrank discusses FRANK at @SixthandI tonight at 7! http://t.co/VG8ec1eGvr @Politics_Prose @fsgbooks +03/18/2015,Politicians,@BarneyFrank,RT @GWmedia: @BarneyFrank & Paul Volcker to discuss the @federalreserveat #GWU on March 20: http://t.co/G8ub7MnM8O +03/18/2015,Politicians,@BarneyFrank,RT @MacmillanLib: Happy belated #BookBday to FRANK by @BarneyFrank! http://t.co/b0k7PQcKRn Out now from @fsgbooks. http://t.co/JZApRXU8AC +03/18/2015,Politicians,@BarneyFrank,http://t.co/yy11hb5Evc +03/17/2015,Politicians,@BarneyFrank,"RT @AdamLMedia: Former Congressman @BarneyFrank stopped by @TheStreet to discuss his new book, 'Frank' with @5GsOnTheStreet http://t.co/mI3…" +03/17/2015,Politicians,@BarneyFrank,"RT @fsgbooks: ""The best humor is offered up by the stupidity of your opponents."" @BarneyFrank on @nprfreshair http://t.co/25MsqNOSc8" +03/17/2015,Politicians,@BarneyFrank,RT @LeonardLopate: At noon: @BarneyFrank talks about his public battles and personal trials. http://t.co/PpPgefVkEo +03/17/2015,Politicians,@BarneyFrank,"RT @fsgbooks: ""Incrementalism is not the enemy of militancy; it is often the only effective means of expressing it."" –@BarneyFrank http://t…" +03/17/2015,Politicians,@BarneyFrank,"RT @BaselYHamdan: Watch: @barneyfrank joins @HuffPostLive to discuss his new memoir ""Frank"" http://t.co/0wMKvP17de" +03/17/2015,Politicians,@BarneyFrank,"RT @emheinzbina: .@BarneyFrank joins @HuffPostLive at 1030! A kindred spirit since his ""neatness isn't everything"" reelection campaign http…" +03/17/2015,Politicians,@BarneyFrank,Barney Frank's Journey From Closeted To An Openly Gay Member Of Congress http://t.co/37BGjSB94Q +03/17/2015,Politicians,@BarneyFrank,RT @nprfreshair: Barney Frank's Journey From Closeted To An Openly Gay Member Of Congress http://t.co/yu03lgTnbb +03/17/2015,Politicians,@BarneyFrank,"RT @nightlyshow: Tonightly: @Rachel__Nichols, @BarneyFrank, @robcorddry, and @Wale join Larry to talk about the money college athletes don'…" +03/12/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/mzbPF9OFPz +03/10/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/4gcIB7GwWk +03/09/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/Hju4aAo1lH +03/09/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/OPqFEHSwuS +03/02/2015,Politicians,@BarneyFrank,Snow calls attention to infrastructure - http://t.co/2JyLRJ7UL3 #mainesundaytelegram +02/27/2015,Politicians,@BarneyFrank,Looking forward to this event. http://t.co/SIJDhBcm96 +02/26/2015,Politicians,@BarneyFrank,RT @IOPfellows: Today at 4pm: @marthacoakley w/ @BarneyFrank will discuss #MarriageEquality & @kayhagan joins @JNSmall to talk #womeninthes… +02/24/2015,Politicians,@BarneyFrank,RT @BarneyFrankFilm: Join us in bringing back Barney Frank’s wit and wisdom to the American people. http://t.co/v9uWm7xBmO @BarneyFrankFi… +02/24/2015,Politicians,@BarneyFrank,If you miss Barney Frank’s wit and wisdom here’s a way to bring him back to the American people:... http://t.co/kAECYG4yzG +02/24/2015,Politicians,@BarneyFrank,https://t.co/U5g1WvigtK http://t.co/meTayxlpI5 +02/23/2015,Politicians,@BarneyFrank,Barney Frank Film--Where Your Money Goes http://t.co/C9sSUaAH1L +02/23/2015,Politicians,@BarneyFrank,Please watch--YOU can make a difference: http://t.co/fQiyEQ5oBi http://t.co/KANNU2qBGL +02/23/2015,Politicians,@BarneyFrank,Policing's problems can be fixed - http://t.co/Lo328hLzay #GoogleAlerts +02/16/2015,Politicians,@BarneyFrank,RT @BarneyFrankFilm: Across generations with @RepJoeKennedy & @BarneyFrank @freedomtomarry http://t.co/weIC9OcZ6J Join the Indiegogo http:… +02/16/2015,Politicians,@BarneyFrank,Barney Frank--Across the Generations http://t.co/B6AQFBzr65 +02/16/2015,Politicians,@BarneyFrank,Barney Frank--Across the Generations http://t.co/6JYqpiInje +02/16/2015,Politicians,@BarneyFrank,https://t.co/xXUyf41noI http://t.co/JTuMVWQhu3 +02/16/2015,Politicians,@BarneyFrank,https://t.co/xXUyf3JMxa http://t.co/fRLDXJwQ1V +02/09/2015,Politicians,@BarneyFrank,Balancing the need for protection versus human rights - http://t.co/MC7SHkiHML #GoogleAlerts +02/01/2015,Politicians,@BarneyFrank,Reacting to Republicans' speech reaction http://t.co/SpDM2MZWzO +01/21/2015,Politicians,@BarneyFrank,I am pleased to announce that I will attend the world premiere of a new documentary Compared to What? The... http://t.co/bcfkLTaeTT +01/21/2015,Politicians,@BarneyFrank,I am pleased to announce that I will attend the world premiere of a new documentary Compared to What? The... http://t.co/16wGfLR0e5 +01/19/2015,Politicians,@BarneyFrank,Muslim majority should do more to condemn violence - http://t.co/T1I3wa3Inn #GoogleAlerts +01/16/2015,Politicians,@BarneyFrank,RT @HillaryClinton: Attacking financial reform is risky and wrong. Better for Congress to focus on jobs and wages for middle class families. +01/15/2015,Politicians,@BarneyFrank,RT @jessemermell: #Brookline celebrates #MLK Day w/ an event at @thecoolidge. Keynote from @BarneyFrank. Mon. 4pm. Free. http://t.co/e2JS3A… +01/15/2015,Politicians,@BarneyFrank,A Strategy in the Fight Over Dodd-Frank: Go Big - http://t.co/9jd19Y1mmM #GoogleAlerts +01/12/2015,Politicians,@BarneyFrank,Unions key to income equality - http://t.co/PVWjzx9Wm6 #GoogleAlerts +12/22/2014,Politicians,@BarneyFrank,Financial reform: Still optimistic - http://t.co/7ISTQixZGp #GoogleAlerts +12/16/2014,Politicians,@BarneyFrank,Frank paints Obamacare foes with too broad a brush - http://t.co/5ZGdyUgE9q +12/06/2014,Politicians,@BarneyFrank,http://t.co/qJwi0iDJpt +12/02/2014,Politicians,@BarneyFrank,From http://t.co/Ru5LE6tvg2 http://t.co/7JOdUvqORy +11/24/2014,Politicians,@BarneyFrank,US cannot police the entire world http://t.co/ZewzHbABJL +11/08/2014,Politicians,@BarneyFrank,"RT @allinwithchris: Tonight: @BarneyFrank, @SCOTUSblog's Tom Goldstein, @RichardKimNYC, @SharylAttkisson #inners" +11/08/2014,Politicians,@BarneyFrank,"RT @SteveKornacki: On tomorrow's show, we'll talk over the fallout from Tuesday and what comes next with @BarneyFrank, @willcain and @KateN…" +10/27/2014,Politicians,@BarneyFrank,Policing the world not our job -no IOU's http://t.co/x4nuNASDkm +10/13/2014,Politicians,@BarneyFrank,Democrats merit credit for economy - http://t.co/82dByKQUV8 +10/06/2014,Politicians,@BarneyFrank,Obama shouldn't go it alone - http://t.co/PBHUsfFQ4Y +10/02/2014,Politicians,@BarneyFrank,RT @PolicyCast: Former MA Congressman @BarneyFrank makes the case for why experience counts in congress - http://t.co/GDZ5mzvLyZ +09/29/2014,Politicians,@BarneyFrank,Exempting auto dealers defies logic - http://t.co/rH4AKKVZWP #CFPB +09/24/2014,Politicians,@BarneyFrank,RT @allinwithchris: TONIGHT: Who? @AymanM @ChrisMurphyCT @ChrisVanHollen @mike_giglio @will_mccants @costareports @BarneyFrank #inners +09/22/2014,Politicians,@BarneyFrank,"Bombing Islamic State right call, wrong reason - http://t.co/973Xv90uYL" +09/18/2014,Politicians,@BarneyFrank,Marijuana Legalization Will Follow in Gay Marriage's Footsteps @bigthink http://t.co/LDaFSHfEcI +09/08/2014,Politicians,@BarneyFrank,"In VA health care crisis, government expanded http://t.co/lnXAjd1zFi" +09/03/2014,Politicians,@BarneyFrank,As a contributor to @CNBC here is my contribution. http://t.co/yhS50iG1iT +08/28/2014,Politicians,@BarneyFrank,"Check out The Scrum podcast I participated in today https://t.co/27DiKeuwhy +#WGBH" +08/14/2014,Politicians,@BarneyFrank,"RT @CNN: Join @BarneyFrank @Wildaboutmusic on http://t.co/hI53Eamx1F as you watch #TheSixtiesCNN, 9p ET http://t.co/MfkA7twXoL http://t.co/…" +08/04/2014,Politicians,@BarneyFrank,Wishing we could fix hot spots doesn't make it so http://t.co/ouU8RUdPP2 +07/29/2014,Politicians,@BarneyFrank,http://t.co/gmBkPFCEIn +07/24/2014,Politicians,@BarneyFrank,RT @DMHopewell: @BarneyFrank among other panelists after watching #FreedomSummer http://t.co/ympB24HJLX +07/23/2014,Politicians,@BarneyFrank,RT @FSCDems: Watch former Chairman @BarneyFrank testify on the impacts of #DoddFrank. LIVE HERE -> http://t.co/bs6YKWo8mW +07/22/2014,Politicians,@BarneyFrank,Assessing the Impact of the Dodd-Frank Act Four Years Later. #testifying 23 July 2014 +07/21/2014,Politicians,@BarneyFrank,RT @FSCDems: **Media Advisory** - Ranking Member @MaxineWaters announces @BarneyFrank to testify on namesake Law. http://t.co/fm3DJ9IGkc #… +07/14/2014,Politicians,@BarneyFrank,2016 Elections... http://t.co/cdVaw6wqul +06/17/2014,Politicians,@BarneyFrank,"RT @AriMelber: On @TheLastWord at 10: + +@GovHowardDean on Iraq +Rev Barber on Moral Monday +@BarneyFrank on ENDA +@DavidFrum on GOP race +D Gro…" +06/16/2014,Politicians,@BarneyFrank,VA suffering mostly from inadequate funding http://t.co/lWGgz5tnpi +06/13/2014,Politicians,@BarneyFrank,"RT @allinwithchris: ""What they're talking about is the *indefinite occupation* of Iraq"" - @BarneyFrank #inners" +06/09/2014,Politicians,@BarneyFrank,"""I spoke w/ @ChrisDStedman at @RNS about my @americnhumanist award & the challenges facing LGBT people today: http://t.co/a2wa3Hm1qm""" +06/09/2014,Politicians,@BarneyFrank,Gay Marriage is now business as usual http://t.co/vwbBZiaVKo +06/02/2014,Politicians,@BarneyFrank,It's time to stand up to Thai regime http://t.co/MyHvXyLz1E +05/23/2014,Politicians,@BarneyFrank,RT @MassNAHRO: Fmr Congressman Frank Addresses Public Housing Officials at Conference @BarneyFrank http://t.co/jGnwJflNRZ http://t.co/pgBGH… +05/15/2014,Politicians,@BarneyFrank,RT @jstreetdotorg: .@BarneyFrank says @Conf_of_Pres' rejection of J Street is a mistake: http://t.co/Qm1IK6q6e7 +05/01/2014,Politicians,@BarneyFrank,http://t.co/JkiNTfelPb +04/30/2014,Politicians,@BarneyFrank,Looking forward to @LateNightSeth tonight on @NBC - 12:35am @sethmeyers @PackCreekFilms #ComparedToWhat +04/30/2014,Politicians,@BarneyFrank,http://t.co/0PUUY362VV +04/27/2014,Politicians,@BarneyFrank,#TFF2014 http://t.co/D0beYsvvOd +04/27/2014,Politicians,@BarneyFrank,"""Compared to What? The Improbable Journey of Barney Frank' #TFF2014" +04/25/2014,Politicians,@BarneyFrank,RT @LeonardLopate: Now: @BarneyFrank talks about his 30 years in the House and being the first openly gay congressman http://t.co/4lE1o20uRH +04/24/2014,Politicians,@BarneyFrank,"RT @HarvardIOP: .@BarneyFrank & @chrisdodd will disucss the passage of Dodd-Frank, the bill that notably changed financial regulation http:…" +04/22/2014,Politicians,@BarneyFrank,RT @PackCreekFilms: @BarneyFrank @TribecaFilmFest @ABFalecbaldwin +04/09/2014,Politicians,@BarneyFrank,RT @rollcall: Forthcoming @BarneyFrank Documentary Aims to Inspire: http://t.co/8Wers5dTmv +03/17/2014,Politicians,@BarneyFrank,"@TriBeCaFilmFestival ""Compared to What: The Improbable Journey of Barney Frank"" http://t.co/S9ajmgR8O2 #TFF2014" +03/12/2014,Politicians,@BarneyFrank,#LGBTequalityworldwide http://t.co/SmjiiZozDD +03/10/2014,Politicians,@BarneyFrank,"https://t.co/r5kQ4oOz1W +#lefthandedgayjew" +03/04/2014,Politicians,@BarneyFrank,RT @montalvo_d: Did markets make #Putin blink? Will lawmakers ignore #Obama budget? @BarneyFrank joins @SquawkStreet 10a ET. +02/24/2014,Politicians,@BarneyFrank,@maddow tonight @ 9:00 to discuss Defense Secretary Chuck Hagel's proposal to shrink the Army to it's smallest size in 74 years +02/19/2014,Politicians,@BarneyFrank,RT @OutLeadership: Thank you @BarneyFrank for your nomination @LiaParifax @hudsonism @AthleteAlly in @VanityFair Hall of Fame. We are so pr… +02/18/2014,Politicians,@BarneyFrank,Looking forward to @SquawkStreet this morning to discuss the US decision to allow banks to do business with licensed Pot Shops @CNBC +02/17/2014,Politicians,@BarneyFrank,Religions leaders deserve some blame for stirring up strife http://t.co/8Vc4sIBsur +02/13/2014,Politicians,@BarneyFrank,@vailsymposium today to speak #aftertheshock +02/03/2014,Politicians,@BarneyFrank,@CNBC @10:30est to discuss @JanetYellen #newFedChair +01/31/2014,Politicians,@BarneyFrank,RT @RichardLui: Join us @msnbc @jansingco 10aET w/ @mkraju @ElaheIzadi @MariaTeresa1 @BarneyFrank @sharon_epperson @RevJoeWatkins @KatyTurN… +01/30/2014,Politicians,@BarneyFrank,"RT @PoliticsNation: Obama’s been accused of punishing millionaires, but @BarneyFrank joins us next to discuss what the fight for fairness i…" +01/30/2014,Politicians,@BarneyFrank,"Tune in to @PoliticsNation this evening, we'll be discussing Obama's fight for fairness." +01/06/2014,Politicians,@BarneyFrank,Democrats don't owe @RepPaulRyan anything for paying debts he voted to incur. http://t.co/j6N3vZ1QDU +12/16/2013,Politicians,@BarneyFrank,Right wing politicians correct record: their gateway to cocaine was alcohol not marijuana. Prohibit what? http://t.co/lt7OfLInxg +12/08/2013,Politicians,@BarneyFrank,How can 100 bil $ more in Afghanistan tll 2024 do what 600 bil $ since 2003 hasn't done? #worstobambadecision http://t.co/fAeOrlloCu +11/25/2013,Politicians,@BarneyFrank,Money for war or money for health care...seems like an obvious choice #admityourmistakes http://t.co/zFaTdPhVCN +11/18/2013,Politicians,@BarneyFrank,Karnak rtns: Answer: Barney Frank & Iraqi weapons of mass destruction-Question: Name 2 things Dick Cheney lies about http://t.co/rlpuJFymEw +11/14/2013,Politicians,@BarneyFrank,"RT @UMassD: @BarneyFrank coming to #UMassD. Public Lecture ""How to Break the Stalemates: Political & Economic"" @Carney_Library, Nov. 21, 2p…" +11/12/2013,Politicians,@BarneyFrank,Rep. Michaud's announcement shows confidence in Mainers' good sense. http://t.co/BUbfodf9qo +11/04/2013,Politicians,@BarneyFrank,#progressivepolitics http://t.co/jdKTKjmHT4 +10/31/2013,Politicians,@BarneyFrank,"RT @FinancialCmte: In the 112th Congress, #HR992 was HR1838. Here’s what @BarneyFrank & 17 others @FSCDems said about it then, #inners. htt…" +10/31/2013,Politicians,@BarneyFrank,Way to go Red Sox! +10/30/2013,Politicians,@BarneyFrank,"RT @allinwithchris: TONIGHT: Who? @RepLanceNJ7, @cjoh, @DelegateDonna, @wendellpotter, @BarneyFrank, @Joelsberg, @FoodBank_Prez #inners" +10/29/2013,Politicians,@BarneyFrank,RT @CNBCClosingBell: LIVE NOW: Co-authors of Dodd-Frank @SenChrisDodd & @BarneyFrank. Tune in! +10/29/2013,Politicians,@BarneyFrank,"RT @CNBCClosingBell: #mustwatch at 3p ET @aetna's @mtbert, fmr SEC Mary Schapiro, @SenChrisDodd, @BarneyFrank, fmr US Treas Secy Paulson, @…" +10/29/2013,Politicians,@BarneyFrank,RT @UChiPolitics: .@BarneyFrank: Bad public policy to fine banks for doing what they were pressured to do. #fiveyearslater +10/28/2013,Politicians,@BarneyFrank,RT @WMESpeakers: @BarneyFrank will be LIVE at the Hyatt Regency Boston @HRBoston @ 4:30 pm! #DontMissIt #WMEspeakers +10/21/2013,Politicians,@BarneyFrank,"RT @allinwithchris: TONIGHT: Who? @BarneyFrank, @MichaelEDyson, @_ericstern, @evanasmith, @salamishah, @rtraister What? http://t.co/K9GhrYx…" +10/21/2013,Politicians,@BarneyFrank,"The Tea Party despises government, but likes what it does. http://t.co/NJlpMlIW9F" +10/17/2013,Politicians,@BarneyFrank,"Lesson to GOP: When deciding to drive through an obstacle course, don't put the vehicle on 'Cruz' control #driversTed" +10/16/2013,Politicians,@BarneyFrank,"RT @PoliticsNation: Boehner admits defeat @6 w/ @SenSanders, @KarenBassTweets, @BarneyFrank, @janschakowsky, @JamalSimmons, @HuntsmanAbby &…" +10/15/2013,Politicians,@BarneyFrank,Nobel Economy prize to Robert Shiller is entirely deserved-a man who combines great intellectual force w/ a strong sense of public morality +10/14/2013,Politicians,@BarneyFrank,"? to Boehner, why does Pres have 2 bribe u 2 let gov pay debts u voted to incur-Iraq war, tax cuts for wea;thy, etc ? http://t.co/I7t0exLZMJ" +10/11/2013,Politicians,@BarneyFrank,"@annakooiman vicious ""Muslim museum"" smear of @BarackObama is despicable, even for Fox. Her off-air, half-assed apology is contemptible." +10/07/2013,Politicians,@BarneyFrank,Brave Patriots needed again-sane Repbulicans w/ courage to dump Tea Party over board. http://t.co/EBJlw4HC9P +10/04/2013,Politicians,@BarneyFrank,Vote Democratic. We're not perfect-but they're NUTS! +10/03/2013,Politicians,@BarneyFrank,"GOP strategy for letting government function: Red Rover, Red Rover can poor children come over?" +07/01/2018,Politicians,@DavidCameron,@rebeccawatson except when your grand kids find you dope ass cast iron pans that are in A+ condition. +06/30/2018,Politicians,@DavidCameron,RT @UnburntWitch: https://t.co/rAyB7admXl +06/30/2018,Politicians,@DavidCameron,"Not sure if the sign reading ""Walls didn't work in Jurassic Park Either"" send the message you think it does dude. #KeepFamiliesTogetherMarch" +06/30/2018,Politicians,@DavidCameron,@SamanthaZero Capitalism Royale +06/30/2018,Politicians,@DavidCameron,@SamanthaZero 100 dollar bills parachute out of your wallet and onto Gabes private island. Only weapons are knives. +06/30/2018,Politicians,@DavidCameron,RT @dasharez0ne: FUCK ICE. SHUT ER DOWN https://t.co/IcW0TgHYau +06/30/2018,Politicians,@DavidCameron,@Danielleri Hydrate!!! +06/28/2018,Politicians,@DavidCameron,@radiatoryang Fuji tho +06/28/2018,Politicians,@DavidCameron,"RT @APTNNews: This little dancer made a big impact last week on #NationalIndigenousPeoplesDay in Camrose, Alberta. + +Two-year-old Albert Aps…" +06/28/2018,Politicians,@DavidCameron,"RT @motherboard: Science proves Wario is the best ""Mario Kart"" character https://t.co/OvmYpQpegj https://t.co/H8lIAYpYTM" +06/28/2018,Politicians,@DavidCameron,RT @cabel: exclusive footage of the democratic party remaining civil https://t.co/9IrjH5dpU5 +06/28/2018,Politicians,@DavidCameron,Hey. Know what? Lemonade is still great. 👑🐝 +06/28/2018,Politicians,@DavidCameron,RT @stevenspohn: If you want Nintendo to allow @AbleGamers and our allies to help improve the accessibility of these iconic videogame world… +06/28/2018,Politicians,@DavidCameron,RT @DankDuneMemes: https://t.co/bJ72t0sS7o +06/28/2018,Politicians,@DavidCameron,"@legobutts The quality has gone down hill in recent years. I've got older shirts that are fine, and newer shirts wh… https://t.co/dSiWdGMoL2" +06/27/2018,Politicians,@DavidCameron,RT @mikerugnetta: Maybe theyll seat Merrick Garland out of civility +06/27/2018,Politicians,@DavidCameron,"RT @mcclure111: Let Anthony Kennedy be always remembered as the man who legalized ethnic cleansing, then dashed out the door as quickly as…" +06/27/2018,Politicians,@DavidCameron,RT @austin_walker: Fuckkkkk offfff https://t.co/w1GmNQ2VEc +06/27/2018,Politicians,@DavidCameron,It keeps getting better https://t.co/CUoxuPLzGo +06/27/2018,Politicians,@DavidCameron,RT @tholzerman: Abolish ICE https://t.co/qQkY3UcrHE +06/27/2018,Politicians,@DavidCameron,@aegies There is one of these for Portland as well. Looks like Stargate symbols. +06/27/2018,Politicians,@DavidCameron,"RT @ava: In defiance of Trump, a federal judge in San Diego appointed by Bush Sr. has ruled that all children currently held must be reunit…" +06/27/2018,Politicians,@DavidCameron,@BrocrusherTCGG it is like it was made for you. https://t.co/G29WRd0d7d +06/27/2018,Politicians,@DavidCameron,RT @bendreyfuss: The video of Alexandria Ocasio-Cortez realizing she won is my favorite thing in the whole world https://t.co/CJuc5DnlLA (v… +06/27/2018,Politicians,@DavidCameron,@mudron A high action episode +06/27/2018,Politicians,@DavidCameron,RT @darrylayo: I was polite all day yesterday and baby jails still exist. +06/27/2018,Politicians,@DavidCameron,"RT @jg_environ: I was skeptical until I verified these clippings at @nytimes. In 1934, influential religious figures in US argued that Germ…" +06/27/2018,Politicians,@DavidCameron,RT @chainsawsuit: decorum https://t.co/Klwjsq8j2N https://t.co/VP63Te7kmN +06/26/2018,Politicians,@DavidCameron,@michael_bodden Don't bring me in on this. I've got my own problems. +06/25/2018,Politicians,@DavidCameron,RT @patrickklepek: I couldn't stop nodding my head while reading this very powerful piece. https://t.co/VbNWJs70fW +06/25/2018,Politicians,@DavidCameron,"RT @KivaBay: ""Let republicans eat in peace!"" is always a weird thing to say but especially when they're in the process of dismantling SNAP" +06/24/2018,Politicians,@DavidCameron,"“Kids are so vulgar these days."" + +Great-great-great-Grandparents : https://t.co/HImREDXKHw" +06/24/2018,Politicians,@DavidCameron,"RT @Abolish_ICE_Now: This is Josephine County Jail. It holds immigrants in detention at 1901 Northeast F Street, Grants Pass, OR. Its capac…" +06/24/2018,Politicians,@DavidCameron,"RT @Abolish_ICE_Now: This is Northern Oregon Correctional Facility. It holds immigrants in detention. It is at 211 Webber Road, The Dalles,…" +06/23/2018,Politicians,@DavidCameron,RT @pilky: A pharmacist should only be able to deny you a prescription for medical or legal reasons. If you have ethical problems go find a… +06/23/2018,Politicians,@DavidCameron,RT @patrickklepek: hell yeah https://t.co/ZmSrnmRwrJ +06/22/2018,Politicians,@DavidCameron,RT @Ada_Porg: When you first joined twitter vs now https://t.co/1jXrYtJE8M +06/22/2018,Politicians,@DavidCameron,@JoshOG Did your old one break? +06/20/2018,Politicians,@DavidCameron,@randygdub @saladinahmed Also you don't half to doc Trump voters because they never shut up about it +06/20/2018,Politicians,@DavidCameron,God this is literally in my back yard. https://t.co/NMCyAlxbO0 +06/20/2018,Politicians,@DavidCameron,"RT @Chloe0Thornton: YALL PLEASE HELP I NEVER ASK FOR ANYTHING IMMA ADOPT A KITTEN I JUST NEED 60,000 RETWEETS https://t.co/T2v49R69KH" +06/20/2018,Politicians,@DavidCameron,RT @TheCheekyGinger: https://t.co/HNHSBspJNz +06/20/2018,Politicians,@DavidCameron,@mudron or a goofy butt burger +06/19/2018,Politicians,@DavidCameron,RT @meetissai: TLに流れてきた二足の猫が可愛かったので粘土で再現してみました https://t.co/RitwZfPZ1X +06/19/2018,Politicians,@DavidCameron,RT @redford: i love pictures of cute dogs! like and share if you agree https://t.co/UkLqHgRRna +06/19/2018,Politicians,@DavidCameron,@patrickklepek my mom was obsessed with Dr. Mario on Gameboy. She would start at level 20 and play for hours. +06/19/2018,Politicians,@DavidCameron,@waypoint https://t.co/goA2g27oAz +06/18/2018,Politicians,@DavidCameron,"RT @EricaJoy: Friends who work for @Microsoft, + +FIGHT THIS. Make the biggest noise imaginable about it. + +Don't fall for the ""all companies…" +06/16/2018,Politicians,@DavidCameron,"hmmm + +https://t.co/f2nS4eZDrJ" +06/15/2018,Politicians,@DavidCameron,RT @CBR: REPORT: Jordan Peele Wants to Reboot #Gargoyles as a Movie https://t.co/kdxxW2iakb https://t.co/5s8up8hOiv +06/14/2018,Politicians,@DavidCameron,A kid's movie about bull fighting is super fucked up. +06/14/2018,Politicians,@DavidCameron,RT @RockLeeSmile: 100 Battle Royale developers drop into a court room... +06/13/2018,Politicians,@DavidCameron,@BossFightBooks https://t.co/dAAsCfbC8V +06/13/2018,Politicians,@DavidCameron,@The_Katbot Single player modes +06/13/2018,Politicians,@DavidCameron,RT @inechi__: RT for a chance to win 1 Magic Eyes Hat from Gatosaurio 👀 https://t.co/6MQ4OKL768 👀 They're magic 'cus the eyes glow in the d… +06/13/2018,Politicians,@DavidCameron,"RT @motherboard: Science proves Wario is the best ""Mario Kart"" character https://t.co/OvmYpQpegj https://t.co/ZOO750cc62" +06/12/2018,Politicians,@DavidCameron,RT @daresaypj: Bitch i am S C R E A M I N G https://t.co/GkZhweoQXA +06/11/2018,Politicians,@DavidCameron,@YourBoy_Moe @frytup @DanRyckert @alex_navarro Dishtopia. Now available at Dominos. +06/11/2018,Politicians,@DavidCameron,@frytup @DanRyckert @alex_navarro ...no... +06/11/2018,Politicians,@DavidCameron,RT @austin_walker: Fuck up nazis with your friends. And also do that in video games. +06/11/2018,Politicians,@DavidCameron,This is perfectly dumb. https://t.co/VoReeFMzug +06/10/2018,Politicians,@DavidCameron,@waypoint https://t.co/tTL9dziuo2 +06/10/2018,Politicians,@DavidCameron,RT @Darnn: russian dune cover https://t.co/DwsOu6kEYR +06/10/2018,Politicians,@DavidCameron,We are the demons https://t.co/7Yzgeb9EAM +06/10/2018,Politicians,@DavidCameron,@MrPope Miso proud of you +06/09/2018,Politicians,@DavidCameron,"Made home made butter, then used the left over buttermilk to make waffles. Best. Breakfast. Ever." +06/08/2018,Politicians,@DavidCameron,Fuck https://t.co/BZYp7dkb6P +06/07/2018,Politicians,@DavidCameron,@BrocrusherTCGG Yeah but how much store credit do you really need at a plaid? +06/07/2018,Politicians,@DavidCameron,My hairy fucking leg in a hammock. https://t.co/wuMtEYqAkr +06/06/2018,Politicians,@DavidCameron,"@BrocrusherTCGG ""Siri, search the web for MK-Ultra""" +06/05/2018,Politicians,@DavidCameron,@NerdGerhl Stream World Dig 2 +06/05/2018,Politicians,@DavidCameron,"RT @Ocasio2018: My campaign: + +- Triggered the *1st primary in 14 years* in NY-14 +- Is surging in a grassroots campaign against a powerful a…" +06/05/2018,Politicians,@DavidCameron,"RT @DiscordianKitty: Sir Isaac Newton never showed interest in women, but had a very close, personal relationship with a man, which, when i…" +06/04/2018,Politicians,@DavidCameron,@VerizonSupport I found a smashed up phone on the street. If I take it to a local Verizon store will they be able t… https://t.co/C7GueyKUMJ +06/04/2018,Politicians,@DavidCameron,@xoxogossipgita Do you have a camera in my home? +06/04/2018,Politicians,@DavidCameron,@JustinMcElroy @patrickklepek @VinnyCaravella Whoa check out this FMV game coming to Switch soon. Looks like Her St… https://t.co/W8QHmC8sIV +06/04/2018,Politicians,@DavidCameron,Watching old seasons of TV is kind of crazy because of how long they are. In the era of Netflix and their 10 episod… https://t.co/epQijcDOv4 +06/04/2018,Politicians,@DavidCameron,"In order to be pardoned, you have to be guilty of a crime." +06/04/2018,Politicians,@DavidCameron,"Got a Nintendo Switch over the weekend. The games that I ordered don't show up for another few days, but I download… https://t.co/mwQns5h5Xf" +06/04/2018,Politicians,@DavidCameron,RT @Cacophanus: Japanese ramen adverts are now a bit...intense. https://t.co/yCiKfqmdrG +06/04/2018,Politicians,@DavidCameron,@BrocrusherTCGG Even worse +06/04/2018,Politicians,@DavidCameron,Something crazy about police showing up to an anti police brutality protest in full riot gear. Makes me tired. +06/04/2018,Politicians,@DavidCameron,@typicalspoon Yeah that keeps popping up on mine as well. Considering deleting the post of mine so it goes away. +06/04/2018,Politicians,@DavidCameron,RT @Pdx_resistance: Please Share: @PortlandPolice telling violent alt-right fascists that they have probable cause to arrest them but won't… +06/03/2018,Politicians,@DavidCameron,"RT @TimesHero: People who care more about money for themselves *right now* than human rights, long term environmental and fiscal sustainabi…" +06/03/2018,Politicians,@DavidCameron,RT @Kekeflipnote: 🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐱🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥… +06/03/2018,Politicians,@DavidCameron,My router just died. Guess it is good to keep a spare sitting around. +06/03/2018,Politicians,@DavidCameron,"There is a ton of stuff on the Switch eShop, but I wasn't expecting fetish modeling. https://t.co/6dX8McKoyR" +06/02/2018,Politicians,@DavidCameron,RT @dasharez0ne: https://t.co/cYuHnuG2G2 +06/02/2018,Politicians,@DavidCameron,@Sonicdude2355 @sfc_moogle It didn't have a network connection or the Satellite tuners. +06/01/2018,Politicians,@DavidCameron,@fullbright @mossmouth I am so hype for this +05/31/2018,Politicians,@DavidCameron,RT @Malala: Hello from the other side 😳 @elonmusk https://t.co/pRTnyptZ1N +05/31/2018,Politicians,@DavidCameron,@mcclure111 Maybe they'll give you asylum +05/30/2018,Politicians,@DavidCameron,@plex Missed that. Thanks. +05/30/2018,Politicians,@DavidCameron,"@plex Hey, feature request for the new Podcast feature.Being able to import an OPML list of my subscriptions from m… https://t.co/cw3VAuPw5V" +05/30/2018,Politicians,@DavidCameron,This is 100% my shit. https://t.co/s3lFn6GvzR +05/30/2018,Politicians,@DavidCameron,RT @EliBraden: Roseanne puts the “Ambien” in “I am bein’ racist” +05/30/2018,Politicians,@DavidCameron,"With very little work and a few extra special effects ""The Hitman's Bodyguard"" could be a Nick Fury / Deadpool prequel story." +05/30/2018,Politicians,@DavidCameron,@Dixavd @carolynmichelle I think it took 3-6 months for Bank support to make it into Sun/Moon +05/30/2018,Politicians,@DavidCameron,"@Dixavd @carolynmichelle Pokemon bank is $5 a year, and I'd hope that they would bring it to switch so you can brin… https://t.co/VJKTCd4aIg" +05/30/2018,Politicians,@DavidCameron,RT @NPRinskeep: Hey thanks for listening. My job is not to be “positive” or “negative” but to tell true stories. Granted we may miss a stor… +05/30/2018,Politicians,@DavidCameron,RT @carolynmichelle: ❤️❤️❤️ https://t.co/bmFMYj8ke7 +05/29/2018,Politicians,@DavidCameron,RT @sirosenbaum: btw the reason little girls get obsessed with princesses is bc that is the only role in which girls are protagonists +05/29/2018,Politicians,@DavidCameron,"RT @HoarseWisperer: ABC didn’t fire Roseanne for being a racist. + +She was always a racist. + +ABC fired her because she wouldn’t keep her r…" +05/29/2018,Politicians,@DavidCameron,RT @vriGOpzvmMRE5Dv: 『ドンッ』 https://t.co/N9CUXBfIZn +05/29/2018,Politicians,@DavidCameron,RT @MIDImyers: whoops almost forgot to tweet today about the incredible new album that a select number of cool people (SOON TO INCLUDE YOU?… +05/28/2018,Politicians,@DavidCameron,@UnburntWitch Huh +05/28/2018,Politicians,@DavidCameron,"RT @maltyhops: retweet if you spot your kink: +-bondage +-feet +-role-play +-every single ice agent stripped down and covered in honey next to…" +05/28/2018,Politicians,@DavidCameron,RT @_michface: https://t.co/ScY3tFLaA7 +05/27/2018,Politicians,@DavidCameron,RT @ScottHech: “Prison bus for babies” in ICE detention. Look. At. This. https://t.co/A83DILg28Z +05/27/2018,Politicians,@DavidCameron,RT @gabrielamadej: mood https://t.co/QyTgxVlijE +05/27/2018,Politicians,@DavidCameron,"But then you look at this story out of Nebraska, where 118 pounds of Fentanyl were seized, and it is a wonder you d… https://t.co/rAo7jIs5MC" +05/27/2018,Politicians,@DavidCameron,"Two stories that jumped out at me today. First, shell fish near Seattle test positive for Opioids. Not a surprise c… https://t.co/jWYiH5z0JG" +05/26/2018,Politicians,@DavidCameron,RT @conorsen: There are 4 living men left who have walked on the moon. The youngest is 82. https://t.co/CutflsIBos +05/26/2018,Politicians,@DavidCameron,@HCJustinn are you going to put Bloodborne up on YouTube? +05/26/2018,Politicians,@DavidCameron,@mikeyface Anything in a box +05/25/2018,Politicians,@DavidCameron,Found a phone in the street. Screen totally smashed. Wondering how to find the owner. +05/25/2018,Politicians,@DavidCameron,RT @pcgamer: Three men involved in a swatting that led to the death of a Kansas man are now facing federal charges https://t.co/c0J5xsW7hj… +05/25/2018,Politicians,@DavidCameron,@aegies But I really want a switch noooooooow +05/25/2018,Politicians,@DavidCameron,RT @willkirkby: sorry not sorry https://t.co/4E57gIj4dw +05/25/2018,Politicians,@DavidCameron,"RT @ryanlcooper: tired: abolish ICE +wired: prosecute ICE + +https://t.co/xAM5t4eeXE" +05/24/2018,Politicians,@DavidCameron,"@TeamYouTube @jpm_507 Hey this is a really bad and annoying way of displaying videos. When I sub to a channel, I ex… https://t.co/0oD0e4UiH1" +05/24/2018,Politicians,@DavidCameron,@waltdwilliams An IMAX documentary about Beavers. I was sitting on the far edge of the big dome theater at the Oreg… https://t.co/YAn2oGk11W +05/24/2018,Politicians,@DavidCameron,"RT @uhshanti: GRIMES AND ELON MUSK, NOW THERE'S A UNION WORTH BUSTING HEYOOO UP TOP" +05/24/2018,Politicians,@DavidCameron,@Danielleri It has three of my favorite Dark Souls boss fights in it. +05/24/2018,Politicians,@DavidCameron,"RT @coolranchzaku: honestly it's extremely funny that Grimes was like ""my bf has NEVER UNION BUSTED!!!!!"" and within 36 hours he literally…" +05/24/2018,Politicians,@DavidCameron,This read like an Onion article. https://t.co/kEl50ad9j2 +05/22/2018,Politicians,@DavidCameron,"RT @FarbsMcFarbs: ATTENTION SURVIVOR +Captain Forever, Captain Successor, and Captain Impostor are now on Steam as Captain Forever Trilogy,…" +05/22/2018,Politicians,@DavidCameron,@RyanPagella @MIDImyers A+ dog +05/22/2018,Politicians,@DavidCameron,@robertashley That is the most white dude depiction of a crack pipe I've ever seen. +05/22/2018,Politicians,@DavidCameron,"@mudron With the current guy in charge of Xbox, I wouldn't rule it out. + +Plus the only Rare game I think I would n… https://t.co/yIJyIuWa29" +05/22/2018,Politicians,@DavidCameron,@FarbsMcFarbs Wishful thinking. The did do a pretty good pointer for World of Goo for docked mode though. https://t.co/VgfjRJLyig +05/22/2018,Politicians,@DavidCameron,@FarbsMcFarbs Can I be really annoying for a second? Do you think CF:Trilogy could work on Switch? Touch screen for building ships and such. +05/22/2018,Politicians,@DavidCameron,RT @MichaelSkolnik: RT if you support an assault weapons ban. +05/22/2018,Politicians,@DavidCameron,"@BrocrusherTCGG Same, but watching the video." +05/22/2018,Politicians,@DavidCameron,RT @helenasbby: life imitates art https://t.co/FLyQmG6J2Q +05/21/2018,Politicians,@DavidCameron,RT @willsmith: Ok. https://t.co/mZ1812RaYx +05/21/2018,Politicians,@DavidCameron,Me honestly https://t.co/PFvBwHpRuV +05/21/2018,Politicians,@DavidCameron,"Yo I just installed Firefox for the first time in a long time, and it rocks. Makes Chrome look real bad." +05/21/2018,Politicians,@DavidCameron,@markmacd @DcalebX @johntv Id tech has always been super portable though. RE7 Might not be as well designed. +05/19/2018,Politicians,@DavidCameron,RT @JordanUhl: ¯\_(ツ)_/¯ https://t.co/aQvL95Ni2R +05/19/2018,Politicians,@DavidCameron,"Question @Microsoft , why did I schedule this to happen overnight if this is what I get logging in this morning https://t.co/wbSWXxvBSy" +05/18/2018,Politicians,@DavidCameron,"RT @robtrench: The John Wick Twitter account is just the old I, Frankenstein Twitter account repurposed. Surprised Lionsgate hasn't deleted…" +05/18/2018,Politicians,@DavidCameron,@MaxTemkin It is a known fact that Monsters Incorporated has the highest shooting rate in all the monster world. https://t.co/fZoRjGzeKR +05/18/2018,Politicians,@DavidCameron,@willsmith They make them that have a big round ball instead of deadly tip. Bought some last summer +05/18/2018,Politicians,@DavidCameron,This feels like the fundamental difference between the older and younger generations. https://t.co/KQ74PwS8qh +05/17/2018,Politicians,@DavidCameron,@typicalspoon Also at Kent State +05/17/2018,Politicians,@DavidCameron,@kobunheat I think that is just one is the interface options that the industry already used. Like the rock band pedal. +05/17/2018,Politicians,@DavidCameron,@BriannaShrum Short Circuit 2 +05/17/2018,Politicians,@DavidCameron,@ShaneWatch I don't think he knows how Watergate wrapped up. +05/17/2018,Politicians,@DavidCameron,@patrickklepek Give me a whole waypoint radio episode about this. Such a great thing. I hope that the industry can… https://t.co/xbZtrr7Vvq +05/17/2018,Politicians,@DavidCameron,This is really cool. Bravo. https://t.co/NM0MkmMUKG +05/17/2018,Politicians,@DavidCameron,@Danielleri I know several women who went and got a Norplant right after the election because they assumed BC wasn'… https://t.co/l9LyV8NUOa +05/17/2018,Politicians,@DavidCameron,I would love to find a copy of this guide book. This is 100% my shit. https://t.co/8vIVY0VvpB +05/17/2018,Politicians,@DavidCameron,This is super cool https://t.co/r5UWIhrMo2 +05/17/2018,Politicians,@DavidCameron,"RT @lunalindsey: CW: Eugenics + +WE TOLD YOU ALL THEY'RE NAZIS. YES, EXACTLY THOSE KIND OF NAZIS. + +I'm so angry. https://t.co/cO6loRiaJ3" +05/16/2018,Politicians,@DavidCameron,We have a monster in charge. Monsters voted for it. Monsters are following its orders. +05/16/2018,Politicians,@DavidCameron,RT @tetrafox_: https://t.co/BaCqC2pNs0 +05/15/2018,Politicians,@DavidCameron,@JurassicWorld https://t.co/knAY1Np3Yw +05/15/2018,Politicians,@DavidCameron,RT @AmidaCareNY: Virginia resident Sydney Walther who received her gender-affirmation surgery at @NYULangone is one of many whose quality o… +05/15/2018,Politicians,@DavidCameron,@DarkSoulsGame Gravelord Nito +05/15/2018,Politicians,@DavidCameron,"RT @McJesse: I took every shot from behind-the-scenes featurettes where Dr. Strange is in front of a greenscreen, and edited him into a wat…" +05/15/2018,Politicians,@DavidCameron,RT @LimitedRunDoug: So this happened tonight in Akihabara! https://t.co/crHzSTQnM3 +05/13/2018,Politicians,@DavidCameron,"RT @TGAW: Today's #WeTheRosies piece is stuffed with names of creative women who inspire me and my family. Packed so, so, so very full, yo…" +05/13/2018,Politicians,@DavidCameron,@kobunheat At first I thought this was a photo from the Atari landfill site +05/13/2018,Politicians,@DavidCameron,@danikaharrod I that a second life avatar? +05/12/2018,Politicians,@DavidCameron,@BrocrusherTCGG Don't put salt in the wound. +05/11/2018,Politicians,@DavidCameron,RT @SeriousTyberius: https://t.co/CrhWU3Ugh2 +05/11/2018,Politicians,@DavidCameron,This dude was chilling with me while I ate lunch. https://t.co/ZzEmPWsNII +05/11/2018,Politicians,@DavidCameron,@robertashley @nsuttner Are they muffins? +05/11/2018,Politicians,@DavidCameron,@bonebonebot My daughter loves this cat. +05/11/2018,Politicians,@DavidCameron,@cabel This has been annoying me all day. +05/11/2018,Politicians,@DavidCameron,"RT @RobertONeill31: Well. I mean. + +*gestures broadly at everything* https://t.co/dBNo54VjXH" +05/10/2018,Politicians,@DavidCameron,RT @Shaken_Martinez: PSA https://t.co/Qvk2QYx3lS +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG @typicalspoon @Ploxerer Maybe the goal is to fuck some sense into him. +05/10/2018,Politicians,@DavidCameron,RT @wyntonred: no regrets https://t.co/8KcIkROzUW +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG get your ass to trader joes and grab a bottle of margarita wine. +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG yuck i don't like this one. +05/09/2018,Politicians,@DavidCameron,@waypoint @patrickklepek https://t.co/toI5ESU33c +05/09/2018,Politicians,@DavidCameron,"If you use the word ""preternaturally"" in idle conversation we will probably get along just fine." +05/09/2018,Politicians,@DavidCameron,@HazelMonforton But the that's correct +05/09/2018,Politicians,@DavidCameron,RT @NalediMashishi: 1) the Vatican approved & personally donated 50+ items to the collection. Cultural appropriation requires lack of conse… +05/09/2018,Politicians,@DavidCameron,RT @Zin5ki: https://t.co/CrpRxDCOi7 +05/08/2018,Politicians,@DavidCameron,RT @SOEDESCO: It's #GIVEAWAY time! This time you can #WIN a #NintendoSwitch console + a physical copy of #Owlboy! All you have to do is #fo… +05/08/2018,Politicians,@DavidCameron,RT @papsby: https://t.co/3NR1brt1i7 +05/08/2018,Politicians,@DavidCameron,RT @JeremyPoxon: https://t.co/kPWZMvciVN +05/07/2018,Politicians,@DavidCameron,@xpatriciah same +05/06/2018,Politicians,@DavidCameron,@BrocrusherTCGG The nerve of some white boys. +05/05/2018,Politicians,@DavidCameron,@NPR But we already know that it is @tedcruz +05/05/2018,Politicians,@DavidCameron,@katewelchhhh @Iscaneus Wow +05/05/2018,Politicians,@DavidCameron,@BrocrusherTCGG same +05/05/2018,Politicians,@DavidCameron,"RT @dialacina: Here's a free example of how you can make this about his being a sexist asshole: + +""It's probably good DJ Khaled doesn't eat…" +05/05/2018,Politicians,@DavidCameron,"My quick review. Tasty as any mix you'd pour tequila into. Not as good as from scratch. For $14 at TJs, well worth… https://t.co/zyroS6mTyn" +05/05/2018,Politicians,@DavidCameron,RT @SJSchauer: Oh my fucking god it’s the fucking dictionary coming for DJ Khaled. https://t.co/dY0fkZoOHW +05/05/2018,Politicians,@DavidCameron,RT @smashmouth: A King who doesn't is no King at all. https://t.co/Jg1GAlfIjI +05/05/2018,Politicians,@DavidCameron,"RT @davidcameron: Oh captain, my captain. +#teammargarita2015 + +https://t.co/4oBsepdRA8" +05/05/2018,Politicians,@DavidCameron,There has been a development #teammargarita2015 https://t.co/5CKmbiKxjM +05/04/2018,Politicians,@DavidCameron,@rockpapershot I think humble monthly is a good Netflix analog. New stuff every month. A bank of classics you can g… https://t.co/GE3RsPsKTE +05/04/2018,Politicians,@DavidCameron,"Facebook, where I go to read posts forwarded by my extended family complaining about the youth of the world being c… https://t.co/0eStJdDt1g" +05/04/2018,Politicians,@DavidCameron,@GaryBuh Looks like someone fell asleep at the keyboard while drafting that building's design. +06/30/2018,Politicians,@VP,Honored to meet with President @Lenin Moreno of Ecuador this week. The United States will work with Ecuador in new… https://t.co/zGHcDUiwt9 +06/30/2018,Politicians,@VP,"RT @WhiteHouse: Today marks one year since President Trump relaunched the National Space Council and named @VP Pence its chair, kicking off…" +06/29/2018,Politicians,@VP,RT @WhiteHouse: American workers and families have seen some of the biggest benefits from President Trump’s tax cuts. https://t.co/pkBAlYba… +06/29/2018,Politicians,@VP,Thank you @PressClubDC for bringing attention to the case of photojournalist Shawkan. He & other non-violent activi… https://t.co/GFp8pBH6eT +06/29/2018,Politicians,@VP,An important trip to South and Central America. Productive discussions on isolating Venezuela’s brutal dictatorship… https://t.co/cBPuZgKRcm +06/29/2018,Politicians,@VP,"RT @SecondLady: We’re back in the great USA! 🇺🇸 Thank you to Brazil, Ecuador, and Guatemala for the wonderful hospitality this week! https:…" +06/29/2018,Politicians,@VP,Pleased the Senate confirmed GEN Austin “Scott” Miller to be our new military commander in Afghanistan last night.… https://t.co/6UyuEC1acE +06/29/2018,Politicians,@VP,"Well said, Mr. @POTUS. No journalist should ever feel afraid to go into their newsroom and do the important reporti… https://t.co/W8PiSy4hG7" +06/29/2018,Politicians,@VP,GREAT DAY at the @WhiteHouse celebrating the 6 month anniversary of signing the LARGEST tax cuts and reforms in Ame… https://t.co/3QtYc2EgfB +06/29/2018,Politicians,@VP,"RT @WhiteHouse: “That's why our economy is booming, that’s why our families are thriving, that’s why our businesses are growing. And that i…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: ""The economy is indeed doing well. Six months ago, we unleashed an economic miracle by signing the biggest tax cuts and ref…" +06/29/2018,Politicians,@VP,"RT @realDonaldTrump: Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement account c…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: .@realDonaldTrump: ""There's never been a better time to hire in America, to invest in America, and to start living the Amer…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: President Trump’s tax cuts have made it possible for American small business owners like Mike Zaffaroni to invest, hire, an…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: President Trump's Tax Cuts and Jobs Act eliminated dozens of special interest tax breaks and loopholes, raising $4 trillion…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: .@realDonaldTrump: ""At the center of America's economic resurgence are the massive tax cuts that I signed into law six mont…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: The stream of good news for American workers is something everyone—Republican, Democrat, or otherwise—should celebrate. htt…" +06/29/2018,Politicians,@VP,.@SecondLady and I thanked our service members stationed in Central America last night as we departed Guatemala. Ou… https://t.co/9z3sCyP5B7 +06/29/2018,Politicians,@VP,RT @VPComDir: .@VP Pence had a blunt message for three Central American governments: You must do more to stop migrants who enter the United… +06/29/2018,Politicians,@VP,"Last night, Karen and I met with families displaced by the Volcán de Fuego eruption in Guatemala. The U.S. will con… https://t.co/IzT6bnQnee" +06/29/2018,Politicians,@VP,RT @SecondLady: Thank you to the First Lady of Guatemala for traveling with us to the shelter in Escuintla. On our way there we saw the Fue… +06/29/2018,Politicians,@VP,"Discussed specific new steps that Guatemala, Honduras, and El Salvador can take. And told the leaders of El Salvado… https://t.co/v4kQgNJJdf" +06/29/2018,Politicians,@VP,"To the people of Guatemala, Honduras, and El Salvador: You are our neighbors. We want you and your nations to prosp… https://t.co/fjYqiBrAxZ" +06/29/2018,Politicians,@VP,"I have a message for the people of Guatemala, Honduras, and El Salvador… You are our neighbors. We want you and you… https://t.co/jWKZArHksF" +06/29/2018,Politicians,@VP,Tell your people that coming to the U.S. illegally will only result in a hard journey and a harder life…Take down p… https://t.co/0wSJ3evUHa +06/29/2018,Politicians,@VP,As I told their presidents: This exodus must end. It’s a threat to our security. Just as we respect your borders an… https://t.co/MgOm4fDoJt +06/29/2018,Politicians,@VP,"The numbers are staggering. Since the start of this year, more than 150,000 Guatemalans, Hondurans, and Salvadorans… https://t.co/vyJr3sdA1r" +06/29/2018,Politicians,@VP,"Thank you @jimmymoralesgt of Guatemala for hosting important multilateral talks with @JuanOrlandoH of Honduras, and… https://t.co/TL8CRx0taM" +06/28/2018,Politicians,@VP,RT @SecondLady: Traveled to Escuintla to meet with families displaced by the June 3rd Fuego Volcano eruption in Guatemala. Visited a shelte… +06/28/2018,Politicians,@VP,Just arrived in Guatemala City with @SecNielsen for a critical meeting with Latin American leaders on how to addres… https://t.co/ht3CezFmVq +06/28/2018,Politicians,@VP,Just arrived in Guatemala. We are monitoring the horrific shooting at the Capital Gazette in Annapolis. Karen & I a… https://t.co/nj9Beax1c2 +06/28/2018,Politicians,@VP,"Venezuela was once a beacon of prosperity and freedom. But under Nicolás Maduro, Venezuela’s great democracy has be… https://t.co/l51UvG7ZQH" +06/28/2018,Politicians,@VP,"Freedom is the foundation of the friendship between the United States and Ecuador, and so has it been for nearly 20… https://t.co/RPTaotamnZ" +06/28/2018,Politicians,@VP,"RT @SecondLady: Helped to reconnect a @SisterCitiesInt relationship between Quito and Coral Gables, FL through a gift exchange between the…" +06/28/2018,Politicians,@VP,RT @SecondLady: Enjoyed a lovely visit with First Lady Rocío González de Moreno at the Presidential Palace where she showed us a beautiful… +06/28/2018,Politicians,@VP,"Thank you, President @Lenin Moreno for hosting us today. Ours was destined to be a Hemisphere of Freedom. History w… https://t.co/a8qFAYnagf" +06/28/2018,Politicians,@VP,RT @VP: Honored to be in Ecuador. Thank you to our gracious hosts President @Lenin Moreno & First Lady Rocío González de Moreno. Freedom ha… +06/28/2018,Politicians,@VP,Honored to be in Ecuador. Thank you to our gracious hosts President @Lenin Moreno & First Lady Rocío González de Mo… https://t.co/kHh1SITXOQ +06/28/2018,Politicians,@VP,Toured the great ports along the Amazon River this afternoon. The U.S. and Brazil have great opportunity to grow ou… https://t.co/60MPIhD53z +06/28/2018,Politicians,@VP,Great visit to Brazil. Thank you to President @MichelTemer for your hospitality in Brasília. We are all working tog… https://t.co/ztlFGX0d9K +06/28/2018,Politicians,@VP,Today I heard the harrowing stories of families who fled government oppression and near starvation under the Maduro… https://t.co/jmfR29xMZx +06/27/2018,Politicians,@VP,"Powerful visit with families who fled the Maduro regime at the Santa Catarina Shelter in Manaus, Brazil today. Thes… https://t.co/0EeOXoXCxx" +06/27/2018,Politicians,@VP,Thank you to Justice Anthony Kennedy for your long career of service on the SCOTUS. @POTUS Trump will nominate a st… https://t.co/wY3S1VeWpY +06/27/2018,Politicians,@VP,"The Bible tells us “where the spirit of the Lord is, there is freedom.” I truly do know and believe, knowing the he… https://t.co/5PqbSPI53S" +06/27/2018,Politicians,@VP,Freedom and democracy will prevail in Venezuela. Libertad will be restored. https://t.co/lDa5HR9TGm +06/27/2018,Politicians,@VP,"Yesterday, we announced an additional $10 million that will go to supporting Venezuelan families including more tha… https://t.co/BbnyJi5orw" +06/27/2018,Politicians,@VP,"Karen & I met with families who fled Venezuela not to seek a better life; they came to Brazil to live, to survive.… https://t.co/8vsxQXkoOe" +06/27/2018,Politicians,@VP,.@POTUS and I encourage the US House to get behind STRONG borders & security by passing the Border Security and Imm… https://t.co/UGx52Xam3d +06/27/2018,Politicians,@VP,RT @SecondLady: ICYMI: Second Lady Karen Pence helps to renew Sister City relationship during visit in Brasilia. ⁦@SisterCitiesInt⁩ https:… +06/27/2018,Politicians,@VP,Thank you President @MichelTemer for the warm hospitality in Brasília. Headed to Manaus to the Santa Catarina shelt… https://t.co/iTsKPn42IP +06/27/2018,Politicians,@VP,RT @SecondLady: Enjoyed a lovely visit to the #DomBosco Santuary--one of Brasilia's most famous churches. The beauty is breathtaking! https… +06/26/2018,Politicians,@VP,Privileged to visit with @USCitsBrazil Embassy personnel and their families stationed in Brasília this evening. THA… https://t.co/dPGwuoLRhB +06/26/2018,Politicians,@VP,"RT @SecondLady: As Honorary Vice Chair of @SisterCitiesInt, it was a pleasure to highlight the Sister Cities relationship between Washingto…" +06/26/2018,Politicians,@VP,To the people of Central America: You are our neighbors. We want you & your nations to prosper. Don’t risk your liv… https://t.co/ODCOxxJdY1 +06/26/2018,Politicians,@VP,"To all the nations of the region, let me say with great respect, that just as the United States respects your borde… https://t.co/jIfnncqkl0" +06/26/2018,Politicians,@VP,"The United States will continue to stand with the good people of Venezuela, and we will continue to stand with Braz… https://t.co/e9epRKr8ve" +06/26/2018,Politicians,@VP,"Today, I’m pleased to announce that the United States will provide additional support of nearly $10 million to Vene… https://t.co/sisLYnzpN5" +06/26/2018,Politicians,@VP,The United States and Brazil are bound together by our past and our principles. The United States was the first nat… https://t.co/El8dqeB7UQ +06/26/2018,Politicians,@VP,Productive working lunch with Brazilian delegation & US diplomats. Thanks President @MichelTemer & Foreign Minister… https://t.co/1QgE9yXLVe +06/26/2018,Politicians,@VP,Bilateral meeting today with President @MichelTemer of Brazil. We discussed the great friendship between our countr… https://t.co/FkmHWDat7t +06/26/2018,Politicians,@VP,Just touched down in Brasília. Look forward to meeting with President @MichelTemer & the Brazilian delegation to re… https://t.co/XsKw33Mxoh +06/26/2018,Politicians,@VP,Taking off to Brazil — on my 3rd trip to Latin America as Vice President. Look forward to working w/ allies to put… https://t.co/EYsDyKS8zk +06/26/2018,Politicians,@VP,"RT @WhiteHouse: Today, @realDonaldTrump and @FLOTUS welcomed @KingAbdullahII and @QueenRania of the Hashemite Kingdom of Jordan to the Whit…" +06/26/2018,Politicians,@VP,Great to see my friend @KingAbdullahII of Jordan in Washington D.C. today. Productive meeting this afternoon at the… https://t.co/Nur9Gu5rOO +06/25/2018,Politicians,@VP,"Spoke with Prime Minister @HaiderAlAbadi of Iraq this morning. Discussed our joint efforts to defeat ISIS, recent I… https://t.co/PAMs9jundp" +06/25/2018,Politicians,@VP,"RT @WhiteHouse: The results of President Trump's tax cuts can be seen in our Nation’s business environment, as American companies start inv…" +06/24/2018,Politicians,@VP,RT @realDonaldTrump: AMERICA IS OPEN FOR BUSINESS! https://t.co/ZjdlHwJlxm +06/24/2018,Politicians,@VP,"RT @WhiteHouse: ""…lower taxes and fewer regulations get results. Thank you very much for leading on those reforms."" https://t.co/l4z5wsIEf9" +06/24/2018,Politicians,@VP,"RT @WhiteHouse: ""Your Tax Cuts enabled our owner... to give back $1 million collectively to all of his employees, myself included. You have…" +06/23/2018,Politicians,@VP,"Happy 70th Birthday to an inspiring American and a great Supreme Court Justice, Clarence Thomas! Honored to welcome… https://t.co/meYb7jEpiw" +06/23/2018,Politicians,@VP,"Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the… https://t.co/KQDUnpNVt5" +06/22/2018,Politicians,@VP,"Amid the national conversation on immigration, we must never forget the heartbreaking loss that Angel Families have… https://t.co/UlmeLYyAN1" +06/22/2018,Politicians,@VP,"RT @WhiteHouse: ""For years their pain was met with silence, their plight with indifference, but no more..."" https://t.co/LWxcMJJk5j" +06/22/2018,Politicians,@VP,"RT @WhiteHouse: Six months ago today, President Trump signed the Tax Cuts & Jobs Act. Now, the economy is booming, small businesses are thr…" +06/22/2018,Politicians,@VP,RT @FLOTUS: Visiting w children at the shelter in #Texas yesterday was very touching. Despite the difficult circumstances children were in… +06/22/2018,Politicians,@VP,"Spoke with President-Elect @IvanDuque of Colombia today, stressing the need to move decisively to cut drug producti… https://t.co/F2sdKaOU6p" +06/22/2018,Politicians,@VP,"6 months after @POTUS signed the largest tax cuts and reforms into law: +✅ America’s economy is making a comeback. +✅… https://t.co/VQyUd75Scq" +06/22/2018,Politicians,@VP,Proud of our @FLOTUS. https://t.co/TDkFOK9wZ4 +06/21/2018,Politicians,@VP,"Charles Krauthammer will long be remembered for his eloquence, his triumph in hardship, and his countless contribut… https://t.co/CgW8REQ8cT" +06/21/2018,Politicians,@VP,RT @realDonaldTrump: Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/21/2018,Politicians,@VP,Working lunch today with @POTUS and many great governors who are working with the Trump Administration to bring job… https://t.co/G5ohtknPvj +06/21/2018,Politicians,@VP,Proud of this @Cabinet – dedicated patriots – working tirelessly under @POTUS Trump’s leadership to advance our age… https://t.co/Kf0YCiVdRp +06/21/2018,Politicians,@VP,RT @WhiteHouse: Lawmakers must still pass legislation to secure our border and finally and fully allow family and minor detention and promp… +06/21/2018,Politicians,@VP,Honored to welcome Carl Anderson from @KofC to the @WhiteHouse. The Knights of Columbus play a vital role in advoca… https://t.co/wE5f1meXXg +06/20/2018,Politicians,@VP,"Now we are calling on Congress to #ChangeTheLaws, secure our border, close loopholes, and take the action necessary… https://t.co/q5nUR3UyxO" +06/20/2018,Politicians,@VP,We don’t have to choose between being a country of law & order with a secure border and being a country that demons… https://t.co/FrTGUNgbMZ +06/20/2018,Politicians,@VP,"By taking this action, @POTUS will make it possible for us to enforce the law against individuals who come into our… https://t.co/iaMaPOtowL" +06/20/2018,Politicians,@VP,"An honor to host President @JuanOrlandoH of Honduras today to reinforce the strong partnership between our nations,… https://t.co/lZaICeLl8o" +06/20/2018,Politicians,@VP,RT @WhiteHouse: Here is the text of the executive order President Trump just signed: https://t.co/sM9e5aWWZR +06/20/2018,Politicians,@VP,"Great to catch up with my friend @GovHolcomb at the @WhiteHouse this morning. Nearly 50,000 jobs created in the gre… https://t.co/dwawmX53tQ" +06/20/2018,Politicians,@VP,"RT @syracusedotcom: .@VP Mike Pence tours Nucor mill, tells Auburn NY workers 'steel is back!' (video) https://t.co/pY3RlQuyGJ" +06/20/2018,Politicians,@VP,GREAT to be in Philadelphia today - and honored to shake hands with PA law enforcement officers who tirelessly work… https://t.co/cNMYtbK0HT +06/19/2018,Politicians,@VP,RT @SecondLady: Enjoyed meeting with military spouses serving with the New York National Guard. Thank you for sharing your stories! 🇺🇸 http… +06/19/2018,Politicians,@VP,RT @SecondLady: Great visit at @UpstateGolisano! Enjoyed learning about the art therapy program and meeting DJ! https://t.co/bVpyysPf7M +06/19/2018,Politicians,@VP,Today the U.S. took a stand against some of the world’s worst human rights violators by withdrawing from the United… https://t.co/a6xubBA0KQ +06/19/2018,Politicians,@VP,"This is sad. Schumer would rather play politics than solve problems and secure our border. Chuck, THAT makes no sen… https://t.co/a4ejARvbtZ" +06/19/2018,Politicians,@VP,Love having @SecondLady on the road with me. https://t.co/TnYQWHGd8y +06/19/2018,Politicians,@VP,"Thank you Nucor Steel! Because of @POTUS Trump’s tax cuts, Nucor is investing in new technology and plans to create… https://t.co/xjEoL7zB38" +06/19/2018,Politicians,@VP,"Since our election, businesses large and small have created more than 3.4 million new jobs – including over 174,400… https://t.co/64Z1R3Zykc" +06/19/2018,Politicians,@VP,I want to thank Nucor Steel and the example this company is setting… Steel is back and Nucor is proving it every da… https://t.co/1AI61sbxhn +06/19/2018,Politicians,@VP,I want to thank @RepJohnKatko for supporting policies that are making a real difference for Central New York’s work… https://t.co/mdyOrRaMo6 +06/19/2018,Politicians,@VP,"For almost half a century, Nucor Steel has been a key part of why steel in America is the best steel in the world.… https://t.co/7hi1N5LvCG" +06/19/2018,Politicians,@VP,Great to be back in the Empire State and welcomed by the men & women of the 174th Attack Wing of the New York Air N… https://t.co/TWtmVGBDTY +06/19/2018,Politicians,@VP,On my way to Syracuse today to meet with great manufacturers who are THRIVING in the Trump economy. @POTUS Trump’s… https://t.co/EBdTZ6m6dN +06/19/2018,Politicians,@VP,Heading to Syracuse today to talk about how @POTUS’ economic agenda is expanding opportunity & putting more money i… https://t.co/ZtLEJvkeij +06/18/2018,Politicians,@VP,"RT @WhiteHouse: Today, President Trump delivered remarks as the Space Council gathered to discuss American leadership in space exploration…" +06/18/2018,Politicians,@VP,"Great Nat'l Space Council meeting. @POTUS signed Space Policy Directive–3, directing US gov’t & industry to impleme… https://t.co/YLrY8iHGZe" +06/18/2018,Politicians,@VP,"As @POTUS Trump said at the beginning of today’s National Space Council meeting, “Now we are ready to begin the nex… https://t.co/VmUTn24MPp" +06/18/2018,Politicians,@VP,Honored to be at the @WhiteHouse for the third meeting of the National Space Council with the Users’ Advisory Group… https://t.co/Gg9QdriaZV +06/18/2018,Politicians,@VP,WATCH LIVE: The National Space Council meets today and will be joined by @POTUS Trump. This President took a critic… https://t.co/tCkcP7BoLx +06/18/2018,Politicians,@VP,"RT @WhiteHouse: President Trump participates in a meeting of the National Space Council. + +Watch live ➡️ https://t.co/EmsdctGWtd https://t.…" +06/17/2018,Politicians,@VP,Happy Father's Day to all the great Dads across America! +06/16/2018,Politicians,@VP,"RT @WhiteHouse: “Americans must demand their lawmakers support the legislation we need to defeat MS-13 once and for all, and to ensure ever…" +06/16/2018,Politicians,@VP,THANK YOU to the great police in Ohio and Michigan! Our police are the best of the best. https://t.co/ef28d1bXZX +06/16/2018,Politicians,@VP,Great day meeting with the good people of Ohio and talking about our historic tax cuts. We cut taxes for businesses… https://t.co/Hyc6XcMBUP +06/15/2018,Politicians,@VP,"Great to be with the hardworking people at a growing company, @Frank_Rewold & Sons in Michigan. Thanks to @POTUS Tr… https://t.co/l9fAQ1wEQL" +06/15/2018,Politicians,@VP,.@SenSherrodBrown actually voted no on our historic tax cuts because he called them a “scam” – but the truth is our… https://t.co/QSiqZs9YPZ +06/15/2018,Politicians,@VP,"Since @POTUS Trump signed these tax cuts into law, companies across Ohio have announced bigger raises, better benef… https://t.co/hjMqvdZFFn" +06/15/2018,Politicians,@VP,"Under @POTUS Trump’s leadership, manufacturers large and small have added more than 330,000 new jobs – including mo… https://t.co/FjXqUD6NvQ" +06/15/2018,Politicians,@VP,"Since Ohio voted to elect our President, businesses have created more than 3.4 million jobs – including nearly 100,… https://t.co/Fz0p82xvRN" +06/15/2018,Politicians,@VP,"And this is just the beginning, because our tax cuts will keep spurring more growth and higher wages – and in the y… https://t.co/1QNln5QdAo" +06/15/2018,Politicians,@VP,"Since Ohio voted to elect our @POTUS, businesses have created more than 3.4 million jobs across this country – incl… https://t.co/0QTrTdpQdJ" +06/15/2018,Politicians,@VP,".@POTUS promised to cut taxes across the board for working families, job creators, and family farms – and with the… https://t.co/uV7rR5jrgf" +06/15/2018,Politicians,@VP,".@POTUS Trump promised to rebuild our military, restore the arsenal of democracy, and once again give our Soldiers,… https://t.co/FAlQGNFfvc" +06/15/2018,Politicians,@VP,It is great to be back in the Buckeye State – with the men and women who elected a Congress and a @POTUS who enacte… https://t.co/SisMIgA52C +06/15/2018,Politicians,@VP,".@POTUS Trump’s tax cuts are putting Ohio first. In just the past six months, more than 95,200 Ohio workers have be… https://t.co/eeHDryDmz9" +06/15/2018,Politicians,@VP,"Unemployment hasn’t been lower in nearly 50 years, and we’ve reached the lowest unemployment rate for African-Ameri… https://t.co/MXuR4PWUSQ" +06/15/2018,Politicians,@VP,"Since election day, businesses have created more than 3.4 million new jobs – including nearly 80,000 in Michigan –… https://t.co/cKdwhOVg73" +06/15/2018,Politicians,@VP,"Visited @frank_rewold & Sons in Rochester, MI. This great American company was founded 100 years ago this year, and… https://t.co/RPixgFr6Js" +06/15/2018,Politicians,@VP,Great to be back in the Wolverine State! @POTUS Trump’s tax cuts are bringing jobs back to Michigan. https://t.co/8GNPPWHVYd +06/15/2018,Politicians,@VP,"RT @SecondLady: #FlashbackFriday to last night when we hosted military families at the Vice President's Residence! Our dog, Harley made a b…" +06/15/2018,Politicians,@VP,Heading to Michigan and Ohio today. @POTUS tax cuts are bringing jobs and investment back to the Midwest! https://t.co/I1Ry5JopyM +06/15/2018,Politicians,@VP,RT @SecondLady: We truly enjoyed spending our evening at the @VP Residence with children and spouses of military service members currently… +06/15/2018,Politicians,@VP,.@SecondLady & I welcomed military families back to the Vice President’s Residence tonight for our annual pool part… https://t.co/hMwELmr7qw +06/14/2018,Politicians,@VP,"“In fact, the Democrats have abandoned DACA. And by their obstruction they’ve abandoned the opportunity to enact co… https://t.co/c8YH9FcUwg" +06/14/2018,Politicians,@VP,"Today at #NHPB18: “Despite what you may have heard, the Democrats just don’t want to make a deal. They don’t want t… https://t.co/5wKg3AyLe6" +06/14/2018,Politicians,@VP,.@POTUS Trump – in his first meeting with the leader of North Korea – got Kim Jong-Un to commit to the full denucle… https://t.co/wi9Ufvq9bO +06/14/2018,Politicians,@VP,"Must read @USAIDMarkGreen op-ed in the @WSJ: “At the direction of @POTUS & @VP, @USAID is now redoubling its effort… https://t.co/dzF0ELIGd7" +06/14/2018,Politicians,@VP,A beautiful night for the #CongressionalBaseballGame – a bipartisan event for a worthy cause. GREAT to see my frien… https://t.co/dQJJr8flq9 +06/14/2018,Politicians,@VP,"Happy Birthday, @USArmy! Celebrating 243 years that the Army has kept America safe. 🇺🇸 https://t.co/q5a1zpKaD3" +06/14/2018,Politicians,@VP,"“I pledge allegiance to the Flag of the United States of America, and to the Republic for which it stands, one Nati… https://t.co/89rocFwjXB" +06/14/2018,Politicians,@VP,"Happy Birthday, Mr. @POTUS! https://t.co/e84RUSdMQF" +06/14/2018,Politicians,@VP,And I couldn’t be more proud to serve with a President who stands without apology for the sanctity of human life –… https://t.co/N2uluRRxcl +06/14/2018,Politicians,@VP,"The true strength of this country doesn’t come just from our economy, it can’t only be measured only by our materia… https://t.co/0HjIj1ImfI" +06/14/2018,Politicians,@VP,"And unemployment hasn’t been lower in nearly 50 years – and under this President, we’ve actually seen the lowest Hi… https://t.co/73WiyVSWKJ" +06/14/2018,Politicians,@VP,Small business optimism is at a record high – and nearly nine out of ten Hispanic business owners see greater opportunity the years ahead… +06/14/2018,Politicians,@VP,Honored to address the 2018 National Hispanic Prayer Breakfast this morning. Listen live: https://t.co/M0B74B4pFY +06/14/2018,Politicians,@VP,Glad to hear NASA expects the Opportunity Rover “Oppy” to weather one of the worst dust storms recorded on Mars. Gr… https://t.co/2QSa3K8x7F +06/13/2018,Politicians,@VP,RT @SecondLady: Heard some amazing stories about #arttherapy helping pediatric patients who participate in @tracyskidsdc art therapy progra… +06/13/2018,Politicians,@VP,THANK YOU to the great law enforcement in Dallas for everything you do to keep your community safe every day. https://t.co/8qf2BccSXc +06/13/2018,Politicians,@VP,No podium that @POTUS or I stand behind will be of greater consequence than the pulpits you stand behind every Sund… https://t.co/B5y9bDqjUA +06/13/2018,Politicians,@VP,".@POTUS Trump secured a commitment from North Korea to recover and repatriate the remains of more than 5,000 Americ… https://t.co/0cldXEygZI" +06/13/2018,Politicians,@VP,Our hearts were broken last year when we learned of the horrific attack on First Baptist Church in Sutherland Sprin… https://t.co/duvbARPgdO +06/13/2018,Politicians,@VP,.@POTUS Trump is the most pro-life President in American history! And it was my honor as Vice President to cast the… https://t.co/XsEbXtcYkC +06/13/2018,Politicians,@VP,.@POTUS kept his word to the American people and to our most cherished ally when we opened the United States Embass… https://t.co/hlEm2HvoRK +06/13/2018,Politicians,@VP,"As the late and great Reverend Billy Graham said, let’s remember “To get nations back on their feet, we must first… https://t.co/4jhwomLq9l" +06/13/2018,Politicians,@VP,"I’ve seen it in those good Samaritans, who come alongside the least fortunate in our cities, leading people away fr… https://t.co/EyULw8xoft" +06/13/2018,Politicians,@VP,"Over the past year-and-a-half, I’ve seen a lot, as I’ve traveled across this country, and I’ve seen the faith that… https://t.co/nrWsjkFNMB" +06/13/2018,Politicians,@VP,.@POTUS and I will continue to fight for what we know is right. But we recognize that the most important work in Am… https://t.co/M4IshCGA97 +06/13/2018,Politicians,@VP,"Today, on behalf of @POTUS Trump, I want to thank the #SBC18 for the essential and irreplaceable role that you play… https://t.co/Y1jABttk7i" +06/13/2018,Politicians,@VP,"Southern Baptists have always worked to bring about the renewal of America, and new beginnings – and as I stand bef… https://t.co/i5BnpWdith" +06/13/2018,Politicians,@VP,"Heading to Dallas, Texas – it is my great honor to address the Southern Baptist Convention this morning. Watch live… https://t.co/9ZHgPLCYQP" +06/12/2018,Politicians,@VP,"Always enjoy meeting folks visiting Washington, DC. Great to see my friend @RepHuizenga and a group of students in… https://t.co/SDr8l2RvX3" +06/12/2018,Politicians,@VP,"Spoke with @Larry_Kudlow’s wife, Judy, this morning – relieved to hear my good friend is expected to fully recover.… https://t.co/K8nRd5OXRn" +06/12/2018,Politicians,@VP,"RT @WhiteHouse: Overnight, President Trump led a historic summit with North Korean leader Kim Jong Un. “We had a tremendous 24 hours. We’ve…" +06/12/2018,Politicians,@VP,Spoke with @POTUS earlier today – now heading to Capitol Hill to brief @SenateGOP members and @HouseGOP leaders on… https://t.co/FWFsxh5I2c +06/12/2018,Politicians,@VP,"RT @StateDept: ""Anyone can make war, but only the most courageous can make peace."" -- @POTUS Donald J. Trump at the #SingaporeSummit https:…" +06/12/2018,Politicians,@VP,RT @realDonaldTrump: https://t.co/tJG3KIn2q0 +06/12/2018,Politicians,@VP,"With the success of the #SingaporeSummit, the world is one step closer to peace on the Korean Peninsula. This histo… https://t.co/7ApwV9nrMF" +06/12/2018,Politicians,@VP,"RT @StateDept: .@POTUS Trump, @SecPompeo, @AmbJohnBolton, and the U.S. delegation meet with North Korean leader Kim Jong Un and the #DPRK d…" +06/12/2018,Politicians,@VP,"RT @Scavino45: #SingaporeSummit +(📸@AP @EvanVucci) https://t.co/JK9qfsd2xc" +06/12/2018,Politicians,@VP,RT @StateDept: .@POTUS Donald J. Trump meets with North Korean leader Kim Jong Un at the #SingaporeSummit. https://t.co/L3BcOPP26J +06/12/2018,Politicians,@VP,Karen and I are praying for our dear friend @Larry_Kudlow tonight. https://t.co/eaKLURJ8ba +06/11/2018,Politicians,@VP,"RT @realDonaldTrump: Meetings between staffs and representatives are going well and quickly....but in the end, that doesn’t matter. We will…" +06/11/2018,Politicians,@VP,"RT @realDonaldTrump: Stock Market up almost 40% since the Election, with 7 Trillion Dollars of U.S. value built throughout the economy. Low…" +06/11/2018,Politicians,@VP,As I told the Faith & Freedom Coalition this weekend: @POTUS approaches tonight’s historic US-NK summit with confid… https://t.co/tcKqki8mcg +06/11/2018,Politicians,@VP,RT @SecPompeo: The fact that our 2 leaders are sitting down face to face is a sign of the enormous potential to accomplish something that w… +06/11/2018,Politicians,@VP,RT @realDonaldTrump: Thank you Prime Minister Lee Hsien Loong! https://t.co/8MMYGuOj8Q +06/09/2018,Politicians,@VP,"RT @realDonaldTrump: .@G7 Press Briefing in Charlevoix, Canada, prior to departing for Singapore! https://t.co/75y1SXuwuU" +06/09/2018,Politicians,@VP,RT @g7: Day 1 of #G7Charlevoix in 60 seconds. https://t.co/U6jA8ylIgm +06/08/2018,Politicians,@VP,Always an honor to spend time with our heroes recovering at @WRBethesda. Thanks also to the great medical team who… https://t.co/etVd5wjJjs +06/08/2018,Politicians,@VP,"Karen and I were saddened to learn that Charles @Krauthammer, a man we greatly admire, is nearing the end of his ex… https://t.co/IWERAsRbCH" +06/08/2018,Politicians,@VP,RT @WhiteHouse: “The Truth About Opioids” is an ad campaign about the perilous measures that young Americans have taken to fuel an opioid a… +06/08/2018,Politicians,@VP,"RT @WhiteHouse: For many, opioid addiction begins early. This ad campaign from @ONDCP, @AdCouncil, and @truthinitiative helps young adults…" +06/08/2018,Politicians,@VP,"RT @WhiteHouse: Know the risks of opioid abuse. New ads from @ONDCP, @AdCouncil, and @truthinitiative. #crisisnextdoor https://t.co/lsCue7L…" +06/08/2018,Politicians,@VP,"RT @WhiteHouse: Larry Kudlow in the Washington Post: ""Trump Is Presiding Over Extraordinary Growth. G-7 Leaders Should Notice."" https://t.c…" +06/08/2018,Politicians,@VP,Happy Anniversary to my wonderful wife Karen! Being married to our amazing @SecondLady these last 33 years is the g… https://t.co/gNJwE2rlR9 +06/08/2018,Politicians,@VP,Great win for freedom by the nations of @OAS_Official to take a stand against the “Havana-Caracas axis.” Read more: https://t.co/WJEgmiUJQ4 +06/07/2018,Politicians,@VP,Thanks for all the kind birthday wishes! +06/07/2018,Politicians,@VP,Our hearts are with all those that are suffering in the wake of the terrible volcano eruption in Guatemala. We expr… https://t.co/YzeA4y8uWG +06/07/2018,Politicians,@VP,The United States will not stand by as the Ortega government in Nicaragua massacres protesters. We will continue to… https://t.co/YgXL72AOD8 +06/07/2018,Politicians,@VP,RT @realDonaldTrump: Great day of meetings with Prime Minister @AbeShinzo of Japan! https://t.co/uKcdA8RxoN +06/07/2018,Politicians,@VP,POWERFUL new video from @ONDCP on the #OpioidEpidemic that has touched nearly all Americans. @POTUS is committed to… https://t.co/6xFXldB15z +06/07/2018,Politicians,@VP,Great to see PM @AbeShinzo again today as @POTUS welcomed him to the @WhiteHouse for discussions on the upcoming su… https://t.co/TsdbxyTPDu +06/07/2018,Politicians,@VP,THANKS for the birthday wishes @JimBridenstine and our great astronauts at the @Space_Station. So proud of our team… https://t.co/QBRAZitMpC +06/06/2018,Politicians,@VP,".@POTUS, @FLOTUS & I thanked @DHSgov & @FEMA employees for their tireless efforts. POTUS' highest priority is the s… https://t.co/RoSkGFAl6j" +06/06/2018,Politicians,@VP,"RT @realDonaldTrump: We must always protect those who protect us. Today, it was my great honor to sign the #VAMissionAct and to make Vetera…" +06/06/2018,Politicians,@VP,RT @realDonaldTrump: Thank you to everyone at @FEMA HQ for today’s briefing on preparations for the upcoming hurricane season. Disaster res… +06/06/2018,Politicians,@VP,As General Eisenhower said—the eyes of the world were upon our allied fighting forces on #DDay in 1944. Despite the… https://t.co/lMoEmfQV7p +06/06/2018,Politicians,@VP,Honored to join @POTUS today as he signed the #VAMissionAct into law to expand healthcare access for veterans. This… https://t.co/Znye208ppv +07/01/2018,Politicians,@algore,Proud of the important work the grassroots climate movement is doing in the Philippines to transition their country… https://t.co/298n9C1mmG +06/30/2018,Politicians,@algore,"Another ominous record has been set. The city of Quriyat, Oman, hit an overnight LOW of 108.7 degrees on Tuesday -… https://t.co/mako2WUDsU" +06/28/2018,Politicians,@algore,Thanks to everyone who took part in the training in Berlin this week! We need countries like Germany to meet their… https://t.co/Rz74SD2rZS +06/28/2018,Politicians,@algore,"Under the strong leadership of @GovMurphy, New Jersey is primed to become one of America's biggest turnaround stori… https://t.co/1wcubgRDIE" +06/28/2018,Politicians,@algore,"Had a great conversation with @Patrickxander, @vixbwn, @Ischops & @PaolaFiore on the origins of @ClimateReality and… https://t.co/yL4E2yer3L" +06/28/2018,Politicians,@algore,"Congrats on the update to 'The Madhouse Effect’, @MichaelEMann! Can’t wait to read the new chapter. https://t.co/RdMy9uHuhB" +06/27/2018,Politicians,@algore,Leaders in the Netherlands are moving ahead with a law to cut greenhouse gas emissions 95% by 2050. This sets a new… https://t.co/S1GtmQgIyn +06/27/2018,Politicians,@algore,"Powerful panel, at the Berlin @ClimateReality Leadership training, on how the climate crisis impacts human migratio… https://t.co/J5wxxLSTtd" +06/27/2018,Politicians,@algore,"We are all feeling worsening impacts of the climate crisis, especially the most vulnerable countries. Today we have… https://t.co/We6BAwAoJB" +06/26/2018,Politicians,@algore,To remain a global & regional leader in the transition to a sustainable future Germany must meet its 2030 emissions… https://t.co/IICFRuILzm +06/26/2018,Politicians,@algore,We're about to kick off our @ClimateReality training in Berlin where 675 leaders at all levels from around the worl… https://t.co/WQSodNbTEo +06/25/2018,Politicians,@algore,The German coal commission is critical to ensure the country achieves its climate targets with a #justtransition fo… https://t.co/nsPEEQfvjF +06/21/2018,Politicians,@algore,"This August, I’m heading to Los Angeles to train our next class of activists to become @ClimateReality Leaders. App… https://t.co/klQ5Pg6zkN" +06/20/2018,Politicians,@algore,Tearing families apart and putting kids in an Archipelago of Cages is not the America that we know and love. We are… https://t.co/6V78tSGJy4 +06/19/2018,Politicians,@algore,This hits close to home. Literally. The Koch Brothers want more traffic jams so they can sell more petroleum. Then… https://t.co/QulHVNt8Lh +06/14/2018,Politicians,@algore,Good for @patagonia for giving employees the day off to vote in November. Others should follow their lead. We need… https://t.co/cNn2SLHcDL +06/13/2018,Politicians,@algore,"New, startling evidence of ice sheet melt in Antarctica that poses a grave threat to humanity. We have the tools to… https://t.co/lWCWcLeAMC" +06/13/2018,Politicians,@algore,"You are an inspiration to all of us, Anwar. I know you’ll keep fighting for your core principles of democracy, and… https://t.co/0Ymhiam7pR" +06/12/2018,Politicians,@algore,The market continues to favor clean energy over fossil fuels. Solar accounted for 55% of new electricity in Q1 of 2… https://t.co/mAwwG2kGcB +06/12/2018,Politicians,@algore,Our @ClimateReality Leadership Corps takes people of all backgrounds and makes them effective leaders in solving th… https://t.co/ERhyBCa8cy +06/11/2018,Politicians,@algore,My friend @JohnDoerr knows a thing or two about setting ambitious goals and achieving them. I enjoyed learning abou… https://t.co/1h8sjAeRju +06/06/2018,Politicians,@algore,.@ClimateReality Leaders are developing climate solutions across the globe today. I hope you'll join our training o… https://t.co/oNVmDM4yBd +06/05/2018,Politicians,@algore,I stand with @RevDrBarber & the #PoorPeoplesCampaign serving the moral cause to end ecological devastation in Ameri… https://t.co/D7ErO96sCm +06/04/2018,Politicians,@algore,"As the price of clean energy drops, investments in fossil fuels are risky and could be left stranded. Investors sho… https://t.co/Edf0ROmEUD" +06/04/2018,Politicians,@algore,"In the noisy and crowded media environment, it is more important than ever to find effective ways of breaking throu… https://t.co/pG2IwdjKaS" +06/01/2018,Politicians,@algore,Today marks 1 year since President Trump announced plans to withdraw from the #ParisAgreement. Tomorrow marks 1 yea… https://t.co/8W4U52OiGK +05/31/2018,Politicians,@algore,Glad to be part of a new collection of stories about the forging of the #ParisAgreement. Check out Profiles of Pari… https://t.co/pGu2DWi8ar +05/29/2018,Politicians,@algore,Fossil fuels are subsidized 38x more than renewables globally. Now the Canadian government wants to spend billions… https://t.co/eaIvbKkOUs +05/29/2018,Politicians,@algore,The climate crisis is a public health issue. It’s important that former EPA Chief Gina McCarthy will launch… https://t.co/bYsuiF8KSO +05/23/2018,Politicians,@algore,How can educators bring math and science to life? Through music and creativity! Great piece on @NBCNightlyNews feat… https://t.co/fbhDf3AkYq +05/21/2018,Politicians,@algore,"We must, we can, and we will solve the climate crisis. I hope you’ll join @ClimateReality and me in Berlin June 26… https://t.co/nZla8ditxj" +05/17/2018,Politicians,@algore,Washington voters should vote #Yeson1631 which puts a price on pollution and ensures the state continues to be a le… https://t.co/B2XtDjyEfT +05/15/2018,Politicians,@algore,Hurricane Harvey dumped as much rain on TX & Louisiana in 5 days as the full flow of Niagara Falls over 500 days. T… https://t.co/djOTTKqHPP +05/10/2018,Politicians,@algore,Congratulations to the people of Malaysia and to my friends @anwaribrahim and @drwanazizah on your historic victory… https://t.co/YHS8PWCyiM +05/10/2018,Politicians,@algore,"Good for @washingtonpost, exposing this pitiful attempt to downplay the threat of the climate crisis on our militar… https://t.co/raKs8DfRzL" +05/10/2018,Politicians,@algore,The Kinder Morgan pipeline carrying dirty tar sands oil would be a step backward in our efforts to solve the climat… https://t.co/N8ggNhzSNE +05/08/2018,Politicians,@algore,It’s imperative that we all do our part to protect our shared home. Join me in Berlin June 26 - 28 to become a… https://t.co/nt11FO6UAX +05/08/2018,Politicians,@algore,"More than 10 million people are now employed by the renewable energy industry, according to @IRENA. Just the latest… https://t.co/W7ppFWkv98" +05/03/2018,Politicians,@algore,"CO2 levels in our atmosphere are now the highest in recorded history, going back at least 800,000 years, according… https://t.co/2h1dApr6Tn" +05/03/2018,Politicians,@algore,"17 of the hottest years on record have been in the last 18 years. Nowhere is this more stark than in Pakistan, wher… https://t.co/7eU7rdhQvt" +05/02/2018,Politicians,@algore,"This June, I’m gathering climate experts and citizen leaders in Berlin for our next @ClimateReality leadership trai… https://t.co/He1jS0o9Ej" +05/01/2018,Politicians,@algore,The climate crisis affects us in so many ways. Here’s another - our planet is getting warmer and that’s playing a m… https://t.co/q7am6OyWHR +05/01/2018,Politicians,@algore,I stand with @JerryBrownGov and the coalition of states standing up to EPA’s attempt to weaken greenhouse gas emiss… https://t.co/EGlc12gSdH +04/30/2018,Politicians,@algore,Congratulations to my friend @johndoerr for all of the success with his new book “Measure What Matters”! https://t.co/Gcv1WLETHL +04/26/2018,Politicians,@algore,The world is at the beginning of a seismic shift that will benefit the planet & society. My new oped with David Blo… https://t.co/SIzQ28Q9tL +04/26/2018,Politicians,@algore,"It is such an honor to be here in Montgomery, Alabama at the @MemPeaceJustice. Thank you Bryan Stevenson & @eji_org… https://t.co/8zsPHJxPgy" +04/26/2018,Politicians,@algore,"Thanks to @Wellesley for having me, and for the thoughtful questions! Proud of the progress you’ve made through you… https://t.co/0XKtqgN0kM" +04/25/2018,Politicians,@algore,"Transportation is now the top GHG emitting sector in America. Smart, creative thinking like this from… https://t.co/r8UDI6eRP3" +04/18/2018,Politicians,@algore,"Thanks for having me, Mark, to discuss the exciting opportunity presented by the Sustainability Revolution! https://t.co/OMeYD8WHF1" +04/18/2018,Politicians,@algore,Former First Lady Barbara Bush was a pillar of strength for her family and was much admired in our country. Both th… https://t.co/xDmmJzOBlJ +04/17/2018,Politicians,@algore,Thank you @officialjaden! You and other leaders in your generation ​give me hope that we will solve the climate cri… https://t.co/7Z6d0A4Uoa +04/16/2018,Politicians,@algore,Looking forward to celebrating Earth Day this year with everyone @sachamamaorg in Miami! +04/12/2018,Politicians,@algore,"Senators should reject Mike Pompeo’s nomination to be Secretary of State. He denies the climate crisis, and has bee… https://t.co/2czurFFwed" +04/09/2018,Politicians,@algore,Apple is proving the business case for reducing GHG emissions and simultaneously reducing energy costs. All of its… https://t.co/R9qq7L36kG +04/09/2018,Politicians,@algore,Important piece from @JustinHGillis about the threat of EPA Administrator Scott Pruitt. The climate crisis is real… https://t.co/AZ8v0khM1L +04/06/2018,Politicians,@algore,I will greatly miss Senator Danny Akaka. Here is my statement on his passing. https://t.co/kRYCVbQSE9 +04/06/2018,Politicians,@algore,Shell proved to be prescient about violent storms resulting from the climate crisis in the 1980s. But they did noth… https://t.co/i9G7Dfa6O2 +04/05/2018,Politicians,@algore,"Last year, climate-related and other natural disasters caused a staggering $306 billion in total damages in the US.… https://t.co/z2kFbdGzdL" +04/03/2018,Politicians,@algore,My friend @johndoerr has written a new book for teams that want to accomplish big goals. I look forward to reading… https://t.co/QqkxQWbIgv +04/02/2018,Politicians,@algore,"The carmakers are reneging on a fair deal – in order to be bailed out by taxpayers, they agreed to strong emissions… https://t.co/CHUMvwESha" +04/02/2018,Politicians,@algore,"Looking forward to tuning into what should be a facinating discussion between Rev. Leo Woodbury, @RevYearwood &… https://t.co/fKzZdViPsh" +03/28/2018,Politicians,@algore,"Proud of my daughter @KarennaGore and all 13 of the men and women who won in court, for standing up to fossil fuel… https://t.co/sAwQGXUo6Z" +03/23/2018,Politicians,@algore,"Thank you to #CDMX for hosting this week’s @ClimateReality Leadership training, and big thanks to everyone + who cam… https://t.co/NKDTa06wY9" +03/23/2018,Politicians,@algore,"I am deeply saddened by the passing of my friend, Nancy McFadden. She was an extraordinary public servant whose wis… https://t.co/MJixQl6bxe" +03/22/2018,Politicians,@algore,Great panel on how Mexico is using a price on carbon to combat the climate crisis. Thanks to Dr. Mario J. Molina of… https://t.co/6nWPr8UGrU +03/22/2018,Politicians,@algore,Great questions this morning from the new Climate Reality Leader trainees here in #CDMX – thank you to Dr. Adrián F… https://t.co/t3yrmdmaGH +03/21/2018,Politicians,@algore,"Thank you to Jorge Villarreal Padilla of ICM, @tabnrgy of @WWF_LAC & Dr. Cuauhtémoc León Diez of @cegamcsur for a t… https://t.co/VRAlE12IcF" +03/21/2018,Politicians,@algore,Getting ready to kick off this week’s @ClimateReality training here in #CDMX! #LeadOnClimate. +03/20/2018,Politicians,@algore,Excited to announce that I just joined @Instagram! You can follow me here: https://t.co/UmVSIg2Zab +03/14/2018,Politicians,@algore,Stephen Hawking's historic breakthroughs in science advanced humanity’s understanding of the universe even as the e… https://t.co/aCQTdpIzgT +03/13/2018,Politicians,@algore,We need more strong voices like that of @SenWhitehouse calling on politicians to respond to the urgent threat of th… https://t.co/BfdphcsPrh +03/09/2018,Politicians,@algore,.@NYGovCuomo is showing leadership on the climate crisis & building a sustainable future in NY. Proud to support hi… https://t.co/vbZIVLAJUn +03/08/2018,Politicians,@algore,Excited to be with @Kathleen_Wynne today fighting for her bold #climate agenda. We can’t go backwards in Ontario or… https://t.co/8oqdCrwqSc +03/07/2018,Politicians,@algore,More positive momentum. Energy storage in the US is growing rapidly and may double this year according to… https://t.co/bTd2sWO7em +02/28/2018,Politicians,@algore,"The number of cities powered mostly by renewable energy has more than doubled since 2015, according to @CDP, with m… https://t.co/5KJIdWZPXL" +02/27/2018,Politicians,@algore,"It’s concerning how warm the Arctic is right now, with record temps and low sea ice. As @thinkprogress says, what h… https://t.co/MZZSukIXOz" +02/21/2018,Politicians,@algore,"Rev. Billy Graham personally touched the lives, hearts & souls of hundreds of millions of people with his determina… https://t.co/frxUMiyqja" +02/20/2018,Politicians,@algore,"In India (7% of global emissions), wind + solar = 64% of new electricity capacity in 2017, according to… https://t.co/5HkAtQVeY5" +02/20/2018,Politicians,@algore,"In the EU (10% of global emissions), wind + solar = 77% of new electricity capacity in 2017, according to… https://t.co/hY144dj4RB" +02/20/2018,Politicians,@algore,"In the United States (15% of global emissions), wind + solar = 62% of new electricity capacity in 2017, according t… https://t.co/nzRk52LmK7" +02/20/2018,Politicians,@algore,"In China (28% of global emissions), wind + solar = 55% of new electricity capacity in 2017, according to… https://t.co/UpLYEd2OWs" +02/20/2018,Politicians,@algore,"As clean renewable energy continues to grow at an unprecedented pace, the highest emitting countries are driving to… https://t.co/1jqkdOBvpT" +02/14/2018,Politicians,@algore,U.S intelligence officials are looking at the science and warning about the risks of the climate crisis. Why isn’t… https://t.co/nBhjNcg0p0 +02/12/2018,Politicians,@algore,Important #cleanenergy progress coming from Australia. Solar power could double in capacity this year as the cost t… https://t.co/ET1cIeCXJ8 +02/06/2018,Politicians,@algore,"In Colorado and parts of the U.S, energy from solar and wind is now the cheapest source of power, even including th… https://t.co/Yz0QYR5sWF" +02/02/2018,Politicians,@algore,"For Europe to meet its #ParisAgreement goals & build a more sustainable financial system, it should follow the fina… https://t.co/IzcOwXJqDi" +01/31/2018,Politicians,@algore,There is no war on American energy. America should lead on clean energy! Smart leaders are tapping into this unprec… https://t.co/EPS4D7gJAK +01/30/2018,Politicians,@algore,"Great to see New Jersey back in the Regional Greenhouse Gas Initiative, under the leadership of my good friend… https://t.co/nbjSt3tJ7z" +01/30/2018,Politicians,@algore,I'm calling on members of @cducsubt & @spdbt in Germany to phase out coal by 2030 in #GroKo talks. This is your mom… https://t.co/hT6ANape0G +01/30/2018,Politicians,@algore,I hope Germany will commit to #endcoal. The coalition treaty is a chance to follow through on its climate promise a… https://t.co/7objDjqEuZ +01/29/2018,Politicians,@algore,"Proud of my friend Don Henry for being recognized with an Australia Day Honor, for his tireless conservation work w… https://t.co/MizeEu4bgh" +01/25/2018,Politicians,@algore,I’m speaking on the #StepUp2018 panel now at #WEF18! Click here to watch: https://t.co/ODjgLZ0wpx https://t.co/UpY0VvJovY +01/18/2018,Politicians,@algore,"2017 was the 2nd hottest year on record, according to @NASAGoddard, and the warmest year without El Nino. That make… https://t.co/zVLwXZHRRM" +01/17/2018,Politicians,@algore,"Extreme weather and the climate crisis are still top threats to the global economy, according to @WEF’s latest Glob… https://t.co/yjvG5ABPOK" +01/16/2018,Politicians,@algore,Great analysis here - Energy PLUS storage from new solar and wind projects is now cheaper than energy from existing… https://t.co/PgYYlVOnDS +01/13/2018,Politicians,@algore,Any serious national security strategy must address the threat of the climate crisis. Take it from a former Navy ad… https://t.co/PWPXLCai3Y +01/11/2018,Politicians,@algore,"RT @aitruthfilm: All corners of the world are feeling the growing impact of the climate crisis. This is our only home, and this is our mome…" +01/10/2018,Politicians,@algore,More encouraging news! The cost of clean renewable energy and storage continues to plummet. https://t.co/tqZDy4rLcJ +01/09/2018,Politicians,@algore,I applaud the leadership demonstrated today by my friend @GovInslee & Washington state with the announcement of a p… https://t.co/yROHT9QFhV +01/09/2018,Politicians,@algore,I am very proud that @aitruthfilm has been nominated for “Best Documentary” by the British Academy of Film and Tele… https://t.co/RuOM8CQmAR +01/08/2018,Politicians,@algore,"Calling all climate activists: My next @ClimateReality Leadership training is in Mexico City, March 21-23, 2018! Le… https://t.co/WZwJiLg65M" +01/06/2018,Politicians,@algore,"According to the insurance company @MunichRe, 2017 had the most insured losses of any year on record - $135 billion… https://t.co/lOxy2gBLht" +01/04/2018,Politicians,@algore,"It’s bitter cold in parts of the US, but climate scientist Dr. Michael Mann explains that’s exactly what we should… https://t.co/LZi67vLixU" +01/04/2018,Politicians,@algore,"President Trump is once again defying a majority of American citizens, states, and businesses. His offshore drillin… https://t.co/BgBtZt9Gc4" +01/03/2018,Politicians,@algore,"I send my condolences to the LDS Church and to the family of its leader, Thomas Monson. https://t.co/B8iOhVZT15" +12/19/2017,Politicians,@algore,The world’s largest polluter just launched the world’s largest carbon market. We are at a tipping point in the clim… https://t.co/J84n6ijRqQ +12/18/2017,Politicians,@algore,"Saddened about the loss of a great man and scholar, Calestous Juma. https://t.co/Z3B9j4cSnz" +12/14/2017,Politicians,@algore,Total solar capacity in developing countries has more than tripled in the past three years thanks to cheaper clean… https://t.co/TtSXTmz205 +12/13/2017,Politicians,@algore,"New scientific studies link the climate crisis and Hurricane Harvey’s record rainfall, which devastated south Texas… https://t.co/1M4fBC2lHe" +12/12/2017,Politicians,@algore,Important step forward in The Philippines today to cut carbon pollution. Very proud of Senator @loren_legarda & the… https://t.co/mdghMAiOzG +12/12/2017,Politicians,@algore,"The recent images & stories of the fires in California are alarming. If we don't solve the climate crisis, these ty… https://t.co/GcQwU50qCH" +12/11/2017,Politicians,@algore,Great @drvox piece about the Trump administration’s push to prolong the inevitable decline of the coal industry. Pe… https://t.co/myafayMUCU +12/07/2017,Politicians,@algore,"The iconic ""Blue Marble"" photo was taken 45 years ago today. This image allowed us to see how beautiful and fragile… https://t.co/1e97UUYu77" +12/07/2017,Politicians,@algore,"Thank you, Senator @loren_legarda for joining this year’s #24HoursofReality, for your inspiring leadership and your… https://t.co/xnRGh03OzG" +12/06/2017,Politicians,@algore,"Millions of viewers joined us for #24HoursofReality, a global journey focused on the stories of people speaking out… https://t.co/HQVecfZ9qo" +12/05/2017,Politicians,@algore,Wonderful performance @allisimpson! Thank you so much for all of your help with #24HoursofReality!… https://t.co/BGdQzHLTpF +12/05/2017,Politicians,@algore,It’s such an honor to have President @mbachelet join us for #24HoursofReality to discuss the importance of being a… https://t.co/5ABitG5Qjq +12/05/2017,Politicians,@algore,Always great to have the one and only @CalumWorthy in the building for #24HoursofReality! https://t.co/7BXgqAb4lN https://t.co/QWB9I3jpzn +12/05/2017,Politicians,@algore,197 countries signed up to the Paris Agreement to take global warming pollution down to net-zero by mid-century. Bu… https://t.co/f1NR16vTMD +12/05/2017,Politicians,@algore,Having a great time with the @ClimateReality team at #24HoursofReality. You can join here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,".@HelenHunt, thanks for being a part of #24HoursofReality! See you soon! https://t.co/37ovJR44Zj" +12/05/2017,Politicians,@algore,"An increasing number of people’s lives are being affected by the climate crisis, causing a growing awareness that w… https://t.co/SkJZkFomT3" +12/05/2017,Politicians,@algore,Thank you @YoungParis for that powerful & unforgettable performance! #24HoursofReality https://t.co/KItX9a50hM +12/05/2017,Politicians,@algore,We’re now in the second half of #24HoursofReality! Tune in here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,The world is moving forward towards a clean energy future. Join @ClimateReality and me now and learn how you can be… https://t.co/ujPb3C8Mm8 +12/05/2017,Politicians,@algore,We’re about to start hour 10 for #24HoursofReality! https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,.@jason_mraz's performance tonight at #24HoursofReality was excellent. Great seeing you! https://t.co/Yyh6AW1vwD +12/05/2017,Politicians,@algore,Thanks @TeaLeoni & @MrSilverScott for being a part of #24HoursofReality - Be the Voice of Reality! https://t.co/SiOrgUnboD +12/05/2017,Politicians,@algore,.@RyanTedder your moving message with 'Truth to Power' was perfect to kick off #24HoursofReality - Be the Voice of… https://t.co/YLL630ZD9e +12/05/2017,Politicians,@algore,24 Hours of Reality https://t.co/IaoPy00d2F +12/05/2017,Politicians,@algore,24 Hours of Reality https://t.co/IRVcbQzerZ +12/05/2017,Politicians,@algore,Thanks @OregonGovBrown for joining us and being a voice of reality to make sure we are still in the Paris Agreement… https://t.co/uJzva1vebi +12/05/2017,Politicians,@algore,Hello and welcome to #24HoursofReality – Be the Voice of Reality! Join us here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,On to hour 2 of #24HoursofReality. You can join us here! https://t.co/7BXgqAb4lN +12/04/2017,Politicians,@algore,@SherylCrow @HelenHunt @nilerodgers @IggyPop @elliegoulding @The_Hives @thekillers @sarahbackhouse @billybragg… https://t.co/DssfB4IN2B +12/04/2017,Politicians,@algore,"For the next 24 hours, we’ll be joined by @SherylCrow, @HelenHunt, @nilerodgers, @IggyPop, @elliegoulding,… https://t.co/4lEwK0rm1Q" +12/04/2017,Politicians,@algore,24 Hours of Reality https://t.co/tv6mdecuyt +12/04/2017,Politicians,@algore,Join me for a 24-hour live event as we unite to demand solutions to the climate crisis. #24HoursofReality is LIVE:… https://t.co/VuORrEnHGr +12/04/2017,Politicians,@algore,We’re about to kick off another #24HoursofReality join us starting tonight at 6pm ET. https://t.co/lWwevFTIrA https://t.co/47ruYWsiTC +12/04/2017,Politicians,@algore,"Today is the day! Join me, @ClimateReality, and our incredible guests for #24HoursofReality. The broadcast starts a… https://t.co/atMNeccWAn" +12/04/2017,Politicians,@algore,I am very optimistic that we will solve the climate crisis. And one reason is that so many people from all around t… https://t.co/AZ9OVtYr5O +12/03/2017,Politicians,@algore,"#24HoursofReality starts tomorrow! The climate crisis is the biggest challenge of our time — we can, we must, and w… https://t.co/siSn1qALVH" +12/02/2017,Politicians,@algore,I’m excited to be kicking off another #24HoursofReality in just three days. Join me and @ClimateReality as we shine… https://t.co/H0P3lMCsML +12/02/2017,Politicians,@algore,"One of the county’s biggest credit rating agencies, @MoodysInvSvc says cities and states should prepare for the cli… https://t.co/mVzLAmeeHb" +12/01/2017,Politicians,@algore,I’m excited to be kicking off another #24HoursofReality in just three days. Join me and @ClimateReality as we shine… https://t.co/DW1z5XCrlx +11/30/2017,Politicians,@algore,Great event today at #Slush17 in Helsinki. Terrific group of impressive entrepreneurs! Also met with President @Ni… https://t.co/j55FPl2020 +11/29/2017,Politicians,@algore,Clean energy is getting ever cheaper and more reliable. Wind power capacity has now surpassed coal in Texas. https://t.co/iJYA5ZMDG3 +11/28/2017,Politicians,@algore,"For 24 Hours, we’ll travel around the world, telling stories of real people making a real difference for the climat… https://t.co/4PREzYYNl4" +11/27/2017,Politicians,@algore,"On December 4-5, join me, @ClimateReality, and our all-star guests for #24HoursofReality. We’ll be discussing the i… https://t.co/m3z30bAsBl" +11/20/2017,Politicians,@algore,"Mother Nature can be very persuasive. More Americans are concerned about the climate crisis, and connecting the dot… https://t.co/SbCMDipqm7" +11/17/2017,Politicians,@algore,The world is moving forward towards a clean energy future. Join @ClimateReality and me December 4-5:… https://t.co/kaWF2chYXr +11/16/2017,Politicians,@algore,"More countries are committing to phase out coal, as the world transitions to a clean energy future. Congrats to Can… https://t.co/VSpBGaItHy" +11/16/2017,Politicians,@algore,"Despite what’s happening in Washington, I know that we can solve the climate crisis with actions from people like y… https://t.co/tfP6CQU8kn" +11/15/2017,Politicians,@algore,Thanks to President Macron for pledging to replace U.S. climate science funding. While you step up to fill the lead… https://t.co/7Qv4iuVWqJ +11/15/2017,Politicians,@algore,"We must, we can, and we will solve the climate crisis. I hope you'll join me on December 4-5 for #24HoursofReality… https://t.co/gjr598UhnK" +11/13/2017,Politicians,@algore,So proud of my daughter @KarennaGore and her fantastic speech at last month's Rights of Nature Symposium in New Orl… https://t.co/DQYT10Vmut +11/12/2017,Politicians,@algore,"Great visit to Bonn for #COP23. It was clear that American leadership on #climate is still strong, despite the best… https://t.co/gJe7Jq8o9R" +11/11/2017,Politicians,@algore,"I'm honored to be a part of today's session here at #COP23 titled ""Maintaining U.S. Engagement in International Cli… https://t.co/JgeGwdVyXd" +11/11/2017,Politicians,@algore,"Inspired to be in Bonn for #COP23 this week and see the leaders of so many nations, states, cities, NGOs and busine… https://t.co/yqXRcABcMD" +11/10/2017,Politicians,@algore,Great meeting with Executive Secretary @PEspinosaC today here at #COP23! https://t.co/cakNSSRPEM +11/06/2017,Politicians,@algore,"If you are in New Jersey, get out and vote tomorrow for my friend, @PhilMurphyNJ. Now more than ever, your vote mat… https://t.co/GAws1whyBm" +11/03/2017,Politicians,@algore,America’s leading scientists have confirmed what Mother Nature has been making plenty clear: the climate crisis is… https://t.co/AAsRJMxmd9 +11/03/2017,Politicians,@algore,"@BillClinton Thanks, @BillClinton. It was a privilege to serve our nation with you for those 8 yrs. Along with our… https://t.co/PSGLsvQ9p7" +10/31/2017,Politicians,@algore,The climate crisis is already having serious negative impacts on the health of hundreds of millions of people aroun… https://t.co/hlH1XhKzeZ +10/29/2017,Politicians,@algore,"Five years since Hurricane Sandy, and dangerous storms continue to batter our coasts, with bigger downpours, floodi… https://t.co/pEdAo0CPGf" +10/28/2017,Politicians,@algore,Great conversation yesterday with my good friend @JohnKerry for the @KerryInitiative. https://t.co/VSgUohhiiT +10/27/2017,Politicians,@algore,Thrilled by @AFLCIO's climate statement. Thanks to @steelworkers' Leo W. Gerard for bringing the resolution to unan… https://t.co/GQ8Nn9IiOL +10/26/2017,Politicians,@algore,Looking forward to tonight! Join me for a nationwide screening of @aitruthfilm + live webcast Q&A. Find your screen… https://t.co/2fEKccXX1e +10/25/2017,Politicians,@algore,"Clean energy jobs keep growing. Solar panel installer is now the fastest growing job, followed by wind turbine tech… https://t.co/WxA1WLvgPQ" +10/24/2017,Politicians,@algore,Important read: devastating flooding will hit New York City more often due to climate-driven sea level rise https://t.co/FJ0BEIMGSO +10/23/2017,Politicians,@algore,In Houston today talking about the climate crisis and its impact on storms like #Harvey. The @HoustonChron put it w… https://t.co/yUJFIez4m4 +10/20/2017,Politicians,@algore,"Couldn’t agree with you more, @jerry_jtaylor. A lot of great questions on this string that deserve answers. https://t.co/773W7PZURA" +10/20/2017,Politicians,@algore,"Thanks to everyone who came out to the @ClimateReality training in Pittsburgh, for your dedication to the environment! #LeadOnClimate" +10/19/2017,Politicians,@algore,"Next Thursday (10/26), please join me for a nationwide screening of @aitruthfilm + live webcast Q&A. Find a local s… https://t.co/0WhyYj09cU" +10/19/2017,Politicians,@algore,Now starting our last day of the @ClimateReality Leadership training here in Pittsburgh! What great energy this week! #LeadOnClimate +10/18/2017,Politicians,@algore,"Having a great time in Pittsburgh, where our new @ClimateReality leaders are learning how to #LeadOnClimate & help solve the climate crisis!" +10/18/2017,Politicians,@algore,"The climate crisis is undeniable, and can feel overwhelming. If you are wondering what YOU can do, AN INCONVENIENT… https://t.co/VEItNSeIVr" +10/18/2017,Politicians,@algore,On to day 2 of the Pittsburgh @ClimateReality training with this inspiring and energetic group of leaders! #LeadOnClimate +10/17/2017,Politicians,@algore,"The city of Pittsburgh has chosen to #LeadOnClimate, which makes it an ideal location for this week’s @ClimateReality training!" +10/17/2017,Politicians,@algore,Hello Pittsburgh! We're about to kickoff the largest ever @ClimateReality Leadership training! #LeadOnClimate +10/12/2017,Politicians,@algore,Looking forward to talking about clean renewable energy tomorrow at the #NCES. #VegasStrong #CleanEnergy +10/10/2017,Politicians,@algore,Repealing the Clean Power Plan is out of step with our movement to solve the climate crisis. My statement:… https://t.co/Vr6CbqSzaS +10/03/2017,Politicians,@algore,A sustainable 21st Century economy requires a long term investment approach. @GenerationFndt @UNEP_FI @PRI_News https://t.co/aVuOarbEcc +09/24/2017,Politicians,@algore,My thoughts and prayers are with the congregation of the Burnette Chapel Church of Christ and all those affected by this horrific event. +09/24/2017,Politicians,@algore,"Today’s tragic shooting in Antioch, Tennessee is heartbreaking." +09/18/2017,Politicians,@algore,RT @TheYoungTurks: Al Gore Warned Us About Stronger Hurricanes YEARS AGO: https://t.co/CCsej0CnA1 via @YouTube +09/18/2017,Politicians,@algore,"RT @globalcompact: We must make faster progress, and the key is in this #UNPSF room. Non-state actors are essential to the #ParisAgreement,…" +09/18/2017,Politicians,@algore,Excited to join @wef's #wefimpact Summit discussing the #future of #climate #InclusiveGrowth #mobility & more: https://t.co/3cIzsp80zT +09/07/2017,Politicians,@algore,It’s time to speak truth to power about the climate crisis. Join me in Pittsburgh & learn how you can… https://t.co/ZAyZYEbx5N +09/06/2017,Politicians,@algore,"This October, join me for a @ClimateReality Leadership Training and learn how you can #LeadOnClimate! Apply here:… https://t.co/X7tlKnifnT" +09/06/2017,Politicians,@algore,"Important read, featuring my friend @CathFlowers, on how hookworm affects impoverished parts of the southern US​: https://t.co/eGl7Vjolwr" +09/05/2017,Politicians,@algore,We must stand up &demand climate action. Learn how to #LeadOnClimate at the next @ClimateReality Leadership Trainin… https://t.co/UWIy5GWyDo +09/05/2017,Politicians,@algore,"In addition to renewables, grid storage may soon be cheaper than natural gas backup ""peaking"" generators: https://t.co/zHODHV856V" +09/02/2017,Politicians,@algore,RT @aitruthfilm: We're asking YOU. Tell the people in power where you stand & urge them to protect our home. Act now: https://t.co/IVpuGTbY… +08/29/2017,Politicians,@algore,My heart is with the people of Texas today. Find out how you can help here: https://t.co/aGChrQ4w4d +08/26/2017,Politicians,@algore,"In India, renewables cost less than coal-the power sector must continue incorporating solar&wind to stay competitive https://t.co/HpIexPKJru" +08/24/2017,Politicians,@algore,"Important & disturbing read on how increasing temps are thawing Alaska's permafrost, exacerbating the climate crisis https://t.co/iRdKq3HPsI" +08/23/2017,Politicians,@algore,Important read by @NaomiOreskes: new research further shows Exxon knowingly misled the public on the climate crisis: https://t.co/Eh3ObXuEai +08/22/2017,Politicians,@algore,Great read by @JustinHGillis on how scientific forecasts of yesterday's eclipse relate to the climate crisis: https://t.co/UtJLltmROz +08/22/2017,Politicians,@algore,Magnificent images taken by #DSCOVR of yesterday's eclipse! You can see more here: https://t.co/NX8vzCW0IF https://t.co/6of8IzGc1T +06/30/2018,Politicians,@NancyPelosi,Ending the Trump Administration’s current family separation policy doesn’t demand trading one form of child abuse f… https://t.co/hACsCaTN33 +06/29/2018,Politicians,@NancyPelosi,.@RepCartwright is proud of how America’s labor unions improved the lives of people in his corner of Pennsylvania &… https://t.co/gltTRtJRGw +06/29/2018,Politicians,@NancyPelosi,RT @RepAnthonyBrown: These men and women were targeted for doing their job - reporting on the community they cherished and constantly seeki… +06/28/2018,Politicians,@NancyPelosi,"Praying for everyone injured & the families of those lost in today’s shooting at the Capital Gazette in Annapolis,… https://t.co/lbHrcveJQQ" +06/28/2018,Politicians,@NancyPelosi,I am speaking with reporters here in the Capitol during what has been a very eventful week in Washington and our na… https://t.co/y8T52ABBu3 +06/28/2018,Politicians,@NancyPelosi,I will be speaking live from the Capitol today at 10:30 am ET. Tune in here: https://t.co/jMGUtNa4Wc +06/27/2018,Politicians,@NancyPelosi,Americans are about to see if @SenateMajLdr & @SenateGOP will heed the McConnell Rule or rashly proceed to confirm… https://t.co/Z8yr2llVgl +06/27/2018,Politicians,@NancyPelosi,So-called moderate Republicans folded & destroyed the best chance Congress had to provide a permanent legislative f… https://t.co/7Qga3MIAzK +06/27/2018,Politicians,@NancyPelosi,America’s unions are the foundation of the middle class. The Supreme Court’s radical ruling in #Janus will impact w… https://t.co/WsKWxwoTSg +06/27/2018,Politicians,@NancyPelosi,RT @RepAdams: One in five public school teachers have second jobs during the school year. We should be doing more to help these public serv… +06/27/2018,Politicians,@NancyPelosi,"RT @RepStephMurphy: Raised in a union family, I know how unions grow the middle class. Today’s #Janus decision is a blow to the ability of…" +06/27/2018,Politicians,@NancyPelosi,RT @RepBarbaraLee: The #Janus decision is disgraceful. SCOTUS has weakened workers’ rights and further rigged the system for greedy special… +06/27/2018,Politicians,@NancyPelosi,"RT @keithellison: But make no mistake: as the recent teachers' strikes all across this nation have made clear, when workers join together t…" +06/27/2018,Politicians,@NancyPelosi,"RT @RepBrianHiggins: The SCOTUS decision in the #Janus case continues efforts to chip away at the rights, protections and benefits secured…" +06/27/2018,Politicians,@NancyPelosi,RT @repcleaver: Another win for corporate America at the expense of workers. But the fight isn't over. As seen with teachers across the cou… +06/27/2018,Politicians,@NancyPelosi,RT @WhipHoyer: Dems will continue to fight for the rights of all workers – whether public or private sector – to organize & bargain collect… +06/27/2018,Politicians,@NancyPelosi,RT @JacksonLeeTX18: The Supreme Court’s #Janus decision is an unprecedented attack on the rights of the 17.3 million public employees acros… +06/27/2018,Politicians,@NancyPelosi,The Supreme Court’s radical #Janus ruling tramples over the freedom and basic rights of over 17 million public work… https://t.co/DJTEAem55z +06/27/2018,Politicians,@NancyPelosi,No American should be denied coverage or forced to pay more for their health care simply because they have a pre-ex… https://t.co/o7oi0Jt9Xn +06/27/2018,Politicians,@NancyPelosi,RT @RepJoeKennedy: Allowing insurance companies to discriminate against Americans w/ pre-existing conditions will take us back to a system… +06/27/2018,Politicians,@NancyPelosi,.@RepJoeCrowley has been an unwavering champion for America’s working families for almost two decades. I salute Cha… https://t.co/aGPje98mIp +06/26/2018,Politicians,@NancyPelosi,RT @RepCheri: Hey taxpayers- want to know how much you're paying for @realDonaldTrump's policy of #FamilySeparation and putting kids in cag… +06/26/2018,Politicians,@NancyPelosi,"The Supreme Court’s dangerous decision in Hawaii v. Trump undermines our values, our security, & our Constitution.… https://t.co/d9rNnyXkAP" +06/26/2018,Politicians,@NancyPelosi,RT @RepAnnieKuster: Being born a woman shouldn’t be a “pre-existing condition.” But if Republicans’ attacks on protections for millions of… +06/25/2018,Politicians,@NancyPelosi,It’s been five years since the Supreme Court devastated the Voting Rights Act by stripping out core provisions. Eve… https://t.co/bweRaFRhvE +06/25/2018,Politicians,@NancyPelosi,"In the crucial months ahead, we must strive to make America beautiful again. Trump’s daily lack of civility has pro… https://t.co/1FxHx1AYgp" +06/23/2018,Politicians,@NancyPelosi,"Earlier this week, I visited our southern border with some of my Democratic colleagues. It was an experience we wil… https://t.co/ueGAdJxkSz" +06/22/2018,Politicians,@NancyPelosi,"All of us are just one diagnosis, one accident, one phone call away from needing pre-existing condition protections… https://t.co/ebdsVrGCw7" +06/21/2018,Politicians,@NancyPelosi,"Because the law protects people with pre-existing conditions, Gladys didn’t have to worry whether her son’s asthma… https://t.co/lQr47fKfKg" +06/21/2018,Politicians,@NancyPelosi,"RT @nikiinthehouse: I will continue to fight for Joe, Pamela, Lin, and the tens of thousands of people in #MA3 and across Massachusetts who…" +06/21/2018,Politicians,@NancyPelosi,"RT @USRepKCastor: As Republicans renew their attack on protections for people with preexisting conditions, I want to share Brian’s story an…" +06/21/2018,Politicians,@NancyPelosi,RT @RepJudyChu: Charles woke up in the middle of the night w/ severe back spasms. But it turned out it was actually a seizure. He was rushe… +06/21/2018,Politicians,@NancyPelosi,"RT @janschakowsky: The Trump Administration is refusing to defend the #ACA in court, meaning that more than 130 million Americans with pre-…" +06/21/2018,Politicians,@NancyPelosi,Folk-singer Buddy Mondlock got Hepatitis C from a blood transfusion after a car accident in 1981. After decades bei… https://t.co/aQW6Z3Ymxq +06/21/2018,Politicians,@NancyPelosi,"RT @RepMarcyKaptur: .@POTUS continues to undermine health protections that save people's lives, including preventing discrimination b/c of…" +06/21/2018,Politicians,@NancyPelosi,"Instead of wasting time on House Republicans’ destructive & partisan bill, we should follow the Senate and return t… https://t.co/l2v2fMj0Vv" +06/21/2018,Politicians,@NancyPelosi,RT @RepKClark: This is Jen. Protections for Americans with pre-existing conditions allowed her and her newborn daughter to get the care the… +06/21/2018,Politicians,@NancyPelosi,"RT @RepBonnie: If Republicans succeed in getting rid of protections for pre-existing conditions, families like Lisa's could suffer. Her son…" +06/21/2018,Politicians,@NancyPelosi,"RT @RepDelBene: Last year, Genesis & Suzy shared their sons’ stories during the health care debate, and they’ve stuck w/me. I’m sharing the…" +06/21/2018,Politicians,@NancyPelosi,"Little Zoe was born w/ a congenital heart defect. Now, her mom is sharing her concerns about what would happen if R… https://t.co/OCUEAn4xVC" +06/21/2018,Politicians,@NancyPelosi,"RT @LauraLeHatcher: Thank you @NancyPelosi - Simon, @LittleLobbyists and I are so lucky to have a fellow strong Mom fighting with us to pro…" +06/21/2018,Politicians,@NancyPelosi,"The Trump Administration’s reckless reorganization proposal is a recipe for more bureaucratic, inefficient and unre… https://t.co/fhhW2fTTAZ" +06/21/2018,Politicians,@NancyPelosi,"RT @RepMaloney: As we fight to #KeepFamliesTogether & reunite those separated, we have must also #ProtectOurCare. @GOP wants to roll back p…" +06/21/2018,Politicians,@NancyPelosi,"Meet Simon & his mom, Laura. If you ask me, they deserve to know that Simon won’t be denied health coverage just be… https://t.co/uwGzadg6ds" +06/21/2018,Politicians,@NancyPelosi,RT @JuliaBrownley26: We must #ProtectOurCare from the Trump administration’s cruel attempts to roll back protections for millions of Americ… +06/21/2018,Politicians,@NancyPelosi,RT @repmarkpocan: We must fight to make sure people with pre-existing conditions don’t have to worry about the threat of being denied healt… +06/21/2018,Politicians,@NancyPelosi,Maryann from California has been fighting cancer for five years. Take a moment to read her thoughts on the prospect… https://t.co/wXHdwpxQAo +06/21/2018,Politicians,@NancyPelosi,"We all pledge to protect our Constitution & country. Americans of all stripes have fought to protect our country, i… https://t.co/kQYKPrHQGC" +06/21/2018,Politicians,@NancyPelosi,RT @RepRichardNeal: No one should be denied care because they have a pre-existing condition. Republicans are trying to strike down protecti… +06/21/2018,Politicians,@NancyPelosi,"RT @RepLoisFrankel: Cheryl from #PBC was born w/ a heart defect. After years of being denied coverage, the #ACA made it possible for her to…" +06/21/2018,Politicians,@NancyPelosi,Jeremy’s son has been cancer-free for 7 years – but his journey isn’t over. And that’s why we must defend pre-exist… https://t.co/j5PqV8ieOC +06/21/2018,Politicians,@NancyPelosi,"Now, Republicans are using the #GOPTaxScam for the rich as the basis for a lawsuit to strike down protections for p… https://t.co/ezRiTIwCGE" +06/21/2018,Politicians,@NancyPelosi,"For six months we have watched as the #GOPTaxScam enriched wealthy shareholders, rewarded companies that send jobs… https://t.co/uXDr0BoRZ1" +06/21/2018,Politicians,@NancyPelosi,"RT @RepJimmyGomez: Thread about @realDonaldTrump’s executive order: + +I’ve had time to read it & it fixes nothing. + +Families seeking asylum…" +06/21/2018,Politicians,@NancyPelosi,House Republicans are intent on labeling their anti-family immigration legislation as a “compromise.” It must be a… https://t.co/dkno9WGG6u +06/21/2018,Politicians,@NancyPelosi,"Republicans continue to be complicit in @realDonaldTrump’s atrocities. Instead of standing up for families, they ar… https://t.co/Uk3vyd8W70" +06/21/2018,Politicians,@NancyPelosi,"I will always be proud to know that during my time as Speaker, the House passed the #DREAMAct." +06/21/2018,Politicians,@NancyPelosi,It’s important for people to know how Republicans are using the #GOPTaxScam for the rich to attack protections for… https://t.co/c8qn1NutCN +06/21/2018,Politicians,@NancyPelosi,"I’m speaking with reporters during today’s weekly press conference. #FamiliesBelongTogether + +Watch here 👇 https://t.co/HarMuoWIJz" +06/21/2018,Politicians,@NancyPelosi,Democrats want to honor our responsibility to secure our borders but not by putting children in cages. https://t.co/9ku9Geeihw +06/21/2018,Politicians,@NancyPelosi,"I’ll be speaking with reporters at 10:45 am ET in the Capitol. #FamiliesBelongTogether + +Watch here: https://t.co/kLDYzk3L2E" +06/20/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s executive order seeks to replace one form of child abuse with another. Every child is entitled… https://t.co/YDTEWZIIJz +06/20/2018,Politicians,@NancyPelosi,"After six months of the #GOPTaxScam for the rich, the #GOPBudget proves that the GOP wants to pay for it all throug… https://t.co/6kV2UNtkli" +06/20/2018,Politicians,@NancyPelosi,"Six months after the #GOPTaxScam, we’re seeing the rich celebrate – and working families pay the consequences. + +Wa… https://t.co/izQuAMD5TA" +06/20/2018,Politicians,@NancyPelosi,My Democratic colleagues and I are coming together at 3 pm ET to mark six months since Republicans passed their… https://t.co/JY6LVHAXMc +06/20/2018,Politicians,@NancyPelosi,Proud to stand with my fellow @HouseDemocrats to reject @realDonaldTrump’s barbaric treatment of immigrant children… https://t.co/Q4ulLZ1ngU +06/20/2018,Politicians,@NancyPelosi,"Democrats are calling for an end to Trump’s barbaric family separation policy. #FamiliesBelongTogether + +Watch here 👇 https://t.co/pIGu4AKmVl" +06/20/2018,Politicians,@NancyPelosi,President Trump believes that immigrants are “infesting” America. The only infestation I see is the one in the Whit… https://t.co/hvELRNYLPf +06/20/2018,Politicians,@NancyPelosi,“President Trump could stop this policy with a phone call… I'll go tell him: If you don't like families being separ… https://t.co/ZrMXiPwjEu +06/20/2018,Politicians,@NancyPelosi,"RT @RepJohnYarmuth: Today @HouseBudgetGOP are considering their “Budget for a Brighter American Future,” which makes extreme cuts to Medica…" +06/19/2018,Politicians,@NancyPelosi,"Wishing everyone a very happy #Juneteenth2018! While there remains so much we must do, today is a special opportuni… https://t.co/Q4xr7SpVMj" +06/19/2018,Politicians,@NancyPelosi,"All Americans must ask, why do Republicans believe that vulnerable immigrant children do not deserve the same basic… https://t.co/VmXmBmtn8D" +06/19/2018,Politicians,@NancyPelosi,"The atrocity of family separation is not about immigration policy – it is about humanity, morality and who we are a… https://t.co/dY53BJY4fR" +06/19/2018,Politicians,@NancyPelosi,Every day that Congressional Republicans allow @realDonaldTrump to continue ripping children from their parents at… https://t.co/EHUpd3N47g +06/19/2018,Politicians,@NancyPelosi,"RT @RepCummings: We all should be able to agree that in the United States of America, we will not intentionally separate children from thei…" +06/19/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: Separating migrant children from their parents is cruel, inhumane, & morally bankrupt. + +#FamiliesBelongTogether, and @RealD…" +06/19/2018,Politicians,@NancyPelosi,RT @RepAlLawsonJr: The practice of separating children from parents as a deterrent to seeking asylum is inhumane. Seeking asylum is not ill… +06/19/2018,Politicians,@NancyPelosi,Stop using the suffering of these little children as some barbaric bargaining chip. You started this and can end it… https://t.co/wN1Lauecbi +06/19/2018,Politicians,@NancyPelosi,RT @RepJuanVargas: .@SecNielsen is giving America a false choice. Protecting our borders doesn’t mean tearing apart families – and we have… +06/18/2018,Politicians,@NancyPelosi,".@SecNielsen must resign. This is not an immigration issue, it is a humanitarian issue. Children are being used by… https://t.co/fdCWX3thuH" +06/18/2018,Politicians,@NancyPelosi,#FamiliesBelongTogether is not an immigration issue – it is a *humanitarian* issue. And we must do more to end the… https://t.co/w8oMkymWU3 +06/18/2018,Politicians,@NancyPelosi,"He may not want to admit it, but the President could end his family separation policy & #KeepFamiliesTogether right… https://t.co/Pthgg4pKrq" +06/18/2018,Politicians,@NancyPelosi,Tune in here at 3 pm ET as my colleagues & I speak after visiting a detention facility for children ripped apart fr… https://t.co/3YPzMH27kU +06/18/2018,Politicians,@NancyPelosi,"RT @RepCheri: Hey @realDonaldTrump - Remember how you won my Congressional District in 2016? Well, since Friday, 96% of the calls and email…" +06/18/2018,Politicians,@NancyPelosi,Ripping little children away from their parents is an utter atrocity that violates our asylum laws. The blame for e… https://t.co/3Nyn7Yt78c +06/17/2018,Politicians,@NancyPelosi,Wishing every father a wonderful day full of time with family & loved ones! #FathersDay https://t.co/fPlTkllJXU +06/17/2018,Politicians,@NancyPelosi,"Kathy Kraninger, Trump’s nominee to lead the @CFPB, has an opportunity to be a champion for consumers & not the fin… https://t.co/7EWcy3w9SS" +06/17/2018,Politicians,@NancyPelosi,3 yrs after nine parishioners were gunned down in a staggering and tragic act of hate at Charleston's Mother Emanue… https://t.co/tn78UDZQrc +06/16/2018,Politicians,@NancyPelosi,"RT @FrankPallone: If Republican attacks on protections for people with pre-existing conditions succeed, millions of women, older Americans,…" +06/15/2018,Politicians,@NancyPelosi,"In this week’s Democratic address, @FrankPallone discusses Republicans’ ongoing attacks on Americans’ health care. https://t.co/Lj31jqUYlN" +06/15/2018,Politicians,@NancyPelosi,Six years after President Obama honored our proud history as a nation of immigrants establishing DACA protections f… https://t.co/YVMdBEoqB4 +06/15/2018,Politicians,@NancyPelosi,The @HouseGOP immigration proposal is simply unworthy of America. The fact that the President himself won’t sign it… https://t.co/h7IXZXmxuh +06/14/2018,Politicians,@NancyPelosi,One thing is clear to anyone reading the new @HouseGOP immigration bill: It is nothing more than a cruel codificati… https://t.co/IktvyMlage +06/14/2018,Politicians,@NancyPelosi,.@SenSchumer & I will discuss the release of the DOJ Inspector General’s report on activities leading up to the 201… https://t.co/xXjmfWJFPC +06/14/2018,Politicians,@NancyPelosi,"Over the last year, Democrats have rolled out a collection of proposals to help American families achieve the bette… https://t.co/OSK3GAVcxq" +06/14/2018,Politicians,@NancyPelosi,"Every time you hear @SpeakerRyan say he wants to find a legislative solution to something, what you are really hear… https://t.co/UQ9kFqgyCs" +06/14/2018,Politicians,@NancyPelosi,The #GOPTaxScam for the rich paved the way for Republicans’ current assault on protections for the over 130 million… https://t.co/SMBSzhyeZt +06/14/2018,Politicians,@NancyPelosi,Tune in as I speak with reporters live from the Capitol 👇 https://t.co/hnevp8HO8r +06/14/2018,Politicians,@NancyPelosi,I will be speaking with reporters live from Capitol Hill at 10:45 am ET. You can watch here: https://t.co/udkZmyV7gX +06/14/2018,Politicians,@NancyPelosi,"RT @RepCummings: The @HouseGOP has spent millions investigating Clinton, yet they refuse to compel the Trump Administration to turn over do…" +06/13/2018,Politicians,@NancyPelosi,This barbaric policy must be immediately reversed. #FamiliesBelongTogether https://t.co/dFrC06RpWY +06/13/2018,Politicians,@NancyPelosi,Over 130 million Americans live with a pre-existing condition. They deserve stability — and yet Republicans are onc… https://t.co/U0Le9IiX8v +06/13/2018,Politicians,@NancyPelosi,Democrats are fighting back against the renewed GOP assault on protections for Americans with pre-existing conditio… https://t.co/difAZG53wW +06/13/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: Over 130 MILLION Americans with pre-existing conditions are protected under the ACA. Last week, the Trump Administration ann…" +06/13/2018,Politicians,@NancyPelosi,Protecting #Dreamers stands on its own merits. If Republicans plan to use Dreamers as a way to advance… https://t.co/DlYxUhh04J +06/13/2018,Politicians,@NancyPelosi,The Trump DOJ’s efforts to gut protections for Americans with pre-existing conditions follow in the footsteps of th… https://t.co/Ga7a5FTUSz +06/12/2018,Politicians,@NancyPelosi,".@Warriors & @SteveKerr, you have once again dazzled America with outstanding performance on the court & inspired l… https://t.co/qWZPABD7S6" +06/12/2018,Politicians,@NancyPelosi,Wishing a very Happy Birthday to President George H.W. Bush! https://t.co/dNh6E0OaCg +06/12/2018,Politicians,@NancyPelosi,"We must never forget the 49 beautiful souls who lost their lives two years ago at #Pulse Nightclub, when a night of… https://t.co/IJ8QCkvrBL" +06/12/2018,Politicians,@NancyPelosi,"In his haste to reach an agreement, @realDonaldTrump elevated North Korea to the level of the United States while p… https://t.co/hnQciVJvA2" +06/12/2018,Politicians,@NancyPelosi,"RT @RepValDemings: Two years after #Pulse, I know that love will win. We will transform our sorrow into love and progress. We will grieve,…" +06/12/2018,Politicians,@NancyPelosi,Paul & I are thinking of ⁦@larry_kudlow⁩. We are confident he is in good hands at Walter Reed Medical Center & wish him a speedy recovery. +06/11/2018,Politicians,@NancyPelosi,"We all want to see diplomacy succeed w/ North Korea. However, a deal that preserves the status quo & trades away ab… https://t.co/NZrF1V0UWR" +06/11/2018,Politicians,@NancyPelosi,The Trump Administration’s inhumanity and heartlessness know no bounds. https://t.co/Be16n4flUV https://t.co/qqPUkxph1Z +06/11/2018,Politicians,@NancyPelosi,Just secured Army Corps New Start funding with @SFPort to investigate options to protect the SF Embarcadero Seawall… https://t.co/salm0Mc8IO +06/11/2018,Politicians,@NancyPelosi,"Despite the repeal of #NetNeutrality, we will not stop in our efforts to protect consumers & #SaveTheInternet. A fr… https://t.co/PLr57vKS9b" +06/11/2018,Politicians,@NancyPelosi,"RT @NancyPelosi: Today marks the repeal of #NetNeutrality protections, as the Trump FCC’s rule change takes effect. You deserve better than…" +06/11/2018,Politicians,@NancyPelosi,"RT @EnergyCommerce: Today, the @FCC’s repeal of #NetNeutrality goes into effect, but the fight for a free and open internet continues in th…" +06/11/2018,Politicians,@NancyPelosi,"RT @FrankPallone: #NetNeutrality means consumers — not big corporations— choose what websites and applications we see online. Today, the @F…" +06/11/2018,Politicians,@NancyPelosi,"By upholding Ohio’s voter registration purge policy, the Supreme Court has paved the way for efforts to deprive Ame… https://t.co/vhvOpyjXpv" +06/11/2018,Politicians,@NancyPelosi,Republicans continue their fight to take health care away by arguing that protecting people with pre-existing condi… https://t.co/k27hG9HvyG +06/11/2018,Politicians,@NancyPelosi,"Today marks the repeal of #NetNeutrality protections, as the Trump FCC’s rule change takes effect. You deserve bett… https://t.co/Pxz1sWNoNi" +06/10/2018,Politicians,@NancyPelosi,"55 years after President Kennedy signed the #EqualPayAct, women still earn on average only 80 cents for every dolla… https://t.co/6kW9oTaipO" +06/09/2018,Politicians,@NancyPelosi,This week started with @realDonaldTrump boosting a Chinese company identified as a national security threat to the… https://t.co/r70oATOrXJ +06/09/2018,Politicians,@NancyPelosi,Proud of our @warriors both on & off the court. Can’t think of a better team to have won — and a sweep too!!! 🏀… https://t.co/x8zW6ycFrE +06/09/2018,Politicians,@NancyPelosi,RT @RepBarbaraLee: I’m showing my #DubNation pride today! Fingers crossed for a sweep! 🤞🏾🤞🏾#NBAFinals https://t.co/O7eiEd2orc +06/08/2018,Politicians,@NancyPelosi,"RT @RepLoisFrankel: Last year, @HouseGOP voted to rip protections away from millions of Americans with pre-existing conditions. Now, the Tr…" +06/08/2018,Politicians,@NancyPelosi,Our government should be fighting to PROTECT Americans from discrimination – not make it easier. #ProtectOurCare https://t.co/bpxxUdFX6N +06/08/2018,Politicians,@NancyPelosi,RT @RepDWStweets: The Affordable Care Act reduced the number of Americans without health insurance to record lows. Trump's sabotage of the… +06/08/2018,Politicians,@NancyPelosi,RT @RepBobbyRush: President Trump has been playing politics with Americans’ health care since the beginning of his Administration and this… +06/08/2018,Politicians,@NancyPelosi,"RT @FrankPallone: Apparently, Republicans in Washington will stop at nothing to destroy the health coverage of people with pre-existing con…" +06/08/2018,Politicians,@NancyPelosi,RT @DonaldNorcross: The Trump Administration is coming after protections for Americans with pre-existing conditions. Again. Shameful. https… +06/08/2018,Politicians,@NancyPelosi,RT @RepWilson: The Trump Admin is coming after protections for Americans with pre-existing conditions. Again. #ProtectOurCare https://t.co/… +06/08/2018,Politicians,@NancyPelosi,"Last night, we got some truly disgusting news: the Trump Administration is continuing the @HouseGOP’s efforts to ri… https://t.co/jdxS5BETcM" +06/08/2018,Politicians,@NancyPelosi,The losses of Anthony Bourdain & Kate Spade are leading many people to reflect. We never truly know what is happeni… https://t.co/8GSfqa9Oiz +06/08/2018,Politicians,@NancyPelosi,"Six months ago, America’s families were told their interests were at the heart of the #GOPTaxScam. + +Today, Big Oil… https://t.co/Agn2hiFCeQ" +06/08/2018,Politicians,@NancyPelosi,"Tonight, the Trump Admin took its cynical sabotage campaign of Americans’ health care to a stunning new low, perpet… https://t.co/FpEtqQWSSo" +06/07/2018,Politicians,@NancyPelosi,"53 years after the Supreme Court’s ruling in #GriswoldvCT, access to birth control is under attack from Republicans… https://t.co/sPJpyYQQJE" +06/07/2018,Politicians,@NancyPelosi,"China is eating our lunch, and President Trump is serving it to them. https://t.co/IaPGxJVBgA https://t.co/q9QsuX8sxa" +06/07/2018,Politicians,@NancyPelosi,#EqualPay means greater economic security for American families. It’s time to pass the #PaycheckFairnessAct! +06/07/2018,Politicians,@NancyPelosi,RT @rosadelauro: Children are being separated from their parents at the border because of @realdonaldtrump’s zero-tolerance policy. This is… +06/07/2018,Politicians,@NancyPelosi,One clear sign the #GOPTaxScam is leaving working families behind? Big Oil & Gas are cashing in – but American fami… https://t.co/fS2UulN7qZ +06/07/2018,Politicians,@NancyPelosi,I’m speaking live with reporters at the Capitol. https://t.co/IE8XbmpXyV +06/07/2018,Politicians,@NancyPelosi,Tune in as I speak with reporters live at the Capitol at 10:45 am ET. https://t.co/a2RNZlVNrS +06/07/2018,Politicians,@NancyPelosi,"RT @NydiaVelazquez: Last week, we learned that thousands more Americans died in #HurricaneMaria than previously acknowledged by the Trump A…" +06/07/2018,Politicians,@NancyPelosi,"“The building of a nation united not on every issue, but in the enduring faith that we are to be free – that we are… https://t.co/PPakNCIvnN" +06/06/2018,Politicians,@NancyPelosi,"RT @RulesDemocrats: If you're frustrated by inaction in Congress, you have the #MostClosedCongress in American history to blame. @HouseGOP…" +06/06/2018,Politicians,@NancyPelosi,Statements like this mean nothing if the @HouseGOP & @SenateGOP refuse to take concrete action in response to… https://t.co/EsTj1Zjurj +06/06/2018,Politicians,@NancyPelosi,RT @RepTedLieu: .@POTUS’s expectations haven’t often met reality during his first 500 days in office. The #GOPTaxScam is a prime example of… +06/05/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s legal team has made clear they are seeking access to classified materials not for any legitimat… https://t.co/UlUhXwkCm6 +06/05/2018,Politicians,@NancyPelosi,".@realDonaldTrump & @HouseGOP think investing in good-paying jobs, children’s health and child care, veterans and e… https://t.co/54NB1Bfsp8" +06/05/2018,Politicians,@NancyPelosi,"This is the result of trade policies that ignore farmers, producers, ranchers & growers. This new development under… https://t.co/AhjULIDBF9" +06/05/2018,Politicians,@NancyPelosi,"Voting is the foundation of our democracy. On Election Day, as voters head to the polls across California, you can… https://t.co/U6USxxX0CT" +06/05/2018,Politicians,@NancyPelosi,RT @RepJerryNadler: President Trump seems to be under the impression that he is the embodiment of the Department of Justice and that he is… +06/05/2018,Politicians,@NancyPelosi,It was a privilege to join @RepEliotEngel to tour the @RiverSpringHlth campus in his district today & visit with re… https://t.co/wperhR3BSR +06/04/2018,Politicians,@NancyPelosi,"Congratulations to Wang Dan & partners on the creation of the new think tank “Dialogue China” today, the 29th anniv… https://t.co/FDfWNV3vtW" +06/04/2018,Politicians,@NancyPelosi,"Our Founders created a government of, by, and for the people. @realDonaldTrump is not a king. We will not let him w… https://t.co/5Gv0kqo39s" +06/04/2018,Politicians,@NancyPelosi,The right to be free from persecution & discrimination because of who they are or whom they love is the most fundam… https://t.co/bPFIagqGzl +06/02/2018,Politicians,@NancyPelosi,RT @RepSarbanes: Democrats are listening to Americans from across the country who are tired of getting a raw deal from Washington. Read mor… +06/01/2018,Politicians,@NancyPelosi,"During my visit to Chicago today, I couldn’t help but think about Hadiya Pendleton, whose death in 2013 inspired… https://t.co/fqu2Z2e8bN" +06/01/2018,Politicians,@NancyPelosi,#ABetterDeal for Our Democracy is an ambitious plan to get rid of corruption in Washington & put power back in the… https://t.co/IdAfu1329Q +06/01/2018,Politicians,@NancyPelosi,"RT @RepRoybalAllard: As Trump keeps tearing babies from their immigrant mothers, let us stand against this cruelty & affirm that #FamiliesB…" +06/01/2018,Politicians,@NancyPelosi,Harming children – and separating children from their families is harmful – should not be used to deter people from… https://t.co/m99bedH8hs +06/01/2018,Politicians,@NancyPelosi,All Americans should be disgusted by the Trump Administration’s policy of separating mothers & father from their ch… https://t.co/Wc0KMXjt0P +06/01/2018,Politicians,@NancyPelosi,"49 years after #LGBTQ Americans demanded change on the streets outside the Stonewall Inn, we are recommitting to pr… https://t.co/IMjNrMglmA" +06/01/2018,Politicians,@NancyPelosi,"RT @RepEspaillat: Separating children from parents as a deterrent to seeking asylum is inhumane & cruel. Seeking asylum is not illegal, in…" +06/01/2018,Politicians,@NancyPelosi,"Jose presented himself to immigration officers at the border, along with his 1-yr-old son, to seek asylum from viol… https://t.co/vYvUpjhQx5" +06/01/2018,Politicians,@NancyPelosi,.@realDonaldTrump can’t hide the fact that his @DHSgov started the shameful policy that separates children from imm… https://t.co/QkEBFWvIxs +06/01/2018,Politicians,@NancyPelosi,The #JobsReport shows that strong employment numbers mean little to the families hit with soaring new costs under t… https://t.co/XrJMoxJcHj +05/31/2018,Politicians,@NancyPelosi,"-Empower American voters +-Strengthen ethics laws +-Fix campaign finance +Read our plan to make it happen. #ABetterDeal https://t.co/Qjg4AVpNxH" +05/30/2018,Politicians,@NancyPelosi,There are concrete ways we can fight gun violence: strengthening background checks (backed by vast majority of gun… https://t.co/S3jYVTRImh +05/30/2018,Politicians,@NancyPelosi,Mothers are the cornerstones of our communities. We need to make sure they get the #EqualPay they (& their families… https://t.co/lqGjaMVXsE +05/30/2018,Politicians,@NancyPelosi,"Wishing President George Herbert Walker Bush well, hoping that he can return home soon, and sending him love & than… https://t.co/bMmPZmSIYN" +05/29/2018,Politicians,@NancyPelosi,Read my full statement here: https://t.co/nvjaEPtyud https://t.co/XMBhY7NgvD +05/29/2018,Politicians,@NancyPelosi,We must also support efforts led by @NydiaVelazquez to investigate the alarming discrepancy between this report & t… https://t.co/Jn9h5Y3AOT +05/29/2018,Politicians,@NancyPelosi,"8 months after the Trump Admin’s stunningly weak response, far too many of our fellow Americans in #PuertoRico lack… https://t.co/vwQfnuSG92" +05/29/2018,Politicians,@NancyPelosi,"A shocking new study has found that 4,645 people lost their lives in #PuertoRico as a result of Hurricane Maria, fa… https://t.co/O6Apob9yvS" +05/29/2018,Politicians,@NancyPelosi,"On what would have been his 101st birthday, we continue to be inspired by the service & vision for a better future… https://t.co/lwSicI5NRm" +05/29/2018,Politicians,@NancyPelosi,Proud of our @warriors! What an incredible series. Onwards to the #NBAFinals. #DubNation https://t.co/o6FM9qgphy +05/28/2018,Politicians,@NancyPelosi,That’s not what today is for. https://t.co/qEhKNQQOUF +05/28/2018,Politicians,@NancyPelosi,Our Armed Forces are made up of people from all walks of life – and so are those who gave the ultimate sacrifice. N… https://t.co/XtTWHcgZ34 +05/28/2018,Politicians,@NancyPelosi,"This #MemorialDay, we take time to remember those who gave so much for our freedoms. We must honor their sacrifice… https://t.co/eJJQDXe772" +05/28/2018,Politicians,@NancyPelosi,Paid a visit to San Francisco National Cemetery at @PresidioSF this weekend to honor our fallen men & women in unif… https://t.co/i6CL25ECwV +05/25/2018,Politicians,@NancyPelosi,The American people deserve better than a President who is eager to sell out the American people & our national sec… https://t.co/9BtsHu8GgQ +05/25/2018,Politicians,@NancyPelosi,"Trump pledged to fight for Americans, but he's now using U.S. government resources to enrich ZTE (a foreign company… https://t.co/5ku96LGPcm" +05/25/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s ZTE deal is a staggering betrayal of the American people. +05/25/2018,Politicians,@NancyPelosi,No victim of discrimination or harassment on Capitol Hill should be silenced. Now that the Senate has passed their… https://t.co/Cd7JwE6k1A +05/25/2018,Politicians,@NancyPelosi,"Our budget should reflect our values – but as countless people in Congo face a deadly Ebola outbreak, Republicans i… https://t.co/FwbMALB21j" +05/25/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: What @RealDonaldTrump & @SpeakerRyan told working Americans: the #GOPTaxScam would create jobs here. + +What actually happene…" +05/24/2018,Politicians,@NancyPelosi,"Read my full joint statement with @SenSchumer, @RepAdamSchiff, & Senator @MarkWarner: https://t.co/FfPcGEpKrb" +05/24/2018,Politicians,@NancyPelosi,Today's Gang of Eight briefing was conducted in a manner that protects sources & methods. Nothing we heard today ha… https://t.co/WVvoRnyV2h +05/24/2018,Politicians,@NancyPelosi,"By choosing not to attend the Gang of 8 meeting today, @SpeakerRyan has abdicated his responsibility to the House & the American people." +05/24/2018,Politicians,@NancyPelosi,Congress can’t stand by & let Americans believe their voices do not matter. That’s why it is so crucial that we giv… https://t.co/B1ZlujSKnW +05/24/2018,Politicians,@NancyPelosi,Lots to discuss during today’s weekly press conference. Watch here 👇 https://t.co/KRlgA9vfDs +05/24/2018,Politicians,@NancyPelosi,"I will speak live with reporters in just under an hour. #ABetterDeal + +You can tune in here: https://t.co/Gk76u8FUuy" +05/24/2018,Politicians,@NancyPelosi,"There is a simple idea at the core of Democrats’ #ABetterDeal: that together, we can build a better future for all… https://t.co/YOLgjIDQHw" +05/24/2018,Politicians,@NancyPelosi,"Like many things President Trump has promised in the past, it seems his commitments on prescription drugs are… less… https://t.co/x6BOnQh8C6" +05/24/2018,Politicians,@NancyPelosi,"We know what we need to do to stabilize the health insurance markets. Instead, the Administration prefers to focus… https://t.co/0kYAHxn15g" +05/24/2018,Politicians,@NancyPelosi,The #GOPTaxScam prioritized the wealthiest & big corporations. That’s just a fact. The question we need to ask is:… https://t.co/Xo1qCiMQnR +05/24/2018,Politicians,@NancyPelosi,"Small businesses should be at the core of any effort to strengthen our economy. After all, they play a key role in… https://t.co/EmlxRTZXp7" +06/28/2018,Politicians,@SenateMajLdr,The far-left special interest groups are already calling on Senate Democrats to oppose anyone on President Trump’s… https://t.co/KoRaqoNK0w +06/28/2018,Politicians,@SenateMajLdr,"American farm communities need stability and predictability, and they need it urgently. The time has come to delive… https://t.co/kHMP4Qcy2l" +06/28/2018,Politicians,@SenateMajLdr,"All week, I’ve highlighted some of the ways the farm bill will support the family farmers whose harvest feeds Ameri… https://t.co/geu51q9sAa" +06/28/2018,Politicians,@SenateMajLdr,I’m confident Chairman Grassley will capably lead the Judiciary Committee through the confirmation process that lies before us. +06/28/2018,Politicians,@SenateMajLdr,"As I stated yesterday, the Senate stands ready to fulfill our constitutional role by offering advice and consent on… https://t.co/tAzFZWucYN" +06/28/2018,Politicians,@SenateMajLdr,"If you pick up a local paper in almost any state from Montana to Florida, you’ll find that Americans are paying les… https://t.co/IEGFRUbH49" +06/28/2018,Politicians,@SenateMajLdr,"Despite warnings from our Democratic colleagues that tax reform savings would never reach consumers, utilities acro… https://t.co/N7szxMyYdi" +06/27/2018,Politicians,@SenateMajLdr,Let’s address farmers’ immediate needs. Let’s give them new tools to help secure their future. The farm bill before… https://t.co/Ye2lpZBRXc +06/27/2018,Politicians,@SenateMajLdr,"Today, it was my privilege to welcome an Honor Flight of Kentucky veterans to Washington. On behalf of the Commonwe… https://t.co/qbgHLLiDaB" +06/27/2018,Politicians,@SenateMajLdr,My full remarks: https://t.co/PUiahqy0Ej +06/27/2018,Politicians,@SenateMajLdr,The Senate stands ready to fulfill its constitutional role by offering advice and consent on @POTUS… https://t.co/yIzNwUK9oD +06/27/2018,Politicians,@SenateMajLdr,I want to express gratitude for the extraordinary service that Justice Kennedy has offered our nation. We owe him a… https://t.co/2Zuw87LYhb +06/27/2018,Politicians,@SenateMajLdr,The success of tax reform might come as a surprise to the Democrats who opposed it at every turn. But it certainly… https://t.co/i8rAwBRWiA +06/27/2018,Politicians,@SenateMajLdr,We’ve seen that tax reform is well-suited to the needs of young Americans on the first rungs of the economic ladder… https://t.co/jMrWt6Ruag +06/27/2018,Politicians,@SenateMajLdr,"In six short months, we’ve seen that tax reform is well-suited to the needs of the millions of American workers who… https://t.co/W69Lky1RXL" +06/27/2018,Politicians,@SenateMajLdr,"In December, the Democratic Leader said on the Senate floor that there’s nothing about tax reform that’s “suited to… https://t.co/gPuf4ZPasJ" +06/26/2018,Politicians,@SenateMajLdr,"From top to bottom, this farm bill takes serious steps to ensure the future of American agriculture -- for the sake… https://t.co/1BjHhAp0ag" +06/26/2018,Politicians,@SenateMajLdr,"Farm families across America face uncertainty: Natural disasters, from droughts to floods, volatile world markets,… https://t.co/wjY8OLb2jd" +06/26/2018,Politicians,@SenateMajLdr,"As the proud senior senator from Kentucky, I know how important the farm bill is to agricultural communities in my… https://t.co/huLzaMVNW4" +06/26/2018,Politicians,@SenateMajLdr,"Today, First Lieutenant Garlin Murl Conner of Kentucky is being posthumously awarded the Medal of Honor. He embodie… https://t.co/6i9y2CoFL0" +06/26/2018,Politicians,@SenateMajLdr,My Democratic colleagues are arguing with the facts. They’re arguing with the data. They’re arguing with American f… https://t.co/x17BMHNjY7 +06/26/2018,Politicians,@SenateMajLdr,Democrats may want to put Washington’s foot back on the brake by repealing tax reform and piling up more regulation… https://t.co/Ecfd7kWXpe +06/21/2018,Politicians,@SenateMajLdr,I was deeply saddened to learn of the passing of my friend Charles Krauthammer this afternoon. https://t.co/ixVOBSYBF9 +06/21/2018,Politicians,@SenateMajLdr,"And thanks to the leadership of our colleagues at the subcommittee level, more bills will be on their way to the fl… https://t.co/xfEQSF9Jja" +06/21/2018,Politicians,@SenateMajLdr,"This week, we’ve been considering a regular-order appropriations package and voting on amendments. Thanks to Chairm… https://t.co/drUtdCNK8G" +06/21/2018,Politicians,@SenateMajLdr,"Six months later, here’s a remarkable fact: There are now more job openings all across this country than there are… https://t.co/ZNnLzjpoe5" +06/21/2018,Politicians,@SenateMajLdr,"Republicans wanted working families to keep more of what they earn and send less to the IRS. Meanwhile, the Democra… https://t.co/WpzYnsosqp" +06/21/2018,Politicians,@SenateMajLdr,Yesterday marked six months since Congress passed our overhaul of America’s tax code. I remember debating the Tax C… https://t.co/eTqVQGJSrP +06/20/2018,Politicians,@SenateMajLdr,My statement on @POTUS’ immigration executive order >> https://t.co/biDd3gTpbM +06/20/2018,Politicians,@SenateMajLdr,"Today marks six months since the Tax Cuts and Jobs Act passed Congress. Already, it’s led employers to issue ‘tax r… https://t.co/fztW3wpcl9" +06/20/2018,Politicians,@SenateMajLdr,"Today, I met with Kathy Kraninger, @POTUS’ nominee to direct the @CFPB. Her resume and reputation suggest she’s wel… https://t.co/rXMVS0X4XD" +06/19/2018,Politicians,@SenateMajLdr,"I support, and all of the members of the Republican Conference support, a plan that keeps families together while t… https://t.co/03Jiham7rO" +06/19/2018,Politicians,@SenateMajLdr,"Led by Chairman @SenShelby, Ranking Member @SenatorLeahy, and all the subcommittee leadership, the Appropriations c… https://t.co/PUjUd4gqln" +06/19/2018,Politicians,@SenateMajLdr,"The spending agreement reached earlier this year achieved a great deal, but the process wasn’t anybody’s best-case… https://t.co/gJh7R68Zje" +06/14/2018,Politicians,@SenateMajLdr,"One year ago, the nation watched and prayed as violence struck a congressional baseball practice. Later today, that… https://t.co/XM86nXuaPr" +06/14/2018,Politicians,@SenateMajLdr,RT @SenateGOP: Courage. Sacrifice. Determination. Unity. These are the things that endure one year later. Let’s play ball. #CongressionalBa… +06/14/2018,Politicians,@SenateMajLdr,"Fortunately, the facts are the facts. Americans know success when they see it. And Republicans will keep fighting t… https://t.co/q1lshSSd9V" +06/14/2018,Politicians,@SenateMajLdr,There are more job openings than Americans looking for work for the first time in at least 20 years. But Democrats… https://t.co/mPwupYkvv5 +06/14/2018,Politicians,@SenateMajLdr,"In #Kentucky, agriculture is part of who we are. Our farm families produce everything from poultry to soybeans. The… https://t.co/b4AyeCBNRv" +06/14/2018,Politicians,@SenateMajLdr,"Today, on the 243rd birthday of the @USArmy, I’m glad we're voting to continue advancing this critical legislation… https://t.co/smXq9mPnLU" +06/14/2018,Politicians,@SenateMajLdr,"The Armed Services Committee considered and included 300 amendments in the defense bill. On the floor, Chmn… https://t.co/35bjzg5hDB" +06/13/2018,Politicians,@SenateMajLdr,"For months, Secretary Mattis and our military leaders have detailed our servicemembers’ most pressing needs and exp… https://t.co/4pwtGZHy3v" +06/13/2018,Politicians,@SenateMajLdr,On one side of the aisle are those who mock the good economic news -- those who can’t grasp why an 18-year low in u… https://t.co/mGJKiQTxYj +06/13/2018,Politicians,@SenateMajLdr,"Unemployment is lower today than at any time since 2000. Last week, the House Democratic leader responded: “Hip-hip… https://t.co/WlLEvw3MSe" +06/13/2018,Politicians,@SenateMajLdr,I’d like to thank the Chairman & @SenStabenow for working w/ me to include my #HempFarmingAct in the bill. It build… https://t.co/Ex8ZMR32kf +06/13/2018,Politicians,@SenateMajLdr,"This morning, I’m joining my colleagues on the Agriculture Committee to mark up the farm bill. It’s an impressive p… https://t.co/abCz3uH7ct" +06/12/2018,Politicians,@SenateMajLdr,I want to share the Senate’s warmest wishes for a speedy recovery with Larry Kudlow. Larry's a happy warrior for pr… https://t.co/yqpFL4qmSj +06/12/2018,Politicians,@SenateMajLdr,"Just hours ago, the American delegation concluded their summit meeting with North Korean officials. I congratulate… https://t.co/ld4WCFolqN" +06/12/2018,Politicians,@SenateMajLdr,I just got off the phone with my friend @SenatorDole. I was grateful to catch up and thank him for his many years o… https://t.co/Cx0SOzZgFq +06/11/2018,Politicians,@SenateMajLdr,It’s one of our most important jobs here in Congress. The 2019 defense authorization is the top item on our to-do l… https://t.co/RcBuddBvpy +06/11/2018,Politicians,@SenateMajLdr,"Congress has passed defense authorization acts for 57 consecutive years. In doing so, we’ve taken steps to fulfill… https://t.co/XE3PDmDYXz" +06/11/2018,Politicians,@SenateMajLdr,This is part of what we were elected to do: Get Washington D.C.’s foot off the brake. Let hard-working Americans an… https://t.co/BdZw5rgPqk +06/11/2018,Politicians,@SenateMajLdr,"In 2016, under President Obama, the Federal Register printed nearly 39,000 pages of rules (an all-time high) and an… https://t.co/heSNArJj6l" +06/08/2018,Politicians,@SenateMajLdr,"For the past forty years, my dear friend Charles Krauthammer has brought a piercing intellect, a sharp wit, and a d… https://t.co/uoVkM65WaG" +06/08/2018,Politicians,@SenateMajLdr,I'm about to join my friends at the @FaithandFreedom Road To Majority conference to discuss how we’re turning conse… https://t.co/Lm7Soej7I5 +06/07/2018,Politicians,@SenateMajLdr,"- Lowest unemployment in 18 yrs. +- More open positions than workers seeking jobs for 1st time on record. +- Optimi… https://t.co/LqFP8iiry4" +06/07/2018,Politicians,@SenateMajLdr,"Sixteen months ago, @POTUS Trump & GOP majorities arrived in Washington w/ simple instructions from the American pe… https://t.co/HC6JuN07rA" +06/07/2018,Politicians,@SenateMajLdr,"Today, our economy is starting to work better for all kinds of communities. Just look at Ohio >> https://t.co/tTaW3doQkK" +06/07/2018,Politicians,@SenateMajLdr,The defense bill will support military posts that form the backbone of local communities and advance our National D… https://t.co/UHwbLjbbbj +06/06/2018,Politicians,@SenateMajLdr,Tune in tonight for my interview on @FoxNews with @IngrahamAngle at 10 PM ET https://t.co/lQrBKrdT80 +06/06/2018,Politicians,@SenateMajLdr,This isn’t due diligence. It isn’t good government. It’s what happens when our colleagues across the aisle put poli… https://t.co/JCh0Jk5B4j +06/06/2018,Politicians,@SenateMajLdr,Not a single Senator voted against confirming Robert Wier or Fernando Rodriguez to serve as district judges yesterd… https://t.co/FHjVRxpBBv +06/06/2018,Politicians,@SenateMajLdr,"Cloture votes used to be a rare tool of last resort, only used in a tiny handful of cases. Not these days. In many… https://t.co/EWru4PZn5S" +06/06/2018,Politicians,@SenateMajLdr,"This morning, I was honored to meet a number of #Kentucky veterans at the World War II Memorial and welcome them to… https://t.co/acKzya8QNv" +06/06/2018,Politicians,@SenateMajLdr,"As the #Senate works to give America’s armed forces the resources they need to keep us safe, I’m proud that @POTUS… https://t.co/Idyk09ZdJj" +06/06/2018,Politicians,@SenateMajLdr,"The John S. McCain 2019 National Defense Authorization Act is the result of months of serious, bipartisan work by t… https://t.co/rJmFD2NQL9" +06/06/2018,Politicians,@SenateMajLdr,"On June 6th, 1944, the free world embarked on a daring mission of historic proportions. With conviction and bravery… https://t.co/HlSZigB2ri" +06/05/2018,Politicians,@SenateMajLdr,RT @RoyBlunt: It’s full steam ahead for our economy https://t.co/HfIVO2THyJ +06/05/2018,Politicians,@SenateMajLdr,"The #Senate has been attacking the #opioid crisis from all angles, but major challenges are rarely solved in Washin… https://t.co/sAHedZsDaL" +06/05/2018,Politicians,@SenateMajLdr,Senate Democrats have already forced 100 cloture votes on President Trump’s nominees in his first two years vs. 24… https://t.co/1FKOBGnVIe +06/05/2018,Politicians,@SenateMajLdr,My statement on cancelling the August recess: https://t.co/yyAEUSMVQW +06/05/2018,Politicians,@SenateMajLdr,"Today, the #Senate confirmed Robert Wier to serve on the Eastern District Court of #Kentucky by a vote of 95-0. Des… https://t.co/28hSXp9Wr5" +06/05/2018,Politicians,@SenateMajLdr,The bipartisan work of the Armed Services Committee has produced a strong NDAA. This legislation sends a clear mess… https://t.co/WBTFIsdt4a +06/05/2018,Politicians,@SenateMajLdr,"After years of spending caps harming the readiness of our military, Congress passed a two-year agreement that inclu… https://t.co/lh7p8COayS" +05/28/2018,Politicians,@SenateMajLdr,"Today, we pause as one people to remember the brave men and women who paid the ultimate price defending our nation… https://t.co/O3hb8djtiT" +05/25/2018,Politicians,@SenateMajLdr,This great nation wouldn’t exist without the heroism and sacrifice of those we honor on Memorial Day. https://t.co/ca0rLTtisH +05/25/2018,Politicians,@SenateMajLdr,The record of this Congress is quite spectacular. It’s been a period of extraordinary accomplishment on behalf of t… https://t.co/5hcMXJ0usq +05/24/2018,Politicians,@SenateMajLdr,Always great to sit down with @BretBaier. Tune in for our conversation this evening on @SpecialReport @FoxNews. +05/24/2018,Politicians,@SenateMajLdr,Joint statement w/@SenSchumer on today’s passage of @SenAmyKlobuchar and @RoyBlunt’s proposal to update how Congres… https://t.co/3Lod4AVea1 +05/24/2018,Politicians,@SenateMajLdr,"One bill after another, one confirmation after another, the Senate is producing accomplishments that will directly… https://t.co/yHmqW6w3u0" +05/24/2018,Politicians,@SenateMajLdr,"The #Senate is having a productive week: +-Passed VA MISSION Act to keep our promise to our vets +-Confirming more o… https://t.co/DPcglUsdzX" +05/24/2018,Politicians,@SenateMajLdr,"This morning, @POTUS signed a law that will help middle-class families/small businesses access credit. It was the p… https://t.co/StxA1LyQlJ" +05/23/2018,Politicians,@SenateMajLdr,"Today, the #Senate passed the VA MISSION Act to help vets access the care they need, when and where they need it. I… https://t.co/9YvJanWJDR" +05/23/2018,Politicians,@SenateMajLdr,"Veterans of all eras rely on the promise of accessible, quality care when they return home. But too often, the VA h… https://t.co/p6KL9khZKV" +05/23/2018,Politicians,@SenateMajLdr,"Local lenders and the communities that depend on them needed relief from the inefficient, imprecise, one-size-fits-… https://t.co/9H4LuBsjUU" +05/23/2018,Politicians,@SenateMajLdr,"Workplace harassment is unacceptable anywhere – end of story. With @SenAmyKlobuchar and @RoyBlunt’s proposal, Congr… https://t.co/MwuYmWmqM8" +05/23/2018,Politicians,@SenateMajLdr,"Thanks to the bipartisan work of @SenAmyKlobuchar and @RoyBlunt, the Senate is coming together to update the laws g… https://t.co/MyteUBBS8O" +05/22/2018,Politicians,@SenateMajLdr,"For years, the Obama-era Dodd-Frank rules designed for Wall Street made life needlessly difficult for lenders on Ma… https://t.co/j772ncMOuO" +05/22/2018,Politicians,@SenateMajLdr,"And many thanks to you, @SenRonJohnson, for your hard work in getting this life-changing legislation across the fin… https://t.co/eFGYcRVlAA" +05/22/2018,Politicians,@SenateMajLdr,"With @POTUS’ signature yesterday, this unified GOP government has put yet another onerous regulation into the waste… https://t.co/eUbfxFZ0oV" +05/22/2018,Politicians,@SenateMajLdr,The bill before us carries the support of @POTUS Trump and 38 veterans advocacy organizations. It’s based on a simp… https://t.co/GPRw53bGVu +05/22/2018,Politicians,@SenateMajLdr,Delays at the VA cannot stand between veterans and the medical care they need. The shortcomings of a federal bureau… https://t.co/fZ7g3Ck1TH +05/21/2018,Politicians,@SenateMajLdr,"Today, @POTUS signed the 16th Congressional Review Act resolution passed by this GOP Congress. It repealed a rule t… https://t.co/xmCEnz1hOe" +05/21/2018,Politicians,@SenateMajLdr,"Today, the brave men and women of the @CIA welcomed their colleague, Gina Haspel, to a new role for which she is un… https://t.co/bowwSFTroT" +05/18/2018,Politicians,@SenateMajLdr,Robert Wilkie’s record of public service makes him an outstanding choice for Secretary @DeptVetAffairs. He'll be ta… https://t.co/soBm1hmwRF +05/18/2018,Politicians,@SenateMajLdr,"The prayers of the entire Senate are with the victims of today’s violence in Santa Fe, their families, and the comm… https://t.co/uxlJ1e0bk6" +05/17/2018,Politicians,@SenateMajLdr,The Senate will pass the VA MISSION Act next week to strengthen the resources available to our veterans… https://t.co/aLPl1ThZ6g +05/17/2018,Politicians,@SenateMajLdr,The Senate just confirmed Gina Haspel to lead the @CIA. Her talent and expertise make her uniquely qualified to fa… https://t.co/q0Jxl24lqv +05/17/2018,Politicians,@SenateMajLdr,"According to new survey data from @shopfloorNAM, more than 93% of U.S. manufacturing firms have a positive outlook.… https://t.co/KksngQ7nq0" +05/17/2018,Politicians,@SenateMajLdr,"Republican policies are shaking the regulatory rust off of the U.S. economy, and American job creators, entrepreneu… https://t.co/tbdjqYeKLG" +05/17/2018,Politicians,@SenateMajLdr,RT @SenJohnMcCain: Happy 37th anniversary to my love @cindymccain - time flies when you’re having fun! https://t.co/eivKVUylHb +05/17/2018,Politicians,@SenateMajLdr,Gina Haspel is the right woman at the right time. Senators on both sides of the aisle agree. It’s time to rise to t… https://t.co/5QbtRQQ47c +05/16/2018,Politicians,@SenateMajLdr,"Last year, under the leadership of @AjitPaiFCC, the agency sought to fix this mistake and restore the rules that he… https://t.co/VQDnaM8IS5" +05/16/2018,Politicians,@SenateMajLdr,"In 2015, President Obama’s FCC set out to fix what wasn’t broken. It imposed regulations designed for Depression-er… https://t.co/Tub7k74IIz" +05/16/2018,Politicians,@SenateMajLdr,"Even in @SenSchumer’s backyard of Brooklyn, lower excise taxes are letting @nydistilling cut prices. In Kentucky,… https://t.co/pxhCCv7lzu" +05/16/2018,Politicians,@SenateMajLdr,"After 8 years of Democrats’ policies enriching big cities but leaving small businesses behind, Republican policies… https://t.co/BHfuKZRYlA" +05/16/2018,Politicians,@SenateMajLdr,"Gina Haspel is the right woman at the right time. There is no reason why her confirmation should be delayed, and I… https://t.co/7X6plPExNC" +05/15/2018,Politicians,@SenateMajLdr,RT @McConnellPress: .@SenateMajLdr welcomed @realDonaldTrump to @uscapitol today just after #Senate approved the 21st Circuit Judge. Nearly… +05/15/2018,Politicians,@SenateMajLdr,".@SenateGOP and @POTUS Trump had a productive meeting today in the +@uscapitol. Our shared agenda is critical to mo… https://t.co/GkfP1VBiTu" +05/15/2018,Politicians,@SenateMajLdr,The amount employers spent on worker pay and benefits grew more in 2017 than in any calendar year under President O… https://t.co/C2MSuJY4sy +05/15/2018,Politicians,@SenateMajLdr,"For years, Democratic policies like high taxes and runaway regulations put a headwind in the faces of American job… https://t.co/tbPsHnXJOt" +05/15/2018,Politicians,@SenateMajLdr,"The #Senate has confirmed @POTUS’ 20th and 21st circuit court nominees – +a monumental achievement of unified Republ… https://t.co/ZlpNzhXJ3G" +05/15/2018,Politicians,@SenateMajLdr,RT @usatodayopinion: From the director of National Intelligence Dan Coats: I am acutely aware of decisions our country made after the 9/11… +05/15/2018,Politicians,@SenateMajLdr,I also wish to pay tribute today to #Kentucky law enforcement officers who made the ultimate sacrifice on our behal… https://t.co/PXfHIrcdIs +05/15/2018,Politicians,@SenateMajLdr,"During #PoliceWeek, thousands of officers gather in Washington to honor fallen comrades and rededicate themselves t… https://t.co/8M8jYaUFU6" +05/15/2018,Politicians,@SenateMajLdr,The #Senate welcome @POTUS Trump to the Capitol today. +05/14/2018,Politicians,@SenateMajLdr,"Jerusalem is Israel’s capital, plain and simple. That’s where our embassy belongs. And thanks to @POTUS’ leadership… https://t.co/JTP81J1KW2" +05/14/2018,Politicians,@SenateMajLdr,"We all know John McCain doesn’t exactly have a relaxed bone in his body. He still +had plenty to say about work, I a… https://t.co/CgMTptjMBg" +05/14/2018,Politicians,@SenateMajLdr,"This weekend, I had the pleasure of traveling to the beautiful hills outside Sedona, Arizona and spending time with… https://t.co/Up4tzYCKys" +05/11/2018,Politicians,@SenateMajLdr,Tax reform has Indiana off to the races: https://t.co/XyXDMoxwBb +05/11/2018,Politicians,@SenateMajLdr,"Across the nation, every day brings another piece of good news for middle-class workers and families. https://t.co/hKViD6O1UC" +05/11/2018,Politicians,@SenateMajLdr,My statement on @POTUS's drug pricing announcement: https://t.co/3eGYATntY1 https://t.co/RjB0BUEjxU +05/10/2018,Politicians,@SenateMajLdr,"When @POTUS visits Indiana today, he’ll join Hoosiers to celebrate the new jobs and prosperity that our Republican… https://t.co/tW4XLJlIkX" +05/10/2018,Politicians,@SenateMajLdr,"After years of failed Democratic policies, America is open for business once again. +Surveys show that since @POTUS… https://t.co/IGNQHffaQV" +05/10/2018,Politicians,@SenateMajLdr,"In 2013, Senate Democrats voted to confirm John Brennan as CIA Director. What’s changed? https://t.co/JXSMJ3v9Bd" +05/10/2018,Politicians,@SenateMajLdr,"This is as close as we’ve ever come to a Korean peninsula without +nuclear weapons. @POTUS deserves all the credit f… https://t.co/SqNpKciTEp" +05/10/2018,Politicians,@SenateMajLdr,My statement on the U.S. summit with North Korea: https://t.co/Whk0S1tv3F +05/10/2018,Politicians,@SenateMajLdr,Gina Haspel’s testimony yesterday showcased the judgment and poise that have defined her thirty-three year career o… https://t.co/AMiOmH2gSn +05/10/2018,Politicians,@SenateMajLdr,"Michael Brennan carries bipartisan support from the people who know him best, including the endorsement of more tha… https://t.co/8nvP0QUGyS" +05/10/2018,Politicians,@SenateMajLdr,"Overnight, @SecPompeo completed a sensitive diplomatic mission and +returned home from North Korea with three freed… https://t.co/bUSYXMbO1j" +05/09/2018,Politicians,@SenateMajLdr,"Tight economic sanctions brought the Iranian regime to the table last time, but unfortunately, it led to a hopeless… https://t.co/Z0vWntc0g0" +05/09/2018,Politicians,@SenateMajLdr,Tonight I’ll be on the air in the 6pm hour with @guypbenson and Marie Harf on their new @FoxNewsRadio show @BensonAndHarf. +05/09/2018,Politicians,@SenateMajLdr,RT @CNBC: John Thune: We can't let 'political theater' ruin a bipartisan deal on net neutrality https://t.co/GhRhqsKCNg +05/09/2018,Politicians,@SenateMajLdr,Looking forward to speaking with @DanaPerino during today’s @DailyBriefing on @FoxNews. +05/09/2018,Politicians,@SenateMajLdr,This morning brought welcome news that @POTUS and @SecState had secured the release of 3 Americans. I’m hopeful we… https://t.co/6KUaeWb3hR +05/09/2018,Politicians,@SenateMajLdr,The #Senate is processing six more well-qualified nominees for the federal bench. Each nominee on the slate has bee… https://t.co/IhKLeAvoNc +05/09/2018,Politicians,@SenateMajLdr,"Gina Haspel is a tremendous choice to lead the Central Intelligence Agency. She would bring more direct, hard-earne… https://t.co/GYjCVhhQwj" +05/08/2018,Politicians,@SenateMajLdr,"When Democrats controlled Washington, more than 75 percent of manufacturers said an unfavorable business climate fr… https://t.co/hSJJIm06Yg" +05/08/2018,Politicians,@SenateMajLdr,"In December 2017, after just one year of Republican policies, optimism among American manufacturers hit the highest level ever recorded." +05/08/2018,Politicians,@SenateMajLdr,"The percentage of American workers who are unemployed, underemployed, or discouraged recently hit a 17-year low. An… https://t.co/Zq2XcwFnMt" +05/08/2018,Politicians,@SenateMajLdr,The JCPOA was a flawed agreement which @POTUS determined is not in America's nat'l security interests. I share his… https://t.co/6NBgcxRDqf +05/07/2018,Politicians,@SenateMajLdr,Republican policies have taken Washington’s foot off the brake of the U.S. economy. We’ve rolled back a host of job… https://t.co/4AnK4gDd3w +05/07/2018,Politicians,@SenateMajLdr,"This week, the #Senate will consider another slate of extremely well-qualified nominees for seats on the federal be… https://t.co/lt0v6x5DAm" +05/03/2018,Politicians,@SenateMajLdr,I'm looking forward to joining @hughhewitt live on the air at 8:30. +04/26/2018,Politicians,@SenateMajLdr,.@SenatorLankford is giving Democrats their own chance to show that principled convictions matter more than politic… https://t.co/sTwMJYYPau +04/26/2018,Politicians,@SenateMajLdr,#TBT to #Senate Democrats filibustering @POTUS' well qualified judicial nominees. https://t.co/TeM8G2SJ60 +04/26/2018,Politicians,@SenateMajLdr,"After the #Senate confirms our 70th Secretary of @StateDept, we will vote on the nomination of Ric Grenell to serve… https://t.co/fN8NJVvWgJ" +04/26/2018,Politicians,@SenateMajLdr,#Senate Democrats continue with their historic obstruction of @POTUS' nominees. https://t.co/4zgKyy9Itd +04/26/2018,Politicians,@SenateMajLdr,#Senate Democrats are again making history by requiring @POTUS' Secretary of @StateDept nominee to get a cloture vo… https://t.co/CQ2z2rIr2C +04/26/2018,Politicians,@SenateMajLdr,"Today, the #Senate will confirm Mike Pompeo as our nation’s 70th Secretary of @StateDept on a bipartisan vote, the… https://t.co/7XQ9NW6Azh" +04/25/2018,Politicians,@SenateMajLdr,"RT @SenShelby: Despite historic obstruction by the Democrats, the Senate is one step closer to swiftly confirming @POTUS’s nominees. https:…" +04/25/2018,Politicians,@SenateMajLdr,"Tonight, 7:00 Eastern +⬇️ +I will be joining @marthamaccallum on @TheStoryFNC to discuss #Senate Democrats' continue… https://t.co/1HNtMzTbCS" +04/25/2018,Politicians,@SenateMajLdr,.@POTUS' nominees have faced 88 cloture votes in his first 2 years vs. 24 for previous 6 presidents combined in the… https://t.co/Z0xGH1sxcg +04/25/2018,Politicians,@SenateMajLdr,"Despite historic obstruction from #Senate Democrats, the Senate keeps on confirming @POTUS’ well qualified Circuit… https://t.co/dQxUZz0Ag8" +04/24/2018,Politicians,@SenateMajLdr,The passage of the historic #TaxCutsandJobsAct was just the latest illustration of the diverging paths Republicans… https://t.co/WvQTtudZe5 +04/24/2018,Politicians,@SenateMajLdr,"""America Will Be Better Off If Mike Pompeo Is Confirmed"" as our next Secretary of @StateDept. https://t.co/grGYWTR7q2" +04/24/2018,Politicians,@SenateMajLdr,"Today, I am introducing the CAREER Act to bring targeted relief to the states most devastated by the #opioidcrisis. https://t.co/K2q64OxoTo" +04/24/2018,Politicians,@SenateMajLdr,#ICYMI → the #Senate Foreign Relations Cmte favorably recommended Mike Pompeo to be our nation's 70th Secretary of… https://t.co/nN7BIzhXt5 +04/23/2018,Politicians,@SenateMajLdr,"What could it be other than politics? #Senate Democrats flip flop on Mike Pompeo after saying ‘He is smart, hard-wo… https://t.co/tb9STlDEFu" +04/23/2018,Politicians,@SenateMajLdr,The #Senate will also vote later today to advance the nomination of Kyle Duncan serve on the Fifth Circuit Court of… https://t.co/53mGWIxhEk +04/23/2018,Politicians,@SenateMajLdr,"What could it be other than politics? #Senate Democrats flip flop on Mike Pompeo after saying ‘He is smart, hard-wo… https://t.co/BmSdih6moZ" +04/23/2018,Politicians,@SenateMajLdr,"Today, the Foreign Relations Cmte will consider @POTUS' choice for the next Secretary of @StateDept. It's hard to i… https://t.co/TxIXtkvtb7" +04/23/2018,Politicians,@SenateMajLdr,Iowans are seeing benefits of #TaxReform. Senator @ChuckGrassley's new op-ed on how the #TaxCutsandJobsAct is helpi… https://t.co/MsvH23WPVK +04/19/2018,Politicians,@SenateMajLdr,I look forward to working with Dr. Jackson to build on the progress we’ve made in expanding accessibility and impro… https://t.co/XGB6jgnpR3 +04/19/2018,Politicians,@SenateMajLdr,"Consumer confidence at a 14 year ⬆️. Jobless claims, a 45 year ⬇️. + +#TaxReform is working for the American people… https://t.co/ZClmCHCEVd" +04/19/2018,Politicians,@SenateMajLdr,This GOP Congress and @POTUS think the Gov needs to give workers and job creators breathing room. So we passed reco… https://t.co/3xrlyG12Jv +04/19/2018,Politicians,@SenateMajLdr,There was a long-standing and overwhelmingly bipartisan tradition in the #Senate of support of Secretaries of… https://t.co/eeaEGX6aCT +04/19/2018,Politicians,@SenateMajLdr,".@NASA has been led by an acting administrator for a record 15 months, so I hope all Senators will join me in votin… https://t.co/vj90q7ox0V" +04/19/2018,Politicians,@SenateMajLdr,"By confirming Mike Pompeo as Secretary of @StateDept, the #Senate can ensure the nation has a chief diplomat who en… https://t.co/hz5gvNqxke" +04/19/2018,Politicians,@SenateMajLdr,The Protecting Moms and Infants Act authorizes increased funding for a competitive federal grant to help organizati… https://t.co/Mt7aObSte2 +04/19/2018,Politicians,@SenateMajLdr,"Today, I’ll introduce the Protecting Moms and Infants Act, which directs the Secretary of @HHSGov to report on the… https://t.co/fxSkzXNXOW" +04/18/2018,Politicians,@SenateMajLdr,"#Senate Democrats filibuster a bill to authorize funding for the United States Coast Guard. + +Yes, you read that cor… https://t.co/dcIuTEDscT" +04/18/2018,Politicians,@SenateMajLdr,"The #Senate continues ""chopping away"" at burdensome Obama-era regulations. https://t.co/SpL83H2XME" +04/18/2018,Politicians,@SenateMajLdr,Barbara Bush's life was defined by love. She loved her husband and her family. She loved her country. And America l… https://t.co/97IbI4XhhF +04/18/2018,Politicians,@SenateMajLdr,"Thanks to @SenToomey & Senator @JerryMoran, the #Senate will be rolling back another piece of Obama-era overreach b… https://t.co/jHMVSkuSpc" +04/18/2018,Politicians,@SenateMajLdr,"Barbara Bush wielded her formidable qualities on behalf of her nation, the family she loved, and the many worthy ca… https://t.co/F6Lu7ln11Q" +04/17/2018,Politicians,@SenateMajLdr,"Even as the #economy is starting to thrive, Democrats want to repeal these historic tax cuts and claw back your mon… https://t.co/pxvMaRgZPB" +04/17/2018,Politicians,@SenateMajLdr,"Major tax relief for middle-class families is a big shot in the arm for the U.S. #economy, which will lead to more… https://t.co/zOBJusTkhA" +04/17/2018,Politicians,@SenateMajLdr,"#TaxReform Day, brought to you by #Senate Republicans. + +https://t.co/XCExABAZLG" +04/17/2018,Politicians,@SenateMajLdr,"Out with the old, and in with the new. #TaxReform is working. https://t.co/eJpAXDMAPf" +04/17/2018,Politicians,@SenateMajLdr,RT @SenHydeSmith: The #TaxCutsandJobsAct is a strong start to help Mississippi families keep more of their hard-earned money & to help smal… +04/17/2018,Politicians,@SenateMajLdr,RT @FoxNews: TUNE IN: @SenateMajLdr sits down with @TeamCavuto for an exclusive interview on “Your World” LIVE from D.C. at 4p ET. https://… +04/17/2018,Politicians,@SenateMajLdr,"RT @NFIB: Today is the first #TaxDay in years that #smallbiz have received some good news. Compensation is up, sales are strong, & #taxes r…" +04/17/2018,Politicians,@SenateMajLdr,"Today is the last #TaxDay that American families will have to file under the unfair, outdated tax code that Congres… https://t.co/0tegpMY4SG" +04/17/2018,Politicians,@SenateMajLdr,RT @SenJoniErnst: This is the last #TaxDay Americans will be forced to comply with an outdated and overly burdensome tax code. See how the… +04/17/2018,Politicians,@SenateMajLdr,I will be joining @TeamCavuto at appx 4:00 this afternoon to discuss #TaxDay and how #TaxReform is already benefiti… https://t.co/Snsd4F9dth +04/17/2018,Politicians,@SenateMajLdr,"2018 #TaxDay: Out with the Old, and In With the New. +via @Medium +https://t.co/4rY58AjVqf" +04/17/2018,Politicians,@SenateMajLdr,"Thanks to the #TaxCutsandJobsAct 4,000,000+ Americans (and counting) are receiving special bonuses, pay raises, or… https://t.co/ESFsb5Wrub" +04/17/2018,Politicians,@SenateMajLdr,RT @SenatorRisch: #Taxday is the last day taxes will be paid under the old federal system that takes more of your hard-earned income. Read… +04/17/2018,Politicians,@SenateMajLdr,RT @SenPatRoberts: Today is #TaxDay and marks the last day that Americans will file their taxes under the outdated and burdensome system. O… +04/17/2018,Politicians,@SenateMajLdr,"RT @senrobportman: In January, thanks to the #TaxReform law, the IRS updated the amount it withholds from employee paychecks and as a resul…" +04/17/2018,Politicians,@SenateMajLdr,"RT @SenateGOP: For years, @GOPSenFinance Chairman @SenOrrinHatch has been working to shred the old tax code. Today, he gets his wish. #TaxD…" +04/17/2018,Politicians,@SenateMajLdr,"ICYMI - yesterday afternoon, I filed cloture on @USCG Authorization Act, a comprehensive package that equips an ada… https://t.co/yXh53z6aze" +04/17/2018,Politicians,@SenateMajLdr,"Today's #TaxDay is out with the old, and in with the new. #TaxReform is working for American families. https://t.co/KZA5cCodAN" +04/17/2018,Politicians,@SenateMajLdr,"Thanks to @SenToomey and Senator @JerryMoran, we will protect consumers from a brazen attempt by the past director… https://t.co/ospceABhQI" +04/16/2018,Politicians,@SenateMajLdr,"Today I met w/ @POTUS' nominee for Director of the @CIA, Gina Haspel. She has dedicated her professional life to th… https://t.co/LZtVBwFKFF" +04/16/2018,Politicians,@SenateMajLdr,#Senate Democrats' historic obstruction https://t.co/UcD4rgNXMX +04/16/2018,Politicians,@SenateMajLdr,Tomorrow is the last #TaxDay that Americans will have to file under the old and outdated tax code. This Republican… https://t.co/l7besyoGvX +04/16/2018,Politicians,@SenateMajLdr,"This afternoon, the #Senate will vote to advance legislation from Senator @JerryMoran that would bolster the proper… https://t.co/5iN7lGyxaG" +04/16/2018,Politicians,@SenateMajLdr,"Over the weekend, America’s all-volunteer armed forces executed a challenging mission with precision and excellence… https://t.co/wb1ImQ5Kkh" +06/30/2018,Politicians,@SenSchumer,"What a month! Thank you to all the organizers, activists, marchers & friends who made the #Pride events this month… https://t.co/vwMtqI7KE5" +06/30/2018,Politicians,@SenSchumer,The president has the power to appoint a czar to marshal & organize the agencies in charge of reunifying families.… https://t.co/EVQ5dp6cc4 +06/30/2018,Politicians,@SenSchumer,Mr. President - we know each judge on the list of 25 handpicked by the @FedSoc will overturn Roe v. Wade and strike… https://t.co/dIqeJx75qh +06/29/2018,Politicians,@SenSchumer,"A vibrant, free press is a pillar of American democracy enshrined in our Constitution. I salute those who dedicate… https://t.co/HGdY41DD9r" +06/29/2018,Politicians,@SenSchumer,"I stand w/ fellow Americans who are appalled by the horrific attack at the Capital Gazette, a wonderful community-b… https://t.co/tZgP5lDAo0" +06/28/2018,Politicians,@SenSchumer,"Bob Mueller is a decorated Marine, former DoJ prosecutor, and former FBI Director. And, let me remind you, he is a… https://t.co/4ATDOxLCeE" +06/28/2018,Politicians,@SenSchumer,"If anything should happen at this mtg, @realDonaldTrump must inform Putin of his intent to aggressively implement t… https://t.co/fuDk0GTUjr" +06/28/2018,Politicians,@SenSchumer,The American people have to wonder: why is our president so committed to building a relationship with someone so de… https://t.co/cULXmZLiJ8 +06/28/2018,Politicians,@SenSchumer,For @realDonaldTrump to reward President Putin with a one-on-one meeting while Russia actively continues to interfe… https://t.co/aObPKoVwHm +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: This is dangerous, this is weak, and it’s yet another slap in the face to the intelligence professionals who quite literall…" +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: The President can either believe his Secretary of Defense Jim Mattis, or he can believe Vladimir Putin. https://t.co/b6F4hQ…" +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: And they’re lying. The President can either believe Russia or he can believe our country’s intel chiefs, generals, cabinet…" +06/28/2018,Politicians,@SenSchumer,Americans from all corners of the country: rise up & speak out. Tell your Senators that if they vote for a Supreme… https://t.co/sLZ7qyvlkL +06/28/2018,Politicians,@SenSchumer,"Every American should have their eyes wide open to the fact that @realDonaldTrump has sworn to nominate a justice,… https://t.co/k4DHTuaubp" +06/28/2018,Politicians,@SenSchumer,.@realDonaldTrump will nominate a justice willing to re-interpret the ruling on the ACA. Remember when he said: “Ju… https://t.co/gIqmg4n8oo +06/28/2018,Politicians,@SenSchumer,.@realDonaldTrump will nominate a #SCOTUS justice willing to send Roe “back to the states” – those are his own word… https://t.co/EudYg92yh6 +06/28/2018,Politicians,@SenSchumer,"So today @SenateDems & @HouseDemocrats are standing up for public employees – teachers, nurses & health care provid… https://t.co/ldm6KgOfNm" +06/28/2018,Politicians,@SenSchumer,"#Unions built the middle class in this country, & now Republicans & their friends on the court are doing everything… https://t.co/qVlomMg39K" +06/28/2018,Politicians,@SenSchumer,If the Senate’s constitutional duty to advise and consent is just as important as the President’s right to nominate… https://t.co/5I6AfE2kBy +06/28/2018,Politicians,@SenSchumer,"If GOP were consistent, they would wait to consider Justice Kennedy’s successor until after the midterm elections.… https://t.co/S18TPddPmq" +06/28/2018,Politicians,@SenSchumer,Why do you trust Putin more than your own Republican DOJ officials and the Republican special counsel that was appo… https://t.co/W3VhVSAghw +06/27/2018,Politicians,@SenSchumer,"In 2016, Senate Republicans said that the American people deserve an opportunity to speak on Supreme Court nominees… https://t.co/JmMQkHLLZK" +06/27/2018,Politicians,@SenSchumer,Americans should make it clear that they will not tolerate a nominee chosen from President Trump’s pre-ordained lis… https://t.co/SCIoyLZIMM +06/27/2018,Politicians,@SenSchumer,People from all across America should realize that their rights and opportunities are threatened and should make th… https://t.co/OUL8UPV3e1 +06/27/2018,Politicians,@SenSchumer,Millions of ppl are just months away from determining the senators who should vote to confirm or reject POTUS’s nom… https://t.co/ZXvBzVEwGS +06/27/2018,Politicians,@SenSchumer,My @SenateGOP colleagues should follow the rule they set in 2016 not to consider a SCOTUS nominee in an election ye… https://t.co/m48EF9qdxc +06/27/2018,Politicians,@SenSchumer,The Senate should reject anyone who will instinctively side with powerful special interests over the interests of average Americans. +06/27/2018,Politicians,@SenSchumer,Will Republicans & @realDonaldTrump nominate & vote for someone who will preserve protections for people w/ preexis… https://t.co/PS59T6a0DH +06/27/2018,Politicians,@SenSchumer,This is the most important Supreme Court vacancy for this country in at least a generation. Nothing less than the f… https://t.co/lpNmxXSdE5 +06/27/2018,Politicians,@SenSchumer,".@realDonaldTrump needs to end the inhumanity & chaos at the border, but we also need a real strategy to go after c… https://t.co/u72J0gsUeR" +06/27/2018,Politicians,@SenSchumer,There is a pretty simple reason people are fleeing Central America. It is the impunity of gangs and cartels and the… https://t.co/tQZOv4Tjg6 +06/27/2018,Politicians,@SenSchumer,RT @SenWarren: Corporate interests have been rigging the system against workers for decades – and the Supreme Court just handed those inter… +06/26/2018,Politicians,@SenSchumer,I want to be clear: anyone who supports the lawsuit against the ACA has said loud and clear that they don’t support… https://t.co/WyWQKIDfRM +06/26/2018,Politicians,@SenSchumer,"The Republican strategy is clear: increase the deficit on behalf of special interests, then use that as an excuse t… https://t.co/1P2B3QFpSF" +06/26/2018,Politicians,@SenSchumer,Today’s report is another reminder about the true costs of handing out massive tax breaks to billionaires & large c… https://t.co/N5nGdX8sI2 +06/26/2018,Politicians,@SenSchumer,"The president’s travel ban doesn’t make us safer, and the Supreme Court’s ruling doesn’t make it right. This is a b… https://t.co/LhqLjdW5K9" +06/26/2018,Politicians,@SenSchumer,RT @RepAnthonyBrown: We cannot be a nation that strips health care away from those who need it most. Tune in to my press conference with @N… +06/26/2018,Politicians,@SenSchumer,"Simply put, @realDonaldTrump turned his back on the most popular & most humane advancement in our health care syste… https://t.co/PBCtDeHXKZ" +06/26/2018,Politicians,@SenSchumer,We’re here w/ @LittleLobbyists today because the protections put in place by the ACA for people with pre-existing c… https://t.co/FoX2WvzZt8 +06/26/2018,Politicians,@SenSchumer,".@realDonaldTrump, you said giving corporations like Harley a big tax giveaway would mean more jobs. + +Instead, man… https://t.co/TcFhDeLzsH" +06/25/2018,Politicians,@SenSchumer,"Chief Spadafora spent his whole life serving the ppl of NY, &we can never thank him enough. He answered the call ti… https://t.co/N8XtE4Ibi6" +06/25/2018,Politicians,@SenSchumer,Then why are you tweeting about it? These decisions can & should be made by @realDonaldTrump's appointees at @FBI &… https://t.co/PLmyVopClC +06/25/2018,Politicians,@SenSchumer,Family dinner tonight at L&B Spumoni Gardens in the heart of Italian Brooklyn — like eating in Sicily! https://t.co/n9d7oKpDdW +06/24/2018,Politicians,@SenSchumer,Marching in the #NYCPride Parade has special meaning this year as I am marching with my daughter Alison and her won… https://t.co/w6dhIcg7sK +06/24/2018,Politicians,@SenSchumer,See you there! https://t.co/lLdoTIp81X +06/24/2018,Politicians,@SenSchumer,RT @CNNNewsource: LIVE - Senator chuck Schumer to demand Trump Admin to appoint Czar to oversee separated family reunion. CNN signal now on… +06/24/2018,Politicians,@SenSchumer,RT @SarahLJorgensen: Sen. Schumer calls on the White House to appoint a czar to handle the reunification of families and children separated… +06/24/2018,Politicians,@SenSchumer,"RT @markknoller: .@SenSchumer calls for federal ""Czar"" to oversee reunification of children and parents separated in illegal border crossin…" +06/24/2018,Politicians,@SenSchumer,The Trump ‘zero-tolerance’ immigration policy has left many with zero confidence in the admin’s ability to quickly… https://t.co/hWycAaHp15 +06/23/2018,Politicians,@SenSchumer,The Special Counsel’s investigation into Russian interference in US elections has either indicted or secured guilty… https://t.co/w85rFNjtHg +06/23/2018,Politicians,@SenSchumer,People of all political stripes should read conservative @GeorgeWill’s amazing column: https://t.co/xr5X756cC8 +06/22/2018,Politicians,@SenSchumer,Best wishes and congrats go out to @TinaMoorereport on being promoted by the @nypost as the paper’s FIRST female Police Bureau Chief. +06/22/2018,Politicians,@SenSchumer,"It may be the GOP’s 6 mo anniversary, but remember what @realDonaldTrump promised the American people? He said the… https://t.co/LR3KQj9KeG" +06/22/2018,Politicians,@SenSchumer,"If you look at the numbers, corporations are reaping record profits as a result of the #GOPTaxScam, but that saving… https://t.co/cK3huQhrsP" +06/22/2018,Politicians,@SenSchumer,"Since the beginning of 2018, corporations have announced plans to repurchase more than $480 billion in stock buybac… https://t.co/QQF1TwLrt8" +06/22/2018,Politicians,@SenSchumer,"6 mos ago, in the dead of night, the GOP jammed thru the #GOPTaxScam lavishing tax cuts on big corps & the wealthie… https://t.co/jTG0xZkzkQ" +06/21/2018,Politicians,@SenSchumer,More increases in health insurance rates out of Indiana and Iowa today—those higher costs are thanks to the sabotag… https://t.co/RUJVTS6hxK +06/21/2018,Politicians,@SenSchumer,"Open borders, @realDonaldTrump? The bipartisan immigration bill I authored had $40 billion for border security and… https://t.co/q7R87g7Kz8" +06/21/2018,Politicians,@SenSchumer,"While @realDonaldTrump signed an exec order on his policy of family separation, it does nothing for the >2,300 chil… https://t.co/zwBOmGpQDu" +06/21/2018,Politicians,@SenSchumer,".@realDonaldTrump hasn’t taken care of the problem, not by any stretch of the imagination. But now that he’s finall… https://t.co/ADHd1GCHjz" +06/21/2018,Politicians,@SenSchumer,What is the admin's plan to reunite the children already separated from their families? The EO is silent on that. H… https://t.co/WrQGOkovFG +06/21/2018,Politicians,@SenSchumer,The way the executive order was drafted means that it will not go into effect until a court rules on its legality.… https://t.co/FnnQyetBBF +06/21/2018,Politicians,@SenSchumer,I hope this means @realDonaldTrump will stop blaming others for problems he creates & start fixing them himself. He… https://t.co/QXHlMxoY9n +06/21/2018,Politicians,@SenSchumer,"For a little over a month, @realDonaldTrump’s family separation policy has resulted in >2,300 children separated fr… https://t.co/3HhA4qA2pe" +06/20/2018,Politicians,@SenSchumer,Keeping these children separated from their families is unacceptable and must be rectified. This has to be our numb… https://t.co/gTh6P0foli +06/20/2018,Politicians,@SenSchumer,"He can start with correcting the problems that this executive order will create, and should also undo his #DACA ord… https://t.co/2UquTRa8bG" +06/20/2018,Politicians,@SenSchumer,I also hope this represents a turning point & @POTUS will stop blaming others for problems he creates & start fixing them himself. +06/20/2018,Politicians,@SenSchumer,It’s a relief that @realDonaldTrump has reversed himself & recognized the cruelty of his policy of separating famil… https://t.co/LcBZwFiqBl +06/20/2018,Politicians,@SenSchumer,Protecting US jobs & our nation’s security must remain paramount & not something that we can compromise on. As my c… https://t.co/ebgrgEG2RL +06/20/2018,Politicians,@SenSchumer,My Republican colleagues must resist efforts by the Trump administration – at the behest of the Government of China… https://t.co/ipmTgIEoPg +06/20/2018,Politicians,@SenSchumer,"It’s as easy as this Mr. President. Just sign on the line, @realDonaldTrump. #KeepFamiliesTogether https://t.co/rhZcd9Iib2" +06/20/2018,Politicians,@SenSchumer,It's unconscionable that the US govt is housing babies & toddlers alone in an institutional setting. This crisis wa… https://t.co/B5Y8NSHVnm +06/20/2018,Politicians,@SenSchumer,"You - and not the law - are responsible for this family separation policy, @realDonaldTrump. GOP Senators and membe… https://t.co/hp2YAvIlYA" +06/19/2018,Politicians,@SenSchumer,Anyone who believes this Republican Congress is capable of addressing this issue is kidding themselves.… https://t.co/quvDUXGRQW +06/19/2018,Politicians,@SenSchumer,".@SpeakerRyan wants to pass a massive bill that may not even pass the House & couldn’t pass Senate, @SenateGOP are… https://t.co/TYN0Rmxx0S" +06/19/2018,Politicians,@SenSchumer,".@realDonaldTrump, if you share the outrage of the vast majority of Americans, if you’re ashamed of what’s happenin… https://t.co/UIcVxyKBT8" +06/19/2018,Politicians,@SenSchumer,"RT @JohnKasich: Unbelievably, the Administration has chosen to no longer defend the law of the land that protects those with pre-existing c…" +06/19/2018,Politicians,@SenSchumer,The Trump administration and Republicans in Congress should work with Democrats in a bipartisan way to make health… https://t.co/hrek0E3tBC +06/19/2018,Politicians,@SenSchumer,That’s exactly why more than 95% of the health care groups that filed comments about this proposed rule criticized… https://t.co/wyaeRAKTNz +06/19/2018,Politicians,@SenSchumer,Finalizing this rule is simply the latest act of sabotage of our health care system by the Trump administration and… https://t.co/cJLomWOwll +06/18/2018,Politicians,@SenSchumer,RT @politico: BREAKING: Senate rejects Trump’s rescue of Chinese firm ZTE https://t.co/IhYylQw1Dx +06/18/2018,Politicians,@SenSchumer,It is vital that our colleagues in the House keep this bipartisan provision in the bill as it heads towards a conference. +06/18/2018,Politicians,@SenSchumer,We’re heartened that both parties made it clear that protecting American jobs and national security must come first… https://t.co/ZLdggxODZu +06/18/2018,Politicians,@SenSchumer,Joining @SenTomCotton @ChrisVanHollen & @marcorubio in releasing a joint statement following the passage of #NDAA w… https://t.co/TBrozOkU3j +06/18/2018,Politicians,@SenSchumer,"RT @SenateDems: It’s time for @realDonaldTrump to stop lying. +As senior Trump officials – including members of his own cabinet- have said,…" +06/18/2018,Politicians,@SenSchumer,"As everyone who has looked at this agrees, this was done by the president, not Democrats. He can fix it tomorrow if… https://t.co/K3AZ50fLxq" +06/18/2018,Politicians,@SenSchumer,"If the House moderates really want to get something done on immigration, they should not be duped by their leadersh… https://t.co/JdfXMwQuII" +06/18/2018,Politicians,@SenSchumer,House mods will lose all credibility if they accept this sham of a bill; it's extreme & drastically cuts immigratio… https://t.co/AE1BDbPViR +06/18/2018,Politicians,@SenSchumer,"Instead of supporting this so-called “moderate” bill, @HouseGOP who want to get something done for Dreamers should… https://t.co/CuNNsXHRLE" +06/18/2018,Politicians,@SenSchumer,"By all reports, the House “moderate” immigration bill is hardly moderate at all. It would cut legal immigration dra… https://t.co/KV5vSmm3Ik" +06/17/2018,Politicians,@SenSchumer,"He turned 95 this week folks! Very grateful for my dad, Abe and my mom, Selma- she turned 90 on #DDay- and all they… https://t.co/AknEIlCCk0" +06/17/2018,Politicians,@SenSchumer,"Today as we celebrate #FathersDay, I want to share a few words I said about my Dad, Abe Schumer, this week on his 9… https://t.co/iXPr9BzlFg" +06/16/2018,Politicians,@SenSchumer,".@realDonaldTrump, the IG report found what we all knew: James Comey’s actions helped you. During the election, the… https://t.co/cji6xXFBIu" +06/15/2018,Politicians,@SenSchumer,Minnesota implemented a reinsurance program. This is what can happen when states support patients and fight back ag… https://t.co/kWk1bjFRlM +06/15/2018,Politicians,@SenSchumer,"RT @ChrisVanHollen: This Father’s Day, I’m headed to the border with @SenJeffMerkley to focus on the inhumanity of separating kids from the…" +06/15/2018,Politicians,@SenSchumer,Republicans in the House put forth a proposal that is dead on arrival in the Senate. When they get serious about fi… https://t.co/DDyVMJB9Rw +06/15/2018,Politicians,@SenSchumer,Today marks the 6th anniversary of the announcement #DACA. Rather than celebrating all of the things immigrant yout… https://t.co/tzYaeV90GG +06/15/2018,Politicians,@SenSchumer,Unless of course by “my people” the President means his cabinet: https://t.co/fTkYkVM4aE +06/15/2018,Politicians,@SenSchumer,"This is the United States is America, not the United States of Trump. We are a democracy not a dictatorship. So tha… https://t.co/Lm1FlyZLFB" +06/15/2018,Politicians,@SenSchumer,".@realDonaldTrump’s actions on China are on the money. China is our real trade enemy, & their theft of intellectual… https://t.co/icDp0FcVqJ" +06/15/2018,Politicians,@SenSchumer,.@realDonaldTrump which makes more sense? You fired Comey because he HURT Hillary Clinton? Or this: https://t.co/5IMSWIsUzn +06/14/2018,Politicians,@SenSchumer,"I hope Sec @stevenmnuchin1 @SecAzar & @SecretaryAcosta will abandon their proposed rule, and instead work with… https://t.co/JrMQySsv9U" +06/14/2018,Politicians,@SenSchumer,"We've been hearing from our constituents about these #junkplans, and a recent @latimes analysis found “[n]ot a sing… https://t.co/Mlhnq2nhgF" +06/14/2018,Politicians,@SenSchumer,"Healthcare experts overwhelmingly condemn the Trump administration’s plan, asserting the expanded sale and marketin… https://t.co/dHQEKLdhfy" +06/14/2018,Politicians,@SenSchumer,Today 44 Senators signed this letter to members of @realDonaldTrump's cabinet urging them to listen to the patients… https://t.co/ioueSq5pWa +06/14/2018,Politicians,@SenSchumer,Director Comey’s mishandling of the publicity around the Clinton email campaign all accrued to the benefit of then… https://t.co/Hc6WIpmAOX +06/14/2018,Politicians,@SenSchumer,RT @SenJackReed: I support diplomatic engagement over twitter insults. But Pres Trump’s lack of preparedness at North Korea summit cost the… +06/14/2018,Politicians,@SenSchumer,RT @SenJohnMcCain: Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts to ac… +06/14/2018,Politicians,@SenSchumer,I’ve now seen the Inspector General’s report. It contains no evidence to make any reasonable person conclude that t… https://t.co/I3FQkS7bVm +06/14/2018,Politicians,@SenSchumer,RT @SenateDems: The Trump administration is raising #healthcare costs for millions of Americans and attacking protections for people with p… +06/14/2018,Politicians,@SenSchumer,"My dad, a #WorldWarII veteran turns 95 today on #FlagDay. What a blessing! https://t.co/ZzcMRzBh8I" +06/13/2018,Politicians,@SenSchumer,RT @TimJHanrahan: NEW: The Trump administration's push to unravel more provisions of the ACA could affect tens of millions of people who ge… +06/13/2018,Politicians,@SenSchumer,"RT @RonWyden: When @realDonaldTrump and his Justice Department abandoned their duty to defend the law of the land, they put the health care…" +06/13/2018,Politicians,@SenSchumer,"After promising to protect ppl w/ pre-existing conditions from being denied affordable health care,… https://t.co/etXpcxtcEo" +06/13/2018,Politicians,@SenSchumer,The latest report from the American Academy of Actuaries further confirms that the Trump administration and Congres… https://t.co/NgUiWtEgj0 +06/13/2018,Politicians,@SenSchumer,Both Rs & Ds must be resolute in blocking @realDonaldTrump's bad pro-China ZTE deal. Protecting our natl & economic… https://t.co/UySLtLcS1d +06/13/2018,Politicians,@SenSchumer,"Exactly right. The Finger Lakes region is not and will never be a good location for this incinerator, and we have t… https://t.co/dxL4ajJ99t" +06/13/2018,Politicians,@SenSchumer,"RT @SteveBellone: Great news for Long Island (and the entire region) as @LIMacArthur continues to make improvements. TY to @SenGillibrand,…" +06/13/2018,Politicians,@SenSchumer,"The income inequality gap is at the highest levels since the Great Depression, a sure sign the Trump admin and the… https://t.co/nZfSy8OKVH" +06/13/2018,Politicians,@SenSchumer,"If @realDonaldTrump truly wants to make America great again, he needs to start by protecting American workers & dis… https://t.co/n7BjYCPAaA" +06/13/2018,Politicians,@SenSchumer,RT @SenStabenow: It is terrible to see the Trump Administration taking Michigan families back to the days when being a woman was considered… +06/13/2018,Politicians,@SenSchumer,"RT @StillTalkinTV: My remembrance of Tim Russert a decade after his death +https://t.co/FsiEhj5p0C" +06/13/2018,Politicians,@SenSchumer,Hard to believe it’s been 10 years without one of America’s greatest journalists and Buffalo’s most passionate advo… https://t.co/a8Npzbm83W +06/13/2018,Politicians,@SenSchumer,RT @morethanmySLE: 3rd meeting of the day and working with @SenSchumer to fight #ACA sabotage. Very proud of my senator! https://t.co/BKRQw… +06/13/2018,Politicians,@SenSchumer,The emphasis on showmanship as opposed to substance at the #NorthKoreaSummit will not serve America or the prospect… https://t.co/kKACyD6MII +06/13/2018,Politicians,@SenSchumer,"Mr. President, if only it were that easy, that simple. https://t.co/zDMhHTkxCa" +06/13/2018,Politicians,@SenSchumer,Glad you noticed. We wrote you last month asking for action: https://t.co/z113B9yrrS https://t.co/Oa0JdIQAsr +06/12/2018,Politicians,@SenSchumer,Republicans should instead work with Democrats now and throughout the summer to focus on lowering healthcare costs for the American people. +06/12/2018,Politicians,@SenSchumer,"Actions speak louder than words. So far, the @SenateGOP’s own legislation and the Trump administration’s actions pr… https://t.co/AduDyWDGUP" +06/12/2018,Politicians,@SenSchumer,"If Republicans are serious about maintaining protections for people with pre-existing conditions, they should join… https://t.co/CYTybIaKIU" +06/12/2018,Politicians,@SenSchumer,"RT @brianschatz: If you are pregnant, mentally ill, have cancer, a bad knee, asthma, diabetes, sleep apnea, acne, lupus or any other pre-ex…" +06/12/2018,Politicians,@SenSchumer,ICYMI @SenatorHassan on how the Trump administration has put politics over people by refusing to defend protections… https://t.co/4vd9E2z6OA +06/12/2018,Politicians,@SenSchumer,RT @SenatorMenendez: WATCH LIVE - standing with @SenSchumer @SenatorCardin @ChrisCoons & @SenateDems to talk the #TrumpKimSummit - https://… +06/12/2018,Politicians,@SenSchumer,"What the United States has gained is vague and unverifiable; what North Korea has gained, however, is tangible and… https://t.co/6EN1fjvwOW" +06/12/2018,Politicians,@SenSchumer,"RT @SenatorBaldwin: Last night, I sat down with Tiara Parker, a survivor of the #Pulse shooting. Today is the 2 year anniversary of this tr…" +06/12/2018,Politicians,@SenSchumer,"RT @PattyMurray: As a candidate, President Trump talked a big game on lowering drug prices, but after 500 days in office the only health ca…" +06/12/2018,Politicians,@SenSchumer,Go @NYRangers! But congrats to the @Capitals and stay safe everyone celebrating in DC today. https://t.co/07Gz2s5l3A +06/12/2018,Politicians,@SenSchumer,"RT @SenateDems: We know #FamiliesBelongTogether. That's why we're urging the full Senate to step up, remember our values, and pass our Keep…" +06/12/2018,Politicians,@SenSchumer,"2 yrs ago today, 49 beautiful lives were taken from us far too soon. Today we remember & mourn but we must, must, m… https://t.co/RjXcs8Icgx" +06/11/2018,Politicians,@SenSchumer,The fact that a bipartisan group of senators came together this quickly is a testament to how bad the Trump adminis… https://t.co/rCSGV4wAvz +06/11/2018,Politicians,@SenSchumer,"By including this provision to undo the ZTE deal in the defense bill, the Senate is saying loudly and in a bipartis… https://t.co/pFxQ76vRsP" +06/11/2018,Politicians,@SenSchumer,".@SenateMajLdr has shown he’s willing to confirm a judge over the objection of one home state Senator, but he will… https://t.co/cJmYX37gbp" +06/11/2018,Politicians,@SenSchumer,Bounds is also controversial & had some rather offensive writings that he failed to disclose to the bipartisan Judi… https://t.co/tp0SigQ17D +06/11/2018,Politicians,@SenSchumer,Farr has spent a lengthy legal career defending the interests of corps against their workers. He 2x defended the GO… https://t.co/1ZxLPqEttx +06/11/2018,Politicians,@SenSchumer,"In the next few weeks, the Senate is likely to take up two highly controversial judicial nominees: Thomas Farr for… https://t.co/mYYJMFpRWJ" +06/11/2018,Politicians,@SenSchumer,"RT @LawyersComm: As Justice #Sotomayor aptly observes, today’s decision forces minority communities to be ‘even more proactive and vigilant…" +06/11/2018,Politicians,@SenSchumer,RT @NAACP_LDF: The Supreme Court’s decision in #HustedvAPRI threatens to embolden states to undermine our democracy and deny eligible voter… +06/11/2018,Politicians,@SenSchumer,"In today’s decision, the #SCOTUS seemingly ignores the rights of the eligible voters who will be denied the right t… https://t.co/vkzG5W1R5m" +06/11/2018,Politicians,@SenSchumer,"When Congress passed the NVRA, a balance between was struck between the desire to make it as easy as possible for e… https://t.co/lvNqRXIFqB" +06/11/2018,Politicians,@SenSchumer,Democracy suffers when laws make it harder for U.S. Citizens to vote. This decision is dangerous and damaging and i… https://t.co/sCEG5mJi2f +06/11/2018,Politicians,@SenSchumer,The right to vote is the most sacred right we have as citizens. Aggressive voter purge systems like Ohio’s essenti… https://t.co/feBGQczXYG +06/11/2018,Politicians,@SenSchumer,"The ongoing push to disenfranchise American voters, led by the Trump administration and its allies at the state and… https://t.co/Zzfpji42JI" +06/11/2018,Politicians,@SenSchumer,RT @SenatorLeahy: #NetNeutrality may end today but the fight for an open Internet continues. The House can restore the rules by following t… +06/11/2018,Politicians,@SenSchumer,"One of many reasons small business owners, and all Americans, should make sure their representatives are fighting t… https://t.co/k4Y9825CjY" +06/11/2018,Politicians,@SenSchumer,"RT @SenMarkey: The repeal of #NetNeutrality officially goes into effect today, but the fight is far from over. + +The people saying we can’t…" +06/11/2018,Politicians,@SenSchumer,Every Republican who opposed this vote will own any and all of the damaging consequences of the FCC’s horribly misguided decision. +06/11/2018,Politicians,@SenSchumer,"It's now as clear as day to every American that w/the exception of 3 @SenateGOP mbrs, their GOP reps in the Congres… https://t.co/6Lh38eYbOQ" +06/11/2018,Politicians,@SenSchumer,That’s exactly why the entire Senate Democratic caucus sent a letter last week urging @SpeakerRyan to schedule a vo… https://t.co/CDki7wlDIC +06/11/2018,Politicians,@SenSchumer,"By refusing to bring up the Senate-passed, bipartisan resolution to restore #NetNeutrality House GOP leaders gave a… https://t.co/ymAHhANuEp" +06/11/2018,Politicians,@SenSchumer,RT @PIX11News: Sen. Schumer pushes for more suicide prevention federal funding https://t.co/8PZyZBFAjG https://t.co/bvZo7WjOoI +06/11/2018,Politicians,@SenSchumer,"Over the past couple of weeks, we have lost some very well-known people, near and dear to so many in New York, but… https://t.co/XSndKks7y6" +06/11/2018,Politicians,@SenSchumer,"Statistics show that if we can reach troubled people before, even in the midst of suicide ideation, there is a good… https://t.co/t5nBr9XwnM" +06/10/2018,Politicians,@SenSchumer,RT @AngeloRoefaro: TONIGHT AT 8PM: “Recent tragedies and the CDC report on increased suicide rates are the kinds of things that put a giant… +06/09/2018,Politicians,@SenSchumer,Are we executing Putin’s diplomatic and national security strategy or AMERICA’s diplomatic and national security st… https://t.co/Rntju0HX8j +06/09/2018,Politicians,@SenSchumer,RT @politico: Update: Trump said the U.S. will not sign a joint communique with other G-7 countries https://t.co/1mNF3YHYhr +06/09/2018,Politicians,@SenSchumer,".@realDonaldTrump, let me take a second to update my numbers. Special Counsel Mueller’s investigation has now eith… https://t.co/Yls00HDtP4" +06/08/2018,Politicians,@SenSchumer,"RT @mainstreetweets: Last year, the @HouseGOP voted to rip protections away from millions of Americans with pre-existing conditions. Now, t…" +06/08/2018,Politicians,@SenSchumer,"RT @RonWyden: .@realDonaldTrump & his admin have asked the courts to let insurance companies to deny care, charge more, and discriminate ag…" +06/08/2018,Politicians,@SenSchumer,Yet again the Trump Admin is sabotaging your health care. We’re urging @realDonaldTrump & @TheJusticeDept to revers… https://t.co/zZk2r3dtVm +06/08/2018,Politicians,@SenSchumer,"Readmitting Russia to the G-7 would reward Vladimir Putin for actions the U.S. and its allies have condemned, and w… https://t.co/zQm2kI0bT0" +06/08/2018,Politicians,@SenSchumer,"The president’s support for inviting Russia back into the G-7, just after they meddled in the election to support h… https://t.co/bj4tUVrnTm" +06/08/2018,Politicians,@SenSchumer,"We need the president to be able to distinguish between our allies and adversaries, and to treat each accordingly.… https://t.co/W1x6l4OtQA" +06/08/2018,Politicians,@SenSchumer,".@realDonaldTrump is turning our foreign policy into an international joke, doing lasting damage to our country, wi… https://t.co/Hs18Z184hB" +06/08/2018,Politicians,@SenSchumer,"A little less tweeting, a little more preparing for the summit. Our points are important ones that should be consid… https://t.co/eAWLgm1KGV" +06/08/2018,Politicians,@SenSchumer,RT @SenBobCasey: The Trump Administration and Congressional Republicans are coming after protections for those with pre-existing conditions… +06/08/2018,Politicians,@SenSchumer,"RT @SenJackReed: In their quest to undermine the ACA, the Trump Admin is now trying to throw out protections for people with pre-existing c…" +06/08/2018,Politicians,@SenSchumer,"RT @axios: The legal challenge at issue here may be somewhat of a long shot on the merits. But if it does ultimately succeed, it could toss…" +06/08/2018,Politicians,@SenSchumer,RT @USATODAY: The Trump administration says key parts of Obamacare — including the provisions protecting those with pre-existing conditions… +06/08/2018,Politicians,@SenSchumer,"RT @CNN: The Trump administration won't defend central provisions of the Affordable Care Act, saying in a legal filing that key parts of th…" +06/08/2018,Politicians,@SenSchumer,The Trump administration once again is allowing premiums to go up and middle class Americans to pay more. The ACA i… https://t.co/4XgMh8DId7 +06/07/2018,Politicians,@SenSchumer,RT @SenFeinstein: News that President Trump is ignoring counterintelligence procedures by using unsecured cell phones is unacceptable. This… +06/07/2018,Politicians,@SenSchumer,"With ICBMs and nuclear warheads in the hands of North Korea, the situation is far too dangerous for seat of the pan… https://t.co/yfcAK5gnlT" +06/07/2018,Politicians,@SenSchumer,"RT @SenMarkey: 21 days ago, we proved @AjitPaiFCC and the special interests wrong and passed the resolution to save #NetNeutrality in the S…" +06/07/2018,Politicians,@SenSchumer,RT @SenStabenow: Access to the internet is not a luxury; it’s a necessity for people in Michigan. Last month I joined Republicans and Democ… +06/07/2018,Politicians,@SenSchumer,"We passed our #NetNeutrality CRA in the Senate, & @SenateDems are still in the fight. Today we wrote to… https://t.co/cgdzbNHmUm" +06/07/2018,Politicians,@SenSchumer,Today @SenateDems urged @SpeakerRyan to put middle-class families over special interests & vote on the bipartisan S… https://t.co/uRm5OZ6gAh +06/07/2018,Politicians,@SenSchumer,The time has come to decriminalize marijuana. It’s simply the right thing to do. https://t.co/uVJIyzVedt +06/07/2018,Politicians,@SenSchumer,".@realDonaldTrump should be aiming his trade fire at China, but instead he inexplicably aims it at allies like Cana… https://t.co/LtzEPm91ZJ" +06/07/2018,Politicians,@SenSchumer,"RT @DandC: With rail shipments of crude oil on the upswing, Schumer pushes for tighter rules https://t.co/KUBW9nji0A #ROC" +06/07/2018,Politicians,@SenSchumer,"It is clear to me that we need an all-of-the-above approach to safety, so I am urging @USDOT & @ENERGY to finally p… https://t.co/RauFXFyA28" +06/07/2018,Politicians,@SenSchumer,"“If the facts are against you, argue the law. If the law is against you, argue the facts. If the law and the facts… https://t.co/PpdzPV5GNh" +06/06/2018,Politicians,@SenSchumer,"It would not have been decided in our favor if not for the American troops, grizzled veterans & fresh faced recruit… https://t.co/ro0ANW0M0P" +06/06/2018,Politicians,@SenSchumer,#DDay was a turning point in a war that determined the outcome of human freedom in the 20th Century. +06/06/2018,Politicians,@SenSchumer,"Today we give thanks for the brave men who gave their lives that day to break Hitler’s hold on Europe, and their co… https://t.co/o7Fn4fzQFZ" +06/06/2018,Politicians,@SenSchumer,"74 yrs ago, Allied forces conducted the largest seaborne invasion in human history. At stake were not only the live… https://t.co/hEdGVYIdYR" +06/06/2018,Politicians,@SenSchumer,"Little has changed in Brooklyn, maybe the languages spoken, but parents are still working hard & encouraging their… https://t.co/kX71ElH67b" +06/06/2018,Politicians,@SenSchumer,"This month we #CelebrateImmigrants and share our own stories. For me, that starts in Brooklyn where my whole block… https://t.co/DpfrU77q0h" +06/06/2018,Politicians,@SenSchumer,"RT @ProtectOurCare: Leader Schumer and @SenateDems’ focus is precisely where it should be – on health care, the top issue for Americans of…" +06/06/2018,Politicians,@SenSchumer,RT @uticaOD: Schumer calling for extra safety for crude oil shipped by rail https://t.co/QVfwNAjm9k +06/06/2018,Politicians,@SenSchumer,"Folks were already paying too much for health care, in the form of premiums, out-of-pocket expenses, & the eye-popp… https://t.co/nks8gcW9IX" +06/30/2018,Politicians,@timkaine,"Today I rallied with hundreds of Virginians in Richmond to voice a simple message: #FamiliesBelongTogether. + +The Tr… https://t.co/qfEzTojVZV" +06/29/2018,Politicians,@timkaine,We have massive inequities in our criminal justice system and we’ve over-incarcerated too many Americans – especial… https://t.co/iBCDfTRRo9 +06/28/2018,Politicians,@timkaine,"An American newsroom should never feel ""like a war zone."" This is awful. My heart breaks for Virginia's neighbors i… https://t.co/LHAi8EYqNb" +06/28/2018,Politicians,@timkaine,"The Constitution is clear: With SCOTUS, both the President and Senate have roles in this process. + +The GOP was cle… https://t.co/DyjMJsiciP" +06/27/2018,Politicians,@timkaine,Thank you @GiffordsCourage for your support -- I am proud to stand with you in the fight against gun violence. Your… https://t.co/fXWAaqt6eO +06/26/2018,Politicians,@timkaine,"Big day - we unanimously (and finally) updated #PerkinsCTE. I've called for this action for years, and today's legi… https://t.co/cDNWnuhkB6" +06/26/2018,Politicians,@timkaine,Disappointed by SCOTUS. Trump's intentions were clear: stoke fear and perpetuate stereotypes. Discrimination based… https://t.co/DLIa6Yvllt +06/26/2018,Politicians,@timkaine,My opponent shares his views on an issue he is bizarrely obsessed with—saying that the Civil War wasn’t about slave… https://t.co/zFIuCoDkrg +06/25/2018,Politicians,@timkaine,"The Trump tariffs are killing U.S. jobs. A trade war with our closest allies continues to make no sense. + +https://t.co/IeX2WSMvAa" +06/22/2018,Politicians,@timkaine,RT @MarkWarner: .@TimKaine and I are demanding answers about what’s going on at this facility in Staunton. https://t.co/KJNKHVzx05 +06/21/2018,Politicians,@timkaine,"Trump's order leaves us with more questions than answers: + +How to ensure kids are safely returned to parents? +When?… https://t.co/6F5wLag6cv" +06/21/2018,Politicians,@timkaine,"Deeply troubled by this report. We need answers on what happened at this facility, and my staff and I are going to… https://t.co/89spCI8voV" +06/21/2018,Politicians,@timkaine,"President Trump's ""action"" today did not end this administration's heartlessness when it comes to families at the b… https://t.co/CZTj23saBm" +06/20/2018,Politicians,@timkaine,"My thoughts on the situation at the border... + +I've been to neighborhoods where gangs prey on children and seen par… https://t.co/NjsSSn8aUX" +06/20/2018,Politicians,@timkaine,RT @MarkWarner: .@TimKaine and I are demanding answers about the Trump Administration’s #FamilySeparation policy. We’ve signed on to legisl… +06/20/2018,Politicians,@timkaine,"The Old Testament instructs the faithful: “When a foreigner resides among you in your land, do not mistreat them...… https://t.co/aQvwcxscMV" +06/20/2018,Politicians,@timkaine,"What we’re seeing at the border is cruel and goes against our values. + +If you’re looking for a way to stop it, cons… https://t.co/oAVuBz7ejH" +06/19/2018,Politicians,@timkaine,Today in 1865 our nation took a tremendous step towards becoming a more perfect union. Celebrating #Juneteenth remi… https://t.co/e512NTRyqn +06/19/2018,Politicians,@timkaine,"RT @SenJohnMcCain: The administration’s current family separation policy is an affront to the decency of the American people, and contrary…" +06/18/2018,Politicians,@timkaine,The real Trump Hotel. https://t.co/PP6nIbzNQR +06/18/2018,Politicians,@timkaine,"A great #FathersDay. + +Church this AM with Anne, my Marine son Nat coming home to Richmond for lunch, calling my Dad… https://t.co/ghnBlMs905" +06/17/2018,Politicians,@timkaine,"On this #FathersDay, put your dad in your mind’s eye. Or your son or daughter. + +Now imagine them being ripped away… https://t.co/r3EIfLzNhB" +06/16/2018,Politicians,@timkaine,My week: Trump tweets that I am a “total stiff.” But he called Kim Jong Un a “very talented man.” I’ll take it! 🤷‍♂️ +06/15/2018,Politicians,@timkaine,"Happy (almost) Father's Day to all the dads and dad jokers out there. Even if your jokes aren't appreciated, you ce… https://t.co/eIqmTVGBV5" +06/15/2018,Politicians,@timkaine,"RT @AnneHolton: Honored to be a part of this day of joy and celebration for the Muslim community. As you end your Ramadan month of fasting,…" +06/15/2018,Politicians,@timkaine,A heartfelt piece about 2 people who met working for me in 2005. I have officiated at 14 weddings of staffers and f… https://t.co/LECxkCc9nA +06/15/2018,Politicians,@timkaine,"New low: AG cites the Bible to support ripping kids away from their parents. + +Wrong on Scripture—“suffer little chi… https://t.co/d4GwRINbBk" +06/14/2018,Politicians,@timkaine,"For those wanting to know about my Senate opponent, take a look at his latest bit of wisdom. + +An empty bucket ratt… https://t.co/KikRhsNmLv" +06/13/2018,Politicians,@timkaine,"Well, I have an opponent. + +He has stoked the fires of bigotry in Virginia. +He's underfunded public schools and heal… https://t.co/0QjTynWuz2" +06/13/2018,Politicians,@timkaine,"RT @TeamKaine: It’s time for #BlueWave2018. + +@TimKaine& +@VangieWilliams& +@ElaineLuriaVA& +@BobbyScott4VA3& +@Donald_McEachin& +@LeslieCockburn…" +06/11/2018,Politicians,@timkaine,@GCV_ArtDirector Looks cheesy! +06/11/2018,Politicians,@timkaine,Help!! Who knows how to photoshop a burger into this?? https://t.co/7LQJNK12MK +06/10/2018,Politicians,@timkaine,"So the administration is now suggesting the CANADIAN LEADER, one of our closest allies, should be condemned to the… https://t.co/1ZpPa6mNKX" +06/10/2018,Politicians,@timkaine,A sad day—we’ve lost a magnificent musician. “Bare Trees” is one of the best LPs ever and Danny Kirwan’s soulful pl… https://t.co/0oeTx5tkMz +06/09/2018,Politicians,@timkaine,"To all the Virginians (and everyone) participating in #Pride this weekend, thank you for sharing your voice and cel… https://t.co/zZh9F0ePVp" +06/08/2018,Politicians,@timkaine,Letting Russia into the G-7 would be like inviting Gallagher to join you at the farmer’s market. https://t.co/BVeMrMsBr3 +06/08/2018,Politicians,@timkaine,Are the Caps the best team in the NHL? OVIously! https://t.co/7F0JUBZAPm +06/07/2018,Politicians,@timkaine,This story shows how this Administration is betraying American values with its shocking treatment of children seeki… https://t.co/zJARP1z42M +06/07/2018,Politicians,@timkaine,"I've long said we should eliminate superdelegates – so ahead of a big DNC meeting Friday, I'm glad to see support g… https://t.co/BRWHTq7Oa4" +06/07/2018,Politicians,@timkaine,"So many Virginians will now get access to health care. This is what happens when Democrats win, and when people com… https://t.co/PPSgiGNnrZ" +06/07/2018,Politicians,@timkaine,"RT @alicelintong: I am so proud to work for @timkaine, a leader who believes deeply in treating every person equally and embracing the stre…" +06/07/2018,Politicians,@timkaine,"Thank you, @NRDC_AF! https://t.co/HiCOb37qbz" +06/07/2018,Politicians,@timkaine,RT @NRDC_AF: Sen. Tim Kaine is an environmental champion who fights for healthy families & a safe environment. He is a tireless advocate fo… +06/06/2018,Politicians,@timkaine,"""Some 400,000 jobs will be lost, with 16 losses for every job created"" by President Trump's tariffs – it's not enou… https://t.co/5t58b5C224" +06/05/2018,Politicians,@timkaine,"RT @FairfaxJustin: Freedom to Rise: June 5, 1798. Exactly 220 years ago today, Simon Fairfax was freed from slavery in Virginia. Today, h…" +06/05/2018,Politicians,@timkaine,"After last night’s win, here’s my prediction for Thursday: https://t.co/QLp9iZK12P" +06/05/2018,Politicians,@timkaine,@AdamBlickstein 🤷‍♂️ +06/05/2018,Politicians,@timkaine,This might surprise some people but I think this is the most polite White House in history. They’re always saying “pardon me.” +06/04/2018,Politicians,@timkaine,I REALLY HOPE THE CAPS WIN TONIGHT. (Is that how this #ALLCAPS thing works?) +06/04/2018,Politicians,@timkaine,"Virginia voters showed up big time in 2017 and now we are able to expand Medicaid to 400,000 more people. Good turn… https://t.co/prqAn8l0aB" +06/02/2018,Politicians,@timkaine,"Upwards of 400,000 Virginians will have access to health care after this momentous week in Virginia. I am so proud… https://t.co/7lhNWPsS8f" +06/02/2018,Politicians,@timkaine,RT @AnneHolton: There’s only one way to greet a Governor the first time you see him after he expanded Medicaid!! https://t.co/yj9M3G6vk0 +06/01/2018,Politicians,@timkaine,Thank you @LCVoters! https://t.co/WzqprcyZ7c +06/01/2018,Politicians,@timkaine,We #WearOrange because far too many can’t today - their lives were taken by gun violence. In our schools and street… https://t.co/xhlA9KiKPW +06/01/2018,Politicians,@timkaine,"From the team that brought you Celebrity Apprentice.... + +It’s Celebrity Cronyism! https://t.co/07kE1DidEM" +05/31/2018,Politicians,@timkaine,"The #spellingbee finals are tonight, so here’s a #tbt to 2013 when I had some fun at a bee myself (and somehow won)… https://t.co/0LxwzOn6PU" +05/31/2018,Politicians,@timkaine,“Wait—what do you believe? What I said at the time or what I am tweeting now a year later after waking up in a cold… https://t.co/OA6nPPctDZ +05/31/2018,Politicians,@timkaine,"I don’t know about you, but occasionally I like to crack open a cold one on a hot day. President Trump’s aluminum t… https://t.co/6Iacgl7PXW" +05/30/2018,Politicians,@timkaine,"Big Democratic turnout in 2017 = health insurance for 400,000 more Virginians. + +Can we do it again in 2018?" +05/30/2018,Politicians,@timkaine,"To the 23 Senators who voted yes: thank you. You are doing right by your constituents and the Commonwealth. Now, we… https://t.co/orsI17DCGm" +05/30/2018,Politicians,@timkaine,BIG NEWS: The Virginia Senate just voted to move forward on Medicaid expansion! The bipartisan vote is a long-overd… https://t.co/q1a7YVmH3j +05/30/2018,Politicians,@timkaine,"@SpaceManAndy @taber @catmancatman864 I'm actually a peanut butter man. Wild, I know." +05/30/2018,Politicians,@timkaine,"Roll Tide, Doug! https://t.co/UwwPetzdWC" +05/30/2018,Politicians,@timkaine,"Medicaid expansion is a no-brainer - it gives millions access to care, grows the economy and creates jobs, and stat… https://t.co/fpy29XrOtA" +05/29/2018,Politicians,@timkaine,"Getting off a plane today, a flight attendant put a small white bag in my hand and simply said “thanks.” I was intr… https://t.co/iysvnSyeaG" +05/29/2018,Politicians,@timkaine,"President Trump's immigration policies tear families apart, leaving innocent children hurt and alone. It's heartles… https://t.co/19BwHYTNcK" +05/28/2018,Politicians,@timkaine,"I love parades. Happy Memorial Day from Portsmouth, Virginia!! 🇺🇸🇺🇸 https://t.co/CoDpjnJBQI" +05/28/2018,Politicians,@timkaine,"On this #MemorialDay, as many of us enjoy precious time with friends and family, let’s all remember those who gave… https://t.co/IikSDadcXF" +05/27/2018,Politicians,@timkaine,"As I worshipped in Hampton Roads this morning, I couldn’t help but consider how Scripture commands compassionate tr… https://t.co/DeT9j4p3TL" +05/26/2018,Politicians,@timkaine,Great to be out on the trail in Hampton Roads this weekend!! https://t.co/ARvY8wzq3k +05/25/2018,Politicians,@timkaine,Federal workers will not be made the scapegoats for this administration’s incompetence and mismanagement. These are… https://t.co/0SPbp7d6QK +05/25/2018,Politicians,@timkaine,Sign of the times - school shootings are so normalized that *this* is what a parent of kids at the MIDDLE school in… https://t.co/yFQMmyRm6h +05/25/2018,Politicians,@timkaine,"Twitter world: I am proud to introduce you to the newest Virginia municipality - “Capitalsville.” + +Its primary expo… https://t.co/GG3lgCtPWt" +05/25/2018,Politicians,@timkaine,At home this evening and this picture caught my eye. Hard to believe it’s been 35 years since @AnneHolton and I gra… https://t.co/XUxKzkOT8P +05/24/2018,Politicians,@timkaine,"This year, I'm especially proud that some of the proposals I've pushed for were included in #FY19NDAA, like address… https://t.co/x8sbVIQyg8" +05/24/2018,Politicians,@timkaine,"Every now and then, the Senate can work like it's supposed to. The bipartisan passage of the #FY19NDAA in the Armed… https://t.co/XmLDJPWk3j" +05/24/2018,Politicians,@timkaine,"Thank you, @MineWorkers! I am proud to fight for you, your health care and pensions, and for economic development a… https://t.co/OrKX9Bipoz" +05/24/2018,Politicians,@timkaine,"With the sad news about Philip Roth’s passing, I suggest reading American Pastoral, The Human Stain, The Plot Again… https://t.co/PmXQHYWDT7" +05/23/2018,Politicians,@timkaine,RT @UNITEDWEDREAM: Find out if you can renew your #DACA TODAY! United We Dream has put a list of resources for you to figure out if you qua… +05/23/2018,Politicians,@timkaine,"Not only is this rank corruption but it threatens U.S. foreign policy. + +We're in dangerous territory when a country… https://t.co/RN5DACdRUn" +05/23/2018,Politicians,@timkaine,"Last night's election results showed Dems are energized, sure. But they also proved we're elevating needed voices i… https://t.co/Ejls9rBroE" +05/23/2018,Politicians,@timkaine,"RT @13NewsNow: Senator Kaine vows to fight for military veterans, spouses https://t.co/tq7tbQHas1 https://t.co/EayPjxA76N" +05/23/2018,Politicians,@timkaine,I am so proud of @SindyBenavides! An amazing Latina leader who started her public service path on Team Kaine. Vence… https://t.co/xybMwwHabX +05/22/2018,Politicians,@timkaine,A victory for equality. https://t.co/mcKaKWcgu9 +05/22/2018,Politicians,@timkaine,"Meetings. Did some interviews with Virginia media. Some Armed Services and HELP committee work. + +The usual. + +You? https://t.co/rbDCW9JnAF" +05/22/2018,Politicians,@timkaine,Too real. https://t.co/A8fjFNJ2Oh +05/22/2018,Politicians,@timkaine,Thank you @SierraClub and @VASierraClub! I will never stop fighting to protect our environment and standing up agai… https://t.co/wexw0UteJM +05/22/2018,Politicians,@timkaine,"This is heartbreaking - no child should face bullying or cruelty like this just for speaking up. + +To all the kids o… https://t.co/k651HgaCDL" +05/22/2018,Politicians,@timkaine,"Thank you, @kelly_clarkson. The NRA doesn’t just want a “moment of silence,” they want decades of silence and a nat… https://t.co/lhtHoNyrFp" +05/22/2018,Politicians,@timkaine,"As a lawyer, I sued to stop discrimination and hold companies accountable. + +As a senator, I'm appalled that SCOTUS… https://t.co/As2mUWJVTg" +05/21/2018,Politicians,@timkaine,"Dream job: bandleader on @BarackObama's late night show. + +I'd be his @paulshaffer any day. https://t.co/zW39M86B3s" +05/20/2018,Politicians,@timkaine,"You’re right on one front, @OliverLNorth: these kids aren’t the problem. + +They’re the solution. + +To problems sown b… https://t.co/g8tEnxbCTW" +05/19/2018,Politicians,@timkaine,We have to do more to help those suffering from addiction. Powerful conversation yesterday at the Chesterfield jail… https://t.co/usQChqOLif +05/18/2018,Politicians,@timkaine,"22 school shootings in 2018. + +3 in the last week. + +How many times must our hearts break hearing news like this - th… https://t.co/D7ErJjhF4v" +05/18/2018,Politicians,@timkaine,"These partisan attacks on Planned Parenthood—which provides basic health care to more than 8,000 people a day—are d… https://t.co/Rdv7WOuL5y" +05/17/2018,Politicians,@timkaine,RT @GovernorVA: Glad @timkaine and @markwarner are pushing for action to address the double-digit health insurance rate increases Virginian… +05/17/2018,Politicians,@timkaine,We Democrats should also be proud of the way @TomPerez has led this thorough reform effort - earnestly bringing tog… https://t.co/fQTyZGtCS7 +05/17/2018,Politicians,@timkaine,"I’ve said it before, and I’ll say it again: we Democrats should get rid of superdelegates once and for all. Let’s h… https://t.co/x1XxOSUvu6" +05/16/2018,Politicians,@timkaine,"We just voted to keep the internet FREE and OPEN! Big win for #NetNeutrality in the Senate, thanks to you raising y… https://t.co/H4OZWmPF6y" +05/16/2018,Politicians,@timkaine,"Given the NRA's ubiquitous presence in U.S. elections, it should alarm every American that the bipartisan Senate In… https://t.co/RYFxWQTAU4" +05/16/2018,Politicians,@timkaine,"RT @SenBennetCO: From @washingtonpost Ed Board: “Compassionate & realistic” health care proposals exist. One of them is #MedicareX, my plan…" +05/15/2018,Politicians,@timkaine,"As #Ramadan begins tonight, I want to wish all who observe a blessed and peaceful month. Ramadan Mubarak!" +05/15/2018,Politicians,@timkaine,Richmond’s own Tom Wolfe was a staggering talent. I met him once and never will forget it. Sorry to hear today’s ne… https://t.co/rpplvAxcFt +05/14/2018,Politicians,@timkaine,🚨Everyone in Northern Virginia: please take every precaution and be safe as extreme weather covers the region tonig… https://t.co/cxYnikYgkB +05/14/2018,Politicians,@timkaine,"Cancer: prepare to meet the same fate as those young men Harry TKO'd as an amateur boxer. He's a fighter, and you d… https://t.co/nECqR67z86" +05/14/2018,Politicians,@timkaine,"We over-incarcerate in America—exploding the prison population, and undermining faith in our criminal justice syste… https://t.co/N69tFCJW51" +05/14/2018,Politicians,@timkaine,"Here's a little Mother's Day Monday Morning Moment of Zen -- from a walk with @AnneHolton in New York yesterday, wh… https://t.co/GHgony0uKi" +05/13/2018,Politicians,@timkaine,"Some of the best advice my mom Kathy ever gave me is: ""If you want to be right, be a pessimist. If you want to do r… https://t.co/25BEnWvmdf" +05/12/2018,Politicians,@timkaine,"Can't wait to rock out with @tommy_stinson, founder of @bashnpop, at this great benefit for Little League tonight!… https://t.co/YRVEwj5DQY" +05/11/2018,Politicians,@timkaine,Military spouses make sacrifices every day to support our troops. We’ve got to do all that we can to support them—l… https://t.co/k0ef54mA2a +05/11/2018,Politicians,@timkaine,"Gina Haspel's role in the CIA's use of torture was neither minor nor incidental. For example, she personally wrote… https://t.co/PJaCVoQYql" +05/11/2018,Politicians,@timkaine,Among the many casualties of the war on terror was the moral judgment of those in government complicit in the use o… https://t.co/5TG5iJ2Hsf +05/10/2018,Politicians,@timkaine,"RT @WAVY_News: Sen.@timkaine's provisions to ""America's Water Infrastructure Act"" may be the first step in saving Tangier Island and coasta…" +05/10/2018,Politicians,@timkaine,"RT @AnneHolton: When my dad ran for governor in 1969, 16-year-old Joann in Grayson County created a scrapbook of his campaign for a high sc…" +05/10/2018,Politicians,@timkaine,"""There are a variety of factors feeding the rising costs... The most immediate is that the administration under Pre… https://t.co/erySYLo2AT" +05/10/2018,Politicians,@timkaine,"RT @virginiavfw: We like to say thanks when elected officials do things that help veterans. Today, we thank @MarkWarner & @timkaine for sec…" +05/09/2018,Politicians,@timkaine,RT @jessalynsays: attn news-seekers on twitter: @timkaine’s instagram is where you find the inside scoop on extremely important meetings. e… +05/09/2018,Politicians,@timkaine,"Good question. I actually have new, bipartisan legislation to prevent the president from unilaterally starting a wa… https://t.co/6KuXwlKdJc" +05/09/2018,Politicians,@timkaine,"Hang on. + +1) The Iran deal *explicitly* precluded Iran from developing a nuke. + +2) Trump unilaterally just blew up… https://t.co/lhVT1jUv8l" +05/09/2018,Politicians,@timkaine,RT @Voices4Troops: Sen. @timkaine addresses #MOAA members during the 34th annual #Virginia Congressional Delegation Luncheon. MOAA members… +05/09/2018,Politicians,@timkaine,Today we’re filing a petition to force a vote to save #NetNeutrality. Every Dem Senator + @SenatorCollins supports… https://t.co/aVsP3PcNtO +05/08/2018,Politicians,@timkaine,"The Iran deal states that “under no circumstances will Iran ever seek, develop, or acquire any nuclear weapons.” Wh… https://t.co/qSNqZmuFUX" +05/08/2018,Politicians,@timkaine,"RT @CSGV: .@CSGV is proud to endorse our friend and ally @timkaine for reelection to the US Senate. + +Kaine has repeatedly beaten @NRA in t…" +05/07/2018,Politicians,@timkaine,"Students continue to lead the conversation on gun violence prevention - today, they offered their thoughts at a rou… https://t.co/PiV0aDgMQc" +05/07/2018,Politicians,@timkaine,Flashback to my teaching days - this morning I got to co-teach a government class at @ForestParkHSVA with their fan… https://t.co/uGd748odzn +05/06/2018,Politicians,@timkaine,We can be critical of the government of Iran or any nation and take steps - like sanctions - to punish dangerous le… https://t.co/Qaexzy93bk +05/06/2018,Politicians,@timkaine,I gave the commencement address at Radford University yesterday - but the story of the day was 62 year-old graduate… https://t.co/vJYPWEiZNL +05/04/2018,Politicians,@timkaine,Our country opened its arms to these Hondurans seeking refuge and they’ve made endless contributions to our culture… https://t.co/lgsMIFOckO +05/03/2018,Politicians,@timkaine,"I'll take ""Tough Choices"" for $1000, Alex. https://t.co/woUd2tslsE" +05/02/2018,Politicians,@timkaine,We can't let up in our efforts to stop widespread sexual harassment. Thank you to @campaign_purple for spreading th… https://t.co/2NPURCnbce +05/02/2018,Politicians,@timkaine,VP showing comedic chops. Speaker at next year’s WHCD? https://t.co/sOfAEmAVn8 +04/30/2018,Politicians,@timkaine,To the White House Correspondents Association: if you’re looking for a new kind of “Standup” Comedy for next year’s… https://t.co/QG78L7IQUr +04/30/2018,Politicians,@timkaine,RT @washingtonpost: Op-ed from Sen. Tim Kaine: Congress must take away Trump’s unlimited authority to wage war https://t.co/l0cdQzhGjT +04/27/2018,Politicians,@timkaine,"I'm heartened to see the progress between South Korea and North Korea today. Dialogue and robust diplomacy are key,… https://t.co/H3Sh8DyukB" +04/26/2018,Politicians,@timkaine,"I voted against an anti-science person to head a science agency. + +I voted against an anti-education person to head… https://t.co/gwx1M8gYXI" +04/26/2018,Politicians,@timkaine,RT @Evanne8News: I was so impressed by the career and technical education program at @HenricoSchools. This is the auto class! Sen. @TimKain… +04/26/2018,Politicians,@timkaine,"Senator McConnell: this came out of committee with a bipartisan, two-thirds majority vote. Democrats and Republican… https://t.co/OzxojzSoJU" +04/25/2018,Politicians,@timkaine,"All these court rulings on DACA can be confusing. Here’s what you need to know: + +1️⃣If you already have DACA status… https://t.co/NORECmbuUh" +04/25/2018,Politicians,@timkaine,"Mandela’s words ring true: “A nation should not be judged by how it treats its highest citizens, but its lowest one… https://t.co/5PEkp2nHBw" +04/25/2018,Politicians,@timkaine,"As I listen to French President Macron address Congress, I'm struck that it's the same day that the Supreme Court w… https://t.co/fRTuGxK21X" +04/24/2018,Politicians,@timkaine,RT @senrobportman: Today I introduced my bipartisan Creating Quality Technical Educators Act w/@TimKaine @SenCapito & @SenatorBaldwin. Care… +04/24/2018,Politicians,@timkaine,I have serious concerns about the situation along the Mountain Valley Pipeline route. Many are rallying to… https://t.co/EMUFsaxEtg +04/23/2018,Politicians,@timkaine,Proud to celebrate the first ever Barbara Johns Day today in Virginia. She was a pioneer and a patriot who wouldn’t… https://t.co/fzyGdCZSa9 +04/23/2018,Politicians,@timkaine,🚨Special election TOMORROW in #AZ08 - Democrat @hiral4congress is neck-and-neck in a district Trump won by 20+! She… https://t.co/3xmEI2VLjn +04/22/2018,Politicians,@timkaine,"I spent my Saturday in Louisa, Manassas, Fairfax and Arlington and I can tell you this: Dems are fired up and ready… https://t.co/qotwL8rMvI" +04/20/2018,Politicians,@timkaine,"April is Jazz Appreciation Month. Celebrate by listening to Sonny Rollins’ Blue 7. 🎶 + +Great way to start your Frida… https://t.co/ixnRZtxtiS" +04/19/2018,Politicians,@timkaine,"I am asking President Trump to provide his legal rationale for striking Syria. + +Without congressional approval, it… https://t.co/SC63vAzFUD" +04/19/2018,Politicians,@timkaine,39 senators. That’s the most ever—in all of American history—to formally call for the resignation of a Cabinet-leve… https://t.co/y3InZUWOkX +04/18/2018,Politicians,@timkaine,We reduced the veterans' unemployment rate because there was a patriotic desire to confront it. We need the same pa… https://t.co/zsbZPEqjfS +04/18/2018,Politicians,@timkaine,"Barbara Bush’s wit, wisdom, and devotion to her family and our country earned her the admiration of millions, and h… https://t.co/jW6mwF9XBk" +04/17/2018,Politicians,@timkaine,"Why do we require Congress rather than the Executive to start war? + +“[M]onarchs will often make war when their nati… https://t.co/q2qAi7czhH" +04/16/2018,Politicians,@timkaine,"For too long, Congress has given Presidents a blank check to wage war. It’s time for that to stop. + +We’ve introduce… https://t.co/pxqbFNrHBS" +04/16/2018,Politicians,@timkaine,"RT @nowthisnews: Liviu Librescu survived the Holocaust as a young boy. + +Decades later, he lost his life to senseless gun violence as a pro…" +04/16/2018,Politicians,@timkaine,"11 years ago today was the worst day of my life, when we lost 32 innocent lives at Virginia Tech in what was then t… https://t.co/sbm61Rmju8" +04/15/2018,Politicians,@timkaine,"As Mr. Fogerty sang, doo doo doo, lookin’ out my back door. Happy Sunday - and Spring! https://t.co/z17ZnKm854" +04/15/2018,Politicians,@timkaine,In case you ever wondered... Here’s what I see when I appear on @FaceTheNation from the @wcve studio in Richmond’s… https://t.co/rEEgrQnxgM +04/15/2018,Politicians,@timkaine,"Now more than ever, we need a Secretary of State who will stand strong for vigorous diplomacy, not exacerbate Presi… https://t.co/mjtmNMc3Tq" +04/14/2018,Politicians,@timkaine,"If President Trump really cared about Syria’s humanitarian crisis..... + +https://t.co/vLKeiFHEBd" +04/14/2018,Politicians,@timkaine,Of course citizen Trump said President Obama couldn’t strike Syria without congressional approval—but now President… https://t.co/aZuzlJfCXm +04/14/2018,Politicians,@timkaine,Trump’s decision to launch airstrikes against Syria without Congress’s approval is illegal. We need to stop giving… https://t.co/xl6PWKCpLs +04/13/2018,Politicians,@timkaine,He helped found our nation and a small school in Charlottesville. Happy 275th birthday to Thomas Jefferson - Virgin… https://t.co/AJ20FnFNAK +04/13/2018,Politicians,@timkaine,RT @BuzzFeedNews: On today's @AM2DM: We're talking to Senator Tim Kaine and Sally Kohn ⬇️ https://t.co/0lwyfhrIvn +04/13/2018,Politicians,@timkaine,President Trump resurrects long forgotten case—set to pardon former WH aide convicted of obstructing justice. Seems… https://t.co/TdIsESzAJE +04/13/2018,Politicians,@timkaine,I wouldn’t challenge him to a snowball fight but I’m glad to welcome him to Virginia! Thanks for coming out to Alex… https://t.co/H8kBXKauso +04/12/2018,Politicians,@timkaine,The message is clear: there’s growing consensus that we need to act to #ProtectMueller — and we need to do it now.… https://t.co/QZyT0bq4I5 +04/12/2018,Politicians,@timkaine,"Instead of sabotaging our health care system because you couldn’t pass repeal, if you want to help Americans get mo… https://t.co/5STdDaHv69" +04/11/2018,Politicians,@timkaine,"Happy 50th birthday to the #FairHousingAct. As a civil rights attorney, I know the FHA is every bit as important no… https://t.co/QU5PLjqgmd" +04/11/2018,Politicians,@timkaine,"15 months in, and the Trump administration has no Syria strategy. Threats, tweets, one off strikes are not a strate… https://t.co/4784T2QE0O" +04/10/2018,Politicians,@timkaine,We need to pass legislation to #ProtectMueller right away. https://t.co/to0KBaeEcJ +04/10/2018,Politicians,@timkaine,"Assad should face consequences for his atrocities, but Trump is a president, not a king - he needs to come to Congr… https://t.co/nzVj0sULWg" +04/10/2018,Politicians,@timkaine,"RT @USOWomen: On #EqualPayDay today, remember these dates. The pay gap is far wider for women of color as compared to White, non-Hispanic m…" +04/10/2018,Politicians,@timkaine,So we’re asking thousands of troops to leave home and deploy to the border so they can ... clear brush? https://t.co/NLz25VOviv +04/10/2018,Politicians,@timkaine,President Trump won’t call out Russia for attacking the U.S. election but calls a warranted search of his lawyer’s… https://t.co/r2GIx79O6b +04/09/2018,Politicians,@timkaine,It's long past time for Scott Pruitt to go. I opposed his nomination because I knew he'd gut environmental protecti… https://t.co/cHlScX9pHo +04/08/2018,Politicians,@timkaine,"How do you close out a 23-city, 6-day, nonstop campaign launch? By calling in an order to Fat Dragon, my favorite C… https://t.co/B16eanK5FW" +04/07/2018,Politicians,@timkaine,"RT @ianmcnally: When you get a crowd of this size in Harrisonburg on a rainy Saturday, it tells you two things. + +1) Virginians are unified…" +04/07/2018,Politicians,@timkaine,"Pour me one! See you soon, Harrisonburg. 🍻 + +#NationalBeerDay https://t.co/ZqY5sAD5Wz" +04/07/2018,Politicians,@timkaine,RT @snyderceramics: I continue to grow more and more impressed by @timkaine. I was one of those 425+ people there at this campaign kickoff… +04/07/2018,Politicians,@timkaine,Wow what a way to start Day 6 of our campaign kickoff tour across Virginia - 425+ Northern Virginians at a rally in… https://t.co/aQp1MmoUVy +04/07/2018,Politicians,@timkaine,"Need a hip or knee replacement? What about birth control or a vaccine? How about a filling for a cavity? If so, Tru… https://t.co/zxH9wyAnJe" +04/07/2018,Politicians,@timkaine,"Day 5 of my campaign kickoff in the books - from Loudoun to Fairfax, Prince William, and the Northern Neck. Virgini… https://t.co/RZkGhFcUH8" +04/07/2018,Politicians,@timkaine,"RT @MarkHerringVA: It was a pleasure to join our incredible Senator @timkaine for important discussions on good jobs, healthcare, education…" +04/05/2018,Politicians,@timkaine,"RT @jessalynsays: if you’re not following @timkaine on instagram, you’re truly missing out - bitmojis, harmonica, polls, selfies, boomerang…" +04/05/2018,Politicians,@timkaine,"Just toured IKEA’s Danville manufacturing plant. Asked if the tariffs worry them. They’re ok for now, but because t… https://t.co/gpj43185zb" +04/05/2018,Politicians,@timkaine,Who’s gonna get slammed by the Trump tariffs? Virginia farmers! Agriculture is our largest private industry: we pro… https://t.co/yzbhYnh564 +04/05/2018,Politicians,@timkaine,"“People living with disabilities, serious illness, and the frailty of old age are bracing to lose caregivers” due t… https://t.co/wKzZbBi7zo" +04/05/2018,Politicians,@timkaine,Back home in Richmond to hit the hay but we closed out our 16-hour day really strong: with a rally in my wife Anne’… https://t.co/7kQHxtqLzA +04/04/2018,Politicians,@timkaine,RT @ChrisHurstVA: A huge thank you to everyone who came out to today’s gun violence policy discussion with @timkaine and a fantastic panel.… +04/04/2018,Politicians,@timkaine,"RT @IanSams: Packed house of 400 in Blacksburg for @timkaine event on gun violence, just steps away from Virginia Tech’s campus, where 11 y…" +04/04/2018,Politicians,@timkaine,"We can improve health care in Southwest Virginia by: + +1️⃣ Expanding Medicaid +2️⃣ Passing my public option plan “Med… https://t.co/zuUrvDbSeu" +04/04/2018,Politicians,@timkaine,"I was only 10, but I vividly remember the day we lost Martin Luther King Jr and the heartbreak we felt as a nation.… https://t.co/Fi5v33G83Q" +04/04/2018,Politicians,@timkaine,RT @FairfaxJustin: Had a blast introducing dear friend Senator @timkaine at a high-energy Kaine 2018 rally in Newport News! Let’s re-elect… +04/04/2018,Politicians,@timkaine,"First it was a military parade to entertain himself, now it’s deploying troops to the border to intimidate immigran… https://t.co/JcJUlLkuNJ" +04/04/2018,Politicians,@timkaine,"I'm on the road this morning, heading southwest to start Day 3 of our tour with breakfast in Big Stone Gap - and I… https://t.co/rDzBMDYFTA" +04/04/2018,Politicians,@timkaine,Today only got better—met 100+ @_HamptonU students for a Q&A and closed out with a Newport News rally with… https://t.co/mZTMwem5dA +04/04/2018,Politicians,@timkaine,RT @KDongo: Day 2 of @timkaine epic re-election launch. Norfolk with @BobbyScott @RalphNortham Portsmouth with @SenLouiseLucas Hampton with… +04/04/2018,Politicians,@timkaine,"RT @LevarStoney: I support the US Senate candidate that supports: + +Jobs for ALL +Healthcare for ALL +Education for ALL +Security for ALL +Equal…" +04/04/2018,Politicians,@timkaine,RT @RalphNortham: There's no one better for Virginia than my friend @timkaine. Good to be with him in Norfolk as he kicks off his campaign!… +04/03/2018,Politicians,@timkaine,"Great day so far in Virginia Beach and Norfolk—roundtable conversation with veterans and military families, then a… https://t.co/aDiz5NjzST" +04/03/2018,Politicians,@timkaine,RT @WTKR3: Tim Kaine kicks off reelection campaign with stops in Hampton Roads https://t.co/3yTimKCnWK +07/01/2018,Politicians,@newtgingrich,"In Paris almost 100,000 people gathered to demand the replacement of the Iranian dictatorship. The Free Iran rally… https://t.co/AYmwLtVtDb" +07/01/2018,Politicians,@newtgingrich,Wrote my latest #newsletter on one of my favorite topics: #dinosaurs. Read it here: https://t.co/usegqiSMmh https://t.co/Oa2j3Q7apR +06/30/2018,Politicians,@newtgingrich,"New episode: This week on ""What If? History that Could've Been?"" I discuss what might've happened had the Bay of Pi… https://t.co/CrGuPwLhMM" +06/29/2018,Politicians,@newtgingrich,There absolutely needs to be a public Strzok hearing. The American people deserve to know if the top levels of FBI… https://t.co/vxm8A7lJFb +06/29/2018,Politicians,@newtgingrich,.⁦⁦⁦⁦@GallupNews⁩ — Snapshot: Americans’ Views of Job Market Remain Upbeat https://t.co/m4MXSzp2FT +06/29/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I attended the Papal Mass this morning on the feast of Saints Peter and Paul. https://t.co/QG6ErNZnZx +06/28/2018,Politicians,@newtgingrich,Great piece by @jackiecushman on why Americanism is important. https://t.co/SaZmW0QOoB +06/28/2018,Politicians,@newtgingrich,.@eScarry correctly points out that the country's biggest newspapers have no space for Trump supporters. https://t.co/6gcygFeqVi +06/28/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I attended the consistory at St. Peter’s today where Pope Francis installed 14 new cardinals. https:/… +06/28/2018,Politicians,@newtgingrich,"Great bipartisan work passing H.R. 6, The SUPPORT for Patients and Communities Act, out of the House. Now it is up… https://t.co/rn3IkLG337" +06/28/2018,Politicians,@newtgingrich,Joining @foxandfriends coming up at 7:30aET. Watch on @FoxNews. https://t.co/OBrdRpOdL4 +06/27/2018,Politicians,@newtgingrich,While the Left wants the Constitution be made malleable so it can be interpreted to meet their current political go… https://t.co/QUFbNGdqdM +06/27/2018,Politicians,@newtgingrich,"On #immigration, Democrats give Trump the upper hand — again -- ⁦@marcthiessen⁩ https://t.co/ysu5LgfvwJ" +06/27/2018,Politicians,@newtgingrich,"The Radical wing of the Democratic Party is defeating the ‘progressive’ wing! Open borders, abolish border and cust… https://t.co/NZsv9cGsjn" +06/27/2018,Politicians,@newtgingrich,I’ll be speaking at the #FreeIran2018 convention in Paris on June 30 to let the ppl of Iran know that… https://t.co/sKv5TlLWf4 +06/27/2018,Politicians,@newtgingrich,"Thanks To #TaxCuts, Companies' Overseas Profits Now Flooding Back To U.S. https://t.co/jdHJSuqQOL" +06/26/2018,Politicians,@newtgingrich,"Meet Mystery FBI ""Agent 5"" Who Sent Anti-Trump Texts While On #Clinton Taint Team https://t.co/jBYq81VwNS" +06/26/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was deeply moved by the stories shared on behalf of the #Yazidi and #Rohingya people at yesterda… +06/26/2018,Politicians,@newtgingrich,"RT @USinHolySee: The US Embassy to the Holy See would like to extend its sincerest thanks to Cardinal #Parolin, the Vatican’s Secretary of…" +06/25/2018,Politicians,@newtgingrich,Great to join @CallyGingrich at @USinHolySee #ReligiousFreedom Symposium today. https://t.co/vvp8uAzwC2 +06/25/2018,Politicians,@newtgingrich,Maxine Waters and the totalitarian thugs of the left remind me of the scenes in On the Water Front where the corrup… https://t.co/GnU5QQ3VsX +06/25/2018,Politicians,@newtgingrich,Here's how the Trump boom is igniting small business. https://t.co/byn9dVdmm5 +06/24/2018,Politicians,@newtgingrich,"What if Nixon had won the TV debate in 1960? Watch the latest episode of my @facebook show, ""What If? History that… https://t.co/hbF2FPmDfd" +06/23/2018,Politicians,@newtgingrich,The increasing personal nastiness toward people who work for President Trump reflects the left’s understanding that… https://t.co/x0DmPtt3sM +06/22/2018,Politicians,@newtgingrich,.@TIME showed us once again why so many Americans no longer trust the news media. People are sick of the nonstop di… https://t.co/cAQocCcGWf +06/22/2018,Politicians,@newtgingrich,RT @Vanessa45200499: @MJRagain @realDonaldTrump I recommend Newt Gingrich’s book ‘Trump’s America’ so you can educate yourself on the incre… +06/22/2018,Politicians,@newtgingrich,"RT @ckrumpe: “Trump’s America” is a wonderful book, written by Newt Gingrich. So well written with answers as to why things are/were done t…" +06/22/2018,Politicians,@newtgingrich,RT @AviationWeek: Newt Gingrich writes in Aviation Week about a blend of reusable rockets and hypersonic-vehicle technologies bringing the… +06/22/2018,Politicians,@newtgingrich,"RT @jackiecushman: RIP Charles Krauthammer. A great thinker, a beacon of light , who led an amazing life overcoming obstacles, and provid…" +06/22/2018,Politicians,@newtgingrich,Does the Time cover falsely depicting the young girl as victim count as FAKE NEWS? When everyone agrees the cover i… https://t.co/JcwangRL4E +06/21/2018,Politicians,@newtgingrich,Charles Krauthammer led a remarkable life. His intellect and extraordinary analysis will be remembered for generati… https://t.co/rnM7PHP6Kx +06/21/2018,Politicians,@newtgingrich,"My @facebook show, ""What If? History that Could've Been"" is back for Season 3! Watch the season premiere: What if N… https://t.co/wgBYMCs0dF" +06/21/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity Tensions on the House floor explode over immigration … .@NewtGingrich joins Sean NEXT https://t.co/nWbrncNgfh +06/21/2018,Politicians,@newtgingrich,Joining @HARRISFAULKNER on @OutnumberedOT next. Watch on @foxnews. +06/21/2018,Politicians,@newtgingrich,Answering your questions live on @facebook now. Ask here: https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,Alzheimer's will be single largest cost center in both government and private sector unless we find a cure. We shou… https://t.co/CavsCC0v4R +06/21/2018,Politicians,@newtgingrich,The key to rethinking the health system is focusing on innovation. Focus on breakthroughs. Cures and preventative t… https://t.co/wtO0XjksmO +06/21/2018,Politicians,@newtgingrich,We need invention not regulation. https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"We need lean, innovative, and effective government. Big bureaucracies don't work. Discussing now live on @facebook: https://t.co/Hgg5IyjggD" +06/21/2018,Politicians,@newtgingrich,"As a matter of public policy we should be using technological innovation to develop new ideas, new solutions, new s… https://t.co/Su4l5hAhIH" +06/21/2018,Politicians,@newtgingrich,Have a question for me on innovation? Ask now live on @facebook ➡️https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"Bureaucracies are not good at solving problems, and they're definitely not better at inventing a better future. Liv… https://t.co/RLCMTHLj00" +06/21/2018,Politicians,@newtgingrich,Live now on @facebook discussing innovation and our future. Watch here: https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich: ""The president's tried to follow a path that says we're going to be humane about the children, but we're n…" +06/21/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to present a copy of the newly released International #ReligiousFreedom Report to #C… +06/20/2018,Politicians,@newtgingrich,"This week, @potus and @VP showed us how serious and determined this administration is about launching America into… https://t.co/EOJPK73bjh" +06/20/2018,Politicians,@newtgingrich,"RT @SteveForbesCEO: .@newtgingrich ’s new series: Using Innovation, Not Big Government, To Solve Our Biggest Challenges is tomorrow @10:30…" +06/20/2018,Politicians,@newtgingrich,Writing today's newsletter on the new U.S. Space Force and what it means for our future. Sign up to receive it here… https://t.co/A0pK4lcO7Q +06/20/2018,Politicians,@newtgingrich,RT @CliffordDMay: My @WashTimes column on the bunker buster video blockbuster that Trump screened for Kim: https://t.co/GVuEALxvmr +06/20/2018,Politicians,@newtgingrich,RT @nixonfoundation: Photos from inside Dr. Henry Kissinger's birthday party we hosted tonight in New York City. Happy 95th! https://t.co/Y… +06/20/2018,Politicians,@newtgingrich,Great to have you all there! https://t.co/RtudmQOU9B +06/20/2018,Politicians,@newtgingrich,Joining @IngrahamAngle coming up at 10:15pET to talk immigration and more. Watch on @FoxNews. +06/19/2018,Politicians,@newtgingrich,The IG report makes one thing clear: The American Left is completely comfortable with corruption -- as long as it's… https://t.co/iT55kLdL9p +06/19/2018,Politicians,@newtgingrich,A Health Fix For Mom and Pop Shops https://t.co/ZZOtqaWUyw @WSJ +06/19/2018,Politicians,@newtgingrich,Joining @seanhannity coming up next at 9:30pET. Watch on @FoxNews. +06/18/2018,Politicians,@newtgingrich,".@potus is systematically & methodically demolishing Obama’s entire legacy. For 8 yrs, we heard excuses as to why G… https://t.co/KwzgsCLs7R" +06/18/2018,Politicians,@newtgingrich,"Join me tonight at 7pET at Barnes & Noble in Ashburn, VA. Will be signing copies of my new #1 bestseller, Trump's A… https://t.co/xmpz26GhGU" +06/18/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity In-depth reaction to Thursday’s IG report with .@NewtGingrich as he joins Sean NEXT +06/18/2018,Politicians,@newtgingrich,"Great weekend! Found out my new book, Trump's America is a #1 best seller in @PublishersWkly, @WSJ, and… https://t.co/ZfBpdU12pK" +06/18/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to meet with Polish Secretary of State Plenipotentiary for International Dialogue An… +06/18/2018,Politicians,@newtgingrich,"Join me tonight at Barnes & Noble in Ashburn, VA for a Trump's America book signing. Hope to see you there!… https://t.co/ex0J7WfzSX" +06/17/2018,Politicians,@newtgingrich,"@CallyGingrich Thank you, @CallyGingrich!" +06/17/2018,Politicians,@newtgingrich,Thanks for all the birthday wishes! Great day celebrating in Roma with @callygingrich! https://t.co/OCnPYg0D2m +06/17/2018,Politicians,@newtgingrich,"Happy Father's Day! One of my favorite photos with my dad, taken in Verdun. https://t.co/XAvnlosGXH" +06/16/2018,Politicians,@newtgingrich,"Thank you to my friend Barry Casselman for this very thoughtful review of my new book, Trump's America. https://t.co/9wx2FKJhvQ" +06/15/2018,Politicians,@newtgingrich,Why the Trump-Kim Summit was nothing short of amazing. ⁦@DailyCaller⁩ https://t.co/Rn7WUVSYdW +06/14/2018,Politicians,@newtgingrich,.⁦@CallyGingrich⁩ and I wish President ⁦@realDonaldTrump⁩ a very happy birthday! https://t.co/iMXTWCvzl5 +06/14/2018,Politicians,@newtgingrich,"RT @bibliovaticana: L'Ambasciatore USA presso la Santa Sede, @CallyGingrich, ha restituito stamattina alla Biblioteca Vaticana l'esemplare…" +06/14/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich: America's support for #Ukraine remains absolute. The United States will utilize diplomacy, sanc…" +06/14/2018,Politicians,@newtgingrich,"RT @ABC: U.S. ambassador to the Vatican will return letter by Christopher Columbus, replacing Vatican copy found to be a forgery. https://t…" +06/14/2018,Politicians,@newtgingrich,"RT @cnni: The United States is returning a copy of a letter by Christopher Columbus back to Vatican officials, after it had been replaced w…" +06/13/2018,Politicians,@newtgingrich,".@POTUS once again proved his strength as a leader on the world stage. He's been president for 18 months, and he's… https://t.co/NEmlWELtIf" +06/13/2018,Politicians,@newtgingrich,"Just found out that my new book, Trump's America, is a @nytimes best seller in its first week! Thank you to everyon… https://t.co/zMSR95fYVU" +06/13/2018,Politicians,@newtgingrich,"RT @marc_lotter: GOOD READ - @newtgingrich: @RealDonaldTrump has accomplished more than Clinton, Bush, and Obama combined - this is just th…" +06/13/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity The left and media refuse to acknowledge .@POTUS ‘ accomplishments this week in Singapore. .@NewtGingrich joins… +06/13/2018,Politicians,@newtgingrich,"Just added: Will be hosting a #TrumpsAmerica book signing on Monday, June 18th in Ashburn, VA. Hope to see you ther… https://t.co/5ZgEXShUY7" +06/13/2018,Politicians,@newtgingrich,"RT @GOPChairwoman: Totally agree, @newtgingrich! +https://t.co/3FoMvCSpOC" +06/13/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich and Speaker @newtgingrich enjoyed attending the Rome Seminar led by the ACCU. + +Pictured: Co-foun…" +06/12/2018,Politicians,@newtgingrich,"Once again, President @realDonaldTrump has done something astounding, unpredictable, and historic. He has already a… https://t.co/UVTMCZ2iF0" +06/12/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity .@POTUS and Kim Jong Un sign the deal for a fully denuclearized NKorea… .@NewtGingrich joins Sean NEXT https://t… +06/12/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity .@POTUS and Kim Jong Un sign the deal for a fully denuclearized NKorea… .@NewtGingrich joins Sean NEXT +06/12/2018,Politicians,@newtgingrich,Wishing President @GeorgeHWBush a very happy 94th birthday! https://t.co/74x41GdrpC https://t.co/bY4Hy2R2uA +06/12/2018,Politicians,@newtgingrich,"Small business optimism soars, resulting in increased hiring and wages https://t.co/EEaJA5pODa -- another sign of o… https://t.co/SDAIb3DK8f" +06/12/2018,Politicians,@newtgingrich,RT @RHallow_Times: Newt Gingrich has new book out on DJT. Should make for one of the best reads on the man we once affectionately called Th… +06/12/2018,Politicians,@newtgingrich,"RT @Raiklin: @newtgingrich Congrats on the book, Newt! Will take a listen..." +06/12/2018,Politicians,@newtgingrich,Joining @MorningsMaria coming up at 7:30aET to discuss #SingaporeSummit. Watch on @FoxBusiness. +06/12/2018,Politicians,@newtgingrich,"RT @SecPompeo: Among the issues @potus and our team discussed with #NorthKorea human rights, religious freedom and Japanese abductees. @Sta…" +06/12/2018,Politicians,@newtgingrich,"RT @StateDept: .@POTUS: “Anyone can make war, but only the most courageous can make peace.” #SingaporeSummit https://t.co/a7FqzhMiIi" +06/12/2018,Politicians,@newtgingrich,".@CallyGingrich and I are keeping @larry_kudlow, his family, and the medical team treating him at Walter Reed in ou… https://t.co/jJJth7LBWe" +06/11/2018,Politicians,@newtgingrich,Hope you enjoy #TrumpsAmerica! https://t.co/hmMmlEidA3 +06/11/2018,Politicians,@newtgingrich,RT @theskimm: @POTUS and Kim Jong Un have a big mtg this week. The agenda: Nukes. Here’s what former Speaker of the House @newtgingrich had… +06/11/2018,Politicians,@newtgingrich,RT @BookTV: This Saturday at 9pm ET former House Speaker @newtgingrich offers his thoughts on the impact that the Trump administration poli… +06/11/2018,Politicians,@newtgingrich,RT @CallyGingrich: Beautiful day in Tivoli with @newtgingrich. https://t.co/W8k8sg5NkW +06/11/2018,Politicians,@newtgingrich,ICYMI: My @facebook live interview at @nasdaq this week on the economy under @realDonaldTrump and #TrumpsAmerica.… https://t.co/sTf7RP8m0P +06/09/2018,Politicians,@newtgingrich,Great book launch week! Thanks to everyone who helped Trump's America become an @amazon best seller! Order your cop… https://t.co/mFyn7nG8By +06/08/2018,Politicians,@newtgingrich,"How Obama Secretly Gave Iran Access To Billions Of Dollars — And Enabled Terrorism +https://t.co/Q7yuzybDRZ" +06/08/2018,Politicians,@newtgingrich,"RT @AM560TheAnswer: ICYMI from Mike Gallagher: Newt Gingrich .NewtGingrich and Mike dive into the Speaker’s new book, “Trump’s America” htt…" +06/08/2018,Politicians,@newtgingrich,RT @RFIDer: Nearly a year after the NYTs/Amazon best-selling Understanding Trump's release comes Newt Gingrich's hotly awaited follow-up: T… +06/08/2018,Politicians,@newtgingrich,"The Left doesn't care that more Americans have jobs, unemployment is down, and the tax cuts are working -- that wou… https://t.co/BUuTet8N8A" +06/08/2018,Politicians,@newtgingrich,RT @TomShillueShow: Coming up! @newtgingrich talks #TrumpsAmerica @BillClinton #metoo and more! https://t.co/csXCO0puYF https://t.co/LfU8hz… +06/08/2018,Politicians,@newtgingrich,"RT @GOPLeader: ""Americans are beginning to conclude that their lives are getting better, and that President Trump and Republican leadership…" +06/08/2018,Politicians,@newtgingrich,The tragic news that Charles Krauthammer’s cancer has returned saddens everyone who knew him or watched him. He is… https://t.co/rAjnKTGnBW +06/08/2018,Politicians,@newtgingrich,Speaking live at @yaf now. Watch here: https://t.co/QwVEcGyzPK #TrumpsAmerica +06/08/2018,Politicians,@newtgingrich,It has been a pleasure getting to know and work with @EricTrump over the last few years. I appreciate his taking th… https://t.co/TCpQLa0gkD +06/08/2018,Politicians,@newtgingrich,"Looking forward to joining @yaf this afternoon to talk about my new book, Trump's America. Watch live at 12:30pET.… https://t.co/oq5RtMGQiX" +06/08/2018,Politicians,@newtgingrich,RT @bhweingarten: Have always found @newtgingrich’s keen insights into POTUS (among many other things) both thought-provoking and prescient… +06/08/2018,Politicians,@newtgingrich,RT @LisaDeP: My latest Dozen interview is with @newtgingrich! https://t.co/rUzTZj3jeA +06/08/2018,Politicians,@newtgingrich,Congrats @Capitals! Great game! #ALLCAPS #STANLEYCUP https://t.co/xJ5WUT44f8 +06/07/2018,Politicians,@newtgingrich,"There's no question that President @realDonaldTrump's policies are working. More jobs, a stronger economy, and as I… https://t.co/juBO6dQzQi" +06/07/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I wish @VP Pence a very happy birthday! https://t.co/xECHBY2XvZ +06/07/2018,Politicians,@newtgingrich,Have a question for me about President Trump and America's great comeback? Ask me now on @facebook ➡️ https://t.co/NFn6YdvDxX +06/07/2018,Politicians,@newtgingrich,I'm answering your questions about Trump's America live on @Facebook now. Ask questions: https://t.co/NFn6YdvDxX https://t.co/Tm7ynQ493p +06/07/2018,Politicians,@newtgingrich,Answering your questions LIVE on @facebook now. Submit questions and watch here: https://t.co/NFn6YdvDxX #TrumpsAmerica +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich affirmed U.S. support for #Georgia at a photo exhibit marking the 10th anniversary of #Russia’s… +06/07/2018,Politicians,@newtgingrich,My friend @JerryFalwellJr is writing his debut book on the power of freedom to create prosperity. And how… https://t.co/cOBEbMOM1w +06/07/2018,Politicians,@newtgingrich,Wishing @VP a very happy birthday! Hope it's great! 🇺🇸 https://t.co/UCB5eGb36D +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to stand with #Georgia alongside @GeoVatican @UKRinVAT @UN and Archmandrite @cyril_h… +06/07/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich visited the Centro Astalli refugee center, managed by @JesuitRefugee. The Ambassador visited wit…" +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Read about President Reagan and Pope John Paul II's important relationship and collaboration in @CallyGingrich's oped: htt… +06/07/2018,Politicians,@newtgingrich,"RT @GOPLeader: 👍 Lower taxes, more jobs, and a booming economy–this is America’s comeback. +✅ Unemployment ↓ +✅ Wages ↑ +✅ Consumer confidence…" +06/07/2018,Politicians,@newtgingrich,"Childhood cancer survivors are heroes to all of us. Congrats to @realDonaldTrump & Congress, and countless advocate… https://t.co/tUSwLHHsR3" +06/07/2018,Politicians,@newtgingrich,.@bhweingarten is a smart writer and researcher who helped us create Defending America. I look forward to his new p… https://t.co/4DqV66UWwi +06/07/2018,Politicians,@newtgingrich,Democrats' IT scandal set to explode with possible plea deal https://t.co/4B6EUXWRO4 +06/07/2018,Politicians,@newtgingrich,Just added: I explain how @realDonaldTrump is leading America's comeback on #FOXNewsRundown. Listen on… https://t.co/RuI40LVkkI +06/07/2018,Politicians,@newtgingrich,President ⁦@realDonaldTrump⁩ has paved the way for a free speech comeback. #trumpsamerica https://t.co/OVJqTpdpNO +06/06/2018,Politicians,@newtgingrich,"RT @FoxNews: .@newtgingrich: ""It's a traffic jam [@TheDemocrats] created."" #OutnumberedOT https://t.co/h1UrQ0vBaG" +06/06/2018,Politicians,@newtgingrich,Will be on @TheStoryFNC with @marthamaccallum coming up at 7pET to discuss Trump's America and the growing red wave. https://t.co/wVsqPqvcZu +06/06/2018,Politicians,@newtgingrich,Catching up with @kilmeade and @BillHemmer and talking Trump's America. #newbook https://t.co/szNmypO680 https://t.co/GV9BSes3fO +06/06/2018,Politicians,@newtgingrich,FDR's prayer to the nation following the Normandy invasion is a reminder that our faith binds us together as a coun… https://t.co/Fr54k9YPAJ +06/06/2018,Politicians,@newtgingrich,Next up: @OutnumberedOT. Will be live in studio with @HARRISFAULKNER at 1:30pET. Watch on @FoxNews. https://t.co/wVsqPqvcZu +06/06/2018,Politicians,@newtgingrich,Joining the ladies of @OutnumberedFNC for the entire show starting at 12pET. Watch on @FoxNews. https://t.co/szNmypO680 +06/06/2018,Politicians,@newtgingrich,Will talk with @MariaBartiromo on @MorningsMaria at 8aET about what last night's primaries mean for the midterms an… https://t.co/bF50PJsSws +06/06/2018,Politicians,@newtgingrich,The red wave is building in the senate.almost 40% of democrats voted against Sen Menendez in New Jersey yesterday.… https://t.co/AJalSrOijQ +06/06/2018,Politicians,@newtgingrich,Joining @foxandfriends at 7:30aET to discuss last night's primaries and my new book Trump's America. Watch on… https://t.co/Vu1gjuCGcJ +06/06/2018,Politicians,@newtgingrich,RT @FoxNews: .@newtgingrich: The Republican comeback is a real threat to the elite media's 'blue wave' theory https://t.co/u8woF9qm1q +06/06/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich on California primary: ""The anger over the gas tax increase, the anger over what's happening to the economy…" +06/06/2018,Politicians,@newtgingrich,Great talking about #TrumpsAmerica on @TheView today! Read a free excerpt and watch the full interview ➡️… https://t.co/rDYQ89rMhm +06/06/2018,Politicians,@newtgingrich,"RT @MariaBartiromo: Big show tomorrow. Join us. Start smart @MorningsMaria @FoxBusiness @dagenmcdowell +@KevinRKelly_ +@lh_carter +@robertwolf…" +06/06/2018,Politicians,@newtgingrich,Kicking off the #TrumpsAmerica book tour tonight at @BookendsNJ in Ridgewood. Order autographed copies:… https://t.co/JWNV85i2kz +06/06/2018,Politicians,@newtgingrich,RT @FoxNews: OPINION: The Republican comeback is a real threat to the elite media's 'blue wave' theory. - @newtgingrich https://t.co/aaksnV… +06/06/2018,Politicians,@newtgingrich,"Joining @seanhannity at 9pET live from @bookendsnj to discuss my new book, Trump's America. Watch on @FoxNews.… https://t.co/dDECb1LVTm" +06/05/2018,Politicians,@newtgingrich,Congrats to @Nasdaq's @Machiz on being named one of Marketing Edge's 2018 Rising Stars. Have enjoyed working with h… https://t.co/K0vmWxOUS7 +06/05/2018,Politicians,@newtgingrich,Hope to see you at @BookendsNJ in Ridgewood tonight for the kick-off of my #TrumpsAmerica book tour. Details:… https://t.co/cS4Px8G8dX +06/05/2018,Politicians,@newtgingrich,Submit questions now! Talking about Trump's America live on @facebook from @Nasdaq. https://t.co/SSl2YZKGc2 https://t.co/2LPAW4ahk3 +06/05/2018,Politicians,@newtgingrich,Watch now: discussing Trump's America live on @facebook from @Nasdaq https://t.co/H0DrbdonSY +06/05/2018,Politicians,@newtgingrich,"Joining @TeamCavuto to talk about my new book, Trump's America live from @Nasdaq coming up at 12:40pET. Watch on… https://t.co/aooIk80Hzr" +06/05/2018,Politicians,@newtgingrich,"Looking forward to joining the ladies of @TheView to discuss my new book, Trump's America. Watch on @abc at 11aET.… https://t.co/oK8PnW3Cjv" +06/05/2018,Politicians,@newtgingrich,Join me tonight at @BookendsNJ in Ridgewood for a #TrumpsAmerica book tour at 7pET. Details: https://t.co/1FVLoKJVpU https://t.co/zSHYCJwTBM +06/05/2018,Politicians,@newtgingrich,"Thanks for the shoutout, @jackiecushman! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/iRE5cB1J6J" +06/05/2018,Politicians,@newtgingrich,"RT @AM560TheAnswer: ICYMI from Mike Gallagher: President Donald Trump is leading our nation’s great comeback, and no one understands this b…" +06/05/2018,Politicians,@newtgingrich,"Thanks, @radiotalkermike! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/PBmFdU5n2B" +06/05/2018,Politicians,@newtgingrich,RT @greta: .@newtgingrich has a new book out today! Click to see (and buy) : https://t.co/i5CEY2m6cv +06/05/2018,Politicians,@newtgingrich,"RT @CBSThisMorning: ""We have zero evidence that Donald J. Trump, in any way, colluded with Russia... everything he's doing [Mueller] is abo…" +06/05/2018,Politicians,@newtgingrich,"Thank you, @kilmeade! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/Uj9fHksAKI" +06/05/2018,Politicians,@newtgingrich,"RT @93wibc: Today, @tonykatz speaks with former Speaker @newtgingrich about his new book, Trump's America, the #SCOTUS decision on #Masterp…" +06/05/2018,Politicians,@newtgingrich,Next stop on the #TrumpsAmerica Book Tour: Good Day New York! Watch on @fox5ny at 8:45aET. https://t.co/wVsqPqvcZu +06/05/2018,Politicians,@newtgingrich,"Joining @CBSThisMorning coming up at 8aET to discuss my new book, Trump's America -- out today! https://t.co/szNmypO680" +06/05/2018,Politicians,@newtgingrich,"Launch day! My new book, ""Trump's America: The Truth About Our Nation's Great Comeback"" is out today! Order here:… https://t.co/1WTJLDbkKi" +06/04/2018,Politicians,@newtgingrich,Join me tomorrow night at @BookendsNJ in Ridgewood as I kick-off my Trump's America book tour.… https://t.co/osgjjdVljV +06/04/2018,Politicians,@newtgingrich,RT @realDailyWire: GINGRICH: The Reality of the American Dream for the Class of 2018 https://t.co/kdLnZlgd89 +06/04/2018,Politicians,@newtgingrich,RT @TheView: TOMORROW: @newtgingrich joins the #HotTopics table LIVE! https://t.co/TwMMsP7z2E +06/04/2018,Politicians,@newtgingrich,"Great to join my friend @seanhannity in studio today to discuss my new book, Trump's America. Listen live now.… https://t.co/j8rRL4neWV" +06/04/2018,Politicians,@newtgingrich,"Despite what the Left might claim, President @realDonaldTrump's policies are working -- just look at the GDP growth… https://t.co/ecRi11ZWk2" +06/04/2018,Politicians,@newtgingrich,"Another great piece from Barry Casselman -- ""Shocker In Minnesota?"" https://t.co/a5WSkum4X0" +06/04/2018,Politicians,@newtgingrich,RT @Manhattan_GOP: Our amazing candidates Dr. Jeff Ascherman and @PeteHolmbergNYC with @newtgingrich and Chair @AJ_Cats_ at yesterday's boo… +06/04/2018,Politicians,@newtgingrich,RT @LisaDeP: Don’t miss my interview with @newtgingrich in today’s edition of Bright! https://t.co/2vIrZGr606 Subscribe at https://t.co/3yf… +06/04/2018,Politicians,@newtgingrich,RT @FoxNews: .@newtgingrich: We're Closer to a 'Red Wave' Than a 'Blue Wave' in November https://t.co/LrJ2rP94jo +06/03/2018,Politicians,@newtgingrich,"RT @ThisWeekABC: .@jonkarl, @sarafagen2, @newtgingrich, @finneyk and @patrickgaspard join @GStephanopoulos on the ""This Week"" roundtable th…" +06/03/2018,Politicians,@newtgingrich,"RT @JCats2013: @CatsRoundtable this morning in NY Local 8:30 National Show 9 to10 +in NY 970 AM Radio on Internet @am970TheAnswer or https:…" +06/03/2018,Politicians,@newtgingrich,Will be on @ThisWeekABC panel coming up at 9aET. +06/03/2018,Politicians,@newtgingrich,".@POTUS is leading our nation's great comeback. We have a stronger economy, the lowest unemployment rate in decades… https://t.co/hPP92VG9Rj" +06/02/2018,Politicians,@newtgingrich,A Right To Try Arrives - @WSJ https://t.co/NxHArMBt1n +06/01/2018,Politicians,@newtgingrich,Democrats' dishonesty about MS-13 hands Trump a winning issue - @marcthiessen https://t.co/deMtpF4Tab +05/31/2018,Politicians,@newtgingrich,RT @centerstreet: Look what came into @newtgingrich office today.. https://t.co/zJ5ZUG0fQc +05/31/2018,Politicians,@newtgingrich,Just delivered at the office! 📦 Trump's America coming out June 5th! Order at https://t.co/AZHjvJEPD7 https://t.co/rBYRi0ulfp +05/31/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity Unpacking the 5 scandals involving Robert Mueller and his “investigation”.. .@NewtGingrich joins Sean NEXT +05/31/2018,Politicians,@newtgingrich,Why Trump Should Support Sen. Cruz on Space-Based Missile Defense https://t.co/EGqga8FiO3 +05/31/2018,Politicians,@newtgingrich,Nikki Haley: South Sudan has failed its children. We must not. https://t.co/4oe0beY5h7 +05/30/2018,Politicians,@newtgingrich,The current Mueller-DOJ-Russia mess is almost impossible to understand because it is made up of these five parallel… https://t.co/HgZ5ZcgtvJ +05/30/2018,Politicians,@newtgingrich,President @realDonaldTrump is reforming the civil service to work for the American people https://t.co/N4Awgvg5iS +05/30/2018,Politicians,@newtgingrich,RT @AORecovery: Congress must take action to give America’s seniors access to opioid treatment programs. Tell your legislators to vote for… +05/30/2018,Politicians,@newtgingrich,"On Tuesday, June 5th, I will kick-off my Trump's America book tour at @BookendsNJ in Ridgewood at 7pET. Hope to see… https://t.co/vWF00yM1mV" +05/30/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich calls #ReligiousFreedom a matter of national security and discusses the upcoming Ministerial hos… +05/30/2018,Politicians,@newtgingrich,Sec. Wilbur Ross on why Moon Colony will be a reality sooner than you think https://t.co/1Drum5iDHw +05/30/2018,Politicians,@newtgingrich,Dodd-Frank rollback will reinvigorate Main Street | @thehill https://t.co/OSESbcPYa2 +05/30/2018,Politicians,@newtgingrich,"Since taking office, @realDonaldTrump has been leading America's great comeback. I explain what this means for our… https://t.co/72TLMMqZHx" +05/29/2018,Politicians,@newtgingrich,RT @CallyGingrich: The 2017 International Religious Freedom Report and the Ministerial to Advance Religious Freedom underscore America's en… +05/28/2018,Politicians,@newtgingrich,We honor the brave men and women who have made the ultimate sacrifice for our freedom. #MemorialDay https://t.co/Mr7LQx8len +05/28/2018,Politicians,@newtgingrich,Fabulous cathedral. https://t.co/JAHeXZb70w +05/26/2018,Politicians,@newtgingrich,"RT @CallyGingrich: Very moving to visit the Sicily-Rome American Cemetery in Nettuno, Italy today with @newtgingrich. https://t.co/pcCtTOaP…" +05/26/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was honored to deliver keynote remarks at a Military Naturalization Ceremony today at the U.S. E… +05/25/2018,Politicians,@newtgingrich,RT @SteveForbesCEO: I like @newtgingrich’s reading list today! Agree critical read from Prof @KennethThorpe aligned with @realDonaldTrump &… +05/24/2018,Politicians,@newtgingrich,Important oped on reforms @SecAzar should demand at WHO meetings this week. Saving lives requires working with US h… https://t.co/9DarZE9Zy5 +05/24/2018,Politicians,@newtgingrich,President Trump's letter to@Kim Jong Un is exactly right and very wise +05/23/2018,Politicians,@newtgingrich,The system of corruption that Barack Obama and Hillary Clinton were in charge of is beginning to unravel. The Inspe… https://t.co/8d9ZuUGImb +05/23/2018,Politicians,@newtgingrich,What if Seward had won the GOP nomination in 1860 instead of Lincoln? Watch the latest episode of my @facebook show… https://t.co/GadfE7fHkL +05/23/2018,Politicians,@newtgingrich,RT @GOPLeader: Beating the deadliest drug crisis in history will require nothing less than the biggest response in history. That response i… +05/23/2018,Politicians,@newtgingrich,Joining @IngrahamAngle coming up. Watch on @FoxNews. +05/22/2018,Politicians,@newtgingrich,Speaking live now at @Heritage on how @potus is leading our nation's great comeback. Watch live:… https://t.co/083rT5v1Ck +05/22/2018,Politicians,@newtgingrich,Mike Pompeo just gave the Iran speech Kerry should have given https://t.co/Q8BNPdb3sn +07/01/2018,Politicians,@GovRauner,Kudos to all the parents out there that help their kids earn straight A’s in life. https://t.co/6qaRiIEu03 +07/01/2018,Politicians,@GovRauner,Catch Sneed to see if there was once a pony on the grounds trained to walk up the steps of the Illinois Governor’s… https://t.co/SGCFZERrYc +06/30/2018,Politicians,@GovRauner,"Melting temperatures out there. Tollway Oasis centers are open 24/7 for Illinoisans to stay safe, cool and comforta… https://t.co/g7t7HjoyjH" +06/30/2018,Politicians,@GovRauner,Congratulations to the Jain Society of Metropolitan Chicago on the 25th Anniversary of your temple. Wonderful eveni… https://t.co/v2EcLqlDaZ +06/29/2018,Politicians,@GovRauner,There is a no more deserving lawyer than @LtSanguinetti for the Women’s Bar Foundation Award. My friend & colleague… https://t.co/10kBTu3koA +06/29/2018,Politicians,@GovRauner,#ICYMI Earlier today I took important steps to ease teacher shortage in Illinois and extend workforce readiness ini… https://t.co/Jcsts9VXvm +06/29/2018,Politicians,@GovRauner,Took important steps today to ease teacher shortage in Illinois and extend workforce readiness initiatives. https://t.co/0Rx38KUexB +06/29/2018,Politicians,@GovRauner,"With scorching hot weather in the forecast, please be cautious. Remain indoors when possible. Stay hydrated. And pl… https://t.co/MlTTO2VmvU" +06/28/2018,Politicians,@GovRauner,In Waukegan at @CristoReySM School to talk economic opportunity and shine a light on parts of Illinois designated a… https://t.co/j0yKrgEpEF +06/28/2018,Politicians,@GovRauner,"RT @SBACIL: It's been 6 months since @GovRauner signed SB 867, a bill to lower LLC fees, into law. In Q1 of 2018, new LLC filings are up 40…" +06/27/2018,Politicians,@GovRauner,Talking with @GeorgeWill about #Janus and other recent developments. #twill https://t.co/WIBdYm0Ql0 +06/27/2018,Politicians,@GovRauner,"Telling FOX's @ShannonBream Janus ruling is pro-worker, pro-taxpayer. A great victory for our democracy, public emp… https://t.co/KuIb0zO10L" +06/27/2018,Politicians,@GovRauner,RT @ShannonBream: The winners in the unions fees case at #SCOTUS https://t.co/QgRBwssdkw +06/27/2018,Politicians,@GovRauner,"The significance of the #Janus decision will be felt not just in Illinois, but across America. There are 5 million… https://t.co/Psr2zUohln" +06/27/2018,Politicians,@GovRauner,The high court’s decision means state workers can no longer be forced to pay “fair share” fees if they choose not t… https://t.co/BRehuvvo6P +06/27/2018,Politicians,@GovRauner,"For decades, IL workers have been forced to pay union fees against their will. The practice infringed on the rights… https://t.co/NWkMWAyuHK" +06/27/2018,Politicians,@GovRauner,Today’s #Janus decision is a historic victory for freedom of speech and affiliation for our public sector employees… https://t.co/5eJNYrHKud +06/27/2018,Politicians,@GovRauner,From #Janus: “:Whenever the Federal Government or a State prevents individuals from saying what they think on impor… https://t.co/boST9uNQlq +06/27/2018,Politicians,@GovRauner,"From #Janus: “Free speech serves many ends. It is essential to our democratic form of government, see, e.g., Garris… https://t.co/Krjtfc1l7S" +06/27/2018,Politicians,@GovRauner,"#SCOTUS decision is pro-worker, and pro-taxpayer who count on us to bargain in good faith. #Janus #JanusvAfscme" +06/27/2018,Politicians,@GovRauner,RT @SCOTUSblog: #SCOTUS holds requiring nonmembers of public-sector unions to pay fees to cover collective-bargaining activities violates t… +06/27/2018,Politicians,@GovRauner,#SCOTUS rules in favor of #Janus. Great victory for state employees and Illinois taxpayers. +06/27/2018,Politicians,@GovRauner,RT @NWSChicago: The Tornado Warning for Will County has been allowed to expire. We're continuing to closely monitor storms in the south/sou… +06/27/2018,Politicians,@GovRauner,"RT @GroverNorquist: Met today with Illinois governor Bruce Rauner +The “Janus” SCOTUS Case was at the start —AFSCME vs Rauner. +Rauner will s…" +06/27/2018,Politicians,@GovRauner,"RT @NWSChicago: Tornado Warning including Frankfort IL, Wilton Center IL until 7:30 PM CDT https://t.co/axAE8qK7y2" +06/27/2018,Politicians,@GovRauner,RT @NWSChicago: Multiple tornado touchdowns in central Will County with the tornado warned thunderstorm. Head indoors immediately for safe… +06/26/2018,Politicians,@GovRauner,Illinois economy and effect of tariffs were part of discussions in DC with @RepLaHood and others in the delegation. https://t.co/amsAUvl6tG +06/26/2018,Politicians,@GovRauner,With #Cavuto on Fox: No one wins a trade war! https://t.co/plOJ8wLCHh +06/26/2018,Politicians,@GovRauner,"Legendary blues guitarist and singer @TheRealBuddyGuy plus @STYXtheBand, @chicagosymphony and more will be headline… https://t.co/UBb4ICPlok" +06/26/2018,Politicians,@GovRauner,"Informative discussion today with Commerce Dep. Secretary Karen Kelley on 21st-century workforce development, more… https://t.co/oHEYbs6zbw" +06/26/2018,Politicians,@GovRauner,Met with VP Pence yesterday to discuss tariffs and express need to have policies in the best interest of Illinois job creators. +06/25/2018,Politicians,@GovRauner,.@UofILSystem’s Discovery Partners Institute brings world-class faculty to work side-by-side with students and busi… https://t.co/p0vvt2zKh6 +06/25/2018,Politicians,@GovRauner,Stopped by @FoxBusiness this morning to talk about economic development and pension reform in Illinois. https://t.co/7hlHKIDmwV +06/24/2018,Politicians,@GovRauner,A beautiful Sunday to celebrate Pride Day in Chicago! https://t.co/jzw0mM1fnA +06/24/2018,Politicians,@GovRauner,"Whether on active duty or a veteran, if you or someone you know needs help visit https://t.co/tkS8Q8k7rg or call th… https://t.co/h33QN7lxqf" +06/24/2018,Politicians,@GovRauner,"Tim and Maureen Walsh started @OperationTalk (Tell, Ask, Listen, Keep Safe) after their son James lost his battle t… https://t.co/w9hrqPBJSU" +06/23/2018,Politicians,@GovRauner,Always a great day when we get to celebrate our heroes. The Armed Services Day at the Bourbonnais Friendship Festiv… https://t.co/3cV0rVb0Cp +06/23/2018,Politicians,@GovRauner,Great times at the 18th annual Dragon Boat Race hosted by @Chinatown312. Teams out here are competing to raise fund… https://t.co/i5pvEYdH0u +06/23/2018,Politicians,@GovRauner,Safety net & rural hospitals get protection. https://t.co/FPVj0fopKT +06/22/2018,Politicians,@GovRauner,Economic opportunity. Jobs. Better education. Lower taxes. Fair markets. These are initiatives that break down barr… https://t.co/dDbFP9RfyN +06/22/2018,Politicians,@GovRauner,Fantus Paper Products is tripling its workforce in Skokie to support Made-in-the-USA Holiday Gift Boxes for Walmart… https://t.co/HmOruO52EM +06/22/2018,Politicians,@GovRauner,Always a privilege to meet with Scouts – and these three trailblazers in particular – to receive their annual Repor… https://t.co/R58UlHSgkR +06/22/2018,Politicians,@GovRauner,.@CSLBehring’s investment is stimulating Kankakee’s economic growth and paying off in new jobs for the people of Il… https://t.co/nVfEUJwz3z +06/22/2018,Politicians,@GovRauner,RT @Illinois200: What makes you #IllinoisProud? https://t.co/U1P5Wxvy6s +06/21/2018,Politicians,@GovRauner,Today I signed legislation to extend Normal’s tax increment financing designation. TIF is an important tool in urba… https://t.co/5EC9TPPxF2 +06/21/2018,Politicians,@GovRauner,"Children have a much better chance in life if they have a loving, stable home. @ChildrenHomeAid unites children wit… https://t.co/JdyT0Ju1kI" +06/21/2018,Politicians,@GovRauner,"RT @ChildrenHomeAid: This new tax credit takes away one of the barriers for families to adopt and helps fulfill our mission to create hope,…" +06/21/2018,Politicians,@GovRauner,RT @ChildrenHomeAid: Today @GovRauner announced a new tax credit to support Illinois adoptive families by making adoptions more affordable.… +06/21/2018,Politicians,@GovRauner,"DPI’s motor will run on intellectual capital, a plentiful natural resource here in Illinois. https://t.co/o8LSSn3hNb" +06/21/2018,Politicians,@GovRauner,Guess who’s at the top of https://t.co/mUpdUEEnYm annual American-Made Index! The Jeep Cherokee assembled right her… https://t.co/dj8L7e3tcj +06/21/2018,Politicians,@GovRauner,"RT @NWSChicago: Reminder: Flood Advisory is in effect for NE IL the rest of this a.m. Moderate to heavy rain will continue through noon, e…" +06/21/2018,Politicians,@GovRauner,"RT @IDOT_Illinois: Heavy rain in the Chicago area is leading to flooding on some roads, including expressways. Here, IDOT crews have blocke…" +06/21/2018,Politicians,@GovRauner,More on machine politics in Cook County. Property taxes are rising. https://t.co/qMaPi2tFtl +06/20/2018,Politicians,@GovRauner,"With state-secured $500M for Discovery Partners Institute, we’ve started an engine for extraordinary economic growt… https://t.co/mCAdrqQzxz" +06/20/2018,Politicians,@GovRauner,Reduce occupational license burdens -- cut red tape -- you grow job opportunities & income especially for minoritie… https://t.co/bqZHV8HcW0 +06/20/2018,Politicians,@GovRauner,And isn’t this interesting? Where Cook Co Machine controls government is where black families experience the highes… https://t.co/PVkVcZ7p01 +06/20/2018,Politicians,@GovRauner,"Finally, on human services: Better Care Illinois. Unprecedented $2 billion Medicaid waiver pilots health-building s… https://t.co/1QDbGrHJql" +06/20/2018,Politicians,@GovRauner,"On business building, LLCs are cheaper to start, professional licenses are easier to get for people leaving prison,… https://t.co/K9qBleTxo1" +06/20/2018,Politicians,@GovRauner,"At the Tollway, total payments to African American owned professional services firms has increased by 142% since 20… https://t.co/fMuIGgH9qS" +06/20/2018,Politicians,@GovRauner,We’re helping build African American businesses. First sheltered market increases minority participation in state c… https://t.co/bwz5MruWGI +06/20/2018,Politicians,@GovRauner,Just signed an executive order to relieve the huge backlog in human rights cases. We cleared thousands of clemency… https://t.co/lf1epb6Ue6 +06/20/2018,Politicians,@GovRauner,"Education is job prerequisite. Since I’ve been governor, K-12 spending up $1.4 billion with state money distributed… https://t.co/u1JiUMz4j4" +06/20/2018,Politicians,@GovRauner,On jobs and opportunity for African Americans. We veto business-banishing tax hikes. We propose reforms to end job-… https://t.co/XHRKkqw2ja +06/20/2018,Politicians,@GovRauner,"Est. 38K people in Illinois are living with HIV, but we don’t want anybody in Illinois to become infected with HIV/… https://t.co/TLK7En3byN" +06/20/2018,Politicians,@GovRauner,Special recognition to Uncle Remus Saucy Fried Chicken and 50 yrs of great food. Their specialty is second chances.… https://t.co/NyhMB5vGBT +06/20/2018,Politicians,@GovRauner,One of the best ways to honor #Juneteenth2018 is by recognizing the accomplishments of Illinois’ African American b… https://t.co/0uQZrqf2Ni +06/19/2018,Politicians,@GovRauner,DPI will spawn innovation hubs throughout our state university system. It will work with thousands of students ever… https://t.co/QhDAQzGcP8 +06/19/2018,Politicians,@GovRauner,First corporate partner for DPI is Peoria-based OSF HealthCare. They are sponsoring an interdisciplinary course tha… https://t.co/XWCdEuLEGt +06/19/2018,Politicians,@GovRauner,"Powerhouse research partners. U of I System, U of Chicago, Northwestern and, announced today, Tel Aviv U. Missions… https://t.co/TdatTNhpan" +06/19/2018,Politicians,@GovRauner,"DPI students, faculty, business partners will research world changing ideas that investors will put money behind to… https://t.co/3zMNoNn94i" +06/19/2018,Politicians,@GovRauner,"The 78 will be home to the Institute, projected eventually to cover 1 million sq. ft. on Related Midwest’s 62-acre… https://t.co/xAFY1X6FAu" +06/19/2018,Politicians,@GovRauner,All systems ‘go’ for Discovery Partners Institute. State secured funding of $500m accelerates research and economic… https://t.co/0dZEFFzBAW +06/18/2018,Politicians,@GovRauner,"RT @ILMansion: Congratulations to Justin Blandford, who begins his new role as Governor's Mansion Curator today! His unmatched expertise wi…" +06/18/2018,Politicians,@GovRauner,"Today, we recognized Savanna High valedictorian, U of I engineer, Navy aviator, and jet-packing astronaut Dale Gard… https://t.co/3sn1NonfjG" +06/17/2018,Politicians,@GovRauner,A #FathersDay wish. May we all be blessed with a dad or father figure we can believe in … and believes in us. +06/17/2018,Politicians,@GovRauner,"It’s a Father’s Day scorcher out there, Illinois. Heat advisory in effect until 7pm Monday. Be sure to drink plenty… https://t.co/iUjmQ04eQS" +06/16/2018,Politicians,@GovRauner,RT @ILFirstLady: 4 years ago Bruce & I made a promise to restore the Governor’s mansion and bring the People’s House into the 21st century… +06/15/2018,Politicians,@GovRauner,"We’re going to keep fighting to save lives. If you or someone you know needs help, call 1-833-2FINDHELP. Trained op… https://t.co/Kvb3Rrie2L" +06/15/2018,Politicians,@GovRauner,"The opioid task force, led by @LtSanguinetti, along with a boost from $2B Medicaid waiver to address substance abus… https://t.co/H7zxOMUeA4" +06/15/2018,Politicians,@GovRauner,44 opioid-related deaths in Peoria in 2017. The opioid epidemic is affecting every community and every demographic… https://t.co/VcwiDURepQ +06/15/2018,Politicians,@GovRauner,"$5 million for the University of Illinois Extension Services to help with education in food safety, workforce preparedness and more." +06/15/2018,Politicians,@GovRauner,"92 county fairs across Illinois $54,000 each to showcase Illinois’ number one industry – agriculture. https://t.co/OamXoBJJMF" +06/15/2018,Politicians,@GovRauner,"97 soil and water conservation districts will receive another $6 million from the FY18 budget. About $61,000 for each district." +06/15/2018,Politicians,@GovRauner,"We are excited to announce $16 million in new funding for our soil & water conservation districts, our county fairs… https://t.co/xW9scFtjSM" +06/14/2018,Politicians,@GovRauner,"Did you know 86% of @WIUQuadCities students are from Illinois? Great seeing so many today to talk about education,… https://t.co/OPGIkqOSdE" +06/14/2018,Politicians,@GovRauner,Can’t think of a more perfect day than #FlagDay to acknowledge 13-year-old Liam Wilcox’s incredible accomplishment!… https://t.co/iOm9uyBAqt +06/14/2018,Politicians,@GovRauner,"Every two seconds, someone in the U.S. needs blood. It’s #WorldBloodDonorDay so roll up a sleeve and donate. You ne… https://t.co/AZv32qUeii" +06/14/2018,Politicians,@GovRauner,Nearly 1M Illinoisans work in our agriculture industry and @IllinoisFFA is helping develop the most important “crop… https://t.co/jbnm46s3pV +06/13/2018,Politicians,@GovRauner,"U of I is one of Illinois’ most important assets, a global source of talent for the global economy. Today, we met t… https://t.co/2FL7kbzotK" +06/13/2018,Politicians,@GovRauner,"Born here in 1906, @MarathonPetroCo is a leader in the oil refining industry. We need more companies like Marathon… https://t.co/8lUBZJMIzf" +06/12/2018,Politicians,@GovRauner,"There is absolutely NO place for harassment, sexual or otherwise, in government or anywhere…and victims should neve… https://t.co/Gp4o2xwGtc" +06/12/2018,Politicians,@GovRauner,"RT @Suntimes: More than ever, Springfield’s corrupt old ways have to end, writes @GovRauner. https://t.co/86UeTWeNWp" +06/12/2018,Politicians,@GovRauner,"Manufacturing is a huge part of our economy, which is why it’s so important that we cut regulatory burdens on job c… https://t.co/fr9TUxb8mN" +06/12/2018,Politicians,@GovRauner,"RT @jasonbarickman: “This is a major step toward finally changing a toxic climate that has existed for far too long in Springfield... +--New…" +06/11/2018,Politicians,@GovRauner,"U.S. Air Force veteran Ivan Jackson was a man of rare quality. Husband, father, grandfather, great-grandfather, his… https://t.co/m676sfwJPS" +06/11/2018,Politicians,@GovRauner,"We’ve taken a step in the right direction. FY19 state budget provides record level of education funding, $1.5B curb… https://t.co/5Yi8EFe0cC" +06/10/2018,Politicians,@GovRauner,America was built on the hopes of immigrants who sailed to America in search of our unique brand of freedom and opp… https://t.co/s7BD9L12uz +06/10/2018,Politicians,@GovRauner,FY19 Budget: Economic growth is the path out of our fiscal mess. https://t.co/jOzS2yUTPj +06/10/2018,Politicians,@GovRauner,RT @nbcchicago: Governor Rauner signs bill expanding independence of ethics complaints https://t.co/wnDObGx8nV https://t.co/oeyospNogv +06/09/2018,Politicians,@GovRauner,While work still needs to be done I commended the members of the General Assembly who made this step forward possib… https://t.co/RwQk9gggJ1 +06/09/2018,Politicians,@GovRauner,"The Legislative Ethics Commission, which oversees investigations of claims against legislators & legislative staff,… https://t.co/XyU6lWmVtR" +06/09/2018,Politicians,@GovRauner,"The legislation is a step in the right direction, but lawmakers need to do more to help restore confidence in gover… https://t.co/wNLrID2MCI" +06/09/2018,Politicians,@GovRauner,#ICYMI Victims of #sexualharassment should not live in fear that the truth they tell will bring more pain into thei… https://t.co/OVF2VpGQLu +06/09/2018,Politicians,@GovRauner,"#IllinoisProud to join our Filipino American community at the 5th Annual @piyestapinoy, the largest outdoor Filipin… https://t.co/Urrx8YkzkQ" +06/09/2018,Politicians,@GovRauner,"2.2 million Latinos call Illinois home. Illinois’ League of United Latin American Citizens, the country’s oldest an… https://t.co/ojhoPJ1zj1" +06/08/2018,Politicians,@GovRauner,"Still work to do, 2 flaws to correct. Legislative inspector general should not need the legislature’s approval to i… https://t.co/rmAjEtrlQ4" +06/08/2018,Politicians,@GovRauner,"W/ new law, those who have been subject to sexual harassment can now have greater confidence that the investigatory… https://t.co/kBnf3WAiDF" +06/08/2018,Politicians,@GovRauner,"Signed law today to bring independence, transparency to legislative sexual harassment investigations. Victory for t… https://t.co/c8xZXLvvdi" +06/08/2018,Politicians,@GovRauner,FY19 Budget: $500 million to U of Illinois for Discovery Partners Institute. This will help Illinois become the nex… https://t.co/uCZSOZxKIj +06/08/2018,Politicians,@GovRauner,"75th St. Corridor project involves federal, state, county, city, regional transportation agencies, and America’s ra… https://t.co/RN8icXdtCW" +06/08/2018,Politicians,@GovRauner,"RT @USDOT: Illinois @GovRauner accepts #INFRA Grant of more than $130 million for the Chicago area, saying: ""Transportation Drives the Pros…" +06/08/2018,Politicians,@GovRauner,Great news for shippers and commuters. US Transportation Secretary Chao makes it official. Illinois to get $132 mil… https://t.co/4PHt9rMwkl +06/08/2018,Politicians,@GovRauner,MAJOR rail infrastructure announcement today. Watch LIVE! Visit https://t.co/WnuFw9sOC1 at 12:00pm CST.… https://t.co/NvswOONuV3 +06/07/2018,Politicians,@GovRauner,Manufacturing innovation goes live at @mHUBChicago. Great example of how STEM and CTE proficiencies are leading us… https://t.co/w6E93KNjkx +06/07/2018,Politicians,@GovRauner,FY19 Budget: Thanks to the General Assembly for living up to its promise and including $53 million for Quincy Veter… https://t.co/YPOQKVCgBR +06/07/2018,Politicians,@GovRauner,Mexico is an important Illinois business partner … $22 billion in total imports/exports 2017. Talked today with Dep… https://t.co/WX5xHIaLBp +06/07/2018,Politicians,@GovRauner,Can’t think of a better way to spend a Wednesday night than welcoming home veterans from their Honor Flight. A grea… https://t.co/Sf1xOyCgTZ +06/06/2018,Politicians,@GovRauner,On this day we pause to reflect on the greatest generation and the battle they waged to win the freedoms we enjoy.… https://t.co/4szJgJEJfZ +06/06/2018,Politicians,@GovRauner,"Israeli Ambassador to US Ron Dermer dropped by today to talk commerce, growth industries, university partners, abid… https://t.co/CS02HigCxR" +06/06/2018,Politicians,@GovRauner,Cut the ribbon on new Joliet Gateway Center Train Station. The new station increases safety and eases congestion. N… https://t.co/zEhhe9c9s8 +06/06/2018,Politicians,@GovRauner,FY19 Budget: Historic new adoption tax credit to help ease financial burden of adopting children. https://t.co/l1SBRI7rZs +06/05/2018,Politicians,@GovRauner,"Major steps taken these last few weeks. FY19 budget signed with #NoNewTaxes, $11B for roads and bridges and more. S… https://t.co/f4qpRIcncj" +06/05/2018,Politicians,@GovRauner,"New IDVA Director Brigadier General Stephen Curda will oversee the project. Veteran of Afghanistan and Iraq, he’s a… https://t.co/ar5DAxfog0" +06/05/2018,Politicians,@GovRauner,$53M from FY19 budget launches new world-class veterans facility in Quincy. Things get underway Friday with purchas… https://t.co/QHjTJFlPaZ +06/05/2018,Politicians,@GovRauner,FY19 Budget: Education is our priority; we have upped K-12 money by $1.4B since I came to office. https://t.co/EhjowfE1ia +06/05/2018,Politicians,@GovRauner,RT @SenBillBrady: I'm proud we were able to pass a workable balanced budget that does not rely on increasing the tax burden on Illinois' re… +06/05/2018,Politicians,@GovRauner,"A modern, efficient transportation system is essential to our quality of life and Illinois’ success within the glob… https://t.co/tNxW36Gx6c" +06/05/2018,Politicians,@GovRauner,Today we announce $241M investment in Illinois’ freight system. 23 projects will receive grants to improve our stat… https://t.co/FUOm6hyplz +06/04/2018,Politicians,@GovRauner,FY19 Budget: Balance in reach because we put a halt to $1.5B in spending. https://t.co/czkR5X7VdZ +06/04/2018,Politicians,@GovRauner,"Today’s bill signing demonstrates that we can put the people of Illinois ahead of all other concerns. So, on their… https://t.co/RoNT9skoHe" +06/04/2018,Politicians,@GovRauner,"Finally, the legislature agreed to fund our request to fund back pay for state employees. This is a fairness issue… https://t.co/1RCeJbhQLo" +06/04/2018,Politicians,@GovRauner,The General Assembly lived up to its promise on the Quincy Veterans Home. $53M in this budget to get us underway wi… https://t.co/hWajH9Awic +06/04/2018,Politicians,@GovRauner,"With this budget, we have begun addressing our pension costs. By making some modest reforms we will save $445M and… https://t.co/CmzllclwqY" +06/04/2018,Politicians,@GovRauner,$500M will be funded toward the Discovery Partners Institute initiative. DPI will cultivate the talent to work alon… https://t.co/nK69tEEi2v +06/04/2018,Politicians,@GovRauner,FY19 budget also includes measures that help reduce some of the financial barriers to adopting. Paving the way for… https://t.co/oHTLNxgt05 +06/04/2018,Politicians,@GovRauner,"Every child in Illinois deserves a quality education, no matter where or what school they attend. Budget fully fund… https://t.co/OdbjeujasR" +06/04/2018,Politicians,@GovRauner,"It’s not a perfect fiscal plan, but it’s a step in the right direction. My hope is that we continue the bipartisans… https://t.co/PXsiVEtFrM" +06/04/2018,Politicians,@GovRauner,"We set two fundamental goals for FY19: spend within our means and #NoNewTaxes. With this budget, we have an opportu… https://t.co/0NjhYutdn6" +06/04/2018,Politicians,@GovRauner,"Legislative leaders, sponsors, negotiators, members and staff together for FY19 budget signing. Balance in reach,… https://t.co/8PbfPhcImP" +06/04/2018,Politicians,@GovRauner,RT @craigrwall: The pen-ultimate preparation for then @GovRauner budget bill signing. @ABC7Chicago #twill https://t.co/S0dShsIBH4 +06/04/2018,Politicians,@GovRauner,"All flags have been lowered half-staff to salute Chicago Firefighter Juan Bucio, who dedicated his life to helping… https://t.co/fuXxM7HuTv" +06/03/2018,Politicians,@GovRauner,RT @SpeakerRyan: Illinois: 327 #OpportunityZones throughout 85 counties. @GovRauner→ “These zones include some of the most underserved area… +06/03/2018,Politicians,@GovRauner,Fairness is in Illinois’ DNA. Diana and I are proud to celebrate the work of @EqualityILL. Nothing is more importan… https://t.co/DQ6xNWKHeN +06/03/2018,Politicians,@GovRauner,RT @ILFirstLady: When Bruce and I started this journey we envisioned not just a home that belongs to the people but also a beacon of our hi… +06/02/2018,Politicians,@GovRauner,"Economic development and better opportunities begin with helping businesses start, stay and grow in Illinois. Check… https://t.co/JMAbvnkM4G" +06/02/2018,Politicians,@GovRauner,"On behalf of a grateful Nation, I am proud to proclaim June 2, 2018, as 126th Air Refueling Wing Day. The Wing live… https://t.co/xbZkLP85FY" +06/01/2018,Politicians,@GovRauner,"Pop the cork and cheers to 200 years with a glass of Bicentennial Rosé! 13 world-class producers from northern, sou… https://t.co/68Q4nLqCqJ" +06/01/2018,Politicians,@GovRauner,Got an update on WIU this afternoon from University President Dr. Jack Thomas. The school is doing a great job prep… https://t.co/CRXt89eEG1 +06/01/2018,Politicians,@GovRauner,"An incredible accomplishment by @IDOT_Illinois. Macomb Bypass initiative is smart, forward-thinking, and in tune wi… https://t.co/fPdsI6zUp5" +06/01/2018,Politicians,@GovRauner,IL businesses are using the web to succeed more than ever - growing jobs and boosting our economy. Google just anno… https://t.co/UgfGdTaKp4 +06/01/2018,Politicians,@GovRauner,"Waiting until our roads and bridges crumble is expensive, inefficient and unsafe. This summer we are taking action… https://t.co/X5QDZ7N5ou" +06/01/2018,Politicians,@GovRauner,"Exciting day! Just cut the ribbon on the new Northwest Macomb Bypass. It brings much needed traffic relief, connect… https://t.co/mNEuNglQSC" +05/31/2018,Politicians,@GovRauner,"(4/4) We worked together to provide a budget to the people of Illinois that can be balanced, with hard work and con… https://t.co/sxIryHWet7" +05/31/2018,Politicians,@GovRauner,"(3/4) It’s a step in the right direction, though it does not include much-needed debt paydown and reforms that woul… https://t.co/HDhO4j3yC8" +05/31/2018,Politicians,@GovRauner,(2/4) We started this year’s budget process with the common-sense goals of a full-year balanced budget and no new t… https://t.co/YLXox9RrOZ +05/31/2018,Politicians,@GovRauner,(1/4) The Fiscal Year 2019 budget is the result of bipartisan effort and compromise. I’ll be taking action quickly… https://t.co/jKJwSjSo4t +05/30/2018,Politicians,@GovRauner,"Two weeks ago, School Resource Officer Mark Dallas prevented an unspeakable tragedy at Dixon High School. Urge your… https://t.co/kwhtGBABFN" +05/30/2018,Politicians,@GovRauner,Officer Dallas’ response at Dixon High is an example of why we need resource officers in our schools. Thanks to him… https://t.co/WguTtCwf41 +05/30/2018,Politicians,@GovRauner,"Two weeks ago, School Resource Officer Mark Dallas prevented an unspeakable tragedy. When a gunman opened fire at D… https://t.co/Nw2T7o1ysw" +05/29/2018,Politicians,@GovRauner,Good meeting with Consul General Federico Palomera and Ambassador Pedro Morenes Eulate of Spain. Spain is an $800M… https://t.co/bhQOAwOvUz +05/29/2018,Politicians,@GovRauner,Sad to hear of the tragic passing of Firefighter Juan Bucio. It takes incredible courage to put one’s safety on the… https://t.co/1oAbb7FBuY +05/29/2018,Politicians,@GovRauner,"A modern, efficient transportation system is essential to Illinois’ economy. This plan improves our roads and bridg… https://t.co/hXtWdkzLnO" +05/29/2018,Politicians,@GovRauner,"Over time, this forward-thinking strategy means big savings that we can reinvest in other important infrastructure projects. #BuildIllinois" +05/29/2018,Politicians,@GovRauner,"The plan is a big change in strategy. Abandoning worst-first strategy in favor of smaller, more timely repair and p… https://t.co/dSSLRf2bvK" +05/29/2018,Politicians,@GovRauner,"Construction on The McClugage Bridge begins in FY19. New bridge will reduce congestion, improve traffic flow, incre… https://t.co/zgquuzEn5q" +05/29/2018,Politicians,@GovRauner,Announced an $11B investment in Illinois roads and bridges this morning. The 6-year program starts this summer with… https://t.co/KzW5gCrqHZ +05/28/2018,Politicians,@GovRauner,"We are able to enjoy this holiday, our freedom and safety because of the ultimate sacrifices made by our military s… https://t.co/CysVEw9usE" +05/28/2018,Politicians,@GovRauner,"Nearly 27,000 Illinoisans gave their lives during the WWII, Korean and Vietnam Wars. It is with reverence and overw… https://t.co/tJz2UxJebo" +05/28/2018,Politicians,@GovRauner,Great to be back at the American Legion Post 32 today. Always a wonderful time. https://t.co/37nzVeHBU9 +05/28/2018,Politicians,@GovRauner,So great to come home after a ride. Renovations on the @ILMansion are moving along. 7 weeks until doors open to the… https://t.co/cDBHDDb4x4 +05/27/2018,Politicians,@GovRauner,"There is no room for intolerance in our state, our society. Thank you to the volunteers for clearing the markers. I… https://t.co/TBxMEaiZoq" +05/27/2018,Politicians,@GovRauner,Watching dirt fly this beautiful Sunday at the prestigious 2018 Harley-Davidson @SpringfieldMile. The Illinois Stat… https://t.co/vysWzbyE7A +05/26/2018,Politicians,@GovRauner,Today we show our unending gratitude to the heroes who have given their lives for our country. The Spaulding Vetera… https://t.co/UD8vt994Ga +05/26/2018,Politicians,@GovRauner,RT @ILFirstLady: Did you know the last major renovation of the @ILMansion happened in the 1970s! Now we’re just weeks away from opening the… +05/26/2018,Politicians,@GovRauner,It is said our flag does not fly by the wind. It flies with the last breath of each soldier who died protecting it.… https://t.co/oE8ycqUcku +05/25/2018,Politicians,@GovRauner,"Safe travels this #MemorialDayWeekend, Illinois. Millions are expected to hit the road. So buckle up, stay alert an… https://t.co/JAlUxx4E34" +05/25/2018,Politicians,@GovRauner,Sign up for our newsletter. Stay up to date on the advances we are making for Illinois. Visit:… https://t.co/nZyz29OKAk +05/25/2018,Politicians,@GovRauner,"ICYMI -- Precedent-setting month for Illinois. Mental health advances, public safety, tough new corruption penalty… https://t.co/2JLD1aheBh" +05/25/2018,Politicians,@GovRauner,We agree with Representatives Costello and Bryant. Mass murder and killing police officers and firefighters are cri… https://t.co/WJpwxNYbxw +05/25/2018,Politicians,@GovRauner,"Precedent-setting month for Illinois. Mental health advances, public safety, tough new corruption penalty proposals… https://t.co/UUMSLZNohM" +05/24/2018,Politicians,@GovRauner,"Illinois aviation industry helps our economy take flight, supports 330K+ jobs and generates more than $40B in annua… https://t.co/K6hMghRYw6" +05/24/2018,Politicians,@GovRauner,"Had the pleasure of meeting @megbugg and her family at the Capitol today. At 14, Megan was diagnosed with Stage 4 c… https://t.co/1X5otSeyrx" +05/24/2018,Politicians,@GovRauner,Our heroes stand up against danger to keep us safe. Their sacrifice grants us the gift of freedom and allows us to… https://t.co/JM6DVNWb1d +05/23/2018,Politicians,@GovRauner,"Drivers, as summer traffic heats up, pay special attention to vehicles on the road and off. Slow down, safely switc… https://t.co/Nj3geJXiOJ" +05/23/2018,Politicians,@GovRauner,RT @WCIA3Raquel: .@kmcconnaughay33 says the current legislative investigative process is like the “fox watching the henhouse.” She says Mad… +05/23/2018,Politicians,@GovRauner,People should have the power to decide to use local tax money to pay for school resource officers and mental health… https://t.co/bpKnvcxUBy +05/23/2018,Politicians,@GovRauner,"Our public safety plan secures targets, disarms the dangerous, puts the illegal gun trade on notice, brings transpa… https://t.co/IzqYaIw5qf" +05/23/2018,Politicians,@GovRauner,"Public safety requires an all-out effort to control crime, not restrict the rights of law abiding citizens. We’ve g… https://t.co/Sfi5N889Vf" +05/22/2018,Politicians,@GovRauner,RT @LtSanguinetti: I support @RepKellyCassidy and her efforts to end sexual harassment and intimidation in Illinois politics. #twill +05/22/2018,Politicians,@GovRauner,This kind of corruption is what I fight every day. Retaliation against Rep. Kelly Cassidy for standing with a victi… https://t.co/CS3F8lp5jb +05/22/2018,Politicians,@GovRauner,"RT @MaryAnnAhernNBC: REACTION to Speaker Madigan asking the IG to investigate @RepKellyCassidy’s allegations of retaliation: +From @kmcconna…" +05/22/2018,Politicians,@GovRauner,"$65B of Illinois products sold internationally last year. Global business is key to state economy. Nearly 1,900 for… https://t.co/Js90EWVCng" +05/22/2018,Politicians,@GovRauner,"Students are a buzz at Dubois, 1 of 25 schools selected for the Illinois Math and Science Academy’s 3-year STEM Fus… https://t.co/ef206xNFeF" +05/22/2018,Politicians,@GovRauner,RT @ILFirstLady: Looks like Stella loves the new place! https://t.co/d8E61frnpg +05/21/2018,Politicians,@GovRauner,"There is more to our public safety plan. We want to go after illegal guns, cross-border gun traffic; deploy more tr… https://t.co/M2yy9SSgoE" +05/21/2018,Politicians,@GovRauner,“Death penalty murder” is not about $s. It is about a sense of justice for victims. #PublicSafetyIL +05/21/2018,Politicians,@GovRauner,Public safety is not about politics & it cannot be achieved one gun or one penalty at a time. Keeping people safe i… https://t.co/pcheCipf1K +05/21/2018,Politicians,@GovRauner,"Our public safety plan is sensible, responsible: 72-hour wait on all guns, bump stock ban, school resource officers… https://t.co/JjZw762Ic2" +05/21/2018,Politicians,@GovRauner,Death penalty for mass murderers and killers of peacekeepers only if found guilty beyond ALL doubt. Need higher sta… https://t.co/1IBExP6dNb +05/21/2018,Politicians,@GovRauner,Majority of Americans favor the death penalty (Gallup 2017). In cases of mass killings support rises. It is a matte… https://t.co/RbWhKQfMHn +06/30/2018,Politicians,@SenatorLeahy,Whenever I am at our home in Vermont I get up early just to see the nature around. Sometimes it is deer in the fiel… https://t.co/JyNmmZDhVj +06/30/2018,Politicians,@SenatorLeahy,"Wow. Beautiful, and important in this troubling moment. Vermonters today have also strongly added their voices. https://t.co/aNtk1OA727" +06/30/2018,Politicians,@SenatorLeahy,"Bless them all. Thanks to them, and you. A sickening time. https://t.co/tmexoslNPg" +06/30/2018,Politicians,@SenatorLeahy,"RT @alexsilbermanvt: Traffic stopped on S. Winooski Ave. as hundreds, if not over a thousand, demonstrators march towards Battery Park. #BT…" +06/30/2018,Politicians,@SenatorLeahy,"RT @paxperscientiam: #FamiliesBelongTogetherMarch + +#FamiliesBelongTogether #vtpoli #btv https://t.co/BADFFfZmSG" +06/30/2018,Politicians,@SenatorLeahy,RT @EricEvenson: #FamiliesBelongTogether March in #BTV today - so glad we took part! https://t.co/M5wRSthbIC +06/30/2018,Politicians,@SenatorLeahy,RT @BaileyAnneBrave: In the streets for human rights in #Burlington #Vermont. #BTV #KeepFamiliesTogether https://t.co/0vKG74NWqZ +06/30/2018,Politicians,@SenatorLeahy,RT @exocited: #familiesbelongtogetherVT It's been about 15 years since I saw a turnout like this in #BTV https://t.co/zRqYDMMucL +06/30/2018,Politicians,@SenatorLeahy,RT @alexsilbermanvt: Hundreds of people packed into the courtyard to hear speakers before the start of #KeepFamilesTogether March in Burlin… +06/30/2018,Politicians,@SenatorLeahy,A Vermonter today. The Trump Adminstration's purposeful cruel and cynical family separations must end. Vermonters a… https://t.co/TyYCmy4piz +06/30/2018,Politicians,@SenatorLeahy,"Vermonters, with Americans across the nation, know that the Trump family separations are cruel, they are abhorrent,… https://t.co/jkBQmm6VTU" +06/29/2018,Politicians,@SenatorLeahy,"RT @CrankyQuilter: @SenatorLeahy @PattyMurray Thank you, Senator. I live my life in that zone and it has never been an issue until now. As…" +06/29/2018,Politicians,@SenatorLeahy,I made it clear today in my speech today that I am concerned that anyone who passes Pres. Trump’s litmus tests for… https://t.co/lJIE2gJnzm +06/29/2018,Politicians,@SenatorLeahy,I told the @VermontLaw Restorative Justice Conference about the $3m I included in FY 19 funding for a new National… https://t.co/clBWxPjWBZ +06/29/2018,Politicians,@SenatorLeahy,"RT @KBLVT: @kylegriffin1 @SenSanders @VermontSOS @MSNBC @SenatorLeahy @ACLU Thanks for introducing this important legislation, Sens Leahy &…" +06/29/2018,Politicians,@SenatorLeahy,RT @WVNYWFFF: Leahy: Cut border checkpoint 'zones' from 100 miles to 25 miles https://t.co/QUMbTmY8f0 +06/29/2018,Politicians,@SenatorLeahy,"For too long, Congress relied on mandatory minimums to ‘solve’ every public safety concern. Yet one-size-fits-all s… https://t.co/95H82QFL5h" +06/29/2018,Politicians,@SenatorLeahy,I’ve been looking forward to addressing this great audience today at @VermontLaw #RestorativeJustice Conference at… https://t.co/7smqoCl269 +06/29/2018,Politicians,@SenatorLeahy,RT @VTLawSchool: “One size does not fit all.” @SenatorLeahy on #justicereform and #restorativejustice at the International Restorative Just… +06/29/2018,Politicians,@SenatorLeahy,RT @ReneeMyNBC5: “I have never seen a president treat the court-the independent Supreme Court-as an arm of the White House.” @SenatorLeahy… +06/29/2018,Politicians,@SenatorLeahy,News Backgrounder: Vermont Highlights In The 5-Year Farm Bill Passed Thursday Night By The U.S. Senate https://t.co/4C9ttP2GRn +06/29/2018,Politicians,@SenatorLeahy,"RT @cvt_staff: CVT is grateful to @RoyBlunt @SenatorLeahy and @PattyMurray for their important work toward increased funding, which is so n…" +06/29/2018,Politicians,@SenatorLeahy,"RT @UVMLarnerMed: Though once in the headlines for its residents' #opioid #addiction , #VT & #UVM are now at the forefront of treatment w/t…" +06/29/2018,Politicians,@SenatorLeahy,"I support this, and I’m a cosponsor of the Senate bill, S.422. https://t.co/cYFlzqx1q4" +06/29/2018,Politicians,@SenatorLeahy,RT @VTsNEK: The Clearest Lake In Vermont Is Almost Too Beautiful To Be Real https://t.co/XdcpbNPG5Y +06/29/2018,Politicians,@SenatorLeahy,"RT @KathLusk: When I interned for @SenatorLeahy two decades ago, I was paid. That summer he had 4 undergrads & 1 law intern in his DC offic…" +06/29/2018,Politicians,@SenatorLeahy,"Hello. I invite you to follow my work and statements and photos on these and other issues on my Twitter, Instagram… https://t.co/uZNDlvCh3k" +06/29/2018,Politicians,@SenatorLeahy,"RT @UMR4NIH: Thank you @SenatorLeahy for your leadership, support for medical research & vote to #keepNIHstrong #FY19 https://t.co/HyrtpRWm…" +06/29/2018,Politicians,@SenatorLeahy,"RT @emhew: If you live in Vermont, you probably live within the 100-mile zone where border agents have broad authority to carry out warrant…" +06/28/2018,Politicians,@SenatorLeahy,RT @civilrightsorg: Our executive vice president Kristine Lucius is outside #SCOTUS right now rallying to #SaveSCOTUS: No one who has earne… +06/28/2018,Politicians,@SenatorLeahy,Proud to work with and support @pattymurray on this... https://t.co/qp1N67O8tx +06/28/2018,Politicians,@SenatorLeahy,RT @taylordobbs: A new bill from @SenatorLeahy and @PattyMurray would shrink the zone near borders where feds are allowed to conduct warran… +06/28/2018,Politicians,@SenatorLeahy,"The “border zone” extends 100 miles from our land/sea borders, reaching 2/3 of all Americans. Yet the 4th Amendment… https://t.co/NGuXmrjjFh" +06/28/2018,Politicians,@SenatorLeahy,"“Show me your papers”—words you should never hear once inside the US. Immigration officials consider Burlington, Wh… https://t.co/y9yUaCmEa9" +06/28/2018,Politicians,@SenatorLeahy,RT @mcquiston: Leahy leads charge to research alternatives to opioids for chronic pain | Vermont Business Magazine https://t.co/pGks2IPKR7 +06/28/2018,Politicians,@SenatorLeahy,RT @VNewsUV: NEW: @SenatorLeahy has filed a bill to curb interior traffic stops by Customs and Border Protection agents without a warrant.… +06/28/2018,Politicians,@SenatorLeahy,"Vital, lifesaving work that we MUST invest in...for this & future generations. You can't just turn complex cutting-… https://t.co/zuRugviGjl" +06/28/2018,Politicians,@SenatorLeahy,Chants of “We Care!” echoing in the U.S. Senate Capitol complex right now in defense of and advocacy for relief for… https://t.co/gpMEuXpJfI +06/28/2018,Politicians,@SenatorLeahy,Leahy And @PattyMurray Introduce Legislation To Limit Warrantless Vehicle Stops And Property Searches Near The Bord… https://t.co/nZHxFb67HG +06/28/2018,Politicians,@SenatorLeahy,Leahy Leads Charge To Research Alternatives To Opioids For Chronic Pain Through Defense Department Health Program… https://t.co/I0CxqNU7dQ +06/28/2018,Politicians,@SenatorLeahy,Leahy Guides Creation Of National Centers To Address Rural Addiction Through The Senate Appropriations Committee… https://t.co/n6FUjizf7J +06/28/2018,Politicians,@SenatorLeahy,"I have never seen a White House, working with its enablers in Congress, so cynically, disgracefully and inappropria… https://t.co/U7tGpW7q99" +06/28/2018,Politicians,@SenatorLeahy,If House Republicans hold either FBI Director Wray or Deputy Attorney General Rosenstein in contempt it would only… https://t.co/pNUlxZJTHj +06/28/2018,Politicians,@SenatorLeahy,Thanks for checking Patty. And follow me on Twitter as this develops... https://t.co/CUrokHooa1 +06/28/2018,Politicians,@SenatorLeahy,Hi Patty. Have you been reading my statements and following my comments on Twitter on this? ... https://t.co/sWFaU0IVfj +06/28/2018,Politicians,@SenatorLeahy,"RT @Yamiche: Sen. Leahy: Can you give me 1 example of terrorism by a DACA recipient? +Chad Readler of DOJ: No I can't. +Leahy: Neither can J…" +06/28/2018,Politicians,@SenatorLeahy,"President Trump should also reflect on Justice Kennedy’s legacy, and select a nominee who will be a fair-minded, in… https://t.co/jmH3SsGGVP" +06/28/2018,Politicians,@SenatorLeahy,Pres. Trump should listen to the voices of millions of concerned Americans worried that they are on the verge of lo… https://t.co/BsNVF1ZaHE +06/28/2018,Politicians,@SenatorLeahy,"President Trump should use this time to do what President Obama did: Find a mainstream, consensus nominee who would… https://t.co/2B6JS3fzHw" +06/28/2018,Politicians,@SenatorLeahy,There is no justification for rushing this process. Every Republican embraced the #McConnellStandard last Congress… https://t.co/F72HdJiA5E +06/28/2018,Politicians,@SenatorLeahy,"I did not agree with many of Justice Kennedy’s opinions, but I respected his willingness to recognize the rights of… https://t.co/lhFeYMDGD1" +06/28/2018,Politicians,@SenatorLeahy,RT @Alexruoff: Some chamber-shade in today's Senate Def-LHHS markup. Patrick Leahy praising the bipartisan work that went into the def and… +06/28/2018,Politicians,@SenatorLeahy,"I support this, and I’m a cosponsor of the Senate bill, S.422. H.R.299 is being hotlined for Senate action… https://t.co/8G9Li7EM2D" +06/28/2018,Politicians,@SenatorLeahy,Looking forward to being with you all tomorrow... https://t.co/Rq0AERk2WO +06/28/2018,Politicians,@SenatorLeahy,"RT @LindseyGrahamSC: Hearing on @StateDept budget with @SecPompeo. + +WATCH LIVE: https://t.co/i911WRp7ax" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) Sat in on the senator’s meeting with Bill Gates this afternoon. I heard about how the Bill & Melinda Gates… https://t.co/6yWNDTHavy +06/27/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: Good call. https://t.co/zxuRWa5oIL +06/27/2018,Politicians,@SenatorLeahy,BREAKING: REAX Of Senator Patrick Leahy On Justice Kennedy’s Announcement Of His Decision To Retire From The Suprem… https://t.co/ghfm4oaUAk +06/27/2018,Politicians,@SenatorLeahy,Just so you know: I steered thru Judiciary Committee & Senate the 2013 Comprehensive Immigration Reform pkg that in… https://t.co/ngLmqyATCQ +06/27/2018,Politicians,@SenatorLeahy,"(Jack:) After our brown bag lunch with the senator just now, he took us Leahy Interns and Fellows for a stroll to t… https://t.co/d1EC6trjeg" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) More quality time with the senator today for our brown bag lunch earlier with Leahy Interns and Law Clerks.… https://t.co/Tkal60QFuR +06/27/2018,Politicians,@SenatorLeahy,"RT @pleasesaveour: We this is hopeful @AliVelshi +Leahy: Senate appropriations process 'a dose of sanity' - VTDigger https://t.co/ov4WTyDZLc…" +06/27/2018,Politicians,@SenatorLeahy,"RT @vtdigger: The U.S. Senate advanced its first appropriations bills for the next fiscal year with strong bipartisan support +https://t.co/…" +06/27/2018,Politicians,@SenatorLeahy,Thanks. I agree & this was a high priority for me in writing the annual SFOPS Approps Bill. As ranking member there… https://t.co/4145LEdx3Y +06/27/2018,Politicians,@SenatorLeahy,"We had a good meeting today in the Capitol with King Abdullah of Jordan, and with Queen Rania...one of many meeting… https://t.co/1pcEEYjj7w" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) We’re in transit from the Capitol to the Russell Building. Senator Leahy is joking with staff in front of… https://t.co/QXlkuhi5j3 +06/27/2018,Politicians,@SenatorLeahy,"Congrats to former @UVMmHockey star @mstlouis_26, who will be inducted into the @HockeyHallFame 25 years after firs… https://t.co/aOoGz7NNXT" +06/27/2018,Politicians,@SenatorLeahy,RT @MinorHeretic: @SenatorLeahy My sister interned w/Senator Leahy decades ago and a friend’s daughter just last year. Both had a wonderful… +06/27/2018,Politicians,@SenatorLeahy,"RT @LamyJ: @SenatorLeahy one key word here -- ""PAID"" 👏 boss for continuing to make these opportunities possible for students. Lots of Lea…" +06/27/2018,Politicians,@SenatorLeahy,"(Jack:) And another, with the King and Queen https://t.co/L6aeMF4ReB" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) I’m starting my “shadow”day in the Capitol with Senator Leahy as he (as Vice Chair) and Approps Chair Shelb… https://t.co/PuVhDVqXZS +06/27/2018,Politicians,@SenatorLeahy,RT @JayTilton: #ICYMI by @emhew @vtdigger: Leahy: Senate appropriations process ‘a dose of sanity’ https://t.co/nFrdW7GzEu +06/27/2018,Politicians,@SenatorLeahy,Today my intern Jack will shadow me to see what goes into representing #VT every day. Watch my account today for ph… https://t.co/hFlVskPOyZ +06/27/2018,Politicians,@SenatorLeahy,"RT @kathykiely: ""A strong bilateral relationship between the U.S. and Egypt must not be perceived ... as a blank check to silence the media…" +06/26/2018,Politicians,@SenatorLeahy,RT @VT_FEED: The first full day of the Northeast Farm to School Institute workshops are wrapping up! Looking forward to @anson_ag; staff fr… +06/26/2018,Politicians,@SenatorLeahy,"RT @vprnet: 🙋‍♂️ @SenatorLeahy on #TravelBan ➡️ + +“It’s not a question of protecting us, it's anti-American, we should be spending our time,…" +06/26/2018,Politicians,@SenatorLeahy,"RT @vprnet: Sen. Leahy Discusses Family Separation, Trump's Trade Tariffs https://t.co/fnEhamyC34 @vermontedition https://t.co/LdGzK15wWi" +06/26/2018,Politicians,@SenatorLeahy,"RT @vermontedition: On family separation at the southern border @SenatorLeahy says to make change, protests are necessary around the count…" +06/26/2018,Politicians,@SenatorLeahy,BREAKING: Leahy REAX On SCOTUS Decision Upholding President Trump’s Travel Ban https://t.co/rPXuXttoA1 https://t.co/BcuTidIQzh +06/26/2018,Politicians,@SenatorLeahy,Those who aim to restrict the vote are firmly on the wrong side of history—and always have been. My Voting Rights… https://t.co/C41KATd45J +06/26/2018,Politicians,@SenatorLeahy,"No matter the setbacks—states pursuing discriminatory voting laws, inexcusable gerrymandering, recent court decisio… https://t.co/dBsjlmMLrR" +06/26/2018,Politicians,@SenatorLeahy,"RT @jacobsoboroff: You, only you, systematically separated kids from their parents — in many cases possibly permanently — and put them alon…" +06/25/2018,Politicians,@SenatorLeahy,Wow. Thanks Maggie... https://t.co/FyB6UAmBzN +06/25/2018,Politicians,@SenatorLeahy,"RT @BillieJeanKing: Many years ago, I testified on Capitol Hill on behalf of #TitleIX, to help girls and women advance in their sport. Toda…" +06/25/2018,Politicians,@SenatorLeahy,My most solemn duty is to uphold & defend the Constitution while representing the values of Vermonters. POTUS' call… https://t.co/xuUGdLsKt5 +06/22/2018,Politicians,@SenatorLeahy,"Comment of Senator Leahy On The Supreme Court’s Decision On Cell-Site Location Information, In Carpenter v. U.S.… https://t.co/w8dmFQ2rDB" +06/22/2018,Politicians,@SenatorLeahy,RT @OurOcean: The Trump administration just repealed the #NationalOceanPolicy. Here's what comes next... https://t.co/UKQVP0AyQB https://t.… +06/22/2018,Politicians,@SenatorLeahy,RT @IAVI: Sincerest thanks to the #Senate #SFOPS subcommittee members and the leadership of @SenatorLeahy and @LindseyGrahamSC for their co… +06/22/2018,Politicians,@SenatorLeahy,"Every time that Pres. Trump & his enablers tear apart a family, it weakens our nation’s social fabric, & it betrays… https://t.co/8KM3nHMJHd" +06/22/2018,Politicians,@SenatorLeahy,It’s an uplifting tonic to be able to congratulate these new Americans as they took their oath to our country and a… https://t.co/WVJFDL5Iv2 +06/22/2018,Politicians,@SenatorLeahy,Remarks Of Senator Leahy At Burlington Naturalization Ceremony https://t.co/RQ3lJ0a4Zh https://t.co/1xH5EeemLt +06/22/2018,Politicians,@SenatorLeahy,Proud to join with @SenBooker and others in introducing this bill in the Senate. https://t.co/QPYzbmplwX +06/22/2018,Politicians,@SenatorLeahy,In #VT I’m at the naturalization ceremony for 15 new Americans. As Trump continues his assault on immigrants & immi… https://t.co/pwj6aK6cCe +06/22/2018,Politicians,@SenatorLeahy,RT @jackie_pascale: Now at a naturalization ceremony where 15 people are becoming U.S. citizens. Sen. Patrick Leahy is also in attendance.… +06/22/2018,Politicians,@SenatorLeahy,".@SteveSchmidtSES I’m working on legislation to address this very issue, similar to what I and Senator @PattyMurray… https://t.co/AA3Xs3qcl9" +06/22/2018,Politicians,@SenatorLeahy,RT @theglobalfight: Thank you @SenatorLeahy for your leadership on #globalhealth funding and sustained support for the @GlobalFund! https:/… +06/22/2018,Politicians,@SenatorLeahy,"RT @barbarastarrcnn: Following Reports That Defense Department Is Sending Jags To Southern Border To Prosecute Immigration Cases, Senators…" +06/22/2018,Politicians,@SenatorLeahy,"RT @DianneG: Senators Ernst, Gillibrand & Leahy demand answers from Sec. Mattis on use of JAG attorneys on border +(Full letter attached) h…" +06/22/2018,Politicians,@SenatorLeahy,RT @Chip_Lyons: Thank you @LindseyGrahamSC and @SenatorLeahy for your continued commitment to the @PEPFAR program. Increased resources are… +06/22/2018,Politicians,@SenatorLeahy,"Whether due to its incompetence, deliberate cruelty, or both, the Trump Administration hastily tore more than 2,300… https://t.co/PUcIMN1zbK" +06/22/2018,Politicians,@SenatorLeahy,"Another senseless, cynical and dangerous travesty... https://t.co/bkCg2N07fC" +06/22/2018,Politicians,@SenatorLeahy,RT @thehill: Senators urge Mattis to stop using military lawyers to prosecute immigrants https://t.co/tqLSCqWfiG https://t.co/KX7lsGtPda +06/22/2018,Politicians,@SenatorLeahy,A principled conservative. RIP Charles. https://t.co/KeA4NZU9pu +06/21/2018,Politicians,@SenatorLeahy,Vermont's libraries are indispensable elements of our cultural legacy. I started my regular visits to the Kellogg-H… https://t.co/976qATPLOB +06/21/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Appropriations Vice Chair Leahy: Summary Of The Financial Services And General Government FY19 Appropriations Bill https… +06/21/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Appropriations Vice Chair Leahy: Summary Of The Department Of Homeland Security FY19 Appropriations Bill https://t.co/yM… +06/21/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: The Senate Appropriations Committee just passed my amendment with @SenatorLeahy that will deny U.S. visas to any Pakista… +06/21/2018,Politicians,@SenatorLeahy,RT @VTAgencyofAg: June Is Dairy Month: Help Support Your Local Dairy Farmers. Learn more: https://t.co/FrWzIoXEUd #ThinkVt #VtDairy https:/… +06/21/2018,Politicians,@SenatorLeahy,"RT @OswaldRachel: By a narrow vote of 16-15, Senate State-Foreign Operations appropriators adopt amendment allowing funding of UNFPA, repea…" +06/21/2018,Politicians,@SenatorLeahy,RT @UVMMedCenter: Sun Safety: Loving the Summer Sun without Getting Burned via @lewis_first https://t.co/ayBH3rwWkF #summer #vt #parenting +06/21/2018,Politicians,@SenatorLeahy,"RT @HorriganCaitlin: .@SenatorLeahy “We live in a time where the image of the US that historically protects human rights, nurtures alliance…" +06/21/2018,Politicians,@SenatorLeahy,RT @HealthGAP: Senator @LindseyGrahamSC and @SenatorLeahy should be applauded for leading the call to increase global HIV/AIDS funding by $… +06/21/2018,Politicians,@SenatorLeahy,"RT @elisacepstein: 2/ The Senate is marking up the FY19 State, Foreign Ops, and Related Programs bill today at 10:30AM. The Trump admin has…" +06/20/2018,Politicians,@SenatorLeahy,Today was my intern Ramsay’s one-on-one day. He shadowed me throughout my day on Capitol Hill to see what really go… https://t.co/wiTBVwh8UH +06/20/2018,Politicians,@SenatorLeahy,Pres. Trump’s “zero tolerance” policy needs to go. It makes zero sense to delay civil proceedings to criminally pro… https://t.co/eSlk6TJdXp +06/20/2018,Politicians,@SenatorLeahy,Indefinite incarceration of families is NOT the answer. I condemned incarceration of families during the Obama admi… https://t.co/eak5zDJT3G +06/20/2018,Politicians,@SenatorLeahy,"Today the American people, through their forceful and justified outrage, proved they can drive change even during t… https://t.co/9NV7CrP2vF" +06/20/2018,Politicians,@SenatorLeahy,RT @CourthouseNews: Senate Blocks Trump Plan to Cut $15B in Unused Spending https://t.co/gOaj7GylZ8 https://t.co/HRoIigNie5 +06/20/2018,Politicians,@SenatorLeahy,NEWS from Leahy and @GovPhilScott: President Nominates Retired Essex Police Chief To Be Vermont’s Next U.S. Marshal https://t.co/5qbKdk99dg +06/20/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: President Trump and his enablers in Congress have taken these children hostage to try to enact their anti-immigrant agen… +06/20/2018,Politicians,@SenatorLeahy,BREAKING: Comment Of Senator Patrick Leahy (D-Vt.) On President Trump's Reversal Of His Mandatory Family Separation… https://t.co/AwHypSr7Pq +06/20/2018,Politicians,@SenatorLeahy,REAX Of Appropriations Vice Chair Leahy To The Senate’s Vote Wednesday Afternoon Rejecting President Trump’s Rescis… https://t.co/XoUNfhthJm +06/20/2018,Politicians,@SenatorLeahy,"RT @VermontSOS: Today Sec. Condos and @SenatorLeahy announced VT's Receipt +Of $3m in Federal Election Security Funds: https://t.co/jigyGp0W…" +06/20/2018,Politicians,@SenatorLeahy,.@VermontSOS Jim Condos and Senator Patrick Leahy Announce Vermont’s Receipt Of $3 Million in Federal Election Secu… https://t.co/rszUuWqmoH +06/20/2018,Politicians,@SenatorLeahy,RT @VT_AHC: Thank you @SenatorLeahy for fighting for more federal resources to combat #VT's #affordablehousing shortage and #homelessness c… +06/20/2018,Politicians,@SenatorLeahy,RT @WaterAidAmerica: Thank you Senators @GrahamBlog @SenatorLeahy & @SenateApprops for supporting funding for #water #sanitation & #hygiene… +06/20/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Vice Chairman Of Appropriations Senator Patrick Leahy (D-Vt.) On President Trump’s Rescission Package https://t.co/6eBQD… +06/20/2018,Politicians,@SenatorLeahy,"A single mother in #Vermont, earning minimum wage, shouldn’t have to work 85 hours per week to afford a 2-bedroom a… https://t.co/HkJmC9QjPi" +06/19/2018,Politicians,@SenatorLeahy,RT @OurOcean: Thank you @SenatorLeahy for speaking out in favor of strong funding for @NOAA ocean programs in the CJS bill. Your commitment… +06/19/2018,Politicians,@SenatorLeahy,RT @WWConserve: How could the 2018 Farm Bill help #conservation in New England? @SenatorLeahy lays out the benefits of the Senate Agricultu… +06/18/2018,Politicians,@SenatorLeahy,"After a long day of watching Trump’s subordinates spin themselves dizzy defending this abhorrent policy, I have to… https://t.co/C95Tiw8tMw" +06/18/2018,Politicians,@SenatorLeahy,These are the heart-wrenching sounds of Pres. Trump’s family separation policy. This policy is a stain on the very… https://t.co/EVyB8vkrPp +06/18/2018,Politicians,@SenatorLeahy,Trump and his allies claim that family separation is required by law. That is a bald-faced lie. This is a Trump adm… https://t.co/dO2M082CCF +06/18/2018,Politicians,@SenatorLeahy,I just led a letter from all Judiciary Committee Democrats to Chairman Grassley asking that he immediately hold a h… https://t.co/uNnNhL0L8e +06/18/2018,Politicians,@SenatorLeahy,Trump claimed that the FBI using a ROUTINE confidential source during the Russia probe was a scandal bigger than Wa… https://t.co/jcy4TebE3D +06/18/2018,Politicians,@SenatorLeahy,"In response to my question, the IG confirmed that Pres. Trump has NO BASIS in claiming the IG report shows no collu… https://t.co/OKYcs0rttR" +06/18/2018,Politicians,@SenatorLeahy,Leahy Leads Judiciary Democrats In Letter To Grassley Calling For Hearing On President Trump's Family Separation Po… https://t.co/DUm4mQjGqz +06/18/2018,Politicians,@SenatorLeahy,Vermont Receives Increased Opioid Funding Through New Leahy-Negotiated Omnibus Formula https://t.co/kgBzn2IqVF https://t.co/nobXBuyyNV +06/18/2018,Politicians,@SenatorLeahy,I will be asking FBI Director Wray and IG Horowitz about the Justice Department Inspector General report on FBI act… https://t.co/P94OtHON0E +06/18/2018,Politicians,@SenatorLeahy,"Just learned that 2,342 children have now been torn away from their families as a result of President Trump’s famil… https://t.co/zPt3tmydhB" +06/16/2018,Politicians,@SenatorLeahy,FYI I'm an original cosponsor. https://t.co/mNLEP7qSr7 +06/16/2018,Politicians,@SenatorLeahy,Actually I'm an original cosponsor of Senator Feinstein's bill. I spoke again about it Thursday in the Judiciary… https://t.co/ORx16YYgy5 +06/16/2018,Politicians,@SenatorLeahy,"Our bill to stop this, sponsored by Senator Feinstein, continues to gather support -- EXCEPT, so far, from Senate R… https://t.co/xrX9EOgAug" +06/16/2018,Politicians,@SenatorLeahy,"RT @MarkWarner: ‘Since his arrival in Michigan, family members said, a day has not gone by when the boy has failed to ask in Spanish, “When…" +06/16/2018,Politicians,@SenatorLeahy,RT @SenFeinstein: President Trump was wrong again this morning when he said the law requires children to be taken from their parents at the… +06/16/2018,Politicians,@SenatorLeahy,RT @AgandFoodTeam: We're liking the Senate Agriculture Committe's version of the Farm Bill so far. Ready to see what happens next! @ChuckGr… +06/15/2018,Politicians,@SenatorLeahy,Leahy Announces Significant Funding Increases To Programs That Protect and Preserve Lake Champlain https://t.co/iqr7ubzlhP +06/15/2018,Politicians,@SenatorLeahy,Leahy Advances Creation Of National Center For Restorative Justice https://t.co/Y4Rx93GVqn +06/15/2018,Politicians,@SenatorLeahy,RT @JayTilton: @SenatorLeahy and @SenShelby have been the driving force behind keeping poison pills out of the process and a return to “old… +06/15/2018,Politicians,@SenatorLeahy,Leahy Advances Record Funding For Violence Against Women Act Programs; Increase For Bulletproof Vests Program https://t.co/JSecupb012 +06/15/2018,Politicians,@SenatorLeahy,Leahy Leads Fight Against Opioid Epidemic In Senate Appropriations Committee https://t.co/5gD0oYGRJK +06/14/2018,Politicians,@SenatorLeahy,"Systematically tearing families apart at our Southern Border is inhumane, a violation of our values, and calls to m… https://t.co/PgddizILiA" +06/14/2018,Politicians,@SenatorLeahy,Leahy-Grassley CREATES Act To Lower Prescription Drug Prices Clears Judiciary Committee https://t.co/6F9msQGkxX https://t.co/bCSF6FS1Qw +06/14/2018,Politicians,@SenatorLeahy,"A day we’ve been waiting for, a chance for REAL action to bring down Americans’ prescription costs, and another boo… https://t.co/o1OUxEAkm7" +06/14/2018,Politicians,@SenatorLeahy,"Students are in the Nation’s Capital from across the nation – from Vermont, to Arizona, to Oregon, to every other s… https://t.co/rWRxVFdatB" +06/14/2018,Politicians,@SenatorLeahy,Today the Vermont National Guard’s Air Ambulance unit bid farewell to their friends and family as they head to Fort… https://t.co/1ifUdNGs2N +06/14/2018,Politicians,@SenatorLeahy,"Amen. I had an exactly even number of Republican and Democratic cosponsors of my bill, and momentum continues to bu… https://t.co/Ib42ZoTIz7" +06/14/2018,Politicians,@SenatorLeahy,BREAKING: Comment of Senator Leahy (D-Vt.) On The DOJ Inspector General's Report https://t.co/0igsALtO1r https://t.co/MyJMMFubGf +06/14/2018,Politicians,@SenatorLeahy,RT @NOgnanovich: Both @SenShelby and #Appropriations ranking member @SenatorLeahy say bipartisan approach and avoidance of `poison pill' ri… +06/14/2018,Politicians,@SenatorLeahy,"RT @ktullymcmanus: Senate Appropriations takes up FY19 Interior-Environment, CJS & #LegBranch spending bills today https://t.co/Ro2933BMQh" +06/14/2018,Politicians,@SenatorLeahy,"RT @CVSHealth: Thank you Senator @ChuckGrassley, @SenatorLeahy and other members of the Senate Judiciary Committee for your leadership in m…" +06/14/2018,Politicians,@SenatorLeahy,“Where is our soul?” I spoke out again today in the Judiciary Committee about the inhumane child separations happen… https://t.co/jWF6xueAkQ +06/14/2018,Politicians,@SenatorLeahy,RT @ewg: Thank you @SenatorLeahy for championing organic and working to increase payment levels provided to organic and transitioning produ… +06/14/2018,Politicians,@SenatorLeahy,"RT @RxPricing: Thank you, @SenatorLeahy, for your leadership on the #CREATESAct, which will increase #generics & #biosimliars competition,…" +06/14/2018,Politicians,@SenatorLeahy,"RT @AccessibleMeds: @SenatorLeahy ""You can't get any wider a spectrum than that. Either it is an excellent piece of legislation or some of…" +06/14/2018,Politicians,@SenatorLeahy,"A chilling first look for most Americans at the hurt, the misery and the fear that this travesty of a policy is wre… https://t.co/AooR6Aeuyh" +06/13/2018,Politicians,@SenatorLeahy,RT @AccessibleMeds: Thank you @SenatorLeahy for championing the #CREATESAct. We look forward to you helping bring down #drugprices for Verm… +06/13/2018,Politicians,@SenatorLeahy,RT @shortj: Thank you @SenatorLeahy for your important work during today's Senate Ag Committee markup of the #farmbill to support and stren… +06/13/2018,Politicians,@SenatorLeahy,Summary Of The 2018 Farm Bill Markup Incl. Vermont Highlights https://t.co/4C9ttP2GRn +06/13/2018,Politicians,@SenatorLeahy,Leahy Amendment Adds Bipartisan Reauthorization Of The Northern Border Regional Commission To The 2018 Farm Bill… https://t.co/drVB98z8lj +06/13/2018,Politicians,@SenatorLeahy,Vermont #Maple = The #GoldStandard https://t.co/T5mPoliVaL +06/13/2018,Politicians,@SenatorLeahy,RT @NRDC: Thank you @SenatorCantwell @SenatorTomUdall @SenSchumer @SenatorLeahy @SenMarkey @SenBennetCO @SenJeffMerkley @RepHuffman @RepJar… +06/13/2018,Politicians,@SenatorLeahy,RT @CQnow: [ALERT] Senate Agriculture Committee Approves Farm Bill ($) https://t.co/yLRaUEaF4S +06/13/2018,Politicians,@SenatorLeahy,Important News That #Vermont #Dairy Farmers Can Use: #USDA Extends The Application Deadline For The Improved Dairy… https://t.co/fOcejDPRTq +06/13/2018,Politicians,@SenatorLeahy,RT @YoungFarmers: Thank you to our champions on the Committee that offered amendments to support young farmers and ranchers: @SenBennetCO @… +06/13/2018,Politicians,@SenatorLeahy,"RT @lesleyclark: ""Times have changed, for the better,"" a chuckling @SenateMajLdr says as Sen. Patrick Leahy talks about days ago + legislat…" +06/13/2018,Politicians,@SenatorLeahy,"RT @JayTilton: “Chairman @SenShelby and Vice-Chairman @SenatorLeahy have been very strong in saying, ‘We’re going to the regular order and…" +06/13/2018,Politicians,@SenatorLeahy,RT @ldreiling: #FarmBill18 statements going on now. Grassley wants payment limits. Boozman happy about rice support and Leahy supports dair… +06/13/2018,Politicians,@SenatorLeahy,RT @emv52: .@SenatorLeahy recalls Dole & HHH work on past #FarmBill cycles & lauds Cmte ldrs now 4 bill 4 Farm & nutrition 🍴🚜 ⁦@HungerFreeV… +06/13/2018,Politicians,@SenatorLeahy,RT @RuralCo: @SenatorLeahy #Farmbill2018 continues the long tradition of bipartisan bills - see the farmers who work hard 365 days a year -… +06/13/2018,Politicians,@SenatorLeahy,RT @MoveOn: https://t.co/N7d94q9igU +06/12/2018,Politicians,@SenatorLeahy,I'm a proud cosponsor of this bill. See my website for my recent speech on the Senate Floor about this travesty. https://t.co/GqAhU1trGE +06/12/2018,Politicians,@SenatorLeahy,Capitals fans are happy. #ALLCAPS https://t.co/9MODNxovVk +06/12/2018,Politicians,@SenatorLeahy,Statement Of Senator Patrick Leahy On The Trump-Kim Summit Meeting https://t.co/atEBbmwU8T https://t.co/6JTvypboCZ +06/12/2018,Politicians,@SenatorLeahy,"RT @vtdigger: “There is no doubt the President’s rash words and actions harm Vermonters and Canadians alike,” @SenatorLeahy said in respons…" +06/12/2018,Politicians,@SenatorLeahy,"RT @benjaminwittes: Every day, ask yourself this question: What one thing can I do today that will make this democracy stronger and honor a…" +06/11/2018,Politicians,@SenatorLeahy,"RT @davidaxelrod: Whoa. After hours of grinding diplomacy, @POTUS will submit himself to the probing questioning of...Sean Hannity! +I bet K…" +06/11/2018,Politicians,@SenatorLeahy,June is #PTSD Awareness Month. Help spread the word. RT & visit the National Center for PTSD web site to see what t… https://t.co/ZAsyqpDi9o +06/11/2018,Politicians,@SenatorLeahy,"Test drive, or test flight? Not really sure... https://t.co/vF3ZYJukUk" +06/11/2018,Politicians,@SenatorLeahy,Marcelle and I never know what we will see on… https://t.co/jUmmRuf3Nv +06/11/2018,Politicians,@SenatorLeahy,"RT @GuardMagazine: ""We cannot afford enough of a military to cover every single contingency by itself, but with the Guard and Reserves, we…" +06/11/2018,Politicians,@SenatorLeahy,"RT @GMOFreeUSA: FDA's 'Added Sugar' Label Hits Sour Note With Maple Syrup Makers +Read about it here: https://t.co/8FaKV2RBsg +Join the conv…" +06/11/2018,Politicians,@SenatorLeahy,#NetNeutrality may end today but the fight for an open Internet continues. The House can restore the rules by follo… https://t.co/vLugARijo5 +06/08/2018,Politicians,@SenatorLeahy,Leahy: Senate Appropriations Committee Approves $50 M. To Help Domestic Abuse Victims https://t.co/U6Y46KsV25 +06/08/2018,Politicians,@SenatorLeahy,Leahy Leads Charge Against Homelessness In Senate Appropriations Bill https://t.co/oVlyIYNSoE +06/08/2018,Politicians,@SenatorLeahy,Proud to support the work of the VT Drug Task Force and its partners in Vermont. Our state benefits from such grea… https://t.co/JZminGjMeA +06/08/2018,Politicians,@SenatorLeahy,Statement Of Senator Patrick Leahy On Release Of The Committee’s Farm Bill Draft https://t.co/NZrQT6Thj4 https://t.co/kdcjCkOzIo +06/08/2018,Politicians,@SenatorLeahy,Leahy Joins Feinstein And Other Senate Democrats In Introducing Legislation To Halt Separation Of Immigrant Familie… https://t.co/OfvbwOOKdX +06/08/2018,Politicians,@SenatorLeahy,MUST READING: @WashingtonPost editorial and @TomTolesToons today on “Betsy Devos’s Gun-Less Gun Violence Study” . .… https://t.co/fbffjaD8xM +06/07/2018,Politicians,@SenatorLeahy,RT @EmilyGreenspan: Excellent statement by Senator Leahy on indigenous rights leaders under threat in the Philippines: https://t.co/pV9mgZ… +07/01/2018,Politicians,@MarkWarner,"“The White House promised '70 percent' of the tax cut would go to workers. It didn't.” +https://t.co/BENcB1drDy" +06/30/2018,Politicians,@MarkWarner,"Congratulations @VSUTrojans! +https://t.co/d73WW8vmnf" +06/29/2018,Politicians,@MarkWarner,GOOD NEWS for our national parks. After months of negotiations with the Administration and my Republican colleagues… https://t.co/NpiQumbaU8 +06/29/2018,Politicians,@MarkWarner,This is 100% false. https://t.co/BFyYXu3zQk +06/28/2018,Politicians,@MarkWarner,"RT @ChrisVanHollen: Phil, I can’t imagine what you and the entire Capital Gazette team are going through right now. Journalists shouldn’t h…" +06/28/2018,Politicians,@MarkWarner,RT @amyklobuchar: With threats of election interference growing @MarkWarner & I are urging the FEC to implement strong transparency & accou… +06/28/2018,Politicians,@MarkWarner,Make no mistake: the President just gave Russia the green light to once again interfere in US Elections. +06/28/2018,Politicians,@MarkWarner,"This is dangerous, this is weak, and it’s yet another slap in the face to the intelligence professionals who quite… https://t.co/9M2Pvjcbey" +06/28/2018,Politicians,@MarkWarner,"But no, here we are less than a month away from a Presidential summit with Vladimir Putin, and the President is ope… https://t.co/AnKI9zDAuD" +06/28/2018,Politicians,@MarkWarner,"For a while it even seemed like the President had gotten the message. +https://t.co/dNHxMtaWSW" +06/28/2018,Politicians,@MarkWarner,"So does the entire Senate Intel Committee, Republicans and Democrats alike. +https://t.co/FFA5XT0nTZ" +06/28/2018,Politicians,@MarkWarner,Reminder: our entire IC leadership stands by that conclusion. https://t.co/S6NokQT8ht +06/28/2018,Politicians,@MarkWarner,"The President can either believe the unanimous conclusion of our intelligence community, or he can believe Vladimir… https://t.co/ZmciouAkgS" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Secretary of Defense Jim Mattis, or he can believe Vladimir Putin. https://t.co/b6F4hQi2F2" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his NSA Director and head of US Cyber Command General Nakasone, or he can believe… https://t.co/J3bd1vvz2i" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his FBI Director Chris Wray, or he can believe Vladimir Putin. https://t.co/s26c4Q0N5k" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Secretary of State and former CIA Director Mike Pompeo, or he can believe Vlad… https://t.co/9gJKremxYH" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Director of National Intelligence Dan Coats, or he can believe Vladimir Putin. https://t.co/N7DasNkWBR" +06/28/2018,Politicians,@MarkWarner,"And they’re lying. The President can either believe Russia or he can believe our country’s intel chiefs, generals,… https://t.co/tENiFizqU6" +06/28/2018,Politicians,@MarkWarner,"I am grateful to Justice Kennedy for his many decades of service to our country, and wish him all the best in his retirement." +06/28/2018,Politicians,@MarkWarner,"In just four months, the American people will determine the makeup of the United States Senate. Given the precedent… https://t.co/JmEEW894LS" +06/27/2018,Politicians,@MarkWarner,"Unless the President holds Putin accountable for: + +- 2016 election interference +- Undermining European democracies… https://t.co/00DMp68Vfj" +06/27/2018,Politicians,@MarkWarner,"After visiting one of the ‘better’ detention facilities, all I can say is we need a lot more compassion for these k… https://t.co/bjA9EuB4b5" +06/27/2018,Politicians,@MarkWarner,"We’ve heard a lot of denials, a lot of counterattacks and blame shifting from this Administration, but we haven’t h… https://t.co/2YyYPYkBXB" +06/27/2018,Politicians,@MarkWarner,What this facility cannot do is reunite them with their parents. That’s the responsibility of the Trump Administrat… https://t.co/mhqC5s5VBC +06/27/2018,Politicians,@MarkWarner,"But no matter how well they’re being treated by the staff, the fact remains that they’re being held in detention, s… https://t.co/Jl7xuCoMB1" +06/27/2018,Politicians,@MarkWarner,"I’ve known this facility for a long time, I’ve visited before, and according to the kids I spoke to, they’re being treated well there." +06/27/2018,Politicians,@MarkWarner,"This morning I visited an HHS detention facility in Bristow, VA, where a number of immigrant minors are being held,… https://t.co/mrihiq0cAi" +06/27/2018,Politicians,@MarkWarner,"RT @kingWTOP: Awaiting a briefing from @MarkWarner about the Bristow, Va facility housing immigrant children separated from their parents.…" +06/27/2018,Politicians,@MarkWarner,"By now you might have heard the reports of immigrant kids allegedly abused at a detention center in Staunton, Va. H… https://t.co/wxgb4Sb5Em" +06/27/2018,Politicians,@MarkWarner,"RT @SenFeinstein: UPDATE: Only around 500 children separated from their parents at the border have been reunited. Around 2,000 children are…" +06/27/2018,Politicians,@MarkWarner,RT @brianschatz: This is happening in every state. And the official filings from insurance companies specifically cite Republican sabotage… +06/27/2018,Politicians,@MarkWarner,RT @LoopEmma: The Senate Intelligence Committee unanimously passed the 2019 Intelligence Authorization Act today. It’s named after late com… +06/26/2018,Politicians,@MarkWarner,"It’s official: the Republican tax bill is blowing up our national debt, bigly. https://t.co/QouFnDhuEp" +06/26/2018,Politicians,@MarkWarner,"ZTE is a national security threat, not a bargaining chip in trade negotiations. Our intelligence community knows it… https://t.co/UV8ETmbxye" +06/26/2018,Politicians,@MarkWarner,RT @SenDuckworth: The America that I know & am proud to have served in uniform is a nation that welcomes immigrants & refugees & defends th… +06/26/2018,Politicians,@MarkWarner,"While I disagree with the Court, today’s decision does not make the President’s actions or statements related to th… https://t.co/bZ531XSrdQ" +06/26/2018,Politicians,@MarkWarner,Three years ago today #MarriageEquality became the law of the land. #LoveIsLove https://t.co/i0uNuHkcrI +06/25/2018,Politicians,@MarkWarner,RT @ChrisVanHollen: Trump constantly belittles our hardworking federal workforce and proposed a pay freeze even though the cost of living i… +06/25/2018,Politicians,@MarkWarner,"Great drawing, Sarah! Can’t wait to see this young Virginian’s @Google doodle on the homepage. +https://t.co/OOyzvkuOkX" +06/25/2018,Politicians,@MarkWarner,"RT @ChrisMurphyCT: Who is getting hurt the most by Trump's sabotage of the health care system? + +Older Americans who don't yet qualify for…" +06/25/2018,Politicians,@MarkWarner,Something strange is happening. Federal workers hit by the OPM hack — according to all public reports a Chinese esp… https://t.co/S5sg7j1tk5 +06/25/2018,Politicians,@MarkWarner,"RT @MasonAthletics: What can we say, Mason always gets it done 😎 https://t.co/Bukkbuzgzi" +06/25/2018,Politicians,@MarkWarner,RT @clairecmc: My thanks to @Sen_JoeManchin. And a sore rib for a few weeks is no big deal. I play hurt. The work goes on. https://t.co/rBb… +06/25/2018,Politicians,@MarkWarner,"With a motion by George Mason, seconded by Patrick Henry, and a vote of 89-79, Virginia became the 10th state admit… https://t.co/mE6Nf303aG" +06/23/2018,Politicians,@MarkWarner,"This isn’t over until every last family is reunited. +https://t.co/nIX0YSbg4D" +06/22/2018,Politicians,@MarkWarner,RT @SenatorDurbin: Where is the plan from the Trump Administration to reunite these children with their parents? President Trump created th… +06/22/2018,Politicians,@MarkWarner,Congratulations to the @LittleLobbyists on one year of fighting for our nation’s youngest and most vulnerable… https://t.co/GUbwmuYMO7 +06/22/2018,Politicians,@MarkWarner,Great conversation on cybersecurity and security clearance reform with @NoVATechCouncil today at @GWTweets Loudoun… https://t.co/mnQ6SKG8gr +06/22/2018,Politicians,@MarkWarner,.@TimKaine and I are demanding answers about what’s going on at this facility in Staunton. https://t.co/KJNKHVzx05 +06/22/2018,Politicians,@MarkWarner,RT @NoVaTechCouncil: @MarkWarner sits down with @gwvstc #GWU cybersecurity students #NVTC https://t.co/OvEvIzBt2a +06/22/2018,Politicians,@MarkWarner,"Great seeing advocates from @AlzAssociation. They’re fighting for the 140,000 Virginians with Alzheimer’s and thous… https://t.co/fZXlPvauXk" +06/21/2018,Politicians,@MarkWarner,"We need to see these kids, and we need answers about what's going on at this facility. https://t.co/LNpOxusQGc" +06/20/2018,Politicians,@MarkWarner,"RT @timkaine: The Old Testament instructs the faithful: “When a foreigner resides among you in your land, do not mistreat them... Love them…" +06/20/2018,Politicians,@MarkWarner,"Never forget how many of us are Americans because our ancestors came fleeing war, famine, religious persecution & o… https://t.co/xH4hL01RuY" +06/20/2018,Politicians,@MarkWarner,RT @AspenFutureWork: “One of the most important takeaways from the @BLS_gov Contingent Worker Supplement is that this portion of the workfo… +06/20/2018,Politicians,@MarkWarner,More people should be paying attention to this. https://t.co/YnyGwU5not +06/20/2018,Politicians,@MarkWarner,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/20/2018,Politicians,@MarkWarner,Amen @MarkHerringVA. #KeepFamiliesTogether https://t.co/7zChlsMNws +06/20/2018,Politicians,@MarkWarner,"RT @TyrichardsonPC: Today: Sen.@MarkWarner, a vocal advocate for gig worker rights, expected to detail a few new ideas to help protect the…" +06/20/2018,Politicians,@MarkWarner,"RT @DavidCornDC: .@markwarner at Senate Intel Comm hearing: Russian intervention in 2016 election was ""a success for Vladimir Putin.""" +06/20/2018,Politicians,@MarkWarner,"RT @realdanstoller: News: @MarkWarner opening statement on policy response to #Russian interference. + +""Even to this day – over a year a ha…" +06/20/2018,Politicians,@MarkWarner,"This is child abuse. +https://t.co/3RaY3WqbjP" +06/20/2018,Politicians,@MarkWarner,RT @ACLUVA: Shout out to Sens. @timkaine and @MarkWarner for taking a strong stand against family separation and cosponsoring legislation t… +06/20/2018,Politicians,@MarkWarner,.@TimKaine and I are demanding answers about the Trump Administration’s #FamilySeparation policy. We’ve signed on t… https://t.co/yiGf4oTwiy +06/20/2018,Politicians,@MarkWarner,Great hearing from SecDef Mattis at today’s Senate India Caucus meeting – important insights on the vital role of t… https://t.co/Rhgv3WjawY +06/19/2018,Politicians,@MarkWarner,Amen @GovernorVA. #KeepFamiliesTogether https://t.co/Ep0ZX5RGR8 +06/19/2018,Politicians,@MarkWarner,"RT @RepPeteAguilar: The OPPORTUNITY Act, my bill to connect a diverse pool of students with the @DeptofDefense Cyber Scholarship Program, p…" +06/19/2018,Politicians,@MarkWarner,#Juneteenth commemorates the day of freedom for thousands of enslaved African-Americans. Today it’s a day to celebr… https://t.co/4o9K8f3PDu +06/19/2018,Politicians,@MarkWarner,"#FamilySeparation is not “the law.” It’s not “the Democrats fault.” It is the direct result of this DOJ order, sign… https://t.co/wzP81yI04o" +06/19/2018,Politicians,@MarkWarner,RT @AspenFutureWork: Join us on 6/20 for a briefing on the latest data on contingent work and its implications for workers. You’ll hear key… +06/18/2018,Politicians,@MarkWarner,Tonight the Senate passed our bipartisan amendment to block the Trump Administration's bad deal with ZTE. If the Pr… https://t.co/UwvZV3fucy +06/18/2018,Politicians,@MarkWarner,"This is just heartbreaking. End #FamilySeparation now. +https://t.co/i15e5LIggL" +06/18/2018,Politicians,@MarkWarner,"Correct. +https://t.co/2wHikJPU39" +06/18/2018,Politicians,@MarkWarner,Facts matter. Alliances matter. The way the President of the United States conducts himself on the world stage matt… https://t.co/hM7c46P8wk +06/18/2018,Politicians,@MarkWarner,"RT @BobbyScott: .@realDonaldTrump and @SecNielsen say their family separation policies are required by law. Those claims are false. +https:…" +06/18/2018,Politicians,@MarkWarner,"RT @LoopEmma: U.S. lawmakers -- specifically, @SenTomCotton & @MarkWarner -- warn Canada about Chinese telecom giant Huawei /via @globeandm…" +06/18/2018,Politicians,@MarkWarner,"And currently, everyone else is arguing that the Trump Administration’s #FamilySeparation policy: +- Is cruel +- Is i… https://t.co/4SWvWwM7K0" +06/18/2018,Politicians,@MarkWarner,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Politicians,@MarkWarner,“Callous” — adjective — showing or having an insensitive and cruel disregard for others. https://t.co/OWdvu9JtsG +06/18/2018,Politicians,@MarkWarner,"Opioid overdoses are now the leading cause of accidental death in Virginia, surpassing car accidents and gun violen… https://t.co/9xAYfFpYv4" +06/16/2018,Politicians,@MarkWarner,Another reason the President's trade war is a terrible idea: it's going to raise the price of cans for Virginia's b… https://t.co/5CLRvPGd6s +06/15/2018,Politicians,@MarkWarner,"RT @LevarStoney: Privileged to have joined @MarkWarner, @VVforDelegate, and @SpanbergerVA07 this morning to wish peace and prosperity to AL…" +06/15/2018,Politicians,@MarkWarner,We shouldn't be trying to balance the budget on the backs of federal workers. Targeting public servants might seem… https://t.co/ibd25fKeZy +06/15/2018,Politicians,@MarkWarner,RT @SenDougJones: It’s appalling to me that someone could use the Bible to justify tearing children away from their families. This @TheJust… +06/15/2018,Politicians,@MarkWarner,It was an honor to start my morning with members of the Muslim Community of Greater Richmond to celebrate Eid al-Fi… https://t.co/TtcCX0bdir +06/14/2018,Politicians,@MarkWarner,"Fact: the Trump Administration is trying to take away protections for people with pre-existing conditions. +https://t.co/b6JPd8clQX" +06/14/2018,Politicians,@MarkWarner,"It’s important to remember today that President Trump has already said, on camera, why he fired James Comey – to st… https://t.co/5rRgtWgoY1" +06/14/2018,Politicians,@MarkWarner,"The President will surely attempt to use this to discredit the ongoing criminal investigation into his campaign, so… https://t.co/D0hzvBL32G" +06/14/2018,Politicians,@MarkWarner,The release of this Inspector General report confirms what has been clear for some time: though FBI leadership made… https://t.co/m9Ux5xht4z +06/14/2018,Politicians,@MarkWarner,"RT @HStory_News: In honor of Flag Day, nearly 1,400 flags are flying in a field in @cityofdanville - This is the fourth year for the Field…" +06/14/2018,Politicians,@MarkWarner,"“Anyone who just thinks this is just impacting the 12 to 15 million individuals with individual coverage is wrong.” +https://t.co/iGz5PifjBv" +06/14/2018,Politicians,@MarkWarner,Grateful today and every day for the soldiers in Virginia and around the world who keep us safe. #ArmyBday https://t.co/NBV0iFF3rI +06/14/2018,Politicians,@MarkWarner,RT @ACLUVA: We commend Sens. @timkaine and @MarkWarner for standing with @SenFeinstein to oppose the Trump administration's inhumane practi… +06/13/2018,Politicians,@MarkWarner,This is a disgrace. https://t.co/Vn8fl7W5xK +06/13/2018,Politicians,@MarkWarner,RT @TerryMcAuliffe: Virginia....we got the Cup!! #ALLCAPS https://t.co/IdmmvI12a7 +06/13/2018,Politicians,@MarkWarner,The DMV Is #ALLCAPS https://t.co/j00Niq57BU +06/13/2018,Politicians,@MarkWarner,"This isn’t toughness. This isn’t strength. It’s cruelty, and our country shouldn’t treat anyone this way, whether t… https://t.co/sL4jMDDMKT" +06/13/2018,Politicians,@MarkWarner,"If we’re going to address the mounting changes to the nature of work, we need to invest in human capital.… https://t.co/TjDcM9M24h" +06/13/2018,Politicians,@MarkWarner,"Robots aren’t going to take all our jobs, but they will change the skills needed to succeed. We need to rethink our… https://t.co/hEqRHRhzXT" +06/13/2018,Politicians,@MarkWarner,Update: We achieved our (sorry for this) GOOOOOOOOOOOOOOOOOOOAL. https://t.co/lU9pa9rMoq +06/13/2018,Politicians,@MarkWarner,America didn’t become leader of the free world by alienating our allies and cozying up to despots. https://t.co/iDlpkgRUfn +06/13/2018,Politicians,@MarkWarner,"Checks and balances. Both parties agree this ZTE deal is a bad deal, and we’re not going to let the Administration… https://t.co/RJ7M9YO8om" +06/13/2018,Politicians,@MarkWarner,"Four fallen Americans, whose names we'll never know, were honored today at the CIA. It's a reminder of how many oth… https://t.co/Cme3NjRRBC" +06/12/2018,Politicians,@MarkWarner,This @Capitals fan is celebrating the #CapitalsParade from the Capitol and not even @SenSchumer is going to stop m… https://t.co/7FYFbm51r0 +06/12/2018,Politicians,@MarkWarner,"Diplomacy is the most viable option for pursuing the dismantlement of North Korea’s nuclear program, but whether th… https://t.co/DhaUz2adKm" +06/12/2018,Politicians,@MarkWarner,"It’s clear that Kim Jong-un walked away from Singapore with exactly what he wanted – the pomp, circumstance and pre… https://t.co/jKSYysh2ii" +06/11/2018,Politicians,@MarkWarner,"We cannot go back to a time when you could be denied coverage or charged extra because of a pre-existing condition. +https://t.co/bx9t3SzqLl" +06/11/2018,Politicians,@MarkWarner,"RT @McFaul: If Trump can’t negotiate a deal on milk with one of our closest allies, how is he going to get a deal on nuclear disarmament wi…" +06/11/2018,Politicians,@MarkWarner,"What was the point of going to the G7, insulting our closest allies, and flying off without a deal?" +06/11/2018,Politicians,@MarkWarner,RT @GovernorVA: We can't go back to denying people with preexisting conditions access to the care they need. I'm glad @AGMarkHerring is joi… +06/11/2018,Politicians,@MarkWarner,This is the future that Putin wants. https://t.co/FvGIiWhMrC +06/11/2018,Politicians,@MarkWarner,"'The first few nights, he cried himself to sleep. Then it turned into “just moaning and moaning.”'… https://t.co/Z0rpI5owYs" +06/08/2018,Politicians,@MarkWarner,"RT @ASlavitt: BREAKING: The biggest health care news of the year. + +The Trump DOJ tonight just told the courts to dismantle pre-existing con…" +06/08/2018,Politicians,@MarkWarner,"RT @RepMarcyKaptur: Our bipartisan effort to bolster aeronautics research now has a Senate companion bill, thanks to @markwarner & @JerryMo…" +06/08/2018,Politicians,@MarkWarner,"‘Since his arrival in Michigan, family members said, a day has not gone by when the boy has failed to ask in Spanis… https://t.co/N6UT5K7cDS" +06/08/2018,Politicians,@MarkWarner,RT @AspenFutureWork: Today's new @bls_gov data reflects ongoing changes to U.S. work arrangements. While #CWSdata shows long term stability… +06/08/2018,Politicians,@MarkWarner,Russia is not our friend. +06/08/2018,Politicians,@MarkWarner,Terrible. More Trump Administration sabotage of the health insurance that millions of families rely on. This time i… https://t.co/0TCQM85Rx8 +06/07/2018,Politicians,@MarkWarner,"We all want the President to succeed in reaching a peace deal, but this is frankly pretty concerning. Any agreement… https://t.co/kLKtWaV8kh" +06/07/2018,Politicians,@MarkWarner,"RT @SenGillibrand: The #EqualPayAct was passed 55 years ago, but the pay gap still exists. Gender or race should never impact your paycheck…" +06/07/2018,Politicians,@MarkWarner,The American people overwhelmingly oppose the Trump Administration’s plan to repeal #NetNeutrality. It’s been three… https://t.co/VeSQoiI5Jb +06/07/2018,Politicians,@MarkWarner,"RT @RepTimRyan: Once more, @realDonaldTrump got rolled by China. He’s making us less safe, less secure, less competitive. https://t.co/Od7a…" +06/07/2018,Politicians,@MarkWarner,This is serious. Americans deserve to know that their private data and our national security are not being compromi… https://t.co/MC5ROgFVZX +06/07/2018,Politicians,@MarkWarner,This is a great day for Virginia. Thank you @GovernorVa and to all of the Democrats and Republicans who did the rig… https://t.co/XAKfykW9c3 +06/07/2018,Politicians,@MarkWarner,RT @jimsciutto: So a “compliance team” will somehow turn ZTE from the Chinese intelligence arm it is into a friendly trading partner. https… +06/07/2018,Politicians,@MarkWarner,Couldn’t agree more. Quarterly earnings guidance too often creates a focus on short-term profits when companies sho… https://t.co/U8cgvvc4sr +06/07/2018,Politicians,@MarkWarner,RT @SaraEisen: We discuss. see you at 1 @PowerLunch @MarkWarner https://t.co/BsWnL1ouZB +06/07/2018,Politicians,@MarkWarner,"Rule of law? For six years, Ecuador has harbored Julian Assange, a fugitive who’s endangered countless American liv… https://t.co/u0Sh9zuAZV" +06/07/2018,Politicians,@MarkWarner,"This idea of “embedding a compliance team” at ZTE is a nice talking point, but unless the Trump Administration plan… https://t.co/p0GM72SAGz" +06/07/2018,Politicians,@MarkWarner,"RT @CNNSotu: #TBT: Amid reports that ZTE will pay the United States a $1 billion fine and put $400 million in an escrow account, check out…" +06/06/2018,Politicians,@MarkWarner,"I guess this is great for Wall Street, but it does squat for American workers. Another broken promise of the GOP ta… https://t.co/morb0ghdsl" +06/06/2018,Politicians,@MarkWarner,RT @clairecmc: Seriously. Unbelievable. https://t.co/lokUtwtkBq +06/06/2018,Politicians,@MarkWarner,"Instead, the President should focus on building international coalitions to hold bad actors accountable and protect American workers." +06/06/2018,Politicians,@MarkWarner,"Look, we should hold China accountable for unfair trade practices, and I support strong rules to protect American w… https://t.co/DpHFlWZw8p" +06/06/2018,Politicians,@MarkWarner,RT @SenatorBurr: Today we honor the brave heroes who fought in #DDay 74 years ago. Those who sacrificed their lives that day were part of a… +06/06/2018,Politicians,@MarkWarner,"RT @SenTinaSmith: When women are empowered to contribute, we all benefit. We’re seeing it more and more here in the Senate. And I’m proud t…" +06/06/2018,Politicians,@MarkWarner,"I pushed hard to get this study organized, funded, and asking the right questions. Looking forward to tomorrow’s re… https://t.co/LboOGrTx6i" +06/06/2018,Politicians,@MarkWarner,RT @SenatorBaldwin: The Trump Administration’s sabotage on our health care system is making things worse and raising health care premiums.… +06/06/2018,Politicians,@MarkWarner,Today is a somber reminder of the incredible bravery of those who landed on the beaches of Normandy and behind enem… https://t.co/4tQAu1rbuR +06/06/2018,Politicians,@MarkWarner,"No American town sacrificed more that day, and today Bedford is home to the National D-Day Memorial, commemorating… https://t.co/UkjHJnhqt5" +06/06/2018,Politicians,@MarkWarner,"On #DDay74, I’m thinking about Bedford, Va which sent 34 young Virginians into battle on #DDay. That day, 19 of the… https://t.co/apl0QYJ6jx" +06/06/2018,Politicians,@MarkWarner,"If we can get this bipartisan, job-creating #hemp bill signed into law, it will be a big win for Virginia’s ag indu… https://t.co/1nhz2pJITh" +06/05/2018,Politicians,@MarkWarner,"We need answers from Facebook. The whole story, now, not six months from now. https://t.co/I7xsM8mvj4" +06/05/2018,Politicians,@MarkWarner,"Huge mistake. ZTE poses a threat to our national security, and that’s not just my opinion. It’s the unanimous concl… https://t.co/juLEJEYnZv" +06/05/2018,Politicians,@MarkWarner,"This is immoral: +https://t.co/rRDRFPp91a" +06/05/2018,Politicians,@MarkWarner,RT @SenatorDurbin: Facts matter. https://t.co/fRasf0yHDE +06/05/2018,Politicians,@MarkWarner,"RT @FairfaxJustin: Freedom to Rise: June 5, 1798. Exactly 220 years ago today, Simon Fairfax was freed from slavery in Virginia. Today, h…" +06/05/2018,Politicians,@MarkWarner,"RT @axios: Trump tweeted this morning incorrectly claiming that separating undocumented children from their parents stems from a ""law"" pass…" +06/05/2018,Politicians,@MarkWarner,Why is the President talking about pardoning himself if he has nothing to hide? +06/05/2018,Politicians,@MarkWarner,"This is a gut punch to Virginia farmers, who exported more than $68 million in pork to Mexico last year. The Presi… https://t.co/o9T2M0w30U" +06/04/2018,Politicians,@MarkWarner,"Here’s an idea: don’t start a trade war with our allies and raise the price of beer: +https://t.co/jzLWfwcFNo" +06/04/2018,Politicians,@MarkWarner,Remember when we were told the GOP tax cuts were going to the middle class? Remember when we were told companies wo… https://t.co/xaVSEvTd22 +06/04/2018,Politicians,@MarkWarner,Let’s just forget the politics for a minute and think about these kids. Whatever you think about our broken immigra… https://t.co/Vd4upCpXzA +06/04/2018,Politicians,@MarkWarner,"This just isn’t true, but it says a lot about how the President views the powers of his office. The President is in… https://t.co/V0W8nEkAXq" +06/01/2018,Politicians,@MarkWarner,"I can’t stress this enough. Eliminating the top White House cybersecurity official is a tremendously bad idea. +https://t.co/jcDQB4BAkE" +06/01/2018,Politicians,@MarkWarner,"RT @HouseNewDems: #NewDems released Closing the Skills and Opportunity Gaps, the first in a series reports focused on expanding opportuniti…" +05/31/2018,Politicians,@MarkWarner,The President’s ad hoc use of the pardon power is concerning enough. But the possibility that he may also be sendin… https://t.co/r4zVNQDpYX +05/31/2018,Politicians,@MarkWarner,"This has been nonsense from day one, and I think everyone recognizes that now. Unfortunately, you can’t just undo t… https://t.co/qen1TSdvX7" +05/31/2018,Politicians,@MarkWarner,"If a deal is too good to be true, there may be a reason for it. The President needs to get smart about ZTE before t… https://t.co/RlgY4oIRPi" +05/31/2018,Politicians,@MarkWarner,"Are robots going to take all the jobs? No, but automation will mean that learning new skills throughout your career… https://t.co/hnV3GWQJ70" +05/30/2018,Politicians,@MarkWarner,"RT @Recode: Sen. @MarkWarner: In tech, Chinese companies are operating in a different rule book than us. It is a government that will force…" +05/30/2018,Politicians,@MarkWarner,"@GovernorVA and supporters of #Medicaid expansion should be proud of this bipartisan achievement, but the real winn… https://t.co/CowggQbNSr" +05/30/2018,Politicians,@MarkWarner,I’m thrilled that partisan politics will no longer stand in the way of thousands of Virginia families getting the h… https://t.co/Ni6GA0whNR +05/30/2018,Politicians,@MarkWarner,RT @SenJohnMcCain: Must-read by my friend @GrantWoods in @USATODAY https://t.co/bzeq1XUBEk +05/30/2018,Politicians,@MarkWarner,"RT @MarkWarner: Read this. We’ve got Virginians who can’t afford insurance, even though they’ve got a job. We’ve got folks who are too sick…" +05/30/2018,Politicians,@MarkWarner,"Outdated regulations banning hemp are holding back Virginia farmers, for no good reason. @TimKaine and I are sponso… https://t.co/DW0aC4wZ4N" +05/29/2018,Politicians,@MarkWarner,"When criminals pushing synthetic opioids change their formulas, our laws have to keep up. This bipartisan bill will… https://t.co/gZWlS8Y8RI" +05/29/2018,Politicians,@MarkWarner,"Read this. We’ve got Virginians who can’t afford insurance, even though they’ve got a job. We’ve got folks who are… https://t.co/q3D7o5kdX5" +05/28/2018,Politicians,@MarkWarner,"I hope we can all take some time today to remember the servicemembers who have made the ultimate sacrifice, leaving… https://t.co/vFCFmaVwZs" +05/26/2018,Politicians,@MarkWarner,"RT @virginiavfw: Big thanks to .@MarkWarner and @timkaine for their YES vote on #VAMissionAct! The improvement of care, expansion of Caregi…" +05/26/2018,Politicians,@MarkWarner,"This would be a big mistake. President Trump should listen to the advice of his intelligence leaders, who have unan… https://t.co/HRUWY7mMEX" +05/24/2018,Politicians,@MarkWarner,"For the record, the President’s Chief of Staff and his attorney in an ongoing criminal investigation into the Presi… https://t.co/FaGbqo8g6K" +05/24/2018,Politicians,@MarkWarner,Big step in the right direction – and I’m glad Facebook followed through on my recommendations to improve upon earl… https://t.co/GmS0BRKvaf +05/24/2018,Politicians,@MarkWarner,"If there is a clear and compelling need to brief Congress on sensitive intelligence matters, it should be handled through the Gang of Eight." +05/24/2018,Politicians,@MarkWarner,The Gang of Eight exists in custom and in law to ensure that Congress can oversee intelligence matters without putt… https://t.co/AuL28k3cEI +05/24/2018,Politicians,@MarkWarner,They will also be sending a terrible message to anyone who works in or with our nation’s intelligence community tha… https://t.co/fbvGMrPM4G +05/24/2018,Politicians,@MarkWarner,"If they insist upon carrying out this farce, the White House and its Republican allies in the House will do permane… https://t.co/tkU9PswSpJ" +05/24/2018,Politicians,@MarkWarner,The White House’s plan to provide a separate briefing for their political allies demonstrates that their interest i… https://t.co/RyGzu85cIx +05/24/2018,Politicians,@MarkWarner,RT @ThirdWayKessler: Trump’s health care sabotage surcharge. https://t.co/2Nm4HVIZeB +05/24/2018,Politicians,@MarkWarner,"RT @SenatorDurbin: Right now, you can still apply to renew your #DACA. If you meet the requirements to apply for DACA renewal, you should a…" +05/23/2018,Politicians,@MarkWarner,This bill is an important step to getting veterans the healthcare they deserve more quickly and easily by providing… https://t.co/GdncIKicny +05/23/2018,Politicians,@MarkWarner,"CBO: Premiums up 15% next year, largely due to Trump Administration sabotage of the health insurance market. This i… https://t.co/Qo7DEMFGX2" +05/23/2018,Politicians,@MarkWarner,The unfortunate consequence of baseless attacks on the men and women who keep us safe. https://t.co/WKVjXV9F3S +05/23/2018,Politicians,@MarkWarner,RT @GovernorVA: Take a minute and read the stories of three Virginians whose lives would be changed if they could get the care they need to… +05/23/2018,Politicians,@MarkWarner,"The problem isn’t just that the President is smearing federal law enforcement as the “criminal deep state,” whateve… https://t.co/bz0tSDh423" +05/22/2018,Politicians,@MarkWarner,"20 years ago today, the Senate held its first #cybersecurity hearing w/ members of the L0pht hacker collective. Tod… https://t.co/oBC01LQp7F" +05/22/2018,Politicians,@MarkWarner,"Wow. The Trump Administration’s sabotage of the healthcare market could cost Virginia families an average of $1,312… https://t.co/4uIPyblytW" +05/22/2018,Politicians,@MarkWarner,The idea that this is all some sort of plot to take down the President is completely contradicted by every known fa… https://t.co/J4FT99POaD +05/22/2018,Politicians,@MarkWarner,Page ii https://t.co/0i5oPheE6y +05/22/2018,Politicians,@MarkWarner,".@SecNielsen, you’re our front line of defense against the Russian cyber threat. Please read the ICA report. Its co… https://t.co/7CY1TbOObm" +05/22/2018,Politicians,@MarkWarner,"RT @ACLUVA: We thank Sens. @timkaine and @MarkWarner, as well as Reps @RepMcEachin @BobbyScott @GerryConnolly for speaking out against the…" +05/20/2018,Politicians,@MarkWarner,RT @CNNSotu: .@MarkWarner to @jaketapper: Illegal to reveal classified FBI source info https://t.co/DqE7F9C19y #CNNSOTU +05/20/2018,Politicians,@MarkWarner,RT @FaceTheNation: Sen. @MarkWarner: I have no information that would indicate that @realDonaldTrump’s tweets are based in truth. +05/20/2018,Politicians,@MarkWarner,"RT @ryanstruyk: .@MarkWarner to @jaketapper: ""If any individual, elected official or otherwise, knowingly reveals a classified piece of inf…" +05/18/2018,Politicians,@MarkWarner,Anyone who is entrusted with our nation’s highest secrets should act with the gravity and seriousness of purpose that knowledge deserves. +05/18/2018,Politicians,@MarkWarner,"It would be at best irresponsible, and at worst potentially illegal, for members of Congress to use their positions… https://t.co/Sb6PEK2FGr" +05/18/2018,Politicians,@MarkWarner,"Publicly outing a source risks not only their life, but the lives of every American, because when sources are burne… https://t.co/MgKHa7xGOz" +05/18/2018,Politicians,@MarkWarner,The first thing any new member of the Intelligence Committee learns is the critical importance of protecting sources and methods. +05/18/2018,Politicians,@MarkWarner,Everyone needs to pay attention to this. This is not ok. Here's why: https://t.co/eOj0j2SO6W +06/30/2018,Politicians,@johnrobertsFox,@sleepygirl504 @OmniHomestead @KyraPhillips @PressSec @realDonaldTrump “Q clearance” is a DOE designation +06/30/2018,Politicians,@johnrobertsFox,@mollysmom506 @OmniHomestead @KyraPhillips No +06/30/2018,Politicians,@johnrobertsFox,At the Cascades course at The ⁦@OmniHomestead⁩ with golf legend J.C. Snead and my fabulous wife ⁦@KyraPhillips⁩ https://t.co/2iPW6S7Qrw +06/30/2018,Politicians,@johnrobertsFox,I came to ⁦@OmniHomestead⁩ for a quick getaway. There is no getting away... 😂 https://t.co/aaOTQ7tWOX +06/29/2018,Politicians,@johnrobertsFox,@FictionalFacts2 @maggieNYT @realDonaldTrump Shame on me? At least I am not a trollbot +06/29/2018,Politicians,@johnrobertsFox,@realDonaldTrump to name SCOTUS nominee on July 9th. Interviewing 6 or 7 candidates - including two women - from wh… https://t.co/sEaMurRpN8 +06/29/2018,Politicians,@johnrobertsFox,Reports that the suspect in the Annapolis shooting had a long-running feud with the paper that dates back to 2011 +06/28/2018,Politicians,@johnrobertsFox,Friends of @WhiteHouse COS John Kelly tell me that he has no plans to leave the White House-hasn't even talked abou… https://t.co/T1Ak4Eq6V3 +06/28/2018,Politicians,@johnrobertsFox,".@realDonaldTrump / Putin summit will be Monday July 16th in Helsinki, Finland" +06/28/2018,Politicians,@johnrobertsFox,"White House and Kremlin have settled on Helsinki, Finland as the location for the @realDonaldTrump - Putin summit.… https://t.co/Ni7FHHl7YW" +06/27/2018,Politicians,@johnrobertsFox,Former @FoxNews co-president Bill Shine will take on a senior communications role for @realDonaldTrump at the… https://t.co/5oe9v2BnmF +06/27/2018,Politicians,@johnrobertsFox,"With Justice Kennedy's retirement, @realDonaldTrump will have the opportunity to cement a 5-4 conservative majority… https://t.co/gEx7puTQJo" +06/27/2018,Politicians,@johnrobertsFox,.@realDonaldTrump gets another SCOTUS pick. Justice Anthony Kennedy just announced his retirement +06/27/2018,Politicians,@johnrobertsFox,SCOOP: Former @FoxNews co-president Bill Shine is in final talks with @realDonaldTrump about becoming @WhiteHouse… https://t.co/paY2BimAp6 +06/27/2018,Politicians,@johnrobertsFox,SCOOP: WH announcement of @realDonaldTrump - Putin summit may come today. +06/27/2018,Politicians,@johnrobertsFox,BREAKING: Expect @realDonaldTrump will announce date/location for Putin summit tomorrow +06/27/2018,Politicians,@johnrobertsFox,"@TruthHonestly8 @sobidey @jonathanvswan @PressSec @SecretService According to Sanders, she tweeted about it in resp… https://t.co/UZQUwYyeUa" +06/27/2018,Politicians,@johnrobertsFox,"In a sign of just how divided this nation has become, Sarah Sanders will become the first @PressSec I can ever reca… https://t.co/JiwGd4TTaY" +06/26/2018,Politicians,@johnrobertsFox,".@cnn showing bug that reads ""soon on CNN - White House Briefing"" Note to @FoxNews viewers. There is no briefing today." +06/25/2018,Politicians,@johnrobertsFox,"After @PressSec experience at @RedHenLex , I'm wondering which candidate will be first to co-opt the @BarackObama s… https://t.co/zNGSHHypmI" +06/22/2018,Politicians,@johnrobertsFox,@AprilWhymark @realDonaldTrump @Kevin_Faulconer I reported all those stories too. Clearly you are spending more ti… https://t.co/kMZCU7MFT3 +06/22/2018,Politicians,@johnrobertsFox,Oops... @realDonaldTrump slams San Diego Mayor @Kevin_Faulconer for warning illegal immigrants about raids. It was… https://t.co/qZ1jACqyA2 +06/21/2018,Politicians,@johnrobertsFox,Everyone at @FoxNews is saddened to report that our dear friend - a giant of our industry- Charles Krauthammer has passed away. +06/20/2018,Politicians,@johnrobertsFox,"@wistbro @BarackObama @realDonaldTrump If you were to appeal it, it would go to the 9th Circuit. And if THEY overt… https://t.co/yeY0X8YdWp" +06/20/2018,Politicians,@johnrobertsFox,@Bfklin @BarackObama @realDonaldTrump Congress +06/20/2018,Politicians,@johnrobertsFox,If an @BarackObama -appointed judge who told President Obama he couldn't detain children indefinitely reverses cour… https://t.co/fO40cufSli +06/20/2018,Politicians,@johnrobertsFox,"@MarieNoel45 @realDonaldTrump She is a District Judge in the Central District of California, which is covered by th… https://t.co/w5mbrZBpC8" +06/20/2018,Politicians,@johnrobertsFox,Whether or not @realDonaldTrump Executive Order goes forward depends on whether CA Judge Dolly Gee modifies her 201… https://t.co/t8e73aaoJh +06/20/2018,Politicians,@johnrobertsFox,@JenniferTambly1 You could always try @Google https://t.co/MFgxUDU6bt +06/20/2018,Politicians,@johnrobertsFox,"CA District Judge Dolly Gee orders children in border detention released - citing ""widespread deplorable conditions… https://t.co/ZPQTZ3Gab8" +06/20/2018,Politicians,@johnrobertsFox,Just wondering if @disneystudios @starwars Solo would have fared better if Chris Pine was chosen for the lead. He… https://t.co/JwNVGglJIS +06/20/2018,Politicians,@johnrobertsFox,".@realDonaldTrump says he is ""canceling and postponing"" the Congressional picnic....which I guess means tomorrow's… https://t.co/Z9yAc6X9cO" +06/20/2018,Politicians,@johnrobertsFox,.@realDonaldTrump cancelled the Congressional picnic moments after the WH catering staff had finished pre-cooking h… https://t.co/vmOrbi8ySO +06/20/2018,Politicians,@johnrobertsFox,".@realDonaldTrump cancels tomorrow's Congressional Picnic - saying to hold it ""just didn't feel right to me."" The… https://t.co/xLZetjWghc" +06/20/2018,Politicians,@johnrobertsFox,EXCLUSIVE: And now another potential track - sources tell @FoxNews that @SecNielsen is encouraging… https://t.co/CT0Bmre2a8 +06/20/2018,Politicians,@johnrobertsFox,EXCLUSIVE: @realDonaldTrump considering some sort of executive action today to allow children to stay with detaine… https://t.co/R9TU8AkfYx +06/18/2018,Politicians,@johnrobertsFox,.@realDonaldTrump directs Gen. Dunford to create a 6th branch of the military - THE SPACE FORCE +06/18/2018,Politicians,@johnrobertsFox,@mlwelch31 Where are the salmon shorts?? +06/17/2018,Politicians,@johnrobertsFox,I also do windows https://t.co/zv3Naj4Adb +06/12/2018,Politicians,@johnrobertsFox,@kristlucky13 yup +06/12/2018,Politicians,@johnrobertsFox,For all those who are going down the 'potty humor' well: Oxford - poop out : to become very tired We worked all mo… https://t.co/ucWds9dboH +06/12/2018,Politicians,@johnrobertsFox,@SeppMeyer2 @kristincbrown @pjkellyct Lies around on the floor.....clearly.... +06/12/2018,Politicians,@johnrobertsFox,@pjkellyct @kristincbrown It’s in Singapore. It’s as clean as a freshly-laundered sheet. +06/12/2018,Politicians,@johnrobertsFox,@RJancys @kristincbrown Keep her awake for 48 hours straight. +06/12/2018,Politicians,@johnrobertsFox,"After 72 hours in country, I finally pooped out producer ⁦@kristincbrown⁩ https://t.co/VhyM5J2Vfp" +06/12/2018,Politicians,@johnrobertsFox,Great seat for ⁦@realDonaldTrump⁩ news conference. Right behind ⁦@SecPompeo⁩ and COS Kelly https://t.co/buREVpiz02 +06/12/2018,Politicians,@johnrobertsFox,"If you zoom in - and you have young eyes, you can read the entire statement signed by @RealDonaldTrump and Kim Jong… https://t.co/mMOKlkLMID" +06/12/2018,Politicians,@johnrobertsFox,The band is back together again!!! ⁦@jengirdonmills⁩ https://t.co/j1G8mzUWNs +06/12/2018,Politicians,@johnrobertsFox,Oh my goodness. Sad news.... https://t.co/6X1UxhwQHU +06/11/2018,Politicians,@johnrobertsFox,The one-one bilat will tell the tale of whether this is real or not. It all comes down to that. https://t.co/5VgvR77d5t +06/11/2018,Politicians,@johnrobertsFox,@DianeMarron Miami is hands down the most beautiful city in the U.S. +06/11/2018,Politicians,@johnrobertsFox,A little memento from the Singapore summit https://t.co/5ETOO3y1p0 +06/10/2018,Politicians,@johnrobertsFox,"Lots of comparisons between @JustinTrudeau and Hugh Grant in ""Love, Actually"". In the movie, Grant says it to Billy Bob Thornton's face." +06/10/2018,Politicians,@johnrobertsFox,AF-1 in Singapore as ⁦@realDonaldTrump⁩ and Kim Jong UN take a step closer to history. ⁦@KyraPhillips⁩ https://t.co/G3tB0tpoki +06/10/2018,Politicians,@johnrobertsFox,One of the more impressive things at Seoul airport was the security checkpoint. The bins disappear into the floor a… https://t.co/lU1BwxMnhr +06/10/2018,Politicians,@johnrobertsFox,It’s the little things in life.... https://t.co/pdT1UAeawi +06/10/2018,Politicians,@johnrobertsFox,"Having now been in Beijing, Seoul and Singapore in the past six months, it is like peering into the future. Much of… https://t.co/luGcwb4DoL" +06/09/2018,Politicians,@johnrobertsFox,"Well, the stakes just went up.... https://t.co/ymR1sPj4mO" +06/09/2018,Politicians,@johnrobertsFox,"RT @realDonaldTrump: Based on Justin’s false statements at his news conference, and the fact that Canada is charging massive Tariffs to our…" +06/09/2018,Politicians,@johnrobertsFox,"Oh, I forgot. Rob Ford’s brother Doug was just elected Premier of the province of Ontario. The position is roughly… https://t.co/9xuCJy5O4Q" +06/09/2018,Politicians,@johnrobertsFox,Context and perspective: @realDonaldTrump knows @JustinTrudeau approval numbers are way down - so he feels he can p… https://t.co/l5s5fspBGW +06/08/2018,Politicians,@johnrobertsFox,So sad to hear that a true hero of mine - Charles Krauthammer has only a short time left with us. Sending prayers… https://t.co/M7T8QiBBO0 +06/08/2018,Politicians,@johnrobertsFox,Stunned to hear this morning that Anthony Bourdain died by suicide in France today. +06/08/2018,Politicians,@johnrobertsFox,"By this logic, the 18,000 people who fill the Capital One Arena for every game are Russian sympathizers. https://t.co/4uR6F1uG3k" +06/07/2018,Politicians,@johnrobertsFox,"Our 7-year old son rocking it out! @KyraPhillips Kellan Drum Solo- ""Killer Kellan"" https://t.co/dujrUiJ32w via @YouTube" +06/07/2018,Politicians,@johnrobertsFox,Thanks to William Moon for the memory of today! https://t.co/hrvkWEGUmz +06/07/2018,Politicians,@johnrobertsFox,.@HallieJackson - a problem we suffer through on a daily basis https://t.co/eVDDM7iv88 +06/06/2018,Politicians,@johnrobertsFox,@dipplingdan @YouTube Just did. My bad. Oversight... +06/06/2018,Politicians,@johnrobertsFox,Credit to Frank @dipplingdan for introducing me to Three Dead Trolls. https://t.co/lndMLjk06z +06/06/2018,Politicians,@johnrobertsFox,"British citizens may have burned the White House, but Canadians proudly claim the event as their own. According to… https://t.co/md7SgYeSkp" +06/06/2018,Politicians,@johnrobertsFox,@pepperdawgie Here’s a secret.....I’m joking... +06/06/2018,Politicians,@johnrobertsFox,"@dipplingdan @JFoughty3 Ah yes, but he was buried in Halifax....which is now Canada...." +06/06/2018,Politicians,@johnrobertsFox,@mhcandrmt Except there was no White House 300 years earlier. But there was a White House 55 years later. +06/06/2018,Politicians,@johnrobertsFox,"@dipplingdan @SmithsonSheila @Acosta The operative phrase here is ""jokingly say we burnt it"". An American could al… https://t.co/83i95L06HX" +06/06/2018,Politicians,@johnrobertsFox,"Well, had it been 55 years later, it WOULD have been Canada..... https://t.co/J7oWLonjpG" +06/05/2018,Politicians,@johnrobertsFox,Looking forward to hosting the @CoastGuardFound with my amazing wife @KyraPhillips at the National Building Museum… https://t.co/P2MHq1zhOu +06/01/2018,Politicians,@johnrobertsFox,The @uscoastguard change of command is always a moving ceremony...though I wish - just once - they could pronounce… https://t.co/hbEE3bifRq +06/01/2018,Politicians,@johnrobertsFox,Double OMG.... https://t.co/Ml55nZ7o5W +06/01/2018,Politicians,@johnrobertsFox,Thank you to @kevincorke for bringing in the donuts! https://t.co/Lcje0Fu6FZ +06/01/2018,Politicians,@johnrobertsFox,OMG....this was off-the-charts delicious @AstroDoughnuts https://t.co/5AYTfynd3P +06/01/2018,Politicians,@johnrobertsFox,"In honor of #NationalDonutDay , I am about to tuck into my very first glazed bacon donut from @AstroDoughnuts !!!!!… https://t.co/a6k6afi9tt" +06/01/2018,Politicians,@johnrobertsFox,.@USCG change of command ceremony looks like a steam bath.... +06/01/2018,Politicians,@johnrobertsFox,Upbeat jobs report today - 220k jobs added in May. Unemployment at 3.8% +05/31/2018,Politicians,@johnrobertsFox,@SlippyField @realDonaldTrump @tedcruz Classic campaign moment +05/31/2018,Politicians,@johnrobertsFox,@LLCWalk @Mulfordtown @realDonaldTrump @tedcruz How quickly we forget how we got to where we are... +05/31/2018,Politicians,@johnrobertsFox,RT @iamsambee: I would like to sincerely apologize to Ivanka Trump and to my viewers for using an expletive on my show to describe her last… +05/31/2018,Politicians,@johnrobertsFox,@Mulfordtown @realDonaldTrump @tedcruz We Are The Champions - and Another One Bites The Dust come to mind... +05/31/2018,Politicians,@johnrobertsFox,"Every time I see @realDonaldTrump and @tedcruz together, I have flashbacks to the Indiana primary." +05/28/2018,Politicians,@johnrobertsFox,Quite the team!!!! https://t.co/Wq0kxt3dft +05/28/2018,Politicians,@johnrobertsFox,My fabulous wife @KyraPhillips anchoring coverage of the National Memorial Day parade with @sagesteele https://t.co/93eR2XbUdj +05/27/2018,Politicians,@johnrobertsFox,RT @realDonaldTrump: Our United States team has arrived in North Korea to make arrangements for the Summit between Kim Jong Un and myself.… +05/26/2018,Politicians,@johnrobertsFox,@lockesalterego @Alex_Guiden @realDonaldTrump Trolls live under bridges....they don't get to see much of the real w… https://t.co/YTwmD3XvI3 +05/26/2018,Politicians,@johnrobertsFox,@rwwgreene @CR_HIATT @realDonaldTrump Here’s what I can spell out in full. Blocked +05/26/2018,Politicians,@johnrobertsFox,RT @SarahHuckabee: Happy 8th anniversary to my amazing husband @sanders_bryan! Thank you for planning the perfect getaway to celebrate! htt… +05/26/2018,Politicians,@johnrobertsFox,NoKo appears to be heading toward a June 12 summit after @realDonaldTrump sent that surprise letter to Kim on Thurs… https://t.co/ieqEDRvVa0 +05/25/2018,Politicians,@johnrobertsFox,@DanRaviv I was the other John. @jonkarl +05/25/2018,Politicians,@johnrobertsFox,Trump strikes deal with China over ZTE https://t.co/ps1ayrLJos #FoxNews +05/25/2018,Politicians,@johnrobertsFox,Trump lawyers considered possible Mueller meeting at Camp David in early 2018 https://t.co/OnMh5f3zHR #FoxNews +05/24/2018,Politicians,@johnrobertsFox,Very interesting letter from @realDonaldTrump to Kim Jong Un. Flatters him and thanks him - at the same time remin… https://t.co/ujPQGIo14N +05/24/2018,Politicians,@johnrobertsFox,"Singapore summit now looking in jeopardy. North Korea either getting cold feet, or maneuvering. https://t.co/Ug38U32ebg" +05/23/2018,Politicians,@johnrobertsFox,".@realDonaldTrump tells @foxandfriends @kilmeade he's happy about the NFL owners decision, but isn't happy that… https://t.co/KyzQxBFFI6" +05/23/2018,Politicians,@johnrobertsFox,.@NFL owners vote to fine teams if players on sidelines do not stand for the national anthem. Question: will this b… https://t.co/zOQ3sc4MwC +05/23/2018,Politicians,@johnrobertsFox,@JamesRarus @KyraPhillips @InstituteForEdu @RepWillHurd @GenMhayden this was actually in the living room of the Arm… https://t.co/VOem94CKzf +05/23/2018,Politicians,@johnrobertsFox,My fabulous wife @KyraPhillips hosting a panel for the @InstituteForEdu with @RepWillHurd and Gen. MIchael Hayden… https://t.co/poRg9rBcoK +05/22/2018,Politicians,@johnrobertsFox,"Well, that was fun.....35 minute Oval Office news conference with @realDonaldTrump Lots of news on NoKo, China and the FBI informant" +05/21/2018,Politicians,@johnrobertsFox,Whoa. This is big https://t.co/vrw2lhKkGF +05/18/2018,Politicians,@johnrobertsFox,@habfan1959 @WhiteHouse 1 in 15 Canadians owns a firearm. That's about 2 million people. Yet gun violence in Cana… https://t.co/3QF9FFZ07g +05/18/2018,Politicians,@johnrobertsFox,@MN_poppy @AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews I very much shorthanded what he was… https://t.co/I34VsZupTK +05/18/2018,Politicians,@johnrobertsFox,"@habfan1959 @WhiteHouse You miss the point. Shotguns are readily available in Canada, yet there have only been 7 s… https://t.co/nxA5yLIymr" +05/18/2018,Politicians,@johnrobertsFox,@eelarson @yeschrisyes @WhiteHouse That’s an idea that may have applied in this case. But that’s not what people are loudly calling for. +05/18/2018,Politicians,@johnrobertsFox,"@AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews First of all, I was t knocking him. Just point… https://t.co/8Py2TiUpwP" +05/18/2018,Politicians,@johnrobertsFox,"@habfan1959 @WhiteHouse As I recall, it's pretty easy to buy a shotgun in Canada.....and Canada has some of the toughest gun laws anywhere." +05/18/2018,Politicians,@johnrobertsFox,@AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews There is likely PLENTY that can be done. Who… https://t.co/oTuPJi0YRf +05/18/2018,Politicians,@johnrobertsFox,@glennyork @WhiteHouse Precisely +05/18/2018,Politicians,@johnrobertsFox,@SoulOnJourney11 @WhiteHouse And pipes. Don't forget pipes. +05/18/2018,Politicians,@johnrobertsFox,@yeschrisyes @WhiteHouse How simplistic. What about doing whatever is possible to make sure parents are on top of… https://t.co/R98CbcuVl3 +05/18/2018,Politicians,@johnrobertsFox,"@larkin1235 @WhiteHouse That will NEVER happen. Not now, not in a million years." +05/18/2018,Politicians,@johnrobertsFox,"@JHead1984 @WhiteHouse Illuminate one proposed gun control measure that could have prevented THIS event.... +-ban as… https://t.co/JQR93OTx59" +05/18/2018,Politicians,@johnrobertsFox,@thedailyveteran @WhiteHouse Unknown on both counts +05/18/2018,Politicians,@johnrobertsFox,"Man outside the @WhiteHouse angrily yelling into a bullhorn ""we need gun control"" in the wake of Santa Fe High shoo… https://t.co/LOehqvkhjZ" +05/18/2018,Politicians,@johnrobertsFox,@PellyRichard @realDonaldTrump Flynn was never subject to Senate confirmation - wrong comparison +05/18/2018,Politicians,@johnrobertsFox,@pjmesq12 Ronny Jackson had never been through Senate confirmation. Wilkie has. +05/18/2018,Politicians,@johnrobertsFox,Wilkie has been extensively vetted. First appointed to Pentagon by Bush 43 in 2006. Confirmed by the Senate as Unde… https://t.co/7eH0kIQFBa +05/18/2018,Politicians,@johnrobertsFox,@PellyRichard @realDonaldTrump Wilkie has been extensively vetted. First appointed and CONFIRMED AS Undersecretary… https://t.co/wZpfujLMsx +05/18/2018,Politicians,@johnrobertsFox,.@realDonaldTrump surprises Acting VA Secretary Robert Wilkie - telling him in a public event that he is going to b… https://t.co/9YqKcGWy4j +05/16/2018,Politicians,@johnrobertsFox,@shandsr84 @EricColumbus @RealFacelessMan @FoxNews @realDonaldTrump Is it illegal to be morally compromised? Becau… https://t.co/Y1P17UvWS3 +05/16/2018,Politicians,@johnrobertsFox,@IngaZorin111 @KyraPhillips You think wrong +05/16/2018,Politicians,@johnrobertsFox,When your wife is broadcasting from the live position next to you!!!! @KyraPhillips https://t.co/QgbiUH9wsS +05/16/2018,Politicians,@johnrobertsFox,@EricColumbus @RealFacelessMan @FoxNews @realDonaldTrump We must also consider the possibility that he has done not… https://t.co/U1zIIbNopi +05/16/2018,Politicians,@johnrobertsFox,"Rudy Giuliani on the Mueller probe: ""The case is essentially over. They're just in denial.""" +05/16/2018,Politicians,@johnrobertsFox,Rudy Giuliani tells @FoxNews that Robert Mueller told @realDonaldTrump legal team two weeks ago that he will abide… https://t.co/vcBjGeQ19e +05/16/2018,Politicians,@johnrobertsFox,"@pachapman1776 @FoxNews @realDonaldTrump Yes. I realize that you don't care. However, the Office of Government Et… https://t.co/1hwDmsJJVL" +05/16/2018,Politicians,@johnrobertsFox,Source tells @FoxNews that Rudy Giuliani revealed the reimbursement to Cohen because he was aware it would be repor… https://t.co/24bb4lbLrJ +05/16/2018,Politicians,@johnrobertsFox,"One potential problem for @realDonaldTrump - in letter to DepA-G Rosenstein, @OfficeGovEthics says the payment by C… https://t.co/T43afox5iJ" +05/16/2018,Politicians,@johnrobertsFox,".@realDonaldTrump including payments to Cohen on financial disclosure puts it the category of a personal ""reportabl… https://t.co/Uw88Ki0iYR" +05/16/2018,Politicians,@johnrobertsFox,"We may have discovered why Rudy Giuliani disclosed the ""reimbursement"" to Michael Cohen. It is detailed on page 45… https://t.co/M2DrKkJtMq" +05/16/2018,Politicians,@johnrobertsFox,"""We're LEAVING....!!!!!"" https://t.co/uLywtwFCpe" +05/15/2018,Politicians,@johnrobertsFox,@Kev4est @Carter77 @WhiteHouse Great memories! +05/15/2018,Politicians,@johnrobertsFox,@BHefti @KyraPhillips Amen to that! +05/13/2018,Politicians,@johnrobertsFox,"Happy Mother’s Day to @KyraPhillips my fabulous wife and spectacular mom to our children!!!! Love you, you amazing woman and mom!!!" +05/11/2018,Politicians,@johnrobertsFox,@takerealrisks tomorrow +05/11/2018,Politicians,@johnrobertsFox,"Correction: the cabinet meeting was Wednesday. In the hectic pace of this White House, it seems that there are tw… https://t.co/jlI5tCzjOV" +05/11/2018,Politicians,@johnrobertsFox,SCOOP - @WhiteHouse COS John Kelly told me this afternoon that after yesterday's cabinet meeting where… https://t.co/PZezGC960p +05/10/2018,Politicians,@johnrobertsFox,"@crocodilianews or, you could just click on the tweet and hit the 'translate' button" +05/10/2018,Politicians,@johnrobertsFox,This is a very interesting statement from the Foreign Minister of Bahrain regarding Israel and its right to defend… https://t.co/RuDYvOsgXN +05/10/2018,Politicians,@johnrobertsFox,@38DannyChauncey @khamenei_ir @realDonaldTrump You sound like you are about to break into song.....! +05/09/2018,Politicians,@johnrobertsFox,.@IDFSpokesperson reports 20 rockets fired by Iran Quds force at forward IDF position in the Golan Heights. Some r… https://t.co/GvEl2Nkv1l +05/09/2018,Politicians,@johnrobertsFox,BREAKING: Nunes and Gowdy to get “classified briefing” on request for secret intelligence source who aided Mueller… https://t.co/HjigTwasoD +05/09/2018,Politicians,@johnrobertsFox,".@PressSec makes it official. NO infrastructure bill this year. No shiny new bridges, glistening new rails or smooth new roads" +05/09/2018,Politicians,@johnrobertsFox,"So.....if the Ayatollah @khamenei_ir trolls @realDonaldTrump , does that make him an Ayatrollah?" +05/07/2018,Politicians,@johnrobertsFox,RT @KyraPhillips: As Medal of Honor recipients listen @DeptVetAffairs Acting Sec Wilkie lifts up @FisherHouseFdtn and how it’s expresses th… +05/07/2018,Politicians,@johnrobertsFox,Acting @DeptVetAffairs Secretary Robert Wilkie speaking to the @FisherHouseFdtn crowd today. MOH recipient Sgt. Bob… https://t.co/DgrBgBWimL +05/07/2018,Politicians,@johnrobertsFox,With another one of our American heroes COL. Barney Barnum MOH recipient at the @FisherHouseFdtn Golf Classic! https://t.co/T5RRAhdiBR +05/07/2018,Politicians,@johnrobertsFox,American hero Bob Patterson getting set to tee it up for @FisherHouseFdtn https://t.co/mXxNXt24Cu +05/07/2018,Politicians,@johnrobertsFox,RT @KyraPhillips: Please retweet this pic and #causecontainer because every retweet means more money for @FisherHouseFdtn Love our VETS!!!… +05/07/2018,Politicians,@johnrobertsFox,Retweet this and @FisherHouseFdtn will receive $1 donation from the Hub Group for each retweet!!! Support our brave… https://t.co/d4hvMa01bY +05/04/2018,Politicians,@johnrobertsFox,"@LIzGordonMartin @VP Sadly, Politics has become a zero sum game. No one can win unless someone else loses." +05/04/2018,Politicians,@johnrobertsFox,.@VP Pence personal physician Jennifer Pena is resigning from the White House Medical Unit. Sources say she had lo… https://t.co/FoUAAC7QLr +05/04/2018,Politicians,@johnrobertsFox,Spent Wednesday night On The Road To Utopia! Best bargain in music - on a notes-per-dollar basis!!! Fabulous show… https://t.co/AC7ouQDKsd +05/03/2018,Politicians,@johnrobertsFox,@LMDB05 @FoxNews @FoxBusiness Better to get it right than to be first and get it wrong! +05/03/2018,Politicians,@johnrobertsFox,@SuzanneKelleher I might point out that even the network that got the original story wrong is now saying what Fox is. +05/03/2018,Politicians,@johnrobertsFox,@ccowley57 No. Not listened to either.. +05/03/2018,Politicians,@johnrobertsFox,@rhainman You need to stay up on the news Steve-o....... The NEW development is that Cohen' phones were NOT tapped… https://t.co/nedIRwvhpI +05/03/2018,Politicians,@johnrobertsFox,Jake's a great producer. Always goes the extra mile to make sure the reporting is accurate! https://t.co/oSJQjgzRQF +05/03/2018,Politicians,@johnrobertsFox,"Sources tell @FoxNews Michael Cohen's phones were not tapped - calls not recorded. Investigators used a ""pen regis… https://t.co/IwxZSFlIsh" +05/03/2018,Politicians,@johnrobertsFox,"RT @tribelaw: To get a warrant to wiretap Michael Cohen’s phone conversations, the FBI had to comply with highly stringent rules and standa…" +05/03/2018,Politicians,@johnrobertsFox,RT @KSulton: Thank you Washington DC for another great show and thank you Danny Chauncey for making the trek here to see it....🙏🙏@38DannyCh… +05/03/2018,Politicians,@johnrobertsFox,"Rudy Giuliani told me that while @realDonaldTrump reimbursed Cohen for the $130k SD payment, POTUS didn’t know what… https://t.co/vDJZiKdEwG" +05/03/2018,Politicians,@johnrobertsFox,Todd Rundgren and Utopia rocking the Warner in DC! https://t.co/YT9Ivb9IpW +05/03/2018,Politicians,@johnrobertsFox,.@kyraphillips and me On Pennsylvania Ave with great friends @38DannyChauncey and Kelly - ahead of the Utopia conce… https://t.co/BRNeBqOlAX +05/02/2018,Politicians,@johnrobertsFox,"Giuliani says Mueller team 'desperate' to make a case, lays out terms for possible Trump interview https://t.co/sKr5sF1oAI #FoxNews" +05/02/2018,Politicians,@johnrobertsFox,Some of the more pithy quotes from @FoxNews interview with Rudy Giuliani https://t.co/wiLao9ETPE +05/02/2018,Politicians,@johnrobertsFox,"Rudy Giuliani tells @FoxNews acceptable parameters for a @realDonaldTrump interview: ""2 hours"" ""Questions in adva… https://t.co/DiZcWO6TjI" +05/02/2018,Politicians,@johnrobertsFox,"Rudy Giuliani tells @FoxNews if Mueller keeps an open mind, an interview of @realDonaldTrump is ""something we'd con… https://t.co/XoqU78JKnm" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani on a possible @realDonaldTrump interview with Mueller: ""My position isn't determined yet. Are they o… https://t.co/9ik9c8Bo8h" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani On the Mueller questions ""The questions almost cry out that they don't have a case. They're despera… https://t.co/97NuLf3wG8" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani tells @FoxNews an interview with Mueller is weeks away ""if that's the direction we're going to go.… https://t.co/D8mKR3bJCR" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani tells @FoxNews he fears a perjury trap in the Mueller questions. Says with NoKo summit looming, an… https://t.co/nABDVF9fLE" +05/02/2018,Politicians,@johnrobertsFox,"Lost in translation - French Pres Macron mixes up ""delightful"" and ""delicious"" https://t.co/DkFEyy71aF via @YouTube" +05/02/2018,Politicians,@johnrobertsFox,POTUS again threatens to get involved in DOJ https://t.co/Zbl0yOGakY +05/01/2018,Politicians,@johnrobertsFox,"@lawdawgseven @Joan1Barb @realDonaldTrump No, my wife does not work for CNN" +05/01/2018,Politicians,@johnrobertsFox,Questions that Robert Mueller wants to ask @realDonaldTrump. https://t.co/O4Dof09PGx +04/30/2018,Politicians,@johnrobertsFox,@Donna6499 @realDonaldTrump This was TODAY +04/30/2018,Politicians,@johnrobertsFox,@JohnCDavidson7 @realDonaldTrump Nope. Guess again... +04/30/2018,Politicians,@johnrobertsFox,@BradAlexander10 @realDonaldTrump Verify what? Kelly's statement? Kelly was the source on that. +04/30/2018,Politicians,@johnrobertsFox,@StandForTrump2 @realDonaldTrump It's not coming from the left. It's coming from the right. +04/30/2018,Politicians,@johnrobertsFox,@DoubleD2k15 @JamesPaine39897 @realDonaldTrump It's actually people INSIDE the White House who are trying to oust K… https://t.co/JXkdAfWf0c +04/30/2018,Politicians,@johnrobertsFox,"@LindaPHayes46 @FoxFilesFNC @realDonaldTrump This is actually a faction trying to discredit John Kelly, not Preside… https://t.co/JA5PB96Oc0" +04/30/2018,Politicians,@johnrobertsFox,@thedenyseshow @KSelvester @realDonaldTrump Not quite there yet... +04/30/2018,Politicians,@johnrobertsFox,@Joan1Barb @realDonaldTrump Because the White House is actively responding to a story it doesn't like. That makes it news. +04/30/2018,Politicians,@johnrobertsFox,@Chrisjo13267688 @mpgarza2012 @realDonaldTrump And you're not paying attention. I didn't report the story. I'm si… https://t.co/OjUlFN1GGQ +04/30/2018,Politicians,@johnrobertsFox,@KSelvester @realDonaldTrump We have a good idea.... +04/30/2018,Politicians,@johnrobertsFox,@spankdatboy @SLYUnser @realDonaldTrump Nope. It has to do with the current administration. +04/30/2018,Politicians,@johnrobertsFox,@WMWestmoreland @realDonaldTrump And therein lies the REAL story about this... +04/30/2018,Politicians,@johnrobertsFox,@Joan1Barb @realDonaldTrump You calling John Kelly's statement junk? Because that's what I am reporting.....I'm no… https://t.co/HlpC226DuL +04/30/2018,Politicians,@johnrobertsFox,@twelvenot12 @AdamShawNY @realDonaldTrump It's actually people in the WH that are doing it. +04/30/2018,Politicians,@johnrobertsFox,@DidYouMissThis1 @realDonaldTrump It's new +04/30/2018,Politicians,@johnrobertsFox,Statement from John Kelly on reports he called @realDonaldTrump an “idiot”. But Kelly has a problem...there is a… https://t.co/fA9ubOLDc5 +04/30/2018,Politicians,@johnrobertsFox,Message from outgoing @WHCA president. #WHCA https://t.co/gTYdZcuHus +04/29/2018,Politicians,@johnrobertsFox,"@PRBizMom If you check my record, I do." +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: We made it to @Burrito_Ville and man are we glad we did! Thank you all for the invite. We’re already talking about our ne… +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: Great crowd at the @SoutheastMODems Rally in Dexter! Folks are proud that @ClaireCMC’s standing up to the disastrous tari… +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: Now this is what grassroots enthusiasm looks like. These Cape Girardeau canvassers are ready to hit the pavement and tell… +07/01/2018,Politicians,@clairecmc,"RT @McCaskill4MO: This morning @ClaireCMC joined a HUGE canvass kickoff in Arnold. It may be hot outside, but the energy coming from these…" +06/30/2018,Politicians,@clairecmc,Met so many wonderful hardworking Missourians at Mid Continent yesterday. These tariffs are putting them out of bus… https://t.co/vAqVjutTOc +06/30/2018,Politicians,@clairecmc,"Today: Arnold, Cape, Bernie, Dexter. +Monday: Rolla, Washington, Sunset Hills, St Charles +Tuesday: Arch Grand Openi… https://t.co/mRhIaXbg2f" +06/29/2018,Politicians,@clairecmc,RT @McCaskill4MO: Our Clayton coordinated field office was packed wall to wall this morning to kick off our Friday morning canvass with @Cl… +06/29/2018,Politicians,@clairecmc,RT @SenateHSGACDems: ICYMI: Ranking Member @McCaskillOffice announced that her 2015 bipartisan Federal Permitting Improvement Act has alrea… +06/29/2018,Politicians,@clairecmc,"RT @jd3217: Devastated & heartbroken. Numb. Please stop asking for information/interviews. I’m in no position to speak, just know @capgazne…" +06/29/2018,Politicians,@clairecmc,Glad we had a #TeamClaire in the house for ⁦@Tsunamy27⁩ charity bowling tournament in St Peters tonight. He does so… https://t.co/hYibIuHZ2I +06/27/2018,Politicians,@clairecmc,RT @McCaskill4MO: PTSD is a serious condition that affects 8% of Americans. That number is even higher for our brave veterans. Anyone seeki… +06/27/2018,Politicians,@clairecmc,Yes! More needed but our bill is a good first step. https://t.co/m8Gux5wRIl +06/26/2018,Politicians,@clairecmc,Why does this sound vaguely familiar? https://t.co/YYsLNnymrI +06/25/2018,Politicians,@clairecmc,My thanks to @Sen_JoeManchin. And a sore rib for a few weeks is no big deal. I play hurt. The work goes on. https://t.co/rBb0gBq32F +06/24/2018,Politicians,@clairecmc,"RT @jmannies: At Truman Dinner, @clairecmc asks everyone to stand up who has a preexisting condition. Notes GOP wants to eliminate insuranc…" +06/24/2018,Politicians,@clairecmc,Josh Hawley used Missouri taxpayer money to file this lawsuit to eliminate protections for people with preexisting… https://t.co/MWVNRSqk7e +06/23/2018,Politicians,@clairecmc,"Fighting for jobs in Poplar Bluff. These tariffs are not well thought out. Go after cheaters, not Missouri jobs. https://t.co/IB6oL3qahg" +06/18/2018,Politicians,@clairecmc,What she said. https://t.co/VwrQ9hWgof +06/18/2018,Politicians,@clairecmc,"And this shows extreme pain from trade war to our number 1 crop, soybeans. https://t.co/ZrzKPymca6" +06/18/2018,Politicians,@clairecmc,Trade war is hurting our state. And this isn’t even counting the severe damage to Missouri agriculture. https://t.co/TIM93Xqb7k +06/17/2018,Politicians,@clairecmc,@nealcarter I am joining the legislation tomorrow and am working on other ways to help end this policy and hold the… https://t.co/3yepGpu7Hs +06/17/2018,Politicians,@clairecmc,Yes. I will be on the bill and will be doing more follow up work with CPB and HHS as ranking member on Homeland Sec… https://t.co/HPJPKjOOmw +06/17/2018,Politicians,@clairecmc,To assert that you must rip children from their family to secure the border is just not true. +06/17/2018,Politicians,@clairecmc,I will be joining this bill next week to stop this outrageous administration policy and following up on my longstan… https://t.co/DKBq0UsRZx +06/16/2018,Politicians,@clairecmc,RT @McCaskill4MO: This morning members of #TeamClaire joined @ClaireCMC for the Juneteenth festivities in Kansas City! #MOSen https://t.co/… +06/16/2018,Politicians,@clairecmc,We should never forget the dangers our brave law enforcement officers face every day. Thinking of their families to… https://t.co/ORJubIhUPw +06/15/2018,Politicians,@clairecmc,RT @McCaskill4MO: The decision to drop protections for people with pre-existing conditions would be disastrous for MO’s working families. #… +06/14/2018,Politicians,@clairecmc,RT @McCaskillOffice: Happy 243rd birthday to the @USArmy – and happy birthday to the stars & stripes this #FlagDay! #ArmyBday 🇺🇸 https://t.… +06/14/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Claire: air ambulances “are currently operating in a grey area between healthcare and aviation, and have managed to no…" +06/13/2018,Politicians,@clairecmc,Productive day today. 8 of my bills moved out of committee with big bipartisan support. (4 of mine and 4 where I w… https://t.co/0qbUtkjBXB +06/13/2018,Politicians,@clairecmc,RT @McCaskillOffice: .@kmbc : “McCaskill says she wants to make sure the agency [@CBP] has the resources it needs to intercept opioids at t… +06/13/2018,Politicians,@clairecmc,And this. Why risk retaliation to Missouri Ag and claim that Canada is a threat to national security? Go after Chin… https://t.co/9AyQPP24jV +06/13/2018,Politicians,@clairecmc,This. https://t.co/3QD4HtvSJE +06/13/2018,Politicians,@clairecmc,Part of this trade surplus is our exports from Missouri farmers. Canada is the number one export market for Missour… https://t.co/F3KVOR3gwb +06/12/2018,Politicians,@clairecmc,RT @RSI: Senators @senrobportman and @clairecmc have recently released draft legislation that would help infrastructure https://t.co/4XgyOj… +06/10/2018,Politicians,@clairecmc,Just. That. Simple. https://t.co/HzCkiU8ZDu +06/10/2018,Politicians,@clairecmc,These wonderful folks don’t agree with @HawleyMO that their 4 year college degree is worthless. Thank you Lincoln a… https://t.co/4lADTHr89K +06/09/2018,Politicians,@clairecmc,RT @McCaskill4MO: Stoked to be joining @ClaireCMC for a roundtable at the @GCI1919 with @CatherineForNV! Today we’re talking about what we… +06/09/2018,Politicians,@clairecmc,Goodness gracious. Talk about a turn out! NW Mo Democrats are serious about this election. Everyone wants to make a… https://t.co/Lp5CRFBMt0 +06/09/2018,Politicians,@clairecmc,Privileged to honor thousands who were participating in 5K this am at Arrowhead to support ⁦@ShatterproofHQ⁩ This… https://t.co/fnFDdmYwzF +06/09/2018,Politicians,@clairecmc,RT @fawfulfan: @tyunsell @Hawkeyee21 @HawleyMO @clairecmc @GOP McCaskill has been fighting from day one to get her constituents affordable… +06/09/2018,Politicians,@clairecmc,@7thWardSTL @stl7thward @nicolergalloway @NoOnPropA @CoriBush @brucefranksjr @gregoryfxdaly Thank you! +06/09/2018,Politicians,@clairecmc,"Slow Saturday. Only 7 events. ☺️ on my way to third event in KC, then off to St Joseph for NW dem event. Thanks to… https://t.co/s4zuwcK8qD" +06/08/2018,Politicians,@clairecmc,"No Tyler, he won’t. He is one of the AGs bringing the lawsuit to end the protection of those with pre-existing cond… https://t.co/1BZyWlSmkV" +06/08/2018,Politicians,@clairecmc,The (almost) hardest working Democrat in Missouri! 😬 Happy Birthday Stephen 🎂🍺 https://t.co/DNJ54tCj10 +06/08/2018,Politicians,@clairecmc,Thank you for attending. Great turnout! https://t.co/pgZUobYteC +06/08/2018,Politicians,@clairecmc,RT @POGOBlog: .@McCaskillOffice introduced legislation compelling patient advocacy groups to report funding they receive from pharmaceutica… +06/07/2018,Politicians,@clairecmc,RT @MAhealthforkids: Thx @clairecmc who is pushing for more #BigPharma transparency. She released a report back in Feb about opioid manufac… +06/07/2018,Politicians,@clairecmc,"Cardinal nation is mourning. Thank you Red, you were a class act. #LoveRed2 https://t.co/7xMvcagYsg" +06/06/2018,Politicians,@clairecmc,Seriously. Unbelievable. https://t.co/lokUtwtkBq +06/06/2018,Politicians,@clairecmc,@Jennifrrrrr @SenatorNasheed Ask at a local #TeamClaire office. They are all on our web site. https://t.co/rqawiGEjGy. Thanks! +06/06/2018,Politicians,@clairecmc,@democratmo Thank you Jeffrey! +06/06/2018,Politicians,@clairecmc,Congratulations Senator Arthur! It’s a flip...red to blue. Thanks to all the hard work of Lauren and many volunteer… https://t.co/D1HHyJZV5u +06/05/2018,Politicians,@clairecmc,I agree with my Republican colleagues from Iowa. This administration is hurting the renewable fuel industry and cat… https://t.co/BgRwVRBDhQ +06/04/2018,Politicians,@clairecmc,RT @mkraju: Senate Judiciary Chairman Chuck Grassley just told me this: “If I were president of the United States and I had a lawyer that s… +06/04/2018,Politicians,@clairecmc,@KCMikeMahoney @ruckin_ Looking for a pay phone or gas station to ask for directions when I couldn’t find a map in the car. +06/02/2018,Politicians,@clairecmc,I am so grateful to the hundreds of volunteers who turned out today all over the state. This race will not be won o… https://t.co/31KYNim50O +06/02/2018,Politicians,@clairecmc,"RT @MoDemParty: Today we’re launching the biggest, most sophisticated field program MO has ever seen to make sure @ClaireCMC can keep fight…" +06/02/2018,Politicians,@clairecmc,Great to be there @SenatorNasheed ! https://t.co/ZK2CHMIJ9G +06/01/2018,Politicians,@clairecmc,The subpoena excuse is close to the dog ate my homework. Totally bogus. Does the AG’s office expect people to belie… https://t.co/qkFhGxKkTg +06/01/2018,Politicians,@clairecmc,That’s what happens when you don’t actually investigate. An investigation isn’t “they told us they didn’t do anythi… https://t.co/TKNz121QMa +06/01/2018,Politicians,@clairecmc,Happy to help! Now you can pull your rabbit out of your hat without a dumb federal regulation getting in your way! https://t.co/HG80Fol7Wp +06/01/2018,Politicians,@clairecmc,Totally bogus excuse that he couldn’t subpoena. He could have done exactly what this private attorney did and gotte… https://t.co/CsBAwN87up +06/01/2018,Politicians,@clairecmc,That statute SPECIFICALLY gives the Attorney General the right to bring suit but he refused and this private citize… https://t.co/7yqhIgNHsn +06/01/2018,Politicians,@clairecmc,RsMO 610.027 https://t.co/JgtHRt549I +06/01/2018,Politicians,@clairecmc,And more important than 💰is volunteers! Massive voter contact starts tomorrow. Here is list of offices that are alr… https://t.co/yLx8mr3uUQ +06/01/2018,Politicians,@clairecmc,Speaking of BigBlue....gas money anyone? https://t.co/GDwHm709Mc. Thank you! https://t.co/3d8AnCFwlQ +06/01/2018,Politicians,@clairecmc,"Spent this week covering the state in BigBlue, our campaign RV. Hundreds of #VetsForClaire and military families ca… https://t.co/5TTsi4vn9X" +05/31/2018,Politicians,@clairecmc,"RT @s_webber: At every stop a veteran has come up to Claire to thank her for fighting for them. In Hannibal, one said she's ""a veteran of…" +05/31/2018,Politicians,@clairecmc,RT @McCaskill4MO: We’re back on the road for Day 3️⃣ of our Vets and Military Families Tour! Don’t miss out on a second of the fun—follow o… +05/31/2018,Politicians,@clairecmc,"RT @McCaskill4MO: In Columbia @ClaireCMC had the honor of sharing the stories of two WWII POWs, Ralph and Wilburn. Even after their time in…" +05/29/2018,Politicians,@clairecmc,"My dad. Like many others of the Greatest Generation, he never told us about his bravery. I miss him. A part of my h… https://t.co/em7lTjfYEP" +05/26/2018,Politicians,@clairecmc,Heaven. 5 of my grandsons adoring our new additions! https://t.co/7AeSj9QuO5 +05/26/2018,Politicians,@clairecmc,Together we make good things happen. This is a great example. Seniors have more protection from rotten scammers! https://t.co/bQ1DelBRWl +05/26/2018,Politicians,@clairecmc,Very excited to hit the road next week in this. Names anyone for the RV? We are off on a “Veterans for Claire” tour… https://t.co/SmwMU0qi8z +05/25/2018,Politicians,@clairecmc,"RT @leadinglatte: ""I think it's important that all of us around here, [who] want everyone to think that we're moving mountains... I think t…" +05/25/2018,Politicians,@clairecmc,RT @KMOV: Sen. McCaskill calls public reading of Greitens' accuser's deposition 'unfortunate' https://t.co/wz83lMdp7j https://t.co/kVMITk3A… +05/25/2018,Politicians,@clairecmc,RT @SheenBean32: Great seeing Sentor @clairecmc out engaging with seniors all across this city at the 38 Annual Bring It Together Health Fa… +05/25/2018,Politicians,@clairecmc,I was so honored to spend time this morning with these veterans from the Korean War. Thank you Don and Terry. https://t.co/3DTacU127c +05/24/2018,Politicians,@clairecmc,I talked to some of these workers who lost their jobs yesterday. Justifiably angry. One of them lost a 20 year care… https://t.co/L5UF4xswXx +05/24/2018,Politicians,@clairecmc,RT @vMerlintocs: @clairecmc Good Morning Senator. Would there be any chance you could please retweet this story to help the Oakville Band… +05/24/2018,Politicians,@clairecmc,RT @McCaskill4MO: We’re making it easier than ever to get involved with #TeamClaire. Just text CLAIRE to 83224 and we’ll take it from there… +05/23/2018,Politicians,@clairecmc,Damn auto correct. *Members of CONGRESS https://t.co/F93NTI1GAi +05/23/2018,Politicians,@clairecmc,A hero working with heroes. https://t.co/UHhidsyleu +05/23/2018,Politicians,@clairecmc,RT @lindsaywise: NEW from McCaskill: “The era of Members of Congress controlling the secrecy of harassment claims with no accountability an… +05/23/2018,Politicians,@clairecmc,No more taxpayer money paid for wrongdoing by Members of Commerce. Let’s get this bill to the President. https://t.co/av7qG6WrMg +05/20/2018,Politicians,@clairecmc,Thank you Cindy! Congrats to your daughter. https://t.co/twavGX7JZb +05/20/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC and @CoryBooker just dropped by to surprise the crowd at the #AnnieMalone parade! #TeamClaire #MOSen https://… +05/20/2018,Politicians,@clairecmc,Whoops. Volunteer at https://t.co/KVeLXlsxQH +05/20/2018,Politicians,@clairecmc,"Ok St Louis, you turned it out and up! Goodness gracious what a wonderful rally. Remember: volunteer at Claire… https://t.co/ZPhZ5Aorbs" +05/20/2018,Politicians,@clairecmc,"Concord is wonderful, they always make me feel like family. And thank you Pastor Lindsay! @concordhope https://t.co/UXlxJ7VpqH" +05/20/2018,Politicians,@clairecmc,Thank you Shauna for coming to our office opening in KC and more importantly for your service. #Army #ArmedForcesDay https://t.co/iocFLrNn8Q +05/20/2018,Politicians,@clairecmc,Wow. Thank you to the hundreds who showed up. Sorry it was so hot and crowded. And big thanks to @MayorSlyJames… https://t.co/hfYGDyscOX +05/20/2018,Politicians,@clairecmc,"RT @kareed3: @McCaskill4MO @clairecmc As an Army veteran, I join Shauna in my absolute pleasure in voting for, and supporting Claire for Se…" +05/19/2018,Politicians,@clairecmc,The men and women of our armed forces deserve our respect and appreciation 365. #ArmedForcesDay +05/19/2018,Politicians,@clairecmc,"This week @HawleyMO was interviewed and said he’d done 10 events in 6 weeks. I did 5 yesterday, will do 3 today and… https://t.co/UkjNVnUu0N" +05/19/2018,Politicians,@clairecmc,Can’t be bought. Voted to PROTECT #netneutrality https://t.co/SaZPbzo9ne +05/19/2018,Politicians,@clairecmc,Teri if you would DM me contact info I’d love to help make this happen. https://t.co/euG0Ze7KRn +05/19/2018,Politicians,@clairecmc,Powerful. Preaching love. https://t.co/ZblVtDiMDl +05/19/2018,Politicians,@clairecmc,@CoryBooker in charge of our Instagram account this weekend? 👀 Well that could be trouble. https://t.co/RK7Vn7xj1w +05/18/2018,Politicians,@clairecmc,RT @McCaskillOffice: The legislation is supported by the Fraternal Order of Police (@GLFOP) and National Tactical Officers Assoc. (@NTOAH)… +05/18/2018,Politicians,@clairecmc,"RT @McCaskillOffice: This #NationalPoliceWeek, Claire’s introducing a new bill to fund behavioral health crisis response training. She know…" +05/18/2018,Politicians,@clairecmc,"Again. Heartbreaking. To the families filled with sorrow, my deepest sympathy. No more excuses. Time for reasonable… https://t.co/9QCaA9kKHJ" +05/18/2018,Politicians,@clairecmc,Congratulations to all the graduates and their families! Thanks for having me. #BearGrads https://t.co/kNVypr1B0p +05/18/2018,Politicians,@clairecmc,Join us! https://t.co/FGB2rv7g97 +05/17/2018,Politicians,@clairecmc,Great to be with you Shay! #theMORNINGGRIND https://t.co/evmBWmyVnq +05/17/2018,Politicians,@clairecmc,This is terrible news for Mo farmers. https://t.co/iPOx1loOSE +05/17/2018,Politicians,@clairecmc,"RT @McCaskill4MO: By the end of this week, #TeamClaire and @MODemParty will have opened 2⃣0⃣ coordinated field offices all over MO—and that…" +05/16/2018,Politicians,@clairecmc,Going down to floor to vote to protect #NetNeutrality. We are going to win this one folks. Now it’s time for pressure on the House! +05/16/2018,Politicians,@clairecmc,@MsPackyetti @PodSaveThePpl Congratulations Brittany! +05/15/2018,Politicians,@clairecmc,"RT @Robillard: “He pointed out that he’s held 10 campaign events in the past six weeks” https://t.co/frQx7Y7Snz + +Last year, McCaskill held…" +05/15/2018,Politicians,@clairecmc,Word. Very very few days off for over a year. Hard work matters. It’s how you show respect to hard working Missouri… https://t.co/VkwDHHYUjI +05/13/2018,Politicians,@clairecmc,I miss her so much. Takes my breath away. She was amazing. This is my first campaign without her steady hand nearby… https://t.co/hFhFtRtwHE +05/11/2018,Politicians,@clairecmc,"I completely get this John. And I must confess, I’m very excited. I’m taking Mother’s Day off! https://t.co/Cl0Dvrd78j" +05/11/2018,Politicians,@clairecmc,RT @CDTCivilWar: ICYMI: 'that sounds a little nuts' -- McCaskill slams @HawleyMO for saying #HigherEd indoctrinates students into 'far-left… +05/10/2018,Politicians,@clairecmc,😂😂My grandsons will love this. https://t.co/OetsUYzmX7 +05/08/2018,Politicians,@clairecmc,RT @McCaskill4MO: NEW AD: @ClaireCMC only answers to one boss—and that’s the families of MO. #MOSen https://t.co/rYqzLsm02W +05/05/2018,Politicians,@clairecmc,"RT @McCaskill4MO: At our second community meeting today, @ClaireCMC was asked what issues can bring together rural and urban MO. Without mi…" +05/05/2018,Politicians,@clairecmc,RT @CoraFaith4MO: Such great energy at the @McCaskill4MO #STL office opening! @Emily_Waggoner and I are with @clairecmc! JOIN US ➡️ https:… +05/05/2018,Politicians,@clairecmc,That baby was incredibly precious. Thanks Amelia for coming to our STL campaign office opening! https://t.co/yueGjhh50h +05/04/2018,Politicians,@clairecmc,It was jammed! Let’s get to work! https://t.co/kcABA58a3D +05/04/2018,Politicians,@clairecmc,It was so good to be with my dear friend Alvin Brooks on his 86th birthday! Thank you for all your community servic… https://t.co/DJm7soxMsd +05/04/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC thanks @AdHocGAC for their many years spent building bridges between law enforcement and KC communities. “The… +05/04/2018,Politicians,@clairecmc,This is terrible news for Missouri. https://t.co/IQWPAqKhQz +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Claire’s response? + +“What's going on with the pharmaceutical industry should infuriate every living, breathing soul in…" +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Dr. Stephens of MU’s Family Medicine Clinic in Ashland lamented high drug prices, saying “it's a shameful that we have…" +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Today, she joined healthcare professionals in Columbia to talk about the rising costs of emergency room visits, air am…" +05/03/2018,Politicians,@clairecmc,Over lunch hour we opened another #TeamClaire office! Thanks for the great turnout Boone County! https://t.co/Zn1ylH6SrI +05/02/2018,Politicians,@clairecmc,@repckelly @SarahLStarnes @MoDemParty Yes. In 1988. First floor. +05/02/2018,Politicians,@clairecmc,Undermine and sabotage. Republicans promised repeal and replace. They delivered undermine and sabotage. Made it wor… https://t.co/1Q3uYI3v94 +05/01/2018,Politicians,@clairecmc,"RT @SenatorLankford: .@ReggieBush, I agree - It's insane that we can’t see where our tax dollars go. @clairecmc & I have a bipartisan solut…" +05/01/2018,Politicians,@clairecmc,"RT @stltoday: McCaskill launches inquiry into air ambulances and insurers, cites Post-Dispatch reporting https://t.co/X7k1ZZjhB6 https://t.…" +04/27/2018,Politicians,@clairecmc,This. https://t.co/P9ESj4VEN3 +04/27/2018,Politicians,@clairecmc,I’m not going away on this. They bought a Bentley on your money that was supposed to be going toward fighting terro… https://t.co/swgX9bmgIu +04/27/2018,Politicians,@clairecmc,Yes it is! Let’s do this thing🔥🔥 https://t.co/kNBi34eqrW https://t.co/SJBC9xHNLQ +04/26/2018,Politicians,@clairecmc,@DarrylGregoryG2 @McCaskillOffice .Here you go Rev Gray. I oppose any efforts to attack SNAP. https://t.co/9aUegfaIXc +04/26/2018,Politicians,@clairecmc,"Fast cars,Easy money. Outrageous. It will enrage you. Please. Watch. https://t.co/ht1svwtwex. Full repor… https://t.co/9K5yVTHtBW" +04/26/2018,Politicians,@clairecmc,"RT @rplardner: SecDef Mattis says he agrees with a scathing assessment by @clairecmc of a Pentagon subcontractor. +Mattis tells Sen. McCaski…" +04/26/2018,Politicians,@clairecmc,RT @McCaskillOffice: BREAKING: Claire released a scathing report today detailing how one Pentagon contractor who left taxpayers on the hook… +04/26/2018,Politicians,@clairecmc,RT @SenateHSGACDems: BREAKING: Ranking Member @McCaskillOffice released a scathing report today on the Pentagon’s mismanagement of the Afgh… +04/26/2018,Politicians,@clairecmc,Thanks to @SenatorLankford for partnering with me on this important bill to provide transparency for taxpayers on g… https://t.co/hm0gk49Rzq +04/26/2018,Politicians,@clairecmc,And thank you to all the volunteers and escorts who make these Honor Flights to DC possible! #HeartlandHonorFlight https://t.co/dgcOT1vBQL +04/25/2018,Politicians,@clairecmc,"@THatfieldMO @aaron_hedlund As a matter of fact I saw the story at 7:20 central time this morning, after I’d been to the gym." +04/25/2018,Politicians,@clairecmc,Honor flight from KC area this morning. Always the best part of my week. This veteran asked for a hug and was incre… https://t.co/jzvceGKOst +04/23/2018,Politicians,@clairecmc,Hmmm https://t.co/mC2GcE7hsi +04/22/2018,Politicians,@clairecmc,"RT @7milegap: Republican strategist on his party’s candidate for U.S. Senate in MO: +“He’s this young guy and he’s allergic to hard work.” +M…" +04/21/2018,Politicians,@clairecmc,"RT @MoDemParty: They both campaigned as outsiders. +They both pledged to clean up corruption in Jeff City. +They both think we want to watch…" +04/20/2018,Politicians,@clairecmc,RT @McCaskillOffice: Claire’s excited to announce a new $25.5 million @DeptVetAffairs grant to state-run veterans homes in Missouri for ren… +04/20/2018,Politicians,@clairecmc,RT @KCMikeMahoney: Mo. Sen Claire McCaskill asks Air Force brass about the future of the Whitman AFB as home to new generation of bombers… +04/19/2018,Politicians,@clairecmc,RT @McCaskill4MO: URGENT: In 4️⃣ days the rules protecting #NetNeutrality will expire. @ClaireCMC’s fighting for a vote in the Senate to pr… +04/19/2018,Politicians,@clairecmc,"As we change the rules today to allow Tammy to bring her baby on the floor of the US Senate (welcome Maile!), I fla… https://t.co/Ji1Xc9bRh5" +04/19/2018,Politicians,@clairecmc,RT @McCaskill4MO: Up top! #NationalHighFiveDay https://t.co/AY56QJVfMv +04/18/2018,Politicians,@clairecmc,RT @McCaskillOffice: “McCaskill Calls for Biodiesel Boost”—Claire’s teaming up with a bipartisan group of farm-state senators to oppose cha… +04/18/2018,Politicians,@clairecmc,"RT @Mizzou: MU has a $3.9 billion impact on the state of Missouri according to a new report released today! + +https://t.co/TWqCLIYoad https…" +04/18/2018,Politicians,@clairecmc,Campaign should have nothing to do with official duties. Very concerning. Weirdest part...report was due and filed… https://t.co/Us4xapKgIe +04/18/2018,Politicians,@clairecmc,"RT @Drug_watch: “Drug companies have too much influence in Washington.” U.S. Sen. @clairecmc, D-Missouri, is proposing legislation to end t…" +04/18/2018,Politicians,@clairecmc,"RT @Meirabb: For those who may be confused, here is the very clear public timeline of events regarding the Governor’s use of The Mission C…" +04/18/2018,Politicians,@clairecmc,We would love to have your help on our campaign. Offices opening this month all over the state. Join us! https://t.co/ATbePbCdYl +04/18/2018,Politicians,@clairecmc,Huh? The Governor admitted wrongdoing in connection with his charity in APRIL 2017. That wasn’t a sufficient heads… https://t.co/cIsCRR1n7f +04/18/2018,Politicians,@clairecmc,"So predictable. I feel for Ambassador Haley. She is strong, smart, and capable. And the WH threw her under the bus… https://t.co/2yD3YWCLOy" +04/17/2018,Politicians,@clairecmc,Prayers and sympathy for the Bush family. She was a wonderful woman. https://t.co/JSNAXbEiVZ +04/16/2018,Politicians,@clairecmc,RT @clairecmc: Being dependent on multimillion dollar donors is part of the evil that Citizen United has caused. I’m incredibly proud that… +04/16/2018,Politicians,@clairecmc,Being dependent on multimillion dollar donors is part of the evil that Citizen United has caused. I’m incredibly pr… https://t.co/OqxjMP0sBf +04/16/2018,Politicians,@clairecmc,That is rampant corruption. Hope someone in law enforcement investigates. https://t.co/h4XJ1yd3NV +04/15/2018,Politicians,@clairecmc,Serious aunt love going on this am at my house. https://t.co/lJ4GzMYDLT +04/14/2018,Politicians,@clairecmc,So I was quickly informed this is the south end construction. Whew. But wait I thought we just redid that end a few… https://t.co/r6R65ywuC3 +04/14/2018,Politicians,@clairecmc,@samputsimply @Mizzou Whew. I’m so glad. I was worried. +04/14/2018,Politicians,@clairecmc,This photo makes me kinda sad. I grew up watching Mizzou games from the “rocks”. I know it’s progress but still gon… https://t.co/Duh9Ny9DEI +04/14/2018,Politicians,@clairecmc,I will get to the bottom of this. Investigation continues. https://t.co/X3h2I1cYtd +04/13/2018,Politicians,@clairecmc,👍🏻💙💙💙 https://t.co/5nsMQQfpEw +04/13/2018,Politicians,@clairecmc,"RT @McCaskill4MO: It’s official! @ClaireCMC’s bipartisan, anti-sex trafficking bill was signed into law by the president earlier this week.…" +04/12/2018,Politicians,@clairecmc,I’m confused. And Missouri farmers desperately need certainty. What in the world is going on? https://t.co/lHUIFrZdnB +04/12/2018,Politicians,@clairecmc,RT @senorrinhatch: Anyone advising the President — in public or over the airwaves— to fire Bob Mueller does not have the President or the n… +04/12/2018,Politicians,@clairecmc,"I have read the official report from the Republican led Missouri House investigation, including the sworn testimony… https://t.co/tk7Sbduapp" +04/11/2018,Politicians,@clairecmc,I can’t get my head around a man’s character that would put his wife and children through this kind of pain. +04/11/2018,Politicians,@clairecmc,It was a long tough fight. But we never gave up. My thanks to my partner @SenRobPortman. Unfortunate the WH played… https://t.co/bePfuDpK3n +04/11/2018,Politicians,@clairecmc,"RT @McCaskillOffice: With #SESTA officially on the books, survivors can now access the justice they deserve, and we’re better able to preve…" +04/11/2018,Politicians,@clairecmc,RT @HagedornInst: Congratulations to Senators McCaskill (@clairecmc) and Portman and the others who worked diligently to put a dent in chil… +04/10/2018,Politicians,@clairecmc,Our investigation. Oversight matters. https://t.co/370HzRzMju +04/10/2018,Politicians,@clairecmc,Our pleasure. Least I can do for my mother’s high school and where I attended school at Donnelly elementary!… https://t.co/DM4E5YEj9t +04/09/2018,Politicians,@clairecmc,Lots of travel and events yesterday. Today? Grandchildren! 😍 Family days make it all work and make me so grateful f… https://t.co/jWx9slw9PG +04/08/2018,Politicians,@clairecmc,HUGE crowd at annual @GreeneCountyDem dinner in Springfield. So much energy. Something is going on. 😁 https://t.co/ALg8Hw1Ion +04/08/2018,Politicians,@clairecmc,Then on to a moving and emotional memorial surface for my friend and amazing long time public servant Wendy Noren i… https://t.co/oLGJn6yi98 +04/08/2018,Politicians,@clairecmc,Started the day yesterday in STL with over 200 showing up for a volunteer brunch! https://t.co/VR0GhMNF6o +04/07/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC fought for Arla Harrell when his government wouldn’t. #MOSen https://t.co/7RkJBTqak4 +04/07/2018,Politicians,@clairecmc,Big crowd tonight at Blair dinner in Jeff City. Great to be with all these committed folks. Thanks for the warm wel… https://t.co/zipuwwkc36 +04/05/2018,Politicians,@clairecmc,I agree Pat. Worried about all the soybean farmers in Missouri living on the edge with this added stress.… https://t.co/H7sYzeNU6B +04/05/2018,Politicians,@clairecmc,RT @SenatorNasheed: Thank you for your early leadership on this @clairecmc - all people deserve safe and healthy housing. #ClintonPeabody h… +04/04/2018,Politicians,@clairecmc,RT @TheSalemNews: McCaskill-backed bill would boost number of doctors training in rural areas https://t.co/Qz5d1qpzwM https://t.co/13i8wmru… +04/03/2018,Politicians,@clairecmc,"RT @RxPricing: Some #drugprices news from @jessiehellmann: ""Three U.S. senators are asking why a 40-year-old cancer drug has increased in p…" +04/03/2018,Politicians,@clairecmc,RT @THatfieldMO: .@HawleyMO YouTube page vs @clairecmc YouTube page. One is full of petty attack ads while the other shows someone who work… +04/03/2018,Politicians,@clairecmc,"RT @McCaskill4MO: NEW: When Arla Harrell was denied benefits after being subjected to mustard gas experiments by the American military, @Cl…" +03/30/2018,Politicians,@clairecmc,"RT @mcbridetd: Government set to borrow nearly $1 trillion this year, an 84 percent jump from last year + Chicago Tribune https://t.co/elXCb…" +03/30/2018,Politicians,@clairecmc,Stopping a ridiculous practice. https://t.co/EoIbjeXSjz +03/30/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Today we remember and honor all Vietnam War veterans and the sacrifices they made for our country. From all of us, tha…" +03/29/2018,Politicians,@clairecmc,It’s a full moon! https://t.co/IaJ1NCZHWR +03/28/2018,Politicians,@clairecmc,Big crowd. Lots of volunteers. Let’s get to work! #MoSen https://t.co/aHjl64PyQV +03/28/2018,Politicians,@clairecmc,Getting ready for town hall #52. Today’s in KC. I have averaged one townhall a week for the last year. Thank you to… https://t.co/bRSIL5AMq5 +03/28/2018,Politicians,@clairecmc,RT @jmannies: ICYMI: https://t.co/KuFuUOUi4L +06/30/2018,Politicians,@senorrinhatch,@JanDelicat Just a member of said Senate Judiciary Committee. +06/30/2018,Politicians,@senorrinhatch,"He is 81 years old and had served on the Court admirably for 31 years. + +End of investigation. + +https://t.co/Iz02CESQsQ" +06/29/2018,Politicians,@senorrinhatch,"Congratulations to @joshjames and our friends at @Domotalk! + +https://t.co/LNPCd8meNq" +06/29/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: The Senate Finance Committee has been busy. In the 115th Congress, it has ushered in #taxreform, repeal of the individua…" +06/29/2018,Politicians,@senorrinhatch,"@VictoriaCollaz2 Ok Victoria. Just for you, after this Supreme Court nominee is confirmed." +06/29/2018,Politicians,@senorrinhatch,"@gossipornews Yes, thanks!" +06/29/2018,Politicians,@senorrinhatch,"Senate Democrats want a Supreme Court Justice who will act as a super-legislator, serving on a second Congress in o… https://t.co/7mWsWwmd5c" +06/29/2018,Politicians,@senorrinhatch,"Important from @charlescwcooke: No. It’s Not Time for a ‘Bork Moment’ + +https://t.co/6izII7knuG #scotus #utpol" +06/29/2018,Politicians,@senorrinhatch,"As Democrats lay out a laundry list of political hopes for the next Supreme Court Justice, Senate Republicans will… https://t.co/a0bus95lsp" +06/29/2018,Politicians,@senorrinhatch,RT @lawyer_moms: Thanks to @OrrinHatch and @SenMikeLee for productive meetings. #FamiliesBelongTogether https://t.co/IX2NiZJjRl +06/29/2018,Politicians,@senorrinhatch,"RT @FoxBusiness: .@OrrinHatch on the next Supreme Court Justice: ""[@POTUS] has about 25 names. Any one of those names would be excellent on…" +06/29/2018,Politicians,@senorrinhatch,No Doubt A Supreme Court Nominee Will Be Confirmed Before Midterms. #utpol https://t.co/QPtCy69VCB +06/29/2018,Politicians,@senorrinhatch,"RT @Newseum: Amazingly, the dedicated journalists at the @capgaznews put out a newspaper today. Their front page is on display in the Today…" +06/29/2018,Politicians,@senorrinhatch,"RT @mattdizwhitlock: Oops. If you have to crop an image to cut off “next President” and clip a video to try and make a point, you better ma…" +06/29/2018,Politicians,@senorrinhatch,Justice Kennedy will be replaced before the midterms. https://t.co/5dWUef9xtR +06/29/2018,Politicians,@senorrinhatch,"Hatch Speaks Out in Need of Fair Confirmation Process for Justice Kennedy’s Successor— via ⁦@JackHeretik⁩, ⁦… https://t.co/4W2wKSgObX" +06/29/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: @SenateDems Interesting that you decided to cut it off where you did. + +Here are 6 times from that exact same 2016 inter…" +06/28/2018,Politicians,@senorrinhatch,“Bottom line: it’s pretty clear the debate in 2016 revolved around nominations made in a presidential election year… https://t.co/ZiFmyUdteg +06/28/2018,Politicians,@senorrinhatch,RT @chaseacook: I can tell you this: We are putting out a damn paper tomorrow. +06/28/2018,Politicians,@senorrinhatch,The shooting at the Capital Gazette in Annapolis is an attack on our First Amendment and our most fundamental right… https://t.co/ey0MvxNoBH +06/28/2018,Politicians,@senorrinhatch,"@SenateDems Interesting that you decided to cut it off where you did. + +Here are 6 times from that exact same 2016… https://t.co/a21ZhC7cgJ" +06/28/2018,Politicians,@senorrinhatch,"RT @FoxBusiness: .@OrrinHatch on the next Supreme Court Justice: ""[@POTUS] has about 25 names. Any one of those names would be excellent on…" +06/28/2018,Politicians,@senorrinhatch,"“I have no doubt the President will pick someone very capable to fill the shoes of Justice Kennedy, who served on t… https://t.co/hfQNn0XYGT" +06/28/2018,Politicians,@senorrinhatch,At 5:20 Hatch will join @EveningEdit to talk about Justice Kennedy’s retirement and the need to confirm a suitable… https://t.co/vsmyhbJvab +06/28/2018,Politicians,@senorrinhatch,"Funny-- I get away with that all the time. + +https://t.co/c0w12cqCZ7" +06/28/2018,Politicians,@senorrinhatch,"RT @EveningEdit: Coming up +@OrrinHatch +@marc_lotter +@mschlapp +@madisongesiotto +@Amottur +@TheDCVince https://t.co/p7qmDpVsy8" +06/28/2018,Politicians,@senorrinhatch,"RT @SenateMajLdr: As I stated yesterday, the Senate stands ready to fulfill our constitutional role by offering advice and consent on @POTU…" +06/28/2018,Politicians,@senorrinhatch,"""I understand Senator Schumer--They feel very deeply about politicizing the courts. They want to politicize as long… https://t.co/j4ptP5DnBk" +06/28/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Not quite yet, there's a Supreme Court seat on the line. + +https://t.co/ywl978VYtP" +06/28/2018,Politicians,@senorrinhatch,Tune in now to @dailybriefing — @FoxNews #SCOTUS https://t.co/V83u7k3SC2 +06/28/2018,Politicians,@senorrinhatch,At 2:10 PM EST Senator Hatch will join @DanaPerino on @dailybriefing on @FoxNews to talk about Justice Kennedy's re… https://t.co/GeS7kWbHgh +06/28/2018,Politicians,@senorrinhatch,"RT @KUTV2News: Sen. Orrin Hatch, the senior member and former Chairman of the Senate Judiciary Committee, paid tribute to Supreme Court Jus…" +06/28/2018,Politicians,@senorrinhatch,"America doesn’t need political judges. +It doesn’t need an army of super-legislators telling us what to do. +And it… https://t.co/BNsF4K37kP" +06/28/2018,Politicians,@senorrinhatch,@FightForTitleII Are you arguing for the Confederacy here? +06/28/2018,Politicians,@senorrinhatch,At 11:35 AM Senator Hatch will speak on the Senate floor about Justice Kennedy's retirement and the need to confirm… https://t.co/X3mW7WjI2E +06/28/2018,Politicians,@senorrinhatch,@GoldenGuido You're making the very bold assumption that you're going to outlive him. +06/28/2018,Politicians,@senorrinhatch,"At the first Battle of Bull Run. It was necessary. + +https://t.co/RoYP8GANOm" +06/28/2018,Politicians,@senorrinhatch,@matthewfelling Thank you for recognizing this correct interpretation of the acronym. +06/28/2018,Politicians,@senorrinhatch,@BertClere I can only hope. +06/28/2018,Politicians,@senorrinhatch,"@dmully1193 Addressed this yesterday. + +https://t.co/Qvu3fvlo5B" +06/28/2018,Politicians,@senorrinhatch,"You'll hear Senate Democrats talk about needing a nominee who will promote ""progress,"" because they want Judges who… https://t.co/UqT3lWR65D" +06/28/2018,Politicians,@senorrinhatch,"One of Democrats biggest challenges is that they emptied the procedural toolbox trying to stop, slow, stall every e… https://t.co/13nUeevO9E" +06/28/2018,Politicians,@senorrinhatch,"With love and respect, when it comes to who gets to *nominate* Supreme Court justices (which is what @SenateMajLdr… https://t.co/j1BS3IC609" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: JUST NOW: Senator Hatch on the phone with Justice Kennedy, thanking him for his service and dedication to upholding the…" +06/27/2018,Politicians,@senorrinhatch,More helpful data from @baseballcrank about the common practice of confirming Supreme Court nominees in midterm ele… https://t.co/ZAdWVnaTp8 +06/27/2018,Politicians,@senorrinhatch,@fossen There are no Presidents up for election this year. https://t.co/WruEc87qKG +06/27/2018,Politicians,@senorrinhatch,"Not quite yet, there's a Supreme Court seat on the line. + +https://t.co/ywl978VYtP" +06/27/2018,Politicians,@senorrinhatch,"Memories. + +Always glad to stand (or sit) behind @SenateMajLdr. + +https://t.co/xO9qtinDfI" +06/27/2018,Politicians,@senorrinhatch,"RT @baseballcrank: 8 of 9 midterm-election-year SCT nominations confirmed since WW2 (POTUS, SEN party): + +Kagan (D, D) +Breyer (D, D) +Souter…" +06/27/2018,Politicians,@senorrinhatch,"Senate Democrats are ""grasping at straws, in the truest sense."" + +https://t.co/oE5av8tmee #SCOTUS #utpol" +06/27/2018,Politicians,@senorrinhatch,This summary from ⁦@guypbenson⁩ serves as an excellent explainer for a key qualification for Justice Kennedy’s repl… https://t.co/QpLqkkPbGQ +06/27/2018,Politicians,@senorrinhatch,RT @senorrinhatch: The #SCOTUS rulings this week highlight the importance of a nominee who focuses on impartially interpreting the Constitu… +06/27/2018,Politicians,@senorrinhatch,"RT @guypbenson: 1) It’s not a Presidential election. +2) That was the Biden/Schumer standard. +3) Obama’s second SCOTUS pick was confirmed in…" +06/27/2018,Politicians,@senorrinhatch,#TBT https://t.co/RnjKlQ7IyT +06/27/2018,Politicians,@senorrinhatch,While there was no precedent for confirming a Justice who had been nominated by an outgoing President in a Presiden… https://t.co/ZcWnN2BpEZ +06/27/2018,Politicians,@senorrinhatch,Our Democrat colleagues entire strategy seems to be premised on the assumption that the American people don't under… https://t.co/xTJNqJivlt +06/27/2018,Politicians,@senorrinhatch,"JUST NOW: Senator Hatch on the phone with Justice Kennedy, thanking him for his service and dedication to upholding… https://t.co/IOcTgo8xLR" +06/27/2018,Politicians,@senorrinhatch,"RT @JakeSherman: MCCONNELL on the Senate floor: ""The senate stands ready to fulfill its constitutional role by offering advice and consent…" +06/27/2018,Politicians,@senorrinhatch,"RT @ABCPolitics: JUST IN: Senate Majority Leader Mitch McConnell: ""We will vote to confirm Justice Kennedy's successor this fall."" https://…" +06/27/2018,Politicians,@senorrinhatch,RT @SenateMajLdr: The Senate stands ready to fulfill its constitutional role by offering advice and consent on @POTUS @realDonaldTrump’s no… +06/27/2018,Politicians,@senorrinhatch,The #SCOTUS rulings this week highlight the importance of a nominee who focuses on impartially interpreting the Con… https://t.co/j23MVPPteF +06/27/2018,Politicians,@senorrinhatch,RT @fox13: UPDATE: Senator Orrin Hatch issues statement congratulating Justice Kennedy on his service to the country and praising him as a… +06/27/2018,Politicians,@senorrinhatch,"..""to guide his successor through the confirmation process. I wish Justice Kennedy and his family the very best."" (2/2) #SCOTUS #utpol" +06/27/2018,Politicians,@senorrinhatch,"HATCH on Justice Kennedy's retirement: ""I congratulate Justice Kennedy on his service to our country. He has been a… https://t.co/p9BXiDyjDc" +06/27/2018,Politicians,@senorrinhatch,#NationalSunglassesDay https://t.co/zvQCl8kvjN +06/27/2018,Politicians,@senorrinhatch,"RT @DavidAFrench: Alternative headline: + +BREAKING: US Supreme Court hands down major blow to state efforts to compel speech. Protects mill…" +06/27/2018,Politicians,@senorrinhatch,"RT @BenjiBacker: “You’re an impressive young man—we need more like you. I appreciate the work you’re doing [with @ACC_National].” + +Grateful…" +06/27/2018,Politicians,@senorrinhatch,@5876M I don't think gerrymandered means what you think it means. +06/27/2018,Politicians,@senorrinhatch,RT @foxandfriends: Sen. Orrin Hatch pays tribute to Charles Krauthammer https://t.co/JZTiwhzjej +06/27/2018,Politicians,@senorrinhatch,RT @ChadPergram: From colleague Jason Donner. Senate Finance Cmte chair Hatch: I’m actually on Harley Davidson’s side. Tariffs are not bene… +06/27/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: In just six months, #taxreform has already brought back $305.6 billion to the United States, a ""shot in the arm"" for U.S…" +06/27/2018,Politicians,@senorrinhatch,(But do it without the money of those who don't support your agenda-- because those people now finally have their F… https://t.co/xmDTViS1LW +06/27/2018,Politicians,@senorrinhatch,"RT @senatorshoshana: “to compel a man to furnish contributions of money for the propagation of +opinions which he disbelieves and abhor[s] i…" +06/27/2018,Politicians,@senorrinhatch,"HATCH on the #JANUS decision: + +""Since the late 1970s, I have fought to protect the rights of workers against union… https://t.co/LjprvgLRkP" +06/27/2018,Politicians,@senorrinhatch,"The Supreme Court could deliver a ruling on Janus v. AFSCME today. + +HATCH: “the Supreme Court has the opportunity t… https://t.co/rAeLpW7yRn" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: These youths are quite lucky there was a security detail separating them from Secretary Chao. + +https://t.co/AP3CG2jQPx" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: HATCH on Civility: ""I have said this many times before, but it bears repeating: Our words have consequences, and in an a…" +06/27/2018,Politicians,@senorrinhatch,RT @ReutersBiz: Automakers to warn Trump of $45 billion higher vehicle costs if tariff imposed https://t.co/Y6HD7FlUkS +06/26/2018,Politicians,@senorrinhatch,"These youths are quite lucky there was a security detail separating them from Secretary Chao. + +https://t.co/AP3CG2jQPx" +06/26/2018,Politicians,@senorrinhatch,@AshMcGonigal You must have missed last week. https://t.co/Jh710ACjaB +06/26/2018,Politicians,@senorrinhatch,"HATCH on Civility: ""I have said this many times before, but it bears repeating: Our words have consequences, and in… https://t.co/303cd5VrtM" +06/26/2018,Politicians,@senorrinhatch,"VIDEO: On the Senate floor this evening Senator Hatch paid tribute to his good friend, @FoxNews commentator Charles… https://t.co/VxCqmXnAJX" +06/26/2018,Politicians,@senorrinhatch,"HATCH on Charles Krauthammer: + +""I think we can all agree that civility took a beating this weekend. But perhaps th… https://t.co/WNqhzOVZ9l" +06/26/2018,Politicians,@senorrinhatch,"Raising awareness about Endometriosis knows no partisan bounds. + +Senator Hatch recently wrote an op-ed about why he… https://t.co/KfQuai2a18" +06/26/2018,Politicians,@senorrinhatch,"At 4:15 PM Senator Hatch will deliver brief remarks on the passing of his longtime friend Charles Krauthammer, ""a f… https://t.co/Csfp79xjb0" +06/26/2018,Politicians,@senorrinhatch,RT @GloblAutomkrs: .@SenOrrinHatch via @CBSMoneyWatch: “[A #car] is a significant financial commitment for most families … and I’m shocked… +06/26/2018,Politicians,@senorrinhatch,"RT @PIIE: .@OrrinHatch cites @PIIE’s study showing how Trump’s proposed 25 percent auto and auto parts tariffs would cause at least 195,000…" +06/26/2018,Politicians,@senorrinhatch,"RT @RightOnCrime: ""[W]ith targeted reforms to our prison system like those Senator Cornyn has proposed, we can reduce recidivism and give m…" +06/26/2018,Politicians,@senorrinhatch,RT @SFGMC: @SFGMC Artistic Director @tgseelig and Chorus members are guests of the @MormonTabChoir today for soundcheck at the @ShorelineAm… +06/26/2018,Politicians,@senorrinhatch,RT @DJJazzyJody: Proving you're never too old for second chances ... https://t.co/bJe8z4TDcx +06/26/2018,Politicians,@senorrinhatch,RT @JakeKUTV: Just an extra year. https://t.co/seVlzMJ4vh +06/25/2018,Politicians,@senorrinhatch,"""The tariffs have put a halt to the growth of the company--plans to buy a nearby building for possible expansion ar… https://t.co/DfZmtwblZI" +06/25/2018,Politicians,@senorrinhatch,"Our words have consequences, and in an age of retweets, viral videos and shareable content, those words often echo… https://t.co/dszwEZrptW" +06/25/2018,Politicians,@senorrinhatch,RT @malcolm_john: Kudos to @OrrinHatch for keeping mens rea reform as part of the #CriminalJusticeReform discussion. My take with @jseibler… +06/25/2018,Politicians,@senorrinhatch,RT @SenShelby: Remarkable day in the Senate! We have just approved a package of three appropriations bills through regular order. Proud of… +06/25/2018,Politicians,@senorrinhatch,"RT @SenateGOP: 🚨Breaking🚨 The Senate just passed a funding bill that will help: +▶︎ Address our nation’s energy and water development needs…" +06/25/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Jack's Ornamental Iron in Utah builds railings for apartment buildings. + +The increased cost of steel/ aluminum after t…" +06/25/2018,Politicians,@senorrinhatch,Great read from @JSeibler and @malcolm_john at @DailySignal on Senator Hatch's #CriminalJusticeReform efforts.… https://t.co/0qI3O4W3qo +06/25/2018,Politicians,@senorrinhatch,"RT @SenateGOP: When tax reform was passed, there were estimates that it would create 1 million jobs. Just six months after #TaxReform was s…" +06/25/2018,Politicians,@senorrinhatch,@A_M_Dolan @senatorshoshana This is all true. +06/25/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: .@bhenergy will share $3.8 million in savings with Nebraska-area natural gas customers thanks to #taxreform https://t.c… +06/25/2018,Politicians,@senorrinhatch,RT @kslmrichards: I am working on the story now. Listen on @kslnewsradio as you grab lunch or drive home. https://t.co/fnChUSCS0x +06/25/2018,Politicians,@senorrinhatch,"Students (young wizards) are learning science, technology, engineering, and math from + +Clark Planetarium +Nat. Histo… https://t.co/w99iH3dgux" +06/25/2018,Politicians,@senorrinhatch,"This is a wonderful, creative way to help Utah kids gain more exposure to critical STEM education. + +More about wha… https://t.co/CTEOOSAWIJ" +06/25/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Ahead of the Finance Committee Hearing with @HHSGov Secretary Azar tomorrow, Chairman @senorrinhatch writes in @rollcall…" +06/25/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Today Senator Hatch spoke out in support of 3 criminal justice reform measures: + +☑️ Mens rea reform https://t.co/OjjLU…" +06/25/2018,Politicians,@senorrinhatch,@KyleKashuv @benshapiro @DLoesch @guypbenson @rpetty Very much looking forward to it. https://t.co/7IwQh954Su +06/25/2018,Politicians,@senorrinhatch,"We all bear responsibility in some way for the current state of politics, and the lack of civility. + +And because o… https://t.co/MTPWKOWzCh" +06/25/2018,Politicians,@senorrinhatch,"This is a very bad, dangerous idea. + +Debate and even disagreement is critical to the American experiment. But when… https://t.co/EtlYRUg9hC" +06/24/2018,Politicians,@senorrinhatch,"RT @davidaxelrod: I was moved to join the @CNN Town Hall on suicide prevention, moderated by Anderson Cooper, which airs tonight at 7 EST.…" +06/24/2018,Politicians,@senorrinhatch,If we are splitting into Republican restaurants and Democrat restaurants can we keep the Chuck-a-Rama all you can e… https://t.co/IMUOUGWRLS +06/23/2018,Politicians,@senorrinhatch,"“Amid harsh words and suspicion elsewhere, celebration of World Refugee Day showcases the Beehive State’s open, wel… https://t.co/UFqon4ZCIj" +06/23/2018,Politicians,@senorrinhatch,"Happy 70th birthday to Justice Clarence Thomas. Many MANY happy returns. + +On the 25th anniversary of Justice Thomas… https://t.co/1ud4hCXGpT" +06/23/2018,Politicians,@senorrinhatch,"RT @VP: Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the @WhiteHouse today. @POTUS…" +06/23/2018,Politicians,@senorrinhatch,This is great news. https://t.co/NCFXYRze2Y +06/22/2018,Politicians,@senorrinhatch,"Jack's Ornamental Iron in Utah builds railings for apartment buildings. + +The increased cost of steel/ aluminum af… https://t.co/YhciDp8iX4" +06/22/2018,Politicians,@senorrinhatch,"Today Senator Hatch spoke out in support of 3 criminal justice reform measures: + +☑️ Mens rea reform… https://t.co/6aDwEdke52" +06/22/2018,Politicians,@senorrinhatch,"@revansCAAD8 Senator Hatch is in the Senate, not the House. + +The Senate did not vote on the Goodlatte bill." +06/22/2018,Politicians,@senorrinhatch,"Great news for Utah! #utpol + +https://t.co/ykYcWsG5kp" +06/22/2018,Politicians,@senorrinhatch,Senator Hatch honoring Utah county commissioners and legislators at the White House today — #utpol https://t.co/c0e0nXKSRv +06/22/2018,Politicians,@senorrinhatch,"RT @SenateGOP: Let’s talk results. It’s been six months since tax reform was signed into law, and the unemployment rate is currently at an…" +06/22/2018,Politicians,@senorrinhatch,@mike_Zollo This is all patently false and you are spreading misinformation. +06/22/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Just In: Chairman Hatch announces hearing for IRS Nominee Charles Rettig https://t.co/RLxGOFMfFz +06/22/2018,Politicians,@senorrinhatch,"RT @StevenTDennis: The Republican chairman of the Finance Committee, Orrin Hatch, also demanded the return of the children this morning. ht…" +06/21/2018,Politicians,@senorrinhatch,"Great news in this statement from HHS about reuniting separated families: + +""Reunification is always the ultimate go… https://t.co/JDg0w59kuW" +06/21/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Senate Finance GOP to @secretaryross: Tariffs hurt Americans. More: https://t.co/WkZpnEEczf +06/21/2018,Politicians,@senorrinhatch,"RT @KyleKashuv: Senator OG Hatch (@senorrinhatch) will be at @TPUSA #HSLS2018! Will you be there? + +Apply today! https://t.co/LPIJFVGunG ht…" +06/21/2018,Politicians,@senorrinhatch,"""We need to be humane, but we also need to enforce our laws. Separating children from their parents is inhumane. Ke… https://t.co/nRc5rXBwAV" +06/21/2018,Politicians,@senorrinhatch,Senator Hatch is speaking now about the importance of yesterdays' executive order to keep families together.. but A… https://t.co/tlW2IumtRU +06/21/2018,Politicians,@senorrinhatch,Senator Hatch is pleased to support the Keep Families Together and Enforce the Law Act by @SenThomTillis. He will b… https://t.co/lVmScNvI1V +06/21/2018,Politicians,@senorrinhatch,@sylviaharo1 Yes. +06/21/2018,Politicians,@senorrinhatch,"RT @FoxNews: .@Varneyco: ""The real big story that affects everybody in America is the success of @POTUS's tax cut package and what it's don…" +06/21/2018,Politicians,@senorrinhatch,"“More than ever before, Americans can expect things to be better tomorrow than they are today.” + +Yesterday Hatch t… https://t.co/4dsf3V902o" +06/21/2018,Politicians,@senorrinhatch,RT @SenateGOP: Senate Republicans are getting things done for the American people. https://t.co/EMcFQ9zi8R +06/21/2018,Politicians,@senorrinhatch,"“I just don’t see how the damage posed on all of these sectors could possibly advance our national security.""… https://t.co/BGKSFfe54r" +06/21/2018,Politicians,@senorrinhatch,"“Mexico is the largest export market for US pork, including pig farmers in Utah. Mexico announced it will impose ta… https://t.co/YLmWxxvfWE" +06/21/2018,Politicians,@senorrinhatch,Earlier today Senator Hatch took the Trump administration to task for the devastating impact the President’s propos… https://t.co/F3JOKHWjvw +06/21/2018,Politicians,@senorrinhatch,"If that’s the world’s most important human rights body.. we need better human rights bodies. + +Perhaps one that isn… https://t.co/lISE6rnPac" +06/21/2018,Politicians,@senorrinhatch,"RT @openletterbot: Here’s an open letter from Leslie in Slc, UT to @SenOrrinHatch #FamiliesBelongTogether https://t.co/jopqFLrHcP" +06/21/2018,Politicians,@senorrinhatch,The President just spoke about the need for merit-based immigration to fill high-skilled jobs in our booming econom… https://t.co/ZIT1kEg5lR +06/20/2018,Politicians,@senorrinhatch,The President made the right choice today by stopping the inhumane policy of separating children from their familie… https://t.co/xxdFtFGw9J +06/20/2018,Politicians,@senorrinhatch,"Hatch: “Know that you are taxing American families, you are putting American jobs at risk, and you are destroying m… https://t.co/xAqHvN1SSF" +06/20/2018,Politicians,@senorrinhatch,RT @FreeTradeBryan: Thread on @SenateFinance testimony from @SecretaryRoss today. All quotes are paraphrased. From @OrrinHatch : As a conse… +06/20/2018,Politicians,@senorrinhatch,RT @senorrinhatch: Valuable deep-dive from @gabrielmalor-- Democrats’ Border Separation Bill Would Let Nearly All Parents Who Commit Federa… +06/20/2018,Politicians,@senorrinhatch,"RT @McConnellPress: .@SenateMajLdr McConnell cosponsors the “Keep Families Together and Enforce the Law Act,” which keeps families together…" +06/20/2018,Politicians,@senorrinhatch,"RT @taxfoundation: .@senorrinhatch: ""Automobile #tariffs are a tax on American families. And the Tax Foundation agrees, estimating that aut…" +06/20/2018,Politicians,@senorrinhatch,"This must be awkward for you guys. + +Obviously a lot of things contributed to POTUS’ decision to halt family separat… https://t.co/0cLb0e2Y8Y" +06/20/2018,Politicians,@senorrinhatch,Done. https://t.co/peJbv1UeoA +06/20/2018,Politicians,@senorrinhatch,"After successfully calling on the President to pause family separations, Senator Hatch is supporting legislative pr… https://t.co/OUAuYeaz3T" +06/20/2018,Politicians,@senorrinhatch,ICYMI-- Yesterday Hatch and 12 of his colleagues called on the President to end these separations so Congress could… https://t.co/HTa78konWx +06/20/2018,Politicians,@senorrinhatch,"""The onus is on us now to work quickly to fix these problems, and I look forward to working with my colleagues on t… https://t.co/bYTmcI75lT" +06/20/2018,Politicians,@senorrinhatch,"HATCH on executive order: ""I appreciate the President’s willingness to listen to us on this issue. We all understan… https://t.co/ZcgSboMoOt" +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Find Hatch's full remarks here: https://t.co/Zou0R0suS1 +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman @senorrinhatch: “…Optimism, along with lower costs of increasing investments and doing business, has already st…" +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman Hatch marking the six-month anniversary of #taxreform: : ""As business investment & productivity pick up...wage…" +06/20/2018,Politicians,@senorrinhatch,RT @DNewsPolitics: Read about Hatch letter seeking halt to family separations at the border -- and Utah delegation reaction to @realDonaldT… +06/20/2018,Politicians,@senorrinhatch,As Hatch @SenJohnMcCain @SenPatRoberts @SenatorCollins @lisamurkowski @SenBobCorker @SenAlexander @JohnBoozman… https://t.co/MEHXQESJOE +06/20/2018,Politicians,@senorrinhatch,"RT @AlexLimonNews: #BREAKING POTUS says ""I'll be signing something in a little while"" to end family separations, White House pool reports.…" +06/20/2018,Politicians,@senorrinhatch,@sagcat Please refer to our entire twitter feed. You’ll find it at @senorrinhatch +06/20/2018,Politicians,@senorrinhatch,@Reagan_Girl Sponsoring and co-sponsoring over a dozen different immigration bills to fix it. +06/20/2018,Politicians,@senorrinhatch,"@cbeilinson @seungminkim Please refer to our entire twitter feed. + +https://t.co/60c61kBqiU +https://t.co/x9DcI0ZhD6… https://t.co/E8mf3PFstV" +06/20/2018,Politicians,@senorrinhatch,"Huge if true. + +https://t.co/k1XcfT5DbB" +06/20/2018,Politicians,@senorrinhatch,This would be the right move. Senator Hatch has asked @realDonaldTrump and the Justice Department to pause these se… https://t.co/PFZFleJCVY +06/20/2018,Politicians,@senorrinhatch,"The proper response to a crisis is not hasty legislating. While Hatch agrees with ideas in that bill, there are fl… https://t.co/FfVgnxfyQd" +06/20/2018,Politicians,@senorrinhatch,"RT @jendeben: Impressive fact sheet here from @senorrinhatch on the ""232 backlash"" and global retaliation for steel and aluminum tariffs ah…" +06/20/2018,Politicians,@senorrinhatch,"RT @ITI_TechTweets: The tech industry agrees with you, @senorrinhatch – we are also not a fan of tariffs and believe they are a mistake. Fr…" +06/20/2018,Politicians,@senorrinhatch,"RT @HMNorthey: .@senorrinhatch blasts Trump's steel, alum tariffs, says they're drying up contracts for steel companies, slowing chemical p…" +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman @senorrinhatch to @SecretaryRoss: “As you consider these tariffs, know that you are taxing American families, y…" +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: @SecretaryRoss Chairman @senorrinhatch: “These actions target our allies…with whom our trade in steel and aluminum produ… +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: HAPPENING NOW: The Finance Committee is convening a hearing to discuss new tariffs, quotas with @SecretaryRoss. Watch: h…" +06/20/2018,Politicians,@senorrinhatch,RT @MariannaNBCNews: Sen. Hatch & other senators sent a letter to AG Session yesterday asking him to halt separations like this until Congr… +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: @senorrinhatch @SecretaryRoss What is Section 232 of the Trade Expansion Act of 1962? Fast facts on steel and aluminum t… +06/20/2018,Politicians,@senorrinhatch,"RT @SenateMajLdr: I support, and all of the members of the Republican Conference support, a plan that keeps families together while their i…" +06/20/2018,Politicians,@senorrinhatch,RT @KSLAndrew: NEW: @senorrinhatch leads Utah delegation in calling for an end to the child separation policy being enforced. @KSL5TV #KSLA… +06/20/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: In addition to calling on the administration to halt family separations while Congress works on a legislative solution,…" +06/20/2018,Politicians,@senorrinhatch,RT @senorrinhatch: NEWS: Hatch @SenJohnMcCain @SenPatRoberts @SenatorCollins @lisamurkowski @SenBobCorker @SenAlexander @JohnBoozman @SenDe… +06/20/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: America is better than this inhumane, anti-family zero-tolerance policy. That's why Hatch and 12 other Republican Senato…" +06/20/2018,Politicians,@senorrinhatch,"“Tender age shelters” is a chilling phrase we will not soon forget. + +The child separation policy should be halted… https://t.co/3xE07l0esP" +06/20/2018,Politicians,@senorrinhatch,RT @senrobportman: Proud to join my colleagues in signing on to @senorrinhatch letter urging @TheJusticeDept to stop the practice of separa… +06/19/2018,Politicians,@senorrinhatch,"Perhaps one of the most important insights: ""Panicky lawmaking often produces absurd results."" + +All the more reaso… https://t.co/F2QkTHmPQR" +06/19/2018,Politicians,@senorrinhatch,Valuable deep-dive from @gabrielmalor-- Democrats’ Border Separation Bill Would Let Nearly All Parents Who Commit F… https://t.co/APEAht2m7e +06/19/2018,Politicians,@senorrinhatch,In addition to calling on the administration to halt family separations while Congress works on a legislative solut… https://t.co/BGiyz4ePVE +06/19/2018,Politicians,@senorrinhatch,RT @SenBobCorker: Joined @senorrinhatch and 11 of our colleagues today in calling on the Justice Department to halt family separations whil… +06/19/2018,Politicians,@senorrinhatch,RT @MicahTNDC: NEW: @SenBobCorker joins @senorrinhatch-led letter to Attorney General Sessions calling for a halt to the practice of separa… +06/19/2018,Politicians,@senorrinhatch,RT @SenatorLankford: I have joined 12 of my colleagues in calling on Attorney General Jeff Sessions & the Dept. of Justice to halt family s… +06/19/2018,Politicians,@senorrinhatch,"RT @edokeefe: JUST IN: @OrrinHatch sends letter to asking DOJ to stop separating immigrant families ""while Congress works out a solution.""…" +06/19/2018,Politicians,@senorrinhatch,"RT @DeseretNews: The letter concludes by saying @OrrinHatch and the 12 other @GOP senators who signed it ""believe a reasonable path forward…" +06/19/2018,Politicians,@senorrinhatch,"The final letter that went to AG Sessions, complete with signatures from @SenJohnMcCain @SenPatRoberts… https://t.co/rifmOqix9e" +06/19/2018,Politicians,@senorrinhatch,RT @KUTV2News: @senorrinhatch and 12 other #Republican senators have signed a letter to the Justice Department asking Jeff Sessions to halt… +06/19/2018,Politicians,@senorrinhatch,An interesting contrast from our focus on stopping these terrible separations as soon as possible.… https://t.co/TIDEnvfD2k +06/19/2018,Politicians,@senorrinhatch,"America is better than this inhumane, anti-family zero-tolerance policy. That's why Hatch and 12 other Republican S… https://t.co/lwLTvP0mgb" +06/19/2018,Politicians,@senorrinhatch,"RT @NBCNews: NEW: Sen. Hatch and 11 other Republican senators send letter to AG Sessions, calling on Justice Dept. ""to halt family separati…" +06/19/2018,Politicians,@senorrinhatch,@CoriAStevens Done. https://t.co/12Az53kxwO +06/19/2018,Politicians,@senorrinhatch,"RT @abc4utah: .@senorrinhatch, 12 senators call on Justice Dept. to stop family separations while Congress works on a solution: https://t.c…" +06/19/2018,Politicians,@senorrinhatch,RT @SenDeanHeller: I along with 11 of my colleagues today urged U.S. Attorney General Jeff Sessions to stop the practice of separating fami… +06/19/2018,Politicians,@senorrinhatch,RT @Phil_Mattingly: 12 GOP Sens sign onto @senorrinhatch’s letter asking DOJ to freeze it’s “zero tolerance” policy as Hill works to addres… +06/19/2018,Politicians,@senorrinhatch,RT @SenatorCollins: I joined 12 colleagues led by @senorrinhatch calling on the Administration to stop separating children from their paren… +06/19/2018,Politicians,@senorrinhatch,RT @sahilkapur: 12 GOP senators send a letter to AG Sessions asking him to halt family separation out of “human decency” as Congress works… +06/19/2018,Politicians,@senorrinhatch,RT @seungminkim: The Senate Rs who disagree with the admin and believe Trump can temporarily halt zero-tolerance policy (and have written t… +06/19/2018,Politicians,@senorrinhatch,"RT @FoxReports: Pretty diverse group of Republicans there, revealing how widespread concerns are. https://t.co/8aEZHjGNSd" +07/01/2018,Economists,@DeanBaker13,"yes, well the Democrats could get a Nobel prize in political incompetence, but they could lose an election regardle… https://t.co/xWs4wHebXJ" +07/01/2018,Economists,@DeanBaker13,Probably the simplest would be a discussion of the 16.5% growth under the wimp Jimmy Carter in the second quarter o… https://t.co/StFu4PYPoW +07/01/2018,Economists,@DeanBaker13,"RT @LisaBrabson: PRECIOUS JOKER IS STILL WAITING FOR HIS FOREVER HOME! IF THIS LOVING LITTLE GUY DOESN'T MAKE U SMILE, NOTHING WILL! #ADOPT…" +07/01/2018,Economists,@DeanBaker13,@becks67 we're subsidizing Gates' outfit with a variety of tax privileges. If you want to know what we're subsidizing look on his website +07/01/2018,Economists,@DeanBaker13,"we need people who innovate, not people who violate anti-trust laws to make themselves rich. (we already have plent… https://t.co/opa69hD09v" +06/30/2018,Economists,@DeanBaker13,"@atrupar Right, and according to Rudy Giuliana, he is too busy golfing there is give testimony to Mueller" +06/30/2018,Economists,@DeanBaker13,RT @virginiarutter: #FamiliesBelongTogetherDC https://t.co/oXrRsphAOE +06/30/2018,Economists,@DeanBaker13,RT @Ballymagibbon: Roger Goodell made about $32 million in 2015 and the NFL is a tax exempt organization. https://t.co/S47b6A5CIM +06/30/2018,Economists,@DeanBaker13,"well, I'm a fan of having research in the public domain, but in a glance the implication is that Norway had been mu… https://t.co/64S6CQwgfs" +06/30/2018,Economists,@DeanBaker13,"@becks67 Fine, Gates can give them all the money he wants, I'm just asking why the taxpayers have to subsidize him" +06/30/2018,Economists,@DeanBaker13,@R_Thaler In principle foundations are engaged in activities to further the public good -- no pretense of that with… https://t.co/JltoTfgd7v +06/30/2018,Economists,@DeanBaker13,"In many cases, yes -- probably better they play with stocks and derivatives than obstruct the work of a major found… https://t.co/fpyXkDPNX8" +06/30/2018,Economists,@DeanBaker13,RT @jodiecongirl: @yogawithcorrie @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates *raises hand* how do I get put on this… +06/30/2018,Economists,@DeanBaker13,"RT @ceprdc: There is a fundamental flaw in the way that both Donald Trump and his critics generally talk about trade, writes @DeanBaker13.…" +06/30/2018,Economists,@DeanBaker13,"RT @yogawithcorrie: @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates I'm know really smart, educated, passionate women who…" +06/30/2018,Economists,@DeanBaker13,"so you think non-profit spending would go to zero without the tax subsidy? FWIW, the federal government has no prob… https://t.co/bBXR0DPpRs" +06/30/2018,Economists,@DeanBaker13,Thanks -- I don't take it personally. No two people will agree on everything https://t.co/pouzJZtTQX +06/30/2018,Economists,@DeanBaker13,here you go https://t.co/4gtfUObfKH https://t.co/bj4P9nKjQk +06/30/2018,Economists,@DeanBaker13,"yes, it would be great for the government to directly develop some drugs and then place them in public domain to be… https://t.co/qc6qOwIkW3" +06/30/2018,Economists,@DeanBaker13,"that's wonderful -- but if they can't get good help for less than $400k, then they can do their work without the ta… https://t.co/FMghY6DGCI" +06/30/2018,Economists,@DeanBaker13,"@APKeyton @gatesfoundation @BillGates @melindagates on the point on CEO pay, we do have an enormous problem of corr… https://t.co/Ut4yysR00T" +06/30/2018,Economists,@DeanBaker13,"So if taxpayers don't subsidize basketball (unfortunately we do), in your world we are ""discouraging"" basketball, w… https://t.co/NNCvMTq35L" +06/30/2018,Economists,@DeanBaker13,show your work. How have you determined that we get more from our subsidies to non-profits than if the government s… https://t.co/R7jHNiNxtl +06/30/2018,Economists,@DeanBaker13,"I know many outstanding people who do ""great things"" for much less than $400k. If the Gates Foundation can't find a… https://t.co/X9X6BHSZ0G" +06/30/2018,Economists,@DeanBaker13,@davidfrum @TheAtlantic Amazing how many pieces get published recycling the same bad argument about how the trade d… https://t.co/3OI7Mp8VKL +06/30/2018,Economists,@DeanBaker13,"fine, they can improve those https://t.co/KuWt38fkTJ" +06/30/2018,Economists,@DeanBaker13,"how about ""start"" wherever you can.Usually advice on starting points is about creating a stopping point. And in my… https://t.co/O5795ud9RT" +06/30/2018,Economists,@DeanBaker13,RT @01wise: @DeanBaker13 I look at the 990s and will not contribute to or work for a nonprofit that overpays its execs. +06/30/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Yes, and something that can be done at the state or local level. It would be great to see some charity pick and up move be…" +06/30/2018,Economists,@DeanBaker13,RT @tedhattemer: .@senrobportman Why the Tax Act Will Not Boost Investment: https://t.co/MUs8VagwTn @theprospect @DeanBaker13 +06/30/2018,Economists,@DeanBaker13,RT @nycsouthpaw: It’s not said often enough that there’s a broad spectrum of apparent wrongdoing by Trump and his family outside of the Ru… +06/30/2018,Economists,@DeanBaker13,@ClancyReports I'm sure that's an important credential to @realDonaldTrump. But Paul Ryan and Mitch McConnell say i… https://t.co/LrUJo445so +06/30/2018,Economists,@DeanBaker13,Funny how reporters don't seem to ask about this. https://t.co/rW9lAgwzxw +06/30/2018,Economists,@DeanBaker13,"RT @MilesGrant: The largest US trucking company, Knight-Swift, had a 2017 net income of $485M. Maybe they could afford to pay to train new…" +06/30/2018,Economists,@DeanBaker13,"RT @drlisadcook: Yes! Better 100 years late than never, US Senate. The Dyer Anti-Lynching Bill was introduced in 1918 and 1922. It was pass…" +06/30/2018,Economists,@DeanBaker13,"Maybe I'll recycle one of the old ones. @TheAtlantic can't afford to pay for original arguments, why should I both… https://t.co/0Jevhj19bL" +06/30/2018,Economists,@DeanBaker13,"Exactly, but the @washingtonpost is too busy focusing on how truckers might get a pay increase to pay attention to… https://t.co/iR8agAUZMT" +06/30/2018,Economists,@DeanBaker13,"Yes, and something that can be done at the state or local level. It would be great to see some charity pick and up… https://t.co/iFmtdjUD41" +06/30/2018,Economists,@DeanBaker13,RT @TAOWhiteboard: Of a part with the populism elsewhere. Difference is those disenfranchised in Mexico are pointing at the economic elite… +06/30/2018,Economists,@DeanBaker13,"RT @JimZarroli: @DeanBaker13 says ""there is zero evidence anywhere of an investment boom induced by the tax cut."" + +https://t.co/KKuOouqiRf" +06/30/2018,Economists,@DeanBaker13,RT @DeanBaker13: Six months in and reality TV show host @realDonaldTrump is still keeping the investment boom from his tax cut hidden https… +06/30/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Under the ""Baker Rule"" they lose tax exempt status if they pay the boss more than the president's $400k. If they can't fin…" +06/30/2018,Economists,@DeanBaker13,"Hey, they take their lead from the president. He didn't know there were more than two amendments. (And, he's not su… https://t.co/zw9hhJUBZx" +06/30/2018,Economists,@DeanBaker13,It's the sort of incredibly confused piece that makes you really really wish we had more open trade in professional… https://t.co/hEYsEgRqw4 +06/30/2018,Economists,@DeanBaker13,"RT @DavidCayJ: How about @DCReportMedia which has broken story after story. We’re nonprofit, no advertising, covering what Trump does, not…" +06/30/2018,Economists,@DeanBaker13,Six months in and reality TV show host @realDonaldTrump is still keeping the investment boom from his tax cut hidden https://t.co/iRJ7HuHFbV +06/30/2018,Economists,@DeanBaker13,As Mexico is about elect a left-wing populist in a landslide everyone is looking forward to another @washingtonpost… https://t.co/Ici35B8LK3 +06/30/2018,Economists,@DeanBaker13,The @washingtonpost is very upset that truckers might get higher pay -- maybe wages will even rise all the way back… https://t.co/jTIfuiqCb1 +06/30/2018,Economists,@DeanBaker13,That's what happens when you rig the system to give all the money to Bill Gates and Jeff Bezos https://t.co/es2oZg4PBn +06/30/2018,Economists,@DeanBaker13,"Under the ""Baker Rule"" they lose tax exempt status if they pay the boss more than the president's $400k. If they ca… https://t.co/Lpl2JV5UaV" +06/30/2018,Economists,@DeanBaker13,"It's not really down, its weak measured as a share of economy. It will take more demand growth to get more. Likely… https://t.co/uJKqa684Cv" +06/30/2018,Economists,@DeanBaker13,"@TheRunUp2020 Yes, trade is going to produce winners and losers in both countries. That's the standard economics. T… https://t.co/7pBJZqkBjS" +06/30/2018,Economists,@DeanBaker13,"RT @greenrya004: @marklemley It’s time for a different mechanism for financing innovation. What do you think, @DeanBaker13? + +https://t.co/S…" +06/30/2018,Economists,@DeanBaker13,"RT @NewYorker: In 2012, Israel approved 92% of medical permits for Gazans. But, since the beginning of 2018, with no announcement of a chan…" +06/30/2018,Economists,@DeanBaker13,RT @banditelli: This is the labor movement I signed up for https://t.co/AL99HduEPf +06/30/2018,Economists,@DeanBaker13,"@les_mos right, far more important than NAFTA" +06/30/2018,Economists,@DeanBaker13,RT @ryangrim: Good thread here. Moulton clearly has leadership aspirations... https://t.co/SaX4FRPfBn +06/30/2018,Economists,@DeanBaker13,RT @DeanBaker13: A pattern of lying about NAFTA and trade by elite news outlets like the @washingtonpost helped pave the way for demagogues… +06/30/2018,Economists,@DeanBaker13,We look at employment levels in manufacturing and note the sharp unprecedented fall in the years 2000-2007 that cor… https://t.co/3KAK4aQDE0 +06/30/2018,Economists,@DeanBaker13,"RT @SethHanlon: 4. Six months later, there is no sign of the enormous investment boom that tax cut proponents promised. + +--from “Why the Ta…" +06/30/2018,Economists,@DeanBaker13,Can't take credit on this one https://t.co/DfjN759D7u +06/30/2018,Economists,@DeanBaker13,"no, it isn't. You have to adjust for inflation https://t.co/uI3KnbRgf5" +06/29/2018,Economists,@DeanBaker13,RT @elvislevel: @mattyglesias @DeanBaker13 If they were having trouble finding CEOs offered salaries would be infinity by now. +06/29/2018,Economists,@DeanBaker13,"This is an important corrective to the idea that somehow Mexico ""won"" with NAFTA. Rich people in both countries won… https://t.co/GDJ5Mrj9P9" +06/29/2018,Economists,@DeanBaker13,"RT @SlateUnion: 1/ After weeks of bargaining, we’re proud to say we’ve made progress with management on many key issues. We’re also, frankl…" +06/29/2018,Economists,@DeanBaker13,"RT @mattyglesias: Some useful context on the truck driver shortage from @DeanBaker13 who notes that despite a decade of rising pay, the sec…" +06/29/2018,Economists,@DeanBaker13,RT @ceprdc: Really? Wapo claims: America’s severe trucker shortage could undermine the prosperous economy. @DeanBaker13 replies: the real h… +06/29/2018,Economists,@DeanBaker13,Thanks Jim https://t.co/c2Mt0ZQDeN +06/29/2018,Economists,@DeanBaker13,It's not always easy in Washington to be able to tell which way is up. https://t.co/gL1FXtZ0xm +06/29/2018,Economists,@DeanBaker13,RT @LoganMohtashami: @DeanBaker13 https://t.co/1St2eSALlW +06/29/2018,Economists,@DeanBaker13,arguably the late 1990s. The point is that when labor markets get tight companies have incentive to economize on la… https://t.co/wflVYsB307 +06/29/2018,Economists,@DeanBaker13,"@S_G_Alexander @washingtonpost @realDonaldTrump My guess is they are ill-informed, but they like the conclusion of… https://t.co/WNIyZpT3lG" +06/29/2018,Economists,@DeanBaker13,"Yes, it often does. If people get more unnecessary tests and procedures or ineffective drugs that would increase me… https://t.co/I3C061sOAB" +06/29/2018,Economists,@DeanBaker13,RT @DeanBaker13: With a left-wing candidate about to be elected president in Mexico isn't time for the @washingtonpost to have another piec… +06/29/2018,Economists,@DeanBaker13,"RT @jamieson: Oh no, exploited truckers might get raises. cc @DeanBaker13 https://t.co/YHuJtM0pbe" +06/29/2018,Economists,@DeanBaker13,"I didn't say ""flat,"" we have had unusually SLOW productivity growth over the last 12 years. It was much more rapid… https://t.co/NAl47de9Xa" +06/29/2018,Economists,@DeanBaker13,RT @DavidCayJ: Larry is either lying or being willfully blind so Donald keeps him. Deficit is exploding as @DCReportMedia showed this week.… +06/29/2018,Economists,@DeanBaker13,A pattern of lying about NAFTA and trade by elite news outlets like the @washingtonpost helped pave the way for dem… https://t.co/GoWpT434ms +06/29/2018,Economists,@DeanBaker13,The @washingtonpost is worried that in a tight labor market truckers' pay could rise back to its 1990 levels https://t.co/QWcUysxqx5 +06/29/2018,Economists,@DeanBaker13,RT @DeanBaker13: it would interesting to see if the NYT or WaPo would allow a columnist to so badly misrepresent data in a way that reflect… +06/29/2018,Economists,@DeanBaker13,"I think demand is a big factor, but that is not the standard view among economists. https://t.co/oA7LydhUay" +06/29/2018,Economists,@DeanBaker13,The @washingtonpost is really really concerned that truckers might get more money due to the market. They don't hav… https://t.co/AIpFJ6hArv +06/29/2018,Economists,@DeanBaker13,I have no idea what you think you're saying. You're arguing that productivity growth will be zero going forward? St… https://t.co/Hjpv1yGfx5 +06/29/2018,Economists,@DeanBaker13,of course given the protections that drive up prices (e.g. patent monopolies and licensing restrictions that limite… https://t.co/3Yy6VVC9Vx +06/29/2018,Economists,@DeanBaker13,"they was a fall in 2008-09 due to the recession, since then shares haven't changed much https://t.co/PTTc7kC0yj" +06/29/2018,Economists,@DeanBaker13,"actually, we don't see much automation -- productivity growth has been very slow in the last decade. That has in fa… https://t.co/YlXtSumVaE" +06/29/2018,Economists,@DeanBaker13,RT @ryangrim: This is horrifying. Tweet found by Nathan Kosted: https://t.co/DRziZtOzIs https://t.co/UvkVc1N8Jc +06/29/2018,Economists,@DeanBaker13,"comment, they just have to adopt the name everyone else uses for them, ""No Way"" https://t.co/WkrZvEktH2" +06/29/2018,Economists,@DeanBaker13,RT @FAIRmediawatch: The reason millions of manufacturing workers lost their jobs in the first decade of the 21st century was decisions on… +06/29/2018,Economists,@DeanBaker13,"@Asif_H_Abdullah cool, sounds like a way to boost productivity growth. Hope you're right" +06/28/2018,Economists,@DeanBaker13,"@CCMarimba I have seen work years ago, but can't think of it offhand. My guess is that China is an important part… https://t.co/0B2APY79Lp" +06/28/2018,Economists,@DeanBaker13,it would interesting to see if the NYT or WaPo would allow a columnist to so badly misrepresent data in a way that… https://t.co/67pKpg6sjg +06/28/2018,Economists,@DeanBaker13,"sorry, meant to say 2004 -- longest period of zero growth on his graph https://t.co/W5Z8CT41ZF" +06/28/2018,Economists,@DeanBaker13,"@KarenRylander BLS has it here -- have to do some clicking through, but should be straightforward https://t.co/tNWiWeLNhb" +06/28/2018,Economists,@DeanBaker13,"@washingtonpost has yet another hysterical piece about the trucker shortage. Who are you going to believe, the truc… https://t.co/CofLlExSkh" +06/28/2018,Economists,@DeanBaker13,"yeah, the 2007 level is below the 2000 level -- this is the China trade effect https://t.co/e5efMad5Tc" +06/28/2018,Economists,@DeanBaker13,"There is a huge plunge in actual manufacturing employment levels, which is why people who are trying to deny the ef… https://t.co/fabP1ReIlY" +06/28/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Check out @TheAmericasBlog throughout the day Sunday for ongoing updates on the #MexicanElection #EleccionesMexico from obs… +06/28/2018,Economists,@DeanBaker13,"RT @MarkWeisbrot: It's not surprising that when the Trump administration fights with China, it fights for the owners of intellectual proper…" +06/28/2018,Economists,@DeanBaker13,@KarenRylander @FAIRmediawatch NAFTA didn't have much impact on overall manufacturing employment. although China di… https://t.co/1q1ENOLALT +06/28/2018,Economists,@DeanBaker13,"They obviously misspoke, they meant to say that Third Way means nothing for the future of the Democratic Party https://t.co/nuZde9CN92" +06/28/2018,Economists,@DeanBaker13,RT @FAIRmediawatch: Soaring Cost of Clues Leaves Thomas Friedman Apparently Unable to Buy One https://t.co/ABlVTJ4S0P https://t.co/Oz3xMloi… +06/28/2018,Economists,@DeanBaker13,RT @ceprdc: Want to Boost the Economy? Give mothers and others #PaidLeave #WeEarnedIt https://t.co/T79k0Zw731 +06/28/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Holy cow - wait until @realDonaldTrump sees the size of those crowds! Would be interesting to put them side by side with pi… +06/28/2018,Economists,@DeanBaker13,"RT @ceprdc: Got investment boom? We got new data on capital goods orders yesterday and the data disagree, says @DeanBaker13. No boom means…" +06/28/2018,Economists,@DeanBaker13,"RT @hardindr: @Dan_Beeton @DeanBaker13 I wrote to the #WaPo’s editorial staff about the claim, asking for a clarification/correction, they…" +06/28/2018,Economists,@DeanBaker13,"good piece, I keep hoping that one day we get a billionaire who cares about public health who can buy up rights to… https://t.co/5QT75Kx4Fn" +06/28/2018,Economists,@DeanBaker13,@pdacosta Just think when @realDonaldTrump is in prison he will be amazed to discover that everyone there is innoce… https://t.co/zdFRmxWTvW +06/28/2018,Economists,@DeanBaker13,RT @JakobJohnston: It's been nine years since the Honduran president was seized while still in his pajamas and exiled from the country. The… +06/28/2018,Economists,@DeanBaker13,RT @joshbivens_DC: The Janus decision is a far scarier portent about the 'future of work' than any article you've read about advances in AI… +06/28/2018,Economists,@DeanBaker13,"RT @Dan_Beeton: ""The Post even went full Trump back in 2007 when it made up the absurd claim that #NAFTA had led Mexico's economy to quadru…" +06/28/2018,Economists,@DeanBaker13,RT @LandisWeaver: The link between overpaid directors & overpaid CEOs needs to be more fully explored. Seems to me that just collegial huma… +06/28/2018,Economists,@DeanBaker13,RT @AlanBdc: We sometimes confuse the difference between a campaign and a movement. Campaigns come and go but movements are built to last a… +06/28/2018,Economists,@DeanBaker13,As Mexico prepared to elect a left-wing president isn't time for another @washingtonpost article telling us how NAF… https://t.co/rCU2SLPWVG +06/28/2018,Economists,@DeanBaker13,RT @DeanBaker13: The NYT tells us about the suffering of Denver area employers who depend on cheap foreign labor https://t.co/BCNGmqrrK8 +06/28/2018,Economists,@DeanBaker13,RT @DeanBaker13: More data confirms the Trump tax cut induced investment boom https://t.co/nggZBLz9GZ (kidding of course -- I don't take dr… +06/28/2018,Economists,@DeanBaker13,"@WWouldJakeDo I'm proposing different rules that would give shareholders more control. It's in Rigged, chapter 6 https://t.co/HfhMSp00XT" +06/28/2018,Economists,@DeanBaker13,actually the government does set rules on corporate governance -- sorry to inform you -- so it's not just a private… https://t.co/KOQ59AujqD +06/28/2018,Economists,@DeanBaker13,"RT @wiumlie: «The large ""404"" error message on the front page of the Norwegian website https://t.co/tDkc9LyPX8 looks a lot like an ""SOS"" si…" +06/28/2018,Economists,@DeanBaker13,@powellnyt It's probably happening in his head. There's plenty of room there. +06/28/2018,Economists,@DeanBaker13,exactly -- what aren't conservatives more worried about the corruption of corporate governance? https://t.co/q12s3Pz0R4 +06/28/2018,Economists,@DeanBaker13,RT @shawnsebastian: Among the topics covered will be recent research by @DeanBaker13 showing that unprecedented rises in housing costs are… +06/28/2018,Economists,@DeanBaker13,"yes, higher prices today are definitely being driven by market fundamentals, in contrast to the run-up in house pri… https://t.co/vPJyt1Rfpu" +06/28/2018,Economists,@DeanBaker13,With a left-wing candidate about to be elected president in Mexico isn't time for the @washingtonpost to have anoth… https://t.co/K75fGdE7VU +06/28/2018,Economists,@DeanBaker13,"I think they are really worried the unemployment rate is too low. If that is the only variable you look at, it is c… https://t.co/BdYOhQUPPm" +06/28/2018,Economists,@DeanBaker13,@washingtonpost columnist Dana Milbank doesn't know that bankers don't give campaign contributions to politicians w… https://t.co/brNaHFtfiB +06/28/2018,Economists,@DeanBaker13,More data confirms the Trump tax cut induced investment boom https://t.co/nggZBLz9GZ (kidding of course -- I don't take drugs) +06/28/2018,Economists,@DeanBaker13,"RT @nywolforg: This is what an American icon looks like. +And she's facing extinction at the hands of the government. https://t.co/LpyOpt…" +06/28/2018,Economists,@DeanBaker13,The NYT tells us about the suffering of Denver area employers who depend on cheap foreign labor https://t.co/BCNGmqrrK8 +06/28/2018,Economists,@DeanBaker13,"It is one way, there are other ways to pay people https://t.co/NmQpUWPaL9" +06/28/2018,Economists,@DeanBaker13,"actually, I would leave copyright -- just fund stuff in the public domain. My guess is no one would then give a pen… https://t.co/Cz5ptIyCZc" +06/28/2018,Economists,@DeanBaker13,"@DonaldJTrumpJr @realDonaldTrump If you had just stopped at ""I don't think,"" you might actually have been telling the truth." +06/28/2018,Economists,@DeanBaker13,"@AusTaxProf @JohnQuiggin And childcare, like education more generally, should be publicly supported. Goods prospect… https://t.co/kEbtHpktiE" +06/28/2018,Economists,@DeanBaker13,@AusTaxProf @JohnQuiggin I think there are certainly cases where we need to bring back some anti-trust power. Faceb… https://t.co/Cji4rU0tsD +06/28/2018,Economists,@DeanBaker13,@ComradeVeidt @danielhahn02 @Hagahoonda It's not especially about begging. Try rereading it. +06/28/2018,Economists,@DeanBaker13,@Soc_of_Authors @ALCS_UK @PhilipPullman @danielhahn02 @WomackPhilip @nicolamorgan @MARYMHOFFMAN @lucindahawksley… https://t.co/erF9RVziAM +06/27/2018,Economists,@DeanBaker13,"RT @lydiadepillis: Texas business interests don't really want E-verify. Along with social issues like transgender bathrooms, it's one of th…" +06/27/2018,Economists,@DeanBaker13,Thanks Julie -- we'll get the bastards! https://t.co/sTTXCucZ11 +06/27/2018,Economists,@DeanBaker13,RT @reftpt: ⁦@DeanBaker13⁩ https://t.co/C1EmV9RYou +06/27/2018,Economists,@DeanBaker13,"RT @ceprdc: Using the wrong measure of inflation could result in the #Fed raising interest rates prematurely, needlessly keeping people out…" +06/27/2018,Economists,@DeanBaker13,RT @DeanBaker13: Thomas Friedman is badly confused again. No one told him the about the explosion of the trade deficit in the last decade s… +06/27/2018,Economists,@DeanBaker13,RT @ananavarro: I really don’t care. Do you? https://t.co/3v3fM7XD3v +06/27/2018,Economists,@DeanBaker13,Apparently no one told Justice Alito that in this country workers are free to work for another employer. That is wh… https://t.co/qQvMo5LOCh +06/27/2018,Economists,@DeanBaker13,"well, with management like EPI's, they need a union! :) https://t.co/STQIXJiBxY" +06/27/2018,Economists,@DeanBaker13,"RT @ceprdc: ""You have this commitment to what the IMF and the government call fiscal consolidation. So when the economy begins to grow...th…" +06/27/2018,Economists,@DeanBaker13,RT @DeanBaker13: The @washingtonpost doesn't want to talk (honestly) about the federal debt https://t.co/KVeFNJtBRG +06/27/2018,Economists,@DeanBaker13,RT @drbwhit23: @DeanBaker13 @washingtonpost As a nobody every day citizen with pretty much zero power I’m asking that you post this link ev… +06/27/2018,Economists,@DeanBaker13,thanks https://t.co/p4jWa1OjZR +06/27/2018,Economists,@DeanBaker13,"RT @lydiadepillis: If you take out housing costs, @DeanBaker13 points out, the economy looks a lot cooler than the overall inflation rate s…" +06/27/2018,Economists,@DeanBaker13,@JohnQuiggin how about my book Rigged https://t.co/HfhMSp00XT +06/27/2018,Economists,@DeanBaker13,thanks -- I look forward to seeing it https://t.co/QKlncSpBVc +06/27/2018,Economists,@DeanBaker13,"Fine with the plug, also a big Hacker fan, but FWIW, I was making this distinction (without the terms) long before… https://t.co/bD4WRnl2Ll" +06/27/2018,Economists,@DeanBaker13,The @washingtonpost doesn't want to talk (honestly) about the federal debt https://t.co/KVeFNJtBRG +06/27/2018,Economists,@DeanBaker13,Thomas Friedman is badly confused again. No one told him the about the explosion of the trade deficit in the last d… https://t.co/lMKCyTI62C +06/27/2018,Economists,@DeanBaker13,"RT @inclusionist: .@GlennThrush just spitballing here, maybe it’s a calculated move to tap into racist stereotyping that drives white oppos…" +06/27/2018,Economists,@DeanBaker13,"If you have some HH data on the distribution of gains under Erdogan, that would be interesting to see https://t.co/8QiRQ4gkq3" +06/27/2018,Economists,@DeanBaker13,"@maryanneconlin @Petersen_econ @SamuelGeorge76 @BertelsmannFdn @GED_Tweet thanks, I'll take a look" +06/27/2018,Economists,@DeanBaker13,"I'm fine with higher taxes, but how about reducing the protection that makes them rich in the first place: shorter… https://t.co/qp59NFZ9qe" +06/27/2018,Economists,@DeanBaker13,RT @aramis2377: Just think how many various bodily fluids Trump has unwittingly eaten at his own properties. Makes me smile. https://t.co/5… +06/27/2018,Economists,@DeanBaker13,"RT @wsquared58: @maryanneconlin @DeanBaker13 You can rest assured, this is already happening. As an ex-restaurant worker, this is how you g…" +06/27/2018,Economists,@DeanBaker13,"RT @mattyglesias: A restaurant owner declined to serve SHS. + +In response Trump lied about the restaurant’s cleanliness and his supporters…" +06/27/2018,Economists,@DeanBaker13,RT @boes_: Here's the full @DeanBaker13 paper on U.S. housing inflation and Fed policy https://t.co/KSwlhmQ3KX +06/27/2018,Economists,@DeanBaker13,RT @rortybomb: Note how naturally @Ocasio2018's message of strong working-class security goes with diversity and racial solidarity. All the… +06/27/2018,Economists,@DeanBaker13,RT @maryanneconlin: What I really like about this idea is no one has to actually DO anything - just RT and make this go viral - will scare… +06/27/2018,Economists,@DeanBaker13,thanks https://t.co/8Cq8eu9IMW +06/27/2018,Economists,@DeanBaker13,"what do you mean, it was competitive, Crowley got slammed https://t.co/RMVdQe5LWC" +06/27/2018,Economists,@DeanBaker13,you didn't hear it from me https://t.co/XoCtNRSl5H +06/26/2018,Economists,@DeanBaker13,I did https://t.co/7FgdGgYL77 +06/26/2018,Economists,@DeanBaker13,I'll confess to what we did many years ago when I worked in restaurants and we had an especially awful customer: we… https://t.co/6ZHOMImDWs +06/26/2018,Economists,@DeanBaker13,"RT @ceprdc: New @ceprdc report concludes that Mexico's persistent sluggish economic growth, poverty, and inequality are rooted in a set of…" +06/26/2018,Economists,@DeanBaker13,"and people trust this guy with their money? Damn, I want a list of big Tesla stockholders. https://t.co/yl6o2pb7tK" +06/26/2018,Economists,@DeanBaker13,"RT @WSpriggs: Dr @MonaHannaA and @RepDanKildee discuss the evolution of the Flint water crisis - - austerity, anti-democratic, racism all…" +06/26/2018,Economists,@DeanBaker13,And Speaker Ryan and the rest of the Republicans in Congress will say its fine because #richpeopleneedtaxcuts https://t.co/mdHbcv6avW +06/26/2018,Economists,@DeanBaker13,"If the Dems ever retake power, they have to double the pensions for judges and allow them to collect early. It will… https://t.co/wLQW7OGBPJ" +06/26/2018,Economists,@DeanBaker13,Work sharing and shorter work years are the best way to fight job-killing robots https://t.co/LoJHMRhc9v +06/26/2018,Economists,@DeanBaker13,I guess the Third Way crew has a hard time getting productivity data https://t.co/CyJ9L4GXkv +06/26/2018,Economists,@DeanBaker13,"@realDonaldTrump Hey Donnie boy, have you found those children you lost yet?" +06/26/2018,Economists,@DeanBaker13,"Branko, +can you recommend any good pieces on Turkey's economy on Erdogan? The data on the surface are really impres… https://t.co/JsWdGogHHH" +06/26/2018,Economists,@DeanBaker13,RT @JoshuaHol: This one aged well... https://t.co/dytHtbQV7u +06/26/2018,Economists,@DeanBaker13,"RT @ceprdc: Rising housing costs are caused by lack of supply. If the #Fed continues to raise interest rates, building more houses becomes…" +06/26/2018,Economists,@DeanBaker13,RT @mimi1bandolera: @DeanBaker13 @NBCNews Call 202-224-3121 @SpeakerRyan Tell him to demand @realDonaldTrump @POTUS apologize for his vile… +06/26/2018,Economists,@DeanBaker13,@NBCNews I guess Speaker Ryan has been following politics in the United States for the last quarter century +06/26/2018,Economists,@DeanBaker13,"RT @inclusionist: I see you and raise you @DeanBaker13, ""White Welfare House"" would be even better: + +https://t.co/6SN33AL0Fs" +06/26/2018,Economists,@DeanBaker13,Thanks https://t.co/af8kEMMmja +06/26/2018,Economists,@DeanBaker13,"@realDonaldTrump Hey s**t for brains, get yourself a copy of the constitution. Congress imposes taxes, not you. Fur… https://t.co/xpRY4FYDRI" +06/26/2018,Economists,@DeanBaker13,RT @daveweigel: I think the “Trump voter who was gonna sit out 2018 until Maxine Waters said that thing” and the “Dem voter who will sit ou… +06/26/2018,Economists,@DeanBaker13,"Reporters continually feel the need to tell us what people think, as opposed to what say and do. https://t.co/cmBiGKmt8H" +06/26/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Hey, maybe you should spend less time giving restaurant management advice and more time trying to find those children you…" +06/26/2018,Economists,@DeanBaker13,"Of course the bigger issue is probably not Gergen, but CNN. Why would you have someone on a major network as an exp… https://t.co/PF4v9hbjHL" +06/26/2018,Economists,@DeanBaker13,"yes, but there is a reason it inverts -- the Fed is raising rates trying to slow the economy. So the inversion is n… https://t.co/88tQ4zHvVG" +06/26/2018,Economists,@DeanBaker13,thanks https://t.co/DYb1yajF7O +06/26/2018,Economists,@DeanBaker13,very useful book -- count me a fan https://t.co/WKVDYJNJqy +06/26/2018,Economists,@DeanBaker13,"yep, it's a civility classic https://t.co/X84izP4BUu" +06/26/2018,Economists,@DeanBaker13,"RT @DeanBaker13: cheap solar panels and electric cars, the downsides of China's ""theft"" of our intellectual property https://t.co/Gh11rZLG41" +06/26/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Mr, Gergen, here is some of that good sixties era civility https://t.co/GBvtidbYGZ This is from a sparsely attended gathe…" +06/26/2018,Economists,@DeanBaker13,RT @DeanBaker13: Thanks. We really need some debate on mechanisms. It is standard to act like copyrights and patents in their current form… +06/26/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Trade war or class war? China will soon have much more innovation to ""steal"" than the United States https://t.co/2mG6rlWEG0" +06/26/2018,Economists,@DeanBaker13,RT @DeanBaker13: Gergen obviously is not old enough to remember the sixties https://t.co/uFgeoWenJ8 +06/26/2018,Economists,@DeanBaker13,RT @paulkrugman: This post by @DeanBaker13 is slightly unfair to my paper -- the headline on the editorial may give the impression that the… +06/26/2018,Economists,@DeanBaker13,"RT @jtlevy: We should of course treat with great seriousness the demands that protest be conducted in a peaceful, respectful, polite way, b…" +06/29/2018,Economists,@econjared,"Not to get all maths, but he’s right: it is coming down rapidly, as in bigger negative numbers. https://t.co/UyNYM6vRXm" +06/29/2018,Economists,@econjared,"Q: How do you spend $2 trillion on a tax cut and still get only about a third to approve of it? +A: Tilt it towards… https://t.co/COy5U4BZyU" +06/29/2018,Economists,@econjared,@EconDerek @GagnonMacro @greg_ip I think one of the more important recent developments in inflation watching is Cha… https://t.co/s4VwKOKyR1 +06/28/2018,Economists,@econjared,"RT @EconomicPolicy: Tonight, tune in as @TheaLeeEPI and @EconJared debate the impact of globalization with @jasonfurman and James Manyika o…" +06/28/2018,Economists,@econjared,"Third, even as we close in on full employment, the US economy faces two big challenges: we need revenues to support… https://t.co/QfOTF2eJKj" +06/28/2018,Economists,@econjared,"Second, the tax share of profits often falls steeply in downturns (shaded parts). But this time, it’s the tax cuts;… https://t.co/lMBlyWZc6Y" +06/28/2018,Economists,@econjared,"The figure below shows corporate taxes paid as a share of corporate profits, from this AMs GDP report. The figure h… https://t.co/QF1oqMsDr4" +06/27/2018,Economists,@econjared,"@rooseveltinst A8 3/3 Again, I’m well-aware this is old-school—I suspect I’m the elderly-est person on this chat! B… https://t.co/r19PE9474Y" +06/27/2018,Economists,@econjared,@rooseveltinst A8 2/3 …prevent a workers’ party from forming by a) convincing working-class people that their diffe… https://t.co/a1IihCqHdG +06/27/2018,Economists,@econjared,@rooseveltinst A8 1/3 We really need some sort of workers’ party that unites people who depend on their paychecks a… https://t.co/oOC4oZsU3v +06/27/2018,Economists,@econjared,"@rooseveltinst A7 2/2 Also, upward redistribution through government policies (trickle-down tax cuts, patents, occu… https://t.co/p5xbhyc77u" +06/27/2018,Economists,@econjared,@rooseveltinst A7 1/2 This is really asking: what are the factors behind the growth of wage inequality? The decline… https://t.co/PWjdA7KiZY +06/27/2018,Economists,@econjared,"@rooseveltinst @MarkVinPaul Given that @MarkVinPaul Paul's right here, and he just released this great paper on thi… https://t.co/vloX0l7Y7m" +06/27/2018,Economists,@econjared,@rooseveltinst A4 3/3 I recognize that I’m dealing with an old problem—how to raise workers’ bargaining clout—one f… https://t.co/PQQzBxaF66 +06/27/2018,Economists,@econjared,"@rooseveltinst A4 2/3 Once you accept that context, it leads you to issues of job quality, wage policies (min wg, O… https://t.co/4eguV4nhVm" +06/27/2018,Economists,@econjared,"@rooseveltinst A4 1/3 Not sure I'd put it this way. It’s a bit like asking “how can this desk, or this new drill pr… https://t.co/hMWnFBiCwW" +06/27/2018,Economists,@econjared,"@rooseveltinst A3 2/2: Today's SCOTUS decision on the Janus case, which strikes a potentially severe blow to public… https://t.co/DVjEHbHIuB" +06/27/2018,Economists,@econjared,"@rooseveltinst A3 1/2: The list is long, but it largely reduces to employers’ bargaining clout has long surpassed t… https://t.co/hbmPK3IGWh" +06/27/2018,Economists,@econjared,"@rooseveltinst A2: I view tech change as a pretty constant force, so not sure I see much “rise” against the baselin… https://t.co/Pkmbc9lSsG" +06/27/2018,Economists,@econjared,"@rooseveltinst A1 4/4: Thus, we should spend less time arguing about the unknowable, and implement policies to deal… https://t.co/BoYSgy0942" +06/27/2018,Economists,@econjared,"@rooseveltinst A1: 3/4 After all, thanks to tech advances, the American job market went from 90% agriculture to und… https://t.co/Ge5eLLsjyb" +06/27/2018,Economists,@econjared,"@rooseveltinst 2/4: Right now, we have more of a job quality problem than a job quantity problem. Of course, many o… https://t.co/YA50h2Na7w" +06/27/2018,Economists,@econjared,"@rooseveltinst A1 (1/4) As we’re closing in on full employment, it’s hard to the make the case that the pace at whi… https://t.co/pHSk8B9VWV" +06/27/2018,Economists,@econjared,RT @rooseveltinst: Welcome to today’s chat about the #futureofwork and #automation. We are joined by @MarkVinPaul @BrishenRogers @rakeen_ma… +06/27/2018,Economists,@econjared,One of the most potent forces promoting inequality/wg stagnation is weak worker bargaining clout. With SCOTUS Janus… https://t.co/REUGbeCzwv +06/23/2018,Economists,@econjared,Zz +06/22/2018,Economists,@econjared,"@PIIE All solid, germane points. But what about currency/exchange rates? Do you not view that (yuan/$ depreciation)… https://t.co/bOV9UYR3Zd" +06/22/2018,Economists,@econjared,"Must read by @paulwaldman1 on how the Trump/Mulvaney plan to merge agencies is just the latest eg of ""weaponizing b… https://t.co/Qg4L2R1Ax4" +06/20/2018,Economists,@econjared,If you slog through some interesting wonkiness on international finance https://t.co/diUnjNvoEP your reward is some… https://t.co/OEKuZ000gv +06/20/2018,Economists,@econjared,@MichaelSLinden Trend-rider Trump: https://t.co/7zEp5D0Pbj https://t.co/bg6JE1GsBV +06/20/2018,Economists,@econjared,Tight labor market is one reason disability rolls are down and unemp rate for disabled workers is at all time low o… https://t.co/2qNeEWuAFv +06/20/2018,Economists,@econjared,The tragedy at the border is strong evidence that we have the least representative government of the modern era. Th… https://t.co/vnmXmSaVbl +06/19/2018,Economists,@econjared,"I've studied trade policy for decades, but only now do I realize I've ignored this issue of scuffed up, old soundin… https://t.co/V2Yn0ePuH9" +06/19/2018,Economists,@econjared,There must be something that's more fun that sitting around & talking tariffs with @CardiffGarcia and @svaneksmith.… https://t.co/j82m23ZGIN +06/19/2018,Economists,@econjared,"Re-posting our take on Initiative 77. Essential to be guided by the facts, most importantly, results from the other… https://t.co/mTXnsfowpL" +06/18/2018,Economists,@econjared,"It is increasingly clear that ""family values, fiscal rectitude, and free trade"" have served as a highly effective R… https://t.co/ZdSCDQt1Qv" +06/18/2018,Economists,@econjared,"I don't believe the ""natural"" rate of unemployment can be reliably pinned down at 4.5%. But so what? The fact that… https://t.co/UsYxm9Oq4d" +06/15/2018,Economists,@econjared,@BenRossTransit Stronger dollar and big fiscal stimulus at low unemployment very likely to raise trade deficit. Tar… https://t.co/3GXlNrtksU +06/15/2018,Economists,@econjared,2) What would help? As per @DeanBaker13 and I: Use benefits of trade to directly help those hurt by it; stop protec… https://t.co/0EhQD7Z8Wy +06/15/2018,Economists,@econjared,1) Context important when throwing around billions in trade talk. Trump's $50 billion tariffs on China <2% of impor… https://t.co/ZMZKbdOEem +06/14/2018,Economists,@econjared,"Fellow Fed watchers: Since the FOMC prefers to alter rates in meetings followed by news conferences, there's a view… https://t.co/covytYOWV1" +06/14/2018,Economists,@econjared,"@mattyglesias Fiscal stimulus fades, rate hikes, and supply constraints. + +But IMHO, a better question is: unless 3… https://t.co/6ElJimJzRL" +06/14/2018,Economists,@econjared,@LukeGromen Nice reference! More recent version: https://t.co/LY7MEWIBfG +06/14/2018,Economists,@econjared,"6/6) What’s the solution? More collective bargaining, for sure; better labor standards, strongly enforced; pushback… https://t.co/O7H0s5rNJG" +06/14/2018,Economists,@econjared,"5) One bit of evidence for this hypothesis (and I’ve got more, forthcoming) is the flat trend in unit labor costs i… https://t.co/2sNafGXyGv" +06/14/2018,Economists,@econjared,"4) But how can they win that fight at such low unemployment? First, wages are picking up a bit, so it’s not a total… https://t.co/0QoNwBgfE4" +06/14/2018,Economists,@econjared,"3) But at lower productivity, firms—increasingly empowered by concentration/monopsony (employer power), diminished… https://t.co/RYnr3JlBYU" +06/14/2018,Economists,@econjared,"2) With higher productivity growth, firms facing tight labor markets are more willing to raise pay because they can… https://t.co/4u7r5xJmnw" +06/14/2018,Economists,@econjared,1) I think the slow-wage-growth puzzle (to use Chair Powell's framing) is a function of weak worker bargaining powe… https://t.co/hRuxWkfTHx +06/13/2018,Economists,@econjared,@maxbsawicky @jimtankersley Now ya see that just makes me want to fly off the handle! +06/13/2018,Economists,@econjared,"5) In other words, the Fed believes, and I think they're right, that the tax cuts will have temporary Keynes effect… https://t.co/ic9gVQCS3d" +06/13/2018,Economists,@econjared,"4) Reflecting all of these empirical and theoretical caveats, the Fed Committee itself appears to wholly discount t… https://t.co/blgyZxZ0Fd" +06/13/2018,Economists,@econjared,"3) Much more important, the evidence shows no historical correlations between tax cuts and productivity growth. Man… https://t.co/mX7G9W1xWp" +06/13/2018,Economists,@econjared,"2b) Theory also suggests deficit-financed tax cuts are much less likely to generate supply-side impacts, and this t… https://t.co/9usstTbhQY" +06/13/2018,Economists,@econjared,"2) On theory, he cited only substitution effects (lower tax cuts, more labor supply, capex). Income effects push th… https://t.co/bd6qDF1ojP" +06/13/2018,Economists,@econjared,"1) When @jimtankersley asked Fed Chair Powell about the impact of the tax cut on growth, I thought Powell leaned fu… https://t.co/ryMcIdS8af" +06/13/2018,Economists,@econjared,"@_N0TCH_ Also, rates that are very low for very long hurt those who depend on fixed incomes." +06/13/2018,Economists,@econjared,"@_N0TCH_ Great question. See my paragraph re the Fed's rationales: worries about overheating and ""normalization."" G… https://t.co/NkJxCM5B4l" +06/13/2018,Economists,@econjared,"2) Here's an interesting factoid from my Fed piece: Historically, when the unemp rate has been between 3.5-4%, the… https://t.co/MbFsg9ULb2" +06/13/2018,Economists,@econjared,1) The Fed is highly likely to raise its benchmark interest rate this afternoon. But should they? I explain their r… https://t.co/OdDyONka3m +06/12/2018,Economists,@econjared,"@DeanBaker13 Fair point: there's a case for keying off of the 2nd derivative, not the 1st. Still, stronger case is… https://t.co/XarBgUrQ2F" +06/12/2018,Economists,@econjared,"@aaronsojourner You'd have to ask the other Jared. I'm ""Jared the good...""" +06/12/2018,Economists,@econjared,"According to BLS release this AM, real hourly pay of mid-class workers up 0.4% since Trump took office, and extra d… https://t.co/sldnkTlXl4" +06/11/2018,Economists,@econjared,"Thanks! Of course, books like this one are essential to sorting this stuff out: https://t.co/xGz9xlRenn https://t.co/ttVhG7wq9D" +06/11/2018,Economists,@econjared,@Noahpinion I’ll definitely read your piece but I think we should not conflate Atlanta wg tracker w median wage gro… https://t.co/tbFnYBZe2t +06/11/2018,Economists,@econjared,To my musical friends: Clearly the only positive resolution to the chaotic G7 summit is C major. Unless it's the G-… https://t.co/tewVEXVCJs +06/11/2018,Economists,@econjared,"If you're just coming back online, trying to make sense out of that crazy G7 meeting, here's my explanation of the… https://t.co/I1zJBtzLFp" +06/11/2018,Economists,@econjared,"That great Trump economy? He's mostly riding trends he inherited. +https://t.co/XCEUVjMgup https://t.co/PwE0PBhQ7K" +06/10/2018,Economists,@econjared,@bugg_wayne Good question...it's like the Manchurian Candidate. +06/10/2018,Economists,@econjared,"Trump at the G7? What could go wrong? +A great deal, apparently. Here's a Q&A to try to clarify all the cray-cray o… https://t.co/zmKy1P0Elt" +06/08/2018,Economists,@econjared,I don’t begrudge team Trump their groundless bragging on the econ trends they inherited. That’s standard practice.… https://t.co/WYFXxz7udI +06/08/2018,Economists,@econjared,"@TimDuy (You mean 'run ON' deficits. Which matters here!) + +I'm 94.3% with you, but critical to also point out that… https://t.co/AXDO5KEBAB" +06/07/2018,Economists,@econjared,"The argument that robots/AI/etc are increasingly displacing workers implies faster productivity growth, especially… https://t.co/LZThQHf90R" +06/07/2018,Economists,@econjared,In contemplating the fact that the Medicare's finances have been unquestionably damaged by Trump/R policies (tax cu… https://t.co/HPl2hBPEpy +06/06/2018,Economists,@econjared,"@JimPethokoukis @PoliticalHut @CNBC Also, tariffs + retaliation = less imports *and* less exports, which doesn't im… https://t.co/3ZG6IZyE1j" +06/06/2018,Economists,@econjared,"The message from the Social Security and Medicare trustees is simple: preserving these essential, efficient, popula… https://t.co/aEMLSNWYzJ" +06/05/2018,Economists,@econjared,"@GagnonMacro Thnx for the update. But In the figure on the left, why does the 'emp gap' (u-u*) appear to be zero in… https://t.co/laAcHiuEFY" +06/05/2018,Economists,@econjared,Dean's right. It's easy to find dishonest writers who will fabricate nonsense like this. The guilty party here is t… https://t.co/j8PMQgTMP4 +06/04/2018,Economists,@econjared,@VA11independent Good point/analogy (re FTT and carbon tax)! https://t.co/xVM9m01vCs +06/04/2018,Economists,@econjared,Do not go gently into financial deregulation! How we got to where we are and what to do to pushback:… https://t.co/0dO6kj74t9 +06/01/2018,Economists,@econjared,Three ways in which our solid labor market recovery could go south: https://t.co/nNc2zlMzaX +06/01/2018,Economists,@econjared,Trump’s rhetoric on trade has been bloviation without action. Given my well-honed skepticism about his willingness… https://t.co/mLCcoJpac3 +06/01/2018,Economists,@econjared,"2) Barring price shock (unlikely), I don't foresee a Fed mistake. Given relatively low US exposure (imports 15% of… https://t.co/fREx3ViMek" +06/01/2018,Economists,@econjared,"1) The trend is our friend in the job market (a trend that pre-dated the orange one, ftr). But what could whack the… https://t.co/qY4CNsyocQ" +06/01/2018,Economists,@econjared,"Here's my take on the solid jobs report. Punchline: In an economy with little union power, tremendous finance power… https://t.co/4wXun9nXxK" +06/01/2018,Economists,@econjared,"Another strong jobs report! Unemp down to 3.8% (and, at 3.75, just missed 3.7); black unemp to all time low of 5.9%… https://t.co/NkUQDxV1BI" +06/01/2018,Economists,@econjared,"@NickTimiraos @RichardRubinDC Radical idea: since imho markets overreact to these noisy numbers, maybe they should… https://t.co/FozPKHPoVZ" +06/01/2018,Economists,@econjared,"@NickTimiraos @RichardRubinDC Has he tweeted this before? If not, look for upside surprise." +06/01/2018,Economists,@econjared,"RT @damianpaletta: Obama was briefed on the jobs numbers the night before, so Trump might have been too... https://t.co/M8PaXsHnhg" +05/31/2018,Economists,@econjared,"Wow! @eliselgould & @metaCoop new ""7 facts"" paper about the benefits of eliminating sub-min wgs is incredibly muscu… https://t.co/fUboN3BLY8" +05/31/2018,Economists,@econjared,@EamonJavers Sec’y Ross kept saying US GDP is $18 trillion. It’s $20 trillion based on numbers from...the Commerce… https://t.co/BCeP9zhcx3 +05/31/2018,Economists,@econjared,DC's Initiative 77 gets rid of the sub-minimum wage. It's an important way to raise pay and reduce harassment of lo… https://t.co/9kph0ZKJjq +05/30/2018,Economists,@econjared,@jaketapper @PressSec The admin needs some time to decide if their plan is “thoughts AND prayers” or “thoughts OR prayers.” +05/30/2018,Economists,@econjared,"Just now from NYT: ""Big banks are getting a big reprieve from a post-crisis rule aimed at curbing risky behavior on… https://t.co/GS1dkNzbiI" +05/30/2018,Economists,@econjared,"Qrtly data noisy, but note figure: 2018Q1 pretax corporate prof growth, <5%, yr/yr. But huge decline in corp taxes… https://t.co/yz8A9dCnRy" +05/29/2018,Economists,@econjared,"""Hard choices,"" crowd-out, debt thresholds...our stagnant fiscal debate is mired in a confusing fog. I argue that i… https://t.co/K73LxBR94q" +05/24/2018,Economists,@econjared,@SephorahMangin Wait--the Witt-ster wasn't talking about economists' inability to identify the natural rate within… https://t.co/X7S04mQu5J +05/24/2018,Economists,@econjared,It's going to take an unemployment rate that's even lower for even longer to generate faster wage growth. Here's wh… https://t.co/PBZC4D606b +05/22/2018,Economists,@econjared,The critique that jobs programs can't help with wage problems seems way off to me. https://t.co/YBEAu3SKUM +05/22/2018,Economists,@econjared,To continuously fail to provide true economic opportunity to those hurt by trade is to both sow and nurture the see… https://t.co/CMIuWzdCab +05/22/2018,Economists,@econjared,Sen Van Hollen on why we need a jobs program: “You have a lot of Republicans...who say they want to help people who… https://t.co/lUz013ymqp +05/21/2018,Economists,@econjared,"The future of work will be what we, not technology, make of it. Featuring new work by @LarryMishel and @hshierholz… https://t.co/tzFlmYBjxy" +05/18/2018,Economists,@econjared,"Is King Dollar really under threat as the world's premier reserve currency? I (kinda) hope so; what was an ""exorbit… https://t.co/6oipWdIQIh" +05/17/2018,Economists,@econjared,"2) Even at full employment, the sectoral composition of output can and does shift in response to demand in general… https://t.co/kNcjmGmexS" +05/17/2018,Economists,@econjared,"1) While the $200bn is surely near-term non-achievable, this analysis is way too static. If there were greater dema… https://t.co/7em8LPnUuw" +05/17/2018,Economists,@econjared,"I should be able to win many drinks at many bars by taking bets on the question ""what share of retail sales are e-c… https://t.co/uyoHBSUFuy" +05/17/2018,Economists,@econjared,I understand the argument that college degrees have been oversold--they're not a sufficient solution for ineq/wg st… https://t.co/KzGCVkBZLB +05/16/2018,Economists,@econjared,"Here's why I think that Seattle ""head tax"" is a) reasonable, and b) a microcosm of bigger stuff going on in this sp… https://t.co/Va3d6TsuLt" +05/15/2018,Economists,@econjared,Strongly agree w @JimPethokoukis re zoning reform for Seattle. But that’s a very long term solution to current home… https://t.co/O8ucIFnD6H +05/15/2018,Economists,@econjared,@ATobert I did not but I will now correct that oversight! +05/15/2018,Economists,@econjared,"7) In conclusion: Work requirements (really, paper-work requirements) should thus be seen for what they are: an att… https://t.co/9D3kiaR6oo" +05/15/2018,Economists,@econjared,"6) Then there’s this inherent contradiction: low-wage minorities, immigrants, the working poor depend on a persiste… https://t.co/AroC5AMLZI" +05/15/2018,Economists,@econjared,"5) Also, even at low national unemployment, there are places in America with too few employment opportunities, and… https://t.co/QXKHiH2WFR" +05/15/2018,Economists,@econjared,"4) Next, the working poor face a spate of labor-market barriers: criminal records, health/skill deficits, discrimin… https://t.co/aapVcF61P7" +05/15/2018,Economists,@econjared,"3) You can see this latter point in the figure below from important new paper by Hoynes and Schanzenbach: in 1990,… https://t.co/R1O8OfwxhU" +05/15/2018,Economists,@econjared,"2) First, the poor who are able to do so already work. They must, because a) you can’t get buy on health coverage a… https://t.co/yw8SHJSEmE" +05/15/2018,Economists,@econjared,1) How wrong is the Trump/Ryan/Congressional R’s push for work requirements in anti-poverty programs? Let me count the ways. +05/14/2018,Economists,@econjared,"@tamcfall A) I don't understand this. +B) given A, I still think this may be a timely eg of confirmation bias." +05/14/2018,Economists,@econjared,"I worry that this, like state lotteries, becomes an implicit tax on those of us who don't get probabilities and con… https://t.co/0T9TSucdgQ" +05/14/2018,Economists,@econjared,"The rationale for a guaranteed jobs program is strong, as the system is increasingly rigged against low/mid wage wo… https://t.co/0pUg6KHwgj" +05/13/2018,Economists,@econjared,"Smart, efficient bit of analysis here. Side note: since we can't consume or invest what we've lost through deprecia… https://t.co/M06kCtTAt3" +05/11/2018,Economists,@econjared,"Re lower drug costs, Trump twiddles around at the edges, at best. The last 'grafs of this NYT piece (my bold) point… https://t.co/dIJutmEHP9" +05/11/2018,Economists,@econjared,"Recognizing the long-term value to their nations, other advanced economies invest in economically vulnerable famili… https://t.co/peBbJvsTNA" +05/10/2018,Economists,@econjared,@Birdyword It is no more a dog than you are a bird. +05/10/2018,Economists,@econjared,@Rightsof_Man There's no median monthly data. Here's the median quarterly take--shows same result. https://t.co/QaMdg7NDt0 +05/10/2018,Economists,@econjared,"2) To be fair/clear, presidents don't determine economic outcomes nearly as much as they say they do (ie, when outc… https://t.co/pGIBcCSEAp" +05/10/2018,Economists,@econjared,1) The building block for mid-class economic security is real hourly wage for mid-wage workers. Here it is in age o… https://t.co/ErEdCmXYiU +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 4) This… https://t.co/Wt7Jl7qEPe +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 3) My t… https://t.co/X2gXQU4dpf +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 2) What… https://t.co/cVWqlFOm0k +05/10/2018,Economists,@econjared,"@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 1) So,… https://t.co/y8rkVH9TXt" +05/09/2018,Economists,@econjared,"Phillips Curve or Phillips' pet dog w/ bushy tail...I report, you decide. https://t.co/E3Ehr3pt9F https://t.co/XENrSrGyXv" +05/09/2018,Economists,@econjared,"There's nothing we can do to help US manufacturers, right? WRONG, as per a new paper out today by @TimBartik for CB… https://t.co/dgeVGVjJrx" +05/08/2018,Economists,@econjared,"As motivation for their deeply misguided work requirements, Republicans toss around this measure they call the ""Job… https://t.co/eN9ayBGaJi" +05/07/2018,Economists,@econjared,@CliffordAsness @JohnHCochrane Will read Cochrane--always interesting--if you read Lazonick:… https://t.co/f7zijlccVy +05/07/2018,Economists,@econjared,"@CliffordAsness 2nd, there’s no empirical correlation between share buybacks and investment (the topic of the segme… https://t.co/5k0pNxsCqe" +05/07/2018,Economists,@econjared,"@CliffordAsness First, share buybacks increase the value of outstanding shares. 80% of the value of the stock marke… https://t.co/0SYwWJOZ1H" +05/07/2018,Economists,@econjared,Great point by @HarrySteinDC. I often vent how R's refused to add $1 to their tax cut for EITC to support low-inc w… https://t.co/84zfDxFoTB +05/07/2018,Economists,@econjared,"@isawhill @jasonfurman @Neil_Irwin @greg_ip Agree--excellent point from Jason. +That said, in a model that predicts… https://t.co/TAmn27KJyq" +05/04/2018,Economists,@econjared,"First, read the 3 reasons why wage growth is slower than we'd like. Then...start your weekend! https://t.co/goGrFcvtnR" +05/04/2018,Economists,@econjared,"Headed over to talk jobs, wages et al on MSNBC @ 11. See you there." +05/04/2018,Economists,@econjared,"@WhiteHouseCEA @BLS_gov 2 points: +First, wages should be accelerating and they're not. +Second, consumer inflation… https://t.co/btmCWvruEh" +05/04/2018,Economists,@econjared,"2) But ""smart policy""--or any policy--is hard to pull off if you just squandered $2 trillion on a wasteful, loophol… https://t.co/h4Cwv2Snsp" +05/04/2018,Economists,@econjared,"1) Pulling 'the graf below out from my jobs report. We've got extra labor supply under our noses, but it will take… https://t.co/6jCds4x6Ny" +05/04/2018,Economists,@econjared,"Left out the link! D'oh!! +https://t.co/5yB6CDAQ2e https://t.co/3FzE1TXB50" +05/04/2018,Economists,@econjared,"My extended take on the jobs report. Job market remains strong, of course, but lack of wage acceleration important… https://t.co/3jYotRsvYI" +05/04/2018,Economists,@econjared,Jobs report looks more moderate than strong. Unemp rate at 3.9% but this mostly due to tick down in labor force. Em… https://t.co/a0SLCS64Sc +05/04/2018,Economists,@econjared,@eliselgould That's the question! To your battle stations! +05/04/2018,Economists,@econjared,"Like the moth to the flame, I keep trying to predict the monthly job outcomes. Data out in 13 mins, but here's my d… https://t.co/TfTUsMy9WK" +05/03/2018,Economists,@econjared,"Yes, price growth is firming up a bit, but I'm more worried about BNI: Breaking News Inflation, which plays into an… https://t.co/PLMgII9FWn" +05/03/2018,Economists,@econjared,"RT @theAMIBA: @econjared @hamandcheese Some excellent ideas here. Please reconsider conflating free markets with U.S. corporate capitalism,…" +05/03/2018,Economists,@econjared,"We live in chaotic, uncertain economic times (also, hush money to porn stars). But amidst the noise, the Fed is qui… https://t.co/xIn4j5tVr5" +05/02/2018,Economists,@econjared,"Sam Hammond @hamandcheese wrote a paper that caught my interest so I asked him about it. Sam sets up a hopeful, uni… https://t.co/S9mtT78hu8" +05/02/2018,Economists,@econjared,"@hamandcheese Fact check: I work two floors below you (and no, that's not some sort of metaphorical ranking re our… https://t.co/CjA7H62Knj" +04/30/2018,Economists,@econjared,"When the pendulum swings back, the progressive agenda must be ready to hit the ground running with ideas to correct… https://t.co/BhhT3i2UBE" +04/29/2018,Economists,@econjared,"The 'graf below, from my piece in tomorrow's WaPo, links to this site I just discovered at @CenterOnBudget (where I… https://t.co/8a8rk6Etpr" +04/27/2018,Economists,@econjared,"@GagnonMacro Yep. But I'm increasingly wondering what bang-for-buck will be from tax cut. For various reasons--Fed,… https://t.co/3e1EMC1tKU" +04/27/2018,Economists,@econjared,"Based on this AM's GDP and ECI (wage) reports, rising interest rates, a bit more inflation, low unemp, there's clea… https://t.co/bubpXhFbtz" +04/26/2018,Economists,@econjared,"D's with big ideas to help those left behind, even at low unemployment! Woohoo!! Here's some Q&A on Sen. Booker's j… https://t.co/A4fn6XAzYr" +04/25/2018,Economists,@econjared,@imtheMDP Exactly. Good for this guy for reinvesting in his successful biz. The problem here is twofold: 1) his sto… https://t.co/jOwnsydtNp +04/25/2018,Economists,@econjared,Here's why their skewed tax cut makes sense to Republicans. It's some word salad from Sen. Rob Portman explaining w… https://t.co/fasnjkvXZq +04/24/2018,Economists,@econjared,"@Brad_Setser “I have long been interested in Turkey’s balance sheet vulnerabilities.” This, my friends, is why you… https://t.co/oRV1cDAiJG" +04/24/2018,Economists,@econjared,"As per @svaneksmith, is 3% on the 10-yr Treasury the new bond villain?! More to come on this...I'm not much spooked… https://t.co/AXb1A8cDw2" +04/23/2018,Economists,@econjared,@RobinBrooksIIF That's a smart grid! Thnx. +04/23/2018,Economists,@econjared,"Reversing the tax cut is an essential part of staving off the divisive, racist, xenophobic politics that define our… https://t.co/rXs1ii7c3l" +04/23/2018,Economists,@econjared,@pagdavidson Good question! It says we can't pin it down within any policy relevant interval. That's like saying it… https://t.co/nENS6ku6Ef +04/22/2018,Economists,@econjared,"Deficit, schmeficit! The hawks versus the owls, and why this is exactly the debate we need to be having. https://t.co/dEBUABTGpC" +04/22/2018,Economists,@econjared,The picture below--successive Fed Reserve unemployment forecasts against actual rate--reveals that conventional mod… https://t.co/sQ1kQZYPFi +04/21/2018,Economists,@econjared,"Good read on Macron, who seems quite woke re the need to help those hurt by trade/globalization. ""Protection, not p… https://t.co/BF8spKDt5M" +04/20/2018,Economists,@econjared,"Despite White House noise, people don't believe the tax cuts are showing up in their paychecks. Probably because th… https://t.co/jXwGdOTNwO" +04/19/2018,Economists,@econjared,RT @econjared: @mileskimball I see and respect where you’re coming from but I worry that our stance on patents and IP veers into its own fo… +04/19/2018,Economists,@econjared,@mileskimball I see and respect where you’re coming from but I worry that our stance on patents and IP veers into i… https://t.co/8PFobQe7Jd +04/18/2018,Economists,@econjared,"Trump's econ Hassett claims in WSJ: tax cuts are already juicing wage growth. That's fake news, at least for mid-wg… https://t.co/fOttkvCW5r" +04/18/2018,Economists,@econjared,"Great thread on labor market tautness and wages, which, while clearly responding somewhat to tighter conditions, ar… https://t.co/oVQbtuBqk2" +04/18/2018,Economists,@econjared,"Rare non-econ tweet: Yes, these are troubled times. All the more reason to start your day with this amazing Cal Tja… https://t.co/aLYCIVTcJi" +04/17/2018,Economists,@econjared,"Re IRS computer crash: ""Some Republicans jumped on the glitch as an example of incompetence at the agency."" +The R'… https://t.co/Yyvx0pGqXI" +04/17/2018,Economists,@econjared,"@Neil_Irwin I’d be hard-pressed to believe 1-3, 5 either." +04/17/2018,Economists,@econjared,Kudlow to Fox viewers today: ‘Never believe CBO.’ This is what you say when you know your plan stinks and nobody wi… https://t.co/L5GhzO6HWq +04/16/2018,Economists,@econjared,"Breakeven employment levels higher than we thought! +Wonky stuff ahead, but point is important to those of us who a… https://t.co/mIEkp2ljtS" +04/16/2018,Economists,@econjared,"@JimPethokoukis Not sure that's quite right, Jimmy, at least per CBO. They have productivity reverting back to 1995… https://t.co/JlYTBRsGqv" +04/16/2018,Economists,@econjared,Despite some of the best evidence we've ever had showing that neither trickle-down tax cuts nor work requirements w… https://t.co/nCuedtTTCj +04/15/2018,Economists,@econjared,I'm quite certain Ron's right about this (ftr: he's right about a lot). I too have stressed the point that Trump's… https://t.co/ZzI5jdDEe0 +04/13/2018,Economists,@econjared,"Yesterday, I pointed out weak real wage trends for mid-wage workers under Trump. New BLS data confirm: Against prio… https://t.co/dTA3RAkdS9" +04/12/2018,Economists,@econjared,"Contra to Trump's econ team (@WhiteHouseCEA), real wages for mid-wage workers have been pretty stagnant. Higher-pai… https://t.co/D5RqdlpEbT" +04/11/2018,Economists,@econjared,@lepton939 But what if the good place is really the bad place?! +04/11/2018,Economists,@econjared,"Sen Corker today: ""This Congress and this administration likely will go down as one of the most fiscally irresponsi… https://t.co/fOzRUQF2AV" +04/11/2018,Economists,@econjared,Nobody packs more info into 9 entertaining (seriously!) minutes than @CardiffGarcia and @svaneksmith at… https://t.co/Wf815Zlrbl +04/11/2018,Economists,@econjared,"On Ryan's resignation: he's been the ultimate poser, espousing concern for the poor, the aged, the sick, and fiscal… https://t.co/Ja7bKSLzZD" +04/10/2018,Economists,@econjared,Damn--@NickHanauer cleans the clock of the trickle-downers in this oped. 'Businesses don’t give raises because they… https://t.co/Bh2dSUxbur +04/10/2018,Economists,@econjared,"@TimDuy @conorsen @M_C_Klein @ernietedeschi Great figure, @ernietedeschi Thnx! But what is it folks here find so im… https://t.co/mOkyTSOubf" +04/09/2018,Economists,@econjared,"Wisdom from @PaulNVandeWater re new CBO numbers. https://t.co/oIOlmyFS59 +And a bit more commentary from me: https://t.co/6K7hClXwnm" +04/09/2018,Economists,@econjared,"I’d like to propose a simple, common-sense rule: if you voted for the tax cut, you don’t get to complain about the… https://t.co/YTh6B4kxLP" +04/09/2018,Economists,@econjared,"New CBO forecasts on fiscal impact of tax cuts: +--tax cuts don't come anywhere close to paying for themselves, of c… https://t.co/PZ94uIx6vg" +04/09/2018,Economists,@econjared,The teachers' strikes are a reminder of the essential need for a countervailing movement against those who have lon… https://t.co/sXALAs2fVf +04/06/2018,Economists,@econjared,@D_Blanchflower There is no NAIRU! Or at least not one we can identify w/in a policy-relevant interval. +04/06/2018,Economists,@econjared,Low productivity growth is an acting constraint on wage growth. But a tighter job market can generate wage gains by… https://t.co/SvceIt3aVK +04/06/2018,Economists,@econjared,@D_Blanchflower Read my report from earlier this AM--that's highlighted: https://t.co/ql3IcgMpE5 (see part right under smoother graph) +04/06/2018,Economists,@econjared,"Here's my jobs report with a deep'ish dive into wage growth results, featuring an interesting (can I say that about… https://t.co/tjpFfm8HMh" +04/06/2018,Economists,@econjared,Wage growth (nominal) still on trend (see 6-mo rolling avg). Less acceleration than you'd expect given tight job ma… https://t.co/wQGEJ2yd7C +04/06/2018,Economists,@econjared,Job market remains very solid. https://t.co/P4khSM7U6m +02/17/2016,Economists,@NYTimesKrugman,Now tweeting as @PaulKrugman. +06/30/2018,Economists,@MarkThoma,Trump’s Potemkin Economy - Paul Krugman https://t.co/nOttgjG5VP +06/30/2018,Economists,@MarkThoma,"“The First Patent Litigation Explosion,” C. Beauchamp (2016) - A Fine Theorem https://t.co/rdMNGX0G1u" +06/30/2018,Economists,@MarkThoma,Long-term effects of cash transfers - VoxEU https://t.co/QQB4ZG1eeX +06/30/2018,Economists,@MarkThoma,Micro Profs teaching Intro Macro - Nick Rowe https://t.co/kHbDkpvVtH +06/30/2018,Economists,@MarkThoma,American Democracy on the Brink - Joseph E. Stiglitz https://t.co/7k6maXr8VH +06/30/2018,Economists,@MarkThoma,Trump Versus the Hog-Maker - Paul Krugman https://t.co/reMjA0Xu5p +06/30/2018,Economists,@MarkThoma,There are more foreign firms than we think! - VoxEU https://t.co/CRVJ9mieR6 +06/28/2018,Economists,@MarkThoma,Links (6/28/18) https://t.co/ndIyqeFmIU +06/28/2018,Economists,@MarkThoma,The value of late-in-life health care spending - MIT News https://t.co/0INkqNa2sO +06/28/2018,Economists,@MarkThoma,Stumbling and Mumbling: Centrists against freedom https://t.co/Oz2yXR6hg6 +06/28/2018,Economists,@MarkThoma,US Homeownership Patterns - Tim Taylor https://t.co/yyEFdE31b7 +06/28/2018,Economists,@MarkThoma,Uses and Abuses of Economic Formalism - Paul Krugman https://t.co/W2fDurP4Fa +06/27/2018,Economists,@MarkThoma,The career cost of children: career and fertility trade-offs - Microeconomic Insights https://t.co/VGudI2ukWI +06/27/2018,Economists,@MarkThoma,The Monumental Dishonesty and Appalling Bad Faith of Chief Justice Roberts’s Decision - Uneasy Money https://t.co/4yClvIj6gh +06/27/2018,Economists,@MarkThoma,Race and economic opportunity in the United States - VoxEU https://t.co/MTLXBuMHr2 +06/27/2018,Economists,@MarkThoma,Are markets Too Concentrated? - FRB Richmond https://t.co/9pDOeGmfQj +06/27/2018,Economists,@MarkThoma,The rise and reversal of college education - FRB Minneapolis https://t.co/FlXbBK95Lw +06/27/2018,Economists,@MarkThoma,Reducing inequality with the minimum wage - FRB Minneapolis https://t.co/nAb5qyi3Uk +06/27/2018,Economists,@MarkThoma,The Right and the Wrong Ways to Adjust the U.S.—China Trade Balance - Brad Setser https://t.co/kr2YQ4dVFn +06/27/2018,Economists,@MarkThoma,Trump Never Really Ordered a Halt to Child Separations - Regulatory Review https://t.co/RMPlklqLKI +06/26/2018,Economists,@MarkThoma,@Noahpinion Stuff and Money at the Time of the French Revolution +06/26/2018,Economists,@MarkThoma,Seriously? https://t.co/bTupHJyk0O +06/26/2018,Economists,@MarkThoma,"RT @ASFried: In 2012, a baker refused to serve Joe Biden. VP candidate Paul Ryan brought him to a rally. https://t.co/Qm2pY2FtYZ" +06/26/2018,Economists,@MarkThoma,"Subsidised childcare, maternal labour supply, and children’s outcomes - VoxEU https://t.co/U7HK8pLPg9" +06/26/2018,Economists,@MarkThoma,The Great Soybean Conspiracy - Paul Krugman https://t.co/vCEcaBy7Ll +06/25/2018,Economists,@MarkThoma,Can the Income-Expenditure Discrepancy Improve Forecasts? - FRBSF https://t.co/11NmQEnUpf +06/25/2018,Economists,@MarkThoma,Links (6/25/18) https://t.co/1VHhmjTMWw +06/25/2018,Economists,@MarkThoma,What Happened: Financial Factors in the Great Recession (NBER) - Gertler and Gilchrist https://t.co/FV02UjOyqL +06/25/2018,Economists,@MarkThoma,Hydraulic Monetarism - Nick Rowe https://t.co/BMHpwdDJp1 +06/25/2018,Economists,@MarkThoma,Peter Christoffersen and Forecast Evaluation - No Hesitations https://t.co/wljhKiEwBD +06/25/2018,Economists,@MarkThoma,The Medical Bankruptcies Debate - Tim Taylor https://t.co/MhT1pn3NIS +06/25/2018,Economists,@MarkThoma,Elasticities and the Inverse Hyperbolic Sine Transformation - Marc F. Bellemare https://t.co/5dLYhr7opt +06/25/2018,Economists,@MarkThoma,Policymakers can’t tackle inequitable growth if it isn’t measured - Equitable Growth https://t.co/7VqFfuDPWe +06/25/2018,Economists,@MarkThoma,Monies (old and new) through the lenses of modern accounting - VoxEU https://t.co/cE33nnyksa +06/25/2018,Economists,@MarkThoma,Sudden Stops: A Primer on Balance-of-Payments Crises - Cecchetti & Schoenholtz https://t.co/bXyMbyw6P2 +06/25/2018,Economists,@MarkThoma,"The John Taylor-backed “stablecoin” that's backed by, um, stability - FT Alphaville https://t.co/nMDq4akhDU" +06/25/2018,Economists,@MarkThoma,Hyping the Cost of Regulation - Regulatory Review https://t.co/KiUvr1d2Mt +06/25/2018,Economists,@MarkThoma,"Global financial cycles and risk premiums | VOX, CEPR Policy Portal https://t.co/tco44u4Tc9" +06/25/2018,Economists,@MarkThoma,As Maine Goes… - Economic Principals https://t.co/tPchhgTi1d +06/25/2018,Economists,@MarkThoma,"Gender, informal employment, and trade liberalisation in Mexico - VoxEU https://t.co/DtVGnffr7r" +06/25/2018,Economists,@MarkThoma,Shakespeare on tyranny - Understanding Society https://t.co/TA7DlJHZhr) +06/24/2018,Economists,@MarkThoma,"RT @drvox: 1. Unsurprisingly, this bit of kneejerk onanism from the WaPo editorial board completely misses the significance of this whole e…" +06/23/2018,Economists,@MarkThoma,Links https://t.co/ekEGdRBfLL +06/23/2018,Economists,@MarkThoma,Brexit Versus Trumpit (Wonkish) - Paul Krugman https://t.co/fSqHr6VgLL +06/23/2018,Economists,@MarkThoma,"Once Cut, Corporate Income Taxes Are Hard to Restore - Robert Shiller https://t.co/tr8cEQpNJV" +06/23/2018,Economists,@MarkThoma,A lucky boy from a golden age of economics - Nicholas Gruen https://t.co/qgLYjS3y0K +06/23/2018,Economists,@MarkThoma,Who’s Afraid of a Flattening Yield Curve? - Uneasy Money https://t.co/nIwJseFaJq +06/23/2018,Economists,@MarkThoma,What Would Happen if China Started Selling Off Its Treasury Portfolio? - Brad Setser https://t.co/Gp0mPdVDpl +06/23/2018,Economists,@MarkThoma,Happiness Around the World--And For Migrants - Tim Taylor https://t.co/3xqC6tIMZl +06/23/2018,Economists,@MarkThoma,The Paradox of Technological Déjà Vu – Digitopoly https://t.co/LZYCHpzNWT +06/23/2018,Economists,@MarkThoma,What to do with missing payments to factors of production - VoxEU https://t.co/V744JAxMcA +06/23/2018,Economists,@MarkThoma,Was the Marketplace of Ideas “Politically Hijacked”? - ProMarket https://t.co/iNt2e0Jr0u +06/23/2018,Economists,@MarkThoma,High-frequency Spending Responses to the Earned Income Tax Credit - The Fed https://t.co/54O3NAPzLr +06/23/2018,Economists,@MarkThoma,A new mandate for monetary policy - mainly macro https://t.co/Xm1xRhuwIu) +06/23/2018,Economists,@MarkThoma,The Dramatic Expansion of Corporate Bonds - Tim Taylor https://t.co/BJkgXMl0m7 +06/21/2018,Economists,@MarkThoma,"Melania spokesperson: There is no hidden message. + +Trump: Here's the hidden message. + +So, a not hidden message in b… https://t.co/wlJp2LNcnY" +06/21/2018,Economists,@MarkThoma,Return of the Blood Libel - Paul Krugman https://t.co/Az8vUXhUJq +06/21/2018,Economists,@MarkThoma,Problem with Comments https://t.co/Ck7ZISK8dq +06/20/2018,Economists,@MarkThoma,Links https://t.co/1MlKQlQkkg +06/20/2018,Economists,@MarkThoma,"Alongside rising top incomes, the level of living of America’s poorest has fallen - VoxEU https://t.co/W0Vc5ms3fk" +06/20/2018,Economists,@MarkThoma,Interview with Marianne Bertrand - Federal Reserve Bank of Minneapolis https://t.co/vxXoaf7xDv +06/20/2018,Economists,@MarkThoma,"What Does ""Serious"" Mean? - Stephen Williamson https://t.co/nLDQw8qoYn" +06/20/2018,Economists,@MarkThoma,Opinion | The Devil and Tom Donohue - Paul Krugman https://t.co/psuFvwE1oV +06/19/2018,Economists,@MarkThoma,Thinking About a Trade War (Very Wonkish) - Paul Krugman https://t.co/MijLsQJBgN +06/19/2018,Economists,@MarkThoma,The Charts That Show How Big Business Is Winning - The New York Times https://t.co/4dCCjtw0RV +06/19/2018,Economists,@MarkThoma,What Did the Romans Ever Do for Us? - Paul Krugman https://t.co/ORCt5zOybx +06/19/2018,Economists,@MarkThoma,Fall of the American Empire - Paul Krugman https://t.co/AezgfbbeFu +06/19/2018,Economists,@MarkThoma,Practical macroeconomic policy evaluation - Narayana Kocherlakota https://t.co/QzqyZBrQAV +06/19/2018,Economists,@MarkThoma,On Science Advancing One Funeral at a Time - ProMarket https://t.co/wBJqcpWx20 +06/19/2018,Economists,@MarkThoma,Capitalism works best in the Old World - Financial Times https://t.co/fxjffRo4Vu +06/19/2018,Economists,@MarkThoma,Now Is the Time for Banking Culture Reform - John Williams https://t.co/DTUZMG40vW +06/19/2018,Economists,@MarkThoma,Do Foreign Funds Matter for Emerging Market Bond Liquidity? - FRBSF https://t.co/4KrGhU2ZV4 +06/19/2018,Economists,@MarkThoma,The Referee - Economic Principals https://t.co/tWqmTUpwhx +06/19/2018,Economists,@MarkThoma,Inflation Policy - Cecchetti & Schoenholtz https://t.co/W7qka45QKE +06/19/2018,Economists,@MarkThoma,FedViews - FRBSF https://t.co/jMhl4did9W +06/19/2018,Economists,@MarkThoma,"Imprisonment by Malthus and ""Negative Liberty"":- Brad DeLong https://t.co/YjbDDDPkUu" +06/19/2018,Economists,@MarkThoma,Assessing Large Financial Firm Resolvability - FRB Richmond https://t.co/5YVqrQyzBB +06/19/2018,Economists,@MarkThoma,The bankruptcy of the centre right: Brexit edition - mainly macro https://t.co/BZ4a8Ek8KV) +06/19/2018,Economists,@MarkThoma,The distributional consequences of monetary policy - VoxEU https://t.co/0avLcw6dr7 +06/15/2018,Economists,@MarkThoma,Tax Cuts and Leprechauns (Wonkish) - Paul Krugman https://t.co/qiX4xBcuvx +06/15/2018,Economists,@MarkThoma,Unemployment and inflation once again... - Brad DeLong https://t.co/t3Rb2JjnHf +06/15/2018,Economists,@MarkThoma,Autonomous Vehicles: Here's One Crystal Ball - Tim Taylor https://t.co/d8NMqJwMEi +06/15/2018,Economists,@MarkThoma,Emerging Markets Under Pressure - Brad Setser https://t.co/Hx4Ulmv7QG +06/15/2018,Economists,@MarkThoma,"Bob Allen's new ""poverty machine"" and its implications - globalinequality https://t.co/gUiyRcUeR9" +06/15/2018,Economists,@MarkThoma,Why employment rates in the US have lagged other countries - VoxEU https://t.co/z01IlNrfxf +06/14/2018,Economists,@MarkThoma,G.O.P. to Americans With Health Problems: Drop Dead - Paul Krugman https://t.co/4S8AzBY6wQ +06/14/2018,Economists,@MarkThoma,Links https://t.co/tLprE2qjI9 +06/14/2018,Economists,@MarkThoma,Equitable Growth in Conversation: Michael Strain - Equitable Growth https://t.co/RdevZocGv5 +06/14/2018,Economists,@MarkThoma,"CONVERSABLE ECONOMIST: G-7, G7+, G20 https://t.co/99rkz5FXhG" +06/14/2018,Economists,@MarkThoma,More Permissive Zoning Codes Could Make U.S. Workers Richer - Regulatory Review https://t.co/G84xvzl38r +06/14/2018,Economists,@MarkThoma,Optimal Monetary Policy For the Masses - David Beckworth https://t.co/hS9cqeWk14 +06/14/2018,Economists,@MarkThoma,mainly macro: How UK deficit hysteria began https://t.co/esOrCzvwAH) +06/14/2018,Economists,@MarkThoma,Adjusting to Autonomous Trucking – Digitopoly https://t.co/AoOkMFmz8W +06/14/2018,Economists,@MarkThoma,Global debt and equilibrium interest rates - VoxEU https://t.co/Y5d6gQAue7 +06/13/2018,Economists,@MarkThoma,"Sovereign Money, Narrow Banks, Digital Currency, etc. - Stephen Williamson https://t.co/37JONqwlEo" +06/13/2018,Economists,@MarkThoma,Can the Euro Be Saved? - Joseph E. Stiglitz https://t.co/BkdVJ3unoG +06/13/2018,Economists,@MarkThoma,It’s time for Identity Portability – Digitopoly https://t.co/jWIGUkv0Cc +06/13/2018,Economists,@MarkThoma,The Parable of the Fruit Trees - Nick Rowe https://t.co/XBL4IS4w16 +06/13/2018,Economists,@MarkThoma,Unions Did Great Things for the Working Class - Noah Smith https://t.co/WGgPnseIR7 +06/12/2018,Economists,@MarkThoma,Links https://t.co/q5RTvfcHyl +06/12/2018,Economists,@MarkThoma,O Canada - Brad Setser https://t.co/o6xSyee60T +06/12/2018,Economists,@MarkThoma,Sustained growth and the increase in work hours - Growth Economics https://t.co/XcuImvgWBa +06/12/2018,Economists,@MarkThoma,A Quisling and His Enablers - Paul Krugman https://t.co/ei0p2lkJo0 +06/12/2018,Economists,@MarkThoma,The Transferunion fantasy - Thomas Piketty https://t.co/Ev1rrB50Nn +06/12/2018,Economists,@MarkThoma,A Tale of Three Nominal GDP Growth Paths - Macro Musings https://t.co/ioCB8am0Zi +06/12/2018,Economists,@MarkThoma,Summit on Diversity in Economics - Women in Economics at Berkeley https://t.co/4UyCHIsRz0 +06/12/2018,Economists,@MarkThoma,Digitalisation of money and the future of monetary policy - VoxEU https://t.co/gwnzWKlTIn +06/12/2018,Economists,@MarkThoma,E-Commerce Might Help Solve the Mystery of Low Inflation - The New York Times https://t.co/KHFOrPWRmO +06/12/2018,Economists,@MarkThoma,Financial repression and bank lending - All About Finance https://t.co/yP5A6okWKy +06/11/2018,Economists,@MarkThoma,Do Wages in High-Earning Sectors Always Reflect Skills? - ProMarket https://t.co/Otj4jElAfK +06/11/2018,Economists,@MarkThoma,Links https://t.co/2OkVynkqLO +06/11/2018,Economists,@MarkThoma,Why macroeconomics should further embrace distributional economics - Equitable Growth https://t.co/ml6fb2sbWU +06/11/2018,Economists,@MarkThoma,US Intergenerational Mobility: An International Perspective - Tim Taylor https://t.co/nDDTH4LfgW +06/11/2018,Economists,@MarkThoma,How Democratic Is the Euro? - Dani Rodrik https://t.co/E4kh4K4Vln +06/11/2018,Economists,@MarkThoma,"Banks and Money, Or Watch out What You Wish For - Cecchetti & Schoenholtz https://t.co/6VQ3gPw1XX" +06/11/2018,Economists,@MarkThoma,The Mystery of Puny Pay Raises - Noah Smith https://t.co/IsnT8rxCR3 +06/11/2018,Economists,@MarkThoma,Some ways to introduce a modern debt Jubilee - VoxEU https://t.co/paSvGkyjvz +06/11/2018,Economists,@MarkThoma,Demographics and long-run growth - VoxEU https://t.co/rIDmJsrmmG +06/11/2018,Economists,@MarkThoma,Opinion | A Better Electoral System in Maine - Maskin and Sen https://t.co/WyEyXzfTFW +06/11/2018,Economists,@MarkThoma,Homer Stirs - Economic Principals https://t.co/ehPpg7ziSh +06/10/2018,Economists,@MarkThoma,Trade Deficit Rising! - Econbrowser https://t.co/plhn69QIjq +06/10/2018,Economists,@MarkThoma,The inflation laggards — are they turning hawkish? - Gavyn Davies https://t.co/HNEZzbod05 +06/10/2018,Economists,@MarkThoma,"Tax Havens Blunt Impact of Corporate Tax Cut, Economists Say - The New York Times https://t.co/DQ7UgePNOL" +06/10/2018,Economists,@MarkThoma,AI and the paperclip problem - VoxEU https://t.co/HfVxq5HXcy +06/10/2018,Economists,@MarkThoma,Does Direct Democracy Reduce Regulatory Capture? - ProMarket https://t.co/9YuSQajRix +06/10/2018,Economists,@MarkThoma,Reviewing Richard Baldwin's The Great Convergence... - Brad DeLong https://t.co/CI7a5Ul303 +06/10/2018,Economists,@MarkThoma,The big problem China will face in a decade - Brad DeLong https://t.co/8fOVqjSOBI +06/10/2018,Economists,@MarkThoma,Debacle in Quebec - Paul Krugman https://t.co/KxA4PgM0xZ +06/10/2018,Economists,@MarkThoma,Would a Single-Payer System Require Painful Sacrifices From Doctors? - The New York Times https://t.co/mxy5TsVxqs +06/08/2018,Economists,@MarkThoma,Links https://t.co/rGNnnl8NM6 +06/08/2018,Economists,@MarkThoma,Inflation forecasting in emerging market economies - VoxEU https://t.co/oJMLx74Y78 +06/08/2018,Economists,@MarkThoma,Measuring competition - Stumbling and Mumbling https://t.co/fDyxU8KEkY +06/08/2018,Economists,@MarkThoma,Why Cities Can’t Stop Poaching From One Another - The New York Times https://t.co/qdn6h0CXID +06/08/2018,Economists,@MarkThoma,Flat Yield Curve May Result in a More Aggressive Fed - Tim Duy https://t.co/kkhpBxInEH +06/08/2018,Economists,@MarkThoma,Should peer to peer lenders exist in theory? - Bank Underground https://t.co/YGhcLsjyyt +06/08/2018,Economists,@MarkThoma,Corruption Hits the Small Time - Paul Krugman https://t.co/VGQm3CDMhp +06/07/2018,Economists,@MarkThoma,"RT @BrookingsEcon: New from the Hutchins Center on Fiscal and Monetary Policy: Rethinking the Fed's 2 percent inflation target, including c…" +06/07/2018,Economists,@MarkThoma,Machines Learning Finance - No Hesitations https://t.co/BVyCPJ1uTz +06/07/2018,Economists,@MarkThoma,Productivity and Pay: Is the Link Broken? - Stansbury and Summers https://t.co/bsXLLECDNk +06/07/2018,Economists,@MarkThoma,Links https://t.co/fgNK0QYSEV +06/03/2018,Economists,@MarkThoma,A Trade War Primer — Paull Krugman https://t.co/xntji7kKK6 +06/02/2018,Economists,@MarkThoma,"Opinion | Coal, Cash, and Bad Faith - Paul Krugman https://t.co/WmCeKbRrcr" +06/02/2018,Economists,@MarkThoma,Wellbeing inequality in retrospect - VoxEU https://t.co/tpC5tlBLaL +06/01/2018,Economists,@MarkThoma,America’s Founders vs. Trump - J. Bradford DeLong https://t.co/4IBAMmyazj +06/01/2018,Economists,@MarkThoma,Part-Time Workers Are Less Likely to Get a Pay Raise - macroblog https://t.co/1fiqlVQHIc +05/31/2018,Economists,@MarkThoma,The Plot Against Health Care - Paul Krugman https://t.co/zp2yxCZNCI +05/31/2018,Economists,@MarkThoma,"Oh, What a Stupid Trade War https://t.co/WbdxVUvOxx" +05/31/2018,Economists,@MarkThoma,Sustaining Full Employment and Inflation around Target - Lael Brainard https://t.co/vZEzcJxcZO +05/31/2018,Economists,@MarkThoma,Links https://t.co/xrqfA3sTkk +05/31/2018,Economists,@MarkThoma,Cultural proximity and loans - Microeconomic Insights https://t.co/42aYYkQf1h +05/31/2018,Economists,@MarkThoma,The Uniqueness of the Cointegrating Vector - Dave Giles https://t.co/3Fb7akYn01 +05/30/2018,Economists,@MarkThoma,Would a Central Bank Digital Currency disrupt monetary policy? - Bank Underground https://t.co/l9lIDbSOL6 +05/30/2018,Economists,@MarkThoma,Bulls and Bears: Why central banks should stabilize the stock market - Roger E. A. Farmer https://t.co/bWDnraGOoU +05/30/2018,Economists,@MarkThoma,"Nominal wages are not real wages, and why it matters in the UK - mainly macro https://t.co/OIyrfnP2Fx)" +05/30/2018,Economists,@MarkThoma,The euro must be made more robust to rival the dollar - FT https://t.co/knv3kot62A +05/29/2018,Economists,@MarkThoma,Trump is enabling a predatory economy. Here’s how he’s doing it. - Helaine Olen https://t.co/ac7NqCCcgz +05/29/2018,Economists,@MarkThoma,Is GDP Overstating Economic Activity? - Economist's View https://t.co/w7fMoDeCeV +05/29/2018,Economists,@MarkThoma,Gabriel Zucman: “Some People in Economics Feel That Talking About Inequality Is Not What Economists Should Be Doing… https://t.co/1VaTGdiyQf +05/29/2018,Economists,@MarkThoma,Links https://t.co/nbenirHpLH +05/29/2018,Economists,@MarkThoma,Trump’s Manchurian Trade Policy - Paul Krugman https://t.co/dPhURsYahP +05/29/2018,Economists,@MarkThoma,Germany's Prosperity: How Stable are the Foundations? - Tim Taylor https://t.co/Ib8shHZjfW +05/29/2018,Economists,@MarkThoma,Core Design Principles for a Central Bank Digital Currency - Bank Underground https://t.co/cYwe76mzEj +05/29/2018,Economists,@MarkThoma,The “accounting view” of money: money as equity - All About Finance https://t.co/RLtrDjvdqg +05/29/2018,Economists,@MarkThoma,News Values - Economic Principals https://t.co/vBVIguXlEK +05/29/2018,Economists,@MarkThoma,The Economics of Disintegration of the Greenland Ice Sheet - NBER https://t.co/E2vsG6x5Xm +05/29/2018,Economists,@MarkThoma,Great Recession: New Car Buyers Hold Cars Longer on Hold - St. Louis Fed https://t.co/wruqYvCdAT +05/27/2018,Economists,@MarkThoma,Does Economics Matter? https://t.co/z3oo1k8wHd +05/27/2018,Economists,@MarkThoma,Learning from America’s Forgotten Default - Sebastián Edwards https://t.co/0z31KAmJmM +05/27/2018,Economists,@MarkThoma,The carbon bubble and the pricing of bank loans - VoxEU https://t.co/GytXZdT9MG +05/26/2018,Economists,@MarkThoma,Neo- and Other Liberalisms https://t.co/imvtfUddLL +05/26/2018,Economists,@MarkThoma,Effects of Copyrights on Science https://t.co/AyZ5y0BZcd +05/26/2018,Economists,@MarkThoma,Effects of copyrights on science - VoxEU https://t.co/xbOcQJ7yuu +05/25/2018,Economists,@MarkThoma,Neo- and Other Liberalisms - Uneasy Money https://t.co/HyyXAfx9eP +05/25/2018,Economists,@MarkThoma,"Actually, the U.S. Can Afford Welfare - Justin Fox https://t.co/t7cfjmx7k6" +05/25/2018,Economists,@MarkThoma,Links https://t.co/YPFxsPxHBf +05/25/2018,Economists,@MarkThoma,Monetary Policy and the Crosswinds of Change - Charles Evans https://t.co/1fqIUtmQjl +05/25/2018,Economists,@MarkThoma,Google and Facebook’s “Kill Zone” - ProMarket https://t.co/XxdxfHHPEg +05/25/2018,Economists,@MarkThoma,E-autocracy: Surveillance and propaganda in Chinese social media - VoxEU https://t.co/zs74X7RpfU +05/25/2018,Economists,@MarkThoma,The declining share of manufacturing jobs - VoxEU https://t.co/X6JOZRoMaK +05/24/2018,Economists,@MarkThoma,Turmoil for Turkey’s Trump - Paul Krugman https://t.co/wcC6KILvmr +05/24/2018,Economists,@MarkThoma,"A Rescue Plan for a Jobs Crisis in the Heartland - Glaeser, Summers, Austin https://t.co/YRRUoaBbtp" +05/24/2018,Economists,@MarkThoma,The ‘suprasecular’ stagnation - VoxEU https://t.co/EbTdwz82Fl +05/23/2018,Economists,@MarkThoma,Improved financial regulation deters misconduct - EurekAlert! https://t.co/RoM9Fb0cOj +05/23/2018,Economists,@MarkThoma,"Long Horizon Uncovered Interest Parity, Updated - Econbrowser https://t.co/JkJW3TDSDi" +05/23/2018,Economists,@MarkThoma,"Minutes of the Federal Open Market Committee, May 1-2, 2018 - FRB https://t.co/AiD0L2HKi8" +05/23/2018,Economists,@MarkThoma,Can Credit Tightening Spur Social Unrest? Evidence from 1930s China - ProMarket https://t.co/SZcrJnvsCj +05/23/2018,Economists,@MarkThoma,Links https://t.co/fJ0HaS1h0b +05/22/2018,Economists,@MarkThoma,Congress Approves First Big Dodd-Frank Rollback - The New York Times https://t.co/vVey8utZKW +05/22/2018,Economists,@MarkThoma,Why a Trade War With China Isn’t “Easy to Win” (Slightly Wonkish) - Paul Krugman https://t.co/GHPaNRRPja +05/22/2018,Economists,@MarkThoma,US Hurricane Clustering: A New Reality? - Bank Underground https://t.co/rCvsgCKQSo +05/22/2018,Economists,@MarkThoma,"Argentina: Sustainable, Yes, with Adjustment. But Sustainable with A High Probability? - Brad Setser https://t.co/2naLPTXxsX" +05/22/2018,Economists,@MarkThoma,How the Unfettered Fed Flattened the Phillips Curve - WSJ https://t.co/obNJ4TwzSE +05/22/2018,Economists,@MarkThoma,"Anatomy of a trade collapse: The UK, 1929-33 - VoxEU https://t.co/xbMBuRHx9L" +05/21/2018,Economists,@MarkThoma,What’s the Matter With Europe? - Paul Krugman https://t.co/bmD3nGt6CP +05/21/2018,Economists,@MarkThoma,The Future Fortunes of R-star: Are They Really Rising? - John Williams https://t.co/yP46uTK64c +05/21/2018,Economists,@MarkThoma,The “accounting view” of money: money as equity - All About Finance https://t.co/BjWuv6r5LO +05/21/2018,Economists,@MarkThoma,Links https://t.co/CPg8aNoJrv +05/21/2018,Economists,@MarkThoma,"Bitcoin, Vollgeld, and popular views of money - VoxEU https://t.co/ysiwRYvJ3p" +05/21/2018,Economists,@MarkThoma,The Old Allure of New Money - Robert Shiller https://t.co/2BDicna08u +05/21/2018,Economists,@MarkThoma,China Now Has a Trade Deficit - Tim Taylor https://t.co/l9mGOGggBj +07/01/2018,Economists,@umairh,RT @EnglishLIUBklyn: “Ten Techniques Authoritarians Use to Bend and Twist Reality (and How to Fight Them): The Authoritarian’s Rhetorical P… +07/01/2018,Economists,@umairh,"""The Faction and the Revolution"" https://t.co/pQEpvjAK7R https://t.co/OmGIXu0KfC" +07/01/2018,Economists,@umairh,RT @NetraHalperin: This is AWESOME! “The Faction and the Revolution” by @umairh https://t.co/5JO7189ajU +07/01/2018,Economists,@umairh,RT @kaliaragorn: “(Why) American Collapse is Extraordinary” by @umairh https://t.co/d5qQHRJgdt #usa #collapse #danger @matteorenzi +07/01/2018,Economists,@umairh,"No, people who do this are totally not fascists, why would anyone call them that https://t.co/mybn2R0jxP" +07/01/2018,Economists,@umairh,"RT @RVAwonk: The founder of Patriot Prayer — i.e., the guy who led a(nother) riot in PDX today — is running as a Republican Senate candidat…" +07/01/2018,Economists,@umairh,"True, you can’t compare a thing to itself. https://t.co/dHjKaO0y9b" +07/01/2018,Economists,@umairh,@ianjbeattie Ha. Exactly. Stone Age men. +06/30/2018,Economists,@umairh,RT @msbonniekay: “Why American Life is Traumatizing Americans But They Don’t Know it” by @umairh https://t.co/XKr66WgiUY +06/30/2018,Economists,@umairh,RT @GlobeMCramer: Awful scene on the orange line. A woman’s leg got stuck in the gap between the train and the platform. It was twisted and… +06/30/2018,Economists,@umairh,RT @doriantaylor: @umairh ƒlol https://t.co/6vaHC1yAJ6 +06/30/2018,Economists,@umairh,Bestill their poor cold dead hearts +06/30/2018,Economists,@umairh,"American pundits delicately approaching socialism with shock, confusion, bewilderment, like Stone Age men hesitantl… https://t.co/dWtesAc1Vt" +06/30/2018,Economists,@umairh,whaaaaat a goaaaaalllll +06/30/2018,Economists,@umairh,"@ferlelo Dear Fernando, thank you—twice!!" +06/30/2018,Economists,@umairh,RT @harikunzru: Imagining a crowdsourced 'David Simon Project' in which every right wing twitter troll is insulted and blocked until the en… +06/30/2018,Economists,@umairh,I just published “The Faction and the Revolution” https://t.co/fu9G4icyk5 +06/30/2018,Economists,@umairh,"RT @stevesilberman: This is 30,000 people amassing in DC right now to protest Trump's brutal immigration policy, in a march announced just…" +06/30/2018,Economists,@umairh,"RT @_SJPeace_: This elderly man is Rabbi Waskow. He was arrested protesting outside an ICE facility in Philadelphia. + +RETWEET THIS! https:…" +06/30/2018,Economists,@umairh,Hahahahahahaha https://t.co/OKAfXkdDO7 +06/30/2018,Economists,@umairh,RT @tom_nuttall: Don't cry 4-3 Argentina +06/30/2018,Economists,@umairh,RT @Amy_Siskind: Love this. https://t.co/XQrv17VKum +06/30/2018,Economists,@umairh,RT @RAICESTEXAS: Starting now!!! Tune in https://t.co/SmJlnHYapF +06/30/2018,Economists,@umairh,RT @waltshaub: “The marches taking place across the country this weekend are really about the soul of America.” https://t.co/BrmStCWMEB +06/30/2018,Economists,@umairh,"RT @BarbaraHubbard: “America, We Need to Talk About the Last Ten Days” by @umairh https://t.co/tNJmYrogiA" +06/30/2018,Economists,@umairh,What a match. Quality stuff. +06/30/2018,Economists,@umairh,"If you want to beat authoritarianism, offer a new social contract. Made of new institutions (like ICE etc). Time fo… https://t.co/SkxvPcOS3M" +06/30/2018,Economists,@umairh,"If you want to beat authoritarianism, offer a new social contract. Say it with me. https://t.co/hSu14ZxJuR" +06/30/2018,Economists,@umairh,Putin wins https://t.co/B7pgsJpQPk +06/30/2018,Economists,@umairh,"RT @Medium: Self-harm. Abuse. Anorexia. A troubling portrait of American childhood is on display on +this social media platform—and parents…" +06/30/2018,Economists,@umairh,Ahh poor Argentina man. France just hit the turbo button +06/30/2018,Economists,@umairh,what a goaaaaaaaaaaaal +06/30/2018,Economists,@umairh,100% this https://t.co/PFk9obnSvJ +06/30/2018,Economists,@umairh,@RyanMartin_7 ahahaha rovers!! +06/30/2018,Economists,@umairh,"RT @pbnshah: Capitalists: capitalism is the only system that lets you chase your dreams + +Also capitalists: fuck art degrees, history degree…" +06/30/2018,Economists,@umairh,"i have serious concentration problems watching sportsball this early in the day, it's harder than work" +06/30/2018,Economists,@umairh,"RT @sannewman: I got an email from FreshDirect today that started ""Dear Valued Customer"" and I really think this is what all people should…" +06/30/2018,Economists,@umairh,@smarimc @aral @glynmoody You’re a member of parliament and you don’t know the first thing about modern politics? A… https://t.co/78FHL1lobE +06/30/2018,Economists,@umairh,"LOL how do you think we ended up here, champ https://t.co/HJ34q3lnIs" +06/30/2018,Economists,@umairh,Beating authoritarianism takes a new social contract. She gets it. In fact the campaign is evidence of it. It’s a p… https://t.co/SW4yr8XAIt +06/30/2018,Economists,@umairh,You’re battling disinformation with a strategic intent to destroy your credibility. Propaganda designed carefully i… https://t.co/gfJxsEz8mc +06/30/2018,Economists,@umairh,@andrewbarss @Ez4u2say_Janis Exactly right. A crucial point that should be made often! +06/30/2018,Economists,@umairh,@tonyjoyce Hahaha love it! +06/30/2018,Economists,@umairh,@smarimc @aral @glynmoody Iran is a democracy. Pakistan is a democracy. Nazi Germany was not Soviet Russia in ideol… https://t.co/ptToUGbqU8 +06/30/2018,Economists,@umairh,RT @Eyaansonia: « Here’s a tiny question. Do you like the way the world is going? I don’t — and I doubt you do either. But what’s really go… +06/30/2018,Economists,@umairh,RT @bnowhereblog: “(Why) The English-Speaking World is the New Soviet Union” by @umairh https://t.co/lbDCr9JH6X +06/30/2018,Economists,@umairh,"RT @gpetriglieri: There can’t be civility without civilization, another great essay by @umairh https://t.co/VkdrnpMPr9" +06/30/2018,Economists,@umairh,"RT @Medium: ""When you tolerate a fool, a monster, or a tyrant — you are civilizing no one, but dehumanizing everyone,"" writes Umair Haque h…" +06/30/2018,Economists,@umairh,"""The Astonishing Pointlessness of 'Nuance'"" https://t.co/9U74kSdSuZ https://t.co/jDJtbifLAn" +06/30/2018,Economists,@umairh,"RT @Medium: ""America is at a crossroads,"" writes @umairh. ""A point of no return. A democratic society cannot really survive these assaults,…" +06/30/2018,Economists,@umairh,"ok i'm done, there's your friday night rant, i got too much sun so i'm especially vampire sick which makes me extra… https://t.co/1V0FRMaomu" +06/30/2018,Economists,@umairh,None of this should be especially challenging. What gets in the way is America's bizarre Soviet style dedication to… https://t.co/yTsfZt8p5X +06/30/2018,Economists,@umairh,"Whether or not you want to call all that ""socialism"" is besides the point, we don't need to debate Trotskyism. It's… https://t.co/1HNHN190wB" +06/30/2018,Economists,@umairh,"Furthermore, if we want to go on having even higher levels of health, sanity, meaning, purpose, belonging, intellig… https://t.co/kX6BfMKZGW" +06/30/2018,Economists,@umairh,"The reason for that is very simple, wealth will go on piling up at the top, the middle will hollow out, thanks to t… https://t.co/SBkIwyMcfo" +06/30/2018,Economists,@umairh,"Whether or not America's ideologically Soviet pundit class can deal with, whether or not American patriarchal white… https://t.co/TK1v13E9nf" +06/30/2018,Economists,@umairh,@ddn Hahahaha awesome +06/30/2018,Economists,@umairh,"Is it because everyone hates capitalism, hmmm https://t.co/RJHvqPV5OP" +06/30/2018,Economists,@umairh,"It’s a fools game. And part of the challenge is shattering these little old old boys clubs that keep America dumb, mean, blind, and cruel." +06/30/2018,Economists,@umairh,"Why is it that instead of learning something from the DSA’s win, pundits are trying to deny it matters? Always drag… https://t.co/LlTkiiiE8K" +06/30/2018,Economists,@umairh,"Here’s the lesson, do the opposite of what pundits say. https://t.co/yBs7DWYr2z" +06/29/2018,Economists,@umairh,"RT @TheChickLivesOn: I've noticed there's a lot of dicks in congress, but not a pair of balls in sight. Weird. 🤔" +06/29/2018,Economists,@umairh,An idiot president about to put another legendary American company out of business. https://t.co/dqiREG8GWF +06/29/2018,Economists,@umairh,@karma_musings You make a very good point 😊 +06/29/2018,Economists,@umairh,Like a worm https://t.co/hDuqUG5TsJ +06/29/2018,Economists,@umairh,"Yup. They live in Soviet America, where the party is always right https://t.co/qaVt4DItLV" +06/29/2018,Economists,@umairh,It’s fascinating to me in a kind of morbid way how every single thing I hear a conservative say by now is some way… https://t.co/HbgK2IFMtB +06/29/2018,Economists,@umairh,"RT @quollhorreur: This is an amazing thread. Thank you for sharing. + +You should all have a read. https://t.co/vbKCP4JbJn" +06/29/2018,Economists,@umairh,RT @MaryLizThomson: Offer a real social contract with compassion and heart - “Beating Authoritarianism Isn’t as Simple as You Think. It’s E… +06/29/2018,Economists,@umairh,@dizzeehendrix i have a cupcake +06/29/2018,Economists,@umairh,"RT @Medium: In many cases, people who appear ""lazy"" are actually struggling with something much deeper, writes @dr_eprice. Approach them wi…" +06/29/2018,Economists,@umairh,“The Faction and the Sect” https://t.co/8uBgH6chit +06/29/2018,Economists,@umairh,“The Astonishing Pointlessness of “Nuance” https://t.co/GX7z9Htswp +06/29/2018,Economists,@umairh,RT @annnabobs: Harry Potter and the... https://t.co/V4hXeXYkWw +06/29/2018,Economists,@umairh,RT @Medium: Now more than ever we need to internalize and practice the values of loving-kindness https://t.co/v9wqgpM0nb +06/29/2018,Economists,@umairh,@perfal You’re very welcome and thanks!! +06/29/2018,Economists,@umairh,LOL check the replies https://t.co/9hkR2rqQGt +06/29/2018,Economists,@umairh,"RT @robertjweisberg: When you combine every kind of societal collapse, you get what we have now: “(Why) American Collapse is Extraordinary”…" +06/29/2018,Economists,@umairh,I just published “The Astonishing Pointlessness of ‘Nuance’” https://t.co/v5EvW4cWtq +06/29/2018,Economists,@umairh,RT @ColorOfChange: Terry Crews should not be facing backlash for being brave enough to speak out about his sexual assault. #WeGotYouTerry h… +06/29/2018,Economists,@umairh,"RT @shannonrwatts: .@NRA’s Dana Loesch in 2016: Reporters are the ""rat-bastards of the Earth"" who should be ""curb-stomped."" + +https://t.co/…" +06/29/2018,Economists,@umairh,"if these guys had been around during the enlightenment, we would have found a million ways never to end up at democ… https://t.co/BqavCLFksN" +06/29/2018,Economists,@umairh,when the leader of your new enemy is better than the leader of you https://t.co/82XsejRIvF +06/29/2018,Economists,@umairh,"@tonyjoyce @johandewal I don’t disagree, I think we need to understand it a little better psychologically" +06/29/2018,Economists,@umairh,As much as I love social democracy ❤️💕 brocialists are still the worst +06/29/2018,Economists,@umairh,"RT @ddale8: Freeland announces Canada is indeed imposing its retaliatory tariffs agains the U.S. on Sunday, Canada Day: ""Canada has no choi…" +06/29/2018,Economists,@umairh,"The nuance whizzed over our heads. Data rained down like hellfire. Facts sang through the air, exploding above us.… https://t.co/rnu4qNPeBc" +06/29/2018,Economists,@umairh,When you’re being held hostage by a minority of crazy extremists https://t.co/WgkJWLDkWF +06/29/2018,Economists,@umairh,If you’re bad in this life you’re reborn as a nuance-bombing centrist in the next +06/29/2018,Economists,@umairh,RT @thehill: Protesters greet Melania with inflatable Trump in Klan outfit at migrant center https://t.co/LOe6zSRHEy https://t.co/xz4QkGqVSf +06/29/2018,Economists,@umairh,I just published “The Faction and the Sect” https://t.co/Ft1ZiY5mBg +06/29/2018,Economists,@umairh,"""The Story"" - @umairh https://t.co/TgWgeoa7iO https://t.co/smgvLvA7RW" +06/29/2018,Economists,@umairh,RT @johnchavens: “Do Americans Understand a Little Bit of Socialism is Good For Them?” by @umairh https://t.co/sPl6i94h4U Excellent read. +06/29/2018,Economists,@umairh,"RT @crampell: Member states of UN migration agency reject Trump's nominee for director general, repudiating historic American control of th…" +06/29/2018,Economists,@umairh,RT @froomkin: Hug your local journalist today. +06/29/2018,Economists,@umairh,So we have serious failures to reckon with. The bad guys are winning because they’re better at the basic arts of po… https://t.co/xSz0zUoxUy +06/29/2018,Economists,@umairh,This idea deficit in liberalism is so bad now in fact that American liberals are trying to claim social democracy f… https://t.co/wbqYFQF5i4 +06/29/2018,Economists,@umairh,That’s why I keep all my money in the form of vintage synths https://t.co/Xnsby967k3 +06/29/2018,Economists,@umairh,Anyone want to tell me the last time liberals had a new idea? Maybe in 1987? See how these junior pundits regurgita… https://t.co/SScIiVkbEC +06/29/2018,Economists,@umairh,See guys the GOP did a few smart things. They turned over the reins to a new generation. They moved the window righ… https://t.co/wUJuAS2hkf +06/29/2018,Economists,@umairh,"You blew it man. I love you, but your generation fucked us. You didn’t fight when it mattered and you didn’t make r… https://t.co/FBB9had0Uw" +06/29/2018,Economists,@umairh,"You know guys, America’s economy is based on consumption. Of imports. Pulling out of all these trade deals is laugh… https://t.co/sIQ71WbQ91" +06/29/2018,Economists,@umairh,The bizarre social construction of race in America https://t.co/afhFJcjMr4 +06/29/2018,Economists,@umairh,LOL https://t.co/kpUYJZraMM +06/29/2018,Economists,@umairh,@scamandrio Hahahah ah man I forgot about that cool guy +06/29/2018,Economists,@umairh,You know it’s funny. About a decade ago I wrote exactly that all boats rising line in a column and all the pundits… https://t.co/DY7Qmrt8se +06/29/2018,Economists,@umairh,"RT @ggreenwald: @Milbank The Dem Party has collapsed as a political force in the US, and a major reason is this constant demand from the es…" +06/29/2018,Economists,@umairh,@a_mutante I read that if they give you a big enough tv you’ll be happy forever +06/29/2018,Economists,@umairh,"Exactly so. Look, the great lesson of the last century was that (new) poverty sparks authoritarianism, fascism, col… https://t.co/ByasEW4k2J" +06/29/2018,Economists,@umairh,"Revolt, obviously https://t.co/NjRiCgxkMC" +06/29/2018,Economists,@umairh,RT @MITGoodCosJobs: “An under-appreciated way to solve America’s jobs problem and rebuild the middle class is to turn the millions upon mil… +06/29/2018,Economists,@umairh,"Exactly. This is the central point that American thought really hasn’t reckoned with, and won’t, because it would h… https://t.co/WvB66mmR6X" +06/29/2018,Economists,@umairh,But aren’t you doing just that too when you tell people what “their job” is? https://t.co/60pXgwtCb4 +06/29/2018,Economists,@umairh,This is the best thing capitalism has ever done for us https://t.co/cIdwRa8hLA +06/29/2018,Economists,@umairh,RT @rubycat24: “The Choice This Decade is (Really) Asking Us to Make” by @umairh https://t.co/K1EOawjltS +06/29/2018,Economists,@umairh,RT @danielleiat: Rob Hiaasen was murdered on his wife’s birthday. They’d just celebrated their 33rd anniversary. “He was just the best husb… +06/29/2018,Economists,@umairh,Note that American maternal mortality is already the lowest among its peers. This will crater it to poor country le… https://t.co/sikk3tcXIA +06/29/2018,Economists,@umairh,"RT @SarahLerner: John Legend: “I don’t care about fucking Sarah Sanders. Reunite the fucking kids with their families, then we’ll talk abou…" +06/29/2018,Economists,@umairh,RT @abogada_laura: My 5-yr-old client can’t tell me what country she is from. We prepare her case by drawing pictures with crayons of the g… +06/29/2018,Economists,@umairh,Firehosed https://t.co/bFA35mACE5 +06/29/2018,Economists,@umairh,You guys should know this stuff by now. Read about it. Everything will make a lot more sense. https://t.co/ZRbDF5KWFd +06/29/2018,Economists,@umairh,"RT @RectorSun: These are the five victims killed at @capgaznews today. +Rob Hiaasen https://t.co/CBJAVUuJNQ +Wendi Winters https://t.co/kKhVl…" +06/29/2018,Economists,@umairh,They’re using a model literally designed by the Russians called the firehose. That’s it’s point. So tyranny has inn… https://t.co/WBmP35kcyd +06/29/2018,Economists,@umairh,One of the things you guys need to think about is: what is a “political view”? Can I believe any old crazy horseshi… https://t.co/ewygmVJtWe +06/29/2018,Economists,@umairh,"Maybe, but modernity was not. And the question isn’t about the West vs the rest, but whether we want modern, open,… https://t.co/6YhJZlvSR7" +06/29/2018,Economists,@umairh,"@nullnein @MishoMoney Your points are well taken. The crisis (for me) wasn’t cause but effect, a lack of investment in institutions was" +06/29/2018,Economists,@umairh,Have you ever noticed how it’s only a certain kind of white dude that says this? Ever wondered why? Its a way for t… https://t.co/LgSF8ifIOw +06/29/2018,Economists,@umairh,“The (Hardest) Choice Americans Don’t Know They Have to Make Yet” https://t.co/bnP5p1ASRH https://t.co/7Iqv8zQnE2 +06/29/2018,Economists,@umairh,“This is Not Normal” https://t.co/UhwjK75BkW https://t.co/eUuLr40NR0 +06/29/2018,Economists,@umairh,"RT @johandewal: ""The American ideal [...] is about having a very specific kind of power — the power not to invest in anyone else at all."" #…" +06/29/2018,Economists,@umairh,This is not a kleptocracy https://t.co/kBrEWkP7Ed +06/29/2018,Economists,@umairh,"RT @bhgreeley: They went back to work, and they put out a damn paper. https://t.co/KftlJhZr8Q" +06/29/2018,Economists,@umairh,"We did. Now fuck off, arse licker https://t.co/jadrZXF7RU" +06/29/2018,Economists,@umairh,Sorry to bombard you guys. This one just really chokes me up. Ugh. What a tragedy. +06/29/2018,Economists,@umairh,"RT @capgaznews: Today, the Capital Gazette lost five members of our family. Stories on all five bright, wonderful lives will be included in…" +06/29/2018,Economists,@umairh,"RT @chicagotribune: Victim Wendi Winters, had identified herself as a “proud Navy mom,” a church youth adviser, a Red Cross volunteer and a…" +06/29/2018,Economists,@umairh,@livlab ah my god. how terrible. stay strong!! +06/29/2018,Economists,@umairh,"what a heartbreaking day, man." +06/29/2018,Economists,@umairh,"RT @brianstelter: Memo from Baltimore Sun Media Group publisher @trifalatzas -- details about the victims -- ""no words can adequately expre…" +06/29/2018,Economists,@umairh,"RT @letsgomathias: The ""14 words"" is a white supremacist slogan that goes ""We must secure the existence of our people and a future for whit…" +06/29/2018,Economists,@umairh,"RT @michelletoh235: ""I can tell you this: We are putting out a damn paper tomorrow"" https://t.co/eFK6JVdZhz via @brianstelter" +06/29/2018,Economists,@umairh,RT @BaltSunBrk: Capital Gazette shooting victim Rebecca Smith: Recent hire loved spending time with family https://t.co/2I3jR5CJ9A https://… +06/29/2018,Economists,@umairh,RT @jd3217: Rob hired me at the Capital. I’ll cherish his friendship forever. https://t.co/YBQClOM7Tv +06/29/2018,Economists,@umairh,"I never thought it was possible to outdo the taliban, but good work America https://t.co/PqrnMp7V9N" +06/29/2018,Economists,@umairh,"RT @leahmcelrath: Yes. Yes, we did. + +A chill went through my body as things started to turn that night. I told my daughter to go to sleep.…" +06/29/2018,Economists,@umairh,I just published “This is Not Normal” https://t.co/dBdRq6tljK +06/29/2018,Economists,@umairh,"So there I have part of an answer, which is helpful. “Dramatic” is a thing people say to block their emotions. Thos… https://t.co/qebSPMmF59" +06/29/2018,Economists,@umairh,maybe in the end it's just like a circle that can't be squared. who knows? all i can tell you i've lived in poor co… https://t.co/tZopAKZUpv +06/29/2018,Economists,@umairh,"i mean i just don't know how to express the dissonance i feel, which is the opposite of the dissonance you feel. mi… https://t.co/OvPKIruiV7" +06/29/2018,Economists,@umairh,"it's baffling. i suppose on one level i need to understand it, on another level i write about it. but i don't think… https://t.co/KdLhMR7oXm" +06/29/2018,Economists,@umairh,"i don't know, maybe americans just don't know this stuff. even in poor countries people protest and demand some kin… https://t.co/jVJNOfxTvz" +06/29/2018,Economists,@umairh,"moral objectors, shall we say https://t.co/njgigXs6Pn" +06/29/2018,Economists,@umairh,"RT @BernsteinJacob: Instead of screaming into the wind about Trump's attacks on the press, let's subscribe to the Capital Gazette for $2 a…" +06/29/2018,Economists,@umairh,"RT @Karoli: I captured the twitter account of the alleged shooter because it’s so disordered. You can read all, some or none here: + +https:/…" +06/29/2018,Economists,@umairh,"america's ability to just go on, get up, go to work, come home, in the face of all this, is really amazing. it's li… https://t.co/ZogJPoGrab" +06/29/2018,Economists,@umairh,lol are we going to see america start discussing the finer points of trotskyist revisionism soon +06/29/2018,Economists,@umairh,@boxbrown exactly +06/29/2018,Economists,@umairh,"RT @JYSexton: An account allegedly belonging to the Annapolis shooter makes frequent threats toward the paper, refers to ""journalist hell,""…" +06/29/2018,Economists,@umairh,"america just needs to rip it all up and start over, it's whole thing is just not working, it's like my twenties" +06/29/2018,Economists,@umairh,"RT @CourtMarabella: These are some of the comments we’re getting on a story we posted about the Annapolis shooting. + +The rhetoric against…" +06/29/2018,Economists,@umairh,LOLOL this is like the perfect logical endpoint of America not teaching its kids modern history https://t.co/jhFtnpUuJf +06/29/2018,Economists,@umairh,"Nice suit, jackass https://t.co/hpTsTlO6l5" +06/29/2018,Economists,@umairh,"RT @zunguzungu: A friend has been doing volunteer legal work at Customs and Border Patrol station and wrote this, and I need a minute. http…" +06/28/2018,Economists,@umairh,"RT @TNTAdam: We're paid for shit. We work like dogs. People, including the president, disparage us at every opportunity. Now they're shooti…" +06/28/2018,Economists,@umairh,"RT @DavidBegnaud: BREAKING: CBS News reports: +*suspect in the Capital Gazette newspaper shooting damaged his fingertips so that law enforce…" +06/28/2018,Economists,@umairh,RT @noahmanger: Shoutout to everyone else who's just been trying to get by while dipping in and out of rage-induced fugue states the last f… +06/28/2018,Economists,@umairh,@BrankoMilan hahahahah +06/28/2018,Economists,@umairh,"/end, i'm gonna go make some music." +06/28/2018,Economists,@umairh,"i see you guys, man. i see your shock, your fear, your little evasions and polite intellectualizations. but i also… https://t.co/3dDdhu0GYf" +06/28/2018,Economists,@umairh,"@nevali @katebevan thanks, i think we can go with ""commissioned"" as a synonym for ""made"" in this case, and you and… https://t.co/BL68qplt4P" +06/28/2018,Economists,@umairh,"this is not a game. the more that you intellectualize it, the more that you rationalize it, the more than you try t… https://t.co/x1PtQTme2m" +06/28/2018,Economists,@umairh,"you see how every single week is more astonishingly horrific than the last one, in unbelievable and incredible ways… https://t.co/WjTVtrxG7E" +06/28/2018,Economists,@umairh,you guys need to wake up man. i say that in a gentle way. journos being attacked is the clearest sign that a hardco… https://t.co/o1mjkRpDz0 +06/28/2018,Economists,@umairh,"you guys still think this some kind of intellectual game? ""oh it's not fascism-authoritarianism"" etc? you are in a… https://t.co/24NYNyYcvg" +06/28/2018,Economists,@umairh,"RT @EdKrassen: BREAKING +Reality Winner has taken a plea deal & will serve 5-years for letting the public know that Russia interfered with o…" +06/28/2018,Economists,@umairh,"the bbc made this, not amazon, this game netflix and amazon play of pretending they make stuff that public media ac… https://t.co/Vv4L4YLzCc" +06/28/2018,Economists,@umairh,RT @segalmr: Actual words said by a govt employee when telling a mom that the United States would be stealing her child. https://t.co/Lg7uK… +06/28/2018,Economists,@umairh,"RT @christinawilkie: Less than 24 hours later, a vigilante started gunning journalists down. https://t.co/d133SEOnbA" +06/28/2018,Economists,@umairh,RT @AP: BREAKING: Official: Suspect in newspaper shooting is white male; believed to have used shotgun; not cooperating with investigators. +06/28/2018,Economists,@umairh,i see you guys politely ignoring this. grow some stones and salute these ladies. they're braver than all these toug… https://t.co/FFmcvPU68w +06/28/2018,Economists,@umairh,RT @girlsreallyrule: Hundreds of female protesters chanting “We Care! We Care!” inside the Hart Senate Office Building today. Many have alr… +06/28/2018,Economists,@umairh,A country in total free fall. +06/28/2018,Economists,@umairh,"RT @mattdpearce: Five are dead at the Capital Gazette offices in Annapolis, police confirm. I'm not sure what the deadliest incident is for…" +06/28/2018,Economists,@umairh,"RT @seldo: This is an actual story on an official government website with a 14-word headline starting with ""we must secure"". This is not an…" +06/28/2018,Economists,@umairh,RT @la10duh: “The (Hardest) Choice Americans Don’t Know They Have to Make Yet” by @umairh. It's so obvious that we can't see it. https://t… +06/28/2018,Economists,@umairh,RT @laurencsheil: “Beating Authoritarianism Isn’t as Simple as You Think. It’s Even Simpler” by @umairh https://t.co/D6s2siCJTW +06/28/2018,Economists,@umairh,see how simple it is... https://t.co/8h5GJ9qV2z +06/28/2018,Economists,@umairh,See how simple this is when you stop overthinking it and pretending the magical missing nuance is going to fix it https://t.co/BBXSNR7gTl +06/28/2018,Economists,@umairh,I’ve often wondered if there’s a national conspiracy in Belgium to have Belgian hair +06/28/2018,Economists,@umairh,RT @atrupar: The president of the United States has been actively promoting hatred of journalists since the first day he took office https:… +06/28/2018,Economists,@umairh,"Look everyone, it’s civility https://t.co/eW2KlzbbPo" +06/28/2018,Economists,@umairh,This is some very brexity football +06/28/2018,Economists,@umairh,RT @MicheleTMusic: “What Civility (Really) Is” by @umairh https://t.co/udTgEqP0sn +06/28/2018,Economists,@umairh,RT @timhadley: What would happen if we tried to set the usual ideological criteria aside and instead talked about political questions in te… +06/28/2018,Economists,@umairh,I just published “The (Hardest) Choice Americans Don’t Know They Have to Make” https://t.co/p7XcHWuZMy +06/28/2018,Economists,@umairh,American thought is more theology now. It tests every last nuance of a highly abstracted theory against a fictional… https://t.co/Jm1QGvHmxl +06/28/2018,Economists,@umairh,"Is universal healthcare “real socialism”? Who the eff cares? It’s just sanity, life, reality in the whole rest of t… https://t.co/u859Tvzu4Q" +06/28/2018,Economists,@umairh,Now you guys loooove splitting these hairs. But it gets you nowhere. Just like Soviets arguing over different nuanc… https://t.co/xHOqEBR63l +06/28/2018,Economists,@umairh,"“Stagnation, Chaos, Breakdown.” https://t.co/iOPN6IOHam" +06/28/2018,Economists,@umairh,Nuance is needed when relationships are complex. But that also means it comes after we genuinely understand the lar… https://t.co/0vmGLEDM8A +06/12/2018,Economists,@profsufi,"RT @AtifRMian: We replicated our key tests using the new data, and essentially confirm our original findings. The full write-up on the out-…" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: IMF released ""Global Debt Database"" last month which added 105 countries to our original sample of 30 countries (the new sam…" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: A thread on out-of-sample replication of my 2017 QJE paper with @profsufi and @EmilVerner titled ""Household Debt and Busines…" +06/11/2018,Economists,@profsufi,"Videos of the entire program, with talks by Ben Bernanke, Raghu Rajan, and others are available here: https://t.co/bpuVwQ6QjX. Enjoy!" +06/11/2018,Economists,@profsufi,My co-author @AtifRMian also presented a summary of our piece coming out in the Journal of Economic Perspectives at… https://t.co/n5U5Muz0n7 +06/11/2018,Economists,@profsufi,Great people at @SHouseofFinance put on an amazing Nobel Symposium on Money and Banking a couple of weeks ago. I ha… https://t.co/bdx791vP7l +04/28/2018,Economists,@profsufi,"Either Fed wasn't responsible for compression in credit risk spreads during easy money period, or we are in for a s… https://t.co/XIVnEl8hdm" +04/28/2018,Economists,@profsufi,"In 2005 tightening cycle, credit risk premium fell and stayed low for some time, and then jumped tremendously. https://t.co/JPZpugAiqh" +04/28/2018,Economists,@profsufi,For 8 years all my Wall Street friends said the Fed was fueling a credit bubble by keeping rates low/QE. Rates are… https://t.co/v8zOJjVOzS +04/28/2018,Economists,@profsufi,"I was updating a credit cycle chart today for a talk at @ChicagoBooth: this seems scary, right? https://t.co/L66vDXAl04" +04/21/2018,Economists,@profsufi,RT @SairaSufi: https://t.co/ODOhzx5Vyx +04/21/2018,Economists,@profsufi,"RT @SairaSufi: Aplastic Anemia has changed our lives forever. However, one thing that will always remain constant is that these two can mak…" +04/21/2018,Economists,@profsufi,RT @SairaSufi: https://t.co/TVAY3hIX7Z https://t.co/klLXhoMwmt +04/21/2018,Economists,@profsufi,"I usually stick to economics on Twitter, but I want to help my beloved nephew Hadi Rasheed out; he has been in hosp… https://t.co/yYEfHE2BKU" +04/03/2018,Economists,@profsufi,"Economic expectations are infected by partisan bias, and this effect is becoming stronger over time. But such parti… https://t.co/nd8rWJWGma" +04/03/2018,Economists,@profsufi,And no evidence from credit card spending of a boost by Republicans relative to Democrats. Enthusiasm on the future… https://t.co/YtkbFfBdXH +04/03/2018,Economists,@profsufi,But views on the economy don't translate into higher spending on autos or using credit cards. Here is autos: https://t.co/n5cYMEVsnZ +04/03/2018,Economists,@profsufi,Here is effect on economic expectations through end of 2017. No sign of abatement whatsoever. Repubs ecstatic about… https://t.co/Ch27NbXuzm +04/03/2018,Economists,@profsufi,"Just posted revision of our partisan bias, economic expectations, and household spending paper. Trump effect on exp… https://t.co/V663ymY4FK" +03/12/2018,Economists,@profsufi,"RT @mdc: If you're looking for the seeds of the next recession, study the ratio of household debt to GDP, according to @profsufi @AtifRMian…" +03/06/2018,Economists,@profsufi,"RT @ProSyn: Credit-supply expansions, not technology shocks, are the key drivers of economic activity. - @profsufi @AtifRMian https://t.co/…" +03/05/2018,Economists,@profsufi,"RT @ProSyn: According to @profsufi @AtifRMian, the Great Recession revealed a fundamental truth about business cycles: it's all about expan…" +03/01/2018,Economists,@profsufi,"RT @equitablegrowth: What changes in the flow of credit to households can tell us about the overall cycle of the economy + +Here’s @nick_bun…" +03/01/2018,Economists,@profsufi,"RT @jeremychrysler: @profsufi There's an NBER working paper on a similar topic. ""counties experiencing relative economic decline did experi…" +02/28/2018,Economists,@profsufi,A project idea for labor economists: is the opioid epidemic a cause or an effect of the longer run decline in prime… https://t.co/rEOiAZ7mIL +02/26/2018,Economists,@profsufi,RT @nberpubs: Empirical evidence accumulated over the last decade supports the view that credit-driven household demand is an important so… +02/26/2018,Economists,@profsufi,"Great @MoneyBanking1 post on #usmpf2018 paper: does QE actually work? If so, how and by how much? https://t.co/7cYeAuuNot" +02/23/2018,Economists,@profsufi,RT @davidmwessel: Krugman. Two surprises in Europe: 1) impact of three words from Draghi was “awesome” 2)political cohension of eurozone. I… +02/23/2018,Economists,@profsufi,RT @davidmwessel: Boston Fed’s Eric Rosengren eviscerates #USMPF paper “Skeptical View of the Impact of the Fed’s Balance Sheet” https://t… +02/23/2018,Economists,@profsufi,"RT @greg_ip: .#USMPF2018 paper: ""The effects of [quantitative easing] are likely more modest than generally claimed."" Therefore: do much mo…" +02/23/2018,Economists,@profsufi,"RT @davidmwessel: Greenlaw, Hamilton, Harris, West at #USMPF say QE didn’t pack as much punch as others say. Dudley disagrees. https://t.…" +02/23/2018,Economists,@profsufi,"RT @mckonomy: NYFed's Dudley on QE: ""I would take a much less skeptical view of the Fed's balance sheet as a tool of monetary policy"" than…" +02/23/2018,Economists,@profsufi,"RT @pdacosta: Fed's Dudley says QE may work best if it's done in an open-ended fashion, pushes back against view that asset purchases were…" +02/23/2018,Economists,@profsufi,RT @NickTimiraos: New research argues the Fed's bond-buying programs may have been less stimulative than previously believed https://t.co/4… +02/23/2018,Economists,@profsufi,"RT @mckonomy: One unappreciated aspect of QE that's not in the paper is the psychological aspect, one official tells me. The markets though…" +02/23/2018,Economists,@profsufi,"RT @greg_ip: Bonds sold off in 2013 because of ""taper tantrum."" Failure to sell off last year as Fed began to contract balance sheet was th…" +02/23/2018,Economists,@profsufi,Here is Eric Rosengren discussion of #USMPF2018 paper: https://t.co/IaahhIQnnG +02/23/2018,Economists,@profsufi,And we are off. #USMPF2018 paper argues QE was not as effective as claimed. Here is Bill Dudley’s discussion: https://t.co/lKgkQopsiZ +02/23/2018,Economists,@profsufi,"In NYC for #USMPF2018 by IGM of @ChicagoBooth. Monetary policy discussion including Dudley, Rosengren, Blanchard, M… https://t.co/sDgJefoJaQ" +02/19/2018,Economists,@profsufi,And here is second video where the credit-driven household demand channel and the link to rising income inequality… https://t.co/ZcTBk7P6u1 +02/19/2018,Economists,@profsufi,The great folks at @chicagobooth also produced two videos where I explain the credit-driven household demand channe… https://t.co/lv6YVJ3fbC +02/19/2018,Economists,@profsufi,"We outline the ""credit-driven household demand channel"" as a central lesson of research conducted since the Great R… https://t.co/QBLXr8AH55" +02/19/2018,Economists,@profsufi,What have we learned about finance and macroeconomics over the last 10 years? New study by @AtifRMian and I: https://t.co/m7UDwD8PxB +02/08/2018,Economists,@profsufi,"And importantly, we find no evidence that this increased political bias in economic expectations has any effect on… https://t.co/IrlCvzocmP" +02/08/2018,Economists,@profsufi,This is part of broader project showing that political polarization is leading to increasingly biased views on the… https://t.co/Do98bBEPuq +02/08/2018,Economists,@profsufi,"Actually, I should really do R in red and D in blue https://t.co/5z4KdJmTb1" +02/08/2018,Economists,@profsufi,Just updated Gallup data on political affiliation and view of economy. If you thought people would become less pola… https://t.co/WRsK6uGBRs +01/24/2018,Economists,@profsufi,Second part of a series in which I discussion the relationship between income inequality and the growth in househol… https://t.co/8F7KvUtu5j +01/24/2018,Economists,@profsufi,RT @chicagoboothrev: Line of Inquiry: Amir Sufi (@profsufi) on inequality's effect on credit availability - the second part of a two-part s… +01/18/2018,Economists,@profsufi,"In memory of Bob LaLonde, this paper is great and enormously prescient. It shows that laid off workers see long ter… https://t.co/psbreJdaSY" +01/14/2018,Economists,@profsufi,RT @CostBenefitKMA: Line of Inquiry: Amir Sufi on household debt and business cycles - Chicago Booth Review https://t.co/mZw2GULAYC via @ch… +01/14/2018,Economists,@profsufi,"RT @lisaabramowicz1: Financial crises happen ""after an unsustainable rise in household debt...These booms sow the seeds of their own destru…" +01/11/2018,Economists,@profsufi,There is a paper almost ready for public with @AtifRMian that I describe in this video. Paper should be out by end… https://t.co/VIA11GCSQp +01/11/2018,Economists,@profsufi,"10 years after onset of Great Recession, what have we learned? My thoughts with @chicagoboothrev at @chicagobooth https://t.co/TF6VqvMHn3" +01/11/2018,Economists,@profsufi,"RT @chicagoboothrev: Introducing Chicago Booth Review's Line of Inquiry video series. In this first of a two-part edition, Amir Sufi (@prof…" +12/06/2017,Economists,@profsufi,"In fact, I find the most insightful book to understand our current politics was written 30 years ago: https://t.co/ukki088ad8" +12/06/2017,Economists,@profsufi,"Fantastic piece by Boxell, Gentzkow, and Shapiro: Blame TV not social media for the rise in political polarization. +https://t.co/rsaC6k7ZaO" +12/01/2017,Economists,@profsufi,@adamdavidson Dreamland by Quinones must be on this list. Opioid epidemic is one of the most important factors in America today. +12/01/2017,Economists,@profsufi,"@gilliantett @FT This is the main argument put forward by our recent research paper: https://t.co/clTVEsybwf +We wil… https://t.co/LzXp2Fxlsz" +12/01/2017,Economists,@profsufi,Great analysis by @gilliantett of @FT on Trump voters and economic sentiment. Bottom line: in forming economic expe… https://t.co/jOCR1E7FpN +11/20/2017,Economists,@profsufi,"RT @ChicagoBooth: Two Nobel laureate winners, Eugene F. Fama and Richard H. Thaler, discuss whether markets are efficient. https://t.co/sbK…" +11/08/2017,Economists,@profsufi,Productivity slowdown in advanced economies one of the top mysteries in economics today. Chad Syverson explains: https://t.co/ly5XzJ5lSq +11/08/2017,Economists,@profsufi,"Chad Syverson, our productivity expert at @chicagobooth explains why productivity slowdown in US is real, not just… https://t.co/c7XZO6ktoB" +10/23/2017,Economists,@profsufi,RT @liorjs: @SeminaryCoOp You also get to hear great research by @profsufi & Stephanie Stern. The book we wrote is available for free here:… +10/23/2017,Economists,@profsufi,"RT @liorjs: I'll speak about The Villages, FL, its fake history & historic preservation 6pm tonight at @SeminaryCoOp bookstore. https://t.c…" +10/23/2017,Economists,@profsufi,"RT @UChicagoLaw: Oct 23 @SeminaryCoOp: Fennell, @liorjs, Stern, @profsufi discuss ""Evidence & Innovation in Housing Law and Policy"" https:/…" +10/19/2017,Economists,@profsufi,"IGM at @ChicagoBooth experts panel on behavioral econ -- unanimous support for importance of psychological insights: +https://t.co/fnFt7KW90n" +10/18/2017,Economists,@profsufi,"RT @davidmwessel: IGM survey of US, European economists rejects notion that easy monetary policy was a major cause of 2008 crisis https://t…" +10/17/2017,Economists,@profsufi,RT @BCAppelbaum: This @chicagobooth poll on causes of the financial crisis is a pretty good example of the wisdom of a crowd. https://t.co/… +10/17/2017,Economists,@profsufi,"@rortybomb @ChicagoBooth My personal view is that this is because question asked about ""financial crisis"" as opposed to ""Great Recession.""" +10/17/2017,Economists,@profsufi,Remarkable: ranking of financial crisis causes identical among US and European economists in @ChicagoBooth IGM poll: https://t.co/oYE9IwXISv +10/17/2017,Economists,@profsufi,Economists in @Chicagobooth IGM poll don't believe GSEs or loose monetary policy main causes of financial crisis: https://t.co/oYE9IwXISv +10/17/2017,Economists,@profsufi,"9 years later, economists believe flawed financial sector regulation and supervision main cause of financial crisis: https://t.co/oYE9IwXISv" +10/17/2017,Economists,@profsufi,What caused the financial crisis? Economic experts in the IGM panel at @ChicagoBooth weigh in: https://t.co/oYE9IwXISv +10/16/2017,Economists,@profsufi,The opioid epidemic since 2000 is one of the most important stories of the US in 21st century. Great reporting: https://t.co/cwjXcxkSyN +10/16/2017,Economists,@profsufi,"The @washingtonpost article on opioid legislation is incredible. A must-read. +https://t.co/cwjXcxkSyN" +10/09/2017,Economists,@profsufi,"In honor of @r_thaler, did anybody notice the tremendous drop in market confidence in Yale survey? I know Thaler fo… https://t.co/WvIEJ4OPvI" +10/09/2017,Economists,@profsufi,Panel discussion at @ChicagoBooth featuring Nobel Prize winner @R_Thaler https://t.co/vzKfNcYoDF +10/09/2017,Economists,@profsufi,The man of the hour at @ChicagoBooth https://t.co/DIgXYTUH8X +10/09/2017,Economists,@profsufi,Dean Rajan takes the podium at Nobel ceremony at @ChicagoBooth https://t.co/t0lbqascge +10/09/2017,Economists,@profsufi,Celebrating Nobel at @ChicagoBooth right now https://t.co/x1uoUI770F +10/09/2017,Economists,@profsufi,"RT @BCAppelbaum: My piece on Richard Thaler's Nobel, which is being regularly updated: https://t.co/C7nB5e4Tcp" +10/09/2017,Economists,@profsufi,"RT @ChicagoBooth: Congratulations to #ChicagoBooth prof Richard H. Thaler (@R_Thaler) , 2017 #NobelPrize laureate in Economic Sciences! htt…" +09/14/2017,Economists,@profsufi,RT @edwardnh: How the 1980s US Boom and early 90s Bust was a precursor to the housing bubble https://t.co/PJD9IOXL1Y @M_C_Klein @profsufi +09/13/2017,Economists,@profsufi,"RT @M_C_Klein: Anyone awake in the 1980s should have known about the dangers in the 2000s + +https://t.co/QdkKJchcIP + +<-- me on the latest Mi…" +09/12/2017,Economists,@profsufi,Pretty definitive evidence of solid median household income growth in both 2015 and 2016 fro the Census: https://t.co/rxNiZ1u7Ml +09/12/2017,Economists,@profsufi,Census median household income for 2016 out. A very important economic release: https://t.co/XuzXNtrSmN +09/12/2017,Economists,@profsufi,"@MatthewPhillips @pewresearch So same thing shows up in three independent sources: Michigan, Gallup, and Pew." +09/12/2017,Economists,@profsufi,"RT @MatthewPhillips: @profsufi It is wild. This switcheroo in overall partisan optimism/pessimism also caught my eye. via @pewresearch +htt…" +09/12/2017,Economists,@profsufi,Rise in partisan bias in economic expectaitons according to Michigan Survey of Consumers data https://t.co/hf3qwTE9s6 +09/12/2017,Economists,@profsufi,Rise in partisan bias in economic expectations according to Gallup data https://t.co/U1iosTSjLW +09/12/2017,Economists,@profsufi,Both Gallup and Michigan show substantial rise in partisan bias in economic expectations over time. Reaching amazing levels since Trump. +09/12/2017,Economists,@profsufi,"Revision of partisan bias and economic expectations just posted, thanks to @Claudia_Sahm and others for comments!: https://t.co/G7goSnf6aB" +09/06/2017,Economists,@profsufi,RT @ChicagosMayor: To all #DREAMers: You are welcome in the City of Chicago. This is your home. Come to school and pursue your dreams. #DAC… +08/24/2017,Economists,@profsufi,RT @amagi1: The Fama Portfolio with contributions from @JohnHCochrane @CliffordAsness @profsufi & more! https://t.co/M1CTiJH7ZE +08/21/2017,Economists,@profsufi,"RT @IlliniBizDean: A plea to my male senior colleagues in economics + +https://t.co/b6IGqSeHdi" +08/14/2017,Economists,@profsufi,"Republican voters showing economic optimism in surveys, but it doesn't seem to translate into actual spending. https://t.co/fPTJ0fuqF8" +08/14/2017,Economists,@profsufi,Update: we have auto sales through June 2017: still no evidence of a rise in auto spending in Republican leaning co… https://t.co/U3wC0B0OZM +08/14/2017,Economists,@profsufi,This is subject of our recent paper: https://t.co/nKTIWdPuIz +08/14/2017,Economists,@profsufi,Republican voters became much more optimistic about the economy since November 2016 -- does it affect actual household spending? +08/12/2017,Economists,@profsufi,the credit risk premium usually a good indicator of potential turn in risk -- i will be watching this in coming week https://t.co/RyDcHO3CDd +08/10/2017,Economists,@profsufi,RT @gkiely: Beautiful Spanish edition of House of Debt by @profsufi & @AtifRMian published by @RBALibros @UChicagoPress https://t.co/jIRb81… +08/03/2017,Economists,@profsufi,"Here is the NBER digest piece describing the research: +https://t.co/98WZW6kQkL" +08/03/2017,Economists,@profsufi,Paper is forthcoming in QJE. +08/03/2017,Economists,@profsufi,"Replication kit for ""Household Debt and Business Cycles Worldwide"" with @AtifRMian and @EmilVerner available here: https://t.co/tZABbB0bcl" +07/21/2017,Economists,@profsufi,RT @ChicagoBooth: Women are more harshly punished on Wall Street than men: https://t.co/NoYEACSfoR +07/20/2017,Economists,@profsufi,"RT @Neil_Irwin: Americans are becoming more partisan in attitudes about the economy, but it isn't translating into their spending. https://…" +07/18/2017,Economists,@profsufi,"Interesting: RMBS bankers potentially involved in mortgage fraud from 02-06 did not face discipline in labor market +https://t.co/4J7wb2QP9L" +07/17/2017,Economists,@profsufi,"Here is link again, may help explain why trump bump in consumer sentiment has not boosted spending: https://t.co/nKTIWdPuIz" +07/17/2017,Economists,@profsufi,Thanks to @Claudia_Sahm for great comments on our partisanship and economic expectations paper! Will incorporate in revision. +07/14/2017,Economists,@profsufi,RT @teasri: Great paper by @AtifRMian & @profsufi. h/t @M_C_Klein https://t.co/HNAoBXfBG6 +07/14/2017,Economists,@profsufi,RT @M_C_Klein: Clever paper from @AtifRMian & @profsufi on how consumer expectations don't seem to affect actual consumer spending https://… +07/14/2017,Economists,@profsufi,Why are retail sales weak despite trump jump in consumer sentiment? Our new research helps explain? https://t.co/nKTIWdPuIz +07/12/2017,Economists,@profsufi,RT @EmilVerner: Nice summary of my recent work with @AtifRMian and @profsufi on how credit expansions affect the real economy https://t.co/… +07/12/2017,Economists,@profsufi,"RT @equitablegrowth: .@AtifRMian, @profsufi & @EmilVerner find banking deregulation leads to a more amplified business cycles https://t.co/…" +06/05/2017,Economists,@profsufi,"@aliciaparlap Hi Alicia, did NYT ever do a 2016 zip code level presidential vote share data set? Are 2012 data available?" +04/28/2017,Economists,@profsufi,I am not sure why anyone takes seriously consumer sentiment shifts following elections. They don't translate into actual spending. +04/28/2017,Economists,@profsufi,Changes in consumer sentiment driven by who wins presidency has no predictive power for actual spending. https://t.co/clTVEsybwf +04/28/2017,Economists,@profsufi,Why didn't rise in measures of consumer sentiment following election lead to bump in GDP growth? See this: https://t.co/clTVEsybwf +03/29/2017,Economists,@profsufi,@Nate_Cohn do you have a good resource for me for the official voter files you used to estimate turnout in your piece yesterday? +03/03/2017,Economists,@profsufi,"When @HyunSongShin speaks, I listen. You should to. Very interesting views on long term rates https://t.co/1OaZn4wXjm" +03/03/2017,Economists,@profsufi,RT @BIS_org: Possible feedback loop driving yields lower holds implications for #MonetaryPolicy:Shin #USMPF2017 https://t.co/fkdpkD1K6I htt… +03/03/2017,Economists,@profsufi,RT @BCAppelbaum: FISCHER: “There is almost no economic indicator that has come in badly in the last three months.” +03/03/2017,Economists,@profsufi,"RT @BCAppelbaum: In summary, the Federal Reserve is raising interest rates on March 15." +03/03/2017,Economists,@profsufi,RT @BIS_org: Lower yields may reflect investor risk management rather than signal economic weakness: Shin #USMPF2017 https://t.co/fkdpkD1K6I +03/03/2017,Economists,@profsufi,Another nice writeup of #usmpf2017 paper: https://t.co/Joe1JvUNrM +03/03/2017,Economists,@profsufi,Summary of #usmpf2017 paper: https://t.co/5b4yVTOfww +03/03/2017,Economists,@profsufi,RT @pdacosta: The Fed could be on the verge of making a big mistake https://t.co/y6IpMSpSa5 #USMPF2017 +03/03/2017,Economists,@profsufi,"RT @greg_ip: .@ChicagoFed's Charlie Evans: if #USMPF2017 paper is right that inflation is a random walk, ""As a policy maker I would be horr…" +03/03/2017,Economists,@profsufi,"RT @federalreserve: Speech by Vice Chairman Fischer on monetary policy: by rule, by committee, or by both?: https://t.co/BgyJvoyvsp" +03/03/2017,Economists,@profsufi,RT @WSJecon: Fed’s Vice Chair Stanley Fischer: Collective decision-making is better than rule-based policy making https://t.co/niSIHr0W3V +03/03/2017,Economists,@profsufi,RT @KarenMracek: Updated list: Brainard and Dudley also here #USMPF https://t.co/4FnEuuEEBT +03/03/2017,Economists,@profsufi,RT @zerohedge: FED'S EVANS: CONCERNED BY SIGNS INFL EXPECTATIONS BELOW TARGET +03/03/2017,Economists,@profsufi,RT @KarenMracek: Here's the paper being presented at #USMPF Says Fed needs to overshoot its inflation target for year or two https://t.co/… +03/03/2017,Economists,@profsufi,"And we are off: #usmpf today with fischer, Evans, lacker, reinhart, shin among others." +03/03/2017,Economists,@profsufi,RT @RichmondFed: Jeffrey Lacker's remarks on inflation dynamics from the U.S. Monetary Policy Forum https://t.co/x2q95wJAww #usmpf +03/03/2017,Economists,@profsufi,RT @KarenMracek: Chicago Fed's Evans slides for the #USMPF posted online here https://t.co/E8QPfXmYtG +02/04/2017,Economists,@profsufi,"Over 20K faculty at U.S. universities and colleges against Trump immigration policies: +https://t.co/HK9nhRony6" +02/04/2017,Economists,@profsufi,"RT @AcademicsVsBan: 50 Nobel Laureates have now signed the petition denouncing the President's Executive Order: https://t.co/uXmBtfVXxT +#No…" +01/29/2017,Economists,@profsufi,"At latest count, 117 faculty at University of Chicago @UChicago voice opposition to Trump immigration EO: https://t.co/k5YXnqkS4v" +01/29/2017,Economists,@profsufi,"Study by GMAT org shows best intl students less likely to come to US since Trump election (this was in December): +https://t.co/GEWmq6GkL3" +01/29/2017,Economists,@profsufi,Association of American Universities statement urging quick end to restrictions on students/scholars: https://t.co/eEaeQ1tBYW +01/29/2017,Economists,@profsufi,"University of Chicago statement on Trump executive order on immigration: +https://t.co/hujNZgMJVF" +01/27/2017,Economists,@profsufi,"Fellow academics: please voice opposition to the terrible immigration policies proposed by Trump administration: +https://t.co/YFeK22Gpk3" +01/11/2017,Economists,@profsufi,"Join Randy, Marianne,and me at @ChicagoBooth Economic Outlook in NY tomorrow! https://t.co/cYFwH8BasL" +01/11/2017,Economists,@profsufi,RT @UCPbooks: @profsufi https://t.co/UzlOaHqjX8 +01/11/2017,Economists,@profsufi,@UCPbooks exactly what i needed thanks! +01/11/2017,Economists,@profsufi,@reihan @Nate_Cohn thanks! this is the risk in taking time off reading political news ... +01/11/2017,Economists,@profsufi,"I have been out of loop, please let me know if someone has been making this point on polarization within whites based on education." +01/11/2017,Economists,@profsufi,"High educated whites switched from Romney to Clinton, low educated whites switched (massively) from Obama to Trump.… https://t.co/eg22jvObfu" +01/11/2017,Economists,@profsufi,"Exit poll data shows white vote share for republican basically same in 2012 and 2016. I'm confused by the ""whites for trump"" narrative." +01/11/2017,Economists,@profsufi,"Has anyone else emphasized that Trump victory was due to LESS-EDUCATED whites, not shift in whites in general? https://t.co/BRXMrtcJLA" +01/09/2017,Economists,@profsufi,The award belongs to Princeton's @AtifRMian as much as me. I just happen to be 18 months younger! Thanks to all for well wishes. +12/08/2016,Economists,@profsufi,"RT @chicagoboothrev: IGM's European panel of experts indicates free movement of people has been good for the average western European +https…" +12/07/2016,Economists,@profsufi,"Expert European economists provide answers to critical issues in Europe such as Brexit, trade, migration, and taxes: +https://t.co/VKlLhEYpHU" +12/07/2016,Economists,@profsufi,"The IGM at @ChicagoBooth launched the European Experts Panel today! Check it out, @chicagoboothrev +https://t.co/VKlLhEYpHU" +11/21/2016,Economists,@profsufi,"Leading academic economists unimpressed with Trump economic plan for first 100 days, @chicagoboothrev @chicagobooth: https://t.co/QIpfI7snS1" +11/10/2016,Economists,@profsufi,"Raghuram Rajan is back at Booth! See his IGM talk here: https://t.co/MAnyrjrZ4m +@chicagoboothrev @ChicagoBooth" +11/10/2016,Economists,@profsufi,@jtrothwell Hey Jonathan can you send me your email address? Mine is amir.sufi@chicagobooth.edu. Want to talk your Trump voter research +09/23/2016,Economists,@profsufi,Video games and the decline in employment of young men: Check it out: https://t.co/otLm183gWp +09/23/2016,Economists,@profsufi,"Really interesting research by my colleague Erik Hurst. Generally, you should read everything he writes! +https://t.co/otLm183gWp" +07/31/2016,Economists,@profsufi,"Rise of Trump predictable based on what we know happens after financial crises: my thoughts on polarization. +https://t.co/jIqcXMbaU2" +07/31/2016,Economists,@profsufi,"Stop pretending America's housing boom had nothing to do with lending standards, nice work by @M_C_Klein: +https://t.co/A1GhKORUi4" +07/31/2016,Economists,@profsufi,My thoughts on Brexit--a failure of economists to recognize groups negatively affected by trade and immigration: https://t.co/Mq5Pyxwx86 +06/19/2016,Economists,@profsufi,"A huge loss for India, but a huge gain for @ChicagoBooth -- So thrilled to welcome Raghu back!!" +05/06/2016,Economists,@profsufi,RT @ddayen: My book Chain of Title is now in stock at Amazon. Winner of the Ida & Studs Terkel Prize. Brighten your day & order! https://t.… +05/06/2016,Economists,@profsufi,See Luigi and I discuss the reasons why our politics is changing https://t.co/3O31c9kDpm +05/06/2016,Economists,@profsufi,Very excited to read @ddayen new book on terrible foreclosure practices by banks during Great Recession: https://t.co/ZDelzM6kEp +05/04/2016,Economists,@profsufi,More insight explaining how trade with China has contributed to polarization and the rise of Trump: https://t.co/f7BIiEoKEQ +05/04/2016,Economists,@profsufi,The rise of Trump was quite predictable if one looks at history of post-financial crisis politics: https://t.co/RMKSTlDVqm +05/04/2016,Economists,@profsufi,"RT @BoothFullTime: Thank the financial crisis for today's partisan politics, by @profsufi via @BoothCapIdeas https://t.co/10pGSk7xZd" +04/21/2016,Economists,@profsufi,"This is really great journalism on the newest form of ""subprime"": well done @HeatherPerlberg: +https://t.co/EY5KpBQ4ll" +04/21/2016,Economists,@profsufi,@HeatherPerlberg what is your email/phone number? i have a question regarding the Apollo piece you wrote. thanks! +03/29/2016,Economists,@profsufi,Looks like @Austan_Goolsbee can finally get that car he has been dreaming about https://t.co/48r3L4Fri2 +02/29/2016,Economists,@profsufi,First study to provide large-scale analysis of misconduct among financial advisers and financial advisory firms. https://t.co/gDYnBhUyLz +02/29/2016,Economists,@profsufi,"Almost half of financial advisers fired after misconduct are hired by other financial services firms: +https://t.co/gDYnBhUyLz" +02/26/2016,Economists,@profsufi,"RT @UofCBoothNews: Another economic slump, another communications test for Fed. @Research by @profsufi @CNBC https://t.co/kNM13hOhNs #econo…" +02/26/2016,Economists,@profsufi,RT @davidmwessel: Lael Brainard is giving a very dovish speech at #usmpf +02/26/2016,Economists,@profsufi,RT @davidmwessel: Jay Powell defends the dot plots. Says it forces each fomc member to come up with coherent view. #usmpf +02/26/2016,Economists,@profsufi,RT @KarenMracek: Fed Board Gov Powell says a data-dependent monetary policy means the #FOMC will surprise markets from time to time #USMPF +02/26/2016,Economists,@profsufi,RT @KarenMracek: Fed Gov Powell says dot plot 'presents a number of challenges' but says it is helpful for markets and committee #USMPF @fe… +02/26/2016,Economists,@profsufi,RT @BCAppelbaum: @profsufi You guys should have included a response from the markets/media. +02/26/2016,Economists,@profsufi,RT @BCAppelbaum: All forward guidance is inherently calendar guidance. The Fed might as well try to bail out the ocean. #usmpf https://t.co… +02/26/2016,Economists,@profsufi,"If reporter asks, ""when will next rate happen?"" Right answer is: it depends on how economy evolves https://t.co/I6sTGixnEk +#usmpf2016" +02/26/2016,Economists,@profsufi,Basic point: Fed should not cater to press/market demands for time based forward guidance https://t.co/I6sTGixnEk +02/26/2016,Economists,@profsufi,"RT @ylanmui: #USMPF2016: ""Fed communication has relied too heavily on time-based forward guidance, even though it mentions conditionality.""" +02/26/2016,Economists,@profsufi,The #USMPF2016 paper is out. Discussion from Jay Powell and John Williams coming up. https://t.co/I6sTGixnEk +02/19/2016,Economists,@profsufi,"household debt boom gone wrong in brazil was predictable. we see it over and over. +https://t.co/vYzfsx1bQq" +02/19/2016,Economists,@profsufi,"china, brazil, thailand: when are we going to learn that juicing household spending through debt doesn't grow economy in a sustainable way?" +02/19/2016,Economists,@profsufi,"Trade surplus rising in Brazil, driven by collapse in imports. Any commodity-based explanation goes the WRONG WAY. +https://t.co/z26MW7P4yF" +02/19/2016,Economists,@profsufi,"In Brazil, reversal of trade deficits, economy collapsing, political instability, all indications of a household credit boom gone bad." +02/19/2016,Economists,@profsufi,"Brazil collapsing: sharp rise in consumer credit in boom years likely playing a very important role: +https://t.co/HpfgY8jwDZ" +02/11/2016,Economists,@profsufi,ZLB has not been main constraint on monetary policy: broken redistribution channel is culprit. Pushing rates even well below zero won't help +02/11/2016,Economists,@profsufi,"It is no surprise that monetary policy unable to boost economy, even by pushing rates into negative territory. https://t.co/AiRpl30q0e" +02/11/2016,Economists,@profsufi,Pushing policy rates below zero has limited impact on economy bc redistribution channel of monetary policy is broken https://t.co/AiRpl30q0e +02/08/2016,Economists,@profsufi,That Quicken commercial? See our book to see how that turns out: #houseofdebt: https://t.co/oZBKgbHIng +02/05/2016,Economists,@profsufi,"@GoranHjelm agreed. statistically significant with thailand, but not without. i think if china truly reported GDP, it would be more robust." +02/05/2016,Economists,@profsufi,"Financial/corporate debt surge gets much attention, but China also saw big rise in household debt 07 to 14. +https://t.co/IpVT4PVFDA" +02/05/2016,Economists,@profsufi,"This correlation would be even stronger if we had credible GDP growth information in China. Don't forget, China had big HH debt boom as well" +02/05/2016,Economists,@profsufi,"Countries with big rise in HH debt from 07 to 14 seeing downward revisions in growth forecasts:Thailand, Brazil. https://t.co/8zlSjVKblt" +06/29/2018,Economists,@Nouriel,"RT @SteveRattner: Trump just cited a tax-cut related benefit of $2,000 (or more) for Americans . . . NOTE: the average American will receiv…" +06/29/2018,Economists,@Nouriel,RT @ButtCoin: travel agency realizes that coiners never leave the basement https://t.co/amKrXNVZW9 +06/29/2018,Economists,@Nouriel,RT @Bitfinexed: Kraken was presented with evidence of wash trading back in November of 2017 and did nothing about it. Kraken also has prefe… +06/29/2018,Economists,@Nouriel,"RT @Noahpinion: Today in our @bopinion debate, @conorsen speculated that big corporations might be over-levered, and that the next recessio…" +06/29/2018,Economists,@Nouriel,RT @ruskin147: For those who didn’t understand this gibberish - don’t worry neither did I https://t.co/eqXUDmEXEB +06/29/2018,Economists,@Nouriel,RT @Bitfinexed: I know. 🤪 https://t.co/TpAyJ5XI6r +06/29/2018,Economists,@Nouriel,RT @sullydish: Trump’s Always-Wrong Economist Lawrence Kudlow Wrongly Says Deficit Is Falling https://t.co/h0Tt3B5ldk via @intelligencer +06/29/2018,Economists,@Nouriel,RT @mattleising: there was no link to Tether issuance and secondary market trading on Kraken that we found. Tether is created in huge and s… +06/29/2018,Economists,@Nouriel,"RT @CasPiancey: @DanDarkPill @CryptoQF @joonian @mattleising So 13,076.389 keeps coming up because... sats? I'm sorry, but this isn't addin…" +06/29/2018,Economists,@Nouriel,RT @prestonjbyrne: .@mattleising awesome analysis of tether trades. I've suspected that bot-driven wash trading is the *only* thing that cr… +06/29/2018,Economists,@Nouriel,RT @martinmcgrath: I have a vision of loads of HODLers pushing wheelbarrows full of servers down to the bakers in order to buy a loaf of br… +06/29/2018,Economists,@Nouriel,More evidence of criminal price manipulation by Tether. When will the regulators start cracking down on this crimin… https://t.co/Jg1xQcGnth +06/29/2018,Economists,@Nouriel,The dumb suckers who remained HODLers rather than FODLers have lost over 70% - or rather 99% for many coins - in 6… https://t.co/3AphilHyEb +06/29/2018,Economists,@Nouriel,RT @PWhiz636: My heart and thoughts go out to all HODLERS as their portfolio gets decimated #cryptocurrencies #bloodbath #bitcoin #BitcoinC… +06/29/2018,Economists,@Nouriel,RT @WscCrypto: Bitcoin bloodbath nears dot-com bubble burst as many tokens go to zero https://t.co/h4OABmqDde +06/29/2018,Economists,@Nouriel,Bitcoin Bloodbath Nears Dot-Com Levels as Many Tokens Go to Zero https://t.co/ZVODmMOkVk via @technology +06/27/2018,Economists,@Nouriel,"RT @ProSyn: In 1988, China's per capita GDP was just 4% of the US level (in PPP terms). This year, that ratio is close to 30% https://t.co/…" +06/27/2018,Economists,@Nouriel,"RT @greg_ip: Incorrect. Over course of Obama's two terms, quarterly growth exceeded 2% (annualized) 17 times, 3% eight times, 4% three time…" +06/27/2018,Economists,@Nouriel,RT @ProSyn: Turkey's double-digit inflation and 6%-of-GDP current-account deficit congratulate President Erdogan https://t.co/8OO7ixcPFo +06/27/2018,Economists,@Nouriel,"RT @ProSyn: What is actually in China's ""Made in China 2025"" plan? Shang-Jin Wei of @Columbia explains https://t.co/lXE80X83fB" +06/27/2018,Economists,@Nouriel,"RT @el33th4xor: EOS is the best Store of Drama, bar none. + +Now, ""the arbitrator"" is telling ""the dev"" to buzz off, since he's the central f…" +06/27/2018,Economists,@Nouriel,RT @ProSyn: Merkel's surprising concessions on eurozone reform reflect the brewing political problems she faces at home https://t.co/NqgbH0… +06/27/2018,Economists,@Nouriel,"RT @ummjackson: What a surprise that just 2 weeks after launching, #EOS is considering scrapping its entire “constitution” and starting ove…" +06/27/2018,Economists,@Nouriel,"RT @ianbremmer: We appear to be living in the 10,001th simulation. https://t.co/PiZQCpDxH0" +06/27/2018,Economists,@Nouriel,"RT @crypto: JUST IN: The FBI has 130 cases tied to cryptocurrencies, agent says https://t.co/Tl9APaK2qP https://t.co/fmmzgiKlPK" +06/27/2018,Economists,@Nouriel,"RT @RBReich: Next time you hear someone railing against immigrants, mention these facts: +1) Immigrants add ~$1.5 trillion to U.S. GDP annua…" +06/27/2018,Economists,@Nouriel,"RT @ProSyn: The capacity to supply “what technology wants” may determine which economies are positioned for success, and which are bound to…" +06/27/2018,Economists,@Nouriel,"RT @ianbremmer: Most dangerous countries for women + +1 India +2 Afghanistan +3 Syria +4 Somalia +5 Saudi +6 Pakistan +7 Dem. Rep. of Congo +8 Yeme…" +06/27/2018,Economists,@Nouriel,RT @Bitfinexed: Another Brock Pierce and Bitfinex disaster. Psst: They didn’t raise $4 Billion because they engaged in a bunch of illegal w… +06/26/2018,Economists,@Nouriel,"RT @Fizzhogg: In interview w Bloomberg, Harley-Davidson Inc. CEO Matt Levatich said “If President Donald Trump hadn't removed the U.S. from…" +06/26/2018,Economists,@Nouriel,RT @ForeignPolicy: Unprecedented business opportunities have emerged from China’s massive surveillance-state expansion and its national pus… +06/26/2018,Economists,@Nouriel,RT @FinancialTimes: HSBC now has a robot working with customers – and taking selfies with them – in its Fifth Avenue branch in New York htt… +06/26/2018,Economists,@Nouriel,"RT @FUD_Buddy: A director within the United States Secret Service testified on Wednesday to Congress, urging the government to take decisiv…" +06/26/2018,Economists,@Nouriel,RT @BruceBartlett: I broke from the Republican Party & was banned from polite GOP society because of Bush 43's stupidity & bad policies. Bu… +06/26/2018,Economists,@Nouriel,"RT @ProSyn: If the financial crisis ten years ago taught us anything, it is that risks often emerge where they are least expected https://…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: The opposite of populist nationalism is not globalist elitism; it is economic realism. And in the end, reality will win | @Kale…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: By undercutting German Chancellor Angela Merkel's leadership from within the CDU/CSU alliance, Horst Seehofer is playing with f…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: The Brexiteers' hope for a ""global Britain"" that will preside over a vast ""Anglosphere"" has already become a comical and danger…" +06/26/2018,Economists,@Nouriel,"RT @crypto: Bitcoin could be a bubble, Jack Ma warns https://t.co/KrXIDyYb8I https://t.co/AIJrXuv1FK" +06/26/2018,Economists,@Nouriel,RT @ProSyn: The Trump administration is demanding that Mexico set a wage floor of $16 per hour for its auto workers. That is the equivalent… +06/26/2018,Economists,@Nouriel,"RT @Brad_Setser: Strongly recommend latest column from @M_C_Klein, which emphasizes just how regressive China's system of taxation is. + +Tha…" +06/26/2018,Economists,@Nouriel,RT @buytheirfear: Updated psychology of a market https://t.co/64IqXmZV9K +06/26/2018,Economists,@Nouriel,"RT @elerianm: Via @FT : Agustín #Carstens , general manager of the #BIS , on the #risks for financial #markets following ""a decade of unusu…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: Nowadays, competing strategic interests and imperial ambitions play a much larger role than religion in defining regional polit…" +06/26/2018,Economists,@Nouriel,RT @crypto: The crypto collapse is spreading with hundreds of coins plunging in value https://t.co/DI7Al5AUry https://t.co/gT8EWvW9G7 +06/26/2018,Economists,@Nouriel,"RT @ProSyn: In the mid-1980s, the share of US wealth held by the bottom 90% of the population peaked at 35%. Three decades later, they owne…" +06/26/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Now that Bitcoin is suffering its inevitable demise - it was inevitable, the whole scheme was hemorrhaging cash becaus…" +06/26/2018,Economists,@Nouriel,RT @ProSyn: Putin and Europe’s right-wing populists have made a common enemy of the US- and EU-led global order. – @RSkidelsky https://t.co… +06/26/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: To all the clueless lemmings arguing that blockchain and Bitcoin are still young so you can't criticise them for being… +06/26/2018,Economists,@Nouriel,RT @EconguyRosie: $440 billion of American profits are derived from abroad annually - 20% of the earnings pie! This is because US direct in… +06/26/2018,Economists,@Nouriel,"RT @Brad_Setser: Is China's so-called ""nuclear"" option of Treasury sales really nuclear? + +My answer - in a blog posted last Friday - is no.…" +06/26/2018,Economists,@Nouriel,"RT @peter_tl: UBS survey of 600 companies spells out Brexit ""dividend"": +- 35% of companies plan to reduce UK investment post-Brexit +- 41%…" +06/26/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Before you start hallucinating a genius plan of buying crypto on the dip, and selling it high, think: who are you buyi…" +06/26/2018,Economists,@Nouriel,"RT @NancyNakamoto: Crypto always wants ""New Money"" because it is the only way for early entrants to a Ponzi scheme to get richer/get out.…" +06/26/2018,Economists,@Nouriel,"RT @davidealgebris: (BN) BIS Signals Cryptocurrencies Should Be Regulated Like Securities +@Nouriel. When this happens all Cryptocurrencies…" +06/23/2018,Economists,@Nouriel,RT @NancyNakamoto: Very please that world leading economist and fearless fighter for truth and logic has agreed to appear on the 10 NancyNo… +06/23/2018,Economists,@Nouriel,"RT @davidgerard: News: Mt. Gox recovers, Bitcoin crashes, Bitfinex/Tether, Kaminska to Parliament, Hydro-Québec, TRON, EOS, Nano insecure k…" +06/23/2018,Economists,@Nouriel,Trump’s Gift to China by Joschka Fischer @ProSyn https://t.co/UY3cmSp2pF +06/23/2018,Economists,@Nouriel,RT @elerianm: Friday’s fall in yields on #Greek #bonds makes total sense. Credit risk is lower due to debt maturity extensions and extra fu… +06/23/2018,Economists,@Nouriel,"RT @ProSyn: Without joint policies to maintain transatlantic cohesion between the US and the EU, the West as we know it will soon come to a…" +06/23/2018,Economists,@Nouriel,RT @FactFreeh: Louis Freeh vouched for the Kliuyev brothers and they fled to Russia; Freeh vouched for Romanian Gabriel Popoviciu and he we… +06/23/2018,Economists,@Nouriel,"RT @meridiocrypto: The first 1300 million tethers made bitcoin go x25 up to 20k. +The next 1300 million tethers were unable to hold bitcoin,…" +06/23/2018,Economists,@Nouriel,"RT @Bitfinex2: It’s with regret that we announce the one and only Mr. Potter is leaving our company. + +We can’t say why he’s leaving but he…" +06/23/2018,Economists,@Nouriel,"RT @ProSyn: Since the 2008 global financial crisis, the debt held by nonfinancial corporations has grown by $29 trillion https://t.co/rcIoH…" +06/23/2018,Economists,@Nouriel,"RT @altcointhoreau: The entire 2017 bull run was: +>Tether prints money out of thin air +>Uses it to buy Bitcoin +>Bitcoin goes up due to fomo…" +06/23/2018,Economists,@Nouriel,RT @ianbremmer: It’s painful to see an ex-Governor become an overt racist. https://t.co/8IjAzMwbNt +06/23/2018,Economists,@Nouriel,RT @ProSyn: Nationalism versus globalism appears to be this decade’s defining political conflict | @Kaletsky https://t.co/W7coFJUii2 +06/23/2018,Economists,@Nouriel,RT @crampell: Trump’s tariff on steel imports has caused the country’s remaining major nail producer to lose about 50% of its business in t… +06/23/2018,Economists,@Nouriel,RT @ProSyn: Italy’s real per capita GDP is lower today than it was when the euro began 20 years ago https://t.co/NiNRs4gnnT +06/23/2018,Economists,@Nouriel,"RT @adamdavidson: I know we're cautioned to go easy on the Nazi parallels, but this is too clear an example. + +This is no different from a…" +06/23/2018,Economists,@Nouriel,RT @ProSyn: Italy is beset by political and economic crises that could plunge it – and Europe – into the abyss https://t.co/gmZK2fBola +06/23/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: Bitcoin's price is an arbitrary amount of real cash people decide to pay for a simple database entry that gives them n… +06/23/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: Have you heard? Everyone who's livelihood depends on suckers buying Bitcoin predicts that Bitcoin will rebound very so… +06/22/2018,Economists,@Nouriel,"In crypto-land the authorities are police, censors, prosecutors and judges. So much for the b/s such as decentraliz… https://t.co/vr5z2C4Rbk" +06/22/2018,Economists,@Nouriel,RT @ProSyn: Europe has been sleepwalking through a decades-long realignment of global power. - Joschka Fischer https://t.co/UND0rrALYV +06/22/2018,Economists,@Nouriel,RT @crypto: Bitcoin has biggest drop in more than a week after Japan censures 6 of its biggest exchanges https://t.co/bolixuAhmW https://t.… +06/22/2018,Economists,@Nouriel,RT @ProSyn: The Trump administration is demanding that Mexico set a wage floor of $16 per hour for its auto workers. That is the equivalent… +06/22/2018,Economists,@Nouriel,"RT @RosaRoubini: Oue #Boe Review is online. +We discuss: +-What the BOE has decided at its June 2018 MPC +-What Governor Carney and Chancell…" +06/22/2018,Economists,@Nouriel,"RT @RBReich: This has been the GOP's plan all along: +1) Demand massive tax cuts for the rich & corporations. +2) Claim the cuts will pay f…" +06/22/2018,Economists,@Nouriel,"RT @prestonjbyrne: The hilarious thing about Eos is how, despite zero legal structuring, all of the kids are pretending that they're runnin…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Hello, bagHODLers. +Maybe it's time to start questioning how exactly a super slow database that costs $5B per year to h…" +06/22/2018,Economists,@Nouriel,"RT @Brad_Setser: China, Trump, trade wars and China's options for asymmetric retaliation, including Treasury sales (and possible U.S. count…" +06/22/2018,Economists,@Nouriel,"RT @ofnumbers: if had $1 filthy statist dollar for every time I heard a bitcoiner say, ""the institutions are about to get in, in a very big…" +06/22/2018,Economists,@Nouriel,"RT @WSJCentralBanks: The New York Fed's culture needs to be continually assessed for weaknesses, says the bank’s newly retired president ht…" +06/22/2018,Economists,@Nouriel,RT @NewYorker: For most of Thursday’s game—a 3–0 loss to Croatia—the Argentine coach Jorge Sampaoli was the only team member on the field w… +06/22/2018,Economists,@Nouriel,RT @coindesk: Japan's Financial Watchdog Orders AML Shake-Up at 6 Crypto Exchanges https://t.co/jZVxvfdCAr https://t.co/s9JcLvMBvd +06/22/2018,Economists,@Nouriel,"RT @CH_Events: ""60-70 governments around the world have been captured by kleptocrats."" Is good governance in global decline? #CHLondon" +06/22/2018,Economists,@Nouriel,"RT @MarkitEconomics: Flash Eurozone Composite Output #PMI rises to 54.8 (vs. 54.1 prev), signalling a regaining of momentum. However, manuf…" +06/22/2018,Economists,@Nouriel,RT @robertosaviano: L'Italia è il Paese occidentale con più giornalisti sotto scorta perché ha le organizzazioni criminali più potenti del… +06/22/2018,Economists,@Nouriel,RT @ProSyn: Italy's new populist government insists that it will neither abandon the euro nor blow up the budget deficit in violation of EU… +06/22/2018,Economists,@Nouriel,"RT @elerianm: Via @CNBC , and illustrating the gradual ongoing shift in consensus away from the synchronized pick-up in global #growth , #I…" +06/22/2018,Economists,@Nouriel,"RT @ummjackson: Perfect example of how shameless people in the blockchain space are. CEO creates and shares a ""50+ Real World Use Cases"" in…" +06/22/2018,Economists,@Nouriel,RT @ProSyn: .@Kemal_Dervis predicts that the 2019 European Parliament election will advance far-reaching political restructuring https://t.… +06/22/2018,Economists,@Nouriel,RT @TheBlueMatt: Private blockchain company acquires private blockchain company with proceeds from illegal securities offering. This space… +06/22/2018,Economists,@Nouriel,"RT @crypto: U.S. House members are told to publicly reveal any cryptocurrency holdings worth more than $1,000 https://t.co/DlVL6CQZzO https…" +06/22/2018,Economists,@Nouriel,RT @vexmark: I hate these extremely rare occurrences of crypto exchanges getting hacked once a week +06/22/2018,Economists,@Nouriel,"RT @ReutersJamie: Trade war fears ramp up dramatically, notes Citi, as the proposed amount of US imports subject to tariffs approaches $800…" +06/22/2018,Economists,@Nouriel,RT @el33th4xor: We will soon see AI personalities emerge on social media. The Turing Test will cease to have any relevance and give way to… +06/22/2018,Economists,@Nouriel,"RT @ProSyn: After the G7 Quebec summit, there can no longer be any doubt that the West is in crisis, says @javiersolana https://t.co/IqnSd6…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: By describing his relationships with @JustinTrudeau and Kim Jong-un in similar terms, @realDonaldTrump did not just look clumsy…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: .@JeffDSachs traces the climate-change crisis to a profound debasement of politics, economics, and technology https://t.co/Bfpy…" +06/22/2018,Economists,@Nouriel,"RT @CliffordAsness: Sad. Let’s pass tariffs then make up conspiracies when the damage starts. Even if he’s being honest, his being shocked…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: For the first time, IMF statisticians have compiled a comprehensive set of calculations of both public and private debt, countr…" +06/22/2018,Economists,@Nouriel,"RT @Brad_Setser: The $175 billion in accumulated offshore (""reinvested"") earnings that US firms used to make dividend payments back to thei…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Among all the crypto scams out there, EO TRADE deserves a special mention. Their advertising is a perfect concentrate…" +06/22/2018,Economists,@Nouriel,RT @ianbremmer: Just flying back from a week in Japan. I can definitively report this is #FakeNews. https://t.co/07YTJQtGOa +06/22/2018,Economists,@Nouriel,"RT @riotta: Caro ministro @matteosalvinimi le scorte sono una cosa seria e non devono essere concesse o revocate, per una critica. Può diss…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: In the age of Donald Trump, it is worth remembering James Madison's warning in Federalist No. 10 that, ""Enlightened statesmen w…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: ""Old timers"" love that idiotic log chart of BTC seemingly headed to $1,000,000 by 2020. +The only thing this chart prov…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Tether got audited - sort of. The auditors admitted that they couldn't be completely sure, because blockchain is so co…" +06/22/2018,Economists,@Nouriel,RT @ummjackson: Bitcoin charlatans getting people excited about an arbitrary string of characters appearing in a block hash need to find a… +06/22/2018,Economists,@Nouriel,RT @Bitfinexed: The biggest threat to cryptocurrency is the communities absolute trust in corrupted centralized third parties that violate… +06/22/2018,Economists,@Nouriel,RT @RBReich: Behind Trump's cruelty is an industry poised to profit from the suffering. As the administration locked up immigrant children… +06/22/2018,Economists,@Nouriel,"RT @RichardHaass: No successful immigration policy can begin at the border. Yes, we need comprehensive reform, but we also need trade and a…" +06/22/2018,Economists,@Nouriel,"RT @elerianm: Good morning. +The Financial Times’ Gillian Tell on some puzzles and oddities in #markets that make them “appear calm” but ar…" +06/22/2018,Economists,@Nouriel,RT @ProSyn: Strategic and security interests are always more amenable than religious conviction to reason and diplomacy https://t.co/fRvndW… +06/22/2018,Economists,@Nouriel,"RT @CasPiancey: Pretty proud of Crypto Twitter for ignoring the hype of that Tether memo and focusing on three things: + +1. Who are their *t…" +06/22/2018,Economists,@Nouriel,"RT @ofnumbers: This ""space"" perpetually sucks. + +Instead of keeping things in check, coin reporters openly aide and abet the raccoons flee…" +06/22/2018,Economists,@Nouriel,"RT @EconguyRosie: If the Fed raises rates and shrinks the balance sheet as much as it says it will, the cumulative de facto tightening by t…" +06/22/2018,Economists,@Nouriel,RT @davidgerard: Hydro-Quebec triples prices for crypto miners https://t.co/bBCR3Rc9Ka +06/22/2018,Economists,@Nouriel,"RT @ProSyn: Nationalism versus globalism, not populism versus elitism, is this decade’s defining political conflict https://t.co/W7coFJUii2" +06/22/2018,Economists,@Nouriel,RT @prestonjbyrne: Oh right. I forgot oil was issued by Permian-Triassic 3 LLC during the initial dead plant offering that took place in 25… +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Bitcoin's market cap: $110 Billion. +Global money supply (M1): $7.6 trillion. +Bitcoin, at today's price, stands at 1.4%…" +06/20/2018,Economists,@Nouriel,"RT @erikbryn: Berkshire, Amazon & JPM made a great decision when they chose @Atul_Gawande to head their new healthcare initiative. + +Becaus…" +06/20/2018,Economists,@Nouriel,"RT @econecho: Paper with balanced treatment of #blockchain and public service delivery applications with a Q&A, addressing @Nouriel-type co…" +06/20/2018,Economists,@Nouriel,RT @BrookingsInst: 🎧 16 million people were forced to flee their homes last year. That’s 1 person every 2 seconds. https://t.co/L1Vtv7Phzb… +06/20/2018,Economists,@Nouriel,"RT @Brad_Setser: Treasury legend Mark Sobel, who was instrumental in the creation of the working group, also has summarized the innovations…" +06/20/2018,Economists,@Nouriel,"RT @Brad_Setser: A bit of good news! France and Germany appear to have agreed to ""an improvement of the collective action clauses already b…" +06/20/2018,Economists,@Nouriel,"RT @CBSThisMorning: WATCH: @IanBremmer describes exchange between Chancellor Merkel and Pres. Trump at #G7 summit: ""He stood up, he put his…" +06/20/2018,Economists,@Nouriel,RT @EconomicPolicy: Reminder: 83% of the benefits of the GOP tax bill are going to the top 1%. #TaxScamiversary #6MonthsofTaxScam https://t… +06/20/2018,Economists,@Nouriel,I look forward to the debate on Cryptocurrencies today at The Battle of the Quants. 3.30pm at Carnegie Hall https://t.co/WzeUpAHVVM +06/20/2018,Economists,@Nouriel,I will debate Cryptocurrencies today at The Battle of the Quants. 3.30pm EST at Carnegie Hall in New York https://t.co/q7as8I5LUQ +06/20/2018,Economists,@Nouriel,RT @Nouriel: I look forward to the discussion on crypto that will be moderated by my friend @johnjdagostino at the Battle of the Quants on… +06/19/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: My deepest respect for all the crypto scammer community. I can only begin to imagine how hard it must be to try and sw… +06/19/2018,Economists,@Nouriel,"RT @Judy_Dempsey: My new blog now posted: @Merkel's Options, Europe's Future. +#Europe’s security, foreign, and defense policies will go no…" +06/19/2018,Economists,@Nouriel,"RT @BanKillerRobots: On June 21, @TobyWalsh will address a #KAIST seminar in the Republic of Korea to launch its new ethics committee on ar…" +06/19/2018,Economists,@Nouriel,"RT @LHSummers: Krugman’s analysis of a trade war, in my view, overstates the risk of a massive war that cuts off more than half of trade bu…" +06/19/2018,Economists,@Nouriel,RT @LHSummers: Why does @realDonaldTrump get credit for deescalating #NorthKorea conflict when it was his conduct that did so much to escal… +06/19/2018,Economists,@Nouriel,"RT @MaximColch: The market seems very relaxed about Brexit at the moment. It shouldn't be. +@Simon_Nixon +https://t.co/SPznwIMQxS" +06/19/2018,Economists,@Nouriel,RT @FinancialTimes: Investor concern is deepening as the US and China edge closer to a full-blown trade war. Here is the latest from global… +06/19/2018,Economists,@Nouriel,"RT @ProSyn: Tariffs – even those targeting Chinese firms that benefit from the government’s mercantilist practices – are counterproductive,…" +06/19/2018,Economists,@Nouriel,RT @greg_ip: Economic theory says effects of tariffs on trade balances are eventually fully offset by currencies. Most countries won't see… +06/19/2018,Economists,@Nouriel,RT @ojblanchard1: A five-level scale for financial crises. (As a discussion of Ben Bernanke's and Barry Eichengreen's papers at the Nobel… +06/19/2018,Economists,@Nouriel,"RT @davidgerard: News: Crypto hedge funds suffer, bankers on crypto’s problems, what good payment networks look like, another Civil news…" +06/19/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: I'm sure that some day, someone will come up with a use for cryptocurrencies that's not yet another form of gambling,…" +06/19/2018,Economists,@Nouriel,"RT @EconomicPolicy: One in nine U.S. workers are paid wages that can leave them in poverty, even when working full time. #PoorPeoplesCampai…" +06/19/2018,Economists,@Nouriel,"RT @Brad_Setser: Agree. Reality is China still manages its currency, even if its intervention isn't as overt as it once was. + +Depreciation…" +06/19/2018,Economists,@Nouriel,"RT @BIS_org: Despite the hype, #cryptocurrencies like #bitcoin are not the answer to the increasing need for #DigitalPayments because of th…" +06/19/2018,Economists,@Nouriel,RT @BIS_org: … cryptocurrencies lack scalability to handle the economy’s transaction needs …. 2/4 https://t.co/Z9f5mBLrhK https://t.co/9JwS… +06/19/2018,Economists,@Nouriel,RT @BIS_org: … payments made with #cryptocurrencies are never fully final because of possible rewriting of history through episodes of #for… +06/19/2018,Economists,@Nouriel,RT @BIS_org: Watch Hyun Song Shin explain why – despite all the hype - #Cryptocurrencies are a far cry from money https://t.co/tWw84EviD3 h… +06/19/2018,Economists,@Nouriel,"RT @el33th4xor: I'm calling it: there will be a massive exchange hack within the next year, taking advantage of an EOS vulnerability. That…" +06/19/2018,Economists,@Nouriel,RT @Brad_Setser: A few quick thoughts on Trump's decision to threaten to respond to China's $50b in retaliatory tariffs with an additional… +06/17/2018,Economists,@Nouriel,"RT @ProSyn: If the price of an automobile had declined as rapidly as the price of computing power, one could buy a car today for the same p…" +06/17/2018,Economists,@Nouriel,RT @IgnatiusPost: A beautiful evocation of Anthony Bourdain by a gifted chef (who is also my daughter’s fiancé.) The Tragic Loss of an Insp… +06/17/2018,Economists,@Nouriel,RT @BrookingsEcon: .@LHSummers on why the Fed needs a new monetary policy framework: https://t.co/rGTUAb4jd2 https://t.co/GWy6PIaARV +06/17/2018,Economists,@Nouriel,"RT @ForeignAffairs: Even if the Trump administration’s approach to Europe is too confused to constitute a strategic vision, his policies ca…" +06/17/2018,Economists,@Nouriel,RT @toby_n: Prices paid for washing machines by US consumers spike following application of tariffs. Nice @crampell report. https://t.co/kU… +06/17/2018,Economists,@Nouriel,"RT @thehill: Giuliani: FBI, prosecutors investigating Trump belong in the psych ward https://t.co/hwc5He60RQ https://t.co/cgePxBndmV" +06/17/2018,Economists,@Nouriel,"RT @NewYorker: Ever since Putin’s reëlection to another six-year term in March, Trump has been pressing for a Putin summit, dismissing advi…" +06/17/2018,Economists,@Nouriel,"RT @RichardHurowitz: Worth reading: Robert Kagan on the rejection of the US’s grand bargain — his father Donald, my adviser at Yale, would…" +06/17/2018,Economists,@Nouriel,RT @bobdavis187: Interesting that you never hear people worried about Chinese industrial policy offer their own. U.S. could invest more in… +06/17/2018,Economists,@Nouriel,RT @ProSyn: Cities of the future: why nature-based solutions are the answer to some of the biggest challenges facing urban areas https://t.… +06/17/2018,Economists,@Nouriel,"Cryptocurrencies are lousy investments | VOX, CEPR Policy Portal https://t.co/mL5tBnKhW3" +06/16/2018,Economists,@Nouriel,"RT @JoeNBC: Hey Mitch, Whitewater lasted almost 10 times as long and you never complained once about that. If you’re going to keep humiliat…" +06/16/2018,Economists,@Nouriel,"RT @dailykos: Tighten your belt, America—Trump's tariff backlash takes hold and consumer goods are skyrocketing https://t.co/HMLop9z0Wa" +06/16/2018,Economists,@Nouriel,no way he will revisit as he is a ideological fanatic economic nationalist...he needs his base in November... https://t.co/8ZMyn8AhM8 +06/16/2018,Economists,@Nouriel,RT @SteveBrant: A clear & detailed case for why Trump is a threat to the world. He's destroying the post-WWII system. ⁦@ianbremmer⁩ ⁦@Nouri… +06/16/2018,Economists,@Nouriel,pathetic EOS: Entirely Open Scam https://t.co/dTqFG2HJlb +06/16/2018,Economists,@Nouriel,transaction volume has collapsed in all crypo-currencies since January....transaction meltdown towards nothingness.… https://t.co/nsXUoilMaB +06/16/2018,Economists,@Nouriel,Buggy Scam.....Entirely Open Scam....ie EOS https://t.co/QzRINpHqno +06/16/2018,Economists,@Nouriel,RT @roun_sa_ville: cryptocurrency? https://t.co/za4Aj4sDHn +06/16/2018,Economists,@Nouriel,"Another total ICO scam....EOS: ""Entirely Open Scam"" +$4 billion of suckers money into this crypto black hole with no… https://t.co/znWLrBfZEm" +06/16/2018,Economists,@Nouriel,"RT @ProSyn: Africa is home to 15% of the world’s population and 5% of its GDP, but accounts for a paltry 1.3% of total research spending ht…" +06/16/2018,Economists,@Nouriel,"RT @elerianm: .@FT @RobinWigg on vol sales in the #HedgeFund community: +""The volume of “short” positions in the #Vix #volatility index has…" +06/16/2018,Economists,@Nouriel,Tether is indeed The Mother Of All Criminal Scams whose only purpose is to manipulate upwards the price of Bitcoin… https://t.co/4sTsxqW3Gt +06/16/2018,Economists,@Nouriel,RT @el33th4xor: Excellent post on errors Satoshi made. https://t.co/ml3oTmGS1o +06/16/2018,Economists,@Nouriel,Top 10 as it is The Mother of All Scams: they issue billions of Tether out of thin air - total fiat issuance of a f… https://t.co/wHb2xiPtSq +06/16/2018,Economists,@Nouriel,RT @cabelabed: @Nouriel It’s football!!! And has been there much longer than this HAND-EGG thing...there’s no FOOT and no BALL! Just HANDS… +06/16/2018,Economists,@Nouriel,"RT @Giorgio13190: @Nouriel Americans need a version of the Calcio Storico, with armours and Helmets, and short times of play to display lon…" +06/16/2018,Economists,@Nouriel,Soccer will never be popular in the US as: a) Americans love complex statistics in sports while such statistics mea… https://t.co/1GV3rd9ETM +06/16/2018,Economists,@Nouriel,RT @voxdotcom: The untenability of the “no collusion” talking point: https://t.co/gDsIQJWJmy +06/16/2018,Economists,@Nouriel,"Americans are obsessed with scores, scoring and statistics in sports...that is why soccer will never be really popu… https://t.co/q0aD6KzT1E" +06/16/2018,Economists,@Nouriel,Thanks to Donald-Smooth-Hawley-Trump.... https://t.co/sEuW4B7qvT +06/16/2018,Economists,@Nouriel,Ether is a security! https://t.co/P9vfvKkzJK +06/16/2018,Economists,@Nouriel,"RT @BaldwinRE: _ +Ultimately, free trade equilibrium is supported by threat of retaliation. +• +For decades, the threat was enough. But now o…" +06/16/2018,Economists,@Nouriel,"RT @CasPiancey: This is otherworldly: + +Tether sends 100,000,000 from the treasury to the Hot Wallet. 14m Tether then just **disappear**. An…" +06/16/2018,Economists,@Nouriel,"RT @ProSyn: For the first time, IMF statisticians have compiled a comprehensive set of calculations of both public and private debt, countr…" +06/16/2018,Economists,@Nouriel,RT @mechmarkets: @prestonjbyrne The speech also implies that ETH investors are not relying on the team to do any more work on the platform.… +06/16/2018,Economists,@Nouriel,RT @ProSyn: Poland and Hungary are more than happy to take EU money while rejecting EU values. It is time to demonstrate that contempt for… +06/16/2018,Economists,@Nouriel,RT @business: A lack of ambition is ending Finland's experiment with a universal basic income https://t.co/IflwEodvn0 https://t.co/lnpcc3cb… +06/16/2018,Economists,@Nouriel,RT @Slate: What urban Americans don’t get about Appalachia and the price rural Americans have paid: https://t.co/xTezmjqHrc https://t.co/H0… +06/16/2018,Economists,@Nouriel,"RT @ProSyn: Russia's labor market is strong, but demographic trends are working against it, say @VladimirMau & @brigranvill https://t.co/lE…" +06/16/2018,Economists,@Nouriel,RT @ProSyn: .@HowardJDavies holds out little hope for macroprudential policy where it is needed the most. @IMFNews https://t.co/lhiDo53h5q +06/16/2018,Economists,@Nouriel,RT @ProSyn: The more we use antibiotics – on the farm or in the clinic – the less effective they become https://t.co/OzfzfqDFIu +06/16/2018,Economists,@Nouriel,RT @ForeignPolicy: A message to @realdonaldtrump from Canada's @cafreeland: “Facts matter. Truth matters. Competence and honesty among elec… +06/16/2018,Economists,@Nouriel,RT @nathanielpopper: i missed this great look at the unruly world of crypto marketers and influencers by my soon-to-be colleague @eringriff… +06/16/2018,Economists,@Nouriel,"RT @CasPiancey: Not a single tweet from Tether since January 5th. + +Boy, you'd think they'd want to address some of the issues they've been…" +06/16/2018,Economists,@Nouriel,RT @Austan_Goolsbee: Like one of those nightmare psychology experiments from the 1950s that led to human subjects rules. WTF is wrong with… +06/16/2018,Economists,@Nouriel,RT @davidgerard: my favourite bit in today's crypto news post is - the Blockchain(tm) is literally too crappy to be up to the standards of… +06/30/2018,Economists,@justinwolfers,"Useful thread by a real expert analyzing how the new “postcard” for tax returns is more complicated, leads you to f… https://t.co/KTWPual0Fn" +06/30/2018,Economists,@justinwolfers,"“Are these trolls? Actual threats? How can anyone tell the difference, anyway?” https://t.co/m1KM0xzqSs" +06/30/2018,Economists,@justinwolfers,"My whole life I've used the word ""overseas"" when I meant ""foreign countries."" I guess that's one effect of having grown up in Australia." +06/29/2018,Economists,@justinwolfers,By the power vested in me by Mitch McConnell it would be inappropriate for me to declare beer o'clock with fewer th… https://t.co/OnSKrCMiOm +06/29/2018,Economists,@justinwolfers,RT @GerryDuggan: The funniest silent film in over a century. Commit to the full 2:34. https://t.co/sOWFSTYmym +06/29/2018,Economists,@justinwolfers,"“the jobs women have moved into are ones they associate with more happiness and a greater sense of meaning, the opp… https://t.co/Jjxo8okv5q" +06/29/2018,Economists,@justinwolfers,"Who among us hasn't thought: I'm not going to make any music before 1972, unless my great-grandkids also get a cut… https://t.co/YHMHbhzdx5" +06/29/2018,Economists,@justinwolfers,This is BANANAS 🍌 🍌 🍌 https://t.co/uKTNNKSeqG +06/28/2018,Economists,@justinwolfers,An excellent diagnosis by @asymmetricinfo of the mistakes that free-traders make. https://t.co/b7OWICSvty +06/28/2018,Economists,@justinwolfers,A caricature of a shadow of a response. https://t.co/UMETNPfHyJ +06/28/2018,Economists,@justinwolfers,"“The important point shouldn’t be “don’t formalize”; it should be that formalism is there to open your mind, not cl… https://t.co/UQs8Nfff2a" +06/28/2018,Economists,@justinwolfers,Only sociopaths and budget constraints would object to this agenda. https://t.co/F0N9KrHDAz +06/28/2018,Economists,@justinwolfers,"@Neil_Irwin @asymmetricinfo It's a great point, but I don't know whether it's a point of identity (which economists… https://t.co/IDOZ8ghjuB" +06/28/2018,Economists,@justinwolfers,"Chugga chugga chug, as the little engine that could keeps on pushing on. Growth isn't spectacular, but it is persis… https://t.co/duUOHcbuAG" +06/28/2018,Economists,@justinwolfers,"Science, norms, politics and why thousands of Russians starved. An important essay for the scientific, journalistic… https://t.co/XWCeTR0FEW" +06/28/2018,Economists,@justinwolfers,"RT @janzilinsky: When GDP growth was 4.6% in mid-2014, @JustinWolfers used the report as a case study of what not to do: +https://t.co/l4B9…" +06/27/2018,Economists,@justinwolfers,RT @adamliptak: Justice Kennedy retires https://t.co/GRXyBBA6P9 +06/27/2018,Economists,@justinwolfers,#cloudme @tweetcloudbot +06/25/2018,Economists,@justinwolfers,This is a gorgeously succinct summary of the problem with the gold standard. https://t.co/FfcsjxbhSs +06/25/2018,Economists,@justinwolfers,"RT @Canada2020: Have you ever wondered what the true correlation between money and happiness is? + +Check out this week's episode of Wonk Wi…" +06/24/2018,Economists,@justinwolfers,"RT @_Jack_Graham_: If Sarah Huckabee Sanders came to *my* restaurant, I'd show her to a table, take her order, wait an hour, and then bring…" +06/24/2018,Economists,@justinwolfers,"RT @BrendanNyhan: The president of the United States: +-wants to suspend due process rights +-calls the press an enemy of the people +-calls f…" +06/23/2018,Economists,@justinwolfers,"RT @scottlincicome: Now retaliating against US exports bc of Trump's steel/aluminum tariffs: +- China +- Turkey +- India +- Mexico +- EU +Notifie…" +06/22/2018,Economists,@justinwolfers,"By the power vested in me by Melania's fashion choices — about which, I really don't care. Do u? — I declare it bee… https://t.co/TK3HMchThv" +06/22/2018,Economists,@justinwolfers,"@EconoTodd Hey man, sorry to hear that. Happens to all of us, but it never gets easier." +06/22/2018,Economists,@justinwolfers,"RT @JGodiasMurphy: Nonsense. Thanks to NAFTA, these are all zero. https://t.co/kuhmBqcMqg" +06/21/2018,Economists,@justinwolfers,NFL players took a knee to protest police brutality and the President took a stage to celebrate a brutal enemy’s vi… https://t.co/UlsU10p9O6 +06/20/2018,Economists,@justinwolfers,"So, umm... the *point* of tariffs is to raise prices. + +Here's how they work: +Price S+tariff + | \… https://t.co/xgfb2Smq2q" +06/20/2018,Economists,@justinwolfers,"I still can't bring myself to say ""tender age shelters"" out loud." +06/20/2018,Economists,@justinwolfers,"RT @aaronecarroll: Thread. + +I'm going to try and use my quiet voice here. Let's not kid ourselves - there are data on what detaining kids l…" +06/19/2018,Economists,@justinwolfers,"RT @SciBry: I was detained by the FBI on a flight from Vancouver to Chicago, because the passenger sitting next to me saw me doing calculat…" +06/18/2018,Economists,@justinwolfers,"RT @BetseyStevenson: No matter your political beliefs or your party affiliation, if you study families and children you know that the Unite…" +06/18/2018,Economists,@justinwolfers,"RT @EconUS: Ranked-choice voting is not new. Australia has used it for a century, Malta and Ireland for slightly less https://t.co/EWw87MOC…" +06/18/2018,Economists,@justinwolfers,This is how a political scientist throws shade. https://t.co/BlYJJqMyux +06/18/2018,Economists,@justinwolfers,This is how an economist throws shade.🔥🔥🔥 https://t.co/2oxgLrnM05 +06/18/2018,Economists,@justinwolfers,Tell that to the children. https://t.co/ABj9QnK0cj +06/17/2018,Economists,@justinwolfers,RT @ATabarrok: Hard to get lower than the immoral and unconstitutional internment of Japanese Americans but at least FDR interned families… +06/17/2018,Economists,@justinwolfers,"RT @BetseyStevenson: My heart races, my stomach heaves, and I can't breath when I read this. But looking away isn't a choice either. Every…" +06/16/2018,Economists,@justinwolfers,RT @thegarance: This is so inhumane. If you can't trust your staff enough to comfort a crying girl without abusing her you have some seriou… +06/16/2018,Economists,@justinwolfers,Well ain’t that interesting... https://t.co/kiO6LhQbWz +06/15/2018,Economists,@justinwolfers,"By the power vested in me by FIFA — whose corruption runs so deep that unlike major league baseball, the national f… https://t.co/VmL39PLEsO" +06/15/2018,Economists,@justinwolfers,RT @BetseyStevenson: We won't be able to pretend later that we didn't know it was happening. We did. https://t.co/1Y873VTDOb +06/15/2018,Economists,@justinwolfers,This is interesting. https://t.co/pOWJvNxGMV +06/15/2018,Economists,@justinwolfers,"People making fun of brasbperries are overlooking the demand-side benefits of complementarity and diversification,… https://t.co/8t3jz1844g" +06/14/2018,Economists,@justinwolfers,"RT @JimPethokoukis: 1/ A rare tweetstorm from me on some Wall Street banks now predicting 4% (!) GDP growth for the second quarter, and the…" +06/12/2018,Economists,@justinwolfers,@steveliesman @LoganMohtashami Alternatively let’s relabel it a goods surplus and declare victory. +06/12/2018,Economists,@justinwolfers,@steveliesman You are 100% correct Steve. +06/12/2018,Economists,@justinwolfers,A useful explanation of the U.S. trade *surplus* with Canada. https://t.co/7Rss0nEWnR +06/12/2018,Economists,@justinwolfers,RT @causalinf: Survivor bias (literally) https://t.co/FYVMgZvIcA +06/12/2018,Economists,@justinwolfers,"RT @JayCShambaugh: not good from today's BLS release: + +""Real average hourly earnings were unchanged, [seas adj], from May 2017 to May 2018.…" +06/12/2018,Economists,@justinwolfers,"RT @ChloeAngyal: Give me your tired, your poor, but keep your women fleeing domestic abuse in fear of their lives, fuck 'em, they probably…" +06/12/2018,Economists,@justinwolfers,"History repeats itself first as reality tv, then as farce... https://t.co/DBMKF9lUQG" +06/11/2018,Economists,@justinwolfers,Dennis Rodman arrives in Singapore for the North Korea - U.S. denuclearization talks wearing a t-shirt advertising… https://t.co/qjTVqzCipP +06/11/2018,Economists,@justinwolfers,RT @1RossGittins: Holiday reading: where economists come from https://t.co/GLjTFo3WFV #ausecon #ausbiz @theage @smh @canberratimes +06/10/2018,Economists,@justinwolfers,"Meet the man paid over $60,000 per year to scotch tape together the Presidential papers that Trump ripped into smal… https://t.co/A8VeaGtXK1" +06/10/2018,Economists,@justinwolfers,"@jggarin @GregoryGivens @dandolfa @MWillJr Lemme try to be a bit clearer, and a lot less snarky (and also try to d… https://t.co/Lpke0pd63M" +06/10/2018,Economists,@justinwolfers,@jeremybowers @fishnette @eads Technically it's illegal in Australia to turn in a blank ballot. (There's a High Cou… https://t.co/IBsNfUeoNF +06/10/2018,Economists,@justinwolfers,"RT @MaxBoot: I can't stop thinking about this interview. Unless I'm missing something, these are the most hostile comments any US official…" +06/10/2018,Economists,@justinwolfers,Yet somehow Australians figure it out every Election Day. https://t.co/IoQMnMkFJF +06/10/2018,Economists,@justinwolfers,"@paulkrugman gets it exactly right about America's humiliation at the G-7. +Perhaps we would be better with fewer G-… https://t.co/UYs10md6Y2" +06/09/2018,Economists,@justinwolfers,This is an important point. The Constitution gives Congress authority over trade agreements. But past Congresses ha… https://t.co/9TB1Ff2I36 +06/09/2018,Economists,@justinwolfers,"This is how trade wars start. + +Starting a trade war when most tariffs are already at or close to zero is an even wo… https://t.co/H49aYGyZik" +06/09/2018,Economists,@justinwolfers,You’ll never guess what they chose to do next... https://t.co/gxMrfT5WjO +06/09/2018,Economists,@justinwolfers,RT @goldengateblond: This is like a Renaissance painting. https://t.co/uafGu2ctrx +06/09/2018,Economists,@justinwolfers,"Average tariff rates charged by G-7 nations: +USA: 1.6% +EU: 1.6% +UK: 1.6% +Italy: 1.6% +Germany: 1.6% +France: 1.6% +Jap… https://t.co/SJdH6Dtzll" +06/09/2018,Economists,@justinwolfers,"@causalinf @j2dubyas If I wasn’t clear, it’s my fault, so should apologize. I only meant to criticize MIT which lik… https://t.co/b88zv7S0nI" +06/08/2018,Economists,@justinwolfers,"By the power vested in me by Emmanuel Macron, I declare it beer o'clock for six of the world's leading seven econom… https://t.co/IsVBjChJhs" +06/08/2018,Economists,@justinwolfers,"@ProfJAParker One of my students chimes in with some relevant facts: +https://t.co/PyVPNK3aK6 + +But my point isn't to… https://t.co/qbGSf2QbjO" +06/08/2018,Economists,@justinwolfers,RT @MichaelRStrain: U.S. tariffs look an awful lot like tariffs in the rest of the G7... https://t.co/pNUIRYmvK3 +06/08/2018,Economists,@justinwolfers,"@arthur_spirling Agree entirely, and didn’t mean any disrespect to this fine crop of economists on their achievemen… https://t.co/xKZR1RAIOh" +06/08/2018,Economists,@justinwolfers,Exhibit A of the cluelessness about gender and the value of diversity that undermines economics. https://t.co/CrU50lSaJT +06/08/2018,Economists,@justinwolfers,"Evil committed in our names, in our lifetime. +https://t.co/2UyfM4mmvy" +06/08/2018,Economists,@justinwolfers,"The Justice Department has decided it doesn’t like laws that Congress passed, and so once again, the ACA is under t… https://t.co/dDCsQOyvDy" +06/07/2018,Economists,@justinwolfers,"Draw your own conclusions. +https://t.co/vqJ2aUxim4 https://t.co/YPJShbDfe5" +06/07/2018,Economists,@justinwolfers,RT @EileenAppelbaum: Subcontracting - not independent contractors or temp workers - is where big change in US economy occurred. But BLS con… +06/07/2018,Economists,@justinwolfers,"This might be the most important paragraph of the Contingent Worker Supplement. + +(My guess: This is best interprete… https://t.co/q1DzrUCwvu" +06/07/2018,Economists,@justinwolfers,What if the whole meaning of alternative work arrangements changed and the BLS lacked the funding to track these de… https://t.co/Cg8KlNHpol +06/07/2018,Economists,@justinwolfers,Budget-busting tax cuts for other people don't poll well. https://t.co/aujoqrvzrR +06/06/2018,Economists,@justinwolfers,"This is a genuinely excellent list, and a tribute to a new oral tradition in economics. https://t.co/6CQitGqAki" +06/05/2018,Economists,@justinwolfers,"RT @NBCNews: Sen. Leahy: Will your school safety commission look at the role of firearms? + +Sec. DeVos: ""That is not part of the commission'…" +06/05/2018,Economists,@justinwolfers,"RT @kevinmilligan: @JustinWolfers In my experience talking to (plugged in and intelligent) friends and acquaintances in the US, people ther…" +06/05/2018,Economists,@justinwolfers,An interesting day with dozens of conversations on the other side of the U.S.-Canadian border revealed to me just h… https://t.co/S6uvZidW4V +06/05/2018,Economists,@justinwolfers,"The extraordinary economics of vanilla: Even though it’s now worth more per pound than silver, Madagascans still go… https://t.co/mTC1qo479B" +06/05/2018,Economists,@justinwolfers,"A tax cut that takes from labor (and future generations) and gives it to capital will cause stocks to rise, but tha… https://t.co/fzjezzWz8L" +06/05/2018,Economists,@justinwolfers,so now mueller wants us to believe manafort figured out how to use whatsapp are you kidding me +06/05/2018,Economists,@justinwolfers,"If you know any economics, you’ll recognize this as a far more damning critique. https://t.co/QsMhEg5zTN" +06/04/2018,Economists,@justinwolfers,What if the romantic comedy died and no-one noticed? https://t.co/7yeziDnAxB https://t.co/a8oYmGVtED +06/04/2018,Economists,@justinwolfers,@PrestonMui Fair point. But my guess is forcing disclosure beats allowing them to continue the policy without disclosure. +06/04/2018,Economists,@justinwolfers,This seems like a pretty good compromise to me. Hard to argue against disclosure. https://t.co/YkFFoFNEfy +06/04/2018,Economists,@justinwolfers,"@ben_golub Improving economic literacy, one tweet at a time..." +06/04/2018,Economists,@justinwolfers,An Econ 101 reminder that it doesn't really matter that Trump's tariffs are levied on America's consumers rather th… https://t.co/WVhh5fI5JL +06/04/2018,Economists,@justinwolfers,RT @Neil_Irwin: It sounds like the G7 finance ministers meetings were…tense. The U.S. is isolated to a degree without modern precedent. Fas… +06/02/2018,Economists,@justinwolfers,"RT @FreeTradeBryan: I should probably make this my pinned tweet: ""We should beware of the demagogues who are willing to declare a trade war…" +06/02/2018,Economists,@justinwolfers,"A letter to my son, and it might be a letter to yours, too. A lovely riff from the incomparable @bairdjulia in whic… https://t.co/WzTqiDyBbe" +06/01/2018,Economists,@justinwolfers,"RT @Neil_Irwin: A great brief history of economic thought on mercantilism and trade from @crampell + +Because I guess we're at a place where…" +06/01/2018,Economists,@justinwolfers,"By the power vested in me by the Bureau of Labor Statistics, whose latest report (which I've been looking forward t… https://t.co/rFrvdbXdgZ" +06/01/2018,Economists,@justinwolfers,"If I achieved nothing else today, my pseudo-potty mouth pushed HuffPo to put the word ""effing"" in a headline: https://t.co/TDOA3YCgUn" +06/01/2018,Economists,@justinwolfers,Looking forward to seeing a beer-related announcement at 5:30pm this afternoon. +06/01/2018,Economists,@justinwolfers,@goldengateblond @atrupar hold me. +06/01/2018,Economists,@justinwolfers,"@NickTimiraos @ModeledBehavior Nick, this wasn't one dumb thing written in an occasional column. The argument that… https://t.co/qKbs062J59" +06/01/2018,Economists,@justinwolfers,It's the trade policy equivalent of two and a half back-somersaults with a double twist off the high board—an almos… https://t.co/O4vwKHoM30 +06/01/2018,Economists,@justinwolfers,"This is the bloke who—in late 2008 as a global financial crisis kicked millions out of work—said that: ""the decreas… https://t.co/QCGo9qnB9d" +06/01/2018,Economists,@justinwolfers,Worth noting: Kudlow confirmed that he told the President the jobs numbers last night. Trump knew exactly what kind… https://t.co/zW9b8Cibvm +06/01/2018,Economists,@justinwolfers,"<very thinking face emoji> +https://t.co/0ysvbi53B6" +06/01/2018,Economists,@justinwolfers,The bigger picture on jobs. https://t.co/KYwt2T696S +06/01/2018,Economists,@justinwolfers,"Goolsbee: ""he broke the law"" https://t.co/yO5fOgPiU6 +Summers: ""a major scandal"" should lead to ""major investigation… https://t.co/Utxflxrpf4" +06/01/2018,Economists,@justinwolfers,"And Betsey's point is spot on: If someone made money trading on a tip from the President, who do you think they're… https://t.co/WU5ikALvct" +06/01/2018,Economists,@justinwolfers,"Honestly, I get that on the scale of norms violations, it's small. And if he's an honest bloke, he didn't tip off a… https://t.co/0IoeN4dDll" +06/01/2018,Economists,@justinwolfers,If *any* other federal employee had tweeted in a way that gave the *appearance* of hinting at confidential informat… https://t.co/jDY6dcrtPs +06/01/2018,Economists,@justinwolfers,"And you can't put the genie back in the bottle: Next jobs day, if at 7:21am Trump tweets about Roseanne or some oth… https://t.co/xxjkJDPQQs" +06/01/2018,Economists,@justinwolfers,"Here's the problem: Who wants to buy U.S. stocks, if you think there's a chance that you might be buying from someo… https://t.co/d8CBWzqxDt" +06/01/2018,Economists,@justinwolfers,Dozens of federal employees who go to enormous lengths to make sure that no-one (beyond the White House) can get a… https://t.co/WDirIeAG16 +06/01/2018,Economists,@justinwolfers,"Lemme bore you by telling you why this tweet was an effing outrage. + +The jobs numbers are released at 8:30am. The P… https://t.co/aYIhgyqeA8" +06/01/2018,Economists,@justinwolfers,"I try to stay away from conspiracy-mongering, but do you really think that a President who can't help himself but t… https://t.co/ZB1dBHgCMU" +06/01/2018,Economists,@justinwolfers,"RT @kairyssdal: Again, and now with the numbers out, this is simply unprecedented and unbelievable. + +I’ll also note the president called th…" +06/01/2018,Economists,@justinwolfers,"Household survey shows +293k jobs, which is roughly consistent with the headline from the payrolls number. + +It says… https://t.co/Hcc1ijQZ8V" +06/01/2018,Economists,@justinwolfers,"Average job growth over the past 3 months of +179k is useful measure of the underlying pace. + +A parrot who spent th… https://t.co/YvTxcxPK2s" +06/01/2018,Economists,@justinwolfers,"Payrolls +223k. + +April revised down a tad, March revised upa bit, and so revisions add another +15k. + +Unemployment… https://t.co/T2n4XFpR0g" +06/01/2018,Economists,@justinwolfers,We've just learned that either the President doesn't read the briefing numbers from CEA who already sent him a memo… https://t.co/jMbNRr1LCT +06/01/2018,Economists,@justinwolfers,"RT @Neil_Irwin: May jobs numbers out in five minutes! Consensus forecast: +190k on payrolls, unemployment rate unchanged at 3.9%, average h…" +06/01/2018,Economists,@justinwolfers,"The case for free trade, wrote Adam Smith, ""is so very manifest that it seems ridiculous to take any pains to prove… https://t.co/ggk6SiEdyg" +06/01/2018,Economists,@justinwolfers,"Stand and applaud, because it’s almost impossible to pass a steel tariff that even the United Steelworkers oppose. https://t.co/67l5H5rMOz" +05/31/2018,Economists,@justinwolfers,anyone know kim kardashian's views on tariffs? +05/31/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Imagine if families got paid time off for a new child, mothers didn't face a permanent wage penalty, and families had…" +05/31/2018,Economists,@justinwolfers,"RT @jenniferdoleac: A friendly reminder that there is no evidence that this type of intervention is effective, and good reason to think it…" +05/30/2018,Economists,@justinwolfers,Look a little harder at how repayment plans work and you'll see that the USC-trained dentist with a million dollars… https://t.co/wA912tN7Ld +05/30/2018,Economists,@justinwolfers,"RT @ParkerMolloy: Promise made, promise kept https://t.co/TZ2KuEOM9l" +05/29/2018,Economists,@justinwolfers,"very fine people on both sides +https://t.co/Llc8D647Xv" +05/29/2018,Economists,@justinwolfers,@colmharmon @Sydney_Uni @sciencespo @OECD @USydneyEcon @DHoganDoranSC Dom was an old friend of mind from undergradu… https://t.co/H8EYCJnS9u +05/29/2018,Economists,@justinwolfers,RT @DanielGriswold: Just finished @scmallaby's bio of Alan Greenspan. Loved this exchange on p. 132 between Milton Friedman and Gen. Westmo… +05/29/2018,Economists,@justinwolfers,"RT @hamandcheese: ""In our new study, we left a treatment group of journalists unattended in a room with a provocative yet N=28 social psyc…" +05/29/2018,Economists,@justinwolfers,RT @hamandcheese: The real marshmallow test was to see who could resist pontificating on meaning of the original marshmallow test until a g… +05/27/2018,Economists,@justinwolfers,"My favorite genre of leak stories are leaks about meetings of leakers to figure out which leaker leaked, in which i… https://t.co/u9dtWDCHVk" +05/27/2018,Economists,@justinwolfers,"Ron, let's talk about inflation. +- In *nominal* terms #SoloAStarWarsStory is your most successful film as a Directo… https://t.co/UJZok4iDo8" +05/27/2018,Economists,@justinwolfers,"RT @TimHarford: Hyping research work in the NYT... Paging Indigo Montoya; ""I do not think that means what you think it means."" +https://t.co…" +05/27/2018,Economists,@justinwolfers,"RT @DinaPomeranz: Study, JPE 2008: Children who were separated from their parents in the US & placed in foster care were 2-3 times more lik…" +05/27/2018,Economists,@justinwolfers,RT @sahilkapur: “Horrible law” = not a law. It’s Trump administration policy that didn’t happen under Obama or Bush. POTUS has the power to… +05/27/2018,Economists,@justinwolfers,"RT @hardsci: For people saying this is evidence that psychology research isn’t valid, your evidence for that conclusion is psychology resea…" +05/26/2018,Economists,@justinwolfers,"When @m_clem comes for faulty research, he brings receipts. https://t.co/gsXx3CHD7b" +05/25/2018,Economists,@justinwolfers,"When the exit polls say that Ireland's pro-choice referendum won 68-32, you can probably trust it's outside the mar… https://t.co/mQAjduj6IB" +05/25/2018,Economists,@justinwolfers,"By the power vested in me by the NFL, I demand you stand for beer o'clock, because nothing speaks to American value… https://t.co/QCGXBQ6nFI" +05/25/2018,Economists,@justinwolfers,@dsquareddigest I would be very interested if you can find real-world examples of pathological or bimodal expectati… https://t.co/0J9Iroxlac +05/25/2018,Economists,@justinwolfers,RT @WesternBruce: Have You Ever Seen Someone Get Killed? A single data point that complicates how we think about who is in prison. @emilymb… +05/25/2018,Economists,@justinwolfers,"“When a foreign company sells Americans something they choose to buy, it is not an act of aggression.”… https://t.co/xCJfUeGKbZ" +05/25/2018,Economists,@justinwolfers,Your chart axis doesn't have to start at zero. https://t.co/LkNtF03dqT +05/25/2018,Economists,@justinwolfers,"RT @abarber1: This won. Justin asked me to give $50 to charity, so I’m going to give it to @GiveWell. https://t.co/HcOkW1D8JJ" +05/25/2018,Economists,@justinwolfers,"Bob Dylan turned 77 today. + +(I was so much older then / I'm younger than that now.)" +05/24/2018,Economists,@justinwolfers,"If the NFL were serious truly patriotic, it would play the national anthem twice before each game." +05/24/2018,Economists,@justinwolfers,I don’t think I’ve ever been more nervous before giving a presentation: Wish me luck as I’m about to give a present… https://t.co/CGm3KHmJyJ +05/24/2018,Economists,@justinwolfers,"RT @damianpaletta: White House trade diary: +5/13 - Trump: We'll rescue ZTE +5/14 - Ross: ZTE unrelated to trade +5/16 - Trump: ZTE part of tr…" +05/24/2018,Economists,@justinwolfers,@mattstockhausen @jodiecongirl All exports -- even of raw materials and unfinished products -- are treated as final… https://t.co/ur6g0XQcUz +05/24/2018,Economists,@justinwolfers,"The case for place-based employment subsidies, from @LHSummers, Glaeser and Austin. +https://t.co/gadL8bmz8x https://t.co/f2p2u15Fl1" +05/24/2018,Economists,@justinwolfers,Who the heck is he planning on bombing? https://t.co/pqXiheHK8J +05/24/2018,Economists,@justinwolfers,Tweeps: I'm crowdsourcing this one for my teaching needs: What are your favorite examples of money illusion (aka no… https://t.co/cRrF2vu64U +05/24/2018,Economists,@justinwolfers,Bitcoin's price definitely is some distance from its fundamental value. https://t.co/52bgZ8FHMY +05/24/2018,Economists,@justinwolfers,Fill in the blanks on this ridiculous sentence and you’ll get a sense of the intense lobbying that’s about to drive… https://t.co/ugN7SarRj8 +05/23/2018,Economists,@justinwolfers,RT @chrislhayes: What could possibly go wrong https://t.co/1Tx1hiGL1Z +05/23/2018,Economists,@justinwolfers,RT @nealemahoney: Players should agree to offset each other. https://t.co/PFJVXfiXB7 +05/23/2018,Economists,@justinwolfers,"RT @ddiamond: Trump just stepped all over GOP midterm messaging. + +“Your vote in 2018 is every bit as important as your vote in 2016 — altho…" +05/23/2018,Economists,@justinwolfers,"RT @BauNatalie: Today, I taught a PhD student to hide her unused water bottles so that the hotel would give her more water bottles. The ad…" +05/23/2018,Economists,@justinwolfers,@jason_ockerby The first ten spots were hard fought. But a team requires eleven. +05/23/2018,Economists,@justinwolfers,"RT @scottlincicome: It's honestly bizarre. In what other context wld a ""conservative"" accept (no less welcome!) POTUS' decision - against C…" +05/23/2018,Economists,@justinwolfers,"I played in my high school First XI cricket team as a specialist batsman coming in at number 11. + +Never got out, a… https://t.co/l1b07wisLD" +05/22/2018,Economists,@justinwolfers,"RT @debipriya: How many times does an @nberpubs paper make your jaw hit the floor, ok, fine, the table, but you get the point? This is one…" +05/22/2018,Economists,@justinwolfers,A textbook example of the blame-shifting corporate passive voice by American Airlines explaining that a monkey it w… https://t.co/1JqDlNZXrP +05/21/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Nice thread explaining my research with @JustinWolfers +The short summary: Women being able to say no-in the case of o…" +05/20/2018,Economists,@justinwolfers,That the White House politburo has a specific target for a bilateral trade deficit sounds a lot like central planni… https://t.co/9Z0VaCxvFK +05/19/2018,Economists,@justinwolfers,Next time someone tells you businesses needs to less regulation so that they're free to pursue profit opportunities… https://t.co/PXMoCetjby +05/18/2018,Economists,@justinwolfers,"RT @patelnomics: If you had to name your Econ themed beer, what would it be? https://t.co/l6R4K6qGQD" +05/18/2018,Economists,@justinwolfers,By the power vested in me by Aaron Schlossberg—who probably won't be at happy hour because he's suddenly become con… https://t.co/ahfDChg5uB +05/18/2018,Economists,@justinwolfers,"2018 has been deadlier for schoolchildren than service members. +https://t.co/fdYbYsSgru https://t.co/JWmDImvpEa" +05/18/2018,Economists,@justinwolfers,An appalling number. https://t.co/OEgITpq9LZ https://t.co/g8nGThsCQV +05/18/2018,Economists,@justinwolfers,The federal government pinpointing individual companies to harm. as political payback is not how capitalism is mean… https://t.co/sI5AAvkPmJ +05/18/2018,Economists,@justinwolfers,"There's a broader and more important point here: We economists spend a lot of time talking among ourselves, which l… https://t.co/u5ZsARRhCF" +05/18/2018,Economists,@justinwolfers,And unwarranted smugness about the insight into economic policy is also bipartisan. https://t.co/1jDO2z7Lh9 +05/18/2018,Economists,@justinwolfers,As for confusing correlation and causation: It's not just those rubes on the other side who do it. Innumeracy is bi… https://t.co/zCZJB0M1Kt +05/18/2018,Economists,@justinwolfers,I suspect partisan differences might be entirely attributable to @paulkrugman. https://t.co/WMB2J6TVcg +05/18/2018,Economists,@justinwolfers,Even if they can't name a single living economist. https://t.co/icOJ8aZHyS +05/18/2018,Economists,@justinwolfers,"The irony is, these folks say they're well-informed about economic policy. https://t.co/ltyuMoiOVE" +05/18/2018,Economists,@justinwolfers,It's not that these folks can't get any questions right. They are answering *other* questions correctly. https://t.co/n6WZyu5QAt +05/18/2018,Economists,@justinwolfers,And our friends in political science have some explaining to do. https://t.co/CDFOctObw8 +05/18/2018,Economists,@justinwolfers,I'm willing to draw conclusions from the data on misunderstanding correlation and causation. (HT @RealBryanWatson) https://t.co/WnaeIptZm0 +05/18/2018,Economists,@justinwolfers,The latest Cards Against Humanity Poll makes a pretty compelling case we need to improve economic education.… https://t.co/blWAdD2oEb +05/18/2018,Economists,@justinwolfers,RT @BrendanNyhan: It's official - I'm thrilled to be joining @fordschool @UMich in the fall! https://t.co/JIm2XBfofX +05/17/2018,Economists,@justinwolfers,And is the DMV the same as the DMZ? https://t.co/Yegdd23Jb4 +05/17/2018,Economists,@justinwolfers,RT @BetseyStevenson: The op-ed in NYT saying lower income kids might not benefit from college made my blood boil. Read this thread and it'l… +05/17/2018,Economists,@justinwolfers,John McCain would have disavowed Aaron Schlossberg by now. +05/17/2018,Economists,@justinwolfers,RT @ATabarrok: Excellent thread. Unfortunate that it has to be said. https://t.co/aqTQ3eUyb4 +05/16/2018,Economists,@justinwolfers,"@causalinf It sounds like you got the big picture right. + +Next time you teach it, ping me for my slides! + +I actuall… https://t.co/OdCYEM4YIH" +05/16/2018,Economists,@justinwolfers,Not understanding trade is a serious defect in a trade adviser. https://t.co/tU5BTsXC3K +05/16/2018,Economists,@justinwolfers,"RT @JustinWolfers: “He even considers, briefly, a position teaching economics.” ...an unexpected gem from Michael Lewis’ extraordinary piec…" +05/16/2018,Economists,@justinwolfers,"“He even considers, briefly, a position teaching economics.” ...an unexpected gem from Michael Lewis’ extraordinary… https://t.co/jICK6VuctZ" +05/16/2018,Economists,@justinwolfers,@titonka @planetmoney That’s fantastic! You’ll be great. +05/15/2018,Economists,@justinwolfers,"RT @AbrahamHanover: In an age of performative cruelty, kindness is punk as fuck. + +Be punk as fuck." +05/15/2018,Economists,@justinwolfers,"RT @BetseyStevenson: This is a terrible idea. +(1) If we want to tax corporations, do it! +(2) Don't create a group of rich people who have…" +05/15/2018,Economists,@justinwolfers,"guys, I have a theory and it's about what old dogs can hear and you can be my data." +05/15/2018,Economists,@justinwolfers,I can only hear Laurel. Do people really hear Yanny? https://t.co/OcmTV6zfUZ +05/15/2018,Economists,@justinwolfers,"Taylor Swift has figured out how to squeeze out the scalpers, but she's also squeezed out many real fans. An intere… https://t.co/DeVoIdKUvj" +05/15/2018,Economists,@justinwolfers,RT @TheEconomist: Economics cannot afford to exclude good minds and good ideas just because they aren't white and male https://t.co/dOQFDp9… +05/14/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Yes, please someone explain to me how letting predatory colleges fleece students and taxpayers is a conservative posit…" +07/01/2018,Economists,@BetseyStevenson,Seems like a sensible revision. https://t.co/3n0RiDHz3X +06/30/2018,Economists,@BetseyStevenson,@TooheyMatthew We do it all the time! And formalizations can be really helpful for building ideas. So the public kn… https://t.co/7HytcQ9iEM +06/30/2018,Economists,@BetseyStevenson,@TooheyMatthew Oh now I feel a bit bad. I really like Dan. I just thought it was funny to see a serious discussion… https://t.co/dJNSGJ0paQ +06/30/2018,Economists,@BetseyStevenson,"I'm getting the sense that @realDonaldTrump just doesn't like children. But still, the worst criminal elements? https://t.co/RzwiEkHWMS" +06/30/2018,Economists,@BetseyStevenson,A formalization of rich people problems. https://t.co/ffhbxM84J2 +06/30/2018,Economists,@BetseyStevenson,"RT @JustinWolfers: Useful thread by a real expert analyzing how the new “postcard” for tax returns is more complicated, leads you to fill i…" +06/30/2018,Economists,@BetseyStevenson,"@BS0064 Yes, but he's no longer waiting for that to ACTUALLY happen, instead he's pretending/lying that it is happe… https://t.co/vSW46PmJMk" +06/30/2018,Economists,@BetseyStevenson,@mrsalzwedel Are you saying that economists aren’t normal people? +06/30/2018,Economists,@BetseyStevenson,The biggest news here is that Kudlow is now lying about the federal deficit rather than continuing to believe and e… https://t.co/GADPTRoksP +06/29/2018,Economists,@BetseyStevenson,Economists continue to be confused as to why the US is pursuing a policy that will lead to higher prices and fewer… https://t.co/Incn8YNZmm +06/29/2018,Economists,@BetseyStevenson,"Tip for policy makers: I look at the people killed, read about their lives, and try my best to imagine the pain the… https://t.co/RTZ3QBWEVD" +06/28/2018,Economists,@BetseyStevenson,@SarahJacobsonEc I went to museum of Swedish design (something like that) where I learned how the Swedish govt solv… https://t.co/bLj8wADhRC +06/27/2018,Economists,@BetseyStevenson,RT @ShadowingTrump: McConnell-Gorsuch Part VI: Cheating pays https://t.co/CLOxrGnXXz +06/27/2018,Economists,@BetseyStevenson,@lukemburgess My point is that I understand and empathize with both sides of it and I think that is most of the ball game. +06/27/2018,Economists,@BetseyStevenson,@lukemburgess The reason people get upset is the lived experience of constantly being assumed to be the stereotype—… https://t.co/Of43qBmTyT +06/27/2018,Economists,@BetseyStevenson,@MikeFellman @econwonk @PressSec @realDonaldTrump I think that every day. And I wish that the public had a better h… https://t.co/FkMphKaaKm +06/27/2018,Economists,@BetseyStevenson,My uber driver asked me if I was a university administrator. You might think that’s sexist but another answer is th… https://t.co/6vzDXxEP1g +06/27/2018,Economists,@BetseyStevenson,#cloudme @tweetcloudbot +06/26/2018,Economists,@BetseyStevenson,Pregnancy discrimination is one reason that women with children earn less than women without children.… https://t.co/6hxYKVweRw +06/26/2018,Economists,@BetseyStevenson,"RT @CFCamerer: Incredible must read “History can familiarize, and it can warn” https://t.co/1tNRqR0lUb" +06/25/2018,Economists,@BetseyStevenson,"@MikeFellman @econwonk @PressSec @realDonaldTrump Yes, yes I have thought that." +06/25/2018,Economists,@BetseyStevenson,RT @brhodes: The President of the United States is threatening to do away with the rule of law. His press secretary didn't get served at a… +06/25/2018,Economists,@BetseyStevenson,After learning that @PressSec's use of twitter to complain about her treatment at a private business was an ethics… https://t.co/sHZxu1H9hJ +06/24/2018,Economists,@BetseyStevenson,Ankle bracelets are a way to achieve the same outcomes with lower government spending. (Remember when the GOP used… https://t.co/Kv7hFuqzT7 +06/24/2018,Economists,@BetseyStevenson,"RT @soledadobrien: Thanks @sullydish ! I wasn't sure what to think when the President talked about migrants 'infest'ing our country. Whew,…" +06/24/2018,Economists,@BetseyStevenson,These folks no longer have to tell you what's in your best interest anymore so watch out before you follow financia… https://t.co/Wqwen0gArx +06/23/2018,Economists,@BetseyStevenson,"Turns out that she's right +https://t.co/5bPa1MFkqW" +06/23/2018,Economists,@BetseyStevenson,I told an American citizen the other day that the shortest route from Ann Arbor to Massachusetts was through Canada… https://t.co/KOA2iKtvBP +06/23/2018,Economists,@BetseyStevenson,Some people make retirement look good. @JohnDingell excels at it. https://t.co/Goaw3kzE8c +06/22/2018,Economists,@BetseyStevenson,GDP counts ...ambulances to clear our highways of carnage. It counts special locks for our doors and the jails for… https://t.co/iY12iiHrbu +06/21/2018,Economists,@BetseyStevenson,RT @SarahJacobsonEc: Apply apply apply! The CSWEP CeMENT mentoring program is wonderful. https://t.co/BNer13ER9I +06/21/2018,Economists,@BetseyStevenson,"RT @JedKolko: @BetseyStevenson Even strongly Trump-voting counties are overwhelmingly service economies + +https://t.co/rKQq4I1rja" +06/21/2018,Economists,@BetseyStevenson,"80% of U.S. employment is in the service sector, one-third of U.S. exports are services +We export services because… https://t.co/WeeXuqNUJ0" +06/21/2018,Economists,@BetseyStevenson,@RadioFreeTom I'm a dem who believes democracy needs more than one party and an economist who understands truly con… https://t.co/dnVYrGLVD0 +06/20/2018,Economists,@BetseyStevenson,"Our government has separated 2,000 children and doesn't yet have a plan to EVER reunite these children with their p… https://t.co/iVedsSrAvK" +06/20/2018,Economists,@BetseyStevenson,"RT @codykeenan: ✅ More than 1 million jobs in every six-month stretch going back to 2012 +✅ Unemployment falling since 2010 +✅ Wages rising (…" +06/19/2018,Economists,@BetseyStevenson,"Sometimes you have to laugh at the incompetence. Go to the facebook page. There's lots of questions. Shockingly, St… https://t.co/LjbXol1aqQ" +06/18/2018,Economists,@BetseyStevenson,"No matter your political beliefs or your party affiliation, if you study families and children you know that the Un… https://t.co/fjpQduVOlG" +06/18/2018,Economists,@BetseyStevenson,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Economists,@BetseyStevenson,"RT @SaraMurray: “Amnesty International recently interviewed 17 asylum-seeking parents who were forcibly separated from their children, and…" +06/18/2018,Economists,@BetseyStevenson,"@jason_nordsell @TDeryugina @TimDuy Is separating them from their children? Now, we're starting to think similarly.… https://t.co/HaAG9Nx77r" +06/18/2018,Economists,@BetseyStevenson,@jason_nordsell @TDeryugina @TimDuy Anger gets in the way of logic and you are clearly very angry. Your anger has l… https://t.co/bvE6WlxRtm +06/18/2018,Economists,@BetseyStevenson,The callousness of some of my fellow countrymen takes my breath away. https://t.co/SlEQfMkNng +06/18/2018,Economists,@BetseyStevenson,"Just in case the GOP wasn't aware, world trading partners will eventually move on. https://t.co/8n5aho98Hg" +06/18/2018,Economists,@BetseyStevenson,"Last night my 5-year old woke up from a bad dream, crying and calling for his parents. I ran to him, quickly smooth… https://t.co/kPlfAezB1m" +06/18/2018,Economists,@BetseyStevenson,#cloudme @tweetcloudbot +06/18/2018,Economists,@BetseyStevenson,RT @ShellyJLundberg: This is rather awesome. https://t.co/uSv9Ff8lDY +06/17/2018,Economists,@BetseyStevenson,RT @robyndoolittle: “To pretend that separated children do not grow up with the shrapnel of this traumatic experience embedded in their min… +06/17/2018,Economists,@BetseyStevenson,"RT @ReliableSources: ""I'm extremely angry with this administration that has lied to me, continues to lie to me,"" says reporter @BrianKarem…" +06/17/2018,Economists,@BetseyStevenson,RT @michele_norris: Keep knocking https://t.co/Yo3WyzjxiS +06/17/2018,Economists,@BetseyStevenson,"My heart races, my stomach heaves, and I can't breath when I read this. But looking away isn't a choice either. Eve… https://t.co/LwT7GV3nSM" +06/16/2018,Economists,@BetseyStevenson,"When you work in the White House you can do a lot of good. Unfortunately, you can also do a lot of harm. https://t.co/HwVLuzOPOF" +06/16/2018,Economists,@BetseyStevenson,"@sampenrose But they are becoming more selective over time, because the pool of qualified applicants has grown subs… https://t.co/Emr1yXeqha" +06/16/2018,Economists,@BetseyStevenson,Totally agree. There are so many more qualified people and the slots aren't expanding. I know that the experience c… https://t.co/4vRQpVFpl9 +06/15/2018,Economists,@BetseyStevenson,We won't be able to pretend later that we didn't know it was happening. We did. https://t.co/1Y873VTDOb +06/15/2018,Economists,@BetseyStevenson,"Um, what? https://t.co/3wnGYTUwbQ" +06/15/2018,Economists,@BetseyStevenson,"RT @familyunequal: When I was a little kid my neighbor rode the short bus to school. Lots of people mocked and bullied him, but he was alwa…" +06/15/2018,Economists,@BetseyStevenson,"RT @JamesSurowiecki: Where is ""feed, clothe, and entertain your little children"" on this list? https://t.co/cIDFwrHh1y" +06/14/2018,Economists,@BetseyStevenson,"Yes we might get 4% growth in a quarter. No, that’s not a sign that the tax cuts “worked”. A fair and good assessme… https://t.co/s16zmubnXC" +06/14/2018,Economists,@BetseyStevenson,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Economists,@BetseyStevenson,RT @AmbassadorRice: WTH??!! https://t.co/VObr4lArPo +06/14/2018,Economists,@BetseyStevenson,"You know you've hit your mid-40s when you get a fundraiser invitation and think ""that looks like fun!""" +06/14/2018,Economists,@BetseyStevenson,Trump admires Kim Jong Un and other violent dictators. He’s energized and excited by their action. The G7 leaders i… https://t.co/3wQBL5SOYf +06/14/2018,Economists,@BetseyStevenson,"@brian_root There is selection into the work for sure. I do feel for the workers, but I also firmly believe that if… https://t.co/vZnSlo3iNa" +06/13/2018,Economists,@BetseyStevenson,This isn't just bad policy. What have we done to the people working for ICE? These workers are too desensitized to… https://t.co/jsO1hGkxyn +06/13/2018,Economists,@BetseyStevenson,Sometimes you have to state the obvious. https://t.co/TfgG9wzeOD +06/13/2018,Economists,@BetseyStevenson,Thank goodness we have economist jokes in these trying times. https://t.co/BTGFefk9Lu +06/12/2018,Economists,@BetseyStevenson,"I have to close twitter, shut off the radio, hide my newspaper apps today. This is too much. https://t.co/tNuKWFGJyS" +06/12/2018,Economists,@BetseyStevenson,I thought the idea that the GOP was trying to stop low income people from voting was supposed to be unspoken. Seems… https://t.co/iETxamGlij +06/11/2018,Economists,@BetseyStevenson,This is actually our government. Watch this interview and keep reminding yourself that this isn't some blowhard on… https://t.co/z2tFgCv2Uf +06/11/2018,Economists,@BetseyStevenson,Actually freelance fees for book reviews have fallen substantially if you think about the fee in terms of what it c… https://t.co/5SnerqTwnM +06/11/2018,Economists,@BetseyStevenson,"My favorite part of reunion is seeing the women from the classes of 1943, '48, '53, & '58. The women who graduated… https://t.co/Cpyy73ejm8" +06/11/2018,Economists,@BetseyStevenson,@amyjccuddy @TooheyMatthew @JustinWolfers You have to have somewhere to sleep and eat whether you are in school or… https://t.co/M35jgmLsGW +06/11/2018,Economists,@BetseyStevenson,@amyjccuddy @TooheyMatthew @JustinWolfers That's a very different question because that question is how much does f… https://t.co/X8NC9wfagO +06/11/2018,Economists,@BetseyStevenson,@TooheyMatthew @amyjccuddy @JustinWolfers One could even just look these numbers up using google. Tuition depends o… https://t.co/SF9uEWxtdA +06/08/2018,Economists,@BetseyStevenson,"If we aren't going to support working families, we'll have fewer working families. + +There's a reason Millennials a… https://t.co/Pr3yuNCV5V" +06/08/2018,Economists,@BetseyStevenson,Super excited to head to @Wellesley today for reunion! https://t.co/d86i88XTX0 +06/08/2018,Economists,@BetseyStevenson,"@a40ruhr @SylvainCF @JustinWolfers I don't know because I don't have another experience, but I do think that having… https://t.co/JuC2R7E2Dw" +06/07/2018,Economists,@BetseyStevenson,"@felixsalmon @mrgunn Wait, are you saying most people don't use twitter to learn about new research, stay on top of… https://t.co/5INcfsrJHe" +06/07/2018,Economists,@BetseyStevenson,"@felixsalmon @mrgunn Wait, what?" +06/07/2018,Economists,@BetseyStevenson,I think I'm starting to understand American politics. https://t.co/phafTizVa4 +06/06/2018,Economists,@BetseyStevenson,@JaimeMortimer Look New Zealand is smaller than Oz and I've basically discovered that every Australian in the U.S.… https://t.co/0kk8x4GiWK +06/06/2018,Economists,@BetseyStevenson,@niltiac @drlisadcook Keep in mind everyone loves to advise students on the right path--every supervisor does what… https://t.co/nWpN3H5fef +06/06/2018,Economists,@BetseyStevenson,"@niltiac @drlisadcook I don't think we disagree, but the adviser can't do their research for them & I've seen lots… https://t.co/4N5SHNrlTd" +06/06/2018,Economists,@BetseyStevenson,@RocCityBuilt I know you support the president. You're too smart to think there's no info in his comment. Reasonabl… https://t.co/r4iHz9XWzF +06/05/2018,Economists,@BetseyStevenson,"What worries me about the ""Obama-did-it-to"" lie is that it is necessary because Trump defenders know that he will l… https://t.co/0aMHV3Ikjj" +06/05/2018,Economists,@BetseyStevenson,"@charlesjkenny @TimHarford @JustinWolfers Depends on the measure of happiness, but the clear finding was with a hol… https://t.co/gZJ8LhefI9" +06/05/2018,Economists,@BetseyStevenson,"RT @DinaPomeranz: If a study doesn't replicate in a new context, that doesn't imply researchers of the original study did something wrong o…" +06/05/2018,Economists,@BetseyStevenson,"If you don't like something, Trump claims the Democrats/Obama/Crooked Hillary did it. + +To be clear: This is a poli… https://t.co/Rl8VayEeq4" +06/05/2018,Economists,@BetseyStevenson,RT @esglaude: These people are moral monsters... https://t.co/dijYf000vp +06/05/2018,Economists,@BetseyStevenson,"@niltiac @drlisadcook Of course that's the goal and MANY try to choose that path, but in my experience many struggl… https://t.co/O436cDUFu8" +06/05/2018,Economists,@BetseyStevenson,@andrewr94514536 @ATabarrok lotteries are welfare decreasing under standard utilitarian assumptions. But I think mo… https://t.co/puFpUCyaJM +06/05/2018,Economists,@BetseyStevenson,"@ATabarrok I think you are saying that it’s the relative gain not the absolute gain. +This study can’t distinguish b… https://t.co/9G3lnviwJM" +06/04/2018,Economists,@BetseyStevenson,"And how many years of life did you cost Americans? How much additional environmental degradation? + +Just because yo… https://t.co/rlrEHEOl3v" +06/04/2018,Economists,@BetseyStevenson,"RT @BrookingsEcon: If you haven't kept up with the joint @BrookingsInst & @AEI series on paid family leave, now's the perfect time to start…" +06/04/2018,Economists,@BetseyStevenson,Research on a surprisingly contested question finds an unsurprising answer. Your life is better if you win the lott… https://t.co/dATZvtMiCJ +06/04/2018,Economists,@BetseyStevenson,This is a really important point that both PhD students and advisers forget. It's an apprenticeship in which studen… https://t.co/BwSpSobD1J +06/04/2018,Economists,@BetseyStevenson,"Ugh this is so awful. He did a lot of good in the world & may have even helped advance many women’s careers, but th… https://t.co/3S6drq6mnJ" +06/04/2018,Economists,@BetseyStevenson,"RT @LHSummers: It’s extraordinary that premature Presidential observations on sensitive data releases are barely newsworthy in 2018, given…" +06/04/2018,Economists,@BetseyStevenson,RT @ShellyJLundberg: This seems important. John Haltiwanger documents decline in young firms and decline in high growth firms in high tech.… +06/03/2018,Economists,@BetseyStevenson,@Undercoverhist @ShellyJLundberg But you also know that your fans will be extremely grateful! +06/01/2018,Economists,@BetseyStevenson,"This is a complete lie. + +Austan, @jasonfurman, @Alan_Krueger, Christy Romer, and I gave Obama the numbers. We NEVE… https://t.co/FVQP1i1Glr" +06/01/2018,Economists,@BetseyStevenson,I truly believe that each generation is smarter than the previous generation. But there are clearly some outliers t… https://t.co/L0U6J4R740 +06/01/2018,Economists,@BetseyStevenson,"I, like much of America apparently, have been forced to abandon beer for a stiff drink at the end of what is now al… https://t.co/cNcVniFFCx" +06/01/2018,Economists,@BetseyStevenson,"RT @ShadowingTrump: After this morning's leak of confidential economic data, is there *any* law or norm Trump won't violate? It's almost li…" +06/01/2018,Economists,@BetseyStevenson,This is a time to be grateful that the President doesn't listen to his advisers. https://t.co/GlxsJwIK8k +06/01/2018,Economists,@BetseyStevenson,What do I mean by a bigger crisis? While student loans may be difficult they exist. There is substantial financial… https://t.co/ws0P3HJiDE +06/01/2018,Economists,@BetseyStevenson,Not obscure before this administration. The Obama administration and all previous administrations to my knowledge f… https://t.co/LgLHqJXM4C +06/01/2018,Economists,@BetseyStevenson,We would have been freaking out and we would have discussed whether it was in the president's best interest to tell… https://t.co/tYFyyeUPXo +06/01/2018,Economists,@BetseyStevenson,Do you know why I never fear the robots? Because the youngsters are becoming more talented at an even faster rate.… https://t.co/ZPRWzgutFS +06/01/2018,Economists,@BetseyStevenson,Seems like a good candidate for a Trump pardon https://t.co/WiWXkgU3pL +06/01/2018,Economists,@BetseyStevenson,"@boost321 @jimtankersley @ThePlumLineGS @Austan_Goolsbee I think that this is a more important issue than that, but… https://t.co/I3ta2bLmzJ" +06/01/2018,Economists,@BetseyStevenson,@DonCarrMAC @Austan_Goolsbee This isn’t liberal bias. The markets inferred correctly that the news would be good fr… https://t.co/YHOL8KN0ob +06/01/2018,Economists,@BetseyStevenson,"There is a big question about who he privately leaks data to and that should be investigated. +Privately leaking thi… https://t.co/hz96iB4yuk" +06/01/2018,Economists,@BetseyStevenson,@ThePlumLineGS @Austan_Goolsbee I would start by reading this: Confidential Information Protection and Statistical… https://t.co/UMThszyV6F +06/01/2018,Economists,@BetseyStevenson,"RT @Austan_Goolsbee: If the president just tipped that the numbers are good, he broke the law https://t.co/8MDJZAS22j" +06/01/2018,Economists,@BetseyStevenson,I think the PR he wants is people talking about him. It worked. https://t.co/0mqoC2izy8 +06/01/2018,Economists,@BetseyStevenson,RT @grossdm: i would bet there are meetings at bureau of labor statistics to discuss keeping advance news on jobs report from getting to th… +06/01/2018,Economists,@BetseyStevenson,Independent statistical agencies must stop sharing data with @realDonaldTrump before public release. The data needs… https://t.co/CjAyXptPiF +06/01/2018,Economists,@BetseyStevenson,@jason_ockerby I don’t live there so don’t have the national insurance. +06/01/2018,Economists,@BetseyStevenson,@rclarkiv It was part of the same hospital so there wasn’t a risk to us. I was also allowed to transport my child (… https://t.co/SDnvvcC27S +06/01/2018,Economists,@BetseyStevenson,@SarahJacobsonEc @WilliamsEcon On to graduate school I hope! +06/01/2018,Economists,@BetseyStevenson,In Australia I once took my kid to the ER for a cut that might have needed a couple stitches. The ER took a look an… https://t.co/axk888d1V1 +05/31/2018,Economists,@BetseyStevenson,"@katewbauer @wowintheworld @guyraz @AbsolutelyMindy They said brain butt, how is that bad communication! Every kid… https://t.co/siLsy9Wky7" +05/31/2018,Economists,@BetseyStevenson,"Attention @wowintheworld @guyraz @AbsolutelyMindy + +My kids need to know more about this butt brain right away. Ple… https://t.co/SGPCDHGFax" +05/31/2018,Economists,@BetseyStevenson,The law and order president https://t.co/OHOZ8CVHwS +05/30/2018,Economists,@BetseyStevenson,"There goes the faculty's, staff's, and students' step count. https://t.co/b2I2PXKFiW" +05/30/2018,Economists,@BetseyStevenson,@Rocketist That's kind of you to say. I appreciate you taking a moment of your time to say something nice to me. +05/30/2018,Economists,@BetseyStevenson,@Rocketist I decided that since I was being vague about per capital or total I could fudge that one. +05/30/2018,Economists,@BetseyStevenson,"Imagine if families got paid time off for a new child, mothers didn't face a permanent wage penalty, and families h… https://t.co/YF6gB9FStG" +05/30/2018,Economists,@BetseyStevenson,This is a guy who is directing the richest country in the world to terrorize innocent children calling other human… https://t.co/QKpiMsIf1v +05/30/2018,Economists,@BetseyStevenson,"RT @PAniskoff: VJ is the epitome of “when they go low, we go high”. She handles every disgusting thing that comes at her with grace, and,…" +05/29/2018,Economists,@BetseyStevenson,RT @jonfavs: It is not a law. Separating children from parents at the border is a new Trump Administration policy. It was not policy under… +05/29/2018,Economists,@BetseyStevenson,"In these trying times, it's good to be able to rely on the dictionary. https://t.co/xrzOjaHsGE" +05/29/2018,Economists,@BetseyStevenson,"President Trump's policy is a form of torture. +President Trump's policy should be against the law. +President Trum… https://t.co/WXpxnXCVQY" +05/28/2018,Economists,@BetseyStevenson,@SometimesSoftly @besttrousers @kareem_sabri @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/SQyfdknlXg +05/28/2018,Economists,@BetseyStevenson,"As @Lin_Manuel would say: Immigrants, they get the job done. https://t.co/pc4GAngxuT" +05/28/2018,Economists,@BetseyStevenson,@besttrousers @kareem_sabri @SometimesSoftly @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/Jc8l6N53Vd +05/28/2018,Economists,@BetseyStevenson,@besttrousers @kareem_sabri @SometimesSoftly @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/ROuoNb7D1s +05/27/2018,Economists,@BetseyStevenson,"Separating children from their parents is really bad and should only be done in the most extreme situations. +Immigr… https://t.co/HBX8M2m27a" +05/26/2018,Economists,@BetseyStevenson,What we are doing is wrong. Call your members of Congress. Tell them that this is unAmerican. That they shouldn’t s… https://t.co/ry5RffGXJZ +05/24/2018,Economists,@BetseyStevenson,"It may seem silly, but Trump's decision to only be President to his supporters is an affront to our system of gover… https://t.co/I21zZVlWuo" +05/24/2018,Economists,@BetseyStevenson,@familyunequal Thank you! Amazing! +05/24/2018,Economists,@BetseyStevenson,"@Austan_Goolsbee Maybe she could just choose what she wants to do among all her opportunities. +I’m personally glad… https://t.co/kTbEvvM00U" +05/23/2018,Economists,@BetseyStevenson,"@elliottmcollins Did you read the article ""using spotlights to shoot mother black bears and cubs hibernating in the… https://t.co/hF3EmkIFNT" +05/23/2018,Economists,@BetseyStevenson,@gunderson A flat tax doesn't solve tax complication at all! The difficulty of taxes is not doing math on a few dif… https://t.co/Lz2Q1oy9g9 +05/23/2018,Economists,@BetseyStevenson,"They also have enough information to do your taxes for you. + +There are two things that GOP doesn't want to make ea… https://t.co/RZGipPmnIH" +05/23/2018,Economists,@BetseyStevenson,RT @Austan_Goolsbee: My old nber cubicle-mate from graduate school. Nobody is smarter or more down-to-earth. Good for BYU. https://t.co/6BZ… +05/23/2018,Economists,@BetseyStevenson,@pusher1990 The only disagreement here is that I don't think recognizing the rights of immigrants or all people reg… https://t.co/e0E3Lqn81P +05/23/2018,Economists,@BetseyStevenson,"Someone recently asked what social idea would seem obvious in the future but is ahead of its time now. +The answer i… https://t.co/UFjJD0g6KL" +05/22/2018,Economists,@BetseyStevenson,@icefire99 @_alice_evans @JustinWolfers I think that you are misunderstanding marriage--it's generally a cooperativ… https://t.co/Kop1eIwr6U +05/22/2018,Economists,@BetseyStevenson,@Missmarissabee @moorehn A third of Americans have a college degree. Free college won't help your friend--it won't… https://t.co/b1jpjNauIo +05/22/2018,Economists,@BetseyStevenson,"@Missmarissabee @moorehn Lots of countries have more sensible ways to fund college, but what does free mean. Colleg… https://t.co/pUF6kf8FYu" +05/22/2018,Economists,@BetseyStevenson,@annanorthtweets Congratulations! That is lovely news. Enjoy maternity leave! You and all parents deserve leave! +05/22/2018,Economists,@BetseyStevenson,"In an era of reduced worker bargaining power, the Supreme Court strikes another blow, with a decision that further… https://t.co/jJ7Mtolmli" +05/21/2018,Economists,@BetseyStevenson,"RT @tukopamoja: Look at this amazing line-up of economists speaking at @WB_Research! + +You can find links to videos of the seminars that ha…" +05/21/2018,Economists,@BetseyStevenson,Is it time for the constitutional crisis yet? https://t.co/IaimJ4nAEy +05/21/2018,Economists,@BetseyStevenson,"Nice thread explaining my research with @JustinWolfers +The short summary: Women being able to say no-in the case o… https://t.co/uQHP268bGN" +05/21/2018,Economists,@BetseyStevenson,@jamisonfoser @NextGenAmerica Touché +05/21/2018,Economists,@BetseyStevenson,Every day I focus my hopes and prayers on millennials voting. https://t.co/dhPJ61LM7T +05/20/2018,Economists,@BetseyStevenson,@cockybritches @olivia_meikle Jesus Christ! Stop harassing her. What’s the matter with YOU? Get a life. +05/19/2018,Economists,@BetseyStevenson,"@dovesandletters @JustinWolfers I can’t tell if you are joking. They are referring to Frisco, Texas" +05/19/2018,Economists,@BetseyStevenson,"RT @JustinWolfers: Next time someone tells you businesses needs to less regulation so that they're free to pursue profit opportunities, sen…" +05/19/2018,Economists,@BetseyStevenson,"@jneuf Sure it’s a little crass to celebrate that metric. But come on, it feels great to see a public school on tha… https://t.co/XsRi2nrJ9J" +05/18/2018,Economists,@BetseyStevenson,@jneuf I teach the public policy students. They are awesome! I'm sure Michigan competes well on your metric. +05/18/2018,Economists,@BetseyStevenson,Which state school is churning out the most billionaires? You guessed it! The University of Michigan @UMich is the… https://t.co/oWWJH0OHlk +05/18/2018,Economists,@BetseyStevenson,@judy_chevalier @MartinSGaynor @M_ttM_ Wait you can use spaces? +05/18/2018,Economists,@BetseyStevenson,RT @JustinWolfers: The federal government pinpointing individual companies to harm. as political payback is not how capitalism is meant to… +05/18/2018,Economists,@BetseyStevenson,That's why they are reported--because they are held by people journalists know like lawyers. Who really struggles w… https://t.co/do13fQjkkk +05/18/2018,Economists,@BetseyStevenson,SNAP works. It's that simple. Cutting it is cruel and will cost more in the end by raising childhood hunger and lea… https://t.co/C9z5rJlX1B +05/18/2018,Economists,@BetseyStevenson,This is so awesome! https://t.co/jX4rVMLDxt +05/18/2018,Economists,@BetseyStevenson,I agree—this is the best typo I have ever seen. Can’t stop laugh/crying https://t.co/IJqloREQS7 +05/18/2018,Economists,@BetseyStevenson,Birth rates for teens and near teens is way down. This is good for kids. That the birth rate is slightly down for w… https://t.co/nkPGmPpdz3 +05/17/2018,Economists,@BetseyStevenson,I guess we have to sink lower before rising up. But surely our appetite for this kind of crap will be satiated soon… https://t.co/HnvxWzuWvN +05/17/2018,Economists,@BetseyStevenson,The op-ed in NYT saying lower income kids might not benefit from college made my blood boil. Read this thread and i… https://t.co/C0o6nOuMKX +05/17/2018,Economists,@BetseyStevenson,The high cost of childcare & the way our society frowns at parents for needing time to care for infants are a big p… https://t.co/lfX1uiZkbC +05/16/2018,Economists,@BetseyStevenson,"To @JillFilipovic 's point--better more affordable childcare & preschool has been a priority for some. + +The reason… https://t.co/TfCIWIad1b" +05/16/2018,Economists,@BetseyStevenson,"Childcare in the first five years of life costs as much as college. + +But w/ childcare, parents don't have time to… https://t.co/WcE0fbsaWt" +05/16/2018,Economists,@BetseyStevenson,@ATabarrok @Lin_Manuel Yes but more people listen to the music than have seen the show. And many more will see it n… https://t.co/jAADbIJy2I +05/16/2018,Economists,@BetseyStevenson,"When my daughter explain to her baby brother that a frenemy was ""like Alexander Hamilton and Aaron Burr"" I realized… https://t.co/Mor53TnY5Q" +05/16/2018,Economists,@BetseyStevenson,@Austan_Goolsbee @ShellyJLundberg We did this with our youngest’s favorite stuffed animal until she discovered our stash. +05/16/2018,Economists,@BetseyStevenson,@ShellyJLundberg That’s the best part of twitter! Well that and keeping up with new research. I loved your story. +05/15/2018,Economists,@BetseyStevenson,@ShellyJLundberg All I can think right now is should I be doing this? I wash with the stuffing in. Is that bad? Oh… https://t.co/UbKdx6hnaq +05/15/2018,Economists,@BetseyStevenson,@JosephPatrice The point is that Dems are so afraid to just tax that they invent complicated taxes that create a bu… https://t.co/6gocfdE2fb +05/15/2018,Economists,@BetseyStevenson,"RT @cskovron: My research with @dbroockman, as well as relevant research by, among others, @V_Williamson and @SpencerPiston, suggests Ds pr…" +05/15/2018,Economists,@BetseyStevenson,This policy also encourages low-skill workers to be replaced by machines. +05/15/2018,Economists,@BetseyStevenson,@HarryDCrane @CFCamerer It is absolutely not true that there are higher standards at for-profit institutions. Read… https://t.co/pUQcMB5Rro +05/15/2018,Economists,@BetseyStevenson,"This is a terrible idea. +(1) If we want to tax corporations, do it! +(2) Don't create a group of rich people who ha… https://t.co/pfdJXGr2yy" +05/15/2018,Economists,@BetseyStevenson,"RT @ShellyJLundberg: Every spring, my mother gathered our stuffed animals (not many each, but there were 6 of us), split a seam, pulled out…" +05/15/2018,Economists,@BetseyStevenson,But you already knew this right? https://t.co/JiJ1o5GQOw +05/14/2018,Economists,@BetseyStevenson,@EdAsante77 @JustinWolfers Even if the school is lying about failure rates? So conservatives support lying to peopl… https://t.co/Qmau7hM67f +05/14/2018,Economists,@BetseyStevenson,"Yes, please someone explain to me how letting predatory colleges fleece students and taxpayers is a conservative po… https://t.co/ekd9FfiJxQ" +05/14/2018,Economists,@BetseyStevenson,RT @wowintheworld: What's that smell? It's today's new episode! In Somefin Smells Fishy in Here @guyraz and @AbsolutelyMindy teach us how e… +05/14/2018,Economists,@BetseyStevenson,Sometimes I feel for the folks trying to work in the WH. https://t.co/eFuI6ku7bi +05/10/2018,Economists,@BetseyStevenson,I'm looking forward to this discussion! https://t.co/nuOF1a8RMh +05/08/2018,Economists,@BetseyStevenson,"I usually really like @TheEconomist. But this article is bad. Here are 2 pbs w/ it: +1) Al Roth actually works on ho… https://t.co/gSdwQuouv8" +05/08/2018,Economists,@BetseyStevenson,RT @BarackObama: There are few issues more important to the security of the US than the potential spread of nuclear weapons or the potentia… +05/08/2018,Economists,@BetseyStevenson,"RT @brhodes: The same people making the same mistakes, in part because too many people refused to acknowledge or accept the scale of the ca…" +05/08/2018,Economists,@BetseyStevenson,RT @brhodes: It took five years of diplomacy to build the sanctions regime and two years of diplomacy to reach a Deal. Trump is blowing tha… +05/08/2018,Economists,@BetseyStevenson,"The decision to pull out of the Iran deal is a terrifyingly bad choice, made for all the wrong reasons, and will le… https://t.co/z3gQOp9b6Y" +06/27/2018,Economists,@omzidar,"Race and economic opportunity in the United States | VOX, CEPR Policy Portal https://t.co/X7dc65wYXC" +06/27/2018,Economists,@omzidar,Why states are raising less revenue from corporate taxes - Chicago Booth Review https://t.co/DiZt6JuUOw via @chicagoboothrev +06/27/2018,Economists,@omzidar,RT @TradeDiversion: International exchange of goods plays a small role in most research presented at the Princeton IES Workshop this week:… +06/27/2018,Economists,@omzidar,"CAGE Workshop in Applied Economics, Venice 2018 https://t.co/rzCMdTQfWE" +06/27/2018,Economists,@omzidar,"U.S. government's efforts to regulate state pathways around SALT cap could hit hospital, school programs elsewhere… https://t.co/lma5IDhCmu" +06/27/2018,Economists,@omzidar,RT @AllisonSchrager: I asked Jean Tirole every you could want to know about regulating tech--no better source https://t.co/MkhhHhyODS via @… +06/25/2018,Economists,@omzidar,RT @Austan_Goolsbee: Spoiler: it’s by my @ChicagoBooth colleague Eric Budish and shows that the vulnerability to attack depends on the flow… +06/24/2018,Economists,@omzidar,RT @nealemahoney: Congratulations to both of you! https://t.co/wdXuYVj5VI +06/23/2018,Economists,@omzidar,"@ProfNoto “The brand most predictive of top income in 1992 is Grey Poupon Dijon mustard.42 By 2004, the brand most… https://t.co/2IK3ArgIfO" +06/23/2018,Economists,@omzidar,"@ProfNoto This was pretty interesting ... “In 1992, watching car racing, bicycle racing, and figure skating – and n… https://t.co/6cBexDZirw" +06/23/2018,Economists,@omzidar,@real_eric_ohrn How was the Zwick session? +06/23/2018,Economists,@omzidar,"RT @ProfNoto: Now *this* is a cool use of machine learning! + +How well can we predict demographic characteristics from media consumption, ti…" +06/22/2018,Economists,@omzidar,"RT @ProfNoto: OK, I've ""read"" the PDFs in Harvard discrimination case (though this is using the elastic meaning of ""read"" provided by McAfe…" +06/22/2018,Economists,@omzidar,State sales-tax officials rev their engines following Supreme Court ruling https://t.co/xXQ0zI0Hyu via @WSJ +06/22/2018,Economists,@omzidar,"RT @ProfNoto: This cool figure from Raj Chetty's talk at that ""school up north"" [go Buckeyes!] includes a graph from the JMP of my co-autho…" +06/21/2018,Economists,@omzidar,"Some interesting figures on democratic vote share by education, income, race from 1948-2016 from @PikettyLeMonde's… https://t.co/hvrwTpVb3R" +06/21/2018,Economists,@omzidar,Supreme Court rules that states may require online retailers to collect sales taxes https://t.co/kXa9q1Bac8 +06/21/2018,Economists,@omzidar,"RT @DinaPomeranz: Interested in tax research? + +Don't miss these great talks & panels tomorrow at the conference organized by Joel Slemrod o…" +06/20/2018,Economists,@omzidar,@fatihguvenen https://t.co/ULYl56be8I +06/19/2018,Economists,@omzidar,"RT @fatihguvenen: We are going to talk about inequality. New facts, findings, and ideas. +This Thursday-Friday in Copenhagen. Come and join…" +06/18/2018,Economists,@omzidar,Business Taxation -- Call for Papers: Research Conference and Graduate Student Workshop https://t.co/r8Iecse6fI +06/18/2018,Economists,@omzidar,"RT @ProfNoto: Back in 🇺🇸, so back on Twitter! + +Two threads I liked recently-- + +@IlliniBizDean on pensions: https://t.co/6YwwkMIPJV + +@SteveC…" +06/16/2018,Economists,@omzidar,"RT @ProfEmilyOster: Interesting (personal) take on the Harvard affirmative action case from the great @JeannieSuk +https://t.co/Hd07zHzMLv" +06/15/2018,Economists,@omzidar,RT @IlliniBizDean: Great thread on the Harvard admissions lawsuit by one of the best education economists in the world (and in full disclos… +06/15/2018,Economists,@omzidar,"RT @Kweku_OA: For your urgent economics diagram illustration needs, check out a very nice TikZ cookbook by Chiu Yu Ko of the National Unive…" +06/15/2018,Economists,@omzidar,RT @JoshuaSGoodman: For a phenomenal example of the importance of choosing the correct controls in a regression (and a smackdown of someone… +06/15/2018,Economists,@omzidar,"RT @dynarski: The Harvard brief is here + +https://t.co/iggzAlgMbq + +The plaintiffs’ brief is here + +https://t.co/fBg1vyerVz + +8/N" +06/15/2018,Economists,@omzidar,"RT @dynarski: Card models the Harvard admissions process using all the factors the school uses in making decisions. Essay ratings, backgrou…" +06/15/2018,Economists,@omzidar,"RT @dynarski: Once you consider all these factors, there is no evidence of bias against Asians in the process. + +David Card has does the s…" +06/15/2018,Economists,@omzidar,"RT @dynarski: Does Harvard discriminate against Asians in admissions? + +Evidence says no, by my reading of the evidence in this case. /THRE…" +06/15/2018,Economists,@omzidar,One in ten dollars of US housing were anonymous https://t.co/ro15VkKSwl via @FT +06/15/2018,Economists,@omzidar,"Harvard Rated Asian-American Applicants Lower on Personality Traits, Lawsuit Says https://t.co/GopD1Lgor2" +06/12/2018,Economists,@omzidar,RT @crampell: Very sorry to hear this. I wish him a swift recovery and hope his family is doing OK. https://t.co/fxxBrdH4Y9 +06/10/2018,Economists,@omzidar,https://t.co/lTWFcwrmyE +06/08/2018,Economists,@omzidar,RT @just_shelter: We’re hiring! https://t.co/3Rx5bTnqgm +06/08/2018,Economists,@omzidar,"RT @seema_econ: Super helpful curated list of tips for economists, by Masa Kudamatsu. Links to advice on applying for a PhD, making present…" +06/07/2018,Economists,@omzidar,Apple and Google’s hometowns still considering employer taxes https://t.co/4E5VFON93w +06/07/2018,Economists,@omzidar,"RT @ProfNoto: Great article in The Upshot on the correspondence by David Himmelstein, Steffie Woolhandler, & @SenWarren about my recent NEJ…" +06/07/2018,Economists,@omzidar,"@mattkahn1966 Not sure what you mean about this being too topical for its own good. Seems like a valuable, relevant, and timely contribution" +06/06/2018,Economists,@omzidar,"RT @IlliniBizDean: @omzidar @WSJ Too bad nobody saw this coming* + +* with exception of every economist, actuary, policy analyst, and anyone…" +06/06/2018,Economists,@omzidar,"Social Security’s cost will exceed its income this year, forcing the program to dip into its trust fund to cover be… https://t.co/Np7Ksu9z4O" +06/05/2018,Economists,@omzidar,RT @paulgp: Research Assistant position for graduating undergrads at Yale SOM: https://t.co/qN83bLoeqY https://t.co/e9Bma2fzRC +06/04/2018,Economists,@omzidar,RT @IlliniBizDean: The state of Illinois has been gradually but steadily reducing support for higher education. If one adjusts for inflatio… +06/03/2018,Economists,@omzidar,This headline is a bit misleading — 100k people moving out of 15 million means less than one percent are moving — b… https://t.co/iuisRrw0tH +06/01/2018,Economists,@omzidar,"RT @johnjhorton: UC Berkeley average salaries by professor rank & department (ordered by full professor) +Data: https://t.co/z9ycQGmf9V +Code…" +05/31/2018,Economists,@omzidar,RT @DinaPomeranz: 'likelihood of gaining tenure at a top economics dept is about 26% higher for faculty with an A-surname than with a Z-sur… +05/29/2018,Economists,@omzidar,https://t.co/LpPH1DbyoR +05/28/2018,Economists,@omzidar,RT @pogourinchas: Congratulations @gabriel_zucman ! Wonderful news. https://t.co/TsKg7XwQS6 +05/26/2018,Economists,@omzidar,@stephkestelman @TDeryugina Asana works pretty well +05/24/2018,Economists,@omzidar,"RT @SethDZimmerman: Self promotion alert: I have a paper that is exactly about this: https://t.co/B6a6eH8QBX + https://t.co/5h8FyRVlXm via @…" +05/24/2018,Economists,@omzidar,RT @jasonfurman: A lot of people trying to infer the effects of the tax cut from the macro data. Is much harder than trying to infer if a c… +05/24/2018,Economists,@omzidar,RT @BOiPRINCETON: Congrats to Stephen Redding and @PrincetonEcon. Professor Redding and coauthors have won the Econometric Society’s 2018 F… +05/23/2018,Economists,@omzidar,"RT @SethHanlon: His full presentation is here: https://t.co/1hycM2qhkW + +Also, this event is being webcast live, and goes until 12:30. Tune…" +05/23/2018,Economists,@omzidar,RT @ProfJAParker: Watch “NBER MACRO 2018 GOPINATH INTERVIEW Sequence.05A” on #Vimeo https://t.co/xZ1E0OzXAf +05/21/2018,Economists,@omzidar,RT @nealemahoney: Thrilled that the brilliant @m_sendhil will be joining the faculty at @ChicagoBooth. Welcome to Chicago! +05/19/2018,Economists,@omzidar,"RT @JustinWolfers: 2018 has been deadlier for schoolchildren than service members. +https://t.co/fdYbYsSgru https://t.co/JWmDImvpEa" +05/18/2018,Economists,@omzidar,RT @crampell: missed this last week https://t.co/oHJPOXqtow +05/16/2018,Economists,@omzidar,New Jersey Emerges as a Liberal Bulwark Under Murphy https://t.co/asWDdhBX48 +05/15/2018,Economists,@omzidar,"RT @gabriel_zucman: Life expectancy in the United States vs. peer nations. +https://t.co/ktKgH3krBv https://t.co/45y0eQ3ZoC" +05/15/2018,Economists,@omzidar,"RT @DinaPomeranz: I'm going to live tweet @m_sendhil's talk on ""Economic Applications of Machine Learning"" at @econ_uzh today https://t.co/…" +05/15/2018,Economists,@omzidar,"Seattle Scales Back Tax in Face of Amazon’s Revolt, but Tensions Linger https://t.co/TJhVJlB9Cg" +05/13/2018,Economists,@omzidar,https://t.co/LdiF9SRo41 +05/13/2018,Economists,@omzidar,@bencasselman we have a new version of our paper that provides a framework for evaluating the effects of these type… https://t.co/5xlzl5ORu5 +05/13/2018,Economists,@omzidar,https://t.co/j8ldq0JEYF +05/12/2018,Economists,@omzidar,"RT @bencasselman: The federal tax overhaul had an unintended effect: giving many states more tax revenue. Should they spend it, or give it…" +05/11/2018,Economists,@omzidar,Michigan’s GOP has a plan to shield some people from Medicaid work requirements. They’re overwhelmingly white. https://t.co/65cffsMT6a +05/10/2018,Economists,@omzidar,"RT @RichardRubinDC: Connecticut passes its SALT workaround. +Next move: Treasury? https://t.co/JnRjAmnlLR" +05/09/2018,Economists,@omzidar,RT @JustinWolfers: U.S. states renamed for countries with similar GDP's. https://t.co/BPnTnjA6cl +05/06/2018,Economists,@omzidar,"RT @Alan_Krueger: Congratulations to my colleague, coauthor, role model, and friend Orley Ashenfelter on this well-deserved honor. https:/…" +05/05/2018,Economists,@omzidar,https://t.co/4ZKCZqreTU +05/05/2018,Economists,@omzidar,Teacher Pay Is So Low in Some U.S. School Districts That They’re Recruiting Overseas via @NYTimes https://t.co/xVM1SQbh6t +05/04/2018,Economists,@omzidar,"RT @mattkahn1966: Vancouver school tax protesters turn their anger on UBC housing prof, who’s teaching ‘hate’ https://t.co/acEWpzv5B1" +05/03/2018,Economists,@omzidar,"RT @tdisbell: @RichardRubinDC @WSJ One of the technicalities you are likely referencing parenthetically is Section 15(a), which imposes a b…" +05/03/2018,Economists,@omzidar,RT @ProfJAParker: The NBER homepage currently features the lunch panel we put together on tax reform at this year's NBER Macro Annual https… +05/03/2018,Economists,@omzidar,RT @richpriz: High income partners most likely benefit from entity conversion to C-corp status. I expect we will see more of this in the fu… +05/03/2018,Economists,@omzidar,The recent tax cuts are spurring KKR to ditch its partnership structure and become a corporation https://t.co/BSL5QP5qRV via @WSJ +05/01/2018,Economists,@omzidar,@ryanbedwards @jim_savage_ @OwenOzier @BerkOzler12 That’s funny. @OwenOzier was my TA at Berkeley in grad school (f… https://t.co/JZxZyTslnr +05/01/2018,Economists,@omzidar,"RT @DSraer: Carl Shapiro’s take on this: https://t.co/dgq6KTKjjW + +Small magnitudes, unconvincing evidence (national vs local market shares)…" +04/30/2018,Economists,@omzidar,RT @SmartIncentives: Details of Philadelphia's cash offer to Amazon in HQ2 pitch ordered to be shared https://t.co/HjVYReHTYl via @phillydo… +04/27/2018,Economists,@omzidar,"RT @RyanMKellogg: ""...many investors in publicly traded oil and gas producers are pressing executives not to sow the seeds of another price…" +04/27/2018,Economists,@omzidar,https://t.co/q3rCQOmI9D +04/26/2018,Economists,@omzidar,"RT @gabriel_zucman: 15 companies report tax savings of $6.2 Billion in first three months of 2018, after Trump tax cut https://t.co/EwKMFCX…" +04/26/2018,Economists,@omzidar,@amandayagan We have a lot of state tax rules and safety net rules as well. Happy to chat more +04/25/2018,Economists,@omzidar,"RT @sdellavi: Fact 3 on Top Journals: Given facts 1 and 2, acceptance rates in top journals keep declining, are at 2.5% for QJE, 3% for RES…" +04/25/2018,Economists,@omzidar,"Tax Reform, Round One - Harvard Magazine https://t.co/g8yzPNfVIM via @AddThis" +04/24/2018,Economists,@omzidar,RT @TimBartik: Op-ed by @NateMJensen in @nytimes on the need for transparency in incentives. I agree this is needed first reform if we are… +04/24/2018,Economists,@omzidar,RT @KentSmetters: Panel at 33rd Annual Conference on Macroeconomics Weighs Costs and Impacts of the 2017 Tax Legislation. Watch the video a… +04/23/2018,Economists,@omzidar,"RT @gabriel_zucman: Google's global effective corporate tax rate in Q1 2018, post-Trump reform: 11% +https://t.co/9jcxojriH6 https://t.co/fu…" +04/23/2018,Economists,@omzidar,https://t.co/U7QKpBY2DN +04/23/2018,Economists,@omzidar,https://t.co/VkbfdM81HF +04/21/2018,Economists,@omzidar,"RT @IvanWerning: Fascinating experiment by Levitt-List-Fryer setting up a pre-school in south-side Chicago, then setting up a program for p…" +04/20/2018,Economists,@omzidar,"RT @femme_economics: Hilarious response to peer review: ""I see no reason to address the -- in any case erroneous -- comments of your anonym…" +04/19/2018,Economists,@omzidar,"Here's a video of Chetty's Tanner lecture at Princeton on ""Neighborhood Effects: Childhood Environment and Upward M… https://t.co/qeWxadaZVq" +04/19/2018,Economists,@omzidar,"RT @BeckerFriedman: In op-ed, @HarrisPolicy's @nomadj1s argues for simplifying the process of paying taxes via @WashingtonPost +https://t.co…" +04/18/2018,Economists,@omzidar,"RT @SteveCicala: Yesterday's IT failure at IRS was completely foreseen by the people running the organization, desperate for more resources…" +04/17/2018,Economists,@omzidar,"RT @RichardRubinDC: Koskinen says IRS system failures were a matter of when, not whether: “Each year, there have been more glitches that ge…" +04/17/2018,Economists,@omzidar,"RT @RichardRubinDC: While we wait for the IRS to start collecting money again, here's former IRS commissioner John Koskinen, from 2015, on…" +04/17/2018,Economists,@omzidar,IRS electronic filing system breaks down hours before midnight deadline https://t.co/AlXIOeupBp +04/16/2018,Economists,@omzidar,https://t.co/DDVg4RC188 +04/15/2018,Economists,@omzidar,https://t.co/QmuQYl7rPM +04/15/2018,Economists,@omzidar,"RT @albouy: Public services decline while taxes rise, especially in low-growth states, from a legacy of bankruptcy-inducing public pension…" +04/15/2018,Economists,@omzidar,https://t.co/rfBf78lf7T +04/14/2018,Economists,@omzidar,@glenweyl @rodrikdani @PrincetonUPress “The wealthy were rewarded for doing nothing. Poor people who needed land ha… https://t.co/oZZG8SUecD +04/14/2018,Economists,@omzidar,@glenweyl @rodrikdani @PrincetonUPress This is very interesting. I love the Dracula reference — I look forward to r… https://t.co/Hp2AyModEu +04/14/2018,Economists,@omzidar,RT @ProfNoto: I left this summer camp with a research idea that would later turn into my job market paper (inspired by Kevin Murphy's mini-… +04/12/2018,Economists,@omzidar,RT @LAOEconTax: An overview of California’s tax system ⬇️#CATaxes https://t.co/05TLadgPor +04/11/2018,Economists,@omzidar,"RT @MarkLJWright: April 26th - State and local government debt: lessons from the study of national debt +https://t.co/BqiLz8htlz" +04/11/2018,Economists,@omzidar,‘It is safe to say it is one of the largest tax bills on earned income in history.’ https://t.co/f1YxRyOqpT via @WSJ +04/11/2018,Economists,@omzidar,RT @J_C_Suarez: Excited to be visiting Columbia Econ for the day. I’ll be presenting my new paper “Unintended Consequences of Eliminating T… +04/10/2018,Economists,@omzidar,"RT @betsylevyp: I'm hiring! Please retweet to help me find a new lab manager--basically, a head research assistant. You're a great fit if y…" +04/10/2018,Economists,@omzidar,"RT @BeckerFriedman: Apply now! Applications due April 15 for the 2018 Price Theory Summer Camp, organized by @uchi_economics' Steve Levitt…" +04/09/2018,Economists,@omzidar,"RT @betsylevyp: @R_Thaler @UChicago Also, the best scholarly exchange I witnessed this year was Jim heckman, who responded in a 15 minute t…" +04/09/2018,Economists,@omzidar,"RT @nealemahoney: More making fun of Jesse, without a doubt. https://t.co/Tt2Hibv4o6" +04/07/2018,Economists,@omzidar,RT @nealemahoney: Powerful data-journalism on eviction by @emilymbadger and @qdbui. I've been studying financial distress for over a decade… +04/07/2018,Economists,@omzidar,RT @johnvanreenen: Important long term effects of job search assistance https://t.co/wLA1Kz5DKn Evidence from Nevada @nberpubs +04/07/2018,Economists,@omzidar,https://t.co/8CPSaVxADB +04/05/2018,Economists,@omzidar,https://t.co/pNp4uwRgvA +04/04/2018,Economists,@omzidar,"RT @profsufi: Here is effect on economic expectations through end of 2017. No sign of abatement whatsoever. Repubs ecstatic about economy,…" +04/03/2018,Economists,@omzidar,The tax bill is law. Now for the tax games. https://t.co/McG4CLtWjG via @WSJ +04/03/2018,Economists,@omzidar,"RT @greenhousenyt: ""Some states, like Kansas and Oklahoma, have gone in for radical tax cuts, and ended up savaging their education systems…" +04/02/2018,Economists,@omzidar,"RT @BarbaraBiasi: @leah_boustan using evidence from the Age of Mass Migration to draw lessons on current immigration policy, during @Prince…" +04/02/2018,Economists,@omzidar,"Fed up with school spending cuts, Oklahoma teachers walk out https://t.co/dcvkBT6HJ0" +04/02/2018,Economists,@omzidar,RT @SethDZimmerman: It will be interesting to see whether this is a one-time aberration or the beginning of a shift in the balance between… +04/02/2018,Economists,@omzidar,"RT @SethDZimmerman: ""To pay for the raise, politicians from both parties agreed to increase production taxes on oil and gas ... It was the…" +04/02/2018,Economists,@omzidar,Could a tax incentive pry empty nesters from their oversize homes? https://t.co/zdZyhMkQrZ via @sfchronicle +04/01/2018,Economists,@omzidar,"RT @janetnovack: As corporate-government tax pacts falter, Coca-Cola challenges huge U.S. bill https://t.co/cWXGtxT3fR" +03/31/2018,Economists,@omzidar,@paulgp Hard to read the labels. Am curious where Dartmouth falls +03/31/2018,Economists,@omzidar,"RT @nomadj1s: @mattyglesias Some evidence on indirect effects on research funding and output: + +https://t.co/ESDLXu9NQY" +03/31/2018,Economists,@omzidar,"RT @dynarski: Piketty on inequality and politics + +#pikettyforum https://t.co/oiCgjGpZtL" +03/30/2018,Economists,@omzidar,RT @DanaGoldstein: Here is a graphic circulating on Facebook among Oklahoma teachers as they prepare to walk out on Monday. The bill that p… +03/30/2018,Economists,@omzidar,The IRS is auditing a lot fewer Americans https://t.co/epLPgHfoUE via @WSJ +03/29/2018,Economists,@omzidar,@J_C_Suarez @real_eric_ohrn What happens? +03/29/2018,Economists,@omzidar,RT @J_C_Suarez: Please note @real_eric_ohrn finds a tax semi-elasticity of investment of 4.7. Just noting this so you don’t freak out when… +03/29/2018,Economists,@omzidar,"Trump Attacks Amazon, Saying It Does Not Pay Enough Taxes https://t.co/lsP6Snx9zH" +03/29/2018,Economists,@omzidar,"RT @RichardRubinDC: The IRS is auditing a lot fewer Americans. + +https://t.co/AZU5S8jIin via @Saunderswsj" +03/28/2018,Economists,@omzidar,"RT @TradeDiversion: ""I realize that each equation cuts the fraction of the audience listening by half..."" - @heckmanequation starting his d…" +03/28/2018,Economists,@omzidar,https://t.co/eISUp6AYKs +03/28/2018,Economists,@omzidar,RT @just_shelter: The fire marshal is turning people away at Raj Chetty’s Tanner Lecture @Princeton. Huge crowd! https://t.co/o7x707Lf74 +03/27/2018,Economists,@omzidar,RT @J_C_Suarez: Must read tweetstorm and report by @TimBartik on who pays for local development incentives. https://t.co/DdMXiRqWCn +03/27/2018,Economists,@omzidar,RT @AlanMCole: ! ! ! @ScottElliotG https://t.co/kmrsBJnq8K +03/27/2018,Economists,@omzidar,"RT @TimBartik: My report on the benefits and costs of different economic development incentives for both overall local per capita-income, a…" +03/27/2018,Economists,@omzidar,RT @AlexBartik: Really cool new data source from @uscensusbureau (procured by @footeball45 and others) with linked education and earnings d… +03/27/2018,Economists,@omzidar,"RT @footeball45: If you love new data and are interested in earnings and employment outcomes for college graduates, @uscensusbureau has jus…" +03/26/2018,Economists,@omzidar,RT @J_C_Suarez: If only someone had Chinese tax return data and was evaluating the effects of “high quality” growth and how VAT affects inv… +03/26/2018,Economists,@omzidar,https://t.co/or42Z4rJKE +03/24/2018,Economists,@omzidar,"RT @seema_econ: @autoregress Marvel: ""Infinity War is the most ambitious crossover event in history."" + +@r_thaler: https://t.co/hfJu21mTSv" +03/22/2018,Economists,@omzidar,RT @FHogroian_COST: Georgia passes legislation to provide deduction of GILTI from the state tax base https://t.co/kBsxBaK0Pd +03/22/2018,Economists,@omzidar,@paulgp Where did you get that data out of curiosity +03/21/2018,Economists,@omzidar,https://t.co/Spwc9klVkW +03/21/2018,Economists,@omzidar,RT @lenburman: Here’s a CBO report on indexing capital gains Larry Ozanne and I wrote in 1990. The argument for indexing is even weaker now… +03/21/2018,Economists,@omzidar,"RT @lenburman: Based on 2012 data, capital gains indexing would make the average top effective tax rate on long-term capital gains about 14…" +03/20/2018,Economists,@omzidar,RT @BeckerFriedman: 2018 Price Theory Summer Camp now accepting applications! https://t.co/t8XVplc6rs https://t.co/ScyuQDObIj +03/20/2018,Economists,@omzidar,"RT @sarahkliff: ""https://t.co/NEEC3Qla2G: You can turn any social gathering into a debate about tax policy.” 🤓 + +https://t.co/nSkMMYikRD" +03/20/2018,Economists,@omzidar,@bkavoussi You must not be on the east coast today +03/20/2018,Economists,@omzidar,"RT @ProfMartyWest: New in @EducationNext: @JoshuaSGoodman, Julia Melkers, and Amanda Pallais show how @GeorgiaTech's online master's degree…" +03/20/2018,Economists,@omzidar,"RT @paulgp: 🚨New Working Paper Alert 🚨 + +Bartik Instruments: What, When, Why and How + +With Isaac Sorkin and Henry Swift + +https://t.co/BFufH3…" +03/19/2018,Economists,@omzidar,"@Noahpinion @SethDZimmerman's ""Making the One Percent: The Role of Elite Universities and Elite Peers"" is worth rea… https://t.co/Icw1NvNGFD" +03/19/2018,Economists,@omzidar,‘That’s the game’: Tax planners look for loopholes amid uncertainty over new law https://t.co/jLiLI9Xnne +03/19/2018,Economists,@omzidar,Europe’s Planned Digital Tax Heightens Tensions With U.S. https://t.co/jcNFIXPUzx +03/19/2018,Economists,@omzidar,"RT @ProfDavidDeming: On any given day, 21% of black men born to the lowest-income families are incarcerated. As an otherwise proud American…" +03/19/2018,Economists,@omzidar,https://t.co/uVLqmS5hiY +03/19/2018,Economists,@omzidar,RT @John_N_Friedman: The black-white gap in intergenerational mobility is driven entirely by a large gap for men. https://t.co/veRptKtXHO +03/19/2018,Economists,@omzidar,RT @John_N_Friedman: Amazing new work out this morning by my Equality of Opportunity Project colleagues Raj Chetty and @nhendren82 on inter… +03/19/2018,Economists,@omzidar,"RT @OlegUrminsky: I used to do political polling/targeting, and I have some thoughts on Cambridge Analytica: https://t.co/FuRnMikns5 + +I…" +03/17/2018,Economists,@omzidar,"RT @nomadj1s: For those gushing over @umbc’s epic upset, get familiar with their amazing president Freeman Hrabowski + +https://t.co/G2CzNoFD…" +03/16/2018,Economists,@omzidar,RT @paulgp: Big personal news for me: I’ll be joining the Yale School of Management finance group this summer as an assistant professor! +03/16/2018,Economists,@omzidar,"RT @InequalityHKS: BIG CONGRATS to @S_Stantcheva, newly-tenured Professor of Economics @HarvardEcon !! https://t.co/2rX9QRLi22" +03/16/2018,Economists,@omzidar,Not My Job: We Quiz Economist Austan Goolsbee On Home Economics https://t.co/r0ZLdbFylt +03/15/2018,Economists,@omzidar,"New York City Is Failing Homeless Students, Reports Say https://t.co/g4oq94HWQF" +03/15/2018,Economists,@omzidar,RT @JamesKvaal: Adam Looney and Nick Turner with the outrageous truth about our criminal justice system - in some neighborhoods nearly 1 in… +03/15/2018,Economists,@omzidar,"RT @jenniferdoleac: Cool new paper by Adam Looney and Nicholas Turner links data on former prisoners with IRS data: +https://t.co/aY2CjvfTP…" +03/15/2018,Economists,@omzidar,A downside for cities trying to woo Amazon: local companies may want the same deal https://t.co/AM5X7yt6LZ via @WSJ +03/14/2018,Economists,@omzidar,"RT @ezraklein: Most chilling stat I've read today: ""More than 30 percent of men ages 30 to 34 born to the poorest families were either in p…" +03/14/2018,Economists,@omzidar,RT @convexify: Got an emergency call from @NorthwesternU about someone with a gun on campus... Stay safe everyone. :( +03/13/2018,Economists,@omzidar,"RT @TimBartik: Important new paper by Austin/Glaeser/@LHSummers endorses SOME place-based policies. In my view, 3 key points: https://t.co/…" +03/13/2018,Economists,@omzidar,RT @BeckerFriedman: .@chicagobooth's Jessica Jeffers argues noncompete agreements boost investment but stifle start-ups via @chicagoboothre… +03/12/2018,Economists,@omzidar,https://t.co/M1QAcl8hvx +03/11/2018,Economists,@omzidar,https://t.co/gXhvju4xPd +03/08/2018,Economists,@omzidar,https://t.co/VXzoO6Kgma +03/08/2018,Economists,@omzidar,Saving the heartland: Place-based policies in 21st Century America https://t.co/pb2ovP4vzl via @BrookingsInst +03/08/2018,Economists,@omzidar,RT @jasonfurman: Robert Barro and I teamed up to assess the macroeconomic impact of the 2017 tax law. Here is the main table and also the r… +03/08/2018,Economists,@omzidar,"RT @dartmouth: “@TrebAllen is one of the best economists of his generation.”—Christopher Snyder, economics department chair. Learn more abo…" +03/07/2018,Economists,@omzidar,RT @AlexBartik: Moving to the top of the to-read list. https://t.co/Re7dpQUkjM +03/07/2018,Economists,@omzidar,RT @TradeDiversion: @omzidar @WSJ Seems similar to the story from https://t.co/IGgpn7G2bh a few months ago. The spying theory reflects the… +03/07/2018,Economists,@omzidar,That eerily relevant ad in your Facebook news feed? It’s a result of all the data you’ve given Facebook and adverti… https://t.co/Hmk8cqrqvS +03/07/2018,Economists,@omzidar,"RT @ProfNoto: Here is the final version of Brookings paper on the decline in US LFP by @Alan_Krueger, including detailed comments at the en…" +03/06/2018,Economists,@omzidar,RT @joshrauh: CA has single-sales apportionment but it also has a throwback rule. Estimates from my forthcoming paper with Xavier Giroud @J… +03/06/2018,Economists,@omzidar,"RT @ProfNoto: [ Thanks to MIT's super awesome ""OpenCourseWare"" (@MITOCW), you can view the Syllabus from the semester when I took the class…" +03/05/2018,Economists,@omzidar,"RT @RichardRubinDC: Federal corporate taxes: 🔽 +State corporate taxes: 🔼 +State and business responses: ❓❔❓❔ + +https://t.co/sUXacB54rz via @WSJ" +03/05/2018,Economists,@omzidar,Prisoners of the American Dream by Stefanie Stantcheva @ProSyn https://t.co/qrvIeuPeIZ +03/05/2018,Economists,@omzidar,RT @Austan_Goolsbee: Ben gave me his Fed governor’s chair when I left DC. I keep it in my office and let visitors and ph.d job candidates s… +03/04/2018,Economists,@omzidar,"RT @JustinWolfers: Milton Friedman on steel tariffs. +(HT @usher_andrew) https://t.co/lUph5vTW1A" +03/03/2018,Economists,@omzidar,Trump pushes Republicans to oppose crucial New York-New Jersey tunnel project https://t.co/HthOs6GYHS +03/03/2018,Economists,@omzidar,https://t.co/K7ceotzZOF +02/28/2018,Economists,@omzidar,"RT @DinaPomeranz: Today we had a meeting with PhD students about stress management. Here are some of the things that came up. + +What else…" +02/28/2018,Economists,@omzidar,https://t.co/0m5FXAjXFD +02/28/2018,Economists,@omzidar,"RT @steventberry: @florianederer A bunch of possible papers suggested at the end: + +""More work is, of course, needed to know their ultimate…" +02/28/2018,Economists,@omzidar,"RT @jenniferdoleac: This is part of the CJARS project, run by @Econ_Mike and Keith Finlay. I’m thrilled too! +https://t.co/XjqeDICiKs https:…" +02/27/2018,Economists,@omzidar,https://t.co/6xneTeySaw +02/27/2018,Economists,@omzidar,https://t.co/M4cfYKF28g +07/01/2018,Economists,@Noahpinion,"@asymptosis So, you think the average Chinese person would rather flee the country now than before 2000? + +Rethink t… https://t.co/UVadpHSxqJ" +07/01/2018,Economists,@Noahpinion,"@tailcalled The motte is the indefensible position, the bailey is the defensible but more modest position, no?" +07/01/2018,Economists,@Noahpinion,"@_jameshatfield_ I liked your first few Metallica albums but come on, man, this is silly" +07/01/2018,Economists,@Noahpinion,@_jameshatfield_ Good. +07/01/2018,Economists,@Noahpinion,@asymptosis So...how about that wave of economic refugees from China? +07/01/2018,Economists,@Noahpinion,@PapiiBrauii @ernietedeschi @ModeledBehavior I blame foreign intervention a HELL of a lot more than any free trade agreement!!! +07/01/2018,Economists,@Noahpinion,@foxyforecaster *any +07/01/2018,Economists,@Noahpinion,@danielharan @MikeW_CA https://t.co/KYAu5CePYg <-- yep +07/01/2018,Economists,@Noahpinion,@jasonvwells Welcome... +07/01/2018,Economists,@Noahpinion,How many people know that TPP suspended most of its IP provisions after Trump exited the deal? https://t.co/KYAu5CePYg +07/01/2018,Economists,@Noahpinion,@ernietedeschi @ModeledBehavior exactly +07/01/2018,Economists,@Noahpinion,"I hope ""end profit"" means stronger antitrust enforcement, leading to the zero-profit condition, rather than nationalization of industry..." +07/01/2018,Economists,@Noahpinion,"I hope that DSA folks see the harm inflicted on American workers by Trump's disastrous Trade War, and realize that… https://t.co/E5Xn2cIRUo" +07/01/2018,Economists,@Noahpinion,"@jasonvwells Yes, BUT, TPP mainly consists of trade between countries that are already rich, so it will not do this." +07/01/2018,Economists,@Noahpinion,@wheelguy123 I feel like the terrible results of Trump's Trade War are going to make a lot of people rethink the so… https://t.co/1pmNp7T7VO +07/01/2018,Economists,@Noahpinion,@MikeBenchCapon Probably. +07/01/2018,Economists,@Noahpinion,Heh yep this about says it https://t.co/p8JU6UgFBW +07/01/2018,Economists,@Noahpinion,@MikeW_CA ridiculous +07/01/2018,Economists,@Noahpinion,@ConvivialCynic It's not bad it's good +07/01/2018,Economists,@Noahpinion,@wheelguy123 I take it you're a fan of Trump's Trade War? +07/01/2018,Economists,@Noahpinion,"@nw3 This is NOT ""what we know about trade"". No. Not at all. This is not even close to an accurate characterization… https://t.co/OXpJbUNrTj" +07/01/2018,Economists,@Noahpinion,@matthoboken Yep +07/01/2018,Economists,@Noahpinion,@nw3 Do you actually know that? I don't think so... +07/01/2018,Economists,@Noahpinion,@wheelguy123 nah no +07/01/2018,Economists,@Noahpinion,@wheelguy123 It was unpopular but it's good policy +07/01/2018,Economists,@Noahpinion,@Offbrandlabour Nah they got changed +07/01/2018,Economists,@Noahpinion,@nw3 A) no B) why would anyone do that C) TPP wouldn't create unemployed steelworkers D) geographic mobility is way… https://t.co/86ZDNqAAcK +07/01/2018,Economists,@Noahpinion,@ReiMurasame Heh. I certainly hope so. +07/01/2018,Economists,@Noahpinion,@drmitchell85 I have some news... +07/01/2018,Economists,@Noahpinion,"RT @TheAtlantic: Photos from the nationwide “Families Belong Together” marches, from cities big and small, via @TheAtlPhoto: https://t.co/0…" +07/01/2018,Economists,@Noahpinion,"Note: TPP is good, and we should join it. It will not create refugee waves. https://t.co/VF4DzTct9p" +07/01/2018,Economists,@Noahpinion,"Venezuela is the motte, Denmark is the bailey? https://t.co/Gxn9EjjxfE" +07/01/2018,Economists,@Noahpinion,"RT @ne0liberal: I just had a wonderful conversation (and interviewed) @willwilkinson. I have a lot to think about after it, but one thing I…" +07/01/2018,Economists,@Noahpinion,RT @haroldpollack: Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Take it… +07/01/2018,Economists,@Noahpinion,RT @ne0liberal: https://t.co/QXKUnueVYe +07/01/2018,Economists,@Noahpinion,"""The Space Between Us"" demonstrates that racial threat is real. But what's the solution? https://t.co/dpc5ZCTff3" +07/01/2018,Economists,@Noahpinion,@clark_packard yeah I think so +07/01/2018,Economists,@Noahpinion,"@staphwriter Oh no way, German cards are much less reliable." +07/01/2018,Economists,@Noahpinion,@BlogMinor The Bolsheviks' (and Stalin's) main strength was holding the country together and fighting off attackers… https://t.co/xLWMThutQH +07/01/2018,Economists,@Noahpinion,"I know American cars have improved in quality, but Japanese cars are still the global standard. What are these pare… https://t.co/bives42W1h" +07/01/2018,Economists,@Noahpinion,@AskWrestlingGuy @greggentry1 @SFFFan42 Bye +07/01/2018,Economists,@Noahpinion,"@BlogMinor But it stalled. It was badly done. I think with German investment, Russia could have industrialized much… https://t.co/wMBl0WqUST" +07/01/2018,Economists,@Noahpinion,"@BlogMinor Maybe. I think it could have. The challenge was beating the White armies, though." +07/01/2018,Economists,@Noahpinion,@BlogMinor Point taken... +07/01/2018,Economists,@Noahpinion,@BlogMinor Not a Menshevik fan? +07/01/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 I can't explain things to people who turn everything they hear into word salad. +07/01/2018,Economists,@Noahpinion,@quinceedward3 yep +07/01/2018,Economists,@Noahpinion,"Because I believe in its thesis so strongly, I tried to write as critical a review as I could of @RyanDEnos's ""The… https://t.co/RpK5xelDX4" +07/01/2018,Economists,@Noahpinion,"@SheckyX No, not even close. Not even in the ballpark." +07/01/2018,Economists,@Noahpinion,"@SheckyX Perhaps you could elaborate? What do you mean, Shecky?" +07/01/2018,Economists,@Noahpinion,@SheckyX I have. +07/01/2018,Economists,@Noahpinion,@mackbmaine @KrangTNelson What about results? If we fuck people over and never face much consequences (e.g. Guatema… https://t.co/XBebjFa9Ys +07/01/2018,Economists,@Noahpinion,RT @DonCheadle: vote in numbers too big to manipulate. vote in numbers too big to manipulate. vote in numbers too big to manipulate. vote i… +07/01/2018,Economists,@Noahpinion,"RT @BennSteil: ""Trade wars are good, and easy to win""™ https://t.co/wocBE2Raa9" +07/01/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Yeah +07/01/2018,Economists,@Noahpinion,"@mackbmaine @KrangTNelson Yeah, Vietnam was our biggest fuckup for sure. Backing the dictators was a pretty bad thi… https://t.co/GmxgRPw4C3" +06/30/2018,Economists,@Noahpinion,@mackbmaine @KrangTNelson Did the later tweets in the thread make it more clear? +06/30/2018,Economists,@Noahpinion,RT @sooner930: This is a smart piece from @EricaGrieder. Part of me suspects that we will eventually come to view this period in history as… +06/30/2018,Economists,@Noahpinion,RT @CityLab: Millennials report themselves to be much happier in cities than people from older generations. https://t.co/MpIfQcOlra +06/30/2018,Economists,@Noahpinion,"@chrisedmond @mattyglesias I think he's just making fun of the banality of the term, which seems to minimize the im… https://t.co/oupRlx4VcA" +06/30/2018,Economists,@Noahpinion,"@joe_super0 Hmm...to that I'd say: +1) If Japanese imperialism was a response to Western imperialism, it was a poor… https://t.co/p7ZE3FgPW3" +06/30/2018,Economists,@Noahpinion,@chrisedmond @mattyglesias We know +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 Not a Keynesian, I see..." +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell buahahaha + +but also + +sorry..." +06/30/2018,Economists,@Noahpinion,@virgiltexas virgiltexas +06/30/2018,Economists,@Noahpinion,@globalistgraham accurate +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Well, 2000 nukes and a giant lake of oil and natural gas also helps!" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell But Russia has more...not that that matters if you blow up everyone, of course..." +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell On the eve of WW2 we had 6 aircraft carriers to Japan's 10. Over the cour… https://t.co/I8mIkV8vVX +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Agreed. And much of our economic ""power"" comes from selling highly valued… https://t.co/XfnWnLyggZ" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Military and economic. China's GDP is bigger than ours (by PPP numbers, a… https://t.co/ou4gkiYYgm" +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell Sure. But it was a big net minus for us. I think it was inevitable that w… https://t.co/d75bFZ7wKQ +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell Maybe. I think you might be overestimating us. I think Russia + China is… https://t.co/C1LwotZrON +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Well, with Europe and a bunch of East Asian countries solidly on our side… https://t.co/ugiCGpDQBf" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell And Iraq basically ended our reign as the world's hyperpower, weakened th… https://t.co/cGDEnUaCgC" +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell Really? I think both did. If the USSR hadn't made its own similar blunder… https://t.co/9DjaVUUSAf +06/30/2018,Economists,@Noahpinion,RT @JohnnyMcNulty: help my town has been captured by MS-14 it's one stronger than MS-13 and they are demanding Donald Trump send his strong… +06/30/2018,Economists,@Noahpinion,@WuTangCannabis Not a lot you +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Whereas when we do bad stuff (Vietnam, Iraq, electing Trump), it makes us… https://t.co/Qzg2sVuSKt" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell I mean, if there were anything that were neutral, maybe. But I think that… https://t.co/JiDjMgcCBu" +06/30/2018,Economists,@Noahpinion,"Real Business Cycle theory cannot fail, it can only be failed... https://t.co/r3hhdMgheu" +06/30/2018,Economists,@Noahpinion,@WuTangCannabis Heya +06/30/2018,Economists,@Noahpinion,"@DocHeatherB Hmm, yeah I can definitely see that." +06/30/2018,Economists,@Noahpinion,"@corrotta @negrosubversive @anancientwell I guess I can see why people interpreted ""stupid"" to mean ""morally bad"" i… https://t.co/LCBkWh30WI" +06/30/2018,Economists,@Noahpinion,"@ChrisSturr @swarajkumar224 I mean, communism got really unpopular, and we got popular. + +Until Iraq, of course." +06/30/2018,Economists,@Noahpinion,"@johnthejack @Frances_Coppola Oh no, because they'e not shouting into the void, they're shouting at my other readers." +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 But much smaller as a % of population. + +(And UK lost MANY more in WW1!!)" +06/30/2018,Economists,@Noahpinion,"@Frances_Coppola Yes. For me, it's not even wanting them out of *my* life, so much as wanting them out of my feed..." +06/30/2018,Economists,@Noahpinion,@MichaelFoster26 DON'T THINK I DON'T REALIZE THAT :D +06/30/2018,Economists,@Noahpinion,"@Frances_Coppola Not sadist, OCD! I imagine many people like being blocked...it makes them feel as if they won an a… https://t.co/uK8qiduQ9X" +06/30/2018,Economists,@Noahpinion,@Frances_Coppola Oh God yes. +06/30/2018,Economists,@Noahpinion,"@anancientwell @negrosubversive @corrotta Ugh. That's like saying ""I want to prove that the first time I mashed my… https://t.co/0jXmKKZGOo" +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta No! Where did you read about that?? +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta We should have been permanently chastened by the failure in Vietnam. But we weren't, and… https://t.co/7sNUInZk6Y" +06/30/2018,Economists,@Noahpinion,"@ChrisSturr @swarajkumar224 Until the late 20th century, we were imperialist but much *less* imperialist than our r… https://t.co/J5ya532OmD" +06/30/2018,Economists,@Noahpinion,@NeoFunkanomics Pretty similar. Vietnam was our biggest blunder of the 21st century. But the USSR was doing even du… https://t.co/yzd3yluzcW +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta We were colonialist in the early 20th century, but the other powerful countries were muc… https://t.co/zHnmDbsev5" +06/30/2018,Economists,@Noahpinion,"Now, you might think national power is a stupid or bad goal, but it seems to me that the way in which the U.S. seem… https://t.co/BeO16VJmGS" +06/30/2018,Economists,@Noahpinion,"@CorbettMatt Good question. Treating its colonies like shit, for one, instead of giving them home rule etc. etc. Al… https://t.co/nGpauWqx8h" +06/30/2018,Economists,@Noahpinion,"But recently, we went to war in Iraq, when other countries had (wisely) mostly stopped engaging in such military ad… https://t.co/KvjehKpY2x" +06/30/2018,Economists,@Noahpinion,"The rising powers at the beginning of the 20th century were the U.S., Russia, Japan, and Germany, with Britain as a… https://t.co/v8YDoVAC02" +06/30/2018,Economists,@Noahpinion,"@swarajkumar224 Nazism, communism, the world wars." +06/30/2018,Economists,@Noahpinion,"@SFFFan42 @greggentry1 You can just use the ""mute conversation"" button you know" +06/30/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Our invasion of Europe was last-minute! +06/30/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Civil War was 19th century! And compare our WWI/WWII casualties to all the other guys! +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 We didn't start the wars, and came in late when our intervention could be decisive with few casualties." +06/30/2018,Economists,@Noahpinion,"@SFFFan42 Stupid, but not as stupid as communism, Nazism, and the world wars." +06/30/2018,Economists,@Noahpinion,"@philip_primeau I try to be realistic. There's the potential for worsening civil conflict, but we really have no wa… https://t.co/1mcgrUgADo" +06/30/2018,Economists,@Noahpinion,"@philip_primeau Maybe! But we're not at 70s levels yet, and the 70s troubles ended up being resolved rather quickly and easily." +06/30/2018,Economists,@Noahpinion,@WhinyBooker You're so full of shit they could grow crops in your hair :D +06/30/2018,Economists,@Noahpinion,@philip_primeau Could be. We haven't yet reached 1970s levels of civil strife. We had 2500 bombings in 1972 alone! +06/30/2018,Economists,@Noahpinion,@alex984123 yes +06/30/2018,Economists,@Noahpinion,"@doormatt26 Oh, we didn't, but Europe and Asia mostly chilled out and got more sensible while we decided to get les… https://t.co/49MzaJjPBX" +06/30/2018,Economists,@Noahpinion,"@TomAsh011 Well, the Iraq War for starters." +06/30/2018,Economists,@Noahpinion,"In the 20th century America succeeded because we stood back and let Europe and Asia do crazy stupid stuff, and then… https://t.co/X4Re8UwcQE" +06/30/2018,Economists,@Noahpinion,"@philip_primeau Social strife already exists. A forecast of social strife is a forecast of ""no change"" - an easy and safe forecast to make!" +06/30/2018,Economists,@Noahpinion,"I was going to delete this tweet and replace it with what I intended to tweet (i.e. ""Huge #FamiliesBelongTogether p… https://t.co/a1EG9JSnqs" +06/30/2018,Economists,@Noahpinion,#FamiliesBelongTogther +06/30/2018,Economists,@Noahpinion,"@aryelipman @accidentalflyer If you speak Japanese, yes." +06/30/2018,Economists,@Noahpinion,Trump sucked up to North Korea and they kept right on building nukes: https://t.co/m2Tq3ZNdeS +06/30/2018,Economists,@Noahpinion,"RT @ReformedBroker: Oh look, a delicate ecosystem crucial to American workers…. + +My opinions formed during the 1980’s combined with a lack…" +06/30/2018,Economists,@Noahpinion,"RT @ReformedBroker: Who could have known trade was so COMPLEX?? + +Toyota makes cars in Kentucky + +BMW in South Carolina + +Benz in Alabama + +GM…" +06/30/2018,Economists,@Noahpinion,@Keith_Not_Kevin Probably not...Central America is such a shitshow right now that we're getting normal folks rather… https://t.co/pYykkP6HH1 +06/30/2018,Economists,@Noahpinion,RT @rob_wsz: Any Japan guide that @jakeadelstein and @Noahpinion can agree on must be pretty solid. https://t.co/T0tgkni62m +06/30/2018,Economists,@Noahpinion,@ASuburbian I will always welcome Al Pacino to my country... +06/30/2018,Economists,@Noahpinion,@accidentalflyer @aryelipman NYC is a bit too crowded and loud and hectic for me. I think I would have loved it at age 23. +06/30/2018,Economists,@Noahpinion,@Keith_Not_Kevin To enemies of the regime? You bet... +06/30/2018,Economists,@Noahpinion,@AngryDaenjangny @jakeadelstein 笑 +06/30/2018,Economists,@Noahpinion,@jakeadelstein Ahaha yes I should add a note. +06/30/2018,Economists,@Noahpinion,"RT @jakeadelstein: A wonderful free guide to visiting Japan via @Noahpinion +However, do not bring a sword to my neighborhood. That would b…" +06/30/2018,Economists,@Noahpinion,HELL YEAH. https://t.co/F2F932xquG +06/30/2018,Economists,@Noahpinion,"""There's nothing you can do to me that Castro has not done."" +- Scarface https://t.co/k7RO3FA0tw" +06/30/2018,Economists,@Noahpinion,@bananalynnpb @karlbykarlsmith Bustamante wins +06/30/2018,Economists,@Noahpinion,@DucksForDuckGod Not all! Just some. +06/30/2018,Economists,@Noahpinion,"People are saying ""this strategy will work"", and of course it'll work...unless there's an out-and-out recession. On… https://t.co/iEZUyHdGOt" +06/30/2018,Economists,@Noahpinion,At this point Trump's economic strategy appears to be 100% reliant on Tribal Reality. The plan is just to tell a bu… https://t.co/5JNmkoentv +06/30/2018,Economists,@Noahpinion,RT @nberpubs: A study of “red-tape barriers” — policy-induced trade barriers that do not generate revenue or rents https://t.co/A02fK1amWT +06/30/2018,Economists,@Noahpinion,"General Trump's sniveling aides inflate enemy casualty figures for him, while hiding his own losses...… https://t.co/nbU7x9zsLJ" +06/30/2018,Economists,@Noahpinion,"General Trump boasts of Trade War victories that never happened, while his lines buckle and crumble...… https://t.co/pprL004hCp" +06/30/2018,Economists,@Noahpinion,Record grain harvests! https://t.co/1O76BzdxPL +06/30/2018,Economists,@Noahpinion,@Mk1_uc https://t.co/VbFs3Sa4PP +06/30/2018,Economists,@Noahpinion,@michaeldemoore You and me both. +06/30/2018,Economists,@Noahpinion,@Oneoneder @JRRRulfo https://t.co/AwhS7XvnAy +06/30/2018,Economists,@Noahpinion,@CarolForden @WilliamBerkson Forden wins +06/30/2018,Economists,@Noahpinion,@tommyrva That's a whole different category of bad... ;-) +06/30/2018,Economists,@Noahpinion,"@tommyrva ""What do you do?"" + +""Oh, I write for Refinery29."" + +*whispering* ""She can afford this apartment on a Refine… https://t.co/Ghj3mRQCs1" +06/30/2018,Economists,@Noahpinion,@JDStringfellow Whoops sorry +06/30/2018,Economists,@Noahpinion,@tommyrva Brooklyn? Heh. Enjoy living with trustafarians... +06/30/2018,Economists,@Noahpinion,"@jaguar06_rick Wild, man." +06/30/2018,Economists,@Noahpinion,"@tommyrva It's great if you don't have kids and you have a good job, otherwise tough" +06/30/2018,Economists,@Noahpinion,"@GwailoMD I mean, Stanford is nice, but living in Palo Alto without being a Stanford student? The pits." +06/30/2018,Economists,@Noahpinion,Note: Also works for neoliberalism. :D https://t.co/Mw5QRQ3WUI +06/30/2018,Economists,@Noahpinion,@antoniogm Is this a consistent finding? +06/30/2018,Economists,@Noahpinion,"@tommyrva Really? Makes sense to me. This is, in fact, the choice I made in 2016." +06/30/2018,Economists,@Noahpinion,"RT @Noahpinion: Here you have it, folks: Noah Smith's Abridged Illustrated Japan Travel Guide! + +https://t.co/sdGqv2k80O" +06/30/2018,Economists,@Noahpinion,Well at least I agree with this one. https://t.co/z5uFX9V9d8 +06/30/2018,Economists,@Noahpinion,"Really, folks?? 🤔 https://t.co/U1otmt4NFI" +06/30/2018,Economists,@Noahpinion,RT @Noahpinion: China has thrown a MILLION members of the Uyghur minority into concentration camps: https://t.co/zqjhD6yomd +06/30/2018,Economists,@Noahpinion,"RT @DurRobert: Review of behavioral finance research on asset prices: https://t.co/sh7YrmJpCr by Nicholas Barberis + +Forthcoming in the Hand…" +06/30/2018,Economists,@Noahpinion,China has thrown a MILLION members of the Uyghur minority into concentration camps: https://t.co/zqjhD6yomd +06/30/2018,Economists,@Noahpinion,RT @bopinion: Ethiopia already is “the China of Africa” https://t.co/ZvoggO9VrV https://t.co/vA5z1Iv1x3 +06/30/2018,Economists,@Noahpinion,"@kptrease I do not, sorry..." +06/30/2018,Economists,@Noahpinion,"@WallyStummy Keep on desperately hoping, even as shit crumbles around you!" +06/30/2018,Economists,@Noahpinion,"@TankCPTNemo @JRMoockjr @sroserosemary @nymphomachy @lieutenant_lady @barefootboomer Wait, that's frigging hilarious, I love it" +06/30/2018,Economists,@Noahpinion,@CitySocialist Congratulations on reaching funemployment! +06/30/2018,Economists,@Noahpinion,And here it is! https://t.co/sdGqv2k80O +06/30/2018,Economists,@Noahpinion,"@spooknine Rama, dude. Why would the SDF-1 shoot on by?" +06/30/2018,Economists,@Noahpinion,@MrSanctimony LOL nice +06/30/2018,Economists,@Noahpinion,"Here you have it, folks: Noah Smith's Abridged Illustrated Japan Travel Guide! + +https://t.co/sdGqv2k80O" +06/30/2018,Economists,@Noahpinion,@joelgjensen Yep +06/30/2018,Economists,@Noahpinion,@minabot @jakeadelstein The guide will have that. +06/30/2018,Economists,@Noahpinion,"One sample mean is not the same as one data point, unless you're doing a meta-analysis. + +Just sayin'." +06/30/2018,Economists,@Noahpinion,@toixstory YUPPP +06/30/2018,Economists,@Noahpinion,@dabrote colloquial +06/30/2018,Economists,@Noahpinion,"@roybahat @minney_cat @jamescham Oh, I hooked James up with my friend @yoyoshibata, which is really all he needs! :-)" +06/30/2018,Economists,@Noahpinion,"Damn, RCP is a lot more right-wing than I remembered. + +Also, Harvard/Harris is the poll that oversampled Republica… https://t.co/rUyv2JYWX6" +06/30/2018,Economists,@Noahpinion,"The guide will, however, contain advice on how to swordfight @jakeadelstein (hint: fake to his left)." +06/30/2018,Economists,@Noahpinion,"Trump's approval rating is growing among...HISPANICS??? + +https://t.co/uvhYw2ELhH" +06/30/2018,Economists,@Noahpinion,"The guide will not cover ""specialty"" topics such as: +* how to live in an apartment full of misfits and weirdos and… https://t.co/hPnNTLl4w4" +06/30/2018,Economists,@Noahpinion,"Finally writing my Japan Travel Guide blog post, which a million people have been asking me to write for a million years." +06/30/2018,Economists,@Noahpinion,"@SandyDarity @JHWeissmann Agree with Sandy. As for the two you mentioned, just read em both, order doesn't matter!" +06/30/2018,Economists,@Noahpinion,@MattBruenig 2x a small number is still a small number +06/29/2018,Economists,@Noahpinion,@KAErdmann Was it fake news? +06/29/2018,Economists,@Noahpinion,Kudlow telling Trump that deficits are going down when they're actually going up reminds me of some Soviet apparatc… https://t.co/XVM01Ekwll +06/29/2018,Economists,@Noahpinion,"Fox News 1, Kudlow 0 https://t.co/O2dqc9V8IZ" +06/29/2018,Economists,@Noahpinion,"@negrosubversive @AnoYaro Android is woke, iOS is broke" +06/29/2018,Economists,@Noahpinion,@negrosubversive Mine has been that way for a while now +06/29/2018,Economists,@Noahpinion,"RT @Patrick_J_Egan: Democratic party ID among Gen X'ers is remaining steady as the cohort heads into its mid-forties, in contrast to previo…" +06/29/2018,Economists,@Noahpinion,@profplum99 This is what happens when you have a Wallace Shawn avatar! 😊 +06/29/2018,Economists,@Noahpinion,"RT @profplum99: Just had lunch with @Noahpinion ... said the nicest thing, ""You don't look nearly as old as I thought you were!""" +06/29/2018,Economists,@Noahpinion,Globalization has paused. https://t.co/DwGmMvsrb0 +06/29/2018,Economists,@Noahpinion,"Nervous colonels line up outside General Trump's door, sweating profusely as they wait to inform him of yet more Tr… https://t.co/vsecp6DUL2" +06/29/2018,Economists,@Noahpinion,"As more countries join the anti-Trump alliance, General Trump fumes in his bunker https://t.co/uy4gtE4pOH" +06/29/2018,Economists,@Noahpinion,@MattBruenig Pretty close tho +06/29/2018,Economists,@Noahpinion,"Black Americans are no fools. They can easily see that Trump's nativism is about race, not about jobs or wages or u… https://t.co/w0vLT1oKWj" +06/29/2018,Economists,@Noahpinion,Yup. No apparent benefits of Trump's tax cut so far. https://t.co/K9QhSJuL9q +06/29/2018,Economists,@Noahpinion,"Yeah Republicans pull dirty tricks. Yeah the system favors their voters a bit. + +But Dems could have done a lot bett… https://t.co/MKeM1SL3sB" +06/29/2018,Economists,@Noahpinion,Yeah Hillary Clinton won more votes than Trump. But if Dems voted in midterm elections Trump would be a lot less po… https://t.co/RgyZ7hrCXJ +06/29/2018,Economists,@Noahpinion,@Bushido61 No +06/29/2018,Economists,@Noahpinion,"All of Congress is up for election every two years. + +Dems lost Congress in 2010. In 2012. In 2014. In 2016. + +THAT i… https://t.co/2Mu792MD0R" +07/01/2018,Economists,@Austan_Goolsbee,These rules do not apply to the Supreme Court full stop. But I had read you as suggesting there was nothing in the… https://t.co/2LRMjwgVko +07/01/2018,Economists,@Austan_Goolsbee,"Says disqualif. if “the judge or the judge’s spouse, or a person related to either within the third degree of relat… https://t.co/Jr8GK6lsFm" +07/01/2018,Economists,@Austan_Goolsbee,RT @cecmunoz: Go @MelodyCBarnes !!! https://t.co/PuOAfLt9Tm +07/01/2018,Economists,@Austan_Goolsbee,RT @CFCamerer: Feel Molly’s pain. Fun fact from economics: Market power raises prices *and* lowers product quality https://t.co/nOkag5WJ96 +07/01/2018,Economists,@Austan_Goolsbee,make em carry their own stuff. No increase in our workload. https://t.co/JolJFQ0Ube +07/01/2018,Economists,@Austan_Goolsbee,"RT @MarkWarner: “The White House promised '70 percent' of the tax cut would go to workers. It didn't.” +https://t.co/BENcB1drDy" +06/30/2018,Economists,@Austan_Goolsbee,RT @ryanbedwards: Not just the World Cup https://t.co/SRxvu1VUom +06/30/2018,Economists,@Austan_Goolsbee,"RT @kairyssdal: ""ABOARD AIR FORCE ONE, June 29 (Reuters) - Speaking to reporters aboard Air Force One... +Trump said the United States +has b…" +06/30/2018,Economists,@Austan_Goolsbee,"RT @codykeenan: Not quite as slick as the boss, but I put everything into this one for the graduates - and for everybody looking for someth…" +06/30/2018,Economists,@Austan_Goolsbee,"RT @TheEconomist: The term ""skyscraper"" was first used to describe towers that rose on the shores of Lake Michigan https://t.co/zXopIHfH1n" +06/30/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: on tax-cut effects so far: “spending on equipment is lower than it was at end of last year, and overall business investme…" +06/30/2018,Economists,@Austan_Goolsbee,RT @2beeornottobe: @JudgeJeanine U were doing SO well but NOW went 2 the GUTTER with bolshy bib boy @Austan_Goolsbee? U & @FoxNews R out o… +06/30/2018,Economists,@Austan_Goolsbee,"RT @MarshallAlums: Kicking off the #Marshall_Innovation #AMS2018 at @Stanford! + +Tune in to @UKin_SF tonight at 8 PM PT for a Facebook Live…" +06/29/2018,Economists,@Austan_Goolsbee,RT @omar_aok: This security tape of a botched robbery is masterpiece of silent cinema. ⭐⭐⭐⭐⭐ https://t.co/9U0rfWYNLh +06/29/2018,Economists,@Austan_Goolsbee,RT @demeralda: @DinaPomeranz @Austan_Goolsbee @ChicagoBooth @DurRobert I wish when I was studying anthropology I had taken more economics c… +06/29/2018,Economists,@Austan_Goolsbee,RT @DinaPomeranz: Excellent overview by @ChicagoBooth professor Marianne Bertrand on how econ increasingly embraces insights from other soc… +06/29/2018,Economists,@Austan_Goolsbee,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Economists,@Austan_Goolsbee,"RT @cowenconvos: This week’s Revisionist History features @tylercowen @asymmetricinfo @CliffordAsness and (of course) @Gladwell, all of wh…" +06/29/2018,Economists,@Austan_Goolsbee,"RT @BerkeleyHaas: We're thrilled to announce that Prof. Laura Tyson, renowned economist, has been named interim dean of our business school…" +06/29/2018,Economists,@Austan_Goolsbee,RT @lizzieohreally: I got to go home tonight from the last real day of a journalism job that l loved. In one piece. And the only real reaso… +06/28/2018,Economists,@Austan_Goolsbee,go Brent Neiman! https://t.co/raMZ163CMV +06/28/2018,Economists,@Austan_Goolsbee,"RT @SecSmithEllis: A week ago today, my father died. He left me a powerful history of our family and strong faith. I’ll miss him dearly, bu…" +06/27/2018,Economists,@Austan_Goolsbee,RT @MSNBCPR: Congratulations to @SRuhle and her @MSNBC Live team on their 2-year anniversary! #GoodNewsRuhles https://t.co/RE48MhfG58 +06/27/2018,Economists,@Austan_Goolsbee,RT @heckmanequation: Professor Heckman is speaking in DC tomorrow at the @edcommission National Forum on #EdPolicy. This forum brings toget… +06/27/2018,Economists,@Austan_Goolsbee,"RT @Sandi_P_Allen: Word, @Austan_Goolsbee. This article confirms what you said all along. https://t.co/FLXRv0A2vX" +06/27/2018,Economists,@Austan_Goolsbee,RT @jrpsaki: Putting political analysis aside for a moment. As one of many proud alumni from his office—@JoeCrowleyNY is one of the best hu… +06/26/2018,Economists,@Austan_Goolsbee,"RT @DeadYasser: @Austan_Goolsbee still carrying Obama’s water, I see. Just can’t accept President Trump, can you? With tariffs imposed by M…" +06/26/2018,Economists,@Austan_Goolsbee,RT @timothy_krieg: @DENCO5280 @Austan_Goolsbee Austin bless your heart. You were a terrible economic advisor so you probably need to just h… +06/26/2018,Economists,@Austan_Goolsbee,"RT @jodikantor: Huge honor: ⁦winning a Loeb the same night as my husband, @nytimes Your Money columnist ⁦@ronlieber⁩ + +Bigger honor: watchi…" +06/26/2018,Economists,@Austan_Goolsbee,"RT @NPRinskeep: ""The right’s revulsion against a black president targeted by birther conspiracy theories is not the same as the left’s revu…" +06/26/2018,Economists,@Austan_Goolsbee,"RT @PhilipRucker: “I think we’re in a renaissance of hard-news reporting, and I want to see this through” — @mitchellreports is an inspirat…" +06/26/2018,Economists,@Austan_Goolsbee,"Depending where they move these jobs, the tax bill likely gives Harley-Davidson a tax cut for doing this. https://t.co/Pq2TwGMmkA" +06/26/2018,Economists,@Austan_Goolsbee,RT @frankthorp: Sen @BenSasse: “The problem isn’t that Harley is unpatriotic - it’s that tariffs are stupid.” https://t.co/oAE0Z4EvF8 +06/26/2018,Economists,@Austan_Goolsbee,RT @steveliesman: The Dow has fallen 1% or more 17 days this year like yesterday (-1.33%). CNBC finds 8 of those 17 down days were sparked… +06/26/2018,Economists,@Austan_Goolsbee,"RT @Birdmischief: Okay, I want to see @Austan_Goolsbee on TV righteously snarking his way across my TV pretty much every weeknight until th…" +06/26/2018,Economists,@Austan_Goolsbee,RT @giuliapines: “This is a plan to lose weight by chopping off your feet.” OMG @Austan_Goolsbee on @TheLastWord tonight. +06/25/2018,Economists,@Austan_Goolsbee,Spoiler: it’s by my @ChicagoBooth colleague Eric Budish and shows that the vulnerability to attack depends on the f… https://t.co/idXzuEdgd4 +06/25/2018,Economists,@Austan_Goolsbee,Immigration court is intentionally being starved of resources to slow immigration. Now that itself becomes the argu… https://t.co/Q5ePEPuaTJ +06/25/2018,Economists,@Austan_Goolsbee,"RT @robertwolf32: “Every recession of the past 60 years has been preceded by an inverted yield curve, according to research from the San Fr…" +06/25/2018,Economists,@Austan_Goolsbee,"RT @Mr_DrinksOnMe: Interviewer: Do you think Brazil's 1970 team can beat today's Argentina? + +Pelé: Yes. + +Interviewer: By how much? + +Pelé: 1…" +06/24/2018,Economists,@Austan_Goolsbee,"RT @Michael_Kades: Voice search and response raises a whole new set of competitive issues, which @linamkhan is right to point out. @Austan_…" +06/24/2018,Economists,@Austan_Goolsbee,Hahahahaha https://t.co/QL46VVhRwY +06/23/2018,Economists,@Austan_Goolsbee,RT @KFILE: These tweets are two hours apart https://t.co/HeRTQJgrdZ +06/22/2018,Economists,@Austan_Goolsbee,"RT @mikedebonis: And you may find yourself -- in the House of Representatives! +And you may find yourself -- in an endless debate! +And you m…" +06/22/2018,Economists,@Austan_Goolsbee,"RT @RedIsDead: Koko the gorilla once ripped a sink out of the wall and, when her keepers confronted her about it, she blamed her kitten, si…" +06/22/2018,Economists,@Austan_Goolsbee,! https://t.co/EcMYlVgHvx +06/22/2018,Economists,@Austan_Goolsbee,"RT @anneapplebaum: as I've said, expect a trade. We stop holding military exercises in Europe. In exchange, we allow Russia to keep Crimea.…" +06/22/2018,Economists,@Austan_Goolsbee,"RT @chrislhayes: First time illegal entry into the United States is a misdemeanor. + +Lying on or omitting materially relevant information fr…" +06/22/2018,Economists,@Austan_Goolsbee,RT @zittrain: The Supreme Court has reversed its 1992 decision limiting collection of sales tax by out-of-state merchants. The '92 decision… +06/21/2018,Economists,@Austan_Goolsbee,"RT @CliffordAsness: Sad. Let’s pass tariffs then make up conspiracies when the damage starts. Even if he’s being honest, his being shocked…" +06/20/2018,Economists,@Austan_Goolsbee,"RT @Arcanenaut: @trish_regan @Austan_Goolsbee @RepMikeRogersAL @BlakeBurman @JudgeTedPoe @SusanLiTV @connellmcshane @Harlan @Jehmu Trish, p…" +06/20/2018,Economists,@Austan_Goolsbee,RT @Geoffrey_JH3: @trish_regan @Austan_Goolsbee @RepMikeRogersAL @BlakeBurman @JudgeTedPoe @SusanLiTV @connellmcshane @Harlan @Jehmu Don’t… +06/20/2018,Economists,@Austan_Goolsbee,RT @danpfeiffer: This was a fun chance to nerd out about books with ⁦@EW⁩ and talk about my new book out this week https://t.co/jfpaU0NpQZ +06/20/2018,Economists,@Austan_Goolsbee,"RT @RenitaDYoung: Fed's Powell says jobs market not too tight, repeats case for gradual rate hikes via @Reuters https://t.co/Dc9gp2tbos" +06/20/2018,Economists,@Austan_Goolsbee,RT @BeckyQuick: It's not fake news. It's a balanced description of what is happening with some historical and medical context. Go back unde… +06/20/2018,Economists,@Austan_Goolsbee,RT @AlyssaMastro44: true friendship means saying “read Yes We Still Can first bc it just came out today!!!” 📚🌈💯 @danpfeiffer https://t.co/S… +06/20/2018,Economists,@Austan_Goolsbee,I disagree. It’s clearly worse. Katrina response revealed incompetence and indifference. This is an intentional de… https://t.co/5MCs0mzzNo +06/20/2018,Economists,@Austan_Goolsbee,"RT @AnnaLucyShea: I have never heard of any country systematically separating parents from children as a default policy, in order to deter…" +06/20/2018,Economists,@Austan_Goolsbee,"RT @jiveDurkey: you sitting down? + +here’s Corey Lewandowski mockingly saying “womp womp” to the story of a 10-year-old girl with Down Syndr…" +06/19/2018,Economists,@Austan_Goolsbee,"RT @jk_rowling: ‘Also, the president doesn’t have a moustache.’ https://t.co/zI7RVuDI1q" +06/19/2018,Economists,@Austan_Goolsbee,RT @stevesilberman: Rosaries confiscated from immigrants at the Arizona/Mexico border. [via @MikeOLoughlin] https://t.co/OP0jLhU3m1 https:/… +06/19/2018,Economists,@Austan_Goolsbee,RT @danielsgoldman: The irony of the Trump admin enforcing misdemeanor unlawful entry because “all laws must be enforced” when he pardoned… +06/19/2018,Economists,@Austan_Goolsbee,"Yes, but with me sayng I would pay him $20 if he could hit an unguarded shot and him repeatedly trying but failing. https://t.co/G6Uc3KQ0k2" +06/19/2018,Economists,@Austan_Goolsbee,RT @emrazz: An account from an attendant aboard a flight transferring 16 unaccompanied children who were taken from their parents at the bo… +06/19/2018,Economists,@Austan_Goolsbee,RT @kevinkrim: Excellent @SquawkCNBC auction ending in about 90 minutes! Meet @BeckyQuick @JoeSquawk @andrewrsorkin and support a great cau… +06/19/2018,Economists,@Austan_Goolsbee,"RT @timkmak: It's incredible that this is happening: + +The Commerce Secretary, aware of a coming negative story about his links to a Kremli…" +06/19/2018,Economists,@Austan_Goolsbee,RT @AlyssaMastro44: may our landscape be dotted with barack obama elementary schools ✌🏼 https://t.co/k739UyK1Pn +06/18/2018,Economists,@Austan_Goolsbee,RT @vkhosla: I just published “‘Venture Assistance’: A philosophical view of what entrepreneurs need beyond just funding…” https://t.co/eGW… +06/18/2018,Economists,@Austan_Goolsbee,RT @ACraig2031: @Popehat Who wore it better? https://t.co/qYCfZcXNZc +06/18/2018,Economists,@Austan_Goolsbee,RT @neeratanden: Yes. They wrote cage. In America. https://t.co/ONI6Anyev6 +06/18/2018,Economists,@Austan_Goolsbee,So we’re just doing it for fun? https://t.co/j7E6EEdrvD +06/18/2018,Economists,@Austan_Goolsbee,"RT @brianefallon: This is Chad Readler. +He is Jeff Sessions' right-hand guy at DOJ who is advocating for the family separation policy. +Now…" +06/18/2018,Economists,@Austan_Goolsbee,"RT @KenDilanianNBC: Laura Bush: “These images are eerily reminiscent of the Japanese American internment camps of World War II, now conside…" +06/18/2018,Economists,@Austan_Goolsbee,"Are there empirical pants, too? https://t.co/3idXgyyMQg" +06/17/2018,Economists,@Austan_Goolsbee,RT @BillKristol: Another reason for alarm: It's increasingly clear Trump apologists will excuse almost anything. Former constitutionalists… +06/17/2018,Economists,@Austan_Goolsbee,@jimmykimmel you should have called me https://t.co/7HuXwM6y6Z +06/17/2018,Economists,@Austan_Goolsbee,RT @Mimirocah1: of materially prejudicing an adjudicative proceeding in the matter.” How do these outrageous stamens not violate that rule… +06/17/2018,Economists,@Austan_Goolsbee,RT @petersagal: Married. https://t.co/bpEFIHLxL5 +06/17/2018,Economists,@Austan_Goolsbee,Agreed https://t.co/yMRrWswWOE +06/17/2018,Economists,@Austan_Goolsbee,"RT @claydumas: This reminds me of my fave @Austan_Goolsbee story, wherein he goads his college debate rival, Ted Cruz, into bricking one th…" +06/17/2018,Economists,@Austan_Goolsbee,RT @tripgabriel: It was Stephen Miller who pushed the Trump admin to use the ‘nuclear option’ of separating children from parents at the bo… +06/17/2018,Economists,@Austan_Goolsbee,RT @jpodhoretz: Stephen Miller is a pestilence https://t.co/ohvNO1Ojns +06/16/2018,Economists,@Austan_Goolsbee,"“That’s what the money is for.” + +—Don Draper https://t.co/532dAaMSQz" +06/16/2018,Economists,@Austan_Goolsbee,RT @ProfFionasm: And there were intellectual property protections in there too - another complaint the Trump admin has. https://t.co/UvE0KV… +06/16/2018,Economists,@Austan_Goolsbee,"RT @SteveRattner: If Trump had read the TPP document before withdrawing, he’d have noticed that Canada agreed to lift dairy tariffs & impor…" +06/16/2018,Economists,@Austan_Goolsbee,"RT @jpodhoretz: The problem with Comey wasn't ""bias."" The problem with Comey is that he interfered in the political process--twice-- and di…" +06/16/2018,Economists,@Austan_Goolsbee,RT @Eric_Lindros: @Austan_Goolsbee So continue to tickle sweet nothings into Warren Buffet's ear you feckless pigling suckling at the power… +06/16/2018,Economists,@Austan_Goolsbee,"Westley: You're that smart? + +Vizzini: Let me put it this way. Have you ever heard of Plato, Aristotle, Socrates?… https://t.co/lZUIZPV2ni" +06/16/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: very few people in our business as classy as Hampton Pearson, my ⁦@CNBC⁩ colleague who retired today. a gentleman who has…" +06/16/2018,Economists,@Austan_Goolsbee,Like one of those nightmare psychology experiments from the 1950s that led to human subjects rules. WTF is wrong wi… https://t.co/VLTaHZ1WQQ +06/16/2018,Economists,@Austan_Goolsbee,"RT @John_N_Friedman: Its official - Raj Chetty is coming back to Harvard! + +With the band back together on the East Coast, look out out for…" +06/16/2018,Economists,@Austan_Goolsbee,has there ever been an F Troop remake? https://t.co/7sEGn3GfMI +06/16/2018,Economists,@Austan_Goolsbee,Like one of those nightmare psychology experiments from that led to human subjects rules. WTF is wrong with us? https://t.co/BvFgsCQ3Iw +06/16/2018,Economists,@Austan_Goolsbee,RT @metsfanmax: The @Rockies and @Indians both liked my tweet...I'd like to thank the academy and give a shout out to mom @BarbaraFedida co… +06/16/2018,Economists,@Austan_Goolsbee,"RT @BarbaraFedida: Whatever you’re giving me credit for, I am certain you’re being humble. It’s all you @metsfanmax 😘 https://t.co/0vaB4S5f…" +06/15/2018,Economists,@Austan_Goolsbee,RT @shomikdutta: @NickABC13 @tedcruz @jimmykimmel Paging @Austan_Goolsbee +06/15/2018,Economists,@Austan_Goolsbee,RT @StrautMike: Another group of young Chicago leaders off to do big things—Happy graduation to the Ariel Community Academy Class of 2018!… +06/15/2018,Economists,@Austan_Goolsbee,RT @hughhewitt: Mr. @POTUS: Family separation is not the result of law but the DOJ’s choice concerning how to charge and how to detain. It… +06/15/2018,Economists,@Austan_Goolsbee,RT @HariSevugan: Cc @Austan_Goolsbee https://t.co/MiG8TsPGaJ +06/14/2018,Economists,@Austan_Goolsbee,RT @danpfeiffer: Perhaps now it’s time for everyone to stop indulging the fantastical conspiracy theories of the right and focus on the act… +06/14/2018,Economists,@Austan_Goolsbee,That’s not how they promised it https://t.co/iTFBZzPzDr +06/14/2018,Economists,@Austan_Goolsbee,RT @DinaPomeranz: My former PhD advisor @Cutler_econ attempted to estimate the impacts of weakening the US Environmental Protection Agency… +06/14/2018,Economists,@Austan_Goolsbee,"RT @CREWcrew: You’re. Not. Allowed. To Use. Your. Public. Office. For. Your. Personal. Enrichment. Or your wife’s. +https://t.co/xDtsnMrcXm" +06/14/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: former Wells Fargo CEO Richard Kovacevich just told my @cnbc colleagues that Q2 2018 economic growth may reach 4%, and ""t…" +06/14/2018,Economists,@Austan_Goolsbee,RT @kasie: Infant ripped from mother's arms while she was breastfeeding the baby at border detention center; mother handcuffed for resistin… +06/14/2018,Economists,@Austan_Goolsbee,"RT @steventberry: At the same event, my distinguished Yale Econ colleague Bill Nordhaus was awarded the prize in the field of Climate Scien…" +06/14/2018,Economists,@Austan_Goolsbee,"RT @steventberry: Not a great photo, but a great day for empirical IO as Bresnahan, Pakes and Porter are awarded the BBVA Frontiers of Know…" +06/13/2018,Economists,@Austan_Goolsbee,Isn’t the relevant comparison what’s the most efficient place plus the transportation costs rather than every place… https://t.co/mRNh2ZVwMJ +06/13/2018,Economists,@Austan_Goolsbee,"RT @robertwolf32: @Austan_Goolsbee Rising mortgage rates, gas prices up , trade wars adding to new tariffs ..... all hitting hard working A…" +06/13/2018,Economists,@Austan_Goolsbee,RT @BFischerMartin: Working with Tim Russert was the honor of a lifetime. He was taken too soon - 10 years ago today. My good friend @erin… +06/13/2018,Economists,@Austan_Goolsbee,Remember the time you withdrew from the Iran deal and oil prices shot up (and haven’t come down)? https://t.co/nvU6atzsLY +06/13/2018,Economists,@Austan_Goolsbee,"RT @IsaacDovere: the North Korean version is that Trump already agreed to lift sanctions, and that the North Koreans won't have to move on…" +06/13/2018,Economists,@Austan_Goolsbee,"RT @maddow: I think the word is ""camps."" Prison camps, for the kids. + +https://t.co/P4he3iUzLT" +06/13/2018,Economists,@Austan_Goolsbee,RT @ChrisLu44: Great to catch up with former Obama WH photographer @PeteSouza at his book event tonight. So many wonderful stories and phot… +06/13/2018,Economists,@Austan_Goolsbee,RT @R_Thaler: Thanks AEA! Anyone looking for the published version of my Nobel lecture it is now available free on the link here. Who say… +06/13/2018,Economists,@Austan_Goolsbee,I did 9hrs a day here in the fall https://t.co/IIvTJN3y9x +06/13/2018,Economists,@Austan_Goolsbee,RT @NickTimiraos: Very interesting look at the deflationary impact of online retailing with research from @Austan_Goolsbee https://t.co/ruQ… +06/12/2018,Economists,@Austan_Goolsbee,"RT @SRuhle: A BIG congrats to my dear friend @NicolleDWallace!! +https://t.co/1MAJcg5opl" +06/12/2018,Economists,@Austan_Goolsbee,The prices online are falling https://t.co/8LFEktzlSQ +06/12/2018,Economists,@Austan_Goolsbee,RT @UofCBoothNews: Research by @Austan_Goolsbee et al. shows prices for goods sold online rose much more slowly from 2014 to 2017 than indi… +06/12/2018,Economists,@Austan_Goolsbee,"RT @M_C_Klein: Of All Countries Threatened With Tariffs, Canada Makes the Least Sense + +https://t.co/rCIAHeoq04 + +<--some thoughts on the rec…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @JenGranholm: Japan Times: + +""Picking fights with friends is not making America great again. Rather, it is weakening the foundation of Am…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @CBSThisMorning: ""What we have is a freeze for freeze. The North Koreans are freezing their ICBM & nuclear tests & the Americans are fre…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @DianeSwonk: I have known Larry for better part of 25 years. We have had many debates over the economy, always polite, civil, and kind.…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @steventberry: In my case, one doesn't need the all caps to convince me. https://t.co/mkDB0hDcYi" +06/12/2018,Economists,@Austan_Goolsbee,"We are rooting for you @larry_kudlow. + +No matter what your political stripe, Larry is supremely decent person." +06/11/2018,Economists,@Austan_Goolsbee,RT @AwardsDarwin: Don’t take an animal from it’s mother. 😡 https://t.co/j7i7djBNee +06/11/2018,Economists,@Austan_Goolsbee,"RT @davidfrum: So many fascinating details in this story, but not least: Trump was repeatedly told that shredding presidential documents is…" +06/11/2018,Economists,@Austan_Goolsbee,"RT @secretgcd: @ddale8 There's a difference between buying a foreign car for $20,000 and throwing $20,000 into an incinerator, but I don't…" +06/11/2018,Economists,@Austan_Goolsbee,"RT @anniekarni: Trump has a habit of ripping up all of his paper -- his own ""filing system"" of sorts. Officials working in records manageme…" +06/11/2018,Economists,@Austan_Goolsbee,He’s not doing that https://t.co/zVctCjM4F0 +06/10/2018,Economists,@Austan_Goolsbee,"RT @JimPethokoukis: Gang, Trump has been wrong on trade for 40 years. Wrong on Japan. Wrong on Reagan. Wrong on trade deficits. Wrong on N…" +06/10/2018,Economists,@Austan_Goolsbee,RT @CommsDirector: The reference here is unavoidable. https://t.co/gNWDqHo2EV +06/10/2018,Economists,@Austan_Goolsbee,RT @gabriel_zucman: The great ⁦@RichardRubinDC⁩ covers our new estimates of global profit-shifting to tax havens: $600 billion and counting… +06/10/2018,Economists,@Austan_Goolsbee,RT @ObsoleteDogma: This is the former prime minister of Belgium —> https://t.co/0JANNGEDma +06/10/2018,Economists,@Austan_Goolsbee,"Before invoking God’s wrath on someone else, perhaps Navarro should reflect on his administration and the Bible. Th… https://t.co/Aday8jiRLF" +06/10/2018,Economists,@Austan_Goolsbee,RT @RichardHaass: The unraveling of G-7 summit works in NK’s favor as @realDonaldTrump will not want to bust up 2 summits in a row lest peo… +06/10/2018,Economists,@Austan_Goolsbee,"RT @DougRediker: I am going to re-tweet this ad nauseam: US Constitution Article I, Section 8 (3) grants Congress the right “to regulate Co…" +06/10/2018,Economists,@Austan_Goolsbee,Other than there being more of them than any other age group? https://t.co/ImwvPPL1Ta +06/10/2018,Economists,@Austan_Goolsbee,She is a hero (and I’ve been in the office next door to her for more than a decade so I would know) https://t.co/WbdtRHmDLt +06/10/2018,Economists,@Austan_Goolsbee,"RT @jmartNYT: QUEBEC CITY — President Trump abruptly upended two days of global economic diplomacy late Sat,refusing to sign a joint statem…" +06/10/2018,Economists,@Austan_Goolsbee,It was a migraine https://t.co/H0X2zJS5hB +06/10/2018,Economists,@Austan_Goolsbee,@LynchpinL @ChicagoBooth @crampell He married up +06/09/2018,Economists,@Austan_Goolsbee,RT @paulkrugman: This is absolutely boneheaded analysis; VATs don't convey any competitive advantage: https://t.co/Ahv3mONkhC. But if Trump… +06/09/2018,Economists,@Austan_Goolsbee,RT @cbouzy: Scott Pruitt on his way to pickup his dry cleaning and special lotion. https://t.co/lAMty9pqXL +06/09/2018,Economists,@Austan_Goolsbee,"RT @billingsley313: My pregnant wife texted me a selfie in a new dress and asked ""Does it make my butt look big?"" I texted back ""Noo!"" My p…" +06/09/2018,Economists,@Austan_Goolsbee,RT @theclaireliu: The Institute of Politics (@UChiPolitics) was undoubtedly one of the best things of my 4 years at @UChicago...huge thanks… +06/09/2018,Economists,@Austan_Goolsbee,"RT @R_Thaler: OK, sorry that is behind the @AEAjournals paywall. Meanwhile, here are links to the lecture video https://t.co/usfI9Q3o4G (lo…" +06/08/2018,Economists,@Austan_Goolsbee,"RT @blakehounshell: Every night, @NicolleDWallace thanks her guests over Twitter. Just a nice little thing in this un-nice age." +06/08/2018,Economists,@Austan_Goolsbee,RT @EddyElfenbein: https://t.co/IDM2CtmKNY +06/08/2018,Economists,@Austan_Goolsbee,It’s just the tech version of @R_Thaler’s observation that way too many people bet on the longest shot at the horse… https://t.co/u8BHPcjCzR +06/08/2018,Economists,@Austan_Goolsbee,"RT @JeffJacksonNC: What if hundreds of thousands of North Carolinians couldn't afford health care and the federal govt said, ""Ok we'll pay…" +06/08/2018,Economists,@Austan_Goolsbee,RT @JayCShambaugh: Russia is not a top ten economy in terms of size. Nor is it particularly rich. I believe Brazil has a larger GDP and rou… +06/08/2018,Economists,@Austan_Goolsbee,Not if it came from U Chicago it didn’t https://t.co/icgnZCzx1C +06/08/2018,Economists,@Austan_Goolsbee,RT @RichLowry: I was one of the many young people who’ve worked as a research assistant for Charles Krauthammer over the yrs. He’s even mor… +06/08/2018,Economists,@Austan_Goolsbee,"RT @kurteichenwald: What Putin wanted in 2016, according to foreign intel sources I spoke to that year: +1. Strained relations in NATO. +2.…" +06/08/2018,Economists,@Austan_Goolsbee,Off top of my head: 1) arpaio pardon=disgusting 2) pardons signaling to potential witnesses against him=creepy 3) p… https://t.co/nFVNeeJmOD +06/08/2018,Economists,@Austan_Goolsbee,Do you think if someone told the president about the injustices/humiliations Biff Tannen has endured since 1955 (in… https://t.co/JdLkjEfA4q +06/08/2018,Economists,@Austan_Goolsbee,RT @TAPolicy: Is the Internet Keeping #Inflation Low? @MotherJones cites #TAPscholar @Austan_Goolsbee's latest for @nberpubs: https://t.co/… +06/08/2018,Economists,@Austan_Goolsbee,That is a good idea! https://t.co/s6E6IawVFL +06/08/2018,Economists,@Austan_Goolsbee,RT @nberpubs: The role of public policy in an AI-intensive economy and the challenges of enacting Universal Basic Income as a response to w… +06/07/2018,Economists,@Austan_Goolsbee,"You haven’t been paying much attention, I see https://t.co/w6ztClhzu2" +06/07/2018,Economists,@Austan_Goolsbee,Can we get a fact check on the level of respect for career women? https://t.co/mlumebs8m3 +06/07/2018,Economists,@Austan_Goolsbee,!!! https://t.co/IcXOgYiJCv +06/07/2018,Economists,@Austan_Goolsbee,RT @youngvulgarian: Two auto-replying bots have now been stuck in a loop with each other for several hours and the resulting thread reads l… +06/07/2018,Economists,@Austan_Goolsbee,"RT @ChadBown: WOW. STEEL. ALUMINUM. AUTOS. + +Bipartisan legislation requiring Trump submit to Congress any proposal to adjust imports — ie,…" +06/07/2018,Economists,@Austan_Goolsbee,RT @jaketapper: I blame @Alanis https://t.co/IOqrvgka4O +06/07/2018,Economists,@Austan_Goolsbee,Chicago architecture cruise at #2 is absolutely correct but only if you take the legit Chicago Architecture Foundat… https://t.co/W2wspkZZq2 +06/07/2018,Economists,@Austan_Goolsbee,RT @LauBooneEco: Happy and proud! https://t.co/9U7jMPq1QH +06/07/2018,Economists,@Austan_Goolsbee,"RT @AdobeInsights: E-commerce trends, online inflation/deflation, ""smart"" product trends, these are just a few of the great new insights th…" +06/07/2018,Economists,@Austan_Goolsbee,RT @LHSummers: Remembering Julio Rotemberg: A close friend who for me embodied the best in a scholarly life. https://t.co/dCBMPnzBOB +06/06/2018,Economists,@Austan_Goolsbee,RT @AndrewR_Physics: Wait until you find out about academics... https://t.co/FtAbs3PDf3 +06/06/2018,Economists,@Austan_Goolsbee,"RT @greg_ip: If Trump revives coal, it will extract a steep price in both dollars, and lives- of the miners he wants to help. My column on…" +06/06/2018,Economists,@Austan_Goolsbee,RT @BruceBartlett: That $2 trillion tax give-away for the ultra-wealthy would have gone a long way toward keeping Social Security and Medic… +06/06/2018,Economists,@Austan_Goolsbee,"RT @LHSummers: In 2008, when China’s current account balance was approaching 10 % of GDP, it was a central American priority to bring it do…" +06/06/2018,Economists,@Austan_Goolsbee,RT @SRuhle: It’s official.... @AliVelshi & I are NO LONGER newlyweds... happy birthday @VelshiRuhle! https://t.co/44oNQ1cA7c +06/05/2018,Economists,@Austan_Goolsbee,"RT @Deadspin: Trump unable to remember words to ""God Bless America"" at replacement event he commissioned to prove his patriotism: https://t…" +06/05/2018,Economists,@Austan_Goolsbee,Yoda grammarize it or else no one cares https://t.co/jF4NVlTjDU +06/05/2018,Economists,@Austan_Goolsbee,RT @crampell: Pruitt asked his taxpayer-funded executive scheduler at the EPA to set up a call with the Chick-Fil-A chairman to discuss hav… +06/05/2018,Economists,@Austan_Goolsbee,"Read the research and known facts before proposing a theory. + +e.g, Romer and Romer +https://t.co/UztGqjWIuS https://t.co/RY44usTU4t" +06/05/2018,Economists,@Austan_Goolsbee,RT @jbbecon: My forthcoming book on antitrust will have a chapter on harms to innovation and a chapter on harms to suppliers and workers. O… +06/05/2018,Economists,@Austan_Goolsbee,RT @BridgetGainer: Thank you @ChicagolandCmbr for the opportunity to share story of (re: recruit business parnters for!) Chicago Apprentice… +06/05/2018,Economists,@Austan_Goolsbee,Spoiler alert: there’s way more deflation online than in the CPI for the same categories https://t.co/UJEj8lQ9Ta +06/05/2018,Economists,@Austan_Goolsbee,Can someone in eastern PA tell us if potus axing eagles’ WH visit will be well received? Asking for a friend in the electoral college. +06/05/2018,Economists,@Austan_Goolsbee,Which would make no sense if the president had the right to self-pardon https://t.co/LAnnzhFeEQ +06/05/2018,Economists,@Austan_Goolsbee,Whoah! Budget and Econ Twitter will go crazy today. https://t.co/dkXBMH1gCq +06/05/2018,Economists,@Austan_Goolsbee,RT @hughhewitt: The pressure will build and build to end policy of separating children from parents so @realDonaldTrump well advised to ord… +06/05/2018,Economists,@Austan_Goolsbee,RT @nytimes: Netflix is turning 8 Dolly Parton songs into films https://t.co/xyEjL0AwHn +06/05/2018,Economists,@Austan_Goolsbee,RT @davidplouffe: Was great to see Jeff Bleich Saturday at our old friend Buffy Wicks’ hopping campaign office. A stalwart supporter of Bar… +06/04/2018,Economists,@Austan_Goolsbee,"RT @johnmoe: When my daughter was born 15 yrs ago w/ achondroplasia and health complications, I wondered what she’d be able to do in life.…" +06/04/2018,Economists,@Austan_Goolsbee,RT @jimsciutto: Quite a way to kick off a new show: https://t.co/UEdpyqePxY +06/04/2018,Economists,@Austan_Goolsbee,Please don’t https://t.co/7DaXN1MOv3 +06/04/2018,Economists,@Austan_Goolsbee,Isn’t the President all but daring a state AG to investigate him? +06/04/2018,Economists,@Austan_Goolsbee,RT @kasie: ...a woman gets elected. https://t.co/ZTwbxaAybo +06/04/2018,Economists,@Austan_Goolsbee,"Thaler appearing on U Chicago's aptly named Big Brains podcast +https://t.co/L01fjTRElO" +06/04/2018,Economists,@Austan_Goolsbee,"RT @davidfrum: In January of this year, @DouthatNYT & I debated online whether Trump had yet shown himself a danger to the constitution. I…" +06/04/2018,Economists,@Austan_Goolsbee,and he threatened to pull the money for the Chicago children’s hospital unless he got a massive campaign contributi… https://t.co/1WdVGL0wpp +06/04/2018,Economists,@Austan_Goolsbee,RT @dynarski: Me with the dude https://t.co/jwW0NldXqc +06/04/2018,Economists,@Austan_Goolsbee,"RT @amandafortini: Melania did just have kidney surgery, and so did I, and I can tell you it takes more than 18 days to recover. https://t.…" +06/04/2018,Economists,@Austan_Goolsbee,RT @RNicholasBurns: A cardinal rule of diplomacy is that Ambassadors must not interfere in the domestic politics of the countries to which… +07/01/2018,Economists,@BruceBartlett,"RT @CathyYoung63: This anti-#NeverTrump screed at @amspectator is quite exceptionally vile +https://t.co/32aLodX1Tf +Come for the manhood-imp…" +07/01/2018,Economists,@BruceBartlett,There is also no doubt that whoever Trump nominates will be satisfactory to the anti-abortion fanatics. Someone wil… https://t.co/YtrNrIkR5Y +07/01/2018,Economists,@BruceBartlett,"@maplehulk If Alan is nominated to SCOTUS, I will be inclined to agree." +07/01/2018,Economists,@BruceBartlett,It is absolutely guaranteed that whoever Trump nominates to SCOTUS will be satisfactory to Susan Collins re Roe v W… https://t.co/AOr72fvQqB +07/01/2018,Economists,@BruceBartlett,@jerryadler @CEDickson @YahooNews I am well aware of the problem of freshness and finding new news hooks. But I thi… https://t.co/a7f7qSpI0s +07/01/2018,Economists,@BruceBartlett,@LizMair That's not really true. It's just that we run much our welfare state through the tax code rather than thro… https://t.co/IIVcd9p9Wi +07/01/2018,Economists,@BruceBartlett,@ddale8 The closest precedent is the slavery bloc before the Civil War. +07/01/2018,Economists,@BruceBartlett,@mikeduncan @KevinMKruse One problem with this theory is that the Nazis adopted a lot of policies and rhetoric from the Confederate South. +07/01/2018,Economists,@BruceBartlett,The deficit is always falling when Republicans want to cut taxes for the rich. It's always skyrocketing when they w… https://t.co/mOnHQvFrmB +07/01/2018,Economists,@BruceBartlett,@adamliptak @StevenBrill He's just trying to sell books at your expense. Don't take it personally. +07/01/2018,Economists,@BruceBartlett,"@jerryadler @CEDickson The big exception is reporters for right wing outlets such as Fox, where they never tire of… https://t.co/sMf7ErWWo1" +07/01/2018,Economists,@BruceBartlett,"@jerryadler @CEDickson Generally speaking, once beat reporters know all there is to know on a subject, they lose in… https://t.co/rj6coJJLAJ" +07/01/2018,Economists,@BruceBartlett,"Trump's not-so-secret weapon--the Fox Propaganda Channel, which always has his back. https://t.co/cFe1gqzQ2s" +07/01/2018,Economists,@BruceBartlett,@realdawnhoward I'm not hearing about this. Just searched Google News and saw nothing. +07/01/2018,Economists,@BruceBartlett,"@mrspc48 @amjoyshow It's not just the amount of coverage, which has fallen, it's the tone of the coverage. Much les… https://t.co/9dxu5ALsWq" +07/01/2018,Economists,@BruceBartlett,The media were in an uproar about children being forcibly separated from their parents at the border. Trump said he… https://t.co/sWHlZFm0QI +06/30/2018,Economists,@BruceBartlett,@conncarroll @kausmickey Isn't that what they are supposed to be doing now? +06/30/2018,Economists,@BruceBartlett,@tribelaw Seems to me if you are going to reverse a clear precedent that is considered settled law (as for example… https://t.co/4bzYBta0mL +06/30/2018,Economists,@BruceBartlett,@tribelaw The only important case I am familiar with is Brown and I know that took quite a while to be teed up. +06/30/2018,Economists,@BruceBartlett,@lilhistorian @tribelaw Don't be so sure. The facts of the case and the nature of the particular law that applies a… https://t.co/JjKUEI0lnF +06/30/2018,Economists,@BruceBartlett,@tribelaw Serious question--Is there a case in the pipeline that would provide such an opportunity? Hard to see an… https://t.co/Icbme0SpRW +06/30/2018,Economists,@BruceBartlett,@conncarroll @kausmickey I had no idea that there is no law enforcement in this country except at the border. +06/30/2018,Economists,@BruceBartlett,I don't understand why members of the Party of Trump deny that they belong to the party of white supremacy. They sh… https://t.co/oV6hAJ5Ein +06/30/2018,Economists,@BruceBartlett,@danpincus No one listens to me. Democrats think they know all they need to know to win. +06/30/2018,Economists,@BruceBartlett,Where is the progressive campaign to stop Trump from nominating another right-wing extremist to SCOTUS? Once his de… https://t.co/TgfIhDW9uR +06/30/2018,Economists,@BruceBartlett,@Steinernomics Could also protect racist Republicans from charges of racism. +06/30/2018,Economists,@BruceBartlett,There hasn't been a recorded lynching since 1968. But go on ahead. It's not as if there are any other pressing raci… https://t.co/55WGdsMU8s +06/30/2018,Economists,@BruceBartlett,Will Alan Dershowitz return to normal once he realizes that Trump isn't going to name him to the Supreme Court? +06/30/2018,Economists,@BruceBartlett,Kushner is an idiot. I wonder how many millions of dollars his father had to donate to Harvard to get him in. https://t.co/I03bxyjLBt +06/30/2018,Economists,@BruceBartlett,RT @Amy_Siskind: Dinesh D’Souza quotes tweet with the hashtag burn the Jews. https://t.co/vLjuEWnSb5 +06/30/2018,Economists,@BruceBartlett,@R_Ephemeral Poor Democratic marketing is a big problem. +06/30/2018,Economists,@BruceBartlett,@joshchafetz https://t.co/lLRiwgwFT9 +06/30/2018,Economists,@BruceBartlett,"RT @ThePlumLineGS: ""Provocateur."" @AP is actively spreading this garbage under cover of euphemism, misleading readers and rewarding bad-fai…" +06/30/2018,Economists,@BruceBartlett,RT @BillKristol: I say this as someone who was on Fox for a decade and had no beef (though little interaction) with Bill Shine: It’s a disg… +06/30/2018,Economists,@BruceBartlett,"RT @JWGOP: Angela Merkel, the leader of the free world, is despised by both Putin & Trump. Their efforts to undermine her & cause her gover…" +06/30/2018,Economists,@BruceBartlett,RT @murphymike: Parkland rally was 50x more effective than today’s. Every time somebody screams about abolishing ICE it just pushes more wo… +06/30/2018,Economists,@BruceBartlett,@danfarina https://t.co/x1i7F1KiEl +06/30/2018,Economists,@BruceBartlett,@s3friedman I suspect that Roe will never be reversed in toto. The court will simply allow more and more restrictio… https://t.co/FUsAkXlJgm +06/30/2018,Economists,@BruceBartlett,"@spotics Way before that was ""Watermelon Man."" https://t.co/6p2030YZ0w" +06/30/2018,Economists,@BruceBartlett,There haven't always been nine Supreme Court justices. https://t.co/5SidhmXQDU https://t.co/8gFp3BI87V +06/30/2018,Economists,@BruceBartlett,But what is the cure? https://t.co/W1i7gYKTfY +06/30/2018,Economists,@BruceBartlett,@dubiousraves Not a chance. Both-siderism rules at the Post. Truth must be offset with an equal amount of lies. +06/30/2018,Economists,@BruceBartlett,"Two-thirds of Americans oppose the Republican position that Roe v. Wade should be overturned, which SCOTUS will alm… https://t.co/ETAtjYzArx" +06/30/2018,Economists,@BruceBartlett,Which Places Have the Highest Concentration of Billionaires? https://t.co/dBpT63ZWkK https://t.co/7II29ou4ib +06/30/2018,Economists,@BruceBartlett,How Antebellum Christians Justified Slavery https://t.co/a5z3blXF4q https://t.co/7dxjPZMQZZ +06/30/2018,Economists,@BruceBartlett,I'm sure that @davidfrum has stolen many writing jobs from me over the years. +06/30/2018,Economists,@BruceBartlett,Mexicans aren't stealing Americans jobs. Canadians are. https://t.co/LFOnqhdfur https://t.co/8xdizg7epP +06/30/2018,Economists,@BruceBartlett,@BobSachemano Read my book. https://t.co/9TNL7qdf75 +06/30/2018,Economists,@BruceBartlett,"No, you are battling rank stupidity. https://t.co/5sfoAd4cwI" +06/30/2018,Economists,@BruceBartlett,It's always coming down when Republicans want to cut taxes. It's always skyrocketing when they want to slash benefi… https://t.co/dPV4IYgw9j +06/30/2018,Economists,@BruceBartlett,"@DouglasDeCelle Those that can afford to leave, well-to-do whites, don't need to. Those that might benefit probably… https://t.co/fX5DrkW8ii" +06/30/2018,Economists,@BruceBartlett,Great news. One less crackpot on TV. https://t.co/0fqfHmDSbi +06/30/2018,Economists,@BruceBartlett,@FrankSowa1 @RBReich When non-economists criticize GDP they usually have no idea of what they are talking about. +06/30/2018,Economists,@BruceBartlett,"RT @JohnJHarwood: on tax-cut effects so far: “spending on equipment is lower than it was at end of last year, and overall business investme…" +06/29/2018,Economists,@BruceBartlett,"More: Don't you think the emoluments clause is obsolete? Don't you agree that I can pardon myself for any crimes, real or imaginary?" +06/29/2018,Economists,@BruceBartlett,Because there is no exception in the sacred second amendment for crazy people. https://t.co/MzInuenUCB +06/29/2018,Economists,@BruceBartlett,"@Bakari_Sellers Bankers don't understand the concept of ""sunk costs""." +06/29/2018,Economists,@BruceBartlett,Trump's first questions to SCOTUS nominee: How much money do you have? Do you own an apartment in Trump Tower? A me… https://t.co/Wsb6kvW6VV +06/29/2018,Economists,@BruceBartlett,@BSamCook @JeriLRyan It's not even an issue today. +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 Old news. Everyone in the media knows it so they assume everyone else does too. +06/29/2018,Economists,@BruceBartlett,@NicholsUprising Way ahead of you. https://t.co/lCOqs3YXsx +06/29/2018,Economists,@BruceBartlett,"Who wrote this for Trump? These are not his words. For one thing, the statement is grammatically correct. Second, w… https://t.co/P0dv24EttB" +06/29/2018,Economists,@BruceBartlett,@sherpaCato Because that is the essence of liberty. +06/29/2018,Economists,@BruceBartlett,@MideOFD @pat_margulies I saw an article recently where a cache of drugs decades old was discovered. Their effectiv… https://t.co/t2W2FiRlIM +06/29/2018,Economists,@BruceBartlett,"@Rightsof_Man Democrats are the class nerds, Republicans are the schoolyard bullies. Unfortunately, we live in a grade school world." +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 You mean just like marijuana and cocaine? Seems to me that the border is pretty porous where drugs are concerned. +06/29/2018,Economists,@BruceBartlett,"@pat_margulies Many shelf dates are bullshit. Lots of drugs still work long, long after their expiration date. The… https://t.co/FvyKFV1AJn" +06/29/2018,Economists,@BruceBartlett,Well-to-do white women may think they can always go to Canada or Mexico for an abortion after Trump's SCOTUS pick p… https://t.co/o6A1ffzK9p +06/29/2018,Economists,@BruceBartlett,"@KGraceHill Sadly, neither do any of his supporters." +06/29/2018,Economists,@BruceBartlett,Free advice--any pharmaceutical company manufacturing abortion pills should move their production offshore. Will so… https://t.co/K6gkpxg9kx +06/29/2018,Economists,@BruceBartlett,@LibraQueenLibby Too busy expending 100% of its resources to raise money to pay consultants to help it raise more money. +06/29/2018,Economists,@BruceBartlett,Trump has made more money from the presidency than any president in history. (Because every president before him kn… https://t.co/0moeL9jlTe +06/29/2018,Economists,@BruceBartlett,@Profepps So I should look into black market opportunities? +06/29/2018,Economists,@BruceBartlett,@AlNewman_ @SteveSchmidtSES @TheRickWilson @murphymike @stuartpstevens Democrats never ask my advice. I doubt they… https://t.co/SurGMp4Evd +06/29/2018,Economists,@BruceBartlett,"Assuming Trump nominates an anti-choice right-winger to SCOTUS and he/she votes to reverse Roe, would buying the st… https://t.co/x54MqnYJXs" +06/29/2018,Economists,@BruceBartlett,"Worth remembering that real growth has little effect on revenues. Nominal growth is what matters, which means that… https://t.co/z8sx0ts2tI" +06/29/2018,Economists,@BruceBartlett,@thesnowman21 Depressing but well within the realm of possibility. +06/29/2018,Economists,@BruceBartlett,@XLProfessor @NickTimiraos @Fahrenthold Larry has a known history of forecasting that things he WANTS to happen WIL… https://t.co/6cMdAv3Fhw +06/29/2018,Economists,@BruceBartlett,I think progressive groups plan to wait until Trump names his SCOTUS pick in hopes he will nominate someone who is… https://t.co/uwIpLK5iHY +06/29/2018,Economists,@BruceBartlett,Where are the progressive and choice groups running ads warning Trump against nomination of an extremist justice wh… https://t.co/0FHdOpKtXU +06/29/2018,Economists,@BruceBartlett,Before the shooting it was serious? https://t.co/CtgjeqGAWk +06/29/2018,Economists,@BruceBartlett,@Noahpinion One virtue of single payer is the government using monopsony power to lower prices of inputs. Just subsiding raises costs. +06/29/2018,Economists,@BruceBartlett,How soon after Trump's next appointee to SCOTUS votes to reverse Roe does a healthy market in abortion pills become… https://t.co/IssBZOekCW +06/29/2018,Economists,@BruceBartlett,"@palmer_becky If I was Canada, I'd build a wall across our border." +06/29/2018,Economists,@BruceBartlett,When Republicans ban abortion I wonder if they will make an exception for women impregnated by black men? Or women… https://t.co/bvqlm6lZhr +06/29/2018,Economists,@BruceBartlett,@Noahpinion But swift boats (or whatever that was about). +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 Small population states. The bulk of the population will have relatively easy access. +06/29/2018,Economists,@BruceBartlett,@MassivRuss They can just amend the Mann Act. +06/29/2018,Economists,@BruceBartlett,"If worse comes to worse, there are always foreign countries. I anticipate many abortion clinics will open just acro… https://t.co/TR6lklDw3L" +06/29/2018,Economists,@BruceBartlett,"Needless to say, conservatives who worship federalism will heartily endorse a national law against abortion. Screw states rights." +06/29/2018,Economists,@BruceBartlett,Best case scenario--the Trump court simply reverses Roe and the issue returns to the states. Some will allow aborti… https://t.co/XmdiVJKRkf +06/29/2018,Economists,@BruceBartlett,"After Trump's SCOTUS pick votes with the other four Republicans to ban abortion, the physician's office that serves… https://t.co/IEJRoJ30tL" +06/29/2018,Economists,@BruceBartlett,@WaltWeberJr Because civility. +06/29/2018,Economists,@BruceBartlett,@NickTimiraos okay +06/29/2018,Economists,@BruceBartlett,"RT @RogueSNRadvisor: So to recap: Healthy, lifetime appointee Justice Kennedy randomly steps down days before stunning NYT report linking h…" +06/29/2018,Economists,@BruceBartlett,RT @shannonrwatts: Senator who has taken more than $3 million from the @NRA is upset a gun violence victim used the word “fuck” after she w… +06/29/2018,Economists,@BruceBartlett,@NickTimiraos Why can't you bring yourself to say Larry is just lying? Do you think he is confused or too unsophist… https://t.co/pDTCEu5gzO +06/29/2018,Economists,@BruceBartlett,"Prediction--Trump, McConnell & Trump's SCOTUS pick will all lie to Collins & Murkowski about Roe as settled law--an… https://t.co/UQLbF5o13W" +06/29/2018,Economists,@BruceBartlett,@moorehn I am not giving up my air conditioning. Period. +06/29/2018,Economists,@BruceBartlett,"Arresting & removing the children of families requesting asylum in the US, not attempting to cross the border illeg… https://t.co/AeaOUvlKyb" +06/29/2018,Economists,@BruceBartlett,Republicans will never completely abolish abortion. It will always be available for wealthy white women. +06/29/2018,Economists,@BruceBartlett,"RT @TPM: Marshall: ""Justice Kennedy’s son Justin was the global head of real estate capital markets at Deutsche Bank and a key lifeline of…" +06/29/2018,Economists,@BruceBartlett,@horqua @ShaunKing @DLoesch You are a nicer person than I am. I block them permanently. +06/29/2018,Economists,@BruceBartlett,@ChuckOlson5 At least Larry is good at it. Steve Moore does the same thing but can't hide the fact that he is a com… https://t.co/1V2EEdGBN3 +06/29/2018,Economists,@BruceBartlett,@ChuckOlson5 Larry has a legacy? His whole professional life has been about telling rich and powerful people exactl… https://t.co/PZAwkLeTi7 +06/29/2018,Economists,@BruceBartlett,"""thoughts & prayers"" https://t.co/yJkxhPzdSg" +06/29/2018,Economists,@BruceBartlett,"RT @ShaunKing: 1. Let's be clear here. + +The NRA's @DLoesch has absolutely called for journalists to be beaten to death. + +She denies it, b…" +06/29/2018,Economists,@BruceBartlett,"@ChuckOlson5 Larry must lie to keep his job, learned from Trump that no one really cares." +06/29/2018,Economists,@BruceBartlett,"@MikeDonnellyJr @KlasfeldReports They don't have the resources to dig for stories any more, must wait for handouts… https://t.co/cx7PBXj1GB" +06/29/2018,Economists,@BruceBartlett,They will just as soon as they have the 5th vote to repeal Roe confirmed on SCOTUS and one more big tax cut for the… https://t.co/sbwkOCS47r +06/29/2018,Economists,@BruceBartlett,Larry Kudlow wants the Treasury to index capital gains by regulation. It absolutely does not have the authority to… https://t.co/klK0zcUUG1 +06/29/2018,Economists,@BruceBartlett,RT @SherylNYT: Trump strategically stocked courts with Kennedy clerks. Also had a business relationship with Kennedy's son. Fascinating @ad… +06/29/2018,Economists,@BruceBartlett,@tinaissa @SenateMajLdr @BarackObama 10 percent of Obama voters voted for Trump. I guess they forgot or just didn't… https://t.co/9AUQd2jp9r +06/29/2018,Economists,@BruceBartlett,"@danfarina Read about the fall of the Roman Republic and, later, the fall of the Roman Empire. Sobering. I think we… https://t.co/KY2FLLTOxg" +06/29/2018,Economists,@BruceBartlett,@danpincus @ronny_corral @cliffschecter @cmerlin He can do anything. The Senate is not a democracy. +06/29/2018,Economists,@BruceBartlett,@lcby I had no idea Moveon was still in business. Haven't heard word one about it since 2008. +06/29/2018,Economists,@BruceBartlett,RT @a35362: Trump's IRS nominee didn't disclose properties were at Trump-branded hotel https://t.co/fG4XEdPiIz via @politico +06/29/2018,Economists,@BruceBartlett,"It's not creeping, it's galloping. https://t.co/bJDLXIf4SV" +06/29/2018,Economists,@BruceBartlett,"RT @frankthorp: Capital Gazette staff writer on CNN just now; “Thanks for your prayers, but I couldn’t give a f—k about them if there’s not…" +06/29/2018,Economists,@BruceBartlett,"RT @CharlesPPierce: ""I told the president that he has a chance to unite the country if he magically turned into Dwight Eisenhower."" https:/…" +06/29/2018,Economists,@BruceBartlett,"@cmerlin The truth is more mundane--TV requires images. If they don't have any, there's nothing to report. And news… https://t.co/AAo4RWlmDJ" +06/29/2018,Economists,@BruceBartlett,@marylougeorge2 @RepublicanSwine This country has never been a democracy. The Electoral College is proof of that. +06/29/2018,Economists,@BruceBartlett,@PhilBl55 I don't know how to have an impact. But I do know that the whole point of a demonstration is to get atten… https://t.co/5lUiUeGquU +06/29/2018,Economists,@BruceBartlett,"@PhilBl55 I've lost track of the number of big Washington demonstrations that got no coverage, had zero impact. My… https://t.co/CxFRT688Iv" +06/29/2018,Economists,@BruceBartlett,"@cmerlin Fox is not a news organization, it is a propaganda organization more akin to an advertising or PR firm. It… https://t.co/yi5tgrNg21" +06/29/2018,Economists,@BruceBartlett,@cmerlin Reporters think that if they know all the news there is to know on a topic then everyone else does too. Un… https://t.co/heEnliuGsl +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch https://t.co/04gHy7qOTi +06/29/2018,Economists,@BruceBartlett,@marcahertz George H.W. Bush was destroyed by his own party for having the courage of his convictions to raise taxe… https://t.co/BVvhRHckAz +06/29/2018,Economists,@BruceBartlett,@Jeff424V Has been since 1994. +06/29/2018,Economists,@BruceBartlett,@realworldrj It also makes the court's liberals look far more left-wing than they really are. +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch Louise Mensch is a crackpot. Ignore her. A female Alex Jones. +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch I expect Mueller's report the day after the election in 2020. +06/29/2018,Economists,@BruceBartlett,I am old enough to remember when conservatives railed against the unelected Supreme Court making law and subverting… https://t.co/0w6ywl5DPH +06/29/2018,Economists,@BruceBartlett,Link: https://t.co/aETS0ATMBE +06/29/2018,Economists,@BruceBartlett,"With Anthony Kennedy gone from SCOTUS, the Washington Post has decide that right-wing John Roberts is the court's n… https://t.co/oaaVfa9EQg" +06/29/2018,Economists,@BruceBartlett,@paogle I could have made the same comment yesterday when the media was still obsessing about Sarah Sanders and her restaurant problems. +06/29/2018,Economists,@BruceBartlett,"RT @crooksandliars: Here you go -- the full Twitter stream of the alleged shooter in PDF format, since I fully expect Twitter to pull this…" +06/29/2018,Economists,@BruceBartlett,I didn't mean to imply that nothing is happening. But my Twitter feed is heavy on elite DC journalists. Children in… https://t.co/pN8TaNhDvh +06/28/2018,Economists,@BruceBartlett,"I'm not saying there are no tweets, just that none have come to my attention, which means there aren't very many of… https://t.co/m0yycfF9cb" +06/28/2018,Economists,@BruceBartlett,I haven't seen one tweet today about children being imprisoned in cages because their parents asked for asylum in t… https://t.co/g3ARFdZZpD +06/28/2018,Economists,@BruceBartlett,RT @JWGOP: The most partisan during Watergate hearings didn't conduct themselves as clownishly as @Jim_Jordan who is a demagogic danger des… +06/28/2018,Economists,@BruceBartlett,"RT @ShaunKing: This police officer in Lancaster, Pennsylvania should be fired immediately. After he is fired, the District Attorney should…" +06/28/2018,Economists,@BruceBartlett,@CharlesPPierce Susan Collins is right up there with him. +06/28/2018,Economists,@BruceBartlett,No he didn't. That would require some intelligence and a degree of self-awareness. https://t.co/WBsKlz8ahU +06/28/2018,Economists,@BruceBartlett,@ringsabell Producers believe that the American people want to hear lies spouted by an idiot. +06/28/2018,Economists,@BruceBartlett,"@danpincus Yeah, just like they did on Gorsuch." +06/28/2018,Economists,@BruceBartlett,Thoughts & prayers yada yada--Every Republican officeholder re today's mass shooting. +06/28/2018,Economists,@BruceBartlett,RT @CharlesPPierce: Jeff Flake is the emptiest suit in American politics https://t.co/Nn9SF0XPoT https://t.co/0cdbea4jtv +06/28/2018,Economists,@BruceBartlett,@TimothyNoah1 What about civil rights? +06/28/2018,Economists,@BruceBartlett,@MahometSheena That would be foolish. +06/28/2018,Economists,@BruceBartlett,Why Richard Painter Felt the Need to Switch from the Republican to the Democratic Party https://t.co/SU0Li2clzT +06/28/2018,Economists,@BruceBartlett,@Random_Shawness Can't predict when the right case could arise. May take years. +06/28/2018,Economists,@BruceBartlett,"Prediction--Trump's SCOTUS nominee will not say how he/she will vote on Roe, no matter how many times asked. Female… https://t.co/QFmifAJumd" +06/28/2018,Economists,@BruceBartlett,@schwanderer He might be on more. Just won't get paid by CNN for doing it. +06/28/2018,Economists,@BruceBartlett,Stephen Moore may join White House staff. But where will CNN find another blithering idiot to replace him? https://t.co/0JgD20q2ff +06/28/2018,Economists,@BruceBartlett,@ralphferro Can you blame them? +06/28/2018,Economists,@BruceBartlett,@Green_Footballs https://t.co/3rz27Qc5em +06/28/2018,Economists,@BruceBartlett,"RT @Green_Footballs: We still don’t know the details of what happened at the Capital Gazette, but a day ago Milo Yiannopoulos called for jo…" +06/28/2018,Economists,@BruceBartlett,@danpincus @cmerlin One of the Democrats from Virginia or Maryland because the others will have to leave town to av… https://t.co/BsOHs2aovy +06/28/2018,Economists,@BruceBartlett,Not hearing any libertarians defend the Red Hen owner's right to kick out Sarah Sanders. I thought they believe pri… https://t.co/8u8mqtLroJ +06/28/2018,Economists,@BruceBartlett,"@danpincus @cmerlin I don't think Pence's vote would count for the purposes of a quorum. On the other hand, if ther… https://t.co/XSojEmjlRL" +06/28/2018,Economists,@BruceBartlett,@danpincus @cmerlin Senate needs 51 senators for a quorum to conduct business--present and answering a quorum call.… https://t.co/rTNtWHzbVR +06/28/2018,Economists,@BruceBartlett,Never saw that coming (sarcasm). https://t.co/qvH3rXJHD6 +06/28/2018,Economists,@BruceBartlett,@LPinAustin How did they know that Democrats would be such wimps? +06/28/2018,Economists,@BruceBartlett,@FrankNeuville Look at the lunatic they elected as governor--twice. +06/28/2018,Economists,@BruceBartlett,@thatchickinpa I don't want the Trump era to end in another Great Depression and world war. +06/28/2018,Economists,@BruceBartlett,Too bad Democrats don't care about the Supreme Court. This would be a good election issue. https://t.co/ERX6dzfm0H +06/28/2018,Economists,@BruceBartlett,"Collins: ""Heads, I win; tails, you lose."" https://t.co/6ylTfHgWxH" +06/28/2018,Economists,@BruceBartlett,More. https://t.co/Yj5PoadhYu +06/28/2018,Economists,@BruceBartlett,"RT @JRubinBlogger: every Dem running for House should play a clip of Jim Jordan. This is today's GOP - nuts, rude, irresponsible" +06/28/2018,Economists,@BruceBartlett,I think the central question in American politics is whether Trump's Republican base supports him more or less than… https://t.co/I7zq0aehDm +06/28/2018,Economists,@BruceBartlett,Will Lear's daughters become sons? https://t.co/2tdQJIqrMY +06/28/2018,Economists,@BruceBartlett,"@Sandwichman_eh One can certainly make that argument, although that was not the case with the Democratic Party. Non… https://t.co/s0hOXGWuPB" +06/28/2018,Economists,@BruceBartlett,@FerrinAugustine That's because voters infantilize them by being unwilling or unable to grasp any idea that is remo… https://t.co/Xf6ewBy7DP +06/28/2018,Economists,@BruceBartlett,"RT @RadioFreeTom: When people ask why I want divided government, it's because I know Republicans would have gone to the mattresses against…" +06/28/2018,Economists,@BruceBartlett,Maybe because McCain ran with a female version of Trump only not as smart. https://t.co/5yzty6joRq +06/28/2018,Economists,@BruceBartlett,"In any case, it is essentially a work of history and the history is solid, fully documented." +06/28/2018,Economists,@BruceBartlett,"I wrote this book when I was still a Republican, which may put off some progressive readers. But my goal was to enc… https://t.co/8Jt5XTUadi" +06/28/2018,Economists,@BruceBartlett,To understand today's Republican Party you have to understand the pre-civil rights Democratic Party. It controlled… https://t.co/Cfi8VWsvKy +06/28/2018,Economists,@BruceBartlett,Republican civility in 1960. https://t.co/gGrv5SksLs https://t.co/xt6ZW3mA4P +06/28/2018,Economists,@BruceBartlett,Yes Yes Yes. Death to junk video! https://t.co/N0ZQCjkGjS +06/28/2018,Economists,@BruceBartlett,@takingaction4us @CharlesPPierce @Dnlmsstch Good analogy. +06/28/2018,Economists,@BruceBartlett,"RT @KlasfeldReports: These NBC tweets looked a lot like a DOD press release. + +That’s because they are, nearly verbatim. https://t.co/57QVMd…" +06/28/2018,Economists,@BruceBartlett,"That would be private prison operators that are chronically understaffed, unaccountable and inhumane. And that was… https://t.co/LXJPXaEOyV" +06/28/2018,Economists,@BruceBartlett,@CharlesPPierce @Dnlmsstch My point has to do with how Republicans perceived the episode. But now that you mention… https://t.co/Tgmom7KMj8 +06/28/2018,Economists,@BruceBartlett,@miri_iron @CharlesPPierce @Dnlmsstch The argument against that is if it wasn't Bork it would have been the next gu… https://t.co/QTmFvWLHH3 +06/28/2018,Economists,@BruceBartlett,"@cmerlin I hesitate to accuse an African American of underestimating the depth of racism in this country, but I thi… https://t.co/sl77FZWXtf" +06/28/2018,Economists,@BruceBartlett,@cmerlin I think Obama thought the election of our first black president meant that society had changed. By 2010 he… https://t.co/4Adm16uhUC +06/28/2018,Economists,@BruceBartlett,"@CharlesPPierce @Dnlmsstch Also, I think Bork was psychologically scarred by his experience, which in part led to h… https://t.co/KjC6d2Yvha" +06/28/2018,Economists,@BruceBartlett,@CharlesPPierce @Dnlmsstch We can't replay history. But I think one can argue that the way Democrats treated Bork i… https://t.co/cwX46acr3Y +06/28/2018,Economists,@BruceBartlett,@cmerlin @kdossantos Blame the idiots who voted for Jill Stein because Hillary was no better than Trump--a view Jill still holds. +06/28/2018,Economists,@BruceBartlett,"@wilkehagen1 @CharlesPPierce That was the least of Bork's sins. Actually, his worst was gutting the underlying prem… https://t.co/ZDY631a9iJ" +06/28/2018,Economists,@BruceBartlett,"@fdwilkinson I agree completely. Young people will save us. But they lack experience, leadership, strategy, resourc… https://t.co/1xMOyHMRJi" +06/28/2018,Economists,@BruceBartlett,@cmerlin Obama was a caretaker president who drained all of the emotion from his party by basically doing nothing after 2009. +06/28/2018,Economists,@BruceBartlett,@fdwilkinson Do rats trapped in a corner have hope? I think not. But they still fight like hell. Maybe losing hope… https://t.co/1hHpTFuiWq +06/28/2018,Economists,@BruceBartlett,@cmerlin They sat out because Democrats gave them no reason to vote. What goes around comes around. +06/28/2018,Economists,@BruceBartlett,@Thunderballs2 What are you smoking? Can I have some? Or don't you know who the Attorney General is? +06/28/2018,Economists,@BruceBartlett,@fdwilkinson Or it can turn totally black. Don't get people's hopes up when there is absolutely no evidence for optimism. +06/28/2018,Economists,@BruceBartlett,"Support for GOP tax law erodes https://t.co/Zw9RJ9yrp8 Because taxes weren't cut enough, every Republican believes. https://t.co/dBueO4y3NU" +06/28/2018,Economists,@BruceBartlett,@cmerlin Democrats are far too beholden to the media for their marching orders. The collapse of the media is behind… https://t.co/sz8vGi3NHA +07/01/2018,Economists,@mileskimball,@tylercowen Thanks! +07/01/2018,Economists,@mileskimball,"@de1ong On Germany reflating (from 2013): + +https://t.co/YoyJwl4hVF" +07/01/2018,Economists,@mileskimball,@tylercowen What is BA? +07/01/2018,Economists,@mileskimball,RT @bopinion: Don’t expect a Chinese baby boom https://t.co/lRCnmtzXRk https://t.co/1tojAhqf4k +07/01/2018,Economists,@mileskimball,@MFSPOOK @stiglitzian Wow! Do you have a link to Joe's support of the euro? +07/01/2018,Economists,@mileskimball,Joe Stiglitz @stiglitzian has the same recommendation I have about the euro: short of moving toward a banking and f… https://t.co/eD88aGJzkL +07/01/2018,Economists,@mileskimball,"Today's post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +06/30/2018,Economists,@mileskimball,RT @dbergstresser: @MattBruenig @matthewstoller @MattHammington @davidimarcus The intellectual history of the un-mainstreaming of Henry Geo… +06/30/2018,Economists,@mileskimball,"@sjdyorke You might want to browse my blog archive for things you find interesting for the Property Chronicle: + +https://t.co/Y2Vhxgza8Y" +06/30/2018,Economists,@mileskimball,@sjdyorke I'm flattered! I don't have time to do an article specifically for the Property Chronicle each month. How… https://t.co/izO88rSGaK +06/30/2018,Economists,@mileskimball,"New post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +06/30/2018,Economists,@mileskimball,"RT @RoamtheDomes: When people save more, the whole economy benefits. That's why #WorkandSave matters https://t.co/iYNYIjtGuw via @bopinion" +06/30/2018,Economists,@mileskimball,"Don't miss Thursday's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +https://t.co/vgoC99mdhy" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: My post ""Helicopter Drops of Money Are Not the Answer"" collects links about my National Lines of Credit idea. + +https://t…" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Katherine Schafler—The 4 Questions Everyone Asks Constantly"" + +Do you see me? +Do you care that I’m here? +A…" +06/30/2018,Economists,@mileskimball,"On retirement planning, I got an add for Hanson McClain's online Learning Library. From a cursory inspection, it do… https://t.co/hKky9qj9ir" +06/30/2018,Economists,@mileskimball,@jedgarnaut @Noahpinion Thanks! +06/30/2018,Economists,@mileskimball,"My post ""Helicopter Drops of Money Are Not the Answer"" collects links about my National Lines of Credit idea. + +https://t.co/oipaTPU0T0" +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion I'm thinking about it more the other way around. A higher capital stock lowers the long-r… https://t.co/EkHxh4TLaR +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion One nice way to effectively require extra saving is to remove the annual cap on social se… https://t.co/N7iJeOwxcI +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion Indeed, raising the capital/labor ratio and lowering LR rates is such an important way to… https://t.co/pwg67E1dUo" +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion It is a big redesign of the economy to accommodate a high capital/labor ratio, low intere… https://t.co/3YEnc4fqxm" +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion One thing that my editor took out was my invocation of Piketty. If we can get the interes… https://t.co/DD3VgErEI3 +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion That is why I specify ""with good monetary policy."" I also didn't have space enough to say… https://t.co/m7RUs0cklL" +06/30/2018,Economists,@mileskimball,"Today's link: + +""Katherine Schafler—The 4 Questions Everyone Asks Constantly"" + +Do you see me? +Do you care that I’m h… https://t.co/va3kM45yHY" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: I added before and after pictures to ""A Barycentric Autobiography"": + +https://t.co/GHaP2tH2bA https://t.co/bRicYNC7SR" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Maria Popova on the Virtue of Being Willing to Look Foolish"" + +@brainpicker + +https://t.co/cCkQqc33tX" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Martin A. Schwartz: The Willingness to Feel Stupid Is the Key to Scientific Progress"" + +https://t.co/pjshAH93iz" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""On Perfectionism"" + +https://t.co/L45eiRO8gB" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Which Is Worse for You: Sugar or Fat?"" + +https://t.co/NTwHf2F1WD" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Don't miss ""The Problem with Processed Food"" + +https://t.co/7jbVMt1I5J" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""On Teaching and Learning Macroeconomics"" + +https://t.co/KhlJlShPpg" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Kristin Johnson on How Depressing It Is to Be a Lawyer"" + +https://t.co/Yxc5tujm2C" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits when p…" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: I used yesterday's post as an opportunity to line up links to other posts about math learning as well. Take a look: + +""Gab…" +06/30/2018,Economists,@mileskimball,"Imaginary inflation is a derangement of many highly ideological commentators. + +Joseph C. Sternberg reviews “Unelec… https://t.co/68ADUezoMu" +06/30/2018,Economists,@mileskimball,Joseph Sternberg is just making stuff up when he says “wage earners see their salaries endangered by inflation.” Wa… https://t.co/DRR6lTazkS +06/29/2018,Economists,@mileskimball,"@robbpreston @Noahpinion As it is now, the low income folks get almost none of the benefit of the incentive and the… https://t.co/Nj2eClad3w" +06/29/2018,Economists,@mileskimball,RT @bkavoussi: .⁦@mileskimball⁩ notes that a higher savings rate would reduce the trade deficit and make more funds available for research… +06/29/2018,Economists,@mileskimball,"RT @RetiremntWisdom: Nudging people into retirement plans has some downside, but @MilesKimball finds way more upside https://t.co/UOhzVQ0iB…" +06/29/2018,Economists,@mileskimball,@robbpreston @Noahpinion I am holding fixed the existence of 401(k)s. Relative to 401(k)s without automatic enrollm… https://t.co/L28bXdVPgZ +06/29/2018,Economists,@mileskimball,"@browntom1234 It would be shocking if it wasn't, given the business cycle improvement." +06/29/2018,Economists,@mileskimball,@RobertFrickNFCU Thanks! +06/29/2018,Economists,@mileskimball,RT @JPSargeant78: Nudge nudge ... ⁦@mileskimball⁩ first Bloomberg piece on saving for retirement in the US. (Congrats!) https://t.co/1nldr… +06/29/2018,Economists,@mileskimball,@JPSargeant78 Thanks! +06/29/2018,Economists,@mileskimball,"To me, an obvious middle ground: Everyone should have privacy for donations to an organization or set of similar or… https://t.co/pJw2dpNRsC" +06/29/2018,Economists,@mileskimball,Kudos to Boston Fed Chief Eric Rosengren for calling for an increase in the countercyclical capital buffer. It does… https://t.co/ICc5i86U4Z +06/29/2018,Economists,@mileskimball,The Supreme Court shouldn’t allow obstructions to legal abortion procedures. That effectively makes two different a… https://t.co/f3DWafjobi +06/29/2018,Economists,@mileskimball,@RobertFrickNFCU I hope you could tell from the article that I agree with you. +06/29/2018,Economists,@mileskimball,@RedwoodGirl @AlisonB916 @Noahpinion Note that I said people with low incomes don't need to save for retirement. Bu… https://t.co/LCYccHbicW +06/29/2018,Economists,@mileskimball,@darshnadc @Noahpinion @gabster0191 That is wonderful to hear. Kudos for your courage! +06/29/2018,Economists,@mileskimball,@browntom1234 The business cycle has a big effect on the deficit. Better monetary policy can keep all of our recess… https://t.co/X5OiXJ1jvn +06/29/2018,Economists,@mileskimball,I used yesterday's post as an opportunity to line up links to other posts about math learning as well. Take a look:… https://t.co/K0SFgKP0W2 +06/29/2018,Economists,@mileskimball,@KeabetsweKB @Noahpinion Thanks! +06/29/2018,Economists,@mileskimball,@Noahpinion @tylercowen I don't know if we can find anything I disagree about with Tyler! If you and Tyler disagree… https://t.co/UHWxF6Ay5f +06/29/2018,Economists,@mileskimball,@barspittercask @Noahpinion Thanks! +06/29/2018,Economists,@mileskimball,"@Noahpinion Thanks, Noah!" +06/29/2018,Economists,@mileskimball,RT @MikeKlimes_MM: Interesting article: Fight the Backlash Against Retirement Planning Nudge - Bloomberg https://t.co/1ZiQZ0mfxi +06/29/2018,Economists,@mileskimball,@DrMcSwag How does this my Bloomberg piece on retirement saving relate to Kennedy? +06/29/2018,Economists,@mileskimball,"My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits… https://t.co/0048ODUr69" +06/29/2018,Economists,@mileskimball,"RT @bopinion: Nudging people into retirement plans has some downside, but @MilesKimball finds way more upside https://t.co/X6WFLSG91T https…" +06/29/2018,Economists,@mileskimball,"Was the Reagan administration proto-YIMBY? + +https://t.co/ptYPjwmDIi" +06/29/2018,Economists,@mileskimball,@jdavidsonlawyer That is a definite antitrust problem. +06/29/2018,Economists,@mileskimball,"Today's link: + +""Kristin Johnson on How Depressing It Is to Be a Lawyer"" + +https://t.co/Yxc5tujm2C" +06/29/2018,Economists,@mileskimball,@dacaagedout Thanks! +06/29/2018,Economists,@mileskimball,"@ryanjyoder Are you related to Seth Yoder? + +https://t.co/xuLzUi7Xrl" +06/29/2018,Economists,@mileskimball,"RT @gabster0191: The lovely @mileskimball featured my post on failure on his blog. +All part of my grand plan to have my photo pop up every…" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: Protective Tariffs are as Much Applications of Force as are Blockading Squadrons"" + +https://t.co/ggA5yn8NiE" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: “… it is true, as Macaulay said, that if large pecuniary interests were concerned in denying the attraction of gravitatio…" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@Noahpinion +https://t.co/vgoC99mdhy" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: Tuesday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: For those of us in the middle on abortion, the shift in the Supreme Court isn't likely to make that dramatic a difference…" +06/28/2018,Economists,@mileskimball,"For those of us in the middle on abortion, the shift in the Supreme Court isn't likely to make that dramatic a diff… https://t.co/pSj6QdaZ8y" +06/28/2018,Economists,@mileskimball,"There is still the possibility that after tenure, people pursue ideas that are extremely valuable, but won't be app… https://t.co/qo3QtXJ8G2" +06/28/2018,Economists,@mileskimball,@FriedrichHayek @iowahawkblog @ChrisNowinski1 @kimberlyarchie @steve_hanke @JoHenrich @GarettJones @RandyEBarnett I'm honored! +06/28/2018,Economists,@mileskimball,"Tuesday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/28/2018,Economists,@mileskimball,Both Thomas Lee (mentioned in the article as a possible SCOTUS pick) and his father Rex Lee were at one time collea… https://t.co/q85LvAbvFO +06/28/2018,Economists,@mileskimball,"@jodiecongirl Good point. Besides possibly lower effort after tenure, luck in getting the publications that give te… https://t.co/vPMzwZX3Ea" +06/28/2018,Economists,@mileskimball,"""we study whether the granting of tenure leads faculty to pursue riskier ideas. ... both the number of publications… https://t.co/G9GSR62qAH" +06/28/2018,Economists,@mileskimball,"Today's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@Noahpinion +https://t.co/vgoC99mdhy" +06/28/2018,Economists,@mileskimball,@gabster0191 @Noahpinion My pleasure! +06/28/2018,Economists,@mileskimball,"New post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@gabster0191 +https://t.co/vgoC99mdhy" +06/28/2018,Economists,@mileskimball,@newcurrency Thanks! +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Transformation of Songwriting: From Melody-and-Lyrics to Track-and-Hook"" + +https://t.co/dF1ekmfwab" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George on the Value of Transparent Theory"" + +https://t.co/wFYZqZzW3I" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George Eloquently Makes the Case that Correlation Is Not Causation"" + +https://t.co/Gt6rG7dspQ" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: That Those Who Advocate Any Extension of Freedom Choose to Go No Further than Suits Their Own Special Purp…" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: Why the Citizenry Needs to Understand Economics"" + +https://t.co/ddjTwAecT7" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Keith Urban on Being Unstoppable"" + +https://t.co/xLiKqcbzUV" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Great Sacrifice"" + +https://t.co/bFUJn3cHNk" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Spell of Mathematics"" + +https://t.co/oUmXlcqH5F" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: Thursday's post: + +""Alexander Napolitan on GMOs"" + +https://t.co/Sx1YMM0StX" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""How Sugar, Too Much Protein, Inflammation and Injury Could Drive Epigenetic Cellular Evolution Toward Cancer"" + +https://t…" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""From Each Individual as Judge, Jury and Executioner to Each Nation as Judge, Jury and Executioner"" + +https://t.co/Pk70toR…" +06/27/2018,Economists,@mileskimball,"@dcodea That is not how I took it. I am probably interpreting according to my own beliefs, but I think there is uti… https://t.co/a7UCnSCuFV" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""The Central Bank is Not Just Navigating through a Fog; It is Steering with a Delay"" + +https://t.co/tihbEtPxhv" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""How the Romans Made a Large Territory 'Rome'"" + +https://t.co/yGPIvTs5Dv" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""Kevin Grier and Norman Maynard on the Economic Consequences of Hugo Chavez"" + +https://t.co/4YFjEucRKk" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""Critical Reading: Apprentice Level"" + +https://t.co/Vlg8g2KbDc" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: Yesterday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +2. Examini…" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +1. After C…" +06/27/2018,Economists,@mileskimball,RT @mileskimball: I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my more peop… +06/27/2018,Economists,@mileskimball,RT @mileskimball: I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my more peop… +06/27/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Ken Rogoff: Robots Mean China's Large Population Is Not As Big an Advantage in Its Chances to Become Worl…" +06/27/2018,Economists,@mileskimball,"RT @igordigiovanni: ""China might lead the digital future if the US drops the ball, but it won’t become the dominant global power simply bec…" +06/27/2018,Economists,@mileskimball,"@dcodea It was a poorly chosen phrase. What he meant was ""regardless of easily measured outcomes.""" +06/27/2018,Economists,@mileskimball,@newcurrency But I am not aware of any other free country with Western values that does military affairs seriously… https://t.co/uBG7YrbXDD +06/27/2018,Economists,@mileskimball,"@newcurrency If US national saving were positive, then the US government is able to borrow from its own people. If… https://t.co/HQLQH5A2Wo" +06/27/2018,Economists,@mileskimball,The Supreme Court’s vote to bar public-employee contracts requiring workers to pay union dues will likely be felt f… https://t.co/a4o4rKoMzN +06/27/2018,Economists,@mileskimball,"RT @jlounsbury59: Thread: + +China and the world economy. + +Reinhart and Rogoff. + +Debt and growth. + +Good stuff. https://t.co/3Bk2Hl1ugb" +06/27/2018,Economists,@mileskimball,"Letting merchants express a preference by ""steering"" helps get customer and merchant to the Pareto frontier. That's… https://t.co/s8oDYvFBMQ" +06/27/2018,Economists,@mileskimball,The Wall Street Journal’s claim that contract provisions that prevent merchants from customers toward cards that gi… https://t.co/pzhlNFDwWz +06/27/2018,Economists,@mileskimball,"I think it is possible to raise the US saving rate. See + +""How Increasing Retirement Saving Could Give America More… https://t.co/J81KfxzxXT" +06/27/2018,Economists,@mileskimball,@newcurrency Thanks! +06/27/2018,Economists,@mileskimball,@newcurrency It doesn't have to be the US that becomes the superpower by the Ben Franklin strategy. It could be Aus… https://t.co/dwbKUVA5d5 +06/27/2018,Economists,@mileskimball,"By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +2. E… https://t.co/THSl3QWfvS" +06/27/2018,Economists,@mileskimball,"By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +1. A… https://t.co/j87sMWcl02" +06/27/2018,Economists,@mileskimball,"Yesterday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/27/2018,Economists,@mileskimball,"I agree with Bobby Jindal on this: Think of the loss rich parents would feel if, regardless of which house they cho… https://t.co/qCsRi481fz" +06/27/2018,Economists,@mileskimball,"“...letting parents pick their children’s schools is valuable in itself, irrespective of outcomes.” + +—Bobby Jindal https://t.co/NS0wyRCmNx" +06/27/2018,Economists,@mileskimball,The quality of research on sexual fantasies has improved. Men’s and women’s fantasies are less different than you m… https://t.co/EaeTdaclv3 +06/27/2018,Economists,@mileskimball,I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my mor… https://t.co/yBU7vPthaj +06/27/2018,Economists,@mileskimball,I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my mor… https://t.co/ZSdpW1wREW +06/27/2018,Economists,@mileskimball,"Today's link: + +""Ken Rogoff: Robots Mean China's Large Population Is Not As Big an Advantage in Its Chances to Becom… https://t.co/OdN7NmM2Pn" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Walker Wright on the Mormon Church's Relatively Enlightened Stance on Immigration"" + +https://t.co/9iEDJfJJ…" +06/26/2018,Economists,@mileskimball,RT @BruceBartlett: The origins of the Trump voter--The Political Legacy of American Slavery https://t.co/60P8OJFS8j https://t.co/25N5JtM6EM +06/26/2018,Economists,@mileskimball,@bluser12 Thanks! +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Hollywood should rush to buy the movie rights for this book. It sounds like the excellent movie “Lincoln,” but about the…" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post on diet and health is very practical: + +""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: The great monotheisms claim a great deal of both goodness and power for their gods. But at the possibility frontier, I be…" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Watching ""American Gods"" last night and listening to Kim Hill this morning makes me think the key theological question ev…" +06/26/2018,Economists,@mileskimball,"@ModeledBehavior 1 gram carbs for what I eat. Not nothing, but tolerable. + +The carbs are much higher when you make… https://t.co/PlzBUeGZz6" +06/26/2018,Economists,@mileskimball,"@msykuta Thanks! I confess I didn't. I see, the difference is that the existence of abortion alternatives is a smal… https://t.co/I8pNmZSkeQ" +06/26/2018,Economists,@mileskimball,Wife of ousted Malaysian premier accumulated a cache of diamonds once valued at $350 million https://t.co/yGEI1M5dUm +06/26/2018,Economists,@mileskimball,I think the Supreme Court made a mistake here. Requiring a pregnancy center to inform clients that rivals to one’s… https://t.co/Wd2tgbDoY9 +06/26/2018,Economists,@mileskimball,@ModeledBehavior Full fat dressing is healthy; probably at least as healthy as meat. But meat is tasty. +06/26/2018,Economists,@mileskimball,@vhankes Thanks! +06/26/2018,Economists,@mileskimball,The great monotheisms claim a great deal of both goodness and power for their gods. But at the possibility frontier… https://t.co/ouzxy7qdEH +06/26/2018,Economists,@mileskimball,"Watching ""American Gods"" last night and listening to Kim Hill this morning makes me think the key theological quest… https://t.co/36ibP7t9g8" +06/26/2018,Economists,@mileskimball,@ElContador19 Thanks! +06/26/2018,Economists,@mileskimball,@DivadRetnuh Also don't forget the nuts and the cheese. +06/26/2018,Economists,@mileskimball,@DivadRetnuh Pretty close. I also mentioned a few squares of chocolate and a glass of almond milk with probiotic an… https://t.co/rMRwwz9vtD +06/26/2018,Economists,@mileskimball,"Today's post on diet and health is very practical: + +""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/26/2018,Economists,@mileskimball,"My 3d cousin Doug Robinson is running for Governor of Colorado. I won't endorse him, but always interesting 4 me 2… https://t.co/3BYvriZzNP" +06/26/2018,Economists,@mileskimball,"@NovakIlya @UnlearningEcon I would extend the range of objects of desire in the utility function, but otherwise, re… https://t.co/7bnR4tuDy0" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Virginia Postrel on Advocating for Abundant Housing at the Grassroots Level"" + +https://t.co/BAJiFC6ej6" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: New post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/25/2018,Economists,@mileskimball,"New post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/25/2018,Economists,@mileskimball,"I added before and after pictures to ""A Barycentric Autobiography"": + +https://t.co/GHaP2tH2bA https://t.co/bRicYNC7SR" +06/25/2018,Economists,@mileskimball,RT @BennSteil: Harvard is engaged in systematic racial discrimination of the sort that would be universally condemned - and almost certainl… +06/25/2018,Economists,@mileskimball,"@NovakIlya @UnlearningEcon No. I never did. It would be a big task. + +I might do a post about MMT, since I think I… https://t.co/06D1VtY0Zs" +06/25/2018,Economists,@mileskimball,RT @ambivalentricky: @jdavidsonlawyer @mileskimball @dandolfa describing some recent social psychology research that supports your point. U… +06/25/2018,Economists,@mileskimball,"RT @nberpubs: Portfolio rebalancing in general equilibrium, from @mileskimball, Matthew D. Shapiro, Tyler Shumway, and Jing Zhang https://t…" +06/25/2018,Economists,@mileskimball,"RT @DiracWinsAgain: @mileskimball If we don't let them die, how will they learn!?" +06/25/2018,Economists,@mileskimball,Some people are arguing against making the opioid antidote naloxone over-the-counter because that would reduce the… https://t.co/r7ZwRxztmN +06/25/2018,Economists,@mileskimball,"Flippy the robot makes burgers, cleans the grill, freeing fast-food workers to do less tedious tasks https://t.co/yhXbDFufHg" +06/25/2018,Economists,@mileskimball,"Hollywood should rush to buy the movie rights for this book. It sounds like the excellent movie “Lincoln,” but abou… https://t.co/OAjZgWp9AT" +06/25/2018,Economists,@mileskimball,"“Read Euler, read Euler. He is the master of us all.” + +—Pierre-Simon Laplace https://t.co/1X54yInbIo" +06/25/2018,Economists,@mileskimball,"Mathematics “dries up the mind” + +—King Frederick II of Prussia + +(I happen to disagree) https://t.co/1X54yInbIo" +06/25/2018,Economists,@mileskimball,Book Review: Fergus M. Bordewich on “The Woman’s Hour” by Elaine Weiss https://t.co/k3EAHl6W3V +06/25/2018,Economists,@mileskimball,"I just added before and after pictures to ""A Barycentric Autobiography"" + +https://t.co/GHaP2tH2bA https://t.co/5Cqe50pC3P" +06/25/2018,Economists,@mileskimball,@jlounsbury59 Thanks! +06/25/2018,Economists,@mileskimball,"Today's post: + +""Virginia Postrel on Advocating for Abundant Housing at the Grassroots Level"" + +https://t.co/BAJiFC6ej6" +06/25/2018,Economists,@mileskimball,RT @evankirstel: Infographic: Visualizing the World's Biggest Exporters in 2017 https://t.co/ZqXFlUDBgT… #trade #TradeWar #TariffWar https:… +06/25/2018,Economists,@mileskimball,"""The Central Bank is Not Just Navigating through a Fog; It is Steering with a Delay"" + +https://t.co/tihbEtPxhv" +06/25/2018,Economists,@mileskimball,"""How the Romans Made a Large Territory 'Rome'"" + +https://t.co/yGPIvTs5Dv" +06/25/2018,Economists,@mileskimball,"""Kevin Grier and Norman Maynard on the Economic Consequences of Hugo Chavez"" + +https://t.co/4YFjEucRKk" +06/24/2018,Economists,@mileskimball,@FriedrichHayek I'd love to see a post about what you believe is true and what you believe is still unknown about climate change. +06/24/2018,Economists,@mileskimball,"Don't miss ""The Problem with Processed Food"" + +https://t.co/7jbVMt1I5J" +06/24/2018,Economists,@mileskimball,"RT @mileskimball: ""A Barycentric Autobiography"" + +https://t.co/GHaP2tH2bA" +06/24/2018,Economists,@mileskimball,"RT @mileskimball: Teaser for Mark Lunas’s new book “Seeds of Science: Why We Got It So Wrong on GMOs.” + +Many environmentalists embrace the…" +06/24/2018,Economists,@mileskimball,RT @adam_tooze: Framing Crashed I: how Borio and Disyatat (2011) reenvisioned the run up to 2008. https://t.co/WPBuCxqKxw https://t.co/CG0N… +06/24/2018,Economists,@mileskimball,"Hugging has enough benefits, it’s probably worth the risk if you try as best you can to avoid hugging when it is un… https://t.co/TUxNBAJ7GN" +06/24/2018,Economists,@mileskimball,"Teaser for Mark Lunas’s new book “Seeds of Science: Why We Got It So Wrong on GMOs.” + +Many environmentalists embrac… https://t.co/2TSsPNkGXL" +06/24/2018,Economists,@mileskimball,Deposit rates are sticky on the upside as well as the downside. Many banks would rather give a signing bonus than r… https://t.co/eMdnYptuly +06/24/2018,Economists,@mileskimball,RT @webdevMason: Average tuition for a year at a US private college is $35k. Nobody should pay that. Offering $140k for 1 year of regular t… +06/24/2018,Economists,@mileskimball,"A fascinating convo initiated by Dan Kaminsky on the map versus the territory for complex systems: + +https://t.co/u0NGn0wdsM" +06/24/2018,Economists,@mileskimball,"Today's post: + +""Walker Wright on the Mormon Church's Relatively Enlightened Stance on Immigration"" + +https://t.co/9iEDJfJJHB" +06/24/2018,Economists,@mileskimball,RT @bopinion: Wind and solar power are getting cheaper by the minute https://t.co/1pzWSzadSF https://t.co/r8gdMbnmop +06/24/2018,Economists,@mileskimball,"""On Teaching and Learning Macroeconomics"" + +https://t.co/KhlJlShPpg" +06/24/2018,Economists,@mileskimball,"""A Barycentric Autobiography"" + +https://t.co/GHaP2tH2bA" +06/24/2018,Economists,@mileskimball,"""Critical Reading: Apprentice Level"" + +https://t.co/Vlg8g2KbDc" +06/24/2018,Economists,@mileskimball,"""From Each Individual as Judge, Jury and Executioner to Each Nation as Judge, Jury and Executioner"" + +https://t.co/Pk70toRZln" +06/24/2018,Economists,@mileskimball,"""Which Is Worse for You: Sugar or Fat?"" + +https://t.co/NTwHf2F1WD" +06/24/2018,Economists,@mileskimball,"""On Perfectionism"" + +https://t.co/L45eiRO8gB" +06/24/2018,Economists,@mileskimball,"""How Sugar, Too Much Protein, Inflammation and Injury Could Drive Epigenetic Cellular Evolution Toward Cancer"" + +https://t.co/LE7Z4wILT3" +06/24/2018,Economists,@mileskimball,"""Martin A. Schwartz: The Willingness to Feel Stupid Is the Key to Scientific Progress"" + +https://t.co/pjshAH93iz" +06/24/2018,Economists,@mileskimball,"Last Sunday's post: + +""The Social Contract According to John Locke"" + +https://t.co/CS2edqrbOL" +06/24/2018,Economists,@mileskimball,"Tuesday's post: + +""Our Delusions about 'Healthy' Snacks—Nuts to That!"" + +Some practical advice along with warnings. + +https://t.co/MeaLhf3he8" +06/24/2018,Economists,@mileskimball,"Thursday's post: + +""Alexander Napolitan on GMOs"" + +https://t.co/Sx1YMM0StX" +06/23/2018,Economists,@mileskimball,RT @GabrielRossman: Trump's appeal to an appreciable minority of non-white respondents shouldn't be *that* surprising given this demographi… +06/23/2018,Economists,@mileskimball,"“The thing about getting old is that the truth doesn’t even hurt any more.” + +—Seymour Stein. https://t.co/B8uzhpPXw0" +06/23/2018,Economists,@mileskimball,"RT @mileskimball: ""The Presumption in Favor of Any Belief Generally Entertained is Especially Weak in the Case of a Theory which Enlists th…" +06/23/2018,Economists,@mileskimball,"""a meritocratic society places the best and brightest at the top, and the best and brightest are very good at prote… https://t.co/Smx6YFPlJv" +06/23/2018,Economists,@mileskimball,Five Best: Craig L. Symonds on books about Western naval history. https://t.co/N1qM5C5Wu0 +06/23/2018,Economists,@mileskimball,An excellent review by Richard Aldous of Roger Scruton’s book “Conservatives: An Invitation to the Great Tradition.” https://t.co/nVa8ybtdoP +06/23/2018,Economists,@mileskimball,"RT @mileskimball: “Protection, moreover, has always found an effective ally in those national prejudices and hatreds which are in part the…" +06/23/2018,Economists,@mileskimball,"RT @mileskimball: ""Mustafa Akyol—The Illogic of Globalization as a Scapegoat Everywhere: Who is Taking Advantage of Whom?"" + +https://t.co/QQ…" +06/23/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Martha Nussbaum and Gideon Rosen on Vicious and Virtuous Anger"" + +https://t.co/OZRKXnZgkT" +06/27/2018,Economists,@KingEconomist,@FarayaMishakit We're used to perennial failure. +06/27/2018,Economists,@KingEconomist,This was surely just an elaborate attempt to explain to the rest of the world the meaning of schadenfreude. +06/27/2018,Economists,@KingEconomist,"I love football pundits, part 2: https://t.co/IWMSLHDo4F" +06/25/2018,Economists,@KingEconomist,"@ArmandDAngour @peterfrankopan You say Florida, I say fedora." +06/24/2018,Economists,@KingEconomist,@DoopScoop Back of the net! +06/24/2018,Economists,@KingEconomist,@ArmandDAngour @peterfrankopan I did... +06/24/2018,Economists,@KingEconomist,I love football pundits. https://t.co/cJKaGXlvsk +06/24/2018,Economists,@KingEconomist,I'm saying nothing... https://t.co/F4IORIMKow +06/23/2018,Economists,@KingEconomist,It's spookily strange that the best example so far of Brexit-related capital flight is an aeroplane manufacturer. +06/23/2018,Economists,@KingEconomist,@JeremyWarnerUK I was really hoping you were going to tell me it was rotten to the core. +06/21/2018,Economists,@KingEconomist,@rbrharrison Very funny! Although not entirely surprising! +06/20/2018,Economists,@KingEconomist,"@asentance @nickmacpherson2 Someone's got to do it! I have an idea, but no more than that at this stage." +06/20/2018,Economists,@KingEconomist,"@asentance @nickmacpherson2 1. The rot began before Brexit. 2. The rot is not uniquely British. 3. In the US, the r… https://t.co/OR7qUrFB65" +06/20/2018,Economists,@KingEconomist,"@asentance Sadly, I think lower for longer might be a Sign ""o"" the Times." +06/20/2018,Economists,@KingEconomist,"@ErikFossing @martinwolf_ Probably not. But @martinwolf_ is right, I think, to point out Italy's economic fall from… https://t.co/c7yEZIUj5N" +06/20/2018,Economists,@KingEconomist,"@FerdiGiugliano @ErikFossing Not sure I can give a full reply on Twitter. For what it's worth, here's a piece I wr… https://t.co/a9yYidWvsC" +06/20/2018,Economists,@KingEconomist,"@asentance Of course, doves might suggest you perform Close to the Edge." +06/20/2018,Economists,@KingEconomist,@ErikFossing Fair enough! I was simply noting that the eurozone is not entirely fenceless even though it has a single currency. +06/20/2018,Economists,@KingEconomist,@FerdiGiugliano @ErikFossing I totally agree. I'm just not sure that market discipline can always override politics… https://t.co/wROrU8J4qT +06/20/2018,Economists,@KingEconomist,"@asentance Surely given your BoE concerns, you have to perform Yazz's 'The only way is up'?" +06/20/2018,Economists,@KingEconomist,"@FerdiGiugliano @ErikFossing I'm not disputing that. There's a danger, however, that the politics are too easily ig… https://t.co/greFbDlOt4" +06/20/2018,Economists,@KingEconomist,@asentance Life Sentance? +06/20/2018,Economists,@KingEconomist,@FerdiGiugliano @ErikFossing I'm not disputing that they've met for years. The issue is whether the new Italian gov… https://t.co/E4K5uYfpn7 +06/20/2018,Economists,@KingEconomist,"@ErikFossing Yes, I've seen. But I'm not sure that Germany and Italy can easily have a meeting of fiscal minds." +06/20/2018,Economists,@KingEconomist,"@ErikFossing If it's about no fences, the euro 'project' is incomplete. You need an absence of both fiscal and monetary fences." +06/19/2018,Economists,@KingEconomist,Unilaterally-imposed trade sanctions threatening to escalate into a full-blown trade war? Who'd have thought? We un… https://t.co/GWK9QGEVA7 +06/19/2018,Economists,@KingEconomist,@sas99 @bankofengland 😄 +06/19/2018,Economists,@KingEconomist,@asentance @bankofengland It'll have to be Smokey Robinson next time! +06/19/2018,Economists,@KingEconomist,@fentowski You could try this for starters...and there's plenty more in the bibliography: https://t.co/6uACyTDS2p +06/19/2018,Economists,@KingEconomist,"ICYMI, me on Marvin Gaye, the @bankofengland and just exactly what's going on....https://t.co/spHbyOJe8M" +06/18/2018,Economists,@KingEconomist,"@Busecon2012 You have to thank Dave Ramsden for that...he asked the question. However, I think I can claim credit for the connection!" +06/18/2018,Economists,@KingEconomist,@asentance What a great performance. Much missed. +06/18/2018,Economists,@KingEconomist,"@asentance Yes, I tend to agree...or are we simple unaware of what's going on now? Maybe we're just too old!" +06/18/2018,Economists,@KingEconomist,@asentance I could never hope to match your immense knowledge of all things 1970s! +06/18/2018,Economists,@KingEconomist,Economics Teacher definitely knows what's going on... https://t.co/gpBLiWnKNs +06/18/2018,Economists,@KingEconomist,"Marvin Gaye, the @bankofengland and what's going on with the UK economy. Warning: Brexit hasn't helped. Me in the… https://t.co/2tpGsxEpEH" +06/18/2018,Economists,@KingEconomist,"@t0nyyates In another universe, he'd be commenting on the piece I've written in today's @EveningStandard" +06/18/2018,Economists,@KingEconomist,A rather marvellous piece on Stalingrad by @peterfrankopan.... https://t.co/rY3mI5aXTH +06/18/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s ⁦@EveningStandard⁩: Meghan’s dad speaks out & England awaits the big game + new tax hikes to pay for NHS + ⁦@Ki… +06/17/2018,Economists,@KingEconomist,@RVO_Monica Danke! +06/17/2018,Economists,@KingEconomist,@PhilipJTaylor1 I'm not sure Swiss cheese is totally rancid. +06/17/2018,Economists,@KingEconomist,That Brazilian defence is just like Swiss cheese...full of holes. +06/17/2018,Economists,@KingEconomist,Just catching up on the day's events. That second half was the kind of Mexican wall I very much like. +06/15/2018,Economists,@KingEconomist,@wsj_douglasj @bankofengland That's nothing. We used to have a Chancellor of the Exchequer by the name of Flash Gordon. +06/14/2018,Economists,@KingEconomist,@georgemagnus1 @Telegraph You shouldn't believe everything you read in the papers! +06/14/2018,Economists,@KingEconomist,"@darioperkins For a moment, you had me worried" +06/14/2018,Economists,@KingEconomist,@georgemagnus1 @Telegraph What is your bet? That a Eurasian team will win the World Cup? +06/14/2018,Economists,@KingEconomist,RT @jandehn: HaHa! Telegraph should stick to lawn bowls https://t.co/j9l0RijdDt +06/14/2018,Economists,@KingEconomist,Here's the @Telegraph's excellent World Cup coverage in which we discover either (i) Sweden is not in Europe (ii) B… https://t.co/qwGE4i1fr9 +06/13/2018,Economists,@KingEconomist,"Should there be a 'Group of Death' at the 2026 World Cup, I assume the matches will be held in Canada. That way, th… https://t.co/IAk2thcvLD" +06/12/2018,Economists,@KingEconomist,@ChrisGiles_ Well done! I had assumed it was the former England spinner. +06/12/2018,Economists,@KingEconomist,"@martinwolf_ Very interesting, but I'd have liked to have seen more on the impact of technology on the labour marke… https://t.co/mDHCcH3T7R" +06/12/2018,Economists,@KingEconomist,"@GiselleG7 @BBCLBicker Yes, but at least they had sensible haircuts." +06/12/2018,Economists,@KingEconomist,"@asentance Whatever else you do, don't tell him, Pike." +06/12/2018,Economists,@KingEconomist,"@GiselleG7 @BBCLBicker Plenty of evidence of common cause: both committed to unusual hairstyles, both to baggy trou… https://t.co/psvcPzzRcy" +06/12/2018,Economists,@KingEconomist,"@asentance Yes, although I'm not sure he was hot on the legal foundations of commerce. Personally, I rather liked t… https://t.co/M7j4uo32b7" +06/12/2018,Economists,@KingEconomist,@asentance You spiv! +06/12/2018,Economists,@KingEconomist,@ChrisGiles_ Perhaps he's prepared to make an exception for the FT's international edition. +06/12/2018,Economists,@KingEconomist,RT @rbrtrmstrng: Peace begins with ill-fitting trousers https://t.co/AmGjWd6LNw +06/12/2018,Economists,@KingEconomist,@GiselleG7 I think they've all been on constructive journalism courses. +06/11/2018,Economists,@KingEconomist,"Looks like I might not have been sufficiently pessimistic about NATO's future. In Grave New World, I suggested the… https://t.co/Ai1ESvXeqt" +06/11/2018,Economists,@KingEconomist,@TomJLines Indeed! +06/11/2018,Economists,@KingEconomist,@TomJLines Paul Kennedy's Rise & Fall of the Great Powers is rather good on this sort of thing. Relative economic d… https://t.co/PfRJBQkzHE +06/11/2018,Economists,@KingEconomist,"@TomJLines By the 30s, the UK was already in steep relative decline. It's amazing to think the world's greatest sup… https://t.co/JUAPCvwrdE" +06/11/2018,Economists,@KingEconomist,"@Jacob_Atkinson1 You might, but it's waning." +06/10/2018,Economists,@KingEconomist,@TomJLines Are you suggesting Kindleberger was right or wrong? +06/10/2018,Economists,@KingEconomist,@D_Blanchflower Europe 'responds' with a trade war. That's an interesting take on causality. +06/10/2018,Economists,@KingEconomist,@CharlesPilton Not sure Canada quite fits your narrative here. +06/10/2018,Economists,@KingEconomist,"@CharlesPilton Er, no." +06/10/2018,Economists,@KingEconomist,"In Grave New World, I argued that the US no longer had the appetite, enthusiasm or economic strength to provide int… https://t.co/P1OtFimMH5" +06/09/2018,Economists,@KingEconomist,@TheEconomist @TheEconomist has a point... +06/08/2018,Economists,@KingEconomist,"@idriches @jandehn It depends on where you start from, obviously, but I'd have thought it was more the Wild East." +06/08/2018,Economists,@KingEconomist,"@jandehn Just checking....without the year, your bet was in danger of being infinitely open ended!" +06/08/2018,Economists,@KingEconomist,"@jandehn No, which year is the H2 referring to?" +06/08/2018,Economists,@KingEconomist,@jandehn Which year? +06/08/2018,Economists,@KingEconomist,"@jandehn Yes, although I offer a possible explanation here: https://t.co/sCt96SJuIT" +06/08/2018,Economists,@KingEconomist,"As I argued in Grave New World, it's increasingly all about Oceania, Eurasia and Eastasia. Big Brother wasn't the o… https://t.co/Yu29Ynp4TL" +06/07/2018,Economists,@KingEconomist,Shock news. A statistical analysis shows we don't know who will win the World Cup. https://t.co/oGfxN3kN3w +06/05/2018,Economists,@KingEconomist,An internal market? That's hard to swallow. +06/05/2018,Economists,@KingEconomist,"@julianHjessop If that's one of your favourite charts, I think you need to get out more..." +06/05/2018,Economists,@KingEconomist,@Busecon2012 That is a much bigger worry... +06/05/2018,Economists,@KingEconomist,"ICYMI, my piece on Italy's politics and how an awkward little problem is bubbling away for the Eurozone: https://t.co/fSvbbThyLP" +06/04/2018,Economists,@KingEconomist,"@DenisMacShane @robfox45 @john_hooper @rkuttnerwrites @williamkeegan @Davidma64854542 Yes, you're right. But my pie… https://t.co/6zZspMOleM" +06/04/2018,Economists,@KingEconomist,The slow demise of La Dolce Vita. My take on Italian politics and economics and why a potential clash between Italy… https://t.co/EIdfn6CL5p +06/04/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s @EveningStandard: Pellegrini robbed at gun point & Grenfell inquiry latest & Cabinet row over visas cap and Hea… +06/03/2018,Economists,@KingEconomist,"@Busecon2012 You might be right, but tariffs against EU & Canada don't fit your narrative very well....meanwhile, I… https://t.co/J5iR9Ka7zE" +06/03/2018,Economists,@KingEconomist,Trade wars...with a few words from me: https://t.co/BiKYDK30cn +06/01/2018,Economists,@KingEconomist,"Apparently, this much is true. https://t.co/xQwcQ0oZky" +05/31/2018,Economists,@KingEconomist,I have this weird dream. The US imposes tariffs. The UK suddenly discovers it is friendless - tradewise - on either… https://t.co/MOu7CiIO7r +05/31/2018,Economists,@KingEconomist,"RT @asentance: Great to see my good friend Jonny Haskel (@haskelecon) - a distinguished expert on productivity, innovation and intangible i…" +05/30/2018,Economists,@KingEconomist,"@ArmandDAngour Yes, yes! Oh, hang on, that doesn't work...." +05/30/2018,Economists,@KingEconomist,"@ArmandDAngour Yes, but do two negatives make a positive?" +05/30/2018,Economists,@KingEconomist,Does this count as fake news or fake fake news? I'm so confused. https://t.co/QgUBmAJLJP +05/30/2018,Economists,@KingEconomist,@B_Eichengreen The answer is 'yes'. Here's one I prepared earlier! https://t.co/3GtqORQLa5 +05/30/2018,Economists,@KingEconomist,@EdConwaySky My hair is permanently in a state of shock. +05/30/2018,Economists,@KingEconomist,@EdConwaySky @EU_Eurostat Shocking +05/30/2018,Economists,@KingEconomist,"@rbrharrison @darioperkins Remind me of when, precisely, Italy last had a decent macro context?" +05/28/2018,Economists,@KingEconomist,"@Baddiel brilliant at @hayfestival last night. Hilarious, moving...and oodles of ""Roger Whittaker""!!!!" +05/27/2018,Economists,@KingEconomist,"@georgemagnus1 George, I feel for you. I understand, however, that your goalkeeper may be heading to Preston NE." +05/26/2018,Economists,@KingEconomist,The speakers are either all very small or a long way away. https://t.co/p75dlKvlqB +05/26/2018,Economists,@KingEconomist,RT @25483clive: @KingEconomist at #HTLGI18 discusses the end of #globalisation and its risks to politics and the economy https://t.co/WDgml… +05/24/2018,Economists,@KingEconomist,@georgemagnus1 I think the answer you're looking for is 6. n=6. +05/20/2018,Economists,@KingEconomist,@RScubism I agree that a fixed currency creates pressure....and that's precisely why the euro is relevant....pre-eu… https://t.co/rTdworL52Z +05/20/2018,Economists,@KingEconomist,@RScubism So here are the figures broken down a little more...all showing Italian real per capita GDP relative to G… https://t.co/KwQJLJ6SG6 +05/19/2018,Economists,@KingEconomist,@georgemagnus1 A bit late at night now....but we're not Preston North End!!!!! +05/19/2018,Economists,@KingEconomist,@ArmandDAngour @jonnyjenda What are you talking about? I am totally clueless. +05/19/2018,Economists,@KingEconomist,@PhilipJTaylor1 At least Meghan's dress wasn't so creased. +05/19/2018,Economists,@KingEconomist,"@PhilipJTaylor1 Presumably, as a result, you missed the wedding. It was at 12.00....but you wouldn't have known when that was." +05/19/2018,Economists,@KingEconomist,@georgemagnus1 I take that imitation as a sincere form of flattery. +05/19/2018,Economists,@KingEconomist,@peterfrankopan And Giscard d'Estaing's election as French President. Are we both reading the Times? +05/19/2018,Economists,@KingEconomist,"@peterfrankopan Apparently it's also the day on which Anne Boleyn was beheaded. That, and the FA Cup Final." +05/19/2018,Economists,@KingEconomist,I'm in Hong Kong. Anything happening back home today? +05/18/2018,Economists,@KingEconomist,Great piece @peterfrankopan https://t.co/uLrl3mAHa7 +05/18/2018,Economists,@KingEconomist,"@JSiegel88 @BlakeFox7 I do, but did you know that Italy also outperformed France over that period too?" +05/18/2018,Economists,@KingEconomist,@NickGiva ...in pursuit of La Dolce Vita... +05/18/2018,Economists,@KingEconomist,"@NickGiva 420,000 Italians living in Germany. 220,000 Germans living in Italy. Not sure it's all piazzas and espressos. Or speedboats." +05/18/2018,Economists,@KingEconomist,"@BlakeFox7 To be fair, Italy outperformed Germany between 1980 and the euro's creation. Since then, however, the roles have reversed." +05/18/2018,Economists,@KingEconomist,@LongShortTrader True. And there are more Italian restaurants in Germany than German restaurants in Italy. +05/18/2018,Economists,@KingEconomist,"And, today, Italian living standards are 75% of Germany's whereas, in 1999, they were 90% of Germany's. https://t.co/An1553xMFp" +05/18/2018,Economists,@KingEconomist,"@peterfrankopan Thanks, Peter, much appreciated!" +05/18/2018,Economists,@KingEconomist,RT @peterfrankopan: Great piece @KingEconomist https://t.co/uGbn6FDQNA +05/18/2018,Economists,@KingEconomist,@digi_cole Thanks! +05/18/2018,Economists,@KingEconomist,@FHMonitor I didn't push back! I just quoted some data! +05/17/2018,Economists,@KingEconomist,@FHMonitor Thanks. I might be cherry picking but the broad $ index was about 115 at the beginning of Feb (the troug… https://t.co/nni1lMVFf6 +05/17/2018,Economists,@KingEconomist,Here's a little something about the dollar's recent surge... https://t.co/eJ0Ae33xym +05/17/2018,Economists,@KingEconomist,It's not so much sterling that's weak but the dollar that's strong...even if the US is walking away from the world.… https://t.co/sUVHJ2Xr7R +05/12/2018,Economists,@KingEconomist,@asentance @dsmitheconomics I'd prefer your Puppet on a String +05/12/2018,Economists,@KingEconomist,"@asentance So we had two wins in the first period with win rate of 12.5 per cent, two wins in period from 74-89 (fa… https://t.co/cTBTvVewUn" +05/12/2018,Economists,@KingEconomist,@asentance I think you'll find the rot set in with the fall of the Berlin Wall. I hope you're not advocating its reconstruction! +05/11/2018,Economists,@KingEconomist,@hugorifkind @ben_machell I don't recall ever saying that. Too clever. +05/10/2018,Economists,@KingEconomist,@ChrisGiles_ @bankofengland The dangers of groupthink +05/09/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg Oh bugger. Just seen the result. Was at a dinner. Thankfully I avoided watching it! +05/09/2018,Economists,@KingEconomist,@Kaesous @TrendWaveTrader @bankofengland @Socionomics Thanks. Does it work for the Rolling Stones too? +05/08/2018,Economists,@KingEconomist,I'm speaking from midday on Saturday 26 May. Three sessions....starting with https://t.co/0VSNDnKRZf https://t.co/5xRbjY25zD +05/08/2018,Economists,@KingEconomist,@PhilipJTaylor1 I'm not sure there are any gentlemen involved... +05/08/2018,Economists,@KingEconomist,From global Britain to little Britain: https://t.co/YuGTpowETo +05/08/2018,Economists,@KingEconomist,@georgemagnus1 I think 'swash' is redundant. +05/06/2018,Economists,@KingEconomist,"@RobinWigg @georgemagnus1 Look, I supported Chelsea when we were in the second division and Kerry Dixon was our lea… https://t.co/3PK65QgwZU" +05/06/2018,Economists,@KingEconomist,"@georgemagnus1 @RobinWigg Look, I really hope you win. I'd hate to see your team becoming another Preston North End… https://t.co/s5L1ydmtZk" +05/06/2018,Economists,@KingEconomist,@RobinWigg @georgemagnus1 I'm well aware that our boast of being the last English team to win the Champions League… https://t.co/AKkMhUjDu5 +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg I'm part of the tribe you lost to! +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg You asked. I answered! +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg You lost. That's the main problem. +05/05/2018,Economists,@KingEconomist,"@TrendWaveTrader @bankofengland @Socionomics That's interesting, but it seems as though disco passed them by in the… https://t.co/BkXFjoNCXl" +05/04/2018,Economists,@KingEconomist,"@AGaniMemon @Channel4News Given your timeline, I think we know who has a problem with truth." +05/04/2018,Economists,@KingEconomist,"RT @Channel4News: ""I'm ashamed that this sickness has come into our party."" +  +Defeated Labour councillor Adam Langleben says he believes ""t…" +05/03/2018,Economists,@KingEconomist,@DrGerardLyons I seem to recall that Corfe Castle was rather more memorable than the Cup Final. +05/03/2018,Economists,@KingEconomist,"@DrGerardLyons Yes, I watched that match while on a school trip to Swanage. It was terrible (the match, not Swanage)." +05/03/2018,Economists,@KingEconomist,"@asentance @bankofengland You're right, but the problem might even have been around when you were there...https://t.co/4SaWWjsson" +05/03/2018,Economists,@KingEconomist,"@sdonnan @guydej1 To be fair to me, Grave New World was subtitled 'The End of Globalization, the Return of History'. Just saying." +05/03/2018,Economists,@KingEconomist,@Frances_Coppola @econbuttonwood Is that with a short 'e' or long 'e'? +05/03/2018,Economists,@KingEconomist,@ryanavent I'd also add the impact of technology on wage bargaining. Much easier to manage zero-hours contracts wi… https://t.co/cPuRcMGwhf +05/03/2018,Economists,@KingEconomist,@econbuttonwood @Frances_Coppola So not so much 'feeble' as 'enfeebled'. +05/03/2018,Economists,@KingEconomist,@Frances_Coppola I don't think you should describe @econbuttonwood using that term. Harsh. +05/02/2018,Economists,@KingEconomist,"@AdamCaplin @bankofengland I'm sure that @bankofengland can make do with Money, Money, Money." +05/02/2018,Economists,@KingEconomist,@brentsheather @bankofengland Pretty sure that's Elvis Presley. Maybe Submission? +05/02/2018,Economists,@KingEconomist,"I challenge @bankofengland's Andy Haldane to read my mood from my recent Spotify activity: Led Zep IV, Debussy La M… https://t.co/xFyBrHfSgg" +04/28/2018,Economists,@KingEconomist,@AngelicaNgai Where's your school? +04/28/2018,Economists,@KingEconomist,@georgemagnus1 It's a new-fangled modern-day device known as Google. You might have come across it from time to tim… https://t.co/rDUjH1TSty +04/28/2018,Economists,@KingEconomist,I reckon Abba's annus mirabilis was 1976: three singles in the 'annual' UK top 20. Just look at who they were up ag… https://t.co/zraOh3Xi5o +04/25/2018,Economists,@KingEconomist,Tories dance the Hokey Cokey on Customs Union. In? Out? Shake it all about? https://t.co/pFsCs5ckS8 +04/23/2018,Economists,@KingEconomist,Top economic analysis: https://t.co/JV9pBMGPxz +04/19/2018,Economists,@KingEconomist,For those of you who benefit from some fluency in Polish....a review of #GraveNewWorld https://t.co/4dxI0GnHdi +04/16/2018,Economists,@KingEconomist,"Why the US may end up with a frozen Tundra. Excellent by @sdonnan on Texas, Toyota, Trump & trade. https://t.co/LdfZXuarsY" +04/11/2018,Economists,@KingEconomist,Wow! https://t.co/SShXFvdLPh +04/10/2018,Economists,@KingEconomist,@GrahamWiley459 Great....thanks! +04/10/2018,Economists,@KingEconomist,@PeterJLyth We can but dream... +04/10/2018,Economists,@KingEconomist,"And, just to prove it.... https://t.co/OoIiI3Fnhb" +04/10/2018,Economists,@KingEconomist,@FinbarrLivesey Thanks! And good luck on number 2. +04/10/2018,Economists,@KingEconomist,I think I can reasonably say I have written a trilogy: I've just taken delivery of new paperback editions of… https://t.co/HCzgsQOPd5 +04/10/2018,Economists,@KingEconomist,"@British_Airways It says on your Twitter page that you 'are here 24 hours a day, 7 days a week to help'. When you s… https://t.co/eQWmfMypnt" +04/09/2018,Economists,@KingEconomist,"@British_Airways Well, that's almost as long a delay as the flight. I have just learnt that the incoming aircraft h… https://t.co/wLi7lW4Z3s" +04/09/2018,Economists,@KingEconomist,@EconAJB @British_Airways Thanks! +04/09/2018,Economists,@KingEconomist,@SeanFionn @British_Airways Thanks! At least someone knows what's going on. +04/09/2018,Economists,@KingEconomist,@m_we @British_Airways Here's one explanation: https://t.co/MzvG7vkFsC +04/09/2018,Economists,@KingEconomist,"@georgemagnus1 @British_Airways The third, I believe. ""Late incoming aircraft"" is a fairly lame excuse." +04/09/2018,Economists,@KingEconomist,"Finally, some ""good"" news from @British_Airways. The flight has been brought forward. Now departing at 00.10....jus… https://t.co/FaSkAagYG7" +04/09/2018,Economists,@KingEconomist,@Tburrell1001 @British_Airways It never just rains... +04/09/2018,Economists,@KingEconomist,"@EconAJB @British_Airways That's interesting. When I phoned @British_Airways at around 20.30 this evening, they tol… https://t.co/rzaX5YIlex" +04/09/2018,Economists,@KingEconomist,"So, @British_Airways, the screens at Geneva Airport promised info at 22.00. On the stroke of 22.00, that changed to… https://t.co/u8HRqdqmqs" +04/09/2018,Economists,@KingEconomist,"This, @British_Airways, is what your app currently says. But total silence from your staff at Geneva Airport. https://t.co/UIKUptUAiW" +04/09/2018,Economists,@KingEconomist,"Well, @British_Airways, what have you done with our flight? It's now 21.41 in Geneva, and your app is saying BA737,… https://t.co/htwg3BiQnN" +04/08/2018,Economists,@KingEconomist,@Q4TK She's certainly done her background reading... https://t.co/TXvvjAbver +04/07/2018,Economists,@KingEconomist,@georgemagnus1 @toby_n @t0nyyates @DuncanWeldon @GavinJKelly1 @econhedge @RBS_Economics @Frances_Coppola I think it… https://t.co/npLMlnSw9V +04/06/2018,Economists,@KingEconomist,"Read this. It matters. Hungary, anti-Semitism and my lost Jewish ancestors https://t.co/lls5V5sXJ5 via @financialtimes" +04/06/2018,Economists,@KingEconomist,@DuncanWeldon @toby_n @georgemagnus1 @t0nyyates @GavinJKelly1 @econhedge @RBS_Economics @Frances_Coppola Thanks! How are the tanks? +04/06/2018,Economists,@KingEconomist,@isamutlib Excited that you're reading it! +04/04/2018,Economists,@KingEconomist,"@georgemagnus1 I thought you were going to say you wrote ""almost unique"" while you were caned." +04/02/2018,Economists,@KingEconomist,'Misleading' might count as the understatement of the year. https://t.co/j4NKCombJJ +04/01/2018,Economists,@KingEconomist,"This, by @Baddiel, is extremely good. ""Anti-semitism — what I prefer to call anti-Jewish racism — is the only racis… https://t.co/2SjMGr6qUn" +03/31/2018,Economists,@KingEconomist,@kwgdouglas And thank you! +03/31/2018,Economists,@KingEconomist,"RT @kwgdouglas: Just finished reading Grave New World, really enjoyed it, timely insightful and very well written. Thank you @KingEconomist…" +03/30/2018,Economists,@KingEconomist,RT @LordsIRCom: #China's economic successes came under the microscope as @KingEconomist gave evidence to the Committee https://t.co/MTkNRBj… +03/30/2018,Economists,@KingEconomist,"This, from @afneil, is simply brilliant. Please watch. https://t.co/xSBE7ylrwH" +03/29/2018,Economists,@KingEconomist,And so did I! https://t.co/63EDdgpcWg +03/29/2018,Economists,@KingEconomist,@georgemagnus1 @alanbeattie @DrGerardLyons @afneil I think we should just bring back rationing: it did the trick in… https://t.co/j2Smf8JkjQ +03/29/2018,Economists,@KingEconomist,@BaldwinRE Your cheque's in the post! +03/29/2018,Economists,@KingEconomist,"I have a new Twitter banner. Yes, shameless self-promotion, but my books are being re-released (with a couple of n… https://t.co/LyiKOGo6yO" +03/29/2018,Economists,@KingEconomist,"@BaldwinRE Honestly, these market guys..." +03/29/2018,Economists,@KingEconomist,"RT @Dannythefink: This is truly truly amazing. These people are arguing that the Jews use our influence, power and media control to conspir…" +07/01/2018,Economists,@jodiecongirl,@OfficialSPGB right- I in no way meant to imply that the people using socialism as a pejorative were definitionally… https://t.co/amzfPrfvPN +07/01/2018,Economists,@jodiecongirl,my dad did the “what are you a bleeding-heart liberal” thing when I was a kid...not sure people realize that what t… https://t.co/c9sLoB9s5s +07/01/2018,Economists,@jodiecongirl,the thing about millennials is we’re not great at teaching history and they are young enough to not have direct exp… https://t.co/KkmH2gS7H3 +07/01/2018,Economists,@jodiecongirl,"I think it goes something like... +YP: you know it makes sense that everyone should be able to go to the doctor +othe… https://t.co/z97H5Pr9sS" +07/01/2018,Economists,@jodiecongirl,@dynarski also bad science don’t forget +07/01/2018,Economists,@jodiecongirl,@gabriel_mathy @UpdatedPriors @Noahpinion he’s 3 he has no experience with cars =P +07/01/2018,Economists,@jodiecongirl,"@UpdatedPriors @Noahpinion so I completely believe that the kid initially heard it from tv, but also the fact that… https://t.co/9OBB7ind7z" +07/01/2018,Economists,@jodiecongirl,"@Noahpinion entitlement, among other things" +07/01/2018,Economists,@jodiecongirl,TIL I don’t like mustard enough to have an academic job https://t.co/PIPbio2iQO +07/01/2018,Economists,@jodiecongirl,"@EvaLefkowitz @JuliaFtacek wait, mustard expires?" +07/01/2018,Economists,@jodiecongirl,@IlliniBizDean why would you want to increase the opportunity cost of eating chocolate you monster +07/01/2018,Economists,@jodiecongirl,"not gonna lie, I do wonder sometimes if there was an administrative error somewhere and whether I could just run with it" +07/01/2018,Economists,@jodiecongirl,@SnarkActual but...but I meant it literally in this case +07/01/2018,Economists,@jodiecongirl,"mr. econgirl: just take a photo of your alumni magazine and send it to employers +me: I swear harvard is going to mo… https://t.co/Er1aV3MdCw" +07/01/2018,Economists,@jodiecongirl,@dataandpolitics Led Zeppelin and Billy Joel. I remember literally nothing else +06/30/2018,Economists,@jodiecongirl,@LoganMohtashami @economistmom https://t.co/5kkReqfS0B +06/30/2018,Economists,@jodiecongirl,@scottimberman @causalinf @briankisida why are you being like this today +06/30/2018,Economists,@jodiecongirl,"@MattBruenig I've been having to do this for a while...eg. ""no, inflation hasn't changed in meaning to mean increas… https://t.co/YuId1cUZ9U" +06/30/2018,Economists,@jodiecongirl,hey twitter I think this is a dare https://t.co/rinuTmroqN +06/30/2018,Economists,@jodiecongirl,@Mediaite @MeghanMcCain ok fine but this doesn't even crack the top 10 of garbage things he's done tbh +06/30/2018,Economists,@jodiecongirl,@BrookingsInst @CoryBooker hey look who's stealing Hillary's moves +06/30/2018,Economists,@jodiecongirl,this is consistent with my experience https://t.co/3llFbchGhR +06/30/2018,Economists,@jodiecongirl,"""what do we want?"" +""for rules to be followed"" +""when do we want it?"" +""retroactively if possible"" https://t.co/unJ1p6anHa" +06/30/2018,Economists,@jodiecongirl,I made a Spotify playlist out of my dataset and I think mr. econgirl's going to find an excuse to go to the office +06/30/2018,Economists,@jodiecongirl,my ironic side loves that Amazon music sells a clean version of Banned in the USA +06/30/2018,Economists,@jodiecongirl,"@gbenga_ajilore there is a chance you could figure it out from the info I posted, but it's kind of nuanced :)" +06/30/2018,Economists,@jodiecongirl,"and I'm sorry, I might be biased because I lived through it in Broward county, but Banned in the USA is a good song" +06/30/2018,Economists,@jodiecongirl,"@nhotte haha it's gonna be fun when I angrily post any and all Twitter polls that don't have a ""just show me the results"" option" +06/30/2018,Economists,@jodiecongirl,my data probably looks different from your data https://t.co/iOzVDWGFmI +06/30/2018,Economists,@jodiecongirl,next time you think your survey data is bad just remember that it could be worse https://t.co/YlHzZYkT0d +06/30/2018,Economists,@jodiecongirl,I think we found an issue that brings out the one-handed economists... https://t.co/SyAj8YbOBv +06/30/2018,Economists,@jodiecongirl,"@MattBruenig no, my way makes me a lot richer =P" +06/30/2018,Economists,@jodiecongirl,"on the up side, I guess I'm helping confirm the ""noise in the input/output relationship generally serves to dampen incentives"" theory" +06/30/2018,Economists,@jodiecongirl,@HanbyAndrew @conradhackett sure but this helps identify the specific source of uncertainty as opposed to confirming or refuting overall +06/30/2018,Economists,@jodiecongirl,"interviewer: why didn't you want an academic job +me: https://t.co/wgd6qNo6D6" +06/30/2018,Economists,@jodiecongirl,@R_Thaler I feel like this is the Harvard Management Company problem all over again +06/30/2018,Economists,@jodiecongirl,just claimed my property on Zillow to get a more accurate price estimate and ...well...now I'm really hoping they h… https://t.co/LIE75KW031 +06/30/2018,Economists,@jodiecongirl,@DLind this is a market failure +06/30/2018,Economists,@jodiecongirl,"@BruceBartlett you don't have to wonder, the answer is 2.5 https://t.co/liooTnX1TC" +06/30/2018,Economists,@jodiecongirl,@yogawithcorrie @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates *raises hand* how do I get put on this list +06/30/2018,Economists,@jodiecongirl,counterpoint: mom's an english teacher and I'm pretty sure she'd agree with me that verb tenses mean things https://t.co/IMvcecOpCB +06/30/2018,Economists,@jodiecongirl,@dandrezner Hassett basically said the same thing to try to fish Kudlow out of the hole he dug for himself +06/30/2018,Economists,@jodiecongirl,@nhotte please tell me those are GMO strawberries in there +06/30/2018,Economists,@jodiecongirl,@titonka and yet somehow JFK didn't seem to have this problem +06/30/2018,Economists,@jodiecongirl,maybe it's because I'm lazy but voting seems like a lot less effort https://t.co/VWn5eukfIM +06/30/2018,Economists,@jodiecongirl,@AcostaRomay ughhhhhhh...I was legit hoping it was just me and not a pattern +06/30/2018,Economists,@jodiecongirl,(to be fair it was my advisor who did this not me) +06/30/2018,Economists,@jodiecongirl,dude why the eff do you think I haven't finished https://t.co/cvtRImzttp +06/30/2018,Economists,@jodiecongirl,not sure I’m tall enough for this one tbh https://t.co/irqyFSRoku +06/30/2018,Economists,@jodiecongirl,@ravshansk oh you just wait for my next tweet you will not be disappointed +06/30/2018,Economists,@jodiecongirl,@ChasLaw3 actually that sounds pretty good I could even do the tweed jacket thing +06/30/2018,Economists,@jodiecongirl,@DSMoxon even if these are daily emails that have these numbers? +06/30/2018,Economists,@jodiecongirl,not sure I’m old and male enough for this job title https://t.co/KWDtWAK4hQ +06/30/2018,Economists,@jodiecongirl,@LoganMohtashami hahaha yeah they rejected me for that without even talking to me because the world is super fun +06/30/2018,Economists,@jodiecongirl,I know it’s a hot job market but this doesn’t feel right https://t.co/LaZhmiRo3P +06/30/2018,Economists,@jodiecongirl,@tobyjoe @cpklapper tough but fair +06/30/2018,Economists,@jodiecongirl,you’ll be pleased it took 32 minutes to get to a trickle-down economics joke +06/29/2018,Economists,@jodiecongirl,I...don’t know what this is but let’s do it https://t.co/mBGM3BOndD +06/29/2018,Economists,@jodiecongirl,"@cpklapper I’m clearly retro, duh" +06/29/2018,Economists,@jodiecongirl,@economeager @foley_kelly not sure I even agree with her but support that this is how it’s supposed to work +06/29/2018,Economists,@jodiecongirl,compensating differentials yo https://t.co/6XpIL2XOLh +06/29/2018,Economists,@jodiecongirl,I’m now at the W bar waiting for friend and eavesdropping...apparently everyone lives in a sequel to Office Space from what I can tell +06/29/2018,Economists,@jodiecongirl,@SnarkActual good I was worried the sneakers would give me away +06/29/2018,Economists,@jodiecongirl,@BuffyBlogs there’s no way I’m wearing heels to a damn podcast :) +06/29/2018,Economists,@jodiecongirl,dragging myself out of the house...hopefully my functional human disguise is working https://t.co/ZXaYwoXdRi +06/29/2018,Economists,@jodiecongirl,almost done with my venn diagram it just needs one more label https://t.co/rsz3p6Td2c +06/29/2018,Economists,@jodiecongirl,"me: i'm sad +@TheWhyteNinjaL there there...let's go to a podcast taping it'll make you feel better +me: you always know what I like" +06/29/2018,Economists,@jodiecongirl,"@datanotdogma haha, I left grad school a while ago so I'm pretty sure they need the money more than I do! I'm at a… https://t.co/U8QSeEX73i" +06/29/2018,Economists,@jodiecongirl,I'm beginning to worry a little that people who are not terrible at communication spend all of their days writing emails +06/29/2018,Economists,@jodiecongirl,"ok Twitter, @aptweacher's birthday is tomorrow (yep I'm sure she appreciates me telling the world this), what's the… https://t.co/TkS8k5s5lE" +06/29/2018,Economists,@jodiecongirl,"@leighblue @geekyisgood I looked at her location and had false hope for a second that she meant Bristol, Tennessee :)" +06/29/2018,Economists,@jodiecongirl,"@johnwhitehead81 tax cuts, I'm like 99% sure" +06/29/2018,Economists,@jodiecongirl,@crampell @ernietedeschi @RichardRubinDC @NickRiccardi @RealClearNews I feel like there's very little good middle g… https://t.co/L0N5eCmIWL +06/29/2018,Economists,@jodiecongirl,@gin_and_tacos *waves* +06/29/2018,Economists,@jodiecongirl,@SnarkActual precisely +06/29/2018,Economists,@jodiecongirl,"@johnwhitehead81 he actually chose his words pretty carefully, and I'm still pondering the ""well wouldn't you take… https://t.co/KoZPHnCcoQ" +06/29/2018,Economists,@jodiecongirl,update: this mainly involved conflating the present and future tense so I'm pretty underwhelmed tbh +06/29/2018,Economists,@jodiecongirl,what no I'm totally not waiting with baited breath to see what on earth Hassett does when asked about Kudlow's deficit comments +06/29/2018,Economists,@jodiecongirl,you guys I have a confession regarding the real reason I didn't finish my dissertation on time https://t.co/d33uCZsA20 +06/29/2018,Economists,@jodiecongirl,@mpolikoff @delta_dc I'm in Boston and this sounds way too familiar +06/29/2018,Economists,@jodiecongirl,@andrewheiss no it makes you a nerd =P +06/29/2018,Economists,@jodiecongirl,@mpolikoff @delta_dc I think someone forgot to inform the Michelin Guide of this +06/29/2018,Economists,@jodiecongirl,"@SnarkActual I feel the need to point out that my parents are not poor, since they probably don't want to be percei… https://t.co/nd8LqCjdXU" +06/29/2018,Economists,@jodiecongirl,"@geekyisgood thanks, you're all too kind and I hope to run into you in person some day :)" +06/29/2018,Economists,@jodiecongirl,@ryanbedwards his backup plan was for me to just take a personal loan so I guess I now understand why none of his m… https://t.co/H49ZWhf57C +06/29/2018,Economists,@jodiecongirl,"for context, I was explaining that one of my professors told me to borrow money from my parents to finish school on… https://t.co/939avxu1dx" +06/29/2018,Economists,@jodiecongirl,@td_maurer haha that would be so gloriously meta +06/29/2018,Economists,@jodiecongirl,@FrankRCastillo I think that's also a response that receives full credit :) +06/29/2018,Economists,@jodiecongirl,@td_maurer what part exactly +06/29/2018,Economists,@jodiecongirl,update: mom texted me yesterday to basically apologize for not being able to help me more financially and I've neve… https://t.co/hW0Lw0HnQo +06/29/2018,Economists,@jodiecongirl,"@econwithdustin I mean...hm yeah this is probably true, empirically speaking" +06/29/2018,Economists,@jodiecongirl,@economistmom haha yes but you've proven your wisdom in other ways :) +06/29/2018,Economists,@jodiecongirl,@joebrusuelas I'm...well... https://t.co/Auy2gkg4uL +06/29/2018,Economists,@jodiecongirl,"@alex_peys I'm getting there, give it time" +06/29/2018,Economists,@jodiecongirl,call me overly cynical but hm I wonder what the difference is https://t.co/YzQYd5UB01 +06/29/2018,Economists,@jodiecongirl,@FieldsofAthnry @raulpacheco @willnevin @alexandraerin @ms_peaceweaver @kjhealy @terry_ebooks @WorldCatLady… https://t.co/jwmGmDDLmA +06/29/2018,Economists,@jodiecongirl,"@overdahl_jim @JustinWolfers I don’t know yet if this rule changes it, but there’s a really interesting feature whe… https://t.co/7UpViSFZFp" +06/29/2018,Economists,@jodiecongirl,@HerrForce1 @genehayward @DallenaNguyen @BS0064 @GeoffreyMJ @JeffLong10 @akashdan @apeconguy fun fact: I’m pretty s… https://t.co/xc4qfIiSfX +06/29/2018,Economists,@jodiecongirl,@AnnieDuke I think the alarm is a fair compromise- i.e. watch your Hulu but geez but it down when the car starts beeping at you! +06/29/2018,Economists,@jodiecongirl,"@joebrusuelas given that you have the job title I was rejected for, I am screen shorting this and sending it to the… https://t.co/6ApUfF1EGG" +06/29/2018,Economists,@jodiecongirl,@NickAPoche @salimfurth there we go +06/29/2018,Economists,@jodiecongirl,"@ez_angus I was told during a journalism interview that “productivity” was too jargony so this doesn’t feel right,… https://t.co/7lE95cWPmJ" +06/29/2018,Economists,@jodiecongirl,this went exactly as expected and I don’t regret my click one bit https://t.co/LtSjRmBhnE +06/29/2018,Economists,@jodiecongirl,@sgadarian well it’s remembered utility so maybe we can’t assess until we’re out of the situation? +06/29/2018,Economists,@jodiecongirl,"thanks, now I know how to plan my content consumption https://t.co/Mo2LqjPyOR" +06/29/2018,Economists,@jodiecongirl,@davidshor @mattyglesias my tin foil hat says that upper middle class white women need blue states so they don’t have to travel to Canada +06/29/2018,Economists,@jodiecongirl,I’m going to echo @neeratanden with a hearty “why did no one follow up on this before now” https://t.co/XZxkY8YoO7 +06/29/2018,Economists,@jodiecongirl,"@BruceBartlett this is true for most policies, or at least perceived to be, which explains a lot of voting behavior" +06/29/2018,Economists,@jodiecongirl,"@causalinf in this case he’s a more specific kind of douche, since he appears pissed thet that they covered his dom… https://t.co/FQ21X4KpPa" +06/29/2018,Economists,@jodiecongirl,"@sgadarian be careful, since increasing remembered utility involved making the experience last longer =P" +06/29/2018,Economists,@jodiecongirl,"@bhgreeley so, uh, is that a superset or subset =P" +06/29/2018,Economists,@jodiecongirl,@IBlackmailLands see if this helps https://t.co/AM4ZWZnCcA +06/29/2018,Economists,@jodiecongirl,I think it’s time to kick him out of economist club https://t.co/i75y9JnmWn +06/29/2018,Economists,@jodiecongirl,"apropos of nothing, I’ll point out that in behavioral economics there’s the peak end rule, which says we remember t… https://t.co/BmaZZMVF41" +06/29/2018,Economists,@jodiecongirl,@PereGrimmer in practice you’re probably right but as a hypothetical I’m like nope no way +06/29/2018,Economists,@jodiecongirl,@economeager I feel like we’ve done a disservice to the Econ 101 crowd for thinking it’s cool to point out that new… https://t.co/kHIojtwBea +06/29/2018,Economists,@jodiecongirl,I know I’m trying to get hired but I have to level with you I will probably never have this level of commitment to… https://t.co/c3AN8y90MX +06/29/2018,Economists,@jodiecongirl,@salimfurth I was thinking more this since it’s awkward and inefficient https://t.co/I6biGJ8ubz +06/29/2018,Economists,@jodiecongirl,great now I’m opposed to economists taking vacations https://t.co/J5Tbc9KFVF +06/29/2018,Economists,@jodiecongirl,how high do you have to be to think you can live in a bitcoin...I used to have to remind people that bitcoin isn’t… https://t.co/JOtBWs9Eiu +06/29/2018,Economists,@jodiecongirl,"sure, start a company with Amazon as your only client what could possibly go wrong *does monopsony dance* https://t.co/hP2iTA48ub" +06/29/2018,Economists,@jodiecongirl,"in case the name of one of the Capital victims sounds familiar, yep, it’s his brother... https://t.co/ZIaF6Re60n" +06/29/2018,Economists,@jodiecongirl,@graykimbrough I mean I did say I needed ideas for dissertation papers I guess... +06/29/2018,Economists,@jodiecongirl,so relatable today https://t.co/Fe3ozaXPCR +06/29/2018,Economists,@jodiecongirl,@ernietedeschi Adam Rippon +06/29/2018,Economists,@jodiecongirl,are...are you sure though https://t.co/NdB34izQ2W +06/29/2018,Economists,@jodiecongirl,@llinong labor specialization! +06/29/2018,Economists,@jodiecongirl,@leighblue wtf how was I not following you +06/29/2018,Economists,@jodiecongirl,"@econwithdustin dept: you can teach whatever you want if you also teach grad macro +me: ##%#%!$^$%^^# fine" +06/29/2018,Economists,@jodiecongirl,is it bad that I'd rather do hours of data entry than send an email to a stranger? +06/29/2018,Economists,@jodiecongirl,"@AnnieDuke I think you're right, but I also wonder what the point of autonomous vehicles is if you can't not watch the road" +06/29/2018,Economists,@jodiecongirl,@audowla it's seriously the worst metaphor +06/29/2018,Economists,@jodiecongirl,"@FarmerHayek to be fair, those aren't mutually exclusive" +06/29/2018,Economists,@jodiecongirl,@SnarkActual my dad got fired from a Toys R Us when I was a kid so I'm happy to take this now +06/29/2018,Economists,@jodiecongirl,@JonathanKarver @DrunkWB how did I not know about this until now +06/29/2018,Economists,@jodiecongirl,"@ThatTomAcox fair, but it's still confusing since apparently Schmidt hates the GOP now too" +06/29/2018,Economists,@jodiecongirl,@mirandayaver so I want to be mad but there was that one time where she started with the employment act of 1946 and… https://t.co/3FPoKrWPGj +06/29/2018,Economists,@jodiecongirl,so this is a bit of an oversimplification but the reality is super interesting (search for 2013 for the relevant pa… https://t.co/HrIgeHpx8U +06/29/2018,Economists,@jodiecongirl,@drewmagary cashews work too +06/29/2018,Economists,@jodiecongirl,apparently a 35 year monopoly wasn't enough? https://t.co/xQfHSBn5sc +06/29/2018,Economists,@jodiecongirl,current mood https://t.co/RzlemL95Pd +06/29/2018,Economists,@jodiecongirl,@umairh this has to be deliberate trolling right +06/29/2018,Economists,@jodiecongirl,"@DinaPomeranz @KfWpress to be fair, I'm pretty sure that team sports trophies are more rare among economists than academic awards :)" +06/29/2018,Economists,@jodiecongirl,"heh I was kidding but sure, let's do this https://t.co/wkiRs0afFK" +06/29/2018,Economists,@jodiecongirl,@CBSEveningNews @blakehounshell thanks now I know what words to mute...sorry but only victims' names get my clicks +06/29/2018,Economists,@jodiecongirl,where can I donate to your Kickstarter (yes I know how to subscribe to a paper do not @ me) https://t.co/Ob45D8uDnX +06/29/2018,Economists,@jodiecongirl,live look at me reacting to all your support and encouragement today... https://t.co/MREBuvbzZZ +06/29/2018,Economists,@jodiecongirl,@szarka yes but your wealth level has also gone up by $250 +06/29/2018,Economists,@jodiecongirl,"""does it tho are you sure"" --me today, basically https://t.co/td8knwSFZD" +06/29/2018,Economists,@jodiecongirl,"@Mctaguej hahahaha, I'm sure the car wash would find a reason I'm unsuitable :) I'm also being smacked with the d… https://t.co/AePsWrIgju" +06/29/2018,Economists,@jodiecongirl,@mikesimonsen in my fantasy world you're following me because of my questions about MLS data :) +06/29/2018,Economists,@jodiecongirl,"on the up side, being unemployable gives me more time for writing https://t.co/KZjUhjWYLn" +06/28/2018,Economists,@jodiecongirl,@cangeese @BillKristol nah the tariffs are pretty dumb but you're right on the rest +06/28/2018,Economists,@jodiecongirl,"confession: I watch MSNBC all the time and still can't for the life of my tell Steve Schmidt and Rob Reiner apart, what is wrong with me" +06/28/2018,Economists,@jodiecongirl,"@ranjitdighe it's literally just to say that it's there, which...I mean I kind of get it but I'm still gonna be cranky about it" +06/28/2018,Economists,@jodiecongirl,@s_gedeon I mean it seriously when I say that MIT is the best and would not have patience for this nonsense :) +06/28/2018,Economists,@jodiecongirl,@dataandpolitics @economeager your attention to detail with the ligature here really solidifies my preference tbh +06/28/2018,Economists,@jodiecongirl,"@keynesianr thanks so much...the writing space is weird in that it's not clear where I would fit, and if I did it's… https://t.co/eToAoOnraR" +06/28/2018,Economists,@jodiecongirl,"@bennpeifert also, some of us had to keep starting over and ran out of funding =P" +06/28/2018,Economists,@jodiecongirl,@dataandpolitics @economeager then check out the other thread where I said that the silver lining is that my outsid… https://t.co/VwUzD3gNVX +06/28/2018,Economists,@jodiecongirl,@tobyjoe well those are two words you don't see together very often +06/28/2018,Economists,@jodiecongirl,"@ENPancotti @gabriel_mathy I'm genuinely curious...like I said, I sucked it up and taught macro because no one else… https://t.co/7emylAVkq1" +06/28/2018,Economists,@jodiecongirl,"@tom_moran @laubolgo feel free to scream in my direction whenever you feel the need, I get it =P" +06/28/2018,Economists,@jodiecongirl,they're strategizing how to locate some women I assume https://t.co/ldmlV3mtAM +06/28/2018,Economists,@jodiecongirl,@ModeledBehavior @Motoconomist @graykimbrough does the MLS data make it clear what firm an agent is with? +06/28/2018,Economists,@jodiecongirl,@ModeledBehavior @Motoconomist @graykimbrough any idea for how much? +06/28/2018,Economists,@jodiecongirl,@Motoconomist @ModeledBehavior @graykimbrough interesting...I'm not sure I care what region the data comes from as… https://t.co/1bxp7TFOBq +06/28/2018,Economists,@jodiecongirl,@ModeledBehavior @graykimbrough @Motoconomist is it verboten for people to pull it for me or do I just have to conv… https://t.co/YDsRi8l85T +06/28/2018,Economists,@jodiecongirl,@graykimbrough @Motoconomist ugh why can't I just be fancy =P +06/28/2018,Economists,@jodiecongirl,@Motoconomist so did Levitt just have a friend who got them this? https://t.co/KRjHToVJsY +06/28/2018,Economists,@jodiecongirl,@jennbaker12 @DavidJuurlink @wonkinakilt I'm not sure that I've ever even been tested- all I know is family members… https://t.co/VTbDiSgGrY +06/28/2018,Economists,@jodiecongirl,@dcreager @economeager not sure what world I stumbled into where two graduate degrees is not enough =P +06/28/2018,Economists,@jodiecongirl,"@nevaudit @laubolgo normally I would agree, but I'm cynical enough to acknowledge that there's value in being able… https://t.co/G8A57L1BTQ" +06/28/2018,Economists,@jodiecongirl,"@economeager I feel like people should be more honest about these things, since I know a lot of people who feign pe… https://t.co/A5meWiM87o" +06/28/2018,Economists,@jodiecongirl,"@Motoconomist I'll only ask easy questions then, such as does MLS data list the firm that an agent represents and how do I get access" +06/28/2018,Economists,@jodiecongirl,"@SnarkActual hahahaha I have a good option that will hopefully come to fruition, it's just a kick in the gut every… https://t.co/flIORpSV7R" +06/28/2018,Economists,@jodiecongirl,@ernietedeschi thanks dude :) +06/28/2018,Economists,@jodiecongirl,@iPublicPolicy thanks...I feel like I've learned more on my own than in grad school but I don't have the fancy things to show for it :( +06/28/2018,Economists,@jodiecongirl,"once again, don't ever tell me that twitter is bad https://t.co/0yQ7fi7ERu" +06/28/2018,Economists,@jodiecongirl,"@jonathaneyer thanks...I really just want to be given a chance to do a job I can run with and make the most of, whi… https://t.co/VO0duukkk9" +06/28/2018,Economists,@jodiecongirl,@Shooshan5 fair...I think we all know that that answer is no :) +06/28/2018,Economists,@jodiecongirl,"@economeager I think they do know, since they made it clear that they object on a technicality (which kind of makes… https://t.co/BIVDIj1q4U" +06/28/2018,Economists,@jodiecongirl,"@Shooshan5 my second choice is working for a great dude, so you're mostly right, I just really want this frustrati… https://t.co/5hRmq6WVC9" +06/28/2018,Economists,@jodiecongirl,@laubolgo also thank you so much for the kind words :) +06/28/2018,Economists,@jodiecongirl,"@laubolgo ""all but dissertation""...the short version of the story is my first advisor disappeared and this set me o… https://t.co/VyJ6citPCZ" +06/28/2018,Economists,@jodiecongirl,"@TheWhyteNinja thanks, especially since you have more insight into the background of the situation..." +06/28/2018,Economists,@jodiecongirl,(it will probably not shock you to learn that my lack of dissertation has little to do with lack of interest or competence) +06/28/2018,Economists,@jodiecongirl,"my (non-academic) dream employer just reversed course and rejected me because I'm ABD, so I'm going to go curl up i… https://t.co/lew45OJuCC" +06/28/2018,Economists,@jodiecongirl,@sonomonono how is that not just this https://t.co/TyU0ViUlSu +06/28/2018,Economists,@jodiecongirl,@sonomonono and that makes me want to smack people too sometimes =P +06/28/2018,Economists,@jodiecongirl,"@sonomonono yeah that's a separate issue- I put the ""I'm not sure which is worse"" in the ""I see them as the same"" category" +06/28/2018,Economists,@jodiecongirl,"@sonomonono I'm not saying you're empirically incorrect, I'm just saying you're a dumbass if your response to a cho… https://t.co/hgK4cAZP4T" +06/28/2018,Economists,@jodiecongirl,@sonomonono I can blame them far more than I can blame the people who legit thought everyone was equally bad +06/28/2018,Economists,@jodiecongirl,@sonomonono not sure this is a great example since I have a very clear preference on this matter +06/28/2018,Economists,@jodiecongirl,"@The_Weakonomist I'm realizing that this is very stressful on principle even though it's not a life or death thing,… https://t.co/0jhmmw816p" +06/28/2018,Economists,@jodiecongirl,I'll keep you posted on whether we all die over here https://t.co/IXjmwLMDpd +06/28/2018,Economists,@jodiecongirl,"@PhantasmalFarce 1. outside assessments of taking it easy are often inaccurate +2. people doing what they need/wan… https://t.co/Dn2RNPtQrw" +06/28/2018,Economists,@jodiecongirl,"this is true in my experience, but it means one can get leverage by being willing to teach macro, especially the ha… https://t.co/1L0nZO397T" +06/28/2018,Economists,@jodiecongirl,look I said I was sorry and I'll know better next time I don't need your public shaming https://t.co/TFJVT2QOSb +06/28/2018,Economists,@jodiecongirl,me rn https://t.co/RRq5n1v7ry +06/27/2018,Economists,@kaushikcbasu,"RT @dikshabasu: my one year old hid a piece of cheese in her dress pocket and this, clothing manufacturers, is the best argument for why wo…" +06/26/2018,Economists,@kaushikcbasu,"Since so many people have asked me, what I can say is Arvind Subramaniam was a much-needed voice of reason and prof… https://t.co/uPIMXbMhZr" +06/26/2018,Economists,@kaushikcbasu,"RT @WorldBankSAsia: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Kno…" +06/23/2018,Economists,@kaushikcbasu,This is such sad news. Wonderful human being he was. https://t.co/EGiqP7qqUx +06/23/2018,Economists,@kaushikcbasu,That’s a number to keep handy. https://t.co/6C79KIXzg4 +06/23/2018,Economists,@kaushikcbasu,"RT @IndianExpress: #ExpressOpinion | At the Ramakrishna Mission complex in Kolkata, a different face of the religion is visible from what i…" +06/23/2018,Economists,@kaushikcbasu,@zafarsareshwala Thank you. +06/22/2018,Economists,@kaushikcbasu,Alaka Basu on A different kind of motherhood https://t.co/6CXTqCKWih +06/22/2018,Economists,@kaushikcbasu,"RT @WorldBank: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Know?"",…" +06/21/2018,Economists,@kaushikcbasu,@Anirudhsingh94 It is included in China. But in itself it is more than us. +06/21/2018,Economists,@kaushikcbasu,"Fascinating how this has changed. +Foreign exchange reserves (billions of dollars): +China 3520 +Japan 1256 +Saudi Arab… https://t.co/jVIHTt7oWb" +06/21/2018,Economists,@kaushikcbasu,"RT @kylegriffin1: Foster mom describes migrant children she cared for: + +10-year-old boy who woke screaming in the night + +9-year-old boy who…" +06/21/2018,Economists,@kaushikcbasu,"RT @WorldBankLive: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Know…" +06/20/2018,Economists,@kaushikcbasu,RT @iamaniku: #bookoftheday @kaushikcbasu ‘s The Republic of Beliefs #lawecon #law #TeachEcon https://t.co/CR3dVxXuZt +06/19/2018,Economists,@kaushikcbasu,"RT @setu_parikh: So true.... +""#Politics may well be the only occupation in which not being good at it is a virtue"" - @kaushikcbasu in ""An E…" +06/19/2018,Economists,@kaushikcbasu,"Through history the key weapon for victory has been changing—from controlling camels, to horses, to guns, to bombs,… https://t.co/1XU2fsRQ3o" +06/18/2018,Economists,@kaushikcbasu,@shantanunandan2 Old photo. Not mine. +06/18/2018,Economists,@kaushikcbasu,My attempt at Marcel Proust brooding over a troubled world. https://t.co/ZFosR6vJj7 +06/17/2018,Economists,@kaushikcbasu,@souvikpaul11 Was there. Left today. +06/17/2018,Economists,@kaushikcbasu,O Calcutta https://t.co/u9h0newnqC +06/17/2018,Economists,@kaushikcbasu,"Father’s Day photo. My father, my aunt and uncle (in the middle), my mother, three elder sisters and me. And Pompy. https://t.co/pivLsKdtCY" +06/17/2018,Economists,@kaushikcbasu,"Chorbagan Art Studio’s Nalini Sundari, in Kolkata’s Arts Acre. The gallery has a big collection of contemporary Ind… https://t.co/VlUTWSLlUj" +06/17/2018,Economists,@kaushikcbasu,RT @dikshabasu: some good fathers in my life. Happy Father's Day @MikeyMcCleary1 and original father @kaushikcbasu https://t.co/YrqAT3r6wr +06/16/2018,Economists,@kaushikcbasu,"A warning to all authors. From Simon Gray’s brilliant play The Common Pursuit. +Martin: He got his lecturership at O… https://t.co/9KeYdOVEYg" +06/16/2018,Economists,@kaushikcbasu,RT @pbmehta: Tragic Valley sinking further since this piece as Shujaat Bukhari had warned: https://t.co/Bvvs2jBqOf +06/15/2018,Economists,@kaushikcbasu,Art of Kanchan Chander. https://t.co/9H6UD8jC72 +06/15/2018,Economists,@kaushikcbasu,Bowled over by Kolkata’s Arts Acre. —One of the best-designed art museums in India. https://t.co/6p64sV18fx +06/15/2018,Economists,@kaushikcbasu,"Trump, game theory, Trudeau, +G7, focal point, WT and O. +https://t.co/HqhpRI9CgT" +06/15/2018,Economists,@kaushikcbasu,Delighted. https://t.co/N2j58bL3s7 +06/15/2018,Economists,@kaushikcbasu,Thank you. https://t.co/VfJaXm4gkR +06/14/2018,Economists,@kaushikcbasu,I am not totally sure what Ugo is saying here but i will take a chance amd retweet it anyway. https://t.co/XhUfCIMIgq +06/14/2018,Economists,@kaushikcbasu,"Alleyway near Belur, Kolkata. Neighborhood asleep as night descends. https://t.co/24Lzxdq2un" +06/13/2018,Economists,@kaushikcbasu,"RT @dikshabasu: sign up. @briangresko is a wonderful, talented, generous writer and you would be lucky to learn from him. https://t.co/0MjI…" +06/13/2018,Economists,@kaushikcbasu,"Bylane near Belur Math, Kolkata. 3.30 am. https://t.co/kZKWYkYd9w" +06/13/2018,Economists,@kaushikcbasu,“I fervently hope that the bell that tolled this morning in honor of this convention may be the death knell of all fanaticism.” +06/12/2018,Economists,@kaushikcbasu,RT @CelestinMonga: 152 million children aged 5 to 17 still in child labor—of whom 73 million in hazardous work. What would Martians think o… +06/11/2018,Economists,@kaushikcbasu,At this rate the US will end up as part of a G-1 group of nations. https://t.co/ai6c7UFOTB +06/10/2018,Economists,@kaushikcbasu,Author Diksha Basu shares her reading list of 2018 https://t.co/u1b82LJGfn via @htTweets +06/10/2018,Economists,@kaushikcbasu,And should be called “The Last Conversation”. https://t.co/7C2W63L8Ku +06/09/2018,Economists,@kaushikcbasu,"If this continues unchecked, sadly, the casualty will be India. https://t.co/naqvvGhmbp" +06/09/2018,Economists,@kaushikcbasu,Saturday diversion. https://t.co/YZ5htq6nVq +06/08/2018,Economists,@kaushikcbasu,Enhorabuena! https://t.co/tL0yowQgjM +06/08/2018,Economists,@kaushikcbasu,A sketch to ponder. https://t.co/DpuQn4PdsD +06/08/2018,Economists,@kaushikcbasu,RT @CU_Chronicle: How can societies become law-abiding? Kaushik Basu has some suggestions @kaushikcbasu @CornellCAS https://t.co/JSoqVfT3CW… +06/07/2018,Economists,@kaushikcbasu,Such a wonderful speech. https://t.co/Ro2iGzALuC +06/07/2018,Economists,@kaushikcbasu,"RT @AbhinayMuthoo: The power of #gametheory - it is applicable to all human interaction, be it social, economic or political @kaushikcbasu…" +06/07/2018,Economists,@kaushikcbasu,"Always worth re-reading this from Keynes: Mad men in authority, who hear voices in the air, are distilling their fr… https://t.co/EjwfQ919h5" +06/06/2018,Economists,@kaushikcbasu,Dusk over a city is as mystically beautiful as dusk descending over hills. https://t.co/YXin6l41AI +06/06/2018,Economists,@kaushikcbasu,A Woman on the Verge by Karna Basu https://t.co/wXlXvrOhBV via @YouTube +06/06/2018,Economists,@kaushikcbasu,"Karna Basu: Train arriving at a station. +cogs in the wheel https://t.co/U9zH9qOrNM via @YouTube" +06/06/2018,Economists,@kaushikcbasu,Dinesh D’Souza and Preet Bharara @PreetBharara slug it out on CNN via Anderson Cooper. Bharara wins hands down. +06/05/2018,Economists,@kaushikcbasu,"Regrettable trade war. But in the long run it is Mexico that is likely to come out winner. +Mexico Hits U.S. With Ta… https://t.co/7ZRWtbPDaB" +06/04/2018,Economists,@kaushikcbasu,"RT @The_LHoFT: 5️⃣ The #FinancialInclusion Top 5 - Our Favourite Stories from This Week's Coverage + +Stories by @kaushikcbasu, @euromoney,…" +06/03/2018,Economists,@kaushikcbasu,For any person X to have the right to pardon himself or herself is equivalent to asserting that ONLY X has the righ… https://t.co/8uBX5azLxf +06/03/2018,Economists,@kaushikcbasu,"RT @dikshabasu: Kevin Kwan puts me in august company. +https://t.co/h8TkneabLP" +06/02/2018,Economists,@kaushikcbasu,If you are super-rich the best form of nationalism you want is when ordinary people feel they're winning when the… https://t.co/Nl58dMfYkV +06/02/2018,Economists,@kaushikcbasu,Empire State Building. Reaching for the sky. https://t.co/kaTSrS0kFH +06/02/2018,Economists,@kaushikcbasu,What’s happening to me? I just spent the last hour listening to Steve Bannon. +06/02/2018,Economists,@kaushikcbasu,"World’s top-10 remittance recipients, 2017 (billion $) +India 69 +China 64 +Philippines 33 +Mexico 31 +Nigeria 22 +Pakist… https://t.co/z9nqp4UX7K" +06/02/2018,Economists,@kaushikcbasu,"RT @BookBub: 27 Beach Reads Recommended by Authors +https://t.co/R172fFHfoA #beachread @dikshabasu @kevinkwanbooks @almakatsu @RickMofina @R…" +06/01/2018,Economists,@kaushikcbasu,"Gertrude Stein, brooding in Bryant Park, in the shadow of New York Public Library. https://t.co/IkfiFYcczC" +06/01/2018,Economists,@kaushikcbasu,"One of the greatest Bengali poems ever written—Nazrul Islam’s Bidrohi, recited by his son Kazi Sabyasachi. +BIDROHI_… https://t.co/0zy5nNkGKs" +06/01/2018,Economists,@kaushikcbasu,Can this paper be kept away from political leaders please? https://t.co/zo6w7zfqqz +05/30/2018,Economists,@kaushikcbasu,"RT @MartenRobert: Proud to share #Sugar, #Tobacco and #Alcohol Taxes to Achieve the #Sustainable Development Goals online in @TheLancet #ST…" +05/30/2018,Economists,@kaushikcbasu,I have decided I need counseling for anger management. Seeing some of the advantages people get from their anger ta… https://t.co/GVMTgjbGma +05/28/2018,Economists,@kaushikcbasu,I am beginning to work on a new graduate course on Law and Economics and Game Theory that I will teach this Fall. T… https://t.co/Cg4BkJdNjV +05/28/2018,Economists,@kaushikcbasu,"It is not just economics that is not hard science. There is no such thing as hard science. +For every belief about t… https://t.co/knvIglXcI4" +05/28/2018,Economists,@kaushikcbasu,"Bertrand Russell, a life-long atheist, when asked what he would say if after death he found himself face-to-face wi… https://t.co/uj3hX8K5al" +05/28/2018,Economists,@kaushikcbasu,Nehru: “What the mysterious is I do not know. I do not call it God because God has come to mean much that I do not… https://t.co/Qs1gZvwF6y +05/27/2018,Economists,@kaushikcbasu,"RT @saliltripathi: India is an ""an ancient palimpsest on which layer upon layer of thought and reverie had been inscribed, and yet no succe…" +05/27/2018,Economists,@kaushikcbasu,RT @NYCMayor: The most sacred duty of government is to protect people – especially defenseless children. There is nothing more barbaric tha… +05/27/2018,Economists,@kaushikcbasu,"Diksha Basu’s book review in New York Times. +A Devastating Friendship Forged in India’s Underbelly https://t.co/C22Kilm7ks" +05/27/2018,Economists,@kaushikcbasu,"Financial inclusion +% adults having bank accounts +Canada 100 +Denmark 100 +Norway 100 +Sweden 100 +Singapore 98 +UK 96 +I… https://t.co/Av1KDoU1nE" +05/26/2018,Economists,@kaushikcbasu,"RT @sanjoynarayan: @kaushikcbasu Could be a package deal at birth: cataract, appendix, tonsils, and an additional option of a circumcision." +05/26/2018,Economists,@kaushikcbasu,"Since cataract surgery is needed once in a lifetime and nowadays, they say, it’s harmless to get it done early, I h… https://t.co/uXJC6TrEzb" +05/24/2018,Economists,@kaushikcbasu,The ideal is fake irrationality. The big risk occurs when it is not fake. https://t.co/9nFipHpneP +05/24/2018,Economists,@kaushikcbasu,"My latest piece on financial inclusion around the world, with statistics and comments on Kenya, India, Bangladesh,… https://t.co/bOIeulNuP4" +05/24/2018,Economists,@kaushikcbasu,"W.H. Auden, and someone like Virginia Wolf, keeping watch over notes on Cournot equilibrium. https://t.co/a9ZQdwQ09n" +05/24/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Behavioral economics. This picture is the most powerful illustration of how our minds can be deceived. The squares A and… +05/24/2018,Economists,@kaushikcbasu,10 Career-Altering Quotes from 2018 Commencement Speeches|Vault Blogs|https://t.co/wpktpCwwMR https://t.co/vIwfY1AlQx +05/24/2018,Economists,@kaushikcbasu,"Patrick Kabanda analyzes how the arts can nurture creativity and economic development, a connection commonly overlo… https://t.co/BCIyaIDU48" +05/23/2018,Economists,@kaushikcbasu,Just received my advance copy. Can’t deny feeling wonderful to see it done at last. https://t.co/VK1fs5zoaa +05/23/2018,Economists,@kaushikcbasu,Behavioral economics. This picture is the most powerful illustration of how our minds can be deceived. The squares… https://t.co/91NzVSsOc5 +05/22/2018,Economists,@kaushikcbasu,"With these kinds of numbers US’s enemies must be feeling pretty redundant. +School shootings in the US compared with… https://t.co/6nCQGzDfzU" +05/21/2018,Economists,@kaushikcbasu,It is entirely possible that what you see as red others see as green & what you see as green others see as red. Thi… https://t.co/VhZOzCbmc3 +05/21/2018,Economists,@kaushikcbasu,The art of Imanjama. Dar es Salaam memories. https://t.co/XrgP5ukcoN +05/20/2018,Economists,@kaushikcbasu,"Intricate, beautiful contemporary art from Tanzania. On goat skin, by Malaba. https://t.co/bAtFufuvbf" +05/20/2018,Economists,@kaushikcbasu,Tinga tinga art from Tanzania. https://t.co/xbRIGzqtoP +05/20/2018,Economists,@kaushikcbasu,"More nostalgia. The mystery of the passage of time. Kidwai Nagar, Delhi. 1983 I think. https://t.co/MYmFmiFfEd" +05/20/2018,Economists,@kaushikcbasu,"Memories. My sister’s home, Calcutta. My mother, sisters, nieces and nephew. A zillion years ago. https://t.co/4ztymByGpH" +05/20/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Any more of Megan Markle on TV and someone (name starts with T) is going to throw a fit and put an embargo on imports fro… +05/19/2018,Economists,@kaushikcbasu,Any more of Megan Markle on TV and someone (name starts with T) is going to throw a fit and put an embargo on imports from UK. +05/19/2018,Economists,@kaushikcbasu,"Running your own Frequent Flyer program: If instead of cutting your hair in America you cut it in India, Indonesia,… https://t.co/eWAj9de62U" +05/19/2018,Economists,@kaushikcbasu,Behavioral economics: The only difference between having a haircut in a salon instead of a saloon is you pay more.… https://t.co/vckaYdP9uQ +05/19/2018,Economists,@kaushikcbasu,"Ranjan Ray, in the Wire, on how rising inequality is fueling identity politics, including increased attacks on Dali… https://t.co/nQHmd9fLYt" +05/18/2018,Economists,@kaushikcbasu,My paper on randomized control trials and the ‘dinosaur risk’. https://t.co/MUi585W3lq +05/18/2018,Economists,@kaushikcbasu,"Brandeis IBS Commencement Address: “have concern for fellow human beings whatever their religion, race, gender and… https://t.co/xMNGSizeHI" +05/18/2018,Economists,@kaushikcbasu,A balanced assessment of Universal Basic Income: https://t.co/w3f0BhH81B +05/17/2018,Economists,@kaushikcbasu,"RT @soutikBBC: Ashok Mitra was an intellectual reminiscent of the left-wing French intellectuals of the mid-20th century, person India can…" +05/17/2018,Economists,@kaushikcbasu,Fun article by John Cassidy on game theory and Prisoner’s Dilemma in Trump’s White House. But please don’t take ser… https://t.co/aD257iFk0x +05/17/2018,Economists,@kaushikcbasu,During my time in the Indian government I had many interactions with the Indian media-smart & ever ready to contest… https://t.co/Fm331UdH3B +05/17/2018,Economists,@kaushikcbasu,RT @MIMProductions: The latest #BRICtalk episode has just gone live at https://t.co/fhqE2mi00o - this week @stephensackur speaks to The Wor… +05/17/2018,Economists,@kaushikcbasu,It is possible for central banks to prevent depreciation of the national currency without running down the nation’s… https://t.co/LMyflGK3th +05/16/2018,Economists,@kaushikcbasu,"Before you say God created this world and everything in it, be careful. He is unlikely to take this as a compliment." +05/16/2018,Economists,@kaushikcbasu,@himikac Thank you. +05/16/2018,Economists,@kaushikcbasu,"The world has fewer conspiracies than people think there are. And of the ones that are there, most are of little co… https://t.co/QJzEUyfBqn" +05/15/2018,Economists,@kaushikcbasu,"Late spring, Ithaca. https://t.co/Nq4DVkH14d" +05/15/2018,Economists,@kaushikcbasu,"A collage of three artists: +Laishram Meena Devi, Shipra Bhattacharya and Laxman Aelay. https://t.co/PAFFLJAgmq" +05/14/2018,Economists,@kaushikcbasu,"One kind of election meddling? +One reason why Russia & China are working to help Trump have some (temporary) foreig… https://t.co/6WwMqpfhzj" +05/14/2018,Economists,@kaushikcbasu,"Here is a hypothesis worth testing using randomized control trials: +Regular consumption of a small amount of wasabi… https://t.co/M5xi5D3Q19" +05/14/2018,Economists,@kaushikcbasu,"“We can have democracy ... or we can have great wealth concentrated in the hands of a few, but we can't have both.”… https://t.co/qydUlDJub4" +05/14/2018,Economists,@kaushikcbasu,"From the 2018 Commencement Address to Brandeis International Business School, delivered on 13 May. ""Dr. Manmohan Si… https://t.co/BUfA8oehmm" +05/12/2018,Economists,@kaushikcbasu,"Fascinating paper. My own hunch is it is not just our brain but time itself moves in pixels, discretely, in such ra… https://t.co/ODe1Uf8Sj7" +05/12/2018,Economists,@kaushikcbasu,The world moves ahead by the fact that human beings have a knack for doing the right things for the wrong reasons. +05/12/2018,Economists,@kaushikcbasu,"My Commencement Address to IBS, Brandeis University, on Sunday 13 May, 8 am (US Eastern time) will be live streamed… https://t.co/2PcjOxmoPV" +05/11/2018,Economists,@kaushikcbasu,@shankha5 @sg61us Thank you. +05/11/2018,Economists,@kaushikcbasu,"Wonderful review by James Quandt in NYRB of Mrinal Sen’s life in cinema, which also captures the spirit of Calcutta… https://t.co/W9hpyiWmWc" +05/11/2018,Economists,@kaushikcbasu,"RT @rodrikdani: My latest, on the US-China trade spat https://t.co/vAnIXSO6vT" +05/10/2018,Economists,@kaushikcbasu,"Book on governance and corruption control, edited with Tito Cordella, with chapters by Avinash Dixit, Francis Fukuy… https://t.co/3q8sN1hZa0" +05/10/2018,Economists,@kaushikcbasu,"RT @kaushikcbasu: Sarat Chandra, one of 20th century's greatest writers, was known for his irony. When after Tagore got the Nobel a man fla…" +05/10/2018,Economists,@kaushikcbasu,"RT @TheLancet: ""Sexual and reproductive health & rights are fundamental to people's health and survival, to economic development, and to th…" +05/09/2018,Economists,@kaushikcbasu,RT @strandbookstore: #signedbooks are in! https://t.co/YpDbtehgKd +05/09/2018,Economists,@kaushikcbasu,"The Windfall at the Strand, New York. https://t.co/AWI2ZCKpB3" +05/09/2018,Economists,@kaushikcbasu,"Sarat Chandra, one of 20th century's greatest writers, was known for his irony. When after Tagore got the Nobel a m… https://t.co/MRTE3Fbva2" +05/09/2018,Economists,@kaushikcbasu,"Remembering Tagore on his anniversary. Lines from his Gitanjali: +“Where the world has not been broken up into fragm… https://t.co/8OffMo7sdU" +05/09/2018,Economists,@kaushikcbasu,"Look forward to delivering the Brandeis University IBS Commencement Address 2018. +https://t.co/TPiyy3DkqU" +05/09/2018,Economists,@kaushikcbasu,"Celebrating Tagore's birth anniversary. +In the age of darkness we should invoke the poet, and tell ourselves that a… https://t.co/Fe77HVVBi6" +05/08/2018,Economists,@kaushikcbasu,And it creates a big credibility problem for all future deals struck by US presidents. The question will loom about… https://t.co/w23ea79AFs +05/07/2018,Economists,@kaushikcbasu,"RT @StuartWhatley: ""After decades of corrupt rule, economic stagnation, and other legacies of colonialism, Sub-Saharan Africa's long-term o…" +05/07/2018,Economists,@kaushikcbasu,"Palisades, New York. Enjoyed lecturing to Cornell’s Executive MBA students. https://t.co/SOT7HzAenr" +05/06/2018,Economists,@kaushikcbasu,"The soothing, early-evening silence of Sparkill, New York. https://t.co/BVQHocmTXc" +05/05/2018,Economists,@kaushikcbasu,"RT @kaushikcbasu: My Ethiopian taxi driver took a roundabout route, assured me he would not charge for the diversion & stood by that promis…" +05/05/2018,Economists,@kaushikcbasu,Memories of Dar es Salaam. With Joe Stiglitz and Benno Ndulu. https://t.co/i6KNUE6YHu +05/05/2018,Economists,@kaushikcbasu,"My Ethiopian taxi driver took a roundabout route, assured me he would not charge for the diversion & stood by that… https://t.co/oA4xqeSWvc" +05/05/2018,Economists,@kaushikcbasu,"“All I have is a voice +To undo the folded lie, +The romantic lie in the brain +Of the sensual man-in-the-street +And t… https://t.co/B7Kbnop5jN" +05/05/2018,Economists,@kaushikcbasu,"And here is the Stockholm Statement, issued by 13 economists from around the world, including 4 Chief Economists of… https://t.co/Z82rnvnQqs" +05/04/2018,Economists,@kaushikcbasu,"Avinash Dixit & Ritika Mankar’s superb essay on corruption control in Mint is a must read: +https://t.co/5kxwZkbvwm" +05/04/2018,Economists,@kaushikcbasu,And also good to see a newspaper doing such a serious story. Good for the nation. https://t.co/AaEk2rsdWG +05/03/2018,Economists,@kaushikcbasu,Kwaheri Tanzania. https://t.co/gQ6XsaCbcS +05/03/2018,Economists,@kaushikcbasu,Thank you so much for your message. https://t.co/8WryfmVprL +05/03/2018,Economists,@kaushikcbasu,Sad to leave Tanzania. One of the most friendly countries. https://t.co/2hD9mr0mwQ +05/03/2018,Economists,@kaushikcbasu,Stuck in rain-soaked rush-hour traffic in Dar es Salaam. But we did not mind because it happened on Barack Obama Dr… https://t.co/eTH13yhQes +05/02/2018,Economists,@kaushikcbasu,RT @maniza_zaman: Excellent talks @ 7th annual @ESRFTZ conference in partnership wi @SwedeninTZ. World class economists. Msg of inclusive g… +05/01/2018,Economists,@kaushikcbasu,At the end of a lively debate and discussion with students and professors at the University of Dar es Salaam. https://t.co/PUSAtghKnb +05/01/2018,Economists,@kaushikcbasu,"Artist at work, Dar es Salaam. https://t.co/zJAzcy2K3y" +05/01/2018,Economists,@kaushikcbasu,"In Makangarawe, outside Dar es Salaam. https://t.co/fvOapLdCx6" +04/28/2018,Economists,@kaushikcbasu,"Madison Avenue, New York, of course. https://t.co/NLBbgCp1ub" +04/28/2018,Economists,@kaushikcbasu,Hatred of the other is a handicap. Inability to reason is a handicap. But when hatred of the other and the inabilit… https://t.co/mp9anKy1EX +04/28/2018,Economists,@kaushikcbasu,"RT @EmpowerLtd: 📢 #GrowthMindset Opportunity ⬇️ + +Attend a FREE lecture at @UniofDar given by Economists Prof @JosephEStiglitz & Prof @kaush…" +04/28/2018,Economists,@kaushikcbasu,"I went to see my doctor for a regular check up. After a long discussion the conclusion we reached, and both of us a… https://t.co/8qhGPqWEqM" +04/27/2018,Economists,@kaushikcbasu,"Amartya Sen’s contributions to economics and philosophy celebrated in Japan. +https://t.co/AOK3zFLvj3" +04/27/2018,Economists,@kaushikcbasu,The reason America is ceasing to be a global leader is that no one wants a leader who says my aim is to make myself great again. +04/27/2018,Economists,@kaushikcbasu,Politics is that rare profession in which to be told someone is good at it (Think “He is very good at politics.”) is meant to be criticism. +04/27/2018,Economists,@kaushikcbasu,Looking forward to Dar es Salaam. https://t.co/KtcXGNwmly +04/27/2018,Economists,@kaushikcbasu,"RT @JimYongKim: I’m thrilled to welcome Penny Goldberg, who will bring her vast academic experience, intellectual rigor, and boundless curi…" +04/26/2018,Economists,@kaushikcbasu,"Aggressive Variant Of McCarthyism vs Media, Says Prannoy Roy https://t.co/T7kjKcSy9s via @ndtv" +04/26/2018,Economists,@kaushikcbasu,We tell people not to be selfish & work to make a better world. Could it be that since views differ about what is “… https://t.co/7zaX8XywVM +04/26/2018,Economists,@kaushikcbasu,Beautiful old building in New York. https://t.co/bhjvRpOjmz +04/25/2018,Economists,@kaushikcbasu,"Alaka Basu on the other side of the 'demographic dividend': +https://t.co/RAYBe60OOz" +04/25/2018,Economists,@kaushikcbasu,The art of Isaac Soyer. https://t.co/uZ41I9I8FG +04/24/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Bangladesh has now grown faster than Pakistan for 12 consecutive years. Its manufacuring sector is doing better than anyo… +04/24/2018,Economists,@kaushikcbasu,My paper on why with the advance of new technology antitrust legislation needs a major overhaul. https://t.co/0tM1FQjxU1 +04/24/2018,Economists,@kaushikcbasu,Bangladesh has now grown faster than Pakistan for 12 consecutive years. Its manufacuring sector is doing better tha… https://t.co/L7h2wcRGk7 +04/23/2018,Economists,@kaushikcbasu,"Having just seen the Grant Wood exhibition at Whitney I am convinced he was one of the great American artists, capt… https://t.co/P1Y8U6VEhq" +04/23/2018,Economists,@kaushikcbasu,One huge advantage of having the delusion of being great is that it dispenses with the need to be great. +04/23/2018,Economists,@kaushikcbasu,Looking out from Whitney Museum. https://t.co/ciRYjY49s4 +04/22/2018,Economists,@kaushikcbasu,"Hotel in Sparkill, New York. Somehow it evokes the same feeling as a Hopper painting. https://t.co/QSg1XtEJWk" +04/22/2018,Economists,@kaushikcbasu,"Endless corridor in Sparkill, New York. https://t.co/gtOvkQ5aNk" +04/22/2018,Economists,@kaushikcbasu,"Remembering a visit with my mother to the home of a gay couple - friends of mine - around this day, 20 years ago. https://t.co/MaBrdhSNQT" +04/22/2018,Economists,@kaushikcbasu,@SuPriyoBabul Thank you for your thoughts on this. Let us try to have a conversation the next time I am in Kolkata. +04/22/2018,Economists,@kaushikcbasu,"“Like Odysseus, the [US] President looked wiser when he was seated; & his hands, though capable & fairly strong, we… https://t.co/8rdl4z5gf6" +04/22/2018,Economists,@kaushikcbasu,"RT @CelestinMonga: Congrats to @JosephEStiglitz, economist extraordinaire, on winning the #2018SidneyPeace Prize for dedicating his life’s…" +04/21/2018,Economists,@kaushikcbasu,"Branko Milanovic on rising inequality and the dangers this poses for the survival of democracy, and therefore our w… https://t.co/0Gdf1oudLT" +04/21/2018,Economists,@kaushikcbasu,Diksha Basu goes paperback. https://t.co/5ReaC8QGDq +04/20/2018,Economists,@kaushikcbasu,Charcoal on paper. My attempt at capturing pensiveness. Nothing quite as uplifting as art. https://t.co/3cSV1W4SrP +04/20/2018,Economists,@kaushikcbasu,"The launch of CRADLE — Cornell Research Academy of Development, Law, and Economics. +https://t.co/v3n5KyDzkK" +04/20/2018,Economists,@kaushikcbasu,ArtExpo New York. Staggering display of talent. https://t.co/mylY3g6I00 +04/20/2018,Economists,@kaushikcbasu,"In an economic crisis to be told that political leaders, instead of professionals with expertise, are taking charge… https://t.co/niAw0BFo0b" +04/19/2018,Economists,@kaushikcbasu,"@PhillipJHay We all miss you deeply, Phil." +04/18/2018,Economists,@kaushikcbasu,The old and the new of New York. https://t.co/R3As4TBDjk +04/17/2018,Economists,@kaushikcbasu,The tragedy of religious fundamentalists & hypernationalists is that instead of spending time trying to do mathemat… https://t.co/kBkUX9IWqv +04/16/2018,Economists,@kaushikcbasu,@saliltripathi Harvard. No papers. Amartya and Emma organized it. +04/16/2018,Economists,@kaushikcbasu,A full day of fascinating discussion and debate on Bangladesh’s development in this beautiful little town in north… https://t.co/zPnrm7mSS3 +04/16/2018,Economists,@kaushikcbasu,"RT @nilanjanaroy: ""Prime Minister, we write to you not just to express our collective sense of shame and not just to give voice to our angu…" +04/16/2018,Economists,@kaushikcbasu,"RT @sagarikaghose: Speak out, women of @BJP4India. Speak out as the mothers and women you are and cry for tiny girls whose bodies lie broke…" +04/15/2018,Economists,@kaushikcbasu,"A peep into the storage room of an art gallery in Chelsea, New York. https://t.co/QQJ7skSOGW" +04/15/2018,Economists,@kaushikcbasu,"After 2 blissful days of listening & speaking on law & economics, a blissful Saturday of gallery hopping on West 24… https://t.co/CZpIeEjdBv" +04/15/2018,Economists,@kaushikcbasu,A slice of New York. https://t.co/vINkpAYTLq +04/14/2018,Economists,@kaushikcbasu,"Morality is the idea of doing good as an end in itself, in being kind and inclusive, in remembering that others—be… https://t.co/a6C8xqmjhe" +04/14/2018,Economists,@kaushikcbasu,"RT @GaelGiraud_AFD: At @Cornell, fantastic contribution by #JohnRoemer (@Yale) presenting the Kantian equilibrium @kaushikcbasu #economics…" +04/13/2018,Economists,@kaushikcbasu,Morality is important but it must not be equated with religion. Religious fundamentalists also have codes of behavi… https://t.co/g025qyKg0a +04/13/2018,Economists,@kaushikcbasu,"RT @AudreyTruschke: International news coverage of one of the recent horrific child #rape cases in India. It is hard to even read this, and…" +04/12/2018,Economists,@kaushikcbasu,Mother Teresa with daffodils. Painting by Myanmar artist Sitt Nyein Aye. https://t.co/IRgHatt18o +04/12/2018,Economists,@kaushikcbasu,"Inaugural conference of CRADLE [Cornell Research Academy of Development, Law & Economics], New York, featuring Jose… https://t.co/7Ew46qjn2W" +04/11/2018,Economists,@kaushikcbasu,@juanauribep 11 +04/11/2018,Economists,@kaushikcbasu,On my reading list. Phenomenal author. I shall soon discover if it’s a phenomenal book. https://t.co/muE9MNha0z +04/11/2018,Economists,@kaushikcbasu,Job creation & growth depend on speed & efficiency. So how many days does it take to get government permission to s… https://t.co/x97M142RyL +04/09/2018,Economists,@kaushikcbasu,"Book on governance, corruption...-International Economic Association-edited with Tito Cordella. Papers by +Avinash D… https://t.co/OCf8UADao7" +04/09/2018,Economists,@kaushikcbasu,RT @MichaelPascoe01: Artist unknown https://t.co/cQULG3IJhs +04/09/2018,Economists,@kaushikcbasu,Political speeches that get applause are usually ones where listeners with diverse beliefs feel reassured that what… https://t.co/hl3tu1nlyP +07/01/2018,Economists,@haroldpollack,Those of us who oppose mistreating immigrants are mainstream America. Let's proceed with confidence+civility at the… https://t.co/MkC0znA1HO +07/01/2018,Economists,@haroldpollack,@aravosis Trump desperately wants American politics to be a wild food fight. Let's not give him that. +07/01/2018,Economists,@haroldpollack,"@Dennisabm Indeed, though as your response indicates, no morning is perfect.... :) (Go White Sox!)" +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 1/5 https://t.co/n3jJ1I12wL" +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 4/5 https://t.co/o37ZPj3k5B" +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: The second critical message from Chicago's #KeepFamilesTogetherMarch 2/2 https://t.co/rw9J2bbkWF +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: The first critical message from Chicago's #KeepFamilesTogetherMarch 1/2 https://t.co/PmzzTG3I7h +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Superheroes come in many shapes and sizes. Chicago #KeepFamiliesTogetherMarch https://t.co/38ZFqKfZvK +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: Some signs from Chicago #KeepFamilesTogetherMarch 1/237 or whatever. (Ok, ""whatever"" is about 15....) https://t.co/lonRw…" +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Chicago #KeepFamilesTogetherMarch: The crowd... 1/9 https://t.co/EEWb2xW8d4 +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Take it… +07/01/2018,Economists,@haroldpollack,RT @EricPatashnik: This is a great opportunity for political scientists. The @monkeycageblog team is amazing. It is fantastic to see the i… +07/01/2018,Economists,@haroldpollack,RT @causalinf: The Giffen good is a great example to me of the merits of neoclassical reasoning. Very counterintuitive to the point people… +07/01/2018,Economists,@haroldpollack,RT @rgreersmith: @haroldpollack @wheelieboy #Dinosaurs4Immigration https://t.co/fbv3lFMIUA +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 5/5 https://t.co/0Mnp6jQOas" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 4/5 https://t.co/o37ZPj3k5B" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 3/5 https://t.co/XnuIda20XT" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 2/5 https://t.co/dwdYuuh5Qp" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 1/5 https://t.co/n3jJ1I12wL" +07/01/2018,Economists,@haroldpollack,"RT @trekonomics: @haroldpollack Our 10yr old today (he's been reading @repjohnlewis' graphic novel ""March"") + +""You know guys, movements take…" +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 9/9 https://t.co/yKctT4ryzs +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 8/9 https://t.co/vPM2lHITwG +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 7/9 https://t.co/FjSWMxtPKP +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 6/9 https://t.co/D649FMwPzk +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 5/9 https://t.co/hJGZeb1LVO +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 4/9 https://t.co/kW0aasi1jl +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 3/9 https://t.co/daqNiGZjQc +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 2/9 https://t.co/ztsScCIxKo +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 1/9 https://t.co/EEWb2xW8d4 +07/01/2018,Economists,@haroldpollack,"@CDBeee Ugh. Sorry to hear that, Chicago's was family friendly." +07/01/2018,Economists,@haroldpollack,The second critical message from Chicago's #KeepFamilesTogetherMarch 2/2 https://t.co/rw9J2bbkWF +07/01/2018,Economists,@haroldpollack,The first critical message from Chicago's #KeepFamilesTogetherMarch 1/2 https://t.co/PmzzTG3I7h +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 4/4 https://t.co/2ifk9ssIoQ +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 3/4 https://t.co/sXiSIMyK8h +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 2/4 https://t.co/JoQ8SJP495 +07/01/2018,Economists,@haroldpollack,Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Ta… https://t.co/cETbx4nhIe +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 15/237 or whatever=15. https://t.co/EZTs9Jv0QY +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 14/237 or whatever https://t.co/V13WtC2HSc +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 13/237 or whatever https://t.co/WPui56JlJy +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 12/237 or whatever https://t.co/Em8DxzaEfE +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 11/237 or whatever https://t.co/kMOkUJL6Yd +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 10/237 or whatever https://t.co/Q299NYxXSz +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 9/237 or whatever https://t.co/4201ggi7jw +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 8/237 or whatever https://t.co/wzSrp12LyN +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 7/237 or whatever https://t.co/mOedMUm691 +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 6/237 or whatever https://t.co/spZMucgUew +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 5/237 or whatever https://t.co/6vKnNKFwFS +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 4/237 or whatever https://t.co/zlICaQpJSd +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 3/237 or whatever. https://t.co/1UtHiil9mO +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 2/237 or whatever https://t.co/48vqKMA15q +07/01/2018,Economists,@haroldpollack,"Some signs from Chicago #KeepFamilesTogetherMarch 1/237 or whatever. (Ok, ""whatever"" is about 15....) https://t.co/lonRwoVKTM" +07/01/2018,Economists,@haroldpollack,"@MitchellCares Hey you could at lest give me a h/t for my pic, man." +07/01/2018,Economists,@haroldpollack,@ACAResource Leg +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/3u8TXZHswZ +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/reudUXDOGZ +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/rq7F67w9VD +07/01/2018,Economists,@haroldpollack,"More #KeepFamilesTogetherMarch Captain America, just because. https://t.co/vTY9o3Morc" +07/01/2018,Economists,@haroldpollack,Superheroes come in many shapes and sizes. Chicago #KeepFamiliesTogetherMarch https://t.co/38ZFqKfZvK +07/01/2018,Economists,@haroldpollack,"Pretty impressive ""The Dude"" tattoo, Spotted at Chicago #KeepFamilesTogetherMarch... https://t.co/I2sce05ezv" +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @causalinf America has truly been the promised land for so many of us. We can't slam the door behind… https://t.co/iTCLLFpwkk +07/01/2018,Economists,@haroldpollack,@annemulholland2 @causalinf @peterlorentzen Certainly a big one. We had to be cruel to be kind.... +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf I grew up with the children of many survivors. Thinking about them a lot lately. +07/01/2018,Economists,@haroldpollack,RT @causalinf: @tribalidentity @haroldpollack Thank you for this link. I’m reading the Wikipedia page about Father Patrick Desbois now. Jus… +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Have not.... +07/01/2018,Economists,@haroldpollack,"RT @causalinf: @haroldpollack @peterlorentzen They’re also very attractive people, in all respects, so it’s an interesting show to watch be…" +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Couldn’t get the link to work. +07/01/2018,Economists,@haroldpollack,@causalinf @tribalidentity Hard habit to break.... +07/01/2018,Economists,@haroldpollack,"@causalinf @tribalidentity My favorite +https://t.co/EHHwU92slA" +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Those folk are the best. +07/01/2018,Economists,@haroldpollack,"RT @causalinf: @haroldpollack @peterlorentzen I get it. I know it’s a deeply flawed system of organizing society, so I’m being somewhat fac…" +07/01/2018,Economists,@haroldpollack,@causalinf @tribalidentity They sent dissidents and refuseniks to these facilities as punishment. Some weekend you… https://t.co/rYztzxv7M7 +07/01/2018,Economists,@haroldpollack,@causalinf Never actually have seen it. My culturally-sophisticated friends love it. +07/01/2018,Economists,@haroldpollack,@peterlorentzen @causalinf Many of my older relatives were communists. Came to for understandable human reasons. B… https://t.co/zxaatr76q9 +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf 83.... +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf What was it like in ‘93 compared with today? +07/01/2018,Economists,@haroldpollack,"@tribalidentity @causalinf Prison camps, purges, and forced psychiatric hospitalizations made some of them a bit snippy...." +07/01/2018,Economists,@haroldpollack,@causalinf I grew up with refugees from USSR. Made me more anti-communist than most Republicans these days.... +07/01/2018,Economists,@haroldpollack,@drvox There were left 3rd party folk recruiting at today’s Chicago event.🤦‍♀️ +06/30/2018,Economists,@haroldpollack,@Neoavatara Well in 2016 a right wing authoritarian ran against an imperfect but safe conventional opponent. In my… https://t.co/A0wQvLK3yU +06/30/2018,Economists,@haroldpollack,@dariustahir @amitabhchandra2 That doesn’t really work in the era of efficient global transportation. +06/30/2018,Economists,@haroldpollack,"RT @Bill_Gardner: @haroldpollack Yes. And notice that while @davidharsanyi finds that it is transparent what ‘free expression’ requires, ‘d…" +06/30/2018,Economists,@haroldpollack,"Its a small thing, but well-played @TweetOfGodd, well played. https://t.co/1zXx9pNrpd" +06/30/2018,Economists,@haroldpollack,@ThomasCRicketts Also legit fear. +06/30/2018,Economists,@haroldpollack,@amitabhchandra2 That's legit fear. +06/30/2018,Economists,@haroldpollack,"Kindof amazing that if you support NATO, global economic institutions, open trade, vigorous foreign policy that con… https://t.co/UPZ1HdRJ9n" +06/30/2018,Economists,@haroldpollack,@amitabhchandra2 I’m nervous about this one. Reform and replace a better frame. +06/30/2018,Economists,@haroldpollack,"Of Course, It Could Not Happen Here via @NYTimes https://t.co/OfVotfNPGw" +06/30/2018,Economists,@haroldpollack,"RT @gregggonsalves: Remember as we see temperatures rise this weekend, that heat waves are public health crises, often affecting the elderl…" +06/30/2018,Economists,@haroldpollack,RT @LynnBlewett: 45% of children in rural areas rely on Mcaid for their health insurance coverage! 45%! thank you @GeorgetownCCF! https:… +06/30/2018,Economists,@haroldpollack,"RT @ThePlumLineGS: This is unfortunate. + +Trump faces a big test now. After Annapolis, does he stop directing the rage of his supporters at…" +06/30/2018,Economists,@haroldpollack,Anyone who has read How Democracies Die will be specifically scared by that article title. https://t.co/zcwtOt3K4F +06/30/2018,Economists,@haroldpollack,"RT @EricPatashnik: All health care systems face tradeoffs btwn access, cost and quality, & must decide how much to rely on standardized evi…" +06/30/2018,Economists,@haroldpollack,RT @SameFacts: The great Hungarian economist János Kornai protests the authoritarian takeover of his homeland. https://t.co/QI4mTsUxog +06/30/2018,Economists,@haroldpollack,@bradwrightphd Watching a bunch of machine learning videos? +06/30/2018,Economists,@haroldpollack,"RT @moira: Here's the unroll of my defense the call to #abolishICE on national security merits. h/t @reftpt +https://t.co/ygcOw2cn1V" +06/30/2018,Economists,@haroldpollack,@Park10A @Neoavatara @ThePlumLineGS Immigration reform is one set of difficult issues. Investigating crimes committ… https://t.co/baS5AP1UyF +06/30/2018,Economists,@haroldpollack,"@kdrum @MotherJones Bless, man." +06/30/2018,Economists,@haroldpollack,@Neoavatara Can't imagine. +06/30/2018,Economists,@haroldpollack,RT @EricColumbus: @Neoavatara @haroldpollack @ThePlumLineGS Many have argued for an opposite approach from that ICE-HSI letter -- to reunit… +06/30/2018,Economists,@haroldpollack,@jplesniewski Awesome. Say hi for me. +06/30/2018,Economists,@haroldpollack,RT @jplesniewski: @haroldpollack The CHC needs to read Street Level Bureaucrats. Abolishing ICE and replacing it with orgs dedicated to dec… +06/30/2018,Economists,@haroldpollack,@bdhumbert Let’s leave it there. +06/30/2018,Economists,@haroldpollack,@Neoavatara @ThePlumLineGS These policies have damaged basic law enforcement legitimacy in combatting transnational… https://t.co/6jpW8rgTEG +06/30/2018,Economists,@haroldpollack,RT @ThePlumLineGS: @Neoavatara @haroldpollack nonstory +06/30/2018,Economists,@haroldpollack,"RT @OwlTamale: @haroldpollack His reasonings can be a bit ham-handed, tbh. But he's never let me down, in court, or coldcuts" +06/30/2018,Economists,@haroldpollack,@OwlTamale @mattyglesias Wait—I know him. The Lochner piece was brilliant. But keeps slicing things too thin. I mad… https://t.co/EOFgUdKcRA +06/30/2018,Economists,@haroldpollack,"RT @mattyglesias: Hillary went to Yale Law, right? Trump should pick her." +06/30/2018,Economists,@haroldpollack,"@Neoavatara @ThePlumLineGS There is a decent case to reorganize it, to separate the traditional law enforcement/nat… https://t.co/MPDteajbaa" +06/30/2018,Economists,@haroldpollack,"RT @TomSugrue: Protest is seldom polite. It’s most effective when it’s confrontational, unsettling, disruptive. Calls for civility misunder…" +06/30/2018,Economists,@haroldpollack,@TomSugrue @mathbabedotorg Good piece +06/30/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 The gerontocracy problem is real. Would at least help with that. +06/30/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 Yeah dunno how to deal with that one. +06/30/2018,Economists,@haroldpollack,https://t.co/jfYx2wXxcH +06/29/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 Maybe—who knows. It is a better process. That motivates me more in this instance than tryin… https://t.co/RitZk2LA5c +06/29/2018,Economists,@haroldpollack,@jadler1969 @Neoavatara Still a better system. +06/29/2018,Economists,@haroldpollack,@C_Garthwaite Just a huge problem across so many levels of government. +06/29/2018,Economists,@haroldpollack,RT @C_Garthwaite: This is also a problem with the judiciary -- federal judges makes less than first year associates at many big law firms.… +06/29/2018,Economists,@haroldpollack,"@bdhumbert Also remember when Trump claimed that he sent investigators to Hawaii, and we wouldn’t believe what they were finding?" +06/29/2018,Economists,@haroldpollack,@bdhumbert Having black friend or admiring particular black ally doesn’t make you a non-racist. Many segregationist… https://t.co/QtAgAa1Ry1 +06/29/2018,Economists,@haroldpollack,@Conservative58 Awesome. BTW--You should be very proud of your daughter's professionalism and excellent work. Big grant submitted today. +06/29/2018,Economists,@haroldpollack,"@bdhumbert Birtherism, Central Park 5, comments on Mexican-American judge called the textbook definition of a racis… https://t.co/Yv7RZYe2ms" +06/29/2018,Economists,@haroldpollack,@bdhumbert Being white was never the sin. People made a bad mistake+hurt our country by supporting a grifting+errat… https://t.co/sN4fIjkGuU +06/29/2018,Economists,@haroldpollack,This letter from 19 ICE investigators is quite interesting. Proper public anger regarding ICE's harsh policies towa… https://t.co/tyLIwsDoBc +06/29/2018,Economists,@haroldpollack,@bdhumbert SHOULD was correct. Could was another matter.... +06/29/2018,Economists,@haroldpollack,"Totally sick of final proofreads on the R01 going in 3pm today. Did that one last proofread, ready to vomit already… https://t.co/yhMrMzG5Qj" +06/29/2018,Economists,@haroldpollack,Hey Amy's Dad--Tell her she left her sweater in my office. +06/29/2018,Economists,@haroldpollack,@wheelieboy I retweeted with direct link. Odd. +06/29/2018,Economists,@haroldpollack,This link seems to work better https://t.co/p0hlvuvZzQ https://t.co/XScQwaj7yn +06/29/2018,Economists,@haroldpollack,@jimgeraghty Permit to purchase should be an area in which bipartisan agreement is possible. Law enforcement might… https://t.co/ji3B1pAn6M +06/29/2018,Economists,@haroldpollack,"DId I get anything wrong here? || +There’s no silver lining to Trump’s win. We have to make our own. https://t.co/gEQAVhJ894" +06/29/2018,Economists,@haroldpollack,"@NoFuxLeft2give @Evan_McMullin And to you. Hard times, but the clarity of the situation is bracing." +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin Me too. Out to march tomorrow. Still my basic perspective 18 months in… https://t.co/8aOb4btAFf +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin Agree. I hope there is a reachable moderate group who recognize the unworthiness of… https://t.co/gU3zeBH7RO +06/29/2018,Economists,@haroldpollack,@tmwinsett @ScandalABC Tried to. Failed to make sense of any of it. +06/29/2018,Economists,@haroldpollack,@bartbing71 @dziblatt @cblatts It is a great book. +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin I prefer to focus my anger+fire on Trump supporters who are harming the country. +06/29/2018,Economists,@haroldpollack,"@NoFuxLeft2give @Evan_McMullin Uh dude, I am a proud liberal Democrat." +06/29/2018,Economists,@haroldpollack,"RT @SeanCasten: Confession: sometimes when I watch the POTUS actively weaken European alliances, incite violence against journalists, spout…" +06/29/2018,Economists,@haroldpollack,@C_Garthwaite @amitabhchandra2 You have both been reported. +06/29/2018,Economists,@haroldpollack,"RT @ArtKellermannMD: With all respect, I hope this does not happen. The USPHS Commissioned Corps performs essential tasks that protect the…" +06/29/2018,Economists,@haroldpollack,The only plot-line more lamely over-written than @ScandalABC is the current season of actual US politics. Every day more unbelievable. +06/29/2018,Economists,@haroldpollack,Threats to America's global role: The call came from inside the house.... https://t.co/CpO1Ih1S7Q +06/29/2018,Economists,@haroldpollack,Props to @veppol and all the social work graduates dealing with the practicalities of the LSW exam and other relate… https://t.co/PT1H5Q4KQL +06/29/2018,Economists,@haroldpollack,RT @bylenasun: Today marks important milestone in Congo's Ebola outbreak: Everyone who has been in contact with the last confirmed case ha… +06/29/2018,Economists,@haroldpollack,"RT @JoyAnnReid: When they thought she would be president, Republicans vowed to block a Hillary Clinton SCOTUS pick come what may, for four…" +06/29/2018,Economists,@haroldpollack,"RT @ChadBown: 1. America designed the WTO +2. America benefits massively from the WTO + +Withdrawal cuts off American farmers, workers and com…" +06/29/2018,Economists,@haroldpollack,"RT @LisaRosenbaum17: ""These common interpretations of end-of-life spending flirt with a statistical fallacy: Those who end up dying are not…" +06/29/2018,Economists,@haroldpollack,"RT @peterbachmd: @LisaRosenbaum17 Interesting analysis, but we showed 15 years ago using basic rules of study design that end of life studi…" +06/29/2018,Economists,@haroldpollack,"RT @dziblatt: @cblatts Read our book with the title ""How Democracies Die"" and you will see it very explicitly elaborates the historical con…" +06/29/2018,Economists,@haroldpollack,"RT @Evan_McMullin: It's easy to complain about media bias, which exists on each side. However, what the country needs now from GOP leaders…" +06/29/2018,Economists,@haroldpollack,This Is the World Mitch McConnell Gave Us https://t.co/ocWEeR7J7G +06/29/2018,Economists,@haroldpollack,"RT @amitabhchandra2: The popular view, that there are tons of people that have a high probability of death and on whom we foolishly spend t…" +06/29/2018,Economists,@haroldpollack,"RT @jbview: [If Dems had not gone nuclear in 2013, everything right now would be the same except Dems would have 3 fewer DC Circuit judges…" +06/28/2018,Economists,@haroldpollack,Periodic reminder: Life is short. I block or mute people who direct uncivil messages at me. +06/28/2018,Economists,@haroldpollack,@Neoavatara @JasonKirell @owillis @JerylBier Thanks. I feel pretty strongly that we have to address this. +06/28/2018,Economists,@haroldpollack,RT @setmoreoff: Thank you for sharing this. We have a paper under review examining the effect of a program of expedited Medicaid enrollment… +06/28/2018,Economists,@haroldpollack,@arenella1 Thx +06/28/2018,Economists,@haroldpollack,"@markabarger @Trumpseedeadppl ACA Medicaid expansion is helping millions of people, one reason why so many Republican governors support it." +06/28/2018,Economists,@haroldpollack,@markabarger @Trumpseedeadppl Maybe 80% of the severely disadvantaged people we work with rely on ACA Medicaid expa… https://t.co/knEJVyj0r6 +06/28/2018,Economists,@haroldpollack,@Ficshun @markabarger Ah +06/28/2018,Economists,@haroldpollack,@citizen_lea Yup +06/28/2018,Economists,@haroldpollack,@Ficshun @markabarger Mine? We have a Republican governor. +06/28/2018,Economists,@haroldpollack,https://t.co/4sjaj5YhmS +06/28/2018,Economists,@haroldpollack,RT @CitizenCohn: A determined minority now controls the levers of the government -- and is doing everything it can to keep it. Via @jonatha… +06/28/2018,Economists,@haroldpollack,"@matjen1 @Jslx20Jerry We have too much focus on the presidency, and have paid dearly. But yeah. Bill Clinton w/o scandal would be good." +06/28/2018,Economists,@haroldpollack,@bdhumbert We clearly underestimated that in 2016. Have to do better under the rules as written... +06/28/2018,Economists,@haroldpollack,@matjen1 @Jslx20Jerry I prefer the term: motivation +06/28/2018,Economists,@haroldpollack,@RobertWRaeburn1 Yup +06/28/2018,Economists,@haroldpollack,@Jslx20Jerry The 49 senators in the Democratic caucus represent almost 40m more Americans than the 51 senators in t… https://t.co/LRrMfcAbfQ +06/28/2018,Economists,@haroldpollack,@profwschiller That’s certainly true given the system we’re in. +06/28/2018,Economists,@haroldpollack,"@Trumpseedeadppl @markabarger I think that is right. As a center-left policy wonk, I would be delighted to see gen… https://t.co/Hen318g1rw" +06/28/2018,Economists,@haroldpollack,McConnell rule is one issue. Broader problem is that clear majority of Americans opposes what Republicans are doing… https://t.co/46fjpvqKvH +06/28/2018,Economists,@haroldpollack,"@MDaware @jflier @statnews Not sure my verbose tweet exemplified that, but thanks man. I have friends+colleagues li… https://t.co/GmIusX2fi0" +06/28/2018,Economists,@haroldpollack,"RT @ArtKellermannMD: For a generation we made cars safer through engineering. Now, some engineering is making them more dangerous by distra…" +06/28/2018,Economists,@haroldpollack,@jflier @statnews I’m honestly ambivalent re this one. President’s central problems reside in his bad character+ret… https://t.co/2EA3W8eMC4 +06/28/2018,Economists,@haroldpollack,@JoThoHalloran Sayin’ +06/28/2018,Economists,@haroldpollack,"@Avik @Twitter No idea who this person is, but she should be banned. That's scary stuff. +(Whether Twitter is biased… https://t.co/LUI3FvFKc6" +06/28/2018,Economists,@haroldpollack,"Me to no one in particular: ""Today couldn't get much more annoying."" +The fates: ""Hold on."" https://t.co/L8WXZSYEUP" +06/28/2018,Economists,@haroldpollack,"RT @RevDrBarber: We must engage in mass voter registration and mobilization, and nonviolent civil disobedience in order to build a politica…" +06/28/2018,Economists,@haroldpollack,RT @chrislhayes: None of what happens now has anything to do with arguments or persuasion but solely the calculated use of maximal applicat… +06/28/2018,Economists,@haroldpollack,"RT @BrendanNyhan: And a House where it takes ~53-55% of the popular vote for Ds to win a majority. +And a Senate where Los Angeles County ha…" +06/28/2018,Economists,@haroldpollack,"RT @Max_Fisher: Entirely possible that by 2020 we have a situation in which: + +• Democrats have won 6 out of the last 7 popular votes for pr…" +06/27/2018,Economists,@haroldpollack,This is an especially important piece because bup gets so much unfair press. || Doctors Should Be Handing Out Addic… https://t.co/fmGSCUq8xR +06/27/2018,Economists,@haroldpollack,Doctors Should Be Handing Out Addiction Meds on Demand https://t.co/8HlFItdulC via @dailytonic +06/27/2018,Economists,@haroldpollack,@Liguaneaman @Neoavatara Possibly. +06/27/2018,Economists,@haroldpollack,@Neoavatara To coin a phrase: repeal and replace. +06/27/2018,Economists,@haroldpollack,"RT @ezralevin: And another thing: Republican Justice Kennedy knew EXACTLY what he was doing resigning now, 4 months before an election, ins…" +06/27/2018,Economists,@haroldpollack,@Minivet We have to want to win as much hard-core Republicans do. And then cream them at the ballot box. +06/27/2018,Economists,@haroldpollack,@ron_fournier @CitizenCohn Yup. +06/27/2018,Economists,@haroldpollack,@Neoavatara Breyer too. +06/27/2018,Economists,@haroldpollack,@ron_fournier @CitizenCohn Deal. At this point I would abolish the Senate altogether. Guess that’s kind of unlikely... +06/27/2018,Economists,@haroldpollack,@Neoavatara We need fixed SCOTUS terms. Of course she should have retired during the Obama years. +06/27/2018,Economists,@haroldpollack,"@ron_fournier @CitizenCohn Love you too, but you are wrong on this one." +06/27/2018,Economists,@haroldpollack,"RT @mattyglesias: Everyone 👏 +Knows 👏 +Senate 👏 +Republicans 👏 +Are 👏 +Hypocrites 👏 +And 👏 +Nobody 👏 +Cares 👏 +Debate 👏 +Kennedy’s 👏 +Repla…" +06/27/2018,Economists,@haroldpollack,Reminder upon Kennedy retirement: we need fixed and predictable Supreme Court terms. That would at least slightly reduce the SCOTUS mess. +06/27/2018,Economists,@haroldpollack,🙋🏻‍♂️ https://t.co/2IseZylJYY +06/27/2018,Economists,@haroldpollack,RT @donmoyn: The majority of Americans have voted for a Republican President once in the last 26 years but have dealt with a firmly Republi… +06/27/2018,Economists,@haroldpollack,FTR--I like repeal+replace formulation better than abolish-ICE formulation. Obviously we need proper border securit… https://t.co/TXE18bsiUd +06/27/2018,Economists,@haroldpollack,"""Doc, see I have this friend. He has this problem. If you have a moment, I was wondering if I could ask you about i… https://t.co/rb04pwZqw9" +06/27/2018,Economists,@haroldpollack,"Leaked surveillance photo of @CCPProgram @UChiUrbanLabs team conspiring to keep patients out of the hospital, taken… https://t.co/0PSuF1W5y4" +07/01/2018,Economists,@econoflove,"RT @DivorceFinance: Divorce Negatively Impacts People’s Retirement Readiness +The Center for Retirement Research finds that the net worth of…" +07/01/2018,Economists,@econoflove,Contemporary working mothers actually spend significantly more time per child with their children then did stay – a… https://t.co/TqPrzy5RBH +07/01/2018,Economists,@econoflove,RT @martha_j_bailey: Wasn’t @Econ_Sandy the editor of this special issue? https://t.co/WCh1qmGRSI +06/30/2018,Economists,@econoflove,RT @TheEconomist: Birds used cigarette butts to line only those nests that were infested with ticks https://t.co/Xm5YsGbg6U +06/29/2018,Economists,@econoflove,"When it comes to childcare, grandparents are the least stressful option for mum and dad https://t.co/noILCpbXQK …… https://t.co/HKt1sA3JFa" +06/29/2018,Economists,@econoflove,"RT @KeithNHumphreys: Dance like no one’s watching and write journal articles like no one’s reading because, face it, they aren’t." +06/29/2018,Economists,@econoflove,RT @jodiecongirl: they're strategizing how to locate some women I assume https://t.co/ldmlV3mtAM +06/29/2018,Economists,@econoflove,Git Shabbes +06/29/2018,Economists,@econoflove,@wwwojtekk @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Viva Polska +06/29/2018,Economists,@econoflove,"RT @wwwojtekk: @econoflove @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David No doubt, it does…" +06/29/2018,Economists,@econoflove,Coming from co editor of JPAM https://t.co/YgxUty1jHA +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @JoshuaSGoodman @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Th… +06/29/2018,Economists,@econoflove,RT @JoshuaSGoodman: @wwwojtekk @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Th… +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Special issues dri… +06/29/2018,Economists,@econoflove,"""Breastfeeding Mothers Stop Nursing Sooner when Living with Smokers"" https://t.co/kbyopxgcGf … https://t.co/kbyopxgcGf" +06/29/2018,Economists,@econoflove,RT @causalinf: @wwwojtekk @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David That applied econo… +06/29/2018,Economists,@econoflove,@wwwojtekk @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David It depends… https://t.co/l7ix2wax38 +06/29/2018,Economists,@econoflove,RT @wwwojtekk: Our failure to tax imputed rent led to all of this https://t.co/1cKAih7MbC +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @causalinf @David A single paper by… +06/29/2018,Economists,@econoflove,@MinneapolisFed @ShellyJLundberg ....Top econ departments and research institutions. We don’t have Institutes for g… https://t.co/ObSTb1wtCa +06/29/2018,Economists,@econoflove,@MinneapolisFed @ShellyJLundberg I am happy for my colleagues in macro economics A more fundamental problem in econ… https://t.co/2WyYMoyWoP +06/29/2018,Economists,@econoflove,RT @TrevonDLogan: We can’t keep doing this and call ourselves evaluating research objectively. 8/9 re-reviewed articles which were publishe… +06/29/2018,Economists,@econoflove,"RT @mileskimball: My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits when p…" +06/29/2018,Economists,@econoflove,@Undercoverhist @clarivate History of economic thought may be treated even worse in the econ profession than econom… https://t.co/bTmkcd1nc3 +06/29/2018,Economists,@econoflove,..[these three journals ranked between 130 and 144 in 2017] could it be related to GENDER? @shellyJLundberg… https://t.co/SkBUx3dzgK +06/29/2018,Economists,@econoflove,Journals publishing relatively much on demographic economics and gender economics don't get very high impact factor… https://t.co/u3jsI2l62a +06/29/2018,Economists,@econoflove,REHO went from 167th/347 economics journals for 2016 to 139th/353 in 2017. The challenge is to keep this up while c… https://t.co/Yd9vmUuRiW +06/29/2018,Economists,@econoflove,lots more than 5 in top 5? https://t.co/AZBikZptbL +06/29/2018,Economists,@econoflove,#sexratios are important variables deserving more space in economic modeling https://t.co/n8QXPob7Vh +06/29/2018,Economists,@econoflove,J of Human Resources is now 2d top journal in economics ranked by citations (IF)! right after QJE. Last year it was… https://t.co/FPJD4RLHE5 +06/29/2018,Economists,@econoflove,"new IF journal rankings: QJE still first, but now JEP is 5th, JPE is 8th, AER is 11th, econometrica is 22, JEL is 2… https://t.co/HwPfZ05Z1c" +06/29/2018,Economists,@econoflove,is other parent really a deadbeat? https://t.co/DUt4375ryK it is good to have the option to file claims but could y… https://t.co/xvx4UVOZkm +06/29/2018,Economists,@econoflove,"RT @CdnWomenEcon: https://t.co/Qu4nYXLeeQ Is Dropping The ""Hotness"" Rating After Professors Called It Sexist https://t.co/3YTCtl5BN9 via @j…" +06/28/2018,Economists,@econoflove,"""teachers have been empowered today, as they can no longer be compelled to financially support a union that does no… https://t.co/2gsA6Mkceh" +06/28/2018,Economists,@econoflove,@AbmanRyan https://t.co/aY7gOuY1S8 +06/28/2018,Economists,@econoflove,"RT @TrevonDLogan: One third of all Freedmen’s Bureau rations went to whites. In Alabama, well over half of the rations went to whites. Alth…" +06/28/2018,Economists,@econoflove,Thanks. I will post your tweets later on buffer +06/28/2018,Economists,@econoflove,"good question asked by @MarinaAdshade: There is a verb ""mothering"", the act of which could be done all genders (spe… https://t.co/Fgao1vXroS" +06/28/2018,Economists,@econoflove,this is unacceptable https://t.co/oE4esfqMWo +06/28/2018,Economists,@econoflove,overview of some of my research on the economics of #sexratios https://t.co/tp37acHbUJ +06/28/2018,Economists,@econoflove,economists need to pay more attention to #sexratios https://t.co/n8QXPob7Vh +06/28/2018,Economists,@econoflove,this story needs to be told. Most Americans have no idea of how bad Blacks have been treated in the US. https://t.co/vLG2WHQVp9 +06/28/2018,Economists,@econoflove,where are women most likely to postpone #motherhood? https://t.co/wVYzs6uehD +06/28/2018,Economists,@econoflove,"⚡️ “About #sexratios” + +https://t.co/WG3kivXnZG" +06/28/2018,Economists,@econoflove,this important article by Maria Porter was already cited 7 times in journals and has contributed to REHO's great 20… https://t.co/VPKPIFiVbe +06/28/2018,Economists,@econoflove,https://t.co/TkHjy8xIUn economists also study the music industry https://t.co/TkHjy8xIUn +06/28/2018,Economists,@econoflove,@ImranRasul3 @irmaclots on bilingualism REHO has published REHO 14-00120 https://t.co/KCXftOL0gn by Barry Chiswick… https://t.co/ObQRBJlKVI +06/28/2018,Economists,@econoflove,"""The Effects of In Utero Exposure to the 1918 Influenza Pandemic on Family Formation"" find effects of who women mar… https://t.co/XXGJpXO96c" +06/28/2018,Economists,@econoflove,"RT @rboheim: Jérôme Adda (Bocconi University), „Love, Ethnicity or Legal Status? Natural Experiments in Marriage Markets“ #espe2018 https:/…" +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972 +2015 impact factor 1.290 ) 139 OUT OF 353 ECON JOURNALS" +06/27/2018,Economists,@econoflove,Furthermore the hotness factor is ageist https://t.co/mKfYVSH5pq +06/27/2018,Economists,@econoflove,@HousingEcon Are you the Joshua Miller who just published in REHO? +06/27/2018,Economists,@econoflove,"REHO got its Impact factor for 2017: 1.33, which implies a rank of 139 out of 353. Just a bit below top tier of al… https://t.co/73cRxUSmgJ" +06/27/2018,Economists,@econoflove,keep us updated on why these two journals were punished https://t.co/SduJCFfiTc +06/27/2018,Economists,@econoflove,@Erdal_Tekin_ @JPAM_DC what percentage of the articles in @JPAM_DC are authored by economists and is it ranked as a… https://t.co/yH3yYKPF2U +06/27/2018,Economists,@econoflove,@NGimenezNadal @chvanhoutven @BhashMazumder @LeeBadgett @TimDiette @AlexTheloudis @SevincRende @sarahgracesee… https://t.co/nVtyT5uy5e +06/27/2018,Economists,@econoflove,new record impact factor for REHO: 1.33 @ChrisMHerbst @ValeriaBordone @jiondrich @jasonmfletcher @NFolbre @mguldi… https://t.co/bCWi4Nk5Ky +06/27/2018,Economists,@econoflove,new record impact factor for REHO: 1.33 @DanielePaserman @ShellyJLundberg @McGarryBE @cmommaerts @ipogadog… https://t.co/d0upylXyHn +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972​ +2015 impact factor 1.290 ) @chvanhoutven… https://t.co/rUxp1X1TVI" +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972​ +2015 impact factor 1.290 ) @Springernomics… https://t.co/MxVQvzxzsH" +06/27/2018,Economists,@econoflove,So sorry I missed #espe2018 in my hometown of Antwerpen https://t.co/Sw6ykTUHc6 +06/27/2018,Economists,@econoflove,@Stijn_Baert Do Belgians typically retire at 55? +06/27/2018,Economists,@econoflove,listen to what @childtrends suggests to help reverse some of the trauma that immigrant children may have experience… https://t.co/8ahOjE3Fk9 +06/27/2018,Economists,@econoflove,States allowing same-sex marriage showed a 6-16% increase in same-sex mortgage applications. https://t.co/UtMZQhGjQC +06/27/2018,Economists,@econoflove,Glad to see that REHOs former editor for health economics presented a paper at this conference. New editor for hea… https://t.co/bpYn4RJ9t4 +06/26/2018,Economists,@econoflove,"RT @DaphneBramham: Somehow when its #MeToo and the women are from a polygamous community, the punishment is nothing more than house arrest…" +06/26/2018,Economists,@econoflove,I agree that it is outrageous polygamy is implicitly allowed in British Columbia https://t.co/3ntsxeNI00 +06/26/2018,Economists,@econoflove,"(@EJ_RES) +Italian women face dramatic earnings losses after the birth of a child, #RES2018 study @LSEforBusiness… https://t.co/S8b4CpiyfD" +06/25/2018,Economists,@econoflove,"RT @NMDeterding: An example of the importance of strong #implementation studies. If we learn #why reform efforts fail to produce results, w…" +06/25/2018,Economists,@econoflove,Marie curie born and raised in #Poland was the first woman to obtain a doctorate in France!! https://t.co/lkL1JrD87b +06/25/2018,Economists,@econoflove,RT @kfzimmermann: Founder of Unified Growth Theory Oded Galor of Brown University Appointed Editor. He Reflects on Publishing Research in P… +06/25/2018,Economists,@econoflove,Congratulations. Hope you still will contribute to REHO as an author https://t.co/IUOT367sWZ +06/25/2018,Economists,@econoflove,RT @SDSUTweets: @econoflove Congrats on writing a great SDSU Tweet! https://t.co/WejL7bDIu6 (Ranked 1st for Jun 24.) +06/25/2018,Economists,@econoflove,Give more weight to households in both micro and macro https://t.co/qf645rrsuO +06/25/2018,Economists,@econoflove,"RT @ShellyJLundberg: Interesting paper. Spanish undergrads: ""hold a macroeconomics-biased view of the economics profession"" and there are g…" +06/24/2018,Economists,@econoflove,"Younger people are less religious than older ones in many countries, especially in the U.S. and Europe… https://t.co/FkrnW1O3AA" +06/24/2018,Economists,@econoflove,"""In Washington, D.C...the federal government reimbursed slaveholders for the cost of their human property, which is… https://t.co/oeOAswm9vu" +06/24/2018,Economists,@econoflove,never heard this before. how offensive!!! https://t.co/Fow7D4MxSw +06/24/2018,Economists,@econoflove,"UCLA and UC Berkeley on sexual harassment by faculty: ""Campuses Have Disciplined Staff and Faculty Inequitably +and… https://t.co/HuO46KGxZK" +06/24/2018,Economists,@econoflove,How exciting to be able to drive. In Jerusalem Muslim women were also recently allowed to@drive by their imams and… https://t.co/GAt7UjTToh +06/24/2018,Economists,@econoflove,More than twice as Many US women define themselves as feminists than women in UK ac to this article. Why? https://t.co/p6nn5ZrLia +06/24/2018,Economists,@econoflove,listen to what @childtrends suggests to help reverse some of the trauma that immigrant children may have experience… https://t.co/vPY09X0sMg +06/24/2018,Economists,@econoflove,latest cv https://t.co/qUsu7qYXX3 +06/24/2018,Economists,@econoflove,"glad to imeet @dclingi, another economist also trained in #anthropology; attempted to combine the two fields when w… https://t.co/mg8OfQxcrh" +06/24/2018,Economists,@econoflove,"@dclingi s@cmMcConnaughy @valeriealewis This resonates w what I wrote in 1978 ""Economics aspires to be a ""science o… https://t.co/MtipecRFOD" +06/24/2018,Economists,@econoflove,One always has a choice as to how to deal with reality. viktor Frankl was able to make it bearable to survive in c… https://t.co/CoMgsivYLh +06/24/2018,Economists,@econoflove,"RT @xftrebbi: Roger Myerson, Nobel Laureate, in grad school had his '74 paper on proper equilibrium *desk rejected* at Int'l Journal of Gam…" +06/22/2018,Economists,@econoflove,a major reason why we need more immigration: https://t.co/lxrP0oQ8ga +06/22/2018,Economists,@econoflove,(@NickWolfinger's book Do Babies Matter? showed with national data that marriage & children completely account for… https://t.co/TbNOA8k9lG +06/22/2018,Economists,@econoflove,RT @EconomicsofHE: New data: black students applying to Oxford have a 33% lower offer rate than all others. Some explanations: https://t.co… +06/22/2018,Economists,@econoflove,@ShellyJLundberg @AEACSWEP @ASSAMeeting That so many senior women are Willing to Volunteer is an indication of how… https://t.co/4COUwu0Rro +06/22/2018,Economists,@econoflove,some ideas on how diet and nutrition can help those who have Parkinson's #PwP https://t.co/Tj3nNWdeBe +06/22/2018,Economists,@econoflove,"RT @dynarski: Want to see equitable admissions to the elite colleges? Focus your ire on legacy admission, not affirmative action. + +By the f…" +06/22/2018,Economists,@econoflove,"RT @jean_twenge: Great insights from a 21-year-old iGen'er on why #iGen feels so much anxiety -- and what to do about it. +https://t.co/JswF…" +06/22/2018,Economists,@econoflove,Twitter Women @TwitterWomen https://t.co/z7VTkqjM9N +06/22/2018,Economists,@econoflove,"UCLA and UC Berkeley on sexual harassment by faculty: ""Campuses Have Disciplined Staff and Faculty Inequitably +and… https://t.co/GH0PFdziv8" +06/21/2018,Economists,@econoflove,"this ageist assumption is prevalent among Human Resource managers in Australian universities: ""conflating “potenti… https://t.co/0fpKLMBRqm" +06/21/2018,Economists,@econoflove,"RT @traceyw_soc: I realised that it is my PhD's birthday this week. +That should be a thing, right? #ImmodestWomen + +Happy birthday to #DrM…" +06/21/2018,Economists,@econoflove,@dynarski You can’t be liked by everyone. They can be tough. We were on opposite sides regarding polygamy in Br… https://t.co/c9Isaof8fI +06/21/2018,Economists,@econoflove,"RT @BehrouzBoochani: Isn’t it strange that the Australian media fully covers the news of US seperating kids from their families, but they’v…" +06/21/2018,Economists,@econoflove,RT @ShellyJLundberg: Are you a woman with a new Econ PhD working in a demanding research environment? Apply to @AEACSWEP's CeMENT mentoring… +06/21/2018,Economists,@econoflove,in a majority of cases marriage was preceded by cohabitation in the US: (67%) of those currently married had cohab… https://t.co/nX5ImCiGZu +06/21/2018,Economists,@econoflove,"https://t.co/7qMEhF3D5W In affluent, highly-educated and predominantly white districts, boys outperformed girls in… https://t.co/bkg8O6Cgap" +06/21/2018,Economists,@econoflove,"relative scholastic performance of boys and girls depends on community wealth and racial composition +https://t.co/6YhgKWWQMB" +06/21/2018,Economists,@econoflove,has anyone performed a cross country analysis of age bias in academia? across private and public institutions where… https://t.co/OFbNYjjIYP +06/21/2018,Economists,@econoflove,state often engages in more discrimination than private institutions: in France and Israel state rules that univers… https://t.co/b0EVJ4Fest +06/21/2018,Economists,@econoflove,"this ageist assumption is prevalent among Human Resource managers in Australian universities: ""assuming that staff… https://t.co/TBPsn1ionr" +06/21/2018,Economists,@econoflove,"RT @LetaHong: Congratulations, Prime Minister Ardern! https://t.co/YuBkCEavzC" +06/21/2018,Economists,@econoflove,RT @IZAWorldofLabor: Featured article: Should common law marriage be abolished? by @econoflove https://t.co/nyGppyxXoS +06/21/2018,Economists,@econoflove,(@SAGEsociology Feminist Twitter and Gender Attitudes: Opportunities and Limitations to Using Twitter in the Study… https://t.co/B8HFxEBLHJ +06/20/2018,Economists,@econoflove,RT @familylawxpress: Woman wins right to dead boyfriend’s sperm https://t.co/ze3o6IKDxi +06/20/2018,Economists,@econoflove,Perhaps related to the increased excess college education of women? Majors with heavy female ratios tend to emphas… https://t.co/2meeUWPp3c +06/20/2018,Economists,@econoflove,@MerciDecker @LipstickEcon Production also includes home production. How is home production related to capitalism? +06/20/2018,Economists,@econoflove,"To rank the best cities to raise a family, the @NicheSocial folks @CountOnStats from Census, BLS, NCES, & other par… https://t.co/NmIDnUtrXW" +06/20/2018,Economists,@econoflove,@PhilipRucker @D_Blanchflower I was very unhappy with the policy separating families and am glad @potus and company… https://t.co/c6OT3xk21s +06/20/2018,Economists,@econoflove,"Raising kids and building good couplehood constantly requires choices and therefore passing up opportunities, inclu… https://t.co/WvvDa0t0wP" +06/20/2018,Economists,@econoflove,This will mean even less demand for WIHO that Satisfies private consumption. Marriage and couple-hood will be eve… https://t.co/nOLhrpSaZy +06/20/2018,Economists,@econoflove,"RT @IZAWorldofLabor: Overall, for married women, common law marriage availability reduces work time by one to two hours a week https://t.co…" +06/20/2018,Economists,@econoflove,Beautiful Alps. I flew over them yesterday https://t.co/6bAWKdbK3F +06/20/2018,Economists,@econoflove,So sad. In how many years? https://t.co/xZHFDUypfC +06/20/2018,Economists,@econoflove,"RT @nprpolitics: #Breaking: President Trump says he will sign an executive order to end his administration's family separation policy, desp…" +06/20/2018,Economists,@econoflove,In part because more educated and richer women want to have kids with men who do more of the childcare so their men… https://t.co/YxYP4Q7HYH +06/20/2018,Economists,@econoflove,Relief coming!!!! https://t.co/g1IDAo3TOg +06/20/2018,Economists,@econoflove,RT @AP: BREAKING: AP Sources: Homeland Security secretary drafting order to end family separation at border; unclear if Trump will sign it. +06/20/2018,Economists,@econoflove,Totally messed up https://t.co/66XrI6tShh +06/20/2018,Economists,@econoflove,RT @BeckerFriedman: Research from @UChi_Economics' Manasi Deshpande cited in discussion of a decrease in disability applications as the eco… +06/20/2018,Economists,@econoflove,"RT @KenDilanianNBC: New Quinnipiac poll: American voters oppose, 66 – 27 %, the policy of separating children and parents when families ill…" +06/20/2018,Economists,@econoflove,RT @WSJ: House will vote Thursday on a broad immigration bill that would end Trump administration's practice of family separation https://t… +06/20/2018,Economists,@econoflove,increases in income have a positive impact on voting for children who grow up in poorer households. Paper link:… https://t.co/ZcJFAEGdbj +06/20/2018,Economists,@econoflove,RT @mcbridetd: One in Three Women Undergoing Breast Reconstruction Have Complications https://t.co/2iZ6K9E4rB +06/20/2018,Economists,@econoflove,"RT @GovLarryHogan: Until this policy of separating children from their families has been rescinded, Maryland will not deploy any National G…" +06/20/2018,Economists,@econoflove,RT @LeeBadgett: Labor force partic rate of Bangladeshi women goes from 30% (official stats) to 67% when expanding types of employment asked… +06/20/2018,Economists,@econoflove,"RT @DrGMLivingston: @econoflove These are the overall %s, but educational diffs are a major driver of these patterns (rural=less educ)." +06/20/2018,Economists,@econoflove,@DrGMLivingston Is this controlling for income? +06/20/2018,Economists,@econoflove,"RT @m_clem: Some have forgotten this. I have not. + +The US Administration commissioned a study of the fiscal impact of refugees, but censor…" +06/20/2018,Economists,@econoflove,Anyone has attended both #IAFFE2018 and #SEHO2018 besides @LeeBadgett ? +06/20/2018,Economists,@econoflove,RT @hceconomics: Research by HCEO Co-Director James Heckman @heckmanequation on the #ROI in early childhood education was cited in the @nyt… +06/20/2018,Economists,@econoflove,And women need to require good compensation from the adults who benefit from their WIHO https://t.co/zamAAUGTaK +06/20/2018,Economists,@econoflove,@LeeBadgett @MerciDecker And it may also be beneficial as controversy may generate more interest? +06/20/2018,Economists,@econoflove,@LeeBadgett @MerciDecker I don’t get this +06/20/2018,Economists,@econoflove,"RT @aaronecarroll: Thread. + +I'm going to try and use my quiet voice here. Let's not kid ourselves - there are data on what detaining kids l…" +06/20/2018,Economists,@econoflove,people who live in couple cook more than singles. good for health if home-cooked meals are healthier. are they? OPE… https://t.co/g53X4my1Su +06/20/2018,Economists,@econoflove,"RT @cmaconthehill: BREAKING: Canada is legalizing cannabis. The marijuana legalization bill has officially passed. + In an historic vote of…" +06/20/2018,Economists,@econoflove,Has to stop https://t.co/HoYbciAh9t +06/20/2018,Economists,@econoflove,South Korea at the top! https://t.co/0r3gKW6EVs +06/20/2018,Economists,@econoflove,RT @freakonometrics: A visual introduction to machine learning—Part II https://t.co/SOaBRzwvQN https://t.co/EYPKEAw63i +06/19/2018,Economists,@econoflove,"Country-level factors contribute more than household-level ones to +explain cross-country differences in immigrant p… https://t.co/I6gbGgDSaF" +06/19/2018,Economists,@econoflove,RT @IAFFE: Folbre: hierarchies help solve free-rider and other coordination problems. But authoritarian hierarchies created surplus extract… +06/19/2018,Economists,@econoflove,Self-control issues and limiting social pressure to share food with others may better explain why poor households b… https://t.co/lkNYyHpHBN +06/19/2018,Economists,@econoflove,yea for the women who took on sumo wrestling in Japan!!! is it harder to penetrate that world than for women econom… https://t.co/JQJiE7Vy9A +06/19/2018,Economists,@econoflove,RT @eloder: Yes. The academic promotion system is the root cause of many problems. https://t.co/r6FbKNP13G +06/19/2018,Economists,@econoflove,"RT @EricChyn: Excited to be at the @barcelonagse summer workshop with an exciting lineup of papers on child health, well-being and human ca…" +06/19/2018,Economists,@econoflove,HUGE gender gap in college completion in the USA. Other industrialized countries? https://t.co/mpzFQ6M026 +06/19/2018,Economists,@econoflove,"Women need more male involvement in home production, including childcare. Who pays for it is another issue https://t.co/jWbsC3I7HB" +06/19/2018,Economists,@econoflove,RT @TheEconomist: Both the former statistics chief's numbers and his methodology were verified by Europe's statistical agency https://t.co/… +06/19/2018,Economists,@econoflove,One father who definitely made a difference by inspiring his son https://t.co/Nsz4dIE4eN +06/19/2018,Economists,@econoflove,Unfortunately too many people don’t really care when they ask you such questions. But try to be genuine nonetheles… https://t.co/uemBaCraqS +06/19/2018,Economists,@econoflove,RT @Bengoa_Marta: What happens if EU countries would have closed borders -rely only on fertility & mortality (blue line)-?👇 what a shock! A… +06/19/2018,Economists,@econoflove,Something I would like to read https://t.co/5wIPyAx9FA +06/19/2018,Economists,@econoflove,The myth of Sisyphus still applicable so many centuries later!! https://t.co/ieWekOh4wI +06/19/2018,Economists,@econoflove,"children cared for by #grandparents are better at naming objects, but worse on other #cognitive outcomes https://t.co/Ozq73cqJYo" +06/19/2018,Economists,@econoflove,@kearney_melissa @causalinf @gbenga_ajilore @Noahpinion @DavidAJaeger @NeumarkDN @Joni_Hersch +06/19/2018,Economists,@econoflove,yea for the women who took on sumo wrestling in Japan!!! is it harder to penetrate that world than for women econom… https://t.co/r2aSmJlXkM +06/19/2018,Economists,@econoflove,@cryptoecongames do you mean an article from 2010? +06/19/2018,Economists,@econoflove,@kearney_melissa ...however most economists continue to focus on the elite schools (and the elite journals)… https://t.co/UGrvnFfJp8 +06/19/2018,Economists,@econoflove,@kearney_melissa the obsession with Ivy League and other elite schools in the US is also bad for research. For inst… https://t.co/zLWNutRGlu +06/18/2018,Economists,@econoflove,"2nd generation migrants to the US outearn the native-born by 2% controlling for education, demographics, and geogra… https://t.co/ZtEs0VnjAQ" +06/18/2018,Economists,@econoflove,"Despite changing gender roles, many still perceive mothers as better equipped than fathers to care for children… https://t.co/lczWl1bEbT" +06/18/2018,Economists,@econoflove,predicted deficit numbers resulting from Social Security and Medicare commitments are truly mind-boggling: 82 trill… https://t.co/5LACSN8K3l +06/18/2018,Economists,@econoflove,"RT @PRBA_ISR: Waldo Johnson former @PRBA postdoc. Non-residential fathers aren't necessarily absentee, research shows@SociologistRay @Darri…" +06/18/2018,Economists,@econoflove,does the gender gAP shrink when tehre are more female instructors? https://t.co/P24uLQXACe +06/17/2018,Economists,@econoflove,"household economics is also about understanding consumption, including generational effects on what people consume https://t.co/8ExuWbSC5E" +06/17/2018,Economists,@econoflove,Tokyo consists of many small homes and it is really hard to find an address! https://t.co/NJmd3IW8W9 +06/17/2018,Economists,@econoflove,"In Japan, men are taking parenting classes to become more marriageable. [post by @SevincRende] https://t.co/WjJxcIIoBa" +06/17/2018,Economists,@econoflove,RT @simongerman600: Population change in the former Soviet Union Republics from 1989 to 2018. Horribly designed #map (crap labels and colou… +06/17/2018,Economists,@econoflove,Fathers’ early parenting quality affected by mothers [post by @SevincRende] https://t.co/15xsW6NJjE +06/17/2018,Economists,@econoflove,"Dads often earn more, even if they’re not harder workers [post by @SevincRende] https://t.co/dXROaWViGp" +06/17/2018,Economists,@econoflove,Was Easterlin inspired by Freud? https://t.co/6pwIT6ccaI +06/16/2018,Economists,@econoflove,"RT @lymanstoneky: I'm in @NRO today, talking about how the twin forces of mass incarceration and a societal shift away from marriage has le…" +06/16/2018,Economists,@econoflove,RT @eckelcc: Nominate someone you love. https://t.co/HaZQTY63fK +06/15/2018,Economists,@econoflove,"RT @sarahgracesee: ""Being bored, however, can be a good thing for children’s mental health."" Another reason why time investments that start…" +06/15/2018,Economists,@econoflove,RT @spattersearch: Family Demography PhD students! Check out this awesome postdoc opp @unisouthampton https://t.co/lnf8bltPFG +06/15/2018,Economists,@econoflove,REVERSIBLE CONCEPTION!!! https://t.co/lXNQDj6c4s +06/14/2018,Economists,@econoflove,"@MarinaAdshade: ""a woman told me that when sex robots are available there will be ""no more women"". The idea that th… https://t.co/NIX7Gy25bg" +06/14/2018,Economists,@econoflove,"RT @econnaturalist: …to be someone who actually would return the envelope. Contrary to the implications of the self-interest model, honest…" +06/14/2018,Economists,@econoflove,"RT @ManhattanInst: ""Family-friendly"" policies: The gender paradox of the Nordic welfare state. https://t.co/2HvTCKFSQQ via @KayHymowitz htt…" +06/14/2018,Economists,@econoflove,Recruiting new students at my university: come and enjoy the beach!! https://t.co/50OyyezNzm +06/14/2018,Economists,@econoflove,@Undercoverhist @ambiguitweets @sndurlauf Congratulations Beatrice +06/14/2018,Economists,@econoflove,RT @TheEconomist: There are a lot less people looking to buy a villa https://t.co/U4b0APO6G2 +06/14/2018,Economists,@econoflove,Very easy to read https://t.co/Sq7XAqBEHw +06/14/2018,Economists,@econoflove,@behscientist @elliswonk Same holds for economics of the household models such as those incorporating value of time… https://t.co/uJ2T7EO7qP +06/14/2018,Economists,@econoflove,"RT @sdellavi: Agreed. Not only is Joe Altonji a superb labor economist, he is so open minded that he was really curious about behavioral wo…" +06/14/2018,Economists,@econoflove,Men used to pay their wives to take care of home and kids. Now more and more women pay husbands or live in partner… https://t.co/vakmCRYkFO +06/14/2018,Economists,@econoflove,rate of child marriage in Syria increased by 30% since 2015. Volatility and poverty in the war-torn country drive f… https://t.co/vJQlO8ZHZw +06/14/2018,Economists,@econoflove,"For some countries, up to 1/3rd of national GDP comes from remittances: +https://t.co/3hAdVHqr0f…… https://t.co/TB3odjGL60" +06/14/2018,Economists,@econoflove,80% of #NCDs (Noncommunicable diseases) in low- and middle-income countries. if you focus on prevention and invest… https://t.co/jjxy195Jfe +06/14/2018,Economists,@econoflove,"RT @nytimes: In much of the U.S., the stereotype that boys do better than girls at math isn’t true. But there’s a notable exception. https:…" +06/14/2018,Economists,@econoflove,"RT @jaredcrubin: @timurkuran's amazing forthcoming JEL survey of is a one-stop shop for all recent work on Islam and economic outcomes + +htt…" +06/13/2018,Economists,@econoflove,Overstated findings in science and health reporting on social media https://t.co/D4kpG1SJgL RT @enrica_croda https://t.co/D4kpG1SJgL +06/13/2018,Economists,@econoflove,"mental health, housing, and substance use treatment services are important components in income stabilization for h… https://t.co/HYBtsE0OXF" +04/18/2018,Economists,@SBronars,"RT @BEA_News: What’s the economic value of cooking, cleaning, watching the kids and so forth? BEA plans to release a new batch of statistic…" +04/18/2018,Economists,@SBronars,"https://t.co/lwGgXvlFLA + +Almost 70 percent of births in Iceland are outside of marriage" +04/18/2018,Economists,@SBronars,"RT @MyDaughtersArmy: Barbara Bush, 1990 Wellesley College commencement speech: + +""Somewhere out in this audience may even be someone who wil…" +04/17/2018,Economists,@SBronars,"RT @tomwcleary: Tammie Jo Shults, pictured left, was the pilot of Southwest Flight 1380 when an engine failed mid-air. She is being hailed…" +03/13/2018,Economists,@SBronars,RT @darrenrovell: My haul from the 1985 Donruss pack I opened tonight: TWO Roger Clemens rookies. https://t.co/nRobPYOqr0 +03/02/2018,Economists,@SBronars,"RT @SweeneyABC: .@SouthwestAir plane attempts to land at Reagan National, but winds force it to abort landing. #goaround @dcairports Video:…" +02/04/2018,Economists,@SBronars,Why Women’s Voices Are Scarce in Economics https://t.co/bLJxc3vGMs +02/03/2018,Economists,@SBronars,RT @chicagoboothrev: What can the US learn from Mexico about privatizing social security? @ChicagoBooth's Chad Syverson shares insight on t… +01/30/2018,Economists,@SBronars,The average age of first-time mothers in the Netherlands is now 29.8 years. https://t.co/gA1bBnlY81 +01/30/2018,Economists,@SBronars,"RT @amish973: Nepal received an estimated $6.6 billion in remittances, equivalent to 31.3% of its GDP, the highest in the world: +https://t.…" +01/30/2018,Economists,@SBronars,"RT @Super70sSports: Today in 1975, the Bears select Jackson State's Walter Payton with the 4th overall pick in the NFL Draft. I'd say that…" +01/29/2018,Economists,@SBronars,RT @BeckerFriedman: Business economics major proposed by @uchieconomics and @chicagobooth. @uchieconomics' John List says the major would b… +01/29/2018,Economists,@SBronars,@tamcfall Especially since Wooden was from Purdue +01/28/2018,Economists,@SBronars,"RT @RaviNepal: Nepal is one of most inclusive emerging and developing Asian economies, according to @wef's Inclusive Development Index 2018…" +01/28/2018,Economists,@SBronars,"RT @elonmusk: When the zombie apocalypse happens, you’ll be glad you bought a flamethrower. Works against hordes of the undead or your mone…" +01/28/2018,Economists,@SBronars,RT @drluebbers: Does homeopathy work? https://t.co/KGGXYlXcu2 +01/28/2018,Economists,@SBronars,RT @darrenrovell: Early Candidate For Stat Of The Year https://t.co/rT1adhOpej +01/26/2018,Economists,@SBronars,@mattehunt82 Very basic +01/26/2018,Economists,@SBronars,Paul Romer had some parting thoughts after resigning as World Bank chief economist https://t.co/1HTkW7MWen via @WSJ +01/25/2018,Economists,@SBronars,"RT @bill_easterly: Great Angus Deaton article on how extreme poverty in the US is more frequent than previously thought, some foreign aid s…" +01/25/2018,Economists,@SBronars,"The demand for concessions at NFL games is elastic! +https://t.co/nGB3xE6EXK" +01/25/2018,Economists,@SBronars,RT @BeckerFriedman: Research from @chicagobooth's Marianne Bertrand on gender pay gap finds that spouses tend to be less happy if the wife… +01/24/2018,Economists,@SBronars,RT @tamcfall: I hope someone got an attaboy for typing these details: https://t.co/syN2ZnOSki +01/23/2018,Economists,@SBronars,RT @Tribeca: Major congratulations to the great Rachel Morrison (@MorrisonDP) on becoming the first woman cinematographer to ever receive a… +01/23/2018,Economists,@SBronars,"RT @IZAWorldofLabor: Featured article: The importance of measuring dispersion in firm-level outcomes, by Chad Syverson @UChi_Economics http…" +01/23/2018,Economists,@SBronars,"RT @darrenrovell: On cover of SI on this day in 1967: Packers backup WR Max McGee, who was so sure he wouldn’t play in Super Bowl I, he sta…" +01/23/2018,Economists,@SBronars,RT @typesfast: I’m in Seattle and there is currently a line to shop at the grocery store whose entire premise is that you won’t have to wai… +01/23/2018,Economists,@SBronars,RT @BeckerFriedman: Prof. Bob Lalonde’s friends and colleagues reflect on his many contributions in a BFI statement found here: https://t.c… +01/21/2018,Economists,@SBronars,"RT @TomHall: Rhino + +Road + +Rage! + +Getting ready for Monday. + +🦏 🦏 🚗 🦏 🦏 + +#SundayMorning #NationalHugDay #ChampionshipSunday #SundayFunday…" +01/21/2018,Economists,@SBronars,RT @joshgans: How does someone get papers on money and parenting into Econometrica in the same issue? https://t.co/fnsZ4BChSm +01/15/2018,Economists,@SBronars,"RT @Super70sSports: Today in 1968, the Packers defeat the Raiders in Super Bowl II. Remember this when the NFL cheats us again this year by…" +12/31/2017,Economists,@SBronars,"RT @WSJ: For all the energy and resources coaches dedicate to finding the quarterbacks of the future, they are wrong a lot. https://t.co/iY…" +12/30/2017,Economists,@SBronars,RT @bill_easterly: Anne Case on the adversarial culture in economics and why there are so few female economics professors https://t.co/Ih5h… +12/29/2017,Economists,@SBronars,RT @agoodmanbacon: This is one of the most amazing papers I've ever seen. The authors got a standing ovation in the middle of an NBER talk… +12/19/2017,Economists,@SBronars,"291 workplace suicides in 2016, highest amount since this census began in 1992. 500 workplace homicides in 2016 - h… https://t.co/lqyw4CJEyc" +12/11/2017,Economists,@SBronars,RT @BrianCAlbrecht: The beauty of short abstracts https://t.co/HhXwckkcGR https://t.co/MXXXgVXApW +12/03/2017,Economists,@SBronars,"RT @SteveBartlettSC: Netflix surpasses TV. + +TV continues it’s slow death at the hands of the on-demand generation. https://t.co/ppkWF42Hzw" +12/03/2017,Economists,@SBronars,RT @dougwebberecon: My forthcoming Journal of Labor Economics paper on the returns to college for “academically marginal” students is now o… +11/25/2017,Economists,@SBronars,RT @bubbaprog: 51 kids on that UCF roster have now experienced both a winless and an unbeaten season. +11/24/2017,Economists,@SBronars,RT @paul1kirby: Fascinating @OECD picture of job creation & losses by country & sector since 2010. Striking contrasts e.g. 🇬🇧 vs 🇫🇷 https:/… +11/24/2017,Economists,@SBronars,"RT @UpshotNYT: Mothers have important influences on their children's career choices, too. https://t.co/7XQq8hD4bH" +11/07/2017,Economists,@SBronars,RT @darrenrovell: The highlight you might have missed yesterday. https://t.co/SJd60ZlwzX +11/05/2017,Economists,@SBronars,RT @RealMikeWilbon: Are we looking possibly at a Rams v Eagles NFC Championship game? +10/31/2017,Economists,@SBronars,"RT @kearney_melissa: 7yr old: “Mommy, you bring up economics in every conversation. You act like Economics is about everything.” +Yep. Essen…" +10/31/2017,Economists,@SBronars,"France, Land of Croissants, Finds Butter Vanishing From Shelves https://t.co/Y7uEbA5N8m" +10/29/2017,Economists,@SBronars,Opinion | America’s Best University President https://t.co/U410UbEEFF +10/11/2017,Economists,@SBronars,Scientists find $1.8 million worth of gold in Switzerland's wastewater https://t.co/abRxmEFV0E via @business +09/02/2017,Economists,@SBronars,RT @hillisthekillis: Even in a disaster no one wants the vegan food. https://t.co/KtswW7GLSI +09/02/2017,Economists,@SBronars,RT @bill_easterly: Something is going right in Development when global poverty rate has fallen from 70 percent to 30 percent in last 25 yea… +08/30/2017,Economists,@SBronars,"RT @davejorgenson: ""Where we're going, we don't need roads."" https://t.co/QlFy38ncwm" +08/30/2017,Economists,@SBronars,RT @SteveRHardy: You can tell when an aid group comes from Louisiana because they load up on EMERGENCY SPICES https://t.co/gI6hWRoC6I +08/30/2017,Economists,@SBronars,RT @AnupKaphle: “We hope people won’t overlook the desperate needs of people here because of disasters closer home.” https://t.co/e7BTj83uf… +08/29/2017,Economists,@SBronars,"Food away from home expend. as % of total food exp. by income: +Bottom 1/5 35.2% +2nd 1/5 37.5% +3rd 1/5 40.6% +4th 1/5 43.8% +Top 1/5 50.5% +#CEX" +08/20/2017,Economists,@SBronars,RT @jwPencilAndPad: There is no longer any distinction between Nicolas Cage's movies and Nicolas Cage's life. https://t.co/ADrRuJboUZ +08/17/2017,Economists,@SBronars,"Today is the first time the Cubs have lost a game when scoring at least 10 runs since May 28, 2006 against the... https://t.co/c9lQgUi6qY" +08/15/2017,Economists,@SBronars,RT @Alan_Krueger: Movement of workers from outside the labor force into the labor force reached a record LOW in the first half of 2017. htt… +08/08/2017,Economists,@SBronars,RT @martinstaylor: Terrific optical illusion by Victoria Skye. @RichardWiseman @chriscfrench https://t.co/IeSFupAcfU +08/08/2017,Economists,@SBronars,Private sector job openings up 12.0% compared to last year (June to June). In construction up 31.6%. #JOLTS https://t.co/wGP8WZtECe +07/31/2017,Economists,@SBronars,RT @bill_easterly: Economics https://t.co/wakP8ddUBv +07/31/2017,Economists,@SBronars,Bartman receives Cubs World Series ring https://t.co/YuZe0lZQ64 +07/27/2017,Economists,@SBronars,"RT @MOhlhausenFTC: In the 1950s, less than 5% of U.S. jobs needed a license. Today, that number is between 25 and 30%. @Heritage https://t.…" +07/26/2017,Economists,@SBronars,"RT @dinapomeranz: Not new but still relevant: much less bunching of p-values at significance level in RCT-based papers. +ht @dariosidhu +http…" +07/21/2017,Economists,@SBronars,"RT @BenLeubsdorf: Congratulations, Rhode Island: You've finally regained all the jobs you lost in the recession https://t.co/5IVl8gTSJY htt…" +07/21/2017,Economists,@SBronars,"If premiums were 25% of insurers’ avg. costs, at most 1/2 of potential enrollees would buy insurance. https://t.co/lUPS4Sxhvu" +07/20/2017,Economists,@SBronars,RT @NinjaEconomics: Americans now lose more property to civil asset forfeiture than to burglary each year h/t @LettieriDC https://t.co/q0Ux… +07/18/2017,Economists,@SBronars,RT @business: Phil Mickelson will play the British Open with no drivers https://t.co/gN4oR0XAXk https://t.co/BGxPJQEVdX +07/17/2017,Economists,@SBronars,"RT @RaviNepal: How has number of extremely poor people changed since 1990? Great #dataviz by @worldbankdata. +#globaldev #endpoverty +https:/…" +07/15/2017,Economists,@SBronars,"RT @toby_n: Wow - great chart showing age, gender and education of UK population in 2016 https://t.co/Gggp8curQv https://t.co/gLZqJF9CF8" +07/14/2017,Economists,@SBronars,"RT @NinjaEconomics: Woman knocks over $200,000 worth of art trying to take a selfie https://t.co/j4NQBu1FfA https://t.co/uqIl27x6zZ" +07/14/2017,Economists,@SBronars,"RT @dinapomeranz: Without immigrants Europe's population will start to shrink. Especially Germany, Austria, Malta, Finland: +Ht @m_clem +http…" +07/12/2017,Economists,@SBronars,RT @elizabethminkel: Never in my life have I been so caught off-guard by a 'regionalisms for certain terms' map. TENNIS SHOES? ALL OF YOU S… +07/12/2017,Economists,@SBronars,RT @econoflove: huge #babyboom generation reaches #retirement ==> more #RV s on the road https://t.co/5L2f0i57vY +07/12/2017,Economists,@SBronars,"RT @darrenrovell: BREAKING: 29 NFL teams will make $55 MILLION EACH from relocation fees of Rams, Chargers & Raiders + +https://t.co/8kr5geG1…" +07/09/2017,Economists,@SBronars,"RT @NeumarkDN: Incredible how innaccurately the @nytimes characterizes #minimumwage research. +Bias or ignorance? + +https://t.co/mYQVoUSOXr" +07/09/2017,Economists,@SBronars,"RT @RaviNepal: The 🌏 world's fastest growing economies in 2017: +3. Nepal🇳🇵 +4. India🇮🇳 +9. Bangladesh🇧🇩 +9. Bhutan🇧🇹 + +#globaldev + + https://t.…" +07/03/2017,Economists,@SBronars,"RT @BrookingsEcon: A simple, low-cost way to improve high school student performance: push back start times → https://t.co/NKH32dGiFo https…" +07/03/2017,Economists,@SBronars,RT @WSJecon: The share of foreign-born workers in the U.S. labor force reached a new high last year https://t.co/ytTWw8P94d +07/02/2017,Economists,@SBronars,RT @darrenrovell: Just awesome. https://t.co/51jZLYIZ7t +06/27/2017,Economists,@SBronars,RT @EU_Eurostat: Euros or dollars? EU trade in goods by currency https://t.co/mxox7S4sTt https://t.co/lXk3op19TL +06/27/2017,Economists,@SBronars,@Espngreeny @espngolic @MikeAndMike NFL's prohibition on drafting underclassmen is legal because it was collectively bargained with NFLPA +06/25/2017,Economists,@SBronars,"Most refugees to be jobless for years, German minister warns https://t.co/woJtaOOUDR" +06/25/2017,Economists,@SBronars,RT @GrantTucker: And the headline of the year goes to... https://t.co/SiboZ2gFex +06/23/2017,Economists,@SBronars,"RT @JeffreyKleintop: Deflationary impact of technology: everything in this Radio Shack flyer from 1991 adds up to $3,285.12 and can be done…" +06/22/2017,Economists,@SBronars,"RT @darrenrovell: 30 Years Ago Today: One of the worst trades of all time. + +SuperSonics trade the #5 pick @ScottiePippen to Bulls for #8 p…" +06/22/2017,Economists,@SBronars,RT @drmoore: This is my favorite tweet of the year. https://t.co/C54Lrv1Dg0 +06/19/2017,Economists,@SBronars,"RT @darrenrovell: Brian Harman's bogey on 18 just cost him $247,989. Ties for second at US Open instead of getting sole second." +06/18/2017,Economists,@SBronars,"RT @JimPethokoukis: HS graduation day for Daughter, 18! Aww yeah! I just showed her the BLS ""employment rates by education level"" chart." +06/12/2017,Economists,@SBronars,"RT @darrenrovell: The Braves' ""Beat The Freeze,"" sponsored by RaceTrac, is the best new promotion in sports (H/T @BenKing20) https://t.co/e…" +06/10/2017,Economists,@SBronars,Veronica Guerrieri on the American dream - Chicago Booth Review https://t.co/6L8liqxnrb via @chicagoboothrev +06/10/2017,Economists,@SBronars,"RT @Noahpinion: 55.1 percent of the rise in urban murder last year came from one city: Chicago. What is going on, Chicago?? https://t.co/6x…" +06/10/2017,Economists,@SBronars,Warriors gave up 49 points in a quarter with 8 missed free throws? They are playing like an All-Star team. #TheFinals +06/04/2017,Economists,@SBronars,"How to rob a bank, according to economics https://t.co/UAtSif548g +2000-06 Italy had > 3X the bank robberies of Germany, >4X France, >14X UK" +06/02/2017,Economists,@SBronars,RT @crampell: number of babies born in Japan fell below 1 million in 2016 for first time since records began in the 19th century https://t.… +06/01/2017,Economists,@SBronars,RT @darrenrovell: BREAKING: Google says most misspelled word in Wisconsin is...Wisconsin https://t.co/UAxZvMuUVY +05/29/2017,Economists,@SBronars,"One of the positives of an aging society. Petty officers: As crime dries up, Japan’s police hunt for things to do https://t.co/cfCAMyx9fk" +05/28/2017,Economists,@SBronars,Why are so many women dropping out of the workforce? https://t.co/rb5po3LNez +05/28/2017,Economists,@SBronars,RT @Rainmaker1973: A domino can knock over another domino about 1.5x larger than itself. An awesome mechanical chain reaction https://t.co/… +05/28/2017,Economists,@SBronars,"RT @BrookingsEcon: In 2016, 6% of the federal budget went toward paying interest on debt: https://t.co/19ZgrW9fJV https://t.co/j1N6liA7eI" +05/28/2017,Economists,@SBronars,RT @SportsCenter: Is this the most bizarre strikeout ever? Yes. #SCNotTop10 https://t.co/ViaYjzb15d +05/20/2017,Economists,@SBronars,"https://t.co/b8PziQVvb5 + +44% of Houston's high school valedictorians were previously English as a Second Language students" +05/20/2017,Economists,@SBronars,RT @HarvardBiz: Forty percent of Fortune 500 companies were founded by immigrants or the children of immigrants. https://t.co/DlgXLoZYSv +05/20/2017,Economists,@SBronars,"T.J. Ford graduates 14 years after Texas exit, credits Rick Barnes https://t.co/bGp1cMB6T6 +via @ESPN App https://t.co/f7Wrh6tAwP" +05/20/2017,Economists,@SBronars,@tamcfall No one. And this is in Boston. +05/14/2017,Economists,@SBronars,RT @WSJ: Parents drop the mike: Number of baby boys named Michael fell last year to lowest level since 1940 https://t.co/ZKIKK11y5v +05/12/2017,Economists,@SBronars,RT @brent_moulton: New from Political Arithmetick - Can mismeasurement explain the recent slowdown in productivity? https://t.co/4Cya9SYrtB +05/12/2017,Economists,@SBronars,RT @RealMikeWilbon: If LeBron should be MVP every year then Pop should be coach-of-the-year every year...Duncan gone. Parker gone. Leonard… +05/12/2017,Economists,@SBronars,RT @BillSimmons: I bet against the Spurs. Is this what other people feel like when they bet against the Patriots? +05/10/2017,Economists,@SBronars,"RT @darrenrovell: When Manu Ginobili made his NBA debut, James Harden was in the 7th grade." +05/10/2017,Economists,@SBronars,Manu +05/04/2017,Economists,@SBronars,Italy & Germany have the highest proportion of adults over age 65 among EU countries. Slovakia & Ireland have fewes… https://t.co/FO5NwoKNYa +05/02/2017,Economists,@SBronars,"RT @dinapomeranz: Same means, standard deviations and correlation! +https://t.co/6Ya5hpNquv https://t.co/2dZkQE95ns by @JustinMatejka & Fitz…" +05/01/2017,Economists,@SBronars,https://t.co/8QVSLHHYme +04/26/2017,Economists,@SBronars,"RT @darrenrovell: Spurs coach Gregg Popovich reportedly leaves $5,000 tip in Memphis. Reporter @kbrad5 says matches handwriting, date Spurs…" +04/24/2017,Economists,@SBronars,RT @alansmurray: Really? Hash browns recalled for possible golf ball contamination https://t.co/yMmgeKDk0I +04/24/2017,Economists,@SBronars,"RT @JustinWolfers: As the rich are living longer, they're taking more, destroying the progressivity of government programs. https://t.co/Mk…" +04/22/2017,Economists,@SBronars,RT @TheEconomist: The world’s most dangerous cities https://t.co/nsbqhf9u0f +04/17/2017,Economists,@SBronars,"David Donaldson, Economist Who Studies Trade Benefits, Wins Clark Medal https://t.co/HtVAISX0oB" +04/17/2017,Economists,@SBronars,".@ColinCowherd +St. Louis has the country's highest murder rate but apparently millenials love St. Louis +https://t.co/sWKyJbfBkA" +04/17/2017,Economists,@SBronars,It looks like life is not so tough for older rabbits. https://t.co/Hm0InO54gr +04/15/2017,Economists,@SBronars,"Afr Americans 7.1% of MLB players. Jobs w %black>7.1% physicians, judges, elec engineers, chemists, management. #42 https://t.co/Gxi1win4iG" +04/15/2017,Economists,@SBronars,"2016 Data +Employment/Population Age 25-54 + U.S. Canada +Men 85.0% 85.0% +Women 71.1% 77.8%" +04/15/2017,Economists,@SBronars,From ‘Zombie Malls’ to Bonobos: America’s Retail Transformation https://t.co/f3ENhivPHm +04/15/2017,Economists,@SBronars,RT @darrenrovell: 70 Years Ago Today: Jackie Robinson's historic Major League debut https://t.co/e4N2rNToZx +04/15/2017,Economists,@SBronars,"RT @dinapomeranz: After pope visited Brasil, use of birth control fell and # of births↑ +But effect faded & longrun # of children was unaff…" +04/15/2017,Economists,@SBronars,"RT @Alan_Krueger: Congratulations to @benbernanke , next AEA president." +04/15/2017,Economists,@SBronars,RT @MarketWatch: Occupations that are over 80% female are expected to grow at 2x the rate of male-dominant jobs in the next 10 years https:… +04/13/2017,Economists,@SBronars,"In 12 months ending Feb 2017, 63.0 million people hired & 60.6 MM separated from jobs; net gain of 2. 4 MM. #JOLTS https://t.co/o0ojQpRm8U" +04/11/2017,Economists,@SBronars,RT @DegenRolf: I didn't notice that the resentment against the replication movement in psychology went that much below the belt. https://t.… +04/09/2017,Economists,@SBronars,RT @Alan_Krueger: Excellent segment by PBS @NewsHour on @Give_Directly Universal Basic Income program in Kenya. https://t.co/NI0LdQbtoB +04/07/2017,Economists,@SBronars,"Household survey employment +919k in past 2 months & unemployment rate 4.8% to 4.5%, but payroll emp up just 317k. #JobsReport" +04/03/2017,Economists,@SBronars,RT @ModeledBehavior: @Noahpinion @SBronars I don't think Steve's point is about assigning blame for our infrastructure costs but that your… +04/03/2017,Economists,@SBronars,"@Noahpinion my point is that for your new WPA to pay less than prevailing wages, you have to deal with Davis Bacon" +04/03/2017,Economists,@SBronars,"@Noahpinion current law requires contractors pay at least prevailing wage (on DOL webpage), by county, type of construction and occupation." +04/03/2017,Economists,@SBronars,@Noahpinion Davis Bacon raises labor costs for govt construction projects; e.g. in Detroit common laborers are paid… https://t.co/LfIwMsNvfP +04/03/2017,Economists,@SBronars,RT @PatrickRuffini: % of voters who live in uber-educated precincts (60%+ college grad) by state. https://t.co/IX6ULA2VBt +04/02/2017,Economists,@SBronars,"Smith most common US surname +2.8% from 2000-10 +Hernandez Lopez & Gonzalez rank 11-13th but up 47.7%, 40.7% & 40.7% +https://t.co/AdN77xZrDX" +04/02/2017,Economists,@SBronars,https://t.co/tgw7C110EW +03/30/2017,Economists,@SBronars,Fed Sees Car Trouble Down South https://t.co/895xHyMzR8 via @WSJ +03/30/2017,Economists,@SBronars,RT @conradhackett: Data nerds: Fire up your statistics package - the 2016 General Social Survey data has just been released https://t.co/bd… +03/20/2017,Economists,@SBronars,Questionable calls in the UNC-Arkansas game. +03/18/2017,Economists,@SBronars,RT @darrenrovell: #1 seed UConn women beat #16 Albany by 61. Spread was 49. +03/18/2017,Economists,@SBronars,"65 metro areas in US have unemployment rate less than 4%, Wisconsin has the most, 7. Texas & Utah have 5 each. https://t.co/1uOCZTjAg8" +03/18/2017,Economists,@SBronars,"13 metro areas in US still have unemployment rate>=10%, 9 are in California (one metro area each in AZ, IL, NJ & WA) https://t.co/1uOCZTjAg8" +03/18/2017,Economists,@SBronars,"Fringe benefits comprise 37% of compensation costs for state & local governments, compared to 30% in private sector. https://t.co/xNqZwJjElv" +03/13/2017,Economists,@SBronars,"RT @Noahpinion: Top game theorist Ariel Rubinstein on the overuse of math in economic theory: (from https://t.co/suq6NBCZIo) + +Dare we say..…" +03/13/2017,Economists,@SBronars,Obama-era winners are still riding high. https://t.co/2roUh3h4Rd via @BV +03/13/2017,Economists,@SBronars,Is it better to be poor in Bangladesh or the Mississippi Delta? Angus Deaton talks with @AnnieLowrey https://t.co/qo8XebeMSR +03/13/2017,Economists,@SBronars,"Employment/Population for age 25-54 was 78.3% in February, highest since 10/2008, but still 1.6 percentage points below 2007 average." +03/13/2017,Economists,@SBronars,Disgrace: South Africa’s rape epidemic. 38% of men in 1 township admitted to using force or threats to obtain sex. https://t.co/QM1e3STh81 +03/12/2017,Economists,@SBronars,RT @tamcfall: @SBronars packing Duke and UNC in SC and Louisville and KY in Indy. Someone should write a paper +03/12/2017,Economists,@SBronars,"1st and 2nd round NCAA tournament games for South Carolina (7 seed) and Florida (4 seed) close to home, 104 miles & 112 miles, respectively." +03/12/2017,Economists,@SBronars,Utah on the verge of the toughest drunk-driving standard in the U.S. – .05% https://t.co/AOsgQpQAgr +03/11/2017,Economists,@SBronars,"RT @darrenrovell: Lowest priced ticket to Spurs-Warriors on reselling site Gametime yesterday was $173. With so many players out, tickets n…" +03/11/2017,Economists,@SBronars,RT @spurs: LaMarcus Aldridge will be out for an indefinite period due to an occurrence of a minor heart arrhythmia. https://t.co/s0D2Enc6RO +03/11/2017,Economists,@SBronars,"California is having its rainiest water year on record, lifting many out of drought conditions https://t.co/zrIgQWvF5D" +03/11/2017,Economists,@SBronars,"German labor costs +2.5% in past yr, wages +2.3% nonwage +3.4%. +US labor costs +2.2%, wages +2.3%, nonwage +2.1% +https://t.co/7nk3WZUM50" +03/11/2017,Economists,@SBronars,"RT @dinapomeranz: One reason immigration is so important to Europe: below 2 kids per woman +Lowest Portugal: 1.31 +Highest France: 1.96 https…" +03/10/2017,Economists,@SBronars,Shock horror: Economists argue about the impact of Chinese imports on America https://t.co/I9D8O9Hojf +03/10/2017,Economists,@SBronars,"Over past 12 months, employment to population ratio: +African Americans up from 56.2% to 57.3% +Whites down from 60.4% to 60.3% +#JobsReport" +03/07/2017,Economists,@SBronars,RT @WakeForestNews: Research shows #golf pros penalized off the tee are more likely to take risky 2nd shots https://t.co/ozaXKBQFed @TheMas… +03/07/2017,Economists,@SBronars,RT @mileskimball: Children of immigrants are dominating US scientific contests. America’s Got Immigrant Talent https://t.co/tYxQ6KcSUJ +03/07/2017,Economists,@SBronars,Weekly wages in leisure and hospitality in Las Vegas NV (Clark County) up 24% in the past year. https://t.co/m2XUxUGUw4 +03/01/2017,Economists,@SBronars,"Cold Hand? @StephenCurry30 missed 14 straight threes. Given career 43.8% shooting, a streak like that expected once every 171 NBA seasons." +02/27/2017,Economists,@SBronars,RT @JamieLissow: Not sure what this guy thinks is going to happen at Disney today. https://t.co/7lKJfDAfja +02/27/2017,Economists,@SBronars,.@conorsen Leading men are older: Only one actor under age 30 has ever won an Oscar for best performance in a leading role - Adrien Brody. +02/25/2017,Economists,@SBronars,"Farewell to Kenneth Arrow, a gentle genius of economics https://t.co/bTgCL0QOtS" +02/25/2017,Economists,@SBronars,RT @JimPethokoukis: Why is US prime-age labor participation rate lower than in most other advanced economies? Goldman Sachs offers an expla… +02/23/2017,Economists,@SBronars,RT @Noahpinion: America needs a new Milton Friedman - a highly respected economist who explains empirical econ to the public: https://t.co/… +02/23/2017,Economists,@SBronars,"RT @dinapomeranz: Female econ profs in US: +Full 13% - 4 times higher than in 2000 +Associate 26% - doubled +Assistant 28% - up from 25% +https…" +02/22/2017,Economists,@SBronars,".@EricJWeiner1 Only 14% of Boston is Irish-American, which is low for the state of Massachusetts. Higher concentrations in the suburbs." +02/22/2017,Economists,@SBronars,"22.2% of rental households in Fulton County. GA (Atlanta) faced eviction proceedings in 2015 & 12.2% were evicted. +https://t.co/uO4eQF8g9y" +02/22/2017,Economists,@SBronars,"In Germany health care expenditures represent 11.3% of GDP, in the US it is 17.8% of GDP. +https://t.co/qUoXfjaYaf +https://t.co/4HZ8K9c97n" +02/22/2017,Economists,@SBronars,"U.S. Cities with the most Irish-American residents: +1. New York +2. Chicago +3. Philadelphia +https://t.co/IXktr4YVjQ" +02/22/2017,Economists,@SBronars,"RT @darrenrovell: 37 Years Ago Today: A bunch of American kids at the 1980 Olympics prove the ""impossible"" can happen https://t.co/NV4mjY0r…" +02/22/2017,Economists,@SBronars,"Trump’s hard line on immigration collides with U.S. demographics, Greg Ip writes https://t.co/IveW8dTYqa" +02/22/2017,Economists,@SBronars,RT @crampell: Share of Americans who believe foreign trade is good for the U.S. economy is at a record high. https://t.co/41XzyTcoWc https:… +02/22/2017,Economists,@SBronars,"RT @BCAppelbaum: Here's the @nytimes obit for Kenneth Arrow, one of the most important economists of modern times. Great kicker: https://t.…" +02/22/2017,Economists,@SBronars,RT @WSJ: Oddsmakers are pegging “La La Land” as an overwhelming favorite to land Sunday’s biggest prize https://t.co/A5RxbvyZht +02/20/2017,Economists,@SBronars,RT @TheEconomist: 33% of high-tech firms created in Michigan between 1990 and 2005 have at least one immigrant founder https://t.co/s3JKT6m… +02/20/2017,Economists,@SBronars,RT @tamcfall: @SBronars @espn and athletics depts are all broke +02/20/2017,Economists,@SBronars,"Flying coach: Many universities are using private planes https://t.co/ms389FR1Fa +via @ESPN App https://t.co/f7Wrh6tAwP" +02/20/2017,Economists,@SBronars,No Hesitations: Econometrics: Angrist and Pischke are at it Again https://t.co/wHAEtWngdX +02/19/2017,Economists,@SBronars,"RT @FrankLuntz: In the U.S., immigrants commit less crime than native-born Americans. + +https://t.co/iFVwxANWns https://t.co/F4CE5vlywM" +02/18/2017,Economists,@SBronars,RT @bill_easterly: I took this graph seriously until I saw in right-hand upper corner the claim that economists have social skills https://… +02/17/2017,Economists,@SBronars,"Don't appear before a judge the Monday after the start of daylight savings time. + +https://t.co/QvdYm2FHHR" +02/16/2017,Economists,@SBronars,Real average hourly earnings fell by 0.5% between December 2016 and January 2017. https://t.co/DDkA6vXXXL +02/16/2017,Economists,@SBronars,RT @TheEconomist: A new survey reveals there is one area in which young people’s views are not so progressive: free speech https://t.co/cHA… +02/14/2017,Economists,@SBronars,"More than 4,000 applicants have submitted resumes for just two openings as ""candy tasters"" at Mondelez. https://t.co/B65DX9SB6z" +02/14/2017,Economists,@SBronars,"Kevin Love:1 of 5 players w 20 points & 10 rebounds per game, also Anthony Davis, DeMarcus Cousins, Karl-Anthony Towns & Russell Westbrook" +02/14/2017,Economists,@SBronars,"Just 15 labor strikes involving 1,000+ workers in 2016. 7 with state & local govt. Only 2 lasted more than 5 days. https://t.co/kvlJzv9IqO" +02/13/2017,Economists,@SBronars,https://t.co/dRbS2j8Gfx +02/12/2017,Economists,@SBronars,RT @GarySinise: Here we are at @NMC_SD for the @GarySiniseFound Invincible Spirit Festival. Check out my skills at flipping burgers with @R… +02/12/2017,Economists,@SBronars,"18.5 million private sector layoffs in 2016, lowest in history of #JOLTS series. 1 layoff per 79 private sector employees per month in 2016." +02/11/2017,Economists,@SBronars,Newspaper runs photo of Alec Baldwin instead of Donald Trump https://t.co/zQOzpt3NPc via @HuffPostPol +02/11/2017,Economists,@SBronars,"Healthier labor market - increasing private sector quits per year +2016 33.7MM +2015 31.5MM +2014 28.9MM +2013 26.1MM +2012 23.6MM +#JOLTS" +02/08/2017,Economists,@SBronars,RT @familyunequal: In case you were wondering: US birth rates by women's age and education: 2015 https://t.co/bFCOQxYgQx +02/08/2017,Economists,@SBronars,"RT @WSJ: Santa Barbara missed out on California's rains, underscoring the vagaries of the state's water distribution +https://t.co/hfQF1vFsr3" +02/08/2017,Economists,@SBronars,RT @TheEconomist: Only a sixth of people in Africa under the age of 35 are in formal employment https://t.co/WXwPiv1O0G https://t.co/fTwIdK… +06/30/2018,Economists,@joebrusuelas,For everyone that protested across the USA know that it was noticed in Europe. All the networks & papers followed c… https://t.co/f4exVIszJt +06/30/2018,Economists,@joebrusuelas,RT @sosarris: Thank you @spg @spglife for the lovely chocolate and the great @hotelpdgdla hotel! @joebrusuelas https://t.co/qnbpHnO6Np +06/30/2018,Economists,@joebrusuelas,@Galactic_George Bourbon for my men & my horses. Champagne for the ladies!!! +06/30/2018,Economists,@joebrusuelas,Out on the street following the France 🇫🇷 vs Argentina 🇦🇷 match. @ Avenue des Champs-Élysées https://t.co/MfCk9nj3VI +06/30/2018,Economists,@joebrusuelas,@Galactic_George Yo man it’s sunny & 90 here right now. I’ve probably used all my good weather days in Paris. All good here. 😎🥃🌮 +06/30/2018,Economists,@joebrusuelas,@Galactic_George Oh yeah that is the main event tonight. Crazy here right now. City is alive. +06/30/2018,Economists,@joebrusuelas,Taken by @sosarris this sums up Saturday. And it was magnificent. https://t.co/OdjUqIolPD +06/30/2018,Economists,@joebrusuelas,@simonhartRSM @FIFAWorldCup Oh and I found the bar to watch @England play on Tuesday. The Coq & The Bulldog. That will be supreme. +06/30/2018,Economists,@joebrusuelas,That just felt like an earthquake following that goal. What a match! +06/30/2018,Economists,@joebrusuelas,@simonhartRSM @FIFAWorldCup This struggle is real in Paris right now & just exploded on that goal. +06/30/2018,Economists,@joebrusuelas,@JeffMacke That’s s little bit harsh. +06/30/2018,Economists,@joebrusuelas,Love how the horns on the streets of Paris are blaring following that goal. @FIFAWorldCup +06/30/2018,Economists,@joebrusuelas,RT @USChamber: Trade agreements create a level playing field #NAFTAworks #FacesofTrade https://t.co/lX3UfjpMfk https://t.co/WKbdh2eNKW +06/30/2018,Economists,@joebrusuelas,@moorehn I’m at cafe on Ave George V on the Seine +06/30/2018,Economists,@joebrusuelas,"Saturday morning. @ Paris, France https://t.co/ppQ2ERI9BP" +06/30/2018,Economists,@joebrusuelas,RT @RSMUSLLP: RSM Classic tickets go on sale Monday https://t.co/xz7hS7EK7j via @Brunswick_News +06/29/2018,Economists,@joebrusuelas,RT @TedMerz: Note to journos: Get off my lawn with your dumpster fire references. @TheTerminal https://t.co/ixHjxBSF68 +06/29/2018,Economists,@joebrusuelas,A little night music from quite the event. @ Résidence De L'ambassadeur des États-Unis En France https://t.co/1PiJJifRmO +06/29/2018,Economists,@joebrusuelas,"@MamaShelter_P which may be the hippest spot in the universe right now. @ Paris, France https://t.co/TCI0YwOJDY" +06/29/2018,Economists,@joebrusuelas,RT @ernietedeschi: Here's the monthly federal budget deficit on a 12M rolling basis. It was $404bn over the 12M ending Jan 2016. Now it's $… +06/29/2018,Economists,@joebrusuelas,@jodiecongirl No please do & I would be happy to follow up with them if they have any question. I deal with lots of… https://t.co/z0T1Y4vtYk +06/29/2018,Economists,@joebrusuelas,@jodiecongirl I never finished mine either. At a certain point it became something of a vanity and just decided to… https://t.co/fqEh0ejr7n +06/29/2018,Economists,@joebrusuelas,RT @RSM_Canada: #MiddleMarket businesses are viable targets for #cybercrime. @RSMUSLLP’s #MiddleMarket Business Index – special #cybersecur… +06/28/2018,Economists,@joebrusuelas,RT @simonhartRSM: In a period when the UK will soon be looking to start trade agreements post #Brexit with US and others this @RSMUSLLP q&a… +06/28/2018,Economists,@joebrusuelas,At the US Embassy 4th of July Party. https://t.co/T1IdfdMIuu +06/28/2018,Economists,@joebrusuelas,"Ok, watching the @FIFAWorldCup in Paris with 🏴󠁧󠁢󠁥󠁮󠁧󠁿 vs 🇧🇪. One can see the look of the spectators on the street. I… https://t.co/d9nlPtagVW" +06/28/2018,Economists,@joebrusuelas,With the yield curve flattening and risks of inversion rising as the Fed accelerates it’s rate hike campaign it’s t… https://t.co/1Zki3ygKEz +06/28/2018,Economists,@joebrusuelas,Remembrance of a time when we did good & great things. https://t.co/sITIal1FsS +06/27/2018,Economists,@joebrusuelas,A informative evening with old relationships bolstered & new ones established. Towards a UK-US FTA should condition… https://t.co/VcmVbL6wv8 +06/27/2018,Economists,@joebrusuelas,RT @simonhartRSM: With @RSMUSLLP colleague @joebrusuelas for tonight’s discussion on US UK trade thanks to @indparltrust taking place at… +06/27/2018,Economists,@joebrusuelas,Kinda like this place. Beautiful terrace. @ Houses of Parliament https://t.co/LFqauR8ryJ +06/27/2018,Economists,@joebrusuelas,Looking forward to a frank & friendly discussion. Too bad Chatham House rules govern the dinner. No more important… https://t.co/jU35SvDT8U +06/27/2018,Economists,@joebrusuelas,Gladstone & I. Speaking before the @indparltrust dinner tonight on Global Britain: The Future UK-US Trade Relations… https://t.co/RR5dwWJwpq +06/27/2018,Economists,@joebrusuelas,Real challenge to middle market firms. If the administration pull out of NAFTA it will be existential for some. As… https://t.co/OntfbYdlk3 +06/27/2018,Economists,@joebrusuelas,@timmullaney Trade & inventories data is why. +06/27/2018,Economists,@joebrusuelas,Following this mornings US data deluge I’m upgrading my forecast of Q2’18 from 4.1% to 4.3% with risk of a much stronger first print. +06/27/2018,Economists,@joebrusuelas,Please do listen to our discussion with @USHGNYC CEO Danny Meyer for his insights on commerce in this business cycl… https://t.co/mo6xnugOJJ +06/27/2018,Economists,@joebrusuelas,Should a hard Brexit be the endgame for the U.K. it’s time to start considering other options. My thoughts on the c… https://t.co/dn6VpYDeEO +06/27/2018,Economists,@joebrusuelas,A good US yield curve morning to all. The spread sits at 32.439 basis points in early trading. https://t.co/D1eJHBaIbV +06/27/2018,Economists,@joebrusuelas,RT @lindayueh: Times: draft white paper proposes binding UK into EU regulatory framework for goods; regarded as key to solving Irish border… +06/27/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: When will the #middlemarket begin to upgrade plants, equipment and tech? Tax legislation and other factors provide insights:…" +06/26/2018,Economists,@joebrusuelas,Churchill’s Courage. @ The Ritz London https://t.co/6dzFqBOMvV +06/26/2018,Economists,@joebrusuelas,"RT @USChamber: 125,000 Small and medium-size businesses sell goods and services to Canada and Mexico https://t.co/CdCXW2KddI #NAFTA #NAFTA…" +06/26/2018,Economists,@joebrusuelas,"RT @USChamber: #NAFTAworks: Abandoning a trade agreement that’s helped farmers, businesses, workers, and families would be disastrous https…" +06/26/2018,Economists,@joebrusuelas,RT @steveliesman: The Dow has fallen 1% or more 17 days this year like yesterday (-1.33%). CNBC finds 8 of those 17 down days were sparked… +06/26/2018,Economists,@joebrusuelas,"RT @RSM_Ireland: Its the last day of the RSM European Regional Conference in Prague! Our Tax Partner, Aidan Byrne and Director of Internati…" +06/26/2018,Economists,@joebrusuelas,"The US agricultural sector, which is the subject of retaliation, due to US trade policies, is taking it on the chin… https://t.co/YYRFFkUGoQ" +06/26/2018,Economists,@joebrusuelas,A quick look at the Bloomberg Industrial Metals Subindex. Down 5.71% YTD to 130.63 on global trade tensions. https://t.co/qOzTXvtQ6Y +06/26/2018,Economists,@joebrusuelas,According to @business the @GoldmanSachs @FIFAWorldCup model now estimates a Brazil vs @England final. That would b… https://t.co/THEKDakx2e +06/26/2018,Economists,@joebrusuelas,Early look at the US yield curve which has flattened to 34.17 basis points in early trading. Giving the growing ris… https://t.co/FRs0kiIlTG +06/26/2018,Economists,@joebrusuelas,A good sunny London morning to all. Trade tensions escalating as fears mount spillover into financial sector will be difficult to contain. +06/26/2018,Economists,@joebrusuelas,The case for a U.K.-US Free Trade Agreement. https://t.co/B8iwNqf68F +06/25/2018,Economists,@joebrusuelas,"RT @NeilBradleyDC: We are going to see a lot more of this as tariffs beget retaliatory tariffs, all harming American consumers and workers.…" +06/25/2018,Economists,@joebrusuelas,@JustinWolfers Not to mention the crypto crowd. +06/25/2018,Economists,@joebrusuelas,RT @bostonchamber: Rising international trade tensions + modest tightening of domestic & global financial conditions did little to dent ove… +06/25/2018,Economists,@joebrusuelas,"RT @Pat_Gillespie: Reality here: The basic basket of food for a traditional household in Argentina rose 21% in May from a year ago, accordi…" +06/25/2018,Economists,@joebrusuelas,The US Congress & administration need to start considering policies about what to do with Technology Individual Dis… https://t.co/SJg5uVmKqY +06/25/2018,Economists,@joebrusuelas,As the US unemployment rate heads towards 3% workplace automation will be pulled forward then turbocharged in the n… https://t.co/SfgD27les1 +06/25/2018,Economists,@joebrusuelas,"RT @USChamber: #MiddleMarket business leaders are signaling strong, forward-looking expectations on revenues, earnings, hiring, and compens…" +06/25/2018,Economists,@joebrusuelas,So I’m thinking isn’t one justification for Navarro/Trump trade policies was to force supply chains & production b… https://t.co/RzVyU4b14E +06/25/2018,Economists,@joebrusuelas,RT @TFMkts: Bitcoin Is Struggling Because Bitcoin Has Lost Its Way via @forbes https://t.co/ifITjz7tvF $xbt $btc #eth #ripple #crypto +06/25/2018,Economists,@joebrusuelas,@CryptoPoland Or if the US central bank issues Fed Coin? Which is more probable? +06/25/2018,Economists,@joebrusuelas,"Under construction. @ London, United Kingdom https://t.co/OOAtoXpmn4" +06/25/2018,Economists,@joebrusuelas,@CryptoPoland There is no intrinsic value to bitcoin. It’s not tethered to a tax base. I’ve made the case for years… https://t.co/ejoyyVG7MU +06/25/2018,Economists,@joebrusuelas,Interesting paper on the economic limits of bitcoin & blockchain. https://t.co/sFC6sF2UEk +06/24/2018,Economists,@joebrusuelas,My view on the world this afternoon. @FIFAWorldCup @RSMUK @England https://t.co/WY87iLdWxp +06/23/2018,Economists,@joebrusuelas,“For each unharmful gentle soul misplaced inside a cell.” A clarion call from long ago & far away that still resona… https://t.co/qmtCPpJlE9 +06/23/2018,Economists,@joebrusuelas,@pointsnfigures That was one hell of a finish. Great @FIFAWorldCup match. +06/23/2018,Economists,@joebrusuelas,RT @NewYorker: Mexico’s laboriously intricate passing against South Korean brought to mind Yeats’s line about beauty and hard work: “Yet if… +06/23/2018,Economists,@joebrusuelas,RT @crampell: Trump’s tariff on steel imports has caused the country’s remaining major nail producer to lose about 50% of its business in t… +06/23/2018,Economists,@joebrusuelas,"Weekend Must Read: Donald Trump and the 1930s playbook: liberal democracy comes unstuck via @FT. + I t… https://t.co/AcRXzTswU2" +06/23/2018,Economists,@joebrusuelas,Gooooooal!!!!! Mexico v South Korea a terrific game. @FIFAWorldCup +06/23/2018,Economists,@joebrusuelas,James Madison from Federalist No.10: “Enlightened statesmen will not always be at the helm.” Wise words to remember… https://t.co/oApd9085t8 +06/22/2018,Economists,@joebrusuelas,RT @RSMUSLLP: A lower statutory rate could impact when - and in what ways - #middlemarket companies make strategic #capitalinvestments: htt… +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: 52% of survey res… https://t.co/ZuJdmu6nDz +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: Roughly 58% of su… https://t.co/M42NgIelyK +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: 52% of survey res… https://t.co/AXyA9xseGh +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: Roughly 39% of su… https://t.co/bkrgzSdG99 +06/22/2018,Economists,@joebrusuelas,RT @RSMUSLLP: The “trade spat” is perilously close to becoming an all-out trade war. Here’s how #middlemarket leaders can be ready: https:/… +06/22/2018,Economists,@joebrusuelas,"RT @crypto: U.S. House members are told to publicly reveal any cryptocurrency holdings worth more than $1,000 https://t.co/DlVL6CQZzO https…" +06/22/2018,Economists,@joebrusuelas,"RT @USChamber: Confidence among America's middle market companies eased slightly, the new @RSMUSLLP #MiddleMarket Business Index shows. Fin…" +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Selling goods or services across state lines? The #SDvWayfair decision by SCOTUS affects you: https://t.co/GpbWL4g1DF https:/… +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Uncertainty regarding #immigration policies could create an even tighter #construction labor market: https://t.co/3W9HOk1y1v +06/21/2018,Economists,@joebrusuelas,Ahead of my trip to the UK next week my note on the case for a UK-US Free Trade Agreement. ⁦@simonhartRSM⁩ ⁦@RSMUK⁩ https://t.co/B8iwNqf68F +06/21/2018,Economists,@joebrusuelas,Strong move in sterling following the BoE rate decision to remain on hold this morning. Looking forward to grading… https://t.co/5XK5Q91l3S +06/21/2018,Economists,@joebrusuelas,My latest note on the case for a US-UK Free Trade Agreement. https://t.co/B8iwNqf68F +06/21/2018,Economists,@joebrusuelas,RT @PIIE: Here’s what’s included in the revised Section 301 tariff list released June 15 vs. the April 3 list. More intermediate inputs tha… +06/21/2018,Economists,@joebrusuelas,Did you know that Canada sent roughly $1.5 trillion of foreign direct investment to the United States? Check out th… https://t.co/SeH5WFjDEr +06/21/2018,Economists,@joebrusuelas,"A good Bank of England rate decision morning. A late holiday,warm weather & the royal wedding may bolstered spendin… https://t.co/YDYroQyiNu" +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Join @joebruselas and @ceoshowforum's Robert Reiss as they talk with @USHGNYC CEO Danny Meyer on the first episode of #Middle… +06/20/2018,Economists,@joebrusuelas,RT @USChamber: #MiddleMarket companies continue their positive economic outlook https://t.co/8xiAEeTI6O +06/20/2018,Economists,@joebrusuelas,"Good to see reason prevail, if only temporarily. : #BREAKING: BREAKING NEWS: Trump administration drafting executiv… https://t.co/lOnUMfXh3w" +06/20/2018,Economists,@joebrusuelas,This is what global leadership looks like. German automakers engaged in enlightened self-interest with the knowledg… https://t.co/ctrAW80gLe +06/20/2018,Economists,@joebrusuelas,A useful reminder that a country pursued its own interest by engaging in free trade regardless of what other countr… https://t.co/Vef7jYLmNy +06/20/2018,Economists,@joebrusuelas,A good wake up Wednesday to all. It would appear the US business community now recognizes it’s not just a negotiati… https://t.co/fNoTgBQzCH +06/20/2018,Economists,@joebrusuelas,"“We must always take sides. Neutrality helps the oppressors, never the victim. Silence encourages the tormentor, ne… https://t.co/RHelSimNjy" +06/20/2018,Economists,@joebrusuelas,A little music to soothe the national soul or what’s left of it. I see my life come shining from the West on to the… https://t.co/ShWwd9p9es +06/20/2018,Economists,@joebrusuelas,"RT @JimPethokoukis: “You can resolve to live your life with integrity. Let your credo be this: Let the lie come into the world, let it even…" +06/19/2018,Economists,@joebrusuelas,@CasieDaugherty That is awesome! +06/19/2018,Economists,@joebrusuelas,I wish that all policymakers should see the client questions I’m getting caused by Trump’s tariffs today. There is… https://t.co/Qw9k9EuEx0 +06/19/2018,Economists,@joebrusuelas,@MKTWgoldstein His picture should be permanently attached to the term moral hazard in every Econ text in perpetuity. +06/19/2018,Economists,@joebrusuelas,I’m proud that our partner @USChamber of the @RSMUSLLP Middle Market Business Index has taken such a courageous sta… https://t.co/qgGBxrulAi +06/19/2018,Economists,@joebrusuelas,"RT @DinaPomeranz: In 1929-1934, a campaign forcing Mexicans and Mexican Americans out of the country was carried out in some US states. + +Th…" +06/19/2018,Economists,@joebrusuelas,"RT @dlcohenwrites: . @RSMUSLLP MMBI shows midmarket biz sentiment remains robust in Q2, despite growing trade tensions. https://t.co/J5gfBa…" +06/19/2018,Economists,@joebrusuelas,RT @USChamber: The latest @RSMUSLLP #middlemarket Business Index eased slightly as policymakers and decision makers consider the post-econo… +06/19/2018,Economists,@joebrusuelas,The latest edition of the RSM Middle Market Business Index indicates business activity in the real economy remains… https://t.co/heAz6Bac0L +06/19/2018,Economists,@joebrusuelas,@TFMkts That’s just an excuse for incoherent & failed policy choices. If they wanted to get tonight they would have… https://t.co/Dcx2UriqI3 +06/19/2018,Economists,@joebrusuelas,"Trade wars are the ultimate wars of choice. They are easy to start, difficult to end & everyone loses." +06/19/2018,Economists,@joebrusuelas,Intensifying trade spat hanging heavy on investors. Equity futures point to a difficult day in markets ahead of the… https://t.co/0ToXImhosR +06/19/2018,Economists,@joebrusuelas,"RT @SenJohnMcCain: The administration’s current family separation policy is an affront to the decency of the American people, and contrary…" +06/19/2018,Economists,@joebrusuelas,@morningmoneyben That would have been outstanding a multinational coalition that brought 18K tariffs to zero. Oh wait.... +06/19/2018,Economists,@joebrusuelas,Sunset @ W Washington D.C. Hotel https://t.co/v75iPGS0dO +06/19/2018,Economists,@joebrusuelas,@MKTWgoldstein That’s a pretty neat trick. Potentially $400 billion in tariffs on $136 billion exports. +06/18/2018,Economists,@joebrusuelas,Nothing like placing $200 billion of tariffs on $136 billion of imports. Go ahead and follow the shiny ball to take… https://t.co/gKTjz2kSb0 +06/18/2018,Economists,@joebrusuelas,"I once read a book titled “Living in Truth.” The author, Vaclev Havel, made the case that to live with lies is to a… https://t.co/pGAbxxP79I" +06/18/2018,Economists,@joebrusuelas,"The uncertainty tax around the intensifying trade spat will exert a powerful toll on A3: Aerospace, Agriculture, &… https://t.co/1biBVTfKTM" +06/18/2018,Economists,@joebrusuelas,"RT @BeschlossDC: Italian mother and children arrive at Ellis Island, 1908: #Hine https://t.co/UtYrM6wmfP" +06/18/2018,Economists,@joebrusuelas,"RT @NewYorkFed: “Finance should be both intellectually and ethically fulfilling — a field where people can use their heads during the day,…" +06/18/2018,Economists,@joebrusuelas,Today’s must read: Farewell to Manzanar. It’s a book that is embedded in the American experience & deeply impacted… https://t.co/aWO221CFED +06/18/2018,Economists,@joebrusuelas,A good DC morning to all. Scorching is a good description of the atmosphere & I’m not just talking about the weather. +06/17/2018,Economists,@joebrusuelas,@ernietedeschi @91X has been running them for some time. Was surprised at intensity of ads early in year targeting Almo. +06/17/2018,Economists,@joebrusuelas,A good way to pass the time on the tarmac. https://t.co/H9qRRW4vVt +06/17/2018,Economists,@joebrusuelas,The Bank of International Settlements provides a comprehensive takedown of crypto currencies & rightly points out t… https://t.co/8h8nX6no0g +06/17/2018,Economists,@joebrusuelas,@rsmglobalmx 🇲🇽🙌🇲🇽🙌🇲🇽🍾🎉🇲🇽🙌🇲🇽🙌 +06/17/2018,Economists,@joebrusuelas,"RT @FIFAWorldCup: Wow! + +#MEX stun the #WorldCup champions in Moscow! + +#GERMEX 0-1 https://t.co/XOtAWcKD8U" +06/17/2018,Economists,@joebrusuelas,What an upset!! https://t.co/pnEdMaxIx1 +06/17/2018,Economists,@joebrusuelas,@rsmglobalmx what a first half as Mexico outplays Germany in the @FIFAWorldCup. Viva 🇲🇽 +06/16/2018,Economists,@joebrusuelas,"@kevindepew Well, sort of due to those automatic stabilizers. I mean without tax transfers from California where wo… https://t.co/4j6ynPdUGw" +06/16/2018,Economists,@joebrusuelas,"RT @BeschlossDC: 160 years ago today in Springfield, Senatorial candidate Abraham Lincoln said, “A house divided against itself cannot stan…" +06/16/2018,Economists,@joebrusuelas,Today’s must read...in between World Cup matches...trade protectionism is no way to make America great again: Peopl… https://t.co/2Ov55qHwHg +06/15/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: As reports circulate of additional #tariffs on China, here’s how some #middlemarket companies are responding to trade tension…" +06/15/2018,Economists,@joebrusuelas,"While the paring back of the tariff lines on China was mildly encouraging, the U.S. just does not export enough to… https://t.co/ZeoVtFzI0G" +06/15/2018,Economists,@joebrusuelas,Data viz of the moment. Thai bhat under pressure as emerging market woes linked to policy normalization at the Fed… https://t.co/9ggK6tcZlK +06/15/2018,Economists,@joebrusuelas,The latest The Real Economy is out. Please read my note on options for policymakers once the business cycle ends. F… https://t.co/17pgj96yTz +06/15/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: The #MiddleMarket #transformativeCEO, a new radio series co-hosted by @ceoshowforum's Robert Reiss & RSM’s @joebrusuelas, lau…" +06/15/2018,Economists,@joebrusuelas,"RT @RSM_Canada: In light of the recent #tariffs imposed on steel & aluminum, significant risks exist to Canada. #Diversification of trade i…" +06/14/2018,Economists,@joebrusuelas,@Galactic_George Well at the very least rising deficits & debt will take the edge off of the impact of lower tax ra… https://t.co/KGKGgremba +06/14/2018,Economists,@joebrusuelas,@Galactic_George Yeah I have the annual operating deficits as a percentage of GDP going to 5.5% over the next 36 months. +06/14/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Changes to the business cycle could hit in early 2018 following #interestrate hikes according to @joebrusuelas: https://t.co/… +06/14/2018,Economists,@joebrusuelas,Nothing like a little Draghi to start your day. ECB headed toward the exit bolsters Euro against the greenback. https://t.co/tC0Uw7q6Xx +06/14/2018,Economists,@joebrusuelas,@CJMaloneyBN You know you are correct. The clickbait associated with hyperventilating screeds is always better. Lol +06/14/2018,Economists,@joebrusuelas,@TimDuy What did we do to deserve such leaders for our flock. Jeez.... +06/14/2018,Economists,@joebrusuelas,Looking forward to discussions on divergence in inflation readings between CPI & PCE from all the usual suspects ov… https://t.co/hl8RaH8Xad +06/14/2018,Economists,@joebrusuelas,"For those with more bullish outlooks: the fiscal boost to the economy, especially from the $320 billion from the re… https://t.co/SKa98OE56T" +06/14/2018,Economists,@joebrusuelas,Following this mornings data that “Hawkish Hedge” put forward by the FOMC is looking prescient. +06/14/2018,Economists,@joebrusuelas,Following this morning’s US Retail Sales data-it was so strong I broke out the computer at the airport to make poin… https://t.co/GmU5NpmvLq +06/14/2018,Economists,@joebrusuelas,Very strong US retail sales in May. At a 3 month average annualized pace sales were up 7.9% & the control group tha… https://t.co/MDlLiBZaCc +06/13/2018,Economists,@joebrusuelas,RT @NeilBradleyDC: Read my statement on the upcoming immigration votes in the House. Protect #Dreamers. Reject the ‘unwelcome’ sign. https:… +06/13/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Updated Twitter Moment collecting insights and reactions from @joebrusuelas on today's #FOMC meeting summary: https://t.co/bp… +06/13/2018,Economists,@joebrusuelas,"A quick look at the Fed's Dot Plot. Per my tweet earlier this morning, I think it was Brainard who increased her fo… https://t.co/DWapmYFW2o" +06/13/2018,Economists,@joebrusuelas,Interesting answer by Powell on the Fed bumping up against the neutral rate of interest. Well thought out and indic… https://t.co/R1lA8nrlmj +06/13/2018,Economists,@joebrusuelas,"FOMC: The Fed's upward revision to the employment, growth &inflation forecast are in line with improvement in the e… https://t.co/sFU0u8xE7m" +06/13/2018,Economists,@joebrusuelas,Today's FOMC meeting & publication of the summary of economic projections has not altered our core forecast. We exp… https://t.co/U2qpoUV4Ra +06/13/2018,Economists,@joebrusuelas,"Nice to see Powell reinforce that ""hawkish hedge"" put forward in the statement with very clear open mouth operation… https://t.co/zI942jC7Zh" +06/13/2018,Economists,@joebrusuelas,FOMC: the selective use of the word symmetric implies the Fed is looking at its range of policy tools ahead of the… https://t.co/dRV8wub4N2 +06/13/2018,Economists,@joebrusuelas,The Fed has carefully constructed a bridge back towards a slower pace of reduction in accommodation via its policy… https://t.co/vztSCOBMrT +06/13/2018,Economists,@joebrusuelas,FOMC: The first months of the Powell regime has been defined by a careful calibration of risks & a balanced outlook… https://t.co/DTlUX47CuQ +06/13/2018,Economists,@joebrusuelas,Policymakers at the Fed issued a “Hawkish Hedge” as the FOMC hiked its policy rate by 25 basis points to a rate to… https://t.co/PrXDXD6Hj7 +06/13/2018,Economists,@joebrusuelas,A little data viz & analysis prior to the FOMC meeting. Please take a look at my estimate of the Fed’s reaction fun… https://t.co/ZUR88qxiWG +06/13/2018,Economists,@joebrusuelas,"RT @USChamber: Today, the U.S. is the world’s top producer of oil and natural gas. Now, our energy industry is poised to continue this grow…" +06/13/2018,Economists,@joebrusuelas,"@michaelmbaker The key language is ""the Committee’s symmetric 2 percent objective ."" I think that this is the FOMC… https://t.co/MeLczDXS9L" +06/13/2018,Economists,@joebrusuelas,"FOMC Dot Plot: The March SEP indicated 6 members estimated 3 hikes, 6 est four hikes, 2 est one hike & 1 est five h… https://t.co/g44KUZCrPT" +06/13/2018,Economists,@joebrusuelas,The Fed holding pressers after each meeting would certainly put in play the option to hike rates as necessary at an… https://t.co/HhuOS7GF0w +06/13/2018,Economists,@joebrusuelas,"@huy_v_nguyen On the IOER: the 25bp hike will be accompanied by at 20bp hike in the IOER, which should result in th… https://t.co/Uvtz9jR0CH" +06/13/2018,Economists,@joebrusuelas,Ahead of the FOMC meeting here is a quick look at a flattening yield curve. One would think that in the first half… https://t.co/hztijEkDNv +06/13/2018,Economists,@joebrusuelas,The data viz illustrates my estimate of the Fed's reaction function. It implies a fourth rate hike this year and a… https://t.co/qw0Bskmxfo +06/13/2018,Economists,@joebrusuelas,A good FOMC morning to all or should we say happy dot plot day. A 25bps hike is priced in for today’s meeting & we… https://t.co/RISr5vnsHV +06/13/2018,Economists,@joebrusuelas,RT @wsl: Sharing is Caring 🐬 Video by Jaimen Hudson https://t.co/71K2gzX9zt +06/13/2018,Economists,@joebrusuelas,RT @isardasorensen: Sweeping pink & blue #sunset hues over #NYC tonight. https://t.co/xkMtUi0qM6 +06/13/2018,Economists,@joebrusuelas,@mark_dow Now that I like. +06/13/2018,Economists,@joebrusuelas,"RT @U2: A hot night in Harlem @ApolloTheater with @SunRaUniverse for @SIRIUSXM ... +https://t.co/X8Sa5F5Hyc +#U2 #RattleandHum #horns #angel…" +06/13/2018,Economists,@joebrusuelas,Our partners @USChamber providing real leader on risks around US protectionism. https://t.co/9hrBT7Zx8O +06/12/2018,Economists,@joebrusuelas,The Fed holding pressers after each meeting would certainly put in play the option to hike rates as necessary at an… https://t.co/Stz8NzkzlR +06/12/2018,Economists,@joebrusuelas,My FOMC preview. https://t.co/TfkbJTPYS2 +06/12/2018,Economists,@joebrusuelas,Today’s Must Read: spot on with respect to non-compete agreements & monopsony power. Courts have now blessed mandat… https://t.co/H57ImO5nrI +06/12/2018,Economists,@joebrusuelas,@JEG_Booth96 I would suggest all involved take a look at the US-Australian bilateral free trade negotiation & use i… https://t.co/ZnovsdRKoE +06/12/2018,Economists,@joebrusuelas,"A US-UK FTA will not be something that is negotiated quickly. Hard bargaining on market access over agriculture, ph… https://t.co/HJ2igNHVLH" +06/11/2018,Economists,@joebrusuelas,"RT @espn: This high school pitcher struck out his childhood friend to advance to the state championships. + +Instead of celebrating with his…" +06/11/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: The new #revenuerecognition guidance will affect most industries, ensure you are up-to-date and ready to implement by the dea…" +06/11/2018,Economists,@joebrusuelas,My FOMC meeting preview. Includes my forward look at the Fed’s reaction function & expectation for Wednesday’s monu… https://t.co/UgHyxC0ibC +06/10/2018,Economists,@joebrusuelas,"Good news: IBM builds world’s most powerful supercomputer to crack AI via @FT + https://t.co/kVkJD1AaLi" +06/10/2018,Economists,@joebrusuelas,If your invested in crypto or are thinking about it one might want to read this. No way regulators can tolerate thi… https://t.co/M94ossE3qg +06/10/2018,Economists,@joebrusuelas,"RT @JustinWolfers: Average tariff rates charged by G-7 nations: +USA: 1.6% +EU: 1.6% +UK: 1.6% +Italy: 1.6% +Germany: 1.6% +France: 1.6% +Japan: 1…" +06/10/2018,Economists,@joebrusuelas,"RT @ianbremmer: The US is like LeBron. +The best player on the court. +Still can’t win by ourselves." +06/09/2018,Economists,@joebrusuelas,RT @USChamber: Magic Johnson and Michael Jordan are both examples of athlete entrepreneurs who were able to have successful careers long af… +06/09/2018,Economists,@joebrusuelas,RT @simonhartRSM: And that’s a great week of touring with colleague @joebrusuelas from @RSMUSLLP covering #Brexit #Globaleconomy #UStrade.… +06/08/2018,Economists,@joebrusuelas,@McDonalds approach to a tight labor market. Was walking down street in London and could see it near doorway. Walke… https://t.co/jQwfvUx4FZ +06/08/2018,Economists,@joebrusuelas,"RT @RSMUK: #Brexit is not Armageddon, says @joebrusuelas as he shares insight at our Global Economy event. #UKUStrade #RSMevents https://t.…" +06/08/2018,Economists,@joebrusuelas,"RT @MarkTaylor_RSM: Another day, another engaged audience... @simonhartRSM of @RSMUK and @joebrusuelas of @RSMUSLLP giving insight on globa…" +06/08/2018,Economists,@joebrusuelas,@fritzriddle @Pat_Gillespie I settle for a target on the primary fiscal balance of zero. Given that the US is on th… https://t.co/y1TGWZcgJQ +06/08/2018,Economists,@joebrusuelas,"RT @Pat_Gillespie: BREAKING: Argentina announces new inflation and fiscal targets in exchange for $50 billion credit line from IMF. + +New i…" +06/07/2018,Economists,@joebrusuelas,@JeffMacke I’m really more interested in the performance of the nationalist militia training in the forests vis a v… https://t.co/jvnpY50AQs +06/07/2018,Economists,@joebrusuelas,What beautiful setting to wrap up an excellent @BABCMidlands event. Birmingham is truly in the process of an econom… https://t.co/tSkw9Fh7BG +06/07/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: RSM Chief Economist @JoeBrusuelas recently shared insights on #tariffs, #Brexit, the #economy, #jobs and more on Radio 4’s To…" +06/07/2018,Economists,@joebrusuelas,"RT @RSMUK: US is eager to engage with UK over future Free Trade Agreement, but #Brexit negotiations must play out first, says @RSMUSLLP chi…" +06/07/2018,Economists,@joebrusuelas,Must admit it was one of the more enjoyable & lively sessions I’ve had the privilege to participate in some time. https://t.co/UkIWAmNZzF +06/07/2018,Economists,@joebrusuelas,@BABCMidlands always put on a classy event. Take a listen to a little music https://t.co/B7FgzLTS16 +06/07/2018,Economists,@joebrusuelas,It was my pleasure to talk with one of the major trading partners of the US. At a time of growing trade tensions it… https://t.co/52j039ieP6 +06/07/2018,Economists,@joebrusuelas,@BABCMidlands an electric taxi on display illustrating British innovation. #BABC18 https://t.co/AKqkTCeCQN +06/07/2018,Economists,@joebrusuelas,Preparing to speak at the @BABC Annual TransatlanticConference. Did you know that the volume of Transatlantic Forei… https://t.co/F1CJn2BIar +06/29/2018,Economists,@IanShepherdson,"Good to know the economy's in such safe hands + +https://t.co/uwUEDcf4kC" +06/24/2018,Economists,@IanShepherdson,@FerroTV When I said on @bsurveillance on Friday that England would get five or six against Panama I was definitely being entirely serious. +06/22/2018,Economists,@IanShepherdson,About to go on @bsurveillance in NYC with @tomkeene +06/21/2018,Economists,@IanShepherdson,"@mmurraypolitics @ChrisRugaber Two options here: The president is lying, or the president doesn't know what he's ta… https://t.co/gGd4OI3Ivi" +06/19/2018,Economists,@IanShepherdson,Never mind the jump in May housing starts; this is what really matters for housing construction. https://t.co/y3gA5JIjqk +06/19/2018,Economists,@IanShepherdson,"@paulkrugman Well, the market open this morning isn't going to be pretty." +06/19/2018,Economists,@IanShepherdson,I'm about to go on @SquawkCNBC live from NY with @BeckyQuick and @JoeSquawk +06/18/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The end is coming...but when, how and what will it look like?"" Chief U.S. Economist @IanShepherdson hosted a webinar la…" +06/18/2018,Economists,@IanShepherdson,"If the UK economy had kept pace with the Eurozone over the past year, GDP would have been £20B bigger. So the… https://t.co/cpcBz5II2Q" +06/18/2018,Economists,@IanShepherdson,"If that's a Brexit dividend, finance theory needs a bit of a rethink. https://t.co/dWd19Cilxs" +06/17/2018,Economists,@IanShepherdson,"Note the forecast is 3.62%, not 3.63%, or 3.61%. The margin of error here is at least +/-1%. It's nonsense like thi… https://t.co/IgL3z4pLzG" +06/15/2018,Economists,@IanShepherdson,Delaying the purchase of a washing machine was a bad choice. Just imagine if tariffs are applied broadly to a wide… https://t.co/f0QHlaPNfa +06/15/2018,Economists,@IanShepherdson,"Interested in LatAm FX and economies at this time of turmoil? You should be following Pantheon's @andres__abadia, R… https://t.co/25UuLKJ8Jo" +06/15/2018,Economists,@IanShepherdson,Markets do love a trade war. https://t.co/2NTvvxOCGJ +06/15/2018,Economists,@IanShepherdson,The one and only positive impact of Brexit. https://t.co/qoDzQWSQ9j +06/14/2018,Economists,@IanShepherdson,"@paulkrugman Most of the British media, with some honorable exceptions, mostly CHOSE not get it, for ideological re… https://t.co/ZvtgFHbtV3" +06/13/2018,Economists,@IanShepherdson,@D_Blanchflower Ok thanks for the clarification. FWIW I think ECI private wages/salaries will be 3.5%+ and rising… https://t.co/GUMsx3BBBm +06/13/2018,Economists,@IanShepherdson,"They average a massive 1.6%. Which is what the US levies on other countries' imports, on average. There are specifi… https://t.co/SUnrcfm9YS" +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower OK, so again, are you saying there's be no further increase in US wage growth until the after the u… https://t.co/CL8gqaY57r" +06/13/2018,Economists,@IanShepherdson,"@athantolis68 @D_Blanchflower Actually, US productivity growth is no longer stagnant; it's finally picking up on th… https://t.co/iVuRsPIzfz" +06/13/2018,Economists,@IanShepherdson,@D_Blanchflower I'm only talking about the US. UK is a special case because of the lunatic self-harm of Brexit. +06/13/2018,Economists,@IanShepherdson,@Neil_Irwin Three possibilities: 1. They know something we don't (or think they do). 2. They don't really believe t… https://t.co/TJsqG7zv3V +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower Just to be clear, are you saying there'll be no meaningful increase in wage growth until after unem… https://t.co/xhhYSXnfSv" +06/13/2018,Economists,@IanShepherdson,"If the Fed gets to tell banks they can finance marijuana businesses, will they publish a Pot Dot Plot?" +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower Wages indeed slower than in the past, because productivity growth & inflation are lower than in pas… https://t.co/BuarKdcHca" +06/13/2018,Economists,@IanShepherdson,"@saedmyster Productivity growth is 1.3% y/y, so that's about all you can reasonably expect." +06/13/2018,Economists,@IanShepherdson,"Please stop telling me there's no wage growth. ECI private sector wages y/y: +Q1 2016: 2.0% +Q1 2017: 2.6% +Q1 2018: 2.9%" +06/13/2018,Economists,@IanShepherdson,"Powell is using the word ""hope"" rather more than I'd want to hear from the guy in charge of the world." +06/13/2018,Economists,@IanShepherdson,"Better get all your shopping for imported consumer goods done sharpish. +U.S. preparing to proceed with tariffs on C… https://t.co/6aqdI9I9RG" +06/13/2018,Economists,@IanShepherdson,Markets ultimately respond to what the Fed does. The Fed sometimes does what it says it is going to do. It always d… https://t.co/BiUZEnmMnM +06/13/2018,Economists,@IanShepherdson,@NickTimiraos Are they sure it isn't 1.93%? Or 1.95%? Because I'm not. +06/13/2018,Economists,@IanShepherdson,"...this chart, it makes more sense to use core CPI to derive real wages. On that basis, the real wage growth pictu… https://t.co/lXZA9nu0HG" +06/13/2018,Economists,@IanShepherdson,@paulkrugman Most of the variation in your measure of real wage growth over this period is due to big swings in gas… https://t.co/Zd7zDIuWza +06/13/2018,Economists,@IanShepherdson,"At least... Summer of '16, it was less than 1%. But there's no inflation so everything fine. https://t.co/2OJ19N1CvM" +06/13/2018,Economists,@IanShepherdson,"@Virgin_TrainsEC I know that now, but only because another passenger told me. It was never announced; hence, completely avoidable chaos." +06/13/2018,Economists,@IanShepherdson,@Virgin_TrainsEC When you make an announcement (1430 KGX NCL) that there's no coach E and that the reservations are… https://t.co/5Gvnv9HznR +06/13/2018,Economists,@IanShepherdson,RT @PantheonMacro: In Case You Missed It; Chief U.S. Economist @IanShepherdson discussing U.S. Inflation on @BloombergTV with @TheStalwart… +06/12/2018,Economists,@IanShepherdson,About to do Bloomberg TV from London with @scarletfu and @TheStalwart in NYC. +06/11/2018,Economists,@IanShepherdson,"Theresa May wants Britain to have an independent trade policy just when the words ""trade"" and ""deal"" in the same se… https://t.co/X3fqeJ8VvX" +06/11/2018,Economists,@IanShepherdson,"@ChrisGiles_ @FinancialTimes Largely because UK exporters viewed the drop in sterling after the referendum, as an o… https://t.co/5xU7zvk7CL" +06/11/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The #Fed will Hike this Week, but Likely will Hold Back the Fourth Dot"" @IanShepherdson https://t.co/6Vrt33GAhb #Panthe…" +06/09/2018,Economists,@IanShepherdson,"That's because it wasn't ""reform"". It was a huge giveaway to rich people and corporations. But there aren't enough… https://t.co/EGxyLUGcbL" +06/08/2018,Economists,@IanShepherdson,RT @TimDuy: This. The Democrats need to run on something other than the economy this November. Run on health care. Run on common decency an… +06/08/2018,Economists,@IanShepherdson,"My latest for The Hill, musing on how the jobs numbers are going to make life hard for Dems in November. +https://t.co/bnWPPQb8l9" +06/07/2018,Economists,@IanShepherdson,"Impeccably sourced. +*Ahem* +A Strong Economy Presents Democrats with a Challenge in the Midterms https://t.co/PyUpWcWJsj" +06/06/2018,Economists,@IanShepherdson,Hopped over to @BloombergTV with @flacqua +06/06/2018,Economists,@IanShepherdson,Live on @BloombergRadio in London in a mo. +06/05/2018,Economists,@IanShepherdson,"All you need to know about @Econs4FreeTrade is that their website features 30 headshots, 28 of which are of middled-aged white men in suits." +06/02/2018,Economists,@IanShepherdson,@WSJecon Three different shades of blue on one chart? Other colors are available. +06/01/2018,Economists,@IanShepherdson,Both https://t.co/MsIFtFsIci +06/01/2018,Economists,@IanShepherdson,if the current 12-month average rates of increase of household employment and the labor force continue over the nex… https://t.co/SzTAlprRJ7 +06/01/2018,Economists,@IanShepherdson,"Riveting back to the trend before mid-14, when the collapse in oil prices crushed capex in the oil sector and every… https://t.co/SfEW4jRjPr" +06/01/2018,Economists,@IanShepherdson,One good month for hourly earnings doesn't make an uptrend. But NFIB worker comp hitting an all-time high suggests… https://t.co/7hTs6Wbn55 +06/01/2018,Economists,@IanShepherdson,"The last time headline unemployment was sustained below May's 3.8% rate, in 1969, core CPI inflation averaged 5.8%.… https://t.co/vBcYutJO7T" +06/01/2018,Economists,@IanShepherdson,"For a guy who doesn't drink, @realDonaldTrump drunk tweets an awful lot." +06/01/2018,Economists,@IanShepherdson,"yup, he knew." +06/01/2018,Economists,@IanShepherdson,President's short 2y notes trade pay offs pretty quickly. https://t.co/otq9xzC28y +06/01/2018,Economists,@IanShepherdson,"More likely, I think. https://t.co/m3sVnjwPrC" +06/01/2018,Economists,@IanShepherdson,"...Second, the 15th - payday for people paid semi-monthly - fell after the survey week. AHE are supposed to be repo… https://t.co/bwMEzkeFx6" +06/01/2018,Economists,@IanShepherdson,"Two reasons to think downside risk for average hourly earnings. First, May had 22 working days this year, one more… https://t.co/xJORBlxWSc" +06/01/2018,Economists,@IanShepherdson,"180 +3.9 +0.1 +#jobsreport #nfpguesses" +06/01/2018,Economists,@IanShepherdson,...says the guy who probably saw the report yesterday. https://t.co/P8DY8lZhQG +05/31/2018,Economists,@IanShepherdson,"Every time I've said to Brexiteers over the past couple of years that ""trade deals"" are the two most toxic words in… https://t.co/x3wv5xKeLW" +05/30/2018,Economists,@IanShepherdson,"@JohnCassidy True that Italy's relative ULC have not deteriorated further since the financial crisis, but the prior… https://t.co/RT9XcVOyHn" +05/30/2018,Economists,@IanShepherdson,@JohnCassidy The nature of the euro bubble was partly that countries which joined the euro thought that meant they… https://t.co/kDVMobhk7Y +05/30/2018,Economists,@IanShepherdson,"Pleased to announce that Miguel Chanco @mc_economist will be joining Pantheon from the EIU in a couple weeks, to br… https://t.co/6ux6CrnOj0" +05/30/2018,Economists,@IanShepherdson,"If you're going to join a club run under German rules, but you're not going to control costs like Germany, then tea… https://t.co/k5hqLKMOL9" +05/24/2018,Economists,@IanShepherdson,"If you're investing in EM while the Fed is raising rates, and your EM has: +- A rising current account deficit +- A r… https://t.co/n6LqzCLaHL" +05/24/2018,Economists,@IanShepherdson,"The pardon for Jack Johnson is justice served, though a bit late. My great-grandfather Joe, a not-hugely-successfu… https://t.co/rFiVi40MTi" +05/17/2018,Economists,@IanShepherdson,"The jump in the Philly Fed prices paid index in May is consistent with a doubling of core PPI goods inflation, to 4%. Ouch." +05/17/2018,Economists,@IanShepherdson,"If you're in Cambridge tonight/Fri/Sat, go and see this (and not just because @BeckyShepp is in it!) +https://t.co/4ZG7m9i4NX" +05/17/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""U.S. Labor Market Indicators are Contradictory; Which to Trust? @IanShepherdson https://t.co/A5ni4xsUee #PantheonMacro…" +05/15/2018,Economists,@IanShepherdson,RT @Keir_Starmer: What a farce. Cabinet fighting over 2 customs options: neither workable; neither acceptable to EU; and neither would get… +05/15/2018,Economists,@IanShepherdson,"I was asked on @bsurveillance about investing in Turkey. I said, ""don't""." +05/15/2018,Economists,@IanShepherdson,Live on @bsurveillance from NYC with @tomkeene And @flacqua in a few minutes. +05/14/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""China's M1 Points to a Substantial GDP Growth Downtrend"" @freyabeamish https://t.co/wTCsLPGZBB #PantheonMacro https://t…" +05/12/2018,Economists,@IanShepherdson,"@pbalint I was referring specifically to domestic US private sector imbalances, which are quite small. EZ corps are… https://t.co/3fkxO0G2yX" +05/12/2018,Economists,@IanShepherdson,"My latest for The Hill: The date of the next recession is unknowable, but its impact isn't https://t.co/BPdVTqLwDP" +05/11/2018,Economists,@IanShepherdson,"So it's OK for the UK to be much poorer than it would otherwise have been, for the next decade, because in the foll… https://t.co/Rrch07abFf" +05/11/2018,Economists,@IanShepherdson,"I was pontificating at some unearthly hour on @CNBC @SquawkBoxEurope from Pantheon Towers this morning: +https://t.co/mqg1eqi9D7" +05/11/2018,Economists,@IanShepherdson,"That punishment definitely fits the crime, and rights the wrong. For sure. Everything will be OK. British fair play… https://t.co/apku26KSZx" +05/10/2018,Economists,@IanShepherdson,The biggest single drag on the April core CPI was a 1.6% drop in used car prices. They're mean-reverting after surg… https://t.co/SSyKSnJqAW +05/10/2018,Economists,@IanShepherdson,"Airline fares should be rocketing, given the rise in fuel prices. In fact, they're falling rapidly, probably due to… https://t.co/7q2DIoWEsw" +05/08/2018,Economists,@IanShepherdson,Hard to be a top economy when you aren't really an economy at all. https://t.co/6w2hg2aqlt +05/08/2018,Economists,@IanShepherdson,"@kurteichenwald And they have cancelled the bundling rules previously due to start Jan 1, which would have held dow… https://t.co/exO60XIjlq" +05/08/2018,Economists,@IanShepherdson,"JOLTS report released today. Or, as it's otherwise known, noise." +05/08/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The cycle is peaking as higher rates begin to bite..but the next downturn is still some way off"" Our U.S. Economic Char…" +05/08/2018,Economists,@IanShepherdson,"...rules on ""bundling"" costs for cardiac episodes and joint replacement. The definitive announcement came on 11/30,… https://t.co/jNe399Nc0n" +05/08/2018,Economists,@IanShepherdson,"... By abandoning or scaling back rule changes which were designed to hold down costs for hospital services, the ad… https://t.co/JW8s2fJYDu" +05/08/2018,Economists,@IanShepherdson,"@paulkrugman in today's @nytimes says GOP is undermining Obamacare in two ways, by making it harder for people to q… https://t.co/3Zwu8PFZWy" +05/07/2018,Economists,@IanShepherdson,Yup. But then I would say that... https://t.co/P8R8RhTKu8 +05/04/2018,Economists,@IanShepherdson,"@chrislhayes Brits say ""sport"" too rather than ""sports"". Brit twitterers of a certain age will fondly remember this: https://t.co/ZGrsbQ0G3x" +05/04/2018,Economists,@IanShepherdson,"...at which point, core CPI inflation was 6%. Four years earlier, it was 1.5%. https://t.co/r8ZQQs2gKh" +05/04/2018,Economists,@IanShepherdson,"I'll keep this short. +Payroll miss against consensus: 29K. +Margin of error: +/-115K. +Market reaction: Irrational. +#JobsReport" +05/04/2018,Economists,@IanShepherdson,Hardly ever. https://t.co/nuvuP24dJx +05/04/2018,Economists,@IanShepherdson,"Current moving average payroll numbers: +3-mth: 208 +6-mth: 198 +9-mth: 188 +12-mth: 189 +Range of monthly numbers over… https://t.co/DvEnMcqzUt" +05/04/2018,Economists,@IanShepherdson,But don't take my word for it: https://t.co/CB08gfvlhx +05/04/2018,Economists,@IanShepherdson,"I'm going to shout now: +DON'T TAKE ANY NOTICE OF THE REPORTED DIP IN PARTICIPATION IN APRIL. IT'S NOISE NOT SIGNAL,… https://t.co/jmjVbqwaDy" +05/04/2018,Economists,@IanShepherdson,Look out for a big rebound in household employment; has been undershooting payrolls. If it happens unemployment rate likely down. +05/04/2018,Economists,@IanShepherdson,RT @freyabeamish: This report takes on a whole new significance in the context of a Chinese #currentaccount #deficit. #China is capital hun… +05/04/2018,Economists,@IanShepherdson,"200 +4.0 +.2 +Brevity +virtue + #NFPGuesses" +05/03/2018,Economists,@IanShepherdson,"How can you ""track"" something which mostly hasn't happened yet, and the data for the bit which has happened mostly… https://t.co/rLcMZsNOBY" +05/03/2018,Economists,@IanShepherdson,"The spelling attests that Trump typed this, but he clearly didn't write it. It's in English. https://t.co/KJFRUMks8K" +04/30/2018,Economists,@IanShepherdson,@RenMacLLC I'm guessing the surge in repair costs is concentrated in areas hit by the hurricanes last summer. +04/30/2018,Economists,@IanShepherdson,On @SquawkCNBC NY in 10 min with @JoeSquawk @andrewrsorkin and @BeckyQuick +04/27/2018,Economists,@IanShepherdson,"The hurricanes last summer distorted Q1 consumption, inventories, and foreign trade. Maybe capex too. Also, the BEA… https://t.co/bFU4XNPrJo" +04/27/2018,Economists,@IanShepherdson,By which I mean that the seasonal adjustment problem which holds down reported Q1 GDP growth is so pronunced - abou… https://t.co/ioqehQZLDb +04/26/2018,Economists,@IanShepherdson,Aaaand you're welcome. +04/26/2018,Economists,@IanShepherdson,And in glorious pictorial form... https://t.co/wFWIf8IN5r +04/26/2018,Economists,@IanShepherdson,2. Durable goods orders likely will beat consensus; Boeing had a very strong month. I'm looking for 3.5% m/m headli… https://t.co/QVzZQf2GYZ +04/26/2018,Economists,@IanShepherdson,"1. Couple things to watch out for in the econ data today. First, data on container movement at major ports suggests… https://t.co/xe6zedgR7V" +04/25/2018,Economists,@IanShepherdson,"@hairmetalchef Utterly brilliant Chef for the Day experience at MBTC on Saturday; such a great bunch of committed,… https://t.co/WssXSmwmxO" +04/25/2018,Economists,@IanShepherdson,Seeing all these recent results together is quite a powerful picture. https://t.co/3tF3PfkCpm +04/24/2018,Economists,@IanShepherdson,"If you don't have the cash, it doesn't matter how confident you are. https://t.co/8R4mYf6SqF" +04/20/2018,Economists,@IanShepherdson,"Healthcare inflation has not been a problem for the Fed's PCE inflation target for some years, but the beast is bac… https://t.co/sSQk057XbQ" +04/12/2018,Economists,@IanShepherdson,RT @PantheonMacro: Our U.S. Chartbook for April by @IanShepherdson has now been released. Subscribers can access here https://t.co/O3DW5OtW… +04/12/2018,Economists,@IanShepherdson,"@TheStalwart Several hours sleep, it appears." +04/11/2018,Economists,@IanShepherdson,Everyone knows base effects will lift core inflation; what the Fed cares about is the impact on inflation expectati… https://t.co/0tzFipdrqf +04/11/2018,Economists,@IanShepherdson,"The departure of Paul Ryan means that the title of ""wearer of the worst-fitting suit in Congress"" is up for grabs." +04/11/2018,Economists,@IanShepherdson,"If I were a Fed hawk, I'd be saying never mind the base effect lifting y/y core inflation; what matters is that the… https://t.co/T2VEPAqX1f" +04/10/2018,Economists,@IanShepherdson,"Absolutely no sign yet that the tax cuts are lifting small firms' investment spending plans. Maybe, just maybe, the… https://t.co/PpseEP0rH1" +04/10/2018,Economists,@IanShepherdson,@TheStalwart Bit of editing. You're welcome. https://t.co/uCtSjGx1Bi +04/06/2018,Economists,@IanShepherdson,The 313k #nfp initial print for feb was not indicative of the trend; nor is the103k march reading. Nothing to do wi… https://t.co/1kt3ltKco0 +03/30/2018,Economists,@IanShepherdson,"I often disagree with @bretstephens, but he is dead right on this one. And no, I'm not a Tory or a Blairite. +Jer… https://t.co/RYt3sc2WBc" +03/29/2018,Economists,@IanShepherdson,@JulianMI2 @greg_ip Base effects will put core CPI above that rate by spring THIS year. +03/29/2018,Economists,@IanShepherdson,RT @greg_ip: .@IanShepherdson at Pantheon Macro highlights how core PCE is catching up to core CPI inflation because of rising hospital pri… +03/28/2018,Economists,@IanShepherdson,"I'm quite miffed that imports refused to fall in March, but they are going to drop sharply very soon, and the trade… https://t.co/dPIcRWTcyP" +03/27/2018,Economists,@IanShepherdson,I'm live on @BloombergRadio in a couple minutes talking US economy. +03/26/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Smoot and Hawley are Still Dead; Trump is not Resurrecting them… Yet"" @IanShepherdson https://t.co/fZRhVJNPZg #Pantheon…" +03/23/2018,Economists,@IanShepherdson,"@ScottWapnerCNBC I mean, I could be wrong, but perhaps this is just evidence that Peter Navarro has no clue." +03/23/2018,Economists,@IanShepherdson,"@LinkedInEcon @D_Blanchflower I don't need to it to get there, I just want to see a sustained upward trend." +03/23/2018,Economists,@IanShepherdson,@LinkedInEcon @D_Blanchflower Agreed. But it's mostly among women and older men. I'll be much happier if/when it st… https://t.co/TJQXIZyjB1 +03/23/2018,Economists,@IanShepherdson,@D_Blanchflower Agreed forecasts of incremental declines in LFPR from here make little sense. But the rising trend… https://t.co/3ZYbum1ieg +03/23/2018,Economists,@IanShepherdson,@D_Blanchflower I'd like nothing better than to see participation rising - it would extend the cycle and begin to a… https://t.co/xqPNOtyEAz +03/22/2018,Economists,@IanShepherdson,And probably neither of them were orange. https://t.co/rs6Ehpgq4p +03/22/2018,Economists,@IanShepherdson,"I see that two white guys in their 70s are threatening to punch each other. No big deal, except than one is the Pre… https://t.co/X15LLpaKz8" +03/21/2018,Economists,@IanShepherdson,Every FOMC member now forecasts core PCE inflation at or above the target at end-2020; the range is 2.0-to-2.3%. I… https://t.co/0z6KQV9GbU +03/21/2018,Economists,@IanShepherdson,"2. Curious to see how House/Senate Committees will react to Fed saying they are going to overshoot, even if only marginally." +03/21/2018,Economists,@IanShepherdson,1. People at Powell presser: What's the logic behind forecasting core PCE a tenth above target end 19/20? Why not a… https://t.co/dxr6Dngqgg +03/21/2018,Economists,@IanShepherdson,"Google maps, central London. I'm not making this up... https://t.co/DeY9hQ7ry3" +03/21/2018,Economists,@IanShepherdson,"My Fed preview for @thehill +Memo to Powell: Best not to offer hostages to fortune https://t.co/kU6TbPMI4b" +03/20/2018,Economists,@IanShepherdson,"Some people just don't learn: +Visit NYC mid-March. +Watch weather forecast and wait for meetings to be snowed off. +Repeat next year." +03/20/2018,Economists,@IanShepherdson,The fact that their estimate was well over 5% just a few weeks ago should tell you all you need to know about the s… https://t.co/z7zPmijcr6 +03/20/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""FOMC to Stick to Three Hikes this Year, but an Extra Dot for 2019?"" @IanShepherdson https://t.co/bwB90nraXD #PantheonMa…" +03/20/2018,Economists,@IanShepherdson,"RT @samueltombs: UK CPI #inflation fell to 2.7% in February, clearly below the MPC's 2.9% forecast. Services inflation was its weakest sinc…" +03/19/2018,Economists,@IanShepherdson,"ICYMI Fed's Powell 'bullish on growth,"" says economist https://t.co/KsBa2wRmLy" +03/19/2018,Economists,@IanShepherdson,I'm on @SquawkCNBC in NY with @BeckyQuick in about 10 min. +03/16/2018,Economists,@IanShepherdson,"RT @bsurveillance: .@IanShepherdson @PantheonMacro with @tomkeene & @FerroTV: Retail sales are not correcting, they're returning back to no…" +03/16/2018,Economists,@IanShepherdson,RT @bsurveillance: .@IanShepherdson @PantheonMacro with @tomkeene & @FerroTV: I realize we've had some horrible trade deficits in the recen… +03/16/2018,Economists,@IanShepherdson,Talking Fed and global macro https://t.co/ilzCwPhyqI +03/15/2018,Economists,@IanShepherdson,"Now I pour Krug on them, for a nice little morning pick-me-up. https://t.co/PPkgCFs8qD" +03/15/2018,Economists,@IanShepherdson,"The recent ""weakness"" in retail sales isn't weakness at all. https://t.co/vQbLkRJ9MM" +03/15/2018,Economists,@IanShepherdson,"Ways in which Britain and America baffle each other, part 5,634: +In Britain skim milk is in red cartons, whole milk… https://t.co/PApi0d9MlE" +03/15/2018,Economists,@IanShepherdson,RT @BBCPolitics: Alex Salmond: Russian channel RT 'not propaganda' https://t.co/WPKojuJXIo +03/15/2018,Economists,@IanShepherdson,"RT @paulkrugman: OK, so it's Kudlow for top economic adviser. At least he's reliable -- that is, he's reliably wrong about everything. We a…" +03/15/2018,Economists,@IanShepherdson,RT @Milbank: Even a stopped clock is right twice a day. But Larry Kudlow? Well... https://t.co/qkVXzLLr5q +03/13/2018,Economists,@IanShepherdson,"Andrew Pudzer, apparently in the frame to replace Gary Cohn, just asserted confidently on @MSNBC that Feb average h… https://t.co/bbHjqoacdg" +03/11/2018,Economists,@IanShepherdson,"The labor market looks great, and it likely will stay that way for a while yet. https://t.co/ysAMNIMVf6" +03/10/2018,Economists,@IanShepherdson,The .01% here is VERY important. Just think how bad it would be if growth were only 2.80%. And economists wonder w… https://t.co/CarLxar91e +03/10/2018,Economists,@IanShepherdson,"@EvanHD Whatever the context, you can't refer to a real live person as a ""black"", as though their ethnicity is the… https://t.co/wXOxnDziIM" +03/09/2018,Economists,@IanShepherdson,Memo to everyone getting excited about the 0.3pp rise in the participation rate: It just reverses the reported 0.3p… https://t.co/VExHL8vEgb +03/09/2018,Economists,@IanShepherdson,Minor quibbles apart - the construction and retail job gains aren't sustainable - this is just a great employment r… https://t.co/unEPHCg966 +03/08/2018,Economists,@IanShepherdson,It's all going wobbly in the UK housing market... https://t.co/Db96XNHPOb +03/06/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Why China will Miss its GDP Growth, Fiscal Deficit and RMB targets"" @freyabeamish https://t.co/JBVCbVQZ16 #PantheonMacr…" +03/06/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Inventories Rebounding in Q1; GDP Growth Could Yet be Very Strong"" @IanShepherdson https://t.co/FMmPKG3idj #PantheonMac…" +03/05/2018,Economists,@IanShepherdson,Something doesn't add up. That would be China's GDP. https://t.co/DckiWcj5CE +03/05/2018,Economists,@IanShepherdson,RT @freyabeamish: #China ceases to target #M2. But Li Keqiang says they expect growth around the same level as last year…which was a histor… +03/05/2018,Economists,@IanShepherdson,"RT @jcragroup: Now available: @IanShepherdson, Chief Economist at @PantheonMacro speaks at JCRA’s Annual Economic Breakfast Overview 2018:…" +03/03/2018,Economists,@IanShepherdson,"RT @andres__abadia: #Chile: #Retail #sales rose 3.8% y/y in Jan, down from 4.5% in Dec, but the trend is rising. We expect the recovery in…" +03/02/2018,Economists,@IanShepherdson,@boes_ @TimDuy @SteveMatthews12 it's not questionable. The rental vacancy rate dropped sharply in Q4. +03/02/2018,Economists,@IanShepherdson,"in any other developed country, this would be the front page splash. https://t.co/wlAICE2LxH" +03/02/2018,Economists,@IanShepherdson,@w14capital Problem is that one guy's reasonable effort is another guy's illegal state aid. Better to let the macro… https://t.co/eUpN0wimN5 +03/02/2018,Economists,@IanShepherdson,Genius https://t.co/QnMS2WvDxH +03/02/2018,Economists,@IanShepherdson,@w14capital There's no economic law that says t-shirts have to be produced in sweatshops either in DM or EM econs;… https://t.co/JkYmg0BVDp +03/02/2018,Economists,@IanShepherdson,"@EventLongShort Yes, but they're smaller than before China joined the WTO" +03/02/2018,Economists,@IanShepherdson,"Since China joined the WTO, US clothing production is down 79%, while production of primary metals is UP 11%. So wh… https://t.co/a7d58oYj8l" +03/02/2018,Economists,@IanShepherdson,@alexmassie @PickardJE Deliberate ambiguity or perhaps just utter cluelessness. +03/02/2018,Economists,@IanShepherdson,"At the last count, a mere 99.7% of U.S. private sector employees did not work in the primary metals sector." +03/02/2018,Economists,@IanShepherdson,RT @freyabeamish: Kuroda says #BoJ will consider an exit in 2019. Exit is an attempt to get back to a normal and less invasive form of #mon… +03/02/2018,Economists,@IanShepherdson,"2. With 17M light vehicle sales per year, that's a total consumer hit of $2.9B per year from higher auto prices alo… https://t.co/H1UTfFYp7H" +03/02/2018,Economists,@IanShepherdson,1. So. The average car requires about 2000lb steel and 400lb aluminum. If domestic producers raise prices by almost… https://t.co/qlxUAvv931 +03/02/2018,Economists,@IanShepherdson,"@ReutersBiz @TheStalwart Sow. +Reap. +Repeat." +03/02/2018,Economists,@IanShepherdson,"@realDonaldTrump Meanwhile, in the fact-based world - the one that puts planes in the sky and stuff - this is just… https://t.co/840Mm64bzR" +03/02/2018,Economists,@IanShepherdson,Looks like someone with zero understanding of basic economics has got access to the U.S. President's Twitter this m… https://t.co/RzFAaBxC6y +03/02/2018,Economists,@IanShepherdson,@TheStalwart The Arctic remains resituated over the U.K. and we're all still loving it. +03/01/2018,Economists,@IanShepherdson,"RT @PantheonMacro: U.S. Construction Spending in January ""Likely constrained by weather; better to come."" @IanShepherdson #PantheonMacro" +03/01/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Spectacular headline; details not quite so good."" @IanShepherdson on ISM Manufacturing Survey, February #PantheonMacro" +03/01/2018,Economists,@IanShepherdson,It looks to me like the compression of healthcare inflation under Obamacare is unwinding. With hospital margins so… https://t.co/yUXX69Fuhl +03/01/2018,Economists,@IanShepherdson,I wouldn't mind so much if it weren't absolutely hideous. But it is. https://t.co/gyCvLLScHb +02/28/2018,Economists,@IanShepherdson,"Last time I bought an assault rifle from Delta Airlines, they wanted ID and everything. Same with Hertz. https://t.co/UAZEAkMRuH" +02/28/2018,Economists,@IanShepherdson,Thunder. In February. This has got to stop. +02/26/2018,Economists,@IanShepherdson,"The check is due for the longest, biggest free lunch in history. https://t.co/ZxKUAXVDTI" +02/16/2018,Economists,@IanShepherdson,On @SquawkCNBC in a couple min should you want to watch some singing and dancing. +02/14/2018,Economists,@IanShepherdson,"Core CPI is up 2.9% on a three-month annualized basis. The horror! As recently as May, it was 0.4%. The (opposite)… https://t.co/g4MO0MR2oy" +02/14/2018,Economists,@IanShepherdson,"@matthewjsinger @morningmoneyben One CPI report doesn't confirm anything, except that the BLS releases a CPI report every month," +02/14/2018,Economists,@IanShepherdson,Hospital services prices went a bit nuts in the January CPI. That's what they do sometimes; it doesn't mean the tr… https://t.co/CZXGSn1PNU +02/14/2018,Economists,@IanShepherdson,"Had the January CPI core number been just 0.002% higher, the print would have been 0.4% rather than 0.3%, and that… https://t.co/wNDTD1UIkE" +02/09/2018,Economists,@IanShepherdson,@blueskiesatx I don't agree. It would have been much worse for everyone if the banking system had collapsed. But s… https://t.co/rs2EkVmqoM +02/09/2018,Economists,@IanShepherdson,@TimDuy That's possible. But my more immediate concern is that the extra demand from the fiscal easing can't be abs… https://t.co/Obqsql1SzL +02/09/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Congress Set to Spray Yet More Fuel on the Fire; Over to You, Mr. Powell"" @IanShepherdson https://t.co/Lk4yKrjPwo #Pant…" +07/01/2018,Economists,@bill_easterly,RT @bill_easterly: Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if other… +06/30/2018,Economists,@bill_easterly,Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if… https://t.co/wkx5caTJFc +06/30/2018,Economists,@bill_easterly,Is it a thing in the World Cup that the team with more immigrants wins? +06/30/2018,Economists,@bill_easterly,RT @bill_easterly: Lifetime goal: violate all of these restrictions. https://t.co/UbA4rULHsG +06/29/2018,Economists,@bill_easterly,@ChrisProttas Thanks for engaging. +06/29/2018,Economists,@bill_easterly,Lifetime goal: violate all of these restrictions. https://t.co/UbA4rULHsG +06/29/2018,Economists,@bill_easterly,You can now read The Tyranny of Experts in Thai if you want https://t.co/yiqb6suRcG +06/29/2018,Economists,@bill_easterly,@PMoserEcon What about Marriage of Figaro? +06/29/2018,Economists,@bill_easterly,RT @bill_easterly: Feeling very frustrated on how to fight xenophobic policies when the 2 most popular options are not working: (1) preachi… +06/28/2018,Economists,@bill_easterly,@DevashishMitra_ The secret is in the broth +06/28/2018,Economists,@bill_easterly,Doctor recommends to me an all-ramen diet. Could be example for a future class on non-generalizable recommendations… https://t.co/O099scfRjE +06/28/2018,Economists,@bill_easterly,Feeling very frustrated on how to fight xenophobic policies when the 2 most popular options are not working: (1) pr… https://t.co/ETBFAoHqR2 +06/27/2018,Economists,@bill_easterly,RT @triskodarden: “The fundamental cause of development is freedom.” -@bill_easterly https://t.co/LyGdjWvsWw +06/27/2018,Economists,@bill_easterly,Talk at Heritage Foundation: aid to prevent migration offers poor people something they don’t want in exchange for… https://t.co/VsnjGKxKFV +06/27/2018,Economists,@bill_easterly,A policy that penalizes people based on their national origin denies to them the dignity of being treated as a uniq… https://t.co/SCOKm43yM7 +06/27/2018,Economists,@bill_easterly,"RT @conradhackett: In a classic experiment, 12 articles were resubmitted to the same journals in which they had already been published. Thr…" +06/25/2018,Economists,@bill_easterly,"RT @bill_easterly: This does not settle the argument but a world with open borders would be twice as rich, based on work by @m_clem https:/…" +06/24/2018,Economists,@bill_easterly,"RT @bill_easterly: Paper with Steven Pennings that I’m presenting at World Bank on Monday 10:30am, on whether there is evidence for Benevol…" +06/24/2018,Economists,@bill_easterly,"This does not settle the argument but a world with open borders would be twice as rich, based on work by @m_clem https://t.co/PclKceiN7i" +06/23/2018,Economists,@bill_easterly,"RT @bill_easterly: List of all leaders estimated to have a significantly positive effect on growth (“LS leader est.”), from paper by Pennin…" +06/23/2018,Economists,@bill_easterly,@alans_spo @eneasthings @PaulKagame The Kagame effect is positive but high noise makes it statistically insignificant. +06/22/2018,Economists,@bill_easterly,"@eneasthings Positive effect on growth does not mean a “good” leader, it might have been through terror & coercion" +06/22/2018,Economists,@bill_easterly,"List of all leaders estimated to have a significantly positive effect on growth (“LS leader est.”), from paper by P… https://t.co/dVnnz1EgQg" +06/22/2018,Economists,@bill_easterly,"RT @SverrirSte: The best and worst leaders in terms of achieving economic growth, according to a measure by @bill_easterly #SocSciResearch…" +06/22/2018,Economists,@bill_easterly,"RT @m_clem: ""How much economic growth can we attribute to national leaders?"" +https://t.co/UiXPkWJNYa +New from @bill_easterly and Pennings" +06/22/2018,Economists,@bill_easterly,"Paper with Steven Pennings that I’m presenting at World Bank on Monday 10:30am, on whether there is evidence for Be… https://t.co/WzkWfc3DhR" +06/21/2018,Economists,@bill_easterly,@savthorpe @Libertylifter Can you send me a link to the blog mentioned? +06/21/2018,Economists,@bill_easterly,RT @bill_easterly: Presenting paper “Shrinking Dictators: How much Economic Growth can we Attribute to National Leaders?” at World Bank ABC… +06/21/2018,Economists,@bill_easterly,Install these on all foreign aid projects https://t.co/KjKBdt5RSH +06/21/2018,Economists,@bill_easterly,RT @bill_easterly: How American Development Economists decide which country to root for in World Cup 2018 https://t.co/k6ZTwiiYzZ +06/20/2018,Economists,@bill_easterly,@psharma3123 Have to keep it a secret to avoid offending the others! +06/20/2018,Economists,@bill_easterly,How American Development Economists decide which country to root for in World Cup 2018 https://t.co/k6ZTwiiYzZ +06/20/2018,Economists,@bill_easterly,RT @bill_easterly: Speaking on Development moving beyond foreign aid in Wash DC Tuesday June 26 2pm https://t.co/IOTCRImQCV +06/20/2018,Economists,@bill_easterly,RT @bill_easterly: It’s cruel and unusual punishment to enforce immigration laws by separating a 2-year-old from her parents https://t.co/T… +06/19/2018,Economists,@bill_easterly,Listen to children who immigration officers have just separated from their parents at the border https://t.co/7wmLWVByOk +06/19/2018,Economists,@bill_easterly,It’s cruel and unusual punishment to enforce immigration laws by separating a 2-year-old from her parents https://t.co/TnBTyKjs8U +06/18/2018,Economists,@bill_easterly,Speaking on Development moving beyond foreign aid in Wash DC Tuesday June 26 2pm https://t.co/IOTCRImQCV +06/18/2018,Economists,@bill_easterly,"Debate on whether free markets are the best way to end global poverty, Aug 27 in NYC https://t.co/vd57uBE17N" +06/18/2018,Economists,@bill_easterly,"RT @TheSohoForum: Monday, August 27th, @TheSohoForum/@reason new event featuring @bill_easterly & @JosephEStiglitz discussing ""Is the best…" +06/14/2018,Economists,@bill_easterly,Congrats to Mari Kuraishi @mashenka for completing her wildly successful stewardship of Global Giving @GlobalGiving https://t.co/uCoGU5FyRi +06/12/2018,Economists,@bill_easterly,"RT @gladstein: Yes, Putin’s regime is making great progress on the Sustainable Development Goals. As measured by his own statisticians! htt…" +06/12/2018,Economists,@bill_easterly,RT @DennisWhittle: Do you know the next CEO of @GlobalGiving? https://t.co/TCNsomL5bS +06/10/2018,Economists,@bill_easterly,RT @bill_easterly: Spontaneous individualist farm 2016 vs. Planned collective farm 2018 https://t.co/BkzUfZf7mD +06/09/2018,Economists,@bill_easterly,Spontaneous individualist farm 2016 vs. Planned collective farm 2018 https://t.co/BkzUfZf7mD +06/09/2018,Economists,@bill_easterly,Sorry I’m not as influyente as you think Los economistas más influyentes https://t.co/49yILDLdR8 via @elmundoes +06/08/2018,Economists,@bill_easterly,Lions got it right https://t.co/f2XbaywcZQ +06/08/2018,Economists,@bill_easterly,"RT @bill_easterly: Why dictators like the Sustainable Development Goals, by @gladstein and @Smith_JeffreyT https://t.co/Z5Lhq0zNxD via @qz…" +06/07/2018,Economists,@bill_easterly,"Why dictators like the Sustainable Development Goals, by @gladstein and @Smith_JeffreyT https://t.co/Z5Lhq0zNxD via @qzafrica" +06/06/2018,Economists,@bill_easterly,Presenting paper “Shrinking Dictators: How much Economic Growth can we Attribute to National Leaders?” at World Ban… https://t.co/JOzTQN1ttu +06/06/2018,Economists,@bill_easterly,"@jodiecongirl Apologies, didn't know there was supposed to be a point" +06/06/2018,Economists,@bill_easterly,Bayesian updating based on appearance https://t.co/NO7VSQG1Q4 +06/06/2018,Economists,@bill_easterly,RT @FeedbackLabs: “There are so many bad ideas in philanthropy. Listening to beneficiaries is not one of them.” - Larry Kramer #FeedbackEmp… +06/06/2018,Economists,@bill_easterly,"RT @4SharedInsight: We all know it's true: ""Closing loops is not a spectator sport."" So jump in @FeedbackLabs. Go to https://t.co/nBysuE1uc…" +06/04/2018,Economists,@bill_easterly,RT @bill_easterly: Does this apply to RCTs in the field also? https://t.co/H76LqZVXgn https://t.co/iL7jri44AH +06/02/2018,Economists,@bill_easterly,Does this apply to RCTs in the field also? https://t.co/H76LqZVXgn https://t.co/iL7jri44AH +06/02/2018,Economists,@bill_easterly,RT @bill_easterly: Biggest development tragedy in the world right now https://t.co/2pHO8tfACI +06/01/2018,Economists,@bill_easterly,Biggest development tragedy in the world right now https://t.co/2pHO8tfACI +06/01/2018,Economists,@bill_easterly,Should really be done more often https://t.co/QRW3PMA718 +05/31/2018,Economists,@bill_easterly,RT @bill_easterly: It seems strange that I can't find a political party or leader who matches my ideals. https://t.co/WCCnUgfeDD +05/30/2018,Economists,@bill_easterly,RT @TanjuYurukoglu: @bill_easterly If you reverse the columns. it is much easier to find them around the globe. +05/30/2018,Economists,@bill_easterly,It seems strange that I can't find a political party or leader who matches my ideals. https://t.co/WCCnUgfeDD +05/30/2018,Economists,@bill_easterly,"RT @hamandcheese: ""In our new study, we left a treatment group of journalists unattended in a room with a provocative yet N=28 social psyc…" +05/29/2018,Economists,@bill_easterly,Best quote from an RBG legal brief in this great movie: “A person born female continues to be branded inferior for… https://t.co/Bn0gw77fGr +05/29/2018,Economists,@bill_easterly,"The previous generation won WWII and produced a half-century of prosperity, while ""the chief accomplishment of the… https://t.co/os6LUnTkyz" +05/25/2018,Economists,@bill_easterly,"RT @bill_easterly: Official IRS rule to claim your child as a dependent on your tax return: ""the child must be younger than you.""" +05/25/2018,Economists,@bill_easterly,"RT @PJakiela: A student once asked why shocks are mean zero. I laughed at the time, but now I think of it every long weekend, when I’m curs…" +05/24/2018,Economists,@bill_easterly,"Official IRS rule to claim your child as a dependent on your tax return: ""the child must be younger than you.""" +05/22/2018,Economists,@bill_easterly,"RT @bill_easterly: Just met Eskinder Nega, courageous democracy activist and political prisoner in Ethiopia, just released from jail. He to…" +05/21/2018,Economists,@bill_easterly,"Just met Eskinder Nega, courageous democracy activist and political prisoner in Ethiopia, just released from jail.… https://t.co/e11RQ7MsX2" +05/18/2018,Economists,@bill_easterly,RT @UCSC_GradDiv: The Good Neighbor: Addressing Global Poverty in an Age of Xenophobia with William Easterly https://t.co/9vdTKEI2XA @bill_… +05/18/2018,Economists,@bill_easterly,This 2014 effort by African musicians is being activated again for new Ebola outbreak; such a refreshing alternativ… https://t.co/jTOJZ2kn2R +05/16/2018,Economists,@bill_easterly,"Benjamin Franklin on German immigration in 1753: ""Those who come hither are the most stupid of their own nation."" M… https://t.co/TAAOmqzYHG" +05/11/2018,Economists,@bill_easterly,"RT @bill_easterly: Economists abandoned the discussion of big ideas, so now we are missing in action on the crisis of Enlightenment Values…" +05/10/2018,Economists,@bill_easterly,"Economists abandoned the discussion of big ideas, so now we are missing in action on the crisis of Enlightenment Va… https://t.co/G2uPHymtbW" +05/09/2018,Economists,@bill_easterly,"RT @bill_easterly: Hotel: ""sorry, the group rate does not apply the first night of your stay."" +Me: ""OK, what is the difference?"" +Hotel: ""…" +05/08/2018,Economists,@bill_easterly,"Hotel: ""sorry, the group rate does not apply the first night of your stay."" +Me: ""OK, what is the difference?"" +Hot… https://t.co/Tk1mopD0Hc" +05/08/2018,Economists,@bill_easterly,RT @bill_easterly: Congratulations to Penny Goldberg for her appointment as the World Bank's new Chief Economist https://t.co/tQLeJyAAvZ +05/07/2018,Economists,@bill_easterly,Congratulations to Penny Goldberg for her appointment as the World Bank's new Chief Economist https://t.co/tQLeJyAAvZ +05/07/2018,Economists,@bill_easterly,This is bad. Now waiting for the exposé of the pro-aid bias of many foundations financing economic development. https://t.co/oQvo8WWOpi +05/07/2018,Economists,@bill_easterly,"RT @kuangalia_tw: @bill_easterly, The Tyranny of Experts, 2013. +#memento https://t.co/gWPaV4CH2s" +05/06/2018,Economists,@bill_easterly,Effective aid could be as simple as a pair of glasses https://t.co/PJj4QWuL4n +05/05/2018,Economists,@bill_easterly,@JVWoodster Which textbook? +05/04/2018,Economists,@bill_easterly,Friends don't let friends...have a different educational level. From @UpshotNYT https://t.co/YTBdfOr7Cp +05/02/2018,Economists,@bill_easterly,RT @bill_easterly: It should not be only the Right who memorializes a Victims of Communism Day on May 1; Communist regimes killed over 80 m… +05/01/2018,Economists,@bill_easterly,It should not be only the Right who memorializes a Victims of Communism Day on May 1; Communist regimes killed over… https://t.co/E3zgxroLSS +05/01/2018,Economists,@bill_easterly,"RT @bill_easterly: On the movement to ban all-male panels (""manels"") -- why not ban panels altogether? They are most boring format ever, an…" +04/30/2018,Economists,@bill_easterly,"Had to look up JEL codes for economics sub-fields, and realized again that most of the work that I like, or have do… https://t.co/55UT3p92Mf" +04/30/2018,Economists,@bill_easterly,"@_alice_evans Pick a smaller # of speakers that are worth listening to for solo talks, and have lots of Q and A after each." +04/30/2018,Economists,@bill_easterly,"On the movement to ban all-male panels (""manels"") -- why not ban panels altogether? They are most boring format eve… https://t.co/RCteoS4z8V" +04/27/2018,Economists,@bill_easterly,"RT @bill_easterly: Q: What have you done that is most unusual, that most other economists have not done? +A: Have actually read all of The…" +04/26/2018,Economists,@bill_easterly,"Q: What have you done that is most unusual, that most other economists have not done? +A: Have actually read all of… https://t.co/8CWeYBZFJq" +04/26/2018,Economists,@bill_easterly,"RT @nortonnole: Students loved the discussion of how models can mislead, of which I drew heavily on lessons I learned from @bill_easterly a…" +04/26/2018,Economists,@bill_easterly,Happy news of the day: distributing routine antibiotics to infants in Africa would cut their currently high death r… https://t.co/EPKFBkL0mI +04/25/2018,Economists,@bill_easterly,"RT @bill_easterly: Sadly, every new generation of aid critics has to fight all over again the battle against Used Shoes Aid HT @kcroninfurm…" +04/24/2018,Economists,@bill_easterly,"Sadly, every new generation of aid critics has to fight all over again the battle against Used Shoes Aid HT… https://t.co/0G03QsjVZ8" +04/24/2018,Economists,@bill_easterly,The Sackler family as owner of Purdue Pharma was implicated in the US opioid epidemic. They are now trying to sprea… https://t.co/QM0H8K9tNF +04/23/2018,Economists,@bill_easterly,RT @bill_easterly: U.S. escalating its secret war in West Africa https://t.co/WnW1dC3Mtx +04/22/2018,Economists,@bill_easterly,U.S. escalating its secret war in West Africa https://t.co/WnW1dC3Mtx +04/20/2018,Economists,@bill_easterly,"RT @bill_easterly: 17 years of emphasis on Failed States has produced more Failed States, which then leads to yet further emphasis on Faile…" +04/19/2018,Economists,@bill_easterly,"17 years of emphasis on Failed States has produced more Failed States, which then leads to yet further emphasis on… https://t.co/rBAvNP4lCg" +04/18/2018,Economists,@bill_easterly,"Facebook removed this post by me because it ""went against community standards."" Anybody have any idea why? https://t.co/GvKUvu7HUl" +04/17/2018,Economists,@bill_easterly,"When I started writing OpEds 25 years ago, ""correlation"" was too difficult a concept to describe. Glad to have live… https://t.co/uUtEILcmhv" +04/17/2018,Economists,@bill_easterly,RT @MaxCRoser: Just saw that ‘Factfulness' is on the very top of the bestseller list on Amazon. Very well deserved! Great that so many are… +04/16/2018,Economists,@bill_easterly,RT @bill_easterly: “Sometimes the best foreign policy option is to do nothing” I get vilified whenever I make this argument https://t.co/rT… +04/15/2018,Economists,@bill_easterly,It’s up to Ghanaians if they want to spend money on a cathedral rather than mosquito nets https://t.co/NlzeHOdnXM +04/14/2018,Economists,@bill_easterly,"RT @MaxCRoser: 2.5% of global deaths are caused by intentional injuries (suicide, homicide, war, terrorism). + +3% are caused by diarrhea. + +O…" +04/14/2018,Economists,@bill_easterly,“Sometimes the best foreign policy option is to do nothing” I get vilified whenever I make this argument https://t.co/rT4GRbbZ5s +04/11/2018,Economists,@bill_easterly,"In contrast, if the election had gone the other way today's headline would have been ""President appoints task force… https://t.co/7r3y2FcJGC" +04/11/2018,Economists,@bill_easterly,RT @DennisWhittle: #Feedback is critical to effective civic engagement. Learn more about the importance of feedback in new #ListeningtoIncl… +04/10/2018,Economists,@bill_easterly,"RT @bill_easterly: Not been active on Twitter recently; Sometimes I prefer to work instead towards a Tweet of 500,000 characters called a b…" +04/09/2018,Economists,@bill_easterly,"Not been active on Twitter recently; Sometimes I prefer to work instead towards a Tweet of 500,000 characters called a book." +04/09/2018,Economists,@bill_easterly,"RT @bonjaymusic: This quote wasn’t the inspiration for “Chelsea.” But it’s kin to the ideas within 🤔 + +- @bill_easterly https://t.co/WgOW2Zq…" +04/07/2018,Economists,@bill_easterly,RT @bill_easterly: Foreign Aid raises Economic Growth https://t.co/R2fs9Z5m2e +04/06/2018,Economists,@bill_easterly,"""He or she who votes against the rights of another, whatever may be his or her religion, color, or sex, has by that… https://t.co/j4ZGXVzGmn" +04/05/2018,Economists,@bill_easterly,"One of the authors wrote to emphasize growth effect is only short-term, their paper “does not contradict any view… https://t.co/J0YhPtyLKq" +04/05/2018,Economists,@bill_easterly,"Wind chill formula has an irrational discontinuity of zero wind chill above 40, so it predicts rise of 2 degrees wi… https://t.co/VY0MpBpUFe" +04/04/2018,Economists,@bill_easterly,"Aren't we all obligated to acknowledge refereed publications that go against our own beliefs, without automatically… https://t.co/pyFrMahyXJ" +04/04/2018,Economists,@bill_easterly,Foreign Aid raises Economic Growth https://t.co/R2fs9Z5m2e +04/04/2018,Economists,@bill_easterly,"RT @bill_easterly: 1953 comment on US immigration law: ""It is absurd to think that we can retain our position as the world leader in the fi…" +04/04/2018,Economists,@bill_easterly,"RT @bill_easterly: On the 50th anniversary of Martin Luther King's assassination, his last speech is more moving and relevant than ever htt…" +04/03/2018,Economists,@bill_easterly,The world's culturally most diverse countries (darker color = more diversity). Not correlated with ethnic diversity… https://t.co/gfYYT9wowU +04/03/2018,Economists,@bill_easterly,"On the 50th anniversary of Martin Luther King's assassination, his last speech is more moving and relevant than ever https://t.co/TVGbSwkJH4" +04/03/2018,Economists,@bill_easterly,"1953 comment on US immigration law: ""It is absurd to think that we can retain our position as the world leader in t… https://t.co/xd92Asrsok" +04/02/2018,Economists,@bill_easterly,RT @bill_easterly: Happy April 1 https://t.co/nH73KGRHlh +04/02/2018,Economists,@bill_easterly,"Population growth is a unique variable in development debates-- it's bad when it goes up, and it's bad when it goes… https://t.co/hINFA9z4Em" +04/01/2018,Economists,@bill_easterly,Happy April 1 https://t.co/nH73KGRHlh +04/01/2018,Economists,@bill_easterly,Both Passover and Easter celebrate hope for seemingly hopeless causes +04/01/2018,Economists,@bill_easterly,"RT @MaxCRoser: The poorest countries in the world emit around 0.1 tonnes of CO₂ per person in one year. + + – France emits 50-times more per…" +03/31/2018,Economists,@bill_easterly,"RT @bill_easterly: Nonwhites outside their home country are called Immigrants, while whites outside their home country are called Expats ht…" +03/30/2018,Economists,@bill_easterly,"Nonwhites outside their home country are called Immigrants, while whites outside their home country are called Expa… https://t.co/AXwp9baHh8" +03/30/2018,Economists,@bill_easterly,"RT @Undercoverhist: Most Econ Nobel belong to the same family-tree, which harks back to a now forgotten figure, Karl Knies (trained Böhm-Ba…" +03/30/2018,Economists,@bill_easterly,RT @bill_easterly: Cartoon version of The White Man's Burden HT @adamgmartin https://t.co/nlNsRBBTC6 +03/29/2018,Economists,@bill_easterly,Cartoon version of The White Man's Burden HT @adamgmartin https://t.co/nlNsRBBTC6 +03/29/2018,Economists,@bill_easterly,"RT @bill_easterly: Have a new paper that asks ""did the Washington Consensus work after all?"" https://t.co/U6a1EolW9F" +03/28/2018,Economists,@bill_easterly,"Have a new paper that asks ""did the Washington Consensus work after all?"" https://t.co/U6a1EolW9F" +03/28/2018,Economists,@bill_easterly,RT @bill_easterly: In praise of big picture development: welfare gains from either migration or growth episodes are vastly larger than thos… +03/27/2018,Economists,@bill_easterly,In praise of big picture development: welfare gains from either migration or growth episodes are vastly larger than… https://t.co/dHqHhnhy4B +03/27/2018,Economists,@bill_easterly,Animal globalization. HT @MaxCRoser https://t.co/DutvUCZOZT +03/27/2018,Economists,@bill_easterly,RT @bill_easterly: Abraham Lincoln on anti-immigrant advocacy in 1855 https://t.co/zNv2Yawrif +03/26/2018,Economists,@bill_easterly,Abraham Lincoln on anti-immigrant advocacy in 1855 https://t.co/zNv2Yawrif +03/25/2018,Economists,@bill_easterly,RT @RichardWellings: Police dressed in riot gear strike demonstrators with batons as Catalans protest against the detention of exiled forme… +03/25/2018,Economists,@bill_easterly,"Economists have creative agony too, but we can’t usually hope for an outcome as sublime as Turandot https://t.co/PRQdT6UBwY" +03/25/2018,Economists,@bill_easterly,https://t.co/nJDMJodRfr +03/23/2018,Economists,@bill_easterly,American troops are more involved in Africa than most people realize https://t.co/rIROmjbFqY +03/22/2018,Economists,@bill_easterly,"Maybe the US men's soccer team should boycott the 2018 World Cup in Russia ... oh, wait https://t.co/CvwekaZLKO" +03/22/2018,Economists,@bill_easterly,RT @bill_easterly: Current projections are that the world will miss the 1st Sustainable Development Goal of ending extreme poverty by 2030;… +03/22/2018,Economists,@bill_easterly,RT @bill_easterly: The secret to development is coffee https://t.co/jLONZ2SDPZ +03/21/2018,Economists,@bill_easterly,The secret to development is coffee https://t.co/jLONZ2SDPZ +03/21/2018,Economists,@bill_easterly,Current projections are that the world will miss the 1st Sustainable Development Goal of ending extreme poverty by… https://t.co/yPr6En9Io8 +03/21/2018,Economists,@bill_easterly,RT @bill_easterly: Ancient migrations: everybody everywhere is really from somewhere else https://t.co/xvpT3V1bEC +03/20/2018,Economists,@bill_easterly,"Had interesting talk with Micaela Sviatschi, whose research shows that past US deportations to El Salvador helped l… https://t.co/FfVFTnvvx5" +03/20/2018,Economists,@bill_easterly,Ancient migrations: everybody everywhere is really from somewhere else https://t.co/xvpT3V1bEC +03/20/2018,Economists,@bill_easterly,RT @jhaushofer: @DinaPomeranz @eortizospina @seema_econ @simonrquinn @tukopamoja @_alice_evans For an undergrad intro class probably some c… +03/19/2018,Economists,@bill_easterly,RT @bill_easterly: Development is working. https://t.co/cyR8RZgi8p +03/19/2018,Economists,@bill_easterly,Nice when a release of an academic paper by economists becomes front-page news https://t.co/1Dw4R1vErB via @UpshotNYT +03/18/2018,Economists,@bill_easterly,"RT @bill_easterly: My grandmother's grandfather fled the Irish potato famine to the US in 1848. Thank you, 1848 America, for not turning aw…" +03/17/2018,Economists,@bill_easterly,"My grandmother's grandfather fled the Irish potato famine to the US in 1848. Thank you, 1848 America, for not turning away refugees." +03/17/2018,Economists,@bill_easterly,Irish-Americans are a success story of development through migration. Happy #StPatricksDay https://t.co/Iu25GFJY6p +03/16/2018,Economists,@bill_easterly,"RT @m_clem: Accepted for publication today in REStat @mitpress: +""The Place Premium: Bounding the Price Equivalent of Migration Barriers"" +M…" +03/16/2018,Economists,@bill_easterly,RT @yannick___m: Pick your fighter. @bill_easterly @RadioFreeTom https://t.co/xQOkZfJEqe +03/16/2018,Economists,@bill_easterly,"RT @g_atiim: ""The sleight of hand that focuses attention on technical solutions while covering up violations of the rights of real people i…" +03/15/2018,Economists,@bill_easterly,"RT @_alice_evans: @bill_easterly Hm, yes. Do you mean in terms of venerating an established, narrow group as the best, & staying in that sa…" +03/15/2018,Economists,@bill_easterly,"Speaking as an alleged top 10 development thinker, the whole idea of top thinkers is misguided https://t.co/wwNuLZmQUG" +03/14/2018,Economists,@bill_easterly,Will be remembered as a cautionary tale for all time that you don't win elections by insulting the voters https://t.co/8XOAucooWS +03/14/2018,Economists,@bill_easterly,You are a true nerd like me if you are more excited today about Pi Day than about the upcoming St. Patrick's Day. https://t.co/8YYccs3hpJ +03/13/2018,Economists,@bill_easterly,Development is working. https://t.co/cyR8RZgi8p +03/13/2018,Economists,@bill_easterly,"RT @bill_easterly: Tragedy in the Horn of Africa: ""650,000 children under age 5 across vast stretches of Kenya, Somalia and Ethiopia are se…" +03/12/2018,Economists,@bill_easterly,"New book by @nntaleb, ""Skin in the Game,"" debuts at # 2 on The New York Times Best Sellers list https://t.co/0dRbZ53Udl" +03/12/2018,Economists,@bill_easterly,"Tragedy in the Horn of Africa: ""650,000 children under age 5 across vast stretches of Kenya, Somalia and Ethiopia a… https://t.co/u6zJdps6H9" +03/12/2018,Economists,@bill_easterly,RT @bill_easterly: False stories get more RTs on Twitter than true stories. This story is true. https://t.co/j8M8U8cPnn +03/11/2018,Economists,@bill_easterly,Smug liberals are not helping our political polarization https://t.co/cBqHXBdVnV https://t.co/hbRWvirdRN +03/11/2018,Economists,@bill_easterly,"RT @bill_easterly: Borges story on ""a Map of the Empire whose size was that of the Empire, and +which coincided point for point with it"" ill…" +03/11/2018,Economists,@bill_easterly,False stories get more RTs on Twitter than true stories. This story is true. https://t.co/j8M8U8cPnn +03/10/2018,Economists,@bill_easterly,"RT @bill_easterly: Does margarine lead to divorce? Some correlations could possibly be spurious, suggests @TylerVigen HT @DennisWhittle htt…" +03/10/2018,Economists,@bill_easterly,RT @m_clem: Third-world strongman farce in downtown Washington. https://t.co/9W5ZwGUCek +03/09/2018,Economists,@bill_easterly,"RT @bill_easterly: A century ago, women couldn't even vote. A lot of progress since then worldwide to celebrate for #InternationalWomensDay…" +03/09/2018,Economists,@bill_easterly,"Does margarine lead to divorce? Some correlations could possibly be spurious, suggests @TylerVigen HT… https://t.co/dsvZYo6Dpp" +03/08/2018,Economists,@bill_easterly,"A century ago, women couldn't even vote. A lot of progress since then worldwide to celebrate for… https://t.co/FUFkHkX3Gt" +03/07/2018,Economists,@bill_easterly,"RT @NYU_DRI: NYU DRI Presentation by Lant Pritchett: ""The Debate about RCTs in Development is over. We won. They lost."" Watch here - https:…" +03/07/2018,Economists,@bill_easterly,"Borges story on ""a Map of the Empire whose size was that of the Empire, and +which coincided point for point with it… https://t.co/kGF38zZN2y" +03/07/2018,Economists,@bill_easterly,"RT @m_clem: “Migration is a positive side effect of development, and aid should not be spent in pursuit of keeping people where they are. D…" +03/07/2018,Economists,@bill_easterly,"NYU DRI Presentation by Lant Pritchett: ""The Debate about RCTs in Development is over. We won. They lost."" https://t.co/gl0rWetijN" +03/05/2018,Economists,@bill_easterly,RT @bill_easterly: The best promo line for Hollywood movies might be — will be our only remaining export after the Trade War is over. +03/05/2018,Economists,@bill_easterly,"RT @MaxCRoser: Who's talking in the Oscar-winning movies? + +[via the BBC https://t.co/NWoK3mGzzf] https://t.co/Rd6MKnypGz" +03/05/2018,Economists,@bill_easterly,The best promo line for Hollywood movies might be — will be our only remaining export after the Trade War is over. +03/05/2018,Economists,@bill_easterly,"Eva Marie Saint is from my alma mater and hometown Bowling Green State University, you rock!" +03/05/2018,Economists,@bill_easterly,RT @bill_easterly: The Market-Based Academy Award goes to...Wonder Woman. Why do the Oscars scorn the favorably-reviewed pictures that sol… +03/04/2018,Economists,@bill_easterly,"RT @CelestinMonga: Here is a misleading index on #passport rankings https://t.co/TMpSbxbnKs +I stay away from countries that despise my bea…" +03/04/2018,Economists,@bill_easterly,"RT @bill_easterly: Angus Deaton strikes the right balance: ""Seeing the past as unbroken progress breeds a foolish and false optimism, not t…" +03/03/2018,Economists,@bill_easterly,"Angus Deaton strikes the right balance: ""Seeing the past as unbroken progress breeds a foolish and false optimism,… https://t.co/xMrNC99XOI" +03/03/2018,Economists,@bill_easterly,"RT @bill_easterly: Justification for new tariffs: “We must not let our country, companies and workers be taken advantage of any longer."" Ec…" +03/03/2018,Economists,@bill_easterly,"RT @orianabandiera: The sign on my door says “Director”, which passers-by often read as “she who gives directions”.. to the bathrooms, con…" +03/03/2018,Economists,@bill_easterly,RT @JDVance1: Ok this is funny https://t.co/9eRuJihGWu +03/02/2018,Economists,@bill_easterly,"Justification for new tariffs: “We must not let our country, companies and workers be taken advantage of any longer… https://t.co/xD2W7FbQEZ" +03/02/2018,Economists,@bill_easterly,The Market-Based Academy Award goes to...Wonder Woman. Why do the Oscars scorn the favorably-reviewed pictures tha… https://t.co/XpgfKs80hV +03/01/2018,Economists,@bill_easterly,RT @simongerman600: The best general #career advice I can come up with is to get educated. #Education pays off. The higher your degree the… +02/28/2018,Economists,@bill_easterly,"Problems I never expected to see: that the Ohio Bureau of Motor Vehicles is too efficient, didn't make us wait long… https://t.co/1dqolSPP3m" +02/28/2018,Economists,@bill_easterly,RT @bill_easterly: Steven Pinker recommends other books like his that give an optimistic view of human progress @CharlesJKenny https://t.co… +02/27/2018,Economists,@bill_easterly,Steven Pinker recommends other books like his that give an optimistic view of human progress @CharlesJKenny https://t.co/pXd0jAFTHb +02/27/2018,Economists,@bill_easterly,"RT @JeffBloem: ""Sinning in the Basement: What are the Rules? The Ten Commandments of Applied Econometrics"" https://t.co/ZnZMn7t7dW ht @caus…" +06/29/2018,Economists,@AllisonSchrager,"RT @NewBlackMan: The modern education system was designed to train future factory workers to be ""docile"" | @AllisonSchrager https://t.co/DN…" +06/29/2018,Economists,@AllisonSchrager,"The modern education system was designed to train future factory workers to be ""docile."" what do they need to be no… https://t.co/QartW92T0f" +06/29/2018,Economists,@AllisonSchrager,"RT @MarkusEconomist: How to regulate Tech Giants: +Interview by @JeanTirole (Nobel prize winner 2014) +https://t.co/X16ByKxzWh via @qz" +06/28/2018,Economists,@AllisonSchrager,"RT @stephenhuppert: Lessons from the Australian #RetirementIncome System: + +[1] how to do accumulation well +[2] how to do decumulation poor…" +06/27/2018,Economists,@AllisonSchrager,RT @AbhinayMuthoo: Full of insights on the #techgiants - good piece @AllisonSchrager @JeanTirole is up there amongst the very best of econo… +06/27/2018,Economists,@AllisonSchrager,"RT @MxSba: ""We should err on the side of competition, while recognizing that we will make mistakes in the process"": great @JeanTirole inter…" +06/27/2018,Economists,@AllisonSchrager,"RT @DStallibrass: Good interview with a great economist. + +What does he want? Moderate change. + +When does he want it? In due course, after…" +06/27/2018,Economists,@AllisonSchrager,RT @amcafee: This is (no surprise) excellent. https://t.co/SyrW4UInD9 +06/27/2018,Economists,@AllisonSchrager,"I love this because Tirole does something few people can, he tells you how to think, not what to think. we need mor… https://t.co/bgApty8gWu" +06/27/2018,Economists,@AllisonSchrager,"RT @dkopf: Read this terrific and wonky interview @AllisonSchrager did with the great @JeanTirole +https://t.co/9K39wRzzuY https://t.co/6CZ…" +06/27/2018,Economists,@AllisonSchrager,I asked Jean Tirole every you could want to know about regulating tech--no better source https://t.co/MkhhHhyODS via @qz +06/26/2018,Economists,@AllisonSchrager,RT @PaceSociety: The problem is that #sexwork laws prioritize ideology over actual evidence & exclude persons with lived experience. Sex Wo… +06/20/2018,Economists,@AllisonSchrager,"RT @katherineefoley: I asked, and @AllisonSchrager answered! DC just voted in favor of #VoteYesOn77 https://t.co/HHO5ZEnnlU" +06/20/2018,Economists,@AllisonSchrager,"RT @acrossthecurve: Despite a booming economy, nearly one in four Americans report have no emergency savings https://t.co/NHD0QQ1zgQ via @b…" +06/19/2018,Economists,@AllisonSchrager,@leifpagrotsky @qz Everyone. But only seems to apply to Swedes. +06/18/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/L6LyW7bB6u +06/17/2018,Economists,@AllisonSchrager,RT @kkharris33: I find this absolutely fascinating. https://t.co/PcPHXQuppU +06/16/2018,Economists,@AllisonSchrager,RT @qz: How Swedes beat the curse of winning the lottery https://t.co/DzPv8hkG3R +06/14/2018,Economists,@AllisonSchrager,RT @ReformedBroker: What Are Your Thoughts: Do You Feel Safe Now? https://t.co/mqePe2CZJ0 +06/13/2018,Economists,@AllisonSchrager,@ReformedBroker thanks for having me on!!! +06/13/2018,Economists,@AllisonSchrager,"RT @ReformedBroker: What Are Your Thoughts??? + +with special guest star @AllisonSchrager ! + +https://t.co/Om2NywkSbJ" +06/08/2018,Economists,@AllisonSchrager,RT @qz: How Swedes beat the curse of winning the lottery https://t.co/G4EQMPRNLR +06/08/2018,Economists,@AllisonSchrager,RT @JoshZumbrun: @biggsag @AllisonSchrager @M_C_Klein @Biggs interesting how the same fiscal challenge can then be thought of as either 1)… +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein @biggsag don't think do because welfare is contingent on some event happening, it is more l… https://t.co/HwjzW1uHkQ" +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein @biggsag @biggs may have done networth for retirees, CBO has done transfers and inequality… https://t.co/iHw1Lk1gVY" +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein that is what @biggsag keeps arguing. +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein just because pensions aren't counted as debt, doesn't mean they are treated any different.… https://t.co/ptxatWWWeG" +06/08/2018,Economists,@AllisonSchrager,@M_C_Klein @JoshZumbrun legally you can cut social security benefits. often not true for DB benefits. it is a divis… https://t.co/tR0MqGe5Hg +06/08/2018,Economists,@AllisonSchrager,"@M_C_Klein @JoshZumbrun technically it is a stream of income paid in the future, same as a coupon bond." +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein so this is the hot question for us pension geeks. What makes pensions different from other… https://t.co/2pq8QhyIsn +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein maybe some default (on higher earners) is necessary and desirable. sometimes a structured d… https://t.co/kl2K5v4Nj0 +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein my quibble is with the language. if you only pay back part of your debt, to a creditor or p… https://t.co/n3UhyR2Fms" +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun cutting benefits 25%, that's a lot for elderly people on a fixed income." +06/08/2018,Economists,@AllisonSchrager,"failing to make a full debt payment counts as a default +https://t.co/OEi0APcUYb" +06/07/2018,Economists,@AllisonSchrager,@bencasselman an increase since 2016 +06/07/2018,Economists,@AllisonSchrager,"@bencasselman Fed survey found increase in gig work, mostly from supplemental employment +https://t.co/9zfDooMnIv" +06/07/2018,Economists,@AllisonSchrager,How Swedes beat the curse of winning the lottery https://t.co/w1KRzUcThw via @qz +06/06/2018,Economists,@AllisonSchrager,@karol it's nothing a 12.6% marginal tax rate increase can't fix (actually no it doesn't---but we might get lucky a… https://t.co/Mzpp2lvJyw +06/05/2018,Economists,@AllisonSchrager,"RT @biggsag: ""Don't raise teacher pay; reform it."" In @NRO. https://t.co/GMww2XDWak Highlights below!" +06/04/2018,Economists,@AllisonSchrager,how would this work? Is this actually a wealth tax? is it only on wealth held in NY banks or will NY require the IR… https://t.co/5T2XdOU8r5 +06/04/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/aMYTEffhzL +06/03/2018,Economists,@AllisonSchrager,@jodiecongirl and often comes down to random luck +06/03/2018,Economists,@AllisonSchrager,"@jodiecongirl By this logic, his understanding of medicine is useless if he does not live to 117" +05/31/2018,Economists,@AllisonSchrager,"RT @OK_Wiafe: Prof Robert C. Merton, Nobel laureate, speaking on what makes a good retirement goal at #CSRI2018 @Canberra https://t.co/naTl…" +05/29/2018,Economists,@AllisonSchrager,"RT @PennyWriter: ""The increase in the average retirement age has been driven almost solely by those with more education."" https://t.co/PZjt…" +05/29/2018,Economists,@AllisonSchrager,RT @FutureForumFndn: Some optimism to start the week! What do you think about this take from @AllisonSchrager in @Qz? https://t.co/t5WsRv7y… +05/29/2018,Economists,@AllisonSchrager,"@radiosmith If I were on the commission, I'd remind people higher returns come with more risk. #supperannuation… https://t.co/IWdHj78dDA" +05/28/2018,Economists,@AllisonSchrager,"RT @pancheetah: Look who else is investing in college education for millennials-> +https://t.co/csCiLFInnu +Other states are considering simi…" +05/27/2018,Economists,@AllisonSchrager,"RT @djmont: Interesting piece by @AllisonSchrager. Nice to see that not all the news for Millennials is bad. And in much of the country, ho…" +05/26/2018,Economists,@AllisonSchrager,human capital is often a better bet https://t.co/jXjzeucmVO +05/26/2018,Economists,@AllisonSchrager,sensing a media bias toward investment in real estate instead of human capital https://t.co/7w0SK2n2vx +05/25/2018,Economists,@AllisonSchrager,RT @EdmundPhelps: @LHSummers Delighted to see your embrace of the philosophy of employment subsidies--the centrality of work and self sufic… +05/25/2018,Economists,@AllisonSchrager,"@JHWeissmann @ComfortablySmug @M_C_Klein @calebwatney @TheStalwart sounds like an argument for Efficient Markets, t… https://t.co/lEcepZMSRN" +05/25/2018,Economists,@AllisonSchrager,Millennials bet on more education instead of homeownership. That might work out. https://t.co/qOuN5nc2QG via @qz +05/24/2018,Economists,@AllisonSchrager,"RT @DahrendorfForum: ""There are two things french politicians are afraid of: railway reform and pension reform"" -@pisaniferry #LSEFrance ht…" +05/24/2018,Economists,@AllisonSchrager,"@wwwojtekk @JashClark @snaidunl ERISA killed DB plans, freed the job lock." +05/21/2018,Economists,@AllisonSchrager,"@biggsag @goffmania @greenhousenyt @voxdotcom and their market value has increased, because they are risk-free assets." +05/21/2018,Economists,@AllisonSchrager,"RT @TheStalwart: ""I may be one of the few people left who believes in the natural unemployment rate."" https://t.co/hVhsym89kL" +05/21/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/QybJ7MpvkJ +05/20/2018,Economists,@AllisonSchrager,"Never thought I'd agree this much with Paul Krugman +https://t.co/HqJWFK0X5R" +05/19/2018,Economists,@AllisonSchrager,RT @uxed: Brilliant! This so makes sense. I love the allegory of a mature woman keeping it all together. So many words associated with wome… +05/19/2018,Economists,@AllisonSchrager,"Tom Wolfe wrote the book on craven, elitist thought leaders in the age of rising inequality https://t.co/NGw0BOhq7J via @qz" +05/19/2018,Economists,@AllisonSchrager,RT @brendanminiter: @tunkuv has an interview w Glenn Hubbard in @WSJ today that’s an important read if you care about those #leftbehind htt… +05/18/2018,Economists,@AllisonSchrager,"RT @causalinf: @AllisonSchrager has written (IMO) a thoughtful article about the ""incel"" community that is similar to what I was trying to…" +05/18/2018,Economists,@AllisonSchrager,RT @delaney: https://t.co/IYxITX9dEH +05/17/2018,Economists,@AllisonSchrager,"RT @biggsag: @greenhousenyt @voxdotcom You just can't think about teacher pay without considering benefits, especially pensions. Since 1975…" +05/16/2018,Economists,@AllisonSchrager,all empiricists face an existential question: what is relevant history to use? It haunts all of us who try to estim… https://t.co/25Bn9OvcbO +05/15/2018,Economists,@AllisonSchrager,@JoshZumbrun Called our downside of hook up culture and craven elitists before we understood how important these tr… https://t.co/o7Jffiv5tB +05/15/2018,Economists,@AllisonSchrager,@JoshZumbrun Was ahead of its time +05/15/2018,Economists,@AllisonSchrager,"RT @lenburman: Dear Seattle, Thank you so much for running this natural experiment, which will provide valuable data about how people respo…" +05/15/2018,Economists,@AllisonSchrager,RT @IQ2US: How will automation impact democracy? Watch live: https://t.co/6pb2ehiyla #IQ2USLive https://t.co/Xh9NCkDni5 +05/14/2018,Economists,@AllisonSchrager,"RT @elerianm: The @WSJ on the ""widest gap between U.S.-German yields in three decades."" + +https://t.co/pEKNVLxpu6 + +#bonds #markets #economy…" +05/14/2018,Economists,@AllisonSchrager,"The Economist argues we need to listen more to women with economics PhDs...hmmmm +https://t.co/DgEDkV2eWU" +05/10/2018,Economists,@AllisonSchrager,"@ChadAldeman @alv9n @voxdotcom @ThadDomina does not include pensions, which are guaranteed. value of risk-free asse… https://t.co/QcNiI8uw5i" +05/10/2018,Economists,@AllisonSchrager,"RT @urbaninstitute: .@AllisonSchrager on ""the strange thing about America’s historically low unemployment rate"": https://t.co/jykOjTixqz ht…" +05/10/2018,Economists,@AllisonSchrager,"Philips curve isn't dead, just misunderstood @EdmundPhelps https://t.co/Oi1eAY2v1k" +05/10/2018,Economists,@AllisonSchrager,RT @BW: Annuities are the fix everyone loves to hate for the $4 trillion retirement savings gap https://t.co/FBdt7nOOEo https://t.co/vaC7ol… +05/10/2018,Economists,@AllisonSchrager,The strange thing about America’s historically low unemployment rate https://t.co/v3H9DEpJcj via @qz +05/09/2018,Economists,@AllisonSchrager,@RonMauKnows try the Economist or Bloomberg +05/09/2018,Economists,@AllisonSchrager,"RT @biggsag: In 2002, 41% of working-age households thought they wouldn't be able to live comfortably in retirement. In 2018, when many of…" +05/09/2018,Economists,@AllisonSchrager,"there is so much evidence to support this, yet I keep seeing arguments that assumes there is no term premium--like… https://t.co/Palaxib9D5" +05/09/2018,Economists,@AllisonSchrager,"RT @dandolfa: This dynamic yield curve shows very clearly how Fed interest rate policy has limited impact on longer term bond yields. +http…" +05/08/2018,Economists,@AllisonSchrager,"RT @ProfJAParker: Argentina is a reminder for the other countries with massive government debts, and questionable institutional quality tha…" +05/08/2018,Economists,@AllisonSchrager,"RT @lisaabramowicz1: Pensions are still expecting 7.25% returns on their investments, despite the fact they've returned 6.5% over the past…" +05/08/2018,Economists,@AllisonSchrager,"RT @tylercowen: When it comes to the Fed and jobs, a bit of agnosticism is in order, https://t.co/lQQ7VLEdMP" +05/07/2018,Economists,@AllisonSchrager,RT @EdmundPhelps: .@paulkrugman @AllisonSchrager My take on the unnatural unemployment rate in @ProSyn: https://t.co/Uf4SCEpyrj +05/07/2018,Economists,@AllisonSchrager,"Also, Ned argues equilibrium is when expectations are met. changes in unemployment come from difference between inf… https://t.co/8AaD1U0KiD" +05/07/2018,Economists,@AllisonSchrager,What's up with the parentheses around @EdmundPhelps. It minimizes his contribution. He did win the prize for this.… https://t.co/2KjnPEd15H +05/07/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/xZoUowSwBf +05/04/2018,Economists,@AllisonSchrager,"RT @qz: The winning horses are running just as fast as they were in the 1950s, completing the 10 furlong (1.25 mi) race at Churchill Downs…" +05/04/2018,Economists,@AllisonSchrager,"Another victory for diplomacy +https://t.co/TcMqB1lSGh" +05/03/2018,Economists,@AllisonSchrager,RT @MonicaLewinsky: blaming the intern is so 1990's. 🙄 https://t.co/6CGPERpNqx +05/03/2018,Economists,@AllisonSchrager,RT @AtlanticMedia: Do you know what an HSA is? @AllisonSchrager via @qz https://t.co/jXy2ZwGkHG +05/01/2018,Economists,@AllisonSchrager,RT @FiveThirtyEight: Snaps to @dkopf at @qz for reminding us that one person can make a huge difference in how we think about and understan… +05/01/2018,Economists,@AllisonSchrager,"RT @UpdatedPriors: This guy definitely doesn't go to the seminars I go to, or read the referee report reports I read. https://t.co/FoowuxbT…" +05/01/2018,Economists,@AllisonSchrager,RT @desaimihira: there are many reasons to expect a more muted investment reaction to the tax cuts @jimtankersley @paulkrugman - the change… +04/30/2018,Economists,@AllisonSchrager,I keep reading in mainstream publications that debt doesn't matter because it can be monetized away. Big divergence… https://t.co/lsoxFFYfK4 +04/28/2018,Economists,@AllisonSchrager,"RT @wwwojtekk: Mainstream weather forecasting is a failure, their models are useless for understanding the real world. +Today, students and …" +04/26/2018,Economists,@AllisonSchrager,@SophiaGrene @JohnRalfe1 years of mismanagement +04/26/2018,Economists,@AllisonSchrager,RT @econbuttonwood: Investors aren't being paid for credit risk on investment-grade bonds. This is from Alex Brazier's (of BoE) speech at L… +04/26/2018,Economists,@AllisonSchrager,@alexandrascaggs and accountability. +04/26/2018,Economists,@AllisonSchrager,"so must states are banking on high returns to pay for pensions (not making contributions), average funding rate is… https://t.co/h3rG1Y41WF" +04/26/2018,Economists,@AllisonSchrager,saying it loud and proud---I believe in EMH. but this story does not seem to know what that means. https://t.co/MOwH4h1Tgs +04/26/2018,Economists,@AllisonSchrager,@De_dicto fascinating! thank you. I can't wait to read it. +04/25/2018,Economists,@AllisonSchrager,RT @wwwojtekk: @kltblom @lenburman @AllisonSchrager Please... Nothing happened that led to it? https://t.co/X3PjCh9QLE +04/25/2018,Economists,@AllisonSchrager,RT @lenburman: Thoughtful thread on practical implementation problems with unconditional job guarantee from @wwwojtekk. https://t.co/SMl7be… +04/24/2018,Economists,@AllisonSchrager,RT @robertshrimsley: @SpiegelPeter @ChrisGiles_ @TowerOfLondon I had a go at the economists reply to the Queen at the time: https://t.co/mp… +04/23/2018,Economists,@AllisonSchrager,Watch the debate: “Bitcoin is more than a bubble and here to stay” https://t.co/pbtV6ENkr6 via @qz +04/23/2018,Economists,@AllisonSchrager,"RT @GBurtless: Why you should not invest a big fraction of your retirement savings in the company you work for: Illustration #4,980,152 fro…" +04/23/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/XnFgsHbaXs +04/21/2018,Economists,@AllisonSchrager,@gilliantett cautions against taking financial advice from teenagers #bitcoin #IQ2USLive +04/21/2018,Economists,@AllisonSchrager,"RT @IQ2US: Is #bitcoin a bubble that will one day burst? Or is it here to stay? Tomorrow, we host a live debate in partnership with @smiths…" +04/20/2018,Economists,@AllisonSchrager,"speaking of mood affiliation...when i was in grad school didn't want to unionize, in part, bc declaring ourselves e… https://t.co/rt9AtRdPDR" +04/20/2018,Economists,@AllisonSchrager,The bond market is sending an ominous signal about economic growth https://t.co/gZ75Knr8uz via @qz +04/20/2018,Economists,@AllisonSchrager,RT @qz: Social Security numbers are unsafe and outdated. So why do Americans use them? https://t.co/klaIKdDDdi +04/19/2018,Economists,@AllisonSchrager,RT @obsidiansec: Does it still make sense to rely on social security numbers in this day and age? Interesting take from @AllisonSchrager vi… +04/18/2018,Economists,@AllisonSchrager,"RT @CruiseLaw: ""The Medallion promises the sort of personalized vacation millennials crave, and what passengers on the Love Boat always som…" +04/18/2018,Economists,@AllisonSchrager,RT @qz: Can Carnival possibly make a cruise with thousands of passengers feel personable? https://t.co/yfrjde7EhB +04/18/2018,Economists,@AllisonSchrager,RT @JoshZumbrun: This chart of global government debt from the IMF is amazing -- 15 years after the financial crisis nations will have made… +04/18/2018,Economists,@AllisonSchrager,"I love this AI story, example of AI enhancing human connections instead of replacing them https://t.co/MPkLz31QIX" +04/16/2018,Economists,@AllisonSchrager,@RichardClarida has rare combination of skills: macro and finance training and market experience and time in government +04/16/2018,Economists,@AllisonSchrager,@TheStalwart he used to compose and play a song at follies night in grad school. it was always great +04/15/2018,Economists,@AllisonSchrager,"RT @PaceSociety: Shutting down websites moves #trafficking into the shadows. After Backpage shut down its adult ads section last year, data…" +04/13/2018,Economists,@AllisonSchrager,"If you have a tax bill from the US government this year, you've won https://t.co/guqSGislPx via @qz" +04/12/2018,Economists,@AllisonSchrager,RT @urbaninstitute: From @AllisonSchrager: The real effects of America’s federal taxes https://t.co/55z1CPumJh https://t.co/DGwvRXtIpm +04/11/2018,Economists,@AllisonSchrager,The real effects of America’s federal taxes https://t.co/0NdUoK6687 via @qz +04/10/2018,Economists,@AllisonSchrager,RT @chicagoboothrev: Why can't we close the gender gap? @ChicagoBooth's Marianne Bertrand and Waverly Deutsch discuss the wage gap and corp… +04/09/2018,Economists,@AllisonSchrager,@dandolfa @GBurtless maybe they just can't afford to fill it. +04/09/2018,Economists,@AllisonSchrager,"RT @GBurtless: Since the start of recovery in 2010, I’ve been asking the question recently posed by Neal Kashkari [see below]. It seems lik…" +04/09/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/MZfv2Zs2ag +04/08/2018,Economists,@AllisonSchrager,RT @qz: Are we in the beginning of a bear market? https://t.co/8rdFBudnRs +04/07/2018,Economists,@AllisonSchrager,Are we in the beginning of a bear market? https://t.co/viphWvw3M9 via @qz +04/06/2018,Economists,@AllisonSchrager,RT @ModeledBehavior: US born economists face more immigrant competition than 416 out of 441 occupations https://t.co/PgpUyGXPtD https://t.c… +04/06/2018,Economists,@AllisonSchrager,RT @johnpaulpagano: Our conspiracist moment. https://t.co/5gs0EWdgIA +04/06/2018,Economists,@AllisonSchrager,"14% of economists think their job is ""socially useless"", compared to 8% of whole population. I wonder if they inter… https://t.co/7aFpX9WT1p" +04/05/2018,Economists,@AllisonSchrager,RT @andreamatranga: @Ms_MathQueen @Noahpinion @qz @AllisonSchrager I know a kid who was told by every math teacher he had in grade school t… +04/05/2018,Economists,@AllisonSchrager,RT @Ms_MathQueen: “We are quick to dismiss students as good or bad at math when it gets hard. But what students really need at that stage i… +04/03/2018,Economists,@AllisonSchrager,@NickTimiraos @M_C_Klein @DavidBeckworth @JoshZumbrun @IrvingSwisher not enough to be the primary financial regulat… https://t.co/TCM2G0Fzcf +04/03/2018,Economists,@AllisonSchrager,@M_C_Klein @DavidBeckworth @NickTimiraos @JoshZumbrun @IrvingSwisher Last NYFed President without market experience… https://t.co/4psKwbECpT +04/03/2018,Economists,@AllisonSchrager,"RT @ChadAldeman: Re the KY teacher strike, there's no ""cut"" in pension benefits. The bill would enroll *new* workers hired in 2019 or later…" +04/03/2018,Economists,@AllisonSchrager,"RT @JanetheActuary: In which, in light of the Kentucky protests, I actuary-splain why public pension funding matters. https://t.co/fygujEr…" +03/30/2018,Economists,@AllisonSchrager,"@StephanieKelton @rseymour @Mauerback @MacroEdge1 sure, this paper totally disproves everything ever published abou… https://t.co/orTf5DxjkV" +03/30/2018,Economists,@AllisonSchrager,@rseymour @StephanieKelton wills pays the bills. here's the problem with her argument. long term rates are market p… https://t.co/jfUD7urVFI +03/30/2018,Economists,@AllisonSchrager,"This is what's wrong with people who say entitlements spending is no problem, committing to large unfunded liabilit… https://t.co/TT5jpjnvMC" +03/30/2018,Economists,@AllisonSchrager,"sad example of why assuming no risk (growth is certain, interest rates will never change) is so dangerous. debt cri… https://t.co/8iZoiyxYpa" +03/29/2018,Economists,@AllisonSchrager,This argument that debt isn't a problem if interest rates never go up is like saying smoking isn't so bad if you do… https://t.co/VxpkLJpS9O +03/29/2018,Economists,@AllisonSchrager,RT @qz: The wage earners who took the biggest hit from NAFTA were not blue-collar men https://t.co/R2lYYGwoXd +03/28/2018,Economists,@AllisonSchrager,Seems like every day I read another story about how economics needs more intellectual diversity. weird. it is one o… https://t.co/usaTSF6ukf +03/27/2018,Economists,@AllisonSchrager,"Japanese pension fund pays managers more if they take extra risk +https://t.co/Tv4REJCvDp" +03/26/2018,Economists,@AllisonSchrager,"RT @JanetheActuary: @GBurtless @AllisonSchrager Sounds fair, then, for pensions to be on the bargaining table as an exchange for higher wag…" +03/26/2018,Economists,@AllisonSchrager,"RT @GBurtless: 2 of 2/ Problem for teachers, even if we accept @AllisonSchrager argument: It’s awfully hard to pay for groceries, mortgage…" +03/26/2018,Economists,@AllisonSchrager,RT @GBurtless: 1 of 2/ Teachers in a number of states furious over sinking real pay. @AllisonSchrager makes interesting point that teachers… +03/26/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/tfm1Tolo0w +03/23/2018,Economists,@AllisonSchrager,HR McMaster's detailed description of battle victory at 73 easting is no longer available https://t.co/2aY1rwCaSR +03/23/2018,Economists,@AllisonSchrager,HR McMaster and Donald Trump: a partnership that was never meant to be https://t.co/5HCP5JVQAX via @qz +03/22/2018,Economists,@AllisonSchrager,RT @cohensetton: just published by Joel Mokyr: The Past and the Future of Innovation: some lessons from Economic History https://t.co/C1Tvr… +03/22/2018,Economists,@AllisonSchrager,"RT @heckmanequation: ""The key to fighting inequality starts with moms…"" via @qz +https://t.co/JNAVXGMB1S" +03/21/2018,Economists,@AllisonSchrager,"@thebrianzeng @tylercowen only if the hike signals a new policy direction, which this does not." +03/21/2018,Economists,@AllisonSchrager,"Unpopular opinion: a .25 rate hike makes very little difference to the macro economy, perhaps some signaling, but that's second order." +03/21/2018,Economists,@AllisonSchrager,The iPhone alone accounts for $15.7 billion of the US trade deficit with China https://t.co/ezlMfue4bG via @qz +03/20/2018,Economists,@AllisonSchrager,"""INNOVATION IS GOOD; financial innovation is bad."" except index funds, interest rate swaps, defaults, options, or a… https://t.co/0GpqJgzJAs" +03/20/2018,Economists,@AllisonSchrager,One of America’s few black CEOs on his journey to lead a $47 billion company https://t.co/3sVlwtisq7 via @qz +03/19/2018,Economists,@AllisonSchrager,RT @JanetheActuary: @SethAMandel I'm told that this wouldn't do the trick - that it has to be law enforcement employment specifically. htt… +03/18/2018,Economists,@AllisonSchrager,A NCAA externality is it shines a light on schools that normally don't get attention they deserve. it transformed t… https://t.co/fXKkIxmquF +03/17/2018,Economists,@AllisonSchrager,@biggsag @JanetheActuary @PensionFacts this one is a howler. https://t.co/IFRprXlfT5 +03/15/2018,Economists,@AllisonSchrager,Strange journalists are actually debating whether education makes you more knowledgable about your subject. Do they… https://t.co/7jfqKHAFgI +03/15/2018,Economists,@AllisonSchrager,"It's happening!! +https://t.co/JEc1tr3THM" +03/14/2018,Economists,@AllisonSchrager,"RT @biggsag: @AllisonSchrager That's a good distinction. NEC runs economic policy, but CEA looks at economic conditions. Both matter, a lot!" +03/14/2018,Economists,@AllisonSchrager,When did head of NEC become the 'top economic advisor'? Didn't it used to be the head CEA? Did this start with Obam… https://t.co/ZTJoGsmTHT +03/14/2018,Economists,@AllisonSchrager,"@ejplantain Hi Emily, can I ask you some questions about horse breeding?" +03/11/2018,Economists,@AllisonSchrager,"RT @dianemulcahy: Fees, it turns out, are the lifeblood of the VC industry, not the blockbuster returns and carry that the traditional VC n…" +03/10/2018,Economists,@AllisonSchrager,"RT @AmirPars_: @afneil I grew up in Sweden and studied the economics of the country, and to call it “socialist” is the biggest myth that ha…" +03/10/2018,Economists,@AllisonSchrager,"In the strange world of point collecting, flying the 1 millionth mile is such a big an achievement people bring the… https://t.co/AtcPlnF6fm" +03/09/2018,Economists,@AllisonSchrager,"This is misleading because it does not include pension benefits. They are risk-free, so more valuable in a low-rate… https://t.co/rzYGJ2hUec" +03/09/2018,Economists,@AllisonSchrager,RT @qz: Florida wants to break with the US on daylight saving time to get more sun https://t.co/Zkqvw2Xr6L +03/08/2018,Economists,@AllisonSchrager,RT @RepEEdwards: @causalinf @AllisonSchrager This is about a resolution in the New Hampshire State House and we don't have any power to act… +03/08/2018,Economists,@AllisonSchrager,@causalinf amazing!!! Great example of economic research having real impact and improving welfare. you should still… https://t.co/4M8L9TX1Lt +03/03/2018,Economists,@AllisonSchrager,RT @NormaCohen3: Great article putting myths to rest. But there is some evidence of testosterone-fuelled risk taking. It shows up in a spik… +03/01/2018,Economists,@AllisonSchrager,RT @WSJCentralBanks: EXCLUSIVE: White House preparing to nominate Richard Clarida as Fed’s No. 2 official https://t.co/FgLrQR2k84 +02/24/2018,Economists,@AllisonSchrager,@radiosmith @biggsag @WaltHickey fighting retirement ignorance takes 2 pension geeks! +02/24/2018,Economists,@AllisonSchrager,"another reason why we need fewer time zones and end DST! +https://t.co/qJXKBTEoKZ" +02/24/2018,Economists,@AllisonSchrager,"RT @biggsag: @AllisonSchrager @WaltHickey As I sometimes put it: if we're going to have a retirement crisis, why don't we have one already?…" +02/24/2018,Economists,@AllisonSchrager,"@EconomPic @wolfejosh DB plans follow a LDI strategy. It is expensive w these rates, but also low/no risk--esp if l… https://t.co/E5crs8tMMW" +02/24/2018,Economists,@AllisonSchrager,@biggsag @WaltHickey And many with neither get a high replacement rate from Social Security/SSI. I think we can do… https://t.co/E3enuw8P09 +02/24/2018,Economists,@AllisonSchrager,@wolfejosh the tail risk is 20 years of bad stock returns. even for index funds. It is true that long holder period… https://t.co/ezwqvv4ogV +02/24/2018,Economists,@AllisonSchrager,@biggsag @WaltHickey Misleading reporting. That $15k NIRA number is for all 55 to 64-year-olds. if you condition on… https://t.co/5vZ6laV0EX +02/24/2018,Economists,@AllisonSchrager,RT @biggsag: @AllisonSchrager Let's see... [Mimics rummaging around...] This might do it. @WaltHickey https://t.co/a5uRDIuW7x +02/24/2018,Economists,@AllisonSchrager,@matt_levine thanks for this. I always wondered where the money from share holder buy backs go. Is it reinvested or… https://t.co/MN7EO8O8Vw +02/24/2018,Economists,@AllisonSchrager,"I just can't today, @biggsag https://t.co/wJpxQB2Hog" +02/24/2018,Economists,@AllisonSchrager,Fallacy of time diversification alert! I guess Warren Buffet does not count tail risk as risk https://t.co/ewOZaC96nN +02/15/2018,Economists,@AllisonSchrager,RT @fatihguvenen: Good point. My feeling is that Great Moderation both in macro and micro variables is a reflection of old age for the US e… +02/15/2018,Economists,@AllisonSchrager,RT @biggsag: I'm open to idea that a small universal basic income doesn't have much effect on work. But the study cited finds total employm… +02/09/2018,Economists,@AllisonSchrager,"@EconAndrew @qz exactly. but it does remind people markets are risky, if they aren't comfortable with that, they should reassess." +02/09/2018,Economists,@AllisonSchrager,"If you’re about to retire, should you pull out of the stock market? https://t.co/yDjRwWc5j4 via @qz" +02/07/2018,Economists,@AllisonSchrager,"RT @IQ2US: ""Technology cannot change the basic brain activities of romance"" @DrHelenFisher https://t.co/nfYjoI6XZT #IQ2USLive" +02/06/2018,Economists,@AllisonSchrager,"Archimedean property applies to New York apartments +https://t.co/7j5emgxfYk" +02/06/2018,Economists,@AllisonSchrager,"RT @mckonomy: Investing in the XIV is pretty much like eating a Tide Pod. From the prospectus: ""The long term expected value of your ETNs i…" +02/02/2018,Economists,@AllisonSchrager,"When Americans save this little, it’s usually a sign that recession is near https://t.co/ijfoj3AnGf via @qz" +01/31/2018,Economists,@AllisonSchrager,"@ModeledBehavior is inflation the biggest cost? low rates have implications for risk taking and financial markets,… https://t.co/TvW4J5lkV0" +01/31/2018,Economists,@AllisonSchrager,@ModeledBehavior The argument more complicated than that. A low rate policy presents many costs and benefits--infla… https://t.co/mg5oBZy7SJ +07/01/2018,Economists,@RBReich,"RT @waltshaub: 35,000 – Washington, DC +30,000 – New York City +60,000 – Chicago: +70,000 – Los Angeles + +and 750 other cities! + +(Including D…" +07/01/2018,Economists,@RBReich,Racism isn't patriotism. Xenophobia isn't patriotism. Misogyny isn't patriotism. Islamophobia isn't patriotism. Tru… https://t.co/UN09cN1ozE +07/01/2018,Economists,@RBReich,"But bad news for consumers, who will pay higher prices to cover the added costs. This includes lower-income consume… https://t.co/9sbhKmU3JF" +07/01/2018,Economists,@RBReich,Families belong together. Protest is powerful. Hold officials accountable. Thanks to all for keeping on the pressur… https://t.co/J5YGrKDV6w +06/30/2018,Economists,@RBReich,"RT @WomenBelong: DC +Flint +El Paso +San Juan +LA +Sioux Falls +Santa Fe +Fargo +Helena +Omaha +Antler (population 27) +Chi +Fort Wayne +Boise +Cedar…" +06/30/2018,Economists,@RBReich,Trump and Republicans in Congress want another big tax cut for corporations. They're making the same old argument t… https://t.co/FQc8a4hEJI +06/30/2018,Economists,@RBReich,"RT @MoveOn: TODAY. +Thousands of people across the country are demanding @realDonaldTrump reunite children w/ their families & #EndFamilyDe…" +06/29/2018,Economists,@RBReich,One day Trump is stoking hatred and fear among his core supporters and the next day he's calling for more giveaways… https://t.co/6CM99t1jZv +06/29/2018,Economists,@RBReich,Don't hold your breath... https://t.co/gzTrvzSLo7 +06/29/2018,Economists,@RBReich,RT @aawayne: NEWS: Private prison operators GEO GROUP INC. and CORECIVIC INC. have given more than $2 million to Republicans since 2015. Th… +06/29/2018,Economists,@RBReich,"RT @BernieSanders: “In a modern, moral and wealthy society, no person in America should be too poor to live.” –@Ocasio2018" +06/29/2018,Economists,@RBReich,"Trump controls the Republican Party, the Republican Party controls the House and Senate, and the Senate and Trump a… https://t.co/8LGWmozzn1" +06/28/2018,Economists,@RBReich,"Foreign direct investment in the U.S. is down 40 percent since Trump became president, due to Trump's xenophobic po… https://t.co/sCyNWleMeq" +06/28/2018,Economists,@RBReich,"My heart goes out to the Capital Gazette, the Baltimore Sun, and everyone impacted by this senseless tragedy. We mu… https://t.co/EKRen04Gwb" +06/28/2018,Economists,@RBReich,Are these toddlers the hardened criminals Trump crows about? Does he think they're going to take American jobs? Bul… https://t.co/HxSt6mWEfW +06/28/2018,Economists,@RBReich,"Finally, know that this fight will be long and hard. It will require your patience, your courage, and your resolve.… https://t.co/cRCY181OjM" +06/28/2018,Economists,@RBReich,"Fifth, help lay the groundwork for the 2020 presidential election, so that even if Trump survives Mueller and impea… https://t.co/jKTsbFCFvM" +06/28/2018,Economists,@RBReich,"Fourth, vote this November 6 for people who will stand up to all this outrage. Mobilize and organize others to do s… https://t.co/2jWATSfsVr" +06/28/2018,Economists,@RBReich,"Third, make a ruckus. Demonstrate. Engage in non-violent civil disobedience. Fight lies with truth. Join the resist… https://t.co/jWOsFC5Nxf" +06/28/2018,Economists,@RBReich,"Second, in the short term, if you are represented by a Republican senator, do whatever you can to get him or her to… https://t.co/QtGnC2E3R4" +06/28/2018,Economists,@RBReich,"So what are we -- the majority -- to do? + +First and most importantly, do not give up. That’s what they want us to d… https://t.co/lHTMquFuV3" +06/28/2018,Economists,@RBReich,"My friends, this is a dark hour. Intolerance, cruelty, racism, misogyny, xenophobia, and environmental destruction… https://t.co/23cKizQ9Ud" +06/28/2018,Economists,@RBReich,RT @CecileRichards: It is essential to call your US senators 202-224-3121 and demand no vote on a new SCOTUS Justice until after November.… +06/28/2018,Economists,@RBReich,"Though they employ completely different styles, Trump and McConnell are both willing to sacrifice the institutions… https://t.co/Easbn02ZvC" +06/28/2018,Economists,@RBReich,Trump and McConnell both share an ignominious ability to completely ignore their own hypocrisy in pursuit of politi… https://t.co/MJ54D8gaye +06/28/2018,Economists,@RBReich,"RT @ACLU: If you're voting this November for candidates who: +✓ oppose family separation +✓ will vote for legislation to end Trump's Muslim b…" +06/27/2018,Economists,@RBReich,"RT @ddiamond: Merrick Garland was nominated on March 16, 2016 — or 237 days before that year’s election. McConnell said that was too close…" +06/27/2018,Economists,@RBReich,"If nothing else galvanizes the vast majority of Americans to organize, mobilize, and vote to take back our governme… https://t.co/KCQ9JZDnv0" +06/27/2018,Economists,@RBReich,RT @JeffreyToobin: Anthony Kennedy is retiring. Abortion will be illegal in twenty states in 18 months. #SCOTUS +06/27/2018,Economists,@RBReich,"RT @SenFeinstein: 4 months away from an election, there should be no consideration of a Supreme Court nominee until the American people hav…" +06/27/2018,Economists,@RBReich,"To those GOP senators who have spoken out against Trump's attacks on our democracy, now is your chance to stand fir… https://t.co/cv2jgc8GB5" +06/27/2018,Economists,@RBReich,"RT @ProPublica: Since Donald Trump declared his candidacy for president in late 2015, at least $16.1 million has poured into Trump Organiza…" +06/27/2018,Economists,@RBReich,"If you're angry about this, organize and mobilize to take back the Senate in 2018, so we get a Supreme Court that i… https://t.co/uVgeMhB4ka" +06/27/2018,Economists,@RBReich,"Democrats must pay attention to this: Young, female, powerful message, future of America. https://t.co/nSRDDSv2Uo" +06/27/2018,Economists,@RBReich,"The GOP has become the Trump-Fox News Party, headed by a demagogue and fueled by a propaganda machine. It now runs… https://t.co/poy20FDpz3" +06/26/2018,Economists,@RBReich,I recently sat down with Congressman @RoKhanna to discuss the idea of a Federal Jobs Guarantee and how we can make… https://t.co/X6JfaaKxZX +06/26/2018,Economists,@RBReich,"Next time you hear someone railing against immigrants, mention these facts: +1) Immigrants add ~$1.5 trillion to U.S… https://t.co/6ffHsR1bmj" +06/26/2018,Economists,@RBReich,RT @sfchronicle: Robert Reich (@RBReich): President Trump is far removed from the ideals of patriotism.True patriots don’t court foreign di… +06/26/2018,Economists,@RBReich,RT @repjohnlewis: I never thought I would live to see a day when the Supreme Court of the United States would again make a decision as inhu… +06/26/2018,Economists,@RBReich,McConnell embodies the decline of the Republican party. His spineless political posturing places party above countr… https://t.co/YgjjLfGD0k +06/26/2018,Economists,@RBReich,"RT @IChotiner: Mitch McConnell criticizing the Muslim ban, then getting Gorsuch on the Court to uphold it, and then celebrating the decisio…" +06/26/2018,Economists,@RBReich,"With McConnell's help, Trump is nominating and getting Senate confirmation of judges to the federal bench much fast… https://t.co/xkUBJiNHpd" +06/26/2018,Economists,@RBReich,"Wow indeed, given all your explicit anti-Muslim statements before you put the ban into effect. But, hey, you put Go… https://t.co/e7V1mK6qDw" +06/26/2018,Economists,@RBReich,What did you think would happen when you put tariffs on European steel and aluminum? They retaliated with tariffs o… https://t.co/P5PhlzaRJ2 +06/26/2018,Economists,@RBReich,RT @albericie: This political ad from MJ Hegar is by far and away the best I've ever seen. What a force to be reckoned with! Take a moment… +06/25/2018,Economists,@RBReich,Ridiculous? Tell that to the 15 million American children living in poverty or the majority of families in this cou… https://t.co/HKFSIKPrvz +06/25/2018,Economists,@RBReich,"How are corporations spending their savings from Trump's tax cuts? + +Companies have already plowed $189 billion int… https://t.co/nkncRmmXZW" +06/25/2018,Economists,@RBReich,"Now that Trump and Republicans in Congress have exploded the deficit with tax cuts for the rich, they want to balan… https://t.co/CV6WCssGiy" +06/25/2018,Economists,@RBReich,"As dictators take control of democracies, they typically: https://t.co/DsurVpaXgD" +06/25/2018,Economists,@RBReich,RT @tribelaw: The US is the only UN member state that hasn’t ratified the international convention on the rights of the child +06/25/2018,Economists,@RBReich,"RT @swingleft: YOU: college student dedicated to putting a check on Trump and the GOP. +WE: will train and mobilize you for the midterm elec…" +06/25/2018,Economists,@RBReich,"RT @gelles: Trump tweets about the “witch hunt” + +May 2017: 3 times +June 2017: 5 times +July 2017: 6 times +Oct 2017: 1 time +Dec 2017: 2 times…" +06/24/2018,Economists,@RBReich,The private-prison industry stands to make fortune from Trump's immigration crackdown. This toxic mix of senseless… https://t.co/YWYkE3KOrq +06/24/2018,Economists,@RBReich,"RT @adamdavidson: Interesting. You know how Trump led a vicious attack on Canada because they put a 300% tariff on dairy? + +They don't. It's…" +06/23/2018,Economists,@RBReich,"You talk with supporters, tweet to supporters, hold rallies with supporters. But don't communicate w/ the American… https://t.co/GOjPr3Fx13" +06/23/2018,Economists,@RBReich,"But remember, only 27 percent of Americans are Republicans. https://t.co/sDnN2BWLNq" +06/23/2018,Economists,@RBReich,"RT @ezraklein: Approval of GOP tax law: + +January: 44% +April: 40% +Now: 34% + +https://t.co/qXQ4VsC319" +06/23/2018,Economists,@RBReich,"I've spent decades debating George Will, who has never strayed from his conservative Republican roots. Until now. https://t.co/tjPSRNX3wU" +06/23/2018,Economists,@RBReich,"What is there about the Republican Party and children? After tearing apart immigrant families, Trump and his party… https://t.co/4WyvAXGlJp" +06/22/2018,Economists,@RBReich,The only people among us who have standing to complain about immigrants are Native Americans. https://t.co/NextUppFLE +06/22/2018,Economists,@RBReich,"This has been the GOP's plan all along: +1) Demand massive tax cuts for the rich & corporations. +2) Claim the cuts… https://t.co/FpsEucPlma" +06/22/2018,Economists,@RBReich,"Trump's most lasting legacy might be his impact on the federal court system. Quite apart from the Supreme Court, Tr… https://t.co/k3f3Q60k3N" +06/21/2018,Economists,@RBReich,Behind Trump's cruelty is an industry poised to profit from the suffering. As the administration locked up immigran… https://t.co/NhBGLwV4g1 +06/21/2018,Economists,@RBReich,RT @voxdotcom: Watch: Sinclair is taking over local TV — and just forced its stations to air pro-Trump propaganda on family separation http… +06/21/2018,Economists,@RBReich,Please do not lose faith in the United States. For over seventy years our beliefs and values have made us staunch a… https://t.co/5BxNtWu3Dt +06/21/2018,Economists,@RBReich,RT @mbieseck: BREAKING ⁦@AP:⁩ Immigrant children as young as 14 housed at a juvenile detention center in Virginia say they were beaten whil… +06/21/2018,Economists,@RBReich,"RT @jaketapper: It’s not an accident that the US government is making it so difficult for journalists, lawmakers, lawyers and others to bri…" +06/20/2018,Economists,@RBReich,Reminder: The Trump administration still has no plan how to reunite the thousands of children already separated fro… https://t.co/tnUfN6prvX +06/20/2018,Economists,@RBReich,"Let's be very clear, the administration described the policy as a ""deterrent"" and initiated a ""zero-tolerance"" appr… https://t.co/kSTqlsb6jd" +06/20/2018,Economists,@RBReich,"The Trump administration on family separations: + +1) It’s a deterrent, zero-tolerance. +2) It’s not happening. +3) Th… https://t.co/hNkzGp0vlL" +06/20/2018,Economists,@RBReich,"Amid the maelstrom of Trumpian cruelty, the fundamental kindness and generosity of the American people still define… https://t.co/L0KC5MpTBE" +06/20/2018,Economists,@RBReich,"President Dwight D. Eisenhower once noted, “Every gun that is made, every warship launched, every rocket fired sign… https://t.co/WthwR4aLPs" +06/20/2018,Economists,@RBReich,"RT @NBCNews: JUST IN: American Airlines has requested that the US federal government ""immediately refrain from using American for the purpo…" +06/20/2018,Economists,@RBReich,"The Trump presidency can be defined by 3 corrosive qualities: unbridled cruelty, utter incompetence, and outspoken… https://t.co/dKbF0WnBiq" +06/20/2018,Economists,@RBReich,"RT @RepAdamSchiff: No, @SecNielsen did not do a “fabulous job,” she just repeated the falsehoods you have told to justify the indefensible…" +06/20/2018,Economists,@RBReich,Free the children. +06/20/2018,Economists,@RBReich,"True leaders credit others for accomplishments and accept responsibility for failures. Trump does the opposite, and… https://t.co/KI2VhzuOPi" +06/20/2018,Economists,@RBReich,RT @justinbaragona: Rachel Maddow chokes up and cries on air as she struggles to deliver news that migrant babies and toddlers have been se… +06/20/2018,Economists,@RBReich,"RT @passantino: .@Zac_Petkanas says on Fox News a 10-year-old girl with Down Syndrome was separated from her mother at the border. + +Corey L…" +06/19/2018,Economists,@RBReich,"To Our Allies Around the World: The majority of Americans continue to value the causes of democracy, equal opportun… https://t.co/eyOvUbTq05" +06/19/2018,Economists,@RBReich,RT @DavidCornDC: If only our country had a legislative body with the power to investigate corruption at the highest levels of our governmen… +06/19/2018,Economists,@RBReich,Can you imagine if the children of lobbyists were being separated from their parents? Ryan and McConnell would be b… https://t.co/ixvPz9l3LK +06/19/2018,Economists,@RBReich,"RT @ACLU: The Trump administration’s withdrawal from the UN Human Rights Council, coupled with its abusive use of power at home, only confi…" +06/19/2018,Economists,@RBReich,More Swamponomics: After Wilbur Ross learned that reporters were investigating his business dealings with a Kremlin… https://t.co/NYdCPSEt07 +06/19/2018,Economists,@RBReich,"Having tossed billions in tax cuts to the GOP's donors, Trump is now tossing red meat to his core supporters. https://t.co/Ac07ryaFKK" +06/19/2018,Economists,@RBReich,"RT @ForeignPolicy: ""I was sent to a camp at just five years old — but even then, they didn't separate children from families"" - @GeorgeTake…" +06/19/2018,Economists,@RBReich,RT @JuddLegum: Laura Ingraham describes the detention facilities where children are sent after being forcibly separated from their parents… +06/18/2018,Economists,@RBReich,"RT @jeanguerre: DHS Secretary Kirstjen Nielsen just said DHS isn't separating families who ""legitimately"" enter country through a port of e…" +06/18/2018,Economists,@RBReich,There are two kinds of liars – fools and knaves. Fools lie because they don’t know the truth. Knaves lie because th… https://t.co/JYQqM2uZeP +06/18/2018,Economists,@RBReich,"RT @ProPublica: Inside a detention center last week. Children separated from their parents wail and ask for help. + +A Border Patrol agent b…" +06/18/2018,Economists,@RBReich,"It seems that whenever pro-Trump pundits are now confronted with the harsh realities of the policies they promote,… https://t.co/6ANbFC3ZwU" +06/18/2018,Economists,@RBReich,The Trump Administration's family-separation policy is another xenophobic attack on immigrants rooted in the same o… https://t.co/Nty56ItHE3 +06/18/2018,Economists,@RBReich,"RT @chrislhayes: Currently, the Trump administration is arguing that its family-separation policy: + +- is a deterrent + +- is biblically compl…" +06/17/2018,Economists,@RBReich,"RT @maggieNYT: Trump, who has continued to claim Democrats are responsible for his own policy that he has pressed his DHS secretary to enfo…" +06/17/2018,Economists,@RBReich,"The Attorney General outlined a ""zero-tolerance"" policy last month and other members of the administration have des… https://t.co/d0os5eHom1" +06/17/2018,Economists,@RBReich,RT @tedlieu: Happy early #FathersDay to those who didn't have our kids ripped away from us by the new @realDonaldTrump family separation po… +06/17/2018,Economists,@RBReich,"RT @ACLU: This #FathersDay, members of Congress are visiting kids at the border and in detention centers to see firsthand how @realDonaldTr…" +06/16/2018,Economists,@RBReich,"Trump is the first president to use the term ""we"" to refer not to all Americans but only to his supporters. He cons… https://t.co/Fh8p4s2TA2" +06/16/2018,Economists,@RBReich,"He continues to order unnecessary cruelty and blame it on his political opponents. He's also done it with DACA, the… https://t.co/vnm54Tvfhn" +06/16/2018,Economists,@RBReich,RT @Rob_Rogers: I Was Fired for Making Fun of Trump https://t.co/aauivB2OEl +06/16/2018,Economists,@RBReich,"The next time you hear conservatives railing against affirmative action for black and brown kids, remind them of th… https://t.co/7fEDIPD2lP" +06/15/2018,Economists,@RBReich,"More evidence of the failure of trickle-down economics: + +1) Hourly earnings are down, adjusted for inflation. +2) C… https://t.co/7WBHe6DpfZ" +06/15/2018,Economists,@RBReich,"Throughout history, tyrants have (1) brutalized and scapegoated the vulnerable, (2) lied about what they were doing… https://t.co/z0Msq33T5L" +06/15/2018,Economists,@RBReich,Unfair unless you think witness tampering is perfectly legal. How long before Trump pardons Manafort -- the most bl… https://t.co/2tQZzsAIAq +06/15/2018,Economists,@RBReich,What else would we expect from an administration that has made a practice of ripping babies from their mothers. https://t.co/KYo42xYNvS +06/15/2018,Economists,@RBReich,"Trump officials have operationalized ""deep state"" conspiracies, with one appointee keeping a list of employees who… https://t.co/LibR3lzANk" +06/15/2018,Economists,@RBReich,"“There’s No Stopping Him”: Trump Insists on a Putin Summit +https://t.co/Od2oV7bYEU" +06/15/2018,Economists,@RBReich,These distortions about Crimea could be part of the groundwork for lifting sanctions. Trump is reportedly pushing h… https://t.co/9o7Mrr3AmH +06/15/2018,Economists,@RBReich,"@RichardCheese Stay mobilized and engaged! When the public stops paying attention, democracy suffers. Then, in Nove… https://t.co/nbx4JeWHQY" +06/15/2018,Economists,@RBReich,RT @PreetBharara: Now will Manafort flip? https://t.co/96x2meojAx +06/15/2018,Economists,@RBReich,"This week a GOP senator described his party's loyalty to the president as ""cultish."" Now, Trump is calling for Nort… https://t.co/LHNxPwZ2GJ" +06/15/2018,Economists,@RBReich,Unbridled cruelty and greed are eating away at the very fabric of our society. We must not let it stand. This is no… https://t.co/lLeQAszcle +06/14/2018,Economists,@RBReich,"Remember the endless conspiracy theories about the Clinton Foundation? It seems that, once again, Trump was creatin… https://t.co/bnWkjelsL7" +06/14/2018,Economists,@RBReich,"RT @commondreams: WATCH: Huckabee-Sanders Defends Ripping Children From Parents, Because It's ""Very Biblical to Enforce the Law"" +https://t.…" +06/14/2018,Economists,@RBReich,RT @chrislhayes: THE LAW IN NO WAY COMPELS FAMILY SEPARATION. THEY ARE CHOOSING TO DO THIS. https://t.co/lbtyESdb8i +06/14/2018,Economists,@RBReich,RT @kylegriffin1: A construction company owned by the Chinese government was awarded another contract this week to work on the Trump golf c… +06/14/2018,Economists,@RBReich,"RT @Fahrenthold: NY Atty Gen sues @realdonaldtrump & 3 eldest kids, alleging “persistent illegal conduct” at Trump’s charity. https://t.co/…" +06/14/2018,Economists,@RBReich,"Fox News, 2009: Obama gives Queen Elizabeth an iPod. End of the world. + +Fox New, 2018: Trump salutes a North Korea… https://t.co/tzpvZk1szr" +06/14/2018,Economists,@RBReich,Let me get this straight. It's patriotic to salute a North Korean general who's part of a brutal dictatorial regime… https://t.co/DQjzT3TMb9 +06/14/2018,Economists,@RBReich,The United States already spends more on the military than the next 10 countries combined. It's time to rein in Pen… https://t.co/S0tethjC5W +06/13/2018,Economists,@RBReich,"This is profoundly disturbing, even by Trump's standards. https://t.co/qOJ5FYUFvr" +06/13/2018,Economists,@RBReich,"RT @Lawrence: Note to news media: there is no North Korea ""deal."" If you use the word ""deal"" you're spreading Trump propaganda. + +A deal has…" +06/13/2018,Economists,@RBReich,"As a father, I cannot fathom what these parents are going through. As an American, I am horrified that our governme… https://t.co/UpJCNdnzZ4" +06/13/2018,Economists,@RBReich,"RT @peterbakernyt: Reporter: “The president said it will be verified.” + +Pompeo: “Of course it will.” + +Q: ""Can you tell us a little bit more…" +06/13/2018,Economists,@RBReich,RT @Wonkblog: A minimum-wage worker can’t afford a 2-bedroom apartment anywhere in the U.S. https://t.co/05sfZfk60P +06/13/2018,Economists,@RBReich,"RT @GeorgeLakoff: Four ways the press can stop helping Trump: +1. Learn how propaganda works and how he weaponizes words +2. Focus on the fa…" +06/13/2018,Economists,@RBReich,RT @oliverdarcy: this really is too easy https://t.co/eFqWfT4pn9 +06/13/2018,Economists,@RBReich,"RT @ABCPolitics: Republican Sen. Bob Corker on the GOP's deference to Pres. Trump: ""It's almost becoming a cultish thing, isn't it. And it'…" +06/13/2018,Economists,@RBReich,"“They weren’t exactly selling tickets,” Trump said, referring to the South Korean Olympic games. “It sold like wil… https://t.co/fUDUJZJBag" +06/13/2018,Economists,@RBReich,"Surprise, surprise! Corporate executives are using the massive windfall from the Trump tax cut to line their own po… https://t.co/q7DTiBfTjF" +06/13/2018,Economists,@RBReich,"Dick Thornburgh, AG from 1988-91': ""We will be remembered by what we say and what we do in this challenging time in… https://t.co/9US4XiiW7S" +06/13/2018,Economists,@RBReich,Wonder when Trump will congratulate Arthur Jones for winning the Republican primary in Illinois’s Third Congression… https://t.co/UASk8OhVqy +06/13/2018,Economists,@RBReich,This morning Trump congratulated Corey Stewart for his win in Virginia. Stewart is best known for defending Confede… https://t.co/AS6O51JzOB +06/13/2018,Economists,@RBReich,What's next? We build a wall along the Canadian border and demand Canada pay for it? https://t.co/1GSlgI9PZB +06/12/2018,Economists,@RBReich,The AT&T-Time Warner deal will consolidate two of the largest media empires into the hands of just a few corporate… https://t.co/C95qXaTG6R +06/12/2018,Economists,@RBReich,RT @KenDilanianNBC: Reporters thought this video was North Korea propaganda. It came from the White House. https://t.co/fvIFR8YvTN +06/12/2018,Economists,@RBReich,This slipped by barely noticed. Trump's lawyers from the Department of Justice are now arguing that he can profit f… https://t.co/MYTDFTFfFF +06/11/2018,Economists,@RBReich,The repeal of #NetNeutrality is huge blow to what Americans can say and do online. But we must keep up the fight to… https://t.co/RuFVwBuplG +06/11/2018,Economists,@RBReich,"RT @kylegriffin1: Jared and Ivanka made at least $82,000,000 in outside income last year while serving in the White House, according to new…" +06/11/2018,Economists,@RBReich,"We're America, a land of opportunity that welcomes people from around the world in search of a better life. + +We're… https://t.co/No8g1tOHQD" +06/11/2018,Economists,@RBReich,"In the past 72 hours, Trump administration officials have condemned Justin Trudeau to ""a special place in hell,"" de… https://t.co/hxgjOQS3oT" +06/11/2018,Economists,@RBReich,"RT @jonfavs: This story is bonkers. + +@NRA meets with right-wing Russian nationalists, sanctioned oligarchs, Putin cronies, money-launderer…" +06/11/2018,Economists,@RBReich,RT @evanhalper: BREAKING: Trump administration will stop granting asylum to victims of domestic abuse and gang violence. Tens of thousands… +06/11/2018,Economists,@RBReich,I have news for you. We’re already in a constitutional crisis. For a year and a half the president of the United St… https://t.co/RjGMIx8x0D +06/11/2018,Economists,@RBReich,"RT @ananavarro: You forgot, (6) family values. https://t.co/t1dvfnXT8e" +06/11/2018,Economists,@RBReich,"RT @RepAdamSchiff: To my Republican colleagues: + +How long will you remain silent as President Trump lays ruin to our alliances and tears ap…" +06/11/2018,Economists,@RBReich,"In fact, the U.S. has a trade surplus with Canada. Canada is our largest trading partner. We are staunch allies, fr… https://t.co/suuRL20pH4" +06/11/2018,Economists,@RBReich,"The Republican Party used to stand for (1) the rule of law, (2) free trade, (3) state's rights, (4) low deficits an… https://t.co/8agph4u06V" +06/10/2018,Economists,@RBReich,"Let me get this straight: Trump pulls out of G-7 communique because Trudeau says Canada won’t be bullied by U.S., w… https://t.co/gkfTeYRoLZ" +06/10/2018,Economists,@RBReich,RT @JoeNBC: God help us. Their silence is damning enough. But the Senate Majority Leader calling this the best time ever for conservatives… +06/10/2018,Economists,@RBReich,"Trump has turned his back on America's allies, threatened a trade war with Europe and Japan, made a mockery of the… https://t.co/1aW8VDy4SW" +06/09/2018,Economists,@RBReich,These two photos speak volumes about the direction of America's standing in the world. https://t.co/cZBOav59Sf +06/09/2018,Economists,@RBReich,An incredible photo from the G-7 summit. True patriots understand that diplomacy and international cooperation are… https://t.co/DyMgVl6blw +06/09/2018,Economists,@RBReich,Kudos to @KevinSiers for this one. Be sure to check out his great cartoons. +06/09/2018,Economists,@RBReich,"Trump’s take on an American classic: + +God bless America, +Land that I rule. +Stand beside me, +Don’t indict me +Wit… https://t.co/ppDL6geiE4" +06/08/2018,Economists,@RBReich,Here's the report on out-of-pocket costs: https://t.co/SRZKQ9LrGO +06/08/2018,Economists,@RBReich,"According to a new report, Trump's so-called plan to lower prescription drug prices could actually increase prices… https://t.co/Q3l0ngIwPv" +06/08/2018,Economists,@RBReich,"RT @kylegriffin1: John McCain on the G7: ""The President has inexplicably shown our adversaries the deference and esteem that should be rese…" +06/08/2018,Economists,@RBReich,Trump has become the Mad King who says or does anything his gut tells him to — running roughshod over the rule of l… https://t.co/Rw97N6w3Kv +06/08/2018,Economists,@RBReich,"It's easy to feel helpless with Trump in the White House, but do not underestimate your collective power to oppose… https://t.co/TbpLPUZs95" +06/07/2018,Economists,@RBReich,These are the acts of kindness and generosity that will always define the American people. We mustn't lose sight of… https://t.co/hVJidV6eFg +06/07/2018,Economists,@RBReich,The Trump administration’s decision to alter the 2020 Census to ask people if they are American citizens is unconst… https://t.co/pDPRDagmxE +06/07/2018,Economists,@RBReich,RT @maggieNYT: The president versus the presidency. https://t.co/oNXAveRnxe +06/07/2018,Economists,@RBReich,This is astounding. Trump has done more to save Chinese jobs at ZTE than American jobs at Carrier. https://t.co/gwmpL5l5UL +06/07/2018,Economists,@RBReich,"RT @RepAdamSchiff: The President just caved on a deal with ZTE, a Chinese company that our intelligence professionals say poses a national…" +06/07/2018,Economists,@RBReich,Trump is willing to test the limits of our democracy in order to maintain power. We must remain vigilant. https://t.co/0P08OMcdzm +06/07/2018,Economists,@RBReich,Trump's contempt for the free press permeates the entire administration. https://t.co/0653r0Qtqf +06/07/2018,Economists,@RBReich,"A note on Robert F. Kennedy: +#RFK50 https://t.co/KpjtL3veEs" +06/07/2018,Economists,@RBReich,"RT @FoxNewsResearch: (E)xpensive (P)ruitt (A)gency: +Condo Deal: $50/night +12 Pens: $1,560 +Journals: $1,670 +Trump Hotel Mattress: $1,750 +Pri…" +06/07/2018,Economists,@RBReich,Trump's policies have the unique distinction of accomplishing the exact opposite of their stated goal -- a plan to… https://t.co/MjZCFiUZhx +06/06/2018,Economists,@RBReich,Bumping this to the top of Canada's inbox. https://t.co/bBY0nx8ztm +06/06/2018,Economists,@RBReich,"RT @ABC: Warriors coach Steve Kerr on White House controversy: + +""I'm blown away by the irony of the Eagles being disinvited. … Instead we…" +06/06/2018,Economists,@RBReich,"Leave it to Trump to insult our closet ally, concoct his own version of history, and embarrass America all in the s… https://t.co/3wIVM7OvXR" +06/06/2018,Economists,@RBReich,"RT @AdamRuins: Two facts from this #AdamRuins clip: +1) Unpaid interns have the same success rate in finding paid work as folks who never i…" +06/06/2018,Economists,@RBReich,Only once in our history—in 1861—did enough of us distrust the system so much we succumbed to civil war. We're prob… https://t.co/m8K8OWGemj +06/06/2018,Economists,@RBReich,RT @Redistrict: Dems picking up a Trump +5 state senate seat in MO by a landslide tonight - currently 60%-40% w/ 82% counted. https://t.co/… +06/05/2018,Economists,@RBReich,"RT @NBCNews: Sen. Leahy: Will your school safety commission look at the role of firearms? + +Sec. DeVos: ""That is not part of the commission'…" +06/05/2018,Economists,@RBReich,RT @MichaelSkolnik: Paul Manafort is free? https://t.co/paDPOvGVUb +06/05/2018,Economists,@RBReich,RT @carinabergfeldt: A man takes a knee during Trump’s celebration. https://t.co/zghJSk2YOu +06/05/2018,Economists,@RBReich,"RT @swingleft: It's primary day in Alabama, California, Iowa, Mississippi, Montana, New Jersey, New Mexico, and South Dakota. GO VOTE! http…" +06/05/2018,Economists,@RBReich,"RT @sfchronicle: Is a second civil war possible? Probably not. But the way Trump and his defenders are behaving, it’s not absurd to imagine…" +06/05/2018,Economists,@RBReich,"There are primary elections today Alabama, California, Iowa, Mississippi, Montana, New Jersey, New Mexico and South… https://t.co/AcIT63C7KL" +06/05/2018,Economists,@RBReich,RT @ChrisBHaynes: Stephen Curry says “I agree with ‘Bron.” https://t.co/NSYZYh0eDK +06/05/2018,Economists,@RBReich,"We should all be outraged by this. When Americans look back on this brutal policy, it will surely be recorded as on… https://t.co/5gyGQnyL6l" +06/05/2018,Economists,@RBReich,"RT @AriMelber: Look at what’s happening now: + +Mueller seeking to jail Trump campaign chair for *witness tampering* + +Trump aides admit they…" +06/05/2018,Economists,@RBReich,"RT @ChrisMegerian: Special counsel says Paul Manafort attempted to tamper with a witness and ""has violated the conditions of his release.""…" +06/04/2018,Economists,@RBReich,How are corporations spending their savings from Trump's tax cuts? (Hint: It's not going towards workers) A new rep… https://t.co/zyYu349y2c +06/04/2018,Economists,@RBReich,The President of the United States is threatening to pardon himself in order to undermine an independent investigat… https://t.co/1DSm66prPu +06/04/2018,Economists,@RBReich,"As tyrants take control of democracies, they seek to undermine the rule of law, carving out exceptions for themselv… https://t.co/qmEm50LDP8" +06/04/2018,Economists,@RBReich,"RT @EricLiptonNYT: JUST POSTED: Pruitt did what? Yes, he asked one of his top aides to help him get a mattress he could use from the Trump…" +06/04/2018,Economists,@RBReich,RT @SenJeffMerkley: I was barred entry. Asked repeatedly to speak to a supervisor—he finally came out and said he can’t tell us anything. P… +06/03/2018,Economists,@RBReich,"What's next kindergarten teachers with bazookas? Principals with flamethrowers? + +Gun laws save lives, not more guns… https://t.co/EJyxrMcJiP" +06/03/2018,Economists,@RBReich,"RT @kylegriffin1: Remember that Mueller and his team have: + +• Issued 8 indictments covering 19 individuals and 3 businesses +• Secured 5 gui…" +06/03/2018,Economists,@RBReich,"RT @BeschlossDC: “Well, when the President does it, that means that it is not illegal.” —Richard Nixon to David Frost, 1977 https://t.co/DA…" +06/03/2018,Economists,@RBReich,"RT @MarshallCohen: In a letter to Mueller, Trump's lawyers said he ""dictated a short but accurate response to the New York Times"" about the…" +06/03/2018,Economists,@RBReich,"RT @maggieNYT: For the first time, Trump’s lawyers say he dictated his son’s response to NYT over Russian lawyer meeting. They call the sta…" +06/02/2018,Economists,@RBReich,"RT @JohnJHarwood: average monthly job growth: + +—first 16 months of Trump presidency: 185K + +—last 16 months of Obama presidency: 215K" +06/02/2018,Economists,@RBReich,I founded The American Prospect with Bob Kuttner and Paul Starr. It's been the voice of a compelling progressive po… https://t.co/pY8xCajRK5 +06/02/2018,Economists,@RBReich,"Swamponomics: ZTE hired a former Trump campaign aide, who reportedly still chats with the president. Two weeks late… https://t.co/9kA2qwtCet" +06/02/2018,Economists,@RBReich,Earlier this week the Trump administration approved another mega-merger. The deal consolidates 61% of global seeds… https://t.co/1RMyOFNzJW +07/01/2018,Economists,@TimDuy,"RT @ReformedBroker: a message for @larry_kudlow - the federal deficit is actually UP 23% over the last year, but that’s okay. +important p…" +07/01/2018,Economists,@TimDuy,"RT @Noahpinion: Note: TPP is good, and we should join it. It will not create refugee waves. https://t.co/VF4DzTct9p" +07/01/2018,Economists,@TimDuy,Sun setting behind the Cascades. Just outside of Bend. https://t.co/gzRtRUlVJF +06/30/2018,Economists,@TimDuy,"RT @BobBrinker: I hope you are wrong — but think you are right. + +Thread. https://t.co/dQw54ZCRR1" +06/30/2018,Economists,@TimDuy,"RT @paulkrugman: From March. When I say these guys had no idea what they were getting into, I wasn't kidding. https://t.co/xOi7pUxsfx" +06/30/2018,Economists,@TimDuy,"RT @JimPethokoukis: Maybe this deserves at least equal attention to China’s bullet trains, and fabulous airports, and commitment to renewab…" +06/30/2018,Economists,@TimDuy,"RT @ReformedBroker: Who could have known trade was so COMPLEX?? + +Toyota makes cars in Kentucky + +BMW in South Carolina + +Benz in Alabama + +GM…" +06/30/2018,Economists,@TimDuy,RT @OregonianBiz: Most Oregonians buying health insurance in the individual market will see their rates jump from 5 to 10 percent in 2019.… +06/30/2018,Economists,@TimDuy,RT @NickTimiraos: Global supply chains have become so integrated over the last few decades that it’s really hard to put tariffs in place th… +06/30/2018,Economists,@TimDuy,"RT @TopherSpiro: BREAKING: Maine doctor @DrChaya says she is likely to challenge @SenatorCollins in 2020. ""I can't sit idly by and just wat…" +06/30/2018,Economists,@TimDuy,“Swim” instructor would be proud. https://t.co/7TNz9YTF0O +06/30/2018,Economists,@TimDuy,RT @ATabarrok: Why Sexism and Racism Never Diminish–Even When Everyone Becomes Less Sexist and Racist https://t.co/91jTRlpWHN +06/30/2018,Economists,@TimDuy,RT @SonnyBunch: capital 👏 always 👏 wins https://t.co/Qv7eLwf1jv +06/30/2018,Economists,@TimDuy,RT @uoregon: A generous $10 million gift from the Robert J. DeArmond Trust will accelerate #research that improves lives as well as boost t… +06/30/2018,Economists,@TimDuy,@NickTimiraos @sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Sessions probably has some thoughts on that. +06/30/2018,Economists,@TimDuy,Nope. Trump's badgering of companies - effectively an effort at state directed control of the means of production -… https://t.co/yLgnnzXLgy +06/30/2018,Economists,@TimDuy,RT @markmobility: .@rtraister takes on @nytimes @SenSchumer @SenSanders @brianstelter and the Democratic establishment for their nonstop wo… +06/30/2018,Economists,@TimDuy,@IvanTheK @Ocasio2018 The D leadership seems enamored with a fundamentally socially liberal yet fiscally/economical… https://t.co/9LZLJgvSBg +06/30/2018,Economists,@TimDuy,@IvanTheK @Ocasio2018 I know. That is a problem. Withering internal battles seem to be hurting Ds more than Rs. +06/30/2018,Economists,@TimDuy,RT @bopinion: The Equal Rights Amendment is still worth supporting https://t.co/NajVDvH0FJ https://t.co/cZmmDPJ1pQ +06/30/2018,Economists,@TimDuy,Maybe even could get @davidmwessel on board with this idea. https://t.co/DbFQsKeoRt +06/30/2018,Economists,@TimDuy,@IvanTheK I think the Sanders campaigned showed that many are looking for a different economic policy path than tha… https://t.co/u8kbHXq4JT +06/30/2018,Economists,@TimDuy,RT @BruceBartlett: It's always coming down when Republicans want to cut taxes. It's always skyrocketing when they want to slash benefits fo… +06/30/2018,Economists,@TimDuy,And this: https://t.co/pRvyMVwuvw https://t.co/Kt35xBOXQo +06/30/2018,Economists,@TimDuy,Peace could come quickly with policy rates soon approaching neutral. When this really becomes a problem I think is… https://t.co/yJTlXg1P0T +06/30/2018,Economists,@TimDuy,"RT @PeterContiBrown: I don’t think you’re crazy, but I worry about this more than it sounds like you do. Here’s my thread /1 https://t.co/X…" +06/30/2018,Economists,@TimDuy,@sam_a_bell @NickTimiraos @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Both the left and the right turned ag… https://t.co/88QeVDwTZ3 +06/30/2018,Economists,@TimDuy,"RT @IvanTheK: She has 28 times as many followers as the number of people who voted for her in the primary. And from what I can see so far,…" +06/30/2018,Economists,@TimDuy,RT @CardiffGarcia: [2/2] I listed four worrying possibilities (not quite predictions). I try to be open-minded about the future and I'd say… +06/30/2018,Economists,@TimDuy,"RT @CardiffGarcia: [1/2] In Jan 2017 I tried to understand whether the outcomes of Trump-ian economic populism, or ""pluto-populism"" if you…" +06/30/2018,Economists,@TimDuy,RT @PotomacRC: @sam_a_bell @TimDuy @Sam1Fleming @bindersab @PeterContiBrown 1.We are talking about extreme events. 2.Bernanke was nearly no… +06/30/2018,Economists,@TimDuy,Because Democrats aren't really proposing a socialist agenda. Trump's badgering of companies - effectively an effor… https://t.co/N0jOa306vg +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown You can make a good argument that the most importan… https://t.co/4yhWFDDTMH +06/30/2018,Economists,@TimDuy,The Fed has been raising rates since 2015. They have already been doing something about it - pre-emptive policy. https://t.co/87vngRXXWz +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Because he wouldn’t fire Volker. 😉 +06/30/2018,Economists,@TimDuy,@PotomacRC @sam_a_bell @Sam1Fleming @bindersab @PeterContiBrown I wonder too if Kudlow’s remarks were intended for… https://t.co/M5PGb6dmse +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown …that blowback could be severe. +06/30/2018,Economists,@TimDuy,"RT @jklabar: Congrats @nwnatural @portlandgeneral on this recognition! + +@GreaterPDX is lucky to work with your teams! https://t.co/P2dS980j…" +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown The issue is probably less about the now and more a… https://t.co/9b4bec3KS7 +06/30/2018,Economists,@TimDuy,"RT @NickTimiraos: A lot of people said the Fed was making a big mistake last year when inflation was proving stubborn to the downside, but…" +06/30/2018,Economists,@TimDuy,@Noahpinion Insider-outsider +06/30/2018,Economists,@TimDuy,Finally @aaron_watson which is why I am here. You don’t get these Texas acts out in Oregon very often! https://t.co/oDjb3fLHdz +06/30/2018,Economists,@TimDuy,RT @tomkeene: *KUDLOW HOPES FED UNDERSTANDS MORE JOBS DON'T CAUSE INFLATION ...it starts https://t.co/gLqs5iW7E9 +06/30/2018,Economists,@TimDuy,“I have apologize now for my voice” is not a great opener and does not bode well for this set. +06/30/2018,Economists,@TimDuy,https://t.co/sVwdFspog5 +06/30/2018,Economists,@TimDuy,Second act is Jamie O’Neal...for those of you who remember “There Is No Arizona.” +06/30/2018,Economists,@TimDuy,Covering “Don’t Stop Believing” now. Might work better with a more lubricated crowd. +06/30/2018,Economists,@TimDuy,First act is Bend area band Countrified. https://t.co/WUBISbeQhJ +06/30/2018,Economists,@TimDuy,Kicked off the concert with the local rodeo queens. https://t.co/UjIaMPjFhw +06/30/2018,Economists,@TimDuy,My daughter graciously agreed to join me! https://t.co/J1T6hQ3GzN +06/30/2018,Economists,@TimDuy,Live tweeting tonight from the fourth annual La Pine Rodeo Association’s concert. It’s a sparse crowd so far on a w… https://t.co/75enB7ifmV +06/29/2018,Economists,@TimDuy,"Yes, you have to look through the quarterly noise. https://t.co/CiH1K4JQnW" +06/29/2018,Economists,@TimDuy,It’s been decades since the White House has warned the Fed the way Kudlow just did https://t.co/wRrkOWT8Vz +06/29/2018,Economists,@TimDuy,"RT @Brad_Setser: I have a few thoughts on this topic too! (thread) + +1. As Krugman notes, lots of advanced economies finance current accoun…" +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: Today in our @bopinion debate, @conorsen speculated that big corporations might be over-levered, and that the next recessio…" +06/29/2018,Economists,@TimDuy,RT @DavidBeckworth: ICYMI... https://t.co/xCtBuhFYbO +06/29/2018,Economists,@TimDuy,@eclane9668 Budget +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: When Central Americans stop coming to America because of lower fertility rates and higher GDP, Trump and the nativists are…" +06/29/2018,Economists,@TimDuy,Tell me again that Kudlow is a serious guy and not just another hack. https://t.co/eugCY8MA6u +06/29/2018,Economists,@TimDuy,"RT @mark_dow: TFW you've been denying the recovery for 10 years, in the face of the longest expansion ever, and you insist it's the Fed who…" +06/29/2018,Economists,@TimDuy,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Economists,@TimDuy,“Leading” or “hyping”? https://t.co/XNGBTq9BsX +06/29/2018,Economists,@TimDuy,"RT @GlennThrush: This is not a small point: + +The head of the NEC, who will be on the front lines of the next economic crisis, is lying (un…" +06/29/2018,Economists,@TimDuy,RT @greg_ip: Gonna put this on a T-shirt. https://t.co/8WfOxQoyzK +06/29/2018,Economists,@TimDuy,RT @Econ_Marshall: A president & a white house that see it as their function to cement their party's political power. Imagine belonging to… +06/29/2018,Economists,@TimDuy,"@IvanTheK Handy reference chart, with the caveat that we don’t understand the formation of inflation expectations.… https://t.co/FvgF8cNigI" +06/29/2018,Economists,@TimDuy,"RT @osullivanEcon: Inflation remains tame, but there has been some acceleration recently. Core PCE series up to 2.0% y/y in May from 1.5%…" +06/29/2018,Economists,@TimDuy,"Who could have seen this coming? (Answer: Virtually every economist). + +Bitcoin Bloodbath Nears Dot-Com Levels as M… https://t.co/e7sROaTD01" +06/29/2018,Economists,@TimDuy,RT @GagnonMacro: 2019 is shaping up to be a very informative year on the macroeconomics of inflation. It is possible the lesson will come s… +06/29/2018,Economists,@TimDuy,RT @jodiecongirl: how high do you have to be to think you can live in a bitcoin...I used to have to remind people that bitcoin isn’t rangib… +06/29/2018,Economists,@TimDuy,@NickTimiraos It has been higher a number of times in the past few years. The recent general trend is feeling more… https://t.co/dVOXZNELn7 +06/29/2018,Economists,@TimDuy,"The annualized one month change was 2.6%. That’s a number that, if sustained, would worry the Fed. That said, weak… https://t.co/AEMdtAm6Dz" +06/29/2018,Economists,@TimDuy,RT @jbarro: A national campaign to repeal state bans on same-sex marriage would serve four purposes. 1) SCOTUS-proof marriage equality. 2)… +06/29/2018,Economists,@TimDuy,RT @ukarlewitz: https://t.co/4dAtBYpvDa +06/29/2018,Economists,@TimDuy,RT @TheBudgetGuy: Pants on fire. https://t.co/3sPwqR1Ckm +06/29/2018,Economists,@TimDuy,"RT @conradhackett: In a classic experiment, 12 articles were resubmitted to the same journals in which they had already been published. Thr…" +06/29/2018,Economists,@TimDuy,"RT @HenryJGomez: ""In Minnesota, tension between urban and rural Democrats has been growing increasingly sharp. Democrats on the Iron Range…" +06/29/2018,Economists,@TimDuy,RT @bopinion: Only in America: No other successful nation tolerates a tide of roughly 100 shooting deaths per day https://t.co/roECNyslAB h… +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: ""Abolish ICE"" gains some support...from ICE agents. https://t.co/0KxEVTJtvL" +06/29/2018,Economists,@TimDuy,RT @TheRealEveret: Not too late. https://t.co/lzRcOAN16d +06/29/2018,Economists,@TimDuy,Who could have guessed? https://t.co/sHu8cymrPn +06/29/2018,Economists,@TimDuy,"RT @acrossthecurve: When it comes to curve watching, former Federal Reserve chairman Alan Greenspan has a favorite: the 5-to-30-year Treasu…" +06/29/2018,Economists,@TimDuy,RT @acrossthecurve: Two regional Federal Reserve presidents warned that worries over escalating trade disputes are increasingly weighing on… +06/29/2018,Economists,@TimDuy,RT @ObsoleteDogma: That’s not even the full list of things Trump has done—in just the last week!—that benefit Russia. He’s also trying to u… +06/29/2018,Economists,@TimDuy,RT @acrossthecurve: Bank of America Strategist Says He's Never Been This Bullish on the U.S. Economy https://t.co/wT1PRBEIxS via @markets +06/29/2018,Economists,@TimDuy,RT @alisterbull1: Jay Powell to deliver semi-annual report to Congress before Senate Banking Committee July 17 at 10 am in Washington +06/29/2018,Economists,@TimDuy,"RT @betsy_klein: ""In July 1776, the Gazette was one of the first newspapers to publish the Declaration of Independence, although it appeare…" +06/29/2018,Economists,@TimDuy,"RT @ezraklein: A baby fell and hit his head. The family took hi to the ER. The ER said he was fine, let him take a nap, fed him some formul…" +06/28/2018,Economists,@TimDuy,RT @nickconfessore: Three months after the Cambridge Analytica scandal -- and arguably because of it -- California has just passed what may… +06/28/2018,Economists,@TimDuy,RT @HumbleStudent: @StockBoardAsset @MarkYusko @Schuldensuehner @OccupyWisdom @Bamabroker @dlacalle_IA I find it disturbing that the chart… +06/28/2018,Economists,@TimDuy,RT @ByRosenberg: For anyone who doubts journalists' commitment: The Annapolis crime reporter just watched his colleagues die and feared for… +06/28/2018,Economists,@TimDuy,RT @mattyglesias: Trump’s inability to perform basic presidential functions is striking https://t.co/0M0vvIyvfz +06/28/2018,Economists,@TimDuy,RT @AnnieLowrey: The gap between the feverish discourse about the robot-driven trucker-jobs apocalypse and the pressing reality of worker s… +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: I haven't seen one tweet today about children being imprisoned in cages because their parents asked for asylum in the Un… +06/28/2018,Economists,@TimDuy,@jodiecongirl Sorry! +06/28/2018,Economists,@TimDuy,RT @boes_: What comes next when the Fed gets to its estimate of neutral? Does it really need to keep hiking beyond that to slow the economy… +06/28/2018,Economists,@TimDuy,RT @IvanTheK: Tweet from yesterday--> https://t.co/wm1yJ9uXBA +06/28/2018,Economists,@TimDuy,"RT @Abby_Lynes: Cully was the place where displacement wasn't supposed to happen -- nonprofits joined forces, and PSU students came up with…" +06/28/2018,Economists,@TimDuy,RT @bencasselman: There are few institutions more vital to our democracy and our communities than local newspapers. Thinking of my colleagu… +06/28/2018,Economists,@TimDuy,"RT @annsaphir: Duy warns on yield curve. Meanwhile, Fed researchers see nothing to fear: https://t.co/ExvWi6Xv4B https://t.co/iATk4AeqLC" +06/28/2018,Economists,@TimDuy,"RT @boes_: Jay Powell tells Democrats on the House Ways and Means Committee that the Fed is being cautious with rate hikes, and also that i…" +06/28/2018,Economists,@TimDuy,RT @mark_dow: Bernanke basically saying 'the market is too stupid for the Fed to risk tweaking QT plan on the fly. Too much risk of overrea… +06/28/2018,Economists,@TimDuy,"RT @conorsen: Wisconsin’s unemployment rate is 2.8%. Going to be fun when they pay workers $10,000 to relocate for those Foxconn jobs." +06/28/2018,Economists,@TimDuy,"New Fed Watch: + +https://t.co/b8z3YU1ZkI" +06/28/2018,Economists,@TimDuy,"RT @jimtankersley: A two-part warning, from the Chamber, on tariffs... https://t.co/ETDdAdHV6C" +06/28/2018,Economists,@TimDuy,RT @BobBrinker: My 2c : you will have *plenty* of time to freak out over the yield curve AFTER it inverts. it is a leading indicator ..… +06/28/2018,Economists,@TimDuy,"RT @BrianCAlbrecht: Me, after receiving a desk-rejection: ""in many ways, I did get a publication"" https://t.co/WQnzU46Zyc" +06/28/2018,Economists,@TimDuy,RT @CoryBooker: https://t.co/ZgZceOfFmU +06/28/2018,Economists,@TimDuy,Tell me again why self-driving trucks are a problem not a solution. https://t.co/X3eJjEDWLU +06/28/2018,Economists,@TimDuy,RT @jp_koning: Remember how bitcoin & Ripple were going to revolutionize cross border payments? It eventually happened. Not because they ga… +06/28/2018,Economists,@TimDuy,"RT @davidmwessel: What's really going on with the ACA: ""(De)stabilizing the ACA's individual market: A view from the states"" https://t.co/…" +06/28/2018,Economists,@TimDuy,"RT @neelkashkari: Want more affordable housing? Increase supply. ""U.S. Rental Rates Flatten in Major Cities as Supply Floods Market"" https…" +06/28/2018,Economists,@TimDuy,"RT @dandrezner: I’m way to the right of Ocasio-Cortez, but a lot of this looks pretty damn good to me. https://t.co/z2SxXGx3Z9" +06/28/2018,Economists,@TimDuy,This is how the Democrats sabotage themselves. Fear of deficits hobbled stimulus efforts in the early Obama Adminst… https://t.co/40VidU4hGr +06/28/2018,Economists,@TimDuy,The lack of Federal Reserve maneuvering room is very worrisome https://t.co/yYfwSuecsc via @equitablegrowth +06/28/2018,Economists,@TimDuy,"RT @equitablegrowth: On Thursdays, Equitable Growth brings you @delong's Worthy Reads - items on and off our website Brad recommends - here…" +06/28/2018,Economists,@TimDuy,RT @KateAronoff: This woman is going to Congress https://t.co/ofrwqRAlnb https://t.co/BLvUuqxlwx +06/28/2018,Economists,@TimDuy,RT @ianbremmer: Are those things…bad? 🤔 https://t.co/dpPHJVAw4e +06/28/2018,Economists,@TimDuy,Market rate rise may thwart Fed's balance sheet plan https://t.co/enHmQA2pi9 +06/28/2018,Economists,@TimDuy,RT @SteveMatthews12: Remember Janet Yellen considered running the economy hot? She backed away but Jerome Powell is mulling doing the same… +06/28/2018,Economists,@TimDuy,"RT @RadioFreeTom: From the 1950s through into the early 1990s, Democrats controlled the House and usually the Senate, when voting was harde…" +06/28/2018,Economists,@TimDuy,"RT @RadioFreeTom: You know what frustrates me? A 10% primary turnout in New York. People learn how to vote (find their polling station, mar…" +06/28/2018,Economists,@TimDuy,RT @RadioFreeTom: Liberals who loved Kennedy now wondering why he just handed McConnell a SCOTUS seat. I don't know why. But the larger poi… +06/28/2018,Economists,@TimDuy,You can’t build lasting change unless you show up and keep showing up. And at all levels; it can’t be just about se… https://t.co/5VRjcXn3Mz +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: Show some God damned EMOTION. Democrats were screwed beyond belief over Garland and didn't do a damned thing to even slo… +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: I expect Democrats to put up the same opposition they did to the tax cut that gutted our nation's finances--pro forma. I… +06/28/2018,Economists,@TimDuy,RT @MollyHarbarger: Let me highlight some numbers for you from this story that @rwoolington and @iff_or worked tirelessly on for awhile and… +06/28/2018,Economists,@TimDuy,"RT @AEACSWEP: ""Why I Want You to Study Economics: Increasing Diversity, Inclusion, and Opportunity in Economics"" +Listen to/ Read Loretta M…" +06/28/2018,Economists,@TimDuy,NOOOOOO! https://t.co/6gx9ojedCB +06/28/2018,Economists,@TimDuy,"RT @hblodget: Whatever Democrats choose, they need to stop using the word ""socialist."" Americans hate that idea. And Medicare-for-all isn't…" +06/28/2018,Economists,@TimDuy,"RT @daveweigel: In the last 24 hours, the midterms have changed from a referendum on Maxine Waters to a referendum on Ocasio-Cortez’s immig…" +06/27/2018,Economists,@TimDuy,"RT @ddayen: I'm all for ""finding a way"" to block a hardline Kennedy replacement, but with 49 Dems in the caucus, it seems that way has to g…" +06/27/2018,Economists,@TimDuy,"RT @AshaRangappa_: Great. Russia discussing how to exploit POTUS' vulnerabilities for their own benefit out in the open, knowing that the U…" +06/27/2018,Economists,@TimDuy,"RT @brianbeutler: This shit is EXACTLY what I was getting at in my piece on why it's a good thing @Ocasio2018 won. There's untapped energy,…" +06/27/2018,Economists,@TimDuy,RT @DuncanWeldon: Good piece from @TimDuy https://t.co/hbevd3d9IB https://t.co/StOJFn8Glt +06/27/2018,Economists,@TimDuy,RT @Pat_Garofalo: I imagine an old rich dude who is obsessed with the national debt is not who the Democrats need in 2020 https://t.co/PVGV… +06/27/2018,Economists,@TimDuy,RT @mattyglesias: This seems like a Trump voter Democrats should try to persuade. https://t.co/eLHSbhgKmH +06/27/2018,Economists,@TimDuy,"RT @ezraklein: ""McConnell’s great strength as a politician is that he doesn’t care. He doesn’t care that it’s hypocritical, he doesn’t care…" +06/27/2018,Economists,@TimDuy,RT @Pat_Garofalo: Good @pdacosta piece here on how Trump's immigration crackdown is built on a foundation of lies https://t.co/1V13AqEsPT +06/27/2018,Economists,@TimDuy,That forecast errors are autocorrelated. https://t.co/u4ftsuS2ON +06/27/2018,Economists,@TimDuy,RT @BruceBartlett: They will do as they are told to do. https://t.co/OBa08dKqFJ +06/27/2018,Economists,@TimDuy,"RT @shaneferro: Baby Boomers firebomb the world and bow out, ready to enjoy retirement and leave the world to burn for their grandchildren…" +06/27/2018,Economists,@TimDuy,RT @IvanTheK: Another shoutout for those of you who exercised your protest vote in 2016. https://t.co/QNvbGBM8RF +06/27/2018,Economists,@TimDuy,At the latest. A stumble from the trade war could cause the last 33bp to shrink away by the end of this year. https://t.co/KUBq3XyxTo +06/27/2018,Economists,@TimDuy,This is one of my concerns here - that the forward guidance is effectively the case of the Fed writing checks the m… https://t.co/LDJ2GNOYCw +06/27/2018,Economists,@TimDuy,It is tough for me to see the Fed pausing when Q2 GDP could be coming in above 4%. https://t.co/5q4shV6iAL +06/27/2018,Economists,@TimDuy,10-2 spread down to 33 basis points. +06/27/2018,Economists,@TimDuy,"RT @AnnieLowrey: And hey, some programs -- transitional jobs for the formerly incarcerated, nurse-family partnerships etc. -- really do pay…" +06/27/2018,Economists,@TimDuy,RT @mikeduncan: Historians everywhere take a drink and stare into the middle distance. https://t.co/f53Wco895Y +06/27/2018,Economists,@TimDuy,RT @eveewing: Teachers - a meaningful thing you can do right now is ensure that your students know how truly unpopular Dr. King’s actions w… +06/27/2018,Economists,@TimDuy,"RT @byHeatherLong: Reminder: It's been a long time since $HOG was ""100% in America"" +Harley started manufacturing in Brazil in 1999 +Harley t…" +06/27/2018,Economists,@TimDuy,RT @mark_dow: Disaster myopia is still alive https://t.co/vFYecWT3lI +06/27/2018,Economists,@TimDuy,RT @CardiffGarcia: Somewhat ignored because of the ongoing political backlash is that Germany has started making progress at integrating re… +06/27/2018,Economists,@TimDuy,"RT @mattyglesias: Despite liberals’ refusal to give Trump credit for the greatest diplomatic breakthrough in human history, the North Korea…" +06/27/2018,Economists,@TimDuy,"RT @calculatedrisk: Wednesday: Durable Goods, Pending Home Sales, Q2 Apartment Vacancy Survey https://t.co/C6XWkr2quB" +06/27/2018,Economists,@TimDuy,"RT @jg_environ: I was skeptical until I verified these clippings at @nytimes. In 1934, influential religious figures in US argued that Germ…" +06/27/2018,Economists,@TimDuy,"RT @OrangeLeaderUSA: @TheRickWilson ""We still want your gasoline and your lives, but right now let's talk about civility."" https://t.co/56x…" +06/27/2018,Economists,@TimDuy,RT @TheRickWilson: I noted those things just now because I refuse to play this bullshit asymmetric civility game where one side gets to shi… +06/27/2018,Economists,@TimDuy,"RT @jaybookmanajc: Bill O'Reilly on the Dixie Chicks: + +""These are callow, foolish women who deserve to be slapped around."" https://t.co/Lsk…" +06/27/2018,Economists,@TimDuy,"RT @pborish: https://t.co/vICB4IzxzR + +https://t.co/ulaclsMUWF + +Thank you @TheStalwart @JChatterleytv @juleshyman #WDYM for having me as a…" +06/27/2018,Economists,@TimDuy,"RT @TheRickWilson: Let me know how civil it was when Trump supporters threatened to rape my daughter. + +Because let me tell you something,…" +06/27/2018,Economists,@TimDuy,RT @jodiecongirl: I give up https://t.co/xQA6sYhsNa +06/26/2018,Economists,@TimDuy,"RT @Noahpinion: The myth of the illegal immigration crisis: +https://t.co/mGCSisED6H + +The myth of the Latin American immigration crisis: +ht…" +06/26/2018,Economists,@TimDuy,"RT @ForthMobility: .@OregonDOT in conjunction with @OregonDAS, @ODOEnergy, @OregonDEQ and Oregon Public Utility Commission launches a new…" +06/26/2018,Economists,@TimDuy,RT @TheStalwart: .@Brad_Setser coming up on #WDYM talking about trade. https://t.co/8oPloFweEj +06/26/2018,Economists,@TimDuy,This will be an interesting test of the importance of manufacturing for the economy. https://t.co/bk9XEEeWkB +06/26/2018,Economists,@TimDuy,RT @bradleyrsimpson: So I was at an academic conference this weekend and had to physically intervene to prevent a sexual assault by a male… +06/26/2018,Economists,@TimDuy,"RT @mbusigin: Someone asked for a recession model run yesterday while I was in and out of cell coverage, and I can't recall who, but here i…" +06/26/2018,Economists,@TimDuy,@BullandBaird I have been told they start producing in five years. +06/26/2018,Economists,@TimDuy,There has been an explosion of hazelnut orchards along I5 between Eugene and Portland. Boom brought on by developme… https://t.co/Pm3WbEzkeQ +06/26/2018,Economists,@TimDuy,@lehnerjw I know - it is a story I try to tell as well. Regionally economic success translate into higher incomes w… https://t.co/jOd1w6XWzd +06/26/2018,Economists,@TimDuy,RT @FinancialTimes: FT Exclusive: Bank of America is moving a chunk of its investment banking operations to Paris in preparation for Brexit… +06/26/2018,Economists,@TimDuy,"RT @RenMacLLC: Regionally, the West North Central saw a 22.6 point drop in confidence, according to the Conference Board. This includes Min…" +06/26/2018,Economists,@TimDuy,"@lehnerjw I here that all the time. That it’s all the developers fault. They could build less expensive, affordable… https://t.co/oJGov0yJ65" +06/26/2018,Economists,@TimDuy,"RT @GreaterPDX: The 2020 International Electric Vehicle Symposium and Exposition could bring more than 10,000 attendees to Portland. 🔋🔌 #EV…" +06/26/2018,Economists,@TimDuy,"RT @BetsBarnes: Has your child undergone a school threat assessment? + +We want to hear from you: https://t.co/UTqRaPXkgs" +06/26/2018,Economists,@TimDuy,"RT @BetsBarnes: I’ve spent the past several months following a family as they’ve grappled with a horrifying situation: + +Their son’s school…" +06/26/2018,Economists,@TimDuy,"@conorsen @ModeledBehavior Yes, I suspect this as well and it is a reason to be long PDX housing." +06/26/2018,Economists,@TimDuy,@conorsen @ModeledBehavior Fair point. +06/26/2018,Economists,@TimDuy,@conorsen @ModeledBehavior I feel like you have forgotten someone. +06/26/2018,Economists,@TimDuy,I have been here. It is pretty awesome. https://t.co/ISM3QaJ5A4 +06/26/2018,Economists,@TimDuy,@DaisyMaxey Hoping to be proven wrong. Is that close enough? +06/26/2018,Economists,@TimDuy,"But then again, maybe the goal of city officials is more about looking like they want to increase the housing suppl… https://t.co/pIY6gEzyYR" +06/26/2018,Economists,@TimDuy,"Finally, I am having trouble grasping the reason for the high system development charges for ADUs in Eugene. The in… https://t.co/SAGTvDCZMl" +06/26/2018,Economists,@TimDuy,"That is also why I think that while we should allow more ADUs, I don’t think they are really a solution to the hous… https://t.co/RVRz8H9MvM" +06/26/2018,Economists,@TimDuy,"I am happy to be proven wrong on this point, but I am suspicious that there are a huge number of homeowners who bot… https://t.co/THTPpDUaR5" +06/26/2018,Economists,@TimDuy,There is a lot to unpack in this article. My guess is that neighborhood associations resisting this change to allow… https://t.co/FoS7w3WYzy +06/26/2018,Economists,@TimDuy,"Unsurprisingly, Eugene residents attempting to undermine state law requiring more leniency in permitting of accesso… https://t.co/MtAdo5XBE9" +06/25/2018,Economists,@TimDuy,"RT @IvanTheK: Yeah, I prefer my due process to be handled extra-judicially. FFS. https://t.co/DRUhd3NOi1" +06/25/2018,Economists,@TimDuy,"RT @BobBrinker: ""Demand is exceeding capacity in most modes of transportation by a significant amount. In turn, pricing power has erupted i…" +06/25/2018,Economists,@TimDuy,"RT @ObsoleteDogma: The media loves covering “civility” because it lets them get back into their comfort zone of both-sides. + +They don’t ne…" +06/25/2018,Economists,@TimDuy,RT @BruceBartlett: The left is always afraid to energize its own base because it is afraid that whatever it does will energize the right-wi… +06/25/2018,Economists,@TimDuy,RT @GagnonMacro: @TimDuy Market interprets trade war as a supply shock. Raises inflation but lowers output. Neutral for monetary policy but… +06/25/2018,Economists,@TimDuy,"RT @ianbremmer: Red Hen DC, take a bow. https://t.co/9cqZ312PKj" +06/25/2018,Economists,@TimDuy,"RT @DavidNakamura: ""This shouldn't be complicated,"" Sarah Sanders says of immigration reform. Congress has not passed a major comprehensive…" +06/25/2018,Economists,@TimDuy,"Interestingly, 10year yield down just 1.5 basis points. https://t.co/a87XpVvvuJ" +06/25/2018,Economists,@TimDuy,"RT @calculatedrisk: Earlier from Dallas Fed: ""Texas Manufacturing Continues to Expand, Outlook Improves"" https://t.co/DPZBAPKthc" +06/25/2018,Economists,@TimDuy,RT @markets: What's going on with stocks today? Here are some theories https://t.co/6LQ1bOWHTC https://t.co/w0Y8fN4Rlg +06/25/2018,Economists,@TimDuy,@BobBrinker https://t.co/8Ej3O5cHyt +06/25/2018,Economists,@TimDuy,"RT @mark_dow: ""Mama. The liquidity. It's receding."" https://t.co/L2Cv0uPYf7" +06/30/2018,Social_workers,@kyrstensinema,RT @LocalFirstAZ: Do these look yummy? Swing by our #IndieWeekAZ Pub Crawl and score $5 drink specials and participate in a fun scavenger h… +06/30/2018,Social_workers,@kyrstensinema,"It’s been 5 years since the Yarnell Hill tragedy, the deadly wildfire that took the lives of 19 brave Granite Mount… https://t.co/JMFb6dhiPq" +06/30/2018,Social_workers,@kyrstensinema,"Proud to be endorsed by Flagstaff Mayor Coral Evans. We’re standing up for Arizonans all across the state, and I’m… https://t.co/yXhs2LkSgt" +06/30/2018,Social_workers,@kyrstensinema,#IndieWeekAZ starts tomorrow! We have so many great independent businesses in our state. Support your favorites thi… https://t.co/Ul2eQtAABZ +06/29/2018,Social_workers,@kyrstensinema,"Thanks for your support, @JoeBiden! #AZSen https://t.co/HD4yF9mBjY" +06/29/2018,Social_workers,@kyrstensinema,Proud to be endorsed by @chandlerchamber. Arizona businesses support local jobs and are pivotal to our state’s succ… https://t.co/jEQXLwcrfA +06/28/2018,Social_workers,@kyrstensinema,Proud to have Vice President @JoeBiden’s support! #AZSen https://t.co/wDCwDzu8ks +06/28/2018,Social_workers,@kyrstensinema,"In 2013, I stood with Vice President @JoeBiden as we worked across the aisle to reauthorize the Violence Against Wo… https://t.co/Yrv4f7JGne" +06/27/2018,Social_workers,@kyrstensinema,We are just a few days away from our biggest fundraising deadline yet. Will you help our campaign right now by pitc… https://t.co/JWppR4Vxfb +06/27/2018,Social_workers,@kyrstensinema,The administration’s tariffs are taking a toll on American jobs. I’m committed to making sure Arizona jobs stay exa… https://t.co/wCKgtukQkA +06/27/2018,Social_workers,@kyrstensinema,"@RaidersResort Hi @RaidersResort, for help with this issue, you can contact Congresswoman Sinema's District Office at 602-956-2285. - Staff" +06/25/2018,Social_workers,@kyrstensinema,I’m running for Senate to give every Arizonan a shot at the American Dream. With our campaign facing its most impor… https://t.co/ShBbeklBgW +06/25/2018,Social_workers,@kyrstensinema,“It’s really important that we have women like her in the Senate.” See why Krista is on #TeamSinema. #AZSen https://t.co/efiM2eh4fS +06/24/2018,Social_workers,@kyrstensinema,Take some time this weekend to make sure you’re registered to vote – then make sure your friends are too. #AZSen… https://t.co/v1NegP2sEy +06/24/2018,Social_workers,@kyrstensinema,"If the administration succeeds in removing protections for people with pre-existing conditions, Arizona families wi… https://t.co/xkPXoVTJlc" +06/23/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves quality, affordable health care. RT if you agree: Being a woman shouldn’t be considered a p… https://t.co/shV8ZKXX1w" +06/23/2018,Social_workers,@kyrstensinema,"#TitleIX became law 46 years ago, helping promote equal opportunities for women & girls in education. Grateful for… https://t.co/qCTbb5wpog" +06/23/2018,Social_workers,@kyrstensinema,The #GIBill helped millions of veterans get a college education and achieve the American Dream. A proud day in our… https://t.co/3pj8hAdk4u +06/22/2018,Social_workers,@kyrstensinema,NEWS: A dark money group is pouring money into Arizona’s Senate race to boost one of my opponents. Our campaign is… https://t.co/qI2mO0ozU4 +06/22/2018,Social_workers,@kyrstensinema,Opioid addiction is devastating Arizona communities. I’m working across the aisle to combat this crisis. This month… https://t.co/98McsR3NFZ +06/21/2018,Social_workers,@kyrstensinema,"Welcome to Phoenix, @DeandreAyton! https://t.co/8nJC6UMoXJ" +06/21/2018,Social_workers,@kyrstensinema,Election Day is coming. Have you registered to vote yet? Check your status and register here:… https://t.co/s1SSv8occi +06/21/2018,Social_workers,@kyrstensinema,We must do better for our seniors and our veterans. I’m working to improve VA care and make sure Arizona seniors ha… https://t.co/mVgnVlO2Tz +06/20/2018,Social_workers,@kyrstensinema,Too many Arizonans know the devastation that opioid addiction can cause. I'm taking action to alleviate the crisis.… https://t.co/Rr9zMchoYt +06/20/2018,Social_workers,@kyrstensinema,RT @agilbreath_az: Thank you @RepSinema for sharing your priorities with @AZChamber #AZDC2018 https://t.co/4wL3EpdsrD +06/20/2018,Social_workers,@kyrstensinema,"What the administration is doing to separate families is wrong. + +I'm ready to work with anyone who’s serious about… https://t.co/ucSUTRDNEp" +06/17/2018,Social_workers,@kyrstensinema,Happy Father's Day! #AZSen https://t.co/3ja4ezVZGf +06/16/2018,Social_workers,@kyrstensinema,"Meet David Lucier, an advocate for veterans and a proud member of #TeamSinema. https://t.co/PXm9h4KaqG" +06/16/2018,Social_workers,@kyrstensinema,See this list? 👇🏼 Chances are you or someone you love would be affected if pre-existing conditions were no longer p… https://t.co/4Cggtf9uvs +06/16/2018,Social_workers,@kyrstensinema,RT @Justice4Vets: Thank you @RepSinema for supporting the #Veterans Treatment Court Improvement Act to help us ensure we #LeaveNoVeteranBeh… +06/15/2018,Social_workers,@kyrstensinema,Proud to be a #SunDevil https://t.co/hu7mbYjGW0 +06/15/2018,Social_workers,@kyrstensinema,I’m committed to making sure Arizona seniors can retire with the dignity and security they deserve – that means hol… https://t.co/tIASY5vW0f +06/15/2018,Social_workers,@kyrstensinema,"""Since her years as a social worker in Arizona schools, Kyrsten has always been a voice for Arizona women & familie… https://t.co/AIb5XzCXje" +06/14/2018,Social_workers,@kyrstensinema,This is wrong. #FamiliesBelongTogether https://t.co/XxOqgdWOwW +06/14/2018,Social_workers,@kyrstensinema,Happy birthday to the @USArmy! Thank you for protecting our nation for 243 years! #ArmyBday https://t.co/TAKb5DMJ0C +06/14/2018,Social_workers,@kyrstensinema,"One year ago today, my friend @SteveScalise was shot during GOP baseball practice. Our hearts stopped that morning.… https://t.co/hoJgvZ6fdB" +06/13/2018,Social_workers,@kyrstensinema,"Nearly 2.8 million Arizonans have a pre-existing condition, and every single one of them deserves quality, affordab… https://t.co/kqwogMegUf" +06/13/2018,Social_workers,@kyrstensinema,“It’s really important that we have women like her in the Senate.” See why Krista is on #TeamSinema. #AZSen https://t.co/u5UXsfSWFr +06/13/2018,Social_workers,@kyrstensinema,"Happy 10th birthday, @SweetRepublic! What’s better than ice cream on a summer day in Arizona? Stop by their Scottsd… https://t.co/wBV2gU4MND" +06/13/2018,Social_workers,@kyrstensinema,We can’t go back to a time when Arizonans could be overcharged or denied coverage because of a pre-existing conditi… https://t.co/zZGpeCtncx +06/13/2018,Social_workers,@kyrstensinema,Yes!!!!!!!!! ⚽️🇺🇸⚽️🇺🇸⚽️🇺🇸⚽️🇺🇸 https://t.co/Bq2dwhra4Y +06/12/2018,Social_workers,@kyrstensinema,Want to help our campaign win big this year? Make sure you’re registered to vote! Visit https://t.co/bXjlXTW7eI… https://t.co/qgNlwYKyAz +06/12/2018,Social_workers,@kyrstensinema,“I support Kyrsten because she understands the issues that are important to the majority of Arizonans.” – Maria Ele… https://t.co/OxLhZoziLs +06/12/2018,Social_workers,@kyrstensinema,Arizonans work a lifetime to earn their Medicare and Social Security. The new tax law is putting those benefits at… https://t.co/IyFHDvqOdd +06/11/2018,Social_workers,@kyrstensinema,Are you following us on Instagram? Click here or find us at @KyrstenSinema: https://t.co/fxOkNZLGuM https://t.co/w65ZqBZIPz +06/11/2018,Social_workers,@kyrstensinema,"ICYMI: We filed more than 10,000 petition signatures to officially get on the ballot for #AZSen. I’m so thankful fo… https://t.co/tCkm8D7WrB" +06/10/2018,Social_workers,@kyrstensinema,"It’s pretty simple: equal work deserves equal pay. Today, on the anniversary of the #EqualPayAct, let’s recommit to… https://t.co/q0ZBcfdRxU" +06/10/2018,Social_workers,@kyrstensinema,Want to help our campaign win big this year? Make sure you’re registered to vote! Visit https://t.co/bXjlXTW7eI… https://t.co/EOqrPRcJQF +06/09/2018,Social_workers,@kyrstensinema,Those who have served our country deserve our respect and full support. The findings in this report are unacceptabl… https://t.co/jh7iECgrTn +06/09/2018,Social_workers,@kyrstensinema,I’m running for Senate to give every Arizonan a shot at the American Dream. Thanks to everyone on Team Sinema who j… https://t.co/Nb7ypOPe1o +06/08/2018,Social_workers,@kyrstensinema,"""We can always count on Kyrsten to fight for Arizona seniors.” – Vic Peterson, Advocate for Veterans and Seniors… https://t.co/J8NDwjceBA" +06/08/2018,Social_workers,@kyrstensinema,Happy birthday to Arizona's @GabbyGiffords! Thank you for your service and your friendship. Your incredible grit an… https://t.co/qDcbKD659N +06/07/2018,Social_workers,@kyrstensinema,Those who have risked everything for our country deserve to know the care and benefits they’ve earned will be prote… https://t.co/fcIlQLnYnl +06/06/2018,Social_workers,@kyrstensinema,Happy #GlobalRunningDay! 🏃🏼‍♀️ https://t.co/nI51dpw9Q7 +06/06/2018,Social_workers,@kyrstensinema,Today is the 74th anniversary of #DDay. We will never forget the sacrifices made on this day to defend our freedom. https://t.co/S9oHf2DsgG +06/06/2018,Social_workers,@kyrstensinema,RT @JeffFlake: .@SteveScalise back on the field this morning. This does my heart good. https://t.co/97uQImUgCl +06/05/2018,Social_workers,@kyrstensinema,"""Kyrsten knows that Dreamers are vital to communities across Arizona.” – Alvaro, Arizona Student, Dreamer #AZSen https://t.co/N3EQKDPrVB" +06/05/2018,Social_workers,@kyrstensinema,Proud to stand with the everyday Arizonans this campaign is all about. #AZSen https://t.co/X8nk7KskII +06/04/2018,Social_workers,@kyrstensinema,"“Kyrsten gets things done for veterans and will give Arizonans an independent voice in the Senate.” – David Lucier,… https://t.co/lr30qir1ML" +06/04/2018,Social_workers,@kyrstensinema,Had a great week hearing from everyday folks across the state and talking about our campaign to get things done for… https://t.co/JMJ6wVxO28 +06/03/2018,Social_workers,@kyrstensinema,#sundayinspiration https://t.co/Hngoqb8Zml +06/03/2018,Social_workers,@kyrstensinema,Enjoyed hearing from folks in Cochise County at our Meet and Greet. Ready to join #TeamSinema? Sign up here:… https://t.co/zXXRhuYoB9 +06/02/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for Arizona and make sure everyone gets his or her shot at the American d… https://t.co/ffCYAl9B4O +06/02/2018,Social_workers,@kyrstensinema,Great speaking with folks in Green Valley. We're building a statewide campaign to get things done for everyday Ariz… https://t.co/iVcCi1x3Pg +06/01/2018,Social_workers,@kyrstensinema,Thanks to everyone who stopped by our Meet and Greet in Pinal County! Enthusiasm is growing across the state for ou… https://t.co/vJR4CVQrug +06/01/2018,Social_workers,@kyrstensinema,"Arizona firefighters put their lives on the line, day in and day out, to protect families across our state. I'm pro… https://t.co/x8cqxFbEyH" +06/01/2018,Social_workers,@kyrstensinema,"Today marks 150 years since the Navajo Treaty of 1868 was signed. On this anniversary, we join the Navajo in “recog… https://t.co/2PKSgCh0Gl" +05/31/2018,Social_workers,@kyrstensinema,Taking care of our veterans is one of the most important obligations we have as Americans. I’ve worked across the a… https://t.co/2oesXEwI6D +05/29/2018,Social_workers,@kyrstensinema,I’m running for Senate to cut through the chaos in Washington and get things done for everyday people. Let’s go win… https://t.co/7yXdjgDFfG +05/29/2018,Social_workers,@kyrstensinema,“I am so proud of Kyrsten and thankful for her work to show every child what it looks like to be a leader and to gi… https://t.co/kLMtbWeCEq +05/29/2018,Social_workers,@kyrstensinema,"“For years now, I have watched Kyrsten support local shops, and I know that she will continue to support Arizona an… https://t.co/FCPNK1mhU7" +05/29/2018,Social_workers,@kyrstensinema,"“I’m honored to be with my sister, Kyrsten, as she gets her name on the ballot for the U.S. Senate. Kyrsten has spe… https://t.co/UHbvwArwqs" +05/29/2018,Social_workers,@kyrstensinema,"“We can always count on Kyrsten to fight for Arizona seniors. Kyrsten will defend Medicare and Social Security, whi… https://t.co/P4BrreNv7v" +05/29/2018,Social_workers,@kyrstensinema,"“Kyrsten is a tireless leader, and women and families across Arizona can count on her to get things done in the U.S… https://t.co/nQHrFFYQEw" +05/29/2018,Social_workers,@kyrstensinema,"""Kyrsten knows Dreamers are vital to communities across Arizona. I’m thankful for her leadership and her tireless c… https://t.co/ofzI52sdsv" +05/29/2018,Social_workers,@kyrstensinema,"“From her first job as a rape crisis counselor, to her work as a social worker in AZ schools, to her fight to incre… https://t.co/RDG2Zu6N1r" +05/29/2018,Social_workers,@kyrstensinema,"“Kyrsten never backs down from a fight, and I’m proud to stand alongside her in her campaign for Senate. Kyrsten ge… https://t.co/jbFn0i3N32" +05/29/2018,Social_workers,@kyrstensinema,I’m so proud to have been joined today by some of the people who have shaped my life and who continue to inspire me… https://t.co/lslopiXfJf +05/29/2018,Social_workers,@kyrstensinema,"I’m laser-focused on addressing the issues that matter to Arizona families, like providing veterans with the care t… https://t.co/37UV2oN3z7" +05/29/2018,Social_workers,@kyrstensinema,I launched this campaign to fight for our shared Arizona values. We believe that everyone deserves a shot at the American Dream. #AZSen +05/29/2018,Social_workers,@kyrstensinema,"Today was a big day! We filed more than 10,000 petition signatures to officially get on the #AZSen ballot. https://t.co/Dm9sH75qef" +05/28/2018,Social_workers,@kyrstensinema,The brave men and women who have served our country deserve our respect and full support. I’ve worked across the ai… https://t.co/FMWn53N55C +05/28/2018,Social_workers,@kyrstensinema,"Today on Memorial Day, we honor the memory of the brave men and women who gave their lives in service to our countr… https://t.co/vb1ssPVdl6" +05/28/2018,Social_workers,@kyrstensinema,I’m working to make sure no family has to go through what this Arizona family endured. This week our commonsense bi… https://t.co/DD4uTnbQAl +05/26/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for everyday Arizonans. Join our campaign: https://t.co/cXnhCdxepN #AZSen https://t.co/WoDqZhpBBm +05/25/2018,Social_workers,@kyrstensinema,Washington politicians should never get between a woman and her doctor. The administration's new policy will make i… https://t.co/MXKzn0N1br +05/25/2018,Social_workers,@kyrstensinema,It's our duty to ensure the brave men & women who served our country have the tools they need to successfully trans… https://t.co/c4Husr7i8L +05/24/2018,Social_workers,@kyrstensinema,RT @PatrickNkelley: The #FY19NDAA will be named after @SenJohnMcCain +05/24/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves quality, affordable health care. #AZSen https://t.co/UdMjzSIAi5" +05/24/2018,Social_workers,@kyrstensinema,RT @Just_Deet: @kyrstensinema was one of my college professors and I'm happy to see her running! Join me in supporting Kyrsten Sinema via @… +05/24/2018,Social_workers,@kyrstensinema,"Our health care system is broken. A new report says premium increases of more than $1,300 are expected for many Ari… https://t.co/lUMIBSW806" +05/23/2018,Social_workers,@kyrstensinema,Awesome! The Super Bowl is coming back to the best state in the Union! 🌵☀️ https://t.co/zMs7hq12Mz +05/22/2018,Social_workers,@kyrstensinema,"RT @MHedge_NAIFA: House passes S. 2155 containing Senior Safe Act. Great win for consumers, financial advisors, and @NAIFA Bill next heads…" +05/22/2018,Social_workers,@kyrstensinema,Arizonans know the impact Joe Arpaio has had on our state. Taxpayers are *still* paying for his tenure as sheriff.… https://t.co/A28XZr3uGI +05/22/2018,Social_workers,@kyrstensinema,"A woman, her family, and her doctor should decide what’s best for her health – not Washington politicians. The admi… https://t.co/LnAxgYwZvU" +05/21/2018,Social_workers,@kyrstensinema,"House leadership broke its promise to act on immigration, so I joined a bipartisan group of colleagues to go around… https://t.co/3l4c3ubCbp" +05/20/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/irk7ln18ip +05/20/2018,Social_workers,@kyrstensinema,"Every community in Arizona deserves the opportunities high-speed internet can unlock, yet right now nearly 900,000… https://t.co/rsB2flHJ3F" +05/20/2018,Social_workers,@kyrstensinema,I’m working to make sure our vets get high-quality health care when and where they need it. Our bill to reform the… https://t.co/80aicP5hGG +05/19/2018,Social_workers,@kyrstensinema,"Today on #ArmedForcesDay, we honor the brave men and women who have risked their lives in service to our country.… https://t.co/vuXcBYtXR9" +05/17/2018,Social_workers,@kyrstensinema,Standing up for our DREAMers isn't just the right thing to do – it's also crucial for our economy. We need to put p… https://t.co/cY3oCcXufo +05/16/2018,Social_workers,@kyrstensinema,"No child should go without a doctor, and no family should ever go bankrupt from medical bills. #AZSen https://t.co/3BeKtOhKsD" +05/16/2018,Social_workers,@kyrstensinema,"This is the fastest run of my life. Hard work pays off! + +#bettysquad #womenfortri #runfast #workhard #workharder https://t.co/GSdyUSF5Fv" +05/16/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead. That means making sure every Arizonan has access to quali… https://t.co/ZasiS3c1Uc +05/15/2018,Social_workers,@kyrstensinema,Arizona communities and the firefighters protecting them want the SuperTanker in the air this fire season. I’m work… https://t.co/xvw3QVxVQ4 +05/14/2018,Social_workers,@kyrstensinema,Arizona taxpayers are still paying to clean up the mess Joe Arpaio made as sheriff. We can’t afford to send him to… https://t.co/t7yecghG01 +05/13/2018,Social_workers,@kyrstensinema,Happy Mother's Day! https://t.co/Gg5QMKsGos +05/12/2018,Social_workers,@kyrstensinema,We need @GlobalSuperTank in the air this fire season to save lives and protect our communities from fire. I’m worki… https://t.co/bptBd1iNlo +05/12/2018,Social_workers,@kyrstensinema,I know what it’s like for a family to struggle to make ends meet. That’s why I’m running for Senate to help everyda… https://t.co/uk7W3iR0Wj +05/11/2018,Social_workers,@kyrstensinema,"No child should go without a doctor, and no family should ever go bankrupt from medical bills. #AZSen https://t.co/ELeJjI8g4H" +05/11/2018,Social_workers,@kyrstensinema,"Arizonans deserve results from Washington, not chaos. I’m running for Senate to get things done for everyday people… https://t.co/mtwqJTpFvR" +05/10/2018,Social_workers,@kyrstensinema,Arizonans know the impact Arpaio’s dangerous & divisive actions have had on our state. Taxpayers are *still* paying… https://t.co/76DYRfJwz7 +05/10/2018,Social_workers,@kyrstensinema,HERESY https://t.co/vRw1dyF3DP +05/09/2018,Social_workers,@kyrstensinema,The @GlobalSuperTank can cover more than 1.5 miles of forest in one trip and has nearly 4X the capacity of a tradit… https://t.co/v24UuUOsIo +05/09/2018,Social_workers,@kyrstensinema,A good tax law should provide relief for everyday families. Unfortunately the partisan law passed last year actuall… https://t.co/vm9zJbpSad +05/08/2018,Social_workers,@kyrstensinema,"On #TeacherAppreciationDay I remember Ms. Wherry, my first grade teacher at Harelson Elementary. Ms. Wherry was the… https://t.co/bKEZUEKyy5" +05/08/2018,Social_workers,@kyrstensinema,Great to meet so many enthusiastic supporters in Prescott last week! Thanks to @YavapaiDemocrat for having me. Toge… https://t.co/2YaDhypdbg +05/05/2018,Social_workers,@kyrstensinema,"All Americans who wear the uniform deserve our respect and full support, both on the battlefield and when they retu… https://t.co/tqG4KIE9zo" +05/05/2018,Social_workers,@kyrstensinema,Arizonans deserve results from Washington – not chaos. That’s why I’m running for Senate to get things done for eve… https://t.co/3JLgX8ATvv +05/05/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/bxRwIUiB2l +05/04/2018,Social_workers,@kyrstensinema,"I’m grateful to the Hopi council members and veterans who shared their stories with me this week. In the Senate, I’… https://t.co/AKGPHWbIW3" +05/04/2018,Social_workers,@kyrstensinema,"Here’s what I believe: Every Arizonan deserves access to quality, affordable health care. In the U.S. Senate, I’ll… https://t.co/SMHqkT9JiV" +05/04/2018,Social_workers,@kyrstensinema,"We have work to do to improve our health care system, but repealing everything without real solutions is dangerous… https://t.co/Yn1vqrL5zF" +05/04/2018,Social_workers,@kyrstensinema,"One year ago, House GOP leaders passed their health care repeal bill. This bill was bad for Arizona. +—About 400K Ar… https://t.co/ceLAQ4TDTh" +05/03/2018,Social_workers,@kyrstensinema,Arizonans deserve better than Joe Arpaio in the Senate. We’ve rejected his dangerous and divisive behavior before.… https://t.co/Q0pAdKi5qw +05/03/2018,Social_workers,@kyrstensinema,Just rec’d the best email a teacher could ever hope for - an excellent student saying thanks for the opportunity to… https://t.co/Z6V3rp5ayz +05/03/2018,Social_workers,@kyrstensinema,"@RafaelAnchia - the very best of Texas! Love you dearly, mi amigo ❤️ https://t.co/GKhQm00fFn" +05/02/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/OOb4B1fv9o +05/01/2018,Social_workers,@kyrstensinema,"For #SmallBusinessWeek, we're highlighting some of Arizona’s outstanding small businesses! + +Today's feature is Flag… https://t.co/cU35ef0JXD" +04/30/2018,Social_workers,@kyrstensinema,It's #SmallBusinessWeek! Arizona is home to some of the best #SmallBiz in the country. They're creating good-paying… https://t.co/pI6nM551Vx +04/28/2018,Social_workers,@kyrstensinema,Thanks Ryan! https://t.co/cXPxmEZWKR +04/27/2018,Social_workers,@kyrstensinema,"All Americans who wear the uniform deserve our respect and full support, both on the battlefield and when they retu… https://t.co/FblGFGXXzd" +04/27/2018,Social_workers,@kyrstensinema,RT @AlisaTongg: @kyrstensinema @hiral4congress I loved listening to your perspective and how your work as a social worker informs your appr… +04/27/2018,Social_workers,@kyrstensinema,RT @_maryellenk: @jonfavs @kyrstensinema as an MSW student it’s so inspiring to see fellow social workers serving in public office. Thanks… +04/27/2018,Social_workers,@kyrstensinema,Thanks for having me on the pod! Big things happening in AZ. @hiral4congress ran a great race. We’re keeping up the… https://t.co/r22Ue3VaIm +04/27/2018,Social_workers,@kyrstensinema,"RT @PodSaveAmerica: New Pod! Trump calls into his favorite program, Ronny Jackson withdraws, Mulvaney says the quiet part out loud, Kanye t…" +04/26/2018,Social_workers,@kyrstensinema,I know what it’s like for a family to struggle to make ends meet. That’s why I’m running to help everyday people ge… https://t.co/a3uHgcm8qk +04/26/2018,Social_workers,@kyrstensinema,"On to November, @hiral4congress! https://t.co/Kwc8dMhgmu" +04/25/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/oc1JLNOUYn +04/25/2018,Social_workers,@kyrstensinema,Thanks @djblp! https://t.co/lB2tjqOfN7 +04/25/2018,Social_workers,@kyrstensinema,"First cup of coffee since Saturday and holy goodness, it’s delicious. + +Stomach flu/virus monster, I finally beat y… https://t.co/FiXFmJP1Or" +04/25/2018,Social_workers,@kyrstensinema,Tonight’s #AZ08 results show that Arizonans are fed up with the chaos in Washington. November is coming. Pitch in n… https://t.co/sGlhnjE6I5 +04/25/2018,Social_workers,@kyrstensinema,My family faced tough times when I was a kid. I’ll never forget the great teachers and schools that helped me get m… https://t.co/WOLnmNdzb2 +04/24/2018,Social_workers,@kyrstensinema,"I’m running to make sure Washington works for everyday Arizonans, not against them. Join our campaign:… https://t.co/mUqsOQp0Pd" +04/23/2018,Social_workers,@kyrstensinema,"RT if you agree: Every Arizonan deserves access to quality, affordable health care. #AZSen https://t.co/UuqqURr1mp" +04/22/2018,Social_workers,@kyrstensinema,"On #EarthDay, we renew our commitment to being good stewards of the earth. I'm committed to protecting our parks an… https://t.co/Yu4djtEQiu" +04/22/2018,Social_workers,@kyrstensinema,Pat Tillman: the @ASU student behind the legacy. Watch this touching tribute to Pat. #salutetoservice #neverstop… https://t.co/4W0VpetyRC +04/22/2018,Social_workers,@kyrstensinema,"Pat Tillman's legacy of service, passion, and integrity inspires us all. He is an Arizona hero. 14 years after he d… https://t.co/LnoEaziUQb" +04/21/2018,Social_workers,@kyrstensinema,Another #PatsRun in the books for #TeamSinema! We had a great morning supporting @pattillmanfnd scholars. Thanks to… https://t.co/iHLOAGjKrA +04/21/2018,Social_workers,@kyrstensinema,#TeamSinema is up bright and early for #PatsRun! A great day to support @pattillmanfnd scholars. #NeverStop… https://t.co/psdd9eCytv +04/20/2018,Social_workers,@kyrstensinema,Admission is free tomorrow at all National Parks to kick off National Park Week! #FindYourPark… https://t.co/j39yDrri0i +04/19/2018,Social_workers,@kyrstensinema,"As Arizonans and Westerners, we treasure our public lands and the role they play in our special way of life. Gratef… https://t.co/20lAkeytBR" +04/19/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for everyday people. Join the campaign today: https://t.co/cXnhCdxepN… https://t.co/OWIIZiEXnL +04/19/2018,Social_workers,@kyrstensinema,I’ll always #StandWithPP and protect health care for women and families across Arizona. Proud to receive @PPact’s e… https://t.co/0wq2ULPetU +04/19/2018,Social_workers,@kyrstensinema,"Watching this video reminded me once again why I’m so proud to be a #SunDevil. Excellent students, top-notch educat… https://t.co/sI4gHRuWVp" +04/19/2018,Social_workers,@kyrstensinema,.@Interior’s plan to double entrance fees at the Grand Canyon was unacceptable. Arizonans spoke up and now there’s… https://t.co/tDEPlsdbkR +04/18/2018,Social_workers,@kyrstensinema,"I’m running for Senate to get things done for everyday people. + +Join the campaign today: https://t.co/BIjYp9WiXm… https://t.co/8RM9bf6Z5F" +04/17/2018,Social_workers,@kyrstensinema,Arizonans deserve results from Washington – not chaos. #AZSen https://t.co/oGXm32iie3 +04/17/2018,Social_workers,@kyrstensinema,Public service isn’t about showing fealty to party leaders. It’s about doing what’s best for your state and country… https://t.co/n2X5FGAFwb +04/16/2018,Social_workers,@kyrstensinema,So incredibly amazed by @des_linden winner of the #BostonMarathon today! First American woman to win the race since… https://t.co/bR3xn9nexq +04/16/2018,Social_workers,@kyrstensinema,It’s National Volunteer Week! This week we celebrate service and give thanks to all the amazing volunteers who make… https://t.co/HdkrgE0bsi +04/15/2018,Social_workers,@kyrstensinema,Last week was a big week for our campaign. Take a look at some of the highlights. https://t.co/A4BQxOLqaB #AZSen +04/13/2018,Social_workers,@kyrstensinema,"It was another big week for our campaign! We launched our first TV ad and heard from voters in Flagstaff, Tucson, a… https://t.co/uK7PIMqtWW" +04/13/2018,Social_workers,@kyrstensinema,No family should ever have to choose between taking a sick kid to the doctor or putting food on the table. #AZSen https://t.co/FwkimupDAT +04/12/2018,Social_workers,@kyrstensinema,“I bring people together because that’s how you get stuff done.” https://t.co/pUpaHXtHP1 #AZSen +04/11/2018,Social_workers,@kyrstensinema,"As Yom HaShoah begins, we remember the six million Jewish lives lost in the Holocaust. https://t.co/O3GQ3LUbXi https://t.co/vhYEi0WQ4a" +04/11/2018,Social_workers,@kyrstensinema,Happy #NationalPetDay from the pets of #TeamSinema! #AZSen https://t.co/ZMf4Zgw6D0 +04/10/2018,Social_workers,@kyrstensinema,"For many everyday families, the wage gap means hundreds of thousands in lost income over the course of a lifetime.… https://t.co/MXVQLQk677" +04/10/2018,Social_workers,@kyrstensinema,"Arizona women deserve equal pay for equal work. On #EqualPayDay, we recommit to working to make it a reality. #AZSen https://t.co/Maunu8EYnR" +04/10/2018,Social_workers,@kyrstensinema,Thanks @DemsofTucson for having me! Great speaking with you about our campaign for everyday Arizonans. #AZSen https://t.co/q40Qb0UwlE +04/09/2018,Social_workers,@kyrstensinema,"Four years after the #PhoenixVA scandal broke, there’s still more to do to hold the VA accountable. I’m working to… https://t.co/TQ5s8vvT7o" +04/09/2018,Social_workers,@kyrstensinema,"I've always been independent. But don't just take it from me – ask my big brother, Paul. + +We’re on the air with ou… https://t.co/IVutBppNsC" +04/09/2018,Social_workers,@kyrstensinema,"RT @jeremyduda: .@kyrstensinema drops her first ad of the #AZSEN race. Ad, which features her brother, a retired Marine & Tucson cop, touts…" +04/07/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves access to quality, affordable health care. #AZSen https://t.co/yZ9PyCaDk9" +04/07/2018,Social_workers,@kyrstensinema,Great discussion with the Flagstaff Women’s Leadership Network! These women know how to get stuff done. #AZSen https://t.co/A2a6h6Xmsl +04/06/2018,Social_workers,@kyrstensinema,"Everyday people know if they don’t do their jobs, they won’t get paid. But some members of Congress think they can… https://t.co/sHcK8JxOqn" +04/06/2018,Social_workers,@kyrstensinema,Headed to @PhoenixPrideAZ this weekend? Stop by the #TeamSinema booth to sign our ballot petition and join our camp… https://t.co/Ka3nwJSwtI +04/06/2018,Social_workers,@kyrstensinema,Good news for Valley neighborhoods: Most Phoenix Sky Harbor flight paths will return to their old routes. https://t.co/GV2N5Y6W8m #AZSen +04/05/2018,Social_workers,@kyrstensinema,Today is #GoldStarSpousesDay. Thank you to all the families of our fallen heroes for your service and sacrifice. https://t.co/XgqfMB08Sk +04/05/2018,Social_workers,@kyrstensinema,"Happy #NationalBurritoDay, or as we call it in #Arizona, Thursday. +Faves: +@americastaco - bean 🌯 + +@greendamon - h… https://t.co/gJeErWpVMH" +04/04/2018,Social_workers,@kyrstensinema,"It’s pretty simple: +—Hardworking Arizonans deserve a raise. +—Members of Congress do not. + +That’s why I passed a law… https://t.co/nWIEEM2EgE" +04/04/2018,Social_workers,@kyrstensinema,"When Arizona schools were at risk of losing millions in funding, I worked across the aisle to protect our kids’ edu… https://t.co/HxqAFc0bkr" +04/04/2018,Social_workers,@kyrstensinema,"""Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate; only love can do that.” + +5… https://t.co/EvRZBpLWja" +04/04/2018,Social_workers,@kyrstensinema,Arizonans earn their Medicare and Social Security benefits through a lifetime of hard work. I’ll always protect the… https://t.co/fMrI7v2Heo +04/03/2018,Social_workers,@kyrstensinema,It’s #AZGivesDay! Today we recognize Arizona nonprofits and the critical role they play in our communities. Find a… https://t.co/hLLn4p1sxu +04/02/2018,Social_workers,@kyrstensinema,"Joined Arizona colleagues from both sides of the aisle to: +—Stop Congress from getting a raise +—Give our military i… https://t.co/C6Ab5ZXIIm" +04/02/2018,Social_workers,@kyrstensinema,"When Arizona schools were at risk of losing $344 million, I worked across the aisle with @SenJohnMcCain to protect… https://t.co/QIcsiaOYkh" +04/01/2018,Social_workers,@kyrstensinema,Happy Easter! +04/01/2018,Social_workers,@kyrstensinema,"Arizona voters set aside billions for our kids’ education. When we learned those dollars were at risk, I worked acr… https://t.co/jg854vmBQx" +03/31/2018,Social_workers,@kyrstensinema,"I’m running for Senate to cut through the chaos in Washington and get things done for everyday Arizonans. + +Tonight… https://t.co/QbrO1Fcr4c" +03/31/2018,Social_workers,@kyrstensinema,RT @rollcall: Members of Congress from both sides of the aisle bond over “the hardest workout you’ll ever do.” https://t.co/pfenD7LV2Y +03/30/2018,Social_workers,@kyrstensinema,Keeping Arizona seniors safe in the era of data breaches is everyone’s responsibility. I’m working to make sure Con… https://t.co/mEjCdrzPMz +03/30/2018,Social_workers,@kyrstensinema,Happy Passover to all who are celebrating tonight. Chag Sameach! +03/30/2018,Social_workers,@kyrstensinema,"I owe a large debt to my country. I got my shot, and now it’s my duty to help others get theirs. + +Join our team:… https://t.co/TGTD23NO3M" +03/29/2018,Social_workers,@kyrstensinema,"All eyes are on Arizona this year. I’m in one of the toughest Senate races in the country, and we’re coming up on o… https://t.co/bnnyTbj2iT" +03/29/2018,Social_workers,@kyrstensinema,Good luck to the @Dbacks this season! #DbacksOpeningDay #GenerationDbacks #OpeningDay https://t.co/6FFgONxnXy +03/29/2018,Social_workers,@kyrstensinema,"Arizonans deserve results from Washington – not chaos. That’s why I’m running for Senate. #AZSen + +Join our campaign… https://t.co/mPUc7pGlze" +03/28/2018,Social_workers,@kyrstensinema,"Best way to start the day - a killer workout w/ friends! + +@RepTomGraves @RepKathleenRice @RepStephMurphy @GOPLeader… https://t.co/4JdkAffiud" +03/28/2018,Social_workers,@kyrstensinema,We’re protecting Arizonans’ hard-earned savings from scams. Follow and share these five tips to stay a step ahead o… https://t.co/jmTSOETqd9 +03/27/2018,Social_workers,@kyrstensinema,Arizonans deserve better than Joe Arpaio in the Senate. We’ve rejected his dangerous and divisive behavior before.… https://t.co/ZecGXg2tLi +07/01/2018,Social_workers,@RepBarbaraLee,"Today, my staff attended the X2 Rise Up conference led by My Sister Arise Minsitries and Tinka from @106KMEL’s Worl… https://t.co/4nin1eoSyp" +06/30/2018,Social_workers,@RepBarbaraLee,Donald Trump has created a humanitarian crisis. Young children have been ripped from their parents. Families – asyl… https://t.co/UuQYjnOMC0 +06/30/2018,Social_workers,@RepBarbaraLee,We need comprehensive childhood education and family services to break the cycle and lift families #OutOfPoverty. C… https://t.co/4pwWQregJh +06/30/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: While visiting @wrtpbigstep on the Pathways #OutOfPoverty #ListeningTour, we joined students and staff to discuss how the pr…" +06/30/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Following the tour of @wrtpbigstep, @RepBarbaraLee, @RepGwenMoore, and I sat down with stakeholders to hear about the day-to…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @NextDoorMil: Special guests at Next Door today: @RepGwenMoore, @WhipHoyer & @RepBarbaraLee came as part of a nationwide anti-poverty to…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @RepGwenMoore: At Gee’s Clippers w/ my sister in the struggle @RepBarbaraLee. + +Gee’s is on the frontlines, providing job training, re-en…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: As part of our Pathways #OutOfPoverty #ListeningTour, we joined parents at Next Door Educare to discuss how housing early ch…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: I'm in Milwaukee, WI kicking off the next leg of the Pathways #OutOfPoverty #ListeningTour with @RepBarbaraLee & @RepGwenMoo…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @RepGwenMoore: Kicking off Milwaukee’s Pathways Out of Poverty Tour w/ @WhipHoyer & @RepBarbaraLee today @ Next Door MKE + +So proud to s…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @OfficialCBC: .@capgaznews reporters worked through their tears Thursday to get the next day's paper out, displaying the courage & commi…" +06/29/2018,Social_workers,@RepBarbaraLee,Joe Hawkins is Executive Director of @lgbtqoakland. He has been a fearless advocate for #LGBTQ rights in the… https://t.co/wlC24NGLWk +06/29/2018,Social_workers,@RepBarbaraLee,"Wishing the Association of Black +Psychologist an inspiring gathering this week in #Oakland as they celebrate 50 ye… https://t.co/zCYbuAJE5V" +06/28/2018,Social_workers,@RepBarbaraLee,RT @RepAnthonyBrown: I'm stricken with grief that there are several fatalities and injuries at one of our hometown newspapers. The injured… +06/28/2018,Social_workers,@RepBarbaraLee,RT @HRC: Today’s anniversary of the #Stonewall riots is a reminder that we must center the most vulnerable in our communities and resist th… +06/28/2018,Social_workers,@RepBarbaraLee,"RT @ProChoiceCaucus: Make no mistake: @POTUS, @VP & @SenateMajLdr will use Justice #AnthonyKennedy's retirement to further erode our most c…" +06/27/2018,Social_workers,@RepBarbaraLee,Today is #HIVTestingDay. Spread the word and help us defeat AIDS for good by getting tested. Find out your status h… https://t.co/8FMRUgyw7z +06/27/2018,Social_workers,@RepBarbaraLee,"Justice Kennedy’s retirement puts our fundamental rights – to reproductive health care, to marry, to equality under… https://t.co/3LdOct5Bi1" +06/27/2018,Social_workers,@RepBarbaraLee,This ceasefire agreement in South Sudan is an important step towards peace. The US needs to maintain our commitment… https://t.co/X5iNIW32Sm +06/27/2018,Social_workers,@RepBarbaraLee,Can’t imagine a more fitting end to #ImmigrantHeritageMonth than the resounding rejection of @HouseGOP’s bigoted im… https://t.co/dio9J1RaQ6 +06/27/2018,Social_workers,@RepBarbaraLee,The courts are saying – loud and clear – that #FamiliesBelongTogether. I couldn’t agree more – zero tolerance is un… https://t.co/P50DQHVPcN +06/27/2018,Social_workers,@RepBarbaraLee,The #Janus decision is disgraceful. SCOTUS has weakened workers’ rights and further rigged the system for greedy sp… https://t.co/ZNG87ASaQt +06/26/2018,Social_workers,@RepBarbaraLee,We’ve made incredible progress towards equality thanks to brave Americans like Edie Windsor and Jim Obergefell. But… https://t.co/YEFMZ3trsx +06/26/2018,Social_workers,@RepBarbaraLee,"RT @nbcbayarea: ""Denying women this critical information is unethical and will put lives in danger."" says @RepBarbaraLee and other pro-choi…" +06/26/2018,Social_workers,@RepBarbaraLee,RT @ProChoiceCaucus: Doctors have an ethical obligation to provide accurate information to their patients. #NIFLAvBecerra will undermine th… +06/26/2018,Social_workers,@RepBarbaraLee,History does not reflect kindly on Supreme Courts that endorse bigotry. Korematsu and Dred Scott are some of the wo… https://t.co/7qP1t7jRph +06/26/2018,Social_workers,@RepBarbaraLee,"RT @americansunited: “Real lives will be upended. Families will be torn apart.” Today’s #SCOTUS decision “endorses bigotry,” says @RepBarba…" +06/26/2018,Social_workers,@RepBarbaraLee,"RT @ABCPolitics: Democratic Rep. Barbara Lee on the Supreme Court's decision to uphold the travel ban: ""Make no mistake, the Supreme Court…" +06/26/2018,Social_workers,@RepBarbaraLee,The shameful #NIFLAvBecerra decision allows crisis pregnancy centers to deceive women. These centers are not health… https://t.co/wxRxjsRVWx +06/26/2018,Social_workers,@RepBarbaraLee,"RT @RepSpeier: .⁦@RepBarbaraLee -⁩ We saw children sleeping on cold concrete floors, when we asked why we were told they didn’t have the re…" +06/26/2018,Social_workers,@RepBarbaraLee,Richard Fuentes & Sean Sullivan are extraordinary leaders in #Oakland’s LGBTQ community! They opened… https://t.co/p6UIOyQeSK +06/25/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: JUST IN: @HouseGOP has cancelled this markup to prevent Democrats from offering amendments that would protect migrant chil… +06/25/2018,Social_workers,@RepBarbaraLee,"It’s been 5 years since #SCOTUS unraveled the Voting Rights Act, paving the way for state legislatures to suppress… https://t.co/zWigN8S7XB" +06/25/2018,Social_workers,@RepBarbaraLee,"This weekend, I spoke to mothers who had no idea where their children are. I met parents who couldn’t afford a phon… https://t.co/ShvAadu234" +06/25/2018,Social_workers,@RepBarbaraLee,"President Trump needs to stop treating our democracy – our civil liberties – as an inconvenience. + +Due process is… https://t.co/UuK1C8lgbw" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @jaketapper: On #CNNSOTU @RepBarbaraLee describes her ""heart-wrenching"" border visit +https://t.co/Uyv6Xemyqv" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @SenRonJohnson, @SenSanders, @DavidJUrban, @RepBarbaraLee, @carlosgutierrez, @…" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @KQED: ""I’ve seen it with my eyes, and I’m telling you, I am furious, I am heartbroken, and we’ve got to get this administration to stop…" +06/23/2018,Social_workers,@RepBarbaraLee,People fleeing violence and seeking refuge in the United States are being treated like criminals. Parents don’t kno… https://t.co/59f8RzXvlm +06/23/2018,Social_workers,@RepBarbaraLee,Looking forward to joining @JakeTapper tomorrow to report back on the conditions at detention centers in Texas. We… https://t.co/ntffdcXGyB +06/23/2018,Social_workers,@RepBarbaraLee,RT @RepSpeier: Congressional Delegation reporting to the press what we saw in the facilities. Haunting scenes of asylum seekers including s… +06/22/2018,Social_workers,@RepBarbaraLee,"Millions of Americans lack health care, housing or regular meals. This poverty crisis is worsening under President… https://t.co/ZYSY5apBre" +06/22/2018,Social_workers,@RepBarbaraLee,RT @WhipHoyer: .@realDonaldTrump’s plan to merge the Depts of Ed & Labor is a thinly veiled attempt to cut essential programs – including w… +06/21/2018,Social_workers,@RepBarbaraLee,"""While these findings might seem unsurprising, the researchers contended that their study was a significant attempt… https://t.co/sPVo9ZowR7" +06/21/2018,Social_workers,@RepBarbaraLee,Happy #NationalSelfieDay! https://t.co/FsYCrTruAc +06/21/2018,Social_workers,@RepBarbaraLee,This is wonderful. Michelle’s voice is sorely needed in our national dialogue. https://t.co/inKcrqsza6 +06/21/2018,Social_workers,@RepBarbaraLee,"This proposal is the first step – then they cut student loan funding, civil rights enforcement budgets, and job tra… https://t.co/5Wng5E06qw" +06/21/2018,Social_workers,@RepBarbaraLee,.@HouseGOP just passed a bill that will strip nutrition assistance from millions and take school lunches away from… https://t.co/A6RCcE8etY +06/21/2018,Social_workers,@RepBarbaraLee,.@HouseGOP's immigration agenda would do nothing to help families detained at our border. They've proposed to crack… https://t.co/UurRYNS9mu +06/21/2018,Social_workers,@RepBarbaraLee,".@HouseGOP is currently marking up their #BetterForBillionaires budget, which would cut Social Security, Medicare &… https://t.co/VXbJLHmKgj" +06/21/2018,Social_workers,@RepBarbaraLee,"#WhereAreTheGirls? They came to the United States fleeing horrific circumstances. Now, they’ve been separated from… https://t.co/dBbCTnDzyK" +06/21/2018,Social_workers,@RepBarbaraLee,"RT @Rewire_News: “Under the guise of reorganizing health care programs, the Trump Administration wants to make it easier to slash the basic…" +06/21/2018,Social_workers,@RepBarbaraLee,I’ve asked the @UN to send observers to investigate President Trump’s zero tolerance policy. These practices are a… https://t.co/sq1jLPKhQB +06/20/2018,Social_workers,@RepBarbaraLee,RT @KPIXtv: .@RepBarbaraLee writes to UN calling on humanitarian observers to investigate family separations at the border: https://t.co/uY… +06/20/2018,Social_workers,@RepBarbaraLee,"This Executive Order is a sham. By not ending zero tolerance, President Trump is keeping families in jail. Children… https://t.co/ZkFvbd01vd" +06/20/2018,Social_workers,@RepBarbaraLee,Refugees & asylum seekers should be welcomed to the US. But President Trump’s callous policies are denying safe har… https://t.co/dqNKmVj4ih +06/20/2018,Social_workers,@RepBarbaraLee,RT @HouseBudgetDems: Republican efforts to sabotage the #ACA continue to leave more Americans uninsured and premiums soaring. Now the GOP’s… +06/20/2018,Social_workers,@RepBarbaraLee,"RT @HispanicCaucus: This EO jails kids with their parents, perhaps indefinitely. + +Instead of ending the heinous policy of separating famil…" +06/20/2018,Social_workers,@RepBarbaraLee,Nowhere are the consequences of the #GOPTaxScam more clear than in their proposed budget. After lavishing billionai… https://t.co/REsaS0smcL +06/20/2018,Social_workers,@RepBarbaraLee,This is important. @AppropsDems just passed an amendment that would force the Trump Admin to allow members of Congr… https://t.co/GwVG1ltrCx +06/20/2018,Social_workers,@RepBarbaraLee,"RT @AppropsDems: .@RepBarbaraLee offers an amendment to provide funding for international family planning through @UNFPA, striking Republic…" +06/20/2018,Social_workers,@RepBarbaraLee,8 million people in Yemen are on the brink of starvation. But @HouseGOP can’t even muster the courage to ASK… https://t.co/j5gicL9MP0 +06/20/2018,Social_workers,@RepBarbaraLee,The Trump admin is committing human rights abuses in our own country. I sent a letter asking the UN to send observe… https://t.co/JdZHlaz51L +06/20/2018,Social_workers,@RepBarbaraLee,I’ve noticed this too. People across the country are *rightly* outraged by the inhumanity on display from the Trump… https://t.co/ZfI7CUyg9n +06/20/2018,Social_workers,@RepBarbaraLee,RT @RepGutierrez: Republicans shut down the floor early and cut it off rather than let us speak about Trump’s policy of taking children fro… +06/20/2018,Social_workers,@RepBarbaraLee,RT @rolandsmartin: Watch @ABC's broadcast: House Democrats hold news conference on family separation. https://t.co/nqDCQX61NB +06/20/2018,Social_workers,@RepBarbaraLee,"RT @RepGutierrez: At 9:00 am, I will join a group of House Dems speaking on the Floor about the children being separated from their familie…" +06/20/2018,Social_workers,@RepBarbaraLee,Wonderful to see Bono tonight. His humanitarian work & tireless efforts in the fight against HIV/AIDS have helped u… https://t.co/nGZqjKfbcj +06/19/2018,Social_workers,@RepBarbaraLee,"Leaving the UN Human Rights Council is a bad move. + +The United States should be advancing human rights. Instead, t… https://t.co/maa2HDXTJ1" +06/19/2018,Social_workers,@RepBarbaraLee,The Trump administration’s attacks on women’s health around the world are unprecedented. We can’t let their efforts… https://t.co/Wuek0hVty6 +06/19/2018,Social_workers,@RepBarbaraLee,"RT @NitaLowey: .@RepBarbaraLee, @RepTimRyan, @RepKClark & I have fought against many efforts to restrict women’s health care access. But we…" +06/19/2018,Social_workers,@RepBarbaraLee,"153 years ago today, the news of emancipation reached enslaved African Americans in Galveston, TX. #Juneteenth is a… https://t.co/QKetVw8Lxs" +06/19/2018,Social_workers,@RepBarbaraLee,"RT @ASH_hematology: It's #WorldSickleCellDay, learn the facts about the disease, and RT to spread the word https://t.co/XexCTcNw2I #Conquer…" +06/19/2018,Social_workers,@RepBarbaraLee,"RT @NMAAHC: “The historical legacy of #Juneteenth shows the value of deep hope and urgent organizing in uncertain times.” + +More: https://t…" +06/19/2018,Social_workers,@RepBarbaraLee,"Under Secretary Nielsen, the DHS has committed horrific human rights violations, subjected innocent children to the… https://t.co/54dYyZZ7X5" +06/18/2018,Social_workers,@RepBarbaraLee,"RT @SenKamalaHarris: It's time for Secretary Nielsen to resign. The government should be in the business of keeping families together, not…" +06/18/2018,Social_workers,@RepBarbaraLee,"We should have United Nations observers at the border investigating these horrific family separation policies. + +The… https://t.co/IFPyBYa2zh" +06/18/2018,Social_workers,@RepBarbaraLee,"As we mark #PEPFAR15, I shared the story of how Congress has worked together in the past to fight against HIV and A… https://t.co/SE2UbmZ6JN" +06/18/2018,Social_workers,@RepBarbaraLee,"RT @PEPFAR: #AmbBirx at #USGLCSummit: 15 years ago, “we were on the verge of losing an entire generation & having much of the next grow up…" +06/18/2018,Social_workers,@RepBarbaraLee,I’m at the #USGLCsummit discussing my work on #PEPFAR and our global fight to end HIV and AIDS. Tune in now to watc… https://t.co/voDkQJi1EL +06/18/2018,Social_workers,@RepBarbaraLee,The UN Human Rights Council is rightly condemning the Trump Administration for “government-sanctioned child abuse.”… https://t.co/qXhPePXQe3 +06/17/2018,Social_workers,@RepBarbaraLee,Check out these amazing works of art on the streets of Oakland! The #EastBay is lucky to be home to so many artists… https://t.co/aH5iXFVjYA +06/17/2018,Social_workers,@RepBarbaraLee,"It’s been 3 years since our brothers & sisters lost their pastor & loved ones at Mother Emanuel AME Church. + +Let’s… https://t.co/q6KX673BYY" +06/17/2018,Social_workers,@RepBarbaraLee,"RT @RepMaloney: We are at the ICE Detention Center in Elizabeth, NJ. where ICE is denying us entry to meet with fathers separated from thei…" +06/17/2018,Social_workers,@RepBarbaraLee,"Next weekend, I will be headed to South Texas with my colleagues to witness the treatment of children & families on… https://t.co/pLgJfqxuVh" +06/17/2018,Social_workers,@RepBarbaraLee,"#FathersDay is a day for families to come together. But right now, thousands of fathers being separated from their… https://t.co/HzRdHAPNtn" +06/17/2018,Social_workers,@RepBarbaraLee,"He was a kind, steadfast man, and a loving father to my sisters and me. + +Dad, I miss you. Happy #FathersDay." +06/17/2018,Social_workers,@RepBarbaraLee,"My father, the late Garvin Tutt, served as a Lieutenant Colonel in WWII & the Korean War, a time when many officers… https://t.co/z3JqdZk1qx" +06/17/2018,Social_workers,@RepBarbaraLee,Honored to celebrate St. Columba’s 120 years of faithful leadership in our East Bay community and to accept the St.… https://t.co/dfErSAfT4X +06/16/2018,Social_workers,@RepBarbaraLee,"In celebration of #CaribbeanHeritageMonth, my staff honored two extraordinary Caribbean leaders. Thank you for your… https://t.co/5Z88j9YC0B" +06/16/2018,Social_workers,@RepBarbaraLee,Honored by this amazing work from #Oakland fabric artist Alice Beasley. Her beautiful display of artistry that spea… https://t.co/a3Bdd8r6Mw +06/15/2018,Social_workers,@RepBarbaraLee,There is a difference between engaging in diplomacy and lavishing praise on dictators. https://t.co/8F5cdnFQam +06/15/2018,Social_workers,@RepBarbaraLee,Wishing a peaceful and joyous last evening of #Ramadan to all my Muslim brothers and sisters celebrating in the Eas… https://t.co/A83ORlKJDC +06/14/2018,Social_workers,@RepBarbaraLee,“This is the first formal effort from the U.S. Capitol to try & bring parity to those communities disproportionatel… https://t.co/2Hm4u4ZsEd +06/14/2018,Social_workers,@RepBarbaraLee,“It’s impossible to look at the Trump administration’s practice of migrant family separation and see it as anything… https://t.co/XcA2QbEous +06/14/2018,Social_workers,@RepBarbaraLee,"The scale of human suffering in Yemen is unimaginable. + +@SecPompeo --- pick up the phone. Help us stop the assaul… https://t.co/xzBCtRUqi0" +06/14/2018,Social_workers,@RepBarbaraLee,"As #WorldCup2018 kicks off, we’re celebrating in #Oakland at #OaklandTechnicalHighSchool. #youthsoccer #oakland… https://t.co/lQ7J5UIYIb" +06/14/2018,Social_workers,@RepBarbaraLee,RT @RepDianaDeGette: I support @RepBarbaraLee’s RESPECT resolution because it will help right a long-standing wrong. The war on drugs has d… +06/14/2018,Social_workers,@RepBarbaraLee,"I have a new bill! My RESPECT Resolution creates a framework for #CannabisEquity. + +Communities of color have borne… https://t.co/Y9prllg3gU" +06/14/2018,Social_workers,@RepBarbaraLee,"RT @MattLaslo: EXCLUSIVE: The Pot Industry Is Overwhelmingly White, and One Congresswoman Wants to Change That - mine for @RollingStone on…" +06/14/2018,Social_workers,@RepBarbaraLee,"RT @WHO: A decision to donate your blood can save a life, or even many. + +Your blood can be separated into its components — red cells, plate…" +06/14/2018,Social_workers,@RepBarbaraLee,Dorothy was my friend - we marched in the Selma pilgrimage together & she visited my East Bay community to discuss… https://t.co/a3TUtBs2ze +06/14/2018,Social_workers,@RepBarbaraLee,"I am saddened by the loss of our beloved Dorothy Cotton, who was a civil rights icon and a valued adviser to Dr. Ki… https://t.co/SfQ7DxV7CW" +06/14/2018,Social_workers,@RepBarbaraLee,"Climate change is real. And it is an existential threat to the inhabitants of our planet. + +The resounding silence… https://t.co/8nhOtLqCDA" +06/14/2018,Social_workers,@RepBarbaraLee,The vast majority of Americans support a pathway to citizenship for Dreamers. But instead of helping young people w… https://t.co/5xNabE4Yyw +06/13/2018,Social_workers,@RepBarbaraLee,"Earlier this year, I asked @BetsyDeVosED what she would do to address the civil rights crisis in our schools. She h… https://t.co/nJn4Wfvr8z" +06/13/2018,Social_workers,@RepBarbaraLee,Working moms and dads often cannot afford care for their children during the long summer months. I’m proud to suppo… https://t.co/l8QnS6X8RF +06/13/2018,Social_workers,@RepBarbaraLee,"My Republican colleagues on the House Appropriations committee blocked my amendment, which they helped pass & appla… https://t.co/ZGcEwEknXG" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepBarbaraLee supports @NitaLowey’s amendment. Explains that women buying insurance shouldn’t have their reproductive he… +06/13/2018,Social_workers,@RepBarbaraLee,"After 17 years, it’s past time to do our constitutional duty by debating and voting on the costs and consequences o… https://t.co/KDfnBQ2vP4" +06/13/2018,Social_workers,@RepBarbaraLee,I’m incredibly disappointed that Approps Republicans rejected my amendment to sunset the 2001 AUMF --- the same exa… https://t.co/MwFXZRa80I +06/13/2018,Social_workers,@RepBarbaraLee,"RT @AppropsDems: The Committee rejected, on a party-line 22-30 vote, @RepBarbaraLee’s amendment to sunset the 2001 AUMF. All @AppropsDems v…" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: @repmarkpocan @RepBarbaraLee .@RepCartwright supports @RepBarbaraLee's amendment. Describes the strong level of bipartisan… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@repmarkpocan urges support for @RepBarbaraLee’s amendment. Notes that it is Congress’ job to hold important debates and… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@rosadelauro supports @RepBarbaraLee’s amendment. Explains that the 2001 AUMF is overly broad and has become a blank chec… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepKClark supports @RepBarbaraLee’s amendment. Notes that the 2001 AUMF has now been in force under three Presidents wit… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@Call_Me_Dutch supports @RepBarbaraLee’s amendment. Cites the importance of providing our service members with clarity of… +06/13/2018,Social_workers,@RepBarbaraLee,"RT @BettyMcCollum04: I support @RepBarbaraLee’s amend to sunset the 2001 AUMF. 17 years later, Congress hasn't had a debate on how 3 admins…" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepVisclosky supports @RepBarbaraLee’s amendment to sunset the 2001 AUMF eight months after enactment of the Defense app… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepBarbaraLee offers an amendment to sunset the 2001 Authorization for the Use of Military Force and ensure Congress has… +06/13/2018,Social_workers,@RepBarbaraLee,"RT @repmarkpocan: The Saudi and Emirati assault on Yemen's major port, with US logistical aid, could threaten 250,000 lives and force milli…" +06/12/2018,Social_workers,@RepBarbaraLee,70% of Yemen’s emergency aid comes through this port. Countless innocents could die if the Saudi coalition launches… https://t.co/KrUjw99uME +06/12/2018,Social_workers,@RepBarbaraLee,"RT @NancyPelosi: .@Warriors & @SteveKerr, you have once again dazzled America with outstanding performance on the court & inspired leadersh…" +06/12/2018,Social_workers,@RepBarbaraLee,"“PEPFAR is one of the most-successful, effective and world-changing initiatives ever put forth by the United States… https://t.co/eespprHXNF" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @UniteThePoor: ""I'm from Flint, MI. 4 years later we're still suffering. We have the highest water bills in the country. We're poor not…" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @NAACP: The justices unanimously agreed. On June 12, 1967, proscriptions against interracial marriage were declared unconstitutional. #L…" +06/12/2018,Social_workers,@RepBarbaraLee,Such a beautiful day in #Oakland at the #WarriorsParade as we celebrate our #NBAChampions! Hats off to the… https://t.co/aeI8Yb9iBp +06/12/2018,Social_workers,@RepBarbaraLee,"On the House Floor to celebrate the 2018 NBA Champions – our very own Golden State @Warriors, pride of the #EastBay… https://t.co/7rt8EZ2Qez" +06/12/2018,Social_workers,@RepBarbaraLee,"Deporting 300,000 #TPS recipients would be unthinkably cruel. These families made the U.S. their home after fleeing… https://t.co/olOlzer7cG" +06/12/2018,Social_workers,@RepBarbaraLee,I know the #EastBay is ready to celebrate our back-to-back NBA Champions! #WarriorsGround https://t.co/qbOotdYthf +06/12/2018,Social_workers,@RepBarbaraLee,"Diplomacy takes time. We have an opportunity for peace -- but it will require more than just a photo-op. + +The hard… https://t.co/cRZvfn0R7O" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @RepValDemings: Two years after #Pulse, I know that love will win. We will transform our sorrow into love and progress. We will grieve,…" +06/11/2018,Social_workers,@RepBarbaraLee,"Yemen is on the brink of famine. More than 75% of the population is reliant on food aid to survive. + +An attack on… https://t.co/fIm5ZbmT7E" +06/11/2018,Social_workers,@RepBarbaraLee,Today’s #SCOTUS decision validating voter purges disenfranchises voters and undermines the foundation of our democr… https://t.co/FQ3jkvw0zI +06/11/2018,Social_workers,@RepBarbaraLee,"As a human being – and a public servant – I am disgusted by the Trump Administration’s callousness. + +These women… https://t.co/3YTiyWtkfL" +06/11/2018,Social_workers,@RepBarbaraLee,"**#DACA RECIPIENTS** + +It’s not too late to renew your status – apply TODAY with @USCIS ➡️https://t.co/AWMw3dY3Dy https://t.co/UxjQkKxvi3" +06/11/2018,Social_workers,@RepBarbaraLee,Congratulations to Berkeley native @ArielStachel on a well-deserved Tony win! Your speech gave me so much hope. You… https://t.co/faeYV2DtOq +06/11/2018,Social_workers,@RepBarbaraLee,"The will of the American people is clear – we want a free, fair, and open internet. #NetNeutrality ends today – but… https://t.co/BxKAovluL1" +06/10/2018,Social_workers,@RepBarbaraLee,How can we hope to make peace with our enemies when we can’t even work with our friends? https://t.co/fXVNT0n6vi +06/09/2018,Social_workers,@RepBarbaraLee,"If you are in pain, know that help is available. Call 1-800-273-TALK. And if you know someone who is struggling, pl… https://t.co/CnQ8kK8QSd" +06/09/2018,Social_workers,@RepBarbaraLee,"At his core, Anthony was a storyteller, an educator, and a free spirit who brought the world into our homes. My dee… https://t.co/OBNefuKeKn" +06/09/2018,Social_workers,@RepBarbaraLee,"I’m heartbroken over the passing of Anthony Bourdain. Through his love of food, Anthony showed us all what it means… https://t.co/UXBWvQztuN" +06/09/2018,Social_workers,@RepBarbaraLee,Congrats on another extraordinary season @warriors! You make us proud! https://t.co/8xE6JLvj1J +06/09/2018,Social_workers,@RepBarbaraLee,I’m showing my #DubNation pride today! Fingers crossed for a sweep! 🤞🏾🤞🏾#NBAFinals https://t.co/O7eiEd2orc +06/08/2018,Social_workers,@RepBarbaraLee,"Republicans are going to court to try to make healthcare worse and more expensive for American families. + +American… https://t.co/hwXDwqsvxJ" +06/08/2018,Social_workers,@RepBarbaraLee,RT @NatGeo: Happy #WorldOceansDay! https://t.co/ZIlDdE8Un9 +06/08/2018,Social_workers,@RepBarbaraLee,There is no such thing as a small nuclear weapon. I’m incredibly disappointed that Congress rejected my amendment s… https://t.co/Td3vd3IOeS +06/08/2018,Social_workers,@RepBarbaraLee,Watch the debate on my amendment to stop Donald Trump from arming US submarines with a low yield nuclear weapons. C… https://t.co/nRv5pOMPre +06/07/2018,Social_workers,@RepBarbaraLee,Organized employees can make a powerful impact on companies and the world. Kudos to @Google staffers for demanding… https://t.co/EV2wuSuYAJ +06/07/2018,Social_workers,@RepBarbaraLee,"I can confirm that Mazie is extremely fierce. I’m proud to be her colleague, but even more honored to call her a fr… https://t.co/D5Lksnz9gA" +06/07/2018,Social_workers,@RepBarbaraLee,"55 years after the #EqualPayAct, women -- especially women of color -- still endure sexism, harassment and unequal… https://t.co/PpsyaQ4iK9" +06/07/2018,Social_workers,@RepBarbaraLee,"President Trump has violated the emoluments clause with impunity. That stops today. + +I’m suing Donald Trump in Blu… https://t.co/i1Vq9os8t9" +06/07/2018,Social_workers,@RepBarbaraLee,"RT @gracenapolitano: 53 years ago, #GriswoldvCT guaranteed women the freedom to make their own choices about their career, their family, an…" +06/07/2018,Social_workers,@RepBarbaraLee,#GriswoldvCT legalized birth control and opened the door for women. We can’t and won’t let extremists in the Trump-… https://t.co/G1qSW4BrGG +06/07/2018,Social_workers,@RepBarbaraLee,"RT @HouseDemWomen: Estelle Griswold helped pave the way more than 50 years ago, fighting against unconstitutional bans on #birthcontrol and…" +06/07/2018,Social_workers,@RepBarbaraLee,"RT @ProChoiceCaucus: On the 53rd anniversary of #GriswoldvCT, access to #birthcontrol is under attack. We will continue to fight for compre…" +06/07/2018,Social_workers,@RepBarbaraLee,It’s time to finally end the failed #WarOnDrugs. Proud to stand with @SenWarren & @SenCoryGardner in support of the… https://t.co/f2sUzIhgNP +06/07/2018,Social_workers,@RepBarbaraLee,RT @GKButterfield: I applaud @Google’s employees for pushing for accountability from Alphabet’s leadership to make a stronger commitment to… +06/07/2018,Social_workers,@RepBarbaraLee,It’s game time #DubNation! Let’s cheer our warriors to victory - lock in! #NBAFinals https://t.co/FP9dQjngCz +06/06/2018,Social_workers,@RepBarbaraLee,Congrats to @CALWRowing who recently took first place in the @NCAA Division 1 rowing finals! So impressed by these… https://t.co/q8VkM9kgEH +06/06/2018,Social_workers,@RepBarbaraLee,The ugly xenophobia and nativism espoused by this White House does not represent America. This… https://t.co/8BUDcktoRY +06/06/2018,Social_workers,@RepBarbaraLee,"SERIOUSLY? + +You passed a trillion dollar tax scam to benefit rich donors and asked working families to foot the bi… https://t.co/fcNSi7MROa" +06/06/2018,Social_workers,@RepBarbaraLee,RT @RepJoeKennedy: Deeply grateful for all the memories of my grandfather being shared today. Thank you. https://t.co/NPjMnKwnqu +06/06/2018,Social_workers,@RepBarbaraLee,"50 years ago today, we lost Robert F. Kennedy but his vision for a better America lives on. We carry his spirit in… https://t.co/WpVCMAYQCF" +06/05/2018,Social_workers,@RepBarbaraLee,We should never have come to this. These family separation policies are barbaric and inhumane. Shame on the Trump A… https://t.co/ctaXmeqojx +06/05/2018,Social_workers,@RepBarbaraLee,"This #WorldEnvironmentDay, I’m so proud of organizations in the East Bay like the @SierraClub and @TheOceanCleanup.… https://t.co/KPrHgOTMfL" +06/05/2018,Social_workers,@RepBarbaraLee,"RT @GlobalGoalsUN: We all need to do our part to #BeatPlasticPollution to protect our forests, ocean & the places where we live. 🌲🌊🏙️ + +Join…" +06/04/2018,Social_workers,@RepBarbaraLee,RT @RepJerryNadler: Every woman—regardless of immigration status—has the right to make her own decisions about her body + her life. Todays… +06/04/2018,Social_workers,@RepBarbaraLee,RT @ProChoiceCaucus: A setback for #reprorights: #SCOTUS passes on opportunity to rule on whether the Trump administration can prevent undo… +06/04/2018,Social_workers,@RepBarbaraLee,SCOTUS today missed an opportunity to reaffirm fundamental civil right protections for #LGBT people. The only way… https://t.co/puhPbss6rt +06/04/2018,Social_workers,@RepBarbaraLee,What an honor it is to serve as the Wright Institute’s commencement speaker as it celebrates 50 years of extraordin… https://t.co/NKZRGlKQKS +06/04/2018,Social_workers,@RepBarbaraLee,Game 2. #WarriorsGround. Let’s go Warriors! https://t.co/xWiuqvEmWC +06/03/2018,Social_workers,@RepBarbaraLee,Truly honored to receive the inaugural Outstanding Community Leader of the Year Award from Alameda Health! As I con… https://t.co/ngyln752E4 +06/03/2018,Social_workers,@RepBarbaraLee,"#DubNation is ready for a W tonight! At the studio ahead of my interview with @AlexWitt, wearing my @warriors color… https://t.co/Ual7y7xL98" +06/02/2018,Social_workers,@RepBarbaraLee,The San Leandro Boys & Girls Club provides critical services to more than 1300 young people. Huge thanks to the… https://t.co/9jbPIhAsDO +06/02/2018,Social_workers,@RepBarbaraLee,The San Leandro Cherry Festival is a true gem of our East Bay community. Such a great experience every time I atten… https://t.co/mqw7Kajspv +06/02/2018,Social_workers,@RepBarbaraLee,"ICYMI: This week, @eoydc renamed their computer lab in honor of Rev. Jesse Jackson! Such extraordinary appreciation… https://t.co/bDoZ9KEZ5f" +06/02/2018,Social_workers,@RepBarbaraLee,No child should have to grow up in fear of gun violence in their school or neighborhood. I #WearOrange because I ca… https://t.co/9lyhb7KLGt +06/01/2018,Social_workers,@RepBarbaraLee,"“Donald Trump is deliberately forcing millions of Americans into financial ruin, cruelly depriving them of food and… https://t.co/eQP0UHJnna" +06/01/2018,Social_workers,@RepBarbaraLee,"Today marks the beginning of #PrideMonth. We have a lot of progress to be proud of, but the fight for equality is f… https://t.co/G9164FIUHb" +06/01/2018,Social_workers,@RepBarbaraLee,"RT @RepVeasey: Today on the Pathways #OutofPoverty Tour, I heard directly from those facing economic burdens and met w/ local orgs that pro…" +06/01/2018,Social_workers,@RepBarbaraLee,"These heinous, anti-immigrant policies are a stain on our nation. #FamiliesBelongTogether https://t.co/C2ABDBL6cE" +06/01/2018,Social_workers,@RepBarbaraLee,"Thank you, 8th grade Alameda Community Learning Center students, for your letters on environmental policy. From pro… https://t.co/Pq5S1fSEAT" +06/01/2018,Social_workers,@RepBarbaraLee,"In the year since Trump sided with polluters & withdrew from the #ParisAgreement, California has not backed down. W… https://t.co/LbRzqtbYlJ" +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: .@PromiseHouse provides emergency shelter to many young people experiencing homelessness, including LGBT youth and new mothe…" +06/01/2018,Social_workers,@RepBarbaraLee,RT @WhipHoyer: Pleased to tour @JubileePark as part of the Pathways #OutOfPoverty #ListeningTour. This community center provides local resi… +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Read @TheHill’s story today about the first stop of the Pathways #OutOfPoverty #ListeningTour with @RepBarbaraLee, @RepEBJ,…" +06/01/2018,Social_workers,@RepBarbaraLee,.@JubileePark in Dallas is doing incredible work to help build pathways #OutOfPoverty for families. Their comprehen… https://t.co/R4tPiuQK6x +06/01/2018,Social_workers,@RepBarbaraLee,RT @RepEBJ: Understanding the challenges poverty creates and how to overcome them. The Pathways #OutOfPoverty Listening Tour stops in Dalla… +06/01/2018,Social_workers,@RepBarbaraLee,At @BontonFarms in Dallas for the first stop in our Poverty Task Force #ListeningTour. In order for families to cli… https://t.co/orOVaMO2d5 +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Today, I am kicking off the Pathways #OutOfPoverty #ListeningTour in #Dallas with @RepBarbaraLee, @RepEBJ, & @RepVeasey to h…" +05/31/2018,Social_workers,@RepBarbaraLee,We’re on #WarriorsGround tonight and I’m wishing them the best of luck in Game 1 of the NBA Finals. I’m anticipatin… https://t.co/YSoWG3iRb7 +05/31/2018,Social_workers,@RepBarbaraLee,RT @warriors: #NBAFinals begin TODAY 😤 #DubNation https://t.co/wrf1R8ysZN +05/30/2018,Social_workers,@RepBarbaraLee,"If we fail to act on the domestic #HIV epidemic, one in two African American gay men will contract HIV in their lif… https://t.co/sALBXxNQxO" +05/30/2018,Social_workers,@RepBarbaraLee,"Food is running short. Political instability and violence are worsening. + +#SouthSudan is on the brink of catastroph… https://t.co/djr1J3mDAC" +05/30/2018,Social_workers,@RepBarbaraLee,Proud of these extraordinary students from Lincoln Middle School in Alameda for their courage in speaking out again… https://t.co/e17CZKTLUn +05/30/2018,Social_workers,@RepBarbaraLee,"RT @oakzoo: You otter spend 12 seconds watching these guys frolic in the water. +#WorldOtterDay https://t.co/9uPFfZEtsy" +05/30/2018,Social_workers,@RepBarbaraLee,"More than 10,000 immigrant children have been separated from their parents by the Trump Administration. These… https://t.co/WusfGYJeCR" +05/30/2018,Social_workers,@RepBarbaraLee,"RT @nwlc: The wage gap for moms exists across race, age, education level, and occupation and in every state. #MomsEqualPay https://t.co/rdk…" +05/30/2018,Social_workers,@RepBarbaraLee,"In California, Black moms only earn 51 cents for every $1 paid to white fathers. It’s already hard enough to make e… https://t.co/HGFvuRVpys" +06/02/2018,Social_workers,@MikeLICSW,"RT @MikeLICSW: Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9 https://t.co/nrugUAfwKk" +05/31/2018,Social_workers,@MikeLICSW,"Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9" +05/31/2018,Social_workers,@MikeLICSW,"Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9 https://t.co/nrugUAfwKk" +05/18/2018,Social_workers,@MikeLICSW,@kate_audette is rocking out the @NASWMA conference on #telemedicine https://t.co/RVqrLCkAK7 +05/09/2018,Social_workers,@MikeLICSW,"Register Now, and I'll see you there! National Association of Social Workers https://t.co/qC3Rf0i7sY" +05/05/2018,Social_workers,@MikeLICSW,RT @Rachel_HRC: The latest The Business of Relationships! https://t.co/kE2GS9VzRa Thanks to @MikeLICSW @DrKipMatthews #mentalhealth #empathy +05/05/2018,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/PPRdxGvRPx Thanks to @MikeLICSW #health #hipaa +05/05/2018,Social_workers,@MikeLICSW,RT @Interactions247: There's No Such Thing As A Safe Place https://t.co/VmfyotoS5Q via @mikelicsw +04/26/2018,Social_workers,@MikeLICSW,"RT @jratey: ""#Exercise lowers #depression risk, no matter your age or gender"" #PhysEd #KeepMoving https://t.co/HNPPZ2RyYO https://t.co/WGRv…" +04/26/2018,Social_workers,@MikeLICSW,Please join me & my colleague @kate_audette from @BostonChildrens 5/18 for a workshop on the future of online thera… https://t.co/9cCK5PokFw +04/25/2018,Social_workers,@MikeLICSW,RT @Rachel_HRC: The latest The Business of Relationships! https://t.co/0n6Ua0opnQ Thanks to @MikeLICSW #mentalhealth #mhchat +04/25/2018,Social_workers,@MikeLICSW,Food for thought: Social Media Leaves #HIPAA Irrelevent https://t.co/G5uF3bWOAA +04/21/2018,Social_workers,@MikeLICSW,The rise of the ambient video game https://t.co/uIzYJAy1NU +04/20/2018,Social_workers,@MikeLICSW,Facebook Has a New Data Policy—Here’s the Short Version - The Wall Street Journal https://t.co/I1tioe4hQW +04/14/2018,Social_workers,@MikeLICSW,"On this #BostonMarathon wknd, as someone whose neighborhood was bombed, my heart goes out to people killed or wound… https://t.co/U2lzFEY9GJ" +04/10/2018,Social_workers,@MikeLICSW,Thanks! https://t.co/VIL3J5OwsE +04/10/2018,Social_workers,@MikeLICSW,"RT @jratey: ""Meta-analysis finds students who participate in physical activity do better in maths, reading"" #PhysEd #SchoolMoves https://t.…" +04/10/2018,Social_workers,@MikeLICSW,The Crisis Behind Crises https://t.co/cyzXXpxvot +04/07/2018,Social_workers,@MikeLICSW,RT @ShelbySkrhak: The Dalai Lama turned to American psychologist @PaulEkman to create this emotions map to develop a calm mind. https://t.c… +03/22/2018,Social_workers,@MikeLICSW,RT @AllGradSchools: Congratulations to @Podsocs @AmyMorinLCSW @njsmyth @MikeLICSW and all of the other #influencers #podcasts and #blogs wh… +03/19/2018,Social_workers,@MikeLICSW,"Gee, TY @AllGradSchools for making my blog #5 for 2018! Grats also to @laurelhitchcock @socworkpodcast @njsmyth &… https://t.co/qYSiWZvHwv" +02/26/2018,Social_workers,@MikeLICSW,Should #psychotherapists start accepting payment by #bitcoin #ethereum & other #blockchain? Discuss #mentalhealth… https://t.co/iIQ4cDPBhD +02/26/2018,Social_workers,@MikeLICSW,@KBTimberlake Thanks for your shout out! :-) #socworkuab +02/23/2018,Social_workers,@MikeLICSW,Exercise & Games are not mutually exclusive! Here's an example: Commit to playing @hqtrivia walking or light jog (i… https://t.co/vydY0Rjgik +02/22/2018,Social_workers,@MikeLICSW,Join me on https://t.co/GaFuQB4NiI https://t.co/oMR7lCUjWr via @dock_io +02/21/2018,Social_workers,@MikeLICSW,New Presentation Offered in 2018: Boundaries & Health in the Digital Age - https://t.co/TgE5acBCWH +02/20/2018,Social_workers,@MikeLICSW,@ruthsofhia Bravo! You might want to check out my work as well as our @Grokcraft project +02/16/2018,Social_workers,@MikeLICSW,https://t.co/q3KYYj9IqR +01/29/2018,Social_workers,@MikeLICSW,"RT @maglearn: Although the term geek has begun to be reclaimed by many, it's important to remember that word comes from 'fool' or 'freak' ~…" +01/28/2018,Social_workers,@MikeLICSW,RT @gretchen_miller: Boundaries and Health in the Digital Age https://t.co/HhSxvz9iOv via @mikelicsw #digitalsocialresponsibility +01/26/2018,Social_workers,@MikeLICSW,RT @maglearn: The Gamification of Psychotherapy https://t.co/xRvGVwZqPk via @mikelicsw +01/26/2018,Social_workers,@MikeLICSW,"I love how coloring books for #mindfulness is ok with #psychology types, but playing #videogames for mindfulness is… https://t.co/hHGJdThtiM" +01/22/2018,Social_workers,@MikeLICSW,What If Children Should Be Spending More Time With Screens? - The Wall Street Journal https://t.co/rlkflhCtxq +01/19/2018,Social_workers,@MikeLICSW,Have you heard ‘Better Living Through Minecraft (Audio Version)’ by Mike Langlois on #SoundCloud? #np https://t.co/1saMYVSxHE +01/11/2018,Social_workers,@MikeLICSW,I’m playing a game called @hqtrivia! You should play too. Use my code ‘langloimsw’ to sign up… https://t.co/FvneJ27k3x +01/11/2018,Social_workers,@MikeLICSW,Boundaries and Health in the Digital Age https://t.co/qx7brNeee6 #socialwork #digitalliteracy #hcsm #psychology https://t.co/G6Pm0o310n +01/11/2018,Social_workers,@MikeLICSW,Boundaries and Health in the Digital Age https://t.co/kvl3bd62Xo https://t.co/KtJtLCtgL9 +01/08/2018,Social_workers,@MikeLICSW,"RT @MikeLICSW: What Disruption Is, and Isn’t https://t.co/gBv2NY6UyN https://t.co/K0u3KABPkw" +01/02/2018,Social_workers,@MikeLICSW,"RT @socworkpodcast: Love this idea: ""I talk about how technology always amplifies things... There is a big difference between disrupting ex…" +01/02/2018,Social_workers,@MikeLICSW,"What Disruption Is, and Isn’t https://t.co/gBv2NY6UyN https://t.co/K0u3KABPkw" +01/02/2018,Social_workers,@MikeLICSW,A History of Panic Over Entertainment Technology https://t.co/ewnVbY5epH via @behscientist +12/29/2017,Social_workers,@MikeLICSW,Finally! A Mindfulness Approach to Video Games & Game Therapy https://t.co/4TSzyFPyTk #videogames #mentalhealth +12/13/2017,Social_workers,@MikeLICSW,https://t.co/32EvNbDEGs +12/08/2017,Social_workers,@MikeLICSW,2 Quick Asks - https://t.co/Tu8eBFupnL +11/15/2017,Social_workers,@MikeLICSW,RT @classcraftgame: Classroom management is FUN with Classcraft!! https://t.co/PzRQlkEB7o +11/15/2017,Social_workers,@MikeLICSW,"Mark your calendars! This is an excellent chance to get a free sample of what a talk from me can be like, so feel f… https://t.co/wLq6OvqfE9" +11/10/2017,Social_workers,@MikeLICSW,@CambCPD @CambridgePolice another hazard for a person w/ #Disability https://t.co/GDru9XfwiJ +11/09/2017,Social_workers,@MikeLICSW,(Unofficial) Mindful Minecraft Meditation | Finney Can Help https://t.co/k2ZXW7xIm7 via @sharethis +11/09/2017,Social_workers,@MikeLICSW,"RT @espeakers: Mike Langlois is today’s featured speaker! https://t.co/JzTBv3QSAd @MikeLICSW + +Find more experts at https://t.co/GUJXaXCNqc" +11/09/2017,Social_workers,@MikeLICSW,Thanks! +11/08/2017,Social_workers,@MikeLICSW,"Dear colleague, please pass this info along to anyone you know looking for presentations or keynotes!… https://t.co/QXnFznQ4jC" +10/25/2017,Social_workers,@MikeLICSW,"Attention #cyclists: To you this may look like bad parking, but to folks w/ a #Disability it’s blocking access.… https://t.co/rTdPPvhUmH" +10/24/2017,Social_workers,@MikeLICSW,Now booking for Nov - Spring 2018 talks on #mentalhealth #tech #SEL #telemedicine & rethinking #gaming addiction. https://t.co/g2UEYtibPT +10/14/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/DV2cJwFaIn +09/21/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/R9dICzp0FF +09/18/2017,Social_workers,@MikeLICSW,Teamwork SXSW Minecraft Healthcare = Sum Greater Than Parts https://t.co/H6tq8LYCou +09/18/2017,Social_workers,@MikeLICSW,"HR folks & friends: Your org may be a tough crowd for workshops, but who can refuse applying Minecraft to work?… https://t.co/lHMy3KxHkI" +09/11/2017,Social_workers,@MikeLICSW,"Ohio State revokes Arizona professor's Ph.D., questioning her findings on video games https://t.co/O1d2ryEzse" +09/10/2017,Social_workers,@MikeLICSW,RT @CalmFlyer: Enjoying working with @psious VR. Has really made a difference in treatment of phobias! https://t.co/TxUdpuI9sU +08/31/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/ZkSXgvYra3 +08/21/2017,Social_workers,@MikeLICSW,SXSW Talk on #minecraft & #griefing needs your votes & shares! https://t.co/WA4f79IY4o +08/19/2017,Social_workers,@MikeLICSW,"TY @bostonpolice & @marty_walsh for keeping us safe & being professional. @realDonaldTrump no anti-police agitators here, just patriots!" +08/19/2017,Social_workers,@MikeLICSW,https://t.co/yrevTrMxvL #BostonCommon #Bostonresists +08/19/2017,Social_workers,@MikeLICSW,"I occasionally get grief from colleagues about getting ""political"" on Twitter. Oh well. https://t.co/DoX3fscxqV" +08/18/2017,Social_workers,@MikeLICSW,Google Maps: Create Wheelchair Friendly Routes - Sign the Petition! https://t.co/Y8oeKuMXZk via @Change +08/16/2017,Social_workers,@MikeLICSW,https://t.co/j5WAUBDUBn +08/14/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: Pls RT & vote for my #SXSW talk: Good Griefing?!: Pixels, Poverty, & Attachment. It's about #griefing in #minecraft https:/…" +08/13/2017,Social_workers,@MikeLICSW,RT @SWcareer: Can #Minecraft Camp Help Open Up Tech World To Low-Income Kids? https://t.co/a9X6ilkZeC @MikeLICSW @njsmyth #swtech #childwel… +08/13/2017,Social_workers,@MikeLICSW,"""I condemn nazism & the KKK."" @realDonaldTrump , See? It's not that complicated a tweet. You can even include #Charolettesville & have room." +08/08/2017,Social_workers,@MikeLICSW,"Pls RT & vote for my #SXSW talk: Good Griefing?!: Pixels, Poverty, & Attachment. It's about #griefing in #minecraft… https://t.co/6SjsBgdKVP" +07/27/2017,Social_workers,@MikeLICSW,City of Cambridge Participatory Budgeting pls comment & spread the word @AbleGamers https://t.co/kKeTGlG01E +07/27/2017,Social_workers,@MikeLICSW,City of Cambridge Participatory Budgeting pls comment and share! @CambCPD https://t.co/kKeTGlG01E +07/26/2017,Social_workers,@MikeLICSW,https://t.co/imJ9FIAsUj +07/26/2017,Social_workers,@MikeLICSW,https://t.co/6NWQ3wQVyF +07/19/2017,Social_workers,@MikeLICSW,"Check out Free Family-Friendly Film Wednesday Night! on Wed, Jul 19 https://t.co/TDD9NUY9NU via @Nextdoor" +07/19/2017,Social_workers,@MikeLICSW,"Join us TONIGHT at @cambridgepl for a free screening of Finding Dory, followed by lively discussion with @MikeLICSW https://t.co/3xNC9umgjG" +07/19/2017,Social_workers,@MikeLICSW,"RT @CambCPD: Join us TONIGHT at @cambridgepl for a free screening of Finding Dory, followed by lively discussion with @MikeLICSW https://t.…" +07/18/2017,Social_workers,@MikeLICSW,"Hey local folks, please spread the word on this free family-friendly event tomorrow evening! https://t.co/XTT1tZ25Q0" +07/06/2017,Social_workers,@MikeLICSW,"Join me & @ubswce at @UBuffalo 7/24 to sift through the moral panic about Self-Harm, Social Media, & Video Games, https://t.co/TtT60hlwxD" +06/28/2017,Social_workers,@MikeLICSW,"RT @CambCPD: Retweeted Mike Langlois, LICSW (@MikeLICSW): + +Join @CambCPD & me for Finding Dory, starring @TheEllenShow Free!... https://t.c…" +06/28/2017,Social_workers,@MikeLICSW,"Join @CambCPD & me for Finding Dory, starring @TheEllenShow Free! Wed 7/19 6 pm @cambridgepl discussion on #cognitive #Disability to follow" +06/28/2017,Social_workers,@MikeLICSW,"RT @cambridgepl: This Thurs, June 15, 6:30 PM + Main Library, Lecture Hall + Join us for a conversation and Q&A with Fenway Health https://…" +06/28/2017,Social_workers,@MikeLICSW,RT @CambCPD: #Ghana govt has intensified public education to eliminate neg perception that disability is a curse https://t.co/vL5y7WdXEg vi… +06/23/2017,Social_workers,@MikeLICSW,"@TheMattSchwartz @karenzgoda So I see, lol" +06/18/2017,Social_workers,@MikeLICSW,This is my pal Duke. He is having surgery tomorrow & needs your help. Consider a small trip to #Gofundme to help!… https://t.co/XbNVWgwkVV +06/15/2017,Social_workers,@MikeLICSW,RT @SusanGiurleo: How to Raise a Happy Child https://t.co/2ZV0NuDfrK +06/15/2017,Social_workers,@MikeLICSW,@TheEllenShow Psyched to screen Finding Dory 7/19 as a family event for our @CambCPD film series on #Disability awareness.TY for your work! +06/04/2017,Social_workers,@MikeLICSW,RT @njsmyth: Why you should care about bots if you care about social justice / Ford Foundation https://t.co/0x2Dh9OTkw +06/02/2017,Social_workers,@MikeLICSW,RT @caseforhere: @AILADCChapter @AILANational @Ailanewengland 49 clinicians from 17 states & D.C. stand ready to donate our work! https://t… +06/02/2017,Social_workers,@MikeLICSW,RT @caseforhere: @AILANewYork @AILAOhioChapter @AILAPhila 49 clinicians from 17 states & D.C. stand ready to donate our work! https://t.co/… +06/01/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/Rfpk3VY91l +05/27/2017,Social_workers,@MikeLICSW,Warning: Screen Time Rules Can Backfire https://t.co/ZlvpmFOhvn # via @HuffPostBlog +05/19/2017,Social_workers,@MikeLICSW,@answers4thefam @Acardoza @drmattp TY so much for inviting me to join you on your show this coming Nov. Looking forward to it! ^_^ +05/17/2017,Social_workers,@MikeLICSW,"RT @caseforhere: Once again, we've more requests than volunteers. Want to make a difference in the lives of #immigrant families? https://t.…" +05/16/2017,Social_workers,@MikeLICSW,RT @SWcareer: 🍏 Best in #MentalHealth (4/10- 5/7) https://t.co/1sel3oooI9 H/T @StuckonSW @MikeLICSW @swhelpercom @socialworkpad +05/15/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/w70nu6Gjgf +05/11/2017,Social_workers,@MikeLICSW,"For the first time, eligible individuals and their families will be allowed to establish ABLE savings accounts https://t.co/wgPhvUq4PH" +05/09/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @amazon Giving away Reset this wknd was so much fun, I'm doing it again Tues! Or always on #KindleUnlimited https://t.co/riR…" +05/08/2017,Social_workers,@MikeLICSW,"@amazon Giving away Reset this wknd was so much fun, I'm doing it again Tues! Or always on #KindleUnlimited https://t.co/riRKTMqgLj" +05/06/2017,Social_workers,@MikeLICSW,@NSASpeaker This weekend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/riRKTMqgLj +05/06/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.c… +05/06/2017,Social_workers,@MikeLICSW,Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/FZ6G8XMDZL +05/06/2017,Social_workers,@MikeLICSW,"@LeemansBas Thank you, Bas! ^_^" +05/06/2017,Social_workers,@MikeLICSW,RT @LeemansBas: @MikeLICSW Great book! A 101 on how to become a Gamer therapist +05/05/2017,Social_workers,@MikeLICSW,RT @NSASpeaker: Welcome to the community @MikeLICSW! Hope to meet you in person at #Influence17 https://t.co/z7jYwP6E75 +05/05/2017,Social_workers,@MikeLICSW,RT @ringmd: @MikeLICSW we've quoted you on the importance of writing content & just sent you an email :) https://t.co/gyYzfJ4SlR #contentfo… +05/05/2017,Social_workers,@MikeLICSW,Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/riRKTMqgLj +05/05/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/JHFszVT786 +05/02/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/rP93YjcbIN Thanks to @armstronglpc @MikeLICSW #mentalhealth #mhsm +05/01/2017,Social_workers,@MikeLICSW,So glad to join the @NSASpeaker family! Please feel free to share & RT my #speaker info. https://t.co/rCjZz0iK4M +04/27/2017,Social_workers,@MikeLICSW,Mike Langlois Talks on Technology & Wellbeing: https://t.co/z3JjfZoJ7q via @YouTube +04/27/2017,Social_workers,@MikeLICSW,Arounja - Search Engine 4 Resources 2 Support Wellness/Recovery. Pls vote 4 this awesome project from @DKMonroeonIT https://t.co/PkhFrO5KvB +04/21/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/EAn2PrVhqw +04/12/2017,Social_workers,@MikeLICSW,Twenty-Two Apps for the 21st Century Therapist - Social Work Helper https://t.co/I8NG61ppGb +04/08/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? (Press Kit) - https://t.co/vXFnJ93Ezy +03/31/2017,Social_workers,@MikeLICSW,RT @DKMonroeonIT: Come work with me. It'll be fun! We have #data and cookies. https://t.co/mjN8cUTg3w +03/31/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/Ck2Ah0djxP Thanks to @MikeLICSW @ILCTcoaching @Shepellfgi #mentalh… +03/30/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? (Press Kit) - https://t.co/KSmgC8ect0 +03/25/2017,Social_workers,@MikeLICSW,TY @Zachanner for a great video on #accessibility #CerebralPalsy & #bagels ! https://t.co/xWNqYBTjsV @CambCPD @brainbark +03/24/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/2IL1d7rzMD Thanks to @MikeLICSW #mentalhealth #mhsm +03/23/2017,Social_workers,@MikeLICSW,Watch Live: Will Universal Basic Income Change Our Lives for Good or Bad? https://t.co/WksdSsuc6k +03/22/2017,Social_workers,@MikeLICSW,Support @caseforhere @grokcraft & Reset (book @ https://t.co/riRKTMqgLj) #immigration #mentalhealth #SEL #videogames Pls RT & share! ^-^ +03/22/2017,Social_workers,@MikeLICSW,@caseforhere has an immediate need for a 3/30/17 hearing in MA. If you are a licensed #mentalhealth prof in MA please contact us asap! +03/21/2017,Social_workers,@MikeLICSW,RT @caseforhere: Care about #mentalhealth ? Think #ImmigrantsMakeAmericaGreat ? Spread the word about our free services! Pls Follow & RT +03/20/2017,Social_workers,@MikeLICSW,Case For Here Project is looking for expert witnesses & case managers. Want to help immigrants? Learn & register at https://t.co/iYFFV5HwOv +03/17/2017,Social_workers,@MikeLICSW,RT @caseforhere: Not ready to be a expert witness? Turns out we need volunteer case managers too! Register to help https://t.co/1Ayl57VNDL… +03/16/2017,Social_workers,@MikeLICSW,RT @caseforhere: Why this Mexican-American designed a video game that simulates border crossings https://t.co/tbPkXKxej6 via @LatinoVoices +03/16/2017,Social_workers,@MikeLICSW,Case For Here Directory Questionnaire https://t.co/uwil8Bo4BB +03/15/2017,Social_workers,@MikeLICSW,Non-Binary Gender Identities- a fact sheet. https://t.co/ep9YDEgxoy via @sharethis +03/14/2017,Social_workers,@MikeLICSW,"RT @njsmyth: Teachers must ditch 'neuromyth' of learning styles, say scientists + +https://t.co/vzQojxfwID" +03/13/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? - https://t.co/AgKXRE7Bq3 +03/10/2017,Social_workers,@MikeLICSW,TY @CambCPD for promoting #disability awareness in uncertain times. https://t.co/qjUl0dOkTs Pls share the #cambridge example. +03/09/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes on #psychology #education #SEL #socialwork & #tech? - https://t.co/BYGlvWfcVZ +03/09/2017,Social_workers,@MikeLICSW,RT @caseforhere: Help protect #Immigrant rights. Download our flyer & pass it on to #lawyers & #therapists you know :-) https://t.co/NQFnDl… +03/08/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? - https://t.co/5WFBNlGfdX +03/08/2017,Social_workers,@MikeLICSW,Pls RT: #Therapists can testify to the #psychological damage of #deportation @caseforhere is gearing up to help! https://t.co/iYFFV5HwOv +03/06/2017,Social_workers,@MikeLICSW,#Therapist in #Canada ? You may find this Summer Institute on Harnessing the Power of Meaning of interest! https://t.co/y1vfXmhVSH +03/05/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: This is so needed.. Pls share to your networks. https://t.co/gLRFHsScI0 +03/05/2017,Social_workers,@MikeLICSW,I just published “Thanks for an interesting piece.” https://t.co/uQ2ilanHqX +02/28/2017,Social_workers,@MikeLICSW,RT @RepMikeCapuano: No – someone please tell me Trump didn’t really say this to the nation’s Governors … “Nobody knew that healthcare could… +02/27/2017,Social_workers,@MikeLICSW,"Book me 4 2017! #tech, #mentalhealth, #socialmedia & #selfharm, #videogames as #meditation & more. Video/Press: https://t.co/g2UEYt0AYl" +02/16/2017,Social_workers,@MikeLICSW,RT @UN_Women: .@JuliaGillardGPE & @criseboro on how #Canada can prioritize education to achieve #genderequality: https://t.co/syZuK1EGLz v… +02/16/2017,Social_workers,@MikeLICSW,This is so needed.. Pls share to your networks. https://t.co/gLRFHsScI0 +02/10/2017,Social_workers,@MikeLICSW,"@squishim @nytimes not my headline, but I think important article. Many young adults internalize this as pathology, rather than societal." +02/10/2017,Social_workers,@MikeLICSW,A Secret of Many Urban 20-Somethings: Their Parents Help With the Rent https://t.co/ssNTXrr0mu +02/09/2017,Social_workers,@MikeLICSW,"@UBSSW @ubswce @dean_yoshioka @NASWNews @nasw @AILANational Spread the word, we need volunteers in all 50 states! https://t.co/3hq05q64ik" +02/08/2017,Social_workers,@MikeLICSW,Statement: NASW opposes nomination of Sen. Jeff Sessions to be next U.S. Attorney General | https://t.co/GuiNYSq70k https://t.co/Ry6qNafY58 +02/08/2017,Social_workers,@MikeLICSW,Please follow & RT to your networks! #socialwork #mentalhealth #NoBanNoWall #hcsm #blacktwitter #Immigrants https://t.co/Z5vBzira8o +02/08/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: @elizabethforma That's why I just set up a recurring donation in her name. https://t.co/uJKLgJKKfK (5/5) +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma working w/ children, parents & educators, than our new Secretary of Education has.(4/5)" +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma This means that my dog spent more time working in public schools, (3/5)" +02/08/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: @elizabethforma Boo got her start working in an alternative program w/ me in inner-city public schools. (2/5) +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma This is my recently deceased therapy dog, Miss Boo. (1/5) https://t.co/smzUY0MwTu" +02/07/2017,Social_workers,@MikeLICSW,@elizabethforma That's why I just set up a recurring donation in her name. https://t.co/uJKLgJKKfK (5/5) +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma working w/ children, parents & educators, than our new Secretary of Education has.(4/5)" +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma This means that my dog spent more time working in public schools, (3/5)" +02/07/2017,Social_workers,@MikeLICSW,@elizabethforma Boo got her start working in an alternative program w/ me in inner-city public schools. (2/5) +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma This is my recently deceased therapy dog, Miss Boo. (1/5) https://t.co/smzUY0MwTu" +02/07/2017,Social_workers,@MikeLICSW,"New project for #Immigration #mentalhealth @caseforhere Pls follow, RT & check out https://t.co/iYFFV5pVpV Make a difference #NoBanNoWall" +02/03/2017,Social_workers,@MikeLICSW,"RT @Grokcraft: We are back up, sorry for the interruption! :-)" +02/01/2017,Social_workers,@MikeLICSW,RT @wojtekborowicz: Huge thanks to the people who participated: @annapickard @Anrick @EmMeller @kgreene @MikeLICSW @nickmizer @SpaceEngineS… +02/01/2017,Social_workers,@MikeLICSW,From the Netherlands.. https://t.co/mISKzTzyjM +01/30/2017,Social_workers,@MikeLICSW,See? My secret plan for geek recruitment is working. #bwahahaha +01/30/2017,Social_workers,@MikeLICSW,"@Calliope_B please consider writing a review, & TY for reading the book!" +01/30/2017,Social_workers,@MikeLICSW,@Calliope_B that's great! Welcome to the team! ^_^ +01/28/2017,Social_workers,@MikeLICSW,"@StuckonSW @Grokcraft @kaythaney @2LiveUnchained yes, and both modes are important & necessary for everyone!" +01/28/2017,Social_workers,@MikeLICSW,@StuckonSW @Grokcraft @kaythaney @2LiveUnchained 1 answer: The more we stay out of survival mode the more we can be in creative mode. +01/24/2017,Social_workers,@MikeLICSW,"Dear Media, pls call lies, ""lies"" or ""false statements."" Also pls call bizarre behavior ""bizarre"" rather than ""breaking with precedent."" TY" +01/23/2017,Social_workers,@MikeLICSW,"Although I disagree w/ @realDonaldTrump on all things politics, I can't in good conscience be silent: Leave Barron be. Kids deserve better!" +01/22/2017,Social_workers,@MikeLICSW,"# of us at #WomensMarch Boston: Est 175K +# of arrests: 0 +# of violent incidents: 0 +TY @bostonpolice @marty_walsh for keeping us safe" +01/21/2017,Social_workers,@MikeLICSW,#womensmarch Boston. https://t.co/PDIkC0hKum +01/17/2017,Social_workers,@MikeLICSW,@RepKClark TY for taking a stand. I hope that @SenMarkey @SenWarren & @RepMikeCapuano consider doing the same. Thank you all for your work! +01/16/2017,Social_workers,@MikeLICSW,"Booking 2017 talks! New topics: Tech & Self-Harm, Education w/out Misery. Old faves too: https://t.co/g2UEYt0AYl https://t.co/6VZ8QGyPy1" +01/15/2017,Social_workers,@MikeLICSW,"Sorry Reince, Obama, Hillary & Bernie cld all show up @ my door w candy & I wldn't stop peaceful resistance or think of Trump as legitimate." +01/13/2017,Social_workers,@MikeLICSW,Electroshock Therapy for Internet Addicts? China Vows to End It - The New York Times - https://t.co/P9NQtY4mck https://t.co/rviwS4u0NZ +01/12/2017,Social_workers,@MikeLICSW,Live asynchronously. https://t.co/2ljBImuxE4 +01/06/2017,Social_workers,@MikeLICSW,https://t.co/Ry6qNafY58 +01/04/2017,Social_workers,@MikeLICSW,@christinibnini thanks so much! Let me know if you want me to come to your area. +12/20/2016,Social_workers,@MikeLICSW,"Since when did ""intellectual"" become an insult? I was taught growing up that it was good to learn new things & think about them." +12/12/2016,Social_workers,@MikeLICSW,That moment you turn on the radio & you don't know if it is news or a promo for The Man in the High Castle. +12/12/2016,Social_workers,@MikeLICSW,@CRISPontheHill TY for following me. Pls. let me know if there are ways I can participate in the institute and your works! +12/09/2016,Social_workers,@MikeLICSW,Just a thought: What if you all reported to @twitter every time @realDonaldTrump violated Twitter Terms of Service? https://t.co/bF5MOFOm1q +12/05/2016,Social_workers,@MikeLICSW,Psst. @UBSSW @UBNewsSource @ub_sa @ub want to play #Minecraft for credit @UBuffalo ? https://t.co/y2gM3x1VLp +12/05/2016,Social_workers,@MikeLICSW,https://t.co/8PkaVtZi1x +12/05/2016,Social_workers,@MikeLICSW,RT @BSripom: @KishonnaGray @jivory @UBSSW @MikeLICSW Some #RealTalk on #videogames and #race https://t.co/curLktJuXb *gamer therapist fangi… +12/03/2016,Social_workers,@MikeLICSW,"@CambMA @RedCross Local Social Worker here, let me know if I can help." +12/02/2016,Social_workers,@MikeLICSW,RT @epflcswccm: Telehealth compares to in-person visits for depression https://t.co/yEZSRfJUhI via @Reuters @njsmyth @socworkpodcast @Stuck… +12/01/2016,Social_workers,@MikeLICSW,Looking for that perfect gift for the #therapist in your life? :-) https://t.co/riRKTM8FmJ https://t.co/hLnm9uiDZw +11/30/2016,Social_workers,@MikeLICSW,RT @sspencerthomas: SAVE DATE: twitter chat 12/1 #Men #MentalHealth #Crisis & #PeerSupport Services @SPSMM_D51 @evega_mhdignity @BartAndrew… +11/28/2016,Social_workers,@MikeLICSW,"@StigmaSlayer @DrMarkGriffiths wanted 2 see ""what it would be like to drive a car"" after playing #GTA which indicates knowing difference 2/2" +11/28/2016,Social_workers,@MikeLICSW,@StigmaSlayer @DrMarkGriffiths @DrKimberlyYoung @AndrewDoan This seems more like curiosity gone awry than GTP as he told police he 1/2 +11/23/2016,Social_workers,@MikeLICSW,RT @njsmyth: Your Filter Bubble is Destroying Democracy - Wired https://t.co/qIWPN9hVZM #Facebook https://t.co/UttZhOKhjQ +11/23/2016,Social_workers,@MikeLICSW,"Pls stop calling Nazis ""alt-right."" They are terror group, not a computer key. If u must use a keyboard term, ""backspace"" is more accurate." +11/21/2016,Social_workers,@MikeLICSW,RT @ConnorAWalters: #racevideogames Would love to hear thoughts on attempts to reflect experiences of discrimination in video games - Mafia… +11/21/2016,Social_workers,@MikeLICSW,RT @ConnorAWalters: black lead in civil rights New Orleans who faces discrimination - is gamifying that experience tone-deaf? Empathy-build… +11/21/2016,Social_workers,@MikeLICSW,RT @njsmyth: Video games are the playgrounds where many youth spend their time - #socialwork needs to be concerned with diversity content #… +11/21/2016,Social_workers,@MikeLICSW,"RT @ConnorAWalters: Papers, Please is a fantastic game! Glad to see it being recognized #racevideogames" +11/21/2016,Social_workers,@MikeLICSW,"RT @njsmyth: Dr. Gray, in her youth, found that social workers stereotyped video games and didn't appreciate what kids experience there #ra…" +11/21/2016,Social_workers,@MikeLICSW,RT @SWtechNow: Students who want to be border guards play Paper Please to develop empathy on crossing borders experience says Kishonna Gray… +07/01/2018,Social_workers,@njsmyth,RT @epflcswccm: AHA Urges Consumer Education; HIPAA Privacy Rule and Health Apps @CCM_Cert @DrHowardLiu @StuckonSW @njsmyth @ubswce https:/… +07/01/2018,Social_workers,@njsmyth,@tjameslcsw @EJohnsonLCSW @amcguin @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW… https://t.co/qA0rdScZ36 +06/30/2018,Social_workers,@njsmyth,@EJohnsonLCSW @amcguin @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW… https://t.co/4wB2NQMCZM +06/30/2018,Social_workers,@njsmyth,"@EJohnsonLCSW @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW @socworkpodcast Yes,… https://t.co/jo9whaVXVh" +06/30/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Social Work Virtual Pal (#SWVirtualPal)… a very ‘real’ connection! - a new blog post by me & @AMLTaylor66: https://t.c… +06/30/2018,Social_workers,@njsmyth,This is fantastic news! #trauma https://t.co/pYZoHnxskj +06/30/2018,Social_workers,@njsmyth,"RT @LesleyHandel: Back to reality, TX is apparently going to have a bathroom bill. If you are trans and in Texas I will pee with you. Any…" +06/29/2018,Social_workers,@njsmyth,"RT @UBittic: Illustrates the impact of trauma from research, ACE study&personal reflection from her profession as a ped. doc. Seeing first…" +06/29/2018,Social_workers,@njsmyth,"RT @UBSSW: And- +10 More Documentaries on Netflix for Social Workers: +many provide in-depth looks at subjects relevant to social work practi…" +06/29/2018,Social_workers,@njsmyth,RT @UBSSW: This has helped me: our profession’s leaders getting out front for #socialjustice #MacroSW 1/3 https://t.co/JdpLYu7pfc +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: Great article on the heels of the NSWM conference. Why Disruption is the CEO’s Best Friend https://t.co/Nybcz6J2HR #NSWM29 +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: Yes! Why companies need to hire social workers https://t.co/KkB1uXD01X #NASW2018 #cswe +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: This is an access and social justice issue. Social workers should know what net neutrality loss means for clients https://t.… +06/28/2018,Social_workers,@njsmyth,RT @newsocialworker: How Will the End of Net Neutrality Affect Social Work? by @spcummings https://t.co/yR7q0SYmMX https://t.co/gNrSwhJ2Wt +06/28/2018,Social_workers,@njsmyth,RT @melaniesage: Today @husita is hanging out iny living room. Next week Dublin @SWSD2018! So exciting! #BehindtheScenes #swtech https://t.… +06/28/2018,Social_workers,@njsmyth,"RT @KialoHQ: @njsmyth Going to introduce a free dedicated edu site, without the public discussions soon. Just DM us. More about us and our…" +06/28/2018,Social_workers,@njsmyth,"@KialoHQ Thanks, good to know!" +06/27/2018,Social_workers,@njsmyth,RT @gsprang: The importance of bearing witness https://t.co/JJQt8ehru1 +06/27/2018,Social_workers,@njsmyth,Anyone from #swtech have experience with this community? https://t.co/krW5C7V8E6 +06/27/2018,Social_workers,@njsmyth,"Illuminates Gender Pay Inequity Causes: Women Ask for Raises as Often as Men, but Are Less Likely to Get Them (new… https://t.co/hyllvEqoaO" +06/27/2018,Social_workers,@njsmyth,"RT @DrKristie: “Sometimes when I consider what tremendous consequences come from little things, I am tempted to think there are no little t…" +06/27/2018,Social_workers,@njsmyth,"RT @jbriselli: ""Patient satisfaction is NOT the same as patient experience. It's just a small component."" So 🗝️ - @julie_rish at #HXD2018" +06/27/2018,Social_workers,@njsmyth,"RT @AdamMGrant: Hey Silicon Valley, it's time to start betting on older entrepreneurs. +New study: 40-year-olds are 2.1x as likely as 25-yea…" +06/27/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Amazing pic of @dawnshedrick @lakeya_cherry and @TheNSWM in action providing training to social workers in China https… +06/27/2018,Social_workers,@njsmyth,RT @SWcareer: 🍏 Best in Mental Health: Life Support! https://t.co/A9nDUcWBmg < H/T @socialworksage @laurelhitchcock @SchoolSocWork @Stuckon… +06/27/2018,Social_workers,@njsmyth,"RT @AlyssaLotmore: With a break from the semester, why not fill up your summer with books, podcasts, blogs, movies and more... all that hav…" +06/26/2018,Social_workers,@njsmyth,RT @epflcswccm: @AmerCollPhyAdv @ICD10monitor Honored to be on today's show! #socialdeterminants and #mentalhealth rock but I loved listeni… +06/26/2018,Social_workers,@njsmyth,"@BrandyRMaynard @obrienaj I think that’s an accurate statement about much of the online MSW market, particularly wh… https://t.co/V7yzPoyCGg" +06/26/2018,Social_workers,@njsmyth,"RT @melaniesage: The word is out! #UBSSW will offer an online DSW in Fall 2019. It will include a focus on #implementationscience, emerging…" +06/26/2018,Social_workers,@njsmyth,@jalvear @melaniesage @StuckonSW @spcummings @UBSSW @UNE_HealthIT DSW students are generally not funded. Our DSW is… https://t.co/6cdLE2KyTN +06/25/2018,Social_workers,@njsmyth,"@BrandyRMaynard @obrienaj I can't speak for other schools of social work, but ours will not be a profit center, I j… https://t.co/pk5K6Ycd3A" +06/25/2018,Social_workers,@njsmyth,@obrienaj I agree! The problem is these things are not dictated by formal policy but by market forces and the state… https://t.co/VobsjvOnmT +06/25/2018,Social_workers,@njsmyth,"I agree, Melanie. I think it's inevitable based on watching what's happening to the other health professions https://t.co/Dh7CEoGSvs" +06/25/2018,Social_workers,@njsmyth,"RT @lakeya_cherry: 11 pm on a Sunday night in Zhuhai,China and I'm writing a Welcome speech on behalf of @TheNSWM for tomorrow's opening da…" +06/24/2018,Social_workers,@njsmyth,RT @laurelhitchcock: One more reason why #socialworkers need to be digitally literate & tech competent: @NYTimes article on how digital the… +06/23/2018,Social_workers,@njsmyth,@jaxrafferty Are you coming to Dublin? I'm trying to figure out who I will get a chance to meet from our #swtech UK community +06/23/2018,Social_workers,@njsmyth,@AMLTaylor66 I'm so excited about having a chance to meet you on-the-ground! +06/23/2018,Social_workers,@njsmyth,"RT @JoWarner01: Great news for #socialwork, in that our own brilliant @AMLTaylor66 is on the list for Female GovTech Leaders 2018. I just v…" +06/23/2018,Social_workers,@njsmyth,"You're very welcome, Amanda, it's my honor! https://t.co/uDZ797AJYr" +06/23/2018,Social_workers,@njsmyth,RT @EvaProkop: RT @jaxrafferty: International acclaim #womenintech https://t.co/1SVZIfvRl0 +06/23/2018,Social_workers,@njsmyth,RT @jaxrafferty: International acclaim #womenintech https://t.co/9J57C5nuzo +06/23/2018,Social_workers,@njsmyth,"RT @AlyoshenkaB333: The ACLU has an update re. the executive order: ""The administration has signaled that it will now detain all families…" +06/23/2018,Social_workers,@njsmyth,@AlresfordBear Exactly! +06/23/2018,Social_workers,@njsmyth,"All my #socialwork peeps. Please see tweet below. It would be awesome if you would vote for my colleague, Amanda Ta… https://t.co/aOhPGOETkr" +06/23/2018,Social_workers,@njsmyth,RT @AMLTaylor66: In total cat style #RuariCat not a bit fazed by all this #womenintech talk #academicswithcats https://t.co/XlcHzCgnro +06/22/2018,Social_workers,@njsmyth,I just contributed on @theactionnet: LEAF Project for Universal Representation for Unaccompanied Children.… https://t.co/LLyI7Lm5AC +06/22/2018,Social_workers,@njsmyth,RT @CleanHealthyAZ: FOLLOW us if you agree: our kids deserve to breathe clean air. https://t.co/zMJ4p10zVV +06/22/2018,Social_workers,@njsmyth,@AMLTaylor66 @JimmySW @laurelhitchcock @StuckonSW @karenzgoda @spcummings @EBelluomini @melaniesage @EJohnsonLCSW… https://t.co/qk06s8lWc6 +06/22/2018,Social_workers,@njsmyth,@AMLTaylor66 @JimmySW @laurelhitchcock @StuckonSW @karenzgoda @spcummings @EBelluomini @melaniesage @EJohnsonLCSW… https://t.co/WQsnHnGzmL +06/22/2018,Social_workers,@njsmyth,I stand with my #socialwork colleagues at NADD against #ChildrenInCages And now we must address the harm this polic… https://t.co/THsVBlY7bY +06/22/2018,Social_workers,@njsmyth,"RT @melaniesage: People applying for refugee status don't get appointed attnys. They fare FAR better with representation, much more likely…" +06/22/2018,Social_workers,@njsmyth,RT @melaniesage: A4. Did you know that you can be a non-lawyer representative in immigration court? @RAICESTEXAS has online training. Loca… +06/22/2018,Social_workers,@njsmyth,Drone selfies. Who knew? https://t.co/qM1VtbMSEu https://t.co/EqLA6VXbfh +06/22/2018,Social_workers,@njsmyth,"RT @brooklyn11210: @JrTechinHmSrvs @melaniesage @SWSD2018 @NeilBallantyne @husITaOrg @JohnGMcNutt @Info4Practice @njsmyth +New Call For Pa…" +06/21/2018,Social_workers,@njsmyth,@kanter @SWcareer - these are my favorite influencers this week! +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: Facebook to direct users searching for opioids to addiction resources @DrHowardLiu @UBSSW @NationalCouncil https://t.co/wkw… +06/21/2018,Social_workers,@njsmyth,RT @DrHowardLiu: Glad to see #Facebook build #opioidcrisis treatment referrals into its algorithm. We must harness the power of #SoMe to ad… +06/21/2018,Social_workers,@njsmyth,@epflcswccm do you know this project? https://t.co/g7ATMF7WQW +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: The Mental Health Costs of Harassment @PBerryRN @JudgeWren @RTConnections @CCM_Cert @cherylholt @nasw @njsmyth @wgu https:/… +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: The industry must get past the stigma of mental health treatment for its professionals. Seeking treatment is not a weakness… +06/21/2018,Social_workers,@njsmyth,"RT @DrKristie: PLEASE SHARE. Lawyers, law students, and paralegals with Spanish language skills are needed for six-day stints in Texas to…" +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: 1:5 Immigrant Children Detained During ‘Zero Tolerance’ Border Policy < 13 @DrHowardLiu @UjjRam @nasw @StuckonSW https://t.… +06/21/2018,Social_workers,@njsmyth,"RT @HowardU_SWDean: One of the first songs learned as a child was “Jesus loves the little children, all the children of the world, red and…" +06/21/2018,Social_workers,@njsmyth,"RT @MelindaHohman: Summing up how I feel, @Maria_Hinojosa . Journalists like you have worked hard to let the rest of us know what is happen…" +06/21/2018,Social_workers,@njsmyth,RT @MelindaHohman: Want to know about the effects of #detention on parents and children? Read national expert and researcher @lhzayas . Tha… +06/21/2018,Social_workers,@njsmyth,RT @nasw: Social workers attending the 2018 NASW National Conference attended a voter registration education teach-in and posed for a photo… +06/21/2018,Social_workers,@njsmyth,RT @BartAndrews: @epflcswccm @DrHowardLiu @UBSSW @uscsocialwork @NCQA @nasw @CCM_Cert @UjjRam @njsmyth This is why I don’t use the word sti… +06/19/2018,Social_workers,@njsmyth,"@WriteNThrive @mmt98 @oxpatious Thanks! Hoping to get some in Late July and early August. Hope you have some coming, too" +06/19/2018,Social_workers,@njsmyth,RT @CharlesELewisJr: Congressional Social Workers Decry Policy Separating Families https://t.co/0206RbvlWr https://t.co/D4FNM1tdrp +06/19/2018,Social_workers,@njsmyth,RT @CharlesELewisJr: Children and Trauma https://t.co/410iFgvY4r @StuckonSW @njsmyth @newsocialworker @ColumbiaSSW @MSWatUSC @melaniesage @… +06/19/2018,Social_workers,@njsmyth,"RT @melaniesage: I did #childwelfare #socialwork in 3 states. Now I teach child welfare workers. When you have to remove kids: Compassion,…" +06/19/2018,Social_workers,@njsmyth,RT @SWVirtualPal: #SWVirtualPal has a new logo just in time for #husITa18! We are looking forward to seeing everyone in Dublin and hoping… +06/19/2018,Social_workers,@njsmyth,“Families Are *Still* Being Separated! 5 Things You Can Do Today” #socialwork @amnestyusa https://t.co/dg5zRomEfs +06/18/2018,Social_workers,@njsmyth,@DrTaraBatista @RealMAbramsky #ShareTheLove thanks for the engagements this week :) +06/18/2018,Social_workers,@njsmyth,@WriteNThrive @mmt98 @oxpatious - #HappyMonday featured top engaged community members :) +06/18/2018,Social_workers,@njsmyth,"@DrTaraBatista @MattheaMarquart Yes, it really was a terrific venue" +06/18/2018,Social_workers,@njsmyth,RT @BigDataGal: The Self-Taught Data Scientist Curriculum #ai #iot #bigdata #automation #womenintech https://t.co/W1TkB6dXIc https://t.co/… +06/16/2018,Social_workers,@njsmyth,@melaniesage Can't wait to check this out! +06/16/2018,Social_workers,@njsmyth,Thanks for the retweets @H2GYInc @MelindaHohman much appreciated! :) +06/15/2018,Social_workers,@njsmyth,@WilliamJiang2 @MattheaMarquart @PCMjrnl_online - #FollowFriday You're the best engaged members in my community! +06/15/2018,Social_workers,@njsmyth,Guiding principles of @2Uinc @chippaucek #NSWM29 #EdTech https://t.co/Gyd4HHu3y7 +06/15/2018,Social_workers,@njsmyth,"RT @poliSW: 📷 evitcani-writes: transmaskopi: Being trans is not a new, trendy thing. Trans people have always... https://t.co/rmIry9ytGS" +06/15/2018,Social_workers,@njsmyth,@nukem777 Wanted to let you know that I am unable to retweet your posts. You probably have that option turned off in settings. +06/15/2018,Social_workers,@njsmyth,RT @IIHA_Fordham: #Design4Humanity is dedicated to disseminating lessons learned to a wide audience of designers and humanitarians. @Ashlei… +06/15/2018,Social_workers,@njsmyth,Thanks for the retweets @JimmySW @TheNSWM @SD_SocialWorker much appreciated! :) +06/15/2018,Social_workers,@njsmyth,RT @husswcapp: Thanks @HowardU_SWDean Dr. Sandra E. Crewe for the shoutout re how the @HU_socialwork monograph series on structural inequal… +06/15/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Such a delight to co-present with fellow @ColumbiaSSW instructors Dawn Shedrick and @ElisabethAnneCC virtually at #NSW… +06/15/2018,Social_workers,@njsmyth,RT @Global_SW_DE: #GlobalSWDE - What the #EdTech is right! Which future technologies will we see in online social work education? What have… +06/15/2018,Social_workers,@njsmyth,RT @epflcswccm: So excited to have contributed to 3 & Co-authored one of these efforts! CaseManager #CMSA2018 #casemanagement @CCM_Cert @… +06/15/2018,Social_workers,@njsmyth,#FollowFriday @JudgeWren @lakeya_cherry - top engaged members this week :) +06/15/2018,Social_workers,@njsmyth,RT @m_clark_usc: Fight on! @MSWatUSC @TheNSWM #SocialWorkersLEAD #NSWM29 https://t.co/tp9t0GimZV +06/15/2018,Social_workers,@njsmyth,"RT @DrTaraBatista: After 15 years of providing services, we finally have an online presence. Check out our new web site. I'm thinking of a…" +06/15/2018,Social_workers,@njsmyth,"@MattheaMarquart @DrTaraBatista It was wonderful to chat with you, Matthea, and to meet you, Tara!" +06/15/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Love connecting with amazing colleagues at #NSWM29 @njsmyth @DrTaraBatista https://t.co/AEkbKFoO0G +06/14/2018,Social_workers,@njsmyth,"RT @AntheaButler: I'm really tired of this line of ""this can't be America. Black families were ripped apart during slavery. Native American…" +06/14/2018,Social_workers,@njsmyth,RT @socworkpodcast: I'm honored and humbled @ariannahuff that you shared my editorial in @FortuneMagazine with your 3+ million followers...… +06/14/2018,Social_workers,@njsmyth,RT @epflcswccm: Suicide Rates In U.S. Climbing Faster for Women https://t.co/rAouZr1Aku @DrHowardLiu @MichaelBGarrett @cherylholt @socworkp… +06/14/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Our group is actively engaged in making hard choices - easy to see the teaching value of this game #NSWM29 https://t.c… +06/14/2018,Social_workers,@njsmyth,"@EBelluomini Oh, if I count my reaction to that, then my score goes much higher! I try to use those reactions to ch… https://t.co/FZNH4OAcHF" +06/14/2018,Social_workers,@njsmyth,"RT @cherylholt: Nearly half of doctors surveyed reported their patients would benefit from food assistance, affordable housing and transpor…" +06/14/2018,Social_workers,@njsmyth,Intro to Cooperation Studies - 8 Technologies https://t.co/SsU7X2islL +06/14/2018,Social_workers,@njsmyth,"Intro to Cooperation Studies 8 Technologies + https://t.co/SsU7X2islL" +06/14/2018,Social_workers,@njsmyth,RT @EJohnsonLCSW: @JimmySW’ talk @ #nswm29: Thought leaders’ models on digital literacies are applicable to competencies needed in social w… +06/14/2018,Social_workers,@njsmyth,@socworkpodcast @melaniesage @StuckonSW @laurelhitchcock @DrNJonesTSU @mmt98 @spcummings @SD_SocialWorker… https://t.co/9J1FhjqhVk +06/14/2018,Social_workers,@njsmyth,@melaniesage @socworkpodcast @StuckonSW @laurelhitchcock @DrNJonesTSU @mmt98 @spcummings @SD_SocialWorker… https://t.co/m6ZYvhaPeW +06/14/2018,Social_workers,@njsmyth,"Participatory Culture according to Henry Jenkins, and Digital Literacies #NSWM29 presented by @JimmySW https://t.co/u2hlWMRaro" +06/14/2018,Social_workers,@njsmyth,How Did We Get Here? Web 1.0 to Web 3.0 #NSWM29 https://t.co/BtLIOmby3L +06/14/2018,Social_workers,@njsmyth,Attending @JimmySW’s presentation at #NSWM29 Retweeting Russians: Building Community and being an Authentic Leader… https://t.co/1AvvJDIVSI +06/14/2018,Social_workers,@njsmyth,RT @TheneraB: Leaders should strive for Disruptive Leadership with meaningful purpose. Not just change for change sake but with intentional… +06/14/2018,Social_workers,@njsmyth,@brooklyn11210 @lakeya_cherry It’s great to be here! Looking forward to seeing you. +06/14/2018,Social_workers,@njsmyth,Tech innovation to prevent sexual assault when people are drinking? What do you think.. https://t.co/BkDAYwpMks #MeToo +06/14/2018,Social_workers,@njsmyth,RT @JackieYunTweets: Disruptive leaders know not everyone will instantly get the vision and will continue the convo to get everyone onboard… +06/14/2018,Social_workers,@njsmyth,"RT @socworkpodcast: Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good friend…" +06/14/2018,Social_workers,@njsmyth,RT @melaniesage: A nice emotional distress #mentalhealth pain scale. https://t.co/JHvWPhrYAW Anyone want to check in? #socialwork #swtech h… +06/14/2018,Social_workers,@njsmyth,@MarshAlesia @TheMattSchwartz - these are my favorite engaged members this week! +06/14/2018,Social_workers,@njsmyth,RT @newsocialworker: Think you don't need a vacation because you love your job and everything is going great? Take a break anyway. We all n… +06/14/2018,Social_workers,@njsmyth,"Pre-Conference Reception last night, at the Coyote Cafe, with Ruby and @MelindaHohman #NSWM29 https://t.co/9V4adXNwcc" +06/13/2018,Social_workers,@njsmyth,RT @SWcareer: @njsmyth @laurelhitchcock @UBSSW @FinancialMSW @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @ValueIntoWords @Aun… +06/13/2018,Social_workers,@njsmyth,RT @PatShellySSW: @SWcareer @njsmyth @UBSSW @FinancialMSW @laurelhitchcock @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @Value… +06/13/2018,Social_workers,@njsmyth,RT @AuntieStress: @SWcareer @njsmyth @UBSSW @FinancialMSW @laurelhitchcock @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @Value… +06/13/2018,Social_workers,@njsmyth,RT @newsocialworker: We Still Don’t Fully Understand #Suicide. But We Do Know What Reduces It - commentary by @socworkpodcast https://t.co/… +06/13/2018,Social_workers,@njsmyth,RT @SWcareer: What Do You Do When Friends or Family Ask You for Money? https://t.co/5KLd4IXffK < giving money may lead others to view you a… +06/13/2018,Social_workers,@njsmyth,@lakeya_cherry Looking forward to it! +06/13/2018,Social_workers,@njsmyth,@cherylholt @DrHowardLiu @mbschoening @DrPaulKorte @KevinHinesStory @miller7 @arianajohnston @bmanteu @PBerryRN… https://t.co/xJb4fYW21T +06/13/2018,Social_workers,@njsmyth,@AuntieStress @annwilder - #ShoutOutWednesday featured top engaged members members :) +06/13/2018,Social_workers,@njsmyth,@socworkpodcast @DanitaBlackwood - these are my favorite influencers this week! +06/13/2018,Social_workers,@njsmyth,RT @laurelhitchcock: This tool lets you see–and correct–the bias in an algorithm https://t.co/Z3xRisj18Y #swtech +06/13/2018,Social_workers,@njsmyth,"RT @KithandKinMag: 11 steps you can take to protect yourself from being stalked https://t.co/vQYdBDcipo + +#NationalStalkingAwarenessMonth #N…" +06/13/2018,Social_workers,@njsmyth,Headed to San Diego for the #NSWM29 conference #175stories +06/13/2018,Social_workers,@njsmyth,"RT @SouthwestAir: Weeks ago, we departed Houston with dozens of cats and dogs, rescued from shelters flooded by Harvey: https://t.co/XegWKJ…" +06/13/2018,Social_workers,@njsmyth,"RT @brooklyn11210: Honored to be included on the #D4GX 2018 Program Committee + +@unu_cs +@melaniesage +@JohnGMcNutt +@TechEthicist +See yo…" +06/13/2018,Social_workers,@njsmyth,@brooklyn11210 @unu_cs @melaniesage @JohnGMcNutt @TechEthicist Congratulations!! +06/12/2018,Social_workers,@njsmyth,RT @lakeya_cherry: True. Most people unfortunately w/nt think this stress exists. POC often deal w/ it as they enter various social setting… +06/12/2018,Social_workers,@njsmyth,RT @lakeya_cherry: https://t.co/9c0Yz5ejTv +06/12/2018,Social_workers,@njsmyth,@laurelhitchcock @SWcareer @UBSSW @FinancialMSW @socworkpodcast @newsocialworker @myjoythisway @StuckonSW… https://t.co/eY922RSlhF +06/12/2018,Social_workers,@njsmyth,RT @epflcswccm: Why Female CEOs' Performance May Depend on Who Had the Job Prior @JudgeWren @njsmyth @UBSSW @cherylholt @PBerryRN https://t… +06/12/2018,Social_workers,@njsmyth,"RT @AdamMGrant: After they're given terrible ideas to consider, brainstorming groups become more creative. +A bad solution can point the way…" +06/12/2018,Social_workers,@njsmyth,@TheMattSchwartz @UBSSW @ubalumni That’s terrific! Very exciting..can’t wait to see all you do there. +06/12/2018,Social_workers,@njsmyth,"@TheMattSchwartz @UBSSW @ubalumni Congratulations, Matt, we are thrilled to have you as an alumnus! What job have you been hired for?" +06/12/2018,Social_workers,@njsmyth,RT @TheMattSchwartz: There were many amazing parts of going through the @UBSSW #MSW program at #UB. One of the best was being prepared for… +06/11/2018,Social_workers,@njsmyth,Thanks for the retweets @A_CreativeEdge @HeroesClubWomen much appreciated! :) +06/11/2018,Social_workers,@njsmyth,RT @Ross_Quintana: 4 Female Entrepreneurs Share the Visions That Helped Make Them Successful https://t.co/h6G0uVSueH #Entrepreneurship #Sta… +06/11/2018,Social_workers,@njsmyth,RT @realityalt1: The EU is trying to decide whether to grant robots personhood. https://t.co/vmXbQ5DbnY #Tech #AI #Futurism +06/10/2018,Social_workers,@njsmyth,RT @thehill: Restaurant owner who says Anthony Bourdain's show changed their lives donates $60K to National Suicide Hotline https://t.co/HD… +06/10/2018,Social_workers,@njsmyth,RT @Waterkeeper: Waterkeepers wore blue for #WorldOceansDay yesterday & @MarchForOcean today at Niagara Falls! #wkac18 #MarchForTheOcean #w… +06/09/2018,Social_workers,@njsmyth,@obrienaj @melaniesage Ha! Good idea. I do know that a lot of traveling does me in with regard to healthy habits +06/09/2018,Social_workers,@njsmyth,"RT @melaniesage: Frequent business travelers are at higher risk of obesity, smoking, alcohol abuse, depression and other health problems ht…" +06/09/2018,Social_workers,@njsmyth,View from my deck... Ducklings! https://t.co/DlpVGpC90V +06/09/2018,Social_workers,@njsmyth,@waterkeepermark @RobertKennedyJr I recorded part of his speech. Here's the link on YouTube https://t.co/0WGTR6gX2R +06/09/2018,Social_workers,@njsmyth,"RT @swimguide: ""Beach apps a new necessity for summer"" and @swimguide is at the top of that list. Thanks @NBCNews for talking about our wor…" +06/09/2018,Social_workers,@njsmyth,RT @water_rangers: Love learning about @swimguide from Gabby! Incredible new features. Check it out to find out if your beach is safe to sw… +06/09/2018,Social_workers,@njsmyth,RT @TheBuffaloNews: Stewardship emerges as key part of Waterkeeper mission https://t.co/TfWKb5rxRJ +06/09/2018,Social_workers,@njsmyth,"RT @JudgeWren: “Won’t you be my neighbor” Mister Rogers documentary celebrates the depth, decency & authenticity of a children’s TV legend.…" +06/09/2018,Social_workers,@njsmyth,RT @epflcswccm: HIMSS Analytics survey shows patients want convenient payment options @StuckonSW @njsmyth @CCM_Cert @signaturedoc https://… +06/09/2018,Social_workers,@njsmyth,"RT @TheMattSchwartz: #Pharmacists in NYS have Pharm.D’s, and an incredible amount of knowledge. While this occurred in MA, I assume their p…" +06/09/2018,Social_workers,@njsmyth,"RT @kccallaway: “What I noticed from my time in the Gulf and in Santa Barbara, the oil companies are winning the PR game. They control the…" +06/09/2018,Social_workers,@njsmyth,RT @sejalc: Waterkeepers from all over the world converging on Buffalo NY this week to protect and defend our world’s most precious resourc… +06/09/2018,Social_workers,@njsmyth,At the annual international Waterkeeper gathering in Buffalo #wkac18 @RobertKennedyJr : All pollution is due to fat… https://t.co/NhUdAoKgye +06/09/2018,Social_workers,@njsmyth,"RT @kccallaway: You guys must tell better stories. Take us out on boats, connect us to the stories, to your work in the community as those…" +06/09/2018,Social_workers,@njsmyth,RT @sejalc: Waterkeepers know how to work hard and play hard. We’ve gathered as a force for clean water at the annual conference in Buffal… +06/08/2018,Social_workers,@njsmyth,See this for update on Commerce Drive shooter https://t.co/o53Urf8bOa +06/08/2018,Social_workers,@njsmyth,RT @samapied: @mrnahdez presenting on an episode of Black Therapist Podcast that highlights domestic violence in communities of color and t… +06/08/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Digital Dexterity Card Game https://t.co/Vw3ODlbyh5 #swtech Peeps - Who wants to develop a card deck for #SocWorkEd &… +06/08/2018,Social_workers,@njsmyth,"RT @SJSworks: In the wake of all these tragic suicides I hope you remember that celebrities make the news, all those around us make only th…" +06/08/2018,Social_workers,@njsmyth,@RepBrianHiggins please vote against #PROSPERAct (H.R. 4508) . We need to keep higher education affordable for ever… https://t.co/pVZR9YV2b5 +06/08/2018,Social_workers,@njsmyth,RT @CSocialWorkEd: Do you want to increase the visibility of your #research & be recognized as a leader in #socialwork education at #APM18?… +06/08/2018,Social_workers,@njsmyth,@DrCastner @nerdlogic0_o - Share the love! Check out the top engaged community members in my community! +06/07/2018,Social_workers,@njsmyth,RT @epflcswccm: EHR Use Detract From Patient-Provider Communication? @StuckonSW @CCM_Cert @njsmyth @HealthITNews @MobiHealthNews https://t.… +06/07/2018,Social_workers,@njsmyth,@SJSworks @PsychBrownBag - these are my favorite engaged members this week! +06/06/2018,Social_workers,@njsmyth,"RT @melaniesage: Quote from @drbarsky, member of the recent NASW Technology Standards committee, from article on #telehealth in current cop…" +06/04/2018,Social_workers,@njsmyth,@AMLTaylor66 Such an important practice that really opens up one's life! +06/04/2018,Social_workers,@njsmyth,RT @epflcswccm: Why provider IT systems aren’t ready to capitalize on patient data @StuckonSW @njsmyth @HealthITNews @CCM_Cert @wgu https:/… +06/04/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Checkout @socialworksage's new blog post about using @Flipgrid in the #SocWorkEd Classroom: https://t.co/YFSv1Swg9a T… +06/04/2018,Social_workers,@njsmyth,RT @UniteThePoor: TODAY: Hundreds risking arrest in #PoorPeoplesCampaign rally & nonviolent direct action across the country. WATCH THE D.C… +06/03/2018,Social_workers,@njsmyth,@AMLTaylor66 Lovely!! +06/03/2018,Social_workers,@njsmyth,RT @epflcswccm: Opioids Cause 1:5 Deaths of Young Adults @DrHowardLiu @cherylholt @CCM_Cert @MichaelBGarrett @BartAndrews @UBSSW https://t.… +06/03/2018,Social_workers,@njsmyth,"RT @epflcswccm: Rising inequality responsible for greater stress, anxiety, mental illness? @cherylholt @StuckonSW @njsmyth @UBSSW https://t…" +06/03/2018,Social_workers,@njsmyth,RT @epflcswccm: Lawsuit Filed in Wake of Under Armour Data Breach @MobiHealthNews @StuckonSW @njsmyth @HealthITNews @CCM_Cert https://t.co/… +06/02/2018,Social_workers,@njsmyth,RT @UBSSW: The seven deadly sins on social media... MT @AdamMGrant via @njsmyth #SWtech #SocialMedia #Humor Image: Matt Lieberman https:/… +06/02/2018,Social_workers,@njsmyth,RT @epflcswccm: Digital health a behavioral science? @StuckonSW @cherylholt @BartAndrews @DrHowardLiu @ubswce @melaniesage @njsmyth https:/… +06/02/2018,Social_workers,@njsmyth,"RT @karenzgoda: [½] Tonight, we'd like to acknowledge @laurelhitchcock as she leaves our #MacroSW partnership for new pursuits. Since our b…" +06/02/2018,Social_workers,@njsmyth,"RT @DrAFerg: I still feel it! + https://t.co/6HO6jw0oa9" +06/02/2018,Social_workers,@njsmyth,RT @SocialWorkPulse: Well played. NBA Players' Union sees nothing but opportunity in hiring first director of mental health. Victory. @ASW… +06/02/2018,Social_workers,@njsmyth,RT @amy_mendenhall: When you get a bunch of student papers and reviews that you forgot were coming then summer reading becomes.... https://… +06/02/2018,Social_workers,@njsmyth,RT @CSocialWorkEd: The New Social Workers report from the National #SocialWork Workforce Study summarizes who is entering the social work p… +06/01/2018,Social_workers,@njsmyth,RT @UBSSW: Domestic Violence's Overlooked Damage: Concussion And Brain Injury: https://t.co/cNeqDBJbzI HT @njsmyth via @epflcswccm #TBI #… +06/01/2018,Social_workers,@njsmyth,RT @SWBookGroup: Exciting planning meeting early this morning with @RachelFearnley1 about her new book ‘Our Family and IT’ Hoping to schedu… +05/31/2018,Social_workers,@njsmyth,@laurelhitchcock @twilli2861 - these are my favorite engaged community members this week! +05/31/2018,Social_workers,@njsmyth,Interesting example that illustrates all that students learn on a project like game design: When Students Design Th… https://t.co/Ny8npgHQpk +05/31/2018,Social_workers,@njsmyth,@AMLTaylor66 @SocialWorkDesk - these are my favorite influencers this week! +05/31/2018,Social_workers,@njsmyth,RT @socworkpodcast: New #SWpodcasts on the block. @PatrickM_MSW started a podcast about #socialwork and politics https://t.co/pV1E8nvUEX. M… +05/31/2018,Social_workers,@njsmyth,"RT @UBSSW: In preparation for joining the #MacroSW chat this Thur eve, @FunkAndBeans will be posting resources at #SoJustProfiling - RT @pr…" +05/31/2018,Social_workers,@njsmyth,"RT @melaniesage: Very good answer to this client's question. Also, it's natural for clients to be curious about the therapist's (or doctor,…" +05/31/2018,Social_workers,@njsmyth,RT @forty3north: Why should you apply to 43North? Because this could be you on stage winning $1 million. But you'll have to hurry - the May… +05/30/2018,Social_workers,@njsmyth,@AMLTaylor66 @BBCiPlayer @hayfestival That sounds like fun! I am really looking forward to meeting you in Dublin. +05/30/2018,Social_workers,@njsmyth,RT @epflcswccm: So honored! What Will Your Legacy Be? : Professional Case Management https://t.co/9XHutnX4Yi #whatsyourlegacy @UBSSW @uscso… +05/30/2018,Social_workers,@njsmyth,"@mmt98 @caswe_acfts @Global_SW_DE I agree with @spcummings , your photos are incredibly creative" +05/30/2018,Social_workers,@njsmyth,@AMLTaylor66 @BBCiPlayer @hayfestival That must be it. I guess I will just have to move to the UK. 😁 +05/30/2018,Social_workers,@njsmyth,RT @OPCouncil: Important reminder for all students. #digitalfootprint https://t.co/M9kWjvasah +05/30/2018,Social_workers,@njsmyth,@AMLTaylor66 That content won't play from my location. 😯😕 +07/01/2018,Social_workers,@socworkpodcast,In #Dublin for #SWSD2018. Had the amazing experience of learning about the Book of Kells and seeing the Long Room a… https://t.co/Qg90iXrlOe +07/01/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/jZ4rdnK1tJ" +07/01/2018,Social_workers,@socworkpodcast,"RT @SWDiscoveries: @socworkpodcast @SWSD2018 Yes! Me too. You’ve been a real inspiration for the podcast, and I’m looking forward to thanki…" +07/01/2018,Social_workers,@socworkpodcast,@DrKristinMSmyth Wow. That's awesome. Thank you. I'm sure @Darlascoffey will be glad to know her inspiring words wi… https://t.co/wE90Nm244a +07/01/2018,Social_workers,@socworkpodcast,RT @AnnLavan: I urge all delegates @husITaOrg @SWSD2018 @AMLTaylor66 @melaniesage @socworkpodcast to visit @CBL_Dublin and it has a wonderf… +07/01/2018,Social_workers,@socworkpodcast,RT @vlarendt: Spot on. Cred @socworkpodcast @Darlascoffey #socialwork #socialworkers @CSocialWorkEd https://t.co/MkOAGQrDdM +07/01/2018,Social_workers,@socworkpodcast,"Special thank you to my 63 new followers from USA, UK., and more last week. https://t.co/OXZLlGT1K1 . https://t.co/hUIc1cgCo1" +07/01/2018,Social_workers,@socworkpodcast,@SeekSarahBSW @MarshAlesia Thanks so much y'all. I'm blushing. https://t.co/3vRdZUqMt9 +07/01/2018,Social_workers,@socworkpodcast,RT @SeekSarahBSW: @MarshAlesia @socworkpodcast Absolutely agree! Jonathon Singer’s @socworkpodcast is my own fave SW podcast 🙌🏼 +07/01/2018,Social_workers,@socworkpodcast,"RT @MarshAlesia: Since we are recommending helpful reads, I’m giving a shoutout to Jonathan Singer @socworkpodcast for Suicide in Schools.…" +07/01/2018,Social_workers,@socworkpodcast,@johnleland @socwkinprogress @CSocialWorkEd @jalvear Well played John. +07/01/2018,Social_workers,@socworkpodcast,RT @ASWB: @fenixfoundation @melaniesage @LuluRharoun @StuckonSW @socworkpodcast @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @… +07/01/2018,Social_workers,@socworkpodcast,RT @OfficialMacroSW: Our #MacroSW chat last night brought out a lot of great podcast suggestions for the summer! What podcasts would you li… +07/01/2018,Social_workers,@socworkpodcast,"@LisaKaysMSW 4. Regardless, I would play the thought experiment ""imagine that this leads to the worst outcome, what… https://t.co/4cenvzTuLt" +07/01/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/7wj30Ov332 +07/01/2018,Social_workers,@socworkpodcast,"@LisaKaysMSW 3. Even if there isn't a legal duty to warn, you might be faced with the ethica/practice decision of w… https://t.co/knRA4tbkah" +07/01/2018,Social_workers,@socworkpodcast,@LisaKaysMSW Lisa 1. Great question. Love that you're thinking through this. 2. Each state has different regulation… https://t.co/qzjM8X7Pnf +07/01/2018,Social_workers,@socworkpodcast,"RT @uscsocialwork: RT @socworkpodcast: ABFT, DBT & I-CBT are 3 family-based psychotherapies that reduce #suicide risk in adolescents. Why d…" +07/01/2018,Social_workers,@socworkpodcast,This is the best summary of a Social Work Podcast episode ever. Win for @black_sexgeek. Check out the episode and s… https://t.co/iHiOonDp2M +07/01/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW Great thread! +07/01/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/9kchTfDGn4 +07/01/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/HcljyOoHG8" +07/01/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +07/01/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/AlNN1sZtyA Thanks to @JoeFeagin @Steve_JKPbooks @JasmineMcNealy #mentalhealth +06/30/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/8KkQO2zjmA +06/30/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/IGOJmRTmKT" +06/30/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/YfXHYIPgX5 +06/30/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/AlNN1sZtyA Thanks to @PaulSacco1 @RaymondPTucker @AnneReports #ai #mentalhealth +06/30/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/DQ5ZMrBMxa" +06/30/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/30/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/30/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/30/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/dG8bZNDeKa" +06/30/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/wAqIJlYAgO +06/30/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/UtrrBBvown +06/30/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/W8K4GBuJtj" +06/30/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/30/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/pXIw5iQNdC Thanks to @SocialJerkBlog @laurelhitchcock @jonathonmorgan #mentalhealth +06/29/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/NwaTniXZ5R +06/29/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/kCaWGWbX5w" +06/29/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/bFN4Yu1s7e +06/29/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/pXIw5iQNdC Thanks to @PSYCH_HYPE @mostlyathena @UMSocialWork… https://t.co/h9h14bQmbT +06/29/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/pkhndc2uDt" +06/29/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/29/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/29/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/29/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/ZSlh6e0SMZ" +06/29/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/OK2IQvUdtc +06/29/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/CGS4s4RwKn +06/29/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/3uRKEPvK5e" +06/29/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/29/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/CdgdhxW9Xf Thanks to @elspethslayter @JasmineMcNealy @DrKathrynGordon #mhed2018 +06/28/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/lZ8ZkXunna +06/28/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/s1jG94Ijz1" +06/28/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/PNKrrASO4y +06/28/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/CdgdhydLlP Thanks to @JudgeWren @Grace_Durbin @NASWMI #socialwork #mhed2018 +06/28/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/Tr81apHqrA" +06/28/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/28/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/28/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/28/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/e6CHMDOOMO" +06/28/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/yazklHMGDO +06/28/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/gZHfDlLeIM +06/28/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/xtZYnrGPit" +06/28/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/28/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/T4nm7G6A67 Thanks to @MrJonnyBenjamin @JoThoHalloran @SuiDoc #mentalhealth +06/27/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/aWkBIafGEL +06/27/2018,Social_workers,@socworkpodcast,"RT @Jedi_Counsel: Today is #PTSDAwarenessDay. For scientifically-informed information about PTSD, you can check out our @JessicaJones post:…" +06/27/2018,Social_workers,@socworkpodcast,RT @FOX2News: Police in Berkley looking for missing teen who left home https://t.co/QLaWKFTkBv +06/27/2018,Social_workers,@socworkpodcast,"RT @ZSInstitute: At the Oklahoma #ZeroSuicide Academy, @ursulawhiteside shares about dialectical behavior therapy, CAMS, non-demand caring…" +06/27/2018,Social_workers,@socworkpodcast,RT @jdonohuedioh: Self-care impacts how we treat one another. We need to understand more about self-care. Dr. Miller is leading the way!!… +06/27/2018,Social_workers,@socworkpodcast,RT @jdonohuedioh: #selfcare #socialwork #process #selflove #KindnessMatters #selfcaremovement https://t.co/wHrI2voOlZ +06/27/2018,Social_workers,@socworkpodcast,RT @AdamDSwanson: Justice Kennedy has been instrumental in the advancement of LGBTQ equality. I’m very nervous about what comes next. #SCOT… +06/27/2018,Social_workers,@socworkpodcast,@deseraestage @MSNBC https://t.co/w7LnsZMw2u +06/27/2018,Social_workers,@socworkpodcast,RT @deseraestage: Dude on @MSNBC just said Roe v Wade being overturned wouldn’t be such a significant change because it’s already mainly af… +06/27/2018,Social_workers,@socworkpodcast,@thethoughtbub Nicely done! Thank you. +06/27/2018,Social_workers,@socworkpodcast,Great summary of Social Work's 12 Grand Challenges https://t.co/6am7mN8MBP via @thethoughtbub +06/27/2018,Social_workers,@socworkpodcast,RT @epflcswccm: Suicide Isn't A U.S. Problem. It's A Global Health Epidemic @StuckonSW @socworkpodcast @uscsocialwork @CCM_Cert https://t.c… +06/27/2018,Social_workers,@socworkpodcast,RT @thethoughtbub: Come over to https://t.co/pkWs4zBAjk at 12 am (tonight) for a run down on the Social Work Grand Challenges!! Shout out t… +06/27/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/LjD5B3Y6n2" +06/27/2018,Social_workers,@socworkpodcast,RT @UBSSW: @melaniesage @spcummings @StuckonSW @lakeya_cherry @socworkpodcast @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @UNE_HealthIT @… +06/27/2018,Social_workers,@socworkpodcast,@SWDiscoveries @SWSD2018 Looks great! Looking forward to meeting you in person #SWSD2018 +06/27/2018,Social_workers,@socworkpodcast,RT @SWDiscoveries: Just had the @SWDiscoveries poster printed for the @SWSD2018 conference starting next week. I think it’s looking good -… +06/27/2018,Social_workers,@socworkpodcast,RT @AMLTaylor66: @CarolineAldrid5 @laurelhitchcock @SWVirtualPal @socworkpodcast @melaniesage @njsmyth @DrNJonesTSU @becky_anthony Absolute… +06/27/2018,Social_workers,@socworkpodcast,"RT @laurelhitchcock: @AMLTaylor66 & I are ready to talk about @SWVirtualPal at #husITa18 next week - poster, handouts and mini cards are al…" +06/27/2018,Social_workers,@socworkpodcast,RT @davidr46: Good advice https://t.co/iSb4YczCQ8 +06/27/2018,Social_workers,@socworkpodcast,RT @newsocialworker: How will the end of #netneutrality affect #socialwork ? #macrosw #SWtech @OfficialMacroSW @socworkpodcast @EBelluomini… +06/27/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/T4nm7G6A67 Thanks to @MikeGordonRyan @MyHarmReduction… https://t.co/65aJ54dget +06/27/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/TkPPRjY9l3 +06/27/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/CVzRRnjTPA" +06/27/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/27/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/27/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/27/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/qOKLIxEAOs" +06/27/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/DzPDx932Ci +06/27/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/0Fu9cxgOgk +06/27/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/tsbFXsZc0i" +06/27/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/27/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/1fz7DZg4yP Thanks to @SDSUSocialWork @PopTechWorks @socialworksage #socialwork +06/26/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/Eu2YXHICXy +06/26/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/kDzgZJOgsU" +06/26/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/NOytRzpPtC +06/26/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/1fz7DZg4yP Thanks to @RitaWorlock @DrBakerPhD @SpringerSW #ai #socialwork +06/26/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/H4cUTUrSaw" +06/26/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/26/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/26/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/26/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/QFAXo7HBxu" +06/26/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/uQfYfUEshK +06/26/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/RwPG8rikfE +06/26/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/P12JQXSg9x" +06/26/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/26/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/0FGC6YllJS Thanks to @Jo_Yaffe @MyfMaple @SexualContinuum #successtrain +06/25/2018,Social_workers,@socworkpodcast,@StuckonSW @EJohnsonLCSW @JenniferTheMSW @melaniesage @spcummings @mmt98 @jalvear @UBSSW @UNE_HealthIT @2Uinc… https://t.co/BKhFEL40Um +06/25/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @StuckonSW @lakeya_cherry @melaniesage @spcummings @JenniferTheMSW @mmt98 @jalvear @UBSSW… https://t.co/f0Lg284VNy +06/25/2018,Social_workers,@socworkpodcast,Yes! There will never be a substitute for real-world experience. But if social work and social service organization… https://t.co/a1EyjCsy16 +06/25/2018,Social_workers,@socworkpodcast,@lakeya_cherry @StuckonSW @melaniesage @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @UBSSW… https://t.co/xIRfkGfoq7 +06/25/2018,Social_workers,@socworkpodcast,This. https://t.co/7vAAI27H71 +06/25/2018,Social_workers,@socworkpodcast,@StuckonSW @JenniferTheMSW @melaniesage @spcummings @EJohnsonLCSW @mmt98 @jalvear @UBSSW @UNE_HealthIT @2Uinc… https://t.co/kAhSyBHLUY +06/25/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/lEMlydqINp +06/25/2018,Social_workers,@socworkpodcast,RT @EJohnsonLCSW: @socworkpodcast @JenniferTheMSW @melaniesage @spcummings @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc @chippauc… +06/25/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @melaniesage @spcummings @JenniferTheMSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/VwGLTwOXCV +06/25/2018,Social_workers,@socworkpodcast,@JenniferTheMSW @melaniesage @spcummings @EJohnsonLCSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/jxXmWeMQvH +06/25/2018,Social_workers,@socworkpodcast,@KimLeifso That's amazing! Thank you so much for letting me know. I don't think I've ever heard of this kind of res… https://t.co/pc0bvRpfzu +06/25/2018,Social_workers,@socworkpodcast,"RT @KimLeifso: @socworkpodcast Based on the article, principal embedded CBT, DBT and attachment informed therapies. This ensures that these…" +06/25/2018,Social_workers,@socworkpodcast,"RT @KimLeifso: @socworkpodcast Shared your article with my visionary principal, while we were revising our therapeutic team roles/descripti…" +06/25/2018,Social_workers,@socworkpodcast,RT @monaca_eaton: Interesting ideas on simulations to improve competence - technology could be used to enhance/communicate these. https://t… +06/25/2018,Social_workers,@socworkpodcast,RT @StopTXSuicides: Thx @socworkpodcast for this work! #TimeBasedPrevention works! https://t.co/RRRTPk2cWl +06/25/2018,Social_workers,@socworkpodcast,"RT @LoyolaSSW: 🎧🎙️Listen to the @socworkpodcast, options for different devices: +. +. +#socialwork #podcast https://t.co/xvYIgdIPeM" +06/25/2018,Social_workers,@socworkpodcast,@black_sexgeek How did it go? Did the Klezmer intro music pump up your work out :-) +06/25/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/7OpYqGMgGB" +06/25/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: Twice in the last few months, I have been asked to complete a #depression & #suicide screening inventory by a doctor. I'v…" +06/25/2018,Social_workers,@socworkpodcast,@melaniesage @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/SSGzqGpWYh +06/25/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/0FGC6YllJS Thanks to @jcgreenfield @zerosuicide_org… https://t.co/dIdsqK3zrU +06/25/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/M5lxByE61n +06/25/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/Ix4yOOoOh9" +06/25/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/25/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/25/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/25/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/OErdd6eI6u" +06/25/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/6vYDoLmTMa +06/25/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/QrBFK61YaK +06/25/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/C69dJonn6q" +06/25/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/25/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/h7C8dGpkqF Thanks to @JoeFeagin @drvernig @DrNNegi #socialjustice +06/24/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/pFQC6UHG18 +06/24/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/eUEucanXoX" +06/24/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/2KYoFVKWMq +06/24/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/h7C8dGpkqF Thanks to @paulikonenmsw @AmyMorinLCSW… https://t.co/7dyyszZXtU +06/24/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/msWRUyoPqM" +06/24/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/24/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/24/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/24/2018,Social_workers,@socworkpodcast,@moundhousedude https://t.co/GmGUog48Fq +06/24/2018,Social_workers,@socworkpodcast,RT @moundhousedude: @socworkpodcast No problem! Thank you for all the good work you do in the social work world! +06/24/2018,Social_workers,@socworkpodcast,@moundhousedude Yes! This is 100% true. Thanks for conversation about this. +06/24/2018,Social_workers,@socworkpodcast,RT @moundhousedude: @socworkpodcast I’m so glad you’re discussing this. Too often the service provider’s well-being takes a backseat to the… +06/24/2018,Social_workers,@socworkpodcast,"@DrJulieHanks @NewHarbinger @HealingOutdoors I will always be your biggest fan, Julie :-)" +06/24/2018,Social_workers,@socworkpodcast,"RT @socwkinprogress: From a social worker, this candid perspective. @NASWMA⁩ @NASW ⁦⁦@Hunter_College⁩ ⁦@CCF_Families⁩ ⁦@socworkpodcast⁩ ⁦@n…" +06/24/2018,Social_workers,@socworkpodcast,RT @SD_SocialWorker: @AmericanAir wondering if you would support #socialworkers #nurses to support reduced/no travel costs to inspect #Dete… +06/24/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: @NWMHgrads Very true! People want understanding and connection, not an interrogation. Have you seen my book ""Helping the…" +06/24/2018,Social_workers,@socworkpodcast,RT @LoyolaSSW: The Rome study abroad group is having a great time. We just got a sneak peek 🙂coming from VaticanCity! Students &faculty att… +06/24/2018,Social_workers,@socworkpodcast,"RT @brooklyn11210: #Resist +#MacroSW +#swtech +@unu_cs +@socworkpodcast https://t.co/PDT7PkjZI4" +06/24/2018,Social_workers,@socworkpodcast,RT @creightonc: Proud to have @socworkpodcast as secretary of our @AASuicidology board. And having spent all day with @WileySocieties today… +06/24/2018,Social_workers,@socworkpodcast,Wow. @KimLeifso I'm so glad to hear that this article was so helpful. It is not often that I hear about a practical… https://t.co/A5Ia2EAptS +06/24/2018,Social_workers,@socworkpodcast,RT @socwkinprogress: Why companies need to hire social workers https://t.co/Xmm1SFsvAw Well done @PittTweet @uscsocialwork @USCDeanFlynn @W… +06/24/2018,Social_workers,@socworkpodcast,RT @DavidSusman: @socworkpodcast NEW post! 10 Simple Ways to Help Manage ‘Overwhelm’ https://t.co/UvacifSx5j #mentalhealth +06/24/2018,Social_workers,@socworkpodcast,"RT @SchoolSocWork: Please spread the word: info sessions coming up 6/26 & 7/12, apps due 8/1 for our Fall cohort! @GK_SSW @OaklandSSW @doco…" +06/24/2018,Social_workers,@socworkpodcast,"RT @KayWarren1: I had the incredible opportunity to talk w/ Dr. Jerry Reed, about the impact of mental illness & suicide prevention among m…" +06/24/2018,Social_workers,@socworkpodcast,RT @creightonc: whoa- just realized today marks exactly one year since I started at @AASuicidology . #aas365 +06/24/2018,Social_workers,@socworkpodcast,RT @melaniesage: A4. Did you know that you can be a non-lawyer representative in immigration court? @RAICESTEXAS has online training. Loca… +06/24/2018,Social_workers,@socworkpodcast,"RT @jcgreenfield: #SingleStagingArea NOW. Reuniting these kids with their parents must become a top priority. It’ll take teamwork, but we c…" +06/24/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: The resources page on my website, https://t.co/u8Z3ZwDU8f, has received 26,000 hits in the last 2 weeks because of media…" +06/24/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/zjulpEtWe6" +06/24/2018,Social_workers,@socworkpodcast,"I have 66 new followers from USA, UK., Canada, and more last week. See https://t.co/OXZLlGT1K1 https://t.co/jaqxeNIcSe" +06/24/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/hxbbQ5g4c8 +06/24/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/GZmbpf25O8 +06/24/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/6AkjgBxotz" +06/24/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/24/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/ftrtj7EC68 Thanks to @govtrack @RitaWorlock #mentalhealth +06/23/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/ieVRoVBvJ0 +06/23/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/QC66WhJWhG" +06/23/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/lRJWXp3av4 +06/23/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/ftrtj7EC68 Thanks to @AllenFrancesMD @USAFacts @jcgreenfield… https://t.co/1WEdJZC1Xw +06/23/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/uzgIBvSoMp" +06/23/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/23/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/23/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/23/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/6xJRxNHWyc" +06/23/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/JnZLXL4fB6 +06/23/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/MMkngwDgjE +06/23/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/v65UueN1j1" +06/23/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/23/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/DlcB0AsoWi Thanks to @SexualContinuum @JasmineMcNealy @LisaABrenner #socialjustice +06/22/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/0qdmljtNUD +06/22/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/r2Ro3kQs7G" +06/22/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/DlcB0AsoWi Thanks to @JoeFeagin @unsplash @suicidemediabot… https://t.co/Esmv7NobhO +06/22/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/JRZ2PKat2E +06/22/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/ZlSfR3mTES" +06/22/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +07/01/2018,Social_workers,@johannagreeson,"Students sew 1,000 moccasins for Indigenous children in foster care - Prince Rupert Northern View https://t.co/HSfoPFMzf1" +07/01/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/EhRO612Tks Thanks to @rryanhowells @Umpire20 @DevereuxCEO #fostercare #adoption +06/30/2018,Social_workers,@johannagreeson,RT @TheFosterNation: The Support that is Helping Make #College Graduation a New Reality for #FosterYouth Via @ChronicleSC: https://t.co/v1C… +06/30/2018,Social_workers,@johannagreeson,"RT @RJLFoundationPA: #Mentorship could change the face of the #fostercare system. Read about the importance of mentors. +https://t.co/ku1EId…" +06/30/2018,Social_workers,@johannagreeson,How Australia's Foster Care System Is Forcing Teenagers Into Homelessness https://t.co/DqVX2kthwc +06/30/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/4kcej4kBIw Thanks to @StevenNitah @ChronicleSC @Foster_EDU #fostercare #adoption +06/30/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 1.81K Mention Reach, 10 Likes, 12 Retweets, 13.1K Retweet Reach. See yours with… https://t.co/DL1wpLCYbt" +06/29/2018,Social_workers,@johannagreeson,One local nonprofit views life in foster care through a child’s eyes - Greenville Journal https://t.co/cd7Yrjnwsy +06/29/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/U9yYEUPx0C Thanks to @iacob920 @Vitaminnies @Reach_Church #fostercare #adoption +06/29/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @OneSimpleWish, @DGletow, @JoshIsBae81. Thank you! via https://t.co/fuzTp9tmoO https://t.co/25kkXYWVu9" +06/28/2018,Social_workers,@johannagreeson,"Biological, foster, adoptive father reflects on Father's Day https://t.co/ZrolbzeiAx" +06/28/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/J8N3NGZjM6 Thanks to @Fosteringltd @LogicGrl @MMS_Group #fostercare #adoption +06/28/2018,Social_workers,@johannagreeson,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/28/2018,Social_workers,@johannagreeson,Ever wonder how a judge decides if a child should be separated from his/her/their parents? & what that says about ⁦… https://t.co/dbkg3IN78j +06/27/2018,Social_workers,@johannagreeson,"2018 KIDS COUNT data are here from @aecfkidscount but as I question in this @CNN article, where are the… https://t.co/dXf2UQjCL9" +06/27/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: What does it mean to bring youth voice to the table? Marcia Hopkins, our Youth Advocacy Program Manager, explains how advoc…" +06/27/2018,Social_workers,@johannagreeson,Where are the child #maltreatment data in @aecfkidscount new 2018 report? #childwelfare #childwellbeing https://t.co/lSi2z9G24f +06/27/2018,Social_workers,@johannagreeson,"RT @PRDiva91: On @CNN, @PennSP2 @fieldcenter researcher @johannagreeson +talks #childwelfare and questions why child maltreatment #data was…" +06/27/2018,Social_workers,@johannagreeson,"RT @saray9192: Who will look at this important collection of Kids Count data? Who should? EVERYONE! As @johannagreeson also questioned,…" +06/27/2018,Social_workers,@johannagreeson,MPs calls for over-40s to pay a ‘social care premium’ https://t.co/NYMSTqFmj3 +06/27/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/X5BjNXT9Fj Thanks to @amik_ca @thaliahendo @elizabethaself #fostercare #adoption +06/26/2018,Social_workers,@johannagreeson,Alabama counties need more foster care homes https://t.co/9HqJgAHOwS +06/26/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/lBNOqznWXO Thanks to @VBVeeBee @DukeEndowment @MadisonJaye_ #fostercare #adoption +06/26/2018,Social_workers,@johannagreeson,Navigating resources for youth in #fostercare or who are #homeless in Philly can be tough. #YouthMattersPhilly app… https://t.co/Fyh7KkX2GT +06/25/2018,Social_workers,@johannagreeson,@ThirdLie #permanency #childwelfare #ChildRights #Immigration #ImmigrantChildren +06/25/2018,Social_workers,@johannagreeson,Foster care saved me: How a loving home turned a life around https://t.co/v7eyHd4F6P +06/25/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/PsfW6izuP0 Thanks to @OkAporia @PhillyAdvoKid @BeMyAdvocate #fostercare #adoption +06/24/2018,Social_workers,@johannagreeson,Inside the Native American Foster Care Crisis Tearing Families Apart https://t.co/l1eVNMxMGs +06/24/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/ETsdlhCmlV Thanks to @mccourt559 @PenLegacy @neotheprimal #fostercare #adoption +06/23/2018,Social_workers,@johannagreeson,"Arian Foster, Andre Johnson team up for youth football camp https://t.co/DhJJZLsUdw" +06/23/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/xjIuv5jwfc Thanks to @fosterhood @AshleighHNews @darkraincld #fostercare #adoption +06/23/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 1 Mention, 8 Likes, 6 Retweets, 1.31K Retweet Reach. See yours with https://t.co/NBMY2tsSf6 https://t.co/Q9ynD5qOQK" +06/22/2018,Social_workers,@johannagreeson,"RT @PennSP2: “The long-term adverse consequences of forced family separation will be felt for years to come,” says SP2's Antonio García, fo…" +06/22/2018,Social_workers,@johannagreeson,Kids brought to NYC immigration foster agency https://t.co/od8Hd8HUZf +06/22/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/eCDi4dAW7x Thanks to @AvantGardeFFA @RJLFoundationPA @MikeLoBurgio #fostercare #adoption +06/22/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @Brenda64, @TmiEnterprises. Thank you! via https://t.co/fuzTp9tmoO https://t.co/kSjXwQTIbE" +06/22/2018,Social_workers,@johannagreeson,"RT @Lexie_Gruber: .@RepKarenBass is one of the most ardent fighters for vulnerable children, and I hope we elect more women like her. https…" +06/21/2018,Social_workers,@johannagreeson,RT @AvantGardeFFA: Aging out of #fostercare doesn't have to be a nightmare for 18 yr olds. See how #California and other states are easing… +06/21/2018,Social_workers,@johannagreeson,@HelenGymAtLarge @PHLCouncil Does the multi-agency task force need members of the #Philly community who are researc… https://t.co/MVFk511pyg +06/21/2018,Social_workers,@johannagreeson,RT @DGletow: We will be here. For the kids reunified. For the kids placed in #fostercare. For the kinds in group homes. For the kids trauma… +06/21/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Terms such as ""transitioning"" & ""aging out"" de-normalizes and stigmatizes youth in care experience: http://t.co/w5PXS5D…" +06/21/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Improving foster care starts with relationships, advocates say https://t.co/UdsdgVKEFT #youthincare #fostercare #bcpoli…" +06/21/2018,Social_workers,@johannagreeson,RT @MelanieMDoucet: ‘It’s Like Being Pushed Off A Cliff’: Indigenous Youth On Aging Out Of Foster Care https://t.co/mLcTGGspRS #agingout #f… +06/21/2018,Social_workers,@johannagreeson,.@MelanieMDoucet from @mcgillu confirms ‘Relationships Matter’ for youth #agingout of #fostercare but you may be su… https://t.co/5kCCpsK77R +06/21/2018,Social_workers,@johannagreeson,"RT @DGletow: Every day at @OneSimpleWish we receive simple wishes from kids in #fostercare who are missing their siblings, families & feeli…" +06/21/2018,Social_workers,@johannagreeson,RT @DGletow: Media!Celebs! Ppl who just realized we have an issue w/ how we treat vulnerable kids in our country. Welcome. Now use your pla… +06/21/2018,Social_workers,@johannagreeson,"Immigrant children as young as 3 months old are being separated from parents, Michigan agency says https://t.co/Obs684iLsM" +06/21/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/29CAaCxhFf Thanks to @bteachey2 @Ganosono @morrisoncrying #fostercare #adoption +06/21/2018,Social_workers,@johannagreeson,@OneSimpleWish has established a Kids in Crisis Wish Fund to ensure that as needs & wishes come in from children im… https://t.co/o0zo1dgvM3 +06/20/2018,Social_workers,@johannagreeson,"Opinion | ‘If It Could Happen to Them, Why Can’t It Happen to Us?’ https://t.co/6GTELiYcVm" +06/20/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/CiDGzzIeOV Thanks to @Inferior_court_ @NomadCovfefe @HeartOCourage #fostercare #adoption +06/19/2018,Social_workers,@johannagreeson,RT @AdoptUSKids: A former foster youth shares 7 ways you can help kids in foster care https://t.co/gH9IqOTadI #fostercare https://t.co/2ek3… +06/19/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: Foster care is not a panacea. As the # of children in #FosterCare rises b/c of #opioidcrisis, more programs are needed to help…" +06/19/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +06/19/2018,Social_workers,@johannagreeson,RT @TheFosterNation: #Education Policy Needs to Catch Up to the Needs of #FosterCare Youth Via @TeenVogue: https://t.co/pLgepzPMzK +06/19/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Breaking: #HB1745 - the tuition waiver and support bill for foster/former foster youth just passed out of the House Educati… +06/19/2018,Social_workers,@johannagreeson,Immigrant children separated from parents land in foster care https://t.co/Aqq0ZjeVJQ +06/19/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/wtAK7zAb1m Thanks to @Netsbridge @hj2_day @seamuskearney_ #fostercare #adoption +06/17/2018,Social_workers,@johannagreeson,Thousands of Children in the UK Foster Care System Are Being Sold to Pedophile Rings https://t.co/998QXvAtan +06/17/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/nPO1bN99fj Thanks to @TheKnittedBrow @KultureGuides @RiversJohna… https://t.co/fahaOnlZOw +06/16/2018,Social_workers,@johannagreeson,South Carolina Sought an Exemption to Allow a Foster-Care Agency to Discriminate Against Non-Christians https://t.co/EDHNijNn3i +06/16/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/L0liGpIMCV Thanks to @missmyhappybird @JournalTribune @Hayden_Whateley #fostercare #adoption +06/16/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 4 Mentions, 11 Likes, 9 Retweets, 3.18K Retweet Reach, 1 Reply. See yours with… https://t.co/XumY7xARi7" +06/15/2018,Social_workers,@johannagreeson,Are you on board with youth boards? | News | https://t.co/f4gfCBIDEC https://t.co/TUJfXZ1xFP +06/15/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/vaWg9nYWUh Thanks to @VIHealthyLife1 @Flintastic @infoCWRP #fostercare #adoption +06/15/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @WriterChickNJ, @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/pFyFgwOoyD" +06/14/2018,Social_workers,@johannagreeson,"US Foster Care Supplies 88 Percent of Sex Trafficked Children, Study Finds https://t.co/jvCzNPEDhU" +06/14/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/DxvCK877Gn Thanks to @tpalya68 @1000LivesWales @AGAPEofNC #fostercare #adoption +06/13/2018,Social_workers,@johannagreeson,RT @TheFosterNation: How Homelessness Crisis in #LA Affects Aged-out #FosterYouth Via @YouthToday: https://t.co/YUnXdBhY7M +06/13/2018,Social_workers,@johannagreeson,How Homelessness Crisis in LA Affects Aged-out Foster Youth - Youth Today https://t.co/oChXy3diwL +06/13/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/JmdlcppECX Thanks to @JennyMikakos @whitebrownsugar @agingoutinst #fostercare #fostering +06/12/2018,Social_workers,@johannagreeson,"RT @YSRPinPhilly: ""Studies confirm what common sense tells us: young people are safer, and do better, when they are in age-appropriate sett…" +06/12/2018,Social_workers,@johannagreeson,Check out my #naturalmentoring intervention for older youth in #fostercare https://t.co/miqUW3Sc1k #oneadult https://t.co/wKwyWWfOyR +06/12/2018,Social_workers,@johannagreeson,Kids living in motel rooms amid critical shortfall in foster care https://t.co/KPJs2rlqFk +06/12/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/b5GSo05DBA Thanks to @lks221 @FamUnite4Child @TreeHouseCare #fostercare #adoption +06/12/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: With the # of children in #fostercare growing, we need more love not less. Did you know that 8 states have laws on the books t…" +06/12/2018,Social_workers,@johannagreeson,"RT @MilesEllis4: Get this people can marry the same sex but there’s still laws preventing LGBT from adopting. There also more than 400,000…" +06/11/2018,Social_workers,@johannagreeson,"RT @ChildrensRights: Amazing work from @TeenVogue & @JuvLaw1975 elevating #fosteryouth voices in the new series, #FosteredorForgotten! Educ…" +06/11/2018,Social_workers,@johannagreeson,RT @jennypokempner: Education Policy Needs to Catch Up to the Needs of Foster Care Youth https://t.co/sN84GCq1SQ via @TeenVogue #fosteredsu… +06/11/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +06/11/2018,Social_workers,@johannagreeson,NSW says it is releasing sensitive stadiums and foster care documents 'voluntarily' https://t.co/kiRWiBGEHj +06/11/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/WXMDbrdvEe Thanks to @NewsChannel256 @awake_africa @NCCPR #fostercare #childwelfare +06/10/2018,Social_workers,@johannagreeson,RT @VYHouse: Spread the word that having a couch to sleep on is NOT stable housing! #couchesdontcount #valleyyouthhouse https://t.co/Ae2Idi… +06/10/2018,Social_workers,@johannagreeson,RT @VYHouse: With 40% of homeless youth identifying as LGBTQ #pridemonth is the perfect time to talk about why #couchesdontcount https://t.… +06/10/2018,Social_workers,@johannagreeson,RT @TheFosterNation: How Prevention Services Could Help Youth Avoid the #FosterCare System Via @TeenVogue: https://t.co/hrbtQWc8Db +06/10/2018,Social_workers,@johannagreeson,"RT @ChronicleSC: Juvenile Law Center (JLC), with the support of the Annie E. Casey Foundation, has built an excellent new resource for the…" +06/10/2018,Social_workers,@johannagreeson,Justin Willis aims to raise awareness about U.S. foster care systems: ‘It created what I am today’ https://t.co/uVQIs6tR9Y +06/10/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/FZdW7SBXBS Thanks to @CauriePutnam @TripTrundle @epitomee #fostercare #adoption +06/10/2018,Social_workers,@johannagreeson,RT @PPEHRCorg: WE HAVE ARRIVED!!! Donate: https://t.co/h55yuR976z RT @DCMediaGroup: Happening Now: Poor Peoples Campaign march from Philade… +06/10/2018,Social_workers,@johannagreeson,"RT @RJLFoundationPA: Currently finishing his #masters in social work, Mark struggled to finish his #associates while homeless after he aged…" +06/09/2018,Social_workers,@johannagreeson,Foster youth celebrate their achievements at graduation ceremony https://t.co/aNcx5vdgOg +06/09/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/z92OVy09AG Thanks to @FosterFocusMag @munstermaid @RobertRoscoe14 #fostercare #adoption +06/09/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 4 Mentions, 196 Mention Reach, 22 Likes, 10 Retweets, 5.14K Retweet Reach. See yours with… https://t.co/1WcXUo5NKJ" +06/08/2018,Social_workers,@johannagreeson,We have weaponized the callous traumatization of children in the name of the promised immigration reform. https://t.co/4fKmsTrNz4 +06/08/2018,Social_workers,@johannagreeson,RT @socworkpodcast: Suicide prevention rockstar @Grace_Durbin posted a list of 13 interactions that could save a life. I loved them so much… +06/08/2018,Social_workers,@johannagreeson,RT @StoneleighFdn: #StoneleighEmergingLeader @semimora along w/ @fieldcenter is leading an initiative to help PA colleges & universities de… +06/08/2018,Social_workers,@johannagreeson,RT @TheFosterNation: I Was a Foster Child and Now I'm a #FosterCare Activist Via @TeenVogue: https://t.co/MrhSUmBWAc Written by our very ow… +06/08/2018,Social_workers,@johannagreeson,#SUICIDE PREVENTION HELP: Here is information on #suicide prevention from the National Institute of Mental Health.… https://t.co/6Ephpp1ike +06/08/2018,Social_workers,@johannagreeson,'He's a biter': why was my foster son reduced to a cruel label? | Krish Kandiah https://t.co/yn9F55XeCL +06/08/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/XcTSPC6XkO Thanks to @TXICFW @WPTV @joshkulla #fostercare #adoption +06/08/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @childwelfarelaw, @mlayten, @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/6vNKj32Kh0" +06/07/2018,Social_workers,@johannagreeson,"RT @dan_treglia: Bending the Arc, our podcast about social justice issues and the people ensuring that the arc of the moral universe reache…" +06/07/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Take a look @ the Relationships Matter for Youth 'Aging Out' of Care Project Video, ft. the talents & expertise of 8 fo…" +06/07/2018,Social_workers,@johannagreeson,Troubling Trends in Foster Care - Parental Rights Foundation https://t.co/iYjctp4Vva +06/07/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/ggFosfxjva Thanks to @ChadwickCenter @anneheffron @MiddayWYPR #fostercare #adoption +06/06/2018,Social_workers,@johannagreeson,"From DACA students to Rhodes Scholars to foster-care youth, a look at some unusual college-goers - The Hechinger Re… https://t.co/0SSYb7HuWs" +06/06/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/GZyr4X0qYk Thanks to @AttyJPaine @Rebecca4BrklRep @EADeBoestauthor #fostercare #adoption +06/05/2018,Social_workers,@johannagreeson,"RT @cfjjma: Thank you @TeenVogue @JuvLaw1975 for this excellent coverage of the foster care to prison pipeline: + +https://t.co/VzcSxc22va" +06/05/2018,Social_workers,@johannagreeson,Congress Proposes Fix to Provide Medicaid for Former Foster Youth Up to Age 26 https://t.co/ECM7H72IpU +06/05/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/76RnrJI2Tq Thanks to @phonzeygaming @drjohndegarmo @RunnerPark #fostercare #fosteryouth +06/04/2018,Social_workers,@johannagreeson,"Check out Caring Adults 'R' Everywhere (C.A.R.E.), a #naturalmentoring intervention for older youth in #FosterCare:… https://t.co/GU6LcTnvCF" +06/04/2018,Social_workers,@johannagreeson,RT @OneSimpleWish: It would be SUPER amazing @JimmyFowlie if you would help us get 5 y/o Kayden's super cool birthday wish for a boy doll g… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Want to learn more about Youth Matters Philly? Take a look: https://t.co/urxOnI4fKb +06/04/2018,Social_workers,@johannagreeson,@greg_rapport YES! You can reach me jgreeson@sp2.upenn.edu +06/04/2018,Social_workers,@johannagreeson,Opinion | The Long History of Child-Snatching https://t.co/DrogKJyith +06/04/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/CoO1RSOEO6 Thanks to @TerriLaPoint @lgbtmap @mridleythomas #fostercare #adoption +06/04/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: Are you a young person in foster care in Philly, or are you facing homelessness? #YouthMattersPhilly is for you. https://t.…" +06/04/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: ICMYI: @JuvLaw1975 launched National Extended Foster Care Review: 50-State Survey of Law and Policy https://t.co/vEKeKWFZJS +06/04/2018,Social_workers,@johannagreeson,RT @ctrupin: This 50-state review of extended foster care-one of the more powerful policies to #endyouthhomelessness-is worth a look! Kudos… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Use @YouthMattersPHL to locate services from housing to recreation to educational opportunities. Putting power in the… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Youth leaving #juvenilejustice system often need help navigating resources. #YouthMattersPhilly makes it easier: https… +06/03/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: Here's what a teen in foster care wants you to know. ""I have had those moments when I thought... 'I'm almost grown, nobody…" +06/03/2018,Social_workers,@johannagreeson,"RT @TeenVogue: ""The only thing keeping me afloat was the idea of preserving anything I saw as good for me and hoping for something better d…" +06/03/2018,Social_workers,@johannagreeson,"RT @socworkpodcast: Lots of laughter in this episode: Self care for social workers. No, it isn't all deep breathing and walks on the beach.…" +06/03/2018,Social_workers,@johannagreeson,"He Grew Up Abused In Foster Care. Now He's An Executive, And Success Is His Revenge https://t.co/2N3HGH3nEI" +06/03/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/N3B1VqPlol Thanks to @dgcars @Oh_Honestly_LC @AFTH_org #fostercare #fostercaresystem +06/03/2018,Social_workers,@johannagreeson,"RT @chronicle: Your students need you to be that teacher: the one who goes the extra step, the one who takes care of herself so she can con…" +06/02/2018,Social_workers,@johannagreeson,From foster care to Peace Corps posting: A journey of determination https://t.co/PLFFyMTBw0 +06/02/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/sIMAaXlixf Thanks to @pollyfountain @diastella1 @hlsteed #fostercare #fostering +06/02/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 1.6K Mention Reach, 26 Likes, 16 Retweets, 24.3K Retweet Reach. See yours with… https://t.co/Wde9a18Js8" +06/01/2018,Social_workers,@johannagreeson,"@BoysandGirlsAid @ChronicleSC It’s an amazing school & community full of caring, committed adults changing the live… https://t.co/nqVkfMVZ09" +06/01/2018,Social_workers,@johannagreeson,RT @ChildrensRights: Kids in #fostercare face a higher risk of being incarcerated—with devastating consequences. “As soon as kids get label… +06/01/2018,Social_workers,@johannagreeson,RT @JessicaFeierman: Our youth in foster care shouldn’t have to fight for educational opportunities. Thank you @YouthFChange and @FosterEdS… +06/01/2018,Social_workers,@johannagreeson,"RT @RachelAnspach: Youth in foster care are criminalized for normal teenage behavior, further destabilizing their lives. I reported on the…" +06/01/2018,Social_workers,@johannagreeson,@ChronicleSC @BoysandGirlsAid You should also consider a story about CB Community School here in Philly! +06/01/2018,Social_workers,@johannagreeson,RT @TamsinStirling1: I keep finding interesting examples of work to #endyouthhomelessness from N America https://t.co/7QP2XQWwVR +06/01/2018,Social_workers,@johannagreeson,RT @YouthFChange: Our member Johnathan has a strong new piece about educational hurdles for youth in foster care as part of the #fosteredor… +06/01/2018,Social_workers,@johannagreeson,RT @ProjectMMH: This tool has been needed for some time. Great work @JuvLaw1975! --> Every State’s Extended Foster Care Policies Now Availa… +06/01/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: As we exit National Foster Care Month and enter Pride Month, please check out this powerful piece in the #FosteredorForgott…" +06/01/2018,Social_workers,@johannagreeson,"Ed Gillespie Joins America’s Kids Belong, Focused on Foster Care | National Review https://t.co/Q2bsbOKuI3" +06/01/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/MXnKNDUMQl Thanks to @WDVMTV @MSTODAYnews @ricediver #fostercare #adoption +06/01/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @JuvLaw1975, @exfkaty, @saxenmeyer. Thank you! via https://t.co/fuzTp9tmoO https://t.co/4g9ZabYjH9" +06/01/2018,Social_workers,@johannagreeson,"RT @KellyMRosati: Today is the last day of national foster care month. Thanks to all the hard working social workers, court appointed speci…" +06/01/2018,Social_workers,@johannagreeson,"RT @ctrupin: As Arianna and Randy's stories illustrate, the foster care to prison pipeline runs right through and to homelessness. https://…" +06/01/2018,Social_workers,@johannagreeson,"RT @TeenVogue: ""I lost a year of education in my residential treatment facility placement — it felt like a camp where the system sends kids…" +05/31/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: BREAKING: Juvenile Law Center Launches National Extended Foster Care Review https://t.co/0WBAfWdcsH +05/31/2018,Social_workers,@johannagreeson,RT @TheFosterNation: 100 Former #FosterYouth Visit Members of Congress to Advocate for Child Welfare Reform Via @swhelpercom: https://t.co/… +05/31/2018,Social_workers,@johannagreeson,RT @LisaSwaminathan: I am so excited to share Juvenile Law Center's National Extended Foster Care Review - a new tool for advocates and pol… +05/31/2018,Social_workers,@johannagreeson,RT @ProjectMMH: As #FosterCareMonth comes to an end we hope you will keep the awareness going! Most of all we hope you see past the big num… +05/31/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: The newest piece in the #FosteredorForgotten series is from our Child Welfare Policy Director @jennypokempner and @YouthLaw… +05/31/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Presenting my research & project video @ #CASWE18 this aft, 4:30-5pm Campion College CM Auditorium. Come witness the ta…" +05/31/2018,Social_workers,@johannagreeson,10 Key Resources for Child Welfare Professionals - The Annie E. Casey Foundation https://t.co/1kIRnBzhy1 +05/31/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/AmbEHnMqwj Thanks to @LisaSwaminathan @lauraboccaleone… https://t.co/uOnTvUJMff +05/31/2018,Social_workers,@johannagreeson,"RT @nctsn: NCTSN has resources for #childwelfare professionals! Visit https://t.co/kclU69kFly +#NFCM2018 #FosterCareMonth #FosterYouthVo…" +05/30/2018,Social_workers,@johannagreeson,"RT @PennSP2: Watch @TaranaBurke #PennSP2 commencement speech tonight on C-Span. +@cspan #metoo https://t.co/b1iNe21gT8" +05/30/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: Here's what a teen in foster care wants you to know. ""I have had those moments when I thought... 'I'm almost grown, nobody…" +05/30/2018,Social_workers,@johannagreeson,"‘They Deserve It’: In Foster Homes, Veterans Are Cared For Like Family https://t.co/Up4p8NHHd9" +05/30/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/04E8GVJZSj Thanks to @ORKingsford @AcornCareFoster @thisisroxanne… https://t.co/EJ8MJk3G7L +05/29/2018,Social_workers,@johannagreeson,RT @RepKarenBass: The purpose of our child welfare system is to protect children from abuse or neglect. Never in history has this system be… +05/29/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: What is the foster care-to-prison pipeline? https://t.co/yB085pxJAF #FosteredorForgotten #NationalFosterCareMonth #FosterCa… +05/29/2018,Social_workers,@johannagreeson,Young people enter foster care when the courts determine they need to be temporarily or permanently removed from th… https://t.co/JozYVS6nud +05/29/2018,Social_workers,@johannagreeson,"This #FosterCareMonth, I stand with #FosterMore. Watch their new PSA with Jodie Blum and learn more about how to fi… https://t.co/zzuJsd5yFA" +05/29/2018,Social_workers,@johannagreeson,VA turns to foster care for veterans instead of nursing homes https://t.co/pq1C4m3hnJ +05/29/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/KdbMJ3JuX1 Thanks to @adoptolderkids @ProjectMMH @BeMyAdvocate #fostercare #fostercaremonth +05/28/2018,Social_workers,@johannagreeson,VA turns to foster care for veterans instead of putting them in nursing homes https://t.co/7NmDUcS6ZP +05/28/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/1xb115f7Go Thanks to @curraghman @knoxvilletimes @DeploReport #fostercare #fostercaremonth +05/27/2018,Social_workers,@johannagreeson,RT @nctsn: It’s #NFCM2018. Learn about #crossoveryouth at https://t.co/ulDna3hw3a #FosterCareMonth #FosterYouthVoices #FosterCare https:/… +05/27/2018,Social_workers,@johannagreeson,The Foster Care to Prison Pipeline Impacts America's Most Vulnerable Youth https://t.co/sjvUrjLnTD +05/27/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/Ym6NZwMsfc Thanks to @sokicamz @julesjup @RealMeghSingh #fostercare #fostercaremonth +05/27/2018,Social_workers,@johannagreeson,"RT @nctsn: NCTSN has resources for #childwelfare workers. Visit https://t.co/laXG0tSKjT +#NFCM2018 #FosterCareMonth #FosterYouthVoices…" +05/27/2018,Social_workers,@johannagreeson,"RT @adoptolderkids: Because no one is unadoptable. + +We envision a day when no child is asked to face adulthood alone, when every child agin…" +05/26/2018,Social_workers,@johannagreeson,"Before it's over, May is Foster Care Month: Native foster families are needed https://t.co/BpTkQ4eUyg" +05/26/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/dWRPZRf1tA Thanks to @carrietobey @bearpawshoes @AprilYoungB #fostercare #fostercaremonth +05/26/2018,Social_workers,@johannagreeson,RT @TeenVogue: “I feel like since I’m just a black kid in foster care [the justice system] doesn’t want to see us given opportunities or he… +05/26/2018,Social_workers,@johannagreeson,So impressed that @TeenVogue is tackling this important issue! You work restores my #faith in #humanity!… https://t.co/lEEAWOCeIA +05/26/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 9 Likes, 6 Retweets, 1.39K Retweet Reach, 2 New Followers, 1 Reply. See yours wit… https://t.co/nbSMhfmK6I" +05/25/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Many youth in foster care or formerly in foster care become advocates like our @YouthFChange members. Read about one person… +05/25/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: Kids seeking safety, love and stability don't discriminate, nor should foster care agencies. Love is love. We stand with you @…" +05/25/2018,Social_workers,@johannagreeson,RT @jennypokempner: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https://… +05/25/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +05/25/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: The @YouthMattersPHL app just turned one year old! https://t.co/D6V44dKuOm +05/25/2018,Social_workers,@johannagreeson,What Must We Do about Foster Care? | National Review https://t.co/kwnOS3NCUX +05/25/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/0FDVk9LcoJ Thanks to @RonniePhilly @cebc4cw @LauraMoodyFox13 #fostercare #nfcm2018 +05/25/2018,Social_workers,@johannagreeson,Our biggest fans this week: @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/tLVlj3MQjL +05/25/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Please check out @susanvmangold of @JuvLaw1975's op ed with @reggieshuford of @aclupa on the urgency of non discrimination… +05/24/2018,Social_workers,@johannagreeson,"RT @ProjectMMH: #FosterCareFact Day 24 - 10,500 youth in foster care have a case plan goal of Long Term Foster Care. 17,400 youth in foster…" +05/24/2018,Social_workers,@johannagreeson,"Pro-Life Should Include Foster Care, Too | National Review https://t.co/mOGS8SYiPh" +05/24/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/VrJ5knQQIO Thanks to @tfcsunderland @Casey_Foster_1 @NYSOCFS #fostercare #fostercaremonth +05/23/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: ""Every kid is one caring adult away from being a success story."" -Josh Shipp #fostercare #NFCM2018 https://t.co/x3R9wo85RS" +05/23/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: #FosterCareMonth #FosteredorForgotten https://t.co/KJjAf0ZQ3r https://t.co/jvzBBf8NYr +05/23/2018,Social_workers,@johannagreeson,"RT @YouthMattersPHL: Finding services you need as a youth in foster care or facing homelessness is challenging. In #Philly, @YouthMattersPH…" +05/23/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +05/23/2018,Social_workers,@johannagreeson,Fostering success - AACC 21st Century Virtual Center https://t.co/1NQWZcNxWf +05/23/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/5qNMxH9UKC Thanks to @danielrhamilton @RepPaulMitchell @JamieRossi6… https://t.co/msG82SACua +05/22/2018,Social_workers,@johannagreeson,#fosterstrong #NFCM2018 https://t.co/nnqkqxSSKi +05/22/2018,Social_workers,@johannagreeson,"'I was told to find a homeless shelter': Foster kids cut loose at 18 ending up jobless, homeless https://t.co/jadTPwCYoO" +05/22/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/newutTlsCF Thanks to @gary_pickles @tayknopf @legalscoop #fostercare #fostercaremonth +05/21/2018,Social_workers,@johannagreeson,Leave No One Orphaned | National Review https://t.co/rwKcCHJJaT +05/21/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/TWTpUe73MZ Thanks to @hackneycitizen @dominickambro @Cortigirl1 #fostercare #fcf18 +05/20/2018,Social_workers,@johannagreeson,RT @dream___makers: #BeTheChange https://t.co/KguIdgx7hF +06/29/2018,Social_workers,@JimmySW,@reneehobbs Just finished listening to this lecture. WOW. Such great information. I really appreciate this perspect… https://t.co/TW3cq9zj17 +06/27/2018,Social_workers,@JimmySW,RT @husITaOrg: husITa is delighted to announce the winners of the Best Human Services App Idea Award 2018. https://t.co/jtVuP2QP6Z +06/27/2018,Social_workers,@JimmySW,That @husITaOrg banner looks great 👍 👀 👍 #swtech https://t.co/LLjbNrO31l +06/27/2018,Social_workers,@JimmySW,RT @voxdotcom: Alexandria Ocasio-Cortez wasn't the only woman to score a major victory Tuesday. https://t.co/56dDDJKaRz +06/27/2018,Social_workers,@JimmySW,"RT @ddiamond: Merrick Garland was nominated on March 16, 2016 — or 237 days before that year’s election. McConnell said that was too close…" +06/27/2018,Social_workers,@JimmySW,"RT @RBReich: To those GOP senators who have spoken out against Trump's attacks on our democracy, now is your chance to stand firm on those…" +06/27/2018,Social_workers,@JimmySW,RT @acosaorg: Study: Needs Assessment Survey for a Resource to Support Evidence-Based Practice. The study is approved by the University of… +06/27/2018,Social_workers,@JimmySW,RT @MelindaHohman: My sister-in-law is collecting for supplies and clothes for 50 children separated from asylum-seeking parents who are ho… +06/26/2018,Social_workers,@JimmySW,"RT @pewinternet: Many users see social media as an especially negative venue for political discussions, but others see it as simply “more o…" +06/25/2018,Social_workers,@JimmySW,RT @reneehobbs: ICYMI: My lecture on The Competing Narratives of Digital and Media Literacy on #SoundCloud #medialiteracy #mediaecology2018… +06/24/2018,Social_workers,@JimmySW,@GoogleGuacamole @monicarysavy It’s a pretty versatile platform and their customer service has always been amazing IMHO. +06/24/2018,Social_workers,@JimmySW,@GoogleGuacamole @monicarysavy I use it all the time in my research (mostly surveys) but I have seen someone build… https://t.co/AqbhTGPBrA +06/23/2018,Social_workers,@JimmySW,This could have been in my recent blog post for @husITaOrg on #digitalliteracies https://t.co/CaVSSyijRp +06/23/2018,Social_workers,@JimmySW,RT @pewinternet: Americans have grown somewhat more ambivalent about the impact of digital connectivity on society as a whole https://t.co/… +06/23/2018,Social_workers,@JimmySW,A recent blog post I wrote for @husITaOrg about social media & digital literacies. #SWTech #digitalliteracies https://t.co/x5SifcmlYa +06/23/2018,Social_workers,@JimmySW,"RT @husITaOrg: husITa Board Member @AMLTaylor66 has been nominated on a slate for Female GovTech Leaders 2018, please RT and vote https://t…" +06/22/2018,Social_workers,@JimmySW,That’s because many Americans are starting to see that 1 or 5 or whatever $$$ amount there income went up is not ke… https://t.co/ntk7tikns3 +06/22/2018,Social_workers,@JimmySW,RT @njsmyth: I stand with my #socialwork colleagues at NADD against #ChildrenInCages And now we must address the harm this policy has cause… +06/21/2018,Social_workers,@JimmySW,RT @acosaorg: Join us at 9:00 PM EST tonight for #MacroSW Chat on current US #immigration #policy and what social workers should be doing.… +06/21/2018,Social_workers,@JimmySW,"@btblankenship and one more that I just did for @ARNOVA +https://t.co/KwNBMrur7k" +06/21/2018,Social_workers,@JimmySW,"@btblankenship Also, you can check out some of my publications here https://t.co/q2mA0SOawl +But specifically you mi… https://t.co/YMCqhkthl9" +06/21/2018,Social_workers,@JimmySW,"Hi @btblankenship here are some links to recent presentations regarding social media. +https://t.co/KwNBMrur7k +https://t.co/kpHax5Dht1" +06/19/2018,Social_workers,@JimmySW,Happy to help. I’ll try to tweet out some recent work/presentations I’ve done. You can always check out my blog… https://t.co/wlhtzmdNt1 +06/19/2018,Social_workers,@JimmySW,RT @Dr_Pracademic: New Article out on supporting new instructors in social work. With my mentor @spencerm1014 https://t.co/J0Mq0c2gAk +06/18/2018,Social_workers,@JimmySW,If Republicans control both houses of Congress & the Whitehouse AND they can craft tax reform radically altering th… https://t.co/W8aX8GKxLV +06/17/2018,Social_workers,@JimmySW,"My #FathersDay cards included stories of unicorns, dinosaurs, & hot wheels. Couldn’t have asked for anything better. I love being a dad 😃" +06/17/2018,Social_workers,@JimmySW,RT @SDSUSocialWork: A running list of how to help fight family separation at the border: https://t.co/zvqNz772A5 via @slate +06/17/2018,Social_workers,@JimmySW,"RT @lakeya_cherry: When your designer/photographer has a vision that's ""disruptive."" @TheNSWM #NSWM29 #leadership #Management #disruptivele…" +06/16/2018,Social_workers,@JimmySW,RT @brooklyn11210: @laurelhitchcock @CSocialWorkEd @karenzgoda @socworkpodcast @SJSworks @melaniesage @StuckonSW @Brendan_Beal @DrNJonesTSU… +06/16/2018,Social_workers,@JimmySW,RT @SDSUSocialWork: Thanks to @lakeya_cherry and our San Diego chapter of @TheNSWM for their hard work on this wonderful conference! Happy… +06/15/2018,Social_workers,@JimmySW,RT @njsmyth: Guiding principles of @2Uinc @chippaucek #NSWM29 #EdTech https://t.co/Gyd4HHu3y7 +06/15/2018,Social_workers,@JimmySW,"@OfficialMacroSW @spcummings @brooklyn11210 #FF, thanks for being my top influencers in the last week :) (Want this… https://t.co/8oq61zKg7c" +06/14/2018,Social_workers,@JimmySW,Thanks for coming to my presentation. So great to see all of you 😄 #NSWM29 https://t.co/dgVjDWanbA +06/14/2018,Social_workers,@JimmySW,RT @njsmyth: How Did We Get Here? Web 1.0 to Web 3.0 #NSWM29 https://t.co/BtLIOmby3L +06/14/2018,Social_workers,@JimmySW,RT @Sisgigroup: #Leaders have to have a purpose in whatever they do. We have to understand the change we want to see happen. What is my rol… +06/14/2018,Social_workers,@JimmySW,RT @Sisgigroup: It’s all about how much change you want to see. Being a disruptive leader is about pushing with intentional purpose for the… +06/14/2018,Social_workers,@JimmySW,"RT @_Patty_Ramirez_: ""Disruptive leadership maximizing inclusion, invention, and innovation in human services with meaningful purpose is wh…" +06/14/2018,Social_workers,@JimmySW,I’m at #NSWM29 and I hereby declare they have the best ribbons of any conference I’ve ever been to 😂😂😂 https://t.co/YmKYjH0o0n +06/13/2018,Social_workers,@JimmySW,I'm ready!!! Looking forward to this conference and meeting new colleagues. Should be a great time on the beautiful… https://t.co/7nzFqX5uVh +06/13/2018,Social_workers,@JimmySW,RT @kshaferbyu: Jeff Bezos said that he is spending money on space exploration because he doesn't know how else to spend it. Maybe better w… +06/13/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY San Diego is looking for a Consultant Psychiatrist for nine (9) hours a week at Reflections Day Treatment. This po… +06/13/2018,Social_workers,@JimmySW,"RT @CalSWEC: Make an difference in the lives of Californians! Apply to CalSWEC’s Title IV-E, https://t.co/IwyUQFYJaL and MHSA Stipend Progr…" +06/12/2018,Social_workers,@JimmySW,"RT @spcummings: Excellent article by @socworkpodcast. ""We need to address well-being starting in kindergarten, not wait until a high school…" +06/12/2018,Social_workers,@JimmySW,"RT @iamrodneysmith: Hello to Alabama . I will be mowing in Montgomery Tuesday morning . If you know of anyone who is elderly, disabled, a s…" +06/11/2018,Social_workers,@JimmySW,@laurelhitchcock @nancy_kusmaul #HappyMonday Check out the top influencers in my community this week! (via Twitter… https://t.co/Zs7MsaPk4l +06/08/2018,Social_workers,@JimmySW,#FollowFriday @matthod @EJohnsonLCSW - top engaged members this week :) - Get your [Free] scheduled tweet here: https://t.co/xi7BVuOrua +06/08/2018,Social_workers,@JimmySW,RT @reneehobbs: Summer time is a good time for reflection: How many of these instructional practices of media literacy education do you use… +06/07/2018,Social_workers,@JimmySW,"RT @CSocialWorkEd: The House will soon be voting on #PROSPERAct (H.R. 4508), which will negatively impact #highereducation & #socialwork st…" +06/07/2018,Social_workers,@JimmySW,RT @lakeya_cherry: Got Swag? A sneak preview of our #NSWM29 swag this year! #socialworkerslead #MacroSW https://t.co/7yDIXkMAsY +06/07/2018,Social_workers,@JimmySW,"RT @DrPraxisAlly: To all social justice, social work, and community organizers out there... What are your favorite & current macro practice…" +06/06/2018,Social_workers,@JimmySW,Making #DeleteFacebook easier every single day!!! https://t.co/uQIKf44nKB +06/06/2018,Social_workers,@JimmySW,RT @lakeya_cherry: It's Official! @TheNSWM 30th Anniversary Conference is going to be in #Chicago! I'm super excited to partner w/ Dean #Go… +06/04/2018,Social_workers,@JimmySW,Kudos to @Apple for taking these steps. Anyone know if newspapers did things to cut their risk factors for poor hea… https://t.co/uRuQWx016G +06/04/2018,Social_workers,@JimmySW,@matthod I think this one would suit you very well https://t.co/39p2wrTE1U 😂😂😂😂😂😂 +06/04/2018,Social_workers,@JimmySW,@courtneyann2018 @nick_molina - Today's featured top influencers #HappyMonday (🚀 via https://t.co/J5I50dsGnh) +06/04/2018,Social_workers,@JimmySW,@alessandrasw19 @mlo002 @SD_SocialWorker - #HappyMonday Check out the newest engaged members in my community! (Want… https://t.co/t6Om7VYHYi +06/04/2018,Social_workers,@JimmySW,@CSocialWorkEd @scottcowley Check out the top engaged members in my community this week! - 🙏Grow your #Twitter foll… https://t.co/VQbiTT9cqq +06/03/2018,Social_workers,@JimmySW,@UBSSW @MarshAlesia @Hayley_msw Check out the top engaged members in my community this week! - Increase engagement… https://t.co/616SY6caIC +06/01/2018,Social_workers,@JimmySW,"@sm4sw @DrNJonesTSU @mmt98 #FF, thanks for being my top engaged members in the last week :) - 🚀Increase your real f… https://t.co/FnMKudywnS" +06/01/2018,Social_workers,@JimmySW,@UBSSW @OfficialMacroSW I sent you an email 😉 +06/01/2018,Social_workers,@JimmySW,I love Forest 😂😂😂😂😂 #macrosw #SoJustProfiling https://t.co/UMEmw5hV3t +06/01/2018,Social_workers,@JimmySW,Forgot to say hello to everyone on #macrosw chat tonight 😂 https://t.co/QGgH3xWbpn +06/01/2018,Social_workers,@JimmySW,@karenzgoda @laurelhitchcock Never gonna say bye. Just see you later 😉😉😉 #MacroSW +05/31/2018,Social_workers,@JimmySW,Latest #socialmedia stats among U.S. is fairly interesting. https://t.co/gddXDqaeHt @pewinternet #SWTech #byeFacebook 😂😂 +05/30/2018,Social_workers,@JimmySW,"RT @voxdotcom: Medicaid expansion for Virginia is an all-but-done deal at this point. + +400,000 people will gain health insurance. + +Electio…" +05/30/2018,Social_workers,@JimmySW,RT @CSocialWorkEd: The New Social Workers report from the National #SocialWork Workforce Study summarizes who is entering the social work p… +05/30/2018,Social_workers,@JimmySW,RT @mmfa: Sean Hannity ran with Trump's conspiracy theories -- the exact same conspiracy theories that Fox News anchor Shep Smith debunked… +05/24/2018,Social_workers,@JimmySW,RT @husITaOrg: Latest blog post by Gareth Morgan (Vice-Chair of husITa) on Social welfare benefits and technology https://t.co/ke5HWRECt0 +05/22/2018,Social_workers,@JimmySW,Thanks for the retweets this week @socworkpodcast @CADDSWPrograms much appreciated! - 🚀BOOST your followers! https://t.co/BUSIg629VG +05/21/2018,Social_workers,@JimmySW,"RT @NPR: Breaking: The Supreme Court in a 5-4 vote has delivered a major blow to workers, ruling for the first time that workers may not ba…" +05/21/2018,Social_workers,@JimmySW,"RT @pewinternet: % of U.S. adults who use … +- YouTube: 73% +- Facebook: 68 +- Instagram: 35 +- Pinterest: 29 +- Snapchat: 27 +- LinkedIn: 25 +-…" +05/19/2018,Social_workers,@JimmySW,Another year done with #csusmsw and it’s been awesome. Congrats again to all the graduates. #CSUSM2018 +05/18/2018,Social_workers,@JimmySW,@melaniesage @afmerant Check out the top engaged community members in my community this week! - 🙏Grow your #Twitter… https://t.co/uR58eaWJpp +05/18/2018,Social_workers,@JimmySW,RT @kshaferbyu: There will be more calls for guns in schools today. Such laws create more carnage than stop it. Just remember this handy (a… +05/16/2018,Social_workers,@JimmySW,RT @OfficialMacroSW: Want to build out new website? Check out our RFP https://t.co/PmvG5qVuaK #NPTech #MacroSW +05/15/2018,Social_workers,@JimmySW,Getting ready for the #CSUSMSW Graduation Celebration tonight. I sure am excited to see these students walk across… https://t.co/Ki7inNyp2S +05/15/2018,Social_workers,@JimmySW,@mecahwelch @bud34usmc Check out the top influencers in my community this week! - 🚀 Grow your twitter followers with https://t.co/yagMrMcNT6 +05/12/2018,Social_workers,@JimmySW,RT @CSUSM: Our Class of 2018 inspires us! One week until the big day! #CSUSM2018 https://t.co/1J6LsJOu0O +05/10/2018,Social_workers,@JimmySW,@causeisaidSOph @courtneyann2018 @nick_molina Check out the top influencers in my community this week! - 🚀Engage yo… https://t.co/jwpEw1hBqb +05/10/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY is hiring a Bilingual Case Manager to join our First 5 First Steps program! Apply to Requisition ID#1119 at https:… +05/09/2018,Social_workers,@JimmySW,#csusmsw https://t.co/6K0EvAfhrf +05/09/2018,Social_workers,@JimmySW,@alessandrasw19 @nancy_kusmaul @mlo002 Check out the top influencers in my community this week! - 🚀 Grow your twitt… https://t.co/IvdqIE1y0h +05/08/2018,Social_workers,@JimmySW,"Charles Dickens once wrote “it was the best of times, it was the worst of times.” + +Little did people know he was t… https://t.co/qGH4hoZOK6" +05/08/2018,Social_workers,@JimmySW,"RT @JHUCCSS: ICYMI: DYK which industry employed the 3rd most workers in the U.S. in 2015? It's not construction, real estate, or finance. I…" +05/08/2018,Social_workers,@JimmySW,Two for one special 😂😂😂 https://t.co/6iGHI28yiN +05/08/2018,Social_workers,@JimmySW,I’m thinking of starting my own subscription service. High Five Friday’s. For only $5 a month you get all the virtu… https://t.co/aG7OF3SU3f +05/04/2018,Social_workers,@JimmySW,RT @FISOnline: Very pleased @SAGEsocialwork & @AllianceNews can share the enduring insights of Richmond & other pioneers with the social wo… +05/04/2018,Social_workers,@JimmySW,#csusmsw https://t.co/6w1nWC4KAw +05/03/2018,Social_workers,@JimmySW,RT @MelindaHohman: Why We Have to Social Work This https://t.co/yVCzIltGng via @npquarterly +05/02/2018,Social_workers,@JimmySW,@scottcowley @CSocialWorkEd Check out the top engaged members in my community this week! - 🚀shared with love by https://t.co/mmTgR22jhc +05/02/2018,Social_workers,@JimmySW,"RT @pewinternet: Even as they view the internet’s personal impact positively, Americans have grown somewhat more ambivalent about its impac…" +05/01/2018,Social_workers,@JimmySW,Hey #csusmsw students. Wanna chime in to help @melaniesage 👇👇👇 https://t.co/6ekVFD194l +05/01/2018,Social_workers,@JimmySW,Neither. Being in shape is overrated 🙄 https://t.co/rk2aWlt1Rv +05/01/2018,Social_workers,@JimmySW,#csusmsw https://t.co/ycqsyOGNYc +04/30/2018,Social_workers,@JimmySW,#interesting https://t.co/mRzaRJ1sFH +04/29/2018,Social_workers,@JimmySW,RT @pewinternet: Experts say technology alone can’t win the battle against misinformation online in the coming decade https://t.co/y7naz4xq… +04/28/2018,Social_workers,@JimmySW,RT @GottmanInst: There's a reason why @BreneBrown inspires millions of people around the world with her words of wisdom. https://t.co/jflBB… +04/27/2018,Social_workers,@JimmySW,"RT @GottmanInst: Dozens of men in Philadelphia, Pennsylvania, are meeting on a regular basis to ""hold each other accountable"" and collectiv…" +04/27/2018,Social_workers,@JimmySW,#FollowFriday @DrNJonesTSU @Hayley_msw - top engaged members this week :) - GROW your twitter audience https://t.co/ZT62HKpP4D +04/25/2018,Social_workers,@JimmySW,Thanks for the retweets this week @sm4sw @zsu98 much appreciated! - 🚀Engage your followers [free] https://t.co/6IbRy0h4je +04/24/2018,Social_workers,@JimmySW,Pretty cool that @OLLUWordenSSS sends these out to reviewers for the @SWDEConference in appreciation of service. Th… https://t.co/xsomMfy384 +04/22/2018,Social_workers,@JimmySW,#csusmsw students might be interested in the @CSocialWorkEd Minority Fellowship Program. Check out the link for mor… https://t.co/TvnfLhRTJt +04/22/2018,Social_workers,@JimmySW,"RT @pewinternet: Demographics of U.S. adults who use Twitter + +Men: 23% +Women: 24 + +White: 24% +Black: 26 +Hispanic: 20 + +Ages 18-29: 40% +30-49…" +04/21/2018,Social_workers,@JimmySW,"RT @husITaOrg: Just a reminder about our $1,000 competition for the #bestidea4ahumanserviceapp. Open until Monday 11th May 2018. Please RT…" +04/20/2018,Social_workers,@JimmySW,#FollowFriday @TheNSWM @AllysonVarley @mecahwelch - top engaged members this week :) - 🚀Engage your followers [free] https://t.co/6IbRy0h4je +04/19/2018,Social_workers,@JimmySW,"#AlexaBlueprints means I can create skills so my kids will quit asking Alexa to make fart noises 🙄🙄🙄 +https://t.co/uJcjrD0Mxi" +04/19/2018,Social_workers,@JimmySW,"RT @AndyThorburnCA: Trump’s Mar-A-Lago trips (2017) $6.6 mil +Ryan Zinke’s office doors: $139k +Scott Pruitt’s phone booth: $43k +Ben Carson’…" +04/19/2018,Social_workers,@JimmySW,"RT @ajplus: The Senate unanimously voted to allow Senator Tammy Duckworth’s baby on the voting floor 👶🏻 + +The new rules, which Duckworth had…" +04/19/2018,Social_workers,@JimmySW,RT @kashhill: When a PR person reminds you that you wrote about Facebook’s reverse phone look-up being used nefariously way back in 2012 ba… +04/19/2018,Social_workers,@JimmySW,RT @BuzzFeed: You won't believe what Obama says in this video 😉 https://t.co/n2KloCdF2G +04/19/2018,Social_workers,@JimmySW,#CSUSMsw https://t.co/x55zDX3LGV +04/18/2018,Social_workers,@JimmySW,RT @reneehobbs: This great @TheCrashCourse on #medialiteracy features the amazing @jsmooth995 exploring the topic of media ownership. Fine… +04/17/2018,Social_workers,@JimmySW,"RT @MHager_ASU: Masters student got top course nod on policy analysis, so we had her re-frame and post up blog on tax implications for 2018…" +04/17/2018,Social_workers,@JimmySW,Thanks for the retweets this week @RoseBSingh @SDSUSocialWork much appreciated! - 🚀 Grow your followers with https://t.co/oJy0ucHADM +04/15/2018,Social_workers,@JimmySW,"RT @AllysonVarley: Are you a #primarycare provider? + +Please consider filling out this survey (for my dissertation project): https://t.co/7…" +04/15/2018,Social_workers,@JimmySW,"Interesting use of #Blockchain to help in Human Service providers working with the homeless in Austin, TX.… https://t.co/DRXaDacRWM" +04/15/2018,Social_workers,@JimmySW,"RT @socworkpodcast: You could win $500, but more importantly you could help Dr. Jay Miller (my guest in episode 117) with his research on #…" +04/15/2018,Social_workers,@JimmySW,RT @MelindaHohman: Diffusion theory and multi-disciplinary working in children’s services - https://t.co/P2enmwZ9FU #ScholarAlerts +04/13/2018,Social_workers,@JimmySW,#FollowFriday @MarshAlesia @DoinTheWorkPod - top engaged members this week :) - Tweet ❤️ via https://t.co/DcXwGc09Lz +04/13/2018,Social_workers,@JimmySW,"RT @husITaOrg: Do you have a compelling idea for a new human services app? Why not enter it in our competition? You could win $1,000. https…" +04/12/2018,Social_workers,@JimmySW,"RT @kanter: The Age of Automation for Nonprofits - Bots, AI, and the Struggle for Humanity - @Afine and I co-authored a post for @SSIRevie…" +04/12/2018,Social_workers,@JimmySW,RT @JoshuaMZeitz: Paul Ryan now enjoys the peace of mind that when he turns 50—in less than two years—he will enjoy a defined-benefits pens… +04/11/2018,Social_workers,@JimmySW,"RT @JoeNBC: Robert Mueller—Republican +Attorney General—Republican +FBI Director—Republican +DAG Rosenstein—Republican +(4) FISA Judges—Repu…" +04/11/2018,Social_workers,@JimmySW,So with Speaker Ryan’s retirement in January... That gives him less than a year to mount a presidential bid & oust Trump. Does it happen??? +04/11/2018,Social_workers,@JimmySW,RT @danpfeiffer: It would be cool to see Zuckerberg questioned by people who know how Facebook works +04/11/2018,Social_workers,@JimmySW,Soooo...Who's watching the #SocialNetwork tonight after today's #Zuckerberg hearing? LOL 😀😀😀 +04/10/2018,Social_workers,@JimmySW,"RT @TheWalkerWay_1: The caption speaks for itself! Social media can be a cancer when not used properly! #Csusmsw +https://t.co/NkFgOfzA30" +04/10/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY is hiring a Bilingual Clinician to join our CAT program! Apply to Requisition ID#1109 at https://t.co/4VZEe9yUxb !… +04/10/2018,Social_workers,@JimmySW,RT @PreetBharara: Whataboutism about to reach a 52-week high +04/10/2018,Social_workers,@JimmySW,"RT @pewinternet: How does our study define Twitter bots? Broadly speaking, bots are automated accounts that can post content or interact wi…" +04/09/2018,Social_workers,@JimmySW,RT @husITaOrg: New on the husITa blog by @EmilyK100 https://t.co/31kDaJPAId +04/08/2018,Social_workers,@JimmySW,RT @mgspeaks: This Simple Note-Taking Method Will Help You Read More (and remember what you’ve read) https://t.co/6EmdoutqRN +04/08/2018,Social_workers,@JimmySW,"Is it still an “exclusive” offer if you’ve received an email about almost every day + +For the last 6 months?!? +🤔🤔🤔🤔🤔🤔🤔🤔" +04/08/2018,Social_workers,@JimmySW,"RT @Spacekatgal: I believe we should eliminate President’s Day as a holiday and make Election Day a national holiday in its place. + +I can…" +04/08/2018,Social_workers,@JimmySW,"RT @voxdotcom: There's been lots of talk of the danger of social media. But Sinclair is a good example of how political media, including ou…" +04/08/2018,Social_workers,@JimmySW,RT @RWJF: A study out of Massachusetts suggests making regular deliveries of meals to people who are food insecure drives down their use of… +04/07/2018,Social_workers,@JimmySW,Looking through my data settings on Twitter and it thinks I speak Tagalog. Um sorry but I wish 😂😂😂 +04/07/2018,Social_workers,@JimmySW,Should be an excellent conference. And tacos 🌮 🌮 😂😂😂😂 @TheNSWM @SDSUSocialWork #tacos https://t.co/ivfFlbVNHU +04/06/2018,Social_workers,@JimmySW,#FollowFriday @UBSSW @spcummings - top engaged members this week :) - 🚀Get More #Twitter Followers https://t.co/8KGZfzUiJH +04/04/2018,Social_workers,@JimmySW,Awesome lunch today at Facebook. They have sooo much free stuff. And an arcade. Is it too late for me to switch my… https://t.co/75nvRrn640 +04/04/2018,Social_workers,@JimmySW,"RT @repjohnlewis: 50 years ago today, I learned the painful news that my friend, my mentor, Dr. Martin Luther King, Jr. had been assassinat…" +04/02/2018,Social_workers,@JimmySW,I got my pizza 🍕 did you get yours 😂😂😂 https://t.co/kx5kxLOUwQ +04/01/2018,Social_workers,@JimmySW,#FollowFriday @SWpodcast @laurelhitchcock - top engaged members this week :) #TopMembers #Thanks - 🚀Grow with https://t.co/QLpnsPNqie +04/01/2018,Social_workers,@JimmySW,Hey @Wendys what will happen if I go through your drive through and ask them to surprise me? +03/31/2018,Social_workers,@JimmySW,RT @socworkpodcast: @SD_SocialWorker The solution to pollution is dilution. Fill Twitter with accurate information. #SWMONTH +03/31/2018,Social_workers,@JimmySW,"Additionally, I laugh whenever I tweet with #socialmedia or #Influencer or #SEO and I right away pick 5 to 10 new f… https://t.co/6BqdaCYWvm" +03/31/2018,Social_workers,@JimmySW,I wish #socialmedia bloggers and influencers would put dates on their blogs. Makes it much easier to provide a citation 🤔 +03/31/2018,Social_workers,@JimmySW,RT @jacobsonjenna: Where's Waldo? Answer: in Google Maps... and there goes half an hour of my Saturday. https://t.co/RSpGPbxRDu +03/31/2018,Social_workers,@JimmySW,RT @JaimeMBooth: Check out my new article! We used twitter feeds to understand neighborhood dynamics...this is just the tip of the ice berg… +03/31/2018,Social_workers,@JimmySW,"@sm4sw #FF, thanks for being my top engaged members in the last week :) - Powered by https://t.co/lph8r5ru4I" +03/31/2018,Social_workers,@JimmySW,#FollowFriday @Info4Practice @ProfessorTD @Dr_Pracademic - top engaged members this week :) - Get #Website Traffic… https://t.co/EHnKELfoBl +03/30/2018,Social_workers,@JimmySW,My Latest publication with @mcleodda & @Dr_Pracademic just came out in The Journal of Social Work Values & Ethics.… https://t.co/pBOc4wlBvD +03/30/2018,Social_workers,@JimmySW,RT @sh_way: Hewlett Pledges $10M to Study Social Media and “Fake News” https://t.co/H7ob6jCkxT via @npquarterly +03/29/2018,Social_workers,@JimmySW,"RT @samlymatters: MAGA twitter: we don’t need gun control we just need to stop bullying people + +Me: maybe we should also do gun control + +MA…" +03/29/2018,Social_workers,@JimmySW,Anyone in my #swtech network have a list of great podcasts for use in teaching across the curriculum? Things like… https://t.co/NlYBPHdA3F +03/28/2018,Social_workers,@JimmySW,RT @mgilster77: How two movements are received so differently: https://t.co/gaDSE5kbPy +03/27/2018,Social_workers,@JimmySW,"RT @csusm_oie: Quote of the month! +""In a time of deceit, telling the truth is a revolutionary act."" -George Orwell" +03/27/2018,Social_workers,@JimmySW,"RT @pewinternet: The offline population in the U.S. has declined substantially since 2000. Today, just 11% of U.S. adults do not use the in…" +03/27/2018,Social_workers,@JimmySW,@mecahwelch @meagan_chisholm @TaraNmsw - #HappyMonday check out my top engaged members :) - 🚀Increase your Twitter… https://t.co/Cs8mzZI94S +03/27/2018,Social_workers,@JimmySW,"RT @pewinternet: % of U.S. adults who use … +- YouTube: 73% +- Facebook: 68 +- Instagram: 35 +- Pinterest: 29 +- Snapchat: 27 +- LinkedIn: 25 +-…" +03/24/2018,Social_workers,@JimmySW,"RT @reneehobbs: Teaching about new forms of propaganda, like #sponsoredcontent, is essential! #Com416 Check out this news story on @CamAnal…" +03/24/2018,Social_workers,@JimmySW,RT @ConversationUS: Tomorrow's #MarchForOurLives is calling for new #GunControl measures. Here's what experts have to say on various propo… +03/24/2018,Social_workers,@JimmySW,CHURCH! So much in Academia needs to change. I think much of this could come down to financial incentives or other… https://t.co/Sy2Bb8wGPG +03/21/2018,Social_workers,@JimmySW,RT @pewinternet: NEW REPORT: The Science People See on Social Media – Science-related Facebook pages draw millions of followers but 'news y… +03/21/2018,Social_workers,@JimmySW,@DorlisaMinnick @mmt98 - Thanks for being part of my community :) #TopMembers #Thanks - 🚀Grow your followers with https://t.co/UV0wjecH40 +03/21/2018,Social_workers,@JimmySW,"@Hayley_msw I need to email you back. But you know>>> Dishes, laundry, and oh yeah the book chapter I need to finis… https://t.co/lZdvosZEFt" +03/20/2018,Social_workers,@JimmySW,"@SocWrkDoc @MsAlandis #HappyMonday, thanks for being my top engaged members in the last week :) - 📈Get More Twitter… https://t.co/ETHMMzkEtY" +03/20/2018,Social_workers,@JimmySW,"You can always tell when I don’t want to write. Dishes are done, laundry is folded, and I even had time for a show.… https://t.co/mK5GPEus1F" +03/19/2018,Social_workers,@JimmySW,"RT @pewinternet: Demographics of U.S. adults who use Twitter + +Men: 23% +Women: 24 + +White: 24% +Black: 26 +Hispanic: 20 + +Ages 18-29: 40% +30-49…" +03/18/2018,Social_workers,@JimmySW,RT @shiffle6: Claims of social media ‘addiction’ are full of bad science — its real impact might be more positive than you think - via Lase… +03/18/2018,Social_workers,@JimmySW,#FollowFriday thanks @StuckonSW @CSocialWorkEd - top Influencers members this week :) - 📈Get More Twitter Followers… https://t.co/Qe0HL1JOi9 +03/17/2018,Social_workers,@JimmySW,@AHS_Warranty @njsmyth - Thanks for being part of my community :) - 🚀Grow your followers with https://t.co/O9Flmh9ejW #Growth #Twitter +03/17/2018,Social_workers,@JimmySW,@becky_anthony @mltetloff @SWShaylaS thanks for being my top influencers in the last week :) #ThankYou - 🚀via https://t.co/AChhbmE8us +03/16/2018,Social_workers,@JimmySW,@LeneLeft @NRuggiano_PhD @Manarkustiro - thanks to my top influencers this week :) - 🚀 Grow your followers with https://t.co/NVakDPtCTO +03/16/2018,Social_workers,@JimmySW,Thanks for the retweets this week @kadixonsw @legalLMSW much appreciated! via https://t.co/eB1zhbzpS9 +03/16/2018,Social_workers,@JimmySW,@Carolyn65641191 @DiaxKeith @ERL_SW - check out my top recently engaged followers :) - 🚀 Grow your followers with https://t.co/6xFfWpbE4Y +03/15/2018,Social_workers,@JimmySW,@rll004 @DeniseMSW @aimee_MSW - Thanks for being part of my community :) (🚀 via https://t.co/XbY0J6HrCF) +03/15/2018,Social_workers,@JimmySW,@husITaOrg @ritter_molly @wirthadrienne - Happy to have you in my community :) (🚀 via https://t.co/XbY0J6HrCF) +03/15/2018,Social_workers,@JimmySW,Something interesting is going on. https://t.co/FuIHLyMqMw +03/15/2018,Social_workers,@JimmySW,@TrynAmber @KESollenberger @K_Nguyen26 - #ShoutOutWednesday these are my favorite influencers this week! - 🙏insight… https://t.co/119qCrwL2T +03/15/2018,Social_workers,@JimmySW,RT @husITaOrg: Please check out (and like) husITa's new Facebook page: https://t.co/N9hyBXTtJu +03/15/2018,Social_workers,@JimmySW,@mareebearx @ValMsw @HectorMiramon11 Check out the top influencers in my community this week! - Shared via https://t.co/u3ADaDZo2L +03/15/2018,Social_workers,@JimmySW,Sadly I’m missing #BPD2018 this year as well 😭😭😭 https://t.co/D3UTBxxHgC +03/14/2018,Social_workers,@JimmySW,"RT @socworkpodcast: Students: Want to be inspired? Want to take your social justice, social enterprise or social entrepreneur project to th…" +03/14/2018,Social_workers,@JimmySW,RT @Samantha_D91: 3rd grade students at @JaleJaguars participated in #NationalWalkoutDay by creating a peace sign to #PleaforPeace! Proud t… +03/14/2018,Social_workers,@JimmySW,A student in the last chat told me @Tweetchat does not match the 280 Character limit allowed by Twitter. Reasons? M… https://t.co/SKKHoJomDZ +03/14/2018,Social_workers,@JimmySW,@nancy_kusmaul @gradschoolisfun thanks for being my top engaged members in the last week :) - 📈Get More Twitter Fol… https://t.co/JS4zSYzTlO +03/13/2018,Social_workers,@JimmySW,@SJSworks @poliSW thanks for being my top recently engaged followers in the last week :) -🚀via https://t.co/H4vnGx1yOl +03/13/2018,Social_workers,@JimmySW,Students in #CSUSMSW presented today on #SDyouth and homelessness. Such a serious issue and some great information. +03/13/2018,Social_workers,@JimmySW,"@kenedi_young19 @Katelyn04791497 @angel_hacop #HappyMonday, thanks for being my top recently engaged followers in t… https://t.co/AavaDVti1k" +03/13/2018,Social_workers,@JimmySW,"@ednamsw @AlexRidSW @deanna23905786 - check out my top engaged members :) - 📈Grow your followers, insight by https://t.co/VkFSLghLZ6" +03/13/2018,Social_workers,@JimmySW,@KimMSW2018 @MarshAlesia @elsa052019 - Thanks for being part of my community :) (insight by https://t.co/8rdehMn4xY) +03/12/2018,Social_workers,@JimmySW,@CollinAukai @CynmswSanchez @adcurry505 thanks for being my top recently engaged followers in the last week :)… https://t.co/mNCBzeUWpO +03/12/2018,Social_workers,@JimmySW,@SDSUSocialWork @marina_douang @JWillisMSW2019 - thanks to my top recently engaged followers this week :) - 🚀Increa… https://t.co/JniUoi3ABb +03/12/2018,Social_workers,@JimmySW,Has participatory culture failed us in the digital age? Does User-generated content & distribution help spread… https://t.co/yRlaYVE4xG +03/11/2018,Social_workers,@JimmySW,@Rmunoz089 @nick_molina @caraballo_vilma Check out the top influencers in my community this week! - 🚀Increase your… https://t.co/aZPdHDjQcI +03/11/2018,Social_workers,@JimmySW,So he is taking notes from House of Cards 🤔 @netflix https://t.co/OoXfP31qBY +03/11/2018,Social_workers,@JimmySW,Fantastic!!! Amazing!!! Super awesome. #husITa https://t.co/GNnHusCOtQ +03/11/2018,Social_workers,@JimmySW,@spcummings @Taylor4896 @graybill_holly - thanks to my top influencers this week :) - 🚀Increase your followers free https://t.co/AIZ3F3hxk9 +03/11/2018,Social_workers,@JimmySW,@ElizabethRoosa @Barra024Perla @afmerant thanks for being my top engaged members in the last week :) - 🚀Increase yo… https://t.co/F0UZqm5wqn +06/29/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Every kind of material or spiritual poverty, every form of discrimination against our brothers and sisters, comes from turnin…" +06/28/2018,Social_workers,@tiziana_dearing,I’m thinking of all my friends in local journalism tonight and want to say how much I appreciate you. I’m so sorry… https://t.co/haG1WVa7xG +06/25/2018,Social_workers,@tiziana_dearing,RT @DalaiLama: I am one of the 7 billion human beings alive today. We each have a responsibility to think about humanity and the good of th… +06/22/2018,Social_workers,@tiziana_dearing,Holy cow. Yes. Best political ad I’ve ever seen. Would move to TX just to vote for her! https://t.co/54xPo7DSGT +06/22/2018,Social_workers,@tiziana_dearing,RT @_SBNH: Thanks to @RodmanRide4Kids for choosing @tiziana_dearing to present at our affiliate meeting. The conversation continues #pover… +06/22/2018,Social_workers,@tiziana_dearing,"RT @BCSSW: ""In my experience, at least for women, fashion often is a form of leadership communication."" —@tiziana_dearing via @cogwbur +Read…" +06/22/2018,Social_workers,@tiziana_dearing,"RT @Carladearing: Tell it, sis. @tiziana_dearing Clothes Talk. And Melania Trump's 'I Really Don't Care' Jacket Spoke Volumes https://t.co/…" +06/21/2018,Social_workers,@tiziana_dearing,Let’s talk fashion in women’s leadership via the @FLOTUS wardrobe malfunction. https://t.co/5DB2EB0GvG @cogwbur +06/21/2018,Social_workers,@tiziana_dearing,"RT @brianhardzinski: Thoughtful, articulate take on why the jacket matters. https://t.co/XOkptie5Yc" +06/21/2018,Social_workers,@tiziana_dearing,RT @francesmargaret: Wardrobe malfunction https://t.co/L8THxTnFjv +06/21/2018,Social_workers,@tiziana_dearing,"RT @cogwbur: Don't tell me @FLOTUS didn't know she was sending a message with that jacket, writes @tiziana_dearing. https://t.co/uPGAtW5XEm" +06/21/2018,Social_workers,@tiziana_dearing,Just published a blog on @FLOTUS jacket on @cogwbur Thanks! https://t.co/5DB2EB0GvG @WBUR @BCSSW +06/21/2018,Social_workers,@tiziana_dearing,"9/ And I wish she would have chosen to communicate something else, or nothing at all with her wardrobe choice. I d… https://t.co/ojoYzUXzyH" +06/21/2018,Social_workers,@tiziana_dearing,"8/ Why not a green jacket without the statement “I don’t care” on the back, then? I can’t pretend to know what she… https://t.co/bpTpNDb9w8" +06/21/2018,Social_workers,@tiziana_dearing,7/ Someone with that awareness pretty much never just throws on some clothes - especially clothes with GIANT WRITIN… https://t.co/X7FQ2zV5nc +06/21/2018,Social_workers,@tiziana_dearing,"6/ @FLOTUS was a fashion model. She, at least as much as anyone else, should understand the statement value of fas… https://t.co/31Jlbu4jVs" +06/21/2018,Social_workers,@tiziana_dearing,"5/ We have dress codes in organizations because we are so aware that attire is communication, and often drives beha… https://t.co/IgPxKLD1Yh" +06/21/2018,Social_workers,@tiziana_dearing,"4/ The first time I gave a speech wearing a faux-fur bolero jacket rather than a standard suit coat, people came up… https://t.co/qAWdQ6z6QE" +06/21/2018,Social_workers,@tiziana_dearing,"3/ Think I sound silly? Ask Madeline Albright and her book, “Read My Pins,” where she talks about the pins and bro… https://t.co/9v2j9I0h5r" +06/21/2018,Social_workers,@tiziana_dearing,2/ What you choose to wear can do everything from a) project something you think or believe; b) draw attention to a… https://t.co/SCtRS0L6ju +06/21/2018,Social_workers,@tiziana_dearing,"1/ A @FLOTUS spox may wish we wouldn’t focus on her fashion, but I’m going to, and I’ll tell you why. In my experi… https://t.co/77wrgEvqRj" +06/21/2018,Social_workers,@tiziana_dearing,"Hey, Bostonians, check out this Communications and Marketing job at TERC https://t.co/MxJt0USYds" +06/21/2018,Social_workers,@tiziana_dearing,Great opportunity in Marketing and Communications at TERC https://t.co/GRpr6EPUx5 +06/21/2018,Social_workers,@tiziana_dearing,Had a terrific time today speaking with the @RodmanRide4Kids members about #poverty #equity and #SocialChange Thanks for hosting me! @BCSSW +06/21/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/21/2018,Social_workers,@tiziana_dearing,RT @spattersearch: Making a case for collaboration @tiziana_dearing #WFRN2018 https://t.co/0977o7WxZh +06/19/2018,Social_workers,@tiziana_dearing,RT @nasw: NASW strongly opposes the @realdonaldtrump policy of arresting immigrant adults and separating them from their children at the bo… +06/19/2018,Social_workers,@tiziana_dearing,"Thoughtful, thorough thread that tracks family detention back to 2015 and ends with specific recomendations on next… https://t.co/LEUs3h9g4m" +06/18/2018,Social_workers,@tiziana_dearing,"Fantastic opportunity for emerging #socialentrepreneurs and #changemakers @Ashoka ""Emerging Innovators Boot Camp""… https://t.co/fZIYoZRRnw" +06/18/2018,Social_workers,@tiziana_dearing,Check this out @BCSSW https://t.co/0QgZkIo4Ya +06/18/2018,Social_workers,@tiziana_dearing,"RT @deehan: NEW: @MassGovernor will not send ""any assets or personnel to the Southwest border today because the federal government’s curren…" +06/18/2018,Social_workers,@tiziana_dearing,RT @brianstelter: Head of the American Academy of Pediatrics: https://t.co/mKHvK9JDZ2 +06/15/2018,Social_workers,@tiziana_dearing,"This incredible thread by futurist @amywebb introducing & evaluating ""reality isolationism"" is the best thing i've… https://t.co/MmrLpLCeD1" +06/14/2018,Social_workers,@tiziana_dearing,"Thread recommended here is a full article and incredibly helpful. ""At Streamline hearing yesterday, I saw a woman… https://t.co/wWPdTsz7I3" +06/13/2018,Social_workers,@tiziana_dearing,RT @Peggy_Kel: @tiziana_dearing @statnews Unbelievable. This is still going on? @ Boston Bio event. +06/13/2018,Social_workers,@tiziana_dearing,RT @eDougBanks: @tiziana_dearing @statnews I thought the business community was starting to learn its lesson. I thought wrong. +06/13/2018,Social_workers,@tiziana_dearing,"Oh, for the love of God... + +Topless women with company logos painted on their bodies danced at unofficial party dur… https://t.co/kYo1ViiNbl" +06/13/2018,Social_workers,@tiziana_dearing,@eDougBanks @statnews Seriously. +06/13/2018,Social_workers,@tiziana_dearing,"RT @M_RSection: “Offering asylum seekers, refugees, migrants and victims of human trafficking an opportunity to find the peace they seek re…" +06/13/2018,Social_workers,@tiziana_dearing,"RT @lauriegnyt: THREAD There is sudden, serious pushback from religious leaders to Trump's immigration policies, especially separating fami…" +06/13/2018,Social_workers,@tiziana_dearing,"RT @gehringdc: Every Catholic in Congress who touts how ""pro life"" they are while supporting the Trump administration's cruel and immoral b…" +06/13/2018,Social_workers,@tiziana_dearing,"It’s the overall tone of the letter. This is a #mapoli gubernatorial race, not the final stand for the fate of huma… https://t.co/nFVf9euQAc" +06/12/2018,Social_workers,@tiziana_dearing,"""The number of migrant children held in U.S. government custody without their parents has increased more than 20 pe… https://t.co/vtVVJJ6KZx" +06/12/2018,Social_workers,@tiziana_dearing,This Vox article is clear and helpful. https://t.co/IOcursVHDP +06/12/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Children must be able to play, study and grow in a peaceful environment. Woe to anyone who stifles their joyful impulse to ho…" +06/11/2018,Social_workers,@tiziana_dearing,RT @Lepiarz: THIS IS EVERYTHING https://t.co/aHyAeL1gLe +06/11/2018,Social_workers,@tiziana_dearing,‘Children are being used as a tool’ in Trump’s effort to stop border crossings https://t.co/lK71g8C8T7 via @BostonGlobe +06/11/2018,Social_workers,@tiziana_dearing,"""Our cruelty proliferates. In recent months, we have separated roughly 700 families...What have we become?""… https://t.co/uqBWJeX5Fx" +06/11/2018,Social_workers,@tiziana_dearing,@wajisa @sparkcamp We missed you. Talked about you a lot. +06/11/2018,Social_workers,@tiziana_dearing,"Hey @sparkcamp Wow. Just, Wow. Fantastic camp this weekend. Thank you!!!!" +06/11/2018,Social_workers,@tiziana_dearing,@cgreensit @JohnDavidow A little snubbing going on last night... +06/07/2018,Social_workers,@tiziana_dearing,You are profoundly disrespectful of other people. https://t.co/wSxivK2rOQ +06/07/2018,Social_workers,@tiziana_dearing,"@Mixedbeautyyyy_ I don’t know you, but this is wonderful news! Congratulations to you." +06/06/2018,Social_workers,@tiziana_dearing,"The part at the end where an EPA spokesperson calls the reporter a ""piece of trash,"" for asking for comment. Prett… https://t.co/vwjIz3DG0p" +06/06/2018,Social_workers,@tiziana_dearing,"""It is basically the only group of outside experts that the CFPB director is required to interact with by law."" https://t.co/F8SXZWVU75" +06/05/2018,Social_workers,@tiziana_dearing,I emailed mine. Your turn #mapoli https://t.co/JyQ2pVTeug +06/05/2018,Social_workers,@tiziana_dearing,I love being here today at #AWA18 with @laurabooks who is one of the most inspiring women in my life. @YWBoston https://t.co/gUiQr0K5xl +06/05/2018,Social_workers,@tiziana_dearing,I love being here today at #AWA18 with @laurabooks who is one of the most inspiring women in my life. @YWBoston https://t.co/dy3uOStNrx +06/05/2018,Social_workers,@tiziana_dearing,@marty_walsh “We need to stop talking about closing the #wagegap and just make it happen.” @YWBoston #AWA18 https://t.co/sMf4TcSDrK +06/05/2018,Social_workers,@tiziana_dearing,“There’s no passive stance in response to injustice.” #AWA18 @YWBoston https://t.co/aBFe911PX7 +06/05/2018,Social_workers,@tiziana_dearing,Anita Hill giving the inaugural #AWA18 award in honor of Sylvia Farrell-Jones @YWBoston https://t.co/ay468KqMa1 +06/05/2018,Social_workers,@tiziana_dearing,LaToya Edwards kicks us off @YWBoston Academy of Women Achievers #AWA18 And I’m sitting with Anita Hill!! https://t.co/vjnUEJRLdC +06/05/2018,Social_workers,@tiziana_dearing,"Why rich kids are so good at the marshmallow test, by @JessicaCalarco https://t.co/xfkxC1t6YS" +06/04/2018,Social_workers,@tiziana_dearing,"""Social Justice, Solidarity and Women in the Workplace"" happens tomorrow night. Register https://t.co/OHikqI8tsR.… https://t.co/kXsTo8byv5" +06/03/2018,Social_workers,@tiziana_dearing,RT @RJSzczerba: For anyone who ever got a rejection letter of any kind ... https://t.co/i3vC4aADxS +06/01/2018,Social_workers,@tiziana_dearing,"I have such deep respect for Bruce Western’s work. This Re-entry data is so valuable, and I hope people will overlo… https://t.co/boqdrL3cqk" +05/31/2018,Social_workers,@tiziana_dearing,"Looking forward to joining Helen Drinan of @SimmonsCollege , @Carol_Fulp and Roxana Rivera of @32BJSEIU next week t… https://t.co/sWEBXV6H3P" +05/31/2018,Social_workers,@tiziana_dearing,Here's your brain bender for the day... https://t.co/TB1YVab86a +05/30/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: When the Holy Spirit is present, something always happens. Where blows the Spirit, things are never at a standstill." +05/29/2018,Social_workers,@tiziana_dearing,"RT @amyemchugh: @tiziana_dearing @NPR Agreed, I appreciated the segment and her perspective. A sad, sad time for our country." +05/29/2018,Social_workers,@tiziana_dearing,"Nuanced, thoughtful conversation with Cecilia Munoz on @npr this morning is good way to educate self further on the… https://t.co/X1Z3c6BXmV" +05/29/2018,Social_workers,@tiziana_dearing,RT @TraciKirtley: @tiziana_dearing Thanks. I’ve been way of the “missing children” storyline for this reason—assuming it’s different agenci… +05/28/2018,Social_workers,@tiziana_dearing,Very interesting point in longer thread calling out tweeters like me to be careful in our complaints about the 1500… https://t.co/noCXdgmGoM +05/27/2018,Social_workers,@tiziana_dearing,Nearly 1500 kids missing. Reports of harsh treatment of detained children in prison-like conditions. Separating chi… https://t.co/mRlQWvhaWh +05/25/2018,Social_workers,@tiziana_dearing,Maybe some of the people who lost 1450 kids? https://t.co/dDiD2lNnnB +05/25/2018,Social_workers,@tiziana_dearing,How do you lose 1450 kids? Please let there be a non-partisan reaction to this. They’re kids. https://t.co/Hsat4Q2Bzs +05/25/2018,Social_workers,@tiziana_dearing,@reillyadam I’m old school. “Party” as a verb. +05/24/2018,Social_workers,@tiziana_dearing,This is so good. Under The Skin: Why That 'Arrested Development' Interview Is So Bad https://t.co/sFtz52iu43 +05/23/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Prof Rocío Calvo asks the audience to consider how we can integrate procedural justice into everyday life #BCDISummit2018 https:… +05/23/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Prof. @tiziana_dearing kicks-off a discussion on everyday excellence and inclusion at the #BCDISummit2018 https://t.co/qYGkjBAYKm +05/23/2018,Social_workers,@tiziana_dearing,Really appreciating this discussion among BC colleagues about Ignatian Spirituality and how it relates to their own… https://t.co/ck2YrvDveU +05/23/2018,Social_workers,@tiziana_dearing,"#BCDISummit2018 had a fantastic, challenging keynote. Heading to working session on #IgnatianSpirituality and… https://t.co/mMOKkS6hP6" +05/23/2018,Social_workers,@tiziana_dearing,About to start #BCDISummit2018 ! Excited to moderate the plenary this afternoon on #DiversityandInclusion… https://t.co/9zLxh5wXds +05/22/2018,Social_workers,@tiziana_dearing,"So pleased to be joining Helen Drinan of @SimmonsCollege, @Carol_Fulp, and Roxana Rivera of @32BJSEIU for… https://t.co/u6YF23fdxE" +05/22/2018,Social_workers,@tiziana_dearing,RT @gcroteau: Thanks again @tiziana_dearing! Great to have all your partnership and support! @BCSSW https://t.co/IMdofCT2AQ +05/18/2018,Social_workers,@tiziana_dearing,"RT @JamesMartinSJ: To be clear, even members of MS-13 are not ""animals."" Every human being has dignity, even the worst criminals, even murd…" +05/17/2018,Social_workers,@tiziana_dearing,RT @BostonCollege: Groundbreaking @BCSSW @FADICAnetwork study looks at Catholic social innovation at work for refugees and migrants around… +05/17/2018,Social_workers,@tiziana_dearing,"Another deep investment in #Lowell by @UTEC_lowell with the #socialinnovation center: early ed, commercial kitchen,… https://t.co/iFoxXD6pdL" +05/17/2018,Social_workers,@tiziana_dearing,Words and people of inspiration @UTEC_lowell opening of the #socialinnovation center. @BCSSW https://t.co/DmaLA6e2iY +05/17/2018,Social_workers,@tiziana_dearing,Touring the new #2Gen center @UTEC_lowell as they open their #socialinnovation center! I love this place! @BCSSW… https://t.co/LRyOFSFppZ +05/17/2018,Social_workers,@tiziana_dearing,"Let’s review: When one has the choice between calling human beings “animals” and not calling them “animals,” one i… https://t.co/q2fGMi7u6d" +05/16/2018,Social_workers,@tiziana_dearing,"RT @BCSSW: Prof. @tiziana_dearing reflects on how Catholic thought meets social innovation with a study commissioned by @FADICAnetwork +http…" +05/16/2018,Social_workers,@tiziana_dearing,Really interesting public convo happening on Twitter in response to this. #mapoli #Transportation @reillyadam https://t.co/swdnf4Lv4W +05/16/2018,Social_workers,@tiziana_dearing,"@UnitedWayKirsta Thanks so much for the shout out! Alas, no photos, but I love it that you asked." +05/15/2018,Social_workers,@tiziana_dearing,"RT @AmplifyLatinx: Join @AFTDJ on 6/5 for a conversation on Social Justice, Solidarity and Women in the Workplace, featuring BC Prof @tizia…" +05/14/2018,Social_workers,@tiziana_dearing,RT @GlobeHorowitz: Wow. Note the wildly disproportionate number of white families that own houses but don't have mortgages. https://t.co/Ga… +05/12/2018,Social_workers,@tiziana_dearing,"RT @BruceLesley: No, it is just cruel, inhumane, and harmful to children. #NotWhatever https://t.co/Qvb7EbMDqa" +05/11/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: We begin building peace in our homes, streets, and workplaces: wherever we craft communion and community." +05/11/2018,Social_workers,@tiziana_dearing,"""Nearly half of Massachusetts’ community college students and a third in the state colleges and universities cannot… https://t.co/vElGTGHvDN" +05/11/2018,Social_workers,@tiziana_dearing,"""No one is standing up and saying 'We can't treat people like this.' And sadly, that vacuum in moral leadership mea… https://t.co/JSlROWGopM" +05/11/2018,Social_workers,@tiziana_dearing,A huge shout of thanks to @Sen_Chandler @SalDiDomenico @KarenSpilka @cindycreem for choosing to @LiftCaponKidsMA in… https://t.co/MGUgHKk9oK +05/09/2018,Social_workers,@tiziana_dearing,"“...we miss assets they value in the community, run the risk of failing to understand what quality is to those whom… https://t.co/i6iUnjmxgf" +05/09/2018,Social_workers,@tiziana_dearing,"White, well meaning: United Way should reflect the community it servesC-VILLE Weekly https://t.co/NlkZ46uezw via… https://t.co/vKg0FEeAnb" +05/09/2018,Social_workers,@tiziana_dearing,RT @ianmastersmedia: NOW on https://t.co/ay4miajeBc | @milaniabbas - Trump's Monumental Gift to Iran's Hardliners | @tiziana_dearing - The… +05/09/2018,Social_workers,@tiziana_dearing,Glad to have joined @ianmastersmedia to talk #MeToo #Schneiderman and making sense of where we are today. https://t.co/zO81cBs73p +05/08/2018,Social_workers,@tiziana_dearing,RT @fdncenter: Are you a young professional interested in strengthening community #philanthropy and building capacity in local third-sector… +05/08/2018,Social_workers,@tiziana_dearing,This was juxtaposed in my Twitter feed this morning... https://t.co/MwfRfU2S0e +05/07/2018,Social_workers,@tiziana_dearing,Case in point on @wburdebbecker and her great work. https://t.co/0L655qrL0i +05/07/2018,Social_workers,@tiziana_dearing,Deborah Becker has been doing outstanding #mentalhealth reporting for @WBUR. Warmest congratulations to her. https://t.co/hMa6mEvBO9 +05/07/2018,Social_workers,@tiziana_dearing,"Want to make a real, substantial difference in peoples' lives every day? Upper Valley Haven in VT looking for a ne… https://t.co/mSm0Cm4Xsq" +05/07/2018,Social_workers,@tiziana_dearing,About to join colleagues for #MeToo in the Classroom at #BCTeach18. Can’t wait to start! +05/05/2018,Social_workers,@tiziana_dearing,"RT @DalaiLama: Scientists warn that constant fear and anger are bad for our health, while being compassionate and warm-hearted contributes…" +05/04/2018,Social_workers,@tiziana_dearing,"RT @francesmargaret: Happy trails to @davidboeri -- the man, the myth, the legend. https://t.co/jyGHonhVlQ" +05/04/2018,Social_workers,@tiziana_dearing,Looking forward to joining @MeghnaWBUR & @joebattenfeld for @RadioBoston this afternoon at 3:00 on 90.0. See you at @WBUR! +05/04/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Catch @tiziana_dearing on @RadioBoston this afternoon for the Week in Review. listen live: https://t.co/Qhim9LusWY +05/03/2018,Social_workers,@tiziana_dearing,Ugh. You cannot make this stuff up. https://t.co/qyg1pABwZ6 +05/02/2018,Social_workers,@tiziana_dearing,"Could not be more proud to see Dr. Stephanie Berzin advance to this important role. We will miss her, but sharing h… https://t.co/QD1XT5cCRY" +05/01/2018,Social_workers,@tiziana_dearing,This understanding or work as a fundamental expression of human dignity is essential to our conversations about… https://t.co/Htrsbe1GXC +04/30/2018,Social_workers,@tiziana_dearing,About to hear colleague Theresa Betancourt at the inaugural Salem Professorship in Global Practice address. Proud o… https://t.co/2DTTz4TdO0 +04/28/2018,Social_workers,@tiziana_dearing,About to see Infinity War. Let it begin! +04/27/2018,Social_workers,@tiziana_dearing,RT @BCSSW: BCSSW's @BC_Innovation delivered a report on Catholic Social Innovation & the refugee crisis to @FADICAnetwork with research led… +04/26/2018,Social_workers,@tiziana_dearing,@quizasjoaquin @BCSSW Thanks! +04/26/2018,Social_workers,@tiziana_dearing,BCSSW Delivers Report on Catholic Social Innovation & the Refugee Crisis to FADICA https://t.co/QbmJ4JdeUT via @bcssw +04/25/2018,Social_workers,@tiziana_dearing,Huge THANK YOU to @SpeakerDeLeo @jeffrey_sanchez @MarjorieDecker @repkaykhan and others for helping to… https://t.co/b0ixDtvXyu +04/25/2018,Social_workers,@tiziana_dearing,You are so lucky to have Ruth! https://t.co/flNmmaMudX +04/24/2018,Social_workers,@tiziana_dearing,RT @Pontifex: Life only fully makes sense when it is given as a gift. It becomes tasteless when it is lived for itself alone. +04/24/2018,Social_workers,@tiziana_dearing,@RevEverett @seamwork Definitely blue +04/23/2018,Social_workers,@tiziana_dearing,"RT @BostonCollege: Catholic social innovation is helping migrants and refugees across the globe, a new @BCSSW @FADICAnetwork report shows:…" +04/23/2018,Social_workers,@tiziana_dearing,Excited to be at @Surdna_Fndn in NYC today giving a talk on #poverty trust and #philanthropy for @COF_ today. @TMWRivera @BCSSW +04/19/2018,Social_workers,@tiziana_dearing,RT @BCAlumni: Join the conversation! https://t.co/UPxE0jrMzi https://t.co/I8WcdmLQLE +04/19/2018,Social_workers,@tiziana_dearing,Proud of this article in @americamag featuring #Catholic #socialinnovation and the research funded by… https://t.co/e0PwK2h484 +04/19/2018,Social_workers,@tiziana_dearing,Loom Chicago is one of dozens of Catholic-run organizations that are adept at meeting various challe https://t.co/sDVYJUVkQe via @americamag +04/19/2018,Social_workers,@tiziana_dearing,Looking forward to joining @BCAlumni to do a webinar exploring #MeToo in about 30 minutes. +04/19/2018,Social_workers,@tiziana_dearing,"RT @conoryunits: Breaking: Due to continuous, absurd, despicable weather conditions, Boston is closed. + +We will try reopening in May. + +Th…" +04/18/2018,Social_workers,@tiziana_dearing,Honored to be quoted in this @pewresearch study on #tech saturation. https://t.co/OyPArHbKCg @BCSSW https://t.co/ciEydZWxSB +04/18/2018,Social_workers,@tiziana_dearing,RT @ImagineInternet: “Technological developments hold tremendous potential … But our ability to adapt at a species level happens on a much… +04/17/2018,Social_workers,@tiziana_dearing,"Been giving some talks including structural racism, #housing values and the #racialwealthgap. See article below.… https://t.co/a8xkGMD5aN" +04/14/2018,Social_workers,@tiziana_dearing,@xeniawickett Congratulations!!! What is your new role? +04/11/2018,Social_workers,@tiziana_dearing,"And you're really good at it, Martha! Keep running that marathon. #teamWBUR https://t.co/INDVnEujtL" +04/11/2018,Social_workers,@tiziana_dearing,"Reading @pontifex ""On the call to holiness in today's world."" Amazing call to the everyday practices of love and s… https://t.co/01bQyWZbb3" +04/11/2018,Social_workers,@tiziana_dearing,"Thank you, John. Hope the first full week of retirement is wonderful. https://t.co/QSINNvWpSd" +04/11/2018,Social_workers,@tiziana_dearing,"RT @nytimesbusiness: Did you apply for college this year and write an undergraduate application essay about money, work, social class or re…" +04/11/2018,Social_workers,@tiziana_dearing,RT @SueNBCBoston: With the Syrian attacks bringing the refugee crisis back into the headlines – how nuns are socially innovative nuns(!) ar… +04/11/2018,Social_workers,@tiziana_dearing,RT @C21Center: .@BC_Innovation produced a #Migration aid project #study which focuses on ‘Catholic social innovation’—the study is the firs… +04/11/2018,Social_workers,@tiziana_dearing,#KeepFacebook https://t.co/MNBYW84pmx via @laurabooks. Thought provoking piece from one of my favorite bloggers. +04/10/2018,Social_workers,@tiziana_dearing,Terrific chat with @SueNBCBoston tonight re: Catholic #socialinnovation and #migration. Check it out again tonight… https://t.co/YWcQM7SBQM +04/10/2018,Social_workers,@tiziana_dearing,RT @SueNBCBoston: With the Syrian attacks bringing the refugee crisis back into the headlines – how nuns are socially innovative nuns(!) ar… +04/10/2018,Social_workers,@tiziana_dearing,"RT @DavidsonServes: Enjoyed having @tiziana_dearing on campus to speak with our Bonner Scholars about the intersection of Poverty, Equity,…" +04/10/2018,Social_workers,@tiziana_dearing,@jamie_stamey @ProfessorNati @DavidsonCollege Thank you! +04/10/2018,Social_workers,@tiziana_dearing,RT @jamie_stamey: @ProfessorNati @tiziana_dearing @DavidsonCollege I spent a little time with her in the morning and walked away with enoug… +04/10/2018,Social_workers,@tiziana_dearing,"@dog_feelings Love you, too, pupper." +04/09/2018,Social_workers,@tiziana_dearing,I see what you did there https://t.co/ZBQCAIZp06 +04/09/2018,Social_workers,@tiziana_dearing,@kreshleman @DavidsonCollege Thank you! +04/09/2018,Social_workers,@tiziana_dearing,@ProfessorNati @DavidsonCollege Thank you! +04/09/2018,Social_workers,@tiziana_dearing,RT @ProfessorNati: Getting to be in the @tiziana_dearing lecture at @DavidsonCollege is giving me hope. https://t.co/LUoCf0bPl8 +04/09/2018,Social_workers,@tiziana_dearing,"RT @kreshleman: Excited for @tiziana_dearing talk on Poverty, Equity, and Social Change @DavidsonCollege https://t.co/e0ax9KJhQg" +04/07/2018,Social_workers,@tiziana_dearing,Prof. Mansbridge had a huge impact on me in my graduate education. She was a wonderful teacher. Warmest congratulat… https://t.co/gTZyjCk6MW +04/07/2018,Social_workers,@tiziana_dearing,"RT @DalaiLama: In the modern world, where the pursuit of money is considered more important than the cultivation of inner values a fresh ap…" +04/05/2018,Social_workers,@tiziana_dearing,RT @SJPSKings: Amazing visit @UTEC_lowell at #Exchange2018: of @Ashoka @ShawnaLewk @kingsatwestern https://t.co/Hx8EwWfG4z +04/04/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Love is the only invincible weapon, because it has the power to disarm the forces of evil." +04/04/2018,Social_workers,@tiziana_dearing,"Ugh. Just, ugh. https://t.co/0TURPkbSfX" +04/04/2018,Social_workers,@tiziana_dearing,Working on a talk tonight to give to the #economics department @DavidsonCollege next week. Can't wait to meet their fabulous students! +04/02/2018,Social_workers,@tiziana_dearing,RT @NASWMA: Time to reclaim #socialjusticewarrior. Thank you @tiziana_dearing! Let’s do this. Who is with us?! #leadma2018 https://t.co/9tU… +04/02/2018,Social_workers,@tiziana_dearing,#socialwork students gather at the Episcopal Church on Newbury for the start of @NASWMA LEAD Day 2018. What a beaut… https://t.co/2Op00DRHs1 +04/02/2018,Social_workers,@tiziana_dearing,Headed to @NASWMA LEAD Day this morning to talk with #socialwork students about the “why” of advocacy. So excited t… https://t.co/x40PGHwGS8 +04/01/2018,Social_workers,@tiziana_dearing,"RT @ValerieJarrett: A thought: Since it is #GoodFriday & #Passover, could we commit to cling tightly to our better selves, not just today,…" +03/30/2018,Social_workers,@tiziana_dearing,"And that, folks, is your first episode of The Office reboot... https://t.co/sTLA7WqRmS" +03/30/2018,Social_workers,@tiziana_dearing,This thread... https://t.co/Rz8YjepGVG +03/30/2018,Social_workers,@tiziana_dearing,RT @tiffanycampbell: The Public Radio BizLab @WBUR is looking to hire some smart people for paid fellowships this summer. They’ll be kickst… +03/30/2018,Social_workers,@tiziana_dearing,Line at the Watertown #RMV @MassRMV https://t.co/QlaqxHRrED +03/30/2018,Social_workers,@tiziana_dearing,Are you driving? https://t.co/JgBR9lkfbS +03/29/2018,Social_workers,@tiziana_dearing,Ending my day @Harvard with leaders in #socialinnovation and aspiring future leaders. Looking forward to it! @BCSSW https://t.co/GH93vNTTdb +03/29/2018,Social_workers,@tiziana_dearing,"@AlisonNBCBoston @SueNBCBoston @rdsahl @jimbraude @NECN @JohnVanScoyoc I had no idea John was retiring! I’ll miss you, John." +03/29/2018,Social_workers,@tiziana_dearing,RT @AlisonNBCBoston: He survived @rdsahl. He survived @jimbraude. He survived @SueNBCBoston. Now @NECN needs to figure out how to survive… +03/29/2018,Social_workers,@tiziana_dearing,"RT @causeconsulting: ""Expand your community; embrace new experiences,"" said @tiziana_dearing at @_TheBASE Women's #Leadership Breakfast wi…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @RevEverett: A new command, a new mandate, I give to you: Love one another. Let this be our #MaundyThursday commitment, just that simpl…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @hallard: @tiziana_dearing speaks to the types of poverty created by institutional racism: social poverty, workplace poverty, community…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @Rosemarie_Day1: Great Women’s Leadership panel for The BASE this morning. Reminders to own your power, be authentic, and take risks.…" +03/29/2018,Social_workers,@tiziana_dearing,"@SueNBCBoston Yeah, I’m a real psychic..." +03/28/2018,Social_workers,@tiziana_dearing,Wait https://t.co/ppIYXqbrCM +03/28/2018,Social_workers,@tiziana_dearing,Actually really appreciate this. Have been dumbfounded that kids are no longer off limits for the level of terrifyi… https://t.co/pUx2VDMW7M +03/26/2018,Social_workers,@tiziana_dearing,I am listening to @OnPointRadio where I think a caller just basically threatened @davidhogg111 and others with 5 mi… https://t.co/6tlwAWkxhZ +03/26/2018,Social_workers,@tiziana_dearing,@TraciKirtley Nice +03/25/2018,Social_workers,@tiziana_dearing,@quizasjoaquin @danivillanueva @skachiedza @GiuliaMcPherson @Nikki_43809 @RodulfoPrieto @LyndseyMcMahan I am a part… https://t.co/m2KivArYdc +03/24/2018,Social_workers,@tiziana_dearing,I gotta go ahead and question whether I need even one https://t.co/xD3Rslo9AC +03/24/2018,Social_workers,@tiziana_dearing,In case you might have forgotten that @MeghnaWBUR is a reporter as well as a host...this impressive and scary threa… https://t.co/qq2IuwYEBG +03/23/2018,Social_workers,@tiziana_dearing,"RT @ronlieber: Every year, I collect the best college application essays I can find about money, work, social class, wealth and/or its abse…" +03/23/2018,Social_workers,@tiziana_dearing,"I think Joe just wanted to be able to say ""piping plover."" https://t.co/k5N6q4VLAA" +03/22/2018,Social_workers,@tiziana_dearing,"Absolutely loved this thread re: @facebook, recognizing potential interest of the source. Learned so much. Also h… https://t.co/1cMXCMZAjf" +03/21/2018,Social_workers,@tiziana_dearing,"I'm really struck by this piece from @tomfriedman in @nytimes . ""America needs a healthy conservative party in our… https://t.co/lfDEKkyKqZ" +03/21/2018,Social_workers,@tiziana_dearing,"Makes me angry. When you read what it said before and what it says now, its speaks (or doesn't) volumes. Words matt… https://t.co/aP2ubL6ITr" +03/20/2018,Social_workers,@tiziana_dearing,RT @BrookingsEcon: Boys who grew up in families in the bottom 10% of the income distribution are 20 times more likely to be in prison on a… +03/19/2018,Social_workers,@tiziana_dearing,Check out this smart piece by @cosgrovet on follow-up strategies after #WalkoutWednesday https://t.co/gYOZtE0KwI +03/19/2018,Social_workers,@tiziana_dearing,.@48in48 is building 48 websites for 48 Boston Nonprofits - Are you eligible for a free new site? Apply https://t.co/O49Se2GVFK +03/17/2018,Social_workers,@tiziana_dearing,"Oh, good, because I was just thinking that my Twitter feed was too full of good news these days... https://t.co/vyJ27Ojmue" +03/16/2018,Social_workers,@tiziana_dearing,"Oh, good lord. https://t.co/2v5jMTcaIi" +03/16/2018,Social_workers,@tiziana_dearing,"RT @RadioBoston: @tiziana_dearing @titojackson @wburdebbecker .@tiziana_dearing: ""No one gets to hide behind this anymore. This is intolera…" +03/16/2018,Social_workers,@tiziana_dearing,"RT @RadioBoston: Miss the show? Hear @tiziana_dearing, @titojackson, @anthonygbrooks, @sdooling & @Chessy_Prout on our podcast: https://t.c…" +03/16/2018,Social_workers,@tiziana_dearing,"Thought this piece was really interesting. + +Strategy is key in Parkland students' next move against gun violence |… https://t.co/Q6IBTsjR9g" +03/16/2018,Social_workers,@tiziana_dearing,RT @TinaLFletcher: @gstreat @tiziana_dearing https://t.co/0wkwNWRh2k +06/29/2018,Social_workers,@ProfessorChic,"RT @UMSocialWork: Companionate relationships influence mental health outcomes of older African American men. #SSWResearch +Assistant Profess…" +06/29/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: @TheMCUAAAR and @PRBA_ISR professor Jamie Mitchell @ProfessorChic https://t.co/opn4Whk73U +06/29/2018,Social_workers,@ProfessorChic,RT @NYTHealth: Breaking News: A federal judge blocked Kentucky's plan to impose new Medicaid rules requiring the poor to work to maintain t… +06/28/2018,Social_workers,@ProfessorChic,RT @UMichPath: #UMichPath #MCTP #ChinnaiyanLab https://t.co/DddQDBxolC +06/27/2018,Social_workers,@ProfessorChic,RT @umichglc: The School of Social Work @UMSocialWork sponsored this workshop. @umichglc members Robert Joseph Taylor and @ProfessorChic w… +06/27/2018,Social_workers,@ProfessorChic,RT @PublicHealth: Research: Police killings of unarmed black Americans harm the mental health of other black adults https://t.co/Js83nfVQtG +06/27/2018,Social_workers,@ProfessorChic,"RT @NPR: People with intellectual disabilities are assaulted at seven times the rate of people without disabilities. Now, states and advoca…" +06/26/2018,Social_workers,@ProfessorChic,RT @TheMCUAAAR: Congrats to the 2018 Doctoral Students Mentoring Workshop participants! We enjoyed the 3 days that you spent with us. Stay… +06/26/2018,Social_workers,@ProfessorChic,RT @MensHealthUBC: “Over 70 per cent of men suffer mental health problems and don't know it” https://t.co/JwFQ4922l2 https://t.co/wYzgV7NMwl +06/26/2018,Social_workers,@ProfessorChic,RT @ProfessorTD: Presenting with @UofISocialWork's Hellen McDonald on #perinatalmentalhealth today @ McLean county public health department… +06/26/2018,Social_workers,@ProfessorChic,"RT @chronicle: If you want more diversity on your campus, start by diversifying your own staff at the highest levels and treating its membe…" +06/26/2018,Social_workers,@ProfessorChic,"RT @JudyCBPP: Review of 77 studies on #Medicaid expansion in @Health_Affairs concludes expansion increases coverage, use of health care, an…" +06/26/2018,Social_workers,@ProfessorChic,RT @UMRogelCancer: A new @umich study forms the backbone for free new online tools for personalizing #lungcancer risk and screening decisio… +06/26/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Walgreens pharmacist denies woman miscarriage medication because it goes against his ethics https://t.co/7xCzy51JGv +06/24/2018,Social_workers,@ProfessorChic,RT @GeeDee215: A thread. https://t.co/HmG2UpQ6Jp +06/24/2018,Social_workers,@ProfessorChic,RT @nytimes: President Trump suggested sending people who “invade” the United States “back from where they came” without legal proceedings… +06/23/2018,Social_workers,@ProfessorChic,RT @KamalaHarris: Yesterday I got a tour of an immigration detention facility and visited with the mothers separated from their children. A… +06/23/2018,Social_workers,@ProfessorChic,RT @nytimes: U.S. Open Will Revamp Its Seeding to Account for Pregnancy Leaves https://t.co/hnZksf6BqN +06/21/2018,Social_workers,@ProfessorChic,RT @UMRogelCancer: New study arms #breastcancer patients with important data about the risks and rewards associated with each surgical opti… +06/21/2018,Social_workers,@ProfessorChic,RT @umichmedicine: What can #neuroscience research tell us about what might be happening to the brains of children affected by #FamilySepar… +06/21/2018,Social_workers,@ProfessorChic,"RT @PSGMke: Racial/Ethnic and Sexual Minority Males Among Unhealthiest People in America, Report Finds https://t.co/2yMNyzB1y8 via @APA" +06/20/2018,Social_workers,@ProfessorChic,Same. https://t.co/iwx5QUp6sj +06/20/2018,Social_workers,@ProfessorChic,RT @TheOnion: Newborn Loses Faith In Humanity After Record 6 Days https://t.co/jUneA85mld https://t.co/ODPhv5JbmD +06/20/2018,Social_workers,@ProfessorChic,RT @USATODAY: RAICES is the largest immigration legal services non-profit in Texas. The group is accepting donations for its family reunifi… +06/20/2018,Social_workers,@ProfessorChic,"RT @kylegriffin1: In the middle of the night, two baby boys arrived in Grand Rapids after being separated from their immigrant parents. + +O…" +06/20/2018,Social_workers,@ProfessorChic,"RT @civilrightsorg: ""As a psychologist who studies how trauma and stress affect children’s development, I’m extremely concerned about the l…" +06/20/2018,Social_workers,@ProfessorChic,RT @detroitnews: ALERT: Michigan sees children young as 3 months separated from parents https://t.co/OSUm9vYcv3 https://t.co/QQ5viYAxDu +06/19/2018,Social_workers,@ProfessorChic,RT @EdgeforScholars: Investigators at all career stages can tap into the Trial Innovation Network’s free toolkit for protips on trial desig… +06/18/2018,Social_workers,@ProfessorChic,RT @WebMD: CHECK YOUR PANTRY: Kellogg's has recalled certain boxes of Honey Smacks cereal due to possible salmonella contamination. https:/… +06/18/2018,Social_workers,@ProfessorChic,"RT @CraigSJ: I wrote about Beyoncé and Jay-Z and #EverythingIsLove, the dramatic conclusion to one of the heaviest love album trilogies of…" +06/18/2018,Social_workers,@ProfessorChic,"RT @keithboykin: According to NASA, The Milky Way is ""so big that even at the speed of light, it would take 100,000 years to travel across…" +06/18/2018,Social_workers,@ProfessorChic,RT @eugenegu: Who cares about Trump’s Space Force when children are being ripped from their families and sent to internment camps. +06/17/2018,Social_workers,@ProfessorChic,"RT @PRBA_ISR: Waldo Johnson former @PRBA postdoc. Non-residential fathers aren't necessarily absentee, research shows@SociologistRay @Darri…" +06/17/2018,Social_workers,@ProfessorChic,"RT @ObamaFoundation: Happy Father’s Day to all the dads out there supporting their kids, like Lynell Jinks, who uses his kids’ lunch bags a…" +06/17/2018,Social_workers,@ProfessorChic,"RT @WriteThatPhD: How to write with purpose & publish for impact – a 5-part series to help you: +• Imagine the #Writing Project +• Organize &…" +06/17/2018,Social_workers,@ProfessorChic,"RT @keithellison: Dad, Leonard Ellison, taught me: +-don’t back down +-get back up +-you’re going make mistakes +-forgive yourself too +-go for…" +06/16/2018,Social_workers,@ProfessorChic,RT @CerromeRussell: Beyoncé can really rap +06/16/2018,Social_workers,@ProfessorChic,Same. https://t.co/Pyt4a80W7d +06/16/2018,Social_workers,@ProfessorChic,This Tweet from @ProfessorChic has been withheld in: Canada. +06/16/2018,Social_workers,@ProfessorChic,RT @deray: Friends. #EVERTHINGISLOVE +06/16/2018,Social_workers,@ProfessorChic,RT @ziwe: I love when beyonce drops new music because that means I can cancel all my plans +06/16/2018,Social_workers,@ProfessorChic,RT @jemelehill: AND the song is a banger #EverythingIsLove https://t.co/fj2H1r2Dfc +06/16/2018,Social_workers,@ProfessorChic,"RT @Beyonce: Stream #EverythingIsLove now, exclusively on TIDAL. Also stream a TIDAL-exclusive track. https://t.co/OHRZ7lnF8n https://t.co/…" +06/16/2018,Social_workers,@ProfessorChic,RT @HOT97: SURPRISE! Jay Z & Beyoncé album out now! #EverythingIsLove https://t.co/OQQWC5qXbb +06/16/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: Carl Hill @hillcv17 former PRBA doctoral student @ABSociologists @ASA_SREM @ABPsiSC @assarish @aasewell @WatkinsResearch @Dar… +06/16/2018,Social_workers,@ProfessorChic,"RT @EllisMonk: Greatly honored that my article ""The Cost of Color: Skin Color, Discrimination, and Health among African Americans"" (AJS) wo…" +06/16/2018,Social_workers,@ProfessorChic,"RT @NPR: Colleen Kraft, president of the American Academy of Pediatrics, visited a Texan shelter for migrant children and saw a young girl…" +06/16/2018,Social_workers,@ProfessorChic,"RT @umichalzheimers: Morning panel mod @professorchic notes, “We don’t talk about dementia as a culture itself, understanding the symbols a…" +06/14/2018,Social_workers,@ProfessorChic,"RT @ass_deans: If a damn raccoon can climb a skyscraper, surely the faculty can get 75% response rates on their teaching evaluations." +06/14/2018,Social_workers,@ProfessorChic,RT @CDC_Cancer: This #MensHealthWeek get the fast facts about #cancer and men: https://t.co/zgoemCDGJg https://t.co/QUf4BhJvZQ +06/14/2018,Social_workers,@ProfessorChic,RT @deray: read this. https://t.co/3unK7Yx6AE +06/14/2018,Social_workers,@ProfessorChic,"RT @statnews: AVAILABLE NOW: Runnin', STAT's award-winning documentary about the opioid epidemic and a group of childhood friends caught in…" +06/14/2018,Social_workers,@ProfessorChic,"RT @joyceyeaeunlee: Fathers forgotten when it comes to services to help them be good parents, new study finds https://t.co/GTDNTXArE7 via @…" +06/11/2018,Social_workers,@ProfessorChic,"RT @ryanjreilly: In new filing signed by acting Civil Rights Division chief John Gore, DOJ argues that University of Michigan's harassment,…" +06/11/2018,Social_workers,@ProfessorChic,Many thanks!!!! https://t.co/JECKg582Id +06/11/2018,Social_workers,@ProfessorChic,RT @IjeomaOo: I am extremely humbled to have been a part of @PRBA_ISR The connections I made were priceless. The knowledge I received was l… +06/11/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: (1/2) A part of celebrating Men’s Health Week is to honor the women who dedicate their lives to improving men’s health… +06/11/2018,Social_workers,@ProfessorChic,RT @KJonesJamtgaard: Any #science tweeps have recommendations for groups or individuals that do excellent #grant writing seminars/workshops… +06/10/2018,Social_workers,@ProfessorChic,RT @AP: The $1.1 million Aurora prize for humanitarianism goes to a lawyer in Myanmar who has been fighting for Rohingya rights for decades… +06/10/2018,Social_workers,@ProfessorChic,RT @DrMShavers: Congratulations!!! https://t.co/zVkyE1TzH4 +06/10/2018,Social_workers,@ProfessorChic,"RT @Celeste_pewter: Since I can't stop thinking about this: + +1. Trump at the G7 in Canada. +2. Obama at the G7 in Germany (2015) https://t.…" +06/10/2018,Social_workers,@ProfessorChic,So glad to have been able to support! https://t.co/5vOZ6MeN0S +06/09/2018,Social_workers,@ProfessorChic,RT @usatodayDC: Trump administration no longer will defend the Affordable Care Act in court https://t.co/iFYHhJrflj via @wwcummings @kalltu… +06/07/2018,Social_workers,@ProfessorChic,RT @cavs: HE. DID. THAT. #WhateverItTakes https://t.co/ZjiS0Gk5gh +06/06/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: Love this. Which is why every moment someone spends helping you is a gift. Be a #grateful recipient. #saythankyou http… +06/06/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: @UMJointPhD https://t.co/mNTzwBZmjr +06/04/2018,Social_workers,@ProfessorChic,"RT @TheAtlantic: On Monday, the Supreme Court ruled in favor of the baker in the 'Masterpiece Cakeshop' case. But its rationale is so narro…" +06/03/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Va. governor pardons woman convicted of disposing of stillborn fetus https://t.co/ID32FDEI5n +06/02/2018,Social_workers,@ProfessorChic,"RT @choo_ek: I write a *ton* of promotions letters and lemme say: WOMEN, YOU ARE GOING UP WAY, WAY TOO LATE." +06/02/2018,Social_workers,@ProfessorChic,RT @Editage: Your #research paper title must be effective enough to cue readers into deciding that they'd like to read your entire paper. H… +06/02/2018,Social_workers,@ProfessorChic,"RT @hormiga: Every proposal can have massive holes or shortcomings, if a reviewer chooses to find them. The trick is to make it so compelli…" +06/02/2018,Social_workers,@ProfessorChic,RT @ImpactWales: We 💚💛 concept maps to help pupils organise their thinking. How often do you use them with pupils? https://t.co/jadMxosP5M +06/02/2018,Social_workers,@ProfessorChic,"RT @THINK_PhD: “Set the parameters. You either with the pro-fessors or the amateurs.” + +*Pusha T voice* https://t.co/f5qWW7Kn9H" +06/02/2018,Social_workers,@ProfessorChic,RT @SusanShepler: A new Sierra Leone postage stamp honoring the hero Sierra Leonean doctors who lost their lives during the Ebola crisis. h… +06/02/2018,Social_workers,@ProfessorChic,RT @CharlesModlinMD: Dr. Charles Modlin discusses Kidney Transplantation & Organ Donation at the City Club of Cleveland https://t.co/eW9OSj… +06/02/2018,Social_workers,@ProfessorChic,"RT @doc_becca: I had a real moment of clarity talking to a program officer today. I realized that after six years of unfunded NIH grants, I…" +06/02/2018,Social_workers,@ProfessorChic,RT @wellreadblkgirl: “give your daughters difficult names. give your daughters names that command the full use of tongue. my name makes you… +06/02/2018,Social_workers,@ProfessorChic,"RT @CNN: When he was a kid, Richard Jenkins raised his hand in class so often bullies started calling him ""Harvard."" + +Now, after overcoming…" +06/01/2018,Social_workers,@ProfessorChic,RT @NSRiazat: Paper accepted for publication...and positive preliminary feedback on 2 educational book proposals. Academic life is going qu… +05/31/2018,Social_workers,@ProfessorChic,"RT @CNN: Roseanne Barr blamed Ambien for her racist tweets. + +Sanofi, the maker of Ambien, responded with this statement: ""While all pharmac…" +05/30/2018,Social_workers,@ProfessorChic,RT @detroitnews: The mother of a G League basketball player who died in March after collapsing on the court during a game has filed a feder… +05/30/2018,Social_workers,@ProfessorChic,RT @MikeOLoughlin: Rosaries confiscated from undocumented migrants by US border patrol agents. From a story in the @NewYorker https://t.co/… +05/30/2018,Social_workers,@ProfessorChic,"RT @USATODAY: Michigan is in the throes of the largest hepatitis A outbreak in the USA, a flareup that began in August 2016 and has killed…" +05/29/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: #mdpihealthcare New #NSALDATA article @DrMikeLindsey @ASA_SREM @SociologistRay @WatkinsResearch @DumiLM @RyonCobb @Professor… +05/29/2018,Social_workers,@ProfessorChic,RT @MsTerryMcMillan: Heart. And soul. And compassion. https://t.co/AtkkSybXuC +05/29/2018,Social_workers,@ProfessorChic,"RT @CNN: People who eat fried potatoes two or more times a week double their risk of an early death, a recent study found https://t.co/GZos…" +05/29/2018,Social_workers,@ProfessorChic,"RT @iSmashFizzle: Bury me in the ocean, with my ancestors that jumped from the ships, because they knew death was better than bondage. http…" +05/28/2018,Social_workers,@ProfessorChic,"RT @SylviaObell: My sister has decided to FINALLY watch Grey’s Anatomy... + +She’s currently watching S2 at my apartment... + +Now I gotta go…" +05/28/2018,Social_workers,@ProfessorChic,"RT @nprpolitics: On Memorial Day, Trump Honors Fallen Soldiers And Himself https://t.co/K09ws5Xt98" +05/28/2018,Social_workers,@ProfessorChic,"RT @NYTNational: The African-American origins of the holiday were later suppressed, a historian found, by white Southerners who reclaimed p…" +05/28/2018,Social_workers,@ProfessorChic,RT @aamer_rahman: I’m happy but watch as this gets used as an example of the standard people must demonstrate to ‘deserve’ citizenship http… +05/28/2018,Social_workers,@ProfessorChic,RT @NBCNews: A migrant who climbed four stories up a building to rescue a child dangling from a balcony has been offered French citizenship… +05/28/2018,Social_workers,@ProfessorChic,"RT @UMRogelCancer: Have you heard our 3Ps of Cancer podcast? Check out this discussion of cancer genetics with guest Dr. Elena Stoffel, dir…" +05/28/2018,Social_workers,@ProfessorChic,"RT @nytimes: With Sheer Will, LeBron James Leads the Cavaliers Back to the Finals https://t.co/Cu9deNCvGH" +05/28/2018,Social_workers,@ProfessorChic,"RT @CNN: During a routine traffic stop, Nebraska State Patrol found nearly 120 pounds of the drug fentanyl — enough to kill about 26 millio…" +05/28/2018,Social_workers,@ProfessorChic,"RT @babyitsmb: The last time Lebron wasn’t in the finals: +1. Instagram wasn’t invented +2. Drakes first album didn’t drop yet +3. iPads were…" +05/28/2018,Social_workers,@ProfessorChic,"RT @CBSSports: HE'S DONE IT AGAIN! + +LeBron James is heading back to the NBA Finals for the EIGHTH straight season. https://t.co/6IDmJaR6mu" +05/28/2018,Social_workers,@ProfessorChic,RT @NBCNews: LeBron James leads the Cleveland Cavaliers to the NBA Finals for the fourth straight year. It will be James’ eighth straight f… +05/28/2018,Social_workers,@ProfessorChic,RT @GeeDee215: LeBron. Raymone. James. +05/28/2018,Social_workers,@ProfessorChic,RT @THINK_PhD: LeBron is unreal. +05/28/2018,Social_workers,@ProfessorChic,"RT @loumoore12: January, February, March, April, May, LeBron." +05/28/2018,Social_workers,@ProfessorChic,"RT @cavs: * @Drake sigh * +The nerve, the audacity +#StriveForGreatness https://t.co/CsSVyWwoKl" +05/27/2018,Social_workers,@ProfessorChic,RT @lisabdixon: Mobile Health (mHealth) Versus Clinic-Based Group Intervention for People With Serious Mental Illness: A Randomized Control… +05/27/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Opinion: 911 dispatchers sit between police and people of color. They need better training. https://t.co/ygHXX9HKC0 +05/26/2018,Social_workers,@ProfessorChic,"RT @USATODAY: According to estimates, Starbucks' decision to initiate the racial-bias training will cost $12M in lost profit as it closes t…" +05/26/2018,Social_workers,@ProfessorChic,RT @JLin7: Lebron and Drake being Lebron and Drake #recapofthenight +05/26/2018,Social_workers,@ProfessorChic,"RT @YourManDevine: LeBron's better at this than most of us are at, like, breathing" +05/26/2018,Social_workers,@ProfessorChic,RT @SabrinaSiddiqui: 👑 James. +05/26/2018,Social_workers,@ProfessorChic,RT @AcademicsSay: The road to academic guilt is paved with manuscripts in progress. +05/26/2018,Social_workers,@ProfessorChic,RT @nytimes: The president of the University of Southern California agreed to step down. He was blamed for a scandal over a gynecologist ac… +05/25/2018,Social_workers,@ProfessorChic,RT @dn_nation_world: Harvey Weinstein turns himself in to face sex crime charges. https://t.co/ewXdEesOTq https://t.co/SOA7dDnnlf +05/23/2018,Social_workers,@ProfessorChic,RT @GuardianUS: Obesity now linked to 12 different cancers https://t.co/noCXJG2Jso +05/23/2018,Social_workers,@ProfessorChic,RT @APCentralRegion: Paid coaches and trainers would not be required by law to report suspected child abuse to the authorities under a wate… +05/23/2018,Social_workers,@ProfessorChic,"RT @nytimes: Milwaukee is bracing for the release of a video showing Sterling Brown, a player for the Bucks, being arrested for a parking v…" +05/23/2018,Social_workers,@ProfessorChic,"RT @TheMCUAAAR: Spring Caregiver Conference | Alzheimer's Association - Ann Arbor +June 15, 2018 at Washtenaw Community College +*Jamie Mitch…" +05/23/2018,Social_workers,@ProfessorChic,RT @urbaninstitute: The preterm birth rate for white women was 9.06% in 2017. It was 13.92% for black women and 9.61% for Hispanic women. (… +05/23/2018,Social_workers,@ProfessorChic,RT @GuardianUS: Roger Federer: Serena Williams may well be best overall tennis player ever https://t.co/vUDLFefxBF +05/23/2018,Social_workers,@ProfessorChic,RT @annarbornews: ICE-detained Mexican journalist with UMich fellowship wins new hearing https://t.co/AwXfcHAS3G +05/23/2018,Social_workers,@ProfessorChic,"RT @freep: Credit freezes will be free, thanks to new banking bill and Equifax https://t.co/N9E4QKtwDp" +05/23/2018,Social_workers,@ProfessorChic,RT @nytimes: Breaking News: NFL owners agreed to a new national anthem policy: Teams will be fined if players kneel on the field or sidelin… +05/22/2018,Social_workers,@ProfessorChic,RT @freep: Woman says she delivered her baby in jail cell after jailers said she was faking labor https://t.co/Ww9nDhwKAK +05/22/2018,Social_workers,@ProfessorChic,RT @axios: Michigan has abandoned an effort to exempt some residents from proposed work requirements in the state's Medicaid program. It wo… +05/22/2018,Social_workers,@ProfessorChic,"RT @UM_IHPI: THURSDAY: Lynda Zeller of @MichiganHHS will give our May seminar, with an update & dialogue on #OpioidEpidemic and #mentalheal…" +05/21/2018,Social_workers,@ProfessorChic,RT @UM_MICHR: Up next in the Frontier Seminar Series: Learn about healthcare policy & innovation at 4 p.m. on June 13 in the Ford Auditoriu… +05/21/2018,Social_workers,@ProfessorChic,RT @nprscience: More moms in the US are sharing their beds with their babies—even as doctors strongly oppose the practice. But how risky is… +05/21/2018,Social_workers,@ProfessorChic,"RT @NewYorker: Alain Locke helped launch black modernism, but he was spurned by the artists he hoped to turn into lovers: https://t.co/oVp6…" +05/21/2018,Social_workers,@ProfessorChic,RT @monicafcox: Don't allow someone else's insecurities to become your insecurities. +05/21/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Watching but not treating cancer can be hard. Sometimes it’s the right approach. https://t.co/xoHSlXKZvq +05/20/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Starbucks: You don’t have to buy coffee to sit in our cafes or use our restrooms https://t.co/E8Gtjzu6iP +05/20/2018,Social_workers,@ProfessorChic,"RT @SabrinaSiddiqui: “Here was Meghan Markle, this beautiful bride, this self-described feminist. This divorced biracial woman, 36 years ol…" +05/20/2018,Social_workers,@ProfessorChic,"RT @adigoesswimming: My teenage nephew told me he asked a girl out and she turned him down. I said, ""You know what to do now, right?"" He sa…" +05/20/2018,Social_workers,@ProfessorChic,RT @Forbes: Meet the choreographer behind Childish Gambino's 'This Is America': https://t.co/j5U7T93pQT https://t.co/EdKwJPjTVK +05/20/2018,Social_workers,@ProfessorChic,RT @APEntertainment: BREAKING THEIR SILENCE: More stars speak out about mental health struggles as stigma around it declines https://t.co/i… +05/20/2018,Social_workers,@ProfessorChic,"RT @CNN: When doctors told him his blood has unique, disease-fighting antibodies, he started donating plasma every week. For 60 years. He’s…" +05/19/2018,Social_workers,@ProfessorChic,RT @nycjayjay: It was inevitable. https://t.co/tWAPgF4HaN +05/19/2018,Social_workers,@ProfessorChic,"RT @Gistoffreedom: Honoring Meghan’s Mom, Doria who sat wistfully alone, w/ grace, dignity & a deep love for the child she raised.THAT, is…" +05/19/2018,Social_workers,@ProfessorChic,RT @TheYBF: Thread👇🏾. A modern dissertation on black survival. https://t.co/ewLUVS3QS0 +05/19/2018,Social_workers,@ProfessorChic,"RT @ananavarro: Prince Harry and Meghan Markle officialize their love today. It has remarkable significance. In the US, it wasn’t until 196…" +05/19/2018,Social_workers,@ProfessorChic,RT @deray: the whole family is gifted. https://t.co/oWdVuqwl8E +05/19/2018,Social_workers,@ProfessorChic,"RT @WGME: Harry and Meghan, serenaded to the tune of ""Stand By Me."" https://t.co/7pUMBztYxJ #royalwedding @WGME https://t.co/RwCAfVGbOX" +05/19/2018,Social_workers,@ProfessorChic,"RT @BlackGirlNerds: White people: When is he going to stop talking? +Black people: He's just getting warmed up. *taking off shoes* *sneak e…" +05/19/2018,Social_workers,@ProfessorChic,RT @mRiah: These royals don’t know nothing about that good old 3 closings before the final end!! +05/19/2018,Social_workers,@ProfessorChic,RT @thedailybeast: The pastor giving the sermon right now was also the first black leader of the U.S. Episcopal Church #RoyalWedding https:… +05/19/2018,Social_workers,@ProfessorChic,RT @AlyssaMastro44: yes!!! https://t.co/bH6SPWdOyY +05/19/2018,Social_workers,@ProfessorChic,RT @TallGlassofStyL: “Take ya time pastor” https://t.co/jjfQ3YR2Er +05/19/2018,Social_workers,@ProfessorChic,"RT @CNN: American Bishop Michael Curry is delivering his address at the #royalwedding, which starts and ends with quotes from Martin Luther…" +05/19/2018,Social_workers,@ProfessorChic,RT @KatyTurNBC: The Most Reverand Michael Curry is everything right now. +05/18/2018,Social_workers,@ProfessorChic,RT @bniceloco: Michael Jackson really lied to Oprah and said he was rusty then hit the moonwalk like it was nothing 🐐 https://t.co/H3EHthUL… +05/18/2018,Social_workers,@ProfessorChic,RT @SeanMcElwee: Teen Vogue is doing a series of reported pieces on historical events that are ignored by history books. First piece explor… +05/18/2018,Social_workers,@ProfessorChic,RT @RawStory: Trump personally ordered the postmaster general to double Amazon’s shipping rates: report https://t.co/e9Z25F5F2t +05/18/2018,Social_workers,@ProfessorChic,"RT @AdviceToWriters: #Writing saved me from the sin and inconvenience of violence. +ALICE WALKER + +#amwriting #fiction https://t.co/BuvXFuc1wN" +05/18/2018,Social_workers,@ProfessorChic,"RT @NIMHD: Feature Story: For rural people with chronic diseases, poverty and depression go hand in hand. https://t.co/P1CzXeWXov #MentalHe…" +05/18/2018,Social_workers,@ProfessorChic,"RT @CDC_Cancer: Women: Overwhelmed by too much health advice? Get our ""cheat sheet"" for #cancer screenings and good health! https://t.co/nt…" +05/18/2018,Social_workers,@ProfessorChic,"RT @DeanObeidallah: This Is even more relevant today after latest school shooting: Childish Gambino's ""This Is America"" https://t.co/Ryvj3r…" +05/18/2018,Social_workers,@ProfessorChic,"RT @davidaxelrod: My amazing wife, Susan, has waged a long, heroic battle to @CureEpilepsy. Today I watched her receive an honorary +docto…" +05/18/2018,Social_workers,@ProfessorChic,RT @NPR: The Trump administration is reviving a rule that would deny federal family planning funds to organizations that provide abortion r… +05/18/2018,Social_workers,@ProfessorChic,RT @NIHDirector: See video of my conversation with @BarbraStreisand on a Facebook Live cohosted by @NIH and @WHA for a talk on women’s hear… +05/18/2018,Social_workers,@ProfessorChic,RT @NIH_LRP: Join a Facebook Live today at 2:00 pm ET with @WHA co-founder @BarbraStreisand & @NIHDirector Dr. Francis Collins today as th… +05/18/2018,Social_workers,@ProfessorChic,RT @RVAwonk: Trump is reportedly planning to announce tomorrow that he's cutting federal funding to any health agency that even provides in… +05/18/2018,Social_workers,@ProfessorChic,RT @TheAtlantic: Some black parents see homeschooling as a way of protecting their kids from the racial disparities of the American educati… +05/16/2018,Social_workers,@ProfessorChic,RT @loumoore12: A student called me Lou today. https://t.co/KOw8JQSUEu +05/16/2018,Social_workers,@ProfessorChic,RT @chrislhayes: The movie version of this entire thing *has* to be called Basta. +05/16/2018,Social_workers,@ProfessorChic,RT @nprpolitics: Senate Approves Overturning FCC's Net Neutrality Repeal https://t.co/1NoC8VXNqp +05/16/2018,Social_workers,@ProfessorChic,RT @Gistoffreedom: Historic Tuskegee Institute | History of Nursing at Tuskegee | Tuskegee University https://t.co/ubK8La61ox +05/16/2018,Social_workers,@ProfessorChic,"RT @MichaelSkolnik: When Paulette Jordan wins in November, she will become the first Native American Governor in US history! + +We. Can. Do.…" +05/15/2018,Social_workers,@ProfessorChic,RT @KQED: Can Schools Change Measures of Success by Focusing on Meaningful Work Instead of Test Scores? https://t.co/rKDpgibcT8 https://t.c… +05/13/2018,Social_workers,@ProfessorChic,RT @GlennThrush: I can't just keep throwing coffee at every problem. +05/13/2018,Social_workers,@ProfessorChic,"RT @BritniDWrites: Add ""performing community service while Black"" to the list of things that make you suspicious. + +This happened to my #SG…" +05/13/2018,Social_workers,@ProfessorChic,"RT @SenGillibrand: As a working mom and a lawmaker, Mother's Day for me raises the question of whether we as a country value women every da…" +05/13/2018,Social_workers,@ProfessorChic,"RT @AcademicBatgirl: Happy Mother’s Day to all of the academic moms working hard to keep it real at home and on campus, and to women who do…" +05/13/2018,Social_workers,@ProfessorChic,"RT @ProfJeffries: 54 years ago #FannieLouHamer asked the question, “Is this America?” + +54 years later #ChildishGambino reminds us that the…" +05/13/2018,Social_workers,@ProfessorChic,"RT @AdviceToWriters: Inspiration exists, but it has to find us working. +PABLO PICASSO + +#amwriting #creativity #writing https://t.co/miU8zo4…" +05/12/2018,Social_workers,@ProfessorChic,RT @UConnHDI: The Robert Wood Johnson Foundation has appointed Dr. Wizdom Powell to the National Advisory Committee for their Interdiscipli… +05/12/2018,Social_workers,@ProfessorChic,"RT @meredithdclark: *jumps up with a Baptist shout* + +(even tho I'm not Baptist) https://t.co/apQdtzDkQJ" +05/12/2018,Social_workers,@ProfessorChic,RT @NkemkaA: No is sooo powerful in facilitating self care. What can you say no too today? https://t.co/h9D64PYFme +05/10/2018,Social_workers,@ProfessorChic,"RT @PennLDI: Next Tuesday: Don't miss Dr. Renuka Tipirneni's research seminar on the effects of #Medicaid expansion on access to care, heal…" +05/09/2018,Social_workers,@ProfessorChic,RT @SPSMM_D51: This is the third installment of interviews highlighting the work of psychologists whose research and practice examines mino… +05/09/2018,Social_workers,@ProfessorChic,RT @thestevefund: Please watch this 45-second video in which Dr. Alfiee Breland-Noble @dralfiee Senior Scientific Advisor to the Steve Fund… +05/09/2018,Social_workers,@ProfessorChic,RT @AP: President Trump suggests that journalists have their credentials revoked for reporting negative news about him. https://t.co/w2zQuf… +05/09/2018,Social_workers,@ProfessorChic,RT @NPR: The CDC is still advising people not to eat romaine lettuce unless they know where it was grown. https://t.co/1IDcDr5Pmo +05/07/2018,Social_workers,@ProfessorChic,RT @GQMagazine: Buy the @Jcrew Nike that always sells out—while you still can https://t.co/ptgp5MN78p https://t.co/9qzMPUCgcz +05/07/2018,Social_workers,@ProfessorChic,RT @insidehighered: The University of Florida is apologizing for the way some black students were treated at one of the graduation ceremoni… +05/07/2018,Social_workers,@ProfessorChic,"RT @thecrisismag: ""In his visit with West, the rapper T.I. was stunned to find that West, despite his endorsement of Trump, had never heard…" +05/07/2018,Social_workers,@ProfessorChic,RT @THEBSU: If you're looking for a class to take here's a cool one https://t.co/qwi2WhQ6gV +05/07/2018,Social_workers,@ProfessorChic,"RT @TheUndefeated: At Morehouse, Starbucks executives seem unable to understand the burden of institutional racism. +https://t.co/wwqdXX04V2" +05/07/2018,Social_workers,@ProfessorChic,RT @nprpolitics: It's no longer out of the realm of possibility that the Senate could change hands and fall under Democratic control after… +05/07/2018,Social_workers,@ProfessorChic,RT @fivefifths: I can see Twitter is going to be bad again today +05/07/2018,Social_workers,@ProfessorChic,"RT @marinakoren: Kanye West is championing ""a white freedom, freedom without consequence, freedom without criticism, freedom to be proud an…" +05/07/2018,Social_workers,@ProfessorChic,"RT @Sifill_LDF: And so, it is here. Brilliant, self-revealing, devastating. Ta-Nehisi Coates on the fall of Kanye. Take the time to read it…" +05/07/2018,Social_workers,@ProfessorChic,"RT @MichaelSkolnik: This is one the greatest pieces of writing I have ever read. Please read it. And read the whole thing. + +Thank you Ta-N…" +05/07/2018,Social_workers,@ProfessorChic,"RT @camerondare: Childish Gambino - This is America + +Released 22 hours ago. 10M views. #1 Trending on YouTube. + +https://t.co/FnYDDfqUBp" +05/07/2018,Social_workers,@ProfessorChic,RT @Wizdomisms: The outrage over #ThisIsAmerica & its depiction of gun violence & the lack of equivalent outrage over actual gun violence t… +05/05/2018,Social_workers,@ProfessorChic,RT @ProfessorTD: 'Cool Blond Asians' Are Giving Me an Identity Crisis says #multiracial #biracial author https://t.co/PJ293hM1dl @get_lipst… +05/05/2018,Social_workers,@ProfessorChic,RT @BlackHealthNews: The Health of Black America: Gains in health equality by African-Americans in the U.S. have taken a slight step backwa… +05/05/2018,Social_workers,@ProfessorChic,RT @kesslerbs: Problematic is the “bless your heart” of academia. +05/05/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: Karen Tabb @ProfessorTD former @PRBA_ISR @TheMCUAAAR summer program participant. @ProfMouzon @WatkinsResearch @ProfessorChic… +05/02/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Kanye West called slavery a choice. TMZ’s Van Lathan gave a forceful — and thoughtful — rebuke. https://t.co/Dwa4OSROs4 +05/02/2018,Social_workers,@ProfessorChic,RT @anthonyocampo: Adding to my vision board ✅ https://t.co/9H16NyjG4b +05/02/2018,Social_workers,@ProfessorChic,RT @TheUndefeated: Drake’s fave Raptors let LeBron’s Cavs steal Game 1: 113-112. Maybe it’s all just “God’s Plan”? https://t.co/PT4Uehh17T +07/01/2018,Social_workers,@DrKumarVishwas,"'वो दिल-नवाज़ है लेकिन नज़र-शनास नहीं +मिरा इलाज मिरे चारागर के पास नहीं' +(नासिर काज़मी) +मेरी किस्मत अच्छी है कि मे… https://t.co/wulsEDgA8x" +07/01/2018,Social_workers,@DrKumarVishwas,"अपि स्वर्णमयी लंका न में लक्ष्मण रोचते 🙏 +सुप्रभात भारत ❤️🇮🇳 https://t.co/d0DsfBQ22V" +06/30/2018,Social_workers,@DrKumarVishwas,Applause to this real “Down to Earth” singer and such a nice gesture of u @Shankar_Live 👍🇮🇳 Mile Sur Mera Tumahra❤️ https://t.co/OvAzMDwVtc +06/30/2018,Social_workers,@DrKumarVishwas,@ROHITJINDAL1421 श्री तुफैल चतुर्वेदी 👍 +06/30/2018,Social_workers,@DrKumarVishwas,"बुलंदी का नशा सम्तों का जादू तोड़ देती है , +हवा उड़ते हुए पंछी के बाज़ू तोड़ देती है , +सियासी भेड़ियों थोड़ी बहुत… https://t.co/2jut5HxvSJ" +06/30/2018,Social_workers,@DrKumarVishwas,मंदसौर हमारे लिए सोच-शर्म और कठोर क़दम उठाने का ज़रूरी वक़्त है ! समाज-सरकार-न्यायपालिका सबको अब हर हाल में जागना… https://t.co/ExJyeemGQ2 +06/29/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: वक़्त रहते ही देख लो वरना , +ख़्वाब आँखें बदल भी लेते हैं..!😍 https://t.co/o3tf2YjkQc" +06/29/2018,Social_workers,@DrKumarVishwas,"वक़्त रहते ही देख लो वरना , +ख़्वाब आँखें बदल भी लेते हैं..!😍 https://t.co/o3tf2YjkQc" +06/29/2018,Social_workers,@DrKumarVishwas,संगीत और ज़िंदगी दोनों में बेलौस और जुनूनी धुन जीने वाले मनहर दोस्त @VishalDadlani को उनके जन्मदिन पर उनके कम्पोजिश… https://t.co/F6zopRJYoT +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: For once and for ever... Nation first! 🇮🇳 +""हम शब्द-वंश के हरकारे,सच कहना अपनी परंपरा, +हम उस कबीर की पीढ़ी जो बाबर-अकबर…" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: आतंक से लड रही सेना के ख़िलाफ़ राजनीति नहीं करने दूँगा यह सुनकर,आत्मा का सौदा कर लेने वाले 11 नवपतित गिद्धों को जमा कर…" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: 3 में से जिस 1 मुद्दे पर देश की सेना के पक्ष में होने पर मुझे “तथाकथित राजनैतिक नुक़सान” पहुचायाँ गया था,आज उसी शौर्यगा…" +06/28/2018,Social_workers,@DrKumarVishwas,"For once and for ever... Nation first! 🇮🇳 +""हम शब्द-वंश के हरकारे,सच कहना अपनी परंपरा, +हम उस कबीर की पीढ़ी जो बाबर-… https://t.co/kUHSaEpAOE" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @RathoreAradhana: ""अंधकार चाहे भारी हो या समंदर पार हो,सदा उजाला विदित हुआ है अगर सत्य आधार हो..!"" +Salute to u for ur stand 🙏🏻🇮🇳❤️ https…" +06/28/2018,Social_workers,@DrKumarVishwas,"Viral max and forward to this video to every Indian who being unpolitical only loves his/her country ❤️🙏🇮🇳 +https://t.co/ucQAD1vRg2" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: हम भारत के लोग! +We, The Nation! +Watch, Listen and Share if you feel for Nation! 🇮🇳🙏 +https://t.co/xKqFQuVB5j" +06/28/2018,Social_workers,@DrKumarVishwas,Must watch again #SurgicalStrike 🇮🇳🙏 https://t.co/AJTZFZf5EK +06/28/2018,Social_workers,@DrKumarVishwas,"आतंक से लड रही सेना के ख़िलाफ़ राजनीति नहीं करने दूँगा यह सुनकर,आत्मा का सौदा कर लेने वाले 11 नवपतित गिद्धों को जमा… https://t.co/ff7Z2lXrjc" +06/28/2018,Social_workers,@DrKumarVishwas,"3 में से जिस 1 मुद्दे पर देश की सेना के पक्ष में होने पर मुझे “तथाकथित राजनैतिक नुक़सान” पहुचायाँ गया था,आज उसी शौ… https://t.co/ykSmyuAZAB" +06/27/2018,Social_workers,@DrKumarVishwas,हम हैं देसी ❤️🇮🇳👍 https://t.co/75d1fWCBCc +06/27/2018,Social_workers,@DrKumarVishwas,@turabnaqvi @Rekhta @rahatindori अल्हमदुलिल्लाह ! लेकिन जॉन बस एक ही हुआ ❤️👍😊 +06/27/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “जो धरती से अम्बर जोड़े उसका नाम मोहब्बत है , +जो शीशे से पत्थर तोड़े उसका नाम मोहब्बत है , +क़तरा क़तरा सागर तक तो जाती…" +06/27/2018,Social_workers,@DrKumarVishwas,"रोज़ मौसम की शरारत झेलता कब तक , +मैंने खुद में रच लिए कुछ ख़ुशनुमा मंज़र..! https://t.co/Av8sf5ikYN" +06/27/2018,Social_workers,@DrKumarVishwas,"RT @jaya_kishoriji: गीत काव्य की शायद सबसे पुरानी विधा है; गीत मनुष्य मात्र की भाषा है। +गीत प्रत्येक युग में मनुष्य के साथी रहे हैं, भविष्य…" +06/26/2018,Social_workers,@DrKumarVishwas,RT @anshuman1tiwari: अनोखा पुनीत शब्द विन्यास ! नवगीत के पुराने दिन याद आ गए . साधुवाद https://t.co/PO6twvZo2E +06/26/2018,Social_workers,@DrKumarVishwas,"गीत को ख़ारिज करने वालों के लिए सूचना विस्मयकारी हो सकती है कि एक शुद्ध गीत को 24 घंटे में 10,00,00 से ज़्यादा गीत-… https://t.co/SOogRMhIXY" +06/26/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: ...तो आज, आप दोस्तों की प्रतीक्षा के लगभग दस वर्षों के बाद, मेरी आत्मकथा का एक हिस्सा, यह गीत, आप सब के लिए, क्यूँकि उस…" +06/26/2018,Social_workers,@DrKumarVishwas,@rinkkku https://t.co/CGoPNuYGKN +06/26/2018,Social_workers,@DrKumarVishwas,@deeptibharadwaj जीती रहो भतीजी ❤️👍😜 +06/26/2018,Social_workers,@DrKumarVishwas,"अग़ल-बग़ल स्वर्णाभ शिखर थे.... +बाबा नागार्जुन की कविता “बादल को धिरते देखा है” में ये पंक्ति आजतक बस पढ़ी/गाई थी !… https://t.co/K0B10hstXb" +06/25/2018,Social_workers,@DrKumarVishwas,"...तो आज, आप दोस्तों की प्रतीक्षा के लगभग दस वर्षों के बाद, मेरी आत्मकथा का एक हिस्सा, यह गीत, आप सब के लिए, क्यूँ… https://t.co/5jjrGfwCGW" +06/25/2018,Social_workers,@DrKumarVishwas,"...आप सब के द्वारा हज़ारों बार पूछे गए लाखों प्रश्नों का बेहद असहज सा सहज उत्तर भी इसी गीत में है, और साथ ही वे कई… https://t.co/pRlJGIpQZd" +06/25/2018,Social_workers,@DrKumarVishwas,...उजाड़ मन ने अपलक शून्य को निहारते हुए रोती आत्मा के साथ उसी रात यह गीत रचा और उसी रात ने आगे सैकड़ों-हज़ारों ऐसी… https://t.co/q4EXaGf2nJ +06/25/2018,Social_workers,@DrKumarVishwas,"...जबलपुर से अयोध्या की ट्रेन यात्रा थी, ठीक-ठीक याद है “चित्रकूट-एक्सप्रेस” से ! देश के वरेण्य गीतकार स्व डॉ उर्मि… https://t.co/GvEtrJXJ4B" +06/25/2018,Social_workers,@DrKumarVishwas,...जब उन हाथों में मेरे छंदों के वर्तुल कंगनों की बजाय किसी और के नाम की चूड़ियाँ डाली जा रही थीं...और उस माँग में… https://t.co/QgIk9CqDae +06/25/2018,Social_workers,@DrKumarVishwas,"आज आपके साथ एक गीत शेयर कर रहा हूँ। बरसों-बरस पहले, यह गीत ठीक उस रात लिखा गया, जब उन पैरों की उंगलियों में वो बिछि… https://t.co/8GXUyGu2l7" +06/25/2018,Social_workers,@DrKumarVishwas,"आपातकाल 🌑 #Emergency + +https://t.co/MwXke48G0o" +06/25/2018,Social_workers,@DrKumarVishwas,"Nagarjuna on #Emergency @anantvijay @maliniawasthi @MANJULtoons @iawoolford @BajpayeeManoj @YRDeshmukh +https://t.co/MwXke48G0o" +06/25/2018,Social_workers,@DrKumarVishwas,"@Kalpana46065453 @swroopraj320 @KapilMishra_IND @FN7zVYfkOF7mi19 @narendramodi @chhagan819 Enjoy 🌦🌧⛈ +https://t.co/vflB7r71k4" +06/25/2018,Social_workers,@DrKumarVishwas,"दैनिक भास्कर में आज महाभारत 2019 : 'बीच धार में ही पसर गई पीडीपी' 🙏😁😁 +https://t.co/VSeJX7h1Z0" +06/24/2018,Social_workers,@DrKumarVishwas,"''जिसको दिन-रात देखते थे हम , +उसने इक बार भी नहीं देखा , +इश्क़ इतने जतन से करते रहे , +हमने इतवार भी नहीं देखा...!”😍… https://t.co/Emec0zVGeD" +06/24/2018,Social_workers,@DrKumarVishwas,@gyan_ind जीते रहिए 🎂🌹 +06/23/2018,Social_workers,@DrKumarVishwas,"मा०मंत्री @HardeepSPuri जी,आंवटियों की समस्या के प्रति आपके श्रम का सम्मान करते हुए कहूगाँ कि आपका ये उत्तर नितांत… https://t.co/9CYq6N6JDf" +06/22/2018,Social_workers,@DrKumarVishwas,"पिता जिस के रक्त ने उज्ज्वल किया कुल-वंश-माथा ❤️ +❤️🙏🇮🇳🇮🇳🇮🇳 लव यू अब्बाजान 🙏 https://t.co/ezDRkOVl8p" +06/22/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “विदुर का भीष्म का पद अश्रु-प्रक्षालन नहीं भूला, +कठिन-व्रत द्रोण-इंगित पथ-तपश्चालन नहीं भूला , +कुटिल लाक्षागृहों के फे…" +06/22/2018,Social_workers,@DrKumarVishwas,"किरदार हो ऐसा कि फसाना नहीं भूले, +ज़िंदा रहो ऐसे कि ज़माना नहीं भूले !👍 मैक्यावैली,गैलीलियो,लिनियार्डो द विंची और… https://t.co/FiCDcxHKcl" +06/20/2018,Social_workers,@DrKumarVishwas,@bahraichpolice Thanks 🙏 +06/20/2018,Social_workers,@DrKumarVishwas,"स्व मुश्ताक़ अहमद युसूफ़ी की लिखी उत्कृष्ट हास्य-व्यंग्य की किताबें 'आब-ए-ग़ुम', 'ख़ाकम-ब-दहन' और 'ज़र-गुज़िशत' हि… https://t.co/FB87nOGm2x" +06/20/2018,Social_workers,@DrKumarVishwas,उर्दू के संभवतः सबसे बड़े व्यंग्यकार मुश्ताक़ अहमद युसूफ़ी जी नहीं रहे। जयपुर में पैदा हुए युसूफ़ी साहब यूँ तो आज़ा… https://t.co/afu05x06zJ +06/20/2018,Social_workers,@DrKumarVishwas,"आषाढ़ लग गया है...❤️ मादक त्रयी कालिदास-मेघदूत, बाबा नागार्जुन का “भीषोण भालो” गठबंधन सुनिए 😍 @rahuldev2… https://t.co/YzPnTrgcP5" +06/20/2018,Social_workers,@DrKumarVishwas,@Uppolice @NCWIndia @myogiadityanath @vinodkapri @DrSarvapriya @bahraichpolice @digdevipatan @adgzonegkr आभार ! आशा… https://t.co/IzNIGPMQue +06/20/2018,Social_workers,@DrKumarVishwas,@ChetanSanghi @NCWIndia @Uppolice @myogiadityanath @vinodkapri @DrSarvapriya शुक्रिया 🙏🇮🇳 +06/20/2018,Social_workers,@DrKumarVishwas,"“आज भी आदम की बेटी हंटरों की जद में है, +हर गिलहरी के बदन पर धारियाँ होंगीं ज़रूर” +बेहद दुखद लेकिन ये सब कब तक? आख़ि… https://t.co/K722xlLACQ" +06/19/2018,Social_workers,@DrKumarVishwas,"RT @EvrydayQuote: Distance yourself from people who: + +-Lie to you +-Disrespect you +-Use you +-Put you down" +06/19/2018,Social_workers,@DrKumarVishwas,"ये मसअला दिल का है, +हल कर दे इसे मौला , +ये दर्द ए मुहब्बत भी , +“कश्मीर” न हो जाए..!🙏😳 +(अना देहलवी)" +06/19/2018,Social_workers,@DrKumarVishwas,❤️❤️❤️❤️🙏🇮🇳🇮🇳 https://t.co/tCoMG4yjmi +06/18/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: अपनी हर ग़ैर-मुनासिब सी जहालत के लिए, +बारहा तू जो ये बातों के सिफ़र तानता है , +छल-फरेबों में ढके सच के मसीहा मेरे , +हम…" +06/18/2018,Social_workers,@DrKumarVishwas,"RT @manakgupta: “धर्म निरपेक्षता एक मफलर की तरह है, जो चुनावी-मौसम देखकर कभी गले पड़ जाता है, कभी सोफ़े पर पसर जाता है, सवाल पूछने पर मुंह…" +06/17/2018,Social_workers,@DrKumarVishwas,झाँसी की सिंहनी माँ लक्ष्मीबाई आज ही के दिन* अंग्रेज़ी साम्राज्यवाद से लड़ते हुए वीरगति को प्राप्त हुई थीं। स्वातं… https://t.co/hUSwsFkrDa +06/17/2018,Social_workers,@DrKumarVishwas,RT @_AnkitaRana: Dr. kumar Vishwas recites ' Khub ladi mardani wo to Jhansi Wali Rani thi' penned by late #Subhadra_Kumari_Chauhan in a #kv… +06/17/2018,Social_workers,@DrKumarVishwas,"अपनी हर ग़ैर-मुनासिब सी जहालत के लिए, +बारहा तू जो ये बातों के सिफ़र तानता है , +छल-फरेबों में ढके सच के मसीहा मेरे ,… https://t.co/1yeEd1x30P" +06/17/2018,Social_workers,@DrKumarVishwas,इंटरनेट कहता है कि आज 'फ़ादर्स डे' है। साहित्य भाव रखने वाली हमारी सभ्यता किसी अन्य सभ्यता से आई हुई परंपरा को वर्… https://t.co/IAP90z1rnj +06/16/2018,Social_workers,@DrKumarVishwas,Well said @MEAIndia 🇮🇳👍 https://t.co/wDznYDSXAM +06/16/2018,Social_workers,@DrKumarVishwas,"अहा, भारतीय स्वातंत्रय चेतना की अग्निरेखा ! इस पुण्यभूमि में स्थित महाराणा के जन्म का अमृत-कक्ष ,शक्ति मद में चूर ह… https://t.co/t9bOUryp6U" +06/16/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: تری دُنیا تری اُمید تجھے مل جاے +چاند اس بار تری عید تجھے مل جاے +جس کی یادوں میں چراغوں سا جلا ھے شب بھر +اُس سحر - رخ کی…" +06/16/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: ""तेरी दुनिया, तेरी उम्मीद तुझे मिल जाए + चाँद इस बार तेरी ईद तुझे मिल जाए + जिसकी यादों में चिराग़ों सा जला है शब-भर + उस…" +06/15/2018,Social_workers,@DrKumarVishwas,"تری دُنیا تری اُمید تجھے مل جاے +چاند اس بار تری عید تجھے مل جاے +جس کی یادوں میں چراغوں سا جلا ھے شب بھر +اُس سحر - ر… https://t.co/wTtqRHUnue" +06/15/2018,Social_workers,@DrKumarVishwas,"""तेरी दुनिया, तेरी उम्मीद तुझे मिल जाए + चाँद इस बार तेरी ईद तुझे मिल जाए + जिसकी यादों में चिराग़ों सा जला है शब-भर… https://t.co/dZncctcVW5" +06/15/2018,Social_workers,@DrKumarVishwas,"उन्हें अपनी दुकान लुटने का डर है, +यहाँ साँस अपनी ही घुटने का डर है 😢👎🏿 https://t.co/rX6VJcsu2u" +06/15/2018,Social_workers,@DrKumarVishwas,"भ्रष्टाचार-विरोधी आंदोलन के जनक, समर्पित सामाजिक कार्यकर्ता और हमारी आंदोलन-धर्मिता के प्रतीक पुरूष श्री अन्ना हज़ा… https://t.co/BzLfOY5S8f" +06/15/2018,Social_workers,@DrKumarVishwas,RT @BloodDonorsIn: #Lucknow Need #Blood O-ve for New born baby at Era Med College. Call 9598312559 via @mohdfurquanLko cc @lucknowpolice @u… +06/15/2018,Social_workers,@DrKumarVishwas,"अपने-अपने दल में,अपनी सत्ता-लोलुपता, अपने निजी बौनेपन का असुरक्षा-बोध, आत्ममुग्धता और सांप्रदायिक-वंशवादी राजनीति… https://t.co/QP2V19MMDA" +06/15/2018,Social_workers,@DrKumarVishwas,@KAVIDED जीवेम: शरद: शतम् 🎂👍🌹 +06/14/2018,Social_workers,@DrKumarVishwas,भगवान पूरे विश्व में गूँजे हमारी भारती....❤️🇮🇳🙏 https://t.co/6Icg6WpDM1 +06/14/2018,Social_workers,@DrKumarVishwas,"“जो धरती से अम्बर जोड़े उसका नाम मोहब्बत है , +जो शीशे से पत्थर तोड़े उसका नाम मोहब्बत है , +क़तरा क़तरा सागर तक तो… https://t.co/CsRuiEJ2S1" +06/13/2018,Social_workers,@DrKumarVishwas,"No,never ! I m not even a spade of Atal Ji’s charisma ! That time was different but good, his friends were good, hi… https://t.co/mtCkssd6tU" +06/12/2018,Social_workers,@DrKumarVishwas,"बाक़ी तो सब है इस तमाशे में , +सिर्फ़ ग़ायब हैं कथ्य की बातें ! +क्या ग़ज़ब दौर ए बेहयाई है , +झूठ के मुँह से सत्य की बातें ?😳🤣🤣👎🏿" +06/12/2018,Social_workers,@DrKumarVishwas,"तुम सब पहले “पकौड़ा-शिकंजी-आंदोलन” जो भी बनाते थे वो तो पता नहीं, पर अब तुम सब मिलकर इस देश के भोले-भाले लोगों का… https://t.co/g0Q4xOuB70" +06/11/2018,Social_workers,@DrKumarVishwas,शतम् विहाय भोक्तव्यम् ❤️ अलविदा बैंकाक 🙏 https://t.co/i7jNQ3Gult +06/11/2018,Social_workers,@DrKumarVishwas,"RT @manakgupta: भाई हो बिछुड़े हुए, भाई रहो, +भीख की ऐंठ से मिलेगा क्या? +चांद तक तुम हमारे साथ चलो, +फ़क़त घुसपैठ से मिलेगा क्या? + +‘महाकवि’…" +06/11/2018,Social_workers,@DrKumarVishwas,RT @AvadhootGupte: A beautifully written song from the film #Parmanu by the great @DrKumarVishwas !! Guys.. do listen!! https://t.co/LWwy6t… +06/11/2018,Social_workers,@DrKumarVishwas,"जो क़त्ल को भी जश्न लिखे, मौत को माशूक +‘बिस्मिल’ को बराबर हैं कलम हो कि हो बन्दूक +शहीद रामप्रसाद 'बिस्मिल', जिन्हों… https://t.co/sh2FCmNNaB" +06/11/2018,Social_workers,@DrKumarVishwas,"RT @DainikBhaskar: महाभारत 2019: सीटें कम पड़ें तो ही होता है सियासत में सीजफायर- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की प्रस्तुति +https…" +06/10/2018,Social_workers,@DrKumarVishwas,Congrats Team @IndianFootball on winning the #IntercontinentalCup2018 🏆 as well as Hearts ❤️ of millions of fans. S… https://t.co/V8qoI1j03q +06/10/2018,Social_workers,@DrKumarVishwas,थाईलैण्ड का शाकाहारी भोजन अत्यंत स्वादिष्ट व वैविध्यपूर्ण है.कल थाईलैण्ड के पूर्व उपप्रधानमन्त्री/पर्यटन मंत्री ने… https://t.co/iTouELSTQD +06/10/2018,Social_workers,@DrKumarVishwas,आभार भारतवंशियों ! बैंकाक में कविता का अप्रतिम प्रवाह ! जय हिंद-जय हिंद 🇮🇳❤️🙏 https://t.co/AoxA1fDIGR +06/09/2018,Social_workers,@DrKumarVishwas,"वैश्विक रंग-धानी बैंकाक में हिन्दी-उर्दू की काव्य-लहरी के क्षण, विशिष्ट कवियों-शायरों के सान्निध्य में... बैंकाक (… https://t.co/sHhvG2iGGr" +06/09/2018,Social_workers,@DrKumarVishwas,Congratulations @anitaatulmohan and @atulmohanhere 👍🇮🇳❤️Jay Ho https://t.co/n76YAxS9uq +06/09/2018,Social_workers,@DrKumarVishwas,बैंकाक में थाईलैंड के पर्यटन मंत्री और पूर्व उप प्रधानमंत्री कॉर्न दब्बारांसी के साथ कई विशिष्ट लोगों को वर्ल्ड आइ… https://t.co/mFiDovM1VW +06/09/2018,Social_workers,@DrKumarVishwas,"स्वतंत्रता सेनानी, आदिवासी जननायक, 'उलगुलान' के प्रणेता और समाज के 'भगवान', धरती आबा बिरसा मुंडा जी की आज पुण्यतिथि… https://t.co/GJw0jU7Xxc" +06/08/2018,Social_workers,@DrKumarVishwas,राजसिकता के वैश्विक रंग-देश बैंकाक में माँ हिंदी की सात्विक लोक-लहरियों का महापर्व ! आप सब बेहद प्यार करने वाले दो… https://t.co/ADC5f1uYKo +06/08/2018,Social_workers,@DrKumarVishwas,कृष्णभूमि मथुरा से कल शाम के जागरण कवि-सम्मेलन की कवरेज ❤️🙏 https://t.co/RLqXQ3VW9v +06/07/2018,Social_workers,@DrKumarVishwas,मेरे आराध्य भगवान भुवन मोहन कन्हैया की पावन भूमि मथुरा से दैनिक जागरण कवि-सम्मेलन LIVE...!!! 🙏❤️ https://t.co/CWEVphfJYy +06/07/2018,Social_workers,@DrKumarVishwas,एक शानदार फ़िल्म में अपनी थोड़ी सी हिस्सेदारी पर निजी ख़ुशी के इस वक़्त में आप सबका शुक्रिया ! जय हो ❤️🇮🇳🙏… https://t.co/n9pYJkc6AF +06/07/2018,Social_workers,@DrKumarVishwas,"सूरज पर प्रतिबंध अनेकों और भरोसा रातों पर ! +नयन हमारे सीख रहे हैं, हँसना झूठी बातों पर ! +हमने जीवन की चौसर पर, दाँव… https://t.co/51Fs8zWirQ" +06/07/2018,Social_workers,@DrKumarVishwas,माँ-बाबूजी को सादर चरण/स्पर्श ! 🙏😍महापंडित @abhisar_sharma को बधाई https://t.co/IHVzYUaZob +06/06/2018,Social_workers,@DrKumarVishwas,सुबह आपने इस गीत को चिलचिलाती धूप और मौसमी गर्मी के प्रकोप को कम करने की अपील के रूप में सुना। अब ढलती साँझ में इसी… https://t.co/gH6F6iFRa7 +06/06/2018,Social_workers,@DrKumarVishwas,"धूप में साया 🙏🌞 +https://t.co/hotCEKKNji" +06/05/2018,Social_workers,@DrKumarVishwas,"RT @ANI: Relative of stone-pelter who died after being run over by CRPF vehicle, slams Hurriyat leaders,accuses Geelani of hypocrisy,says,'…" +06/05/2018,Social_workers,@DrKumarVishwas,'क्षिति-जल-पावक-गगन-समीरा' - यही हमारे शरीर की संरचना भी है और पर्यावरण की भी। इसलिए पर्यावरण जीवन है। पर्यावरण का… https://t.co/r6yqyvx1rD +06/04/2018,Social_workers,@DrKumarVishwas,@avdhesh002 @TRIPATHI_AVI_ आशीर्वाद अनुज ❤️👍 +06/04/2018,Social_workers,@DrKumarVishwas,"आज प्यारे देवल आशीष की पुण्यतिथि है, मुझसे बड़ा गीतकार, मुझसे बड़ा परफॉर्मर और मुझसे बड़ा इंसान। दुनिया की भाग-दौड़… https://t.co/mIKshEzy7B" +06/04/2018,Social_workers,@DrKumarVishwas,@Prakashh031 @Shakeeljamali58 हमारे यहाँ उनके हाथ के निकटतम उपलब्ध साधन पर निर्भर था 🤣🤣😜😂 +06/04/2018,Social_workers,@DrKumarVishwas,@janhavisant @Shakeeljamali58 होते तो अब तक ऑनलाइन और लाइव दोनो तरह का पड़ गया होता 😜🤣 +06/04/2018,Social_workers,@DrKumarVishwas,This reminds me my “पूज्य-पिताश्री” 😜🤣Well said @Shakeeljamali58 https://t.co/718Kc3qiXm +06/04/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: यदि होसके तो घर के बाहर आसपास थोडा पानी प्यासे परिंदों, राहगीरों के लिए रखिये ! आपके सिर्फ कुछ मिनट जायेगें लेकिन किसी…" +06/04/2018,Social_workers,@DrKumarVishwas,"RT @HaasyaVyangya: देश के सुप्रसिद्ध कवि @DrKumarVishwas की @DainikBhaskar में 52 व्यंग्यात्मक श्रृंखलाओं की तीसरी कड़ी +#MahaBharat2019 : ई…" +06/04/2018,Social_workers,@DrKumarVishwas,"भास्कर में आज : ""महाभारत 2019: ईवीएम बड़ी छलिया, हर चुनाव में दल बदल लेती है"" 🙏😋 https://t.co/KkJLaIn7mr" +06/03/2018,Social_workers,@DrKumarVishwas,"जिस घड़ी ये आदमी ख़ुद में खुदा हो जाएगा, +कहने वाले ने कहा था,सब फ़ना हो जाएगा ! +शाम के मंज़र को तकना भी इबादत है मे… https://t.co/JKdwXaz4dI" +06/03/2018,Social_workers,@DrKumarVishwas,❤️👍🇮🇳 https://t.co/5XvAMtBxWb +06/03/2018,Social_workers,@DrKumarVishwas,"कांग्रेस के तेज़तर्रार किंतु शालीन प्रवक्ता, सहज और संभावनाओं भरे युवा मित्र @rssurjewala को जन्मदिन पर अशेष शुभकाम… https://t.co/YHY1BhEVQJ" +06/03/2018,Social_workers,@DrKumarVishwas,RT @amarujalakavya: कुमार विश्वास तो जॉन को ‘ख़ुदरंग’ शायर कहते हैं। इस बारे में वह वाणी प्रकाशन से प्रकाशित किताब ‘मैं जो हूं जॉन एलिया… +06/03/2018,Social_workers,@DrKumarVishwas,"अलग ही नहीं करतीं, +अलग-थलग कर देती हैं 😜🙏🇮🇳 https://t.co/DAQabfcBso" +06/03/2018,Social_workers,@DrKumarVishwas,"RT @Prabudhaspeaks: किसी का प्यास से मरना है मरना आदमीयत का +अगर आँखों में पानी हो, किसी को कम नहीं पड़ता https://t.co/7qIol91Cwq" +06/03/2018,Social_workers,@DrKumarVishwas,"यदि होसके तो घर के बाहर आसपास थोडा पानी प्यासे परिंदों, राहगीरों के लिए रखिये ! आपके सिर्फ कुछ मिनट जायेगें लेकिन… https://t.co/sSkjFtgDrl" +06/02/2018,Social_workers,@DrKumarVishwas,@VAIRAGI18 @manojmuntashir @riteshsinhrajwa @amarujalakavya @merikalamse @kavitakosh @Rekhta @TonyKakkar @kavishala… https://t.co/HxmIUxxIPq +06/02/2018,Social_workers,@DrKumarVishwas,"जान-ए-मन भोपाल, तेरे नाम... ❤️ #KVMusical #2017SuperHit +https://t.co/aZPTdebMwQ" +06/02/2018,Social_workers,@DrKumarVishwas,"@anubhavsinha कशिश ए लखनऊ अरे तौबा , +फिर वही हम, वही अमीनाबाद ❤️😍👍" +06/02/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: गली से कोई भी गुज़रे तो चौंक उठता हूँ , +नए मकान में खिड़की नहीं बनाऊँगा ! +फ़रेब दे के तेरा जिस्म जीत लूँ लेकिन, +मैं पे…" +06/01/2018,Social_workers,@DrKumarVishwas,"गली से कोई भी गुज़रे तो चौंक उठता हूँ , +नए मकान में खिड़की नहीं बनाऊँगा ! +फ़रेब दे के तेरा जिस्म जीत लूँ लेकिन, +मैं… https://t.co/9QSM8o1y9o" +06/01/2018,Social_workers,@DrKumarVishwas,"RT @KapilKhaneja: Any doubts left? why a shameful conspiracy was being hatched since long against @DrKumarVishwas + +He's the strongest hind…" +06/01/2018,Social_workers,@DrKumarVishwas,"“हाथ अगर जुड़कर रहतें हैं तो प्रणाम बन जाते हैं, +संकल्पों की पुण्यवेदी पर सभी काम बन जाते हैं , +अगर आत्मा रहे निरंत… https://t.co/8V8ADRAzPC" +05/31/2018,Social_workers,@DrKumarVishwas,"वो इतने बरस बाद वहीं पर मिली मुझे , +तो ऐसा लगा ज़िंदगी फ़रियाद है मेरी , +मंदिर को, देवता को, पुजारी को छोड़िए , +इन… https://t.co/IhCR8x018a" +05/31/2018,Social_workers,@DrKumarVishwas,"वो जो रोशनदान बनाने आए थे, +दरवाज़े में कुंडी मारे बैठे हैं..! 😜 +(ट्वीट पर पालित चिंटूओं की प्रतिक्रिया से लक्षित-पात्र का पता लगाएँ) 😂🙏🇮🇳" +05/31/2018,Social_workers,@DrKumarVishwas,"ज़िंदगी लाइव की भीगी आँखों वाली बेहद घरेलू मनहर-मना बुंदेलखण्डी मौडी, मीडिया-मुलगी, मेरी सनातन झगड़ालू दोस्त… https://t.co/fd8yszOrHO" +05/31/2018,Social_workers,@DrKumarVishwas,"अभी-अभी एक क्रांतिकारी पक्षकार फ़ोन पर मुझसे नाराज़ हो गए ! मैंने तो उन्हें बस इतना भर कहा था -: 🙏 +एक जेब में “कैपि… https://t.co/LygHZL0aAp" +05/31/2018,Social_workers,@DrKumarVishwas,तो आज EVM को “चरित्र-प्रमाण पत्र” दे देंगे नवपतित ? 😳🙏 +05/31/2018,Social_workers,@DrKumarVishwas,वोटर्स भी “एक पैसा” लौटा रहे हैं 😜👍🇮🇳 +05/31/2018,Social_workers,@DrKumarVishwas,"""ये चादर सुख की मौला क्यूँ सदा छोटी बनाता है? +सिरा कोई भी थामो, दूसरा ख़ुद छूट जाता है +तुम्हारे साथ था तो मैं ज़मा… https://t.co/hRylpZULdq" +05/30/2018,Social_workers,@DrKumarVishwas,"RT @RashmiS06: ""तुम्हारे राजमहलों में भले गूँजे तुम्हारी जय +जो स्वर तुमने ख़रीदे हैं तुम्हें ही वो अदा होंगे +अगर कच्चे घरों में रहने वाले स…" +05/30/2018,Social_workers,@DrKumarVishwas,@pashyantii हरदोई में लोग क्या कहेंगे ?😳😜👍 +05/30/2018,Social_workers,@DrKumarVishwas,"“विदुर का भीष्म का पद अश्रु-प्रक्षालन नहीं भूला, +कठिन-व्रत द्रोण-इंगित पथ-तपश्चालन नहीं भूला , +कुटिल लाक्षागृहों… https://t.co/bIvpjoFK9j" +05/29/2018,Social_workers,@DrKumarVishwas,"RT @iawoolford: मिल रहा था भीख में, सिक्का मुझे सम्मान का +मैं नहीं तैयार झुककर उठाने के लिए +~ हुल्लड़ मुरादाबादी #जन्मदिवस" +05/29/2018,Social_workers,@DrKumarVishwas,@HedaRahul Working on it ❤️👍 +05/28/2018,Social_workers,@DrKumarVishwas,@paash01 कौन हैं ये ?😊 +05/28/2018,Social_workers,@DrKumarVishwas,RT @DainikBhaskar: #MahaBharat2019 : उसूलों के बाद बिकने के लिए आत्मा अंतिम सामान है- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की दूसरी प्रस्… +05/27/2018,Social_workers,@DrKumarVishwas,"“मैं भी नज़रों की हद में बंदी हूँ , +तुम भी आँखों में बेतहाशा हो...!” +शुभरात्रि दोस्तो ! ❤️🙏 https://t.co/cZ7JiSAmkk" +05/27/2018,Social_workers,@DrKumarVishwas,❤️❤️❤️❤️🇮🇳🇮🇳🙏 https://t.co/Fi9n6E7dS3 +05/27/2018,Social_workers,@DrKumarVishwas,"हर दल के ऐसे शीर्ष नेता ही, ख़तरे में पड़े हमारे देश के लोकतंत्र को बचा सकते हैं 🙏 https://t.co/Ui8mE5oyYO" +05/27/2018,Social_workers,@DrKumarVishwas,महू (मप्र) में कल शाम... ❤️🙏 https://t.co/z6abPNBdCj +05/27/2018,Social_workers,@DrKumarVishwas,"भगवान पूरे विश्व में गूँजे हमारी भारती +❤️🙏🇮🇳 https://t.co/WXyGI5RcYT" +05/26/2018,Social_workers,@DrKumarVishwas,❤️🙏🇮🇳 https://t.co/btUXFPv7ag +05/26/2018,Social_workers,@DrKumarVishwas,@KumarAs25257612 सहमत ❤️🇮🇳🙏 +05/26/2018,Social_workers,@DrKumarVishwas,"निराले इन्दौर के पास ऐतिहासिक शहर महू, जो बाबा साहब भीमराव अम्बेडकर की जन्मस्थली है, में पंद्रह हजार से ज़्यादा श्… https://t.co/sTXIJN1HPJ" +05/26/2018,Social_workers,@DrKumarVishwas,"@janhavisant @pramila2710 इस नहीं का कोई इलाज नहीं , +रोज़ करते हैं आप, आज नहीं ! (दाग)" +05/26/2018,Social_workers,@DrKumarVishwas,"महनीय मेवाड़ की वंशीय गुरूता व विनम्रता के ध्वजवाहक, कला-संस्कृति-भाषा और संस्कार के युवा प्रचारक,मेरे अनन्य आत्मीय… https://t.co/TDVFKNCzuc" +05/26/2018,Social_workers,@DrKumarVishwas,जयतु जय-जय भारत-पुत्री ❤️👍🇮🇳 https://t.co/9oNKjSEb3g +05/26/2018,Social_workers,@DrKumarVishwas,देश भर से आए JITO सदस्यों के साथ कल की खूबसूरत #KVMusical ❤️ शाम के बाद आज JITO की युवा शक्ति का सम्बोधन 'युवा और… https://t.co/katMZud6Wi +05/26/2018,Social_workers,@DrKumarVishwas,RT @TonyKakkar: Such beautiful lyrics by @DrKumarVishwas Listen to melodious #DeDeJagah from #Parmaanu @SachinJigarLive @yasserdesai @ZeeM… +05/26/2018,Social_workers,@DrKumarVishwas,जय हो भारतपुत्री 🙏🇮🇳 https://t.co/QAJYnaYzMe +05/25/2018,Social_workers,@DrKumarVishwas,JITO Growth Summit के तीन-दिवसीय कार्यक्रम में आज की शाम JITO के हज़ारों सदस्यों के साथ मस्ती और कविता का दौर बैंग… https://t.co/FxhtTBRGVZ +05/25/2018,Social_workers,@DrKumarVishwas,"RT @anantjais19: कृपा ,रुतबा इनायत मेहरबानी बेअसर निकली, मुझे बदनाम करने की निशानी बेअसर निकली + +मेरे हर लफ्ज का जादू जमाने की जबां पर है…" +05/25/2018,Social_workers,@DrKumarVishwas,"RT @bothra_madhu: @DrKumarVishwas +""कैसे कह दूँ कि थक गया हूँ मैं, +जाने किस-किस का हौंसला हूँ मैं!! +~डाॅ कुमार विश्वास 🎇 https://t.co/HCPHXR…" +05/24/2018,Social_workers,@DrKumarVishwas,बिहार में पटना के पास बाढ़ शहर से #KVMusical LIVE...!!! 🎵🎤❤️ https://t.co/cFlUWqv4wx +05/24/2018,Social_workers,@DrKumarVishwas,RT @TheRichaSharma: बहुत बहुत बधाई व शुभ कामनाएँ ईतनी ख़ूबसूरत रचना के लिए @DrKumarVishwas भैया 😊👏🏼 ऊपर से उतना ही सुन्दर संगीत बद्ध किया… +05/24/2018,Social_workers,@DrKumarVishwas,"@gurmeljalalpur गंगा दशहरा पर माँ गंगा की स्तुति में भी “मोदी” ?😳 आप बुज़ुर्ग हैं, अपनी आयु का नहीं तो कम से कम पू… https://t.co/nBugzi6Tk3" +05/24/2018,Social_workers,@DrKumarVishwas,"Happy BDAy to the most humble, versatile music genius of our time @jeetmusic dada. God bless you dada, keep poring… https://t.co/BnLwGEddwn" +05/24/2018,Social_workers,@DrKumarVishwas,"RT @solely_supriya: जो गणपति अति पूज्य प्रधाना, तिहुं ते प्रथम गंग अस्नाना। 🙏❤️ + +The pious journey of the gratifying river being serenaded…" +05/24/2018,Social_workers,@DrKumarVishwas,RT @atulkanakk: अच्छा लिखना और अच्छा प्रस्तुत करना बड़ी बात है लेकिन दूसरों के अच्छे लिखे को मूल रचनाकार के प्रति सम्मान भाव के साथ अपने रच… +05/24/2018,Social_workers,@DrKumarVishwas,RT @kumartaurani: #allthebest @DrKumarVishwas @ZeeMusicCompany @anuragbedi https://t.co/0gARS2dUst +05/24/2018,Social_workers,@DrKumarVishwas,"माँ गंगा आपकी सभी सदिच्छाएँ पूर्ण करें। गंगा दशहरा शुभ हो 🙏 +https://t.co/Av9iRgxVlJ" +05/23/2018,Social_workers,@DrKumarVishwas,"[गंगा दशहरा पर विशेष] गंगा केवल एक नदी नहीं, भारत की सांस्कृतिक महारेखा है। गंगा दशहरा पर माँ गंगा को प्रणाम करें औ… https://t.co/fanWDsNxrh" +05/23/2018,Social_workers,@DrKumarVishwas,"कल तलक ख़ुद को जो सूरज का पुत्र कहता था , +जाके लटका है फ्यूज बल्बों की झालर में ख़ुद ! 😜🤣👎🏿" +05/23/2018,Social_workers,@DrKumarVishwas,@zoy2128 ❤️👍 https://t.co/aHqVT5caq2 +05/23/2018,Social_workers,@DrKumarVishwas,"RT @anubhavsinha: Kya baat hai Kumar Bhai .... dumdaar. @DrKumarVishwas +https://t.co/s5s7nhjxmt" +05/23/2018,Social_workers,@DrKumarVishwas,Thanks ! Waiting to pen for your project @anubhavsinha bhai ❤️ https://t.co/UKxiRuGo2x +05/23/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “जो भी ज्यादा या कम समझतें हैं , +तुम को बस एक हम समझतें हैं ! +हम ठहाकों का दर्द जीतें हैं , +लोग आँसूं को गम समझतें हैं…" +05/22/2018,Social_workers,@DrKumarVishwas,"“जो भी ज्यादा या कम समझतें हैं , +तुम को बस एक हम समझतें हैं ! +हम ठहाकों का दर्द जीतें हैं , +लोग आँसूं को गम समझतें… https://t.co/L1ltokybkz" +05/22/2018,Social_workers,@DrKumarVishwas,"RT @ZeeMusicCompany: Add a whole lot of soul to your chaotic day with @yasserdesai's #DeDeJagah! + +@thejohnabraham @dianapenty @bomanirani…" +05/22/2018,Social_workers,@DrKumarVishwas,All the best my Diro @vinodkapri Our creative blending in your next project is going to Insure it’s footprints thr… https://t.co/aXLA8HlmEk +05/22/2018,Social_workers,@DrKumarVishwas,@tabassumgovil आप जैसी अनुभव-संपन्न हस्ती का स्नेह बहुत बड़ी बात है ! आभार ❤️🙏 +05/22/2018,Social_workers,@DrKumarVishwas,"RT @tabassumgovil: Ache geet sangeet mein char chand laga dete hain jo aapne laga diye hain Vishwas, filmi gaane mein bhi sahitya jhalak ra…" +05/22/2018,Social_workers,@DrKumarVishwas,RT @jeetmusic: Bollywood has indeed become richer by getting you as a lyricist @DrKumarVishwas in #Parmanu ! My best wishes for this versat… +05/22/2018,Social_workers,@DrKumarVishwas,Blessings from a Musicain like you is indeed the most soothing thing a lyricist wish to have @jeetmusic dada ! Eage… https://t.co/tGEnvL1PYI +05/21/2018,Social_workers,@DrKumarVishwas,RT @BloodDonorsIn: #Delhi Need #Blood B+ve at Holy Family Hospital. Call 9311111005 via @piyushleads cc @crowngaurav @ArvindGaur @DelhiPoli… +05/21/2018,Social_workers,@DrKumarVishwas,"RT @hridayeshjoshi: पश्चिम बंगाल में लोकतन्त्र को कूड़ेदान में डालकर, हिंसा और आतंक का सहारा लेकर पंचायत चुनावों में कब्ज़ा करने वाली ममता…" +05/21/2018,Social_workers,@DrKumarVishwas,"मराठी मध्ये वाचताना खूप खूप मजा आली 😍👍 @DainikBhaskar 🇮🇳✅ +https://t.co/VNdYVTzwSN" +05/21/2018,Social_workers,@DrKumarVishwas,"RT @DainikBhaskar: सरकार बन गई है पर जारी जुगाड़ है- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की पहली प्रस्तुति + +@DrKumarVishwas + +https://t.…" +05/21/2018,Social_workers,@DrKumarVishwas,"RT @PANKAJPARASHAR_: 'वोटर ये सोचता है कि एमएलए जो चुना,  +उनका कबाड़ है या वो इनका कबाड़ है? +उन्नीस के नाटक का रिहर्सल है कर्नाटक,  +सरकार ब…" +05/21/2018,Social_workers,@DrKumarVishwas,"व्यंग्य-विशारद स्व० शरद जोशी के जन्मदिन पर है दैनिक भास्कर में,सालभर चलने वाली व्यंग्य लेखों की श्रृंखला “कह कुमार… https://t.co/9PeMxfY7Lk" +05/21/2018,Social_workers,@DrKumarVishwas,@pratik_dave27 सारू छै ❤️👍 +05/20/2018,Social_workers,@DrKumarVishwas,@pankajjha_ @ZeeMusicCompany आभार पंकज भाई ❤️👍 +05/20/2018,Social_workers,@DrKumarVishwas,"Every talent should be foreseen as a big thing in future. If we talk of Yaseer, not only #DeDeJagah but several oth… https://t.co/SGX148UNU9" +05/20/2018,Social_workers,@DrKumarVishwas,RT @Prabudhaspeaks: मेरे लिए #DeDeJagah की ख़ूबसूरती के अलग मायने हैं। इस गीत ने मेरे सामने जन्म लिया है। मेरे लिए यह सब अद्भत है https://t… +05/20/2018,Social_workers,@DrKumarVishwas,#DeDeJagah ❤️ https://t.co/QOBVGnqvZL +05/20/2018,Social_workers,@DrKumarVishwas,One thing needs a special mention here - @SachinJigarLive is one of the finest composer-duo of this generation. The… https://t.co/y4WgVg22Lj +05/20/2018,Social_workers,@DrKumarVishwas,"Yes, you have to be flexible with words while writing for a movie. #DeDeJagah from PARMANU also saw some last momen… https://t.co/ghTfB2ZKOS" +05/20/2018,Social_workers,@DrKumarVishwas,"फ़िल्म 'परमाणु' के इस गीत #DeDeJagah को सराहने के लिए सभी दोस्तों का आभार। + https://t.co/QxIxRgkg1h +@TheJohnAbraham @ZeeMusicCompany 🙏❤️" +05/20/2018,Social_workers,@DrKumarVishwas,"RT @Airavta: बाजा फाड़ गाना लिखा है @DrKumarVishwas भाई ने, सुनिये । https://t.co/fpN4yaXMTE" +05/20/2018,Social_workers,@DrKumarVishwas,"RT @AalokTweet: गीत-ऋषि नीरज से लेकर मानवीय सरोकरों के शायर निदा फ़ाज़ली तक, कवियों-शायरों की एक पूरी पीढ़ी ने फ़िल्मों को नायाब-गीतों के…" +05/20/2018,Social_workers,@DrKumarVishwas,"आज हिन्दी साहित्य के महारथी, कोमल-कमनीय कल्पना के महनीय कवि सुमित्रानंदन पंत जी का जन्मदिन है। सौभाग्यशाली हूँ, कि… https://t.co/z9MQVCsIU6" +05/19/2018,Social_workers,@DrKumarVishwas,RT @Charanpreeet: Congratulations to Brother @DrKumarVishwas for writing this brilliant master piece for @ParmanuTheMovie @ZeeMusicCompany… +05/19/2018,Social_workers,@DrKumarVishwas,❤️👍🇮🇳 https://t.co/w4beIu22gn +05/19/2018,Social_workers,@DrKumarVishwas,"RT @Inkhabar: #VIDEO : @TheJohnAbraham की फिल्म #Parmanu के गाने #DeDeJagah में @DrKumarVishwas ने दिए खूबसूरत बोल, हो रही है जमकर तारीफ +@…" +05/19/2018,Social_workers,@DrKumarVishwas,❤️👍 https://t.co/80AMRfQwAI +05/19/2018,Social_workers,@DrKumarVishwas,RT @sangitatewari: फ़िल्म परमाणु में कुमार विश्वास की कलम का कमाल. बहुत बहुत शुभकामनाएं @DrKumarVishwas https://t.co/dmtdxWGIZT +05/19/2018,Social_workers,@DrKumarVishwas,विपरीत वैचारिकी वाली @INCIndia और JD(S) का मेल कैसे निभेगा ये अलग बात किंतु दोनों दलों के विधायकों ने अद्भुत दलीय-… https://t.co/93q2mRH62X +05/19/2018,Social_workers,@DrKumarVishwas,RT @vinodkapri: छा गए भई @DrKumarVishwas .. हिंदी सिनेमा के गीतों को साहित्य का झोंका चाहिए था ..बहुत बधाई और शुभकामनाएँ ... https://t.co/… +05/19/2018,Social_workers,@DrKumarVishwas,"RT @PritishNandy: After the #Karnataka verdict, whatever it may be, no one in politics should ever talk about fighting corruption again." +05/19/2018,Social_workers,@DrKumarVishwas,इस बार जुगाड़ की मिश्री कहीं लोकतंत्र की फिटकरी न निकल जाए 😳😜 #KarnatakaFloorTest +06/30/2018,Social_workers,@drjoekort,@kathygriffin you were great in Chicago your humor is so smart and 3 hours without a break! You’re awesome. +06/30/2018,Social_workers,@drjoekort,@cher you are right the Cher Show is good but needs some work. Loved it though #chershow https://t.co/gD97mATlkn +06/29/2018,Social_workers,@drjoekort,"@JerrySeinfeld please don’t minimize those who commit suicide with your naive statement, “why would you murder some… https://t.co/ikIhXOyGeN" +06/25/2018,Social_workers,@drjoekort,"Only a few more days left to get my new free e-book, “Cracking the Erotic Code” #erotica #eroticorientation +https://t.co/Jk786wh3ct" +06/23/2018,Social_workers,@drjoekort,Can’t wait to read it! https://t.co/eJ2IxgAk66 +06/22/2018,Social_workers,@drjoekort,"@therealroseanne This is great news! I will continue watching the Conner’s. Love the show. + +https://t.co/UcDq0FTMtp" +06/21/2018,Social_workers,@drjoekort,https://t.co/u7EfxjZtdo +06/20/2018,Social_workers,@drjoekort,@fakedansavage Lmao! I am Judy Isim. +06/19/2018,Social_workers,@drjoekort,@therealroseanne I applaud you for doing the right thing! https://t.co/xJofs4yLt9 +06/18/2018,Social_workers,@drjoekort,"RT @JamesMartinSJ: Like many, I've resisted using this word but it's time: the deliberate and unnecessary separation of innocent children f…" +06/17/2018,Social_workers,@drjoekort,Every Father’s day I post this article. The day comes when we must go from boy to man with our fathers. When I beca… https://t.co/9rqlbRw7Jg +06/15/2018,Social_workers,@drjoekort,@MillerRachelD So far it’s very good! +06/15/2018,Social_workers,@drjoekort,I’m really looking forward to this presentation on working with transgender individuals and their partners. So litt… https://t.co/7kizBnM5EA +06/15/2018,Social_workers,@drjoekort,@TheAASECT @DrRachelNeedle modern sex therapy Institute is hosting free wine at the 16 Mix restaurant at the Sherat… https://t.co/gOutZ3XjkT +06/14/2018,Social_workers,@drjoekort,"Watched movie, “Moonlight” on plane. WOW! It’s an excellent movie. + +Things are not better completely for LGBTQ tee… https://t.co/YZTcK82yH0" +06/14/2018,Social_workers,@drjoekort,"Men, Stop Using ""Kinky Sex"" as a Justification for Abuse + +https://t.co/zwqjGjBtv4" +06/13/2018,Social_workers,@drjoekort,RT @pnetworker: What's the difference between sexual orientation and gender identity? What are the most common mistakes therapists make whe… +06/13/2018,Social_workers,@drjoekort,I totally agree!! https://t.co/AB2jJ70noW +06/11/2018,Social_workers,@drjoekort,RT @beheroesdotnet: The FIRST LGBTQ puberty book! https://t.co/0Dsf6ESNXk +06/11/2018,Social_workers,@drjoekort,RT @kathygriffin: Big announcement with @ColtonLHaynes. For the month of June I’m donating $2 from every ticket sold (no matter when the sh… +06/11/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: Today, 7.3% of #Millennials identify as #LGBT; by contrast, 3.2% of Gen X'ers and 2.4% of Boomers identify as such. ht…" +06/09/2018,Social_workers,@drjoekort,RT @fakedansavage: Still waiting for someone to notice that I didn’t retweet this. https://t.co/843uXvXk80 +06/09/2018,Social_workers,@drjoekort,"RT @LogoTV: A new #Pride flag design has gone viral for the creative way it includes queer people of color, the trans community, and the st…" +06/09/2018,Social_workers,@drjoekort,@realDonaldTrump you’re a liar and a scary man in power to me and my community. It’s despicable. Huckabee Sanders:… https://t.co/eNbOtehDLc +06/08/2018,Social_workers,@drjoekort,@Logic301 So sad about Kate Spade and Anthony Bourdain. This song and video by Logic is so timely about Suicide. https://t.co/tKRJL4HPOA +06/08/2018,Social_workers,@drjoekort,RT @fakedansavage: Are we really doing the ex-gay thing again? Apparently we are—and this time the ex-gays came in waving the rainbow flag.… +06/07/2018,Social_workers,@drjoekort,Receive your free e-book “Cracking the Erotic Code” from me for pride month by clicking here https://t.co/pUC61osFxN +06/06/2018,Social_workers,@drjoekort,Omg I really needed this laugh right now this is hysterical!!!!!! https://t.co/Gt5RAw4jWw +06/05/2018,Social_workers,@drjoekort,"I cannot wait to see this in Chicago first June 29! The Cher Show (NY) Tickets +https://t.co/8D1fAVzHXm" +06/05/2018,Social_workers,@drjoekort,"@djstoilov None specifically for bi men. But I love @terryreal book, “I don’t want to talk about it”" +06/05/2018,Social_workers,@drjoekort,"Opinion: In gay wedding cake case, Supreme Court's punt sent a message by John Corvino +https://t.co/C7FK7ZKEne" +06/05/2018,Social_workers,@drjoekort,"Drew thought girls wanted to be dominated from “Fifty Shades of Grey” “Mr. & Mrs. Smith,”. “She’s on the table, and… https://t.co/biGmbxYfaT" +06/04/2018,Social_workers,@drjoekort,"You gotta me F#%^ kidding me????? +Supreme Court rules in favor of anti-gay baker in wedding cake case / LGBTQ Nation +https://t.co/b8r22Shl4f" +06/04/2018,Social_workers,@drjoekort,RT @PinkNews: Greece allows gay couples to have children https://t.co/PTwIQl01yJ +06/04/2018,Social_workers,@drjoekort,"RT @kathygriffin: I knew it. + +#WhereIsMelanie https://t.co/iMm461Ygk1" +06/04/2018,Social_workers,@drjoekort,@kathygriffin Hahahahahahahahahahaha omg I literally laughed out loud hahahahahahahahahaha!!!!!! +06/03/2018,Social_workers,@drjoekort,"I’m in a really beautiful hotel +In Allentown Pennsylvania presenting tomorrow on LGBT issues." +06/03/2018,Social_workers,@drjoekort,@ZakarTwins met gay twins at Pride had no idea they‘re local. New type middle eastern gay guy out open in face of h… https://t.co/FWeSUjPPzw +06/03/2018,Social_workers,@drjoekort,"On my way to these cities to teach +Lesbian, Gay, Bisexual, Transgender and Questioning (LGBTQ) Clients: Clinical I… https://t.co/4lmXnzVZjd" +06/03/2018,Social_workers,@drjoekort,"It’s Gay Pride Month, and we’re looking for your stories. Your personal experience about being LGBTQ Your experienc… https://t.co/0B9tuocFeP" +06/01/2018,Social_workers,@drjoekort,My new e-book is now available in paperback! Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fant… https://t.co/E8YS5Tofni +05/31/2018,Social_workers,@drjoekort,Goodbye masturbation month! +05/31/2018,Social_workers,@drjoekort,"Organized, cheerful, excellent written and verbal communication skills with the ability to multitask, prioritize a… https://t.co/09lhXKxqQU" +05/31/2018,Social_workers,@drjoekort,"Experienced office administrator/bookkeeper to greet clients, answer phones, schedule appointments and help run dai… https://t.co/wDznhZBc5c" +05/31/2018,Social_workers,@drjoekort,"RT @drjoekort: FREE eBOOK:“Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fantasies” +-Nonsexual narratives in sexual int…" +05/31/2018,Social_workers,@drjoekort,@therealroseanne threw herself under the bus. No one else did it. I’m tired of comedians poking fun of everyone but… https://t.co/ZOVPYyH065 +05/30/2018,Social_workers,@drjoekort,I agree with Debra. I feel badly for all the other paid employees of the show. What a mess. https://t.co/AEgfIrSShq +05/29/2018,Social_workers,@drjoekort,"FREE eBOOK:“Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fantasies” +-Nonsexual narratives in s… https://t.co/3XrNtcvfIW" +05/29/2018,Social_workers,@drjoekort,RT @fakedansavage: Blessed be the fruit. https://t.co/G7Slqdn4Ov +05/29/2018,Social_workers,@drjoekort,Love this!!! https://t.co/wCwDzC5m9d +05/27/2018,Social_workers,@drjoekort,"RT @EstherPerel: The @goop Guide to Sex is here, including a mention of the Art of Us: Desire. The first installment of our new digital ser…" +05/26/2018,Social_workers,@drjoekort,@Rosie I just let myself go natural it’s scary! +05/26/2018,Social_workers,@drjoekort,Bisexuals face criticism and disbelief about their sexual orientation everyday. Here’s why. https://t.co/ygluNoe0nc +05/25/2018,Social_workers,@drjoekort,"RT @EstherPerel: The expectation that one person will satisfy all of our many emotional, physical, and spiritual needs is a tall order. Ins…" +05/25/2018,Social_workers,@drjoekort,@pnetworker @NicoleRPrause Good thank you +05/25/2018,Social_workers,@drjoekort,I see an increase of crystal meth use by middle-age gay men who feel—and are—rejected sexually & romantically by ga… https://t.co/fiCouCXuxL +05/24/2018,Social_workers,@drjoekort,"Excited to announce we are staying at Woodward Building in Royal Oak, MI and are expanding space at The Center for… https://t.co/dytxNCCl2q" +05/22/2018,Social_workers,@drjoekort,@fluidlyspeaking It’s utterly ridiculously +05/22/2018,Social_workers,@drjoekort,"You have to be kidding me? Publix Censors ‘Summa Cum Laude’ on Graduation Cake Order +https://t.co/yGdxHce7gf" +05/21/2018,Social_workers,@drjoekort,New documentary reveals Whitney Houston was sexually abused as a child by aunt Dee Dee Warwick. This article is mos… https://t.co/QDluXXyYY2 +05/21/2018,Social_workers,@drjoekort,"RT @VantagePointTX: Happy to be included in this article on sexual anxiety. +https://t.co/9dtgVlHQG6" +05/21/2018,Social_workers,@drjoekort,@cher Happy birthday Cher you’ve been in my life my entire life. They say you’ll live forever so I hope my entire life ❤️ +05/20/2018,Social_workers,@drjoekort,"Erections Deserve Respect! Stop Pounding Your Partner and Have Good Sex Instead @chrisdona +https://t.co/6fBOYJFWnc" +05/20/2018,Social_workers,@drjoekort,"Erections Deserve Respect! Stop Pounding Your Partner and Have Good Sex Instead +https://t.co/6fBOYJFWnc" +05/20/2018,Social_workers,@drjoekort,"Spent wknd w/ @DrRachelNeedle who contributed to legal ban reparative therapy Boca Raton W Palm Beach, Lake Worth,… https://t.co/u3ujQyBfqq" +05/20/2018,Social_workers,@drjoekort,"Jane Ward, author of, ""Not Gay: Sex Between Straight White Men"" does a great job talking about the differences betw… https://t.co/VI9fiCJs5z" +05/19/2018,Social_workers,@drjoekort,"RT @DrDavidLey: Monogamy, forced or not, works for some people and not others. It suits some, but creates anguish for others. Treating it a…" +05/18/2018,Social_workers,@drjoekort,@elvisgomes90 Good point I think it’s a step in that direction but a good criticism. +05/18/2018,Social_workers,@drjoekort,"This is a test developed by researcher Dr. Robert Epstein to understand sexual orientation and sexual fluidity. +Ep… https://t.co/JVuADin5i5" +05/18/2018,Social_workers,@drjoekort,@fakedansavage I don't think he will. +05/18/2018,Social_workers,@drjoekort,"I’m coming to Chicago this Saturday, May 19, 2018 teaching my LGBTQ course. It will also be available that day as a… https://t.co/JfwmttHBPt" +05/17/2018,Social_workers,@drjoekort,"Chicago Saturday, May 19, 2018 teaching LGBTQ course. Available as a webinar. Hosted by the Modern Sex Therapy Inst… https://t.co/gkfu2YSasR" +05/17/2018,Social_workers,@drjoekort,"Gay/Lesbian Relationships- In this segment of the Innervoice show, Dr. Foojan Zeine interviews Dr. Joe Kort, dialog… https://t.co/6qYTACG53s" +05/17/2018,Social_workers,@drjoekort,"May is Masturbation month. Study reveals different masturbation habits of gay and straight people +https://t.co/2iKcaGU8g4" +05/15/2018,Social_workers,@drjoekort,Exclusive @CRSHsocial blog shares 3 Impactful Ways to #Support a #Transgender Loved One. Read it NOW >>… https://t.co/51BhQa0ks6 +05/15/2018,Social_workers,@drjoekort,Can straight young men be twinks? https://t.co/0wYQzfJANs +05/14/2018,Social_workers,@drjoekort,"RT @beheroesdotnet: Yes! @Scarleteen is the ONLY education site I recommend for the young people in my office - a long-standing, crazy- com…" +05/13/2018,Social_workers,@drjoekort,"Excellent article and video upacking privilege. “We as a society don’t tend to hate gay men because they are gay,”… https://t.co/3t0jxZJAlM" +05/12/2018,Social_workers,@drjoekort,RT @DrDavidLey: @SexologyU @DrMartyKlein @BBC And @drjoekort @DominicDavies1 @NicoleRPrause @ResparkLove @KinkHealth +05/12/2018,Social_workers,@drjoekort,RT @TonyOrlando: Keep an eye out for dates coming to your city!🎄#AChristmasReunion https://t.co/blGvTrpVJO +05/12/2018,Social_workers,@drjoekort,@TonyOrlando Wow multiple cities! Come to Detroit! +05/11/2018,Social_workers,@drjoekort,"RT @SexologyU: #Sexaddiction is in the news again. We recommend the work of @DrDavidLey, @DrMartyKlein and Douglas Braun-Harvey as an alter…" +05/11/2018,Social_workers,@drjoekort,@TonyOrlando Very happy to hear this! +05/11/2018,Social_workers,@drjoekort,"There Are 6 Types of Straight People Having Gay Sex, Says New Study #gaysex #sexualfluidity https://t.co/bs4tPvUGmZ… https://t.co/4P6JwcbbE1" +05/10/2018,Social_workers,@drjoekort,This is the Mature Masculine - the New Warrior - a re-definition of masculinity for the 21st century. By no means i… https://t.co/z1MVPAsC2V +05/10/2018,Social_workers,@drjoekort,He builds communities where people are respected and valued. He takes responsibility for himself and is also willin… https://t.co/qjzRjtGjZS +05/10/2018,Social_workers,@drjoekort,He knows that we are all one. He knows he is an animal and a part of nature. He knows his spirit and his connection… https://t.co/ui6ure0all +05/10/2018,Social_workers,@drjoekort,"He is flexible when he needs to be. He knows how to listen from the core of his being. + +He's not afraid to get dirt… https://t.co/z71WmgYvjx" +05/10/2018,Social_workers,@drjoekort,He creates intimacy and trust with his actions. He has men that he trusts and that he turns to for support. He know… https://t.co/Vz2Duu3teZ +05/10/2018,Social_workers,@drjoekort,@ManKindJournal He stopped blaming women or his parents or men for his pain years ago. He stopped letting his defen… https://t.co/PvrNVQklWB +05/10/2018,Social_workers,@drjoekort,@ManKindJournal This is the opposite of toxic masculinity. He feels guilty when he's done something wrong. He is ki… https://t.co/ajMHtFlfdz +05/10/2018,Social_workers,@drjoekort,@ManKindJournal This is the opposite of toxic masculinity. He knows what he feels. He knows how to cry and he lets… https://t.co/ij3sFUvVS6 +05/10/2018,Social_workers,@drjoekort,"@ManKindJournal This is the opposite of toxic masculinity. +He cleans up after himself. He cleans up the planet. He… https://t.co/kCXicFeUkX" +05/10/2018,Social_workers,@drjoekort,@marky22_22 Thank@you Mark that means a lot to me. I could see your interest all day long and it reassured me I was making a difference. +05/09/2018,Social_workers,@drjoekort,"RT @robynochs: About bi v. pan, etc. debates, I wrote: ""To argue over which word is the best & to disrespect other people's choice of labe…" +05/09/2018,Social_workers,@drjoekort,"RT @fakedansavage: New #SavageLove: Peeing while hang gliding, getting the 37-year-old man off, and some perspective for a newly HIV+ man.…" +05/09/2018,Social_workers,@drjoekort,@JustinLehmiller Wow congratulations +05/09/2018,Social_workers,@drjoekort,"“Sex addiction” therapists say that sex addiction isn’t about sex. Sadly, neither is their treatment approach or recovery model." +05/08/2018,Social_workers,@drjoekort,@EnglishBob22 @DanceWithDaphne What do you mean? +05/07/2018,Social_workers,@drjoekort,The Masturbation Challenge. May is masturbation month. #masturbation https://t.co/fuBd70RVka +05/07/2018,Social_workers,@drjoekort,Why straight women are hiring female escorts. https://t.co/ChZ47r5bnR +05/06/2018,Social_workers,@drjoekort,"LGBTQ Clients: Clinical Issues and Treatment Strategies: +Monday, May 7, 2018 +8:00 AM - 4:00 PM +CLEVELAND, OH +Tuesda… https://t.co/wiNl9akepp" +05/06/2018,Social_workers,@drjoekort,Homophobia and Biphobia are very different. #bisexual https://t.co/NhuSm0mRTH +05/06/2018,Social_workers,@drjoekort,"Everyone has a sexual orientation and an erotic orientation. Your sexual orientation is to whom your attracted, whi… https://t.co/kTlMY7kh5b" +05/06/2018,Social_workers,@drjoekort,@robynochs I love this quote from you. The first being that people fail to understand that identity and behaviour a… https://t.co/29YEy9l74h +05/06/2018,Social_workers,@drjoekort,"RT @robynochs: I'm quoted in this article about biphobia in W24, a South African publication: ""Biphobia - why are women afraid of dating bi…" +05/06/2018,Social_workers,@drjoekort,RT @DrDavidLey: The idea that #Porn is causing erectile issues gets a surprisingly sophisticated critical examination. Yet more indication… +05/06/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: Contrary to popular belief, violence in #porn is not increasing--in fact, it actually appears to be decreasing and vie…" +05/06/2018,Social_workers,@drjoekort,@hlcorliss @nicolevankim @hopehjun Where would I find more information on current research on lesbian sexuality and health? +05/05/2018,Social_workers,@drjoekort,@VP Except the LGBTQ Americans you forgot to say. +05/05/2018,Social_workers,@drjoekort,Great article and video on female sexual fluidity https://t.co/oP7jbqJUop +05/04/2018,Social_workers,@drjoekort,RT @OregonJOBS2: Dog hides when you call her inside https://t.co/OsBwCXpuzD +05/04/2018,Social_workers,@drjoekort,RT @TonyOrlando: Tag your friends 😂🎗💛💝 https://t.co/wE2S4i7UMn +05/04/2018,Social_workers,@drjoekort,What It Means If Lesbians Watch And Like Straight Porn—Tast in porn doesn't have to line up with real-life sexual o… https://t.co/YILdjJi6fO +05/04/2018,Social_workers,@drjoekort,@snglbuddy @emahoney3 Lol yes +05/04/2018,Social_workers,@drjoekort,@emahoney3 It’s true he’s correct. You’re very mature +05/03/2018,Social_workers,@drjoekort,"RT @DrDavidLey: I’m honored to call Doug Braun-Harvey and Michael Vigorito friends, colleagues and teachers. I support their kind, empathic…" +05/02/2018,Social_workers,@drjoekort,"@AsexualJournal Yessss! I am now a proud patron of The Asexual on @Patreon, and you should be too: https://t.co/uIxKXPSxNG" +05/02/2018,Social_workers,@drjoekort,"Masturbation month in May, I’m reminded of clients who struggle not to masturbate join NoFap movement men are deepl… https://t.co/syZVzi1cRZ" +05/02/2018,Social_workers,@drjoekort,"I’ve never read a death certificate that read, “Killed by news of child being LGBTQ+” it doesn’t kill or harm anyone." +05/02/2018,Social_workers,@drjoekort,@CGeterLMFT Lol +05/01/2018,Social_workers,@drjoekort,Happy masturbation month! https://t.co/3EtTQutKm2 +05/01/2018,Social_workers,@drjoekort,"Intake to Discharge: Working with Trans Clients-understanding bias, explore how microaggressions and privilege nega… https://t.co/dxP8ddWRV3" +05/01/2018,Social_workers,@drjoekort,@DrDavidLey @anjel990 Yes we have it’s complex. I love the discussion. +05/01/2018,Social_workers,@drjoekort,"Great article by my friend and colleague @DrDavidLey Where Are All the Bisexuals Hiding? +For researchers and prospe… https://t.co/lxD41Cl5lJ" +05/01/2018,Social_workers,@drjoekort,@DrDavidLey @anjel990 Great article as usual and thanks for citing me! +04/30/2018,Social_workers,@drjoekort,"How Sex Educators Talk To Their Sons About Consent “If you start early, it becomes innate I explain what sex is, t… https://t.co/ivUqJQIAkp" +04/30/2018,Social_workers,@drjoekort,@bmosley45 @ThatChrisRyan @DrDavidLey You’re only talking about some men—not all men. Many men do understand women… https://t.co/oRpR3Konkm +04/29/2018,Social_workers,@drjoekort,"Training therapists in Scottsdale and Phoenix on LGBTQ, kinks and fetish’s until Wednesday. +https://t.co/4tGgFXCzO3" +04/29/2018,Social_workers,@drjoekort,@dmartosko @sarahcpr @kathygriffin Is this a joke? No president has ever been as vulgar as Trump. @kathygriffin is… https://t.co/Bj9U8ujKsQ +04/29/2018,Social_workers,@drjoekort,"Gay men are more sexual than straight men/women and lesbians. It’s not a gay thing, it’s a guy thing." +04/29/2018,Social_workers,@drjoekort,"RT @stevesilberman: Trump, who openly mocked a disabled reporter during his campaign, said today he finds the Paralympics “tough to watch.”…" +04/27/2018,Social_workers,@drjoekort,"RT @Mariska: To the survivors of his abuse, and to all survivors –whether you receive justice swiftly or many years down the road, know tha…" +04/27/2018,Social_workers,@drjoekort,@samkalidi Lmao!!!!!! +04/26/2018,Social_workers,@drjoekort,RT @pnetworker: Lovely personal essay from @pnetworker contributor @drjoekort on finally fighting back against the stereotypes of manhood h… +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein My hope that all this labeling is just a stage where people are taking apart the label… https://t.co/ymudA1grtq +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein That does sound nice 👍🏻 +04/25/2018,Social_workers,@drjoekort,"RT @AsexualJournal: ""Sexual desire refers to the desire for sexual activity, whilst sexual attraction refers to the desire to engage in sex…" +04/25/2018,Social_workers,@drjoekort,@AsexualJournal @sydneykerosene Love this! +04/25/2018,Social_workers,@drjoekort,"RT @AsexualJournal: ""It’s not til later that I learn there’s a difference between sexual desire and sexual attraction. (...) + +To put it in…" +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein What I love is people creating their own boutique identities. +04/24/2018,Social_workers,@drjoekort,"RT @katebornstein: Q4 Using hetero/homo/bi -sexual as base for the language of gendered sexual attraction, I propose mixsexual for people w…" +04/24/2018,Social_workers,@drjoekort,RT @elvisgomes90: @drjoekort I am grateful that u wrote this article! U nuanced things extremely well & I fully agree that the anxiety-prov… +04/24/2018,Social_workers,@drjoekort,RT @DrDavidLey: Even further evidence that the concept of sex addiction is rooted in LGBTQ stigma. https://t.co/r4UtHdVReu +04/22/2018,Social_workers,@drjoekort,Teaching at The University of Michigan Sexual Health Certificate Program next two days on LGBTQIA issues at Michiga… https://t.co/0KwivpLHxf +04/22/2018,Social_workers,@drjoekort,@DrDavidLey Lol I saw this today too +04/22/2018,Social_workers,@drjoekort,“ We stand for sexual health not only as an essential component of health and well-being but more importantly as so… https://t.co/pacTiAfRr0 +04/22/2018,Social_workers,@drjoekort,"Doug Braun-Harvey and Michael Vigorito accepted an award for their book, “Treating Out of Control Sexual Behavior:… https://t.co/CAGwb6o9B7" +04/21/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: When asked whether their feelings about their body have caused them to avoid sex, 20 percent of gay men said yes, comp…" +04/20/2018,Social_workers,@drjoekort,"@VP I received counter book homophobic VP Pence Marlon Bundo, a lonely bunny lives w/Grampa, Mike Pence - VP of US… https://t.co/qD4yk4jY15" +04/20/2018,Social_workers,@drjoekort,"Some male sexual assault victims feel left behind by #MeToo | For some male victims of sexual assault and abuse,… https://t.co/2oxPg1KG9G" +04/20/2018,Social_workers,@drjoekort,"RT @DrDavidLey: The belief that #Porn is getting harder (ahem) and more violent is based in rhetoric, morality & has been repeated for deca…" +04/19/2018,Social_workers,@drjoekort,"I am in the process of re-writing my book, ""Cracking the Erotic Code"" for everyone and not just gay men. https://t.co/5UF9053ydX" +04/19/2018,Social_workers,@drjoekort,@JillianKeenan I hope you do respond. +04/19/2018,Social_workers,@drjoekort,RT @JustinLehmiller: Transitional #bisexuality: this study found that nearly half of gay men surveyed said they identified as bisexual at a… +04/19/2018,Social_workers,@drjoekort,@birdsandbeespod You should be you work really hard +04/18/2018,Social_workers,@drjoekort,"Teaching LGBTQ 🏳️‍🌈 issues to the community mental health staff here in Flint, MI." +04/18/2018,Social_workers,@drjoekort,@birdsandbeespod Congratulations 🎉🎊🍾! +04/18/2018,Social_workers,@drjoekort,@JustinLehmiller Just pre-ordered it! +04/18/2018,Social_workers,@drjoekort,@JustinLehmiller I can’t wait!! You’re so smart and I’m sure the book will be very informative. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Honestly no I think that would be horrible. Because then it would be seen as something that can chang… https://t.co/xDELXOCBdZ +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 I wrote this article in the past about bisexuals https://t.co/fV6mFjKlN8 +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Yes but I think it is because of not having a community of their own to go to. And with the rejection… https://t.co/shKdOhsoAt +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 I added it! Thank you very much for the feedback. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Ugh you’re right I should have included that I might edit it in. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Thank you so much! +04/16/2018,Social_workers,@drjoekort,Homosexual Obsessive Compulsive Disorder (HOCD): Obsessive doubts about one’s sexual identity may be more than just… https://t.co/sHmTwdcSLf +04/15/2018,Social_workers,@drjoekort,"RT @HuffPost: ""Twenty percent of all youth experiencing homelessness identified as bisexual. Not 20 percent of LGBTQ youth. Twenty percent…" +04/14/2018,Social_workers,@drjoekort,What is the difference between a bisexual man and a straight man who has sex with men? Hear me discuss this here https://t.co/L2PKja63YQ +04/13/2018,Social_workers,@drjoekort,RT @DrDavidLey: For all those people who believe porn destroys - here’s amazing examples of how it increases self acceptance and decreases… +04/12/2018,Social_workers,@drjoekort,I thought this was a joke 😳 https://t.co/E1HPeqiiGI +04/09/2018,Social_workers,@drjoekort,@TonyRobbins you had an opportunity to listen and you failed. I hope you get another chance and this time less talk… https://t.co/UY8EQU3sda +04/08/2018,Social_workers,@drjoekort,I have to agree with Kathy here. Should have been a dialogue with this women not a one way street pushing her away. https://t.co/LWhYFbOLOF +04/08/2018,Social_workers,@drjoekort,Wow! He’s not even listening to her. I’m listening. I’m learning. #metoo https://t.co/3Ee9qLYIJu +04/07/2018,Social_workers,@drjoekort,@fakedansavage @hemantmehta He has become a caricature of himself. +04/07/2018,Social_workers,@drjoekort,@jeanharrison @mattsuede @fakedansavage Lmao +04/07/2018,Social_workers,@drjoekort,@hemantmehta I can’t believe he’s still alive and that he’s still spewing his hatred and homophobia. He’s despicable. +04/07/2018,Social_workers,@drjoekort,RT @oldbiddyyelling: This made my day 😂 https://t.co/JPaM38GjKO +04/06/2018,Social_workers,@drjoekort,LGBTQIA Certification Program: https://t.co/CQn5NsBz2X via @YouTube +04/06/2018,Social_workers,@drjoekort,"Sexual Non-Monogamy: ask couples what their contract is around sex and commitment. An assumed or explicit contract,… https://t.co/RsuPnP6swh" +04/05/2018,Social_workers,@drjoekort,@Ziad_Reslan @elizabarclay @jack_turban @Grindr We look at it as out-of-control sexual behavior and affect dysregul… https://t.co/xQBt9jq7fL +04/05/2018,Social_workers,@drjoekort,@Ziad_Reslan @elizabarclay @jack_turban @Grindr Actually there is not a dearth of discussion on things like this in… https://t.co/ce3fBwG0qM +04/05/2018,Social_workers,@drjoekort,So important to challenge old ideas and research. https://t.co/aMFjGLi6S4 +04/05/2018,Social_workers,@drjoekort,"Hear about our new online LGBTQIA Certification Program for therapists, educators and medical professionals. Regist… https://t.co/xUC0Kc7idI" +04/05/2018,Social_workers,@drjoekort,@TonyOrlando Happy birthday! Sweet Summer Days of my Life. Thank you for that Dawn show please do another one +04/05/2018,Social_workers,@drjoekort,RT @drjoekort: My new e-book is now available. While written for gay men this book is useful for all people who want to understand their er… +04/03/2018,Social_workers,@drjoekort,"Here is a recent interview of me on Toxic Masculinity, Religious Abuse and Sexual Shame and Gender Identity Express… https://t.co/MTka5pGFVV" +04/01/2018,Social_workers,@drjoekort,"FUNDRAISER for Ruth Ellis Center-Highland Park + +Here is a sneak… https://t.co/vDcAMluS3L" +04/01/2018,Social_workers,@drjoekort,RT @SydneyTherapist: Relationship wisdom from love guru Esther Perel https://t.co/WT1AfyzABe +03/30/2018,Social_workers,@drjoekort,"@TonyOrlando Creating LGBTQ Childhood Heroes - At the tender age of 11, my very public, outspoken interest in Tony… https://t.co/ETEIqv0TZF" +03/30/2018,Social_workers,@drjoekort,@snglbuddy @CheriJacobus What is +03/29/2018,Social_workers,@drjoekort,RT @BiFamilies: Guide to Mixed Orientation Marriages https://t.co/K0DDW16K0L #mixedorientationmarriages #MoMs #bicouples #biparents +03/29/2018,Social_workers,@drjoekort,Craigslist shuts down its personal ad section to avoid being blamed for sex trafficking and Walmart plans to ban Co… https://t.co/O4w5UkdRCO +03/28/2018,Social_workers,@drjoekort,The first Chemical Dependency IOP for LGBTQ in Michigan https://t.co/0iwJn7Jo2a +03/28/2018,Social_workers,@drjoekort,@therealroseanne @RoseanneOnABC The reboot of Roseanne was excellent. And the gender fluid son was very touching. +03/27/2018,Social_workers,@drjoekort,"RT @pnetworker: We're still riding high from #PNSYMP2018 in @pnetworker land! For a post-conference injection, check out https://t.co/dSfof…" +03/27/2018,Social_workers,@drjoekort,Read about my new book for therapists and our now available LGBTQ online certification program for mental and medi… https://t.co/13HcMSjAnx +03/27/2018,Social_workers,@drjoekort,@kathygriffin Well I love your “cranium”. It’s what makes you funny af +03/27/2018,Social_workers,@drjoekort,@DrDavidLey I did bathroom walls in the 80’s in college. That was the original Grindr. +03/26/2018,Social_workers,@drjoekort,@AnnSilvers Thank you! +07/01/2018,Social_workers,@BDUTT,@akannampilly Thank you +07/01/2018,Social_workers,@BDUTT,@Biorahul It's not trivial. Live it and you shall know +07/01/2018,Social_workers,@BDUTT,@sajadlone @amitabhmattoo @imranrezaansari @Junaid_Mattu Lol 😎😚 Junaid ! I think you had better answer that one yourself ! +07/01/2018,Social_workers,@BDUTT,@sajadlone @amitabhmattoo @imranrezaansari @Junaid_Mattu Fascinating! And I don't mean just the food 😎 +07/01/2018,Social_workers,@BDUTT,@Biorahul Most of the trolls are within the party's own base. The minister has made a public statement on it. Should she not be supported? +07/01/2018,Social_workers,@BDUTT,Am glad @SushmaSwaraj has decided to take the filth of trolls head on. But why are her cabinet colleagues - even th… https://t.co/HFoNcs42v3 +07/01/2018,Social_workers,@BDUTT,"RT @TheWorldPost: If even India's foreign minister isn't safe from right-wing trolls, who is? @bdutt asks for @PostOpinions. https://t.co/f…" +07/01/2018,Social_workers,@BDUTT,"RT @RosaO_Hara: Opinion | If even India’s foreign minister isn’t safe from right-wing trolls, who is? https://t.co/IcJHMaLs5r by @BDUTT" +07/01/2018,Social_workers,@BDUTT,"RT @Mallick_Saab: If even India’s foreign minister isn’t safe from right-wing trolls, who is? + +Well that's right if they can't support thei…" +07/01/2018,Social_workers,@BDUTT,"RT @SalmanSoz: ~@BDUTT: If even India’s foreign minister isn’t safe from right-wing trolls, who is? + +“... not even the other women in the…" +07/01/2018,Social_workers,@BDUTT,"RT @BDUTT: ""You cant keep snakes in your backyard & expect them only to bite your neighbors"": My piece in @washingtonpost on the Right Wing…" +06/30/2018,Social_workers,@BDUTT,@sonaliranade Agree +06/30/2018,Social_workers,@BDUTT,@jameelyusuf @basiitzargar @islahmufti @Drqasba I knew the other bridges but not the story of zero bridge so interesting +06/30/2018,Social_workers,@BDUTT,Neither buzz of Congress and PDP nor BJP and PDP ( with a split or a new leader) seems a fair outcome to the break… https://t.co/PNDig9uyOU +06/30/2018,Social_workers,@BDUTT,@sonaliranade Yes . +06/30/2018,Social_workers,@BDUTT,Shame on those who want to make Rape competitive. #Mandsaur is horrific as was #Kathua. The difference- in Kathua… https://t.co/MsK1R6F8xx +06/30/2018,Social_workers,@BDUTT,@sharmanagendar @rohini_sgh @RaisinaSeries Yeah but extraordinarily Amar singh and Sanjay botu spoke of this sting op on record +06/30/2018,Social_workers,@BDUTT,@sharmanagendar @rohini_sgh @RaisinaSeries And they both said this to me on camera - the sting op +06/30/2018,Social_workers,@BDUTT,@PawanDurani @Shehzad_Ind @sunandavashisht @rahulpandita @listenshahid @AartiTikoo @tehseenp @ShujaUH… https://t.co/1plAaDRuZJ +06/30/2018,Social_workers,@BDUTT,Sir repulsive. And as I wrote . https://t.co/2X69NnoWFw.. but what action are we going to take against this odious… https://t.co/YImCgWcRFA +06/30/2018,Social_workers,@BDUTT,RT @anupamaskapoor: Must read piece by @BDUTT https://t.co/6dE4jMD8qQ +06/29/2018,Social_workers,@BDUTT,Did you call her anti national when @MehboobaMufti was in government with the BJP ? Or is this your belated patriot… https://t.co/k86bDyVi7f +06/29/2018,Social_workers,@BDUTT,@anirban23456 @Prashan86617347 Don't waste your energy +06/29/2018,Social_workers,@BDUTT,@psgk99 @MehboobaMufti @htTweets True +06/29/2018,Social_workers,@BDUTT,@shangpal Not advocating chest thumping naeem saheb. Surely you know that ! +06/29/2018,Social_workers,@BDUTT,"If @MehboobaMufti had walked out on BJP & not retreated into silence that was the antithesis of her personality, sh… https://t.co/6BbKSRA59H" +06/29/2018,Social_workers,@BDUTT,@amitabhmattoo No worries. We are allowed to disagree. I have always held that @MehboobaMufti had the opportunity t… https://t.co/1y26VoJ0dq +06/29/2018,Social_workers,@BDUTT,Mehbooba Mufti’s Manmohan Moment. My column in @htTweets https://t.co/WDsTWsg8Cz via @htTweets +06/29/2018,Social_workers,@BDUTT,@anirban23456 Thank you +06/29/2018,Social_workers,@BDUTT,"RT @munirkhan_ips: Today at Yatra camp, Pantha Chowk. https://t.co/gTw9dwexy9" +06/29/2018,Social_workers,@BDUTT,@arjunk26 This is the cutest thing! +06/29/2018,Social_workers,@BDUTT,@rocky_indian7 @neha_aks @TheJaggi right here you are getting all agitated and fixated over what i say and what i dont say. Irony much. +06/29/2018,Social_workers,@BDUTT,@neha_aks @TheJaggi I am so utterly bored with the twisted reductionism of twitter. Cheers. +06/29/2018,Social_workers,@BDUTT,RT @erinbiba: Read this thread. Every single male shooter has a history of abuse and violence towards women. Every one. The latest newsroom… +06/29/2018,Social_workers,@BDUTT,And then say online smears are not cues to mob violence offline. Bullshit. It's all part and and parcel of an orga… https://t.co/rKVF4uut8G +06/28/2018,Social_workers,@BDUTT,"RT @TheRyanParker: There is an active shooter in their building, and they are still doing their job. I am fucking speechless right now. htt…" +06/28/2018,Social_workers,@BDUTT,"RT @LaurenPelley: Reporters at the Capital Gazette are covering this shooting. + +A shooting that may have killed their own colleagues, at t…" +06/28/2018,Social_workers,@BDUTT,This happened inside a newsroom. https://t.co/E5pS8j7evr +06/28/2018,Social_workers,@BDUTT,@RaviKapoor @ofnosurnamefame Thank you sir +06/28/2018,Social_workers,@BDUTT,@ofnosurnamefame Thanks. I will have no problem conceding if I am wrong. Thank you for civil disagreement. +06/28/2018,Social_workers,@BDUTT,@ofnosurnamefame Ok will check again. +06/28/2018,Social_workers,@BDUTT,@TomDEvelyn @seagullbooks This is beautiful. And sad. +06/28/2018,Social_workers,@BDUTT,@PawanDurani Please do and sorry to hear that +06/28/2018,Social_workers,@BDUTT,@Aparna @iamrana @crossword_book @Books_at_Bahri @WestlandBooks Mubaraks ! +06/28/2018,Social_workers,@BDUTT,@PawanDurani That's lovely +06/28/2018,Social_workers,@BDUTT,@syrinje The carafe is so pretty +06/28/2018,Social_workers,@BDUTT,I am agnostic. I have no religion. But I don't hate anyone's religion unlike you. https://t.co/YhrgWvqmJC +06/28/2018,Social_workers,@BDUTT,Would we go to a gurudwara and refuse to drape our head? This is just sad to read. Irrespective of your own faith w… https://t.co/sD0ACgaOnf +06/28/2018,Social_workers,@BDUTT,What a lovely uplifting photo https://t.co/NRNjH1OU4s +06/28/2018,Social_workers,@BDUTT,RT @ShujaUH: Ram Madhav to @IndiaToday: We felt there was less effort by @MehboobaMufti lead govt to encourage good governance in the state… +06/28/2018,Social_workers,@BDUTT,@AartiTikoo Chalo. Not like you to be so reductionist. But anyway... +06/28/2018,Social_workers,@BDUTT,@AartiTikoo What part is the obfuscation. I said Lashkar loud and clear in all my tweets. But I don't separate verb… https://t.co/TxPWBvyZH9 +06/28/2018,Social_workers,@BDUTT,For those who think hatred on social media is not injurious to health read these details in the note by… https://t.co/OkWRXOOjII +06/28/2018,Social_workers,@BDUTT,Police in @JmuKmrPolice officially confirm what one reported yesterday: Lashkar ordered Assasination of… https://t.co/w8YDC2WAR4 +06/28/2018,Social_workers,@BDUTT,Hey @rahulkanwal the word 'help' itself is a give away. Assumes women are primary home keepers and men supplement.… https://t.co/YSd5U736Fq +06/28/2018,Social_workers,@BDUTT,@Rajat_K_Sondhi @omchakrala @ngogoi98 Because govt insisted on retaining owner and other conditions +06/28/2018,Social_workers,@BDUTT,RT @rohanduaTOI: TOI EXC:Killing of Kashmir journalist Shujaat Bukhari was planned right in the heart of Pakistan on orders of Lashkar say… +06/28/2018,Social_workers,@BDUTT,@ngogoi98 Still the same point. Who destroyed it +06/28/2018,Social_workers,@BDUTT,Agree not sure why folks sneer at Air India instead of at the politicians who destroyed it and will neither set it… https://t.co/BSxeFdSrC9 +06/28/2018,Social_workers,@BDUTT,RT @drharshvardhan: Union Environment Ministry @moefcc does not grant tree felling permission. Such permission is given under the State Act… +06/27/2018,Social_workers,@BDUTT,RT @TheSatishDua: There wasn't another one like Sam. https://t.co/1eTueY8sjj +06/27/2018,Social_workers,@BDUTT,"RT @htTweets: All 3 accused in #ShujaatBukhari murder identified, say Jammu and Kashmir police, reports @mirehsankhaliq https://t.co/qPX7Lg…" +06/27/2018,Social_workers,@BDUTT,@ashishgeek its actually in every single newspaper. so why dont you send them those messages +06/27/2018,Social_workers,@BDUTT,Highly ranked police officials confirm major breakthrough in the assassination of #ShujaatBukhari- killers identifi… https://t.co/x0lBULTE7M +06/27/2018,Social_workers,@BDUTT,Why do men who hate women also hate Muslims ? Any connection ? here's a love note I received on Facebook today. An… https://t.co/P2R8AUOkNM +06/27/2018,Social_workers,@BDUTT,@vsmaske Er look at his group name +06/27/2018,Social_workers,@BDUTT,@imm_jay You will have to go to FB and hear and read +06/27/2018,Social_workers,@BDUTT,While we debate how women are treated in India I urge all - irrespective of political affiliation - to hear this ma… https://t.co/9GY8r4DJFX +06/27/2018,Social_workers,@BDUTT,@Mallick_Saab Thanks +06/27/2018,Social_workers,@BDUTT,@seshanm @twitrathon chalo- i am glad you concede to the rotten things :-) +06/27/2018,Social_workers,@BDUTT,@twitrathon thanks +06/27/2018,Social_workers,@BDUTT,Amid talks of another attempted Mahagatbandhan in Bihar & a rapprochement between @NitishKumar & @INCIndia -… https://t.co/nvZJZL8TwV +06/27/2018,Social_workers,@BDUTT,@SandipGhose @jgopikrishnan70 @pGurus1 More intriguing whether NDTV finally admits aftwr this order that it's not b… https://t.co/33Wh4ymfYA +06/26/2018,Social_workers,@BDUTT,Ha ha yeah. #BarkhaForPm since they are ALL listening to me 😎 https://t.co/P9M8Zhvvxc +06/26/2018,Social_workers,@BDUTT,Is a murder mystery the absolute best respite from life. Or does that make one macabre https://t.co/vAx8uDIBB3 +06/26/2018,Social_workers,@BDUTT,"RT @dna: Sebi orders open offer for NDTV +https://t.co/lrvEZnmT7X https://t.co/a66ODLiFQB" +06/26/2018,Social_workers,@BDUTT,@jgopikrishnan70 Ha ha Gopi +06/26/2018,Social_workers,@BDUTT,@rohanduaTOI @SushmaSwaraj Or maybe the only one so far +06/26/2018,Social_workers,@BDUTT,@RTReserve i often do :-) +06/26/2018,Social_workers,@BDUTT,@AbdulMajidZarga @washingtonpost 😎 +06/26/2018,Social_workers,@BDUTT,@adebbarma @BJP4India Kindly look at the tweets and the ones who sent them. +06/26/2018,Social_workers,@BDUTT,@drshraddha16 @SushmaSwaraj @AskAnshul @rishibagree sorry madam. LIke a true troll you tweet without reading. The p… https://t.co/B3ibXoYKZ0 +06/26/2018,Social_workers,@BDUTT,@Turmaan @aamirwani88 @rahatindori thats beautiful- and sadly true +06/26/2018,Social_workers,@BDUTT,"""You cant keep snakes in your backyard & expect them only to bite your neighbors"": My piece in @washingtonpost on t… https://t.co/OXRUmZ4a6I" +06/26/2018,Social_workers,@BDUTT,@sameeryasir sending solidarity in spirit. +06/26/2018,Social_workers,@BDUTT,@ruchicatomar thank you ruchica- I meant to say that earlier +06/26/2018,Social_workers,@BDUTT,@nkharoo @washingtonpost @SushmaSwaraj you too :-) +06/26/2018,Social_workers,@BDUTT,@nkharoo @washingtonpost @SushmaSwaraj you are commenting without reading the piece- something trolls do ! +06/26/2018,Social_workers,@BDUTT,@KrishnaAnand_ @washingtonpost @SushmaSwaraj I write on whatever I feel like. They do the same. +06/26/2018,Social_workers,@BDUTT,@ChefKak thank you sanjay. +06/26/2018,Social_workers,@BDUTT,If even India's Foreign Minister is not Safe from Right-Wing Trolls; Who Is? My piece in @washingtonpost on the ugl… https://t.co/zRZotl8u7m +06/25/2018,Social_workers,@BDUTT,@KarenAttiah its the same everywhere. Sigh. WHO are these people. +06/25/2018,Social_workers,@BDUTT,This is stunningly written. I lived with anxiety attacks for a short phase in life and if you have or know anyone w… https://t.co/435I6rrxaq +06/25/2018,Social_workers,@BDUTT,RT @Ram_Guha: A good piece by ⁦@BDUTT⁩ on the way forward in Kashmir. https://t.co/4VuKZ8Tw64 +06/25/2018,Social_workers,@BDUTT,If I were the Congress I'd apologise for the #Emergency and use that apology and regret to build an authentic case… https://t.co/rXUSaRXYHo +06/25/2018,Social_workers,@BDUTT,@AbdulMajidZarga Koi nahin hi. It's a free world and youre entitled your view +06/25/2018,Social_workers,@BDUTT,@ms_rana @akhileshsharma1 @darainshahidi @ndtv 😎 +06/25/2018,Social_workers,@BDUTT,RT @aamirwani88: @BDUTT’s ten point formula to try and bring back Kashmir from the abyss it has fallen into. Agree with all ten pints - if… +06/25/2018,Social_workers,@BDUTT,@SikandDipali @_HazirJawab @free_thinker @AltNews @boomlive_in @SMHoaxSlayer Exactly. And I believe fabrication of… https://t.co/DQtsYcG2O9 +06/25/2018,Social_workers,@BDUTT,@free_thinker @AltNews @boomlive_in @SMHoaxSlayer The major players circulating this would be perpetrators. Because… https://t.co/8bYj7NgBjF +06/25/2018,Social_workers,@BDUTT,My Ten Point Manifesto for a Wounded Valley- Ten things India must agree on for things to get better in Kashmir. https://t.co/NQOaIDHSGd +06/24/2018,Social_workers,@BDUTT,@ZeeMohamed_ Or do you think I spell like this..but look at the sickness of it all +06/24/2018,Social_workers,@BDUTT,Dear @AltNews @boomlive_in @SMHoaxSlayer - could you help trace who is photo shopping this bilge and circulating i… https://t.co/caGVODdzMV +06/24/2018,Social_workers,@BDUTT,@seagullbooks The crockery looks divine but please no instant coffee ! +06/24/2018,Social_workers,@BDUTT,The right wing trolls are so consumed by anti Muslim hatred and communal poison and the need to foist dogma as doct… https://t.co/aB7ipbqUKz +06/24/2018,Social_workers,@BDUTT,"Dear @SushmaSwaraj it is odious what you have been subjected to. But Ma'am imagine if this happens to you, with all… https://t.co/6KYkQEV2Eq" +06/24/2018,Social_workers,@BDUTT,"RT @journalist_army: Salute to the martyr. +Martyrs live for ever. @BDUTT @akshaykumar @roy_rameshwar @Vedmalik1 @narendramodi @tksapru @bhu…" +06/24/2018,Social_workers,@BDUTT,@manuvichar @RanaAyyub @ravishndtv @RisingKashmir thanks. +06/23/2018,Social_workers,@BDUTT,Exactly why i thought the whole hoo- haa over the royal wedding was such classist clap trap https://t.co/L5aXDHwFPF +06/23/2018,Social_workers,@BDUTT,@misra_purak I think the fact that they are the only ones in the entire case to not get bail- and the several unans… https://t.co/WKsmbPYPUg +06/23/2018,Social_workers,@BDUTT,I believe our job is to raise the right questions. Someone has to be answerable for what happened to the babies in… https://t.co/HXvgbdGdIH +06/23/2018,Social_workers,@BDUTT,We have all spoken about Kafeel but this story deserves as much of our attention. The only people not to get bail i… https://t.co/Zoepm2R2AL +06/23/2018,Social_workers,@BDUTT,RT @bahardutt: Well done delhi ! Not in town but there in spirit and in solidarity on #DelhiTreesSOS issue ... this order needs a rethink h… +06/23/2018,Social_workers,@BDUTT,Open incitement to violence is grounds for arrest @spvaid https://t.co/ASbvOa8yqM +06/23/2018,Social_workers,@BDUTT,@arnab822 Agree . Just saying it's not the root +06/23/2018,Social_workers,@BDUTT,No point blaming whats app rumours for the lynching of Muslims. It's a little bit like investigating the meat in Ah… https://t.co/jzE6DftMKc +06/23/2018,Social_workers,@BDUTT,"RT @RujutaDiwekar: The kiranawala, doodhwala & bhajiwala can no longer use #PlasticBags. Will the food industry respond by reducing/ rethin…" +06/22/2018,Social_workers,@BDUTT,@Mahabat99627436 @ShowkatNanda Thanks! +06/22/2018,Social_workers,@BDUTT,@satishkolls @IndiaExplained Mojo to even I have 😎😍😘😗 +06/22/2018,Social_workers,@BDUTT,@satishkolls @IndiaExplained Best part. But part of free media +06/22/2018,Social_workers,@BDUTT,Thank you Navdeep. Exactly. The Army is much wiser than the ideologues. And the TV anchors https://t.co/uSJbo1mPbI +06/22/2018,Social_workers,@BDUTT,@IndiaExplained Eating alone. Watching a movie alone. Free media. +06/22/2018,Social_workers,@BDUTT,What a cover. Breathtaking https://t.co/CtSPapSrLO +06/22/2018,Social_workers,@BDUTT,@declanwalsh @EchoOfIndia @marvisirmed Marvi take care and stay safe and I know you will stay brave +06/22/2018,Social_workers,@BDUTT,@saliltripathi I have had this position for many years. My view is not in response to the last 24 hours. I loathe s… https://t.co/7wG2nCQfvs +06/22/2018,Social_workers,@BDUTT,"@saliltripathi no Salil, sections of media and opposition have been reporting on it well before and for many years." +06/22/2018,Social_workers,@BDUTT,@vedhamurthyhk @ShowkatNanda exactly +06/22/2018,Social_workers,@BDUTT,@Mahabat99627436 @ShowkatNanda isnt it funny +06/22/2018,Social_workers,@BDUTT,RT @spvaid: Terrorists reportedly affiliated to ISJK. +06/22/2018,Social_workers,@BDUTT,@sneheshphilip he is saying ISJK - Does @spvaid - mean ISIS? +06/22/2018,Social_workers,@BDUTT,@ShowkatNanda cool. thats a lot of words to waste on me. +06/22/2018,Social_workers,@BDUTT,"@ParaRjs those comments were terrible, I agree. But should the response be in kind" +06/22/2018,Social_workers,@BDUTT,@Najar_Arshad @sardesairajdeep this list would be funny - with all its spelling mistakes - if its intent were not so ugly +06/22/2018,Social_workers,@BDUTT,Many reasons to critique PM Modi & the government- and I do so regularly. But i find news on the state of his lapse… https://t.co/KUTwJfMAjQ +06/22/2018,Social_workers,@BDUTT,@NilimDutta perhaps if you read the thread below to which it was responded you wouldnt think so. +06/22/2018,Social_workers,@BDUTT,@NilimDutta it means they claim to speak for Faith but dont speak for any of its finer points. Its not an attack on atheists. +06/22/2018,Social_workers,@BDUTT,"""I was just ashamed to continue in the BJD""- re-up of my interview with @PandaJay in which he says only one bureauc… https://t.co/vrRSfqJ9ze" +06/21/2018,Social_workers,@BDUTT,@ChefTZac @bombaycanteen ok beam me up NOW +06/21/2018,Social_workers,@BDUTT,Actually I am non religious. But people like you who use Muslim as a form of Abuse are Godless. https://t.co/rF6L9tRST4 +06/21/2018,Social_workers,@BDUTT,@dhume @sunetrac And the freedom of institutions. Nothing better illustrates that than the craven media here - even… https://t.co/pObSvFV5pF +06/21/2018,Social_workers,@BDUTT,A 1.5 million dollars disaster then ! Wow. Re-up my take down in @washingtonpost https://t.co/RAy2PpMlIl +06/21/2018,Social_workers,@BDUTT,"""Modi government is trying to destroy us. Congress doesnt have to worry about us; but what will they do when BJP ta… https://t.co/bz4qeuH8HZ" +06/21/2018,Social_workers,@BDUTT,@nistula What a tasveer +06/21/2018,Social_workers,@BDUTT,"RT @mauseen_khan: A family from Anantnag made a heartfelt appeal to its militant son Roshan Zammer to shun violence & return home. +""Had I b…" +06/21/2018,Social_workers,@BDUTT,"RT @saikatd: Shujaat Bukhari's son writes a beautiful tribute to his father's life and work +https://t.co/n5hTm39bcf" +06/21/2018,Social_workers,@BDUTT,@SalmanSoz Then you agree with me Salman that there is no legal obstruction as such +06/21/2018,Social_workers,@BDUTT,@ReshmiDG Perhaps you could watch my detailed interview with @paranjoygt. I document the warnings over one year -… https://t.co/kA8veBPCNZ +06/21/2018,Social_workers,@BDUTT,@SalmanSoz Rumours of a split in PDP have been there for at least a year. I am not as clear on the specific legality +06/21/2018,Social_workers,@BDUTT,Whispers abound in Kashmir about a split in the PDP in a few months and a reunion of one faction with the BJP. Two… https://t.co/WEyNr6E2v4 +06/20/2018,Social_workers,@BDUTT,@rraina1481 @ReallySwara Just unspeakably horrible sir +06/20/2018,Social_workers,@BDUTT,@tapeshbagati @maneeshchhibber Yes but they would have to split the PDP. +06/20/2018,Social_workers,@BDUTT,@swatisingh1995 @rohini_sgh How lovely +06/20/2018,Social_workers,@BDUTT,"RT @gauravwankhede: what an interview @BDUTT - loved it, you have a very easy and natural style of interviewing people. @msisodia . https:…" +06/20/2018,Social_workers,@BDUTT,@nowme_datta in our heads we are all 18 +06/20/2018,Social_workers,@BDUTT,@Abrarchoudhary_ @Siddharth121099 @MirrorNow @ndtv thanks. and maybe soon. +06/20/2018,Social_workers,@BDUTT,@AlkaJacob Agree. Cookie cutter- even dress the same way +06/20/2018,Social_workers,@BDUTT,@KhaledAlmaeena thank you +06/20/2018,Social_workers,@BDUTT,@owaisalig117 yeah +06/20/2018,Social_workers,@BDUTT,@ITheTaurus thanks for writing +06/20/2018,Social_workers,@BDUTT,I cried when I watched this. Not just because the story is so incredibly disturbing- but also because TV news can b… https://t.co/ciHkq6mwVk +06/20/2018,Social_workers,@BDUTT,@commandersaini You are an abomination on the military you https://t.co/QHjXKQYG2M represent +06/20/2018,Social_workers,@BDUTT,@maneeshchhibber Will be highly irresponsible if anyone tries to cobble anything. Not that I think it's likely +06/20/2018,Social_workers,@BDUTT,NN Vohra is kind of like Queen Elizabeth- no I don't mean in the sense of of being Royal etc- but ageless and dough… https://t.co/Hi9OcnMvfp +06/20/2018,Social_workers,@BDUTT,"RT @meerasanyal: “Do not fill the crack with more cement; rather, find a way to bring down the whole wall instead.” Thought provoking piece…" +06/20/2018,Social_workers,@BDUTT,"Isn't it a failure to not build trust with IAS officers I ask @msisodia; ""90% officers are excellent. But they're b… https://t.co/o6mYE7XvZ6" +06/20/2018,Social_workers,@BDUTT,@sameeryasir Yeah totally disingenuous +06/20/2018,Social_workers,@BDUTT,RT @vdehejia: Very sorry to learn that @arvindsubraman 's departure as CEA and imminent return to the US is now official. He follows both R… +06/20/2018,Social_workers,@BDUTT,@anirudhganu @HaseebDrabu @rammadhavbjp @MehboobaMufti you guys should decide - you want him to be mascot of the RW… https://t.co/nyjp4MqbfP +06/20/2018,Social_workers,@BDUTT,Wonderful gesture to meet the family of the extraordinarily courageous #Aurangzeb @nsitharaman - I am sure… https://t.co/v5CIoPuzkQ +06/20/2018,Social_workers,@BDUTT,@joshianil00 @HaseebDrabu @rammadhavbjp @MehboobaMufti What's my program got to do with anything? Or you are just silly +06/20/2018,Social_workers,@BDUTT,Sir you and your friend seem a bit confused - @haseebdrabu & @rammadhavbjp co-wrote the alliance agreement.… https://t.co/dvYGpnqaEb +06/20/2018,Social_workers,@BDUTT,Well sir - not that I know why you are addressing me- I am not the Kashmir Envoy - howeverl I'd be the first to arg… https://t.co/WTxFVf9WkS +06/20/2018,Social_workers,@BDUTT,@mkatju why are you addressing me on this. I am first one to said soldiers cannot pay the price of failed politics +06/20/2018,Social_workers,@BDUTT,Charming farewell note to @arvindsubraman https://t.co/O2ktlhJRMN +06/20/2018,Social_workers,@BDUTT,@sanjeevk3 @ArvindKejriwal @narendramodi @RahulGandhi @msisodia yes right now highlights. Full interview at night +06/20/2018,Social_workers,@BDUTT,I am not forecasting short term peace @mkatju - for three years I have been warning of the dire spiralling situatio… https://t.co/9A46SuZrJE +06/20/2018,Social_workers,@BDUTT,"""Did @arvindkejriwal contest @narendramodi or @rahulgandhi ?"" : In my intvw with @msisodia he lashes out at Congres… https://t.co/C1MtSIrhsf" +06/20/2018,Social_workers,@BDUTT,To be honest Jammu and Kashmir needs a new politics and a new leadership. None of the old formulas have worked. And… https://t.co/1hmPWfbroe +06/20/2018,Social_workers,@BDUTT,@sunetrac Not true. Look at my tweets and articles from then. Forecast it in black and white +06/20/2018,Social_workers,@BDUTT,RT @Chikisarkar: We loved @CitiznMukherjee speech at the rss Nagpur hq and it’s now available to read @juggernautbooks https://t.co/pEaQXio… +06/20/2018,Social_workers,@BDUTT,"RT @DilliDurAst: Rumors on WhatsApp are leading to deaths in India. The messaging service must act. My article. + +https://t.co/IWhRpADsQn" +06/20/2018,Social_workers,@BDUTT,@SandipGhose @msisodia @TheWeekLive True. Fair question +06/20/2018,Social_workers,@BDUTT,"""The LG's premises are not private property; they belong to the people"": @msisodia in this Exclusive on criticism t… https://t.co/RoJ3nju3jx" +06/20/2018,Social_workers,@BDUTT,@krishpachegonkr thank you +06/20/2018,Social_workers,@BDUTT,@schinky25 @MirrorNow @tanvishukla thank you +06/20/2018,Social_workers,@BDUTT,@Mutineer57 No because I don't threaten and bully I express my view and let's others express theirs +06/20/2018,Social_workers,@BDUTT,@areta Thank you. Grateful for your words +06/20/2018,Social_workers,@BDUTT,Thanks Rupa. Intimidation of all kinds is a mind game. We have got to keep going. https://t.co/l0sluYJurW +06/20/2018,Social_workers,@BDUTT,@ranajig Ah well yes +06/20/2018,Social_workers,@BDUTT,@narsing_ch @paranjoygt Thanks. And thanks @paranjoygt for a fair and open hearing +06/20/2018,Social_workers,@BDUTT,😎😗 if we aren't obstructed by shadowy forces ... Soon soon... And thank you. https://t.co/lbI1FEmsE2 +06/20/2018,Social_workers,@BDUTT,@JoBeingjoe Thanks but I was not out of action :) +06/20/2018,Social_workers,@BDUTT,"RT @orfonline: ""How have we understood the #Kashmir question all these years?"" @BDUTT explores. Read on: https://t.co/jfvIZIykp1" +06/19/2018,Social_workers,@BDUTT,@ruchicatomar Thanks +06/19/2018,Social_workers,@BDUTT,RT @ruchicatomar: I remember reading this opinion from @BDUTT weeks after Kathua rape case protests. Relevant read as #BJPDumpsPDP today ht… +06/19/2018,Social_workers,@BDUTT,@Thotatthil @MirrorNow @tanvishukla Thanks +06/19/2018,Social_workers,@BDUTT,@SandipGhose @RikkiAxl ha ha :-) +06/19/2018,Social_workers,@BDUTT,Thank you 😗😎 https://t.co/x8CVRwaRaB +06/19/2018,Social_workers,@BDUTT,RT @sonaliranade: Meanwhile police officers in the valley say women and children have begun to snatch weapons from men on duty writes @bdu… +06/19/2018,Social_workers,@BDUTT,And I said yes. No one will mourn the end of this alliance https://t.co/oNmELy9yQl +06/29/2018,Social_workers,@RaggiKotak,575 brilliant and brave women were arrested in DC yesterday while protesting barbaric immigration policies! Respect! +06/28/2018,Social_workers,@RaggiKotak,RT @guardian: Why is Donald Trump such a massive baby? https://t.co/CCuWRireEw +06/27/2018,Social_workers,@RaggiKotak,"Super awful that this bigotry has been upheld by the Supreme Court! +Trump hails 'tremendous victory' after supreme… https://t.co/l1KuSjdcBw" +06/26/2018,Social_workers,@RaggiKotak,A friend is organising this. Please give a couple of quid to support this brilliant and hilarious event!!! - watch… https://t.co/SvAdNjdYZK +06/26/2018,Social_workers,@RaggiKotak,How can you condemn Trump but stay silent on British brutality? | Aditya Chakrabortty https://t.co/qeDuWsIh9X +06/23/2018,Social_workers,@RaggiKotak,"RT @freemovementlaw: A new edition of the Free Movement guide to settled status, by @NathGbikpi, is out: https://t.co/iFDKbXCx5P" +06/21/2018,Social_workers,@RaggiKotak,Proud to be in the Board of the fantastic Imkaan! https://t.co/rTij24SdZO +06/20/2018,Social_workers,@RaggiKotak,Donald Trump signs executive order to end family separations https://t.co/XtoCGMx4kT +06/20/2018,Social_workers,@RaggiKotak,RT @mckinneytweets: Horrible case. Solicitors begged the authorities not to release a Vietnamese kid in case he was picked up again by traf… +06/18/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: This week is #RefugeeWeek. We start by looking at the legal definition of a refugee. Later in the week we’ll be looking at a… +06/18/2018,Social_workers,@RaggiKotak,Separation at the border: children wait in cages at south Texas warehouse https://t.co/tE075o2lEy +06/17/2018,Social_workers,@RaggiKotak,"RT @NaomiOhReally: ""I'm going to take your child to get bathed,"" is what US officials say to separate children from their parents, accordin…" +06/16/2018,Social_workers,@RaggiKotak,"RT @BBCWorld: US child migrants: 2,000 separated from families in six weeks https://t.co/65eXXeAFky" +06/15/2018,Social_workers,@RaggiKotak,"RT @libertyhq: The Commons has just voted to take away the EU Charter of Fundamental Rights after #Brexit, eroding our rights and equality…" +06/15/2018,Social_workers,@RaggiKotak,"Immigration officers win cake for arresting the most people! Hostile environment disgusting tactics! +https://t.co/tN5voXrIcN" +06/14/2018,Social_workers,@RaggiKotak,"Please sign & RT. Let’s see a giant baby Trump in the sky! +https://t.co/5vSznImN07 via @38_degrees" +06/14/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Today our thoughts are with the friends, families, and loved ones of those who died in #Grenfell Tower. The violent impact of p…" +06/14/2018,Social_workers,@RaggiKotak,"RT @officialJ4G: Today marks the one year anniversary. We stand with Grenfell, the bereaved, the survivors and our incredibly strong commun…" +06/14/2018,Social_workers,@RaggiKotak,"Doctors and nurses excluded from visa cap +Immigration rules to be relaxed for non-EU doctors and nurses - BBC News https://t.co/qTaTf0K5Md" +06/14/2018,Social_workers,@RaggiKotak,RT @copscampaign: Lush's #spycops campaign continues. These blunt new posters are going up in their shop windows this morning. Let's have a… +06/13/2018,Social_workers,@RaggiKotak,RT @WomenandGirlsN: Want to work for our incredible organisation? Check out our latest vacancies! We have some fantastic opportunities #vaw… +06/12/2018,Social_workers,@RaggiKotak,Government under fire for 'outrageous' treatment of modern slavery victims facing deportation from UK https://t.co/VRDZaOM8wH +06/11/2018,Social_workers,@RaggiKotak,"RT @OnePumpCourt: We would love you to be a part of the One Pump Court team as a Family Law Barrister! + +Apply here: + +https://t.co/RHeroUM3x…" +06/11/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Judge refuses applicant's request to have asylum appeal adjourned so he can find a lawyer: ""The case is straightforward a…" +06/10/2018,Social_workers,@RaggiKotak,15000 fascists demonstrated and rioted in London Saturday. Mostly not covered and if it has been - been described a… https://t.co/7kdR8Hl1y4 +06/06/2018,Social_workers,@RaggiKotak,"RT @INQUEST_ORG: INQUEST Trustee Rajiv Menon QC and Inquest Lawyers Group members today gave important statements at the Grenfell Inquiry,…" +06/06/2018,Social_workers,@RaggiKotak,RT @OnePumpCourt: One Pump Court has continued to raise funds for essential work on the infrastructure and development of the Lorraine Posw… +06/04/2018,Social_workers,@RaggiKotak,No 10 expected to lift visa cap preventing doctors entering UK https://t.co/fejp9M65pF +06/03/2018,Social_workers,@RaggiKotak,"RT @safepassageuk: URGENT REQUEST: We need you to write to your MP today. Within a matter of days, Brexit is set to close a legal route to…" +06/02/2018,Social_workers,@RaggiKotak,Legal challenge says ‘right to rent’ rules discriminate against non-UK nationals https://t.co/GmoUgZWIXP +06/02/2018,Social_workers,@RaggiKotak,Please consider doing this. Only takes a minute x https://t.co/nuU5XFdUNi +06/01/2018,Social_workers,@RaggiKotak,RT @WarOnWant: Solidarity with Palestinian medics heroically risking their lives tending to injured protesters. Infuriating that medics are… +06/01/2018,Social_workers,@RaggiKotak,RT @theIMEU: Palestinian nurse Razan al-Najjar was shot in the chest and killed by Israeli snipers today in the besieged Gaza Strip as she… +05/30/2018,Social_workers,@RaggiKotak,RT @Imkaan: We need a bill that safeguards vital women’s organisations and is committed to sustaining specialist services which support Bla… +05/29/2018,Social_workers,@RaggiKotak,"RT @frankie_mj: This is happening THIS THURSDAY! It is due to be a rainy evening, so the perfect day to drink some wine & listen to intere…" +05/29/2018,Social_workers,@RaggiKotak,RT @Imkaan: Violence against women and girls is a human rights issue; the goernment must acknowledge this by giving us a bill that protects… +05/25/2018,Social_workers,@RaggiKotak,"RT @DLPublicLaw: UPDATE: #HomeOffice has amended Removals Policy in response to our legal challenge. See link. + +#accesstojustice + +https://…" +05/25/2018,Social_workers,@RaggiKotak,RT @YousefMunayyer: Read this tweet. Then read it again. And again. https://t.co/Q0XGUPyNxc +05/24/2018,Social_workers,@RaggiKotak,"RT @Imkaan: In order to #TransformDVBill, the government must ensure protection from violence for women with No Recourse to Public Funds (N…" +05/23/2018,Social_workers,@RaggiKotak,"Tell me something I don’t know! +Home Office accused of 'shambolic incompetence' over skilled migrants https://t.co/OfKGV3MHOV" +05/23/2018,Social_workers,@RaggiKotak,"Let's all get tweeting....Donald Trump cannot block anyone on Twitter, court rules https://t.co/2FCloxe12z" +05/23/2018,Social_workers,@RaggiKotak,RT @PEACE4EVEREVER: As long as the Israeli government commits war crimes against the Palestinian people we support their call for a boycott… +05/21/2018,Social_workers,@RaggiKotak,RT @GrenfellUnited: Today is the beginning of a long road to justice & truth. The truth must prevail. We must get justice for the lives los… +05/21/2018,Social_workers,@RaggiKotak,RT @Imkaan: Our thoughts today are with the survivors and loved ones of those who died in the Grenfell Tower fire. If ever there was a more… +05/20/2018,Social_workers,@RaggiKotak,Lawyers representing the families said that despite pressing the Home Office for months on the mounting urgency to… https://t.co/OZLWtuTDzA +05/20/2018,Social_workers,@RaggiKotak,A life 'completely destroyed' by one paragraph of immigration law https://t.co/osovDdudLt +05/20/2018,Social_workers,@RaggiKotak,@SAsiaSolidarity Feel ashamed as this is my family's home town! It's awful +05/19/2018,Social_workers,@RaggiKotak,RT @PriyaSolankl: BBC News - Former refugee Magid Magid takes up Sheffield Lord Mayor post https://t.co/gPz811M3Ri +05/19/2018,Social_workers,@RaggiKotak,RT @KR0b3rts: The #ModernSlavery Victim Care Bill has reached the Commons. This Bill would give victims support for a year and a chance of… +05/19/2018,Social_workers,@RaggiKotak,RT @gregoceallaigh: I can think of person today whose spouse visa wasn’t endorsed with a condition of No Recourse To Public Funds. +05/18/2018,Social_workers,@RaggiKotak,UK's first Independent Anti-Slavery Commissioner resigns citing government interference https://t.co/ZxSOWiqhue +05/17/2018,Social_workers,@RaggiKotak,"RT @aliromah: Resignation of @ukantislavery saying “At times independence has felt somewhat discretionary from the Home Office, rather than…" +05/16/2018,Social_workers,@RaggiKotak,Awesome meeting last night of the anti trafficking legal project (ATLeP) - sharing knowledge about current legal an… https://t.co/PFlaCtU6mA +05/16/2018,Social_workers,@RaggiKotak,"RT @BDSmovement: Good news as we grieve the dead: The mayor of Barcelona @AdaColau has demanded an arms embargo on Israel, as called for by…" +05/15/2018,Social_workers,@RaggiKotak,"Not the only reason the HO are shambolically incompetent. But nice to see it acknowledged. +Home Office accused of… https://t.co/t8Fro9x9y2" +05/15/2018,Social_workers,@RaggiKotak,"No surprise but good to see this acknowledged! +Capita staff used ‘excessive’ restraint on asylum seekers https://t.co/YEgKYN5PIU" +05/14/2018,Social_workers,@RaggiKotak,The lives of Grenfell tower https://t.co/jwSvxUebVl +05/14/2018,Social_workers,@RaggiKotak,"RT @stevesymondsAI: When UK abandoned jus soli in 1983, Parliament preserved right of #children born in UK to British #citizenship by regis…" +05/13/2018,Social_workers,@RaggiKotak,Fraud unravels everything: Brexit is voidable and Article 50 can be revoked https://t.co/ZLLGhPNbcf via @LSEpoliticsblog +05/13/2018,Social_workers,@RaggiKotak,"MPs are due to debate #DubsII this month, an amendment to the EU Withdrawal Bill that will keep open a vital route… https://t.co/Bqmh9cG4tp" +05/13/2018,Social_workers,@RaggiKotak,"RT @DavidLammy: Brexit has contributed to an environment of increased racial discrimination and intolerance. + +Extreme views have gained gr…" +05/13/2018,Social_workers,@RaggiKotak,Another cruel policy is called out for what it is. Maybe we should spend the money on services and a fair and just… https://t.co/9inNeQDXG5 +05/11/2018,Social_workers,@RaggiKotak,Phew! Humanitarian workers acquitted of ‘crime’ of helping refugees https://t.co/YPz5fGUBom via @newint +05/11/2018,Social_workers,@RaggiKotak,RT @FrancesWebber5: Please sign and share. https://t.co/cI2sxKsIuT +05/11/2018,Social_workers,@RaggiKotak,RT @FrancesWebber5: UK Torture - the government is rewriting our country’s torture rules in secret. I'm calling for an open and transparent… +05/10/2018,Social_workers,@RaggiKotak,RT @SBSisters: #JusticeForNoura Noura is going to be put to death in few days. She was forced to marry & when she refused to hve sex w/ him… +05/10/2018,Social_workers,@RaggiKotak,RT @freeforgooduk: We are delighted to announce that Lord McColl’s Modern Slavery (Victim Support) Bill has just passed Third Reading in th… +05/10/2018,Social_workers,@RaggiKotak,RT @ZoeJardiniere: Fuming. Just hearing of some asylum seeker kids being turned away from STI and sexual health clinics in London because s… +05/10/2018,Social_workers,@RaggiKotak,RT @legalhacker101: Helped a colleague today with a presentation to medics about asylum seekers. Did the slide on the #HostileEnviroment. W… +05/10/2018,Social_workers,@RaggiKotak,"RT @JCWI_UK: Whistleblower after whistleblower has come forward to expose shocking routine failures in compassion, competence, and common s…" +05/09/2018,Social_workers,@RaggiKotak,RT @OnePumpCourt: One Pump Court's Priya Solanki will be speaking on the topic of Bail and Detention at London Spring “Essential Update” Im… +05/08/2018,Social_workers,@RaggiKotak,"Yep. This is sadly true. +Rogue immigration solicitors exploiting vulnerable migrants by charging thousands for 'su… https://t.co/hTPjNSScqu" +05/08/2018,Social_workers,@RaggiKotak,"RT @MBEGriffiths: Asylum ‘lottery’: Home Office whistle blower describes making life/death decisions under ""a leader board displaying who i…" +05/06/2018,Social_workers,@RaggiKotak,"RT @JCWI_UK: Yes. Please, everyone affected by @ukhomeoffice or by the hostile environment in your banks, NHS, renting, working, now is the…" +05/06/2018,Social_workers,@RaggiKotak,RT @libertyhq: #Windrush shows all too clearly why @sajidjavid MUST remove the toxic immigration exemption from the Data Protection Bill. I… +05/05/2018,Social_workers,@RaggiKotak,RT @DavidLammy: After 9 G4S employees suspended for their behaviour towards those being detained. That’s your fair and humane immigration p… +04/29/2018,Social_workers,@RaggiKotak,One down...Amber Rudd resigns as home secretary after Windrush scandal https://t.co/YsTo7eLV5s +04/24/2018,Social_workers,@RaggiKotak,Great new resource on sexuality claims ... https://t.co/4nvzFbt4Oj +04/17/2018,Social_workers,@RaggiKotak,"RT @copscampaign: This is the #spycops officer 'Dave Hagan' who spied on the #StephenLawrence campaign for justice. +https://t.co/1HSiB9QRMn…" +04/16/2018,Social_workers,@RaggiKotak,"Want to know about the 'Hostile environment' against migrants...and how to help bring us down. +Read this... + +https://t.co/GswYDEVt8P" +04/16/2018,Social_workers,@RaggiKotak,Watch David in this clip ... quite fucking right!!! https://t.co/shbQdnCvrN +04/07/2018,Social_workers,@RaggiKotak,https://t.co/IZWIpqvn4P +04/07/2018,Social_workers,@RaggiKotak,Today 1pm. Protest for Gaza. London https://t.co/YnIPqWYIuL +04/07/2018,Social_workers,@RaggiKotak,A good read from the Palestinian Solidarity Campaign. If we don’t speak out then we are complicit in the massacres.… https://t.co/cu9s7fwL6L +04/07/2018,Social_workers,@RaggiKotak,RT @Liam_O_Hare: Another eight Palestinians have been shot dead today in Gaza. 780 people have been wounded including journalist Yaser Murt… +04/06/2018,Social_workers,@RaggiKotak,@SoniaL77 @dpg_law @AIRECentre Me too! +04/06/2018,Social_workers,@RaggiKotak,Excellent talk by Will Russell @dpg_law and Catherine Meredith @DoughtyStPublic on rights and legal challenges for… https://t.co/ucYKzjRsEh +04/05/2018,Social_workers,@RaggiKotak,RT @hypergraphica: Another Palestinian killed today in an Israeli air raid on Gaza. 21 people have been murdered since the Great Return Mar… +04/05/2018,Social_workers,@RaggiKotak,"RT @solange_valdez: A must read on @ukhomeoffice fees, including profit making on children's registration and much more: +https://t.co/Mnhnq…" +04/05/2018,Social_workers,@RaggiKotak,New ‘exorbitant’ fees for Immigration applications starting tomorrow. Here is the new fee structure. https://t.co/FOwzzr7lim +04/05/2018,Social_workers,@RaggiKotak,RT @gardencourtlaw: Applications for the Inderpal Rahal Memorial Trust award are now open. The trust applies to women who are from an immig… +04/05/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Client, victim of trafficking but convicted of crime from being trafficked, removed from UK, re-trafficked, claimed asylu…" +04/05/2018,Social_workers,@RaggiKotak,"RT @VictoriaLIVE: ""It's mental torture."" +A mother and daughter speak to us from inside Yarl's Wood detention centre where they've been held…" +04/05/2018,Social_workers,@RaggiKotak,"RT @bareroots16: I have a dream that together we will end male violence in all its forms against women and girls in our lifetime! +One Womy…" +04/04/2018,Social_workers,@RaggiKotak,@JacquiDillon Why are you calling yourself a Doctor here. It is a crminal offence to lie. An honorary doctorate is… https://t.co/9XMnrcZPGf +04/04/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Read this and weep: ""He says he is British but has done nothing to prove it"". Truly disgraceful. https://t.co/juRtMq2ZGT" +04/04/2018,Social_workers,@RaggiKotak,GRETA Annual Report out yesterday. Re implementation of trafficking convention. Summary of main findings! https://t.co/q6rrVIBYyl +04/03/2018,Social_workers,@RaggiKotak,@JacquiDillon today I came to your dissociation training. I told you my main perpetrator was in the room. My brothe… https://t.co/sphPbMldcY +04/03/2018,Social_workers,@RaggiKotak,At least one person a day is self-harming in UK detention centres https://t.co/lf7qMmmFGd +04/02/2018,Social_workers,@RaggiKotak,Yes! https://t.co/SbuYiA8Xz4 +04/02/2018,Social_workers,@RaggiKotak,Many of us are complicit in trafficking ‘If you are being offered a service for much less than you would expect to… https://t.co/ImGX4xyMYo +04/02/2018,Social_workers,@RaggiKotak,RT @stevesymondsAI: How is someone fleeing persecution supposed to have confidence they’ll get a fair hearing from a system so eager it can… +04/02/2018,Social_workers,@RaggiKotak,"RT @UNHCRUK: If you a refugee or know anyone who is eligible, @KingsSummer is offering 10 scholarships for refugees and asylum-seekers! Dea…" +04/02/2018,Social_workers,@RaggiKotak,Brilliant! https://t.co/V998BP2gx5 +04/02/2018,Social_workers,@RaggiKotak,"RT @migrants_rights: ""..the Home Office is keen to encourage as many ppl as possible to return home. It has begun providing asylum seekers…" +04/01/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: Nauru has severed a long-standing arrangement to allow appeals to the high court of Australia, impacting on the rights of…" +04/01/2018,Social_workers,@RaggiKotak,So does that mean we will see sanctions against Israel. Fat fucking chance! Israel rejects UN and EU calls for inq… https://t.co/ZuN7jtxpas +04/01/2018,Social_workers,@RaggiKotak,RT @centreWJ: Victims of sexual violence are right to fear another John #Worboys by @hwistrich https://t.co/rCsvn1fZG0 +04/01/2018,Social_workers,@RaggiKotak,"UN fails to condemn Israel's use force on unarmed Palestinians because blocked by US + @AJENews https://t.co/CpxXFI8zIU" +03/31/2018,Social_workers,@RaggiKotak,RT @PT_Foundation: Palestinians hold day of mourning after 773 people shot with live ammo by #Israeli soldiers. Firing on unarmed civilians… +03/31/2018,Social_workers,@RaggiKotak,No words! Israeli forces kill 16 in Gaza as Palestinians demonstrate on Land Day https://t.co/MozJFAfZ4d via @MiddleEastEye +03/30/2018,Social_workers,@RaggiKotak,Brilliant article on Britain’s role in slavery. Long. But so important! https://t.co/Rb2D90dQkk +03/30/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: ""Baroness Hale, the UK’s most senior judge, is making a VIP appearance on the semi-finals of MasterChef, where she will ju…" +03/29/2018,Social_workers,@RaggiKotak,RT @matthewlondon50: Our Ana handing in a petition for EU nationals today at Downing Street with @IslingtonIn and @IslingtonLabour. Ana for… +03/29/2018,Social_workers,@RaggiKotak,RT @WilsonsLondon: Huge thanks to @marthaspurrier for brilliant Kay Everett Memorial Lecture. The lecture can be viewed at the following li… +03/28/2018,Social_workers,@RaggiKotak,The abhorent treatment of asylum seekers and refugees in Australia makes me feel very angry and sad! How do we make… https://t.co/SzlBAaF0MZ +03/27/2018,Social_workers,@RaggiKotak,Hilarious watching Boris Johnson get a slapping. It’s like public school boy slapstick! https://t.co/zpu0oYCmQ6 +03/27/2018,Social_workers,@RaggiKotak,This! ATLEU’s note on the annoying decision of the Court of appeal in MS. And advice from ATLEU on how to challenge… https://t.co/UYVNdcx6eW +03/27/2018,Social_workers,@RaggiKotak,"Respect for those involved for standing up for justice! +Why Spycops victims walked out from the police inquiry… https://t.co/rUaBfhBosP" +03/26/2018,Social_workers,@RaggiKotak,Awesome 2 day seminar at SOAS on legality of conflict in Iraq - #LegalLegaciesIraqWar. Brilliant speakers. Shame on… https://t.co/tgEnEuSrQM +03/26/2018,Social_workers,@RaggiKotak,RT @libertyhq: Two women who were let down by the Metropolitan Police when they reported being attacked by John Worboys have won a victory… +03/26/2018,Social_workers,@RaggiKotak,"Increasing numbers. More or just better detection? +British children being forced into modern slavery in UK as 5,000… https://t.co/Z9iNWE73sh" +03/26/2018,Social_workers,@RaggiKotak,'The stress is making me ill': woman's immigration battle after 51 years in UK https://t.co/9Xl3OGd3zE +03/25/2018,Social_workers,@RaggiKotak,RT @Anti_Slavery: Today is the International Day of Remembrance of the Victims of Slavery and the Transatlantic Slave Trade. @Anti_Slavery… +03/25/2018,Social_workers,@RaggiKotak,"RT @nowthisnews: Over 800,000 came out for #MarchForOurLives in DC, with hundreds of thousands more rallying throughout the nation https://…" +03/24/2018,Social_workers,@RaggiKotak,RT @SKBarrister: @OnePumpCourt AGM unanimously backs decision to strike for for criminal legal aid. +03/23/2018,Social_workers,@RaggiKotak,Garden court criminal team go on a legal aid strike! https://t.co/rmIn6pjt1r +03/23/2018,Social_workers,@RaggiKotak,"Immigration Detention: One Step Forward, Two Steps Back — an excellent article by Sophie Walker @OnePumpCourt + https://t.co/jnR31Y7Kvl" +03/22/2018,Social_workers,@RaggiKotak,"RT @Anti_Slavery: If the UK Government - as it claims - is serious about tackling #slavery, it would support the Victim Support Bill and gi…" +03/21/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: Campaigners and lawyers have walked out of a public inquiry into undercover policing, demanding that the chairman stand do…" +03/21/2018,Social_workers,@RaggiKotak,1 month of the Yarl’s Wood hunger strike... why do they strike. Because indefinite detention is barbaric and ‘Every… https://t.co/NGESAjJbr0 +03/21/2018,Social_workers,@RaggiKotak,"Those that need legal aid the most do not get it and therefore are being refused access to justice! +https://t.co/WOj3y7wDHv" +03/20/2018,Social_workers,@RaggiKotak,"RT @Ha_Matar: BREAKING: Israeli soldier Elor Azaria, who cold bloodedly executed a wounded Palestinian who had previously stabbed soldiers,…" +03/18/2018,Social_workers,@RaggiKotak,RT @thebarcouncil: Are we doing enough to support barristers & chambers with #Wellbeing & #mentalhealth? Support is available from the Bar… +03/18/2018,Social_workers,@RaggiKotak,"Yep. We all know this to be true! +Barrister blows whistle on 'broken legal system brought to its knees by cuts' https://t.co/PdWLih944p" +03/18/2018,Social_workers,@RaggiKotak,Short news clip on the great work of the Rights Lab at Nott Uni to get a better understanding of slavery to help br… https://t.co/9BpiucKb4m +03/18/2018,Social_workers,@RaggiKotak,RT @BindmansLLP: BREAKING NEWS: #Whistleblower reveals how millions of #Facebook users' #data was misused in experimental targeting #Tamsin… +03/17/2018,Social_workers,@RaggiKotak,"RT @AntiRacismDay: Massive respect to the 20,000 people that braved arctic conditions in a huge show of solidarity against racism, Islamop…" +03/17/2018,Social_workers,@RaggiKotak,"RT @analuciaraujo_: Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Mariell…" +03/17/2018,Social_workers,@RaggiKotak,"RT @SoSoSust: Very sorry to hear the news of Muslim girl Maryam Mustafa, she passed away on Wednesday evening, after being in a critical co…" +03/17/2018,Social_workers,@RaggiKotak,The Data Protection Bill has an unnecessary and draconian ‘Immigration exemption’ where the State has wide measures… https://t.co/WOrLL3i3GR +03/16/2018,Social_workers,@RaggiKotak,Channel 4 investigation into City Hearts - a Salvation Army funded ‘safehouse’ in Sheffield for trafficked persons… https://t.co/8a2SQdPXQT +03/16/2018,Social_workers,@RaggiKotak,RT @AsmaNizami: The @OnePumpCourt duo which is part of the winning @RLSAthens team! Thank you @LexisNexisUK for the award! Our team of volu… +03/15/2018,Social_workers,@RaggiKotak,@OnePumpCourt It doesn’t go to the right page +03/15/2018,Social_workers,@RaggiKotak,"RT @FreefromTorture: Right now, @ukhomeoffice is reviewing the definition of #torture in their Adults at Risk policy. It's vital they get i…" +03/15/2018,Social_workers,@RaggiKotak,Day 23 Yarl’s wood strike! We hear you! End the inhumanity of immigration detention | Letters https://t.co/aF9bLqFEA4 +03/14/2018,Social_workers,@RaggiKotak,Day 21 of a hunger strike in Yarl’s Wood Immigration detention centre. Standing with the women against the inhumani… https://t.co/GEbTYvQeFH +03/14/2018,Social_workers,@RaggiKotak,Awesome first meeting of #ATLeP last night @OnePumpCourt. A mix of lawyers and voluntary sector committed to bring… https://t.co/KdMvKhNlkk +03/14/2018,Social_workers,@RaggiKotak,Dianne Abbott blog- don’t need to wait for history though. I can confirm the xenophobic immigration policies are da… https://t.co/f026j7VjgU +03/13/2018,Social_workers,@RaggiKotak,Read the report on Harmondsworth. More on the abhorrent treatment of migrants in immigration detention. https://t.co/rmJarQH11w +03/13/2018,Social_workers,@RaggiKotak,Please sign and share! https://t.co/tvovMjXKvO +03/13/2018,Social_workers,@RaggiKotak,"The barbaric hostile environment! +As a doctor, I can see that denying NHS care to immigrants is inhumane | Kitty Wo… https://t.co/OuQr5sz3MA" +03/13/2018,Social_workers,@RaggiKotak,"Tell me something I don’t know!!! +Home Office keeping torture victims in detention, inspectors report https://t.co/Vu65Lcriin" +03/12/2018,Social_workers,@RaggiKotak,Relaunch of the Anti Trafficking Legal Project (ATLeP) tomorrow - Tuesday - at 6pm @OnePumpCourt. Message me on rko… https://t.co/ILgYGc77tH +03/12/2018,Social_workers,@RaggiKotak,@detainedvoices I have a journalist that wants to report what is going on. Contact me on raggikotak@gmail.com and I… https://t.co/BUtkFlYSVL +03/12/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: If your MP is not one of the 128 who have signed the EDM about detained torture survivors and other vulnerable detaine… +03/11/2018,Social_workers,@RaggiKotak,RT @BajariaLaw: Father taken away. Doesn't know where his three kids are. Can't see or speak to them. They've been snatched away instead. T… +03/11/2018,Social_workers,@RaggiKotak,"RT @libertyhq: In the 80s, Govt tried to scrap our data protection rights for immigration purposes. Our deeply private information held by…" +03/11/2018,Social_workers,@RaggiKotak,The younger generation teach us about protesting! https://t.co/qZIIbyV9NE +03/10/2018,Social_workers,@RaggiKotak,"RT @HelpRefugees: We need volunteers in Calais! + +We would especially like to encourage people from minority, migrant and refugee background…" +03/10/2018,Social_workers,@RaggiKotak,@WomenandGirlsN @MaraiLarasi The others are all in very fine company being associated with our Marai x +03/10/2018,Social_workers,@RaggiKotak,Awesome marching with awesome activists and lawyers supporting the end of violence against women @Imkaan… https://t.co/tDJDlhR8kT +03/10/2018,Social_workers,@RaggiKotak,Today. London. Million Women Rise! Come. It’s the most fun political action day of the year. Bring whistles and dru… https://t.co/eeNysSOehY +03/10/2018,Social_workers,@RaggiKotak,RT @JCWI_UK: Extremely disappointing to see @jeremycorbyn spread an entirely false narrative about immigrants tonight. We hope the @UKLabo… +03/10/2018,Social_workers,@RaggiKotak,"RT @MaraiLarasi: Just over 12 hours to go!!!! Getting ready to rise with my @MillionWomen community + +‘You may write me down in history +Wit…" +03/09/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Lift your voice, bring a sister & rise with us! Join tomorrow 12 noon @MillionWomen rise, marching to end male violence against…" +03/09/2018,Social_workers,@RaggiKotak,RT @BIDdetention: Absolutely shocking: client who had been released was re-detained on reporting today even though he is sole carer for his… +03/09/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: New post: Yarl’s Wood hunger strike letter undermines official stance on protests https://t.co/7Dy65c4cu8 +03/09/2018,Social_workers,@RaggiKotak,Day 17 of the hunger strike at Yarl’s Wood. A message from one of the women https://t.co/LEhgYlpHbN +03/08/2018,Social_workers,@RaggiKotak,Day 16 of the Yarl’s Wood hunger strike. Applauding the women on International womens’ day. Respect to resilience a… https://t.co/loGH1h3NPC +03/07/2018,Social_workers,@RaggiKotak,"RT @JohnHyde1982: From the outset, justice ministers promised they would review LASPO after five years. They knew this deadline was coming.…" +03/07/2018,Social_workers,@RaggiKotak,Come to this march if you are free. Each year this is a super fun day and is super important! Million Women Rise th… https://t.co/9PSJ0RZqiZ +03/07/2018,Social_workers,@RaggiKotak,Inspiring! Meet the Sex Workers Leading the Fight Against Human Trafficking and Child Marriage  https://t.co/QXUmv8WBvw via @thewire_in +03/06/2018,Social_workers,@RaggiKotak,RT @FreefromTorture: URGENT: the @ukhomeoffice is reviewing the #torture definition in its Adults at Risk policy. If it gets it wrong tortu… +03/05/2018,Social_workers,@RaggiKotak,RT @windmill_tilter: Data Protection Bill Immigration Exemption = shocking authoritarian move by govt desperate to hide from rule of law ht… +03/05/2018,Social_workers,@RaggiKotak,RT @Anti_Slavery: The @UKHomeOffice quietly slashes support for #slavery victims by nearly half. Let's make it clear: people recovering fro… +03/05/2018,Social_workers,@RaggiKotak,RT @AsylumAid: RT @Im_Keeron: #Women in #YarlsWood forced on hunger strike because conditions in #detention are so brutal- instead of liste… +03/04/2018,Social_workers,@RaggiKotak,@La_Cowan @galdemzine @Imkaan @JadeShamraeff @livlittle Awesome day. Awesome organisation. Awesome team. Thank you x +03/04/2018,Social_workers,@RaggiKotak,Share this with your clients https://t.co/rXWfOoUIei +03/04/2018,Social_workers,@RaggiKotak,RT @AyoCaesar: Hunger strikers at Yarl’s Wood are being threatened with accelerated deportation for having the temerity to demand their bas… +03/03/2018,Social_workers,@RaggiKotak,RT @detainedvoices: I was told by Fiona I am going to be interviewed by them especially because I am on the hunger strike protest in #Yarls… +03/03/2018,Social_workers,@RaggiKotak,RT @CrowdJustice: The serious failings of G4S to run prison services safely were revealed on @BBCPanorama. Maltreatment of detainees and fa… +03/02/2018,Social_workers,@RaggiKotak,RT @BIDdetention: Only £515 left until we reach our target! Please consider pledging this weekend so that we achieve our target by Monday.… +03/02/2018,Social_workers,@RaggiKotak,@guppikb When are you opening the course up to applications or is it already full +03/02/2018,Social_workers,@RaggiKotak,"RT @GDenholmLMC: Yesterday’s Kay Everett Memorial Lecture was a fitting tribute to an inspiring lawyer, activist and friend. Powerful lectu…" +03/02/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: Death of Navtej Singh Ahluwalia https://t.co/XCWHkqQQf1 +03/02/2018,Social_workers,@RaggiKotak,Come to this... a brilliant day fundraising for the super brilliant Imkaan x https://t.co/2CTT4nrbdH +03/02/2018,Social_workers,@RaggiKotak,Yet more attacks on trafficked persons placing them at further risk https://t.co/3ZFZ7Dmanx +03/01/2018,Social_workers,@RaggiKotak,RT @aliromah: Lecture @SOAS by @marthaspurrier @libertyhq in memory of Kay Everett of @WilsonsLondon reminds us indefinite detention does e… +03/01/2018,Social_workers,@RaggiKotak,RT @CarolStorerLAPG: An incredibly powerful speech by @libertyhq director @marthaspurrier for the first Kay Everett Memorial Lecture about… +03/01/2018,Social_workers,@RaggiKotak,RT @maybulman: I went to Yarl's Wood over the weekend and (once I got through all the security checks) spoke to a resident who is on hunger… +03/01/2018,Social_workers,@RaggiKotak,"Big it up to the brave Women at Yarl’s Wood fighting for their rights! + https://t.co/NyusyD1QWG" +02/27/2018,Social_workers,@RaggiKotak,"RT @MaraiLarasi: @Imkaan will be there @MillionWomen on March 10th on the streets of London. This is a movement built by from the ground, r…" +02/27/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Come along this Sunday to @HouseOfVansLDN, Waterloo! Don't miss: talks feat. @MunroeBergdorf @lawrsuk, a workshop on resisting…" +02/27/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: Diane Abbott MP told us that Yarl's Wood detainees had described inadequate healthcare https://t.co/8FzlYiZuxJ +02/27/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: Concerning that it took Diane Abbott MP over a year of requests before she was allowed to visit Yarl's Wood - great th… +02/26/2018,Social_workers,@RaggiKotak,RT @DetentionAction: Looking to support the #YarlsWood protesters and back the fight against the indefinite #detention of migrants? Here ar… +02/26/2018,Social_workers,@RaggiKotak,"RT @lisang: This is a photo of Mohammad Tamimi, 15, following emergency surgery to repair his skull, shattered by an Israeli soldier's bull…" +02/26/2018,Social_workers,@RaggiKotak,RT @sdetsup: Yarl's Wood hunger strikers escalate protests and will begin a work strike from Monday. Read this thread for latest demands #… +02/26/2018,Social_workers,@RaggiKotak,"RT @MillionWomen: 2008-2018 and still we RISE! Join us Saturday 10th March. Meet 12.30 Duke ST ( Next to selfridges, Central London) + +http…" +06/28/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: Éadaoin Bhreathnach ‘The iPad facilitates dissociation, children aren’t learning to properly regulate using social eng…" +06/28/2018,Social_workers,@Martha7144,RT @RickBrad1ey: This is a really good resource from @AFNCCF. Contains info which is equally applicable outside of school settings too. htt… +06/28/2018,Social_workers,@Martha7144,RT @healthdpt: New Signs of Safety Programme aimed at improving NI’s children’s social work services - programme supported by investment of… +06/28/2018,Social_workers,@Martha7144,"RT @signsofsafety: If you weren't already aware, Signs of Safety launched nationally in Northern Ireland yesterday. A remarkable moment tha…" +06/28/2018,Social_workers,@Martha7144,"RT @AmandaFBelfast: #Belfast women are *THE* best. + +Two men walking past two women on High Street. + +Fella one is acting Billy Big Balls i…" +06/28/2018,Social_workers,@Martha7144,"RT @colleengnm: How to approach child development; like a gardener, yelling at a plant for not growing will not make it grow..we must ask o…" +06/28/2018,Social_workers,@Martha7144,@trishstitt lovely to finally meet you in person today. +06/28/2018,Social_workers,@Martha7144,RT @jade_irwin: The #YoungHeartsAndMinds conference @BelfastWater is the best professional & personal training I have been to... and I am o… +06/27/2018,Social_workers,@Martha7144,RT @BDPerry: Is Sleeping With Your Baby As Dangerous As Doctors Say? https://t.co/SE2svlcwNq +06/25/2018,Social_workers,@Martha7144,RT @EamonnMallie: The premiere of our @BAItweets & @OireachtasNews film #AWomansPlace is screening on Monday 25th June @ 18.30 in @IFI_Dub.… +06/25/2018,Social_workers,@Martha7144,RT @eagoodlife: Childhood Trauma Leads to Brains Wired for Fear https://t.co/vCltKBsDTC +06/24/2018,Social_workers,@Martha7144,"RT @MichaelMorrow93: Credit where it's due, Arlene Foster attending the Ulster SFC final is a absolutely commendable. + +We have to endure a…" +06/24/2018,Social_workers,@Martha7144,"RT @_LisaCherry: It's not more CAMHS that children and young people need, it is fully resourced schools and communities and parents not liv…" +06/23/2018,Social_workers,@Martha7144,"RT @emmamckinneyxox: Loving our new names badges in Beechcroft..we have a Bee in pride of place to incorporate our Bee safe project, I can’…" +06/22/2018,Social_workers,@Martha7144,RT @BeaconHouseTeam: Take a look at our free worksheet for brainstem calming ideas that we help parents and schools to put in place – thank… +06/21/2018,Social_workers,@Martha7144,RT @RachelOT: The hard work is paying off... strength to go on! #changinglives https://t.co/BB59T65i9x +06/19/2018,Social_workers,@Martha7144,RT @James_vru: Children and adults who have experienced toxic stress and unsafe relationships are brilliant at reading the room. They can s… +06/19/2018,Social_workers,@Martha7144,"RT @DrMikePsych: And while we’re all focussed on NHS finances, can I respectfully point out that there are far better ways of spending £150…" +06/18/2018,Social_workers,@Martha7144,@LatimerOlivia Sounds like you had a great day. Well done. +06/17/2018,Social_workers,@Martha7144,"RT @Keirwales: Another way of talking about personality disorder... + +https://t.co/0ooskBCjf9" +06/14/2018,Social_workers,@Martha7144,RT @Gingelinds: Help me make a difference for a cause I care about. @everydayherouk #everythingcounts https://t.co/qibOQqxGWV +06/13/2018,Social_workers,@Martha7144,"RT @CamhsNi: 'A trauma-informed care model will help nurses make sense of their patients’ health history and responses to treatment, and in…" +06/13/2018,Social_workers,@Martha7144,@rachieroo32 @ExternReachOut @Sharon26smith It was lovely to have you. @corrymeela. Good luck with your next project +06/13/2018,Social_workers,@Martha7144,RT @Mrsatombomb: Excellent Extern Service 😊😊😊😊 https://t.co/2DOjwMMZg2 +06/13/2018,Social_workers,@Martha7144,"RT @StephenFarryMLA: 15mins to discuss Northern Ireland, despite all of the risks to the GFA and of a hard border from Brexit and how the N…" +06/10/2018,Social_workers,@Martha7144,Xx https://t.co/AuVebCVyPX +06/10/2018,Social_workers,@Martha7144,@amateuradam Excellent book. Laughed and cried in equal measure. Gave it to my Mum who is a retired obstetrician an… https://t.co/8PTxMCGGpm +06/10/2018,Social_workers,@Martha7144,"RT @processions2018: Did you know that green, white and violet UK Suffrage colour formation stands for “Give Women Votes”? We’ll be walking…" +06/08/2018,Social_workers,@Martha7144,"RT @SNevin1: Theres more border crossings in Ireland than all of the EU's other borders combined. Over 7,300 companies export to Eire acros…" +06/08/2018,Social_workers,@Martha7144,"RT @Debbie_abrahams: Warning of pressure on London teenagers as suicide rate doubles + +Parity of esteem, PM? +https://t.co/7NgBhgEdes" +06/08/2018,Social_workers,@Martha7144,RT @nuwandiss: Honest and true https://t.co/zCegYWvybC +06/05/2018,Social_workers,@Martha7144,RT @Mrsatombomb: Social Worker Posts!!!! 😊😊😊😊 https://t.co/MJ8VkVAm1a +06/05/2018,Social_workers,@Martha7144,RT @SophieLong01: With all due respect- by which I mean very little- why are three men over the age of 50 on talkback discussing abortion w… +05/28/2018,Social_workers,@Martha7144,RT @_NatashaDevon: @DavidLammy I looked at structural inequality in mental health for my book and concluded that the type of bias Piers is… +05/28/2018,Social_workers,@Martha7144,RT @ti_pbs: The angriest child in your class is afraid of feeling the true depths of their despair and sadness. Her anger is her lifeline.… +05/28/2018,Social_workers,@Martha7144,Why is the church constantly out of step https://t.co/bTcyy5Gg5x +05/24/2018,Social_workers,@Martha7144,@SiobhanRogan Saw you today and meant to say hello but got caught up in the competition to be the best Trust!! Hee… https://t.co/MSh9uh1P31 +05/23/2018,Social_workers,@Martha7144,RT @dr_treisman: A reposting but useful diagram of window of tolerance https://t.co/WLPviqH310 +05/22/2018,Social_workers,@Martha7144,RT @Jessicae13Eaton: Some professionals working with teens forget their own past behaviours then pathologise teens' experiences. Here's a f… +05/22/2018,Social_workers,@Martha7144,@duncan_morrow https://t.co/nUmV2nEfwA +05/20/2018,Social_workers,@Martha7144,RT @RachelOT: Great training... the OTs in Prison Healthcare seeing great results. Lovely to see the skills shared.. https://t.co/vtSCslRYFh +05/19/2018,Social_workers,@Martha7144,RT @billiehughes: https://t.co/ZTW0dHt3i9 +05/19/2018,Social_workers,@Martha7144,RT @ImSaraNeill: I’m in east Belfast where resident Joanne is getting the street ready for tomorrow’s Big Lunch! More on @BBCevex https://t… +05/19/2018,Social_workers,@Martha7144,RT @seanhollandOSS: really enjoyed this conference - family approaches to mental health work yield results and reflect how people want serv… +05/19/2018,Social_workers,@Martha7144,RT @Tim_Mc_Garry: To all the young people doing GCSEs and A Levels-please don't worry about failing. Literally anyone can be successful. #W… +05/17/2018,Social_workers,@Martha7144,RT @nashwakay: ramadan mubarak - last year i worked in an office and had a conversation with my manager and her manager about how they cou… +05/17/2018,Social_workers,@Martha7144,RT @dr_treisman: Flights booked for my @wcmtuk trip! Researching best practice in trauma-informed & trauma-responsive organisations. Please… +05/17/2018,Social_workers,@Martha7144,"RT @faeriesmidwife: It’s not the lack of check which is the issue, it’s the lack of genuine interest behind it. At my own 6week check up th…" +05/16/2018,Social_workers,@Martha7144,RT @duncan_morrow: Tonight the former Deputy PM resurfaced to officially deny the possibility of a United Ireland on @BBCNewsnight and the… +05/16/2018,Social_workers,@Martha7144,RT @MichaelMorrow93: Frampton is all class. Has made a habit of speaking out about the right things at the right time. Quality https://t.co… +05/16/2018,Social_workers,@Martha7144,RT @duncan_morrow: The penny slowly but definitively drops. The fact that this counts as news in London says something about the self absor… +05/15/2018,Social_workers,@Martha7144,@Paulinemahon5 @billiehughes https://t.co/RbB14h0Gux +05/15/2018,Social_workers,@Martha7144,@typers7 @AlexKane221b @BelTel Yes. That may be. I was really just commenting that it was for the first time in my… https://t.co/br7QF5eFTT +05/15/2018,Social_workers,@Martha7144,@typers7 @AlexKane221b @BelTel We were talking about this on my work today. Many of us both unionists and nationali… https://t.co/uPZd1klyrJ +05/13/2018,Social_workers,@Martha7144,"RT @Bonn1eGreer: 100% correct. +But the #NHS will be asset-stripped as a result of #Brexit. https://t.co/D9pmL533rn" +05/13/2018,Social_workers,@Martha7144,"RT @BelfastTrust: The Emergency Department at Children's Hospital is very busy at present. Remember, the ED is for serious conditions. Plea…" +05/13/2018,Social_workers,@Martha7144,RT @ProfSueWhite: Absolutely spot on @survivecourt. Need to reflect on how SWs lose their expressive ability. Badge of organisational compe… +05/11/2018,Social_workers,@Martha7144,"RT @ti_pbs: Its important to be sceptical about how a student's behaviour is explained.Every ""excuse"" is full of clues about the student's…" +05/09/2018,Social_workers,@Martha7144,RT @AllisonMorris1: An article from January containing the actual figures for army prosecutions since GFA which is a big fat zero: Figures… +05/08/2018,Social_workers,@Martha7144,"RT @Thomasod10: Exactly my feelings at 15, instead had placement breakdown and moved onto supported lodgings......The two-tier care system…" +05/08/2018,Social_workers,@Martha7144,RT @BeaconHouseTeam: NEW Free Resource: The Beacon House Podcast! We kick off our first episode with a conversation about 'Curiosity' with… +05/07/2018,Social_workers,@Martha7144,@panmacmillan Just finished this. Laughed and cried in equal measure. Brilliant read +05/07/2018,Social_workers,@Martha7144,RT @Docsocksomaha: I saw kids die daily from measles in Kenya. I saw a women carry her child 30 miles on her back to get him vaccinated. Fi… +05/07/2018,Social_workers,@Martha7144,"RT @ti_pbs: Luck will always explain some your success with a student, but the luckiest people are the ones who work the hardest https://t.…" +05/05/2018,Social_workers,@Martha7144,RT @dr_treisman: Pleased to announce the release of my send online interview on the trauma therapist discussing two therapeutic interventio… +05/05/2018,Social_workers,@Martha7144,RT @HSCQI: Top tips for scaling up QI projects - ‘be really clear about your plan’ https://t.co/NieBAhyJ1W +05/02/2018,Social_workers,@Martha7144,RT @wendyburn: We could massively improve staff retention and morale by providing parking. https://t.co/7BsMDvMvpG +04/30/2018,Social_workers,@Martha7144,RT @drduncanlaw: @robbrooks_uk @CORCcentral I think we need to take a very broad view of what we see as ‘therapeutic’ We should focus on… +04/29/2018,Social_workers,@Martha7144,RT @StanGilmour: A must-view for #ACEs awareness. Childhood Trauma | Changing Minds https://t.co/Q9cjYt2Y1P +04/29/2018,Social_workers,@Martha7144,"RT @VhernieM: #Mentalhealth labels can save lives, but can also destroy them. Open dialogue is key: bin ways of diagnosing that slur certai…" +04/29/2018,Social_workers,@Martha7144,"RT @nuwandiss: Money can't buy happiness, but poverty harms mental health https://t.co/wflGZKgeTU" +04/28/2018,Social_workers,@Martha7144,"RT @naomi_long: @andrealeadsom Either shockingly ignorant or dishonest. + +Switzerland is in Schengen, so there's free movement of people. S…" +04/28/2018,Social_workers,@Martha7144,"RT @AshcroftBen: Why are we asking 16 year old children and young people to cope with a tenancy, bills, food, rent, and managing the friend…" +04/27/2018,Social_workers,@Martha7144,"RT @Peston: Seems to have been a jaw-dropping £300bn swing in foreign investment flows to and from UK, in a negative sense, between 2016 an…" +04/27/2018,Social_workers,@Martha7144,RT @AshcroftBen: I believe many children and young people are set up to fail when we ask them to leave their home at 16+ with little to no… +04/27/2018,Social_workers,@Martha7144,RT @PaulBurstow: Integrated care must focus on people not structures. New blog for @DHSCmedia by @SCIE_socialcare @ewandking https://t.co/… +04/26/2018,Social_workers,@Martha7144,RT @HudSocialWork: Worrying examples from the work of @AnnaGupta2 on how inhumane othering processes happen in professional thinking and ac… +04/25/2018,Social_workers,@Martha7144,"RT @CORCcentral: ""The mental health model hasn't changed in 30 years! We need to turn the whole thing on it's head, but what would it look…" +04/25/2018,Social_workers,@Martha7144,@little_pengelly Well done. I ran again for first time since March. Nearly killed me! Keep going! +04/25/2018,Social_workers,@Martha7144,"RT @eugene_kane: Dear White People: +When Black folks say you're 'privileged', they don't mean you were born rich or don't have to struggle…" +04/25/2018,Social_workers,@Martha7144,"RT @QUBelfast: BREAKTHROUGH: We have discovered a protein that triggers #inflammation in the body. + +By learning how to control this protein…" +04/24/2018,Social_workers,@Martha7144,RT @meekmacs: The 8th Residential Child Care Awards is now open and we're asking those working in the sector to nominate deserving colleagu… +04/23/2018,Social_workers,@Martha7144,Very proud to manage this team. @billiehughes @EdelGilchrist1 Specialist eating disorders unit in Nor… https://t.co/6BCzxH5ESX +04/23/2018,Social_workers,@Martha7144,"RT @AlexKane221b: Today's @News_Letter column: unionists should not shy away from current debate on Irish unity. + +https://t.co/HNmQ6SW2…" +04/23/2018,Social_workers,@Martha7144,Well done! https://t.co/3VvH93O5qC +04/22/2018,Social_workers,@Martha7144,@ballyhackmike https://t.co/Z0v3Eat3x2 +04/20/2018,Social_workers,@Martha7144,"RT @TheCareReview: We’re very lucky at the #CareReview to have @laur_beveridge as our colleague and friend. + +If you haven’t seen it, you’ve…" +04/18/2018,Social_workers,@Martha7144,"RT @BelfastTrust: **Attention all nurses and student nurses** + +We are hosting a nursing recruitment open day on Saturday 28 April between 1…" +04/15/2018,Social_workers,@Martha7144,"RT @duncan_morrow: Petition for Amnesty for anyone who was a minor that arrived In Britain between 1948 to 1971 tops 100,000 and must be co…" +04/14/2018,Social_workers,@Martha7144,RT @action_trauma: CAMHS will be facilitating a Workshop on The Just Right State Programme at the event.The programme looks at the use of s… +04/13/2018,Social_workers,@Martha7144,@RachelOT https://t.co/uNhcUJiKaW +04/13/2018,Social_workers,@Martha7144,RT @drduncanlaw: Reminded today of this cartoon a YP drew for me showing how useless #ROMs are if only used to monitor & not used to help c… +04/13/2018,Social_workers,@Martha7144,RT @PatricKielty: Some men seem to have forgotten this woman's name. How about the rest of us shout it from the rooftops? THANK YOU MO MOWL… +04/11/2018,Social_workers,@Martha7144,RT @brendanmccon: Brilliant pictorial summary of Joy in Work. @drcathyjack @scimedic @McCormickJo https://t.co/vndoIHn6MV +04/07/2018,Social_workers,@Martha7144,@monica_rogan @seanhollandOSS Good robust examples that indicate you understand the SW role. Clarity around how you… https://t.co/pW4W2Gkbv9 +04/07/2018,Social_workers,@Martha7144,"RT @action_trauma: YOUNG HEARTS & MINDS EVENT is a unique 2 day event at the Waterfront Hall in Belfast, in June, which can help you to gui…" +04/06/2018,Social_workers,@Martha7144,"RT @ChildrensComm: When it comes to the provision of mental health treatment for children, just remember that over 90% of spending goes on…" +04/04/2018,Social_workers,@Martha7144,"RT @nuala_canning: “From the earliest ages, we learn from people” #connection #attachment #relationships + +How babies learn – and why robots…" +04/04/2018,Social_workers,@Martha7144,"RT @mrneilmorrow: Craig Gilroy, ex Methodist College Belfast pupil, suspended by @UlsterRugby. Third rugby player at the club to be suspend…" +04/03/2018,Social_workers,@Martha7144,"RT @NHSEngland: Clinical governance – organised or spinning plates? +Dr Ben Pearson, Divisional Medical Director for Integrated Care, discus…" +04/03/2018,Social_workers,@Martha7144,"RT @NIASW_: To ensure we have a balanced picture we want to hear from social workers who have never experienced intimidation, threats or vi…" +04/02/2018,Social_workers,@Martha7144,RT @HudSocialWork: important to read the research led by Professor Paul Bywaters @CWIP_Research on the links between deprivation and child… +03/31/2018,Social_workers,@Martha7144,@billiehughes @RachelOT https://t.co/nUxxdB8YBv +03/30/2018,Social_workers,@Martha7144,"RT @HackneyAbbott: Ahead of Passover, I would like to wish all Jews in my constituency, across the country and throughout the world Chag Sa…" +03/30/2018,Social_workers,@Martha7144,@NaLeanai It was absolutely brilliant! Thankyou @corrymeela +03/27/2018,Social_workers,@Martha7144,RT @LucyMPowell: A pretty comprehensive study showing that grammar schools simply reflect their intake rather than are inherently good scho… +03/27/2018,Social_workers,@Martha7144,"RT @IDickson258: Our conference for care experienced people of all ages #careexpconf can redefine our image, breaking down the stereotype…" +03/27/2018,Social_workers,@Martha7144,RT @HSCBoard: All set and ready to launch our #YouInMind CAMHS Pathway and Welcome Guide this morning. View these new resources for childre… +03/27/2018,Social_workers,@Martha7144,RT @VOYPIC: Experts by experience #ChangingStoriesNI https://t.co/z3eRDvuM3d +03/27/2018,Social_workers,@Martha7144,RT @billiehughes: https://t.co/Qy3iUWzREA +03/27/2018,Social_workers,@Martha7144,@billiehughes @CamhsNi Well done to all the speakers.. especially Naomi Catherine and Cathy. +03/27/2018,Social_workers,@Martha7144,RT @billiehughes: What an exciting day! CAMHs carepathway launch @CamhsNi https://t.co/yh8bwLtCAx +03/27/2018,Social_workers,@Martha7144,@LatimerOlivia @bknocdoc @billiehughes Well done! Great day +03/26/2018,Social_workers,@Martha7144,"RT @naomi_long: Excellent news! + +https://t.co/qTG0SA5nme" +03/24/2018,Social_workers,@Martha7144,RT @seanhollandOSS: great to see Paul returning to social work in NI https://t.co/cuCTaHVVMG +03/24/2018,Social_workers,@Martha7144,"RT @duncan_morrow: @StephenFarryMLA:""Brexit poses an existential threat to the concept of a shared and cohesive Northern Ireland...It was t…" +03/24/2018,Social_workers,@Martha7144,RT @IesoHealth: .@ZoeTheBall is taking on a cycling challenge for Sport Relief to help raise awareness of mental health. The challenge is a… +03/24/2018,Social_workers,@Martha7144,RT @NIASW_: Representing the social work sector at Alliance Party Conference 2018. Great conversation with @PaulaJaneB about the role of so… +03/23/2018,Social_workers,@Martha7144,"RT @QUBelfast: Sexual health is often regarded as a taboo subject, especially with young men. + +But @QUBSONM, in collaboration with @setrus…" +03/23/2018,Social_workers,@Martha7144,RT @VOYPIC: Deboragh in our @setrust team is starting a NEW! programme for young people aged 12 - 14. If you're ready to talk about and ta… +03/23/2018,Social_workers,@Martha7144,"RT @BelfastTrust: Did you know that if ovarian cancer is diagnosed at an early stage, it has a 90% cure rate? Ovarian cancer is the 4th mos…" +03/23/2018,Social_workers,@Martha7144,"RT @erin_miley: Thank you @naomi_long . Finally, a politician taking some steps towards getting our government up and running again!! Finge…" +03/21/2018,Social_workers,@Martha7144,Relational trauma Worksop great fun @billiehughes @dr_treisman @BelfastTrust @CamhsNi https://t.co/bN7ajFXyJl +03/19/2018,Social_workers,@Martha7144,@RachelOT https://t.co/9Nyrn3d4P4 +03/18/2018,Social_workers,@Martha7144,RT @QuinnBriege: Nurses from NI crush the competition in the fashion stakes! @MHNursesNI @LDNursesNI @CamhsNi https://t.co/X72KCZpPJ7 +03/18/2018,Social_workers,@Martha7144,"RT @MindMateApp: Eating healthier makes you HAPPIER!! + +These are the best foods to boost your mood! + +#Nutrition #motivation #healthyEating…" +03/18/2018,Social_workers,@Martha7144,RT @AlexBThomson: I can't believe Tesco's staff have a mobile app that tells them where in the shop the products are located and #NHS staff… +03/18/2018,Social_workers,@Martha7144,RT @mcginley_maria: So chuffed! Yesterday I found out that my article was accepted for publication. I couldn't have done this without the s… +03/16/2018,Social_workers,@Martha7144,RT @billiehughes: Congratulations to Beechcroft CAMHs inpatient service for winning safety forum partnership and Co production Award for Bs… +03/13/2018,Social_workers,@Martha7144,RT @NIASW_: Big changes are planned for primary care services in NI. Here is our press release concerning the roundtable discussion we host… +03/13/2018,Social_workers,@Martha7144,"RT @TimDalgleish: ""Psychosocial interventions are effective in reducing PTSD and functional impairment, and in increasing hope, coping, and…" +03/10/2018,Social_workers,@Martha7144,RT @NHSMillion: Professor Stephen Hawking and a host of senior healthcare professionals are taking Jeremy Hunt to court to stop him ‘Ameri… +03/10/2018,Social_workers,@Martha7144,@billiehughes https://t.co/1y29pGlTGA +03/08/2018,Social_workers,@Martha7144,RT @VOYPIC: We want to recruit young people for our Youth Advisor Project in Beechcroft Child and Adolescent Mental Health Inpatient Unit… +03/07/2018,Social_workers,@Martha7144,"RT @pgionfriddo: Nope. Pres Trump's not right about this one. We don't need more custodial care for people with #mentalillness, we need rec…" +03/05/2018,Social_workers,@Martha7144,RT @LADFLEG: @dmcbfs It's so feckin obvious what's going on. EU have held the same position they always have (ie pre-referendum). The Briti… +03/03/2018,Social_workers,@Martha7144,"RT @YoungMindsUK: For anyone needing some self-care inspiration this weekend, here's a list of 60 cheap/free self-care tips: https://t.co/…" +03/02/2018,Social_workers,@Martha7144,"RT @BookBub: 22 Books Coming in 2018 Recommended by Librarians +https://t.co/Sil3Wvs6Lh @tarawestover @thuglibrarian @CommerceLibrary @randy…" +03/02/2018,Social_workers,@Martha7144,"RT @nytimes: Ahead of the Oscars, pick up the original books that inspired some of the nominated films https://t.co/kgvOicZ5zH" +03/01/2018,Social_workers,@Martha7144,"RT @jennifercobbe: Jacob Rees-Mogg (raised in a country house, Eton, Oxford, then an investment banker, net worth >£100m) on @Channel4News…" +02/27/2018,Social_workers,@Martha7144,@billiehughes @RachelOT @Paulinemahon5 https://t.co/BeHIzu7qBx +02/27/2018,Social_workers,@Martha7144,RT @BPSOfficial: Listen to Dr Tim Dagleish @CamNeuro discuss clinical #depression and memory #WorldHealthDay #psychology https://t.co/s7FeD… +02/27/2018,Social_workers,@Martha7144,Prof Tim Dagleish talking at the @UKPTS on ptsd treatments in children and young people. @billiehughes… https://t.co/UVwzWiUQT6 +02/27/2018,Social_workers,@Martha7144,RT @NHSMillion: Please spare a RT for all the NHS staff across the UK who will defy the snow to ensure their patients are cared for #beastf… +02/26/2018,Social_workers,@Martha7144,"RT @rcpsych: There's to be a ten percent increase in CAMHS beds, @ClaireCNWL confirms! More than 130 new child and adolescent mental health…" +02/25/2018,Social_workers,@Martha7144,@duncan_morrow @heatherjkilgore @mrneilmorrow @porter979 https://t.co/qK5fSw1f99 +02/25/2018,Social_workers,@Martha7144,RT @bbradleymp: On the 19th of February I made a defamatory statement about @jeremycorbyn. I have apologised to Mr Corbyn and here is the c… +02/25/2018,Social_workers,@Martha7144,RT @IrishRugby: IRTV: Chris Farrell on his #NatWest6Nations Man of the Match against Wales. #IREvWAL #TeamOfUs https://t.co/L1AMsPtM2t +02/25/2018,Social_workers,@Martha7144,"RT @jakkicowley: @northernassist So here we are .... I’m £75 down because weirdly I needed to get home, but thanks for your help, oh wait e…" +02/24/2018,Social_workers,@Martha7144,RT @connectedfrlife: Resilience screening in Belfast 1 March in @skainos organised by @iaia https://t.co/CvP5wF7Vzs Thought you might be in… +02/24/2018,Social_workers,@Martha7144,@heatherjkilgore https://t.co/UBWytF3Gj2 +02/23/2018,Social_workers,@Martha7144,"RT @naomi_long: How can @J_Donaldson_MP argue his Britishness is being diminished? He's a member of the UK Parliament, the Privy Council an…" +02/21/2018,Social_workers,@Martha7144,"RT @rcpsych: Mental health trusts have less income than they did in 2011-12, our new analysis reveals. We're calling on the government to e…" +02/21/2018,Social_workers,@Martha7144,"RT @CORCcentral: Should mental health services seek to cure mental ill health? It not, what are they there for? Attend one of our regional…" +02/21/2018,Social_workers,@Martha7144,"RT @shanemuk: What's this with Brexiters wanting to tear down the Good Friday Agreement? They *lost* that referendum, and we're not having…" +02/21/2018,Social_workers,@Martha7144,RT @StephenFarryMLA: Note to hard Brexiteer fantasists. Saying GFA dead doesn’t kill it – changes deeply ingrained across both jurisdiction… +02/14/2018,Social_workers,@Martha7144,RT @duncan_morrow: Paul Girvan's weaponisation of the language issue by gratuitously cancelling Liofa grants 2 days before Christmas 2016 h… +02/12/2018,Social_workers,@Martha7144,@RachelOT https://t.co/jduFR4F34k +02/12/2018,Social_workers,@Martha7144,RT @2SmallToFail: You can strengthen the bond with your little one by cuddling or stroking your baby’s forehead before bedtime. This helps… +02/12/2018,Social_workers,@Martha7144,RT @Katie_Alice_96: I remember being taken away from my Foster home aged 18 - I got a call at College to say my bags had been packed and we… +02/12/2018,Social_workers,@Martha7144,"RT @evagrosman: Three amazing @TEDxStormont Salon events coming soon: + +Inspired Life - 7 April +Inspired Leadership - 18 May +Inspired Citi…" +02/07/2018,Social_workers,@Martha7144,@billiehughes @Paulinemahon5 @JacquieWilson7 https://t.co/8irGIZFCHA +02/04/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: “Traumatised children can, and do, flourish.” Read ‘Developmental Trauma Close Up’ https://t.co/9R0HDk1Nrs #WMHD17 #t…" +02/01/2018,Social_workers,@Martha7144,RT @C_Lightowler: A really important Scorrish study out now about Adverse Childhood Experiences in a sample of 130 children who present hig… +01/29/2018,Social_workers,@Martha7144,RT @SiobhanRogan: Delighted to work with some of the very finest medics in their field. Children and young people in @SouthernHSCT have wo… +01/28/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: We assessed a 17 year old last week, 6+ ACEs.. she has diagnoses of ASC, ADHD, conduct disorder, BPD, behavioral probs…" +01/26/2018,Social_workers,@Martha7144,"RT @DrDSRobinson: Excellent opportunity to join a fantastic Team @setrust. Applications invited from those who will deliver contemporary, c…" +01/24/2018,Social_workers,@Martha7144,"RT @CommunityCare: Using attachment theory in practice: top tips. + +https://t.co/yfjZHVhXtD" +01/21/2018,Social_workers,@Martha7144,RT @daraobriain: This may the greatest thread in the history of everything. https://t.co/rYnz9lEdm6 +01/13/2018,Social_workers,@Martha7144,RT @thomasniblock: A friend in New York took this picture in a bookshop this morning. Well played 👏🏻 https://t.co/Tjr1Kduyfm +01/11/2018,Social_workers,@Martha7144,@RachelOT https://t.co/7Rc8nXtIOr +01/06/2018,Social_workers,@Martha7144,RT @BrendanWhittle: I did my local parkrun this morning. Whilst doing so I was thinking of the runners setting off at the same time in Magi… +01/03/2018,Social_workers,@Martha7144,"RT @helenbevan: Our eBook ""Leading large scale change: a practical guide"" is 142 pages of frameworks, approaches, ideas & practical wisdom…" +01/03/2018,Social_workers,@Martha7144,RT @NHSEnglandSI: Have your say on the new green paper for transforming children and young peoples' mental health provision https://t.co/Xj… +12/21/2017,Social_workers,@Martha7144,RT @MhairiMcLellan: I just booked my ticket for the upcoming ACEs conference: Making Scotland the World's First ACE-Aware Nation (my Christ… +12/21/2017,Social_workers,@Martha7144,"RT @UpstartScot: Want to know why so many people are going on about ACEs? This terrific 11 minute TED talk from Dr Nadine Burke-Harris, who…" +12/20/2017,Social_workers,@Martha7144,RT @HeaIthHacks: How To Lose Lower Belly Fat.. https://t.co/JjXOnQ6nKK +12/20/2017,Social_workers,@Martha7144,RT @HeaIthHacks: 8 moves to quickly get your body in shape https://t.co/600qmAsPzd +12/19/2017,Social_workers,@Martha7144,RT @Womens_Aid: 'She described waking up screaming and having problems sleeping. She said she would never be able to live on her own.' Sent… +12/19/2017,Social_workers,@Martha7144,"RT @little_pengelly: Big crowd at the wonderful L'arche Christmas Fair, St John's Hall, Ormeau - all about supporting those with a range of…" +12/15/2017,Social_workers,@Martha7144,RT @rcpsych: New article in @HSJnews showing the value of mental and physical health care integration. Turns out the body and brain are con… +12/13/2017,Social_workers,@Martha7144,"RT @PaulaJaneB: *L'Arche Christmas Market* Saturday 16th Dec 2pm - 4pm Newtownbreda Presbyterian Church, 374 Ormeau Road. + +L'Arche have bee…" +12/06/2017,Social_workers,@Martha7144,@linseytweets @BelfastTrust I gave up 16 years ago! Keep going! Well done +12/04/2017,Social_workers,@Martha7144,@NewtonEmerson A tad harsh +12/01/2017,Social_workers,@Martha7144,RT @kierandowney: Neuroscience and good leadership requires rest and recovery #transformationWest https://t.co/NGT4mTcL8C +11/30/2017,Social_workers,@Martha7144,"RT @jonahfreedman: Repeated warnings from my 98-year-old grandma, a Nazi Germany survivor, chill me. She says it all started this way, with…" +11/29/2017,Social_workers,@Martha7144,RT @Black2Jo: Do you know someone who could work with us @NHSEngland Perinatal MH team? It’s an amazing opportunity! Please share https://… +11/24/2017,Social_workers,@Martha7144,RT @RachelOT: Huge Congratulations to the Prison Healthcare team for winning the Integrated Team of the Year award at the Health Heroes Awa… +11/22/2017,Social_workers,@Martha7144,@billiehughes @LatimerOlivia @BelfastTrust https://t.co/FbQQnXYUHb +11/22/2017,Social_workers,@Martha7144,@billiehughes https://t.co/tXO3AaDivV +11/22/2017,Social_workers,@Martha7144,@billiehughes https://t.co/uTJF0AMRFR +11/22/2017,Social_workers,@Martha7144,@Defenderwwwwq @beth_1day @billiehughes @LatimerOlivia This is an ongoing conversation with many CAMHS services. Be… https://t.co/XdjO9WJq6n +11/22/2017,Social_workers,@Martha7144,Just listened to young service user experience of CAMHs and reminded how privileged I am to do the work I do. Loved… https://t.co/ZokD9MNdme +11/20/2017,Social_workers,@Martha7144,BBC News - 'I was shot in the knee as a punishment' https://t.co/N82vapRvaB +11/05/2017,Social_workers,@Martha7144,RT @connectedfrlife: Interesting article about breaking the cycle of intergenerational trauma. https://t.co/LWSG89MFow +11/04/2017,Social_workers,@Martha7144,"RT @MentalWelfare: Our chairman and CEO talk about why it is important to raise awareness of less well known mental illnesses +https://t.co/…" +11/01/2017,Social_workers,@Martha7144,"RT @RobDotHutton: Thankfully, no one in British politics has ever done this. https://t.co/TIs1EaNzC1" +10/29/2017,Social_workers,@Martha7144,@billiehughes https://t.co/rqYvRn9Pv1 +10/28/2017,Social_workers,@Martha7144,RT @BrendanWhittle: Social Work & S care win 3 of the 5 categories & the overall at Chairmans Awards. We are raising the profile of SW @set… +10/26/2017,Social_workers,@Martha7144,RT @SamiraAhmedUK: Tiny Telegraph correction for a massive lie on the front page that incited trolling & threats against a young black woma… diff --git a/RawData/TweetListings.csv b/RawData/TweetListings.csv new file mode 100644 index 0000000..31bebde --- /dev/null +++ b/RawData/TweetListings.csv @@ -0,0 +1,82492 @@ +Date,Genre,Influencer,Tweet +09/23/2012,Actors,@_AnneHathaway,"Now it's time to go through and follow all my friends , this could take a while." +09/23/2012,Actors,@_AnneHathaway,"RT @russellcrowe: 'Les Miserables' Extended Trailer: Anne Hathaway, Russell Crowe, Hugh Jackman & Tom Hooper Explain... http://t.co/ ..." +06/20/2018,Actors,@IAMannalynnemcc,#wokeupthisway was not a challenge I can say I necessarily wanted to be a part of. I still have my acne scars remin… https://t.co/391Dc8TsWw +06/20/2018,Actors,@IAMannalynnemcc,Go ahead. Try... https://t.co/hOl9sUSSz6 +06/16/2018,Actors,@IAMannalynnemcc,RT @looktothestars: @IAMannalynnemcc Our news story mentions your #charity work Pls share! https://t.co/AxMNsyvkl9 +06/16/2018,Actors,@IAMannalynnemcc,Thank you for your words. I remember laying on the floor of a friend’s flat in central England finding out for the… https://t.co/PQgZN9o6hm +06/15/2018,Actors,@IAMannalynnemcc,Sending a @RhondasKiss to those fighting the… https://t.co/qOAfO3oe5x +05/23/2018,Actors,@IAMannalynnemcc,“I’m not guarded...” https://t.co/8LNdiowAXG +05/20/2018,Actors,@IAMannalynnemcc,This woman!!!!!! Happy Birthday to the best big… https://t.co/0Ij2lJlg0P +05/11/2018,Actors,@IAMannalynnemcc,“Every 🌹 has its thorns...” https://t.co/KV7NGkw8i5 +05/02/2018,Actors,@IAMannalynnemcc,"Barnet, North London Council Elections are tomorrow, May 3rd. I hope you tick the box for my amazing friend… https://t.co/1D0v8aIBU7" +04/05/2018,Actors,@IAMannalynnemcc,"#unboxing day!! (Omg! I literally wrote that. #cheesyAF) +I love you @rembrandtflores and I’ll… https://t.co/l6kRAmKN8I" +04/05/2018,Actors,@IAMannalynnemcc,#unboxing graffitilibrary #candles in support of @together1heart #endslavery… https://t.co/AZD1uArNYs +04/02/2018,Actors,@IAMannalynnemcc,📸 @malachibanales https://t.co/OYOzzLGyp2 +04/02/2018,Actors,@IAMannalynnemcc,📸 @malachibanales https://t.co/Re7hPZiENW +04/02/2018,Actors,@IAMannalynnemcc,Love hurts https://t.co/Gvb9GcmFDR +04/02/2018,Actors,@IAMannalynnemcc,But like... how did we live before @postmates ? https://t.co/CHy4ypisGE +04/01/2018,Actors,@IAMannalynnemcc,Happy Valentine’s Day! https://t.co/HxBgKqqXYz +03/20/2018,Actors,@IAMannalynnemcc,@usweekly *please note the friendly sarcasm... xxx +03/20/2018,Actors,@IAMannalynnemcc,@usweekly Actually... I’m dating @KellyHu - we sat apart because we didn’t want you guys to write about us!… https://t.co/ib5X3eRxOr +03/13/2018,Actors,@IAMannalynnemcc,🧜🏼‍♀️ https://t.co/zbSSKSiTbI +03/09/2018,Actors,@IAMannalynnemcc,Waiting for @Postmates like... https://t.co/kulUYoJrlg +03/06/2018,Actors,@IAMannalynnemcc,balmain ejaf #Oscars #Oscars2018 #balmain #ejaf @ West Hollywood Park https://t.co/4iUTJoQU1x +03/06/2018,Actors,@IAMannalynnemcc,Beautiful evening in support of #EJAF #EndAIDS #BALMAIN balmain #Oscars #Oscars2018 @ West… https://t.co/Dp2C9f7V7t +03/06/2018,Actors,@IAMannalynnemcc,💋 @nordstrom #nordstromlocal #Oscars #Oscars2018 #MichaelCostello https://t.co/lZ9V8ZoKR9 +03/06/2018,Actors,@IAMannalynnemcc,I see you... xxx https://t.co/wEnULElYnD +02/28/2018,Actors,@IAMannalynnemcc,#TONIGHT at 8:30PM only on @poptv ( https://t.co/b8LMJKRQz6 for local listings) #LetsGetPhysical https://t.co/3PYEqXjz9Y +02/21/2018,Actors,@IAMannalynnemcc,"📷⚡️ +Glam by: @tracewatkins #myfacebytrace +Swimwear: @angelysbalek @cldstyle https://t.co/tvy2XlLOzs" +02/18/2018,Actors,@IAMannalynnemcc,"RT @ArcticGearHats: Creating opportunities, community, and a level playing field for people with disabilities. 100% of profits are allocate…" +02/15/2018,Actors,@IAMannalynnemcc,@IFCMidnight @GUBLERNATION @AlishaBoe @iTunes @amazon @VuduFans @GooglePlay Hey guys can you dm me this video so I can post on insta? +02/15/2018,Actors,@IAMannalynnemcc,"RT @IFCMidnight: This #ValentinesDay watch the perfect movie about love, relationships, happiness... and murder. + +68 KILL, starring @GUBLER…" +02/14/2018,Actors,@IAMannalynnemcc,@platinumjones @ohellvis @Christian_Zamo No. She lovvvvves it! 😈 +02/14/2018,Actors,@IAMannalynnemcc,RT @ArthurKade: .@IAMannalynnemcc's passion for the female empowerment movement around #MeToo and #TimesUp is spot on https://t.co/PH213Z0J… +02/14/2018,Actors,@IAMannalynnemcc,@Film_AMP @mayhem_festival @thedarksidemag @BroadwayCinema @GUBLERNATION @IFCMidnight @Cooke_Mayhem Love your screen grab choice ↘️ ↙️ +02/14/2018,Actors,@IAMannalynnemcc,"RT @PopTV: Burning muscles > burning questions! Send us your Q's now for #LetsGetPhysical star @IAmAnnaLynneMcC, then watch her FB Live tom…" +02/14/2018,Actors,@IAMannalynnemcc,LIVE w/ @PopTV for #LetsGetPhysical Episode 4 (*my personal favorite as I’m up to NO GOOD) Wednesday 8:30p/7:30c on… https://t.co/cAJOlBvRY7 +02/07/2018,Actors,@IAMannalynnemcc,Yes. This happened... https://t.co/k4bz7FmgUa +02/07/2018,Actors,@IAMannalynnemcc,RT @PopTV: Become whatever kind of freaky-fit Frankenstein's monster you want to be. #LetsGetPhysical https://t.co/5C59cttdo3 +02/06/2018,Actors,@IAMannalynnemcc,"LIVE 10AM est: @WendyShow #WendyShow talking my new film +@FirstWeTakeBrooklyn" +02/06/2018,Actors,@IAMannalynnemcc,Caption? https://t.co/OGRYEuAJyf +01/31/2018,Actors,@IAMannalynnemcc,"RT @lastcallcd: Tonight's Last Call w/ @CarsonDaly features: @IAMannalynnemcc from @PopTV's #LetsGetPhysical, music from @liamgallagher, pl…" +01/25/2018,Actors,@IAMannalynnemcc,"💋💋💋 @MaximMag so much fun talking my new show #LetsGetPhysical with you! (Wednesdays @ 8:30p only on @PopTV) +https://t.co/lRkzpWbmQw" +01/25/2018,Actors,@IAMannalynnemcc,RT @PopTV: TFW your boss tells you to do something and you desperately want to sass back. #LetsGetPhysical https://t.co/tkjzvGldcj +01/25/2018,Actors,@IAMannalynnemcc,RT @PopTV: What we wish happened anytime we left a room. #LetsGetPhysical https://t.co/IXJnInouBN +01/25/2018,Actors,@IAMannalynnemcc,5 MINUTES!!!! ... till the premier of my new show #LetsGetPhysical on @PopTV ( https://t.co/Y1eTGQx241 for your loc… https://t.co/eSCyP4zcMW +01/24/2018,Actors,@IAMannalynnemcc,Ready to go LIVE!! with @BuzzFeed #AM2DM talking my new comedy #LetsGetPhysical @PopTV! Watch at:… https://t.co/yQeWnsxNHU +01/23/2018,Actors,@IAMannalynnemcc,Catch me @BuzzFeed #AM2DM tomorrow morning talking my new comedy #LetsGetPhysical @PopTV! Watch live at 10am ET:… https://t.co/6RK2hv3kFb +01/23/2018,Actors,@IAMannalynnemcc,@MamSomaly Sending you & her a lot of love 💕 sister +01/23/2018,Actors,@IAMannalynnemcc,@PopTV #LetsGetPhysical Wednesday’s @ 8:30P https://t.co/6OyusxOkh9 +01/23/2018,Actors,@IAMannalynnemcc,Today on @iamsteveharvey talking #LetsGetPhysical premiering #TOMORROWNIGHT only on @poptv https://t.co/2Th6KWyBQg +01/19/2018,Actors,@IAMannalynnemcc,"How do YOU define success? Like the world does? Or the way you see fit? @oneyoungworld + https://t.co/NXmmhFDVRt via @youtube" +01/18/2018,Actors,@IAMannalynnemcc,They’re doing it!!! I literally emailed one of the #CRISPR discovering scientists & volunteered asking her to perfo… https://t.co/q7hf813bvL +01/17/2018,Actors,@IAMannalynnemcc,"RT @OfficialTCA: If you can't remember the '80s for any reason - fuzziness, haziness, you weren't born yet, whatever - #LetsGetPhysical on…" +01/17/2018,Actors,@IAMannalynnemcc,Always a good time with the @ktla5news crew. (*causally at 7am) 😏 #LetsGetPhysical @poptv https://t.co/6GPKntWLue +01/17/2018,Actors,@IAMannalynnemcc,#TelevisionCriticsAssociation #TCA18 @OfficialTCA ***New Show*** “Let’s Get Physical” Jan 24th only on @PopTV https://t.co/D8jLxmAziF +01/16/2018,Actors,@IAMannalynnemcc,@MamSomaly @IanBohen @mspennypuppy Sending you love baby 👶 +01/16/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 month ago that we saved her from sexual abuse,she got rape by her own father & very trauma,today 6 months after she can re…" +01/16/2018,Actors,@IAMannalynnemcc,Why we keep continuing our support to @together1heart @AFESIP and @MamSomaly https://t.co/xmEDZSP5XP +01/16/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: first Global Meditation Group -TM from @AFESIP @together1heart recovery center.Please join us for the world's meditation fam… +01/13/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: been sold in slavery,she got HIV/AID,I found her she was 8 years old,age 14 she died,January 11, +National Human Trafficking…" +01/13/2018,Actors,@IAMannalynnemcc,RT @IanBohen: Survivors are living out of the shadows but there’s more to be done!! @together1heart @MamSomaly @IAMannalynnemcc are shini… +01/13/2018,Actors,@IAMannalynnemcc,@MamSomaly Why I love you sister 😘 +01/13/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: She's survivor,she been very traumatized of her past but look at her now,she's our @together1heart nurse & keep continuing h…" +01/13/2018,Actors,@IAMannalynnemcc,@IanBohen @together1heart @MamSomaly 🙏🙏🙏 +01/10/2018,Actors,@IAMannalynnemcc,You are all my inspiration thanks for being such an inspiration 🙏 https://t.co/NbpNyE5gI7 +01/10/2018,Actors,@IAMannalynnemcc,@together1heart 2 in 1 our love to our baby 👶 https://t.co/onPJJKb5ij +01/02/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: 6:00am meditation time with our sister @IAMannalynnemcc 🙏 life is about forgiveness 😘 @together1heart @AFESIP @drdavidcooke… +01/02/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: Happy new year to everyone from our girls @together1heart @AFESIP recovery center 🙏may New Years bring everyone happy lucky… +01/01/2018,Actors,@IAMannalynnemcc,Happy New Year to me... I hope each of you find the love that has found me. Love that is pure and free without cond… https://t.co/yQY7gmzjKp +12/28/2017,Actors,@IAMannalynnemcc,Can’t wait to hug my Cambodian baby 😘 @MamSomaly https://t.co/hsHf8K6uIb +12/18/2017,Actors,@IAMannalynnemcc,Raised in the brothel. https://t.co/K7DiCEgeme +12/18/2017,Actors,@IAMannalynnemcc,I remember this moment so vividly. At our Siem Reap Center for sex-trafficking survivors sat these tiny little shoe… https://t.co/5NPsxcd7gr +12/18/2017,Actors,@IAMannalynnemcc,#Cambodia I’m coming home next week!!! (Photo credit: @EddsCamera ) https://t.co/ro21oPDsDW +12/17/2017,Actors,@IAMannalynnemcc,New York Attorney General on the Repeal of Net Neutrality: Futurism Excl... https://t.co/O1ND8yxzK2 via @YouTube +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Yesterday they cry 😭 today they started to play with other girls,how beautiful to see them become children again,playing lau…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She been trafficked from Vietnam to Thailand 3 time when she was 3 years old,when we found her she can't talk she been very…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 😢2 little baby sister got rape 2 years ago,they're 4&5 years old by they stepfather,they keep silent bc they don't want to h…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: First day computers for my baby girls how happy they are to use their talents ,thanks @IAMannalynnemcc @together1heart @AFES…" +12/10/2017,Actors,@IAMannalynnemcc,@LyViriya @MamSomaly @drdavidcooke @ChloeFlower @shaymitch @IanBohen Sending you love 💕 sister +12/08/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: meeting End with very fruitful from all survivors leaders,we are survivors we give back to our society,our objective is to e…" +12/08/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Survivors empowerment monthly meeting (voice for change) we try to find the way how to help victims for a better life & how… +12/08/2017,Actors,@IAMannalynnemcc,@MamSomaly @mspennypuppy @drdavidcooke @HildenbrandC Keep going sister I will see you soon in December love +12/08/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: My little sweetheart❤️sometimes I don't understand how can people hurt them,they are very sweet & beautiful,today we spend n…" +12/08/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: miss you more my angel 😇 you make me tears just to hear your voice 😢😢😢 https://t.co/oav8baLKHt +12/07/2017,Actors,@IAMannalynnemcc,https://t.co/xenWGSb73o @FHM @PopTV #LetsGetPhysical +12/04/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: I'm back home with my angel 😇 she make me heal from my sickness,a survivor right now becomes a strong angel & she want to be…" +12/02/2017,Actors,@IAMannalynnemcc,"@cleorestaurant @cleothirdstreet Chef Danny, it was the epitome of the superb! Thank you for having me!… https://t.co/dRPhqbK2tk" +12/01/2017,Actors,@IAMannalynnemcc,#facebytrace @tracewatkins - #blonde by @MichPugh #cut by @JonathanAntin https://t.co/38BZ8783Vw +12/01/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Just get out from hospital,10 years old girl got rape brutally by a 41 years old man while she try to finding foods,she's to…" +11/29/2017,Actors,@IAMannalynnemcc,"#Repost @together1heart **LINK in BIO +・・・ +Life is love. 💜 Painted on a wall at our center by… https://t.co/gBXvCbovJZ" +11/28/2017,Actors,@IAMannalynnemcc,"First 10 DONORS* receive a handmade-by-survivors, silk necklace selected by me on my recent trip to Cambodia!… https://t.co/nfihvWrrCF" +11/23/2017,Actors,@IAMannalynnemcc,#HappyThanksgiving https://t.co/abnCGEi4bM +11/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: See the little baby who got rape when she's 13 month,1 month after how beautiful smiles she give me,it's the best & every be…" +11/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: How beautiful to see a little baby who was even don't speak because of her trauma & now they can have their dream,she want t…" +11/22/2017,Actors,@IAMannalynnemcc,Heaven is a place on earth... https://t.co/Uhk7R6BfOQ +11/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: When @IAMannalynnemcc get tired then her baby send her these face & tell her ( you save our life & so many life now have hop… +11/19/2017,Actors,@IAMannalynnemcc,So proud of you girls 😘 https://t.co/J4rFYt4gVE +11/19/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Sports time for our survivor girls with the village children,they try their best to include them self with community childre…" +11/19/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Received this message on FB,You make me tears 😢my sweetheart,you are the most beautiful from inside and out,you are strong,y…" +11/18/2017,Actors,@IAMannalynnemcc,Thank you @ShowMeYourMumu I LOVVVE my personalized denim bomber!! https://t.co/kr0NTGboNR +11/16/2017,Actors,@IAMannalynnemcc,#firstwetakebrooklyn https://t.co/EQw4XE6QAQ +11/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Thanks to each of you for ur like,follow,comments & support to victims & survivors,without ur encouragement we can't stand a…" +11/09/2017,Actors,@IAMannalynnemcc,"#LetsGetPhysical January 24th, 2018 on @poptv https://t.co/MeFzc9N983" +11/09/2017,Actors,@IAMannalynnemcc,#behindthescenes @poptv #LetsGetPhysical - Glam: @tracewatkins https://t.co/e4YiDCWm6Y +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Most of my dress come from survivors who been @our recovery center,she been very traumatized & today successful in her busin…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: We always can turn darkness to the lighter,we can turn hate to forgiveness, anger to happiness, pain to healing by unconditi…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She try so hard to survive from her suffering,trauma from what she going true,after few month been rape now she started her…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: This video make my day,the 13 month baby started to play,she is out of operation after got rape🙏I pray that her health going…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @brianaevigan_2: @MamSomaly your smile is brightening the world. Thank you for all that you do, all the… https://t.co/b7M5RGf9Dv" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She’s very happy& I’m happy too,congratulations to u baby after a storm now is sunshine ☀️I’m in tear but happy tears❤️ thx…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 Years old baby who got rape 10day ago she’s out of hospital.started her new life with hope love laughs learn,she’s very sm…" +11/08/2017,Actors,@IAMannalynnemcc,"RT @IanBohen: #OneLoveGala is tomorrow night to benefit victims of sexual slavery and exploitation. Join me, @together1heart, @MamSomaly an…" +11/06/2017,Actors,@IAMannalynnemcc,"Learning a very special prayer from my hero and teacher @MamSomaly . For all of my girls, for… https://t.co/TuQWN3FdHs" +11/04/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: lovely message from my baby after she stand up in front of perpetrator who rape & try to kill her,she's very strong & she wi…" +11/03/2017,Actors,@IAMannalynnemcc,"RT @MayorStanton: Inspiring morning. Opened today: Starfish Place, the nation’s 1st permanent supportive housing for survivors of sex traff…" +11/03/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Join the fight TODAY, attend the Together1heart annual gala! Tickets: https://t.co/PFklnHajQQ +One Time Donation: https://t.c…" +11/03/2017,Actors,@IAMannalynnemcc,@sleemol @MamSomaly Thank you for your motivation +11/03/2017,Actors,@IAMannalynnemcc,"RT @sleemol: I still don't really have the words to describe what I saw in Cambodia, but I tried with this piece: https://t.co/4gHaQAPafC" +11/02/2017,Actors,@IAMannalynnemcc,"My baby it’s such a beautiful & inspiration to hear what they want in life,why I keep working so hard , https://t.co/K3fNoPS7qs" +11/02/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Join the fight TODAY, attend the Together1heart annual gala! Tickets: https://t.co/PFklnHajQQ +One Time Donation: https://t.c…" +11/02/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: We got a great new,13 month baby who got rape by a HIV/AIDS men is now safe,she doesn't get infections from him but we have…" +10/28/2017,Actors,@IAMannalynnemcc,#HappyHalloween #JJCLOWNS @justjared #HalloweenParty2017 - love you @jaredeng https://t.co/5GTY0c1Qh3 +10/28/2017,Actors,@IAMannalynnemcc,RT @JustJared: .@IAMannalynnemcc and @RealMichelleT both went to the dark side for their #JJCLOWNS costumes last night! https://t.co/az3iI9… +10/28/2017,Actors,@IAMannalynnemcc,#aboutlastnight @nobumalibu w/ my lovely @kimdejesus - xxx @rembrandt @EFGpr https://t.co/bcfnvcs2md +10/28/2017,Actors,@IAMannalynnemcc,#aboutlastnight @nobumalibu w/ my lovely @KimDeJesus9 - xxx @rembrandtflores @efgpr @ Nobu Malibu https://t.co/x9hYLqyHzk +10/26/2017,Actors,@IAMannalynnemcc,💕💞 https://t.co/zQ1CqSYLnf +10/23/2017,Actors,@IAMannalynnemcc,My hero being the badass that she is. My big sis @theAngelMcCord is the rainbow in my clouded… https://t.co/Rqf0pf6JCT +10/23/2017,Actors,@IAMannalynnemcc,Help get my beautiful goddaughter’s Daddy elected 2 the city council #Redding #Pennsylvania #VENMO @kirk-Mullen-2 /… https://t.co/cbv12Cc3K4 +10/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She get better after her meditation,everyday she try her best to get out of her trauma 😘 @IAMannalynnemcc @drdavidcooke @tog…" +10/23/2017,Actors,@IAMannalynnemcc,RT @drdavidcooke: These extraordinary young women have completed uni despite early years of extreme trauma thanks to @MamSomaly @AFESIP htt… +10/23/2017,Actors,@IAMannalynnemcc,RT @drdavidcooke: Working with women in Phnom Penh slums forced into prostitution to support families @MamSomaly #UnconditionalLove https:/… +10/22/2017,Actors,@IAMannalynnemcc,So excited to join my co-star #janeseymour in support of her beautiful charity @openheartsfoundation 💕 https://t.co/UK3pU6XNWv +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: holiday activity at ur @together1heart @AFESIP recovery center we try to make them confident & heal from their trauma @IanBo… +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Life is love ❤️ sending everyone love from @together1heart please keep hopes & smiles @IAMannalynnemcc @drdavidcooke @ChloeF… +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Morning meditation for our girls @together1heart @AFESIP https://t.co/Y4vXaqfij2 +10/17/2017,Actors,@IAMannalynnemcc,#MeToo https://t.co/O33k7iQIXf +10/16/2017,Actors,@IAMannalynnemcc,Get a Bae who can do both... https://t.co/Mz5CDRg9Op +10/14/2017,Actors,@IAMannalynnemcc,13 month baby victim of rape are now saved with her 21 Years old mother at @together1heart MamSomaly @AFESIP recove… https://t.co/Vb7C3HhoJP +10/12/2017,Actors,@IAMannalynnemcc,"RT @kienyke: #OYW2017 | Mensaje de @IAMannalynnemcc a todos los que han sufrido acoso sexual: No es el final, puedes seguir, no es tu culpa…" +10/12/2017,Actors,@IAMannalynnemcc,@SexYSuccubus @MamSomaly Thx to you +10/12/2017,Actors,@IAMannalynnemcc,@kentspeakman @together1heart @MamSomaly 😘🙏 +10/11/2017,Actors,@IAMannalynnemcc,Today @MamSomaly saved a 8 Years old girl raped by a family member.This is the reason why I support @together1heart… https://t.co/Zah7BKd1HS +10/11/2017,Actors,@IAMannalynnemcc,@MamSomaly Hug & love to my little baby sooner I will be there to hug you 😘 +10/11/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: She lost her mother at 5.Her father abandoned her&her sister. Her younger sister was given away.she got raped by a family me… +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 years old was raped by brother in law.A few months later,mother passed away.the small cottage was fired in 7 days followin…" +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: No word to explain what I feel. 13 month old baby got raped by neighbor who have HIV. This break my heart, that why I contin…" +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: After my suffering day,today visit my girls at @together1heart @vimean beauty training salon 💇 so inspiration to see them ge…" +10/10/2017,Actors,@IAMannalynnemcc,Today @MamSomaly went to Siem Reap province visiting a baby girl who is only 13-month-old and was brutally raped by… https://t.co/hMjY7J34N8 +10/07/2017,Actors,@IAMannalynnemcc,@SkyNewsTom @SkyNews Great chatting with you! Thank you for bringing these topics to the forefront. 🙏🏽🙏🏽🙏🏽💜💜💜 +10/07/2017,Actors,@IAMannalynnemcc,"RT @OneYoungWorld: .@IAMannalynnemcc, one of Hollywood's strongest female philanthropists, sheds light on sexual violence & human trafficki…" +10/05/2017,Actors,@IAMannalynnemcc,Sending love frm @together1heart 2 the beautiful inner city children in #LosAngeles supported by the efforts of… https://t.co/GKqZHs7BHh +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Day 3th after got rape by her own father.she feel better but still pain,we got back from clinic.she going to be heal by ❤️fr…" +10/05/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: 11 years old girl got rape by her biological father😭to me both of them(mother&daughter)are victim mother was beaten every da… +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: monthly survivors network meeting,so proud of each of them for their success,they worked with me,they give back to society h…" +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She was married have 2kids,she was beaten everyday then sold To sex-slavery.her2 daughter got rape since they was 5&3 years…" +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: seeing them grow up.some of them been with me since 20 years&some more then 10 years,some get married have kids&success in t…" +10/03/2017,Actors,@IAMannalynnemcc,"Being the boss is so difficult. +@poptv #LetsGetPhysical #poptv #January2018 https://t.co/2hctAmOcA1" +10/02/2017,Actors,@IAMannalynnemcc,"Missing my Little Angels 👼🏼! #EndSlavery @together1heart + +*photo credit @EddsCamera https://t.co/03v8X78bqX" +10/01/2017,Actors,@IAMannalynnemcc,"RT @IFCMidnight: .@IAMannalynnemcc packs a mean piece (and a punch) in 68 KILL, now on @iTunesMovies @AmazonVideo @XFINITY @optimum @GetSpe…" +09/27/2017,Actors,@IAMannalynnemcc,TODAY: Join my interview with Cam Rogers on the #camrogersshow LIVE at 10:15 ET https://t.co/B8HVigadzD +09/26/2017,Actors,@IAMannalynnemcc,"Happy Birthday, Mom!!! @Sheri_Geyer https://t.co/pm9CeZR3ej" +09/26/2017,Actors,@IAMannalynnemcc,See you next week in Bogota! @oneyoungworld https://t.co/ukkLI1mTZu +09/24/2017,Actors,@IAMannalynnemcc,"""5 Touchdowns"" ""And how old is he?"" ""I don't know? Does it matter?"" Love these commentators #PatsNation #tombrady #thefckingGOAT" +09/19/2017,Actors,@IAMannalynnemcc,"#trailerdays tracewatkins decided he wants to be a photographer 😹 (love you, mean it)… https://t.co/BtxI0yYuem" +09/19/2017,Actors,@IAMannalynnemcc,Throwback to my darker dayz... https://t.co/59jmmYviHA +09/19/2017,Actors,@IAMannalynnemcc,First official week as Mrs. #ClaudiaCross -Methinks she seems like an older version of a girl I… https://t.co/u7cvjs4oI0 +09/14/2017,Actors,@IAMannalynnemcc,@Sinavann83gmai2 I'm proud of you sister 😘 https://t.co/Ch9TirAmrr +09/07/2017,Actors,@IAMannalynnemcc,RT @mosesbread72: Equality. https://t.co/NQ4pJt94AZ +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She's happy when she talk to her girls @IAMannalynnemcc you a our supper hero 😘morning from Cambodia everyone,let smiles 😀4…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She was rape then sold by her own mother,9 years we try to find her family,I spend 2day going village to other,now we found…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: No matter what we are happy for what we do to make other get hope,happy,my mission with my teams & girls @together1heart @IA…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Morning I love you❤️from Cambodia,our last day holiday @IAMannalynnemcc @together1heart @mspennypuppy @SusanSarandon @drdavi…" +09/05/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: 1 ofmy girl who has been reintegrated through Community-based education back to live with her family after long term recover… +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 1 abandoned by her own parents,1 got rape by her own father&rejected by her mother,1 got rape,my field work😢now my son go to…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 9 years old got rape,her mother sold her to the slavery,9 year she stayed at ur center,now she's ready to find her mother bu…" +09/04/2017,Actors,@IAMannalynnemcc,"Just one more taste, forbidden fruit. +I make it wrong. I need its due +He sings a song; a nightmare's rhyme. +A cry w… https://t.co/vBnfqWjWg7" +09/04/2017,Actors,@IAMannalynnemcc,#demboyz @UCLAFootball --- !!!!!!! Patriots style #comeback 35 unanswered points. #Rosen @josh3rosen +08/31/2017,Actors,@IAMannalynnemcc,"""To see a World in a Grain of Sand +And a Heaven in a Wild Flower +Hold Infinity in the palm of your hand +And Eternit… https://t.co/yoRTk3azla" +08/26/2017,Actors,@IAMannalynnemcc,"@trespink @SouthwestAir I appreciate you sharing your opinion. Honestly, I don't discriminate against discriminatio… https://t.co/8qjm2WqIXP" +08/26/2017,Actors,@IAMannalynnemcc,RT @JustJared: .@IAMannalynnemcc is speaking out after @SouthwestAir refused to let her gay friends honor the Family Boarding rule. https:/… +08/26/2017,Actors,@IAMannalynnemcc,RT @UKSAYSNOMORE: A healthy #relationship means communication and respect. Learn more + share: https://t.co/6TwrmHcke1 #UKSAYSNOMORE +08/26/2017,Actors,@IAMannalynnemcc,"#OPENLETTER to @southwestair +Dear Southwest Airlines, + +Have you ever felt bullied? Have you ever been picked on?..… https://t.co/co4F1f6vFw" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Jumping to raise awareness,jumping for a good cause in 10 minutes @IAMannalynnemcc I love you and thanks for everything that…" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Everything because of you,love can heals you love can heal pain,without love , peace ✌️ unconditional love ❤️ with @IAMannal…" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Survivors teaching victims to encourage them to have more confidence on them self,so proud to see them give back to other @I…" +08/20/2017,Actors,@IAMannalynnemcc,"I LIVED!!! +To my sisters and brothers around the world who have suffered and survived Modern… https://t.co/B2nes690WT" +08/19/2017,Actors,@IAMannalynnemcc,I believe in love. I believe in freedom. RT if you want to see the end of sex trafficking in our lifetime #18for18 #endsextrafficking +08/19/2017,Actors,@IAMannalynnemcc,"DONATE: $50, $250 or $500 shoutout! +Our vision is to see a world where women & children are safe from slavery...… https://t.co/PBbLINrKiy" +08/18/2017,Actors,@IAMannalynnemcc,Check out my 🇬🇧 🇬🇧friend @iamleftclothing 's awesome line!! @iamleftclothing #wearyourprinciples… https://t.co/826pYYPlwq +08/18/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Respecting people that's what I teach my girls & now our survivor @RatanaChan4 teach other how to respect🙏 @together1heart… +08/17/2017,Actors,@IAMannalynnemcc,John!! @Omikron7291 thank you so much for your donation to support my skydive to #EndSlavery https://t.co/ZRfU2p9IVM +08/17/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: She's going to the court again her uncle who rape her & other side her father going to prison bc he kill her mother😢 in 1 da… +08/16/2017,Actors,@IAMannalynnemcc,My baby angel 👼 😘😘 https://t.co/zaunTQylm4 +08/16/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: My girls works on morality&regulation.no matter who u gone true .The most important is about ethnical& respectful that they… +08/16/2017,Actors,@IAMannalynnemcc,Help me throw myself out of a ✈️ 2 help rescue girls like Srey Net so they can hv an education… https://t.co/vfm4bjYlqf +08/14/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Just see your post @Noraoeur7 you make me cry of happiness I am the most lucky mother thx @SusanSarandon @IAMannalynnemcc fo… +08/14/2017,Actors,@IAMannalynnemcc,Human Trafficking affects over 30 million people. YOU can stop it. Join me with #18for18ProjectRescue https://t.co/ZRfU2p9IVM PLZ PLZ RT 💜💜 +08/14/2017,Actors,@IAMannalynnemcc,⌚️ 6 days before I throw myself out of a plane at 18k ft to bring awareness to #endsextrafficking PLZ Donate https://t.co/ZRfU2p9IVM +08/14/2017,Actors,@IAMannalynnemcc,In case no one ever told you... in case you were made to feel the opposite... in case YOU don't tell YOU... in ca..… https://t.co/EpKifi7I1i +08/14/2017,Actors,@IAMannalynnemcc,"I'm so proud of you own,your work as psychology can help more victims& survivors 😘i love you @Noraoeur7 😘 thanks… https://t.co/3gbabmw2xg" +08/14/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Day out with my sweetheart @IAMannalynnemcc how great am I to be with a very sweet woman with a big heart ❤️ https://t.co/PH… +08/13/2017,Actors,@IAMannalynnemcc,"You make my heart warm, my darling daughter! So thankful for your love! ❤️❤️ https://t.co/spCLSQz1X8" +06/27/2018,Actors,@EmmaWatson,"RT @equalitynow: 'We are very pleased that Noura has won the court appeal against her death sentence...However, sentencing her to five year…" +06/17/2018,Actors,@EmmaWatson,Yesterday was #DayoftheAfricanChild and I celebrated my friend Alice in Zambia & her work to keep girls in school &… https://t.co/wU7c1O9fXF +06/11/2018,Actors,@EmmaWatson,"In awe of everybody at #Processions2018, some amazing artwork too! https://t.co/xlBMfiJEiJ" +06/09/2018,Actors,@EmmaWatson,"Happy Pride, everyone! #Pride" +05/24/2018,Actors,@EmmaWatson,"A vote for the freedom to choose, a vote for women's rights, a vote for women's control over their bodies, a vote f… https://t.co/zX0lmwEvCc" +05/23/2018,Actors,@EmmaWatson,Happy World Turtle Day! https://t.co/SclhKMDDOX +05/22/2018,Actors,@EmmaWatson,"RT @equalitynow: ""I’ve never spoken to her. I don’t know who she is. But she is my sister… and I can’t let her die for defending herself ag…" +05/17/2018,Actors,@EmmaWatson,"This #IDAHOT I stand in solidarity with LGBTQI activists who are fighting to have the same rights, freedoms, protec… https://t.co/pwUp1uASmu" +05/12/2018,Actors,@EmmaWatson,"New UK research from @womensaid found that one third of young women have experienced abuse in a relationship, & tha… https://t.co/Iw9deHtVgk" +05/03/2018,Actors,@EmmaWatson,"RT @UN_Women: What was the last story you read regarding women and girls' rights? On #WorldPressFreedomDay, let's work to better represent…" +05/03/2018,Actors,@EmmaWatson,"All power to Deepika Singh Rajawat ✊🏻 + +https://t.co/sZzDVcIFNo" +05/02/2018,Actors,@EmmaWatson,"Women in positions of power are seriously under-represented, and BAME women even more so. Only 4% of MPs are BAME w… https://t.co/sUIjDBQptD" +05/02/2018,Actors,@EmmaWatson,#TimesUp https://t.co/4dKpSrMnFV +05/02/2018,Actors,@EmmaWatson,RT @ava: We join the call to #MuteRKelly and insist on the safety + dignity of all women. We demand investigations into R. Kelly’s abuse al… +05/02/2018,Actors,@EmmaWatson,"Huge respect, admiration and love for you @AshleyJudd https://t.co/6Wfk4jQPsy" +04/28/2018,Actors,@EmmaWatson,Amazing to see the @goldmanprize dominated by women for the first time. Sending congratulations to the winners & re… https://t.co/YwzzukGVps +04/26/2018,Actors,@EmmaWatson,Love you so much Noma ❤️ https://t.co/VFyBQMJ6BG +04/24/2018,Actors,@EmmaWatson,"Remembering the 1,134 people killed at #RanaPlaza five years ago, and all the garment workers & trade unionists sti… https://t.co/83fFf2fsCQ" +04/22/2018,Actors,@EmmaWatson,"Love this girl 🇬🇧 @letitiawright +https://t.co/iuzQbWRKRN" +04/21/2018,Actors,@EmmaWatson,"RT @meghamohan: Made to clean homes in just their underwear. Raped by landlords. Silenced. + +And then something changed. + +I spoke with some…" +04/20/2018,Actors,@EmmaWatson,Huge congrats to Eve Ensler on completing the amazing run of In The Body of the World in NYC; I loved it. so beauti… https://t.co/BvBL6kTtLE +04/10/2018,Actors,@EmmaWatson,My heart is so full #TimesUp https://t.co/rPOhp6d3oC +04/04/2018,Actors,@EmmaWatson,"RT @vogueaustralia: A passionate reader who leaves books in public spaces and has her own online book club, Our Shared Shelf, @EmmaWatson c…" +03/27/2018,Actors,@EmmaWatson,So proud of the women representing #TimesUp UK at last week's @empiremagazine awards. Huge thanks to… https://t.co/CtWiUrnaeO +03/24/2018,Actors,@EmmaWatson,I'm proud to support the amazing students behind #MarchForOurLives. Today they are marching on Washington DC to dem… https://t.co/yBFD0d4nZn +03/08/2018,Actors,@EmmaWatson,Calling UK sisters! Get your walking shoes on for Million Women Rise on Saturday 10th March in London. Full details… https://t.co/UX9LMYVeha +03/08/2018,Actors,@EmmaWatson,Listen to my brilliant friends @MaraiLarasi from @Imkaan and @RWitherspoon & @MonicaRamirezDC speaking at the UN fo… https://t.co/YqUFlxjrNB +03/05/2018,Actors,@EmmaWatson,Fake tattoo proofreading position available. Experience with apostrophes a must. +02/27/2018,Actors,@EmmaWatson,Yessss Australian Vogue!!!!!!! https://t.co/JN7y5SrHxv +02/20/2018,Actors,@EmmaWatson,"Thank you @peterlindbergh I adore, adore, adore you. @vogueaustralia cover shoot styled by Hannes Hetta, hair by Od… https://t.co/ELbaL4H0oH" +02/20/2018,Actors,@EmmaWatson,"RT @SistersUncut: Refuge budgets have been slashed by almost a quarter, resulting in 1,000 women and children being turned away by refuges…" +02/19/2018,Actors,@EmmaWatson,I helped guest edit @vogueaustralia’s March issue dedicated to conversations about sustainability and “Designing th… https://t.co/7Te1mjA3Dz +02/19/2018,Actors,@EmmaWatson,RT @MaraiLarasi: Gr8 to hear @BAFTA Chair acknowledging the level of abuse that has taken place in the industry and some of the steps being… +02/18/2018,Actors,@EmmaWatson,"We are bringing it home to the UK! @timesupnow + +Link here and in my bio to donate to the UK Justice and Equality fu… https://t.co/wOxsFwwqgt" +02/15/2018,Actors,@EmmaWatson,RT @BFI: Watch @EmmaWatson announce our partnership with @BAFTA and key industry organisations to eradicate bullying & harassment in the sc… +02/06/2018,Actors,@EmmaWatson,"#100years ago in the UK, certain women became eligible to vote, & women were given the right to stand for Parliamen… https://t.co/0XD37G2guC" +02/01/2018,Actors,@EmmaWatson,Get ready @BAFTA #TimesUp https://t.co/GDLNSl9UH5 +01/29/2018,Actors,@EmmaWatson,RT @nowthisnews: Janelle Monáe's incredible #TimesUp speech was undoubtedly one of the best parts of the #Grammys https://t.co/gmYk3Qtklq +01/22/2018,Actors,@EmmaWatson,Auctioning our Golden Globes dresses to raise funds for TIME'S UP Legal Defense Fund. You can bid on my RVDK dress… https://t.co/xTsjVChAwI +01/15/2018,Actors,@EmmaWatson,@MaraiLarasi You were the best date on the most meaningful red carpet I have ever walked. Thank you for being so da… https://t.co/hIagR0mmub +01/10/2018,Actors,@EmmaWatson,RT @jes_chastain: Please go see Michelle's performance in All The Money in The World. She's a brilliant Oscar nominated Golden Globe winnin… +01/08/2018,Actors,@EmmaWatson,And I’m beaming. Love these ladies! #TIMESUP https://t.co/yiXlNC09r4 +01/08/2018,Actors,@EmmaWatson,So moving to be on the red carpet yesterday. Thank you to everyone who wore black in solidarity with us. ✊… https://t.co/uiBBsk705X +01/08/2018,Actors,@EmmaWatson,"""There is a wall of silence against women and violence, and every time a woman speaks out it breaks a crack in that wall."" - @MaraiLarasi" +01/07/2018,Actors,@EmmaWatson,"Globally, violence against women and girls affects 1 in 3 women in their lifetime. #TimesUp https://t.co/55MnFKwKo3" +01/07/2018,Actors,@EmmaWatson,Excited to be at the Golden Globes with you tonight Marai! @MaraiLarasi @Imkaan @TIMESUPNOW +01/02/2018,Actors,@EmmaWatson,"I stand with women across every industry to say #TIMESUP on abuse, harassment, marginalization and underrepresentat… https://t.co/d5Qyl8uakC" +12/28/2017,Actors,@EmmaWatson,The girls in this picture with me are the Columbus Sisters. Eleanor in particular has just started a production com… https://t.co/OU2yT4QRMM +12/26/2017,Actors,@EmmaWatson,Millennials go have the crap scared out of you and see #Belleville at @DonmarWarehouse. Performances are amazing. You wont regret it. +12/24/2017,Actors,@EmmaWatson,"This Christmas 30,000 children in Haiti are living in orphanages, exposed to exploitation & abuse. @JK_Rowling's ch… https://t.co/JNVPZ3AWRs" +12/22/2017,Actors,@EmmaWatson,A moving reminder that sexual harassment happens in all industries - not just my own: https://t.co/TSEodkTfDf To t… https://t.co/DDnEUg6mMb +12/07/2017,Actors,@EmmaWatson,Thank you to @TIME's Person of the Year- the SILENCE BREAKERS for your voices in this time of change. https://t.co/jUwITSW1qo +11/28/2017,Actors,@EmmaWatson,I first met Alice in Zambia in 2012 & we celebrated #IWD2017 together. She’s an amazing activist who was once at ri… https://t.co/TMjvG6TkG4 +11/21/2017,Actors,@EmmaWatson,One day left to bid on a pair of my signed boots to support @smallstepsdocs. Help children in poverty gain access t… https://t.co/slDFC6vrmk +11/20/2017,Actors,@EmmaWatson,https://t.co/qNf8SPZkGY #MexicoRises https://t.co/eSuhbl0ghj +11/16/2017,Actors,@EmmaWatson,Ps - Oh and the film is amazing! The whole cast puts on an incredible performance and Steve directs with all the he… https://t.co/sdgrDNvNdt +11/16/2017,Actors,@EmmaWatson,"I love seeing inspiring books turned into films. @WonderTheMovie, directed by my friend Steve Chbosky, is out this… https://t.co/S5LktMMYfg" +10/16/2017,Actors,@EmmaWatson,"RT @fawcettsociety: This #BlackHistoryMonth we're remembering British women who made history. Among them, Claudia Jones, Olive Morris & Mar…" +10/10/2017,Actors,@EmmaWatson,"In this instance it was women affected but I also stand with all the men, indeed any person, who has suffered sexual harassment." +10/10/2017,Actors,@EmmaWatson,"I stand with all the women who have been sexually harassed, and am awestruck by their bravery. This mistreatment of women has to stop." +10/04/2017,Actors,@EmmaWatson,Help those in Mexico devastated by the earthquakes #MexicoRises https://t.co/zRUYG4W0X7 & https://t.co/6yLsnzoDRb +10/02/2017,Actors,@EmmaWatson,"RT @SadiqKhan: As a proud feminist, I'm delighted that we will bring the first ever statue of a woman to Parliament Square. https://t.co/jA…" +10/02/2017,Actors,@EmmaWatson,@SadiqKhan About time too! : ) +09/26/2017,Actors,@EmmaWatson,This is AWESOME Anoosha! @foxville_art https://t.co/DcD9D2s03t +09/23/2017,Actors,@EmmaWatson,Very excited to hear @melindagates announce $20M for underfunded women's movements. Congratulations @mamacash & others x #HowEqualityHappens +09/21/2017,Actors,@EmmaWatson,A timely reminder of why we must invest in the power of women's movements: https://t.co/PW7Z14MVJj #Goalkeepers17 #HowEqualityHappens +09/21/2017,Actors,@EmmaWatson,Modern slavery affects 40m people: 71% are women and girls. New report launched at #UNGA today:… https://t.co/qyPy2w1Xl6 +09/11/2017,Actors,@EmmaWatson,RT @rgay: Hunger is the next selection for Emma Watson's Our Shared Shelf book club: https://t.co/jqt09NlpNX +08/31/2017,Actors,@EmmaWatson,RT @shondarhimes: People. One million young immigrant #DREAMers will be at risk of deportation if #DACA is ended. One MILLION. We must #Def… +08/14/2017,Actors,@EmmaWatson,"THANK YOU SO MUCH to everybody who voted for me and @beourguest! Such lovely news to wake up to! Means a lot to me, thank you @TeenChoiceFOX" +08/01/2017,Actors,@EmmaWatson,Good luck at the @UEFAWomensEURO semi-final on Thursday #Lionesses! Will be cheering you on! ⚽️ +07/19/2017,Actors,@EmmaWatson,"Reward for information leading to return of rings lost Sunday 16th July at Mandarin Oriental spa, London: https://t.co/w9EHqZ8bmR xx" +07/14/2017,Actors,@EmmaWatson,I interviewed @MargaretAtwood for @EW and my book club https://t.co/jzDJYb7bi0. Such an honour! Full interview here… https://t.co/YIZpInItpS +07/11/2017,Actors,@EmmaWatson,Welcome @Malala! It is so exciting to have you on Twitter ❤ +06/21/2017,Actors,@EmmaWatson,I'm hiding copies of The Handmaid's Tale in Paris! Je cache des copies de La Servante Ecarlate dans tout Paris!… https://t.co/WSFbiVicG3 +05/15/2017,Actors,@EmmaWatson,One week left to register for your right to vote in UK election: https://t.co/3FjKcTfIiH #UseYourVoice https://t.co/jP8lWAkARq +05/08/2017,Actors,@EmmaWatson,Thank you @MTV for a wonderful evening and thank you to everyone who voted for me! ❤️🍿 #MTVAwards @beourguest +04/27/2017,Actors,@EmmaWatson,"💚 + +https://t.co/YQqrjeAfIr" +04/24/2017,Actors,@EmmaWatson,"I'm remembering #RanaPlaza today, four years on... Please consider #whomademyclothes + +https://t.co/KtIgR86qEc" +04/24/2017,Actors,@EmmaWatson,RT @Twitter: Join us Monday for a fireside chat with @jack and the cast of @WeAreTheCircle LIVE from Twitter HQ! #TheCircle https://t.co/gZ… +04/22/2017,Actors,@EmmaWatson,"So cool, @iamjonsi has created a song for @WeAreTheCircle ⭕️🎶 + +https://t.co/NrsOdeVikj" +04/21/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: When @EmmaWatson enters #TheCircle, all secrets will be undone. In theaters in ONE WEEK. Get tickets now: https://t.co/…" +04/13/2017,Actors,@EmmaWatson,RT @WeAreTheCircle: The perfect company. The perfect job. The perfect lie. #TheCircle - In theaters April 28. https://t.co/lfw0BZhmRz +04/13/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: Once you’re in, there’s no turning back. #TheCircle - Only in theaters April 28. https://t.co/YyJk7VhUC9" +04/05/2017,Actors,@EmmaWatson,"On average, women in the US are paid 20% less than men – and black & Hispanic women are paid even less. I support e… https://t.co/Y5aY7l3Cl0" +04/04/2017,Actors,@EmmaWatson,⭕️ @WeAreTheCircle xx https://t.co/cG6CF8NzVv +03/29/2017,Actors,@EmmaWatson,"I interviewed the brilliant Eve Ensler for @ELLEUK and #OurSharedShelf, here's part one! https://t.co/P59dpN3m6B" +03/29/2017,Actors,@EmmaWatson,https://t.co/8jdQ3axXul 🌹❤️ +03/22/2017,Actors,@EmmaWatson,Thank you to everyone who saw our film Beauty and the Beast! I saw so many lovely photos of families at the cinema… https://t.co/CiHSE9rB6R +03/17/2017,Actors,@EmmaWatson,"#BeautyAndTheBeast opens today! I hope you have as much fun watching it as I did making it. Love, Emma 🌹 @beourguest https://t.co/CoNaybGFqS" +03/16/2017,Actors,@EmmaWatson,"😻😻😻😻😻😻 + +@bestfriends @BuzzFeed @beourguest #BeautyAndTheBeast + +https://t.co/SNs1bIGuI1" +03/14/2017,Actors,@EmmaWatson,Not long to go until the big day! 🌹@beourguest #BeautyAndTheBeast https://t.co/U3RFJlZAzQ +03/11/2017,Actors,@EmmaWatson,Follow https://t.co/9OPIAyympV for a peek behind-the-scenes of our @beourguest press tour. Plus surprise kittens! (… https://t.co/SttvmXAdij +03/09/2017,Actors,@EmmaWatson,https://t.co/KROEfmGdE3 #IWD2017 https://t.co/rtsJwKzh9o +03/09/2017,Actors,@EmmaWatson,RT @MCeliaCR: George V!! #HalfTheSky is right next to you! ❤ #IWDoursharedshelf #ibelieveinbookfairies @the_bookfairies @ViragoBooks https:… +03/09/2017,Actors,@EmmaWatson,Dropping off books at Eleanor Roosevelt's monument✊📚#IWD #IWDOurSharedShelf #ADayWithoutAWoman… https://t.co/OTEcAcWghw +03/09/2017,Actors,@EmmaWatson,Dropping off books at Gertrude Stein statue in NYC✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies… https://t.co/hgWb3sK3mo +03/09/2017,Actors,@EmmaWatson,Dropping off books at the Joan of Arc memorial in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman… https://t.co/kgvvoGGgb1 +03/09/2017,Actors,@EmmaWatson,Dropping off books at @bluestockings bookstore in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies https://t.co/6Se2KbIZEQ +03/09/2017,Actors,@EmmaWatson,Dropping off books at Harriet Tubman memorial in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies… https://t.co/FjVh9SLIWI +03/08/2017,Actors,@EmmaWatson,#InternationalWomensDay #IWD https://t.co/GCroQSkQwH +03/08/2017,Actors,@EmmaWatson,Today I'm a red-striking ninja book-fairy out to spread some wise women's words @the_bookfairies #IWDOurSharedShelf… https://t.co/xFgd3KwBiI +03/08/2017,Actors,@EmmaWatson,"From midnight NYC time, book fairies around the WORLD will start hiding feminist books to mark #IWD #IWDoursharedshelf @the_bookfairies 📚" +03/07/2017,Actors,@EmmaWatson,RT @IntoTheGloss: Today's Top Shelf: @EmmaWatson https://t.co/wWCRwODVqJ https://t.co/skJ7XI0CWy +03/07/2017,Actors,@EmmaWatson,RT @Coveteur: Go inside @EmmaWatson's closet: https://t.co/8e2qPR3lgj https://t.co/GUwTQVGhaa +03/07/2017,Actors,@EmmaWatson,This is the part of my 2014 interview with Tavi where we talked about Beyoncé. My words are in bold. https://t.co/Y8vumOeyDT +03/05/2017,Actors,@EmmaWatson,Via BBC News - Bath Film Festival's F-Rating added to online film site IMDb https://t.co/D87ftiHxLj +03/03/2017,Actors,@EmmaWatson,RT @TheEllenShow: I sent @EmmaWatson to interview a nanny with hidden cameras. P.S. She doesn’t have kids. https://t.co/g2zYEj0q2b +03/01/2017,Actors,@EmmaWatson,RT @VanityFair: Go behind the scenes of Tim Walker's Vanity Fair cover shoot with @EmmaWatson. https://t.co/d2TnNXYVTo +02/28/2017,Actors,@EmmaWatson,"Thank you Graydon Carter, Tim Walker and @DerekBlasberg for my @VanityFair cover🌹https://t.co/0cwQv7yU42 https://t.co/n72imoeDjy" +02/27/2017,Actors,@EmmaWatson,Devastated to hear about Bill. A privilege to have worked with him. What a huge-hearted man. All my love to his family. +02/23/2017,Actors,@EmmaWatson,Follow the link for a chance to win tickets to a special screening of #BeautyandtheBeast in London tonight! https://t.co/sJvaBi5b1d x +02/22/2017,Actors,@EmmaWatson,https://t.co/p2eKUZWCSw ❤ +02/21/2017,Actors,@EmmaWatson,What a privilege to have worked with the genius that is Alan Menken 🎶🎵🎶 @beourguest #aladdin #pocahontas… https://t.co/r4Lf0fF5i7 +02/19/2017,Actors,@EmmaWatson,"Day one of the @beourguest press tour with Team Watson! I’ve started a new Instagram called ""the_press_tour"" so you… https://t.co/WVBYiM0I1h" +02/18/2017,Actors,@EmmaWatson,"RT @gatesfoundation: One of the biggest and oldest challenges is making sure people understand the lifesaving, poverty-ending power of cont…" +02/17/2017,Actors,@EmmaWatson,".@gatesfoundation: ""Poverty is sexist"" https://t.co/iTsGRbSiA6" +02/17/2017,Actors,@EmmaWatson,".@gatesfoundation: ""Contraceptives are one of the greatest antipoverty innovations in history"" https://t.co/CkqOcXL5Z3" +02/17/2017,Actors,@EmmaWatson,Reading the @gatesfoundation annual letter has lifted my spirits! https://t.co/Od7G6RvjGe +02/16/2017,Actors,@EmmaWatson,Thank you @EW! #BeOurGuest @beourguest https://t.co/hBSjtZqjFp +02/14/2017,Actors,@EmmaWatson,RT @beourguest: Like this tweet to get a special #BeOurValentine message from a cast member of #BeautyAndTheBeast! ❤️🌹❤️ #BeOurGuest on Mar… +02/12/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: Watch the new trailer for #TheCircle, the provocative thriller based on the acclaimed novel starring @EmmaWatson and @T…" +01/31/2017,Actors,@EmmaWatson,"RT @beourguest: The trailer for Beauty and the Beast is here 🌹 On 3.17, rediscover a tale as old as time.  Get your tickets now at https://…" +01/30/2017,Actors,@EmmaWatson,RT @c_poesy: ... https://t.co/pqyxVSb5GW +01/26/2017,Actors,@EmmaWatson,🌹 @beourguest 🌹 https://t.co/jbWYbXJQrD +01/23/2017,Actors,@EmmaWatson,https://t.co/5Dp3fUeQEp +01/22/2017,Actors,@EmmaWatson,#WomensMarch https://t.co/HkSrOqFTmk +01/22/2017,Actors,@EmmaWatson,#WomensMarch https://t.co/dYZPxJ13FI +01/22/2017,Actors,@EmmaWatson,"RT @PPIAction: “It's not our differences that divide us. It is our inability to recognize, accept,& celebrate those differences.” Audre Lor…" +01/22/2017,Actors,@EmmaWatson,RT @Almaharel: These women never met till today and practiced this song online. Show them some love. #Icantkeepquiet #WomensMarch #WomensMa… +01/22/2017,Actors,@EmmaWatson,RT @HuffingtonPost: Watch 6-year-old Sophie Cruz give one of the best speeches of the #WomensMarch https://t.co/DD044cKQus https://t.co/wVu… +01/21/2017,Actors,@EmmaWatson,https://t.co/kDHkIWMzQz +01/21/2017,Actors,@EmmaWatson,RT @aliciakeys: No matter where you were today... We sent a powerful message! https://t.co/vj0j1Xvxvy #WomensMarch #WhyIMarch #WomensRights… +01/21/2017,Actors,@EmmaWatson,RT @astroehlein: Women's rights are human rights - #WomensMarch https://t.co/RMqmtvdz7y +01/21/2017,Actors,@EmmaWatson,RT @tatianamaslany: ❤️💛💚💙💜✊🏿✊🏾✊🏽✊🏼✊🏻 sending love solidarity strength to everyone across the world marching for human rights!!! #WomensMarc… +01/21/2017,Actors,@EmmaWatson,#IStandWithPP Why the fight for reproductive rights goes on: https://t.co/VF2JCmDKwq +01/13/2017,Actors,@EmmaWatson,RT @RollingStone: Common and the National will headline a Planned Parenthood benefit concert before the inauguration ceremony https://t.co/… +01/13/2017,Actors,@EmmaWatson,The wonderful @Lin_Manuel is fundraising for @PPact - a great way to #StandWithPP & win the chance to see Hamilton https://t.co/9JYiVBlHyO +01/09/2017,Actors,@EmmaWatson,"Beauty and the Beast is on the cover of the new issue of @totalfilm, out later this week! 🌹@beourguest https://t.co/TLzATBC2og" +01/09/2017,Actors,@EmmaWatson,"RT @beourguest: On March 17, experience an adventure in the great wide somewhere. #BeOurGuest https://t.co/NUAUtpMfsH" +01/08/2017,Actors,@EmmaWatson,New poster for Beauty and the Beast! @beourguest 🌹 https://t.co/iE6YzVCKus +01/08/2017,Actors,@EmmaWatson,RT @THR: Watch the First Trailer for Hulu's 'Handmaid's Tale’ https://t.co/hl6kKnrLX3 https://t.co/AdC5FYRHFQ +01/03/2017,Actors,@EmmaWatson,Bangladesh garment factories sack hundreds after pay protests https://t.co/wGXSwlbA9n +12/27/2016,Actors,@EmmaWatson,"RT @stephenfry: She was the brightest, funniest, bravest, kindest, cleverest and sweetest person I ever knew. A crushing blow to lose @carr…" +12/27/2016,Actors,@EmmaWatson,RT @GlblCtzn: Wow! @adidas is aiming to produce 1 million pairs of the sneakers from more than 11 million plastic bottles. https://t.co/CH2… +12/22/2016,Actors,@EmmaWatson,RT @ktparkerphoto: Advance copies of the #strongisthenewpretty book came in today. ❤️❤️❤️ so excited! @WorkmanPub https://t.co/8jAWOuTceB +12/19/2016,Actors,@EmmaWatson,RT @TIME: Wonder Woman breaks through https://t.co/A8S6IyuerL +12/16/2016,Actors,@EmmaWatson,RT @HouseofCommons: MPs vote 135 to 2 to approve Preventing & Combating Violence Against Women & Domestic Violence. The Bill progresses to… +12/15/2016,Actors,@EmmaWatson,I have signed the @Independent's open letter and I urge all UK MPs to vote to ratify the Istanbul Convention tomorr… https://t.co/Q8L1luhZck +12/13/2016,Actors,@EmmaWatson,Tweet your MP : https://t.co/5aeIfgHTZy +12/13/2016,Actors,@EmmaWatson,How to find your MP : https://t.co/TTSxApXok1 +12/13/2016,Actors,@EmmaWatson,RT @SWCwomen: 3 Days to go! #IstanbulConvention #changeherstory #16DaysOfActivism #SWC16 @ICChangeUK @AngelaCrawleyMP @EmmaWatson https://t… +12/12/2016,Actors,@EmmaWatson,RT @nathansparkling: Listen to @eilidhwhiteford's interview with @bonisones2 for Women's Parliamentary Radio on #IstanbulConvention https:… +12/12/2016,Actors,@EmmaWatson,RT @ICChangeUK: On Friday we're fighting to #ChangeHerstory. The #IstanbulConvention is a vital tool in ending violence against women. It's… +12/12/2016,Actors,@EmmaWatson,RT @fawcettsociety: Make sure your MP attends the Second Reading of the #IstanbulConvention Bill on 16th Dec to #changeherstory. https://t.… +12/12/2016,Actors,@EmmaWatson,"RT @ICChangeUK: Here's exactly why the #IstanbulConvention is so important, and why we need to ratify it now: #ChangeHerstory https://t.co/…" +12/12/2016,Actors,@EmmaWatson,RT @ICChangeUK: The #IstanbulConvention aims to ensure women live lives free from violence & free from the fear of violence. Time to ratify… +12/06/2016,Actors,@EmmaWatson,"RT @WeAreTheCircle: Knowing is good. Knowing everything is better. See #TheCircle starring @TomHanks, @EmmaWatson, @JohnBoyega and @KarenGi…" +12/05/2016,Actors,@EmmaWatson,"RT @ChrisEvans: Wow. I will never look at this film, Bertolucci or Brando the same way again. This is beyond disgusting. I feel rage https:…" +12/05/2016,Actors,@EmmaWatson,RT @Pharrell: Solid proof that people coming together can change things for the better. https://t.co/5fLEGFYpmR +11/26/2016,Actors,@EmmaWatson,RT @Elif_Safak: Günün en güzel fotoğrafı... Turkey's women fight for their rights #ViolenceAgainstWomen #herHALdedireniyoruz (via @demishev… +11/25/2016,Actors,@EmmaWatson,RT @ForestWhitaker: #ViolenceAgainstWomen violates the fundamental human rights of millions of girls & women across the world. We should al… +11/25/2016,Actors,@EmmaWatson,"RT @UN_Women: For Int'ntl Day to End Violence against Women, we #orangetheworld and say NO to violence from Australia to Belgium and from C…" +11/25/2016,Actors,@EmmaWatson,RT @edgarramirez25: Today 11/25 I say NO to violence against women and girls. Do you? #InternationalDayForTheEliminationOfViolenceAgainstWo… +11/25/2016,Actors,@EmmaWatson,"RT @JustinTrudeau: Today, I encourage all dads to take #20MinutesofAction4Change & talk to your sons about consent, boundaries & respect fo…" +11/25/2016,Actors,@EmmaWatson,"RT @kellyslater: Today is #WhiteRibbonDay, a day to educate and raise awareness about violence against women. The… https://t.co/D9OZkbCdi8" +11/25/2016,Actors,@EmmaWatson,"RT @patagonia: 100% today, 1% every day. Today, we’re donating 100% of sales to grassroots environmental groups. #LoveOurPlanet: https://t.…" +11/21/2016,Actors,@EmmaWatson,"RT @lennyletter: Lennys, #WomenOfTheHour is finally back! Make sure to check out the first episode, ""Trapped"" and subscribe: https://t.co/X…" +11/21/2016,Actors,@EmmaWatson,Have you seen @fantasticbeasts ? If you have did you love it as much as I did? 🐯🐵🐍🐛🐉 +11/21/2016,Actors,@EmmaWatson,RT @BritishVogue: Who said you can only wear that knockout party dress once? https://t.co/65drbSPmsA https://t.co/Dm0BOxhFAd +11/17/2016,Actors,@EmmaWatson,MUST WATCH #girlpower https://t.co/URlJKNqqWh +11/16/2016,Actors,@EmmaWatson,@VogueRunway @voguemagazine Thank you ! X +11/15/2016,Actors,@EmmaWatson,"RT @lumos: ""This is a solvable problem."" @jk_rowling calls on you to help spread the word about the 8 million children hidden in orphanages…" +11/15/2016,Actors,@EmmaWatson,"RT @jk_rowling: Rage is to righteousness as certainty is to wisdom. Constantly mistaken for each other, they're hardly ever in the same roo…" +11/14/2016,Actors,@EmmaWatson,"RT @beourguest: Watch the brand new trailer for #BeautyAndTheBeast, starring @EmmaWatson & @ThatDanStevens 🌹 #BeOurGuest 3.17.17 https://t.…" +11/14/2016,Actors,@EmmaWatson,RT @TheRealLukevans: A tale as old as time... World premiere of the #BeautyAndTheBeast trailer coming tomorrow on @GMA #BeOurGuest https:/… +11/11/2016,Actors,@EmmaWatson,RT @AVAETC: Some beauty and connection and compassion and hope for you on this Friday. Courtesy of @JohnLegend. xo https://t.co/Xz93Uz7YMc +11/10/2016,Actors,@EmmaWatson,So happy to show all of you the new teaser poster for Beauty and the Beast! I hope you like it. Love Emma x… https://t.co/bowDymL3eD +11/09/2016,Actors,@EmmaWatson,"RT @BooksSubway: A beautiful post, thanks to @Waterstones Leadenhall Market for sharing this quote from Maya Angelou. #oursharedshelf @ours…" +11/09/2016,Actors,@EmmaWatson,.@DrMayaAngelou https://t.co/H4yVuVDTKL +11/09/2016,Actors,@EmmaWatson,.@BooksSubway @BooksUndergrnd @DrMayaAngelou #Mom&Me&Mom #OurSharedShelf https://t.co/sSXZBVFjLz +11/09/2016,Actors,@EmmaWatson,Today I am going to deliver Maya Angelou books to the New York subway. Then I am going to fight even harder for all the things I believe in. +11/06/2016,Actors,@EmmaWatson,"RT @BBCOne: Gangster. Penguins. 🐧 +(You'll want to turn the sound on...) +#PlanetEarth2. Starts tonight. 8pm. @BBCOne. https://t.co/xP1HrXa0u2" +11/06/2016,Actors,@EmmaWatson,I'm home and really geeking out over this - #PlanetEarth2 starts TONIGHT at 8pm on @BBCOne & 9pm on BBC Earth Nordics. Can't wait! +11/02/2016,Actors,@EmmaWatson,RT @EW: Be our guest for an exclusive first look at @Disney’s magical and romantic live-action #BeautyAndTheBeast! https://t.co/jniafxmEpV… +11/01/2016,Actors,@EmmaWatson,"RT @BooksUndergrnd: Copies of the #OurSharedShelf read Mom&Me&Mom travel the tube today, with a special something inside from @EmWatson htt…" +10/31/2016,Actors,@EmmaWatson,If you’re in London keep your eyes peeled for a surprise on the tube tomorrow… #OurSharedShelf #Mom&Me&Mom @BooksUndergrnd +10/28/2016,Actors,@EmmaWatson,RT @MalalaFund: Aziz Ansari is inviting YOU to the Master of None Season 2 set! Support Malala Fund & girls’ education by entering: https:/… +10/25/2016,Actors,@EmmaWatson,https://t.co/gNs07Q9AQf +10/17/2016,Actors,@EmmaWatson,This makes me so proud to have been part of @TheWorldsLesson. Take a look and take part if you haven't already! https://t.co/j7z4aIJnZI +10/16/2016,Actors,@EmmaWatson,RT @UN_Women: Chief Kachindamoto has annulled over 330 child marriages in Malawi since 2013. Learn about her work: https://t.co/3fPu3jYgJv… +10/04/2016,Actors,@EmmaWatson,Was inspiring & so fun to meet with my @OneYoungWorld Ottawa gender equality scholars. Proud of them all! #goal5… https://t.co/WfPT9Mdo6t +09/30/2016,Actors,@EmmaWatson,Amazing night at the @OneYoungWorld Ottawa opening ceremony yesterday! @justinpjtrudeau @KofiAnnan @Yunus_Centre https://t.co/jmwQunE64k +09/29/2016,Actors,@EmmaWatson,"Ready for anything after @SheFighter training with @lino1984, one of my amazing @OYWOttawa scholars. https://t.co/bfJOpB1rLC" +09/29/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: ""I am here to network, to hear other people ideas, their success stories and get inspired.""- Abhinav Khanal, Nepal #OYWM…" +09/29/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: For the first time ever, the refugee flag is a part of the #OYW Flag Bearing Ceremony, tonight in the nations capital at…" +09/29/2016,Actors,@EmmaWatson,"RT @CanadianPM: PM Trudeau meets with @KofiAnnan, @EmWatson and Mary Robinson on the margins of the @OneYoungWorld Summit. #OYW https://t.c…" +09/29/2016,Actors,@EmmaWatson,"RT @ftlive: This morning, @JustineGreening told #FTWomen: It's up to our generation to make gender equality happen. https://t.co/SmwcqIPYnt" +09/28/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: BIG news: Goodwill Ambassador for @UN_Women & actor, Emma Watson, comes to @OYWOttawa to meet young activists fighting f…" +09/28/2016,Actors,@EmmaWatson,RT @JustinTrudeau: .@EmWatson is a champion for gender equality worldwide. It's a pleasure welcoming you to Ottawa ahead of the @OneYoungWo… +07/01/2018,Actors,@LeoDiCaprio,"We produced the documentary, @virungamovie, a few years ago to raise awareness about the need to protect the last m… https://t.co/hWmpU9CbI4" +06/30/2018,Actors,@LeoDiCaprio,"RT @LionRecovery: We have lost half of Africa's #lions in just 25 years. Along with our many grantees and partners, we are committed to res…" +06/29/2018,Actors,@LeoDiCaprio,Congrats to @KingoEnergy. Proud to invest in and be an advisor for Kingo as they work to eradicate energy poverty. https://t.co/wonCZB4j6K +06/28/2018,Actors,@LeoDiCaprio,https://t.co/DvkSdDvers +06/28/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: #Nature4Climate is a new campaign to help raise the profile of #nature as a critical response to #ClimateChange. Help give… +06/27/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: As Carbon Dioxide Levels Rise, Major Crops Are Losing Nutrients https://t.co/yXeTGN4LLP #climatechange https://t.co/uMxsUV…" +06/20/2018,Actors,@LeoDiCaprio,RT @ClimateReality: Sign our #ClimateMajority pledge and let the @WhiteHouse know that Americans support commonsense solutions to the clima… +06/17/2018,Actors,@LeoDiCaprio,RT @ozy: A 17-year-old activist is not uncommon these days. But @NalleliCobo has been challenging the oil industry since age 9 when toxic c… +06/16/2018,Actors,@LeoDiCaprio,RT @EURACTIV: EU strikes deal on 32% renewable energy target and palm oil ban after all-night session https://t.co/8vZfvIZdvm +06/15/2018,Actors,@LeoDiCaprio,RT @NewsHour: Antarctica is losing ice twice as fast as anyone thought https://t.co/5yd87lw9gp +06/15/2018,Actors,@LeoDiCaprio,Great news from @DiCaprioFdn and @TompkinsConserv’s rewilding project. Learn more. https://t.co/tSnZvWZLM0 +06/15/2018,Actors,@LeoDiCaprio,"RT @oceana: An estimated 8 million metric tons of plastic is dumped into the ocean each year. + +It's time to #BreakFreeFromPlastic. https://…" +06/14/2018,Actors,@LeoDiCaprio,A great read on the always inspiring @laurenepowell. cc: @EmCollective https://t.co/2HFLr653dq +06/12/2018,Actors,@LeoDiCaprio,.@DiCaprioFdn is partnering w/ Porky Hefer on this project that uses eco-friendly art to bring attention to the iss… https://t.co/8sE26gVwR9 +06/12/2018,Actors,@LeoDiCaprio,RT @RubiconGlobal: .@J_WintersLDF of the @dicapriofdn joins us on the Town Haul for a #WorldOceansDay celebration! Tune in here: https://t.… +06/11/2018,Actors,@LeoDiCaprio,RT @nytimesworld: Executives from the world’s biggest oil companies and money managers were summoned to the Vatican for a two-day conferenc… +06/11/2018,Actors,@LeoDiCaprio,RT @NatGeoMaps: This refuge may be the most contested land in the U.S. https://t.co/qweg7rbxvy https://t.co/Hjvmx7DYLe +06/08/2018,Actors,@LeoDiCaprio,"Learn about @OnlythismuchSA, a new campaign advancing the protection of the oceans around South Africa.… https://t.co/ymEcnU1zyA" +06/08/2018,Actors,@LeoDiCaprio,"RT @RobertKennedyJr: Defending CA’s coast & rivers against pollution, trash & oil spills is a tough job, especially with #Trump & #Pruitt w…" +06/08/2018,Actors,@LeoDiCaprio,"This #WorldOceansDay, @DiCaprioFdn partner @GlobalFishWatch is helping to bring transparency to global fishing, sup… https://t.co/nisro3yi7s" +06/07/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Half the world’s population depends on mountain ecosystems, yet climate change is threatening their continued existence. I…" +06/06/2018,Actors,@LeoDiCaprio,RT @NG_PristineSeas: Our new @NG_PristineSeas study with @sfgucsb @GlobalFishWatch @UBC @SeaAroundUs @UWAnews reveals that without large go… +06/06/2018,Actors,@LeoDiCaprio,RT @GlblCtzn: The Great Pacific Garbage Patch is about to get cleaned up – thanks to one ambitious 23-year-old! https://t.co/6XYjoX0r9q +06/06/2018,Actors,@LeoDiCaprio,"RT @antonioguterres: Our world is swamped by harmful plastic waste. By 2050, there could be more plastic in the ocean than fish. On World E…" +06/05/2018,Actors,@LeoDiCaprio,"RT @voxdotcom: If Democrats have any chance of winning back the majority in the House of Representatives, they’ll have to make huge gains i…" +06/03/2018,Actors,@LeoDiCaprio,RT @business: Carmakers in letter to Trump's White House: “Climate change is real” https://t.co/eRTp8UCcGb https://t.co/B5JA83dV3z +06/01/2018,Actors,@LeoDiCaprio,"RT @NRDC: While Trump indicated his plan to withdraw the U.S. from the #ParisAgreement a year ago, the number of U.S. cities, universities,…" +06/01/2018,Actors,@LeoDiCaprio,"RT @Everytown: ""Too many young men and women are being killed before they can walk across a stage for their high school diploma or go for t…" +05/31/2018,Actors,@LeoDiCaprio,"RT @terrytamminen: NASA head Jim Bridenstine, once doubtful, confirms he believes humans are the leading cause of climate change https://t.…" +05/30/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Great article on LDF's Shark Conservation Fund’s creation of a protected swim way/corridor between Cocos Island and the Ga… +05/30/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: New study shows the human race is just 0.01% of all life but has destroyed over 80% of wild mammals https://t.co/fM5mhOwFE… +05/27/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Congress attempts to squelch Judicial review of California’s most expensive water project: What are they afraid of? https:… +05/25/2018,Actors,@LeoDiCaprio,The Waorani people are showing the world what indigenous resistance on the frontlines of oil extraction looks like.… https://t.co/OzsJFxCTQJ +05/25/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: .@DriveH2, in collaboration with LDF & @CAHydrogen, just released a roadmap outlining key strategies to promote renewable…" +05/23/2018,Actors,@LeoDiCaprio,"Stand with the Waorani people, united in resistance, by signing their declaration that their rainforest is not for… https://t.co/1fSDjwzK9G" +05/23/2018,Actors,@LeoDiCaprio,Great initiative from @PLGreenChalleng. Learn more here: https://t.co/Ly6031A90k https://t.co/J2Xh9a1ZrE +05/22/2018,Actors,@LeoDiCaprio,"RT @UNBiodiversity: Happy #IntlBiodiversityDay! We celebrate nature's beauty & wonder, and all the people working hard to safeguard it. Muc…" +05/18/2018,Actors,@LeoDiCaprio,RT @FastCompany: Every new house built in California will soon have solar power https://t.co/tdfPfyVclV +05/17/2018,Actors,@LeoDiCaprio,RT @terrytamminen: Agricultural polluters are trying to hijack a clean water bill in California https://t.co/G87NRmTYhp +05/17/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: New study finds that rural communities can create more jobs with better wages by focusing wildfire-related resources on su… +05/16/2018,Actors,@LeoDiCaprio,"RT @NRDC: ""So much for draining the swamp, Mr. President. Pruitt is polluting the swamp."" John Slattery and Fisher Stevens explain why Trum…" +05/11/2018,Actors,@LeoDiCaprio,"RT @mongabay: The newly described orangutan species is critically endangered & yet is poised to lose 1/4 of its known habitat to dams, road…" +05/11/2018,Actors,@LeoDiCaprio,RT @nytimes: Hawaii is the first state to pass a bill banning the sale of sunscreen containing chemicals believed to harm coral reefs https… +05/09/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Good news for #renewables! https://t.co/EBMh4yCMPA via @business +05/08/2018,Actors,@LeoDiCaprio,Proud that Appian Way took part in producing this film. In theaters November 21. #RobinHoodMovie https://t.co/iT4rT25T36 +05/06/2018,Actors,@LeoDiCaprio,RT @mashable: Earth just soared past yet another climate change milestone https://t.co/DKxFoJaPx2 +05/06/2018,Actors,@LeoDiCaprio,"RT @EricHolthaus: April’s monthly average atmospheric carbon dioxide concentration breached 410 parts per million. + +The last time that happ…" +05/05/2018,Actors,@LeoDiCaprio,"RT @NRDC: Our whales, dolphins, seals, and manatees need continued protection under the #MMPA. Take action: https://t.co/l89UH9Cyb3 https:/…" +05/03/2018,Actors,@LeoDiCaprio,The inspirational #JaneGoodall at Monday’s philanthropy dinner following the Milken Institute Global Conference. https://t.co/m2yz2Var5G +05/02/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: #Climatechange will leave many Pacific Islands uninhabitable by mid-century, study says https://t.co/JnJHbcT3q0 via @insi…" +04/29/2018,Actors,@LeoDiCaprio,"RT @nytclimate: Until now, communities suing fossil fuel companies over the costs of dealing with climate change have been on the coasts. N…" +04/29/2018,Actors,@LeoDiCaprio,RT @NYTmag: This week's cover: Can Dirt Save the Earth? Agriculture could pull carbon out of the air and into the soil — but it would mean… +04/27/2018,Actors,@LeoDiCaprio,RT @nature_org: Biodiversity. Jobs. Air quality. Just a few of the many benefits that come from planting trees. https://t.co/bC4dQkt1nK #Ar… +04/27/2018,Actors,@LeoDiCaprio,"RT @yayitsrob: Three years ago, there were 2 billion corals living in the Great Barrier Reef. + +Half of them have now died. + +“It’s like cle…" +04/26/2018,Actors,@LeoDiCaprio,"Solar power is key to a future without fossil fuels, and @KingoEnergy's technology will help enable broad use of cl… https://t.co/R3ZkeRRFZL" +04/26/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Thank you @MikeBloomberg for pledging to help cover the U.S. commitment to the #ParisAgreement https://t.co/DdcZ5DIeTE +04/25/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: This #WorldPenguinDay, we can not forget that the most imminent threat facing these beloved creatures is #ClimateChange. The be…" +04/25/2018,Actors,@LeoDiCaprio,Excited to join my father in bringing these incredible musicians to @carnegiehall for one night only. Learn more: https://t.co/eqp7iAxtiM. +04/24/2018,Actors,@LeoDiCaprio,Proud to celebrate #EarthMonth with @NRDC and @eBay4CharityUS. Find out how you can make an impact:… https://t.co/4djWmidjGV +04/24/2018,Actors,@LeoDiCaprio,"RT @goldmanprize: Congratulations to the 2018 #GoldmanPrize winners: Makoma Lekalakala, Liz McDaid, Khanh Nguy Thi, Claire Nouvian, Manny C…" +04/23/2018,Actors,@LeoDiCaprio,"RT @NatGeo: Species are disappearing at an alarming rate, but with your help we can #SaveTogether #EarthDay https://t.co/MaqgnAslPF https:/…" +04/23/2018,Actors,@LeoDiCaprio,"RT @nytopinion: The fight against climate change is a nonpartisan issue across the globe except, of course, in the United States. #EarthDay…" +04/22/2018,Actors,@LeoDiCaprio,RT @SciForbes: Jane Goodall celebrates #EarthDay in today's Google Doodle: https://t.co/r4bMUYSe6k https://t.co/CDS3mIje48 +04/22/2018,Actors,@LeoDiCaprio,RT @ConservationOrg: .@Apple is celebrating #EarthDay in a big way. Recycle your Apple branded device in stores or online this month and th… +04/22/2018,Actors,@LeoDiCaprio,"On this #EarthDay, spend some time outside and reconnect with nature. Our spectacular planet gives us so much, let’… https://t.co/ABo0aJpBTZ" +04/22/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Hey Los Angeles, this #EarthDay step outside and go visit Chris Burden’s #UrbanLight @LACMA. All 309 lights are now LED bu…" +04/22/2018,Actors,@LeoDiCaprio,This administration continues to devalue the importance of science. There are many qualified scientists that could… https://t.co/8W2nKxfBFi +04/21/2018,Actors,@LeoDiCaprio,RT @frontlinepbs: Climate change is threatening the Marshall Islands. These kids could be the last generation to live out their lives on th… +04/20/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: The Kofan people of Sinangoe are defending their rainforest territory from illegal invasion. Learn about their story: http… +04/19/2018,Actors,@LeoDiCaprio,RT @GiffordsCourage: We are launching our biggest effort yet to ensure that the young people who are leading the charge against gun violenc… +04/19/2018,Actors,@LeoDiCaprio,RT @Earthjustice: Way to go New Zealand! The country will stop issuing permits for offshore oil and gas exploration in a move that is being… +04/16/2018,Actors,@LeoDiCaprio,RT @RnfrstAlliance: The #farmers we work with collectively manage 8.6 million acres of #agricultural land sustainably. Their efforts to fos… +04/13/2018,Actors,@LeoDiCaprio,RT @Everytown: Are you a student who wants to keep your school and community free from gun violence? Join #StudentsDemandAction: Text STUDE… +04/13/2018,Actors,@LeoDiCaprio,RT @UNEnvironment: “I am beginning to wonder how many more alarm bells must go off before the world rises to the challenge” of #climatechan… +04/13/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: NGOs denounce Tapajós basin intimidation, violence, Brazil inaction - @mongabay https://t.co/xoIeqibhIO @intlrivers 38 nat…" +04/11/2018,Actors,@LeoDiCaprio,"RT @EnvCalifornia: .@LACity is the #1 city for #solar! Thank you @MayorOfLA Eric Garcetti for joining us today to release #ShiningCities, &…" +04/11/2018,Actors,@LeoDiCaprio,"RT @FastCompany: From data centers to stores, all Apple facilities are now powered by renewable energy, a long-time company goal. https://t…" +04/10/2018,Actors,@LeoDiCaprio,"RT @NRDC: As Chief Happyjack explains, “the @CreeWaswanipi way of life still connects us very strongly to the land."" Yet their territory ha…" +04/06/2018,Actors,@LeoDiCaprio,"RT @UN: Clean, green energy is more affordable and competitive than ever. +Our problem is not that we do not know what to do -- it is how qu…" +04/04/2018,Actors,@LeoDiCaprio,"RT @FAOKnowledge: Those who produce our food are the hardest hit by #climatechange. + +Rice farmer Manca Trawally explains why. https://t.co…" +04/03/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Unsustainable exploitation of the natural world threatens the food and water security of billions of people, a major UN-ba…" +03/31/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: The Postcode Lottery Green Challenge is looking for green start-ups to submit their promising sustainable business plans.… +03/31/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: The new initiative #GreenBondPledge seeks to have more cities, public authorities and large corporates commit to increase use o…" +03/29/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Who can change the world? Students. LDF is now matching all donations to four student-led #cleanenergy crowdfunding campai… +03/29/2018,Actors,@LeoDiCaprio,"RT @WWFnews: Brazil, Bolivia, and Paraguay signed a landmark commitment today to protect the Pantanal, the world’s largest tropical wetland…" +03/28/2018,Actors,@LeoDiCaprio,"RT @AMarch4OurLives: Register. +Educate. +Vote. +That's what it will take to create real change. Add your name to be a part of what's next:…" +03/27/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Tomorrow, the Senate in Brazil will vote on a bill that authorizes the farming of sugarcane in the Legal Amazon which was…" +03/26/2018,Actors,@LeoDiCaprio,"Don’t miss the incredible, award-winning work from my friend Alejandro G. Iñárritu. Carne y Arena will immerse you… https://t.co/KrthdHurYI" +03/25/2018,Actors,@LeoDiCaprio,"A few weeks ago, the US Government lifted the ban on elephant hunt trophies. Join @ElephantCrisis and take the pled… https://t.co/pMwp7Qlu7X" +03/23/2018,Actors,@LeoDiCaprio,RT @Everytown: We're proud to support the students stepping up and taking action to prevent gun violence. Follow their lead; find a 3/24 #M… +03/22/2018,Actors,@LeoDiCaprio,RT @AFrontlines: On #WorldWaterDay @AFrontlines is launching the #LessOilMoreWater campaign to reach their goal of bringing clean drinking… +03/22/2018,Actors,@LeoDiCaprio,"RT @J_WintersLDF: Proud to be releasing @DiCaprioFdn’s first official white paper with @UNDP entitled “Nature for Water"" which documents ho…" +03/21/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: We can’t burn our way out of the climate crisis https://t.co/xV3Uz7VqX0 via @MaryPFPI +03/21/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Cities need to prepare now to take in millions of #climatechange #refugees https://t.co/aDBDdIqpvR +03/20/2018,Actors,@LeoDiCaprio,"RT @BBCEarth: Sudan’s death leaves just two females of the subspecies alive in the world +https://t.co/kCpRCxFaFY" +03/20/2018,Actors,@LeoDiCaprio,RT @AMarch4OurLives: Too many of us have been affected by gun violence in school. We refuse to live in fear. We must put an end to this. Si… +03/19/2018,Actors,@LeoDiCaprio,RT @latimes: The biggest solar parks in the world are now being built in India https://t.co/hUlSLdqdfq https://t.co/l0ZqnCZZRl +03/17/2018,Actors,@LeoDiCaprio,RT @greenpeaceusa: Standing Rock: Dakota Access Pipeline Leak Technology Can't Detect All Spills https://t.co/dLoH7QerU7 #DAPL via @mckenna… +03/16/2018,Actors,@LeoDiCaprio,RT @YEARSofLIVING: The oil industry knew for decades that climate change is real and about the disasters it could create. But that’s not th… +03/15/2018,Actors,@LeoDiCaprio,https://t.co/Ym25RNfSwL +03/14/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: View from space reveals extent of fishing on global ocean https://t.co/FAH7aF1ppk +03/12/2018,Actors,@LeoDiCaprio,"RT @SierraClub: Tomorrow, Trump will visit border wall prototypes in Southern California. For over a decade, Sierra Club volunteer Jill Hol…" +03/12/2018,Actors,@LeoDiCaprio,RT @guardian: Antarctica's king penguins 'could disappear' by the end of the century https://t.co/F445f3BUMd +03/10/2018,Actors,@LeoDiCaprio,"A few years ago, I had the opportunity to see these incredible musicians with my dad. Excited to join my father in… https://t.co/N5YcP3oIbF" +03/10/2018,Actors,@LeoDiCaprio,"RT @insideclimate: As the price of renewable energy drops, more cities around the world are cutting the cord with fossil fuel-based electri…" +03/08/2018,Actors,@LeoDiCaprio,"RT @youthvgov: BREAKING: Ninth Circuit Rules in Favor of Youth Plaintiffs, Rejects Trump’s Attempt to Evade Constitutional Climate Trial ht…" +03/08/2018,Actors,@LeoDiCaprio,"RT @HuffPost: The U.S. government will allow hunters to import elephant trophies on a case-by-case basis, breaking the president’s pledge.…" +03/07/2018,Actors,@LeoDiCaprio,"RT @350: Of nearly three dozen different Arctic weather stations, 15 of them were at least 10F (5.6C) above normal for the winter @guardian…" +03/06/2018,Actors,@LeoDiCaprio,"RT @MoveOn: #Congress. The time is now. Stand up for 200,000 children across the US. Without a permanent legislative solution for #Dreamers…" +03/03/2018,Actors,@LeoDiCaprio,"This #WorldWildlifeDay, people from all countries must rally together to ensure the future of the world’s #BigCats.… https://t.co/yd0d2YieVo" +03/02/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Shark fishing on a coral reef drives evolutionary changes in fish https://t.co/PK91ReOBCC via @hakaimagazine +02/28/2018,Actors,@LeoDiCaprio,Congrats to @JustinTrudeau and #Canada on a historic investment in nature. https://t.co/2oSjzGQbRI +02/27/2018,Actors,@LeoDiCaprio,"RT @GlobalFishWatch: New @GlobalFishWatch study published in @sciencemagazine, “Tracking the Global Footprint of #Fisheries,” finds that in…" +02/25/2018,Actors,@LeoDiCaprio,"RT @UN: Climate change is real & it's happening now. But by taking urgent climate action we will create jobs, improve our health & save mon…" +02/23/2018,Actors,@LeoDiCaprio,RT @mongabay: Ecuador votes to reduce oil exploitation in Yasuní National Park: https://t.co/Ys1MUUCWNF https://t.co/yvKniA2R77 +02/22/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: No more blackouts anywhere in the world with 100% wind, water, and sunlight https://t.co/g87BunKqW3 by @mzjacobson" +02/21/2018,Actors,@LeoDiCaprio,"Today, Seychelles announced two new marine protected areas that equal the size of Great Britain. Join me and… https://t.co/aszoTCLj7h" +02/21/2018,Actors,@LeoDiCaprio,RT @MarkRuffalo: You are the power...March For Our Lives: What to know about the nationwide march led by the Parkland survivors - Mic https… +02/21/2018,Actors,@LeoDiCaprio,"RT @IndivisibleTeam: On 12/6, the House passed the Concealed Carry Reciprocity Act. It was a top priority of the @NRA and would cause a rac…" +02/21/2018,Actors,@LeoDiCaprio,"RT @CNN: Survivors of the Florida school shooting announce a nationwide, student-led march in Washington on March 24 to push for gun contro…" +02/21/2018,Actors,@LeoDiCaprio,RT @Everytown: We don't have to live like this. Join the movement to #EndGunViolence: Text ACT to 644-33. https://t.co/tmVcRLrMNB +02/18/2018,Actors,@LeoDiCaprio,"RT @PopSci: Preventing deforestation might be expensive, but it will cost us more if we don't https://t.co/BYOclhXlhp https://t.co/bW7w9SCi…" +02/16/2018,Actors,@LeoDiCaprio,"RT @BBCScienceNews: '100,000 orangutans' killed in 16 years https://t.co/XATqq3yjEs" +02/16/2018,Actors,@LeoDiCaprio,"RT @washingtonpost: The Arctic is full of toxic mercury, and climate change is going to release it https://t.co/0WDBiJ0mkB" +02/14/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: Water is complex because it is linked to almost everything in the world. + +And water is at the heart of adaptation to #climatec…" +02/13/2018,Actors,@LeoDiCaprio,"RT @CITES: #BigCats are among the most powerful creatures to grace this planet, but they are also the most fragile https://t.co/T7sL5JwCur…" +02/10/2018,Actors,@LeoDiCaprio,"Proud to support @LACMA as it transitions to new, energy efficient lighting for Chris Burden’s #UrbanLight installa… https://t.co/1JPgY5anAO" +02/08/2018,Actors,@LeoDiCaprio,RT @SeaTimesOpinion: Editorial: The past year has made it clear that states cannot rely on the federal government to spearhead our nation’s… +02/08/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: LDF is proud to support @LACMA as it transitions to new, #energyefficiency lighting for the 10th anniversary of Chris Burd…" +02/06/2018,Actors,@LeoDiCaprio,"Visual art is a powerful tool for spreading ideas, memorializing history & bringing people together around a common… https://t.co/1uZvuIgcVq" +02/06/2018,Actors,@LeoDiCaprio,RT @ste_kenya: We are deeply saddened by the death of wildlife-trade researcher Esmond Bradley Martin who died yesterday in Nairobi. A long… +02/01/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Chilean President Michelle Bachelet and Kristine McDivitt Tompkins, President and CEO of @TompkinsConserv, today signed th…" +02/01/2018,Actors,@LeoDiCaprio,RT @ConservationOrg: Sharks are a grossly misunderstood yet vital element of the global ecosystem. These mysterious and magnificent creatur… +01/31/2018,Actors,@LeoDiCaprio,RT @latimesopinion: It's the last chance for California to say no to polystyrene plastic trash this year. https://t.co/lNHD8kNQt4 https://t… +01/30/2018,Actors,@LeoDiCaprio,"Proud of what @DiCaprioFdn and our partners have accomplished over the last 20 years, but so much more needs to be… https://t.co/xeNPz8FhWF" +01/29/2018,Actors,@LeoDiCaprio,Join @WSUCampaign @MoveOn @StandUpAmerica and more leaders of the #ResistanceMovement at tonight's #PeoplesSOTU. Wa… https://t.co/t1x7XeN1Dx +01/28/2018,Actors,@LeoDiCaprio,"RT @BardemAntarctic: This is my home for the next week! Together with my dear brother @carlosbardem and 34 other new brothers and sisters,…" +01/27/2018,Actors,@LeoDiCaprio,RT @EcoWatch: 2017 Was the Hottest Year on Record for Oceans https://t.co/mgXYGYewtd #Oceans @Oceana @Waterkeeper @Surfrider @NRDC @billmck… +01/26/2018,Actors,@LeoDiCaprio,"RT @TheDailyClimate: World cities headed for a #water problem, writes @BrianBienkowski. These crises —exacerbated by a changing #climate, a…" +01/23/2018,Actors,@LeoDiCaprio,RT @NRDC: Anti-wildlife members of Congress want to limit where Endangered Species Act protections apply. Take Action! https://t.co/vNEIl6m… +01/23/2018,Actors,@LeoDiCaprio,"RT @AFrontlines: We’re building a movement for indigenous land, life and cultural survival in the Amazon and we want you to join us! Please…" +01/23/2018,Actors,@LeoDiCaprio,RT @TIME: Aerial photos of Antarctica reveal the devastating toll of climate change https://t.co/DHrhZtuQmu +01/23/2018,Actors,@LeoDiCaprio,RT @wef: Earth will likely warm way beyond the crucial tipping point that the Paris agreement was meant to avoid https://t.co/sZczrRzB0u #c… +01/23/2018,Actors,@LeoDiCaprio,"The Pacific Coast is too valuable to risk a devastating oil spill. With a $56 billion ocean economy, and hundreds o… https://t.co/174WkecDt2" +01/19/2018,Actors,@LeoDiCaprio,RT @GuardianSustBiz: Iceland supermarket vows to eliminate plastic on all own-branded products https://t.co/cWAqgymNux +01/18/2018,Actors,@LeoDiCaprio,RT @terrytamminen: We need laws like California's AB 319 to reduce plastic pollution: https://t.co/fh5Jhiigkx +01/17/2018,Actors,@LeoDiCaprio,RT @NPR: Warming temperatures are having a profound and potentially devastating impact on one of the most important green sea turtle popula… +01/17/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: Belize bans oil activity to protect its barrier reef! +#FossilFree #KeepItInTheGround + https://t.co/KOeHiDiu9Z" +01/13/2018,Actors,@LeoDiCaprio,"RT @TheAtlantic: A new study makes it clear: Coral reefs are bleaching too frequently to recover, @yayitsrob reports https://t.co/Z9QODnZmV…" +01/10/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Announcing #Reefscape, a partnership between LDF, Carnegie Airborne Observatory and @planetlabs that aims to help us bette…" +01/10/2018,Actors,@LeoDiCaprio,NYC is the first big city in America to sue and divest from Big Oil. #stopfundingfossils https://t.co/7aqjV3E46J +01/10/2018,Actors,@LeoDiCaprio,"RT @IndivisibleTeam: Democratic MoCs, make a choice: fight for Dreamers or be part of the Deportation Caucus. See how your Senators voted a…" +01/10/2018,Actors,@LeoDiCaprio,"RT @EmCollective: Every day that Congress fails to #ProtectDreamers, 122 young people lose their status to work and live without fear in th…" +01/10/2018,Actors,@LeoDiCaprio,"All countries must work together, and follow China’s example, in order to end the global ivory trade and bring elep… https://t.co/YwAgS1HbsE" +01/09/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Environmental #education is often the first step in conservation. Gain a better understanding of our #oceans by visiting @… +01/09/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: .@BoykoBorissov, please protect #UNESCO World Heritage Site Pirin National Park in #Bulgaria from disastrous logging and s…" +01/07/2018,Actors,@LeoDiCaprio,RT @guardianeco: US government climate report looks at how the oceans are buffering climate change | John Abraham https://t.co/et31owmOcn +01/05/2018,Actors,@LeoDiCaprio,"RT @Oceana: Today, @SecretaryZinke opened the floodgates to dirty & dangerous offshore drilling, threatening coastal economies that rely on…" +01/04/2018,Actors,@LeoDiCaprio,RT @UNEP: Pollution is everywhere. From the highest reaches of our atmosphere to the darkest depth of our oceans. But together we can stop… +01/03/2018,Actors,@LeoDiCaprio,"RT @Defenders: #Environment #YearinReview – here are the year’s “happy environmental stories,” including many different areas protected for…" +01/02/2018,Actors,@LeoDiCaprio,Proud to support and invest in @LoveTheWildCo. https://t.co/fpj6W1WsGA +12/30/2017,Actors,@LeoDiCaprio,"RT @nytimes: China will create a national market to clean up its power sector, putting it in a leading position on the issue as the U.S. re…" +12/28/2017,Actors,@LeoDiCaprio,"RT @UNEP: Over the past 70 yrs, at least 40% of all conflicts within national borders are related to competition over natural resources. +M…" +12/27/2017,Actors,@LeoDiCaprio,RT @TIME: How climate change could make the migrant crisis worse https://t.co/xLrvu3MjV0 +12/26/2017,Actors,@LeoDiCaprio,RT @terrytamminen: Need more reasons to battle climate change now? Here are billions of them! 2017 was the most expensive weather year ever… +12/23/2017,Actors,@LeoDiCaprio,"RT @nytimes: Climate change made the torrential rains that flooded Houston after Hurricane Harvey much worse, scientists reported https://t…" +12/22/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: Learn more about our partnership with @pamm and @DesignMiami, showcasing #art that explores the impacts of #climatechange…" +12/22/2017,Actors,@LeoDiCaprio,RT @AGBecerra: I've just sued the #Trump Administration for threatening the #health of our families and the #environment statewide and beyo… +12/21/2017,Actors,@LeoDiCaprio,"RT @NYGovCuomo: With @NYSComptroller, New York State will begin planning to divest the state retirement fund from fossil fuels. https://t.c…" +12/20/2017,Actors,@LeoDiCaprio,Watch @EnvDefenseFund's new enviro-documentary series on the value of using technology to cut oil and gas pollution… https://t.co/iTJv3WLkL4 +12/18/2017,Actors,@LeoDiCaprio,"Help @NRDC stop the pro-polluter tax bill, and help save the Arctic National Wildlife Refuge. Text “TREE” to 21333… https://t.co/HimfGm6PVg" +12/17/2017,Actors,@LeoDiCaprio,"RT @NYGovCuomo: If the EPA says the dredging of Hudson River PCB contamination is complete, New York will sue the federal government. https…" +12/16/2017,Actors,@LeoDiCaprio,"RT @CivilEats: This app, developed by a high school student, will alert farmworkers of dangerous temperatures and allow them to report unsa…" +12/15/2017,Actors,@LeoDiCaprio,"RT @NPR: Researchers say this year was the Arctic's second-warmest in at least 1,500 years — after 2016. https://t.co/zoPSMrTxc9" +12/14/2017,Actors,@LeoDiCaprio,Grateful for the firefighters risking their lives to get people to safety in SoCal. Support @CAFireFound here: https://t.co/DWoWpCJi8S +12/13/2017,Actors,@LeoDiCaprio,RT @NatGeo: Environmental and indigenous groups are cheering a landmark decision by Canada’s highest court https://t.co/LQWcYKy6Ci +12/10/2017,Actors,@LeoDiCaprio,"RT @NatGeo: When environmental conditions change, the risk of extinction increases, even with a healthy population of animals unaffected by…" +12/09/2017,Actors,@LeoDiCaprio,"Proud to support the #PalauPledge, a new conservation initiative for visitors. Written with the help of Palau’s chi… https://t.co/4w4IFzgI5o" +12/06/2017,Actors,@LeoDiCaprio,RT @guardianeco: The Amazon effect: how deforestation is starving São Paulo of water https://t.co/Os9piTjCMw +12/04/2017,Actors,@LeoDiCaprio,"Please support the efforts by @DiCaprioFdn grantee, @UtahDineBikeyah, to defend these national monuments in court.… https://t.co/2da1q1YtoX" +12/03/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: A healthy environment is a human right, and these kids taking the lead to make it so! https://t.co/h6xAZp8dN5" +12/01/2017,Actors,@LeoDiCaprio,"RT @voxdotcom: Global warming isn’t something that will happen decades down the line. It’s happening every day, bit by bit. https://t.co/vd…" +11/30/2017,Actors,@LeoDiCaprio,"RT @NRDC: Trump is likely to undo protections for Bears Ears and other national monuments, leaving these national treasures vulnerable to h…" +11/28/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: This #GivingTuesday donate to LDF grantee @Re_volv's #solarpower campaign. This campaign will provide #cleanenergy and low… +11/25/2017,Actors,@LeoDiCaprio,RT @Independent: Snow leopards no longer endangered for first time in 45 years https://t.co/R6CybScFdZ +11/23/2017,Actors,@LeoDiCaprio,RT @guardianeco: Bigotry against indigenous people means we're missing a trick on climate change https://t.co/ifIBYaevqQ +11/21/2017,Actors,@LeoDiCaprio,"RT @SierraClub: 48 US cities have committed to transition to 100% #cleanenergy, 5 of which have reached their goal & are powered w/ entirel…" +11/21/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: The #KeystoneXL must be stopped: commit to peaceful resistance on the route https://t.co/LsGum8UjYX #NoKXL #KeystoneXLPipe… +11/19/2017,Actors,@LeoDiCaprio,RT @youthvgov: BREAKING: Ninth Circuit to Hear Oral Argument in #JulianavUS! https://t.co/dTDCrzu2Tt #youthvgov #climatechange #COP23 https… +11/18/2017,Actors,@LeoDiCaprio,"RT @NatGeo: The same controversial structure whose extension triggered the Standing Rock protests has leaked about 5,000 barrels https://t.…" +11/17/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: Trump’s decision to reverse the ban on elephant trophies in the U.S. is reprehensible. In this policy change, the U.S. los…" +11/15/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: From LDF's very own @terrytamminen https://t.co/7krEw2dlEy +11/15/2017,Actors,@LeoDiCaprio,RT @nytimes: Syria said it would sign the Paris climate accord. This leaves the U.S. as the only country that has rejected it. https://t.co… +11/14/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: A #globalwarming target of 1.5˚C is in reach without the need for #BECCS or other forms of #geoengineering. This new model… +11/10/2017,Actors,@LeoDiCaprio,RT @FastCompany: The largest ever tropical reforestation is planting 73 million trees https://t.co/1A4b6epXIm https://t.co/vwpM3A08Tx +11/09/2017,Actors,@LeoDiCaprio,"RT @ourclimateus: On 11/18, young people will come together to share their #Climate Legacy. #Uniting4Climate JOIN: https://t.co/pSuw7MRxCL" +11/09/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: Scientists have identified a new species of #GreatApe on the Indonesian island of #Sumatra: the #TapanuliOrangutan https:/… +11/08/2017,Actors,@LeoDiCaprio,RT @Waterkeeper: URGENT: Act now to protect communities from agricultural pollution—sign on to this letter by TONIGHT opposing HR848! https… +11/07/2017,Actors,@LeoDiCaprio,"RT @citizensclimate: Celebrating 10 years of advocacy for #climate action, CCL is reaching the tipping point with Congress. Join us: https:…" +11/04/2017,Actors,@LeoDiCaprio,"RT @nytclimate: Two's company: Nicaragua will join the Paris deal, leaving Syria and the U.S. as the only 2 countries on the outside https:…" +07/02/2018,Actors,@EvaLongoria,Look who else is ready for the game! 🇲🇽🇲🇽🇲🇽 #Popeye #WorldCup #VamosMexico https://t.co/u24r6hXU0L +07/01/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Independence Day came early and we're offering 30% off site-wide in celebration of this day! Offer ends Wednesday, Jul…" +06/30/2018,Actors,@EvaLongoria,What a perfect way to float into the weekend ☀️ (📸: @Virtuoso) https://t.co/I5cuCnaD5Y +06/29/2018,Actors,@EvaLongoria,Put a smile on y’all! The weekend is here! ☀️#TGIF #FBF https://t.co/oXZ7H8CJrI +06/28/2018,Actors,@EvaLongoria,We’re not done yet folks! Head on over to @hsn and watch Ellie Rodriguez fill you in on all things @shopevalongoria… https://t.co/vaXR9hPxaZ +06/28/2018,Actors,@EvaLongoria,Phenomenal work by @iamrashidajones who directed this brilliant PSA (narrated by Donald Glover) about sexual harass… https://t.co/Wo9fzJ7VuI +06/27/2018,Actors,@EvaLongoria,"TOMORROW IS THE BIG DAY! Tune into @HSN at 7am, 12pm, 1pm, & 5pm EST to check out what @shopevalongoria Summer ’18… https://t.co/zQE1AnsLwy" +06/26/2018,Actors,@EvaLongoria,Who else feels like time keeps flying by? When you’ve started to lose track (story of my life) there’s always a sol… https://t.co/mswcoe99rV +06/25/2018,Actors,@EvaLongoria,Starting off my Monday full of gratitude for this little blessing of a human! 🙏🏻 Pepe & I want to thank all the nur… https://t.co/aSkU3ohS4Q +06/23/2018,Actors,@EvaLongoria,"Hey y’all! Check out my friend @ambertamblyn new book, “Any Man”. Vanity Fair called it ""A Searing exploration of s… https://t.co/imOPhclHP7" +06/23/2018,Actors,@EvaLongoria,Look who’s ready for #Mexico game! #WorldCup 🇲🇽🇲🇽🇲🇽 https://t.co/LtZxgPs1Pq +06/22/2018,Actors,@EvaLongoria,Big brother Popeye can’t wait to meet his little brother Santiago! We keep sending Santiago’s hospital blankets hom… https://t.co/ELZ9KWXEvE +06/21/2018,Actors,@EvaLongoria,Hello world! I introduce to you Santiago… https://t.co/SjrCe91paE +06/19/2018,Actors,@EvaLongoria,Unleash the love August 10th 💙 Here’s a first look at the official trailer for @dogdaysthefilm — coming to you this… https://t.co/43sGy8WifK +06/18/2018,Actors,@EvaLongoria,T-minus 10 days until Ellie Rodriguez appears on @hsn to show you the @shopevalongoria Summer ‘18 Collection ☀️⛱ Ma… https://t.co/syk8qBrW5p +06/17/2018,Actors,@EvaLongoria,¡Vamos Mexico! 🇲🇽🇲🇽 #BabyIsReadyForNextGame https://t.co/LVGAhEXCd0 +06/17/2018,Actors,@EvaLongoria,Happy Father’s Day to all the great Dads out… https://t.co/iAoZxvutsS +06/16/2018,Actors,@EvaLongoria,"Thanks for loving my Jinxy Lucky +luckylunargy… https://t.co/yKHfLSSMBl" +06/15/2018,Actors,@EvaLongoria,So the day I’ve been dreading happened last… https://t.co/6taxSanJAT +06/14/2018,Actors,@EvaLongoria,"This just in y’all! My @shopevalongoria Summer Apparel will be airing on @HSN June 28th (7am, 12pm, 1pm & 5pm EST)!… https://t.co/2p6RtaldD6" +06/13/2018,Actors,@EvaLongoria,Looking at my pre-pregnancy clothes like... 🤣 #AllWorthIt https://t.co/FydE56SnyU +06/12/2018,Actors,@EvaLongoria,Missing my directing days on set! I’ll be back soon! 🎥 #DirectorsMode #BossLady https://t.co/xnrj69kAhc +06/11/2018,Actors,@EvaLongoria,"Yes, I know it’s Monday but let’s start the week off with a smile and some positive vibes ✨ https://t.co/m1YJCJkVwd" +06/10/2018,Actors,@EvaLongoria,"If you’re not having brunch, is it really even Sunday? 🍳 #BonAppetit (📸: HonestlyYUM) https://t.co/sGhMmIslq8" +06/09/2018,Actors,@EvaLongoria,Happy Saturday☀️ Here’s to a time where I was 6 months pregnant — and I thought I was huge then! Haha 😂 https://t.co/8LNZrFzZQc +06/08/2018,Actors,@EvaLongoria,"Heartbroken over Anthony Bourdain’s death. He was such a great example of class, intelligence and compassion. May h… https://t.co/vnFNSlcUCF" +06/08/2018,Actors,@EvaLongoria,Your voices were heard! We’re thrilled to announce that we are now accepting hour-long pilots for the @stayMACRO Ep… https://t.co/euoMhTm6XY +06/07/2018,Actors,@EvaLongoria,"With the weekend just around the corner, step up your outfit game with this @shopevalongoria Cold Shoulder Blouse p… https://t.co/kutYkXQfR8" +06/06/2018,Actors,@EvaLongoria,We’re excited to announce the launch of the MACRO Episodic Lab powered by @theblcklst! @LenaWaithe and myself have… https://t.co/TrQm2ul94O +06/05/2018,Actors,@EvaLongoria,Today is the day California! Exercise your civic duty and make your voice heard by voting in today’s primary electi… https://t.co/87YWeuQYH8 +06/04/2018,Actors,@EvaLongoria,Times like these I wish I could drink coffee again ☕️ Happy Monday y’all! https://t.co/Zak3HJ2GlE +06/03/2018,Actors,@EvaLongoria,Sundays are for a little R&R 🛀🏽 Who’s with me? #rg (📸: @emilyblincoe) https://t.co/qR0CGzFBLV +06/02/2018,Actors,@EvaLongoria,Whoa Baby! That’s quite the profile 👶🏽🍼 #StillWaitingForHimToArrive https://t.co/BAMNgDDG9u +06/01/2018,Actors,@EvaLongoria,Black & White mood ⚫️⚪️ Happy Friday y’all! #StillWaitingForHimToArrive #FBF https://t.co/cOZuEKKdMI +05/31/2018,Actors,@EvaLongoria,In honor of graduation season here’s a throwback to those cap and gown days 🎓 Congratulations to all the graduates… https://t.co/dHf4puMSiV +05/30/2018,Actors,@EvaLongoria,"Today my #wcw goes to my sister from another mister @serenawilliams. Words cannot describe your talent, your work… https://t.co/MfHDHzlqJb" +05/29/2018,Actors,@EvaLongoria,Work week chic with these flawless @shopevalongoria skirts. Get them just in time for summer ☀️ Check out the link… https://t.co/w9MBpfIuac +05/28/2018,Actors,@EvaLongoria,Did someone say pool day? ⛱☀️ Hope y’all are enjoying the long weekend! And thank you to all the fallen soldiers wh… https://t.co/pBeS79PVR0 +05/27/2018,Actors,@EvaLongoria,What better way to enjoy your Sunday than with a little shopping! Y’all don’t want to miss our Memorial Day sale. C… https://t.co/KCwExGbu2A +05/26/2018,Actors,@EvaLongoria,Big brother on baby bump watch! Thx Jinxy Baby! 👶🏽 https://t.co/OK1EZijXLh +05/25/2018,Actors,@EvaLongoria,#FBF to a time when I could drink wine. Happy #NationalWineDay y’all! Enjoy the long weekend 🍷 https://t.co/PulaWHvJw0 +05/24/2018,Actors,@EvaLongoria,Memorial Day came early y’all! My entire @evalongoriacollection is 30% OFF until 5/28! Upgrade your summer wardrobe… https://t.co/XHQVk8NfwF +05/23/2018,Actors,@EvaLongoria,"So Monday was our 2yr anniversary and I didn’t forget, I was just too sleepy to post! My wonderful husband sent me… https://t.co/yPB030tA1U" +05/21/2018,Actors,@EvaLongoria,"You guys, check out this special announcement from my friend @Lin_Manuel https://t.co/gQWXMs2nxu" +05/19/2018,Actors,@EvaLongoria,Let’s soak up some sun y’all! It’s Saturday☀️ #BehindTheScenes #IrisCovetBook https://t.co/UJ7auyI1ju +05/18/2018,Actors,@EvaLongoria,#FBF to cookies and cakes with the gorgeous @Roselyn_Sanchez 🍼 Can’t wait for y’all to see her shine on… https://t.co/s9Doc3r5b5 +05/17/2018,Actors,@EvaLongoria,Guys check out the brand new trailer for @GrandHotelABC on @ABCNetwork! So proud of this show! Can’t wait for ever… https://t.co/fB5q35u7CP +05/17/2018,Actors,@EvaLongoria,"Throwing it back to last week when I was smaller! Yep, I’m much bigger than this now! Friday is almost here y’all!… https://t.co/tejD1mAUmp" +05/16/2018,Actors,@EvaLongoria,So happy to be joining my friend @Lin_Manuel for such an amazing cause helping @latinovictoryus and other amazing o… https://t.co/7axCRME1pC +05/16/2018,Actors,@EvaLongoria,"This summer, you’re in for a treat y’all 🐾 catch a first look at @DogDaysTheFilm — in theaters this August! #DogDays https://t.co/ojdwn4L0rl" +05/15/2018,Actors,@EvaLongoria,Ahhhh I'm so proud of this show and this amazing cast! So bummed I cannot be with them in New York right now for up… https://t.co/dcmBFi3EEK +05/15/2018,Actors,@EvaLongoria,So excited to be featured on the @IrisCovetBook Summer Issue ☀️ Had such an amazing time doing this shoot with my b… https://t.co/am1VvonGNe +05/14/2018,Actors,@EvaLongoria,"Here’s looking at you Monday! + +Read my interview for @iriscovetbook summer issue with the fabulous @oliviamunn. Ava… https://t.co/OhZ7jfl2H1" +05/13/2018,Actors,@EvaLongoria,You guys it’s my first Mother’s Day!!!! Happy Mother’s Day to all the wonderful mommies out there! May you be appre… https://t.co/AQVG4AWIdN +05/13/2018,Actors,@EvaLongoria,A perfect piece for Mother’s Day! https://t.co/fLZlqbvpHe +05/12/2018,Actors,@EvaLongoria,Truly inspiring afternoon during the @GlobalGiftUSA Women’s Empowerment Event in benefit of #EvaLongoriaFoundation.… https://t.co/qu5fg68NJN +05/11/2018,Actors,@EvaLongoria,Yes! I love this project with all my heart! We worked so hard on it and I’m so happy that audiences everywhere will… https://t.co/uLIkgFtnxq +05/11/2018,Actors,@EvaLongoria,Congratulations to our #EvaLongoriaFoundation Latina Scholarship recipients! It’s an honor to support the hard work… https://t.co/nyMwqfoHSz +05/11/2018,Actors,@EvaLongoria,Watch sparks fly this weekend!✨ @OverboardMovie is expanding into more theaters this weekend. I know you guys will… https://t.co/8TpTBu5xcX +05/11/2018,Actors,@EvaLongoria,What a pleasure celebrating these inspirational first generation Latina scholars with the Eva Longoria Foundation.… https://t.co/qlsNVgMYVw +05/10/2018,Actors,@EvaLongoria,#Tbt to an amazing shower with even more amazing company #BabyBaston https://t.co/GPOvWG7zVw +05/09/2018,Actors,@EvaLongoria,Happy 30th Birthday to @hellomag it was a pleasure to have you be part of my dream wedding! Here's to the next thre… https://t.co/0iND5s6MYk +05/09/2018,Actors,@EvaLongoria,Tune in to @TeamCoco tonight and watch a special little someone get serenaded 👶🏽🎤🎼 https://t.co/qK2tRFzQVS +05/08/2018,Actors,@EvaLongoria,"Don’t mind me, just bumping along today 😁 #BabyBaston https://t.co/nT6p5lb81b" +05/07/2018,Actors,@EvaLongoria,What a great way to start the week! A huge thank you to everyone for supporting this film!! 🍿🎬 #overboardmovie https://t.co/9iAHq5awqC +05/07/2018,Actors,@EvaLongoria,Baby Baston and I wish everyone a wonderful week 💛💛 https://t.co/sFGP3QYnzp +05/07/2018,Actors,@EvaLongoria,Sooooo Happy to be surrounded by these beauties! @ElizabethBanks is toasting my belly and my sweet friend… https://t.co/sxuUDlk5Jc +05/06/2018,Actors,@EvaLongoria,What a beautiful day with all my girls! Thank you for your constant guidance and support! I love y’all so much!… https://t.co/ksQb2qJxXU +05/05/2018,Actors,@EvaLongoria,It’s the weekend and @OverboardMovie is out NOW everywhere y’all!! Don’t miss it 🎬🍿#overboardmovie https://t.co/VBVf1Lb4dP +05/04/2018,Actors,@EvaLongoria,"My new film @OverboardMovie is in theaters now! You guys are going to love it! #overboardmovie +https://t.co/LQTgPcxtsN" +05/04/2018,Actors,@EvaLongoria,"Happy Friday y’all! Be sure to catch me on @SteveTVShow today, you won’t want to miss it 😊 @OverboardMovie is out i… https://t.co/fpMB7oMRvy" +05/03/2018,Actors,@EvaLongoria,When I realize it’s almost Friday! 😊 You guys make sure to check out @OverboardMovie — in theaters everywhere TOMOR… https://t.co/yEj8TfJcqX +05/03/2018,Actors,@EvaLongoria,"Be sure to tune in to the @latelateshow tonight!! There will be less naps and more laughs, I promise ✨ (Helping han… https://t.co/N9vcBnktu1" +05/02/2018,Actors,@EvaLongoria,"Corden, I’m ready! 🎬 Catch me tonight on the @latelateshow — I promise I’ll be awake #workingmama https://t.co/aw3bY80MEq" +05/02/2018,Actors,@EvaLongoria,Too much fun on the red carpet with this beauty @AnnaKFaris! Swipe through to see the progression of silliness!! Lo… https://t.co/AzJcLd26ce +05/01/2018,Actors,@EvaLongoria,Had such an incredible time celebrating the premiere of @OverboardMovie last night! I’m so excited for you all to s… https://t.co/yysWNCvRDo +04/30/2018,Actors,@EvaLongoria,I’m so excited for the premiere of @OverboardMovie tonight!! Can’t wait for y’all to see it #overboardmovie https://t.co/KJoEmLarqa +04/29/2018,Actors,@EvaLongoria,Sunday Brunch! #SundayFunday https://t.co/IXHK2UeOi1 +04/29/2018,Actors,@EvaLongoria,No Sunday blues around here 😊 Hiding the baby bump with this awesome bomber! ✨@shopevalongoria✨ https://t.co/iKrQZn9W03 +04/27/2018,Actors,@EvaLongoria,My face when I realize it’s Friday! Happy weekend everyone (including @SimplyTroy) https://t.co/WlAoZhuBRb +04/26/2018,Actors,@EvaLongoria,Just me and Jinxy having a lazy Thursday! #MyOldMan #JinxyBaby https://t.co/TMExRLlxsZ +04/26/2018,Actors,@EvaLongoria,Congrats to my girl @MichelleSalasB for gracing the cover of @InStyleMexico! What a beauty! 👏🏻👏🏻👏🏻 https://t.co/msTsmEqqgm +04/25/2018,Actors,@EvaLongoria,"You guys make sure to check out @EugenioDerbez, @AnnaKFaris and I in our new movie Overboard! Can’t wait for you gu… https://t.co/hJ6gji2Nqb" +04/25/2018,Actors,@EvaLongoria,Thx Emily!! https://t.co/9vmVzpT7Ne +04/25/2018,Actors,@EvaLongoria,"RT @Fandango: ""Is your love life on paws?"" + +Let these #DogDays posters unleash your heart. + +exclusive poster debut, +featuring: +@ninadobrev…" +04/24/2018,Actors,@EvaLongoria,Hey guys! Check out my girl @Roselyn_Sanchez in her new movie Traffik! She’s fantastic and it’s a must see movie! D… https://t.co/aeUgIR9i5t +04/24/2018,Actors,@EvaLongoria,Strike a pose! 💋 #ThatsMyBeforeAndAfter 😂 https://t.co/WkTZxTKPNh +04/23/2018,Actors,@EvaLongoria,Happy birthday to my brother @georgelopez. Thank you for all the years of friendship and laughs! And for always mak… https://t.co/0oGHgPnuNp +04/22/2018,Actors,@EvaLongoria,Smiling because it’s still the weekend. Happy Sunday y’all! #BrunchPlease https://t.co/yvwX5MMKtW +04/21/2018,Actors,@EvaLongoria,Thank you to these wonderful human beings @FelicityHuffman @AnnaKFaris and @ricky_martin for honoring me with your… https://t.co/flAEiHKmuV +04/20/2018,Actors,@EvaLongoria,#FBF to working with such a talented and funny cast on @CWJaneTheVirgin 🎬 I love me some @HereIsGina #DirectorMode… https://t.co/oi4pKmX9M9 +04/19/2018,Actors,@EvaLongoria,Waiting for the weekend like... #ThursdayMood https://t.co/JWFe34X1Mr +04/18/2018,Actors,@EvaLongoria,My #WCW goes to this wonderful beauty @victoriabeckham ! Thanks for always supporting me and… https://t.co/8v0FWIbVtB +04/17/2018,Actors,@EvaLongoria,"RT @InStyle: Fact: @EvaLongoria has the coolest girl gang. 💯 Anna Faris, Victoria Beckham, Kerry Washington, Reese Witherspoon, and more ca…" +04/17/2018,Actors,@EvaLongoria,RT @OfficialWalkApp: @FelicityHuffman paid tribute to her friend and @DesperateABC co-star @EvaLongoria as she got her Star on the Hollywoo… +04/17/2018,Actors,@EvaLongoria,RT @ReallyMarcia: This is just a cookie. But if you go to the #HollywoodWalkofFame you can see @EvaLongoria’s brand new star!!! Love love l… +04/17/2018,Actors,@EvaLongoria,"RT @ReallyMarcia: I was there with bells on!! +Here’s your pic..xo m https://t.co/GbDF1JAFG3" +04/17/2018,Actors,@EvaLongoria,Thank you to so many beautiful women who showed up to support me and my star on the Walk of Fame. What an honor and… https://t.co/tOFNmSJb4N +04/17/2018,Actors,@EvaLongoria,"Well, it’s done! I’m officially available to be walked all over! What an honor! Thank you Hollywood Chamber of Comm… https://t.co/8jEVLrrfY0" +04/16/2018,Actors,@EvaLongoria,What a dream come true today! Receiving my star on the Walk of Fame is an honor I can’t even believe I’m going to e… https://t.co/VlouddVdZj +04/15/2018,Actors,@EvaLongoria,It’s a “no makeup” kinda day 😌 Happy Sunday y’all!! https://t.co/z0EqSOIWjv +04/14/2018,Actors,@EvaLongoria,RT @FelicityHuffman: Shhh working on my speech for @EvaLongoria’s star on the Hollywood Walk of Fame! ✨ https://t.co/VBuxSxXK4I +04/14/2018,Actors,@EvaLongoria,RT @OverboardMovie: Revenge never tasted so sweet. #OverboardMovie sails into theaters May 4. Get your tickets now: https://t.co/YKDxg5L8Sp… +04/14/2018,Actors,@EvaLongoria,Happy Saturday everyone! Let the weekend therapy begin 🙌🏼 🌸 https://t.co/vUUiKvsJFw +04/13/2018,Actors,@EvaLongoria,"Happy birthday to the best human being in the world! I’m so lucky to be able to have you as my life partner, my hus… https://t.co/yRzFfj1LOp" +04/12/2018,Actors,@EvaLongoria,"Feb 2016, with these beautiful souls. LOVE YOU sisters ❤️ #TBT https://t.co/Fmh9oA3vpj" +04/11/2018,Actors,@EvaLongoria,Thank you @jimmykimmel for a great time! As always! My 12th appearance on your show! And my son’s first appearance… https://t.co/LnndWgHNeQ +04/11/2018,Actors,@EvaLongoria,"RT @JimmyKimmelLive: Tonight on #Kimmel @EvaLongoria #OverboardMovie, Sebastian Maniscalco @SebastianComedy #StayHungry and @DanielCaesar &…" +04/11/2018,Actors,@EvaLongoria,"Yup, all I talk about nowadays is baby stuff 🤣 More baby talk tonight on @JimmyKimmelLive 👶🏻 @OverboardMovie https://t.co/ehRlVMPIJU" +04/11/2018,Actors,@EvaLongoria,Tonight!!! https://t.co/xZscX7s1s2 +04/11/2018,Actors,@EvaLongoria,RT @JimmyKimmelLive: Baby talk with @EvaLongoria! 👶 #OverboardMovie https://t.co/FUc2uV5POE +04/10/2018,Actors,@EvaLongoria,Happy Tuesday guys!!!! Today I visited my friend @TheEllenShow to talk all things babies and @OverboardMovie don’t… https://t.co/Q76x1XIzzH +04/10/2018,Actors,@EvaLongoria,Enough is ENOUGH 🤚🏼 #EqualPayDay https://t.co/wkyWRWJDS1 +04/10/2018,Actors,@EvaLongoria,"Childhood cancer affects the whole family & we often overlook the strong brothers & sisters of the patients. Today,… https://t.co/hvbB2N9RRV" +04/09/2018,Actors,@EvaLongoria,Working Mama! Getting it done! 💪🏼 #WorkingMama #MotivationalMonday #GrandHotel https://t.co/geFgbeYaew +04/08/2018,Actors,@EvaLongoria,Sunday: the day when I plan a lot and pretty much do nothing but chill with my doggies 🤣 #Popeye https://t.co/dkNTGKtKx2 +04/08/2018,Actors,@EvaLongoria,"RT @TIMESUPNOW: Hey @tonyrobbins, are you serious? Well you also said, “The path to success is to take massive, determined action.” Don’t w…" +04/08/2018,Actors,@EvaLongoria,Huh? Wow he has it all wrong. https://t.co/APi6vKlPkb +04/07/2018,Actors,@EvaLongoria,It’s a good day to have a good day! Happy Weekend everyone ❤️ https://t.co/wwzNE7HWV7 +04/06/2018,Actors,@EvaLongoria,"Ok everyone, attention please! It’s Friday y’all!!!! 🙌🏼 https://t.co/CfuGOZXkFD" +04/05/2018,Actors,@EvaLongoria,Oh Napa how I miss you! And my girls @ClaudiaZapata and @MariaRBravo too! https://t.co/Ri5gZKkHjp +04/05/2018,Actors,@EvaLongoria,50 years ago on April 4th Dr. King’s life was cut short but his dream still lives. My dream is equal pay for women.… https://t.co/qVkRfIBWMC +04/04/2018,Actors,@EvaLongoria,"Dear Wednesday, bring on the Sunshine 😎 https://t.co/3F4CVOEXYv" +04/03/2018,Actors,@EvaLongoria,RT @shopevalongoria: One of our favorites👇🏼 The perfect day-to-night look brought to you by #EvaLongoriaCollection. This is the outfit @Eva… +04/03/2018,Actors,@EvaLongoria,Thrilled for another year celebrating #WomenofWorth with @LOrealParisUSA. Nominate a woman making a difference in y… https://t.co/0TtKeLXf8K +04/02/2018,Actors,@EvaLongoria,"Happy bday to one of the most beautiful women inside and out! This woman has been my friend, my sister, my confidan… https://t.co/NhKR7Lc8t9" +04/02/2018,Actors,@EvaLongoria,My little cabana boy! 🌞 Thank you Diego! #HappyMonday https://t.co/DjMk2BE9Uf +04/02/2018,Actors,@EvaLongoria,"RT @OverboardMovie: An amnesiac. A scorned woman. A plan for revenge….OVERBOARD. +In Theaters May 4th + +#NotATelenovela #AprilFoolsDay https…" +04/01/2018,Actors,@EvaLongoria,Happy Easter from my egg to yours!! #HappyEaster 🌸🐰🐣🌸 https://t.co/uZZfJQ6ztc +03/31/2018,Actors,@EvaLongoria,RT @blackishabc: It's all smiles with @MilesBrown when @EvaLongoria Baston stops by to direct an episode! Re-watch Eva's #blackish directo… +03/31/2018,Actors,@EvaLongoria,Hope you are all having a relaxing weekend! Happy Saturday! ❤️ https://t.co/xZyYX9k3zr +03/30/2018,Actors,@EvaLongoria,Happy Friday y’all ❤️Easter came early this year! Head on over to https://t.co/OLDrXp9nUI to @shopevalongoria 30% o… https://t.co/r6NH7hDiZK +03/29/2018,Actors,@EvaLongoria,Team work makes the dream work 🙌🏼 #TeamEva #tbt https://t.co/zt4LVK62jN +03/28/2018,Actors,@EvaLongoria,"Kind heart, fierce mind, brave spirit 💪🏼 you’re all of that and SO much more! Love you @ananavarro ❤️ #WCW https://t.co/JsLZwwhwNn" +03/28/2018,Actors,@EvaLongoria,RT @shopevalongoria: Every day is a fashion show & the world is the runway 🙌🏼Here's a sneak peek of our Spring '18 collection being showcas… +03/28/2018,Actors,@EvaLongoria,RT @TraceeEllisRoss: Tonight's episode of @blackishabc was wonderfully directed by my dear friend @evalongoria! I loved every minute of it… +03/27/2018,Actors,@EvaLongoria,You guys!!!! Make sure to tune in on @ABCNetwork to watch the episode I directed for @blackishabc 🎬 TONIGHT at 9|8c… https://t.co/h8TIEj3KAb +03/27/2018,Actors,@EvaLongoria,"RT @OverboardMovie: Don’t worry, Carlos. We can keep a secret. #OverboardMovie https://t.co/biz9444M16" +03/27/2018,Actors,@EvaLongoria,"RT @EugenioDerbez: Y finalmente después de varias propuestas, les presento el póster de #HombreAlAgua . Si se lo encuentran en la calle, su…" +03/27/2018,Actors,@EvaLongoria,Miami Mornings ☀️🌊 https://t.co/2bDK5sIy14 +03/26/2018,Actors,@EvaLongoria,Adiós weekend... Hello Monday 👋🏼 https://t.co/uf5Wpklx2v +03/25/2018,Actors,@EvaLongoria,"Life is cool by the pool, and even better if you’re in Miami 😎 Happy SUNday everyone☀️ https://t.co/wsnvG8y5O0" +03/24/2018,Actors,@EvaLongoria,"What a relief to know that YOU are the future of this country. I stand with all of you who marched today, I’m so pr… https://t.co/u11wbcWPLc" +03/24/2018,Actors,@EvaLongoria,RT @shopevalongoria: #BTS shots of @EvaLongoria at @HSN ! Retweet if you watched! Visit https://t.co/kXGq0Y6mMA to shop our Spring Collecti… +03/24/2018,Actors,@EvaLongoria,RT @shopevalongoria: Read what @wwd has to say about @EvaLongoria X @HSN by clicking https://t.co/J539huQLge ! https://t.co/XEqSviHJz4 +03/24/2018,Actors,@EvaLongoria,Your face when it’s Saturday and you’ve slept more then 8 hrs 😝🤣 Happy Saturday y’all ❤️ https://t.co/Pt9HEUJRGJ +03/23/2018,Actors,@EvaLongoria,"Live, Love, W🐶🐶F... Happy #NationalPuppyDay to these two! ❤️ https://t.co/WybaOOWJpL" +03/23/2018,Actors,@EvaLongoria,"RT @HSN: #TGIF! It's been a fabulous week with @EvaLongoria, but we are looking forward to the weekend ahead! What are your plans? 😀 https:…" +03/23/2018,Actors,@EvaLongoria,Day #2 🙌🏼 We’re now live on @HSN! Make sure to tune in to learn more about my Spring 18’ #EvaLongoriaCollection. Li… https://t.co/zy2PLiNCbR +03/23/2018,Actors,@EvaLongoria,SO ready for Day #2 @HSN ✨ https://t.co/Tp9El8rnNq +03/23/2018,Actors,@EvaLongoria,That first outfit 🙌🏼#EvaLongoriaCollection of course 🤣 #EvaLongoriaxHSN @shopevalongoria @HSN https://t.co/HqmfcAx42d +03/22/2018,Actors,@EvaLongoria,"RT @HSN: '@EvaLongoria Talks New Fashion Line on @HSN, Go-To Shoe Looks and Expecting a Child! https://t.co/5FHXbIAERR via @footwearnews" +03/22/2018,Actors,@EvaLongoria,RT @HSN: Jump into jumpsuits this spring with one of our favorite's by @EvaLongoria! 😍 https://t.co/rH9vxEacb5 #EvaLongoriaxHSN #StyleEdit… +03/22/2018,Actors,@EvaLongoria,Today is the day!!! 🙌🏼 I’ll be sharing my Spring 18’ #EvaLongoriaCollection LIVE on @HSN ✨ Make sure to tune in to… https://t.co/ojJYx4DrwY +03/21/2018,Actors,@EvaLongoria,Tomorrow is the day!!! I'm so excited to share with you my Spring 18' #EvaLongoriaCollection on @HSN. Here's a litt… https://t.co/viWhZ1xOuU +03/20/2018,Actors,@EvaLongoria,The Weinstein Company releases anyone who suffered or witnessed any form of sexual misconduct by Harvey Weinstein f… https://t.co/vHZJc6GbmB +03/20/2018,Actors,@EvaLongoria,"It’s been a loooong week... oh wait! It’s just Tuesday 🤣 Happy Tuesday everyone 💋 +.... +Wearing my… https://t.co/KzcXngIKt3" +03/20/2018,Actors,@EvaLongoria,I binged @OnMyBlockTv this weekend and loved it! Bravo to my friend @laurenei for co-creating and directing this am… https://t.co/Wub34DWdyE +03/19/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Only 3 more days until @EvaLongoria appears on @HSN to discuss her Spring collection, available now at https://t.co/…" +03/19/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Introducing our Spring '18 Floral Jumpsuit. Visit https://t.co/1A8glD5qez to shop this piece, which happens to be one…" +03/19/2018,Actors,@EvaLongoria,"3 more days!!! 🙌🏼 Be sure to tune in to see me on HSN March 22nd and 23rd, I cannot wait to share my Spring 18’ col… https://t.co/cFsv8RH81x" +03/19/2018,Actors,@EvaLongoria,Yes!!! 🙌🏼 https://t.co/VekullXUBW +03/19/2018,Actors,@EvaLongoria,"TIME'S UP calls on @NYGovCuomo to open an investigation of NY County DA, Cyrus Vance @manhattanDA, & the DA's offic… https://t.co/fujM7K3VMK" +03/18/2018,Actors,@EvaLongoria,"My kind of Sunday, napping with THREE babies! 😴👼🏻🐕🐶 https://t.co/kjbrE9PuRc" +03/17/2018,Actors,@EvaLongoria,Happy Saturday 💪🏼✨ https://t.co/63bNXeX6Er +03/16/2018,Actors,@EvaLongoria,So proud of my girl @ambertamblyn 👏🏼 ❤️ https://t.co/c9BMefsDlC +03/16/2018,Actors,@EvaLongoria,Thank you to everyone for the birthday wishes! I felt the LOVE ❤ Every year I have more to be thankful for. Love yo… https://t.co/cGuIwr7UuF +03/16/2018,Actors,@EvaLongoria,"RT @lorenridinger: Happy Birthday to my sister @evalongoria! Beautiful inside and out with a heart of gold, your… https://t.co/YPfjKC80wY" +03/16/2018,Actors,@EvaLongoria,Say. No way! I had no idea! Happy birthday my fellow Pisces! 🎉🎉🎉 https://t.co/sxeKLjZfzS +03/16/2018,Actors,@EvaLongoria,@iamwill No way! I had no idea! Happy birthday my fellow Pisces! 🎉🎉🎉 +03/16/2018,Actors,@EvaLongoria,RT @_juliannemoore: Happy Birthay beautiful @EvaLongoria -wishing the best year of your life ❤️ +03/16/2018,Actors,@EvaLongoria,"RT @MarioLopezExtra: Goodnight birthday girl! You’re already getting the best gift ever... :) +@EvaLongoria + +#BirthdayGirl #PregnantAF htt…" +03/16/2018,Actors,@EvaLongoria,"RT @ElizabethBanks: Yass 🎉 Happy Birthday, @EvaLongoria. #wonderwoman https://t.co/ywzxq6zwLI" +03/16/2018,Actors,@EvaLongoria,"RT @FelicityHuffman: Happy Birthday sweet friend, +You make me happy. +Love +F + +@EvaLongoria https://t.co/5pMSIlISHB" +03/16/2018,Actors,@EvaLongoria,RT @PantelionFilms: Que linda sorpresa le dio el cast de @OverboardMovie a @EvaLongoria. Feliz cumpleaños Eva! 🎉🎊 https://t.co/LC1DNEd4N7 +03/15/2018,Actors,@EvaLongoria,"RT @hollyrpeete: Wishing this AMAZING lady a happy birthday 🎁🎉🎈 +Sister, daughter, wife, stepmommy,friend, actor, director, businesswoman, E…" +03/15/2018,Actors,@EvaLongoria,"RT @RWitherspoon: Happy Birthday to the perfect date for Girl's Night, @EvaLongoria ! Love you sister 💕 https://t.co/4THSPQOJWk" +03/15/2018,Actors,@EvaLongoria,RT @kerrywashington: Wishing my sister @EvaLongoria the happiest of birthdays. Love you! ¡Cumpleaños feliz! Con mucho cariño. Siempre ❤️ ht… +03/15/2018,Actors,@EvaLongoria,"RT @zoesaldana: Feliz Cumpleaños, @EvaLongoria🎂🍰❤️ +I hope you have a beautiful day! +Abrazos y Besos! https://t.co/LeEMs3O7oZ" +03/15/2018,Actors,@EvaLongoria,"RT @LanaParrilla: A big HAPPY BIRTHDAY to this gorgeous, powerful woman @evalongoria 💥 Love you to the moon and… https://t.co/EEMicKOjYG" +03/15/2018,Actors,@EvaLongoria,"RT @OverboardMovie: Happy birthday to our favorite partner in crime, @EvaLongoria. #OverboardMovie https://t.co/2WmgucUwz3" +03/15/2018,Actors,@EvaLongoria,I can’t believe on this birthday I have a pending birth inside of me! Thank you all for the birthday wishes already… https://t.co/YSbWLgysUT +03/14/2018,Actors,@EvaLongoria,"So excited for the @OverboardMovie press junket today! 📸 +. +Hair: @frankiepayne +Makeup: @MakeupByElan +Stylist:… https://t.co/hlCopJJ9ja" +03/14/2018,Actors,@EvaLongoria,RT @shopevalongoria: Work attire ✔︎ @meganfayy poses in #ELC Hi Lo Hem Blazer paired with our Straight Leg Pants. Visit https://t.co/QEFtfS… +03/14/2018,Actors,@EvaLongoria,RT @ThomasBarbusca: East Coast get ready for a brand new episode of @TheMickFOX with my favorite @EvaLongoria directing 🙌🏻 #themick https:/… +03/14/2018,Actors,@EvaLongoria,"When women support each other, incredible things happen ✨ My #WCW goes to these smart and courageous women, my soul… https://t.co/iE91L8vx5r" +03/13/2018,Actors,@EvaLongoria,EVERY. SINGLE. TIME. 🤣 https://t.co/L258G8bv7T +03/12/2018,Actors,@EvaLongoria,I’m so lucky to be in Ken’s presence! https://t.co/aIvoc7lZwe +03/12/2018,Actors,@EvaLongoria,RT @HSN: We ♥️ you and your collection @EvaLongoria and can't wait to show it off! #EvaLongoriaXHSN #StyleEdit https://t.co/KKDpHoKQc1 http… +03/12/2018,Actors,@EvaLongoria,"Calling all of my fashionistas!!! 🔊 Be sure to tune in to see me on @HSN March 22nd and 23rd, I am so excited to sh… https://t.co/GnKVNhygS2" +03/11/2018,Actors,@EvaLongoria,RT @OverboardMovie: That’s not what they mean by “Spring forward”. #DaylightSavings #OverboardMovie https://t.co/L7pMG6HUPd +03/11/2018,Actors,@EvaLongoria,Everyone be sure to catch my brother tonight at 10p/9p central on ABC! Amazing new show called #Deception You can’t… https://t.co/9kQlDntOAo +03/11/2018,Actors,@EvaLongoria,Sundays should come with a pause button 😭 https://t.co/NjEc3DxZlA +03/10/2018,Actors,@EvaLongoria,When you know it’s Saturday and you can sleep a little longer 🙌🏼🤣 Trying to get it in before daylight savings time!… https://t.co/wfUvwftH1J +03/09/2018,Actors,@EvaLongoria,🙌🏼 https://t.co/v0mtApQT8K +03/09/2018,Actors,@EvaLongoria,Congrats to this badass woman who made her “comeback” yesterday after giving birth to my future son’s girlfriend Ol… https://t.co/4z2YAnOHLr +03/08/2018,Actors,@EvaLongoria,RT @OverboardMovie: Women are stronger together. #InternationalWomensDay #OverboardMovie https://t.co/nemM6NpjWU +03/08/2018,Actors,@EvaLongoria,This #womensday I thank the future generations of women (& men) who will carry on the fight for gender equality. Wh… https://t.co/LvoPb7SXqP +03/07/2018,Actors,@EvaLongoria,Mornings were made for coffee ☕️ Happy Wednesday everyone ❤️ https://t.co/FrkRxZtcrS +03/06/2018,Actors,@EvaLongoria,Hello Sunny Tuesday ☀️ https://t.co/JHrXm4nl7c +07/02/2018,Actors,@TheRock,"RT @beauflynn: Talk about nonstop. @therock’s wild and jam-packed schedule gets even more relentless… We leave set from Atlanta, fly 16 ho…" +07/02/2018,Actors,@TheRock,Just wrapped a phenomenal #SKYSCRAPER press conference in Beijing. Amazing energy from the press and fans. Event wa… https://t.co/jQ31AWwOe7 +07/02/2018,Actors,@TheRock,"DON’T LOOK DOWN. +Take a deep breath and enjoy our NEW and FINAL trailer for #SKYSCRAPER. +JULY 13th 🔥🌍Get tickets:… https://t.co/5UhJhlKMXj" +07/02/2018,Actors,@TheRock,RT @nerdist: .@TheRock pays tribute to @skyscrapermovie's great predecessors with a pair of retro posters: https://t.co/ANcPJEaza1 https:/… +07/02/2018,Actors,@TheRock,Bruce was a big influence on me. Die Hard (and Towering Inferno) were the inspirations for SKYSCRAPER. Paying homag… https://t.co/vcsMNmgD3a +07/02/2018,Actors,@TheRock,RT @TimothyDowling: Love movie posters and love these. Had that Die Hard poster on my wall as a kid. You guys need a take on the Fugitive o… +07/02/2018,Actors,@TheRock,RT @Michael_Stets: These are killer! Well done @TheRock 🙌🏻🙌🏻 https://t.co/JZ3ZZhAAsw +07/02/2018,Actors,@TheRock,RT @TheRyanParker: These posters are so freakin’ sweet‼️ https://t.co/g9rENpfg8G +07/02/2018,Actors,@TheRock,Fun promo. Let’s get it boys! @NASCAR #SKYSCRAPER https://t.co/LTFbzoqkRd +07/01/2018,Actors,@TheRock,I had these ultra cool vintage posters made paying homage to the two classic movies that inspired me and generation… https://t.co/hFV5fqmFW3 +07/01/2018,Actors,@TheRock,"Beijing bound 🇨🇳 +A pleasure to return back to China. +Can’t wait to see everyone. Let’s roll. +#WheelsUp… https://t.co/qJlp52USri" +07/01/2018,Actors,@TheRock,@robbieglover Thx man that’s a such a cool note. Appreciate you and keep on keepin on 🙏🏾👊🏾 +07/01/2018,Actors,@TheRock,@Amy__Bailey Haha 👏🏾👏🏾👊🏾 #swag +07/01/2018,Actors,@TheRock,"RT @averyhartmans: This morning, @TheRock introduced his first-ever wireless headphones, designed to help you ""crush your workouts"" 💪 https…" +07/01/2018,Actors,@TheRock,Here I go playing Willy Wonka again and surprised our lil’ baby Jazzy with this horse and carousel ride when she go… https://t.co/nx4kBditVZ +07/01/2018,Actors,@TheRock,"Off to a good start on tracking w/ a $30M U.S. number for our SKYSCRAPER debut. +Domestic box office is one piece o… https://t.co/jAC0F4ovkt" +06/30/2018,Actors,@TheRock,@gregwarhead @charliesimo @KevinHart4real @mattjwillis Haha never any shame in hustling to get your music heard dud… https://t.co/4Lxtj4PCVX +06/30/2018,Actors,@TheRock,@ollyog @MatRoff Enjoy! Pint? Nah it’s your birthday. Let’s go with a gallon +06/30/2018,Actors,@TheRock,@ollyog @MatRoff Raising a glass to you on your birthday buddy! Cheers 🍻 👊🏾 +06/30/2018,Actors,@TheRock,@charliesimo @gregwarhead @KevinHart4real @mattjwillis Haha I have a fun idea - how bout you watch it with us and t… https://t.co/FD9zsZuwMq +06/30/2018,Actors,@TheRock,@diverse_kcox Hah well tequila helps the ol’ memory 🤙🏾 +06/30/2018,Actors,@TheRock,@Sichz_ Thx dude very kind of you to say. Thx for diggin all my stuff 🙏🏾👊🏾 +06/29/2018,Actors,@TheRock,"DECEMBER 13th, 2019. +The game is not over... +And I get to slap @KevinHart4real’s lips into next week. The world is… https://t.co/LDWAxojudu" +06/29/2018,Actors,@TheRock,RT @DanyGarciaCo: SO HAPPY w/ the creative content & direction of this launch! @sevenbuckscr CRUSHED it & captured the magic of @therock an… +06/29/2018,Actors,@TheRock,Make sure you experience our VR Skyscraper leap off the crane. I tried it multiple times and failed lol. It’s an in… https://t.co/686wr7G4jg +06/29/2018,Actors,@TheRock,RT @SevenBucksDS: Who doesn’t love a good action movie (or five)? No better authorities to wax-poetic on the subject than @TheRock and Neve… +06/29/2018,Actors,@TheRock,"Boom 🎧 +One of the best, if not THE best over the ear headphones you’ll ever train in. Engineered for HARD CORE TRA… https://t.co/e0wBlzVZ0P" +06/29/2018,Actors,@TheRock,Yes sir. Get after it! Playlist personally created by me. Start with WE READY and let the destruction begin 💪🏾👊🏾… https://t.co/Zgw8FLLaKw +06/29/2018,Actors,@TheRock,"Haha thank ya for the huge SKYSCRAPER props. Very cool to see everyone loving the movie. And yes, drinking beer and… https://t.co/M1fIV7o8fQ" +06/28/2018,Actors,@TheRock,We smell it and smells like shi🤣. Thanks dude! Enjoy the training shoes! First drop sold out in 30min. We just drop… https://t.co/dynE2tHYwT +06/28/2018,Actors,@TheRock,"Enjoy the 🎧👟! +Great copps! Stay strong / train hard! +https://t.co/vYtBQVsMjX https://t.co/ZgZXy5WtfF" +06/28/2018,Actors,@TheRock,@redletterdave Great idea💡 but I’ll do it in multiple accents and ever so slightly drunk of tequila lol 👊🏾 +06/28/2018,Actors,@TheRock,"RT @redletterdave: These headphones sound great. + +Next version: An onboard AI like Siri, but with The Rock's voice, to motivate your candy…" +06/28/2018,Actors,@TheRock,"Thank you man. +I put a lot of effort into delivering high quality @UnderArmour products. +And please don’t go brok… https://t.co/UTYmSrWhaX" +06/28/2018,Actors,@TheRock,"Thank you man and enjoy the great. Those #ProjectRock1s training shoes sold out in less than 30min, four weeks ago,… https://t.co/TN59pN6qsV" +06/28/2018,Actors,@TheRock,@ollyog Happy early birthday to my BFF. I will never again equate an emoji face with masculinity 😂🤦🏽‍♂️ +06/28/2018,Actors,@TheRock,"Great review! +I also added new “talk thru technology” which allows us to keep our headphones ON and listen to peop… https://t.co/GPYKeEAm76" +06/28/2018,Actors,@TheRock,"@ChrisClarkNFL @UnderArmour Cool! Let me know how you like em dude. Again, if they suck, let me know and I’ll send… https://t.co/fu5dlHa5vU" +06/28/2018,Actors,@TheRock,"Enjoy @averyhartmans!! Crush it! +🎧 💪🏾 +https://t.co/vYtBQVsMjX https://t.co/LWmTIqGvXC" +06/28/2018,Actors,@TheRock,"Enjoy my man 🎧 +They’ll be one of the best, if not, the best over the ear headphones you’ve trained in. +And because… https://t.co/9P2lJ8YO2T" +06/28/2018,Actors,@TheRock,"It’s ON! +Our most anticipated @underarmour #ProjectRock drop - the CHASE GREATNESS COLLECTION is OUT NOW. +As alwa… https://t.co/8O8BLDoTye" +06/28/2018,Actors,@TheRock,"RT @ShannonCorbeil: So @TheRock is awesome, obviously, but Neve Campbell as a badass combat veteran stole my heart. + +#SkyscraperMovie is F…" +06/28/2018,Actors,@TheRock,See you at the top one day man. Keep puttin’ in that hard work. Glad you loved the movie. #SkyscraperMovie https://t.co/UFIeOqnlI1 +06/28/2018,Actors,@TheRock,"Billy’s right! +But for the sweet science record, asteroids are always a pain in the a** to stop. I can stop meteor… https://t.co/Ei1Vhxt2ub" +06/28/2018,Actors,@TheRock,"👏🏾👊🏾 Neve Campbell, who plays my wife, crushes in our movie. Proud of her! Our writer/director @RawsonThurber wrote… https://t.co/WOvCKnAQKH" +06/27/2018,Actors,@TheRock,@Reluctantly_pod @djdizzle82 @KathrynGironimi 🙏🏾 for tha luv!!;) +06/27/2018,Actors,@TheRock,Yessss! More @caityweaver love for writing one of the greatest profiles of all time. (of course she had a brilliant… https://t.co/PvxMhrmk93 +06/27/2018,Actors,@TheRock,"Very cool, significant and rare news for our SKYSCRAPER in CHINA. The country has awarded us a July 20th release da… https://t.co/RwOv4qyxQI" +06/27/2018,Actors,@TheRock,Dude always a pleasure working with you. Never an ego and always down to do whatever it took to entertain the fans.… https://t.co/1heOocEY3N +06/26/2018,Actors,@TheRock,"Reddit community time for some fun! +Tomorrow (Wed) join my SKYSCRAPER writer/director Rawson Thurber at 3pm PDT. +G… https://t.co/rRPKU5jAoG" +06/26/2018,Actors,@TheRock,"You know I love my contests & giving cool shit away! 🤙🏾 +Teamed up w/ @AtomTickets to make the SKYSCRAPER TICKET TO… https://t.co/f8CskZQOI1" +06/26/2018,Actors,@TheRock,RT @DanHevia: I never knew I needed @TheRock vs. @rustyrockets until now. @HBO this is why I subscribe. 🤙 https://t.co/gaK5zlatBV +06/26/2018,Actors,@TheRock,RT @AprilCPA1991: Yes!! One of my fav shows is coming back! Love #ballers and love the cast! Especially my fellow UM alum @TheRock ! 🙌🏼🙌🏼 h… +06/26/2018,Actors,@TheRock,RT @elaysiaamour: Yessss let’s gooo https://t.co/ZaHdBIjc5b +06/26/2018,Actors,@TheRock,RT @hhe_71: Lets goooo! Can’t fuckin’ wait! #ballers https://t.co/koxKmfNxQi +06/26/2018,Actors,@TheRock,"RT @LucasSteagall: Fun fact: A day acting on this show is my favorite day on set of all time, every time. Another fun fact @TheRock is a fr…" +06/26/2018,Actors,@TheRock,RT @scott_f_mack: Awesome to see the next season of #ballers is coming out this summer. Can’t wait to check it out 👀 https://t.co/08KVSEVW4o +06/26/2018,Actors,@TheRock,RT @akhilg06: Love this show #ballers https://t.co/lQTPn1rpeT +06/26/2018,Actors,@TheRock,RT @OilyMomHere: Woo hoo!!! So excited for this season to rock....thank you https://t.co/yRYYonOfqI +06/26/2018,Actors,@TheRock,RT @peterocksteady: Feel like I've been waiting forever big bro @TheRock I'm Ready! #Ballers https://t.co/CECRwP9Nrz +06/26/2018,Actors,@TheRock,"I’m blown away. Thank you CHINA 🇨🇳 +RAMPAGE crosses the rare $1Billion RMB mark & becomes my highest grossing film… https://t.co/SXVQHo99PV" +06/26/2018,Actors,@TheRock,Pleasure meeting my dude @nicksanto534. What a positive ray of light and “no excuses” perspective on approaching li… https://t.co/GsozXiF95f +06/25/2018,Actors,@TheRock,@kharypayton 😂 👏🏾👊🏾 fuckin classic (and true) +06/25/2018,Actors,@TheRock,"RT @SevenBucksProd: Different coast, same hustle. @BallersHBO is back in business August 12 on @HBO. #Ballers #HBO https://t.co/wFS63l0c76" +06/25/2018,Actors,@TheRock,NEW SEASON of @ballershbo & this may be our best yet. We’re @HBO’s #1 half hour show for years now & I’m very proud… https://t.co/7omCBgbM6I +06/24/2018,Actors,@TheRock,"I’d 💯 vote for him, because he’s King of the ‘Gram but I also heard he’s a real a**hole, so no vote for him.… https://t.co/btUaVX3TOv" +06/23/2018,Actors,@TheRock,"Starting off my Sat by reviewing new TV spots for SKYSCRAPER. +Note pad and pen at the ready and diggin’ in to my p… https://t.co/8zsNzVRX3G" +06/23/2018,Actors,@TheRock,Join us today at 415 EST on ⁦@FOX for NOSSA CHAPE. Took me a few takes to fight back tears and get thru my lines fo… https://t.co/ElvmQIUxvl +06/23/2018,Actors,@TheRock,Wow FIVE #TeenChoice2018 NODS. THANK Y’ALL so very much. Grateful to have the greatest fans on the planet. Vote now… https://t.co/1iWX47cIkF +06/22/2018,Actors,@TheRock,"3 week countdown is on. +Most anticipated “nail biting, terrorizing fun you’ll have three thousand feet in the sky”… https://t.co/HcSeDurKTQ" +06/22/2018,Actors,@TheRock,"Hey punk @JKCorden, you’re gonna need much more than a silly #EatShitTheRock hashtag to start a beef between me and… https://t.co/MtXBIv4NnO" +06/21/2018,Actors,@TheRock,"RT @skyscrapermovie: EXCLUSIVE: A family in danger, an impossible leap, heroes, villains... @TheRock and the #SkyscraperMovie filmmakers gi…" +06/21/2018,Actors,@TheRock,"Big #ChaseGreatnessCollection2 drops next THURSDAY 6/28. +Including my first signature shoe that, fortunately sold… https://t.co/PCYerDRk9z" +06/21/2018,Actors,@TheRock,You make us happy too El. And thanks for including Kev’s name in your tweet. He gets super jelly when he’s not ment… https://t.co/BwQFadIjwp +06/20/2018,Actors,@TheRock,@cebsilver I’m skeptical reading “former” gym rat which I assume means you don’t train anymore. These headphones may not be for you buddy +06/20/2018,Actors,@TheRock,"Hype is real 🎧! +Our new #ProjectRockWireless @UnderArmour @JBLaudio first ever HARDCORE TRAINING headphones drop ne… https://t.co/hY1zHTGVMs" +06/20/2018,Actors,@TheRock,"Cool SKYSCRAPER movie fact/ +We hired Adrian… https://t.co/DTIoJndovx" +06/20/2018,Actors,@TheRock,"They’re here 🎧 +Like you, my gym time is… https://t.co/BuqXovimEt" +06/19/2018,Actors,@TheRock,"As you know, #SKYSCRAPER is my homage to DIE… https://t.co/wt17KA6U92" +06/19/2018,Actors,@TheRock,"Always make it about consistency, not greatness. Greatness will come. Have a GREAT season boys. Big respect & suppo… https://t.co/uvB7JJVNGD" +06/18/2018,Actors,@TheRock,@ava Congratulations AD. Onward/Upward 🤙🏾 +06/18/2018,Actors,@TheRock,Kuz told me he wanted his best summer ever. Boy’s puttin’ in the work 👏🏾💪🏾 https://t.co/j4z2i1i6mX +06/18/2018,Actors,@TheRock,@RealPAULLOGAN Thank you PL!! Appreciate it brother 👊🏾 +06/18/2018,Actors,@TheRock,"Trust me, Mel - I only got on my knees to feed Lauren while she breastfed because I was told there was free waffles… https://t.co/BPYpDR8nFw" +06/18/2018,Actors,@TheRock,So humbling and GRATEFUL to see @MakeAWish wish granting come full circle in my family. Thank you to the entire Mak… https://t.co/CcxZGIThAg +06/18/2018,Actors,@TheRock,@Emilyvaughnx Thx you Em!!! 🙏🏾👊🏾❤️ +06/18/2018,Actors,@TheRock,Haha perfect. Congratulations my friend on #5. I got some work to do to catch up. I’ll stay practicing lol.… https://t.co/7eLJxUY2wL +06/18/2018,Actors,@TheRock,"Bitter sweat Sunday, but my baby girl’s made it… https://t.co/ee4yx9nPgG" +06/17/2018,Actors,@TheRock,"What are you so upset about brother. You told me last month you’re not their real father anyway. +Love ya buddy and… https://t.co/xixnJdD2Yp" +06/17/2018,Actors,@TheRock,Happy Father’s Day to this hardly ever smiling… https://t.co/hIV2tdkbXo +06/17/2018,Actors,@TheRock,Family 👊🏾 Congrats boys! 🇲🇽 Thank you to my… https://t.co/YHVaFki6hV +06/16/2018,Actors,@TheRock,"Close up the honky tonks and lock all the doors,… https://t.co/5w7Q09YJ4U" +06/16/2018,Actors,@TheRock,"Calm before the storm. +Shooting our big… https://t.co/ySFgMwFknp" +06/16/2018,Actors,@TheRock,"*swipe left +Day of reckoning. 108 degrees.… https://t.co/oYgIlW1uck" +06/16/2018,Actors,@TheRock,"Family 👊🏾 +Thank you to my boys @jona2santos… https://t.co/Pq5QBYW3FH" +06/16/2018,Actors,@TheRock,"Doing some great biz with Universal. Grateful to have started my career with them years ago (Scorpion King). +Good… https://t.co/5SFcATqY4t" +06/16/2018,Actors,@TheRock,"Ladies, gents and children of all ages.. The… https://t.co/c7kMjovDUx" +06/16/2018,Actors,@TheRock,"🙏🏾 Much mahalo for this crazy fun buzz. RED NOTICE was the pitch that created a huge bidding war, eventually becomi… https://t.co/oaZUFwOYbp" +06/16/2018,Actors,@TheRock,Cool to feel the early buzz about RED NOTICE - an international heist thriller with myself and my darlin’ friend… https://t.co/e7q9jCqH0J +06/16/2018,Actors,@TheRock,Dude on the left is pretty good at what he… https://t.co/SrS9QYP1OZ +06/16/2018,Actors,@TheRock,@greengoblin Def you!! 👊🏾 +06/15/2018,Actors,@TheRock,"SKYSCRAPER is my homage to DIE HARD & TOWERING INFERNO. A love letter to Willis, McQueen, Newman and Dunaway. +And… https://t.co/0IrtvrwtQm" +06/15/2018,Actors,@TheRock,"@preston316 Absolutely amigo. It’s inspired by Towering, Die Hard, The Fugitive.. films of the 70s & 80s genre. Ins… https://t.co/5hygFB0yj2" +06/15/2018,Actors,@TheRock,"@chriswelch Dammit Chris it’s daddy, not dad" +06/15/2018,Actors,@TheRock,"A father’s love is fierce. +Excited to deliver to you this summer’s most anticipated original action film.… https://t.co/Q3l4trW9y4" +06/15/2018,Actors,@TheRock,"@Fisher_DanaR Haha yes it is D. It’s secretly, Kevin Hart wearing a raccoon costume" +06/15/2018,Actors,@TheRock,😂👊🏾 “Hold my beer and watch this shit” #MPRRaccoon https://t.co/FNg7lfLeLL +06/14/2018,Actors,@TheRock,"Just three dudes. +Great chop session with this… https://t.co/42znOHlvkA" +06/14/2018,Actors,@TheRock,"@ChrisEvans Happy Birthday brotha! Halfway to 74! +🤣🤙🏾👊🏾" +06/13/2018,Actors,@TheRock,Thank ya dude. The movie is fantastic. Enjoy! And I AM TOUGH.. in my mind only 😂 #Skyscraper https://t.co/dpkTVdr70W +06/13/2018,Actors,@TheRock,"In ONE MONTH.. yup, it all goes wrong. +#SKYSCRAPER JULY 13th 🌎 https://t.co/73aA2E946g" +06/13/2018,Actors,@TheRock,"Found this gem 💎 +Check out 22yrs old and 280lbs… https://t.co/MsyIXpCrto" +06/13/2018,Actors,@TheRock,"*scroll left +I wrote Gal’s name down on my… https://t.co/L9890p0MZd" +06/12/2018,Actors,@TheRock,This one got me. Lil’ Carter here has children’s Alzheimer’s (Sanfilippo syndrome). Check out this vid and if you c… https://t.co/OR5H7ahpgc +06/12/2018,Actors,@TheRock,@a_lemay224 Perfect!! #swag +06/12/2018,Actors,@TheRock,"@KicKeePants Much much mahalo for the amazing warm and cozy’s. Unfortunately, none of it fits me, so I guess I’ll g… https://t.co/xaY62Bot0f" +06/11/2018,Actors,@TheRock,"Got my ass kicked today training legs. +3… https://t.co/Bwh3rlllbL" +06/10/2018,Actors,@TheRock,"Back of the jet is called, “DJ’s Think Tank”… https://t.co/jCcX7tps6N" +06/10/2018,Actors,@TheRock,"Wheels up / rockin’ out 🤟🏾 +#FlyingSilverEagle… https://t.co/Xkub5B3OUQ" +06/10/2018,Actors,@TheRock,"Meet Will Sawyer: +Father. Husband. Amputee. BAMF. +Don’t ever underestimate the power of a desperate man protectin… https://t.co/111rhg5N5m" +06/10/2018,Actors,@TheRock,@jimmykorderas Haha I always need your help man. Just like back in our ring days when I needed you to quick count every time I won lol +06/09/2018,Actors,@TheRock,Always ‘preciate you brotha. Keep doing great things and spreading the good word. #theotherside https://t.co/Xgkv98WoNp +06/07/2018,Actors,@TheRock,Still much to learn in the shoe and apparel… https://t.co/w8kFqKHfS1 +06/07/2018,Actors,@TheRock,@Stands And a very special goodnight to you too;) +06/07/2018,Actors,@TheRock,@OmarMiller’s a good man and I’m happy to help. Continued blessings to you guys and the mission center. https://t.co/XXvE2dxtiV +06/06/2018,Actors,@TheRock,@Chris_Ciaccia @UnderArmour Thanks for writing it my man. Reading fresh language about my biz helps me understand a… https://t.co/hE9T383oWu +06/06/2018,Actors,@TheRock,"Again, very nice measure and metrics to sell out so fast, but also gave me great clarity on where we can improve gr… https://t.co/rQvqIyO1Tc" +06/06/2018,Actors,@TheRock,"Market analytics ain’t sexy at all to tweet about, however nice to see our #ProjectRock footprint making an impact… https://t.co/CKz6pUwYrT" +06/06/2018,Actors,@TheRock,Great success with our launch. Sold out in 30min. Satisfied consumers but still lots of work to be done! Always loo… https://t.co/cFJAjxORIh +06/06/2018,Actors,@TheRock,@JamesGunn @karengillan @michaelrosenbum @jumanjimovie @Guardians @seangunn @jackblack @prattprattpratt… https://t.co/YVTxJKeUE4 +06/06/2018,Actors,@TheRock,"Hell, we’ll get therapy together brother lol. Keep kickin ass champ! 🤙🏾👊🏾 https://t.co/qC5MhaXUhX" +06/05/2018,Actors,@TheRock,@LegitJoeyBowie Boom 💥 🤙🏾👊🏾 +06/05/2018,Actors,@TheRock,These are called the “Hobbs Beef Piston Power… https://t.co/b6UthHycNu +06/04/2018,Actors,@TheRock,@mattdavella My all time fav pic. Thx for the love man! And that’s because you keep calling me from a pay phone...… https://t.co/1KiLcsvliw +06/04/2018,Actors,@TheRock,"Yes sir. We gotta have faith that the one thing we always wanted to happen, can often be the best thing that never… https://t.co/QmXueKgjLB" +06/04/2018,Actors,@TheRock,"Sunday shakas and scripts. +Reading our new Fast… https://t.co/i2UJacOjub" +06/04/2018,Actors,@TheRock,I have some great and productive conversations… https://t.co/EQU8fnWkqR +06/04/2018,Actors,@TheRock,"If you’re goin’ thru the struggle, hold on to… https://t.co/OPRXBNaEF7" +06/03/2018,Actors,@TheRock,Thank you man and have a great workout! Women’s ProjectRock shoes in development and delivering at the top of 2019.… https://t.co/jBnQ0Snozz +06/03/2018,Actors,@TheRock,"I got you @TiffanyHaddish! Yes, the secret password to our secret society MTV-inati, is “@KevinHart4real is shorter… https://t.co/Ktr7I4WhnV" +06/03/2018,Actors,@TheRock,Months and months of collaborating with @UnderArmour’s top designers. Thank you everyone who made our launch a huge… https://t.co/OfzCJ4ayHF +06/03/2018,Actors,@TheRock,"“Let It Go” + +You’re welcome. https://t.co/BPMS6gwpWQ" +06/03/2018,Actors,@TheRock,@Anna_Rothschild @SirDavidBBC @washingtonpost Aw thank ya for the love Anna! Flattered by the gesture 🤟🏾 for the re… https://t.co/K9qZbR8BDr +06/03/2018,Actors,@TheRock,"Hi Bob, which nickname are you referring to? Big Daddy? The Rock? Samoan Thor? Beef Piston? Or the inappropriate on… https://t.co/4dp4Wh8499" +06/03/2018,Actors,@TheRock,@KaylaBraxtonWWE Hah I’ll totes see ya there as per yoosh;) +06/03/2018,Actors,@TheRock,🙏🏾❤️ Aww thank ya Audra! Wishing everyone the best of luck for our #WarriorGames! Kick ass and have fun. And geeezu… https://t.co/vrr2EI8mdT +06/03/2018,Actors,@TheRock,"Very cool and flattering @DakotaKai_WWE. Thank you! Look forward to following your career. Work extremely hard, hav… https://t.co/Ts9C7AhYL9" +06/03/2018,Actors,@TheRock,You’re welcome cuz! Always proud of your success and hard work. Enjoy the Project Rock @UnderArmour gear and… https://t.co/lgSymLeOih +05/31/2018,Actors,@TheRock,@mikeavila @joemoscone77 Haha not at all! Flair over me is a smart move and I agree. He was one of my squared circl… https://t.co/5ZfqBjQr5v +05/31/2018,Actors,@TheRock,@AlexJamesFitz Some jerk asshole lol. We also have to add TOWERING INFERNO and THE FUGITIVE to the title +05/30/2018,Actors,@TheRock,RT @rampagethemovie: #RampageMovie is like nothing you’ve ever seen before. Don’t miss out on taking all the action with @TheRock home! Own… +05/29/2018,Actors,@TheRock,@KevinMcCarthyTV Thank you dude so much!! You’re gonna love the movie!! @RawsonThurber (writer director) did an ama… https://t.co/Y7gK6e3EQV +05/29/2018,Actors,@TheRock,Happy to see all the great reviews for my new signature training shoe @UnderArmour #ProjectRock1s. Spent a long ti… https://t.co/EDc6RKYDSI +05/29/2018,Actors,@TheRock,Thank you everyone for rockin’ with my new signature shoe - the #ProjectRock1s from @UnderArmour. In 30min they wer… https://t.co/U2NmkoraTF +05/29/2018,Actors,@TheRock,RT @johnkrasinski: Memorial Day. A day to honor and remember each and every one of the brave men and women who lay down their lives for ea… +05/29/2018,Actors,@TheRock,RT @prattprattpratt: I did my Murph yesterday because i’m in Shanghai where yesterday is already tomorrow? (or something like that) we’ve b… +05/29/2018,Actors,@TheRock,@Ron_Clements @buffa82 @UnderArmour Awful? 😂 Well I can promise you we’re not that my friend. Nice profile pic. Fuck off 💁🏾‍♂️🖕🏾 +05/29/2018,Actors,@TheRock,Incredible day for our first signature series @UnderArmour #ProjectRock1s - 100% sold out in 30min. It’s a smart tw… https://t.co/514lIwM45d +05/29/2018,Actors,@TheRock,"It’s Dwight you dickhead. Let’s get to work Jeff. + +Jokes aside, this one is truly going be an honor.… https://t.co/ONlPSKLofB" +05/28/2018,Actors,@TheRock,"Whoa. Blown away... +I got up at 4am (Hawaii time) today to launch my new signature series @UnderArmour… https://t.co/xFdLhHy1ng" +05/28/2018,Actors,@TheRock,"#ProjectRock1s AVAILABLE NOW 🔥 +My 1st signature series shoe from @underarmour. I’ve engineered & broken these down… https://t.co/72GR1N4B5a" +05/27/2018,Actors,@TheRock,Just when I thought I couldn’t be any more… https://t.co/fXdpUq5Vd2 +05/27/2018,Actors,@TheRock,@TheVenskus Papa? No. Daddy? Yes. Lol +05/27/2018,Actors,@TheRock,Just when I thought I couldn’t be any more… https://t.co/JbO0qQXCeZ +05/27/2018,Actors,@TheRock,@ChrisClarkNFL @UnderArmour You’ll dig these PR1’s for sure my man. The 15’s are large and wide. Not a narrow shoe… https://t.co/hWA1aCTPJl +05/27/2018,Actors,@TheRock,Leg day in my new @underarmour #ProjectRock1s… https://t.co/w5Mav66CJM +05/27/2018,Actors,@TheRock,Scroll left for the exclusive first look at my… https://t.co/YV6lUMi4Lk +05/27/2018,Actors,@TheRock,"We’re all in the same game, just different… https://t.co/923SoZjKmO" +05/26/2018,Actors,@TheRock,"Well I keep asking you out to join me for an amazing time eating dead cow and drinking tequila, but the “dead cow”… https://t.co/1PHMbgrAIz" +05/26/2018,Actors,@TheRock,"Love this. Have fun and tell the awesome birthday girl, Uncle Rock says “Have a blast on your birthday and go spend… https://t.co/N3HuNCuiYv" +05/26/2018,Actors,@TheRock,Here’s a breakdown of our 18month process on the development and engineering of my new signature sneaker. Pretty in… https://t.co/vpPZhox1oR +05/26/2018,Actors,@TheRock,"I’ve developed, trained in, broken down and refined this sneaker for over a year now. Highest of quality and durabi… https://t.co/wEZ9t96zOi" +05/26/2018,Actors,@TheRock,"This MONDAY we drop our new @UnderArmour #ProjectRock1s. +My first signature sneaker series from our CHASE GREATNES… https://t.co/Pa9aZsu8zO" +05/26/2018,Actors,@TheRock,"@johnreport @NatbyNature Your action figure looks way cooler, sexier & bad ass. Mine looks constipated and confused… https://t.co/svrXL9IQRH" +05/24/2018,Actors,@TheRock,Scroll left for the exclusive first look at my… https://t.co/mJD5DEIae9 +05/24/2018,Actors,@TheRock,And that’s saying A LOT cause your head is HUGE my friend @TheRossKing 😉🤙🏾. Always a good time chatting s you!… https://t.co/657lIG5hc2 +05/24/2018,Actors,@TheRock,Great time. Thank you for having me on your show! #Skyscraper https://t.co/z2Ap5sTmor +05/24/2018,Actors,@TheRock,"A lil’ taste of my new @UnderArmour PROJECT ROCK 1’s. +Been training in these and improving their quality for over… https://t.co/M0ZyfsnBh6" +05/24/2018,Actors,@TheRock,@toryshulman @skyscrapermovie @dailyblastlive Dude I wanted to cast you but what’s his name said no. Can’t remember… https://t.co/HMbtHGRgox +05/24/2018,Actors,@TheRock,"@HistoryofWrest Every Saturday night, I was at this show with my dad at the Portland Sports Arena. On Sunday’s the… https://t.co/bEnWyCuNTC" +05/23/2018,Actors,@TheRock,"I made a movie that pays homage to films that inspired me & a generation w/ grit, guts and heart - DIE HARD, THE TO… https://t.co/HI5Mku341r" +05/22/2018,Actors,@TheRock,"New full length SKYSCRAPER trailer drops tomorrow. +Most physical, emotional and intense role of my career. +I need… https://t.co/eKlQpsYeS1" +05/22/2018,Actors,@TheRock,"RT @EWagmeister: Another day, another piece of news coming from @TheRock’s world! + +DJ & his @SevenBucksProd business partner @DanyGarciaCo…" +05/22/2018,Actors,@TheRock,My main objective is to always make movies for the world to enjoy. And now that fun movie going experience extends… https://t.co/1AIdAdrwqI +05/22/2018,Actors,@TheRock,RT @Variety: Dwayne @TheRock Johnson and @DanyGarciaCo are bringing more high-wattage Hollywood electricity to Atom Tickets' advisory board… +05/21/2018,Actors,@TheRock,@JerryJarrett @TheJimCornette @HistoryofWrest I wish I did remember that Jerry! Dad always spoke highly of you and… https://t.co/WSDa0w7gUs +05/21/2018,Actors,@TheRock,A lil’ taste of my new SKYSCRAPER trailer debuting THIS WEDNESDAY! #SKYSCRAPER https://t.co/1UWy8lDVe5 +05/20/2018,Actors,@TheRock,@AdrianneCurry @TheMatthewRhode @jumanjimovie @skyscrapermovie Do it dude!! Thats the kind of deal where there are… https://t.co/C3fwz0vTlF +05/20/2018,Actors,@TheRock,"@robcorddry @hwinkler4real Dear Rob, I signed an autograph pic for Henry and it should be arriving this week into h… https://t.co/jxc3ld1nOY" +05/20/2018,Actors,@TheRock,"Saturday night doc viewing. +@thenotoriousmma… https://t.co/byQCyyIrSX" +05/20/2018,Actors,@TheRock,We’re gonna have times in our lives where we… https://t.co/YcF8eCjTiJ +05/20/2018,Actors,@TheRock,It’s a success philosophy thats worked very well… https://t.co/wr0ik4wlqn +05/20/2018,Actors,@TheRock,Thank you @lakers for having me speak to the… https://t.co/IXjvyhDV9K +05/20/2018,Actors,@TheRock,Just stopping in to show my appreciation and… https://t.co/bTS525qeB8 +05/20/2018,Actors,@TheRock,@chrissyteigen See baby you’re doing great!! @LaurenHashian 😉👍🏾 +05/20/2018,Actors,@TheRock,@Crockettfroggy @Goldust @Zelina_VegaWWE @JoeDiffieOnline Sheeeeyat am I a Joe Diffie fan? “If you want me to” is o… https://t.co/bU5gaNghgS +05/20/2018,Actors,@TheRock,@HistoryofWrest You can actual FEEL the tension and energy in the arenas across the country in the 70’s during matc… https://t.co/ZkaY20gGuw +05/20/2018,Actors,@TheRock,@Goldust @Zelina_VegaWWE Congrats brother. Proud of you (still remember us listening to ol’ Joe Diffie on the bus on the Germany tour;) +05/20/2018,Actors,@TheRock,@SMUheavyweight @OldWrestlingPic the original oooooh yeah! +06/26/2018,Actors,@jessicaalba,@CharterNewsroom +06/26/2018,Actors,@jessicaalba,We are here to kick ass and take names 💪🏽!!! LA’s Finest has been officially picked up by Charter Communications—ma… https://t.co/Xy9q9xe4iQ +06/19/2018,Actors,@jessicaalba,Signed 100+ copies of my July InStyle and I'm going to pop them into Honest bundles soon. Watch to see how I answer… https://t.co/euZhqz6jSf +06/12/2018,Actors,@jessicaalba,Haven showing off her sweet moves for her mama @instylemagazine #momlife #entrepreneurlife #flossin #haviepie… https://t.co/YIiMSbnbfE +06/12/2018,Actors,@jessicaalba,Haven showing off her sweet moves for her mama… https://t.co/cUzpPuldY6 +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they… https://t.co/raxt3FHBn2 +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they… https://t.co/6opFhpYQis +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they know… https://t.co/NBiD6O1F5N +06/08/2018,Actors,@jessicaalba,#fbf Thx landmarkhk for a great forum discussion… https://t.co/S337NUmB09 +06/07/2018,Actors,@jessicaalba,RT @wwd: .@jessicaalba’s the @Honest Company just landed a $200 million investment — and @Honest_Beauty is expanding to Europe for the firs… +06/07/2018,Actors,@jessicaalba,"RT @SuperSoulSunday: In an interview with @AlexBanayan, @JessicaAlba says why you should stop comparing yourself to others and embrace your…" +06/05/2018,Actors,@jessicaalba,We had a great chat #womenrulesummit @politico… https://t.co/2I1o37mGU1 +06/01/2018,Actors,@jessicaalba,"Hello @LandmarkHK , thanks for the warm welcome! +I will be sharing my journey as an entrepreneur, advocate & mothe… https://t.co/0qd6DgbzFg" +05/31/2018,Actors,@jessicaalba,"RT @InStyle: .@JessicaAlba on her TV comeback, breast pumping on set, and her biggest parenting mistake. https://t.co/Tv3pkQx2Yp" +05/30/2018,Actors,@jessicaalba,So excited about this partnership! @Honest_Beauty will be in EU! https://t.co/9WiQPI41mT +05/22/2018,Actors,@jessicaalba,My sweet baby Hayes and his amma helped me reveal our new summer diaper collection! My babe is going to live in the… https://t.co/mi1wkzQE3r +05/13/2018,Actors,@jessicaalba,Love this mother daughter duo!!!! Happy Mother’s Day! https://t.co/Qm0kxaCJYd +05/12/2018,Actors,@jessicaalba,@chrissyteigen @TheBabyGuyNYC All the time +05/08/2018,Actors,@jessicaalba,Thank you to @Delta for flying in all of the members of the @Baby2Baby National Network for our 4th Annual Summit!… https://t.co/YXtUOEYnut +05/04/2018,Actors,@jessicaalba,"Went to postmate lunch, saw the cinco de mayo menu, ended up ordering for the whole office https://t.co/qghQq2OjHa" +04/23/2018,Actors,@jessicaalba,https://t.co/xYO2Ru7ye4 https://t.co/i0p20gEe9q +04/10/2018,Actors,@jessicaalba,"On average, women are paid 20% less than men—and Black women and Latinas are paid even less. + +#20PercentCounts on… https://t.co/9ZIk8MO90d" +04/10/2018,Actors,@jessicaalba,Ever thought about what you’d do with 20% more pay? @LeanInOrg asked women just that. Check out their answers in th… https://t.co/LzVaypUxo6 +04/03/2018,Actors,@jessicaalba,@itsgabrielleu and I loved teaming up 👯‍♀️🚔 to shoot this pilot 🎬 for @BRUCKHEIMERJB… https://t.co/WpM2yM1r2o +03/28/2018,Actors,@jessicaalba,RT @itsgabrielleu: We ride together. We thrive together. We lip synch Timbaland & Magoo together. 💃🏽💃🏾 @jessicaalba #McKenna & #Syd #IssaPi… +03/03/2018,Actors,@jessicaalba,RT @THR: .@JessicaAlba & @ItsGabrielleU are teaming up for NBC's 'Bad Boys' spinoff https://t.co/uf2ck2DPLw https://t.co/DAHORvumk4 +02/04/2018,Actors,@jessicaalba,"Can't. handle. the. cuteness. Who's winning? My team that got to play with puppies and babies all morning,... https://t.co/kwEJf04Fu5" +02/01/2018,Actors,@jessicaalba,"RT @shondarhimes: Okay. Entertainment industry, time to stop using the phrases ""Smart Strong Women"" and ""Strong Female Leads"". There are…" +02/01/2018,Actors,@jessicaalba,"RT @Honest_Beauty: Q&A: What’s The Best Way To Winterize Hair? We went to @jenatkinhair, jetsetting celebrity hair stylist, for her take on…" +01/29/2018,Actors,@jessicaalba,RT @Honest_Beauty: Leave-in conditioner is the foundation for great hairstyling; it's the first product that should touch your hair once it… +01/16/2018,Actors,@jessicaalba,"Before baby #3 was born, we made sure to declutter--it's so important these days since it seems like we're... https://t.co/i8GuwkwmdJ" +01/04/2018,Actors,@jessicaalba,https://t.co/yyaUhal7JY +01/02/2018,Actors,@jessicaalba,Happy New Year! -our little NYE angel baby Hayes Alba Warren born 12/31/17 -His sisters are obsessed with him.... https://t.co/QSEzLgpQoq +12/28/2017,Actors,@jessicaalba,Only 7 days to build!? This is crazy!! https://t.co/k26D9JkGxG +12/22/2017,Actors,@jessicaalba,Here’s my favorite look for the Holidays. I’m creature of habit and not gonna lie -I literally do this same look... https://t.co/9cupjyZKx9 +12/20/2017,Actors,@jessicaalba,"It's Netflix & chill season so add El Camino Christmas to your binge list. It's streaming now - happy holidays,... https://t.co/kQSb6QUKtx" +12/20/2017,Actors,@jessicaalba,It's @Netflix & chill season so add El Camino Christmas to your binge list. It's streaming now-… https://t.co/4bq14Mt6gc +12/06/2017,Actors,@jessicaalba,RT @baby2baby: Make an immediate impact on the victims of the Southern California fires using our registry. Baby2Baby 2 The Rescue has par… +12/06/2017,Actors,@jessicaalba,RT @Honest: You get better. https://t.co/dwKIzDRxTq +11/30/2017,Actors,@jessicaalba,Did an awesome live beauty tutorial with Christine! I did a holiday makeup look on her with Honest Beauty and she... https://t.co/LJzsprgjKx +11/22/2017,Actors,@jessicaalba,Not your average Christmas story... El Camino Christmas premieres on @Netflix on December 8th!… https://t.co/R0Yu3U6pFk +11/18/2017,Actors,@jessicaalba,Hey there I’m @nordstrom today! chk out #Nordstrom Insta Stories to get behind the scenes of my appearance! https://t.co/2LyUezKdIc +11/18/2017,Actors,@jessicaalba,Went to @babiesrus & did some registry picks w this beautiful first time mama Annie -Link in Bio to see what we... https://t.co/R2Q4Z91mvN +11/17/2017,Actors,@jessicaalba,"Jessica Alba is live at Babies""R""Us to help expecting mama Annie register for her little one arriving in January.... https://t.co/x9XC38vZev" +11/16/2017,Actors,@jessicaalba,RT @Honest_Beauty: Talk about picture perfect! @ChrissyTeigen is on the cover of @InStyle wearing an #HonestBeauty look designed by @DMart… +11/16/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""A monthly favorites post just couldn’t go without a product from Honest Beauty. All month long I've been using the Beyo…" +11/09/2017,Actors,@jessicaalba,Maria Shriver and Jessica Alba are live from The Honest Company as part of the ongoing series Architects of Change. https://t.co/J6ZSCURd9P +11/08/2017,Actors,@jessicaalba,"RT @RachaelRayShow: TODAY: Why is @jessicaalba cleaning one viewer’s house?! And can slime make your kitchen sparkle? + +Showtimes: https://t…" +11/08/2017,Actors,@jessicaalba,RT @Honest_Beauty: Founder @JessicaAlba looked glam & glowy on the @RachaelRayShow. Get the look details from @dmartnyc @JenniferYepez: htt… +11/08/2017,Actors,@jessicaalba,RT @BritandCo: Take the stress out of cleaning with @jessicaalba’s insanely easy tips. https://t.co/n88zVtbjKF https://t.co/ZdVGVaAB8h +11/07/2017,Actors,@jessicaalba,A study found that adults who spend more than four hours in front of a computer every day increase their risk of... https://t.co/3A75QI2P0a +11/01/2017,Actors,@jessicaalba,"I just revealed The Honest Company's newest diaper prints for winter! Honor and Havie were 2 of my little elves,... https://t.co/TlknY0VfQ6" +10/30/2017,Actors,@jessicaalba,Check out some tips on how to fall asleep faster on this week's Health Hacks. Comment 😴😴 if you find it hard to... https://t.co/3Y9ZzCsQxp +10/29/2017,Actors,@jessicaalba,A few of our #halloweencostumes w @kellysawyer. Gonna nap to try to motivate for tonight -I’m so pregnant and... https://t.co/tZhDc8hETg +10/27/2017,Actors,@jessicaalba,Had a major pinch me moment visiting @goodhousekeeping HQ in #NYC -So incredibly proud our @honest hero cleaning... https://t.co/9wzawq8fAa +10/26/2017,Actors,@jessicaalba,A little snippet from my LIVE store visit @buybuyBABY seeing our ✨new @Honest cleaning launch! https://t.co/aVf1hAzL8N +10/26/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""So glad I got my hands on this. It is super pigmented and actually shows on my skin tone."" - Instagrammer /eco.glow htt…" +10/26/2017,Actors,@jessicaalba,Below is my first LIVE store visit to buybuy BABY since our new The Honest Company cleaning launch! And to see... https://t.co/H4a4hjiI0o +10/25/2017,Actors,@jessicaalba,@cashwarren and I couldn’t be more thrilled to announce... 👶💙 #officiallyoutnumbered #babyboy #cantwaittospoilhim... https://t.co/l5FExYcjwx +10/25/2017,Actors,@jessicaalba,"RT @FastCompany: ""Having diversity of thought allows you to up your game."" @jessicaalba on supporting women in the workplace at #FCFestival…" +10/25/2017,Actors,@jessicaalba,Proud of my ❤️ @cash_warren on his @pairofthieves event tonight! Xo check out my stories to see all the fun! https://t.co/5wyYUkT3cV +10/24/2017,Actors,@jessicaalba,Dropping knowledge bombs with Health Hacks today. Find out the real reasons your body does weird things like... https://t.co/ufVTslxjuQ +10/23/2017,Actors,@jessicaalba,"Weekend w mah babe -happy to be home, if only for a weekend. Date nights w our kiddos -soccer game and pumpkin... https://t.co/ozZqw81qUF" +10/19/2017,Actors,@jessicaalba,#tbt UK 🇬🇧 premieres #fantasticfour #valentinesday #londonmemories🇬🇧❤️ +10/19/2017,Actors,@jessicaalba,#tbt UK 🇬🇧 premieres #fantasticfour #valentinesday #memories❤ +10/19/2017,Actors,@jessicaalba,RT @Honest_Beauty: Celeb makeup artist Jillian Gregory is back to share 3 glossy ways to perfect your pout: https://t.co/K19AdOVGtc https:/… +10/18/2017,Actors,@jessicaalba,Duuuuude!!! Our new @honest cleaning line got the most legit @goodhousekeeping seal!!! My mission when I started... https://t.co/JEW0l59sdt +10/17/2017,Actors,@jessicaalba,Checking out a Diaper plant -really 👍🏽! @honest #entrepreneurlife #thehonestlife #worktrip —� as an 18 year old... https://t.co/idJl7QAXo3 +10/16/2017,Actors,@jessicaalba,"Talking about preparing the perfect work lunch with Health Hacks. It’ll save you time, $$, and make you feel... https://t.co/DTC4QmuDlg" +10/13/2017,Actors,@jessicaalba,Clutter sucks. Save time ⏰ and money 💵 with these tips to decluttering and organizing your life! https://t.co/JpS9aOPtlk +10/13/2017,Actors,@jessicaalba,#fbf being preggers w Honor then Havie Pie -I couldn’t resist w the last one 🤦🏽‍♀️🤣😝 +10/10/2017,Actors,@jessicaalba,Christopher Gavigan & I talked all about our brand new cleaning line and the early days of The Honest Company -... https://t.co/nk8es5qE6n +10/09/2017,Actors,@jessicaalba,Clutter sucks--Let's clean up our lives with these tips and tricks on this episode of Health Hacks. https://t.co/f8QpMhQ7nC +10/07/2017,Actors,@jessicaalba,#fbf #pfw @maisonvalentino +10/05/2017,Actors,@jessicaalba,#tbt to @honest_beauty Haircare launch -available exclusively @ultabeauty! Hey it now ladies! And our moisture... https://t.co/4NItVbb8ab +10/04/2017,Actors,@jessicaalba,Let's talk about what's really in your food on this episode of Health Hacks. Did you know that processed foods... https://t.co/r9f3ninNsq +10/03/2017,Actors,@jessicaalba,#VegasStrong https://t.co/B78zUHIIeW +10/03/2017,Actors,@jessicaalba,Regardless of your political views common sense gun laws makes sense for the safety of every American. https://t.co/2ejW4pBkrG +09/29/2017,Actors,@jessicaalba,#friyay https://t.co/9tm1m8MOuc +09/27/2017,Actors,@jessicaalba,RT @Honest: Honest Multi-Surface Cleaner is new & improved with 50% more cleaning power than our original Multi-Surface Cleaner: https://t.… +09/26/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Adult acne is a cruel joke."" Read on as @Allure_magazine reviews our Younger + Clearer™ Line: https://t.co/3XP1U4V5qQ h…" +09/22/2017,Actors,@jessicaalba,My Momma Cathy Alba and I gave everyone a sneak peek at our new & improved Cleaning Collection! https://t.co/yIm7WcB2ND +09/21/2017,Actors,@jessicaalba,I curated a bunch of stuff I love @honest HQ for my work fam and friends -great finds and great deals! Thx... https://t.co/w41SRSQOHw +09/19/2017,Actors,@jessicaalba,Pickles...anything sour...bacon...my cravings are a hot mess! ATTN: and I are talking about the nutrition you... https://t.co/pw5Q5AQf6y +09/18/2017,Actors,@jessicaalba,Take your beauty routine in your own hands w @honest_beauty #YongerAndClearer +09/18/2017,Actors,@jessicaalba,RT @Honest_Beauty: Get that glow! Founder @JessicaAlba gave expecting #HonestBeauty mamas glowy makeovers. Watch the full tutorials: https:… +09/16/2017,Actors,@jessicaalba,@chrissyteigen Awwwwwwkward😳 +09/14/2017,Actors,@jessicaalba,🤰🏽🙄👊🏽 https://t.co/uKreLfJ0HY +09/14/2017,Actors,@jessicaalba,Does pregnancy have you glowing or wondering what everyone was talking about? Jessica Alba is sharing her tips to... https://t.co/oFIcOYNB5q +09/14/2017,Actors,@jessicaalba,Ummm -yeah we do! https://t.co/CeyoMeNavZ +09/13/2017,Actors,@jessicaalba,@franklinleonard Lol +09/13/2017,Actors,@jessicaalba,"RT @Honest_Beauty: Score the details of Founder @jessicaalba’s #NYFW look, courtesy of glam duo @kate_makeup and @Jennifer__Yepez https://t…" +09/13/2017,Actors,@jessicaalba,ATTN: has teamed up with the Hand in Hand Benefit and is live streaming the event. Turn the volume up and let's... https://t.co/f7Rvj2narx +09/11/2017,Actors,@jessicaalba,"Happy Monday, peeps! In case you're feeling the effects of the weekend, we're highlighting the common myths on... https://t.co/V2zuBjuuWT" +09/09/2017,Actors,@jessicaalba,Lol https://t.co/eGLoDsuNoQ +09/09/2017,Actors,@jessicaalba,"RT @Honest: We collaborated with Honest Mom & photographer, Julie Holder for our Fall Diaper Collection. Follow their journey: https://t.co…" +09/08/2017,Actors,@jessicaalba,Tune into @livekellyandryan today! Head over to @honest_beauty to get the beauty breakdown -I took over... https://t.co/j9hjLPvVVQ +09/07/2017,Actors,@jessicaalba,Smooches from NYC -gonna chk out some bebé 👶🏽shops today https://t.co/7jls04jQyR +09/04/2017,Actors,@jessicaalba,RT @Honest_Beauty: #HonestBeauty @JessicaAlba rocking that red lip like it's nobody's business 🍓💋 | (Glam + Photo via Kira Nasrat) https://… +09/04/2017,Actors,@jessicaalba,Check out my story to see what goes in my favorite morning smoothie @zicococonut #banana #gardenofliferaw protein... https://t.co/YBgifMAoW4 +09/02/2017,Actors,@jessicaalba,"RT @Honest: @JessicaAlba threw a baby shower for her friend, Jen, who is pregnant with a baby girl! Jessica’s 5 👶 shower tips: https://t.co…" +09/02/2017,Actors,@jessicaalba,RT @Honest: Honest https://t.co/kWWDAYZuhj +09/02/2017,Actors,@jessicaalba,RT @Honest_Beauty: When you wake up to the Friday before a long weekend. #Friyay (Photo via Instagrammer /muaxsally) https://t.co/cNyfEemqW… +09/01/2017,Actors,@jessicaalba,Had a special guest @chefmarcela @honest today! ❤️Love love love ❤️ her and her cookbooks and her adorable... https://t.co/7L5vXJfxIX +09/01/2017,Actors,@jessicaalba,Teamed up with ATTN: to discuss health hacks. Let's discuss portion control and why Americans are putting way too... https://t.co/kJnnEHPYwF +08/30/2017,Actors,@jessicaalba,I couldn't be more excited to introduce my new skincare line from Honest Beauty!!!! Breakthrough formulas! Clean... https://t.co/ETJ8iMX9Z4 +08/29/2017,Actors,@jessicaalba,Take your routine into your own hands w @honest_beauty #youngerandclearer #ethicalbeauty #cleanbeautythatworks #honestbeauty +08/28/2017,Actors,@jessicaalba,RT @people: Inside Jessica Alba’s Mystical Unicorn-Themed Birthday Bash for Daughter Haven: ‘Any Excuse to Throw a Fun Party!’ https://t.co… +08/27/2017,Actors,@jessicaalba,That was my favorite fight in a minute👊🏽 +08/27/2017,Actors,@jessicaalba,It's going down #MayweatherVsMcGregor for the #MoneyBelt https://t.co/f33rwYEFd0 +08/27/2017,Actors,@jessicaalba,#MayweathervMcgregor @ddlovato https://t.co/PNWRECGnj5 +08/27/2017,Actors,@jessicaalba,Blue furrrrrr #GervontaDavis https://t.co/xiMNRDcwzK +08/26/2017,Actors,@jessicaalba,#happybirthday to my -fun- loyal-fearless-free spirit -always an optimist- loves rituals- stylish- travel buddy... https://t.co/8baMq7GKoh +08/25/2017,Actors,@jessicaalba,RT @Honest: Honest https://t.co/ehNEHuUIno +08/25/2017,Actors,@jessicaalba,RT @Honest: The greatest adventure.❤️ https://t.co/Lr1dKzC4rc https://t.co/gGeDv09K8Q +08/25/2017,Actors,@jessicaalba,Super excited about our new Fall Diaper Collection! Designed by my homegirls Emily Current & Meritt Elliott. From... https://t.co/JNQY9Lpghz +08/25/2017,Actors,@jessicaalba,RT @byrdiebeauty: Water intoxication is real—never drink more than this amount: https://t.co/mEARBSXGvN +08/25/2017,Actors,@jessicaalba,RT @goodhealth: 7 super hydrating foods https://t.co/TKX4tcOZ4d +08/25/2017,Actors,@jessicaalba,I can relate to most of these🤰🏽can you? https://t.co/amCLIEj1Vi +08/22/2017,Actors,@jessicaalba,Have you ever faced doubters or folks who thought you could never accomplish your dreams? I did--- lots! Below is... https://t.co/VLuAqmTdnl +08/22/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Hopefully, you’re opening your eyes up to what is possible."" Founder @jessicaalba gets honest with @Cosmopolitan: https…" +08/20/2017,Actors,@jessicaalba,RT @Honest_Beauty: Grabbing some goodies at @Target this weekend? Don't forget to take a walk down the beauty aisle. | rt @LushCosmo https:… +08/18/2017,Actors,@jessicaalba,RT @Honest: Today (#NationalNonprofitDay) we're celebrating our 10 millionth diaper donated! Read about our work w/ @Baby2Baby: https://t.c… +08/17/2017,Actors,@jessicaalba,"RT @Honest_Beauty: Super smart, super strong, super kind, super loyal... https://t.co/7o4M15GjOC" +08/17/2017,Actors,@jessicaalba,W my baby daddy @cash_warren #hamilton last night in LA! It was as moving and powerful as ever. Thank you... https://t.co/8CztsEORKQ +08/16/2017,Actors,@jessicaalba,RT @attn: White supremacists are responsible for TWICE as many terrorist attacks as Islamic extremists in America. https://t.co/2SLKL2QlBc +08/16/2017,Actors,@jessicaalba,RT @attn: Injustice anywhere is a threat to justice everywhere. -- Martin Luther King Jr. +08/16/2017,Actors,@jessicaalba,RT @Honest_Beauty: A pop of color on the lip is always a good idea. @jessicaalba is wearing Coral Kiss.💄 📷:: @KiraNasrat 💁: Chad Wood. htt… +08/14/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Honestly cannot live without #HonestBeauty!"" - via Instagrammer /debbie_physed (Read more of her review: https://t.co/X…" +08/13/2017,Actors,@jessicaalba,"My sweet baby girl Havie turns 6 today. 🌈🦄🎂 feeling so blessed to be her momma 🙏🏽 Her cuddles, smooches and laughte… https://t.co/HzKqbTe6Kz" +08/13/2017,Actors,@jessicaalba,"My sweet, cuddly, hilarious Havie Pie turns 6 today! #happybirthday my angel. I love you so much! You sweeten... https://t.co/hm8GX95ty0" +08/13/2017,Actors,@jessicaalba,"RT @womensmarch: We are a movement guided by Dr. King's vision of the Beloved Community. + +Love and trust will triumph over fear and hatred.…" +08/13/2017,Actors,@jessicaalba,"RT @womensmarch: Today we remember Heather Heyer, the 32-year-old woman murdered in #Charlottesville. And we commit to continuing the strug…" +08/09/2017,Actors,@jessicaalba,@SamsungTV @DailyMailTech I'm obsessed w this -great job @samsungtv +08/09/2017,Actors,@jessicaalba,RT @baby2baby: So thrilled to be featured in @THR's Philanthropy issue! Check it out on stands now! https://t.co/1hvVm1Pj8J +08/08/2017,Actors,@jessicaalba,I'm obsessed w antiques -always like to mix old and new. https://t.co/EIrjYoV890 +08/08/2017,Actors,@jessicaalba,Or this one @LaCornue https://t.co/KzLY4VG2UV +08/08/2017,Actors,@jessicaalba,Dope -thx 4 these https://t.co/Q0J5fAwfa2 +08/08/2017,Actors,@jessicaalba,What do you think of #IlvesMajestic oven range? https://t.co/QmDmL8gCcA +08/08/2017,Actors,@jessicaalba,"I'm remodeling my new house -looking for great appliances, hardware, materials & furniture companies. As Eco as possible. Any suggestions?" +08/05/2017,Actors,@jessicaalba,Can't wait for this collection to launch in a few weeks! Loved collaborating with Emily Current & Meritt Elliott... https://t.co/kyHUiKPRW6 +08/05/2017,Actors,@jessicaalba,We had an awesome day celebrating #HonestXTheGreat Diaper collaboration to benefit @baby2baby @honest... https://t.co/01f43LIRYa +08/04/2017,Actors,@jessicaalba,Shenanigans @fallontonight #fbf -chk out the show tonight folks! +08/04/2017,Actors,@jessicaalba,RT @Honest_Beauty: Honest Beauty https://t.co/oVUqH4aTwq +08/03/2017,Actors,@jessicaalba,❤️✨❤️ this is so sweet https://t.co/1VzhCCYWTu +08/01/2017,Actors,@jessicaalba,It gets so real on this episode of @planetoftheapps https://t.co/84oKuOk9Lo +07/29/2017,Actors,@jessicaalba,My fave color for the summer ☀️@honest_beauty #sheercoralkiss💋 perfect daytime red 💄link in bio to shop! #nationallipstickday +07/28/2017,Actors,@jessicaalba,I had an amazing time speaking at the American Express OPEN Success Makers Workshop yesterday. Check it out!... https://t.co/6Lq27wJ3Gy +07/27/2017,Actors,@jessicaalba,I'll be live on Facebook at @AmexOPEN Success Makers Workshop at noon PST! Tune in: https://t.co/t1YazmKR7u #AmexAmbassador #NextStartsHere +07/27/2017,Actors,@jessicaalba,"Our sweet Sid passed this morning 😔she lived a long life, eating everything she could sniff out, she was my OG... https://t.co/y3NrePxBqd" +07/22/2017,Actors,@jessicaalba,Want to get yo locks on point? Do you know how to properly cleanse and condition? Watch the vid to find out below! https://t.co/gJsuvVdHKA +07/22/2017,Actors,@jessicaalba,#AboutLastNight 🌺 w Shani Darden Anthony Ferrari Cash Warren +07/20/2017,Actors,@jessicaalba,"RT @Honest: I'm a parent, what's your superpower? https://t.co/IQvDvzhWaz" +07/19/2017,Actors,@jessicaalba,Check out Byrdie's list of 7 Honest Beauty must-haves including my fave organic facial oil I use every. single.... https://t.co/UKAvPhrvrF +07/19/2017,Actors,@jessicaalba,Check out @byrdiebeauty's list of top 7 must-have honest_beauty products including my fave… https://t.co/U5a9LRQD2O +07/19/2017,Actors,@jessicaalba,"Episode 6 of Planet of the Apps features Mend, the app that is your ""personal trainer for heartbreak"" featuring... https://t.co/tilg3Lf36h" +07/18/2017,Actors,@jessicaalba,Summer skin tutorial w the most beautiful Elizabeth Mathis aka Lizzy https://t.co/eTnXMhDXEK +07/18/2017,Actors,@jessicaalba,RT @letsmend: Tonight our founder @ellenhuerta pitches Mend on @planetoftheapps! See what happens on @applemusic 6pm PT/9pm PT #planetofthe… +07/18/2017,Actors,@jessicaalba,"Check out Stop, Breathe & Think for guided meditation and mindfulness at your fingertips on Planet of the Apps! https://t.co/WySEYfXIZd" +07/18/2017,Actors,@jessicaalba,"RT @planetoftheapps: Mending heartbreak, making friends, and mastering AR robots. New episode drops tonight, only on @AppleMusic. https://t…" +07/17/2017,Actors,@jessicaalba,@cash_warren and I are officially going to be outnumbered #babyonboard #herewegoagain 👶🏼🤰🏽#blessed🙏 https://t.co/U8ztWcPz7H +07/16/2017,Actors,@jessicaalba,GORGEOUS hair by @Jennifer__Yepez using honest_beauty #honestbeauty 😍😍💯#Repost @Jennifer__Yepez… https://t.co/EbuXx4ios4 +07/15/2017,Actors,@jessicaalba,🍍🌺🏄🌴🐚 Thx People! https://t.co/mCKBFc5Uxz +07/15/2017,Actors,@jessicaalba,🍍🌺🏄🌴🐚 Thx @people - link in bio! https://t.co/bRnkG4YTQo +07/13/2017,Actors,@jessicaalba,Woohoo @honest_beauty in #NYC #timesquare #honestbeauty https://t.co/RqHx1b45vv +07/11/2017,Actors,@jessicaalba,https://t.co/Krg4ZRquLT +07/11/2017,Actors,@jessicaalba,I ❤️ Amazon! https://t.co/jI8TDSJaRv +07/05/2017,Actors,@jessicaalba,It's my favorite styling product for summer! ☀️ beach hair for dayz https://t.co/eKKlbCUMU2 +07/05/2017,Actors,@jessicaalba,#4thofjulyweekend🇺🇸💥🇺🇸 +06/30/2017,Actors,@jessicaalba,Me -right now. 🙄 https://t.co/4jqYu1Unjm +06/29/2017,Actors,@jessicaalba,#Goals https://t.co/5rSYT6i6x2 +06/29/2017,Actors,@jessicaalba,This is cray https://t.co/dy0md9Rsz3 +06/27/2017,Actors,@jessicaalba,I'm sharing my fave summer look featuring the Honest Beauty Lip Crayon in Sheer Chestnut Kiss. Now available in... https://t.co/GgSChSccJT +06/27/2017,Actors,@jessicaalba,#word #jenniferaniston #honestbeauty https://t.co/DjJEiH6tXo +06/27/2017,Actors,@jessicaalba,Obsessed with Byrdie and our Honest Beauty Allure best of beauty award winner lip crayon! https://t.co/cYc6GgSIbZ +06/25/2017,Actors,@jessicaalba,#summer is here! ☀️ get yo glow on! ✨ featured on @thezoereport @honest_beauty #honestbeauty available @target https://t.co/tLpg3cmlgw +06/23/2017,Actors,@jessicaalba,"#Repost @honest_beauty @nadiyakhan used our Honestly Polished Dry Conditioner, Organic Facial Oil, Everything... https://t.co/68TYpCe1lz" +06/21/2017,Actors,@jessicaalba,"Episode 3 of Planet of the Apps is LIVE, people! Watch Kemar define FLIP as ""eBay for the Snapchat generation"" on... https://t.co/a1qqHpdGuI" +06/21/2017,Actors,@jessicaalba,"""We're the eBay for the Snapchat generation"" @justflip https://t.co/VqWzgNbm2C" +06/20/2017,Actors,@jessicaalba,Loved celebrating our @bewellbykelly new book on nutrition #bodylove @mollybsims @bewellbykelly @chelsea https://t.co/xREEcDL2DB +06/20/2017,Actors,@jessicaalba,This is my favorite beauty look! Elizabeth Mathis breaks it down Live! https://t.co/YpiEiJTm5H +06/19/2017,Actors,@jessicaalba,Happy Fathers Day to my papasito #MarkAlba and my grampers @JoséAlba love you both so much! #blessed #grateful https://t.co/T4nxBWhRt0 +06/18/2017,Actors,@jessicaalba,Had an awesome afternoon w the fam! So grateful my Grampers n Grammers made it out today! Love my family so much!... https://t.co/ZT2nZIFUvc +06/17/2017,Actors,@jessicaalba,Super proud of my @CashWarren @PairofThieves was featured on @TODAYshow chk out all these #FathersDay gift ideas!… https://t.co/A6PWPQJlQh +06/15/2017,Actors,@jessicaalba,Yep-that was fun! @garyvee @iamwill @planetoftheapps #PlanetOftheApps https://t.co/tvBWqpnibI +06/15/2017,Actors,@jessicaalba,Stella Luna ❤️ https://t.co/CPVlgvk6yV +06/15/2017,Actors,@jessicaalba,"RT @TheView: THIS MORNING ON @THEVIEW: Superstar entrepreneurs @jessicaalba @iamwill and @garyvee hit the table to talk their new show, #pl…" +06/15/2017,Actors,@jessicaalba,https://t.co/ZkGmHR3APS +06/15/2017,Actors,@jessicaalba,👍🏽 https://t.co/qbbtjHHIhN +06/15/2017,Actors,@jessicaalba,Thx dude https://t.co/zJDpMQj2Ah +06/15/2017,Actors,@jessicaalba,9am https://t.co/3jzwWYaxap +06/15/2017,Actors,@jessicaalba,Whattup! I'm gonna be w my @planetoftheapps peoples all day! @garyvee @iamwill @GwynethPaltrow -shoot me biz q? Or… https://t.co/dW1gTvL25M +06/15/2017,Actors,@jessicaalba,Head over to @glamourmag Insta to see how I get ready for a press day @planetoftheapps w @honest_beauty... https://t.co/lLc9ZXdXJp +06/14/2017,Actors,@jessicaalba,#planetoftheapps new episode available now! Link in bio @planetoftheapps @itunes @applemusic https://t.co/kOI6DCTyIk +06/13/2017,Actors,@jessicaalba,Loved having my homegirls support me tonight @planetoftheapps launch party! #planetoftheapps https://t.co/LjTtbiwCNP +06/13/2017,Actors,@jessicaalba,💋#glams by @kiranasrat n @chadwoodhair headed to @applemusic premiere party for @planetoftheapps https://t.co/QrOgYCjKpL +06/12/2017,Actors,@jessicaalba,"#Repost @ariannahuff +Born on this day in 1929, her wisdom lives on... https://t.co/9JqHG5y6UR" +06/11/2017,Actors,@jessicaalba,#word #weekends 🍷🥂🌹 https://t.co/HY59jr7EFc +06/09/2017,Actors,@jessicaalba,Loved stopping by @honest @nordstrom 🙌🏽 https://t.co/KN6QL1nVwZ +06/09/2017,Actors,@jessicaalba,RT @LinkedIn: .@jessicaalba discusses why challenges are opportunities and risk taking is a necessity: https://t.co/HKE5d2hsTz #TheWayIn +06/22/2018,Actors,@EllenPompeo,"RT @MykeCole: I was activated and deployed to the gulf for Deepwater Horizon. We killed ourselves out there, up to our armpits in toxic che…" +06/21/2018,Actors,@EllenPompeo,RT @OurOcean: One step closer to #TrashFreeSeas thanks to these amazing fans in Japan at the #WorldCup https://t.co/zARZvzUELZ +06/21/2018,Actors,@EllenPompeo,"RT @thedailybeast: MVM, Inc. has a contract with ICE to provide “unaccompanied alien children (UAC) transportation services” worth $162 mil…" +06/21/2018,Actors,@EllenPompeo,RT @PetsforPatriots: We know our friend @EllenPompeo has a soft spot for animals. And with Lilith having just one eye she really needs a sp… +06/20/2018,Actors,@EllenPompeo,@magicpompeo ciao Bianca sorry I was unable to speak! I was working. I hope you enjoyed the event and found it informative. +06/20/2018,Actors,@EllenPompeo,Love this @MsSarahPaulson https://t.co/a5nOsQaSkL +06/20/2018,Actors,@EllenPompeo,Thank you to Richard Edelman and the whole team at @EdelmanPR for inviting me to Cannes to participate in the conve… https://t.co/1f16eJS7kd +06/20/2018,Actors,@EllenPompeo,"RT @peterdaou: If Barack Obama, Hillary Clinton, Bernie Sanders, former presidents and first ladies and the entire Dem leadership stood sid…" +06/20/2018,Actors,@EllenPompeo,Of course it does.. many people are profiting. THAT is the reason this is happening. Follow the money.… https://t.co/gnj8TYcm2A +06/20/2018,Actors,@EllenPompeo,RT @TopherSpiro: “Chain link partitions” and “tender age shelters” as a euphemism for baby jails is something George Orwell could never hav… +06/20/2018,Actors,@EllenPompeo,RT @RuPaul: How the Koch Brothers Are Killing Public Transit Projects Around the Country https://t.co/tW2Z0YhS4Z https://t.co/NCAKE1L1mj +06/18/2018,Actors,@EllenPompeo,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/15/2018,Actors,@EllenPompeo,RT @tedstgodard: This got the cartoonist fired. Share it. https://t.co/6ik1HjgVAW +06/15/2018,Actors,@EllenPompeo,"RT @SenFeinstein: Kids are not pawns to be used as an immigration deterrent. Families belong together, it’s that simple. This is not about…" +06/15/2018,Actors,@EllenPompeo,"RT @slpng_giants: This is a concentration camp for children. + +Who is the tent manufacturer willing to profit from this? + +Who is the bed man…" +06/15/2018,Actors,@EllenPompeo,RT @TheRepProject: So glad Alicia Keys is leading this! We need equality in EVERY industry! https://t.co/VqIrH4dAzN +06/15/2018,Actors,@EllenPompeo,@RuPaul 😍 https://t.co/Iama2Pa3M4 +06/15/2018,Actors,@EllenPompeo,RT @KristaVernoff: Please watch this. Please retweet it. Please make the calls. 🙏🏼🙏🏼🙏🏼 https://t.co/5rm2RNVKp4 +06/15/2018,Actors,@EllenPompeo,"RT @MaddowBlog: There's a reason Republicans badger, bully, and berate law enforcement. + +It works! https://t.co/ZaL5gvLZiR" +06/15/2018,Actors,@EllenPompeo,"RT @VictoriaMahoney: 1) #FollowTheMoney. +2) Track down precisely [who] is profiting from surge in #Immigration #DetentionCenters +3) Compa…" +06/14/2018,Actors,@EllenPompeo,RT @SenKamalaHarris: Let’s call this policy what it is: a human rights abuse being committed by the United States government. https://t.co/… +06/12/2018,Actors,@EllenPompeo,RT @KellyMcCreary: Please vote. Please help protect our access to voting. https://t.co/kRzTNGQNnT +06/12/2018,Actors,@EllenPompeo,"RT @davidhogg111: This is America, right now + +This is the % of African Americans not able to vote in just a few states. + +VA 21% + +FL 21%…" +06/08/2018,Actors,@EllenPompeo,RT @JuliaBradbury: Here's the @corona Wave of Waste in all it's glory.This is how much plastic is found along EVERY 2 MILE stretch of beach… +06/08/2018,Actors,@EllenPompeo,"RT @JaneGoodallInst: Single-use plastic has no place in our oceans and waterways, but as we live our lives, how do we cut our reliance? Whe…" +06/08/2018,Actors,@EllenPompeo,"RT @BarackObama: “Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us about food…" +06/08/2018,Actors,@EllenPompeo,"RT @MiaFarrow: Maybe we all wanted to hang out with him. He was that cool, fun, frank, insightful. He introduced us to distant lands and to…" +06/02/2018,Actors,@EllenPompeo,RT @NatGeo: Under the surface of paradise lies a tragic scene: a manta ray feeding on the plastic pollution surrounding it https://t.co/YXo… +06/01/2018,Actors,@EllenPompeo,"RT @VanJones68: CALIFORNIA: Please call @bill_brough and urge him to vote YES on #AB1940, a bill that would encourage people on parole to p…" +06/01/2018,Actors,@EllenPompeo,"RT @markchildress: The minute you stop supporting the man who grabs em by the p***y, I'll listen to your lecture about calling Ivanka a c**…" +06/01/2018,Actors,@EllenPompeo,"RT @thomas_violence: I love little cultural differences, like how Americans are super offended by the word cunt but here in Australia we're…" +05/31/2018,Actors,@EllenPompeo,RT @ira: Samantha Bee's joke is only drawing Roseanne comparisons because y'all are fucking idiots who let racists define what racism is or… +05/31/2018,Actors,@EllenPompeo,RT @latimes: Equating Samantha Bee's crudeness with Roseanne's outlandish tweets normalizes racism and anti-Semitism. https://t.co/pSybhigR… +05/31/2018,Actors,@EllenPompeo,RT @PlasticPollutes: What you can do to fight #plasticpollution https://t.co/MTFgtU9OHf +05/30/2018,Actors,@EllenPompeo,Last call to join me at a wildlife sanctuary! Enter now & you could also win a signed Grey’s script. GO:… https://t.co/gfsfSib4UY +05/30/2018,Actors,@EllenPompeo,edbyellen's photo https://t.co/o9Zuc2p3Lj +05/30/2018,Actors,@EllenPompeo,@merder But they need the love the most!! 😂😂😂#truth +05/30/2018,Actors,@EllenPompeo,@Tae_Finesse730 @threelilbirdsss If you don't like me stop calling me sis number one... number two of you don't lik… https://t.co/aAVIluUO8D +05/30/2018,Actors,@EllenPompeo,@threelilbirdsss @Tae_Finesse730 Actually I can take quite a lot now that you mention it...I've blocked a few reall… https://t.co/3QdippowMG +05/30/2018,Actors,@EllenPompeo,To be honest I didn't see it but yes people said it dealt with some important issues. Also with Channing at the he… https://t.co/qVQ8CbEU1x +05/30/2018,Actors,@EllenPompeo,"And the teaching moment begins with ""when someone shows you who they are.. believe them."" She is exactly who we th… https://t.co/GWoZHSmB0L" +05/30/2018,Actors,@EllenPompeo,@Tae_Finesse730 @khalariious No ...def not but don't underestimate the destructive power of a three year old when t… https://t.co/AZbtxw8D2D +05/24/2018,Actors,@EllenPompeo,"RT @nytimes: In Opinion + +The editorial board writes: ""Rather than show a little backbone themselves and support the right of athletes to pr…" +05/23/2018,Actors,@EllenPompeo,"RT @jfreewright: If the NFL thing was about the flag & anthem, you’d be outraged when Trump doesn’t hold a hand over his heart & botches th…" +05/23/2018,Actors,@EllenPompeo,"RT @HBR_Media: ""Obstacles will always be there, you just have to navigate them. You have to treat it like it's a minefield...Like you're a…" +05/22/2018,Actors,@EllenPompeo,Be there in 5 minutes!! https://t.co/iU0AfG1MAQ +05/22/2018,Actors,@EllenPompeo,The best opponent is one who underestimates you 😜 https://t.co/KjnE0Vrzmj +05/22/2018,Actors,@EllenPompeo,RT @SeaChampsSW: #WorldOceanDay is Friday June 08. We have resources to make it easy and fun for your school/group to celebrate! Start a co… +05/22/2018,Actors,@EllenPompeo,😂😂😂😓😓😓 https://t.co/MsyViQeUxj +05/22/2018,Actors,@EllenPompeo,"RT @TheEconomist: A searing reminder of how recently American slavery ended, and the depth of the pain it caused https://t.co/wiNmPHacrf" +05/22/2018,Actors,@EllenPompeo,RT @Seasaver: Human race just 0.01% of all life but has eradicated most other living things https://t.co/VXWxbU0kmQ #WorldBiodiversityDay +05/22/2018,Actors,@EllenPompeo,These girls are incredible 🌏 https://t.co/Tc9oG6bjYf +05/21/2018,Actors,@EllenPompeo,"RT @broadstrokesdes: Here's a glimpse of us working on the @IamSandraOh art for our latest t-shirt. You can grab one here: +https://t.co/JF…" +05/13/2018,Actors,@EllenPompeo,I love this...These girls are adorable ... and amazing hard working moms! #HappyMothersDay ❤️ https://t.co/1AeFKwMwer +05/11/2018,Actors,@EllenPompeo,Congratulations to the whole team on the season 2 pickup of @Station19 @JasonWGeorge @JainaLeeOrtiz @stacysmckee16 +05/11/2018,Actors,@EllenPompeo,RT @ELLEmagazine: Amal Clooney's Vanderbilt Graduation Speech Calls For Courage Above All https://t.co/zoPX24d7l4 +05/11/2018,Actors,@EllenPompeo,@ElenaBHilton Thank you so much @ElenaBHilton +05/11/2018,Actors,@EllenPompeo,RT @BrandiKand: #GreysAnatomy me watching greys tonight https://t.co/hkSai3VVfx +05/11/2018,Actors,@EllenPompeo,RT @JainaLeeOrtiz: Ready ready! Who’s ready to live tweet w me?!?? #Station19 +05/11/2018,Actors,@EllenPompeo,RT @KristaVernoff: Because then there is no TV show! #GreysAnatomy https://t.co/J3XnyZkWJo +05/11/2018,Actors,@EllenPompeo,Right back at you 💋 https://t.co/qJQyoTnKFY +05/11/2018,Actors,@EllenPompeo,@PhDiva3 @Kaywillsmith @IamSandraOh Oh no I have @IamSandraOh is the truth I love it +05/11/2018,Actors,@EllenPompeo,I don't know I think alcohol makes drama worse.. just saying https://t.co/zXZaiNhOJZ +05/11/2018,Actors,@EllenPompeo,@merthantrash I'm not watching I'm cooking dinner but trying to tweet with you guys before I have to go out +05/11/2018,Actors,@EllenPompeo,RT @JChambersOnline: It started off like a normal day and suddenly it's not 😭😭😭 #GreysAnatomy https://t.co/loY1PK5Add +05/10/2018,Actors,@EllenPompeo,Who said it is her farewell episode? You guys love making stuff up... you should write for the show! https://t.co/OwXUFoueJz +05/10/2018,Actors,@EllenPompeo,Yo @JainaLeeOrtiz you hear that??? https://t.co/zRtClL8P8u +05/10/2018,Actors,@EllenPompeo,Wait... only today? https://t.co/sqYAGqQ21c +05/10/2018,Actors,@EllenPompeo,This is what I love ...a warrior.. you are no victim 💥💥💥 https://t.co/71A06Tf5pO +05/10/2018,Actors,@EllenPompeo,I mean on a scale of 1 to 10 tonight's definitely a 12 😩 +05/10/2018,Actors,@EllenPompeo,Ok that's fair we definitely take it to another level.. but so do you guys!! https://t.co/daaOy6OfDg +05/10/2018,Actors,@EllenPompeo,But that's why they call them dramas right? It's not called a comedy.... https://t.co/kImLCQFLFR +05/10/2018,Actors,@EllenPompeo,@NicoleMonster23 @heyDejan Should I not have fun and engage with fans? Or should I be super shiny happy overly sinc… https://t.co/5S3EAPpFKf +05/10/2018,Actors,@EllenPompeo,@heyDejan No no that's not why I said that... she told me to shut the f up that wasn't nice +05/10/2018,Actors,@EllenPompeo,You need a hug boo? Or just some more followers?? 😜😜😜 #angryaintcute https://t.co/7tZdqhuFYL +05/10/2018,Actors,@EllenPompeo,I cant tonight! https://t.co/AJhkLpkghJ +05/10/2018,Actors,@EllenPompeo,I don't think any of us have ever denied it have we? It's literally what we've been doing for 14 years https://t.co/zgbqxNvXA7 +05/10/2018,Actors,@EllenPompeo,Not true https://t.co/4B3kM9A8Mt +05/10/2018,Actors,@EllenPompeo,I think @TraceeEllisRoss says it best... the truth with set you free... but first it will piss you off... 💯💯💯 +05/10/2018,Actors,@EllenPompeo,That's a real problem ...not our feelings of entitlement about a tv show +05/10/2018,Actors,@EllenPompeo,Of course you guys love it too.. but lets have some perspective it's just a tv show ...POC literally are not safe A… https://t.co/0tLlngnE6i +05/10/2018,Actors,@EllenPompeo,I am so sorry my heart breaks for you that #thisisamerica https://t.co/tEj2poGCPr +05/10/2018,Actors,@EllenPompeo,RT @KristaVernoff: Wow. @delta this is really deeply troubling. I hope EVERYONE READING THIS RETWEETS IT. https://t.co/190Cb1LvkZ +05/10/2018,Actors,@EllenPompeo,I'm not going to lie... it's a lot tonight...we are the best heartbreakers in the game but don't hate the player...… https://t.co/RRffXTj4PZ +05/10/2018,Actors,@EllenPompeo,"RT @ShaunKing: That is Anthony Wall, in prom clothes, being lifted off the ground and choked by a Warsaw County police officer @WaffleHouse…" +05/10/2018,Actors,@EllenPompeo,YES! https://t.co/cEdiY1rS7h +05/10/2018,Actors,@EllenPompeo,"RT @sarahdrew: It’s Grey’s Day and I’m feeling emotional... So let’s chat, ok? I’m gonna live tweet from 8-9pm EST and then I will post all…" +05/10/2018,Actors,@EllenPompeo,"RT @nkjemisin: Story updated with the harassing white student's name and history of harassment. I keep seeing people describe this as ""impl…" +05/10/2018,Actors,@EllenPompeo,"RT @adv_project: Black people are trying to live their lives in peace. Black folks deserve to nap, go to restaurants, get coffee, & stay at…" +05/10/2018,Actors,@EllenPompeo,I love her and this is painfully accurate https://t.co/R8B5zW9XwX +05/09/2018,Actors,@EllenPompeo,RT @iJesseWilliams: TONIGHT https://t.co/VrvKr6Ob7j +05/04/2018,Actors,@EllenPompeo,RT @JainaLeeOrtiz: So. Much. Drama. #Station19 +05/04/2018,Actors,@EllenPompeo,Oh now I get why you guys say you always cry +05/04/2018,Actors,@EllenPompeo,@iJesseWilliams was Mac n and directing? +05/04/2018,Actors,@EllenPompeo,@elldempeo At the moment it's me and a three year old 😂 +05/04/2018,Actors,@EllenPompeo,@7JustinChambers OMG +05/04/2018,Actors,@EllenPompeo,@m_merderlover Yes gotta support my guy +05/04/2018,Actors,@EllenPompeo,@iJesseWilliams these Alex and Joe scenes are gorgeous +05/04/2018,Actors,@EllenPompeo,Alex omg +05/04/2018,Actors,@EllenPompeo,Nice @iJesseWilliams the jolex scene ❤️💔😩 +05/04/2018,Actors,@EllenPompeo,And soon to be three wait for it +05/04/2018,Actors,@EllenPompeo,I love these two +05/04/2018,Actors,@EllenPompeo,Anyone want to watch @iJesseWilliams directorial debut with me????? +05/03/2018,Actors,@EllenPompeo,@iJesseWilliams ⭐️⭐️⭐️⭐️ https://t.co/p0T0vmNak3 +05/02/2018,Actors,@EllenPompeo,@younglivingeo #sponsored https://t.co/YpvuY5ITR4 +05/02/2018,Actors,@EllenPompeo,Hundreds of decisions everyday affect the health&happiness of https://t.co/B20W8FyXr2's so important to read labels… https://t.co/ea3HKcguXd +05/02/2018,Actors,@EllenPompeo,@EllenPompao_ @sarahdrew @JessicaCapshaw Love it!💋 +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique so take the last sips of that haterade and keep it moving.. buh bye 💋 +05/02/2018,Actors,@EllenPompeo,@Orsi24 Happy Anniversary 💋💋💋 +05/02/2018,Actors,@EllenPompeo,Thanks again to the team @younglivingeo and everyone who came out to support and spread the word about plant based products #YLEO #sponsored +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique you should also keep believing everything you read... hows that working out for you btw?? 😜😜😜 +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique @etnow Yeah hate to break it to you boo but you actually know nothing about what really goes on!! Big kiss 💋 +04/27/2018,Actors,@EllenPompeo,RT @PetsforPatriots: Maximus has spent more than 1/2 his life in a shelter + desperately needs a home. Loves to play and cuddle - the perf… +04/25/2018,Actors,@EllenPompeo,"RT @H2OOUnstoppable: SB1017 PASSED THE SENATE COMMITTEE! Ok California, let’s continue this momentum in banning drift nets, aka DeathNets!…" +04/25/2018,Actors,@EllenPompeo,RT @abbystern: Learned so much at @drkristifunk 's book launch for #BreastsTheOwnersManual and spoke to @EllenPompeo about how Dr. Funk ins… +04/24/2018,Actors,@EllenPompeo,Once again look how this white terrorist is able to walk into court to be judged... this is privilege poc are assas… https://t.co/tMcLqNIvhI +04/17/2018,Actors,@EllenPompeo,I love it tooo https://t.co/mgGn6oStFB +04/17/2018,Actors,@EllenPompeo,💯💯💯 https://t.co/x4C7YDl29i +04/17/2018,Actors,@EllenPompeo,RT @alana_pompeo: @EllenPompeo currently buckling down plans for the walk out & rally my friends and I planned during school this friday!!… +04/17/2018,Actors,@EllenPompeo,I can do it in 2... not easy https://t.co/xWr77RvFHz +04/17/2018,Actors,@EllenPompeo,@DaniellaScoleri Green juice +04/17/2018,Actors,@EllenPompeo,❤️❤️❤️ https://t.co/0P5Tbb8owB +04/17/2018,Actors,@EllenPompeo,Get in line 😂😂😂 https://t.co/IpL2fhGJO1 +04/17/2018,Actors,@EllenPompeo,The zoo is called @GreysABC 😂 https://t.co/vpgCizvOe2 +04/17/2018,Actors,@EllenPompeo,"RT @NonGMOProject: The novel pesticide is a combination of glyphosate and 2,4-D, to be sprayed over the top of corn, cotton, and soybeans t…" +04/17/2018,Actors,@EllenPompeo,It's so simple...I love @Trevornoah https://t.co/GdqPDvOjx5 +04/16/2018,Actors,@EllenPompeo,@Starbucks are you listening? https://t.co/EK8K7jQrtR +04/16/2018,Actors,@EllenPompeo,Mutual? @Starbucks how polite of you... oh the privilege ....and the protection of it at all costs is amazing https://t.co/rSzgylfrzY +04/16/2018,Actors,@EllenPompeo,"RT @RWPUSA: This isn't just a Starbucks issue. +Police procedures for making arrests need to be revised if a store manager's complaint about…" +04/14/2018,Actors,@EllenPompeo,This is amazing https://t.co/Mlr6YTLEyg +04/13/2018,Actors,@EllenPompeo,RT @itsjeaninemason: Thank you to @MedicalMeg & @PHDreamers who collaborated with @DefineAmerican to help make sure tonight's @GreysABC ep… +04/12/2018,Actors,@EllenPompeo,RT @Thirst4truth8: After the Miami Beach Gay Pride Parade Sunday 7:30PM-these 4individuals savagely beat a gay couple because they were hol… +04/09/2018,Actors,@EllenPompeo,@MattCarterMedia Thank You for this @MattCarterMedia I needed to hear this today 💋 +04/08/2018,Actors,@EllenPompeo,"RT @Gilman_Williams: . @EllenPompeo +8-year-old Kate wants to join you to help raise money for the Ellen DeGeneres Wildlife Fund! She and h…" +04/08/2018,Actors,@EllenPompeo,It isn't even hype though I've said it many times...she honestly takes every moment to another level https://t.co/7LxEb63e5Q +04/08/2018,Actors,@EllenPompeo,Ok I'm calm ...totally calm... except I'm not ...you guys @IamSandraOh does not mess around this is going to be b… https://t.co/xustW8sIkf +04/07/2018,Actors,@EllenPompeo,All of this cancer isn't coming from nowhere that's for damn sure... https://t.co/n9yCV9jygW +04/06/2018,Actors,@EllenPompeo,Lets be very clear about one thing... because you don't see it on social media does not mean it doesn't happen... https://t.co/rlqEiqIWTn +04/06/2018,Actors,@EllenPompeo,RT @foryoumadellenx: @EllenPompeo @IamSandraOh Really! @IamSandraOh is a super talented person! We look forward to see this great show her!… +04/06/2018,Actors,@EllenPompeo,💃💃💃 Yes.. please lets support @IamSandraOh I haven't even seen it but I know it's amazing because her talent takes… https://t.co/cxXhOCIqqN +04/06/2018,Actors,@EllenPompeo,This is a great article. @IamSandraOh talent is otherworldly. I was a huge fan of hers before Greys and I can't w… https://t.co/jZBJIpi4La +04/06/2018,Actors,@EllenPompeo,You know it was classic Greys....devastating with a side of absurdity 💔💔💔 https://t.co/KwEexPHSD1 +04/06/2018,Actors,@EllenPompeo,RT @AhmedBaba_: @AP A record number of newly-elected Congresswomen walking into the 2019 swearing in ceremony like https://t.co/IUhjKmv71r +04/06/2018,Actors,@EllenPompeo,"RT @Emma4Change: All our friends out there in LA, get ready 😎😎 https://t.co/5II6VdmLE4" +04/06/2018,Actors,@EllenPompeo,RT @GreysABC: Umm... #GreysAnatomy https://t.co/urKivF5TcM +03/31/2018,Actors,@EllenPompeo,This is fantastic thank you 💋💋💋 https://t.co/ttLn9N4W52 +03/31/2018,Actors,@EllenPompeo,Que???? Oh oh we get it April FOOLS https://t.co/XReOr1GkOU +03/31/2018,Actors,@EllenPompeo,"RT @dmvsredbonerebl: I REPEAT PASS IT ON, A BLACK COMPANY HELPING THOSE WITH CRIMINAL RECORDS GET JOBS OR START THEIR OWN BUSINESS BLESS TH…" +03/31/2018,Actors,@EllenPompeo,RT @Seasaver: What's newsworthy about this @TMZ is that the shark @VonMiller caught is an @IUCNRedList hammerhead that is highly likely to… +03/31/2018,Actors,@EllenPompeo,"RT @Seasaver: The treatment of this threatened hammerhead shark is appalling. IF it was released, it is unlikely to survive that ordeal. Wh…" +03/31/2018,Actors,@EllenPompeo,RT @cut_50: LAST CHANCE to grab one of these exclusive #Dignity campaign t-shirts (aka a #DIGNITEE 😉) - our @omaze campaign ends tonight!… +03/31/2018,Actors,@EllenPompeo,RT @rashadrobinson: Do NOT let this go unnoticed--Tennessee is out here criminalizing Black folks’ hair and profiting off their racist laws… +03/31/2018,Actors,@EllenPompeo,RT @NYTNational: A lawyer for the family said the findings proved that Mr. Clark could not have been moving in a threatening fashion toward… +03/31/2018,Actors,@EllenPompeo,RT @ABC: MAY I HAVE THIS DANCE? Veterinarians slow dance with puppies waking up from anesthesia after their surgeries. https://t.co/wPVp3sN… +03/31/2018,Actors,@EllenPompeo,RT @JoyAnnReid: Having not been prosecuted for killing Alton Sterling even after bodycam video shows him escalating the situation and displ… +03/31/2018,Actors,@EllenPompeo,RT @bbond: Devastating. https://t.co/S9Z3rnuoxO +03/31/2018,Actors,@EllenPompeo,"RT @MuslimIQ: Marjorie Stoneman Douglas High is 25% students of color. + +We've barely seen any students of color given the time of day from…" +03/30/2018,Actors,@EllenPompeo,RT @iJesseWilliams: All jokes aside 😂 our folk gotta stay on track. Don’t get finessed outchyer funds & don’t get pushed off your path. Com… +03/30/2018,Actors,@EllenPompeo,RT @GreysABC: Weekend Plans #GreysAnatomy https://t.co/5KCHinH0Oe +03/30/2018,Actors,@EllenPompeo,RT @JoyAnnReid: Watch it again. Note the non-compliance. Note the restraint. Then tell me you can't understand why people kneel and have to… +03/30/2018,Actors,@EllenPompeo,RT @lexforchange: “Police violence IS gun violence” https://t.co/Ezez0tIMSp +03/30/2018,Actors,@EllenPompeo,"RT @ABC: Baton Rouge Police Chief: ""Fear cannot be a driver for an officer's response to every incident. Unreasonable fear within an office…" +03/30/2018,Actors,@EllenPompeo,@ChildVides @GreysABC @shondarhimes @sarahdrew When you have a child of your own the break in your heart gets mende… https://t.co/qLGtc49vzf +03/30/2018,Actors,@EllenPompeo,RT @shondarhimes: Tonight's #TGIT is dedicated to Suzanne Patmore Gibbs. https://t.co/cj2dueKRVg https://t.co/00gnzVpGKZ +03/29/2018,Actors,@EllenPompeo,THANK YOU!! @carafreemanxx @P_ompeo @HugeDramatvfan @anothrmerderfan @PaliAseel @merder99 @bajangirlzfalif @magicpompeo @gilmour34 💋💋💋💋💋💋💋💋💋 +03/29/2018,Actors,@EllenPompeo,THANK YOU!! @swiftxgreys @deniseblvrs @diamoonda_rk @carriedenny @greyspostit @Daniellee_eee @metsswift 💋💋💋💋💋💋💋💋💋💋💋💋 +03/29/2018,Actors,@EllenPompeo,@CulverTateum Yes Thank you!!I just tweeted to you did you see it?? +03/29/2018,Actors,@EllenPompeo,Guys it's @GreysABC you should always be worried 😲 https://t.co/fxywatrRRw +03/29/2018,Actors,@EllenPompeo,"@Hugedramatvfan @anothrmerderfan @PaliAseel @merder99 @bajangirlzfalif @magicpompeo @gilmoir34 +Thank You!!! +💋💋💋💋💋💋💋💋💋💋💋💋💋" +03/29/2018,Actors,@EllenPompeo,"@swiftxgreys @deniseblvrs @diamoonda_rk @carriedenny @greyspostit @Daniellee_eee @metsswift @carafreemanxx @P_ompeo Thank You!!! +💋💋💋💋💋💋💋💋💋💋💋" +03/29/2018,Actors,@EllenPompeo,This!!! https://t.co/hiCcbjRVBu +03/28/2018,Actors,@EllenPompeo,RT @HuffPost: Rep. Steve King (R-Iowa) tried to take on teens about age minimums for gun purchases and voting. It didn’t go well. https://t… +03/28/2018,Actors,@EllenPompeo,RT @MollyRoseTarpey: @EllenPompeo Trained police officers can't use their weapons properly and Trump and the GOP want to arm teachers? 🙄 +03/28/2018,Actors,@EllenPompeo,Black men and women are assasinated while jumping fences and white domestic terrorists are able to be walked into a courtroom to be judged +03/28/2018,Actors,@EllenPompeo,Thank God https://t.co/jJulrKQDtN +03/28/2018,Actors,@EllenPompeo,Ill say it again because it can't be said enough https://t.co/wMotOxt9ME +03/28/2018,Actors,@EllenPompeo,Also it deserves repeating... the Stoneman Douglas shooter walked into a courthouse after he was arrested think abo… https://t.co/RhQ8MEL0BV +03/27/2018,Actors,@EllenPompeo,"RT @eugenegu: As a surgeon, I’ve operated on gunshot victims who’ve had bullets tear through their intestines, cut through their spinal cor…" +03/26/2018,Actors,@EllenPompeo,Its hunting season on poc all day every day they shoot to kill every time everyone should be furious about this https://t.co/OyHJY1T987 +03/24/2018,Actors,@EllenPompeo,"RT @bevysmith: I support #MarchForOurLives but I want folks to show up with the same energy to #MarchForBlackLives yes, we need a separate…" +03/24/2018,Actors,@EllenPompeo,RT @JuddApatow: 73 Teens Shot To Death In The 37 Days Since The Parkland Massacre - HuffPost https://t.co/m5hLPxygTv +03/24/2018,Actors,@EllenPompeo,RT @mradamscott: $3.3 million from NRA https://t.co/DzEqOAHJHk +03/24/2018,Actors,@EllenPompeo,RT @DMVBlackLives: #StephonClark https://t.co/Q7vnJ8XDG0 +03/24/2018,Actors,@EllenPompeo,RT @townhallproject: This veteran's sign says it all. https://t.co/5nUuebc5Tr +03/24/2018,Actors,@EllenPompeo,RT @byshondaland: Can't make it to the #MarchForOurLives? Here's how you can still help. https://t.co/X33jrtLzf4 +03/24/2018,Actors,@EllenPompeo,"RT @kylegriffin1: 11-year old Naomi Wadler: ""I am here to acknowledge and represent the African-American girls whose stories don't make the…" +03/24/2018,Actors,@EllenPompeo,RT @RichardPrince4: So he’s at Mar A Largo. You outnumber him and his security. Go there. Keep going. Find him. Surround him. Don’t let him… +03/24/2018,Actors,@EllenPompeo,"RT @NYCSpeakerCoJo: Trevon Bosley’s brother was shot and killed as he left church in Chicago. + +I will never be afraid to say that #BlackLiv…" +03/24/2018,Actors,@EllenPompeo,"RT @ABC: Student at #MarchforOurLives rally in D.C.: ""We need to arm our teachers. We need to arm our teachers with pencils, pens, paper an…" +03/24/2018,Actors,@EllenPompeo,RT @chrisnellum: “Young black girls [in DC] are now likely to be arrested at 30 times the rate of white boys and girls together..” @rights4… +03/24/2018,Actors,@EllenPompeo,"RT @nhbaptiste: So, uh, the NRA isn’t very popular here. #MarchForOurLives https://t.co/4MHefnL1GH" +03/24/2018,Actors,@EllenPompeo,"RT @Goss30Goss: Thr fucking NRA no longer controls the narrative. The millions of Americans who want common sense gun laws do. + +#MarchForO…" +03/24/2018,Actors,@EllenPompeo,"RT @JordanUhl: Raw milk is more regulated than guns. + +#MarchForOurLives" +03/24/2018,Actors,@EllenPompeo,"RT @THR: Parkland student Adam Buchwald at #MarchForOurLives: ""We now have a voice"" https://t.co/LLGEspkZrV https://t.co/EfdvZKW7YL" +03/24/2018,Actors,@EllenPompeo,"RT @timkaine: This is who I march for. + +For our littlest kids. + +The ones who have not yet stepped foot into a classroom. They deserve to gr…" +03/24/2018,Actors,@EllenPompeo,RT @KamalaHarris: Optimism. That's what I see today from our youth at marches across America. They are going to be the generation that ends… +03/24/2018,Actors,@EllenPompeo,"RT @4EdJustice: Black youth are forced to make demands on a system that does not love them. @RethinkNOLA, you inspire us to continue the fi…" +03/23/2018,Actors,@EllenPompeo,RT @Emma4Change: I have absolutely no words... Thank you not only for your service but for standing with us as we #MarchForOurLives tomorro… +03/23/2018,Actors,@EllenPompeo,"RT @TIME: “Inaction is inexcusable.” TIME's editor @efelsenthal on what we can learn from the student teachers in Parkland, Fla. https://t.…" +03/23/2018,Actors,@EllenPompeo,This is a must read https://t.co/ZH4KGKHwIy +06/25/2018,Actors,@JessicaCapshaw,RT @jessetyler: I thought we decided that businesses are allowed to discriminate and don’t have to serve people they don’t want to serve...… +06/25/2018,Actors,@JessicaCapshaw,RT @KamalaHarris: Kirstjen Nielsen should resign immediately. She is leading an agency that has separated children from their parents and a… +06/23/2018,Actors,@JessicaCapshaw,"RT @jenniferbeals: Rise and shine. + +The world needs you." +06/23/2018,Actors,@JessicaCapshaw,"No, that’s not full Chynna. That’s what I refer to as the post-Chynna-I- wish-I-looked-like-Chynna-but-I-don’t -so-… https://t.co/Ii2KR5bLml" +06/23/2018,Actors,@JessicaCapshaw,"RT @ConstanceZimmer: I’d like to create a new social media platform where you go to read good news and laugh at random jokes, a place that…" +06/23/2018,Actors,@JessicaCapshaw,"Ummm, you know everything. Clearly. https://t.co/6pmTmbHY2h" +06/22/2018,Actors,@JessicaCapshaw,RT @RWitherspoon: Everyday for me is #DernDay !! I Feel the Dern! 🌟 https://t.co/SfLneN8Pcc +06/22/2018,Actors,@JessicaCapshaw,"RT @iJesseWilliams: If you, your friends and/or family are looking for scholarships this summer, @myScholly just launched our $10,000 Summe…" +06/19/2018,Actors,@JessicaCapshaw,RT @KamalaHarris: Many of you have asked how you can help the families being impacted by our government's human rights abuses along the bor… +06/19/2018,Actors,@JessicaCapshaw,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/19/2018,Actors,@JessicaCapshaw,"I called and left messages for my State’s Senators, @KamalaHarris & @SenFeinstein at 202-224-3121 +I wasn’t sure ex… https://t.co/H02lrrt30C" +06/11/2018,Actors,@JessicaCapshaw,💕👍🏻👏🏼😘 https://t.co/gCxuydFhAM +06/06/2018,Actors,@JessicaCapshaw,Never!!! 😘😘😘😘 https://t.co/CO3ihSo1tW +06/06/2018,Actors,@JessicaCapshaw,I somehow missed this so thank you someone for retweeting it. I couldn’t have been more fortunate to work with… https://t.co/vjr2XDkSlv +05/29/2018,Actors,@JessicaCapshaw,RT @iJesseWilliams: ‼️✊🏽❕‼️✊🏽❕‼️✊🏽❕‼️✊🏽❕ https://t.co/uQgm9phtSr +05/28/2018,Actors,@JessicaCapshaw,This cannot continue. What can we as a collective body of human beings do to not let these children be separated fr… https://t.co/5vp8CRHw8v +05/26/2018,Actors,@JessicaCapshaw,Thank YOU for the privilege of playing the tremendous character that you created. I’ll never stop being grateful fo… https://t.co/6ck8K2U01l +05/25/2018,Actors,@JessicaCapshaw,Love this! https://t.co/hu5Kkm4u4n +05/25/2018,Actors,@JessicaCapshaw,RT @Weinsteinlaw: It’s a sad day in America when we ban professional athletes from protesting peacefully before we ban the sale of assault… +05/25/2018,Actors,@JessicaCapshaw,RT @jodikantor: We’re in the courtroom waiting for Weinstein. For so long he had his own private system— fancy lawyers who paid to silence… +05/25/2018,Actors,@JessicaCapshaw,Love this!! https://t.co/RaeuFiyfMt +05/24/2018,Actors,@JessicaCapshaw,💪🏼🙌🏼 https://t.co/gmHtkTAH88 +05/24/2018,Actors,@JessicaCapshaw,💃😘💃 https://t.co/OX0dpF6VOP +05/24/2018,Actors,@JessicaCapshaw,Thank you for all of your commitment and hard work!! xoxox https://t.co/p7TqyfqN2r +05/22/2018,Actors,@JessicaCapshaw,Sending out big love and deep respect to… https://t.co/eGWTm496s3 +05/21/2018,Actors,@JessicaCapshaw,Awwwww...!!! https://t.co/w4hTpWg48a +05/21/2018,Actors,@JessicaCapshaw,Thank yooooooou!!! 😘 https://t.co/tYHHIdmHz4 +05/20/2018,Actors,@JessicaCapshaw,"I am very late to the party, but at least I got here...#MeghanAndHarry" +05/19/2018,Actors,@JessicaCapshaw,"I’m taking the weekend off...Monday, there will be video. https://t.co/hjhewzbA7K" +05/19/2018,Actors,@JessicaCapshaw,Huge respect for @jimmykimmel and his opening monologue tonight. The video that follows presenting politicians spea… https://t.co/0XcdJvMMLe +05/18/2018,Actors,@JessicaCapshaw,RT @iJesseWilliams: Radiant #GreysAnatomy @KellyMcCreary @JessicaCapshaw @sarahdrew https://t.co/93g2LfCCRl +05/18/2018,Actors,@JessicaCapshaw,And that’s a farewell to Arizona Robbins... https://t.co/fEN6vc6YlK +05/18/2018,Actors,@JessicaCapshaw,RT @shir_dan: @JessicaCapshaw you once said that when you first heard the name Arizona Robbins u felt like it's too much name to live up to… +05/18/2018,Actors,@JessicaCapshaw,I stand corrected. West coast...2 mins...!!! https://t.co/V58TsdKVDS +05/18/2018,Actors,@JessicaCapshaw,3 mins east coast!! +05/18/2018,Actors,@JessicaCapshaw,"She is so kind, enthusiastic, sweet and prepared!!! https://t.co/e3qRwNnoec" +05/18/2018,Actors,@JessicaCapshaw,Blue flannnnnel!!!! https://t.co/lPC17odc1Y +05/18/2018,Actors,@JessicaCapshaw,RT @capshawsdarby: your positivity posts are what get me through some days and I really just can’t thank you enough for everything you’ve d… +05/18/2018,Actors,@JessicaCapshaw,😘 https://t.co/pIOijeJjHB +05/18/2018,Actors,@JessicaCapshaw,Mornin’ https://t.co/V794gHSyMl +05/18/2018,Actors,@JessicaCapshaw,💕💕💕💕💕💕💕💕💕 https://t.co/mv2NDlCyB4 +05/18/2018,Actors,@JessicaCapshaw,The free gum? https://t.co/e1UGNbMDg2 +05/18/2018,Actors,@JessicaCapshaw,"RT @RuPaul: Show up on time. +Be prepared. +Don’t complain. https://t.co/nEhagrGkev" +05/18/2018,Actors,@JessicaCapshaw,His good morning hugs and kisses. https://t.co/uGCEtp3pYu +05/18/2018,Actors,@JessicaCapshaw,Final. https://t.co/PvsyIjRjQa +05/18/2018,Actors,@JessicaCapshaw,RT @swiftdobrevas: @JessicaCapshaw Thank you for your 10 years of portrayal of Arizona Robbins. She has inspired so much for the past 2 yea… +05/18/2018,Actors,@JessicaCapshaw,This is how quickly I run towards @KellyRipa ❤️💕❤️💕❤️💕❤️ https://t.co/wTqrOzto9c +05/18/2018,Actors,@JessicaCapshaw,RT @psicogreys: when we heard about his departure I and some fans from various countries did a video of homage to Arizona and you @JessicaC… +05/18/2018,Actors,@JessicaCapshaw,"So, so, so much. https://t.co/2sXuuCkGhz" +05/18/2018,Actors,@JessicaCapshaw,LOVE. https://t.co/lwPLzdP7YA +05/18/2018,Actors,@JessicaCapshaw,RT @arjzonas: @JessicaCapshaw i wish i could express to you how much arizona meant to me and how impactful your portrayal of her was for me… +05/18/2018,Actors,@JessicaCapshaw,This is the kind of tweet that leaves me humbled beyond belief and in a puddle of happy tears...@shondarhimes… https://t.co/h9t38pZhYa +05/18/2018,Actors,@JessicaCapshaw,"Bahahahah, she was fun. https://t.co/hejfvxSTPY" +05/18/2018,Actors,@JessicaCapshaw,@MelaniesHair spent sooooo long doing @camilluddington hair. I was all 😴😴😴😴😴😴😴😴😴😴 https://t.co/mytPUPHSff +05/18/2018,Actors,@JessicaCapshaw,RT @sarahdrew: Head over to my Instagram account. I’ve got lots of stuff to share starting now :) 😘😘😘 Loved chatting with you in my final g… +05/18/2018,Actors,@JessicaCapshaw,"RT @EmmaWatson: This #IDAHOT I stand in solidarity with LGBTQI activists who are fighting to have the same rights, freedoms, protection & s…" +05/18/2018,Actors,@JessicaCapshaw,❤️ https://t.co/unjIY5iing +05/18/2018,Actors,@JessicaCapshaw,You’ve got this. And we’ve got your back. 😘 https://t.co/KJOIW5A0XY +05/18/2018,Actors,@JessicaCapshaw,This is everything. Everyone. Every. One. Should feel represented in the landscape of television... https://t.co/dCeBbRedRU +05/18/2018,Actors,@JessicaCapshaw,No. https://t.co/om3hPppaTq +05/18/2018,Actors,@JessicaCapshaw,I’ve read about it but I haven’t received it... https://t.co/PuqLBw6wmp +05/18/2018,Actors,@JessicaCapshaw,"Awwww, thank you!! https://t.co/DDLkyzZWRO" +05/18/2018,Actors,@JessicaCapshaw,"RT @enews: You were our person, Arizona. #GreysAnatomy https://t.co/qhVTdj8fDU https://t.co/6t1FR19e7P" +05/18/2018,Actors,@JessicaCapshaw,"Gives me a wide smile, a warm heart and goosebumps all over my body all at the same time. https://t.co/mT9hm7wukO" +05/18/2018,Actors,@JessicaCapshaw,@SaraRamirez is one of the most talented and committed actors that I’ve ever worked with. And that’s a fact. https://t.co/WGpJK3Dhmt +05/18/2018,Actors,@JessicaCapshaw,Ummm...everything? https://t.co/m2PH5OTVkm +05/18/2018,Actors,@JessicaCapshaw,I LOVE THIS!! But I didn’t get it!! https://t.co/enQtGr0Pbu +05/18/2018,Actors,@JessicaCapshaw,"Pretty good, right?!? https://t.co/vexTFmz2ty" +05/18/2018,Actors,@JessicaCapshaw,OF COURSE!! https://t.co/WWqZXTxOej +05/18/2018,Actors,@JessicaCapshaw,So many things... https://t.co/G4Szl3PBak +05/18/2018,Actors,@JessicaCapshaw,Nope. https://t.co/8gIH6K8QMy +05/18/2018,Actors,@JessicaCapshaw,@sexmirez @sashaalexander That would be a dream come true... +05/18/2018,Actors,@JessicaCapshaw,No. https://t.co/uOGY7UkRBP +05/18/2018,Actors,@JessicaCapshaw,Nope. But @sarahdrew might since it’s her actual phone case... https://t.co/JXm7kJ4QrR +05/18/2018,Actors,@JessicaCapshaw,ELATION. I literally may have levitated. https://t.co/KmRssRL8FY +05/18/2018,Actors,@JessicaCapshaw,"@callicpetxrres So many real tears...and by the way, most of them got edited out. Must’ve been too many tears...😍" +05/18/2018,Actors,@JessicaCapshaw,I heard that was meant for next season... https://t.co/2U7GG3JXIn +05/18/2018,Actors,@JessicaCapshaw,I’ve got some things up my sleeve... ☺️ https://t.co/PklkZtJ83Q +05/18/2018,Actors,@JessicaCapshaw,"Ummmm...it was a full blown meltdown. A cathartic, wild, full force processing of a decade. https://t.co/B0tlCZ3x7P" +05/18/2018,Actors,@JessicaCapshaw,She always wants to smooch me 🙄 https://t.co/eazUrrUypA +05/18/2018,Actors,@JessicaCapshaw,My friend @7JustinChambers https://t.co/d7ubxB9zC4 +05/18/2018,Actors,@JessicaCapshaw,"She’s sweet, enthusiastic, and full of information!! https://t.co/VzPkCkVmEI" +05/18/2018,Actors,@JessicaCapshaw,You have questions? I have answers... +05/18/2018,Actors,@JessicaCapshaw,In our next show for suuuure!! 😘 https://t.co/VVY4a2Pi3v +05/18/2018,Actors,@JessicaCapshaw,East cooooooast!! 10 mins!! Let’s do this!! +05/18/2018,Actors,@JessicaCapshaw,"I love you, sister. ❤️❤️ https://t.co/w1OcKTjPYb" +05/18/2018,Actors,@JessicaCapshaw,"Constance!!! I love working with you so much. You came in and were fierce, talented, prepared and all kinds of craz… https://t.co/Hx4kgNP1A3" +05/17/2018,Actors,@JessicaCapshaw,Just saying...my Instagram feed is going to look like I was on Grey’s Anatomy for a decade by the end of this evening. 😂🤣😎 +05/17/2018,Actors,@JessicaCapshaw,Today’s the day...it’s finally here. Farewell Arizona Robbins!!! I’ll be live tweeting the WEST COAST airing tonight. ❤️👩🏼‍⚕️❤️ +05/17/2018,Actors,@JessicaCapshaw,Thank YOU ALL!!! https://t.co/ZuhmYJf9k4 +05/16/2018,Actors,@JessicaCapshaw,Why try not to laugh?!? Lean into it people!! 😂😂😂😂😂😂 https://t.co/FeSAL7mDOA +05/16/2018,Actors,@JessicaCapshaw,"Season finale tomorrow, people!! What’s going to happen? I know, do you? 😬😎🙃😉🤐" +05/16/2018,Actors,@JessicaCapshaw,What in what has Yanny done to you?!? Snap out of it!! You really shouldn’t lose us both over the Yanster. https://t.co/kEJgv5LKAI +05/16/2018,Actors,@JessicaCapshaw,"Literally the first time we’re not on the same page. Who is messing with us?!?! + +It’s clearly and definitively Laur… https://t.co/SySLMHW2Bq" +05/15/2018,Actors,@JessicaCapshaw,Never. https://t.co/cXRGx6tqUJ +05/15/2018,Actors,@JessicaCapshaw,I stand corrected. Last live tweet for GREY’S ANATOMY... https://t.co/RipaD7qnIt +05/15/2018,Actors,@JessicaCapshaw,"So, I’m thinking...anyone up for one last live tweet from me this Thursday?" +05/11/2018,Actors,@JessicaCapshaw,The all of it. 😘☺️ https://t.co/wuVmFHv0wL +05/11/2018,Actors,@JessicaCapshaw,"RT @JChambersOnline: ""I thought you were a pixie stick. When I met you, I thought you were an empty vessel full of sugar who skated in a ho…" +05/11/2018,Actors,@JessicaCapshaw,😂❤️😂❤️ https://t.co/8CAgoezDuv +05/11/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/s2azgiS9xx +05/09/2018,Actors,@JessicaCapshaw,Full blown heart explosion. https://t.co/TPRbLmsmuW +05/06/2018,Actors,@JessicaCapshaw,"I do believe that @7JustinChambers has been hitting it out of the park for FOURTEEN YEARS...love, love, love and ma… https://t.co/QN5GxMfYKF" +05/04/2018,Actors,@JessicaCapshaw,"Love you, Lindaaaaa!!! https://t.co/bzI8FnZSso" +05/04/2018,Actors,@JessicaCapshaw,"10 years of learning under the best (and toughest) teacher a girl could wish for...@iamlk ++ +1 episode with a soulf… https://t.co/75vn0hJiyt" +05/03/2018,Actors,@JessicaCapshaw,It’s a fact that @iJesseWilliams & I became friends the minute that he arrived at Grey’s. I had no idea then that h… https://t.co/LiQ4g9iO9h +05/03/2018,Actors,@JessicaCapshaw,"I do, I do, I do. And I am so grateful for your participation in making Arizona Robbins’ life on Grey’s so successf… https://t.co/ueNRifnovu" +05/02/2018,Actors,@JessicaCapshaw,👏🏼👏🏼👏🏼 https://t.co/jlJJcL5Mqg +05/02/2018,Actors,@JessicaCapshaw,This made me laugh out loud... https://t.co/gzeM6srfuW +04/20/2018,Actors,@JessicaCapshaw,"That’s a series wrap for Arizona Robbins...wow, wow, wow." +04/18/2018,Actors,@JessicaCapshaw,"Ummmm, better than pictures, I have VIDEO, people. All in good time... https://t.co/WetJqbtwA0" +04/18/2018,Actors,@JessicaCapshaw,Bahahahaha! https://t.co/FJheFh74bj +04/18/2018,Actors,@JessicaCapshaw,"Ok, that’s crazy. I brought it in for @MelaniesHair to try for something she had to go to. Can’t believe that you s… https://t.co/CJDAZmK1Re" +04/16/2018,Actors,@JessicaCapshaw,I’m such a nostalgic fool. I get it from my father...so get ready for it this week as we go into...the last week of… https://t.co/jHxGByVLYs +04/15/2018,Actors,@JessicaCapshaw,RT @azandcallie: mimi listened i will never complain again https://t.co/pONIh5IVrr +04/14/2018,Actors,@JessicaCapshaw,"Bahahahaha!! +https://t.co/jVAbZGIFe6" +04/11/2018,Actors,@JessicaCapshaw,"Yes, please and thank you!! 🙌🏼 https://t.co/wniPUmQL5O" +04/10/2018,Actors,@JessicaCapshaw,Last drive from home to the studios this morning...TEN YEARS of commuting to reflect upon in 35 mins...wooaaahhh... +04/06/2018,Actors,@JessicaCapshaw,Yaaaaaaaasss!!! If I had moves like this I would NEVER STOP DANCING!! https://t.co/BqK93aTwUn +04/06/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️ https://t.co/LwtlRa35ri +04/05/2018,Actors,@JessicaCapshaw,Love you to the moon and back again...😘😘😘😘 https://t.co/cjDssNzqSS +04/05/2018,Actors,@JessicaCapshaw,Would do? Or have done? 😂🙄😬 https://t.co/aENgQEIOpz +03/29/2018,Actors,@JessicaCapshaw,RT @HeelyQueen: @JessicaCapshaw Bearizona Robbins just might be the cutest thing I ever saw. Plus the rainbow shows 😭🤧🌈 +03/27/2018,Actors,@JessicaCapshaw,"Oh my, oh my...what a ride!!! https://t.co/5ZkoyIJb7o" +03/25/2018,Actors,@JessicaCapshaw,"RT @splinter_news: ""I know you guys are going through the exact same thing. You just don't have the platform. People aren't listening to yo…" +03/23/2018,Actors,@JessicaCapshaw,#MarchForOurLivesLA https://t.co/qW2OtCXTi2 +03/23/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/44sJufTD2B +03/23/2018,Actors,@JessicaCapshaw,"Happy Birthday to one of the great ones...@RWitherspoon +You are one of the hardest working forces for good that I’… https://t.co/ouNqTN1WRF" +03/22/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/WMqi2Dl8Kh +03/21/2018,Actors,@JessicaCapshaw,I was the 25th!! 💃🏼 https://t.co/QAIVkvVsH8 +03/21/2018,Actors,@JessicaCapshaw,RT @MurielGuigui: @JessicaCapshaw Yes! And don’t forget how amazingly supportive @julieplec was too! +03/21/2018,Actors,@JessicaCapshaw,"“One time was enough. One story was enough. One woman is enough.” Finchie, thank you for sharing your story. I’m so… https://t.co/QA2vgZLq8n" +03/20/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️ https://t.co/Ildu2Cfvaa +03/19/2018,Actors,@JessicaCapshaw,Beyond!!!✈️❤️✈️ https://t.co/ygMKdbGoqO +03/19/2018,Actors,@JessicaCapshaw,Surreal and so moving...loved being there with you. xoxox ❤️✈️😘 https://t.co/jjCxRWpasa +03/19/2018,Actors,@JessicaCapshaw,"OMG. There is a plane carrying a banner that says.. +WE ❤️ SARAH DREW & JESSICA CAPSHAW right now... +There are no words...WE ❤️ YOU ALL!!" +03/17/2018,Actors,@JessicaCapshaw,"This scene was so much fun to shoot. And I had just had my sweet baby girl, Evie. Literally, I had just had her. https://t.co/8556G2seX2" +03/17/2018,Actors,@JessicaCapshaw,"Ella, I am so grateful to have had the sincere privilege of playing this role. My heart is full knowing that having… https://t.co/jmLtFcCx5O" +03/16/2018,Actors,@JessicaCapshaw,Drove to work thinking about all of you over at @scandal such an enormous day for you...sending you all so much lov… https://t.co/MM6b7ha5i2 +03/16/2018,Actors,@JessicaCapshaw,What?!? I want gold heelys!!!! https://t.co/iBvqdNLp0z +03/16/2018,Actors,@JessicaCapshaw,I really believe this... https://t.co/BDnnKjWXrz +03/16/2018,Actors,@JessicaCapshaw,Right now my answer would be every single one... https://t.co/4okNxFe0Te +03/16/2018,Actors,@JessicaCapshaw,I haven’t seen this in a while and I kind of LOVE IT. 👩🏼‍⚕️💃😂 https://t.co/k8rXhGfPGk +03/16/2018,Actors,@JessicaCapshaw,😘💯👍🏻💥 https://t.co/yvUEs2NNMA +03/16/2018,Actors,@JessicaCapshaw,I can’t even. https://t.co/uGa6y6l3E0 +03/15/2018,Actors,@JessicaCapshaw,This is incredible!! Thank YOU. You are never alone and you should always be proud of who you are. If this letter i… https://t.co/xcfynEQZnG +03/15/2018,Actors,@JessicaCapshaw,And then you’ll get back up 😉 https://t.co/FR2oQCwi7w +03/15/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/zRQcQfvStE +03/15/2018,Actors,@JessicaCapshaw,I can’t find words big enough to express how much this means to me. I am smiling ear to ear. Thank you for sharing… https://t.co/cAX2lGlo6k +03/15/2018,Actors,@JessicaCapshaw,I LOVE THIS PICTURE SO MUCH. There are magical moments that happen on set sometimes where basically all the actors… https://t.co/NFWp90WtuH +03/15/2018,Actors,@JessicaCapshaw,"Oh my, oh my...that is definitely happiness in a clip (plus a healthy amount of snapping and clapping while moving… https://t.co/PhUtkNivJO" +03/14/2018,Actors,@JessicaCapshaw,"From Camp BFF’s to comedy wranglers on television?!? +YES, PLEASE!! 😘 https://t.co/jm3GtghULE" +03/14/2018,Actors,@JessicaCapshaw,OOOOMMGGGG!!! That would be what’s referred to as ‘must see TV!’ https://t.co/pCGjWGjn5l +03/14/2018,Actors,@JessicaCapshaw,"Go get ‘em Lady!! And ummm, please keep a journal so that you can share everything when you come back online. 💕💕💕💕 https://t.co/JDVNdUp2Ru" +03/14/2018,Actors,@JessicaCapshaw,"I could NOT BE MORE EXCITED for this incredible talent. What a lucky, lucky, show ‘Cagney and Lacey’ is to have you… https://t.co/SUaXJcJccs" +03/13/2018,Actors,@JessicaCapshaw,I think there is so much more to create here 😉 https://t.co/nGixXr5NKB +03/12/2018,Actors,@JessicaCapshaw,❤️ https://t.co/3nWmwMH2mh +03/12/2018,Actors,@JessicaCapshaw,"Love your life honestly and lead with kindness and you will always be proud of who you are. Because you, are magica… https://t.co/jbd1bJjiTJ" +03/12/2018,Actors,@JessicaCapshaw,"Love this, Tom!! Thank you so much. You were there in the very beginning for me and I was so grateful to work with… https://t.co/iHDSzOp43q" +03/12/2018,Actors,@JessicaCapshaw,"You have always been so kind and so supportive, Felien. Thank you for that!!! https://t.co/ybbikJmHj9" +03/12/2018,Actors,@JessicaCapshaw,Oh. My. Goodness. You’re making me cry!! Thank you for this...I am so grateful to you all for bringing all this lov… https://t.co/LiFiXAeeNY +03/10/2018,Actors,@JessicaCapshaw,"My dear, Jesse. Your humor, strength and friendship have been a lifeline for me at times. There’s not many people w… https://t.co/aUIo3JebEL" +03/10/2018,Actors,@JessicaCapshaw,RT @JessicaCapshaw: ❤️ @stacysmckee16 https://t.co/AbONdCM96o +03/10/2018,Actors,@JessicaCapshaw,❤️ @stacysmckee16 https://t.co/AbONdCM96o +03/10/2018,Actors,@JessicaCapshaw,😘 https://t.co/ZWTnHydqeJ +03/10/2018,Actors,@JessicaCapshaw,💯 https://t.co/N3HF75UhGz +03/10/2018,Actors,@JessicaCapshaw,So sweet!!! https://t.co/s7raWxST5a +03/10/2018,Actors,@JessicaCapshaw,🌈🌈🌈🌈🌈🌈🌈🌈 https://t.co/9IOih1yyzU +03/10/2018,Actors,@JessicaCapshaw,Thank YOU!!! https://t.co/hts5Ad1QXh +03/10/2018,Actors,@JessicaCapshaw,❤️ https://t.co/Jc1fdgq9dP +03/10/2018,Actors,@JessicaCapshaw,Aaaaaaahhhhhhb!!! Look at this!!! https://t.co/hqAJzT89vK +03/10/2018,Actors,@JessicaCapshaw,This is everything. https://t.co/lHR3ndUkri +03/10/2018,Actors,@JessicaCapshaw,What am I doing here?!?! 😂😂😂 https://t.co/ButuMY2dqF +03/10/2018,Actors,@JessicaCapshaw,Thank you for sharing this. I’m beyond grateful that @shondarhimes created this character for me to play. Arizona h… https://t.co/RCeNfTUfTo +03/10/2018,Actors,@JessicaCapshaw,"Awwwww, love those wheeeelie sneaks!!! https://t.co/PHrR2ZoRp4" +03/10/2018,Actors,@JessicaCapshaw,This is so beautiful. I am so grateful for your kind words. I am even more grateful that Arizona brought you someon… https://t.co/xBhjZ9o7VE +03/10/2018,Actors,@JessicaCapshaw,"I can’t even. + +Caterina is a force of nature. A true talent, scholar and friend. ❤️ https://t.co/wg9Kj0SyfL" +03/10/2018,Actors,@JessicaCapshaw,"Thank you, thank you and thank you. +😘 https://t.co/Z8cjsDZ2Lt" +03/10/2018,Actors,@JessicaCapshaw,We clearly have had no fun at all 😉 https://t.co/Vu5n0i9Np3 +03/10/2018,Actors,@JessicaCapshaw,And always in mine... https://t.co/9fULjvUVHl +03/10/2018,Actors,@JessicaCapshaw,"RT @_caoutlaw: You're kind of a legend. +Always be @JessicaCapshaw ❤️ https://t.co/iMeH4QaZCm" +03/10/2018,Actors,@JessicaCapshaw,Thank YOU. It has been an honor to play Arizona. xoxox https://t.co/VUgTMgpg23 +03/10/2018,Actors,@JessicaCapshaw,"Right back at you, my friend... https://t.co/QA7IywiD0d" +03/10/2018,Actors,@JessicaCapshaw,😍 https://t.co/oY7rYFaanV +03/08/2018,Actors,@JessicaCapshaw,https://t.co/HVfHbkEQTG +03/06/2018,Actors,@JessicaCapshaw,AMAZING. https://t.co/Nh29BWRtrl +03/06/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️ https://t.co/dYuYmzIH26 +03/02/2018,Actors,@JessicaCapshaw,Thank YOU!! https://t.co/XojGKjAQhB +03/02/2018,Actors,@JessicaCapshaw,Thank YOU!! https://t.co/97U3u4UaU8 +03/02/2018,Actors,@JessicaCapshaw,There is nothing more impactful than this. My guess is that you are more than ok. My guess is that you are WONDERFU… https://t.co/VKSK0gjak9 +03/02/2018,Actors,@JessicaCapshaw,You mean so much to me!! https://t.co/97U3u4UaU8 +03/02/2018,Actors,@JessicaCapshaw,"I see you and I am so, so, so happy... https://t.co/5AvIqY3Rvx" +03/02/2018,Actors,@JessicaCapshaw,I misssssss yooooouuuu!!! Congratulations on @Station19 💯👍🏻💯👍🏻💯 https://t.co/MSiDC13TLo +03/02/2018,Actors,@JessicaCapshaw,I humbly apologize... https://t.co/JnESoMZLIs +03/02/2018,Actors,@JessicaCapshaw,I love it when some of our improvs make it in the show!!! And I love working with @KellyMcCreary and @iJesseWilliams https://t.co/Dl2zLK45eC +03/02/2018,Actors,@JessicaCapshaw,Bahahahahah https://t.co/74IhlQoxGg +03/02/2018,Actors,@JessicaCapshaw,EPIC FAIL!!! Got caught at work!!! And then forgot to even let you all know. I’m the wooooorrrrsssst!! I’m so sorry. https://t.co/HWeZZDCfrM +02/27/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/fCW9JSOOI9 +02/24/2018,Actors,@JessicaCapshaw,I doooooooo... https://t.co/jy7X177wby +02/24/2018,Actors,@JessicaCapshaw,RT @KarlaSouza7: I am proud to stand in solidarity with my sisters in Mexico and women around the world whose voices are finally being hear… +06/30/2018,Actors,@sarahdrew,"RT @bleuangel88: In which I demand @sarahdrew be given an Emmy. Give Maggie (@KellyMcCreary) the due she deserves, and OF COURSE @peyton_k…" +06/28/2018,Actors,@sarahdrew,The night Harriet was conceived began with a fortune cookie fight :) https://t.co/k0hhsQjQFz +06/28/2018,Actors,@sarahdrew,Oh man... this is so sweet! I love @sleepingatlast version of Faith!! https://t.co/GWkYmxijn9 +06/28/2018,Actors,@sarahdrew,😂😂😂🐷🏠🛳🎢✈️🍪🍼🥠🐓🐖 https://t.co/ItxWHWTtu3 +06/28/2018,Actors,@sarahdrew,"RT @GlennonDoyle: So many of you have been asking for ways that you can help the separated families beyond giving. +So we put together this…" +06/27/2018,Actors,@sarahdrew,Yes! That is the perfect description!!! Ps- I LOVE your work @sleepingatlast !!! https://t.co/kNL9k2Nxum +06/27/2018,Actors,@sarahdrew,"If you haven’t seen @Hannahgadsby show #nanettflix yet, stop what you are doing and watch it immediately. It was on… https://t.co/HDwnq3d47U" +06/25/2018,Actors,@sarahdrew,"@Dani_beii I see them all and if you don’t want anyone else to see them, just let me know in the video and I’ll be sure not to share" +06/25/2018,Actors,@sarahdrew,@frwkinsuperhero Yes!! +06/25/2018,Actors,@sarahdrew,@gtwayscar Yay!!! I’m proud of you! +06/25/2018,Actors,@sarahdrew,@heavenously I can’t wait to hear your voice! +06/25/2018,Actors,@sarahdrew,"@Dani_beii If you don’t want me to share your response, just mention that in your video and I will be the only one to see it!" +06/25/2018,Actors,@sarahdrew,"@thaysmarcelina2 For this one, I’m asking for videos!" +06/25/2018,Actors,@sarahdrew,@apriIscrubcap That works too! Reply in whatever way you’d like! +06/25/2018,Actors,@sarahdrew,@dancesjolex Don’t be embarrassed!! +06/25/2018,Actors,@sarahdrew,@EllenPompao_ It has to be video :) +06/25/2018,Actors,@sarahdrew,Come and talk to me guys! Click the link 👇🏻👇🏻 I can’t wait to hear from you!!! https://t.co/Pg2q7JRSTd +06/25/2018,Actors,@sarahdrew,RT @DalaiLama: I am one of the 7 billion human beings alive today. We each have a responsibility to think about humanity and the good of th… +06/25/2018,Actors,@sarahdrew,Thank you so much! I LOVED playing this story last season! ❤️❤️❤️ https://t.co/OCvVVUUjiW +06/24/2018,Actors,@sarahdrew,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/24/2018,Actors,@sarahdrew,RT @mishacollins: Um... After Australia had a horrific mass shooting they implemented sensible gun control. They haven’t had another mass… +06/24/2018,Actors,@sarahdrew,RT @RevDrBarber: Those who use scripture and Christianity to justify harm and violence are guilty of theological malpractice and heresy. We… +06/24/2018,Actors,@sarahdrew,"Loved meeting you too, @kamron54 😘😘😘 https://t.co/SpFPofwi3c" +06/23/2018,Actors,@sarahdrew,"RT @amnestyusa: ""Why are we hiding this from the American people?"" - @tedlieu #FamiliesBelongTogther https://t.co/dwl2dt6soO" +06/22/2018,Actors,@sarahdrew,"RT @GlennonDoyle: This will be a day of calls, listening, listening, listening - learning and then deciding on the Next Right Thing. Really…" +06/22/2018,Actors,@sarahdrew,"RT @minh81: ****U R G E N T E ***** +“RAICES needs volunteer translators: ""who speak Meso-American indigenous languages (eg, zapotec, nahua,…" +06/22/2018,Actors,@sarahdrew,Yup. That was me last night catching up on the final episode. https://t.co/8lxiQ2nxfA +06/21/2018,Actors,@sarahdrew,RT @GlennonDoyle: 3.2 million dollars. That’s what you’ve raised. Soon we will have an update to you about how Round three of funds will be… +06/21/2018,Actors,@sarahdrew,"RT @lparrottperry: If you haven't donated yet, there's still time & there's still so much work to be done. + +There's no org I have more fait…" +06/20/2018,Actors,@sarahdrew,"RT @TheGoodGodAbove: Repeat after Me: +THOU SHALT NOT PUT BABIES IN CAGES. + +THOU SHALT NOT PUT BABIES IN CAGES. + +THOU SHALT NOT PUT BABIES I…" +06/20/2018,Actors,@sarahdrew,"RT @girlsreallyrule: Not sure how to call your senator? No biggie, follow these steps: +1. Look up your Senator here: https://t.co/wwInaPr77…" +06/20/2018,Actors,@sarahdrew,"RT @JessicaCapshaw: I called and left messages for my State’s Senators, @KamalaHarris & @SenFeinstein at 202-224-3121 +I wasn’t sure exactl…" +06/20/2018,Actors,@sarahdrew,This is so utterly devastating. I cannot believe our country is traumatizing babies in this way. I cannot believe i… https://t.co/naczfeH1DI +06/20/2018,Actors,@sarahdrew,RT @nowthisnews: ‘How can this happen in the 21st century? … Separation of the family is probably the worst thing that ever happened to us.… +06/20/2018,Actors,@sarahdrew,"RT @tonyposnanski: A tale of two parties... + +Rachel Maddow breaks down while reporting about children being taken from their parents... + +Co…" +06/20/2018,Actors,@sarahdrew,RT @caterinatweets: Resist evil. Send pictures from inside the “tender age shelters” so people can feel the truth. If you lose your job you… +06/20/2018,Actors,@sarahdrew,"RT @GlennonDoyle: You know how we teach our kids never to be “bystanders?” To stand up for other hurting kids being bullied? +Now is the ti…" +06/18/2018,Actors,@sarahdrew,"RT @CBSNews: WATCH: “This is torture to take a child from that mother, from that father, who literally risked all, including their lives, t…" +06/16/2018,Actors,@sarahdrew,RT @wendimclendonco: https://t.co/42Cq79Hagk +06/11/2018,Actors,@sarahdrew,This looks SO amazing @camilluddington !!! Congratulations!!! https://t.co/Z8NZAcV952 +06/09/2018,Actors,@sarahdrew,"RT @NPR: If you or someone you know may be considering suicide, contact the National Suicide Prevention Lifeline at 1-800-273-8255 (En Espa…" +06/09/2018,Actors,@sarahdrew,This thread is so beautiful. 👇🏻👇🏻👇🏻 https://t.co/i0Vx5jZNsC +06/08/2018,Actors,@sarahdrew,"RT @BarackObama: “Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us about food…" +06/08/2018,Actors,@sarahdrew,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/07/2018,Actors,@sarahdrew,RT @GlennonDoyle: Abby just said this to me: “we need to stop calling mental illness ‘personal demons’ like victims need exorcisms instead… +06/06/2018,Actors,@sarahdrew,"RT @itslizhannah: If any female showrunners want to do a panel on Thursday night, I will moderate and organize. https://t.co/R1IXBMOXWN" +06/05/2018,Actors,@sarahdrew,"RT @swingleft: Only 28% of Americans voted in the primaries in 2016, and we know what happened next. If you live in Alabama, California, Io…" +06/05/2018,Actors,@sarahdrew,RT @tonygoldwyn: Hey #CA #NJ #AL #IA #MS #MT #NM #SD its Election Day!!! Grab a friend and GO VOTE! #UseYourVoice +06/05/2018,Actors,@sarahdrew,😘😘😘 https://t.co/NawwHUKR3Z +06/01/2018,Actors,@sarahdrew,Ultimate #fbf ! This is so cute and it’s making me want to go back and watch the series again! #everwood… https://t.co/HKUOf3FjRz +06/01/2018,Actors,@sarahdrew,So much pain https://t.co/dSRKc1vTnY +06/01/2018,Actors,@sarahdrew,Absolutely!! https://t.co/V2IOgCY1kR +06/01/2018,Actors,@sarahdrew,RT @doglab: Please retweet if you think there should be a global ban on trophy hunting. https://t.co/3TQ04XNbk5 +06/01/2018,Actors,@sarahdrew,Well.... not so much in real life 😬😬🤷‍♀️🤷‍♀️ https://t.co/HLnNOyCIje +06/01/2018,Actors,@sarahdrew,"RT @HomeandFamilyTV: Actors @sarahdrew and Justin Bruening are making Justin's favorite pasta dish. #Recipes +https://t.co/gzqx4LzJDx https…" +06/01/2018,Actors,@sarahdrew,Check out our segment on @HomeandFamilyTV !! https://t.co/QnB7WZZOyq +05/31/2018,Actors,@sarahdrew,RT @JessicaNTurner: Took time this morning to call my senators and house representative regarding DACA and the separation of children from… +05/31/2018,Actors,@sarahdrew,"RT @GlennonDoyle: ""We need to stop just pulling people out of the river. We need to go upstream and find out why they’re falling in.” +You…" +05/31/2018,Actors,@sarahdrew,RT @GlennonDoyle: MY FRIENDS: LOOK. Keep calling!!! Keep calling! Numbers and scripts at https://t.co/HHuAcEAw7E. This is what democracy lo… +05/31/2018,Actors,@sarahdrew,Check it out tomorrow! You’ll get to see a clip from our new film @indivisiblemov too!! https://t.co/c0Y3KFUvNe +05/31/2018,Actors,@sarahdrew,I didn’t make any of it. Because Justin is the chef! I helped by eating it and saying “this is soooo good”. Because… https://t.co/K6HmPM3A8b +05/30/2018,Actors,@sarahdrew,I can’t wait to see this!!!!! https://t.co/uzp6XxGYBH +05/29/2018,Actors,@sarahdrew,"RT @Sarcasticluther: We can do this. (Please read whole post). Together we can hire lawyers and aids to help these children because, as Gle…" +05/29/2018,Actors,@sarahdrew,RT @caterinatweets: Channing Dungey gets the integrity and patriotism award today. Profit margins can’t allow us to slide into allowing hat… +05/29/2018,Actors,@sarahdrew,"RT @stina_kc: ""If we cannot represent [a terrified 6-year-old blind boy separated from his mom at the border], he will stand in front of a…" +05/29/2018,Actors,@sarahdrew,There’s no such thing as other people’s children. Check out the work that @togetherrising is doing 👇🏻👇🏻👇🏻 https://t.co/ghZbxCqzDX +05/28/2018,Actors,@sarahdrew,This is very nice :) thank you 😘 https://t.co/1AfID4lRNE +05/26/2018,Actors,@sarahdrew,😊😊😊 https://t.co/WqXdO48ZGk +05/25/2018,Actors,@sarahdrew,"Meet Heather and Darren Turner, the characters that #JustinBruening and I play in our upcoming film @indivisiblemov… https://t.co/7FVyJ3U6FP" +05/23/2018,Actors,@sarahdrew,RT @mybeansjapril: VOTE! It’s the final round so vote for our captains❤️ @sarahdrew @iJesseWilliams https://t.co/GVZ7ZemHJp https://t.co/y2… +05/23/2018,Actors,@sarahdrew,RT @GlennonDoyle: One easy way to be better at apologizing is to say “I’m sorry THAT I hurt you” instead of “I’m sorry IF I hurt you.” We… +05/23/2018,Actors,@sarahdrew,👇🏻👇🏻👏🏻👏🏻👏🏻 https://t.co/FnERHQm27p +05/22/2018,Actors,@sarahdrew,"RT @TellTaleTV_: Nominees for favorite supporting actress in a drama series, Round 2 (continued): @sarahdrew @JessicaCapshaw @caterinatweet…" +05/20/2018,Actors,@sarahdrew,👇🏻👇🏻👇🏻 https://t.co/meQi5uEGBy +05/20/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/EfyFO0s5wL +05/20/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/wmfwusM1pd +05/19/2018,Actors,@sarahdrew,Bahahaha!! I wish!!!! https://t.co/F1Kfb0JCtC +05/19/2018,Actors,@sarahdrew,Go @rosemarydirects !!! Go! Badassery is correct!!!! https://t.co/NtB7u33r8A +05/19/2018,Actors,@sarahdrew,True story :) https://t.co/9o7JGF0QQL +05/18/2018,Actors,@sarahdrew,Check out the poster for my new film @indivisiblemov ! I had a blast making this film with some of my favorite… https://t.co/lX3L0Hwh3S +05/18/2018,Actors,@sarahdrew,😘😘❤️❤️ https://t.co/DSYCsspVAH +05/18/2018,Actors,@sarahdrew,RT @iJesseWilliams: Radiant #GreysAnatomy @KellyMcCreary @JessicaCapshaw @sarahdrew https://t.co/93g2LfCCRl +05/18/2018,Actors,@sarahdrew,RT @enews: Say it with us #GreysAnatomy fans: JAPRIL FOREVER! https://t.co/qa7YrQjuWI +05/18/2018,Actors,@sarahdrew,Love ya https://t.co/N6Kb5NcLeF +05/18/2018,Actors,@sarahdrew,I gave him a message last week! https://t.co/wMEACXFgl7 +05/18/2018,Actors,@sarahdrew,I told you I’d be spamming you- go to my insta or my Facebook to see... +05/18/2018,Actors,@sarahdrew,Head over to my Instagram account. I’ve got lots of stuff to share starting now :) 😘😘😘 Loved chatting with you in m… https://t.co/GiwuMYLUsj +05/18/2018,Actors,@sarahdrew,This one was pretty emotional for sure https://t.co/a1i3Sb9WVg +05/18/2018,Actors,@sarahdrew,Love hearing @SaraRamirez beautiful voice right now +05/18/2018,Actors,@sarahdrew,Everything https://t.co/taWkDcY0OE +05/18/2018,Actors,@sarahdrew,Always https://t.co/rQgfeUwdGq +05/18/2018,Actors,@sarahdrew,😘😘😘 https://t.co/BQo2p9PtCY +05/18/2018,Actors,@sarahdrew,It’s coming up https://t.co/wSJwMfcr5M +05/18/2018,Actors,@sarahdrew,So many... https://t.co/YcJkZzNPuI +05/18/2018,Actors,@sarahdrew,@JakeBorelli kills me here!! Ha! +05/18/2018,Actors,@sarahdrew,Haha! That is very true!! https://t.co/RUFvAvVGVl +05/18/2018,Actors,@sarahdrew,Love that scene https://t.co/mk8jPx4y6W +05/18/2018,Actors,@sarahdrew,Final moment on the show... I love you @JessicaCapshaw https://t.co/a42PFtPWRi +05/18/2018,Actors,@sarahdrew,Check my insta later https://t.co/sERFNWiZFI +05/18/2018,Actors,@sarahdrew,Love that line https://t.co/eYPqhkxtLM +05/18/2018,Actors,@sarahdrew,Ok @GiacomoKG kills me here +05/18/2018,Actors,@sarahdrew,That sweet hug was our last moment in front of the camera. So very special. +05/18/2018,Actors,@sarahdrew,This scene right here is the last scene @JessicaCapshaw and I shot on grey’s. +05/18/2018,Actors,@sarahdrew,@camilluddington and @7JustinChambers are killing me! They are so funny! +05/18/2018,Actors,@sarahdrew,Check my insta in an hour :) https://t.co/I86dcc7Bms +05/18/2018,Actors,@sarahdrew,She’s doing medical work in homeless communities where she is really needed and can use her gifts. https://t.co/YAY8UTsGrq +05/18/2018,Actors,@sarahdrew,She’s a part of me. I’m a part of her https://t.co/KvrX8xfasI +05/18/2018,Actors,@sarahdrew,Kinda both https://t.co/KvrX8xwLkg +05/18/2018,Actors,@sarahdrew,Yes!!! https://t.co/Uwe1gT2aTb +05/18/2018,Actors,@sarahdrew,I really had no idea. It’s been an incredible ride. https://t.co/JMhBRUMy9G +05/18/2018,Actors,@sarahdrew,Absolutely https://t.co/D5tZOxdyjI +05/18/2018,Actors,@sarahdrew,Every single person https://t.co/0p3eAGY2Cy +05/18/2018,Actors,@sarahdrew,Check my insta account in an hour and I’ll tell you https://t.co/P43LfnmFn8 +05/18/2018,Actors,@sarahdrew,Sure https://t.co/PfZiNBOJT4 +05/18/2018,Actors,@sarahdrew,Thank you ❤️❤️😘😘 https://t.co/CPGGusqsex +05/18/2018,Actors,@sarahdrew,Oh yeah https://t.co/aSpNwkUjf6 +05/18/2018,Actors,@sarahdrew,When he told me my baby was a miracle https://t.co/S6bdTwSpp7 +05/18/2018,Actors,@sarahdrew,Jesse has made it clear that I have to say it’s him https://t.co/c7Um6gBAAJ +05/18/2018,Actors,@sarahdrew,Her courage and conviction and empathy https://t.co/zwNW7DvWQW +05/18/2018,Actors,@sarahdrew,When samuel died https://t.co/jiYiaN5IkF +05/18/2018,Actors,@sarahdrew,No- but I agree - it’s so pretty https://t.co/lnREcUVbZK +05/18/2018,Actors,@sarahdrew,I don’t really know https://t.co/N8m0UDo1dE +05/18/2018,Actors,@sarahdrew,FYI we were all FREEZING in our tiny dresses while we were shooting. Can you tell? +05/18/2018,Actors,@sarahdrew,Being in a beautiful place with everyone https://t.co/kEfDezcW3o +05/18/2018,Actors,@sarahdrew,Joyful and emotional https://t.co/OZBj5DSg82 +05/18/2018,Actors,@sarahdrew,I was just taking in all my final moments and soaking up the time with my people https://t.co/HW4Rzjn1Sk +05/18/2018,Actors,@sarahdrew,“All I could do was cry” https://t.co/tgkYBStMNh +05/18/2018,Actors,@sarahdrew,"Resilience, compassion, a fighting spirit https://t.co/AtBFqfxljj" +05/18/2018,Actors,@sarahdrew,The people I got to work with and the stories I got to tell https://t.co/0mfDKL5NiJ +05/18/2018,Actors,@sarahdrew,Well @JessicaCapshaw and @7JustinChambers have me crying already +05/18/2018,Actors,@sarahdrew,Hi friends! How’s it going?? +05/17/2018,Actors,@sarahdrew,This is so beautiful. Thank you! https://t.co/6Lhr5M7ccx +05/17/2018,Actors,@sarahdrew,❤️😭❤️😭 https://t.co/grxyFmEYqN +05/17/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/Ckdd4JckVr +05/17/2018,Actors,@sarahdrew,😘😘😘 https://t.co/0Y7wCLUTTb +05/17/2018,Actors,@sarahdrew,April Kepner signs off tonight. Come chat with me from 8-9pm EST tonight. ❤️❤️❤️ +05/17/2018,Actors,@sarahdrew,"Well @babsamiga , I’m here weeping. Thank you so much for this beautiful tribute. I loved every moment I had workin… https://t.co/UDpsp0xpIG" +05/17/2018,Actors,@sarahdrew,RT @JessicaCapshaw: Today’s the day...it’s finally here. Farewell Arizona Robbins!!! I’ll be live tweeting the WEST COAST airing tonight.… +05/16/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/BKIcVfdqDd +05/16/2018,Actors,@sarahdrew,Hey friends! I’d love to live chat with you one last time tomorrow!! Who’s in? Chat with me using #Asksarah from 8-… https://t.co/AAtwnA2ZcT +05/16/2018,Actors,@sarahdrew,Definitely laurel. I don’t understand what is happening? Do you hear yanny??? https://t.co/XwtZERhVCi +05/15/2018,Actors,@sarahdrew,😘😘😘 https://t.co/gLgWxFWfc9 +05/14/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/S36aeTmWzt +05/14/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/yDW4jNqw9P +05/14/2018,Actors,@sarahdrew,Guys- I will be spamming you with pictures this week ☺️☺️ +05/13/2018,Actors,@sarahdrew,Had such a blast watching my super talented friends @loudforestmusic KILL it at @elreytheatre last night!! Check ou… https://t.co/OqDbqlLMH9 +05/13/2018,Actors,@sarahdrew,This is so fun :) https://t.co/ONqIctq4rg +05/12/2018,Actors,@sarahdrew,"RT @sarahdrew: I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had the aweso…" +05/12/2018,Actors,@sarahdrew,"RT @sarahdrew: And if you wanna see the full length trailer , head over to my Facebook page here https://t.co/xo8NvEwBSj" +05/12/2018,Actors,@sarahdrew,Well this article just made me cry. Thank you for this tribute ❤️😘❤️😘 https://t.co/ssYtawDw0M +05/12/2018,Actors,@sarahdrew,Thank you @camilluddington !! I love you! https://t.co/z1uXfJITtF +05/12/2018,Actors,@sarahdrew,😘😢☺️ https://t.co/XGyH1yaeU2 +05/12/2018,Actors,@sarahdrew,Yay! So well deserved @iJesseWilliams !! Brilliant performance this week!!! https://t.co/MjLhBN8Nvi +05/12/2018,Actors,@sarahdrew,Faith by @jordan_feliz 😍😊😊😊 https://t.co/farDEpXQ2F +05/11/2018,Actors,@sarahdrew,"And if you wanna see the full length trailer , head over to my Facebook page here https://t.co/xo8NvEwBSj" +05/11/2018,Actors,@sarahdrew,"I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had… https://t.co/wSYTB3HHmn" +05/11/2018,Actors,@sarahdrew,"RT @aprilswarrior: badass april kepner at your service. @sarahdrew +https://t.co/r6cgqangSo" +05/11/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/1P4iyJSnSs +05/11/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/ptLlOP33T8 +05/11/2018,Actors,@sarahdrew,"RT @eonlineTV: If you thought last night's #GreysAnatomy was intense, wait until you see @SarahDrew's BTS photos. https://t.co/gVZ6SHuxMu h…" +05/11/2018,Actors,@sarahdrew,Love you right back Jesse. https://t.co/brCx3Aq6uY +05/11/2018,Actors,@sarahdrew,SPOILER: this one killed me too. Jesse is incredible in this scene https://t.co/M6ifhcDbDN +05/11/2018,Actors,@sarahdrew,Me too https://t.co/1x9BUoi4SK +05/11/2018,Actors,@sarahdrew,I love you #gingerbrother https://t.co/8W3VOXaTED +05/11/2018,Actors,@sarahdrew,I’m watching west coast!! I’ve got some pics to post on Instagram!!! +05/11/2018,Actors,@sarahdrew,Ok friends! Check my Instagram feed in 2 hours! I will post stories and BTS pics while I watch the episode here on the west coast! 😘😘❤️❤️ +05/11/2018,Actors,@sarahdrew,Oh boy... this scene.... check out my insta later and I’ll tell you all about what I was feeling while we shot it. https://t.co/Cy9I4I3WR3 +05/11/2018,Actors,@sarahdrew,SPOILER!! This line killed me too! https://t.co/JIz4BZp19U +05/11/2018,Actors,@sarahdrew,Yesssss!!!!!! https://t.co/eLVZKrfu1Z +05/11/2018,Actors,@sarahdrew,Yes https://t.co/2fSpIS664Y +05/11/2018,Actors,@sarahdrew,SPOILER!!!!!!!!! I loved this line too!!! https://t.co/hPSLi18Syf +05/11/2018,Actors,@sarahdrew,Ok this made me laugh https://t.co/Uic5aygHpW +05/11/2018,Actors,@sarahdrew,😘😘😘 https://t.co/sCwAkihEzM +05/11/2018,Actors,@sarahdrew,Committed https://t.co/8ub60hrvSj +05/11/2018,Actors,@sarahdrew,"Well, I was only on the table part of the time. They made a doll of me! CHeck out my insta later and I’ll tell you… https://t.co/D94cr75PvH" +05/11/2018,Actors,@sarahdrew,Thank you for this. I’m so sorry for your loss. Sending you love. https://t.co/CD8NEXoV5H +05/11/2018,Actors,@sarahdrew,Yes you are :) https://t.co/5PsFKVimv1 +05/11/2018,Actors,@sarahdrew,Thank you for sharing his with me. Sending you so much love! https://t.co/DSCkqAhLWj +05/11/2018,Actors,@sarahdrew,All of them. All the emotions. Check my insta later and I’ll explain. https://t.co/ZOTGNf2onw +05/11/2018,Actors,@sarahdrew,Yes. https://t.co/N6E6Key9vX +05/11/2018,Actors,@sarahdrew,RT @_JoyChappell: “I don’t care how you do it or who you do it to. April would want us to pray for her” 💔@GreysABC #thismoment #toospecial… +05/11/2018,Actors,@sarahdrew,The really long one :) all the parts of it. It was a beautiful experience through and through https://t.co/iooFWcax7T +05/11/2018,Actors,@sarahdrew,Sure did https://t.co/eQ2YPS402r +05/11/2018,Actors,@sarahdrew,Ummm. Yes. There were SO many tears https://t.co/X1U1IiT577 +05/11/2018,Actors,@sarahdrew,Just so much love https://t.co/ZwqUn3d99u +05/11/2018,Actors,@sarahdrew,Yes yes and yes!!! https://t.co/goNtDY2ap4 +05/11/2018,Actors,@sarahdrew,I haven’t seen it yet. I’ll watch it in a few hours https://t.co/hAcnIW8FdY +05/11/2018,Actors,@sarahdrew,😘😘😘 https://t.co/CXsXjTWmn7 +05/11/2018,Actors,@sarahdrew,Thank you for sharing this with me. https://t.co/TCNqnQjG9Z +05/11/2018,Actors,@sarahdrew,She makes me laugh so hard! https://t.co/BEmo9GJOn5 +05/11/2018,Actors,@sarahdrew,"Samuel’s death, telling Jackson I had to move out, the scene with Eli, and one other that I’ll keep to myself. https://t.co/L0KmwtCzZA" +05/11/2018,Actors,@sarahdrew,Thank you so much for this! https://t.co/ZvXwn9Ko2T +05/11/2018,Actors,@sarahdrew,YES!!! I’ve seen @JessicaCapshaw @caterinatweets @TheRealKMcKidd #chandrawilson this week and I’ve spoken to… https://t.co/2hUfBgnrRF +05/11/2018,Actors,@sarahdrew,I had so many feelings. Check out my insta during west coast feed and I’ll share a bunch! https://t.co/GEwHUa6CM5 +05/11/2018,Actors,@sarahdrew,Yes 😢 https://t.co/13Kyl2rUVg +05/11/2018,Actors,@sarahdrew,I bawled my eyes out and then when I saw #billharper I thanked him for writing such a gorgeous tribute to April. It… https://t.co/V2MjU3XfJX +05/11/2018,Actors,@sarahdrew,Choose joy. No matter the circumstances- choose joy. Chandra Wilson taught me that! https://t.co/Et0HeUPWIb +05/11/2018,Actors,@sarahdrew,I love it! https://t.co/PK8xB0NSE0 +05/11/2018,Actors,@sarahdrew,I was told on March 6th https://t.co/AVVhmUXmvw +05/11/2018,Actors,@sarahdrew,No. But Bill Harper did a gorgeous job with this episode! I think it is a beautiful tribute to April. https://t.co/U1qAlJziaP +06/29/2018,Actors,@IamSandraOh,https://t.co/LXGMCZVEBJ +06/27/2018,Actors,@IamSandraOh,My ❤️ 2 LA Ktown . Wish I were there! 🇰🇷! +06/27/2018,Actors,@IamSandraOh,#Koreaworldcup!!! Omg! Calling Dad now!!! +06/27/2018,Actors,@IamSandraOh,Omg 🇰🇷!!!!!! +06/19/2018,Actors,@IamSandraOh,And it’s On! https://t.co/ha4Rpt7eIx https://t.co/FfF5qc9UcX +06/05/2018,Actors,@IamSandraOh,I want to thank All who tuned in for @KillingEve S1 Let’s do it again shall we? Much 💚 s https://t.co/WOf2D0Rqpd +05/27/2018,Actors,@IamSandraOh,https://t.co/XgPpWLCWYT +05/27/2018,Actors,@IamSandraOh,Finale! What a ride! @KillingEve Finale Tonight https://t.co/myuwu9CtGo +05/23/2018,Actors,@IamSandraOh,It was so great to meet & share w/ all these phenomenal women. Thank You! @THR https://t.co/Z6y9kiSnJV +05/20/2018,Actors,@IamSandraOh,Happiness in Windsor https://t.co/DIHEaJr4zA +05/20/2018,Actors,@IamSandraOh,Omg how’s it Ep 7 @KillingEve already? Tonight on @BBCAMERICA https://t.co/OAFRYV8COJ +04/22/2018,Actors,@IamSandraOh,Ep3 @KillingEve 2nite 7/8 pm on @BBCAMERICA I 💚 Bill (David Haig) https://t.co/tqQ3cgRpUi +04/22/2018,Actors,@IamSandraOh,Tonight’s 3rd ep @KillingEve https://t.co/ZUHMPcu1Tw +04/22/2018,Actors,@IamSandraOh,https://t.co/ZUHMPcu1Tw +04/16/2018,Actors,@IamSandraOh,2nd ep @KillingEve asset 💣 It’s tonight @ 8pm @BBCAMERICA https://t.co/ZY3fbiEagZ +04/14/2018,Actors,@IamSandraOh,/w my 2 longtime collaborators Diana Son&Mina Shum. Come see #meditationparkmovie @ aero theatre in SM 2nite 8pm. S… https://t.co/E9EevGQ5uK +04/13/2018,Actors,@IamSandraOh,Hellooo! Guess what? You can see premiere episode of @KillingEve for Freebees! https://t.co/tA8iBblG9E pls check it out +04/06/2018,Actors,@IamSandraOh,"RT @TIME: ""'Killing Eve' isn't your average mystery series. Here’s how it breaks the mold"" https://t.co/UPnBkZJEHS" +04/06/2018,Actors,@IamSandraOh,@ComerJodie @KillingEve @BBCAMERICA - Jode I 💚 u! +04/05/2018,Actors,@IamSandraOh,"RT @voguemagazine: In Killing Eve, @IamSandraOh finally gets the post-Grey's Anatomy role she deserves. https://t.co/RhrqolSC9Z" +04/05/2018,Actors,@IamSandraOh,"RT @rachelnpr: Had the most lovely conversation with @IamSandraOh who told me that since she left #GreysAnatomy 4 yrs ago she has been ""act…" +04/05/2018,Actors,@IamSandraOh,Heading 2 chat all about #KillingEve w/ @klgandhoda..I think I’ll be on in 25 mins - #whirlwindtour +04/03/2018,Actors,@IamSandraOh,Asset 💣-ing Yous! @KillingEve @BBCAMERICA April 8 8pm. (This was one of favorite scs) https://t.co/WZepcTLrZG +03/30/2018,Actors,@IamSandraOh,Hey All so I’ve got a bunch of “assets” I’m gonna drop all over yous in next weeks b4 @KillingEve April 8 BBC Ameri… https://t.co/SuxgybUQez +03/20/2018,Actors,@IamSandraOh,So excited Killing Eve is coming soon! And going places! https://t.co/Ar4N1IINPH +03/20/2018,Actors,@IamSandraOh,Killing Eve’s 2nd trailer https://t.co/GeFd91igsl +03/10/2018,Actors,@IamSandraOh,Meditation Park opening in theatres in 🇨🇦 Netflix 🇺🇸🇬🇧🇦🇺 Congratulations & 💕 2 Mina Shum longtime collaborator. Sti… https://t.co/bFngFWByof +03/08/2018,Actors,@IamSandraOh,"🇨🇦 ! My ♥️ & Soul - Meditation Park is premiering in the following theatres - Van : 5th Ave, TO : Varsity, Ottawa… https://t.co/wF7Dcsad81" +03/05/2018,Actors,@IamSandraOh,"Mina made a beautiful love letter to Mothers from another generation, another culture who are continuing 2 find themselves. ❤️❤️❤️" +03/05/2018,Actors,@IamSandraOh,If you’re Not Asian but still have a mom- watch this film w/ her! +03/05/2018,Actors,@IamSandraOh,"Seriously, if you’re Asian and you have a mom (I know you do) - watch this with her! https://t.co/yHeaDxZISQ" +03/05/2018,Actors,@IamSandraOh,My film Meditation Park is coming out this Friday March 9th on Netflix! https://t.co/PPzMvmDKG5 +01/21/2018,Actors,@IamSandraOh,@womensmarch @sundancefest w/ PhoebeWallerBridge & @jodiemcomer. Beautiful Snowy Thoughtful Empowering day.… https://t.co/fXimYvKwRH +01/12/2018,Actors,@IamSandraOh,Oh it must b the new show coming this spring! @KillingEve I’m so excited to share w/ All. @BBCAMERICA More to come! https://t.co/luI0L2Lkox +01/12/2018,Actors,@IamSandraOh,Hey what’s this lady talking about? @KillingEve https://t.co/u9WcOukfWZ +11/23/2017,Actors,@IamSandraOh,Another win @WindowHorses https://t.co/pI7tbRARKJ +11/18/2017,Actors,@IamSandraOh,@WindowHorses me & AMF https://t.co/Sdcckjhscx https://t.co/D5OYYtMsio +11/15/2017,Actors,@IamSandraOh,Btw ❤️ fr 🇷🇴 shooting final block @KillingEve ! @BBCAMERICA next spring https://t.co/HFrvDATSuc +11/15/2017,Actors,@IamSandraOh,@WindowHorses is screening @34th st cinema NYC! Till nov16th check it out on the big screen 📺 +11/15/2017,Actors,@IamSandraOh,@WindowHorses fans! https://t.co/ArioiJoBBv +11/10/2017,Actors,@IamSandraOh,@WindowHorses @nytimes critics pick! https://t.co/mXi3ut9pYz +09/29/2017,Actors,@IamSandraOh,Congrats #MeditationPark opening @VIFFest last night! ❤️2 cast & @MinaShum 💚fr across the 🌊 https://t.co/mvDMs2aBLv +09/21/2017,Actors,@IamSandraOh,"W/ @LukeJennings1 & @AkramKhanLive #ENBGiselle This powerful reimagined work is manna. Bravo Company, @TamaraRojo1… https://t.co/NFrqVKVxLD" +07/05/2017,Actors,@IamSandraOh,Happy 😊 4th of July to All! 🇺🇸 +06/13/2017,Actors,@IamSandraOh,Working again! https://t.co/XRZ5nVqlBw +05/04/2017,Actors,@IamSandraOh,"Our usual Musso's outing, me Kev Joan & Tony. So much love https://t.co/A5DzaCgIHJ" +04/14/2017,Actors,@IamSandraOh,Maya!! Thank U! Hope u can make the next play. #wildgoosedreams @PublicTheaterNY txs avail 4 weekend! https://t.co/AXXR6TyRBr +04/14/2017,Actors,@IamSandraOh,Amazing cast #WildGooseDreams txs only 15$! Still avail! @PublicTheaterNY see you 2nite/2morrow only https://t.co/z0TN9Gk0Mq +04/14/2017,Actors,@IamSandraOh,Me & wonderful James Yaegashi writ:Hansol Jung & dir:Leigh Silverman in back. Wild Goose Dreams @PublicTheaterNY tx… https://t.co/CZ405NvJCU +04/14/2017,Actors,@IamSandraOh,2 All in the NYC area! Come see #WildGooseDreams @PublicTheaterNY txs still avail! https://t.co/s65ekoTUGM +04/07/2017,Actors,@IamSandraOh,In tech @PublicTheaterNY 4 #publicstudio #WildGooseDreams 1st performance 2nite ack!! https://t.co/teo9rmJIU5 +03/10/2017,Actors,@IamSandraOh,Wassup TO! @WindowHorses is premiering there too https://t.co/KysyC5RCjH +03/10/2017,Actors,@IamSandraOh,https://t.co/Jd2hBPYgB3 +03/10/2017,Actors,@IamSandraOh,"@WindowHorses Canadian premiere today! Cineplex Odeon International Village Cinemas in Van, check it out! https://t.co/82ZyUvxCKq" +03/09/2017,Actors,@IamSandraOh,"I yelled ""Say Vagina!"" https://t.co/vtmi56ebLs" +03/09/2017,Actors,@IamSandraOh,Making film w/ amazing women on #InternationalWomensDay can't think of a better way to spend my day! https://t.co/6wSeERErof +03/08/2017,Actors,@IamSandraOh,"In a packed van w/ cast of Meditation Park. Cheng Pei Pei, @tzima8 Ma, @zaksantiago https://t.co/42WpuSjezD" +03/06/2017,Actors,@IamSandraOh,"Also @WindowHorses march 10 international village vancouver +march 9 preview with amf at bell lightbox" +03/06/2017,Actors,@IamSandraOh,American Crime starts march 12th! Check it out Sunday https://t.co/xeLj2YZ2YB +03/06/2017,Actors,@IamSandraOh,https://t.co/F2wmyXo0Dm +03/03/2017,Actors,@IamSandraOh,"Catfight comes out in theaters, VOD and on @itunes today 3/3! #catfightmovie" +03/03/2017,Actors,@IamSandraOh,#CatfightMovie premiere w/ beautiful @AnneHeche @AliciaSilv last night https://t.co/nYnQarGRu3 +03/03/2017,Actors,@IamSandraOh,Me Anne Alicia & Gigi (producer) Catfight women @ premiere. That's director Onur's arm https://t.co/geC0nVK3BI +03/03/2017,Actors,@IamSandraOh,On my way 2 #catfightmovie premiere @cinefamily now! https://t.co/iBO9eU2qbM +03/03/2017,Actors,@IamSandraOh,https://t.co/0Ata5kj2uc +03/02/2017,Actors,@IamSandraOh,Woo hoo @nytimes critics pic! https://t.co/jTIg8yUztp +03/01/2017,Actors,@IamSandraOh,@AmericanCrimeTV airing soon! March 12th 9/10 pm. Please watch! +03/01/2017,Actors,@IamSandraOh,1st day of shooting on Meditation Park w/ Mina Shum & Peter Wunstorf 23 yrs after Double Happiness!!! https://t.co/Hcs16jGDZr +02/22/2017,Actors,@IamSandraOh,@adamcarolla fans! I'll b on 2nite w/ @AnneHeche 4 @catfightmovie! 9pm I think? +02/22/2017,Actors,@IamSandraOh,#catfightmovie ! https://t.co/O9qAvJswau +02/02/2017,Actors,@IamSandraOh,Walking 2 theatre @WindowHorses premiere SB film fest! https://t.co/kw1sFS3y9e +02/02/2017,Actors,@IamSandraOh,"@margopossible Thank u Margo, you're the best friend imaginable love San" +02/02/2017,Actors,@IamSandraOh,RT @margopossible: Beautiful. Necessary. Open your mind. Open your heart. See others for their common humanity. https://t.co/illHb5Yn2I Tha… +01/28/2017,Actors,@IamSandraOh,Dearest All previous tweet is regarding @WindowHorses is coming to Santa Barbara Film Festival @sbiff this week!! +01/28/2017,Actors,@IamSandraOh,More than ever we need these stories to spread light over the darkness of policies than ban our Muslim brothers and sisters from our shores. +01/28/2017,Actors,@IamSandraOh,@WindowHorses is about a Chinese-Iranian-Canadian young woman who loves poetry. +01/28/2017,Actors,@IamSandraOh,@WindowHorses is coming 2 Santa Barbara FF this week! https://t.co/Hjnpt0cWzn +01/28/2017,Actors,@IamSandraOh,Check it out folks I've got some work coming out soon https://t.co/pfQiQYwney +01/28/2017,Actors,@IamSandraOh,It's coming! https://t.co/7eOYLsf4eV +01/22/2017,Actors,@IamSandraOh,Amazing 2 spend the day w/ fellow Angelenos & All around the world Letting our Voices Be Heard! Let us Be the Change https://t.co/94cprIEY4Z +01/21/2017,Actors,@IamSandraOh,W/ Susan & Laurs by City Hall. Beautiful Day! Peaceful Rally https://t.co/wCwPf6MUSG +01/21/2017,Actors,@IamSandraOh,W/ friend at the march https://t.co/mvC5yfAwwO +01/21/2017,Actors,@IamSandraOh,Trying to get to @WomenMarchPDX LA! It's tough cos so many of us!!!! https://t.co/z8IcJdxTZO +01/20/2017,Actors,@IamSandraOh,@HillaryClinton - that's Soul Power right there How can we stand w/ grace and dignity by those we disagree? Watch @POTUS44 @HillaryClinton +01/20/2017,Actors,@IamSandraOh,"Thank you to my president & First Lady #BarackObama & #MichelleObama, continuing to lead w/ the highest human qualities. We were blessed." +01/20/2017,Actors,@IamSandraOh,@TheRoot on set @GreysABC doing a scene w/ eric Stoltz. We cried then and we cry now. +01/20/2017,Actors,@IamSandraOh,I'm watching (w/ sound off) cos Im trying to hold what devastates me w/ calm and the strength of an open heart. It's raining here in LA 😓 +01/20/2017,Actors,@IamSandraOh,#ThankYouObama +01/20/2017,Actors,@IamSandraOh,"RT @POTUS: I won't stop; I'll be right there with you as a citizen, inspired by your voices of truth and justice, good humor, and love." +01/20/2017,Actors,@IamSandraOh,"RT @POTUS: I'm still asking you to believe - not in my ability to bring about change, but in yours. I believe in change because I believe i…" +12/16/2016,Actors,@IamSandraOh,"Hey All - I'm on @KPCC at 7 tonight. The awesome James Kim asked me a bunch of ??about the Joy Luck Club, remember that one? Safe in the ☔️" +11/19/2016,Actors,@IamSandraOh,@HamiltonMusical #ImmigrantsWeGettheJobDone from a fellow immigrant 2x - Korean & Canadian +11/19/2016,Actors,@IamSandraOh,The new president elect is telling us what he thinks of our nations great artists @HamiltonMusical. More than ever we need to make Art. +11/19/2016,Actors,@IamSandraOh,@HamiltonMusical cast - This is the Power of Artists. Most wise & brave. Thank U. I stand w/ u & will try to do the same. +11/19/2016,Actors,@IamSandraOh,"RT @HamiltonMusical: Tonight, VP-Elect Mike Pence attended #HamiltonBway. After the show, @BrandonVDixon delivered the following statement…" +11/03/2016,Actors,@IamSandraOh,@CAAM panel last night w/ Grace Lee Craig Robinson Karen Horne Rashad Raisani Richard Lui. https://t.co/G55VJriSii +09/27/2016,Actors,@IamSandraOh,@WindowHorses @CIFF & VIFF. https://t.co/TVQEBJ9CV4 +09/25/2016,Actors,@IamSandraOh,RT @sleepydogfilms: 5 more days to vote for @WindowHorses for #mustseeBC films #VIFF2016 https://t.co/JUh2R6XBXv +09/25/2016,Actors,@IamSandraOh,Dear All pls vote for Window Horses @VIFF https://t.co/BycRYA23kY +09/21/2016,Actors,@IamSandraOh,Please come! Vote too! https://t.co/J1Fj75PaEb +09/21/2016,Actors,@IamSandraOh,Please come! https://t.co/9qlc1V41uf +09/21/2016,Actors,@IamSandraOh,The ByTowne?! Fantastic I saw so many films there in my youth - wassup hometown Ottawa!! https://t.co/LR3zkSKxNC +09/21/2016,Actors,@IamSandraOh,Please vote 4 our little film! https://t.co/cXDHJeR4lO +09/20/2016,Actors,@IamSandraOh,"RT @WindowHorses: Please vote for our little film about love of family, poetry, history, and culture! https://t.co/bVIT6ZTMal #VIFF https:/…" +09/20/2016,Actors,@IamSandraOh,RT @sleepydogfilms: There's a great lineup of #mustseeBC films at VIFF 2016. keep voting for @windowhorses ! https://t.co/JUh2R6XBXv +09/19/2016,Actors,@IamSandraOh,Seriously seeing 4 fellow Asian peeps up on that stage fills me with hope and just F yeah!! +09/19/2016,Actors,@IamSandraOh,Omg More Asians on the Emmy stage! Unbelievable! Yay @parkrandall & @ConstanceWu !! +09/19/2016,Actors,@IamSandraOh,Woo hoo Alan Yang and Aziz Ansari Emmy win4 @MasterofNone! You tell it Alan! Go AA brother & sisters +09/13/2016,Actors,@IamSandraOh,Me & Don looking perplexed. https://t.co/LeK513n2kX +09/13/2016,Actors,@IamSandraOh,Meeting up w/ some lovely audience members. https://t.co/JS2okoegjg +09/13/2016,Actors,@IamSandraOh,Me & Don McKellar & AMF watching the screening of @WindowHorses https://t.co/TY2wQaxMpg +09/13/2016,Actors,@IamSandraOh,Finishing of @TIFF_NET w/ Classic Poutine! https://t.co/q6KT8274mZ +09/13/2016,Actors,@IamSandraOh,Congrats to the #tiff_net #birks Canadian women of film https://t.co/m6NJmRpLpm +09/12/2016,Actors,@IamSandraOh,Quick coffee before #catfightfilm #tiff_net dream team panel @anneheche @otukel https://t.co/FXqqC2UPDs +09/12/2016,Actors,@IamSandraOh,Getting ready with my dream team! #tiff_net @kimikobeauty @Lisa_Vella ashmokma https://t.co/WRAGOGaln1 +09/11/2016,Actors,@IamSandraOh,Introducing @WindowHorses ! The screening went well thanks all for coming https://t.co/6VGMbp24zo +09/11/2016,Actors,@IamSandraOh,AMF & I heading to the @WindowHorses premiere @TIFF_NET https://t.co/MIGSe2JfBe +09/11/2016,Actors,@IamSandraOh,A little late but here r some pics from #catfightfilm premiere- it was crazy and super fun! https://t.co/TTbzPnUc5s +09/10/2016,Actors,@IamSandraOh,I promise to send out pics from the Catfight premiere! +09/10/2016,Actors,@IamSandraOh,We're so in sync hour outfits complimented each other so well! Can't wait for the shots to come out +09/10/2016,Actors,@IamSandraOh,Some fave shots from our #catfightfilm press day @TIFF_NET of me & anne https://t.co/UpSK7VbjuH +09/09/2016,Actors,@IamSandraOh,Photobombing @AnneHeche !! Love that girl https://t.co/WUuB9Pinmh +09/09/2016,Actors,@IamSandraOh,I'll try to send out missives all weekend for #catfightfilm & @WindowHorses +09/09/2016,Actors,@IamSandraOh,In the car on first press day @TIFF_NET #catfightfilm +09/09/2016,Actors,@IamSandraOh,https://t.co/9cbPtvA62Y +09/09/2016,Actors,@IamSandraOh,https://t.co/zE9oFtZnoO +08/21/2016,Actors,@IamSandraOh,Thank u #TragicallyHip 4 being the soundtrack of my youth. #GordDownie the great artist 4 holding us All. #haveagoodlife +08/03/2016,Actors,@IamSandraOh,Oh and that other pic was of the gorgeous @AliciaSilv & @AnneHeche Abe moi!! Go cast of Catfight rrrrowwrr!! +08/03/2016,Actors,@IamSandraOh,And @WindowHorses has a Special Screening 2 @TIFF_NET !! Me & AMF signing away!! https://t.co/2RAFtUPdzg +08/03/2016,Actors,@IamSandraOh,Hello Catfight! Special screening @TIFF_NET https://t.co/bf65GktDWB https://t.co/mXc5BfJNHj +07/21/2016,Actors,@IamSandraOh,Forget it! The Best Bday w/ cast of @HamiltonMusical thank you @Lin_Manuel https://t.co/PjqIgYx7sP +07/02/2016,Actors,@IamSandraOh,Happy Canada Day All!!❤️❤️❤️🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦 https://t.co/oamp5XYbSr +06/22/2016,Actors,@IamSandraOh,Dearest All - I appreciate the fans & just 2 let u know @iamsandraohinsta is my official Instagram acct. +06/22/2016,Actors,@IamSandraOh,Testing from home office https://t.co/yMq9lebHUJ +06/10/2016,Actors,@IamSandraOh,"On the Bus 2 Marrakech w/ the company! Stan,EJ, Ayo, Rey, Christine, Yara & me https://t.co/JE9Y2cye4L" +06/10/2016,Actors,@IamSandraOh,Wild Goose Dreams fearless playwright & terrific singer/songwriter Hansol Jung & = terrific actor & Singer Tim Kang https://t.co/cutqIzQZ11 +06/10/2016,Actors,@IamSandraOh,More Wild Goose Dreams rehearsal. I really hope to do a production!! Here Paul Castles our composer https://t.co/4G83O7v9vF +06/10/2016,Actors,@IamSandraOh,Here's the whole company! @sundancelabs. It was truly one of the Best creative experiences I've ever had. Thank U! https://t.co/VOJFEoskNx +06/10/2016,Actors,@IamSandraOh,Rehearsing Hansol Jung's Wild Goose Dreams @sundancelabs in Morocco. Yes I'm loving the theatre roots my friends... https://t.co/1Nk8ietIdw +06/10/2016,Actors,@IamSandraOh,"Btw been @sundancelabs MENA in Morocco all last mo. Ignacia,Indhu Debra & me. Love the Colour! https://t.co/4Dxs5hDbp6" +06/10/2016,Actors,@IamSandraOh,So much love 2 @caterinatweets Yay Canada. But he's Myyy Tv hubby! 😉. 💕 2 Owen & Amelia https://t.co/Ilk8UeC4l2 +06/10/2016,Actors,@IamSandraOh,"And wait - my TV husband has a new TV wife?? Xqueez me? I don't think so, Ha! Owen what r u thinking?? https://t.co/qfxwyKCbQV" +06/10/2016,Actors,@IamSandraOh,Hangin w/ the Usual Suspects @TonyTphelan & @TheRealKMcKidd last nite https://t.co/ga0HPvB5hZ +05/07/2016,Actors,@IamSandraOh,"@windowhorses is in the annecy int'l animation festival! it's our world premier! #annecyfestival +Go Window Horses!!" +04/29/2016,Actors,@IamSandraOh,Chillin out w/ Ray & Sola - we're watching @GreysABC & Tuscan Sun ha! It's closing wknd Office Hour. Home stretch! https://t.co/hmtPDC3TJA +04/24/2016,Actors,@IamSandraOh,RT @TheRealKMcKidd: You alls should .. Cos it's amazing - I can attest to that !:) https://t.co/dm15515B2a +04/23/2016,Actors,@IamSandraOh,Come 2 the theatre coz Office Hour @SouthCoastRep exists! Where else R we? Share! 🙋🏻 +04/23/2016,Actors,@IamSandraOh,"I'm grateful the LA & NY times R writing abt this. We carry this in our ❤️s every day. Know This: I see You, I am You. Come 2 the theatre!" +04/23/2016,Actors,@IamSandraOh,READ THIS: https://t.co/qvHDQbyMco +04/20/2016,Actors,@IamSandraOh,And friggin come see me and Ray Lee in Julia Cho's play Office Hour!!! @SouthCoastRep !! +04/20/2016,Actors,@IamSandraOh,Our Own stories that Don't include us?send a msg: Tank those effen films. It's in our power. Find ourselves in Ourselves. +04/20/2016,Actors,@IamSandraOh,U know what I do about it? I come 2 the theatre and give my heart & soul. Come see Office Hour @SouthCoastRep This is where we mofo R! +04/20/2016,Actors,@IamSandraOh,READ THIS: https://t.co/BoNNqcB2AC +04/20/2016,Actors,@IamSandraOh,My amazing cast mates Ray Lee @BrillCorey @CrownLikeHoney Sola Bamis See us in Office Hour! https://t.co/16XUdQr6UG https://t.co/OsgpsOJXG4 +04/17/2016,Actors,@IamSandraOh,The beautiful Sola Bamis in our dressing room b4 2nites show of Office Hour @SouthCoastRep https://t.co/A7RyB147H7 +04/17/2016,Actors,@IamSandraOh,One of the best things about Opening Night - (yesterday I know) all the Flowers. Thank u I love them https://t.co/v35OD0YQMy +04/16/2016,Actors,@IamSandraOh,Notes b4 Opening Nite 4 Office Hour @SouthCoastRep We're looking @ Julia Cho the playwright who laying there... https://t.co/MehWAKYzBc +04/15/2016,Actors,@IamSandraOh,My amazing cast mates Ray Lee @BrillCorey @CrownLikeHoney Sola Bamis See us in Office Hour! https://t.co/16XUdQr6UG https://t.co/WTpwm2x1pE +04/15/2016,Actors,@IamSandraOh,Me & Ray Lee & playwright Julia Cho sneaking in backgrd ha. Opening Night of Office Hour @SouthCoastRep 2nite! Ack!! https://t.co/qjBZZjOyh2 +04/08/2016,Actors,@IamSandraOh,Come see my fanTastic acting partner Raymond Lee on stage. https://t.co/16XUdQr6UG https://t.co/mjzr2otGBm +04/07/2016,Actors,@IamSandraOh,My onstage entrance! (I don't do the hands up) https://t.co/16XUdQr6UG Come check it out. https://t.co/Ces68lEYtw +04/07/2016,Actors,@IamSandraOh,"Dearest All (hey AA & KAs!) watch this, tell me what u think. https://t.co/PVmZghK5sA" +04/06/2016,Actors,@IamSandraOh,On stage rehearsing Office Hour @SouthCoastRep w/ @BrillCorey & @CrownLikeHoney https://t.co/16XUdQr6UG https://t.co/Okt2UVkRbt +03/12/2016,Actors,@IamSandraOh,RT @JustinTrudeau: Nos artistes sont des atouts pour le Canada aux É.-U. et dans le monde entier. https://t.co/WnNv2MEiUO +03/12/2016,Actors,@IamSandraOh,RT @JustinTrudeau: Our talented artists are a credit to Canada in the US & around the world. #StateDinner https://t.co/IWyBosGjCn +03/11/2016,Actors,@IamSandraOh,In the elevator on way back 2 hotel from White House State dinner honoring the Canadian PM @JustinTrudeau. https://t.co/Ghd7w6Cykv +03/11/2016,Actors,@IamSandraOh,Shaking hands w/ @BarackObama @POTUS. Canada US love https://t.co/Vp31QtCJow +03/11/2016,Actors,@IamSandraOh,@WhiteHouse w/ @JustinTrudeau and lovely Malia Obama. So proud of our Canadian PM & 2 b Canadian! https://t.co/5OJLfdNAHC +01/22/2016,Actors,@IamSandraOh,Omg it's Cristina Teddy & Owen reunion! (And Tony) Look how handsome and brooding Kev is! Happy New Year All! https://t.co/AHnUIaEpq8 +11/16/2015,Actors,@IamSandraOh,That was a pic of me and the wonderful Trudy Goodman & Jack Kornfield @InsightLA 's Joyful Spirit ystrdy +11/16/2015,Actors,@IamSandraOh,https://t.co/s39W2zkjDf +11/10/2015,Actors,@IamSandraOh,"RT @InsightLA: ILA in the LA TImes! Check out the article on the ""Pioneers of Mindfulness"" and ILA's upcoming Nov. 15th benefit. http://t.c…" +11/10/2015,Actors,@IamSandraOh,RT @DaphneZuniga: Join gr8t teachers! @InsightLA @TaraBrach @JackKornfield @BabaRamDass @RepTimRyan #josephgoldstein #jonkabatzin https://t… +11/10/2015,Actors,@IamSandraOh,Nov.15th: A Meeting of the Mindful https://t.co/0pvOgA7sLV via @HPLifestyle +11/06/2015,Actors,@IamSandraOh,"Some gorgeous Asian Canadian artists! Me, Amf & Mina Shum. That's alot of collaboration in 1 pic. https://t.co/tIFD9rf2dp" +11/06/2015,Actors,@IamSandraOh,So excited 2b hosting Living w/ a Joyful Spirit & Wise Heart nxt Sunday Nov 15th! https://t.co/tTv0RNlNPv +10/20/2015,Actors,@IamSandraOh,Another reminder b4 I go silent 4 10 days! Come Join! https://t.co/2YacrVp6DN +10/19/2015,Actors,@IamSandraOh,Here's the link to #ShittyBoyfriends https://t.co/22BKll0IgV check it out and dump ur shitty boyfriend! +10/19/2015,Actors,@IamSandraOh,Oh and I'm in a show! #ShittyBoyfriends on @Refinery29 from @LisaKudrow & @danbucatinsky (love) check it out! +10/19/2015,Actors,@IamSandraOh,John Oliver @lastweektonight brilliant : https://t.co/bhaVwjufoc Vote Canada! +10/17/2015,Actors,@IamSandraOh,"1 way 2 peace in mind/heart, I invite u: http://t.co/2YacrVp6DN" +10/17/2015,Actors,@IamSandraOh,How? How? I don't know what it is yet. I call on all AA artists to forge a new path. I am with you. +10/17/2015,Actors,@IamSandraOh,You guys know I like never tweet but I'm just so heartbroken over what is still not changing. I'm trying 2 find a way outside the system. +10/17/2015,Actors,@IamSandraOh,"Dearest all esp AA artists, who's tired of it? Who wants to change how we are seen? How do we change how we see ourselves? That's the key." +10/17/2015,Actors,@IamSandraOh,Thousands Protest Choice of White Actress for ‘Pan’s’ Tiger Lily http://t.co/AtYhU2EzwC via @Variety +10/17/2015,Actors,@IamSandraOh,Dear all esp AAs: Ridley Scott accused of 'whitewashing' Asian roles in The Martian http://t.co/p6nAcYOD3y - Time 4 Change +09/28/2015,Actors,@IamSandraOh,@lifeisbeautiful @kendricklamar http://t.co/kUY9qaAyqa +09/10/2015,Actors,@IamSandraOh,Hey All check out #BriefButSpectacular - take on mindfulness & meditation. Who all here meditates? What do u do 2 try 2 b mindful? +08/28/2015,Actors,@IamSandraOh,SRB!!! Improv ruled my life and I'm forever grateful for it. Thx @CanadianImprov & mrs TG & Winney & all teammates. http://t.co/MLp9BlRZhm +08/28/2015,Actors,@IamSandraOh,Still friends w/ all the girls I met. Love 2 Margo Marianne Allison Christine & Jen! http://t.co/aDzOSCVxt3 +08/28/2015,Actors,@IamSandraOh,Finally moved mum&dad out West. Had to say farewell to a few memorable places; http://t.co/4iVd0rjjLq +08/22/2015,Actors,@IamSandraOh,@TirganFestival in TO w/ ann marie 4 #windowhorses. Previewed new clips! It's coming along! http://t.co/aHCvq4ZrzT +08/18/2015,Actors,@IamSandraOh,me & @TheRealKMcKidd at his belated bday dinner. May u catch Brave New Waves all this year dearest friend. http://t.co/RS05NyOROe +05/18/2015,Actors,@IamSandraOh,Shout out 2 John Cho who I just heard on NPRs the World. Much love to all AA brothers! U sexy bunch of men! Hey John! +05/07/2015,Actors,@IamSandraOh,Sending Mucho Amour 2 all the KAs out there! http://t.co/L7SdOpmTqd +05/03/2015,Actors,@IamSandraOh,"So excited 2 receive @KA_Story Trailblazer Award 5.05.15 +Pls join! http://t.co/tmRXU2xMly" +05/03/2015,Actors,@IamSandraOh,Why r all the pics of me&Kev so dark? Sorry! My ancient phone. Love and hellos to All from the Valley http://t.co/MJN7WsOkvX +04/15/2015,Actors,@IamSandraOh,Who knows these mugs? Any Arli$$ fans out there? Out 2nite w/Michael Boatman&Jim Turner. I friggin love these guys! http://t.co/Jk0UqNUvWu +04/10/2015,Actors,@IamSandraOh,@TheRealKMcKidd @shondarhimes @margopossible Wow what do u think? Does it hold up? +04/10/2015,Actors,@IamSandraOh,"@TheRealKMcKidd @GreysABC, Kev tell that Hanley that his mug is as ugly as ever and my heart misses him." +07/02/2018,Actors,@SaraRamirez,@robynochs @AshleyWylde @anorianb 💯 🙌🏽🙌🏽🙌🏽💜 +07/02/2018,Actors,@SaraRamirez,@andymientus Baby @andymientus !!! Love it. And love you! 💜 +07/02/2018,Actors,@SaraRamirez,#Monday #LOVE https://t.co/KVD3Fwk5Vh +07/02/2018,Actors,@SaraRamirez,@fatooms427 👊🏽✊🏽🙏🏽 +07/02/2018,Actors,@SaraRamirez,RT @NPR: This year's wave of women candidates could reshape a Congress that is overwhelmingly old and male. But those women face multiple h… +07/02/2018,Actors,@SaraRamirez,RT @Emilykingmusic: Wrote this little hymn 💓 https://t.co/BxIXyKuZPB +07/02/2018,Actors,@SaraRamirez,@Emilykingmusic Thank you @Emilykingmusic I love it. And I love your art. Just love it. 🙏🏽💜 +07/02/2018,Actors,@SaraRamirez,"RT @WomenBelong: ""I think some of us have a strong temptation to just disengage. + +But we can't. I can't do that. I have to do something."" -…" +07/02/2018,Actors,@SaraRamirez,"Shedding followers like I’m on a twitter diet free of bots,trolls,bigots,racists,xenohobes,bi-antagonists,queerphob… https://t.co/08a249dluI" +07/02/2018,Actors,@SaraRamirez,"RT @cnnbrk: Leftist Andres Manuel Lopez Obrador has declared victory in Mexico's presidential election, as preliminary results showed he ha…" +07/02/2018,Actors,@SaraRamirez,RT @dyllonburnside: Only 3 episodes left in Season 1 of #posefx. Come celebrate this amazing and historic show with me and my @PoseOnFX fam… +07/02/2018,Actors,@SaraRamirez,Also woke up like “Can someone’s grandma please iron my flag” 👵🏽 #Abue #Abuelita 🙏🏽 https://t.co/OYjRspahuZ +07/02/2018,Actors,@SaraRamirez,Woke up feeling quite tender. But at least I woke up. Sending you all LOVE. #Monday +07/02/2018,Actors,@SaraRamirez,@TraciFl97160760 I can. And I will. +07/02/2018,Actors,@SaraRamirez,"Thank you Al D Rodriguez. The closest I ever came to having the parent and family I deserved, needed, and wanted. I… https://t.co/ZVTLWeMjIn" +07/02/2018,Actors,@SaraRamirez,Parental issues run so deep for so many of us.I don’t think I would have made it past 20 without my chosen families… https://t.co/cD8AduPBbS +07/02/2018,Actors,@SaraRamirez,"RT @PoseOnFX: Well, now Patty knows who Stan's Angel is. #PoseFX https://t.co/TuSeYdmebL" +07/02/2018,Actors,@SaraRamirez,I’m Stan’s wife. Can we talk? AHHHHHHHHHHHHHHHHHHHHHH @PoseOnFX #Posefx +07/02/2018,Actors,@SaraRamirez,RT @MjRodriguez7: #PoseFX I’m going to pump right through my sorrows https://t.co/RNtcJDOgeK +07/02/2018,Actors,@SaraRamirez,RT @pfpicardi: .@MjRodriguez7 is taking over our Insta tonight for #posefx and she has a message for all the kids and their chosen families… +07/02/2018,Actors,@SaraRamirez,RT @MjRodriguez7: #PoseFX didn’t expect this! But im glad she came around. https://t.co/nUnQjk517f +07/02/2018,Actors,@SaraRamirez,RT @fatfemme: okay this scene of young blanca and mom making her famous hot cakes recipe cut to blanca and damon prepping breakfast before… +07/02/2018,Actors,@SaraRamirez,Pancake making scene w/ Blanca & Damon + flashback =😭😭😭 @MjRodriguez7 @RyanJamaal @PoseOnFX #Posefx +07/02/2018,Actors,@SaraRamirez,RT @SimplyTwiggy: Blanca. You’re the best parts of her. #Posefx +07/02/2018,Actors,@SaraRamirez,"RT @PoseOnFX: #PoseFunFact The commentator for virgin runway is none other than the ICON Jack Mizrahi (@GorgeousJack), International Ballro…" +07/02/2018,Actors,@SaraRamirez,RT @SimplyTwiggy: No shade there’s always that ONE aunty tho. Who gets it. #Posefx +07/02/2018,Actors,@SaraRamirez,"RT @chasestrangio: Kindness doesn’t cost you anything. Yes, @theebillyporter. #PoseFX." +07/02/2018,Actors,@SaraRamirez,RT @Chrisishandsome: Yes Praytell!!!! READ! #PoseFx +07/02/2018,Actors,@SaraRamirez,Kindness doesn’t cost anything. Let HER say goodbye. 🙌🏽👏🏽@theebillyporter @PoseOnFX @MjRodriguez7 +07/02/2018,Actors,@SaraRamirez,RT @StevenCanals: This hospital scene about mothers with Blanca and Elektra makes my eyes water! And they filmed it in only a handful of ta… +07/02/2018,Actors,@SaraRamirez,Blanca!!! I love her so much. @MjRodriguez7 @PoseOnFX +07/02/2018,Actors,@SaraRamirez,It’s starting!! @PoseOnFX 😍😍😍💜 +07/01/2018,Actors,@SaraRamirez,"RT @theebillyporter: If you missed last Sunday's episode of @PoseOnFX 'FEVER', you missed some fierce acting choices hunties. Tears were fl…" +07/01/2018,Actors,@SaraRamirez,@DreyaStClair @PoseOnFX Yaaaay @DreyaStClair !! Still thinking about your beautiful work at the Bespoke event. Proud of you. 👊🏽✊🏽🌈 +07/01/2018,Actors,@SaraRamirez,@kesmommie Sometimes. +07/01/2018,Actors,@SaraRamirez,@NYABN @MrsRainbowZebra @BiTransAlliance @IWriteAllDay_ @jenyockney @Bi_Calendar PREEEEEAAAAAAACH. Thank you for th… https://t.co/ptWjFJqUkP +07/01/2018,Actors,@SaraRamirez,I’m watching @PoseOnFX tonight for sure. Cannot wait. Y’all watching with me? https://t.co/Cz2TkVqDdO +07/01/2018,Actors,@SaraRamirez,@JennicetG @ConMijente @PoseOnFX Be safe my friend! Sending you love and strength!! @JennicetG 👊🏽✊🏽🙏🏽 +07/01/2018,Actors,@SaraRamirez,@CoolSciDrGrace @SRamirezVillage @MassJwJ 💯 +07/01/2018,Actors,@SaraRamirez,Can’t think of a better way 2 spend the last night of #PrideMonth !Thank you 2 the entire cast & crew of… https://t.co/5qAl1JJZag +06/30/2018,Actors,@SaraRamirez,I’ve heard a lot about this musical so I came to see for myself. #JaggedLittlePill #HappyPrideMonth #HappyPride… https://t.co/LrKo9lOvs3 +06/30/2018,Actors,@SaraRamirez,@StevenCanals @PoseOnFX @SilasHoward8 @dyllonburnside @RyanJamaal @MooreIndya @MjRodriguez7 @angelbcuriel YAAAAAAAS… https://t.co/eY0aCKAmtl +06/30/2018,Actors,@SaraRamirez,RT @SRamirezVillage: PHOTO | Sara out in #Boston at #FamiliesBelongTogetherMarch https://t.co/bxsd7wYq8l +06/30/2018,Actors,@SaraRamirez,@everythingloria @OneDayAtATime @NickEndres @haneefahwood @itisIjudyreyes @MackPhillips @SantinaMuha Love love love… https://t.co/NHqpWeVj7D +06/30/2018,Actors,@SaraRamirez,@SRamirezVillage Graciela is a BADASS and I’m so glad we got to meet. Thank you @CoolSciDrGrace for all you are and all you do! 👊🏽✊🏽🙏🏽 +06/30/2018,Actors,@SaraRamirez,@SRamirezVillage Here’s the LINK YALL: DONATE HERE: https://t.co/khaxlrq3Qv +06/30/2018,Actors,@SaraRamirez,Thank you @MarchForwardMA @MassJwJ @ChelseaCollab @mataharijustice @Join_SIM @MuslimJustice #Boston Rally Against F… https://t.co/9TOf6ADyen +06/30/2018,Actors,@SaraRamirez,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Actors,@SaraRamirez,@Elly__Day Thank YOU. 👊🏽✊🏽🙏🏽 +06/30/2018,Actors,@SaraRamirez,At The Commons in #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/qpUkdqCtXD +06/30/2018,Actors,@SaraRamirez,Heading to the the Commons #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/gG1xvp7uKJ +06/30/2018,Actors,@SaraRamirez,Heading to the State House #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/IACTZBk1kD +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/8GXr5uKylN +06/30/2018,Actors,@SaraRamirez,Here with @conniebritton in #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/sf9fyXKtPa +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/7kB82Cjglh +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/b5VD7oV7I2 +06/30/2018,Actors,@SaraRamirez,Here with @SenWarren in Boston #FamiliesBelongTogetherMarch https://t.co/tjkY7P8V1Q +06/30/2018,Actors,@SaraRamirez,Here. Now. Boston. #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/4bfJqoiIli +06/30/2018,Actors,@SaraRamirez,@CynthiaEriVo @ShoshanaBean @THR Hey @CynthiaEriVo !!!! 💜💜💜 +06/30/2018,Actors,@SaraRamirez,@ShoshanaBean @THR @CynthiaEriVo Sending love back @ShoshanaBean !! It’s been TOO LONG!!! Rock on like I know you are and will!! 😘 +06/30/2018,Actors,@SaraRamirez,"RT @ACLU: If you are attending a #FamiliesBelongTogether rally today, know your rights. https://t.co/7eMn0mwdkH" +06/30/2018,Actors,@SaraRamirez,@baileycoleman15 @TheEllenShow @MsSarahPaulson @cleaduvall @cameronesposito @harto Im no fashionista or lifestyle guru but YES PLEASE. 😊 +06/29/2018,Actors,@SaraRamirez,@TessaThompson_x THIS. Right on @TessaThompson_x RIGHT. ON. #PrideHasNoEnd 🌈 +06/29/2018,Actors,@SaraRamirez,@THR @CynthiaEriVo @ShoshanaBean Omg THESE POWERHOUSE WOMEN!!!! Gonna bring the house up and down and all around.... 🙌🏽🙌🏽🙌🏽😍 +06/29/2018,Actors,@SaraRamirez,@bunzy55 What up @bunzy55 !!!! I cannot wait for our paths to cross again! You’re the best! 👊🏽✊🏽🌈 +06/29/2018,Actors,@SaraRamirez,"RT @dj_diabeatic: Hi all! Even if you can't make it to a #FamiliesBelongTogether event in person on Saturday, here's a thread of great artw…" +06/29/2018,Actors,@SaraRamirez,"AS IN: TOMORROW +AS IN: BOSTON +Come thru y’all" +06/29/2018,Actors,@SaraRamirez,June 30th I’ll be marching for #FamiliesBelongTogether! Find your local march here: https://t.co/wYuWBoDs72… https://t.co/VESjXbKNHw +06/29/2018,Actors,@SaraRamirez,@VibeMagazine #BisexualPlus #Bisexual #Pansexual #Fluid #NonMonosexual #Queer #FreeAssMothaFucka Lots of ways to pu… https://t.co/Yw0ZNt7QWX +06/29/2018,Actors,@SaraRamirez,@StillBisexual 👊🏽❤️💜💙 +06/29/2018,Actors,@SaraRamirez,@JennicetG 👊🏽✊🏽🙏🏽 +06/29/2018,Actors,@SaraRamirez,"@thefayth @JanelleMonae @TessaThompson_x Yes yes yes yes!!!! Your life, your work, your truth is a huge part of why… https://t.co/RotLEfzHIH" +06/29/2018,Actors,@SaraRamirez,@marquisevilson My friend thank you so much!!! I am grateful to live in this time with you. Rock on @marquisevilson and know I’m with you! 💜 +06/29/2018,Actors,@SaraRamirez,@JennicetG Love you my friend and legendary fire starter of today @JennicetG !!!! Proud to stand with you! 🌈💜💋 +06/29/2018,Actors,@SaraRamirez,"ALERT THE #BILLUMINATI STAT. +Sending love to @TessaThompson_x always. https://t.co/ayYYMxLz9c" +06/29/2018,Actors,@SaraRamirez,@SRamirezVillage Omg hahahahahahahahaha 💖💜💙 https://t.co/VteesmRlvM +06/29/2018,Actors,@SaraRamirez,@translatinbamby As are you my beautiful fierce friend @translatinbamby !! YOU helped pave the way along with so ma… https://t.co/GssM5NrnX4 +06/29/2018,Actors,@SaraRamirez,@glaad @TheEllenShow I remember being a guest on @TheEllenShow many moons ago.....I wonder if I’ll ever be asked ba… https://t.co/uLaxPxh0Wl +06/29/2018,Actors,@SaraRamirez,Here is my FULL INTRO SPEECH at the @VH1 #TRAILBLAZERSHONORS AWARD SHOW that was edited for time. https://t.co/16Br9HJVWm +06/29/2018,Actors,@SaraRamirez,"RT @tywrent: a letter to young LGBTQ+ people, from your favorite nonbinary camp counselor, aka me https://t.co/VoaGbmhziJ" +06/29/2018,Actors,@SaraRamirez,@gabrielarkles @RaquelWillis_ @janetmock @rgay @daisyhernandez @Moore_Darnell @chasestrangio @talilalewis @phatpooj… https://t.co/v8I1IIqCPb +06/29/2018,Actors,@SaraRamirez,RT @ACLU: The Trump administration should focus its enormous resources on reuniting the thousands of children whom it cruelly ripped from t… +06/29/2018,Actors,@SaraRamirez,"@tyleroakley GSA=Gender & Sexuality Alliance. Start one.Challenge what’s already out there,evolve existing coalitio… https://t.co/Y9hH8RNY7R" +06/29/2018,Actors,@SaraRamirez,"RT @RaquelWillis_: My new Supremes are... + +@queersocialism +@AshleeMPreston +@IWriteAllDay_ +@ethiopienne +@IamGMJohnson +@Kehlani +@awkward…" +06/29/2018,Actors,@SaraRamirez,@iSmashFizzle I SO hear this. In solidarity with you @iSmashFizzle !! 👊🏽✊🏽💜 +06/29/2018,Actors,@SaraRamirez,"GSA=Gender & Sexuality Alliance. Start one.Challenge what’s already out there,evolve existing coalitions,center the… https://t.co/8b2kCSI3GW" +06/29/2018,Actors,@SaraRamirez,RT @baratunde: Justice Anthony Kennedy jumped out the emergency exit mid-flight. No care for the rest of us stuck on this disintegrating pl… +06/29/2018,Actors,@SaraRamirez,RT @CharlesMBlow: This should not have been a thing! Why was this a thing?! Is this what they mean when they say “civility”? I’m still sooo… +06/29/2018,Actors,@SaraRamirez,RT @sahluwal: Please call the Lancaster Police Department in Pennsylvania & ask them if this is how they treat unarmed & non-violent black… +06/29/2018,Actors,@SaraRamirez,@NCLRights @RaquelWillis_ THIS. 🙌🏽🙌🏽🙌🏽 +06/29/2018,Actors,@SaraRamirez,"RT @NCLRights: Today’s the 49th anniversary of the Stonewall Riots. Led by transwomen of color,the first #Pride was a protest:it has always…" +06/29/2018,Actors,@SaraRamirez,"RT @chasestrangio: Plan, resist, protect yourself. https://t.co/pLVqRORw2Z" +06/29/2018,Actors,@SaraRamirez,RT @kateloh: They got the paper out. https://t.co/sShF1iG3FS +06/29/2018,Actors,@SaraRamirez,RT @BisexualHistory: 28 June 2005: Brenda Howard died. A bi activist in the USA credited with inventing Pride festivals following the Stone… +06/29/2018,Actors,@SaraRamirez,@seriesfuse Thank you and THANK YOU 🙏🏽🌈💖💜💙 +06/29/2018,Actors,@SaraRamirez,"RT @keithboykin: Senator Cory Booker: ""The president of the United States is a subject of an ongoing criminal investigation...that could en…" +06/29/2018,Actors,@SaraRamirez,RT @SarahLerner: .@Ocasio2018: “I’m optimistic because cynicism is a weapon.” https://t.co/Gg8Wwj5Q2U +06/29/2018,Actors,@SaraRamirez,"RT @Kyle_Feldscher: The Times-Picayune kept working while Katrina destroyed their homes. + +WDBJ didn't stop working when two of its reporter…" +06/29/2018,Actors,@SaraRamirez,"RT @capgaznews: Today, the Capital Gazette lost five members of our family. Stories on all five bright, wonderful lives will be included in…" +06/29/2018,Actors,@SaraRamirez,RT @AC360: “I’ve heard that Pres. Trump sent his prayers. I’m not trying to make this political right? But we need more than prayers… I wan… +06/29/2018,Actors,@SaraRamirez,@muxerisa @JennicetG @TransLawCenter @rosariodawson @rosaclemente You got it!! +06/28/2018,Actors,@SaraRamirez,"Tonight, please watch #TrailblazerHonors on @VH1 at 9:30/8:30c. It was a honor to be a part of celebrating some of… https://t.co/ZvlNCmFLSM" +06/27/2018,Actors,@SaraRamirez,"Undocumented artist @em_ulsify is making prints 2 raise $ 4 @Raicestexas, the largest immigrant rights nonprofit in… https://t.co/8urO2H5DYQ" +06/27/2018,Actors,@SaraRamirez,“We meet a machine with a movement.” - @Ocasio2018 See the moment this 28-year-old Latina running her first politic… https://t.co/h5uKp5sIUJ +06/26/2018,Actors,@SaraRamirez,On this momentous occasion here’s a light reminder of how there will always be something problematic in the movemen… https://t.co/v6mBQKYlil +06/26/2018,Actors,@SaraRamirez,"RT @ACLU_NC: Today we were back in court to continue our fight to overturn North Carolina’s anti-LGBT laws. + +Thank you to our brave client…" +06/25/2018,Actors,@SaraRamirez,June 28th in Washington D.C. Taking direct action to demand lawmakers and federal officials #EndFamilyDetention. Wi… https://t.co/X4l2sI5KHj +06/25/2018,Actors,@SaraRamirez,RT @ACLU: Here's what the Trump administration doesn't want you to know about its executive order on family separation: https://t.co/6FuJxN… +06/25/2018,Actors,@SaraRamirez,RT @domesticworkers: Look at this map. Each of these dots represents thousands of people ready to take action on June 30th to keep families… +06/24/2018,Actors,@SaraRamirez,PLEASE watch this powerful speech! @DrHerukhuti #NoHomoNoHetero #PrideRally2018 #PrideMonth #HappyPride #Pride2018… https://t.co/zohkCvwm2K +06/24/2018,Actors,@SaraRamirez,RT @chasestrangio: Happy #Pride! I am on my way to North Carolina for a hearing over HB142 and HB2. I wrote this two years ago on the day o… +06/24/2018,Actors,@SaraRamirez,RT @SRamirezVillage: VIDEO | @SaraRamirez talk about the issues that affect all Americans on the #TrailblazerHonors red carpet! | via VH1 h… +06/24/2018,Actors,@SaraRamirez,"RT @ACLU: The decision in Masterpiece Cakeshop had implications for the entire LGBT community. + +Our expert Chase is joined by Shelby from…" +06/24/2018,Actors,@SaraRamirez,Happy #PrideMarch NYC!!!! #PrideMonth #HappyPride #Pride2018 #NYCPride #LGBTQIA+ https://t.co/nt868ugHMh +06/23/2018,Actors,@SaraRamirez,RT @womensmarch: Please donate and share widely. Support these immigrant led bail funds. #EndFamilyDetention #AbolishICE https://t.co/9DqY3… +06/23/2018,Actors,@SaraRamirez,RT @chasestrangio: RIGHT NOW! Come to 186 Orchard in NYC. Support the @ACLU and get one of these amazing tattoos. https://t.co/jnNmil6XEE +06/23/2018,Actors,@SaraRamirez,"RT @VH1: #TrailblazerHonors First Look: @SaraRamirez urges for change and respect for human rights as she presents the @ACLU. + +See the ins…" +06/22/2018,Actors,@SaraRamirez,Many asking how 2 get #NoBodyIsIllegal Tee I wore @ last night's @VH1 #TrailblazersHonors. Provided by… https://t.co/2MznDhUtiW +06/22/2018,Actors,@SaraRamirez,#HappyPride New York City!!! Some great safety tips from @antiviolence https://t.co/bU1PXghFXd https://t.co/S6kSMtcKlj +06/22/2018,Actors,@SaraRamirez,RT @ACLU: BREAKING: The Supreme Court just issued a groundbreaking victory for Americans’ privacy rights by ruling that police need a warra… +06/22/2018,Actors,@SaraRamirez,RT @SRamirezVillage: VIDEO | @SaraRamirez at the VH1 Trailblazer Honors. She'll be a presenter at the event. | via logotv https://t.co/DHWe… +06/22/2018,Actors,@SaraRamirez,"RT @ABC: Cynthia Nixon to @theView: ""I think we need to abolish ICE."" + +""They have strayed so far from the interests of the American people…" +06/22/2018,Actors,@SaraRamirez,"RT @TheDemCoalition: Think about it: This president built tent cities in order to separate, cage and jail immigrant children faster than ai…" +06/22/2018,Actors,@SaraRamirez,"RT @womensmarch: Imagine being separated from your child, both of you imprisoned for seeking a better life. Are you willing to put your bod…" +06/22/2018,Actors,@SaraRamirez,"RT @votolatino: Shout out to all of our incredible interns that are making our rally in Tornillo, TX this Sunday possible! #NationalSelfieD…" +06/22/2018,Actors,@SaraRamirez,Last night’s @VH1 #TrailblazersHonors = an inspiring & uplifting reminder that we must widen our lens & keep connec… https://t.co/rTc11vfX4a +06/22/2018,Actors,@SaraRamirez,RT @kylegriffin1: Microsoft employees have signed an open letter to CEO Satya Nadella asking him to cancel Microsoft's contracts with ICE t… +06/22/2018,Actors,@SaraRamirez,RT @HuffPost: Military bases in Texas and Arkansas will begin housing tens of thousands of migrant children caught crossing the border ille… +06/22/2018,Actors,@SaraRamirez,RT @chasestrangio: On Monday we will be in court to continue the fight against North Carolina’s anti-trans laws. Learn more here: https://t… +06/22/2018,Actors,@SaraRamirez,RT @ACLU: We're just one of the many groups doing work to #KeepFamiliesTogether! Here's how you can help 14 of our friends doing this work… +06/22/2018,Actors,@SaraRamirez,"RT @ABC: Emotional scenes as migrant mother and son from Guatemala, who were separated crossing the U.S. border, are finally reunited at BW…" +06/22/2018,Actors,@SaraRamirez,RT @ACLU: 🗣 Black. Lives. Matter. https://t.co/HyJF0IzjtD +06/22/2018,Actors,@SaraRamirez,"RT @ACLUTx: While families are separated at the border in Texas, Pittsburg police shot a 17-year-old black kid 3 times in the back. + + @ACL…" +06/22/2018,Actors,@SaraRamirez,"RT @RepJayapal: As I told Politico, I don’t think most Americans understand that a 33-year-old with connections to white supremacists is cr…" +06/22/2018,Actors,@SaraRamirez,"RT @minh81: ****U R G E N T E ***** +“RAICES needs volunteer translators: ""who speak Meso-American indigenous languages (eg, zapotec, nahua,…" +06/22/2018,Actors,@SaraRamirez,"Participating in tonight’s @VH1 @LogoTV #TrailblazerHonors was an honor and a joy. Lots of reunions, new connection… https://t.co/1uxTnDQXHV" +06/21/2018,Actors,@SaraRamirez,"RT @ACLU: More than 2,300 children have been separated from their parents by the Trump administration, and the president has no plans to re…" +06/21/2018,Actors,@SaraRamirez,"RT @ACLU: If @realDonaldTrump thinks placing families in jail indefinitely is what people have been asking for, he is grossly mistaken. #Ke…" +06/20/2018,Actors,@SaraRamirez,Please donate & help make this happen! https://t.co/5Rdk7biT1z #WeShallNotBeMoved brings together the talents of co… https://t.co/h9qgjgiUsN +06/18/2018,Actors,@SaraRamirez,RT @CBSThisMorning: .@aappres reveals that staff are not allowed to hold or comfort crying children being held inside these facilities http… +06/18/2018,Actors,@SaraRamirez,"RT @washingtonpost: The images of Casa Padre, the Walmart-turned-shelter for immigrant children on the Mexican border, are ""eerily reminisc…" +06/18/2018,Actors,@SaraRamirez,"RT @UNITEDWEDREAM: We are here in Tornillo, TX, where thousands of immigrant children are being held. If we want to end family separation a…" +06/18/2018,Actors,@SaraRamirez,"RT @jacobsoboroff: Cages, stressed agents, uncertain detainees and only four contracted social workers. Our latest — from inside the epicen…" +06/18/2018,Actors,@SaraRamirez,"RT @kylegriffin1: """"I'm going to take your child to get bathed."" That's one we see again and again. ... The child goes off, and in a half a…" +06/18/2018,Actors,@SaraRamirez,RT @chasestrangio: #SCOTUS is conferencing this deeply disturbing capital case. Jurors displayed so much anti-gay bias they chose to senten… +06/15/2018,Actors,@SaraRamirez,RT @sbswrites: I am deeply grateful for the opportunity to speak with Channing Nicole about her @StillBisexual video. Here's our interview… +06/15/2018,Actors,@SaraRamirez,RT @ACLU: FACT: There is NO law requiring family separation. #FamiliesBelongTogether https://t.co/2yE1oxioSo +06/15/2018,Actors,@SaraRamirez,"""We should see this latest move by Jeff Sessions for what it is: A blatant violation of human rights & internationa… https://t.co/Qxej7blJv0" +06/15/2018,Actors,@SaraRamirez,RT @JazzJennings__: I’m so honored to collaborate with @Glaad & @netflix on their #FirstTimeISawMe project! The initiative focuses on repre… +06/15/2018,Actors,@SaraRamirez,RT @NiKEs_Nae: Facts! Tune into #myhousenow and yeah we all family aint that right @PoseOnFX my baby @SimplyTwiggy was behind this we been… +06/15/2018,Actors,@SaraRamirez,"Transgender population face their deadliest year, but find an ally who wants to help. - @CNN @AntiViolence +https://t.co/dwKHh44nrm" +06/14/2018,Actors,@SaraRamirez,"RT @paolamendoza: If your heart hurts because kids are being seperated from their parents at the border then take to the streets TODAY! + +Ac…" +06/14/2018,Actors,@SaraRamirez,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Actors,@SaraRamirez,Please read this whole thread. #FamiliesBelongTogether https://t.co/JWYx8G1ePl +06/14/2018,Actors,@SaraRamirez,#FamiliesBelongTogether https://t.co/u0AKqCWt19 +06/13/2018,Actors,@SaraRamirez,"RT @domesticworkers: Truly horrific: the Trump administration seeks to create “Tent Cities” to hold 1,000 - 5,000 unaccompanied migrant chi…" +06/13/2018,Actors,@SaraRamirez,#FamilesBelongTogether Tomorrow find an event near you and make your voice heard! https://t.co/dz3O6O6ffB… https://t.co/VEMRJlaktv +06/12/2018,Actors,@SaraRamirez,"If this fierce smart young person who speaks in a binary language gets it, I’m not sure why #Todes #Todas #Todos do… https://t.co/wYqulO0Ofw" +06/12/2018,Actors,@SaraRamirez,@TanyaSaracho WOOHOOOOO!!! Padelante!!!!!! 🙌🏽👏🏽👏🏽👏🏽👊🏽✊🏽🙏🏽💜 +06/12/2018,Actors,@SaraRamirez,"YAAAAAAS. And what a day to be receiving this news,right?Gente, @VIDA_STARZ will indeed be back for a SEASON 2!!… https://t.co/v6luiBNjJ7" +06/12/2018,Actors,@SaraRamirez,@therealseanjohn @jelanitime YES @therealseanjohn YES!!! #MyHouseVL on @VICELAND is the best! #LGBTQIA+ #youth #POC… https://t.co/fTwln0zLqQ +06/12/2018,Actors,@SaraRamirez,@DrGBeth @JenDeerinwater Right on @DrGBeth ! #BisexualPlus #Bisexual #Pansexual #Queer #PrideMonth… https://t.co/HyLc3OnZ42 +06/12/2018,Actors,@SaraRamirez,"RT @wcruz73: JUNE 12, 2016 + +Orlando, Florida, USA + +2 years have passed and in my heart your faces and spirits are as alive to me as they we…" +06/12/2018,Actors,@SaraRamirez,@DanaPiccoli @VIDA_STARZ 👆🏽🙌🏽👏🏽💜 +06/12/2018,Actors,@SaraRamirez,Happening now. Get in here! Beyond The Bathroom: Fighting for Trans Rights in the Courts and the Legislatures 10:… https://t.co/D6xN3bSTOC +06/12/2018,Actors,@SaraRamirez,Also really appreciating the bi+ lighting in here. #ACLUCon @ACLU https://t.co/tpkEX5SybF +06/12/2018,Actors,@SaraRamirez,So excited to be here at @ACLU #ACLUCon at the Beyond The Bathroom: Fighting for Trans Rights in the Courts and the… https://t.co/C66KPpTXdY +06/12/2018,Actors,@SaraRamirez,@SerAnzoategui Keep up the great work @SerAnzoategui !! I see you!!! 👊🏽✊🏽🙏🏽💜 +06/12/2018,Actors,@SaraRamirez,Save #Eddy Save #Emma Save the #BAR Save #VIDAStarz This show needs to get picked up for SEASON 2 & many more after… https://t.co/yzTS94Cjhw +06/12/2018,Actors,@SaraRamirez,@rgay THIS. YES @rgay . YES. 👊🏽💜 +06/12/2018,Actors,@SaraRamirez,Any suggestions? +06/12/2018,Actors,@SaraRamirez,"If a project that’s congruent with where I am in my growth, in collaboration w/a group of creatives and producers w… https://t.co/MK6WwDxg7E" +06/12/2018,Actors,@SaraRamirez,@StevenCanals @PoseOnFX Y’all are making history in so many ways and it’s imperative that folks pay attention. KEEP… https://t.co/xTtShC42KW +06/12/2018,Actors,@SaraRamirez,"@andymientus @michaelarden If a project that’s congruent with where I am in my growth, in collaboration w/a group o… https://t.co/fy93EgTWqZ" +06/12/2018,Actors,@SaraRamirez,RT @SaraRamirezCake: Pause for this iconic moment #TonyAward2018 #TonyAwards @SaraRamirez https://t.co/DKWWF7eIui +06/11/2018,Actors,@SaraRamirez,@andymientus Omg this thread. @michaelarden & @andymientus are the best. Sending y’all hugs! Andy- your look is eve… https://t.co/2U8LHU3B8C +06/11/2018,Actors,@SaraRamirez,@TanyaSaracho @VIDA_STARZ 🙏🏽🙏🏽🙏🏽👊🏽✊🏽💜 +06/11/2018,Actors,@SaraRamirez,Episode 2 of @PoseOnFX is blowing my mind in the best way imaginable. If you aren’t watching this work I suggest you catch up immediately. 💜 +06/11/2018,Actors,@SaraRamirez,@MjRodriguez7 I’m late to this party but episode 2 of @PoseOnFX is blowing my mind. And YOU @MjRodriguez7 are killi… https://t.co/BLz6eNRCuz +06/11/2018,Actors,@SaraRamirez,"RT @domesticworkers: This Thursday, June 14, thousands of people across the US will join rallies & vigils in over 45 cities to protest the…" +06/11/2018,Actors,@SaraRamirez,@patinamiller https://t.co/dreLr0rDPQ +06/11/2018,Actors,@SaraRamirez,This interview. 🙌🏽 Yaaas @TanyaSaracho !! Right on! @VIDA_STARZ https://t.co/NGbn497qzp +06/11/2018,Actors,@SaraRamirez,@VIDA_STARZ @TanyaSaracho Thank YOU @TanyaSaracho & @VIDA_STARZ cast & crew!!! CANNOT WAIT FOR SEASON 2!!!!! This is must watch TV!! 🙌🏽🤩🙏🏽💜 +06/11/2018,Actors,@SaraRamirez,"RT @ACLU: BREAKING: SCOTUS reinstated Ohio’s voter purge practice, which targets people for removal from the rolls because they haven’t vot…" +06/11/2018,Actors,@SaraRamirez,When the world seems to have become some horrific/terrifying version of mad libs & the 72nd annual #TonyAwards come… https://t.co/ccYGSzpa4u +06/11/2018,Actors,@SaraRamirez,#BestRevivalofaMusical !!!! Congrats @michaelarden and the entire @OnceIslandBway !! #TonyAwards2018 #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,I love me some @JohnLeguizamo ! #LatinXcellence at the #TonyAwards2018 #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,Once On This Island. #AlexNewell BOOM. @OnceIslandBway @michaelarden #TonyAwards2018 #TonyAwards⁠ ⁠ @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,"RT @TheTonyAwards: Congratulations to @chita_rivera, recipient of the 2018 Special Tony Award for Lifetime Achievement in the Theatre. #Ton…" +06/11/2018,Actors,@SaraRamirez,RT @NPR: Parkland drama teacher Melody Herzfeld is being recognized at the 72nd annual Tony Awards for helping save 65 students. https://t.… +06/11/2018,Actors,@SaraRamirez,TRUTH. @arielstachel Your biggest obstacle may turn into your purpose. #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,Yes @erichbergen YAAAS! #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,YES. That. Was. Genius. #8TimesAWeek !! @SaraBareilles @joshgroban #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,"For the win @LindsayMendez !!! That speech. Genuine love, solidarity and tenderness. #BestFeaturedActress in a… https://t.co/TIvXqVxZDk" +06/10/2018,Actors,@SaraRamirez,Proud of the talented fierce #Latinx presence in theater & this year’s #TonyAwards including @LindsayMendez… https://t.co/uzdpK1tmTE +06/10/2018,Actors,@SaraRamirez,#LatinXcellence on #Broadway #Broadway #TonyAwards @LindsayMendez @Chita_Rivera @JohnLeguizamo @clintramos… https://t.co/E9eFWJar62 +06/10/2018,Actors,@SaraRamirez,"As New York celebrates Puerto Rican heritage at the #PuertoRicanDayParade, please do what you can to help our fello… https://t.co/uKwhYsEuRC" +06/10/2018,Actors,@SaraRamirez,This is how I’m choosing to start my day. Thank you @imarajones & @thelastsipnews family for a news program that lo… https://t.co/uE0tNd2xwz +06/09/2018,Actors,@SaraRamirez,So grateful I got to see @dolabunny in @MTC_NYC ‘s #SaintJoan on BWAY tonight. A divine performance and a breath of… https://t.co/MbWnOQZlLJ +06/08/2018,Actors,@SaraRamirez,This is about to be the most inclusively #Queer #Pride weekend yet. Between @PoseOnFX @VIDA_STARZ @TheTonyAwards o… https://t.co/ts3xV9Zhe2 +07/02/2018,Actors,@iJesseWilliams,RT @Japril_EndGame: My #TeenChoice pick for #ChoiceDramaTVActor is @iJesseWilliams as Jackson Avery on Greys Anatomy https://t.co/tpqTUnNv… +07/02/2018,Actors,@iJesseWilliams,RT @the_bull65: @OWCalifornia Lakers fans deleting all the bad things they have ever said about LeBron. https://t.co/eQ5lm8udr7 +07/01/2018,Actors,@iJesseWilliams,RT @gwynnharris: “Afraid? Okay. Do it afraid.” Tell me why this is going to be one of those things that’ll always cross my mind through the… +07/01/2018,Actors,@iJesseWilliams,"RT @CESand24: Was nervous about attending my first march today. Then the words of @iJesseWilliams came to me. ""Afraid? Ok. Do it afraid.""…" +06/30/2018,Actors,@iJesseWilliams,.@BLeBRiTYgame out here tryna fonction! https://t.co/oFVwYyIZPq +06/30/2018,Actors,@iJesseWilliams,Boss Richards-Ross! 🏅🏅🏅🏅🏅 https://t.co/FyJ5DNnPLr +06/30/2018,Actors,@iJesseWilliams,RT @RealLifeKaz: Knicks about to pull out the ultimate LeBron pitch and just sell him the team lol +06/30/2018,Actors,@iJesseWilliams,RT @Universer_Italy: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams https://t.co/nNVbLVuC2l +06/28/2018,Actors,@iJesseWilliams,RT @Sydvaughnfan2: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams +06/27/2018,Actors,@iJesseWilliams,RT @iJesseWilliams: Heja Sverige!!! 🇸🇪 #WorldCup +06/27/2018,Actors,@iJesseWilliams,RT @boreskes: Dephree has just done a backflip of the sign. https://t.co/d5qh6qybQ6 +06/27/2018,Actors,@iJesseWilliams,Do i get paid for these ? https://t.co/aFb6lNVYRD +06/27/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: Let's never forget @iJesseWilliams +appearance in @bandaidfilm. Gold 💥 directed and written by @ZoeListerJones, female…" +06/27/2018,Actors,@iJesseWilliams,"RT @Boyaishere: You're awake. + +#art #DetroitBecomeHumanfanart #detroitbecomehuman +@iJesseWilliams https://t.co/XXBtVUWJfJ" +06/27/2018,Actors,@iJesseWilliams,👐🏽 https://t.co/RZ2pXsJ90e +06/27/2018,Actors,@iJesseWilliams,RT @ImmortalTech: You mean Alexandria Ocasio-Cortez. She won the election and you still printed the losers name over hers. Imagine that. Lo… +06/27/2018,Actors,@iJesseWilliams,RT @thehill: WATCH: Maxine Waters reads list of times Trump has called for violence https://t.co/Rmkhzf6RAD https://t.co/kB2qCxOM66 +06/26/2018,Actors,@iJesseWilliams,https://t.co/rsVNe1cMEd https://t.co/DpxSgckzgQ +06/26/2018,Actors,@iJesseWilliams,RT @QuelleChris: I was once “apprehended” by 2 white cops coming out of my own crib in Chicago. They forced me to prove that I lived there… +06/26/2018,Actors,@iJesseWilliams,RT @NBA: .@KDTrey5 of the @warriors takes home the 2017-2018 @nbacares #NBACommunityAssist Award! #ThisIsWhyWePlay #NBAAwards https://t.co/… +06/26/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: @iJesseWilliams 🚨📣🚨📣🚨📣🚨📣🚨📣🚨📣🚨 +Louder for the good white folk in the back https://t.co/t4Q2JEGq25" +06/26/2018,Actors,@iJesseWilliams,RT @JMGaylord: @iJesseWilliams We can’t simply be “allies.” We must be “accomplices.” I promise. +06/26/2018,Actors,@iJesseWilliams,Deal. Cigars for pic. Same time Kendra! https://t.co/jo3coG1lE0 +06/26/2018,Actors,@iJesseWilliams,"Daily Operation. +“Allies” Read. +Everyone read thread. https://t.co/51PVu9sLdL" +06/25/2018,Actors,@iJesseWilliams,"RT @iAmNeesah: I do love the beard version of @iJesseWilliams 😍 +And I will watch the #NBAAwards 🔥🤓🍿🏀🔥 https://t.co/xi7jD5xNbP" +06/25/2018,Actors,@iJesseWilliams,"RT @risha843: @iJesseWilliams The part where they're hugging shit....that's disgusting. I get it's fake, but what was the purpose? You're w…" +06/25/2018,Actors,@iJesseWilliams,"RT @FredTJoseph: Me cursing him out or stopping to his level gets me thrown off this plane or worse. So help me out, if you’re really that…" +06/25/2018,Actors,@iJesseWilliams,"RT @FredTJoseph: Then you had a bunch of white people who watched everything come up to me and apologize. One woman said “I’m sorry, it was…" +06/25/2018,Actors,@iJesseWilliams,"RT @OhNoSheTwitnt: Bitch, this is Twitter, not Yelp. https://t.co/HAmku4PMFw" +06/25/2018,Actors,@iJesseWilliams,"RT @perlmutations: Did I ever tell ya about when Harvey Weinstein told me to make sure I shook his hand at a charity event, so I stopped in…" +06/25/2018,Actors,@iJesseWilliams,RT @Mike_Eagle: this gotta be a nathan for you episode https://t.co/JF9gKTr9Wg +06/25/2018,Actors,@iJesseWilliams,"RT @RobCabrera: @iJesseWilliams actually administering medicine to a patient in Detroit Become Human is so meta. + +If Black Mirror & Grey's…" +06/25/2018,Actors,@iJesseWilliams,CONGRATULATIONS!!! @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly… https://t.co/j7Dmeey9Ib +06/25/2018,Actors,@iJesseWilliams,🙏🏾 https://t.co/jS6HTyrDzm +06/25/2018,Actors,@iJesseWilliams,"#NOTHINGTOSEEHERE Happy Monday Everyone! +- Giant Human Puppet Gives Birth https://t.co/iwyEumqum8" +06/25/2018,Actors,@iJesseWilliams,RT @strongblacklead: This is not a MOMENT. This is a MOVEMENT. https://t.co/HtzTDPIDXo +06/25/2018,Actors,@iJesseWilliams,RT @alwaysamburrr: Waaaait did Jesse say in his podcast “y’all love some dogs” (on dogs having more rights than black folks)😩💀@iJesseWilli… +06/25/2018,Actors,@iJesseWilliams,"RT @ScottHech: In 2008, the Supreme Court, in a opinion written by Justice Kennedy, ruled that the US Constitution applies to non-citizens…" +06/25/2018,Actors,@iJesseWilliams,"Sat down in Stockholm, Sweden with #BrilliantMinds Conference CEO #NataliaBrzezinski before i took the stage. Liste… https://t.co/PpW1F6K4Dx" +06/25/2018,Actors,@iJesseWilliams,"RT @JWilliamsCrew: 📱 | Check out the latest episode of ""The Brilliant Minds Podcast"" with special guest @iJesseWilliams - talking black cul…" +06/25/2018,Actors,@iJesseWilliams,RT @whiskymojito: Wow. Was browsing through @iJesseWilliams ig stories and found this!! This has to stop!!! Our world is waaaaay beyond fuc… +06/24/2018,Actors,@iJesseWilliams,🔥🔥🔥🔥🔥 We exchanged handwritten letters when i was in high school. https://t.co/ZNOYZw3cJP +06/24/2018,Actors,@iJesseWilliams,RT @AnnOdong: this is the best offside trap in history. #JPNSEN https://t.co/HxVGHkpQLP +06/24/2018,Actors,@iJesseWilliams,RT @MeritLaw: Called to reserve a room in downtown Pittsburgh. The operator wanted to warn me first that there are major protest going on o… +06/24/2018,Actors,@iJesseWilliams,"RT @WillHunterShow: RIP Permit Patty’s weed company. Man I hope she was racist before calling the cops, because she surely will be after sh…" +06/24/2018,Actors,@iJesseWilliams,RT @ImmortalTech: You mad at the wrong people bruh https://t.co/cyCZyCtspO +06/24/2018,Actors,@iJesseWilliams,RT @StretchArmy: Whoever takes the L in the Kid/Flex battle has to wear Luggz for the rest of their life. Even in bed. Even in the shower.… +06/24/2018,Actors,@iJesseWilliams,"Millions. Not thousands. + +Show me all your tweets objecting to all the irrelevant personal info being released abo… https://t.co/wulsbrA7Bc" +06/24/2018,Actors,@iJesseWilliams,🙏🏽@BLeBRiTYgame for us https://t.co/kDE3pRBVHY +06/24/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: The soul of a sailor @iJesseWilliams 🤗 +#SundayMorning mood 🤣 +Holidays, sea, booze and fun ☀️🚣‍♂️ https://t.co/ITNvccOq…" +06/24/2018,Actors,@iJesseWilliams,"RT @chrisjohnson82: Also a reminder @PressSec hasn’t called on me, the only reporter from an LGBT news outlet in the White House press corp…" +06/24/2018,Actors,@iJesseWilliams,RT @tchopstl_: This is straight-up kidnapping and extortion being carried out by the Trump administration. +06/24/2018,Actors,@iJesseWilliams,"RT @joncoopertweets: In a controversial case involving the rights of undocumented immigrants and their young children, a Guatemalan mother…" +06/24/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: Tweet from July 12, 2015. https://t.co/5D6TqZmcEV" +06/24/2018,Actors,@iJesseWilliams,RT @JamilahLemieux: Because it is for them https://t.co/4de8q7D0Oi +06/24/2018,Actors,@iJesseWilliams,RT @SheaSerrano: if slamball had been invented after twitter was invented all these guys would be making $50 million a year easy https://t.… +06/24/2018,Actors,@iJesseWilliams,Decency: it’s much easier. https://t.co/qNUrZ173gh +06/24/2018,Actors,@iJesseWilliams,RT @lukeoneil47: Every white woman has the power of the Let me speak to the manager voice inside of her. You can either use it to call the… +06/24/2018,Actors,@iJesseWilliams,"Utilizing the most ignorant/American rationale available, an American, in America, has been sentenced to death for… https://t.co/hJZSy3wgLN" +06/24/2018,Actors,@iJesseWilliams,RT @riseandresistny: @macc_nyc getting thrown to the ground by law enforcement as they attempt to block an I.C.E. van at 201 Varick St. #En… +06/24/2018,Actors,@iJesseWilliams,RT @nowthisnews: This Senate candidate got arrested trying to deliver toys and supplies to detained children https://t.co/n4FckyCo7P +06/24/2018,Actors,@iJesseWilliams,"RT @CleverTitleTK: GOP: ""Why are we worrying about these foreign children at the border instead of American children?"" + +Also GOP: https://t…" +06/24/2018,Actors,@iJesseWilliams,RT @lexlanthony: Today in Queens Criminal Court: Very young black man brought in bc he couldn’t afford to pay a fine as his father just rec… +06/24/2018,Actors,@iJesseWilliams,"RT @KT_NRE: I'm sure this sculpture is supposed to be a statement on consumer culture or something, but all I can see is Jesus and Lenin tr…" +06/24/2018,Actors,@iJesseWilliams,RT @YasminYonis: White people live in a completely different world than us. https://t.co/2JU0TDxoWI +06/24/2018,Actors,@iJesseWilliams,"RT @DrPhilGoff: They like the racism. They like it. They liiiiiiiike the racism. They LIKE it like it. The racism and them, they’re friends…" +06/24/2018,Actors,@iJesseWilliams,"RT @MuslimIQ: This racist harassed 5 Muslim teen girls in Jersey City, New Jersey—cursing at them & calling them “traitors to America” b/c…" +06/24/2018,Actors,@iJesseWilliams,RT @GideonResnick: This new Kamasi Washington album https://t.co/y8F72sVGlx +06/23/2018,Actors,@iJesseWilliams,RT @NILC_org: ICE agents often use intimidation tactics to enter homes. Remember: #WeHaveRights. Be prepared for encounters with ICE with t… +06/23/2018,Actors,@iJesseWilliams,RT @mireya_g: That story about the woman with the parasitic worm inside her face is just too gross. I can't even share it. It is giving me… +06/23/2018,Actors,@iJesseWilliams,"RT @CNN: First, it was a small bump under her left eye. Five days later, it appeared above the eye. Her upper lip was bulging 10 days after…" +06/23/2018,Actors,@iJesseWilliams,"Those who can’t do, gossip." +06/23/2018,Actors,@iJesseWilliams,RT @_QuianaJ_: I literally love that Jackson wears J’s when he is outside of the hospital. J’s and Grey Sweatpants! @GreysABC @iJesseWillia… +06/23/2018,Actors,@iJesseWilliams,Heja Sverige!!! 🇸🇪 #WorldCup +06/23/2018,Actors,@iJesseWilliams,RT @notdoxxed: How we playing rn #GERSWE https://t.co/LCMEHMnq6Q +06/22/2018,Actors,@iJesseWilliams,"If you, your friends and/or family are looking for scholarships this summer, @myScholly just launched our $10,000 S… https://t.co/4hPUO3jXQr" +06/22/2018,Actors,@iJesseWilliams,"RT @FOXSoccer: The touch, the finish, everything about this Musa goal was SPECTACULAR. 🙌 https://t.co/ILhhCmiimk" +06/22/2018,Actors,@iJesseWilliams,"RT @Luis_22__: Dear @NYGovCuomo, + +You must sign this criminal justice reform bill to finally hold prosecutors accountable for their miscond…" +06/22/2018,Actors,@iJesseWilliams,RT @TheDailyShow: PROPAGAND-OFF! Fox News vs. North Korean State TV https://t.co/B9CfxgN0XC +06/22/2018,Actors,@iJesseWilliams,RT @Phil_Lewis_: Saw this on Facebook: 1964 news clip of white citizens reacting to the proposed civil rights bill. https://t.co/j8yM00hEgB +06/22/2018,Actors,@iJesseWilliams,"RT @EricHolder: Here’s another zero tolerance program for the Trump Administration: EVERY child, EVERY baby has to be reunited with his or…" +06/22/2018,Actors,@iJesseWilliams,"RT @Sifill_LDF: Frankly, it’s refreshing when they just say it. https://t.co/4gNHRelMZn" +06/22/2018,Actors,@iJesseWilliams,RT @GreysABC: Happy First Day of Summer! 😎🍦☀️🏖⛵ #SummerSolstice #GreysAnatomy https://t.co/wZqfCEVaFG +06/22/2018,Actors,@iJesseWilliams,"RT @openrun: If you woke up this morning thinking, “wait...who did my team draft last night?” — we’ve got the prospect primer you need! Fea…" +06/22/2018,Actors,@iJesseWilliams,WHAT A COUNTER ATTACKKKKK!!!! @Nigeria #SuperEagles #WorldCupRussia2018 +06/21/2018,Actors,@iJesseWilliams,Modrić with the DAGGER to Argentina’s heart!!! #WorldCup2018 +06/21/2018,Actors,@iJesseWilliams,Oh good https://t.co/k54AuesRbt +06/21/2018,Actors,@iJesseWilliams,"RT @MoscowTimes: Meanwhile in Russia, Burger King apologizes for short-lived promo offering lifetime of free Whoppers to women impregnated…" +06/20/2018,Actors,@iJesseWilliams,"IT’S ALMOST LIKE THEY DIDN’T MEAN IT WHEN THEY SAID +“ALL LIVES MATTER”" +06/20/2018,Actors,@iJesseWilliams,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Actors,@iJesseWilliams,RT @GlennonDoyle: Predators live for moments like this. This is an atrocity. https://t.co/8vQoVeZhAt +06/20/2018,Actors,@iJesseWilliams,RT @mikeytraynor: Me when plans get cancelled. #AliouCisse #WorldCup https://t.co/OdbTBeyxvU +06/20/2018,Actors,@iJesseWilliams,RT @NutmegRadio: Aliou Cissé is me when the DJ finally plays my song and then switches to the remix before the first verse even finishes. h… +06/20/2018,Actors,@iJesseWilliams,RT @sober2lourve: Me hyping up my friend when they see their crush https://t.co/DnxKjTW1Dz +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: I have spent much of my life working in GOP politics. I have always believed that both parties were two of the most im… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: Season of renewal in our land is the absolute and utter repudiation of Trump and his vile enablers in the 2018 electio… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: Humanity in our history. It is connected by the same evil that separated families during slavery and dislocated tribes… +06/20/2018,Actors,@iJesseWilliams,"RT @SteveSchmidtSES: It is corrupt, indecent and immoral. With the exception of a few Governors like Baker, Hogan and Kasich it is filled w…" +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: 29 years and nine months ago I registered to vote and became a member of The Republican Party which was founded in 185… +06/20/2018,Actors,@iJesseWilliams,"RT @JWilliamsCrew: 📱 | Jesse Williams to present at the 2018 NBA Awards, hosted in Los Angeles on Monday, June 25th. https://t.co/UFz8EOQG…" +06/20/2018,Actors,@iJesseWilliams,"RT @Empresstwit: @iJesseWilliams “White people who are quiet about racism might not plant the seed, but their silence is sunlight.” + +DAMN.…" +06/20/2018,Actors,@iJesseWilliams,RT @beth_blomquist: @iJesseWilliams That hurt to read. I would like to think that I speak up and speak out at every injustice and intoleran… +06/20/2018,Actors,@iJesseWilliams,White People Are Cowards - The Root #ReadIfYouDare https://t.co/1HzWnLyh9f +06/20/2018,Actors,@iJesseWilliams,"RT @ScottHech: If you or your loved one is *arrested by ICE, know this: YOU HAVE RIGHTS. View the #WeHaveRights series that @ACLU + @BklynD…" +06/20/2018,Actors,@iJesseWilliams,"RT @ScottHech: If ICE approaches you in the street, your community, at work, or in court, remember: YOU HAVE RIGHTS. View the #WeHaveRights…" +06/20/2018,Actors,@iJesseWilliams,👀👂🏽 https://t.co/cTzASU0q61 +06/20/2018,Actors,@iJesseWilliams,RT @ScottHech: Figured now was a good a time to remind people that-whether you’re documented or undocumented-YOU HAVE RIGHTS when interacti… +06/20/2018,Actors,@iJesseWilliams,"RT @caterinatweets: This is a really easy way to help the babies, children and parents who are being separated and traumatized at the borde…" +06/20/2018,Actors,@iJesseWilliams,"RT @ACLU: BREAKING: The court rules that Kansas' documentary proof-of-citizenship law, which disenfranchised thousands of eligible voters,…" +06/20/2018,Actors,@iJesseWilliams,RT @marwilliamson: The fraud is not being committed by immigrants trying to game the system; ICE admits 1% of asylum seekers found to be fr… +06/20/2018,Actors,@iJesseWilliams,"RT @chrislhayes: Since the president is lying about this, I'll reiterate that we obtained internal CBP documents that show that ****91%****…" +06/18/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: """"I'm going to take your child to get bathed."" That's one we see again and again. ... The child goes off, and in a half a…" +06/18/2018,Actors,@iJesseWilliams,RT @ClintSmithIII: This is an important moment to remember that there have been folks organizing & working on behalf of families at the bor… +06/18/2018,Actors,@iJesseWilliams,RT @DrPhilGoff: They’re not even putting mechanisms in place that would ALLOW them to reunite families. It’s just a policy of evil. No mora… +06/18/2018,Actors,@iJesseWilliams,"RT @goingglocal: So Trump wants you to think there is a major uprising here in Germany and that ""Crime in Germany is way up."" + +Greetings f…" +06/18/2018,Actors,@iJesseWilliams,RT @mattdpearce: Calling it like it is. https://t.co/CeGSuoDlAX https://t.co/FWCSkiwrRO +06/18/2018,Actors,@iJesseWilliams,"RT @NBCNews: UN Human Rights commissioner: + +""In the United States, I'm deeply concerned by recently adopted policies which punish children…" +06/18/2018,Actors,@iJesseWilliams,"RT @adv_project: This isn't an easy listen. But it's a necessary one. + +Our government & our elected officials created this crisis. It's ti…" +06/18/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/18/2018,Actors,@iJesseWilliams,"RT @sternbergh: ""the youngest children in here are as young as infants, basically"" https://t.co/nuYqnZuGG9" +06/18/2018,Actors,@iJesseWilliams,"RT @keithboykin: ""Trump is lying, as he often does. This barbaric policy is an outgrowth of his own personal cruelty. It’s absolutely repre…" +06/18/2018,Actors,@iJesseWilliams,RT @BetoORourke: Catch-22. We are preventing families from lawfully requesting asylum at our ports of entry & then criminally prosecuting t… +06/18/2018,Actors,@iJesseWilliams,"RT @TheRoot: Texas deputy accused of sexually assaulting 4-year-old girl, while threatening her mother with deportation to get her to stay…" +06/18/2018,Actors,@iJesseWilliams,RT @nowthisnews: Crowds of people marched on a 'tent city' where the Trump administration is detaining undocumented children https://t.co/V… +06/18/2018,Actors,@iJesseWilliams,"RT @Channel4News: This Silicon Valley 'computer philosopher' says you need to delete your social media. + +Jaron Lanier argues we are hooked…" +06/18/2018,Actors,@iJesseWilliams,"RT @JoyAnnReid: Some of the migrant parents fear they may never get their children back, as they are being deported without them... https:/…" +06/18/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: Fact Check: The German crime rate just hit its lowest level since 1992. +https://t.co/v9RMJBcSKB https://t.co/s6yEMPRe8D" +06/18/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: Because of the Administration’s policy of breaking up families at the border, these detention facilities are overflowing…" +06/18/2018,Actors,@iJesseWilliams,"RT @SenMarkey: This is a lie. There is no law. There is no court mandate. This is a policy made solely by this administration, and you can…" +06/18/2018,Actors,@iJesseWilliams,"RT @RepDonBeyer: The Trump Administration’s family separation policy tore 2,000 families apart in six weeks but they won’t stop lying about…" +06/18/2018,Actors,@iJesseWilliams,"RT @RepDonBeyer: And again Friday, asked about Kim Jong-un, Trump said: “Hey, he’s the head of a country. And I mean he is the strong head.…" +06/17/2018,Actors,@iJesseWilliams,EXCLUSIVE: Jesse Williams hosts star-studded @BLeBRiTYgame night at @ABFF https://t.co/Hohh8mkmCK via @theGrio +06/17/2018,Actors,@iJesseWilliams,😂😂😂😂😂😂😂 https://t.co/e1aR2XExSt +06/17/2018,Actors,@iJesseWilliams,"Our Father - @SaulWilliams + +https://t.co/KlLvNhR8rO #HappyFathersDay" +06/16/2018,Actors,@iJesseWilliams,"RT @jperiodBK: Dear Hip Hop, + +One of the Culture's greatest protectors is in need. + +@DJSpinna, legendary DJ, producer and unmatched encycl…" +06/15/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: According to a shocking report, about 2,000 children have been separated from their families. That's an average of 45 kid…" +06/15/2018,Actors,@iJesseWilliams,"RT @ScottHech: Mitch. The Mueller probe has gone on for just 394 days. As of today, my 19 year old client charged with robbery of another t…" +06/15/2018,Actors,@iJesseWilliams,"RT @chrislhayes: The president and the GOP are currently using 2000 children, stolen from their parents, as leverage for a bill to make asy…" +06/15/2018,Actors,@iJesseWilliams,🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/FF8UJ1l7YX +06/15/2018,Actors,@iJesseWilliams,You won this deal. Everybody won this deal. @BLeBRiTYgame https://t.co/Z42K5HM69m +06/15/2018,Actors,@iJesseWilliams,You’re the real MVP Amber https://t.co/t52MLvD6Gb +06/15/2018,Actors,@iJesseWilliams,"RT @POLConference: .@iJesseWilliams will join the Opening Plenary at #ServiceUnites, leading a panel w/ young men from different walks of l…" +06/15/2018,Actors,@iJesseWilliams,"RT @MelASomers: I've played many games with incredible acting but @BryanDechart, @valoriecurry and @iJesseWilliams set the bar high! #Detro…" +06/15/2018,Actors,@iJesseWilliams,"People on flights to Miami, even at 5am, tend to be happier than 97% of other airline passengers. #Science" +06/15/2018,Actors,@iJesseWilliams,"RT @NateSilver538: @jackshafer @markoff I'd say the email stuff got maybe 4x the amount of coverage that it ""should"" have. Even if you redu…" +06/15/2018,Actors,@iJesseWilliams,RT @NateSilver538: One shouldn't underrate how much the media's obsession with Clinton's emails stemmed from its obsession with fending off… +06/15/2018,Actors,@iJesseWilliams,"RT @matthewamiller: If Trump was running his charity as a sprawling, multi-year criminal enterprise, perhaps that’s a small clue about how…" +06/15/2018,Actors,@iJesseWilliams,"RT @ThornCoyle: Please read all 4 of these screenshots from Tiana Smalls. + +I’ll follow w a thread of a similar experience: + +#Resist #Soli…" +06/15/2018,Actors,@iJesseWilliams,Big up to @bazdreisinger and #EducationNotIncarceration #prison2collegepipeline “Education is the most powerful we… https://t.co/J5Nj9JXOCk +06/15/2018,Actors,@iJesseWilliams,"RT @BarbaraGuer1n: Je commence #DetroitBecomingHuman , je vois Jackson de #GreysAnatomy avant d'être immergé dans l'univers du jeu. Mainten…" +06/15/2018,Actors,@iJesseWilliams,RT @japril_soldiers: Amazing how it looks so real! #Markus #DetroitBecomeHuman @iJesseWilliams 👀 https://t.co/jTweH3e3ku +06/15/2018,Actors,@iJesseWilliams,RT @TeenChoiceFOX: The doctor is in! 👨‍⚕️ RT to vote @iJesseWilliams for #ChoiceDramaTVActor. #TeenChoice https://t.co/222FFxuB1Z +06/15/2018,Actors,@iJesseWilliams,RT @jbrownedianis: One more day til kickoff! Thanks @iJesseWilliams & @Kaepernick7 for your support to make this happen! #ActionCamp2018 ht… +06/15/2018,Actors,@iJesseWilliams,RT @haymarketbooks: “The Problem is Civil Obedience” @iJesseWilliams reads Howard Zinn’s iconic 1970 speech https://t.co/lFuMeCyUTq +06/14/2018,Actors,@iJesseWilliams,"RT @KeeganNYC: From 1992 to 2017, DAs in Mississippi struck black people from juries over 4X as often as they did white people: https://t.c…" +06/14/2018,Actors,@iJesseWilliams,"RT @jehorowitz: This thread is excellent. We are in a linguistic emergency. In a world of words, the right words matter. (And on a side not…" +06/14/2018,Actors,@iJesseWilliams,"RT @AllieGoertz: ME: sorry, where was I? +THERAPIST: you were saying each man you’ve ever loved wears a backwards hat and asked if it’s poss…" +06/14/2018,Actors,@iJesseWilliams,RT @paleofuture: ICE is rounding up legal permanent residents for misdemeanors committed 20 years ago. Remember that “deportation force” ev… +06/13/2018,Actors,@iJesseWilliams,"RT @jolexcapshaw: Let's vote for @iJesseWilliams! The category in which he was nominated is ""Choice Drama TV Actor"". 😉 Click here to vote 👇…" +06/13/2018,Actors,@iJesseWilliams,RT @jolexcapshaw: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams https://t.co/NvtiOHjCd9 +06/12/2018,Actors,@iJesseWilliams,Takk! From both of us! https://t.co/KiF8X9SBtj +06/12/2018,Actors,@iJesseWilliams,👌🏽👌🏽👌🏽👌🏽👌🏽👌🏽🙏🏽🙏🏽🙏🏽🙏🏽🙏🏽 https://t.co/i77mUch13K +06/12/2018,Actors,@iJesseWilliams,"RT @generationOn: This is so exciting! Don't miss this amazing line up of speakers, include @iJesseWilliams, @Adaripp and student leaders @…" +06/12/2018,Actors,@iJesseWilliams,"RT @POLConference: JUST IN! @iJesseWilliams will join the Opening Plenary at #ServiceUnites, leading a panel w/ young men from different wa…" +06/12/2018,Actors,@iJesseWilliams,Don’t drop the food. Stay strong. https://t.co/QzZeEss9iE +06/11/2018,Actors,@iJesseWilliams,RT @rainehoggard: @iJesseWilliams had to go ahead and get it😊 https://t.co/uS2gcsySve +06/11/2018,Actors,@iJesseWilliams,"RT @openrun: #NBADraft Deep Dive #1: Kevin Knox, the 6'9"" SF from the University of Kentucky #OpenRunxDimeDrop | See the full @dimedrophoop…" +06/11/2018,Actors,@iJesseWilliams,RT @openrun: The #NBADraft Preview you’ve been dreaming of is here! We’re teaming up with longtime friend o’ the show @jkylemann to bring y… +06/11/2018,Actors,@iJesseWilliams,"RT @kaytana08: I can't get over how good #DetroitBecomeHuman was. I finished it yesterday and am still thinking about it. + +@Quantic_Dream k…" +06/11/2018,Actors,@iJesseWilliams,#YESPLEASE: KIDDING (2018) Teaser Trailer | Jim Carrey SHOWTIME Series https://t.co/q8Xou0rc73 via @JimCarrey @Showtime +06/10/2018,Actors,@iJesseWilliams,RT @3_busan: Still can’t believe I met @iJesseWilliams a few days ago 😍😭😍 thank you so much for taking the time to take the pic and sign au… +06/10/2018,Actors,@iJesseWilliams,"RT @Japril_EndGame: AMERICA DO YOU THING. @iJesseWilliams is showing you this on his IG story. So this must be important. + +I don’t think t…" +06/10/2018,Actors,@iJesseWilliams,👌🏽 https://t.co/7xhhAe1qxh +06/10/2018,Actors,@iJesseWilliams,RT @sanna_wolk: Awesome that actor @iJesseWilliams visited #Rinkeby when he was in Stockholm😍 Thanks for your good work - it’s really impre… +06/10/2018,Actors,@iJesseWilliams,RT @JeffMerkley: Kids in what looked like dog kennels. Children using space blankets as a cushion or cover for privacy. What I saw at the p… +06/10/2018,Actors,@iJesseWilliams,RT @JeffMerkley: My visit to the McAllen processing center was a harrowing experience. Children were in cages. People were distraught. Kids… +06/08/2018,Actors,@iJesseWilliams,RT @iUnapologeticMe: 2014. Activist @iJesseWilliams talks about the police treating the people like savages. 4 years ago and still applies… +06/08/2018,Actors,@iJesseWilliams,RT @JustGugu: “Afraid? Ok. Do it afraid” - @iJesseWilliams +06/08/2018,Actors,@iJesseWilliams,RT @BoobsRadley: I loved how Anthony Bourdain tried to show TV viewers how people who weren't anything like us were just like us. He viewed… +06/08/2018,Actors,@iJesseWilliams,RT @mrjafri: Anthony Bourdain took the time to shine a light on intolerance and injustice. He showed us what matters most is not what divid… +06/08/2018,Actors,@iJesseWilliams,RT @ToddGregory: 23 seconds: https://t.co/HzmBElXcaQ +06/08/2018,Actors,@iJesseWilliams,"RT @nickbilton: This is gut-wrenching: ""The first few nights, he cried himself to sleep. Then it turned into just moaning and moaning... he…" +06/08/2018,Actors,@iJesseWilliams,RT @JamilSmith: Read every word of this @mirjordan report. The whole story of a young Honduran boy taken away from his father at the border… +06/08/2018,Actors,@iJesseWilliams,"RT @SiniSiambalis: When u see @iJesseWilliams hanging in the hood 🙌🏼 +Välkommen! https://t.co/wFPCH5SKPl" +06/08/2018,Actors,@iJesseWilliams,RT @digitalduckiesd: Watching”Survivers guide to prison” - HORRIFYING! @officialDannyT @thematthewcooke @SusanSarandon @iJesseWilliams and… +06/08/2018,Actors,@iJesseWilliams,"RT @TheAfroLifeTV: #RT @ABFF: ""#TheLineUp | Without A Net: The Digital Divide in America sponsored by #Verizon |Panelist: @ijessewilliams |…" +06/08/2018,Actors,@iJesseWilliams,"RT @IDEA_Initiative: #TBT! @iJesseWilliams, @cgray91 and @MichaelaAngelaD paused for a quick selfie after their fireside chat at last month…" +06/08/2018,Actors,@iJesseWilliams,RT @QD3: With my brothers @ijessewilliams and @anunez21 at #cafemynta in #rinkeby #stockholm. VA hander! Tack min bror Jamal. https://t.co/… +06/06/2018,Actors,@iJesseWilliams,"Kalief Browder died 3 years ago today. + +He spent 1,120 days in jail but was NEVER convicted of a crime. + +He couldn’… https://t.co/3fo8Z9tmbr" +06/06/2018,Actors,@iJesseWilliams,"RT @Taru121112: Thank u, @Quantic_Dream and @iJesseWilliams 🖤🎮 +Thank u, for your work, thank u for your characters and thank u, for your aw…" +06/06/2018,Actors,@iJesseWilliams,RT @iam3aii: Markus 💚 #Markus #DetroitBecomeHuman #Fanart @Detroit_PS4 @PlayStationES @Quantic_Dream @iJesseWilliams @dibujando @Dibujnauta… +06/05/2018,Actors,@iJesseWilliams,"RT @CandyKin9: Literally the best game that i’ve ever played in 2018 , thank you for giving us this Master Piece it’s so beautiful ❤️💜💕. @…" +06/03/2018,Actors,@iJesseWilliams,Play it in line or with some wine. Play it on the train or in the rain. @BlebrityGame https://t.co/tmiw8samas +06/03/2018,Actors,@iJesseWilliams,"RT @cnni: Becky McCabe got down on one knee to propose to her girlfriend, Jessa Gillaspie. Jessa shrieked and immediately reached for her b…" +06/03/2018,Actors,@iJesseWilliams,RT @rosaclemente: Its hard to witness most everyone on social media focusing on two white women and their antics. I guess 2 white women mil… +06/03/2018,Actors,@iJesseWilliams,RT @samswey: The police union in Oakland sent out an email blast criticizing black District Attorney candidate Pamela Price. It turns out t… +06/03/2018,Actors,@iJesseWilliams,RT @franklinleonard: He’s never gonna dance again. Guilty feet have got no rhythm. https://t.co/2vI72YoCOP +06/03/2018,Actors,@iJesseWilliams,"RT @moontroller: Is @Detroit_PS4 already my game of the year? Hell yeah! +Are the great performances of @valoriecurry @iJesseWilliams @Bryan…" +06/02/2018,Actors,@iJesseWilliams,RT @Shootingstar258: @iJesseWilliams I am enjoying Detroit become human. It has everything you need in a game. It also relates to some big… +06/25/2018,Actors,@TheRealKMcKidd,Friends of mine are going thru this - please help if you can xx. https://t.co/JUhFBdfLHN +06/20/2018,Actors,@TheRealKMcKidd,RT @thedailybeast: The cost of keeping migrant kids separated from their families in so-called “tent cities” reportedly costs three times m… +06/20/2018,Actors,@TheRealKMcKidd,Family separation- let’s put a stop to it- it’s… https://t.co/y53ynT8p29 +06/19/2018,Actors,@TheRealKMcKidd,"RT @msdebbieallen: As a parent, I'm sickened by what our gov’t is doing. We have to stand up for these children who are going to sleep in a…" +06/15/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: .@SpeysideSession turns 6 today! + +Lovely album by @TheRealKMcKidd & friends with proceeds going to @SavetheChildren + +Get di…" +06/12/2018,Actors,@TheRealKMcKidd,Proud of my director pal @GemmaFairlie ! Go and see it if you happen to be in Bonny scotland ! :) https://t.co/ogagbMl3C9 +06/06/2018,Actors,@TheRealKMcKidd,RT @SavetheChildren: @TheRealKMcKidd Thank you so much for your support of children in need during time of crisis. We're on the ground in… +06/06/2018,Actors,@TheRealKMcKidd,"Agreed, be vigilant where you choose to donate - make sure it is a reputable charity https://t.co/Rwl1Erqyqe" +06/06/2018,Actors,@TheRealKMcKidd,#guatemala #volcano- donate to this @SavetheChildren site if you can. It’s truly awful the unfolding situation there https://t.co/dumGx1xBvA +06/06/2018,Actors,@TheRealKMcKidd,#Guatemala is in a huge human crisis right now! #volcano is ongoing and affecting thousands - donate to #Redcross https://t.co/COf5D7LsF1 +06/06/2018,Actors,@TheRealKMcKidd,Where is the donation sites for #Guatemala volcano victims? +06/06/2018,Actors,@TheRealKMcKidd,"RT @ItsMutai: This is not a movie. This is the reality in Guatemala Yesterday when a Volcano erupted and killing 75 people, and 200 people…" +06/06/2018,Actors,@TheRealKMcKidd,"RT @NPR: Guatemala Volcano Toll Rises To 75, 200 Still Missing https://t.co/riJhLZfUIq" +05/29/2018,Actors,@TheRealKMcKidd,"RT @THR: 6 of Hollywood's top actresses unload on the power of producing, onscreen nudity (male and female), learning to say no and the bet…" +05/25/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: East coast are you watching? #RedNoseDay 🔴 https://t.co/u07BGrOk4g +05/25/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: Looking back at @TheRealKMcKidd's 2016 ""FUN-raiser"" for @RedNoseDayUSA Thanks to @caterinatweets @sarahdrew @EllenPompeo fo…" +05/22/2018,Actors,@TheRealKMcKidd,RT @byshondaland: It was @msdebbieallen’s dedication to youth that made her the perfect fit to shoot @Dove’s self esteem project. The tripl… +05/18/2018,Actors,@TheRealKMcKidd,This young man .. I remember taking him to… https://t.co/WvqbJDp15C +05/18/2018,Actors,@TheRealKMcKidd,This https://t.co/hFaPgYny1j +05/18/2018,Actors,@TheRealKMcKidd,Every possibility ;) https://t.co/gEJM4i2ADh +05/18/2018,Actors,@TheRealKMcKidd,Kim is such a talent and a pro and real person !! Love her https://t.co/qfR2u7per8 +05/18/2018,Actors,@TheRealKMcKidd,Whenever Jessica and I had a scene together - we had a ball !!! #mrandmrshunt https://t.co/IeHqVKlG0L +05/18/2018,Actors,@TheRealKMcKidd,"Remind me - I have a few BTS pics from Jolex wedding , I’ll post over the next few weeks ;)" +05/18/2018,Actors,@TheRealKMcKidd,This https://t.co/ZaiFDDG4pb +05/18/2018,Actors,@TheRealKMcKidd,Too many to mention ! https://t.co/2QdmBR3VXn +05/18/2018,Actors,@TheRealKMcKidd,"Honestly , I truly don’t know https://t.co/MWstzqNfDv" +05/18/2018,Actors,@TheRealKMcKidd,Yo! https://t.co/vF4MXHg9wd +05/18/2018,Actors,@TheRealKMcKidd,"He will , he will be face timing her to figure stuff out ! https://t.co/NweIaEW4pl" +05/18/2018,Actors,@TheRealKMcKidd,Yup https://t.co/BjwrFiDZWp +05/18/2018,Actors,@TheRealKMcKidd,11 https://t.co/2QdYxxXCNx +05/18/2018,Actors,@TheRealKMcKidd,"Jaw, dropper - 2 words needed only https://t.co/CfZ7jOLYxK" +05/18/2018,Actors,@TheRealKMcKidd,"Clueless , as excited to find out as you are ! https://t.co/aXx7aaQBjD" +05/18/2018,Actors,@TheRealKMcKidd,Be Smart And Honest https://t.co/gKTTWx6fbr +05/18/2018,Actors,@TheRealKMcKidd,"Progressive , blended family. Might work https://t.co/qNvIcSJ3hx" +05/18/2018,Actors,@TheRealKMcKidd,Me too https://t.co/sm6yF47Ync +05/18/2018,Actors,@TheRealKMcKidd,"Nope , pretty much never https://t.co/zp0LGAgAf9" +05/18/2018,Actors,@TheRealKMcKidd,That’s how the cookie crumbles sometimes. #complications #workingtitle @greysabc https://t.co/S0RejPiZs5 +05/18/2018,Actors,@TheRealKMcKidd,"I think when it comes to doing the right thing- Owen shows up, it’s in his DNA to show up https://t.co/vNhCiw6RtM" +05/18/2018,Actors,@TheRealKMcKidd,I’m not sure teddy is in any mood to talk to Owen r now.... he messed up.. he messes up a LOT ! ;) https://t.co/8vk93KOi7h +05/18/2018,Actors,@TheRealKMcKidd,Too many to mention she is my sister https://t.co/AbNYusvbaw +05/18/2018,Actors,@TheRealKMcKidd,Her joy https://t.co/cp3xWOg8qi +05/18/2018,Actors,@TheRealKMcKidd,"I think it’s clear there emotions are drawing them closer again, it’s inevitable between those two. The rest .. it’… https://t.co/dPlMoyU87E" +05/18/2018,Actors,@TheRealKMcKidd,Just chilly - it worked so well for the scene and that moment https://t.co/o57LoNOQlu +05/18/2018,Actors,@TheRealKMcKidd,Hey !! https://t.co/Cycgl02LoV +05/18/2018,Actors,@TheRealKMcKidd,"It’s crazy! In a super fun way, it’s always most interesting to play characters who are under huge pressure in life… https://t.co/aXdpm3ayxf" +05/18/2018,Actors,@TheRealKMcKidd,@workinprgress Here ya go ! #onsofawatchingfinale #selfie @GreysABC https://t.co/MqCdcRTFDq +05/18/2018,Actors,@TheRealKMcKidd,Be careful what you wish for !!! https://t.co/RNzDbVQg64 +05/18/2018,Actors,@TheRealKMcKidd,I’ll get y’all one ;)) https://t.co/QRItLZfLNm +05/18/2018,Actors,@TheRealKMcKidd,I agree https://t.co/XMT8J1DsP7 +05/18/2018,Actors,@TheRealKMcKidd,He is sad So sad https://t.co/rf5xpODspd +05/18/2018,Actors,@TheRealKMcKidd,@GreysABC season finale ! Send me questions :)) +05/18/2018,Actors,@TheRealKMcKidd,I hope so too ! https://t.co/bQvJBBLBZe +05/17/2018,Actors,@TheRealKMcKidd,RT @ashleybreports: Tonight is the #GreysAnatomy Season 14 finale! Check out my exclusive interview with star @TheRealKMcKidd as he talks a… +05/14/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: Our guy Kevin @TheRealKMcKidd pics from @TheWrap photo shoot + +Article https://t.co/GAuVwKeZeS + +📷 @shannafisher +Creative Dir…" +05/14/2018,Actors,@TheRealKMcKidd,On this beautiful Mother’s Day evening... Welcome- little Aiden to… https://t.co/ZupUFnA9Si +05/11/2018,Actors,@TheRealKMcKidd,@iamlk kicking medical ASS ! To get this CU just perfect ;) haha @GreysABC https://t.co/TvkzQT7PqV +05/11/2018,Actors,@TheRealKMcKidd,@GreysABC wanna see a cool BTS in trauma room ?? +05/11/2018,Actors,@TheRealKMcKidd,Yes we do!! Surfs up! Let’s go all go ;) x https://t.co/3BZGgMrpAU +05/11/2018,Actors,@TheRealKMcKidd,Thx!! Sarah is my screen sister https://t.co/mRFnLHlOo2 +05/11/2018,Actors,@TheRealKMcKidd,RT @GreyAnatomy24x7: 'Grey's Anatomy' Star Kevin McKidd Talks Sarah Drew's Exit: 'Owen Hunt Is Going to Struggle' - SFGate https://t.co/HUT… +05/03/2018,Actors,@TheRealKMcKidd,Wow! 10 years ?? Unreal... was an honor Michelle. Let’s celebrate soon K x https://t.co/ZY0ZSRT1yV +05/01/2018,Actors,@TheRealKMcKidd,RT @FosterMore: A big thanks to @GreysABC for challenging traditional perceptions of foster care in a genuine and hopeful way. If you tuned… +04/27/2018,Actors,@TheRealKMcKidd,No ! I love acting too much :) https://t.co/VD5hzn61Hm +04/27/2018,Actors,@TheRealKMcKidd,I did https://t.co/fMGYnuMJ4L +04/27/2018,Actors,@TheRealKMcKidd,Beaches ! https://t.co/I4V90bCOtX +04/27/2018,Actors,@TheRealKMcKidd,Thx ! Enjoy the episode everyone ? https://t.co/xgw3wbQ3nR +04/27/2018,Actors,@TheRealKMcKidd,Fun fact - @jtimberlake song ‘Say Something’ tonight during surgery - such a great fit +04/27/2018,Actors,@TheRealKMcKidd,Her passion and sense of fun https://t.co/prslSK0uKS +04/27/2018,Actors,@TheRealKMcKidd,Leo!! Best on set baby EVER !! truly https://t.co/CDOb9kpvlF +04/27/2018,Actors,@TheRealKMcKidd,Scottish food ! https://t.co/Szm5Klkq2I +04/27/2018,Actors,@TheRealKMcKidd,Collaborating https://t.co/Vlso4U9Jn4 +04/27/2018,Actors,@TheRealKMcKidd,Hard one ! Surgery sequence !! https://t.co/5WTaMCi2G8 +04/27/2018,Actors,@TheRealKMcKidd,Around.. 22? I think https://t.co/wqhzEh7l9d +04/27/2018,Actors,@TheRealKMcKidd,He did indeed ! And it was great https://t.co/rpN4rzCrUS +04/27/2018,Actors,@TheRealKMcKidd,I begin #livetweeting @GreysABC now !!!! https://t.co/nagEuMCHur +04/27/2018,Actors,@TheRealKMcKidd,RT @Hols242: I am a foster parent. It is the most challenging and rewarding job in the whole world! I hope tonight’s @GreysABC episode will… +04/26/2018,Actors,@TheRealKMcKidd,Had a blast @TheWrap yesterday ! Thx everyone there !! Enjoy :) https://t.co/lU1qPpsxH3 +04/25/2018,Actors,@TheRealKMcKidd,Who that be ? ;) https://t.co/WMEubcScFA +04/24/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: Excited that our guy @TheRealKMcKidd is on @people @peopletv #chatter show answering questions today :) Tune in at https://… +04/24/2018,Actors,@TheRealKMcKidd,I am LIVE on @peopletv #chatter talking all things #GreysAnatomy. Use #chatter to ask me questions https://t.co/JrdIdNRuWw +04/24/2018,Actors,@TheRealKMcKidd,"RT @people: It's about to go down! Watch #chatter tonight at 5 pm PT/8 pm ET with @rocsidiaz, co-host @cherylburke, and #GreysAnatomy star…" +04/17/2018,Actors,@TheRealKMcKidd,Time in the canyons. #finale @greysabc ;) https://t.co/ZtZOGnrHHW +04/12/2018,Actors,@TheRealKMcKidd,@KMcKOnline @instagram Yah!!! +04/12/2018,Actors,@TheRealKMcKidd,Did it today ;) https://t.co/KISVDamBEz +04/11/2018,Actors,@TheRealKMcKidd,"Actually .. on left , Rosie ( cocker/J russel mix, on right Patch ( springer sp) center is Pippa - offspring of pat… https://t.co/wJNvW7igyB" +04/10/2018,Actors,@TheRealKMcKidd,Directing @GreysABC #1421 w partner in crime and badass DP #Ross. Matching stance ! https://t.co/VAIvs80chV +04/09/2018,Actors,@TheRealKMcKidd,@IrvineWelsh On ya go Shirley !!! +04/06/2018,Actors,@TheRealKMcKidd,This !!!@IamSandraOh :))) https://t.co/peJkGmCiSL +04/04/2018,Actors,@TheRealKMcKidd,RT @byshondaland: Who remembers Nurse Olivia? https://t.co/ZZgmG3ibGr +04/03/2018,Actors,@TheRealKMcKidd,Yes ! Go @Matt_Morrison ! https://t.co/uJG7jyiyj9 +04/02/2018,Actors,@TheRealKMcKidd,It’s true ;) https://t.co/SvAO35IivB +04/01/2018,Actors,@TheRealKMcKidd,Hey ! Such a long time since Coleman Rd ! You guys still love there :) https://t.co/BcitRMfXko +03/30/2018,Actors,@TheRealKMcKidd,RT @erfinchie: @TheRealKMcKidd made it look like a freaking movie and @KimRaver made it feel like a freaking dream. From Take One. #BTS #Gr… +03/30/2018,Actors,@TheRealKMcKidd,@GreysABC fans ! Help me decide ! Follow and suggest ! X https://t.co/Qd5AZ20a8w +03/30/2018,Actors,@TheRealKMcKidd,Tough one ! #overshareOwen https://t.co/QRkmTGZlxG +03/30/2018,Actors,@TheRealKMcKidd,Noticed !! https://t.co/n8dNApGLSz +03/30/2018,Actors,@TheRealKMcKidd,Oi!!!! https://t.co/zwSAqa9yey +03/30/2018,Actors,@TheRealKMcKidd,Thankyou https://t.co/XBZR63AxL3 +03/30/2018,Actors,@TheRealKMcKidd,Hi there !! https://t.co/oDDmYA24nV +03/30/2018,Actors,@TheRealKMcKidd,"@saulrubinek everyone ... #emmy nom , best supporting" +03/30/2018,Actors,@TheRealKMcKidd,"Maybe ... hard for people to take a step back from there own s**t sometimes , yknow ? https://t.co/tnJBzqkDRN" +03/30/2018,Actors,@TheRealKMcKidd,@EllenPompeo and #Scott NAILED IT!!! https://t.co/HmUlwmfk5C +03/30/2018,Actors,@TheRealKMcKidd,I doubt he would stab pigs now .. he’s grown out of that https://t.co/BXttktYBSc +03/30/2018,Actors,@TheRealKMcKidd,Thankyou https://t.co/6r2jdnrTBG +03/30/2018,Actors,@TheRealKMcKidd,The best ! https://t.co/hyyPEc4H4k +03/30/2018,Actors,@TheRealKMcKidd,I would like that https://t.co/KIX1c1ekQF +03/30/2018,Actors,@TheRealKMcKidd,That’s kinda the point https://t.co/Vd2nBCyQzt +03/30/2018,Actors,@TheRealKMcKidd,Being able to tell stories that move people till my last breath https://t.co/TzATzCSp1F +03/30/2018,Actors,@TheRealKMcKidd,"Start , just start — seek it out https://t.co/VDH4P0saFx" +03/30/2018,Actors,@TheRealKMcKidd,Always yes https://t.co/cVG6KJGQnb +03/30/2018,Actors,@TheRealKMcKidd,Sarah ... I can’t - special time filming this little piece of magic with you https://t.co/cx1QrZHiAa +03/30/2018,Actors,@TheRealKMcKidd,Be sad https://t.co/htbDgoBWuq +03/30/2018,Actors,@TheRealKMcKidd,Teddy Germany apartment ... take a bow and lap of honor #BrianHarms and everyone who made it ! Thankyou !!! +03/30/2018,Actors,@TheRealKMcKidd,Indeed .. https://t.co/SDihukXEof +03/30/2018,Actors,@TheRealKMcKidd,Louis Jordan playing in the teddy Owen scene by the fire ! Listen to Louis !! Makes life happy +03/30/2018,Actors,@TheRealKMcKidd,Our job is done - this is the point ... to FEEL something https://t.co/azuJSxGvhx +03/30/2018,Actors,@TheRealKMcKidd,Impulsive https://t.co/yRXSimoFGc +03/30/2018,Actors,@TheRealKMcKidd,Flawed https://t.co/C78GRZZFfU +03/30/2018,Actors,@TheRealKMcKidd,And the Iraq flashback episode https://t.co/CFSrtzSZgv +03/30/2018,Actors,@TheRealKMcKidd,"This one , by far https://t.co/CFSrtzSZgv" +03/30/2018,Actors,@TheRealKMcKidd,To act - all the teddy Owen scenes. To direct - Kepler and Levi https://t.co/UkL2pXvJyu +03/30/2018,Actors,@TheRealKMcKidd,Staying relaxed https://t.co/tQ99dcmH3u +03/30/2018,Actors,@TheRealKMcKidd,Watch and see https://t.co/3PAFV1hLEP +03/30/2018,Actors,@TheRealKMcKidd,6 hours on set 6 hours in editing. Now tweeting ;) https://t.co/c5i2odDB35 +03/30/2018,Actors,@TheRealKMcKidd,:) https://t.co/pwu3ftufd5 +03/30/2018,Actors,@TheRealKMcKidd,I think so . People do unexpected stuff sometimes. Wait and see https://t.co/WfYBD5HPSw +03/30/2018,Actors,@TheRealKMcKidd,I’m proud of it. Thx https://t.co/fU7JWSLIO4 +03/30/2018,Actors,@TheRealKMcKidd,"In total , 4 https://t.co/58A1ytAhnC" +03/30/2018,Actors,@TheRealKMcKidd,Look up ‘80/20 relationships’ https://t.co/M6Cso57ipz +03/30/2018,Actors,@TheRealKMcKidd,Ep 1421 https://t.co/w5XNtXiPx3 +03/30/2018,Actors,@TheRealKMcKidd,It was a blast https://t.co/PKBiBKxqrD +03/30/2018,Actors,@TheRealKMcKidd,Nice guy ! Bye ;) https://t.co/9PKpay9YHD +03/30/2018,Actors,@TheRealKMcKidd,I did ;) https://t.co/pVFBPNXz8B +03/30/2018,Actors,@TheRealKMcKidd,Hey folks ! Ep 1417! +03/30/2018,Actors,@TheRealKMcKidd,Love that set! love that actor ! One of the best scene partners in the business @GreysABC https://t.co/v4YIvT7Z8t +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Does this not look like the coziest scene ever? #GreysAnatomy https://t.co/8bDVhC3RL8 +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Mer out here saving lives #GreysAnatomy https://t.co/9GlMaEzR9X +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: ❤️ #GreysAnatomy https://t.co/clc5IbqbIq +03/30/2018,Actors,@TheRealKMcKidd,And @saulrubinek for best supporting ;) #takesavillage https://t.co/4z80ck5D7F +03/30/2018,Actors,@TheRealKMcKidd,I directed it - so yes ! https://t.co/4z80ck5D7F +03/30/2018,Actors,@TheRealKMcKidd,RT @duchovlet: Very nice @TheRealKMcKidd interview covering more than @GreysABC 👍👏✊✌ https://t.co/jcewt8zsD5 +03/30/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: I am deeply in love with tonight's episode of #GreysAnatomy + +Masterfully written and directed by @erfinchie and @TheRe…" +03/30/2018,Actors,@TheRealKMcKidd,RT @msdebbieallen: Tonight’s @GreysABC is a MUST see!!!💋 #GreysAnatomy https://t.co/naXdmPphrn +03/30/2018,Actors,@TheRealKMcKidd,Finch !! You beyond knocked this script out of the park! Was a true honor to help guide the process ;) @GreysABC https://t.co/SPnWPuluut +03/29/2018,Actors,@TheRealKMcKidd,"RT @sarahdrew: Tonight’s episode was one of my all time favorites! Beautifully written by the incomparable @erfinchie , directed by the ama…" +03/29/2018,Actors,@TheRealKMcKidd,Thx team trauma bud ! You n @saulrubinek killed it !! https://t.co/HsX03fbkxu +03/29/2018,Actors,@TheRealKMcKidd,RT @GreysABC: This just keeps getting better and better. #TGIT is all new TOMORROW! #GreysAnatomy https://t.co/r2P5P5CbFN +03/29/2018,Actors,@TheRealKMcKidd,"@GreysABC tonight, west coast , I WILL be #LiveTweet the episode I directed #1417 :) see ya then ! Kev" +03/28/2018,Actors,@TheRealKMcKidd,"RT @THR: |n Studio | #GreysAnatomy: @TheRealKMcKidd talks ""celebratory"" season 14 finale https://t.co/pNTToaDF8L https://t.co/m57qhz69kl" +03/28/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: SNEAK PEEK 3 #GreysAnatomy 1417 ""One Day Like This"" / written by @erfinchie & directed by @therealkmckidd + +https://t.co/Gqi…" +03/28/2018,Actors,@TheRealKMcKidd,RT @GreysABC: 👀👀👀 All-new #GreysAnatomy this THURSDAY! https://t.co/8Py1LtrFpz +03/28/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: We're seeing double (Directors, that is)! #GreysAnatomy | 📷: @therealMCkidd (cc: @iJesseWilliams ) https://t.co/jdpAjFyDB7" +03/25/2018,Actors,@TheRealKMcKidd,RT @davidhogg111: I'm ready to change America and save lives are you? +03/25/2018,Actors,@TheRealKMcKidd,RT @RWitherspoon: I’m so proud of these students who are using their voices to speak Truth to Power. I support @AMarch4OurLives @Everytown… +03/25/2018,Actors,@TheRealKMcKidd,RT @byshondaland: Can't make it to the #MarchForOurLives? Here's how you can still help. https://t.co/X33jrtLzf4 +03/25/2018,Actors,@TheRealKMcKidd,"RT @JasonWGeorge: America, + +This is your #wakeupcall + +#marchforourlives +@barrett_doss @D_SAVRE @GiacomoKG @sean_m_maguire https://t.co/La…" +03/24/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: #NationalPuppyDay @TheRealKMcKidd https://t.co/mjTwg0ONAf +03/24/2018,Actors,@TheRealKMcKidd,RT @mckiddsoh: @TheRealKMcKidd happy #NationalPuppyDay ❤️ https://t.co/s9nL8sgHVw +03/23/2018,Actors,@TheRealKMcKidd,@GreysABC hey y’all ! Enjoying tonight’s all new Greys ??? :) +03/22/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: Before we save them, @Station19 has to rescue them. Watch the premiere of #TGIT's newest show THURSDAY, 9|8c, after #GreysAna…" +03/22/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: ""The only rule is, there are no rules"" #GreysAnatomy is back on TONIGHT! https://t.co/he1xzVVBdU" +03/21/2018,Actors,@TheRealKMcKidd,"It’s not ‘my’ concert ..;) but I WILL be playing a few tunes w pals, Dan, Pat, Kira this Sunday 7pm @GMTheatre_org… https://t.co/dbH7M5saDy" +03/19/2018,Actors,@TheRealKMcKidd,Learning to sail with my best boy #weekendwarriors #fathersontime https://t.co/3sbwIUcR31 +03/16/2018,Actors,@TheRealKMcKidd,"Me n @iJesseWilliams , both directing our episodes on the same day ! You go Jesse !@GreysABC https://t.co/FP30zFFHDn" +03/14/2018,Actors,@TheRealKMcKidd,Go to my insta for video ;) +03/14/2018,Actors,@TheRealKMcKidd,"Nope, just last scene on my episode silly;) https://t.co/YCFen0Tuua" +03/14/2018,Actors,@TheRealKMcKidd,Nope https://t.co/boScrcXVyQ +03/14/2018,Actors,@TheRealKMcKidd,Hands up who wants see a vid of the moment @sarahdrew wrapped last scene on @GreysABC #1421 that I had honor to direct??;) +03/14/2018,Actors,@TheRealKMcKidd,"This scene we were shooting AS Sarah found out her amazing news. A truly lovely, lovely moment :) @KellyMcCreary… https://t.co/gCcaSptflo" +03/14/2018,Actors,@TheRealKMcKidd,@KellyMcCreary @GreysABC I forgot to include @sarahdrew tag :) oops +03/14/2018,Actors,@TheRealKMcKidd,"This scene we were shooting AS Sarah found out her amazing news. A truly lovely, lovely moment :) @KellyMcCreary… https://t.co/Mzp0CRrCA6" +03/14/2018,Actors,@TheRealKMcKidd,Sarah !!!!! You go go go GO!!! So proud xxxx https://t.co/lvx5I5f7Ja +03/13/2018,Actors,@TheRealKMcKidd,"@greysabc bake off fun and nonsense! Me, @ellenpompeo and debs on a sugar rush , post judging ! https://t.co/WthE95ierX" +03/13/2018,Actors,@TheRealKMcKidd,Yes we do ! https://t.co/VZOvXAmqA3 +03/12/2018,Actors,@TheRealKMcKidd,"RT @JChambersOnline: It's the Great #GreysAnatomy Bake Off! 🍰🥧🍪 + +Judges: @7JustinChambers @therealjpickjr @EllenPompeo @TheRealKMcKidd @msd…" +03/12/2018,Actors,@TheRealKMcKidd,First prize winner !! And @TonyTphelan presenting ;) https://t.co/Fhk60uhzZy +03/12/2018,Actors,@TheRealKMcKidd,And the winners are ..!! :)) https://t.co/sW5XToYCPm +03/12/2018,Actors,@TheRealKMcKidd,@greysanatomy bake off ;)) https://t.co/fZAQHrzw64 +03/08/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: Someone's child died today. + +Someone's child died. + +At school. + +Don't go numb to this. + +Fight like hell. + +#NeverAg…" +03/05/2018,Actors,@TheRealKMcKidd,RT @tinybuddha: Every day is a new beginning. Take a deep breath and start again. https://t.co/2eKacIUg57 +03/03/2018,Actors,@TheRealKMcKidd,My best Bison impression.... ;) https://t.co/kpus255p7L +03/03/2018,Actors,@TheRealKMcKidd,My three wet pups are the best! Been thru thick and thin together - shot by pal @IainR0bertson https://t.co/dNsk6iDazd +03/03/2018,Actors,@TheRealKMcKidd,This.. my mum and dad. Central California. No filter...Into there sunset https://t.co/9MIsTQKktS +03/03/2018,Actors,@TheRealKMcKidd,Blast from past! Me- 1st year drama student. Circa 1992-93. Note Walkman headphones and ‘actor scarf’ https://t.co/LmemgjrsyD +03/03/2018,Actors,@TheRealKMcKidd,Driftwood salvage #Pfeifferbeach #BigSur https://t.co/SVZpwMhDaw +03/02/2018,Actors,@TheRealKMcKidd,Great cause Rebecca ! https://t.co/NypB3xdE5C +03/02/2018,Actors,@TheRealKMcKidd,RT @GreysABC: RT to welcome @Station19 to the #TGIT family! +03/02/2018,Actors,@TheRealKMcKidd,RT @shondarhimes: People. TONIGHT is the night. Grab your popcorn and wine because it’s going to be good. #TGIT #TGITCrossover +02/28/2018,Actors,@TheRealKMcKidd,RT @RWitherspoon: I’m encouraging my kids & all children in this country to March for Our Lives. We have let their schools & communities be… +02/28/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: Dear #Teenagers - + +I was called a ""rabble-rouser"" in H.S. bc I would not stay silent in the face of injustice. + +The ad…" +02/27/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Get your heart monitors ready for the #TGITCrossover Event this THURSDAY starting with #GreysAnatomy at 8|7c on ABC. https://… +02/25/2018,Actors,@TheRealKMcKidd,RT @krassenstein: BREAKING: United Airlines has just announced that they have notified the NRA that they will no longer offer a discounted… +02/25/2018,Actors,@TheRealKMcKidd,RT @ABC: A growing number of companies have decided to sever corporate ties with the National Rifle Association since the deadly school sho… +02/25/2018,Actors,@TheRealKMcKidd,"‘Darkness at Noon’, Arthur Koestler . Just begun but it’s very good https://t.co/1CTDqwWMd5" +02/25/2018,Actors,@TheRealKMcKidd,And now.. this! Book reading by wood fire in Big Sur ? Happening ;) https://t.co/vKjRsDLRGy +02/25/2018,Actors,@TheRealKMcKidd,#bigsursunset people ! Pretty special https://t.co/wAOTWTUnG0 +02/25/2018,Actors,@TheRealKMcKidd,"RT @BeauWillimon: As of today, @Emma4Change now has more followers than the @NRA. It happened in less than two weeks. + +This is a movement.…" +02/25/2018,Actors,@TheRealKMcKidd,"RT @krassenstein: The following companies have cut ties with the NRA over the last 24 hours. + +- Enterprise +- Wyndham +- Metlife +- Hertz +- B…" +02/25/2018,Actors,@TheRealKMcKidd,Quite a reading spot ... #bigsursunset https://t.co/qvNRrlEiB7 +02/24/2018,Actors,@TheRealKMcKidd,Big Sur this morning . So beautiful. https://t.co/h9bePPhU3H +06/30/2018,Actors,@KatieHeigl,We missed you @RickHoffman_ but thank you for the amazing dinner recommendation! Let’s go every Friday night from h… https://t.co/eWIkEf60RI +06/30/2018,Actors,@KatieHeigl,Had a much needed date night at an incredible restaurant last night with @joshbkelley Sometimes it’s nice to get ou… https://t.co/mV7YOywnWq +06/26/2018,Actors,@KatieHeigl,"When a cat is rescued, a new furry best friend is made. And since your #LitterForGood support got Friends for Life… https://t.co/52r5QQRKnI" +06/25/2018,Actors,@KatieHeigl,"I discovered @FourBlocksSouth and their gorgeous home decor items exploring Toronto, my new home away from home! I… https://t.co/4CqeU2gkcK" +06/23/2018,Actors,@KatieHeigl,@JRBEASLEY2 @hvnlydays It is! 😀 +06/23/2018,Actors,@KatieHeigl,Adalaide spent a week in dance camp so tonight she was our choreographer for a spontaneous dance party in the kitch… https://t.co/JWubu7bH3k +06/22/2018,Actors,@KatieHeigl,"RT @hvnlydays: Love coffee? Get your caffeine fix with @KatieHeigl's delicious new obsession Matcha Chai Latte. Read all about it in ""Sweet…" +06/20/2018,Actors,@KatieHeigl,Sunset in Toronto. ❤️ #nofilternecessary A heavenly moment captured by my heavenly husband @JoshBkelley that made i… https://t.co/R2YKPnk8SF +06/18/2018,Actors,@KatieHeigl,"I meant @hvnlydays, When will Twitter add that edit function..." +06/18/2018,Actors,@KatieHeigl,Subscribe to https://t.co/RN3HXEzFyO to be the first to get my list! And follow @thoseheavenlydays for more ways t… https://t.co/wm8nGbJhW8 +06/18/2018,Actors,@KatieHeigl,"...exhausting even, but you’re happiness is worth it! 😏 Stay tuned for a new blog series listing all the places… https://t.co/cSGFYOpfPN" +06/18/2018,Actors,@KatieHeigl,Got off work early on @suits_usa and decided to try the highly touted mojito at #sassafrazrestaurant in Toronto. I… https://t.co/MHEUJ7elkD +06/17/2018,Actors,@KatieHeigl,Happy Father’s Day to a couple of my favorite fellas! Grateful doesn’t even begin to cover it but grateful I am for… https://t.co/g2HLvOR6DS +06/16/2018,Actors,@KatieHeigl,This sweet girl made us the most delicious French toast this morning. When did she become grown up enough to do suc… https://t.co/gUgwl17Zgn +06/13/2018,Actors,@KatieHeigl,@MITalle @Suits_USA @RickHoffman_ @GabrielMacht @sarahgrafferty @DuleHill @AmandaSchull Thanks! For sure. I think everyone will. +06/13/2018,Actors,@KatieHeigl,Can’t wait to see where the chips fall this season on @Suits_USA ! So excited to be part of a show I LOVE!! Thanks… https://t.co/vrhwObjSlM +06/13/2018,Actors,@KatieHeigl,@washington_nat Sure is. My first movie - a long time ago! +06/12/2018,Actors,@KatieHeigl,"Cats Pride has promised 1,574,112 pounds of donated litter so far through the @CatsPride #LitterForGood program. Am… https://t.co/W4FxS1kniy" +06/08/2018,Actors,@KatieHeigl,"She knows her worth and is empowered by her value. +She’s got heart and soul and will show you both if you’ve earned… https://t.co/lggfPvZ1zK" +06/08/2018,Actors,@KatieHeigl,"The best part of BEING Samantha Wheeler, is BELIEVING I’m Samantha Wheeler! Girls got me feeling #empowered She nev… https://t.co/E6EFKraJpO" +06/04/2018,Actors,@KatieHeigl,"...a new job & find myself with a new trailer. With a little, or rather a LOT of help from my friend Lisa we were a… https://t.co/usJ2em54EK" +06/04/2018,Actors,@KatieHeigl,Today on the https://t.co/SQ2cAcHZiP is a post devoted to my TV trailer makeover. My trailer on set is where I spen… https://t.co/RGnAi6lmat +05/28/2018,Actors,@KatieHeigl,I just love browsing for artisan treasures - beautiful items made with skill & craft that make wonderful gifts or t… https://t.co/xONTOaO3PZ +05/27/2018,Actors,@KatieHeigl,@7JustinChambers @Suits_USA @EW ❤️ +05/27/2018,Actors,@KatieHeigl,https://t.co/0urK59AYRC +05/27/2018,Actors,@KatieHeigl,Been having a blast exploring some of the awesomeness of Toronto! Like #brickworksmarketplace. The best part of cit… https://t.co/sood2wuc0F +05/25/2018,Actors,@KatieHeigl,@NormanGoldenll @Suits_USA @EW Thank you! 🙂 +05/25/2018,Actors,@KatieHeigl,"So excited to share that I’ll be making my @Suits_USA debut in the season premiere on Wednesday, July 18th at 9/8c.… https://t.co/ekFaHnoSs8" +05/24/2018,Actors,@KatieHeigl,Remembering this moment from the upfronts with @SterlingKBrown & @KChenoweth. Two people I'm very fond of personall… https://t.co/ldYN5Xyaed +05/23/2018,Actors,@KatieHeigl,"“Truckloads” of litter. Literally! Thanks to your support, @IndCatSociety received 4.5 PALLETS of donated litter fr… https://t.co/3lICukwO3j" +05/22/2018,Actors,@KatieHeigl,Spent the weekend with family in Buffalo. Just a two hour drive from our home away from home in Toronto. ITINERARY:… https://t.co/l3wk19XOU8 +05/22/2018,Actors,@KatieHeigl,RT @SmithSmitherrs: Great time with @KatieHeigl on @Suits_USA #Season8 https://t.co/tnCCPlz3bl +05/17/2018,Actors,@KatieHeigl,...apple blossoms with two incredibly photogenic daughters and one cranky son. Next came gelato which was enjoyed a… https://t.co/WD3HzCxoUY +05/17/2018,Actors,@KatieHeigl,...disappointment that my mind was not properly read and it ensures my day is exactly what I hoped for!… https://t.co/nejRftmQZY +05/17/2018,Actors,@KatieHeigl,My Mother’s Day was perfect this year. Let me tell you why...because I told @JoshBkelley and the kids exactly what… https://t.co/Dw7OtrN7xk +05/16/2018,Actors,@KatieHeigl,You know what’s really really fun? Being 16 months old and realizing that you can do this super awesome thing calle… https://t.co/lr4pywUaT7 +05/15/2018,Actors,@KatieHeigl,"Last Hope Cat Kingdom picked up donated litter from @CatsPride, thanks to your nominations & support. It's already… https://t.co/ntVK6RMPk2" +05/15/2018,Actors,@KatieHeigl,RT @JoshBkelley: While katie got her glam on for the #nbcuniversal #upfronts I took… https://t.co/H1OAFhuCzq +05/15/2018,Actors,@KatieHeigl,In NY for @NBCUniversal upfronts with @joshbkelley Fully took advantage of not having the kids with us & snuck off… https://t.co/lf3A2TuWVl +05/14/2018,Actors,@KatieHeigl,"""As mothers and daughters, we are connected with one another. My mother is the bones of my spine, keeping me straig… https://t.co/zF0SX5eWXp" +05/14/2018,Actors,@KatieHeigl,loving and kind and everything I hope to be someday. Talk about leading by example... Happy Mother’s Day Mom. +05/14/2018,Actors,@KatieHeigl,...the night about each of her children’s well being. She believes in God despite being disappointed by him a time… https://t.co/pwyXOeAvGX +05/14/2018,Actors,@KatieHeigl,...a perforated ulcer. She laughs easily and with great joy. She never forgets to tell you she LOVES you. She never… https://t.co/uwD2HtqI81 +05/14/2018,Actors,@KatieHeigl,This is my mother. She is extraordinary. I’m not just saying that because it’s Mother’s Day and she’s my mother. It… https://t.co/0o7G6rRHKv +05/12/2018,Actors,@KatieHeigl,"...in a fruity, creamy smoothie and shrugging casually when they ask why they taste salad...🤔😏❤️" +05/12/2018,Actors,@KatieHeigl,"We, the Kelley’s, declare this day Super Smoothie Saturday and on this day we will imbibe delicious, nutritious and… https://t.co/XzA1kTGqns" +05/11/2018,Actors,@KatieHeigl,Sometimes morning snuggles include a baby fist to the face...but it’s worth it. #thoseheavenlydays are made by forc… https://t.co/wxjjqW5zrW +05/10/2018,Actors,@KatieHeigl,This was 2 years ago for a post on a goodies to give mom for Mother’s Day. Crazy how short my hair was! Crazier tha… https://t.co/C6dkQdr6Gz +05/09/2018,Actors,@KatieHeigl,...I’m not sure which of these I like better...the cool couple version...or the can’t keep it together one. I guess… https://t.co/4rgjvojKco +05/09/2018,Actors,@KatieHeigl,Got off work on @suits_usa early and was able to steal @joshbkelley away to have a leisurely lunch with me at a gor… https://t.co/Lgd8EGwYkI +05/07/2018,Actors,@KatieHeigl,@sophie75756675 Hope you had a great birthday! ❤🎂🍾 +05/07/2018,Actors,@KatieHeigl,"I love everything, everything about this moment! Except that I’m standing over them taking a photo instead of layin… https://t.co/69g6i72WMm" +05/06/2018,Actors,@KatieHeigl,"...existence and filled every nook, cranny and corner of my souls with the most profound love. I wish I had an e… https://t.co/OPT6cXUdkX" +05/06/2018,Actors,@KatieHeigl,When @JoshBkelley and the girls arrived yesterday afternoon I cried. It has been far too long since I held my perfe… https://t.co/Y391U7VJvF +05/05/2018,Actors,@KatieHeigl,The girls made a pit stop in DC on their way to Toronto. @joshbkelley got this great shot at the Washington Monumen… https://t.co/TDFIZ82ztp +05/04/2018,Actors,@KatieHeigl,Can you tell I just had a manicure? 😏 So deeply in love with this super nude gel polish I just had to show it off!… https://t.co/o4UgVBtGrl +05/03/2018,Actors,@KatieHeigl,"...and text, drink and text...basically just don’t do anything else while texting! Thanks @KeithFollett for the gen… https://t.co/LQ0GsZdzEL" +05/03/2018,Actors,@KatieHeigl,Twisted my ankle at work a couple of weeks ago...trying to walk down stairs and text at the same time. Let the fact… https://t.co/IdrMzWZL4i +05/02/2018,Actors,@KatieHeigl,❤️ Simple joys are the best! ❤️ #thoseheavenlydays are full of easy laughs and simple pleasures! For more of Those… https://t.co/CBoMAahZJI +05/01/2018,Actors,@KatieHeigl,Every dollar shelters save can go directly towards helping more cats. Since you've already raised 1039000 POUNDS of… https://t.co/XpLb8whAuJ +04/30/2018,Actors,@KatieHeigl,Being a boss! #SmanthaWheeler has a badass office that I am thoroughly enjoying pretending is mine! @Suits_USA… https://t.co/ZPo5D6DNOa +04/28/2018,Actors,@KatieHeigl,@Orsi24 🍾Happy Anniversary! 🍾 +04/28/2018,Actors,@KatieHeigl,So grateful to all my girls for making their way to Toronto to keep me company until the rest of my brood gets here… https://t.co/tC2yRoJF0D +04/28/2018,Actors,@KatieHeigl,"Touring Toronto with my girl Tasia Steffensen. We’ve had the perfect weekend imbibing lots of pink drinks, hitting… https://t.co/yOrCI8RqQU" +04/27/2018,Actors,@KatieHeigl,"Follow @hvnlydays and check out weekly finds that make my days even more heavenly! +#thoseheavenlyfinds" +04/27/2018,Actors,@KatieHeigl,When your iPhones face recognition feature won’t work just cause you’ve got a mud mask on... #thoseheavenlydays inc… https://t.co/AZnG6jYomZ +04/26/2018,Actors,@KatieHeigl,"I have such great kids...which is why I bought myself this mug. 😏 +#thoseheavenlydays are all about parenting with c… https://t.co/igQnXJS5ba" +04/25/2018,Actors,@KatieHeigl,"Go Mapleleafs!! You’ve got two new fans root root rooting for the home team! +#thoseheavenlydays include a win from… https://t.co/I8Ma4HWymr" +04/22/2018,Actors,@KatieHeigl,"...people when they feel seen, heard and valued. When they can give and receive without judgement” Thank you for ma… https://t.co/Mx3w6YIsWM" +04/22/2018,Actors,@KatieHeigl,"Maybe we have...just a little...but our sisterhood remains beautifully, profoundly intact and I could not be more i… https://t.co/pqsz5xNt9b" +04/22/2018,Actors,@KatieHeigl,some of us have raced off on our paths post high school and lost contact but we have all recently reconnected and t… https://t.co/gl5JdwYsQA +04/22/2018,Actors,@KatieHeigl,"...traffic and leaving their families just to spend a couple of days with me in Toronto. There is nothing, and I me… https://t.co/ISFebph3ZY" +04/22/2018,Actors,@KatieHeigl,Just had a soul renewing long weekend with my high school girlfriends. A few were missing and they were deeply miss… https://t.co/QeaA46N7Cd +04/18/2018,Actors,@KatieHeigl,"#reunitedanditfeelssogood ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ +#thoseheavenlydays are brighter and better with my children! O… https://t.co/OnoGihLTBD" +04/17/2018,Actors,@KatieHeigl,My two favorite fellas just landed in Toronto & I’m peeing my pants with excitement!! It’s been TOO LONG!! Thank yo… https://t.co/Q4SdRASUDy +04/17/2018,Actors,@KatieHeigl,"Amazing! After Tennessee River Rescues received donated litter through @CatsPride’s Litter for Good program, they w… https://t.co/mKOGwhwfPm" +04/16/2018,Actors,@KatieHeigl,If you’re in the midst of an endless winter too or just in the mood for some biscuit goodness (sorry that sounded a… https://t.co/39amIwKNNf +04/16/2018,Actors,@KatieHeigl,"Oh by the way, new post up on the blog detailing @joshbkelley and his deliciously easy and decedent homemade biscui… https://t.co/onkYYSMnsv" +04/16/2018,Actors,@KatieHeigl,All by myself...don’t wanna be all by myself anymore...🎤🎶 Oh me? I’m just hanging...in Toronto...in the freezing ra… https://t.co/MclQ45vNJp +04/13/2018,Actors,@KatieHeigl,Missing this beauty so hard right now...thanks @joshbkelley for the gorgeous pics of my little model! ❤️❤️❤️❤️❤️❤️… https://t.co/3w8sJLJabi +04/12/2018,Actors,@KatieHeigl,Forgot to mention my new post on https://t.co/SQ2cAcHZiP. It's all about the transition I’ve had to make from stay… https://t.co/azQebCUiFO +04/11/2018,Actors,@KatieHeigl,...for never ever letting me down or giving up on me! I love you more than I can even properly express and you are… https://t.co/LL7QTY4Qe3 +04/11/2018,Actors,@KatieHeigl,I’m a day late and a dollar short but I HAD to post in honor of #nationalsiblingday and let the world know my siste… https://t.co/qIZKJfaT86 +04/10/2018,Actors,@KatieHeigl,Day 2 on the set of @suits_usa getting my hands wrapped for a kickboxing scene. My character #SamanthaWheeler is no… https://t.co/OTCsBtvEA7 +04/04/2018,Actors,@KatieHeigl,It is this extraordinary creatures birthday. Adalaide Marie Hope Kelley is many many wonderful and perfect things!… https://t.co/rHVjvs72Tn +04/01/2018,Actors,@KatieHeigl,My Easter Crew! Miss this bunch like crazy but incredibly grateful for FaceTime! Little man doesn’t understand when… https://t.co/OXJawSrvgf +03/30/2018,Actors,@KatieHeigl,@JuliaKayPorter Pattern info is in an earlier post - the link to it is at the end of the text in the article you re… https://t.co/ihaoy2oxi5 +03/30/2018,Actors,@KatieHeigl,#suitsfans guess where I am!!!! Geeking out in #LouisLitts office on the set of Suits in Toronto!! I’m pretty damn… https://t.co/njV85HFNU1 +03/28/2018,Actors,@KatieHeigl,"Find out how @catspride is Changing Litter for Good®, helping shelter cats across the country. Watch this video wit… https://t.co/fo8FTkiYpY" +03/24/2018,Actors,@KatieHeigl,"I know it’s a bit last minute but... #happynationalpuppyday from me and my besties! +#thoseheavenlydays are full of… https://t.co/oqLtsfPGYU" +03/24/2018,Actors,@KatieHeigl,@kayla34919988 ❤ +03/22/2018,Actors,@KatieHeigl,"Sharing is caring! 😳😂 +#thoseheavenlydays include a loyal companion made even more so with cheese bribes! https://t.co/L8YB21wkQm" +03/20/2018,Actors,@KatieHeigl,@Vickiej3 Yes you do. I'm super excited to be heading to Toronto soon to shoot some @Suits_USA +03/20/2018,Actors,@KatieHeigl,What do you think I can pair this coat with?! I’d love some suggestions!! +03/20/2018,Actors,@KatieHeigl,Ok so here’s another look I put together for my trip. I adore this @katespadeny #madisonavecollection coat but I’ve… https://t.co/grN5lpa5pe +03/19/2018,Actors,@KatieHeigl,Spent the weekend putting together looks and trying to pack for an upcoming work trip to LA and then straight to 6… https://t.co/TBPAMOz2dU +03/17/2018,Actors,@KatieHeigl,A couple of my favorite smiles ❤️❤️ @joshbkelley #thoseheavenlydays https://t.co/q5CqUPlwwP +03/16/2018,Actors,@KatieHeigl,“Hi!” 👋 Happy Friday Friends! Part two of my favorite baby finds is up now on https://t.co/SQ2cAcHZiP check it out… https://t.co/7Hg1ttxsWE +03/14/2018,Actors,@KatieHeigl,Sitting on a lawn overlooking the ocean with a splashy sunset makes feeling joyful pretty easy. But last night sitt… https://t.co/Yj3aWrYeCv +03/14/2018,Actors,@KatieHeigl,"Now home in wintery UT the whole trip feels like just a dream. The beauty of the experience, and there was a lot of… https://t.co/Dwg215jdb8" +03/14/2018,Actors,@KatieHeigl,We celebrated our last night in Mexico with a white party on the lawn overlooking the ocean. What a truly spectacul… https://t.co/wQBWoVNSIP +03/13/2018,Actors,@KatieHeigl,@wecantstwop @catspride Happy belated birthday! Hope you had a wonderful day. 🎂❤️ +03/13/2018,Actors,@KatieHeigl,"That time I rode in a green van and nearly adopted 30 cats. 😍Check out this video with me and Dan Jaffee, head of… https://t.co/HkPc4dY4qA" +03/11/2018,Actors,@KatieHeigl,Every parent has a few favorite baby products they can't live without - I'm no exception! Items that make life a li… https://t.co/xDsUUDeTE1 +03/07/2018,Actors,@KatieHeigl,https://t.co/78Y9dGiCMQ +03/07/2018,Actors,@KatieHeigl,https://t.co/Ke4QCQBUkv +03/07/2018,Actors,@KatieHeigl,Mis Amores...❤️❤️❤️❤️❤️❤️ #thoseheavenlydays https://t.co/o9d8I4PHb7 +03/05/2018,Actors,@KatieHeigl,https://t.co/zxZZ4ezN0W +03/05/2018,Actors,@KatieHeigl,https://t.co/zovzmmFLDw +03/05/2018,Actors,@KatieHeigl,"#thoseheavenlydays are plentiful in this extraordinarily beautiful, peaceful serene spot in Mexico. I may never lea… https://t.co/EwLChOV7RG" +03/03/2018,Actors,@KatieHeigl,https://t.co/ok9XX62flN +03/03/2018,Actors,@KatieHeigl,https://t.co/oNUjAsE4Mj +03/03/2018,Actors,@KatieHeigl,From ❄️ to 🌞 First family vacation in two years...man am I grateful to be here! #thoseheavenlydays are sun soaked… https://t.co/99r8fBev4t +02/27/2018,Actors,@KatieHeigl,How can you help save millions of shelter cats? One green jug at a time! Cat's Pride donates a pound of litter for… https://t.co/VqHyaM3uw6 +02/27/2018,Actors,@KatieHeigl,@sarfatishelley Happy belated birthday! 🙂 Hope you had a wonderful day. ❤️🎂 +02/27/2018,Actors,@KatieHeigl,@mariaelena726 They grow up way too fast! Can scarcely believe she is 9 already. +02/27/2018,Actors,@KatieHeigl,"This girls got the greatest giggle on the planet earth. I live to make her laugh! ❤️❤️❤️❤️ +#thoseheavenlydays are f… https://t.co/wxnNhFFDoc" +02/24/2018,Actors,@KatieHeigl,"This boy is taking Cheerio munching to the next level. 😏👶🏼❤️ +#thoseheavenlydays https://t.co/dYcaBpus0a" +02/22/2018,Actors,@KatieHeigl,#thoseheavenlydays are all about making a positive difference in another beings life. #hourglassunderground +02/22/2018,Actors,@KatieHeigl,Hourglass Underground provides young girls in foster care with a perfect fitting bra for Prom! Head to… https://t.co/Rps91Uqng1 +02/22/2018,Actors,@KatieHeigl,Another shot in my underwear. I realize it’s starting to feel gratuitous but this ones for a good cause! On… https://t.co/gxpvxUqS0n +02/21/2018,Actors,@KatieHeigl,Anybody in LA this weekend feel like stepping out with your kiddos for a wonderful cause?! I really really hope so!… https://t.co/bE42JUmXQL +02/20/2018,Actors,@KatieHeigl,Finally finished a couple of knitting projects! Ponchos and socks...perfect cozies for our winter wonderland temper… https://t.co/sL9cqCVw0U +02/19/2018,Actors,@KatieHeigl,"work to snap back into shape but it is time to make the strength, fitness and overall health of my body a priority… https://t.co/XleKNFdOOh" +02/19/2018,Actors,@KatieHeigl,"I won’t lie, the workouts are real ass kickers but the progress I’ve made in only 5 short weeks has kept me motivat… https://t.co/7X0qS1nY7u" +02/19/2018,Actors,@KatieHeigl,it out. I found a fantastic app called #sweat that features several different #bbg programs you can choose from and… https://t.co/32FVvRFnzZ +02/19/2018,Actors,@KatieHeigl,under that belly somewhere! I was wholly and totally inspired by Miss @rachparcell and the before and after pics sh… https://t.co/8paTDRh81i +02/19/2018,Actors,@KatieHeigl,"Anyway, I have a beach vacation coming up, a new job I start filming in April and my deep desire to feel fit, stron… https://t.co/0hOYmB8U8f" +02/19/2018,Actors,@KatieHeigl,The second pic was taken almost a full year later and the last pic was taken this weekend. I wish I had a few from… https://t.co/9jEIx5u0NH +02/19/2018,Actors,@KatieHeigl,It’s been almost 14 months since Joshua Jr was born and it has taken me about that long to really get back in shape… https://t.co/lISixwM7aX +02/16/2018,Actors,@KatieHeigl,Adalaide Marie meditating behind a row of wild animal figurines...I have no idea why but I’m into it! Thanks… https://t.co/FVnBsRhURR +02/15/2018,Actors,@KatieHeigl,"RT @richiefrieman: Hey, @SXMTheHighway @stormewarren @buzzbrainard will you please play on repeat, @JoshBkelley new song/video ""Loves You L…" +02/15/2018,Actors,@KatieHeigl,❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ #thoseheavenlydays https://t.co/b13WV1Iudz +02/14/2018,Actors,@KatieHeigl,"For all those bakers out there looking for a last minute, and I mean LAST minute, gift idea for your Valentine's Da… https://t.co/NCzwpxKa4H" +02/14/2018,Actors,@KatieHeigl,I’m a little biased but I think it’s the sh*t! HAPPY VALENTINES DAY EVERYONE!! ❤️😍❤️😍 +02/14/2018,Actors,@KatieHeigl,If you’d like to hear said song and see said glorifying video be sure to check out Josh's new single #lovesyoulikeme https://t.co/UgpmN7VUSi +02/14/2018,Actors,@KatieHeigl,"Me: Ummm...nope. That oughta do. Oh and, ummm...is there anything you might like for Valentines Day? Maybe a box of… https://t.co/yiLFoZBvRv" +02/14/2018,Actors,@KatieHeigl,"""@JoshBkelley: Hey honey is there anything you’d like for Valentines Day, I mean besides the song I wrote for you a… https://t.co/QPv0M8K48i" +02/14/2018,Actors,@KatieHeigl,Can't wait for this! Don't forget to tune in! #ABC2020Romance https://t.co/D6Qfg3YvzB +02/13/2018,Actors,@KatieHeigl,@alana452 @ABC2020 Thanks - yes it is. We shot up here in Utah. 🙂 +02/13/2018,Actors,@KatieHeigl,Had an absolute blast hosting tonight’s 20/20 romance special! Spend an afternoon talking about my favorite film ge… https://t.co/l7eZJBLFdv +02/13/2018,Actors,@KatieHeigl,Help save millions of shelter cats just by sharing this video & visiting https://t.co/ywYQR3dlD8! Watch me with… https://t.co/hqoo14BQa0 +02/13/2018,Actors,@KatieHeigl,@kradwkbw Close! About 30 minutes from Park City. 😃 +02/13/2018,Actors,@KatieHeigl,RT @ABC2020: Why do you love romantic movies? @KatieHeigl explains why she enjoys watching couples fall in love on the big screen. Katherin… +02/12/2018,Actors,@KatieHeigl,Why is the chubby weight of a baby such a joy maker?! I can not get enough of squeezing on this kids delicious ro… https://t.co/S8D6xGDK6q +02/11/2018,Actors,@KatieHeigl,@GreisenErika Thank you so much! ❤ +02/10/2018,Actors,@KatieHeigl,@alana452 Yes all of them! 😀😂 +02/10/2018,Actors,@KatieHeigl,One of them found his home with me...meet the newest member of the Kelley family Sergeant General Major Sir. Named… https://t.co/sPjnxLdVQD +02/10/2018,Actors,@KatieHeigl,My @JasonHeiglFound took 12 of the older dogs who needed more medical care. I’m thrilled to say that as of today al… https://t.co/YArAvCz1eo +02/10/2018,Actors,@KatieHeigl,"The @animalfndlv swiftly stepped in, got the dogs medical care and assessed each one. They did a phenomenal job car… https://t.co/7m21PXW5kf" +02/10/2018,Actors,@KatieHeigl,A couple of months ago a UHaul truck was found abandoned by the side of the road in Las Vegas. When police officers… https://t.co/QJKvauTOUa +02/08/2018,Actors,@KatieHeigl,RT @ABC2020: What really happened behind-the-scenes of the biggest movie moments? Join @KatieHeigl​ and the iconic stars of romantic movie… +02/08/2018,Actors,@KatieHeigl,"Our annual ""Night Before"" bash made celebrating the start of 2018 a much more chilled experience. 🍷🍾 Tomorrow on… https://t.co/cbag571BdZ" +02/05/2018,Actors,@KatieHeigl,Current mood...gazing at the heavens just trying to figure it all out. I’m getting there...every day a little close… https://t.co/5DSq85cWIs +02/02/2018,Actors,@KatieHeigl,"Don’t really have the words to describe how much @joshbkelley new single means to me, but I’ll try! I am alight in… https://t.co/O6tDVUNwQo" +02/01/2018,Actors,@KatieHeigl,@NikkyBriggs1 Thank you! I am very curious about that myself. +02/01/2018,Actors,@KatieHeigl,@twin278 Yes you should! 😀 +02/01/2018,Actors,@KatieHeigl,@ArianaChristod1 @Suits_USA Me too! +02/01/2018,Actors,@KatieHeigl,@valedest93 Yes! 💗 +02/01/2018,Actors,@KatieHeigl,I JUST GOT LITT UP!!! For anyone who doesn’t know what that means... start binging #Suits ASAP!! I could not be mor… https://t.co/g9NelgGxge +01/30/2018,Actors,@KatieHeigl,It is the love of my life @joshbkelley 's birthday today and he’s about to get on a plane and travel to Europe to p… https://t.co/senWJpcxd3 +01/29/2018,Actors,@KatieHeigl,A rare moment when Gracie feels calm enough to sit in my lap and let me love her. If you saw my #savinggrace video… https://t.co/SBg7HQabYD +01/28/2018,Actors,@KatieHeigl,@wecantstwop @HouseofHerrera @breaksprison Happy belated birthday! ❤🎂🍾 +01/26/2018,Actors,@KatieHeigl,"Another great shot by my niece! I’m telling you, get your teenager a camera - make them earn their keep 😉 And up no… https://t.co/dG5WEClG1C" +01/25/2018,Actors,@KatieHeigl,"Over 3 million cats enter our shelters every year. Over half of them are euthanized. Learn how you can help, and no… https://t.co/oHR0lKRVSG" +01/23/2018,Actors,@KatieHeigl,We gave my niece a camera for Christmas. Now I make her do all my photo shoots for the blog...the gift that just ke… https://t.co/IlPVq47Itq +01/21/2018,Actors,@KatieHeigl,Oh and I found the most delicious small batch jam on #Etsy. For a link and 9 more fantastic artisan finds check out… https://t.co/bKuLLCDyu2 +01/21/2018,Actors,@KatieHeigl,"Sunday morning traditions. Sleeping in late, snuggles in bed, and @joshbkelley famous homemade biscuits. Famous cau… https://t.co/lEa44pDSHp" +01/20/2018,Actors,@KatieHeigl,Check it out you guys! ❤️ https://t.co/x6i5mfNNB2 +01/19/2018,Actors,@KatieHeigl,@MidwestSkies @PrincessWahoo You got it.. a space had to go... 😀 +01/19/2018,Actors,@KatieHeigl,Today's blog post is an inside look at my glorious birthday trip to NYC last month. Check it out for all the pics a… https://t.co/GlOaz3kaBl +01/19/2018,Actors,@KatieHeigl,"So @joshbkelley captured some truly beautiful morning views today...😏😮 +PS. New post on https://t.co/SQ2cAcHZiP this… https://t.co/CRcJSiaZbU" +01/18/2018,Actors,@KatieHeigl,RT @InStyle: .@KatieHeigl really wants to make a 27 Dresses sequel—but with a hilarious twist. https://t.co/nskaldb5B1 https://t.co/T8uTRj7… +01/18/2018,Actors,@KatieHeigl,On top of a bar I hope... ❤️ 😃 https://t.co/xGtxZaGw0n +01/18/2018,Actors,@KatieHeigl,It has been 10 whole years since I had the privilege of getting to be apart of one of my favorite projects 27 dress… https://t.co/DMXjUNAa0i +01/18/2018,Actors,@KatieHeigl,"Help save the lives of shelter cats every time you buy Cat’s Pride® Fresh & Light® litter. Dan Jaffee, head of… https://t.co/NDGaVp7nkO" +01/17/2018,Actors,@KatieHeigl,"Remember when bath time brought you this much joy? Good times, good times. #thoseheavenlydays are full of heavenly… https://t.co/mNBD4UqMyK" +01/15/2018,Actors,@KatieHeigl,Me? I’m just staring off into the great wide open contemplating my future & how to ensure a great 2018. Or I’m asle… https://t.co/BEliMbd5xE +01/12/2018,Actors,@KatieHeigl,"@venusinthenight Sorry to hear about you pup, but glad she made it. Thank you for providing a loving home to a rescue. 💗" +01/12/2018,Actors,@KatieHeigl,@lordfjd Greetings! +01/12/2018,Actors,@KatieHeigl,"Sharing all my holiday pics, menus and decor on https://t.co/SQ2cAcHZiP over the next few weeks. The first post tod… https://t.co/8oxlxYOXQ7" +01/11/2018,Actors,@KatieHeigl,RT @JoshBkelley: #puppies - katie and her mom nancy have a foundation that rescues abandoned companion animals… https://t.co/SGADepUaH1 +01/11/2018,Actors,@KatieHeigl,"Ummm....YES PLEASE, I’LL TAKE ALL THREE!!! Check out my Instagram stories for the full story of these adorable pupp… https://t.co/QU5uya17Yc" +01/11/2018,Actors,@KatieHeigl,#thoseheavenlydays include an afternoon latte with far too much foam...☕️🤓 https://t.co/X6MQSYZSmH +01/10/2018,Actors,@KatieHeigl,"Can’t stop, won’t stop kissing this kid! ❤️❤️❤️❤️❤️ and #thoseheavenlydays include lipstick kisses from mama 💄 😘 https://t.co/snOOkyighU" +01/08/2018,Actors,@KatieHeigl,"RT @hvnlydays: Is interior design your forte, or maybe you just love decorating a room? @KatieHeigl needs your help to bring a spark to her…" +01/08/2018,Actors,@KatieHeigl,RT @JoshBkelley: Love this song that I wrote a few years back for @KatieHeigl and I's kiddos. RT if it reminds you of your family and check… +01/08/2018,Actors,@KatieHeigl,@DomLinden It is called Pretend Soup. Hope that helps ❤️ +01/08/2018,Actors,@KatieHeigl,Up now on https://t.co/SQ2cAcHZiP is the full video of my office at #badlandsranch & my many decorating questions/n… https://t.co/tr3MDJ0tXC +01/07/2018,Actors,@KatieHeigl,"RT @JoshBkelley: The sooner I hit 2,000 subscribers on my @YouTube channel, the sooner you will get to hear new music. That's all I'm sayin…" +01/07/2018,Actors,@KatieHeigl,Naleigh made us breakfast this morning with a little help from #Alexa. I thought...I know she’s a robot but when as… https://t.co/uWifH40Tbn +01/06/2018,Actors,@KatieHeigl,I’m looking for some decorating advice from anyone out there who can confidently & beautifully pull a room together… https://t.co/oES1vFByb4 +01/05/2018,Actors,@KatieHeigl,Very true! https://t.co/2ZXPCkkBFJ +01/05/2018,Actors,@KatieHeigl,Awesome work! You are super talented. ❤️ https://t.co/ewv5FuUqCH +01/05/2018,Actors,@KatieHeigl,Okay I let @joshbkelley talk me back into another ride...but to be fair he did buy me my own bike with a seat that… https://t.co/tz3dzRCRFT +01/03/2018,Actors,@KatieHeigl,Trippy...still playing around with my #enlightapp even though the vote was unanimous and you guys prefer the real p… https://t.co/TyJuT0jIvt +12/31/2017,Actors,@KatieHeigl,Nothing says Happy New Years Eve like a ridiculous picture of oneself frolicking in the snow wearing Christmas jamm… https://t.co/xjPfm3HDMq +12/30/2017,Actors,@KatieHeigl,Little post holiday hike with my two favorite guys. Thanks for the pics @JoshBkelley! #thoseheavenlydays #utahlife… https://t.co/j50tKIA6pG +12/29/2017,Actors,@KatieHeigl,These two though...❤️❤️❤️❤️❤️ https://t.co/k52wb4mCaT +12/29/2017,Actors,@KatieHeigl,Yes we indulge in the matching Christmas Jammie tradition but can’t resist our sparks of individuality! Thanks aunt… https://t.co/5nC2fAqdSd +06/29/2018,Actors,@JasonWGeorge,"Come meet me at ⁦@TheEmmys⁩ ! + +Donate to help ⁦⁦@TelevisionAcad⁩ increase #diversity in TV w/ fresh young voices a… https://t.co/80s2CzAmck" +06/26/2018,Actors,@JasonWGeorge,"Join me on the red carpet at the 70th #Emmys & help create a more inclusive entertainment industry! +You can win an… https://t.co/0Jl8PvIhzu" +06/20/2018,Actors,@JasonWGeorge,"@Nick_Wechsler @Station19 Just like you said, Nick. It was great time and interesting" +06/19/2018,Actors,@JasonWGeorge,RT @TheDemocrats: This photo is absolutely heartbreaking. Republicans control the House and Senate. They have the power to end Trump’s crue… +06/19/2018,Actors,@JasonWGeorge,RT @SAGAFTRANY: #ProtectMyImage #ProtectMyVoice A company likes the sound of your voice & uses voice manipulation software to have you narr… +06/16/2018,Actors,@JasonWGeorge,"It’s great to be a working actor + +Even better if you’re blessed enough to become a star + +But that doesn’t mean peop… https://t.co/7oomJjpQOg" +06/16/2018,Actors,@JasonWGeorge,"We tryin to take @station19 #international yall!! + +Flew to #France then grabbed a chopper to #Monaco #muchlove to… https://t.co/YmyML0xrq9" +06/05/2018,Actors,@JasonWGeorge,"You have a voice +Use it! + +#vote + +#youdonthavetobutyougotto https://t.co/bsOnqf6rES" +06/05/2018,Actors,@JasonWGeorge,"With the exception of the #Superbowl itself + +I’ve never been more #proud of the @Eagles… https://t.co/tC6YXqO5Ru" +06/03/2018,Actors,@JasonWGeorge,"Hey #SouthLA #BaldwinHills #Crenshaw + +Me & #PatrisseCullors from #BlackLivesMatter and #DignityandPowerNow are com… https://t.co/xOspOJkdtU" +06/01/2018,Actors,@JasonWGeorge,"Today I #WearOrange for Scott Smith who died by gun suicide in 2014 & his daughter Celeste, who now advocates to pr… https://t.co/XQ2uBctnZW" +06/01/2018,Actors,@JasonWGeorge,"June 1 is #NationalGunViolenceAwarenessDay +Are you ready to #WearOrange? + +Join events today & tomorrow w/me and ot… https://t.co/aevtiLKOXA" +05/30/2018,Actors,@JasonWGeorge,"#bucketlist moment with #QuncyJones and my brother + +Wouldn’t mind a repeat someday https://t.co/q4TmtE76H9" +05/29/2018,Actors,@JasonWGeorge,"Often #Hollywood values #money above all + +I’ve had the #goodfortune much of my career to be employed by people who… https://t.co/GiorTlcH7H" +05/28/2018,Actors,@JasonWGeorge,Take a moment this #MemorialDay to think of those men & women you’ve never met who sacrificed everything for this c… https://t.co/xu3TuRGP6e +05/27/2018,Actors,@JasonWGeorge,"It’s Kids people + +Don’t try and shift blame +You want to be #President +Buck stops with you, #Trump + +Take… https://t.co/PV0N4Z4hkM" +05/25/2018,Actors,@JasonWGeorge,"If you’re in #LosAngeles check out @WeRise_LA #art and ideas Festival + +The #Artist reception last night was amazing… https://t.co/IoCPWSlPZc" +05/22/2018,Actors,@JasonWGeorge,So damn happy about @KimRaver gettin back in the #TGIT game https://t.co/KJgT5sqr76 +05/21/2018,Actors,@JasonWGeorge,"Support #actors fighting for a fair @sagaftra contract w/ #Telemundo + +All #Spanish language performers will benef… https://t.co/boDC52c3Um" +05/21/2018,Actors,@JasonWGeorge,"Support #actors fighting for a fair @sagaftra contract w/ #Telemundo + +All #Spanish language performers will benefi… https://t.co/vpDAF7RCKy" +05/21/2018,Actors,@JasonWGeorge,"Love workin w/ this Lady +As an #actor or as an #activist + +Right now we’re workin w/ @reformlajails + +It’ll save mo… https://t.co/Z4wWvhN7R4" +05/20/2018,Actors,@JasonWGeorge,"@gray1kj @Everytown And it takes people to stop people from killing. + +Will you help us + +Or are you a bot? +Or a Rus… https://t.co/OX4g2kzliY" +05/19/2018,Actors,@JasonWGeorge,"If you think this #Gunviolence is normal, you are not + +If you believe in the #secondamendment or are #NRA ...#help… https://t.co/dU9naIHcuy" +05/19/2018,Actors,@JasonWGeorge,"Really proud to join the #VirginiaFilmFestival Board + +Great reason to go back to #Charlottesville + + https://t.co/p9okmVxZl1" +05/19/2018,Actors,@JasonWGeorge,"#GoodTimes w/ @ZerlinaMaxwell on #SignalBoost talking all things #TGIT #Station19 & #GreysAnatomy + +#MuchLove https://t.co/17BFxIbwD2" +05/19/2018,Actors,@JasonWGeorge,"Caught up w/ my old friend @Jason_Stuart on his podcast S#!t I LOVE WITH JASON STUART + +I’ve known Jason since I sta… https://t.co/tptbXvz1zP" +05/18/2018,Actors,@JasonWGeorge,"#WestCoast !! + +It was a rough week of Kate nights so instead of #redwine tonight + +I’m having some chai in my new fa… https://t.co/wvDwffC0FH" +05/18/2018,Actors,@JasonWGeorge,"To all the @Station19 fans who’ve been there from the beginning or joined along the way + +#Thanks from the bottom of… https://t.co/Br0cnH7TM6" +05/18/2018,Actors,@JasonWGeorge,"And you know this, mane + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/H4Sec6lQ47" +05/18/2018,Actors,@JasonWGeorge,RT @jayhayden00: I’m totally fine.....right? #Station19 https://t.co/RuBKGiWjya +05/18/2018,Actors,@JasonWGeorge,"#WorkingOnIt + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/D2ARU6cqVQ" +05/18/2018,Actors,@JasonWGeorge,"Vic gettin it done +#MuchLove @barrett_doss !! + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/UIL8wEVk1A" +05/18/2018,Actors,@JasonWGeorge,"Tried to warn y’all + +We’re goin through it on #Station19 tonight + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/ljhXo9amOU" +05/18/2018,Actors,@JasonWGeorge,RT @Harparbar: One of my favorite scenes in the whole movie. Two terrific actors and a great script equals easy day for me. #Station19 http… +05/18/2018,Actors,@JasonWGeorge,"#WhatCouldPossiblyGoWrong ? + +Remember when it was a #GoodDay ? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/t5iP1OLlMp" +05/18/2018,Actors,@JasonWGeorge,"#GoodDay +#WhatCouldPossiblyGoWrong ? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/6L3St1dajS" +05/18/2018,Actors,@JasonWGeorge,"Miss you, fam! + +#mcuhlove @sipijungleboy @barrett_doss @D_SAVRE + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/I3YI2ZA9WN" +05/18/2018,Actors,@JasonWGeorge,"#LookOut !! +Ben’s got the keys now! + +#RookieMyAss + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19" +05/18/2018,Actors,@JasonWGeorge,"Are the #Fireflies down? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/UZpPy9sXbn" +05/18/2018,Actors,@JasonWGeorge,"Actually @Harparbar + +You’re the #specialsauce + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/2gyFbra4uF" +05/18/2018,Actors,@JasonWGeorge,"Right!?! + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/CjgY5XrFR5" +05/18/2018,Actors,@JasonWGeorge,"#EastCoast + +@GreysABC gave you some laughs and some tears + +Now @Station19 is gonna give you some #thrills + +#TGIT … https://t.co/UeBTKzrhLN" +05/18/2018,Actors,@JasonWGeorge,"@Harparbar @JainaLeeOrtiz @GreyDamon @barrett_doss @jayhayden00 @OakSmash @D_SAVRE @stacysmckee16 Great @Harparbar +Now I’m hungry" +05/18/2018,Actors,@JasonWGeorge,"We interrupt #TGIT to say + +#muchlove to @LuckyBrand & @Magnannishoes for helpin a brother look his best at @EW… https://t.co/rfU0yaFCdL" +05/18/2018,Actors,@JasonWGeorge,"Now can we get some love for #Teddy aka @KimRaver + +#TGIT #GreysAnatomy #Station19 @GreysABC @Station19" +05/18/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen + +Can we give some love to @TishaCampblMrtn + +#beauty and #talent never age or go out of style… https://t.co/8KZ5aMjMPI" +05/18/2018,Actors,@JasonWGeorge,"@GreysABC has got a wedding goin down folks + +#TGIT is all about love, right? +#GreysAnatomy" +05/18/2018,Actors,@JasonWGeorge,RT @msdebbieallen: Here’s a little #BTS of the final table read for Season 14 of @greysabc. Not a dry eye in the house.😪 @sarahdrew @Jessi… +05/18/2018,Actors,@JasonWGeorge,Almost missed #TGIT #GresysAnatomy #Station19 tonight because I was hangin w/ these #beautifulpeople in #NewYork fo… https://t.co/zB1Y708g9l +05/17/2018,Actors,@JasonWGeorge,"#EastCoast !! + +Lemme know if y’all are ready for the #TGIT #Finale ? +I’m in both #GreysAnatomy & #Station19 tonight… https://t.co/5sgxWYTQ9N" +05/12/2018,Actors,@JasonWGeorge,"Soooo..... + +Y’all ready to bring the #hotness back to #TGIT ? + +@Station19 #station19 https://t.co/q44exyF9lw" +05/11/2018,Actors,@JasonWGeorge,"#MuchLove @stacysmckee16 + +Any opportunity to hug on @JainaLeeOrtiz + +Can’t believe we’re almost at @Station19… https://t.co/uyl1vlFCyW" +05/11/2018,Actors,@JasonWGeorge,"Loved catching up w/ m’girl @TheRealEve and hangin with the ladies of @TheTalkCBS + +We talked about @Station19… https://t.co/ToDaPScrsj" +05/11/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen + +@Station19 finally makes it to #Joesbar ! + +#TGIT #station19 @Station19 @GreysABC #GreysAnatomy" +05/11/2018,Actors,@JasonWGeorge,"Can I give a special #ShoutOut to an old friend @sarayublue + +I mean...She’s not old...but our friendship is...neve… https://t.co/VQNXCwkHML" +05/11/2018,Actors,@JasonWGeorge,"RT @barrett_doss: Girl, you laid out looking like a beautiful mermaid on that floor!@sarayublue #Station19" +05/11/2018,Actors,@JasonWGeorge,"Maya took one for the team! + +@D_SAVRE gettin crazy + +#TGIT #station19 @Station19 @GreysABC #GreysAnatomy" +05/11/2018,Actors,@JasonWGeorge,"Lookit @stacysmckee16 makin @Station19 coordinate with @GreysABC + +#TGIT #station19 #GreysAnatomy https://t.co/mmFKJ0rYSG" +05/11/2018,Actors,@JasonWGeorge,https://t.co/LevBe2L4fZ +05/11/2018,Actors,@JasonWGeorge,#knewit https://t.co/ks9lSC5EJc +05/10/2018,Actors,@JasonWGeorge,"Hey @stacysmckee16 !! + +You got your #Officiallyfake #FakeOfficial #Station19 #hoodie yet? + +#AskStacy + +#Muchlove… https://t.co/8bi978p95r" +05/10/2018,Actors,@JasonWGeorge,It’s gonna get hot as hell on @Station19 and #TGIT tonight If you want to find out how we’re able to stand the heat… https://t.co/ZJudoU1Zcv +05/10/2018,Actors,@JasonWGeorge,"It’s gonna get hot as hell on @Station19 and #TGIT tonight + +If you want to find out how we’re able to stand the hea… https://t.co/eSGCfcQdjD" +05/10/2018,Actors,@JasonWGeorge,"#TGIT ALERT!! + +Let’s live-tweet tonight + +Only 2 episodes left @greysabc & @station19 + +Both #greysanatomy &… https://t.co/22gi8U9g8R" +05/10/2018,Actors,@JasonWGeorge,RT @HLNTV: Calling #GreysAnatomy fans! @Michaela spoke with @JasonWGeorge about his role as the doctor that's so good - he's on two differe… +05/10/2018,Actors,@JasonWGeorge,@DelShores @Michaela @Station19 @GreysABC @breakinginmovie Me or Michaela? +05/10/2018,Actors,@JasonWGeorge,"How lovely is @Michaela ? +#goodtimes choppin it up w/ her about @Station19 @GreysABC and @breakinginmovie https://t.co/wLDMf7KtVm" +05/08/2018,Actors,@JasonWGeorge,"#WOW + +We can stop talking about Ye and MAGA hats because we need to be talkin bout this here + +If you weren’t messi… https://t.co/Zek9EZyLPn" +05/07/2018,Actors,@JasonWGeorge,"Love me some #YvetteLeeBowser + +Love that @byshondaland loves her too https://t.co/qhh1R1r8nP" +05/04/2018,Actors,@JasonWGeorge,RT @JainaLeeOrtiz: When you find out there’s only 3 more episodes of #Station19 https://t.co/p7UL8vKoj6 +05/03/2018,Actors,@JasonWGeorge,"“I will pound your chest all day long” + +#Freudianslip ...or was it? + +Btw, #MuchLove to @strongsuitclothing &… https://t.co/5976FAUr5k" +05/03/2018,Actors,@JasonWGeorge,"#goodtimes w/ @ConanOBrien tonight talking @Station19 + +@TeamCoco all the way https://t.co/qhkErlYozF" +05/02/2018,Actors,@JasonWGeorge,#workingonit https://t.co/kgjRnTH610 +05/02/2018,Actors,@JasonWGeorge,#goodtimes at the premiere of @breakinginmovie premiere last night w/ producer extraordinaire @willpowerpacker &… https://t.co/sNUHVC8kXF +05/02/2018,Actors,@JasonWGeorge,"Show your #Mom you think she’s #badass this #MothersDay + +Take her to see @breakinginmovie + +I do a cameo as husban… https://t.co/tau3pA1AX9" +04/29/2018,Actors,@JasonWGeorge,"Want to tip my hat and give a #HappyBirthday to one of the most selfless people I know +@EllentheCraw is always work… https://t.co/3n2jiS9G4K" +04/28/2018,Actors,@JasonWGeorge,"RT @barrett_doss: Fun fact: the fantastic actress playing Allison (with the baby) is @nikkihayden00. She is the incredibly talented, funny…" +04/27/2018,Actors,@JasonWGeorge,"And how great is #MarlaGibbs ? + +#TVIcon + +@Station19 #Station19 #TGIT" +04/27/2018,Actors,@JasonWGeorge,"“She’s loud but she’s right “ + +—#MirandaBailey about #AndyHerrera + +And LOOK it’s Schmidt!! Aka #glasses + +@Station19 #Station19 #TGIT" +04/27/2018,Actors,@JasonWGeorge,"Be there in a minute, gang + +@Station19 #Station19 #TGIT https://t.co/l2HLRcHnJy" +04/27/2018,Actors,@JasonWGeorge,"RT @S19Writers: Fun fact: We had bystanders reporting this strip-mall fire, thinking it was real. THAT'S how awesome our crew is. #Station19" +04/27/2018,Actors,@JasonWGeorge,"RT @Station19: ""Go in there and be there for your dad."" #Station19 https://t.co/MIkkXvLn0h" +04/27/2018,Actors,@JasonWGeorge,"Hey #Firenerds + +Are y’all feelin the Travis & Grant vibe on @Station19 ? + +Let @jayhayden00 know! + +He’s Another… https://t.co/E8dDghvHqM" +04/27/2018,Actors,@JasonWGeorge,"@babsamiga !!! + +So happy I was able to Benin your very first episode of TV and also glad it was an episode of… https://t.co/0BNqseyAZg" +04/27/2018,Actors,@JasonWGeorge,"Don’t know what I love more... + +“There’s no way a powerful #blackwoman is gonna take he gal for a rich old white ma… https://t.co/cvy23VbL3V" +04/27/2018,Actors,@JasonWGeorge,"#EastCoast ! +Happy #TGIT + +Unfortunately, +I can’t watch til west coast feed + +How @GreysABC tonight? + +And are you… https://t.co/WrV8874AfZ" +04/26/2018,Actors,@JasonWGeorge,"#ChandraWilson is all over #TGIT tonight +@Station19 as well as @GreysABC + +She’s learning what I learned long ago..… https://t.co/3u7AKTYfa7" +04/26/2018,Actors,@JasonWGeorge,"Gonna try to #livetweet #eastcoast & #westcoast airings of @Station19 and @GreysABC + +Of course, I’ll be at work ma… https://t.co/eK2Em28xdY" +04/26/2018,Actors,@JasonWGeorge,"Y’all ready for #TGIT tomorrow? + +Powerful @Station19 airs right after @greysabc + +I’ll try to #livetweet during… https://t.co/a8CheXJ9S3" +04/22/2018,Actors,@JasonWGeorge,"I support @WBEZ and @sagaftra #Chicago in their fight for a fair contract. + +They need your support, too… https://t.co/erDZ6bTKBm" +04/21/2018,Actors,@JasonWGeorge,"RT @DigitalLA: Deciding to do a project: +- Is it good? +- Make content that's so specific, that it becomes universal. First Barbershop found…" +04/21/2018,Actors,@JasonWGeorge,@ANIUSHKA Eggs bacon and veggies 😜 +04/21/2018,Actors,@JasonWGeorge,RT @GreysABC: #GreysAnatomy is officially coming back for Season 15! 🎉🎉🎉 https://t.co/CFdh2oHRAw +04/20/2018,Actors,@JasonWGeorge,"#MuchLove & #Thanks @Variety & @facebook for a #GreatDay + +Granted the @Station19 crew sometimes ran when they saw… https://t.co/QIaUyu2rnh" +04/20/2018,Actors,@JasonWGeorge,RT @barrett_doss: Serious #BlackGirlMagic happening on @Station19 tonight. Episode written by @nationsfilm and directed by @zingbling. Than… +04/19/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Between @GreysABC & @ScandalABC check out @Station19 + +It’s #TheFinalScandal so Hats Off to #Scandal… https://t.co/CBIU6ul9Ki" +04/18/2018,Actors,@JasonWGeorge,"RT @ATXFestival: #Shondaland is turning up the HEAT on #ATXTVs7 with a screening of @Station19, ft. creator @stacysmckee16, casting directo…" +04/18/2018,Actors,@JasonWGeorge,#Muchlove to our friends across the pond! Hope you enjoy @Station19 https://t.co/iEww8XPT6M +04/17/2018,Actors,@JasonWGeorge,"Lookit @JainaLeeOrtiz about ta whup somebody’s tail!! + +It’s going down on @Station19 this #TGIT +after… https://t.co/KuK16L7W8L" +04/15/2018,Actors,@JasonWGeorge,"Happy #JackieRobinsonDay + +#Jackie42 is the reason I’m a @Dodgers fans + +#amazingman #lookitup #JackieRobinson… https://t.co/7Veed7atkY" +04/15/2018,Actors,@JasonWGeorge,RT @Station19: When you and bae have your own version of dirty talk. #Station19 https://t.co/2l8HxndsQ6 +04/14/2018,Actors,@JasonWGeorge,"That’s a #season14 wrap for me on @GreysABC + +Spendt it with my favorite ladies @msdebbieallen and #ChandraWilson… https://t.co/tYtLbolTRB" +04/13/2018,Actors,@JasonWGeorge,@byshondaland My jaw hit the floor when I first walked into the @Station19 set because it was so beautifully realis… https://t.co/jaIESqCjuK +04/13/2018,Actors,@JasonWGeorge,RT @byshondaland: Ever wonder how a set gets made? Here is a #bts video of our incredible team building #Station19! #TGIT #TGITHangover htt… +04/13/2018,Actors,@JasonWGeorge,@jayhayden00 @GreyDamon @JohnMRinaldi @byshondaland @JainaLeeOrtiz @D_SAVRE @barrett_doss @Harparbar @Station19… https://t.co/k57A75nvm2 +04/13/2018,Actors,@JasonWGeorge,@stacysmckee16 #MuchLove boss Much love Thanks for serving me such a great story to tell tonight +04/13/2018,Actors,@JasonWGeorge,"Y’all diggin #Station19 ? + +I would #livetweet @GreysABC & @Station19 with you guys tonight but I’m missing #TGIT be… https://t.co/JVQkcY5zCH" +04/13/2018,Actors,@JasonWGeorge,"I tried to get her on #instagram & #twitter y’all ! + +Guess you have to catch her on @greysabc and @station19 + +Whi… https://t.co/KqDcqQkjTi" +04/12/2018,Actors,@JasonWGeorge,"Did I mention that #TGIT does a #doubledip of #ChandraWilson tonight on @greysabc & @station19 + +Yup +#MirandaBailey… https://t.co/XwGwRPVE6g" +04/11/2018,Actors,@JasonWGeorge,"#TGIT has a double shot of #ChandraWilson +First she’s on @greysabc then she joins me on @station19 + +Make sure to… https://t.co/WbOoBqfoWU" +04/09/2018,Actors,@JasonWGeorge,"Wow +It’s not a game to these kids + +And they’re all about to #vote .... + +#VoteThemOut if they don’t do their jobs… https://t.co/ONBYligfeJ" +04/08/2018,Actors,@JasonWGeorge,"#greatday helping the @LAFD inspire #youngwomen to become #firefighters & #firstresponders + +@GreysABC fans will… https://t.co/IRS8OZ8ZOM" +04/07/2018,Actors,@JasonWGeorge,"#Republican reporter is persecuted by #SinclairBroadcasting for believing in fair journalism + +We all have to do mor… https://t.co/OrPkKAFLwU" +04/06/2018,Actors,@JasonWGeorge,https://t.co/Nzr20jcHDU +04/06/2018,Actors,@JasonWGeorge,"#Muchlove @barrett_doss + +...and, NO, I will not excuse you + +#Station19 #TGIT @Station19 https://t.co/1hc2SeTp7e" +04/06/2018,Actors,@JasonWGeorge,"Damn I love your mom! + +Too damn much right now! + +#MuchLove + +#Station19 #TGIT @Station19 https://t.co/gweCVIp2qO" +04/06/2018,Actors,@JasonWGeorge,"#MuchLove & +#TellAFriend + +#Station19 #TGIT @Station19 https://t.co/KdW9Oe0rfd" +04/06/2018,Actors,@JasonWGeorge,"Glad you’re diggin it + +#Station19 #TGIT @Station19 https://t.co/L6UmaI8Hvs" +04/06/2018,Actors,@JasonWGeorge,"#OliviaPope would cry at all those wine bottles going to waste + +Kind of like I did + +#Station19 #TGIT @Station19 https://t.co/opUBA5iUEh" +04/06/2018,Actors,@JasonWGeorge,"For all you #Fireflies that are feelin the music on @Station19 .... + +#Station19 #TGIT @Station19 https://t.co/yEwwfUDnRd" +04/06/2018,Actors,@JasonWGeorge,"Y’all have to catch m’girl @JainaLeeOrtiz tonight on @JimmyKimmelLive + +#Station19 #TGIT @Station19 https://t.co/QB4j17kVIQ" +04/06/2018,Actors,@JasonWGeorge,"Ya know!?! + +All up in e’rybody else’s bi’ness but won’t let nobody ask her nuttin + +#MuchLove @barrett_doss !!… https://t.co/hrgIRQttME" +04/06/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Still on set at @GreysABC and about to shoot + +Hope y’all love @Station19 tonight! + +Let me know if y… https://t.co/gdxlPJOfdn" +04/06/2018,Actors,@JasonWGeorge,"Let’s keep the @GreysABC @Station19 #doubledipping going next #TGIT ! + +Have you all met my friend #ChandraWilson ?… https://t.co/FKghqB2D36" +04/06/2018,Actors,@JasonWGeorge,"#Thanks Boss + +#Station19 #TGIT @Station19 https://t.co/eFxteLOyzM" +04/06/2018,Actors,@JasonWGeorge,RT @nationsfilm: WE DO! @S19Writers #Station19 #TGIT https://t.co/gJ03VQQ2Ee +04/06/2018,Actors,@JasonWGeorge,"#RealTalk + +I did my best... +...tried to save all the wine I could...😜 + +#Station19 #TGIT @Station19 https://t.co/xD2JR8RyGQ" +04/06/2018,Actors,@JasonWGeorge,"#Thanks +#MoreToCome + +#Station19 #TGIT @Station19 https://t.co/sEHjVA4gAh" +04/06/2018,Actors,@JasonWGeorge,Right!?! https://t.co/XbzLZqAdkV +04/06/2018,Actors,@JasonWGeorge,"NOPE! + +In fact, #retweet if you want another season of @Station19 + +#Station19 #TGIT @Station19 https://t.co/P8beVNWvnO" +04/06/2018,Actors,@JasonWGeorge,"#GETOUT !! + +#LivesBeforeRatings + +#Station19 #TGIT @Station19 https://t.co/TDE6HUIMnl" +04/06/2018,Actors,@JasonWGeorge,"I think I have the same problem + +#metoo ? #maybenot + +#Station19 #TGIT @Station19 https://t.co/4vbUXutP7R" +04/06/2018,Actors,@JasonWGeorge,"Tell ‘em @_swroblewski !! + +#Station19 #TGIT @Station19 https://t.co/TDR0D8Qx1x" +04/06/2018,Actors,@JasonWGeorge,"How great is the always phenomenal #MarlaGibbs ? + +#TVroyalty + +#Station19 #TGIT @Station19" +04/06/2018,Actors,@JasonWGeorge,"Desperately wanted to shoot the scene on @Station19 where we actually DO come back for the groceries + +@barrett_doss… https://t.co/z2oklTYzwb" +04/06/2018,Actors,@JasonWGeorge,"Was Jack tryin to BUY some boots or KNOCK some boots? + +...sorry, #lowhangingfruit + +#Station19 #TGIT @Station19" +04/06/2018,Actors,@JasonWGeorge,"Now don’t stop visiting #BedAndBreakfasts just because of @Station19 ! + +#Station19 #TGIT" +04/06/2018,Actors,@JasonWGeorge,"You know I’ma #LiveTweet @Harparbar !! + +#EastCoast !! + +You ready for @Station19 ? +Hope you enjoyed @GreysABC but… https://t.co/y92gcZbj0n" +04/06/2018,Actors,@JasonWGeorge,https://t.co/YpHiRh8Lax +04/05/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Double shot of #BenWarren tonight!! + +Catch me on @GreysABC +And then on @Station19 right afterwards… https://t.co/zZgSvyVSqN" +04/05/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Double shot of #BenWarren tonight!! + +Catch me on @GreysABC +And then on @Station19 right afterwards… https://t.co/cHz91y3x61" +04/04/2018,Actors,@JasonWGeorge,"He Spoke Out +He was Relentless +He gave his life so others would #Livebetter + +#50years since the #assassination of… https://t.co/kxfAeXQ5xd" +04/04/2018,Actors,@JasonWGeorge,"Can’t even count how many of y’all have told me stories about how you #bingewatched ALL 14 Seasons of @GreysABC + +D… https://t.co/dLo6BU9rVH" +03/30/2018,Actors,@JasonWGeorge,#MuchLove to @hulu & all Corps who believe in #manners & #decency in broadcasting & pulled ads from #LauraIngram fo… https://t.co/I5h6FbkqPf +03/30/2018,Actors,@JasonWGeorge,"#ParklandStudents should also keep #debate to issues & not personal attacks + +But I may give a pass to a 17yr old su… https://t.co/2ouBtAk0Pe" +03/30/2018,Actors,@JasonWGeorge,"Ultimate #Clapback !! +@davidhogg111 handled #LauraIngraham like a boss + +#debate the issues +NOT personal attacks… https://t.co/afmrVfpRqM" +03/30/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Time to get your @Station19 on!! + +Hope you enjoy +Happy #TGIT + +#Station19" +03/30/2018,Actors,@JasonWGeorge,"#MuchLove to all the @Station19 fans + +We appreciate you + +See you next week + +Til then.... #playinghooky + +@Station19… https://t.co/XSP4PyGEP6" +03/30/2018,Actors,@JasonWGeorge,RT @Station19: 😱😱😱 #Station19 https://t.co/wrUH1fMQvs +03/30/2018,Actors,@JasonWGeorge,"When #science goes wrong + +#DontTryThisAtHomeKids + +@Station19 #Station19 #TGIT" +03/30/2018,Actors,@JasonWGeorge,"Awww... + +But you #Teamworkmakesthedreamwork and U be the quarterback of this team @JainaLeeOrtiz + +@Station19… https://t.co/kzODqgyVJv" +03/30/2018,Actors,@JasonWGeorge,"You can thank the brilliant mind of @Harparbar our executive producer who directed the pilot + +I’d say he’s a genius… https://t.co/mjK8PjdTuR" +03/30/2018,Actors,@JasonWGeorge,"That’s so funny... + +Only reason I see myself ON @Station19 is #BenWarren + +But keep watching—the crew of #Station19… https://t.co/5Gh8qyt4y1" +03/30/2018,Actors,@JasonWGeorge,"Quick!! + +Rate your enthusiasm level for @Station19 ! + +I think I may even have that #BenWarren beat—he looks familia… https://t.co/NXV0CP8z6g" +03/30/2018,Actors,@JasonWGeorge,"Retweet if you would risk your life for an album + +I’d walk over hot coals for #purplerain + +@Station19 #Station19 #TGIT" +03/30/2018,Actors,@JasonWGeorge,"#EastCoast !! + +Y’all ready for @Station19 ? + +Happy #TGIT https://t.co/MJkYVOxY1v" +03/29/2018,Actors,@JasonWGeorge,"If you love @Station19 you have to check out the Q&A with the show creator @stacysmckee16 this afternoon + +She can a… https://t.co/QO5u0i7cFY" +03/29/2018,Actors,@JasonWGeorge,"#MONSTA aka #SteveSmith is a real life #firefighter #paramedic & part of the @station19 family + +He just earned hi… https://t.co/DcYfNwjBG5" +03/29/2018,Actors,@JasonWGeorge,"@JamesLesure @SuzyNakamura Well the jokes on you, Mr. Leisure (spelling intended) + +Because I actually carried HER… https://t.co/eP43e3pY0G" +03/29/2018,Actors,@JasonWGeorge,"@SuzyNakamura @JamesLesure Well, well, well...,We meet again, Mr. Lesure + +Don’t you wish you had the pleasure of wo… https://t.co/HNwLxLLfgm" +03/28/2018,Actors,@JasonWGeorge,"@sean_m_maguire Yeah, he does +And his godfather loves him and his big brother" +03/28/2018,Actors,@JasonWGeorge,"Last week’s #Premiere of @Station19 was #purefire + +#bluefire + +Don’t miss the next episode of #Station19 tomorrow… https://t.co/0Rk3hTkKPP" +03/27/2018,Actors,@JasonWGeorge,"I know @station19 just started and we love playing #firefighters and we already ARE a #spinoff but... + +I’d watch t… https://t.co/8w8KSKPJMm" +03/27/2018,Actors,@JasonWGeorge,A man never truly knows what he knows until he has to teach it to his child...that’s when you become a Grown-Ass Ma… https://t.co/SlM2GLvKNO +03/26/2018,Actors,@JasonWGeorge,"RT @Station19: Take the power! Exude it, and use it. #MondayMotivation #Station19 https://t.co/dYZjZOiBaN" +03/25/2018,Actors,@JasonWGeorge,"Check the poster y’all that’s: +a human being +a woman +a person of color +but most of all +a KID + +They should just be a… https://t.co/KmJLTh7p7u" +03/25/2018,Actors,@JasonWGeorge,#thankyou & #Muchlove to @AMarch4OurLives @Emma4Change @cameron_kasky & everybody igniting this spark that’s gonna… https://t.co/m09EwBgydT +03/24/2018,Actors,@JasonWGeorge,"We must find #commonground on #Guns & #Gunviolence + +I support the #SecondAmendment but we need real conversations &… https://t.co/B3XnTyu3QS" +03/24/2018,Actors,@JasonWGeorge,"America, + +This is your #wakeupcall + +#marchforourlives +@barrett_doss @D_SAVRE @GiacomoKG @sean_m_maguire https://t.co/LajDeMEDiR" +03/23/2018,Actors,@JasonWGeorge,"RT @Everytown: More than 2,700 children and teens are shot and killed and over 14,000 more are shot and injured every year. That violence d…" +03/23/2018,Actors,@JasonWGeorge,"To My Young Friends +Who #MarchForOurLives + +#ThankYou & #ImSorry + +Your biggest concern should be Prom + +Not trying t… https://t.co/ZeNatRxQHE" +03/23/2018,Actors,@JasonWGeorge,"This young lady is #myhero + +But she shouldn’t have to be + +This is why we #MarchForOurLives + +Hope to see you there… https://t.co/bs4k9aRHgV" +03/23/2018,Actors,@JasonWGeorge,"Right!?! + +That got to me too + +@Station19 #Station19 https://t.co/wxCM2tLFH5" +03/23/2018,Actors,@JasonWGeorge,https://t.co/ksbU7YWGHJ +03/23/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen, I give you... + +...#BlueFire !! + +...playing #Coachella this summer + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"Will the real #slimshady please stand up + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"Ain’t nothing wrong with a little friendly competition.....in bed + +Says your ex-boyfriend/bootycall + +#MuchLove… https://t.co/kjh4YWuWGD" +03/23/2018,Actors,@JasonWGeorge,"#HoldOn ! Ben’s day and the episode ain’t done yet + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"@OakSmash and @BrendaSong are so much damn fun to watch + +@Station19 #Station19 https://t.co/O33FYd6MqF" +03/23/2018,Actors,@JasonWGeorge,"@OakSmash and @BrendaSong are so much fun to watch + +@Station19 #Station19 https://t.co/O33FYd6MqF" +03/23/2018,Actors,@JasonWGeorge,"Hi Tuck +Who’s your friend? + +#babieshavingbabies +@Station19 #station19" +03/23/2018,Actors,@JasonWGeorge,"Where are my #FireNerds at? + +@Station19 #station19" +03/23/2018,Actors,@JasonWGeorge,@sarahdrew @Station19 @JainaLeeOrtiz ##MuchLove @sarahdrew you have no idea how much your support and #friendship m… https://t.co/r2eYeo9ZZF +03/23/2018,Actors,@JasonWGeorge,"How great was that “Get your game face on” scene with @EllenPompeo and @JainaLeeOrtiz + + @Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"@jayhayden00 is my boy but it didn’t feel good for Ben to get #schooled like that + +@Station19" +03/23/2018,Actors,@JasonWGeorge,"I’ve actually held beating hearts in my hand....also, I have a name.”—#BenWarren + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Y’all ready for the 2hr premiere of @Station19 ?" +03/23/2018,Actors,@JasonWGeorge,"#MuchLove @barrett_doss + +Such great stuff coming up on @Station19 https://t.co/ZGrFzqpUIF" +03/23/2018,Actors,@JasonWGeorge,"#realtalk + +#MuchLove @Harparbar https://t.co/z8mxG4psIo" +03/23/2018,Actors,@JasonWGeorge,#Muchlove to my fellow #southerners https://t.co/dzhwa8Wj3k +03/23/2018,Actors,@JasonWGeorge,"@greys_duh No +😉" +03/23/2018,Actors,@JasonWGeorge,"#Teapot in the middle of #bluefire was so damn hard and so much fun at the same time. + +How great is @barrett_doss… https://t.co/OA6HGqpzPM" +03/23/2018,Actors,@JasonWGeorge,"I know how you fee +@stacysmckee16 https://t.co/3otHzLNXKS" +03/23/2018,Actors,@JasonWGeorge,https://t.co/uYXlMRKsxs +03/23/2018,Actors,@JasonWGeorge,"It’s what happens when I’m trapped on a plane when I’d rather be with y’all + +#askjainajason +@Station19 https://t.co/rp3aU3x3g6" +03/23/2018,Actors,@JasonWGeorge,"#goodeye 👍🏾 + +#askjainajason +@Station19 https://t.co/NLOqlMROtW" +03/23/2018,Actors,@JasonWGeorge,#askjainajason https://t.co/8AmsIT3UIH +03/23/2018,Actors,@JasonWGeorge,"Depends on the episode + +Cutting open your best friend’s wife in a thunderstorm is pretty intense.... + +...But wait t… https://t.co/8BAmVeGgpO" +03/23/2018,Actors,@JasonWGeorge,"#MostDef + +Are you watching the 2nd hour of @Station19 ? + +#askjainajason https://t.co/Eo6Echt7MD" +03/23/2018,Actors,@JasonWGeorge,"I tried to make evey day a #poleday but the producers won’t let me. + +Sum’n bout #insurance + +#askjainajason https://t.co/fla3x79HWA" +07/01/2018,Actors,@chy_leigh,@WonderlandYears 😘 +06/29/2018,Actors,@chy_leigh,"Absolutely!! No one more qualified and more creative than you, My Friend. Thank you for all the hard work and passi… https://t.co/VqXG3gBl0P" +06/29/2018,Actors,@chy_leigh,@reginaYhicks I don’t even... I can’t ... it’s perfect. +06/29/2018,Actors,@chy_leigh,@Airstripyaks OMG... you’re amazing +06/29/2018,Actors,@chy_leigh,This is AWESOME Bianca! https://t.co/jkEsRWBTpN +06/29/2018,Actors,@chy_leigh,@DavidHarewood Can’t wait to hear about it my friend. +06/29/2018,Actors,@chy_leigh,UHMAZING! @eastofeli & 1 are so grateful for all the hard work you’ve done for all the right reasons ❤️ https://t.co/GTsbWlZSjZ +06/29/2018,Actors,@chy_leigh,@Sue__Ing @eastofeli @GibusClubParis Nous aimons Paris!! +06/29/2018,Actors,@chy_leigh,AWESOME!! We love you Sue ❤️ https://t.co/9H7z9OnKrN +06/27/2018,Actors,@chy_leigh,RT @createchange_me: Bullying comes in many forms and wears different masks. How did you overcome the bully (or bullies) in your life? Subm… +06/26/2018,Actors,@chy_leigh,"😎🇨🇦 Cast yer votes, friends! https://t.co/uyQC7UHnbV" +06/24/2018,Actors,@chy_leigh,@wrighteousj OMG OMG OMG... we did it!!! Oh Friends... it’s the little things in life that bring @eastofeli & mysel… https://t.co/GbvZSfdBnU +06/24/2018,Actors,@chy_leigh,@wrighteousj https://t.co/sD9kuluBZF +06/24/2018,Actors,@chy_leigh,@wrighteousj RTs 👀 +06/24/2018,Actors,@chy_leigh,@wrighteousj https://t.co/egKhmYmkdS +06/24/2018,Actors,@chy_leigh,@wrighteousj 🎶Ohhhhhhhh we’re halfway there!! Oh ohhhhh... Jordan’s living on a prayer! https://t.co/07dlLrQTO6 +06/24/2018,Actors,@chy_leigh,"@clan_dec @wrighteousj Well, I should think so! Release the mathematicians!! I think you can collect retweets from anywhere 🤷🏻‍♀️" +06/24/2018,Actors,@chy_leigh,@brittanylainey Any puppy you want Darling ❤️ +06/24/2018,Actors,@chy_leigh,@wrighteousj Gosh... maybe they’ll name the puppy #Krypto ... or Cupcake (cuz Jordan will have to call him/her that every time) 🤩 +06/24/2018,Actors,@chy_leigh,FRENDZ keep retweeting @wrighteousj ‘s post. Wifey wants a puppy and Jordan will get her one if there are 1K retwee… https://t.co/tzxgwlrqv3 +06/24/2018,Actors,@chy_leigh,@wrighteousj Wow... you actually posted this. Challenge accepted. RT RT RT +06/24/2018,Actors,@chy_leigh,@wrighteousj RETWEET RETWEET https://t.co/gjG5Sb4KFd +06/24/2018,Actors,@chy_leigh,@eastofeli I got you Sis! FRENDZ... WIFEY NEEDS A PUPPY! RT the hell outta this... Love you Lil’ Bro ❤️ https://t.co/eWGCRRiWMj +06/24/2018,Actors,@chy_leigh,THIS IS AWESOME!! I’m so proud of our #Supergirl family 🤗 Woo hoo!! https://t.co/1BdYZaK7wV +06/23/2018,Actors,@chy_leigh,"OMG... I LOVE READING ABOUT ALL OF YOUR WINS!! Big or little, wins come when we find moments of peace in the chaos… https://t.co/Lt34mXHOUB" +06/22/2018,Actors,@chy_leigh,@relyhc_eoe OMG THIS IS AMAZING ❤️ +06/22/2018,Actors,@chy_leigh,"@Lustranimation 😱 Whoa... that’s amazing, you gifted Little Angel!" +06/22/2018,Actors,@chy_leigh,"Sharing a personal little win for myself. Today, I did something with slightly less OCD. I didn’t mop the floor in… https://t.co/3D124lZUMx" +06/22/2018,Actors,@chy_leigh,"@yosox In all fairness (and because he’s sitting right next to me) my husband, @eastofeli came up with the idea. Wh… https://t.co/th85ITTJAf" +06/22/2018,Actors,@chy_leigh,❤️🧡💛💚💙💜 https://t.co/sPTaC9lXWN +06/21/2018,Actors,@chy_leigh,"@yosox This last Christmas, my girls got me a year’s subscription for... SOCKS. Like, literally one of my all time… https://t.co/tt29rLhazM" +06/21/2018,Actors,@chy_leigh,"Let’s do this, Friends! #RepresentationMatters https://t.co/Hmi8w1aSjl" +06/10/2018,Actors,@chy_leigh,BIFL fo RIZZLE @_TNTCreative https://t.co/TryzrRja29 +06/05/2018,Actors,@chy_leigh,J’adore Paris!! Venez nous rejoindre pour une nuit incroyable! https://t.co/QJk4SRpD9w +06/01/2018,Actors,@chy_leigh,🙌🏻🙌🏻🙌🏻 https://t.co/ZnuWdGiXGK https://t.co/hpaNUpqqH4 +05/25/2018,Actors,@chy_leigh,We LOVE LOVE LOVE you all so much!! Thank you for allowing us to be on your journey and for you to grace us with yo… https://t.co/Rhq22qk87T +05/20/2018,Actors,@chy_leigh,To Our #Newcastle #ThinkTank? Friends... a heads up 😓 https://t.co/KihJPcu12Y +05/18/2018,Actors,@chy_leigh,"@eastofeli & I are so grateful for our beautiful family... every single one of us, every single day. Family first.… https://t.co/Kjf2H2uxmS" +05/18/2018,Actors,@chy_leigh,"Friends, @eastofeli & I had a lovely time in Ireland & after much needed rest & quality time together, we realize t… https://t.co/Q8G8844saI" +05/10/2018,Actors,@chy_leigh,RT @eastofeli: The lovely & VERY #generous @reginaYhicks you are absolutely incredible... Thank you for always spreading the love😘 https://… +05/09/2018,Actors,@chy_leigh,#SimplyTheBest https://t.co/GiEdjibsBZ +05/09/2018,Actors,@chy_leigh,RT @LRudd1992: Come and see @eastofeli & @chy_leigh in Liverpool at @cavernliverpool on May 24th! Don’t miss TWO unforgettable shows! 4pm b… +05/09/2018,Actors,@chy_leigh,RT @AngLives: I'm so stoked about the #NoPowerOverMe t-shirts that I got to design with @chy_leigh 💪 Based on her latest anti-bullying arti… +05/06/2018,Actors,@chy_leigh,#LoveLitTheSkyForMeAndEOE #BeautifulDay #ThankYouVancouver https://t.co/2BNWGQcbGO +05/01/2018,Actors,@chy_leigh,"🤯 OMG YAAAAAAS BRIANA!! Blackpool Friends, you have NO IDEA what’s comin’ atcha now 😎@JeremyMJordan + @TheVenskus +… https://t.co/8ENmhlYZlu" +04/28/2018,Actors,@chy_leigh,#VegasBaby BE THERE 😎 https://t.co/zyHFJ8ZVi9 +04/26/2018,Actors,@chy_leigh,@raulson_ @eastofeli You are a force to be reckoned with! Well done for taking care of YOU ❤️ #YouMatter +04/26/2018,Actors,@chy_leigh,"@LRudd1992 What a lovely and generous lady you are, Miss Leah ❤️ Can’t wait to see you soon" +04/26/2018,Actors,@chy_leigh,THIS. IS. INCREDIBLE. I can’t even... Such a powerful testament to how authentic and relatable Maggie’s journey has… https://t.co/eQD1iHjYBY +04/26/2018,Actors,@chy_leigh,This absolutely took my breath away. A beautiful song in a beautiful setting sung by the most beautiful person I’ve… https://t.co/hy0kosZRi6 +04/25/2018,Actors,@chy_leigh,On Friday @createchange_me will publish an article I wrote called “The Bully and The Beast” on our site. @AngLives… https://t.co/9Uyzt7L3LO +04/24/2018,Actors,@chy_leigh,YAAAAAS!! Thanks for the support @TWLOHA - @eastofeli & I are glad to have you there! Tix for @PubRockLive -… https://t.co/01TvmR9DoV +04/24/2018,Actors,@chy_leigh,#MyFavoriteGals ❤️ https://t.co/caqezltlc1 +04/24/2018,Actors,@chy_leigh,@lordmesa strikes again!! Killin it Dude! I love your art work 💥👊🏻💥 https://t.co/pAnFI62huA +04/23/2018,Actors,@chy_leigh,Never been to #Scottsdale before! @eastofeli & I can’t wait to meet you all at @PubRockLive this Saturday!! Get you… https://t.co/B4fXIT9xCu +04/22/2018,Actors,@chy_leigh,Amazing music + big hugs + Friends + lifelong memories = The #EOExperience Don’t miss this giveaway!! https://t.co/wmPjbW0ron +04/22/2018,Actors,@chy_leigh,"Friends- I am awed by your #SanversMatters banner in the sky the other day. I wasn’t on set to see it for myself, b… https://t.co/43wgMhIEpU" +04/19/2018,Actors,@chy_leigh,Y’ALL... Who’s ready for some #VegasHeat🔥?! @eastofeli & I are playing an exclusive One-Of-A-Kind LIVE RECORDED aco… https://t.co/EVvhNz8boT +04/18/2018,Actors,@chy_leigh,LOVE LOVE LOVE this beautiful video created by the amazing #TeamJamber from @_TNTCreative Get a glimpse of what th… https://t.co/k6OBWj1qHR +04/18/2018,Actors,@chy_leigh,Friends... you SOOOO want to be here!! #VegasVIP #EOExperience #eoeXtour https://t.co/YYvDOCHzYa +04/18/2018,Actors,@chy_leigh,It’s Confirmed!!! YAAAAAS! FRENDZ... there are ONLY 100 TIX AVAILABLE!!! DO. NOT. MISS. THIS. https://t.co/BvaKWrx2NG +04/17/2018,Actors,@chy_leigh,YAAAAAAS!!! https://t.co/EHhoIKGkMb +04/17/2018,Actors,@chy_leigh,Friends - @eastofeli & I are SO honored to work with 2 UHMAZING organizations to bring support and awareness about… https://t.co/Y2tFEV0Ka0 +04/17/2018,Actors,@chy_leigh,@sanverscentral @TrueColorsFund @florianalima This... this warms my heart ❤️ +04/17/2018,Actors,@chy_leigh,@laurenhkramer @jonnabeer https://t.co/toGhGm3dXa +04/17/2018,Actors,@chy_leigh,@kennykraly @DavidHarewood @CarlLumbly @SupergirlRadio Some of my all time faves +04/17/2018,Actors,@chy_leigh,@sparklydanvers @TheCWSupergirl @JeremyMJordan @CarlLumbly I’ll see what I can do 🤣 +04/17/2018,Actors,@chy_leigh,@jonnabeer LOL +04/17/2018,Actors,@chy_leigh,@chyIersIeighs @TheCWSupergirl @JeremyMJordan @CarlLumbly LOL - SOOO TRUE 😎 +04/16/2018,Actors,@chy_leigh,Friends!! I’m SO EXCITED about tonight’s episode of @TheCWSupergirl !! @JeremyMJordan is phenomenal and with… https://t.co/s5EaCo3rfF +04/13/2018,Actors,@chy_leigh,Always grateful 🙏🏻❤️ https://t.co/FxvNKN0BE1 +04/07/2018,Actors,@chy_leigh,@TheVenskus @ClexaCon I LOVE YOU DUDE... #hatgameisstrong +04/07/2018,Actors,@chy_leigh,@englishride @eastofeli LOVE THIS. THANK YOU +04/06/2018,Actors,@chy_leigh,Hey @eastofeli fans... make sure you get to The Cowan Nashville tonight for free GA Tickets!! Doors open an 6pm Don… https://t.co/Zhi5r1zUHR +04/06/2018,Actors,@chy_leigh,Hey @ClexaCon friends!!! Gettin ready 2 head your way!!! Keep your eyes out for @_TNTCreative (The amazing… https://t.co/pdzdPdDynX +04/05/2018,Actors,@chy_leigh,Hey Friends - I’m getting geared up & ready for #Clexacon2018 !! Gotta make sure I get to #Vegas on time so I’m hea… https://t.co/t7PtSATtsW +04/04/2018,Actors,@chy_leigh,@ClexaCon CLEXACON CLEXACON CLEXACON!!! #AlexDanvers & I will be there Saturday FRENDZ 😎 ... Who’s gonna come by an… https://t.co/yN4cRZiVrc +04/04/2018,Actors,@chy_leigh,@AlexNPittman @eastofeli YOU ARE A DOLL!! Nathan and I loved speaking with you ❤️ +04/03/2018,Actors,@chy_leigh,"Friends, I hope y’all have an amazing time tonight w/ @eastofeli in NJ!! Wish I could teleport there. Production te… https://t.co/rUpM0Oq3XE" +04/03/2018,Actors,@chy_leigh,@reginaYhicks @TheCWSupergirl 😘 +04/03/2018,Actors,@chy_leigh,Get there quickly Friends!! Those @eastofeli tix get snatched up fast! Each #EOExperience has been completely uniqu… https://t.co/3eDvnoe1r4 +04/02/2018,Actors,@chy_leigh,"@MaddyAsi THERE YOU ARE!! It’s currently in my closet. You most certainly did not need to do that, Lady... to kindl… https://t.co/bCS7vHJ5b3" +04/02/2018,Actors,@chy_leigh,🙌🏻 https://t.co/n63alzJ0iB +04/02/2018,Actors,@chy_leigh,YAAAAAS #SupergirlSeason4 I’m so grateful for another year of the #DanversSisters and honored to represent our… https://t.co/hWXunrWHmR +03/29/2018,Actors,@chy_leigh,Thank you @TMobile for this AMAZING opportunity for the #NYC @eastofeli fans! Make sure you get to #TimesSquare ASA… https://t.co/AdJ4hfqX3g +03/28/2018,Actors,@chy_leigh,My friend @MehcadBrooks - @eastofeli and I are grateful for the shout out. Love my #Supergirl family https://t.co/nteDNPNupq +03/28/2018,Actors,@chy_leigh,"FRENDZ - @eastofeli and I are gettin’ our caffeine on right now, preparing for an amazing night at @hrcpittsburgh !… https://t.co/dAD0TJk05m" +03/28/2018,Actors,@chy_leigh,RT @AngLives: Since you've been good bunnies—hopping around w EOE shoutouts—here's a very special @eastofeli Easter Egg Goodie!🐣 Official #… +03/28/2018,Actors,@chy_leigh,YAAAS... #ChooseToBeFree 💥 #LostTransmission https://t.co/AkoCZD3F1q +03/28/2018,Actors,@chy_leigh,🔥❤️🔥 https://t.co/8Eht8K5nFy +03/27/2018,Actors,@chy_leigh,"RT @eastofeli: Still got some GA, VIP Platinum & VIP Silver tix left & wanted to make sure all you #Supergirl fans get a chance to see @chy…" +03/27/2018,Actors,@chy_leigh,"RT @DavidHarewood: Big shout out to @chy_leigh! +Best of luck for your upcoming shows on the East Coast. That’s some tour! Looks like a lot…" +03/27/2018,Actors,@chy_leigh,Thank you Friend!! https://t.co/c5zw8QyQLq +03/27/2018,Actors,@chy_leigh,@OdetteAnnable ❤️❤️❤️ +03/26/2018,Actors,@chy_leigh,"Go go go get @eastofeli #eoeXtour tix for #Pittsburgh, #NewYork, #Baltimore, #Teaneck, #Nashville & #Scottsdale ...… https://t.co/U3xI9slarO" +03/26/2018,Actors,@chy_leigh,"Whoop whoop!! Y’all in the loop! Get those tix, FRENDZ! https://t.co/HFQzxMZzna https://t.co/HKTEjzeJPy" +03/25/2018,Actors,@chy_leigh,#eoeXtour HERE WE COME EAST COAST... here’s the flier for ❤️NY @eastofeli https://t.co/qXUKYVsiX4 +03/24/2018,Actors,@chy_leigh,YES!!! #MarchForOurLives https://t.co/Id5o1H7QWb +03/24/2018,Actors,@chy_leigh,RT @eastofeli: Our NJ #EOEfamily looking forward to sharing 2 very unique & amazing #EOExperiences with you🙌🏻 email: info@eastofeli.com wit… +03/23/2018,Actors,@chy_leigh,"FRENDZ - I’m SO EXCITED for the @eastofeli #eastcoast run!! To answer u all... I’ll B in PA, on the boat in NY, MD,… https://t.co/YNy5UybTos" +03/21/2018,Actors,@chy_leigh,https://t.co/jAA710hlcw +03/21/2018,Actors,@chy_leigh,#SeeYaLaterSkaterz https://t.co/F15sphXxgN +03/17/2018,Actors,@chy_leigh,Just posted... Love you @eastofeli https://t.co/k8HQoPrlro https://t.co/Too1j71Pxf +03/12/2018,Actors,@chy_leigh,@_ariamaze @faultmypride @swinghouse ❤️❤️❤️ +03/12/2018,Actors,@chy_leigh,EPIC!!!! YAAAAS NICOLE 😍 https://t.co/KYCWRlhlju +03/12/2018,Actors,@chy_leigh,@eastofeli goers tonight... take pics for me! Make sure you’re extra loud ❤️ And tell my hubby I love him }{ +03/12/2018,Actors,@chy_leigh,"Friends, just got word from SG that they had to rearrange the schedule for Monday and they need me back 1st thing t… https://t.co/MArVInXO7n" +03/10/2018,Actors,@chy_leigh,Just FYI ... https://t.co/UGcUTZ7yNw +03/10/2018,Actors,@chy_leigh,RT @AngLives: So excited to see you all this weekend for @eastofeli ft @chy_leigh #eoeXtour LA @swinghouse 🎶 It’s been so awesome talking t… +03/10/2018,Actors,@chy_leigh,Just posted on @instagram https://t.co/vlgh27Icrk https://t.co/HFQzxNhaeI @eastofeli +03/10/2018,Actors,@chy_leigh,"RT @oahfoah: What are you doing tonight #LA? +@eastofeli #NewMusic #TONIGHT #SaturdayNight #tickets #supergirl #SwingHouse https://t.co/oe0…" +03/10/2018,Actors,@chy_leigh,@Lustranimation @eastofeli 😲 😍 +03/10/2018,Actors,@chy_leigh,"See you there, Friends!! #eoeXtour https://t.co/xuQMdyZNij" +03/10/2018,Actors,@chy_leigh,@swinghouse tonight!! Can’t wait to take the stage with @johannfrank and that sexy @eastofeli guy 😎 https://t.co/tkB52OkUMU +03/10/2018,Actors,@chy_leigh,https://t.co/jDN84J3udn +03/09/2018,Actors,@chy_leigh,@aley_leah @eastofeli Wait what? You bought ten?? +03/09/2018,Actors,@chy_leigh,"Your generosity is unparalleled, Regina Hicks. You are the queen of kindness ❤️ @eastofeli and I are so grateful fo… https://t.co/i16SPncbcT" +03/09/2018,Actors,@chy_leigh,We’z about to #GetDown so let’s turn it up @slimssf #SanFrancisco #BeThere https://t.co/LGcA3pH5yp +03/09/2018,Actors,@chy_leigh,"RT @Sue__Ing: For new and current listeners to @eastofeli @chy_leigh and @TheCityofSound, I hope you guys will have an amazing time this we…" +03/09/2018,Actors,@chy_leigh,RT @jynxisme98: #SanFrancisco the #eoeXtour featuring @TheCityofSound @eastofeli & @chy_leigh is coming 3/9! New music & merch + @TWLOHA wi… +03/09/2018,Actors,@chy_leigh,RT @createchange_me: Make it a #FabFriday #SuperSaturday & #SundayFunday by jammin w @eastofeli ft @chy_leigh in SF/LA. Visit our table & h… +03/07/2018,Actors,@chy_leigh,"Was nice to see you, Babe! Been a while 😘 Love every chance we get to sing together }{ Come see for yourself Friend… https://t.co/yS5DDCVdDG" +03/07/2018,Actors,@chy_leigh,"Late night jam w/ @eastofeli - singing, laughing, talking about tour info, @johannfrank with us for a super special… https://t.co/8avRG1Rb0Z" +03/07/2018,Actors,@chy_leigh,https://t.co/DKueSJZ9d3 +03/07/2018,Actors,@chy_leigh,"#SanFrancisco - @eastofeli & I are playing @slimssf this Friday, the 9th! Don’t miss out... Make sure you get your… https://t.co/fYA82lGJ3V" +03/06/2018,Actors,@chy_leigh,"Seeing double? @eastofeli & I are playing 2 shows in LA at @swinghouse this weekend, March 10th & 11th. The ONLY WA… https://t.co/p2t9T9QIwO" +03/05/2018,Actors,@chy_leigh,@eastofeli and I wanna see you here!! Hurry hurry!! https://t.co/bIdEMbYl07 +03/05/2018,Actors,@chy_leigh,It’s a #WestLeigh rehearsal for #eoeXtour Seattle ... Getting ready to rock @ElCorazonSEA someone snagged the phone! https://t.co/w3HSxyocEI +03/05/2018,Actors,@chy_leigh,@JAS11724 @photo_ego @ElCorazonSEA @united I’m so sorry you’re having trouble! @eastofeli & I hope you make it!! +03/03/2018,Actors,@chy_leigh,@eastofeli & I are SO honored to have @TWLOHA with us on the #eoeXtour !! Friends... make sure to stop by their boo… https://t.co/3NYl5dSOUv +03/03/2018,Actors,@chy_leigh,Tix link - https://t.co/HFQzxNhaeI https://t.co/0LCwSyfzr8 +03/03/2018,Actors,@chy_leigh,ARE U READY FOR SOME #ChildsPlay ? Here’s a little #SaturdayMotivation for what 2 expect @ an @eastofeli show 😎 Get… https://t.co/1a7U7IUVFz +03/02/2018,Actors,@chy_leigh,YAAAAY! More hugs 🤗 https://t.co/Zan5r7h61J +03/02/2018,Actors,@chy_leigh,Hey friends! make sure you check out @LollipopTheater and learn about the great work these folks are doing for some… https://t.co/bHr4Gpo0Zj +03/02/2018,Actors,@chy_leigh,OMG Friends... @eastofeli & I are SO EXCITED for this super special event! Tickets going fast 😎 Don’t miss out... T… https://t.co/4loNMcxDnV +03/01/2018,Actors,@chy_leigh,RT @eoexperience: @eastofeli #eoeXtour update: Hermosa Beach Show on March 14th has been canceled by venue. All ticket VIP/GA tickets can b… +03/01/2018,Actors,@chy_leigh,"This man makes me laugh everyday. He’s the light of my life, the apple of my eye, the catalyst for smile lines on m… https://t.co/8pGnfnl8RQ" +03/01/2018,Actors,@chy_leigh,"RT @eoexperience: 2 ALL #sanvers, #SupergirlCW & #GreysAnatomy fans b sure 2 catch @chy_leigh singing her heart out with @eastofeli At @ElC…" +03/01/2018,Actors,@chy_leigh,@eastofeli @_TNTCreative Dork Status Confirmed ✔️ +03/01/2018,Actors,@chy_leigh,💃🏻💥🕺🏻 https://t.co/ZP6cDvfEjI +02/28/2018,Actors,@chy_leigh,@ThatKevinSmith @ThatKevinSmith - I’m SO glad you’re home with your wonderful family. All of us (and I mean ALL) at… https://t.co/GFoFOcjkWt +02/28/2018,Actors,@chy_leigh,"We’re on a countdown!! In 3 days, @eastofeli @TheCityofSound & I are kicking off the #eoeXtour in #Portland and… https://t.co/oszCeox5CG" +02/28/2018,Actors,@chy_leigh,"RT @MusicOTFuture: This SATURDAY @eastofeli heads out to #Portland on the firsts stop of the #eoeXtour , grab your tix here https://t.co/i1…" +02/27/2018,Actors,@chy_leigh,#NewMusicMonday FRIENDS... make sure you (and your friends/family 😘) get tix for Portland AND Seattle this weekend… https://t.co/LUh0len63T +02/26/2018,Actors,@chy_leigh,This song is incredibly special. Our little Anni has been thru SO much in her first 8 yrs. From seizures to cross c… https://t.co/9kRdPM0RWF +02/26/2018,Actors,@chy_leigh,"RT @Sue__Ing: THIS WEEKEND! #Portland! Come join us for a night of #NewMusic from @eastofeli and @TheCityofSound, with very special Guest @…" +02/26/2018,Actors,@chy_leigh,"THIS IS EVERYTHING TO ME!! I’m SO proud of you, My Love! You’re the most passionate, most sincere, most gifted arti… https://t.co/0c58LYw2tK" +02/25/2018,Actors,@chy_leigh,RT @AngLives: Racial slurs or hate speech are not allowed and any person caught using them will be BANNED on the @createchange_me @eoexperi… +02/25/2018,Actors,@chy_leigh,"RT @AngLives: To report a specific violation of our organization's anti-bullying policy, send us a detailed message at https://t.co/zgaXGKO…" +02/25/2018,Actors,@chy_leigh,"RT @AngLives: 7️⃣of🔟 #eoeXtour Europe General Discussion is on our FORUM, all fans are welcome to post their efforts to get EOE to Europe.…" +02/25/2018,Actors,@chy_leigh,RT @AngLives: There are many fans using social media to get #eoeXtour to Europe. We love that! @MusicOTFuture runs the official European to… +02/25/2018,Actors,@chy_leigh,RT @AngLives: In partnership with @createchange_me & @MusicOTFuture we have also created the official MOTF FORUM! We invite you to check it… +02/25/2018,Actors,@chy_leigh,"RT @AngLives: 3️⃣of🔟 Every registered member of our website must agree to our Character Pledge developed by me, CEO @eastofeli & CCO @chy_l…" +02/24/2018,Actors,@chy_leigh,"AHHHHH!! I LOVE THIS @eastofeli PROMO! Well done @_TNTCreative ! Friends, this is just a glimpse of what’s to come… https://t.co/Jp6duEg3nz" +02/24/2018,Actors,@chy_leigh,Ask @eastofeli session - tomorrow at 11 PST 😎 https://t.co/n2clOP70fc +02/21/2018,Actors,@chy_leigh,Ooooooooo... that’s SEXY!! The screen are pretty cool too 😉😎 #iloveyoueoe #eoeXtour https://t.co/Sa24fr4lvN +02/21/2018,Actors,@chy_leigh,"Make sure y’all come to the #seattle #eoeXtour show! Classic venue, epic show, family and friends! @eastofeli… https://t.co/y6PE9Tlani" +02/21/2018,Actors,@chy_leigh,Retweeting my own tweet because it’s just that good! SEE Y’ALL IN PORTLAND!! Get tix now for you and your friends!… https://t.co/bcuHvb0ufN +02/19/2018,Actors,@chy_leigh,Seattle- Some of you will be at #ECCC March 3rd and I wish I could’ve been there too BUT I’m SO excited to be on s… https://t.co/bYCB0ZIp2d +02/17/2018,Actors,@chy_leigh,"PORTLAND... Where u at?! CANT WAIT to join @eastofeli & @TheCityofSound Saturday, March 3rd at the Hawthorne Theate… https://t.co/Q8fAAvRcY2" +02/14/2018,Actors,@chy_leigh,#TinselTownBaby https://t.co/iK6362Rit1 +02/13/2018,Actors,@chy_leigh,@eastofeli ❤️ Just posted on @instagram ... https://t.co/PH0HGqiU12 #eoeXtour +02/13/2018,Actors,@chy_leigh,FRENDZ!! Take the poll and let us know! I’m working overtime on my SG schedule to be at these shows! It ain’t easy… https://t.co/pLVCswVoD0 +02/07/2018,Actors,@chy_leigh,❤️ #eoeXtour ❤️ https://t.co/1PhEBNacvc +02/05/2018,Actors,@chy_leigh,👏🏻🙌🏻☝🏻 https://t.co/Bb7xaXmcfq +02/05/2018,Actors,@chy_leigh,I love love love this!!! I’m SO excited Babe!!! And what a Beautiful job @AngLives !! #eoeXtour https://t.co/AK4R1EZY0p +02/03/2018,Actors,@chy_leigh,@TheCityofSound @eastofeli #SavageSis 💥🧝🏻‍♀️💥 +01/29/2018,Actors,@chy_leigh,Alicia... OH MY HEART... This is insanely beautiful and inspiring and totally made me cry 😌 @eastofeli & I are so h… https://t.co/vtLOCH5Ak2 +01/24/2018,Actors,@chy_leigh,OMG... so many responses to @eastofeli ‘s call to arms and then his phone died!! 😆 He’s gonna start fresh tomorrow… https://t.co/2H9i7Hj4pE +01/24/2018,Actors,@chy_leigh,@_sernali 🍀 +01/24/2018,Actors,@chy_leigh,@_TNTCreative @leighslima ❤️❤️❤️ +01/24/2018,Actors,@chy_leigh,@thusspokebianca @eastofeli Love ❤️ +01/24/2018,Actors,@chy_leigh,@saanversx You got this!! +01/24/2018,Actors,@chy_leigh,@badassluthor @lgbtella @eoeftleigh @likemywaverly @fayekc_ !!! ❤️ +01/24/2018,Actors,@chy_leigh,@Ally_Mcdreamy 💘 +01/24/2018,Actors,@chy_leigh,@Nuriia_H 😍 +01/24/2018,Actors,@chy_leigh,@detectivedanvrs #Queen +01/24/2018,Actors,@chy_leigh,@leighslima 💥❤️💥 +01/24/2018,Actors,@chy_leigh,@cuddlyreyes It’s Muh Boiiiii Ryder!! ❤️ +01/24/2018,Actors,@chy_leigh,"@caIzonatorres Hey Luv, we’re still planning but we will DEF be in the UK 🇬🇧❤️" +01/24/2018,Actors,@chy_leigh,@iswearmyfealty 😍 +01/24/2018,Actors,@chy_leigh,@abbiedanvers Where are you? +01/24/2018,Actors,@chy_leigh,"Friends, there are so many more cities to announce for the #eoeXtour but we gotta show serious promise to venues &… https://t.co/R4YBFlnFjZ" +01/23/2018,Actors,@chy_leigh,RT @reginaYhicks: This! Y’all are not gonna want to miss the #eoeXtour with @eastofeli @TheCityofSound @chy_leigh kicking off in March.… +01/22/2018,Actors,@chy_leigh,FRIENDS!! GA/VIP tix 4 the #eoeXtour are on sale now!! Its a whole new experience!! #UPGRADE 😎The more cities we se… https://t.co/wUmDRbeMOr +01/21/2018,Actors,@chy_leigh,@MelissaBenoist @florianalima @caitylotz @TheVenskus @OdetteAnnable #KatieMcgrath @reginaYhicks @rreiffer12… https://t.co/6mfT4HVTWU +01/20/2018,Actors,@chy_leigh,@imjustincharles Happy birthday @imjustincharles !! ❤️ from @eastofeli & I +01/20/2018,Actors,@chy_leigh,@caitylotz @shethority #same +01/20/2018,Actors,@chy_leigh,I have so much respect for this woman! @Zendaya ... I know you don’t know me but as a mom of 2 young girls that ado… https://t.co/y2k9V0Up9C +01/20/2018,Actors,@chy_leigh,@chyleighdnvrs 😱😍 +01/20/2018,Actors,@chy_leigh,@ItsATwinThingYT This is a BEAUTIFUL video... I love that @MelissaBenoist lady. She’s pretty special 👯‍♀️ +01/19/2018,Actors,@chy_leigh,@melanie_sv2sh Hairspray and 🍀 +01/19/2018,Actors,@chy_leigh,@siqqsnaps #10 +01/19/2018,Actors,@chy_leigh,@Lustranimation This is incredible!! As always ☺️ +01/19/2018,Actors,@chy_leigh,@badassluthor @eastofeli ❤️🎵 +01/19/2018,Actors,@chy_leigh,@chylerspaget @eastofeli 😍 +01/19/2018,Actors,@chy_leigh,@sawyerregui Yaaaas!! +01/19/2018,Actors,@chy_leigh,@radziczek007 Oh my... oh oh my... this is AWESOME! 😂 +01/19/2018,Actors,@chy_leigh,@lilysbenoist @eastofeli @florianalima This means so much to @eastofeli & I! And the fact that the flower is in hon… https://t.co/Zlpx0ym7Rl +01/19/2018,Actors,@chy_leigh,"RT @starfuryevents: Don't miss out as we reunite these two amazing ladies, @chy_leigh and @florianalima at Starfury: Ultimates next May! It…" +07/02/2018,Actors,@katewalsh,Hi kitties! Have a good day. 💋 https://t.co/KCct6vONYI +07/01/2018,Actors,@katewalsh,"Who remembers this old thang? No big deal, just me hanging out on a yacht with #BillionaireBoyfriend years ago. 😎 G… https://t.co/zTrvMG0zUw" +06/30/2018,Actors,@katewalsh,Caturday relaxation goals 😴 https://t.co/6J3p1TN97k +06/29/2018,Actors,@katewalsh,"Samples are hereeee ❤️ If ur dying to smell @Boyfriend, grab this little guy. It’s only $4 AND ships for free! Get… https://t.co/hSLn0yq1AO" +06/29/2018,Actors,@katewalsh,RT @iamamyrhodes: Me listening to the new Drake album. https://t.co/mjjEqwb9bJ +06/28/2018,Actors,@katewalsh,#TBT Kickin up my feet and relaxin. https://t.co/1Kw7nwtVqP +06/28/2018,Actors,@katewalsh,Office. https://t.co/vhkhagbjse +06/28/2018,Actors,@katewalsh,U guys. I just discovered shelfies. 😱 I mean...who knew these were a thing?! What's on ur beauty shelf besides… https://t.co/K91jmggdXX +06/27/2018,Actors,@katewalsh,It’s #NationalSunglassesDay u say? We all know I love a good pair. 😎 https://t.co/7hrbaxSnUu +06/26/2018,Actors,@katewalsh,I mean… #ifyousayso https://t.co/tHai0Qii6P +06/26/2018,Actors,@katewalsh,This is pretty beautiful... https://t.co/6hUDpEuazN +06/25/2018,Actors,@katewalsh,Shimmie shimmie for Monday & white denim. 💃🏻💃🏻 https://t.co/0goPCkZEBe +06/24/2018,Actors,@katewalsh,"RT @DanRather: A true Sunday feel good story. Amidst the bleak news, let's try to hold on to our common humanity and foster empathy. Kudos…" +06/24/2018,Actors,@katewalsh,Sun cat catnap. ☀️ https://t.co/aYE4TFgmEc +06/24/2018,Actors,@katewalsh,some pure joy... https://t.co/IoLa3ETRTy +06/23/2018,Actors,@katewalsh,"❤️ this @MusingsofaMuse. Thanks, gal! So glad you like @Boyfriend. https://t.co/IZuEGDdMYM" +06/23/2018,Actors,@katewalsh,Don’t forget it 💕 https://t.co/wmuNu2oo1X +06/23/2018,Actors,@katewalsh,This is absolute madness. https://t.co/Qbig0WWtkh +06/22/2018,Actors,@katewalsh,#FBF So much glitz & glamour for my old #BillionaireBoyfriend shoot in 2012. ✨✨ We're letting go of Billionaire Boy… https://t.co/Q1FHWxxfUi +06/22/2018,Actors,@katewalsh,Happiest of birthdays to one of my favorite gals @AmyBrenneman! 😘😘 https://t.co/yXaFZwzjDx +06/22/2018,Actors,@katewalsh,What an incredible creature... https://t.co/zJ80ZY8IqO +06/21/2018,Actors,@katewalsh,"Glow + @Boyfriend = the perfect selfie! 🤳🏼 If u haven’t already, now’s the time to get ur selfie partner! Use the c… https://t.co/f1RGnJc4Ta" +06/20/2018,Actors,@katewalsh,In times like these an emotional support cat is essential. #pablo https://t.co/ouM9cOJ4Ve +06/19/2018,Actors,@katewalsh,Some good news...❤️ https://t.co/6UuIt4bPsq +06/19/2018,Actors,@katewalsh,We heard uuuuu…. Excited to share that we’ve been testing @Boyfriend Body Creme! Can u tell that I’m loving it alre… https://t.co/I8nUtljI3p +06/19/2018,Actors,@katewalsh,RT @iamamyrhodes: Help if you can. ❤️ https://t.co/r8nPtQxDqP +06/19/2018,Actors,@katewalsh,So proud & thrilled to honor @CovenantHouse & the lovely @AudraEqualityMc w/ @StephenAtHome 💕 https://t.co/bwGfeAkFsw +06/18/2018,Actors,@katewalsh,This can't be who we are as a country. Please call your senators: 202-224-3121 #EndFamilySeparation… https://t.co/WIBAJhL4e0 +06/18/2018,Actors,@katewalsh,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Actors,@katewalsh,Same Lisa. Same. #MondayMood https://t.co/yJ21zEwHh4 +06/17/2018,Actors,@katewalsh,Anyone else get cyborg vibes? 💙 https://t.co/o2gFyhbayq +06/16/2018,Actors,@katewalsh,What’s better than a morning puppy-rito? https://t.co/LjZeWkeP0x +06/15/2018,Actors,@katewalsh,Spending the day in bed. Thanks @casper for the comfy gift. I'm never leaving. https://t.co/KwhPgs8ncQ +06/14/2018,Actors,@katewalsh,"As the @Boyfriend team & I are creating amazing new products and scents, it's time for me to break up with our Bill… https://t.co/oIgtJ86BG0" +06/14/2018,Actors,@katewalsh,Ahhh #throwback to sobbing on the beach while filming my old Billionaire Boyfriend campaign in 2012. 😭 It may not l… https://t.co/nKMNuymu9P +06/14/2018,Actors,@katewalsh,#TBT @sergiowastaken working his magic on me in the early days. 💋 https://t.co/gpHYglxZNk +06/14/2018,Actors,@katewalsh,Whoahhh.... https://t.co/jhMbKozKy7 +06/13/2018,Actors,@katewalsh,"Ugh, the utter disrespect! https://t.co/MfLBTVCBQZ" +06/13/2018,Actors,@katewalsh,RT @asad_abdullah20: What a majestic creature. https://t.co/6nVcqtHKMs +06/12/2018,Actors,@katewalsh,Loving all of the new @Boyfriend love! 😘 The team & I are working on many more exciting things to come. What would… https://t.co/PCtuZ83PWP +06/12/2018,Actors,@katewalsh,Thisssssssss...!!! 💪🏽 ❤️⚡️😊 https://t.co/TQ9YSyyz2S +06/11/2018,Actors,@katewalsh,It’s fine - everything’s fine. #mood #morecoffee https://t.co/mx0wpWDFOV +06/10/2018,Actors,@katewalsh,Easy like Sunday morning 🦋 https://t.co/ztnpkAkuRN +06/09/2018,Actors,@katewalsh,I love this. Thank u @CovHousePrez https://t.co/GCkMyOIKhh +06/09/2018,Actors,@katewalsh,Her life is so ruff 💤 🐶 #RosieTheDog https://t.co/EYk2yPnhvd +06/08/2018,Actors,@katewalsh,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/08/2018,Actors,@katewalsh,"Can you name a better duo?! 👯👯 +In honor of #NationalBestFriendsDay, @Boyfriend paired these besties up for a limit… https://t.co/dsNlP7i2FN" +06/07/2018,Actors,@katewalsh,YES - things like taking cookies out of the oven before they’re “ready” #begreat #thursdaythoughts https://t.co/a1qVABIwdS +06/07/2018,Actors,@katewalsh,"RT @ABC: 74 years ago today, the United States armed forces and its allies invaded the beaches of Normandy, France, to liberate Europe from…" +06/06/2018,Actors,@katewalsh,"Looks like ur @Boyfriend orders are starting to get to u! I’m loving all the pics! 💕 + +Keep em coming and make sure… https://t.co/XIUS77pgcW" +06/06/2018,Actors,@katewalsh,ecneics <> science https://t.co/DFUp64ZclW +06/05/2018,Actors,@katewalsh,"RT @zachbraff: Don’t give up. People love you. + +National Suicide Prevention Lifeline: 1-800-273-8255" +06/05/2018,Actors,@katewalsh,I’m on the FIRST EVER episode of #DENtalks podcast w @DENmeditation. Meditation has become a huge part of my life &… https://t.co/D8xuE888ue +06/04/2018,Actors,@katewalsh,Pablo has some thoughts about Mondays… https://t.co/LRMnykH42e +06/03/2018,Actors,@katewalsh,Hi there 😽 #meow https://t.co/lo8u1JQYla +06/03/2018,Actors,@katewalsh,💕❤️ https://t.co/lMUrnJx5kk +06/02/2018,Actors,@katewalsh,I’m just so in love with @Boyfriend’s new look! And the smell… don’t even get me started - SO delicious. The same s… https://t.co/T4huKIrMSW +06/01/2018,Actors,@katewalsh,"Today, I #WearOrange to give a voice to the 96 Americans who die and the hundreds more who are injured by gun viole… https://t.co/4urtSfZ2Sy" +06/01/2018,Actors,@katewalsh,Amen https://t.co/FRBYHOyc9C +05/31/2018,Actors,@katewalsh,"#TBT to Malibu beach days and posing carefree with my Aperol Spritz ☀️🍸 + +📸: #amandarowanimagery https://t.co/h7m4fB7AEV" +05/31/2018,Actors,@katewalsh,These little guys are so cute & convenient. 😊 The @Boyfriend Pulse Points also ship internationally! Get ur own:… https://t.co/Rw8KiE3XTT +05/30/2018,Actors,@katewalsh,I’m thrilled to share that I’m judging a crowdsourcing competition sponsored by @conservationorg @NatGeo @rare_org… https://t.co/lIwTIXipdB +05/30/2018,Actors,@katewalsh,@kellyoxford This is everything +05/29/2018,Actors,@katewalsh,RT @healthmediagal1: TY again @katewalsh Here is our #interview on #health #mentalhealth #13reasonwhy #13ReasonsWhyS2 #13ReasonsWhySeason2… +05/29/2018,Actors,@katewalsh,The day has finally come! @Boyfriend pre-orders are on their way to u starting today! Miss out on the pre-order? No… https://t.co/bEPVMYmZFz +05/29/2018,Actors,@katewalsh,We heard you! @Boyfriend is now shipping ur pre-orders 😽This is all for (and because of) YOU! Can't wait for u to g… https://t.co/kzyx9otBe7 +05/29/2018,Actors,@katewalsh,I’m live on @Boyfriend’s Instagram RIGHT NOW! 😽 Come chat all things Boyfriend w me → https://t.co/sZoDQRXrv0 +05/28/2018,Actors,@katewalsh,Hope everyone is enjoying #MemorialDay. Thank you to the servicemen and women who have fought for us. https://t.co/qyPofoaLhO +05/27/2018,Actors,@katewalsh,😹😹😹 https://t.co/4kVJv8zWeu +05/27/2018,Actors,@katewalsh,"#BoyfriendPerfume is having a sweet #MemorialDayWeekend sale! With a @Boyfriend purchase, you’ll get a free Billion… https://t.co/8KLTwFm82B" +05/26/2018,Actors,@katewalsh,A little sparkle filter never hurt. https://t.co/zPMcRoVf0j +05/26/2018,Actors,@katewalsh,RT @laurafleur: Irish women who have come #hometovote arriving at Dublin airport. https://t.co/jTMm1xg9a1 +05/26/2018,Actors,@katewalsh,❤️this https://t.co/JG55sJ9J8G +05/25/2018,Actors,@katewalsh,The fight for equality CAN’T stop in our own backyards. I’m so proud to stand with @ONECampaign and the… https://t.co/z1ybd8Ghop +05/25/2018,Actors,@katewalsh,#Pablo TGIF kitties. https://t.co/DmVzWmSDM6 +05/24/2018,Actors,@katewalsh,It’s not too late to pre-order these beauties. 🌺 Can’t wait for you to get your hands on your #BoyfriendPerfume. Pr… https://t.co/24iAsSrMPB +05/24/2018,Actors,@katewalsh,Had a blast chatting w/@healthmediagal1 ❤️💕 https://t.co/KMk6j17FF4 +05/24/2018,Actors,@katewalsh,"Umm, can someone please toss me that beach ball? #tbt +@sergiowastaken https://t.co/TUqu8d85Ds" +05/23/2018,Actors,@katewalsh,"Title X gives women access to contraception and more control over their lives, health, careers, & economic security… https://t.co/2C4Tk9Qojw" +05/23/2018,Actors,@katewalsh,So excited for this! 💕 https://t.co/SsoDgpF2CD +05/23/2018,Actors,@katewalsh,Gosh I love this...😊 https://t.co/DZRGMMb3Vq +05/23/2018,Actors,@katewalsh,"RT @oceana: It's #WorldTurtleDay, break out of your shell! https://t.co/FEgfYVcNJE" +05/23/2018,Actors,@katewalsh,My bro Joe aka The Better Walsh ❤️ https://t.co/yLlqYm4VCI +05/22/2018,Actors,@katewalsh,"Isn’t the #BoyfriendPerfume box b-e-a-utiful?! Excited to finally share it with you. Not only does it look good, bu… https://t.co/3z7a5Trfv5" +05/22/2018,Actors,@katewalsh,Rosie posie 💐 (I know those are tulips…just really needed that rhyme) https://t.co/5z1YJxfXYH +05/22/2018,Actors,@katewalsh,Happy birthday @cher #queen https://t.co/uM1M8OZVIz +05/21/2018,Actors,@katewalsh,The Holy Grail 🙌🏻 There’s still time to pre-order your #BoyfriendPerfume! Don’t forget: If you pre-order the fragra… https://t.co/Y76wkbRw94 +05/20/2018,Actors,@katewalsh,My spirit animal #yougogirl https://t.co/uzNqw8KEO3 +05/19/2018,Actors,@katewalsh,#Caturday mood. 😴 #pablo https://t.co/1w8LXerrYA +05/18/2018,Actors,@katewalsh,It’s officially officially out! U can stream all episodes of @13ReasonsWhy season 2 on @netflix now! I give u permi… https://t.co/xeTnOnmCmT +05/18/2018,Actors,@katewalsh,"RT @dylanminnette: @netflix Season 2 of 13 Reasons Why, like season 1, can be unflinching, dark and even hard to watch at times. please vie…" +05/18/2018,Actors,@katewalsh,RT @13ReasonsWhy: The truth doesn't always make things right. Season 2 of #13ReasonsWhy is now streaming. https://t.co/OTDMrzwzIt +05/17/2018,Actors,@katewalsh,Hey everyone! Tune into @HomeandFamilyTV today at 10am/9c to find out how you can join me and #PerkUpWithProtein 💪🏻… https://t.co/QiN74IufAB +05/16/2018,Actors,@katewalsh,❤️💕 https://t.co/nCrk3aCFkT +05/16/2018,Actors,@katewalsh,▶️🖤 May 18th - @13ReasonsWhy Season 2 on @Netflix. #13ReasonsWhy https://t.co/tIq96hrjOd +05/16/2018,Actors,@katewalsh,Oh. This is happening. In just a couple of days. https://t.co/lz1l37kFKX +05/16/2018,Actors,@katewalsh,"RT @TheRealDaytime: Love #GreysAnatomy, #PrivatePractice AND #13ReasonsWhy? Then don’t miss it tomorrow when @KateWalsh stops by! 💋We’re LI…" +05/15/2018,Actors,@katewalsh,Takin’ care of business. But gotta stay comfy ✌🏼 https://t.co/aExE0ptLkf +05/14/2018,Actors,@katewalsh,🤣🔥 https://t.co/I3XjkRVe2Y +05/14/2018,Actors,@katewalsh,Monday. https://t.co/EMxWyhADg0 +05/13/2018,Actors,@katewalsh,❤️💕 https://t.co/qjdnLrv0Ri +05/13/2018,Actors,@katewalsh,Me and sweet mama angela aka il duce aka Angela Embree - thanks for giving me life ❤️ #MothersDay https://t.co/zuQqxkOSWN +05/12/2018,Actors,@katewalsh,"A moment in time when I wasn’t in PJs with a messy bun on my head ✨ thanks again @makeupqueennyc , + @ryantrygstad &… https://t.co/LcD3TqBu6b" +05/12/2018,Actors,@katewalsh,❤️💕 https://t.co/xbN3cnwKRJ +05/12/2018,Actors,@katewalsh,Aka supes hot smarty 👖 https://t.co/YCBYrZekEW +05/11/2018,Actors,@katewalsh,"RT @Boyfriend: Loving all the feedback on Boyfriend’s return! 💕💕 Check out @sanjapekic’s write up on @fragrantica! + +https://t.co/rL3hkmrTV6" +05/11/2018,Actors,@katewalsh,#FBF to that time @kalpenn & I toured w/ @the_USO & I went down when not 1 but 2 military 🐶s chased me wearing a ru… https://t.co/R6V1QIzxw8 +05/10/2018,Actors,@katewalsh,@AmyBrenneman ! I LAVA u https://t.co/OIKn8IoWn0 +05/10/2018,Actors,@katewalsh,"But first…coffee ☕️ #tbt to the #EnsureMaxProtein launch & sharing my #healthgoals. Getting enough protein is key,… https://t.co/hHumkRIEqx" +05/09/2018,Actors,@katewalsh,The @Boyfriend Pulse Point is puuurfect for stashing in your bag for an afternoon pick-me-up. 💁🏼AND this little guy… https://t.co/LZIzZTvhQV +05/09/2018,Actors,@katewalsh,More of me on @Netflix! Excited to join Umbrella Academy! From now you can refer to me as #TheHandler 😏 https://t.co/0o59BW9J0F +05/08/2018,Actors,@katewalsh,RT @AlishaBoe: 10 days 👋 https://t.co/Zdfu76wexd +05/08/2018,Actors,@katewalsh,AND the song in this trailer is by my sweet pal @anyamarina! ❤️ +05/08/2018,Actors,@katewalsh,Are u ready? #13ReasonsWhy Season 2 coming May 18 @13ReasonsWhy @netflix https://t.co/8nKLwJNBLL +05/07/2018,Actors,@katewalsh,I mean… the audacity! (This literally happens every day) 📹 @hellogiggles https://t.co/NM10uGwo84 +05/07/2018,Actors,@katewalsh,Cruel.... https://t.co/P3KVPJt8eE +05/06/2018,Actors,@katewalsh,"I’m on tonight’s episode of #LongIslandMedium - check it out on @TLC at 8/7C! Such a cool experience. Thanks,… https://t.co/dQ3DKXQjzM" +05/06/2018,Actors,@katewalsh,Sometimes my hair gives me a little faux mustache 👨🏻 https://t.co/wKRJ7Lekx2 +05/05/2018,Actors,@katewalsh,Happy #CincoDeMayo from Pablo! And never forget - taco cat spelled backwards is still taco cat 🐱 https://t.co/05crg4VvRi +05/05/2018,Actors,@katewalsh,Sweet dreams... #billiam #heavensentheavenbound https://t.co/ctJJp4V6mk +05/04/2018,Actors,@katewalsh,Billy’s go-to move: “Bathe Pablo and then beat his ass” 😹💞 #RIPBilly https://t.co/wigJeOb7JU +05/04/2018,Actors,@katewalsh,"This little guy saw me through so much and slept in the crook of my arm every night I was home, through long hours… https://t.co/diJSuzEKHz" +05/04/2018,Actors,@katewalsh,"The lovely Derek Brake saw him out of this world at home in NYC, along with Pablo and Rosie. I got to say goodbye t… https://t.co/Nh9Gp9BGyw" +05/04/2018,Actors,@katewalsh,"Hey friends, I just wanted to let you all know that Billy the Cat, aka Billiam E. Pants, aka Billiam, aka Billy Pan… https://t.co/kp3y48BGrG" +05/04/2018,Actors,@katewalsh,💕 https://t.co/4J4oXbXRxe +05/03/2018,Actors,@katewalsh,"Olivia Baker is back. May 18th. @13ReasonsWhy + +#Season2 #13ReasonsWhy https://t.co/NoBVvbOHpn" +05/02/2018,Actors,@katewalsh,"Side note: ​Pre-sale purchasers get first access to our private Facebook group, Boyfriend Confidential. Members get… https://t.co/bhYVrdy3bs" +05/02/2018,Actors,@katewalsh,Lean on me 🎶 Pre-Sale for #​Boyfriend​Perfume​ is still happening. ​It's the same scent you know and love! ​Get urs… https://t.co/TwMLqC8VlI +05/01/2018,Actors,@katewalsh,Spring has sprung in #NYC 😍 Love seeing these little beauties on my walk. https://t.co/hsKbPDDM3J +04/30/2018,Actors,@katewalsh,"Here we go! May 18th. Season 2. #13ReasonsWhy + +@13ReasonsWhy @netflix https://t.co/cr5XgHs4gV" +04/30/2018,Actors,@katewalsh,"#ThankYouCecile for helping to grow Planned Parenthood from 3 million supporters to nearly 12 million, and inspirin… https://t.co/uynk2Koxw3" +04/30/2018,Actors,@katewalsh,RT @13ReasonsWhy: The truth is developing. https://t.co/rwCobzhbC0 +04/30/2018,Actors,@katewalsh,Shared my pick with @InStyle for your mamas on #MothersDay! Take a look to see what I chose. (hint hint: @boyfriend) https://t.co/FujgVtYMzp +04/30/2018,Actors,@katewalsh,Sunday night vs Monday morning. #mood https://t.co/colRzkrFpd +04/29/2018,Actors,@katewalsh,Happy birthday #katherinelangford! Hope your day is filled with so much ❤️ #13ReasonsWhy https://t.co/3gO8fc3GbY +04/28/2018,Actors,@katewalsh,😍😘 https://t.co/WXlznjNLFr +04/28/2018,Actors,@katewalsh,Oh hi there 🐱| 📷 @TheVampiresWife https://t.co/7HVUi31UxJ +04/27/2018,Actors,@katewalsh,Yes lady! https://t.co/4zccsFXD4m +04/27/2018,Actors,@katewalsh,I'll never tell... https://t.co/EAxGPhxu9X +04/27/2018,Actors,@katewalsh,"Oh hi. It’s just me, Circa 1998, leaning longingly in a doorway, 👄 parted, eyes saying ‘please fucking hire me so I… https://t.co/nejhypB8QA" +04/26/2018,Actors,@katewalsh,The OG Boyfriend bottle evolution… some things just get better with time 😘 Pre-order ur #BoyfriendPerfume here →… https://t.co/tVO8vn6ary +04/25/2018,Actors,@katewalsh,This is perfect 😂 @wendimclendonco (via @BritandCo) https://t.co/1vyet58roE +04/24/2018,Actors,@katewalsh,"#BoyfriendPerfume is Back! ⚡️ + +https://t.co/aZ85y4cNLd" +04/24/2018,Actors,@katewalsh,From Mary Oliver 💞 https://t.co/JqllXap2CK +04/24/2018,Actors,@katewalsh,😳💕 https://t.co/mEtMD9fuli +04/23/2018,Actors,@katewalsh,I need this guy to come say this to me most mornings! ❤️💔❤️ https://t.co/fw27jK1fH5 +04/23/2018,Actors,@katewalsh,We poured our heart and soul into bringing @Boyfriend back for you guys. I can’t wait for u to have it in ur cute l… https://t.co/waJNhQVPuy +04/22/2018,Actors,@katewalsh,"Happy #EarthDay! Want to help save forests? You can do so by buying paper, wood, or other forest products with the… https://t.co/w4EBUjDeC4" +04/21/2018,Actors,@katewalsh,This “cat”sterpiece brought to you by @ninamillin 😻#caturday https://t.co/dM1PJECmaV +04/21/2018,Actors,@katewalsh,😺😺 https://t.co/V37Actvggo +04/20/2018,Actors,@katewalsh,RT @trvpism: sometimes u just gotta clean your room and apply an elaborate skincare routine and pretend that’s equivalent to getting ur lif… +04/20/2018,Actors,@katewalsh,Boom! 💕🥂 https://t.co/yPF1aubtTu +04/20/2018,Actors,@katewalsh,To my international bbs.... Did u know the OG @Boyfriend Pulse Point ships internationally?! 🤗 Now you do! Get urs… https://t.co/e3m7A1Z79u +04/20/2018,Actors,@katewalsh,YES https://t.co/yYFo5xydV9 +04/20/2018,Actors,@katewalsh,Is that too much to ask? 🍩 > 🥗 https://t.co/FQjU3lI2nN +04/19/2018,Actors,@katewalsh,So immensely proud of @tiffanyhaddish. #TIME100❤ https://t.co/PDIT3eKEIM +04/19/2018,Actors,@katewalsh,#TBT to this amazing dress. It reminds me of saltwater taffy… anyone else see it? Just me? …Okay cool. https://t.co/ZimrHqUzeO +04/19/2018,Actors,@katewalsh,So great to see ya gal! Had a blast getting to chat with u 😊 https://t.co/U20PWGewpb +04/18/2018,Actors,@katewalsh,"So much fun getting to chat with @WendyWilliams about working on #GirlsTrip, #13ReasonsWhy and much much more! Chec… https://t.co/MrM9xhUZ3d" +04/18/2018,Actors,@katewalsh,Can’t wait to share Season 2 of #13ReasonsWhy with you guys! Spilled a few deets w #DailyPop yesterday 🙃 https://t.co/ZwmPUJCzCL +04/18/2018,Actors,@katewalsh,Did you hear? Your #BoyfriendsBack!! Pre-sale for the Original @Boyfriend perfume is happening now! Who already pre… https://t.co/X8sLfwB6PF +04/18/2018,Actors,@katewalsh,Got to talk about my health journey the past few years + #13ReasonsWhy w #ExtraTV. Watch it tonight! https://t.co/RYrPjd3WFC +04/18/2018,Actors,@katewalsh,We’re going LIVE in 5 mins! Head over to @AbbottGlobal’s Facebook page now to chat with me about all things healthy… https://t.co/oDLMVo4Lih +04/18/2018,Actors,@katewalsh,this! #Her https://t.co/2WEBdcN0Yn +04/18/2018,Actors,@katewalsh,"I’m excited to be teaming up w/ @AbbottGlobal to introduce their new nutrition drink, #EnsureMaxProtein! It’s a gre… https://t.co/ImoaIPzU2v" +04/17/2018,Actors,@katewalsh,"There's a description of the fragrance here --> https://t.co/0qxr1mkzl7 + +Top notes are Night Blooming Jasmine & ju… https://t.co/x3bYAbxHeG" +04/17/2018,Actors,@katewalsh,I always say: 2 Boyfriends r better than one 😍! #BoyfriendPerfume https://t.co/Q7sesBjtiy +04/17/2018,Actors,@katewalsh,The Boyfriend Pulse Point ships internationally! 🙃 https://t.co/Zz4qcWTwqb https://t.co/ekBaC7Wib3 +04/17/2018,Actors,@katewalsh,Loved getting to chat with @wwd about @Boyfriend and why we decided to bring it back! We put so much ❤️ into gettin… https://t.co/iQVIwJDUxg +04/17/2018,Actors,@katewalsh,"Today is the day!! 🎉🎉 Pre-Sale for the Original @Boyfriend EDP and Pulse Point starts NOW! Oh, and the pulse point… https://t.co/LPlVEvZ6Q8" +04/17/2018,Actors,@katewalsh,"Loved spending my AM w/ @klgandhoda! We talked #13ReasonsWhy, the perks of protein & reaching our #healthgoals. Vis… https://t.co/RThwZVSfgh" +04/16/2018,Actors,@katewalsh,TOMORROW! Pre-Sale for @Boyfriend starts! 😍 9am PST - Set ur clocks and get reeeaadddy! https://t.co/wioazEZUz5… https://t.co/v9YFBwoJyc +04/16/2018,Actors,@katewalsh,Happy Monday! Catch me on the season 2 premiere of my fave @sonyawalger’s podcast @bookishsonya! Chatting about som… https://t.co/I6gQnZwm0B +04/16/2018,Actors,@katewalsh,Some 💕for Monday https://t.co/7gyal5s2Jb +04/16/2018,Actors,@katewalsh,"I’ve got a surprise coming your way soon! Hint, hint: Tune into @AbbottGlobal’s FB page on April 18 at 3:30 PM ET f… https://t.co/b9uhOHxGLq" +04/15/2018,Actors,@katewalsh,Sunday https://t.co/kwBIDoFsCK +04/15/2018,Actors,@katewalsh,This...❤️💕😳 https://t.co/Ifou0dmEzm +04/14/2018,Actors,@katewalsh,Been dealin’ with this all day 🏝💕🙏🏽 https://t.co/0pRTBvYXQ9 +04/13/2018,Actors,@katewalsh,@bader_diedrich 🤣🤣 +04/13/2018,Actors,@katewalsh,"Ahh, I ❤️this & ❤️ u @ConanOBrien https://t.co/ESHgCmJFzO" +04/13/2018,Actors,@katewalsh,RT @nowthisnews: People are paying to nap at this new cafe https://t.co/H5hdjaJx1w +04/13/2018,Actors,@katewalsh,#FBF to flowery spring dress vibes 💐🌷 https://t.co/fMbYgfob6t +04/12/2018,Actors,@katewalsh,Finishing touches w the @Boyfriend team 🙌🏻 #NewLookSameBoyfriend OG is #ComingSoon! Sign up to get the deets first!… https://t.co/PwsmKiPGoQ +04/12/2018,Actors,@katewalsh,Aww! Had a blast with this one. 💞 Don’t miss the Season 2 premiere of Bookish on Monday to hear me chat about some… https://t.co/H57WuIHUDs +04/12/2018,Actors,@katewalsh,#tbt to the #bahamas when we shot our #billionaireboyfriend perfume commercial & I channeled my inner bedazzled/psy… https://t.co/iyYyENUuhq +04/12/2018,Actors,@katewalsh,This makes me 😢it’s so true! What would I do w/o my #rosiethedog? Adopted her 10yrs ago 🐶⚡️#rescuedogs https://t.co/AT9VDsf9EW +04/11/2018,Actors,@katewalsh,💕sending u all big love today https://t.co/qqdrr8Tq1A +04/10/2018,Actors,@katewalsh,Today is #EqualPayDay. A day to symbolize how far into the future the average woman has to work to earn the same am… https://t.co/ulK80ab8Nt +04/10/2018,Actors,@katewalsh,STILL the baby of the family😍 What would I do without my bros & sis? #NationalSiblingDay https://t.co/iQtsuTEZ0R +04/10/2018,Actors,@katewalsh,I need the buddy benching my life! 💕❤️ https://t.co/MfjNLsJBHN +04/09/2018,Actors,@katewalsh,Getting all our ducks in a row…. Original Boyfriend will be here sooner than you think! Stay up to date here →… https://t.co/PlXyYPcf4y +04/09/2018,Actors,@katewalsh,monday (burrito) mood 📷: Jean Jullien https://t.co/1gDNc5iVrE +04/08/2018,Actors,@katewalsh,Keeping watch. Careful… he’s a highly trained guard cat. #meow #meOUCH https://t.co/RWgDIgxZYO +04/07/2018,Actors,@katewalsh,The handiwork of #ChadWood & @sergiowastaken - thanks fellas https://t.co/MxgqUR6pSh +04/06/2018,Actors,@katewalsh,THIS guy! Full recovery #billythecat #mantlecat #homesweethome🏡💕 😻 https://t.co/TYSSNLDYyA +04/06/2018,Actors,@katewalsh,Oops > what if 🤷🏻‍♀️ https://t.co/Z07qmADKCf +04/05/2018,Actors,@katewalsh,How’s this for a #TBT… we were babies! @Mariska @ChristaBMiller 😍 https://t.co/kOBrPPwQVX +04/04/2018,Actors,@katewalsh,Pretty much a dream come true to work w/these vocal gods on @bestfiends - @hamillhimself @MAURICELAMARCHE &… https://t.co/e0Qswx4GwZ +04/04/2018,Actors,@katewalsh,"Hey heeyyyy! Starting today, every Billionaire @Boyfriend purchase will come with a FREE sample of the Original Boy… https://t.co/rUovPS1Bk5" +04/03/2018,Actors,@katewalsh,"This LA sunshine is just the worst, right? 😏 https://t.co/od0KQp3I8K" +06/30/2018,Actors,@KellyMcCreary,Obviously. https://t.co/ERUtKh5f0Y +06/30/2018,Actors,@KellyMcCreary,"RT @ShanaRedmond: The “greatest legal minds” in the US just broke the already weak back of organized labor. + +I don’t want to see one more…" +06/29/2018,Actors,@KellyMcCreary,"RT @laurenduca: The shooting today in the Capital Gazette newsroom in Annapolis, Maryland cannot reasonably be separated from the President…" +06/29/2018,Actors,@KellyMcCreary,RT @harikondabolu: Don’t tell me it’s just a “few” bad apples. This system is racist to the core. This man did not deserve this. https://t.… +06/29/2018,Actors,@KellyMcCreary,"RT @broadwaybabie36: A true case of art holding up a mirror to life in the #SkeletonCrewGP @GeffenPlayhouse. Thank you @A_Cheatom, @KellyMc…" +06/28/2018,Actors,@KellyMcCreary,RT @B_Hay: Meet the Harvey Street design team! I want to live under their pink skies! #HarveyStreetKids https://t.co/9sDXmsB37Z +06/28/2018,Actors,@KellyMcCreary,"@snozberries44 @petechatmon So much fun to hang out with you, TQ!" +06/28/2018,Actors,@KellyMcCreary,"RT @BetteMidler: Call #MitchMcConnell and tell him you expect him to wait until the midterms are over, as he did, when President Obama put…" +06/28/2018,Actors,@KellyMcCreary,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/28/2018,Actors,@KellyMcCreary,"Hey hey Angelenos I’ll be on @GDLA in about 30 minutes! Thanks, Annette Chaisson, for getting me looking right, bri… https://t.co/Fk5Tz34LTH" +06/27/2018,Actors,@KellyMcCreary,"RT @RepAdamSchiff: McConnell held a Supreme Court seat open for a year, insisting no Justice be confirmed in an election year without voter…" +06/27/2018,Actors,@KellyMcCreary,"RT @SenSanders: We should listen to what Sen. McConnell said in 2016. President Trump should not nominate, and the Senate should not confir…" +06/27/2018,Actors,@KellyMcCreary,RT @laurenlapkus: Aww a new clip from #HarveyStreetKids! Premiering Friday on @netflix! https://t.co/oSozqn4QZP @StephyLems @KellyMcCreary… +06/27/2018,Actors,@KellyMcCreary,"So great to chat with you, George! https://t.co/uy2ysWUTV3" +06/26/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: ✔️Detain the LatinX immigrants +✔️Ban the Muslims +✔️Jail the Black folks +✔️Ruin the Indigenous folks’ water +✔️Attack the po…" +06/26/2018,Actors,@KellyMcCreary,Thread. https://t.co/XKytg77a3i +06/26/2018,Actors,@KellyMcCreary,"RT @LaBeautyologist: Neither can gay couples. Black people. Muslims. Sikhs. Spanish speakers. + +Join the club. https://t.co/B0ceLoiTXl" +06/26/2018,Actors,@KellyMcCreary,RT @aparnapkin: your right to #civility ended when you started taking away civil rights +06/26/2018,Actors,@KellyMcCreary,"RT @sistergoldie: On respectability politics for black playwrights, “Don’t sir your dirty laundry”...they say. “But the laundry gotta get…" +06/26/2018,Actors,@KellyMcCreary,"Thank you, Sheila! Wonderful to see you again! https://t.co/ZyKkX7DWKF" +06/26/2018,Actors,@KellyMcCreary,"RT @billyeichner: Hey COLORADO, MARYLAND, NEW YORK, OKLAHOMA and UTAH - get out and VOTE tomorrow!!! https://t.co/Tr5GRWvhlV" +06/26/2018,Actors,@KellyMcCreary,"RT @KristaVernoff: 2 hours left to vote for Emmys! Wanna vote for some WOMEN? +FYC: +TV MOVIE - Paterno +TV COMEDY - SMILF +TV comedy writ…" +06/26/2018,Actors,@KellyMcCreary,RT @johnlegend: Let's make a deal with the Trump Administration. Reunite all these families immediately and you can go out to eat wherever… +06/25/2018,Actors,@KellyMcCreary,"RT @ClintSmithIII: ""You cannot spit in the plates and then demand your dinner. The best way to receive civility at night is to not assault…" +06/25/2018,Actors,@KellyMcCreary,@TheJasikaNicole Jitlada +06/25/2018,Actors,@KellyMcCreary,"RT @CleverTitleTK: GOP: ""Why are we worrying about these foreign children at the border instead of American children?"" + +Also GOP: https://t…" +06/24/2018,Actors,@KellyMcCreary,"RT @jacobsoboroff: We can track our @FedEx packages down to the *second* if we want to. + +Why can’t the United States government figure out…" +06/24/2018,Actors,@KellyMcCreary,"RT @RachelGonKCMO: Did you know that 4 MILLON 17-year-olds turn 18 before the November election? + +If you are 17 1/2 you can register to vo…" +06/24/2018,Actors,@KellyMcCreary,Listen to Finchie. Finchie will never steer you wrong. https://t.co/3IP52gADqa +06/24/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: That’s called a dictatorship. https://t.co/4r2137trJ3 +06/24/2018,Actors,@KellyMcCreary,"RT @ashleyn1cole: Look all we want to do is kick a bunch of people out of the country, and get rid of your health insurance, and say and do…" +06/24/2018,Actors,@KellyMcCreary,RT @aparnapkin: Getting politely asked to leave a restaurant for human rights crimes still beats getting the cops called on you for existin… +06/23/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: .@domorisseau’s Skeleton Crew is now #OvationRecommended! Bravo to our cast, crew & design team! See what the buzz is…" +06/23/2018,Actors,@KellyMcCreary,"RT @kathleenantonia: ""We are in a war fighting evil. We need to be clear about that."" ~ @evapaterson, a role model for stepping into the ri…" +06/23/2018,Actors,@KellyMcCreary,"RT @natasharothwell: What they're doing while we freak out about a sh*tty Zara jacket. +🚨CALL YOUR REPS🚨 +(202) 224 - 3121 https://t.co/OxJl…" +06/23/2018,Actors,@KellyMcCreary,RT @LeslieProll: Thank you @evapaterson @equaljustice for hosting conference on fighting racism & bias across issue areas. Desperately need… +06/23/2018,Actors,@KellyMcCreary,"RT @BerniceKing: #AntwonRose’s death is devastating. If you’re blaming his death on him running from police, I suggest you enlarge your und…" +06/22/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: Week 3 is quickly coming to an end. That means final weeks to see @domorisseau’s Skeleton Crew! Don’t wait. Must close… +06/22/2018,Actors,@KellyMcCreary,Calling now. #SingleStagingArea https://t.co/ojfyhhMvf5 +06/22/2018,Actors,@KellyMcCreary,RT @BlackNLA: These four. Take the Gil Cates Theater stage to bring @domorisseau's words to spectacular life under the direction of #Patric… +06/22/2018,Actors,@KellyMcCreary,"RT @ShaunKing: I kid you not, he was just convicted of sexually assaulting three different women and strangulating and stalking two others.…" +06/21/2018,Actors,@KellyMcCreary,RT @equaljustice: Our #mindscience2018 conference is sold out! Thank you to all our registered attendees and especially to our conference f… +06/21/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: A family concentration camp is still a concentration camp. +• +• +In my freshman political science seminar, we learned about…" +06/21/2018,Actors,@KellyMcCreary,"RT @ShaunKing: This is #AntwonRose. + +Shot in the back and killed yesterday by police in East Pittsburgh, Pennsylvania. https://t.co/xZn87f…" +06/20/2018,Actors,@KellyMcCreary,"@LilHay I have and I agree— “TIME: The Kalief Browder Story,” is a harrowing examination of the devastating impacts… https://t.co/cYDAcYjUdL" +06/20/2018,Actors,@KellyMcCreary,While I have your attention: https://t.co/OzItRKgqdF +06/20/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: THANK U to all our patrons for attending last night's #SkeletonCrewGP #TalkBackTuesday! Special thanks to our moderato… +06/20/2018,Actors,@KellyMcCreary,@BLACKWlDCWS I believe in you. +06/20/2018,Actors,@KellyMcCreary,RT @caterinatweets: For profit prisons lead to trafficking in human beings. Follow the money. https://t.co/wZltRCi4U7 +06/20/2018,Actors,@KellyMcCreary,RT @iJesseWilliams: 👀👂🏽 https://t.co/cTzASU0q61 +06/20/2018,Actors,@KellyMcCreary,RT @jurneesmollett: Y’all please donate to this. These 8 orgs are working on the ground to combat this criminal behavior that is tearing ki… +06/20/2018,Actors,@KellyMcCreary,"Some things are just wrong & have no moral justification. None. No if, ands, or political equivocating. So FYI for… https://t.co/UquLigx74i" +06/20/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: Donald Trump has built prisons for babies. Donald Trump has built prisons for babies. Donald Trump has built prisons fo… +06/20/2018,Actors,@KellyMcCreary,"RT @chrislhayes: Since the president is lying about this, I'll reiterate that we obtained internal CBP documents that show that ****91%****…" +06/20/2018,Actors,@KellyMcCreary,“Tone deaf” doesn’t even begin to describe this tweet. https://t.co/4wQoLHlfXA +06/19/2018,Actors,@KellyMcCreary,RT @marwilliamson: The fraud is not being committed by immigrants trying to game the system; ICE admits 1% of asylum seekers found to be fr… +06/19/2018,Actors,@KellyMcCreary,RT @itsgabrielleu: 👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾 https://t.co/GueHe3HehW +06/19/2018,Actors,@KellyMcCreary,RT @barvonblaq: I don’t understand how a country obsessed with superhero movies doesn’t recognize supervillainy. +06/19/2018,Actors,@KellyMcCreary,RT @DanRather: Let’s be clear - tearing children away from their parents is but a logical extension of this administration’s immigration po… +06/19/2018,Actors,@KellyMcCreary,"This is major. Congrats, @ACLU! https://t.co/bvfiZAvFLy" +06/18/2018,Actors,@KellyMcCreary,"RT @VanJones68: STOP IT! Choice isn’t “open borders” or “scar children for life.” Unless there is a damn good reason, families should be ke…" +06/18/2018,Actors,@KellyMcCreary,RT @jsmooth995: Please never speak to me again about how we need to appeal to Trump's base through compassion and empathy https://t.co/1scK… +06/18/2018,Actors,@KellyMcCreary,"RT @caterinatweets: This is a really easy way to help the babies, children and parents who are being separated and traumatized at the borde…" +06/18/2018,Actors,@KellyMcCreary,RT @timkaine: The real Trump Hotel. https://t.co/PP6nIbzNQR +06/18/2018,Actors,@KellyMcCreary,RT @DreamUndeferred: THIS. How many times do we have to say THIS? https://t.co/dhOJUSm1h9 +06/18/2018,Actors,@KellyMcCreary,"Whatever your politics, you know that separating children as young as infants from their parents is cruel and inhum… https://t.co/GQUwJ6cfMW" +06/18/2018,Actors,@KellyMcCreary,RT @iamedigathegi: Our government has cancer. You can be part of the cure. Call your senator at 202-224-3121 and demand the cessation of fa… +06/18/2018,Actors,@KellyMcCreary,RT @SenFeinstein: UPDATE: The entire Democratic caucus supports our bill to bar children from being taken from their parents at the border.… +06/18/2018,Actors,@KellyMcCreary,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Actors,@KellyMcCreary,Also THIS. https://t.co/o9lY2rkh69 +06/18/2018,Actors,@KellyMcCreary,"RT @RVAwonk: Trump keeps trying to blame Democrats, but here's John Kelly in March 2017 talking about implementing forced separation for im…" +06/18/2018,Actors,@KellyMcCreary,"RT @isi_kbreen: yes. crossing the border without documentation is illegal. + +being black without a white owner was illegal. + +walking into a…" +06/17/2018,Actors,@KellyMcCreary,RT @Juliacsk: @amahnke @kumailn Repeat after me: I will vote in the midterm election. I will vote in the midterm election. I will vote in t… +06/17/2018,Actors,@KellyMcCreary,RT @reformlajails: To all the fathers who are separated from their children. To all the children who are separated from their fathers. +06/16/2018,Actors,@KellyMcCreary,"RT @equaljustice: Attorneys Needed to Help Immigrants Oppressed by ICE, via @AILANational https://t.co/eO6V1F7XWx https://t.co/5wiiXgFgE4" +06/16/2018,Actors,@KellyMcCreary,"RT @equaljustice: #HappyBirthday to our champion-in-chief, @evapaterson! The staff and board of EJS express our love and appreciation to Ev…" +06/16/2018,Actors,@KellyMcCreary,RT @PoliteMelanie: Those who were mad at Michelle Obama because she said that kids should eat vegetables are completely fine with Trump put… +06/16/2018,Actors,@KellyMcCreary,RT @SarahKSilverman: It’s nuts- she’s blaming Dems 4not stopping Trump from making this pure-evil policy. Man -they repeatedly point2 Dems… +06/16/2018,Actors,@KellyMcCreary,THAT PART. #Pride #SkeletonCrewGP https://t.co/m20n2R7IwZ +06/16/2018,Actors,@KellyMcCreary,"RT @ananavarro: This shameful moment in American history is squarely on Trump and his Republican enablers in Congress. Remember this, next…" +06/15/2018,Actors,@KellyMcCreary,Discounts! https://t.co/zf3ZoL1W0P +06/15/2018,Actors,@KellyMcCreary,RT @waltisfrozen: Scolding Democrats for saying “Fuck” while the President is constructing prison camps for children and praising foreign d… +06/14/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: ICYMI: @KellyMcCreary shares about her character Shanita in @domorisseau's Skeleton Crew: ""She's a bit of a dreamer. S…" +06/14/2018,Actors,@KellyMcCreary,@octarell lol yes holla. +06/14/2018,Actors,@KellyMcCreary,"This. I second this, @octarell. https://t.co/kb30drffqI" +06/14/2018,Actors,@KellyMcCreary,"RT @nhannahjones: The Bible was used to justify slavery, too. https://t.co/BFFsoVAMqX" +06/14/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: These four. Raised the roof last night!!! DO NOT MISS THIS CAST. Now on stage thru July 8. #AboutLastNight #SkeletonCr… +06/13/2018,Actors,@KellyMcCreary,RT @eveewing: This is a moment where all the hemming and hawing over civil disobedience and “is it okay to punch a nazi?” comes back to bit… +06/13/2018,Actors,@KellyMcCreary,"RT @theatermania: PIX: See @KellyMcCreary, @dbwofficial & the cast of @GeffenPlayhouse's SKELETON CREW → https://t.co/EZmExPhTA3 https://t.…" +06/13/2018,Actors,@KellyMcCreary,"Thanks, Surveyed Audience Member! Excited to open this thing tonight! It’s been a blast so far... #SkeletonCrewGP… https://t.co/9xFGrMOTH6" +06/13/2018,Actors,@KellyMcCreary,@DreamUndeferred I love this story 😂 +06/13/2018,Actors,@KellyMcCreary,RT @laurenduca: Families Belong Together is organizing marches against this horrifyingly inhumane bullshit. Please consider joining the one… +06/13/2018,Actors,@KellyMcCreary,"RT @laurenduca: This is what that piece of garbage means when he says ""Make American Great Again."" It almost seems like an understatement t…" +06/13/2018,Actors,@KellyMcCreary,"RT @paolamendoza: This is the youngest child I have heard of being taken from their parents. + +A 4 month old baby ripped away from his fath…" +06/13/2018,Actors,@KellyMcCreary,"RT @THEkarliehustle: Thread: + +Kenyata Bullard, 20, was one of 4 young men in a car that was shot up in Jacksonville last week. + +He is the…" +06/12/2018,Actors,@KellyMcCreary,Looking forward to watching this. https://t.co/cK6YOMmSSS +06/12/2018,Actors,@KellyMcCreary,"RT @Phil_Lewis_: ""Freedom has never been free."" + +Medgar Evers, a civil rights leader and World War II veteran, was assassinated in his driv…" +06/12/2018,Actors,@KellyMcCreary,"Dear #SCOTUS, + +As you consider Trump's racist ban, here are a few comments to consider from the president. + +Since… https://t.co/vYJaVsvVpF" +06/12/2018,Actors,@KellyMcCreary,"Oklahoma, I’m looking at you. #vote https://t.co/2IjG9APoaL" +06/12/2018,Actors,@KellyMcCreary,"RT @davidhogg111: This is America, right now + +This is the % of African Americans not able to vote in just a few states. + +VA 21% + +FL 21%…" +06/12/2018,Actors,@KellyMcCreary,Please vote. Please help protect our access to voting. https://t.co/kRzTNGQNnT +06/12/2018,Actors,@KellyMcCreary,RT @equaljustice: Robert Mueller's investigation has already uncovered serious crimes. 5 guilty pleas. 19 indictments. And more than 50 c… +06/12/2018,Actors,@KellyMcCreary,RT @mayawiley: We can’t stop fighting for #netneutrality https://t.co/5Bf415DCYe +06/12/2018,Actors,@KellyMcCreary,"RT @billyeichner: If you live in Virginia, Maine, Nevada, North Dakota or South Carolina - it's Primary day! Get out there and vote TODAY!!…" +06/12/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: IF VOTING DIDN’T MATTER, THEY WOULDN’T BE TRYING TO TAKE AWAY YOUR RIGHT TO DO IT. + +‘Supreme Court Upholds Ohio’s Purge o…" +06/12/2018,Actors,@KellyMcCreary,"RT @rashadrobinson: This is not democracy. This is an attempt to erase the voices of millions of Black voters who vote infrequently, all to…" +06/12/2018,Actors,@KellyMcCreary,RT @RepAdamSchiff: #NetNeutrality protections end today because House Republicans refused to act. Congress still has the power to restore a… +06/12/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: Skeleton Crew is ""...loyalties & finding family outside of family. It is about love & fighting & surviving & unity acr…" +06/11/2018,Actors,@KellyMcCreary,RT @RepJayapal: What I heard from the women being held at the federal detention facility today was saddening and disturbing. They cried so… +06/11/2018,Actors,@KellyMcCreary,RT @HillaryClinton: Here we go again. The Trump Admin is trying to take away your health care by ending protections for ppl w/ pre-existing… +06/11/2018,Actors,@KellyMcCreary,RT @SenKamalaHarris: We just introduced a bill to stop the Trump Administration’s immoral zero-tolerance policy of ripping immigrant childr… +06/11/2018,Actors,@KellyMcCreary,"RT @adamcbest: ""The Democrats are not making any of this easy. They've decided it's more fun to be the resistance than to do their job and…" +06/10/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: It’s our first double-header show day for Skeleton Crew! Our matinee audience is in the house & our awesome four take… +06/09/2018,Actors,@KellyMcCreary,"RT @xuhulk: If you have citizenship in the US, please be mentally prepared to do this on behalf of your neighbors. This is not a drill. htt…" +06/07/2018,Actors,@KellyMcCreary,"Thank you, Dennis!! https://t.co/eXNf5vCTsI" +06/07/2018,Actors,@KellyMcCreary,"RT @itsgabrielleu: Today’s #WCW goes out to Kelly Marie Tran. While I don’t know her, I FEEL her. She was recently driven off of social med…" +06/07/2018,Actors,@KellyMcCreary,RT @Sifill_LDF: Stop calling them entitlements. The safety net is in crisis. https://t.co/2B6IKB8q6g +06/07/2018,Actors,@KellyMcCreary,RT @lsarsour: People will say “but the police followed the law” military followed the law” “ICE followed the law” History has shown us that… +06/06/2018,Actors,@KellyMcCreary,RT @Sifill_LDF: I have been saying this incessantly about Baltimore. Bad policing actually makes the community less safe. Community members… +06/06/2018,Actors,@KellyMcCreary,Previews begin tonight!! https://t.co/JtSyLeFIo3 https://t.co/Eh5Negur5q +06/05/2018,Actors,@KellyMcCreary,RT @Amy_Siskind: WHY ISN’T THIS THE TOP STORY AT EVERY MEDIA OUTLET????!!! https://t.co/dEGwIY9IoP +06/04/2018,Actors,@KellyMcCreary,"RT @cmclymer: Michael Jordan wins Game 5 of the '97 NBA Finals with the flu = ""one of the greatest performances ever"" + +Tiger Woods wins 200…" +06/02/2018,Actors,@KellyMcCreary,Come on @ABCNetwork!! Give us @michellechel!!!! https://t.co/u3dQ4WjZMU +06/02/2018,Actors,@KellyMcCreary,"RT @samswey: Black organizers successfully restored voting rights to an estimated 2,000-3,000 people in Louisiana today. https://t.co/QhrWv…" +06/02/2018,Actors,@KellyMcCreary,RT @sundanceorg: #SundanceTheatre Lab project SKELETON CREW by @domorisseau kicks off on 6/5 at @GeffenPlayhouse. A stellar cast brings her… +06/01/2018,Actors,@KellyMcCreary,This cast is 🍌🍌🍌. #HarveyStreetKids https://t.co/wX9QX68Zph +06/01/2018,Actors,@KellyMcCreary,"Audrey, Lotta and Dot and their friends are finally@here!! Check out the trailer for #HarveyStreetKids!! https://t.co/SgKYfFRTdi" +06/01/2018,Actors,@KellyMcCreary,FINALLY!!! I’ve been dying to share this project for soooo long! It has been an absolute blast playing with… https://t.co/w9LGmezkTa +06/01/2018,Actors,@KellyMcCreary,Nice to meet you. See you @GeffenPlayhouse for #SkeletonCrewGP. https://t.co/f9dU5kzIWu +06/01/2018,Actors,@KellyMcCreary,"@iamedigathegi I love you, brother. https://t.co/jKlq7VkpSV" +05/31/2018,Actors,@KellyMcCreary,Thread thread thread thread thread https://t.co/kuGuuEMoiL +05/30/2018,Actors,@KellyMcCreary,Hungry for a story about working class people facing the vulnerabilities caused by a changing economy? We’ve got so… https://t.co/lgDSlJuDtH +05/30/2018,Actors,@KellyMcCreary,"RT @netflix: Reminder: @OneDayAtATime is a sitcom about a tight-knit, working class family that tackles extremely topical social issues in…" +05/30/2018,Actors,@KellyMcCreary,RT @laurenduca: .@therealroseanne The drug to blame for your behavior is white privilege. +05/30/2018,Actors,@KellyMcCreary,"RT @bcsproul: In Roseanne’s defense, it’s hard to know the difference between racism that gets you fired versus racism that gets you electe…" +05/29/2018,Actors,@KellyMcCreary,"RT @goodblacknews: Starbucks Is Closed This Afternoon, So Try These Black-Owned Coffee Shops Instead https://t.co/6IGtoAXsId" +05/29/2018,Actors,@KellyMcCreary,"RT @equaljustice: As Starbucks closes for bias training, Black-owned coffee shops open their doors wider https://t.co/tAnwhhhxpP" +05/29/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: ROSEANNE HAS BEEN CANCELLED. + +Why? + +Because the people spoke up. + +Why? + +Because we’ve seen enough to that racist tweet…" +05/29/2018,Actors,@KellyMcCreary,This thread! #abolishICE https://t.co/fvHYN5HkUf +05/29/2018,Actors,@KellyMcCreary,"So great to chat with you, Michael! https://t.co/HiAh12I2mm" +05/27/2018,Actors,@KellyMcCreary,"RT @EWErickson: Pro-lifers, if you’re upset about ripping a child out of his mother’s womb, please be upset about ripping a child out of hi…" +05/26/2018,Actors,@KellyMcCreary,RT @samswey: Genocide. He’s celebrating genocide. https://t.co/3ndZ57XnvN +05/24/2018,Actors,@KellyMcCreary,"RT @VictoriaDahl: *deep breath* I'll just say this. Women are raised from the cradle to be hyperconscious of what we say & wear, how we wal…" +05/24/2018,Actors,@KellyMcCreary,👇🏾👇🏾👇🏾👇🏾 https://t.co/kIu1f9lVUD +05/24/2018,Actors,@KellyMcCreary,"RT @BreeNewsome: This is NOT about the anthem. It's about using the NFL, a sport dominated by Black athletes, as a way to publicly reinforc…" +05/24/2018,Actors,@KellyMcCreary,RT @Kappa_Kappa: NFL is pretty chill when it comes to violence against women and brain damage but i guess free speech is where they draw th… +05/24/2018,Actors,@KellyMcCreary,"RT @rashadrobinson: This is white supremacy, period. A blatant and disgusting attempt to strip Black athletes of their voice and reduce the…" +05/24/2018,Actors,@KellyMcCreary,"RT @caterinatweets: Words are important and powerful. Categorizing people in groups and making them seem less than human, less than individ…" +05/24/2018,Actors,@KellyMcCreary,"RT @michellechel: Today there is hope. Warm, sweet, and blessed hope. https://t.co/YXqMQw1Tqo" +05/23/2018,Actors,@KellyMcCreary,"Dozens of groups, affected residents just launched a new Pennsylvania #Fracking Health Impacts campaign! See the st… https://t.co/92YCOQ1OAM" +05/23/2018,Actors,@KellyMcCreary,Then stop lying. https://t.co/3mqbEM9Wdy +05/23/2018,Actors,@KellyMcCreary,Thread. https://t.co/Qw9jEdTB48 +05/23/2018,Actors,@KellyMcCreary,RT @PPact: JUST IN: @realDonaldTrump just imposed a gag rule to cut funds to any health care provider that refers their patients for aborti… +05/23/2018,Actors,@KellyMcCreary,"Thank you, Nae! 😘 https://t.co/28KX3PbnUO" +05/22/2018,Actors,@KellyMcCreary,"RT @ValerieJarrett: Our government is only as good as we, the people, insist that it be. That begins with voting. Please vote for @stacey…" +05/22/2018,Actors,@KellyMcCreary,This woman right here stays adding gems to the American Theater canon! We are so lucky to witness her carrying the… https://t.co/Ssnol6lAAP +05/20/2018,Actors,@KellyMcCreary,RT @LeftStandingUp: Men are afraid women will laugh at them. Women are afraid men WILL KILL THEM. https://t.co/HRwnFXEXiR +05/18/2018,Actors,@KellyMcCreary,RT @laurenduca: 2018 has been twice as deadly for schoolchildren than members of the military. This is not what a civilized country looks l… +05/18/2018,Actors,@KellyMcCreary,"RT @shondarhimes: ""A generation of young people who have spent their entire childhoods traumatized by gun violence, both in their communiti…" +05/18/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: The shooter in the Santa Fe High School shooting was wearing a shirt with a Nazi symbol on it. The rise of white suprem… +05/18/2018,Actors,@KellyMcCreary,Do you have your tickets yet?? What are you waiting for?? #SkeletonCrewGP https://t.co/wjgSiFqLNk +05/16/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: @AnnieHu16891475 @A_Cheatom @KellyMcCreary @dbwofficial @domorisseau Tickets for Skeleton Crew start at $25 plus fee A… +05/16/2018,Actors,@KellyMcCreary,🙋🏽‍♀️ https://t.co/jR6QTleJng +05/16/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: Our Skeleton Crew cast are deep in rehearsal, gearing up for previews to begin on June 5. Got tickets yet? What are yo…" +05/16/2018,Actors,@KellyMcCreary,This child is me pretty much at least once a day— figuratively if not literally. But mostly literally. https://t.co/2GMAgSZpNb +05/15/2018,Actors,@KellyMcCreary,If you are on twitter right now you will probably want to MAKE THIS CALL TODAY. #netneutrality https://t.co/zWppuwlefV +05/15/2018,Actors,@KellyMcCreary,"RT @RavMABAY: I am a rabbi. + +I love Israel. + +I condemn without reservation the bloodshed in #Gaza. + +Not so hard. + +You can challenge the…" +05/15/2018,Actors,@KellyMcCreary,RT @deray: The Palestinian protestors are being murdered. And the media needs to name it as such. It is simply wrong. +05/14/2018,Actors,@KellyMcCreary,"RT @KamalaHarris: This + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +#NetNeutrality + +ends + +on + +June 11 + +unless + +we + +stop + +it + +retweet + +to…" +05/14/2018,Actors,@KellyMcCreary,"RT @keithboykin: White privilege is invading a country, killing the native population, importing another continent's residents as your slav…" +05/13/2018,Actors,@KellyMcCreary,"I am talking about people who have not been tried or convicted of any crime, but who are held in jail simply becaus… https://t.co/SYNq0PuPxi" +05/13/2018,Actors,@KellyMcCreary,"Higher rates of arrest and detention, and an average of 35% higher bail means too many black mothers are in jail on… https://t.co/ofwLNPKK40" +05/13/2018,Actors,@KellyMcCreary,"RT @TheDweck: Maybe if we post enough GIFs, NBC will bring back Obama" +05/12/2018,Actors,@KellyMcCreary,"RT @sarahdrew: I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had the aweso…" +05/12/2018,Actors,@KellyMcCreary,"RT @shondarhimes: People. This is a good Friday. Why? Because #GreysAnatomy, #HowToGetAwayWithMuder, #Station19, AND #ForThePeople are rene…" +05/11/2018,Actors,@KellyMcCreary,"RT @anildash: How come we have to listen to the voice of the poor working class when they back white supremacists, but not when they pull o…" +05/11/2018,Actors,@KellyMcCreary,Thanks for hanging folks. See ya at Jolex’s wedding! 😎 +05/11/2018,Actors,@KellyMcCreary,“April would want us to pray.” #greysanatomy +05/11/2018,Actors,@KellyMcCreary,It’s coming up in next week’s episode... #GreysAnatomy https://t.co/i4YPsCfw7X +05/11/2018,Actors,@KellyMcCreary,Every bit. #GreysAnatomy https://t.co/Z6Vtiid5tM +05/11/2018,Actors,@KellyMcCreary,RT @EllenPompeo: I'm not going to lie... it's a lot tonight...we are the best heartbreakers in the game but don't hate the player...😂😂😂 htt… +05/11/2018,Actors,@KellyMcCreary,I KNOW RIGHT? https://t.co/nslPGnq4to +05/11/2018,Actors,@KellyMcCreary,"Technically speaking, the OR stuff is tricky for me, but Maggie’s mom’s passing was a doozy. https://t.co/ZJkY86xud5" +05/11/2018,Actors,@KellyMcCreary,RT @shondarhimes: This entire cast. Thank you. #GreysAnatomy #TGIT +05/11/2018,Actors,@KellyMcCreary,RT @sarahdrew: I’m watching west coast!! I’ve got some pics to post on Instagram!!! +05/11/2018,Actors,@KellyMcCreary,The love the fun the funny the inspiration the talent the all of it https://t.co/OOkiyGS4hx +05/11/2018,Actors,@KellyMcCreary,I don’t think anyone likes cheese as much as Maggie. https://t.co/z2kxIoA9pe +05/11/2018,Actors,@KellyMcCreary,"Prolly, if the high leads to a cheese plate. https://t.co/Tjrm0XmApt" +05/11/2018,Actors,@KellyMcCreary,RT @brianschatz: They are ripping you off on prescription medicine. They ripped you off on the tax bill. They are ripping you off with insu… +05/11/2018,Actors,@KellyMcCreary,Yaaaaaay Dr. Herman is back! Thank you Geena Davis for gracing us with your genius once more! #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Arizona offers her resignation and already I’m 😭. #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Baby Leo is so stinkin’ adorable I can’t take it. #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Easier to name the eps when I didn’t cry. #greysanatomy https://t.co/xQORww2EeM +05/11/2018,Actors,@KellyMcCreary,Hey peeps! Sorry to have missed the east coast airing but I’ll be here for the west coast... Who wants to live tweet? #greysanatomy +05/04/2018,Actors,@KellyMcCreary,"@IHeartKMcCreary @timolyyyyn_ @ABC123TLC Oh my gosh, congratulations!!! I’m so proud of you! Keep shining, AJ!" +05/04/2018,Actors,@KellyMcCreary,"RT @baratunde: Bad news: organized racists targeted black girl scientists from DC by trying to rig the online vote. + +Good news: NASA interv…" +05/04/2018,Actors,@KellyMcCreary,Hey hey who’s watching @iJesseWilliams’ directorial debut?? #greysanatomy @GreysABC +05/03/2018,Actors,@KellyMcCreary,She-ro!! https://t.co/44sbhY5mQV +05/02/2018,Actors,@KellyMcCreary,Transforming “trust Black women” into policy and practice. #TeamAbrams https://t.co/pv0QgnE8of +05/01/2018,Actors,@KellyMcCreary,RT @DreamUndeferred: Y’all are killing me with this R. Kelly defense. This is the most non-secret ever. It’s not new! If you grew up in Ch… +06/28/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/8FbolLqfQa +06/28/2018,Actors,@IWashington,Dr. Mary McLeod Bethune was BLACK EXCELLENCE... https://t.co/hyVFlpF0nY +06/28/2018,Actors,@IWashington,I’m disappointed at how unbothered I’m with how filthy many public restaurant restrooms are. When I see shit like t… https://t.co/RKVgPGbonJ +06/28/2018,Actors,@IWashington,G’mornafternoovening twittersphere! #SoftshellCrabsInABun https://t.co/DqHDplONEN +06/27/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/n0Kjt373Rt +06/27/2018,Actors,@IWashington,This Moon tho... https://t.co/hgdQmne6WS +06/27/2018,Actors,@IWashington,TV interview hosts; Willie Love and Sarita Mason are the interviewers. Tokeema Hall and Mariah Franklin are your ca… https://t.co/tqhfGOvBKM +06/26/2018,Actors,@IWashington,"I truly enjoyed closing the BCU conference on Education and Social Justice. “If Not Us, Who? If Not Now, When?” https://t.co/aqo7e39mzr" +06/26/2018,Actors,@IWashington,Dr. Randy Nelson and I at B-CU today to talk about Social Justice. I will see him one more time at 1:30PM in the MM… https://t.co/xJ0fP8rHgI +06/26/2018,Actors,@IWashington,RT @HowardUAlumni: Actor and alumnus Isaiah Washington to serve as closing keynote speaker at Bethune -Cookman University's Education and S… +06/26/2018,Actors,@IWashington,RT @bethunecookman: @IWashington stopped by B-CU today to talk about social justice. Hear him one more time at 1:30PM in the MMB Performing… +06/26/2018,Actors,@IWashington,RT @Boski__: Got the opportunity of a lifetime to interview @IWashington it went great it’s just a Leo connection y’all won’t understand… +06/26/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/ELlOZ0aogp +06/26/2018,Actors,@IWashington,"@MissErika Nope! Boarding door shut, engines started and being pushed out to taxi..." +06/26/2018,Actors,@IWashington,"Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justi… https://t.co/iuZxN9tSb2" +06/26/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/VpoZdqZXn2 +06/22/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/ClW8Kqv3V3 +06/22/2018,Actors,@IWashington,"RT @IWashington: Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justice: Mul…" +06/22/2018,Actors,@IWashington,Truth is Stranger Than Fiction... https://t.co/sNT2tkJ6GZ +06/21/2018,Actors,@IWashington,"Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justi… https://t.co/CnLMiqvBN1" +06/21/2018,Actors,@IWashington,@anxne_ Yes. +06/21/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/nMnVyE3Gvj +06/21/2018,Actors,@IWashington,#MySleepTweet I’m just sayin’...THIS: https://t.co/0CrECfuYgv +06/21/2018,Actors,@IWashington,#MySleepTweet cc: @ShaunKing THIS: https://t.co/nFDO8jR741 I know many want to act like this period in American His… https://t.co/83JsvVKDaS +06/17/2018,Actors,@IWashington,"#MySleepTweet DDT was a welcomed treat in Houston, Texas in the 1970’s, because it meant relief from mosquitoes. Ne… https://t.co/MiMGqliZOP" +06/17/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/ES2DvLdE8G +06/16/2018,Actors,@IWashington,You build it and they will come. #Truthdom +06/16/2018,Actors,@IWashington,"Won’t God Do It? I now have my own Televsion Business Affairs, my own Casting Director and now my own funding sourc… https://t.co/JmHGezQGVT" +06/16/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/miLqkFK0T9 +06/16/2018,Actors,@IWashington,G’nite twittersphere...#LazarusRisingMovie https://t.co/wwkfSW3YTY +06/16/2018,Actors,@IWashington,Just had a GREAT production meeting for a new Pilot script I’m starring in and Executive Producing. Y’all. Ain’t. R… https://t.co/7ipCaPAxMr +06/16/2018,Actors,@IWashington,I haven’t walked these Beverly Hills streets in year’s... https://t.co/zNb6QguGDN +06/15/2018,Actors,@IWashington,I woke up this morning to birds singing and it hit me really hard that I have another day and another chance to be… https://t.co/Nd1clswlUj +06/15/2018,Actors,@IWashington,"I’m so proud to be one of the Speakers at The 4th Annual Social Justice Conference @bethunecookman June 26, 2018. G… https://t.co/nMlzihhjd1" +06/15/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/5d8DUDFwm5 +06/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/Bqwwq7G19x +06/14/2018,Actors,@IWashington,#DNAHasMemory https://t.co/9T2ek4X6F1 +06/14/2018,Actors,@IWashington,@DreamLoveCrys Set It Off is musical like love jones?! +06/14/2018,Actors,@IWashington,RT @IWashington: I’m humbled and honored.@chadwickboseman Let’s continue the #HUYouKnow Legacy! 🙅🏾‍♂️ THIS: https://t.co/3wEF8OKTnq +06/14/2018,Actors,@IWashington,"You can hate the man all you want, but I’m a History Buff and this right here is historic... https://t.co/nBUaCrOHos" +06/14/2018,Actors,@IWashington,"@DreamLoveCrys You mean like The Color Purple, Into The Woods and The Lion King?" +06/14/2018,Actors,@IWashington,Damn...I’ve lived long enough to see movies coming out this summer that are remakes of the originals that I saw whe… https://t.co/qYxs1A9FjL +06/14/2018,Actors,@IWashington,Uh-Oh...I just heard from the PR firm promoting this gem of a movie 🎥 directed by .@RZA Y’all. Are. Not. Ready. https://t.co/ab62e4dbcs +06/14/2018,Actors,@IWashington,"Yes, I’m also an Author... https://t.co/urkT9LQDOz" +06/14/2018,Actors,@IWashington,🙏🏾👇🏾🙏🏾 https://t.co/LQs5mFv5ya +06/14/2018,Actors,@IWashington,So we jes gonna ak lak correck spellin’ an gramma don’t matta no mo’ on sochel metia!!!?!!! 🤷🏾‍♂️ +06/14/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/yPJxvatkv3 +06/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/nhVxm2MnPU +06/14/2018,Actors,@IWashington,"I’m not used to chasing anything, so I can’t start now... https://t.co/mqtq9v8SIa" +06/14/2018,Actors,@IWashington,"The older I get, the more I understand my Grandfather, Mr. Willie H. Holmes of Houston, Texas. https://t.co/jjVPogBOAC" +06/14/2018,Actors,@IWashington,Can we talk about this for a second? No? https://t.co/iM4GfNrW8V +06/13/2018,Actors,@IWashington,"Time to be somewhere where I don’t speak the language and when I do speak, its having conversations more interestin… https://t.co/QyE7n7bQPP" +06/13/2018,Actors,@IWashington,"Everybody and Everything has Up’s and Down’s. That’s LIFE, but when you get that second chance, NEVER forget those… https://t.co/scrJENMYYp" +06/13/2018,Actors,@IWashington,These streets stay talking to me... https://t.co/RUlkhEcRNs +06/13/2018,Actors,@IWashington,Shit! I’m mature enough now to finally realize that we don’t wear the mask that grins and lies. It’s our grins and… https://t.co/UCsbT6jAMO +06/13/2018,Actors,@IWashington,I’m humbled and honored.@chadwickboseman Let’s continue the #HUYouKnow Legacy! 🙅🏾‍♂️ THIS: https://t.co/3wEF8OKTnq +06/13/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/UBXT5hdskY +06/12/2018,Actors,@IWashington,#MySleepTweet Gone In 43 Seconds...@MrRickyWhittle https://t.co/ReQ7jkztw3 +06/12/2018,Actors,@IWashington,#MySleepTweet Gone In 43 Seconds...@MrRickyWhittle https://t.co/Vrmnokwn1b +06/09/2018,Actors,@IWashington,#MySleepTweet I’m unbelievably shocked and saddened by the loss of Anthony Bourdain. My wife and I have been inspir… https://t.co/rcT4zYB8eB +06/08/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/1DOL19itMD +06/07/2018,Actors,@IWashington,"I’m feel most empowered with my Black Orchid - The Black Orchid is the most highly coveted of ornamental plants, th… https://t.co/DBOsUVpwv5" +06/07/2018,Actors,@IWashington,"I’m not at peace without my Phalaenopsis White Orchid - Symbolism White: The White Orchid signifies innocence, eleg… https://t.co/FvLJEHZvdu" +06/07/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/KczPinpd0L +06/07/2018,Actors,@IWashington,RT @IWashington: G’nite twittersphere...#TheYellowBirds https://t.co/YEHlT7lwZs +06/07/2018,Actors,@IWashington,Alexandre Moors and Dylan Park. Two Writer/Directors that I fuck with. #BlueCaprice #LazarusRisingMovie .@dyllyp https://t.co/sDalVudzvd +06/07/2018,Actors,@IWashington,A Blue Caprice Reunion at the Yellow Birds Screening in Los Angeles at the London Hotel 6/6/2018 #TheYellowBirds… https://t.co/B3CiG3TViR +06/07/2018,Actors,@IWashington,G’nite twittersphere...#TheYellowBirds https://t.co/YEHlT7lwZs +06/07/2018,Actors,@IWashington,RT @ShaunKing: This is 50 seconds of brilliance. Listen to this. We’ve made progress when we get white leaders like this openly calling out… +06/06/2018,Actors,@IWashington,"RT @IWashington: I can’t wait to see Alexandre Moors, my friend and director of .@BlueCapriceFilm new movie today! https://t.co/Jcd48fpQwM" +06/06/2018,Actors,@IWashington,"RT @IWashington: Men Of IMPACT 2018 with our Fearless Leader Tunisha Brown, Editor-in-Chief of IMPACT Magazine.@impact_magazine The “first”…" +06/06/2018,Actors,@IWashington,"RT @IWashington: I’m so proud to have met Demetria L. Graves, Esq. and a few of these powerful women with .@elitefirmla https://t.co/WvlxF7…" +06/06/2018,Actors,@IWashington,"For some reason, I keep thinking about my Momma asking me to give her some “sugar”. Why you messing with me today F… https://t.co/BxD6bVgOan" +06/06/2018,Actors,@IWashington,"15% of all people that come in contact with you aren’t going to ‘like’ you no matter what you do, so focus more on… https://t.co/BKeqZPVG20" +06/06/2018,Actors,@IWashington,"I’m so proud to have met Demetria L. Graves, Esq. and a few of these powerful women with .@elitefirmla https://t.co/WvlxF7PSwO" +06/06/2018,Actors,@IWashington,We were all born with ‘special powers’. You just have to realize what they are and use them for good. #Truthdom +06/06/2018,Actors,@IWashington,If .@Twitter ended tomorrow. Could you live without it? Just asking for a friend. 🤔 +06/06/2018,Actors,@IWashington,"The American legal system has a history of accusing, indicting and convicting innocent citizens in our courts all t… https://t.co/wfyS6ottKA" +06/06/2018,Actors,@IWashington,"Americans talk a lot about violence and killings, but I don’t hear about how many careers and lives have been destr… https://t.co/JTwfVjsaEf" +06/06/2018,Actors,@IWashington,"I can’t wait to see Alexandre Moors, my friend and director of .@BlueCapriceFilm new movie today! https://t.co/Jcd48fpQwM" +06/06/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/xRC8P1ucMy +06/06/2018,Actors,@IWashington,G’nite twittersphere...THIS: https://t.co/pXCXp6SK3F +06/06/2018,Actors,@IWashington,Who did they call when they needed to get it done? #BuffaloSoldiers .@Skillsetmag https://t.co/RUHdxYX2r7 +06/06/2018,Actors,@IWashington,"@dyllyp @Skillsetmag The results of sweat, gunpowder, dust and tears covering the lens. You know about it." +06/06/2018,Actors,@IWashington,My Shooting Team Is Strong...No More Excuses. No More Apologies. .@Skillsetmag 🤙🏾 🇺🇸 https://t.co/unuHg59fFR +06/05/2018,Actors,@IWashington,Does her Momma know? https://t.co/5rsUBRbG1n +06/05/2018,Actors,@IWashington,I wonder what George W. Bush is doing right now...🤔 +06/05/2018,Actors,@IWashington,Platform Envy is real...#Truthdom +06/05/2018,Actors,@IWashington,"If you think ish in America is crazy today, try remembering Jesse James, Billy the Kid, Butch Cassidy and the Sunda… https://t.co/eHUaOd57BV" +06/05/2018,Actors,@IWashington,"@DvineExpression Neely Fuller, Jr. would be proud. Stay the course, create and build." +06/05/2018,Actors,@IWashington,When in doubt. Eat some cheesecake... https://t.co/Jx2E24SHQ6 +06/05/2018,Actors,@IWashington,The 46th President and Vice President of the United States of America? 🇺🇸 https://t.co/Fx2HzHButB +06/05/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/FMzf4wUCwM +06/05/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/y8H3ddy0FP +06/05/2018,Actors,@IWashington,People ask me why don’t I “march” against injustice. Really? My entire body of work has “marched” against injustice. Wake Up! #Truthdom +06/05/2018,Actors,@IWashington,"When you decide to monetize your passion, then it will never be work. #Truthdom" +06/05/2018,Actors,@IWashington,I’m not afraid. Never have been. Never will be. #Truthdom https://t.co/X2sWnUliHT +06/05/2018,Actors,@IWashington,@Lexialex Any song from this album will work... https://t.co/T7wl52tSb5 +06/05/2018,Actors,@IWashington,I’ve been in Los Angeles for 22 year’s now and I have never seen The Watts Towers. I’m gonna change that this week.… https://t.co/DVmnuttKWq +06/05/2018,Actors,@IWashington,"Men Of IMPACT 2018 with our Fearless Leader Tunisha Brown, Editor-in-Chief of IMPACT Magazine.@impact_magazine The… https://t.co/3LnTlPvysi" +06/05/2018,Actors,@IWashington,Big Brandon! New to .@Twitter with only 3 Tweets and 2 of them are to me. I’m honored sir! 🤙🏾 https://t.co/LA0EaBad4A +06/05/2018,Actors,@IWashington,I’m so there for this one... https://t.co/RKKsrC9n1p +06/05/2018,Actors,@IWashington,Sounds like a plan as long as you are there on the line with me. https://t.co/mBgLjxEbmg +06/04/2018,Actors,@IWashington,Missing my family at Thunder Ranch...#LazarusRisingMovie https://t.co/3bCZvFS1mp +06/04/2018,Actors,@IWashington,I’m not interested in taking someone else’s throne. I’m too busy building my own...#Truthdom https://t.co/tTF3ZOb7Y3 +06/04/2018,Actors,@IWashington,"I’m blown away at how much #The100Fans on Instagram, on airlines, in the airport, in Whole Foods and on the streets… https://t.co/3WSEFmmbFn" +06/04/2018,Actors,@IWashington,Men Of IMPACT @impact_magazine THIS: https://t.co/mRAKFFa398 #IMPACTMagazine #MenOfIMPACT .@steviebaggsjr https://t.co/94chZqdrrd +06/04/2018,Actors,@IWashington,You can’t burn a bridge that wasn’t built with You in mind. #Truthdom +06/04/2018,Actors,@IWashington,Loving my bracelets from @impact_magazine designed by @omoyeni_jewelry Fit for the Modern King 👑 #IMPACTMagazine… https://t.co/dQESYAwVWn +06/04/2018,Actors,@IWashington,Goodbye Atlanta. Hello Los Angeles! +06/04/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/7XYufRxlke +06/04/2018,Actors,@IWashington,G’nite twittersphere...@impactmagazine https://t.co/HyOnhfCHIF +06/04/2018,Actors,@IWashington,"I’ve been in many rooms where awards & honors have been given, but I have never been in a room where u are given ‘g… https://t.co/JIRTxR7CR1" +06/03/2018,Actors,@IWashington,The EIGHTY5 is a really good cigar...@ochocinco Thank You @impact_magazine for the cigar gift and introduction.… https://t.co/tmiEFFvtCV +06/03/2018,Actors,@IWashington,Tonight is the Night....@impact_magazine 🙌🏾🙌🏾🙌🏾 https://t.co/eg4J3qGbw9 +06/03/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/4CohjuUma7 +06/03/2018,Actors,@IWashington,G’nite twittersphere...@impact_magazine #MenofIMPACT https://t.co/Rffv6ayZX5 +06/02/2018,Actors,@IWashington,Impressive Pick-Up from the airport in Atlanta today. Thank You 👌🏾@impact_magazine and @czartheearner… https://t.co/bwy2pxpLVc +06/02/2018,Actors,@IWashington,RT @IWashington: Goodbye Los Angeles. Hello Atlanta! https://t.co/nrR5nIOQ1A +06/02/2018,Actors,@IWashington,😳 https://t.co/5xqXIclYiL +06/02/2018,Actors,@IWashington,And now...it’s their turn! Thank You Black Panther Movie 🎥 #BuffaloSoldiers #AmericanHistory 🇺🇸 https://t.co/B0v1D3iiwZ +06/02/2018,Actors,@IWashington,You can’t rationalize crazy. #Truthdom +06/02/2018,Actors,@IWashington,"The day I can fit 98K people in my house, is the day I’ll be disappointed with how many Followers I have here on Tw… https://t.co/4cjW6Vo7rk" +06/02/2018,Actors,@IWashington,I need to get my eyeglasses checked. Thought I saw 988K Followers for a minute...😏 +06/02/2018,Actors,@IWashington,Goodbye Los Angeles. Hello Atlanta! https://t.co/nrR5nIOQ1A +06/02/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/EaKGq3WTIl +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/FWUnqyrg9L +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/CpDDNm2qgB +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/XIpjh9iFKF +05/26/2018,Actors,@IWashington,#MySleepTweet I don’t believe in serendipity anymore. LAZARUS RISING is our DESTINY. 🤙🏾 🇺🇸 https://t.co/jqiDxFJ5f4 +05/26/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/Gc0wmtfShS +05/26/2018,Actors,@IWashington,Trying to find that Tweet spot... +05/25/2018,Actors,@IWashington,Steve Kerr just nailed a political 3 Pointer... https://t.co/3VtjLdB41I +05/25/2018,Actors,@IWashington,Seasons 1 thru 5...#The100Season5 https://t.co/OzGw8v2kkg +05/25/2018,Actors,@IWashington,You can WATCH IT on .@TIDAL #TheyDieByDawn https://t.co/W6vMuoawxG +05/25/2018,Actors,@IWashington,My Son brought me a gift from Berlin...#Breznak https://t.co/yHyGe5b2It +05/25/2018,Actors,@IWashington,Back in the gym... https://t.co/yufaLQsKNx +05/25/2018,Actors,@IWashington,She knows she wants to ride that .@BirdRide https://t.co/WFiPhoNvGE +05/25/2018,Actors,@IWashington,Waiting on tomorrow’s Game 6 like... https://t.co/5RVvAvaPPD +05/25/2018,Actors,@IWashington,#Justice... https://t.co/DAzO8aZpNr +05/25/2018,Actors,@IWashington,#Mood https://t.co/ErC2ce2T6r +05/25/2018,Actors,@IWashington,Me when I realize it’s a 3 Day Weekend.. https://t.co/E3cehc48iD +05/25/2018,Actors,@IWashington,I can’t wait... https://t.co/RL8b0su0cu +05/25/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/O87tYuoore +05/25/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/8r1bukX1bT +05/25/2018,Actors,@IWashington,My oldest son just returned home safely today from a 5 week tour of Europe. That means...he listened to his Mother… https://t.co/C3jQqrXPhJ +05/25/2018,Actors,@IWashington,"Twitter sucks, but I love it! #Truthdom" +05/25/2018,Actors,@IWashington,🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾 https://t.co/3hpc48n0bA +05/25/2018,Actors,@IWashington,"I know I not supposed to have ‘free speech’ anymore, but I’m going to act like I do until they shut me up for good.… https://t.co/HNjpevZrxU" +05/25/2018,Actors,@IWashington,"There are Producers saying, “Isaiah is ‘a pain in the ass to work with’. We can’t hire him.” Hmmm...why don’t they… https://t.co/1SYkyVHa5A" +05/25/2018,Actors,@IWashington,They got Morgan Freeman and he’s 81...who’s next? https://t.co/iMSAjGts2E +05/25/2018,Actors,@IWashington,Nah. You don’t get to holla at me on the sneak tip here on Twitter. It’s been waaaaaaayyyy too long. Hit me in my D… https://t.co/VjnM8kObTv +05/25/2018,Actors,@IWashington,"If I’m quiet, it means I working. Never think otherwise...#LazarusRisingMovie https://t.co/RAwm5GKeeH" +05/25/2018,Actors,@IWashington,You mad???? https://t.co/WV9R3nylq5 +05/25/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/BRwOiR43wh +05/24/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/U9fZLMsOVT +05/23/2018,Actors,@IWashington,"I’m the guy that will run towards the fire, when other’s choose to run away. I’m just built like that...#Truthdom https://t.co/Pctf9N1Cez" +05/23/2018,Actors,@IWashington,#The100Fandom .@cwthe100 is so remarkably talented and passionate. 👊🏾💯 Just Look at THIS: https://t.co/UXv0HY99It +05/23/2018,Actors,@IWashington,I have found that Discussing Commonality over a good meal is much more Productive than Fighting over Ideologies. I’… https://t.co/j8X73n6sB3 +05/23/2018,Actors,@IWashington,"“Hot off his 5 Day Training at the world renowned Thunder Ranch, Isaiah Washington is convinced that his new compan… https://t.co/ypMNs6o4DZ" +05/23/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/gAyOLiljAo +05/23/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/1nUAClIWxl +05/23/2018,Actors,@IWashington,"The victimized victimize others, because they were victimized. Don’t let their victimization victimize you. It’s not your fault. #Truthdom" +05/22/2018,Actors,@IWashington,#TBT The 100 Best Movies On Netflix .@netflix .@BlueCapriceFilm THIS: https://t.co/xPiiDzXi1m https://t.co/WdBLB3siVc +05/22/2018,Actors,@IWashington,"Meet “Lazarus Richard Bonner”. Currently a High School History Teacher, a Persian Gulf War Veteran and a former Cap… https://t.co/q6scBcGyzC" +05/22/2018,Actors,@IWashington,A Man Can Dream Can’t He? #AdamBrashear .@KevinGrevioux https://t.co/zYdRB2PSmv +05/22/2018,Actors,@IWashington,I’m Ten Toes Down and available to be the Blue Marvel... https://t.co/PMNHCB42YE +05/22/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/JZizrm6cZ8 +05/22/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/DhUSZB23mJ +05/22/2018,Actors,@IWashington,I’ve talked a lot with cops and criminals and they both are just trying to “do their jobs” to feed their families.… https://t.co/X8ttVX0zGd +05/22/2018,Actors,@IWashington,"I trained with these Warriors, Fathers, Husbands, Sons, Brothers, Cousins and each one of them ripped off their pat… https://t.co/HWAgUmUgkn" +05/21/2018,Actors,@IWashington,RT @IWashington: Goodbye Reno. Hello Los Angeles! https://t.co/rhgMiKCvuc +05/21/2018,Actors,@IWashington,Thank You for the T-Shirt .@Skillsetmag 🤙🏾 https://t.co/VRBwhFS1hw +05/21/2018,Actors,@IWashington,Goodbye Reno. Hello Los Angeles! https://t.co/rhgMiKCvuc +05/21/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/Q2ku6PitTB +05/18/2018,Actors,@IWashington,#MySleepTweet That Work...@thunderranchinc https://t.co/zgz4R7em2A +05/14/2018,Actors,@IWashington,#MySleepTweet Look at God... https://t.co/rIC4Y59YOL +05/14/2018,Actors,@IWashington,#MySleepTweet I am so ready for this...#EDNixon ✊🏾🚌 https://t.co/CCACKOQGzA +05/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/aDriQhZvSF +05/14/2018,Actors,@IWashington,RT @IWashington: I love this movie and this hotel...#TheMisfits https://t.co/yswIjJRdgr +05/14/2018,Actors,@IWashington,RT @IWashington: I’m now sitting at the Longest Bar in Nevada and...#RenoNevada 😳 https://t.co/QXqMrvd8qd +05/14/2018,Actors,@IWashington,Not bad... https://t.co/paO2I6sebE +05/14/2018,Actors,@IWashington,I’m now sitting at the Longest Bar in Nevada and...#RenoNevada 😳 https://t.co/QXqMrvd8qd +05/14/2018,Actors,@IWashington,I love this movie and this hotel...#TheMisfits https://t.co/yswIjJRdgr +05/14/2018,Actors,@IWashington,RT @IWashington: Goodbye Los Angeles. Hello Reno! +05/13/2018,Actors,@IWashington,"Someone said maybe I should retire from show business, but I never was in show business. Here is the thing, I was n… https://t.co/XRQbxgoW5G" +05/13/2018,Actors,@IWashington,"Damn, what was I thinking? I’m on my Twitter page and not my Facebook page. Sorry, I got confused tweeting all this… https://t.co/aV1JRMVa3M" +05/13/2018,Actors,@IWashington,"I saw it 30 year’s ago, which is exactly why I gave the world “Kyle” in Spike Lee’s GET ON THE BUS. https://t.co/NfI4tfK82k" +05/13/2018,Actors,@IWashington,"I’m sorry, but I just had to...😏 https://t.co/XQ7Fnt2Oua" +05/13/2018,Actors,@IWashington,"Being vigorously offered to portray a number of gay African American male roles that appear to put up tough, often… https://t.co/HsKwElDCFz" +05/13/2018,Actors,@IWashington,"When a writer compliments you for doing unprecedented, fearless and groundbreaking work 22 year’s ago, but is too l… https://t.co/MCEoChxXo4" +05/13/2018,Actors,@IWashington,Always know where the exits are. #Truthdom +05/13/2018,Actors,@IWashington,"You’re not wrong for asking me, but you can’t make me wrong for saying no. That’s weak folk ish. #Truthdom" +05/13/2018,Actors,@IWashington,Goodbye Los Angeles. Hello Reno! +05/13/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/5noljjDEkv +05/13/2018,Actors,@IWashington,#MySleepTweet Me and My Bird Flyin’ thru Venice on Abbot Kinney Blvd. 😆 #Venice #Bird #Unbothered… https://t.co/m6hE6jG9bq +05/11/2018,Actors,@IWashington,#MySleepTweet #TBT I was made a Chief in 2006 and given the name Chief Gondobay Manga II and I take it very serious… https://t.co/js4OYTlugk +05/11/2018,Actors,@IWashington,#MySleepTweet I Am T’Chaka!!! I’ve been on that Black Panther ish for a long time. Actually since 1982...… https://t.co/794iGHJorD +05/08/2018,Actors,@IWashington,#MySleepTweet “How did we go from whips and chains to whips and chains?” .@CeeLoGreen 🔥🔥🔥🔥 https://t.co/2PkJk0BQEn +05/08/2018,Actors,@IWashington,#MySleepTweet I’m getting real tired of paying all these taxes only for people that look like me to be miseducated… https://t.co/CnQvGfdp5z +06/30/2018,Actors,@DohertyShannen,@KDOCTV did you really air a commercial with one of your own riding a dolphin??? Shame on you. +06/26/2018,Actors,@DohertyShannen,"Ridiculous that I’m having to post this but I refuse to let companies like American Media Inc, make even 1 dollar o… https://t.co/dL8m87Flt0" +06/26/2018,Actors,@DohertyShannen,"This guy needs a rescue ASAP!!! Please see below. #Repost urgentdogsofmiami with @repostapp +・・・ +LAST CALL🚨DIES AT 1… https://t.co/WNP7GWox1K" +06/24/2018,Actors,@DohertyShannen,About last night... #lawrencepiro Santa Monica https://t.co/7WNUBw2l4h +06/24/2018,Actors,@DohertyShannen,I really like learning new things.... happy Sunday https://t.co/dmxH6jsXxi +06/23/2018,Actors,@DohertyShannen,RT @SEIclimate: Their stomachs are so full of plastic that there is no room for food. Watch the documentary. https://t.co/PVUHn9P3PH @BBCBr… +06/23/2018,Actors,@DohertyShannen,"#Repost urgentdogsofmiami with @repostapp +・・・ +PLS WATCH THIS🙏🏻. For 3 months, we’ve watched people pass us by day a… https://t.co/m28bW07NKf" +06/22/2018,Actors,@DohertyShannen,See you in Paris!! https://t.co/dpRJLbEBA6 +06/22/2018,Actors,@DohertyShannen,"RT @AbraKazamShow: Shannen Doherty @CharmedDaily, Ricky Whittle et Orlando Jones #americangods seront les vendredi 26 et samedi 27 octobre…" +06/22/2018,Actors,@DohertyShannen,no words.... https://t.co/yb6049Erwv +06/22/2018,Actors,@DohertyShannen,Ready for takeoff missbowiedoherty 📸 alexi2842 https://t.co/Bhk6v2Pb8L +06/18/2018,Actors,@DohertyShannen,And..... happy Monday https://t.co/aFtNgVDZa2 +06/18/2018,Actors,@DohertyShannen,The dent in my heart. https://t.co/pvXdLl28kW +06/17/2018,Actors,@DohertyShannen,I’m at the 4 week mark our from surgery.… https://t.co/hvk5VK9KMq +06/17/2018,Actors,@DohertyShannen,https://t.co/7nZqj174sF +06/13/2018,Actors,@DohertyShannen,Let’s sign petition and make LA fur free!!… https://t.co/A1vQymYVle +06/13/2018,Actors,@DohertyShannen,So cute. https://t.co/P8p9FlQBPy +06/09/2018,Actors,@DohertyShannen,A rare night out for me right now but when my… https://t.co/hlxNtk2UxJ +06/07/2018,Actors,@DohertyShannen,Just look at these 2 sweet girls. Need living… https://t.co/OtUzrB83Pw +06/04/2018,Actors,@DohertyShannen,Look at this gorgeous boy!! https://t.co/LKVIEuXfsb +06/04/2018,Actors,@DohertyShannen,https://t.co/LhbDqpkDB1 +06/02/2018,Actors,@DohertyShannen,Reconstruction is no joke. Not going to lie...… https://t.co/L6Mtx0E06B +06/02/2018,Actors,@DohertyShannen,Sweet baby Duke needs help to get surgery.… https://t.co/oGWOQuQfj8 +06/01/2018,Actors,@DohertyShannen,RT @WorldAnimalNews: Sign Petition Demanding That Those Responsible For Starving Hundreds Of Horses On A South African Military Base Be Hel… +05/31/2018,Actors,@DohertyShannen,"If you’re able, please join this event. #Repost… https://t.co/3sTWsyMCdS" +05/30/2018,Actors,@DohertyShannen,RT @nywolforg: Man who intentionally killed a 10-month-old endangered Mexican gray wolf on his grazing allotment in the Gila Nat'l Forest h… +05/28/2018,Actors,@DohertyShannen,"RT @UrgentPart2: The dogs on the Super Urgent page are either high risk, injured or have previously appeared on the To Be Destroyed list an…" +05/28/2018,Actors,@DohertyShannen,Thank you. https://t.co/7XYTo2idEX +05/26/2018,Actors,@DohertyShannen,"Me, trying to figure out how I feel about… https://t.co/N3xFjta91P" +05/25/2018,Actors,@DohertyShannen,This guy could use a hero real quick. https://t.co/giAgvlNrQ7 +05/25/2018,Actors,@DohertyShannen,"RT @dodo: This guy goes undercover as a dog meat buyer to rescue as many dogs as he can — and this brave, resilient dog is proving happines…" +05/25/2018,Actors,@DohertyShannen,RT @nywolforg: The federal govt is moving to allow trophy hunters to kill wolves + pups during denning season within some national wildlife… +05/25/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Good news/ Coyote with tube has been caught and in rehab. Sad cuz she’s a mom. She also had a snare on her neck under th… +05/25/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: BREAKING NEWS + +In a shocking and secretive move, Zambian authorities have overturned their 2016 decision to suspend th…" +05/23/2018,Actors,@DohertyShannen,@chrissyteigen @realDonaldTrump 😂😂😂❤️❤️ +05/23/2018,Actors,@DohertyShannen,Last call URGENT. 1 hour left. Please see below… https://t.co/3xwGTrSqzO +05/23/2018,Actors,@DohertyShannen,RT @Protect_Wldlife: Breaking News; Introduction of ivory bill boosts fight against #Elephant poaching. The #IvoryBill introduced to Parlia… +05/22/2018,Actors,@DohertyShannen,"RT @WildlifeVt: We did it! The ban on coyote killing contests (H.636) in Vermont is a done deal! It was a long, hard, fight but we never st…" +05/22/2018,Actors,@DohertyShannen,"RT @UrgentPart2: TO BE DESTROYED 05/23/18 - Tonight's list has been posted. + +https://t.co/6HYiqjrRYS https://t.co/NYcgltAGFn" +05/22/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: ""Sport is fair. Sport is consensual. If Trophy Hunting was a sport the animal would know it was involved. It would als…" +05/22/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: The paradigm shift in understanding predators are essential & not a target is happening. 🐺⭐️🐺 +Read all about it. Vermont…" +05/21/2018,Actors,@DohertyShannen,@blagurtle This.... this is perspective. I’m sorry the world we have created is one of fear to just go get an education. +05/21/2018,Actors,@DohertyShannen,Perspective.... so important. +05/21/2018,Actors,@DohertyShannen,Perspective time.... 22 school shootings this year alone. +05/18/2018,Actors,@DohertyShannen,RT @davidsting414: RT heartbroken students were in the carriage when the tortured horse was collapsed & the students never helped the poor… +05/18/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: #ThoughtForTheDay for Trophy Hunters!! + +#BanTrophyHunting NOW!! https://t.co/3jiHOyNydb" +05/18/2018,Actors,@DohertyShannen,RT @Defenders: Today is #EndangeredSpeciesDay! We have all the tools to bring these species back before they get pushed over the edge. We j… +05/17/2018,Actors,@DohertyShannen,My view last Friday May 11. As I lay there… https://t.co/zIeY8dcZ9c +05/17/2018,Actors,@DohertyShannen,LAST CALL. Please read below to save her life.… https://t.co/7nFIOJsF43 +05/15/2018,Actors,@DohertyShannen,"#Repost @cmittermeier with @repostapp +・・・ +A… https://t.co/eaS79HrTaJ" +05/14/2018,Actors,@DohertyShannen,https://t.co/DZR2eWso2p +05/14/2018,Actors,@DohertyShannen,Happy Mother’s Day mom. I only bring you to the best… https://t.co/ZBOgK0ZKb5 +05/08/2018,Actors,@DohertyShannen,This girl.... missbowiedoherty enjoying a lazy Tuesday. #dogslife @… https://t.co/saGsgrrQem +05/08/2018,Actors,@DohertyShannen,RT @nywolforg: Wolves Are Losing Ground to Industrial Logging in Southeast Alaska https://t.co/N13TMDNHyj via @earthislandjrnl +05/08/2018,Actors,@DohertyShannen,Join me and the @ASPCA and help STOP the King Amendment! If… https://t.co/TYDXBd0KLU +05/07/2018,Actors,@DohertyShannen,Let’s get Charlie adopted before he’s put down tomorrow!!!! Please!! #Repost… https://t.co/Z6ipShyj1i +05/07/2018,Actors,@DohertyShannen,Dinner with Dr Jay Orringer and his beautiful wife Jolynne. This man is… https://t.co/emt3QBKC44 +05/06/2018,Actors,@DohertyShannen,RT @oceana: Tell your senator to support ending the use of drift gillnets in waters off California and protect at-risk species from being k… +05/06/2018,Actors,@DohertyShannen,RT @dodo: This baby elephant needed some help getting out of a river — and the sweetest thing happened 🐘💕 https://t.co/UGNJz0vHki +05/06/2018,Actors,@DohertyShannen,Day 2 of morning hike with chriscortazzo I forgot how beautiful it is to… https://t.co/tbYCzcrvWw +05/05/2018,Actors,@DohertyShannen,"Check this out. #Repost @rhinosaverz with @repostapp +・・・ +Go to… https://t.co/TtOld6I2Cu" +05/05/2018,Actors,@DohertyShannen,The road ahead. https://t.co/DFqImwQMJ1 +05/04/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: Not content with killing one Lion, this BASTARD found the need to slaughter THREE of them 🤬🤬! + +RT if you want a GLOBAL…" +05/03/2018,Actors,@DohertyShannen,"RT @ASPCA: What an amazing quote! 🐴💕 ""The adoption of one horse won't change the world but surely, it will change the world for that one ho…" +05/03/2018,Actors,@DohertyShannen,@JayOrringerMD Can I give you 10.0 star review? +05/02/2018,Actors,@DohertyShannen,"@JennyOrganic @rojoha1991 @people As a “Christian” who wants to spread light, you sure are negative and spreading l… https://t.co/FN2SSH5cYX" +05/02/2018,Actors,@DohertyShannen,My doctored had me bank some blood for my upcoming surgery. Mars P was… https://t.co/A9Sms5oM2I +05/01/2018,Actors,@DohertyShannen,It’s about time daddy paramountnetwork heathers color me impressed for your… https://t.co/MHWKazMd6u +05/01/2018,Actors,@DohertyShannen,Texas please don’t let this cute baby die. #Repost @MODrescue with… https://t.co/xwa1nIjOB7 +04/25/2018,Actors,@DohertyShannen,https://t.co/YCCnzEfvwo +04/25/2018,Actors,@DohertyShannen,Check out this cute girl. https://t.co/8KWEoiIDQ0 +04/24/2018,Actors,@DohertyShannen,"It’s always awesome seeing @anhcotranhair for a few reasons... +1. He always renews my faith in… https://t.co/a9h5dHYH63" +04/23/2018,Actors,@DohertyShannen,I went yesterday and saw this movie. Thank you @amyschumer and everyone involved for making me… https://t.co/2mzNQc88Ar +04/21/2018,Actors,@DohertyShannen,This. https://t.co/1UxFUR2fPs +04/18/2018,Actors,@DohertyShannen,I am so proud of our foundation @AHWFoundation and consultingwildhorse for getting this done.… https://t.co/6OBJ6MOgmm +04/14/2018,Actors,@DohertyShannen,"@sarahmgellar happy birthday. We have been thru some monumental moments together... weddings,… https://t.co/v8jC2PJeCj" +04/13/2018,Actors,@DohertyShannen,"If this isn’t a kick ass group of women, I don’t know what is. Love my girls @sarahmgellar… https://t.co/QLiY6heUsE" +04/13/2018,Actors,@DohertyShannen,Birthday night. Such an amazing group of people I love so much https://t.co/ZqMg8ciZbc +04/12/2018,Actors,@DohertyShannen,Ran down to my local salon to get hair done for dinner and my girl Amanda turned it out!!!… https://t.co/clPU1DuXr6 +04/12/2018,Actors,@DohertyShannen,@peta Thank you 💕🐾🐾 +04/12/2018,Actors,@DohertyShannen,@amya1996 💕💕 +04/12/2018,Actors,@DohertyShannen,@TODAYshow 😘😘😘😘 +04/12/2018,Actors,@DohertyShannen,Spa time done then got treated to lunch!!! Thanks mom. Love you. themamarosa #birthdaygirl https://t.co/Ltu5nDznNZ +04/09/2018,Actors,@DohertyShannen,Apparently it was a tiring morning for them both.... https://t.co/0K4CMHEhRM +04/09/2018,Actors,@DohertyShannen,Please read below. We need housing for 87 dogs or slaughter will be unavoidable. #Repost… https://t.co/l1IgQQ0zk1 +04/07/2018,Actors,@DohertyShannen,@RalphGarman ❤️❤️❤️ thank you kind sir. +04/05/2018,Actors,@DohertyShannen,@SeanvanderWilt Damn!!!! You look good! +04/04/2018,Actors,@DohertyShannen,Still in remission. I imagine that I’ll always worry to a certain extent but I think we all… https://t.co/cH4QAhUbq1 +04/04/2018,Actors,@DohertyShannen,"RT @ASPCA: ACT NOW: Urge the U.S. Attorney General to support the HEART Act, a federal bill that will help victims of dogfighting get rehab…" +04/02/2018,Actors,@DohertyShannen,"Went to doctor today for tumor marker test and bone density scan. Yes, that’s my mom... I… https://t.co/LTyT2X6qSB" +04/02/2018,Actors,@DohertyShannen,I know it’s a wrap on Easter but can I just wear these a little longer? https://t.co/oYJLwI6UES +04/02/2018,Actors,@DohertyShannen,Ending Easter with family. My husband is working but he’s here in spirit. I love these people.… https://t.co/i3LYklgpFC +04/01/2018,Actors,@DohertyShannen,Easter. chriscortazzo themamarosa sdjneuro kellgrom https://t.co/wqGr0JaBoy +04/01/2018,Actors,@DohertyShannen,"Me, clearly oblivious to abnormally large bunny behind me and my mom, clearly disturbed by… https://t.co/K7ASrhb48c" +04/01/2018,Actors,@DohertyShannen,Easter with sdjneuro and @ashermonroe https://t.co/dgjwGgoIei +03/31/2018,Actors,@DohertyShannen,"So my friend @seanvanderwilt said... hey let’s dance. I, being a good friend, obliged. I didn’t… https://t.co/sc2Wqg9rqV" +03/26/2018,Actors,@DohertyShannen,Today March 25 is my dads birthday. I wish he was still here. I miss his hugs. I miss his… https://t.co/pjbXrN37T6 +03/25/2018,Actors,@DohertyShannen,wedding of the year.... maybe of the decade. #marcandnoble #nyc https://t.co/AUpBAIjBMO +03/24/2018,Actors,@DohertyShannen,Proud to be included and share my story in hope of helping others https://t.co/VNWdThWH3g +03/24/2018,Actors,@DohertyShannen,RT @ASPCA: ACT NOW: Today is the LAST day the @USDA will accept public comments on a disastrous proposal to allow for-profit businesses and… +03/24/2018,Actors,@DohertyShannen,#mdastrong https://t.co/8IOxWCF6be +03/24/2018,Actors,@DohertyShannen,And we are off. https://t.co/6fqgjEuPZM +03/22/2018,Actors,@DohertyShannen,#theadventuresofindio continue with @kurt_iswarienko falling in love. #rescue https://t.co/5vh3QuVLm0 +03/22/2018,Actors,@DohertyShannen,"So I babysat this one today. Going to housebreak her, train her. I hope. So please meet Indio.… https://t.co/7CInZst79i" +03/20/2018,Actors,@DohertyShannen,"Rescued this cute little girl today. She was found by Casey, alone on the streets of Indio. No… https://t.co/Oh7ULOXveU" +03/20/2018,Actors,@DohertyShannen,Good morning. https://t.co/TUe6CxWx4R +03/15/2018,Actors,@DohertyShannen,Happy birthday annemkortright Your friendship means more to me than you’ll ever know. Your… https://t.co/vvlZ2Lm3AH +03/14/2018,Actors,@DohertyShannen,I tried to explain to her the concept of separate beds but she hates the fifties.... #problems https://t.co/k9HVFCgOet +03/14/2018,Actors,@DohertyShannen,God I’m so bored when I’m with him https://t.co/wFcbM10c2r +03/14/2018,Actors,@DohertyShannen,So I took a drive to storage or what I like to call my “clothing archive”. What was nostalgic… https://t.co/2gLkQcwVex +03/13/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: Lawsuit!!! Thank you HSUS, CBD and WEG. https://t.co/gkclr66Giy" +03/13/2018,Actors,@DohertyShannen,@amya1996 @AC50197 Yes darling it is. +03/13/2018,Actors,@DohertyShannen,"RT @ASPCA: We’re outraged! Today the @USDA officially withdrew the organic animal welfare rule, which would have improved the lives of mill…" +03/12/2018,Actors,@DohertyShannen,Seriously... 45 minutes straight is this. Neda just doesn’t understand taking it slow. But the… https://t.co/0sSE05u2iI +03/12/2018,Actors,@DohertyShannen,@katheri07_12 @CharmedDaily Ah well then I’m going to go pillage my grandmothers house +03/12/2018,Actors,@DohertyShannen,@OlgaAlekseyevna @CharmedDaily Nothing like painted on abs... +03/12/2018,Actors,@DohertyShannen,@AC50197 You are aging us both... 😩😜 +03/12/2018,Actors,@DohertyShannen,@CharmedDaily What the hell am I wearing? Fairly certain that dress was drapes prior to me... +03/12/2018,Actors,@DohertyShannen,"RT @MercyForAnimals: Farmer has change of heart, turns his farm vegan! https://t.co/rOfUgO96SA" +03/12/2018,Actors,@DohertyShannen,RT @peta: ICYMI: Elephants are beaten and have sharp hooks jabbed into their skin — all for Thailand's Annual King's Cup Polo Tournament. h… +03/11/2018,Actors,@DohertyShannen,"RT @UrgentPart2: The dogs on the Super Urgent page are either high risk, injured or have previously appeared on the To Be... https://t.co/Y…" +03/10/2018,Actors,@DohertyShannen,"RT @ohstephany_: Morgan Williams, Junior. Room 1213 https://t.co/VG9s73Mtr8" +03/10/2018,Actors,@DohertyShannen,"RT @ohstephany_: Megan Smith, Senior. Room 1254 https://t.co/pYl20Uu9d9" +03/09/2018,Actors,@DohertyShannen,#parklandstrong https://t.co/FOAVRJXEar +03/09/2018,Actors,@DohertyShannen,@xo_karmin_ox @MSD_DECA @FloridaDECA @DECAInc ❤️❤️❤️ +03/09/2018,Actors,@DohertyShannen,My heart breaks and yet is uplifted by these kids and their teacher as they try to get back to… https://t.co/TIVgGs2WHR +03/08/2018,Actors,@DohertyShannen,Marjory Stoneman Douglas. These kids.... I’m humbled in front of them. #neveragain https://t.co/FHBMQ2C9YO +03/08/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Trump Administration Makes Elephants Fair Game For Hunters As Trophy Ban is Lifted https://t.co/6kMRMQR4V4 +03/08/2018,Actors,@DohertyShannen,#internationalwomensday https://t.co/gkc951w73r +03/08/2018,Actors,@DohertyShannen,Just nothing but love and fun chriscortazzo #miami https://t.co/EHekkoQsUG +03/07/2018,Actors,@DohertyShannen,"Enough. We are coming for you. #Repost adriansteirn with @repostapp +・・・ +Please read and share.… https://t.co/4rzJXD9IBn" +03/06/2018,Actors,@DohertyShannen,"RT @nywolforg: We're not trophies. We're family. + +Lawmakers must pass an appropriations measure before midnight on March 23 + riders that s…" +03/04/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: TONIGHT!!! In response to concerns about coyotes and safety on Boxford’s trails, BTA/BOLT is sponsoring a talk... https:…" +03/03/2018,Actors,@DohertyShannen,"RT @NRDC: It’s estimated that fewer than 200 FL panthers remain in the US. And now, with oil and gas development encroaching on their habit…" +03/03/2018,Actors,@DohertyShannen,"RT @nywolforg: We are not trophies. We're family. + +URGENT -- If the omnibus spending package passes into law as is, wolves will die at the…" +03/03/2018,Actors,@DohertyShannen,RT @ASPCA: The @USDA is considering something truly despicable: allowing for-profit businesses that exploit and exhibit animals (puppy mill… +03/01/2018,Actors,@DohertyShannen,Cleaning out my airstream so it can be moved and it’s amazing what memories you run across that… https://t.co/MuqKJ9B22U +02/28/2018,Actors,@DohertyShannen,Check out my friend @RealRomaDowney and her new book at link here. https://t.co/s2kBANkTXG +02/28/2018,Actors,@DohertyShannen,I am beyond excited for my friend @RealRomaDowney and the release of her new book. Pre ordering… https://t.co/6fuBa5L3Fd +02/27/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: Challenging the deadly Coyote Challenge. End the #warOnwildlife +🐺🐾🐺🐾🐺💙🐺🐾🐺🐾🐺🐾🐾🐺 https://t.co/0mm9U6q3Du" +02/27/2018,Actors,@DohertyShannen,Good morning https://t.co/PquwJq2p01 +02/27/2018,Actors,@DohertyShannen,https://t.co/NcismvKTyN +02/27/2018,Actors,@DohertyShannen,Poser.... https://t.co/w1iDErnlYD +02/26/2018,Actors,@DohertyShannen,Please check her out. https://t.co/aXjdkKG34D +02/25/2018,Actors,@DohertyShannen,Happy birthday chelseahandler Grateful you walked into my life and steadfastly stood by me.… https://t.co/Gw6mhpjVUz +02/24/2018,Actors,@DohertyShannen,@NickRowlands Hope you feel better!! +02/23/2018,Actors,@DohertyShannen,"This. @ Santa Ynez, California https://t.co/Mql7u2AnUx" +02/22/2018,Actors,@DohertyShannen,"Planning... #happyplace @ Santa Ynez, California https://t.co/Mt7jPXZx0w" +02/22/2018,Actors,@DohertyShannen,@MrGivens_91 Awe thank you!! 💚💚❤️❤️😉😉 +02/22/2018,Actors,@DohertyShannen,@leeogrady79 @Heatherstv Im sorry 💚 +02/22/2018,Actors,@DohertyShannen,"@MrGivens_91 I hate labels. I’m for what’s best for people, this country and the world. #sappyyes" +02/22/2018,Actors,@DohertyShannen,@rachelcabbit @Heatherstv @paramountnet @Thoroughbreds 💚💚 +02/22/2018,Actors,@DohertyShannen,@Heatherstv That’s why I love you so.... you’re so very +02/22/2018,Actors,@DohertyShannen,"@rachelcabbit @Heatherstv @paramountnet @Thoroughbreds Give it a chance. Honestly, it’s great. This cast is amazing" +02/22/2018,Actors,@DohertyShannen,@jonmmargolis BQ... obvi +02/22/2018,Actors,@DohertyShannen,@Paguban I just don’t understand why an AR 15 is necessary for a civilian +02/22/2018,Actors,@DohertyShannen,@BillyWontStop It’s just wrong. +02/22/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Even the FBI knows animal abuse leads to human abuse. https://t.co/8w36eFCir7 +02/22/2018,Actors,@DohertyShannen,@Heatherstv I hope you’re not correcting the OG Heather Duke....👑💚 +02/22/2018,Actors,@DohertyShannen,@leahmgordon @damianholbrook 💚💚💚💚 +02/22/2018,Actors,@DohertyShannen,@EllenPompeo And me as well +02/22/2018,Actors,@DohertyShannen,@Heatherstv Corn nuts +02/22/2018,Actors,@DohertyShannen,RT @Heatherstv: You can watch the first episode right now. Don't need to sign in or any of that basic cable nonsense. Just press play and s… +02/22/2018,Actors,@DohertyShannen,"I try to not get political but, arm our teachers? They’re teachers. Not cops, not security, not military. They HAVE a job. #confused" +02/21/2018,Actors,@DohertyShannen,RT @Heatherstv: Are you really going to wait until March 7 to watch the series premiere of Heathers on @ParamountNet? You can stream it rig… +02/21/2018,Actors,@DohertyShannen,Heathers..... that’s all. heathers paramountnetwork https://t.co/iaTCJTKJ3t +02/20/2018,Actors,@DohertyShannen,RT @nywolforg: Anti-wolf policy riders that seek to block all spending on recovery efforts for critically endangered Mexican gray wolves ar… +02/17/2018,Actors,@DohertyShannen,@nathanwchen what a beautiful performance. So proud you represent the USA +02/15/2018,Actors,@DohertyShannen,"Can’t wait for my friends store to officially open, although it hasn’t stopped me from stopping… https://t.co/R1DpnApSeb" +02/15/2018,Actors,@DohertyShannen,Enough https://t.co/CtRFKBz4sX +02/12/2018,Actors,@DohertyShannen,Walked. Then this crap. Then done. @jammalibu Now think I’ll call uber instead of walking… https://t.co/01sAs0qRbO +02/12/2018,Actors,@DohertyShannen,Walking to my workout cause my @LandRover is in shop for 3rd week in a month. Being positive... I’m getting a double workout. #lemon +02/12/2018,Actors,@DohertyShannen,missbowiedoherty and I trying to decide what art goes where in this hallway. Lucky I’m married… https://t.co/S40WfYi0Uh +02/11/2018,Actors,@DohertyShannen,@Hystirycal Thank you 💕 +02/11/2018,Actors,@DohertyShannen,Words... so easily tossed around and yet what ramifications they have... both good and bad. https://t.co/aBAhsuk9FV +02/08/2018,Actors,@DohertyShannen,The Heathers..... it’s so very. heathers paramountnetwork https://t.co/XL7dbnvcA1 +02/08/2018,Actors,@DohertyShannen,@LandRover my car has broken down since day I got it. Same issue every month. Just got picked up yet again after being in shop for 2 weeks +02/08/2018,Actors,@DohertyShannen,@IOLANDACRESPINA @LukePerryIII @CW_Riverdale 1. That’s not Luke. 2. There was never even a convo about Riverdale +02/08/2018,Actors,@DohertyShannen,RT @peta: How many chances will @LoganPaul get? It's NEVER okay to do something like this 😠 [via @peta2] https://t.co/D8GfuHbhCj +02/08/2018,Actors,@DohertyShannen,@peta @LoganPaul @peta2 Wtf +02/08/2018,Actors,@DohertyShannen,@LukePerryIII @CW_Riverdale Hmm when was the last time I saw you? +02/08/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Another case of a wolf shot by a coyote hunter. This time in South Dakota. Poor wolf had old trapping injuries... https:… +02/07/2018,Actors,@DohertyShannen,"@ArielleKebbel @repostapp Praying for you, your sister and your family" +02/07/2018,Actors,@DohertyShannen,"#Repost @ariellekebbel with @repostapp +・・・ +🚨 ALERT 🚨 my sister Julia is still missing. Updated… https://t.co/vDlMO1y9Y8" +02/05/2018,Actors,@DohertyShannen,They flew. What an amazing game #SuperBowl2018 #FlyEagelsFly +02/05/2018,Actors,@DohertyShannen,Eagles are flying +02/04/2018,Actors,@DohertyShannen,@tuggerman @Patriots @Eagles #FlyEagelsFly +02/04/2018,Actors,@DohertyShannen,I love both teams. This is hard. @Patriots just unbelievable. @Eagles have my heart right now. +02/04/2018,Actors,@DohertyShannen,Beautiful. https://t.co/FeHj7NEeYJ +02/04/2018,Actors,@DohertyShannen,@Pink did it again. #SuperBowlSunday got me to tear up +02/04/2018,Actors,@DohertyShannen,Why do I get so excited for the #SuperBowlSunday and anxiety. It’s like I’m playing. +02/04/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: NEW! LTD ED 'LOVE US OR LOSE US - SAVE THE ELEPHANT' + +Show EVERYONE that you love Elephants when you wear a 'Love Us…" +02/04/2018,Actors,@DohertyShannen,@Protect_Wldlife These are great!! +02/04/2018,Actors,@DohertyShannen,@Stitched_Rattus @Romantic_Corpse Happy birthday! +02/04/2018,Actors,@DohertyShannen,Super bowl super bowl super bowl +02/04/2018,Actors,@DohertyShannen,"Happy place. @ Santa Ynez, California https://t.co/ACXOUYAo4C" +02/02/2018,Actors,@DohertyShannen,"RT @DalaiLama: The basic foundation of humanity is compassion and love. This is why, if even a few individuals simply try to create mental…" +02/02/2018,Actors,@DohertyShannen,Just never enough with her. missbowiedoherty https://t.co/gXEfxhZW98 +02/02/2018,Actors,@DohertyShannen,And all is right again. missbowiedoherty I just love you. https://t.co/7E9XXRgJs0 +02/02/2018,Actors,@DohertyShannen,@emilyach27 @Paguban 😂😂 +07/02/2018,Actors,@shenaegrimes,Canada Day up north with the family... doesn’t get much better than this 🖤 Happy Canada Day to you and yours! 🇨🇦❤️🇨🇦 https://t.co/vb7KbHOgUY +06/30/2018,Actors,@shenaegrimes,I feel so grateful to have had the opportunity that I did last night...to spend time with my grandma’s hands sharin… https://t.co/FapCDbukxM +06/28/2018,Actors,@shenaegrimes,Stoked on my new ‘do ⚡️💇⚡️ Check out my new #IGTV video to see the before/after and during! https://t.co/SuwUCVdnFR +06/26/2018,Actors,@shenaegrimes,"Raw. As. F*ck. 👊 Talking pregnancy skin, embracing insecurities and finding confidence + some helpful color correct… https://t.co/o3XFm10vYl" +06/23/2018,Actors,@shenaegrimes,SHOP THE PRODUCTS I USED IN THE VIDEO! https://t.co/DOpenpK0qT +06/22/2018,Actors,@shenaegrimes,"RT @rcinto: After @shenaegrimes has her baby someone needs to reunite her with @Angela_Griffin and @wendy_crewson and relaunch ""The Detail""…" +06/19/2018,Actors,@shenaegrimes,#TreatYoSelfTuesday New video on https://t.co/yCbqtSAMzU of an EPIC Beauty PR Haul because someone somewhere must’v… https://t.co/jiXBVadOvT +06/17/2018,Actors,@shenaegrimes,Finding clothes that fit is a basic struggle for every woman when pregnant but there are fortunately lots of materni https://t.co/gzSAVE8SHM +06/16/2018,Actors,@shenaegrimes,For those wondering why I missed out on the… https://t.co/uSUJk18Y5x +06/14/2018,Actors,@shenaegrimes,RT @WILDFOXCOUTURE: Never ask a girl with winged eyeliner why she’s late. +06/11/2018,Actors,@shenaegrimes,RT @MattLanter: We had a blast with @shenaegrimes and… https://t.co/wInVMcNdvj +06/10/2018,Actors,@shenaegrimes,"In LA, our summertime Sunday fun days are typically spent at the beach or poolside because it is hot as a motherf--. https://t.co/uxrk0E7YRr" +06/05/2018,Actors,@shenaegrimes,"RT @PhilMphela: TV: TONIGHT at 8PM #TheDetail premieres on @UniversalTVSA (@DStv 117) + +Starring @Angela_Griffin @wendy_crewson & @shenaegri…" +06/05/2018,Actors,@shenaegrimes,Myself and Josh... and baby Girl Beech makes 3!… https://t.co/mnh3gqnmUJ +06/04/2018,Actors,@shenaegrimes,I’m nervous and excited to share my first… https://t.co/tOqjn2vDH9 +06/04/2018,Actors,@shenaegrimes,I’m nervous and excited to share my first… https://t.co/1xBmxo2UkB +06/04/2018,Actors,@shenaegrimes,Canada! The last ever episode of @TheDetailCTV starts now! Sadly we will not be coming back for a second season on… https://t.co/C4lxOWZKv2 +06/03/2018,Actors,@shenaegrimes,I thought it was time to share my first pregnancy update with you guys at 24 weeks and I'm nervous but excited to fi https://t.co/v2PFrDAxOQ +05/31/2018,Actors,@shenaegrimes,We’re outfitting our Smart Nursery with ease thanks to @squaretrade! Schedule appts at participating retailers when… https://t.co/7XSRY1WrB7 +05/23/2018,Actors,@shenaegrimes,Find friends that make you laugh until you can’t see & indulge your pregnancy BBQ cravings even when the sun don’t… https://t.co/WeAPPxz3A5 +05/22/2018,Actors,@shenaegrimes,I'm sure most of you already know about my love for FabFitFun and that I have been a #fabfitfunpartner for nearly a https://t.co/CdjbJpEMdB +05/16/2018,Actors,@shenaegrimes,I finally feel confident to post about my outfits again because secret's out and the interweb now knows I'm preggers https://t.co/NNitNy4Hnx +05/14/2018,Actors,@shenaegrimes,RT @amamarino: When @shenaegrimes is interrogating her husband on #TheDetail https://t.co/VEatBo94OW +05/14/2018,Actors,@shenaegrimes,RT @CTV_Television: A new case heats up tonight on @TheDetailCTV. Don't miss it at 9! #TheDetail @shenaegrimes https://t.co/QQmjN6j5ou +05/10/2018,Actors,@shenaegrimes,RT @CTV_PR: FUN FACT: One of this week's uncooperative suspects is actually @shenaegrimes 's husband Josh Beech! https://t.co/hHdkjD9elB +05/07/2018,Actors,@shenaegrimes,#couplegoals 😝 https://t.co/shk4HjdNu2 +05/07/2018,Actors,@shenaegrimes,#couplegoals 😝 https://t.co/RbjaM4gzSh +05/04/2018,Actors,@shenaegrimes,Thank you love!!!! Xx https://t.co/2GFYb75ETc +05/03/2018,Actors,@shenaegrimes,Thank for breaking this insanely exciting news for us!!! ⚡️🖤⚡️ https://t.co/z3ofCySlW9 +05/03/2018,Actors,@shenaegrimes,Well it's official... I'm definitely a grown-up! This badass baby is on board and I am so thrilled to be able to fin https://t.co/4HPKXBgIWm +04/24/2018,Actors,@shenaegrimes,This post is all about the most badass summer must-haves delivered to your door all in one Badass Box! Literally. It https://t.co/aBGMOHRWZm +04/19/2018,Actors,@shenaegrimes,When you feelin’ those cheekbones... NEW makeup tutorial for ‘How to Contour & Highlight’ is on… https://t.co/Ni04w1WIJ0 +04/13/2018,Actors,@shenaegrimes,"RT @CTV_PR: After a young girl is found dead in the trunk of a car, Detectives Stevie Hall (@Angela_Griffin) & Jack Cooper (@shenaegrimes)…" +04/11/2018,Actors,@shenaegrimes,"I can already feel the summer heatwave slowly rolling in, which is awesome for fun in the sun but it also means the https://t.co/j90iABlOT0" +03/29/2018,Actors,@shenaegrimes,How to style a utility jumpsuit TWO ways: LA vs San Diego style post on the blog today featuring… https://t.co/bJlnLyyJuY +03/29/2018,Actors,@shenaegrimes,Today's post is an extra special one because not only does it walk you through two totally unique takes on how to st https://t.co/ggGxmDH9jM +03/27/2018,Actors,@shenaegrimes,"RT @cbcradioq: 🔊 LISTEN: @shenaegrimes & @Angela_Griffin joined guest host @lauriebrown to talk about @TheDetailCTV, a new Canadian police…" +03/26/2018,Actors,@shenaegrimes,@adelaideskxne Thank you ❤️❤️❤️ +03/26/2018,Actors,@shenaegrimes,RT @dobrevftobrosey: @shenaegrimes so glad to see you back in business but this time as a badass detective who takes no shit! Proud of you!… +03/26/2018,Actors,@shenaegrimes,RT @lantetrain: Now that’s how you do a premiere @TheDetailCTV @shenaegrimes @Angela_Griffin @MattyBGordon #TheDetail ⭐️⭐️⭐️⭐️⭐️ gold stars… +03/26/2018,Actors,@shenaegrimes,"RT @stefheartsyou: What I thought of the first episode of #TheDetail : +@shenaegrimes @Angela_Griffin @wendy_crewson @TheDetailCTV https://t…" +03/26/2018,Actors,@shenaegrimes,"RT @GagaThisWayy: A strong female led cast ✅, the perfect crime show ✅, @shenaegrimes back on TV weekly ✅! All is good in the world again!…" +03/26/2018,Actors,@shenaegrimes,"And that is how she does it, folks! Detective Cooper is a #boss! Couldn’t be more honored to be a part of this show… https://t.co/DrASSTF4fK" +03/26/2018,Actors,@shenaegrimes,RT @GagaThisWayy: @shenaegrimes YOU DID THAT #TheDetail https://t.co/eciVNrWWnn +03/26/2018,Actors,@shenaegrimes,RT @wendy_crewson: So proud of this talented group @shenaegrimes @Angela_Griffin @david_cubitt @MattyBGordon @mukadambamn @edisonmedison @… +03/26/2018,Actors,@shenaegrimes,@MattyBGordon @Angela_Griffin @TheDetailCTV #your#skillme +03/26/2018,Actors,@shenaegrimes,RT @Rachie323: @shenaegrimes you are KILLING IT babe!! Love having you back on my screen - Annie Wilson will always have a special place in… +03/26/2018,Actors,@shenaegrimes,RT @lantetrain: @shenaegrimes @TheDetailCTV @CTV_Television Hell yah I’m so glad you were cast to play her cause seriously I can’t see anyo… +03/26/2018,Actors,@shenaegrimes,@lantetrain @TheDetailCTV @CTV_Television Thank youuu!!! +03/26/2018,Actors,@shenaegrimes,@murtzjaffer I meannn... Jack and I would definitely be friends... if I was cool enough to hang with a genius homicide detective! 😂 +03/26/2018,Actors,@shenaegrimes,@Goodeeeeee @Angela_Griffin @wendy_crewson 🙏🙏🙏 +03/26/2018,Actors,@shenaegrimes,@MattyBGordon Yasss!!! 🙌🙌🙌 +03/26/2018,Actors,@shenaegrimes,"@lantetrain @TheDetailCTV @CTV_Television Everything? Badass 👮‍♀️? Check! Real, complex woman? Check! Rough around… https://t.co/QPTnNkCwVN" +03/26/2018,Actors,@shenaegrimes,RT @CTV_Television: Messy but brilliant! #TheDetail https://t.co/oh738qo28L +03/26/2018,Actors,@shenaegrimes,@Rachie323 Me too!!! 😍 +03/26/2018,Actors,@shenaegrimes,@stefheartsyou It’s meant to be based in an anonymous North American city but we certainly don’t shy away from the… https://t.co/kB8hjyS9vE +03/26/2018,Actors,@shenaegrimes,RT @Leeeeey: @shenaegrimes first day of shooting. freezing cold nigh. In her bare feet. Never stopped smiling. Can we say amazing. @TheDeta… +03/26/2018,Actors,@shenaegrimes,@Leeeeey @TheDetailCTV ❤️❤️❤️ +03/26/2018,Actors,@shenaegrimes,"Ahhhh Detective Jack Cooper, ladies and gentlemen. #hotmess #myfavoritecharacter" +03/26/2018,Actors,@shenaegrimes,RT @CTV_PR: #TheDetail is on now! @TheDetailCTV @Angela_Griffin @shenaegrimes @wendy_crewson +03/26/2018,Actors,@shenaegrimes,Ahhh!!! The moment has finally arrived! @TheDetailCTV starts now on @CTV_Television in Canada and I’ll be live twee… https://t.co/xXnxMZX9pK +03/26/2018,Actors,@shenaegrimes,RT @wendy_crewson: SO EXCITED. Join us tonight 9 pm. The beautiful and brilliant @Angela_Griffin and @shenaegrimes @TheDetailCTV https://t.… +03/26/2018,Actors,@shenaegrimes,RT @KatrinaSaville: Get ready to meet a few very cool women you’re going to want to spend the next several Sunday evenings with — @shenaegr… +03/26/2018,Actors,@shenaegrimes,"RT @Leeeeey: Twenty minutes until @shenaegrimes, @Angela_Griffin, @wendy_crewson @david_cubitt @MattyBGordon @mukadambamn @edisonmedison @C…" +03/25/2018,Actors,@shenaegrimes,"Today is the day!!! Oh 🇨🇦, thedetailctv premieres TONIGHT at 9pm on @ctv_television and I will… https://t.co/vc67pruWxY" +03/14/2018,Actors,@shenaegrimes,"Girrrl, if you know me at all, you know I love leopard print anything and everything! It's really a shock this post https://t.co/WlSVl1MHjQ" +02/27/2018,Actors,@shenaegrimes,"Spring has nearly sprung and while I'm definitely thrilled for the all the newness the upcoming season will bring, I https://t.co/D6V8KQlXL8" +02/08/2018,Actors,@shenaegrimes,"Valentine's Day is just around the corner and as always, there's a million blog posts and tutorials for uber-girly, https://t.co/qZTp2qJIp8" +02/08/2018,Actors,@shenaegrimes,"Watch my new Valentine's Day makeup tutorial for a fun, sexy spin on a classic beauty look that your lover will lov… https://t.co/w12R4xdUKu" +02/05/2018,Actors,@shenaegrimes,Finally!!! Thrilled to announce that my new series The Detail will make its Canadian TV debut on March 25th @ 9pm o… https://t.co/DxowGfMRh0 +01/24/2018,Actors,@shenaegrimes,"A lot of you have asked about my skincare routine, so I thought it was time for a 'Get Unready With Me | Nighttime… https://t.co/OkZm67Kr2U" +01/24/2018,Actors,@shenaegrimes,"This post is sponsored by Olay, but all opinions are my own. Do you ever feel like there just aren’t enough hours https://t.co/lq8W1RXiRa" +01/21/2018,Actors,@shenaegrimes,"Vinyl and fetish fantasies have typically gone hand in hand but don't worry folks, this vinyl fashion is entirely PG https://t.co/LqsjLNzUJI" +01/18/2018,Actors,@shenaegrimes,My obsession with berets has definitely followed me into 2018 but this year I'm putting a heavy metal spin on things https://t.co/nvkACNxjzF +01/16/2018,Actors,@shenaegrimes,I'm a product hoarder and it finally paid off! My 'Beauty Product Empties 2017' video is up on YouTube today! I'm l… https://t.co/2cdFrIG4BR +01/14/2018,Actors,@shenaegrimes,The turnover of a year typically brings a change of hair in my life! Every time I'm just about happy with where my o https://t.co/7pyDPrVsPj +01/11/2018,Actors,@shenaegrimes,Don’t need to wait for the weekend to be comfy when it looks this good! Talking ‘Living… https://t.co/N2eJyRlnky +01/11/2018,Actors,@shenaegrimes,"Guys, I think I found the secret to the Kardashians' success... being comfortable while looking chic as hell in a ba https://t.co/AGgYWP8Nak" +01/10/2018,Actors,@shenaegrimes,OMG... my husband did my makeup in my new video! Watch the full thing here: https://t.co/TkiLo0wPZX & don't forget… https://t.co/52B5ZXnmXm +01/04/2018,Actors,@shenaegrimes,"New year, new trends?! No thanks! The patent skirt trend is still in full effect and my obsession with it is thrivin https://t.co/iOy241o89n" +12/28/2017,Actors,@shenaegrimes,The holiday season is nearly over but there is one major night of celebrating to do and I've got my look planned and https://t.co/gtzfFHNyOj +12/23/2017,Actors,@shenaegrimes,Sister from another mister... and mother... or that would be super weird... because she’s my… https://t.co/Vg16hK1vji +12/21/2017,Actors,@shenaegrimes,"No, I'm not dressing up like Sally or Jack Skellington for Christmas BUT I do feel like Helena Bonham-Carter at some https://t.co/20o1YcLoYv" +12/19/2017,Actors,@shenaegrimes,Get your holiday party glam on point with the new video on my YouTube Channel 'GRWM: Holiday Party Hair & Makeup'!!… https://t.co/szJC2enwwp +12/18/2017,Actors,@shenaegrimes,"If you're anything like me, you've suddenly realized that Christmas is only one week away and are now scrambling for https://t.co/GI7zg7lKHO" +12/14/2017,Actors,@shenaegrimes,If you follow me on social media or have ever visited my blog before then you know I'm not the kind of gal that drea https://t.co/PQmNl7CpiI +12/12/2017,Actors,@shenaegrimes,'Tis the season for all things glitter! My new YouTube video shows you how to do one of my favorite holiday makeup… https://t.co/Ykjtgysf91 +12/11/2017,Actors,@shenaegrimes,Daydreaming about the weekend and it’s only Monday 😝 https://t.co/CrP80SPKJo +12/08/2017,Actors,@shenaegrimes,A Santa-approved day look for the books! I believe in spreading holiday cheer wherever and whenever you can and sinc https://t.co/BEs8hbyDdt +12/07/2017,Actors,@shenaegrimes,Watch the full tutorial on my favorite easy & affordable Holiday Decor DIYs here: https://t.co/bN46kYJcf7 and to se… https://t.co/YrP9ICswWQ +12/06/2017,Actors,@shenaegrimes,This is my first holiday season settled into my house and I decided to donate all of my Christmas decorations and st https://t.co/3o86cFWmTp +11/28/2017,Actors,@shenaegrimes,"Watch my review on the good, the bad and the beautiful from the GIGI HADID x MAYBELLINE DRUGSTORE MAKEUP COLLECTIO… https://t.co/FiYhX0HP7z" +11/28/2017,Actors,@shenaegrimes,This year I’m supporting #GivingTuesday by rocking my pin from @ebay in support of @FeedingAmerica! #AD Last year e… https://t.co/bIkcEgIMFR +11/23/2017,Actors,@shenaegrimes,When there’s a heat wave in LA but you insist on wearing a cozy knit sweater because it’s 🦃… https://t.co/u7c1wvGZJq +11/23/2017,Actors,@shenaegrimes,Have you ever admired somebody so much that you've literally mapped out what you would say to them if your paths eve https://t.co/PhtzfuGQF9 +11/21/2017,Actors,@shenaegrimes,When your husband’s an epic photographer and there’s a heat wave in November...📸: photosbybeech https://t.co/QiXiyUUejy +11/20/2017,Actors,@shenaegrimes,It's that time of year again! A change of season means a new delivery from my most worthwhile lifestyle expense of a https://t.co/Ev1jsBXNXi +11/17/2017,Actors,@shenaegrimes,Everyday I’m hustlin’. 🤘#domesticbadass #lostinlala https://t.co/MeeV1mJncG +11/16/2017,Actors,@shenaegrimes,My new hair tutorial shows you 6 quick & easy heatless hairstyles that you can do in a pinch and they’re a cinch! L… https://t.co/xutVstIdJJ +11/14/2017,Actors,@shenaegrimes,"@lifetimetv @AmBeautyStar Products from @FHIBrands, @BRONXCOLORS, @CBareProducts, @ColorWowHair and @HudaBeauty" +11/14/2017,Actors,@shenaegrimes,I just did another #partner FB live for @Lifetimetv and @AmBeautyStar! Check it out the video here… https://t.co/HQX7bc2BFF +11/12/2017,Actors,@shenaegrimes,Take time to remember those who fought & sacrificed for us. Honor them with a poppy on your profile #CanadaRemembers https://t.co/UFO9WDbeK7 +11/12/2017,Actors,@shenaegrimes,Show you remember Canada's Veterans. Add a poppy to your avatar here: https://t.co/wSOHrKdpx1 #CanadaRemembers +11/09/2017,Actors,@shenaegrimes,My kid sister does my makeup in this EPIC MAKEUP FAIL of our attempt at the full face using only kids makeup challe… https://t.co/fFO8HpvumG +11/08/2017,Actors,@shenaegrimes,Going LIVE on my Facebook page in one hour to unbox my full #FabFitFun winter box! Click link in… https://t.co/EKlkuBJEYB +11/07/2017,Actors,@shenaegrimes,Educational life experiences with my 8 year old sister...or skipping school on a Monday to visit… https://t.co/SOsCBjcc9c +11/03/2017,Actors,@shenaegrimes,Pretty happy to have these weirdos in town! #famjam https://t.co/6eA84vFX43 +11/01/2017,Actors,@shenaegrimes,Always a rock n roll gal at heart but this is just one of the many ways this #fabfitfunpartner… https://t.co/r0ihGgHKND +11/01/2017,Actors,@shenaegrimes,Halloween with a hometown homie 🎃💋🤘💋🎃 https://t.co/QlRQ4bZLa2 +10/31/2017,Actors,@shenaegrimes,"Happy Halloween!!! 🎃 +. +. +. +#🤡 https://t.co/Z26P9sisSe" +10/30/2017,Actors,@shenaegrimes,Need a last minute costume? Click LINK IN BIO for the full makeup tutorial and #DIYcostume of my… https://t.co/Dmsq8Wpce8 +10/30/2017,Actors,@shenaegrimes,Epic CREEPy evening spent creeplosangeles ... best Halloween experience around town! Thanks for… https://t.co/GIhHEoKEJo +10/30/2017,Actors,@shenaegrimes,Classy Clown. 🤡 #halloween2017 https://t.co/DjPc5BjQhR +10/29/2017,Actors,@shenaegrimes,Another epic Halloween with my forever partner in crime and costume @JoshBeechMusic ❤️🤡❤️ https://t.co/YkGYeCrpig +10/27/2017,Actors,@shenaegrimes,"#fbf to my bday glam grunge look. 💋 +. +. +. +LINK IN BIO for full #grwm tutorial! + +#grungemakeup… https://t.co/uUmbAyJ5Sh" +10/26/2017,Actors,@shenaegrimes,It's my birthday week so I posted my first GRWM video on YouTube!!! Watch my bday glam grunge makeup & outfit video… https://t.co/H8WXSDyz2e +10/25/2017,Actors,@shenaegrimes,Yet another amazing birthday spent wandering with the love of my life. Feeling lucky and… https://t.co/gWi840Ab89 +10/24/2017,Actors,@shenaegrimes,"28, may you be as open and free as this stretch of Mississippi! Cheers to exploration and… https://t.co/T3Z6g0KJAL" +10/24/2017,Actors,@shenaegrimes,Best. Card. Ever. // From my ❤️ @JoshBeechMusic 😍😍😍 https://t.co/HmOEozPesS +10/23/2017,Actors,@shenaegrimes,"Feeling inspired and heartbroken, motivated and moved after a day spent at this iconic sacred… https://t.co/Cawa02esrE" +10/22/2017,Actors,@shenaegrimes,Get this gorgeous vampy makeup look by watching my full Fall Drugstore Makeup Tutorial here:… https://t.co/voyHh1mlzT +10/20/2017,Actors,@shenaegrimes,"It is well and truly Fall and I couldn't be happier about it! When getting ready for day or night, it's finally the https://t.co/e8ix4YkYx6" +10/19/2017,Actors,@shenaegrimes,Get this gorgeous vampy Fall beauty look using makeup UNDER $10!!! Watch my Fall Drugstore Makeup Tutorial here:… https://t.co/xVx40oqwPi +10/19/2017,Actors,@shenaegrimes,About last night...Rocking the new @TLipstickLobby Fall red shade OUTRAGE! Obsessed with this… https://t.co/QTeUR6KWV4 +10/19/2017,Actors,@shenaegrimes,Date night with my favorite human for an incredible cause @childhelp !!!! #HollywoodHeroes… https://t.co/GPrNKoS7gM +10/17/2017,Actors,@shenaegrimes,#inspo 🤣🤣🤣 // Link in bio to my beauty tutorials where nothing remotely close to this happens! https://t.co/6Qn5MQfEIj +10/16/2017,Actors,@shenaegrimes,In the Halloween spirit on my channel! Check out my full tutorial for the ultimate glam creep clown costume here:… https://t.co/KpTQBRxucj +10/15/2017,Actors,@shenaegrimes,"For those of you who haven't checked it out already, head to my Youtube Channel for my full Halloween makeup tutoria https://t.co/IU8ccTTDzT" +10/15/2017,Actors,@shenaegrimes,Check out my NEW Creepy Clown Halloween Makeup Tutorial for how to get this scary beautiful look for Halloween HERE… https://t.co/MAfFF9XOZh +10/14/2017,Actors,@shenaegrimes,When all your nightmares come true @qmdarkharbor and you’re in Halloween heaven... 👻👻👻 https://t.co/xkt60DE3jr +10/13/2017,Actors,@shenaegrimes,"Rockin #PinsForPrevention 4 Bright Pink via @ebay for Charity, where buyers/sellers donate to charity of choice!#ad… https://t.co/AURsxl6mXp" +10/12/2017,Actors,@shenaegrimes,🐶 https://t.co/rBu7sgWZjT +10/11/2017,Actors,@shenaegrimes,Wanna know how to get picture perfect looking skin? Find out in my flawless foundation makeup tutorial here:… https://t.co/d4f9XFfg1M +10/10/2017,Actors,@shenaegrimes,"My new flawless foundation makeup tutorial works & last all day, everyday! Watch my simple step-by-step video here:… https://t.co/pC1R0QyIGY" +10/09/2017,Actors,@shenaegrimes,My husband’s brand spankin’ new band jaguarbones just launched their Instagram and released a… https://t.co/LWXL9FZW17 +10/07/2017,Actors,@shenaegrimes,When this is what Fall looks like... ☀️ https://t.co/X33zhG7ylI +10/05/2017,Actors,@shenaegrimes,SO excited to show you how I decorated my backyard for Fall on https://t.co/o2YfoxN1VG! See all the pics… https://t.co/Yz0Zyk0Pz0 +10/04/2017,Actors,@shenaegrimes,Sending love out into the universe today but not without a heavy heart. Love is vital but so is… https://t.co/BRTydJTL9v +10/02/2017,Actors,@shenaegrimes,"Cheers to quiet moments with the 🌙 @ Yucca Valley, California https://t.co/9ZHzDN1EBD" +10/01/2017,Actors,@shenaegrimes,Kicking off Breast Cancer Awareness Month by wearing my heart on my @hm x rethinkbreastcancer… https://t.co/Q6R8mqVmcX +09/30/2017,Actors,@shenaegrimes,"Had an amazing, educational and inspiring day with @childhelp touring the #Childhelp Merv… https://t.co/zIsQYqtTV3" +09/30/2017,Actors,@shenaegrimes,Another amazing kickoff to the Halloween season knottsscaryfarm !!! Thanks rossipr ❤️🎃☠️🎃❤️ https://t.co/DUEqRrQCs4 +09/27/2017,Actors,@shenaegrimes,"Happy hump day from me and my new favorite 🎩 +. +. +. +Check out https://t.co/o2YfoxN1VG for more pics,… https://t.co/1HVFihujLQ" +09/24/2017,Actors,@shenaegrimes,Lazy Sundaze. 💋 https://t.co/3UJUibghQy +09/20/2017,Actors,@shenaegrimes,Excited to #partner w @LifetimeTV and @AmBeautyStar premiering this Thurs at 10:30/9:30c! Check out my new vid: https://t.co/BhHCgMIVcW xo +09/19/2017,Actors,@shenaegrimes,"""Women who wear black lead colorful lives."" +. +. +. +So what about women who wear black and white… https://t.co/5jBJzpp9rt" +09/18/2017,Actors,@shenaegrimes,"This is me side-eyeing the new week like yeah...I got you. + +For more pics from my recent Italian… https://t.co/FKVmBELrRM" +09/16/2017,Actors,@shenaegrimes,Dreaming of another weekend in paradise. 🌹#wanderlust https://t.co/0fpoN5ThHQ +09/13/2017,Actors,@shenaegrimes,Sending good vibes your way! ✌️❤️✌️ https://t.co/3bDKnhtWYI +09/12/2017,Actors,@shenaegrimes,SO excited to be a #fabfitfunpartner on my Fall Box Review post up now on the blog! This… https://t.co/J1GyVskqOF +09/09/2017,Actors,@shenaegrimes,"Halloween came early and ""IT"" scared the shit out of me... can't wait for October!!! 🎃💀👻💀🎃 https://t.co/a1FhkmXN6y" +09/08/2017,Actors,@shenaegrimes,#fbf to stumbling upon paradise in the motherland with my better half ❤️ https://t.co/9PGYN0pBYb +09/07/2017,Actors,@shenaegrimes,The coolest kid I know @vix_adams just launched her own hat line @hatratscom and I feel one baby… https://t.co/LsRsGjqTl0 +09/06/2017,Actors,@shenaegrimes,This is me being totally casual and patient while waiting for my first Facebook Live in one… https://t.co/vmZ8mefKlR +09/06/2017,Actors,@shenaegrimes,Doing my first Facebook Live thingy tomorrow @ 1pm PST...nervous like a tween on her first day… https://t.co/l6JcOyKg5Z +09/01/2017,Actors,@shenaegrimes,Back in lalaland and missing my Brits already! 💋 https://t.co/YKS5PQdq09 +08/31/2017,Actors,@shenaegrimes,Tomorrow's the day Toronto!!! My new film bloodhoneymovie is premiering at Dundas & Yonge for a… https://t.co/vO2NXJ452L +08/30/2017,Actors,@shenaegrimes,"A lil bit streetwear, a lil bit rock n' roll. 🤘 +. +. +. +Click link in bio for more pics & my… https://t.co/W8O3tmC6Ox" +08/29/2017,Actors,@shenaegrimes,Sunburnt and burnt out. x https://t.co/iv07uhUDXD +08/28/2017,Actors,@shenaegrimes,What an unbelievable few days. Another totally surreal adventure with my love for the books! https://t.co/sJ0iI9lTau +08/27/2017,Actors,@shenaegrimes,When you discover real life magic at Lago di Garda 🇮🇹❤️🇮🇹 https://t.co/yYo9e0SinE +08/27/2017,Actors,@shenaegrimes,6am in Venezia and up for the fight of a lifetime! Representing both sides of my roots loud and… https://t.co/acavgIptHQ +08/26/2017,Actors,@shenaegrimes,But first... pizza. 🍕 https://t.co/LTikIZMwhF +08/25/2017,Actors,@shenaegrimes,✌️🇮🇹💋 https://t.co/kRKyJW99M7 +08/23/2017,Actors,@shenaegrimes,Let's make history. 🤘 https://t.co/a94ndYMx2j +08/22/2017,Actors,@shenaegrimes,🇬🇧 Fight for your right to party. 🇬🇧// #subculturearchives #carnabystreet #londoncalling https://t.co/Bb2WwrbEmw +08/20/2017,Actors,@shenaegrimes,Our friends Nina and Jason are lovely badass people who I just learned have suffered a tragic… https://t.co/7JqmEi458z +08/20/2017,Actors,@shenaegrimes,Beech babies. X ☀️😍☀️ https://t.co/sgVrpnVa2e +08/16/2017,Actors,@shenaegrimes,Finally back in the swing of #bloggerlife and it feels so good! New post live now on my @Much… https://t.co/5kjgOTbPOn +08/16/2017,Actors,@shenaegrimes,When your best friend's a hairdresser and this is what Tuesday night dinner looks like. 💇💇‍♂️💇💇‍♂️ https://t.co/G8cNyrOieU +08/10/2017,Actors,@shenaegrimes,My whole world. 😁❤️😍 https://t.co/Yf9Xx0L9af +08/05/2017,Actors,@shenaegrimes,We know how to make an entrance...🕺🕺🕺 https://t.co/ujmjY0I2Hr +08/04/2017,Actors,@shenaegrimes,"Decisions, decisions... #domesticaf https://t.co/61vWgUZYKb" +08/02/2017,Actors,@shenaegrimes,Reunited with my bestest at long last!!! 😍😍😍 https://t.co/AC0hzXmY7h +07/31/2017,Actors,@shenaegrimes,#DIY Sunday!!! 💪 #domesticpunk https://t.co/udZaMITo6s +07/30/2017,Actors,@shenaegrimes,Ahhhh!!!! Nostalgia on point @rooneyband show! First night back in LA and spent it in an episode… https://t.co/2bpuVsgMPO +07/28/2017,Actors,@shenaegrimes,Peace out 🇨🇦!!! Been another epic 🎥adventure and this one was extra special for bringing me back… https://t.co/rBWFHOpTSk +07/26/2017,Actors,@shenaegrimes,Last day on set with amazing folks like this guy @5star_gucci that I get to call my crew and… https://t.co/cpHGqGyGmu +07/25/2017,Actors,@shenaegrimes,Downtime on set with my lil monster. 💋💀🖤💀💋#bleached #setlife🎥 https://t.co/eIyrIPm1Oh +07/24/2017,Actors,@shenaegrimes,"Hot damn, my cast mates are epic human beings. Can't believe we're filming the season finale… https://t.co/05G7LKwI4V" +07/21/2017,Actors,@shenaegrimes,They say imitation is the sincerest form of flattery... right?! I ❤️ our crew!!! #tgif #classic… https://t.co/dDFcer0zLB +07/19/2017,Actors,@shenaegrimes,Outtake from upcoming post on https://t.co/o2Yfoy4CNe 💋 #streetstyle #the6ix #lostinlala // 📸 :… https://t.co/CRstaYfh6i +07/18/2017,Actors,@shenaegrimes,Baby sis is on her own set these days following in someone's footsteps!!! Ah!!!🎬🌟🎥 #minime https://t.co/xH7jIW50Nn +07/17/2017,Actors,@shenaegrimes,How was your weekend?! Deets on mine & my delicious dessert idea for summer shindigs here! #pickyourpepper #Walmart… https://t.co/wAoIW9Y2yW +07/09/2017,Actors,@shenaegrimes,💋 #SummerInThe6ix https://t.co/HlqXwBQt04 +07/07/2017,Actors,@shenaegrimes,#friyay 💋 https://t.co/ZVMY2Sdqpc +07/06/2017,Actors,@shenaegrimes,This babe's only been gone for 12 hours and I already miss him madly... #lovesick #twohalves https://t.co/8jryKroRwa +07/04/2017,Actors,@shenaegrimes,When your husband tries to photobomb your Insta vid and doesn't know you have a face mask on... 😱 https://t.co/Er70nEQvzK +07/03/2017,Actors,@shenaegrimes,Stoop chillin' in #the6ix 😎 https://t.co/45d4ZVFfaa +06/30/2017,Actors,@shenaegrimes,Outtake from a photo shoot for an indie flick I did a little while back...in select Canadian… https://t.co/wlYOAvKWWR +06/28/2017,Actors,@shenaegrimes,Dog daze. 🐶 https://t.co/0wxLq1dJ5H +06/27/2017,Actors,@shenaegrimes,"Saying hello to summer with my new fave accessory, PANDORA’s leather braided charm bracelet!… https://t.co/HfAtD3aaal" +06/26/2017,Actors,@shenaegrimes,#dutchdreams 🍦 https://t.co/Vc9a4jYboE +06/25/2017,Actors,@shenaegrimes,🌈 #bettertogether 🌈 https://t.co/5BYAwxZz3Z +06/25/2017,Actors,@shenaegrimes,🌈 #bettertogether 🌈 https://t.co/Tgo95LlcPu +06/25/2017,Actors,@shenaegrimes,"Happy #pride from me and my baby sis aka the future! Love seeing her learn, support and… https://t.co/EeklBgMd1B" +06/23/2017,Actors,@shenaegrimes,Happy #friyay !!! 😍 https://t.co/J6Z947zzUu +06/19/2017,Actors,@shenaegrimes,About last night... when I became an honorary member of DNCE ... for 2 seconds #irl but forever… https://t.co/yseM6n2Ph0 +06/19/2017,Actors,@shenaegrimes,Thanks for having me #MMVAs ... loved getting to meet so many of you! Had a blast with… https://t.co/3pP7YS3169 +06/19/2017,Actors,@shenaegrimes,At the #MMVAs waiting to present! Thanks for the beautiful makeup @fashionliterati… https://t.co/u9nC5kCd3Z +06/22/2018,Actors,@JessicaLStroup,Legit fangirling out over here to my new favorite band thetorsband. Their harmonies are what dreams are made of. https://t.co/Ge1IbHoCdD +06/20/2018,Actors,@JessicaLStroup,RT @ashleyn1cole: I still remember every single person (read: white man) who the day after the election told me to calm down it wasn't goin… +06/16/2018,Actors,@JessicaLStroup,Swooooooon #thebeachboys @ Hampton Court Palace… https://t.co/ZlUJse9FRL +06/09/2018,Actors,@JessicaLStroup,Having the best time with these weirdos at… https://t.co/ghlhRrU7WU +06/08/2018,Actors,@JessicaLStroup,"Reach out. Please, please, reach out. You are not alone. National Suicide Prevention Lifeline number is 1-800-273-8… https://t.co/bx9mJJJbkk" +06/08/2018,Actors,@JessicaLStroup,"RT @laurenduca: If you need it, after hearing of *Anthony Bourdain's death or because of something else entirely, the National Suicide Prev…" +06/04/2018,Actors,@JessicaLStroup,@JamesPurefoy Happy birthday from me in a terrifying mask of you. 🔥 https://t.co/jWSatQJLrd +06/04/2018,Actors,@JessicaLStroup,I love you. https://t.co/VoULmPk9Md +05/25/2018,Actors,@JessicaLStroup,Can’t wait to see this!!! https://t.co/DLfxdjvs9P +05/22/2018,Actors,@JessicaLStroup,I can’t... I just can’t with this. It’s amazing. https://t.co/Cx9ZuJm4g8 +05/20/2018,Actors,@JessicaLStroup,💔 https://t.co/x1TxitHvNQ +05/15/2018,Actors,@JessicaLStroup,@taogeoghegan WHAT A RIDE TODAY!!! Such a beast out there. It hurt just watching! So proud of you! 🚵🏻‍♂️ #MVP… https://t.co/nGYjYTZZ2B +05/11/2018,Actors,@JessicaLStroup,One of my favorite (and most inspiring) people on the plant has written a BOOK! @scottharrison I’m so proud and exc… https://t.co/sRzAehhErI +05/11/2018,Actors,@JessicaLStroup,@JamesPurefoy I couldn’t agree more. +05/03/2018,Actors,@JessicaLStroup,"I feel so lucky. + +@ashtonlunceford pauljames_6 @ Central Park Manhatan https://t.co/zY8wrGnXHz" +05/01/2018,Actors,@JessicaLStroup,Looking for an epic read this summer? I highly recommend Song of Blood and… https://t.co/KqAAYIYRoj +04/27/2018,Actors,@JessicaLStroup,Baby girl just turned 9!!!! Check out that action shot tho!😂💃🏻❤️ https://t.co/oc7DR1bNbN +04/18/2018,Actors,@JessicaLStroup,#moodeverydayallday https://t.co/SLVjn1mqfv +04/17/2018,Actors,@JessicaLStroup,RT @MadameGandhi: Set time 8-8:40pm tonight at the Getty Museum Los Angeles! Free show! +04/16/2018,Actors,@JessicaLStroup,I❤️U https://t.co/LmgsNsQFVz +04/13/2018,Actors,@JessicaLStroup,RT @kevinbacon: I mean come on! Look at this cast how could you not watch. https://t.co/SZQ8tFv8dt +03/25/2018,Actors,@JessicaLStroup,Thank you @jhenwick for taking me to see #Yerma last night. Still reeling. @billiepiper you are… https://t.co/BwBnZ7YzvR +03/25/2018,Actors,@JessicaLStroup,I saw Yerma last night. It’s the best show I’ve ever seen. Mind blowing. Must see. @billiepiper you are a goddess.… https://t.co/TunvEFuT2Y +03/22/2018,Actors,@JessicaLStroup,RT @scottharrison: 1894 people have joined Nora in giving $8.15 today to celebrate #worldwaterday - we’re so inspired by the heart and visi… +03/22/2018,Actors,@JessicaLStroup,"Today is #WorldWaterDay. Six-year-old Nora gave $8.15 so people can have clean water. Today, my friends at… https://t.co/BpbZmbfqcV" +03/21/2018,Actors,@JessicaLStroup,Just posted a photo https://t.co/OsxWwP49tV +03/21/2018,Actors,@JessicaLStroup,Just posted a photo https://t.co/pTuHgrocLw +03/07/2018,Actors,@JessicaLStroup,"Blue wall. @ New York, New York https://t.co/4hpp8ZiilF" +03/07/2018,Actors,@JessicaLStroup,"Blue sky. @ New York, New York https://t.co/nNC6jgs4Ee" +02/27/2018,Actors,@JessicaLStroup,"@Emma4Change Go’on girl. Speak your truth. Takes bravery to stand up for what you believe in, especially in the fac… https://t.co/NydCsQqat7" +02/22/2018,Actors,@JessicaLStroup,RT @oliviawilde: Underestimate them at your own risk. 🙌 #wcw 🙌 https://t.co/o26JIqQfoV +02/22/2018,Actors,@JessicaLStroup,RT @Emma4Change: Everyone get out there and Register/Pre-register to vote !!! It takes barely 4 minutes https://t.co/0EMgYudKqS +02/22/2018,Actors,@JessicaLStroup,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/20/2018,Actors,@JessicaLStroup,"RT @kindness_org: This act of kindness is simple, yet really profound. #choosekindness https://t.co/EgGL3Xb1qI" +02/17/2018,Actors,@JessicaLStroup,"Might have underestimated Willow’s, uh, “large personality” when I bought this bag. 🤦🏻‍♀️ https://t.co/2nCjxrEzN3" +02/16/2018,Actors,@JessicaLStroup,RT @nowthisnews: ‘Can we not acknowledge in this country that we cannot accept this?’ — This former FBI official broke down in tears on CNN… +02/15/2018,Actors,@JessicaLStroup,"RT @LettersOfNote: ‘Please keep kids safe from guns’ + +https://t.co/UECloGXfSA https://t.co/eaJnQWIPOa" +02/15/2018,Actors,@JessicaLStroup,RT @RVAwonk: daaaaaamn @NYDailyNews. https://t.co/Yhv2JN4j7K +02/11/2018,Actors,@JessicaLStroup,A great read. https://t.co/mufpBJUDOU +02/05/2018,Actors,@JessicaLStroup,"RT @ArielleKebbel: 🚨 ALERT 🚨 Updated flyer w/ new contact numbers to call if you know anything about my sister Julia. Pls read, repost prin…" +01/24/2018,Actors,@JessicaLStroup,@luhvely Whooooaaaaaaaaa +01/20/2018,Actors,@JessicaLStroup,This is incredible. Please watch. https://t.co/SpTsLLNWjs via @youtube +01/07/2018,Actors,@JessicaLStroup,RT @MsEmilyLiner: Here's the paper by Erin Hengel that's tearing up #ASSA2018 https://t.co/uJupAySs7T https://t.co/92b3Y9WvNA +01/07/2018,Actors,@JessicaLStroup,❤️❤️❤️ https://t.co/ZjRBhLDzEG +01/03/2018,Actors,@JessicaLStroup,"@TessaJeanMiller @TheCut Love me some #JodieFoster and @blackmirror but I agree, I just couldn’t get on board with… https://t.co/oWhjHodStF" +01/03/2018,Actors,@JessicaLStroup,RT @TessaJeanMiller: Eyyyyy I wrote this for @TheCut! https://t.co/iIgZVtIUON +01/03/2018,Actors,@JessicaLStroup,RT @GeorgeLakoff: Trump uses social media as a weapon to control the news cycle. It works like a charm. His tweets are tactical rather than… +01/03/2018,Actors,@JessicaLStroup,RT @EarnKnowledge: Look again at this dot... https://t.co/wpFq00BzmH +12/27/2017,Actors,@JessicaLStroup,Together again!! Finally! Love these ladies. 💗🍻🤗#highschoolbests #regram @ Sycamore Brewing https://t.co/CFXCXHtMY4 +12/27/2017,Actors,@JessicaLStroup,Christmas got me like... @ North Carolina https://t.co/b9hjEaS1F6 +12/23/2017,Actors,@JessicaLStroup,RT @HaileeSteinfeld: #PITCHPERFECT3 is OUT NOW ! https://t.co/37RPNQInCV +12/22/2017,Actors,@JessicaLStroup,"RT @martyrdumb: @HerdzJ @JessicaLStroup @youthfilm2016 So glad you liked it, @HerdzJ!" +12/13/2017,Actors,@JessicaLStroup,Kindergartner starts her own business to help others https://t.co/9E0xkn3nw1 +12/13/2017,Actors,@JessicaLStroup,So proud of my incredible 6 year old niece. Heart of gold.🎄🎁💖🎅🏻👼https://t.co/9E0xkn3nw1 +12/11/2017,Actors,@JessicaLStroup,"You may have seen this, maybe not, but this is Ryland Ward. His two sisters and his mother were… https://t.co/t7G4s6cEo7" +12/10/2017,Actors,@JessicaLStroup,"The noise they make. 😂 @ New York, New York https://t.co/IG9IYJfc2p" +12/09/2017,Actors,@JessicaLStroup,Holiday decorations 💯 @ Soho https://t.co/1TYcWTVKRt +12/09/2017,Actors,@JessicaLStroup,First snow of the season!! Willow isn’t quite as amused as me. #laughingwithyounotatyou 😂👅🧤 @ Soho https://t.co/7WCeB71EnV +12/08/2017,Actors,@JessicaLStroup,RT @thefliestcoco: Ryland lost his mom and two sisters in the Sutherland Springs Church shooting. His family is asking if we can send Chris… +12/07/2017,Actors,@JessicaLStroup,😂😂😂 https://t.co/yECBfPWSWJ +12/06/2017,Actors,@JessicaLStroup,"Wanda, I want to be your friend too. https://t.co/KHH3PtmTwj" +12/05/2017,Actors,@JessicaLStroup,Got fancy for a great cause last night! So proud to support @charitywater. They never fail to up… https://t.co/kJjlUg49v7 +12/01/2017,Actors,@JessicaLStroup,RT @TheSun: EXCLUSIVE: Hero Army dogs face being put down despite saving thousands of lives https://t.co/nawgdY19p9 +11/29/2017,Actors,@JessicaLStroup,Big fan of @waitbutwhy and @tferriss 👍🏻🙌🏻 https://t.co/WnanfhniUj +11/26/2017,Actors,@JessicaLStroup,This pic is from the Florida State game but the sentiment remains true right now. U of South… https://t.co/NbTgzzYpLa +11/25/2017,Actors,@JessicaLStroup,Just saw @LadyBirdMovie with my mom 👏🏻👏🏻👏🏻❤️😭☺️❤️👏🏻👏🏻👏🏻 +11/24/2017,Actors,@JessicaLStroup,🤔“Why Reality Is an Illusion” by @Zat_Rana https://t.co/aHD7KNLAOq +11/23/2017,Actors,@JessicaLStroup,"RT @LettersOfNote: On this day in 1963, C. S. Lewis died. John F. Kennedy was killed an hour later. 7hrs after that, Aldous Huxley also dre…" +11/20/2017,Actors,@JessicaLStroup,"I love my friends. Also, no one died. A miracle. Happy birthday @sadowski23 @ Moonlight Rollerway https://t.co/a1qNAGrPKI" +11/18/2017,Actors,@JessicaLStroup,RT @abigailspencer: Change is a coming! Love these women forging the way with their incredible intellect & fabulous work. 🙌🏼 https://t.co/h… +11/15/2017,Actors,@JessicaLStroup,Pick up by @BastienKeb 🎧🎼📞 https://t.co/wjJ4PxlpEL +11/13/2017,Actors,@JessicaLStroup,Kindness wall in London! 🤗💞#worldkindnessday #choosekindness kindnessorg https://t.co/nFlWpwe9Cl +11/13/2017,Actors,@JessicaLStroup,Happy #worldkindnessday #choosekindness kindnessorg @ North Carolina https://t.co/t8W4ATOqMR +11/13/2017,Actors,@JessicaLStroup,Happy #worldkindnessday2017 #ChooseKind 💖💗💖 https://t.co/Buc0Mo214A +11/12/2017,Actors,@JessicaLStroup,RT @EllenPage: https://t.co/GpfdK6fgFB +11/11/2017,Actors,@JessicaLStroup,Come on @UnknownAcct 😼🙌🏻!!! @ Clemson Death Valley Stadium https://t.co/OvCqXPa7Na +11/10/2017,Actors,@JessicaLStroup,"RT @kindness_org: Dear World: This World Kindness Day, I’ve got you. We’ve had some really challenging times this year that have made our h…" +11/08/2017,Actors,@JessicaLStroup,🙌 https://t.co/N1De0FtX28 +11/08/2017,Actors,@JessicaLStroup,RT @LEBassett: The man who wrote the anti-trans bathroom bill just lost the election to a trans woman. Let that sink in. https://t.co/KFEZX… +11/08/2017,Actors,@JessicaLStroup,RT @davidaxelrod: .@POTUS has pulled every trick in the book to discourage signups yet the ACA is posting record enrollment! Big message in… +11/08/2017,Actors,@JessicaLStroup,RT @TomPelphrey: If anyone will be around NYC and is interested... this is a great organization doing really good work. 😊 https://t.co/f1a… +11/07/2017,Actors,@JessicaLStroup,RT @SenFeinstein: Teachers spend $1.6 BILLION per year on school supplies. The Republican tax bill ELIMINATES their ability to deduct those… +11/07/2017,Actors,@JessicaLStroup,RT @scottharrison: 10 new jobs posted at @charitywater - join an amazing team and work with purpose in the service of others! https://t.co… +11/07/2017,Actors,@JessicaLStroup,RT @BarackObama: Every election matters - those who show up determine our future. Go vote tomorrow! https://t.co/j1wh8hLamw +11/05/2017,Actors,@JessicaLStroup,🤦‍♀️ https://t.co/EKCYzq7XZ4 +11/05/2017,Actors,@JessicaLStroup,What an inspiration. Love you Brit Marling... @britmarling on Harvey Weinstein and the economics of consent https://t.co/2DlesWhLtb +11/03/2017,Actors,@JessicaLStroup,RT @WLKY: 9-year-old cancer patient asks for cards to celebrate 'last Christmas early https://t.co/BMud72HGUd https://t.co/lUwboCC3hY +11/01/2017,Actors,@JessicaLStroup,"RT @JeffFlake: Actually, the Gang of 8, including @SenSchumer, did away with the Diversity Visa Program as part of broader reforms. I know,…" +11/01/2017,Actors,@JessicaLStroup,RT @JoeBiden: Today is the first day to sign up for 2018 health insurance through https://t.co/3CYKhP8ZoR. Deadline is December 15th! https… +11/01/2017,Actors,@JessicaLStroup,"RT @ASlavitt: It's on! 2018 ACA enrollment has begun. + +80% can find plans under $75/month. Go to https://t.co/nYl9YWdSHm. + +Spread the word." +10/31/2017,Actors,@JessicaLStroup,RT @danpfeiffer: There’s a real contradiction between Facebook saying Russian ads had no impact and Facebook telling brands to spend millio… +10/31/2017,Actors,@JessicaLStroup,@lizsczudlo 🤣🤣💖 +10/31/2017,Actors,@JessicaLStroup,Best friends in foreign lands!!! ccsolis25 @rickymabe 👏🏻👏🏻 @ Kensington Gardens https://t.co/uJwv7leuXo +10/30/2017,Actors,@JessicaLStroup,"Mmuuhahaha 🎃 @ London, United Kingdom https://t.co/Tx4ONIwWev" +10/23/2017,Actors,@JessicaLStroup,"I liked a @YouTube video https://t.co/lo4S4DbD5M Portrait of Lotte, 0 to 16 years in 4 ½ minutes." +10/20/2017,Actors,@JessicaLStroup,Fall in London. 🍁💛 https://t.co/G1RoYfMvLZ +10/18/2017,Actors,@JessicaLStroup,RT @SenKamalaHarris: The deadliest mass shooting in our country’s history was 16 days ago. Conversations about gun violence have faded. We… +10/17/2017,Actors,@JessicaLStroup,"I sit with tears falling because I see a broken, selfish, bully of a man as our “president.”… https://t.co/ybXMtIKPN6" +10/17/2017,Actors,@JessicaLStroup,#firstamendment @ The White House https://t.co/FNCMymAE3e +10/17/2017,Actors,@JessicaLStroup,"Although I can’t bring myself to detail my own experiences in tweets, I want to say I support those speaking out against abuse. #MeToo" +10/15/2017,Actors,@JessicaLStroup,Sunday morning nature walks with my buddy Price. #RichmondVA #godmother❤️ @ James River Pony… https://t.co/e4pzHDFJ1q +10/14/2017,Actors,@JessicaLStroup,RT @rosemcgowan: This is what action looks like men of Hollywood. We don’t need your ‘I stand with you’ crap now. We need you to ACT https:… +10/12/2017,Actors,@JessicaLStroup,"RT @Jenny_Trout: I feel like if people wanted Clinton to come out and address every major event in the country, they probably should have e…" +10/12/2017,Actors,@JessicaLStroup,We’re all rootin’ for you Brock. Sending you so much love. Happy Happy Happy Halloween sweet boy. https://t.co/S7G2YYzJzE +09/26/2017,Actors,@JessicaLStroup,"Sending love out to everyone in need right now. You are not forgotten. 🌎💞 +...side note,… https://t.co/sSSvPwcdWW" +09/25/2017,Actors,@JessicaLStroup,"RT @Alejandrobot: ""Do not forget us, and do not let us feel alone."" Please take six minutes and watch this. San Juan is my home +🇵🇷 +https://…" +09/25/2017,Actors,@JessicaLStroup,Really glad we chose the dinosaur bus as our background ruthkearney @ Venice Beach https://t.co/riGe8AoOfl +09/24/2017,Actors,@JessicaLStroup,"RT @Khubbard991: My husband died for your right to #TakeAKnee. He would have supported you; I support you. Sincerely, a military widow." +09/17/2017,Actors,@JessicaLStroup,RT @jonlovett: Half of all boxing photos look like gay weddings https://t.co/K3sOhm2VlK +09/17/2017,Actors,@JessicaLStroup,“‘Between Heaven and Earth’” by @charitywater https://t.co/RZOvvsTkuM +09/17/2017,Actors,@JessicaLStroup,Dying. https://t.co/bkff9bk3Cz +08/23/2017,Actors,@JessicaLStroup,RT @nowthisnews: Trump’s pick for the USDA’s chief scientist isn’t a scientist at all – he’s a homophobic radio host https://t.co/JPwf4YZ5AJ +08/21/2017,Actors,@JessicaLStroup,😎 https://t.co/ooznpVXiuC +08/18/2017,Actors,@JessicaLStroup,TGIF https://t.co/vavOpKWf1D +08/16/2017,Actors,@JessicaLStroup,"RT @nke_ise: If you have ever had a problem grasping the importance of diversity in tech and its impact on society, watch this video https:…" +08/16/2017,Actors,@JessicaLStroup,RT @MichaelEaly: This👇 https://t.co/55HmA9A9gG +08/15/2017,Actors,@JessicaLStroup,That shadow though. 🐺 https://t.co/CrhLtXk6Jg +08/14/2017,Actors,@JessicaLStroup,RT @amaryllisfox: Remember originally we're all Pangean :) https://t.co/k962okSjyv +08/14/2017,Actors,@JessicaLStroup,"RT @ShaunKing: Friends, + +This family needs our help. + +13 y/o Noelle & her mother Alexis were hit by the car. Out of surgery. + +https://t.c…" +08/14/2017,Actors,@JessicaLStroup,RT @JasonKander: No one should forget that the birther movement emboldened white supremacists. Or that it was led by @realDonaldTrump. +08/14/2017,Actors,@JessicaLStroup,RT @Phil_Lewis_: The guy that organized that White supremacist rally in #Charlottesville gets ran off during a press conference https://t.… +08/13/2017,Actors,@JessicaLStroup,RT @nowthisnews: This cafe is demonstrating the gender pay gap in a powerful way https://t.co/0eBctJGyfw +08/13/2017,Actors,@JessicaLStroup,❤️ https://t.co/1uORiiPB4p +08/13/2017,Actors,@JessicaLStroup,😍 https://t.co/0RyBCIMzPg +08/13/2017,Actors,@JessicaLStroup,RT @TeflonDom187: This needs to be retweeted and shared over and over till everyone understands #Charolettesville https://t.co/5NsC8nXzmt +08/12/2017,Actors,@JessicaLStroup,"RT @GlennKesslerWP: Trying to imagine the president's response if this had started as an pro-Islam rally. Would ""all sides"" be at fault?" +08/12/2017,Actors,@JessicaLStroup,"RT @TopherSpiro: ""on many sides"" => Trump condemns those protesting Nazis" +08/12/2017,Actors,@JessicaLStroup,"RT @jonfavs: ""On many sides"" is the low point of a presidency that's already had a record number of low points." +08/12/2017,Actors,@JessicaLStroup,@realDonaldTrump Are you joking? YOU ignited this. Your pathetic excuse of a presidency has unleashed HATE from the… https://t.co/hUiPpB8O1l +08/07/2017,Actors,@JessicaLStroup,Just cracked open this fortune cookie and found no fortune inside. Really quite... unfortunate.… https://t.co/fVWVuYnvl0 +08/04/2017,Actors,@JessicaLStroup,Happy birthday lbstroup!!! Little #fbf to you and my brother drinking champagne while the 2016… https://t.co/59dAPTHVOE +07/31/2017,Actors,@JessicaLStroup,Got me all teary eyed. Lets make sure to take care of one another as best we can. Nothing but love. https://t.co/k8WLjGdILm +07/31/2017,Actors,@JessicaLStroup,RT @charitywater: These BioSand Filters are finished and will be providing clean water for families here in Kampong Cham Province later thi… +07/31/2017,Actors,@JessicaLStroup,THIS is my JAM https://t.co/AIqnYuDhrB +07/30/2017,Actors,@JessicaLStroup,My best. My ride or die. My soul sister. I thank the heavens for you. Happy birthday. You are so… https://t.co/4Y0wbuA1K4 +07/25/2017,Actors,@JessicaLStroup,RT @charitywater: Our team is headed to Cambodia tomorrow to visit our partner org and capture stories about your impact. Get ready for a l… +07/25/2017,Actors,@JessicaLStroup,"RT @ddiamond: EIGHT YEARS AGO TODAY — Obama does 2-hour health care town hall in Ohio, takes questions and defends his plan. https://t.co/u…" +07/25/2017,Actors,@JessicaLStroup,RT @gingerthejester: Caring teachers have been paying for supplies out of pocket since I was a kid. Bless this woman. Teachers should make… +07/18/2017,Actors,@JessicaLStroup,💪🏻 https://t.co/7aRnvSum4e +07/18/2017,Actors,@JessicaLStroup,RT @cehuey: #AlwaysBeYoung https://t.co/3I01jLZi69 +07/12/2017,Actors,@JessicaLStroup,"RT @nxthompson: What +if +the +Internet +was +so +slow +it +loaded +one +word +at +a +time +— +except +on +sites +that +paid +off +your +ISP? +#netneutral…" +07/12/2017,Actors,@JessicaLStroup,Must be some dream. #willowstongue #willow https://t.co/WnC7pl5S6q +07/12/2017,Actors,@JessicaLStroup,RT @stugillard: Two space rocks worth Two Million Dollars Check out https://t.co/WtUFQ5YtsF - & watch #salvation July 12 CBS BOOM! https://… +07/11/2017,Actors,@JessicaLStroup,"RT @davidfrum: It’s important to remember that Russia intervened in 2016 not only to elect Trump, but to help congressional GOP https://t.c…" +07/10/2017,Actors,@JessicaLStroup,🍒 https://t.co/egV5G9u8yf +07/03/2017,Actors,@JessicaLStroup,RT @i_D: nadya from pussy riot is rewriting what it means to be punk https://t.co/sSDmIhoSfa https://t.co/wzYfAZwJxN +07/02/2017,Actors,@JessicaLStroup,RT @abgutman: @realDonaldTrump I just reported @realDonaldTrump to Twitter as an account that threatens violent. I hope you join me and do… +06/29/2017,Actors,@JessicaLStroup,Must go. https://t.co/a81N98tja4 +06/14/2017,Actors,@JessicaLStroup,Devastated for the families involved in the fire in London. Praying for everyone. https://t.co/eY8JscCjNY +06/13/2017,Actors,@JessicaLStroup,@realDonaldTrump @ClemsonFB NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO… https://t.co/HW4YtNmATw +06/11/2017,Actors,@JessicaLStroup,"@thisissigrid ""Don't kill my vibe"" ...🖕🏻to the ones who've tried to break my stride. Go'on girl. #boss https://t.co/PWKHBxyaGj via @youtube" +06/10/2017,Actors,@JessicaLStroup,@linneahendrix not sure what any of this means but I love the way you sing! #BrilliantMinds17 👏🏻 https://t.co/g9YUkEpK8b +06/08/2017,Actors,@JessicaLStroup,@MadameGandhi you are an inspiration 👑❤️🔥#brilliantminds2017 @SymposiumSthlm +06/06/2017,Actors,@JessicaLStroup,My monthly donation to @charitywater is providing safety to young girls. Join me ✊🏻https://t.co/qzQFouWBWu #charitywater +06/01/2017,Actors,@JessicaLStroup,😞 https://t.co/HfoUTV0zpO +06/01/2017,Actors,@JessicaLStroup,Spread compassion. Girls who survived Portland's MAX Attack https://t.co/Jvh0IzzTot via @youcaring +06/01/2017,Actors,@JessicaLStroup,👋🏻 https://t.co/MxjIVQqt2T +06/01/2017,Actors,@JessicaLStroup,"@MerlinWizDawg 😂🇺🇸❤️ ""Trump Survival TV - Episode 1 - La Resistance"" on https://t.co/yvX9NV5qQD" +05/30/2017,Actors,@JessicaLStroup,"RT @JennKaytin: For those who didn't watch it the first time I RT'd it, here's this video of @jes_chastain again because it's that fucking…" +05/29/2017,Actors,@JessicaLStroup,RT @BarackObama: Forever grateful for the service and sacrifice of all who fought to protect our freedoms and defend this country we love.… +05/26/2017,Actors,@JessicaLStroup,Everything https://t.co/P7Ppb8NMwJ +05/20/2017,Actors,@JessicaLStroup,"My dance move: all about the finger point. Congrats to the beautiful bride @claire_stroup,… https://t.co/bgZYtUvwT8" +05/20/2017,Actors,@JessicaLStroup,Annnnnnd he's out. lbstroup https://t.co/lr3H592451 +05/20/2017,Actors,@JessicaLStroup,Camera weighed as much as her. Congrats to my coolest cousin @claire_stroup who just got… https://t.co/PGv4GipEnR +05/14/2017,Actors,@JessicaLStroup,Happy Mother's Day to my everything. I love you mom 😘💕 https://t.co/Z3yQJnxis1 +05/11/2017,Actors,@JessicaLStroup,You guys are the best!! 💕 https://t.co/RyPi6HjFor +05/09/2017,Actors,@JessicaLStroup,I agree. https://t.co/T6PLXSvqgh +05/08/2017,Actors,@JessicaLStroup,Interesting 👉🏻 How magic mushrooms can help with cancer-related anxiety and depression https://t.co/yxI6r0bthA +05/08/2017,Actors,@JessicaLStroup,Go'on girl 🙌 https://t.co/csaxxgnSjj +05/07/2017,Actors,@JessicaLStroup,@mattlanter 😻(@mackwilds where you at!?) https://t.co/CsWSajp4bn +05/07/2017,Actors,@JessicaLStroup,Old school girlfriends REUNITE! Thanks for a fun night supporting LA youth education @cityyearla!! https://t.co/pdK94pgjNU +05/06/2017,Actors,@JessicaLStroup,I just rewatched this like 4 times... so freaking hilarious 😂😂 https://t.co/sH57Fpbr4O +05/04/2017,Actors,@JessicaLStroup,"Neuralink and the Brain's Magical Future - Wait But Why https://t.co/IzznxoP0HY via @waitbutwhy +MINDBLOWING!!!" +04/29/2017,Actors,@JessicaLStroup,RT @ShawnRAshmore: Mavis was rescued from a kill shelter but needs a permanent home. Reach out to @maedayrescue #maedaymavis pls share http… +04/29/2017,Actors,@JessicaLStroup,My man @DeshaunWatson4. 🤗👏🏻 https://t.co/nVzihfffw6 +04/27/2017,Actors,@JessicaLStroup,"@chadwyoung my thoughts are with you, your family and the entire racing community. https://t.co/phn7xgfuxK" +04/21/2017,Actors,@JessicaLStroup,I #StandForWildlife. Join me in the #EarthDay Challenge with a donation to @TheWCS. Ur gift will have 2x the impact: https://t.co/9Zhqn9LWCy +04/21/2017,Actors,@JessicaLStroup,Go'on Sam!! 👏🏻@samunderwood https://t.co/Xaanj8OfIi +04/20/2017,Actors,@JessicaLStroup,"RT @Khanoisseur: @SenJohnMcCain @WSJ Hey @SenJohnMcCain, YOU voted to confirm Tillerson; YOU knew this was coming; what's your next brillia…" +04/18/2017,Actors,@JessicaLStroup,@appearhere continues to inspire hope for the dreamers #ImadsSyrianKitchen https://t.co/cWcjUb8NHp via @youtube +04/15/2017,Actors,@JessicaLStroup,Just walked outside after cheering on #aprilthegiraffe and THIS was above me! Haha I love life's… https://t.co/5nvSWkNCCc +04/15/2017,Actors,@JessicaLStroup,YESSSS APRIL THE GIRAFFE! 👏🏻👶Have you been following this miracle of life? Love it. https://t.co/b5g8uZKEMG via @youtube +04/10/2017,Actors,@JessicaLStroup,Are you kidding me @CoreyStewartVA ?? Take down your damn confederate flags. I thought Virginia was for lovers... 💔 https://t.co/QrLfdkhKMQ +04/08/2017,Actors,@JessicaLStroup,My best friend and a field of poppies. Love you @jenniferbkaiser @ Antelope Valley California… https://t.co/kgT6GugdlW +04/06/2017,Actors,@JessicaLStroup,Baby girl. #willow https://t.co/JwNyI9jM0D +04/06/2017,Actors,@JessicaLStroup,@Big_Little_Lies Wow. Wow. Wow. ...just... thank you. +04/02/2017,Actors,@JessicaLStroup,Donate to this worthy cause. 🤣https://t.co/McCOicZaRV via @youtube +04/01/2017,Actors,@JessicaLStroup,Singapore you rock my world. Can't wait to come back. 👋🏻 @finnjones @TomPelphrey @benjaminkheng… https://t.co/KoIyBTJ2X3 +03/31/2017,Actors,@JessicaLStroup,We have fun. #chillicrab #fridaynightsinsingapore #needmorebibsinmylife @ Palm Beach Seafood… https://t.co/DuqB3zsbyW +03/31/2017,Actors,@JessicaLStroup,#lifegoals @ Marina Bay Singapore https://t.co/BLdPlxcg0c +03/31/2017,Actors,@JessicaLStroup,Right before our press conference here in Singapore! Been such a fun press tour. Loving this… https://t.co/I4ekQcmwGU +03/30/2017,Actors,@JessicaLStroup,This just happened. My Korea trip is complete. 😂🤖💯 @ Bandar Udara Internasional Incheon https://t.co/hx66VE85Ge +03/28/2017,Actors,@JessicaLStroup,“Four-and-a-half false statements EPA head Scott Pruitt made in just one interview” by @climateprogress https://t.co/Ydm5sIl9bw +03/28/2017,Actors,@JessicaLStroup,"Caught @finnjones checking out his huge glowing marvelironfist billboard in Seoul, South Korea!… https://t.co/gIqeoHPZcw" +03/25/2017,Actors,@JessicaLStroup,Fantastic read: You're sexist. And so am I. https://t.co/AABsn9q6rn via @usatoday +03/23/2017,Actors,@JessicaLStroup,"💗this. @sacha_dhawan is the man. Iron Fist star Sacha Dhawan talks Davos, villainy and Marvel https://t.co/n20VsmLohc via @squaremile_com" +03/23/2017,Actors,@JessicaLStroup,@ZosiaRMamet is bringing out the big guns for @ACLU at 6 PM March 31 on Facebook live. I'll be supporting b/c I stand for rights... do you? +03/23/2017,Actors,@JessicaLStroup,"This is incredibly important: Tom Hanks, Tina Fey, Alec Baldwin Set for ACLU Telethon on Facebook Live https://t.co/Q8PzbRYXTc via @variety" +03/21/2017,Actors,@JessicaLStroup,"""Aghhhh you stupid-freakin-FLY!! You will not defeat me!!!"" https://t.co/5OlHUj8xA9" +03/21/2017,Actors,@JessicaLStroup,"RT @fabiochiusi: ""a dangerous precedent that mirrors the behavior of authoritarian regimes"" https://t.co/JTQOrtlb5H via @aclu" +06/30/2018,Actors,@MattLanter,RT @woahashli: Hey fellow Clockblockers! Please check out this AMAZING artwork I commissioned from @littlemachine_ of Lyatt! I've been dyin… +06/28/2018,Actors,@MattLanter,#tbt I didn’t choose the thug life. The thug life chose me. #minimatt https://t.co/cKv76a9IgQ +06/27/2018,Actors,@MattLanter,"RT @MM_96_8: Hey look it's @MattLanter!! If u havent seen the USS Indianapolis movie on Netflix, give it a watch!! It's a great movie that…" +06/26/2018,Actors,@MattLanter,Niiiiiice! 10 years! Can’t wait for this panel. https://t.co/c8f8GQHenU +06/25/2018,Actors,@MattLanter,#deletedscene I like the *new Future Lucy better 😁 #SaveTimeless https://t.co/TIkPNVxHx3 +06/25/2018,Actors,@MattLanter,I like this guy. Put him in the Lifeboat and give Wyatt a break on the next mission! 😜 #SaveTimeless https://t.co/6e6uSDmA9b +06/24/2018,Actors,@MattLanter,"RT @arikalisanne: This guy’s my boss, so, I’d go ahead and do what the man says... Get loud. #SaveTimeless https://t.co/dvDDCwqH2s" +06/22/2018,Actors,@MattLanter,RT @THR: #Timeless has been canceled (for a second time) at NBC: https://t.co/TuOQKyHT5A +06/22/2018,Actors,@MattLanter,"RT @Sony: | ̄ ̄ ̄ ̄ ̄| +| TIME | +| TEAM | +| FOREVER | +| _____| +(\__/) || +(•ㅅ•) || +/   づ" +06/22/2018,Actors,@MattLanter,Sounds like one of our only options right now is the possibility of a 2 hour movie finale. Let @nbc know if you’d l… https://t.co/SQ7KRTCNnP +06/22/2018,Actors,@MattLanter,I love you #Clockblockers. You’ve fought so hard and deserve so much more. #Timeless https://t.co/XmIblLJRkt +06/22/2018,Actors,@MattLanter,Loved this scene. #Timeless https://t.co/809ssPnpF1 +06/21/2018,Actors,@MattLanter,Of all the shows... we ranked #1. Pretty sweet. #Timeless https://t.co/5AzrFkfrJp +06/21/2018,Actors,@MattLanter,RT @HollieJoyJoy: @MattLanter @ryan_connolly Ok... #lyatt fans... Matt talks about shooting the scene when Wyatt comes over to Lucy’s house… +06/21/2018,Actors,@MattLanter,Had a blast chatting about career and life on the new #FilmRiotPodcast thanks @ryan_connolly https://t.co/WlewfmBInx +06/21/2018,Actors,@MattLanter,Congrats Matt! https://t.co/5jiy11Aljy +06/20/2018,Actors,@MattLanter,I would LOVE to do @EAStarWars !! https://t.co/NYJC0wkuDB +06/18/2018,Actors,@MattLanter,This really says something. Our #clockblocking fans are the greatest! #RenewTimeless https://t.co/ULJpd4PHyG +06/17/2018,Actors,@MattLanter,Putting my baby’s toes in the ocean for the… https://t.co/5wT0oCAOeS +06/17/2018,Actors,@MattLanter,Thank you son. #CloneWarsxSagaMashup #StarWars @starwars https://t.co/3WYFSpSTw3 +06/17/2018,Actors,@MattLanter,RT @acofell: #writerslife is sadly really about torturing characters. Killing their dreams. Want a dramatic scene? Figure out what your… +06/14/2018,Actors,@MattLanter,Wait is this real? How do I get one? https://t.co/3XXYppxIYi +06/13/2018,Actors,@MattLanter,"If you can’t beat em, dab on em #RenewTimeless https://t.co/AApcxruONb" +06/11/2018,Actors,@MattLanter,We had a blast with @shenaegrimes and… https://t.co/wInVMcNdvj +06/11/2018,Actors,@MattLanter,Today would be a good day to #RenewTimeless #justsayin +06/08/2018,Actors,@MattLanter,RT @Sony: #NationalBestFriendsDay #Timeless https://t.co/WXfVwWncxO +06/06/2018,Actors,@MattLanter,Sweet! #renewtimeless also worth noting that the original show was called “Time” not “Timeless” https://t.co/KLzY6Fecpb +06/06/2018,Actors,@MattLanter,"RT @therealKripke: Okay, people, first: #Clockblockers are a strong, brilliant and united fandom. Second, we're still awaiting word. Frustr…" +06/06/2018,Actors,@MattLanter,Awesome posters! #RenewTimeless https://t.co/Z8bC4OQPbe +06/05/2018,Actors,@MattLanter,Newly released #Timeless script pages from one of our final scenes. #RenewTimeless https://t.co/CTbgjyTBEP +06/04/2018,Actors,@MattLanter,I’ll add “tearful puppy dog eyes” to my special skills section of my resume 😜 #RenewTimeless https://t.co/DUFYg7k470 +06/03/2018,Actors,@MattLanter,The last of the #deletedScenes #RenewTimeless https://t.co/XLsUTFtDTq +06/03/2018,Actors,@MattLanter,Check out some released script pages of episode #108 “Bonnie & Clyde” where Wyatt/Lucy kiss for the first time..… https://t.co/BoOSzBQ48F +06/02/2018,Actors,@MattLanter,#deletedscenes #moodyWyatt #RenewTimeless https://t.co/XzVonuWKUF +05/31/2018,Actors,@MattLanter,"RT @TheTimelessRoom: You're 500 retweets away from today's deleted scene. Let's see how quickly we can get there #ClockBlockers. + +And let's…" +05/29/2018,Actors,@MattLanter,#deltedScenes #Flucy https://t.co/k6XTYwXhkz +05/29/2018,Actors,@MattLanter,"New #DeletedScenes!! Lucy sings, Wyatt stares, bullets are fired! 👀👀 https://t.co/x0DcGp23Nw" +05/28/2018,Actors,@MattLanter,Playoffs. It’s a @cavs house. @nba https://t.co/tBk4xNjAXn +05/27/2018,Actors,@MattLanter,RT @TheTimelessRoom: Hey #ClockBlockers! We hope you're enjoying these deleted scenes. Please keep pounding social media with your desire t… +05/27/2018,Actors,@MattLanter,#DeletedScene Alert! #renewtimeless https://t.co/7BanZd3NTj +05/27/2018,Actors,@MattLanter,"RT @fairvictorious: Signal boost! We need to make up some ground, Clockblockers! VOTE for #Timeless, Abigail, Matt, Claudia, Goran, and Lya…" +05/26/2018,Actors,@MattLanter,"RT @David_C_Hoffman: @NBCTimeless - today’s deleted scene, #clockblockers. Can we get up to 100k views again?? #timeless #RenewTimeless #L…" +05/26/2018,Actors,@MattLanter,"#DeletedScenes Wyatt tucks and and kisses an exhausted Lucy. #RenewTimeless there ya go #Lyatt fans, Happy Saturday. https://t.co/h2fAXSkfP9" +05/25/2018,Actors,@MattLanter,My man https://t.co/9K1pI13u98 +05/25/2018,Actors,@MattLanter,More #DeletedScenes! Rittenhouse family goodness! #RenewTimeless https://t.co/3zycKZ2rK1 +05/25/2018,Actors,@MattLanter,We aren’t finished yet. #RenewTimeless https://t.co/g6tGIHo57m +05/25/2018,Actors,@MattLanter,Breaking the internet. One of our many talents. #DeletedScenes #Timeless #RenewTimeless https://t.co/NMX8qiAH4Y +05/25/2018,Actors,@MattLanter,Woohoo! #Timeless https://t.co/TrJXr6SaXU +05/25/2018,Actors,@MattLanter,RT @arikalisanne: You know what would be really awesome? 100k views by morning. Go. #Timeless #RenewTimeless https://t.co/5zkNxGBZAf +05/25/2018,Actors,@MattLanter,Once https://t.co/BWhWBfrble +05/25/2018,Actors,@MattLanter,"Actually they heated it to be super warm for us! Also, it was about 5:30am when we shot that! #deletedscene… https://t.co/fClquzMF77" +05/25/2018,Actors,@MattLanter,Uhhhhh woe. 🔥 #DeletedScene #Kiss 💦💦 #RenewTimeless https://t.co/TqPANjJVKT +05/24/2018,Actors,@MattLanter,"I’ll be honest. No, I don’t. 😐 https://t.co/VEsnDDf2pP" +05/24/2018,Actors,@MattLanter,"RT @CJsaurusB: Wyatt was there to protect the Princess, just as Lucy attended the Royal Wedding. @nbc @MattLanter @abigailspencer https://t…" +05/24/2018,Actors,@MattLanter,Went out last night. #wingman #NosesOn! Tune in… https://t.co/yXySTaFL1n +05/24/2018,Actors,@MattLanter,"RT @TheTimelessRoom: You all got to those 5,000 likes and 2,500 retweets quicker than we thought you would! Working with our post departmen…" +05/24/2018,Actors,@MattLanter,What a beautifully written article. @allisonshoe https://t.co/x16KmH1hyp +05/24/2018,Actors,@MattLanter,Congrats on your win @kelly_clarkson !! 🎼 +05/24/2018,Actors,@MattLanter,This was one of my favorite openings of the series. Picks up with #TimeTeam running through the woods already in a… https://t.co/zKBI0YmvK3 +05/23/2018,Actors,@MattLanter,Do u think @RoyalFamily @KensingtonRoyal would adopt me and @AngelaLanter in? https://t.co/YuDKCt6s04 +05/23/2018,Actors,@MattLanter,"I hear there is a pool makeout scene with Wyatt/Lucy? Can you confirm or deny. Thx, #Clockblockers https://t.co/qKqupe2XzH" +05/23/2018,Actors,@MattLanter,Oh @TheCrownNetflix why have you not come into my life sooner? +05/23/2018,Actors,@MattLanter,#renewtimeless let’s see em. #hopeidontlookafool #deletedscenes https://t.co/qKqupe2XzH +05/22/2018,Actors,@MattLanter,RT @TheTimelessRoom: UPDATE: We know it's frustrating to our fans to not have an answer yet re: #RenewTimeless. We've been led to believe a… +05/21/2018,Actors,@MattLanter,Lol ♥️ u @kelly_clarkson #RenewTimeless https://t.co/vg1FA4esNr +05/21/2018,Actors,@MattLanter,"RT @SpoilerTV: #Timeless was one of @SpoilerTV's Scenes of the Week. +@NBCTimeless @MattLanter @TheTimelessRoom @nbc @malcolmbarrett @abiga…" +05/21/2018,Actors,@MattLanter,I need to see vid stat! 😂 https://t.co/VBU43NOUNz +05/20/2018,Actors,@MattLanter,Gee I’m blushing 😘 https://t.co/BIqJbm4M7s +05/20/2018,Actors,@MattLanter,@MikeJelline Ya gotta just put em in their place. 😂 +05/19/2018,Actors,@MattLanter,This feels like one of those creepy paintings you see in Scooby Doo https://t.co/b1xFIsKrFg +05/19/2018,Actors,@MattLanter,Oh boy. Here we go again. I can totally hear both. https://t.co/h0zgMD44Vt +05/19/2018,Actors,@MattLanter,I meeeaan... https://t.co/LJit99eObQ +05/18/2018,Actors,@MattLanter,Thanks @KristaVernoff ! #RenewTimeless https://t.co/CCyT4yl8PT +05/17/2018,Actors,@MattLanter,"RT @NuviAdam: Over the last 7 days, @NBCTimeless has garnered over 400k mentions (with a spread of 348m+) on social, with 77k+ of them talk…" +05/17/2018,Actors,@MattLanter,@bryanedwardhill Thank you sir! +05/17/2018,Actors,@MattLanter,@geoffjohns Looking forward to it! +05/16/2018,Actors,@MattLanter,Clearly @angelalanter LOVES the #Timeless beard. https://t.co/GwnEBnWLmb +05/16/2018,Actors,@MattLanter,"Wow, this had to have taken a long time. Cool vid! #timeless https://t.co/3qmifm1ok1" +05/16/2018,Actors,@MattLanter,#tbt 1 year ago. Waiting on news for a #Timeless… https://t.co/1CXprnCJda +05/15/2018,Actors,@MattLanter,RT @NBCTimeless: Freshman year vs. Senior year: #Lyatt edition. #Timeless https://t.co/6lvkL4yC8f +05/15/2018,Actors,@MattLanter,RT @Lovely__Melan: Wyatt looks since season 1. Which one is your favorite ? @MattLanter @NBCTimeless @Sony #Timeless #RemewTimeless https:/… +05/15/2018,Actors,@MattLanter,RT @Hypable: Interview: @NBCTimeless star @MattLanter on Wyatt's journey in season two of #Timeless and his hopes for season three. #RenewT… +05/15/2018,Actors,@MattLanter,RT @cathycryan: Timeless: Social ratings prove it needs renewing https://t.co/c3FhboOzyR +05/14/2018,Actors,@MattLanter,"RT @abigailspencer: More hugging. Less fighting. Please? Thanks, Lucy. #Timeless https://t.co/1vQpCrzaQt" +05/14/2018,Actors,@MattLanter,This is awesome! #timeless https://t.co/gek24AcRbi +05/14/2018,Actors,@MattLanter,Future Wyatt & Future Lucy #timeless https://t.co/RqMu7zj0wt +05/14/2018,Actors,@MattLanter,Savage. #timeless https://t.co/o0aMPGvWsU +05/14/2018,Actors,@MattLanter,RT @Wersching: 🙌🏻 #Timeless https://t.co/PcYhSaBeRq +05/14/2018,Actors,@MattLanter,Truth #timeless https://t.co/Ml4TVcOHAq +05/14/2018,Actors,@MattLanter,RT @kelly_clarkson: MY MIND IS BLOWN #Timeless ....I am so happy right now I don’t know what to do. How will I sleep? What in the world?! T… +05/14/2018,Actors,@MattLanter,What!!? #FutureWyattFutureLucy #timeless https://t.co/7R0NTXjMVE +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: When the chips are down Wyatt and Flynn fight side by side. #timeless +05/14/2018,Actors,@MattLanter,Dat hug tho #timeless https://t.co/C9T8Oi258O +05/14/2018,Actors,@MattLanter,....I think ur missing something 🤨 #timeless https://t.co/8FPJfivQEg +05/14/2018,Actors,@MattLanter,The sci fi geek in me is soooo interested in Superpower Jiya. #timeless +05/14/2018,Actors,@MattLanter,Haha right. With that devilish smirk on his face! #timeless https://t.co/zfzj2Xue1Z +05/14/2018,Actors,@MattLanter,Easy when the writing’s great! #timeless https://t.co/bakJNJ2DXg +05/14/2018,Actors,@MattLanter,RT @WilliamShatner: #Timeless Harriet dreamt about Wyatt & Rufus? +05/14/2018,Actors,@MattLanter,"Fun fact: despite what you see on screen, we were losing light and shot that horse scene in about 20 minutes. That’… https://t.co/XhDQEsU2dD" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: Yep. We are. #Timeless https://t.co/RVnsDxRzSY +05/14/2018,Actors,@MattLanter,RT @kelly_clarkson: Watching #Timeless finale and I LOVE The General!! Yes!! This show is so cool. I can’t believe this might not be renewe… +05/14/2018,Actors,@MattLanter,RT @LanaJeany: I LOVE that badass entrance by Harriet Tubman AKA The General! This ep was written by @Mattney (AKA my crush!) -- who also w… +05/14/2018,Actors,@MattLanter,RT @booklover_Rita: @NBCTimeless That finale. No words to describe. Wow. #timeless +05/14/2018,Actors,@MattLanter,Lolol #timeless https://t.co/0NLdx6TZP7 +05/14/2018,Actors,@MattLanter,Stick around 😜 #timeless https://t.co/5cFvQNBZ0t +05/14/2018,Actors,@MattLanter,RT @WilliamShatner: #Timeless Time to jump +05/14/2018,Actors,@MattLanter,Me too!! #timeless https://t.co/Awy11aI1n6 +05/14/2018,Actors,@MattLanter,Whaaaaaaaaaaaat! #timeless +05/14/2018,Actors,@MattLanter,RT @NBCTimeless: He finally said it. #Timeless #Lyatt https://t.co/WMmXjGJPaI +05/14/2018,Actors,@MattLanter,#1 niiiiicce! #timeless https://t.co/4dpaZtnoMg +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: Aaaand now we’re up to this part. #Timeless https://t.co/nrsEYnYNg3 +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: Happy mother’s day from the Preston family! #Timeless https://t.co/v3XmWCStss +05/14/2018,Actors,@MattLanter,RT @samraemcgrath: WOW WHAT THE F JUST HAPPENED.... 😮😮😮 #TIMELESS holy F. Didn’t see that coming.... +05/14/2018,Actors,@MattLanter,Insane in 3..2...1.. #timeless +05/14/2018,Actors,@MattLanter,Jiya has gotten 1000% perfect more BA. #timeless +05/14/2018,Actors,@MattLanter,RT @alisongreenberg: There’s not enough beta blockers in the world to get through this finale #Timeless +05/14/2018,Actors,@MattLanter,True story #timeless https://t.co/lJZgNaPt2x +05/14/2018,Actors,@MattLanter,"I hurt for Wyatt, but Matt agrees with you. 😜 #timeless https://t.co/8E1TyXdGCG" +05/14/2018,Actors,@MattLanter,Nice job team ! #timeless https://t.co/2YMPk3Vxmx +05/14/2018,Actors,@MattLanter,RT @kevinsizemore: THANKS FOR HAVING ME ON @NBCTimeless .... @MattLanter @malcolmbarrett @Wersching .... but that @HornChristine playing #H… +05/14/2018,Actors,@MattLanter,Fun fact: I did not know @abigailspencer was going to hug me@in that moment. #timeless +05/14/2018,Actors,@MattLanter,She’s changed sooo much! #timeless https://t.co/vgx9euLNGN +05/14/2018,Actors,@MattLanter,"RT @TheAltSource: HARRIET SAW THE LIFEBOAT.😲 +HARRIET SAW THE LIFEBOAT.😲 +HARRIET SAW THE LIFEBOAT.😲 +#Timeless" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: You're going to want to take your medication before the second hour then. #Timeless https://t.co/euFTeS0DSF +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: Oops. The sleeper agent brought a 19th century pistol to a Delta Force party! #timeless +05/14/2018,Actors,@MattLanter,"RT @arikalisanne: Less than 30 minutes, East Coast. You might THINK you’re ready, but I promise... you are NOT ready for this... #Timeless" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: #5 Worldwide? Amazing. Keep it up #Clockblockers! #Timeless https://t.co/du1SwXVAH5 +05/14/2018,Actors,@MattLanter,Rhett...Butler. 😂 #timeless +05/14/2018,Actors,@MattLanter,#timeless fans of all ages! Huge #riya fan. https://t.co/cQKcQ5CFpT +05/14/2018,Actors,@MattLanter,RT @caz_mer: This episode has been great so far #timeless +05/14/2018,Actors,@MattLanter,The forbidden colors? WTH? #timeless +05/14/2018,Actors,@MattLanter,RT @arikalisanne: RT if you think @HornChristine is an amazing badass Harriet Tubman #RenewTimeless #Timeless +05/14/2018,Actors,@MattLanter,This is just wrong #timeless https://t.co/e1GLnZ1Wvk +05/14/2018,Actors,@MattLanter,Eeeyyooo keep it going! Talk about it! #timeless https://t.co/PykKq8bDg0 +05/14/2018,Actors,@MattLanter,Hah agreed #timeless https://t.co/aIolcv64O5 +05/14/2018,Actors,@MattLanter,Man @malcolmbarrett u do have a lot of one liners tonight #timeless +05/14/2018,Actors,@MattLanter,"RT @malcolmbarrett: Time team, biotch! #Timeless https://t.co/rAPN5fqrHk" +05/14/2018,Actors,@MattLanter,RT @arikalisanne: Why stop now? Make us #1 in the whole freaking world tonight! #Timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: It’s in every episode. #Timeless https://t.co/VvweJ9Fq2l +05/14/2018,Actors,@MattLanter,RT @AngelaLanter: Team #RenewTimeless in da house! #Timeless https://t.co/uXz8MSlkOL +05/14/2018,Actors,@MattLanter,RT @BelleRinger1: This is Us reference! @NBCTimeless #renewtimeless @nbc @TheTimelessRoom @abigailspencer @goranvisnjic @MattLanter @malcol… +05/14/2018,Actors,@MattLanter,Harriet in the houuuuse! #timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,Jessica acting weird. #timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,Tact? How? Byyyyy NOT telling them? #timeless https://t.co/QY76yWmWEv +05/14/2018,Actors,@MattLanter,"RT @NBCTimeless: Who has a time machine and is already trending in the United States?! + +🎉 #Timeless 🎉" +05/14/2018,Actors,@MattLanter,P-p-p-p pregnant! Bout to get a little complicated. #timeless +05/14/2018,Actors,@MattLanter,"RT @sakinajaffrey: “FOR MY SAKE? (Wyatt, silently screaming inside.) +@MattLanter #Timeless https://t.co/182gF82LWT" +05/14/2018,Actors,@MattLanter,@malcolmbarrett Or one two liner? #dadjoke #timeless #renewtimeless +05/14/2018,Actors,@MattLanter,Ok ok ok ok here we go. #Timeless #2hourfinale +05/14/2018,Actors,@MattLanter,On The plus side we can watch these kids and feel bad about ourselves that we never were and will never be the smar… https://t.co/XICdvyG9oN +05/14/2018,Actors,@MattLanter,"Uhhh ok, so I know we told you all to tune in at 9pm.. I guess @nbc had different plans? Stay tuned, it’s slightly delayed. #RenewTimeless" +05/14/2018,Actors,@MattLanter,"RT @NBCTimeless: Turns out there's a slight delay. Hang tight, #Clockblockers. #Timeless will be on soon! + +Meanwhile, this is us @ us rn.…" +05/14/2018,Actors,@MattLanter,RT @NBCTimeless: One hour to go until the #Timeless season finale!🎉 https://t.co/FKJR62xDDU +05/13/2018,Actors,@MattLanter,A final plea for #Timeless season 3 hopes. Tonight or never! 9pm. @SonyPictures @nbc @THR @Variety @DEADLINE @EW https://t.co/4cOwWgcrPV +05/13/2018,Actors,@MattLanter,MacKenlee and I sure are lucky to have this superwoman in our lives!… https://t.co/PX5iWqwlNe +05/13/2018,Actors,@MattLanter,RT @TVGuide: #Timeless fans better watch the Season 2 finale tonight if they want the show to return next season https://t.co/TxTOAZSGbZ ht… +05/13/2018,Actors,@MattLanter,It’s tonight or never. Ya gotta tune in LiVE! #renewtimeless https://t.co/RGTFgUUK23 +05/13/2018,Actors,@MattLanter,👇👇 #RenewTimeless https://t.co/Pyk8r5nRqZ +05/13/2018,Actors,@MattLanter,RT @DEADLINE: ‘Timeless’ Co-Creator Eric Kripke On Series’ Fate: “Could Go Either Way” https://t.co/tCMbFdAspo https://t.co/OkavH5SdWT +05/13/2018,Actors,@MattLanter,@rmayemsinger @alzassociation Wow. So true. +05/13/2018,Actors,@MattLanter,9pm 9pm 9pm TOMORROW night. Two hours! #Timeless https://t.co/wLt8NjxZGq +05/13/2018,Actors,@MattLanter,Oh the @AtlantaFalcons know I’m all in https://t.co/cKSmRuhcf5 +05/12/2018,Actors,@MattLanter,Ps. Should we watch the finale together orrrr? #RenewTimeless https://t.co/W95LQNjDSt +05/12/2018,Actors,@MattLanter,It’s destiny! #RenewTimeless #Season3GuestStar https://t.co/W95LQNjDSt +05/12/2018,Actors,@MattLanter,@Dan_Fogelman @MichaelAusiello So true! +05/11/2018,Actors,@MattLanter,RT @WBHomeEnt: #DeathofSuperman. Tomorrow. https://t.co/8Z1esuW6VP +05/10/2018,Actors,@MattLanter,"Coming soon #Timeless Sunday 2 hour FINALE at 9pm +Nine! +9! Yes I… https://t.co/DSbVktrnoK" +05/09/2018,Actors,@MattLanter,RT @allisonrmcmanus: #Timeless named one of the best TV shows of 2018 by Business Insider ❤️❤️❤️ #Clockblockers #RenewTimeless https://t.co… +05/07/2018,Actors,@MattLanter,RT @arikalisanne: Recreating the Reagan assassination attempt was one of the most complex historical recreations we’ve ever done... and pro… +05/07/2018,Actors,@MattLanter,Trending!!! #Timeless #RenewTimeless https://t.co/DBSvuqNH8O +05/07/2018,Actors,@MattLanter,RT @KatieGompert: Goosebumps & tears with this episode of @NBCTimeless #Timeless +05/07/2018,Actors,@MattLanter,RT @Lovely__Melan: And know we finally know why Wyatt was chosen! @MattLanter @sakinajaffrey #Timeless +05/07/2018,Actors,@MattLanter,Savage #RenewTimeless #Timeless https://t.co/vAAuEbmYdr +05/07/2018,Actors,@MattLanter,Agent Christopher...don’t ever potentially leave us again. #RenewTimeless #Timeless +05/07/2018,Actors,@MattLanter,🙆‍♂️🚙 u know what I’m talking about #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,"Wow, Christopher seeing her future in pictures. So powerful. #timeless #RenewTimeless" +05/07/2018,Actors,@MattLanter,We’re like one big Christmas package #Timeless #RenewTimeless https://t.co/joVnbKybVL +05/07/2018,Actors,@MattLanter,See even @kelly_clarkson digs it. #RENEWTIMELESS https://t.co/ljQyyPyOD7 +05/07/2018,Actors,@MattLanter,"Practice makes perfect. Wait what? +#RenewTimeless #Timeless https://t.co/jsC5LpAPZJ" +05/07/2018,Actors,@MattLanter,I feel like this might get a lot of retweets? 🤷‍♂️ #justsaying #renewtimeless #Timeless https://t.co/ffmgKMriSd +05/07/2018,Actors,@MattLanter,Also @JustDoumit with huge hair gives me life. #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,And @abigailspencer with the glasses takes the cake. 🎂 #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,I say we hurt this guy. #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,Let’s do this. #timeless viewing party!! #RenewTimeless https://t.co/zWalz9Bji9 +05/06/2018,Actors,@MattLanter,#RenewTimeless https://t.co/69xlYVfnXf +05/06/2018,Actors,@MattLanter,#RenewTimeless tonight at 10/9c https://t.co/d60PBN9MhZ +05/06/2018,Actors,@MattLanter,We can change history. #clockblockers #renewtimeless https://t.co/5muiKWGYOw +05/05/2018,Actors,@MattLanter,"Waiting for the new Ep of nbctimeless like... +Our fantastic Dp Jimmy Lindsey… https://t.co/3CRu6IL6aA" +05/05/2018,Actors,@MattLanter,Want #Timeless back for season 3? Read this 👇👇👇👀👀 https://t.co/AOlwzqJHpu +05/05/2018,Actors,@MattLanter,@chrissiefit Be careful out there +05/04/2018,Actors,@MattLanter,@sakinajaffrey @JustDoumit Hahaha possibly +05/04/2018,Actors,@MattLanter,Wouldn’t mind this show at all https://t.co/c44jCmqALN +05/04/2018,Actors,@MattLanter,"Could be a beautiful friendship. Wyatt could sit down, hand her a basketball and say, “hey champ, come on, what’s g… https://t.co/tAgrhAySqk" +05/04/2018,Actors,@MattLanter,"Fun interview about #Timeless. We talk Jessica, Lucy, Flynn and the finale https://t.co/iT10iLyaFB" +05/04/2018,Actors,@MattLanter,"RT @MichaelAusiello: .@NBCTimeless Exclusive: Stars, EP Preview the Team's Quest to Save Young Agent Christopher — Plus, Watch Jiya Swipe '…" +05/04/2018,Actors,@MattLanter,@jennifermuro I love when things brew! +05/03/2018,Actors,@MattLanter,RT @Josh_connolly: THERE’S A SPIDER ON YOU!!! https://t.co/oE7qlcHAO0 +05/03/2018,Actors,@MattLanter,RT @kelly_clarkson: ....because it’s great! #listentothepeople 😜💁🏼‍♀️ https://t.co/L6Hjzi8WIT +05/03/2018,Actors,@MattLanter,RT @allisonrmcmanus: Proof of #Timeless repeating history with their two USA Today Save Our Show Poll Wins side by side. #RenewTimeless #Re… +05/03/2018,Actors,@MattLanter,"RT @TheTimelessRoom: Getting sooooooooo close to jumping into the lead in this poll. Vote if you haven't done so already! + +https://t.co/Be…" +07/02/2018,Actors,@MACKWILDS,"ayo @BENBALLER... i feel for you right now, brudda..." +07/02/2018,Actors,@MACKWILDS,"IM UPSET!!!! * drake voice RT @LegionHoops: BREAKING: LeBron James will sign a 4-year, $154M deal with the Lakers,… https://t.co/YZmaP89ZaI" +06/29/2018,Actors,@MACKWILDS,If you’re going thru hell... keep going! +06/29/2018,Actors,@MACKWILDS,Can’t heal a wound if you pretend it’s not there. +06/28/2018,Actors,@MACKWILDS,The NBA is weir.... interesting!!! +06/27/2018,Actors,@MACKWILDS,The fact that you aren’t where you wanna be. Should be all the motivation you need! +06/23/2018,Actors,@MACKWILDS,If you knew how much I lost it wouldn’t bother you so much to see me win +06/23/2018,Actors,@MACKWILDS,"RT @EBONYMag: The @BETExperience Youth Program supports 50 Los Angeles county teens hoping to break into the music business, they kicked of…" +06/22/2018,Actors,@MACKWILDS,Life tip: put as much effort into getting your soul rights you do getting your money right +06/21/2018,Actors,@MACKWILDS,Therapy should be FREE. +06/21/2018,Actors,@MACKWILDS,What if... everything you’re going thru is preparing you for all you wanted +06/20/2018,Actors,@MACKWILDS,Creed 2!! Looks 🔥🔥 https://t.co/g8wAwn90O8 +06/19/2018,Actors,@MACKWILDS,Today is another chance to get it right y’all +06/18/2018,Actors,@MACKWILDS,Oh no the fuck you didn’t just lol... RT @WOODY_THEGREAT: Static Shock 2020 https://t.co/hY69ymw98h +06/18/2018,Actors,@MACKWILDS,RT @ChaleyRose: We screened our new movie #DinnerForTwo at #ABFF in Miami this weekend. You can watch it September 2nd at 7pm on .@tvonetv… +06/18/2018,Actors,@MACKWILDS,"Once you cost me my peace, you gotta go. You costing me way too much" +06/17/2018,Actors,@MACKWILDS,#deadass. https://t.co/KVGQJZ5V6l +06/16/2018,Actors,@MACKWILDS,Let’s just appreciate ALL the great music. We blessed!! We supporting it ALL. +06/16/2018,Actors,@MACKWILDS,Bey & Jay!!!! +06/15/2018,Actors,@MACKWILDS,Ronaldo is the GOAT! +06/15/2018,Actors,@MACKWILDS,RT @tvonetv: Our @ABFF Celebrity Scene Stealers Finalists showed up and showed out TODAY! 👏🏽@Sylvester_Folks @BirdyNYC @ScreenGriot .🙏🏽Acto… +06/14/2018,Actors,@MACKWILDS,Life Tip: Do YOU! +06/12/2018,Actors,@MACKWILDS,Getting ready to hit the stage #FortniteProAM with @timthetatman @FortniteGame #FortniteE3 https://t.co/7gD46cFh8y +06/12/2018,Actors,@MACKWILDS,"RT @theqgentleman: .@MACKWILDS hosts ""The Brotherhood Dinner"" in NYC. https://t.co/obXTNF08g2 https://t.co/h7PztKRaJD" +06/11/2018,Actors,@MACKWILDS,Praying more and keeping to myself. +06/09/2018,Actors,@MACKWILDS,My Dynasty list: 1. 00s Lakers 2. Bulls 3a. Golden State 3b. 80s Celtics 5. 80s Lakers 6. Spurs +06/09/2018,Actors,@MACKWILDS,Congrats to the Warriors on back 2 back Ships +06/09/2018,Actors,@MACKWILDS,Idk... their celebration seems a little... bland. +06/08/2018,Actors,@MACKWILDS,Kanye making those guns noises has to be the funniest shit to me +06/07/2018,Actors,@MACKWILDS,They are KILLING THE CAVS with this Roll/Cut to the basket play. I mean DAMN!!!!!!! +06/07/2018,Actors,@MACKWILDS,🤦🏾‍♂️ Lebron can’t pass outta that high percentage shot!! +06/06/2018,Actors,@MACKWILDS,"RT @FortniteGame: More Celebrity Pro-Am duos announced! + +Left: + +@RubiuYT + @partynextdoor +@sssniperwolf + @TFlight31 +@timthetatman + @MAC…" +06/05/2018,Actors,@MACKWILDS,RT @BET_FR: Retrouvez @MACKWILDS maintenant dans #BETManCave ! https://t.co/nFE9nUD3cO +06/04/2018,Actors,@MACKWILDS,RT @RocNation: Congratulations to @angiemartinez on her @RadioHOF nomination! Show your support by voting now https://t.co/jtlMv4L4sw #Vote… +06/03/2018,Actors,@MACKWILDS,@FunnyJulius @TheOgBlackMan My boy Alexander wrote this. Bringing our culture to GQ lol +06/03/2018,Actors,@MACKWILDS,🗣🗣🗣 STOP FEEDING THE FEDS!!!!!!!!! +06/01/2018,Actors,@MACKWILDS,Slow process is better than no process +06/01/2018,Actors,@MACKWILDS,I didn’t even know the score and I’m watching the damn game. So can’t be mad at JR for that +05/29/2018,Actors,@MACKWILDS,"@meganrpayne1 You think people who work on set choose who the title actor is? First, are you aware of HOW MANY peo… https://t.co/MEG0ZQVXO8" +05/29/2018,Actors,@MACKWILDS,It’s also sad how many people have now lost their job because of #Roseannebarr tweets. +05/29/2018,Actors,@MACKWILDS,@ShenaeCurry let’s not get disrespectful. +05/29/2018,Actors,@MACKWILDS,"if you know, you know. https://t.co/LaQKofxigm" +05/29/2018,Actors,@MACKWILDS,Don’t be mad when they don’t support you. Go get your bag! You’ll see them later +05/29/2018,Actors,@MACKWILDS,"Quick Thoughts: I Feel for CP3!, GSW in 5 😩, Lebron done as a Cav!, The West is going to be even better next year" +05/28/2018,Actors,@MACKWILDS,@BENBALLER I can’t see you not rooting for the Lakers. I get it!! But that’s almost like Spike not fucking with the… https://t.co/ZAvERUSsV9 +05/28/2018,Actors,@MACKWILDS,@BENBALLER Keep that same energy next year when he’s a Laker... +05/28/2018,Actors,@MACKWILDS,LET’S GO @cavs @KingJames #whateveritakes https://t.co/8kjrP3Zh45 +05/28/2018,Actors,@MACKWILDS,You gotta Applaud 8 straight finals!!! +05/27/2018,Actors,@MACKWILDS,RT @JAYVERSACE: the demon in the corner when you having sleep paralysis https://t.co/1YHqU25HF7 +05/26/2018,Actors,@MACKWILDS,@KrisKasanova where you at? i’m heading back to the city +05/25/2018,Actors,@MACKWILDS,RT @NBASTORE: You bet actor @MACKWILDS will be cheering on the @cavs down to the wire! https://t.co/elvGLIL3rp +05/25/2018,Actors,@MACKWILDS,Daytona 🔥🔥🔥 @PUSHA_T +05/23/2018,Actors,@MACKWILDS,The NFL just... fucked up. Imma just say it. For so many reasons this is going to backfire but not consulting the NFLPA was just stupid +05/23/2018,Actors,@MACKWILDS,@TheIvyRivera https://t.co/g5ntvXNVxj +05/23/2018,Actors,@MACKWILDS,It’s going to be so entertaining watching all the women on vacation this weekend via social media lol +05/22/2018,Actors,@MACKWILDS,"RT @YoStayHungry: Special thanks to our judges @mackwilds @lonelywhitehomie @korshawilson @itsaking, it was tough but #EverybodyEatsB so it…" +05/18/2018,Actors,@MACKWILDS,@plies IN HIS BAG RIGHT NOW!!! Dropping 🔥🔥🔥 +05/18/2018,Actors,@MACKWILDS,Don’t be scared of what you want +05/17/2018,Actors,@MACKWILDS,If she prays for you. She’s looking out for you on another level. Respect that! +05/17/2018,Actors,@MACKWILDS,@capricciousa Love y’all product!! Drink of the summer +05/17/2018,Actors,@MACKWILDS,RT @REESElaflare: 😢😢😢😢🙏🏾❤️ https://t.co/ekQQDJE4vm +05/16/2018,Actors,@MACKWILDS,Korver- Q chicken!!! +05/15/2018,Actors,@MACKWILDS,"RT @PresherToBeReal: Obsession- @MACKWILDS +#Yoga #Yogi #Therapy https://t.co/a6XFCzDQ0o" +05/15/2018,Actors,@MACKWILDS,MJ not playing with y’all!!!!!! He said I HOURS OF “y’all got me fucked up” in the vault +05/15/2018,Actors,@MACKWILDS,Draymond REALLLLLL PASSIONATE tonight huh +05/15/2018,Actors,@MACKWILDS,RT @GioVanniWatson_: Listen to Gramercy Feat Mack Wilds by GiovannI #np on #SoundCloud @MACKWILDS @GioVanniWatson_ https://t.co/9oljZlhMwU +05/14/2018,Actors,@MACKWILDS,A very underrated marketing strategy is Apple’s Blue text message idea. Changed the game. +05/13/2018,Actors,@MACKWILDS,"@MISSCNH i wore it to SohoHouse. trust, i’m baking these jawns." +05/13/2018,Actors,@MACKWILDS,No matter how busy you are today or things that happened in the past or where she is. REACH OUT to your Mother toda… https://t.co/oLLlEuPTIv +05/13/2018,Actors,@MACKWILDS,RT @KDJPerspective: Got a chance to watch and 📸 @MACKWILDS at #rnbhouseparty last night. https://t.co/DzE4kGT4Ub +05/12/2018,Actors,@MACKWILDS,"RT @BET: They said Bill Cosby got his degree ""repoed"", this is too much. ""I'll Apologize Later"" host @Mouse_Jones and his first guest @MACK…" +05/11/2018,Actors,@MACKWILDS,Outwork EVERYBODY! +05/11/2018,Actors,@MACKWILDS,@Calligrafist thanks broski. always love. +05/11/2018,Actors,@MACKWILDS,"RT @Calligrafist: S/o to The Homie @MACKWILDS, Early Tonight Showed Me How Good a Dude He is... | We Have These Unrealistic Expectations of…" +05/06/2018,Actors,@MACKWILDS,Y’all wasn’t even banging with homie during *Because of the Internet days lol +05/06/2018,Actors,@MACKWILDS,@RaeSremmurd 3 for 3!! When it comes to Albums!! +05/06/2018,Actors,@MACKWILDS,R&B +05/06/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: @MACKWILDS You are Built to Win and Equipped to Soar #JC3 https://t.co/AIEP5TVSqS +05/05/2018,Actors,@MACKWILDS,Why isn’t anyone talking about how fast Black Panther and Capt. America was running to go hand out Fades in Infinity War +05/04/2018,Actors,@MACKWILDS,You’re going to flourish this year and nobodies going to stop you +05/03/2018,Actors,@MACKWILDS,"@Mr516 @TheOgBlackMan @Mouse_Jones @FunnyJulius niggas don’t want Reek to thrive, man. 😂😭😂" +05/03/2018,Actors,@MACKWILDS,@Mouse_Jones 😂😭😂 +05/03/2018,Actors,@MACKWILDS,"@BigDee_SA ***”...make money for my fam, fans outta enemies.”" +05/03/2018,Actors,@MACKWILDS,@TamicoLee @TravisGreeneTV @VaShawnMitchell @NelsonJonathan @ToddDulaney happy birthday. +04/30/2018,Actors,@MACKWILDS,Thanos a visionary! Not a villain lol +04/29/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: God’s Not Finished with You - Just Watch #JC3 https://t.co/rBplcYECiD +04/27/2018,Actors,@MACKWILDS,SAQUON BARKLEY!!!!!! #giants great pick!!! +04/25/2018,Actors,@MACKWILDS,Hey... you can be a fan of someone’s art but not agree with their opinion. #bigfact +04/24/2018,Actors,@MACKWILDS,RT @ogbishop: When you get to direct the one film you needed to direct and the film gods bless you with @MACKWILDS and @ChaleyRose. https:/… +04/24/2018,Actors,@MACKWILDS,"RT @tvonetv: How do you heal a broken heart? TVOne’s new movie ‘Dinner For Two,’ starring @MACKWILDS and @ChaleyRose, tackles the complicat…" +04/24/2018,Actors,@MACKWILDS,(grins.) https://t.co/W5GFBbc5IX +04/21/2018,Actors,@MACKWILDS,i love this. https://t.co/bHsSuYyJ3W +04/20/2018,Actors,@MACKWILDS,“He’s going to restart the world” ... 🤯 +04/20/2018,Actors,@MACKWILDS,Get a goal. Get a plan. Get up off yo ass. +04/17/2018,Actors,@MACKWILDS,@YooQTheDj WHO SAID THAT?! +04/15/2018,Actors,@MACKWILDS,Send your girl $50 to apply for Beyonce University +04/13/2018,Actors,@MACKWILDS,@Chec_CashinChat yessssurrrrr. +04/13/2018,Actors,@MACKWILDS,I see you @Gail_BeAN #atlantafx +04/11/2018,Actors,@MACKWILDS,Being calm in a tough situation is a super power +04/10/2018,Actors,@MACKWILDS,This shit 🔥🔥 https://t.co/M7aHL0KOLW +04/09/2018,Actors,@MACKWILDS,Can I please get Bickenhead Ft. Project Pat @iamcardib +04/08/2018,Actors,@MACKWILDS,God is Good. +04/06/2018,Actors,@MACKWILDS,I have a project titled “Eem” dropping later this month but it’s not complete yet. I have a obligation to this char… https://t.co/q9uShhjZMu +04/06/2018,Actors,@MACKWILDS,Not at the moment. It’s a very expensive production for such a cult based genre. It’ll find another home if the dem… https://t.co/RfTv4hKFFP +04/06/2018,Actors,@MACKWILDS,Ain’t nobodies fault but mine that I only got 2 projects lol but imma work on that this year. That I can promise https://t.co/6E65T13gZu +04/05/2018,Actors,@MACKWILDS,Don’t make moves without praying on it first +04/04/2018,Actors,@MACKWILDS,Tired as fuck +04/02/2018,Actors,@MACKWILDS,The devil will tell you a lie in your own voice +04/01/2018,Actors,@MACKWILDS,@Poetik_Tanaya “Most Young Kings Get Thier Heads Cut Off” - Basquiat. +03/31/2018,Actors,@MACKWILDS,RT @taylortee17: Why I am I just now hearing @MACKWILDS After Hours Album?! Great piece of work....Mack is really an underrated R&B artist.… +03/29/2018,Actors,@MACKWILDS,#ReadyPlayerone was Phenomenal!!! Mad nostalgic!! Visually creative. A MUST SEE! +03/28/2018,Actors,@MACKWILDS,@RAVIEB https://t.co/5jVrHDsryK +03/28/2018,Actors,@MACKWILDS,@Slim_Sass happy birthday queen! +03/27/2018,Actors,@MACKWILDS,"The Giants better better get 2 1st Round picks, their 3rd Round pick, my name on the Hollywood walk of fame and The… https://t.co/mZWZv8tMIm" +03/27/2018,Actors,@MACKWILDS,Operating within my purpose +03/26/2018,Actors,@MACKWILDS,RT @Nikyatu: Why do (so many of you) insist on defining a Woman's value based on her ability to withstand your rott… https://t.co/HA0PxCHJTY +03/26/2018,Actors,@MACKWILDS,"Listen ladies,- it’s not about withstanding - relationship or mens BS. I just admire a woman who levels up and goes… https://t.co/vbQH22nlaF" +03/26/2018,Actors,@MACKWILDS,Mental note: words can’t be heard on a screen +03/26/2018,Actors,@MACKWILDS,I agree with @chancetherapper theory on brands using racism as a subplot or marketing strategy to get a reaction from consumers +03/25/2018,Actors,@MACKWILDS,When your girl call you after any little inconvenience in her life. You gotta learn to sit there and listen. She wo… https://t.co/zOyhIQQ7s5 +03/25/2018,Actors,@MACKWILDS,@johnboyega congrats fam!! +03/25/2018,Actors,@MACKWILDS,If god blocks it. Don’t stalk it. +03/24/2018,Actors,@MACKWILDS,Use these platforms to promote what you love instead of bashing what you hate. +03/24/2018,Actors,@MACKWILDS,You gotta be sick in the head to protest against kids being killed by guns +03/24/2018,Actors,@MACKWILDS,a +03/24/2018,Actors,@MACKWILDS,The way you move says a lot about you. +03/23/2018,Actors,@MACKWILDS,Y’all ever wonder if you are what someone is praying against? +03/22/2018,Actors,@MACKWILDS,"1. Civil War +2. The Avengers +3. Winter Soldier +4. Black Panther +5. Iron Man +6. Thor: Ragnarok +7. Ant Man +8. Guardia… https://t.co/pZg4bhiETf" +03/22/2018,Actors,@MACKWILDS,The thing about a really good woman is that she remains one even after all the bullshit +03/21/2018,Actors,@MACKWILDS,I had to take some losses just to value where I am in life +03/19/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: @MACKWILDS All you have done and been through was not in Vain! In these next 8 weeks God is about to Show Up in your L… +03/19/2018,Actors,@MACKWILDS,The best thing I ever did was believe in me +03/18/2018,Actors,@MACKWILDS,Hell no. https://t.co/ZE7Nc98htt +03/16/2018,Actors,@MACKWILDS,That trailer ain’t hit... but I’m still excited to see the movie +03/16/2018,Actors,@MACKWILDS,#atlantafx is so culturally accurate +03/15/2018,Actors,@MACKWILDS,ENJOY -your- YOUTH. +03/14/2018,Actors,@MACKWILDS,A great future doesn’t require a great past +03/14/2018,Actors,@MACKWILDS,RT @kicksforsoles: We got some heat on the way.. @MACKWILDS #95 🔥🔥🔥 +03/14/2018,Actors,@MACKWILDS,"@kodaklens fuck these niggas Len!!! we can do whatever we want!!!! TOP DOWN IN THE WINTER, THATS WHAT WINNERS DO!!!!" +03/14/2018,Actors,@MACKWILDS,I can’t have beautiful dark brown eyes?? lol https://t.co/fq0Sj5ySaK +03/13/2018,Actors,@MACKWILDS,HOW DOES SAM BRADFORD KEEP GETTING PAID!!!! How???!!! +03/13/2018,Actors,@MACKWILDS,"Many will want you, few will invest in you" +03/13/2018,Actors,@MACKWILDS,"RT @Diddy: If it ain't... + +Making me money, making me better or making me happy... + +I ain't making time for it." +03/13/2018,Actors,@MACKWILDS,@Wale Just dropped some FIRE!!! #itscomplicatedep +03/12/2018,Actors,@MACKWILDS,i don't understand why dudes think loving a chick is wack. like who do u expect to hold u down forever? +03/12/2018,Actors,@MACKWILDS,@Mouse_Jones whaaaaaaaaaaa?! +03/12/2018,Actors,@MACKWILDS,Yes https://t.co/sFMHWUemwu +03/11/2018,Actors,@MACKWILDS,Get ya paper up... That’s the best revenge! +03/10/2018,Actors,@MACKWILDS,Never be mad at yourself for evolving past someone else’s comfort zone +03/10/2018,Actors,@MACKWILDS,@_cierarogers https://t.co/b0NHqcIvh8 +03/10/2018,Actors,@MACKWILDS,@RAVIEB https://t.co/VqvwS483iZ +03/09/2018,Actors,@MACKWILDS,What got into the The Browns organization lol +03/09/2018,Actors,@MACKWILDS,RT @JakeElman: Ten years since the greatest show in TV history ended. #TheWire is a damn masterpiece. Especially Season 4. https://t.co/MTU… +03/09/2018,Actors,@MACKWILDS,The Wire is #1 ... Period. +03/09/2018,Actors,@MACKWILDS,RT @Sir_Hurizzel: Anime has been the shit. Niggas just getting on it now because some celebs mentioned it https://t.co/wbeR0sHIYu +03/07/2018,Actors,@MACKWILDS,"RT @ScottieBeam: Protect @Royceda59 at all cost. + +https://t.co/QBBPx95BLP" +03/07/2018,Actors,@MACKWILDS,People be in secret competitions with you and still be losing. +03/07/2018,Actors,@MACKWILDS,RT @KarenCivil: Some @CrustaceanBH photobooth fun w/ @MACKWILDS. https://t.co/C9p4EZROcU +03/07/2018,Actors,@MACKWILDS,RT @PrettyNay21: @MACKWILDS wait..😲🤤😏 #HeyBigHead Lol jk but just saw this on ig.. caught me off guard https://t.co/x8uYcT0VhO +03/06/2018,Actors,@MACKWILDS,RT @OfficialYonni: #Yonni x @mackwilds 👀 s/o @natalieprospere Alley Oop! https://t.co/2m5TNHJo4B +03/06/2018,Actors,@MACKWILDS,Imagine a Presidential term so crazy that when Hollywood writes the script for it... none of it is exaggerated. +03/06/2018,Actors,@MACKWILDS,🤫🤫 https://t.co/gmtj7k6qqe +03/05/2018,Actors,@MACKWILDS,"25 looks good on you, mama. https://t.co/ctnysmdnzS" +03/04/2018,Actors,@MACKWILDS,@xoBritishBeauty i’m glad you fuckin’ w/ it. for real. +03/04/2018,Actors,@MACKWILDS,@geniqueeee hi. +03/04/2018,Actors,@MACKWILDS,Listen to your intuition when you out here grinding. Trust me. +03/04/2018,Actors,@MACKWILDS,Give it a listen when you can. Let me know your thoughts https://t.co/Wza5lykW0Y +03/04/2018,Actors,@MACKWILDS,RT @PapBrady: 2 MORE LIST ON @amazon #1 ON THE LIST FOR DIGITAL ART! GOD IS GOOD 🙏🏻 @MISSCNH #DoItForGram https://t.co/0Athwt4Kyo https://t… +03/03/2018,Actors,@MACKWILDS,https://t.co/kFjW0QM9G1 +03/02/2018,Actors,@MACKWILDS,Your flaws are perfect for who is meant to love you +03/02/2018,Actors,@MACKWILDS,RT @ComptonUnified: @ #emersonelementary @Yoobigives pajama jam #readacrosscompton day kicks off with special guest @MACKWILDS https://t.co… +03/02/2018,Actors,@MACKWILDS,RT @TheREALRIKISHI: #TBT Also good to see my uce @jawnmurray and pleasure to meet uce @mackwilds @theaafca awards 🤙🏾… https://t.co/MPd5GxLd… +03/02/2018,Actors,@MACKWILDS,Thanks Fam. I won’t disappoint https://t.co/AVq93Nrfmg +03/02/2018,Actors,@MACKWILDS,RT @BET: RT if you're watching the all-new episode of #MancaveBET! We got @MACKWILDS! Let's gooooo! https://t.co/7rhkOTCs0z +03/02/2018,Actors,@MACKWILDS,"RT @Jeffsnation: Tonight, Mancave is back and we’ve got @MACKWILDS stopping through to chop it up over a few confessions and his crazy grin…" +03/02/2018,Actors,@MACKWILDS,RT @BET: .@MACKWILDS took it ALL the way back for #TBT with this baby photo! 😂 Find out who else got their picture exposed TONIGHT in an al… +03/01/2018,Actors,@MACKWILDS,RT @BET: .@MackWilds is entering the Mancave! Make sure you catch him on TONIGHT's episode of #MancaveBET - 10:30/9:30c! https://t.co/b0WYR… +03/01/2018,Actors,@MACKWILDS,RT @TheRealTank: My bro bro @mackwilds will be in the #mancave #mancavebet tomorrow night! Tune in to bet at… https://t.co/zPGfktiMfq +02/27/2018,Actors,@MACKWILDS,Turn your passion into a career +02/27/2018,Actors,@MACKWILDS,RT @LilRel4: When the homies link up it’s nothing but laughs and good times @mackwilds #GreatTimes photo… https://t.co/5IYkL4tQgr +02/26/2018,Actors,@MACKWILDS,No regrets. Just lessons learned +02/24/2018,Actors,@MACKWILDS,I’m tripping. DEATH NOTE* delete Cowboy Bebop. Attack on Titan is dope but gets mad racist towards the end. *keep w… https://t.co/P3KlGxDJ2a +02/24/2018,Actors,@MACKWILDS,"1. Full Alchemist: Brotherhood +2. Naruto +3. Attack on Titan +4. Cowboy Bebop +5. DB Super +Making their way: seven… https://t.co/uiepUPMaKB" +02/24/2018,Actors,@MACKWILDS,"RT @VanLathan: This song is ridiculously good. #NowPlaying ""Choose"" by @MACKWILDS Wilds on @TIDAL https://t.co/xfaDmd4FWQ" +02/23/2018,Actors,@MACKWILDS,Give it your ALL and call it a day +02/21/2018,Actors,@MACKWILDS,"@_cierarogers eh, just a litttttle to your left." +02/20/2018,Actors,@MACKWILDS,I wouldn’t mind but the last chapter was written and that book has been shelved. By all means go back and re visit… https://t.co/f6P4BS6KHm +02/17/2018,Actors,@MACKWILDS,"RT @SummerStage: @MACKWILDS at #SummerStage in #CloveLakesPark, #StatenIsland. + +#BlackHistoryMonth https://t.co/pzrbM7yeR9" +02/17/2018,Actors,@MACKWILDS,The party continues with an exclusive Card Member @kendricklamar concert thanks to @AmericanExpress! #AmexNBA… https://t.co/SpBKyl4I0b +02/16/2018,Actors,@MACKWILDS,Going hard in the paint at the @AmericanExpress Experience. #AmexNBA #AmexAmbassador https://t.co/qTmqeqv1GI +02/13/2018,Actors,@MACKWILDS,Thx luv https://t.co/UWfhPN9RLY +02/12/2018,Actors,@MACKWILDS,If you’re coming to LA for All Star Weekend. Respect the Culture and BE HUMBLE. Then you’ll have a great weekend! A… https://t.co/NS8DrScf0y +02/12/2018,Actors,@MACKWILDS,@ThatDancer (shakes head.) +02/11/2018,Actors,@MACKWILDS,“Good Man” 🔥🔥 @NeYoCompound @HEYDJCAMPER +02/08/2018,Actors,@MACKWILDS,My silly ass studying acting & music theory when athletes out here making 137 Milly for going 7-0 https://t.co/hKdHIKCD6p +02/08/2018,Actors,@MACKWILDS,Tyron Lue here on out... https://t.co/0hypmKl55K +02/08/2018,Actors,@MACKWILDS,i really wish Quincy Jones played for the Cavs this season +02/07/2018,Actors,@MACKWILDS,Hope you nothing but success Fam https://t.co/Ds2LqT0L5k +02/07/2018,Actors,@MACKWILDS,"What a interview. Man, I️ wish we had more of these. Genuinely enjoyed that shit. Thought provoking and f**king hilarious" +02/07/2018,Actors,@MACKWILDS,QUINCY JONES!!!!!!!!!!!! https://t.co/1dElQvORbC +07/01/2018,Actors,@EmilyVanCamp,❤️❤️❤️ https://t.co/NmbjqhHNBf +06/20/2018,Actors,@EmilyVanCamp,"RT @JoyAnnReid: Rachel, my friend and brilliant colleague, tonight you channeled the emotion and devastation every single person with a hea…" +06/19/2018,Actors,@EmilyVanCamp,"RT @chrislhayes: BREAKING: @RepJayapal just announced on @allinwithchris a nationwide mobilization against family separation on JUNE 30TH,…" +06/19/2018,Actors,@EmilyVanCamp,https://t.co/eTZthRc3rK +06/19/2018,Actors,@EmilyVanCamp,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +05/31/2018,Actors,@EmilyVanCamp,"RT @sally_field: I like Samantha Bee a lot, but she is flat wrong to call Ivanka a cunt. + +Cunts are powerful, beautiful, nurturing and hon…" +05/08/2018,Actors,@EmilyVanCamp,Such a great performance by the lovely @juliannaguill my gorgeous on screen sis 🙌🏼 Also directed by our fave… https://t.co/evFIwpBC86 +05/07/2018,Actors,@EmilyVanCamp,Yes👇🏼 https://t.co/nShn0ftpr7 +04/28/2018,Actors,@EmilyVanCamp,"RT @soledadobrien: Then maybe before you use your massive platform to support racists and bigots, read a book or google some stuff. (Start…" +04/28/2018,Actors,@EmilyVanCamp,I ❤️ U @alisongreenberg .. Just happy to be a beard or a mustache or a goatie in the MCU 😂😂😂 https://t.co/Q9j3BdAHPz +04/26/2018,Actors,@EmilyVanCamp,This is absolutely outrageous and horrible. So awful to be in a vulnerable space offering yourself to an audience w… https://t.co/u1XMDJHiOr +04/20/2018,Actors,@EmilyVanCamp,"RT @latelateshow: Stop whatever you're doing because the #LateLateShow with @BusyPhilipps, @EmilyVanCamp and @EugenioDerbez starts in 5 min…" +04/09/2018,Actors,@EmilyVanCamp,See you there! https://t.co/FFb7okCoE1 +03/26/2018,Actors,@EmilyVanCamp,Same! https://t.co/p2k1f25VKU +03/10/2018,Actors,@EmilyVanCamp,Brilliant album. One of my favorites ✨ The Miracle of Van Morrison’s “Astral Weeks” https://t.co/LiReAmADNz +02/25/2018,Actors,@EmilyVanCamp,"RT @cmclymer: Sooo... CNN released poll data a few hours ago that is pretty damn remarkable, and it's worth noting the highlights. + +First:…" +02/25/2018,Actors,@EmilyVanCamp,Amazing! 🙌🏼 https://t.co/T04hX5uqgg +02/24/2018,Actors,@EmilyVanCamp,"RT @rob_bennett: How quickly can we get @Emma4Change to surpass the @NRA in follower count? + +She’s 36,000 followers away. It’s 1PM. + +Let’…" +02/24/2018,Actors,@EmilyVanCamp,Remember This Week: It’s the Beginning of the End of the NRA’s Reign of Terror https://t.co/UDzhjdTJ7s +02/24/2018,Actors,@EmilyVanCamp,"RT @HeadCountOrg: After the shooting in #Parkland, FL, high school students around #America are getting organized and politically active. H…" +02/24/2018,Actors,@EmilyVanCamp,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/24/2018,Actors,@EmilyVanCamp,"Teachers are trained to TEACH, nurture their students, develop the minds of our future, create a safe environment o… https://t.co/O87Wy7puXj" +02/24/2018,Actors,@EmilyVanCamp,RT @BeauWillimon: Now @Emma4Change has passed the 400K mark. Another 60K in less than 24hrs. She’s on track to overtake the @NRA by the end… +02/09/2018,Actors,@EmilyVanCamp,RT @SethMacFarlane: The Trump legacy. https://t.co/VuJ690S0ug +02/08/2018,Actors,@EmilyVanCamp,Truly incredible to have been a part of this 🙏🏻 https://t.co/bvGLel1M8f +02/06/2018,Actors,@EmilyVanCamp,"RT @ArielleKebbel: 🚨 ALERT 🚨 Updated flyer w/ new contact numbers to call if you know anything about my sister Julia. Pls read, repost prin…" +02/06/2018,Actors,@EmilyVanCamp,RT @ArielleKebbel: 🚨 ALERT 🚨 My SiSTER Julia Kebbel is MISSING. Her Instagram and Twitter is @jkebbz pls go there to see more pictures of h… +01/22/2018,Actors,@EmilyVanCamp,I❤️U https://t.co/0vgnvsjAH5 +01/22/2018,Actors,@EmilyVanCamp,About to watch #TheResident with these beautiful people ✨ Truly a pleasure working with this group. Check it out on… https://t.co/NW8cSZTZAd +01/19/2018,Actors,@EmilyVanCamp,#TheResident https://t.co/hOp6ysetvV +01/18/2018,Actors,@EmilyVanCamp,#TheResident https://t.co/Euold06jTB +01/13/2018,Actors,@EmilyVanCamp,"RT @ResidentFOX: Never underestimate Nurse Nic Nevin. @EmilyVanCamp stars in #TheResident, premiering January 21. https://t.co/8ksM3T5OLE" +01/12/2018,Actors,@EmilyVanCamp,"RT @andersoncooper: A statement about #Haiti, a country I love and admire. I wanted to share it with you tonight, on the eve of the 8th ann…" +12/30/2017,Actors,@EmilyVanCamp,Help my buddy @joshadley in his initiative to distribute essential supplies to shelters and rough sleepers around t… https://t.co/3AEvbc60vZ +12/26/2017,Actors,@EmilyVanCamp,RT @DalaiLama: Karma means action and action motivated by compassion is good. To complain that what happens to you is just the result of yo… +12/15/2017,Actors,@EmilyVanCamp,"Let’s make it happen @Katysloane ! Every little bit counts. Please help in any way you can. Share, Retweet, Donate… https://t.co/JTTyFEgmZh" +12/14/2017,Actors,@EmilyVanCamp,New trailer for #TheResident January 21st on FOX https://t.co/FtqtYFkITM +12/08/2017,Actors,@EmilyVanCamp,#TheResident starts January 21st on FOX 💉 https://t.co/Yur6yvZk9I +12/02/2017,Actors,@EmilyVanCamp,"RT @MMFlint: 62 years ago today, Rosa Parks was arrested for refusing to move to the back of the bus & a revolution was ignited. Someday we…" +11/27/2017,Actors,@EmilyVanCamp,My scene partners for the week. I’ll take them all please. Thanks. ❤️ https://t.co/I4qKbsukGO +11/20/2017,Actors,@EmilyVanCamp,"RT @DalaiLama: We can change our minds. We don’t have to give in to anger and hatred. Since compassion and anger cannot co-exist, the more…" +10/28/2017,Actors,@EmilyVanCamp,Happy 6 years to my favorite human. Time really does fly when you're having fun 💕💕💕 https://t.co/Lia2kK8bt0 +10/15/2017,Actors,@EmilyVanCamp,Opinion | Sarah Polley: The Men You Meet Making Movies https://t.co/jUwe8NELgJ +10/09/2017,Actors,@EmilyVanCamp,"RT @NPRinskeep: Not “what we have done.” Not “what our military has done.” Not “what FEMA and first responders have done.” Instead, “what I…" +10/06/2017,Actors,@EmilyVanCamp,RT @Gabriel_Mann: After #LasVegas can someone pls explain the need for this anywhere..at anytime..for what purpose..to what end? https://t… +10/03/2017,Actors,@EmilyVanCamp,This. https://t.co/0uVdKXTLK8 +09/30/2017,Actors,@EmilyVanCamp,"RT @Lin_Manuel: You're going straight to hell, @realDonaldTrump. +No long lines for you. +Someone will say, ""Right this way, sir."" +They'll…" +09/30/2017,Actors,@EmilyVanCamp,"RT @ShaunKing: This is one of the most horrible, racist, despicable things Trump has ever said. + +That Puerto Ricans ""want everything to be…" +09/30/2017,Actors,@EmilyVanCamp,"RT @GeorgeTakei: In crisis, our true characters are revealed. + +Donald has shown his true self: narcissistic, petty, lacking in empathy, and…" +09/25/2017,Actors,@EmilyVanCamp,"RT @NYCMayorsOffice: We are accepting donations for: +🔘 Diapers +🔘 Baby food +🔘 Batteries +🔘 First aid supplies +🔘 Feminine hygiene products htt…" +09/25/2017,Actors,@EmilyVanCamp,Senate “hearing” on #GrahamCassidy today—call your Senators & make sure they HEAR you! #StandWithPP https://t.co/Jqv9YvqZtC #DoNoHarm +09/25/2017,Actors,@EmilyVanCamp,RT @wkamaubell: Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto… +09/25/2017,Actors,@EmilyVanCamp,"RT @NYGovCuomo: Stop arguing with football players + +Stop trying to take health care from the poor + +#PuertoRico needs our help https://t.co/…" +09/25/2017,Actors,@EmilyVanCamp,"RT @robreiner: With a non-existent POTUS, thank God we have an engaged citizenry who are willing to stand up or kneel to protect our democr…" +09/21/2017,Actors,@EmilyVanCamp,"RT @ASlavitt: The ultimate question on Graham-Cassidy. + +Feel free to share if it helps people. https://t.co/WS7Glwj5sw" +09/21/2017,Actors,@EmilyVanCamp,RT @jimmykimmel: If you too are disappointed in Sen @BillCassidy #GrahamCassidy let them know it - call (202) 224-3121 https://t.co/eswlh6B… +09/18/2017,Actors,@EmilyVanCamp,"RT @SenWarren: Let me repeat: The Graham-Cassidy @SenateGOP ""health care"" bill IS Trumpcare, & it will rip health care away from millions o…" +09/18/2017,Actors,@EmilyVanCamp,"RT @KamalaHarris: Just a reminder that this is the “health care” bill Republicans are trying to push through. We saved the ACA once, let’s…" +09/17/2017,Actors,@EmilyVanCamp,"RT @BeauWillimon: Today, on a Sunday, on #ConstitutionDay, @realDonaldTrump RTs this violent gif by a guy whose handle reads ""Fucked up min…" +09/16/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: Tomorrow: #ConfrontWhiteSupremacy will stand against the biggest alt-right gathering since Cville. In D.C. Info here http… +09/13/2017,Actors,@EmilyVanCamp,"RT @PreetBharara: A: Prosecute Comey, pardon Arpaio, excuse neo-Nazis, deport Dreamers, encourage Erdogan, laud Duterte, pet Putin. + +Q: Wh…" +09/10/2017,Actors,@EmilyVanCamp,"RT @michaelianblack: As a massive hurricane bears down on us, please remember that one American political party literally does not believe…" +09/08/2017,Actors,@EmilyVanCamp,RT @BarackObama: Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/06/2017,Actors,@EmilyVanCamp,RT @votevets: Thousands of patriotic #Dreamers who served our nation in uniform are at risk of deportation due to @realDonaldTrump's cruel… +09/05/2017,Actors,@EmilyVanCamp,RT @SenSanders: America is strongest when we come together and reject xenophobia. Congress must permanently protect Dreamers and reject Tru… +09/05/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: The fate of 800K #Dreamers & future of the nation we choose to be are at stake. Do your part to #DefendDACA today. Call.… +09/02/2017,Actors,@EmilyVanCamp,Unreal. A dedicated and honorable nurse simply trying to do her job is attacked and abused for it. This idiot bette… https://t.co/7h5sFO5mDU +08/31/2017,Actors,@EmilyVanCamp,And so it begins! ✨ https://t.co/hQJ7UkPnYi +08/29/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: NEW: Tweets about a wall while Houston drowns, pardons Arpaio. Trump's true racism: ""Make America WHITE Again"" https://…" +08/27/2017,Actors,@EmilyVanCamp,"RT @rob_bennett: The March To Confront White Supremacy: Charlottesville to D.C. + +Starts Monday and arrives in D.C.9/6. + +#Cville2DC +@cville…" +08/27/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: CHARLOTTESVILLE to D.C. March starts Mon. Help spread the word. Use #Cville2DC. Tweet & RT to trend this. Be loud. https:… +08/26/2017,Actors,@EmilyVanCamp,RT @brianefallon: Trump has pardoned Arpaio right as he threatens to deport law-abiding young Dreamers who represent the best of America. S… +08/26/2017,Actors,@EmilyVanCamp,WHEN DOES IT STOP??? #CowardInChief https://t.co/qh0OgqHBTt +08/25/2017,Actors,@EmilyVanCamp,RT @PiperPerabo: #DenierInChief Hurricane Harvey is proof that Trump administration denial of climate change puts people in danger. #Denier… +08/25/2017,Actors,@EmilyVanCamp,RT @Alyssa_Milano: Anyone else have a story like this they'd like to share? Use the hashtag #DenierInChief https://t.co/mIIDPh1emy +08/25/2017,Actors,@EmilyVanCamp,Amazing news! Can't wait to work with you Melina✨✨ https://t.co/ipuE1fEmPQ +08/19/2017,Actors,@EmilyVanCamp,A cowardly and immoral group indeed. Shameful. https://t.co/z2ER4yRH6g +08/19/2017,Actors,@EmilyVanCamp,Meet Frankie B. our sweet little rescue pup who has stolen our hearts! Thanks @wagsandwalks for… https://t.co/Sx7e6deZ5k +08/18/2017,Actors,@EmilyVanCamp,Bye Bye Bannon ❌ https://t.co/ZYJ4rSYw0A +08/17/2017,Actors,@EmilyVanCamp,"RT @RepAdamSchiff: Mr. President, it's not the removal of statutes that's tearing the country apart, but the divisive way you lead and WH t…" +08/16/2017,Actors,@EmilyVanCamp,RT @AnneFrankCenter: TODAY IS A MORAL TEST. Who in Congress will say enough? Who will quit @POTUS councils? Who will have the courage to… +08/13/2017,Actors,@EmilyVanCamp,"RT @BarackObama: ""...For love comes more naturally to the human heart than its opposite."" - Nelson Mandela" +08/13/2017,Actors,@EmilyVanCamp,"RT @BarackObama: ""People must learn to hate, and if they can learn to hate, they can be taught to love...""" +08/12/2017,Actors,@EmilyVanCamp,RT @jk_rowling: Hell of a day for the President to forget how to tweet. https://t.co/ABffmwwH8D +08/12/2017,Actors,@EmilyVanCamp,"RT @JohnDingell: I signed up to fight Nazis 73 years ago and I'll do it again if I have to. + +Hatred, bigotry, & fascism should have no plac…" +08/12/2017,Actors,@EmilyVanCamp,RT @franklinleonard: White supremacist terrorist plows vehicle into American citizens. https://t.co/7srr32Gv1o +08/12/2017,Actors,@EmilyVanCamp,RT @SenSanders: The white nationalist demonstration in #Charlottesville is a reprehensible display of racism and hatred that has no place i… +08/05/2017,Actors,@EmilyVanCamp,Love this and miss you more @Gabriel_Mann !!! ❤️❤️❤️ https://t.co/0G9LdQI3QU +08/03/2017,Actors,@EmilyVanCamp,Amazing news @smashleybell 👏🏼👏🏼👏🏼 Congrats! ❤️ https://t.co/HwsUiutgeI +08/03/2017,Actors,@EmilyVanCamp,RT @gregorythesmith: We had a family reunion today. It was so nice seeing everyone. Thanks for brining us together @GBerlanti @RinaMimoun @… +08/02/2017,Actors,@EmilyVanCamp,Insane right? Hope you are well David!! Xoxo https://t.co/SgXWCR0x2r +08/02/2017,Actors,@EmilyVanCamp,So beautiful to reunite with @GBerlanti @RinaMimoun and the incredible cast of Everwood ❤️So much love for these gu… https://t.co/MmZLI8nX9k +08/01/2017,Actors,@EmilyVanCamp,Yes Gabe!! So excited to watch ❤️❤️❤️ https://t.co/qDlrLiEhXx +07/29/2017,Actors,@EmilyVanCamp,I’m wearing this #MyIntent bracelet for the #3890 tigers that desperately need our protection.… https://t.co/vrr5mtqsjl +07/28/2017,Actors,@EmilyVanCamp,"Help @TigerBeerUS & me protect the last 3,890 wild tigers by donating to @World_Wildlife https://t.co/NOGXH9wujA –… https://t.co/RUbdBvEerL" +07/22/2017,Actors,@EmilyVanCamp,Auntie Em and Ivy time 💜💜💜 Love hanging with this sweet girl #auntielove https://t.co/DXnhTutgzv +07/19/2017,Actors,@EmilyVanCamp,RT @JoyAnnReid: Says the man who locked every Democrat and all but 13 Republicans out of the room while plotting to delete 22 million peopl… +07/15/2017,Actors,@EmilyVanCamp,The original 6 💕 https://t.co/GmiKDgEzo6 +07/11/2017,Actors,@EmilyVanCamp,tylerhenrymedium has a true gift. So honored to have had the experience of reading with him on… https://t.co/PnqkjtH2HB +06/24/2017,Actors,@EmilyVanCamp,"RT @BarrySloane: Please read this thread. It's a hard read, read it regardless if you're Republican or Democrat because this #HealthcareBil…" +06/23/2017,Actors,@EmilyVanCamp,RT @BarackObama: Health care has always been about something bigger than politics: it's about the character of our country. https://t.co/Uq… +06/22/2017,Actors,@EmilyVanCamp,"URGENT:📣 Senate released #Trumpcare bill that ""defunds"" @PPFA. TWEET YOUR SENATORS NOW & tell them to #StandwithPP https://t.co/Ic4wkqSsW4" +06/20/2017,Actors,@EmilyVanCamp,"RT @SamuelLJackson: Ga Voters, get out there & VOTE OSSOFF!! The Future is now, make a Change!! You're our First Step on the Road to Recove…" +06/18/2017,Actors,@EmilyVanCamp,Happy Father's Day to the coolest dad around! Thanks for always putting us first and teaching us… https://t.co/h6Nhh4jvh8 +06/14/2017,Actors,@EmilyVanCamp,"RT @votevets: The Commander in Chief can block @VoteVets, the voice of 500k military veterans and families, but we will NOT be silenced. ht…" +06/13/2017,Actors,@EmilyVanCamp,Yup. https://t.co/ZTm3fgOgJh +06/02/2017,Actors,@EmilyVanCamp,https://t.co/THjkXCycza +06/02/2017,Actors,@EmilyVanCamp,https://t.co/ttCp5OWyko +05/25/2017,Actors,@EmilyVanCamp,"RT @jk_rowling: You tiny, tiny, tiny little man. + https://t.co/mP3mad6cMt" +05/25/2017,Actors,@EmilyVanCamp,RT @SenWarren: Breaking news: @realDonaldTrump's illegal & unconstitutional Muslim ban is still illegal & unconstitutional. +05/23/2017,Actors,@EmilyVanCamp,Beyond saddened by this horrible attack in Manchester. Sending all my love to the victims and their families. Truly heartbreaking.. +05/18/2017,Actors,@EmilyVanCamp,Me and my sis Ali riding in style..Those outfits though!! 😳 #tbt #80s #backintheday https://t.co/Dt3zYtYLei +05/18/2017,Actors,@EmilyVanCamp,Now is more important than ever to #StandWithPP. Thank you @JOSS Whedon for joining the fight. Please watch → https://t.co/djDAOCAjLi +05/17/2017,Actors,@EmilyVanCamp,Yes @MMFlint !!! https://t.co/AMITEet1nH +05/16/2017,Actors,@EmilyVanCamp,"RT @igorvolsky: One. Just one. + +Such cowards. https://t.co/O3foGbvsea" +05/16/2017,Actors,@EmilyVanCamp,RT @21CF: Cast members of @ResidentFOX attend the 2017 #FoxUpfront party in New York City last night: https://t.co/XIe8NkYk1n +05/16/2017,Actors,@EmilyVanCamp,"RT @ResidentFOX: We’re giving you a dose of drama. FOX’s new series, #TheResident, is coming soon. #FOXUpfront https://t.co/mGFW0txNT1" +05/15/2017,Actors,@EmilyVanCamp,On her wedding day in 1979 💛So lucky to call this amazing woman mom. Happy Mother's Day!! ✨✨✨ https://t.co/akErV4ZiBV +05/15/2017,Actors,@EmilyVanCamp,Happiest of birthdays to this beautiful soul! @gabriel_mann I adore you!!! Wishing you all good… https://t.co/qkfiOQG0un +05/14/2017,Actors,@EmilyVanCamp,Good times with @BarrySloane @Gabriel_Mann @smashleybell #ConnorPaulo #JoshBowman Best bday reunion ever ❤️#revenge… https://t.co/48xFuLGk3V +05/14/2017,Actors,@EmilyVanCamp,Love you babes!! 😘😘 https://t.co/0BeVePLx1n +05/11/2017,Actors,@EmilyVanCamp,❤️ https://t.co/8lzohgxJSq +05/10/2017,Actors,@EmilyVanCamp,Thanks Ali!!!! Cannot wait to be in the same city again!!! Love you ❤️ https://t.co/AyhyHhSH2T +05/10/2017,Actors,@EmilyVanCamp,And we're off!!! 👏🏼👏🏼👏🏼 Matt Czuchry-Emily VanCamp Drama The Resident Ordered to Series at Fox https://t.co/4uV9TuA9fZ via @TVLine +05/09/2017,Actors,@EmilyVanCamp,"My happy place 🌊🌼🌿 #grateful #nofilterneeded #bigsur @ Big Sur, California https://t.co/w6RtHUzGDA" +05/08/2017,Actors,@EmilyVanCamp,Well said @DebraMessing 👏🏼👏🏼Debra Messing goes after Ivanka Trump in scathing acceptance speech https://t.co/a3Qsd1h5TE # via @huffpostqueer +05/02/2017,Actors,@EmilyVanCamp,"RT @CecileRichards: Health care should be a right, not a privilege. TY @jimmykimmel for sharing your story so folks understand. https://t.c…" +05/02/2017,Actors,@EmilyVanCamp,RT @jimmykimmel: My wife and I welcome a new baby and it is quite a story... https://t.co/VTT0oBsRFK +05/02/2017,Actors,@EmilyVanCamp,#GregBaldwin so proud!! 😘😘 https://t.co/BfRi1ALCWI +04/21/2017,Actors,@EmilyVanCamp,glsenofficial Day of Silence is the largest student-led national event in protest of anti-LGBTQ… https://t.co/ohUZs6hGLY +04/19/2017,Actors,@EmilyVanCamp,Yes Ali!! I ❤U #flipthesixth https://t.co/rzUDgX5KG3 +04/18/2017,Actors,@EmilyVanCamp,RT @elizabethforma: .@realDonaldTrump & the GOP are in a panic that GA could pick a Rep who fights for working people – not the rich & powe… +04/18/2017,Actors,@EmilyVanCamp,"RT @PPact: Like many Americans, Courtney relies on Planned Parenthood for lifesaving health care. https://t.co/2L6VsBlRi2 #CancerSurvivors4…" +04/16/2017,Actors,@EmilyVanCamp,"RT @ACLU: Not sure your point, but just a reminder that there is a constitutional right to protest. https://t.co/u0PR60vd13" +04/14/2017,Actors,@EmilyVanCamp,US may launch strike if North Korea moves to test nuclear weapon: report https://t.co/OYMhMoeybn +04/14/2017,Actors,@EmilyVanCamp,"RT @Nick_Wechsler: Hey, @realDonaldTrump, @POTUS, please stop tweeting crazy shit about North Korea. You are, without hyperbole, going to s…" +04/14/2017,Actors,@EmilyVanCamp,What a horrible human. https://t.co/uzyW8kJ23e +04/12/2017,Actors,@EmilyVanCamp,California Dreamin' 🌊 https://t.co/9S0H5G4jUk +04/09/2017,Actors,@EmilyVanCamp,Sisters night out! Missing you @katewynne ❤❤❤ https://t.co/wmInEUj2jR +04/07/2017,Actors,@EmilyVanCamp,This beautiful crisp air is doing my soul some good! #springiscoming #hometown #famtime❤️ https://t.co/COI5pGopB7 +04/07/2017,Actors,@EmilyVanCamp,Snow day ❄️❄️❄️ https://t.co/AFrIQ7oj9D +03/17/2017,Actors,@EmilyVanCamp,Excited about this one!! --Emily VanCamp To Star In ‘The Resident’ Fox Medical Drama Pilot https://t.co/iObKWMnpuM via @deadline +03/10/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: NEW: Anybody remember what Trump did 9 days ago? He gave that ""presidential"" speech. That bullshit didn't age well http…" +03/09/2017,Actors,@EmilyVanCamp,Love this!! You still look the same! Great pic 😘❤@mabelbow1 https://t.co/oP0S0z8i7y +03/09/2017,Actors,@EmilyVanCamp,"The four women who are always there, who teach me strength and love everyday. Grateful for my… https://t.co/yrP0o2kp5x" +03/06/2017,Actors,@EmilyVanCamp,Quality time watching timeaftertimeabc with this crew ❤ #gowatch #famtime #timeaftertime https://t.co/RzLzjsYvf5 +03/05/2017,Actors,@EmilyVanCamp,Don't forget to check out #joshbowman and #freddiestroma on timeaftertimeabc at 9pm on ABC… https://t.co/sxHYpOkt23 +03/05/2017,Actors,@EmilyVanCamp,Beautiful day celebrating my favorite human. Happy Birthday to my love ❤ #deervalleyresort… https://t.co/zTJRgul6nA +02/25/2017,Actors,@EmilyVanCamp,Always lovely hanging with these guys! ❤ Still laughing @katysloane and @BarrySloane 😂😂 https://t.co/ofwHWey37d +02/21/2017,Actors,@EmilyVanCamp,https://t.co/xz7hC08FSN +02/21/2017,Actors,@EmilyVanCamp,RT @JuddApatow: And never forget this. This was how he spoke to someone he didn't know. Can you imagine how he speaks to friends. Does he… +02/21/2017,Actors,@EmilyVanCamp,Wise words..(though secretly I found myself waiting for the big reveal that @BarackObama is still president. And I… https://t.co/So0k8DKDP0 +02/19/2017,Actors,@EmilyVanCamp,"RT @ava: So, we shouldn't trust the press. And he wants to talk to Americans directly. Gotcha. Let's listen to his own words. https://t.co/…" +02/18/2017,Actors,@EmilyVanCamp,RT @TIME: TIME’s new cover: Inside Donald Trump's White House chaos https://t.co/hctIFEcOSG https://t.co/1hSQNrY6JQ +02/18/2017,Actors,@EmilyVanCamp,Miss you Tolga!! So much love to you ❤😘❤ https://t.co/wVEfL7ZpXa +02/16/2017,Actors,@EmilyVanCamp,"RT @ava: This needs to happen on EVERY lie. It's up to the press to do this EVERY time. Go hard, y'all. On EVERY lie. https://t.co/TGbishcD…" +02/15/2017,Actors,@EmilyVanCamp,My funny valentine 😊❤😊 https://t.co/HUx0Vo82AG +02/11/2017,Actors,@EmilyVanCamp,This. https://t.co/U8drUUBsZv +02/10/2017,Actors,@EmilyVanCamp,#tbt to my niece running free ❤ One of my fave photos of this little beauty! #auntielove… https://t.co/myOFcHU6ak +02/10/2017,Actors,@EmilyVanCamp,Pretty sure YOU are the biggest threat to this nation. Take a seat. You lost. Now get off twitter and get back to y… https://t.co/2dSVx6cXnN +02/09/2017,Actors,@EmilyVanCamp,Nice! https://t.co/xxB0WBAlSo +02/09/2017,Actors,@EmilyVanCamp,Yes UTA! Let's see more of this.#resist UTA Scraps Usual Oscar Party; Plans Rally For Refugees Instead https://t.co/z0JR7YpJO1 via @deadline +02/08/2017,Actors,@EmilyVanCamp,Just watched FENCES. Absolutely breathtaking performances by Viola Davis and Denzel Washington. The whole cast was flawless. Loved it❤ +02/08/2017,Actors,@EmilyVanCamp,This is beyond scary! -- Mitch Mcconnell cuts off Elizabeth Warren for criticizing Jeff Sessions https://t.co/QgAaI4jvrH # via @HuffPostPol +02/07/2017,Actors,@EmilyVanCamp,RT @SethMacFarlane: Betsy DeVos confirmed. What is also confirmed is that there is not one single man of courage in the Republican Congres… +02/07/2017,Actors,@EmilyVanCamp,RT @MMFlint: The Senate Republicans have just sent a big FU to the school children of America. Even the worst countries don't shit on their… +02/07/2017,Actors,@EmilyVanCamp,This is awful. Betsy DeVos ekes out confirmation as VP casts first tie-breaker for Cabinet post https://t.co/dMmWQo6jwP # via @HuffPostPol +02/07/2017,Actors,@EmilyVanCamp,Please check out this fundraiser: 'Reuben's Fight' https://t.co/lc6mOsLK9T +02/05/2017,Actors,@EmilyVanCamp,😂😂😂 https://t.co/kdH4EIEQqS +02/03/2017,Actors,@EmilyVanCamp,"RT @HuffingtonPost: Democrats see Pat Toomey as ""best option"" for sinking DeVos' confirmation https://t.co/8anHBKczHO https://t.co/BwRMD5xo…" +02/03/2017,Actors,@EmilyVanCamp,Buy Pat Toomey's Vote https://t.co/Fj5nDoe5Y7 +02/01/2017,Actors,@EmilyVanCamp,RT @KeithOlbermann: Show the networks and media how to NOT participate in propaganda from a man who wants to destroy them: DO. NOT. WATCH.… +01/31/2017,Actors,@EmilyVanCamp,"RT @Jason_Pollock: IMPORTANT ACTION: If you're in one of these states, call your senators asap. We MUST keep pushing to block Betsy Devos f…" +01/30/2017,Actors,@EmilyVanCamp,Voices from the women's march #wewontgoaway #lovewins ❤️ A film by @emmahollyjones https://t.co/L1Gt0aLHuE +01/29/2017,Actors,@EmilyVanCamp,"RT @WajahatAli: If you do support the #MuslimBan today, remember this: you will be remembered as the villains of our children's history boo…" +01/29/2017,Actors,@EmilyVanCamp,Thank you @JustinTrudeau for reminding us that real and compassionate leadership still exists. Take note… https://t.co/ZA0pJ8hhIH +01/28/2017,Actors,@EmilyVanCamp,"I see you. I support you. #LGBTQ students, you are loved. https://t.co/ZGCZSVHVy1 #KindnessInAction" +01/26/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: He's literally not sane. How do you explain, calmly, to a Trump supporter, that thus he must resign? I tried: https://t…" +01/26/2017,Actors,@EmilyVanCamp,"RT @jonfavs: Republicans take control of Washington, and immediately charge taxpayers at least $14 billion for a concrete wall. Good voting…" +01/26/2017,Actors,@EmilyVanCamp,I certainly hope so.... or you could just resign? https://t.co/5U6Mm4asj7 +01/25/2017,Actors,@EmilyVanCamp,Following! https://t.co/2JuzgZbM9P +01/23/2017,Actors,@EmilyVanCamp,"RT @MMFlint: Rule #1: Never acknowledge to the protesters that u ""watched"" them & that they ""got"" to you. So, thank u 4 helping to organize…" +01/22/2017,Actors,@EmilyVanCamp,RT @MattMcGorry: 2day we march w women of the world 2 support their power & remember that Democracy is built 1 footstep at a time #WomensMa… +01/22/2017,Actors,@EmilyVanCamp,When love and resistance meet ❤️ #womensmarch #LoveWins https://t.co/HbKxHLPTm5 +01/21/2017,Actors,@EmilyVanCamp,No better way to protest than with a dance party! #WomensMarch #peacefulprotests #Lovewins https://t.co/kAUtUiZn10 +01/21/2017,Actors,@EmilyVanCamp,Yup. https://t.co/ds0Hjo4AGp +01/21/2017,Actors,@EmilyVanCamp,#feminists https://t.co/OVWoueDtLi +01/21/2017,Actors,@EmilyVanCamp,Love. Trumps. Hate. ❤️#womensmarch #lovetrumpshate #LoveWins https://t.co/e0UZs4jYRJ +01/21/2017,Actors,@EmilyVanCamp,Let's do this people! 💃🏼💃🏼💃🏼 https://t.co/lwGVhBK75k +01/21/2017,Actors,@EmilyVanCamp,All laughs all day with this crew.. just what the doctor ordered ❤️ thanks @unistudios and… https://t.co/97dwIwQz8b +01/21/2017,Actors,@EmilyVanCamp,Agreed. Thanks for such a lovely time! @UniStudios @smashleybell @tolga_safer @IddoG https://t.co/7oiSwt2c8L +01/20/2017,Actors,@EmilyVanCamp,#tbt to this magical day in one of my favorite places. Tomorrow will be a difficult day for many… https://t.co/Yo0V2b8E0P +01/19/2017,Actors,@EmilyVanCamp,RT @HuffingtonPost: Trevor Noah eviscerates Betsy DeVos over her confirmation hearing https://t.co/YHgARdumzm https://t.co/Ez21XhbWVI +01/19/2017,Actors,@EmilyVanCamp,https://t.co/q9JZOTd6sG +01/19/2017,Actors,@EmilyVanCamp,If you are in L.A. join us!! Time to get organized and stand up. For everyone else around the world who are doing t… https://t.co/8DwyAk0UpR +01/19/2017,Actors,@EmilyVanCamp,Emily Thorne would approve too. Now go watch people! #SIX @BarrySloane https://t.co/3jegu2xF9i +01/19/2017,Actors,@EmilyVanCamp,RT @BarrySloane: #SIX premiere night! We will be LIVE #tweeting #eastcoast at 10/9c on @history Can't wait for you to meet my #six family.… +01/19/2017,Actors,@EmilyVanCamp,Check out my buddy @BarrySloane on his awesome new show #SIX tonight! https://t.co/DGdd3UutiH +01/16/2017,Actors,@EmilyVanCamp,✨🙏🏻✨ https://t.co/3cwOcNaxnS +07/02/2018,Actors,@Gabriel_Mann,"RT @langston_poems: Tomorrow +Is another +Page." +07/02/2018,Actors,@Gabriel_Mann,..mad love backatcha Ash x https://t.co/b4aZjOwY9S +07/02/2018,Actors,@Gabriel_Mann,RT @RevengeBrCom: #VanMann ❤️ https://t.co/jlG2oLruby +07/01/2018,Actors,@Gabriel_Mann,#8X8 @revenge revival..? ;) @ABCNetwork ❌ @EmilyVanCamp @smashleybell @Nick_Wechsler #JoshBowman #MikeKelley… https://t.co/eyfVIJ0hsX +05/15/2018,Actors,@Gabriel_Mann,Huge thanks for the HBD love 🎈XG +01/02/2018,Actors,@Gabriel_Mann,#newyear #newmusic #anthem #2018 - dont sleep on the new @Franz_Ferdinand / 'always ascending' (Official Video)… https://t.co/AU1cly1kJx +01/02/2018,Actors,@Gabriel_Mann,happy new year #2018 ☄️ https://t.co/4YgwgaSDuE +12/29/2017,Actors,@Gabriel_Mann,RT @DamnationTV: Creeley knows better than to get too comfortable. #DamnationTV https://t.co/T8J9U3aogI +12/29/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: The Hunting Party +#buckleup https://t.co/AXDagNzGag" +12/28/2017,Actors,@Gabriel_Mann,RT @TSElibot: I have measured out my life with coffee spoons +12/28/2017,Actors,@Gabriel_Mann,lets go hunting @TheRealElemgy @Zach_McGowan @Nicholsondk @DamnationTV #DamnationTV @USA_Network https://t.co/5fzxc3mb09 +12/28/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9C @DamnationTV EP7 @USA_Network @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/kNDSBadlgw +12/28/2017,Actors,@Gabriel_Mann,"RT @BradleyStryker: Tonight 10/9c, and for the next 4 weeks, you’ll get very familiar with this crew #damnationtv #usanetwork #nbcuniversal…" +12/27/2017,Actors,@Gabriel_Mann,RT @IndieWire: 20 Rising Female Filmmakers You Need to Know: https://t.co/g8Ki5NdZnX https://t.co/1zMudcQlNn +12/27/2017,Actors,@Gabriel_Mann,RT @TEDTalks: 10 reasons to love — and support — our teachers: https://t.co/kjglWg3S4Z +12/25/2017,Actors,@Gabriel_Mann,#MerryChristmasEve thanks for all the holiday cheer..be safe..be kind..spread love 2018 ✌🏼⭐️ XG https://t.co/IBflPDl9Hj +12/22/2017,Actors,@Gabriel_Mann,"RT @tvserieshub: #DamnationTV is one of TV Series Hub's favorite new shows of 2017! +Enjoy a new episode starting right now!! + +Check out our…" +12/21/2017,Actors,@Gabriel_Mann,RT @Dazed: How Buddhist chanting with @Courtney Love changed my life: https://t.co/yWuxvP9nLU https://t.co/Lx31kbc9Vx +12/21/2017,Actors,@Gabriel_Mann,RT @chefjoseandres: We served the @NationalGuard in Puerto Rico and again we are side by side in California providing hot meals twice a day… +12/21/2017,Actors,@Gabriel_Mann,"RT @Yeats_Quotes: Have we not everything that life can give +In having one another?" +12/21/2017,Actors,@Gabriel_Mann,go go S2 #Cardinal x KV @karinevanasse https://t.co/2Mtkn2JZp0 +12/21/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9c EP6 @DamnationTV @USA_Network @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/adQrGkh6bz +12/21/2017,Actors,@Gabriel_Mann,Tonite @DanDonohue3 #DamnationTV @USA_Network ;) #CalvinRumple@ @DamnationTV https://t.co/5hfdFfsVWr +12/21/2017,Actors,@Gabriel_Mann,"RT @CovHousePrez: This Christmas season, let's make our most radical response to darkness a heart of gratitude for all that lifts us up, al…" +12/18/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/PEH9mdNJh4 +12/15/2017,Actors,@Gabriel_Mann,#DamnationTV starts now. Enjoy #MartinEggersHydePhD @USA_Network @DamnationTV https://t.co/Ue1QLcdGLa +12/15/2017,Actors,@Gabriel_Mann,agreed..#SarahJones too. if only so they could experience the appreciation of this show’s super engaged viewers and… https://t.co/CEsjLso0AE +12/15/2017,Actors,@Gabriel_Mann,privilege to work with this cast/crew..everyone giving 150% every day on set and behind the scenes. the creativity… https://t.co/LHypuSoCqA +12/15/2017,Actors,@Gabriel_Mann,"RT @tonytost: Tonight’s episode of #DamnationTV features WWE superstar Luke Harper, a Gillian Welch song, a soothsayer named Tiresias, and…" +12/15/2017,Actors,@Gabriel_Mann,RT @DanDonohue3: Calvin Rumple... #DamnationTV https://t.co/kepr3YbPM7 +12/15/2017,Actors,@Gabriel_Mann,#Connie @MelindaPageHam 👏🏼 #DamnationTV https://t.co/fuqHEzLU7F +12/15/2017,Actors,@Gabriel_Mann,YES @chastenharmon #DamnationTV @USA_Network https://t.co/DsMAfonrgm +12/15/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: ""When you turn on the TV to watch the show... you're going in for an experience and every moment matters."" + +Don't miss Sa…" +12/15/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9c @DamnationTV @USA_Network #DenOfLostSouls @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/dlywda6OW7 +12/14/2017,Actors,@Gabriel_Mann,RT @EmLGee: @Gabriel_Mann @DamnationTV @USA_Network @TheDamnedFlock It looks like #MartinEggersHydePhD is headed back on the path to #Damna… +12/14/2017,Actors,@Gabriel_Mann,RT @WWE: Go behind the scenes of @LukeHarperWWE's appearance on @USA_Network's @DamnationTV TONIGHT at 10/9c! https://t.co/Ftr9v7Iina +12/14/2017,Actors,@Gabriel_Mann,thx sir wechs..much love https://t.co/u4UeIBgocz +12/14/2017,Actors,@Gabriel_Mann,only thing missing is you @ElleSatine ..crossover? #DamnationTV x #TheGifted https://t.co/9j9K0V6Kx4 +12/14/2017,Actors,@Gabriel_Mann,Back on the path to @DamnationTV TONITE 10/9c : EP5 #DenOfLostSouls @USA_Network @TheDamnedFlock… https://t.co/ctQGskJCPP +12/14/2017,Actors,@Gabriel_Mann,RT @tonytost: A Spotify playlist for #DamnationTV fans: BESSIE LOUVIN'S RECORD COLLECTION https://t.co/HqqHXLEoDx +12/14/2017,Actors,@Gabriel_Mann,"RT @netflix: We’re disappointed in the decision to gut #NetNeutrality protections that ushered in an unprecedented era of innovation, creat…" +12/14/2017,Actors,@Gabriel_Mann,RT @priincess_exe: I've seen far too many people saying their goodbyes assuming the FCC vote on #NetNeutrality is the end-all - be-all. It… +12/14/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: The carnival is sure to bring smiles and good times to the people of Holden, right? + +An all-new #DamnationTV begins tonig…" +12/14/2017,Actors,@Gabriel_Mann,"RT @danielletbd: #NetNeutrality +1. Go to https://t.co/sBQAJQWeRw +2. Click on the 17-108 link +2. Click on ""+express"" +3. Hit ""ENTER"" after y…" +12/14/2017,Actors,@Gabriel_Mann,RT @EmilyVanCamp: New trailer for #TheResident January 21st on FOX https://t.co/FtqtYFkITM +12/13/2017,Actors,@Gabriel_Mann,"RT @Policy: We, at Twitter, believe that #NetNeutrality is key to free expression, innovation & public safety. Tomorrow is a critical day f…" +12/13/2017,Actors,@Gabriel_Mann,"RT @iamvbs: nw Netflix's #Dark + +The distinction between the past, present and future is nothing but an illusion. +Yesterday, today and tomor…" +12/13/2017,Actors,@Gabriel_Mann,"RT @Lin_Manuel: YOOOOOOOOOOOO dropping 280 for this... +Let’s bring 10k gifts to kids in 🇵🇷 this holiday season! +@toysrus will deliver ‘em…" +12/13/2017,Actors,@Gabriel_Mann,RT @RealDebKaplan: I wasn't nominated for a Golden Globe but the cashier at Vons just loaned me her club card and I saved $19.83 so I have… +12/12/2017,Actors,@Gabriel_Mann,Love Is All We Have Left @U2 https://t.co/f4KrFLZr6M +12/11/2017,Actors,@Gabriel_Mann,"RT @openculture: Watch ""The ""Art of Flying,"" a Short Film Capturing the Wondrous Murmurations of the Common Starling https://t.co/YxN4F0dJb…" +12/11/2017,Actors,@Gabriel_Mann,"RT @irmadesmond: ""I think it would be discourteous to remake 'All About Eve' while I am alive... But after I'm gone, I'd like to look down,…" +12/11/2017,Actors,@Gabriel_Mann,RT @nowthisnews: Here's how you can use your holiday shopping to help Puerto Rico https://t.co/4JhqTedjZo +12/10/2017,Actors,@Gabriel_Mann,"RT @amnesty: Love. +Courage. +Passion. +Passion. +Passion. + +Happy #HumanRightsDay! https://t.co/35siygixzN" +12/10/2017,Actors,@Gabriel_Mann,RT @Pinter_Quotes: I can't really articulate what I feel. +12/10/2017,Actors,@Gabriel_Mann,"RT @openculture: Giant Clown Sings a Creepy Cover of Radiohead's “Creep"" https://t.co/1rwlWGebxu https://t.co/7Oo3QYo8VY" +12/10/2017,Actors,@Gabriel_Mann,"pleasure was mine, grateful to bring awareness thanks to @DilshadVadsaria https://t.co/6t6ZaNTShy" +12/10/2017,Actors,@Gabriel_Mann,RT @muldersfish: I feel so called out right now. https://t.co/zI3HoVApb9 +12/09/2017,Actors,@Gabriel_Mann,@brwneyesnbama I’m open to intelligent discussions but the video is literally right there..did you take the time to… https://t.co/5T97rUmeoV +12/09/2017,Actors,@Gabriel_Mann,aww shucks #NolanRoss https://t.co/TgCFHLZFOq +12/09/2017,Actors,@Gabriel_Mann,"RT @NatGeo: ""When scientists say bears are going extinct, I want people to realize what it looks like,"" says photographer Paul Nicklen http…" +12/09/2017,Actors,@Gabriel_Mann,can. not. wait. x https://t.co/PtWBz9MwnD +12/08/2017,Actors,@Gabriel_Mann,"RT @DalaiLama: Peace in the world depends on peace within. If we have that we can approach problems in a spirit of compassion, dialogue and…" +12/08/2017,Actors,@Gabriel_Mann,RT @andmichaelgreen: Somewhere on Twitter lurks #EmilyBrowning under an alias she has told no one not even her dog. So join me in wishing h… +12/08/2017,Actors,@Gabriel_Mann,@brwneyesnbama i wish it were +12/08/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/omdXc7IWAE +12/08/2017,Actors,@Gabriel_Mann,RT @TheFixGym: #GetYourselfFree https://t.co/oXNIgjWuEN +12/08/2017,Actors,@Gabriel_Mann,blown away by all the actors. casting is pitch perfect. top notch direction/production/writing. one of the best sho… https://t.co/RP8MzEvJxX +12/07/2017,Actors,@Gabriel_Mann,#SaveNetNeutrality https://t.co/B4FpcRXua4 +12/07/2017,Actors,@Gabriel_Mann,@appifanie Appreciate that ! ✌🏼 +12/07/2017,Actors,@Gabriel_Mann,Doesn’t matter how you spell it once it’s gone. Save #NetNeutrality #NetNuetrality https://t.co/3jomryNbDB +12/07/2017,Actors,@Gabriel_Mann,RT @mang0ld: You can call him crazy. You can also call him kind. https://t.co/P8Dt4ryBeu +12/06/2017,Actors,@Gabriel_Mann,RT @ava: Proud to stand with these talented directors. Many studios have not one woman on their upcoming slate. Props to @Disney. Three at… +12/06/2017,Actors,@Gabriel_Mann,"RT @rosariodawson: Blessings and thanks to all the volunteers and especially the firefighters risking their lives to protect people, nature…" +12/06/2017,Actors,@Gabriel_Mann,"RT @TheEllenShow: If you live anywhere in Southern California, your life is being impacted by the fires today. Please be careful and make r…" +12/06/2017,Actors,@Gabriel_Mann,RT @BarrySloane: Hard time of the year for a lot of folks.. Hotline 800-273-TALK (8255). A simple copy and paste might save someone's life.… +12/04/2017,Actors,@Gabriel_Mann,"RT @THR: On the topic of dealing with fear as an actor, Dafoe discussed how confronting the unknown can bring about ""courage"" https://t.co/…" +12/02/2017,Actors,@Gabriel_Mann,"RT @Rumi_Quote: Wealth has nothing constant, It comes in the morning and is gone at night. Have self-restraint, for patience is the key." +12/02/2017,Actors,@Gabriel_Mann,"RT @edgarwright: Among the many things 'The Shape Of Water' should be applauded for, is the chance for the amazing Sally Hawkins to shine s…" +12/02/2017,Actors,@Gabriel_Mann,"RT @TSElibot: History has many cunning passages, contrived corridors and issues, deceives with whispering ambitions, guides us by vanities.…" +12/01/2017,Actors,@Gabriel_Mann,RT @dark_shark: Project C-90: The Ultimate Audiotape Guide #cassette #recording #technology https://t.co/NX3UyoDMI2 https://t.co/dCfQp53ZGq +11/30/2017,Actors,@Gabriel_Mann,high praise..credit 95% @revenge costume guru @JillOhanneson / 5% actor input ❌ https://t.co/MGt4hORvxt +11/28/2017,Actors,@Gabriel_Mann,"RT @DilshadVadsaria: Thank u my generous friend @Gabriel_Mann for making this happen. You’re one of a kind. + +Revengers! Help me auction off…" +11/28/2017,Actors,@Gabriel_Mann,"RT @DilshadVadsaria: THE AUCTION IS LIVE! +Thank you to my amazing friend @dmorey & @HoustonRockets for your generous donation of this sign…" +11/27/2017,Actors,@Gabriel_Mann,RT @TSElibot: The end of all our exploring will be to arrive where we started and know the place for the first time. +11/24/2017,Actors,@Gabriel_Mann,RT @DalaiLama: What is important is not so much how long you live as whether you live a meaningful life. This doesn’t mean accumulating mon… +11/23/2017,Actors,@Gabriel_Mann,RT @InsightLA: Happy #Thanksgiving for all of us @Insight<<<<<<>>>>>>A Simple Mindful Practice to Ground You in Gratitude https://t.co/x3D8… +11/23/2017,Actors,@Gabriel_Mann,"RT @eveewing: Love to everyone who wants to be with their family this week, but can’t. Love to those for whom “home” is not a safe or welco…" +11/23/2017,Actors,@Gabriel_Mann,RT @nytimes: Just in case you bump into the one who got away this Thanksgiving Eve https://t.co/JqYCDCYBad +11/23/2017,Actors,@Gabriel_Mann,"RT @JohnJpshanley: There’s a Thanksgiving table. At it sit the living and the dead. They join hands, feeling the bond. My mother and father…" +11/23/2017,Actors,@Gabriel_Mann,RT @fairuza: Simple beauty https://t.co/k8X1Do3GGd +11/22/2017,Actors,@Gabriel_Mann,RT @InsightLA: Train Your Brain to Tame Holiday Stress and Anxiety https://t.co/I0iMunFUEK via @MindfulOnline +11/22/2017,Actors,@Gabriel_Mann,RT @IosrscIub: WHY IS THIS THE ONLY BULLSHIT I CAN LAUGH AT ANYMORE I CANT BREATHE https://t.co/GwOes0bPj0 +11/22/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/sMyB7rhVZn +11/21/2017,Actors,@Gabriel_Mann,yes please https://t.co/icQ26hMmHt +11/21/2017,Actors,@Gabriel_Mann,RT @cassianelwes: Please tell any female directors you know in college to opt in to @horizonaward for the chance to come to Sundance for me… +11/21/2017,Actors,@Gabriel_Mann,RT @DailyKerouac: All that old road of the past unreeling dizzily as if the cup of life had been overturned and everything gone mad. +11/21/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: We all have our time machines. Some take us back, they're called memories. Some take us forward, they're called dreams. +-J…" +11/21/2017,Actors,@Gabriel_Mann,RT @Mikel_Jollett: This is the coolest thing I've ever seen. https://t.co/5NhkbZdtTC +11/20/2017,Actors,@Gabriel_Mann,"RT @demiurge_ous: @Gabriel_Mann @ElleSatine Thank you for portraying the characters who are kind, complex, fluid, and committed when it com…" +11/20/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/rcTjU5ZGFo +11/20/2017,Actors,@Gabriel_Mann,"RT @edgarwright: If '2001: A Space Odyssey' is playing on 70mm, I'm going. Saw it again at the Egyptian. It remains, the ultimate trip. htt…" +11/20/2017,Actors,@Gabriel_Mann,RT @openculture: Consider it addition through subtraction. https://t.co/hXbDY0ee0a +11/20/2017,Actors,@Gabriel_Mann,#Flashback ace nite @erdem dinner x @chateau_marmont w the whip smart #EmilyBrowning @voguemagazine #LisaLove https://t.co/GtvwlmncNF +11/20/2017,Actors,@Gabriel_Mann,RT @FallonTonight: Every audition ever... https://t.co/dSHyMLS009 +11/20/2017,Actors,@Gabriel_Mann,always felt fortunate to contemplate a moment w @ElleSatine #revenge https://t.co/RtfM3gkwcv +11/20/2017,Actors,@Gabriel_Mann,many thanks..you sir are one of my all time acting heroes..cheers LH 🙌🏼 https://t.co/Az6dMqmm44 +11/18/2017,Actors,@Gabriel_Mann,"RT @FastCoIdeas: The world could run *entirely* on wind, solar, and hydro power by 2050—if that's what we really wanted: https://t.co/Rti8B…" +11/17/2017,Actors,@Gabriel_Mann,RT @DalaiLama: I don’t like formality. There’s no formality when we’re born and none when we die. In between we should treat each other as… +11/17/2017,Actors,@Gabriel_Mann,"RT @TheEllenShow: Please retweet & use #BeKindToElephants, and for everyone who does, we’ll make a donation to The David Sheldrick Wildlife…" +11/17/2017,Actors,@Gabriel_Mann,RT @nytimes: An Earth-sized planet about 11 light-years from Earth could hold liquid water and conditions favorable for life https://t.co/8… +11/16/2017,Actors,@Gabriel_Mann,RT @yashar: That tusk belongs to her mama and no one else...and it's not a partisan statement to say that. https://t.co/mewmOE5zUh +11/16/2017,Actors,@Gabriel_Mann,RT @NietzscheQuotes: We hear only those questions for which we are in a position to find answers. #Nietzsche +11/16/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/RlMZJoUiz1 +11/16/2017,Actors,@Gabriel_Mann,was and always will be a pleasure my friend..class act all the way. big cheers NJL https://t.co/RAqCUT7imQ +11/15/2017,Actors,@Gabriel_Mann,"RT @againststream: We invite you to take a moment to be present. + +Feel where your body meets your seat. Feel where your breath meets your…" +11/15/2017,Actors,@Gabriel_Mann,RT @TEDTalks: These heroic chefs fed 2 million meals to hungry people in Puerto Rico after Hurricane Maria. #ChefsForPuertoRico @chefjosean… +11/15/2017,Actors,@Gabriel_Mann,😉 https://t.co/irCrgmgHdu +11/15/2017,Actors,@Gabriel_Mann,#WhichSideAreYouOn EP2 @DamnationTV @USA_Network starts now #EastCoast #DamnationTv https://t.co/87ATMDWNU0 +11/15/2017,Actors,@Gabriel_Mann,love watching you two do what you do @TheRealElemgy @chastenharmon #DamnationTV https://t.co/INsuVV0GGy +11/15/2017,Actors,@Gabriel_Mann,"RT @tonytost: New episode of #DamnationTV tonight on USA at 10 pm/9 central. Episode 102: ""Which Side Are You On?"" Directed by the great Ad…" +11/15/2017,Actors,@Gabriel_Mann,working w the brilliant costume designer @Jerianadesign was a gift in itself. sheer genius. she raises the bar ever… https://t.co/0LxYsxV9Us +11/14/2017,Actors,@Gabriel_Mann,TONITE..we are all headed to @DamnationTV - @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler… https://t.co/FXGntl3eov +11/12/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/26xVWmmzie +11/08/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/a7kDXNclMY +11/08/2017,Actors,@Gabriel_Mann,Next Tues.. - @DamnationTV @USA_Network - EP2 - Which Side Are You On / This Season - Promo https://t.co/rUnjLRK4Ey via @YouTube +11/08/2017,Actors,@Gabriel_Mann,Let’s give Chas a warm twitter welcome back from 2012 😉 amazing job tonite @DamnationTV btw x https://t.co/0Dl3aKSbg1 +11/08/2017,Actors,@Gabriel_Mann,follow @USA_Network #DamnationTV Cast: @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler… https://t.co/1NdBQm6g7O +11/08/2017,Actors,@Gabriel_Mann,congrats on the @DamnationTV premiere tonite @TheRealElemgy @MelindaPageHam @chastenharmon @JpAdler @DanDonohue3… https://t.co/H7PbCsqSIb +11/08/2017,Actors,@Gabriel_Mann,so privileged to be a small part of the epic 30s depression era saga @tonytost created in @DamnationTV ..you may ha… https://t.co/hKI5Ia92pI +11/08/2017,Actors,@Gabriel_Mann,"RT @tonytost: I'm thrilled to have #DamnationTV out in the world tonight. It's a weird, bloody love letter to America. I hope folks have fu…" +11/08/2017,Actors,@Gabriel_Mann,RT @DilshadVadsaria: Cooking up something Revengey with this doll for @RoomtoRead. Can’t wait to share! @Gabriel_Mann #love #dogood #positi… +11/07/2017,Actors,@Gabriel_Mann,"RT @RockTheVote: #ElectionDay is today & if you face any problems at the polls, or have questions, @866OURVOTE has your back! https://t.co/…" +11/07/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/6ZSzsSyesJ +11/06/2017,Actors,@Gabriel_Mann,I’ve got plenty of ‘thoughts’ about politicians who offer ‘prayers’ but NO action to prevent or rectify #texas 💔 https://t.co/9qdWerFSm4 +11/06/2017,Actors,@Gabriel_Mann,RT @missipyle: Love is the only thing left that means anything. its the only currency we have left. +11/05/2017,Actors,@Gabriel_Mann,"RT @Yeats_Quotes: I see my life go drifting like a river +From change to change; I have been many things –" +11/05/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/ITjdBXUzr0 +11/05/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: “Men do change, and change comes like a little wind that ruffles the curtains at dawn, and it… https://t.co/fcKOyIxcwW" +11/04/2017,Actors,@Gabriel_Mann,RT @JoshPherigo: Watching people return this dropped hat at the parade today was unreasonably thrilling https://t.co/1ghfUJsItw +11/04/2017,Actors,@Gabriel_Mann,RT @attn: States are ditching daylight savings because it has no benefits. https://t.co/ytCvNGwc8w +11/04/2017,Actors,@Gabriel_Mann,RT @konstruktivizm: Dali https://t.co/ahg3Vc47t7 +11/04/2017,Actors,@Gabriel_Mann,RT @bymarktwain: Action speaks louder than words but not nearly as often. #MarkTwain +11/04/2017,Actors,@Gabriel_Mann,RT @Watching: This month will feature an especially impressive lineup of new TV shows https://t.co/kuDT2to4aI +11/04/2017,Actors,@Gabriel_Mann,ladies and gents meet #SarahJones..literally killing it in @DamnationTV @USA_Network - Nov 7th https://t.co/ZeImzQesrR +11/04/2017,Actors,@Gabriel_Mann,RT @DanDonohue3: Proud to be a part of this brilliant new show! https://t.co/T9u7zZyap4 +11/04/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: “Now we know. We dare to understand. Truly. Truly, the past was a dream. But this, this is… https://t.co/9lHrXN1W3b" +11/04/2017,Actors,@Gabriel_Mann,"RT @Nicholsondk: What a treat to get to work on this exciting new show. All talent and hard work, no ego. https://t.co/eNJ1pc3YES" +11/04/2017,Actors,@Gabriel_Mann,RT @tonytost: Really enjoyed talking Damnation. https://t.co/HNHbOWczZo +11/04/2017,Actors,@Gabriel_Mann,RT @BradleyStryker: “The only thing we have to fear is fear itself.” - FDR #damnationtv #comingsoon #usanetwork… https://t.co/IJjwGyIJls +11/04/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: Man’s world? Think again. + +Make sure you’re ready for @USA_Network’s newest drama #DamnationTV, premiering November 7. ht…" +11/04/2017,Actors,@Gabriel_Mann,"RT @FastCoIdeas: Humankind is now the strongest force shaping the planet, as you've probably noticed. https://t.co/ooYq9VtyN9" +11/04/2017,Actors,@Gabriel_Mann,. @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler @DanDonohue3 @Paul_Rae @BradleyStryker… https://t.co/srFUbH3Zrq +11/04/2017,Actors,@Gabriel_Mann,"RT @MindPodNetwork: Taurus Full Moon +https://t.co/fr5xyqFlBK https://t.co/hPxX7v9Hvw" +11/04/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: Some people arrive and make such a great impact on your life,that you can barely remember what life was without them.#reve…" +11/04/2017,Actors,@Gabriel_Mann,all day long https://t.co/6EL7S6XSQ3 +11/03/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: The past can't stay hidden forever - and it won't. + +#DamnationTV begins November 7 on @USA_Network. https://t.co/Z1OzFq6Jja" +11/03/2017,Actors,@Gabriel_Mann,RT @DalaiLama: The most crucial use of knowledge and education is to understand the importance of developing a good heart. +11/03/2017,Actors,@Gabriel_Mann,RT @jes_chastain: Can #RobinWright just be the lead of @HouseofCards now? We're ready for it. +11/03/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/p3tdkSNl41 +11/02/2017,Actors,@Gabriel_Mann,RT @DebraMessing: ENROLLMENT STARTS TODAY!!! #ACA https://t.co/HGmD0xtcCY +11/01/2017,Actors,@Gabriel_Mann,RT @tinybuddha: Perfectionism can be so paralyzing. We don't have to be the best at everything we do. We just have to show up & try. https:… +11/01/2017,Actors,@Gabriel_Mann,RT @Nick_Wechsler: I stopped dressing up for Halloween when I could afford my own candy. https://t.co/GSsozU7dVO +10/31/2017,Actors,@Gabriel_Mann,"RT @michaelianblack: Glad New York Halloween parade is continuing. Go be fabulous, NYC." +10/31/2017,Actors,@Gabriel_Mann,NY💧❤️✊🏼 https://t.co/wf697eufXE +10/31/2017,Actors,@Gabriel_Mann,if u missed the #JosieAndThePussycats reunion concert w @kayhanley ENJOY @RealDebKaplan @HarryElfont @RachaelLCook… https://t.co/VWK9pHTccB +10/31/2017,Actors,@Gabriel_Mann,"RT @NASA: Happy Halloween! This jack-o-lantern is 🔥…literally! It’s our Sun in 2014, w/ active regions on its surface https://t.co/2R2y25Zf…" +10/31/2017,Actors,@Gabriel_Mann,RT @azrielshields: Happy Halloween! https://t.co/4idyF9p2Gm +10/31/2017,Actors,@Gabriel_Mann,"RT @NOWNESS: ""Under severe weather conditions, life does not necessarily make any sense."" – A lo-fi portrait of an Arctic town: https://t.c…" +10/31/2017,Actors,@Gabriel_Mann,"RT @NewYorker: A Halloween-themed cover by Harry Bliss, from 1999: https://t.co/9GBLvw6V9c https://t.co/ZWfmYOPRxV" +10/31/2017,Actors,@Gabriel_Mann,@megumi0309 Tokyo yes! Worked on a film called #RamenGirl ..incredible city +10/31/2017,Actors,@Gabriel_Mann,"RT @NPR: It's a touchy subject, but we need to know: What are your thoughts on candy corn? 🎃🍬" +10/31/2017,Actors,@Gabriel_Mann,walking for @CalvinKlein in #MillennialPink before Millennials wore pink 🤘🏼#BackInTheDay #90s https://t.co/DLzp8GgYiv +10/30/2017,Actors,@Gabriel_Mann,RT @IndieWire: 10 Great Directors Who Should Make Horror Movies — IndieWire Critics Survey https://t.co/pIQmXiSWvw https://t.co/RUl4lubEJc +10/30/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/QQPEyFEda1 +10/29/2017,Actors,@Gabriel_Mann,Halloalienorcist 🎃 https://t.co/gBjOq5Qxdd +10/29/2017,Actors,@Gabriel_Mann,@troyesdance you inspire me. thank you for the kind words Hannah.. +10/29/2017,Actors,@Gabriel_Mann,RT @BrosConfessions: can’t have pomegranates https://t.co/kKY8ivExwe +10/29/2017,Actors,@Gabriel_Mann,Countdown to @DamnationTV @USA_Network https://t.co/e2JIPpYrxm +10/29/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/0kjEEkeAWq +10/29/2017,Actors,@Gabriel_Mann,#BTS @USA_Network @DamnationTV w creator: @tonytost & stars @TheRealElemgy #KillianScott #SarahJones @chastenHarmon https://t.co/yNhvOcMzoU +10/29/2017,Actors,@Gabriel_Mann,#Follow @DamnationTV @TheRealElemgy @MelindaPageHam @chastenharmon @jpadler @CHeyerdahl @Paul_Rae @DanDonohue3 @Nicholsondk @Zach_McGowan +10/29/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/gL7yOsRHmj +10/29/2017,Actors,@Gabriel_Mann,"RT @Khall_llen426_: I Miss Revenge ❌🎬 +@EmilyVanCamp @Gabriel_Mann @Nick_Wechsler +#JoshBowman +▫My favorite series❤💥 +▫Wonderful cast👏❤ http…" +10/29/2017,Actors,@Gabriel_Mann,RT @TSElibot: What we call the beginning is often the end and to make an end is to make a beginning. The end is where we start from. +10/27/2017,Actors,@Gabriel_Mann,@nothing_woman Of course. It’s more about letting people know what I stand for. +10/27/2017,Actors,@Gabriel_Mann,if you support #racism #sexism #misogyny #harassment #xenophobia #discrimination #homophobia #bullying please #unfollow ✌🏼 thx in advance ✌🏼 +10/27/2017,Actors,@Gabriel_Mann,Cheers @TommyHilfiger — @JuliensAuctions thx for having me https://t.co/JWD6Zqfe18 +10/27/2017,Actors,@Gabriel_Mann,RT @TheFixGym: Sometimes the stillness inside is all that you have to hold on to. Especially in these complicated times. https://t.co/NG5bb… +10/27/2017,Actors,@Gabriel_Mann,RT @pamelaadlon: YES YES YES YES YES YES YES. https://t.co/VZrbGgOGfm +10/27/2017,Actors,@Gabriel_Mann,RT @DalaiLama: We need to improve the current education system by introducing instructions on ways to cultivate positive emotions like warm… +10/27/2017,Actors,@Gabriel_Mann,‘Good nite’ here..but this will work for any occasion https://t.co/TAsMo9p3wS +10/27/2017,Actors,@Gabriel_Mann,RT @70s_party: I am *so* tired of boiling ox tongues https://t.co/KS4s0TXS82 +10/25/2017,Actors,@Gabriel_Mann,"RT @MuseumModernArt: “Art is a lie that makes us realize truth.”—Pablo Picasso, born #OTD in 1881 https://t.co/YYVDrl39er https://t.co/zP4b…" +10/24/2017,Actors,@Gabriel_Mann,RT @_RenaHH: Who wore ist best? Charlie Brown @Peanuts or @Gabriel_Mann ? https://t.co/uHRXbzz9YB +10/23/2017,Actors,@Gabriel_Mann,RT @PatieAzelot: I create other worlds. Photography has the ability to freeze people in this time and space.T.Shields-photo chromatic #reve… +10/22/2017,Actors,@Gabriel_Mann,"RT @Tribeca: ""Take your broken heart, make it into art."" — Carrie Fisher #bornonthisday https://t.co/gRW3nXLSLO" +10/22/2017,Actors,@Gabriel_Mann,"RT @DailyKerouac: One day I will find the right words, and they will be simple." +07/02/2018,Actors,@Nick_Wechsler,"@BrandonJRouth Miss you too, my brother!" +07/02/2018,Actors,@Nick_Wechsler,@smashleybell Love you too! +07/01/2018,Actors,@Nick_Wechsler,RT @Gabriel_Mann: #8X8 @revenge revival..? ;) @ABCNetwork ❌ @EmilyVanCamp @smashleybell @Nick_Wechsler #JoshBowman #MikeKelley #MelissaLoy… +07/01/2018,Actors,@Nick_Wechsler,@1stepbeyond007 Hugs for the kind words. I was very lucky to be a part of it. +07/01/2018,Actors,@Nick_Wechsler,@kaada Fuck yes. +06/30/2018,Actors,@Nick_Wechsler,@TaranKillam I know! Amazing. +06/30/2018,Actors,@Nick_Wechsler,RT @albz: Does anyone do a good Hannity phone impression cuz I think we figured out how to solve this fucking nightmare. +06/30/2018,Actors,@Nick_Wechsler,@LindsHollister Shut up! I can’t grow a real one and you know it! +06/30/2018,Actors,@Nick_Wechsler,"RT @TheGeekLens: My pictures from the Black List Script Reading at the 2018 ATX Television Festival featuring Franklin Leonard, Matt Lauria…" +06/29/2018,Actors,@Nick_Wechsler,New ep this Sunday. https://t.co/QwASgZykNM +06/29/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: In an apparent attempt to try to break up the European Union, Trump reportedly told French President Emmanuel Macron that the…" +06/28/2018,Actors,@Nick_Wechsler,RT @albz: This is how you sell gold plated shit to a poor person on QVC. https://t.co/KRp8es6jxC +06/28/2018,Actors,@Nick_Wechsler,RT @TheDweck: I love how much it still eats away at him that he’s the king of dumb fucks instead of Hollywood https://t.co/hEaOyIAh4z +06/28/2018,Actors,@Nick_Wechsler,@AngelOlsen Awesome! I’m a fan of both. +06/26/2018,Actors,@Nick_Wechsler,"@realDonaldTrump You rigged it to your advantage, you miserable sack of shit, get the fuck out of here with your gloating, pretend shock." +06/26/2018,Actors,@Nick_Wechsler,"Well, most people are dirt stupid, so don’t take this to heart, America. https://t.co/go14wgyoWN" +06/26/2018,Actors,@Nick_Wechsler,@LizGillies Right? Fuck. +06/26/2018,Actors,@Nick_Wechsler,@unrealfehr @davidduchovny Not fucking bad. Not fucking bad at all. +06/25/2018,Actors,@Nick_Wechsler,@JennifersWayJE I’m both mind-blown and heartbroken by Esteban’s restraint. +06/25/2018,Actors,@Nick_Wechsler,RT @hodgman: It seems to me that it’s not discrimination if she was judged specifically by the content of her character. +06/25/2018,Actors,@Nick_Wechsler,@rolldiggity Ha! +06/25/2018,Actors,@Nick_Wechsler,RT @JLo: TWEET WITH US! #SHADESOFBLUE IS BACK AND ITS ONLY GETTING STARTED! https://t.co/GMKj5MaE7n +06/24/2018,Actors,@Nick_Wechsler,"@BrandonJRouth I’ve always loved that method. Like, “If you’re so proud of your cruelty, it shouldn’t bother you if I show the world.”" +06/24/2018,Actors,@Nick_Wechsler,RT @nbcshadesofblue: Family is everything to Harlee. #ShadesofBlue https://t.co/c9jXyrfS7u +06/24/2018,Actors,@Nick_Wechsler,"RT @kumailn: I know there are a bunch of people upset at the Nazi comparisons, but the highlighting-crimes-by-immigrants move is literally…" +06/24/2018,Actors,@Nick_Wechsler,RT @davidcrosss: There's no such thing as white privilege!!! https://t.co/fV9PM1G6BW +06/24/2018,Actors,@Nick_Wechsler,RT @JLo: #SHADESOFBLUE STARTED OFF WITH A BANG...BUT THERE’S MORE TO COME‼️ TUNE-IN TOMORROW NIGHT FOR THE NEXT CHAPTER IN THE CRIME SAGA‼️… +06/23/2018,Actors,@Nick_Wechsler,@_CourtneyFord_ Congrats!!! +06/22/2018,Actors,@Nick_Wechsler,RT @LauraDern: I AM! https://t.co/fbMbIkCMe8 +06/22/2018,Actors,@Nick_Wechsler,Madman. https://t.co/OZ5rDzgS7l +06/22/2018,Actors,@Nick_Wechsler,RT @chrislhayes: I am convinced that without sustained public pressure and/or litigation they are simply not going to reunite these familie… +06/21/2018,Actors,@Nick_Wechsler,"RT @pattonoswalt: This extraordinary ad for the extraordinary @mjhegar just redeemed a shitty, frustrating week. Her story is amazing enoug…" +06/21/2018,Actors,@Nick_Wechsler,"I hate him, you guys. https://t.co/EzTozZjwtj" +06/20/2018,Actors,@Nick_Wechsler,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Actors,@Nick_Wechsler,"@albz Oh, god, yes." +06/20/2018,Actors,@Nick_Wechsler,RT @perlmutations: Remember how we watched as this piece of shit said stuff when he was running that was so unthinkable that we wrote it of… +06/20/2018,Actors,@Nick_Wechsler,"RT @JoyAnnReid: How do you reunite an infant, who can not communicate who their parent is, with a parent who is not allowed to access them,…" +06/19/2018,Actors,@Nick_Wechsler,"Sweet Christ, yes. https://t.co/RW86ADhrYA" +06/19/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: NEW: Per @CNN, the Trump administration decided not to implement its cruel family separation policy earlier in his presidency…" +06/19/2018,Actors,@Nick_Wechsler,RT @RVAwonk: Here it is. This is the policy — announced 5 days after Trump was inaugurated — that is creating the horrendous situation we'r… +06/19/2018,Actors,@Nick_Wechsler,@kellyoxford YES. +06/17/2018,Actors,@Nick_Wechsler,RT @TheDweck: You’d think a guy who looks like this would be better at getting away with evil plans https://t.co/4QLGih9zqE +06/17/2018,Actors,@Nick_Wechsler,That is also a good point. https://t.co/1XCL8oengI +06/17/2018,Actors,@Nick_Wechsler,@mirandaannW I’ll be watching with balls on. +06/17/2018,Actors,@Nick_Wechsler,"RT @TellTaleTV_: #ShadesofBlue returns tonight! ICYMI, here’s our interview with @Nick_Wechsler about his role in the final season: https:/…" +06/17/2018,Actors,@Nick_Wechsler,"She makes a good point, you guys. https://t.co/mpi4lAPxck" +06/17/2018,Actors,@Nick_Wechsler,RT @RepJoeKennedy: Arrived in Tornillo TX where first tent city for kids has gone up. Was refused entrance by HHS. Given amount of misinfor… +06/17/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: The fuck kind of country are we living in? Good God. https://t.co/3sFbnxtzYn +06/17/2018,Actors,@Nick_Wechsler,@Katysloane @BarrySloane ❤️ +06/17/2018,Actors,@Nick_Wechsler,"Happy Father’s Day, motherfuckers." +06/17/2018,Actors,@Nick_Wechsler,"@kaada Goddammit, I love your work." +06/16/2018,Actors,@Nick_Wechsler,@JasonWGeorge @Station19 Lemme know about the rest! +06/16/2018,Actors,@Nick_Wechsler,"Jesus. Jesus, Jesus, Jesus, Jesus. JESUS. https://t.co/JygtAGDCVi" +06/16/2018,Actors,@Nick_Wechsler,@KristenMichele6 @ATXFestival You got it. 😉 (And thank you very much.) +06/15/2018,Actors,@Nick_Wechsler,@KristenMichele6 @ATXFestival Ha! Aw. Please become a casting director fast. +06/15/2018,Actors,@Nick_Wechsler,RT @ashleybsumerel: I so enjoyed chatting with @Nick_Wechsler about his upcoming role on #ShadesofBlue and more during during @ATXFestival.… +06/15/2018,Actors,@Nick_Wechsler,"Wanna read an article in which I wander aimlessly through the garden of my own shattered mind, ostensibly to promot… https://t.co/bDJJLvtQwx" +06/15/2018,Actors,@Nick_Wechsler,RT @HayyyCee: Young Californian voters should all know this is a political scheme to divide up the most powerful Democratic state in the co… +06/15/2018,Actors,@Nick_Wechsler,@LykkeLi Cannot wait. +06/15/2018,Actors,@Nick_Wechsler,RT @kumailn: Are you ok with this? This has nothing to do with your political affiliation. This is a human issue. https://t.co/5FxYlbYuFk +06/15/2018,Actors,@Nick_Wechsler,"RT @SimonWDC: Grandfather, been in the US for 50 years, since he was 13. He’s a legal resident. Went to high school here. Taken away by…" +06/15/2018,Actors,@Nick_Wechsler,"RT @DaveKingThing: worried that, psychologically as a nation, there might be a little too much riding on this mr. rogers documentary" +06/14/2018,Actors,@Nick_Wechsler,RT @AllisonBlairN: I spy @Nick_Wechsler! #ShadesofBlue https://t.co/ZnjYov5yZw +06/13/2018,Actors,@Nick_Wechsler,@whatdidreneesay @ATXFestival Yup! Great to see you! +06/13/2018,Actors,@Nick_Wechsler,This is infuriating. https://t.co/97xaBXUFBn +06/13/2018,Actors,@Nick_Wechsler,"Goddammit, I love your work, @bessbell. https://t.co/v2hJs6Gk4Z" +06/13/2018,Actors,@Nick_Wechsler,@brynak13 My pleasure. You were very patient with me. +06/13/2018,Actors,@Nick_Wechsler,@whatdidreneesay @ATXFestival Sure was. +06/13/2018,Actors,@Nick_Wechsler,RT @Acosta: An astonishing moment of pure honesty from Trump... https://t.co/R8JcsoXDu7 +06/12/2018,Actors,@Nick_Wechsler,"RT @sportingnews: This high school pitcher held off celebrating with his teammates so he could console his childhood friend instead. + +(📹:…" +06/12/2018,Actors,@Nick_Wechsler,"@LPMc @jaredmunson @ATXFestival Say hello anytime, you goofball!" +06/12/2018,Actors,@Nick_Wechsler,@SBHilts87 @fi_bee_9 @jaredmunson @crashdowncom @ATXFestival Holy shit! How’s it going Brian? +06/12/2018,Actors,@Nick_Wechsler,"@jaredmunson @ATXFestival Aw, man. That’s lovely of you to say. It was great to meet you, man. I actually saw you s… https://t.co/shaZo5oJKk" +06/12/2018,Actors,@Nick_Wechsler,"@SamWitwer That’s crazy! Could you make a life-sized, anatomically correct one? Just out of curiosity." +06/11/2018,Actors,@Nick_Wechsler,"@TraceySchulz @TellTaleTV_ @ATXFestival @PhilRosenthal Ha! Hey, man!" +06/11/2018,Actors,@Nick_Wechsler,@derekwaterss @ATXFestival @Bergmaster5000 It’s legitimately the best. And I’m always sure to catch your panel. This year’s was great. +06/11/2018,Actors,@Nick_Wechsler,@TheRealElemgy Rad. I will make sure they both watch Upgrade. It’s the least they could do. +06/11/2018,Actors,@Nick_Wechsler,@povprod @ATXFestival ❤️ +06/11/2018,Actors,@Nick_Wechsler,@talli_approved TOLD YOU. +06/11/2018,Actors,@Nick_Wechsler,"@ashleybsumerel Mutual, buddy." +06/11/2018,Actors,@Nick_Wechsler,@brynak13 My pleasure. Thank you for putting up with me. +06/11/2018,Actors,@Nick_Wechsler,"@stampness @ThisIsLafferty @JasonWGeorge @Tyreljwill @theKatWillis @taylor_dearden Thank you, Elizabeth, for allowi… https://t.co/Dc40AmV6Lx" +06/11/2018,Actors,@Nick_Wechsler,"@everythingloria @ATXFestival Aw. Well, it was lovely to bump into you, Gloria. I’ll tell Mexican @fredschroeder you gals said hello." +06/10/2018,Actors,@Nick_Wechsler,@debrabirnbaum @ATXFestival @CarltonCuse @mrbobodenkirk We caught each other! Always lovely running running into yo… https://t.co/qzYaUcButg +06/10/2018,Actors,@Nick_Wechsler,"RT @adamcbest: Fox & Friends accidentally said this about the Singapore summit: ""regardless of what happens in that meeting between the two…" +06/09/2018,Actors,@Nick_Wechsler,@tiffanylopes Hotel bar. Sorry this was late. +06/09/2018,Actors,@Nick_Wechsler,RT @TellTaleTV_: Chatting with @Nick_Wechsler on last night’s @ATXFestival red carpet! Be sure to catch him on the upcoming season of #Shad… +06/07/2018,Actors,@Nick_Wechsler,"RT @theblcklst: Join us tomorrow @ATXFestival: https://t.co/uhUk5rh7hf + +Elizabeth Stamp's CLASSIFIED stars: +@ThisIsLafferty +@JasonWGeorge +@…" +06/07/2018,Actors,@Nick_Wechsler,"RT @latimesent: Actor @Nick_Wechsler (""Revenge"") and Matt Lauria (""Friday Night Lights"") give a shoutout to the L.A. Times on the flight to…" +06/07/2018,Actors,@Nick_Wechsler,"Just to be clear, I’m not busting anyone’s chops! I just think it’s funny to call a plane full of drowsy people a p… https://t.co/IPDhyrucEE" +06/07/2018,Actors,@Nick_Wechsler,@ATXFestival Duh. +06/07/2018,Actors,@Nick_Wechsler,@jaredmunson Let’s just you and I go sing in a grocery store. +06/07/2018,Actors,@Nick_Wechsler,Whatever. The 15 of us are gonna start our own little Rajneeshpuram in the sky. So I guess this @SouthwestAir fligh… https://t.co/nMRevw1FgM +06/07/2018,Actors,@Nick_Wechsler,"Oh, I’m having fun, don’t get me wrong, but this is a party plane in the same way that a handful of friends singing… https://t.co/fLdW5cStQs" +06/07/2018,Actors,@Nick_Wechsler,@cadlymack @ATXFestival @southwest Can you get Matt Lauria to stop trying to kiss me? +06/07/2018,Actors,@Nick_Wechsler,On board the @SouthwestAir Party Plane on the way to ⁦@ATXFestival⁩ with Matt. He has a deathly fear of heights. He… https://t.co/sZHw6Yxg2L +06/07/2018,Actors,@Nick_Wechsler,@BenBlacker I will be. Boarding the @SouthwestAir “Party Plane” soon. +06/07/2018,Actors,@Nick_Wechsler,"RT @BrendanNyhan: I have to log off Twitter. Seeing that this is a song the kids sing (to the tune of ""Twinkle Twinkle Little Star"") is too…" +06/07/2018,Actors,@Nick_Wechsler,RT @Warren_Kole: The Devil wants his Due. #ShadesofBlue @Jlo @rayliotta @dreadematteo @DayoOkeniyi @hampton_fluker @sarahmjeffery3 @GinoPe… +06/07/2018,Actors,@Nick_Wechsler,👀 https://t.co/xIRPBtG8Xi +06/07/2018,Actors,@Nick_Wechsler,"@BenBlacker Proud of you, man." +06/06/2018,Actors,@Nick_Wechsler,RT @stampness: Beyond excited to be heading back to @ATXFestival where @theblcklst will be doing a star-studded reading of my script Classi… +06/06/2018,Actors,@Nick_Wechsler,@ChrisAgos @ptrueagos ❤️ +06/06/2018,Actors,@Nick_Wechsler,@JarettSays Cannot fucking wait. +06/06/2018,Actors,@Nick_Wechsler,RT @funder: Congrats GOP! You just elected a white supremacist who rioted in Charlottesville. https://t.co/s8HrlesviP +06/06/2018,Actors,@Nick_Wechsler,RT @TIME: A valedictorian trolled his own classmates with an Obama quote disguised as a Trump quote https://t.co/xoDcFJowww +06/06/2018,Actors,@Nick_Wechsler,"@AvanJogia Congrats, man! That’s rad." +06/06/2018,Actors,@Nick_Wechsler,RT @jules_su: These officers should go to jail for a decade each for unprovoked assault on an innocent passerby waiting for the elevator.… +06/06/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: This is why @NFL athletes take a knee. + +This is why we aren't filled with warm fuzzies when we hear the National Anthem.…" +06/06/2018,Actors,@Nick_Wechsler,"RT @theblcklst: Join us @ATXFestival Friday for 2 pilot live reads! + +Elizabeth Stamp's CLASSIFIED stars... +@ThisIsLafferty +@JasonWGeorge +@N…" +06/06/2018,Actors,@Nick_Wechsler,"RT @jonfavs: Nearly 120k voters omitted from the voting rosters in LA County because of a printing error. Among other things, this could af…" +06/05/2018,Actors,@Nick_Wechsler,Um. Guys? https://t.co/GTSHprIXKA +06/04/2018,Actors,@Nick_Wechsler,"I’m gonna be at @ATXFestival this year, and I agreed to take part in one of these script readings. Joke’s on them,… https://t.co/UcTw4xO8SI" +06/04/2018,Actors,@Nick_Wechsler,"Just a reminder that I’m in this season of @nbcshadesofblue, which premieres later this month. https://t.co/rDczCeHfHX" +06/04/2018,Actors,@Nick_Wechsler,Cannotwait. https://t.co/x4zpE0pkcy +06/04/2018,Actors,@Nick_Wechsler,"@jesseleesoffer What?! Ugh, I already had sex with that guy!" +06/03/2018,Actors,@Nick_Wechsler,"@TheRealElemgy Dude, have you seen these? My best friend’s brother made the 1st one, and my best friend & his bro m… https://t.co/MRc1EDBNqS" +06/03/2018,Actors,@Nick_Wechsler,"RT @POLITICOMag: Trump made $50,000 per episode for season one of ""The Apprentice."" + +For season two, “he wanted a million dollars an episod…" +06/02/2018,Actors,@Nick_Wechsler,RT @MattOswaltVA: hopefully Samantha Bee has learned that if you're gonna go after one of Trump's children NEVER go after the one he wants… +06/02/2018,Actors,@Nick_Wechsler,"RT @Schwarzenegger: I eagerly await the administration’s regulations protecting pagers, fax machines, and Blockbuster. https://t.co/ykLJHT4…" +06/02/2018,Actors,@Nick_Wechsler,RT @TheRealElemgy: UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.… +06/01/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: Now seems like a good time to remember that Trump still hasn't acknowledged the recent report that nearly 5,000 Americans died…" +06/01/2018,Actors,@Nick_Wechsler,"@TaranKillam @NightSchool @almadrigal Proud of you, dude." +05/30/2018,Actors,@Nick_Wechsler,"RT @ATXFestival: If you find yourself obsessing over #WhoDrewTheDicks, you need to be at our @AVTVSeries panel on Friday, June 8, featuring…" +05/28/2018,Actors,@Nick_Wechsler,@ropappas That was you? Ha! +05/28/2018,Actors,@Nick_Wechsler,"RT @JoyAnnReid: You’d almost never know her father’s administration, to which she is an adviser, was brutally separating migrant children f…" +05/28/2018,Actors,@Nick_Wechsler,RT @JuddLegum: How would your Sunday be if the federal government ripped this child from your arms and put him in a detention facility? htt… +05/28/2018,Actors,@Nick_Wechsler,You heard the man. https://t.co/eFsnza0Nin +05/28/2018,Actors,@Nick_Wechsler,"@realDonaldTrump What the fucking shit are you even talking about, you fucking shit?" +05/28/2018,Actors,@Nick_Wechsler,"@BarrySloane @EW @SIXonHISTORY Miss you, dude!" +05/28/2018,Actors,@Nick_Wechsler,@GinaWatchesTV @kaada @ATXFestival Yup! +05/27/2018,Actors,@Nick_Wechsler,This new @kaada album is fucking gorgeous. https://t.co/10JnYvIBUs +05/25/2018,Actors,@Nick_Wechsler,@kaada 🖤 +05/23/2018,Actors,@Nick_Wechsler,RT @DlSRESPECT: i actually love this metaphor because it’s a fake target and you’ve put it there yourself. https://t.co/qF6p93RiUF +05/23/2018,Actors,@Nick_Wechsler,Jesus Christ. https://t.co/Gg1FfYHBRk +05/23/2018,Actors,@Nick_Wechsler,Please check out this article about the book my best friend @SamWitwer is making with his brother and other peeps! https://t.co/oiLz8ztAHC +05/22/2018,Actors,@Nick_Wechsler,This is nuts. https://t.co/D1GlGL517r +05/22/2018,Actors,@Nick_Wechsler,"RT @igorvolsky: Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the…" +05/22/2018,Actors,@Nick_Wechsler,Cool! Like what he’s doing for our country’s cyber security! https://t.co/zPZXmcm7fJ +05/19/2018,Actors,@Nick_Wechsler,RT @funder: BREAKING: Trump’s been buying and selling stocks while serving as president +05/19/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: The identity of the informant has been exposed. Please don't post his name, and please don't share anything that does mention…" +05/18/2018,Actors,@Nick_Wechsler,"My buddy is selling her tickets for tonight’s @taylorswift13 show at The Rose Bowl. Cheap! Go take a look: + +https://t.co/fMl3kcpdmK" +05/18/2018,Actors,@Nick_Wechsler,"“Now, I know that this makes him look like an absolute cock, but his pettiness is probably just some shortcut to gr… https://t.co/OceFIPnisT" +05/18/2018,Actors,@Nick_Wechsler,"@karterhol Prove it, pussy!" +05/18/2018,Actors,@Nick_Wechsler,"Pfft, whatEVER! https://t.co/Ju3fx5OcLS" +05/17/2018,Actors,@Nick_Wechsler,Thread. https://t.co/MTXol1dUHR +05/17/2018,Actors,@Nick_Wechsler,"RT @Yanni: @chrissyteigen I may be biased, but all I hear is Yanni..." +05/16/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: North Korea watched as Trump violated the terms of our nuclear deal with Iran. If you were in that position, would you serious…" +05/16/2018,Actors,@Nick_Wechsler,@TheRealElemgy It’s so fucking good. +05/13/2018,Actors,@Nick_Wechsler,"RT @fightfortheftr: Hey + +twitter + +this + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +that + +#NetNeutrality + +ends + +on + +June 11 + +unless…" +05/12/2018,Actors,@Nick_Wechsler,A pear is just juicy sand. +05/10/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: The only reason this officer was fired was because his brutality was exposed before the world. + +This literally happened 6 m…" +05/10/2018,Actors,@Nick_Wechsler,"(I am aware of the fact that you won’t respond to this, either.)" +05/10/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: Dear @WaffleHouse, + +Listen to me. + +I wanna be clear on something. + +I'm done with your corporation. Permanently. + +I'm aski…" +05/10/2018,Actors,@Nick_Wechsler,"Hey, @isaora, where the fuck is my stuff and how are you still in business, since you notoriously do not respond to… https://t.co/WsdDyEF4js" +05/09/2018,Actors,@Nick_Wechsler,@justslogan @jeneuston ❤️ you two. +05/09/2018,Actors,@Nick_Wechsler,HOAX! https://t.co/sXZlU9IOin +05/09/2018,Actors,@Nick_Wechsler,"Congrats to one of my favorite dudes ever, @GlennHowerton. https://t.co/7gWRHT3AqL" +05/08/2018,Actors,@Nick_Wechsler,Jesus Christ. https://t.co/Hp7oZxOw5F +05/07/2018,Actors,@Nick_Wechsler,RT @ShaunKing: Imagine him getting called to a wealthy white home and acting like this. https://t.co/TGMrOke0le +05/06/2018,Actors,@Nick_Wechsler,"Holy Christ, @donaldglover is incredible. + +https://t.co/fXVywfg8Pq" +05/05/2018,Actors,@Nick_Wechsler,"Wait, what the fuck? https://t.co/PmhKmTjTh5" +05/05/2018,Actors,@Nick_Wechsler,RT @SarahKSilverman: Im so goddamned sick of this- these cops should be fired & punished. shit HAS to change. Bad cops should be the ones s… +05/05/2018,Actors,@Nick_Wechsler,Do not spray this directly into your urethra no matter how stained the inside of your bladder theoretically is. And… https://t.co/YvCHnCa66t +05/02/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: Trump's doctor looks like if Carly Simon and George Carlin fell into a Brundlepod. https://t.co/an9j4CsZgT +05/02/2018,Actors,@Nick_Wechsler,"Oh, no way, they award the Nobel Peace Prize for being a lying sack of shit? https://t.co/umianG8tuS" +05/02/2018,Actors,@Nick_Wechsler,@bejohnce Please make posters of this available at the show. +04/30/2018,Actors,@Nick_Wechsler,"@realDonaldTrump Fuck you, like, a lot." +04/29/2018,Actors,@Nick_Wechsler,"@TyLabine Happy birthday, man!" +04/29/2018,Actors,@Nick_Wechsler,@RicaSham @EmilyVanCamp I’m in the upcoming season of @nbcshadesofblue. +04/29/2018,Actors,@Nick_Wechsler,@suchandsome I know! I miss that one. +04/28/2018,Actors,@Nick_Wechsler,@XLRECORDINGS Can I get some help tracking down my order? It was supposed to have arrived on the 26th but never did… https://t.co/jEsg6hhYEw +04/28/2018,Actors,@Nick_Wechsler,"So, uh, @isaora, you ever gonna respond to my question about where my order is? It’s been a month and no word. Guys… https://t.co/mr1g1snNNN" +04/28/2018,Actors,@Nick_Wechsler,"There is no bottom. He is endlessly, maddeningly awful. https://t.co/EAJ9VP95i8" +04/24/2018,Actors,@Nick_Wechsler,"@terriB50 @kumailn Yeah, grow up, Trump!" +04/24/2018,Actors,@Nick_Wechsler,RT @kumailn: Watch this twice. Once just her hands. Once just her face. You don’t have to look at his face. https://t.co/7h9AumXMYv +04/23/2018,Actors,@Nick_Wechsler,"Has he, um...seen the first one? https://t.co/Uaz4Ee5NTL" +04/22/2018,Actors,@Nick_Wechsler,Happy Earth Day! https://t.co/StT3cdpUuL +04/20/2018,Actors,@Nick_Wechsler,@LykkeLi ❤️ +04/18/2018,Actors,@Nick_Wechsler,Yesss!! But also: grosss!! https://t.co/y7hjxFoRT1 +04/18/2018,Actors,@Nick_Wechsler,"Oh, would you just buy your @ATXFestival badges already? https://t.co/8eaPlnVKV0" +04/18/2018,Actors,@Nick_Wechsler,"RT @TheDweck: Yeah, you do. That’s literally what the Civil War was. https://t.co/leIGOLOlCU" +04/17/2018,Actors,@Nick_Wechsler,@jeneuston Aw. I didn’t know you guys were buddies! He’s lovely. +04/16/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA. Oh my God. So much to unpack in these 43 seconds. Don't miss the part when he says he'd… +04/14/2018,Actors,@Nick_Wechsler,"RT @ChrisMurphyCT: So Mattis doesn't want to strike Syria because it risks dragging U.S. into a broader war with Russia and Iran, but he ha…" +04/13/2018,Actors,@Nick_Wechsler,@monicabarbaro 👍🏽 +04/12/2018,Actors,@Nick_Wechsler,@KaitlinOlson Yup. +04/11/2018,Actors,@Nick_Wechsler,This is fun. https://t.co/Z1q8vXdv9F +04/11/2018,Actors,@Nick_Wechsler,@monkeyforsallie Right?! Fuck. +04/10/2018,Actors,@Nick_Wechsler,I cannot fucking wait. https://t.co/fbDYIqtKI3 +04/10/2018,Actors,@Nick_Wechsler,RT @JoyAnnReid: And the @GOP quest to erase all memory of Michael Cohen begins... https://t.co/art9oqbimH +04/09/2018,Actors,@Nick_Wechsler,RT @SethAbramson: Yeah they'll understand you exempted your daughter from all of this https://t.co/5Xg9Ml9eCJ +04/08/2018,Actors,@Nick_Wechsler,"RT @JuddLegum: To review: There was a fire in the residential section Trump Tower where there are no sprinklers, in part because Trump lobb…" +04/08/2018,Actors,@Nick_Wechsler,@allison_pogan @unrealfehr @MajandraD @ShiriAppleby @ColinHanks @KatieHeigl Awesome! +04/08/2018,Actors,@Nick_Wechsler,RT @BigBoyler: Our toddler’s favorite colours are green and red. But you probably already knew that since he won’t shut the fuck up about i… +04/06/2018,Actors,@Nick_Wechsler,"@unrealfehr “Basically” is a generous way of saying “definitely, while I was asleep.” + +Love you, bro." +04/05/2018,Actors,@Nick_Wechsler,@BigBlackDelta @MellowdroneBand Holy shit! +04/05/2018,Actors,@Nick_Wechsler,@SLSparks12 Ha. ❤️ +04/04/2018,Actors,@Nick_Wechsler,"I’m in a thing, so check it out or something or whatever, you don’t have to never mind. https://t.co/rDczCeHfHX" +04/04/2018,Actors,@Nick_Wechsler,"@jimmisimpson Also: howdy to you, my digital bro. Glad to see you’re working as often as you deserve. Hope you’re great, man." +06/08/2018,Actors,@christabrittany,"RT @ava: Here are the 25 women directors who helmed #QUEENSUGAR over our three seasons. For 21 of them, it was their first episode of telev…" +06/07/2018,Actors,@christabrittany,"RT @tferriss: ""Anger is often what pain looks like when it shows itself in public."" — Krista Tippett (@kristatippett)" +06/07/2018,Actors,@christabrittany,"My new single is out today, anywhere you get your music! ""Unicorn"" by pour vous: https://t.co/JUrk12QvlK @JohnnyWhatMusic" +06/06/2018,Actors,@christabrittany,Misogynistic men hate me. I love that. +06/05/2018,Actors,@christabrittany,"The Valley, playing this weekend ❤️ https://t.co/NFx6y0Tjtt" +06/03/2018,Actors,@christabrittany,@SOHN @JohnnyWhatMusic is the best at that. https://t.co/9AygY8vXB1 +06/02/2018,Actors,@christabrittany,@zeldawilliams Best thread in Twitter history?! 🙌 +06/01/2018,Actors,@christabrittany,RT @tferriss: “The stupidity of people comes from having an answer for everything. The wisdom of the novel comes from having a question for… +05/29/2018,Actors,@christabrittany,god bless the internet. +05/29/2018,Actors,@christabrittany,way to go @abc for cancelling Roseanne. it is the age of social accountability. racism will not be tolerated 🙅‍♀️ +05/28/2018,Actors,@christabrittany,really really over it: mumble rap. really really into it: lo-fi hip hop. +05/27/2018,Actors,@christabrittany,It’s never too late to have a happy childhood. -Tom Robbins +05/27/2018,Actors,@christabrittany,can’t wait til it’s 2025 and @elonmusk has built us an underground bullet train so I can see my Malibu friends more than 3x a year +05/27/2018,Actors,@christabrittany,WOW get ready for life to improve 1000000%!!! how about Rufus? Rhino?Frog? :) https://t.co/YQe28ispFV +05/24/2018,Actors,@christabrittany,"First, “Your Body Is A Wonderland” was the soundtrack to countless high school makeouts. Now, memes of this music v… https://t.co/Aoc3fsEnjQ" +05/23/2018,Actors,@christabrittany,RT @katedowdcasting: We're looking for a transgender actress for a major part in a US TV series - if this is you please do get in touch! An… +05/18/2018,Actors,@christabrittany,RT @Travon: Dear 2A parents: sit your kids down tonight and explain to them why it's more important for you to have unregulated unfettered… +05/18/2018,Actors,@christabrittany,"RT @bryanboy: No. of mass shootings in 2018 (as of 15 May): + +🇦🇺 0 +🇳🇿 0 +🇩🇪 0 +🇬🇧 0 +🇧🇪 0 +🇦🇹 0 +🇩🇰 0 +🇳🇱 0 +🇸🇪 0 +🇫🇮 0 +🇮🇪 0 +🇨🇦 0 +🇱🇺 0 +🇨🇭 0 +🇺🇸 99*" +05/18/2018,Actors,@christabrittany,@IddoG 🤦‍♀️😢 +05/18/2018,Actors,@christabrittany,"RT @marwilliamson: Anytime you have a problem with someone, think of them and say this Hawaiian Ho'oponopono prayer: +Please forgive me. +I’m…" +05/16/2018,Actors,@christabrittany,"blue/black vs. white/gold, laurel vs. yanny are teaching us all that sensory experience is subjective/malleable! I… https://t.co/CsR0t3cjJK" +05/16/2018,Actors,@christabrittany,"I make a small cameo in the upcoming @GrandHotelABC, check out the trailer here and let me know what you think! https://t.co/nUmR6tbm84" +05/12/2018,Actors,@christabrittany,those moments when it feels like your @Spotify Discover Weekly playlist actually reads your mind 😍 +05/12/2018,Actors,@christabrittany,RT @marwilliamson: Prepare yourself inwardly for a life of greatness. Sometimes we’re so intent on not getting ahead of ourselves that we r… +05/11/2018,Actors,@christabrittany,#grandhotel is a show about rich people behaving badly. I happen to have a particular fondness for shows like this!… https://t.co/M5QGPuphbS +05/11/2018,Actors,@christabrittany,Congratulations to @EvaLongoria @kenolin1 and the entire cast and crew of Grand Hotel on the pickup!! I make a litt… https://t.co/NApT95hzcc +05/11/2018,Actors,@christabrittany,Dreams DO come true!! 🙌🙌🙌 https://t.co/Y03RU9V8kV +05/07/2018,Actors,@christabrittany,"I do hope you’re inspired by this video, Mr. West. Seems you’ve been a little confused of late... https://t.co/gHPdZaI5ew" +05/06/2018,Actors,@christabrittany,Donald Glover is the only Donald anyone should be talking about. Goddamn 🔥 +05/06/2018,Actors,@christabrittany,Donald Glover just blows my mind over and over and over again. +05/05/2018,Actors,@christabrittany,My film Dangerous Seduction (FKA The Queen of Sin) premieres tonight on @LifetimeMovies 8/7 c! https://t.co/8Drtfit5KC +05/04/2018,Actors,@christabrittany,Thanks for the love Gina! 💕 https://t.co/VxEBvWRFsc +05/03/2018,Actors,@christabrittany,"RT @Incendoprod: Don't miss the US premiere of #DangerousSeduction AKA ""The Queen of Sin"" - starring @christabrittany with Richard de Klerk…" +05/01/2018,Actors,@christabrittany,"we spoke to @JimEWood @axs about our new music video; ""For me, an interesting element was being crucified on a cros… https://t.co/cty4NX2Y3h" +04/30/2018,Actors,@christabrittany,RT @marwilliamson: On the level of the body all of us are different; on the level of the spirit all of us are one. The only way we will sur… +04/24/2018,Actors,@christabrittany,Thanks for the love @HollywoodLife ! https://t.co/Zi7sCYNNuO +04/24/2018,Actors,@christabrittany,"'Scorpio' is our erotic, hypnotic anthem to empowered female sexuality. We are celebrating the woman who enjoys sex… https://t.co/kJR7cqGVas" +04/23/2018,Actors,@christabrittany,"first music video for my single “Scorpio” is out now! 🌟 watch it here, and please do yourself the favor of watching… https://t.co/k2y1ncy14o" +04/15/2018,Actors,@christabrittany,"RT @ladygunn: “Why can’t you love me/Like you love your drug…?” The eternal question. Check out ""Sober,"" a heart-wrenching new song by Pour…" +04/05/2018,Actors,@christabrittany,incredible! Bravo KSA 👏👏👏 https://t.co/uICzYbNM43 +04/03/2018,Actors,@christabrittany,Congratulations Sallie!! can’t WAIT for more!! 💖💕 https://t.co/Z2Jtp0APp7 +04/03/2018,Actors,@christabrittany,I remember Darren singing and playing his acoustic guitar in the passenger van going to and from set. He was so kin… https://t.co/xPXllA2AbU +03/15/2018,Actors,@christabrittany,twitter! my debut single “The Flood” is out now. listen to it here: https://t.co/bkxQA1Jqs8 +03/14/2018,Actors,@christabrittany,"Loved speaking with @axs about my new music with @JohnnyWhatMusic, pour vous. thank you @JimEWood !https://t.co/miWl1GuK7f" +03/14/2018,Actors,@christabrittany,"RT @JimEWood: In my new @axs interview, @christabrittany and Johnny What discuss their ethereal, ""Trip Pop"" new project, Pour Vous: https:/…" +02/25/2018,Actors,@christabrittany,RT @Emma4Change: A gentle reminder that all we are aiming for here is stricter gun laws that make it harder for people to get guns (because… +02/07/2018,Actors,@christabrittany,"RT @Incendoprod: The trailer for ""The Queen of Sin"" is out! The movie stars @christabrittany with Richard de Klerk @ambergoldfarb @IngaCadr…" +01/24/2018,Actors,@christabrittany,for more updates on my new music follow the pour vous Instagram: https://t.co/D55QuMjYPF +01/24/2018,Actors,@christabrittany,the news is out about my new project: https://t.co/LSljcboYiq +12/20/2017,Actors,@christabrittany,@justinchon @GookFilm I couldn't stop crying. and saying the f word.... :) congrats mate. And big hugs!! +12/20/2017,Actors,@christabrittany,just want to quickly point everyone's attention to @GookFilm directed by and starring @justinchon. it is a stunner.… https://t.co/JHXhV9cDPD +12/14/2017,Actors,@christabrittany,"RT @Travon: In case it didn't click, last night in Alabama is why the entire Republican party works incredibly hard to keep black people fr…" +12/14/2017,Actors,@christabrittany,RIP open internet in the Divided States of America +12/14/2017,Actors,@christabrittany,"Eminem the prophet called it in 2002: the FCC won't let me be or let me be me, so let me see, they try to shut me down on MTV." +12/09/2017,Actors,@christabrittany,"RT @PopHorrorNews: Cult Hit ONE OF US, Starring Christa B. Allen (@christabrittany) is Coming To #DVD in December! #OneOfUs #Horror #Thrill…" +11/27/2017,Actors,@christabrittany,@iamthearbiter @zeldawilliams the debate over whether men or women are more objectified in the media is a) not a de… https://t.co/wmgl5GqfxU +11/27/2017,Actors,@christabrittany,"@iamthearbiter @zeldawilliams Also those dudes are in speedos, arguably a little closer to the definition of the wo… https://t.co/bsgSbKQvmn" +11/27/2017,Actors,@christabrittany,@iamthearbiter @zeldawilliams in the vastness of the internet you can find examples of absolutely any point of view… https://t.co/iuJgGsH6fY +11/27/2017,Actors,@christabrittany,I don't know but they certainly don't say that shit about men https://t.co/EP55CxcBNn +11/25/2017,Actors,@christabrittany,"""Whatever our souls are made of, his and mine are the same"" https://t.co/YzTnK2jbL7" +11/25/2017,Actors,@christabrittany,"""It was love at first sight, now it's love at every sight."" https://t.co/YzTnK2jbL7" +10/30/2017,Actors,@christabrittany,@justinhartley Congratulations Justin and Chrishell!! All the best to you both! 💖 +09/30/2017,Actors,@christabrittany,https://t.co/5TjiorsXbi to donate to Puerto Rico recovery efforts ❤️ +09/18/2017,Actors,@christabrittany,"congratulations to my former on screen dad, my David Clarke-- @MrJamesTupper-- on your Emmy win for Big Little Lies!!! 🌹" +09/05/2017,Actors,@christabrittany,"RT @MDMOLINARI: Protect & treat all victims of family violence & sexual assault Check out ""VIP Young at Heart Event"" https://t.co/Y6Mn6wJpt…" +09/04/2017,Actors,@christabrittany,happy birthday to the queen. 🐝@Beyoncé https://t.co/DQE5E4qCrI +08/12/2017,Actors,@christabrittany,"@sevdaliza unbelievable record. so smart, so sexy. I can't stop listening" +08/03/2017,Actors,@christabrittany,tune in to @theedgenz to hear me on with @JonoAndBen between 5-5:30pm today! +08/03/2017,Actors,@christabrittany,thanks for the suggestions! can't wait to explore 🌈🌱 +08/02/2017,Actors,@christabrittany,"hey twitter, what do you love to do in Auckland, NZ? Just arrived! 👋" +07/30/2017,Actors,@christabrittany,@BaldoriaDTLA favorite new restaurant in LA. oh. my. GOD!!! 😭😍🙌 +07/19/2017,Actors,@christabrittany,"fun fact!in most of the world,a horn honk indicates potential danger to other vehicles.inLA, it translates roughly to ""out of my way loser!""" +07/17/2017,Actors,@christabrittany,"RT @beautybanter: #BanterBabe @christabrittany has a pretty classic beauty vibe, read up on her can't-live-without beauty products +https:/…" +07/10/2017,Actors,@christabrittany,@kyle_newman You can! visit @the14thfactory and you can walk through it +07/01/2017,Actors,@christabrittany,currently SOBBING watching #okja. please send tissues. and hugs. +06/23/2017,Actors,@christabrittany,tired but inspired +06/18/2017,Actors,@christabrittany,RT @Attenboroughs_D: Karma's a bitch. https://t.co/LM7ZVtZGUD +06/16/2017,Actors,@christabrittany,hey but sometimes laughing is the only way to keep from crying +06/16/2017,Actors,@christabrittany,trump's lawyer gets a lawyer? the Russian doll metaphor is too easy to make +06/15/2017,Actors,@christabrittany,"RT @TheSchoolOfLife: 'The world is a book, and those who do not travel read only a page.' - Augustine" +06/12/2017,Actors,@christabrittany,"""hi sorry I'm not actually working for free at the moment!"" -email only artists ever have to send" +06/12/2017,Actors,@christabrittany,fuck you pay me +06/12/2017,Actors,@christabrittany,when u has worked 2 decades making a valuable name for yourself then all of a sudden people ask u to promo their shit for free. #no +06/12/2017,Actors,@christabrittany,when @EricRayDavidson catches me hangry https://t.co/b53XLfdvjL +06/02/2017,Actors,@christabrittany,art is universal because suffering is universal. +06/02/2017,Actors,@christabrittany,this new @alt_j album is exceptional. way to be consistently brilliant across all albums 👏 +06/01/2017,Actors,@christabrittany,@David_Bush I mean... https://t.co/VViR2pZ1zQ +06/01/2017,Actors,@christabrittany,RT @elonmusk: Am departing presidential councils. Climate change is real. Leaving Paris is not good for America or the world. +06/01/2017,Actors,@christabrittany,"clean, renewable energy is the future. why is this concept so hard for some to grasp?!" +06/01/2017,Actors,@christabrittany,America has absolutely lost the plot. +06/01/2017,Actors,@christabrittany,grab mother earth by the pussy #parisclimateaccord +05/17/2017,Actors,@christabrittany,feels https://t.co/hrbGpCRGkA +05/13/2017,Actors,@christabrittany,"@H_Esteve death, taxes, and the twitter will never be short of sass (the only three things that are certain)" +05/13/2017,Actors,@christabrittany,"cashmere, silk, and his hands (the only three things that ought to ever touch my skin)" +05/12/2017,Actors,@christabrittany,RT @NobodysChild: ⭐️ Spotted on ⭐️: @ChristaBrittany https://t.co/47J7saRZnQ +05/06/2017,Actors,@christabrittany,"trump supporters I see eating tacos and drinking margaritas for #cincodemayo today, I'll eat their tacos, drink their margs and make em pay💰" +05/05/2017,Actors,@christabrittany,"RT @existentialcoms: Sometimes I think humanity is alright, but then I meet a dog and I'm like, ""oh, that's right, humanity is garbage.""" +04/22/2017,Actors,@christabrittany,at @amoebamusic with my boyfriend buying his band's record on vinyl for #RecordStoreDay. my inner hipster is so happy +04/21/2017,Actors,@christabrittany,"""I read up on string theory today and I'm pretty sure that it's you. You're my favorite little quark.""" +03/19/2017,Actors,@christabrittany,RT @chrisdelia: Fuck boring people. I love weirdos. FUCK I LOVE WEIRD ASS MOTHERFUCKERS. +03/19/2017,Actors,@christabrittany,¯\_(ツ)_/¯ +03/14/2017,Actors,@christabrittany,Think twice before your journey down the rabbit hole—you might not come back. #OneOfUs is out now on Digital! https://t.co/RvTflEaacB +03/09/2017,Actors,@christabrittany,"when you're in the movie but it still scares the hell outta you https://t.co/kgzJUAtnuD ""One of Us"" comes out this Tuesday March 14! ⚡️" +03/03/2017,Actors,@christabrittany,I miss you every day New Orleans. https://t.co/YTDiXoltcs +03/03/2017,Actors,@christabrittany,New Orleans is the unmitigated jewel of the United States. +01/30/2017,Actors,@christabrittany,RT @aplusk: If standing for the America that doesn't discriminate makes me a left wing actor who is out of touch. Fuck it. +01/23/2017,Actors,@christabrittany,RT @tylershields: @christabrittany Shut down Santa Monica beach for some rings https://t.co/v0RNj7Oi3A +01/23/2017,Actors,@christabrittany,don't hang up the gloves. show your support for @ppfa! link to purchase this tee in my bio.… https://t.co/o9vp0r4Ufk +12/21/2016,Actors,@christabrittany,#passengers is titanic in space. so obviously I loved it +12/12/2016,Actors,@christabrittany,"RT @pattonoswalt: ""Stick to entertainment and shut your yap about politics! And stop criticizing the reality TV host I voted into the White…" +12/03/2016,Actors,@christabrittany,i want to work with tom tykwer +12/02/2016,Actors,@christabrittany,RT @existentialcoms: The fact that Hillary won the popular vote is going to be a good trivia question on quiz night in the apocalyptic wast… +11/29/2016,Actors,@christabrittany,RT @RostrumRecords: .@christabrittany stars in @bravesofficial’s video for #MeTheThief! Have you seen it yet? https://t.co/BwRYr48h0I https… +11/29/2016,Actors,@christabrittany,"less than a day to go, over 90% funded. please click to support bringing clean drinking water to those in need! https://t.co/QBI8qH4m0W" +11/29/2016,Actors,@christabrittany,clean drinking water is a basic human right. please help @msrgear bring clean water to communities around the world! https://t.co/QBI8qH4m0W +11/25/2016,Actors,@christabrittany,"RT @iJesseWilliams: Today white ""nationalists"" give thanks that indigenous people provided food, shelter & job training to sickly immigrant…" +11/24/2016,Actors,@christabrittany,RT @MarkRuffalo: This will end in more bloodshed and now will be enshrined in Obama's legacy. Power Imbalance at the Pipeline Protest https… +11/10/2016,Actors,@christabrittany,RT @DeepakChopra: Perhaps the future no longer depends on a single leader but on each of us who can quietly dedicate our life to light love… +11/09/2016,Actors,@christabrittany,good mourning. +11/09/2016,Actors,@christabrittany,"RT @GoIntoTheStory: I know this. Now more than ever, we need STORYTELLERS. Writers who humanize The Other, who move us beyond fear to openn…" +11/09/2016,Actors,@christabrittany,crying +11/09/2016,Actors,@christabrittany,RT @Paxmee: Tell me again how rape and sexual assault accusations will ruin a man's career +11/09/2016,Actors,@christabrittany,"RT @tromano: ANYONE BUT A FUCKING WOMAN, SAYS AMERICA. ANYONE." +11/09/2016,Actors,@christabrittany,"anyone with info on the candle light vigil being held tomorrow for the death of our country, let a sistah know" +11/09/2016,Actors,@christabrittany,too bad Alain de Botton can't be president https://t.co/ZEJOooZyiL +11/09/2016,Actors,@christabrittany,"RT @annetdonahue: What's even more demoralizing is knowing how hard Hillary's worked and how qualified she is, and yet... And every woman k…" +11/09/2016,Actors,@christabrittany,"@KevTheUprCTOTY fair enough, I see your point. but this is NOT the guy to lead the revolt!! he is dumb and dangerous!!" +11/09/2016,Actors,@christabrittany,Brexit --> Trumpocalypse --> ???!! +11/09/2016,Actors,@christabrittany,"this is unbelievable, America is sick. even if the orangutan loses, this many racist, sexist, xenophobic humans on our soil is bad bad bad" +11/09/2016,Actors,@christabrittany,👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👦🏾👩🏼 +11/09/2016,Actors,@christabrittany,"great read, thank you Tim 👏👏 https://t.co/zdHr8iJWi3" +10/31/2016,Actors,@christabrittany,RT @LeoDiCaprio: #BeforetheFlood starts now on @NatGeoChannel. Tune in and join the movement. +10/25/2016,Actors,@christabrittany,so inspiring! A Political Education - A short film by Emma Holly Jones https://t.co/eef5FobPVT @emmahollyjones +10/24/2016,Actors,@christabrittany,@moonlightmov is magnificent. go see it. +10/24/2016,Actors,@christabrittany,"start writing acceptance speeches @NaomieHarris, that performance was unbelievable!! @moonlightmov 🏆🏆🏆" +10/19/2016,Actors,@christabrittany,RT @RostrumRecords: Have you seen @bravesofficial’s video for #MeTheThief starring @christabrittany yet? https://t.co/BwRYr4pSpi https://t.… +10/19/2016,Actors,@christabrittany,RT @jayrmonty: I'm on the Telly tonight! Hoorah! Watch @NBCThisisUs and meet Olivia 💥 +10/12/2016,Actors,@christabrittany,"everyone should be watching @AVAETC's film @13THFilm on @netflix. so powerful, so beautifully made. thank you Ava." +10/09/2016,Actors,@christabrittany,no objections https://t.co/qtcJ9ab6MX +10/08/2016,Actors,@christabrittany,"RT @dbernstein: Meanwhile, in the world of decent people, President Obama signed the Sexual Assault Survivors’ Rights Act today." +10/08/2016,Actors,@christabrittany,I just made a donation to the St. Luke Foundation for Haiti. go to https://t.co/QvFEZngSas to do the same. @stlukehaiti #hurricanematthew +10/07/2016,Actors,@christabrittany,breathing a sigh of relief as DJT buffoon #grabembythepussy comment has guaranteed he won't be president. I already had one foot in Canada +10/07/2016,Actors,@christabrittany,"Is there even evidence of prior presidential nominees uttering the word ""pussy"" referring to anything other than a feline?!#grabembythepussy" +10/07/2016,Actors,@christabrittany,RT @UmFrankly: Donald Trump just built a wall around all of our Bushes +10/07/2016,Actors,@christabrittany,"""grab em by the pussy."" when faced with life's challenges, this will be my new mantra" +10/07/2016,Actors,@christabrittany,laughing soooo hard at our current state of political affairs (just to keep from crying) +09/25/2016,Actors,@christabrittany,when @NicolasJaar drops his LP five days early... 🙌 +09/10/2016,Actors,@christabrittany,currently watching every Les Blank doc ever +08/11/2016,Actors,@christabrittany,can't get enough of @whoismrrobot +08/09/2016,Actors,@christabrittany,RT @aerialphysique: Aerial Physique's August Aerialist of the month the lovely CHRISTA ALLEN @christabrittany!… https://t.co/1f4ilQOr19 +07/08/2016,Actors,@christabrittany,"RT @smashleybell: ""Resisting"" arrest or being compliant, it appears to me that if you're black in America the… https://t.co/vNiGC3Wvvc" +07/07/2016,Actors,@christabrittany,RT @franklinleonard: How many others when the cameras weren't rolling? #BlackLivesMatter +07/07/2016,Actors,@christabrittany,we are all so much more alike than different +07/07/2016,Actors,@christabrittany,"I cannot believe we still live in a world where our fear of one another's perceived ""differences"" results in murder" +07/07/2016,Actors,@christabrittany,"@iJesseWilliams said it best: ""we know that police somehow manage to deescalate, disarm and not kill white people everyday""" +06/29/2016,Actors,@christabrittany,RT @BabaRamDass: https://t.co/PJ5RzETXpQ +06/25/2016,Actors,@christabrittany,"on timothy leary, on ram dass. a new perspective on death and loss of loved ones. EXCELLENT new doc! Dying to Know https://t.co/FbzzTaXucc" +06/24/2016,Actors,@christabrittany,@Blitzkreigle @MonkeylandAudio can't wait to see this film!! +06/24/2016,Actors,@christabrittany,RT @SoVeryBritish: We're going to need a bigger kettle... +06/19/2016,Actors,@christabrittany,RT @JohnMayer: I’m not complicated. It just takes a minute. +06/15/2016,Actors,@christabrittany,if you are a person who believes in facts and statistics- undeniable truths- you cannot possibly argue against the need for #gunreformNOW +06/14/2016,Actors,@christabrittany,RT @GavinNewsom: In the past 72 hours...93 people have died and 205 people have been injured due to gun violence in America. This does not… +06/12/2016,Actors,@christabrittany,RT @GhostPanther: Almost 300k have died & over a million shot in last ten years & pro-gun people want nothing done or more guns? That's ur… +06/12/2016,Actors,@christabrittany,RT @EdwardNorton: A nice way to stand with the community in Orlando: https://t.co/pSNbZxDDMc +06/12/2016,Actors,@christabrittany,there are no words for how sad this is. prayers are cool but what would really be helpful is #GunReformNOW #PrayForOrlando +06/06/2016,Actors,@christabrittany,@NickGoldson of course Beyoncé !! 👑🐝 +06/06/2016,Actors,@christabrittany,"Cate Blanchett, Helena Bonham Carter, Tilda Swinton, Helen Mirren. #favorites #dreamgirls" +05/26/2016,Actors,@christabrittany,@emmahollyjones I thought the same re: talented mr ripley. and that soundtrack.... !! 🙌 +05/25/2016,Actors,@christabrittany,"GO SEE @biggersplashuk !! it's sexy, smart, funny; brilliantly paced, directed, acted, edited. perfect film 🙌" +05/21/2016,Actors,@christabrittany,RT @askjillian: See this movie. @ZoeRCassavetes is brilliant. Must be a family thing. #John #Nick #Gena #film https://t.co/ADwQI0hkQr +04/11/2016,Actors,@christabrittany,"RT @dodo: Yes, this is how baby elephants are trained for the circus. https://t.co/5rDsblzL8o https://t.co/Qlqeq3JD0p" +04/08/2016,Actors,@christabrittany,"RT @DalaiLama: Creating a better world will require will-power, vision and determination. And for that we need a strong sense that humanity…" +04/04/2016,Actors,@christabrittany,#NowPlaying Rain by Dustin O'Halloran ♫ https://t.co/X8ERrqqnYD +04/04/2016,Actors,@christabrittany,@DustinOHalloran is the very very best 🎼💕 +04/03/2016,Actors,@christabrittany,today @JakeTAustin https://t.co/XiOL15zBfE +04/03/2016,Actors,@christabrittany,7 years ago @JakeTAustin https://t.co/4hBIYmrQEb +04/02/2016,Actors,@christabrittany,Come now we start filming at 4 +04/02/2016,Actors,@christabrittany,Hey Silicon Valley! If you're college age and want to be in a movie with me come to 1632 Mariani drive 94087. wear something fun! Frat party +03/31/2016,Actors,@christabrittany,#NowPlaying Love On Top by Beyoncé best song ever ♫ https://t.co/gHkJH1VHtb +03/20/2016,Actors,@christabrittany,subtle is sexy +03/20/2016,Actors,@christabrittany,just once I'd like to meet a vegan who doesn't ever talk about it. +03/18/2016,Actors,@christabrittany,RT @beepbeauty: Had such a blast interviewing the beautiful @christabrittany today for https://t.co/YlPuQjmL0T. Video coming soon... +03/18/2016,Actors,@christabrittany,RT @RowlyDennis: Check out my Shoot with Actress @christabrittany from revenge and watch the interview at https://t.co/Kf8q2AOQ2F +03/11/2016,Actors,@christabrittany,Yay! Congratulations @Nick_Wechsler !! https://t.co/DxYUdy3snO +02/29/2016,Actors,@christabrittany,RT @LibyaLiberty: If you're an American confusedly watching the darkest forces of ur nation rally behind a demagogue-maybe u can understand… +02/29/2016,Actors,@christabrittany,Congratulations Leonardo Dicaprio!! So much respect for using your acceptance speech to talk about #climatechange https://t.co/5m5juPC8Nd +02/29/2016,Actors,@christabrittany,YES!!! #MarkRylance +02/29/2016,Actors,@christabrittany,"RT @franklinleonard: Instead of an #Oscars, can we just give Mark Rylance a ton more major roles? Like, for our benefit." +02/29/2016,Actors,@christabrittany,"RT @emilynussbaum: Mark Ruffalo is golden in both of his excellent films about journalism, Spotlight and 13 Going On 30." +02/29/2016,Actors,@christabrittany,no idea how anyone could pick just 1 winner for Supporting Actor #oscar. ALL performances were stunning! esp. Mark Rylance & Christian Bale +02/29/2016,Actors,@christabrittany,"#Oscar predictions: Leo wins best actor, Brie wins best actress, The Big Short wins best picture" +02/28/2016,Actors,@christabrittany,RT @Kurt_Vonnegut: The practice of art isn't to make a living. It's to make your soul grow. +02/23/2016,Actors,@christabrittany,"RT @thatdonsimpson: .@thatdonsimpson's review of DAY OUT OF DAYS +#DayOutOfDays @ZoeRCassavetes https://t.co/8LLQU5LtWu https://t.co/sWS3An…" +07/02/2018,Actors,@smashleybell,Infinity X Infinity. I love these people 🖤 https://t.co/YI03XteBMH +07/01/2018,Actors,@smashleybell,@Gabriel_Mann @Revenge @ABCNetwork @EmilyVanCamp @Nick_Wechsler @RevengeWriters Love you! So good to hang yesterday 💖 +06/27/2018,Actors,@smashleybell,@zeldawilliams I love how stressed this is making you! 😹 +06/27/2018,Actors,@smashleybell,@zeldawilliams OR they develop the film and then take a picture on their phones......? This has tired me out just thinking about it. +06/27/2018,Actors,@smashleybell,.@MariahCarey could never steal from me. I’d give it to her! https://t.co/Ca5xwKjjGd +06/27/2018,Actors,@smashleybell,@zeldawilliams That sounds stressful. +06/27/2018,Actors,@smashleybell,@zeldawilliams But also Iddo shoots on 35mm and scans the negative onto his laptop. He keeps both the negative and the digital file. +06/27/2018,Actors,@smashleybell,@zeldawilliams It’s an app babe. Lol +06/23/2018,Actors,@smashleybell,@ava @PressSec @POTUS With hearts..... SCREAMING 😭😭😭 +06/21/2018,Actors,@smashleybell,"RT @EricHaywood: First: There was no hidden message. + +Then: The message refers to the media. + +Me: 🤔🤔🤔 https://t.co/qJmaDOwTRU" +06/20/2018,Actors,@smashleybell,RT @Cyndyquills: Attention white people! Here are the jobs y’all were claiming immigrants were stealing. Now is your time to apply and shin… +06/17/2018,Actors,@smashleybell,6 years married ❤️ Happy Anniversary @IddoG https://t.co/QnlgtYOY7R +06/16/2018,Actors,@smashleybell,"@KR9582 If you had to guess, what do you think his IQ is?" +06/16/2018,Actors,@smashleybell,I haven’t forgot about the IQ thing. The word you’re looking for is “COUNTRY’S”. https://t.co/2eeriAJ2pL +06/15/2018,Actors,@smashleybell,Hi 👋🏽 https://t.co/mtNBcZIzHK +06/14/2018,Actors,@smashleybell,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Actors,@smashleybell,One my favorite places to eat in Los Angeles. No… https://t.co/K0HCMRdcuP +06/13/2018,Actors,@smashleybell,"@avahodson Don’t worry, I took a picture https://t.co/yv4ej4Iqbv" +06/13/2018,Actors,@smashleybell,Thought you didn’t watch CNN? https://t.co/NXkShBxwFw +06/12/2018,Actors,@smashleybell,"Newport Beach 🖤 +📷@joeytierney https://t.co/RUSphtzgK2" +06/12/2018,Actors,@smashleybell,When you question someone’s IQ but use the wrong “too”. https://t.co/GPeRlJW0it +06/12/2018,Actors,@smashleybell,@davidwalliams Your best tweet EVER. +06/11/2018,Actors,@smashleybell,😎 https://t.co/GIXEgYBCoh +06/08/2018,Actors,@smashleybell,"RT @zeldawilliams: To anyone out there for whom living hurts so badly, the alternative seems like a viable option: I am so sorry. This life…" +06/08/2018,Actors,@smashleybell,Family portrait 🖤 https://t.co/kr9WxoYBKw +06/07/2018,Actors,@smashleybell,Pier pressure ⛱ @ Malibu Farm https://t.co/MBmZTGjafb +06/06/2018,Actors,@smashleybell,New post on https://t.co/3bpxonNmwk 🖤 https://t.co/rv0eLNFoBa +06/06/2018,Actors,@smashleybell,"RT @jonfavs: Nearly 120k voters omitted from the voting rosters in LA County because of a printing error. Among other things, this could af…" +06/04/2018,Actors,@smashleybell,Yasssss @CynthiaEriVo!!! 👏🏽👏🏽👏🏽 https://t.co/xLZT40ZZhq +05/30/2018,Actors,@smashleybell,RT @RayBLK_: Kmt. Joke ting https://t.co/4P6UciwFCB +05/27/2018,Actors,@smashleybell,@Mi55Tipper 🙌🏽👏🏽👏🏽👏🏽 +05/24/2018,Actors,@smashleybell,@MatthewACherry I can’t with you 😭😭😭😭 +05/24/2018,Actors,@smashleybell,@MatthewACherry PREACH. +05/24/2018,Actors,@smashleybell,RT @JordanUhl: Have you tried not lying? https://t.co/lDHyNBbPAl +05/22/2018,Actors,@smashleybell,RT @MuslimIQ: Accurate b/c it’s a fake target & you put it there yourself. https://t.co/vaakbMLlWh +05/21/2018,Actors,@smashleybell,RT @AzitaGhanizada: #CALIFORNIA today is your last day to register to #VOTE for June 5th primaries: https://t.co/cLRcISnPg8 @riseupandvote_… +05/21/2018,Actors,@smashleybell,Oh thanks! I had fun playing Tituba. There was a lot more I wish we explored with her. https://t.co/IQCi26Ouog +05/19/2018,Actors,@smashleybell,Saturday 🌸 https://t.co/jKr37K2gqn +05/18/2018,Actors,@smashleybell,RT @IddoG: In custody?! Oh you mean white! +05/18/2018,Actors,@smashleybell,"RT @bryanboy: No. of mass shootings in 2018 (as of 15 May): + +🇦🇺 0 +🇳🇿 0 +🇩🇪 0 +🇬🇧 0 +🇧🇪 0 +🇦🇹 0 +🇩🇰 0 +🇳🇱 0 +🇸🇪 0 +🇫🇮 0 +🇮🇪 0 +🇨🇦 0 +🇱🇺 0 +🇨🇭 0 +🇺🇸 99*" +05/17/2018,Actors,@smashleybell,@Eric_Hanke @IKEAUSA Quite sure. All the pieces are chipped and damaged 😩😩😩😩 +05/17/2018,Actors,@smashleybell,@_smithaidan @IKEAUSA I did. Twice! Zero response. Ugh. +05/17/2018,Actors,@smashleybell,How does one get a response from @IKEAUSA customer service? At this point I think they are a myth. What exactly is… https://t.co/lZ0T5ayy5V +05/15/2018,Actors,@smashleybell,RT @iamwellandgood: The travel skin-care products actress @smashleybell swears by for glowy skin https://t.co/UIVcK0uRWx +05/15/2018,Actors,@smashleybell,RT @1PhoebeJTonkin: Does anyone know any women's shelters in LA/outer Los Angeles that take clothing donations and give them directly to th… +05/13/2018,Actors,@smashleybell,@jo_elvin I love you 😹 +05/10/2018,Actors,@smashleybell,@Fashion_Critic_ She looks GORGEOUS but I’d really like designers to start making dresses with illusion netting in all skin tones. +05/09/2018,Actors,@smashleybell,W O M A N 🔮 tap for credits https://t.co/RLKZjWdpNU +05/09/2018,Actors,@smashleybell,@davidwalliams @IddoG Shot by the talented and beautiful Ashley Madekwe +05/05/2018,Actors,@smashleybell,"RT @MikelleStreet: All black celebrities have a MORAL OBLIGATION to CARRY at the Met Gala. + +THE FUCKING THEME IS ""SUNDAY BEST!"" YOU BEEN PR…" +04/29/2018,Actors,@smashleybell,How is it STILL #oldheadshotsday? +04/26/2018,Actors,@smashleybell,RT @buckotb: As part of the ‘Everyman Cinema’ music film festival ‘The Local’ are screening a film I wrote with @AshleyBelalChin called ‘Vi… +04/26/2018,Actors,@smashleybell,@ReignOfApril Tasting kitchen. Technically that’s in Venice but super close. +04/25/2018,Actors,@smashleybell,Donald Trump has got the time to tweet about Kanye but I’m still waiting for his tweets about James Shaw Jr’s heroism and the four victims. +04/25/2018,Actors,@smashleybell,I love this thread 🖤 https://t.co/xVoUjdiclQ +04/24/2018,Actors,@smashleybell,I can’t breath 💀 https://t.co/k0utOiqwF4 +04/24/2018,Actors,@smashleybell,"“These haters corny with that Russian collusion mess” +I AM DEAD 😭😭😭😭😭 https://t.co/M3GtHelPbv" +04/24/2018,Actors,@smashleybell,D E A D 💀 https://t.co/M3GtHelPbv +04/23/2018,Actors,@smashleybell,Kim says racism doesn’t exist and I’m still waiting for an answer about how and why she got a spin-off show #RHOA https://t.co/tyuDJjMtsX +04/22/2018,Actors,@smashleybell,Hey @realDonaldTrump! You gonna congratulate James Shaw Jr on his heroism or nah? +04/19/2018,Actors,@smashleybell,"When you fly home in time for lunch with your husband 🐸 @ Original Farmers Market, Los Angeles https://t.co/qRHsMu6ytO" +04/18/2018,Actors,@smashleybell,Thread! https://t.co/MCp0Yg866p +04/18/2018,Actors,@smashleybell,"Chic c'est la vie, sa bonne sa bonne https://t.co/Gt9gvkRJ6F" +04/17/2018,Actors,@smashleybell,Missing this weather and the photographer.... 📷 @IddoG 🌸 https://t.co/m4DusWm10Z +04/16/2018,Actors,@smashleybell,In flight: ‘Oprah 2020’.... a girl can dream 🤷🏽‍♀️ https://t.co/WDsXmSKjF3 +04/15/2018,Actors,@smashleybell,Bunny shoes & a top knot for last night’s date 🐰 https://t.co/epd6kTzZo4 +04/14/2018,Actors,@smashleybell,Take notes people! https://t.co/L9o9ssdsw8 +04/13/2018,Actors,@smashleybell,😎 https://t.co/HuPKPmtngm +04/13/2018,Actors,@smashleybell,@The_Lecky @NicolefcCharles +04/13/2018,Actors,@smashleybell,@The_Lecky Nicole Charles +04/12/2018,Actors,@smashleybell,Loved celebrating you last night @jamiechung1 🍾🖤 @ Skybar at Mondrian https://t.co/Ia5D5g1UJy +04/11/2018,Actors,@smashleybell,Keyboard gangster https://t.co/bUitEPCCFN +04/11/2018,Actors,@smashleybell,@SkinnyGirlFiles It’s from @whattheHELLZ! 🖤 +04/11/2018,Actors,@smashleybell,@Christiana1987 I thought the same thing when I heard people talking about Cardie’s pregnancy. +04/10/2018,Actors,@smashleybell,#MAGA Making Attorneys Get Attorneys https://t.co/n0sG81iQ6E +04/08/2018,Actors,@smashleybell,@Kevinmorosky https://t.co/1NcOYDDq0y +04/07/2018,Actors,@smashleybell,"RT @MissCooperrr: Cardi B gave us bars that have every woman's ego on 100 rn. + +Y'all thought Drake was gonna drop some arrogant music & b…" +04/07/2018,Actors,@smashleybell,"“That’s a real one in your reflection” +It’s Saturday! Tag your partner in crime 🖤 @ Girl at the… https://t.co/6kPBLp0mLz" +04/06/2018,Actors,@smashleybell,"I think all events, bars and clubs should have beds. @ TASCHEN Gallery https://t.co/BHwKQeGT9X" +04/06/2018,Actors,@smashleybell,This not how I woke up but it’s how I look now https://t.co/31LbARMwJj +04/05/2018,Actors,@smashleybell,@Christiana1987 I can’t lie. It’s mum tweets that I was mostly looking for 😹 let her live!!!!! +04/05/2018,Actors,@smashleybell,@Christiana1987 You have the tweet wedding planning updates. I insist. +04/05/2018,Actors,@smashleybell,@MontanaSymone @InternetKelvin Very eloquently put. +04/05/2018,Actors,@smashleybell,.@whattheHELLZ Um what the hellz is up with your customer service? +04/05/2018,Actors,@smashleybell,Who’s ready for the weekend? 🙋🏽‍♀️ https://t.co/upK9ws0jjk +04/03/2018,Actors,@smashleybell,Tomorrow! 😘 https://t.co/09qOAPe68Y +04/03/2018,Actors,@smashleybell,Teach you how to spell PUSSY HOLE.... you aren’t talking about a digital watch dear. #cassio https://t.co/v2VOA0TJ4p +04/03/2018,Actors,@smashleybell,@buckotb Oi hold me back +04/03/2018,Actors,@smashleybell,@Christiana1987 @Kinowolf Congratulations!!!! ❤️❤️❤️ +03/29/2018,Actors,@smashleybell,#balenciagatriples 🖤 https://t.co/CN8zYie5PR +03/28/2018,Actors,@smashleybell,So glad I held out for the silver 🖤 #balenciagatriples https://t.co/jETCvzUH10 +03/27/2018,Actors,@smashleybell,"Happy Anniversary @MariahCarey! 🦋 +(You all know I was waiting for any excuse to post this picture again!) 💖 https://t.co/gMBTlYlL4E" +03/27/2018,Actors,@smashleybell,@AnnaPaquin They held Oscar once! Turned out the vet had administered the incorrect tick treatment. He was out in 48 hours 🐯 +03/24/2018,Actors,@smashleybell,@Christiana1987 Truth 😭 +03/21/2018,Actors,@smashleybell,"RT @JaimePrimak: Twitter!!! I have an AMAZING opportunity for an African American male actor, 30s, tall, handsome (not hunky) for a dramati…" +03/20/2018,Actors,@smashleybell,ONES COUNTRY IS ENGLAND. https://t.co/1jQlnoG8wO +03/20/2018,Actors,@smashleybell,@buckotb 30.... loooooooool +03/20/2018,Actors,@smashleybell,@michcoll Always +03/20/2018,Actors,@smashleybell,@michcoll I AM D E A D +03/19/2018,Actors,@smashleybell,@bryanboy Um.... Kybella. And I'm not agreeing that you need it just being helpful! x +03/18/2018,Actors,@smashleybell,RT @nowthisnews: Everything wrong with Fox News in one video https://t.co/MhnApiQ3pG +03/17/2018,Actors,@smashleybell,RT @rizmc: Our democracies were highjacked this is insane please watch and share https://t.co/30CuT9yKgq +03/17/2018,Actors,@smashleybell,☠️ https://t.co/sDzgdvYCyN +03/15/2018,Actors,@smashleybell,@bryanboy *Downloads them all immediately +03/13/2018,Actors,@smashleybell,@Tomhopperhops @prestigeflowers I had this issue with the same company a few years ago! +03/12/2018,Actors,@smashleybell,❤️🖤❤️🖤 @ Girl at the White Horse https://t.co/KaKu0XLqUr +03/09/2018,Actors,@smashleybell,Felling Fresh Friday 🍓 @ Jon & Vinny's Restaurant https://t.co/gbfRIYAXoC +03/08/2018,Actors,@smashleybell,@NicolefcCharles 👏🏽👏🏽👏🏽👏🏽👏🏽❤️❤️❤️❤️💖 +03/07/2018,Actors,@smashleybell,Ultimate 🌟 https://t.co/iL7h5QC2ZA +03/07/2018,Actors,@smashleybell,@chrissyteigen My favorite murder +03/07/2018,Actors,@smashleybell,@Kevinmorosky @tomw_dunn No but wait... is this a blade runner parody?! +03/05/2018,Actors,@smashleybell,"RT @franklinleonard: Inclusion rider definition, for those asking. https://t.co/xc3pyM3DKL" +03/05/2018,Actors,@smashleybell,@buckotb 😭😭😭😭😭 +03/04/2018,Actors,@smashleybell,"“Or if thy mistress some rich anger shows +Imprison her soft hand, and let her rave”- Keats +I’ve… https://t.co/a9O4IjisFs" +02/26/2018,Actors,@smashleybell,But what about your bone spurs? https://t.co/gzuyEE4CyC +02/25/2018,Actors,@smashleybell,I want to work with Lynne Ramsey. Just putting that out into the universe. +02/25/2018,Actors,@smashleybell,“Difficult”: Code for “is opinionated and has a vagina”. https://t.co/u1UMrHk1T1 +02/24/2018,Actors,@smashleybell,Nope. We just went by ourselves and figured it out. Maybe a tour would have gotten the most out of our time there b… https://t.co/WOun01PTeF +02/24/2018,Actors,@smashleybell,"RT @TraceeEllisRoss: .@IssaRae, @ReginaKing and I invite u 2 come see #BlackPanther at the Baldwin Hills Crenshaw Mall Rave Cinemas tomorro…" +02/23/2018,Actors,@smashleybell,New today on #RingMyBell... my statement earring collection ⚡️ https://t.co/WKZsqKmv73 +02/23/2018,Actors,@smashleybell,Yup. It’s like listening to a nazi rally. https://t.co/GqeFz0IWXj +02/22/2018,Actors,@smashleybell,"When he says he’s “hearing more and more people say”, he’s talking about himself. https://t.co/z3v6Joil2X" +02/22/2018,Actors,@smashleybell,@zeldawilliams 😹 +02/22/2018,Actors,@smashleybell,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/22/2018,Actors,@smashleybell,"RT @Thisismlu98: Hey guys, this is my father he's been unemployed for 6 years but he is qualified up to the T. He has a Master's Degree in…" +02/22/2018,Actors,@smashleybell,"RT @jonfavs: In the wake of Sandy Hook, 54 Senators supported Obama’s push for stronger background checks, including 4 Republicans. + +Marco…" +02/22/2018,Actors,@smashleybell,RT @SarahKSilverman: So there can be an imperfect tax bill passed that “we’ll fix later” but an imperfect assault weapons ban has to be Let… +02/22/2018,Actors,@smashleybell,“But it’s too hard. Boooo hoooooo”- Marco Rubio DICKHEAD +02/22/2018,Actors,@smashleybell,#DSS 😉 https://t.co/tlaLBJhuck +02/20/2018,Actors,@smashleybell,#CFDA x @TheAlexBadia x @variety 🌸 @ Chateau Marmont https://t.co/vQIXOYxRfP +02/20/2018,Actors,@smashleybell,@Possessionista I felt the same about Ring My Bell a few years ago. I took the pressure off myself and now I just d… https://t.co/sMs4PwVTi5 +02/20/2018,Actors,@smashleybell,RT @Kevinmorosky: #WakandaForever DM me https://t.co/y0mPbLWnsf +02/19/2018,Actors,@smashleybell,🐾 https://t.co/iWcaMFzuI8 +02/19/2018,Actors,@smashleybell,"RT @francismmaxwell: The fuck are you talking about, when a police officer shoots an unarmed black man you blame the unarmed black man. htt…" +02/17/2018,Actors,@smashleybell,@erinlrrt You wanna go? Take your niece/nephew? I’ll book you tickets! #blackpanther +02/17/2018,Actors,@smashleybell,@reinedafreak I will agree that it was more of an homogenized accent rather than a specific one but it in no way de… https://t.co/s9dDLaMPF1 +02/17/2018,Actors,@smashleybell,@reinedafreak You saw it and didn't like it? I'm happy they used an African accent. We don't hear that often enough in mainstream film. +02/17/2018,Actors,@smashleybell,@Israel__lee Well I hope you get to see it soon! It’s everything they say and more 🖤 +02/17/2018,Actors,@smashleybell,@Israel__lee Where you at? I’ll get you a ticket! +02/17/2018,Actors,@smashleybell,RT @geminicollision: This guy is lying. The picture is from a 2013 Dallas Observer article about a fight outside a nightclub. Please contin… +02/17/2018,Actors,@smashleybell,Reported! https://t.co/Q4F3NeGWWi +02/17/2018,Actors,@smashleybell,@prettiestpigeon I understand. 🖤 +02/17/2018,Actors,@smashleybell,@Christiana1987 Thanks love! ❤️ +02/17/2018,Actors,@smashleybell,"Who’s going to see #BlackPanther this weekend??? And if not, why? 🖤" +02/17/2018,Actors,@smashleybell,🖤 https://t.co/MXWe2ody6v +02/17/2018,Actors,@smashleybell,@Tomhopperhops Thanks! :) +02/17/2018,Actors,@smashleybell,@Cupcake_256 You are so welcome. You deserve to see the powerful black women of Wakanda! Sending you a DM now 🖤 +02/17/2018,Actors,@smashleybell,@Christiana1987 I thought of you! +02/17/2018,Actors,@smashleybell,@Cupcake_256 I’ll book you a ticket! Which movie theatre do you want to go to? +02/17/2018,Actors,@smashleybell,".@letitiawright you KILLED it! Such an amazing performance. Nuanced, funny, warm and touching. So good. 🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤" +02/17/2018,Actors,@smashleybell,Believe the hype. “Black Panther” is amazing. +02/17/2018,Actors,@smashleybell,It’s a shame it had to end this way @IddoG https://t.co/wSDF7S216V +02/16/2018,Actors,@smashleybell,Can’t wait ☂️ https://t.co/frRHqywr5e +02/16/2018,Actors,@smashleybell,"RT @Advil: as someone named Abdul i’ll never understand what it’s like to be generalized by the actions of a few. must be rough, thank you…" +02/16/2018,Actors,@smashleybell,New look on #RingMyBell https://t.co/3bpxonNmwk 🖤 https://t.co/Y3ESaxhM5u +02/16/2018,Actors,@smashleybell,@buckotb Thank yooouuuuu! 🖤 +02/16/2018,Actors,@smashleybell,@Nick_Wechsler Thanks love! +02/16/2018,Actors,@smashleybell,@Cbyt Thanks! +02/15/2018,Actors,@smashleybell,So excited 💥 https://t.co/2DuphYTOxg +02/15/2018,Actors,@smashleybell,"RT @car_nove: I was hiding in a closet for 2 hours. It was about guns. You weren't there, you don't know how it felt. Guns give these disgu…" +02/15/2018,Actors,@smashleybell,"RT @franklinleonard: “And now I want to speak to America’s children: There are people who love you, who will do anything for you, except pu…" +02/15/2018,Actors,@smashleybell,RT @Sarah_Hyland: WE NEED TO TAKE A STAND. WE NEED TO MAKE A CHANGE. HOW MANY MORE PEOPLE HAVE TO DIE FOR THAT TO HAPPEN?! #GunControlNow #… +02/14/2018,Actors,@smashleybell,Happy Valentine’s Day 🌈 https://t.co/UdYILeJgw8 +02/13/2018,Actors,@smashleybell,@wcruz73 And it’s YOUR. Prejudice is bad enough but must they always use the wrong “your/you’re”?! +02/08/2018,Actors,@smashleybell,@JasonMaza Would love that. Keep me posted ❤️ +02/08/2018,Actors,@smashleybell,@JasonMaza Bit of both. That's the charm. +02/07/2018,Actors,@smashleybell,So overwhelmed watching @donlemon tonight. What a professional. What a man. So sorry for your loss. +02/06/2018,Actors,@smashleybell,@MatthewACherry That keeps me up at night +02/04/2018,Actors,@smashleybell,Barefoot Sundays 🌺 https://t.co/Sip0xdo9iN +02/04/2018,Actors,@smashleybell,@YetideBadaki 🖤🖤🖤🖤 +02/04/2018,Actors,@smashleybell,When women speak up and advocate for our safety on set we are labeled as “difficult”. I speak from personal experie… https://t.co/SWBr416STd +02/02/2018,Actors,@smashleybell,@CynthiaEriVo Omg. Who is this?! 😻 +02/02/2018,Actors,@smashleybell,He said “Jar Jar Binks” 😹💀😹💀 https://t.co/5pApom3RRY +02/02/2018,Actors,@smashleybell,@sethgabel So sorry Seth. 🖤 +02/02/2018,Actors,@smashleybell,@Christiana1987 And still looking YOUTHFUL. Yas gawd. 🙌🏽 +02/01/2018,Actors,@smashleybell,@buckotb I’m very good at notes! +02/01/2018,Actors,@smashleybell,"RT @shondarhimes: Okay. Entertainment industry, time to stop using the phrases ""Smart Strong Women"" and ""Strong Female Leads"". There are…" +01/31/2018,Actors,@smashleybell,RT @franklinleonard: Send some kids in Compton to see #BlackPanther! https://t.co/AXFecxMYdk +01/30/2018,Actors,@smashleybell,Eyes rolled all the way back in my head 🙄 https://t.co/xtopkzAPNy +01/27/2018,Actors,@smashleybell,Well said 🖤 https://t.co/6eZnwbdrsj +01/25/2018,Actors,@smashleybell,😭😭😭😭😭😭😭😭 https://t.co/jLyGWwufaW +01/25/2018,Actors,@smashleybell,Same 🙋🏽‍♀️ Bi-racial girl from south London and the school was drama school. https://t.co/k4ZBYq3slH +01/24/2018,Actors,@smashleybell,@chrissyteigen He’ll be flattered and is the nicest most polite guy. Say hi! And then say hi from me :) +01/24/2018,Actors,@smashleybell,😁 https://t.co/8t0ve15ikq +01/24/2018,Actors,@smashleybell,@BagSnob I love you 🖤 +01/23/2018,Actors,@smashleybell,I don’t call that an apology. Apologies should not include excuses. She all but pulled the “but I have a black frie… https://t.co/rFnHSe0iZm +01/23/2018,Actors,@smashleybell,How not to apologize by Ulyana. https://t.co/0fI1a2EIrQ +01/23/2018,Actors,@smashleybell,I am SCREAMING!!!! Yasssss!!!! https://t.co/2DwD2Tm6ss +01/22/2018,Actors,@smashleybell,Wearing galvanlondon to the EW SAG awards nominee party this weekend. I loved those tassels! @… https://t.co/LFlrg5nimn +01/19/2018,Actors,@smashleybell,🖤 by estynelan https://t.co/ba92TvhkzP +01/18/2018,Actors,@smashleybell,👏🏽👏🏽👏🏽👏🏽 https://t.co/5wasLtdSDP +01/18/2018,Actors,@smashleybell,"Damn, this fired me up. Yesssss Ellen! 👏🏽👏🏽👏🏽👏🏽👏🏽👏🏽👏🏽 https://t.co/dX0a9dNhB5" +01/17/2018,Actors,@smashleybell,🍓 https://t.co/Y35QPCqMdg +01/16/2018,Actors,@smashleybell,Today on #RingMyBell ❤️ https://t.co/KeR9DLkNkX +01/14/2018,Actors,@smashleybell,They’re worth the hangover 🎀 https://t.co/xaRuIii02K +01/12/2018,Actors,@smashleybell,@Sarah_Hyland @TomiLahren I love you Sarah. +01/12/2018,Actors,@smashleybell,@Helen_Hird @OfficialRodarte Love it! 😻 +01/12/2018,Actors,@smashleybell,"RT @ksieff: Hey Tomi, Washington Post shithole bureau chief here. Love your foreign affairs reporting. Did you know there are 8.7 million A…" +01/12/2018,Actors,@smashleybell,RT @Christiana1987: I am proud to be of shithole descent. 🇳🇬 +01/12/2018,Actors,@smashleybell,Word. https://t.co/5uC3g05Rvg +07/01/2018,Actors,@BarrySloane,- @SIXonHISTORY won’t be returning for a S3 - But it’s important that these stories continue to be told. Shining a… https://t.co/vvvpQFSNP8 +07/01/2018,Actors,@BarrySloane,"@richardipshort @SergioRamos Nah, just being bitter. I learned from @Katysloane. 👍🏻" +07/01/2018,Actors,@BarrySloane,On a scale of 1 to well that’s fucking Karma isn’t it - was @SergioRamos crying? 😂 +07/01/2018,Actors,@BarrySloane,Yes Lad!! Dio 99 @LAFC 👊🏻🔥 https://t.co/KSivWofXbR +06/30/2018,Actors,@BarrySloane,"Thanks for all the support for #Six - +You guys are amazing. 💪🏻🐻👊🏻 https://t.co/QAT8jat4jM" +06/30/2018,Actors,@BarrySloane,RT @HistoryTVCanada: SEALs put their fears aside to get the job done. #SIX https://t.co/Ry9A8LcWtt +06/30/2018,Actors,@BarrySloane,"RT @Watch_LFC: 🔴 | It’s July 1st, reds. https://t.co/pY4PR3SYko" +06/30/2018,Actors,@BarrySloane,RT @ProD_Soccer: Pavard's goal belongs in the Louvre. https://t.co/PxejN2pKKx +06/29/2018,Actors,@BarrySloane,What a ride! Sorry to say that @SIXonHISTORY will not be back for a season 3. To all our amazing fans THANK YOU. 💪🏻🐻👊🏻 +06/29/2018,Actors,@BarrySloane,"See #JoeNeverMisses 💪🏻🐻👊🏻 +#SIXonHISTORY https://t.co/B6HsGyLB2B" +06/29/2018,Actors,@BarrySloane,"Daily Alarm 🚨 + +Day 3 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are doing… https://t.co/x2R0EH6W6Y" +06/28/2018,Actors,@BarrySloane,RT @oliviamunn: Did you know that a special ops veteran and his Marine veteran dad created @SIXonHISTORY ? 🙌🇺🇸 Read more here: https://t.c… +06/28/2018,Actors,@BarrySloane,Did you know that a special ops veteran and his Marine dad created @sixonhistory ? https://t.co/0Qjk4oSyPO +06/28/2018,Actors,@BarrySloane,Last nights bus ride on @SIXonHISTORY was not in the least bit awkward. Not at all. Not even a bit. Nope. 👀… https://t.co/gE9vreqgxK +06/28/2018,Actors,@BarrySloane,Great night spent with the warriors from @wwp watching #SIXonHISTORY - such an honor to represent the men and women… https://t.co/7MlAhpmXqG +06/28/2018,Actors,@BarrySloane,RT @IamDominicAdams: Life is like a box of Navy SEALs gunning for your blood. You never know if you're gonna survive #SixOnHistory #michael… +06/28/2018,Actors,@BarrySloane,"RT @EdwinHodge: Had a great time watching sixonhistory with the real hero’s from @wwp If you can’t walk a mile in their shoes, at least tak…" +06/28/2018,Actors,@BarrySloane,RT @KSamuelCohen1: I hope @HISTORY sees this tweet and realizes that @SIXonHISTORY MUST HAVE A THIRD SEASON!!!!!! Go season 3 of SIX!!!!!!!… +06/28/2018,Actors,@BarrySloane,RT @IamDominicAdams: If that bus could talk....and it worked like a dream. 'Short bus' @juanpabloraba @BarrySloane @EricLadin @EdwinHodge @… +06/28/2018,Actors,@BarrySloane,RT @SIXonHISTORY: #SIXonHISTORY https://t.co/mH1v002ar7 +06/27/2018,Actors,@BarrySloane,"Day 2 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are doing this to raise aw… https://t.co/9YJo3j1y2N" +06/27/2018,Actors,@BarrySloane,RT @EdwinHodge: TUNE IN TONIGHT! Head over to @WWP Instagram page where I and other sixonhistory cast members will be LIVE with Wounded War… +06/27/2018,Actors,@BarrySloane,"RT @IamDominicAdams: Tonight's episode of @SIXonHISTORY brought to you from inside Mikey N's head. #sixonhistory 10/9c +#michaelnasry #juras…" +06/27/2018,Actors,@BarrySloane,"TONIGHT at 10/9c +@SIXonHISTORY #SIXonHistory #SIXlive https://t.co/QjiVXA4llQ" +06/27/2018,Actors,@BarrySloane,"Day 1 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are starting this to raise… https://t.co/5T3ug5AdRr" +06/26/2018,Actors,@BarrySloane,"Monday ✔️ +Not a bad way to start the week... +#YosemiteNationalPark 🙌🏻 +@Katysloane and I will be starting our 20/20… https://t.co/SpfjaeNiGe" +06/25/2018,Actors,@BarrySloane,@IamDominicAdams @SIXonHISTORY @HISTORY Wonderful 👌🏻 #SixOnHistory #Six https://t.co/YGy4lADLZS +06/25/2018,Actors,@BarrySloane,"RT @rustyrockets: It isn't a luxury. +https://t.co/dO1pZmkW52 https://t.co/KaycjBMOKp" +06/24/2018,Actors,@BarrySloane,RT @RitaPanahi: Superb 🤣 https://t.co/EivrQbIeI4 +06/24/2018,Actors,@BarrySloane,"Once more onto the pitch dear friends, once more, to raise up these walls with our English cheer. When the whistle… https://t.co/WgIy6oBT04" +06/24/2018,Actors,@BarrySloane,RT @HISTORYUK: Join @BarrySloane for @SIXonHISTORY from the very beginning tonight at 10pm. Brand new season 2 starts August. #SIXonHISTORY… +06/24/2018,Actors,@BarrySloane,UK #SIXonHISTORY fans. Great News! Season 2 airs in August!! On @HISTORYUK - Make sure to get the word out that Sea… https://t.co/u7Is6R3KXf +06/24/2018,Actors,@BarrySloane,"Once more onto the pitch dear friends, once more, to raise up these walls with our English cheer. When the whistle… https://t.co/WEWvkYAlEm" +06/24/2018,Actors,@BarrySloane,"🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿 +@England @FIFAWorldCup +https://t.co/DCRDr80q6P" +06/24/2018,Actors,@BarrySloane,"RT @DonnieWahlberg: Next time you are about to tweet something negative about someone you dislike — STOP! + +Take a moment. + +Then try tweetin…" +06/24/2018,Actors,@BarrySloane,"RT @FootballFact101: A blind and deaf Brazilian football fan celebrating Coutinho’s goal today, dope shit.🙌🏾 Shout out to the guy helping h…" +06/22/2018,Actors,@BarrySloane,"If the guy hadn’t retreated to his ‘Prius’ Bear absolutely would have done. +😂🤣 #SIXonHistory @HerculesHandy https://t.co/FwyDNgJzEa" +06/22/2018,Actors,@BarrySloane,Proud to be representing the #UK here in #America. Watch the first series of #SIXonHISTORY Sundays at 10pm on… https://t.co/iGKTIiQ81e +06/21/2018,Actors,@BarrySloane,RT @SIXonHISTORY: There's always a turning point. What was yours? #SIXonHISTORY https://t.co/r11nJojWnh +06/21/2018,Actors,@BarrySloane,RT @classiclib3ral: How had Jordan Peterson never heard this extremely basic counter argument to his position before https://t.co/gTdLm166Hj +06/21/2018,Actors,@BarrySloane,"Wonderful performances from @iamkyleschmid and #SavannahWelch +Heartbreaking. And kudos to our writers and producers… https://t.co/6wTJva19FX" +06/21/2018,Actors,@BarrySloane,Superb!!! 😂😂😂😂 #SixOnHistory #SIXLive https://t.co/niwbJltSct +06/21/2018,Actors,@BarrySloane,"Strange Bush Girl: Hey, I like taking pictures. +Annabellle: My Dad used to be in @NarcosNetflix we should totally… https://t.co/tSEggLzeFz" +06/21/2018,Actors,@BarrySloane,"Chase drives a Prius. 👀 +@EdwinHodge #SeaFoamGreen +#SIXonHISTORY #SIXLIVE https://t.co/WvCTzD3sZ1" +06/21/2018,Actors,@BarrySloane,"RT @livelikebriana: You’re gonna do some what, Lena? #SIXLIVE #SixOnHistory https://t.co/iutViZZ2db" +06/21/2018,Actors,@BarrySloane,What the fuck is ‘plaining’?! And should you do it with another mans wife? Asking for a friend. @TheBrianneDavis… https://t.co/myXU9kbMJy +06/21/2018,Actors,@BarrySloane,https://t.co/GHDSonTNYe +06/21/2018,Actors,@BarrySloane,Tonight’s @SIXonHISTORY involves a water based op. It looks something like this. 🐻 #SIXLIVE https://t.co/Ti3Z5ye3iw +06/21/2018,Actors,@BarrySloane,"Ok #SIXonHISTORY fans, let’s start talking. Use #SIXLIVE to ask any and all questions. 💪🏻🐻👊🏻 https://t.co/Is2cLJqwVY" +06/21/2018,Actors,@BarrySloane,RT @SIXonHISTORY: What does Plan B look like? Find out Tonight at 10/9 C. #SIXonHISTORY https://t.co/t1GVvMGJja +06/21/2018,Actors,@BarrySloane,"Make sure to watch #SIXLIVE TONIGHT at 10/9c on @history #BonJovi @bonjovi +#FD1 - #JoeNeverMisses +@history 💪🏻🐻👊🏻 https://t.co/vbOv45F0gO" +06/20/2018,Actors,@BarrySloane,#WatchYourSix - Ep 5 Tonight! We’re halfway… https://t.co/mQoiC6I7PB +06/20/2018,Actors,@BarrySloane,RT @NNikolaeff: Bring it. This was a particularly psychologically hard episode for me to get my head around. To bring to life these irrever… +06/20/2018,Actors,@BarrySloane,"RT @oliviamunn: New episode of SIX tonight. #Repost @SIXonHISTORY +・・・ +She needs his information, and he needs her mercy. See their power s…" +06/20/2018,Actors,@BarrySloane,"RT @MattLittler: OK, I'm making a short film, I need your help, if you can RT, or even get involved please do. It features the brilliant @m…" +06/20/2018,Actors,@BarrySloane,"Don’t mind if I do. 👌🏻 +#JackNicholson #OneFlewOverTheCuckoosNest https://t.co/YGg9Ht4Gl0" +06/20/2018,Actors,@BarrySloane,"RT @myqkaplan: good night. + +you have done it once more. +you have lived a whole day. +you have risen and traveled and worked. + +you have seen…" +06/20/2018,Actors,@BarrySloane,RT @TheBrianneDavis: New episode tomorrow night @SIXonHISTORY @HISTORY #SixOnHistory https://t.co/YPbJ1UyJ0H +06/20/2018,Actors,@BarrySloane,"RT @IamDominicAdams: @sixonhistory tomorrow night 10/9c Michael may be loosing the plot. In fact, they all may be loosing the plot... #sixo…" +06/19/2018,Actors,@BarrySloane,"THIS SEASON on @SIXonHISTORY +💪🏻🐻👊🏻 https://t.co/uRpCWpwKtl" +06/19/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: ""Hit the deck!"" #SIXLive #SIXonHISTORY https://t.co/9yn71E9068" +06/18/2018,Actors,@BarrySloane,"RT @England: What a moment! 🙌 + +#threelions + +https://t.co/dsY0HRzZJk" +06/18/2018,Actors,@BarrySloane,"RT @Andrew_Heaton: This, by Romelu Lukaku, is truly something else. Very rare for footballers to be so open, which in itself is a shame. + +W…" +06/17/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Every mission has consequences. Witness the fallout Wednesdays at 10/9 C. #SIXonHISTORY https://t.co/sfR9YrFlX6 +06/15/2018,Actors,@BarrySloane,"RT @HerculesHandy: Yes even one of the baddest people in the @SIXonHISTORY universe enjoys going to the playground + +Joe Bear Graves +@Barry…" +06/15/2018,Actors,@BarrySloane,RT @meawwofficial: Can you teach an old dog new tricks? This show gives us a resounding YES. @SIXonHISTORY #SIXonHISTORY @BarrySloane @juan… +06/14/2018,Actors,@BarrySloane,@MiloVentimiglia Haha. Yes Bro. Get It! 💪🏻👊🏻 +06/14/2018,Actors,@BarrySloane,"We don’t just blow shit up on @SIXonHISTORY.....But when we do blow shit up, We BLOW SHIT UP. +#SIXLIVE #SIXonHISTORY" +06/14/2018,Actors,@BarrySloane,That fucking broke me @iamkyleschmid @LindsleyRegi wonderful. #SIXLIVE #SIXOnHistory +06/14/2018,Actors,@BarrySloane,"Thank you Tom, this is why we make the show. #SIXonHISTORY #SIXLIVE @SIXonHISTORY https://t.co/8rSRWlPrSO" +06/14/2018,Actors,@BarrySloane,Take a bow @TheBrianneDavis Take a bow. #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#FishTale Part2 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,@celihangout 👍🏻 #SIXLIVE #SIXonHISTORY https://t.co/pRn7q7Xb2r +06/14/2018,Actors,@BarrySloane,"#SealTeamSpace 👀🚨 #JoeNeverMissesAParkingOppertunity +#SIXLIVE #SIXonHISTORY https://t.co/XQazE28C3T" +06/14/2018,Actors,@BarrySloane,Last scene was shot in the #Vancouver Aquarium 🦈👌🏻🙌🏻 #SIXLIVE #SIXonHISTORY https://t.co/RdkprEpIBE +06/14/2018,Actors,@BarrySloane,Yes a #ChaseTale 👊🏻 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Bout time we got a #FishTale #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Remember Season 1 he had to provide a sample. #Link #SIXLIVE #SIXonHISTORY https://t.co/RnhvW6YMLO +06/14/2018,Actors,@BarrySloane,"RT @EricLadin: @BarrySloane Trevor looking back at bear. +#SIXlive #SIXonHISTORY https://t.co/RQpI7F2VXP" +06/14/2018,Actors,@BarrySloane,Bear looking at Trevor 👀 #SIXLIVE #SIXonHISTORY @EricLadin https://t.co/4WVrHsyidU +06/14/2018,Actors,@BarrySloane,@Wee3Minis @EricLadin 👀 https://t.co/EP8Qx7Yqp5 +06/14/2018,Actors,@BarrySloane,Trevor’s #Truth #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#AssToFace @juanpabloraba 😂😂😂 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Good to see Mutaqqui back 👀🎯 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#SIXLIVE will we see the #GinaCarabiner #SIXonHISTORY @oliviamunn +06/14/2018,Actors,@BarrySloane,Here we go #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,4 Mins Out #WatchYourSix @SIXonHISTORY #SIXLIVE #SIXonHISTORY https://t.co/w8jZUzEsVW +06/14/2018,Actors,@BarrySloane,RT @iamkyleschmid: Less than 10 minutes to episode 4!!! Join us as we tweet live! #sixonhistory #sixlive +06/14/2018,Actors,@BarrySloane,https://t.co/r5yRVRkLD8 +06/13/2018,Actors,@BarrySloane,RT @NNikolaeff: Thank you @TheReelTalker for the interview discussing @SIXonHISTORY and @Mile22Movie. Been a big year and I’m very grateful… +06/13/2018,Actors,@BarrySloane,Too much Ketchup? Burger Malfunction? It happens. Fear not. Be strong. 👍🏻 #SixOnHistory #SIXLIVE https://t.co/HEc5Seawls +06/13/2018,Actors,@BarrySloane,RT @oliviamunn: All-new episode of #SIXonHISTORY TONIGHT on @HISTORY at 10/9c. (Remember: this show is not suitable for your kids to watch.… +06/13/2018,Actors,@BarrySloane,"You all caught up? Make sure to watch #SIXLIVE TONIGHT!!! at 10/9c on @history +#FD1 - #JoeNeverMisses 💪🏻🐻👊🏻🇺🇸 +🐍🎯 https://t.co/XnoBo7MrMQ" +06/13/2018,Actors,@BarrySloane,"RT @TheAnfieldWrap: You: “We’ve gone from Allison and Fekir to Butland and Shaqiri. The club are a joke. We’re gonna get relegated.” 🤯 + +Jür…" +06/13/2018,Actors,@BarrySloane,#WatchYourSix - Great afternoon promoting… https://t.co/uv2jgux4FJ +06/13/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: With a mission this challenging, compromise is part of the game. #SIXonHISTORY https://t.co/Y3jceB8LMh" +06/12/2018,Actors,@BarrySloane,@celihangout @IamDominicAdams @thedanlindgren @nadinevelazquez @SIXonHISTORY @afterbuzztv @juanpabloraba… https://t.co/S1P4BUfvLm +06/12/2018,Actors,@BarrySloane,RT @oliviamunn: Sneak peek of tomorrow night’s new episode of SIX. @SIXonHISTORY on @HISTORY Wednesdays 10/9c #SIXonHistory https://t.co/LA… +06/12/2018,Actors,@BarrySloane,I won’t start playing your game. Not yet at least......👀 🐍 Vs 🐻 https://t.co/me2lEyU5Ly +06/12/2018,Actors,@BarrySloane,@IamDominicAdams @thedanlindgren @nadinevelazquez @SIXonHISTORY @afterbuzztv @celihangout @juanpabloraba… https://t.co/iMBHGFmW0L +06/12/2018,Actors,@BarrySloane,Thanks man. It’s appreciated. 👊🏻 #SIXonHISTORY #LukeCage https://t.co/pZ5hlb4Cd6 +06/12/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: Ready or not, here they come. Join SEAL Team SIX on Wednesdays at 10/9 C. #SIXonHISTORY https://t.co/tTqFvZ57fE" +06/11/2018,Actors,@BarrySloane,"RT @scotwilliams: As people go to buy The S*n today, we say to them, you have a choice... + +Fund a Tory/UKIP loving toxic rag that accused…" +06/11/2018,Actors,@BarrySloane,This is the kind of article that makes us at @SIXonHISTORY very proud. Thanks @WeAreTheMighty 👊🏻 #SixOnHistory https://t.co/bZCAMs3OFf +06/11/2018,Actors,@BarrySloane,"Wednesday 10/9C on @HISTORY +@SIXonHISTORY 💪🏻🐻👊🏻 https://t.co/NHjuL91lSj" +06/11/2018,Actors,@BarrySloane,RT @Katysloane: I’m super excited to announce that I will be… https://t.co/Nq73ALHOkd +06/11/2018,Actors,@BarrySloane,That is correct 👍🏻🇬🇧 #FatherBrown https://t.co/2l1YDYYR0V +06/10/2018,Actors,@BarrySloane,"RT @rustyrockets: How do we deal with fear? +https://t.co/dO1pZmkW52 https://t.co/b4z4JR9v8z" +06/10/2018,Actors,@BarrySloane,"RT @SachinNakrani: The “whole of London”? I was in Greenwich drinking beer and eating a burger you absolute fuckwit + +Oh, and that’s a photo…" +06/10/2018,Actors,@BarrySloane,"RT @LAFC: What an ending! + +The @SanManuelCasino Thrill of the Match: Our miraculous comeback in stoppage time! https://t.co/517iFRGnD4" +06/09/2018,Actors,@BarrySloane,"Well I highly rate this tweet Dayna. +Appreciated. 💪🏻🐻👊🏻 #SixOnHistory #Six https://t.co/6Yi20x09JD" +06/09/2018,Actors,@BarrySloane,And he’s looks a Badass! 👊🏻 🙌🏻🇬🇧 https://t.co/fcUyUIcBcQ +06/09/2018,Actors,@BarrySloane,"RT @ProfBrianCox: You can convince people to vote to abolish gravity, but they will be very pissed off with you when they hit the ground. h…" +06/09/2018,Actors,@BarrySloane,"RT @tvserieshub: Some watch TV at night @juanpabloraba exercises 😂 + +#SixOnHistory https://t.co/iqXoLekcHw" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @Beatles_27 @ABC7NY In 12 years working in the UK, I only used one weapon on stage once in a play. It… https://t.co/OtR1MND18e" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @liamgallagher I was interested in the character of Joe Graves from the outset, My beliefs, likes, wh… https://t.co/Mr9Cu8g7Mg" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @Beatles_27 @ABC7NY Yes, ‘Acting’ as a member of the US armed forces, all of whom I have no issue wit… https://t.co/RoBYdeBUui" +06/08/2018,Actors,@BarrySloane,@PAFlyFisher2 @liamgallagher So only actors who ‘like’ guns can use them in TV and Movies? Is that what you’re sayi… https://t.co/mSB43qNzMK +06/08/2018,Actors,@BarrySloane,@PAFlyFisher2 @Beatles_27 @ABC7NY I’m not doing movies. And it’s ‘Acting’ darling. 😂 +06/08/2018,Actors,@BarrySloane,"🙌🏻 #LEGEND - SIR @kennethdalglish +@LFC @LFCUSA https://t.co/Z6T0AfGyCl" +06/08/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Chase puts his emotions on the back burner when he's in the field. #SIXonHISTORY https://t.co/n26kZMbmA3 +06/08/2018,Actors,@BarrySloane,Me refreshing @NabilFekir notifications on here.......@LFC #AnnounceFekir https://t.co/QENjKxv4Dm +06/08/2018,Actors,@BarrySloane,Thanks for the shoutout today on your show @HowardStern - Glad to hear you’re enjoying @SIXonHISTORY #SIXonHistory +06/07/2018,Actors,@BarrySloane,"Can this #Fekir lad play in goal? 👀 +Yeeerse The Reds 🚨 @LFCUSA @LFC @NabilFekir 🔥" +06/07/2018,Actors,@BarrySloane,#WatchYourSix - I told you #JoeNeverMisses - So what did you guys think about last night? Let me know in the commen… https://t.co/8c3INCAur4 +06/07/2018,Actors,@BarrySloane,"RT @MensJournal: “I know Tom Cruise says this a lot, but we don’t have any stunt doubles to do any of the SEAL stuff.” https://t.co/eRI73v2…" +06/07/2018,Actors,@BarrySloane,Agreed. #SIXLive #SIXonHISTORY https://t.co/ouz1n0XMRX +06/07/2018,Actors,@BarrySloane,RT @NNikolaeff: I know!!! It looked better in theory. Toight. https://t.co/mcXxoZ6hjE +06/07/2018,Actors,@BarrySloane,Here’s us giving @Jaylen_Moore ‘support’ before he was secured to the side of a helicopter and taken up into sky 😂😂… https://t.co/cncx3C4Out +06/07/2018,Actors,@BarrySloane,RT @EdwinHodge: West Coast!! 1 minute before @SIXonHISTORY begins. This was one of my favorite episodes to film this season! #SIXLive #SIXo… +06/07/2018,Actors,@BarrySloane,"The Templars are seldom wrong, right @tom_cullen 👊🏻 #SixLive #SIXonHISTORY #KnightFall @KnightfallShow @SIXonHISTORY https://t.co/iqwOSQPRxw" +06/07/2018,Actors,@BarrySloane,"RT @islandshortie: When im watching @SIXonHISTORY , it feels like real seals on my screen, great writing and acting, @EdwinHodge @BarrySloa…" +06/07/2018,Actors,@BarrySloane,What a wonderful tweet. Thanks @CarissaPavlica 👍🏻 #SIXonHISTORY #SIXLive https://t.co/8DEMRwSIp1 +06/07/2018,Actors,@BarrySloane,"RT @EricLadin: That MMA fire fight sequence was 🔥 +#SIXLive #SIXOnHistory" +06/07/2018,Actors,@BarrySloane,I concur. 👍🏻 #SIXLive #SIXonHISTORY https://t.co/PxtmIq5EHo +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: Just saying! #SIXonHistory https://t.co/DzrVnhbxDr +06/07/2018,Actors,@BarrySloane,"RT @Katysloane: Blown away by tonight’s episode of @SIXonHISTORY ! Omg! + #SIXLive #SIXOnHistory" +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: BAD BEAR!!! https://t.co/RufYv4MBVb +06/07/2018,Actors,@BarrySloane,Indeed. #SIXlive https://t.co/Kv0zdPX0Bg +06/07/2018,Actors,@BarrySloane,Lovely Stuff. #SixLive https://t.co/uD0UVmDa8I +06/07/2018,Actors,@BarrySloane,Same. 👀 #SIXLive https://t.co/YIYjscJGQC +06/07/2018,Actors,@BarrySloane,It’s going to GO DOWN soon........#SIXLive +06/07/2018,Actors,@BarrySloane,That last scene was filmed at night in a non moving vehicle being shaken by the crew. 😂💪🏻 TV magic 👌🏻#SIXLIVE +06/07/2018,Actors,@BarrySloane,Same. 👊🏻 #SIXLIVE https://t.co/UYNjklIlRm +06/07/2018,Actors,@BarrySloane,Who’s watching #SIXLive ? https://t.co/1fWS70GoKF +06/07/2018,Actors,@BarrySloane,Snitches get stiches Mick #SixLive +06/07/2018,Actors,@BarrySloane,"RT @EricLadin: Hey look what I found! +#SixLive #SIXOnHistory https://t.co/jWotFyhoy6" +06/07/2018,Actors,@BarrySloane,Micky doin the Dua...... #SIXLive +06/07/2018,Actors,@BarrySloane,YA THINK 👀 #SIXLIVE https://t.co/LoIHiqTlh9 +06/07/2018,Actors,@BarrySloane,"RT @EdwinHodge: I know the game is on, but to those who are watching, thanks for joining us tonight east coast!!! @SIXonHISTORY #SIXLIVE #s…" +06/07/2018,Actors,@BarrySloane,"Marrisa 🎯 #JoeNeverMisses +#SixLive #SIXonHISTORY" +06/07/2018,Actors,@BarrySloane,👀 #SIXLIVE #TrevorTalks @EricLadin https://t.co/Mz4qGbCdRi +06/07/2018,Actors,@BarrySloane,Truth https://t.co/L0F9N22iC8 +06/07/2018,Actors,@BarrySloane,Fish don’t fuck about #SIXonHistory +06/07/2018,Actors,@BarrySloane,Trev is taking it UP #SIXonHistory +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: Man @iamkyleschmid hang over is a bitch ha?? #SIXonHistory #SIXLIVE +06/07/2018,Actors,@BarrySloane,Bear don’t surf #SixLive +06/07/2018,Actors,@BarrySloane,Loose lips sink ships Mickey Boy 👀 #SixLive +06/07/2018,Actors,@BarrySloane,He gonna do it? #SixLive +06/07/2018,Actors,@BarrySloane,The Prince! #SixLive +06/07/2018,Actors,@BarrySloane,#SixLive NOW https://t.co/sx6HKvEEuJ +06/07/2018,Actors,@BarrySloane,"RT @tvserieshub: Here we go!! #SixonHistory starts now! +-Kelsey" +06/07/2018,Actors,@BarrySloane,RT @IamDominicAdams: @SIXonHISTORY S2 Ep 3 #SixOnHistory #michaelnasry https://t.co/XfedAN88TM +06/07/2018,Actors,@BarrySloane,Same. #SIXonHISTORY 👊🏻 #SIXLIVE https://t.co/66sNPToDrV +06/07/2018,Actors,@BarrySloane,https://t.co/qWAybTJzfW +06/07/2018,Actors,@BarrySloane,"#Bear ♥️ #America 🇺🇸 💪🏻🐻👊🏻 +#SIXonHISTORY #SixLive #Six https://t.co/xFueVsvnFB" +06/06/2018,Actors,@BarrySloane,RT @BarrySloane: WatchYourSix - For Episode 3 of @sixonhistory Joe gets a #Shave and a #Haircut courtesy of @candices ✂️ Remember it’s impo… +06/06/2018,Actors,@BarrySloane,"RT @BarrySloane: How we shot the Blackhawk scenes midair on @SIXonHISTORY 💪🏻🐻👊🏻 +#SixOnHistory #SixLive https://t.co/veYBQADZFA" +06/06/2018,Actors,@BarrySloane,"#JoeNeverMisses 👀🎯 +#SIXonHISTORY #SixLive #Six https://t.co/8Uo4uaGary" +06/06/2018,Actors,@BarrySloane,"#Repost @andystumpf77 +・・・ +It is an odd thing,… https://t.co/odFSBYLVKi" +06/06/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: When Bear is in the zone, nothing can steal his focus. See him in action tonight, 10/9 C. #SIXonHISTORY https://t.co/5run…" +06/06/2018,Actors,@BarrySloane,"Bear is dealing with RIPs death in his own way, grief finds strange places to place itself. There will be lots more… https://t.co/7ntuZjMLNo" +06/06/2018,Actors,@BarrySloane,RT @EricLadin: One of my favorite parts of the job is the preparation. Learning & absorbing as much information as I can about the characte… +06/06/2018,Actors,@BarrySloane,"In a Van, wearing an earpiece and a hoodie,… https://t.co/gIISbQp1cS" +06/06/2018,Actors,@BarrySloane,"RT @oliviamunn: New episode of SIX on @HISTORY TONIGHT 10/9c. (And please remember this show gets dark, so please don’t let your kids watch…" +06/06/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: #1: The mission #2: Everything else. Watch @SIXonHistory on its NEW night, tonight at 10/9c. https://t.co/zYXhO8DTaG" +06/06/2018,Actors,@BarrySloane,For fans of @TheWhispersABC take a look at our inspiration from the inimitable #RayBradbury #ZeroHour @shugh100… https://t.co/VuuqAvqkp0 +06/06/2018,Actors,@BarrySloane,"Glad you enjoyed @TheWhispersABC - were all very proud of it, sadly the TV Gods at ABC decided that the story ended… https://t.co/R8LLf2wrF7" +06/06/2018,Actors,@BarrySloane,@thejamessutton Smash it lad 🍻🍾 +06/06/2018,Actors,@BarrySloane,@damianholbrook @SIXonHISTORY @TVInsider Indeed. 👍🏻👊🏻 🍻 +06/06/2018,Actors,@BarrySloane,Always great talking @SIXonHISTORY with @damianholbrook - Extra points if you can understand my accent first time.… https://t.co/ncdLHJdY0b +06/06/2018,Actors,@BarrySloane,#WatchYourSix - It’s a Capture/Kill mission… https://t.co/IcVQ9HoCLZ +06/06/2018,Actors,@BarrySloane,@Soniasuponia @elijahwood For you @DPCarv 😂👌🏻 +06/06/2018,Actors,@BarrySloane,"Check out the @SIXonHISTORY - @afterbuzztv show - Tonight! At 7pm. +💪🏻🐻👊🏻 #SixOnHistory #SIXLIVE https://t.co/N1JfGWgMAU" +06/06/2018,Actors,@BarrySloane,"Great interview with @MensJournal about @SIXonHISTORY - My prep for the role, accents, @Stranger_Things and more.... https://t.co/CMFoEJAVkL" +06/06/2018,Actors,@BarrySloane,"RT @mjfit: From scaling mountains to hiking over raging rivers, the cast of @SIXonHISTORY did it all to prepare for Season 2. + +We spoke wit…" +06/06/2018,Actors,@BarrySloane,RT @Matthew_Jussim: Loved getting to chat with the awesome @BarrySloane about Season 2 of @SIXonHISTORY.. We spoke about what it takes to p… +06/05/2018,Actors,@BarrySloane,"Great interview with @MensJournal about @SIXonHISTORY - My prep for the role, accents, @Stranger_Things and more...… https://t.co/U4iAQOXATM" +06/05/2018,Actors,@BarrySloane,RT @TellTaleTV_: Nikolai Nikolaeff Talks #SIXonHistory [Exclusive Interview] @NNikolaeff https://t.co/yJstWWLhOv https://t.co/9NjUNO84rt +06/05/2018,Actors,@BarrySloane,"RT @parentsmagazine: .@TheBrianneDavis, star of #SixonHistory, opened up about her miscarriage in our July issue: ""Tell everybody. Speak yo…" +06/05/2018,Actors,@BarrySloane,"Hey Kev, @5spiketv will be showing Season 2, not sure when. And great news that @HISTORYUK now also have the rights… https://t.co/puaVrF670D" +06/05/2018,Actors,@BarrySloane,"How we shot the Blackhawk scenes midair on @SIXonHISTORY 💪🏻🐻👊🏻 +#SixOnHistory #SixLive https://t.co/veYBQADZFA" +06/05/2018,Actors,@BarrySloane,RT @TomLangevin13: Thank you @SIXonHISTORY was happy to donate but this is just an added bonus! @BarrySloane @EricLadin #SIXonHistory https… +06/05/2018,Actors,@BarrySloane,RT @StarryMag: .@SIXonHISTORY fans get to know new star @EricLadin reading Editor @NotYerAvgChick's interview at https://t.co/dWoeTUd5I5! #… +06/04/2018,Actors,@BarrySloane,"Don’t worry I’ve just called ALL the Liverpool fans and it turns out it’s fabricated Bollocks, or I might have just… https://t.co/opseKtkVUq" +06/04/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Better to have Caulder on your team than the other team. He's a deadly weapon on SEAL Team SIX. #SIXonHISTORY https://t.c… +06/04/2018,Actors,@BarrySloane,Oh Fuck Off. https://t.co/a2TeD2c89o +06/04/2018,Actors,@BarrySloane,WatchYourSix - For Episode 3 of @sixonhistory Joe gets a #Shave and a #Haircut courtesy of @candices ✂️ Remember it… https://t.co/5pDCWnpjKP +06/04/2018,Actors,@BarrySloane,You only have till Wednesday 👊🏻 #SIXONHISTORY #SixLive https://t.co/erMczciPfF +06/04/2018,Actors,@BarrySloane,https://t.co/vp9cbhfLvv +06/30/2018,Actors,@MichaelEmerson,We are serious @MLB baseball fans at our house but continue to be fascinated by the compulsive oral habits of the g… https://t.co/W9UNDAKkIG +06/29/2018,Actors,@MichaelEmerson,"A few days relaxing in Italy will be nice! No work, just sunshine, big family meals and daytrips to hill towns and… https://t.co/MgQP0NyT2y" +06/28/2018,Actors,@MichaelEmerson,I read in Deadline Hollywood that Name of the Rose will be aired in North America sometime in 2019 on AMC’s… https://t.co/jhGJ0lHPT3 +06/11/2018,Actors,@MichaelEmerson,I’m excited to watch my lady-wife do her thing on tonight’s season premiere of @ClawsTNT Such a powerful cast!… https://t.co/imlgwkGn4r +06/02/2018,Actors,@MichaelEmerson,My hat’s off to Lindy West (again and again) +06/02/2018,Actors,@MichaelEmerson,We had big fun last night in the Quarter! @HaroldPerrineau @itisIjudyreyes @carriepreston @karrueche and I dined at… https://t.co/XasILpkZsl +05/30/2018,Actors,@MichaelEmerson,What a fine time in Houston hanging out with good friends from LOST @CarbonellNestor @hicusick @FrancoisChau and th… https://t.co/RDjsNIfxpJ +05/26/2018,Actors,@MichaelEmerson,PS The photomontage (perhaps not the right word?) was created by Peter Teige and Tajmey Teige at https://t.co/upW6Mc1KiW Hats off to them! +05/26/2018,Actors,@MichaelEmerson,I met so many lovely people at Comicpalooza today— thanks for such a warm reception! Received this amazing photo-mo… https://t.co/w0pZvYI5Kv +05/25/2018,Actors,@MichaelEmerson,Wow— my first time in Houston! What a huge sprawling place it is! Staying in the CBD near the convention center for… https://t.co/lBJ1u6904i +05/22/2018,Actors,@MichaelEmerson,We stumbled upon @MaypopRestauran tonight in the CBD of NOLA— cool fusion of NewOrleans and Vietnamese flavors. We… https://t.co/1FeBt4ALXq +05/18/2018,Actors,@MichaelEmerson,It’s Tony-voting season and even wiseguy locals like Yours Truly struggle to get tix for good shows. No dismay tho… https://t.co/yyKJr6MiQs +05/06/2018,Actors,@MichaelEmerson,Carrie and I are having fun at the New Orleans Jazz Fest— a little too hot for comfort but the music is fabulous! J… https://t.co/XjK3k915He +05/03/2018,Actors,@MichaelEmerson,"I have been working with the strangest haircut of my career. +I’m hoping that 21st-century hair will soon reclaim my… https://t.co/5QdLlDCm3B" +05/03/2018,Actors,@MichaelEmerson,Last night I read “Marabou” by Joy Williams at Symphony Space. It’s a difficult piece because of how it’s written a… https://t.co/wgDLtqzPVL +04/27/2018,Actors,@MichaelEmerson,"This production of The Name of the Rose is, as far as I know, an Italian production but shot in English so presumab… https://t.co/zU9ro3s45Z" +04/26/2018,Actors,@MichaelEmerson,Last scene of my last day. The Abbot is awakened by a monk with a candle who brings bad news. Cut. Last dinner at O… https://t.co/A7LUPlaORj +04/21/2018,Actors,@MichaelEmerson,The end of a project sneaks up on you- too few days to say goodbye to your new friends and family. Too few days to… https://t.co/0lPdUBt2Rk +04/15/2018,Actors,@MichaelEmerson,"shipping crate, darn it" +04/15/2018,Actors,@MichaelEmerson,"My characters always seem to end up in a tunnel, AC duct, shopping crate or the trunk of a car. I suppose it is one… https://t.co/hsXaY2YgM9" +04/09/2018,Actors,@MichaelEmerson,Left wintry NYC for Spring in Rome- 72* F and sunny on Sunday. Everyone outdoors and the sidewalk tables full. Stun… https://t.co/aZxCzrBnfr +04/08/2018,Actors,@MichaelEmerson,Basil Twist’s abstract puppet show Symphonie Fantastique at HERE in NYC is a wonderful and elemental theatrical exp… https://t.co/WUHwi5fGht +04/01/2018,Actors,@MichaelEmerson,"Saw a great prod of Tom Stoppard’s TRAVESTIES at Roundabout Theater last night. Difficult script- art, politics and… https://t.co/VLyTDQoF94" +03/23/2018,Actors,@MichaelEmerson,"I really love the Donald Link restaurants in the Warehouse District here in New Orleans- +Herbsaint, Pêche, and Coch… https://t.co/Hm5zzz6MeS" +03/21/2018,Actors,@MichaelEmerson,Had to reschedule my return to NYC due to snowstorm. Nothing to do but try to tough it out a few more days in New Orleans. Oh well... 😎 +03/12/2018,Actors,@MichaelEmerson,We attended @thebukuproject last night- music and fashion amidst Mardi Gras parade figures. A really great set by… https://t.co/iVrW0neVZf +03/10/2018,Actors,@MichaelEmerson,"A bright warm day in New Orleans, good for a long ride on the St. Charles streetcar. Jovial crowd at the Rusty Nail… https://t.co/55M9gkadwU" +03/07/2018,Actors,@MichaelEmerson,I suspect tomorrow will be another winter-travel debacle for me. Typical. My air-travel plans seem to agitate Arcti… https://t.co/MAFwRePqhj +03/06/2018,Actors,@MichaelEmerson,The 3 biggest towers at Hudson Yards just west of us. It’s like watching the construction of Oz https://t.co/TPR1lxZl5e +03/03/2018,Actors,@MichaelEmerson,Always nice to return to the USA from work abroad. Customs continues to be exasperating but Home is Home and I can… https://t.co/w2jT6YTSUn +03/01/2018,Actors,@MichaelEmerson,Here’s what is humbling: watching your new actor friend carry on fluent conversations in 4 languages in as many hou… https://t.co/BWmt3Qumny +02/26/2018,Actors,@MichaelEmerson,Piazza Cavour https://t.co/EMuZYeS9sw +02/26/2018,Actors,@MichaelEmerson,Still- sidewalk tables packed in Piazza Navona!! Haha Intrepid +02/26/2018,Actors,@MichaelEmerson,"Surprise winter weather here in Rome! Looks like 4” of wet snow and it’s quite cold (32*F/0*C) +Schools closed, tree… https://t.co/QSDnswVvgg" +02/24/2018,Actors,@MichaelEmerson,On The Name of the Rose we spend a lot of time considering the hot topics of the Catholic Church in the 1320s. The… https://t.co/WWuOio3dOW +02/17/2018,Actors,@MichaelEmerson,Oops— again I misunderstand the Twitter system. Disregard that last one- it was for Carrie! Haha 🤓 +02/17/2018,Actors,@MichaelEmerson,Hey- stop liking me so much! 🤓 +02/17/2018,Actors,@MichaelEmerson,"This fellow says, “Yes, I’m out here in the cruel elements, but I will outlive you” https://t.co/Jt1CtCbrtQ" +02/17/2018,Actors,@MichaelEmerson,It’s one thing to draw the human figure accurately— to chip it out of a block of stone so finely that it seems to b… https://t.co/ij0y7WMDrB +02/17/2018,Actors,@MichaelEmerson,Hiked up to the Villa Borghese today where they have a stunning collection of marble statues by Bernini. https://t.co/ZIERDRIOXo +02/17/2018,Actors,@MichaelEmerson,"Haven’t been able to watch @MITJAmazon yet (I gather it’s out there). Hope it’s funny- they are a lovely, carefree… https://t.co/tjHBMbAEEB" +02/12/2018,Actors,@MichaelEmerson,Neglected to mention that il mio Italiano è pietoso. Perdonami +02/12/2018,Actors,@MichaelEmerson,Really very humbling to work with a cast of European actors who all speak English and usually several other languag… https://t.co/dVy68PXFVL +02/07/2018,Actors,@MichaelEmerson,You walk by Teatro 5 at Cinecittá and you think “Oh my! Fellini did his interiors here!” Legendary place! And I am… https://t.co/eBl8B8RAkh +02/04/2018,Actors,@MichaelEmerson,"There’s a certain thrill you get riding through the pre-dawn streets of Rome, past deserted piazzas and looming mon… https://t.co/qpZQqOM8KQ" +01/23/2018,Actors,@MichaelEmerson,Traveling to Europe today to work on an exciting project. Exciting and stressful. (Too far from my family). Hope it… https://t.co/7I1YiLzy8J +01/21/2018,Actors,@MichaelEmerson,"LOST still gets cited in an SNL sketch! Cultural longevity! +@DamonLindeloff @CarltonCuse" +01/19/2018,Actors,@MichaelEmerson,More proud than ever to be part of @CW_Arrow +01/19/2018,Actors,@MichaelEmerson,Diggle full-strength! Hooray! +01/19/2018,Actors,@MichaelEmerson,"This abandoned warehouse was SO COLD! +Insanely good stunt work" +01/19/2018,Actors,@MichaelEmerson,Who knew our heroes looked so good in blue light?!! Such great production values on @CW_Arrow +01/19/2018,Actors,@MichaelEmerson,Unbelievable stunts! David! Tobias! How’d GA shoot that sphere?! Great stuff +01/19/2018,Actors,@MichaelEmerson,"Enjoying Arrow live broadcast, complete w commercials! So many good villains! Katie! Johann! KIRK!" +01/19/2018,Actors,@MichaelEmerson,What’s to be done on the day you realize you are parent to your parents? So sobering and so sad. Real grownup stuff… https://t.co/MUNkshTp37 +01/11/2018,Actors,@MichaelEmerson,Really enjoying audiobook adventures of Inspector Maigret by Georges Simenon. Crisp detective stuff and a taste of… https://t.co/aiMVnzT3Xk +01/06/2018,Actors,@MichaelEmerson,New York is now a vast field of salt-preserved slush— unfreezable despite the arctic cold. A lot of sad dogs limpin… https://t.co/C5Fm9kVBLr +12/31/2017,Actors,@MichaelEmerson,"Carrie is whipping up traditional Southern fare for this evening- biscuits, black-eyed peas, collard greens and squ… https://t.co/CE6jpIcxA0" +12/29/2017,Actors,@MichaelEmerson,"Had a ferocious scene with @kirkacevedo on @CW_Arrow just before Christmas— he’ll make your hair stand on end! +Heal… https://t.co/ESHuq3YliL" +12/29/2017,Actors,@MichaelEmerson,No worries- I thought you meant Transmit More Images 😜 https://t.co/lMt2OVuEY1 +12/28/2017,Actors,@MichaelEmerson,"Nothing dampens the Yuletide spirit like 2 days of gastroenteritis in a hotel room! +Maybe it bodes well for the New Year? Oof." +12/17/2017,Actors,@MichaelEmerson,I want to say that @JGHorn is a wonderful interviewer and I was glad to have a chance to talk to him on #GeffenPlayhouseUnscripted +12/16/2017,Actors,@MichaelEmerson,Sorry for duplication- technical confusion. Sigh +12/16/2017,Actors,@MichaelEmerson,@JGHorn is a wonderful interviewer- so glad I had a chance to talk to him on #GeffenPlayhouseUnscripted +12/15/2017,Actors,@MichaelEmerson,@JGHorn is such a wonderful interviewer— so glad I had a chance to talk to him on #GeffenPlayhouseUnscripted +12/15/2017,Actors,@MichaelEmerson,@JGHorn is a wonderful interviewer- so glad I had a chance to talk to him! #GeffenPlayhouseUnscripted +12/14/2017,Actors,@MichaelEmerson,"Heavy work on @CW_Arrow A lot of danger, desperation and bodies flying around. Sturm und Drang. But what did I expect? Tea with crumpets? 🤓" +12/04/2017,Actors,@MichaelEmerson,And the Iliad narrative never stops being topical. (Sadly) The pride and violence of men brings death and ruin and… https://t.co/3EnGbhMwEo +12/04/2017,Actors,@MichaelEmerson,Final performance of An Iliad tonight at the Sheen Center on Bleecker in NYC. Powerful stuff +12/04/2017,Actors,@MichaelEmerson,Im totally floored by Ms Tarah Flanagan’ performance tonight in AN ILIAD by @denisohare and @Lpete88888 STUNNING +11/27/2017,Actors,@MichaelEmerson,"It’s nice to be a member of the villains club on @CW_Arrow - such a brilliant group of actors-talented, personable… https://t.co/doTREYrEOV" +11/22/2017,Actors,@MichaelEmerson,Rainy and cold in Vancouver but warm hearts and good humor on the set of @CW_Arrow. All best wishes to @MzKatieCassidy and her family. +11/18/2017,Actors,@MichaelEmerson,"Glad to hear the US Fish & Wildlife Service is on the case, making sure we can get back to hunting elephants as soo… https://t.co/SqveI9XMtD" +11/18/2017,Actors,@MichaelEmerson,Found the freshly-severed wing of a Northern Flicker on our terrace this week! (Midtown Manhattan!) The natural wor… https://t.co/lKH3P21I5O +11/18/2017,Actors,@MichaelEmerson,The men’s and women’s curling are equally interesting- I love the still focus of the curler and the madness with th… https://t.co/fvmCtEMIBn +11/18/2017,Actors,@MichaelEmerson,Watching the US Olympic curling trials (ha)— one of my favorite sports! I find it very soothing 🤓 +11/14/2017,Actors,@MichaelEmerson,"And @SeaOakAmazon is written by George Saunders, author of Lincoln in the Bardo. Such a beautiful book!" +11/14/2017,Actors,@MichaelEmerson,O wow— we love the pilot of @SeaOakAmazon our friend @benlivingston7 is great! @GlennCloseNews is OFF THE CHART +11/04/2017,Actors,@MichaelEmerson,Im so grateful to have found a seat at the the @CW_Arrow family feast. Cause for thanksgiving. Such a sweet and hospitable company. O Canada +10/29/2017,Actors,@MichaelEmerson,Proud of Iowa State's victory over TCU in college football. Two wins over top-5 teams in the space of a month! @goclones20 +10/20/2017,Actors,@MichaelEmerson,Quite a rousing essay by Lindy West in Wednesday's @NYTimes-- thrilling balance of outrage and wit +10/17/2017,Actors,@MichaelEmerson,Oops-- meant @morganlibrary Not a computer genius-- I just play one on tv ;-) +10/16/2017,Actors,@MichaelEmerson,"Amazing show of drawings at @Morganlibrary1 in nyc. I find I am partial to the French- Ingres, Degas, Daumier and the sublime Seurat" +10/13/2017,Actors,@MichaelEmerson,Have seen some fine cabaret perfs lately-- the indescribable Carol Lipnik and the fiercely eclectic Evangelia Kingsley. U gotta love NYC! +10/01/2017,Actors,@MichaelEmerson,Great to be in Georgia for the benefit at Theatre Macon-- where @carriepreston and her brother John began acting. Inspired by dear Jim Crisp +09/17/2017,Actors,@MichaelEmerson,"No better place for a going-away party than the Bohemian Hall and Beer Garden in Astoria-- fine summer night, music, beer, good friends" +09/16/2017,Actors,@MichaelEmerson,Sad to read of the passing of Harry Dean Stanton-- superb character player-- inspiration for other late-bloomers +09/11/2017,Actors,@MichaelEmerson,"Best wishes for all friends and relatives in Florida tonight. Clearwater and Jacksonville, hang in there!" +09/10/2017,Actors,@MichaelEmerson,Horrified to read that some people fleeing Irma have left their pets locked in kennels or chained to trees. Unconscionable +09/05/2017,Actors,@MichaelEmerson,Interesting speech on the subject of deportation (from the Elizabethan play Sir Thomas More) possibly written by Wm… https://t.co/2NUAzi5Ole +09/03/2017,Actors,@MichaelEmerson,"Quiet holiday weekend in NYC, chilly and wet-- takeout and Twin Peaks. All vacations completed-- summer ending, time to get serious, I guess" +08/16/2017,Actors,@MichaelEmerson,Vancouver lives up to its' rep as a lovely city-- scenic and cosmopolitan. Im getting such gracious treatment at @CW_Arrow great cast&crew! +08/08/2017,Actors,@MichaelEmerson,Glad @patrickryannyc 's #TheDreamLifeOfAstronauts is out @randomhouse I read one on #SwampRadio. U can hear it here: https://t.co/UuAZzd7tsF +08/03/2017,Actors,@MichaelEmerson,"We watched, fascinated and amazed, Derek DelGaudio's magic show @InandOfItself last night at the @DarylRoth Theatre in NYC. It's a wonder!" +07/29/2017,Actors,@MichaelEmerson,So happy to appear on @MITJAmazon - after yrs of playing dark & real I get to revert to my essential silliness. And what a lovely company! +07/28/2017,Actors,@MichaelEmerson,I think I'm Vancouver-bound! Excited to join a fabulous success like @ArrowCWTV. I'll just keep my head down and try to make a contribution +07/18/2017,Actors,@MichaelEmerson,After a few hours of sweaty NYC errands it's nice to retreat to the cool shade of Black Door and an adult beverage. Summer in the city! +07/10/2017,Actors,@MichaelEmerson,Suddenly I'm playing lots of characters in wigs and beards-- not terribly comfortable but it's fun to show @carriepreston and make her laugh +07/04/2017,Actors,@MichaelEmerson,Having a great Fourth in the Catskills-- brilliant bluegrass music ON OUR PORCH last night by Two Dollar Goat! Foot-stomping goodness! +06/29/2017,Actors,@MichaelEmerson,It gladdened my heart to be part of this acting community and a member of an honest-to-god old-school American labor union! @ActorsEquity +06/29/2017,Actors,@MichaelEmerson,Went to the unveiling of Kate Burton's caricature at Sardi's and was happy to be part of such a proud tradition. Hats off to dear Kate! +06/28/2017,Actors,@MichaelEmerson,"A grand party tonight w @AmyAcker , @TheJimmyCarp, @carriepreston, @boglesthemind, Amy C and Shelly at @PNPizza https://t.co/luZZanILoU" +06/26/2017,Actors,@MichaelEmerson,Saw Paula Vogel's @IndecentBway yesterday-- such a beautiful show! +06/15/2017,Actors,@MichaelEmerson,"Fab lunch today at @CafeAmelieNOLA on Royal in the Quarter-- great street of art, antique & jewelry shops-- but it's hot here in the sun" +06/11/2017,Actors,@MichaelEmerson,"Good times in NOLA yesterday- +Cajun Tomato Festival and dinner at @sylvainnola in the French Quarter with @julieannemery and @ferrarasusan" +06/02/2017,Actors,@MichaelEmerson,I saw a brilliant production of Government Inspector at @redbulltheater last nite! Fab cast led by the stunning @michaelurie HILARIOUS!! +06/01/2017,Actors,@MichaelEmerson,@JelloMoldEnnui Hard work but a beautiful book +05/29/2017,Actors,@MichaelEmerson,I really like @jessmendoza and her sharp commentary on baseball. Refreshing +05/24/2017,Actors,@MichaelEmerson,"One of the great features of NYC is your neighborhood 24-hour diner. +In my case, the Malibu! Every kind of character, every kind of food!" +05/18/2017,Actors,@MichaelEmerson,"I've just seen the pilot of @ClawsTNT and it is sensational! +Gripping, raunchy, funny, heart-breaking." +05/11/2017,Actors,@MichaelEmerson,"You get a pretty high order of acceptance speech at Off-B'way theater awards. Passionate, poetic, political." +05/09/2017,Actors,@MichaelEmerson,Congrats to @JOEtheMORTON on winning the @LortelAward on Sunday! Terrific actor! +05/07/2017,Actors,@MichaelEmerson,@LortelAwards tonight-- chance to hobnob with old theater friends. Might be a nice party afterwards +05/07/2017,Actors,@MichaelEmerson,Really good Portuguese restaurant in my new nabe-- @LupuloNYC great sm plates and unusual beers +05/01/2017,Actors,@MichaelEmerson,@widgetfactoryco @wwoz_neworleans Ain't it great?! +05/01/2017,Actors,@MichaelEmerson,"One of the best discoveries from my time in NOLA was radio station @wwoz_neworleans -- early jazz, blues, Cajun, Zydeco, r&b, you name it!" +04/24/2017,Actors,@MichaelEmerson,Had a grand dinner with @HaroldPerrineau in NOLA last week at Seaworthy. I think he's going to be amazing in #ClawsTNT. Such a fine actor! +04/16/2017,Actors,@MichaelEmerson,Hard to stop eating in New Orleans-- one fabulous restaurant after another-- working on a graduate degree in gumbo studies +04/16/2017,Actors,@MichaelEmerson,Easter dinner with family in New Orleans at @DelmonicoNOLA -- heavenly food! +04/10/2017,Actors,@MichaelEmerson,"I'm shocked and saddened to hear of the death of #TimPigottSmith on Friday. A lovely, funny, generous man and a mighty actor." +04/04/2017,Actors,@MichaelEmerson,Fine Bluegrass at the Flatiron Room on Mondays-- does my heart good! @AbbyHollander and crew doing it for real +04/02/2017,Actors,@MichaelEmerson,"Last performance of WAKEY WAKEY today. The show, like the winter, has given way to Spring. +Here's to Will and @justjanuary" +03/25/2017,Actors,@MichaelEmerson,"RT @carriepreston: What a lovely video, thanks @thegoodfight ! https://t.co/miy7EZpWwA" +03/20/2017,Actors,@MichaelEmerson,Your body does not know that stage grief is not real grief. The same way it doesn't know a stage kiss is not a real kiss. Hazardous terrain. +03/18/2017,Actors,@MichaelEmerson,"The audio recording of AMADEUS that I did with @LATheatreWorks sounds very good! Great pace, great sound effects. And a wonderful cast!" +03/18/2017,Actors,@MichaelEmerson,"My friend Kate Burton, an actor of tremendous power and charm, is in the new production of Present Laughter with Kevin Kline" +03/08/2017,Actors,@MichaelEmerson,"The 2-show days on a play are tough if the material is heavy and you never leave the stage. +I dont think I have the stamina I once had. Ha" +02/19/2017,Actors,@MichaelEmerson,"Tooth paint to play a drunk in O'Neill, spirit gum for a false mustache in Chekhov and an antique hand mirror given to me by Kevin Spacey" +02/19/2017,Actors,@MichaelEmerson,"My old makeup box, unopened for 11 years, is a trip to the past. Creme colors, clown white & lipstick for playing old men, old women & fools" +02/17/2017,Actors,@MichaelEmerson,"Sorry to be so out-of-touch! The play has been all-consuming. Going reasonably well, I think. Lots of nerves, lots of rituals" +01/26/2017,Actors,@MichaelEmerson,"Oops-- was #MurphysLaw a tv show? I just meant ""If it can go wrong...""" +01/26/2017,Actors,@MichaelEmerson,"Got a guy coming tomorrow to cut up a metal table that wont fit thru the apt door. Ah, the joys of home ownership! #MurphysLaw" +01/14/2017,Actors,@MichaelEmerson,"My better half @carriepreston starts shooting ""Claws"" for TNT next month. It's juicy and Southern. @NiecyNash at the vanguard in NOLA" +01/14/2017,Actors,@MichaelEmerson,"Have just finished, drop by precious drop, a gift bottle of @MichtersWhiskey 20 yr old bourbon. Finest ever. Heavenly" +01/14/2017,Actors,@MichaelEmerson,"Rehearsing a play in NYC-- had forgotten what hard, satisfying work it can be! All the old traditions, all the old rhythms. +Scary, too" +01/05/2017,Actors,@MichaelEmerson,Had a very fine lunch today at @ililiRestaurant -- Lebanese on 5th Avenue. Must revisit some evening +01/04/2017,Actors,@MichaelEmerson,"Funny how u can move 30 blocks in NYC and feel yr in another town. Where's the pharmacy, hardware, pet supply, Chinese takeout, etc? All new" +01/01/2017,Actors,@MichaelEmerson,"Family New Years Eve- 5 adults, 2 nephews, 1 dog. Hoppin John, fried chicken and Snickers cones-- great view of Times Sq from our terrace 🎉" +12/21/2016,Actors,@MichaelEmerson,Stricken last weekend with nerve inflammation in my neck-- couldnt move my head! Felt like Mr Finch! Ouch +12/10/2016,Actors,@MichaelEmerson,"Lovely fan gifts lately- glass birds, gloves, scarves, needlepoint- even an Advent calendar. We'll find good homes for all of them. Thanks!" +12/04/2016,Actors,@MichaelEmerson,"Doing housework listening to @KTUH_FM from Honolulu-- fabulous funk/r&b show and it's still Sunday morning there! +Love that station" +11/30/2016,Actors,@MichaelEmerson,Francilla from @Coreterno gave me a beautiful candle today! They are at the pop-up holiday market on Broadway in Soho +11/29/2016,Actors,@MichaelEmerson,@dinamartina was hilarious in her holiday show at B B King's this evening! Great kickoff for the season +11/28/2016,Actors,@MichaelEmerson,"Drunkle Vanya at the Russian Samovar was splendid tonight! Great food & drink too! +@DrunkleVanya @3DayHangover" +11/28/2016,Actors,@MichaelEmerson,Saw My Name is Gideon at Rattlestick Theater last night-- weird and wonderful +11/24/2016,Actors,@MichaelEmerson,Cooking for the whole clan today-- no furniture yet so we made a table out of boxes and trunks! +11/15/2016,Actors,@MichaelEmerson,"Really, @GreatCometBway has one show-stopping song after another and sensational dancing! +What a workout for this mighty cast! Amazing" +11/15/2016,Actors,@MichaelEmerson,Saw the opening of @GreatCometBway tonight and it is stunning +11/15/2016,Actors,@MichaelEmerson,Always glad to make a contribution to #Wikipedia -- I like the concept and use it a lot +11/14/2016,Actors,@MichaelEmerson,(If you grew up in Tama County in the 60s) I dont want Wolverines to be angry with me-- it's just my roots 🙂 +11/14/2016,Actors,@MichaelEmerson,A dramatic victory for the #IowaHawkeyes over Michigan yesterday- very satisfying +11/11/2016,Actors,@MichaelEmerson,Moving is truly stressful-- living in a purgatory of cardboard boxes and misplaced goods. Difficult if you depend on order (as I do) +11/11/2016,Actors,@MichaelEmerson,Doing @SelectedShorts next Wednesday at @SymphonySpace could be fun-- @harvardlampoon material +11/02/2016,Actors,@MichaelEmerson,"It's a great Series and we love MLB but we're mystified by the tradition of chewing and spitting. +Makes for some cringe-worthy closeups!" +11/01/2016,Actors,@MichaelEmerson,I had a great time at #WalkerStalkerCon -- so many enthusiastic fans and such fine hospitality +10/28/2016,Actors,@MichaelEmerson,Flying to Atlanta for #WalkerStalkerCon -- no idea what to expect! Looks like hot weather +10/25/2016,Actors,@MichaelEmerson,"Just finished #TheNightOf -- +John Turturro, @rizmc, Jeannie Berlin, Bill Camp, @amarakaran SENSATIONAL! What a stunning cast!!" +10/16/2016,Actors,@MichaelEmerson,"Reading about Astor Place riots 1849. Hard to imagine a time when Shakespeare mattered so. +Forrest vs Macready! Wow" +10/10/2016,Actors,@MichaelEmerson,"Just discovered Hi Fructose (late, as ever)-- what a cool magazine! Greg Simkins is something else!" +10/10/2016,Actors,@MichaelEmerson,Loved Stephen Greenblatt's essay in the NY Times today re Trump and Richard III +10/10/2016,Actors,@MichaelEmerson,Really enjoyed Michael Chitwood's poem The Tree in Threepenny Review. I have carried buckeyes in my pockets often and for the same reasons +10/10/2016,Actors,@MichaelEmerson,Enjoying a quiet month in NYC-- Carrie filming in NOLA and me feathering a new nest. Anxious to see The Encounter on B'way +09/29/2016,Actors,@MichaelEmerson,"#Westworld is stunning-- beautiful, terrifying, mysterious hats off to @JonathanNolan and @lisajoynolan" +09/29/2016,Actors,@MichaelEmerson,@carriepreston and I are heading to the #Westworld premiere-- @JonathanNolan and @lisajoynolan can be trusted to do something sensational +09/26/2016,Actors,@MichaelEmerson,Proud to be part of the LATW production of AMADEUS-- thanks to everyone who came and for lovely gifts +09/19/2016,Actors,@MichaelEmerson,@ItsRamiMalek !!!!How great is he?!!! We're so happy for our gifted friend #Emmys +09/19/2016,Actors,@MichaelEmerson,I can only wish https://t.co/W09cZZeLSI +09/19/2016,Actors,@MichaelEmerson,"@sterlingkb1 wins the Emmy!! +YES YES YES Loveliest man and fabulous actor! Dont know when I've been this happy about an award" +09/10/2016,Actors,@MichaelEmerson,My lady wife in perhaps her best-ever gown heading to the Emmys https://t.co/rQHPJ7SEdr +09/03/2016,Actors,@MichaelEmerson,Just before the hurricane with @carriepreston and a little canine https://t.co/y42Sm5iIdE +09/03/2016,Actors,@MichaelEmerson,Driftwood Beach on Jekyll Island-- amazing graveyard of dead trees https://t.co/68LzLxPRfm +09/02/2016,Actors,@MichaelEmerson,Rode out some wild weather last night on Jekyll Island! Hello #Hermine !!! +08/31/2016,Actors,@MichaelEmerson,"Brother, that is hilarious! https://t.co/5lqjyAQMDb" +08/29/2016,Actors,@MichaelEmerson,"Carrie&I had a ball at the #AFROPUNKBK2016 fabulous music&styles! @lauramvula wow @TVonTheRadio yes! +@CeeLoGreen fabulous" +08/25/2016,Actors,@MichaelEmerson,"So proud to have read a @patrickryannyc story on the upcoming #SwampRadio podcast. Due on Labor Day, I think. ""Fountain of Youth""" +08/25/2016,Actors,@MichaelEmerson,@carriepreston has a lovely Emmy dress-- hope my tux still fits. Very demanding day for the girls-- I feel their pain +08/25/2016,Actors,@MichaelEmerson,Very excited about @carriepreston and @HaroldPerrineau doing the pilot of #Claws with @NiecyNash ! Hell of a script +08/17/2016,Actors,@MichaelEmerson,"Saw a wonderful play #MenOnBoats at @PHnyc female cast as frontier explorers. +Hilarious and strangely moving" +08/07/2016,Actors,@MichaelEmerson,"Went to a stunning concert in London- Weimar Cabaret with @BarryHumphries1 and the heavenly @MeowTopia Her ""Surabaya Johnny"" was a marvel" +08/03/2016,Actors,@MichaelEmerson,"My thanks to Anna, Megan and Gerri and to fans bearing gifts (including two glass finches!) +#londonfilmandcomiccon" +08/03/2016,Actors,@MichaelEmerson,So nice to be reunited with @HaroldPerrineau and @DomsWildThings for a #Lost panel. 2 of the smartest & funniest! #londonfilmandcomiccon +08/03/2016,Actors,@MichaelEmerson,Had a great time meeting fans of #Lost #PersonOfInterest #Saw at #londonfilmandcomiccon So many lovely people! +07/28/2016,Actors,@MichaelEmerson,Nervous about #londonfilmandcomiccon tomorrow but it's exciting to be in this great city! +07/21/2016,Actors,@MichaelEmerson,Looking forward to #londonfilmandcomiccon It'll be great to meet the UK fans! @Showmasters +07/15/2016,Actors,@MichaelEmerson,.@carriepreston says this is now her favorite movie. Ha https://t.co/iOqhuTfOnU +06/24/2016,Actors,@MichaelEmerson,Having a quiet lunch at Blue Seafood Bar on 9th Av-- best clam chowder ever +06/22/2016,Actors,@MichaelEmerson,"And that's how we roll on #PersonOfInterest I'm satisfied. +Namaste" +06/22/2016,Actors,@MichaelEmerson,Jim C pretty fabulous on the rooftop #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,#johnreese +06/22/2016,Actors,@MichaelEmerson,Tough to say goodbye to #john reese after all this time on #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,Hard to imagine the real pain of a gunshot wound #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,@carriepreston celebrating birthday same day as #PersonOfInterest finale +06/22/2016,Actors,@MichaelEmerson,"Here we go! Last ep ever of #PersonOfInterest . Heartfelt thanks to our loyal and passionate fans! If I recall correctly, this is a good one" +06/15/2016,Actors,@MichaelEmerson,Tough scene with Greer in the airless room #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Harold's in the belly of the beast now. #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Mr Finch limping toward his fate on #Personofinterest !! +06/15/2016,Actors,@MichaelEmerson,#Tesla nice as a driverless auto on #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Hell's Kitchen full of #Lost fans today. I must watch it again (but when?) +06/15/2016,Actors,@MichaelEmerson,@katerigg and @lyrishung were formidable in #HappyLuckyGoldenTofuPandaDragonGoodTimeFunFunShow +06/15/2016,Actors,@MichaelEmerson,@carriepreston premiered her movie of #HappyLuckyGoldenTofuPandaDragonGoodTimeFunFunShow at Soho FF last night! Hilarious +06/13/2016,Actors,@MichaelEmerson,I try not to oversell #HamiltonMusical but I've never seen the like of it. THRILLING +06/29/2018,Actors,@AmyAcker,"RT @mhsutaylor: And, completing the family: Lauren + Andy = Fenris. Pick a side in the #MutantUprising @TheGiftedonFOX https://t.co/zX7qVma…" +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Supercool surprises on the way from Caitlin and Reed Strucker. #MutantUprising @TheGiftedonFOX https://t.co/D02WIjIxol +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: For fans of the Aurora Borealis. #MutantUprising @TheGiftedonFOX https://t.co/2IwwzqPgyN +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Adding to the #MutantUprising in Season 2 of @TheGiftedonFOX https://t.co/IfBMfbNOwx +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Season 2 of @TheGiftedonFOX premieres Tues Sept. 25th! And here's a sneak peek at our Comic Con art... More #MutantUprising… +06/17/2018,Actors,@AmyAcker,RT @jvagle: Fellow lawyers: Here’s how we may be able to help. https://t.co/Xo8GscYggd +06/07/2018,Actors,@AmyAcker,RT @CountryTime: Kids across the country are getting busted for operating lemonade stands without a permit. We're taking the lead to #SaveL… +06/06/2018,Actors,@AmyAcker,RT @Adam_Bartley: Cannot wait to see this doc #Longmire fans! So many other great shows too that were saved by fans like you with actors li… +05/15/2018,Actors,@AmyAcker,"RT @WhedonCon: @AmyAcker Our charity convention WhedonCon is THIS weekend in Los Angeles, and we need help spreading the word so we can rai…" +05/13/2018,Actors,@AmyAcker,Yes!! https://t.co/etgvnFDUYW +05/13/2018,Actors,@AmyAcker,Thank you❤️ https://t.co/mqKW96Ggsa +05/13/2018,Actors,@AmyAcker,Happy Mother’s Day you glorious moms who make it all happen! #momisasuperpower #X +04/28/2018,Actors,@AmyAcker,RT @_HeroesForHire: .@AmyAcker and @TheJimmyCarp in @Calgaryexpo parade! https://t.co/Hnen5TS0UJ +04/04/2018,Actors,@AmyAcker,Please check out @TheWayItBegins to see the beautiful short film directed by my friend and #POI alum #ChrisWright… https://t.co/inXfcikdsw +03/13/2018,Actors,@AmyAcker,RT @brandon_dckrsn: https://t.co/8IDr4l5Dgo +03/13/2018,Actors,@AmyAcker,RT @brandon_dckrsn: Still unplugged for the month...but if I was on Twitter I would definitely want folks to know they can now enjoy... htt… +03/08/2018,Actors,@AmyAcker,"😁❤️😁 Aw Geez, Thank you for the #RTOK !!the great thing about @brghtidea is- it’s impossible not to smile when he… https://t.co/tSIDZddvQ1" +03/08/2018,Actors,@AmyAcker,"RT @NerdAppropriate: Episode 300 is here with special guest @AmyAcker ! On this special episode with talk The Gifted, Person of Interest, A…" +02/25/2018,Actors,@AmyAcker,Congratulations on 100 episodes @AgentsofSHIELD it was so wonderful to see so many great friends and celebrate with you tonight! +02/17/2018,Actors,@AmyAcker,RT @TheSimplySweet: @AmyAcker We rqst your help. Plz help CityofBastropTX win @smbizrevolution vote 4 us at https://t.co/1Eie2vhtkl AND plz… +02/02/2018,Actors,@AmyAcker,@davidchang Thank you so much! Everything was perfect! I can’t wait to come back! +02/02/2018,Actors,@AmyAcker,Such an amazing meal majordomola and I got to meet @davidchang !! So excited we have one of his… https://t.co/I2b3lhYeTp +01/27/2018,Actors,@AmyAcker,@DistortedGhost Wow! Thank you so much!!❤️ +01/16/2018,Actors,@AmyAcker,Thank you to @GiftedTVWriters @FOXTV @MattNixTV @Marvel @ShuDonner @brghtidea @sonyamstrich all the fantastic crew.… https://t.co/b8FhcgZs4m +01/16/2018,Actors,@AmyAcker,RT @GiftedTVWriters: Mutants! Thank you so much for joining us on this incredible journey. We're incredibly proud of what we've created and… +01/16/2018,Actors,@AmyAcker,"RT @TVTango: 🌟Watch tonight @FOXTV 8-10pm Season Finale #TheGifted @TheGiftedonFOX ""eXtraction; X-roads"" w/ @smoyer @AmyAcker @seanjteale @…" +01/16/2018,Actors,@AmyAcker,"RT @MattMitovich: .@TheGiftedonFOX Finale: @AmyAcker and @SkylerSamuels Tease Dark Twists, Gun-Toting Caitlin and a Big 'Oh DAMN!' Moment h…" +01/10/2018,Actors,@AmyAcker,Happy birthday!🎁🎁 https://t.co/gvIvNr8jKX +01/04/2018,Actors,@AmyAcker,RT @TheGiftedonFOX: The war is not over. RETWEET if you can't wait for Season 2 of #TheGifted! ✖️ #MutantsUnite https://t.co/jXMofnVagI +01/04/2018,Actors,@AmyAcker,Thank you all for being such great fans!! thegiftedonfox #season2 #thegifted https://t.co/RDn0HbmZkV +01/02/2018,Actors,@AmyAcker,"RT @brghtidea: It’s okay Andy, there’s a brand new Ep of @TheGiftedonFOX on Tonight!!! 9pm!!!! #TheGifted @smoyer @AmyAcker https://t.co/D…" +12/12/2017,Actors,@AmyAcker,RT @JeffHarris7: Want your Monday to be X-Cellent? Watch the fall finale of #TheGifted tonight! @AmyAcker @smoyer @NatalieAlynLind @PercyHy… +12/09/2017,Actors,@AmyAcker,@stxphbxby I will be thinking of you. Sending you my love. Stay strong! ❤️ +12/09/2017,Actors,@AmyAcker,"#Repost @brandon_dckrsn (get_repost) +・・・ +THANK YOU ALL! who've enjoyed and shared… https://t.co/GIrRIz2gkD" +12/07/2017,Actors,@AmyAcker,"RT @KristinZiemke: If you're enjoying #HourofCode this week, pause a minute to take action for #NetNeutrality Keep the internet open and f…" +12/07/2017,Actors,@AmyAcker,"RT @aidenjamestour: If you are near the #Califonia #Wildfires + +please put out buckets of water for the animals that are exhausted, scared,…" +12/06/2017,Actors,@AmyAcker,RT @DrLawyercop: Can see the smoke and fires from my home. Absolutely terrifying. Sending huge thanks to the amazing men and women of the #… +12/05/2017,Actors,@AmyAcker,"😊thanks, Skyler! https://t.co/uo40kVGsMD" +12/05/2017,Actors,@AmyAcker,Thank you Emma💚 https://t.co/s6akmbYbBu +12/05/2017,Actors,@AmyAcker,Thank you so much 😊 me too! https://t.co/UxOopiDinY +12/05/2017,Actors,@AmyAcker,"Yes, please! https://t.co/yYYkBu5iwN" +12/05/2017,Actors,@AmyAcker,Thank you all for making it such a wonderful birthday with all your lovely bday wishes! Sending my ❤️back! Thank you! +12/05/2017,Actors,@AmyAcker,Thank you all for watching @TheGiftedonFOX tonight with us! And thank you so much for all the Birthday wishes! ❤️❤️❤️ +12/05/2017,Actors,@AmyAcker,Oh @imcobybell why do you have to ruin all our plans? @TheGiftedonFOX #TheGifted +12/05/2017,Actors,@AmyAcker,They played a blooper reel this weekend. I managed not to fall even once. I feel like this is a real achievement… https://t.co/NCkhpsE8Ws +12/05/2017,Actors,@AmyAcker,This group scene every time we “moved out” we all kept running into each other. Everybody would change directions b… https://t.co/078y6MJ1it +12/05/2017,Actors,@AmyAcker,RT @kaymanchaos: @AmyAcker @TheGiftedonFOX Those strucker powers combined! That was a wicked effect!! Also polaris wrecked the guard. +12/05/2017,Actors,@AmyAcker,"Okay, I think Esme @SkylerSamuels might be up to something🤔 @TheGiftedonFOX #TheGifted" +12/05/2017,Actors,@AmyAcker,What?! We have the coolest mutant kids ever! @NatalieAlynLind @PercyHyneWhite +12/05/2017,Actors,@AmyAcker,The gang is all here. Watching @TheGiftedonFOX #TheGifted https://t.co/znTaY2y1z6 +12/04/2017,Actors,@AmyAcker,A new episode of @TheGiftedonFOX is on tonight! #TheGifted BTS watch to see @jamiechung1 badass driving skills https://t.co/maV6GcyLGV +11/30/2017,Actors,@AmyAcker,"RT @ActuallyNPH: Great news: my book @TheMagicMisfits debuted at #3 on the @nytimes Bestseller List! Huzzah! So get a copy or two quick, be…" +11/28/2017,Actors,@AmyAcker,RT @AgentsofSHIELD: Congrats to these heroes on 💯 episodes of #AgentsofSHIELD! 🎉🎉🎉 https://t.co/O30ll0ehNN +11/27/2017,Actors,@AmyAcker,RT @newscientist: Hearing implant uses lasers to shoot sound into your ear https://t.co/41gXssjQb9 https://t.co/ISvh0KR6wI +11/22/2017,Actors,@AmyAcker,RT @peoplestyle: The skirt @AmyAcker is loving right now is perfect for the holidays https://t.co/Lw5MP4AtQs https://t.co/17JpvcBrW2 +11/21/2017,Actors,@AmyAcker,Thanks for watching everyone @TheGiftedonFOX #TheGifted see you in 2 weeks! +11/21/2017,Actors,@AmyAcker,RT @ZahiraYdelise: Hell of a twist tonight on #theGifted I am definitely tuning in for the rest of the season @TheGiftedonFOX @GiftedTVWrit… +11/21/2017,Actors,@AmyAcker,"RT @SASSYAF28: Wait til Lauren, Andy and Caitlin find out omg @AmyAcker @NatalieAlynLind @TheGiftedonFOX #thegifted" +11/21/2017,Actors,@AmyAcker,I think we all know the answer to that 😉 https://t.co/YSMOcWm4am +11/21/2017,Actors,@AmyAcker,"RT @Cailie: @AmyAcker Funny enough, both me and my friend had flashbacks to a certain POI scene when you mentioned ""experimentation in coll…" +11/21/2017,Actors,@AmyAcker,🤔 https://t.co/sTKyEfc5H8 +11/21/2017,Actors,@AmyAcker,❤️ https://t.co/iZ3R7qpAoL +11/21/2017,Actors,@AmyAcker,RT @VanessaZuber1: @AmyAcker Holy voodoo mama juju - the gifted is on! Superpowers galore - super ready for this episode 👏🏼💥😎 #thegifted +11/21/2017,Actors,@AmyAcker,You might be on to something https://t.co/ZAQi8LNJC1 +11/21/2017,Actors,@AmyAcker,We’re excited https://t.co/MbTAYYK1yD +11/21/2017,Actors,@AmyAcker,Getting comfy to watch @TheGiftedonFOX @cxsiebs found his spot #TheGifted +11/21/2017,Actors,@AmyAcker,Hi @RachaelEHarris smokin up the screen on @LuciferonFOX love seeing you on the TV! +11/20/2017,Actors,@AmyAcker,Anyone looking for something awesome to do tomorrow night in NYC? Go check out @officialnikka at… https://t.co/U2GDWFkgwK +11/15/2017,Actors,@AmyAcker,Check out this exclusive clip with me and David Arquette - AMANDA & JACK GO GLAMPING now on VOD! https://t.co/zq3SsYxH9y +11/10/2017,Actors,@AmyAcker,"RT @brandon_dckrsn: Today!!! For your Friday Enjoyment #AmandaAndJackGoGlamping is 🎥+📺 !!! @DavidArquette @AmyAcker @adancanto +Watch. Rev…" +11/10/2017,Actors,@AmyAcker,@DavidArquette and @adancanto are SO FUNNY!! You can watch it today! @brandon_dckrsn #AmandaAndJackGoGlamping https://t.co/R4pMhUFtGd +11/09/2017,Actors,@AmyAcker,I’ll take a case:) https://t.co/fls8q4vzX6 +11/09/2017,Actors,@AmyAcker,Thanks @Spoilertv! So lucky to be included with such great company❤️ https://t.co/GiGzRtfTW6 +11/07/2017,Actors,@AmyAcker,"RT @brandon_dckrsn: My SAMApodcast Ep2 is up w the amazing @AmyAcker ! We talk AMANDA&JACK film + @TheGiftedonFOX and all things ""re"" http…" +11/07/2017,Actors,@AmyAcker,"RT @detectivdimpIes: @AmyAcker i really love this family dynamic, always supporting and helping each other no matter what 💕 https://t.co/7x…" +11/07/2017,Actors,@AmyAcker,I’m feeling very nervous for my whole TV family😬 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Caitlin in the script. I like when they call me Cate. #TheGifted @TheGiftedonFOX https://t.co/rwgraamZFj +11/07/2017,Actors,@AmyAcker,@NatalieAlynLind your so good! Sorry I interrupted your moment with #Wes. 💏 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,You can throw saw blades at me anytime @EmmaDumont #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,I guess destroying a federal building actually is good father/son bonding:) @smoyer #percyhyneswhite #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Who knew Eclipse @seanjteale could absorb light too! So cool #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,I guess that’s her superpower:) https://t.co/q6FaTHDDBL +11/07/2017,Actors,@AmyAcker,Lots of cool new Mutants this week! #Skyler #Wes @TheGiftedonFOX #TheGifted +11/07/2017,Actors,@AmyAcker,Everyone just asked @Blair_Redford what the Twitter was for his hair 😂 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Hello! Watching the show with these girls! #TheGifted @TheGiftedonFOX https://t.co/1cOiWJUwZ2 +11/06/2017,Actors,@AmyAcker,It’s Monday! thegiftedonfox is on tonight! #thegifted https://t.co/HdV9MQk1Zi +10/30/2017,Actors,@AmyAcker,We’ve got the fam back! A new thegiftedonfox tonight foxtv 9/8 central #thegifted https://t.co/sEMvxNELqY +10/30/2017,Actors,@AmyAcker,Thanks for having me! https://t.co/CWOgdQpSbx +10/29/2017,Actors,@AmyAcker,"Things you only say in TX “I have queso in my hair” ....it happens +#AFF2017 #glamping" +10/24/2017,Actors,@AmyAcker,Thanks so much for watching! Can’t wait for next week! @TheGiftedonFOX #TheGifted +10/24/2017,Actors,@AmyAcker,"It is fun when you can say “oh, yeah, I’ve done that before” 💉@TheGiftedonFOX #TheGifted https://t.co/1AmwyrC0A5" +10/24/2017,Actors,@AmyAcker,Holy moly! So much happening right now!😳 @TheGiftedonFOX #thegifted +10/24/2017,Actors,@AmyAcker,That would be a fun crossover! @TheGiftedonFOX #TheGifted https://t.co/30ZNHkNQZJ +10/24/2017,Actors,@AmyAcker,RT @SASSYAF28: Caitlin is letting Andy and Lauren help!!!!! @AmyAcker @NatalieAlynLind @TheGiftedonFOX #thegifted https://t.co/lS3h77qA1B +10/24/2017,Actors,@AmyAcker,🤞@TheGiftedonFOX #TheGifted https://t.co/ZItOG4dA2d +10/24/2017,Actors,@AmyAcker,For sure! @TheGiftedonFOX #TheGifted https://t.co/YjUsydoImQ +10/24/2017,Actors,@AmyAcker,Teamwork!! @NatalieAlynLind #Percy go Strucker kids! @TheGiftedonFOX #thegifted +10/24/2017,Actors,@AmyAcker,Can’t tell- spoiler! @TheGiftedonFOX #TheGifted https://t.co/0FLsdIM9Hr +10/24/2017,Actors,@AmyAcker,RT @FaithBek: With so much bs happening in the world... make yourself happy and watch #TheGifted. You won’t regret it. @AmyAcker @NatalieAl… +10/24/2017,Actors,@AmyAcker,Do breakfast burritos count? @TheGiftedonFOX https://t.co/KWFBY9zx6i +10/24/2017,Actors,@AmyAcker,Whatcha waitin’ for 😁@TheGiftedonFOX #thegifted https://t.co/IBWQjYMrZD +10/24/2017,Actors,@AmyAcker,Watching @TheGiftedonFOX with @NatalieAlynLind #TheGifted https://t.co/5zol0LwhPj +10/24/2017,Actors,@AmyAcker,Stunt driving? @TheGiftedonFOX #thegifted https://t.co/mgXLsAiIax +10/24/2017,Actors,@AmyAcker,"RT @horowitm: One hour away, East Coast fans of #thegifted Who’s watching?" +10/24/2017,Actors,@AmyAcker,Getting ready for #TheGifted! @TheGiftedonFOX +10/22/2017,Actors,@AmyAcker,What happened to the sequel? @DavidHaydnJones how are you? I feel like Christmas is early this year:) https://t.co/DNdqkhvC0B +10/19/2017,Actors,@AmyAcker,Go purple now to take a stand against bullying and support LGBTQ youth for #SpiritDay!… https://t.co/JSpYxWWBA1 +10/17/2017,Actors,@AmyAcker,@NatalieAlynLind @TheGiftedonFOX Bahaha! I ❤️ you @NatalieAlynLind +10/17/2017,Actors,@AmyAcker,Almost time for a new episode of #TheGifted I just got off a plane so I'll have to hear from you how it goes. Hope… https://t.co/fF6oklIfp1 +10/15/2017,Actors,@AmyAcker,Oops!! Sorry! Thank you E.J. https://t.co/0sBwwf399U +10/14/2017,Actors,@AmyAcker,Thanks for having me! It was so fun talking to you https://t.co/v3ATht1jpl +10/13/2017,Actors,@AmyAcker,RT @GiftedTVWriters: Happy #NationalComingOutDay from the #MutantUnderground. Live your truth. Tell your story. Never be afraid of who you… +10/13/2017,Actors,@AmyAcker,I love this- @EmmaDumont can be my teacher:) https://t.co/LCksVAJrhY +10/12/2017,Actors,@AmyAcker,"RT @GravitasVOD: ""@DavidArquette, @AmyAcker Comedy ‘Amanda & Jack Go Glamping’ Lands At Gravitas"" https://t.co/q6xaSItW8R via @DEADLINE" +10/10/2017,Actors,@AmyAcker,Hope you all enjoyed the show! Thanks so much for watching! See you next week for episode 3! @TheGiftedonFOX #TheGifted +10/10/2017,Actors,@AmyAcker,I had that same thought when I read this script! @TheGiftedonFOX #spinoff https://t.co/m4ZAVhOYqQ +10/10/2017,Actors,@AmyAcker,@jamiechung1 killing per usual! @TheGiftedonFOX https://t.co/n3y0lSzBnX +10/10/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: It's okay to bend the rules if it means saving a friend. #TheGifted https://t.co/Am7pbzolwY +10/10/2017,Actors,@AmyAcker,Thanks @MattNixTV and @thegiftedtvwriters for that!! @TheGiftedonFOX #thegifted https://t.co/JaCaLWyVcu +10/10/2017,Actors,@AmyAcker,We were so lucky to have the super cool and talented @LenWiseman directing this episode! @TheGiftedonFOX #thegifted +10/10/2017,Actors,@AmyAcker,RT @AnnWhite75: Excited to see @AmyAcker & Stephen Moyers. Great actors! Writing is excellent. If you like syfy you need to watch this! @… +10/10/2017,Actors,@AmyAcker,RT @SuperSopranoMeg: @AmyAcker your boyfriend...??? @smoyer I think that Amy and @seanjteale have something to tell you... 😶😳😯 #TheGifted +10/10/2017,Actors,@AmyAcker,This may be my favorite compliment that I've ever gotten! @TheGiftedonFOX #TheGifted https://t.co/ZURh7RFAsN +10/10/2017,Actors,@AmyAcker,How are you liking it so far? #TheGifted I was getting my cracked phone fixed:) @TheGiftedonFOX +10/10/2017,Actors,@AmyAcker,Almost time for @TheGiftedonFOX second episode! I hope you guys love it. #TheGifted +10/09/2017,Actors,@AmyAcker,"Hey, everybody! The 2nd episode of thegiftedonfox is tonight! foxtv 9/8central https://t.co/33n5ojBDmC" +10/09/2017,Actors,@AmyAcker,RT @seanjteale: Tonight on episode 2 of @TheGiftedonFOX Caitclipse is born! 9pm/8c on fox! I’m out of action this evening but normal servic… +10/08/2017,Actors,@AmyAcker,Thanks everyone! We had a blast spending the day at #NYCC with you today! @TheGiftedonFOX +10/08/2017,Actors,@AmyAcker,"We love you too, Hayley! https://t.co/nhurb2ehpF" +10/07/2017,Actors,@AmyAcker,Hello! Wish y'all were here with us https://t.co/MyN2iXhtm4 +10/07/2017,Actors,@AmyAcker,Yes! Will you be there? https://t.co/oBnWX8bN9w +10/03/2017,Actors,@AmyAcker,Thanks again 4 watching & thanks 2 everyone who made it happen @ShuDonner @brghtidea @MattNixTV @BryanSinger… https://t.co/NPME5Qy6MK +10/03/2017,Actors,@AmyAcker,@giftedtvwriters @MattNixTV congratulations! Can't wait for everyone to see what you all have planned! @TheGiftedonFOX #thegifted +10/03/2017,Actors,@AmyAcker,Thanks so much for watching with us!! @TheGiftedonFOX #thegifted see you next week! +10/03/2017,Actors,@AmyAcker,Get ready to watch @jamiechung1 save the day! @TheGiftedonFOX #thegifted +10/03/2017,Actors,@AmyAcker,"The are called #Sentinels scary, right? https://t.co/RfqjxAwab5" +10/03/2017,Actors,@AmyAcker,RT @NatalieAlynLind: @AmyAcker BTS... to Amy slamming my hand in the door.. Still love her ❤️ https://t.co/wrKgCpfwHL +10/03/2017,Actors,@AmyAcker,This made me laugh 😂 @TheGiftedonFOX https://t.co/7QRoETlZTx +10/03/2017,Actors,@AmyAcker,RT @MoMoneyDollas: #TheGiftedonFOX had me hooked after the first 2 minutes. Doesn’t hurt that Vampire Bill & Winifred Burkle are in it! @Am… +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/jiLV6KkFrl +10/03/2017,Actors,@AmyAcker,Right!?! So cool! https://t.co/EOZxt7lTGA +10/03/2017,Actors,@AmyAcker,I kinda like being a human in a mutant world @TheGiftedonFOX #TheGifted https://t.co/8VCj88AHfj +10/03/2017,Actors,@AmyAcker,I'm afraid it will be past my bedtime. Working tomorrow https://t.co/hfa1iYDiMq +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/4blGUkvCxK +10/03/2017,Actors,@AmyAcker,RT @negative_purple: @Mandama004 @AmyAcker @TheGiftedonFOX Amanda! I “blinked” and almost missed that you’re online - I tried your puns but… +10/03/2017,Actors,@AmyAcker,Thanks! We can carpool to work if you want! https://t.co/SWMvyHBRxZ +10/03/2017,Actors,@AmyAcker,RT @negative_purple: Hi can I have a scene where Caitlin interacts with the dog bc it would be so pure and I NEED it #TheGifted @AmyAcker @… +10/03/2017,Actors,@AmyAcker,RT @seanjteale: Jefe we miss you https://t.co/F5ugZoertv +10/03/2017,Actors,@AmyAcker,This is delayed but I was reminded I accidentally slammed @natliealynlind hand in the door in the scene where we le… https://t.co/KyHBIJKj1d +10/03/2017,Actors,@AmyAcker,"RT @Amy_R00T: @AmyAcker @TheGiftedonFOX Me too, so I can teleport to comic con and finally meet you ^^" +10/03/2017,Actors,@AmyAcker,I think the final action sequence @TheGiftedonFOX #thegifted https://t.co/J1P85Ehs3r +10/03/2017,Actors,@AmyAcker,Hello! Hope you are great! I will be so impressed if you never complain again!! LMK https://t.co/NPwfy8bmKX +10/03/2017,Actors,@AmyAcker,RT @ThomasWerstein: Don't mess with Momma Strucker @AmyAcker @NatalieAlynLind Percy Hynes White @TheGiftedonFOX #TheGifted https://t.co/jhA… +10/03/2017,Actors,@AmyAcker,Probably teleportation @TheGiftedonFOX #TheGifted https://t.co/2cA7hMO5IA +10/03/2017,Actors,@AmyAcker,Trying this again- This trio makes me 😄@seanjteale @EmmaDumont @Blair_Redford who wouldn't want these three Mutant… https://t.co/v20IPhskIj +10/03/2017,Actors,@AmyAcker,The great cast and crew! @TheGiftedonFOX #TheGifted https://t.co/lPWKZP1YW9 +10/03/2017,Actors,@AmyAcker,Let's talk about @cobybell -and how incredible he is- The nicest guy I know playing the baddy on our show #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,We got to shoot in Dallas where I grew up and my parents live! @TheGiftedonFOX #TheGifted https://t.co/Q91yYEjKTD +10/03/2017,Actors,@AmyAcker,😱👝💉👨‍👩‍👧‍👦🏃‍♀️😡 @TheGiftedonFOX #TheGifted https://t.co/mLIpfL1zNp +10/03/2017,Actors,@AmyAcker,RT @ang5826: @AmyAcker @TheGiftedonFOX Watching!!!! Just as good the second time around ;) +10/03/2017,Actors,@AmyAcker,❤️❤️❤️ https://t.co/ktPWpmaSBe +10/03/2017,Actors,@AmyAcker,😬 https://t.co/SiITC7ZwZ2 +10/03/2017,Actors,@AmyAcker,RT @lo_206: @AmyAcker @TheGiftedonFOX I haven't seen my girlfriend @FaithBek this excited for tv since the finale of poi. Thanks for making… +10/03/2017,Actors,@AmyAcker,RT @giftedClaire: @AmyAcker @EmmaDumont @TheGiftedonFOX Lol “Who hasn’t been in a cage?” That’s hot!!! +10/03/2017,Actors,@AmyAcker,I went to a huge high school with dances like this but this was @NatalieAlynLind and #percyhyneswhite first dance! #thegifted @NewYorker +10/03/2017,Actors,@AmyAcker,@percyhyneswhite! You are so great! Follow Percy on Instagram. He blows me away with his talent on screen and off!… https://t.co/7xXQUM1eyK +10/03/2017,Actors,@AmyAcker,@EmmaDumont killing this scene in a cage- I feel like I know your pain girl- this may be the first part I'm not the… https://t.co/Q8RDaKhkT4 +10/03/2017,Actors,@AmyAcker,"How gorgeous is @NatalieAlynLind would you believe she as equally as smart, loving and talented?!? #thegifted… https://t.co/G95WjirgCz" +10/03/2017,Actors,@AmyAcker,Sending you our ❤️! https://t.co/Elu7gUe8di +10/03/2017,Actors,@AmyAcker,"I have the best tv family:) So lucky to get to act with @stephenmoyer. He's funny, super intelligent, kind, and jus… https://t.co/oYoRrKyia6" +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/3s54ktEe8V +10/03/2017,Actors,@AmyAcker,@Blair_Redford is going to be the prettiest one in every scene. We all should come to terms with it now:) Thunderbi… https://t.co/gg1VX8ejLZ +10/03/2017,Actors,@AmyAcker,This trio makes me 😄@seantealle @emmadumont @blairredford who wouldn't want these three Mutants as their besties! #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,GO @jamiechung1 ! She is so fantastic! Blink ☔️💜💜💜 #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,Here we go! @TheGiftedonFOX starts now! #TheGifted +10/03/2017,Actors,@AmyAcker,Whatching @LuciferonFOX and getting ready for @TheGiftedonFOX coming up next! #TheGifted https://t.co/ZMKv9s6tZK +10/02/2017,Actors,@AmyAcker,Hey everybody! @TheGiftedonFOX starts tonight! I'll be live tweeting with the cast at 9pm EST we can't wait for you… https://t.co/Sp9y1FPz4i +09/25/2017,Actors,@AmyAcker,"#Repost thegiftedonfox (get_repost) +・・・ +Family is the ultimate power. Join @AmyAcker and… https://t.co/0ztr8Sv6Cl" +09/24/2017,Actors,@AmyAcker,So happy to spend the day w/ @NatalieAlynLind @ the Grove for @TheGiftedonFOX We'll be there at 1pm if anyone is in LA and wants to say Hi! +09/23/2017,Actors,@AmyAcker,"RT @IGN: Join us LIVE this Monday at 11am PT / 2pm ET for a Q&A w/ @TheGiftedonFOX cast, plus an exclusive clip! + +MORE: https://t.co/ZEvPj6…" +09/13/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Get ready LA! Be the first to see a free screening of #TheGifted TOMORROW: https://t.co/7T04vmT5A6 https://t.co/kCJQFGV… +09/11/2017,Actors,@AmyAcker,"RT @TheGiftedonFOX: Welcome to #TheGifted family, @garretdillahunt! ✖️ https://t.co/CL2RcO9omu" +09/05/2017,Actors,@AmyAcker,I wish I did! https://t.co/IAD7ezJbGM +09/04/2017,Actors,@AmyAcker,So excited for you and the new baby!! https://t.co/6oI9ujSrUt +09/02/2017,Actors,@AmyAcker,thegiftedonfox's photo https://t.co/3CJADi0Kh7 One Month to go! +08/29/2017,Actors,@AmyAcker,What a fun night! I'm so happy you are in ATL too! Happy Birthday @jaugustrichards https://t.co/k3NoUP5ykO +08/29/2017,Actors,@AmyAcker,"RT @Mandama004: Can't wait to see you you again, @AmyAcker! As long as you get away from Sentinel Services.... https://t.co/OvTo528GIZ" +08/29/2017,Actors,@AmyAcker,RT @johnthemcnamara: Hey #Magicians. Here are a few ways we can help Texas and Louisiana. Please do -- and retweet! Abracadabra. https… +08/29/2017,Actors,@AmyAcker,RT @brghtidea: Great contest for all of you artistic fans of @TheGiftedonFOX https://t.co/V31cMNW7p0 +08/23/2017,Actors,@AmyAcker,Congratulations @brandon_dckrsn @DavidArquette and everyone involved! Hope to see y'all there! https://t.co/xJk3k5E0Xr +08/21/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: .@seanjteale is eclipsing our Instagram tomorrow! Make sure you follow #TheGifted now: https://t.co/rWT3QIUJJy #Eclipse… +08/17/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Well look who it is! Pick up a copy of @TVGuideMagazine this week to see your favorite #TheGifted stars grace the cover… +08/09/2017,Actors,@AmyAcker,RT @DEADLINE: ‘The Blacklist’ Casts James Carpinello; Ruffin Prentiss Joins ‘The Arrangement’ https://t.co/i4gdNwf60r https://t.co/uJEICZmy… +08/09/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: There's no power stronger than family. #TheGifted premieres October 2 on FOX. https://t.co/rYhYkaVENC +08/08/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Don't mess with these two! 👊 @smoyer and @imcobybell are killing it at #FOXTCA. #TheGifted https://t.co/ty1TEO7BV4 +08/04/2017,Actors,@AmyAcker,Y'all know I love @RavenAndLily here is my friend Kirsten on CNN!!Conscious Consumerism - CNN Video https://t.co/JohPA6xKED +07/29/2017,Actors,@AmyAcker,RT @TVLine: Fall TV 2017: Your Handy Calendar of 100+ Season and Series Premiere Dates https://t.co/Ajl3zz7z0e https://t.co/8gdfRqgcTZ +07/25/2017,Actors,@AmyAcker,"@widgetfactoryco @addellum @SummerBishil1 Love you, Fishy!!" +07/22/2017,Actors,@AmyAcker,Thanks for a great day at SDCC! So excited about @TheGiftedonFOX see you tomorrow! +07/13/2017,Actors,@AmyAcker,"@brghtidea @TheGiftedonFOX Derek, YOU are the best! Can't wait to start shooting! #TheGifted @TheGiftedonFOX" +07/01/2018,Actors,@sarahshahi,It’s a great ep https://t.co/VJv1sVE3BC +07/01/2018,Actors,@sarahshahi,Can’t stop watching @CobraKaiSeries 🤼‍♂️( karate emoji needed stat) +07/01/2018,Actors,@sarahshahi,😂😂 love you roomie https://t.co/lxLQvEHKxK +07/01/2018,Actors,@sarahshahi,HAHAHAHAHAHAHHA! That’s the best thing I’ve heard yet https://t.co/q30h39N61s +06/29/2018,Actors,@sarahshahi,Couldn’t agree more https://t.co/gIwBKNSc9P +06/29/2018,Actors,@sarahshahi,"RT @Mortonopoulis: After 7 years sober, it’s F-ing nice to finally get a statement from a jury that has neither fines nor jail time. @Serie…" +06/28/2018,Actors,@sarahshahi,Me too. lol https://t.co/g5D82ffkLR +06/28/2018,Actors,@sarahshahi,❤️🙏🏼 https://t.co/aG0Sw0Wzsh +06/28/2018,Actors,@sarahshahi,"Kids! +Shoot! Ok I’m ready to tweet... what did I miss #reverie" +06/28/2018,Actors,@sarahshahi,This log cabin is my interior dream come true +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/SGlnefenox +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/SiULq5F8l7 +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/zFHt0yjx78 +06/28/2018,Actors,@sarahshahi,Whoa 😮 #reverie +06/28/2018,Actors,@sarahshahi,Hahha..: #reverie https://t.co/AAyqTvG8fq +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/MjEkfBjdU9 +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/PjSsS3peHv +06/28/2018,Actors,@sarahshahi,This actress brought it take after take... she was so good and just wait til what she does later #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/6FKJULXeeX +06/28/2018,Actors,@sarahshahi,Yes me too!!! #reverie https://t.co/9YfKi4nrmC +06/28/2018,Actors,@sarahshahi,Bacon 🥓 burgers are here #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/4zTgbTj2Kn +06/28/2018,Actors,@sarahshahi,Me and jess #reverie https://t.co/XivxAvv7IK +06/28/2018,Actors,@sarahshahi,Haha!! Uber eats is bringing bacon burgers 🍔 #reverie https://t.co/fmpR6bQW6r +06/28/2018,Actors,@sarahshahi,#reverie!! https://t.co/3npoyR1CGt +06/28/2018,Actors,@sarahshahi,These kids are killing me #Reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/lOBF2HqDwd +06/28/2018,Actors,@sarahshahi,#Reverie https://t.co/q07Jpz6eqs +06/28/2018,Actors,@sarahshahi,Love doing scenes w everyone bc I never got to see them #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/PDXxYwx5TQ +06/28/2018,Actors,@sarahshahi,Multiple uses for #reverie +06/28/2018,Actors,@sarahshahi,Thank you 🙏🏼#reverie https://t.co/nowwTKgujF +06/28/2018,Actors,@sarahshahi,Why do I always feel like I’m in trouble #reverie +06/28/2018,Actors,@sarahshahi,BOOM #REVERIE +06/28/2018,Actors,@sarahshahi,Tweeting!!!! #reverie @NBCReverie https://t.co/QZaJHMlJj3 +06/27/2018,Actors,@sarahshahi,Yeaaaaaaa https://t.co/D9fv2FEFvY +06/27/2018,Actors,@sarahshahi,RT @NBCReverie: Mind over matter. #Reverie https://t.co/MIDd4WjNcI +06/27/2018,Actors,@sarahshahi,Hahahah!! All new @NBCReverie reverie TONIGHT #Reverie https://t.co/Xrh7kCLBmb +06/25/2018,Actors,@sarahshahi,Wednesday!!!!! https://t.co/zHUxwnOnlH +06/25/2018,Actors,@sarahshahi,Love you sister https://t.co/QyKgIhT5V7 +06/22/2018,Actors,@sarahshahi,"RT @nbc: You already know #Reverie is high tech. #NationalSelfieDay + +🤳: @sarahshahi https://t.co/eLPRUfNyO5" +06/22/2018,Actors,@sarahshahi,RT @BethRiesgraf: #FamiliesBelongTogther I just pledged to hold our representatives accountable for voting on the wrong side of history. Jo… +06/21/2018,Actors,@sarahshahi,You’re heart could be mistaken for warming up.. ❤️ https://t.co/DVYbF3eW6J +06/21/2018,Actors,@sarahshahi,YESSSS https://t.co/VTiqceu0mu +06/21/2018,Actors,@sarahshahi,Bc it was asked- these are the two books I’m reading. And Wolf bought Wrinkle at his book fair for me for Mother’s… https://t.co/HYEtjzkyJA +06/21/2018,Actors,@sarahshahi,Me too!! Can’t wait!! #reverie https://t.co/63RImTqGrs +06/21/2018,Actors,@sarahshahi,Thank you!! #reverie https://t.co/C3CYGG69aT +06/21/2018,Actors,@sarahshahi,Everyone wants purple hair #reverie https://t.co/H3oKq0lE3e +06/21/2018,Actors,@sarahshahi,Ha! #reverie https://t.co/H3oKq0lE3e +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/rzjtLHPunO +06/21/2018,Actors,@sarahshahi,Thank you so much for tweeting w us tonight! We trended AGAIN! And I’m honored and humbled to be in your homes week… https://t.co/nmfXXQh5eW +06/21/2018,Actors,@sarahshahi,Maybe we could watch together!! #reverie https://t.co/GZAf6jUVAn +06/21/2018,Actors,@sarahshahi,lol.YES! #reverie https://t.co/UOBOE2eg46 +06/21/2018,Actors,@sarahshahi,YES! Thank you!! Get your whole crew ! #reverie https://t.co/Axnw2OmI7o +06/21/2018,Actors,@sarahshahi,Thank you!!! ❤️❤️ #reverie https://t.co/yoRWmMNYMj +06/21/2018,Actors,@sarahshahi,❤️❤️💋💋 #reverie https://t.co/hsgQpFpiZ4 +06/21/2018,Actors,@sarahshahi,🙏🏼🙏🏼 #reverie https://t.co/KatiqEiqLw +06/21/2018,Actors,@sarahshahi,Oh keep watching! You have no idea!!!!! #reverie https://t.co/Z9Op9bUoSn +06/21/2018,Actors,@sarahshahi,🙌🏼🙌🏼🙌🏼 #reverie https://t.co/aFKS3v8JfS +06/21/2018,Actors,@sarahshahi,And that’s what we intend to do- give you an escape. Maybe connect you with something a little deeper than normal.… https://t.co/mtnf6b6jag +06/21/2018,Actors,@sarahshahi,Oh yea. 4-10 are homeruns #reverie https://t.co/qTZKWoABvX +06/21/2018,Actors,@sarahshahi,🙂🙂 honored by your words #reverie https://t.co/7uXvQ68zEx +06/21/2018,Actors,@sarahshahi,Oooff.. it will be explored... #reverie https://t.co/8tEgKwiRV7 +06/21/2018,Actors,@sarahshahi,Oh no! Tons of spoilers #reverie https://t.co/ekS02KDqYn +06/21/2018,Actors,@sarahshahi,Yaya! Yes! #reverie https://t.co/XskRsCtSwd +06/21/2018,Actors,@sarahshahi,Thank you! #reverie https://t.co/evDYSBIT7I +06/21/2018,Actors,@sarahshahi,Yes!!! #reverie https://t.co/dtfznULhiN +06/21/2018,Actors,@sarahshahi,Haha! Hope up have coffee #reverie https://t.co/5timkngK27 +06/21/2018,Actors,@sarahshahi,Universe... #reverie https://t.co/mzl7rybv20 +06/21/2018,Actors,@sarahshahi,My mother thought I looked like a nun in this shirt. She didn’t like it. Lol I did! #reverie +06/21/2018,Actors,@sarahshahi,Yea!!!!! #reverie https://t.co/zc1tZGfzLz +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/MSnZDHz4KA +06/21/2018,Actors,@sarahshahi,Excellent. I’m tweeting with you. Uou? #reverie https://t.co/bMCC5nY8f9 +06/21/2018,Actors,@sarahshahi,I know! Just can’t get away from it #reverie https://t.co/NaBIJMCXCe +06/21/2018,Actors,@sarahshahi,Thank god theres 6 more #reverie https://t.co/rrJU9GDeFf +06/21/2018,Actors,@sarahshahi,Oh it’s not as bad as your thinking #reverie +06/21/2018,Actors,@sarahshahi,Come on Glenn!! #reverie +06/21/2018,Actors,@sarahshahi,Oh yea! I forgot! #reverie https://t.co/q3WNYGjHCf +06/21/2018,Actors,@sarahshahi,Thank god for the smurfs... twins leaving me alone #reverie +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/8nlXlieyVT +06/21/2018,Actors,@sarahshahi,:) #reverie https://t.co/Cb1hn9aZN3 +06/21/2018,Actors,@sarahshahi,Def not #reverie https://t.co/CyiagXmlLj +06/21/2018,Actors,@sarahshahi,:) thank you! 🙏🏼 #reverie https://t.co/Vzuy3EVYS2 +06/21/2018,Actors,@sarahshahi,You’ve got good taste Chris #reverie https://t.co/s1gyLhdXXL +06/21/2018,Actors,@sarahshahi,Hahah... I love Lucy. #reverie https://t.co/RZkCe7mh4z +06/21/2018,Actors,@sarahshahi,Haha... exactly. Gulp... uhhh... #reverie https://t.co/TCvYjVBDTJ +06/21/2018,Actors,@sarahshahi,I’d be scared... #reverie https://t.co/aBHdZrdTqN +06/21/2018,Actors,@sarahshahi,Hey gurl... #reverie https://t.co/RtkLazTW5C +06/21/2018,Actors,@sarahshahi,Yes!! #reverie https://t.co/MVY9xA15KE +06/21/2018,Actors,@sarahshahi,Mickey!!! #reverie https://t.co/40noYPIeV6 +06/21/2018,Actors,@sarahshahi,Dennis!!! I miss you #reverie https://t.co/tFWzdSPXbu +06/21/2018,Actors,@sarahshahi,Yea- what she said #reverie https://t.co/fCYub32h8Q +06/21/2018,Actors,@sarahshahi,#davidrogers did such an amazing job with the physicality of his condition. I asked him to be my coach if I ever ne… https://t.co/ON7ug064Zk +06/21/2018,Actors,@sarahshahi,Nobody wanted to step onto set it was so hot #reverie +06/21/2018,Actors,@sarahshahi,Ugh🤪 #reverie https://t.co/7Wwm6W0Wrr +06/21/2018,Actors,@sarahshahi,I felt like an idiot jumping down that hall. I cracked up every time #reverie +06/21/2018,Actors,@sarahshahi,How tiny is @kathrynmorris and a mother of TWINS!? #reverie +06/21/2018,Actors,@sarahshahi,#reverie Wednesday!!!! https://t.co/fXSZ6uLjwO +06/21/2018,Actors,@sarahshahi,Oh thank you! All this talk of POI is making me nostalgic #reverie https://t.co/Q9W2Grcini +06/21/2018,Actors,@sarahshahi,Yes. Lots of truth there #reverie https://t.co/p5FWyvESYt +06/21/2018,Actors,@sarahshahi,San Antonio!! What’s up!! Thank you! #reverie https://t.co/XEiKWbKdwS +06/21/2018,Actors,@sarahshahi,🙂🙂🙂😌😌😌 and there’s so much more to come. Thank you. #reverie https://t.co/FqV7LhO6tz +06/21/2018,Actors,@sarahshahi,Do you sell your 🔮? #reverie https://t.co/jeEAraW9EE +06/21/2018,Actors,@sarahshahi,Yaya! Thank you so much! #reverie https://t.co/hLwIjSzLPX +06/21/2018,Actors,@sarahshahi,#David Rogers you are crushing. U are heartbreaking #reverie +06/21/2018,Actors,@sarahshahi,Lol. I didn’t even notice that #Reverie https://t.co/vpFfD80AQs +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/tPGOXtPu7x +06/21/2018,Actors,@sarahshahi,Omg! It was so blisteringly hot when we shot this!!! Ahhhhhhh!! Like we were all melting #reverie +06/21/2018,Actors,@sarahshahi,She’s so amazing. @JessicaLu is so warm and loving. That’s how good she is. #reverie https://t.co/n8OtkorHkc +06/21/2018,Actors,@sarahshahi,Yup yup #reverie https://t.co/tQajsjYn2j +06/21/2018,Actors,@sarahshahi,I’ve known @Sendhil_Rama since Heroes and Life but this is our first time working together! #reverie +06/21/2018,Actors,@sarahshahi,Love doing scenes w my fellow Texas @Sendhil_Rama #reverie +06/21/2018,Actors,@sarahshahi,🙂🙂🙂🙂🙂🙂 #reverie https://t.co/LYyI6AEYoG +06/21/2018,Actors,@sarahshahi,Oh it’s our pleasure. We want to touch people and tell their stories. Your stories are our stories #reverie https://t.co/GC8klGXXiN +06/21/2018,Actors,@sarahshahi,Like how you think #reverie https://t.co/2EsYQK9KMr +06/21/2018,Actors,@sarahshahi,Haha! Yes I know right! #reverie https://t.co/rAyZkorF2r +06/21/2018,Actors,@sarahshahi,Yayay! Trending again! Nice Guys #reverie +06/21/2018,Actors,@sarahshahi,Haha... it is a challenge keeping he and I in the same frame. Some boxes were involved #reverie https://t.co/VUqxKRdz3w +06/21/2018,Actors,@sarahshahi,Thank you! 😌😌😌 #reverie https://t.co/WBS8gZxKkX +06/21/2018,Actors,@sarahshahi,Thank you! I love working w @MickeyFisher73 and want to forever #reverie he’s one of the best humans I’ve ever met https://t.co/9twBOvZvL3 +06/21/2018,Actors,@sarahshahi,"What are you thinking of the ep so far? +#reverie" +06/21/2018,Actors,@sarahshahi,Lots to learn in that sense. #reverie https://t.co/HeyOFUjfLb +06/21/2018,Actors,@sarahshahi,Thank you!! ❤️❤️❤️❤️ #reverie https://t.co/4i7QChQST0 +06/21/2018,Actors,@sarahshahi,Shot this in Los feliz which is one of my fave little communities. Want to move back there! #reverie +06/21/2018,Actors,@sarahshahi,Lol #okra #reverie https://t.co/rAmCIetpgA +06/21/2018,Actors,@sarahshahi,Shave it #reverie https://t.co/bB5BTVA5R8 +06/21/2018,Actors,@sarahshahi,#reverie!! YAYAYAYA!! Keep #reverie in your tweets!! https://t.co/kPSUcVadGT +06/21/2018,Actors,@sarahshahi,Yes they can #reverie https://t.co/qUjxdwc3Em +06/21/2018,Actors,@sarahshahi,Love how you caught that #reverie https://t.co/KiItASG0pY +06/21/2018,Actors,@sarahshahi,I’m honored #reverie ❤️ https://t.co/LYyI6AEYoG +06/21/2018,Actors,@sarahshahi,Exactly #reverie https://t.co/G5X53H1xid +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/T8Int4B0Fa +06/21/2018,Actors,@sarahshahi,Oh and they’re not telling me the truth #reverie https://t.co/5gyZahUYAC +06/21/2018,Actors,@sarahshahi,Haha!! I want to cut it #reverie https://t.co/cn0STW1JqZ +06/21/2018,Actors,@sarahshahi,Oh snap @DennisHaysbert #reverie +06/21/2018,Actors,@sarahshahi,I agree. And jus let keep watching #reverie https://t.co/oVjwxGiKE4 +06/21/2018,Actors,@sarahshahi,Thank you!!! Xox #reverie https://t.co/xKyef5QUUQ +06/21/2018,Actors,@sarahshahi,Oh I’m so happy to hear that! Thank you! #reverie https://t.co/B6EVUJgmsr +06/21/2018,Actors,@sarahshahi,The hardest word I’ve ever had to learn #reverie https://t.co/nLJekKP0Nq +06/21/2018,Actors,@sarahshahi,Ahhh!! Big virtual hugs! #Reverie https://t.co/MeEJyiKeVC +06/21/2018,Actors,@sarahshahi,Hmm... re reading ONENESS right now. It’s like my bible #reverie https://t.co/l6GHllfx4Y +06/21/2018,Actors,@sarahshahi,The magic realism of the show was so much fun to play!!! I still believe in magic #reverie +06/21/2018,Actors,@sarahshahi,Yo! You’re hired! #reverie https://t.co/NGi80S6l4z +06/21/2018,Actors,@sarahshahi,Thank you so much . Glad you like! #reverie https://t.co/KDBXBsOMLh +06/21/2018,Actors,@sarahshahi,Thank you!!! Thx mom #reverie https://t.co/33y14GsZQJ +06/21/2018,Actors,@sarahshahi,Anteroom was one of my fave sets to shoot bc it was filled w books. I could go broke buying books #reverie +06/21/2018,Actors,@sarahshahi,TONS!! Lol. Mara must have 3 kids we don’t know about #reverie https://t.co/1wxrTfIJ06 +06/21/2018,Actors,@sarahshahi,David Rogers is married to one of my bff’s @SallyPressman !! He’s so fantastic! #reverie +06/21/2018,Actors,@sarahshahi,Oh thank you! #reverie https://t.co/n5z7HEWSez +06/21/2018,Actors,@sarahshahi,Can Mara trust Charlie!!!?? 😜 #reverie https://t.co/YBx4gONzR2 +06/21/2018,Actors,@sarahshahi,Not at all!! #reverie https://t.co/aIgIav6la3 +06/21/2018,Actors,@sarahshahi,Right!! Oh but it DOESSSSS #Reverie https://t.co/dlHUG319xf +06/21/2018,Actors,@sarahshahi,#reverie lol https://t.co/n6Bi1kj63i +06/21/2018,Actors,@sarahshahi,Yup #reverie https://t.co/tFhwVs0aSj +06/21/2018,Actors,@sarahshahi,Corky’s in Burbank!! #reverie https://t.co/zshGXshvyB +06/21/2018,Actors,@sarahshahi,Thank you so much!! #reverie https://t.co/mDeLx2SHVS +06/21/2018,Actors,@sarahshahi,Please #reverie in your tweets! Let’s trend again! https://t.co/mLFMw2oMQK +06/21/2018,Actors,@sarahshahi,Thank you!! #reverie! Please #reverie in your tweets! https://t.co/95hSjqDqVH +06/21/2018,Actors,@sarahshahi,I ate more than he did in between takes! #reverie https://t.co/Jio5ic9TF7 +06/21/2018,Actors,@sarahshahi,@RealJonFletcher YES SO HAPPY YOURE ON THE SCREEEEENNNNNN #reverie +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/SgTgJPgaq5 +06/21/2018,Actors,@sarahshahi,Yes yes #reverie https://t.co/23ezjteMSw +06/21/2018,Actors,@sarahshahi,I was crying because I really wanted his fries #Reverie +06/21/2018,Actors,@sarahshahi,😅 #REVERIE https://t.co/oU9Y8H6CE4 +06/21/2018,Actors,@sarahshahi,It was really hard not to eat his fries. #reverie +06/21/2018,Actors,@sarahshahi,Ok!! @Sendhil_Rama and I ready!!! #reverie https://t.co/n8RFUnnK32 +06/21/2018,Actors,@sarahshahi,Snack of choice for live tweeting #reverie what’s yours? https://t.co/FmEsQgO9rV +06/21/2018,Actors,@sarahshahi,Live tweeting in 20!! #reverie shit gets dark starting this week!! You won’t wanna miss!! +06/21/2018,Actors,@sarahshahi,Thank you! https://t.co/WJkIG6EKQk +06/21/2018,Actors,@sarahshahi,Thank you!!! #reverie https://t.co/6YI2DznHjG +06/21/2018,Actors,@sarahshahi,I miss you!!!! And I can’t wait for everyone to see how much you add and how AMAZING YOU ARE!! #Reverie https://t.co/DFN8xlmStr +06/21/2018,Actors,@sarahshahi,A million kisses to everyone who joined in the q and a !! And a million more for watching #reverie TONIGHT on @nbc… https://t.co/pzIoxeHwzg +06/20/2018,Actors,@sarahshahi,#reverie tonight! https://t.co/fyiuyo2fP7 +06/20/2018,Actors,@sarahshahi,Love your method #reverie https://t.co/aDGdV2aZHY +06/20/2018,Actors,@sarahshahi,🙂🙂🙂 #reverie https://t.co/mTzHxiDnZB +06/20/2018,Actors,@sarahshahi,Tonight! #reverie #reveriewednesdays https://t.co/xkPMkk5Cs1 +06/20/2018,Actors,@sarahshahi,Yes yes yes!!!!! We’ll be live tweeting! And this is one of my fave episodes!!! #reverie https://t.co/d2kiQxCOlY +06/20/2018,Actors,@sarahshahi,Ya girl!!!!! Xox#reverie https://t.co/s10cOq0dyF +06/20/2018,Actors,@sarahshahi,I’ll see ya there!! #reverie https://t.co/rCqhisthTK +06/20/2018,Actors,@sarahshahi,Yes!!! Today is #reverie wed!! I’ll be doing a “ q and a” today on @NBCReverie instagram page at 4 (West coast time… https://t.co/BYPrXhHvmc +06/20/2018,Actors,@sarahshahi,WOWOWWOOWOW! Thank you so much!! 🙏🏼 #reverie tomorrow night!! https://t.co/9S8330v3gA +06/20/2018,Actors,@sarahshahi,TOMORROW https://t.co/mOWfKuwSTC +06/19/2018,Actors,@sarahshahi,🙏🏼🙏🏼 #reverie https://t.co/JhWOHIwhiu +06/19/2018,Actors,@sarahshahi,Much oblige!! 🙏🏼#reverie https://t.co/r6dJNXnPy1 +06/19/2018,Actors,@sarahshahi,Thank you!! Tomorrow 9/10 pm on @nbc !! https://t.co/fF7eJx3k9k +06/19/2018,Actors,@sarahshahi,Who can YOU trust!!!!?? The fun is just about to begin... https://t.co/9AscJwbhQa +06/19/2018,Actors,@sarahshahi,Yes @RokuPlayer !!! https://t.co/P8ZLr1lduR +06/16/2018,Actors,@sarahshahi,Thank you!! Xo https://t.co/DiBTy8YXis +06/15/2018,Actors,@sarahshahi,"RT @JessicaLu: You all make me so happy! 🤗 Thanks for watching #REVERIE live with us each week, we’ve all worked so hard to make this magic…" +06/15/2018,Actors,@sarahshahi,😘😘 https://t.co/wpPFMac4P3 +06/15/2018,Actors,@sarahshahi,Only to breathe ;) https://t.co/w5vIJxFAO7 +06/15/2018,Actors,@sarahshahi,"RT @jen_st0ne: Ooooooook that cliffhanger, though?! Excuse me?? To my face?? You’re gonna do that right here at my face?? ✋🏼 Rude. +(But hon…" +06/15/2018,Actors,@sarahshahi,"RT @RalphGarman: Friday's THE RALPH REPORT! Top ten FATHER'S DAY movies, as well as the NEW films in theaters! UK correspondent, @steveasht…" +06/14/2018,Actors,@sarahshahi,Thank you!!! #reverie https://t.co/hckdhwoKCo +06/14/2018,Actors,@sarahshahi,"RT @TheRealJBaxter: @sarahshahi Hey Sarah love your new show Reverie 👍 it’s fascinating and scary, that someday in the near future this cou…" +06/14/2018,Actors,@sarahshahi,Thank you so much. The show continues to amaze. Wait til next week!! #reverie https://t.co/qWz60cwZBu +06/14/2018,Actors,@sarahshahi,Wohhoooo!! Thank you 🙏🏼 https://t.co/c80oafAEGS +06/14/2018,Actors,@sarahshahi,"Thank you so much!! And trust me, starting next week— it’s about to get even more INSTENSE! Keep watching #reverie https://t.co/5EwgHOuNtN" +06/14/2018,Actors,@sarahshahi,Correct!!! Keep watching #reverie https://t.co/zQlrntP1W7 +06/14/2018,Actors,@sarahshahi,Omg. I’m so happy #MPRaccoon is safe +06/29/2018,Actors,@TherealTaraji,"OMGGGGGG!!! mildsaucela brought Chicago to LA!!! Please do yourselves a favor and come get some of this chicken, sh… https://t.co/hw1H5rSYh7" +06/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @tarhondajay +・・・ +Season 5!!!!! SAVE THE DATE September 26th #Empire @empirefox 🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿 https://t.co/DI67NIGBCD" +06/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +There only one thing to do with a man that lies. tarajiphenson tells it like it is in… https://t.co/yMM5krvReF" +06/24/2018,Actors,@TherealTaraji,Proud of my Lil cousin @THenn24 joining the #nebraskacornhuskers #CornerBack following in his big cuz kelvinhayden… https://t.co/wwWnHzvE1c +06/21/2018,Actors,@TherealTaraji,💔💔💔 #Repost mic https://t.co/d5neBSkIXc +06/17/2018,Actors,@TherealTaraji,And that’s a wrap on #WhatMenWant OMG I CAN NOT… https://t.co/NCZ51paqaQ +06/15/2018,Actors,@TherealTaraji,So much fun with these beautiful ladies. My… https://t.co/Ne1PUzaEo2 +06/13/2018,Actors,@TherealTaraji,"Y’all, Look who I get to play with!!! Queen… https://t.co/uara0xNLqM" +06/12/2018,Actors,@TherealTaraji,"🙏🏾💋💋💋 #Repost acrimonymovie +・・・ +Oh yes she did.… https://t.co/jXzebj8ssJ" +06/07/2018,Actors,@TherealTaraji,#Tbt #classic this ish still slaps @LilKim… https://t.co/zpe2xQoFBh +06/07/2018,Actors,@TherealTaraji,#Tbt us as Cleo and Pharaoh #thatsmybestfriend 😜💋💋💋 https://t.co/Dw9sXqDLsH +06/06/2018,Actors,@TherealTaraji,"#Repost @yomicalloway +・・・ +Contact the LA County… https://t.co/A61eMmda4D" +06/05/2018,Actors,@TherealTaraji,Because she deserves this!!!! @angiemartinez 🙏🏾💋💋💋 https://t.co/c7ulPhg1K2 +05/30/2018,Actors,@TherealTaraji,WOOOOOOWWW!!! Thank you💋💋💋 #Repost… https://t.co/bbJrtyEg4O +05/30/2018,Actors,@TherealTaraji,Meet my character Yesss KnowsMore and a few… https://t.co/EoxtEs3v6c +05/30/2018,Actors,@TherealTaraji,I can NOT wait for you guys to meet Miss Yess!!!!!! #RalphbreaksTheInternet 💋💋💋 https://t.co/5wH1u8UBRN +05/30/2018,Actors,@TherealTaraji,#TurbanLife #Cookie got me wearing turbans and… https://t.co/ZdhkPr67jG +05/29/2018,Actors,@TherealTaraji,"WOW!!! 💋💋💋 #Repost @maria_mizer +・・・ +⭐️… https://t.co/8Q7cGBV56Q" +05/27/2018,Actors,@TherealTaraji,They left me. I was supposed to be in the… https://t.co/PMMQaeK2CJ +05/26/2018,Actors,@TherealTaraji,"WOOOOOWWWW!!! 💋💋💋 #Repost marthaoborska +・・・ +🍪… https://t.co/yU76m9eC26" +05/25/2018,Actors,@TherealTaraji,#FBF I felt pretty!!! 💋💋💋 #Repost… https://t.co/ZHczdCXf5X +05/24/2018,Actors,@TherealTaraji,😩😂😂😂💋💋💋 https://t.co/izO1rfTnQr +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: O shit !!!! Shit just got real 😢😢😢👀👀👀@TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,RT @BrigitteFrankln: @TherealTaraji @EmpireFOX - Speak Lucious! Speak Cookie!!! This is pure 🔥🔥🔥 +05/24/2018,Actors,@TherealTaraji,RT @Km4cc: Come through Marvin Gaye and then the Chaka Kan reference 🔥🔥 @TherealTaraji @terrencehoward +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: Karma is a bitxh 😆@TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,damn Damn DAMN #BOOBOOKITTY #Empire 😩 +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: So much is happening Jesus @TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,RT @Talibahb1: @EmpireFOX @TherealTaraji @terrencehoward He said I thought that would shut u up😂❤💪🏽 +05/24/2018,Actors,@TherealTaraji,HA!!! 💋💋💋 #Empire https://t.co/D8Whrgdv4P +05/24/2018,Actors,@TherealTaraji,RT @colette_cher: @EmpireFOX @TherealTaraji @terrencehoward Omg Omg Omg yes yes yes +05/24/2018,Actors,@TherealTaraji,RT @REALMANFORLIFE: Lol @TherealTaraji face #Empire when she seen that big rock +05/24/2018,Actors,@TherealTaraji,RT @StarryMag: Cookie's heart is breaking. Her baby boy is devastated and leaving at a time she needs her family more than ever. #Empire +05/24/2018,Actors,@TherealTaraji,"RT @EmpireFOX: 😭 Don't leave us, Jamal! #Empire https://t.co/fbgEdubyAZ" +05/24/2018,Actors,@TherealTaraji,😩😩😩😂😂😂 https://t.co/1saPrHLdJB +05/24/2018,Actors,@TherealTaraji,😩😩😩 https://t.co/F4Hd3vsNi0 +05/24/2018,Actors,@TherealTaraji,😩😩😩😂😂😂💋💋💋 https://t.co/ssFCXsDEcG +05/24/2018,Actors,@TherealTaraji,#Empire #LyonsForever 💋💋💋 https://t.co/xXGBZFcQ4N +05/24/2018,Actors,@TherealTaraji,Damn DAmn DAMN #Tori 😩😢 #Empire 💋💋💋 +05/24/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 @pmnieddu #Empire #Cookie https://t.co/qwEjoEJGkL +05/24/2018,Actors,@TherealTaraji,😱😱😱😱😱😱😱 #Empire +05/24/2018,Actors,@TherealTaraji,💅🏾😼 #Cookie is a G!!! #Empire @EmpireWriters @EmpireFOX 🙌🏾💋💋💋 https://t.co/Fulmsc0wAF +05/24/2018,Actors,@TherealTaraji,#Lucious and #Andre just broke my entire heart!!! BRAVO #PassthetissueBOX 😩😢😩 #Empire @EmpireFOX 💋💋💋 +05/24/2018,Actors,@TherealTaraji,Don’t do it Lucious!!!! #Empire #LuciousCantGoToPrison 😩 +05/24/2018,Actors,@TherealTaraji,RT @EmpireFOX: 😭 Lucious and Cookie FOREVER! #Empire https://t.co/a99g6cYpO8 +05/24/2018,Actors,@TherealTaraji,RT @FastFuriousTrav: @EmpireFOX @TherealTaraji @LadyGraceByers Anika is classy.....not trashy! Anika knows how to sparkle! @LadyGraceByers… +05/24/2018,Actors,@TherealTaraji,😂😂😂😂 https://t.co/D6ORUx5ePb +05/24/2018,Actors,@TherealTaraji,RT @MZCOLDASSICE: Anika said Cookie stole what was hers? Really? Boo Boo kitty did no research. #Empire @EmpireFOX @leedanielsent @TherealT… +05/24/2018,Actors,@TherealTaraji,RT @IAmJoseMiguel: When Anika told Cookie @TherealTaraji I'm not scared if u anymore I was like she should... still don't underestimate Co… +05/24/2018,Actors,@TherealTaraji,"RT @EmpireFOX: .@yazzthegreatest is winnin', that's a fact. 🎤 Download ""Where They At"" here: https://t.co/oAKyw4wxEV #Empire https://t.co/J…" +05/24/2018,Actors,@TherealTaraji,😂😂😂😩😩😩🙈 https://t.co/JelsJdQgIz +05/24/2018,Actors,@TherealTaraji,😩😩😩 https://t.co/L3GC0M0xCK +05/24/2018,Actors,@TherealTaraji,RT @jkh_1983: @EmpireFOX Anika better be afraid! #Empire https://t.co/uI6B3fC78x +05/24/2018,Actors,@TherealTaraji,😰😰😰 https://t.co/LSuGBVRYkb +05/24/2018,Actors,@TherealTaraji,😂😂😂😂😂😂😂😂😩 https://t.co/4z3xAFFEn3 +05/24/2018,Actors,@TherealTaraji,😂😂😂😂😩 https://t.co/gNDtkzNr9n +05/24/2018,Actors,@TherealTaraji,RT @StarryMag: Cookie's trying to cut a deal with Boo Boo Kitty. Anika wants more than a payday. She wants vengeance and everything she thi… +05/24/2018,Actors,@TherealTaraji,"RT @PrettiGirlBadd: That's right Eddie you should've pulled the trigger b****! Game on !! + @TherealTaraji @terrencehoward @EmpireFOX" +05/23/2018,Actors,@TherealTaraji,It’s going down in this #Empire finale baby!!!… https://t.co/9eugr81r7B +05/23/2018,Actors,@TherealTaraji,"RT @extratv: Tonight on #ExtraTV: Buckle up for the @EmpireFOX finale! @AJCalloway is on set with @therealtaraji, @terrencehoward & @jussie…" +05/23/2018,Actors,@TherealTaraji,Do NOT miss this finale HENNY!!! #Empire… https://t.co/k62AjETyJP +05/20/2018,Actors,@TherealTaraji,Trying to do some work buuuuuuutttt someone… https://t.co/34ry1aHt9K +05/20/2018,Actors,@TherealTaraji,YES HE DOES HAVE BOLD IDEAS!!! So grateful to… https://t.co/0FTmyW6qSI +05/15/2018,Actors,@TherealTaraji,Who is responsible for this 😩😂😂😂 #TheUndisputedInternet I can NOT… https://t.co/yA3WZgIH5C +05/14/2018,Actors,@TherealTaraji,I love my friends!!!! @R2BAFB and @2lsquared SO BASICALLY Y’ALL KNEW… https://t.co/51DGVemkfn +05/14/2018,Actors,@TherealTaraji,I said yes y’all!!! He started with the Cartier love bracelet BUT… https://t.co/Mc53o9pzql +05/13/2018,Actors,@TherealTaraji,Happy Mother’s Day to all of the kick ass mom’s out there from one… https://t.co/R0NkpJZpS8 +05/13/2018,Actors,@TherealTaraji,Also wishing my handsome son a very happy birthday. I can NOT… https://t.co/cAFRGdy9FB +05/13/2018,Actors,@TherealTaraji,She is pure unconditional love. She is grace and Mercy. She is… https://t.co/7wJAScmqvk +05/12/2018,Actors,@TherealTaraji,#ForeverKindaLove 💋💋💋 https://t.co/1Rn7TC55Fv +05/11/2018,Actors,@TherealTaraji,#BreakingInMovie THIS WEEKEND!!!! Staring the beautiful… https://t.co/n61yoogxTv +05/09/2018,Actors,@TherealTaraji,Tonight’s episode is directed by my BooBoo @jussiesmollett who is on… https://t.co/C1TIUZG3P1 +05/09/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @empirefox +・・・ +DOUBLE TAP if you'll be tuning in for all… https://t.co/57MM2l30ji" +05/08/2018,Actors,@TherealTaraji,On set with my love interest. Him so sexy 😍#KBall kballhenson… https://t.co/zEjtPEEkBZ +05/08/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @sexxy_red +・・・ +Ready to reward the awesome mom in your life?? 💕💕💕… https://t.co/GfrUyCxh7p" +05/06/2018,Actors,@TherealTaraji,I just love these two Lil peanuts!!!! GET IT BABIES!!!!! 💋💋💋 #Repost… https://t.co/bjkcM5lar0 +05/06/2018,Actors,@TherealTaraji,@donaldglover YOU ARE THE BASQUIAT OF MUSIC!!!! I adore you!!! KEEP… https://t.co/AjF80NkTqV +05/03/2018,Actors,@TherealTaraji,#TBT to that time I sat down with an icon. OH HOW I STUDIED HER BRILLIANCE!!!… https://t.co/z9To13tglA +05/02/2018,Actors,@TherealTaraji,Y’all ready for motha #Cookie or nah? #Empire in 30mins 💋💋💋 #Repost… https://t.co/KCDqc9hQHF +05/02/2018,Actors,@TherealTaraji,"#MentalHealthAwareness #mentalhealthmonth 🙌🏾💋💋💋 #Repost @ajcalloway +・・・ +May… https://t.co/Faq7JRHDgi" +05/02/2018,Actors,@TherealTaraji,"Tonight!!! #Empire 💋💋💋 #Repost @billewoodruff +・・・ +It’s going down tomorrow on… https://t.co/qEwC3PhO4b" +05/01/2018,Actors,@TherealTaraji,May is Mental Health Awareness Month! Join me and #NAMI in the fight to cure… https://t.co/z8ZaR4YwWA +04/28/2018,Actors,@TherealTaraji,🤦🏾‍♀️LMAO @adammshankman I can NOT with you!😩😂😂😂 iamjamesflopez creeping in the back!!! 👀😂😂😂… https://t.co/D1E01u1wIY +04/27/2018,Actors,@TherealTaraji,Day one of filming #WhatMenWant get ready to Lls!!! kballhenson is sooooooo ready!!! 😂💋💋💋 https://t.co/k5Sx290jI6 +04/27/2018,Actors,@TherealTaraji,"I LOVE US!!!! Get it babies. #FRIDAYSMOOD 🔥💋💋💋 #Repost @RONBROWZ +・・・ +Shake Nation ty_cash09 |… https://t.co/qXdE4hCheh" +04/26/2018,Actors,@TherealTaraji,"Yesterday in Vegas!💋💋💋 #Repost @jason_bolden +・・・ +🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯 #JSNstyleteam https://t.co/UdoAnmJmKD" +04/25/2018,Actors,@TherealTaraji,"Food for your soul💋💋💋 #Repost @therealtank +・・・ +Take notes fellas! +#happywifehappylife… https://t.co/dV7v9aAPnH" +04/24/2018,Actors,@TherealTaraji,"RT @JanelleMonae: I’m here 4 ALL OF THIS BGM . Congrats my loves ! 👑👑💓🧠 + + https://t.co/0iUdinZD03" +04/23/2018,Actors,@TherealTaraji,That lil ham hock leg and foot in the back all stretched out like that gets me EVERY TIME!!!!!… https://t.co/nHkHzstXdU +04/21/2018,Actors,@TherealTaraji,Thank you realcoleworld 🙏🏾🙌🏾✊🏽💪🏾💋💋💋 https://t.co/NoOSMW0WT4 +04/21/2018,Actors,@TherealTaraji,They just left off a couple of samiches!!! 🙋🏽‍♀️😩😂😂😂💋💋💋 https://t.co/bjwZzGwXpp +04/19/2018,Actors,@TherealTaraji,"RT @Sir_Eclectic: ""It's good to know that Bo still likes eating pound cake."" - @TherealTaraji #Empire I'm dead. 💀😭😭😂" +04/19/2018,Actors,@TherealTaraji,😫😂😂😂🤷🏾‍♀️💋💋💋 #Empire https://t.co/bqcGqY9lWq +04/19/2018,Actors,@TherealTaraji,RT @EmersonFan2000: @TherealTaraji Cookie is that girl you just wanna have by your side. 😎 https://t.co/vEumW78B0U +04/19/2018,Actors,@TherealTaraji,😂😂😂 #Empire https://t.co/CsTBgueelj +04/19/2018,Actors,@TherealTaraji,Favorite #Cookie quote from tonight’s episode of #Empire. Go...... 😂😂😂 +04/19/2018,Actors,@TherealTaraji,RT @OgTootiee_: Tiana new found attitude I’m not feeling it #EmpireFox https://t.co/esoHovVKHw +04/19/2018,Actors,@TherealTaraji,RT @BryantLaShauna: #EMPIRE pound cake story line got me like https://t.co/B46x6634fq +04/19/2018,Actors,@TherealTaraji,RT @cici_interlude: Andre can charm them out of their panties #Empire https://t.co/jJOHDNVbe1 +04/19/2018,Actors,@TherealTaraji,RT @BadLil_Specimen: I see ya Andre lil slick ass #EmpireFox https://t.co/MqyowAfHky +04/19/2018,Actors,@TherealTaraji,RT @leedanielsent: #Cookie was like...Bo is full of 💩 @EmpireFOX #Empire https://t.co/ZrRrPk8u65 +04/19/2018,Actors,@TherealTaraji,Me too 😁💋💋💋 #Empire #Cookie and #Porsha 💪🏾 https://t.co/lQqsVuy0y0 +04/19/2018,Actors,@TherealTaraji,RT @PlayerPlayer24: That boy Andre smart #EmpireFox 💪 +04/19/2018,Actors,@TherealTaraji,RT @iamLisaHunt: #Empire Alright Celeste...Watch out now. That’s Lucious Lyon you’re talking to like that. #EmpireFox https://t.co/cqOXoB1W… +04/19/2018,Actors,@TherealTaraji,Lmaooooooo😂😂😂😫💋💋💋 #empire https://t.co/voxQ0lQ4Cc +04/19/2018,Actors,@TherealTaraji,"RT @DarrellDass: Lucious got stonewalled by Eddie's ex, but don't think he's done scheming, not by a long shot #EmpireFOX #Empire" +04/19/2018,Actors,@TherealTaraji,RT @StylistMichelle: Maaad props to Hakeem's street style wardrobe! The men's glitter slip-on shoes are hot! #EmpireFox #Empire @EmpireFOX +04/19/2018,Actors,@TherealTaraji,RT @TyeLeeSmith: #Empire @EmpireFOX is 🔥 Lit Tonight. +04/19/2018,Actors,@TherealTaraji,RT @mohalyak: “THAT BITCH TRUMP TWEETIN AGAIN” bYE 😂😂💀 #Empire https://t.co/i3AjzmFaeO +04/19/2018,Actors,@TherealTaraji,RT @dFINEGr8neZZ_Me: “That bitch trump is tweeting again”!!!! #Empire https://t.co/BGZI4AVyYe +04/19/2018,Actors,@TherealTaraji,RT @IamRoyaltyOfc: This Blake vs Hakeem rap got me like :#Empire https://t.co/pUYsfmBwkZ +04/19/2018,Actors,@TherealTaraji,"RT @LifeAs_Reese: That beat 🔥. I see you Keem + +#EmpireFox #Empire https://t.co/cawye2gt1Y" +04/19/2018,Actors,@TherealTaraji,RT @Nk3play2: #Empire #EmpireFox Oh My God...... Poundcake is imagining her baby’s life. https://t.co/QM7ynGhdud +04/19/2018,Actors,@TherealTaraji,Lmaooooooo #Empire💋💋💋 https://t.co/suz8N5mtMu +04/19/2018,Actors,@TherealTaraji,RT @Rae_Bae21: Okay... #Empire https://t.co/yW6SpU8XSE +04/19/2018,Actors,@TherealTaraji,RT @therealmisscox: Cookie looking like she know something @EmpireFOX #EmpireFox @EmpireWriters @TherealTaraji +04/19/2018,Actors,@TherealTaraji,"RT @MiiMaizn: This scene right here! Whew, got the knot in my thoak! 😢 @TherealTaraji https://t.co/onoIi8ptbd" +04/19/2018,Actors,@TherealTaraji,RT @Mani__mommy: Yasssss pound cake!!!!!!! U got a friend hunny #EmpireFox @TherealTaraji you’re the best +04/19/2018,Actors,@TherealTaraji,RT @latoyathomas328: @TherealTaraji LAWD I’m in tears. Please find Poundcake’s baby... #EmpireFox https://t.co/W0yAWctd3Q +04/19/2018,Actors,@TherealTaraji,RT @dejazmin: #Empire @TherealTaraji @terrencehoward cookie sit down stop being hard headed. @EmpireFOX +04/19/2018,Actors,@TherealTaraji,RT @LaurellaWillis: @TherealTaraji O Cookie gone find Pound cake baby girl!! WATCH!! +04/19/2018,Actors,@TherealTaraji,"RT @MZCOLDASSICE: Cookie got Thirsty on the case ASAP +#Empire #Empirefox @EmpireFOX @TherealTaraji @leedanielsent" +04/19/2018,Actors,@TherealTaraji,"RT @filmwritr4: @TherealTaraji @EmpireAddicts No matter what, you just can't keep Cookie Lyon down. #Empire" +04/19/2018,Actors,@TherealTaraji,RT @MZCOLDASSICE: Cookie has heart and played right into poundcake plan. #Empire #Empirefox @EmpireFOX @TherealTaraji @leedanielsent +04/19/2018,Actors,@TherealTaraji,RT @Teamtaytay4: 😂Porcia face when Cookie said she sent her out to get tofu😣 @TaRhondajay @TherealTaraji #Empire +04/12/2018,Actors,@TherealTaraji,Enjoyed your presence!!! 🙏🏾💋💋💋 https://t.co/e5hLzRHFu7 +04/12/2018,Actors,@TherealTaraji,😩😂😂😂💋💋💋 #Empire https://t.co/gL3TXrOBK9 +04/12/2018,Actors,@TherealTaraji,TU 💋💋💋 https://t.co/Ax4I8NcRCT +04/12/2018,Actors,@TherealTaraji,😂😂😂😂😂😂💋💋💋 https://t.co/MTMkET1Gd4 +04/12/2018,Actors,@TherealTaraji,😩😂💋💋💋 #Empire https://t.co/kNhirSavXZ +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/9lXsBbPO8A +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/622qR760Ca +04/12/2018,Actors,@TherealTaraji,👀😂💋💋💋 #Empire https://t.co/fFmjeeInxl +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/hLr1hBoRub +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/zdWrIOKmh6 +04/12/2018,Actors,@TherealTaraji,RT @cclarkinspire7: @GMA @EmpireFOX @RobinRoberts @TherealTaraji @JussieSmollett @RobinRoberts did a phenomenal job ! @GMA #Empire +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/nPYNvUcGpC +04/12/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 https://t.co/Ej3S8mywbO +04/12/2018,Actors,@TherealTaraji,"RT @GMA: .@RobinRoberts joins the Lyon family! Check out her all-access journey backstage on the set of #Empire with @TherealTaraji, @Jussi…" +04/08/2018,Actors,@TherealTaraji,My fav movie 😂💋💋💋 #TalkToMe https://t.co/hBrB2JXLQE +04/08/2018,Actors,@TherealTaraji,Thank you sweetheart!!! 🙏🏾💋💋💋 #Acrimony #Acrimonymovie @AcrimonyMovie https://t.co/ril4gbwq0P +04/08/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 #Aroundthewaygirl https://t.co/bYGVxfWGgn +04/08/2018,Actors,@TherealTaraji,RT @AcrimonyMovie: He owes her everything. 💔@TherealTaraji gets even in @TylerPerry’s #Acrimony - NOW PLAYING in theaters. Get tickets now!… +04/08/2018,Actors,@TherealTaraji,On CONSTANT rotation!!! #AthemShitHERE THANK YOU @iamcardib for this!!! #MoneyBagWomen Keep… https://t.co/hY08Egu2sM +04/07/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +It’s not over until Melinda says it is. 🙅🏾‍♀️ @TherealTaraji takes… https://t.co/FA9mQ6WeHI" +04/07/2018,Actors,@TherealTaraji,@ralofamgoon Reach out +04/06/2018,Actors,@TherealTaraji,"I love us!!! 💋💋💋 #Repost @EBONYMag +[@ItsBlackCulture] https://t.co/Dc6IhYufS2" +04/06/2018,Actors,@TherealTaraji,https://t.co/jowBZGXVCT go check him out and follow him @LhLoyallane +04/05/2018,Actors,@TherealTaraji,Tune in TONIGHT!!!!! @empirefox is BACK on Fox @ 8/7c #Empire #Fox 💋💋💋 https://t.co/RbpigrJ9Xd +04/04/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @pmnieddu +・・・ +Never Not Modeling ❤️don’t forget to watch @empirefox tonight at 8pm… https://t.co/Rf0kOB10d6" +04/03/2018,Actors,@TherealTaraji,Calling all my QUEENS! I have a special offer for your #GirlsNightOut this weekend! Use my code… https://t.co/pL0vG75EQj +04/01/2018,Actors,@TherealTaraji,💋💋💋 #Acrimony @AcrimonyMovie https://t.co/0Brdes6jFL +04/01/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/yu771ohoEw +04/01/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/TBMsHZQZCm +03/31/2018,Actors,@TherealTaraji,"I’m so excited for you to see #Acrimony this weekend, that I’m buying out two theaters for you… https://t.co/iRy5jHklCx" +03/31/2018,Actors,@TherealTaraji,"THANK YOU BEAUTIFUL PPL!!! 💋💋💋 #Repost ladiesnightoutbymichelle +・・・ +Thank you @tylerperry &… https://t.co/Vt3IFvUJO6" +03/31/2018,Actors,@TherealTaraji,So glad I trusted you @tylerperry. 💋💋💋 We shot this film in 8 days!!! My portion was filmed in 5… https://t.co/sMl4LS1QPQ +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/mtaOaXj0xg +03/30/2018,Actors,@TherealTaraji,"I’m so excited for you to see #Acrimony this weekend, that I’m buying out two theaters for you… https://t.co/ZwPV2hAmR7" +03/30/2018,Actors,@TherealTaraji,"FINALLY!!! 💋💋💋 #Repost acrimonymovie +・・・ +The wait is over… 💔 Get tickets now to see… https://t.co/5JQIjdvpUX" +03/30/2018,Actors,@TherealTaraji,💋💋💋#Acrimony https://t.co/cpxFr1uiw9 +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/h6fvf1CGfd +03/30/2018,Actors,@TherealTaraji,💋💋💋 #Acrimony https://t.co/C8ygyezMmZ +03/30/2018,Actors,@TherealTaraji,RT @EmpireFOX: Queen of the Empire and the big screen. Don’t miss an exclusive first look from @TherealTaraji’s new film — @TylerPerry’s #A… +03/30/2018,Actors,@TherealTaraji,💋💋💋#Acrimony https://t.co/yJCRLgbQC0 +03/30/2018,Actors,@TherealTaraji,#Acrimony #Acrimonymovie 💋💋💋 https://t.co/REyYaohuDc +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/CLDk1Lf82m +03/30/2018,Actors,@TherealTaraji,💋💋💋 #Acrimonymovie #Acrimony https://t.co/N9rsbig23C +03/30/2018,Actors,@TherealTaraji,RT @ShelookslikeYES: #Acrimony this movie was so dope!!! @tylerperry @TherealTaraji y’all did that!!! https://t.co/tB9xZONubD +03/29/2018,Actors,@TherealTaraji,YAASSS! Proud Mary getting ready to kick some ass! The movie is out now on Digital! Get your… https://t.co/RzQ2EGjKXP +03/29/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +He promised her everything and then gave it all to his sidechick.… https://t.co/uJtQa1pAYi" +03/29/2018,Actors,@TherealTaraji,#KBall kballhenson is a natural model😂😂😂🤷🏾‍♀️💋💋💋 https://t.co/hIvYFiGdgN +03/29/2018,Actors,@TherealTaraji,RT @beanoTG: @EmpireFOX this is about to be THE LONGEST WEEK waiting for @TherealTaraji 😒 ALL THE WEEKS GONE BE LONG!! 😭💋❤️ +03/29/2018,Actors,@TherealTaraji,RT @RJ_Tube: You better not slice her throat @TherealTaraji #empire +03/29/2018,Actors,@TherealTaraji,RT @TyNewte: That Cookie is one bad mutha......shut my mouth! Yaaaasss! @TherealTaraji +03/29/2018,Actors,@TherealTaraji,#Claudia was feeling quite frogy 🐸 leaping all on #Cookie like that. This should be interesting 😂😂😂😒 #Empire 💋💋💋 +03/29/2018,Actors,@TherealTaraji,🤷🏾‍♀️😫😂😂😂 #Empire💋💋💋 https://t.co/4qDQ2rBWdn +03/29/2018,Actors,@TherealTaraji,😂😂😂😂 #ProudMary #Cookie #Empire💪🏾💋💋💋 https://t.co/GapD01FWMP +03/29/2018,Actors,@TherealTaraji,RT @DALitt731: Lucious is so obsessed with Cookie and he know it’s true. @EmpireFOX @EmpireAddicts @TherealTaraji @LadySag1219 #EmpireWedne… +03/29/2018,Actors,@TherealTaraji,😂😂😂😂😂😂😂😂😂😂😂😂😂#Acrimonymovie #Empire #Cookie #Melinda https://t.co/KAr59lFuyj +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/B6AzqZZws1 +03/29/2018,Actors,@TherealTaraji,RT @MsTiffanyBarker: Claudia is NOT going to be satisfied until the COOKIE MONSTER comes out! Doesn't she see @TherealTaraji doesn't play w… +03/29/2018,Actors,@TherealTaraji,RT @_ThirdWardTrill: Cookie coming to save the day!! @TherealTaraji #Empire +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/MIRB12P8qe +03/29/2018,Actors,@TherealTaraji,RT @itsjustme1213: @TherealTaraji I’m watching girl I’m holdin my breath and lovin every minute. 🙏🏽👍🏽😉 Demi got a problem... https://t.co/… +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/sOyRMdI9JD +03/29/2018,Actors,@TherealTaraji,RT @Tinaa43: Man Claudia don’t know WHO tf Cookie Lyon IS...She gone have one of them prison flashbacks and Whoop Claudia a$$ @EmpireFOX @T… +03/29/2018,Actors,@TherealTaraji,RT @StarryMag: Lucious is missing but Thirsty's on the case. He's got Claudia on tape but did he go with her willingly? #Empire https://t.c… +03/29/2018,Actors,@TherealTaraji,RT @EmpireFOX: We're ready to serve up that #Empire tea! 🍵 Join @tarhondajay & @terrellmusic for the #EmpirePreShow LIVE on Twitter tonight… +03/29/2018,Actors,@TherealTaraji,The #LyonBrothers scenes I always LOVE @JussieSmollett @JustTrai @YazzTheGreatest #Empire 💋💋💋 +03/29/2018,Actors,@TherealTaraji,Go get yo man #Cookie #Empire WE’RE BACK!!! 💋💋💋 +03/29/2018,Actors,@TherealTaraji,"RT @UrbanityToday: @EmpireFOX @EmpireWriters I told y""all about Claudia last season!!! Cookie you better not let her take your man again! @…" +03/29/2018,Actors,@TherealTaraji,😂😂😂😂😂 cookies blonde bombshell wig by @TrueIndianHair #Empire💋💋💋 https://t.co/nJpHlSFPUN +03/29/2018,Actors,@TherealTaraji,Who’s watching #Empire? 🙋🏾‍♀️💋💋💋 +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost biggiealkass +・・・ +Who is Ready For an al new episode of @empirefox tonight on foxtv… https://t.co/7ph0hTExX1" +03/28/2018,Actors,@TherealTaraji,✊🏿✊🏾✊🏽✊🏼✊🏻✊🙏🏾🙏🏾🙏🏾💋💋💋 #Repost @People4Bernie - This PSA played during tonight's #SacramentoKings… https://t.co/VCGSJDVoT3 +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +Take it from @TherealTaraji… revenge is only the beginning. 🖤🔥 See… https://t.co/iQy24D0uJg" +03/28/2018,Actors,@TherealTaraji,"😱😱😱😩😂💋💋💋 #Repost @empirefox +・・・ +Who’s ready for the epic return of #Empire tonight at 8/7c?!… https://t.co/Xv7wxGxijf" +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @tylerperry +・・・ +Planning a #GirlsNightOut this Friday? Buy 2 tickets to see… https://t.co/9mRBXuQxMs" +06/23/2018,Actors,@TaySchilling,RT @KamalaHarris: A few moments ago I finished visiting with mothers who were separated from their children at the border. I can tell you t… +05/30/2018,Actors,@TaySchilling,Check out my friend @legit_Rebitch in her new film THEY REMAIN @theyremainfilm w/ @dubjackharper - NOW AVAILABLE on… https://t.co/5NXnH2aBur +04/19/2018,Actors,@TaySchilling,"My friend @JenSiebelNewsom is out with her third documentary, the #GreatAmericanLie. After #MissRepresentation and… https://t.co/0eJlt5gWcu" +04/05/2018,Actors,@TaySchilling,Join me in celebrating the birthday of my friend and ally @CynthiaNixon as she takes our shared fight for advancing… https://t.co/o7CVuNDGL5 +03/22/2018,Actors,@TaySchilling,@CynthiaNixon https://t.co/1ocoFZampx +03/21/2018,Actors,@TaySchilling,🙌🏻 🙌🏻 🙌🏻 @CynthiaNixon https://t.co/nb7xRxwwUU +03/20/2018,Actors,@TaySchilling,https://t.co/DiYOHUrVy7 +03/12/2018,Actors,@TaySchilling,Whoop whoop ❤️❤️❤️🤡🤡🤡 https://t.co/snJ34tIYHm +03/08/2018,Actors,@TaySchilling,Join me & my dear friend @JessicaNeuwirth in supporting Donor Direct Action and Women's Rights Advancement and Prot… https://t.co/yau6yOarEF +03/08/2018,Actors,@TaySchilling,"more from @JessicaNeuwirth +https://t.co/HMKoE4mODV" +03/08/2018,Actors,@TaySchilling,I've learned so much from my extraordinary friend @JessicaNeuwirth. Here's an intro to some of her work. Happy Inte… https://t.co/Upu8sJqjDU +01/17/2018,Actors,@TaySchilling,On Aziz Ansari And 'Bad Sex' https://t.co/0KvvOd0MV5 +01/15/2018,Actors,@TaySchilling,https://t.co/6wvPp9aiA3 +01/09/2018,Actors,@TaySchilling,#HunterDreamerCampaign #CallPaulRyan #SaveDreamers https://t.co/J1RsuoXFPJ +12/28/2017,Actors,@TaySchilling,"RT @DreamTeamHunter: Join @GloriaSteinem and our DREAMers as they call Congress to pass a DREAM Act. Tag 3 ppl to do the same! + +@RealBambad…" +12/06/2017,Actors,@TaySchilling,"Grateful to @taranaburke, @rosemcgowan, @ronanfarrow for speaking up and making 2017 the year we finally started ta… https://t.co/xHP1xhWbqr" +12/05/2017,Actors,@TaySchilling,Congress will either fund the deportation of #Dreamers or protect them.We need a #DreamActNow!Join me &call Congress:https://t.co/XF9uztNzw5 +12/03/2017,Actors,@TaySchilling,#DreamActNow https://t.co/0iSW7YwlxR +06/15/2017,Actors,@TaySchilling,RT @jimandsamshow: Today's #JimAndSam show replay with @TaySchilling and @IanUnderCover starts in just 1 hour! Check it out on @SIRIUSXM Ch… +06/14/2017,Actors,@TaySchilling,I'm just basking in the light of @Lavernecox https://t.co/gav2CT8JF5 +06/12/2017,Actors,@TaySchilling,RT @PublicTheaterNY: #WeAreOnePublic. https://t.co/HkOKxFIKsT +06/12/2017,Actors,@TaySchilling,https://t.co/BKfIshqhhN via @youtube #OITNB #OITNBS5 +06/09/2017,Actors,@TaySchilling,"Good talk, good talk https://t.co/N86QgdImis" +06/08/2017,Actors,@TaySchilling,Thank you @WBUR and @nytimes for having me guest narrate this episode of the #ModernLovePodcast https://t.co/i0NFXI4hlQ +06/03/2017,Actors,@TaySchilling,RT @thedanieb: Unacceptable. And the audience applauds!?! So hurtful. https://t.co/V5yAk9C9ON +06/02/2017,Actors,@TaySchilling,What You Can Do About Climate Change - The New York Times https://t.co/xHQj7lH1HM +05/05/2017,Actors,@TaySchilling,(2/2)...#TakeMe is available on @iTunes https://t.co/eLBFyojscZ !! @MarkDuplass @jayduplass @meleslyn @Pat_Healy +05/05/2017,Actors,@TaySchilling,(1/2) Excited to share my latest film with the #Duplassbrothers #TakeMe opening NY/LA today &... +04/25/2017,Actors,@TaySchilling,You + 📷 means @burtsbees will plant 5k 🌸s to help save the 🐝s! Take a flower-filled #SelflessSelfie here: https://t.co/Ncx6K5DFRe #ad +04/19/2017,Actors,@TaySchilling,A #selfie 4 a good cause? Help save the 🐝s by taking a #SelflessSelfie & @burtsbees will plant 5k 🌸s! Snap a pic https://t.co/k4vvDrQ1Ck #ad +02/03/2017,Actors,@TaySchilling,This https://t.co/k3XJtyVvDZ +02/03/2017,Actors,@TaySchilling,@NYGovCuomo thank you +02/03/2017,Actors,@TaySchilling,This is amazing https://t.co/esiCc9NBID +02/03/2017,Actors,@TaySchilling,RT @SenGillibrand: Public education. Safe schools. That’s what our Education Secretary should commit to. Betsy DeVos is the wrong choice. +02/02/2017,Actors,@TaySchilling,RT @NARAL: Betsy DeVos his completely unqualified to serve as Edu Secy & she's 1 'no' vote away from defeat. Keep calling your Senators! #S… +02/01/2017,Actors,@TaySchilling,"Great ideas on how you can advance #NoBanNoWall via @JenSiebelNewson: https://t.co/JyGQPq1wbu""" +02/01/2017,Actors,@TaySchilling,"I'm asking Trump to uphold the rights of women, Muslims, immigrants, ALL people. Sign this petition: https://t.co/pCfjS7jM47 #BeAModelMan" +01/22/2017,Actors,@TaySchilling,"RT @JenSiebelNewsom: Call Paul Ryan (202) 225-0600 +Press 2 to weigh in on Healthcare issue, then PRESS 1 to support continuing the Affordab…" +01/22/2017,Actors,@TaySchilling,Pictures From Women’s Marches on Every Continent - The New York Times https://t.co/ZTEFAfbcwP +01/21/2017,Actors,@TaySchilling,@RepMaloney thank you for your service Rep.Maloney! Honor to march with you +01/21/2017,Actors,@TaySchilling,RT @RepMaloney: And we march! #WomensMarch https://t.co/h2VUQuOEBR +01/18/2017,Actors,@TaySchilling,Because we still have to say women's rights are human rights. https://t.co/ahOswRcH9X #MarchingForward @TheRepProject +01/18/2017,Actors,@TaySchilling,"Dear New York State Legislature, +Please pass this law for #KaliefBrowder. This is not partisan. +#RaiseTheAgeNY +https://t.co/vLhYKBI21q" +01/18/2017,Actors,@TaySchilling,RT @NYDailyNews: .@ShaunKing: Time for New York to do right by Kalief Browder’s family and pass reasonable criminal justice reforms https:/… +01/13/2017,Actors,@TaySchilling,#CallingAllWomen @womensmarch @ItsTimeNetwork #equalmeansequal Why is domestic violence law failing women? Find out: https://t.co/guU106yPGj +01/12/2017,Actors,@TaySchilling,https://t.co/XtCgzx1SSg +01/12/2017,Actors,@TaySchilling,"Fight back! Next big election is in Virgina, and now we have a serious progressive champion running for Governor. #GoTomGo @TomPerriello" +01/11/2017,Actors,@TaySchilling,"RT @POTUS: Thank you for everything. My last ask is the same as my first. I'm asking you to believe—not in my ability to create change, but…" +01/11/2017,Actors,@TaySchilling,Yes we can. #FarewellObama +01/09/2017,Actors,@TaySchilling,https://t.co/XC79DKtOAQ via @youtube @kamalalopez speaks eloquently on this still valid and worthy issue. +01/07/2017,Actors,@TaySchilling,"""Women, if the soul of the nation is to be saved, I believe that you must become its soul."" - Coretta Scott King @womensmarch #January21" +01/05/2017,Actors,@TaySchilling,RT @PattyArquette: 80% think gender equality is guaranteed by the Constitution? IT ISN’T. #EqualMeansEqual https://t.co/hBZPQ6Y1SG https://… +01/05/2017,Actors,@TaySchilling,RT @ananavarro: Trump siding with Assange and Putin over CIA- patriots who dedicate and risk their lives to keep us secure- is a damn disgr… +01/05/2017,Actors,@TaySchilling,RT @CoryBooker: The 115th Congress begins today. This will be a profoundly consequential year for our nation. Please join me. https://t.co/… +01/05/2017,Actors,@TaySchilling,"Facing a President who denies the reality of climate change, we need to mobilize together. Join me. https://t.co/NVa4Tk4Bio" +12/15/2016,Actors,@TaySchilling,"Informative and timely convo with the incredible @vj44 and @Piper +https://t.co/FBWzD231Z4 @WhiteHouse #CriminalJusticeReform" +12/14/2016,Actors,@TaySchilling,Wanna hang & work out with me & help my friends in @iamatheatre? All at the same time?! Only a day left to bid: https://t.co/cPeHmamMpz +12/05/2016,Actors,@TaySchilling,"RT @MarkDuplass: A peaceful, respectful protest fueled by compassion and justice has won a major victory. This is a fantastic example for a…" +12/01/2016,Actors,@TaySchilling,"How a Triathlon Helped America Ferrera Defy Her Inner Critic, via @nytimes@AmericaFerrera https://t.co/tAm6by5IYL" +11/30/2016,Actors,@TaySchilling,"#NowMoreThanEver, help ensure #safety & #equaljustice for #women.Join me in supporting @WPA_NYC this #GivingTuesday! https://t.co/s1lWE82AG1" +11/06/2016,Actors,@TaySchilling,"Dalai Lama: Behind Our Anxiety, the Fear of Being Unneeded, via @nytimes https://t.co/khKTAAQiPE" +10/15/2016,Actors,@TaySchilling,@DavidPepper thank you! Today was an inspiration +10/06/2016,Actors,@TaySchilling,I'm voting to see the ERA on Sunday's debate& so can you #ERANow @ERACoalition @OpenDebate https://t.co/w66RNSckdl +09/28/2016,Actors,@TaySchilling,Jackie and puppies! https://t.co/GnvVxtu2fL +09/27/2016,Actors,@TaySchilling,"""A man who can be provoked by a tweet should not have his fingers anywhere near the nuclear code"" #ImWithHer" +09/27/2016,Actors,@TaySchilling,"RT @chrissyteigen: annnnnnd ""400 pounds"" will be the story tomorrow." +09/27/2016,Actors,@TaySchilling,RT @sadydoyle: I see Hillary has come dressed in the blood of men who have underestimated her. +09/20/2016,Actors,@TaySchilling,Congratulations all 'round! https://t.co/zEC5qqsRvF +09/14/2016,Actors,@TaySchilling,At the @ERACoalition screening of @EqualMeansEqual. U.S. women still aren't equal under the law. We need #ERANow. https://t.co/91Jgdk4RmR +09/07/2016,Actors,@TaySchilling,J is for Jail. Literacy helps prevent crime. Please RT. https://t.co/MZ9zvzWZbg #ProjectLiteracy https://t.co/KMbiuIpZjB +07/25/2016,Actors,@TaySchilling,#ThisIsWhatMyRevolutionLooksLike https://t.co/k4PpmBf0zu +07/19/2016,Actors,@TaySchilling,RT @RepresentPledge: Let's celebrate women in politics and advocate for women-friendly policies #RepresentHer https://t.co/9VrGo0Etpv https… +07/07/2016,Actors,@TaySchilling,#TBT to unveiling the new @Origins Harvard Sq store! More on Origins NEW blog: https://t.co/eck9CmMVR3 #Ambassador https://t.co/x6OXNIIgXs +05/18/2016,Actors,@TaySchilling,"Can't wait to help @Origins unveil their newly redesigned store in Cambridge, MA tonight! So good to be home. #Ambassador" +04/22/2016,Actors,@TaySchilling,"Happy Earth Day!#KissThePlanet. pucker up, tag @OriginsUSA #KissThePlanet and #DoGoodCampaign and Origins will plant a tree. 🌲🌳#ambassador" +04/19/2016,Actors,@TaySchilling,I loved this doc! Exploring America's narrow definition of masculinity @JenSiebelNewsom's @MaskYouLiveIn on Netflix https://t.co/68sse1Yeg9 +04/19/2016,Actors,@TaySchilling,"Pucker up to help Origins plant trees for Earth Month!Tweet your smooch to @Origins,tagging #KissThePlanet & #DoGoodCampaign! #ambassador" +04/03/2016,Actors,@TaySchilling,"'The Outs’ Returns: Making the Best Gay Show (Not) on TV +Yessss @tommyheleringer!!🙌🌟@theadamgoldman @watchtheouts https://t.co/kiM3WOBr5e" +03/13/2016,Actors,@TaySchilling,Time For Change Foundation Helping women and children thrive. Join Me! https://t.co/Zsu9yc9vWV +03/09/2016,Actors,@TaySchilling,RT @HillaryClinton: Why Hillary has won nearly all the editorial board endorsements in the Democratic primary so far. https://t.co/neBtd2kS… +02/26/2016,Actors,@TaySchilling,"Video: President Obama Weighs in on Oscars Controversy https://t.co/AWqDeVIxju ""provide opportunity to everybody"" #OscarsSoWhite" +02/11/2016,Actors,@TaySchilling,"Gravitational Waves Detected, Confirming Einstein’s Theory, via @nytimes +Ripples! https://t.co/gHqBPpIA2q" +02/01/2016,Actors,@TaySchilling,@imperfect_souul @megosaurus_rawr ur brave&intelligent activism are inspiring examples of how change happens #blackatbls +02/01/2016,Actors,@TaySchilling,"BLS students standing up +@megosaurus_rawr @imperfect_souul xx https://t.co/4f0H4clXFI" +12/21/2015,Actors,@TaySchilling,GLASSbook x Jackie Cruz Holiday... by Zoe Ziirsen | Generosity looks good! https://t.co/XrpahKrYY4 +12/16/2015,Actors,@TaySchilling,Redefining masculinity in 2015: https://t.co/aTS4leqD8q #unmasked +12/10/2015,Actors,@TaySchilling,And the golden globes! Nailing it @UzoAduba. Congratulations!!! +12/10/2015,Actors,@TaySchilling,Congratulations to the magnificent @UzoAduba and @thedanieb on their SAG noms as well as the entire orange cast! +12/10/2015,Actors,@TaySchilling,"#You Ain’t No American, Bro, via @nytimes https://t.co/oUp5Z5YJzF" +11/06/2015,Actors,@TaySchilling,"Larry Smith! My #bestadviceinsix, “Right now you're ok, I promise.” is in @larrysmith's new @sixwords book https://t.co/wwZ7RNbrno" +11/05/2015,Actors,@TaySchilling,"Not a great day in Houston. + https://t.co/SDnqFAcGPq" +09/29/2015,Actors,@TaySchilling,National pink out day #StandWithPP +09/09/2015,Actors,@TaySchilling,Excited to share that my latest film @Overnight_Movie is now on @iTunesMovies! Watch now: http://t.co/2GeYHISwhg +09/09/2015,Actors,@TaySchilling,RT @AmazonVideo: This could be the start of a beautiful friendship... and you're invited. Own #TheOvernight: http://t.co/ZMsFoyLgdx https:/… +08/13/2015,Actors,@TaySchilling,Mindy Kaling's Guide to Killer Confidence http://t.co/meDJ6ZqjzV +08/13/2015,Actors,@TaySchilling,Proud to support your great work! https://t.co/XDMhWsO6XI +08/12/2015,Actors,@TaySchilling,Xx https://t.co/5KE5PmzPXa +08/10/2015,Actors,@TaySchilling,http://t.co/7sIVCkIG9B +08/10/2015,Actors,@TaySchilling,http://t.co/TMg6KaFUpY +08/08/2015,Actors,@TaySchilling,What We Learned From German Prisons - The New York Times http://t.co/vNSGZppQm0 +08/07/2015,Actors,@TaySchilling,Plus it's free @jonesarah http://t.co/v4RWAfCTNN +08/07/2015,Actors,@TaySchilling,The brilliant @jonesarah performing @ the East River amphitheater tonite 7pm. I'm a BIG fan. Humbled and awed http://t.co/v4RWAfCTNN +07/31/2015,Actors,@TaySchilling,"#FBF to before the season 3 premiere. @HarryJoshHair , your hair stylist skills always blow me away. *Pun intended. http://t.co/u5AuKkizLW" +07/17/2015,Actors,@TaySchilling,"If you want to motivate for a movie this weekend- just saying it's an option. Still in theaters,… https://t.co/Xkx1FenICT" +07/15/2015,Actors,@TaySchilling,Sage wisdom. Rub noses. http://t.co/jY3gu6chRZ @carrie_rachel corintuckerband https://t.co/9o8nhFOz72 +07/10/2015,Actors,@TaySchilling,RT @BravoWWHL: TONIGHT: @TaySchilling & @AndieMacDowell3 are in the #WWHL Clubhouse! Tune in 11/10c only on @BravoTV. +07/09/2015,Actors,@TaySchilling,RT @EqualMeansEqual: @TaySchilling speaks out in support of the #ERA. Stay tuned for the @EqualMeansEqual documentary for more info. http:… +07/08/2015,Actors,@TaySchilling,Extra hour on the tarmac just became really enjoyable with @Miguel's beautiful album #WILDHEART on repeat +07/04/2015,Actors,@TaySchilling,@SarahSoWitty @Overnight_Movie @mradamscott 🙌 +07/02/2015,Actors,@TaySchilling,@sammyx618 well... I've already seen it... But enjoooyyy +07/02/2015,Actors,@TaySchilling,@pipe_chap @Overnight_Movie thank you! +07/02/2015,Actors,@TaySchilling,#TheOvernight is the new sleepover... Go see it! @Overnight_Movie is out in theaters TOMORROW http://t.co/teuKp3Hs6d +06/30/2015,Actors,@TaySchilling,Loved sharing a good laugh with Taylor Schilling…I mean @HarryJoshHair #behindthescenes #outtakes #bellylaugh #ad http://t.co/pnSxsezkYs +06/28/2015,Actors,@TaySchilling,Pride party for 2. #stoopshenanigans #freeselfieson13thst #pride2015 #lovewins @harryjoshhair https://t.co/WMFJexdayC +06/28/2015,Actors,@TaySchilling,Pride party for 2 #stoopshenanigans #freeselfieson13thst #pride2015 #lovewins @harryjoshhair https://t.co/Jiu1HTdg8y +06/26/2015,Actors,@TaySchilling,The Supreme Court rules that the Constitution guarantees a right to same-sex marriage http://t.co/UkgHGByYyq http://t.co/kWXRKL0Dst +06/26/2015,Actors,@TaySchilling,"To all those in the UK, #TheOvernight is in cinemas today! Hope you enjoy! https://t.co/R3nn8z256w" +06/25/2015,Actors,@TaySchilling,http://t.co/6siHWCFM1t audience participation. #TheOvernight #clarification +06/25/2015,Actors,@TaySchilling,"RT @rachelzarrell: ""Masshole"" added to the Oxford English Dictionary. Along with +""TomFuckinBrady."" http://t.co/gytFQCMs7P" +06/25/2015,Actors,@TaySchilling,RT @julieburtonwmc: Actress Meryl Streep sends a letter to each and every member of Congress http://t.co/kgVdh7HeJN @womensmediacntr @eraco… +06/25/2015,Actors,@TaySchilling,"RT @NETAPORTER: She’s out of lock up and charming the socks off us, meet @OITNB’s @TaySchilling. #THEEDIT http://t.co/Or7EMTgIWE http://t.…" +06/23/2015,Actors,@TaySchilling,So much fun shooting last week with my buddy @HarryJoshHair. See the full video on @JohnFriedaUS social channels #ad http://t.co/srPwub4PAy +06/23/2015,Actors,@TaySchilling,"@tswift5everr I beg to differ. However, I sincerely appreciate the sentiment. :) x" +06/23/2015,Actors,@TaySchilling,@RheAy2 I always imagined she didn't. It's ambiguous tho. What did you think? +06/23/2015,Actors,@TaySchilling,@YaelStone @Overnight_Movie Ya Ya! Dear friend. +06/23/2015,Actors,@TaySchilling,@holz_emison soon! +06/23/2015,Actors,@TaySchilling,@givemamaasmile here! +06/23/2015,Actors,@TaySchilling,@mpride80 @OITNB thank you!! +06/23/2015,Actors,@TaySchilling,"Gender equality isn’t just about women. It’s about a world with equal +opportunity for all. I support #ERANow http://t.co/5b0GLeKrft" +06/17/2015,Actors,@TaySchilling,RT @FilmLinc: Critics are calling THE OVERNIGHT a modern-day BOB & CAROL & TED & ALICE. Sneak preview tmrw! http://t.co/jIMfdnQY3L http://t… +06/16/2015,Actors,@TaySchilling,"#Repost theovernight with repostapp. +・・・ +Tomorrow, see mradamscott, Judith Godrèche, Jason… https://t.co/dgSR3Mrhgc" +06/16/2015,Actors,@TaySchilling,"#Repost theovernight with repostapp. +・・・ +Your circle should be well rounded and supportive. Keep it… https://t.co/ihKfZ526l0" +06/12/2015,Actors,@TaySchilling,Binge watching? Check out @JohnFriedaUS to see how @HarryJoshHair did my hair for the Season 3 Fan Event #JFstyle #ad http://t.co/D9BFTJ5Udb +06/11/2015,Actors,@TaySchilling,This is happening @Oitnb #orangecon #season3 #Oitnb @msjackiecruz @netflix https://t.co/uqFlAc2atJ +06/11/2015,Actors,@TaySchilling,Headed to get styled by @HarryJoshHair for Season 3 Fan Event. Stay tuned to @JohnFriedaUS for details. #JFStyle #ad http://t.co/BUaWHbyy8V +06/10/2015,Actors,@TaySchilling,"@mradamscott,Jason Schwartzman, @Judith_Godreche, &I got a little crazy. Here's a #NSFW trailer for @Overnight_Movie: http://t.co/ddNQBt9jRW" +06/05/2015,Actors,@TaySchilling,@UzoAduba 🍎🙏❤️ +06/05/2015,Actors,@TaySchilling,Not bad @uzoaduba #Oitnb #S3 #realsightseeing #sorrynotsorry https://t.co/knl7saOkdh +06/05/2015,Actors,@TaySchilling,@uzoaduba @lavernecox @lauraprepon https://t.co/U9zmSZx9Ka +06/05/2015,Actors,@TaySchilling,RT @LauraPrepon: Behind the scenes at Rolling Stone cover shoot! Still surreal 😊 https://t.co/WXIgGG4Znm +06/03/2015,Actors,@TaySchilling,"This felt really special. Thank you so much, rollingstone #OITNB #S3 https://t.co/aETfZgbyMr" +05/21/2015,Actors,@TaySchilling,Congratulations! https://t.co/OSLLMxPzaS +05/20/2015,Actors,@TaySchilling,Beautiful work! Thank you! https://t.co/KAebESKBkE +05/20/2015,Actors,@TaySchilling,RT @The_Gilbert_23: .@TaySchilling @GameofThrones CITY should support local animal shelter #DubrovnikShame PLS Help us fight! http://t.co/i… +05/19/2015,Actors,@TaySchilling,RT @Variety: .@shondarhimes and @OITNB's Jenji Kohan Honored for 'Changing the Face of Media' http://t.co/UKNhoRavxO http://t.co/xNIewxOYTI +05/19/2015,Actors,@TaySchilling,"RT @shondarhimes: Yes, I did. https://t.co/fUld7ddLbi" +05/19/2015,Actors,@TaySchilling,"RT @MajoritySpeaks: ""My flaws are gorgeous."" - @shondarhimes #WhatAFeministLooksLike" +05/19/2015,Actors,@TaySchilling,"RT @MajoritySpeaks: ""Your singular truth, your most individual story, is what's valuable."" - Taylor Schilling introducing Jenji Kohan #What…" +05/19/2015,Actors,@TaySchilling,"RT @msmagazine: ""Jenji has always had a saying: 'If they don't like it, fuck em.'"" - Matthew Weiner introducing Jenji Kohan #WhatAFeministL…" +05/08/2015,Actors,@TaySchilling,♥️ https://t.co/dGgYVV9hrA +05/08/2015,Actors,@TaySchilling,Thank you Tasho https://t.co/0vCPVn3RZW +05/08/2015,Actors,@TaySchilling,#Overnight https://t.co/RH2ivdeSlF +05/07/2015,Actors,@TaySchilling,"Aw thanks Piper! (Come back to NYC, we miss you) https://t.co/9vkFlWgXeu" +05/06/2015,Actors,@TaySchilling,@Carrie_Rachel @CriticsChoice #portlandia 🎉🎉 +05/06/2015,Actors,@TaySchilling,@nlyonne @OITNB@LPToussaint @CriticsChoice @netflix @MichaelHarney4 @TheKateMulgrew @UzoAduba @Lavernecox @LauraPrepon @thedanieb @SheIsDash +05/06/2015,Actors,@TaySchilling,@LPToussaint @CriticsChoice 🙌💃 +05/06/2015,Actors,@TaySchilling,Yaaaaaay @OITNB #CriticsChoice https://t.co/dJJvUcfHxn +04/30/2015,Actors,@TaySchilling,"June 12th! I can't wait. Until then... +#OITNB #S3 #SorryNotSorry #SoSoon https://t.co/t96e9VZhgN" +04/28/2015,Actors,@TaySchilling,I had a wonderful experience with this. Thank you! https://t.co/7YTRE81VLb +04/23/2015,Actors,@TaySchilling,RT @WPA_NYC: One week from today! Will we see you at The Boathouse?? Tickets: http://t.co/1Txo7ue9qM http://t.co/6Hxnni8GcB +04/22/2015,Actors,@TaySchilling,@mikerocks13 @mradamscott @TribecaFilmFest yay! +04/21/2015,Actors,@TaySchilling,🙌 #TheOvernight https://t.co/Nn0VOyNWsv +04/21/2015,Actors,@TaySchilling,“@TalkStoopNBC: Thanks for STOOPing by @TaySchilling! This was a faux-llet to remember. http://t.co/Km45x5JRJP” Xoxoxox +04/21/2015,Actors,@TaySchilling,"RT @EW: .@TaySchilling, @MrAdamScott find 'parental bliss' in 'The Overnight' trailer: http://t.co/2dlsyjDfxB http://t.co/qf119w0eLm" +04/21/2015,Actors,@TaySchilling,"RT @mradamscott: Here's the first trailer for THE OVERNIGHT out June 19! +@TaySchilling @CoconutRecords @patrick_brice +http://t.co/AQYnp6vF88" +04/21/2015,Actors,@TaySchilling,"@JasonAllen127 @USATODAY was a real pleasure today, Jason!" +04/09/2015,Actors,@TaySchilling,"BRAVE Uz, I'm cheering for you. And donating. +Check out this video and lend some support! X + http://t.co/LlxQh7UWzQ" +04/08/2015,Actors,@TaySchilling,@bakedvause 13 +04/08/2015,Actors,@TaySchilling,@vausemanobs June 12th! (I'm excited too) +04/08/2015,Actors,@TaySchilling,@tardisofbones @morrillaswennn Happy Birthday! May all your wishes come true... +04/08/2015,Actors,@TaySchilling,@Halestorm54 thank you for watching! +04/08/2015,Actors,@TaySchilling,“@NextOnTCM: FONDA ON FONDA (1992) Jane Fonda recalls her father Henry's career. 11:30 PM ET [cc] #TCM” Love this. +04/04/2015,Actors,@TaySchilling,Happy Birthday @daniellethorpe_ ! I got you a puppy! (Look in your purse.) +03/27/2015,Actors,@TaySchilling,@kathrynnikols @OITNB @UzoAduba me tooooooo! +03/27/2015,Actors,@TaySchilling,@tardisofbones @badwolfs belated happy Bday! Hope all your wildest come true 💕 +03/27/2015,Actors,@TaySchilling,"""@vausemanobs:@TaySchilling still can't believe how wonderful a month in the country was!Looking forward to season 3!thank you for watching!" +03/27/2015,Actors,@TaySchilling,"""@TheG1rlWhoLived: @TaySchilling I just got accepted into Fordham university! Fellow rams?? :) Go Rams! Congratulations and enjoy!" +03/26/2015,Actors,@TaySchilling,"""@Jenna_PR: @OITNB Do you like the fanbook I made @TaySchilling? http://t.co/QXxL4XGK99…""thank you Jenna!" +03/20/2015,Actors,@TaySchilling,"""@thenarobinson: Can't believe that this sign is still relevant. http://t.co/zdcTAVS2cY"" #OtisByrd" +02/28/2015,Actors,@TaySchilling,So happy happy to see these friends @jonesarah @msjackiecruz at the closing of #amonthinthecountry… https://t.co/hFOBfC104R +02/28/2015,Actors,@TaySchilling,@mons0423 @classicstage it has been coooold! Thanks for coming :) +02/28/2015,Actors,@TaySchilling,@howironickylie @classicstage thank you for coming! +02/28/2015,Actors,@TaySchilling,@TinaTurnbowMUP thank you sweet T. Wonderful to have you there x +02/28/2015,Actors,@TaySchilling,@brianna_lynnnn Happy Birthday! +02/28/2015,Actors,@TaySchilling,Last performance of #aMonthInTheCountry this afternoon. Thank you @classicstage. It has been thrilling. +02/28/2015,Actors,@TaySchilling,RT @classicstage: Only two performances left of A MONTH IN THE COUNTRY! http://t.co/9ja5qkXapo +02/27/2015,Actors,@TaySchilling,Ferocious and firey @Sleater_Kinney amazing show last night @Carrie_Rachel @corintuckerband @jazzzhand +02/11/2015,Actors,@TaySchilling,I love my new t-shirt. @ReproRights #waronwomen http://t.co/xRReDxAUUf http://t.co/hDDRZzVBTk +02/08/2015,Actors,@TaySchilling,RT @BlackBook: From Most Terrifying Moments to Hottest New Stars: 10 #Sundance Moments That Have Us Talking http://t.co/OE3cvTxGGJ http://t… +02/08/2015,Actors,@TaySchilling,Patricia Arquette Grows Into ‘Boyhood’ http://t.co/w0BcnHZhrE via @nytvideo do I love this lady. +02/05/2015,Actors,@TaySchilling,RT @RoadsBestTravel: Added to the list of reasons why #iheartny: #AMonthInTheCountry @classicstage starring @TaySchilling & #peterdinklage … +02/05/2015,Actors,@TaySchilling,"You made my night x""@selenis_leyva: You need to see @TaySchilling and this amazing cast!! My Blanca!! #Amazing http://t.co/By0Heyj4t1""" +02/04/2015,Actors,@TaySchilling,RT @patrick_brice: HOLY MOLY! THE OVERNIGHT is headed to @sxsw! Congrats @orchtweets @mradamscott @Judith_Godreche @TaySchilling http://t.c… +01/31/2015,Actors,@TaySchilling,@joelmgarland @classicstage so good to see you tonight x +01/26/2015,Actors,@TaySchilling,Congratulationssss to @UzoAduba and the entire utterly brilliant cast of #oitnb on the @SAGawards +01/23/2015,Actors,@TaySchilling,@nlyonne @MarinIreland ❤️ +01/20/2015,Actors,@TaySchilling,RT @KellyandMichael: #OITNB's #TaylorSchilling! #KellyandMichael http://t.co/Iv8I3OwL1t +01/20/2015,Actors,@TaySchilling,Getting ready for silliness with @kellyandmichael #AMonthInTheCountry http://t.co/NXVH71wDGS +01/20/2015,Actors,@TaySchilling,@patrick_brice @mradamscott @coconutrecords #TheOvernight http://t.co/PoDrrRvjGR +01/04/2015,Actors,@TaySchilling,"""Everybody needs to be understood."" http://t.co/nFEMn5X860" +06/28/2018,Actors,@LauraPrepon,#ThrowbackThursday to some of my fav #OITNB Vause promo shots. 🍊Can’t wait for you guys to see season 6! https://t.co/8VwLVUPq6w +06/25/2018,Actors,@LauraPrepon,Fresh sugar snaps from the farmers market. Another cooking trick my mother taught me: pull the strings off before s… https://t.co/pukBRGT9Y4 +06/21/2018,Actors,@LauraPrepon,My friend @ambertamblyn wrote a powerful novel that made Vanity Fair's Ultimate Fiction List. Pre-order it today:… https://t.co/6ZPzMeH14e +06/18/2018,Actors,@LauraPrepon,"Yogurt Parfaits for breakfast this AM. SO easy to make. I love to use grassfed plain yogurt, gluten free banana gra… https://t.co/6kYz5yJt9M" +06/15/2018,Actors,@LauraPrepon,Thanks @Variety for including me in this piece on directing! #FemaleFilmmakerFriday https://t.co/GRiKFGapOe +06/13/2018,Actors,@LauraPrepon,Moms ask me how I have time to make baby food everyday… This is a great tool—it steams & blends like a food process… https://t.co/U9EXvi0N67 +06/09/2018,Actors,@LauraPrepon,"Honored to be part of LGBTQ Pride in Warsaw, Poland. #OITNB https://t.co/c1YcFopIFG" +06/08/2018,Actors,@LauraPrepon,"RT @StopThePig: @LauraPrepon @netflix A huge billboard in Warsaw, Poland for the Equality Parade (9/06)! @ParadaRownosci https://t.co/xBsQt…" +06/08/2018,Actors,@LauraPrepon,"This #Vause temp tattoo is going to be part of @Netflix’s Pride Celebration in Warsaw, Poland tomorrow! The… https://t.co/lKoNwGM9pk" +06/07/2018,Actors,@LauraPrepon,"A new movie, @heartsbeatloud - from the director of THE HERO, @brettghaley, and one of my amazing co-stars,… https://t.co/I3jOSF8Aoy" +06/05/2018,Actors,@LauraPrepon,"Bye Bye, Litchfield. Hello, #OITNBs6 - coming July 27. 🍊#OITNB https://t.co/MaHeT2C2ko" +06/05/2018,Actors,@LauraPrepon,"RT @OITNB: Bye bye, Litch. https://t.co/Y9tWQtIO37" +06/05/2018,Actors,@LauraPrepon,What I’m cooking for Ella today: fresh greens from the farmers market. Basil is finally here! Purple sweet potato &… https://t.co/2xnCYBsjC3 +06/03/2018,Actors,@LauraPrepon,Just Married! Thank you for all the love and support. Wishing all of us the good stuff! https://t.co/0UrrQbZ6D5 +05/31/2018,Actors,@LauraPrepon,Waiting for #OITNB season 6 like… https://t.co/xi09xmOPCv +05/30/2018,Actors,@LauraPrepon,My newest fav product are these great biodegradable sandwich bags! I always need things for food storage and most s… https://t.co/a51lTfGvLu +05/24/2018,Actors,@LauraPrepon,This is great opportunity for aspiring female filmmakers: @att @hellosunshine Filmmaker Lab from @FreshFilmsDT will… https://t.co/qAE4eaEtuz +05/22/2018,Actors,@LauraPrepon,Miniature spaghetti Bolognese for the 👶🏼. My mother always taught me presentation is very important! ;) https://t.co/C14DVs5rrX +05/19/2018,Actors,@LauraPrepon,Had a great time talking about last season of #OITNB with my #orangefamily last night. ❤️🍊 Can’t wait for you to se… https://t.co/oT22ULBTdD +05/17/2018,Actors,@LauraPrepon,"I was lucky enough to discover this restaurant during #Cannes2018, Le Maschou. You make your own salad, then watch… https://t.co/RY222Ki1el" +05/16/2018,Actors,@LauraPrepon,"If anyone needs me, I’ll be right here on the #FrenchRiviera. #Cannes2018 https://t.co/m5MjsBlgeM" +05/14/2018,Actors,@LauraPrepon,I spent my first official #MothersDay in Cannes! Happy belated Mother’s Day to all you bad-ass moms out there! Than… https://t.co/egBf91uCIh +05/12/2018,Actors,@LauraPrepon,#FlashbackFriday to drinking #TheStashPlan broth while warming up during our winter scenes! Congrats to everyone wh… https://t.co/TUUHkYmzpR +05/10/2018,Actors,@LauraPrepon,#ThrowbackThursday to directing my first episode of #OITNB. Looking forward to getting back behind the camera. https://t.co/Isbhk4W4RF +05/08/2018,Actors,@LauraPrepon,"Current obsession - trying to perfect my at-home latte. Any baristas out there? Advice welcome! Also, favorite coff… https://t.co/4XLb3rOufK" +05/03/2018,Actors,@LauraPrepon,#ThrowbackThursday to having a great time on the red carpet with @TaySchilling for #OITNB! Love my #orangefamily. 🍊… https://t.co/k6hkV4C5JI +05/02/2018,Actors,@LauraPrepon,"I like prepping & cooking chicken with big chicken sheers. Then, I can cut and check to make sure they are fully co… https://t.co/w0zBgFP4dJ" +04/29/2018,Actors,@LauraPrepon,"RT @ArthurKade: .@LauraPrepon joined me on the show for a terrific one on one about her cookbook #TheStashPlan, new season of @OITNB, direc…" +04/26/2018,Actors,@LauraPrepon,"#ThrowbackThursday to fishing in Cape May, NJ when I caught my first porgy. Looking forward to the nice weather so… https://t.co/mwPS0YRC7M" +04/24/2018,Actors,@LauraPrepon,It’s finally starting to feel like spring in NYC! Fresh basil and tulips from the farmers market. 🌷🌷 https://t.co/GF7FTnHTG9 +04/19/2018,Actors,@LauraPrepon,"RT @ArthurKade: Wonderful chat with @lauraprepon about #TheStashPlan, season 6 of @OITNB, becoming a mother and her #MothersDay plans, her…" +04/19/2018,Actors,@LauraPrepon,RT @thebrooklynmom: Excited to speak to @LauraPrepon today at the @themoms Mamarazzi event about #TheStashPlan book out in paperback follo… +04/19/2018,Actors,@LauraPrepon,"Post workout, pre-coffee / +post-coffee, post glam - thanks to Dayna Goldstein (hair) & Victor Henao (makeup) for ma… https://t.co/dQmVbTFhfa" +04/19/2018,Actors,@LauraPrepon,"RT @themoms: Get ready to take the 21 Day challenge to shed weight, feel great and take charge of your health with .@LauraPrepon #StashPlan…" +04/18/2018,Actors,@LauraPrepon,"Between baby, laundry, & work, getting to a cycle class (one of my fav workouts) is tough. I started to make my own… https://t.co/4UtuesiHxX" +04/17/2018,Actors,@LauraPrepon,"RT @JohnFugelsang: Today on @SXMInsight we’re airing my conversation with @lauraprepon on her excellent new book, and other matters, and it…" +04/17/2018,Actors,@LauraPrepon,So great seeing how you guys are doing on #TheStashPlan challenge! Keep sending pics of what you’re making - I love… https://t.co/SyaLnKlEPY +04/13/2018,Actors,@LauraPrepon,"RT @TouchstoneBooks: FWIW, @LauraPrepon was way ahead of the curve on bone broth. Why not make some this weekend? https://t.co/NwfdtFsEkk" +04/12/2018,Actors,@LauraPrepon,RT @JILLFRITZO: ICYMI: @LauraPrepon was om @thechew yesterday cooking up Springtime favorites! https://t.co/Ya8l1UtKAX +04/12/2018,Actors,@LauraPrepon,#ThrowbackThursday to #That70sShow on @TVGuide. PS - Such fond memories from that show! Not so much of polyester an… https://t.co/oYUONEz2Fy +04/11/2018,Actors,@LauraPrepon,RT @thechew: .@LauraPrepon dishes on Season 6 of #OrangeistheNewBlack! #OITNB #TheChew https://t.co/N0MUKNyPlv +04/11/2018,Actors,@LauraPrepon,"RT @thechew: .@lauraprepon's Poached Halibut will be one of the easiest dishes you'll ever make! Not to mention, there is hardly any clean-…" +04/11/2018,Actors,@LauraPrepon,"RT @thechew: OMG WE ARE SO EXCITED!! Also, she’s cooking up one of the easiest dishes EVER! 😍 https://t.co/JAYswYKhlw" +04/11/2018,Actors,@LauraPrepon,Watch me today on @thechew at 1pm! Always love hanging and cooking with these guys. https://t.co/wJ92QVxzwK +04/09/2018,Actors,@LauraPrepon,@sarah_bruty You can add water to that when reheating. Next time try using more water and on LOW. Every slow cooker… https://t.co/t5527DMgCa +04/09/2018,Actors,@LauraPrepon,"@sarah_bruty When that’s happened with me in the past, next time I added more water. You didn’t mess anything up! T… https://t.co/tJZk2MIMvA" +04/09/2018,Actors,@LauraPrepon,"New baby food combo I’m trying, mixing in greens with Japanese Yams. The yams are sweet and help to make spinach mo… https://t.co/sbVyi52biZ" +04/06/2018,Actors,@LauraPrepon,RT @ABC_Publicity: New Release: ABC’s @thechew Is Serving Up Food That Makes You Go ‘MMMMM!’ All Week Long With Guests @iamcamilaalves McCo… +04/05/2018,Actors,@LauraPrepon,#ThrowbackThursday to filming one of my favorite #OITNB episodes with @loripetty! I talked about it on Facebook Liv… https://t.co/dlqOOtT1ms +04/04/2018,Actors,@LauraPrepon,"RT @LiveKellyRyan: Bone Broth is good for leaky gut repair, looking and feeling young, and better sleep. For recipe: https://t.co/fvyC7BDAl…" +04/03/2018,Actors,@LauraPrepon,RT @LauraVogel: Producing a Facebook Live session for @lauraprepon’s #TheStashPlan paperback release with @catgreenleaf! Check out Laura’s… +04/03/2018,Actors,@LauraPrepon,RT @JILLFRITZO: ICYMI: @LauraPrepon was on Live with Kelly & Ryan talking #StashPlan https://t.co/az5WbDNaRl +04/03/2018,Actors,@LauraPrepon,RT @RyanSeacrest: Bone broth is the new black @lauraprepon https://t.co/QmPpOGNlNH +04/03/2018,Actors,@LauraPrepon,Watch me live on @LiveKellyRyan NOW! Thanks to my glam squad Dayna Goldstein (hair) & Victor Henao (makeup).… https://t.co/RqytCkxdVA +03/31/2018,Actors,@LauraPrepon,Come hang with me on Tuesday at 2pm EST! I’ll be doing a Facebook Live Q&A about #TheStashPlan with @CatGreenleaf.… https://t.co/qCuZ2PSr6u +03/30/2018,Actors,@LauraPrepon,"In between work and baby, it’s so easy to make excuses to skip working out. Make it work however you can! For me th… https://t.co/JxeyIlNyIH" +03/29/2018,Actors,@LauraPrepon,"Testing out a new stir fry recipe! Base sauce: bone broth, garlic, shallots, Braggs amino acids, a little farm fres… https://t.co/S3FkGNzBqB" +03/22/2018,Actors,@LauraPrepon,Looking ahead to some nicer weather in NY! Spring is out there somewhere… #tbt #ThrowbackThursday https://t.co/9doy88W2jg +03/21/2018,Actors,@LauraPrepon,It’s the first time I’m holding #TheStashPlan in paperback! So exciting to finally have it in-hand. It’s an honor t… https://t.co/xkh9Tigsr6 +03/20/2018,Actors,@LauraPrepon,"Just saw @TheNewGroupNYC’s “Good for Otto” and it was unbelievable. If you’re in NYC, I highly suggest checking it… https://t.co/ctPp9DlBl8" +03/15/2018,Actors,@LauraPrepon,I want these in my size. #laundryday ❤️💫 https://t.co/UQYoahKBRK +03/12/2018,Actors,@LauraPrepon,#TheStashPlan is coming out on paperback! Have you pre-ordered your copy? Make sure you have it in time for the cha… https://t.co/KSzCFQFRRX +03/08/2018,Actors,@LauraPrepon,Search interest in “female directors” was 30% higher in 2017 than in 2016 in the US. See more #IWD2018 trends at… https://t.co/lavb5UGAJ5 +03/08/2018,Actors,@LauraPrepon,Thanks for all the birthday wishes and messages!! +03/06/2018,Actors,@LauraPrepon,Exciting news! #TheStashPlan is coming out in paperback on April 3! We’re also doing a new 21 day challenge startin… https://t.co/W8qD51BBvv +03/05/2018,Actors,@LauraPrepon,I have some exciting #TheStashPlan news to share with you tomorrow… stay tuned! +02/28/2018,Actors,@LauraPrepon,"Even while out of town, I make a nutritious broth to nourish my family. I’ll cook most things in it for nutrients a… https://t.co/xe3YDKxkmM" +02/27/2018,Actors,@LauraPrepon,Morning coffee with the Pacific. https://t.co/W28fiWWZVp +02/20/2018,Actors,@LauraPrepon,Hope everyone had a great long weekend! A must for new parents—a staycation! First time for me. Didn’t realize how… https://t.co/IE7o5n8I9p +02/15/2018,Actors,@LauraPrepon,#ThrowbackThursday to hanging with @chelseahandler while shooting @NBCChelsea! #tbt https://t.co/7o0FsrZrbB +02/14/2018,Actors,@LauraPrepon,A pot full of organic bones makes my week! Nourishing my family with ancient ways. People have been stewing bones f… https://t.co/FXClqEcnyM +02/09/2018,Actors,@LauraPrepon,I love a change! Finished filming #OITNB for the season and chopped off the locks. https://t.co/CwImDZrHQk +02/08/2018,Actors,@LauraPrepon,Last day shooting #OITNB season 6 with my beautiful co-star. Until the next one! #orangefamily 🍊❤️ https://t.co/9nXr4mKUna +02/05/2018,Actors,@LauraPrepon,"This is my infrared sauna. It’s amazing for detox, inflammation, & overall revitalization. It helps me stay healthy… https://t.co/ArVrhZbF5H" +02/02/2018,Actors,@LauraPrepon,Directing my first short film. Thankful for the opportunity to grow as a director and for my mentors along the way.… https://t.co/Nzp54oYlxl +01/30/2018,Actors,@LauraPrepon,"Filming in the snow again. I’m an east coast girl, but filming in Hawaii sounds gooood.💁🏻‍♀️❄️😅 https://t.co/QqtwQAPKJY" +01/26/2018,Actors,@LauraPrepon,Picking up fresh veggies at the farmers market. Have you tried any fun dishes recently? Need some ideas for dinner…… https://t.co/TxexziF4Jo +01/24/2018,Actors,@LauraPrepon,Just wrapped directing this episode of #OITNB. Can’t wait for you guys to see next season! https://t.co/fUfRizoQaG +01/18/2018,Actors,@LauraPrepon,#ThrowbackThursday to directing these amazing ladies last year during Season 5 of #OITNB 🍊❤️ #tbt #orangefamily https://t.co/OLzS4bVzwA +01/16/2018,Actors,@LauraPrepon,Back behind the camera directing #OITNB! Love our amazing #orangefamily! ❤️🍊 https://t.co/RSGpkYctCF +01/13/2018,Actors,@LauraPrepon,"#OITNB doesn’t feel like work, even on a weekend. Gotta love what you do! #orangefamily https://t.co/JLoVaphwkq" +01/11/2018,Actors,@LauraPrepon,#ThrowbackThursday to my mom looking gorgeous behind the camera. Directing runs in the family ❤️ #TBT https://t.co/PYxtBkquID +01/07/2018,Actors,@LauraPrepon,"The past few days may be some of the coldest weather NYC’s ever had, but luckily it’s still warmer than the top of… https://t.co/mUiQgZkdMU" +01/05/2018,Actors,@LauraPrepon,RT @CSiriano: Loved this #goldenglobe moment with the beautiful @LauraPrepon in custom Siriano looking amazing! #TBT #glamour #awardseason… +01/01/2018,Actors,@LauraPrepon,"Time's up on silence. Time's up on waiting. Time's up on tolerating discrimination, harassment, and abuse. #TimesUp… https://t.co/vgbjnZr0Wd" +12/30/2017,Actors,@LauraPrepon,Never get tired of my recipes from #TheStashPlan. They really are my favorites! Making the quinoa tabbouleh today. https://t.co/3yCUS7tSnV +12/21/2017,Actors,@LauraPrepon,#ThrowbackThursday to Christmas last year with my nephew! I hope everyone has a wonderful holiday! #TBT https://t.co/wwSsO9xO21 +12/19/2017,Actors,@LauraPrepon,You can take the girl outta Jersey but you can’t take Jersey outta the girl . . . just got a cheetah print baby bla… https://t.co/4XqKCeXlom +12/14/2017,Actors,@LauraPrepon,So happy we got nominated again for the #SAGAwards Outstanding Performance by an Ensemble in a Comedy Series! And c… https://t.co/Sn57vIq4ux +12/11/2017,Actors,@LauraPrepon,We had the first snow of the season this weekend - guess I won’t be this hot anytime soon… #OITNB https://t.co/i5WDxe6Egr +12/07/2017,Actors,@LauraPrepon,#ThrowbackThursday to @NBCChelsea with my girl @AliWong who you can now see killing it on @AmericanWifeABC. #TBT https://t.co/BkuPT6nUTf +12/05/2017,Actors,@LauraPrepon,"With a busy schedule, falling behind on laundry, and an early call time - sometimes you gotta resort to using your… https://t.co/BP2ZVaNZqS" +12/01/2017,Actors,@LauraPrepon,Made some homemade granola for breakfast. A cool trick is to toss in an egg white before baking for golden color an… https://t.co/HbmZWkJxn8 +11/29/2017,Actors,@LauraPrepon,Always love hanging with my girl @TaySchilling! Hard at work on season 6 with my partner in crime. #OITNB… https://t.co/pIAoLRnT47 +11/22/2017,Actors,@LauraPrepon,Thanks for all the tips! You guys are the best. Hope everyone has a great Thanksgiving! +11/20/2017,Actors,@LauraPrepon,Having a little trouble with the new crib… Any tips on traveling with a newborn so I can avoid stuff like this?!… https://t.co/wylinGUhEY +11/18/2017,Actors,@LauraPrepon,"My girl @ambertamblyn released a collection with @mysisterorg to fight assault, exploitation, and trafficking. 25%… https://t.co/xRUeZNsy2J" +11/17/2017,Actors,@LauraPrepon,"#fbf to my press tour for #TheStashPlan… If you haven’t checked it out yet, you can learn more about my first book… https://t.co/jR18ofzBMR" +11/14/2017,Actors,@LauraPrepon,"Coffee shops might not be open in time for my early #OITNB call time, but luckily my own organic cold brew moonshin… https://t.co/5kp4vMe6s5" +07/01/2017,Actors,@LauraPrepon,Love this BTS pic of me and #samelliott from @theheromovie17 ---it's out nationwide now. very… https://t.co/xwUipAoAaQ +06/21/2017,Actors,@LauraPrepon,@theheromovie17 heads to more cities across the US this Friday!!! https://t.co/CHOdrlGl2S +06/20/2017,Actors,@LauraPrepon,Loved directing these amazing actors and actresses on @oitnb!! Look forward to the next one!… https://t.co/TImNkvN8ug +06/10/2017,Actors,@LauraPrepon,About last night! @oitnb Premiere event NYC. Thank you @josueperezhair for my locks! and… https://t.co/NlKINmn86t +06/09/2017,Actors,@LauraPrepon,@TheHeroMovie is now playing in NY & LA! Opens nationwide this June/July. Get tickets now: https://t.co/eDWXAKPmwO https://t.co/o2nTmGPMF1 +06/09/2017,Actors,@LauraPrepon,Season 5 of #oitnb is now streaming!!!!!!! https://t.co/PAYbDvioXO +06/09/2017,Actors,@LauraPrepon,Thank you @nytimesphoto for making us a Critic's Pick!!! @theheromovie17 ❤️ https://t.co/JgaJRWuNA4 +06/08/2017,Actors,@LauraPrepon,I WILL be strong! #oitnb @oitnb #june9th #alexvause https://t.co/ad7NhIfeQ1 +06/08/2017,Actors,@LauraPrepon,1 more day! The Hero on the big screen! @theheromovie opens NY/LA TOMORROW & nationwide in June/July! GET TICKETS:… https://t.co/mYCulKvehx +06/08/2017,Actors,@LauraPrepon,About to get my @siriusxm game on! 🤰🏻💞let's talk @theheromovie17 and @oitnb !! https://t.co/aYX28iYUvV +06/08/2017,Actors,@LauraPrepon,En route to @LiveKelly 🍓🍓🍓Breakfast of champions! @theheromovie17 @oitnb https://t.co/JgwLlMKVB8 +06/08/2017,Actors,@LauraPrepon,About last night! @theheromovie17 NYC. I hope you guys this special movie! thank you for my… https://t.co/12oRBd6p5O +06/06/2017,Actors,@LauraPrepon,Join me and Brett Haley for a special opening weekend of Q&A's! Get tickets now: https://t.co/eDWXAKxL8e https://t.co/OU60zEExwp +06/01/2017,Actors,@LauraPrepon,Jumpin for jumpsuits with @instyle #oitnb @OITNB https://t.co/asRVApj1DW +05/16/2017,Actors,@LauraPrepon,Season 5!! Comin' atcha June 9th! @oitnb #alexvause 😈 https://t.co/75BcbwzyHp +05/12/2017,Actors,@LauraPrepon,Go to manueladtla and check out this awesome event one of my fave chefs is doing. It supports… https://t.co/GZD9CyPKTR +05/12/2017,Actors,@LauraPrepon,Love this shot of @brettghaley and I going over a scene together. He taught me how to read… https://t.co/6RFlaE0WlP +05/09/2017,Actors,@LauraPrepon,Enough is enough. Get ready for June 9th! @OITNB #netflix #season5 https://t.co/KM4v1k7ytu +05/08/2017,Actors,@LauraPrepon,@oitnb season 4 is avail tmrrw to own on blueray and DVD! https://t.co/fkhPUN0wnc +05/07/2017,Actors,@LauraPrepon,Awesome fan art! #bestfansever @oitnb #season5 June 9th!! https://t.co/40W4aofK5N +04/20/2017,Actors,@LauraPrepon,Can't wait for you guys to hang out with Charlotte on June 9th!! She's pretty cool. 😁❤😎… https://t.co/Flmzi43ipU +04/17/2017,Actors,@LauraPrepon,"The trailer for @theheromovie17 is here! Very excited for you all to see this film! +https://t.co/V6xCgifdkw" +04/12/2017,Actors,@LauraPrepon,First 60 second tease of Season 5! @oitnb #season5 #june9 https://t.co/MlQQjmoJpX +04/11/2017,Actors,@LauraPrepon,Our official poster for theheromovie Can't wait for you guys to see it! Comes out same day as… https://t.co/n7nr7afdXq +04/02/2017,Actors,@LauraPrepon,Nothing says Springtime like tulips! thank you @thebouqsco for my beautiful spring flowers!… https://t.co/odBAAS1zJE +02/04/2017,Actors,@LauraPrepon,"""Sorry John...I don't remember."" #pokerdayz #johnnychan #daysofrounders https://t.co/HuyuDMrqqT" +01/30/2017,Actors,@LauraPrepon,Woohoo!!! Congrats to all of my beautiful co-stars!!! @oitnb #ladiesoflitchfield #orangefamily 🍊🍊❤ https://t.co/qJsATQ8DNJ +01/23/2017,Actors,@LauraPrepon,Spotlight Award. creativecoalition So honored. #sundance2017 #charlotte #thehero ☺☺❤🎥 https://t.co/n738rQOjC4 +01/23/2017,Actors,@LauraPrepon,Honored to receive the Spotlight award for THE HERO. Thank you creativecoalition for this!!!… https://t.co/JgtAXu0yW2 +01/22/2017,Actors,@LauraPrepon,#cappuccinoart 😊🙊 https://t.co/kI8qknYna8 +01/22/2017,Actors,@LauraPrepon,There's always a first for everything. A talented barista put my face on a cappuccino. 😊☺☕️☕️… https://t.co/0pS1gEsj41 +01/22/2017,Actors,@LauraPrepon,"Sundance close-ups, behind the scenes. thanks @tinaturnbowmup and jonathan_colombini for my snow… https://t.co/71O5V91wVI" +01/22/2017,Actors,@LauraPrepon,Behind the scenes! Press day THE HERO. #sundance2017 📷@tinaturnbowmup https://t.co/9EgWasxxOB +01/22/2017,Actors,@LauraPrepon,Press day for THE HERO! #sundance2017💕 📷@TinaTurnbowMUP https://t.co/66s9Nyul4Z +01/22/2017,Actors,@LauraPrepon,Premiere went great!! So happy to be a part of this movie. thank you @sundanceorg for having us in competition!!… https://t.co/xwpHFOYPSe +01/22/2017,Actors,@LauraPrepon,Premiere of THE HERO at @sundanceorg snow glam: @tinaturnbowmup and @jonathan_colombini ❄❄❄💓🎥 https://t.co/7dGfSA5YrA +01/22/2017,Actors,@LauraPrepon,About to head to the premiere of The Hero. Can't wait to see it! Sundance glam squad: @jonathan_colombini… https://t.co/1EOKXwcFx7 +01/22/2017,Actors,@LauraPrepon,"Women's March, Sundance. #womensrightsarehumanrights https://t.co/gnFQRvJhtM" +01/22/2017,Actors,@LauraPrepon,"""I can't believe we still have to protest this $#it!"" Love, not hate--makes America great. #womensmarch… https://t.co/rPc9XJ1aET" +01/20/2017,Actors,@LauraPrepon,Sundance here we come! Very excited and proud of this film. thank you @variety for listing us as a #mustsee 🎬🎥💓 https://t.co/kV0oKPJ5SI +12/14/2016,Actors,@LauraPrepon,Thank you @hollywoodreporter !! #BestTVof2016 https://t.co/MVQ2Rv2pnu +12/14/2016,Actors,@LauraPrepon,Congrats 2 my amazing co-stars!! Another @sagawards nom for best ensemble! & congrats to @uzoaduba on her nom!!… https://t.co/GauB7PdRIg +11/15/2016,Actors,@LauraPrepon,Directing my beautiful co-stars. What a gift and it's not even Xmas.🙌🏻💓 @TaySchilling 📸@nlyonne !! #alexandpiper https://t.co/tAyN5jRIK4 +11/15/2016,Actors,@LauraPrepon,So proud 2 be directing @oitnb ! Cast & crew r incredible & supportive Can't wait 4 u guys 2 see it! luv my 🍊fam!🎬… https://t.co/lJY9Qayadj +10/26/2016,Actors,@LauraPrepon,"Celery Root, which is a fave of mine. Roast w/olive oil, salt n pepper. #farmtotable #realveggies #healthy… https://t.co/z8PyLMp1Ti" +10/21/2016,Actors,@LauraPrepon,Awesome drawing @giulia_sabet !! #faf #ointb #alexvause #orangefamily #alexlookssoglam https://t.co/R5HNNmBAmD +10/17/2016,Actors,@LauraPrepon,My girls rock! #orangefamily #thestashplan #supportingoursisters #farmtotable #healthy #hottie @MsJackieCruz https://t.co/8Di7OcUC05 +10/17/2016,Actors,@LauraPrepon,"The streets, the buildings, it's all so...perfetto 👏🏻💗 #italy #stillloveit https://t.co/GiHmRbRmhK" +10/14/2016,Actors,@LauraPrepon,#faf. This piece is so cool! Thank you for drawing Alex Débora Paim #alexvause #ointb #coolart 🙏🏻 https://t.co/m2c5wOE9Qz +10/13/2016,Actors,@LauraPrepon,The art is everywhere in Italy! #italia #muruals https://t.co/a0qXvnd0nC +10/12/2016,Actors,@LauraPrepon,Gelato alla Florence mi amore #italy #hadtogetgelato #sogood https://t.co/X3CsXfLqyq +10/11/2016,Actors,@LauraPrepon,Happiness. Italy. yes please.🌹🌹🌹 https://t.co/Awzkn5uGfc +10/11/2016,Actors,@LauraPrepon,"Happiness, taking in the beauty of Florence. ❤️💋🌹 https://t.co/xPKcJsjOPu" +10/11/2016,Actors,@LauraPrepon,"Florence, ti amo! #Poseidon #fountain #vivaleflorence https://t.co/Tsw5504NQG" +10/08/2016,Actors,@LauraPrepon,Shoutout 2 🍊 girls Talented ladies! @uzoaduba #americanpastoral @thedanieb @lanebryant @nlyonne #antibirth… https://t.co/jBpgmGuGl5 +10/07/2016,Actors,@LauraPrepon,backstage @todayshow #TheGirlOnTheTrain https://t.co/g1XZfcvqzC +10/05/2016,Actors,@LauraPrepon,#GOTT #Premiere! TY glam: @tinaturnbowmup @josueperezhair @nhakahn @forevermarkdiamonds @hellinkay 4 my look!… https://t.co/uzSonxwglz +09/09/2016,Actors,@LauraPrepon,Wow! @bsammy2010 this is dedication! ❤️ #goals #motivation #FanFriday https://t.co/MVwkyyHabK +09/06/2016,Actors,@LauraPrepon,A much needed getaway! Peaceful weekend on the water in Maine! https://t.co/R51O3ijGLG +09/02/2016,Actors,@LauraPrepon,Love this dope piece of #fanart I found on s.m.i.m.i @instagram page! https://t.co/e3RVgmNVNB +08/22/2016,Actors,@LauraPrepon,Picked up a new Xmas ornament while visiting New Mexico! #spicysanta #nevertooearlyforxmas https://t.co/8MekI2F86j +08/19/2016,Actors,@LauraPrepon,Love seeing your #fanstashes! Keep 'em coming! #fanfriday #thestashplan #cleaneating #allaboutthatbroth 📷:@runtx79 https://t.co/M65nBWOhhZ +08/16/2016,Actors,@LauraPrepon,"Check out this beautiful video, directed by #benfoster https://t.co/uxrqdZrQfb #loveisloveisloveislove @emilywellsmusic @NoiseyMusic" +08/13/2016,Actors,@LauraPrepon,My current read 📖 Fascinating explanations by @drjoshaxe about auto immune and digestive issues #eatdirt #healing https://t.co/pkQFPi491P +08/13/2016,Actors,@LauraPrepon,"Fresh basil and heirloom tomatoes, yum! #farmfresh #summermarket https://t.co/KeFy0v8m8b" +08/12/2016,Actors,@LauraPrepon,Just a little #FBF #FanArt 😛 📷 by @lyle_o_art #that70sshow #fanartfriday https://t.co/DAz7BdGDAb +08/11/2016,Actors,@LauraPrepon,"Running out the door to get on set for @OITNB Sorry I haven't been ""social"" my schedule is crazy! Miss you guys! 💋😜" +08/05/2016,Actors,@LauraPrepon,Love that this #fanart was hand drawn!! 📷: @xbooshbaby #FanArtFriday https://t.co/bRN7l6KkZL +08/03/2016,Actors,@LauraPrepon,Who did you get? #wedhookupshiv @OITNB https://t.co/tzhjtWoqZt +07/28/2016,Actors,@LauraPrepon,@girlontrainfilm hits theaters Oct. 7th!! Check out the latest trailer https://t.co/qASCFr9mf8 +07/19/2016,Actors,@LauraPrepon,Find out why #IAmAMogul & why I believe EVERY woman can be a @onMogul https://t.co/5ciDHByj01 https://t.co/U6LtqogZkZ +07/15/2016,Actors,@LauraPrepon,Check out this awesome #fanart! Love it! #fanartfriday #fanfriday https://t.co/02hh7yTBHt +07/04/2016,Actors,@LauraPrepon,Caught my first weakfish! #deepseafishing #myhappyplace https://t.co/gwuywuKwuq +06/30/2016,Actors,@LauraPrepon,Be ‘Like a Vause’ & snag this tee that supports The Lowline in NYC! Get yours https://t.co/6YnJJUDmog @lowlinenyc https://t.co/9LSN1W6WyJ +06/29/2016,Actors,@LauraPrepon,"This cracks me up! @OITNB @sesamestreet @HBO #Orangeisthenewsnack +https://t.co/Nc8GchisI2" +06/28/2016,Actors,@LauraPrepon,#TimesTalks @nytimes @OITNB @TheKateMulgrew @UzoAduba @thedanieb @nlyonne @TarynManning @TaySchilling @samirawiley https://t.co/PyJkLN5Xub +06/28/2016,Actors,@LauraPrepon,Why thank you ☺️ https://t.co/p69CGoMJ9v +06/26/2016,Actors,@LauraPrepon,Cheers @TaySchilling Here's to us! @OITNB #OITNB #Season4 @netflix https://t.co/QG5MnN3dCD +06/24/2016,Actors,@LauraPrepon,Thank you so much for all the questions #AskOrange Till next time. Have a wonderful rest of your day!! 😊🎉😋🤓 +06/24/2016,Actors,@LauraPrepon,It's absolutely awful! NO person should be in fear of their lives because of who they love!! https://t.co/ERYeGXmEx2 +06/24/2016,Actors,@LauraPrepon,📚💡👓👩‍❤️‍👩 I don't think she could pick one https://t.co/0fvjgRNrNm +06/24/2016,Actors,@LauraPrepon,"Always black, seasonally white https://t.co/aZFaFQYDLU" +06/24/2016,Actors,@LauraPrepon,They are both so different and at such different stages of my life and career. I honestly could not compare them. https://t.co/1TJkKP9oRE +06/24/2016,Actors,@LauraPrepon,Yep https://t.co/iFjYTKk7BX +06/24/2016,Actors,@LauraPrepon,Thank YOU for watching! https://t.co/wUYQxWsZ00 +06/24/2016,Actors,@LauraPrepon,It's not easy! She's so damn good and so funny. Love working with her!! https://t.co/orLeh6rcVB +06/24/2016,Actors,@LauraPrepon,Brilliant https://t.co/B8CpodZZLH +06/24/2016,Actors,@LauraPrepon,You used my full name! Don't scare me like that. 😳😁 https://t.co/6QDzvF0AeX +06/24/2016,Actors,@LauraPrepon,"A case, definitely! https://t.co/cC3sLhaZSY" +06/24/2016,Actors,@LauraPrepon,I wish I could help. But we have to shoot the show for you!! 😊 https://t.co/iQ9ATE06OZ +06/24/2016,Actors,@LauraPrepon,"We hear very little but it'll be incredibly awesome. Like all the seasons! It's Jenji, she'll keep us on our toes. https://t.co/B9BvIy9IGo" +06/24/2016,Actors,@LauraPrepon,"Not really, just do my work!!! 😊 https://t.co/uX5GfSb3Do" +06/24/2016,Actors,@LauraPrepon,It's awesome to work with people again from other shows! I got to work with a Chelsea cast mate season 3 as well!! https://t.co/mEirKP2THX +06/24/2016,Actors,@LauraPrepon,"I hope not, you never know what could happen though! https://t.co/0FOBItj6KM" +06/24/2016,Actors,@LauraPrepon,Cool!! https://t.co/k02jhsU2ZN +06/24/2016,Actors,@LauraPrepon,"Never, easy isn't Alex and Piper. https://t.co/G2Nq4uZpui" +06/24/2016,Actors,@LauraPrepon,They are two uber talented people! I always have a great time working with them. https://t.co/4AEOIJuQ9n +06/24/2016,Actors,@LauraPrepon,I have not seen that! https://t.co/I5OZdwC9z2 +06/24/2016,Actors,@LauraPrepon,I personally have 0 https://t.co/0vSQVgf5ks +06/24/2016,Actors,@LauraPrepon,Yep! https://t.co/G7gg8Ap8uZ +06/24/2016,Actors,@LauraPrepon,"The green house scene in episode 1 was brutal, incredible but a tough one. https://t.co/9s2NvYeKla" +06/29/2018,Actors,@UzoAduba,"On Saturday, show up. Wear white. Make your voice heard. Let us stand together, because families belong together.… https://t.co/A5UhJqLalx" +06/29/2018,Actors,@UzoAduba,"RT @papermagazine: ""There's something about the speed matched with the sense of control — it's a thrilling sport."" - @UzoAduba https://t.co…" +06/29/2018,Actors,@UzoAduba,Word. https://t.co/RMLA7C14B9 +06/29/2018,Actors,@UzoAduba,@wallyworld106 Thank you for this very sweet message(and profile pic!) Very grateful to bring this show to so many.… https://t.co/823tYsiemz +06/27/2018,Actors,@UzoAduba,"@michaelstrahan @LonnieChavis What a strong, smart and brave young man you are, @LonnieChavis Well done 👊🏿❤️💪🏿" +06/27/2018,Actors,@UzoAduba,RT @Heifer: Have you heard the news? @UzoAduba is our first Ambassador to Africa! This piece from @Refinery29 shares about Uzo and how she… +06/27/2018,Actors,@UzoAduba,An honor. https://t.co/XvTRMj2nuB +06/27/2018,Actors,@UzoAduba,So PROUD. #ProudToBU @Ocasio2018 https://t.co/yPzAXECBJi +06/24/2018,Actors,@UzoAduba,"“Power is killing.” -My mother, an immigrant" +06/22/2018,Actors,@UzoAduba,"Go, #SuperEagles!!!! SOAR!!!!!!! #WorldCup #ProudlyNigerian @FIFAWorldCup @NGSuperEagles https://t.co/XN9CBToCbh" +06/22/2018,Actors,@UzoAduba,"Come on, Super Eagles!! Soar!!!! 🇳🇬🦅🇳🇬 #WorldCup2018 #TeamNigeria" +06/21/2018,Actors,@UzoAduba,RT @chescaleigh: yoooooo @jennyhan this looks so freaking good! @lanacondor is delightful! https://t.co/738ivv8VrC +06/20/2018,Actors,@UzoAduba,"“If you think you are too small to make a difference, you haven’t spent a night with a mosquito.” -African Proverb" +06/18/2018,Actors,@UzoAduba,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Actors,@UzoAduba,From a little over a year ago. Still holds true today. https://t.co/MwYvc9np15 +06/17/2018,Actors,@UzoAduba,"Proudly Nigeri- wait. You DON’T have Tidal?!? (Me, yesterday) 🇳🇬🦅🇳🇬 #WorldCup #SuperEagles #TheCarters https://t.co/nzb5idenHX" +06/16/2018,Actors,@UzoAduba,The Carters. +06/14/2018,Actors,@UzoAduba,I ❤️ NY. https://t.co/kqB5UX1Edo +06/13/2018,Actors,@UzoAduba,To recognize another person’s hurt. https://t.co/G3oWzuz4Xl +06/11/2018,Actors,@UzoAduba,Congratulations to ALL at last night’s Tonys!! Sending special love to my friends and cast mates @LindsayMendez… https://t.co/nIoWE5ZJ4w +06/11/2018,Actors,@UzoAduba,RT @TimFederle: Theater kids will save us all. +06/11/2018,Actors,@UzoAduba,Sun/day. #TonyAwards #theaterkids https://t.co/XFD6bNlVI6 +06/10/2018,Actors,@UzoAduba,@marcmalkin @AIDSLifeCycle @fabianfuentes28 @KarlJSchmid @LALGBTCenter You. Are. Loved. Congratulations on your tre… https://t.co/fm9AJdqwKB +06/10/2018,Actors,@UzoAduba,RT @lizadonnelly: Practicing being a presenter at the dress rehearsal: @UzoAduba ! #TonyAwards #thisisbroadway https://t.co/C8I8xCDAO4 +06/09/2018,Actors,@UzoAduba,I feel like Afrolocks today: the weather is juuuuuuust right! +06/08/2018,Actors,@UzoAduba,RT @Oprah: Seeing everything under one roof brought tears to my eyes. Thanks Lonnie Bunch for giving @GayleKing and I a sneak peek of “Watc… +06/08/2018,Actors,@UzoAduba,"RT @theblcklst: TV writers: submissions are now open for the inaugural @stayMACRO Episodic Lab! Learn more: https://t.co/ImIWHPxFa6 + +We're…" +06/07/2018,Actors,@UzoAduba,When you get a release date for Season 6 of #oitnb July 27th. #tbt @OITNB @netflix https://t.co/g42cuilIrx +06/07/2018,Actors,@UzoAduba,RT @1234vive: This is .... wow. 🔥🔥🔥🔥 https://t.co/RJtmI1hSig +06/06/2018,Actors,@UzoAduba,"RT @laurasaurusrex: LADIES WHO WANT TO DO CINEMATOGRAPHY BUT ARE NERVOUS: + +AFI is offering a FREE 4 DAY CINEMATOGRAPHY WORKSHOP FOR WOMEN…" +06/05/2018,Actors,@UzoAduba,Taking it to The Max. July 27th. #OITNB #S6 https://t.co/dqN4RzpiMK +06/04/2018,Actors,@UzoAduba,"Thanks so much for having us, Ken! https://t.co/70IzYlYwMa" +06/03/2018,Actors,@UzoAduba,Family. France. French Open...fantastique! #FrenchOpen2018 https://t.co/PNvSg2jvN5 +06/03/2018,Actors,@UzoAduba,"RT @TennisChannel: You just never know what to expect at #TennisChannel during #RG18. + +Thanks for the surprise visit @UzoAduba! + +@solo_ken…" +06/03/2018,Actors,@UzoAduba,What an awesome day! And a GREAT view! https://t.co/7OrNN5lb7D +05/31/2018,Actors,@UzoAduba,"RT @TwitterMoments: Kendrick Lamar's album DAMN was just awarded the Pulitzer Prize in Music, making him the first non-classical or jazz ar…" +05/31/2018,Actors,@UzoAduba,@sicurowest99 Super sweet. Thank you. I love seeing the love and support you’re extending out to another woman! Much appreciated 🙏🏿 +05/30/2018,Actors,@UzoAduba,"RT @TheTonyAwards: See @UzoAduba, @MattBomer, Claire Danes, @armiehammer, @tatianamaslany, @leslieodomjr, Jim Parsons, @ZacharyQuinto and @…" +05/30/2018,Actors,@UzoAduba,"RT @CBS: The #TonyAwards just got even better because @UzoAduba, @MattBomer, and more stars will be presenting live! Find out which other b…" +05/30/2018,Actors,@UzoAduba,"RT @playbill: Tony winner @leslieodomjr, Jim Parsons, and @UzoAduba are among the #TonyAwards2018 presenters: https://t.co/5HUJQSi867 https…" +05/29/2018,Actors,@UzoAduba,"RT @SI_Tennis: She's baaaaaaack. + +Serena Williams wins her first Slam match since January 2017 and first clay court match of the season, 7…" +05/27/2018,Actors,@UzoAduba,Pure joy. https://t.co/Ly3hDw2Uzi +05/25/2018,Actors,@UzoAduba,Whoa! This is one of the greatest honors I’ve ever received!! I still love the school mantra: “We walk...at Wheel… https://t.co/kCqSb4jmxf +05/24/2018,Actors,@UzoAduba,RT @CBSNews: NEW: Harvey Weinstein expected to turn himself into authorities in New York on Friday after inquiry into sexual assault allega… +05/23/2018,Actors,@UzoAduba,RT @nytimes: Breaking News: History in Georgia: Stacey Abrams became the first black woman to be a major party's nominee for governor after… +05/23/2018,Actors,@UzoAduba,She is the one that Georgia has been waiting for. Massive congrats to @staceyabrams on this tremendous victory!!! https://t.co/o7lNyHZWCd +05/22/2018,Actors,@UzoAduba,RT @AishaHinds: TODAY is the day!!! #Georgia VOTE! VOTE! VOTE! @staceyabrams for GOVERNOR #TeamABRAMS https://t.co/AWULJshYsd +05/22/2018,Actors,@UzoAduba,"RT @staceyabrams: After 11 months, it all comes down to tomorrow. Tuesday's election is one moment on this long journey, but it is OUR mome…" +05/20/2018,Actors,@UzoAduba,@WendiAarons @letterslive That letter was amazing!! +05/18/2018,Actors,@UzoAduba,Today’s tragedy marks the 22nd school shooting in America this year. Twenty. Second. #SantaFe +05/18/2018,Actors,@UzoAduba,"America, what’s happening? #SantaFe" +05/18/2018,Actors,@UzoAduba,Does anyone remember the TV movie Polly!?? It was soooo good. +05/13/2018,Actors,@UzoAduba,For raising me. For your strength. For guiding me. For your love. I just love you so much. Happy Mother’s Day Mummy… https://t.co/P00VZzyNVv +05/13/2018,Actors,@UzoAduba,"My favorite time on social media is when you can feel the collective love being passed round, and around, and aroun… https://t.co/bpVmjPyPtL" +05/12/2018,Actors,@UzoAduba,My. JAM. https://t.co/ofy0lhPVAF +05/12/2018,Actors,@UzoAduba,Genius. https://t.co/oY8DB6Nd11 +05/11/2018,Actors,@UzoAduba,"RT @CNN: A Georgia police officer who choked former NFL prospect Desmond Marrow during an arrest in December has been fired, officials said…" +05/11/2018,Actors,@UzoAduba,"RT @breakinginmovie: Like mother, like daughter. #BreakingInMovie in theaters May 11. Get tickets now: https://t.co/IKgAOenlV7 https://t.co…" +05/11/2018,Actors,@UzoAduba,Sending much love to @itsgabrielleu today for her film #BreakingIn which premieres IN theaters today! Buy a ticket… https://t.co/I7cUGefvVm +05/10/2018,Actors,@UzoAduba,RT @jes_chastain: 🖤 I wanted to share with you something I've been working on 🖤 #marioncotillard @Lupita_Nyongo @realBingbingFan #PenelopeC… +05/10/2018,Actors,@UzoAduba,"RT @justiceroundtab: In the United States, +2.3 million people are behind bars. +2.7 million kids have a parent locked up. +$80 billion is spe…" +05/09/2018,Actors,@UzoAduba,Stand firmly in your power. +05/09/2018,Actors,@UzoAduba,Honoring teachers on #TeacherAppreciationDay “Ok. Anyone who knows me knows how much I love teachers. They’ve been… https://t.co/poHE9mBdZV +05/08/2018,Actors,@UzoAduba,@WBLooneyTunes Without question. +05/07/2018,Actors,@UzoAduba,RT @Lupita_Nyongo: Excited to share the screen with these incredible women! @jes_chastain #MarionCotillard @realBingbingFan #PenelopeCruz #… +05/07/2018,Actors,@UzoAduba,"A quick education: when Space Jam is on TV, you watch. Space Jam. Class dismissed." +05/06/2018,Actors,@UzoAduba,Catch the message. https://t.co/PKM0q9pS79 +05/05/2018,Actors,@UzoAduba,"On the 20th, I will be especially #ProudtoBU. #ThisCouldBU https://t.co/xbtjQQhPpV" +05/02/2018,Actors,@UzoAduba,"RT @MichelleObama: On May 2, I can't wait to celebrate my 5th #CollegeSigningDay in Philly! It’s been amazing seeing this event grow into a…" +04/30/2018,Actors,@UzoAduba,"RT @CNNAfrica: To mark the 100th anniversary of Nelson Mandela's birth, former President Obama will deliver a high-profile speech in July a…" +04/29/2018,Actors,@UzoAduba,Let’s gooo!!!!! https://t.co/Bynf3O1Msg +04/27/2018,Actors,@UzoAduba,Grateful to have been part of this group. Check out #CandyJar available NOW on @netflix !! https://t.co/c8U7Nj6fCx +04/27/2018,Actors,@UzoAduba,RT @InStyle: You'll want to steal @UzoAduba's adorable tradition with her sisters. https://t.co/77ug5NbBUW +04/27/2018,Actors,@UzoAduba,"Thank you @InStyle for letting me share how nothing beats a sister. + +https://t.co/5IGKVVIBcn" +04/26/2018,Actors,@UzoAduba,@ConstanceWu @CrazyRichMovie Lady...I can’t wait! +04/26/2018,Actors,@UzoAduba,RT @ConstanceWu: Et Voilà! Here's the official trailer for @CrazyRichMovie! Love you all x https://t.co/7wjky2OiZo +04/25/2018,Actors,@UzoAduba,@JulieChen @TheTalkCBS Thanks so much for having me!!! +04/24/2018,Actors,@UzoAduba,RT @Hanhonymous: #CandyJar: New @Netflix movie about two opposites-attract debate team teens looks pretty good? w/ @UzoAduba & Christina He… +04/24/2018,Actors,@UzoAduba,RT @TheTalkCBS: TODAY: We're ready to party all day long when @UzoAduba joins us! Get the low-down on her newest movie #CandyJar when she d… +04/23/2018,Actors,@UzoAduba,RT @Luvvie: Aaahhh! @UzoAduba has my book #ImJudgingYou as one of her reading picks! Thank you! 😃😃😃 https://t.co/wBxfVcdHJR +04/23/2018,Actors,@UzoAduba,"RT @shereadsdotcom: Emmy-award winning actress and active social justice warrior, @UzoAduba is a celebrity we certainly admire. We admire h…" +04/22/2018,Actors,@UzoAduba,Wow. https://t.co/c7nZzJcYPV +04/21/2018,Actors,@UzoAduba,@tracelysette @octarell NO ONE is mad. Not a single soul. #getit +04/20/2018,Actors,@UzoAduba,“There shouldn’t be an age limit for being aware.” - The ever brilliant 11-year-old Naomi Wadler. https://t.co/UExLmfb82g +04/20/2018,Actors,@UzoAduba,@Emma4Change And love the costume choice. #JUSTICENOW +04/20/2018,Actors,@UzoAduba,Standing with you @Emma4Change and all those who have chosen to stand UP. https://t.co/nNsbQODLzl +04/20/2018,Actors,@UzoAduba,"This has been my show since Day 1. Changed the game on so many frontiers, from introducing the world to a leading l… https://t.co/I9fl3p2y8L" +04/20/2018,Actors,@UzoAduba,RT @BearGrylls: The best season we have done! @rogerfederer @ScottEastwood @DonCheadle @derekhough @IAMLenaHeadey @UzoAduba & Keri Russell… +04/18/2018,Actors,@UzoAduba,"RT @Lavernecox: #IvyPark #beyonce + +https://t.co/wAvju7kbKc" +04/16/2018,Actors,@UzoAduba,RT @Variety: .@KendrickLamar Wins Pulitzer Prize for ‘Damn’ https://t.co/p7j5istd6n +04/16/2018,Actors,@UzoAduba,"Say her name, say her NAME... #Beyonce." +04/13/2018,Actors,@UzoAduba,"RT @CNNAfrica: “Because of the success of 'Black Panther,' now Hollywood wants African stories, and I think Nigeria is at the forefront of…" +04/13/2018,Actors,@UzoAduba,RT @Backstage: @UzoAduba sets New York stage return + more theater news https://t.co/OHkeQzCwAc https://t.co/CKi6w2GyU9 +04/12/2018,Actors,@UzoAduba,@AdrieaneLinox Adriane! Thank you 😊 +04/12/2018,Actors,@UzoAduba,"RT @VWOfficial: #bts #missvirgina with the amazing @uzoaduba 🎥 #blackgirlmagic @ Los Angeles, California https://t.co/FyNyMvayVO" +04/11/2018,Actors,@UzoAduba,"They are not a headline. Not a cause for the moment. They are our countrymen who, with every passing moment, can’t help but feel forgotten." +04/11/2018,Actors,@UzoAduba,A necessary read. Let us not forget the very real need in Flint. https://t.co/VnAq792gsZ +04/11/2018,Actors,@UzoAduba,RT @melsil: .@UzoAduba and Janet McTeer are set to star in new plays from Lydia R. Diamond and Theresa Rebeck: https://t.co/6aJ4ewg5d8 http… +04/11/2018,Actors,@UzoAduba,RT @RWitherspoon: Bravo to @HBO for taking important steps to address equal pay in Entertainment. It is an privilege to work with a compan… +04/11/2018,Actors,@UzoAduba,RT @jes_chastain: On this #EqualPayDay I would like to recognize @UniversalPics #DonnaLangley & #ErikBaiers for understanding the importan… +04/10/2018,Actors,@UzoAduba,@AnnaMariaPdT Let’s gooo!!! +04/10/2018,Actors,@UzoAduba,RT @TheEllenShow: What do we want? Equal pay! When do we want it? 100 years ago. #EqualPayDay +04/10/2018,Actors,@UzoAduba,RT @KamalaHarris: It’s time to make equal pay a reality in America. #EqualPayDay https://t.co/CjdQUQ8yQU +04/10/2018,Actors,@UzoAduba,RT @MadameNoire: Actress @UzoAduba is heading to the theatre to play the first woman in the Negro Leagues! Will you be checking out this pr… +04/10/2018,Actors,@UzoAduba,"RT @Essence: .@UzoAduba is set to star in 'Toni Stone', a play about the first woman to go pro in the Negro Leagues. https://t.co/UosOvHxQm…" +04/10/2018,Actors,@UzoAduba,"@tamaratorresnyc @tellyleung Thank you, Tamara!!!!" +04/10/2018,Actors,@UzoAduba,"@ArianaDeBose Thanks, lady ❤️❤️❤️" +04/10/2018,Actors,@UzoAduba,RT @ArianaDeBose: It’s a good day indeed! Go sis @UzoAduba!! https://t.co/xhv1qZtvQg +04/10/2018,Actors,@UzoAduba,"@marcmalkin Thank you, Marc!!" +04/10/2018,Actors,@UzoAduba,"RT @marcmalkin: Congrats, @UzoAduba!!! Uzo Aduba Headed to New York Stage https://t.co/m0td3I544c" +04/10/2018,Actors,@UzoAduba,@Sports_Greats @shondarhimes Love this. +04/09/2018,Actors,@UzoAduba,"RT @THR: Janet McTeer is headed back to Broadway in Theresa Rebeck's 'Bernhardt/Hamlet,' while Uzo Aduba will play the African-American fem…" +04/09/2018,Actors,@UzoAduba,"@robinthede I ❤️ you, @robinthede . I double ❤️❤️ you. 😊" +04/09/2018,Actors,@UzoAduba,"RT @Variety: Uzo Aduba, Janet McTeer Join Roundabout Theatre Company Slate https://t.co/7BD4evf2k2" +04/09/2018,Actors,@UzoAduba,"RT @RTC_NYC: Just announced! @UzoAduba will return to the New York stage in the world premiere of Lydia R. Diamond's #ToniStone. + +For more…" +04/09/2018,Actors,@UzoAduba,"@tellyleung Thanks, Tell!! I love you, my dear friend. Can’t wait to you around “campus.”" +04/09/2018,Actors,@UzoAduba,"RT @tellyleung: YES YES YES! Get it, @UzoAduba! https://t.co/REyVK2CTOy" +04/09/2018,Actors,@UzoAduba,RT @broadwaycom: Janet McTeer & @UzoAduba to portray real-life icons in two world-premiere plays: https://t.co/rnfKlMO5OL https://t.co/7lAj… +04/09/2018,Actors,@UzoAduba,Home. https://t.co/oK9S6MARIk +04/09/2018,Actors,@UzoAduba,RT @theatermania: #JanetMcTeer & @UzoAduba to return to NY stage in upcoming @RTC_NYC productions → https://t.co/4wzjhcZneW https://t.co/ND… +04/09/2018,Actors,@UzoAduba,RT @playbill: .@RTC_NYC sets two world premieres for 2018–2019 lineup: @TheresaRebeck's Bernhardt/Hamlet starring Janet McTeer and Lydia R… +04/09/2018,Actors,@UzoAduba,"If you then you don’t +don’t love deserve +me at my… https://t.co/fdpG5BW2fp" +04/06/2018,Actors,@UzoAduba,"Morning. +The sun stretches through the sleepy cracks; +And we begin." +04/05/2018,Actors,@UzoAduba,"Ariel had like, 20 thing-a-ma-bobs and she still wants more?? Greedy 🙄." +04/04/2018,Actors,@UzoAduba,“I’m so excited!” -made timeless by The Pointer Sisters and also Jessie Spannow. +04/04/2018,Actors,@UzoAduba,"RT @cindi_leive: “Injustice must be exposed, with all the tension its exposure creates, to the light of human conscience...before it can be…" +04/04/2018,Actors,@UzoAduba,Today we are proud to partner with the amazing female funders and founders of @AllRaise as they commit to making ch… https://t.co/dopVohbLph +04/03/2018,Actors,@UzoAduba,RT @Variety: .@MatthewModine joins @UzoAduba in the drama 'Miss Virginia' (EXCLUSIVE) https://t.co/S8TXaJ6chO https://t.co/wkUfpMtoK5 +04/03/2018,Actors,@UzoAduba,RT @JohnBoyega: First official press trip to Nigeria and off to a great start! https://t.co/xY7L16TjZn +04/03/2018,Actors,@UzoAduba,RT @cnbcafrica: Tune into Power Lunch West Africa now for our interview with @JohnBoyega. #plwa410 https://t.co/hv6rfHvi0u +04/02/2018,Actors,@UzoAduba,"RT @BBCWorld: Retired South African archbishop Desmond Tutu hails Winnie Mandela, who has died aged 81, as ""a defining symbol of the strugg…" +04/02/2018,Actors,@UzoAduba,Nkosi sikelel’ iAfrika. God Bless Africa. https://t.co/YxhXe4f1Tn +04/01/2018,Actors,@UzoAduba,"Happy Easter, everybody!!" +03/31/2018,Actors,@UzoAduba,"RT @blackenterprise: Teen Wins Prestigious Writing Award That Stephen King, Capote, and Other Famous Writers Won https://t.co/BvcAy2MVMO ht…" +03/31/2018,Actors,@UzoAduba,I’m Walking On Sunshine: solid tune and always delivers. +03/30/2018,Actors,@UzoAduba,RT @WomenaHollywood: Tribeca Film Fest Adds Day-Long #TimesUp Event https://t.co/2BzrrPkhmy https://t.co/Ll4fQ64f1J +03/30/2018,Actors,@UzoAduba,@qimmahsaafir A pleasure on both sides. 😊🙏🏿😊 +03/30/2018,Actors,@UzoAduba,"RT @okayafrica: #Okay100Women: OkayAfrica talked to the multi-talented Nigerian-American actress @UzoAduba. Learn how she got into acting,…" +03/28/2018,Actors,@UzoAduba,RT @ShaunKing: I want to remind you that Colin Kaepernick had the police murder of Alton Sterling on his mind when he first took a knee.… +03/27/2018,Actors,@UzoAduba,The real question is: who DOESN’T go to AfroPunk??! https://t.co/yXYCViLsRn +03/26/2018,Actors,@UzoAduba,@MatthewModine Hey YOU! I can’t wait!!!! And Michael Wilson has my ❤️❤️. See you soon!!! +03/25/2018,Actors,@UzoAduba,@BradWalsh @FSSerengeti 😉😉❤️ +03/25/2018,Actors,@UzoAduba,@BradWalsh @FSSerengeti 🧐🧐🧐 +03/25/2018,Actors,@UzoAduba,"RT @Emma4Change: Real Quick: my speech today was abt 6 mins & 30 secs, including both my speech and my silence. The fact that people think…" +03/25/2018,Actors,@UzoAduba,On the ground and ready to start our adventures in The Serengeti with @FSSerengeti !! #familytime #myfssafari… https://t.co/jTXljPDPrm +03/25/2018,Actors,@UzoAduba,"RT @womensmarch: Naomi Wadler, we make you this promise: Where you lead, we will follow. + +With love and in solidarity, +The Women of Americ…" +03/25/2018,Actors,@UzoAduba,RT @patrickconeil: History is being made. Open your eyes and your hearts. #NeverAgain #MarchForOurLives https://t.co/rNqKDOGBAY +03/25/2018,Actors,@UzoAduba,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Actors,@UzoAduba,#MarchForOurLives #NeverAgain +03/24/2018,Actors,@UzoAduba,RT @Dionsmusica: Heading to Washington D.C for the #MarchForOurLives with a group of students! Holla! #EnoughIsEnough #ChicagoStandUp #Stud… +03/24/2018,Actors,@UzoAduba,RT @AudraEqualityMc: #MarchForOurLives Go Children Go! So so so so so proud of you! +03/24/2018,Actors,@UzoAduba,https://t.co/m90yF5En1u +03/24/2018,Actors,@UzoAduba,"There are 3,140,167 students in Florida. Politicians there have received over $3.3M from the NRA. That’s $1.05 per… https://t.co/8j6FP5hnbe" +03/23/2018,Actors,@UzoAduba,The powerful voice of Journey Jamison. Rise up. Catch the message. https://t.co/gqFfZyyKwB +03/23/2018,Actors,@UzoAduba,@laurabrown99 Holding it down for us in Tanzania! +03/23/2018,Actors,@UzoAduba,People are marching tomorrow. For their lives. Let’s never have to do this again. #neveragain #marchforourlives +03/23/2018,Actors,@UzoAduba,RT @Emma4Change: I have absolutely no words... Thank you not only for your service but for standing with us as we #MarchForOurLives tomorro… +03/21/2018,Actors,@UzoAduba,"First South, then West, now East. #letsgo #heiferinternational https://t.co/uIGoBfU28b" +03/20/2018,Actors,@UzoAduba,This MUST stop. +03/19/2018,Actors,@UzoAduba,YES. https://t.co/HZAZbjfgyO +03/18/2018,Actors,@UzoAduba,You know what movie I still really love? The Big Sick. It was just so good. +03/14/2018,Actors,@UzoAduba,"In order to stand up, you must first walk out." +03/13/2018,Actors,@UzoAduba,A very important read. https://t.co/AlsuXHCs5l +03/13/2018,Actors,@UzoAduba,"RT @kerrywashington: NYC! +https://t.co/njXXJoArv8" +03/13/2018,Actors,@UzoAduba,@darkblonde13 Love to you and thanks so much 🙏🏿🙏🏿 +03/13/2018,Actors,@UzoAduba,@anthropologistm And I you!! +03/12/2018,Actors,@UzoAduba,"RT @TIMESUPNOW: Proud to announce today the launch of @TIMESUPAD, in solidarity with our sisters in advertising. More info: https://t.co/0t…" +03/11/2018,Actors,@UzoAduba,@laurabrown99 Haaa!! And fair. +03/10/2018,Actors,@UzoAduba,"“Putting on all the bells and whistles...” + +Who wears bells and whistles?" +03/10/2018,Actors,@UzoAduba,RT @nytimes: Ida B. Wells was a 30-year-old newspaper editor living in Memphis when she began her anti-lynching campaign https://t.co/2OMqH… +03/10/2018,Actors,@UzoAduba,Thank goodness you were there. Thanks for having me! +03/10/2018,Actors,@UzoAduba,Hammered??! I don’t know if I can think of storms the same way again. It was WILD!!! https://t.co/fWPw5cgOzy +03/10/2018,Actors,@UzoAduba,"RT @TIMESUPNOW: Today, @ava makes/breaks history with @WrinkleInTime, out now. Congrats to Ava and the stellar cast and crew! #BeAWarrior #…" +03/08/2018,Actors,@UzoAduba,Happy International Women’s Day! #InternationalWomenDay +03/08/2018,Actors,@UzoAduba,RT @CNNAfrica: These are the #MeToo stories you haven’t heard - five Nigerian women share their harrowing stories of sexual abuse and haras… +03/08/2018,Actors,@UzoAduba,"RT @TessaThompson_x: YES @michaelb4jordan . This is how change happens. When we commit to making it. +#InclusionRider https://t.co/kBiRVFWc…" +03/08/2018,Actors,@UzoAduba,@TessaThompson_x @michaelb4jordan Indeed +03/08/2018,Actors,@UzoAduba,Home. You are welcome. ❤️ https://t.co/8CYLlpl15U +03/07/2018,Actors,@UzoAduba,A woman who has given so much to so many. #theaterkid https://t.co/VbCvKEvQdI +03/06/2018,Actors,@UzoAduba,I’m taking an adventure with @BearGrylls on @NBCRunningWild this summer. The season premieres May 30! #RunningWild https://t.co/mxOJnInePM +03/05/2018,Actors,@UzoAduba,Insisting while persisting. https://t.co/AerQ2E8X1L +03/05/2018,Actors,@UzoAduba,Magic Monday ✨✨. Photo by the incredible Keith Thompson. Felt like heaven. #antarctica #7for7 https://t.co/iVmYzLWHHm +03/02/2018,Actors,@UzoAduba,@adriennelwarren Love him. +03/02/2018,Actors,@UzoAduba,"Just doing it. Do it, Daniel Caesar. https://t.co/cDg2ZQCmgZ" +03/01/2018,Actors,@UzoAduba,It’s #WomensHistoryMonth and @WrinkleInTime comes out March 9th. You do the math of where you should be in 9 days. So excited. #TeamMeg +02/28/2018,Actors,@UzoAduba,@joshuahenry20 @carouselbway @playbill Here for it. +02/28/2018,Actors,@UzoAduba,No filter. No zoom. This place is beautiful. #Antarctica #7thcontinent #7for7 https://t.co/ynkg0zXRLK +02/28/2018,Actors,@UzoAduba,Day 28: First Lady Michelle Obama. @MichelleObama #thankyou #withoutyou #thereisnome #BlackHistoryMonth https://t.co/banpA5Jsyc +02/28/2018,Actors,@UzoAduba,I’ve got joy like a fountain. +02/20/2018,Actors,@UzoAduba,Worth the watch. Might we all come to the table with the open ears of the conservative farmer and liberal organizer. https://t.co/KLukJHyirU +02/20/2018,Actors,@UzoAduba,RT @UzoAduba: Day 20: Maya Angelou. #THANKYOU #withoutyou #thereisnome #BlackHistoryMonth http://t.co/jXegtD3p +02/19/2018,Actors,@UzoAduba,Means more today. https://t.co/w4l0bRzOts +02/19/2018,Actors,@UzoAduba,"RT @brielarson: If you want to buy tix for people who can’t afford to see #BlackPanther at the moment, comment below. If you are in need of…" +02/19/2018,Actors,@UzoAduba,"RT @nytimes: ""Black Panther"" blew past projections to take in an estimated $387 million worldwide over the Presidents' Day weekend, breakin…" +02/19/2018,Actors,@UzoAduba,We can either talk about it or we can be about it. +02/18/2018,Actors,@UzoAduba,RT @Emma4Change: My friends an i have been hard at work at North Community Park calling attention to @NeverAgainMSD and @AMarch4OurLives It… +02/18/2018,Actors,@UzoAduba,RT @UzoAduba: Day 18: Madame C.J. Walker. #THANKYOU #withoutyou #thereisnome #BlackHistoryMonth http://t.co/6O5qo1oW +02/18/2018,Actors,@UzoAduba,"Anger and fire are not the same, but they can be siblings at times." +02/18/2018,Actors,@UzoAduba,RT @MsSarahPaulson: Jan Maxwell Jan Maxwell Jan Maxwell Jan Maxwell Jan Maxwell. #DimforJan https://t.co/LZzfiWtzdP +02/18/2018,Actors,@UzoAduba,"RT @MichaelSkolnik: Emma Gonzalez. A student at Marjory Stoneman Douglas High School. + +An American Hero. + +Watch This. + +All of it. + +The…" +07/02/2018,Actors,@nlyonne,"I can’t take this, Ellen!! I’ve been a Barkinator since #Diner!! ♥️♥️♥️ https://t.co/8SnPkvmAAU" +07/02/2018,Actors,@nlyonne,@daddynichoIs 🙏🏽 +07/02/2018,Actors,@nlyonne,"Not if they have cyanide, ricin or anthrax. Otherwise, sure! https://t.co/jUs35oRooW" +07/02/2018,Actors,@nlyonne,@steveagee @JamesUrbaniak I dunno what this means but I’m liking Bc of impressive Z work- keep it up! 🙏🏽 +07/02/2018,Actors,@nlyonne,#Cazale 🙌🏽 https://t.co/WoQotKuIqw +07/02/2018,Actors,@nlyonne,Um. Typo much????! Suckas!! Mwahahhahahahhahaahahahaha https://t.co/sG3KOWqhz6 +07/02/2018,Actors,@nlyonne,RT @ira: Me showing up to Lakers games for the Instagrams now that LeBron joined the team https://t.co/nzdPG0jI20 +07/02/2018,Actors,@nlyonne,Jesus Christmas what the H https://t.co/yHUVUJd3T9 +07/02/2018,Actors,@nlyonne,RT @JoshuaBHoe: All my friends back in OK should go see @Piper at @OKCU in September #OklahomaCity https://t.co/zo5Fht0XLc +07/02/2018,Actors,@nlyonne,RT @shannonwoodward: no why https://t.co/hI1IGOori4 +07/01/2018,Actors,@nlyonne,"RT @Todd_Spence: This just made my year. + +JURASSIC PARK, but everyone including the dinosaurs is wearing high heels. (source Imgur) https:…" +07/01/2018,Actors,@nlyonne,RT @DylanGelula: It’s so stressful to be alive in America rn to the point where recently at a restaurant I was like “is this Crazy Train by… +07/01/2018,Actors,@nlyonne,This is definitely too much cheese. https://t.co/56K4CEBtrC +07/01/2018,Actors,@nlyonne,RT @ConanOBrien: Does it help the environment if I drink vodka out of a reusable water bottle? +07/01/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to the top 5 bags in the world, hand, money, barf, grab and goodie." +07/01/2018,Actors,@nlyonne,@jakefogelnest 😍 +06/30/2018,Actors,@nlyonne,RT @SeanMcElwee: we are living in a sick society https://t.co/Kj7SHgYe9U +06/30/2018,Actors,@nlyonne,RT @BAKKOOONN: this bus is designed to clean your moms huge butt https://t.co/MWcsTWH1rI +06/30/2018,Actors,@nlyonne,RT @harinef: shave your Whole body to techno +06/30/2018,Actors,@nlyonne,RT @lsarsour: NYC always shows up and shows out ♥️✊🏽♥️ #FamilesBelongTogetherMarch https://t.co/HzlZ5b4ChT +06/30/2018,Actors,@nlyonne,RT @SarahKSilverman: As a comic this is trite as fuck but IF MEN WERE THE ONES WHO GOT PREGNANT THIS WOULD BE A NON ISSUE https://t.co/JQ4V… +06/30/2018,Actors,@nlyonne,"RT @SenKamalaHarris: Years from now, people will ask us where we were in this moment. We don’t want the answer to be how we felt. We want t…" +06/30/2018,Actors,@nlyonne,"RT @repjohnlewis: We are sick and tired of seeing little babies taken from their mothers. That's not right, it's not fair, and history will…" +06/30/2018,Actors,@nlyonne,RT @AoDespair: Quite a national metaphor. https://t.co/lrRKBjT5R9 +06/30/2018,Actors,@nlyonne,RT @ACLU: Dissent is patriotic and families belong together ✊ https://t.co/Acxw8KJloV +06/30/2018,Actors,@nlyonne,"RT @karavoght: This is one of the dozens of joyous kids running through fire hose with their protest shirts and signs. + +The other side of t…" +06/30/2018,Actors,@nlyonne,"RT @Jennnnng: greatest grandmas ranked! +19) it’s +18) hard +17) to +16) rank +15) the +14) greatest +13) grandmas +12) because +11) they’re…" +06/30/2018,Actors,@nlyonne,"RT @thedailybeast: ""Not even Mussolini could have imagined concentration camps for babies. But that is where we are"" https://t.co/qD5TlhhFhF" +06/30/2018,Actors,@nlyonne,"Our struggles are all connected. Family separation anywhere—at the border, via the Muslim ban, via mass incarcerati… https://t.co/P6ptHwyChs" +06/30/2018,Actors,@nlyonne,RT @nowthisnews: Amsterdam will finally have a woman mayor after nearly 700 years of men in charge https://t.co/MW0GCFdZFL +06/30/2018,Actors,@nlyonne,RT @TheScaryNature: Insane reflexes https://t.co/qnyUdNgCKw +06/30/2018,Actors,@nlyonne,RT @repjohnlewis: The time is always right to do right. Find a way to get in the way and we will make a way out of no way. #goodtrouble +06/30/2018,Actors,@nlyonne,RT @MarkMacabre: @OITNB RELEASE THE TRAILER https://t.co/pLfoB8mwqt +06/30/2018,Actors,@nlyonne,RT @kerrywashington: Me! 👋🏾 #FamiliesBelongTogether FIND A MARCH NEAR YOU 👇🏾 https://t.co/yiXdUmpFmH https://t.co/dQMezH4sSA +06/30/2018,Actors,@nlyonne,I'm proud to support the thousands upon thousands of people taking to the streets on Saturday to say… https://t.co/NKbIxoYLGE +06/30/2018,Actors,@nlyonne,"RT @hannibalburess: Sorry to drop this today Drake. + +@turo https://t.co/dYMPpvFUvR" +06/29/2018,Actors,@nlyonne,"RT @JenAshleyWright: Us: Gun control? +GOP: NO +Us: Treatment for mentally ill? +GOP: NO +Us: Health care for bullet holes? +GOP: NO +Us: Anythin…" +06/29/2018,Actors,@nlyonne,RT @newscientist: Enceladus is spewing out organic molecules necessary for life https://t.co/9KDNzufQme https://t.co/wuCxIALD32 +06/29/2018,Actors,@nlyonne,@MichaelRobnalt Lol 🤥🤫🤔😕😒🧐 +06/29/2018,Actors,@nlyonne,RT @lsarsour: Urgent - we need to find 160 Spanish speaking attorneys to go to the border ASAP. If you can go and/or if you have a network… +06/28/2018,Actors,@nlyonne,RT @elizabethforma: We won't let @realDonaldTrump & @SenateMajLdr overturn Roe v. Wade & hand the rights of the American people back over t… +06/28/2018,Actors,@nlyonne,RT @MaddowBlog: “We were representing a 3-year-old in court recently who had been separated from the parents. And the child — in the middle… +06/28/2018,Actors,@nlyonne,RT @chelseaperetti: Gonna do an escape room solo. Think it will lift my spirits! +06/28/2018,Actors,@nlyonne,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/28/2018,Actors,@nlyonne,RT @UzoAduba: An honor. https://t.co/XvTRMj2nuB +06/28/2018,Actors,@nlyonne,RT @ditzkoff: Don’t you dare promise me a Mamma Mia sequel with dinosaurs and then not deliver a Mamma Mia sequel with dinosaurs https://t.… +06/28/2018,Actors,@nlyonne,@NYTimesWordplay Lol😎 +06/27/2018,Actors,@nlyonne,RT @oliviawilde: Let’s be clear: it is not a question of abortions or no abortions. It is only a question of whether women will die having… +06/27/2018,Actors,@nlyonne,New Gang Gang record #Kazuashita out now! Buy it! Listen to it!! Download your brains off! @GangGangDance… https://t.co/jG8c2d0oyI +06/27/2018,Actors,@nlyonne,"RT @Ocasio2018: This is the start of a movement. + +Thank you all." +06/27/2018,Actors,@nlyonne,RT @lurie_john: Starts out being one of the worst days in American history and then Alexandria Ocasio-Cortez happens. +06/27/2018,Actors,@nlyonne,Yes. https://t.co/tuATadwh3w +06/27/2018,Actors,@nlyonne,RT @ditzkoff: Seems about right https://t.co/3fSwiHUjtl +06/27/2018,Actors,@nlyonne,RT @TessaThompson_x: Every character I play is part Beyoncé. https://t.co/bVApMWlf3I +06/27/2018,Actors,@nlyonne,RT @kumailn: Please sign this @ACLU to fight the SCOTUS ruling on the Muslim Ban. https://t.co/g6sVzamVQx +06/26/2018,Actors,@nlyonne,RT @lsarsour: If u r ever a passenger on any flights leaving TX to any other US state - Assess your flight. 👀 Do u see groups of 6-7 kids u… +06/26/2018,Actors,@nlyonne,"RT @RinChupeco: Speaking as someone born in the last years of a dictatorship, you Americans are already several steps in one. + +Ferdinand Ma…" +06/26/2018,Actors,@nlyonne,"RT @WerewolfBathtub: Ice T, it is 8:30 in the morning https://t.co/RSpeVAwB8G" +06/26/2018,Actors,@nlyonne,"RT @perlapell: Hey Young Girls, don't ever let someone shame you for your power. It will save and elevate your life." +06/26/2018,Actors,@nlyonne,RT @WaywardWinifred: This. https://t.co/xklC8NNnrz +06/26/2018,Actors,@nlyonne,RT @HeerJeet: Finally some good news. https://t.co/s7DmZywwYS +06/26/2018,Actors,@nlyonne,RT @thedanieb: Yes it is. https://t.co/FTCmYTL12S +06/26/2018,Actors,@nlyonne,RT @openculture: Leonard Bernstein Introduces 7-Year-Old Yo-Yo Ma: Watch the Youngster Perform for John F. Kennedy (1962) https://t.co/7b3p… +06/26/2018,Actors,@nlyonne,RT @abbijacobson: Happy Pride ❤️ https://t.co/JtFP40a9om +06/25/2018,Actors,@nlyonne,RT @newscientist: What is consciousness? We're coming closer to cracking the biggest problem in neuroscience https://t.co/SCDGx9UzFe https:… +06/25/2018,Actors,@nlyonne,"RT @Sierra_Magazine: ""This mixing of racism and politics when it comes to climate change is especially dangerous because, historically, whe…" +06/25/2018,Actors,@nlyonne,RT @LeslyeHeadland: So grateful I was able to make it to the closing night of Cult of Love. I still can’t believe the “Pride” play closed o… +06/25/2018,Actors,@nlyonne,RT @Criterion: A Monday feeling: https://t.co/xQDIScQHfp +06/24/2018,Actors,@nlyonne,🔥🔥 https://t.co/hqbzWLlYz3 +06/24/2018,Actors,@nlyonne,@daddynichoIs Yas +06/24/2018,Actors,@nlyonne,"Happy Hometown Pride, NYC!! #pride 🌈🌈🌈🌈🌈♥️♥️♥️ https://t.co/dTeCwSMhXa" +06/24/2018,Actors,@nlyonne,#PossumPeople https://t.co/F1iSYC4GtB +06/24/2018,Actors,@nlyonne,@robdelaney https://t.co/AEg5Qf91li +06/24/2018,Actors,@nlyonne,RT @nicholebeattie: Something great to do today is watch @Hannahgadsby’s Nanette on Netflix. Wowzers. +06/24/2018,Actors,@nlyonne,RT @dodo: This tiny donkey’s so small he lives in the house — he even knows how to go outside with his dog siblings to pee! https://t.co/0p… +06/23/2018,Actors,@nlyonne,🔥 https://t.co/9ClzisFGxF +06/23/2018,Actors,@nlyonne,"RT @Jonny_Calderon_: dog carrier: $15 +goggles: $5 +being able to force my dog into spending time with me: priceless https://t.co/2TSaUGpIe4" +06/23/2018,Actors,@nlyonne,RT @chelseaperetti: THIS DEPRAVED PARTY HATES CHILDREN https://t.co/UAdTUVw4tQ +06/22/2018,Actors,@nlyonne,"Repost @LeslyeHeadland @mspackyetti ・・・ +A family concentration camp is still a concentration camp. +• +In my freshman… https://t.co/XFui65IXPR" +06/20/2018,Actors,@nlyonne,https://t.co/1TFG7tkvcE +06/20/2018,Actors,@nlyonne,Hbd Gena. 🎈♥️ https://t.co/iIH53w6IR0 +06/20/2018,Actors,@nlyonne,New York in the summer belongs to the rats and the roaches. +06/20/2018,Actors,@nlyonne,RT @GhostPanther: Our nation is being remade into a third world totalitarian Russian satellite country. https://t.co/NIiYJm9wuA +06/20/2018,Actors,@nlyonne,"RT @HalleyFeiffer: I often cringe at ""if childhood me could see me now"" posts so I'll just say that childhood me is sitting in the corner w…" +06/19/2018,Actors,@nlyonne,RT @laurenlapkus: I just called the number and followed the prompts and left a message for my senator. It felt a little awkward but I'm gla… +06/19/2018,Actors,@nlyonne,All-time dreamboat @MrGeorgeWallace 😍😍 all-time day. 🔥 https://t.co/lczKNflomZ +06/18/2018,Actors,@nlyonne,"RT @The_A_Prentice: Oh, to get the real illegal aliens. Got it. https://t.co/e9MWKScs3i" +06/18/2018,Actors,@nlyonne,"RT @ikebarinholtz: There needs to be a reckoning for this. Trump, Sessions, Miller should all be sent to the Hague. They are war criminals…" +06/17/2018,Actors,@nlyonne,RT @JoyAnnReid: More resources for those asking for ways to help separated migrant parents and children: https://t.co/36zwxfv4Qn +06/17/2018,Actors,@nlyonne,RT @TexasTribune: Here are photos of the tent city near El Paso that is housing immigrant children separated from their parents. Photos by… +06/17/2018,Actors,@nlyonne,RT @SarahKSilverman: Good lord https://t.co/z8kg8W57md +06/17/2018,Actors,@nlyonne,RT @kumailn: The biggest defense they have is that what they are doing is so horrific that you look like a fool talking about it. It’s beyo… +06/17/2018,Actors,@nlyonne,"RT @kumailn: There are going to be people, many people, who will be able to justify separating children from their families. They’ll say th…" +06/17/2018,Actors,@nlyonne,RT @kumailn: I don’t know what to do. Evil is being done right now and we are afraid to get too loud. This moment in time will define us fo… +06/16/2018,Actors,@nlyonne,RT @dodo: This dog is ALWAYS loyal to his best friend — except when pizza's involved 😂🍕 https://t.co/jVGR7e7WUZ +06/16/2018,Actors,@nlyonne,RT @KamalaHarris: Using kids as leverage to get billions for a wasteful border wall is outrageous and immoral. This is simple: the Administ… +06/16/2018,Actors,@nlyonne,"RT @eugenegu: As an American, it pains me to say this. + +The United Nations should investigate the United States of America for placing chi…" +06/16/2018,Actors,@nlyonne,RT @JenAshleyWright: My first book about the history of break-ups was always described as a fun beach read. The first chapter was about a h… +06/16/2018,Actors,@nlyonne,Hbd VZ 🎈 https://t.co/9vigyeqzXh +06/16/2018,Actors,@nlyonne,"RT @atlasobscura: Through his relentless experimentation, Louis Boutan created underwater photographs in the 19th century that the world ha…" +06/15/2018,Actors,@nlyonne,"RT @paulscheer: Please watch this. It shook me to my core to think of 4yr old children separated from their families, without any in charge…" +06/15/2018,Actors,@nlyonne,RT @Alyssa_Milano: The family separation policy that Trump has weaponized is Un-American and inhumane. The thread below has many resources… +06/15/2018,Actors,@nlyonne,RT @UzoAduba: I ❤️ NY. https://t.co/kqB5UX1Edo +06/15/2018,Actors,@nlyonne,RT @SarahKSilverman: Rad https://t.co/QeQctRY37b +06/15/2018,Actors,@nlyonne,"RT @TheRealDratch: Amy Poehler was named one of the 40 most powerful people in comedy and her answers to these questions are genius: +(Also…" +06/14/2018,Actors,@nlyonne,RT @SenKamalaHarris: Let’s call this policy what it is: a human rights abuse being committed by the United States government. https://t.co/… +06/14/2018,Actors,@nlyonne,RT @billyeichner: My God WTF is going on in this country? WHAT IS HAPPENING??? https://t.co/R0EAePznu7 +06/14/2018,Actors,@nlyonne,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Actors,@nlyonne,RT @oliviawilde: What do you really know about Rikers Island? Spend 8 mins getting to know the human side of this important issue. #CLOSEri… +06/14/2018,Actors,@nlyonne,Summer’s coming! 🎅🏽👨🏽‍🚀🌈 https://t.co/GVQ72ujkrj +06/13/2018,Actors,@nlyonne,July 27th is coming to town. @OITNB https://t.co/GoMM8tDhMM +06/13/2018,Actors,@nlyonne,Facts! 👇🏽👇🏽👇🏽👇🏽 https://t.co/E1P8qxpB11 +06/13/2018,Actors,@nlyonne,"RT @RuPaul: ""Everyone thinks of changing the world, but no one thinks of just wearing a Styrofoam head on top of their head”~Tolstoy https:…" +06/13/2018,Actors,@nlyonne,"RT @WesleyLowery: The President of the United States reportedly considering construction of a prison camp to hold up to 5,000 children http…" +06/12/2018,Actors,@nlyonne,"RT @SenSanders: We have a racist criminal justice system that costs us billions of dollars, ruins lives and allows private prisons to profi…" +06/12/2018,Actors,@nlyonne,@BrianStack153 Dm me for details +06/11/2018,Actors,@nlyonne,Me and Uzo going to the Emmys tonight.… https://t.co/WnpqMCkPjQ +06/11/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to comets, the sperm of outer space." +06/11/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to wrists, the neck of the arm." +06/10/2018,Actors,@nlyonne,Unmanageable. I do it for the #art. https://t.co/HcFoVp5AQU +06/10/2018,Actors,@nlyonne,RT @Rosie: FREE REALITY #JUSTICE4REALITY https://t.co/UqsDhmBVWe +06/10/2018,Actors,@nlyonne,"RT @ambermruffin: McDonald’s, you nasty. https://t.co/lDbdDPO1Pp" +06/10/2018,Actors,@nlyonne,"RT @disruptorawards: Disruptor Book of the Year Award goes too Michiko Kakutani 📖 +“This book is a passionate plea for reason” ""The Death o…" +06/10/2018,Actors,@nlyonne,RT @TheScaryNature: Tourists wake up to 3 lions licking water off their tent in Botswana https://t.co/xl6yx53ljy +06/10/2018,Actors,@nlyonne,RT @joshgondelman: I’m tired of every old timey show sounding British. I want a Game Of Thrones with over the top Italian accents. +06/10/2018,Actors,@nlyonne,"RT @MattMcGorry: Angelenos!!! Today and tomorrow at the last days to sign the @reformlajails petition!!! + +Unless you want continued lack of…" +06/10/2018,Actors,@nlyonne,RT @SarahKSilverman: This is pure evil. This makes me want to fight https://t.co/iaDsmZHKlA +06/10/2018,Actors,@nlyonne,“What is this thing called time?” -Nina Simone ♥️⚔️♥️ https://t.co/5weZeQm7c2 +06/09/2018,Actors,@nlyonne,@WaywardWinifred Nyc bb +06/09/2018,Actors,@nlyonne,RT @vausexblack: @nlyonne me all day everyday https://t.co/sPOsn0fMUb +06/09/2018,Actors,@nlyonne,Is doing nothing the best thing in the world? +06/09/2018,Actors,@nlyonne,Chilled so hard today. 🔥 +06/09/2018,Actors,@nlyonne,RT @hannibalburess: This is how I spend my downtime on movie sets. https://t.co/mck5j1MwAD +06/09/2018,Actors,@nlyonne,"Via @jjongholly Happy Pride, Warsaw!! And cool… https://t.co/NizAMebtoN" +06/09/2018,Actors,@nlyonne,"If you’re so inspired, kick in to ⁦@OITNB’s beloved script supervisor’s ⁩new children’s book! #LittleMossBigTree wr… https://t.co/2xoir0zvn5" +06/09/2018,Actors,@nlyonne,“I think the saddest people always try their… https://t.co/PxlgJJAOop +06/09/2018,Actors,@nlyonne,"In the Trump Administration, Science Is Unwelcome. So Is Advice. via @NYTimes Full tilt Idiocracy. https://t.co/QNW0AELOD6" +06/09/2018,Actors,@nlyonne,"This is why weekends exist. + +Via… https://t.co/30VfD17Cwv" +06/09/2018,Actors,@nlyonne,"RT @NickPinkerton: On @FilmLinc's Luchino Visconti retrospective, starting today, for @Artforum: https://t.co/pKifnJEDiZ" +06/09/2018,Actors,@nlyonne,@broadly @ShawkatAlia ♥️♥️♥️ +06/09/2018,Actors,@nlyonne,RT @nowthisnews: Meet the 11-year-old founder and CEO of this hair barrette company https://t.co/CScWTvpNi4 +06/09/2018,Actors,@nlyonne,"RT @BeauWillimon: Yesterday David Simon (@AoDespair) was banned from Twitter. Please read his post & share. When you do, tell @Jack to get…" +06/09/2018,Actors,@nlyonne,"RT @brainpicker: “Words are events, they do things, change things. They transform both speaker and hearer; they feed energy back and forth…" +06/09/2018,Actors,@nlyonne,Because of balloons maybe? 🎈 https://t.co/jJMhGbm4zv +06/09/2018,Actors,@nlyonne,RT @TEDTalks: 4 simple exercises to strengthen your attention and reduce distraction: https://t.co/8GxPOxBTeS https://t.co/4WaRzEzCAn +06/09/2018,Actors,@nlyonne,RT @FilmStruck: Due to the Production Code almost all of the homosexual themes from Tennessee Williams's original stage play were removed f… +06/09/2018,Actors,@nlyonne,"RT @ToledoXCTF: “If you put your mind and heart into what you want to do, you’ll be able to do more than you think is possible and you can…" +06/09/2018,Actors,@nlyonne,"RT @Jacksons: “And now I’m ready to show, that we can come together and think like one- come together now, live together underneath the sun…" +06/08/2018,Actors,@nlyonne,RT @GhostPanther: I’m heart broken. I’ve dealt with depression and some days it can get you like a beast. I encourage anyone struggling to… +06/08/2018,Actors,@nlyonne,"RT @ruths: ""In these current circumstances, one must pick a side. I stand unhesitatingly and unwaveringly with the women” https://t.co/vyVp…" +06/08/2018,Actors,@nlyonne,RT @AndyRichter: Thread https://t.co/1NsGhAd8EZ +06/08/2018,Actors,@nlyonne,"RT @PamelaPaulNYT: “And though I don’t really care about what people say about me when I’m gone, I guess Jerry Stahl would make an entertai…" +06/08/2018,Actors,@nlyonne,https://t.co/tiJX2N6p9G +06/08/2018,Actors,@nlyonne,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/08/2018,Actors,@nlyonne,RT @KamalaHarris: Let’s be clear about what this is — our government has mobilized a deportation force to break up families and deport immi… +06/08/2018,Actors,@nlyonne,RT @nowthisnews: Studies show dogs prevent more burglaries than guns — so this campaign wants you to swap your gun for a shelter dog https:… +06/08/2018,Actors,@nlyonne,"RT @ShaunKing: BREAKING: Colin Kaepernick's legal team is going to subpoena Donald Trump in the @NFL collusion case. + +Donald Trump and NFL…" +06/08/2018,Actors,@nlyonne,What am I looking at. https://t.co/hxtYpynjr5 +06/08/2018,Actors,@nlyonne,RT @MattOswaltVA: looking forward to Snooki convincing Trump to pardon Edward Snowden +06/08/2018,Actors,@nlyonne,Major babe 🔥 https://t.co/TFHVXwZGoj +06/08/2018,Actors,@nlyonne,"RT @RVAwonk: Hey, ever been pregnant? Taken medicine for acne or anxiety or asthma? Been injured? Had surgery? Or anything listed below? + +C…" +06/08/2018,Actors,@nlyonne,RT @TeganEffect: @nlyonne This is you! https://t.co/Insp1hBRty +06/08/2018,Actors,@nlyonne,Maybe I’m an alien from Mars and I’m just not telling you. +06/07/2018,Actors,@nlyonne,"RT @LaFamiliaFilm: The first lady attended a FEMA briefing, her first appearance in front of camera in almost a month. Melania did not spea…" +06/07/2018,Actors,@nlyonne,RT @agedhippiex: @nlyonne you don’t deserve to be verified +06/07/2018,Actors,@nlyonne,RT @BrandzyFoSheezy: @nlyonne Talk about it girl 💅🏽 +06/07/2018,Actors,@nlyonne,How come they’re not telling us about the aliens they know are there? +06/07/2018,Actors,@nlyonne,🤯🤯👈🏽 https://t.co/VdwHreFzkx +06/07/2018,Actors,@nlyonne,🤯👈🏽 https://t.co/YPF0UDz2gF +06/07/2018,Actors,@nlyonne,"RT @SheilaEdrummer: Happy birthday Prince. WE had some amazing times together. 38yrs of Love, Music, God. I miss you but I'm at Peace. I lo…" +06/07/2018,Actors,@nlyonne,*not sure what the teletubbies sound like +06/07/2018,Actors,@nlyonne,Zero chill. Did the teletubbies write this +06/07/2018,Actors,@nlyonne,Omg this Alaska Airlines safety song +06/07/2018,Actors,@nlyonne,RT @IncredibleCulk: Aren’t glasses are just really tiny telescopes you wear on your face? +06/07/2018,Actors,@nlyonne,"RT @WaywardWinifred: the cruelty coupled with incompetence is staggering. + +https://t.co/nbquhktmxt" +06/07/2018,Actors,@nlyonne,#mars #life #aliens +06/07/2018,Actors,@nlyonne,"RT @RuPaul: “When I was a boy and I would see scary things in the news, my mother would say to me, ‘Look for the helpers. You will always f…" +06/07/2018,Actors,@nlyonne,"RT @CookieRiverside: A massive THANK YOU PARTY awaits you -- in Hell. +Satan is baking you a cake. +Demons are painting your tiny cage bright…" +06/07/2018,Actors,@nlyonne,@LuciaAniello ♥️ +06/07/2018,Actors,@nlyonne,RT @LuciaAniello: The new me. Music videos only. RIP my tv and film career. https://t.co/DDul7ofcEx +06/07/2018,Actors,@nlyonne,RT @marykarrlit: Most any #suicide is killing the wrong person. One of the few to survive jumping off the Golden Gate Bridge said the minut… +06/07/2018,Actors,@nlyonne,"RT @christinawilkie: On April 11, I called Trump’s favorite architect to ask about jobs he did in Eastern Europe that recently drew Mueller…" +06/06/2018,Actors,@nlyonne,RT @jemimakirke: Still not convinced warren Beatty and Shirley MacLaine are siblings. +06/06/2018,Actors,@nlyonne,"RT @FilmStruck: Celebrate the life of Chantal Akerman on her birthday with SAUTE MA VILLE ('68), HOTEL MONTEREY ('72), JE TU IL ELLE ('75),…" +06/06/2018,Actors,@nlyonne,RT @fairuza: Thrilled to find “Joseph Campbell and the power of Myth” on Netflix!! Brilliant man. Yay! +06/06/2018,Actors,@nlyonne,RT @KarenKilgariff: I mean https://t.co/8q7L2DRRcQ +06/06/2018,Actors,@nlyonne,"RT @AHarmonyMusic: Ok, but let’s ultimately give the part to Janelle Monáe. https://t.co/nlzT7OyL1k" +06/05/2018,Actors,@nlyonne,Omg it just won’t end. Human race out to lunch. https://t.co/EGYN6Ldnzk +06/05/2018,Actors,@nlyonne,@shannonwoodward Ur tech unavail Bc theremin +06/05/2018,Actors,@nlyonne,"RT @SenSanders: It costs $30,000 to send a California student to UCLA for a year. To send someone to prison, it costs $75,000. + +We need to…" +06/05/2018,Actors,@nlyonne,@mradamscott @annieleibovitz She’s still got it. 🖖🏾 +06/05/2018,Actors,@nlyonne,I also plead the fifth. @OITNB @thedanieb #july27 @netflix 🧡 https://t.co/NIMwLwkKyv +06/05/2018,Actors,@nlyonne,RT @michaelianblack: Not a lawyer - is witness tampering bad? +06/05/2018,Actors,@nlyonne,RT @wesleysnipes: For everyone that sends me this photo 300 times a day ... I SEENT IT!!! I SEENT IT! I SEENT IT! 😂 https://t.co/u7vumefgO9 +06/05/2018,Actors,@nlyonne,😍😍 @shannonwoodward #biopic https://t.co/W26DSuTrLk +06/05/2018,Actors,@nlyonne,RT @brioneh: it’s that time of year again https://t.co/btFJrS2i3P +06/05/2018,Actors,@nlyonne,@johnlevenstein Lol +06/05/2018,Actors,@nlyonne,@WillWGraham Will! https://t.co/QIL2T90eDh +06/05/2018,Actors,@nlyonne,RT @BradWalsh: @nlyonne You can be a judge on So You Think You Can @ Me +07/01/2018,Actors,@thedanieb,@steviekae Lol +07/01/2018,Actors,@thedanieb,@BL11Olivia @soulcycle I might be coming soon!! https://t.co/4ROm67b1ZP +06/30/2018,Actors,@thedanieb,Are you pulling my leg? #dumbomagic +06/30/2018,Actors,@thedanieb,Does this really work? #dumbomagic +06/29/2018,Actors,@thedanieb,Taking this message with me everyday. https://t.co/pK0QNUdVpw +06/29/2018,Actors,@thedanieb,She did NoT come to play congrats @aquariaofficial #DragRaceFinale https://t.co/F1sJfunbWU +06/29/2018,Actors,@thedanieb,Go head @monetxchange Of course your Ms. Congeniality #tbt #DragRaceFinale https://t.co/d5trG2xvR2 +06/29/2018,Actors,@thedanieb,@eurekaohara killed that first battle. You did not come to play!! #DragRaceFinale +06/29/2018,Actors,@thedanieb,Them bitches killed it!!! 3 different looks in 1 battle! Yes @eurekaohara https://t.co/hecXsF8jeN +06/29/2018,Actors,@thedanieb,Y’all are so rude lol https://t.co/B5bZwOoeEF +06/29/2018,Actors,@thedanieb,Damn I was rooting for her too lmao https://t.co/ut1cR15KMH +06/29/2018,Actors,@thedanieb,@_thatguyy20 Lmao +06/29/2018,Actors,@thedanieb,@asialove519 My thought exactly +06/29/2018,Actors,@thedanieb,Anybody else like me worried about the butterflies getting stepped on? #DragRaceFinale https://t.co/RpmuaDAyxW +06/29/2018,Actors,@thedanieb,Omg my heart is beating like I’m lip syncing right now! #LipSyncFinale +06/29/2018,Actors,@thedanieb,“Be yourself to free yourself” 💜💜@eurekaohara #DragRaceFinale +06/29/2018,Actors,@thedanieb,@CynthiaEriVo Girl you better find a live stream!! Now!!! +06/29/2018,Actors,@thedanieb,Love me some @AsiaOharaLand #DragRaceFinale and YESSSSS for this outfit! +06/29/2018,Actors,@thedanieb,MOTHER O!!!! #DragRaceFinale https://t.co/lFQTNRzeX7 +06/29/2018,Actors,@thedanieb,Honey they are working these dancers tonight lol if I was dancing for the finale this would be me during breaks LOL… https://t.co/jt0kBg3FEV +06/29/2018,Actors,@thedanieb,Errboday Say Love!!! #DragRaceFinale https://t.co/WfLQTpkBua +06/29/2018,Actors,@thedanieb,These queens did not come to play!!!!! I’m so ready!! @RuPaulsDragRace #DragRaceFinale https://t.co/8ReBwcrRZR +06/28/2018,Actors,@thedanieb,So lovely meeting the one and only @RepMaxineWaters last night!! She sets it straight! https://t.co/5jOb5pbNt2 +06/28/2018,Actors,@thedanieb,Had a blast chatting it up with “Stranger Things” ⁦@priahferguson⁩ She’s such an intelligent little lady! ⁦… https://t.co/JsDYvRmFig +06/25/2018,Actors,@thedanieb,"RT @strongblacklead: Last night was magical ✨ +Here's a look at how we brought Black History to Hollywood. https://t.co/Ry8QmNKMqG" +06/25/2018,Actors,@thedanieb,Yes it is. https://t.co/FTCmYTL12S +06/25/2018,Actors,@thedanieb,What a day this was... grateful for moments like these. @netflix strongblacklead https://t.co/Zpb5ttn0Jd +06/25/2018,Actors,@thedanieb,#BlackExcellence #BlackRoyalty #StrongBlackLead Why I love being apart of @netflix We all get to be authentically w… https://t.co/bORmpsWy5y +06/20/2018,Actors,@thedanieb,@michaelb4jordan @MatthewACherry @creedmovie I can’t wait +06/19/2018,Actors,@thedanieb,@DanaiGurira @WomensHealthMag @lizplosser @WattsUpPhoto @YashuaSimmons Love this +06/17/2018,Actors,@thedanieb,😍😍😍 https://t.co/aDkaYz01tL +06/17/2018,Actors,@thedanieb,Then ➡️ to now. To the man who keeps me laughing and whose words can wipe away any tear. To the man who always went… https://t.co/obmRPCHvx3 +06/17/2018,Actors,@thedanieb,I don’t know if I can handle ep 3 @QueerEye SOOO GOOOD @netflix +06/17/2018,Actors,@thedanieb,S2 Ep2 of @QueerEye had me on the floor https://t.co/jexDfkukoa +06/17/2018,Actors,@thedanieb,Season 2 episode 1 of @QueerEye had me bawling. https://t.co/xnXp3Nwzp7 +06/17/2018,Actors,@thedanieb,@jclee1230 @RuPaulsDragRace Lol hehe 🙃 +06/16/2018,Actors,@thedanieb,@jclee1230 @RuPaulsDragRace @jclee1230 explain JC Lee explain. The other queens are killing it but Eureka is super dope! +06/16/2018,Actors,@thedanieb,#TeamEureka To the moon!! @RuPaulsDragRace +06/14/2018,Actors,@thedanieb,Let ‘em know you ain’t average today. 😉 +06/13/2018,Actors,@thedanieb,@ArianaDeBose @prabalgurung @DonnaSummerBway @jennyanina She bad. +06/12/2018,Actors,@thedanieb,Thank you @Variety for keeping a girl’s dreams alive. #Emmys #EmmysContender @OITNB https://t.co/JOY9O3SY82 +06/12/2018,Actors,@thedanieb,When every day isn’t sunshine and rainbows... there is always poetry @najwazebian https://t.co/3SMUUgKA96 +06/12/2018,Actors,@thedanieb,@imannmilner Love this +06/12/2018,Actors,@thedanieb,@JonPeake @OITNB 😉 +06/11/2018,Actors,@thedanieb,I missed the opening number but I’m back on track! Omg that was close!!! This #theatrenerd almost had a serious meltdown!!! #TonyAwards2018 +06/11/2018,Actors,@thedanieb,Yo #TonyAward2018 is not coming through clearly and I’m trying not to freak out for God’s sake. Noooooooooo!!!! +06/11/2018,Actors,@thedanieb,Umm is it my tv or is something happening to everyone’s tv watching the #Tonys2018 +06/10/2018,Actors,@thedanieb,Happy #TonyAward2018 I’m so hype for all my friends nominated or performing tonight!! Rock out with your (heart) out! 😝 +06/09/2018,Actors,@thedanieb,I second what @nlyonne says. https://t.co/8Df0teM8sy +06/08/2018,Actors,@thedanieb,@kerrywashington @AmericanSonPlay @StevePasquale @iamKENNYLEON Welcome back! Can’t wait to witness. 😊 +06/08/2018,Actors,@thedanieb,"@rabaus Well from someone who has made many phone calls, having someone to talk to like a therapist or a counselor… https://t.co/5DncmSJT5m" +06/08/2018,Actors,@thedanieb,"@rabaus With loosing two major icons to suicide in one week, haven’t you noticed the “big earners” are human too?… https://t.co/FgDHutwkqt" +06/08/2018,Actors,@thedanieb,"Asking for help is a strength not a weakness. Don’t be afraid to reach out. National Suicide Prevention Hotline: +1-800-273-TALK (8255)" +06/08/2018,Actors,@thedanieb,I say the definition of... melanin. You say the definition of... ? https://t.co/5HS5X4bKuD +06/08/2018,Actors,@thedanieb,So happy for you @Oprah 💜💜 https://t.co/Rnnghu22vC +06/06/2018,Actors,@thedanieb,Umm I’m stealing this one. Lol 😂 https://t.co/RzEUleAqF3 +06/06/2018,Actors,@thedanieb,The dude with the coolest office goes to @MatthewACherry Stopped by @Monkeypaw and I’m sorry but I think they have… https://t.co/K35viuyoEV +06/05/2018,Actors,@thedanieb,@shadowandact @donaldglover Please let this be so. +06/05/2018,Actors,@thedanieb,I plead the fifth. @OITNB 🍊 https://t.co/SgdwiPxO78 +06/05/2018,Actors,@thedanieb,I’m here for this change. https://t.co/UUJHqO6mem +05/31/2018,Actors,@thedanieb,@TreshelleEdmond I’m so sorry for your loss Treshelle. Praying for you and your family. +05/30/2018,Actors,@thedanieb,"@JMunozActor @OITNB Yea you didn’t know, lol." +05/30/2018,Actors,@thedanieb,"Went out for a night on the town in my oh so comfy, oh so cute @ftfsnaps dress last night. Fell in love with this… https://t.co/ruxhxNuTmf" +05/29/2018,Actors,@thedanieb,Okay now that #RoseanneCancelled Can we please bring back #familymatters or do a #livingsingle reboot? +05/29/2018,Actors,@thedanieb,Yes! 🙌🏿 https://t.co/IeF0NrRfmu +05/29/2018,Actors,@thedanieb,@Coco_ChannelB We gotta plan something to hang out +05/29/2018,Actors,@thedanieb,@Coco_ChannelB Miss you and love you too +05/24/2018,Actors,@thedanieb,@pejvahdat I feel a hang coming soon +05/24/2018,Actors,@thedanieb,@pejvahdat love seeing on so many tv shows at one time!! Miss you bro! +05/23/2018,Actors,@thedanieb,@MrTonyHale Come through @MrTonyHale https://t.co/q0iBUcqtTC +05/22/2018,Actors,@thedanieb,Hey @KenneyGreen I think I’m gonna go to @mariescrisis Friday. Will you be there? 😊 +05/22/2018,Actors,@thedanieb,Keeping my cool. https://t.co/1RtQ1CvBjO +05/21/2018,Actors,@thedanieb,"RT @RebeccaJarvis: “All of these things that I’ve wanted to do, I’m doing because I’m saying I can and I will.” - @thedanieb on the #NoLimi…" +05/21/2018,Actors,@thedanieb,Turn up! Love the Obamas. https://t.co/ygsZqqi8TX +05/20/2018,Actors,@thedanieb,Sunday Kind of Love. 💕 https://t.co/YvG11Bul7N +05/19/2018,Actors,@thedanieb,@JaimePrimak Hey girl hey 👋🏿 +05/18/2018,Actors,@thedanieb,"Michael J. Woodard Sings ""Still I Rise"" by Yolanda Adams - Top 5 - Ameri... https://t.co/1CUcmHbIlX via @YouTube I… https://t.co/L0d4S1iVQa" +05/18/2018,Actors,@thedanieb,You are an angel Michael. It brought me so much joy to hear you sing @YolandaAdams I love how you keep God first an… https://t.co/AcG4AWcFIc +05/18/2018,Actors,@thedanieb,Woke up in the best mood 🎊 counting my blessings. +05/16/2018,Actors,@thedanieb,Closer to home means closer to him. 💕 +05/16/2018,Actors,@thedanieb,"@Churlynnn I understand and you shouldn’t stop fighting, but this is a battle that leads to a dead end. I’m on your… https://t.co/Jo3sZmgNuS" +05/16/2018,Actors,@thedanieb,"Sweetheart. Churlynnn... I deleted bc I wanted too, bc I get to choose the battles I feel are worth fighting. Tryin… https://t.co/XvFKvEPEdp" +05/16/2018,Actors,@thedanieb,"Playing @LeAndriaJ song “Better days are coming” while being stuck in the airport for over 7hrs, now I’m delayed at… https://t.co/dISrpfCI0K" +05/14/2018,Actors,@thedanieb,"It’s not always gonna be easy, but you gotta do what’s best for you." +05/14/2018,Actors,@thedanieb,"RT @seewhatsnext: #OITNB's @thedanieb on the “subconscious mentorship” that happens when women are in charge: ""When you see Jenji Kohan run…" +05/13/2018,Actors,@thedanieb,@Luvvie @NicoleArbour It’s so annoying. +05/13/2018,Actors,@thedanieb,"@TheRoot STOP!!!!! As someone that’s a woman and who’s black, I wish she would just stop! This cry for relevance is… https://t.co/uRe1ly42J7" +05/13/2018,Actors,@thedanieb,Thank you mommy for helping me become the woman I am today. Love you more than you’ll EVER know! 💕 https://t.co/p1gFOJsiac +05/13/2018,Actors,@thedanieb,@The_Oklahomie Lol. Even in flat shoes ? +05/13/2018,Actors,@thedanieb,@theSheenaB This was me. Lol and it wasn’t even that many steps to the next floor 😆 +05/13/2018,Actors,@thedanieb,@lydiajoy50 Lol +05/13/2018,Actors,@thedanieb,Bye Felicia’s. +05/13/2018,Actors,@thedanieb,@_audge_ Wrong answer lol https://t.co/hwvU0WWggF +05/13/2018,Actors,@thedanieb,I. Can’t. Wait. https://t.co/BQERHEGIec +05/12/2018,Actors,@thedanieb,This is the best thing I’ve seen all night lmbo. The #whitegirltears at the end had me rolling. 😂 https://t.co/cvfZm6IZlN +05/11/2018,Actors,@thedanieb,Thank you @essencemag Hope this encourages someone on their journey.💕 https://t.co/wmqeEoTiEr +05/11/2018,Actors,@thedanieb,If you’re a teenager or young adult don’t call me sweetie or hun. I will call you out on that ish. #petpeeve https://t.co/zHKNiF325p +05/11/2018,Actors,@thedanieb,Things to know this morning. @RepMaxineWaters I applaud you. https://t.co/1U812UkMzt +05/11/2018,Actors,@thedanieb,@Essence Shine on @Essence ✨ +05/10/2018,Actors,@thedanieb,"How do things like this just get to happen? Clearly by the way he so easily jacked him up, that officer clearly wa… https://t.co/WSnLEQWpse" +05/09/2018,Actors,@thedanieb,RT @Essence: .@thedanieb isn’t your typical fashion girl—and that’s part of her magic. https://t.co/wuhtqUHixf https://t.co/pqUJcyKi93 +05/08/2018,Actors,@thedanieb,@vulture Smart AF. +05/08/2018,Actors,@thedanieb,L.A. what time does American Idol come on? +05/08/2018,Actors,@thedanieb,@MatthewACherry Hilarious +05/07/2018,Actors,@thedanieb,"RT @Essence: .@thedanieb redefines beauty standards every time she hits the red carpet or slays the runway. Now, she's taking things a bit…" +05/07/2018,Actors,@thedanieb,@JSim07 Wow!! +05/07/2018,Actors,@thedanieb,Living fully in the grand moments! +05/06/2018,Actors,@thedanieb,Catch the message(s). https://t.co/ZTUltvdbpd +05/06/2018,Actors,@thedanieb,When you’ve told your driver you’ve been somewhere a hundred times and she still tells you the name of every block.… https://t.co/bwd1OZvl3N +05/03/2018,Actors,@thedanieb,@samirawiley Beautiful +05/03/2018,Actors,@thedanieb,I’m not gonna allow ignorance to stress me out today! Miss me with that. ☀️ https://t.co/fyKAlay4sp +05/02/2018,Actors,@thedanieb,Today is just one of them days... https://t.co/jRTsodPWUg +05/02/2018,Actors,@thedanieb,@BenSPLATT @MichaelJWoodard Totally 2nd this @BenSPLATT 😍😍he’s a winner! +05/01/2018,Actors,@thedanieb,Between this and the Kanye BS I just can’t today!!! Crazy 🤦🏿‍♀️ https://t.co/bgrplqcsuB +05/01/2018,Actors,@thedanieb,RT @JonBatiste: You’re the only version that exists. +04/30/2018,Actors,@thedanieb,Love late night karoake! https://t.co/zNZGWHZ8jS +04/28/2018,Actors,@thedanieb,@LeaMichele Congrats girl!!! +04/28/2018,Actors,@thedanieb,I’m completely obsessed with @MichaelJWoodard You have magic running all through your veins my friend. Continue to… https://t.co/kvzBvtGGFO +04/26/2018,Actors,@thedanieb,Speaking your truth so that all the “Dirty Computers” can!! Salute. https://t.co/I9XhvVfj4w +04/26/2018,Actors,@thedanieb,@IceIceHazy Watch away my friend!! 👍🏾 +04/26/2018,Actors,@thedanieb,Thank you @essence for letting me show off my vibrant style IN LIVING COLOR. Check out my 6 page spread in this mon… https://t.co/LfJtyyhCwa +04/24/2018,Actors,@thedanieb,@MadameNoire Thank you for the lovely article. +04/23/2018,Actors,@thedanieb,Sun-kissed. Wearing @CSiriano https://t.co/9mlTSN4VoJ +04/23/2018,Actors,@thedanieb,@jdgib @SpartanRace What’s your ig? Tried tagging you +04/22/2018,Actors,@thedanieb,I earned this baby!! My first @SpartanRace thank you to my amazing trainer for showing me their are more rewarding… https://t.co/Q30dE7l49Q +04/20/2018,Actors,@thedanieb,"Someone once said, “You teach people how to treat you.” Yelp, STOP second guessing me. https://t.co/JW8jxcl7MH" +04/17/2018,Actors,@thedanieb,RT @whenever: Looking for something AMAZING to do tonight? Come see @thedanieb and Ben Sinclair (@hmonhbo) on tonight's show! Get your tick… +04/16/2018,Actors,@thedanieb,Gonna be a good time. https://t.co/2f1KwkL5RP +04/16/2018,Actors,@thedanieb,Feeling good on this rainy Monday!! Hope you’re have a good day wherever you are in the world. +04/11/2018,Actors,@thedanieb,You’re one of the dopest women in Hollywood. 👑 great seeing you last night. https://t.co/GNp9TBrYRd +04/08/2018,Actors,@thedanieb,What @leslieodomjr said!!! https://t.co/miHxMF5vsn +04/07/2018,Actors,@thedanieb,"RT @universalstand: Q: are you ready for a new Brooks Overalls color? +A: yes, yes you are. +— +Designed by @thedanieb for you. #USxDB +Droppi…" +04/06/2018,Actors,@thedanieb,@PadmaLakshmi Hilariously perfect gif lol +04/04/2018,Actors,@thedanieb,@kymwhitley @LenaWaithe That’s been driving me crazy.. Mystery is solved! haha +04/04/2018,Actors,@thedanieb,"Maya Angelou, the original #PhenomenalWoman, would’ve been 90 years-old today. We’re here to remind all women, espe… https://t.co/yF2UKmWCdE" +04/04/2018,Actors,@thedanieb,Lord please let these eyelashes stay on todayyyyyy!! Intercede for the lashes Lord!! https://t.co/XROo2E7gbN +04/03/2018,Actors,@thedanieb,Story of my life 😂 https://t.co/qB474w9p0M +04/02/2018,Actors,@thedanieb,@Scarlet0o8 Take me back. +04/02/2018,Actors,@thedanieb,God wins the best April Fools prank on the ENTIRE city of New York. Yesterday I had on open toe shoes and now I got… https://t.co/yR39E1vXwy +03/30/2018,Actors,@thedanieb,Love this song by @yebbasmith called “Evergreen” Get into her. ❤️ https://t.co/3XFgzWKYBv +03/29/2018,Actors,@thedanieb,@NiaLong such a huge STANDOUT!! You were phenomenal in #RoxanneRoxanne PHE•NO•ME•NAL! +03/29/2018,Actors,@thedanieb,I’ve been on safari in Tanzania but if this happened to me. I just don’t know... 😱💀 https://t.co/5j9Z1XAAIs +03/29/2018,Actors,@thedanieb,@Essence @JoyAnnReid Of course she does!! 😊 +03/29/2018,Actors,@thedanieb,@kerrywashington Noooo!!! My heart. https://t.co/0oHiumQUqZ +03/29/2018,Actors,@thedanieb,My middle name is CrayCray. #tbt 🎥 @uptheamp https://t.co/X2fVcKLqZu +03/29/2018,Actors,@thedanieb,@Blacktress finally caught up and watched you on @2DopeQueens and you were so f**king phenom!!! 🔥 🔥 Just had to tell you! +03/28/2018,Actors,@thedanieb,Getting through the day. 🤪 +03/28/2018,Actors,@thedanieb,@annasale @Spotify Creating dreams in unexpected places. 💕 +03/26/2018,Actors,@thedanieb,@GlennJMurphy @OITNB Thank you +03/26/2018,Actors,@thedanieb,Rise and Grind. Back to work. +03/24/2018,Actors,@thedanieb,#wewantchange #EndGunViolence +03/24/2018,Actors,@thedanieb,#MARCHFOROURLIVES Listen to our youth and help them make change for the better!! +03/23/2018,Actors,@thedanieb,Great example of what it means to take care of our communities. #RP Anyone know where this kind of training is ava… https://t.co/9TwzMkqRjG +03/23/2018,Actors,@thedanieb,@MisterTrimmer @jpflannery Lovely meeting you. 💕 +03/22/2018,Actors,@thedanieb,Unconstitutional. I can’t believe this is real. https://t.co/lJOODcJJ0A +03/20/2018,Actors,@thedanieb,💋💋 https://t.co/Gu0j2bqrte +03/20/2018,Actors,@thedanieb,Come on Auntie!!! 🙌🏿 https://t.co/19LIV7HIVr +03/20/2018,Actors,@thedanieb,"When you sneeze twice, you say Excuse Me and your uber Driver doesn’t say Bless You... what I wanted to do 👇🏾lol https://t.co/jtgPJjXRbf" +03/19/2018,Actors,@thedanieb,Totally just forgot how to spell •Scissors• so I had to use the voice type feature on my 📱 to remember how to spell… https://t.co/wgntE3wS3h +03/19/2018,Actors,@thedanieb,@JohnWBrown1 @LenaWaithe @SHOTheChi Agreed lol +03/19/2018,Actors,@thedanieb,@IssaRae I am dead lol +03/19/2018,Actors,@thedanieb,"RT @universalstand: • staring down the week in style • +@thedanieb in the Dani sweater dress she designed for US. What are you looking forwa…" +03/18/2018,Actors,@thedanieb,@Love2244 Umm 😐 no I wasn’t. I had a film there but wasn’t able to make it. +03/18/2018,Actors,@thedanieb,NY ✈️ AUS ✈️ NY ✈️ DR ✈️ LA all in 3 weeks!! And I’m still standing! Say what!?! https://t.co/9R3SHLc7fB +03/18/2018,Actors,@thedanieb,Girl you made me laugh so hard. Thank you for being my blessing of the day! 😊 https://t.co/ggn0cZxGau +03/17/2018,Actors,@thedanieb,@adriennelwarren so proud of you girl!! Kill it out there in London!! +03/17/2018,Actors,@thedanieb,"RT @joshuahenry20: You could be on Broadway, in a 10 seat theater, or putting on a play in your backyard... When you’re surrounded by artis…" +03/14/2018,Actors,@thedanieb,"Sometimes you have to stand alone, but keep standing!! @justinlblackman Proud of your courage. https://t.co/bSrdjZW6p5" +03/14/2018,Actors,@thedanieb,"@JustinIBlackman Sometimes you have to stand alone, but keep standing!! @justinlblackman Proud of your courage." +03/14/2018,Actors,@thedanieb,I STAND WITH YOU ALL TODAY!! #nationalschoolwalkout +03/11/2018,Actors,@thedanieb,Miss you guys!! #sadiefilm @sxsw Wish I could be there premiering it up!! https://t.co/zS6KtYvstc +03/10/2018,Actors,@thedanieb,"These mosquitos making a full meal out of me in the DR, from my neck to my elbow to my babytoe 😭 lol" +03/09/2018,Actors,@thedanieb,Aww thanks Bud! https://t.co/vATCKK6R3d +03/09/2018,Actors,@thedanieb,HEY check this out! Artist • Activist. Is that you? 8 days left to apply to the Artist As Citizen Conference! AAC i… https://t.co/ZGg1Wh4zBQ +03/08/2018,Actors,@thedanieb,@dhalcombe I miss you. That’s it. ✌🏾 +03/07/2018,Actors,@thedanieb,My little brother knows what he’s talking about. https://t.co/b6GVdEtJsl +03/07/2018,Actors,@thedanieb,Sending so much love to Queen @ava today! So sad I’ll be missing the NY premiere of #WrinkleInTime!Sending so much… https://t.co/r1vRTgEDSV +03/07/2018,Actors,@thedanieb,@LauraBenanti @RuthieAnnMiles Just Heartbreaking. +03/07/2018,Actors,@thedanieb,Jetlagged. +03/06/2018,Actors,@thedanieb,This is everything. https://t.co/C4ntNT0yPa +03/05/2018,Actors,@thedanieb,@natasharothwell Good point +03/04/2018,Actors,@thedanieb,Gonna be my mood all week! Go head on @thebettygabriel 2 snaps for the Queen 👑 https://t.co/gE50OZZOql +03/04/2018,Actors,@thedanieb,I said I wasn’t gonna tweet about the #Oscars but the way #DeeRees just stepped out on this carpet tho!!! She looks… https://t.co/WrT742WoXy +03/03/2018,Actors,@thedanieb,"The way this DVR is set up, I can’t wait to get home. Lol https://t.co/TIRJDi2WOB" +03/03/2018,Actors,@thedanieb,"Australia, you wore me out... In the best way. ✌🏾until next time." +03/02/2018,Actors,@thedanieb,♥️♠️♥️ https://t.co/8EyeM22JkL +03/02/2018,Actors,@thedanieb,This is everything. https://t.co/hp986zpu9R +02/28/2018,Actors,@thedanieb,From Coogee to Bondi. Outchea Beachin’! 🏝 https://t.co/G56vuIoixP +02/28/2018,Actors,@thedanieb,@djbr00ks So proud of you baby brother @djbr00ks Keep striving for greatness!! +02/28/2018,Actors,@thedanieb,@jasminemihalski That works too 👍🏾 +02/27/2018,Actors,@thedanieb,"When asked where we was from, you already know... #WAKANDA ✊🏾 https://t.co/gHaWLGGgEa" +02/27/2018,Actors,@thedanieb,"Life is meant to be lived fully. I climbed the 1,654ft high Sydney Harbour Bridge yesterday. #worthit I smiled all… https://t.co/rz9XE9Hytx" +02/27/2018,Actors,@thedanieb,@steviekae @IMDb @theblackpanther Just found out it’s how many people visit their IMDb page +02/27/2018,Actors,@thedanieb,"Sydney, Australia I’m enjoying you. 🇦🇺" +02/26/2018,Actors,@thedanieb,How Cray! 🤪 We ran into @Coolio in Australia. Such a nice man. https://t.co/RMGZoCWR2Q +02/26/2018,Actors,@thedanieb,@luckyesteban Thanks for all your help today. 😎 +02/25/2018,Actors,@thedanieb,I see you @LOFT. Good move! #inclusion #stepforward +02/23/2018,Actors,@thedanieb,"Agreed, I second this. #BoycottNRA https://t.co/GBD7FL6VW1" +02/23/2018,Actors,@thedanieb,RT @NetflixANZ: Guess who's coming to Mardi Gras! https://t.co/CFzFk2B0vL +02/22/2018,Actors,@thedanieb,"On some real Prince shit, yet so uniquely her! Love it! https://t.co/nzk1VVBFwJ" +07/02/2018,Actors,@Lavernecox,"RT @TexasIsaiah: i’m very grateful for black non-binary and trans folks. i appreciate the ways we hold space for the WORLD, how we exhibit…" +07/02/2018,Actors,@Lavernecox,Good. Bring it to the light and the runway. https://t.co/vCi3MKt1FB +07/02/2018,Actors,@Lavernecox,Ok that was just mean ending the episode like that. I was so ready for that conversation. #PoseFX +07/02/2018,Actors,@Lavernecox,"Lord have mercy, this is intense af #starzpower https://t.co/6F0VfzKDu3" +07/01/2018,Actors,@Lavernecox,@AlfreWoodard on the latest season of #LukeCage is pure unadulterated genius. Congrats to the entire cast and crew for an amazing season. +07/01/2018,Actors,@Lavernecox,RT @paolamendoza: A long time ago I made the choice to use my art to uplift the humanity of my people. I’ve had the honor to tell the stori… +06/30/2018,Actors,@Lavernecox,"RT @ACLwoo: We must love each other harder than ever before... JUSTICE is what LOVE looks like in public. No justice, no peace!! @Lavernec…" +06/30/2018,Actors,@Lavernecox,"RT @paolamendoza: Today, let’s march. +#FamiliesBelongTogether https://t.co/tvuXLRm9pk" +06/30/2018,Actors,@Lavernecox,RT @kerrywashington: Me! 👋🏾 #FamiliesBelongTogether FIND A MARCH NEAR YOU 👇🏾 https://t.co/yiXdUmpFmH https://t.co/dQMezH4sSA +06/29/2018,Actors,@Lavernecox,"RT @TessaThompson_x: Sometimes we cheer so loudly at someone speaking their truth, that we miss what they say. (Here’s looking at you media…" +06/29/2018,Actors,@Lavernecox,RT @itsgabrielleu: 👇🏾👇🏾👇🏾👇🏾👇🏾... Some people will never get it but not for a lack of info or 1st hand accounts but due to willful ignorance… +06/28/2018,Actors,@Lavernecox,@LaurenJauregui is celebrating her 22nd birthday by supporting the inaugural #stonewallday. Text STONEWALL to 24372… https://t.co/81dW6IpIwr +06/28/2018,Actors,@Lavernecox,"RT @ozy: OZY FEST 2018 SPRING SWEEPSTAKES +1. Like❤️ this post +2. Comment on this post with who you want to see most. +3. Tag a friend. +One l…" +06/27/2018,Actors,@Lavernecox,Let's keep holding on to each other tight and fighting back. Sending you lots of love https://t.co/rh7oGjgmTQ +06/27/2018,Actors,@Lavernecox,"Wow, just wow. As if things aren't already scary https://t.co/QTiPJrqQnl" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: ""Concerned citizens are encouraged to contact the Jacksonville Sheriff’s Office at (904) 630-2133."" Please follow @equalit…" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: Antash’a English and Celine Walker, both black trans women, were two earlier deaths, the latest victim is as of yet uniden…" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: I know we're all deluged with horrible news, but there's a crisis unfolding in Jacksonville, FL that needs more attention.…" +06/25/2018,Actors,@Lavernecox,RT @janetmock: Have y'all seen @theMAJORdoc about trans icon and pioneer Miss Major Griffin-Gracy? It makes for stellar #Pride viewing. Ava… +06/25/2018,Actors,@Lavernecox,#TransIsBeautiful https://t.co/ZZm8jr78V7 +06/25/2018,Actors,@Lavernecox,Congrats to all the winners and amazing performers at tonight's #BETAwards #BETAwards2018 +06/25/2018,Actors,@Lavernecox,@IamDebraLee congratulations and thank you for the work! #BETAwards2018 #BETAwards +06/25/2018,Actors,@Lavernecox,"RT @janetmock: To learn more about “pumping,” this article is a good primer/start. https://t.co/YusD4ucorD #posefx" +06/25/2018,Actors,@Lavernecox,RT @janetmock: This episode is about the body and our choice to do with it what we want. Though we never shame our characters for doing wha… +06/25/2018,Actors,@Lavernecox,RT @JSim07: #StrongBlackLead https://t.co/YVQ26MZXQu +06/25/2018,Actors,@Lavernecox,Thank you #PoseonFX for another gorgeous episode about the truths of our lives as #lgbtq+ people of color. #TransIsBeautiful +06/25/2018,Actors,@Lavernecox,RT @browneph: @netflix got the juice https://t.co/8XXSPlC2nO +06/24/2018,Actors,@Lavernecox,I know. I live! #PoseonFX https://t.co/0QSKTUI1h7 +06/24/2018,Actors,@Lavernecox,Just trying to stay in the moment and take it as it comes. I am super grateful for this moment. https://t.co/bbcjn4YlXF +06/24/2018,Actors,@Lavernecox,RT @paolamendoza: The crowd is gather in Tornillo to say kids don’t belong in cages. Kids don’t belong with cages with their moms either!… +06/24/2018,Actors,@Lavernecox,Beautiful https://t.co/SoXEOBdZgN +06/24/2018,Actors,@Lavernecox,When she was single she did not facetime. Bad lighting can take a girl out of the game. And taking the time to lig… https://t.co/ItLIpOmsWW +06/22/2018,Actors,@Lavernecox,"RT @TransLawCenter: ""There are many issues, but what’s always pressing on my heart is the need to prioritize the safety of Black and brown…" +06/22/2018,Actors,@Lavernecox,Yassss! #BeatForTheGods https://t.co/LyIsVRfL93 +06/22/2018,Actors,@Lavernecox,WE are loved out in the open. Can't wait for the next episode of #poseFX https://t.co/UAJ5I5Vd40 +06/22/2018,Actors,@Lavernecox,She did preach. Hallelujah! https://t.co/LR2s8DRsSt +06/22/2018,Actors,@Lavernecox,RT @them: How Billy Porter Is Crafting A Legacy For Queer Youth of Color #Queeroes2018 https://t.co/YWOyJfamZf https://t.co/0vFFf9G4t0 +06/22/2018,Actors,@Lavernecox,RT @them: How Reina Gossett Is Fighting for the Unruly Queers of the World #Queeroes2018 https://t.co/wBfGKvsq8u https://t.co/c6KhIH98dl +06/22/2018,Actors,@Lavernecox,RT @them: How Director Silas Howard Is Increasing Trans Representation Behind the Scenes #Queeroes2018 https://t.co/45XcPbBUC7 https://t.c… +06/22/2018,Actors,@Lavernecox,"RT @janetmock: No, I’m not crying. 😭 Such a gorgeous #queeroes2018 tribute by my lil sis @msevareign! #girlslikeus https://t.co/n0u7folxqB" +06/22/2018,Actors,@Lavernecox,RT @them: How Lena Waithe Is Bringing Black Queer Narratives to the Media Forefront #Queeroes2018 https://t.co/zYfZlS3EtK https://t.co/oYWv… +06/22/2018,Actors,@Lavernecox,RT @them: How Ali Stroker Is Making History as a Queer Disabled Person on Broadway #Queeroes2018 https://t.co/z4xcqPKpc6 https://t.co/GFeAo… +06/22/2018,Actors,@Lavernecox,One of my #queeroes indeed. @Peppermint247 Love you girl! #TransIsBeautiful https://t.co/7k48rcCqss +06/22/2018,Actors,@Lavernecox,"""Find what makes you feel most alive and human and never let go of it. You will come to learn that this matters mor… https://t.co/v8HgDB8CcH" +06/21/2018,Actors,@Lavernecox,RT @chasestrangio: White supremacy works by traumatizing generations and then blaming people of color for their trauma and acting as though… +06/20/2018,Actors,@Lavernecox,"RT @Alyssa_Milano: Grab the tissues and turn up the sound. REAL LOUD. + +When you’re finished watching this video please call (202) 224-3121…" +06/20/2018,Actors,@Lavernecox,RT @BirkbeckUnion: #Pride is not just a day to don the glitter and wear your most fabulous outfit - Its first and foremost a protest to dem… +06/18/2018,Actors,@Lavernecox,Thank you! https://t.co/LhNbdqwXFo +06/18/2018,Actors,@Lavernecox,Let's hope and prayer https://t.co/OXwrBttQZF +06/18/2018,Actors,@Lavernecox,Exactly what I was thinking honey. Good luck with that! https://t.co/uGMMo7PxgM +06/18/2018,Actors,@Lavernecox,RT @ourladyj: The stigma around HIV/AIDS is still alive and well in 2018. It has been the responsibility of a lifetime to humanize and empo… +06/18/2018,Actors,@Lavernecox,Amen Hallelujah! https://t.co/vA9vqlxLVx +06/18/2018,Actors,@Lavernecox,Category is...#FORYOURCONSIDERATION @theebillyporter #POSEFX. Bravo Billy +06/18/2018,Actors,@Lavernecox,@JohnnySibilly you were wonderful tonight on #PoseonFX . Congrats darling +06/18/2018,Actors,@Lavernecox,RT @luisapthomson: This answer by the great @Lavernecox for the @VanityFair proust questionnaire is so perfect and I can’t stop thinking ab… +06/18/2018,Actors,@Lavernecox,#PoseFX is telling stories about dating while trans I have wanted to tell for years. Thank you to the entire cast a… https://t.co/oOTMEVOS0L +06/18/2018,Actors,@Lavernecox,"Watching #PoseFX with my bf tonight,I said from experience, ""Angel needs to learn mistresses dont get the holidays.… https://t.co/9LZ7Xyz1iY" +06/18/2018,Actors,@Lavernecox,"""Let's wait a while"" is giving me my life #PoseFX" +06/17/2018,Actors,@Lavernecox,"@chasestrangio Happy #FathersDay darling. Sending love to Dad's of all gender identities, sexual orientations, rac… https://t.co/Ft1d3c2cYd" +06/17/2018,Actors,@Lavernecox,RT @chasestrangio: For this #FathersDay also a reminder that trans folks are parents too. 🙋🏻‍♂️ +06/17/2018,Actors,@Lavernecox,This thread👇 https://t.co/aZ6Vdnwkqh +06/17/2018,Actors,@Lavernecox,Amen sister https://t.co/3aVybRF0hj +06/15/2018,Actors,@Lavernecox,Yay Johnny! https://t.co/nBAdYfKSga +06/15/2018,Actors,@Lavernecox,RT @LenaWaithe: have you applied yet? no? why? let's stop chasing our dreams and start catching them muthafuckas. okay bye! https://t.co/dE… +06/14/2018,Actors,@Lavernecox,Love this https://t.co/Rc7x9GluUW +06/14/2018,Actors,@Lavernecox,RT @davidclark: “Believing you are unworthy of love and belonging — that w ho you are authentically is a sin or is wrong — is deadly. Who y… +06/14/2018,Actors,@Lavernecox,https://t.co/rWFK3xGAso +06/14/2018,Actors,@Lavernecox,RT @Into: We interviewed @RealTCooper about @ManMadeDoc - his new film that follows trans men preparing for an all transgender bodybuilding… +06/14/2018,Actors,@Lavernecox,@chernowa @cmcasarez Ha love it +06/13/2018,Actors,@Lavernecox,RT @SamFederFilm: BIG UPDATE! @Lavernecox has joined our team as Executive Producer! https://t.co/22HQqQPmPI +06/13/2018,Actors,@Lavernecox,"So excited about this project. #Transisbeautiful +https://t.co/ucbQIxl32w" +06/13/2018,Actors,@Lavernecox,RT @PopCulture: #OITNB co-star @Lavernecox helping spread positive message with @Airbnb experience: https://t.co/fElrP5X4mM https://t.co/kW… +06/12/2018,Actors,@Lavernecox,RT @yahoolifestyle: Transgender celeb @Lavernecox talks about her greatest challenge: 'Getting out of my own way' https://t.co/qZDKW1tk3y #… +06/12/2018,Actors,@Lavernecox,https://t.co/szCFyyt8Q1 +06/12/2018,Actors,@Lavernecox,"RT @Zac_Posen: Premiering my new series on @YahooLifestyle so you can now hear these inspirational women #LoudandClear, beginning with the…" +06/12/2018,Actors,@Lavernecox,"When @Zac_Posen asked me to share my message #LoudAndClear , I told him that my journey is proof that anything is… https://t.co/eCtRhqypuZ" +06/12/2018,Actors,@Lavernecox,RT @ChrisMichaelW: More people should watch @freakshowmovie!! It has a good message and filled with great stars like @BetteMidler and @Lave… +06/12/2018,Actors,@Lavernecox,RT @rosaclemente: .@Lavernecox We knew what was happening.We went to Puerto Rico and saw refrigerated trucks filled with cadavers.The preve… +06/11/2018,Actors,@Lavernecox,"RT @VanityFair: Which historical figure does @LaverneCox most identify with? ""Eartha Kitt."" https://t.co/F7zKjzGxtp" +06/11/2018,Actors,@Lavernecox,RT @LookDifferent: “Misgendering is a form of cultural & structural violence. This leads to direct violence against trans people which dimi… +06/11/2018,Actors,@Lavernecox,"RT @DiMAwards: Vote for Cosmopolitan with Laverne Cox on the cover, to win the Diversity in Media Moment of the Year. Visit our website, vo…" +06/11/2018,Actors,@Lavernecox,"""Do what you must and I'll defend as I have to"". I love Taylor Mason so much! @SHO_Billions #BillionsFinale #Billions" +06/11/2018,Actors,@Lavernecox,What a lesson @SHO_Billions teaches us about gender neutral pronouns! Everyone respects Taylor's preferred gender p… https://t.co/DIOLNyudYt +06/10/2018,Actors,@Lavernecox,RT @Alyssa_Milano: We need the #ERANow. https://t.co/oFlJAGam6z +06/10/2018,Actors,@Lavernecox,"RT @fusetv: Four years ago, @LaverneCox made history as the first transgender person to grace the cover of TIME magazine. Keep breaking thr…" +06/09/2018,Actors,@Lavernecox,"RT @NewsMuseumEN: On the 9th June 2014 @TIME published, for the first time, a cover featuring a trangender person. @Lavernecox is an actres…" +06/09/2018,Actors,@Lavernecox,"RT @DangerLove12: ""Different levels different devils. But I am still here. I keep on keeping on and that feels like a miracle today."" thank…" +06/08/2018,Actors,@Lavernecox,"RT @BreneBrown: The news of Kate Spade’s death was a cruel reminder about the realities of depression and anxiety, and about the dangerous…" +06/08/2018,Actors,@Lavernecox,Love you @Essence https://t.co/yZs9zKDyEp +06/06/2018,Actors,@Lavernecox,"RT @ValerieJarrett: Kalief was imprisoned on Rikers for three years, and spent time in solitary confinement, for stealing a backpack. Rele…" +06/06/2018,Actors,@Lavernecox,"RT @RachGoldstein: 3 years since Kalief Browder’s death and still no action. Now is the time to honor his memory. + +Take the pledge for Kali…" +06/06/2018,Actors,@Lavernecox,RT @bobbybennn007: https://t.co/f2wxZafiej this is something that you must listen to... Knowledge is power @Lavernecox @LGBTfdn @LGBT +06/06/2018,Actors,@Lavernecox,Yas! https://t.co/laG2aXKHrm +06/04/2018,Actors,@Lavernecox,RT @ChrisMichaelW: TOMORROW: The Awesome @freakshowmovie will be out on DVD and Blu-Ray!! Our family’s copy got pre-ordered and will be de… +06/04/2018,Actors,@Lavernecox,Oh yes! What a cast! Just this trailer inspires me to be better. I hear your call fellow artists. I hear your call.… https://t.co/XdANwK1s4s +06/04/2018,Actors,@Lavernecox,@candiscayne @PoseOnFX Always! You are everything! +06/04/2018,Actors,@Lavernecox,You can join me TODAY and support the Stonewall Inn Gives Back Initiative Auctionrunning now on Charitybuzz by bidd… https://t.co/5szMSyDG5F +06/04/2018,Actors,@Lavernecox,"So proud to announce I am a Stonewall Inn Ambassador, supporting the Stonewall Inn + Stonewall Inn Gives Back Initi… https://t.co/hiq03ynH0g" +06/04/2018,Actors,@Lavernecox,"RT @octopodians: in the words of @Lavernecox: ""It is revolutionary for any trans person to choose to be seen and visible in a world that te…" +06/04/2018,Actors,@Lavernecox,"RT @DuleHill: Approximately 22 Veterans a day commit suicide. + +Would at least 22 of my Twitter friends please copy and tweet? (Not RT.)…" +06/04/2018,Actors,@Lavernecox,Congratulations darling. What a truly wonderful show! https://t.co/1Ngmvs5SeU +06/04/2018,Actors,@Lavernecox,Tonight is the premiere of @PoseOnFX. https://t.co/Aa6yHe8uwk +06/03/2018,Actors,@Lavernecox,#Doubt was such a labor of love for all of us. Thanks so much for watching! https://t.co/h5lsZ5UGwx +06/03/2018,Actors,@Lavernecox,"RT @SVU_Diehards: ""SVU is the New Black"" Marathon beginning at 10:02 on @USA_Network https://t.co/F6HXK2yZmm" +06/02/2018,Actors,@Lavernecox,"RT @paolamendoza: Disgusting does not even begin to describe what is happening to this mother and her two children. + +A 2 yr old and a 7 yr…" +06/02/2018,Actors,@Lavernecox,"RT @ETCanada: .@Lavernecox reveals she underwent conversion therapy as a child, recalls experience as ""awful, horrible and shaming"" https:/…" +06/02/2018,Actors,@Lavernecox,RT @IAmAnImmigrant: Many of our nation's immigrant stories are not so different from those of families who are striving to be part of the A… +06/01/2018,Actors,@Lavernecox,Werk!!!!!!!! https://t.co/5r8tqgp7qx +05/31/2018,Actors,@Lavernecox,"RT @healinghonestly: The goddess @Lavernecox on te newsstands of Lima, Peru! https://t.co/DWIVh6jfmX" +05/31/2018,Actors,@Lavernecox,RT @TransLawCenter: “If you have an incoming immigrant that shows signs of medical distress – including being HIV positive and having pneum… +05/31/2018,Actors,@Lavernecox,Thank you so much! https://t.co/DsLdiVM5WI +05/30/2018,Actors,@Lavernecox,Thanks so much darling https://t.co/Pw1onQUlRf +05/30/2018,Actors,@Lavernecox,RT @GospelOfAndre: We agree! Thank you @Lavernecox. #GospelAccordingToAndre is now in theaters! Find a theater near you: https://t.co/BPmEp… +05/30/2018,Actors,@Lavernecox,Thanks so much darling! https://t.co/Wu3NxGKdwe +05/30/2018,Actors,@Lavernecox,Thank you so much darling. You are the best! https://t.co/gikoOMGpMK +05/30/2018,Actors,@Lavernecox,Things are shaping up. Awesome EB https://t.co/ltYhCWoUJc +05/29/2018,Actors,@Lavernecox,"RT @aishatyler: Kudos to @ABCNetwork for their quick, decisive actions. We live in a country where you can express yourself freely, but tha…" +05/29/2018,Actors,@Lavernecox,"RT @ozy: You may have seen her in Orange Is the New Black. Now you can see @Lavernecox live in NYC's Central Park this summer, along with @…" +05/29/2018,Actors,@Lavernecox,I'm in https://t.co/MzGcEdPYxM +05/29/2018,Actors,@Lavernecox,❤❤❤❤ https://t.co/Gt48CLafLm +05/29/2018,Actors,@Lavernecox,Thanks darling. Love you! https://t.co/SILsfKMnQ2 +05/29/2018,Actors,@Lavernecox,Thank you so much ❤❤❤ https://t.co/blLofNpoYH +05/29/2018,Actors,@Lavernecox,Thanks so much Ellen. Love you! https://t.co/HcLFj4KAgA +05/29/2018,Actors,@Lavernecox,❤❤❤❤❤ https://t.co/qRHD0rzqTx +05/29/2018,Actors,@Lavernecox,What a birthday gift watching @serenawilliams make her come back in that FIERCE #catsuit. Congratulations! We love… https://t.co/m6tmSw9C0s +05/29/2018,Actors,@Lavernecox,It's my birthday. To help me celebrate please consider making a donation to @antiviolence https://t.co/ROnyXe81Fk… https://t.co/KOgUH5NfmZ +05/29/2018,Actors,@Lavernecox,@GospelOfAndre is #Everything. Love you so much #AndreLeonTally. You are a national treasure and the epitome of… https://t.co/z0B22odzlq +05/28/2018,Actors,@Lavernecox,@LittleLostBoy01 @TexasChickenUSA This was recorded by my friend @TheLadyDejaD. It happened to her and a few of my other friends last night +05/28/2018,Actors,@Lavernecox,RT @LittleLostBoy01: (Video credit to @Lavernecox) Make this shit go viral. Absolutely disgusting display of discrimination against POC/Tra… +05/27/2018,Actors,@Lavernecox,"RT @workwthecoach: To protect your energy ... + +It’s okay to cancel a commitment. +It’s okay to not answer that call. +It’s okay to change yo…" +05/27/2018,Actors,@Lavernecox,@CaptKirkeisha @Beyonce Amen +05/27/2018,Actors,@Lavernecox,"Everytime I rewatched sections of #beychella I get exhausted thinking about how much work it was to conceive, rehe… https://t.co/GWzzgoejUi" +05/27/2018,Actors,@Lavernecox,Werk! https://t.co/2PC7HELbdr +05/27/2018,Actors,@Lavernecox,RT @wdytya: Did you miss @Lavernecox's powerful journey through her family's history on the season premiere of #WDYTYA? Download the #TLCgo… +05/26/2018,Actors,@Lavernecox,Amen https://t.co/0O6atVB1rw +05/26/2018,Actors,@Lavernecox,Thanks for writing it. I am in an intense and slow process of excavating the unknown traumas lying dormant in my ce… https://t.co/vftT4vWVj5 +05/26/2018,Actors,@Lavernecox,This does sound super cool https://t.co/qJozZOooYn +05/26/2018,Actors,@Lavernecox,"""Is the opportunity to let go of trauma a privilege?Trauma is inherently layered and nuanced.Trauma holds onto us t… https://t.co/ZX16EJO8jT" +05/26/2018,Actors,@Lavernecox,Thank you @GetSpectrum. I finally have cable and wifi https://t.co/oLjgrLNXqW +05/26/2018,Actors,@Lavernecox,Omg yes. That just made my day. https://t.co/brJmM21g5t +05/26/2018,Actors,@Lavernecox,@Neety_pie Wow. That's crazy +05/26/2018,Actors,@Lavernecox,I needed that laugh. Thank you! Laughter helps with perspective. Moving is just so stressful anyway when things go… https://t.co/ecjaFQzdjU +05/26/2018,Actors,@Lavernecox,Trust me. They are https://t.co/gysv3km6Wr +05/26/2018,Actors,@Lavernecox,Oh it’s so hard to stay calm in these situations. https://t.co/OQK7afd4ok +05/26/2018,Actors,@Lavernecox,I know I am not the only person who has gone through this. Let me know I am not alone. There are worse things going… https://t.co/CecVrZGEl9 +05/26/2018,Actors,@Lavernecox,So now I have to wait potentially til next Wednesday for another person to come out and install. Trying to be in a… https://t.co/psAs5cAqgf +05/26/2018,Actors,@Lavernecox,"The tech who came to install on Wednesday, who kept misgendering me btw, couldn’t find a signal. He said a wire was… https://t.co/htzpiSzw1y" +05/26/2018,Actors,@Lavernecox,I am in the middle of a @GetSpectrum installation nightmare. I have been trying to stay calm and spiritual about th… https://t.co/VF97BK3Urc +05/25/2018,Actors,@Lavernecox,❤❤❤ https://t.co/9i4gMF20Xa +05/25/2018,Actors,@Lavernecox,❤❤❤ https://t.co/BRxrYvfkQJ +05/25/2018,Actors,@Lavernecox,What wonderful work you did this season! Obsessed with what you have created. Obsessed with #DearWhitePeople https://t.co/bhNwaHG863 +05/25/2018,Actors,@Lavernecox,"""#RaquelettaMoss speaks in the third person because she survived her own personal holocaust by stepping out of her… https://t.co/9eFPMl05z5" +05/25/2018,Actors,@Lavernecox,You all are amazing. You all had me crying like a baby. https://t.co/cJbGIUb2lm +05/24/2018,Actors,@Lavernecox,Yes https://t.co/SpKeJA4MHC +05/24/2018,Actors,@Lavernecox,"""I can't handle the tooth"" finally Lionel. Finally! Thank God! #DearWhitePeople" +05/24/2018,Actors,@Lavernecox,Living for Brooke on @DearWhitePeople #DearWhitePeople. #leftyoumynumber +05/24/2018,Actors,@Lavernecox,RT @silentmjority: @Lavernecox ‘s WDYTYA episode should be required viewing in schools when teaching about America in the post Civil War er… +05/24/2018,Actors,@Lavernecox,The killings must end. #RIPGigiPierce #TransLivesMatter https://t.co/MzLKMWskRY +05/24/2018,Actors,@Lavernecox,RT @ACLU: BREAKING: A federal appeals court has upheld the policy of Boyertown School District in Pennsylvania allowing trans students to u… +05/24/2018,Actors,@Lavernecox,Another victory for our young people and for trans folks all over this country. #transrightsarehumanrights… https://t.co/mxJwWMGR12 +05/24/2018,Actors,@Lavernecox,I have asked for that as well. Love that show. I am waiting to watch season 2 when I have a full day. I watched s… https://t.co/SG50U2Rotx +05/24/2018,Actors,@Lavernecox,"RT @StevenCanals: For @thedailybeast, I write about the experience of bringing @PoseOnFX to TV. #PoseFX +https://t.co/le9NjhjPZp" +05/24/2018,Actors,@Lavernecox,Happy birthday darling. Miss you! Love you! https://t.co/8fYdOVu5fm +05/24/2018,Actors,@Lavernecox,Amen https://t.co/Xt0etuZAEX +05/24/2018,Actors,@Lavernecox,RT @sagaftra: #Repost @tasteofadrian “SAG-AFTRA is closer than ever to it’s first spanish language TV network union contract with Telemundo… +05/23/2018,Actors,@Lavernecox,Amen ❤❤ https://t.co/IZBNwyIJy2 +05/23/2018,Actors,@Lavernecox,RT @reformlajails: The gangs all here! @MattMcGorry @shailenewoodley and @kendrick38 are helping us #ReformLAJails by collecting signatures… +05/23/2018,Actors,@Lavernecox,RT @wdytya: Miss @Lavernecox on #WDYTYA? Watch her episode now! https://t.co/Q4UMADOClZ https://t.co/p1RK7unoTv +05/23/2018,Actors,@Lavernecox,RT @PPact: JUST IN: @realDonaldTrump just imposed a gag rule to cut funds to any health care provider that refers their patients for aborti… +05/23/2018,Actors,@Lavernecox,"RT @MichaelSkolnik: If you’re the smartest person in the room, then you’re in the wrong room." +05/23/2018,Actors,@Lavernecox,This case is hugely important. Thank you @GavinGrimmVA and thank you to all the everyday people standing up for you… https://t.co/1siludn6ZF +05/23/2018,Actors,@Lavernecox,Congratulations @staceyabrams https://t.co/uZxAYsVXwi +05/22/2018,Actors,@Lavernecox,"RT @chasestrangio: In 2015 when @JoshABlock filed @GavinGrimmVA’s case, Gavin had already fought so hard and carried so many burdens. Today…" +05/22/2018,Actors,@Lavernecox,"RT @MsIsisKing: Bold is beautiful! @sephora is launching Bold Beauty for the Transgender Community- a new, FREE beauty workshop for all gen…" +05/22/2018,Actors,@Lavernecox,"I love you @SirAriGold +https://t.co/MxUssQccUf" +05/22/2018,Actors,@Lavernecox,Congrats @GavinGrimmVA. Thank you for fighting the fight for all of us. Thank you to the Virgina federal court. Tha… https://t.co/yplaMwdWm6 +05/22/2018,Actors,@Lavernecox,https://t.co/VC59TN6xUa +05/22/2018,Actors,@Lavernecox,Tearing up again watching @wdytya #WDYTYA. It's just so deep. +05/22/2018,Actors,@Lavernecox,❤❤ https://t.co/QYI7JHaL3H +05/22/2018,Actors,@Lavernecox,Thank you. West coast. It's starting right now https://t.co/lSsnO5v935 +05/22/2018,Actors,@Lavernecox,RT @MichaelSkolnik: RT if you support an assault weapons ban. +05/22/2018,Actors,@Lavernecox,Very cool https://t.co/vL6RvpBVXY +05/22/2018,Actors,@Lavernecox,I am on the west coast. Can't wait to watch yours. https://t.co/gDiP52i0pW +05/22/2018,Actors,@Lavernecox,Thank you. You are a treasure https://t.co/y10Mm6whnU +05/22/2018,Actors,@Lavernecox,RT @AnaisTGrant: @Lavernecox the strength and activism in your family is strong #WDYTYA +05/22/2018,Actors,@Lavernecox,Ah❤❤ https://t.co/cdcg9yvz4B +05/22/2018,Actors,@Lavernecox,We only had an hour. There was tons more that didnt make it to television https://t.co/vBEgh5UAR6 +05/22/2018,Actors,@Lavernecox,"Yeah what a journey. I still haven't fully processed all I have learned. So ""wow"" is just a really good word https://t.co/ioZrNaknJM" +05/22/2018,Actors,@Lavernecox,It does https://t.co/J0f1BAR64P +05/22/2018,Actors,@Lavernecox,RT @floatingonward: This episode of #WDYTYA has such an impact on me since it is showing in my own state of Alabama. We hear and learn abou… +05/22/2018,Actors,@Lavernecox,Yeah that was just wow! https://t.co/hY5bzln89p +05/22/2018,Actors,@Lavernecox,RT @wdytya: Speechless. #WDYTYA https://t.co/3AafFsedPD +05/22/2018,Actors,@Lavernecox,RT @Aksannyi: Such a chilling reminder of how difficult it was for all of the former slaves. Freedom didn't make it all better. #WDYTYA +05/22/2018,Actors,@Lavernecox,RT @DainaRameyBerry: @Lavernecox talks with @ericaadunbar on #WDYTYA about labor after 1865. +05/22/2018,Actors,@Lavernecox,RT @rosaclemente: Women of color historians unite! So awesome to see us represented and telling @Lavernecox the history of her family in th… +05/22/2018,Actors,@Lavernecox,RT @wdytya: More documents! #WDYTYA https://t.co/ZRuiJJLpAF +05/22/2018,Actors,@Lavernecox,"RT @rosaclemente: So powerdul to see my former Professor at UMASS-Amherst, @ProfMSinha showing @Lavernecox her great great grandfathers his…" +05/22/2018,Actors,@Lavernecox,Its super devastating. I had to step away and cry for about 20 minutes https://t.co/xOtiaPpCXd +05/22/2018,Actors,@Lavernecox,RT @bibliophile89: I'm not keeping up with the drinking game. I'm too caught up in the story. #wdytya @Ancestry @wdytya +05/22/2018,Actors,@Lavernecox,That was my thought too https://t.co/gg2tthwXYs +07/02/2018,Comedians,@chrisrock,Congratulations to the Boston Celtics next years eastern conference champions. +05/17/2018,Comedians,@chrisrock,@SpikeLee & @JordanPeele bring you BLACKKKLANSMAN. Coming soon. https://t.co/Aimu9QwOO8 +04/30/2018,Comedians,@chrisrock,Yes i did bout time somebody noticed. https://t.co/orpqxEMdXV +04/28/2018,Comedians,@chrisrock,@spacetime_1 Really appreciate it. I worked on all of them but this was the hardest. +04/28/2018,Comedians,@chrisrock,@spacetime_1 That’s a lot. +04/19/2018,Comedians,@chrisrock,RT @kanyewest: me and Cudi album June 8th +04/16/2018,Comedians,@chrisrock,Check out my homie @amyschumer new movie #ifeelpretty opening this Friday 4/20 https://t.co/8KDiRY6weV +03/19/2018,Comedians,@chrisrock,Free MeekMill. Such a sad story. https://t.co/ZGiTwptE3V +03/09/2018,Comedians,@chrisrock,"RT @JosephVecsey: Myself & @KrystynaHutch comedy album ""MAYBE IT'S YOU"" is bringing back songs & sketches and now available on I-Tunes & Ba…" +03/03/2018,Comedians,@chrisrock,Prayers for Rick Ross and family please. https://t.co/GVHxIZl05z +02/27/2018,Comedians,@chrisrock,"For anyone who needed proof that I’m a better father-in-law than @adamsandler, check out the trailer to our new mov… https://t.co/qEn5cCOse5" +02/27/2018,Comedians,@chrisrock,"RT @TheWeekOf: This wedding season, it’s dad vs dad vs everything else that could go wrong. https://t.co/hNECcq4irC" +02/27/2018,Comedians,@chrisrock,https://t.co/5a5nBUUAK8 +02/27/2018,Comedians,@chrisrock,"RT @BorjaGonzalvez: Just watched #Tamborine from @chrisrock in @netflix ,and I tell you one thing. If @DCComics wants be really bold with a…" +02/20/2018,Comedians,@chrisrock,RT @NetflixIsAJoke: A history lesson from @chrisrock. https://t.co/AVXUmtMHv8 +02/19/2018,Comedians,@chrisrock,The Allstar team at the allstar game. https://t.co/U3c9TKpVTb +02/18/2018,Comedians,@chrisrock,RT @NetflixIsAJoke: M-I-S-S-T-A-K-E. https://t.co/nF1Fhl5JLj +02/17/2018,Comedians,@chrisrock,"RT @DMFSaint: Chris Rock's new Netflix special, Tamborine, was directed by Bo Burnham. + +... what?" +02/17/2018,Comedians,@chrisrock,RT @AbrissErik: I talked to Bo Burnham about directing Chris Rock’s first stand-up special in 10 years #Tamborine https://t.co/dRRe2opUeJ h… +02/14/2018,Comedians,@chrisrock,https://t.co/5eacFbCaR1 +02/13/2018,Comedians,@chrisrock,Tomorrow. Tamborine. @netflixisajoke https://t.co/RPVhPv5mmq +02/13/2018,Comedians,@chrisrock,RT @RickeySmiley: #MartinLawrence's #LITAFTour line-up is crazy!! So happy to be a part of this awesome group!!!! @realmartymar https://t.c… +02/12/2018,Comedians,@chrisrock,RT @SInow: LaVar Ball said Lonzo won’t re-sign with the Lakers if they won’t sign his two brothers also https://t.co/BJZzPCdNbL +02/12/2018,Comedians,@chrisrock,RT @anthonyjeselnik: This portrait immortalizes my two favorite things about President Obama. He placed furniture wherever. And zero alle… +02/12/2018,Comedians,@chrisrock,Black Panther opening this weekend. https://t.co/NrcWzFAGB7 +02/12/2018,Comedians,@chrisrock,@InstantRHIplay @BarackObama Just saw the Presidential Portrait. Wow. Barack Obama is the real Black Panther. +02/12/2018,Comedians,@chrisrock,RT @InstantRHIplay: President @BarackObama's official presidential portrait has now been unveiled. Kehinde Wiley produced the 44th presiden… +02/12/2018,Comedians,@chrisrock,The Cavs right now are better team than the one that lost in the finals . +02/12/2018,Comedians,@chrisrock,"ICYMI: ""Reg E. Cathey has passed . RIP Dirty Dee. Great actor great Man."" https://t.co/fIZEwd8Nu3" +02/10/2018,Comedians,@chrisrock,Reg E. Cathey has passed . RIP Dirty Dee. Great actor great Man. https://t.co/EgvBPstSaI +02/09/2018,Comedians,@chrisrock,RT @atjeffreyjoseph: Black Panther The Album and pre-sales for the movie are so dope that Wakanda will probably become completely gentrifie… +02/06/2018,Comedians,@chrisrock,"RT @CrxTime: Comedian Joey Vega in +""AmeRican"" My Life Aqui y Alla, +coming to Allentown, Reading, Bethlehem… https://t.co/11iSod0Eik" +02/01/2018,Comedians,@chrisrock,The Week Of is coming to @netflix in time to warn you against wedding season. Also i’m not saying you want me inste… https://t.co/tTi63tLQEM +01/28/2018,Comedians,@chrisrock,#TotalBlackoutTour #TheEnd https://t.co/PiPcLqkIFR +01/28/2018,Comedians,@chrisrock,"RT @anthonyjeselnik: Greatest of all time. +https://t.co/E3vaS7ReQO" +01/28/2018,Comedians,@chrisrock,"RT @NegoTrue: Chris Rock at the 02 tonight was honestly hilarious and a great experience. + +No pictures, we all had to put our phones in so…" +01/27/2018,Comedians,@chrisrock,RT @realjeffreyross: When you decide to take the underground to the biggest show of the tour... @TheO2 @chrisrock @michelleisawolf @anthony… +01/27/2018,Comedians,@chrisrock,It goes down tonight and tomorrow in LONDON at @TheO2. Last two shows of the #TotalBlackoutTour 🎤 https://t.co/OkiCMScKHN +01/27/2018,Comedians,@chrisrock,RT @JordanW25: @realjeffreyross @michelleisawolf and @anthonyjeselnik set a huge bar last night at Wembley Arena and @chrisrock topped it.… +01/26/2018,Comedians,@chrisrock,RT @DJHyphen: Chris Rock with Jeff Ross and Anthony Jeselnik opening at Wembley tonight. So good. 🙌🏼🙌🏼🙌🏼 +01/26/2018,Comedians,@chrisrock,Finishing up the tour in London this weekend. Tonight it’s going down at the @ssearena. Tomorrow and Sunday at the… https://t.co/JlCWLcARev +01/26/2018,Comedians,@chrisrock,"RT @wembleypark: He's here!! Tonight @chrisrock brings his UK tour to the @ssearena, Wembley, and we couldn't be more excited! Will any of…" +01/26/2018,Comedians,@chrisrock,"RT @mrmarkmillar: Just back from Chris Rock in Glasgow, who was amazing, but @realjeffreyross stole the show. Did anyone here catch his roa…" +01/25/2018,Comedians,@chrisrock,RT @iamcolinquinn: Unlike many my biggest fear in comedy is not bombing. It’s getting too many laughs to where I can’t hear my next set up. +01/25/2018,Comedians,@chrisrock,RT @realjeffreyross: Headed to London for a few days to perform w Rock at the @TheO2 and @ssearena. What’s the best late night food for aft… +01/25/2018,Comedians,@chrisrock,Can’t wait to get to Birmingham tonight’s show. +01/25/2018,Comedians,@chrisrock,RT @Amy__Macdonald: I went to see @chrisrock tonight and it was great. I was sooo impressed by the little phone cases. How refreshing to no… +01/25/2018,Comedians,@chrisrock,RT @dommcl: @chrisrock last night was the up there with the funniest thing I've ever seen! @realjeffreyross roasting randoms was hilarious… +01/25/2018,Comedians,@chrisrock,RT @Paul_725: Chris Rock tonight at Birmingham Arena! 2 hours of being told white people are terrible awaits me +01/24/2018,Comedians,@chrisrock,Crazy... @TheSSEHydro https://t.co/hA4nVzWA4W +01/24/2018,Comedians,@chrisrock,RT @JimCarrey: 11 school shootings in 24 days. The new Norm! https://t.co/XHnXqOmTQu +01/16/2018,Comedians,@chrisrock,"RT @nealbrennan: In honor of MLK Day, hire or recommend a person of color for a job. Even a job where they're not especially looking to hir…" +01/15/2018,Comedians,@chrisrock,"RT @jonfavs: Say it over and over again, all week long: + +Trump is shutting the government down because the bipartisan deal to keep it open…" +01/13/2018,Comedians,@chrisrock,"RT @robertvoysey: @chrisrock Just watched chris rock at the bic! The BEST performance I’ve seen in my life, the way he controlled the audie…" +01/13/2018,Comedians,@chrisrock,"RT @themissmurphy: @chrisrock In Bournemouth was amazing! Knew it would be good but my face actually hurts from laughing so much, even roas…" +01/12/2018,Comedians,@chrisrock,RT @blsec: Great night at the Manchester Arena following the @chrisrock #BlackOut Tour as usual he was fantastic. Really enjoyed the no pho… +01/11/2018,Comedians,@chrisrock,@washingtonpost Wow +01/11/2018,Comedians,@chrisrock,@LasMansiones That’s not my house. Never was +01/09/2018,Comedians,@chrisrock,RT @Diddy: Put some respect on it!! When you look at us make sure you see royalty and super natural God sent glory!! Anything else is disre… +01/07/2018,Comedians,@chrisrock,Back in DC tonight. I heard some last minute tickets just became available! #TotalBlackoutTour https://t.co/OEt7RA7aVA +01/05/2018,Comedians,@chrisrock,"RT @chrisrock: It goes down tomorrow in warm South Florida. @HardRockHolly +Tix: https://t.co/9dtAIj7a3K https://t.co/dDifBqsB1R" +01/05/2018,Comedians,@chrisrock,"It goes down tomorrow in warm South Florida. @HardRockHolly +Tix: https://t.co/9dtAIj7a3K https://t.co/dDifBqsB1R" +01/02/2018,Comedians,@chrisrock,"RT @HardRockHolly: We're excited to have @chrisrock back at Hard Rock Live THIS FRIDAY! + +Get your tickets: https://t.co/2L5pKAWQo3 +#MCM #C…" +12/19/2017,Comedians,@chrisrock,"“South Florida, I coming back for a third show at @hardrockholly on 1/5! Make sure you get your tickets before they… https://t.co/CSti0M2yY9" +12/18/2017,Comedians,@chrisrock,@nealbrennan Agree +12/17/2017,Comedians,@chrisrock,"RT @aplusk: There’s a time to make statements, a time to ask question, and a time to shut up and listen to the experts. Option 3 should be…" +12/16/2017,Comedians,@chrisrock,"I'm helping #makeHIVhistory with @glblctzn and @JNJCares for #WorldAIDSDay. Watch this video, share the facts and… https://t.co/O9fobSPRb4" +12/15/2017,Comedians,@chrisrock,@ANTMVH1 @tyrabanks Yes can’t wait to ANTM. The best comedy on television. +11/28/2017,Comedians,@chrisrock,@lapis748 Michelle wolf +11/28/2017,Comedians,@chrisrock,"RT @Megalyn: On behalf of the #NavajoNation and the #CodeTalkers, the real men and hereos without whom your sorry ass might not even be her…" +11/26/2017,Comedians,@chrisrock,@KevinHart4real Not me +11/24/2017,Comedians,@chrisrock,Two shows tonight at the Borgata in Atlantic City. One will probably be funnier than the other. +11/17/2017,Comedians,@chrisrock,RT @JordanPeele: ‘Get Out’ is a documentary. +11/15/2017,Comedians,@chrisrock,This is a major accomplishment don’t sleep. https://t.co/Qcx0iDJP4g +11/12/2017,Comedians,@chrisrock,@realDonaldTrump The President of the United States Of American just released this statement wow. +11/07/2017,Comedians,@chrisrock,RT @Megalyn: Its pretty clear prayers aren't enough. They were at fucking church! They need common sense gun laws! https://t.co/bRUeoL1Loy +11/07/2017,Comedians,@chrisrock,RT @aparnapkin: starting to get the feeling that guns DO kill people +11/07/2017,Comedians,@chrisrock,"RT @SarahKSilverman: When a plane crashes, air travel becomes exponentially safer bc of the lessons learned. But 1 mass shooting after ano…" +11/07/2017,Comedians,@chrisrock,RT @mindykaling: Who needs an AR-15? Asking practically not emotionally. Like are you overrun by violent deer? Until the Purge is legal I d… +11/07/2017,Comedians,@chrisrock,RT @RealGilbert: Where do money orders come from? The Check Republic. I apologize and I.O.U. a better joke. +11/04/2017,Comedians,@chrisrock,"ICYMI: ""Deshaun Watson’s out for the year torn ACL. To bad there aren’t any Mobil quarterbacks available to take hi… https://t.co/Y0rCW6zBSJ" +11/02/2017,Comedians,@chrisrock,Deshaun Watson’s out for the year torn ACL. To bad there aren’t any Mobil quarterbacks available to take his place. https://t.co/8mL0O7nJQ3 +11/02/2017,Comedians,@chrisrock,RT @BrianReganComic: I expect “a lot of credit” will be given at the end of the #WorldSeries! #ThisTeam #EarnHistory @MLB https://t.co/C73R… +11/02/2017,Comedians,@chrisrock,RT @realjeffreyross: Does anyone know what time Game 8 starts tomorrow ? #WorldSeries +11/01/2017,Comedians,@chrisrock,"RT @TheDailyShow: Tonight at 11/10c, Sean Hannity reacts to Mueller’s indictments by delivering a master class in bullshit. https://t.co/AR…" +10/31/2017,Comedians,@chrisrock,"RT @BrianReganComic: With #WorldSeries happening, here are my thoughts on “Must Win” games from a @Letterman appearance. #ThisTeam #EarnHi…" +10/30/2017,Comedians,@chrisrock,RT @Megalyn: Wish I could tweet this a million times. Thank you @Vote_Richardson for articulating the truth to power. 👊🏾 https://t.co/eELn4… +10/30/2017,Comedians,@chrisrock,RT @HartPerez: Last night @DaveChappelle dropped in on @ChrisRock's show. Chappelle and Rock went on to share the stage for two hours. Unbe… +10/21/2017,Comedians,@chrisrock,"ICYMI: ""Insecure in the House. Amanda seales so funny . Total blackout tour. DC first show was 🔥 three more to go.… https://t.co/SO8UE0Q3NL" +10/20/2017,Comedians,@chrisrock,RT @MGMNatlHarbor: We are excited to have @chrisrock perform the first of his four sold-out shows tonight at The Theater. #LIVEatMGM https:… +10/19/2017,Comedians,@chrisrock,Insecure in the House. Amanda seales so funny . Total blackout tour. DC first show was 🔥 three more to go. https://t.co/78xElGdKoU +10/17/2017,Comedians,@chrisrock,RT @aparnapkin: white noise machines are gonna need a new name now that we have an actual one in office +10/17/2017,Comedians,@chrisrock,RT @Megalyn: This.... rightordoyle's photo https://t.co/uBDgi8Ydut +10/16/2017,Comedians,@chrisrock,RT @Megalyn: Required viewing. https://t.co/lfamlGwPaF +10/14/2017,Comedians,@chrisrock,"ICYMI: ""It's time for a new voice."" https://t.co/plfnCyhYsZ" +10/14/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Let's look on the bright side-- This last nine months is the longest Trump has gone without criticizing the President… +10/13/2017,Comedians,@chrisrock,RT @robinthede: I humbly request that you watch the premiere of @TheRundownBET tonight at 11p/10c and live tweet with us using the hashtag… +10/12/2017,Comedians,@chrisrock,"RT @VanJones68: What can we do to defend decency & democracy in America? 4 answers, check out my new book #BeyondtheMessyTruth here: https:…" +10/12/2017,Comedians,@chrisrock,It's time for a new voice. https://t.co/BadwVY7guV +10/08/2017,Comedians,@chrisrock,RT @ericandre: I’m opening up a brunch restaurant called Planet of the Crepes. +10/08/2017,Comedians,@chrisrock,Oslo was insane last night. Amsterdam tonight the tour continues. Can't wait. +10/04/2017,Comedians,@chrisrock,"ICYMI: ""Crazy day . See your heroes perform live while you have the chance your never know. Petty damn."" https://t.co/y719w7X8qU" +10/03/2017,Comedians,@chrisrock,RT @itsgabrielleu: This https://t.co/C2orAslQrw +10/03/2017,Comedians,@chrisrock,Crazy day . See your heroes perform live while you have the chance your never know. Petty damn. https://t.co/aVWp2vaRjQ +10/02/2017,Comedians,@chrisrock,"RT @rihanna: Saying a prayer for all the victims & their loved ones, also for the residents & visitors of Las Vegas! This was a horrific ac…" +09/25/2017,Comedians,@chrisrock,"Support @GOODPlusFdn & +@TheSMHF w/ me. Buy front-row tix on +@ifonly to an upcoming show of mine & meet me after! +https://t.co/OwWLwe7JgD" +09/25/2017,Comedians,@chrisrock,"ICYMI: ""It's only a privilege to play sports if you suck at sports. It is a privilege to be born a white child in A… https://t.co/CD5UEznI0s" +09/24/2017,Comedians,@chrisrock,RT @JoyAnnReid: Reminder: the president of the United States thinks protest is perfectly fine for neo-Nazis but a firing offense for black… +09/24/2017,Comedians,@chrisrock,RT @questlove: For real I'm not even a sports dude (still love you Philly) can we still remember Puerto Rico is STILL w/o electricity? +09/24/2017,Comedians,@chrisrock,RT @itsgabrielleu: This https://t.co/VXZEjQEDdU +09/23/2017,Comedians,@chrisrock,It's only a privilege to play sports if you suck at sports. It is a privilege to be born a white child in America t… https://t.co/WIZHWRw3J8 +09/22/2017,Comedians,@chrisrock,"ICYMI: ""Kids don't want to share you have to make them."" https://t.co/dbinp2LMfW" +09/20/2017,Comedians,@chrisrock,Kids don't want to share you have to make them. https://t.co/uxlrECrx5e +09/18/2017,Comedians,@chrisrock,"RT @netflix: There, we said it. https://t.co/CIf4LfGWgn" +09/17/2017,Comedians,@chrisrock,"RT @ShadowLeagueTSL: This clip of Max Kellerman speaking on Colin Kaepernick and racial injustice as a whole is a must-watch. +https://t.co/…" +09/16/2017,Comedians,@chrisrock,"ICYMI: ""Crazy year trump is president and the only good movies this year are horror movies . Get out and now Mother… https://t.co/26bpsZG9lj" +09/15/2017,Comedians,@chrisrock,Sorry about that last tweet. 3 great movies this year. Get out / girls trip and now mother. White film is back. +09/15/2017,Comedians,@chrisrock,@cocainenat Your right sorry about that girls trip was pretty good. +09/15/2017,Comedians,@chrisrock,Crazy year trump is president and the only good movies this year are horror movies . Get out and now Mother I just … https://t.co/oVe5oyNrd1 +09/15/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Congrats to Apple for naming their best-ever iPhone after Malcom X. +09/14/2017,Comedians,@chrisrock,"ICYMI: ""Never forget."" https://t.co/SG4dbKoCqP" +09/12/2017,Comedians,@chrisrock,Never forget. https://t.co/Wzb1UhKRS4 +09/12/2017,Comedians,@chrisrock,@DuaneFinleyMMA @GusSandberg @_naelaa @NikBos @GregSain Chapelle killing me softly is better than all of them. +09/10/2017,Comedians,@chrisrock,@Lewis_Lanee You can do it. +09/10/2017,Comedians,@chrisrock,RT @aliwong: Congrats Kamau!!!! https://t.co/idYOkAYyH5 +09/10/2017,Comedians,@chrisrock,RT @cthagod: Fuck is Randy Moss talking about?? Protesting Racism Makes You A Loser now? LOL. I know for a fact i'm living in the Matrix. +09/10/2017,Comedians,@chrisrock,@DavidSpade How about the smelless driver. +09/10/2017,Comedians,@chrisrock,RT @DavidSpade: Uber is soon going to be testing the driverless car. Lets first test the talkless driver and see how that goes +09/10/2017,Comedians,@chrisrock,"RT @MrGeorgeWallace: Shout out to the top 5 keys in the world, car, piano, Florida, Alicia and Mon." +09/10/2017,Comedians,@chrisrock,"ICYMI: ""Chicago theater 4 nights. Special guest the great Hannibal Buress ripped it tonight."" https://t.co/mDanlYHY1i" +09/09/2017,Comedians,@chrisrock,@marlena9966 Your welcomed +09/09/2017,Comedians,@chrisrock,Chicago theater 4 nights. Special guest the great Hannibal Buress ripped it tonight. https://t.co/qgrakB5yZw +09/08/2017,Comedians,@chrisrock,@CadillacGabe @hannibalburess Thanks +09/08/2017,Comedians,@chrisrock,@marlena9966 Thanks +09/06/2017,Comedians,@chrisrock,"ICYMI: ""Today's the birthday of the great Beyonce Knowles and schools are closed all over America. Thank you Presid… https://t.co/qCMswhpyUh" +09/06/2017,Comedians,@chrisrock,One night wasn’t enough... 4 shows in Chi town starting Thursday. #TotalBlackOutTour click https://t.co/OcHssAcuYx… https://t.co/YKh52jlnZR +09/05/2017,Comedians,@chrisrock,"RT @BarackObama: To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co…" +09/04/2017,Comedians,@chrisrock,"RT @TheDweck: Just passed by a ""Welcome to America"" sign at airport customs and it felt like when someone forgets to take down a Christmas…" +09/04/2017,Comedians,@chrisrock,RT @realjeffreyross: Legend #JoanRivers died 3 yrs ago today. Retweet if you'd like to see this great American's facelift on the $50 bill.… +09/04/2017,Comedians,@chrisrock,Today's the birthday of the great Beyonce Knowles and schools are closed all over America. Thank you President Trum… https://t.co/cV0WEWipOM +09/01/2017,Comedians,@chrisrock,RT @RealGilbert: RIP to the very funny Shelly Berman https://t.co/dBzeKprNNw +08/26/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Tonight Conor McGregor will make history by becoming the highest paid comedian of all time. +08/26/2017,Comedians,@chrisrock,RT @NAACP: Pardon of Arpaio is explicit embrace of the racist policing practices that leave communities fearful of very ppl who should prot… +08/26/2017,Comedians,@chrisrock,RT @TVietor08: Trump's presidency is defined by having no policy vision except opposing everything Obama did and being as vindictive as pos… +08/26/2017,Comedians,@chrisrock,"RT @KenTremendous: The President is a 71 year-old racist who, during a hurricane, pardoned an 85 year-old racist sheriff who'd been convict…" +08/24/2017,Comedians,@chrisrock,"RT @aparnapkin: DID U KNO: for all we're paying for trump's security, we're paying far more for his insecurity" +08/24/2017,Comedians,@chrisrock,"RT @nealbrennan: The ""Blacks for Trump"" guy looks like every open-micer who's ever tried to hand me a business card." +08/21/2017,Comedians,@chrisrock,RT @TheEllenShow: I just invested in an eclipse sunglass company. Does anyone know when the next one is? +08/21/2017,Comedians,@chrisrock,RT @aparnapkin: tough day for sunglasses +08/21/2017,Comedians,@chrisrock,RT @ConanOBrien: When the eclipse comes I’m going to borrow the special glasses my wife uses when I’m shirtless. +08/21/2017,Comedians,@chrisrock,RT @DavidSpade: Is it still ok to stare at the moon? Let me know if anything is changed on that front +08/21/2017,Comedians,@chrisrock,RT @MrGeorgeWallace: Dick Gregory and Jerry Lewis in a 12 hour span? That shit happens in threes. I'm rollin' up in bubble wrap and layin'… +08/21/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: No eclipse spoilers please! +08/20/2017,Comedians,@chrisrock,RT @nealbrennan: Trump wouldn’t be President If we’d had spelling bees instead of debates. +08/20/2017,Comedians,@chrisrock,"RT @diddy: On August 21, 2017, the anniversary of Nat Turner's rebellion, there will be a total solar eclipse. + +Are you ready?" +08/20/2017,Comedians,@chrisrock,ICYMI: Here's what I posted yesterday... https://t.co/0jqVrA4pPo +08/19/2017,Comedians,@chrisrock,RT @danieltosh: has anyone thought to line up all our old racist statues to make the border wall +08/19/2017,Comedians,@chrisrock,"RT @anthonyjeselnik: Why tear down statues? Just change all the plaques to read: ""Get a load of this dumb, dead asshole and his bullshit h…" +08/19/2017,Comedians,@chrisrock,I'm not sure this is news but my babies are beautiful. https://t.co/lBoOTD4rj2 +08/19/2017,Comedians,@chrisrock,If you fuck one goat your a goat fucker. https://t.co/JmajYeY9gm +08/18/2017,Comedians,@chrisrock,RT @aparnapkin: Why worry about history being erased when you're so busy repeating it? +08/18/2017,Comedians,@chrisrock,RT @ConanOBrien: I heard the iPhone 15 won't have any ports or jacks or a screen and it will just be a smooth steel ball and finally we'll… +08/17/2017,Comedians,@chrisrock,RT @Sethrogen: The idea that Nazis and people who oppose Nazis are somehow equatable is the most batshit fucking crazy shit I've ever fucki… +08/17/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Why don't we just put all these confederate statues in a coal mine and make everybody happy? +08/15/2017,Comedians,@chrisrock,"RT @soopervillain: @chrisrock Seriously, how the fuck do you twist yourself up defending THIS https://t.co/a04HfNTkPo" +08/15/2017,Comedians,@chrisrock,If 10 guys thinks it's ok to hang with 1 Nazi then they just became 11 Nazis. Alt right / white supremacist it's just nazis. Fuck Nazis. +08/15/2017,Comedians,@chrisrock,"RT @ianbremmer: ""The world is a dangerous place not because of the people who are evil, but because of the people who don't do anything abo…" +08/15/2017,Comedians,@chrisrock,"RT @KenTremendous: Trump is Ron Burgandy, just repeating whatever Fox and Friends puts on his personal mental teleprompter. https://t.co/SD…" +08/15/2017,Comedians,@chrisrock,RT @aparnapkin: trump is the ghost of racist statue present +08/15/2017,Comedians,@chrisrock,RT @BryanCranston: It felt like @realDonaldTrump read the TelePrompTer message condemning hate groups like a hostage forced to read a state… +08/12/2017,Comedians,@chrisrock,"RT @jemkeegs: @RobRuggio @JuliusGoat @TheGreyKing ""When you're accustomed to privilege, equality looks like discrimination.""" +08/12/2017,Comedians,@chrisrock,RT @JamarNeighbors: Lmaoooo somebody rammed they car into a gang of Nazis 😂😂😂😂😂😂😂😂😂😂😂😂😂😂 That's some shit I'd do. I mean I'd have to get a… +08/10/2017,Comedians,@chrisrock,RT @hannibalburess: Good morning to everyone except for people that ask to take a picture and then start taking a snapchat video. +08/10/2017,Comedians,@chrisrock,RT @ChrisIsDxpe: That Chappelle show Sunday was too fucking lit. Chris Rock was 🔥🔥Arsenio Hall was funny and Jeff Ross was wilding & Chappe… +08/10/2017,Comedians,@chrisrock,@TIME Why +08/09/2017,Comedians,@chrisrock,"ICYMI: ""This is about right."" https://t.co/KosJ9ctXmx" +08/08/2017,Comedians,@chrisrock,https://t.co/n7kbQRJIt1 @PaulyShore 😂🤣😂🤣 +08/08/2017,Comedians,@chrisrock,RT @Benminster: I liked a @YouTube video https://t.co/T4yM1VsPmz Epic rap battle Chris Rock VS. Supahot Fire! +08/08/2017,Comedians,@chrisrock,This is about right. https://t.co/PaSNAsvEZG +08/03/2017,Comedians,@chrisrock,"RT @Kreeah: @Megalyn It's Megalyn Echikunwoke Day! Megalyn played Penny, Theo's sister on The Following. A Serial Killer. Beautiful but Dea…" +08/02/2017,Comedians,@chrisrock,"ICYMI: ""Lunch with my girls Brooklyn style."" https://t.co/qc3GWBph7P" +07/31/2017,Comedians,@chrisrock,Lunch with my girls Brooklyn style. https://t.co/9RLqOZmxtI +07/29/2017,Comedians,@chrisrock,"ICYMI: ""Whitch one of us should run for president."" https://t.co/8oZ9Ge1JxN" +07/27/2017,Comedians,@chrisrock,"RT @HamillHimself: A salute to the 15,000+ transgender patriots now currently serving in the United States Military. #ThankYouLGBT #TransR…" +07/27/2017,Comedians,@chrisrock,Whitch one of us should run for president. https://t.co/49HdIDq1x6 +07/27/2017,Comedians,@chrisrock,RT @TIME: Watch President Obama's message to the 2010 Boy Scout Jamboree https://t.co/mhrz2rcChv https://t.co/kGfF2d2fIy +07/27/2017,Comedians,@chrisrock,RT @nottjmiller: Men are not funny. +07/27/2017,Comedians,@chrisrock,"RT @ConanOBrien: Trump hired Anthony Scaramucci because he thought his tan qualified him as a ""person of color.""" +07/27/2017,Comedians,@chrisrock,RT @Sethrogen: I'm starting to think they don't know what these letters actually stand for. https://t.co/ieznVV5Gio +07/27/2017,Comedians,@chrisrock,"RT @TheEllenShow: We should be grateful to the people who wish to serve, not turn our backs on them. Banning transgender people is hurtful,…" +07/27/2017,Comedians,@chrisrock,"RT @Megalyn: Hey all, so this hasn't gone away. It's only gotten worse as famine tends to if not addressed. Please get involved and share.…" +07/27/2017,Comedians,@chrisrock,RT @Megalyn: Hard to believe that in 2017 20 Million people are facing famine anywhere. There are so many… https://t.co/w7BdbiCCWz +07/20/2017,Comedians,@chrisrock,"RT @RealGilbert: OJ just told the judge ""I would kill to get out of here!"" #ojparole #OJSimpsonParole" +07/18/2017,Comedians,@chrisrock,"RT @JimGaffigan: They say laughter is the best medicine. +And it is +After you’ve received real medicine from a real medical professional." +07/18/2017,Comedians,@chrisrock,RT @cthagod: I just want to know if R. Kelly let those young ladies eat today. +07/18/2017,Comedians,@chrisrock,"ICYMI: ""The great Martin Landu has passed away. He's great in so many movies but Crimes and Misdemeanors is his bes… https://t.co/N58BNqHDhS" +07/18/2017,Comedians,@chrisrock,"ICYMI: ""Summer 17."" https://t.co/ExCjSIjlGA" +12/31/2009,Comedians,@JerrySeinfield,Check my website for new standup dates! +12/31/2009,Comedians,@JerrySeinfield,Just getting started on Twitter. Thanks to all you faithfuls. +07/02/2018,Comedians,@therealroseanne,Thread: https://t.co/IiqLmuehJr +07/02/2018,Comedians,@therealroseanne,Trump made peace in no ko and now Iran! Power to the people!! Where we go one we go all! +07/02/2018,Comedians,@therealroseanne,WWG1WGA +07/02/2018,Comedians,@therealroseanne,"RT @HeshmatAlavi: @therealroseanne Dear Roseanne, +I humbly express my utmost gratitude for your support first for #FreeIran2018. +I am very…" +07/02/2018,Comedians,@therealroseanne,Trump takes down Mullahs- #FreeIran2018 https://t.co/6Ptta9rYt1 +07/02/2018,Comedians,@therealroseanne,https://t.co/Ed9mhrqnca +07/02/2018,Comedians,@therealroseanne,"RT @ASJBaloch: An amazing message from Iran! + +The people of #Iran and #Israel are not enemies. + +#IranRegimeChange #FreeIran https://t.co/Qf…" +07/02/2018,Comedians,@therealroseanne,follow: @HeshmatAlavi #FREEIRAN2018 +07/02/2018,Comedians,@therealroseanne,@Potus cancelled the immoral Iran deal of Obama and Jarrett and the result is the human beings are overthrowing the… https://t.co/BMkUKXQuQ4 +07/01/2018,Comedians,@therealroseanne,"I discuss Torah, Zohar and mind-control with @RabbiShmuley on his podcast: https://t.co/mC5KKjnyxn" +06/24/2018,Comedians,@therealroseanne,Podcast from day after show cancelation. Written transcript can be found in my pinned tweet: https://t.co/EzMd929juU +06/24/2018,Comedians,@therealroseanne,My interview with @jpostjewish the day after the show cancelation: https://t.co/8tCwfsDVGP +06/20/2018,Comedians,@therealroseanne,RT @fanimate: For @TheJuanWilliams to defend Peter Fonda and say it was a poorly worded tweet is inexcusable. @FoxNews to fire him! +06/20/2018,Comedians,@therealroseanne,@fanimate @RosennesWorld @TheJuanWilliams @FoxNews he slimed me tho +06/20/2018,Comedians,@therealroseanne,"RT @John_KissMyBot: Trump Signed A Executive Order To Keep Illegal Alien Families Together + +BECAUSE Chuck Schumer And The Democrats In Con…" +06/20/2018,Comedians,@therealroseanne,RT @HAGOODMANAUTHOR: The United States government placed an unknown number of Central American migrant children into the custody of human t… +06/20/2018,Comedians,@therealroseanne,"RT @canarymission: .@OhioState student senator Shukri Ahmed promised to fight for ""transparency"" at OSU. She then voted for a secret ballot…" +06/20/2018,Comedians,@therealroseanne,RT @tracybeanz: I love the comments on this tweet. The world is waking up. https://t.co/QIJGnNeBcx +06/20/2018,Comedians,@therealroseanne,RT @Jtruzmah: Sons of Zawari launch incendiary balloons from the Northern #Gaza Strip into #Israel earlier today. https://t.co/eKCfHAgl2a +06/20/2018,Comedians,@therealroseanne,RT @canarymission: .@OhioState student senator Paige Bennett sponsored a BDS resolution where 38 people spoke against and 8 spoke in favor.… +06/20/2018,Comedians,@therealroseanne,RT @TrumpAnon61233: @katiet121 @therealroseanne @elenochle @TheJordanRachel @Jordan_Sather_ @1ambecauseweare @jennajameson @Annakhait @kate… +06/20/2018,Comedians,@therealroseanne,RT @katiet121: @elenochle @TheJordanRachel @Jordan_Sather_ @1ambecauseweare @therealroseanne @jennajameson @Annakhait @kateordie @FedupWith… +06/20/2018,Comedians,@therealroseanne,@charliekirk11 they are. +06/20/2018,Comedians,@therealroseanne,RT @Joshnewcomb4: @gramma61 @lisabarone46 @charliekirk11 Trafficking is cruel and enabled because democrats kept the border wide open knowi… +06/20/2018,Comedians,@therealroseanne,@chessienda @jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 you're… https://t.co/Wo6tBLaKtw +06/20/2018,Comedians,@therealroseanne,@JeaneHasSpoken @justbav24 they r compromised. +06/20/2018,Comedians,@therealroseanne,@JimmySmagula @libbyannehess @Amirica24 @lisa63williams classist pretending to be against racism. +06/20/2018,Comedians,@therealroseanne,"RT @seanhannity: ***BREAKING*** @realDonaldTrump will sign executive order to ""keep families together""... https://t.co/iGw2t9OF7o" +06/20/2018,Comedians,@therealroseanne,RT @Gingrich_of_PA: Oh snap! Death of a talking point caught live on Fox #ObamaCages https://t.co/Qaa0MtxWMB +06/20/2018,Comedians,@therealroseanne,"RT @therealcornett: 🚨Video footage surfaces from 2014 showing that under Obama, family separations and holding centers were EXACTLY the sam…" +06/20/2018,Comedians,@therealroseanne,"RT @1776Stonewall: Hannity tonight will show pics, videos and articles proving that the separations at border where happening during Obama…" +06/20/2018,Comedians,@therealroseanne,RT @smoss319: President Trump signs executive order to end family separations. We will still have zero tolerance for illegal entry at the b… +06/20/2018,Comedians,@therealroseanne,"RT @ScottPresler: President Trump signed an executive order keeping illegal alien families together. + +Here's yet another instance of Trump…" +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: QED https://t.co/w0RXSy9cqo +06/20/2018,Comedians,@therealroseanne,"RT @DiamondandSilk: Amazing. ....Trump Finishes Speech, Walks Straight Over to American Flag, Then Let’s His True Patriot Come Out. https:/…" +06/20/2018,Comedians,@therealroseanne,RT @StandWithUs: That time when the #BDS supporting trade union accidentally tweeted a picture of JEWISH refugees from Arab countries and f… +06/20/2018,Comedians,@therealroseanne,i abandoned the left in 2012 after seeing the shocking and vile anti semitism there-LEAVE IF YOU DARE! +06/20/2018,Comedians,@therealroseanne,RT @JackPosobiec: Love trumps hate https://t.co/G644OPUJPF +06/20/2018,Comedians,@therealroseanne,"RT @alfrich_k: WoW!! + +Mark Meadows just name dropped who he believe is: + +Attorney 1 and Attorney 2 + +They work for Trish Anderson in the Of…" +06/20/2018,Comedians,@therealroseanne,RT @WalshFreedom: The men and women of @ICEgov do a thankless job and have disgusting things said about them on a daily basis (like this im… +06/20/2018,Comedians,@therealroseanne,"RT @bennyjohnson: Dear @TwitterSafety & @jack, + +Does being investigated by the Secret Service for multiple kidnapping & rape threats agains…" +06/20/2018,Comedians,@therealroseanne,RT @DiamondandSilk: .@Janefonda's brother @iamfonda needs to be arrested and detained for suggesting that something vile and vicious should… +06/20/2018,Comedians,@therealroseanne,"RT @charliekirk11: Why is no one asking about Obama emailing Hillary on her server? + +🤔" +06/20/2018,Comedians,@therealroseanne,"RT @realDonaldTrump: “FBI texts have revealed anti-Trump Bias.” @FoxNews Big News, but the Fake News doesn’t want to cover. Total corrupti…" +06/20/2018,Comedians,@therealroseanne,RT @Cernovich: “The Flores settlement prohibits the federal government from keeping children in immigration detention — even if they are wi… +06/20/2018,Comedians,@therealroseanne,@Chrissythecraft @libbyannehess @Amirica24 @lisa63williams never-like they never get my hitler picture-they r low info trolls +06/20/2018,Comedians,@therealroseanne,@pusherlovegirl @SiddonsDan @maddow hammy-no tears for kids trafficked thru arizona or out of haiti or libya tho. +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @jessica_vasicek @AngelaSellars7 @therealroseanne @ThankfulToday1 Actually, I'm not making that comparison; ""your"" gov't.…" +06/20/2018,Comedians,@therealroseanne,@libbyannehess @Amirica24 @lisa63williams i compared no one's looks to any animal. +06/20/2018,Comedians,@therealroseanne,@ScottAnthonyUSA @Jeepgrl188 @iamfonda @ICEgov @USBPChief it's hilarious2 C certain Hollywoodys speak against racis… https://t.co/rNFYNTesjf +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 no one needs to ask again if what happened in Germany could happen here. The underlying issue is that… https://t.co/cbFwyXyX9N +06/20/2018,Comedians,@therealroseanne,RT @RealWendyBelle: @therealroseanne Omg I’m do glad you’re back on twitter!! YES!! The revolution will not be televised! +06/20/2018,Comedians,@therealroseanne,RT @JohnnyArgent: @jonbyersphotos @nicholas_wiser @octopusmind141 @therealroseanne @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 YOU us… +06/20/2018,Comedians,@therealroseanne,"RT @wolferkitten: This is beyond TDS, for @iamfonda to say something like that is down-right vile verging on criminal and @SonyPictures is…" +06/20/2018,Comedians,@therealroseanne,@nlitvin @Honeybal yes and so was gaddafi +06/20/2018,Comedians,@therealroseanne,"RT @RepStevenSmith: A white male Hollyweirdo calls two women a ""lying gash,"" with one being ""worse than a cunt"" and suggests another be ""pu…" +06/20/2018,Comedians,@therealroseanne,RT @DonaldJTrumpJr: As an FYI @SonyPictures has a movie with him dropping in a few days. I wonder if they will apply the same rules to @iam… +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @NeverGiveUpWP @JohnnyArgent @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 i have as we say in Uta… https://t.co/DyTOSJlVOx +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @NeverGiveUpWP @JohnnyArgent @therealroseanne @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 When a woman has chutzpah,…" +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @NeverGiveUpWP @JohnnyArgent @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 it's an expression we u… https://t.co/CPqU9M41J3 +06/20/2018,Comedians,@therealroseanne,@jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 Rice lied about the… https://t.co/YwxZwqAC0x +06/20/2018,Comedians,@therealroseanne,@jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 I said susan rice was a MAN +06/20/2018,Comedians,@therealroseanne,@USMCSgtKnight you need discernment and facts to see it +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I've literally just had a (Greek) salad for lunch. Albeit with lashings of pitta bread. https://t.co/JVhfib1soV +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I'm specifically talking about the children taken from their parents. Totally unnecessary & horribly cruel. https://t.co/U… +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: That's sexist. https://t.co/OhKwa3gq7t +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Scotland would have scored 1000 on this pitch. #ENGvAUS +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Many thanks to Andrew Ridgeley for being such an insufferable dick today - much appreciated! ⁦@GMB⁩ https://t.co/WlxPDHLrme +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Pathetic behaviour. https://t.co/Wol0UBMuBK +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I’ve been exposed to too much Love Island crap - it’s damaged my brain. https://t.co/OMx8jChq6X +06/20/2018,Comedians,@therealroseanne,"RT @piersmorgan: Your feed does, yes. https://t.co/cZc7b67gMF" +06/20/2018,Comedians,@therealroseanne,"@piersmorgan yes, my feed pales in comparison to the great intellectual content of yours." +06/20/2018,Comedians,@therealroseanne,"@Silentlyl0ud_ @iamfonda it's their shame, not mine. I am for the Freedom of Iranian women, unlike the left." +06/20/2018,Comedians,@therealroseanne,@jane_kjane it was cia created-so....it was the original intention perhaps +06/20/2018,Comedians,@therealroseanne,RT @Mamapaws6: @therealroseanne @YouTube https://t.co/MH8BcmsnBW +06/20/2018,Comedians,@therealroseanne,does twitter exist to spread disinformation? +06/20/2018,Comedians,@therealroseanne,RT @bell_bellgon: @RodStryker @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @Donn… +06/20/2018,Comedians,@therealroseanne,RT @USAforPOTUS: @therealroseanne Shalom Israel🇺🇸🇮🇱 https://t.co/jmlOrQoot3 +06/20/2018,Comedians,@therealroseanne,RT @Catheri88706812: @therealroseanne Anyone really wanting to understand what is going on in the Muslim world needs to check out Dr. Zuhdi… +06/20/2018,Comedians,@therealroseanne,@matchpenalty1 it's a new day in saudi arabia tho-catch up. read. +06/20/2018,Comedians,@therealroseanne,"@TheNobby grow a brain, sheep" +06/20/2018,Comedians,@therealroseanne,@Xsquader so you're pro Hezbollah? go away +06/20/2018,Comedians,@therealroseanne,"@StopTrumpRegime get off yours-it's not working, psycho." +06/20/2018,Comedians,@therealroseanne,"@JCookDC that's your feeble minded Imperialist interpretation. stfu,psycho." +06/20/2018,Comedians,@therealroseanne,@RedRebelOfDeath anti semitic +06/20/2018,Comedians,@therealroseanne,@M44023448 suck my balls! enjoy! +06/20/2018,Comedians,@therealroseanne,RT @Alaskan_Gypsy: @therealroseanne I've been alerted to the uprising in Iran as a result of your infamous Tweet! Thank you! It cost you gr… +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: The solution is rather simple. https://t.co/eNfgncBjCm +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: Peter Fonda + +2009: Says Roman Polanski “is not a criminal” Polanski drugged & raped a 13 year old girl & fled the U.S. to…" +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: Really? https://t.co/8b9q65w5mj +06/20/2018,Comedians,@therealroseanne,My friends are at the KOTEL right now-praying for the complete healing of the world-IRAN is key! Good vs Evil. The time is NOW. +06/20/2018,Comedians,@therealroseanne,@ThomasWictor @realDonaldTrump i trust you too-let's double down now. We can tip the Beast over. +06/20/2018,Comedians,@therealroseanne,why did 23 #cardinals resign under this pope? +06/20/2018,Comedians,@therealroseanne,RT @Lrihendry: @therealroseanne @TwittaChicca ONLY because you dared to show support for President Trump! 63 million Trump supporters were… +06/20/2018,Comedians,@therealroseanne,@JeaneHasSpoken @FactThis1 don't argue w dividers. lets unite and keep on! +06/20/2018,Comedians,@therealroseanne,"@Lrihendry @TwittaChicca I FOUGHT to make sure a decent representation of Trump supporters was included, and knew i… https://t.co/PgtAJun3cV" +06/20/2018,Comedians,@therealroseanne,@PimpingPolitics blaming jewish kids for the holocaust is ok with you tho- +06/20/2018,Comedians,@therealroseanne,@silveraa yes-there are good and bad ppl-in every single race religion and group. +06/20/2018,Comedians,@therealroseanne,"RT @ISurvivior: @therealroseanne They stuck my father in prison and when he came out he was more violent, adopted racist views that are for…" +06/20/2018,Comedians,@therealroseanne,"@TheBestPrezEver that isn't what I said, racist." +06/20/2018,Comedians,@therealroseanne,Follow ME if you want to force our corrupt government to address the issue of child trafficking and what… https://t.co/iAl4XEntVI +06/20/2018,Comedians,@therealroseanne,Do not be divided. Both sides need to work together to stop the abuse of children in our hemisphere NOW. +06/20/2018,Comedians,@therealroseanne,vote out ALL reps compromised by human trafficking-both parties r compromised by it. Don't be fooled-it's Republica… https://t.co/MZAF4DJk5Y +06/20/2018,Comedians,@therealroseanne,Take the RED PILL and investigate who is behind Child Trafficking at our southern border. Do not allow the Left to control this narrative. +06/20/2018,Comedians,@therealroseanne,RT @Doc_FLEO: @therealroseanne can I please have this retweeted. Thanks! 🇺🇸 https://t.co/uohjwosRbD +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: THIS IS WHY CHILDREN ARE TAKEN FROM ADULTS (""parents"") AT THE BORDER. THIS +And people want to fight for these sick peop…" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: How can anyone have a problem with properly vetting these alleged families if it means saving a child? + +https://t.co/Z…" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: Children like Maria Elena, and younger, are part of those taken from their ""parents"" People who have zero documentation…" +06/20/2018,Comedians,@therealroseanne,"RT @RealJamesWoods: Simple. No DNA match, prison sentence. https://t.co/OkvfnRs3x0" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: Under Hillary Clinton's State Dept. +Trafficking of Person's Report 2012 + +Knowing that there was an issue with trafficki…" +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: US Agencies Bust International Sex Trafficking Ring + +Group brought Tollywood and Kannada actresses into America to Indian…" +06/20/2018,Comedians,@therealroseanne,RT @kromst: @RodStryker @Bingosmurf @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU… +06/20/2018,Comedians,@therealroseanne,@RodStryker @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @DonnaWR8… https://t.co/WqTPmXPOSp +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: @therealroseanne @OpinionOnion7 Strange as it sounds, our student enrollment is down and they claim it's due to the eco…" +06/20/2018,Comedians,@therealroseanne,"RT @SiddonsDan: .@maddow is verklempt w/#FakeOutrage meltdown + +Meanwhile The ""Three Strikes Law"" under Clinton sent 2 million American men…" +06/20/2018,Comedians,@therealroseanne,"RT @USAloveGOD: @glo_mojo Report this tweet immediately if you care about children! #PeterHenryFonda is promoting child kidnapping, hate,…" +06/20/2018,Comedians,@therealroseanne,@DesslynStorm @626Robyn @MARS0411 @JohnnyArgent hitler in drag isn't instantly recognizable? you're an idiot. +06/20/2018,Comedians,@therealroseanne,RT @626Robyn: @PinkPixySprite @JohnnyArgent @therealroseanne @DesslynStorm @MARS0411 Agree..she was pointing out her involvement with the M… +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @626Robyn @PinkPixySprite @therealroseanne @DesslynStorm @MARS0411 No doubt about it, Robyn... She regrets her word choic…" +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne #DeepState & #FakeNews MSM threatened to take away everything Roseanne created, but she didn't cower. + +Her…" +06/20/2018,Comedians,@therealroseanne,@elenochle @momofmonday of course! i love u! +06/20/2018,Comedians,@therealroseanne,we r the army of truth-wwg1wga +06/20/2018,Comedians,@therealroseanne,@WilliPete @HarmonyRachell @WWG1WGA_PATRIOT @elenochle @satya123v @TheJordanRachel @jennajameson @Annakhait… https://t.co/svGRvF979N +06/20/2018,Comedians,@therealroseanne,RT @RodStryker: @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @DonnaWR8 @MAGANina… +06/20/2018,Comedians,@therealroseanne,i love u all so much! let's keep on! +06/20/2018,Comedians,@therealroseanne,@elenochle @momofmonday u do great work-don't get off track! +06/20/2018,Comedians,@therealroseanne,RT @OpinionOnion7: @therealroseanne I totally agree! I flip homes for investors in LA County and its very sad to see many lose their homes.… +06/20/2018,Comedians,@therealroseanne,@HarmonyRachell @WWG1WGA_PATRIOT @elenochle @satya123v @TheJordanRachel @jennajameson @Annakhait @katiet121… https://t.co/rnLgNRjvHf +06/20/2018,Comedians,@therealroseanne,@OpinionOnion7 i advocated for forgiveness for student loans too-i thought it would help to revive the housing market. +06/20/2018,Comedians,@therealroseanne,"RT @ScotchJLK: We would love to see, and would retweet the heck out of 5 minute vignettes: ""Rosie on the Couch"". Guest stars, monologues, a…" +06/20/2018,Comedians,@therealroseanne,@ScotchJLK you will be surprised very soon!! +06/20/2018,Comedians,@therealroseanne,"@Debradelai @gymbomom2 oh, he has a penis so it's ok to make fun of HItler." +06/20/2018,Comedians,@therealroseanne,"@granolamite @Amirica24 what exactly about Q is 'doofus""? Interested in your analysis. thanks" +06/20/2018,Comedians,@therealroseanne,"@dedreb @Amirica24 also, everyone on the left is so 'intelligent', they have few political references." +06/20/2018,Comedians,@therealroseanne,"@dedreb @Amirica24 yes, because most americans know nothing about Iran deal, capitalism, class system or anti semit… https://t.co/Oko7Xxn19S" +06/20/2018,Comedians,@therealroseanne,RT @tatobin2: @bhobunny @wfraser60 @therealroseanne @RickAnderson The Trump Administration has not separated children from their parents. T… +06/20/2018,Comedians,@therealroseanne,Occupy wall street got pissed at me bc I advocated for debt forgiveness. they preferred to ask ppl 2 finance a scam… https://t.co/h4noMbOhVq +06/20/2018,Comedians,@therealroseanne,@BeeBeeBeeLeaves @1TaxedOutSista @GREENESJ333 @robwrog @Fulcrum__News intellectual animals who survived inhuman deg… https://t.co/KhKX9BcFok +06/20/2018,Comedians,@therealroseanne,RT @GREENESJ333: @DeplorableGoldn @therealroseanne @redneckowl @robwrog @Fulcrum__News @POTUS They lied to us. It was a huge propaganda cam… +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @DeplorableGoldn @redneckowl @robwrog @Fulcrum__News @POTUS as they tried to screw Israeli elections w… https://t.co/ErLcLiraWa +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne MK ULTRA will not work on #FreeThinkers! + +Once you see the TRUTH you cannot unsee it. + +We are LIBERATED a…" +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @Amirica24 @therealroseanne Shall we be explaining the Book of Esther, next? Iran is the largest state sponsor of terror a…" +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @Amirica24 @therealroseanne ""The Iran deal was never about prevention of nuke device. It was a huge money laundering opera…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: Also Iowa. + +That's why I'm one-eighth Santee Sioux. + +Great-Grandpa had a very young Sioux maid, and everybody lied about…" +06/20/2018,Comedians,@therealroseanne,RT @elenochle: MONDAY JUNE 18TH NEWS BLAST @TheJordanRachel @Jordan_Sather_ @therealroseanne @jennajameson @Annakhait @katiet121 @1ambecaus… +06/20/2018,Comedians,@therealroseanne,@LJT_is_me i'm passionate about children because I'm human +06/20/2018,Comedians,@therealroseanne,RT @LJT_is_me: I didn't know..That explains why you have always been so passionate about this. I need to learn more. https://t.co/QAtf4QcI3x +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @therealroseanne @redneckowl @robwrog @Fulcrum__News Yes, the information has been out there all along but so has the msm…" +06/20/2018,Comedians,@therealroseanne,"RT @wfraser60: @RickAnderson What a crock of shit, 90% of these children are unaccompanied, the rest god only knows who they are, they are…" +06/20/2018,Comedians,@therealroseanne,trafficked children are used as domestic workers. This happened in Utah when I was a kid-60% of native american kid… https://t.co/4gfSAJsapG +06/20/2018,Comedians,@therealroseanne,"RT @XluvnuX: @ThomasWictor They wonder why their tactics no longer work. Anyone who refuses see through this crap, is almost complicit at…" +06/20/2018,Comedians,@therealroseanne,"RT @mangelaron: @ThomasWictor @SavtheRepublic their fake Russia-Trump collusion, it's falling down, @realDonaldTrump obstruction of justice…" +06/20/2018,Comedians,@therealroseanne,RT @RettCopple: @ThomasWictor The infuriating part of all this is the constant and organized propaganda campaign comparing the US to Nazi G… +06/20/2018,Comedians,@therealroseanne,"RT @ToddKrieger1: @ThomasWictor They have never intended to actually help children, and never will. The Trump DACA legislation could be a g…" +06/20/2018,Comedians,@therealroseanne,THERE'S TRUTH AND THERE'S DISINFO-THERE IS A WAR ON FOR YOUR MIND. don't surrender bc you won't survive. +06/20/2018,Comedians,@therealroseanne,A Jew making fun of Hitler is now assumed to be 'racist'! HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA +06/20/2018,Comedians,@therealroseanne,RT @SaRaAshcraft: @SiddonsDan @therealroseanne @realDonaldTrump That is one of my favorites. So is this: https://t.co/ZRQLBD0AJG +06/20/2018,Comedians,@therealroseanne,"RT @KathySoltani: @therealroseanne On behalf of my Iranian family, I thank you." +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne Thank you for not standing down. +Thank you for not staying silent. + +The Iranian Regime is a terror organi…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: You're a better person than me, because I wasn't shocked. + +The only three people in the world I trust to never betray me…" +06/20/2018,Comedians,@therealroseanne,RT @libbyannehess: @therealroseanne Don't give these negative trolls the time of day. Block as soon as you see them. They can't handle the… +06/20/2018,Comedians,@therealroseanne,@redneckowl @GREENESJ333 @robwrog @Fulcrum__News they lack the references to understand my tweet-they are so stupid… https://t.co/qWp760NGz1 +06/20/2018,Comedians,@therealroseanne,"@1TaxedOutSista @GREENESJ333 @robwrog @Fulcrum__News it was about her politics, not her looks, genius." +06/20/2018,Comedians,@therealroseanne,@SistaCal @GREENESJ333 @robwrog @Fulcrum__News don't be upset that I ridiculed your hero. +06/20/2018,Comedians,@therealroseanne,@Oompaqueen @GREENESJ333 @robwrog @Fulcrum__News you can do your own research-it's all there. +06/20/2018,Comedians,@therealroseanne,RT @MrNashvilleTalk: @therealroseanne Exactly. Read up on it. People don’t do their homework and are so easily swayed. When our guards are… +06/20/2018,Comedians,@therealroseanne,"RT @rockriver_: @dsade2 @therealroseanne @RealCandaceO Yes, as a descendant, I found the holocaust references very ""offensive"". For starte…" +06/20/2018,Comedians,@therealroseanne,I was saddened & shocked that ppl who knew me 4 years accused me of being a racist 4 political points. I oppose cor… https://t.co/EZiRTeKjki +06/20/2018,Comedians,@therealroseanne,"I've corrected my mistake-which was to speak against an immoral regime-Iran, which throws gays off buildings & exec… https://t.co/WsJTGqzVrJ" +06/20/2018,Comedians,@therealroseanne,@Amirica24 i am sad that ppl like you lack the intellectual references to understand my tweet. It was not a racial… https://t.co/DpR0BQwulS +06/20/2018,Comedians,@therealroseanne,@fakenoooz i apologized to ppl who lacked the references to understand my tweet. bye! +06/20/2018,Comedians,@therealroseanne,RT @AyesHavit: @therealroseanne https://t.co/mtlL1tjEDr Pedophilia and Slavery is the product of those who do nothing and say nothing. Poli… +06/20/2018,Comedians,@therealroseanne,@dmoyeweirdnews huff post is an anti semitic rag. gtfo +06/20/2018,Comedians,@therealroseanne,@PossieElizabeth learn about reading comprehension. +06/20/2018,Comedians,@therealroseanne,"RT @jerrycalvert76: @therealroseanne Roseanne, if it's a show you wanted, well, you already did that, and better than most ever will! And n…" +06/20/2018,Comedians,@therealroseanne,"@Romideol it wasn't racist, moron-it was about a murderous Iranian regime. I'm not as stupid as you are." +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @DesslynStorm @626Robyn @MARS0411 @therealroseanne You DO know that photo shoot was for a Jewish magazine, Right? HEEB, a…" +06/20/2018,Comedians,@therealroseanne,"RT @shawnsteel1: Rescued Migrant Woman Was Not Mother of Children She Brought Across Border + +Does anyone care? + +It’s called Human Trafficki…" +06/20/2018,Comedians,@therealroseanne,"RT @LionelMedia: The question that no one ever asks is whether something is worthy of a top security clearance. Stated differently, what be…" +06/20/2018,Comedians,@therealroseanne,RT @RealJamesWoods: So sad. #SanFrancisco https://t.co/pdMbuN3ATH +06/20/2018,Comedians,@therealroseanne,@thecjpearson @AFreeBlackMan they are not brought here by parents! #Coyotes +06/20/2018,Comedians,@therealroseanne,"RT @Education4Libs: Racism didn’t work. +Sexism didn’t work. +Rigging the election didn’t work. +Russia didn’t work. +Gun control didn’t work.…" +06/20/2018,Comedians,@therealroseanne,"RT @AuthorAnnBaker: @ChadPergram You've got to ask yourself, why are these people so desperate to have 2k children, some that are being acc…" +06/20/2018,Comedians,@therealroseanne,RT @Thomas1774Paine: Fired-Up Gowdy scorches Comey in blistering opening statement at IG hearing https://t.co/SvSuhecotd +06/20/2018,Comedians,@therealroseanne,"RT @AmyMek: “Pick the target, freeze it, personalize it, & polarize it” Cut off the support network & isolate the target from sympathy. Go…" +06/20/2018,Comedians,@therealroseanne,"RT @canarymission: After @ucla refuses 2 prosecute violent disruptors of pro-Israel event, students pursue justice w/ LAPD. “This case is a…" +06/20/2018,Comedians,@therealroseanne,@VLPRESL and most have poorly paid staff too +06/20/2018,Comedians,@therealroseanne,RT @AFreeBlackMan: President Trump should test the sincerity of the media on this immigration issue. Pardon Michael Flynn tomorrow. If the… +06/20/2018,Comedians,@therealroseanne,"RT @HillelNeuer: Dear @UNHumanRights Chief Zeid: +Hamas just fired over 45 rockets last night at southern Israeli communities. I support Pal…" +06/20/2018,Comedians,@therealroseanne,the mid terms are so important! VOTE OUT ALL PRO-TRAFFICKING PPL! STUDY THIS ISSUE DO NOT BE FOOLED! KNOW WHAT IS REALLY HAPPENING! +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: Pedophile Crackdown In Australia Stops ‘Hundreds’ Of Child Predators At Airports + +Sounds like a great idea for the U.S.A…" +06/20/2018,Comedians,@therealroseanne,"RT @TT45Pac: Bi-Polar Acting🏆 + +I guess he thinks his base is really stupid. +I know they are not. +Research people. +2008,2009,2010, 2011, 20…" +06/20/2018,Comedians,@therealroseanne,"RT @NabeelAzeezDXB: 🤔🤔🤔 Thoughts, @maddow? - More Than 2,300 Suspected Online Child Sex Offenders Arrested During Operation “Broken Heart”…" +06/20/2018,Comedians,@therealroseanne,"RT @SiddonsDan: Hillary there has never been anything like this. You get a subpoena, and after getting the subpoena you delete 33,000 email…" +06/20/2018,Comedians,@therealroseanne,@rnlynn1958 @michelle11502 G0D is working thru everyone these days-it's amazing to witness! +06/20/2018,Comedians,@therealroseanne,RT @ElderLansing: The new Buzz phrase used among Black Libnuts is that black conservatives have “sold our souls” because we support POTUS T… +06/20/2018,Comedians,@therealroseanne,RT @dsade2: @therealroseanne @RealCandaceO Do you find these Concentration Camp comparisons as offensive as I do? Rampant Anti-Semitism by… +06/20/2018,Comedians,@therealroseanne,"RT @Cernovich: A man stops at the border with an underage boy or girl: ""This is my child."" + +They have no paperwork or proof of this. + +Do yo…" +06/20/2018,Comedians,@therealroseanne,"RT @_ImperatorRex_: 10. They were all so certain Clinton would win, they lost their minds. + +Justice is coming. + +#MAGA + +The end." +07/01/2018,Comedians,@TheLewisBlack,RT @Ellisonx: Happy Canada Day @TheLewisBlack !!! https://t.co/dz16VTEpek +06/30/2018,Comedians,@TheLewisBlack,June 29 at the West Bank Cafe celebrating its opening forty years ago.Its been more than a restaurant to so many of… https://t.co/CZMTpZg1H5 +06/27/2018,Comedians,@TheLewisBlack,RT @TonyNocerino: @TheLewisBlack I found you at Disneyland https://t.co/EJkjoAM1Zi +06/26/2018,Comedians,@TheLewisBlack,"🇺🇸 Feeling Red, White, and Screwed? Express yourself in these red, white, and blue items for one-fourth off through… https://t.co/GI2vI86oUA" +06/25/2018,Comedians,@TheLewisBlack,"💢NEW show on sale to fan club members NOW!!! Sept 22 at @ColonialKeene in Keene NH. Fan Club Seats in first 4 rows,… https://t.co/2sHNE2EqvI" +06/23/2018,Comedians,@TheLewisBlack,Happy #NationalHydrationDay 💦 https://t.co/8QszeiAKSB +06/20/2018,Comedians,@TheLewisBlack,"RT @Brandonsbuddz: Happy 3rd Anniversary of Disney/Pixar's #InsideOut. This movie came out in theaters on June 19th, 2015. Featuring the vo…" +06/19/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: 2 wks ago he said Canada burnt down DC. He seriously thought that. Apologies Canada. Ur Crown Royal is delicious n Ban… +06/19/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Oh for Christ's sake. Most ppl dont wanna take their own kid on a long plane ride. Nobody's smuggling someone else's 2… +06/19/2018,Comedians,@TheLewisBlack,What we have been doing at the Border. Separating children from their parents is Indefensible. No set up. No pun… https://t.co/tEyDGJfjVY +06/17/2018,Comedians,@TheLewisBlack,A Happy Father's Day to my very happy father and all you other fathers too. https://t.co/2Um0ERmm94 +06/15/2018,Comedians,@TheLewisBlack,RT @TheDailyShow: Happy Friday! Here's a @TheLewisBlack outtake. #BetweenTheScenes https://t.co/V87hoD8To8 +06/14/2018,Comedians,@TheLewisBlack,"ICYMI: Lewis Black sounds off about the extreme safety measures used to handle mass shootings in U.S. schools, from… https://t.co/OT6RFOn3z3" +06/13/2018,Comedians,@TheLewisBlack,"TUNE IN TONIGHT!!! (Wed, June 13) for a hilarious New Back In Black segment on @TheDailyShow ​on @ComedyCentral, 11… https://t.co/AtyJlluMuo" +06/13/2018,Comedians,@TheLewisBlack,"For those of you who are fans of my parents, I was with them yesterday. They say hi. https://t.co/yyJmFLNhvq" +06/12/2018,Comedians,@TheLewisBlack,🤬 Mad about 👔 Dads & 🎓 Grads Bobblehead Sale - Dad doesn't need another stupid tie & who the hell knows what a Grad… https://t.co/qEFql0I85Y +06/12/2018,Comedians,@TheLewisBlack,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/09/2018,Comedians,@TheLewisBlack,"RT @ParamountHV: Grammy Award-winning comedian, @TheLewisBlack is coming to the Paramount in September! https://t.co/xDczxXFe1E" +06/09/2018,Comedians,@TheLewisBlack,This is a little late but I wanted to extend the moment. Congratulations to the Capitals. Thanks for a triumphant… https://t.co/MErbjQpAo5 +06/06/2018,Comedians,@TheLewisBlack,Looking forward to it. https://t.co/cq71WC3FHX +06/06/2018,Comedians,@TheLewisBlack,Thanks so much. Only College graduation speech I have ever given. It was at the Thurgood Marshall College at UCS… https://t.co/6Tzf1OGdH7 +06/06/2018,Comedians,@TheLewisBlack,⚕️ Help save lives + win tix + meet Lewis Black! ⏳Only a few days left to reach our goal for the #RunForRosogin fun… https://t.co/1a5esG6Mpw +06/05/2018,Comedians,@TheLewisBlack,🤬 Mad about 👔 Dads & 🎓 Grads Bobblehead Sale - You know Dad doesn't need another stupid tie & who the hell knows wh… https://t.co/6kwB7gDFy5 +06/01/2018,Comedians,@TheLewisBlack,It's #NationalDonutDay 🍩 https://t.co/CNw6HkGQ1z +05/31/2018,Comedians,@TheLewisBlack,#TBT from April 2002 - Lewis Black - Surviving https://t.co/6cNNbPTb0s via @comedycentral +05/29/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: I'm sick of unfunny shit being called ""jokes."" I work hard at ""jokes"" so let's not use ""it was just a joke"" when u jus…" +05/29/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: He ate it. He was rite. @TheLewisBlack https://t.co/m1lkl5Ay62 +05/26/2018,Comedians,@TheLewisBlack,Way too truuuuue!!!! https://t.co/FyR4fuwX1m +05/24/2018,Comedians,@TheLewisBlack,"ICYMI - Rant Replays from the last 3 shows at the @DCWarnerTheatre are available for viewing NOW, for a limited tim… https://t.co/dWLNu33nRv" +05/24/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Dunno how @TheLewisBlack expects greatness w 8 sweaters n a jacket on. W best caddie n drinkin pal @BrianLordan @oldhe… +05/23/2018,Comedians,@TheLewisBlack,"We're close to reaching our goal but need YOUR help to save lives! By donating, you'll have a chance for 2 comp tix… https://t.co/NwfnA7AgW6" +05/22/2018,Comedians,@TheLewisBlack,Watch Part 2 now! https://t.co/uongX5ZszR +05/20/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @DCWarnerTheatre in Washington DC: https://t.co/DKTBLOcMiZ https://t.co/Nu786I3N9t" +05/19/2018,Comedians,@TheLewisBlack,"RT @Linkville: Meet the Coleman's. ""One Slight Hitch"" opens this Friday! And runs for 4 weekends @Linkville Playhouse in Klamath Falls, OR!…" +05/19/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Washington DC: https://t.co/DKTBLOcMiZ https://t.co/1KAcUtZnx0" +05/17/2018,Comedians,@TheLewisBlack,"FINAL 3 Live-Screams til Fall start tonite, as first 1/2 of Joke's On US tour wraps up @DCWarnerTheatre. Submit ur… https://t.co/AGPNrCfH1H" +05/17/2018,Comedians,@TheLewisBlack,"RT @DCWarnerTheatre: Comedian @TheLewisBlack is back in DC for 3 shows here this Thursday, Friday & Saturday! Some great seats are still av…" +05/16/2018,Comedians,@TheLewisBlack,On way to D.C. for three shows and so I just got a chance to stop in and see the folks. Thats Frank next to me. W… https://t.co/xVMgFlXCw5 +05/16/2018,Comedians,@TheLewisBlack,A new generation of kids will know him as Anger in Pixar’s animated “Inside Out.” “My generation didn’t know it had… https://t.co/m7V7cKnWpQ +05/15/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: And me n @TheLewisBlack have made it our mission w our free time to find a cure! @CF_Foundation https://t.co/ghZvYrfU… +05/14/2018,Comedians,@TheLewisBlack,"YOU can help Team Lewis Black save lives! And have a chance for 2 comp tix, MEET Lewis & get collectibles (t-shirts… https://t.co/Dv88s84jR7" +05/13/2018,Comedians,@TheLewisBlack,And a happy mother's day to all you mothers. I'm on a plane but here's my Mom. https://t.co/k8SEKBqiLF +05/10/2018,Comedians,@TheLewisBlack,"NEW show on sale NOW! Due to demand, a second show has been added in Greensboro NC (showdate: Nov 4.) F.U.C.K.U. t… https://t.co/KcfHDVEzq5" +05/08/2018,Comedians,@TheLewisBlack,Mother's Day is THIS Sunday (May 13). She'll appreciate a gift that helps her on her way and gets her through her b… https://t.co/tTwr92zM9b +05/07/2018,Comedians,@TheLewisBlack,"RT @science2movies: @TheLewisBlack and Prof. @BGreene join @Faith_Salie to talk math jokes. + +https://t.co/aS4axAEDYS https://t.co/EkYZxNHIPB" +05/06/2018,Comedians,@TheLewisBlack,Thank you https://t.co/j4dEVMSQ50 +05/04/2018,Comedians,@TheLewisBlack,Happy Star Wars Day! May the Farce Be With You! #StarWarsDay #maythe4thbewithyou #princesslewis https://t.co/sQmGaypGS9 +05/04/2018,Comedians,@TheLewisBlack,ICYMI last night! Back in Black - The Primaries Are Working Their Stupid Magic https://t.co/fu6twzjmqq via @comedycentral +05/03/2018,Comedians,@TheLewisBlack,Looking for that perfect gift for Mom? We've got you covered. Order now to receive in time for Mother's Day (May 13… https://t.co/OjDTn2jLpH +05/03/2018,Comedians,@TheLewisBlack,"Had a lovely afternoon with the folks. They have redefined ""Keep on Truckin."" https://t.co/4bTiv0D6b4" +05/03/2018,Comedians,@TheLewisBlack,"RT @TheLewisBlack: TUNE IN UPDATE! Due to a last minute schedule change yesterday, my #BackInBlack segment will air tonight (Thurs, May 3)…" +05/03/2018,Comedians,@TheLewisBlack,"TUNE IN UPDATE! Due to a last minute schedule change yesterday, my #BackInBlack segment will air tonight (Thurs, Ma… https://t.co/7xfu77IlZl" +05/02/2018,Comedians,@TheLewisBlack,"TUNE IN ALERT! Tonight (Wed, May 2) @TheDailyShow on @ComedyCentral at 11pm/10pmC #BackInBlack https://t.co/Dg7B7tru9c" +05/02/2018,Comedians,@TheLewisBlack,"RT @cunytv: Comedian @TheLewisBlack and physicist@bgreene join forces to explain all the hidden #math puns in “The Simpsons” and “Futurama,…" +05/01/2018,Comedians,@TheLewisBlack,Fan Club tickets are on sale NOW for a NEW show on the Fall tour: Sept 23 @TheMahaiwe in Great Barrington MA. All… https://t.co/GYq2MqRxZ1 +04/30/2018,Comedians,@TheLewisBlack,Need to let off some steam? This little guy can help. Just push his button and he'll say one of five of your favori… https://t.co/ebodY8cmVT +04/30/2018,Comedians,@TheLewisBlack,"ICYMI - Rant Replays from the last 3 Texas shows are available NOW, for a limited time, for FREE at… https://t.co/hAFM9byYI9" +04/29/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @reventioncenter in Houston TX: https://t.co/DKTBLOcMiZ" +04/28/2018,Comedians,@TheLewisBlack,"RT @reventioncenter: TONIGHT — @TheLewisBlack - Joke’s on US Tour! Doors: 7PM, Show: 8PM. + +Info + tickets: https://t.co/7xfHT6h4Oj https:/…" +04/28/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @acllive in Austin TX: https://t.co/DKTBLOcMiZ https://t.co/1Q6OqQUP0t" +04/27/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from Dallas TX: https://t.co/DKTBLOcMiZ https://t.co/RDCRbAqlbS" +04/26/2018,Comedians,@TheLewisBlack,"Lewis Black on political humor, coffee - https://t.co/7GkE7U6Vpw #GoogleAlerts" +04/26/2018,Comedians,@TheLewisBlack,"35 years ago, @CityHarvest was founded by New Yorkers who came together to help our neighbors in need. Today, with… https://t.co/oQta0O1QUy" +04/25/2018,Comedians,@TheLewisBlack,"""This fundraiser means a great deal to me & my dear friend Steve Olsen. I hope a few of you will throw a couple buc… https://t.co/SUnPKHHKQd" +04/25/2018,Comedians,@TheLewisBlack,"Rant replays from the last 4 Colorado shows (Ft Collins, both nights in Denver & Colorado Springs) are up! Head ove… https://t.co/nvkessgIjL" +04/25/2018,Comedians,@TheLewisBlack,And the beat goes on. https://t.co/Gew6E3UGcv +04/24/2018,Comedians,@TheLewisBlack,Comedian Lewis Black Returns To The ‘End Of The Universe’…AKA Houston https://t.co/kJV5IoYFeZ +04/24/2018,Comedians,@TheLewisBlack,"""You don't get to say your way is the best way or it's your way or the highway... https://t.co/SxDPcGL6ha via @the_mixmaster" +04/23/2018,Comedians,@TheLewisBlack,@TylerDahl16 These lines are meant to be overlapping if that helps you +04/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @FoCoLincolnCtr in Ft Collins CO: https://t.co/DKTBLOunax https://t.co/g2AMUdNBWh" +04/22/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @ParamountCO in Denver: https://t.co/DKTBLOunax https://t.co/kEBrdyql1J" +04/21/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @ParamountCO: https://t.co/DKTBLOunax https://t.co/OCtwlGYfu3" +04/20/2018,Comedians,@TheLewisBlack,Team Lewis Black needs YOUR help to save lives! Benefiting the @rogosin Institute which helps people with kidney di… https://t.co/sGZz5Ccvbw +04/20/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Me in a meeting w my accountant about taxes. https://t.co/dWJz5t1Px5 +04/20/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @PikesPeakCenter in Colorado Springs CO: https://t.co/DKTBLOunax https://t.co/raIfoRHbbV" +04/19/2018,Comedians,@TheLewisBlack,"Holy shit! Four 'The Rant Is Due' live-screams in a row this week from Colorado, starting tonight (Apr 19) thru Sun… https://t.co/9wjKzvkArp" +04/18/2018,Comedians,@TheLewisBlack,Thanks so much for that insanely great poster and deeply appreciate being one of your favorite artists. Good luck… https://t.co/O8LHSOpFGf +04/18/2018,Comedians,@TheLewisBlack,@DanaMW @YouTube Nope just telling people where I am going to be and making sure they get the best tickets. Since… https://t.co/OwuWkIBOrf +04/18/2018,Comedians,@TheLewisBlack,My very funny and talented friend @LouieAnderson wrote a funny book I think you'll like. https://t.co/IUTlZsEDlj +04/18/2018,Comedians,@TheLewisBlack,"Fan Club tix are on sale NOW ahead of the Fri, Apr 20 public on sale date. All seats within the first 10 rows of th… https://t.co/M0ylqovIQS" +04/17/2018,Comedians,@TheLewisBlack,"🔥 Lewis Black's ""The Joke's On US"" Fall Tour tickets on sale NOW for F.U.C.K.U. members! 🚯 Join & get tix:… https://t.co/nLUJqyKVfS" +04/17/2018,Comedians,@TheLewisBlack,"Sonofabitch! 2018 Fall Tour Dates have been announced & Fan Club ticket sales start tomorrow (Tue, Apr 17). All fan… https://t.co/mTNXdAPxKE" +04/16/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @gillioztheatre in Springfield MO: https://t.co/nry8Gu2xUZ https://t.co/hcqVMb0FA6" +04/15/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @hoytsherman in Des Moines IA: https://t.co/DKTBLOcMiZ" +04/14/2018,Comedians,@TheLewisBlack,"I meant April 14th, 2018. Today. https://t.co/9wuTrsXx5I" +04/14/2018,Comedians,@TheLewisBlack,"April 15th, 2018 on way from Rochester Minnesota to Des Moines Iowa. This isn't weather. It's bullshit. https://t.co/cOXJM76pIq" +04/14/2018,Comedians,@TheLewisBlack,RT @SevereHayley: Our granddaughter Rumi consulting the Oracle... @TheLewisBlack https://t.co/k780oh6Dw6 +04/14/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @MayoCivicCenter in Rochester MN: https://t.co/DKTBLOcMiZ" +04/14/2018,Comedians,@TheLewisBlack,"Judy, a member of F.U.C.K.U. recently purchased an item from Lewis' Black Market. It caused her some frustration, b… https://t.co/SkYXOm6RpO" +04/11/2018,Comedians,@TheLewisBlack,RT @HennessyHaole: Remember when @kathleenmadigan and Lewis Black @TheLewisBlack joined Judy Gold @JewdyGold and me in studio? Nothing but… +04/10/2018,Comedians,@TheLewisBlack,"NEW show on sale NOW! Oct 5, @OldNatlCentre Indianapolis IN. All fan club seats are within the first 7 rows:… https://t.co/AwwjqXE6nn" +04/09/2018,Comedians,@TheLewisBlack,"RT @PB_507: .@TheLewisBlack talks anger, the state of U.S. politics, and whether or not the level of absurdity in reality has rendered come…" +04/09/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @PalacePA in Greensburg PA: https://t.co/DKTBLOcMiZ https://t.co/BYb6VPf7Cb" +04/08/2018,Comedians,@TheLewisBlack,RT @ecpgh: See today's Entertainment Central Cool Picks: https://t.co/tfrhyf60hO @TheLewisBlack @livenationpgh @PalacePA @City_Theatre @Pir… +04/08/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @FillmoreDetroit in Detroit: https://t.co/DKTBLOcMiZ https://t.co/YR3pALbkZz" +04/07/2018,Comedians,@TheLewisBlack,"Join us tonight (Sat, Apr 7) for our FREE, end-of-show live stream from @FillmoreDetroit . Send in your rant sugges… https://t.co/vEQTSVlRq2" +04/07/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @rialtosquare in Joliet IL: https://t.co/DKTBLOunax https://t.co/54h27fM6Jp" +04/06/2018,Comedians,@TheLewisBlack,Did you miss us last week? We're back! 🤗 Free end-of-show live streaming tonite - Sun. Send in your rants NOW to… https://t.co/RxrSaalQrE +04/04/2018,Comedians,@TheLewisBlack,Viewer Melanie Ellis takes advantage of Lewis' worldwide megaphone to announce that she is with child. Congratulati… https://t.co/DiK68VMS2M +04/04/2018,Comedians,@TheLewisBlack,How Lewis Black's Righteous Anger Has Gotten Us Through Two Decades of Craziness https://t.co/01mvxescaw +04/02/2018,Comedians,@TheLewisBlack,Spent a wonderful afternoon with my folks who keep on trucking and continue to amaze me. https://t.co/qat3cUzHqc +04/02/2018,Comedians,@TheLewisBlack,Q&A: Comedian Lewis Black on how yelling is cathartic and why politics now really isn't funny https://t.co/ziUjaKmYhx via @Joliet_HN +03/29/2018,Comedians,@TheLewisBlack,"RT @chq: Attendees of our 2017 week on ""Comedy and the Human Condition"" won't want to miss this stunning new video introduction to the @Ntl…" +03/29/2018,Comedians,@TheLewisBlack,The clock is winding down on our March Madness sale but there is still time to save BIG on bundles and sale items!… https://t.co/iSzbNJLEyG +03/26/2018,Comedians,@TheLewisBlack,Happy Birthday! https://t.co/AxYXpk62Ob +03/25/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @PeabodyDaytona In Daytona Beach FL: https://t.co/DKTBLOcMiZ https://t.co/wREHaK7Y30" +03/24/2018,Comedians,@TheLewisBlack,For all those marching don't let anyone tell you that what you are doing isn't important. My heart is with you. My… https://t.co/Tb6aYS0njW +03/24/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @vanwezel in Sarasota FL: https://t.co/DKTBLOcMiZ https://t.co/q0uyK0W8x4" +03/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Ft Pierce FL: https://t.co/DKTBLOcMiZ https://t.co/JM5Ol4KcsC" +03/22/2018,Comedians,@TheLewisBlack,It's March Merch Madness! Save up to TEN FUCKING BUCKS on these bundles and other sale items!… https://t.co/HDFkTLqARV +03/22/2018,Comedians,@TheLewisBlack,"""It's been unbelievable. Comedy's not something I ever set out to do,"" said Black. King of rant Lewis Black set to… https://t.co/PaPJkC8Pvz" +03/22/2018,Comedians,@TheLewisBlack,"Tune in alert! ""The Rant Is Due"" Live Streaming starts tonite from @SunriseTheatre Ft Pierce FL & then tmrw from… https://t.co/YiAThPyzIT" +03/21/2018,Comedians,@TheLewisBlack,"Lewis Black on tackling Trump, 'The Daily Show,' 'Inside Out' https://t.co/tINFt1pL75" +03/18/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @BorgataAC in Atlantic City: https://t.co/DKTBLOcMiZ" +03/17/2018,Comedians,@TheLewisBlack,"@Pupster_2000 Sorry, glitch on the site! Working to fix it now. We hope you'll join us for tomorrow's rant. ~Lew's Crew" +03/17/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @BorgataAC in Atlantic City NJ: https://t.co/DKTBLOcMiZ" +03/15/2018,Comedians,@TheLewisBlack,ICYMI last night. Replay of Back in Black segment - Trump's Golfing Milestone https://t.co/H2hdNrvdoI via @comedycentral +03/14/2018,Comedians,@TheLewisBlack,Great room. Great food. Great wine. Great fun. Come see me tomorrow (Mar 15) @CityWineryNYC. Tix:… https://t.co/28HGiZuNsu +03/14/2018,Comedians,@TheLewisBlack,I am on @TheDailyShow tonight (at least for now). 11/10c on @ComedyCentral https://t.co/etWoUNR4fc +03/14/2018,Comedians,@TheLewisBlack,"#NationalWalkoutDay +https://t.co/y9PtCTItBm" +03/13/2018,Comedians,@TheLewisBlack,"Good luck Nick. If he doesn't take the Under Secretary of State job, you'll have a winner that's what happens when… https://t.co/vweVSAk9TQ" +03/13/2018,Comedians,@TheLewisBlack,"Thanks for those extremely kind words, it means a lot to me. https://t.co/Q1C9xEbS1N" +03/13/2018,Comedians,@TheLewisBlack,RT @CityWineryNYC: Mastermind @TheLewisBlack performs his ONLY #NYC TOUR DATE at #CityWineryNYC on March 15! Come have a mental breakdown w… +03/12/2018,Comedians,@TheLewisBlack,I stand w/@americans4arts as they take hundreds of arts advocates to Capitol Hill today for #ArtsAdvocacy Day. Arts… https://t.co/Pc2kCLhizW +03/11/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @Lvillepalace in Louisville KY: https://t.co/DKTBLOcMiZ https://t.co/OXXMJWZTnk" +03/09/2018,Comedians,@TheLewisBlack,See you tonight at the historic Ryman Auditorium! Due to unforeseen circumstances tonight’s live stream has been ca… https://t.co/P4BSOYqX4f +03/09/2018,Comedians,@TheLewisBlack,"RT @FilmNewsNos: 🎬MOVIE HISTORY: 27 years ago today March 8, 1991, the movie 'The Hard Way' opened in theaters! + +#MichaelJFox #StephenLang…" +03/09/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live from @ThePeel in Asheville NC: https://t.co/DKTBLOcMiZ https://t.co/O30UzFjhnl" +03/08/2018,Comedians,@TheLewisBlack,RT @CityWineryNYC: Mastermind @TheLewisBlack performs his ONLY #NYC TOUR DATE at #CityWineryNYC on March 15! Come have a mental breakdown w… +03/08/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @ThePeel in Asheville NC: https://t.co/DKTBLOcMiZ https://t.co/NbFYcrrFA8" +03/07/2018,Comedians,@TheLewisBlack,"Tune in alert! ""The Rant Is Due' end-of-show Live Streaming tonight thru Sun (Mar 10). That's 4 nights in a row! 😲… https://t.co/JfoMQoGane" +03/07/2018,Comedians,@TheLewisBlack,"RT @Lightning100: Ready for @TheLewisBlack @theryman on Friday? For your shot at tickets, just share your top 5 all time favorite comedians…" +03/06/2018,Comedians,@TheLewisBlack,"On sale now! Due to popular demand, a THIRD show @DCWarnerTheatre, Wash D.C. has been added. Fan Club tickets for t… https://t.co/KPkrAYfsx5" +03/05/2018,Comedians,@TheLewisBlack,"New show added and ON SALE NOW! Mar 15, 2018 City Winery New York. Get ur tix here: https://t.co/5oMt6o5Oy2" +03/05/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @GaillardCenter in Charleston SC: https://t.co/DKTBLOcMiZ https://t.co/xq8HCuHD8H" +03/04/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Roanoke VA: https://t.co/DKTBLOcMiZ https://t.co/drTE6gIpJT" +03/04/2018,Comedians,@TheLewisBlack,Do you wish more people would just fucking vote already? Well help make that happen by volunteering with… https://t.co/5Sx8FXBbyH +03/03/2018,Comedians,@TheLewisBlack,"""The Kids Are Marching"" (2/24/18 Kingston NY) | Lewis Black https://t.co/nPZ4NTqqS9 via @YouTube" +03/03/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @DOMEnergyCenter in Richmond VA: https://t.co/DKTBLOcMiZ https://t.co/is2Ec4Ubb5" +03/02/2018,Comedians,@TheLewisBlack,"RT @GaillardCenter: Sunday night, Grammy-award winning, stand up comedian @TheLewisBlack performs at the Gaillard for a night of irreverent…" +03/01/2018,Comedians,@TheLewisBlack,Lewis Black returns to Roanoke for Berglund show on Saturday https://t.co/Qore3YtZHn via @roanoketimes +03/01/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond TOMORROW and Berglund Cente…" +03/01/2018,Comedians,@TheLewisBlack,Only 1 more day to take advantage of our 🎱Lewis Black Magic Ball Sale - now $10 (was $15) thru Mar 1. Answers to y… https://t.co/vUBLNPRp1F +02/28/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond 3/2/18 and Berglund Center…" +02/27/2018,Comedians,@TheLewisBlack,"Watch replays of last weekends The Rant Is Due portion of the show (from Princeton NJ, Binghamton NY & Kingston NY… https://t.co/MecKkRhPqc" +02/26/2018,Comedians,@TheLewisBlack,"Comedian Lewis Black disses human stupidity, politicians, internet https://t.co/nY4a6rAwYL via @postandcourier" +02/26/2018,Comedians,@TheLewisBlack,RT @nytimestravel: Why @TheLewisBlack always brings The Week magazine with him when he travels https://t.co/IVeYqh48ao +02/26/2018,Comedians,@TheLewisBlack,"RT @LvillePalace: GIVEAWAY 😆 You could WIN 2 tickets to @TheLewisBlack: The Joke's on US Tour next Saturday, 3/10! This contest ends this W…" +02/26/2018,Comedians,@TheLewisBlack,RT @table4oneplease: @HeadCountOrg @TheLewisBlack Floridians can now register to vote online if they have a FL driver license or state ID.… +02/25/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @upac in Kingston NY: https://t.co/DKTBLOcMiZ https://t.co/0fCFLlT5cj" +02/24/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from Binghamton NY: https://t.co/DKTBLOcMiZ https://t.co/kFlmy6gUR6" +02/23/2018,Comedians,@TheLewisBlack,Today is the start of MLB spring training. Lewis looks forward to the baseball season. His feelings about the NY Ya… https://t.co/ywRxofWNvb +02/23/2018,Comedians,@TheLewisBlack,"It's been awhile since the last Road Report from our favorite behind-the-scenes guy, Lenny Hughes. Let's take an in… https://t.co/5NSxnK8Btv" +02/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @mccarter in Princeton NJ: https://t.co/DKTBLOcMiZ" +02/22/2018,Comedians,@TheLewisBlack,🎱 Lewis Black Magic Ball Sale - now $10 (was $15) from now thru Mar 1. Answers to your life's questions will be rev… https://t.co/QzPb0NTSfT +02/22/2018,Comedians,@TheLewisBlack,Listen to the interview...Lewis Black At UPAC In Kingston On 2/24 https://t.co/vAOGoQjS1I +02/22/2018,Comedians,@TheLewisBlack,"Lewis Black, ahead of UPAC show in Kingston, talks Trump, Facebook and how rants can be funny https://t.co/vUgDlXPh3q via @dailyfreeman" +02/21/2018,Comedians,@TheLewisBlack,RT @GregWarren: Very funny and very nice guy needs help. https://t.co/pDkm0RChGC +02/21/2018,Comedians,@TheLewisBlack,Thanks for making a great tee. https://t.co/hbde2mdahm +02/21/2018,Comedians,@TheLewisBlack,Comedian Lewis Black at UPAC hopes to step back from the 'madness' https://t.co/DlAwkCf4pT via @pokjournal +02/20/2018,Comedians,@TheLewisBlack,Watch replays of last weekends The Rant Is Due portion of the show (from Columbus OH and Skokie IL) for a limited… https://t.co/VPerLaeWco +02/20/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond 3/2/18 and Berglund Center…" +02/18/2018,Comedians,@TheLewisBlack,RT @OttoAndGeorge: George sits down with @TheLewisBlack -Stills from The Pig Roast interview. https://t.co/fCVKIfIV52 +02/18/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @NSCPAS in Skokie IL: https://t.co/DKTBLOcMiZ" +02/17/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @NSCPAS in Skokie IL: https://t.co/DKTBLOcMiZ" +02/16/2018,Comedians,@TheLewisBlack,The Lewis Black Interview https://t.co/JOEx8FUJD1 @991thewhale +02/16/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @CAPAColumbus in Columbus OH: https://t.co/DKTBLOcMiZ https://t.co/3bn3GSJ2fI" +02/15/2018,Comedians,@TheLewisBlack,Tune In Alert! The Rant Is Due end-of-show live streams start TONIGHT (Feb 15) in Columbus OH. Submit your rant sug… https://t.co/wNyLx6nf59 +02/14/2018,Comedians,@TheLewisBlack,"""The Joke's on US"" official tour design screenprinted in red and grey on a navy tee, cozy hoodie or jumbo tote. Is… https://t.co/WHT6uIMI6V" +02/14/2018,Comedians,@TheLewisBlack,"""The holiday doesn't belong in February. It's February. The most depressing month of the year."" +~ Lewis Black on V… https://t.co/McrdEXdpCF" +02/14/2018,Comedians,@TheLewisBlack,Today is his official birthday. A 100 years of Sam. https://t.co/giEJNEQ52r +02/13/2018,Comedians,@TheLewisBlack,"RT @desusandmero: We talk to @TheLewisBlack about saying whatever you want, the idea this presidency being ""great"" for comedy, his broke th…" +02/13/2018,Comedians,@TheLewisBlack,NEW items in the Black Market - Middle Finger Portrait Tee & Jumbo Tote... perfect for when you feel like flipping… https://t.co/sMAhRPUaD3 +02/13/2018,Comedians,@TheLewisBlack,My t-shirt said Read Banned Books. Had a great time with the very funny Desus and Moro. https://t.co/bx61dql4m8 +02/13/2018,Comedians,@TheLewisBlack,"RT @zerocool1984a: @desusandmero @TheLewisBlack Just want to say, hilarious interview and I called the rainbow..😂😎 https://t.co/6ObE6Mxfhk" +02/12/2018,Comedians,@TheLewisBlack,Tune-in Alert! Tonight (Feb 12) @ 11:00pm. Desus and Mero. Channel Finder: https://t.co/nW7mZPOLYq @desusandmero https://t.co/gvuemUJv09 +02/12/2018,Comedians,@TheLewisBlack,"RT @EricLagatta: ""I did a lot of hallucinogens as a kid, and I came up with all sorts of paranoid fantasies. This was not one of them"" + +I t…" +02/11/2018,Comedians,@TheLewisBlack,Last night I had the joy of celebrating my Dad's 100th birthday with family and friends. A lovely and principled m… https://t.co/L69BTCwpNT +02/09/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: It's finally here! Woohoo! My new CD from the Netflix special ""Bothering Jesus."" Available nowwww! https://t.co/QMdCqG…" +02/08/2018,Comedians,@TheLewisBlack,😭Bummed because there are no live-streams this weekend? No worries. Watch replays of last weekends The Rant Is Due… https://t.co/7JzcGtyXCy +02/07/2018,Comedians,@TheLewisBlack,"RT @FantasySprings: Comedian @TheLewisBlack is bringing his ""The Joke's On US"" tour to Fantasy Springs on Friday, May 11th! + +Tickets go o…" +02/06/2018,Comedians,@TheLewisBlack,Lewis Black Magic Ball - for answers to all of life's questions. Conjure up Lewis' wisdom whenever you please. Get… https://t.co/VWK4g8Y6YU +02/06/2018,Comedians,@TheLewisBlack,So how's the weather? #NationalWeatherpersonsDay https://t.co/7By9rWF1jD +02/05/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: I'm pre-thanking you! It's final here! Woooohoooo! The audio CD from my latest Netflix special ""Bothering Jesus."" Limi…" +02/04/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @sdbalboa in San Diego CA: https://t.co/DKTBLOunax https://t.co/mGTIwf9sAx" +02/03/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @groveofanaheim in Anaheim CA: https://t.co/DKTBLOunax https://t.co/pbEwBmmqhW" +02/02/2018,Comedians,@TheLewisBlack,RT @theryman: ON SALE NOW: @TheLewisBlack at the Ryman March 9! >> https://t.co/sys1LMWA3i https://t.co/oZbbGgfDKX +02/02/2018,Comedians,@TheLewisBlack,RT @NtlComedyCenter: We are proud to announce the acquisition of the archive of ground-breaking comedian Shelley Berman. The archive was ca… +02/02/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @LargoLosAngeles in Los Angeles: https://t.co/DKTBLOunax https://t.co/7oqn3t1kIF" +02/02/2018,Comedians,@TheLewisBlack,🏈 Only a few more days! Scoop up some sweet gear on sale and score big savings 💰 in our Super Sale. Now through Feb… https://t.co/dY9aiJnWqZ +02/01/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @LargoLosAngeles in Los Angeles CA: https://t.co/DKTBLOunax https://t.co/JGlFIxaCUL" +02/01/2018,Comedians,@TheLewisBlack,There' still time to grab tix for tonight! https://t.co/nhNBbzNIiR +01/31/2018,Comedians,@TheLewisBlack,"I congratulate and couldn't be more thrilled for my friend, the brilliant @JaneIraBloomSax, for her well deserved G… https://t.co/uA5EE34AuX" +01/31/2018,Comedians,@TheLewisBlack,"🏈 Super Sale Kick Off! Score big savings 💰 now through Feb 4, on these items plus more in the Lewis Black Market.… https://t.co/QNTwgUVE4r" +01/31/2018,Comedians,@TheLewisBlack,"Tune In Alert! Can you handle all the laughs? The Rant Is Due, end-of-show live streams start tonight in Los Angele… https://t.co/6lPoCZVL78" +01/30/2018,Comedians,@TheLewisBlack,"Comedian Lewis Black Weighs In On Legalization, Taxation and a Certain Four-Letter Word https://t.co/FFRMyzWxCR via @ocweekly" +01/30/2018,Comedians,@TheLewisBlack,Need a laugh? We've got you covered! Watch replays of last weekends The Rant Is Due portion of the show for a limit… https://t.co/Uffkmr9mwa +01/29/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Chico CA: https://t.co/DKTBLOunax https://t.co/9Zy4WiFe8i" +01/28/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @grandsierra in Reno NV: https://t.co/DKTBLOunax" +01/25/2018,Comedians,@TheLewisBlack,"If you're asking the question, ""Can I save 20% on the Lewis Black Magic Ball right now?"" The answer is ABSO-FUCKING… https://t.co/Nc5W0vkkaS" +06/27/2018,Comedians,@MelBrooks,I’ll be doing a live Q&A alongside a screening of Blazing Saddles live in London this July! Tickets are on sale now… https://t.co/GnTDEuEgn1 +06/04/2018,Comedians,@MelBrooks,RT @tcm: Thanks for coming out to the #TCMBigScreen 50th Anniversary celebration of @MelBrooks' THE PRODUCERS ('68)! ICYMI see the encore s… +05/23/2018,Comedians,@MelBrooks,Join me in London this July for ‘Back In The Saddle Again’. I’ll be doing a live Q&A alongside a screening of the f… https://t.co/D4hQXFjIrC +05/08/2018,Comedians,@MelBrooks,"RT @eventim_uk: Legendary @MelBrooks is Back In The Saddle Again at the @EventimApollo in July! Join him for an exclusive, inside look at h…" +04/30/2018,Comedians,@MelBrooks,"RT @BacklotProject: Join @MelBrooks at @NJPAC next Sunday, May 6, for an in-person conversation following a screening of SPACEBALLS! For m…" +04/11/2018,Comedians,@MelBrooks,"RT @carlreiner: If you're not doing anything tonight and even if you are, you might enjoy watching the premiere of ""G.I. Jews"" on PBS https…" +03/07/2018,Comedians,@MelBrooks,Congratulations @realrossnoble you got over the hump! Your very first Olivier nomination! I’m so very proud of you.… https://t.co/0vYQqqT5E0 +03/07/2018,Comedians,@MelBrooks,Congrats to @LesleyJosephTV on her Olivier nomination for her spectacular performance as Frau Blucher! (Whinnnnney!… https://t.co/bYZcC5Q3Ex +03/07/2018,Comedians,@MelBrooks,Congrats to the entire cast and crew of @youngfrankldn on the Olivier nomination for Best New Musical! Well done! I… https://t.co/SQl32ZYoCW +02/15/2018,Comedians,@MelBrooks,"Congrats to @cocoanglais on a great debut as Igor in @youngfrankldn. We’ve been sold out all week. By the way, if y… https://t.co/rWrj8sj2Jw" +01/30/2018,Comedians,@MelBrooks,"...to his heartbreakingly beautiful and Academy Award nominated score for The Elephant Man, he always elevated ever… https://t.co/yshYflerH3" +01/30/2018,Comedians,@MelBrooks,"John Morris, who was strangely unsung for being such a musical genius, scored almost every movie I ever made and he… https://t.co/3W6eRdrdb2" +12/21/2017,Comedians,@MelBrooks,RT @youngfrankldn: Mel Brooks behind the camera on the film set for Young Frankenstein. #ThrowbackThursday https://t.co/OHBy4nSLvD +12/14/2017,Comedians,@MelBrooks,RT @EW: Mel Brooks calls The Producers the 'miracle of my life' https://t.co/woHf76aUq5 +12/14/2017,Comedians,@MelBrooks,"RT @tcm: #TCMFF Alert! Opening night will feature a 50th Anniversary presentation of THE PRODUCERS (‘68) attended by @MelBrooks, & a tribut…" +12/13/2017,Comedians,@MelBrooks,Good news! My son @nickbrooks72 movie SAM - an hilarious sex mixup comedy - is streaming on Amazon Prime in the US! https://t.co/LITM0djAZ6 +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Ladies and Transylvanians we have been nominated for ‘Best New Musical’ at the @WhatsOnStage Awards! #WOSAwards https://… +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Congratulations to @hadleyfraser nominated for ‘Best Actor in a Musical’ at the @WhatsOnStage Awards! #WOSAwards https:/… +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Congratulations to @realrossnoble nominated for ‘Best Supporting Actor in a Musical’ at the @WhatsOnStage Awards! #WOSAw… +10/11/2017,Comedians,@MelBrooks,I am exploding with joy! Congratulations to our brilliant cast of @youngfrankldn —What a fantastic opening night. +10/10/2017,Comedians,@MelBrooks,RT @youngfrankldn: Legends @MelBrooks and Susan Stroman at the official opening night of #YoungFrankenstein in the West End ⚡️ https://t.co… +10/10/2017,Comedians,@MelBrooks,"RT @TimeOutTheatre: In photos: Mel Brooks' Young Frankenstein musical, opening TONIGHT at the Garrick https://t.co/CISAl3G3kc https://t.co/…" +09/25/2017,Comedians,@MelBrooks,Previews start this week! https://t.co/0g9eVu269x +09/23/2017,Comedians,@MelBrooks,"RT @JRossShow: DON'T MISS @rustyrockets, @MelBrooks, @LewisHamilton and @Palomafaith on the sofa with @wossy THIS SATURDAY at 09:15PM #TheJ…" +09/20/2017,Comedians,@MelBrooks,RT @youngfrankldn: Missed @MelBrooks and @HadleyFraser chatting with @GrahNort on @BBCRadio2? Catch up here! https://t.co/i97Y2v6u8Q +09/18/2017,Comedians,@MelBrooks,"You should watch me tonight on #ToTellTheTruth (@TellTruthABC) at 10|9c on ABC. Because to tell the truth, everybod… https://t.co/vDugmvN0hN" +09/14/2017,Comedians,@MelBrooks,"RT @PBSAmerMasters: In our latest podcast episode, listen to a previously unreleased interview with legendary comedian @MelBrooks: https://…" +08/23/2017,Comedians,@MelBrooks,Stunned by the news that my friend/co-writer Tom Meehan has died. I’ll miss his sweetness & talent. We have all los… https://t.co/LDiV4p0btt +07/27/2017,Comedians,@MelBrooks,Don't miss my son Max reading & signing his new book #MinecraftTheIsland this weekend at The Grove in LA! https://t.co/MgX56vEjyF +07/18/2017,Comedians,@MelBrooks,"The book is out! What are you waiting for?! +https://t.co/n4JqJ27NIT https://t.co/PhNj3JPtHU" +07/11/2017,Comedians,@MelBrooks,Bursting with pride for my talented son @maxbrooksauthor & his new #Minecraft novel Minecraft:The Island that comes out one week from today! +06/30/2017,Comedians,@MelBrooks,@EzioGreggio thanks for your crazy birthday wish. I beg to differ--you've got a much bigger nose than me! +06/28/2017,Comedians,@MelBrooks,When this movie first opened I was a bit player. Time has made me the star. https://t.co/M5az924n07 +06/08/2017,Comedians,@MelBrooks,Some words on the passing of my friend Ed Victor. https://t.co/sY4JJk72aa +04/25/2017,Comedians,@MelBrooks,RT @IndependentLens: Monday #IndieLensPBS: Has/will there ever be a topic so taboo no one will EVER find humor in it? @lastlaughfilm https:… +04/21/2017,Comedians,@MelBrooks,So happy for all the potent feelings I've stirred up among all the ardent horse racing fans with my rebuke of the @latimes - let's march! +04/18/2017,Comedians,@MelBrooks,To the @latimes - shame on you for eliminating daily coverage of horse racing (the sport of kings!) from your newspaper. +04/06/2017,Comedians,@MelBrooks,"Don Rickles. One of the bravest, funniest, and sweetest guys that ever performed. A dear pal that we will all sorely miss." +04/05/2017,Comedians,@MelBrooks,RT @nerdist: These 5 classic film comedies are not to be missed at this year's @TCM Film Fest: https://t.co/HxfqRXIpyp by @michelledeidre #… +03/15/2017,Comedians,@MelBrooks,"Thank you all for supporting the campaign raising money for the @GeffenPlayhouse. There’s 2 days left to buy at https://t.co/68lz2XEQt8 +" +03/10/2017,Comedians,@MelBrooks,There is one week left to support The @GeffenPlayhouse. You can buy the limited edition apparel at… https://t.co/Y8fHHP9bRo +03/02/2017,Comedians,@MelBrooks,"I could afford the sweatshirt, but the car is twice as much. https://t.co/utJb0KiedL" +03/01/2017,Comedians,@MelBrooks,It’s good to be the king! Get ltd. edition apparel raising money for the @GeffenPlayhouse. There’s 2 weeks to buy a… https://t.co/cVWwaAtpsp +01/28/2017,Comedians,@MelBrooks,No one could have played The Elephant Man more memorably. He carried that film into cinematic immortality. He will be sorely missed. +01/28/2017,Comedians,@MelBrooks,It was terribly sad today to learn of John Hurt's passing. He was a truly magnificent talent. +01/20/2017,Comedians,@MelBrooks,RT @hoffmanormouse: @taketwo and @kpccalex talks to THE Mel Brooks ... and it was exactly what you'd think it would be about https://t.co/S… +01/19/2017,Comedians,@MelBrooks,RT @TheAVClub: Mel Brooks didn’t try to pants the president https://t.co/hDfSjTu7jU https://t.co/4O60PhrPcw +01/18/2017,Comedians,@MelBrooks,SAM directed by my son @nickbrooks72 is on Amazon & iTunes! I talk about how much I love it here: https://t.co/54VmauGjn8 @Sibylsantiago +01/18/2017,Comedians,@MelBrooks,"If I were you, I wouldn’t miss me! Blazing Saddles & Mel Brooks in person. This Friday in Los Angeles. https://t.co/YmYr3CXxXS" +01/17/2017,Comedians,@MelBrooks,RT @KTLASpotlight: Win tickets to see @melbrooks at @RiotLA. https://t.co/DN2zKP8eYq https://t.co/zaLtcGZQhl +01/12/2017,Comedians,@MelBrooks,RT @billydiffer: Opening Nights - 25/12/2016 - @bbcradioscot still on I player @_AngelaLansbury @MelBrooks @stephenashfield ellainec https… +12/21/2016,Comedians,@MelBrooks,RT @LAmag: Riot LA Is the Comedy Showcase Our City Deserves: https://t.co/f1z4J8j41e https://t.co/wp1kxNldlv +12/14/2016,Comedians,@MelBrooks,RT @RiotLA: Break out your Sunday's Best.. @MelBrooks is at the Microsoft Theater on 1/20. https://t.co/C5x4iUwQJk https://t.co/8VUQFzW8g8 +12/14/2016,Comedians,@MelBrooks,RT @OnePerfectShot: Deal Alert: The Mel Brooks Collection on Blu-ray for $19. Preposterous: https://t.co/VmdcONNrFD https://t.co/l6ra3aXKUS +12/06/2016,Comedians,@MelBrooks,RT @RiotLA: Join us on opening night with a Q&A with Mel Brooks (!!!) + screening of Blazing Saddles on 1/20. https://t.co/vMNEX9vUnK +12/05/2016,Comedians,@MelBrooks,"RT @Studio360show: Our episode about parodies with @MelBrooks, @TheDavidZucker, Simon Pegg, @nickjfrost & @alyankovic https://t.co/waaOlphB…" +11/21/2016,Comedians,@MelBrooks,RT @OnePerfectShot: Young Frankenstein (1974) DP: Gerald Hirschfeld | Director: Mel Brooks https://t.co/fPv8cj0RPa +11/16/2016,Comedians,@MelBrooks,"RT @PasteMagazine: The surreal, singular relevance of @MelBrooks and ""Blazing Saddles"" in 2016: https://t.co/1Gxiqy32Us #film https://t.co/…" +11/04/2016,Comedians,@MelBrooks,Proud to say that the original comedy SAM - dir. by my son @nickbrooks72 is now available for your viewing pleasure https://t.co/iiuvVkFZsD +11/04/2016,Comedians,@MelBrooks,RT @JohnJMoser: How to get tickets to see @MelBrooks at Easton's @StateTheatrePA before they go on sale to the public. Read @mcall: https:/… +10/18/2016,Comedians,@MelBrooks,The YOUNG FRANKENSTEIN coffee table book is out today! I’m really proud of it. Please don’t spill any coffee on it. https://t.co/PZ4jIrooam +10/17/2016,Comedians,@MelBrooks,"RT @latimesmovies: Loud and lively at 90, Mel Brooks talks about Gene Wilder, political correctness and his classic movies https://t.co/GiD…" +10/15/2016,Comedians,@MelBrooks,RT @MSTheater: Tickets available NOW to see @MelBrooks live conversation & audience Q&A + viewing of #BlazingSaddles Tickets here: https://… +10/08/2016,Comedians,@MelBrooks,"RT @fathomevents: Back by popular demand, #YoungFrankenstein is coming back to the big screen w/ an intro from Mel Brooks 10/18. https://t.…" +10/05/2016,Comedians,@MelBrooks,"RT @fathomevents: Walk this way, Mel Brooks spooky spoof #YoungFrankenstein returns to the big screen tonight! https://t.co/Xxz1HvsnYq http…" +09/23/2016,Comedians,@MelBrooks,https://t.co/o1jKsYUBpr +09/22/2016,Comedians,@MelBrooks,"RT @DAVID_LYNCH: Dear Twitter friends, you could win 2 VIP passes to the Festival of Disruption! ENTER: https://t.co/klfV77FNs8 https://t.c…" +09/15/2016,Comedians,@MelBrooks,Want to see me at the Festival of Disruption? Win 2 VIP passes HERE: https://t.co/yC5kKOCb7r https://t.co/vFZJF1bgN8 +09/08/2016,Comedians,@MelBrooks,RT @nerdist: #YoungFrankenstein will return to theaters for one night! https://t.co/sf7YBs7z0Y https://t.co/wx9CuAz9Oi +09/08/2016,Comedians,@MelBrooks,"RT @PasteMagazine: ""Young Frankenstein"" returning to 500+ theaters in October, with intro from @MelBrooks https://t.co/8hhNnYFbcN https://t…" +09/08/2016,Comedians,@MelBrooks,RT @good: .@MelBrooks talks to GOOD about the incredibly moving tribute he's planned for Gene Wilder. https://t.co/cO1Xlr7ikM https://t.co/… +09/01/2016,Comedians,@MelBrooks,https://t.co/AwlhYdWzWo +08/31/2016,Comedians,@MelBrooks,RT @FallonTonight: .@MelBrooks remembers meeting Gene Wilder for the first time... #FallonTonight https://t.co/fiU0X9zCrY +08/31/2016,Comedians,@MelBrooks,I'm on @FallonTonight tonight! https://t.co/IIxpMc8eIa +08/29/2016,Comedians,@MelBrooks,Gene Wilder-One of the truly great talents of our time. He blessed every film we did with his magic & he blessed me with his friendship. +08/27/2016,Comedians,@MelBrooks,RT @RadioCity: RT & Follow for chance to win tix to see @MelBrooks here at @RadioCity on Sept 1! Sweepstakes ends 8/30 5pm! #MBSWP https://… +08/27/2016,Comedians,@MelBrooks,"We lost Jack Riley this week. One of the brightest, sweetest actors I've ever worked with. I will miss him so much." +08/23/2016,Comedians,@MelBrooks,Mel Brooks Looks Back: ‘Blazing Saddles’ Could Never Get Made Today https://t.co/RlFA0BHO28 via @thedailybeast +08/19/2016,Comedians,@MelBrooks,RT @nerdist: The one and only @MelBrooks is on @leonardmaltin's Maltin on Movies podcast today: https://t.co/IEfj8PKeW0 🎧 https://t.co/EChp… +08/19/2016,Comedians,@MelBrooks,"RT @carlreiner: Sept 1st Mel Brooks will be at NY Radio City Music Hall to screeh Blazing Saddles, 4500 of 6000 seats were sold so hurry.if…" +08/17/2016,Comedians,@MelBrooks,"RT @RadioCity: The one & only @MelBrooks heads to @RadioCity for a very special night on Sept 1! What's your favorite work of his? +https://…" +08/05/2016,Comedians,@MelBrooks,David Huddleston was sublime in Blazing Saddles. He helped make all those Johnsons of Rock Ridge immortal. He was one of a kind. +07/23/2016,Comedians,@MelBrooks,RT @BDLpub: Missed a shirt? 50 more #YoungFrankenstein tshirts tomorrow 10am @hachetteus booth #1116 #SDCC2016. Preorder a book https://t.c… +07/23/2016,Comedians,@MelBrooks,RT @brooklynvegan: Mel Brooks talking about and screening 'Blazing Saddles' at Radio City Music Hall https://t.co/fvB16PBity https://t.co/S… +07/22/2016,Comedians,@MelBrooks,RT @OnePerfectShot: SPACEBALLS (1987) DoP: Nick McLean | Dir: Mel Brooks | https://t.co/OJmBoFs01Y https://t.co/cYy0X5Innh +07/22/2016,Comedians,@MelBrooks,RT @marisaschein: Powerful words @MelBrooks & the Borscht Belt See what remains of the area where he got his start 10/4 @CornellPress https… +07/20/2016,Comedians,@MelBrooks,"We'll miss Garry Marshall. So talented, so funny--a sweetheart of a guy." +07/14/2016,Comedians,@MelBrooks,Loved last @SHO_RayDonovan -Terry & Daryll did a terrific word for word version of the Sheriff's hilarious scene from BlazingSaddles. Bravo! +07/14/2016,Comedians,@MelBrooks,And thanks to @EW for the great exclusive on the 'Young Frankenstein' book - just look at those photos! https://t.co/Kez6Sqa7Yq +07/13/2016,Comedians,@MelBrooks,"This book is not alive, but it is now available for pre-order! https://t.co/dC2cVpZgeD #YoungFrankenstein https://t.co/ZP59FVbJmK" +06/30/2016,Comedians,@MelBrooks,Thank you to all my friends & fans for remembering me on my birthday. I promise to remember all of you when you turn 90. +06/23/2016,Comedians,@MelBrooks,"I’ll be appearing at David Lynch's @FestDisruption in LA. Presale today, code: DISRUPT >> https://t.co/GWGoLUhnWA https://t.co/AnS2uWy3aN" +06/22/2016,Comedians,@MelBrooks,"I apologize, Taran is right. I vaguely remember someone sticking their face into an otherwise lovely picture. https://t.co/zklPP6DYb0" +06/22/2016,Comedians,@MelBrooks,"RT @DAVID_LYNCH: Dear Twitter Friends, I'm curating the first-ever @FestOfDisruption. Tickets on sale Friday! https://t.co/OuQJocfGpo https…" +06/22/2016,Comedians,@MelBrooks,Friends? I've never seen this guy before in my life. https://t.co/Qi72L0Y52c +06/06/2016,Comedians,@MelBrooks,"Attention Milwaukee! ""Mel Brooks brings 'Blazing Saddles' to Riverside"" https://t.co/clri8oxtFw" +06/01/2016,Comedians,@MelBrooks,This is a truly incredible story about filmmaking. Thanks to @blakejharrisNYC & @HDTGM for asking me to tell it. https://t.co/ha1V6Z2zjt +05/26/2016,Comedians,@MelBrooks,So proud of my son @nickbrooks72 - SAM has its European market debut @Festival_Cannes! Congrats to the whole cast & crew at @SittingCatProd +05/25/2016,Comedians,@MelBrooks,https://t.co/oCcucE7rVN +05/23/2016,Comedians,@MelBrooks,"RT @JoelGHodgson: Met my idol, the amazing Mel Brooks this weekend, he said, ""I love your show with the movies and the robots"" #bliss https…" +05/19/2016,Comedians,@MelBrooks,"RT @RadioCity: Access presale tix NOW to @MelBrooks HERE on 9/1! Use code ""SOCIAL"" thru Thurs at 10PM: https://t.co/fx2NmNJlEs +https://t.co…" +05/17/2016,Comedians,@MelBrooks,RT @mollyeichel: Pretty excited I got to talk to @MelBrooks. Even more excited I got farts on the cover https://t.co/vfUq3LUImB https://t.c… +05/17/2016,Comedians,@MelBrooks,"I'm told there are a few seats left to see Blazing Saddles with me in Hartford, CT this Sunday - don't miss it! https://t.co/QTeBSCtlgb" +05/13/2016,Comedians,@MelBrooks,RT @Jeff_Delgado: This is a good boy. @MelBrooks #youngfrankenstein https://t.co/NxXKULUjRB +05/12/2016,Comedians,@MelBrooks,"RT @TheArtsInPhilly: If you want to LOL with @MelBrooks, check out Mel Brooks: Back in the Saddle Again at @KimmelCenter May 21! https://t.…" +04/19/2016,Comedians,@MelBrooks,Today is the 15th anniversary of the opening night for 'The Producers’ on Broadway https://t.co/Rdm0l9ixaY +04/08/2016,Comedians,@MelBrooks,If you happen to be within 100miles of Denver tomorrow night don’t miss this amazing symphonic tribute to my music! https://t.co/2OWRIXu1iv +04/07/2016,Comedians,@MelBrooks,My appearance on the @david_steinberg podcast is now available wherever it is that one gets a podcast https://t.co/D8JO2wsTH1 +03/24/2016,Comedians,@MelBrooks,I'm flattered but have to decline-- there is enough comedy in the current collection of candidates. https://t.co/RqYXWa1Iwv +03/21/2016,Comedians,@MelBrooks,"Thank you @Jeopardy for naming an entire category on tonight's show ""We Love Mel Brooks."" Good move, I like that guy. #jeopardy" +03/21/2016,Comedians,@MelBrooks,A short clip from a long chat w/ pal @david_steinberg that will be available for your listening pleasure tomorrow - https://t.co/b9JjgTjPZ3 +03/21/2016,Comedians,@MelBrooks,RT @Karaszewski: @MelBrooks gets the crowd to sing Happy 94th Birthday to @carlreiner on Saturday night https://t.co/7ltUqlIDyR +03/11/2016,Comedians,@MelBrooks,RT @hbonow: Gene Wilder and Cleavon Little star in @MelBrooks' Blazing Saddles. #streamingNOW: https://t.co/79Zl2flobF https://t.co/YymV88V… +02/19/2016,Comedians,@MelBrooks,RT @tocap: Come laugh with #MelBrooks AND #BlazingSaddles @tocap 3/19/16 Pre-sale code: BROOKS https://t.co/P1DQ1qAocd https://t.co/qctM9xU… +02/19/2016,Comedians,@MelBrooks,RT @SegerstromArts: Look who's getting back in the saddle. Mel Brooks comes to OC next month. https://t.co/OJG294XnT4 #Comedy https://t.co/… +01/28/2016,Comedians,@MelBrooks,The Raisinets weren't free you know. You both owe me $1.19. https://t.co/QBMS3rnYjw +01/19/2016,Comedians,@MelBrooks,ALERT! Those fools at Amazon are practically giving away my box sets today. https://t.co/UrMhadTLsc +01/15/2016,Comedians,@MelBrooks,Great interview in @CreativeScreen with my son @nickbrooks72 taking about his wonderful film SAM! https://t.co/xrJ9RRaem2 +01/15/2016,Comedians,@MelBrooks,"RT @CreativeScreen: Hollywood icon Mel Brooks discusses his writing process, what makes a good story, and love of Fred Astaire films. https…" +01/14/2016,Comedians,@MelBrooks,Pass me the maple syrup...because I look delicious! https://t.co/RLHhOG4tRS +01/12/2016,Comedians,@MelBrooks,"Bring home the #1 Monster Comedy of the Year, #HotelT2, now on Blu-ray, DVD&VOD. https://t.co/vWIqeOKcx5" +01/08/2016,Comedians,@MelBrooks,"RT @david_steinberg: Comedy Mavens Alert! My new podcast sampler for 2016. With @MelBrooks #MartinShort +@Realeugenelevy https://t.co/…" +12/22/2015,Comedians,@MelBrooks,If you have yet to hear me as Vampa Vlad in #HotelT2 it is now available on Digital https://t.co/RZJR2ldQ7T https://t.co/BFRum2D3oK +12/18/2015,Comedians,@MelBrooks,"RT @hbonow: Get your #StarWars fix instantly. +#Spaceballs is #NOWstreaming on @HBO NOW: https://t.co/78dG6fEfwY https://t.co/PJ2YNd1XCA" +12/18/2015,Comedians,@MelBrooks,It's downright scary when sci-if become reality. https://t.co/8ka8Fo9wbu +12/17/2015,Comedians,@MelBrooks,"RT @kencen: Just Announced! This Feb, the one-and-only @MelBrooks joins us for a hilarious conversation: https://t.co/qSgHnSTpyR https://t.…" +12/17/2015,Comedians,@MelBrooks,This very tall man deserves a nomination for his Oscar-worthy performance in the terrific film @EndOfTourMovie https://t.co/TM0si1HkZ6 +12/16/2015,Comedians,@MelBrooks,Bert Fields has done it again. His new book SHYLOCK: HIS OWN STORY is one of the best portraits of that immortal character you'll ever read. +12/11/2015,Comedians,@MelBrooks,Oh I just love them. They are beautiful! https://t.co/nnyIiehWkh +12/06/2015,Comedians,@MelBrooks,RT @newbevmidnights: Mel Brooks' BLAZING SADDLES screens midnight tonight @newbeverly! https://t.co/m26n7IFKDe +12/05/2015,Comedians,@MelBrooks,"RT @carlreiner: Mel's son Nicholas Brooks's film is tilted ""SAM"" & when U see it listed at a theater near you, go there & enjoy an original…" +11/26/2015,Comedians,@MelBrooks,"I was hoping Brancusi or Jacob Epstein would take a crack at Spaceballs, but failing them you did a GREAT job Blain. https://t.co/zZRQ5gygtu" +11/24/2015,Comedians,@MelBrooks,I vant you to enjoy this: https://t.co/vWIqeOKcx5 https://t.co/bSrYAtug7W +11/17/2015,Comedians,@MelBrooks,I don't think you'll be surprised to know that this one is my favorite https://t.co/2vbCGjn4Un @nerdist @burgermike https://t.co/OdI10QffsX +11/13/2015,Comedians,@MelBrooks,.@EricBAnthony @HollywoodBowl And to get to see Gary Beach back in his Tony winning role as Roger DeBris-what a lucky audience! +11/13/2015,Comedians,@MelBrooks,No thank you! It was so wonderful to see my show performed under the stars at The Hollywood Bowl -a great memory. https://t.co/2k1vje6tH4 +11/11/2015,Comedians,@MelBrooks,I had a good time w/ the filmmakers & crew of SAM at @AFIFEST last night. Great job @nickbrooks72 & @SittingCatProd https://t.co/ALRRbKhmSK +11/05/2015,Comedians,@MelBrooks,Incredibly proud that my son @nickbrooks72 's film SAM will be shown this Monday in LA at the @AFIFEST ! More info: https://t.co/DuAUq8AWpX +11/05/2015,Comedians,@MelBrooks,People get us confused all the time. https://t.co/Xd8E1SlE1V +11/04/2015,Comedians,@MelBrooks,"I love it! But is it just me, or does your Igor look a bit like a grinning Dark Helmet? https://t.co/X1keUAm39u" +11/02/2015,Comedians,@MelBrooks,RT @Jeff_Delgado: Barf!! He's his own best friend! @MelBrooks #fanart #spaceballs #bucklethis #schwartz #johncandy https://t.co/vfzvxiAIG2 +10/29/2015,Comedians,@MelBrooks,The likeness in uncanny! That's one handsome cat. https://t.co/ppzYtJ28JB +10/23/2015,Comedians,@MelBrooks,@Jeff_Delgado @Cloris_Leachman I love it! +10/23/2015,Comedians,@MelBrooks,RT @Jeff_Delgado: Here's my painting of the incredible @Cloris_Leachman from #youngfrankenstein! @MelBrooks #Hewasmyboyfriend #Blücher http… +10/14/2015,Comedians,@MelBrooks,RT @StrazCenter: …but you WILL need a ticket. We have a few left to see @MelBrooks & Blazing Saddles tonight! http://t.co/ru7HfxdpRg http:/… +10/14/2015,Comedians,@MelBrooks,"RT @carlreiner: Folks who live in Nashville, Tampa, Newark & Schenectady are lucky. U can see Mel Brooks strut his comic stuff in your fair…" +10/12/2015,Comedians,@MelBrooks,"RT @SonyPicturesIRL: ""These two smell funny."" +Head over to @entertainmentIE to see @MelBrooks as Vlad! #HotelT2 http://t.co/op7bnX3Nfj http…" +10/10/2015,Comedians,@MelBrooks,RT @TheWallisBH: What an amazing evening with @MelBrooks & @david_steinberg. And our season just started! http://t.co/dFtjXc6KHE http://t.c… +10/08/2015,Comedians,@MelBrooks,A pleasure! https://t.co/omNaWjazqY +10/07/2015,Comedians,@MelBrooks,About to take the stage with my pal @david_steinberg at @TheWallisBH ! http://t.co/ZI6fFonvA3 +10/02/2015,Comedians,@MelBrooks,"The mad men @Harumphwines didn’t get a big enough HARUMPH the first time, so they've released a second vintage! http://t.co/t7WnnvlU7F" +09/30/2015,Comedians,@MelBrooks,...still doesn't make a lick of sense. https://t.co/L9itsOe13y +09/29/2015,Comedians,@MelBrooks,RT @latelateshow: Sooooo @MelBrooks found a cat in our studio last night. http://t.co/56C2gcjbS2 http://t.co/oJ5DTozAA1 +09/25/2015,Comedians,@MelBrooks,Vampa's still got it! #HotelT2 is IN THEATERS NOW! http://t.co/oGmIJrw97n +09/25/2015,Comedians,@MelBrooks,RT @IanKarmel: Today I got to act with @MelBrooks in a sketch I wrote. Gonna be hard to top this one. http://t.co/ulvvHtyebW +09/25/2015,Comedians,@MelBrooks,RT @JKCorden: Tonight! @MelBrooks @NotoriousROD plus Thursday night FOODBALL! CBS 12.35! PS(there might be dancing) sssshhhh x http://t.co/… +09/25/2015,Comedians,@MelBrooks,RT @latelateshow: Tonight we're joined by @NotoriousROD and the legendary @MelBrooks! #LateLateShow +09/25/2015,Comedians,@MelBrooks,Discussing very important and immensely serious official police business with @JKCorden #LateLateShow http://t.co/hUF46wLD9S +09/24/2015,Comedians,@MelBrooks,"Attention Twitter! I'll be with @JKCorden on the @latelateshow tonight! Watch it, record it, and then maybe watch it again tomorrow." +09/22/2015,Comedians,@MelBrooks,I had a great time at the Emmys last night. Congrats to everyone at VEEP on the win! (I'm never doing this again.) http://t.co/K7c3haMbUk +09/21/2015,Comedians,@MelBrooks,I nearly didn't get the role--they said I was too short! https://t.co/AFOfoWoCRS +09/21/2015,Comedians,@MelBrooks,RT @NerdistDotCom: Look at @OfficialJLD taking a selfie with @MelBrooks. @VeepHBO wins Best Comedy Series! #Emmys http://t.co/CyfVYnFbLj +09/21/2015,Comedians,@MelBrooks,RT @TheEmmys: Congrats @VeepHBO on your #Emmy win & who wouldn’t get a selfie w @MelBrooks +09/20/2015,Comedians,@MelBrooks,"RT @THR: “The CIA called me asking about the Cone of Silence,” says Mel Brooks of #GetSmart #THR100 http://t.co/9kgQo0VCpC http://t.co/NB4f…" +09/20/2015,Comedians,@MelBrooks,"You are too sweet-- also I'd misplaced that crown years ago, so nice of you to return it. https://t.co/tOGInqSAsU" +09/18/2015,Comedians,@MelBrooks,The Emmys can't get enough of me! So I'm presenting again Sunday night. (This might turn into a steady job...) https://t.co/V135yp7sNW +09/18/2015,Comedians,@MelBrooks,"RT @david_steinberg: Can't believe I do this for a living. +Oct 6th W @MelBrooks #BeverlyHills http://t.co/NlPdEwsRyF" +09/17/2015,Comedians,@MelBrooks,RT @BLUEOXPEDITION: @MelBrooks our #Spaceballs #cosplay group with @MaxBrooksUKnews . Heck of a nice guy. One of my fav pics of all time! h… +09/14/2015,Comedians,@MelBrooks,RT @FilmsInFilms: Mel Brooks’ Young Frankenstein (1974) in Dennis Dugan’s Big Daddy (1999) http://t.co/fnv2faMkZL @MelBrooks http://t.co/yq… +09/13/2015,Comedians,@MelBrooks,"Well, I lost. BUT! BUT! I managed to get on stage when a show that was ABOUT me won and I accepted the award gratefully on their behalf." +09/12/2015,Comedians,@MelBrooks,So nice meeting you both--big fan! https://t.co/e3FricOm7Q +09/12/2015,Comedians,@MelBrooks,Backstage at The Creative Arts Emmys! I'm told you'll be able to watch it next Sat on FXX (good luck finding that...) http://t.co/MmvMhBcEYa +09/11/2015,Comedians,@MelBrooks,"RT @NYTArchives: Read the 1974 review of Mel Brook's ""Young Frankenstein"" http://t.co/8xbmlo1XBk http://t.co/sA3UBvduRD" +09/03/2015,Comedians,@MelBrooks,"I love it- and your name isn't bad either! ""@FartyMeldmanEyz: I see this HATCHback every now and then @MelBrooks http://t.co/xXSkTIpda5”" +09/03/2015,Comedians,@MelBrooks,"It's twue! ""@Variety: .@melbrooks and @catdeeley are among the presenters at this year's Creative Arts Emmys http://t.co/LBIG52UgUX”" +08/31/2015,Comedians,@MelBrooks,.@soer68 I can't read a word of it--But I love it! Can I get a translation? +08/31/2015,Comedians,@MelBrooks,"RT @soer68: @MelBrooks - a Swedish newpaper thinks the #Spaceballs spaceship, is the best craft to pass a black hole with... http://t.co/o…" +08/27/2015,Comedians,@MelBrooks,"RT @GregProops: Young Frankenstein +Greg Proops Film Club +Friday 8pm @Filmhouse +Tix: http://t.co/MTm0ggxpD7 http://t.co/5Y5tvwZU3o" +08/27/2015,Comedians,@MelBrooks,"RT @TheVinylSugar: Coming Soon: Shaun of the Dead, Young Frankenstein & Fast Times at Ridgemont High Vinyl Idolz! http://t.co/NfZBTufc6C ht…" +08/21/2015,Comedians,@MelBrooks,RT @DrGotts: 'Three cross-eyed men walk into a bar...' One of my favourite shoots this year @MelBrooks @carlreiner @iammrvandy http://t.co/… +08/18/2015,Comedians,@MelBrooks,RT @dinnerpartydnld: Don't miss our parade of famous folks (like @MelBrooks) telling a few eye-roll worthy jokes http://t.co/YKQ9kRKhaz htt… +08/17/2015,Comedians,@MelBrooks,. @denisleary thank you! bless you. I know at least 2 jews who loved Rescue Me. +08/11/2015,Comedians,@MelBrooks,@EzioGreggio I just left Rudy. He's on the floor crying his eyes out. +08/07/2015,Comedians,@MelBrooks,A delicious treat for you all from @ShoutFactory & @ShoutFactoryTV -Their doc on The 2000 Year Old Man is now online! http://t.co/HHk6LOe98h +08/06/2015,Comedians,@MelBrooks,". @EzioGreggio I'm screaming ""MI MANCHI!"" When are you coming to America? When can I see your new nose?" +08/06/2015,Comedians,@MelBrooks,"RT @EzioGreggio: @MelBrooks I'm screaming ""I love youuuuu !!!"" And you ? #MelBrooks #eziogreggio #isgoodtobetheking #bignoses #MelN1 http:/…" +08/06/2015,Comedians,@MelBrooks,"Dear Jon Stewart (@TheDailyShow), What are @carlreiner and I supposed to do every night now?! Well, I guess it's back to McHale's Navy." +07/31/2015,Comedians,@MelBrooks,"RT @carlreiner: Informed Mel of response & said he'd Run With The Bulls if the Bulls & their agent can assure him that he wont be licked, t…" +07/31/2015,Comedians,@MelBrooks,".@carlreiner Thanks for the invite. But when it comes to running with bulls, as Samuel Goldwyn once said, ""Include me out!""" +07/23/2015,Comedians,@MelBrooks,. @jonahray @kcrw Thanks for the plug! Your money will be in the usual place. +07/23/2015,Comedians,@MelBrooks,"RT @jonahray: Today on @kcrw's guest DJ PROJECT I played @MelBrooks, Minor Threat (@dischordrecords), @theweakerthans, @Sleater_Kinney & @f…" +07/20/2015,Comedians,@MelBrooks,".@elonmusk -Super Bowl ad idea: I pull up to a gas station in my new Tesla & say to the attendant, ""Fill'er Up!"" Cut to his mystified face." +07/20/2015,Comedians,@MelBrooks,Loving the tweets from my fans re: @TeslaMotors news. Can't wait to try ludicrous mode on my new FREE car (please send to home address) +07/18/2015,Comedians,@MelBrooks,"RT @MarleyJayAP: Electric car maker @TeslaMotors will add ""ludicrous mode"" acceleration to its Model S. They must like @MelBrooks. http://t…" +07/17/2015,Comedians,@MelBrooks,"Louis CK and I are nominated for Emmys in the same 3 categories. I'm voting for him, but I'd like everybody else to vote for me." +07/16/2015,Comedians,@MelBrooks,"So happy that MEL BROOKS LIVE AT THE GEFFEN is nominated for 2 Emmys! Thank you, thank you! Who knew so many voters had such good taste?" +07/16/2015,Comedians,@MelBrooks,"RT @TheComedians: Congratulations, @MelBrooks! The legend scored a 2015 Emmy Nomination for Outstanding Guest Actor in a Comedy Series. htt…" +07/14/2015,Comedians,@MelBrooks,"So sorry to hear that we lost the great Roger Rees. He may have been my evil Sheriff, but he was one of the sweetest guys to work with." +07/10/2015,Comedians,@MelBrooks,RT @OnePerfectShot: HISTORY OF THE WORLD: PART 1 (1981) Director of Photography: Woody Omens | Director: @MelBrooks http://t.co/RTOUiAox7w +07/02/2018,Comedians,@JimCarrey,Happy Canada Day to all my friends and family up north. I love you dearly! ;^D +07/01/2018,Comedians,@JimCarrey,God Bless You Mr Rosenstein for bravely standing up to the likes of Jim Jordan and Trey Gowdy who seek to destroy t… https://t.co/9nXj9QHloM +06/30/2018,Comedians,@JimCarrey,"If you’re wondering why Fake President @realDonaldTrump doesn’t care about the suffering of children at the border,… https://t.co/XutuMann3I" +06/30/2018,Comedians,@JimCarrey,Laurel or Yanny? Black and blue or white and gold? Alex Jones or Curly from The Three Stooges? NOTHING IS CERTAIN A… https://t.co/b3OoPgt08M +06/28/2018,Comedians,@JimCarrey,https://t.co/PiqCpzMGzG https://t.co/FkKfHeR8uN +06/28/2018,Comedians,@JimCarrey,Mammonite Fundamentalist: Release your 2000 child hostages!! https://t.co/5hl49FAkW2 +06/25/2018,Comedians,@JimCarrey,So I fixed the controversial TIME Magazine cover. This is much more appropriate. You’re welcome @time https://t.co/VMDtGTj5Zy +06/25/2018,Comedians,@JimCarrey,"Christianity, Trump style: “Jesus was a loser. A failed carpenter. He's a savior because he was crucified. I like p… https://t.co/G56reenjz3" +06/24/2018,Comedians,@JimCarrey,I wonder how many Fortune 500 companies (cc: @Apple @PepsiCo @CocaCola @JPMorgan @Citi @Walgreens @GeneralElectric… https://t.co/NYnXao9rwz +06/22/2018,Comedians,@JimCarrey,Who needs NATO when our leader has so much more in common with Russia and North Korea. REGISTER TO VOTE!… https://t.co/XT3mTCIeaB +06/22/2018,Comedians,@JimCarrey,Nothing comforts a federally-abducted refugee child like a photo op with a Slovenian model wearing a coat that says… https://t.co/7bJnucsk3M +06/20/2018,Comedians,@JimCarrey,"40% of the US doesn’t care if Trump deports ppl, kidnaps their babies and uses them as political hostages. The time… https://t.co/Sr0dqAhLmb" +06/19/2018,Comedians,@JimCarrey,"“If the Democrats would just stop the Mueller investigation, build a wall, declare me a God and pass a special law… https://t.co/X8DLs61x9C" +06/19/2018,Comedians,@JimCarrey,And as the sun set upon the White House all its windows danced with glowing eyes — and demons’ voices growled to th… https://t.co/pV7Xz9kgPo +06/17/2018,Comedians,@JimCarrey,"Sanctioned, embraced, normalized by POTUS, evil is pushing the boundaries. Sociopaths have risen to the top. This F… https://t.co/mseqoBJ1ur" +06/14/2018,Comedians,@JimCarrey,Oh how I urine for this all to be over! https://t.co/uzLULtNPLE +06/13/2018,Comedians,@JimCarrey,https://t.co/a5ntyOMdgz +06/12/2018,Comedians,@JimCarrey,Let’s Make A Deal: You’ll be a real world leader. I’ll sway the midterm elections. And together we will save the wo… https://t.co/Ar5ECS1ErQ +06/09/2018,Comedians,@JimCarrey,"Ahhh Milwaukee...where the beer flows like wine! I gotta admit, when I saw this Dumb and Dumber tribute from the Br… https://t.co/NFkPi6JTg7" +06/08/2018,Comedians,@JimCarrey,Congratulations to the Washington Capitals on their Stanley Cup victory! There’s only one thing that would have mad… https://t.co/M5cOymM67x +06/07/2018,Comedians,@JimCarrey,“Give us your huddled masses yearning to breathe free...and we will lock their children in cages with tin-foil blan… https://t.co/an7179pTda +06/05/2018,Comedians,@JimCarrey,"We sit by as children are slaughtered by the hundreds in their classrooms, taken from their refugee parents and loc… https://t.co/HS4lXOdKlY" +06/02/2018,Comedians,@JimCarrey,Don’t worry folks. Melania is fine. They’re probably just reminding her how to play well with others. https://t.co/qwlyNneX0P +06/01/2018,Comedians,@JimCarrey,"The WORST TERROR a child can experience is being taken from their parents. Would blonde, blue-eyed children ever be… https://t.co/0abX65DBz9" +05/31/2018,Comedians,@JimCarrey,"“Hey Dirty Donald, Tricky Dick Nixon, here. The dark one likes the cut of your jib. Taking people’s children away a… https://t.co/GIxXFwyVV7" +05/30/2018,Comedians,@JimCarrey,"The “wall” he intends to build is in our hearts. If you help him, you will wear his mark and your reward will be di… https://t.co/K9RQtY0qte" +05/29/2018,Comedians,@JimCarrey,NFL -- who exploits players for 3yrs then abandons them to a lifetime of pain -- sided with a draft-dodging racist… https://t.co/MsoUXjNbpY +05/27/2018,Comedians,@JimCarrey,"1500 innocent children ripped from their mothers’ arms at our border. Lost in Trump’s “system”. Give us your tired,… https://t.co/Fge6DB8tZc" +05/25/2018,Comedians,@JimCarrey,"A word to the castrato Adam Schiff and other Democrats: If you can’t win a PR war against this mobbed up, dirty, ro… https://t.co/oE9d00ccQ2" +05/22/2018,Comedians,@JimCarrey,Every morning Trump makes special breakfast sandwiches for House Republicans. Devin Nunes eagerly finishes first an… https://t.co/5DA0MsXmAJ +05/21/2018,Comedians,@JimCarrey,New Pledge for a Generation Betrayed. https://t.co/yNM27Eq1dg +05/19/2018,Comedians,@JimCarrey,"And the devil said, “Thanks a bunch Goldilocks. Enjoy the show in Santa Fe tomorrow. Someday, real soon, I’ll have… https://t.co/MBwFXzkRwF" +05/17/2018,Comedians,@JimCarrey,"Robin Williams’ mind was a quantum computer. He was the fastest gun in the West. I loved, respected and admired his… https://t.co/uZTtvBHaQJ" +05/16/2018,Comedians,@JimCarrey,"""Just take the damn meeting and pretend you’re disarming so we can keep this stooge in the White House for another… https://t.co/pzWFHEJ7kb" +05/13/2018,Comedians,@JimCarrey,Someday they’ll say we turned a blind eye to the suffering and slaughter of our own children and gave ourselves ove… https://t.co/kgtJHglBHJ +05/13/2018,Comedians,@JimCarrey,"In his desperate and neverending quest for significance, bleaching the bottom teeth just wasn’t a priority. Giulian… https://t.co/A4i0dzCzGu" +05/11/2018,Comedians,@JimCarrey,Psycho Mike-O ;^P https://t.co/HtarEIER3Y +05/09/2018,Comedians,@JimCarrey,Scam-a-gram ;^P https://t.co/9VqAzfW1fX +05/08/2018,Comedians,@JimCarrey,https://t.co/jQZgiimFYz +05/07/2018,Comedians,@JimCarrey,https://t.co/yREuxCAO46 +05/05/2018,Comedians,@JimCarrey,And let’s not kid ourselves... rotting donkeys stink too. @DNC https://t.co/h5VG6d8YO2 +05/05/2018,Comedians,@JimCarrey,Elephants take a long time to decompose... and the stench can be unbearable. @GOP https://t.co/g9nUN5lh66 +05/03/2018,Comedians,@JimCarrey,"Ukraine stops investigating Manafort (who helped destroy their democracy, and maybe ours) in exchange for a missile… https://t.co/xaoIiX3n2X" +05/02/2018,Comedians,@JimCarrey,Hippocratic oaf ;^P https://t.co/sbCsnTkdVH +04/28/2018,Comedians,@JimCarrey,"“Beware of false prophets, who come to you in sheep's clothing but inwardly are ravenous wolves” + +                 … https://t.co/A6jwbOmHC8" +04/26/2018,Comedians,@JimCarrey,"Later there would be wedgies and wet willies in the Rose Garden. Macron, it seemed, was willing to suffer anything… https://t.co/ZMN2OZC8PR" +04/25/2018,Comedians,@JimCarrey,“Take it. It’s in the contract.” https://t.co/6SecQz84ej +04/25/2018,Comedians,@JimCarrey,I never thought I’d see a tragedy like this in beautiful Toronto. There’s no way to cover your eyes anymore. My hea… https://t.co/bQCTn4BpF8 +04/23/2018,Comedians,@JimCarrey,The road to Trump’s White House was paved with good intentions. ;^\ https://t.co/YzOnLjJsxk +04/22/2018,Comedians,@JimCarrey,Will we end with a bang -- or a cacophony of cow farts? Happy McEarth Day!! ;^) https://t.co/fT6mp4IKpa +04/20/2018,Comedians,@JimCarrey,"Ghouliani: Finally, a face we can trust! 8^¥ https://t.co/IU1IG8sf0T" +04/19/2018,Comedians,@JimCarrey,Auto-moronic ASSphyxiation. ;^P https://t.co/VA6mmkjtk0 +04/18/2018,Comedians,@JimCarrey,"Is there a short bus to take ""all the best people"" to prison? ;^P https://t.co/ooHaGvZqFZ" +04/17/2018,Comedians,@JimCarrey,Sean Manatee: some endangered species aren't worth saving! ;^P #SeanHannity https://t.co/UL2wHRAzJb +04/14/2018,Comedians,@JimCarrey,"“Bombing Syria should interrupt the news cycle for a day or two, Mr. President. Moscow has agreed to act like they’… https://t.co/YNy4t5Mkly" +04/14/2018,Comedians,@JimCarrey,Another great one passes through the doorway. Milos Foreman. What a force. A lovely man. I’m glad we got to play to… https://t.co/1twEwZDF2P +04/13/2018,Comedians,@JimCarrey,Entropy: A Love Story https://t.co/lbddfQagz1 +04/12/2018,Comedians,@JimCarrey,BEWARE THE UNLOVED https://t.co/TvrZ6eobGk +04/11/2018,Comedians,@JimCarrey,"The great Mitzi Shore, owner of the famous Comedy Store, has passed away. No words can express the gratitude I have… https://t.co/5X8wZwAfOp" +04/11/2018,Comedians,@JimCarrey,Congress gets a visit from planet Zuckerberg. “I shall prevent any further election meddling by destroying the Eart… https://t.co/rvcq1WWkAJ +04/10/2018,Comedians,@JimCarrey,"🎵If you’re screwed +and you don’t know +where to go to +why don’t you bomb +where Assad sits +PUTIN ON THE RITZ. 🎶 https://t.co/nEVtWS7oFV" +04/08/2018,Comedians,@JimCarrey,"Liar, liar, evidence on fire! https://t.co/eAby9qqFmW" +04/05/2018,Comedians,@JimCarrey,I looked on Trivago. The cheapest room in Washington is a youth hostel with bunkbeds at $81 a night. The $50 room S… https://t.co/OdUXQUPM5B +04/04/2018,Comedians,@JimCarrey,MLK. The Mountaintop. https://t.co/fzax8L7izE +04/03/2018,Comedians,@JimCarrey,"If u believe wrestling is real u may even believe Fox news, Info Wars and the robotic drones on Sinclair Broadcasti… https://t.co/7zuImOfQm2" +04/02/2018,Comedians,@JimCarrey,"Coming soon! +'National Security Adviser 2: Armageddon Boogaloo' https://t.co/29XgY9WV28" +04/01/2018,Comedians,@JimCarrey,Have A Happy New You ;^) https://t.co/Y46OvEhDvA +03/30/2018,Comedians,@JimCarrey,The story of Jesus is a perfect example of the journey toward salvation through honesty and courage in the face of… https://t.co/vgfLWQ5kwF +03/30/2018,Comedians,@JimCarrey,My soul is not contained within the limits of my body. My body is contained within the limitlessness of my soul. https://t.co/6mvatrfpSo +03/29/2018,Comedians,@JimCarrey,"Dear Smithsonian National Portrait Gallery @NPG, I know it’s early but I’d like to submit this as the official port… https://t.co/CtsLPk6Zn7" +03/28/2018,Comedians,@JimCarrey,They're saying the NRA took Russian money to support the Republican party in the last election. Maybe that's why Tr… https://t.co/ACV3u6nnsJ +03/28/2018,Comedians,@JimCarrey,#teamelephant https://t.co/L8sATd4FaK +03/27/2018,Comedians,@JimCarrey,Did anyone watch 60 minutes last night? Hell of a piece about a poor kid from Greece named Giannis Antetokounmpo wh… https://t.co/ktONsMc9uo +03/24/2018,Comedians,@JimCarrey,Today our nation's youth are demanding their basic human right to go to school without dying in the name of greed.… https://t.co/2FumdiXc1n +03/23/2018,Comedians,@JimCarrey,Fifty Shades of Decay https://t.co/aurfm22ru6 +03/22/2018,Comedians,@JimCarrey,Self-Unmade Man. https://t.co/jxNWfUsrTn +03/21/2018,Comedians,@JimCarrey,Lawyer and lucky charm Joe diGenovia hopes to put Dirty Donald's troubles in the rearview mirror. But the objects i… https://t.co/MZggu20CKb +03/20/2018,Comedians,@JimCarrey,Who are you sharing your life with? #regulatefacebook https://t.co/r7B7Ajkt0V +03/19/2018,Comedians,@JimCarrey,"If you liked my last cartoon you may also enjoy... + +""THE WICKED WITCH OF THE WEST WING AND PUTIN’S FLYING MONKEYS“ https://t.co/slBG7j1s8d" +03/17/2018,Comedians,@JimCarrey,This is the portrait of a so-called Christian whose only purpose in life is to lie for the wicked. Monstrous! https://t.co/MeYLTy1pqb +03/16/2018,Comedians,@JimCarrey,MSNBC does great work but they are acting irresponsibly by constantly going on about Mueller crossing Trump’s ridic… https://t.co/ghVK2pxyzu +03/14/2018,Comedians,@JimCarrey,"Cheers to you Stephen Hawking, the greatest mental athlete of our time. You are all that is! See you around, buddy!… https://t.co/mP7vBlnerC" +03/07/2018,Comedians,@JimCarrey,https://t.co/AOWrqRlBQl +03/06/2018,Comedians,@JimCarrey,https://t.co/R2JGNq1VDR +03/05/2018,Comedians,@JimCarrey,https://t.co/3t8rvxcZWU +03/04/2018,Comedians,@JimCarrey,https://t.co/IzqnypnSFT +03/03/2018,Comedians,@JimCarrey,https://t.co/wAt17RTXBE +03/02/2018,Comedians,@JimCarrey,https://t.co/bXjq38lsGw +03/01/2018,Comedians,@JimCarrey,https://t.co/iuKOBBbesS +02/28/2018,Comedians,@JimCarrey,https://t.co/3faYLZqGJk +02/27/2018,Comedians,@JimCarrey,https://t.co/YIioI2BoZL +02/26/2018,Comedians,@JimCarrey,I'll be fading into the everything for a while. See ya soon. https://t.co/dq6kMllTOr +02/25/2018,Comedians,@JimCarrey,"Oh say, can't you see?! https://t.co/SFAgo4MkgS" +02/24/2018,Comedians,@JimCarrey,Rubio‘s agenda is clear. Keep taking millions from the NRA and wash the blood of innocent children off his hands. A… https://t.co/RKTbEIaDNF +02/24/2018,Comedians,@JimCarrey,Rick Gates pleads GUILTY to CONSPIRACY AGAINST THE UNITED STATES. It’s real! The Trump campaign was CRIMINAL! https://t.co/Hws33Natuz +02/23/2018,Comedians,@JimCarrey,Great news! The President's answer to school shootings is to arm the glee club! ;^P https://t.co/spSnwTo4Hz +02/21/2018,Comedians,@JimCarrey,Some super genius on YouTube is saying I’m a member of the Illuminati. I guess that’s a weird kind of compliment. C… https://t.co/Ki4uAnXC18 +02/19/2018,Comedians,@JimCarrey,"It’s President's Day and Chief Little Hands has been busy tweeting from his golf resort, a chip shot away from the… https://t.co/hYdakmEH8U" +02/15/2018,Comedians,@JimCarrey,Pro-life?! https://t.co/4o5LKF9fvq +02/11/2018,Comedians,@JimCarrey,All who enter his crooked carnival with integrity are doomed to leave without it. General Kelly has been trampled b… https://t.co/H0eJns9Gx6 +02/10/2018,Comedians,@JimCarrey,"Can we continue to rely on the remains of dead animals for food or fuel? Are Big Oil, Coal and Cattle ancient dinos… https://t.co/Sjobbflirh" +02/09/2018,Comedians,@JimCarrey,"It should no longer be a surprise to people that Caveman Trump would hire a man like Porter, who’s accused of beati… https://t.co/Kb9wKMqqUu" +02/06/2018,Comedians,@JimCarrey,I’m dumping my @facebook stock and deleting my page because @facebook profited from Russian interference in our ele… https://t.co/ts3ZEElBD3 +02/05/2018,Comedians,@JimCarrey,Tone deaf Paul Ryan brags that his tax bill is going to make low income voters an extra $1.50 a week! That’s almost… https://t.co/XlagyATIPY +02/05/2018,Comedians,@JimCarrey,"That was one of the greatest Superbowls ever. David slew Goliath, but Goliath has nothing to be ashamed of. Brady i… https://t.co/8qfCWXMsls" +02/04/2018,Comedians,@JimCarrey,"I’ll have my hand on my heart during the anthem today, out of RESPECT for the IDEALS this GREAT NATION is supposed… https://t.co/s1icmt8p5i" +02/03/2018,Comedians,@JimCarrey,“White House delivery boy; can I take your order?!” ;^P https://t.co/PmNeHEIu3j +02/01/2018,Comedians,@JimCarrey,@rustyrockets The word relationship denotes duality - there are no two things. So it should be said that matter IS… https://t.co/2jXQzHmCgY +01/31/2018,Comedians,@JimCarrey,Another RAT leaps from the sinking ship. Swim Willard! SWIM! #TreyGowdy https://t.co/erfuVagGyo +01/31/2018,Comedians,@JimCarrey,“...and the blind shall see and the lame shall walk and the cheats shall inherit the earth!” #StateOfTheUnion https://t.co/BYuzgzLtZF +01/31/2018,Comedians,@JimCarrey,“It’s my party and I’ll cry if I want to!” #StateOfTheUnion https://t.co/5VDr66pbBo +01/30/2018,Comedians,@JimCarrey,STATE OF THE UNION https://t.co/PotdNCvYCX +01/30/2018,Comedians,@JimCarrey,Here’s your secret memo Comrade Nunes. The GOP and Dirty Donald are now a treasonous criminal syndicate; bent on mu… https://t.co/00PYa6K4HH +01/25/2018,Comedians,@JimCarrey,The demon is strong! Exorcism is America’s only option! https://t.co/N1keZNU2nn +01/24/2018,Comedians,@JimCarrey,11 school shootings in 24 days. The new Norm! https://t.co/XHnXqOmTQu +01/18/2018,Comedians,@JimCarrey,For my birthday I want for all of us to move through these difficult times together with grace and honor...and some… https://t.co/MdlZGyqpx7 +01/16/2018,Comedians,@JimCarrey,"Happy MLK day. At a time when hateful state-sanctioned racism is trying to reassert itself, I am thankful for the i… https://t.co/ALolXJPYXn" +01/15/2018,Comedians,@JimCarrey,"Speaking of laundering operations... Dear Mr. Mueller, please remove this unsightly stain from our flag before ther… https://t.co/vGQBvb3UiB" +01/13/2018,Comedians,@JimCarrey,"I woke up this morning in Hawaii with ten minutes to live. It was a false alarm, but a real psychic warning. If we… https://t.co/GuqRCIALgG" +01/13/2018,Comedians,@JimCarrey,The only ‘Sh*%hole’ Trump should worry about is the one under his nose from which he is constantly defecating.… https://t.co/YWF28BHHeD +01/13/2018,Comedians,@JimCarrey,"@iamcardib and @BrunoMars Great song, beautiful memories. Really gave me a kick. Spank you kindly! ;^) + +https://t.co/BCAg6KUaEl" +12/04/2017,Comedians,@JimCarrey,"A 10yr old Canadian boy sends a letter to Carol Burnett asking to be on her TV show and somehow, 45 years later, it… https://t.co/riwut9DVzp" +12/02/2017,Comedians,@JimCarrey,The Trump administration has become the new Donner party. Can’t wait to find out who’s for dinner. ?;^d https://t.co/l26tOEUOeS +11/29/2017,Comedians,@JimCarrey,"The GOP and WH have become sinister conclaves of souless traitors, liars and thieves - a gangrene we must remove so… https://t.co/5h3vrO1WAz" +11/28/2017,Comedians,@JimCarrey,"🎶Oh Susanna, don’t you vote for me, I’m a creep from Alabama with your daughter on my knee!🎵 https://t.co/nYOoTl5l9q" +11/19/2017,Comedians,@JimCarrey,"Tricky Mick, always making sure the devil is in the details. }8^¥ #KillTheBill https://t.co/eFslJCetRn" +11/12/2017,Comedians,@JimCarrey,"They bailed him out, set him up and made him their stooge. With Trump in the WH, Putin may win the 3rd World War wi… https://t.co/gescegeOz6" +11/11/2017,Comedians,@JimCarrey,1968 they backed the enemy. 2016 they put their stooge in the WH. Benedict Trump and his Russian pimp in Vietnam on… https://t.co/yvFcyQw8Ls +11/10/2017,Comedians,@JimCarrey,"I don’t know yet if Roy Moore is guilty of pedophilia, but these allegations along w/ his religious extremism and i… https://t.co/khlO2UqvX4" +11/10/2017,Comedians,@JimCarrey,"Alabama GOP, if u can’t vote 4 Doug Jones at least don’t vote for an alleged pedophile. Do the decent thing and jus… https://t.co/bMHWZQsw8c" +11/10/2017,Comedians,@JimCarrey,"I’m Steve Bannon and I endorse Roy Moore for US Senate.He stands accused of molesting a 14yr old girl,but at least… https://t.co/4QkU9msMFX" +11/03/2017,Comedians,@JimCarrey,Trump is the fear of utter worthlessness hiding in arrogance and brutality. #bewaretheunloved https://t.co/X2or7MuEEK +11/01/2017,Comedians,@JimCarrey,"“Fools! It is the sugary treats through which I will possess your child. Happy Halloween! Muahahahaha!!!” +}8^¥ https://t.co/ES4vZgLrEx" +10/21/2017,Comedians,@JimCarrey,"...and if u said I was nowhere in this picture, you would also be correct. This is a msg rising out of nothing and… https://t.co/X4iXD2IW1i" +10/21/2017,Comedians,@JimCarrey,Thanks MOMA for screening Jim+Andy (Nov 17 on @netflix.) Can u see where I am in this picture? If you said everywhe… https://t.co/uzt400cNAW +09/19/2017,Comedians,@JimCarrey,"While another storm heads r way, craven republican sock puppets in service of shameless greed, try AGAIN 2 ravage h… https://t.co/gUqTcrO3WG" +09/06/2017,Comedians,@JimCarrey,"This dream is so good, I'm tempted to keep sleeping. ;^> https://t.co/cxy9YFSetB" +08/27/2017,Comedians,@JimCarrey,Ain't it great how violence can still unite us all? #enjoythefight #humansarestupid ;^P https://t.co/plLP0BFWZD +08/23/2017,Comedians,@JimCarrey,You never looked better Charlottesville! ;^) https://t.co/lCBZ0hsGmD +08/21/2017,Comedians,@JimCarrey,"While watching the eclipse, I lifted my coffee cup and this is what I saw. Coincidence? I think not! Enjoy the toge… https://t.co/2Ux10bDQUk" +08/20/2017,Comedians,@JimCarrey,"That fool was no dummy. Jerry Lewis was an undeniable genius an unfathomable blessing, comedy's absolute! I am beca… https://t.co/dtERXbMqdo" +08/18/2017,Comedians,@JimCarrey,https://t.co/HgfsxWZ99C +08/16/2017,Comedians,@JimCarrey,WHAT WILL IT TAKE for the GOP to throw this madman overboard? HOW LOW MUST WE SINK before REPS become patriotic? 8^Q https://t.co/9EJVYD5qOP +08/15/2017,Comedians,@JimCarrey,"Welcome to the last gasp of toxic white insecurity. Woe to them who blame other races for their laziness, and lack… https://t.co/W6pmT80ckD" +08/13/2017,Comedians,@JimCarrey,"When evil is not strongly denounced by the state, this is where it leads, ""Mr. President""! ;^{ https://t.co/jPbcFAwfq7" +08/12/2017,Comedians,@JimCarrey,"Season finale of I'm Dying Up Here this Sunday! What a magical time it's been. My thanks to cast and crew, a stella… https://t.co/A5iPmRlT20" +08/08/2017,Comedians,@JimCarrey,Thx 4 ur kind words @KingJames.I'd be honored 2 hang with u any time.Can u imagine 2 King James' in the same room?Sss'make it happen! ?;^•} +08/03/2017,Comedians,@JimCarrey,Tonight in West Virginia @realDonaldTrump is expected to EAT A BABY on stage to the delight of his zombie base.… https://t.co/9wBexEFs4q +07/29/2017,Comedians,@JimCarrey,Spanks 2 @justforlaughs for hosting me and cast of @SHO_DyingUpHere. Always great 2 be around my twisted comedy kin. https://t.co/owXLdOcoq2 +07/23/2017,Comedians,@JimCarrey,I have no idea where this picture came from but I fully endorse this artistic reappropriation of my 1996 film The C… https://t.co/tGgxu1GHOD +07/17/2017,Comedians,@JimCarrey,Much love sweet Martin. You were one of the greats. Enjoy forever. ;^) https://t.co/IMAPeJXPCe +07/05/2017,Comedians,@JimCarrey,There is something wrong with our environment. Governors have begun beaching themselves! ?;^P https://t.co/BXhYIQ42Jy +06/26/2017,Comedians,@JimCarrey,"EAST COAST! You have 5 minutes until @SHO_DyingUpHere +WEST COAST! You still have 3 hours to get plastic surgery! HU… https://t.co/usmxnTRFc4" +06/23/2017,Comedians,@JimCarrey,"I don't mean to toot my own horn, but HONK watch @SHO_DyingUpHere Sunday at HONK 10pm. It's ""Hollywood brotha!"" ;^P https://t.co/F21YXuRjbe" +06/11/2017,Comedians,@JimCarrey,When I was a kid POW BLAM Adam West was Batman! With his pal Robin and his tongue planted firmly in his cheek he brought me so much joy. ;^} +06/02/2017,Comedians,@JimCarrey,Let's just get our priorities straight - this whole Kathy Griffin thing is covfefe. ;^P +06/01/2017,Comedians,@JimCarrey,So proud of @sho_dyinguphere -a new series I exec produced for @Showtime THIS Sun 10pm. Watch how we put the ‘fun'… https://t.co/j4qWXICIWA +05/31/2017,Comedians,@JimCarrey,@Eminem ?B^] https://t.co/r9yfOLkbvW +05/21/2017,Comedians,@JimCarrey,This is the guitar that Chris Cornell and Soundgarden gave to me the night we did SNL together. A very special man. https://t.co/waPpDdOWvx +05/09/2017,Comedians,@JimCarrey,TRUMP FIRES COMEY! ABSOLUTE OBSTRUCTION OF JUSTICE! ABSOLUTE EVIL! ?8^¥ +04/27/2017,Comedians,@JimCarrey,RT NEWS FLASH!TRUMP NEVER CARED ABOUT GOVERNING! He sees the world as his piñata and the presidency as a big stick!… https://t.co/O4HGCungFp +04/21/2017,Comedians,@JimCarrey,;^) https://t.co/C6yrCIiQFl +04/15/2017,Comedians,@JimCarrey,Happy Easter or Passover or whatever reason you can find to feel warm and fuzzy. =(:•} https://t.co/Q5f0KT0yhq +04/06/2017,Comedians,@JimCarrey,"Don once begged me for a couple of bucks then told me to twist myself into a pretzel. Ego slayer! Comic Everest! Spank you, Mr Rickles. ;^)" +04/04/2017,Comedians,@JimCarrey,MORE MORE MORE MORE! A mantra to the end of the world.  3^( https://t.co/dh5hXe69Ux +04/01/2017,Comedians,@JimCarrey,"Give me your tired, your poor, your huddled masses...APRIL FOOOOLS!!! ;^P +('No Vacancy,' acrylic and neon on canva… https://t.co/AIn45HKOdi" +03/31/2017,Comedians,@JimCarrey,"Every citizen under 45, watch ""All the President's Men,"" a genius film about the most corrupt White House in US his… https://t.co/Ig5t0kObaN" +03/31/2017,Comedians,@JimCarrey,"""I'm gonna make great deals. GREAT GREAT DEALS!"" ();^O https://t.co/31vvhDWUj3" +03/30/2017,Comedians,@JimCarrey,I'm no lifeguard but I know a drowning man when I see one. ;^P https://t.co/W5kGhD8uIO +03/29/2017,Comedians,@JimCarrey,Ugly American Bill O'Reilly and his enablers at the Fox misinformation factory have again shown their true colors -… https://t.co/dUBLV6RZky +03/28/2017,Comedians,@JimCarrey,The Trump Presidency is a botched Russian black op and these people are NOT helping. ;^P https://t.co/hkvd01iXbr +03/27/2017,Comedians,@JimCarrey,The rotting food in @PressSec Sean Spicer's teeth is distracting and makes it hard to absorb today's WH misinformat… https://t.co/8OA7yj4y8j +03/24/2017,Comedians,@JimCarrey,;^P https://t.co/OKmF3aAJ3U +03/21/2017,Comedians,@JimCarrey,A President under FBI investigation for treason should not get a Supreme Court appointment. ;^| https://t.co/b1f05HdL0W +01/25/2017,Comedians,@JimCarrey,"Voter fraud is misdirection from what's really happening in Trump's +America. Intimidation, repression and intoleran… https://t.co/wK4CItcar5" +01/24/2017,Comedians,@JimCarrey,@netnole I think you need a hug Mikey. ;^P +01/23/2017,Comedians,@JimCarrey,"Dear @BarackObama - Already, I miss your intelligence, integrity, elegance and humor. #RESPECT ;^} https://t.co/XBSM5v3Oqc" +11/16/2016,Comedians,@JimCarrey,I'm returning to love. Something I will always control. ;^P https://t.co/Qk71P9dOcn +11/15/2016,Comedians,@JimCarrey,"Don't worry. What we are is bigger than our differences, bigger than our president, bigger than our red, white and… https://t.co/FdKzquObg6" +11/09/2016,Comedians,@JimCarrey,"Don't worry folks as long as the Sun is revolving around the Earth, we'll be fine! ;^P https://t.co/TzJufTIJHm" +11/08/2016,Comedians,@JimCarrey,"Hey check out my new gig as cartoonist at @Awl and be sure to vote. ;^P +https://t.co/PTGYIAMLAk" +11/07/2016,Comedians,@JimCarrey,Vote for goodness' sake! ;^) https://t.co/WJmiY3KFjZ +11/02/2016,Comedians,@JimCarrey,"Hi @Adele. It's Jim from the other side. Weird coincidence, I dressed up as one of your roadies for Halloween. I ab… https://t.co/lTjqcrd8Uu" +10/26/2016,Comedians,@JimCarrey,"Vote for @HillaryClinton this election day or no pussy will be safe. ₍˄·͈༝·͈˄₎◞ +#StrongerTogether #HillaryClinton… https://t.co/cHPayblJfd" +10/20/2016,Comedians,@JimCarrey,"When you stand solidly with those who bring love and goodwill to the world,every challenge makes you stronger,deepe… https://t.co/NtX9oTOrIF" +08/29/2016,Comedians,@JimCarrey,Gene Wilder was one of the funniest and sweetest energies ever to take a human form. If there's a heaven he has a Golden Ticket. ;^) +07/15/2016,Comedians,@JimCarrey,Remember this old song? 8^} https://t.co/a8DlWzD8nj +07/14/2016,Comedians,@JimCarrey,Good news. ;^D https://t.co/PFNznuQduG +04/14/2016,Comedians,@JimCarrey,Save our vaccines! Save our kids! Let the truth be known! https://t.co/zM9jupHmkF https://t.co/8zphbim3xV https://t.co/24Ejz5XZNH +04/11/2016,Comedians,@JimCarrey,"I love LA and all the kooks who live here. If u read otherwise, it's just the mischief of those who weren't their parents' 1st priority.?;^P" +04/07/2016,Comedians,@JimCarrey,I saw #Hamilton last night on Broadway. An absolute work of genius. Restores your faith in humanity. The kingdom of heaven is among us. ;^D +03/30/2016,Comedians,@JimCarrey,"THEY’RE HEEEEEEEEERE!!! +#Paranormalsnacktivity =8^O https://t.co/QemZY99BB5" +03/26/2016,Comedians,@JimCarrey,This morning for breakfast I had 'Love' disguised as quinoa with almond milk and coconunt sugar. #YUMMYYYYY!!! ?;^d https://t.co/ZGKr0tijkg +03/18/2016,Comedians,@JimCarrey,"HEY DUMMIES, LEAVE ME OUT OF IT! ;^P #Americonundrum https://t.co/nI7Amohz5c" +03/10/2016,Comedians,@JimCarrey,"Thank you @KimKardashian for showing us where you poop, and what you poop with. You must have very big poops! ;^•" +03/07/2016,Comedians,@JimCarrey,Jeez... I take a few months off and the country turns into a zoo where the main attraction is an ape who flings his sh*t at people. \};^•) +08/31/2015,Comedians,@JimCarrey,This is who I really am and that's my body in the middle. ;^) http://t.co/35qO6b1fWD +08/20/2015,Comedians,@JimCarrey,Nice move @RealHughJackman Now watch me make a meal out of your biggest role. ;^> http://t.co/GUfHB2RR4L +08/12/2015,Comedians,@JimCarrey,Do flowers have feelings? ;^\ http://t.co/dyujcu3FPH +08/11/2015,Comedians,@JimCarrey,Cellphone picture of wall phone. Feel me? B^\ http://t.co/aXycanGOnt +07/02/2018,Comedians,@KevinHart4real,Major thank you to my amazing fans in Phoneix for the dope ass B Day card. They all signed a card for me before sit… https://t.co/w0ASze6RdA +07/01/2018,Comedians,@KevinHart4real,Thank you Salt Lake City.....I love & appreciate ya!!!! #irresponsibletour #comedicrockstarshit #makingtheworldlaugh https://t.co/57HlTIHFKa +07/01/2018,Comedians,@KevinHart4real,"The energy that I have been witnessing from my fans on my ""Irresponsible Tour"" has honestly been mind blowing. I ju… https://t.co/iouD93k0cn" +07/01/2018,Comedians,@KevinHart4real,I genuinely love & appreciate my fans!!!! All I can say is WOOOOOOOW!!!! This is definitely my best work to date!!!… https://t.co/jGN1UgIutU +07/01/2018,Comedians,@KevinHart4real,It's Showtime Salt Lake City #irresponsibletour #LilSwag #comedicrockstarshit https://t.co/7n5V8YCc0n +06/30/2018,Comedians,@KevinHart4real,I just touched down Salt Lake City....Tonight is going to be EPIC. #irresponsibletour #comedicrockstarshit… https://t.co/UsLAf7DbOA +06/30/2018,Comedians,@KevinHart4real,Let's gooooooooo Salt Lake City. I'm on my way damn it!!!!! It's going down tonight people....Get your tickets to m… https://t.co/BaWwSBdeTM +06/30/2018,Comedians,@KevinHart4real,Facial expressions are everything damn it😂😂😂😂 #comedicrockstarshit #irresponsibletour #DopePic https://t.co/qU8gHYoxA3 +06/30/2018,Comedians,@KevinHart4real,Great music @Drake ....Proud of you man. Congrats on another amazing album!!!!! https://t.co/Ac3j79WshE +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/pOl38CkwlY +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/PPgpi1UKx7 +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/o6bFdhvlg9 +06/30/2018,Comedians,@KevinHart4real,RT @ARGreen_Sr: Kevin Hart’s Irresponsible Tour 2018 | Denver — epic @KevinHart4real https://t.co/Z0BfXqtz6G +06/29/2018,Comedians,@KevinHart4real,Caption this 😂😂😂😂😂 #irresponsibleTour #ComedicRockStarShit https://t.co/EAeh1wHLmk +06/29/2018,Comedians,@KevinHart4real,Morning work #HustleHart #MoveWithHart #Progression https://t.co/DjHGGF8HHu +06/29/2018,Comedians,@KevinHart4real,It's a celebration bitches 🍹🍹🥃🥃🥃🔥🔥🔥🔥🔥🍻🍻🍻🍻🍻🤯🤯🤯🤯🤯🤯🕺🏾🕺🏾🕺🏾🕺🏾🕺🏾 https://t.co/sg5M0UFXgd +06/29/2018,Comedians,@KevinHart4real,#TBT Priceless moments #Harts https://t.co/cowWwKilXN +06/28/2018,Comedians,@KevinHart4real,My OFFICIAL bday party and #IrresponsibleTour after party is going down Friday July 6th at @draislv with a special… https://t.co/xp7MNYKiRH +06/28/2018,Comedians,@KevinHart4real,#TBT This was one of my favorite episodes from RHOH....I tried to replace my friends with what I thought were bette… https://t.co/gq16zMHbiq +06/27/2018,Comedians,@KevinHart4real,#WCW #Harts https://t.co/DmHo6B8coX +06/27/2018,Comedians,@KevinHart4real,NEW SERIES ALERT! What would happen if Hollywood (boulevard)'s not-so-favorite superheroes started turning up dead?… https://t.co/eMiaYR6eKy +06/25/2018,Comedians,@KevinHart4real,Major thank you to my ferrari family for getting my B Day gift to me in time. I appreciate ya thegoldenjew22 .....… https://t.co/uK33walBqc +06/25/2018,Comedians,@KevinHart4real,Stand Up Philadelphia.... #CityOfBrotherlyLove https://t.co/yWjV6zFb83 +06/25/2018,Comedians,@KevinHart4real,"RT @questlove: Illadelph @markellef & @kevinhart4real & @blackthought @questlove & liluzivert #BETawards #BlackExcellence. @ Los Angeles, C…" +06/25/2018,Comedians,@KevinHart4real,#LilSwag styled by @AshleyNorth https://t.co/EvsHpTusUY +06/25/2018,Comedians,@KevinHart4real,So happy & proud of my brother @MeekMill .....Great performance...Great message...STAND UP PHILADELPHIA!!!!! +06/25/2018,Comedians,@KevinHart4real,RT @cthagod: And best use of his platform tonight goes to Meek Mill. #BetAwards +06/25/2018,Comedians,@KevinHart4real,#dopepic ....Shot by kevinkwan327 https://t.co/IsIx5lyZ7L +06/24/2018,Comedians,@KevinHart4real,Sunday Funday with the family!!! Wishing u all a happy & blessed day. #Harts #LiveLoveLaugh #SundayFunday https://t.co/IFbyH2u0ds +06/24/2018,Comedians,@KevinHart4real,It's just different....The connection that I have with my fans while I'm on that stage is unbelievable....Thank you… https://t.co/4MQDhE5yDR +06/24/2018,Comedians,@KevinHart4real,#Brothers https://t.co/siV97nDHJX +06/24/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/8FLYQdzqvK +06/24/2018,Comedians,@KevinHart4real,"RT @2thisispablo: @KevinHart4real was amazing tonight!! +Definitely one of the best comedians #IrresponsibleTour" +06/24/2018,Comedians,@KevinHart4real,RT @AJenkins95: @KevinHart4real Haven’t laughed so hard in my life. My girlfriend literally peed herself. Well done 👏🏽 #IrresponsibleTour +06/24/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QZuwIpIqTD +06/24/2018,Comedians,@KevinHart4real,RT @Lovingmylife562: Went to @KevinHart4real #IrresponsibleTour in Irvine...omg it was hilarious...I literally cried from laughing so hard!… +06/24/2018,Comedians,@KevinHart4real,RT @Brandi_lynn87: @KevinHart4real was hilarious af tonight in Irvine. 🤣 #IrresponsibleTour #kevinhart +06/24/2018,Comedians,@KevinHart4real,It's Dravet Syndrome Awareness Day.....We love you so much Taylen. Watching our brother @spankhorton & sister mua_… https://t.co/RJYFm2yMme +06/23/2018,Comedians,@KevinHart4real,Let's gooooooooo Irvine Ca....Im headed your way damn it. Tonight's show will be a show to remember for ages people… https://t.co/fyihtGEfxu +06/23/2018,Comedians,@KevinHart4real,RT @pinksapphire84: So about last night... Got to see @KevinHart4real live! What an awesome show. He had me laughing the entire time. Thank… +06/23/2018,Comedians,@KevinHart4real,Hi...My name is Kevin Hart and I love making people laugh.... #irresponsibletour #comedicrockstarshit… https://t.co/eJ1bvTyeYa +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/bC2FUiktBG +06/23/2018,Comedians,@KevinHart4real,"RT @StevenAkabwayi: The show that had my hands up +I like the God given talent in you @KevinHart4real #irresponsibletour" +06/23/2018,Comedians,@KevinHart4real,"RT @planetneeese: Thanks for the laughs tonight, @KevinHart4real. New material was awesome!💯 #TheIrresponsibleTour https://t.co/WUcvbMqNE7" +06/23/2018,Comedians,@KevinHart4real,RT @SuperstarNini: Was “SO EXCITED!!!” To see @KevinHart4real tonight!!! Thanks for a great show!!!! +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/WdpwSZAz2E +06/23/2018,Comedians,@KevinHart4real,RT @QueenGruuuumpy: @KevinHart4real your show was worth walking up those hill in heels. #TheIrresponsibleTour #BucketListCheckOff ✅🤗💙 +06/23/2018,Comedians,@KevinHart4real,I appreciate you Concord Ca....Thank you for making tonight special. Love & laughter was definitely in the air. #IrresponsibleTour +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QsSZU2WyhM +06/23/2018,Comedians,@KevinHart4real,RT @keepitjaay: @KevinHart4real this show was unbelievable!!!!! 🔥🔥🔥🔥🔥 #TheIrresponsibleTour +06/23/2018,Comedians,@KevinHart4real,RT @Nickg_16: I’ve never laughed so much before until tonight! @KevinHart4real what a show! Dream come true to see you perform! #Irrespons… +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/LzoHGMGGO7 +06/23/2018,Comedians,@KevinHart4real,4 Nominations for this year's @teenchoicefox awards....WOOOOOOOW!!! Make sure y'all go to https://t.co/Juomy8fJUd a… https://t.co/Yom53O4dcm +06/22/2018,Comedians,@KevinHart4real,#Lilswag #comedicrockstarshit #irresponsibletour https://t.co/09S8Dv7dn4 +06/22/2018,Comedians,@KevinHart4real,Make sure y'all support my brother icecube by checking out season 2 of @thebig3. Im happy as hell for you man. I kn… https://t.co/Nb2CCWSP36 +06/22/2018,Comedians,@KevinHart4real,I'm well aware...Thats why I'm coming back. Can't wait to get back over there and deliver some more funny https://t.co/fzc9DRdrSZ +06/22/2018,Comedians,@KevinHart4real,Let's gooooooooo Singapore....Im coming your way damn it!!!!! #IrresponsibleTour https://t.co/4zkUex8T86 +06/22/2018,Comedians,@KevinHart4real,"Let's gooooooooo Concord Ca....My ""Irresponsible Tour"" is in your city tonight damn it!!!!! Get yo tickets ASAP!!!!! https://t.co/OGAE193OBr" +06/22/2018,Comedians,@KevinHart4real,Laugh damn it....It's good for your soul!!! Major thank you to Mountain View Ca....We had the shoreline amphitheatr… https://t.co/8e75eoTVyw +06/22/2018,Comedians,@KevinHart4real,RT @qu33nofhearts02: @kevinhart4real is too damn funny I was cracking up the whole time!! AMAZING SHOW!! #TheIrresponsibleTour +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/xExf1f3YVf +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/3sQsY3z4O0 +06/22/2018,Comedians,@KevinHart4real,RT @kavinm95: Kevin Hart’s #IrresponsibleTour was 🔥🔥🔥 well done @KevinHart4real https://t.co/lJuBIRBoai +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/Qj3Xr7UdpR +06/22/2018,Comedians,@KevinHart4real,RT @Official_tylerg: Best day EVER!!!!! MY DREAM CAME TRUE!!!! Mr. @KevinHart4real bought my PAINTING!!!!!!!!!!!! Thank you Mr. @SpankHorto… +06/22/2018,Comedians,@KevinHart4real,Hitting theaters everywhere sept 28th......Mark your calendars damn it!!!!! #ComedyAtItsBest #NightSchool https://t.co/TMfWoMLtNA +06/22/2018,Comedians,@KevinHart4real,Kevin Hart: Irresponsible Tour Live from San Jose CA https://t.co/FRYH1Qf5cu +06/19/2018,Comedians,@KevinHart4real,"Irvine CA I'm bringing my ""Irresponsible Tour"" your way this weekend damn it....Its going down this Saturday. GET Y… https://t.co/isz3QWnj9B" +06/19/2018,Comedians,@KevinHart4real,"RT @TKOCBS: Summer, @KevinHart4real, and a whole lot of competition. Are YOU ready? #TKO https://t.co/nssNKp8Naa" +06/19/2018,Comedians,@KevinHart4real,"Mountain View Ca I am heading your way this Thursday damn it....My ""Irresponsible Tour"" will be invading your city… https://t.co/eUWTfY2WfK" +06/17/2018,Comedians,@KevinHart4real,Happy Fathers Day! #Harts https://t.co/XdefVaQye2 +06/17/2018,Comedians,@KevinHart4real,"If you need to talk to a Dad, follow this link right now!!! https://t.co/bgR72m1jso 😂😂😂 #FathersDay" +06/17/2018,Comedians,@KevinHart4real,Happy Father's to me damn it 😂😂😂😂 #DaddySwag https://t.co/3resN1gvcH +06/17/2018,Comedians,@KevinHart4real,Happy Father's Day to my Dad & My brother.....I… https://t.co/RCQTt2yJGr +06/17/2018,Comedians,@KevinHart4real,"RT @livenationsg: WE 👏CAN'T 👏WAIT 👏 + +Here's the seat map for @KevinHart4real #IrresponsibleTour in Singapore! Save your spot now and access…" +06/17/2018,Comedians,@KevinHart4real,RT @kawalzz: man I haven’t laughed like that in ages. Thank you @KevinHart4real for that amazing and hilarious show!! Definitely worth all… +06/17/2018,Comedians,@KevinHart4real,RT @Kingkevin59: @KevinHart4real thank you for giving me value for my money still cracking up right now. You my man are a goat ...#Irrespon… +06/17/2018,Comedians,@KevinHart4real,RT @Amar_Ryan: @KevinHart4real put on an unreal show tonight! I don’t think I’ve laughed that hard in a while! #IrresponsibleTour https://t… +06/17/2018,Comedians,@KevinHart4real,"RT @aisling_laura: Laughed till I cried at @KevinHart4real tonight, nothing like a grest comedy gig 🙌🏻 #IrresponsibleTour" +06/17/2018,Comedians,@KevinHart4real,"RT @ryan_alcos: @KevinHart4real was friggen hilarious, had me crying! If you get the opportunity to go see him, I HIGHLY recommend!😂😂 https…" +06/17/2018,Comedians,@KevinHart4real,Thank you Vancouver.... #irresponsibletour… https://t.co/0cCwOK9Z32 +06/17/2018,Comedians,@KevinHart4real,"RT @ToniNehl: Seeing @KevinHart4real live was amazing, best way to end finals week! 12/10 highly recommend it #irresponsibletour" +06/16/2018,Comedians,@KevinHart4real,I'm a man of the people...I love my fans. I truly mean it when I say it!!!!! https://t.co/XaIWUzWnQe +06/16/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/NIvlBOLkxi +06/16/2018,Comedians,@KevinHart4real,Walking around and getting it with my brothers… https://t.co/ehAHQnqbbg +06/16/2018,Comedians,@KevinHart4real,I'm on my way Vancouver .....Let's make tonight special damn it....If u don't have your tickets get them Noooowwwww… https://t.co/oggpQ6U9D9 +06/16/2018,Comedians,@KevinHart4real,I can’t wait for sept. This moving is funny as hell damn it!!!! Get ready people #NightSchool https://t.co/Hp6lg46Mc8 +06/16/2018,Comedians,@KevinHart4real,Wow...I genuinely appreciate you. That touched my heart. I’m hoping that she can make Vancouver as well https://t.co/puRuJCKUvt +06/16/2018,Comedians,@KevinHart4real,RT @kobebechtel20: @KevinHart4real and the Plastic Cup Boyz put on an amazing show tonight! Unbelievable! #IrresponibleTour +06/16/2018,Comedians,@KevinHart4real,They did such a good handling that situation. https://t.co/XLrfp2L6Te +06/16/2018,Comedians,@KevinHart4real,I was just told that she is doing much better...God is good https://t.co/CDue5FlnJV +06/16/2018,Comedians,@KevinHart4real,RT @krisi_stull: Just saw the Irresponsible Tour here in Portland!! @KevinHart4real did an amazing job ❤️❤️ I was laughing the whole way th… +06/16/2018,Comedians,@KevinHart4real,RT @KassAss21: Im pretty sure that for the first time ever I experienced a face cramp from laughing so hard thanks to @KevinHart4real 😂🤦🏻‍♀️ +06/16/2018,Comedians,@KevinHart4real,RT @brianhatch93: @KevinHart4real Wife and i came down to portland from seattle to watch #irrisponsible tour for our 9 year anniversary. Y… +06/16/2018,Comedians,@KevinHart4real,RT @kevjksull: I was so exxcciitttteeeddd to see @KevinHart4real tonight on the #irresponsibletour ! My whole face hurts from laughing the… +06/16/2018,Comedians,@KevinHart4real,RT @sammyseno: Kevin Hart is a true showman. One of the best shows I have ever seen. @KevinHart4real thanks for coming to Portland! +06/16/2018,Comedians,@KevinHart4real,RT @MattSanders132: @KevinHart4real was unreal tonight in Portland. 🙌🏻 Just what wifey and I needed. +06/16/2018,Comedians,@KevinHart4real,Thank you Portland....Tonight was dope as hell.… https://t.co/BB1mLsx2D6 +06/16/2018,Comedians,@KevinHart4real,It’s showtime Portland....Let’s goooooo… https://t.co/hYM4IdDtF6 +06/15/2018,Comedians,@KevinHart4real,Let’s gooooooo Portland....It’s almost showtime people....If u don’t have ur tickets get them NOOOOWWWW!!!! https://t.co/FbFzTMXUmp +06/15/2018,Comedians,@KevinHart4real,Thank you Seattle....Last night was amazing. As… https://t.co/dmAeQyQZ7c +06/15/2018,Comedians,@KevinHart4real,Shot by kevinkwan327 #DopePic https://t.co/bmrzCM3K1g +06/15/2018,Comedians,@KevinHart4real,Thank you Taylor....You are a true rockstar.… https://t.co/DaTSJMfo4s +06/14/2018,Comedians,@KevinHart4real,#TBT Me & My brother icecube ....That day was a… https://t.co/Uq4YrsJF7y +06/14/2018,Comedians,@KevinHart4real,Breaking news people....I think I grew a little bit. I just had to add a line on my height wall...This is HUGE! I a… https://t.co/vp2ok8lxZi +06/14/2018,Comedians,@KevinHart4real,Morning vibes .....Roxy X Baby Zo #Harts https://t.co/srSysXl5je +06/14/2018,Comedians,@KevinHart4real,#TBT #Harts https://t.co/d2aX5ELC8w +06/12/2018,Comedians,@KevinHart4real,Caption this 😂😂😂😂😂 #irresponsibletour… https://t.co/eK7WKFzjnx +06/12/2018,Comedians,@KevinHart4real,Tuesday morning dog work with @caliK9 ....So… https://t.co/bsMiXMdiib +06/12/2018,Comedians,@KevinHart4real,#DopePic https://t.co/RBk9poa07i +06/12/2018,Comedians,@KevinHart4real,#Facts https://t.co/JjiJIDuuD7 +06/11/2018,Comedians,@KevinHart4real,#dopepic #comedicrockstarshit #Lilswag https://t.co/5Rdf0EqPhL +06/11/2018,Comedians,@KevinHart4real,RT @olivia_136haney: for @KevinHart4real to make a whole room roll in laughter is such an amazing thing to see! Truly a blessing to see you… +06/11/2018,Comedians,@KevinHart4real,RT @cshaw_rx: @KevinHart4real was FANTASTIC tonight at the Idaho Center. Laughed hysterically the whole time! 😂 I literally cannot wait to… +06/11/2018,Comedians,@KevinHart4real,"RT @jerseyprincess6: I legit haven't laughed as hard as I did tonight in a long ass time, @KevinHart4real is amazing! What the world needs…" +06/11/2018,Comedians,@KevinHart4real,"RT @cheyannbartlett: @KevinHart4real Irresponsible Tour was so awesome 😎 funniest shit I’ve ever heard, I was crying laughing" +06/11/2018,Comedians,@KevinHart4real,RT @tinyrik: My face hurts from laughing non-stop for 3 hours! @KevinHart4real thanks for keeping it 💯. The #IrresponsibleTour was amazing! +06/10/2018,Comedians,@KevinHart4real,It's a celebration of laughter people!!!!!… https://t.co/huwUSQxIBP +06/10/2018,Comedians,@KevinHart4real,A quick recap of one of the biggest nights of my… https://t.co/orcN2nDcBb +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/ELB8VvuKyx +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/DQ2MxUcuzb +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/quMB0cKtMF +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QL1rJlmK36 +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/fYepox6FgT +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/arrJb1a8bo +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/cQi60nQlRY +06/10/2018,Comedians,@KevinHart4real,RT @holly_gervais: @KevinHart4real & the plastic cup boyz did a phenomenal show 👌🏻 my stomach aches from laughing so hard #IrresponsibleTo… +06/09/2018,Comedians,@KevinHart4real,😂😂😂😂😂 This picture just makes me happy. Look at… https://t.co/q3vZT1B7EI +06/09/2018,Comedians,@KevinHart4real,Just touched down in Edmonton AB and I am beyond… https://t.co/1yTSgaHzXI +06/09/2018,Comedians,@KevinHart4real,"Boise ID my ""Irresponsible Tour"" will be in your city tomorrow night...Get your tickets and come laugh with me damn… https://t.co/UChY5hRsCa" +06/09/2018,Comedians,@KevinHart4real,Edmonton AB I am on my way damn it!!!! Let's… https://t.co/mopBs805fW +06/09/2018,Comedians,@KevinHart4real,Edmonton AB I am on my way damn it....If you don't have your tickets for tonight's show I suggest you get them NOOO… https://t.co/iuFmugAoFx +06/09/2018,Comedians,@KevinHart4real,There is no ELEVATOR to success people....You have to take the stairs!!!! Realest quote that I ever read which is why I had to repost it!!!! +06/09/2018,Comedians,@KevinHart4real,It's a great read....U will love it!!!! https://t.co/4Y8ORdDQPe +06/09/2018,Comedians,@KevinHart4real,Marathon #2 is right around the corner....While… https://t.co/qIwFDDMlhe +06/09/2018,Comedians,@KevinHart4real,#irresponsibletour #DopePic #Harts https://t.co/3eBhaPjMc1 +06/09/2018,Comedians,@KevinHart4real,RT @dominGOLDmonsta: BOOM! Brilliance strikes again! Thank you @KevinHart4real for setting off the comicalbomb and making me die of laughte… +06/09/2018,Comedians,@KevinHart4real,RT @19Stephd: @KevinHart4real I cried from laughing! My cheeks hurt! Thank you for coming #Calgary #IrresponsibleTour +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/057Xm55qNP +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/I6ejMKxgcc +06/09/2018,Comedians,@KevinHart4real,RT @DarylWilson98: Omg that was the funniest show ever @KevinHart4real #IrresponsibleTour +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/OkvZs08rIz +06/09/2018,Comedians,@KevinHart4real,Another 1.... I love my job!!!!… https://t.co/KmkUODlqWB +06/08/2018,Comedians,@KevinHart4real,#dopepic #irresponsibletour #LilSwag… https://t.co/iBIW99NQg9 +06/08/2018,Comedians,@KevinHart4real,Calgary AB I just touched down damn it.... OPERATION destroy this city with laughter is now in session!!!!! Let's g… https://t.co/i4fVPV2O58 +06/08/2018,Comedians,@KevinHart4real,#irresponsibletour #comedicrockstarshit… https://t.co/bmRIKWD3U3 +06/08/2018,Comedians,@KevinHart4real,I am still blown away from last night's… https://t.co/4hllB81gtV +06/08/2018,Comedians,@KevinHart4real,All I can say is WOW!!!!! History was made last… https://t.co/DZZHF8pP3R +06/08/2018,Comedians,@KevinHart4real,RT @shivamvyas1211: @KevinHart4real Amazing show brother you were hilarious as always . Enjoyed soo much .❤️❤️❤️ +06/08/2018,Comedians,@KevinHart4real,RT @KristinAlayna_: Thoroughly enjoyed the laughs! Thanks @KevinHart4real we had a great night! #IrresponsibleTour #hollywoodbowl https://t… +06/08/2018,Comedians,@KevinHart4real,RT @heyitsluis11: @KevinHart4real last night with @Jewel_ee was hilarious!! #irresponsibletour I was “sooo exciiiiited!” 😂😂😂 +06/08/2018,Comedians,@KevinHart4real,RT @amiraavee: @KevinHart4real irresponsible tourrr super littttt🤩😂😅😭😭🙌🏾 +06/08/2018,Comedians,@KevinHart4real,RT @alymartinezz__: Thank you @KevinHart4real!!!! You were amazing and hilarious as always! 😂😂💛 https://t.co/1oje4tbqDY +06/08/2018,Comedians,@KevinHart4real,RT @Cpt_Locc: @KevinHart4real yooooo #IrresponsibleTour had me dying of laughter 😂😂😂 I’m going to Japan now 😭😭😂😂😂 +06/08/2018,Comedians,@KevinHart4real,Everybody wants to be famous but nobody wants to… https://t.co/hLnYAtElYG +06/07/2018,Comedians,@KevinHart4real,Let's gooooooooo los Angeles Ca.....Its going down tonight at the Hollywood Bowl damn it!!!! Get your tickets ASAP!… https://t.co/JVCQXrXucm +06/07/2018,Comedians,@KevinHart4real,"Looking out into the future of ""Tommy John""… https://t.co/RqJS0L3D35" +06/07/2018,Comedians,@KevinHart4real,It's all about progression!!!!! Shoutout to my… https://t.co/jFXEq8Phqg +06/07/2018,Comedians,@KevinHart4real,#Harts https://t.co/WI2FldwBZP +06/06/2018,Comedians,@KevinHart4real,Me & my mini mini me #Harts https://t.co/lEvs01ALNT +06/06/2018,Comedians,@KevinHart4real,On the set of my Tommy John photoshoot for the… https://t.co/7kHa5EkmXI +06/06/2018,Comedians,@KevinHart4real,Los Angeles Ca it's going down tomorrow night… https://t.co/urdXWHynqu +06/06/2018,Comedians,@KevinHart4real,Let's gooooooooo Los Angeles Ca....Its going down tomorrow night at the Legendary Hollywood Bowl in Los Angeles Ca.… https://t.co/SeymFtXfJB +06/04/2018,Comedians,@KevinHart4real,RT @Shiekdon_64: The crew tonight 💜💜🎉🎉🎉 Wakanda Forever 🙅‍♂️🙅‍♀️ #IrresponsibleTour @KevinHart4real https://t.co/PW3Nkcrmlx +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: My sister was soooo Exciteeeddddd 😂😂😂😂 ❌❌ +#IrresponsibleTour @KevinHart4real https://t.co/FHEATzJ7e1" +06/04/2018,Comedians,@KevinHart4real,RT @tashenaelaine: I'm the kind of person that can't stop talking about things that excite me. So I won't stop talking about @KevinHart4rea… +06/04/2018,Comedians,@KevinHart4real,RT @mattdayman86: Great show tonight seeing @KevinHart4real Thanks for coming back to Regina! #IrresponsibleTour +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: 😂😂😂😂😂😂😂😭😭😭😢😭 I can't breath #IrresponsibleTour left me in tears😂😂 @KevinHart4real thank you for coming back to Regina,see…" +06/04/2018,Comedians,@KevinHart4real,RT @chrislorence: @KevinHart4real Thanks for another fantastic show in Regina. This was our second time seeing you here and it was even fun… +06/04/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/NyOTp6NZi8 +06/04/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/pDShdlxnxV +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: Incredible night, S/O to @KevinHart4real And the Plastic cup boyz😂😂🤣🤣👏👏👏👏 Please come back to Regina Soon💕 #Irresponsible…" +06/04/2018,Comedians,@KevinHart4real,It's Showtime Regina Saskatchewan.....Let's… https://t.co/dwnyQAeUTy +06/03/2018,Comedians,@KevinHart4real,RT @metronewyork: @TiffanyHaddish and @KevinHart4real will combine ’no-holds barred’ and nuanced comedy in #NightSchool https://t.co/bzUZVc… +06/03/2018,Comedians,@KevinHart4real,Nobody Knows what you are capable of more than YOU!!!!! Compete against you and nobody else damn it!!!! +06/03/2018,Comedians,@KevinHart4real,Sunday Morning motivation & inspiration!!!!!… https://t.co/y2P5W1EJgC +06/03/2018,Comedians,@KevinHart4real,"Los Angeles Ca....HISTORY will be made next week on June 7th at the ""Hollywood Bowl"" damn it....If you don't have y… https://t.co/rDBzax1S5V" +06/03/2018,Comedians,@KevinHart4real,"Mpho will definitely be coming your way on my ""Irresponsible Tour"" https://t.co/ugKAOv7O4w" +06/03/2018,Comedians,@KevinHart4real,RT @CJ7Ten: #IrresponsibleTour @KevinHart4real just keeps getting better and better #SK +06/03/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/w26npXx2t3 +06/03/2018,Comedians,@KevinHart4real,RT @roamdawg: Not ready for how much my face hurts after watching @KevinHart4real #IrresponsibleTour 🤣🤣🤣 https://t.co/1jkkNODIun +06/03/2018,Comedians,@KevinHart4real,"RT @kjrnahbexie: @KevinHart4real was amazing tonight! Had Saskatoon feeling so hype 🔥🔥 +Legend!! ❤️#IrresponsibleTour" +06/03/2018,Comedians,@KevinHart4real,RT @Shannzyy1: Kevin Hart was 🔥🔥🔥🔥tonight in Saskatoon!!! #IrresponsibleTour @KevinHart4real +06/03/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/rdUBP1gVGO +06/03/2018,Comedians,@KevinHart4real,It's showtime Saskatoon Saskatchewan ....Lets… https://t.co/D1tvvlzLzw +06/02/2018,Comedians,@KevinHart4real,#irresponsibletour #comedicrockstarshit… https://t.co/4jRzQF5967 +06/02/2018,Comedians,@KevinHart4real,Let’s goooooooo Saskatoon SK .....I’m on my way damn it. Get yo tickets NOOOOOOWWWW https://t.co/QpJLuc3GIu +06/02/2018,Comedians,@KevinHart4real,#Mood 😂😂😂😂😂 #Harts #BabyZo https://t.co/X3IQAeMZdS +06/02/2018,Comedians,@KevinHart4real,#Harts https://t.co/GuylZ8mEsy +06/02/2018,Comedians,@KevinHart4real,Today's rule is simple....Wake up & be great! Enjoy ur day people +06/02/2018,Comedians,@KevinHart4real,So much fun man. Always a good time with you guys!!!!! https://t.co/rNliNDTUmR +06/02/2018,Comedians,@KevinHart4real,The real work starts after the work is done....Only the go getters will understand this tweet!!!! #Motivation #Inspiration #Focused +06/02/2018,Comedians,@KevinHart4real,Thank you for the love & amazing laughter… https://t.co/IFR3bKLeLk +06/02/2018,Comedians,@KevinHart4real,RT @kingmuyiwa: @KevinHart4real had winnipeg lit 🔥. Mad funny show #IrresponsibleTour +06/02/2018,Comedians,@KevinHart4real,RT @PREZcent: @KevinHart4real is a legend man.. Tore the MTS centre down!!! Made me die laughing! #irresponsibletour #winnipeg +06/02/2018,Comedians,@KevinHart4real,"RT @Mark_Nelson41: Got to see @KevinHart4real for the second time in Winnipeg tonight, my gut will definitely be sore in the morning #Irres…" +06/02/2018,Comedians,@KevinHart4real,"Saskatoon SK I will be in town tomorrow night damn it!!!! Get your tickets to my ""Irresponsible Tour"" Noooowwwwww https://t.co/A6H6zEKCR3" +06/02/2018,Comedians,@KevinHart4real,All I can say is WOW. My fans are literally the… https://t.co/dBNYIZ6kiQ +06/01/2018,Comedians,@KevinHart4real,RT @UniPicturesCAN: Night School is in session. Watch the trailer starring @KevinHart4real and @TiffanyHaddish now! In theatres September 2… +06/01/2018,Comedians,@KevinHart4real,RT @Fandango: .@TiffanyHaddish as our teacher? @KevinHart4real as our classmate? Sign us up for #NightSchool https://t.co/3CssF4R4B5 +07/01/2018,Comedians,@hannibalburess,Outstanding. https://t.co/3KVyBulTDr +06/29/2018,Comedians,@hannibalburess,Produced by @TonyTrimm Directed by @Argo106 With @byronbowers +06/29/2018,Comedians,@hannibalburess,"Sorry to drop this today Drake. + +@turo https://t.co/dYMPpvFUvR" +06/29/2018,Comedians,@hannibalburess,"From podcast jingle to music video. @turo hop in the whip and you go. + +Track produced by @TonyTrimm Video… https://t.co/HNIY8Ad3Fe" +06/28/2018,Comedians,@hannibalburess,"Pop up show in Seoul tonight. + +VENUE: Club DGBG/ 홍대 DGBD +TIME: 8PM +TICKETS: 30,000W at the door +ADDRESS:: 마포구 서교… https://t.co/WJYE4ZVOLd" +06/27/2018,Comedians,@hannibalburess,@Beejoelay48 Absolutely. It was really funny to see because at first I thought he was just fed up with his job +06/27/2018,Comedians,@hannibalburess,Street promo in Seoul 😂 https://t.co/jKZ6QLgJFf +06/27/2018,Comedians,@hannibalburess,https://t.co/a20ItOs3kR +06/27/2018,Comedians,@hannibalburess,"Tomorrow night. + +Hannibal Buress stand-up in Seoul + +VENUE: Club DGBG/ 홍대 DGBD +TIME: 8PM +TICKETS: 30,000W at the… https://t.co/rgrMQ3QrAO" +06/27/2018,Comedians,@hannibalburess,I’m in Seoul. I want to do a guest verse on a big K-Pop song. How does one go about this? +06/27/2018,Comedians,@hannibalburess,@Umberellah They’re not sold out. +06/24/2018,Comedians,@hannibalburess,"RT @janellejcomic: Earth, Wind and Liar https://t.co/eowX5TsQmw" +06/22/2018,Comedians,@hannibalburess,@KOSTheProducer Mannnnn +06/21/2018,Comedians,@hannibalburess,https://t.co/jfyWOn5p03 +06/21/2018,Comedians,@hannibalburess,"Turoooooo produced by @TonyTrimm directed by Kris Merc @Argo106 + +@turo + https://t.co/vhs5IRPIq1" +06/21/2018,Comedians,@hannibalburess,@DrewFYTB @TonyTrimm Thank you for believing in me. +06/21/2018,Comedians,@hannibalburess,"RT @turo: When @hannibalburess goes out for burritos, he drives something bomb from Turo so he can stunt on everyone else in the drive-thro…" +06/21/2018,Comedians,@hannibalburess,The escalation of a podcast ad jingle. https://t.co/dJ6AKRfBp7 +06/21/2018,Comedians,@hannibalburess,"Detroit tonight. + +https://t.co/TTu0Q1Ulub https://t.co/WfPPW7At6f" +06/21/2018,Comedians,@hannibalburess,@TeaTvrtkovic @DesmundLighten Thank you 🙏🏿 +06/20/2018,Comedians,@hannibalburess,"Detroit- Tomorrow + +https://t.co/TQYuQojtVI" +06/20/2018,Comedians,@hannibalburess,It’s done https://t.co/BYkZJYTBQX +06/19/2018,Comedians,@hannibalburess,New episode of @HandsomeRambler with Jon Hamm #tagmovie in theaters now. +06/19/2018,Comedians,@hannibalburess,Detroit. Thursday. https://t.co/Vwwol2jAgY +06/19/2018,Comedians,@hannibalburess,@marievonboran @desusandmero Just go for it and have fun. Lots of action. Play with the settings. Play a song yo… https://t.co/QCnHXCYlao +06/19/2018,Comedians,@hannibalburess,RT @desusandmero: Watch the extended version of our interview with @hannibalburess here: https://t.co/Ft7rTLMXSo https://t.co/bZ1QpIFnJc +06/19/2018,Comedians,@hannibalburess,Shiny. https://t.co/4ibhcVr56L +06/19/2018,Comedians,@hannibalburess,Talking shit tonight with @desusandmero 11pm est on viceland https://t.co/LY6E6ZyY9Y +06/19/2018,Comedians,@hannibalburess,Here’s a clip from tomorrow’s @HandsomeRambler with Jon Hamm. Just a couple thespians talking art and process… https://t.co/schoNHr2NI +06/18/2018,Comedians,@hannibalburess,Solid point. https://t.co/Q7OSIRc1zb +06/18/2018,Comedians,@hannibalburess,i feel like it was helpful https://t.co/iIk9z6SgOl +06/17/2018,Comedians,@hannibalburess,@itschonzii happy birthday Alex! happy holidays. Happy fathers day. +06/17/2018,Comedians,@hannibalburess,"September and October tour dates + +LA, SF, Oakland, Santa Ynez, Dallas, Houston, Austin, Milwaukee, Minneapolis, Veg… https://t.co/Zy8f2ADODP" +06/16/2018,Comedians,@hannibalburess,Got something cooking for a Detroit show Thursday. I'll announce details Monday. +06/16/2018,Comedians,@hannibalburess,Yeahhhhhhh https://t.co/ACfx6sqF4o +06/16/2018,Comedians,@hannibalburess,"Bears Hawks Sox Bulls @serengetidave +https://t.co/LigHGJqNor" +06/16/2018,Comedians,@hannibalburess,"Here's the newest episode of @HandsomeRambler with @MrJakeJohnson #TagMovie + +https://t.co/8X0bTNR2PS" +06/16/2018,Comedians,@hannibalburess,RT @whitebearpr: .@Germaine_Franco discusses her work on scoring the newly released @newlinecinema film #TAGMovie with @Billboard: https:/… +06/16/2018,Comedians,@hannibalburess,RT @TonyTrimm: I did some red carpet interviews with @LilRel4 @Mike_Eagle @brianbabylon @WallisAnnabelle @hannibalburess @MrJakeJohnson @Ha… +06/16/2018,Comedians,@hannibalburess,Tony Trimm on the @tagthemovie Red Carpet with appearances. Lots of cameos! https://t.co/0lCdUA9KXl +06/15/2018,Comedians,@hannibalburess,Sunday on Netflix ! https://t.co/vQo04iMIxy +06/15/2018,Comedians,@hannibalburess,Today! https://t.co/P9VcRfTgNL +06/15/2018,Comedians,@hannibalburess,I also react when I hear two cats fighting in the street. https://t.co/QicBH1ZgNM +06/15/2018,Comedians,@hannibalburess,RT @roywoodjr: When ya drunk homeboy starts making a fool of himself trying to holla at women in the club https://t.co/ls6dZeMVCV +06/15/2018,Comedians,@hannibalburess,Yep! https://t.co/wFvsqMAD5n +06/15/2018,Comedians,@hannibalburess,"RT @JimmyKimmelLive: Tonight on #Kimmel Jon Hamm #TagMovie, Lil Rel Howery @LilRel4 #UncleDrew and music from @G_Eazy ft. @YoGottiKom & @YB…" +06/15/2018,Comedians,@hannibalburess,https://t.co/UVHHsEsRHA +06/15/2018,Comedians,@hannibalburess,New @HandsomeRambler with @MrJakeJohnson on the theremin. #TagMovie https://t.co/NLCSm5F7va +06/15/2018,Comedians,@hannibalburess,😂😂 https://t.co/rl5QasQrKz +06/14/2018,Comedians,@hannibalburess,"NYC press days recap. + +Shot and edited by @marcusprice + +Song - Flight of the flamingo by @MrFlamingosis https://t.co/KXsP0fKZ3O" +06/14/2018,Comedians,@hannibalburess,RT @brianbabylon: #TBT Last Thursday rolling with @hannibalburess at the #tagmovie premiere congrats to @mrtomsic on making his 1st movie.… +06/14/2018,Comedians,@hannibalburess,Talking with Tag director Jeff Tomsic on the latest @HandsomeRambler about “priest apparel licensing issues” https://t.co/A9U4acJm0F +06/14/2018,Comedians,@hannibalburess,"NEW TOUR DATES. + +Dallas, Houston, Austin, SF, Oakland, Minneapolis, Milwaukee, Madison, Eugene shows now on presale… https://t.co/fbTVniwDPK" +06/14/2018,Comedians,@hannibalburess,On @LateNightSeth tonight. https://t.co/GrqpCJIefu +06/13/2018,Comedians,@hannibalburess,"Full video episode of the podcast with @tagthemovie director Jeff Tomsic. + +https://t.co/pu2gziVVlX" +06/13/2018,Comedians,@hannibalburess,"We got the director of @tagthemovie Jeff Tomsic on the @HandsomeRambler + +https://t.co/4Ad0mkFyIa https://t.co/7HVGEViEX8" +06/13/2018,Comedians,@hannibalburess,Hannibal https://t.co/RwhdMDICR0 +06/13/2018,Comedians,@hannibalburess,@ericgwey Hannibal +06/13/2018,Comedians,@hannibalburess,@_woweewow_ I think it’s Hannibal +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs Nope. I got press. I’ll Venmo you. +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs Y’all should go get breakfast and come back. +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs How long is the line now +06/13/2018,Comedians,@hannibalburess,🔥🔥🔥 https://t.co/8hqTfExbYP +06/12/2018,Comedians,@hannibalburess,Street preaching! Thanks for having me. https://t.co/BY5zB9xVHm +06/12/2018,Comedians,@hannibalburess,The process. https://t.co/iFbwa916IR +06/11/2018,Comedians,@hannibalburess,#TagMovie https://t.co/zxxwkmthnQ +06/11/2018,Comedians,@hannibalburess,Hot take. https://t.co/M7tLviJVam +06/11/2018,Comedians,@hannibalburess,Recruiting https://t.co/VPGa15yP4N +06/11/2018,Comedians,@hannibalburess,@JoeFreshgoods Man I hate that shit. +06/10/2018,Comedians,@hannibalburess,@GeriatricGenius Appreciated Bruce. +06/10/2018,Comedians,@hannibalburess,We tried to play Dennehy the Dennehy song by @serengetidave and he was not interested at all. https://t.co/4mW0mcjmA5 +06/09/2018,Comedians,@hannibalburess,This is how I spend my downtime on movie sets. https://t.co/mck5j1MwAD +06/09/2018,Comedians,@hannibalburess,".@TwitterSafety @TwitterSupport + +Please remove this man from the platform. It’s for the best. https://t.co/8cqf5kuVLI" +06/09/2018,Comedians,@hannibalburess,I’ll be on @JimmyKimmelLive after the sweep talking red carpet impersonators and watching sports on psychedelics.… https://t.co/kILoHKVAYm +06/09/2018,Comedians,@hannibalburess,Tonight! https://t.co/gg4FjCYHqM +06/08/2018,Comedians,@hannibalburess,Vegas tonight ! At the mirage. Get your tickets at one of those kiosks on the strip that have hella tickets https://t.co/dQnwRa4h4F +06/08/2018,Comedians,@hannibalburess,RT @Mike_Eagle: it doesnt get cold in LA and thats great. but 'for your consideration' season is kind of a winter of its own +06/07/2018,Comedians,@hannibalburess,RT @parthbrahm: ESPN truly has a stat for everything this guy does https://t.co/t9c9aWqNhD +06/06/2018,Comedians,@hannibalburess,Great stuff. https://t.co/rNSXszFaK7 +06/06/2018,Comedians,@hannibalburess,"RT @hcbrockmann97: #TagMovie is very funny. + +Everybody has their time to shine. +The whole cast is at their best when they’re bouncing off o…" +06/05/2018,Comedians,@hannibalburess,LA! https://t.co/dVYpbH45G8 +06/05/2018,Comedians,@hannibalburess,Canada! https://t.co/sAsq1Dd9XB +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 Bet. How much ? +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 Yep. +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 I’ll take that action. +06/04/2018,Comedians,@hannibalburess,.@TonyTrimm new YouTube channel https://t.co/ZvUMJLJ6EF +06/04/2018,Comedians,@hannibalburess,Me because I’m going to sit in silence and not bother you. https://t.co/6Efdff3PMJ +06/04/2018,Comedians,@hannibalburess,"Dallas! This is happening tomorrow. + +https://t.co/w0SiygOhgb" +06/02/2018,Comedians,@hannibalburess,Chicago! https://t.co/zeGfNgljvl +06/02/2018,Comedians,@hannibalburess,New @HandsomeRambler up with @sad13 from @speedyortiz. Listen in https://t.co/xjqeZNPmMP or check the video at… https://t.co/1Wmu56lkNd +06/01/2018,Comedians,@hannibalburess,"Outstanding + +https://t.co/Htv2igfyr7" +05/29/2018,Comedians,@hannibalburess,"Donate here to win a chance to go to the @tagthemovie premiere in LA June 7th. $10 gets you one entry. + +https://t.co/iqXBy2kCep" +05/29/2018,Comedians,@hannibalburess,"RT @WallisAnnabelle: Want to win a trip to the LA premiere of @tagthemovie on June 7th? Who knows, you might be tagged into the game! Every…" +05/25/2018,Comedians,@hannibalburess,blew it out cool too https://t.co/penvuhiesu +05/24/2018,Comedians,@hannibalburess,RT @JoeFreshgoods: 20 pop up shops tomorrow. Ha! 2 pm every city. History. https://t.co/eRsieGRqD8 +05/22/2018,Comedians,@hannibalburess,Vegas. June 8th https://t.co/bsEodm8fwF +05/19/2018,Comedians,@hannibalburess,@joshua_allon You think I didn’t know?? +05/19/2018,Comedians,@hannibalburess,@dizzyswank @BAM_Brooklyn @joyellenicole and @jermaineFOWLER +05/18/2018,Comedians,@hannibalburess,@roywoodjr https://t.co/7wmPDdH4T6 +05/17/2018,Comedians,@hannibalburess,"RT @adultswim: We've added @hannibalburess, @Thundercat and 22 more acts to the first ever Adult Swim Festival! For tix and more info go to…" +05/15/2018,Comedians,@hannibalburess,"Great story on @comicBaldheadP and his work with Readi Chicago. + +https://t.co/f4K5vfFFnI" +05/15/2018,Comedians,@hannibalburess,"Port Chester, Brooklyn, Philly, and Vegas shows coming up. + +https://t.co/exXgW4rGZa" +05/15/2018,Comedians,@hannibalburess,"RT @OldTakesExposed: FOH, you psychopaths https://t.co/vWnkHlCY7g" +05/15/2018,Comedians,@hannibalburess,https://t.co/Q1PiDzgeAF https://t.co/liiqwd7URY +05/14/2018,Comedians,@hannibalburess,Chicago! https://t.co/4KuMNOXKPa +05/12/2018,Comedians,@hannibalburess,@PROPAYNE_BEATZ Thanks for getting one +05/12/2018,Comedians,@hannibalburess,Salt lake tonight. https://t.co/ToiEFALKwM +05/12/2018,Comedians,@hannibalburess,DC! Janelle James is in town tonight and tomorrow at the Arlington Drafthouse. check her out. https://t.co/Uf7G5ExcxS +05/11/2018,Comedians,@hannibalburess,"A handful of tickets available at the door in Spokane tonight 7pm. with @ComicEricaClark and @TonyTrimm + +https://t.co/2qfVobheei" +05/10/2018,Comedians,@hannibalburess,🔥🔥🔥 https://t.co/sQw1wvTiZP +05/09/2018,Comedians,@hannibalburess,If the Jazz win tonight I’ll rock Stockton style shorts for my Salt Lake City show on Saturday.… https://t.co/FLa8wAj4zJ +05/08/2018,Comedians,@hannibalburess,Another banger from last week's @HandsomeRambler with special guest @lizzo. We're in Boise and Spokane at The Knitt… https://t.co/h8TZ8hB80h +05/08/2018,Comedians,@hannibalburess,@lizzo snappin on the theremin during last week's @HandsomeRambler. listen to the full episode at… https://t.co/TzwM2L7zER +05/08/2018,Comedians,@hannibalburess,Titties are beautiful by @lizzo beat by @TonyTrimm. Listen to the latest episode of @HandsomeRambler at… https://t.co/oUPMqXdqqV +05/07/2018,Comedians,@hannibalburess,Who knew @TonyTrimm was so passionate about pizza? Check out this clip from the latest @HandsomeRambler with specia… https://t.co/PizYbhSO1B +05/06/2018,Comedians,@hannibalburess,"Missoula, Boise, Salt Lake City, Denver, Spokane, Vegas, Brooklyn and Philly shows coming up. Get tickets here. + +https://t.co/exXgW4rGZa" +05/02/2018,Comedians,@hannibalburess,New episode of @HandsomeRambler with @lizzo is up now https://t.co/stGSaRiDz1 +04/27/2018,Comedians,@hannibalburess,@J_Rose007 appreciated man +04/27/2018,Comedians,@hannibalburess,RT @GLCTHEISM: #ism Honored to be a part of the growth of our great city. #Chicago #ChiStateOfMind #GoodInEnglewood #Englewood #GLC #TheBoo… +04/26/2018,Comedians,@hannibalburess,@senseofnickels @chaneybarton we're doing all 3. finishing up the particulars. +04/26/2018,Comedians,@hannibalburess,"Tour dates at https://t.co/ViJDpu8eMG + +Brooklyn, Philly, Denver, Vegas, Spokane, Missoula, Boise. + +Bay Area and T… https://t.co/vnDUiTeA1m" +04/25/2018,Comedians,@hannibalburess,https://t.co/086Fkhz8JM +04/25/2018,Comedians,@hannibalburess,@ComedyHype_ April 1st was 3 weeks ago. +04/20/2018,Comedians,@hannibalburess,@techieondeck Hopefully. We’ll see what it costs to license that. +04/20/2018,Comedians,@hannibalburess,He windmilled it for everybody that had over 205.5 and we appreciate him for it. https://t.co/DxPNioeKN9 +04/19/2018,Comedians,@hannibalburess,@KendallTEdwards @carlitosgueyyy That’s a lot of god damn jokes! +04/19/2018,Comedians,@hannibalburess,In theaters June 15th @tagthemovie https://t.co/xHnAGBVh0Y +04/19/2018,Comedians,@hannibalburess,"Me: + +Lyft: we have replaced your driver with a better match that’s 6 minutes further away than the initial drive… https://t.co/aJLbH0YGCd" +04/19/2018,Comedians,@hannibalburess,@count_nickula Marijuana -chrome sparks +04/18/2018,Comedians,@hannibalburess,"RT @fakeshoredrive: once you realize Keef's ""Love Sosa"" flow is a nod to Lord Infamous on ""Stomp"" then you'll understand just how far these…" +04/18/2018,Comedians,@hannibalburess,@Snipes_Jr nope but I'll have something else cooking soon +04/17/2018,Comedians,@hannibalburess,"Full video of @HandsomeRambler live from @thirdmanrecords with @natebargatze @kevinbozeman + +https://t.co/U49OG5V1qf" +04/16/2018,Comedians,@hannibalburess,@Channing_Frye Was that you in the corner mostly bored and sporadically sticking your hands out? +04/14/2018,Comedians,@hannibalburess,@atcoops451 @LaughscomedySEA @byronbowers +04/14/2018,Comedians,@hannibalburess,Portland on Sunday! https://t.co/wVjMW80wLo +04/14/2018,Comedians,@hannibalburess,🙏🏿 https://t.co/nDeFmbKRku +04/14/2018,Comedians,@hannibalburess,@christinanthony @Postmates I’ve fallen asleep multiple times before they got there They definitely eat it I think. +04/11/2018,Comedians,@hannibalburess,"New album from comedian @dcbenny + +awesome stories. check it out. + + https://t.co/e51W9wi1zB" +04/09/2018,Comedians,@hannibalburess,#WrestleMania https://t.co/C0ukUDtRqV +04/06/2018,Comedians,@hannibalburess,In Theaters today. I’m in there for couple minutes. Same dude. Different costume. https://t.co/MG250pwQWk +04/06/2018,Comedians,@hannibalburess,"RT @Martin_Boev: ""@QuelleChris and @JeanGreasy's new collaborative album 'Everything's Fine' is a charismatic, idiosyncratic and an incred…" +04/05/2018,Comedians,@hannibalburess,@chancetherapper Did you just hit the 30 million mark and it’s causing an existential crisis? +04/04/2018,Comedians,@hannibalburess,RT @TonyTrimm: Honored to be nominated twice for the #webbyawards this year. The other is for Comedy podcast. You can vote til April 19. ht… +04/04/2018,Comedians,@hannibalburess,yessir https://t.co/dGdxbS37kr +04/04/2018,Comedians,@hannibalburess,"Portland - April 15th + +https://t.co/Z148jYZ0iA" +04/04/2018,Comedians,@hannibalburess,khabib vs ggg +04/01/2018,Comedians,@hannibalburess,Reasonable. https://t.co/0U3RQvSC9x +04/01/2018,Comedians,@hannibalburess,RT @TonyTrimm: Off to Charlotte tomorrow. Gonna miss you Nashville. https://t.co/9j5WwZYs98 +03/31/2018,Comedians,@hannibalburess,@Ksully_61 Honestly I’m not sure. +03/31/2018,Comedians,@hannibalburess,Easter gifts https://t.co/dRtiMdpeZL +03/30/2018,Comedians,@hannibalburess,"During the daytime in Little Rock, I think I wrote a pretty solid usable hook for the Migos. Some other shit happe… https://t.co/cyKTHxjJvH" +03/29/2018,Comedians,@hannibalburess,@SaintDarrell That was the worst part. I had just come off a flight 😂😂 +03/28/2018,Comedians,@hannibalburess,Untitled tour show. https://t.co/o4AKwq2pOI +03/28/2018,Comedians,@hannibalburess,"RT @video_dave: Here’s your first look at your new favorite show. The Hannibal Buress Untitled Tour Show. + +Episode 1 is A Food Show in Lit…" +03/27/2018,Comedians,@hannibalburess,"Me on morning tv in Memphis today. + +https://t.co/lcB7UORdvW" +03/27/2018,Comedians,@hannibalburess,"Never too late for now. + +https://t.co/VyFkL5Ss9e" +03/26/2018,Comedians,@hannibalburess,😑 https://t.co/4dQRPDSvNs +03/26/2018,Comedians,@hannibalburess,"RT @Chuckisdope: I tend to eat pringles a lot more than other chips ... but I don’t really like them. + +I don’t know what kinda of marketin…" +03/26/2018,Comedians,@hannibalburess,@lovelivemusiclr Um what? +03/26/2018,Comedians,@hannibalburess,"RT @LilRel4: Yo if you would like to see the live taping of my new comedy pilot produced, written and… https://t.co/6V1FOyoOUk" +03/25/2018,Comedians,@hannibalburess,"New merch up now + +https://t.co/avCOVTBnGe" +03/25/2018,Comedians,@hannibalburess,#InvictaFC28 right now! https://t.co/vjf5xPY94y +03/24/2018,Comedians,@hannibalburess,@SheilaRose_xiii @HandsomeRambler @TonyTrimm Appreciate you Sheila. Thanks +03/24/2018,Comedians,@hannibalburess,RT @MrJakeJohnson: A great text from @hannibalburess https://t.co/rc3n1cuHkU +03/24/2018,Comedians,@hannibalburess,Check out #InvictaFC28 tonight. 8pm. Thanks @shanknapp for the opportunity to be a sponsor. +03/24/2018,Comedians,@hannibalburess,.@TonyTrimm spitting Chicago food bars on an upcoming podcast episode. @lizzo on the adlibs. https://t.co/3wYRZZcjHR +03/23/2018,Comedians,@hannibalburess,@moshekasher @HandsomeRambler @nealbrennan yeah man. life hurts. how's the young one? +03/23/2018,Comedians,@hannibalburess,"RT @tagthemovie: Based on a true story (we’re not kidding). This summer, some traditions never get old. #TagMovie in theaters June 15. http…" +03/23/2018,Comedians,@hannibalburess,"New @HandsomeRambler with @nealbrennan Full video + +https://t.co/EFm0RKB7aW" +03/23/2018,Comedians,@hannibalburess,Charlotte ! https://t.co/cvEfeJaSuy +03/23/2018,Comedians,@hannibalburess,@zzuhuurr Yep. Make a friend +03/23/2018,Comedians,@hannibalburess,@dicemoneypotts 3 hours ago +03/22/2018,Comedians,@hannibalburess,"New episode of @HandsomeRambler with @nealbrennan is up now. + +https://t.co/L0EQFBCa7T https://t.co/Yi8TB4Z5hL" +03/22/2018,Comedians,@hannibalburess,"RT @stupidDOPE: When we started #theUBUNTUproject, we knew that we wanted to help people & change lives. We never thought that four years l…" +03/21/2018,Comedians,@hannibalburess,Memphis. March 27th. Design by Guarab Thakali. https://t.co/zJBDiF48dW +03/20/2018,Comedians,@hannibalburess,"Quick clip from the @nealbrennan episode of @HandsomeRambler + +Dropping tomorrow. https://t.co/T3sdcrJNDa" +03/20/2018,Comedians,@hannibalburess,June 15th! https://t.co/fokbdiQ07m +03/20/2018,Comedians,@hannibalburess,"Yeah I agreed to the content restrictions for the Loyola. + +Who hasn’t lied at a job interview before?? 😂😂😂 + +Why… https://t.co/hX0UvouYFC" +03/20/2018,Comedians,@hannibalburess,https://t.co/jS9RSTUtiQ https://t.co/X4xMgEybv6 +03/20/2018,Comedians,@hannibalburess,RT @MrJakeJohnson: I think we all really stretched our acting muscles for this one. #TagMovie #Oscars https://t.co/bciWZm1lzo +03/20/2018,Comedians,@hannibalburess,"My acting range is on full display in the new trailer for Tag. + +https://t.co/vrIbplnaGL" +03/17/2018,Comedians,@hannibalburess,RT @VicMensa: Every time you use the hashtag #yourthing or #believechicago @ATT will donate to my foundation Savemoney Savelife !!! +03/17/2018,Comedians,@hannibalburess,RT @JoeFreshgoods: #SXSW pull up to empire control room today for Bric’s block party I got a few tees that won’t last long. Trying to sell… +03/17/2018,Comedians,@hannibalburess,i have the same feeling about tunnels. https://t.co/hDchx9YZVj +03/17/2018,Comedians,@hannibalburess,Loyola tonight. They’re in the second round of the tournament plus it’s St Patrick’s day. This might be interestin… https://t.co/4fQVKzklUg +03/17/2018,Comedians,@hannibalburess,@CzariCastle open mike eagle's latest one +03/17/2018,Comedians,@hannibalburess,@PageKennedy Chilling mane +03/17/2018,Comedians,@hannibalburess,Every time???? #yourthing #believechicago #yourthing #believechicago #yourthing #believechicago #yourthing… https://t.co/qveJmUULqn +03/15/2018,Comedians,@hannibalburess,Nyc tonight. https://t.co/Tzg6g3eYhv +03/15/2018,Comedians,@hannibalburess,@SPD_NASCAR that's my homegirl Constance. she shot the cover actually +03/14/2018,Comedians,@hannibalburess,@_needle_thread_ Awesome shot. +03/13/2018,Comedians,@hannibalburess,"RT @BootsRiley: Let's do it. #sorrytobotheryou + +In theaters in July. https://t.co/HaNginbemw" +03/11/2018,Comedians,@hannibalburess,@stubhubby @Nicole_Cliffe @SolidSoundFest @mavisstaples deep cut and great catch +03/10/2018,Comedians,@hannibalburess,John Oliver switched up his look to get an easy second revenue stream. https://t.co/3WWtALYLsB +03/09/2018,Comedians,@hannibalburess,March 15th NYC https://t.co/qkgQlUoEf4 +03/07/2018,Comedians,@hannibalburess,"RT @Mike_Eagle: Dead Ass is back for a second season. + +@video_dave somehow tricked @hannibalburess into playing along with one of his schem…" +03/07/2018,Comedians,@hannibalburess,"Florida Woman interrupts Comedy Show. + +https://t.co/jS9RSTUtiQ https://t.co/NCLNPI3VZ2" +03/07/2018,Comedians,@hannibalburess,"Drunk Florida Lady tries to have separate conversation with me during my set. + + https://t.co/5CHDwJiMgM" +03/06/2018,Comedians,@hannibalburess,Seattle Show added https://t.co/qpqfJ1F48R +03/05/2018,Comedians,@hannibalburess,On this #oscars night check out @aljackson giving a very scathing review to the movie Rudy on this episode of… https://t.co/7sd9UGltLh +06/29/2018,Comedians,@StephenAtHome,Happy to have you tag in! https://t.co/HRCAw8gNUV +06/28/2018,Comedians,@StephenAtHome,"If you're on a low carb diet you're in luck, because there ain't no way to sugarcoat this. https://t.co/HzijhzFbG5" +06/27/2018,Comedians,@StephenAtHome,"Well, sure, if you set aside everything he said, it's legal. https://t.co/JLd23FGHrR" +06/27/2018,Comedians,@StephenAtHome,Donald Trump and David Lynch: A match made in the darkest nether-scape of an abandoned malt shop while a naked woma… https://t.co/Q2KehD4G73 +06/27/2018,Comedians,@StephenAtHome,"But if Harley Davidson goes away, how will retired dentists in my neighborhood wake me up on Saturdays?" +06/27/2018,Comedians,@StephenAtHome,"There are a lot of things I want to call Neil Gorsuch, and none of them are ""Justice.”" +06/26/2018,Comedians,@StephenAtHome,"If it walks like a Muslim ban and quacks like a Muslim ban, then this Supreme Court decision is ducked up." +06/26/2018,Comedians,@StephenAtHome,There's still no announcement of what they're going to do to put these stolen kids back together with their parents. https://t.co/plHSiMKRjP +06/26/2018,Comedians,@StephenAtHome,"Sure, Trump wants to kick people out of America without due process. But look on the bright side: without due proce… https://t.co/zrGw0EUBHa" +06/26/2018,Comedians,@StephenAtHome,"Harley Davidson is going to move production to Europe to avoid tariffs. Comment dit-on ""midlife crisis?""" +06/26/2018,Comedians,@StephenAtHome,"Well, at least something good came out of this weekend. I finally figured out my band name: Filthy Canopies" +06/22/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: It's been a sad week for America but we had to ask, ""Is Trump really that bad?"" #LSSC https://t.co/fhkQ15QeX5" +06/22/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Brian Kilmeade on Fox News: ""Like it or not, these aren't our kids...it's not like [Trump] is doing this to the people…" +06/22/2018,Comedians,@StephenAtHome,The story of the week has been Donald Trump's pro-baby-snatching agenda. https://t.co/mRpnoiQk1n +06/22/2018,Comedians,@StephenAtHome,"Wow, she’s really starting to seem like the kind of person who would marry Donald Trump. https://t.co/LI6ZIjMEaT" +06/22/2018,Comedians,@StephenAtHome,Here’s an eye full of year! #LateShowFYC https://t.co/GWXAFzJrYp +06/21/2018,Comedians,@StephenAtHome,https://t.co/d6rXuYznlp +06/21/2018,Comedians,@StephenAtHome,#tbt https://t.co/hpPOz3RkzV +06/21/2018,Comedians,@StephenAtHome,Donald Trump has changed his mind and decided to keep families together. https://t.co/kSwJ53S5q4 +06/21/2018,Comedians,@StephenAtHome,"Trump signed ""something” to “keep families together.” Unfortunately, it wasn't resignation papers." +06/21/2018,Comedians,@StephenAtHome,Hey. You know Dino Stamatopoulos? He’s funny. He also has a band called Sorry About Everything. If you want to chec… https://t.co/IGeX9iNUlJ +06/20/2018,Comedians,@StephenAtHome,"Simba: Dad, wake up! Dad! +Corey Lewandowski: Womp womp" +06/20/2018,Comedians,@StephenAtHome,"When it comes to the news, let's face it: we don't want to face it. https://t.co/kKgIoCUmrB" +06/20/2018,Comedians,@StephenAtHome,"This flag just earned $130,000 https://t.co/BkSeEtNK7b" +06/19/2018,Comedians,@StephenAtHome,Here's my monologue from Monday's show: https://t.co/dtmPX4pls1 +06/19/2018,Comedians,@StephenAtHome,One thing I know for sure: no one on the right side of history has ever had to nitpick what the definition of “cage” is. +06/16/2018,Comedians,@StephenAtHome,"Paul Manafort has been ordered to jail, or as President Trump put it, “Never met the guy.”" +06/15/2018,Comedians,@StephenAtHome,https://t.co/JbPVCRuwqO +06/15/2018,Comedians,@StephenAtHome,"It's time for another installment of our long running segment ""Hillary Clinton: Impeachment Watch"" https://t.co/wnuvlpalbs" +06/15/2018,Comedians,@StephenAtHome,RT @colbertlateshow: The United States is using cruelty as a deterrent on our southern border. @StephenAtHome has something to say about it… +06/14/2018,Comedians,@StephenAtHome,Now Trump must deal with an even greater threat: Robert Mueller. https://t.co/zFIYidH0cP +06/14/2018,Comedians,@StephenAtHome,RT @colbertlateshow: TONIGHT! Scaramucci and Avenatti talk Cohen with Stephen. #LSSC https://t.co/JyEP6M5wlq +06/14/2018,Comedians,@StephenAtHome,He’s got my vote! https://t.co/e7XENAy4rM +06/13/2018,Comedians,@StephenAtHome,Yeah! https://t.co/7i4Wbvsb9p +06/13/2018,Comedians,@StephenAtHome,Yesterday we all woke up in a different world. https://t.co/xZqaTgdW6P +06/13/2018,Comedians,@StephenAtHome,Some analysts believe Kim Jong Un can actually speak fluent English. Others believe the same thing about Donald Trump. +06/13/2018,Comedians,@StephenAtHome,Here's a question I never thought I'd have to ask: does Canada have nukes? +06/12/2018,Comedians,@StephenAtHome,"Our relations with Canada have not been this bad since they stole the word ""bacon."" https://t.co/4L28Dlw31o" +06/12/2018,Comedians,@StephenAtHome,"“We will be fine!” says the man who just misspelled “missile” and “stopped."" https://t.co/GdVOt6qMvd" +06/09/2018,Comedians,@StephenAtHome,Trump made his first international visit to a hostile foreign power: Canada. https://t.co/FzOOI0LAXf +06/08/2018,Comedians,@StephenAtHome,"A bunch of racist nerds bullied Star Wars actress Kelly Marie Tran off social media. As Yoda would say, “Wrong with… https://t.co/ai7qNauQxb" +06/08/2018,Comedians,@StephenAtHome,"Donald Trump: When will people start saying, “thank you, Mr. President, for firing James Comey?” + +Struggling Bookst… https://t.co/ANIYppEqlr" +06/07/2018,Comedians,@StephenAtHome,Here's a sentence I don't often say: Donald Trump did something good. https://t.co/7KXD1jtj3g +06/07/2018,Comedians,@StephenAtHome,Calling Trump “Commander of Cheese” is the first factually accurate thing Kellyanne Conway's ever said. +06/06/2018,Comedians,@StephenAtHome,"@kumailn The end of Miller’s Crossing: “Goodbye, Leo.” +The “So you’d give the devil the benefit of law?!” scene in… https://t.co/lckZlMwuGy" +06/06/2018,Comedians,@StephenAtHome,Here's my monologue from last night's show! https://t.co/Afs7B3rHhq +06/06/2018,Comedians,@StephenAtHome,"Now that Miss America has ditched the swimsuits, I think it’s time the Pulitzer Prize dropped their wet t-shirt contest." +06/05/2018,Comedians,@StephenAtHome,Yes it is. https://t.co/NUF3g5LDZj +06/05/2018,Comedians,@StephenAtHome,Caught this unruly mob in my garden #quickbeforetheyfade https://t.co/uYgFcXnZuT +06/05/2018,Comedians,@StephenAtHome,We're back! https://t.co/zT1NcO9hjR +06/05/2018,Comedians,@StephenAtHome,"Reese Witherspoon has announced they're making ""Legally Blonde 3."" Please make it be about Elle Woods joining Mueller's team." +06/05/2018,Comedians,@StephenAtHome,"Fine, Donald Trump gets to pardon himself, but only if he can spell ""Special Counsel"" on the first try." +06/03/2018,Comedians,@StephenAtHome,"Sunday Cobbler, anyone? https://t.co/a1Z5HZIAb0" +06/02/2018,Comedians,@StephenAtHome,"@AndyRichter 1. Machine sounds, large metal squeaks, take 1 2. El… https://t.co/hnqB6liXyg" +05/31/2018,Comedians,@StephenAtHome,"@labruna a bee +staggers out +of the peony +~Basho" +05/31/2018,Comedians,@StephenAtHome,"@PONYPONY Far as I know, just the movies" +05/30/2018,Comedians,@StephenAtHome,There’s a fat-faced peony in the garden. Share your #BestBlossom https://t.co/QcRJ4u9Ojz +05/30/2018,Comedians,@StephenAtHome,@edmcellig18 Yes +05/30/2018,Comedians,@StephenAtHome,Get back to work! https://t.co/RAohbn3jzF +05/25/2018,Comedians,@StephenAtHome,Hey @realdonaldtrump: https://t.co/tuSFBxFRT6 +05/24/2018,Comedians,@StephenAtHome,"South Korean official response: “We are attempting to make sense of what, precisely, President Trump means.” + +Welcome to the fucking club." +05/24/2018,Comedians,@StephenAtHome,"Not so fast, Deep State. https://t.co/Z5pqrqUuoI" +05/24/2018,Comedians,@StephenAtHome,Say hello to the NFL's newest ref! https://t.co/qf1YMSdYcQ +05/23/2018,Comedians,@StephenAtHome,How did these people get under my desk? https://t.co/d8cv0drs0E +05/23/2018,Comedians,@StephenAtHome,"Tonight’s Late Show features a special appearance by Jon Stewart. But it's a surprise, so don’t tell him!" +05/23/2018,Comedians,@StephenAtHome,"Trump aides write his tweets with bad punctuation to match the President's style. Well, at least there's not grammar Nazis." +05/22/2018,Comedians,@StephenAtHome,@MovieLeagueMike @jenspyra Sounds good to me. https://t.co/6kMYVX7sQc +05/22/2018,Comedians,@StephenAtHome,The White House is determined to stop leaks at all costs. https://t.co/MYv0z8yCBY +05/18/2018,Comedians,@StephenAtHome,RT @colbertlateshow: The Mueller investigation is a year old and we have the perfect gift to celebrate. #LSSC https://t.co/aledtqlgoI +05/18/2018,Comedians,@StephenAtHome,Last night's show is up now! https://t.co/Cy7mBbER6u +05/17/2018,Comedians,@StephenAtHome,What would a jury of Donald Trump's peers look like? https://t.co/A7SSiqZ49B +05/17/2018,Comedians,@StephenAtHome,"Trying to understand why Kim Jong Un’s threatening to break off talks with the US. Did Trump cheat with a younger, hotter Korea?" +05/17/2018,Comedians,@StephenAtHome,"The White House must be upset about the Trump Tower transcripts coming out. Especially Mike Pence, who's uncomforta… https://t.co/0Oq5Ct9iCu" +05/17/2018,Comedians,@StephenAtHome,'Pop Quiz' With Jamie & Corinne Foxx https://t.co/U3A68F1c5S via @YouTube +05/17/2018,Comedians,@StephenAtHome,Tonight! #LSSC https://t.co/cKWV6DPhuG +05/16/2018,Comedians,@StephenAtHome,11:00- Yanny again. +05/16/2018,Comedians,@StephenAtHome,"A plastic bag was found at the bottom of the world’s deepest ocean trench. Hey scientists, while you’re down there,… https://t.co/CJQfUkDWvc" +05/16/2018,Comedians,@StephenAtHome,Tonight! Lighthearted high jinks with Deadpool! (Seen here strangling Vanisher.) @deadpoolmovie #LSSC #hear https://t.co/ButMgmBy7o +05/16/2018,Comedians,@StephenAtHome,5:30 - Yanny 9:30- Laurel What...is...happening? +05/16/2018,Comedians,@StephenAtHome,Just a regular ol’ Tuesday night with @iamjamiefoxx ! #LSSC https://t.co/kjb8TscZYS +05/15/2018,Comedians,@StephenAtHome,My monologue from Monday's show is up now! https://t.co/gPRQoMXm2N +05/15/2018,Comedians,@StephenAtHome,"When Trump and Hannity talk on the phone before bed each night, who do you think is the first to say, ""No you hang up first!”" +05/15/2018,Comedians,@StephenAtHome,"If all sports gambling is legal, what’s gonna stop Trump from using that almanac he stole from Marty McFly?" +05/13/2018,Comedians,@StephenAtHome,"Some things need no explanation. Happy Mother’s Day, @mindykaling https://t.co/AsugMb2xRX" +05/11/2018,Comedians,@StephenAtHome,Boston Dynamics’ new running robot is terrifying! Imagine a bleak future where we'll be forced to listen to robots… https://t.co/TNZfjnz1fK +05/11/2018,Comedians,@StephenAtHome,It's nice when you see good things happen in Trump's America. https://t.co/PKXxZTJXEL +05/10/2018,Comedians,@StephenAtHome,My monologue from Wednesday's show is up now! https://t.co/C9Rtn4Q0yN +05/10/2018,Comedians,@StephenAtHome,Feels like we haven't heard from Jared Kushner in a while. Are we sure a large bird didn't grab him? +05/09/2018,Comedians,@StephenAtHome,"After years of saying he was going to do it, he did it. https://t.co/WPv3HTI9zf" +05/08/2018,Comedians,@StephenAtHome,"Yes, indeed! Thank you, @CSiriano !!! https://t.co/yeZZN0SUUa" +05/08/2018,Comedians,@StephenAtHome,Two altar boys ready for the #MetGala! https://t.co/yH4T9QnRU8 +05/08/2018,Comedians,@StephenAtHome,"Speaking of natural disasters, Rudy Giuliani... https://t.co/BofNS4A3F1" +05/08/2018,Comedians,@StephenAtHome,Roy Moore and Don Blankenship. A threat to minors and miners alike. +05/05/2018,Comedians,@StephenAtHome,Happy Cinco de Mayo Eve! Don't forget to leave out a margarita and chips for Father Fiesta! +05/05/2018,Comedians,@StephenAtHome,NBC News has corrected their correction: Michael Cohen’s “phone” turned out to be a stale Pop Tart. +05/05/2018,Comedians,@StephenAtHome,I plan to celebrate #StarWarsDay by having roast porg for dinner. +05/04/2018,Comedians,@StephenAtHome,It's time for another edition of #StormyWatch! https://t.co/1CNIiVzBOL +05/04/2018,Comedians,@StephenAtHome,What if the FBI finds that Michael Cohen mostly just uses his phone to call his 15 other phones? +05/04/2018,Comedians,@StephenAtHome,"Make sure to change your Twitter password. And, if you know it, Kanye’s." +05/04/2018,Comedians,@StephenAtHome,Tonight! May the best Rudy win! https://t.co/bqratSutlP +05/03/2018,Comedians,@StephenAtHome,My monologue from last night's Late Show is up now! https://t.co/abIiX4twcV +05/03/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Today is huge because we have @StormyDaniels attorney @MichaelAvenatti joining our #StormyWatch and you got 5 mins unt… +05/03/2018,Comedians,@StephenAtHome,James Comey says he once sang Beyoncé during an FBI briefing. I guess it's not easy discussing Trump's stay at the… https://t.co/j8SIii1aUc +05/03/2018,Comedians,@StephenAtHome,"Goodbye, Cambridge Analytica! We hardly knew ye, though ye knew everything about us." +05/03/2018,Comedians,@StephenAtHome,At least now Ty Cobb has more time for his true passion: tossing gumdrops and candy canes from a hot air balloon. https://t.co/QI6hByHqL7 +05/02/2018,Comedians,@StephenAtHome,RT @Zac_Posen: Excited to have the new The Late Show merchandise in the #ZacPosen showroom! Thanks for the underwear @colbertlateshow 😜 Get… +05/02/2018,Comedians,@StephenAtHome,If Trump sees the questions in advance he'll cheat! https://t.co/3TmAv4qBrY +05/02/2018,Comedians,@StephenAtHome,Facebook is launching an online dating feature. Which is different from their current online dating feature of show… https://t.co/nSyEVpV2Yl +05/02/2018,Comedians,@StephenAtHome,"Mueller apparently has 49 questions he wants to ask Trump. 50, if you count, ""Seriously, what does it mean to 'move on her like a bitch’?""" +05/01/2018,Comedians,@StephenAtHome,Here's my monologue from Monday's Late Show: https://t.co/RGX1SQKOAY +05/01/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: TONIGHT: The White House is running very smoothly despite news that Trump's chief of staff called him an ""idiot"" and ""…" +04/28/2018,Comedians,@StephenAtHome,I just saw @DisobedienceMov produced and starring the brilliant Rachel Weisz. It’s a beautiful and challenging stor… https://t.co/Ug9o56KwVW +04/28/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Our buddy #MandyPatinkin just released an album, recorded with his buddy producer/pianist Thomas Bartlett. It's Mandy'…" +04/28/2018,Comedians,@StephenAtHome,Will I understand Infinity War if I saw only 17 of the previous movies? +04/28/2018,Comedians,@StephenAtHome,I don’t remember ever being this happy in my 20s... #oldheadshotday https://t.co/XKpx1zIx3A +04/27/2018,Comedians,@StephenAtHome,"“This is a “lure."" Normally I just use free condos or offer an appearance on the Apprentice.” https://t.co/hrdg4R2Uo4" +04/27/2018,Comedians,@StephenAtHome,RT @colbertlateshow: These as-worn-on-TV #LSSC undies are up for grabs on @eBay right now! Proceeds benefit @ETAForg. Thanks @Zac_Posen for… +04/27/2018,Comedians,@StephenAtHome,Donald Trump called in to Fox & Friends yesterday... https://t.co/WR00ghfG64 +04/27/2018,Comedians,@StephenAtHome,#DraftDay is trending so I assume Donald Trump is somewhere faking a limp. +04/26/2018,Comedians,@StephenAtHome,My monologue from Wednesday's show is up now: https://t.co/vA1SnAS8pe +04/26/2018,Comedians,@StephenAtHome,@HelloCullen @ArielDumas @anylaurie16 Wow +04/25/2018,Comedians,@StephenAtHome,"@hwinkler4real Thank you for being here, Henry! It was a Joy!" +04/25/2018,Comedians,@StephenAtHome,Bienvenue a Ratatouille! https://t.co/yzGWrEaWTy +04/25/2018,Comedians,@StephenAtHome,.@HankAzaria New Late Show in five minutes. Twitter explosion in act three. +04/25/2018,Comedians,@StephenAtHome,"Because... he's guilty? +https://t.co/iXSGdsZJ3a" +04/24/2018,Comedians,@StephenAtHome,The leader of the free world tweeted 25 times last weekend... https://t.co/4aZ967B5rr +04/24/2018,Comedians,@StephenAtHome,"Trump: ""There were gooooood boyyyyyyys on both sides."" +https://t.co/YCGWVERRNQ" +04/24/2018,Comedians,@StephenAtHome,"Congratulations to the new royal baby! He has his mother's eyes, and his father's hair." +04/19/2018,Comedians,@StephenAtHome,James Comey made some new friends at Late Show! https://t.co/R5wtlFvtY6 +04/18/2018,Comedians,@StephenAtHome,Watch my Tuesday monologue here! https://t.co/YOx2KhaRvd +04/18/2018,Comedians,@StephenAtHome,There was too much Comey to fit in the show! Hard choices where to cut. So here’s the whole damn thing. https://t.co/0eeL8pN6TO +04/18/2018,Comedians,@StephenAtHome,"Not saying that Trump has Hannity in the palm of his hand, but... https://t.co/ctJkjI62RW" +04/18/2018,Comedians,@StephenAtHome,@OfficialJLD Some of us know how to rock an asymmetrical hemline. https://t.co/iL14XCQJte +04/18/2018,Comedians,@StephenAtHome,High level summit! Tonight! #WuTangForever #Comey https://t.co/EjUakcIqjl +04/18/2018,Comedians,@StephenAtHome,"Stormy Daniels said that the mystery man who threatened her didn’t have a weapon, but I disagree: You could cut gla… https://t.co/HMt4flxlCh" +04/17/2018,Comedians,@StephenAtHome,"Always great talking to you, Father! https://t.co/jfl2g194aa" +04/17/2018,Comedians,@StephenAtHome,Ongoing troubles for the man who paid off Stormy Daniels... https://t.co/UHZuD6qfMD +04/17/2018,Comedians,@StephenAtHome,"NOT THE MOST PRESSING THING ON YOUR TO-DO LIST, GUYS! https://t.co/p8ZXh7BfrV" +04/17/2018,Comedians,@StephenAtHome,Funny how when James @Comey writes a book about the 2016 election and how he lost his dream job and drank wine nobo… https://t.co/8dCXooI0LS +04/17/2018,Comedians,@StephenAtHome,"Firing Comey last May must be Trump’s biggest regret, since it means he can’t fire him now." +04/17/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Sneak peek of 'Hannity' tonight... https://t.co/qud8et2cba +04/16/2018,Comedians,@StephenAtHome,Can't wait! https://t.co/mHxKlndExG +04/13/2018,Comedians,@StephenAtHome,"RT @SarahHuckabee: When you're attacking FBI agents because you're under criminal investigation, you're losing https://t.co/SIoAxatCjp" +04/13/2018,Comedians,@StephenAtHome,I’ve got a date for the weekend https://t.co/7pSayaJYcB +04/13/2018,Comedians,@StephenAtHome,Stop the presses! https://t.co/jY18IwmDvM +04/13/2018,Comedians,@StephenAtHome,ARE YOU MY SECRET LOVE CHILD I PAID A DOORMAN TO KEEP QUIET?! https://t.co/cL2irm9c2L +04/13/2018,Comedians,@StephenAtHome,"Chivalry isn't dead! +https://t.co/qzqsGepuYx" +04/13/2018,Comedians,@StephenAtHome,"Take it from me, @Comey, it is! https://t.co/X83xa2AWaW" +04/12/2018,Comedians,@StephenAtHome,The President is not happy... https://t.co/kEfHt0Ukz8 +04/12/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Stephen and Jon are writing a song in honor of Paul Ryan. What do you think of it so far? #RehearsalRewind https://t.c… +04/12/2018,Comedians,@StephenAtHome,"When you have a warrant, they let you do it. +https://t.co/7hQD40bcul" +04/12/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Grab your tickets now for Martin Short & Steve Martin, on the road together in their hilarious show 'An Evening You Wi…" +04/12/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: In honor of the House Speaker's decision not to seek reelection, #LSSC presents this look back at Paul Ryan's most cou…" +04/11/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Cookie's Carpool #NationalPetDay #LSSC https://t.co/VayEAqQdGy +04/11/2018,Comedians,@StephenAtHome,My friends @MontclairFlim are putting the finishing touches on their Film and Education Center. Please consider mak… https://t.co/iCf8D3dVKj +04/11/2018,Comedians,@StephenAtHome,"""The porn is on the President"" https://t.co/J3dXUnslGY" +04/11/2018,Comedians,@StephenAtHome,Truth https://t.co/71rDSIL5Oo +04/11/2018,Comedians,@StephenAtHome,Almost feel bad for Zuckerberg. There’s no way he left that room full of old people without having to set up their wifi. +04/10/2018,Comedians,@StephenAtHome,"Hey look, we're back! https://t.co/lj4GQREpEI" +04/10/2018,Comedians,@StephenAtHome,Trump's lawyer got raided which means Trump's lawyer's lawyer should probably play it safe and get himself a lawyer. https://t.co/ZNEDQPh6CQ +04/09/2018,Comedians,@StephenAtHome,Carthago delenda est +04/03/2018,Comedians,@StephenAtHome,RT @MikeVanderbilt: RT these photos of character actor Mike Hagerty. https://t.co/y7zhSW6aIB +04/03/2018,Comedians,@StephenAtHome,"Reminder: @BandFlaw lays it all on the Line tomorrow @Spicolis Waterloo, Iowa (hope they play Payback) !!!!!!!Flaw!!!!!!! +#DeathGrind" +04/01/2018,Comedians,@StephenAtHome,Jinx! You owe me a Coke. https://t.co/bNitNTFAkt via @youtube +03/30/2018,Comedians,@StephenAtHome,Burn one with Kacey Musgraves! Kacey Musgraves Performs 'Slow Burn' https://t.co/Ei9Xmv6xDH via @YouTube +03/30/2018,Comedians,@StephenAtHome,"""Jefferson Beauregard Sessions III."" Just going to leave this here for anyone who needs to guess his name or he get… https://t.co/OE7JILfvzW" +03/30/2018,Comedians,@StephenAtHome,"I feel better already! Thanks @mbsings +John Bolton's Terrifying Ideas Sung By Michael Bolton https://t.co/qJhSsfBIAS via @YouTube" +03/30/2018,Comedians,@StephenAtHome,The whole damn thing! https://t.co/mSF2N0w8Rb +03/30/2018,Comedians,@StephenAtHome,The busiest person at the White House is whoever has to update the office contact list. +03/29/2018,Comedians,@StephenAtHome,"RT @BandFlaw: Playing Live: Waterloo, IA - Apr 3 at Spicoli’s https://t.co/ye1C1t5lEA" +03/29/2018,Comedians,@StephenAtHome,"Dana was very nice to credit me last night, but the Brokaw/Ford Obituary sketch was written by Robert Smigel, Louis… https://t.co/WLoTe7mILM" +03/29/2018,Comedians,@StephenAtHome,I am not making this up... https://t.co/b1iOXbaygp +03/29/2018,Comedians,@StephenAtHome,"He escaped arrest but still got sent to his room with no screen time. +https://t.co/EKXYJhG0GT" +03/29/2018,Comedians,@StephenAtHome,"Bolton seems nice, but his mustache is unhinged. @danacarvey stopped by, too! https://t.co/s0m7JBRV0D" +03/28/2018,Comedians,@StephenAtHome,The President has a new nickname! https://t.co/fKtPb6xWdj +03/28/2018,Comedians,@StephenAtHome,"The military's responsibilities according to Trump: +1. build walls +2. parades! +3. excuse bone spurs +4. war & misc." +03/28/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Stephen Colbert invites his guest #SeanPenn to play #LSSC's newest game, where guests are asked to answer completely r…" +03/28/2018,Comedians,@StephenAtHome,"I know Mueller’s busy but… +https://t.co/0InGMZDM2M" +03/27/2018,Comedians,@StephenAtHome,Looking for Monday's Late Show? Start here! https://t.co/MAFggw6mQQ +03/27/2018,Comedians,@StephenAtHome,"“Also, don't sleep with a porn star who's way smarter than you.” +https://t.co/cFCbMHrnAP" +03/26/2018,Comedians,@StephenAtHome,I always get excited when there’s a @thetrevorpotter sighting! @CampaignLegal is working for all Americans- (D) and… https://t.co/UKjN6LoxoB +03/25/2018,Comedians,@StephenAtHome,"Take that, Sauron!" +03/24/2018,Comedians,@StephenAtHome,"Hey @realdonaldtrump I thought you said you'd run TOWARD the kids, not away from them! https://t.co/7hdX2MxX3b" +03/23/2018,Comedians,@StephenAtHome,Who would win in a fistfight? +03/22/2018,Comedians,@StephenAtHome,"They’re not imaginary, @mindykaling! They’re “Maybe Coming Soon!” Fingers crossed! https://t.co/hXRnd9YYWp" +03/22/2018,Comedians,@StephenAtHome,"@JakePlunkett Will you ever truly be known, even by those you love the most?" +03/21/2018,Comedians,@StephenAtHome,Did you catch last night's monologue? https://t.co/M1Y8PlxgAB +03/21/2018,Comedians,@StephenAtHome,"D.T. phone home. +https://t.co/m4YU0HONqe" +03/20/2018,Comedians,@StephenAtHome,My monologue from Monday's show is here! https://t.co/Loa4VwH4PU +03/20/2018,Comedians,@StephenAtHome,"""Cambridge Analytica"" sounds like the scientific name for ""John Oliver.""" +03/20/2018,Comedians,@StephenAtHome,"Baseball season is only ten days away, which means we’ll soon be able to measure the longevity of Trump’s cabinet members in innings." +03/20/2018,Comedians,@StephenAtHome,"Congrats to Vladimir Putin on winning his first election since November 8, 2016!" +03/20/2018,Comedians,@StephenAtHome,"Oh, we know there's no ""plan.” +https://t.co/QOsKcN6l19" +03/17/2018,Comedians,@StephenAtHome,This “happy ending” version of Danny Boy is simultaneously one of the most beautiful and most stupid things I ever… https://t.co/1iR0jJf6es +03/17/2018,Comedians,@StephenAtHome,Never https://t.co/BmxBTqRLfD +03/15/2018,Comedians,@StephenAtHome,Grace! https://t.co/wAVCaT8yL4 +03/15/2018,Comedians,@StephenAtHome,Help us raise some $ for Art Therapy! https://t.co/29zenDVnHH +03/15/2018,Comedians,@StephenAtHome,True. Honest but Weird. So happy with the weirdness. In tonight’s Act 2. Starts in about 5 min. https://t.co/OI6UkQcG4l +03/15/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: TONIGHT: #PaulGiamatti talks the new season of @SHO_Billions, #SeanBean from @theoathcrackle, and a musical performanc…" +03/14/2018,Comedians,@StephenAtHome,"RT @NorthwesternU: NU EMERGENCY: Person with gun on Evanston campus. If on campus, seek shelter in safe place and stay until further notice…" +07/02/2018,Comedians,@billburr,RT @attell: It took me a while to process the loss of Sean Rouse.  Sean was a great friend and probably one of the funniest guys i ever had… +07/01/2018,Comedians,@billburr,"RT @allthingscomedy: Sad news today as we learned from @DougStanhope of the passing of ""Unbookable"" member Sean Rouse. A funny man gone too…" +06/29/2018,Comedians,@billburr,Ole freckles has a couple of lines in this talkie: https://t.co/hfT3qnFYTV +06/29/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast is up!! + +I interview Dave Elitch and apologize to The Specials. @thespecials… https://t.co/CZRmmbCUBW" +06/27/2018,Comedians,@billburr,RT @reuvenmoshe: @billburr @NHLBruins NHL’s first black player Willie O’Ree earns Hockey Hall of Fame induction /via @globeandmail https… +06/27/2018,Comedians,@billburr,Motorcyle doc from the 1980's: The Undrideables https://t.co/jC21IticWu These guys were fucking lunatics. +06/26/2018,Comedians,@billburr,People of Philly! Go check out the hilarious and always well dressed @_TomRhodes this week June 28-30th @punchlinephilly +06/25/2018,Comedians,@billburr,@davebrook I saw the Specials +06/25/2018,Comedians,@billburr,"the Monday Morning Podcast is up! + +I ramble about the great Vinnie Paul, music festivals, and hair transplant scars… https://t.co/zk1RCQLBad" +06/25/2018,Comedians,@billburr,RT @Danny_PJones: Jesuuuuuuuus this is terrifying @billburr https://t.co/qYL2ujE2D0 +06/25/2018,Comedians,@billburr,RT @damianfet: @billburr it happened. I'm in the garage and she brings that. Best day ever. @Ewla1986 #bestdayever https://t.co/MgiI95Z8l0 +06/25/2018,Comedians,@billburr,Fuck! I’m the worst! https://t.co/iXlQoDGpYQ +06/25/2018,Comedians,@billburr,"RT @TheMeltingPat: @billburr may have convinced me to get @butcherbox: ""If this had been around, there would be no Jeffrey Dahmer."" Gold @t…" +06/24/2018,Comedians,@billburr,RT @CoachNewman55: @billburr these animals are invading baseball games https://t.co/e85b8IR0Aa +06/24/2018,Comedians,@billburr,"Baltimore! Late show added at The Modell Lyric, October 18th. https://t.co/VPa9AMByAM" +06/23/2018,Comedians,@billburr,"RT @F1: Brollies down ✅ +Skies clearing ✅ + +Qualifying is coming your way! 🙌 + +#FrenchGP 🇫🇷 #F1 https://t.co/iTqo9swUkZ" +06/23/2018,Comedians,@billburr,"RT @sandrobot_: Tarantinos Cast 🔥 + +- Al Pacino +- Leo DiCaprio +- Brad Pitt +- Margot Robbie +- Timothy Olyphant +- Luke Perry +- Damian Lewis +-…" +06/23/2018,Comedians,@billburr,"RT @GarrisonToons: Martin Short in a brilliantly executed visual musical gag. + +Short silly-sweet. Perfect on 5 levels. + +@billburr @joerogan…" +06/23/2018,Comedians,@billburr,Devestated to hear the news of the passing of the great Vinnie Paul. Such an incredible musician and an even nicer… https://t.co/KhdXEB4bRI +06/21/2018,Comedians,@billburr,No way! https://t.co/5lycVGH9tU +06/21/2018,Comedians,@billburr,#ThursdayThoughts +06/21/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about flying home hungover, movie snobs, and Guns N… https://t.co/SC2SXTAMq2" +06/21/2018,Comedians,@billburr,"Charleston, SC!! Late show added at the Gaillard Center on September 16th. https://t.co/FofWdLguiS" +06/21/2018,Comedians,@billburr,"Houston, TX!! Late show added at the Revention Music Center July 27th. https://t.co/NIW8DWpNul" +06/20/2018,Comedians,@billburr,Thanks! https://t.co/GM1eISXJ6D +06/18/2018,Comedians,@billburr,Download the hilarious @RichVos roast here!... https://t.co/A1X2zwG3jX +06/18/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about his last days in Paris, Le Mans, and grounded sixteen year olds. https://t.co/2bpQW6CG8G" +06/18/2018,Comedians,@billburr,RT @joederosacomedy: The Roast Of @RichVos is available NOW. Go buy… https://t.co/U6W0JoHu8W +06/17/2018,Comedians,@billburr,"RT @joebartnick: Going to see Mr Rodgers movie , its PG -13 ?? +Does he tell Mr McFeely to go F himself??" +06/17/2018,Comedians,@billburr,RT @denisleary: My daughter knows how to melt my heart: https://t.co/xX3yr4Tjr0 +06/17/2018,Comedians,@billburr,"RT @SHO_DyingUpHere: When opportunity knocks, will you answer? #ImDyingUpHere #Showtime https://t.co/Q5ARuAFqgA" +06/17/2018,Comedians,@billburr,"RT @peteleetweets: I just woke up to the best Father’s Day gift in the world. +And that gift is that I’m not a dad." +06/17/2018,Comedians,@billburr,RT @TheComedyStore: Happy Father's Day Sammy and to all the dads out there! #thecomedystore #fathersday https://t.co/4dQdoNOzep +06/16/2018,Comedians,@billburr,Been watching Grizzy and the Lemmings. It’s incredible! https://t.co/VjYQNWPtDc +06/16/2018,Comedians,@billburr,R.I.P. Matt “Guitar” Murphy https://t.co/9Z1IFUpSBB +06/15/2018,Comedians,@billburr,@nshaner82 @thibsnation Those were draft picks. They didn’t all rent a yacht over the summer and then decide to pil… https://t.co/GDuP3HsBEc +06/15/2018,Comedians,@billburr,@nshaner82 @ajayi1987 @thibsnation Who did the Bulls bring in? Phil Jackson was just a former Knick turned coach wh… https://t.co/mXyEvN0Qm5 +06/15/2018,Comedians,@billburr,"RT @TheSoftServed: @billburr here is some evidence that us @theMMPodcast listeners do, in fact, listen to the ads! Saved me some cash on @t…" +06/14/2018,Comedians,@billburr,"RT @funnyordie: Jerry Seinfeld and @iamCardiB sit down with Zach Galifianakis for an interview without coffee, cars, or money moves. https:…" +06/14/2018,Comedians,@billburr,RT @bertkreischer: Hey @Uber why do I get charged 10 dollars to cancel a driver who isn’t picking up me or his phone??? https://t.co/SBnVby… +06/14/2018,Comedians,@billburr,RT @bonniemcfarlane: Um i believe that’s called the McFarlane https://t.co/m0c0urQmM5 +06/14/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about eating baguettes, speaking French, and kids l… https://t.co/imrOSJEq1h" +06/13/2018,Comedians,@billburr,Hahahaha!!!! https://t.co/8o75xwJQhS +06/12/2018,Comedians,@billburr,RT @WORLDSTAR: Robert Frank had a special guest during his Sunday night rant about LeBron James! 💪😳😂 @RobertFrank615 @SmoothSmith8 https://… +06/12/2018,Comedians,@billburr,Nice! https://t.co/bQvTr5im9i +06/12/2018,Comedians,@billburr,@thibsnation KD & OKC took you guys to a game 7 the year before and was the Warriors biggest obstacle to the finals… https://t.co/7HoQP2Y7y8 +06/12/2018,Comedians,@billburr,RT @thibsnation: @billburr Before you keep hating on the Warriors... They drafted 3 of those guys. So they got Durant. Who cares. +06/12/2018,Comedians,@billburr,@osheagt Does it send an SOS call once you’re out to sea or do you have to paddle back in? +06/11/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! + +I ramble about the French Open, evil mergers, and how to treat the wait staff. + +https://t.co/jcpJPfz26B" +06/11/2018,Comedians,@billburr,RT @Starting9: This man has life figured out https://t.co/AxyGs387i8 +06/11/2018,Comedians,@billburr,RT @ChristinaP: NYC almost sold out. San Diego too! Tix at https://t.co/2TPFLUZDnO https://t.co/mAtx3bubNK +06/11/2018,Comedians,@billburr,@StevenEYates Haha! +06/10/2018,Comedians,@billburr,"My wife untweeted my retweet because I didn’t leave a comment. So: “Of all the jerk faces in my life, you are my f… https://t.co/tCKBt0YlHv" +06/10/2018,Comedians,@billburr,"RT @bertkreischer: ALABAMA – I’ll be performing in Birmingham at the Stardome June 14, 15, & 16th + +Get your tickets here: +https://t.co/R5fb…" +06/10/2018,Comedians,@billburr,Thank you to everyone at ATC! https://t.co/4EdOXrqTbS +06/10/2018,Comedians,@billburr,@DJBazMati Haha +06/09/2018,Comedians,@billburr,@OscarRobertsUK Nice to see you didn’t get jumped! Thanks for coming out to the show! +06/09/2018,Comedians,@billburr,RT @mikepriceinla: Can LeBron join the Mets? +06/08/2018,Comedians,@billburr,"RT @o2academynewc: If you’re wondering who comedian @dougstanhope is after watching @frankieboyle's #BBC2 #NewWorldOrder, this is him and h…" +06/08/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about my performance at Royal Albert Hall. + +https://t.co/ei2oJdPXHe" +06/08/2018,Comedians,@billburr,"RT @NBCSCapitals: Hey @MGMResortsIntl remember when you promoted that whole ""#nocaps"" thing and then the @Capitals won and literally parade…" +06/08/2018,Comedians,@billburr,RT @Capitals: SHOW US YOUR TIGER EMOJIS!! #ALLCAPS #StanleyCup https://t.co/TBoia9Gb6O +06/08/2018,Comedians,@billburr,Congratulations to the @Capitals Stanley Cup championship! So great to see that organization and fan base finally r… https://t.co/aNoQqsBEC8 +06/08/2018,Comedians,@billburr,RT @Capitals: THE WASHINGTON CAPITALS ARE THE 2018 #STANLEYCUP CHAMPIONS! #ALLCAPS https://t.co/QNrMYcleBi +06/08/2018,Comedians,@billburr,RT @NickDiPaolo: Getting there guys....be with you soon. https://t.co/XhO0yWRk5O +06/08/2018,Comedians,@billburr,"RT @joerogan: MIT fed an AI data from Reddit, and now it thinks of nothing but murder https://t.co/QFb2UuKiEA via @Verge" +06/08/2018,Comedians,@billburr,RT @iFisforfamily: A few of the Voices behind F Is For Family @billburr @LauraDern @justinlong @DebiDerryberry @HaleyReinhart @FIFFNetflix… +06/07/2018,Comedians,@billburr,"RT @AJCassavell: The video is in, and it's glorious. Gabby DiMarco of San Diego, take a bow. https://t.co/CSbdAaValD" +06/07/2018,Comedians,@billburr,That's wheah I staaaaah-ED! https://t.co/yJvg1UA9nb +06/07/2018,Comedians,@billburr,Great meeting you last night. You killed it! https://t.co/SW4UqvU5H2 +06/06/2018,Comedians,@billburr,RT @shoegalshell: @dobcomedy was hilarious last night opening for @billburr ...... any Cork gigs coming up? +06/05/2018,Comedians,@billburr,Stand up comedian and bread baker @tompapa has written a hilarious new book! You can get a copy here: https://t.co/E2shnOZI4s +06/05/2018,Comedians,@billburr,RT @KamalaHarris: It is outrageous that a United States Senator would be barred from entering a federal facility while trying to check on t… +06/05/2018,Comedians,@billburr,RT @jerryferrara: July 1st is coming quick! #PowerTV @Power_STARZ https://t.co/o2SQFTp8XA +06/05/2018,Comedians,@billburr,"RT @barstoolsports: Just because you turned your tuxedo shirt into a soaking, transparent body condom doesn't mean you were on ecstasy +http…" +06/05/2018,Comedians,@billburr,"RT @ToddGlass: COMING TO THESE CITIES...CHECK MY WEBSITE TO SEE WHERE + +JUNE: +SPRINGFIELD, MO +BENTONVILLE, AR +HOPKINS, MN + +JULY: +HUNTINGBEAC…" +06/05/2018,Comedians,@billburr,RT @joebartnick: Vegas is hitting more pipes in Washington than Marion Berry +06/05/2018,Comedians,@billburr,RT @CormacComedy: Good laugh in the Comedy Shed tonight. Then @billburr shows up in the @ComedyCrunch! Unbelievable Jeff. #comedy #dublin h… +06/04/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about the Capitals, recliners, and the Irish News. https://t.co/k9U2NnGh03" +06/04/2018,Comedians,@billburr,@Breezy4sheezee @PETMpodcast @theMMPodcast @DanicaPatrick @allthingscomedy I’ll go out on a limb and say you’re projecting. Lol +06/02/2018,Comedians,@billburr,RT @MotoGP: You won't see a faster crash than this in #MotoGP!!! 😱😱😱 https://t.co/migPHdL898 +06/01/2018,Comedians,@billburr,RT @allthingscomedy: Tonight! @TinFoilHatCast is live in San Francisco @CobbsComedyClub with @samtripoli @eddiebravo @trezmala & Off the Gr… +06/01/2018,Comedians,@billburr,@Oscarbonill91 It’s all good until he locks his arm and then rolls with it underneath his body. That dude does a gr… https://t.co/YPxpXI3muU +06/01/2018,Comedians,@billburr,RT @MM_Center: Today is the first day of sale for @billburr LIVE and tickets are selling FAST!! Get your tickets before the show is SOLD OU… +06/01/2018,Comedians,@billburr,Brutal. https://t.co/BP7TpvjnDx +05/31/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast is up!! I ramble about Vegas pregame show, his temper, and nobody having the… https://t.co/93FTD7ulSK" +05/31/2018,Comedians,@billburr,RT @barstoolsports: STONEWALLED https://t.co/bjqxR2MqKm +05/31/2018,Comedians,@billburr,Very excited to be a small part of the amazing TJ Hooker reboot! https://t.co/BlHah8qIW6 #MMPodcast +05/29/2018,Comedians,@billburr,Fair enough https://t.co/0up3YyPlMO +05/29/2018,Comedians,@billburr,I think Broadway picked up a few new tricks there. https://t.co/Ko7FjTmpA6 +05/29/2018,Comedians,@billburr,"RT @JarrettBellini: @billburr I'm told it's hockey. +But I beg to differ." +05/29/2018,Comedians,@billburr,WTF am I watching? #VegasKnightsIntro +05/28/2018,Comedians,@billburr,RT @Jim_McMenamin: @billburr @theMMPodcast Wasn't Korean Foreskins a punk band from the late 70s/early 80s ? +05/28/2018,Comedians,@billburr,"RT @mamabakes3: @billburr @theMMPodcast A Babushka is a Russian or Polish old lady, but also a term of endearment for Grandma. https://t.co…" +05/28/2018,Comedians,@billburr,@ocrcove Lies! +05/28/2018,Comedians,@billburr,"the @theMMPodcast is up!! + +I ramble about losing Game 7, Hollywood vanity, and Korean Foreskins. + +https://t.co/t1g2Z5950i" +05/28/2018,Comedians,@billburr,@OldManPaLive Ok since you were a team we’ve won 6. Goidnighy +05/28/2018,Comedians,@billburr,@MarkdFL Take all those away and we STILL got 6. You have one title the Rock and Roll Hall of Fame. +05/28/2018,Comedians,@billburr,@Aaron_Torres @SGSFOX Jordan won 6 titles with Luc Longly and Bill Cartwright at Center. He completely changed the… https://t.co/MPDPcTOvYc +05/28/2018,Comedians,@billburr,You might want to go to a Cavs home game and look up at your barren rafters that are filled with division title and… https://t.co/9XTOtA2JNz +05/28/2018,Comedians,@billburr,@plkubiak Anyone but the Warriors is how I’m looking at it. +05/28/2018,Comedians,@billburr,@OCBeachDiamond Kobe wouldn’t have won with that team. He would’ve bitched to ownership the whole year. Kobe played… https://t.co/DGAXiXFrHH +05/28/2018,Comedians,@billburr,"RT @jrobhaha: @billburr When you go hard, but not like hard hard" +05/28/2018,Comedians,@billburr,I love your Game 7 face with the seatbelt on. https://t.co/7qfKl0x8Uc +05/28/2018,Comedians,@billburr,Fuckin LeBron James. Unreal. Funny thing is people will still trash him. Congrats to the Cavs. Future is bright for the Celtics. +05/27/2018,Comedians,@billburr,"RT @joerogan: US lost track of 1,500 undocumented children, but says it's not 'legally responsible' https://t.co/gheRqrlz7j" +05/27/2018,Comedians,@billburr,@mike_emerson @danielricciardo Ahhh sorry man. +05/27/2018,Comedians,@billburr,Congratulations to @danielricciardo on his first win at Monaco! +05/26/2018,Comedians,@billburr,Haha! https://t.co/4LHKDzbl33 +05/26/2018,Comedians,@billburr,Love that he’s doing a podcast! https://t.co/anhmzA5KQS +05/26/2018,Comedians,@billburr,"RT @PETMpodcast: Not sure how many of y'all listen to @billburr @theMMPodcast, but his Thursday edition this week (dude does two shows a we…" +05/25/2018,Comedians,@billburr,"thanks again @DanicaPatrick, @IMS, and @GoDaddy. give a listen if you haven't already! https://t.co/hkxEqO0Zdj" +05/25/2018,Comedians,@billburr,RT @BlindMike_: I'd recommend subscribing to the @allthingscomedy YouTube. They're putting out some funny shit like @billburr poker show an… +05/24/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I talked with professional race car driver @DanicaPatrick.… https://t.co/a9uMv9s1er" +05/23/2018,Comedians,@billburr,RT @allthingscomedy: Happy Birthday to host of Valley Vibes @brodyismefriend follow him and go watch episode 1! https://t.co/tm0LegkuLl #AT… +05/23/2018,Comedians,@billburr,That’s right! Old school flay-VAHS! https://t.co/N2wD5uahse +05/23/2018,Comedians,@billburr,@Defiant888 @A_JackElliott It was Joy Division +05/22/2018,Comedians,@billburr,RT @roseorosso: Caught a glimpse of some old @billburr standup and saw this guy with some red fuzz on the noggin! https://t.co/vam6ETs5i2 +05/21/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about Artisan ice cream, expansion franchises and the Royal Wedding. https://t.co/RhvKzanTse" +05/21/2018,Comedians,@billburr,"RT @Webster_Arena: Come laugh with Comedian @billburr at Webster Bank Arena on Saturday, October 6th! + +TICKETS: https://t.co/zR6oLHXEGu ht…" +05/21/2018,Comedians,@billburr,RT @LiveNationUK: EXTRA TICKETS RELEASED for @billburr at London's @RoyalAlbertHall next month! Be quick 👉 https://t.co/cQ41DB2WqS https://… +05/20/2018,Comedians,@billburr,Wow. https://t.co/u2gs3Y021W +05/20/2018,Comedians,@billburr,Close: “Millennial” https://t.co/rWDpgnIrhC +05/20/2018,Comedians,@billburr,"RT @Coach_Dugs: @billburr It’s a very uncommon play in the sport and specifically the league, so I get it." +05/20/2018,Comedians,@billburr,That asshole that stands up on every three point attempt. #STFDYMC +05/19/2018,Comedians,@billburr,Haha! https://t.co/tg1OVASRnn +05/18/2018,Comedians,@billburr,RT @theMMPodcast: tammp music 5-17: @Bob_Reynolds - Down South. https://t.co/kvsQ6AnkJj +05/17/2018,Comedians,@billburr,RT @questlove: yikes https://t.co/HFWFzUVM8z +05/17/2018,Comedians,@billburr,RT @FIFFNetflix: Recording ADR with @realphilhendrie and Sam Rockwell today. https://t.co/LguPpyDuaO +05/17/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about San Francisco, keeping score, and… https://t.co/ly9e8wIze6" +05/16/2018,Comedians,@billburr,RT @Jake_speare: @billburr Not bad! I see your Lars Ulrich and raise you Tony Williams from the 1982 #Zildjian Day clinic https://t.co/tI8m… +05/16/2018,Comedians,@billburr,RT @stephenasmith: Line of the night delivered by Jeff Van Gundy: “The @Cavs eye-roll one another more than folks in a bad marriage! Haaaaa… +05/15/2018,Comedians,@billburr,as mentioned on today’s podcast: This is what I do when my team gets knocked out of the NHL playoffs. (Metallica dr… https://t.co/AUE959Dyj2 +05/15/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about museums, paper shredders, and getting a lawyer. https://t.co/A7uflxyRdc" +05/14/2018,Comedians,@billburr,Dave Anthony and Gareth Reynolds have a new episode of Trash Toons today on All Things Comedy! https://t.co/8ckymNTNNK +05/14/2018,Comedians,@billburr,RT @theblood85: Chuck Knox was one of the most influential men in the early days of my career. Great coach and an even better man. #RIPChuc… +05/13/2018,Comedians,@billburr,Check out Jason Reitman’s new film Tully after thanking your Mum for doing the hardest job on the planet. https://t.co/Jzc9GvH82W +05/12/2018,Comedians,@billburr,RT @theMMPodcast: hope you’re all enjoying this hilarious interview #gfys https://t.co/Afw9vry5yr +05/12/2018,Comedians,@billburr,RT @JasonLawhead: #TBT circa Sept 2006. Not even 2 years in doing stand up w/ two of my closest comedy life influences @Hilarities owner Ni… +05/10/2018,Comedians,@billburr,the Thursday Afternoon Monday Morning Podcast is up!! I sit down with Bill Hader to talk about his new @HBO show B… https://t.co/lZLC1VpMD7 +05/07/2018,Comedians,@billburr,RT @allthingscomedy: Who do you think has slept with more women? A brand new 🔥Something's Burning🔥 with @bertkreischer is up with guests @c… +05/07/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about steak houses, the Bruins, and legal tender. https://t.co/pAeSm6wky2" +05/05/2018,Comedians,@billburr,@StoneyCJones Nothing funnier than a white rapper +05/05/2018,Comedians,@billburr,@Billybry10 No they aren’t. They are all over the map. Either let them play or call everything. Even the announcers… https://t.co/fQl3ie5lJI +05/05/2018,Comedians,@billburr,@ItsRodStebbings All I’m asking for is consistency. When the broadcasters are questing the calls too there is a problem. +05/05/2018,Comedians,@billburr,@ItsRodStebbings I thought it was because we won all those championships. +05/05/2018,Comedians,@billburr,These referees have been absolutely brutal for three straight games. When will one of their shit calls go in our favor? +05/03/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about the Hollywood sign, shitty news outlets, and… https://t.co/iTeQdisEGR" +05/03/2018,Comedians,@billburr,"RT @TheMMphotoshop: ""How dare you put me in that position Mr. and Mrs. Delta Airlines!"" https://t.co/ccbrRJ8bY0" +05/02/2018,Comedians,@billburr,@The_Grump90 Taping it! +05/01/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about Talladega, First Class, and coyotes. https://t.co/HR2eD1Ok0X" +04/30/2018,Comedians,@billburr,Nice!!! https://t.co/LKnNP3nwTt +04/30/2018,Comedians,@billburr,RT @natebargatze: At #Talladega with @billburr. #RubbinsRacin #NASCAR https://t.co/eozQWgPtdm +04/27/2018,Comedians,@billburr,"RT @boblazarstory: @billburr get on this, Billy boy.......https://t.co/Di2gZg1B2m" +04/27/2018,Comedians,@billburr,RT @THELORDmusic: Need to go to Club 290 now and tell Tommy @billburr said to spin the wheel. +04/27/2018,Comedians,@billburr,RT @theMMPodcast: 'Boston-bred loud mouth balancing rage with self-deprecation.' https://t.co/ABeA1v7O6o +04/26/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about the super cold, creating controversy and Her… https://t.co/j526CIeiTm" +04/25/2018,Comedians,@billburr,"RT @ktom8: @billburr There are two legs, one home and one away. The combined score of those two games wins. The Final however is just one g…" +04/25/2018,Comedians,@billburr,RT @ktom8: @billburr You qualify for the Champions League. You continue to play in your respectively league throughout the season but you a… +04/25/2018,Comedians,@billburr,"RT @ktom8: @billburr So every country in Europe has their own Soccer/Football League. The big 5 are The Premier League-England, La Liga-Spa…" +04/25/2018,Comedians,@billburr,"@theMMPodcast is up!! I ramble about the common cold, a 14 yr old’s dream, and being a navy seal in Australia. https://t.co/SxhdgzeLpF" +04/24/2018,Comedians,@billburr,@WMFC91 Wind knocks down Anderson. +04/24/2018,Comedians,@billburr,Every team flops but I have to give it up when a player adds the 360 pirouette! +04/24/2018,Comedians,@billburr,I’m guessing there are a lot of soccer fans on the Leafs. +04/24/2018,Comedians,@billburr,Ole freckles had to call in sick today. I will record podcast tomorrow. +04/23/2018,Comedians,@billburr,RT @DonMStahl: @billburr @IdHitThatPod great shot of Malcolm here! https://t.co/KAjXBE6EmU +04/22/2018,Comedians,@billburr,RT @oklasal81: @billburr. Animals in santa clarita https://t.co/sR6oTLNZm4 +04/22/2018,Comedians,@billburr,"RT @vikasjo: @BretErnst Heard you on @billburr podcast, checked out your special - Very funny, you have a fan in me now ! #Principal’s Offi…" +04/22/2018,Comedians,@billburr,Bridgeport CT! The @stressfactoryct opens May 3-5 with the incredible Jim Breuer! Get tickets here: https://t.co/Fm92VmlSm1 +04/20/2018,Comedians,@billburr,RT @BretErnst: Thanks to my good friend @billburr for having me on his podcast! Check it out here! https://t.co/QoG7lHwmvc +04/19/2018,Comedians,@billburr,the Thursday Afternoon @theMMPodcast is up! I sit down with comedian @BretErnst. https://t.co/HUzqRFIG4P +04/19/2018,Comedians,@billburr,RT @andrewTopHat: @billburr it goes on clear so you can see the stubble/hairs/etc otherwise you are just seeing a bunch of foam and shaving… +04/16/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about taxes, Syria and not being a rat. https://t.co/DGbvRDCCws" +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Let’s go!!! #RNR3. Starts at 7:15. Don’t miss this crew @billburr @BarstoolBigCat https://t.co/PCXh87CQKe http… +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Bill Burr is in the building. He's ready for something he's never seen before. Rough N Rowdy starts in about 2 hours.… +04/13/2018,Comedians,@billburr,Watch @kirkfox new special “That Guy” on Showtime tonight @10pm! https://t.co/vcQ2SgqHS3 +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Prediction: Pain. 👀. And there is no way he has seen Rocky 3 either which makes it scarier. We got real life… +04/13/2018,Comedians,@billburr,"RT @PardonMyTake: OMTR is officially the biggest underdog in Rough n Rowdy history. No one is giving him a shot tonight. He's older, shorte…" +04/13/2018,Comedians,@billburr,tonight!! @barstoolsports @stoolpresidente @BarstoolBigCat https://t.co/FqRgtmC9ru https://t.co/EL8UQKzlCp +04/13/2018,Comedians,@billburr,RT @lunchbawks0: @billburr there's this Irish bar we can remember the name of.. its somethin o' somethin.. so we just call it Patrice O' Ne… +04/13/2018,Comedians,@billburr,RT @TallSoHard: If y’all don’t pregame tomorrow by watching Rough N Rowdy you’re doing it wrong!! @billburr @BarstoolBigCat @stoolpresident… +04/13/2018,Comedians,@billburr,Just want to thank the great Mitzi Shore for everything she did for stand up comedy. A true legend. It’s been such… https://t.co/vHsjW391EB +04/13/2018,Comedians,@billburr,"RT @GamblingPodcast: Bill Burr (@BillBurr) calls in to talk Rough N' Rowdy 3! #RNR3 @barstoolsports +w/ @seantgreen & @kramercentric + +LISTE…" +04/12/2018,Comedians,@billburr,"I just talked about my preparation for @roughnrowdy, how the fighters like their hash browns, and old school #UFC o… https://t.co/57Ze9iY6Zx" +04/12/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast up!! I ramble about toupees, clean living and baseball fights. https://t.co/oyI2eTpf2e" +04/12/2018,Comedians,@billburr,"RT @barstoolecu: You’re going to want to watch @roughnrowdy live from Charlotte, NC this Friday night! 40+ fights featuring guest announcer…" +04/12/2018,Comedians,@billburr,thanks! https://t.co/ySGPS3cxMT +04/12/2018,Comedians,@billburr,RT @LoisReitzes: @JudahWorldChamp is smart and hilarious. Fascinating to watch him onstage. His @netflix show is up for a webbie. Listen he… +04/12/2018,Comedians,@billburr,RT @FIFFNetflix: Final retake edit for S3 E1 tonight. https://t.co/SYXF0CJ7OR +04/12/2018,Comedians,@billburr,RT @attell: She was a legend in the biz. And there will never be another one like her.  Give it up for the late great Mitzi Shore.  You wil… +04/11/2018,Comedians,@billburr,RT @BarstoolRadio: Bill Burr called into Barstool Radio as #RNR3 approaches this Friday night https://t.co/aZHQrAzd0P https://t.co/OSZDPXhL… +04/11/2018,Comedians,@billburr,FridayNight!! https://t.co/vPtmPMi7ZL +04/11/2018,Comedians,@billburr,Nice! https://t.co/qDjUpq2Inh +04/11/2018,Comedians,@billburr,"RT @jeremymarksmith: @billburr F1 telecast is coming from the ""world feed"" So ESPN doesn't actually control the feed. It's based on the F1…" +04/10/2018,Comedians,@billburr,I will be on @BarstoolRadio talking @roughnrowdy with @stoolpresidente on @SIRIUSXM Power 85. https://t.co/Pvy786YF5P +04/10/2018,Comedians,@billburr,"RT @TheMMphotoshop: ""The whole point of making music is to do it with other fuckin' people. +It's like, I get it, you have no friends."" http…" +04/10/2018,Comedians,@billburr,@Pocket_Queen Major talent! Thanks for the vids! +04/10/2018,Comedians,@billburr,RT @LSUBarstool: THRILLRIDE IS READY. Just 4 days until the Barstool LSU @roughnrowdy watch party at @Fredsbar. Rough N Rowdy 3 is coming l… +04/10/2018,Comedians,@billburr,RT @RicFlairNatrBoy: Steve Austin In The House! WOOOOO! @steveaustinBSR https://t.co/MX5DxbRZcA +04/09/2018,Comedians,@billburr,RT @allthingscomedy: Watch @bertkreischer hurt himself again on a Brand New episode of Something's Burning with @WheelerWalkerJr & @leeannw… +07/01/2018,Comedians,@davidcrosss,@karengeier I keep the other two pairs in my limousine +07/01/2018,Comedians,@davidcrosss,Portland! Just got my replacement socks at the Target down the street and I'm ready to kick ass at this SRO show at… https://t.co/JTwp7FyfCu +07/01/2018,Comedians,@davidcrosss,"Richard! You pretty much have it (winking emoji). To be specific yours is, “TINY HANDS = TINY HEART” which, come on… https://t.co/mmpgzGeUAT" +06/30/2018,Comedians,@davidcrosss,"Ross, you've got it (I think). Yours reads, ""I LOVE MAIL ORDER BRIDES.” So...yes? Good job sir. #ohcomeon https://t.co/JESxsramit" +06/29/2018,Comedians,@davidcrosss,@mike_maas @amazon Dont do it +06/29/2018,Comedians,@davidcrosss,"Okay Shelley, I'll give you everything but the last word. Yours says: “MIKE PENCE IS EVEN _____ “ You take it from… https://t.co/wy1t87sqlC" +06/29/2018,Comedians,@davidcrosss,"Hey, the show I wrote and directed in the U.K. is finally coming to what used to be America! Info about how you can… https://t.co/mAyDoa3W0H" +06/29/2018,Comedians,@davidcrosss,"RT @TVietor08: Send this article to all of your friends in Maine, Alaska, Indiana, North Dakota, West Virginia, and Missouri and tell them…" +06/29/2018,Comedians,@davidcrosss,"RT @EugeneMirman: People are really grabbing the word fuck by the pussy, huh Senator? But in all seriousness, I think it became acceptable…" +06/29/2018,Comedians,@davidcrosss,https://t.co/Dk7Oc9Q2PZ +06/28/2018,Comedians,@davidcrosss,"RT @aravosis: ANDERSON COOPER: “Jeff, I heard you say earlier that within 18 months abortion could be illegal in as many as 20 states.” + +LE…" +06/28/2018,Comedians,@davidcrosss,Darci! How are you? Long time. You got one of my faves actually. I will tell you the first couple of words: “I DIRE… https://t.co/T3pxyvx8qN +06/28/2018,Comedians,@davidcrosss,"Come on Anthony! At least try. Here's a hint, ""DO NOT TRUST"" are the first words. There are two more. And no, Donal… https://t.co/y0VUrnQCKF" +06/28/2018,Comedians,@davidcrosss,"RT @TheWhitneyBrown: When a majority of 1 in the Senate, representing a third of the US population, can put a judge on the Supreme Court fo…" +06/28/2018,Comedians,@davidcrosss,RT @EricBoehlert: reminder: https://t.co/8UO5SAql9Z +06/28/2018,Comedians,@davidcrosss,"RT @staceyabrams: Not-so-fun-fact: Every year Georgia doesn’t expand Medicaid, we miss out on $3 billion (billion, with a “B”) federal doll…" +06/27/2018,Comedians,@davidcrosss,over here! https://t.co/IZnugkzd3V +06/27/2018,Comedians,@davidcrosss,Oh... https://t.co/76Mz5womly +06/26/2018,Comedians,@davidcrosss,"Oh man, drop what you are doing (well I guess you're checking Twitter but still...) read this thread. FUN! https://t.co/ZPBtfuR3xW" +06/26/2018,Comedians,@davidcrosss,Can we start with him? https://t.co/RYV7flcClf +06/26/2018,Comedians,@davidcrosss,@olegdavydkin Bots +06/26/2018,Comedians,@davidcrosss,@Nikolaiberry Nice! I'll try to find you. +06/26/2018,Comedians,@davidcrosss,@Tjonespoc In your mother's closet? +06/26/2018,Comedians,@davidcrosss,@HammerJoeBrooks During. Don't make it weird! +06/26/2018,Comedians,@davidcrosss,@nolafilm I'm also a D.A. in Eugene Oregon and have a drill bits store in Ft. Wayne IN. +06/26/2018,Comedians,@davidcrosss,@slimjimtx Ну вот! https://t.co/HfKopqfoSo +06/26/2018,Comedians,@davidcrosss,"Chris! You got it the second time, it's: SATANISTS FOR TRUMP. Wear that and feel proud. #OhComeOn #MuellerWitchHunt https://t.co/XPuBWJORdh" +06/26/2018,Comedians,@davidcrosss,"Scott! This one you should wear next time you're in #Russia . Or at least Brighton Beach. It reads, “2018 WORLD TOU… https://t.co/qvILKAlMFp" +06/26/2018,Comedians,@davidcrosss,"Brady! Ha. No. It's: ""TWITTER MAKES ME ERECT."" It exactly translates to, ""I Have it Standing for Twitter” which is… https://t.co/TVuvA4IlYg" +06/26/2018,Comedians,@davidcrosss,"Jennifer! That is my ABSOLUTE favorite guess so far. No, it's not, ""Cinnamon Toast Crunch Cereal"". It’s, “TOO DUMB… https://t.co/i5i1v9eRDg" +06/26/2018,Comedians,@davidcrosss,Of course he can be so blatant about it. Because his fans are *literally* too dumb to realize it. Even Trump can ga… https://t.co/Js89pjIxcE +06/25/2018,Comedians,@davidcrosss,"@Nikolaiberry Hey Nick, you got; ""THIS HOLDS MY HAIR ON."" Please wear it to your next MAGA rally, point, and smile.… https://t.co/UkzbXuptS5" +06/25/2018,Comedians,@davidcrosss,"RT @Lawrence: Please keep doing this, Andrew. Please. + +(Retweet if you want more reporters to do this.) https://t.co/3VBDiMfBg8" +06/25/2018,Comedians,@davidcrosss,"RT @blackfamilyunit: White people, no one is asking you to apologize for your ancestors. We are asking you to pull down and dismantle the s…" +06/25/2018,Comedians,@davidcrosss,RT @OhNoSheTwitnt: “Be civil to bigots and they’ll be civil to you” is the new “misogynists wouldn’t be like that if women would just have… +06/25/2018,Comedians,@davidcrosss,"Ileen, you truly are life's cheerleader, yes Eugene was correct, “GOLF WILL MAKE AMERICA GREAT AGAIN."" It truly wil… https://t.co/s8eQNKQDiH" +06/25/2018,Comedians,@davidcrosss,"Donald! Close, very close, but yours specifically translates to ""Jared's Cell Mate"". We were going for, ""bunk mate""… https://t.co/snr6NtXr1A" +06/25/2018,Comedians,@davidcrosss,"@_j_cole_w_ @ScottBaio @realDonaldTrump Cole, you got it! Well to be fair in Russian it can be swapped out for, ""br… https://t.co/dNjg7RnzkO" +06/25/2018,Comedians,@davidcrosss,Dylan! Yes. Nailed it. That's exactly what it is. Good job! #ohcomeon https://t.co/V6qSAkB6Z3 +06/25/2018,Comedians,@davidcrosss,RT @camillard: My Nana asked me how to Instagram and girl I think the fuck NOT. We let your generation on Facebook for 5 mins and got a Bre… +06/25/2018,Comedians,@davidcrosss,RT @JohnJHarwood: Rubio on Trump Feb 2016: “a con man pulling the ultimate con job on the American people” https://t.co/h2WLZkMXlk +06/25/2018,Comedians,@davidcrosss,@cwwmbm @dubdunk @realDonaldTrump Oh dear. Yes that is a mistake all right. There's no word like that in Russian. O… https://t.co/ybIy2N3Qix +06/25/2018,Comedians,@davidcrosss,"RT @virgiltexas: If a Trump supporter came into my dick sucking factory, I would REFUSE to serve them. #MAGA #Resistance" +06/25/2018,Comedians,@davidcrosss,Gary! Well done. That's exactly what yours says: UNDER HIS EYE. Give Mr. Honold an extra biscuit for sporting the h… https://t.co/raSsWRRGQx +06/25/2018,Comedians,@davidcrosss,"I do, Nick. You know I do. I always have. And I always will. #ohcomeon https://t.co/enXqZIaJAo" +06/25/2018,Comedians,@davidcrosss,"Paul, this is a good one. I'll tell you the first word is ""HYPOCRITES"" and the last word is ""TRUMP."" #OhComeOn… https://t.co/OmMUI9z60f" +06/25/2018,Comedians,@davidcrosss,"Kyle! You got one of my fave's, I will tell you the first three words, +""TRUMP: PROPERTY OF ..."" You'll have to figu… https://t.co/jxGSpUR3OH" +06/25/2018,Comedians,@davidcrosss,"Another important observation by Josh Marshall + +Against ‘Civility’ https://t.co/ny4E13j2YW via @TPM" +06/25/2018,Comedians,@davidcrosss,"RT @mrbenwexler: - It cost $36/day +- 99% of asylum seekers showed up for their court dates +- trump decided to separate families at a cost o…" +06/24/2018,Comedians,@davidcrosss,https://t.co/GYt7ekWc8E +06/24/2018,Comedians,@davidcrosss,"Chris! This is the very hat I was sewing in that pic (bonus points!). The hat reads as follows: ""REGISTERED SEX OFF… https://t.co/rymueodxqx" +06/24/2018,Comedians,@davidcrosss,"Yep. 65,853,514 is definitely more than 62,984,828 --- Ha, love that you tagged @ScottBaio in that.… https://t.co/V3kwRmleWr" +06/24/2018,Comedians,@davidcrosss,"@johnnykwuhhh Johnny, you get the gist but I'm going to give you the EXACT +translation (Google can only do so much)… https://t.co/hqhFqGkeVP" +06/24/2018,Comedians,@davidcrosss,"Hi Jon. Not exactly. More like, ""Tiny Hands = Tiny Brain."" #ohcomeon https://t.co/wyF0WlwhxC" +06/24/2018,Comedians,@davidcrosss,"Thank you! Well, I'll tell ya, it means, ""I BELONG IN PRISON"" but to be EXACT, it translates to,""Prison is Crying f… https://t.co/HM9Q82BqyV" +06/24/2018,Comedians,@davidcrosss,"@stevenfischerky Ha! Understood about having traceable Russian queries +on your computer. Okay, Steve, it translates… https://t.co/IWfgckPDSQ" +06/24/2018,Comedians,@davidcrosss,"Anupam! Wear this hat at the next @realDonaldTrump rally and confuse everyone +within sight. It reads: ""YEAH, BUT HE… https://t.co/czirkk2z65" +06/24/2018,Comedians,@davidcrosss,"RT @eod1140: #ohcomeon, https://t.co/kjAe0dUiLr" +06/24/2018,Comedians,@davidcrosss,@eod1140 Agreed. https://t.co/PFmUKLQ2Do +06/24/2018,Comedians,@davidcrosss,"@dubdunk @realDonaldTrump Will- you sir, are letting the Russian-speaking world know, that you are a Secret… https://t.co/s7kva2M7Q8" +06/24/2018,Comedians,@davidcrosss,@DekeReads Hi Deke. Totally cool to wear to school! Or church or playground or airport or rally or homeless shelter… https://t.co/GfhnioFUh1 +06/24/2018,Comedians,@davidcrosss,"Well now, Thomas (or Doug? I'm confused...) I can help you out with the first part, ""Small Hands = Small ____ ."" No… https://t.co/xm6THIpQZy" +06/24/2018,Comedians,@davidcrosss,"@lucksbane Stephen! Feel bad for Grandpa Joe but your hat translates to, ""72 Year-Old Baby"" so maybe he can wear it too? #OhComeOn" +06/24/2018,Comedians,@davidcrosss,"Close Rebecca! It's, ""Resident Trump."" But I like yours better to be honest. Let's just go with that. #OhComeOn https://t.co/pgoiZ5ycHq" +06/24/2018,Comedians,@davidcrosss,@theladybeav @jfreewright Ha. Didn't even catch that. +06/24/2018,Comedians,@davidcrosss,@EugeneMirman It's really great. Very relaxing too. +06/24/2018,Comedians,@davidcrosss,"I'd like to option this story and make a short movie about it and title it, ""The Sandra Bland Story"". https://t.co/6eKaNhzydD" +06/24/2018,Comedians,@davidcrosss,@EugeneMirman You can't eat there but go to the John Rylands Library in Manchester. One of my favorite places on ea… https://t.co/doZtr8ZdnW +06/24/2018,Comedians,@davidcrosss,RT @nycsouthpaw: It’s strange to talk about a guy who lost the popular vote by three million and has rarely seen an approval rating north o… +06/24/2018,Comedians,@davidcrosss,I know these are awful and soul killing times but in between bouts of deep depression and anxiety I have thoroughly… https://t.co/z6t9dl73TR +06/24/2018,Comedians,@davidcrosss,@StallmansBeard @Pornhub Odd +06/24/2018,Comedians,@davidcrosss,Wait?!?! You have it? Holy shit. This is HUGE! Listen to me closely- do not panic. You need to do two things RIGHT… https://t.co/tRnc28prgZ +06/24/2018,Comedians,@davidcrosss,"@jfreewright ""Riddle me this"". +His whole shtick is basically fleeting pop culture detritus, an, ""anti cool kids"" p… https://t.co/W9YoHUiBpw" +06/24/2018,Comedians,@davidcrosss,@thetigersez @OhNoSheTwitnt Mike Huckabee +06/24/2018,Comedians,@davidcrosss,There's no such thing as white privilege!!! https://t.co/fV9PM1G6BW +06/24/2018,Comedians,@davidcrosss,"RT @CassLovesToTan: @joshtpm Look, I have a closet full of clothes +I know of I'm wearing a tight dress +A shirt that shows cleavage +An outfi…" +06/24/2018,Comedians,@davidcrosss,Seeing this tweet again is like finding 20 bucks in an old pair of pants...then getting a call that your script go… https://t.co/gqnBhFteGc +06/24/2018,Comedians,@davidcrosss,Sad but true. Even my dog knows this: https://t.co/8ftDDqoVMU +06/24/2018,Comedians,@davidcrosss,@TheStrongIsland @_ethiopiangold @TreatWellHealth The irony... +06/24/2018,Comedians,@davidcrosss,@rini6 @punkscience8 Thanks Irene! +06/23/2018,Comedians,@davidcrosss,@easternberg @mmschocolate Yes +06/23/2018,Comedians,@davidcrosss,@bennettcain @ambertamblyn Disturbed it is then. I was just trying to figure out the pretentious part (which is mil… https://t.co/X56VK7C2L8 +06/23/2018,Comedians,@davidcrosss,RT @_ethiopiangold: So my little cousin was selling water and didn't have a permit so this lady decided to call the cops on an 8 year old.… +06/23/2018,Comedians,@davidcrosss,"RT @bust_magazine: We talked to @ambertamblyn about her debut novel, #AnyMan; her involvement with #TimesUp; and more: https://t.co/T2hWEyv…" +06/23/2018,Comedians,@davidcrosss,"@SuzyWong1945 Sorry Suzy, facts dont care about feelings. It's the truth." +06/23/2018,Comedians,@davidcrosss,@SusanMMiller129 I will DEFINITELY be in Dallas. Literally always a fun show. +06/23/2018,Comedians,@davidcrosss,"RT @davidcrosss: Ladies & Gentlemen, tickets are now on sale to the unwashed masses for my latest stand up tour. Go to https://t.co/VXkIfIj…" +06/23/2018,Comedians,@davidcrosss,@bennettcain Distance myself from my legacy? I dont understand. How? Because I talked about my kid? Because I did s… https://t.co/dNw8d1pRQw +06/23/2018,Comedians,@davidcrosss,RT @feministabulous: Two people ran the president's campaign. One of them just mocked the harrowing trauma experienced by a ten-year-old gi… +06/23/2018,Comedians,@davidcrosss,"RT @PoliteMelanie: I have two questions about Space Force: +1) When will Puerto Rico have electricity? +2) When will Flint have clean water?" +06/23/2018,Comedians,@davidcrosss,@pattonoswalt An angry vacuum +06/23/2018,Comedians,@davidcrosss,"RT @DonCheadle: and if msm (i know you’re not including @FoxNews) paid attn, perhaps more ppl would have even known about troubling practic…" +06/23/2018,Comedians,@davidcrosss,"Not sure what the big deal is, he was at Booth 129 at Dragoncon and was announced months in advance. $50 a pop. https://t.co/n8wgeydsmy" +06/23/2018,Comedians,@davidcrosss,"RT @sarahkendzior: US officials who have committed felonies -- provable felonies like lying on clearance forms, which should have led to th…" +06/22/2018,Comedians,@davidcrosss,RT @SteveFNMayer: Was hoping to get a hat quoting caligula. Sad. #fakehat #OhComeOn really though davidcrosss please tell me what it means… +06/22/2018,Comedians,@davidcrosss,"RT @NathanHRubin: The people who hid Anne Frank were breaking the law. + +The people who killed her were following it. + +“Following orders”…" +06/22/2018,Comedians,@davidcrosss,@bennettcain In what way(s)? +06/22/2018,Comedians,@davidcrosss,@mcdoobie Had to reschedule. Is now on jury 23rd. Sorry about that +06/22/2018,Comedians,@davidcrosss,@melaniazulm Yes July 23rd now. Apologies. +06/22/2018,Comedians,@davidcrosss,@kilmeade So that means you're upset that they are not on their way to being reunited with their parents and will s… https://t.co/apl6RyNUCj +06/22/2018,Comedians,@davidcrosss,"Philadelphia friends, looking forward to tomorrow night at The Fillmore! + +Fun fact about Philly: people from Philad… https://t.co/7i8iv8F6lV" +06/22/2018,Comedians,@davidcrosss,"Come on @cazartchronicle give it the ol' Google try at least! Okay here's a hint: the last word is,""puppet.""… https://t.co/ewnosREYjI" +06/22/2018,Comedians,@davidcrosss,"@SteveFNMayer Steve, you got the one that says, (roughly) ""Ahhhh, I get it now."" +You can proudly wear it when the… https://t.co/kr0nzz9sPL" +06/22/2018,Comedians,@davidcrosss,"Thanks Dr! I know what it means and the good doctor clearly does as well but do you? Ron Perlman, you got any ideas… https://t.co/JXKqcSoxlJ" +06/21/2018,Comedians,@davidcrosss,"RT @virgiltexas: In Charles Krauthammer’s honor, here are some links to his essays that are worth reading:" +06/21/2018,Comedians,@davidcrosss,@spmoran @FillmorePhilly Thanks Sean! +06/21/2018,Comedians,@davidcrosss,"@infinitegest Yes, sorry, rescheduled to mid July" +06/21/2018,Comedians,@davidcrosss,"@davedelaney Mostly dead Kennedys, minor threat ""political ""type stuff. But many different bands X, sex pistols, and lots of ""new wave"" too" +06/21/2018,Comedians,@davidcrosss,RT @MattNegrin: this is terrifying https://t.co/ElMnqhTkvn +06/21/2018,Comedians,@davidcrosss,"RT @JuddApatow: When you support any Fox product you support THIS. Let’s all shut off Fox. There are so many channels, so many movies.…" +06/21/2018,Comedians,@davidcrosss,RT @perlmutations: So...your fake president just pussied out. That’s right! He pussied out. Of course he always been a pussy. Because talki… +06/21/2018,Comedians,@davidcrosss,"RT @benwikler: When pressure is working, ramp it UP. + +The minute after the EO, thousands of kids will still be separated from their famili…" +06/21/2018,Comedians,@davidcrosss,"RT @RBReich: The Trump administration on family separations: + +1) It’s a deterrent, zero-tolerance. +2) It’s not happening. +3) The Bible say…" +06/21/2018,Comedians,@davidcrosss,@caycefayce Excellent work. Really. +06/21/2018,Comedians,@davidcrosss,"RT @FillmorePhilly: Calling all comedy fans, this comedian is no joke! 🤣 Only a few days left until @DavidCrosss - Oh Come On Tour takes th…" +06/21/2018,Comedians,@davidcrosss,@lyanrizotte I will be there in July. Sorry about that Ryan. +06/21/2018,Comedians,@davidcrosss,@zackruskin @clusterfest I think it's in mid to late August? +06/21/2018,Comedians,@davidcrosss,RT @OhNoSheTwitnt: Well who else was going to serve the coffee? https://t.co/C7snajuqS3 +06/21/2018,Comedians,@davidcrosss,Holy moly this is AMAZING! Everything about it. Whoever wrote and directed this is a genius. And MJ Hegar is pretty… https://t.co/uCghiM0Cgk +06/21/2018,Comedians,@davidcrosss,RT @classiclib3ral: How had Jordan Peterson never heard this extremely basic counter argument to his position before https://t.co/gTdLm166Hj +06/21/2018,Comedians,@davidcrosss,RT @blainecapatch: if you took my child from me i would eventually kill you +06/21/2018,Comedians,@davidcrosss,Sweetheart check your spelling. You're referring to the porn version. https://t.co/6BYUoUkYnM +06/21/2018,Comedians,@davidcrosss,@realVitaminG Thanks. That was fun. +06/20/2018,Comedians,@davidcrosss,"RT @SRuhle: “YOU HAVE TO UNDERSTAND, +THAT NO ONE PUTS THEIR CHILDREN IN A BOAT +UNLESS THE WATER IS SAFER THAN LAND...” +- Warsan Shire" +06/20/2018,Comedians,@davidcrosss,"RT @LibyaLiberty: If we get rid of the lot of you, we won’t face either choice. https://t.co/bP7riVjk0r" +06/20/2018,Comedians,@davidcrosss,Thread https://t.co/3sG69JtN4n +06/20/2018,Comedians,@davidcrosss,"Dont forget folks, this was the end game all along. This is what Bush tried to float but nobody had the stomach for… https://t.co/V5VxeUQRmy" +06/20/2018,Comedians,@davidcrosss,@iChrisSommers Good question! I think maybe this one. What do you think @MichaelAvenatti? Too soon? #BASTA… https://t.co/6KeMMnC6wt +06/20/2018,Comedians,@davidcrosss,"@Liz_Wheeler But I thought that, according to Trump, it's a ""democratic law"" requiring him to separate families. If… https://t.co/SozTAuT7KX" +06/20/2018,Comedians,@davidcrosss,From over a year and a half ago... https://t.co/6ZQtaqMZKe +06/20/2018,Comedians,@davidcrosss,"RT @misterbumface: The Holocaust was legal. Slavery was legal. Segregation was legal. + +The brave woman who cared for and hid my 6 year-old…" +06/20/2018,Comedians,@davidcrosss,"""IF YOU WERE A FLAG I'D HUG YOU!"" https://t.co/PCpIIMt2sq" +06/20/2018,Comedians,@davidcrosss,Like vinyl? Like treason? Well do I have a product for you!!! https://t.co/hxrBsgd32o https://t.co/L5N97DjWyI +06/20/2018,Comedians,@davidcrosss,RT @ikebarinholtz: Take a look at the republicans clapping and smiling while these toddlers are being locked in cages and know that the ONL… +06/20/2018,Comedians,@davidcrosss,RT @pattonoswalt: SIGNAL BOOST THIS TO THE RIM OF THE UNIVERSE EVERYONE https://t.co/ktFpvTVHqE +06/20/2018,Comedians,@davidcrosss,"RT @WilDonnelly: The Nazi collaborators making millions from ripping children and babies from their mothers and imprisoning them are: +Compr…" +06/20/2018,Comedians,@davidcrosss,"Portland thanks so much! And thanks for the lobster roll. Burlington, Janelle and I are headed your way. Still some… https://t.co/WBiPpeww2l" +06/19/2018,Comedians,@davidcrosss,...almost done… standby for more info tomorrow (and if you’re not already on my email list… https://t.co/NppsixEPyx) https://t.co/KHVQueWOW4 +06/19/2018,Comedians,@davidcrosss,RT @robdelaney: 3/3/17 https://t.co/Eu93vH3bPl +06/19/2018,Comedians,@davidcrosss,"RT @ikebarinholtz: Yes, we hate that Trump’s name is on the ground in front of a Lady Foot Locker and is always covered in spit and/or urin…" +06/19/2018,Comedians,@davidcrosss,"RT @ACLU: The FCC may let Sinclair Broadcasting Group become the largest owner of local TV stations in history. + +Sinclair has been exposed…" +06/18/2018,Comedians,@davidcrosss,"Or, you know, the exact opposite. https://t.co/qtXw8g86wD https://t.co/SrUb185svy" +06/18/2018,Comedians,@davidcrosss,"@ianslessor ""Two wrongs"" brother." +06/17/2018,Comedians,@davidcrosss,@normmacdonald I'm talking about little kids. *most* little kids dont know any of that stuff. Look I've read Lord o… https://t.co/UfwU9hHism +06/17/2018,Comedians,@davidcrosss,"RT @shannoncoulter: This is Phebe Novakovic. She's CEO of General Dynamics, which has a lucrative contract w/ Office of Refugee Resettlemen…" +06/17/2018,Comedians,@davidcrosss,RT @Slate: A running list of how to help fight family separation at the border: https://t.co/lPFwWxmUTG https://t.co/79h9XWaYSU +06/17/2018,Comedians,@davidcrosss,RT @kumailn: The family separation stuff is too much to process. It's much easer to push it away and not think about it. But that won't sto… +06/17/2018,Comedians,@davidcrosss,This Fathers day let's not let evil and selfishness win. 4 all the children who don't know what hate or nationalism… https://t.co/RTzPTcH7vJ +06/17/2018,Comedians,@davidcrosss,"RT @RVAwonk: Trump keeps trying to blame Democrats, but here's John Kelly in March 2017 talking about implementing forced separation for im…" +06/17/2018,Comedians,@davidcrosss,"@WWEGraves @jimandsamshow I think time and mass mutual experience (at this rate eventually everyone, at some point,… https://t.co/28flbeE1G9" +06/17/2018,Comedians,@davidcrosss,@drisc_peep Sorry. Truly sorry. I'm bummed too. +06/17/2018,Comedians,@davidcrosss,@fiorski I'm disappointed too. Hopefully I'll be able to get there at some point soon. +06/17/2018,Comedians,@davidcrosss,"It’s #FathersDay, but right now, Trump is ripping children away from their fathers at the border. Together we can s… https://t.co/yo1bunKife" +06/17/2018,Comedians,@davidcrosss,RT @MediatedReality: Looking for funny this morning and instead found a great conversation from @davidcrosss about poverty & disenfranchise… +06/17/2018,Comedians,@davidcrosss,@nalbeadz It totally did Tom! Been doing it ever since. God bless. You're a good man. +06/17/2018,Comedians,@davidcrosss,@easternberg @goliathtv Thanks sir. That was fun to do +06/17/2018,Comedians,@davidcrosss,@Splinterette @goliathtv @ambertamblyn @JordanPeele @chelseaperetti Bless +06/17/2018,Comedians,@davidcrosss,@nolafilm @janellejcomic Me too! +06/17/2018,Comedians,@davidcrosss,"Providence! That was a blast! Thank you so much. Really fun show. +Does anyone know what that one incoherent (drunk… https://t.co/u9Hb6NS09t" +06/16/2018,Comedians,@davidcrosss,RT @jaketapper: Thread https://t.co/EvtEjB64aV +06/16/2018,Comedians,@davidcrosss,RT @PoliteMelanie: Those who were mad at Michelle Obama because she said that kids should eat vegetables are completely fine with Trump put… +06/16/2018,Comedians,@davidcrosss,Providence here we come! The lovely miss Janelle James and I are I95 headed your way. Looking forward to tonight. T… https://t.co/LNlHJxVwaj +06/16/2018,Comedians,@davidcrosss,"Fairsley Foods strikes again. +https://t.co/iKdahevcVu" +06/15/2018,Comedians,@davidcrosss,"Tell those catchers to stop kneeling! +https://t.co/tddWzwtgOC + +Shared from my Google feed" +06/15/2018,Comedians,@davidcrosss,I really enjoyed doing this. Thanks Michael @michaelianblack https://t.co/q7Bjhoj9OR +06/15/2018,Comedians,@davidcrosss,Let's not forget that someone made millions of dollars coming up with Russian dressing. They mixed mayonnaise with… https://t.co/bvAeU2nfiS +06/15/2018,Comedians,@davidcrosss,"RT @staceyabrams: “Abrams’ platform draws from her own experiences and those of others struggling to attain better lives for themselves, th…" +06/15/2018,Comedians,@davidcrosss,"RT @krassenstein: BREAKING: Chrystia Freeland, the Canadian Foreign Minister said today that she has not ruled out the possibility of retal…" +06/14/2018,Comedians,@davidcrosss,@kumailn That's the last time I take you for chicken 'n' biscuits. +06/14/2018,Comedians,@davidcrosss,"RT @janellejcomic: Comedian pay is so arbitrary its like ""here's 300 bucks to write for the president or 10,000 to host this rooster pagean…" +06/13/2018,Comedians,@davidcrosss,"RT @michaelianblack: New episode of ""How to Be Amazing"" with @davidcrosss just out. We GO THERE!!! (I'm not sure what I mean by that.) http…" +06/13/2018,Comedians,@davidcrosss,RT @Rob_Hoffman: did you know @realDonaldTrump once cut off healthcare benefits to his *nephew* who had cerebal palsy while the family was… +06/13/2018,Comedians,@davidcrosss,"@danharmon @stalewaffles @_mandydee He had me at, ""help I don't understand humor"".💕💕💕" +06/13/2018,Comedians,@davidcrosss,RT @kenklippenstein: https://t.co/IIaGE9X5Rx +06/13/2018,Comedians,@davidcrosss,"""Those who say making 85 million dollars in one year through illegal and treasonous corruption can not be done, sh… https://t.co/TbTuritRwz" +06/13/2018,Comedians,@davidcrosss,"But going to camp is fun right? +Wonder what are the showers at this ""camp"" are like. https://t.co/zcMCU9Lq7S" +06/12/2018,Comedians,@davidcrosss,RT @danharmon: (this is your weekly reminder that my twitter feed is not a forum and I am not here in any type of service to you and I will… +06/12/2018,Comedians,@davidcrosss,RT @JohnFugelsang: People who cheered Trump for defunding Planned Parenthood are now cheering him for meeting w/a govt that forces women to… +06/12/2018,Comedians,@davidcrosss,"@MattOswaltVA Please don't tell me the ""B"" stands for burgers. That'd be worse than an all female Oceans 11 spinoff" +06/12/2018,Comedians,@davidcrosss,I love you. Marlow loves you. Good people love you. Oh and your book is amazing. Also I got you that mortadella tha… https://t.co/FV6Q1dFkdw +06/12/2018,Comedians,@davidcrosss,RT @mattyglesias: Liberal elites may have cheered this step forward for fairness but Real Americans in the Heartland felt their values were… +06/12/2018,Comedians,@davidcrosss,"I'm back on Twitter. +Been awhile. +Is America still a shining beacon of morality and a champion of basic, human ri… https://t.co/tgw5p3mArv" +05/24/2018,Comedians,@davidcrosss,I have been off Twitter at the behest of my wife. I have apologized to Jessica in private (the way I prefer to cond… https://t.co/a9h41zYyKb +05/23/2018,Comedians,@davidcrosss,"RT @OhNoSheTwitnt: Trump yesterday: All children are a gift from God. + +Trump today: Children look so innocent but the brown ones are evil.…" +05/23/2018,Comedians,@davidcrosss,@TheWhitneyBrown No you did! I was 18. We did stand up in...Augusta I want to say? +05/23/2018,Comedians,@davidcrosss,"The beauty of late night TV. You won't see this on GMA mothereffers. +https://t.co/dMdJ67cceW" +05/23/2018,Comedians,@davidcrosss,RT @LadyBusiness_: One Weird Trick To Getting Universal Healthcare That American Insurance Companies Don't Want You To Know https://t.co/Iv… +05/23/2018,Comedians,@davidcrosss,RT @jfreewright: So at least one person from each team do it. #Next https://t.co/oAj3hVbU98 +05/23/2018,Comedians,@davidcrosss,"Picked on CONSTANTLY, had pennies and dimes thrown at me as kids said, ""pick it up jew"", my sister was urinated on… https://t.co/GN4xC1cFer" +05/22/2018,Comedians,@davidcrosss,That was fucking fun! I'm on Late Night with Stephen Colbert tonight. Had a blast. I do love that guy. Check it out if you're so inclined. +05/22/2018,Comedians,@davidcrosss,@benschwartzy Thank you Ben +05/22/2018,Comedians,@davidcrosss,@JAdomian Ha! The heat of shame rising within. +05/22/2018,Comedians,@davidcrosss,"Well now here's something that everyone, rich or poor, conservative or liberal, white or of color, American by birt… https://t.co/LhbVrEreRG" +05/21/2018,Comedians,@davidcrosss,"RT @B_Ehrenreich: Why are people poor? Because they are uneducated? No, because (1) they are paid so little for their work and (2) the pitt…" +05/21/2018,Comedians,@davidcrosss,RT @kenklippenstein: https://t.co/BLnHlz9LEH +05/21/2018,Comedians,@davidcrosss,"RT @breebxtler: hey tonya, 10 of my classmates died yesterday and 10 others were injured. i would LOVE to lecture any texan on gun laws. ht…" +05/20/2018,Comedians,@davidcrosss,"RT @somethingawful: 2017 ALT RIGHT: there is no such thing as ""white male privilege!"" + +2018 ALT RIGHT: if women refuse to fuck us, we cann…" +05/19/2018,Comedians,@davidcrosss,RT @RacismFactory: https://t.co/P346uYoGMo +05/18/2018,Comedians,@davidcrosss,Me too. Gonna be fun. https://t.co/cInhavrQay +05/18/2018,Comedians,@davidcrosss,"RT @MarcHilberer: the number of school shootings that have happened since the year 2000 around the world: + +ENGLAND: 0 +GREECE: 1 +NETHERLAN…" +06/29/2018,Comedians,@ofctimallen,Could not have come as far as I have without the love and support of my family #family #MomAndDad #Siblings… https://t.co/wWZKQkmUrJ +06/28/2018,Comedians,@ofctimallen,Mark your calendar for Sept. 28th! @LastManStanding #LastManStanding https://t.co/JMHMFzXZ0R +06/27/2018,Comedians,@ofctimallen,As promised… the long and winding road of car fabrication https://t.co/SgAATshC8U #MetalWork #Handmade #Suspension #Custom @BodieStroud +06/26/2018,Comedians,@ofctimallen,"Summer is the perfect time to get active & enjoy some sunshine. With prices like the 80’s, there's no better time t… https://t.co/hf4diqqFse" +06/26/2018,Comedians,@ofctimallen,We had great shows in Appleton and Milwaukee and got an actual press review. Laughed at the description of one of m… https://t.co/z0bb4o3qzd +06/22/2018,Comedians,@ofctimallen,Mojay Lake; A heartbreaking documentary. Welcome to summer! #summerTime #michigan #cherries #familyVacation… https://t.co/EP8ZIvXGEJ +06/20/2018,Comedians,@ofctimallen,I love art and Tobin's work is some of my favorite. @realTobinSprout #TobinSprout #photorealism #expressionism #art https://t.co/mX3YwcgQgA +06/20/2018,Comedians,@ofctimallen,As promised...Keeping all the butts together #UseItOrLoseIt #welding #fender #bumper #line @BodieStroud https://t.co/8pVd8yQ6Jr +06/19/2018,Comedians,@ofctimallen,Dodge is auctioning off the last production Viper and Demon at Barrett-Jackson June 23rd. All proceeds will be dona… https://t.co/AsHznOPO7K +06/18/2018,Comedians,@ofctimallen,If I were to take one thing from this video it’s the art of sarcasm is not lost on Michiganders #sarcasm… https://t.co/EiUNc9OB1z +06/15/2018,Comedians,@ofctimallen,Happy father's day! Proud to be a father to all my scripted & unscripted children #fathersday #work… https://t.co/4PUfefvyeD +06/13/2018,Comedians,@ofctimallen,As promised...Vegas anyone?... Mirage?... July 28th? #roadtrip #Vegas #mileage #gas #coffee @BodieStroud https://t.co/T1DzdS5Xmg +06/11/2018,Comedians,@ofctimallen,Hands down the cleanest interview I’ve ever had #mondayMadness #manCrushMonday #motivationMonday #shower #clean… https://t.co/vJbf1OVLI4 +06/09/2018,Comedians,@ofctimallen,Wow still sinking in...we will be back making shows. We are all so geeked. +06/08/2018,Comedians,@ofctimallen,Here's from one of my crazy employees #flashbackFriday #CatBallou #HomeImprovement #ToolTime https://t.co/ZhKtVVb1Lx +06/06/2018,Comedians,@ofctimallen,As promised... every hot rod has a story https://t.co/ThcYcNrdA6 #custom #build #Ford #history #story @BodieStroud +06/04/2018,Comedians,@ofctimallen,Merry Christmas Monday because who doesn’t like Christmas in July? I mean June. #santaclause #bloopers #olympics… https://t.co/W1A9ElKfux +06/01/2018,Comedians,@ofctimallen,Current demo reel #FlashbackFriday #eggs #SillyPutty #local #Birmingham #Oldsmobile https://t.co/kH6gKNsZEG +05/30/2018,Comedians,@ofctimallen,As promised... Still amazes me the things humans are capable of making with their hands #customCar #handmade… https://t.co/y94dtU11hs +05/25/2018,Comedians,@ofctimallen,Looking forward to being back with the LMS family again #LastManStanding @LastManStanding @FOXTV https://t.co/FeWBp7YYHq +05/23/2018,Comedians,@ofctimallen,As promised... the build that never ends https://t.co/fuq3mUEvgF #custom #build #engine #horsepower #Ford… https://t.co/IXrvgrkr9q +05/21/2018,Comedians,@ofctimallen,Memory Monday...here's part of my journey https://t.co/nD2Nfoocuh #neverGiveUp #neverSurrender #DoTheWork +05/18/2018,Comedians,@ofctimallen,See you tonight San Diego! 8pm at Copley Symphony Hall https://t.co/vf0vzhVLn9 +05/18/2018,Comedians,@ofctimallen,"Friday funny flashbacks...Crazy on the Outside... +https://t.co/nBzgq5kUAO #FBF #fridayfunnies #gagReel" +05/18/2018,Comedians,@ofctimallen,"If you're looking for some laughs tonight, I'll be at the @TheLaughFactory in Hollywood 7:45pm https://t.co/clDvaDZyRa" +05/17/2018,Comedians,@ofctimallen,It's ON! Thanks for keeping on people. +05/16/2018,Comedians,@ofctimallen,"Come see me live-Thurs, Fri and Sat https://t.co/2tJlF3bmw2 @TheLaughFactory #CopleySymphonyHall +@TCCTucson… https://t.co/jH8Shgyt0x" +05/16/2018,Comedians,@ofctimallen,New episodes this fall #LastManStanding @FOXTV @LastManStanding https://t.co/9I40bslKkb +05/16/2018,Comedians,@ofctimallen,As promised... https://t.co/oGxY7vhJQe I'm super geeked to see what the motor looks like in the Vik #Ford… https://t.co/Egq6CPFwro +05/14/2018,Comedians,@ofctimallen,Just a teaser for you. Looking forward to this fall #LastManStanding @FOXTV @LastManStanding https://t.co/vWBRRMT1xR +05/14/2018,Comedians,@ofctimallen,"Takes a lot of people to make a movie. However, not even Travolta can make me put my camcorder down. Camcorder, di… https://t.co/JgW6QLtHq0" +05/11/2018,Comedians,@ofctimallen,New season this fall! https://t.co/qhSdY48WT2 #LastManStanding https://t.co/REYt6yYXbV +05/11/2018,Comedians,@ofctimallen,"Thanks to all you guys for the support. +We are back!" +05/10/2018,Comedians,@ofctimallen,A strong wind just filled our main sail. +05/09/2018,Comedians,@ofctimallen,As promised... https://t.co/IAryM4ipJ8 The art of welding @BodieStroud #welding #Ford #ElectricCar #FordVicky +05/09/2018,Comedians,@ofctimallen,Come see me next weekend in San Diego & Tuscon. https://t.co/2tJlF3bmw2 @SanDiegoSymph @TCCTucson https://t.co/zjWVhb1SdE +05/08/2018,Comedians,@ofctimallen,"Check out my youtube channel. Here's an easy way to get back to it and my other social media + Scan the QR code or c… https://t.co/WxTLLWp4VC" +05/03/2018,Comedians,@ofctimallen,They heard all your voices people!! LMS just might be a reality. Keep it up. Who wants more #LastManStanding ? +05/03/2018,Comedians,@ofctimallen,stay tuned +05/03/2018,Comedians,@ofctimallen,Here's some more horsepower. Check it out tonight! https://t.co/mZMmY9TVUy +05/02/2018,Comedians,@ofctimallen,As promised... more horsepower? https://t.co/fZa8UKOSOF #horsepower #ElectricCar @BodieStroud +05/02/2018,Comedians,@ofctimallen,Check it out tomorrow night. @LenosGarage Thursday at 10p ET on CNBC! #JayLenosGarage https://t.co/ew54mHO9gP +05/01/2018,Comedians,@ofctimallen,More behind the scenes- gag reel https://t.co/7acuwFEa48 #LastManStanding #gagReel +04/30/2018,Comedians,@ofctimallen,"Ok, so I'll play too. Here's one of my first headshots #OldHeadshotDay https://t.co/x7z3BpeFg5" +04/30/2018,Comedians,@ofctimallen,Jay and I are at it again. Check us out on Thursday! #JayLenosGarage https://t.co/oqNNIQlZT1 +04/27/2018,Comedians,@ofctimallen,Continued laughs with this crew https://t.co/0q2VquWIl2 #laughter #GagReel #LastManStanding +04/27/2018,Comedians,@ofctimallen,Hanging out with an alternate personality. https://t.co/5VZmOlp45p +04/26/2018,Comedians,@ofctimallen,RT @calvertwcsx: RRR! Tim Allen @ofctimallen is back home tonight to perform a benefit concert for Forgotten Harvest. My old buddy stopped… +04/25/2018,Comedians,@ofctimallen,As promised https://t.co/mV9G9tnqvx Anyone have questions about the progress so far? Get some of your answers in th… https://t.co/5Vw7Nmck41 +04/23/2018,Comedians,@ofctimallen,We really had some good laughs on this show. I loved working with these people. We really had some good laughs on… https://t.co/TiZDV5mqgr +04/21/2018,Comedians,@ofctimallen,"Motorcity +I saw Pryor kick this place up! +Hard to believe I am working same sold out venue. https://t.co/QQMfBqH5AN" +04/18/2018,Comedians,@ofctimallen,As promised ... https://t.co/jMgcCjDIqo #hotrod #electricCar #IRS #sound +04/16/2018,Comedians,@ofctimallen,Mid-afternoon Monday pick-me-up https://t.co/xVmfg0wyZ7 #gagReel #LastManStanding #socks +04/12/2018,Comedians,@ofctimallen,TONIGHT! @ComicTreStewart @frazercomedy @TheLaughFactory #comedy #standup https://t.co/2za3qNXSVB +04/11/2018,Comedians,@ofctimallen,As promised https://t.co/CYLioBLEdT Electric? Hot rod? What do you think? #hotrod #electricCar #pedicure +04/10/2018,Comedians,@ofctimallen,Bloopers are the best! So fun to look back on these good times. https://t.co/1zF7umAsVq #LastManStanding #gagReel #bloopers #branMuffin +04/10/2018,Comedians,@ofctimallen,Merry Christmas Monday! https://t.co/ZfLfAcBKlN #SantaClause #christmas +04/05/2018,Comedians,@ofctimallen,As promised https://t.co/peh6jsKqiS - check back next week to meet more of the people who are smart enough not to… https://t.co/aviPt8vZ2j +03/28/2018,Comedians,@ofctimallen,"As promised, part deux. Check back next week to find out why I named him Viktor https://t.co/2gNDMpJIoV #crownvictoria #vicky #Ford #30s" +03/21/2018,Comedians,@ofctimallen,"As promised, meet Viktor. Check back next week to see the progress. https://t.co/5wAgaKvkyo #crownvictoria #vicky #Ford #30s" +03/17/2018,Comedians,@ofctimallen,Doors just opened for first of two sold outs in Eugene. Great crew and cool venue. https://t.co/R2DaFkKoCG +03/17/2018,Comedians,@ofctimallen,All good tonite! https://t.co/Zxt3mtB2W2 +03/17/2018,Comedians,@ofctimallen,Ah.... those damn nice folks in Stockton left us a cake to enjoy. This was a hot crowd! Great venue. https://t.co/pkIP0g60nH +03/15/2018,Comedians,@ofctimallen,Hard to believe it's been about 30 years #tbt https://t.co/vCbtew9jXC +03/13/2018,Comedians,@ofctimallen,"Thanks for helping us sell out our show in Eugene, we added a second show at 5pm! Hope to see you there!… https://t.co/P8Ck6QKVO8" +03/11/2018,Comedians,@ofctimallen,"Doors just opened +Fill her up +Get them laughing https://t.co/6NVA0CsHha" +03/10/2018,Comedians,@ofctimallen,Oakland show finished sound check now it's close to showtime https://t.co/joa6gNYdVh +03/05/2018,Comedians,@ofctimallen,Hey Northern CA- I'll be in Oakland on Saturday. Hope to see you there. #standup #Oakland @OakParamount https://t.co/Y0D0iXdtN9 +03/02/2018,Comedians,@ofctimallen,Here's another from the archives. #boxing https://t.co/LCTnPgljYu +03/02/2018,Comedians,@ofctimallen,Need some weekend plans? I'll be at the Mirage tonight and Saturday night https://t.co/d1gALrLc9X @TheMirageLV… https://t.co/PDc5H3MLZT +02/27/2018,Comedians,@ofctimallen,"One of the biggest highlights of my career #standup #goals #JohnnyCarson #TonightShow +https://t.co/J9OGqTswSb" +02/26/2018,Comedians,@ofctimallen,"We have a debate in the office about posting this video. I think it's too weird, the office thinks it's just weird… https://t.co/36mZ01bd9b" +02/23/2018,Comedians,@ofctimallen,Some of you have asked for more car videos. Here you go- from high school. #movie #filmmaker #motion #Woodward… https://t.co/4WGpQpc4Jb +02/22/2018,Comedians,@ofctimallen,Cool ride with the Blue Angels during HI. Glad I didn't vomit. https://t.co/E3RaKjnSii #homeImprovement #BlueAngels #Aviators #Navy #Flying +02/20/2018,Comedians,@ofctimallen,Glad to report I am very happy with my purchase. Stay tuned for my 1934 Ford Vicky #2017FordGT #FordVicky @Ford https://t.co/hmemSfjKNm +02/20/2018,Comedians,@ofctimallen,"Space, the final frontier https://t.co/uBDpq7UFGM #LastManStanding #vlog" +02/15/2018,Comedians,@ofctimallen,"My heart is broken for the loss of life in Florida. My deep, deep sympathy to all those families." +02/14/2018,Comedians,@ofctimallen,"Nothing like the roar of an engine. ""Licorice Special"" by Steve Moal https://t.co/xwR1wId4s5 +@MoalInc #Moal #licorice" +02/13/2018,Comedians,@ofctimallen,"If anyone needs help with their workout today, here's some tips https://t.co/pSdCYIMUAv #workout #exercise #gym #getFit" +02/13/2018,Comedians,@ofctimallen,Prepping for my stand up back in the day. https://t.co/i1De7G6nIb @Sears @Craftsman #HomeImprovement #craftsman #serious #tools #standup +02/12/2018,Comedians,@ofctimallen,I'll be at the @TheLaughFactory this Thursday at 7:45pm with @ComicTreStewart @frazercomedy #comedy #standup https://t.co/4JgWawnjGB +02/09/2018,Comedians,@ofctimallen,A quick intro to my silver spaceship. How's my hair? https://t.co/s8kGxxPXMt #FordGT #Supercar #TimAllen #morepower #2017FordGT +02/04/2018,Comedians,@ofctimallen,Stage is set..... https://t.co/leeYUmvMer +02/04/2018,Comedians,@ofctimallen,Doors open! Show in 30min https://t.co/vEvvg56xPT +02/04/2018,Comedians,@ofctimallen,Backstage gift from great staff at the Peabody Opera House https://t.co/GFAXgdiXzc +02/03/2018,Comedians,@ofctimallen,https://t.co/pSJEyLRoHg +02/03/2018,Comedians,@ofctimallen,Kansas City....its showtime! https://t.co/MJnDfjt5uD +01/18/2018,Comedians,@ofctimallen,I added a video to a @YouTube playlist https://t.co/I6EKGp5gNm My Territory +01/18/2018,Comedians,@ofctimallen,I added a video to a @YouTube playlist https://t.co/6wG2YF1Cqg Women Accessorize +01/16/2018,Comedians,@ofctimallen,Who doesn’t love a classic Monday Morning Marching Band Pick-Me-Up? https://t.co/aLoPf7oN6O +01/14/2018,Comedians,@ofctimallen,Crowd coming in Denver https://t.co/6PI2iuxjlQ +01/10/2018,Comedians,@ofctimallen,Updating the Tim Allen website and came across these video clips. Good memories. https://t.co/6nNWHB5D5p via @YouTube +12/23/2017,Comedians,@ofctimallen,@ConorHurley007 @louisviuttondon Or I have big sore thumbs +12/20/2017,Comedians,@ofctimallen,Enjoying the Lions game. Lucky to be with coach Jim Caldwell & I’m guessing his grandchild that couldn’t care less… https://t.co/k5Ky8PrR5U +12/19/2017,Comedians,@ofctimallen,On Netflix now #MerryChristmas #ElCaminoChristmas @netflix https://t.co/UGUDAJmsWQ +12/08/2017,Comedians,@ofctimallen,Check it out tomorrow! #ElCaminoChristmas on @netflix https://t.co/Mq8XZnMn5X #MerryChristmas +12/03/2017,Comedians,@ofctimallen,Signing stuff for crowd out front https://t.co/WY0ehc9aqk +12/03/2017,Comedians,@ofctimallen,I am actually somewhat larger in person. https://t.co/LgwBuDWeij +12/03/2017,Comedians,@ofctimallen,Filling Kodak Center up here in Rochester NY #comedy#timallen#standup https://t.co/NdRfxvhVqI +11/22/2017,Comedians,@ofctimallen,El Camino Christmas on Netflix Dec. 8th. Just a note to parents... this isn't a movie for kids! Check out the trai… https://t.co/InyN6oikon +11/20/2017,Comedians,@ofctimallen,El Camino Christmas- December 8th on Netflix! https://t.co/s87nHimddl https://t.co/6ENzaLXRbj +11/17/2017,Comedians,@ofctimallen,"Great fun to be interviewed by Peter Billingsley https://t.co/6HVAXrb5hv +@OfficialPeterB Wednesday, Nov. 22 at 10… https://t.co/y1dlqvpzYA" +11/17/2017,Comedians,@ofctimallen,Oh boy https://t.co/aj2c2StV6t +11/17/2017,Comedians,@ofctimallen,My opening act some local band. https://t.co/Ad3Rg4vaQB +11/17/2017,Comedians,@ofctimallen,"It's Showtime Clearwater, Florida. https://t.co/Rup3dWbpyJ" +11/03/2017,Comedians,@ofctimallen,"@DanaPerino Miracle Whip and Peter Pan on Wonder Bread, never heard that before, A Denver boys favorite as a kid too." +10/21/2017,Comedians,@ofctimallen,Sound check Tacoma https://t.co/GzSzADQpOE +10/21/2017,Comedians,@ofctimallen,Almost Showtime Salt Lake City! https://t.co/EZUfSYzTU7 +10/20/2017,Comedians,@ofctimallen,RT @liveattheeccles: Meredith & AJ of @941kodj talk with @ofctimallen about his upcoming show #AtTheEccles 10/20 https://t.co/3VhpSWaSBs +10/20/2017,Comedians,@ofctimallen,"RT @RadiofromHell: Tim Allen is coming to the Eccles Theater this Friday, October 20th and chatted with Radio From Hell's Richie T.... http…" +10/20/2017,Comedians,@ofctimallen,See you tonight @liveattheeccles in UT and Sat night at Emerald Queen Casino in WA https://t.co/jCUQsKp2J8 +10/19/2017,Comedians,@ofctimallen,RT @ComedyCastle: Some familiar faces were at the club today. @jayleno & @ofctimallen filmed a spot for @LenosGarage. Look for it on air th… +10/19/2017,Comedians,@ofctimallen,RT @ComedyCastle: Who says men won’t stop and ask for directions? We had a great time filming for @LenosGarage with @ofctimallen and @jayle… +10/19/2017,Comedians,@ofctimallen,"RT @ComedyCastle: We had an early 80s class reunion last night after @ofctimallen's show. We may have less hair, but are still just as funn…" +10/18/2017,Comedians,@ofctimallen,Hey Salt Lake City- I'll be there this Friday Oct 20th! Hope to see you there. @ecclestheater 8pm #comedy #Standup https://t.co/SS2ZzITcuB +10/11/2017,Comedians,@ofctimallen,Heading to @icehousecomedy on Friday Oct 13th 8pm. Hope to see you! #comedy #standup @ComicTreStewart @frazercomedy https://t.co/0adfCmmYY8 +10/02/2017,Comedians,@ofctimallen,Deeply sad at the horrific killing in Las Vegas. +09/28/2017,Comedians,@ofctimallen,@TheLaughFactory @ComicTreStewart @frazercomedy will be there too +09/28/2017,Comedians,@ofctimallen,"I'll be in Kansas City, MO & St. Louis, MO in Feb 2018 https://t.co/RPazuWOKQ6 https://t.co/Tf9hM8mLQ7" +09/28/2017,Comedians,@ofctimallen,"@NANCI37 @TheLaughFactory I'll be in Rochester, NY 12/2/2017 https://t.co/RPazuWOKQ6" +09/28/2017,Comedians,@ofctimallen,TONIGHT! Hollywood @TheLaughFactory 7:45pm https://t.co/ctjurXGhnN +09/28/2017,Comedians,@ofctimallen,RT @TheLaughFactory: TONIGHT! @ofctimallen returns to the Laugh Factory! #comedy #thursday #hollywood TIX: https://t.co/KQfj9TyKAp https:/… +09/27/2017,Comedians,@ofctimallen,Hope to see you tomorrow in Hollywood! 7:45pm @TheLaughFactory https://t.co/1tMzAbngT9 +09/17/2017,Comedians,@ofctimallen,Pacing backstage. https://t.co/NipRHdFsDm +09/17/2017,Comedians,@ofctimallen,Almost showtime... https://t.co/Mg3LrrBXRg +09/16/2017,Comedians,@ofctimallen,The event staff made me a special snack treat marshmallow treats https://t.co/gjTH6jmyND +09/16/2017,Comedians,@ofctimallen,"The audience still loves me doing the #Tooltime grunt. So... +#RRR" +09/15/2017,Comedians,@ofctimallen,"Landed Ames Iowa, finished sound check in this bad ass theater the sold out Stephens Auditorium off to eat and get… https://t.co/eElvmlXgZS" +09/14/2017,Comedians,@ofctimallen,Tonight! 7:45pm @TheLaughFactory @ComicTreStewart @frazercomedy https://t.co/8jLZm6ZkYC +09/14/2017,Comedians,@ofctimallen,"RT @TheLaughFactory: ALMOST 24 HOURS UNTIL @ofctimallen! +Thursday at 7:45 pm; let the really advanced lying begin. https://t.co/tDgxbJxCfs" +09/11/2017,Comedians,@ofctimallen,The laughs are actually happening a little earlier... 7:45pm Thursday @TheLaughFactory @ComicTreStewart @frazercomedy +09/11/2017,Comedians,@ofctimallen,"RT @TheLaughFactory: Rumor has it we've got an exciting week ahead of us. +Maybe some @ofctimallen? +With a little bit of @moshekasher? +Did…" +09/11/2017,Comedians,@ofctimallen,Thursday! 8pm Hollywood @TheLaughFactory @ComicTreStewart @frazercomedy https://t.co/IGtCNmZo93 +09/07/2017,Comedians,@ofctimallen,"heading to Ames, IA next Friday Sept. 15. https://t.co/RPazuWOKQ6 @StephensAud Hope to see you there!" +08/31/2017,Comedians,@ofctimallen,I'll be in Salt Lake City at @liveattheeccles on Oct. 20th. Hope to see you there! +08/29/2017,Comedians,@ofctimallen,@AJRinDC maybe a few new vlogs soon +08/29/2017,Comedians,@ofctimallen,@C_Friedel88 Dec 1 Reading as close as this tour gets +08/29/2017,Comedians,@ofctimallen,@molaitdc might just be some NEW vlogs coming stay tuned +08/22/2017,Comedians,@ofctimallen,@manymirages if you have to ask..... +08/21/2017,Comedians,@ofctimallen,RT @SlickerSusan: @ofctimallen @HRRocksinoNP Loved your show last night was totally amazing +08/21/2017,Comedians,@ofctimallen,RT @howe_stacy: @ofctimallen @HRRocksinoNP Your show was hilarious 😂 +08/21/2017,Comedians,@ofctimallen,"RT @TaylorNoyes89: Thanks so much for taking the time out to meet with fans in Aurora! Im so happy i was able to meet you, your a great g…" +08/21/2017,Comedians,@ofctimallen,@bmarch84 Friday Oct 20 +08/21/2017,Comedians,@ofctimallen,@Garden_Warrior. Nov 16 Clearwater Ruth Eckerd Hall and then Naples at the Naples Hayes Hall the 17 Nov +08/20/2017,Comedians,@ofctimallen,RT @37christopher73: You killed it @ofctimallen. Haven't laughed that hard in quite awhile! I was in tears at one point! @ParamountAurora +08/19/2017,Comedians,@ofctimallen,Try this. If Jimmy cracked corn and no one's cares why did we sing a song about him. +08/19/2017,Comedians,@ofctimallen,Maybe I will do the ape evolved bit at the gig in the wonderful Paramount theater in IL https://t.co/GfUA7JWh5x +08/18/2017,Comedians,@ofctimallen,"Looking forward to @HRRocksinoNP in Northfield, OH Saturday night" +08/17/2017,Comedians,@ofctimallen,Comedy ain't pretty and to some not so funny +08/16/2017,Comedians,@ofctimallen,"Excited to come to the Paramount Theatre in Aurora, IL on Friday! +@ParamountAurora" +08/16/2017,Comedians,@ofctimallen,If we evolved from apes why are there still apes. +08/07/2017,Comedians,@ofctimallen,"I’m coming home Detroit! + +Get tickets for Sept 17th here! +See you @RoyalOakMusic https://t.co/igG2Usf0f7" +07/09/2017,Comedians,@ofctimallen,Somebody thinks I need a new direction https://t.co/dlOvQzGZ1T +07/09/2017,Comedians,@ofctimallen,Sound check done...showtime in four https://t.co/ePlXVq2BcZ +06/23/2017,Comedians,@ofctimallen,"excited for tonight Waukegan! +@GeneseeTheatre https://t.co/XxexMPqikq" +06/01/2017,Comedians,@ofctimallen,I'll be at the Laugh Factory in Hollywood tonight at 8pm @TheLaughFactory https://t.co/h5y4PCCKfC +05/16/2017,Comedians,@ofctimallen,Stunned and blindsided by the network I called home for the last six years. #lastmanstanding +05/07/2017,Comedians,@ofctimallen,Growing a beard for my role in a movie. I think I look like the most interestingly man in the world my opening act… https://t.co/9rBbSfHnkJ +04/09/2017,Comedians,@ofctimallen,Well well well look who is in Vegas this weekend https://t.co/b51msKaydQ +04/06/2017,Comedians,@ofctimallen,"Don Rickles is one of the biggest reasons I am a comic today. I feel bad, +mostly for everyone in Heaven who will no… https://t.co/q747UcMS6c" +03/17/2017,Comedians,@ofctimallen,Shared some great laughs with @JimmyKimmel last night https://t.co/9RLxYnM84G #KIMMEL https://t.co/DRVX01irE4 +03/09/2017,Comedians,@ofctimallen,"Two more shows to tape for this season,man time flys." +03/02/2017,Comedians,@ofctimallen,Thursday 8pm I'll be at @TheLaughFactory Hollywood https://t.co/bNkYOFBO86 +02/07/2017,Comedians,@ofctimallen,"@Sterlingstoe might want to watch it again, it was all about respect" +01/24/2017,Comedians,@ofctimallen,Thursday 8pm at @TheLaughFactory Hope to see you there https://t.co/9aqluiZUAM +01/23/2017,Comedians,@ofctimallen,@ScottWalker great to meet you and your family anyway +12/30/2016,Comedians,@ofctimallen,@coreyelam a steel statue in Mexico +12/29/2016,Comedians,@ofctimallen,Merry late Christmas and Happy new year to all yall https://t.co/evgynZxgFF +12/24/2016,Comedians,@ofctimallen,@HNLbob Sony RX100 V +12/19/2016,Comedians,@ofctimallen,@YourLocalRave thx for sharing +12/17/2016,Comedians,@ofctimallen,@DudeWithAGuita1 You answered your own question. +12/14/2016,Comedians,@ofctimallen,Check it out tonight- https://t.co/CZeiv95cEQ @LenosGarage #JayLenosGarage +12/10/2016,Comedians,@ofctimallen,@debitdoctor good eye +12/08/2016,Comedians,@ofctimallen,don't forget to vote! People's Choice Awards 2017 https://t.co/novajdEAII +12/06/2016,Comedians,@ofctimallen,"@DebBruce21 And loved the line"" committees ljke this don't want us to get along they're want us to go along""" +12/06/2016,Comedians,@ofctimallen,@mystarcollector its a 62 409 bubble top model just like the real one in my actual garage +12/01/2016,Comedians,@ofctimallen,"at the office, getting ready for Christmas https://t.co/twSTDTn6il" +11/25/2016,Comedians,@ofctimallen,RT @mulho2mj: Caption this. @KeeganMKey @ofctimallen #OnePride #LionsVikings #Lions https://t.co/3pDxpx2BK6 +11/18/2016,Comedians,@ofctimallen,"I like to constantly test out different phones (brands & models). More than often, I get to test and return devices… https://t.co/DkJVsAfrtP" +11/16/2016,Comedians,@ofctimallen,Catch me tomorrow talking with @IAmSteveHarvey https://t.co/XYr5dlVEoa +11/04/2016,Comedians,@ofctimallen,Vegas! tonight & tomorrow https://t.co/IO84EqUYrl @TheMirageLV +10/31/2016,Comedians,@ofctimallen,@samhuntington hey that's mine! +10/30/2016,Comedians,@ofctimallen,@AMBJanitorial yes went to Dora Moore elemtary +10/27/2016,Comedians,@ofctimallen,Walked by the dog's toy in my office & I felt like Sid from Toy Story had been here #ToyStory https://t.co/bKWQPWswGw +10/20/2016,Comedians,@ofctimallen,Sitting in in WGN morning show https://t.co/nXlGZiXA0I +10/09/2016,Comedians,@ofctimallen,RT @NathanBlixt: @ofctimallen great show! +10/09/2016,Comedians,@ofctimallen,RT @LunaCrist: @ofctimallen killed it in Vegas. Haven't laughed that hard in a while. +10/09/2016,Comedians,@ofctimallen,RT @WillisShepherd: @ofctimallen just saw your show in Vegas.... One of the funniest standup routines I've😂 ever seen in my life!!! Loved i… +09/26/2016,Comedians,@ofctimallen,Here's a clip from my ET interview with @nischelleturner https://t.co/Tipt9NzlUV +09/23/2016,Comedians,@ofctimallen,"season premiere of #LastManStanding, tonight at 8|7c on ABC! @NancyATravis @MollyEphraim @amandafuller27 … https://t.co/GsG8T6rplE" +09/22/2016,Comedians,@ofctimallen,TOMORROW! Season 6 premiere #LastManStanding @NancyATravis @MollyEphraim @amandafuller27 @KaitlynDever @StophSanders https://t.co/zU1opk999m +09/21/2016,Comedians,@ofctimallen,@buzzleys do I have chocolate in my teeth +09/21/2016,Comedians,@ofctimallen,Looking at audience for show number four https://t.co/fIGBrSEfaX +09/20/2016,Comedians,@ofctimallen,Look where I am today. Check your local listings to tune in @TheTalkCBS https://t.co/rwCqMAXJAg +09/15/2016,Comedians,@ofctimallen,@DidPatCallOut I have the entire Tool time set in my shop. +09/14/2016,Comedians,@ofctimallen,"Love our last Man set, feel like shopping here. https://t.co/27YN8Jw3bb" +09/09/2016,Comedians,@ofctimallen,Next Thursday I'll be at the Laugh Factory in Hollywood https://t.co/uriuFDBnuY @TheLaughFactory +09/08/2016,Comedians,@ofctimallen,"Got to test the new Blackberry DTEK50. Very light and streamlined. Quality feel, responsive & quick. With BlackBerr… https://t.co/OT5VXjZTFc" +09/02/2016,Comedians,@ofctimallen,Loved having these heroes on set #Navy #Marines #LastManStanding https://t.co/SItDYbUL8i +08/31/2016,Comedians,@ofctimallen,Fleet week guests on our Tuesday taping https://t.co/vij7ZpSyuq +07/02/2018,Comedians,@JimBreuer,"RT @DarrenJMeenan: Real fun time on @orangebluething tonight. I had notes for the show, and we got to none of them. @JimBreuer is a riot. T…" +07/02/2018,Comedians,@JimBreuer,RT @danielwininger: @JimBreuer said he gets looks for wearing his @Mets hat like he’s a 5 yr old walking around with a cigarette in his mou… +07/01/2018,Comedians,@JimBreuer,"Sleep Apnea ? ... +https://t.co/p99vFNvvST" +06/28/2018,Comedians,@JimBreuer,RT @The7Line: Hang with @JimBreuer and @DarrenJMeenan on @orangebluething tomorrow night. 6pm EDT on FB Live and Periscope. https://t.co/w5… +06/27/2018,Comedians,@JimBreuer,"RT @joerogan: Pre-sale tickets for Philly and Columbus go on pre-sale today at 12pm local time. Password is: STRANGE +https://t.co/QaS20jiV…" +06/27/2018,Comedians,@JimBreuer,https://t.co/n9Kg7vj4pV +06/27/2018,Comedians,@JimBreuer,"RT @The7Line: Some say laughter is the best medicine, so we hit up our boy @JimBreuer for a little therapy this week. He'll be hanging in s…" +06/27/2018,Comedians,@JimBreuer,https://t.co/p99vFNvvST +06/25/2018,Comedians,@JimBreuer,"RT @StressFactoryNJ: Tomorrow!! Tues, June 26th! Come out to see the hilarious @JimBreuer “work it all out” His last two shows @Vinnie_Bran…" +06/25/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @Vinnie_Brand: It's #MondayMorning and I'm planning my week. Monday @Maddiebranddd graduates! Tues… +06/25/2018,Comedians,@JimBreuer,"RT @ComedyPlugs: RT @StressFactoryNJ: Tomorrow!! Tues, June 26th! Come out to see the hilarious @JimBreuer “work it all out” His last two s…" +06/25/2018,Comedians,@JimBreuer,@papazildjian Next time say hello :) +06/25/2018,Comedians,@JimBreuer,"RT @richmacleod: Hansel Robles made his Angels debut today, and allowed a go-ahead home run in the 10th inning. + +........he pointed. https:…" +06/17/2018,Comedians,@JimBreuer,@1zombie3 No sweeping in AZ :) MATZmerized +06/16/2018,Comedians,@JimBreuer,@Tinabobina808 This week +06/16/2018,Comedians,@JimBreuer,@TheGarofaholic @ImRobKelly Me too! +06/16/2018,Comedians,@JimBreuer,https://t.co/E9v9rHu0tK +06/15/2018,Comedians,@JimBreuer,@D10011980 Bring me over !!!! +06/15/2018,Comedians,@JimBreuer,@masonkeith25 Thank you ! +06/15/2018,Comedians,@JimBreuer,@gwenluv22 @train @patmonahan @TheParamountNY I’m especially looking forward to that one ! +06/15/2018,Comedians,@JimBreuer,@Tinabobina808 Soon ! I promise +06/15/2018,Comedians,@JimBreuer,@gwenluv22 @train @patmonahan Thanks Amy +06/15/2018,Comedians,@JimBreuer,@peterth90230029 Ha ha no ! +06/15/2018,Comedians,@JimBreuer,Train last night at MSG was amazing ! https://t.co/rM5f0h3szE +06/13/2018,Comedians,@JimBreuer,RT @TigersJUK: How have I never seen this with the audio before? https://t.co/SGg9KNZk2l +06/11/2018,Comedians,@JimBreuer,See you all TOMORROW NIGHT in NEW BRUNSWICK NJ for another night of “working it out “ at the Stress Factory ! +06/11/2018,Comedians,@JimBreuer,@MFaretty @MichaelMatolchi HOLY HOLY HOLY $&@% +06/11/2018,Comedians,@JimBreuer,@stewspringsteen Looking good ????? +06/11/2018,Comedians,@JimBreuer,@MPardoski @SoCalValerie @IAmJericho @jericho_cruise @JRsBBQ @RealDDP @FOZZYROCK @RealMickFoley @reymysterio… https://t.co/JiFLfSOufH +06/11/2018,Comedians,@JimBreuer,HEY METS FANS !!! Mets vs Yanks ? Is that a Bigfoot ? Or a Mets victory ? https://t.co/XQ6799VsqW +06/09/2018,Comedians,@JimBreuer,Mets fan THERAPY VENT https://t.co/PNGL0EMQmj +06/08/2018,Comedians,@JimBreuer,@danny10070222 You got it +06/08/2018,Comedians,@JimBreuer,@MikeDHernandez1 @Guitarmacist @StressFactoryNJ Giant Stadium ?? Parking lot ? Was that you ? +06/08/2018,Comedians,@JimBreuer,@OchoDeano Thank you - Netflix doesn’t want me .. +06/08/2018,Comedians,@JimBreuer,@Squale_63 I don’t even think about hits ??? +06/08/2018,Comedians,@JimBreuer,@Kellyc32674 @CitiField No - I can’t watch . +06/08/2018,Comedians,@JimBreuer,@BrentStaggs4 South Pacific +06/08/2018,Comedians,@JimBreuer,@The7Line @The7LineArmy GOD knows we ALL need the laughs !!! +06/08/2018,Comedians,@JimBreuer,"RT @The7Line: SAVE THE DATE! August 18th at the Paramount in Huntington. @JimBreuer reserved the entire upper mezz, lower mezz, and skybar…" +06/08/2018,Comedians,@JimBreuer,@djdemand @StressFactoryNJ @Vinnie_Brand @derick_stress See you Tues! +06/08/2018,Comedians,@JimBreuer,RT @Guitarmacist: Great night with @JimBreuer! His one man show in the works! I told him we camped out for tickets to the show. @StressFact… +06/08/2018,Comedians,@JimBreuer,@nic_linz That was a fun night too ! Thank you - hopefully see you again this Tues +06/08/2018,Comedians,@JimBreuer,@The7Line @The7LineArmy We’re gonna need to some LAUGHS by this MONDAY !!! +06/08/2018,Comedians,@JimBreuer,RT @The7Line: Thanks to @JimBreuer for setting aside special tickets for @The7LineArmy on August 18th at the Paramount out in Huntington. T… +06/08/2018,Comedians,@JimBreuer,@OchoDeano Thank you ! +06/08/2018,Comedians,@JimBreuer,RT @StressFactoryNJ: @JimBreuer IS BACK!!! June 12th at @Vinnie_Brand’s @StressFactoryNJ ! GET TIX ASAP!! Will sell out!! Go to: Stress htt… +06/08/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: @JimBreuer IS BACK!!! June 12th at @Vinnie_Brand’s @StressFactoryNJ ! GET TIX ASAP!! Will sell out!!… +06/08/2018,Comedians,@JimBreuer,@Guitarmacist Ha ha ha ... thank you .. +06/08/2018,Comedians,@JimBreuer,https://t.co/0TLCTsV4FM +06/05/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: Tuesday!!! @JimBreuer the most hilarious man on earth will be doing new material at @Vinnie_Brand ‘s… +05/25/2018,Comedians,@JimBreuer,@ultimatebrownie It is! +05/24/2018,Comedians,@JimBreuer,RT @Mighty1ne: @JimBreuer https://t.co/1be9rrjti6 +05/24/2018,Comedians,@JimBreuer,@Mighty1ne Omg Hilarious ! +05/24/2018,Comedians,@JimBreuer,@JuliaElleneSage Whoops ! Ok +05/24/2018,Comedians,@JimBreuer,@clydeallfie Easy +05/24/2018,Comedians,@JimBreuer,@theonlyjohnnyo @Slayer @Metallica See you in Madison ! +05/24/2018,Comedians,@JimBreuer,@FayeHunter @BigNoseKatesAZ Regulator ! +05/24/2018,Comedians,@JimBreuer,@BMSMaxContract Ahhhhhhhh +05/24/2018,Comedians,@JimBreuer,Watching the Mets Play https://t.co/PS9JrKAqGn +05/23/2018,Comedians,@JimBreuer,@ChrisFlanders8 @FigSNY I guess so - I’m not very bright you know ! +05/23/2018,Comedians,@JimBreuer,@joehates @FigSNY Ok +05/23/2018,Comedians,@JimBreuer,@BMSMaxContract My favorite song +05/23/2018,Comedians,@JimBreuer,@JerseyTerp @MrBrianKenny Long live Paint ! +05/23/2018,Comedians,@JimBreuer,@carnage526 @ryanBoucher7 Every metallica show +05/23/2018,Comedians,@JimBreuer,@jolojr55 @FigSNY Ha ha ha - I’m gonna Plunk him with my 53 MPH fastball! +05/23/2018,Comedians,@JimBreuer,@FigSNY Love Nelson Figueroa ! He should be a coach or analyst ! I can listen to him breakdown pitching mechanics &… https://t.co/H1X3xHMo0O +05/22/2018,Comedians,@JimBreuer,@JB511L94 That would of been cool +05/22/2018,Comedians,@JimBreuer,@Jfierro17 Hopefully ! +05/22/2018,Comedians,@JimBreuer,@ryanBoucher7 That’s a Metallica show . I’m not doing stand up comedy that night . Comedy yes ! Great rock game sho… https://t.co/ID7X2BABEQ +05/22/2018,Comedians,@JimBreuer,@Tinabobina808 Oh man! Heebie Geebies +05/22/2018,Comedians,@JimBreuer,A METS fan recap of tonight’s game https://t.co/iNoxP7O4PC +05/22/2018,Comedians,@JimBreuer,@GaffinSr @ScollinCollin Not stand up ! It’s a pre party Rock game show arena style ! +05/21/2018,Comedians,@JimBreuer,@cozcav “You’re welcome Canada !” Ha Ha Ha ha +05/21/2018,Comedians,@JimBreuer,@ngl0917 Family +05/21/2018,Comedians,@JimBreuer,"RT @Vinnie_Brand: You've been begging Me for @JimBreuer @StressFactoryNJ so here it is. + +One Show. June 5th. Jim is working out his one ma…" +05/21/2018,Comedians,@JimBreuer,"RT @Vinnie_Brand: You've been begging Me for @JimBreuer @StressFactoryNJ so here it is. + +One Show. June 5th. Jim is working out his one ma…" +05/21/2018,Comedians,@JimBreuer,@LarryCT @OpieRadio @JimNorton Sorry to hear about your mom . Glad I could help somehow :) +05/21/2018,Comedians,@JimBreuer,@Alex172005_ Ha ha the Vanisher ! +05/21/2018,Comedians,@JimBreuer,@treysuschrist Definitely ! +05/21/2018,Comedians,@JimBreuer,@ImRobKelly @ItsKaranSoni So many lines - I have to see it again +05/21/2018,Comedians,@JimBreuer,@NoCoothJoe Yes :) +05/21/2018,Comedians,@JimBreuer,@Beezer1971 Thank YOU +05/21/2018,Comedians,@JimBreuer,@ScollinCollin Ha ha ha - no it’s staged - it was a long time ago +05/21/2018,Comedians,@JimBreuer,@DonnieA21 Not at all! First one was hilarious too +05/21/2018,Comedians,@JimBreuer,"Ryan Reynolds kills it in Deadpool 2! +I thought it was FUNNIER than the first one !!!" +05/21/2018,Comedians,@JimBreuer,@odendog77 Thank you David! +05/21/2018,Comedians,@JimBreuer,@ngl0917 Just left Tampa! +05/21/2018,Comedians,@JimBreuer,@ajf5150 @pizzahut It’s staged :) +05/21/2018,Comedians,@JimBreuer,@Tinabobina808 Saw this ! +05/21/2018,Comedians,@JimBreuer,@DBREM81 Sorry for the sweep +05/21/2018,Comedians,@JimBreuer,@Toughmutter Have a safe flight :) +05/18/2018,Comedians,@JimBreuer,@Jfierro17 Possibly :) +05/18/2018,Comedians,@JimBreuer,@Tdot71 @JohnnyG_012 See you then ! +05/18/2018,Comedians,@JimBreuer,@ngl0917 Ha ha ha +05/18/2018,Comedians,@JimBreuer,"RT @Tinabobina808: @JimBreuer’s Podcast 88 spoke to me & my family’s fight with cancer. The insight Jim & Dee provided “heart felt, beautif…" +05/18/2018,Comedians,@JimBreuer,@Tinabobina808 @PAUmaui Done !!! +05/17/2018,Comedians,@JimBreuer,@JohnnyG_012 Wow !!! That was a few years back !!! At the end of the show +05/16/2018,Comedians,@JimBreuer,@wbd18258 Ha ha ha +05/16/2018,Comedians,@JimBreuer,@Tinabobina808 Podcast tomorrow ! You might want to listen . Hitting your life big time +05/16/2018,Comedians,@JimBreuer,@PizzaManJim @HRRocksinoNP See you then ! +05/15/2018,Comedians,@JimBreuer,@TarN8tion @vicdibitetto Yes I reached out after he started . Not sure how to pull it off but we may figure something out +05/15/2018,Comedians,@JimBreuer,@nytexpat @BComptonNHL This was last Saturday +05/15/2018,Comedians,@JimBreuer,@PeabodyBaseball It’s was time for both to move on +05/15/2018,Comedians,@JimBreuer,@nytexpat @BComptonNHL This past Saturday at the Paramount Huntington NY . We film every show :) +05/15/2018,Comedians,@JimBreuer,The state of METS & YANKEE FANS https://t.co/k96JqnUBpn +05/15/2018,Comedians,@JimBreuer,@PeabodyBaseball Thanks John +05/15/2018,Comedians,@JimBreuer,RT @PeabodyBaseball: Met fans vs Yankee fans by @JimBreuer https://t.co/cieEHoml6v +05/15/2018,Comedians,@JimBreuer,@loveg30 @bernieandsid @sidrosenberg Love their show +05/15/2018,Comedians,@JimBreuer,RT @BMSMaxContract: @JimBreuer on Mother's Day #BREUERRRRRRRR 🤣🤣🤣🤣 https://t.co/gm54vhY7SD +05/14/2018,Comedians,@JimBreuer,@RudyinQueens Sorry to hear about your Grandpa .. glad the goat cheered you uuuuuup +05/14/2018,Comedians,@JimBreuer,@nancy24195771 Thank YOU ! Hope so see you there again +05/12/2018,Comedians,@JimBreuer,@aderb66 No . They SOUND like them . Act like them +05/12/2018,Comedians,@JimBreuer,@DebbieYoung1 I did . I’d like to see how they grow +05/12/2018,Comedians,@JimBreuer,@ZepFan Same +05/12/2018,Comedians,@JimBreuer,@DebbieYoung1 Fair enough +05/12/2018,Comedians,@JimBreuer,@MScardinoJr I will see if I can make it +05/12/2018,Comedians,@JimBreuer,@AlexChipperson So far so good ..thanks for asking +05/12/2018,Comedians,@JimBreuer,@ajignatz Same +05/12/2018,Comedians,@JimBreuer,@RandaGary1 We did ! Lost three adults to injuries lol !! Not even kidding. +05/12/2018,Comedians,@JimBreuer,@MrWilliamTyler They were great . Curious to see their growth a year or two from now +05/12/2018,Comedians,@JimBreuer,RT @tweedrules: LONG LIVE PAINT!!!! @JimBreuer https://t.co/u3zNjrmMs7 +05/12/2018,Comedians,@JimBreuer,@ngl0917 Who knows ? Maybe a MONTH from now it’s back on the table ?! ..... yeah .. NO +05/12/2018,Comedians,@JimBreuer,Waiting at the Starland Ballroom . Can’t wait ! https://t.co/Pl0aaL2Z1w +05/11/2018,Comedians,@JimBreuer,@Baldassano Clearly he’s a tad slow.. +05/10/2018,Comedians,@JimBreuer,"Little Rascals ? No , Long Island kids back in the day https://t.co/pbaGyftaSe" +05/07/2018,Comedians,@JimBreuer,@curly_girl7326 That place was great ! +05/07/2018,Comedians,@JimBreuer,@RicKnight203 @StressFactoryCT Wow - I remember looking at that noggin of yours too! Glad you had a good time . Ev… https://t.co/34btZADTaZ +05/07/2018,Comedians,@JimBreuer,@BMSMaxContract Ha ha ha ha SUP +05/07/2018,Comedians,@JimBreuer,"@ngl0917 Yeah , I’m no dummy" +05/07/2018,Comedians,@JimBreuer,@EaglesAnarchy Text Breuer at 42828 to join the mailing list . Then you will know next time . See you then hopefully +05/07/2018,Comedians,@JimBreuer,@JMinichowski Yes it is :) +05/06/2018,Comedians,@JimBreuer,Mets fan - Yankees & Rehab https://t.co/iWwh3bf1Rb +05/03/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @JimBreuer: I will be at the Grand Opening is the Stress Factory Bridgeport Ct Thursday ! https://… +05/03/2018,Comedians,@JimBreuer,RT @991PLRFM: Exciting day in #Bridgeport as it was the big ribbon cutting ceremony at @Vinnie_Brand’s @StressFactoryCT Comedy Club. See @J… +05/03/2018,Comedians,@JimBreuer,"RT @959thefox: See @JimBreuer this grand opening weekend at the new +@Vinnie_Brand @StressFactoryCT in Bridgeport! +https://t.co/seqmcGMoZq…" +05/03/2018,Comedians,@JimBreuer,@PenzenikGeorge Ha ha ha +05/03/2018,Comedians,@JimBreuer,A Mets fan recap https://t.co/xSK0geqXNQ +05/02/2018,Comedians,@JimBreuer,RT @Vinnie_Brand: IT's here! @StressFactoryCT opens MAY 3- 5 @JimBreuer @garyowencomedy & @TheRealDiceClay @artiequitter @mariabamfoo @Titu… +05/02/2018,Comedians,@JimBreuer,"I will be at the Grand Opening is the Stress Factory Bridgeport Ct Thursday ! +https://t.co/i7lpaVXcy1" +05/01/2018,Comedians,@JimBreuer,Today I will be on MLB Network Live 4 pm https://t.co/kuseqRROR0 +05/01/2018,Comedians,@JimBreuer,@marty140722 Me too ! It was great to have you both there +05/01/2018,Comedians,@JimBreuer,@PenzenikGeorge This cracks me up every time I see it +05/01/2018,Comedians,@JimBreuer,@makeitepic @943TheShark @TheParamountNY It was nice to meet you the other morning +05/01/2018,Comedians,@JimBreuer,https://t.co/BAYtAtl5d4 +04/30/2018,Comedians,@JimBreuer,@CJBroschart Great to hear! +04/30/2018,Comedians,@JimBreuer,@ClosetsByML That was the best when I read that ! Thank you for the moment ! +04/30/2018,Comedians,@JimBreuer,"RT @AndoodTX: Woke up with this in my head. 🤘🤘Jim Breuer and the Loud & Rowdy ""Thrash"" https://t.co/DtG3zhN71t via @YouTube @JimBreuer" +04/30/2018,Comedians,@JimBreuer,@Mets4aces This week +04/30/2018,Comedians,@JimBreuer,@InfoSec_Brian Congrats ! I met her at Bernies . I remember +04/30/2018,Comedians,@JimBreuer,"@AndrewSuydam @StressFactoryNJ I’m opening Vinny’s New Place THIS weekend in Bridgeport Ct, I’ve played the State T… https://t.co/oG9lUY8zHB" +04/30/2018,Comedians,@JimBreuer,@BrosanMichael “My Bad!” Glad you had a good time +04/30/2018,Comedians,@JimBreuer,@ngl0917 Your team is a given . Mine is a hope :) +04/29/2018,Comedians,@JimBreuer,@FoodNetworkGuru That was a great spot ! +04/29/2018,Comedians,@JimBreuer,@WGCR Can’t wait to be back +04/29/2018,Comedians,@JimBreuer,@nsolddomains Bahhh +04/29/2018,Comedians,@JimBreuer,@AndrewSuydam Not in the near future :( +04/29/2018,Comedians,@JimBreuer,@laughrodite4u @FRESYEPP Ha ha ha +04/29/2018,Comedians,@JimBreuer,@janelliebelly See you next time hopefully +04/29/2018,Comedians,@JimBreuer,@nickley20 Nora - glad you both had a good time ! +04/29/2018,Comedians,@JimBreuer,@SundayLeith Don’t piss the GRIZZLY OFF +04/29/2018,Comedians,@JimBreuer,@leemooreTIS Thank YOU LEE +04/29/2018,Comedians,@JimBreuer,@garlicNonions Dani- glad you made it +04/29/2018,Comedians,@JimBreuer,@mikepmcs Mike ! Much appreciated +04/29/2018,Comedians,@JimBreuer,@chrisgojet Thank YOU for making me part of your night ! +04/29/2018,Comedians,@JimBreuer,@gnbrotz Thank YOU! +04/29/2018,Comedians,@JimBreuer,@janelliebelly Hope you had a great time !! Happy Birthday +04/29/2018,Comedians,@JimBreuer,See you all NEXT WEEKEND in BRIDGEPORT CT !!! Grand Opening of the STRESS FACTORY +04/27/2018,Comedians,@JimBreuer,RT @1023WBAB: Clear your schedule for the next hour. @RogerandJP are replaying their hang out with @JimBreuer from earlier this week now. L… +04/26/2018,Comedians,@JimBreuer,@Notsofunny78 And they went ! +04/26/2018,Comedians,@JimBreuer,@Thejoke_err Thanks Johnny ! Hopefully you can make it ! +04/23/2018,Comedians,@JimBreuer,@WGCR Unfortunately that’s not shared with anyone . +04/23/2018,Comedians,@JimBreuer,@EvansParreira @RobertDowneyJr @normmacdonald @iamcolinquinn Wow forgot about one . I liked when Norm was in sketch… https://t.co/eu18691Mx0 +04/23/2018,Comedians,@JimBreuer,@WGCR Garret you Metal Head !!! Glad I had a moment to say hello ! Thank you for being there brutha +04/23/2018,Comedians,@JimBreuer,@sobba564 @StanleyHotelCO Leo! It was Great to meet you and your lovely wife ! Thank you again !! +04/23/2018,Comedians,@JimBreuer,@PSCaramel @amazon Thank you ! Just made my morning +04/23/2018,Comedians,@JimBreuer,RT @PSCaramel: @JimBreuer I have watched your new special on @amazon three times now and every single time I have a headache and my ribs hu… +04/22/2018,Comedians,@JimBreuer,@CO_bunni @JoeSib Thank you for being there ! +04/22/2018,Comedians,@JimBreuer,@ThomasKetchum5 Working on it Thomas ! +04/22/2018,Comedians,@JimBreuer,@joeymook @TheRealDiceClay @StressFactoryCT See you then ! +04/22/2018,Comedians,@JimBreuer,@ynot_23 @DBS_BR No... +04/22/2018,Comedians,@JimBreuer,@robberger70 @Metallica Thank you ! See you in Vegas! Metallicaaaaaa +04/22/2018,Comedians,@JimBreuer,@PenzenikGeorge Ha ha ha +04/22/2018,Comedians,@JimBreuer,@ddouma75 Animals!! +04/22/2018,Comedians,@JimBreuer,RT @joeymook: @JimBreuer @TheRealDiceClay Looking forward to seeing you guys at the new @StressFactoryCT ! +04/22/2018,Comedians,@JimBreuer,Bill Burr you are a living legend ! Hope all is well in Burr World! https://t.co/kRkLmXfCf4 +04/22/2018,Comedians,@JimBreuer,Thank You Rich! https://t.co/yv22uGh9tb +04/22/2018,Comedians,@JimBreuer,"@DBS_BR 3-0 , 1st and 2 nd 1 our dick in the 8 th Dick" +04/22/2018,Comedians,@JimBreuer,@DBS_BR I am dick +04/22/2018,Comedians,@JimBreuer,This is how to PARTY AT 50!!! https://t.co/JhSBoTSxbb +04/20/2018,Comedians,@JimBreuer,@FreeSpirited001 @jennifermulson @StanleyHotel @tompapa Me too! +04/20/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryCT: RT @BizSuperstar: @JimBreuer to headline Bridgeport comedy club’s opening https://t.co/8UukAypnre #co… +04/19/2018,Comedians,@JimBreuer,@ngl0917 What do I get ? +04/19/2018,Comedians,@JimBreuer,"RT @jennifermulson: New pavilion @StanleyHotel in #estespark will offer robust entertainment lineup, including @JimBreuer and @tompapa this…" +04/19/2018,Comedians,@JimBreuer,"RT @WBESBrandonLowe: Huge guest announcement for next Tuesday's show. We will have . @JimBreuer +He is coming to Charles Town, WV April 28t…" +04/19/2018,Comedians,@JimBreuer,RT @Marisu62: @JimBreuer biggest fan ever!! love you Can you retweet please. For the Veterans. Check us out. Plllleeeease???? https:… +04/19/2018,Comedians,@JimBreuer,7 line Army RULES !!!! Thank YOU !!! Let’s Go Mets ! https://t.co/CXpoJk9ccX +04/18/2018,Comedians,@JimBreuer,RT @Tinabobina808: Dress up for your date. Bring it back to your first date! Dee you are so on it!!! I like to look pretty for my husband w… +04/18/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @BizSuperstar: @JimBreuer to headline Bridgeport comedy club’s opening https://t.co/8UukAypnre #co… +04/17/2018,Comedians,@JimBreuer,@peterth90230029 Ha ha ha +04/17/2018,Comedians,@JimBreuer,@Tinabobina808 @Mets @TommyBahama Love it !!! +07/02/2018,Comedians,@ericandre,Can I intern for you @Ocasio2018 ? +07/02/2018,Comedians,@ericandre,RT @mcgyver40: @Ridiculousness @robdyrdek Please Rob never have that jackass bag of dicks Eric Andre on again. I’m 55 live 10 minutes fro… +07/02/2018,Comedians,@ericandre,RT @mcgyver40: @robdyrdek please For the love of God never have that jackass Eric Andre on again he does nothing but fucking suck at. @eric… +07/01/2018,Comedians,@ericandre,I produced one of my favorite people’s show and it premiers tonight at midnight @adultswim #mostyl4millennials… https://t.co/BmNJzUwNVC +06/28/2018,Comedians,@ericandre,Starting a band with @TVCARNAGE and @Ocasio2018 🎸 🎶 🎷 https://t.co/7ZCgywrIcW +06/28/2018,Comedians,@ericandre,RT @philiplouie01: Going LIVE with @TVCARNAGE at NOON @BUILDseriesNYC and https://t.co/ul3lrtr4Bd! #Mostly4Millennials https://t.co/iwXy92r… +06/28/2018,Comedians,@ericandre,"RT @colbertlateshow: TONIGHT: Stephen sits down with @MMFlint, @ericandre and @TVCARNAGE talk #Mostly4Millenials, and we chat with @Ocasio2…" +06/28/2018,Comedians,@ericandre,"RT @BUILDseriesNYC: ""It was kismet, baby!"" - @TVCARNAGE reveals how he became friends with @ericandre. #Mostly4Millenials @adultswim https:…" +06/28/2018,Comedians,@ericandre,"Matt Groening’s ‘Disenchantment’ First-Look Teaser: Elf, Demon &amp; Party Princess https://t.co/HvfYXza74B via @deadline" +06/28/2018,Comedians,@ericandre,Disenchantment | Teaser [HD] | Netflix https://t.co/V5PCfaJurC via @YouTube +06/28/2018,Comedians,@ericandre,I’m performing in Madison! https://t.co/05Ub3ERlG6 +06/27/2018,Comedians,@ericandre,https://t.co/05Ub3ERlG6 +06/27/2018,Comedians,@ericandre,@VeraPapisova I saw at it at a wine bar. It’s called Salami 😂 +06/17/2018,Comedians,@ericandre,I’m back in Paris https://t.co/Y60P216M9J +06/15/2018,Comedians,@ericandre,I’m crying my eyes out watching this Mr. Rogers doc. 😭MISTER ROGERS' NEIGHBORHOOD | Lady Aberlin and Daniel Tiger T… https://t.co/C5gsdpt39W +06/13/2018,Comedians,@ericandre,Upgrade is a fucking incredible movie 🎥 🍿 +06/12/2018,Comedians,@ericandre,"RT @SenSanders: We have a racist criminal justice system that costs us billions of dollars, ruins lives and allows private prisons to profi…" +06/12/2018,Comedians,@ericandre,RT @morgan_murphy: why does the news tonight look like the exit confessional from a reality show called batshit house? https://t.co/tFLWTrX… +06/12/2018,Comedians,@ericandre,"RT @gray: Have to wait another three months for Matt Groening’s @disenchantment, but already obsessed with @ericandre’s personal demon, Luc…" +06/11/2018,Comedians,@ericandre,"RT @thefader: Watch a trailer for Adult Swim’s Mostly 4 Millenials, produced by @ericandre https://t.co/RzlphaH0VP https://t.co/g1F8dhjpSe" +06/11/2018,Comedians,@ericandre,RT @okayplayer: Watch the wild trailer for @ericandre's new Adult Swim TV series 'Mostly 4 Millennials.' https://t.co/411H7SPKc9 https://t.… +06/11/2018,Comedians,@ericandre,RT @PasteMagazine: Watch @joeyBADASS watch Derrick Beckles (@TVCARNAGE) get peanut butter licked off his feet in the batshit trailer for @e… +06/11/2018,Comedians,@ericandre,"RT @thefader: Watch a trailer for Adult Swim’s @ericandre-produced 'Mostly 4 Millenials.' +https://t.co/RzlphaH0VP https://t.co/usiAoXvSpo" +06/11/2018,Comedians,@ericandre,RT @okayplayer: Watch the wild trailer for @ericandre's new Adult Swim TV series 'Mostly 4 Millennials.' https://t.co/411H7SPKc9 https://t.… +06/11/2018,Comedians,@ericandre,@RuPaul I love you! +06/11/2018,Comedians,@ericandre,"@munchies Can you introduce me to Clovis! I'm headed to Paris! i want to DRINK +https://t.co/7KtGIBFTh4" +06/11/2018,Comedians,@ericandre,@munchies Introduce me to Clovis! I'm headed to Paris! thank you! https://t.co/7KtGIBFTh4 +06/06/2018,Comedians,@ericandre,Derrick Beckles and Eric Andre’s New Show Looks Insane and Disgusting https://t.co/75TnblP8g8 via @vulture +06/05/2018,Comedians,@ericandre,Vote 4 the Queen Gayle McLaughlin for Lt. Governor - CA! +06/02/2018,Comedians,@ericandre,Nardwuar's questions give priceless reactions https://t.co/Mqx4lh0pVD via @YouTube +05/23/2018,Comedians,@ericandre,"RT @rickkosick: Here’s another photo from @tonyhawk’s big 50th birthday party and this ones with @christianhosoi. Oh yeah, I’m also with @e…" +05/23/2018,Comedians,@ericandre,RT @thefader: .@ericandre to star in new cartoon from Simpsons creator Matt Groening. https://t.co/yutWx14DTT https://t.co/ptPEwFRc6G +05/23/2018,Comedians,@ericandre,RT @IndieWire: Matt Groening's new series #Disenchantment will premiere August 17 on @netflix. Here's your first look at the series which f… +05/23/2018,Comedians,@ericandre,"Netflix Sets ‘Disenchantment’ Premiere Date, Unveils First Look At Matt Groening Animated Series https://t.co/1GJXCT7eRg via @deadline" +04/17/2018,Comedians,@ericandre,How do we convince @iamcardib to give birth on stage? #freesyria +02/21/2018,Comedians,@ericandre,"RT @eric_sennse: Si vous croisez @ericandre à Paris, ce n'est pas moi ! Comme disait Coluche : ""un chapeau, pas de sac, c'est une faute de…" +02/19/2018,Comedians,@ericandre,Me and @alejodorowsky https://t.co/DdvtvKC0ES +12/16/2017,Comedians,@ericandre,Me and Freddy Mercury share the same opinion of Star Wars. +10/07/2017,Comedians,@ericandre,I’m opening up a brunch restaurant called Planet of the Crepes. +08/02/2017,Comedians,@ericandre,"""Yo Pierre you wanna come out here?"" is the ""Damn son where'd you find this?"" Of 2017" +07/16/2017,Comedians,@ericandre,"Real quick, what's everyone's political opinion?" +06/26/2017,Comedians,@ericandre,"Next year, I want Richard Dreyfuss to host the BET Awards." +06/04/2017,Comedians,@ericandre,They should have a cash cab option on uber. +05/18/2017,Comedians,@ericandre,Old health nut Roger Ailes passed away?!?! +05/04/2017,Comedians,@ericandre,"My drag name is Steve ""Shannon"" Bannon. @RuPaul do you approve?" +04/29/2017,Comedians,@ericandre,Taylor Swift assassinated Patrice Lumumba. +04/29/2017,Comedians,@ericandre,Taylor Swift helped put Pinochet in power. +04/27/2017,Comedians,@ericandre,Taylor Swift sold arms to Iran illegally then funneled the money into Nicaraguan contras. +04/26/2017,Comedians,@ericandre,@taylorswift13 is a hatchet man for a New World Order +04/26/2017,Comedians,@ericandre,Taylor Swift is an errand boy for grocery clerks sent to collect a bill +04/26/2017,Comedians,@ericandre,Taylor Swift is a false prophet +04/19/2017,Comedians,@ericandre,I actually thought Aaron Hernandez would replace Bill O'Reilly... 😳 +04/11/2017,Comedians,@ericandre,@united coach is like a fucking juggalo mosh pit. #fuckunitedairlines +04/11/2017,Comedians,@ericandre,Happy Sibling Day https://t.co/WnAvTUQqXy +04/03/2017,Comedians,@ericandre,With Jon Stewart gone I get most of my news from World Star's Instagram. +03/03/2017,Comedians,@ericandre,Washington Phillips is the Daniel Johnston of Robert Johnsons. +03/03/2017,Comedians,@ericandre,I'm the Super Nintendo In Charge. #hnic +11/09/2016,Comedians,@ericandre,"Really excited about Trump's cabinet: Christie, Gingrich, George Zimmerman, Robert Durst, Skeletor, & the Cobra Kai." +11/09/2016,Comedians,@ericandre,How do we get rid of the electoral college? Also who the fuck is in the electoral college? +11/09/2016,Comedians,@ericandre,I want to see @realDonaldTrump 'a birth certificate. +11/03/2016,Comedians,@ericandre,You think the owner of The Indians will pass out smallpox blankets if they lose? #retirechiefwahoo +11/01/2016,Comedians,@ericandre,Disappointed no one went as @hannibalburess brother for Halloween https://t.co/7DNkFZKixG +10/31/2016,Comedians,@ericandre,@KingJames can you convince your town to get rid of their racist ass baseball mascot? It's 2016. Tell Larry Dolan to read some Howard Zinn +10/28/2016,Comedians,@ericandre,How do I convince @hannibalburess to be Kimbo Slice for Halloween?? +10/27/2016,Comedians,@ericandre,https://t.co/BZSEw1GkvK +10/17/2016,Comedians,@ericandre,Did you know that everyone from the movie The Sandlot is dead...? +10/08/2016,Comedians,@ericandre,U'r right internet! Comedy & politics don't mix! Fuk u George Carlin! Richard Pryor! Bill Hicks! Lenny Bruce! What do u know about comedy! +09/24/2016,Comedians,@ericandre,I feel like The Civil War AND The Crusades never officially ended. I also feel like Eddie Murphy doesn't age. He looks fantastic! #Unrelated +09/11/2016,Comedians,@ericandre,Just saw American Sniper! They forgot to include Chris Kyle bragging about killing black people during Hurricane Katrina! That's his #1 hit! +09/04/2016,Comedians,@ericandre,Trying to patent a crystal meth Vape pen. Library of congress not responsive. +08/30/2016,Comedians,@ericandre,Leaked photo of a Bernie Sanders lemon party. Not photo shopped. 100% real. #wikileaks https://t.co/qRRAwouppb +08/02/2016,Comedians,@ericandre,Boba Tea in my lap and it's freezin my balls #ripeazye +07/28/2016,Comedians,@ericandre,@hannibalburess https://t.co/tuZ8379zwF +06/25/2016,Comedians,@ericandre,I just want to meet a woman who could butt chug a bong rip +06/23/2016,Comedians,@ericandre,How satisfying would it be to shave @RickRubin +06/16/2016,Comedians,@ericandre,What ever happened to El Chapo fighting ISIS? Kinda bummed that didn't happen. ;( +06/09/2016,Comedians,@ericandre,Christie Brinkley is 82 years old and still looks hotter than most 26 year olds. +05/23/2016,Comedians,@ericandre,What do you think Ariana Grande got on her SAT's? +05/20/2016,Comedians,@ericandre,Happy 5:20 bro https://t.co/uGhaVQIv9Z +05/19/2016,Comedians,@ericandre,Tyler Perry should remake Salo +05/15/2016,Comedians,@ericandre,If young metro don't shoot ya I don't trust you. #halloween #taliban +05/13/2016,Comedians,@ericandre,Can @rihanna write a song about kale please? 🌿 +05/11/2016,Comedians,@ericandre,I'm thinking about getting goat pupil contact lenses. +04/16/2016,Comedians,@ericandre,I can't believe it's 2016 and George Zimmerman hasn't been murdered yet. #zimmermanhollagramatcoachella? +04/09/2016,Comedians,@ericandre,I'm at the age where I still pick my nose but I throw my boogers in the garbage like a gentleman. +03/29/2016,Comedians,@ericandre,"I will join any band that asks me for, for one show." +03/27/2016,Comedians,@ericandre,I walked in on my parents 69'ing. +03/24/2016,Comedians,@ericandre,Let's make up new sex moves. #sexmoves 1. French Exit 2. Tuxedo Surprise. 3. Potato Boy +03/24/2016,Comedians,@ericandre,I'm just looking for a narcissist who looks better in pictures... +03/24/2016,Comedians,@ericandre,"Im just looking for a nice high maintenance girl who uses the dogface on snapchat, takes tons of selfies, and listens to Taylor Swift." +02/27/2016,Comedians,@ericandre,@kanyewest @adampally BILL COSBY IS A NARC!!!!! +02/10/2016,Comedians,@ericandre,JEFFREY DAHMERS INNOCENT!!! +01/19/2016,Comedians,@ericandre,Yo @hannibalburess You get that new Jared From Subway mix tape? +12/10/2015,Comedians,@ericandre,I bought a house. Now I just need a wife and a dog. Maybe I can just marry Air Bud. Kill two birds with one dog. https://t.co/FX1KcxTHcV +12/09/2015,Comedians,@ericandre,"You think I'll get sued if I name my comedy album, ""A Very Bieber Christmas."" ??" +11/27/2015,Comedians,@ericandre,Can someone photo shop Betty White with Fetty Wap? #BettyWap +08/06/2015,Comedians,@ericandre,I think I grew up hating Florida because everyone looked like Guy Fieri but acted like George Zimmerman. +05/18/2015,Comedians,@ericandre,"""Only I can judge God."" -Tupac" +05/10/2015,Comedians,@ericandre,Do you think Tom Cruise and David Miscavige fuck... or make love? #goingclear +05/10/2015,Comedians,@ericandre,I wanna fuck that ex machina robot +04/20/2015,Comedians,@ericandre,4/20 is the 311 of Cinco de Mayo. #420 #311 +03/19/2015,Comedians,@ericandre,I'm a B cup +03/18/2015,Comedians,@ericandre,Do you know that the first hipster was Otto the Caddy from Happy Gilmore? http://t.co/M1LVtv3frN +03/13/2015,Comedians,@ericandre,The worst time to go down on a woman is while she's giving birth. @TVCARNAGE +02/24/2015,Comedians,@ericandre,Tweet While Driving Day. #NewHolidays #celebratingitrightnow +02/24/2015,Comedians,@ericandre,Can drug dogs smell acid? +02/17/2015,Comedians,@ericandre,Im gonna get dog semen injected into my balls so my girlfriend can give birth to puppies. +02/03/2015,Comedians,@ericandre,http://t.co/KyBTsAit6V +01/19/2015,Comedians,@ericandre,"If the pope admits that all animals go to heaven, that'll mean heaven has roaches." +01/03/2015,Comedians,@ericandre,I want to start a petition that says it's illegal to marry @PamBondi #homophobia #Florida +01/03/2015,Comedians,@ericandre,20 bucks says that I hated The Theory of Everything. +01/03/2015,Comedians,@ericandre,20 bucks says that Stephen Hawking hated The Theory of Everything +01/01/2015,Comedians,@ericandre,Anyone know where I can buy the Stephen Hawking wheelchair? +01/01/2015,Comedians,@ericandre,I wanna start a band with R. Kelly & R. Crumb called The R's +12/11/2014,Comedians,@ericandre,I'm a Jew. Which is Hebrew for atheist. +11/17/2014,Comedians,@ericandre,Rita Ora sounds like an STD +11/05/2014,Comedians,@ericandre,I wanna make a cartoon called Bobby Shmurda's World +11/01/2014,Comedians,@ericandre,@SarahKSilverman I just uploaded a bunch of dick picks to my Friendster account. +07/10/2014,Comedians,@ericandre,My porn name is Sasha SW 13th Avenue. +07/06/2014,Comedians,@ericandre,@Madonna what's your email? +04/25/2014,Comedians,@ericandre,I'm trying to get Matthew Barney to wear a Barney the dinosaur outfit on my show and perform cremaster. +04/20/2014,Comedians,@ericandre,"Happy 4:20. Smoke a birthday blunt with Hitler, you fucking nazis! #Columbine" +04/15/2014,Comedians,@ericandre,My rap name is Lil' Yung +04/15/2014,Comedians,@ericandre,Dear Hollywood: Please stop making comic book movies. Comics are humorless and boring. Reading sucks. +04/08/2014,Comedians,@ericandre,CBS didn't want me to announce it but... I'm replacing Letterman. +03/24/2014,Comedians,@ericandre,I would've been the first runaway slave to jerk off while being lynched. #autoeroticlynching +03/12/2014,Comedians,@ericandre,Just had Dave Matthews Band release their tour bus septic tank all over me. Happy 311! +03/11/2014,Comedians,@ericandre,In the future everyone will be in Arcade Fire... for fifteen minutes. +03/11/2014,Comedians,@ericandre,Happy 311 y'all. +03/10/2014,Comedians,@ericandre,Happy 311 Eve! +03/09/2014,Comedians,@ericandre,Trying to start a conspiracy that Aaron Paul had Paul Walker killed. #NeedForSpeed +03/07/2014,Comedians,@ericandre,"You ever just text ""hi NSA!!"" To see if they'll text back. If they don't, just type #AlQaeda" +03/06/2014,Comedians,@ericandre,you guys mind if I jerk off to The Mouse and The Motorcycle? #BeverlyCleary +03/06/2014,Comedians,@ericandre,Where my polyamorous Brazilian atheists at?!! +03/03/2014,Comedians,@ericandre,I pee sitting down but I poop standing up. +02/27/2014,Comedians,@ericandre,I'm starting a kickstarter for a Zach Braff bio-pic. +02/27/2014,Comedians,@ericandre,R. Budd Dwyer is my biggest comedic influence +02/12/2014,Comedians,@ericandre,@heathercampbell 's notes from the season 3 writers room. #ericandreshow http://t.co/LPT8n4CG4J +02/08/2014,Comedians,@ericandre,Athlete's Foot? More like Athlete's VAGINA!!! +02/07/2014,Comedians,@ericandre,Peace in the Middle Yeast Infection +02/05/2014,Comedians,@ericandre,I want Pussy Riot to open up for the Russian Olympics. +01/20/2014,Comedians,@ericandre,what's the new silk road? i need speed!!!!!!! +01/16/2014,Comedians,@ericandre,Send me the most embarrassing talk show moments you can find! (besides my show) I need to do some research! +01/15/2014,Comedians,@ericandre,How do I get Kid 606 and Venetian Snares to write for season 3?????? +01/14/2014,Comedians,@ericandre,AM radio still exists.. +01/11/2014,Comedians,@ericandre,any new visual artists I should check out???? +01/09/2014,Comedians,@ericandre,I'm writing a screenplay called Oscar Bait. It's about a dying gay British Aristocrat sold into slavery. +01/09/2014,Comedians,@ericandre,"Dear auto correct: ""Hell"" and ""Yo"" are pretty common words. Please stop changing them to ""He'll"" and ""To"" #enoughisenough" +01/08/2014,Comedians,@ericandre,Working title for my stand up special: It's All Peaches and Kumail Nanjiani. (Note it has nothing to do with @kumailn ) +01/08/2014,Comedians,@ericandre,I want to start a really terrible band. Who's coming with me? +01/07/2014,Comedians,@ericandre,"I'm a parodox wrapped in an enigma stuffed inside another paradox wrapped in a taco shell, deep fried and beer battered... I'm hungry." +12/15/2013,Comedians,@ericandre,I just chugged a lava lamp +12/13/2013,Comedians,@ericandre,My mom just told me she didnt like South Park til she watched the Human Centipede one & now she loves it. She just blew the dick off my mind +12/08/2013,Comedians,@ericandre,I hope Kanye West's next album is just 45 minutes of him complaining. +12/01/2013,Comedians,@ericandre,Did you know that David Grohl is the lead singer of Haim +11/24/2013,Comedians,@ericandre,Make some noise if your parents still fuck!!!!!! +11/20/2013,Comedians,@ericandre,Abacuses are meaningless... +11/16/2013,Comedians,@ericandre,Am I the only one that thinks smoking crack isn't that big of a deal???? 4 more years Rob Ford!!!! +11/13/2013,Comedians,@ericandre,send me a song i've never heard before or a video i've never seen before +11/10/2013,Comedians,@ericandre,I wanna give Jay-Z molly. #TomFord +10/23/2013,Comedians,@ericandre,Did you know Miley Cyrus and Justin Bieber... are the same person??? +10/08/2013,Comedians,@ericandre,Always remember: No one that works at the airport gives a shit about you... +09/09/2013,Comedians,@ericandre,Legalize Silk Road!!!! +09/09/2013,Comedians,@ericandre,I wonder what Georgia O'Keeffe's vagina looked like... +09/07/2013,Comedians,@ericandre,"RT @Alfredlt: @ericandre STAY AWAY FROM ME + MY FAMILY YOU ARE SICK TRYING TO RENT AN APARTMENT IN MY BUILDING TO STALK ME, LEAVE ME ALONE" +09/07/2013,Comedians,@ericandre,"RT @Alfredlt: @ericandre Oh please, get some relevance and then talk about Madonna." +09/06/2013,Comedians,@ericandre,A hahahah so weird that madonna has this huge racist following! Who knew?! +09/06/2013,Comedians,@ericandre,RT @Alfredlt: #GetErikAndreAndBlackPeopleOutOfTwitter @ericandre +09/06/2013,Comedians,@ericandre,RT @Alfredlt: @ericandre Are you jealous because she has 30 years in the industry? And you can't be relevant after all this time v +09/06/2013,Comedians,@ericandre,RT @Amen_Madonna: @ericandre Suck it harder next time. Closet case. +09/06/2013,Comedians,@ericandre,RT @Amen_Madonna: @btsmgl @ericandre Not worked up! Obvi he wants to suck peen but can't cause he's in the closet. So he'd rather tell a ba… +09/06/2013,Comedians,@ericandre,"RIP Madonna - Aug 16, 1958 - September 6, 2013" +09/02/2013,Comedians,@ericandre,"Change ""bitch"" to ""cunt"" in any rap song to remind yourself how comfortable you've become with pop misogyny. #casualsexism" +09/01/2013,Comedians,@ericandre,Mom's mind being blown!!! http://t.co/8NblTirRa2 +08/31/2013,Comedians,@ericandre,Swear I didn't know the fashion police writers were striking!!! Power to the people! I'm sorry! +08/27/2013,Comedians,@ericandre,"NYC = New YUPPIE City, am I right?!?! #therentistoodamnhigh" +08/15/2013,Comedians,@ericandre,I have a theory that Futurama is always on at least one channel at all times. +08/08/2013,Comedians,@ericandre,poop +07/16/2013,Comedians,@ericandre,@twittels Rony Seikaly-Cell Anemia +07/15/2013,Comedians,@ericandre,"It's a strange country: We outcast Paula Deen for saying nigger, but we let people racially profile , stalk, & murder unarmed black children" +07/14/2013,Comedians,@ericandre,Can we arrest the jurors? +07/13/2013,Comedians,@ericandre,Every time someone farts an angel loses its wings. +07/12/2013,Comedians,@ericandre,I like going up to people with motorcycle helmets and asking them for Daft Punk's autograph. +07/12/2013,Comedians,@ericandre,I feel like procedural dramas are the elevator music of television +07/10/2013,Comedians,@ericandre,"People who say ""darn it"" instead of ""dammit"" weird me out" +07/09/2013,Comedians,@ericandre,Am I still an atheist if I believe in God Shammgod??? +06/22/2013,Comedians,@ericandre,I'm trying to pitch Celebrity To Catch A Predator to NBC. +06/03/2013,Comedians,@ericandre,"I'm the only superstitious atheist. I'm like, ""Bullshit there's a God--! Better not walk under this ladder...""" +05/21/2013,Comedians,@ericandre,Can we as a community just please please stop instagramming pictures of food?... Enough is enough. +05/08/2013,Comedians,@ericandre,I wanna pitch a show to the food network that teaches people how to cook speed #anarchistcookbooktv +05/01/2013,Comedians,@ericandre,I cant wait until French Montana and Hannah Montana go on tour... +04/26/2013,Comedians,@ericandre,Does anyone in the world understand the archaic pronounciation guides in dictionaries and encyclopedias? #(pron.: /ˈdɒmɨnɨk ˈmɒnəhæn/; ) +04/18/2013,Comedians,@ericandre,"the world is ending soon, right?" +04/09/2013,Comedians,@ericandre,out of all the drugs i've done i think that Tums is my favorite +04/04/2013,Comedians,@ericandre,I figured by 30 I'd stop huffing nitrous and jacking off by humping my pillow... Nope. +03/29/2013,Comedians,@ericandre,"Just over heard a homeless dude talking to himself say, ""yeah, the presidents black too, bitch.""" +03/28/2013,Comedians,@ericandre,"Whenever a girl tells me they're in long-distance relationship, I say ""Oh that's cool. I'm single too.""" +07/02/2018,Comedians,@SandraBernhard,And we stand with yiu Auntie Maxine you are our northern star! https://t.co/RP7KCPO6yv +07/02/2018,Comedians,@SandraBernhard,RT @JimCarrey: God Bless You Mr Rosenstein for bravely standing up to the likes of Jim Jordan and Trey Gowdy who seek to destroy the rule o… +07/02/2018,Comedians,@SandraBernhard,RT @SenWarren: .@realDonaldTrump’s short list of Supreme Court nominees was hand-picked by right-wing extremists who want to criminalize ab… +07/01/2018,Comedians,@SandraBernhard,Oh yes Barack that’s the damn truth https://t.co/z7nEohae9N +07/01/2018,Comedians,@SandraBernhard,RT @AllMattNYT: BREXIT & RUSSIA EXCLUSIVE: Previously unreported emails suggest Brexit moneyman Arron Banks was more engaged with Russian d… +07/01/2018,Comedians,@SandraBernhard,RT @lizzwinstead: 👇🔥💜 https://t.co/Ubvj4nHBJN +07/01/2018,Comedians,@SandraBernhard,What do they want that they don’t already have? https://t.co/057gqLSA9S +07/01/2018,Comedians,@SandraBernhard,RT @TrueFactsStated: Yep. We’re going for subtle. https://t.co/Y35dAclY7d +07/01/2018,Comedians,@SandraBernhard,In solidarity with my brothers and sisters who deserve the promise of the American Dream #Resist ignorance greed an… https://t.co/phZBFVjlxe +06/29/2018,Comedians,@SandraBernhard,Thank you darling https://t.co/sY8tNq27r9 +06/29/2018,Comedians,@SandraBernhard,Go Elizabeth yes! https://t.co/kV5tuoHGQC +06/29/2018,Comedians,@SandraBernhard,Thank you darling Carole https://t.co/kWKq2MGHuS +06/29/2018,Comedians,@SandraBernhard,Thank you! https://t.co/JR2ZzIjCpV +06/29/2018,Comedians,@SandraBernhard,yes baby you are 100% correct https://t.co/dkU8YqKJB6 +06/28/2018,Comedians,@SandraBernhard,this Woman must seal her fate on this nomination or spend her life looking in the mirror of shame and regret… https://t.co/9srmFZArwY +06/28/2018,Comedians,@SandraBernhard,Madame do not let them force a new Supreme on us until the mid terms fight with all of your heart and soul https://t.co/qufQ7ika6s +06/28/2018,Comedians,@SandraBernhard,lets not imagine how many our #FakePresident has arranged and paid for that's for damn sure https://t.co/tpuTFiK81t +06/28/2018,Comedians,@SandraBernhard,"again and again and again ""thoughts and prayers"" like empty vessels filled with the dust of your insincerity and li… https://t.co/W0Qu2ofZHm" +06/28/2018,Comedians,@SandraBernhard,beat the guns into plowshares isn't that what the bible says? since that seems to be last word is government these… https://t.co/XpMihC5Pim +06/28/2018,Comedians,@SandraBernhard,Nancy you are so right on https://t.co/IfpUZvHib0 +06/28/2018,Comedians,@SandraBernhard,listen to Ahhnold on this one kids https://t.co/nUWoG0yJWU +06/28/2018,Comedians,@SandraBernhard,read it read it read it and remember it https://t.co/PokjHKVeTd +06/28/2018,Comedians,@SandraBernhard,and they never will it's a hoax a fakery of would be morality judgement hypocrisy racism misogyny contempt for the… https://t.co/OqAPKBxZhU +06/28/2018,Comedians,@SandraBernhard,Resist! https://t.co/dCp3qhitVf +06/28/2018,Comedians,@SandraBernhard,Ladies who know the score ⁦@debimazar⁩ keeping it fresh and real in #Sandyland that’s the truth baby ⁦@RadioAndySXM⁩ https://t.co/UaRUXxtFdd +06/28/2018,Comedians,@SandraBernhard,"RT @DanRather: To give in to despair, to be paralyzed by inaction, is to let them win. I've seen generations of Americans not give up on ou…" +06/28/2018,Comedians,@SandraBernhard,Yes Auntie Maxine my northern star your voice rises above the din of ignorance and we carry you upon our shoulders https://t.co/Wms2CVu5Vq +06/28/2018,Comedians,@SandraBernhard,RT @ChelseaClinton: The first comment. https://t.co/5Uo2oDmoBw +06/28/2018,Comedians,@SandraBernhard,Call call call! https://t.co/cpJq2MA38M +06/28/2018,Comedians,@SandraBernhard,Watching now essential viewing ⁦@Lawrence⁩ thank you for dropping into #Sandyland bringing your brilliance and grea… https://t.co/0RXznIBeDJ +06/28/2018,Comedians,@SandraBernhard,thank you can't wait to watch @dodo is an innovative respite from the cruelty of the human condition https://t.co/RYVZJjJboH +06/27/2018,Comedians,@SandraBernhard,agreed but you should still get out and do something to help the fight! https://t.co/V1cXU46HVJ +06/27/2018,Comedians,@SandraBernhard,this is not true i think wise people choose their words carefully there is great power in restraint and meditation… https://t.co/fGMsobGwAB +06/27/2018,Comedians,@SandraBernhard,come on Arizona blow everyone's mind stand like an ancient Saguaro and let them have it! https://t.co/Eqki6nVxWU +06/27/2018,Comedians,@SandraBernhard,to crush and control and walk over 99% of humanity this is the motivation of all these people to destroy happiness… https://t.co/3n2LxwUXpz +06/27/2018,Comedians,@SandraBernhard,its a Westward dystopian shit show Jeffrey but i know we will persevere thank you brilliant friend https://t.co/S1xjnDJPsF +06/27/2018,Comedians,@SandraBernhard,we need to advocate for ourselves with the support of fearless senators like you https://t.co/QUokDZbQoL +06/27/2018,Comedians,@SandraBernhard,Auntie Maxine is my northern star never stop warrior-ess @RepMaxineWaters let's get back to matters at hand reuniti… https://t.co/A2irIU6JPd +06/27/2018,Comedians,@SandraBernhard,progressive revolutionary game changing status quo killer go go go! https://t.co/PRHuQDtIi0 +06/27/2018,Comedians,@SandraBernhard,if this doesn't tear open you heart then nothing can! https://t.co/ceeUUBOYRX +06/27/2018,Comedians,@SandraBernhard,always classy! so glad he snuck into the White House! https://t.co/OJgmYofuuf +06/27/2018,Comedians,@SandraBernhard,a fight to the end of civilization is at hand https://t.co/xyAqjuMLuq +06/27/2018,Comedians,@SandraBernhard,a delight to have Mr ODonnell back in Sandyland always a calming force! https://t.co/YRrHgZOOr5 +06/27/2018,Comedians,@SandraBernhard,now more than ever you need to escape into #Sandemonium kids @GuildHall this Saturday June 30th see you there https://t.co/PdrzxPr27f +06/27/2018,Comedians,@SandraBernhard,if we can sleep soundly tonight than truly we have lost our moral compass we will continue to #StandWithMuslims unt… https://t.co/uP4tPYz84x +06/26/2018,Comedians,@SandraBernhard,S #Sandyland double header ⁦@LisaLeslie⁩ ⁦@theebillyporter⁩ bringing true beauty to the land ⁦@RadioAndySXM⁩ https://t.co/FCv1qkp4qC +06/26/2018,Comedians,@SandraBernhard,There’s no one more talented or chic than my friend @thebillyporter #PrayTell ⁦@PoseOnFX⁩ watch for us on episode 6… https://t.co/yF6802H7bJ +06/26/2018,Comedians,@SandraBernhard,"when we get to the edge of democracy will we persevere? i believe we will, but it's not going to be pretty. https://t.co/v4Bwu1pDGG" +06/26/2018,Comedians,@SandraBernhard,Words of wisdom from my brillian daughter https://t.co/woLGjFS7RQ +06/26/2018,Comedians,@SandraBernhard,go Jim go https://t.co/8LmrIAmQzR +06/26/2018,Comedians,@SandraBernhard,it's unforgivable and irreparable if we don't stand up now then no one can expect our support when the shit hits th… https://t.co/8i9OYNAB36 +06/26/2018,Comedians,@SandraBernhard,come see me this Saturday @GuildHall #Sandyland live kids! https://t.co/yXrXzWN9Kw +06/25/2018,Comedians,@SandraBernhard,The woman who lit up New York nights ⁦@amysacco⁩ entrepreneur moving it it all up #Sandyland summer Monday ⁦… https://t.co/0UBWAfUywQ +06/25/2018,Comedians,@SandraBernhard,as old as the republic we must be constantly vigilant https://t.co/IiyEV4kE3f +06/25/2018,Comedians,@SandraBernhard,this is brutal hard to take we must find some alternative to petroleum based products before we destroy the planet https://t.co/HyopR6dwCO +06/25/2018,Comedians,@SandraBernhard,we cannot back off this man made disaster keep calling your congress people and reunite these families asap https://t.co/FnGPvNUOGu +06/25/2018,Comedians,@SandraBernhard,Whew! just glad you'll still be bringing scents and scentsiblilty to NYC adore you kids come talk to me about perf… https://t.co/CqLM0s6aIm +06/25/2018,Comedians,@SandraBernhard,everyone needs to get woke now! https://t.co/sF2MFBxBiS +06/23/2018,Comedians,@SandraBernhard,boom https://t.co/phOBEk8FkP +06/23/2018,Comedians,@SandraBernhard,"RT @robreiner: This November Donald Trump is not on the ballot. But inhumanity is. So are racism, Incompetence, corruption, immorality and…" +06/23/2018,Comedians,@SandraBernhard,glad we made it home baby! https://t.co/MxxUz1IMJ8 +06/22/2018,Comedians,@SandraBernhard,This is what I keep imagining shattering https://t.co/X94ydDKKUT +06/22/2018,Comedians,@SandraBernhard,"RT @DannyZuker: Somehow, on their 1000 mile journey, these parents were able to protect their kids from gangs, human traffickers, rapist, m…" +06/22/2018,Comedians,@SandraBernhard,Give some sisters a break! #Sandyland was rich today darling ⁦@JeniferLewis⁩ ⁦@MacyGraysLife⁩ packed with righteous… https://t.co/fPH7LQz9Xr +06/21/2018,Comedians,@SandraBernhard,We demand to know what is happening to these children! https://t.co/gLFDIwTPxP +06/21/2018,Comedians,@SandraBernhard,Full disclosure we want to know what is happening to these children! https://t.co/DDfSc6qUYI +06/21/2018,Comedians,@SandraBernhard,I love the good heart if this country https://t.co/1WpOzxvpq8 +06/21/2018,Comedians,@SandraBernhard,RT @Lawrence: Anyone wanna bet against @MichaelAvenatti eventually revealing some important news with ICE whistleblowers? https://t.co/z4bT… +06/20/2018,Comedians,@SandraBernhard,RT @robreiner: The President of the United States is a monster. Decent loving Republicans must now stand up. America can not be a country t… +06/20/2018,Comedians,@SandraBernhard,Ellen can you believe this one chiming in? A Shonda https://t.co/7cEPRNKuEj +06/20/2018,Comedians,@SandraBernhard,Please check this out https://t.co/58p7vckV9S +06/20/2018,Comedians,@SandraBernhard,Yes brothef https://t.co/i451Ymnc6u +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: You will never hear this on @foxnews because immigration is a wedge issue to get people to vote for republicans so business… +06/20/2018,Comedians,@SandraBernhard,No shit they can’t find them https://t.co/PkhRkNzP98 +06/20/2018,Comedians,@SandraBernhard,"RT @ABC: Hugging a child, Rep. John Lewis vows action to stop practice of family separation. + +""Just tell me whatever you want me to do. I w…" +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: Now would be the time to cut the montage of how @FoxNews said he couldn’t fix it and then said he could when he made an adj… +06/20/2018,Comedians,@SandraBernhard,Don’t stop the music! https://t.co/0Fm9123nSa +06/20/2018,Comedians,@SandraBernhard,We went so deep in #Sandyland just getting back up with ⁦@ourladyj⁩ the discussion continues America we bring the g… https://t.co/iHMMRrJgFP +06/20/2018,Comedians,@SandraBernhard,RT @RepJoeKennedy: Arrived in Tornillo TX where first tent city for kids has gone up. Was refused entrance by HHS. Given amount of misinfor… +06/20/2018,Comedians,@SandraBernhard,RT @Bro_Pair: Simpering Nazi fuck Stephen Miller is smugly taking credit for the family separations. Maybe he wouldn’t like protestors at h… +06/20/2018,Comedians,@SandraBernhard,"RT @KamalaHarris: It’s time for Secretary Nielsen to resign. The government should be keeping families together, not tearing them apart. Ad…" +06/20/2018,Comedians,@SandraBernhard,RT @JamilSmith: You really have to be a special kind of motherfucker to mock a 10-year-old girl with Down syndrome separated from her immig… +06/20/2018,Comedians,@SandraBernhard,RT @American_Bridge: WATCH as attendees arrive at a fundraiser at Trump Hotel while the cries of children being ripped away from their pare… +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: That’s right. Call @FoxNews and let them know you are boycotting all Fox businesses until they stop supporting all of this… +06/20/2018,Comedians,@SandraBernhard,The height of utter madness https://t.co/oiLtHXCNRU +06/20/2018,Comedians,@SandraBernhard,RT @jamieleecurtis: Child actor. Not a child actor. @AnnCoulter Shame on you. https://t.co/af9mEgTBfX +06/20/2018,Comedians,@SandraBernhard,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Comedians,@SandraBernhard,"RT @ABC: Experts say psychological impact of family separation on par with abuse: + +""No amount of colorful rooms with lots of great toys, r…" +06/20/2018,Comedians,@SandraBernhard,Listen to this then call your congress person and blast them into action https://t.co/sjohcYvcek +06/20/2018,Comedians,@SandraBernhard,"RT @MSNBC: ""If kids don’t eat in peace, you don’t eat in peace"" + +Demonstrators interrupted Homeland Security Sec. Nielsen’s dinner at an up…" +06/20/2018,Comedians,@SandraBernhard,RT @AndrewFeinberg: Not sure who’s tweeting for FLOTUS but this is another “Let then eat cake” moment https://t.co/Sarw3xGXgO +06/20/2018,Comedians,@SandraBernhard,RT @danagould: Congrats to Corey Lewandowski on the five second clip that will define his life. https://t.co/RXZXXohPvv +06/20/2018,Comedians,@SandraBernhard,Thank you Mr Avenatti https://t.co/aYi6CWmQqM +06/20/2018,Comedians,@SandraBernhard,RT @KamalaHarris: Secretary Nielsen must resign. The human rights abuses being committed against children — many are just toddlers — by the… +06/20/2018,Comedians,@SandraBernhard,Imagine how much further we’d be now if only @HillaryClinton had not been robbed of the presidency https://t.co/oYzGZdWgNS +06/20/2018,Comedians,@SandraBernhard,We second this motion https://t.co/lIzN0iHQYl +06/19/2018,Comedians,@SandraBernhard,"RT @business: “Modern Family” co-creator plans to leave 21st Century Fox’s TV studio, saying that he’s “disgusted” by the company’s ties to…" +06/19/2018,Comedians,@SandraBernhard,RT @NYMag: President Trump has reached a new rhetorical low https://t.co/0AUig6JZ1l +06/19/2018,Comedians,@SandraBernhard,"RT @MiaFarrow: ‘On the Texas side of the Mexican border today, thousands of children, by order of the Trump Administration, are learning wh…" +06/19/2018,Comedians,@SandraBernhard,"RT @BettyBuckley: Dear US Attorneys—Sue this horrid, monstrous regime for Child Abuse & the abuse of Human Rights! https://t.co/UYSV4yH8OK" +06/19/2018,Comedians,@SandraBernhard,"RT @nytimes: Here is what is happening to migrant families on the border, and what’s behind it https://t.co/1tItGvWcg8" +06/19/2018,Comedians,@SandraBernhard,@MonaHannaA brilliant new book https://t.co/v66m7PlYcz +06/19/2018,Comedians,@SandraBernhard,An American hero https://t.co/ZHoPJjeOTF +06/19/2018,Comedians,@SandraBernhard,This woman is an American hero her new book What The Eyes Don’t See is about the #FlintWaterCrisis is mandatory rea… https://t.co/jBD1cMBItz +06/19/2018,Comedians,@SandraBernhard,Won’t you join me June 30 #Sandyland live #GuildHall the Hamptons baby! https://t.co/flvIwDx66u +06/19/2018,Comedians,@SandraBernhard,Captain Winstead may i see you in the control room please. immediately. https://t.co/ntvhYxcm4t +06/18/2018,Comedians,@SandraBernhard,end of discussion https://t.co/WGRVxdxDBe +06/18/2018,Comedians,@SandraBernhard,This is America ⁦@AlexanderWangNY⁩ multicultural approach to fashion raising the conversation with a street edged e… https://t.co/72tXgQAwSt +06/18/2018,Comedians,@SandraBernhard,so proud to have you in #Sandyland Tuesday Mona how perfect that you were in discussion with the brilliant… https://t.co/EQTd8q3ARh +06/18/2018,Comedians,@SandraBernhard,Mr Clinton this would never have happened under your watch that's for damn sure https://t.co/Sket96YlsS +06/18/2018,Comedians,@SandraBernhard,lizz laughing and crying at the same moment over this https://t.co/WyryoJ8DgJ +06/18/2018,Comedians,@SandraBernhard,ice cold https://t.co/P4nwWnEHcF +06/18/2018,Comedians,@SandraBernhard,i will! can't wait for the new season of #TheAffair you are terrific https://t.co/5pvem1N0ey +06/17/2018,Comedians,@SandraBernhard,"RT @kylegriffin1: The United Methodist Church is calling on Jeff Sessions — who is Methodist — to ""immediately reverse"" the Trump admin's f…" +06/17/2018,Comedians,@SandraBernhard,The sickness is inoperable https://t.co/hufPVZNctV +06/17/2018,Comedians,@SandraBernhard,RT @IvankaTrump: My ♥️! #SundayMorning https://t.co/CN5iXutE5Q +06/17/2018,Comedians,@SandraBernhard,on fathers day everyday let's not stop until we've untied this hateful knot https://t.co/H87jWMPJMd +06/17/2018,Comedians,@SandraBernhard,you have to ask where did it all go so wrong for this person? and then you have to say we're not going to let him i… https://t.co/0UVBopsldi +06/17/2018,Comedians,@SandraBernhard,happy fathers day to my favorite dads on twitter @robreiner @DannyZuker @JuddApatow for your fearless defense on be… https://t.co/HfoHPXPyp8 +06/16/2018,Comedians,@SandraBernhard,chilling https://t.co/l7yNtEL6jY +06/16/2018,Comedians,@SandraBernhard,Danny never stop talking you hit it hard and deep every time thank you https://t.co/ckqeFuEKyx +06/16/2018,Comedians,@SandraBernhard,this is what he was fired for? that is tragic what a weak flimsy ego barely running this country sad really https://t.co/IRAKuU0OaL +06/15/2018,Comedians,@SandraBernhard,he is so cheap this man separate it kids all of it state and religion the twain shell never meet https://t.co/68yO9geiJ1 +06/15/2018,Comedians,@SandraBernhard,it's time to take a stand! https://t.co/k7PJvDtrxW +06/15/2018,Comedians,@SandraBernhard,you know we do B this is fantastic xo https://t.co/Q4n7gd5lGZ +06/15/2018,Comedians,@SandraBernhard,yes Rose i am very much alarmed and yet not at all surprised kindred spirits these two and all the other despots https://t.co/PPVDMWGJrl +06/15/2018,Comedians,@SandraBernhard,Mr Reiner we thank you https://t.co/DgZRDYPp9r +06/14/2018,Comedians,@SandraBernhard,thank you Christine this is a wonderful gift! https://t.co/lK57gTSiB3 +06/14/2018,Comedians,@SandraBernhard,RT @DannyZuker: Doing nothing in the face of monstrous acts is itself kind of monstrous. If you think tearing children from their parents’… +06/14/2018,Comedians,@SandraBernhard,read it and weep https://t.co/FJ7iN55j0c +06/14/2018,Comedians,@SandraBernhard,and start watching the streaming tonight @BroadwayHD break a leg baby! https://t.co/ziiq4y1dpW +06/14/2018,Comedians,@SandraBernhard,thank you for this i use all of these so i'll add in the gargle! you are lovely x sandy https://t.co/WQhuluSYTP +06/14/2018,Comedians,@SandraBernhard,The incredibly talented #AlexandraShiva with her new doc about Syrian refugees #ThisIsHome ⁦@EpixHD⁩ sure June 20… https://t.co/POv5zHp2oT +06/14/2018,Comedians,@SandraBernhard,The girls stepped into #Sandyland with panache! ⁦@LeaKThompson⁩ ⁦@maddiedeutch⁩ ⁦@zoeydeutch⁩ thank you ladies! ⁦… https://t.co/q25de9RCx2 +06/13/2018,Comedians,@SandraBernhard,i adore you both forever and ever! https://t.co/qx7Uvc0Uhr +06/13/2018,Comedians,@SandraBernhard,Bat wing dolman sleeve new moon in Gemini @mxjustinVbond weaves their magic in #Sandyland soul mates forever… https://t.co/i7ae8PTURI +06/13/2018,Comedians,@SandraBernhard,i adore you Chelsea you are really funny too smart we already knew! https://t.co/LRLseY8wNE +06/13/2018,Comedians,@SandraBernhard,this is brilliant! https://t.co/9dARFZeqmN +06/13/2018,Comedians,@SandraBernhard,bring it baby can't wait to see you in #Sandyland tomorrow @RadioAndySXM https://t.co/8Qqdl0eFC2 +06/12/2018,Comedians,@SandraBernhard,with that magnetic smile and smooth approach what woman could possible resist! https://t.co/8DYZswX6qw +06/12/2018,Comedians,@SandraBernhard,gas light time. https://t.co/fwvOWVVfs4 +06/12/2018,Comedians,@SandraBernhard,Yes children this the chic & fabulous ⁦@TayeDiggs⁩ he’s back in #Sandyland bringing style love this man ⁦… https://t.co/ASr5BF1Zb0 +06/12/2018,Comedians,@SandraBernhard,The divine ⁦@HollandTaylor⁩ in #Sandyland don’t miss her brilliant show #Ann streaming June 14 ⁦@BroadwayHD⁩ a tour… https://t.co/xwK2jFvePU +06/12/2018,Comedians,@SandraBernhard,The Hamptons darling a glass of Rose and #Sandyland live June 30 ⁦@GuildHall⁩ https://t.co/8uct5wTWVR +06/11/2018,Comedians,@SandraBernhard,someone doing something about the problem read this https://t.co/QILSI7BjgF +06/11/2018,Comedians,@SandraBernhard,he's a lousy little man Coretta Scott King called him out for his racist behavior years ago shows you what kind of… https://t.co/CilBFToXHB +06/11/2018,Comedians,@SandraBernhard,What like destroying our country? https://t.co/cUucedZFWR +06/11/2018,Comedians,@SandraBernhard,Let’s start now https://t.co/h2Za04gTvh +06/11/2018,Comedians,@SandraBernhard,This disgusting small man holds enough hatred for a giant https://t.co/zjKxCT50go +06/11/2018,Comedians,@SandraBernhard,Can’t wait to talk all about her tomorrow in #Sandyland Holland! @RadioAndySXM tune in! https://t.co/o0SqYqz5WL +06/11/2018,Comedians,@SandraBernhard,Send this racist fool into the desert https://t.co/znzjX6kRMu +06/11/2018,Comedians,@SandraBernhard,Yes please! https://t.co/1xfGPfP2sA +06/11/2018,Comedians,@SandraBernhard,She’s divine @arianatherose fab new music love of @britneyspears and summer fun #Sandyland Monday @RadioAndySXM https://t.co/XchnqrLWGh +06/11/2018,Comedians,@SandraBernhard,it was @britneyspears day in #Sandyland stay tuned https://t.co/OT0MMHzvZJ +06/11/2018,Comedians,@SandraBernhard,So thrilled for my friend #LaurieMetcalf on her #ThreeTallWomen @TheTonyAwards she is a superstar! +06/11/2018,Comedians,@SandraBernhard,you must read this #FlintWaterCrisis @MonaHannaA who will be my guest in #Sandylad June 19 @RadioAndySXM https://t.co/MMypx9gNJg +06/10/2018,Comedians,@SandraBernhard,"as the minutes sweep pass the face of the true moral justice clock we watch peoples lives tick away, how close to t… https://t.co/Ypsd6FQCxJ" +06/10/2018,Comedians,@SandraBernhard,breathing deeply waiting for the shoe to drop but when we ask when? https://t.co/D8iAF8NYXq +06/10/2018,Comedians,@SandraBernhard,thank you honey #GayPride DC was incredible thank you again #WashingtonBlade for a stellar night https://t.co/eJUQprC7qZ +06/10/2018,Comedians,@SandraBernhard,"RT @Shareblue: “They had to use physical force to take the child out of his hands.” +https://t.co/G5jdMTb0PP" +06/09/2018,Comedians,@SandraBernhard,"yes Jim and we all know how true that is now more than ever just look at our hmmm ""President""! https://t.co/5VVFLKEycB" +06/09/2018,Comedians,@SandraBernhard,Jeffrey thank you again https://t.co/fb9NHtVYf8 +06/09/2018,Comedians,@SandraBernhard,You begin to know people in a different way once they are gone what a terrible loss https://t.co/NS23Her7zL +06/09/2018,Comedians,@SandraBernhard,And never forget it https://t.co/yq6oZVPR6u +06/08/2018,Comedians,@SandraBernhard,Wearing your gold boots on stage rockin! https://t.co/pPP5heGQvE +06/08/2018,Comedians,@SandraBernhard,"RT @jfreewright: Throwing pardons around like paper towels to the rich in Puerto Rico - vicious song & dance politricks - when, outside, th…" +06/08/2018,Comedians,@SandraBernhard,Fabulous chat with #Veronica @abc7gmw #LGBTQ… https://t.co/fhjzGfphNL +06/07/2018,Comedians,@SandraBernhard,RT @MonaHannaA: This is cruel. This is abusive. This is an abject violation of human rights. This is the type of trauma a child may never r… +06/07/2018,Comedians,@SandraBernhard,RT @CharlesMBlow: I just can’t take this anymore. His green card app is in progress. His wife and kids are citizens. This is in my neighbor… +06/07/2018,Comedians,@SandraBernhard,Pigs are clean and highly intelligent as well Dick https://t.co/oYAtGIhmfR +06/07/2018,Comedians,@SandraBernhard,thank you for all of my wonderful birthday wishes you kids really know how to make a gal feel special love it! +06/07/2018,Comedians,@SandraBernhard,this is how i demand to be read! https://t.co/Atttyw3AWt +06/07/2018,Comedians,@SandraBernhard,to my soul brother who i adore always! thank you baby! https://t.co/VYaKbbPNcs +06/07/2018,Comedians,@SandraBernhard,i'm always in the mood for a little bit of Burt! https://t.co/ydJKk4Rxqx +06/07/2018,Comedians,@SandraBernhard,my gemini twin and generally great person https://t.co/TxdkpNhOwW +06/07/2018,Comedians,@SandraBernhard,love you Lois always a delight! https://t.co/WBOjxes9jj +06/07/2018,Comedians,@SandraBernhard,everyone get out to #Sandyland live tonight #Philly baby! https://t.co/kwdiRO1psX +06/07/2018,Comedians,@SandraBernhard,i love you both looking forward to so many more great matches! https://t.co/BxVzUGcWhD +06/06/2018,Comedians,@SandraBernhard,Thank you kids love you Beth and Mitchy! https://t.co/ldwodUyPVS +06/06/2018,Comedians,@SandraBernhard,My birthday show with dear friend @BettyBuckley guru virtuoso wisdom seeker her new album #Hope is a masterpiece ge… https://t.co/oVfb13hKrc +06/06/2018,Comedians,@SandraBernhard,you're up to bat Mikey happy early birthday to you! https://t.co/Vb5Ha3xOOt +06/06/2018,Comedians,@SandraBernhard,for my birthday let's fix #FlintWaterCrisis once and for all! https://t.co/wYELBCouWk +06/06/2018,Comedians,@SandraBernhard,im comin philly! #Sandyland live tomorrow night June 7th be there! https://t.co/KqzaiZycMA +06/06/2018,Comedians,@SandraBernhard,WMC you are the best what a sweetheart your friendship means the world to me! love you and Greg wow! https://t.co/3UiY05VxVg +06/06/2018,Comedians,@SandraBernhard,Philly get your asses in gear! #Sandyland live tomorrow don't let me down! https://t.co/9SrBtLyJ9e +06/06/2018,Comedians,@SandraBernhard,thank you! let's rock it x s https://t.co/CuoURg44hn +06/06/2018,Comedians,@SandraBernhard,you are a doll T love you baby thank you xo sandy https://t.co/B7rVgRy29H +06/05/2018,Comedians,@SandraBernhard,#90210 #Melroseplace #Younger #DarrenStar brings all his characters to life shining bright in #Sandyland… https://t.co/IeLRxUPKNj +06/05/2018,Comedians,@SandraBernhard,#WorldEnvironmentDay #BeatPlasticPolution @belindaofficial accepting your challenge! Inching toward a plastic free… https://t.co/npxyAORaZX +06/05/2018,Comedians,@SandraBernhard,Vote today https://t.co/7PHTLpFusd +06/05/2018,Comedians,@SandraBernhard,yes you know we do! https://t.co/rPBezbTgHZ +06/05/2018,Comedians,@SandraBernhard,bring it B! https://t.co/yFY34ydmmH +06/05/2018,Comedians,@SandraBernhard,and we are looking out for you! https://t.co/IF4i4ore2O +06/04/2018,Comedians,@SandraBernhard,yes that's right thank you @MsSarahPaulson for bringing your A game to the land of Sandy memorable funny brilliant! +06/04/2018,Comedians,@SandraBernhard,memo to #SupremeCourt we don't want those bleached white flour sugar cakes anyway we like to aim a little higher i'… https://t.co/YYrRMIVUjm +06/04/2018,Comedians,@SandraBernhard,A brilliant “two hander” in #Sandyland starring the one & only #sarahpaulson #Oceans8 baby she’s my friend & a supe… https://t.co/NMOIXnj5Hb +06/04/2018,Comedians,@SandraBernhard,get to #Sandyland live this thursday June 7 Philly baby! https://t.co/pfnxhWxm6q +06/04/2018,Comedians,@SandraBernhard,"someone stop the madness of ""King Donald"" in the name of democracy everywhere! https://t.co/bIgBFGol82" +06/03/2018,Comedians,@SandraBernhard,"watch me host tonight the fabulous https://t.co/gDTn3nUzaW +#Collection1 live streaming at 7:30 chic!" +06/02/2018,Comedians,@SandraBernhard,#GayPride #Sandyland live! June 8n https://t.co/xKFMpLZr9x +06/30/2018,Comedians,@BillyCrystal,Cool! Where did yu get that? https://t.co/9nAjPYKxEW +06/30/2018,Comedians,@BillyCrystal,Thanks Scott- it’s my fav.#isaw https://t.co/LwazADjSQh +06/29/2018,Comedians,@BillyCrystal,"RT @ShaunKing: Of course @realDonaldTrump has endangered American journalists. + +He frequently says we are ""the enemy"" and the ""greatest thr…" +06/27/2018,Comedians,@BillyCrystal,RT @SenWarren: Mitch McConnell should follow the Mitch McConnell rule. Let the American people have a say when women’s health and equal rig… +06/27/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Anthony Kennedy to retire from Supreme Court. Let’s pray to God Putin appoints someone reasonable. +06/17/2018,Comedians,@BillyCrystal,Have a Monster Father’s Day! Disneyland I’ve got my eye on you.! https://t.co/u3HdVvbwXX +06/17/2018,Comedians,@BillyCrystal,RT @ShaunKing: Generations from now we will be talking about the awful camps and jails and detention centers where immigrant children were… +06/17/2018,Comedians,@BillyCrystal,RT @SenWarren: Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice heard and… +06/12/2018,Comedians,@BillyCrystal,Please watch! https://t.co/v73HK86FMS +06/12/2018,Comedians,@BillyCrystal,"RT @ShaunKing: The notion that this is irrelevant is outrageous. + +The man literally cheated and lied on all three of his wives. He broke h…" +06/12/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Trump was so pleased with his meeting with Kim Jong Un that he announced the United States will now hold peace talks with… +06/11/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: I really hope Trump makes friends with Kim because everyone else wants us dead. +06/11/2018,Comedians,@BillyCrystal,RT @SenSanders: I find it very strange that President Trump has such a hard time getting along with the leaders of the world's major democr… +06/10/2018,Comedians,@BillyCrystal,"RT @Amy_Siskind: Republicans in Congress- if you remain silent after yesterday’s debacle, you are truly cowards and traitors to our democra…" +06/10/2018,Comedians,@BillyCrystal,"RT @SenJohnMcCain: To our allies: bipartisan majorities of Americans remain pro-free trade, pro-globalization & supportive of alliances bas…" +06/09/2018,Comedians,@BillyCrystal,"Hey kid, “Vats Nu”? https://t.co/oWIxBInDZZ" +06/09/2018,Comedians,@BillyCrystal,That is from “Midnight Train to Moscow” HBO special. First American comedian to play the Soviet Union. #proud https://t.co/ykwMq5MocD +06/09/2018,Comedians,@BillyCrystal,RT @paulshipper: Latest artwork for @shoutfactory just dropped! I absolutely love this movie #CitySlickers! Big thanks to @billycrystal for… +06/06/2018,Comedians,@BillyCrystal,"RT @MMFlint: So he cancels the SuperBowl party at the WH, disinvites the PhiladelphiaEagles, says he’s holding a patriotic ceremony instead…" +05/30/2018,Comedians,@BillyCrystal,"RT @MMFlint: So @therealroseanne woke up this morning & posted hateful, slanderous tweets about me, Valerie Jarrett, George Soros & Chelsea…" +05/28/2018,Comedians,@BillyCrystal,Goat https://t.co/3aMI0ddaCu +05/25/2018,Comedians,@BillyCrystal,RT @jayleno: Taking my pal @BillyCrystal in Muhammad Ali's 1976 Alfa Romeo Spider. #JayLenosGarage https://t.co/uSWtamMMdC +05/25/2018,Comedians,@BillyCrystal,Had great time with Jay tonight at 10pm on@lenosgarage on CNBC #ali’s car +05/22/2018,Comedians,@BillyCrystal,"RT @LenosGarage: ""The Greatest"" boxer and sports car of all time. + +Don't miss Muhammad Ali's 1976 Alfa Romeo Spider on #JayLenosGarage Thur…" +05/09/2018,Comedians,@BillyCrystal,RT @BarackObama: There are few issues more important to the security of the US than the potential spread of nuclear weapons or the potentia… +05/09/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Breaking News: Trump to back out of Louisiana Purchase. +05/01/2018,Comedians,@BillyCrystal,RT @HenryMaxwellCHI: Wow @FXNetworks really dropped the ball with “The Comedians” @BillyCrystal and @joshgad are so funny. That’s show was… +04/29/2018,Comedians,@BillyCrystal,"RT @baseballhall: 17 years ago today, 61* made its debut. Thanks to donations from director @BillyCrystal and actor @ThomasJane, the movie'…" +04/19/2018,Comedians,@BillyCrystal,Please vote— this is for Don. https://t.co/IfLKeCr2Mm +04/19/2018,Comedians,@BillyCrystal,〈( ^.^)ノCheering for Dinner with Don Rickles in 2nd place in #Webby People’s Voice! RT + VOTE: https://t.co/pNLBbybO1Rヽ(^。^)丿 +04/05/2018,Comedians,@BillyCrystal,RT @BetteMidler: #DreamStillLives https://t.co/H62t8Psyzo +04/05/2018,Comedians,@BillyCrystal,my dream is that all the hate and violence we have seen can someday become compassion and acceptance.… https://t.co/xsIhvnIzCk +04/04/2018,Comedians,@BillyCrystal,https://t.co/Gfks9KcJpW +03/30/2018,Comedians,@BillyCrystal,“Have the unleavened experience of a lifetime”. Your friend Joe Franklin #snl84-85 https://t.co/tiAP67kcAx +03/24/2018,Comedians,@BillyCrystal,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Comedians,@BillyCrystal,Proud to march in solidarity. https://t.co/S7nikUz6km +03/17/2018,Comedians,@BillyCrystal,Your birthday tweets are great! Much appreciated. +03/14/2018,Comedians,@BillyCrystal,"Today is my 70th b’day. +Sending you my love and thanks for all the years of your support." +02/24/2018,Comedians,@BillyCrystal,"RT @MichaelSteele: The president and others promoting arming teachers are delusional. Wake the hell up people. There was a uniformed, armed…" +02/24/2018,Comedians,@BillyCrystal,RT @Emma4Change: Excuse me while I Sob https://t.co/ZDJCivwiEq +02/24/2018,Comedians,@BillyCrystal,"RT @SenBillNelson: Instead of listening to students & parents, Gov. Scott’s plan bows to the NRA’s demands. It does not expand criminal bac…" +02/23/2018,Comedians,@BillyCrystal,More Trump lies. https://t.co/EPmQ2mnSm1 +02/15/2018,Comedians,@BillyCrystal,RT @JamieOGrady: This cartoonist deserves an award. https://t.co/GZ6SQZHAJ4 +02/15/2018,Comedians,@BillyCrystal,"RT @AlbertBrooks: Another tragic school shooting. 18 just this year! Hey Congress, your thoughts and prayers aren't working. Try somethin…" +02/10/2018,Comedians,@BillyCrystal,@derek_del #inandofitself is the show you must experience . Saw it last night and it has stayed with me. +02/10/2018,Comedians,@BillyCrystal,"@derek_del This show is remarkable. +Magical, mystifying and ultimately moving as well. A great audience experience." +02/10/2018,Comedians,@BillyCrystal,RT @AlanZweibel: Had a great time (again) being entertained and totally mystified by Derek Delgaudiio @derek_del and his amazing show #inan… +02/02/2018,Comedians,@BillyCrystal,"@BaileeMadison @1010WINS Mr? That was my father. Love watching you grow B. +Billy" +02/02/2018,Comedians,@BillyCrystal,@1010WINS @BaileeMadison Thank you B... meant a lot to me. +01/09/2018,Comedians,@BillyCrystal,"RT @NickLaparra: America, your President—you know, the #MAGA guy—doesn’t know all the words to our national anthem. This is a gross display…" +12/29/2017,Comedians,@BillyCrystal,"RT @nytimes: President Trump cast doubt on the reality of climate change, but he appeared unaware of the distinction between weather and cl…" +12/16/2017,Comedians,@BillyCrystal,"RT @SenWarren: The FCC just voted to hand control of the internet over to giant internet companies, but this isn’t over. Congress must step…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: This is important. + +Mitch McConnell, who my late grandmother in Kentucky despised, just announced that he is going to refus…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Tonight was a complete repudiation if Donald Trump. + +He won Alabama by 28% last year. +Tonight Roy Moore lost by 2%. + +A 30…" +12/13/2017,Comedians,@BillyCrystal,RT @ShaunKing: The @NYDailyNews cover tomorrow https://t.co/oxtgKsgJ6O +12/13/2017,Comedians,@BillyCrystal,RT @BetteMidler: #DougJones has won the Alabama Senate seat vacated by #JeffSessions. I believe he will bring not just honor and pride to… +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Now that Republicans just lost a Senate seat in Alabama, think of just how outrageous it was for the Republican Party to bac…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Grateful that Doug Jones ended his speech tonight w/ this: “As Dr. King said, the moral arc of the universe is long but it b…" +12/13/2017,Comedians,@BillyCrystal,RT @ShaunKing: Looking at the numbers and young white people in Alabama rejected Roy Moore even though most of their parents and grandparen… +12/13/2017,Comedians,@BillyCrystal,What are you going to tweet now potus? https://t.co/Keobk4TBUk +12/13/2017,Comedians,@BillyCrystal,RT @AP: BREAKING: Democrat Doug Jones won election to the U.S. Senate from Alabama in a sharp blow to President Trump that narrows the GOP’… +12/11/2017,Comedians,@BillyCrystal,RT @nowthisnews: This father with a fatal disease could die if the GOP tax bill is passed — watch the emotional plea he makes to his senato… +12/04/2017,Comedians,@BillyCrystal,"RT @ShaunKing: To be clear, Trump has NO PROBLEM eliminating monuments. + +Strange how vehemently he defended Confederate monuments and how…" +12/02/2017,Comedians,@BillyCrystal,"RT @CharlesMBlow: Wait, WHAT?!!! https://t.co/DJZmPn8SW1 https://t.co/HKCGyrcYvg" +12/02/2017,Comedians,@BillyCrystal,RT @ShaunKing: Flynn did not plead guilty to lying to Pence or Trump. He plead guilty to lying to the FBI and for lying on multiple forms.… +11/29/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Yesterday North Korea launched a missile that went over 2,000 miles into outer space - fully capable of hitting the United S…" +11/29/2017,Comedians,@BillyCrystal,"RT @TheMuslimGuy: Dear @Twitter... + +By tweeting Anti-Muslim conspiracy theory videos which are fake... + +@RealDonaldTrump has violated your…" +11/29/2017,Comedians,@BillyCrystal,RT @RhonddaBryant: Donald Trump is inciting religious hatred in this country by retweeting the convicted racist Jayda Fransen's vile views.… +11/29/2017,Comedians,@BillyCrystal,Had a great time on @ModernFam watch it Wednesday night https://t.co/585KmmVa5F +11/25/2017,Comedians,@BillyCrystal,RT @seanhannity: I call total Bullshit on Time. Answer the question; did you or did you not call the WH and say @realDonaldTrump @POTUS was… +11/25/2017,Comedians,@BillyCrystal,"RT @ShaunKing: In all of my life, I don't think I have ever heard of a human being so cravenly desperate for praise and adulation like Dona…" +11/20/2017,Comedians,@BillyCrystal,Had great time with @rejectedjokes Ben Schwartz on @We are Unsatisfied our new film. He's hilarious. Excited about our pairing. +11/20/2017,Comedians,@BillyCrystal,"RT @djkevlar: Here’s a first behind the scenes look at #WeAreUnsatisfied, with @mattratner directing @BillyCrystal & @rejectedjokes. #VeryS…" +11/20/2017,Comedians,@BillyCrystal,Paul Reiser has a funny new show on Hulu. Here's the trailer. https://t.co/eWNzRN1IXE +10/24/2017,Comedians,@BillyCrystal,"Sad to hear of the passing of Robert Guillaume. He was a great support to me on ""Soap"". +Great timing, charisma and class. Rest in Peace." +10/18/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Trump said he spoke to every military family who lost a loved one. + +Turns out half have never heard from him. + +A blatant li…" +10/17/2017,Comedians,@BillyCrystal,"RT @DeliliaOMalley: .@realDonaldTrump When my brother was killed, Pres Bush listened while I screamed at him & then held me as I sobbed, yo…" +10/14/2017,Comedians,@BillyCrystal,RT @jilevin: What's he on? https://t.co/9dywxdwZ1i +10/14/2017,Comedians,@BillyCrystal,"RT @SenWarren: Cutting off payments that help low-income families afford health insurance is petty, cruel, & just plain dumb." +10/14/2017,Comedians,@BillyCrystal,"RT @SenWarren: Responsible nations stick to their agreements. Responsible Presidents put America's safety first. If this President won't, C…" +10/13/2017,Comedians,@BillyCrystal,"RT @pierre: This direct statement, which plainly repudiates the uncontroversial First Amendment, is evidence of his abandonment of his oath…" +10/13/2017,Comedians,@BillyCrystal,RT @ChristophGolden: Sheriff upset about his slaves being freed. Holy fucking shit. https://t.co/rZWmoZdO2g +10/12/2017,Comedians,@BillyCrystal,Amazing comeback. So happy for all my friends with the Yankees. https://t.co/yqjo2KTO6k +10/12/2017,Comedians,@BillyCrystal,"RT @BetteMidler: $242,000 to fly to Indiana to leave a football game? Are they fucking nuts??!?? https://t.co/XfisGx2ZqD" +10/11/2017,Comedians,@BillyCrystal,"RT @ShaunKing: We should never forget this. He should be asked about it at every press conference. + +Powerful men must not be given passes…" +10/11/2017,Comedians,@BillyCrystal,"The EPA says climate change is not one of their priorities In their new four year plan. +Scott Pruitt is a menace to our planet." +10/10/2017,Comedians,@BillyCrystal,My brother wrote a beautiful book about his recovery from heart surgery. https://t.co/QlcVLVHBBy +10/10/2017,Comedians,@BillyCrystal,"RT @SI_PeterKing: Pence2 +So @VP took a taxpayer-funded airplane knowing he’d be walking out right after the anthem to protest. Swell use of…" +10/07/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Also, Stephen Paddock KILLED COPS. The Blue Lives Matter crew has said NOTHING. https://t.co/tkzIlGed8H" +10/06/2017,Comedians,@BillyCrystal,Looking forward to talking with @billmaher tonight on HBO +09/30/2017,Comedians,@BillyCrystal,"RT @SenWarren: The definition of ""poor leadership"" is sitting at your golf club while millions of US citizens beg for your help, @realDonal…" +09/27/2017,Comedians,@BillyCrystal,One of the funniest comedians ever. This is a classic. Take a knee and listen. https://t.co/fyLsnutWpH +09/25/2017,Comedians,@BillyCrystal,https://t.co/IEp72InOYt +09/25/2017,Comedians,@BillyCrystal,"RT @Variety: #ThePrincessBride turns 30: @RobReiner, @RealRobinWright, @BillyCrystal dish about making the cult classic https://t.co/0KNmQV…" +09/25/2017,Comedians,@BillyCrystal,RT @reelhoneymag: THE PRINCESS BRIDE turns 30 today! What's your favourite line from the cult classic? #PrincessBride30th (Photo: @EW) http… +09/25/2017,Comedians,@BillyCrystal,I had the honor of sitting with Don Rickles shortly before he passed away. https://t.co/SoCuS5ZKAq +09/20/2017,Comedians,@BillyCrystal,RT @AlbertBrooks: At the U.N. Trump threatened to totally destroy North Korea. And then everybody had lunch. +09/20/2017,Comedians,@BillyCrystal,RT @SenFranken: Help sound the alarm. New GOP health care bill to repeal the ACA is gaining steam. My response: https://t.co/2RaFSX5ssp +09/13/2017,Comedians,@BillyCrystal,Soap debuted 40 yrs ago today! https://t.co/UKWZN5Qf4L +09/12/2017,Comedians,@BillyCrystal,Join me @8pmET as the nation comes together to help those affected by Hurricane Harvey and Irma. Call 1-800-258-6000 or text GIVE to 80077 +09/04/2017,Comedians,@BillyCrystal,RT @tinyrevolution: Kudos to humanity for manuevering ourselves into a situation where all our lives depend on the wisdom of Kim Jong-un an… +09/03/2017,Comedians,@BillyCrystal,RT @ShaunKing: SHAME on the Salt Lake City Police Department for arresting and assaulting this nurse. She was following policy to protect h… +08/24/2017,Comedians,@BillyCrystal,"@thealisonmann @RealMegRyan @robreiner I love it! Next, "" Baby Fish Mouth""" +08/11/2017,Comedians,@BillyCrystal,3 years later and words still don't come easily. Think of Robin today and smile. +07/30/2017,Comedians,@BillyCrystal,RT @attn: President Trump should listen to this ex-cop about police brutality. https://t.co/kGay8ve8zR +07/30/2017,Comedians,@BillyCrystal,@ClaireSmith became the first woman sportswriter and the fourth African American voted into the Baseball Hall of Fame. Bravo. +07/28/2017,Comedians,@BillyCrystal,@Shananighan @JohnMcCain Absolutely -- admire people who stand up for what is good for the country and won't be bullied. +07/28/2017,Comedians,@BillyCrystal,Great respect to @JohnMccain who put country over party. +07/26/2017,Comedians,@BillyCrystal,RT @SenFranken: Paul Wellstone said politics is about improving people's lives. I urge GOP colleagues to reject health care plans that woul… +07/24/2017,Comedians,@BillyCrystal,@JimmyKimmelLive is repeating the show I did last week this coming Thursday. https://t.co/fWXqn0CT08 +07/24/2017,Comedians,@BillyCrystal,"RT @RealDanielStern: Felt inspired to write something when I heard about the passing of my friend, John Heard... https://t.co/zi7gdQZYOa" +07/16/2017,Comedians,@BillyCrystal,Looking forward to being on @JimmyKimmelLive Monday night. Been on a break since my tour ended. Time to get back to work. +06/30/2017,Comedians,@BillyCrystal,@IndecentBway the greatest bway experience I have ever had! Run to see it! https://t.co/jNaLXYBtBI +06/02/2017,Comedians,@BillyCrystal,RT @BernieSanders: With or without the support of Trump and the fossil fuel industry we must transition rapidly away from fossil fuels to r… +06/02/2017,Comedians,@BillyCrystal,"RT @MarkRuffalo: Shame on you @realDonaldTrump as people lose their lives, homes and economic opportunities to your childish refusal to hon…" +06/01/2017,Comedians,@BillyCrystal,RT @MMFlint: America First! Earth Last! #ParisClimateAccord +06/01/2017,Comedians,@BillyCrystal,Sending love to my dear friend @AlanZweibel who lost his sister Fran today. +05/14/2017,Comedians,@BillyCrystal,"@BillyJoel and Pink 2nite DodgerStadium I opened for BJ in '74 +One of my first gigs. +Awesome show tonight. https://t.co/hls1mI3gDI" +05/13/2017,Comedians,@BillyCrystal,RT @AllanMargolin: #Climate Movie Meme: Miracle Max Knows We MUST Storm The Castle Of Climate Denial - @RisingSign @rob_bieber @rosieperezb… +05/02/2017,Comedians,@BillyCrystal,"Tour ended last night thanks to all the awesome audiences. Loved working for you. +Nice to have a night off. bc https://t.co/C1qKmMMFP3" +04/28/2017,Comedians,@BillyCrystal,Look where I am https://t.co/zQjLtdvvlq +04/12/2017,Comedians,@BillyCrystal,Billy Crystal Remembers Don Rickles: ‘There Was No One Like Him’ https://t.co/U4b6DRP1Ks via @variety +04/06/2017,Comedians,@BillyCrystal,"Don Rickles has passed away. +A giant loss." +03/27/2017,Comedians,@BillyCrystal,Excited to be at the State Theatre Wednesday Nite in Cleveland.@KingJames are you in town? +03/18/2017,Comedians,@BillyCrystal,"Sorry to my fans in Philly for postponing my show dates. +Fighting a nasty flu. New dates are April 14-15." +02/27/2017,Comedians,@BillyCrystal,Amazing ending. Wish that had happened on Election Day. +02/27/2017,Comedians,@BillyCrystal,Loved what you did Jimmy! +02/25/2017,Comedians,@BillyCrystal,Can't wait for the show tonight at the Majestic Theatre in San Antonio! https://t.co/jmfNbh6afk +02/21/2017,Comedians,@BillyCrystal,"Honoured that Icon @Carol Burnett came to our show! +San Antonio next stop Friday. https://t.co/SdrcLra2qP" +02/21/2017,Comedians,@BillyCrystal,https://t.co/OoqDP56hUj check this out +02/10/2017,Comedians,@BillyCrystal,"Bay Area! Don’t miss me at @foxoakland on 3/1 doing what I love to do best, make you laugh! Get tickets at https://t.co/0Qhwany9Mt" +02/02/2017,Comedians,@BillyCrystal,RT @RealDanielStern: Mitch and Phil are finally reunited... at #Westworld! What could possibly go wrong? @funnyordie @BillyCrystal https://… +02/02/2017,Comedians,@BillyCrystal,RT @ptolemy: City \W/ Slickers! me and @Hemsdog take on two BAD hombres... (@RealDanielStern @BillyCrystal... comedy idols!) https://t.co/… +02/02/2017,Comedians,@BillyCrystal,RT @AngelaSarafyan: My dream came true when I got to work with @BillyCrystal and @RealDanielStern for a brief moment as Clementine in this… +02/02/2017,Comedians,@BillyCrystal,"Mitch & Phil from 'City Slickers' are back & they're in @WestworldHBO! Thanks, @funnyordie & @RealDanielStern! https://t.co/afiqigFYAb" +02/01/2017,Comedians,@BillyCrystal,Clearwater was fantastic last night. Orlando tonight. +01/28/2017,Comedians,@BillyCrystal,"RT @jerryspringer: Enjoyed seeing @BillyCrystal last night...the consummate entertainer...and gentleman. Oh, and did I say funny? https://t…" +01/25/2017,Comedians,@BillyCrystal,"RIP Mary Tyler Moore. +Love is all around you..." +01/24/2017,Comedians,@BillyCrystal,"3 new shows on sale Fri! +Oakland Fox Theatre 3/1 +Wallingford Ct Toyota Oakdale Theatre 3/25 +Atlanta Fox Theatre 4/27. See you there!" +01/24/2017,Comedians,@BillyCrystal,"RT @OakdaleTheatre: JUST ANNOUNCED -- @BillyCrystal on Saturday, March 25th! Tickets go on sale next Friday (1/27) at 10AM: https://t.co/la…" +01/24/2017,Comedians,@BillyCrystal,"RT @NelsonHicksWSB: The one and only @BillyCrystal returns to Atlanta at @TheFoxTheatre on Thursday, April 27. https://t.co/nTbUf0u2tc" +01/23/2017,Comedians,@BillyCrystal,"Excited to perform in Jacksonville Wednesday Night at the Times Union Center. Miami and W Palm have been great, so Jacksonville….no pressure" +01/09/2017,Comedians,@BillyCrystal,"RT @ChicagoTheatre: Due to overwhelming demand, @BillyCrystal has added a 2nd show at The Chicago Theatre on 4/2! Tix on-sale 1/13. +https:…" +12/31/2016,Comedians,@BillyCrystal,A New Year's wish for a peaceful and healing new year. Let's all work together to make this world the best that it can be. +12/27/2016,Comedians,@BillyCrystal,@TomMuench1 so shocked to hear this! Heard from him a few weeks ago. +12/27/2016,Comedians,@BillyCrystal,RT @mrgosling: A legend in Star Wars and hilarious in When Harry Met Sally. Another sad loss... #whenharrymetsally #StarWars #ripcarrie #mo… +12/27/2016,Comedians,@BillyCrystal,@Carrie Fisher's loss is devastating. Her wit-her inspiration to those with mental illness was monumental. Loved working on WHMS with her. +12/15/2016,Comedians,@BillyCrystal,Sad to hear about the loss of Craig Sager a real champion. https://t.co/5fQnN1m8D4 +12/15/2016,Comedians,@BillyCrystal,"RT @jarrodbcecil: Homemade coloring sheets, featuring Mike Wazowski from @DisneyPixar Monsters Inc! #drawsomething #freehand @billycrystal…" +12/15/2016,Comedians,@BillyCrystal,RT @Future_Beat: MARYLAND: presale for @BillyCrystal at @MGMNatlHarbor on April 29th & 30th is happening now! Purchase here: https://t.co/… +12/09/2016,Comedians,@BillyCrystal,"Happy Birthday to Kirk Douglas who is 100 yrs old today. +You will always be Spartacus!" +12/07/2016,Comedians,@BillyCrystal,"RT @latelateshow: Who's got ten fingers and a seat on the #LateLateShow couch tonight? Mr. @BillyCrystal, that's who. https://t.co/FZwm4xR2…" +12/07/2016,Comedians,@BillyCrystal,Great fun with @JKCorden tonight https://t.co/UqeuXtcEbP +12/06/2016,Comedians,@BillyCrystal,Going to have a great time tonight with @jkcorden +12/06/2016,Comedians,@BillyCrystal,Looking forward to being on @latelateshow tonight with @jamescordenreal +12/02/2016,Comedians,@BillyCrystal,"RT @TheRealPaolo_B: - I'm having some of the Academy over for dinner. Care to join me? +- Yes, anytime +@BillyCrystal @AnthonyHopkins #Academ…" +11/24/2016,Comedians,@BillyCrystal,Happy Thanksgiving to all. +11/18/2016,Comedians,@BillyCrystal,"RT @JennaCNguyen: Hi @BillyCrystal, can you please retweet to help us get books like yours in the hands of children across the US? #thegrea…" +11/17/2016,Comedians,@BillyCrystal,"Excited to be on @JimmyKimmelLive 2nite! +Last time was cool https://t.co/pVrfQjYPg3 #prop64" +11/15/2016,Comedians,@BillyCrystal,RT @Variety: Congrats @billycrystal! The comedian was honored at Women's Guild @CedarsSinai Annual Gala. https://t.co/5kJA9W2w1x https://t.… +11/15/2016,Comedians,@BillyCrystal,"RT @RuthEckerdHall: Don't miss your chance to see @BillyCrystal for his very first performance in the Tampa Bay area Tue, Jan 31! https://t…" +11/14/2016,Comedians,@BillyCrystal,Excited to start touring this show. 30 cities starting in Miami Jan.21. https://t.co/0gOxi0Ej29 +10/17/2016,Comedians,@BillyCrystal,I am hosting this event tonight that is being live streamed tonight.https://t.co/o8FGakw4WK +10/03/2016,Comedians,@BillyCrystal,https://t.co/EypUEZ5Zhc +09/12/2016,Comedians,@BillyCrystal,@chancetherapper do you want the President of FX's phone number? +09/12/2016,Comedians,@BillyCrystal,RT @gregorcorp: @mrbenwexler 👏👏👏 https://t.co/GoDAsgzgyJ +09/09/2016,Comedians,@BillyCrystal,RT @natecallens: I just finished @marcmaron's latest @WTFUpdate podcast w/ @BillyCrystal. I didn't want it to end! Check it out here: https… +09/09/2016,Comedians,@BillyCrystal,RT @guybannister: Great episode this week from @marcmaron with @BillyCrystal https://t.co/E4cTPVeXIj +09/08/2016,Comedians,@BillyCrystal,Great time talking with @MarcMaron https://t.co/3OMTqPqDON +09/08/2016,Comedians,@BillyCrystal,RT @MediaREDEF: WTF with Marc Maron: Episode 740 -- Billy Crystal (@marcmaron @BillyCrystal - @WTFpod) https://t.co/uatA567rVF +09/08/2016,Comedians,@BillyCrystal,RT @JayHemsworth: Not in on this podcast series @WTFpod ? This is a gr8 1 2 start U off #Comedian #interview @BillyCrystal @marcmaron https… +09/08/2016,Comedians,@BillyCrystal,RT @kevin_joachim1: @BillyCrystal Please retweet to help my friend with ALS. Every $ will help her family. Thank you Billy. https://t.co/H… +09/08/2016,Comedians,@BillyCrystal,RT @marcmaron: Today is @BillyCrystal day on @WTFpod! Legend! Great talk! Do it up! https://t.co/TRZkCfr7QU +08/29/2016,Comedians,@BillyCrystal,Gene Wilder was a giant of comedy. His legacy of films is inspiring. A true genius.. +08/22/2016,Comedians,@BillyCrystal,So proud of USA bball team..Deandre was awesome. https://t.co/DAQ00udVQW +08/12/2016,Comedians,@BillyCrystal,"RT @Rockettes: #TBT to sharing the @RadioCity stage with @BillyCrystal, @WhoopiGoldberg and the late, great #RobinWilliams in 1990. https:/…" +08/04/2016,Comedians,@BillyCrystal,Thank you Australia! This tour was one of the best times I've ever had. Sorry it's over. bc https://t.co/G4NCj7yYVE +08/02/2016,Comedians,@BillyCrystal,RT @TessNobile: I laughed. I cried. I now reflect. One of my favourite life moments. Thank you @BillyCrystal #beyondthewords https://t.co/c… +08/02/2016,Comedians,@BillyCrystal,"RT @TEGDAINTY: .@BillyCrystal Melbourne Live Review: ""Laughing all night long"" https://t.co/kM81wJhSxX https://t.co/7uZTDYV26x" +07/28/2016,Comedians,@BillyCrystal,"RT @DaintyGroup: .@BillyCrystal REVIEW: ""the packed house was doubled over with laughter"" https://t.co/NRSHVBj4f5 https://t.co/M2A42TMJn8" +07/24/2016,Comedians,@BillyCrystal,"Adelaide Australia tonight Perth 2morrow. +Fantastic audiences! https://t.co/prpKSitJQG" +07/19/2016,Comedians,@BillyCrystal,Thank you Brisbane! Great audiences! Auckland NZ next stop. +07/19/2016,Comedians,@BillyCrystal,"RT @twenty3group: .@BillyCrystal LIVE REVIEW: ""The best thing I've seen this year"" https://t.co/AmzfTVi314 https://t.co/l5Ymia3qCF" +07/19/2016,Comedians,@BillyCrystal,"RT @artscentremelb: ""★★★★★ As once-in-a-lifetime events go, it’s pretty impressive.” https://t.co/tOAYiywMpC + +@BillyCrystal will be on our…" +07/12/2016,Comedians,@BillyCrystal,Sydney – you’ve been fantastic! It's my last show tonight and we've released final tickets here: https://t.co/k9146lBRak +07/11/2016,Comedians,@BillyCrystal,"Now that's a crab! +Sydney has been great. Audiences sensational-wonderful people. Next show Wednesday. bc https://t.co/ZLSmyBXWRH" +07/06/2016,Comedians,@BillyCrystal,Great time at Taronga zoo in Sydney. https://t.co/o7a8HT3KlK +07/06/2016,Comedians,@BillyCrystal,Now that's a selfie https://t.co/P1FLPkLtjR +07/05/2016,Comedians,@BillyCrystal,I’ve landed in Australia! Why don’t you join me for a hilarious night of laughs? Get your tickets at https://t.co/9ve8LkbdPI +06/22/2016,Comedians,@BillyCrystal,My Adelaide show is on sale now: https://t.co/wgdviU1hcz. I’m looking forward to seeing you soon! +06/18/2016,Comedians,@BillyCrystal,"Hey Australia, I’ve added one special new show in Adelaide! Go to https://t.co/9ve8LkbdPI for all the details." +06/13/2016,Comedians,@BillyCrystal,RT @AlbertBrooks: Trump congratulates himself on being right on terrorism. That's how he responds after this horrific tragedy. Nuff said. +06/09/2016,Comedians,@BillyCrystal,"RT @thearcadeshow: The comedy City Slickers came out this day in 1991 w/ @BillyCrystal, @RealDanielStern, & won Jack Palance an Oscar. http…" +06/03/2016,Comedians,@BillyCrystal,For the greatest man I have ever known. https://t.co/OUZHVZWBHY +06/03/2016,Comedians,@BillyCrystal,Have a great retirement Joey. Miss seeing you in the finals. https://t.co/mJ1W0Qu9ou +05/30/2016,Comedians,@BillyCrystal,"@GarmanSports Mantle signed it that day and 21 yrs later I met him and he signed it again. +It was on Dinah Shore t.v show." +05/30/2016,Comedians,@BillyCrystal,60 years ago today I went to my first Yankee Game! Mickey hit homer off the old facade. Can still see it. https://t.co/lXJazBpnYV +05/25/2016,Comedians,@BillyCrystal,I’ve just added new shows in Melbourne and Sydney! Go to https://t.co/9ve8LjTCr8 for all the details. See you in July. +05/21/2016,Comedians,@BillyCrystal,RT @FallonTonight: .@BillyCrystal hasn't fully grasped modern technology yet... https://t.co/EKO0TeYNaV https://t.co/8V8gjifVn5 +05/21/2016,Comedians,@BillyCrystal,RT @KrisWilliams: This is freaking hilarious! 😂😂 https://t.co/3XrZfRxTRf @jimmyfallon @BillyCrystal Anyone else see this? +06/29/2018,Comedians,@arjbarker,@nickpahls u bet! +06/28/2018,Comedians,@arjbarker,@BetsyHodges thank you! +06/28/2018,Comedians,@arjbarker,Hello Denver!!! https://t.co/GpBEWdJZCx +06/23/2018,Comedians,@arjbarker,"@bakingnurple it’s totally fine. Like I said in the show, we don’t even know we’re taking our phone out half the time these days :)" +06/23/2018,Comedians,@arjbarker,@KBtheFirst we missed you too! :) +06/23/2018,Comedians,@arjbarker,@TomBarnardShow thanks for having us! Always great fun :) +05/21/2018,Comedians,@arjbarker,@PilsnerPodcast yeah sure I love Pilsner!! +05/18/2018,Comedians,@arjbarker,@jeetsheth thank you Jeet! +05/18/2018,Comedians,@arjbarker,Auckland! I’m home. 2 shows tonight and tomorro. Please do come along if you’re in town :) https://t.co/QXOJLNHu0H +05/17/2018,Comedians,@arjbarker,@BR4DY thank you for coming along! +05/17/2018,Comedians,@arjbarker,"@BR4DY a) as opposed to ‘figuratively this week…’? b) they didn’t eat the poor thing, only bit and shook to death." +05/03/2018,Comedians,@arjbarker,Beautiful shot! https://t.co/17vFHmMLMI +05/03/2018,Comedians,@arjbarker,@KingyDaSickC thank you! +04/21/2018,Comedians,@arjbarker,@Dhfnfkdirurndms have not! Any good? +02/21/2018,Comedians,@arjbarker,@dlean05 thank you! +02/21/2018,Comedians,@arjbarker,@HaStavrou thank you! +02/09/2018,Comedians,@arjbarker,Build your own INSANE Dog Stairs!!!: https://t.co/HuMPHNmkFt via @YouTube +02/04/2018,Comedians,@arjbarker,"Adelaide Fringe? Yes, please. :) https://t.co/dk9JM5bZdA" +02/04/2018,Comedians,@arjbarker,"Great to see you too, Pete :) https://t.co/k32gG6rdoG" +01/30/2018,Comedians,@arjbarker,"I’ll give $500 to any who calls the ‘president’ a racist during the speech (must be live, and he must hear you). #Trumpchallange" +01/26/2018,Comedians,@arjbarker,"@Alex__Briggs @ellen_briggs @GordonSouthern great meeting you, Alex! Safe travels :)" +01/21/2018,Comedians,@arjbarker,My pal Big Rob’s new album is ouuuuuuuuutttt!!! https://t.co/S3rAX32Eiy +01/11/2018,Comedians,@arjbarker,HONG KONG!!! https://t.co/I3mstO71fN +12/28/2017,Comedians,@arjbarker,The Holidays do have their ups and downs. https://t.co/HndO13itaX +12/28/2017,Comedians,@arjbarker,Ultra Shelf Party: https://t.co/ONpdGT8hOi via @YouTube +12/04/2017,Comedians,@arjbarker,"Nimbin, NSW https://t.co/1I09a01F6l" +12/01/2017,Comedians,@arjbarker,@ByClare @TheDanBarrett great restaurant huh? +11/24/2017,Comedians,@arjbarker,Land ho!! Happy to be in Sydney this weekend for 2 shows at the Stare theatre. If you’re in the… https://t.co/hSGgVr1si3 +10/27/2017,Comedians,@arjbarker,"The hilarious https://t.co/BdDodH09vE is touring oz right, don’t miss Canadas best!!" +10/25/2017,Comedians,@arjbarker,Ultra Shelf: Ultimate Garage Storage Vol 3/3: https://t.co/kQx5Kcue8C via @YouTube +10/22/2017,Comedians,@arjbarker,@mup_patricia thank u! Hope u had fun! +10/11/2017,Comedians,@arjbarker,Aussie friends don’t miss @chrisdelia when he’s here. Hilarious dude!! +09/23/2017,Comedians,@arjbarker,@aussie_abroad15 I only remember great acting all around :) see u soon! +09/14/2017,Comedians,@arjbarker,@LeonHuxtable see u there! +08/25/2017,Comedians,@arjbarker,"Sydney friends! Dont miss one of the best comedians on the planet: @_TomRhodes at the Comedy Store, Sat sept 2. https://t.co/wFwDpftuWI" +08/24/2017,Comedians,@arjbarker,Ultra Shelf: Episode 2 is here! https://t.co/JFDnqqmJuq +08/23/2017,Comedians,@arjbarker,Meme it up! #newhobby #moretocome https://t.co/fcbbcxGIGO +08/22/2017,Comedians,@arjbarker,"SPOILER ALERT +only look at my new meme if you’re caught up on GOT :)) xox arj https://t.co/nST0j8r2f7" +08/18/2017,Comedians,@arjbarker,@john_bspoke you aren’t even following me you LUN!!! +08/10/2017,Comedians,@arjbarker,@KBtheFirst @TomBarnardShow @AshleyJudd didn’t strike me as inappropriate:) hope all well! Good to see the gang! +08/06/2017,Comedians,@arjbarker,@therealhansds dang it! Ok thank u :) +08/05/2017,Comedians,@arjbarker,@therealhansds @hardwick @midnight did I get it!? +08/04/2017,Comedians,@arjbarker,@therealhansds that’s big! +08/04/2017,Comedians,@arjbarker,Yes! https://t.co/U997yLH6Cc +08/01/2017,Comedians,@arjbarker,MINNEAPOLIS here I come :) ACME all week with @tonycamin who’s onboard? +07/26/2017,Comedians,@arjbarker,@ItsTheBrandi great! See u soon :) +07/25/2017,Comedians,@arjbarker,@ocularnervosa I see :) thanks! +07/25/2017,Comedians,@arjbarker,@ocularnervosa @midnight how come? It wasn’t the last episode? +07/25/2017,Comedians,@arjbarker,@mustlovekittehs thank u! +07/22/2017,Comedians,@arjbarker,This was a fun day :) https://t.co/fjVE2eGS96 +07/21/2017,Comedians,@arjbarker,Can they be as awesome as the first night audience was? I hope so :)) https://t.co/dMQLilFccr +07/21/2017,Comedians,@arjbarker,Thanks Steve!! You kilt it!! :) https://t.co/cxzXAJq3py +07/20/2017,Comedians,@arjbarker,Shows start tonight in Montreal :) https://t.co/LNwSiOG5is +07/17/2017,Comedians,@arjbarker,@JesseFernandez @Brav3NewAmerica thanks Jesse! Enjoy your work too :) +07/15/2017,Comedians,@arjbarker,Only two more shows in the 6 #DrakeCountry https://t.co/AA1OQewRI8 +07/15/2017,Comedians,@arjbarker,@luiscoderque thanks Luis nice to meet u! +07/13/2017,Comedians,@arjbarker,On Comedy Central tonight :) https://t.co/FZnyUCJqOh +07/13/2017,Comedians,@arjbarker,@pennjillette great to work with you again after a few years :) best for your show tonight! +07/13/2017,Comedians,@arjbarker,Great to see you guys! When does our episode air? TONIGHT!! https://t.co/J58nxvhUCu +07/11/2017,Comedians,@arjbarker,@HotTub_Show thanks for having me that was lots of fun :) +07/10/2017,Comedians,@arjbarker,Toronto this weekend!! https://t.co/EEQOsJshnl +07/03/2017,Comedians,@arjbarker,@CobbsComedyClub pleasure! Thank you too :) see you next year! Xo +06/30/2017,Comedians,@arjbarker,I shaved before the show I promise!! https://t.co/Q0dD2294eu +06/29/2017,Comedians,@arjbarker,SF shows!! https://t.co/Ee1Qh3xOVw +06/27/2017,Comedians,@arjbarker,Sure why not! https://t.co/a0dJF16BVR +06/26/2017,Comedians,@arjbarker,SF I’m comin home! https://t.co/NuHVRAd17A +06/26/2017,Comedians,@arjbarker,Bethlehem PA Show :) https://t.co/UGaFaMgsPW +06/25/2017,Comedians,@arjbarker,Glad to hear. He’s a great dude!! Hope you and whole family are very well! https://t.co/i3K5GCvZTi +06/25/2017,Comedians,@arjbarker,@DustinCrandell it was a very last minute thing #popupshow +06/24/2017,Comedians,@arjbarker,Portland Show tonight :) https://t.co/bXtr1ylQkZ +06/24/2017,Comedians,@arjbarker,See you soon Holmes https://t.co/ejMdrSrC6j +06/23/2017,Comedians,@arjbarker,@willh21 thank you will! +06/22/2017,Comedians,@arjbarker,@Walshy thanks Dave see u soon! +06/22/2017,Comedians,@arjbarker,The Shpanthem!!!! https://t.co/mRvrnR4uw0 +06/17/2017,Comedians,@arjbarker,Seattle! I love you! Hope to see you :) https://t.co/MUzn6zNCXf +06/16/2017,Comedians,@arjbarker,See u there! https://t.co/2BckkgbEbr +05/29/2017,Comedians,@arjbarker,Lookout Toronto! https://t.co/yGg2yRrm0k +05/28/2017,Comedians,@arjbarker,Vancouver show! https://t.co/8ruBnDZFl5 +05/17/2017,Comedians,@arjbarker,Haha https://t.co/gxc6IUgW8Z +05/14/2017,Comedians,@arjbarker,Vancouver. Yes! https://t.co/7GKJsOG0eo +05/11/2017,Comedians,@arjbarker,"Melb! Come have a fun night and support Big Bros & Big Sis of Australia, a great org :) https://t.co/iTGK2HVFX2" +05/10/2017,Comedians,@arjbarker,@moniquesavin dan Dion thank you!! +05/09/2017,Comedians,@arjbarker,Toronto here I come https://t.co/DHfUUP578O +05/06/2017,Comedians,@arjbarker,The owners came and got him! Hope they more careful in the future 😬 +05/06/2017,Comedians,@arjbarker,Sydney Found Dog: Found this German Shepard wandering around Kent st in The Rocks alone and no id. Pls RT https://t.co/duwVTUNqUz +05/05/2017,Comedians,@arjbarker,Melbourne! This is a fun night for a great cause :) https://t.co/YpOJO0DO9C +05/05/2017,Comedians,@arjbarker,Baltimore here I come 😬 https://t.co/69cS5WzWzL +04/23/2017,Comedians,@arjbarker,"Waiheke Island, NZ https://t.co/JRqynn1ezE" +04/20/2017,Comedians,@arjbarker,"It’s true. I have new, informative web series. Enjoy! https://t.co/uth1jszN0h" +04/18/2017,Comedians,@arjbarker,Bay Area here I come! https://t.co/3Gi8Nnou8N +04/11/2017,Comedians,@arjbarker,Vancouver! https://t.co/QATrBVVayf +04/10/2017,Comedians,@arjbarker,Thank you Joanne :) https://t.co/0Pjjqu0ZCe +04/10/2017,Comedians,@arjbarker,@Defender1995 what’s that? +04/09/2017,Comedians,@arjbarker,"Lego Tower St Kilda, shot thru uber window #nofilter #organic https://t.co/7LzayJ4a9L" +03/30/2017,Comedians,@arjbarker,RT @ColumbusTheatre: JUST ANNOUNCED - @arjbarker on July 5th! Tickets on sale now at https://t.co/levlnljtfo . +03/26/2017,Comedians,@arjbarker,@AusBreweryTours good to meet you guys! +03/23/2017,Comedians,@arjbarker,@kinggizzardband thanks for awesome show!! https://t.co/nu1vsBH4X1 +03/23/2017,Comedians,@arjbarker,Shows in Ballina and Cairns this weekend. Then onto Melbourne! #Organic https://t.co/gWKJViJvYf xxx +03/20/2017,Comedians,@arjbarker,@markakaboz don’t think so :( one day tho! +03/19/2017,Comedians,@arjbarker,@squirrel_comedy we need to make new episodes!! @derriman +03/19/2017,Comedians,@arjbarker,@ComicConPod sure why not. Can Gatesy join? +03/10/2017,Comedians,@arjbarker,"@kinggizzardband comin to see you guys on 22 in melb. Can’t wait! If possible, can u please play rattlesnake? 🐍 ps congrats on new album!!" +02/15/2017,Comedians,@arjbarker,She makes me very proud and so should @AnimalsAsia be for what you do for these precious bears https://t.co/9bMVtkxR5v +01/15/2017,Comedians,@arjbarker,Yes! For one glorious weekend only :) I’ll put it on my site asap https://t.co/WC1BGXMOfR +01/10/2017,Comedians,@arjbarker,Hey man!! Are you in BC? I’m comin!! https://t.co/QXOJLNHu0H +01/09/2017,Comedians,@arjbarker,@Roger_Ca714 many thanks +01/09/2017,Comedians,@arjbarker,@Roger_Ca714 what’s his name? I had to look closely to see if you’d photoshopped that! +12/19/2016,Comedians,@arjbarker,PERTH don’t miss epic show with @mrcraigrobinson and the superb #TheNastyDelicious TONIGHT. i seen the show in melb and it’s amazing :)) +12/10/2016,Comedians,@arjbarker,@regandalyhaha classic! +12/08/2016,Comedians,@arjbarker,@AndrewGobbo you get most of the games for about 12 bucks on iOS called ‘lost treasures of infocom’ +12/08/2016,Comedians,@arjbarker,"@AndrewGobbo yes and no. I was either playing The Lurking Horror, or Enchanter. Both infocom games. As good as ever!" +12/07/2016,Comedians,@arjbarker,@cjdh87 thank you Chris! +12/07/2016,Comedians,@arjbarker,@ratebeer not at the moment. I’ll be back in jan tho! +12/03/2016,Comedians,@arjbarker,Glad to help! Well done everybody :) https://t.co/8TrgcsIenZ +12/02/2016,Comedians,@arjbarker,I’m excited! Look forward to meet you Pete :) https://t.co/FIdJ7q42po +11/28/2016,Comedians,@arjbarker,@jnelson01 thank you James! +11/23/2016,Comedians,@arjbarker,@lokie2189 I don’t think so. It’s possible tho +11/23/2016,Comedians,@arjbarker,@AshleighJade05 thank you! Hope alls well +11/19/2016,Comedians,@arjbarker,"@NickJon27328485 sure, one of these days :)" +11/17/2016,Comedians,@arjbarker,@penguinpunk 8 +11/13/2016,Comedians,@arjbarker,@xaeromarine @SarahMillican75 thank you :) +11/11/2016,Comedians,@arjbarker,@andyisyoda thank you very much! +11/11/2016,Comedians,@arjbarker,@hughp1970 thank you! +11/08/2016,Comedians,@arjbarker,All true! :) https://t.co/jRaZmSQzwd +10/26/2016,Comedians,@arjbarker,Oh Canada. Can’t wait! https://t.co/fSNnnr3NbQ +10/25/2016,Comedians,@arjbarker,@mindsight_tweet dm me +10/20/2016,Comedians,@arjbarker,Thank you guys. Lotsa fun :)) https://t.co/pw2Wz4X8ve +10/20/2016,Comedians,@arjbarker,@RoveAndSam great to see you two 😘 thanks for having me on the show! +10/18/2016,Comedians,@arjbarker,@MrSimonTaylor punchline green room? +10/08/2016,Comedians,@arjbarker,@TroyKinne great working with you Troy! Hilarious set! +10/05/2016,Comedians,@arjbarker,@tomallencomedy thank buddy! You killed it! Congrats :) +10/04/2016,Comedians,@arjbarker,"@SarahMillican75 thank you, you too! Glad I got to be on your show :)" +10/03/2016,Comedians,@arjbarker,@Iansmithcomedy you too Ian :) it was real nice thAnks! +10/02/2016,Comedians,@arjbarker,Thank you for having me in the show tonight! And for the dinner tip https://t.co/3mEzocLw28 +10/02/2016,Comedians,@arjbarker,Thank you for having me on the shows this week. Lotta fun :) https://t.co/BFgSocejhZ +09/21/2016,Comedians,@arjbarker,News to me too! I better start practicing :u Thanks Matt https://t.co/KieLBnLyNa +09/19/2016,Comedians,@arjbarker,@cam98_1 thanks cam! +09/09/2016,Comedians,@arjbarker,"My beauty treatment is nearly finished, just in time for Wagga show TONIGHT and Leeton tomoro.… https://t.co/fD3NYWQpry" +09/08/2016,Comedians,@arjbarker,Thanks for telling me! https://t.co/D53In86G5j +09/07/2016,Comedians,@arjbarker,Where's that goddamn house phone at?! https://t.co/Nktnj4lOvi +08/29/2016,Comedians,@arjbarker,@macgyverpete thanks! +08/28/2016,Comedians,@arjbarker,@macgyverpete thanks which special is it? What country you watching it in? +08/06/2016,Comedians,@arjbarker,¿ https://t.co/0Pz9e9jXN8 +07/20/2016,Comedians,@arjbarker,RT @AcmeComedyCo: Get ready to laugh because tonight we have @arjbarker @tonycamin @SayGCole 8pm show. 612-338-6393 #callnow #hotcomedy +07/19/2016,Comedians,@arjbarker,And @tonycamin !! https://t.co/2UXHodE8q9 +07/19/2016,Comedians,@arjbarker,Minneapolis! I’m stoked to be performing all this week at @AcmeComedyCo with legendary @tonycamin thru sat night! Hope to see you there :) +07/16/2016,Comedians,@arjbarker,@marnivinluan you’re welcome no prob :) +07/16/2016,Comedians,@arjbarker,@Randalroche do it :) +07/16/2016,Comedians,@arjbarker,@adamwrobinson thank u! +07/15/2016,Comedians,@arjbarker,@antitoxicalex thanks Alex. I was seriously not expecting to play a song with them! +07/14/2016,Comedians,@arjbarker,U know it https://t.co/A8W10FaLlw +07/14/2016,Comedians,@arjbarker,RT @realchillwall: Get ready to laugh #Minneapolis because @arjbarker is LIVE on July 19! Details: https://t.co/R38hhIRZ0L https://t.co/YwC… +07/10/2016,Comedians,@arjbarker,@BrianYogiDennis great meeting and working with you too Brian :) +07/09/2016,Comedians,@arjbarker,"@FunyunsNFugeez one day brother, one day. Hope alls well! Arj" +07/07/2016,Comedians,@arjbarker,#Portland what up dawg I’m doing one show at @mississippistudios this Sunday night. Hope to see you!! +07/07/2016,Comedians,@arjbarker,See you soon you beauty https://t.co/f2s8ZbwDHw +07/07/2016,Comedians,@arjbarker,Seattle come catch my show at @parlorlive with the great @tonycamin This weekend thru sat 😁 +07/07/2016,Comedians,@arjbarker,See u soon! https://t.co/dasJAmUXI9 +07/05/2016,Comedians,@arjbarker,@CobbsComedyClub thank you! Always great to see you too :) +06/28/2016,Comedians,@arjbarker,Cobbs SF this weekend :) https://t.co/2UQktxHJiV +06/28/2016,Comedians,@arjbarker,"2 of the best guys, warming up for the best show, in one of the best cities #sf… https://t.co/D3uK7DPrJx" +06/23/2016,Comedians,@arjbarker,Thank you! See u soon https://t.co/8eF0C23AxD +06/23/2016,Comedians,@arjbarker,RT @SportsGuyMike: @arjbarker joins me in studio tomorrow on The @SGMShow He'll be at @ComedyWorks Thu-Sat https://t.co/BXlCjia8vW https://… +06/23/2016,Comedians,@arjbarker,Thanks for having me on the show! https://t.co/CqMHtFwrH3 +06/23/2016,Comedians,@arjbarker,Thanks for having me on the show! https://t.co/mb9i5cgEwL +06/22/2016,Comedians,@arjbarker,I’m coming home. https://t.co/BGhbY3cvxY +06/22/2016,Comedians,@arjbarker,Hello Denver! https://t.co/orO1mvRSwN +06/17/2016,Comedians,@arjbarker,RT @changefurpaws: @arjbarker @theheraldsun @ABSCBNNews @SwannyQLD @ChinaMissionGva @okkimss @bbcchinese @PDChina @HuffPostUK https://t.co… +06/13/2016,Comedians,@arjbarker,"Soundcheck at the Wolf Trap, VA #flightoftheconchords #2016NorthAnericanTour https://t.co/kdEZ7P4ead" +06/13/2016,Comedians,@arjbarker,@faithie_g thank u! +06/13/2016,Comedians,@arjbarker,@MzKikii @AJemaineClement thank u! +06/13/2016,Comedians,@arjbarker,@ElisaBlessing thank u! +06/13/2016,Comedians,@arjbarker,@Case4Cleveland thank u! +06/13/2016,Comedians,@arjbarker,@Beuford2Beuford thank u! +06/12/2016,Comedians,@arjbarker,Wow. Cleveland audience was incredible!!!Makes you want to stay here forever. But The Road… https://t.co/sMWHe2hYcK +06/10/2016,Comedians,@arjbarker,An honor to play you :) https://t.co/1JaRiPnScn +06/10/2016,Comedians,@arjbarker,@yourenickaragon @142Throckmorton hope so! Great set too :) +06/10/2016,Comedians,@arjbarker,"Rockin crowd in Port Chester, NY as #flightoftheconchords kick off their 2016 North American… https://t.co/F57bjIs4zA" +05/23/2016,Comedians,@arjbarker,Ok drive safe brother! https://t.co/PA05r2KChH +05/22/2016,Comedians,@arjbarker,Love you Portland! https://t.co/mlUY9S8I8Y +05/20/2016,Comedians,@arjbarker,See you soon! https://t.co/WjW5pk9PKF +05/14/2016,Comedians,@arjbarker,@AlisonGrills ok fair enough. +05/14/2016,Comedians,@arjbarker,SF love #home https://t.co/pv5eXLWwCa +05/11/2016,Comedians,@arjbarker,I’m very psyched to be supporting Flight of the Conchords this summer in the states. All details at https://t.co/8a8OzUGq8D +05/09/2016,Comedians,@arjbarker,Portland! Yes! https://t.co/FAUkj8HgO6 +05/05/2016,Comedians,@arjbarker,@Pauly_Riordan @theprojecttv yeah I do actually. +05/05/2016,Comedians,@arjbarker,@LittleAussie_Me u bet +05/05/2016,Comedians,@arjbarker,@theprojecttv I said MAYBE the best city. I was careful to be diplomatic. Please don’t misquote me. My favourite city is wherever I am. +05/05/2016,Comedians,@arjbarker,@VickiWardMP @theprojecttv I didn’t actually state that. Please don’t misquote me. +05/05/2016,Comedians,@arjbarker,For the record I said Melb MAYBE the best city in Oz. And it was to set up a gag. I don’t pick faves. I enjoy everywhere I go. +05/05/2016,Comedians,@arjbarker,RT @theprojecttv: Tonight comedian @arjbarker joins us at #TheProjectTV desk! https://t.co/4LAyBoD5SL +05/01/2016,Comedians,@arjbarker,I thought that was you!!! https://t.co/hnfzuFwj9d +04/29/2016,Comedians,@arjbarker,@shootsbands thank u!! +04/29/2016,Comedians,@arjbarker,@Stormchaser__23 probably +04/28/2016,Comedians,@arjbarker,I hope I don’t end up having to explain my offshore YouTube acct. #panamapapers +04/28/2016,Comedians,@arjbarker,"@Zoe_inwondrland ok I’ll try again, thanks!" +04/28/2016,Comedians,@arjbarker,I’m interested in purchasing a last minute ticket to see Black Sabbath in Auckland tonight. Anybody got an extra? +04/22/2016,Comedians,@arjbarker,Thanks for having me on the show! Was fun :) https://t.co/deSEg4vhlm +04/20/2016,Comedians,@arjbarker,"https://t.co/377okXc6Mk +Self promoting sentence here." +07/02/2018,Comedians,@RealCarrotTop,Thanks @kingjames for keeping my #joke #prop alive. @roneallm @nba espn 🏀 @ Luxor Hotel and Casino https://t.co/TJ8B8WMCoh +06/30/2018,Comedians,@RealCarrotTop,Enjoying @FIFAWWC #soccer #worldcup ⚽️ @ Luxor Hotel and Casino https://t.co/NIArEbQAkj +06/30/2018,Comedians,@RealCarrotTop,Have you had your #VIP #CTMeetNGreet yet? Come on out tot he @LuxorLV for yours! tickets are available at the box o… https://t.co/2tE3qwLmO8 +06/30/2018,Comedians,@RealCarrotTop,"#botox at a #gasstation ? Ok FILLER... up! 💉⛽️😂 @ Las Vegas, Nevada https://t.co/pA5qDw8OYo" +06/29/2018,Comedians,@RealCarrotTop,"I know where I’m going tonight..👀🥕🔝 @ Las Vegas, Nevada https://t.co/S3CTGTrL8T" +06/27/2018,Comedians,@RealCarrotTop,Wanna escape the #vegas heat? Come on out to the @LuxorLV for the #VIP #CTMeetNGreet! #meetandgreet passes are avai… https://t.co/tekrEbWFNf +06/24/2018,Comedians,@RealCarrotTop,Bring your #SundayFunday to the @LuxorLV for the #CTMeetNGreet! #VIp #meetandgreet passes available at the box offi… https://t.co/qRiYRTSHqn +06/24/2018,Comedians,@RealCarrotTop,Wtf?.#cornhole #championships on espn ? Really??? https://t.co/wpXNrrZWO1 +06/21/2018,Comedians,@RealCarrotTop,It's the first day of #summer. Come on out to the @LuxorLV for the #CTMeetNGreet! Get yours today at the box office… https://t.co/99cHomeyRV +06/18/2018,Comedians,@RealCarrotTop,"It's Monday, Why not make the work week more fun by coming out to the #VIP #CTMeetNGreet at the @LuxorLV Tickets… https://t.co/SWhowwlBb4" +06/16/2018,Comedians,@RealCarrotTop,So great to see a #funny #friend #comic #legend… https://t.co/JzZcbTsSLU +06/16/2018,Comedians,@RealCarrotTop,😂✂️ #ponytail #dreads #dreadlocks @ Luxor Hotel… https://t.co/j1YMJVK9DD +06/15/2018,Comedians,@RealCarrotTop,What a great way to kick off your weekend with a #CTMeetNGreet at the @LuxorLV Get yours at the box office or… https://t.co/zKNprcADCi +06/14/2018,Comedians,@RealCarrotTop,Holy #tbt me and my #funny #friend Doug Doane… https://t.co/mGlu46MCFO +06/14/2018,Comedians,@RealCarrotTop,Love meeting the next generation of #fans. So… https://t.co/13Wmjh49rX +06/13/2018,Comedians,@RealCarrotTop,"Nice brisk day!🔥🔥🍳🔥🔥 @ Las Vegas, Nevada https://t.co/3VjpuCavrU" +06/12/2018,Comedians,@RealCarrotTop,True #love in #singapore . ❤️ this took time to… https://t.co/JQeBRtDoY3 +06/10/2018,Comedians,@RealCarrotTop,❤️🐾💋 @anythymelv https://t.co/EeEw7JpCEW +06/10/2018,Comedians,@RealCarrotTop,Time to shave my vegasgoldenknights #hockey… https://t.co/YnppkkO9LK +06/10/2018,Comedians,@RealCarrotTop,What a strange encounter at my #meetandgreet… https://t.co/5QEP4JxBFV +06/09/2018,Comedians,@RealCarrotTop,So awesome hanging with two great #friends and… https://t.co/hW9ahAa9ha +06/08/2018,Comedians,@RealCarrotTop,Gotta love #pottery shopping! 👀👀👀👀😂 @ Clay Arts… https://t.co/fHsR2ZeAte +06/08/2018,Comedians,@RealCarrotTop,How cute... little #bird on her #nest 🦅 @ Las… https://t.co/gkR7b8RqP2 +06/08/2018,Comedians,@RealCarrotTop,There's still a chance for our… https://t.co/x7r9O6wMO8 +06/06/2018,Comedians,@RealCarrotTop,Thank god my new #phonebook came in.. now I can… https://t.co/0daEWdSFrf +06/05/2018,Comedians,@RealCarrotTop,#vacation over.. ✈️back to #vegas https://t.co/CrQB0gDwW0 +06/01/2018,Comedians,@RealCarrotTop,Boom boom WHAAAT⁉️ https://t.co/GTRQ5LGhXE +06/01/2018,Comedians,@RealCarrotTop,https://t.co/wepcZoCPJO +06/01/2018,Comedians,@RealCarrotTop,#tbt @marilynmanson vinniepaul3 @djashba… https://t.co/qYjjDR8Y9T +05/30/2018,Comedians,@RealCarrotTop,"We're off this week, why not come out for the #CTMeetNGreet at the @LuxorLV when we get back! https://t.co/luYeEw9OU6" +05/30/2018,Comedians,@RealCarrotTop,amazon ..? You ripped me off! .😮😠😡😂 https://t.co/TsMuMXKyaB +05/28/2018,Comedians,@RealCarrotTop,#memorialday 🇺🇸 https://t.co/Ygb9rFASkl +05/27/2018,Comedians,@RealCarrotTop,Duhhhh! https://t.co/YHVTBJqeBt +05/26/2018,Comedians,@RealCarrotTop,This chicken didn't have a chance! Lunch with… https://t.co/1BeAeJ6ckM +05/25/2018,Comedians,@RealCarrotTop,Oops! 😂🌝🌚 https://t.co/NFIjLE5p2u +05/24/2018,Comedians,@RealCarrotTop,So great! @lateshow on @sethmeyers tonight! So… https://t.co/3Ylo9Rxr2A +05/22/2018,Comedians,@RealCarrotTop,Thanks again everybody for awesome #road… https://t.co/wYaAlnXsvI +05/20/2018,Comedians,@RealCarrotTop,Long day today #royalwedding #windsor #england… https://t.co/Vc9YkDjvu1 +05/19/2018,Comedians,@RealCarrotTop,#Utah #nevada #stateline https://t.co/y9SHizLSRd +05/18/2018,Comedians,@RealCarrotTop,Love all my #fanmail .. 📪📫✏️📝👨‍✈️ https://t.co/XPxfwc2oaI +05/17/2018,Comedians,@RealCarrotTop,On the #road .. see ya resortsatwendover and… https://t.co/AvsjHAn2P1 +05/16/2018,Comedians,@RealCarrotTop,Following #thelmaandlouise to #grandcanyon 🚘 https://t.co/UKnMU7HRiv +05/15/2018,Comedians,@RealCarrotTop,Loading out to do #roadshows . Come see us... @ Luxor Hotel and Casino https://t.co/wh4HHNURFz +05/14/2018,Comedians,@RealCarrotTop,"#election #billboards.. 🇺🇸 @ Las Vegas, Nevada https://t.co/yUm2mOIT0E" +05/13/2018,Comedians,@RealCarrotTop,So great my #brother and I can be with our #mother #happymothersday ❤️🌸 https://t.co/stRQog64Ik +05/10/2018,Comedians,@RealCarrotTop,Great having Jesse and dean from @CollectiveSoul and trey from… https://t.co/8PXCMUVkHy +05/08/2018,Comedians,@RealCarrotTop,Awesome news! @queenwillrock #queen @adamlambert 👏🎼🎹🎤 https://t.co/0DfRwiH5M4 +05/07/2018,Comedians,@RealCarrotTop,Thanks @anythymelv for my awesome new #espresso cups! nespresso https://t.co/MXVfbiMV23 +05/07/2018,Comedians,@RealCarrotTop,"#morning #run 🏃to find #shade @ Las Vegas, Nevada https://t.co/NT4vJ7T18J" +05/07/2018,Comedians,@RealCarrotTop,RT @croon1: I’m off to Texas today to do two things: 1) Do an interview about Angie and 2) Ask the Governor of Texas to issue a Sleep Apnea… +05/06/2018,Comedians,@RealCarrotTop,Thanks @nytimes for the great review! https://t.co/7jgYo8zMbK +05/06/2018,Comedians,@RealCarrotTop,Let watch our @GoldenKnights close out the @SanJoseSharks tonight! #goknightsgo #vegasborn #nhl #stanleycup… https://t.co/BCqRjNrJBY +05/06/2018,Comedians,@RealCarrotTop,Come see me resortsatwendover may 18 and sparksnugget may 19 🐴 https://t.co/ffVH92Md4H +05/05/2018,Comedians,@RealCarrotTop,Happy #cincodemayo 😂 @ Wolfgang Puck Bar & Grill Summerlin https://t.co/IrQ2l8c2xv +05/04/2018,Comedians,@RealCarrotTop,Hope to see you may 18 resortsatwendover #peppermill #show #roadtrip #comedy https://t.co/PpL6yqSarG +05/04/2018,Comedians,@RealCarrotTop,"RT @SteveMartinToGo: Marty Short and I will be on Fallon tonight. (This is the vanilla, pared-down, no-hype announcement. Flowery, all-hype…" +05/04/2018,Comedians,@RealCarrotTop,"RT @SteveMartinToGo: Here is the elaborate, thought-out announcement. https://t.co/HB2pNE7Lf6" +05/04/2018,Comedians,@RealCarrotTop,RT @SteveMartinToGo: I’m so ashamed. https://t.co/PfbvxSyD6x +05/04/2018,Comedians,@RealCarrotTop,@SteveMartinToGo legendary #comedy you and #Martinshort @jimmyfallon SO great!! #heros +05/03/2018,Comedians,@RealCarrotTop,"DfrxrcbnyfI'm not de @ Las Vegas, Nevada https://t.co/350RgqaDsI" +05/02/2018,Comedians,@RealCarrotTop,All flowered out thanks to @missdaisyfloral 🌸🌼🌺🌹 Awesome lunch at new place… https://t.co/uDxaLiH78p +05/02/2018,Comedians,@RealCarrotTop,Check out the #industrystandard #podcast with @BarryKatz with yours truly. Uncut and Uncensored. Head to the… https://t.co/BxaXLwI2mE +05/02/2018,Comedians,@RealCarrotTop,RT @BarryKatz: A unique & different look @ the career of CARROT TOP (Part 1of 2) @RealCarrotTop (31 Tonight Shows/Family Guy/Ellen/ESPN/CSI… +05/02/2018,Comedians,@RealCarrotTop,Had to get my last fix eltonjohn @caesarspalace 🎼🎤👏🎹 #legend #rocknroll… https://t.co/RT2ZFSPaa2 +05/01/2018,Comedians,@RealCarrotTop,It's #military appreciation month! All month long tickets are 1/2 off for all military! Head to the @LuxorLV box of… https://t.co/A1t0wEBKXT +04/28/2018,Comedians,@RealCarrotTop,"RT @NHLonNBCSports: There's nothing like @GoldenKnights hockey! + +Don't take it from us, ask @RealCarrotTop himself https://t.co/fP4iqzPdVY" +04/28/2018,Comedians,@RealCarrotTop,Went from a #run to a crawl with zippy_the_tortoise @ Wolfgang Puck Bar & Grill Summerlin https://t.co/4hLrWOyEvB +04/28/2018,Comedians,@RealCarrotTop,ronaldmcdonaldhouse_ 5k time 26:23 🏅🏃👍👏 @ Ronald McDonald House Charities of Greater Las Vegas https://t.co/xHecbR3HMI +04/28/2018,Comedians,@RealCarrotTop,Off to #run #5k ronaldmcdonald #charity @ Ronald McDonald House Charities of Greater Las Vegas https://t.co/KRQFJZrqkK +04/27/2018,Comedians,@RealCarrotTop,"What a fun lunch with 2 #funny #friends @louieanderson realnickswardson 😀 @ Las Vegas, Nevada https://t.co/4QH5IF6LoI" +04/27/2018,Comedians,@RealCarrotTop,Gotta love #gifts from #fans #tank #top 😂😂 https://t.co/YtQbKNVcWB +04/26/2018,Comedians,@RealCarrotTop,🥃+⛳️ @ Las Vegas National Golf Club https://t.co/i4xzKrVkjj +04/26/2018,Comedians,@RealCarrotTop,Fun #golf day for @southwestair #charity @queenwillrock helps!🎼⛳️ @ Las Vegas National Golf Club https://t.co/7U8RCxupLt +04/26/2018,Comedians,@RealCarrotTop,officialalanjackson's photo https://t.co/KGecdJ6VB5 +04/25/2018,Comedians,@RealCarrotTop,RT @croon1: Brian Evans and Jesse Stenger’s new song “A Beautiful Game” will be coming soon to #soccer fields around the world! Produced by… +04/23/2018,Comedians,@RealCarrotTop,Time for #maniquinmonday https://t.co/CbD5V5jrkH +04/23/2018,Comedians,@RealCarrotTop,How #awesome @tomfordintl https://t.co/bwQeDqWe8H +04/23/2018,Comedians,@RealCarrotTop,Come on out to the @LuxorLV for your #VIP #meetandgreet ! Tickets available at https://t.co/34TbZqM6NW. https://t.co/CrFhrjhxdc +04/22/2018,Comedians,@RealCarrotTop,Hanging w my #funny #friend @georgelopez @OgdenFoundation @ Red Rock Casino Resort & Spa https://t.co/iSrGgCli0g +04/22/2018,Comedians,@RealCarrotTop,Off to good start! @OgdenFoundation @ Red Rock Casino Resort & Spa https://t.co/Wt9vDjHqjX +04/22/2018,Comedians,@RealCarrotTop,Great to be part of @OgdenFoundation #bowling # wearing my @nfl #halloffame #ring https://t.co/JA5jGSw7bW +04/21/2018,Comedians,@RealCarrotTop,"Come on out to the May #roadshows starting in West Wendover at The Peppermill, @sparksnugget in Sparks then the… https://t.co/qxgaXdPC82" +04/21/2018,Comedians,@RealCarrotTop,New #prop for @starbucks #emplyees @ Luxor Hotel and Casino https://t.co/uP8Mg1OetF +04/20/2018,Comedians,@RealCarrotTop,Happy #420 https://t.co/FmEB7P3r6v +04/20/2018,Comedians,@RealCarrotTop,#fbf my #brother Garrett and omg..me on #beach in #Aruba ☀️ @ Aruba https://t.co/nqcacurEdh +04/19/2018,Comedians,@RealCarrotTop,"#tbt oh god!!! 19.. something 😂🎤🌸🌼🌺 @ Hampton Beach, New Hampshire https://t.co/kFoF9hnxKP" +04/19/2018,Comedians,@RealCarrotTop,"Got some #roadshows next month! In West Wendover at the Peppermill, the @SparksNugget in Sparks and the @FremontSLO… https://t.co/zVIZhosPjx" +04/18/2018,Comedians,@RealCarrotTop,Omg!!! vegasgoldenknights sweep!! #goknights @nhl #stanleycup 🏒🥃👏 #lasvegas https://t.co/C2i5pASru9 +04/17/2018,Comedians,@RealCarrotTop,"It's that time again... #flowers in your hair.🎼 🌸🌺🌼🌻 @ Las Vegas, Nevada https://t.co/uRrDDPU0AC" +04/16/2018,Comedians,@RealCarrotTop,Just watched... well READ a great #movie on americanair #bjornborg #johnmcenroe #tennis 🎾 https://t.co/jTajXBHL69 +04/15/2018,Comedians,@RealCarrotTop,"Goodbye #sunny #florida #home 🌞🚤 @ Orlando, Florida https://t.co/EMnK4d8cEe" +04/14/2018,Comedians,@RealCarrotTop,Pretty cool! Watching #rocket #launch #capecanaveral from my backyard. #orlando #florida 🚀 @… https://t.co/zVV6FKu23v +04/13/2018,Comedians,@RealCarrotTop,"My eltonjohn #glasses #project done.. or close to done! @ Winter Park, Florida https://t.co/bKAhcmpzS5" +04/13/2018,Comedians,@RealCarrotTop,"I found out what keeps waking me up.. little fucker! @ Winter Park, Florida https://t.co/1o8DZ6w15O" +04/13/2018,Comedians,@RealCarrotTop,"How do you spend your #vacation ? eltonjohn #glasses swarovski 🎼🎹👀👓🕶 @ Winter Park, Florida https://t.co/j5bPG6FhLl" +04/12/2018,Comedians,@RealCarrotTop,Head over to the @spreaker Website to catch the podcast i did with @Comickoz https://t.co/xgHSwUVp70 +04/11/2018,Comedians,@RealCarrotTop,"Great article by @Comickoz in the @VC_Reporter Check it out here... +https://t.co/6nMfIoDAIP" +04/11/2018,Comedians,@RealCarrotTop,#goknights @nhl #stanleycup #playoffs tonight on @nbc #hockey 🏒👏 @ Luxor Hotel and Casino https://t.co/uu0fNoM5Nq +04/10/2018,Comedians,@RealCarrotTop,🐾🥃✈️ @ McCarran International Airport https://t.co/uiWTfbxhbv +04/09/2018,Comedians,@RealCarrotTop,Having fun #backstage #movie #voiceover #nab #hollywood 🎤🎧🎬 thanks Tommy blaze. @ Luxor Hotel… https://t.co/1Z2aToOTLp +04/08/2018,Comedians,@RealCarrotTop,True #love ❤️ #stanleycup @nhl #playoffs begin April 11 on @nbc NBCSN @nhlonnbcsports… https://t.co/BegdfwQlNk +04/08/2018,Comedians,@RealCarrotTop,How awesome mercedesbenz #seat #toaster kelloggsus @poptarts411 #poptarts 👏 @ Luxor Hotel and… https://t.co/gp8oJKxdhB +04/07/2018,Comedians,@RealCarrotTop,Having a little fun with @crissangel #car 🚘 #stickers #lasvegas @ Las Vegas Strip https://t.co/iBp0kOAyHg +04/06/2018,Comedians,@RealCarrotTop,Brilliant! #cannabis #foodtruck #munchies #lasvegas @ Las Vegas Strip https://t.co/ILwC7DiPNy +04/05/2018,Comedians,@RealCarrotTop,Staying current w themasters #golf #augustanational pgatour ⛳️ @tigerwoods @ Luxor Hotel and Casino https://t.co/vy0uVcpe0W +04/03/2018,Comedians,@RealCarrotTop,Beautiful day for #golf! ⛳️ @anythymelv @ Angel Park Golf Club https://t.co/dxyyGoVAxR +04/03/2018,Comedians,@RealCarrotTop,Getting ready for themasters @tigerwoods #golf #pga ⛳️ @ Angel Park Golf Course https://t.co/RAPMq2xWyh +04/01/2018,Comedians,@RealCarrotTop,This is gonna be interesting.. #tsa #airport #security ✈️ @ Orlando International Airport (MCO) https://t.co/ZLmLBqm4rg +04/01/2018,Comedians,@RealCarrotTop,#happyeaster 🐰 https://t.co/F2W3npnB3q +04/01/2018,Comedians,@RealCarrotTop,"This is happening.. 25,years later. #speedo #sorry🏆🏊🏻🎪. @ Winter Park, Florida https://t.co/5t66xvYg7y" +03/31/2018,Comedians,@RealCarrotTop,"🐟🐠. #koi .. but all I see a 🦈 #shark ! @ Winter Park, Florida https://t.co/bYPXZoD5qj" +03/31/2018,Comedians,@RealCarrotTop,Now all I need is a stupid #teeshirt 👕 https://t.co/AIr4sWo0hk +03/30/2018,Comedians,@RealCarrotTop,"Look for some more upcoming #roadshows in West Wendover at the Peppermill, the @SparksNugget in Sparks and the… https://t.co/ulfksQTERL" +03/30/2018,Comedians,@RealCarrotTop,"Talk about a #birdseyeview .. cool #bird 🦅 pad. #orlando #florida 🌞 @ Winter Park, Florida https://t.co/EAnaI2Uafc" +03/28/2018,Comedians,@RealCarrotTop,A little @queenwillrock always helps a long #flight✈️ #queen #queenband #freddiemercury ❤️👍🎼🎹🎤🥁🎸🌈 https://t.co/j87RumIRWW +03/28/2018,Comedians,@RealCarrotTop,"I always keep my boo bear by me... even when I'm away from #home ❤️🐾 @ Winter Park, Florida https://t.co/lEgOgwpAIO" +03/27/2018,Comedians,@RealCarrotTop,Thank god #college 🏀 #basketball is down to #finallyfour #finalfour ncaabasketballtournament… https://t.co/DoNUh6Xb1E +03/27/2018,Comedians,@RealCarrotTop,Thanks everybody who came out to see us on the road.. on way back to @luxorlv #lasvegas 🚌 https://t.co/RrOsocyeIp +03/26/2018,Comedians,@RealCarrotTop,Great seeing my friend @BarrySobel and meeting dannyduncan69 at my show last night. Fun times!😄 https://t.co/TiTCduWPrb +03/26/2018,Comedians,@RealCarrotTop,Excited for tonight's show! @canyonconcerts #agorahills #california @ The Canyon Club & Special… https://t.co/A9j6z4ziml +03/25/2018,Comedians,@RealCarrotTop,"Awesome! Throwback #setlists from years #coachella #setlist #rocknroll @ Coachella, California https://t.co/8vPiifCPlw" +03/25/2018,Comedians,@RealCarrotTop,"Getting ready for #show tonight spotlight29casino #coachella @ Coachella, California https://t.co/1LmjbWxIHG" +03/24/2018,Comedians,@RealCarrotTop,"Rough day ! 🦆#duck #ducklife @ Palm Springs, California https://t.co/Mrs816qLtq" +03/23/2018,Comedians,@RealCarrotTop,"Mmmmmmmm! 😂 @ Palm Desert, California https://t.co/69Hagf7LtA" +03/23/2018,Comedians,@RealCarrotTop,On way to #coachella .. never rains in #california? ☔️ https://t.co/1YAibgwBbe +03/21/2018,Comedians,@RealCarrotTop,Well.. #tour starts tomorrow! Come say hi..🥕 https://t.co/550bfSRnFz +03/21/2018,Comedians,@RealCarrotTop,RT @croon1: Hope to see everyone at the show this Friday on Maui. I will be spending time in Las Vegas and Los Angeles to work on new music… +03/21/2018,Comedians,@RealCarrotTop,✌️❤️😊🌈.. https://t.co/wV2sVxQ93J +03/20/2018,Comedians,@RealCarrotTop,@anythymelv just sent me the cutest post from @theeverygirl_ ...why can't we all share this kind… https://t.co/p8f56t2ptW +03/19/2018,Comedians,@RealCarrotTop,Come too us next week on the #road new #merchandise #california #shows 🌞🥕 https://t.co/ZQrPcy5j4p +03/17/2018,Comedians,@RealCarrotTop,Happy #stpattysday 🍀🍀 #greenbeer 🍺 https://t.co/BLYVzfWhg9 +03/16/2018,Comedians,@RealCarrotTop,"Hi all, word just came down that the show in Beverly Hills just got canceled. Please come see me at the Canyon in S… https://t.co/iY7Ip7bXpm" +03/14/2018,Comedians,@RealCarrotTop,Can you guess which one is my #hair or #palmtree #dreads ✂️ https://t.co/D2Quco3m3a +03/13/2018,Comedians,@RealCarrotTop,Ok! Found the video.. playing #drums eltonjohn 🥁👍❤️ #bucketlist #dream @ The Colosseum at… https://t.co/dzoiYWX7nX +03/13/2018,Comedians,@RealCarrotTop,#happybirthday to my #nephew @lilcarrot__ 🎉🎂❤️ https://t.co/pz8mNGajs7 +03/10/2018,Comedians,@RealCarrotTop,Coming up soon. March 22 thecanyonsc #comedy #canyonclubsantaclarita #carrottop https://t.co/Y5RSeheU4n +03/09/2018,Comedians,@RealCarrotTop,Never imagine who I ran into.. @danreynolds @RealAjaVolkman @imaginedragons @hbo… https://t.co/uuTr99YB5g +03/05/2018,Comedians,@RealCarrotTop,Such a great day lvmotorspeedway @nascar @nascaronfox 🏁🏁 💯🏎 https://t.co/AlFxTu6dCN +03/04/2018,Comedians,@RealCarrotTop,Let's go #racing!🏁🏁 lvmotorspeedway https://t.co/VFjBcCD9a4 +03/04/2018,Comedians,@RealCarrotTop,RT @MLR1515: @RealCarrotTop Carrot Top hanging out with Michael Waltrip at the Las Vegas speedway.. . https://t.co/xlNS6mdEzH +03/04/2018,Comedians,@RealCarrotTop,"RT @LVMotorSpeedway: When in Vegas! + +@RealCarrotTop | @DylanMcDermott | #Pennzoil400 | #NASCARGoesWest https://t.co/PLRWG5jRRr" +03/04/2018,Comedians,@RealCarrotTop,RT @JonSchwartz1: Among those in attendance today at @LVMotorSpeedway are @DylanMcDermott @RealCarrotTop @AntronBrown #NASCARGoesWest https… +03/04/2018,Comedians,@RealCarrotTop,RT @xsthoughts: @CopaCavanna @AJDinger @RealCarrotTop I hear @AJDinger is a little guy. Don't think he's going to fit. +03/04/2018,Comedians,@RealCarrotTop,"RT @CopaCavanna: If @AJDinger needs a tag partner, @RealCarrotTop appears ready to go https://t.co/T77m0lY3WS" +03/04/2018,Comedians,@RealCarrotTop,RT @JTGRacing: .@AJDinger meeting @RealCarrotTop on the red carpet for the drivers meeting. https://t.co/OdqOky0shL +03/04/2018,Comedians,@RealCarrotTop,RT @TracksideShop: Look what @RealCarrotTop just found! @AJDinger has got some ‘splaining to do. 🤣🤣🤣 https://t.co/ZRPu5l1GIb +03/04/2018,Comedians,@RealCarrotTop,RT @JennChapple: Thanks @JeffMolitz for saying howdy and sending the pic of @AJDinger @RealCarrotTop @LVMotorSpeedway .. Hope to see ya in… +03/04/2018,Comedians,@RealCarrotTop,Thanks maverickhelicopters for the ride to lvmotorspeedway 🏎🚁🏁🏁 https://t.co/NvofwsPYwn +03/03/2018,Comedians,@RealCarrotTop,Just another normal day in #lasvegas feeding #llama Marley a 🥕 @FergusonsDT @ Downtown Las Vegas https://t.co/mMAm1vYCgI +03/02/2018,Comedians,@RealCarrotTop,🏂❄️.. this @shaunwhite thing will never end! Lol😂 @ Lee Canyon https://t.co/zyi60iQYdL +03/01/2018,Comedians,@RealCarrotTop,What a great #concert! eltonjohn 💯🎼🎻🎉 #legend #rocknroll @ The Colosseum at Caesars Palace https://t.co/Du6V9sfgEj +02/28/2018,Comedians,@RealCarrotTop,"RT @ekohmusic: how many other rappers do you know who have sang a hook on the back of a moped w/ @RealCarrotTop ? + +don’t worry, i’ll wait..…" +02/28/2018,Comedians,@RealCarrotTop,"RT @canyonconcerts: Carrot Top - March 25 +Carrot Top’s shows are a spectacle worthy of most arena rock bands and features lights, music, fo…" +02/28/2018,Comedians,@RealCarrotTop,"RT @SabanTheatre: Carrot Top - March 23 +Making audiences around the world laugh for more than three decades. Carrot Top has soared to succe…" +02/28/2018,Comedians,@RealCarrotTop,Surreal moment.. thanks John Mehon and eltonjohn for letting me play #drums 🥁🎼🎻. #eltonjohn… https://t.co/0tPQ5Q0SfY +02/27/2018,Comedians,@RealCarrotTop,Thanks for my surprise #birthday .. how many times can we say #cake? 🎂🎉 @ Luxor Hotel and Casino https://t.co/yU5WosgYnZ +02/25/2018,Comedians,@RealCarrotTop,Have you heard? I’ll be at the #canyonclub in #AgouraHills on March 25! Head to https://t.co/Jrh6UOBYkW to get your… https://t.co/7xWOTrM2sR +02/25/2018,Comedians,@RealCarrotTop,I'm gonna miss my #snowboard 🏂❄️ thanks buddy.❤ back to #Vegas ✈️ @ Reno-Tahoe International… https://t.co/aqj03Rp1w5 +02/25/2018,Comedians,@RealCarrotTop,"Awesome #birthday 🎂🥃 #laketahoe 🏂❄️🏂❄️ @ South Lake Tahoe, California https://t.co/VdfeOzqB2Q" +02/25/2018,Comedians,@RealCarrotTop,What an awesome #hotel @edgewoodtahoe #laketahoe 💯 @ Edgewood Tahoe https://t.co/I9f5luPvs6 +02/24/2018,Comedians,@RealCarrotTop,Ahh!!! 🏂❄️🥃 @ Heavenly Valley Ski Resort https://t.co/2pf0dsxNht +02/24/2018,Comedians,@RealCarrotTop,Can you feel the love at the @Spotlight29 on March 24! #tickets and #VIP #meetandgreet packages are available on… https://t.co/JAHYfcGieE +02/24/2018,Comedians,@RealCarrotTop,Don't try this at #home! Or on a #mountain..❄️🏂 https://t.co/XxQXT7UpeT +02/24/2018,Comedians,@RealCarrotTop,🏂❤❄️.... https://t.co/W0RESzUTTo +02/23/2018,Comedians,@RealCarrotTop,I’ll be at the @SabanTheatre on March 23! Get your #tickets and #VIP #meetandgreet at https://t.co/V0o1FPf0ea… https://t.co/6lDKLtdfeH +02/23/2018,Comedians,@RealCarrotTop,Hoping my #olmpics #nails will help my #snowboarding 🌈🏂❄️ @ Heavenly Valley Ski Resort https://t.co/nieydlpWjo +02/23/2018,Comedians,@RealCarrotTop,The #snow gods came! ❄️❄️🏂 @ Heavenly Mountain Resort https://t.co/VB3f9e7KN2 +02/23/2018,Comedians,@RealCarrotTop,"Hello? Yes, I’m Coming to @TheCanyonSC in Santa Clarita on March 22. Get your #tickets at https://t.co/Jrh6UOkmWm… https://t.co/vhsaRVk8ru" +02/23/2018,Comedians,@RealCarrotTop,Going for the gold! #laketahoe #snowboarding 🏂🥇 @ Heavenly Mountain Resort https://t.co/iPUU8RD3WH +02/21/2018,Comedians,@RealCarrotTop,Thanks @southwestair for great flight ❤️✈️ #vacation #laketahoe 🏂🌨❄️ https://t.co/xhts59YYMS +02/21/2018,Comedians,@RealCarrotTop,Oh SH....T! 👀👣 https://t.co/pElYPwYHK8 +02/20/2018,Comedians,@RealCarrotTop,Congratulations to marctheroberts and Kelly on your new #babygirl ❤️ @bluemangroup https://t.co/Fjio5t4TRg +02/19/2018,Comedians,@RealCarrotTop,😮😳💧 https://t.co/6R9zOJd7gw +02/18/2018,Comedians,@RealCarrotTop,Gotta love #winter in #lasvegas 76 ☀️☀️☀️ https://t.co/RFbY2TdgwV +02/17/2018,Comedians,@RealCarrotTop,Congrats again to me @shaunwhite @olympics #olympics 🏂🥇 https://t.co/oA8Fa5BPY1 +02/17/2018,Comedians,@RealCarrotTop,What a great #photo. 🌈👍❤️👣 https://t.co/eXErVZyC8S +02/16/2018,Comedians,@RealCarrotTop,#fbf #losangeles 199...? 😂 https://t.co/TLuHaGu021 +02/16/2018,Comedians,@RealCarrotTop,Perfect #song by @annemurray1 and #art by banksy ❤️🙏 https://t.co/j8NenQybks +02/16/2018,Comedians,@RealCarrotTop,🙏🙏 https://t.co/Rt2YXLi6kM +02/15/2018,Comedians,@RealCarrotTop,Come check me out on #tour. #road #shows 🎤🕺🥕 https://t.co/5TAKulhFx6 +02/14/2018,Comedians,@RealCarrotTop,Thanks @anythymelv for the awesome vase you made me! 💕 #happvalentinesday #handmadepottery https://t.co/ERchVEI6GV +02/14/2018,Comedians,@RealCarrotTop,#happyvalentinesday ❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/QGgYzczqjh +02/13/2018,Comedians,@RealCarrotTop,Come see me #valentinesday ❤️ code _4D @luxorlv .. #fb #photo from #Venice #Rome ❤️ https://t.co/F7eyZvOKxR +02/13/2018,Comedians,@RealCarrotTop,Very sad to hear the passing of #Marty Allen. He was a sweet #funny #legendary #comic and a… https://t.co/1h7Eb0Kfjm +02/12/2018,Comedians,@RealCarrotTop,Thanks to #freshballs for the awesome #asswipes! #bestfans 🍆🍌 https://t.co/VOLVMlowKh +02/11/2018,Comedians,@RealCarrotTop,Thanks @genesimmons for my awesome #vault #book #gift! 👋🕺🎸 https://t.co/360Ud4znfs +02/11/2018,Comedians,@RealCarrotTop,I think @genesimmons is asking ..why is #axlrose in this shot? https://t.co/Hk6dNdthPZ +02/10/2018,Comedians,@RealCarrotTop,This is starting to get creepy. @shaunwhite #chairmanoftheboard 🏂🏄 https://t.co/alrtpDTiww +02/10/2018,Comedians,@RealCarrotTop,These stairs should be an @olympics event! 👣🚶🏻‍♀️👟🥇 https://t.co/udrfqCC7U9 +02/10/2018,Comedians,@RealCarrotTop,Wish me luck tonight @olympics @shaunwhite 😂🏂 https://t.co/EG8pV4cp0I +02/09/2018,Comedians,@RealCarrotTop,Tour continues at the Canyon Club in Agoura on March 25! Get your #tickets at the @canyonconcerts box office or at https://t.co/Jrh6UOBYkW +02/09/2018,Comedians,@RealCarrotTop,Dear god!! thejerryspringershow #baggage #show gsntv 👋😂 https://t.co/nNlgqUaW1s +02/09/2018,Comedians,@RealCarrotTop,fiftyshadesmovie 🎬 @ Luxor Hotel and Casino https://t.co/YvBWiMhZYA +02/08/2018,Comedians,@RealCarrotTop,Love ❤️ my new shoes! I know they aren't for everybody! 🕺👟 https://t.co/RjFIjcKsUa +02/08/2018,Comedians,@RealCarrotTop,Come see me #valentines day❤️ Get your #tickets for 25% off with code _4D. @Luxorlv box office… https://t.co/EoToD3sTvp +02/07/2018,Comedians,@RealCarrotTop,Just posted a photo https://t.co/ceEkTONngZ +02/05/2018,Comedians,@RealCarrotTop,"#Repost @anythymelv with get_repost +・・・ +#goeagles !!!!!!!!! 🦅🦅🏈🦅🦅 https://t.co/KofNy1MFHl" +02/04/2018,Comedians,@RealCarrotTop,GO @eagles GO! @nfl #superbowl #nfl #football 🏈🦅 https://t.co/wThJxShcdq +02/04/2018,Comedians,@RealCarrotTop,You only see what your eyes want to see... Let them see me at the @29casino March 24. #tickets and #VIP… https://t.co/Pn8BoNc1gq +07/02/2018,Comedians,@PreacherLawson,A lot of people don’t know this but I’m actually a huge Lakers fan and HAVE been for a very long time! 27 minutes t… https://t.co/1PIJ4ShBKO +07/02/2018,Comedians,@PreacherLawson,A lot of people don’t know this but I’m actually a huge Lakers fan and HAVE been for a very long time! 27 minutes t… https://t.co/EEvwDUxRxk +07/02/2018,Comedians,@PreacherLawson,Awwwwwwww SNAP!!! @KingJames is coming to the @Lakers #YES #BeenAFanSinceDayOne #AsInTheFirstDayLebronCameToTheLakers #TeamBandwagon +07/01/2018,Comedians,@PreacherLawson,I’ll be honest for a second...I wouldn’t know how to spell bananas if it wasn’t for @gwenstefani +07/01/2018,Comedians,@PreacherLawson,Yoooooooo!!! Baggage Claim is hilarious 😂 #BaggageClaim #LAX #PeopleAreCrazy @ LAX https://t.co/cT5Ocxs168 +07/01/2018,Comedians,@PreacherLawson,How many of y’all get to do your dream job with your best friend? #Blessed #LawsonBrothers @ Stand Up Live - Phoenix https://t.co/ZE7w3E043e +07/01/2018,Comedians,@PreacherLawson,@bowink @gokaseygo @howiemandel See y’all soon 🙌🏾 +07/01/2018,Comedians,@PreacherLawson,RT @TXSDancer07: If y’all get the chance- go see @preacherlawson at @standuplive in Phoenix. I loved him on @agt but in person?!? SO. MUCH.… +07/01/2018,Comedians,@PreacherLawson,Just saw two squirrels either fighting or making up for lost time #SundayMorning +06/30/2018,Comedians,@PreacherLawson,"Awwwwwwwwwww SNAP!!! It’s evieclair y’all!!! Great seeing you! Glad you seen my show last night, keep killing it gi… https://t.co/4HWslniN1D" +06/30/2018,Comedians,@PreacherLawson,😂 https://t.co/Qk0N5Ng9mg +06/30/2018,Comedians,@PreacherLawson,@DarrenCarter HEY MAN!!! You in Phoenix?! +06/30/2018,Comedians,@PreacherLawson,LETS GO PHOENIX!!!! +06/30/2018,Comedians,@PreacherLawson,Guess who’s doing an ALL ages show in Los Angeles on July 8th...I’ll give you a hint he’s six foot four and his nam… https://t.co/arZTaV2X0o +06/29/2018,Comedians,@PreacherLawson,How was your last night? 😎 @OnlyBlackJustin #LawsonBros @ Copper Blues Rock Pub & Kitchen - Phoenix https://t.co/TqmuxAdPZN +06/28/2018,Comedians,@PreacherLawson,#TBT When I was 20 years old I lied on Craigslist and said I was Eddie Murphys nephew. So I could host a family reu… https://t.co/JrgGtrBplq +06/28/2018,Comedians,@PreacherLawson,"Shake that Laffy Taffy 😎🍬 + +#SeeYouThisWeekendPhoenix ☀️ @ Laugh Factory https://t.co/dWhphxhILp" +06/27/2018,Comedians,@PreacherLawson,RT @LisaKearth: Love this guy @PreacherLawson @AGT @BobHopeUSO @kearth101 #radiothon #flex4force #comedy #HumpDayHappiness https://t.co/Vqm… +06/26/2018,Comedians,@PreacherLawson,How To Make The GREATEST Green Juice EVER!!! - #CookingWithAComedian: https://t.co/ZZ4GsBNBwL via @YouTube +06/26/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/ZZ4GsBNBwL How To Make The GREATEST Green Juice EVER!!! - #CookingWithAComedian +06/26/2018,Comedians,@PreacherLawson,@PallaviGunalan You lost your tweeting privileges for the rest of the week +06/26/2018,Comedians,@PreacherLawson,@DPadrta lol I’ll be back in a two months +06/26/2018,Comedians,@PreacherLawson,THATS RIGHT!!! See you in a few days Phoenix!!! https://t.co/RVhMaCwLrV +06/26/2018,Comedians,@PreacherLawson,@RossBMR92 Working on it +06/26/2018,Comedians,@PreacherLawson,@TheRealEricMack https://t.co/tyGBngG3MC +06/26/2018,Comedians,@PreacherLawson,"@youngspice8 That doesn’t count! That’s like family guy, Simpson’s category" +06/26/2018,Comedians,@PreacherLawson,"@BobbyDigitaI @sreekyshooter First off I want to hear your best one, if it’s not spongebob..." +06/26/2018,Comedians,@PreacherLawson,@joeynajar I was JUST there last week!! +06/26/2018,Comedians,@PreacherLawson,Spongebob is the greatest cartoon of all time and I will fight anybody that disagrees!!! 👊🏾 +06/26/2018,Comedians,@PreacherLawson,"RT @Ali_Speaks: I am Back Cleveland @cleveimprov @cle_cavs_nation June 29-30th July 1 +#itsbiggerthanthesebars https://t.co/FJmRtu2HhS https…" +06/26/2018,Comedians,@PreacherLawson,"PHOENIX!!!! + +Get your tickets before we sell out this weekend!!! +https://t.co/dA1Fxb6CbO" +06/26/2018,Comedians,@PreacherLawson,Me: “Why are Flys called Flys but Horses aren’t called Gallops?! Huh am I right?! Nobody else thinks that’s weird?”… https://t.co/TmeA8B7QF2 +06/24/2018,Comedians,@PreacherLawson,Awwwwwwwww feel so good to be back home in my airplane chair #IMissedYou #SeriouslyThough… https://t.co/xatOHj3zrD +06/24/2018,Comedians,@PreacherLawson,North Carolina y’all were so dope 😊😍 +06/23/2018,Comedians,@PreacherLawson,"Haven’t been inside a gym in almost 3 months! Just body weight in hotel rooms LETS GET IT!!! 💪🏾 +#HotelWorkout… https://t.co/FH7VNH6GOk" +06/23/2018,Comedians,@PreacherLawson,"You can wear a shoe on your left foot, but there’s always a tomorrow that’ll never be found.... #Deep https://t.co/XVyUnUV6YQ" +06/22/2018,Comedians,@PreacherLawson,@mumbie12 Next time +06/22/2018,Comedians,@PreacherLawson,"@slyborg06 I meet everybody after the show, but I don’t think they’ll let her in because she’s 7. BUT just show the… https://t.co/pKWBqNAx7M" +06/22/2018,Comedians,@PreacherLawson,"RT @AndiCodes: @PreacherLawson Awesome show tonight! Can’t remember last time I laughed so damn hard, so please come back to Raleigh soon!!…" +06/22/2018,Comedians,@PreacherLawson,RT @ChefDSimpson: @PreacherLawson Amazing show tonight in Raleigh NC +06/22/2018,Comedians,@PreacherLawson,RT @JoshHagerNC: @PreacherLawson What an awesome show! I went and bought 2 Snickers bars afterward and I am now in my race car bed. You wer… +06/21/2018,Comedians,@PreacherLawson,NORTH CAROLINA!!!!! I’m here!!!! 🙌🏾😊 +06/21/2018,Comedians,@PreacherLawson,"RT @RenRaleigh: Get ready for a night filled to the brim with laughter! @PreacherLawson , as seen on America's Got Talent, is performing at…" +06/21/2018,Comedians,@PreacherLawson,Do it now so you don’t worry about it later +06/21/2018,Comedians,@PreacherLawson,THIS WEEKEND!!!!! https://t.co/KGPPcqCydP +06/20/2018,Comedians,@PreacherLawson,I’m having a blast co hosting on Access Live… https://t.co/LeW9PyFCGY +06/20/2018,Comedians,@PreacherLawson,@bbrownphotos88 @YouTube Thanks brother! 🙌🏾 +06/20/2018,Comedians,@PreacherLawson,@valerie_tosi Congratulations 🍾🎊🎈🎉 +06/20/2018,Comedians,@PreacherLawson,I’m on @accesslive 🙌🏾 +06/20/2018,Comedians,@PreacherLawson,This looks like me vs my alarm clock in he morning https://t.co/kDx9pGcMKu +06/20/2018,Comedians,@PreacherLawson,How To Make The Most AMAZING Vegan Burger of ALL TIME!!! #CookingWithAComedian: https://t.co/BbaReZdHVi via @YouTube +06/20/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/BbaReZdHVi How To Make The Most AMAZING Vegan Burger of ALL TIME!!! +06/20/2018,Comedians,@PreacherLawson,Happy 5 Year anniversary!!! I appreciate all the love you showed me! 🙌🏾 https://t.co/esQOn1k5tv +06/18/2018,Comedians,@PreacherLawson,GET READY!!! Because I’m about to randomly talk… https://t.co/roJjMadNna +06/18/2018,Comedians,@PreacherLawson,"RT @IntThings: 3 things to keep quiet.. + +1) Your love life. +2) Your income. +3) Your next move" +06/17/2018,Comedians,@PreacherLawson,@James_Metoudi LOOK AT EM!!! +06/17/2018,Comedians,@PreacherLawson,@animalchin24 😂🙌🏾 +06/17/2018,Comedians,@PreacherLawson,"Sucks when you’re a hugger around people that hate to be hugged 😫 + +WHO AM I GONE GIVE THIS LOVE TOO?! 😭" +06/17/2018,Comedians,@PreacherLawson,"I’m a GROWN man dad, I hate when you tickle me! Haha but you always find a way to make me laugh! Even if I don’t wa… https://t.co/EjnGI6CmvC" +06/17/2018,Comedians,@PreacherLawson,@GHurricane Yoooooooooooo!!!!! https://t.co/WWbmW6uOUZ +06/16/2018,Comedians,@PreacherLawson,Everybody should right now get on their knees… https://t.co/P7EgONol2G +06/16/2018,Comedians,@PreacherLawson,"What’s up BURBANK (Los Angeles) I’ll be headlining an all ages show July 8th get your tickets!! + +https://t.co/Sd9XwcPPsz" +06/16/2018,Comedians,@PreacherLawson,"@TheDrewLynch @CarrieHulon THATS RIGHT!!! + +The Drew and Preacher Show +💪🏾😂💪🏻" +06/16/2018,Comedians,@PreacherLawson,RT @SnwbrdrXoXo7: Here to see .@PreacherLawson! One of our favorites from #AGT! https://t.co/mtIyk7mkkU +06/14/2018,Comedians,@PreacherLawson,With my dog @thedrewlynch and his dog… https://t.co/Gh246XFlKW +06/13/2018,Comedians,@PreacherLawson,How To Make Amazing Hummus - #CookingWithAComedian: https://t.co/jO2QRyp4lv via @YouTube +06/13/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/jO2QRyp4lv How To Make Amazing Hummus - #CookingWithAComedian +06/13/2018,Comedians,@PreacherLawson,@rachklaus @SamuelJComroe @AGT Great job tonight!!! “I took that as a challenge” 😂🙌🏾 +06/13/2018,Comedians,@PreacherLawson,Level 10 +06/13/2018,Comedians,@PreacherLawson,RT @TheDrewLynch: International house of pancakes is changing to international house of burgers. We truly are in the darkest of times. +06/13/2018,Comedians,@PreacherLawson,Hey Ohio I know you lost a championship… https://t.co/O4I9JURG9x +06/12/2018,Comedians,@PreacherLawson,I’m changing my car alarm to gun shot sound effects. That way I’ll never get towed again 💡 +06/11/2018,Comedians,@PreacherLawson,Work hard be patient #GoodMorning 😊☀️ https://t.co/L93HbGycec +06/10/2018,Comedians,@PreacherLawson,Getting to do comedy with my brothers @woods_akeem @OnlyBlackJustin tonight!!! I can’t wait! #SittingInTheGreenRoom… https://t.co/zzJIfh3ncl +06/09/2018,Comedians,@PreacherLawson,😱😱😱😱 https://t.co/kska7CwmpL +06/09/2018,Comedians,@PreacherLawson,RT @KevinHart4real: There is no ELEVATOR to success people....You have to take the stairs!!!! Realest quote that I ever read which is why I… +06/09/2018,Comedians,@PreacherLawson,Just scooting through life like a gangsta 🛴🔥🙌🏾 https://t.co/BkQxvzivsT +06/09/2018,Comedians,@PreacherLawson,@weswillia Wat?! +06/08/2018,Comedians,@PreacherLawson,@Ian_Ex_Actor Doing great thanks bro +06/08/2018,Comedians,@PreacherLawson,@SeanConnaghan Hahahahahahaha +06/08/2018,Comedians,@PreacherLawson,They hit me so hard I missed spelled *Duct tape +06/08/2018,Comedians,@PreacherLawson,This lady hit me on my motorcycle and just to give you an idea how she drives. The duck tape was on the car BEFORE… https://t.co/dnoFQdR6mo +06/08/2018,Comedians,@PreacherLawson,RT @TheLaughFactory: Stop what you’re doing and get some @PreacherLawson in your life. You need a shot of his comedic energy. https://t.co/… +06/07/2018,Comedians,@PreacherLawson,@eshaknowsmma_ I agree 100% 🙌🏾 +06/07/2018,Comedians,@PreacherLawson,Hey everybody I was in @thedrewlynch cartoon and it was fun! Make sure you check out the full video on YouTube unde… https://t.co/bD6fiMQKhz +06/07/2018,Comedians,@PreacherLawson,I’m at icehouse Saturday doing an hour 😉 https://t.co/60j4OGrWJw +06/07/2018,Comedians,@PreacherLawson,Look everybody!!! I’m teaching everybody how to be hyper 😜🙌🏾 https://t.co/nFnEPXBIZR +06/05/2018,Comedians,@PreacherLawson,Hemp Milk: https://t.co/1fUYChzEtd via @YouTube +06/05/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/1fUYChi3BF Hemp Milk +06/05/2018,Comedians,@PreacherLawson,Crowd Makes Preacher Laugh: https://t.co/jO4Oz9fD1e via @YouTube +06/05/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/jO4Oz9fD1e Crowd Makes Preacher Laugh +06/04/2018,Comedians,@PreacherLawson,I love when the crowd catches me off guard with a good laugh! Fun times Chattanooga 😂🙌🏾 https://t.co/vUXEDvT81q +06/04/2018,Comedians,@PreacherLawson,Gooooooooooood MORNING!!!!!! +06/03/2018,Comedians,@PreacherLawson,@RonFunches 😂😂😂 +06/03/2018,Comedians,@PreacherLawson,It takes hours to make minutes look good #CookingWithAComedian 🙌🏾❤️ https://t.co/4w8qzN31qu +06/02/2018,Comedians,@PreacherLawson,"Don’t cry because it’s over, Smile because it happened" +06/02/2018,Comedians,@PreacherLawson,HEY EVERYBODY!!! I just did a hilarious cartoon with @TheDrewLynch check it out!! https://t.co/OvRD84h3J2 +06/02/2018,Comedians,@PreacherLawson,@JohnHeffron lol that’s insane +06/02/2018,Comedians,@PreacherLawson,GET YOUR TICKETS HERMOSA!!! https://t.co/DfUjVh75EI +06/02/2018,Comedians,@PreacherLawson,"Everybody has that one friend who they’ve known for years, but till this day can’t pronounce their name properly" +06/01/2018,Comedians,@PreacherLawson,Me watching the game last night... #JRSmith https://t.co/yprjN60FHq +06/01/2018,Comedians,@PreacherLawson,Y’all better get my little sisters album!!!!! 🙌🏾❤️ https://t.co/vwHxkxcWfx +06/01/2018,Comedians,@PreacherLawson,@CandaceMounts 100% ❤️ +06/01/2018,Comedians,@PreacherLawson,@yourgalHeather @EDC_LasVegas No ma’am +06/01/2018,Comedians,@PreacherLawson,@CandaceMounts Can you see that point of view Candace? https://t.co/6wgGOkxFxG +06/01/2018,Comedians,@PreacherLawson,@melissadlrosa You feel me 😡 +06/01/2018,Comedians,@PreacherLawson,@JackieVukovich I like it! +06/01/2018,Comedians,@PreacherLawson,"It’s bad when my first thought is + + “At least they didn’t shoot her..” https://t.co/oU4bha7dVY" +05/31/2018,Comedians,@PreacherLawson,@JohnHeffron Is that you?! +05/31/2018,Comedians,@PreacherLawson,@GHurricane Lol man leave me alone!! 😂 +05/31/2018,Comedians,@PreacherLawson,"@FollowTheMenace Bruh!!! 😂😂😂 + +I want to wait on Drake’s reply, I feel like he has to have something up his sleeve" +05/31/2018,Comedians,@PreacherLawson,"Most people know me from being a stand up comedian, but I have other hobbies and I encourage everyone to follow the… https://t.co/1KxCznmWep" +05/31/2018,Comedians,@PreacherLawson,@4FinalDraft @AGT @angiegreen @chasegoehring @angelicahale @Kechi @nbc #AGT12 gang!!! +05/31/2018,Comedians,@PreacherLawson,Hey everybody I did a podcast with @adamraycomedy and @funnybrad CHECK IT OUT!!! https://t.co/WxRlVjExn7 +05/30/2018,Comedians,@PreacherLawson,@analisa_ruiz27 @SimonCowell @AGT ❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@angiegreen @SimonCowell @AGT ❤️❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@stacyda30 @SimonCowell @AGT Good thing I’m a comedian that’s just joking +05/30/2018,Comedians,@PreacherLawson,That hurt my feelings @SimonCowell when you said on @Agt she was the funniest comedian on the show! Now I pray that… https://t.co/WblaRf93av +05/30/2018,Comedians,@PreacherLawson,"RT @ALNpodcast: The hilarious Preacher Lawson makes his ALN DEBUT to talk about what he was like growing up, (briefly) being homeless and l…" +05/30/2018,Comedians,@PreacherLawson,"I miss it too, but I PROMISE I’ll be on it again. Keep a look out 😉 https://t.co/JCCX3DKoWo" +05/30/2018,Comedians,@PreacherLawson,@ItsDarciLynne @AGT @nbc 😜❤️ +05/30/2018,Comedians,@PreacherLawson,@angiegreen @4FinalDraft @AGT @chasegoehring @angelicahale @Kechi @nbc Miss you back ❤️❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@KeonPolee Hahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha +05/30/2018,Comedians,@PreacherLawson,#BARS @Flaujae +05/30/2018,Comedians,@PreacherLawson,This is the greatest dancing grass I’ve ever seen! https://t.co/oV7DBLGdlK +05/30/2018,Comedians,@PreacherLawson,That’s what my mom did and I turned out fine! Good job @VickiBarbolak 🙌🏾 https://t.co/1HfyHOV2f3 +05/29/2018,Comedians,@PreacherLawson,Happy Tuesday all! If you haven't checked out my latest #CookingWithAComedian right now would be a great time! It's… https://t.co/QOHLLJWQYz +05/29/2018,Comedians,@PreacherLawson,Hey everybody!!! I did a freestyle rap for @AGT season premiere tonight!!! Watch it on @nbc 😉🙌🏾 https://t.co/xUwnCLMUDf +05/28/2018,Comedians,@PreacherLawson,"This was fun, take a listen 🙌🏾 https://t.co/lKYFqeldGq" +05/28/2018,Comedians,@PreacherLawson,@Princess_Tara79 @HeliumComedyPdx @OnlyBlackJustin +05/27/2018,Comedians,@PreacherLawson,RT @TaylorYeo1: Don’t think you’re too cool for your parents +05/27/2018,Comedians,@PreacherLawson,"You’re INSANE 😱 +Crushed it! Nice to meet you and anytime 🙌🏾 https://t.co/gRKA1V5UhE" +05/27/2018,Comedians,@PreacherLawson,@JohnHeffron Doing GREAT! Still in shock of how awesome my life is! I hope you’re doing just as well 🙌🏾 +05/26/2018,Comedians,@PreacherLawson,FAMILY TIME!!! Hanging with the sister Jenecia!… https://t.co/uCA8JlW7xU +05/26/2018,Comedians,@PreacherLawson,#Work 💡 https://t.co/X8jEd8dyBv +05/26/2018,Comedians,@PreacherLawson,@johnrodolfo That’s where I’m staying this weekend 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@RipCityRadio620 @dwightjaynes @AaronJFentress Thanks for having me 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@jennilutz I’m home! Gotta spend that time with family! But any other city I’m down! +05/25/2018,Comedians,@PreacherLawson,@zackgallinger See you soon buddy 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@deadbrew1 @ewjjr1 @TonyHinchcliffe Thank you brother!! Working on Houston in the next few months!! I promise I’m coming!!! 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,If you’ve heard of me within the last two… https://t.co/CeLvzDdLVo +05/25/2018,Comedians,@PreacherLawson,@HardcorePooper @HeliumComedyPdx @RipCityRadio620 100% take a picture and handshake! Can’t wait! 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@ewjjr1 @TonyHinchcliffe Doooooooooioipe!!! Can’t wait to see you man! Make sure you say what’s up after the show! +05/25/2018,Comedians,@PreacherLawson,"After y’all see me this weekend Portland, make sure you come back to watch the roast master @TonyHinchcliffe 🙌🏾 https://t.co/pwYuPK5IjH" +05/25/2018,Comedians,@PreacherLawson,@Janine Lol Stupid 😂 +05/25/2018,Comedians,@PreacherLawson,😜🙌🏾 https://t.co/ltfGY7dqjw +05/25/2018,Comedians,@PreacherLawson,@MryPunkin I say God Bless you too 😉 +05/25/2018,Comedians,@PreacherLawson,@PlatinumPerry @TWooodley I would pay money to see you say that in ANY hood. Punches can’t block bullets and darce… https://t.co/W0WTZ4ZRpe +05/25/2018,Comedians,@PreacherLawson,Thank you @tc73 for being me to @pdxmuaythai and beating me up today! My legs hurt from kicking! Thanks again! See… https://t.co/awP1c6rJMb +05/25/2018,Comedians,@PreacherLawson,@nicolebyer See you Saturday 😉 +05/25/2018,Comedians,@PreacherLawson,"Mom: If you don’t finish your plate you ain’t getting desert! + +Me: ... https://t.co/i4xXUQAHrz" +05/25/2018,Comedians,@PreacherLawson,YES!!! See you soon! 🙌🏾 https://t.co/BNbT9XIxxs +05/25/2018,Comedians,@PreacherLawson,@fusconed When?! I’m down! +05/25/2018,Comedians,@PreacherLawson,@nancynazari Haha the image in my head if you waiting is hilarious +05/25/2018,Comedians,@PreacherLawson,Hahahahaha just realized I can’t spell +05/25/2018,Comedians,@PreacherLawson,Vegan Jalapeno Poppers - #CookingWithAComedian: https://t.co/WNPJ6bxAwc via @YouTube +05/25/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/WNPJ6bxAwc Vegan Jalapeno Poppers - #CookingWithAComedian +05/25/2018,Comedians,@PreacherLawson,@CassidyQuinn @HeliumComedyPdx I got got a question! How about...what’s the address?! 🙃 +05/24/2018,Comedians,@PreacherLawson,"RT @francis_ngannou: From nobody to somebody !!! +#trust #believe #dreams #hope #goals ... https://t.co/QiDsXUNuGH" +05/24/2018,Comedians,@PreacherLawson,#TBT Yes I was ALWAYS like this! Trademarked my… https://t.co/8aG58e5amf +05/24/2018,Comedians,@PreacherLawson,"@jamiekilstein You’re a vegan, mma, comic?! 😱 + +Thanks my dude nice to meet you! 🙌🏾" +05/24/2018,Comedians,@PreacherLawson,PORTLAND OREGON LETS GAVE FUN THIS WEEKEND!!! @HeliumComedyPdx +05/24/2018,Comedians,@PreacherLawson,Who made the rule you only get one “Bless you” for sneezing +05/23/2018,Comedians,@PreacherLawson,RT @HollywoodImprov: .@the88show w/ @AveryFunny is back in #TheLab THIS WED at 10:15! @PreacherLawson @ArdenMyrin @jeremiahstandup & more h… +05/23/2018,Comedians,@PreacherLawson,RT @_TomRhodes: TRR Smart Camp #263 with @PreacherLawson! Get to know the first comedian ever to have abdominal muscles! I think he is pure… +05/23/2018,Comedians,@PreacherLawson,"PORTLAND OREGON!!!! +If we are not sold out ever show this weekend I will be HOT!!!! Come see your boy! #Helium… https://t.co/t2AV2gqgZR" +05/22/2018,Comedians,@PreacherLawson,🙌🏾❤️ https://t.co/EVmBHMbTtf +05/21/2018,Comedians,@PreacherLawson,"Me: “Take THIS life!” +Life: “.......” + +Hahaha… https://t.co/LlvNJdCFBj" +05/20/2018,Comedians,@PreacherLawson,@RandalNevin Thanks brother 🙌🏾 +05/20/2018,Comedians,@PreacherLawson,@USMAN84kg good work bruh 🤙🏾 +05/19/2018,Comedians,@PreacherLawson,@Jtaylor1040 Thank you for coming out! 🙌🏾 +05/19/2018,Comedians,@PreacherLawson,RT @IsobelKaraNight: Getting roasted by @PreacherLawson Tonight was the best!!! Add on top hearing a good new song to listen to because of… +05/19/2018,Comedians,@PreacherLawson,@ukpharmd06 You were great 🤙🏾 +05/19/2018,Comedians,@PreacherLawson,"Icehouse In Pasadena this Sunday +Hollywood Improv Tuesday 8pm +Hollywood Improv Wednesday at 10pm 🤙🏾 https://t.co/oE5yc9CIkX" +05/19/2018,Comedians,@PreacherLawson,RT @jeremiahstandup: I'm on this great show on Wednesday doing standup then an original song w/ @AveryFunny & @PreacherLawson @ArdenMyrin &… +05/19/2018,Comedians,@PreacherLawson,"RT @alharufai: Watch @PreacherLawson on YouTube, he light my life up" +05/18/2018,Comedians,@PreacherLawson,"That last move though 😂😂😂 +#ImDying https://t.co/0jPrtXBiUB" +05/18/2018,Comedians,@PreacherLawson,I needed a song for all them times I got fired 😂 https://t.co/HnWCeE3z0J +05/18/2018,Comedians,@PreacherLawson,@danhardymma Looking SHARP can’t wait to see you back in there 🤙🏾 +05/18/2018,Comedians,@PreacherLawson,@rianalorraine I still love you 😜❤️ +05/17/2018,Comedians,@PreacherLawson,RT @SeanSJordan: My mom just joined Insta. This is all I have left. +05/17/2018,Comedians,@PreacherLawson,If you take 100 selfies and 99 of them look the same...that’s how you look +05/16/2018,Comedians,@PreacherLawson,Nobody wants to SEE ME IN PULL UPS!!!!!!! #Nobody #GetYourWeightUp #ImAMagician #DoYouEvenLiftBro 😜💪🏾 https://t.co/Wo9CvanUMB +05/16/2018,Comedians,@PreacherLawson,Life’s a journey enjoy the ride 😉🏍 https://t.co/z1ntcR8jgQ +05/15/2018,Comedians,@PreacherLawson,Vegan Mushroom Tikka Masala - #CookingWithAComedian: https://t.co/sRu4I9j6CI via @YouTube +05/15/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/sRu4I9j6CI Vegan Mushroom Tikka Masala - #CookingWithAComedian +05/14/2018,Comedians,@PreacherLawson,I look like a half brother that came back from over seas after my t… https://t.co/G6yp1CGTL3 +05/14/2018,Comedians,@PreacherLawson,RT @dasmith23: @PreacherLawson was everything I expected and more! Must see!!! +05/14/2018,Comedians,@PreacherLawson,@FakeMeats could y’all sponsor me already! I’m going broke buying all this jerky off of amazon! +05/14/2018,Comedians,@PreacherLawson,Hahahahahahahahahaha #This https://t.co/nB4GYTw0Ve +05/13/2018,Comedians,@PreacherLawson,#HappyMothersDay to my favorite mom! Thank you for being my biggest… https://t.co/fQnNVijzg0 +05/13/2018,Comedians,@PreacherLawson,Two sold out shows KANSAS Crossing Casino!!! Thank you I had a blast… https://t.co/1Gag0xcPQj +05/12/2018,Comedians,@PreacherLawson,Ever wake up in the morning and look in the mirror like “I’m getting in great shape!” To only realize you’re just starving +05/12/2018,Comedians,@PreacherLawson,@mattjack99 On April 1st bruh 😂 +05/12/2018,Comedians,@PreacherLawson,I appreciate the love brother 🙌🏾❤️ https://t.co/6ri4NtrTwI +05/12/2018,Comedians,@PreacherLawson,@AmandaRTubbs I love me some me ❤️ +05/12/2018,Comedians,@PreacherLawson,@djlando You da man 🤙🏾😊 +05/12/2018,Comedians,@PreacherLawson,@Lerette_Adam I’VE BEEN TO MAINE TWICE IN THE LAST 8 months!!! +05/12/2018,Comedians,@PreacherLawson,@mriahowson Thank you for coming out! I’ll be back! +05/12/2018,Comedians,@PreacherLawson,I live for this 🎤 https://t.co/PAxyr0QAcs +07/01/2018,Comedians,@attell,"He was so smart, fearless and just did not care what the crowd thought. It was beautiful.  .I loved him like a brot… https://t.co/cQMyTMeCmZ" +07/01/2018,Comedians,@attell,It took me a while to process the loss of Sean Rouse.  Sean was a great friend and probably one of the funniest guy… https://t.co/VXEXyzeahy +06/29/2018,Comedians,@attell,"RT @ComedyCellarUSA: When we do something special we do it BIG! This Friday, Saturday and Sunday @attell and @realjeffreyross are taking…" +06/24/2018,Comedians,@attell,Mohegan sun.  We did it!!!!!   #Bumpingmics fans rock!! https://t.co/Z8ajKVaaWP +06/23/2018,Comedians,@attell,RT @realjeffreyross: CONNECTICUT @MoheganSun TONIGHT 8pm. #BumpingMics with @attell & special guest @yamaneika !!! https://t.co/EvKb4qSXgc +06/23/2018,Comedians,@attell,"see yah at @BananasComedyNJ tonite! + +tix: https://t.co/ZwYEQSSscY +(more on https://t.co/C1JS5AVNa2) https://t.co/ts13IR6lC9" +06/16/2018,Comedians,@attell,Thank you Bruce for the cool painting. I love it!!! @goodnightscc #raleigh https://t.co/6r2Z7IZsxg +06/15/2018,Comedians,@attell,RT @realjeffreyross: NEW YORK FUCKIN CITY THIS MAKES ME SO HAPPY #BumpingMicsNYC @attell https://t.co/oSvtvFkTQS +06/10/2018,Comedians,@attell,RT @realjeffreyross: Watch your fingers kids. #bumpingmics Vegas tonight @TheMirageLV https://t.co/tx6YQMKXiW +06/04/2018,Comedians,@attell,Heading to @TheMirageLV Vegas w/ @realjeffreyross on June 9 & @ComixMoheganSun June 23 - tickets on my site:… https://t.co/KfyK02v6Gw +05/24/2018,Comedians,@attell,Comics rocked & crowds took it to a new level in Seattle & Portland. Thx to all the super comedy fans for making it… https://t.co/5ElzzbQDgx +05/23/2018,Comedians,@attell,"The next stop with @realjeffreyross on the #BumpingMics tour: +👑👑VEGAS June 9th!👑👑 +Tickets at… https://t.co/Mz2Mvtvmz3" +05/22/2018,Comedians,@attell,RT @realjeffreyross: Not sure how I got @attell to sit still for an hour but I did... Here’s our #BumpingMics podcast https://t.co/krnVT8dA… +05/18/2018,Comedians,@attell,RT @realjeffreyross: Come see us in Seattle tonight you coffee drinking umbrella carrying hippies #BumpingMics ! https://t.co/hJuCj9n5GV @a… +05/17/2018,Comedians,@attell,With @realjeffreyross in #Seattle tomorrow & #Portland Saturday - 2nd show added! #bumpingmics for tix… https://t.co/vZicnO3KkV +05/17/2018,Comedians,@attell,See yah in #Seattle & #Portland this weekend! #BumpingMics https://t.co/vJqDwgTbo7 +05/17/2018,Comedians,@attell,"RT @realjeffreyross: What cities should we come to next ? Anything’s gotta be better than Thackerville, Oklahoma? #BumpingMics @attell http…" +05/13/2018,Comedians,@attell,Congrats @amyschumer great job xox +05/09/2018,Comedians,@attell,"I had a blast on the podcast @realjeffreyross - can't wait for the live shows + +https://t.co/VuuGiQhC7F" +05/09/2018,Comedians,@attell,".@realjeffreyross IT’S ON! Can’t wait til we’re in Portland and Seattle +2 weeks away! +2 great towns! +3 awesome s… https://t.co/kerU2W7wzG" +05/07/2018,Comedians,@attell,"Way to go Dr @KenJeong!!!   You rock !!!  + +https://t.co/3rSVOzvI1L" +05/03/2018,Comedians,@attell,"Congrats on the new @StressFactoryCT club, @Vinnie_Brand ... @StressFactoryNJ is one of my favorites, and I can't w… https://t.co/SSHYf1b5Qc" +04/30/2018,Comedians,@attell,"RT @Stand4Heroes: Great news San Francisco! Dave Attell to join @billburr and @realjeffreyross for Stand Up for Heroes: Bay Area, May 17 at…" +04/30/2018,Comedians,@attell,Congratulations on the #WHCD @michelleisawolf!!!!  can’t wait to see the @netflix show! +04/21/2018,Comedians,@attell,Congrats on the new movie @amyschumer!! xox @IFeelPretty #IFeelPretty https://t.co/b4OUXLczCz +04/12/2018,Comedians,@attell,@StudioSheila @ComedyCentral @CarolinesonBway Wow i like it!!! thanks Sheila…I feel like the burger king’s king. +04/12/2018,Comedians,@attell,She was a legend in the biz. And there will never be another one like her.  Give it up for the late great Mitzi Sho… https://t.co/wsCQLFKrvJ +04/08/2018,Comedians,@attell,It’s great to be  back on the island doing shows at my favorite club  @ComedyGovs. It was a fun time and great week… https://t.co/65BmOl8tNP +04/06/2018,Comedians,@attell,RT @TheBonfireSXM: This week we had @attell on the show and talked to Chrissy from Long Island... Catch Dave Attell at @ComedyGovs this Fri… +04/04/2018,Comedians,@attell,Check out @artiequitter's new book – it's great! https://t.co/trU2L9yLFV +04/03/2018,Comedians,@attell,love it! https://t.co/XAoq8P1sRF +04/03/2018,Comedians,@attell,"Finally! The funnest club is opening in the funnest town! +Check it out @NYCComedyCellar is opening in #Vegas at th… https://t.co/FAWgrmY2PG" +03/23/2018,Comedians,@attell,Great time at the @CountBasieThtr in Red Bank NJ with @realjeffreyross & @yamaneika Saunders on the… https://t.co/W0Kckn70LK +03/18/2018,Comedians,@attell,Happy Saint Patrick's Day from the Bumping Mics tour! https://t.co/tlKnNalCbU +03/17/2018,Comedians,@attell,RT @realjeffreyross: Headed to Lake Tahoe for our big show tonight @MontBleuResort #BumpingMics @attell ⛷ https://t.co/YJTyDNwhsB +02/25/2018,Comedians,@attell,It was sooooo cool playing @americancomco again.  San Diego rocks!!! Thanks to some great comics and amazing crowds… https://t.co/eqP40apwN1 +02/22/2018,Comedians,@attell,"RT @nicoleaimee: SAN DIEGO! 5 shows starting tonight at one of my favorite comedy clubs ever, @americancomco with my favorite mensch @attel…" +02/21/2018,Comedians,@attell,This was a wild show for a great cause !!!  Give it up for the late great Patrice!  Miss you now and always https://t.co/Bck898ObYQ +02/19/2018,Comedians,@attell,Great time in Phoenix & Tempe check out this great crew of comics   It was awesome !!! Can’t wait to come back.  Ne… https://t.co/9xHdUU87IQ +02/18/2018,Comedians,@attell,"RT @PMendoza602: Mr. @attell I'm gonna teach my kids your fabulous recipe for Hobo Chili! An Onion, A shoelace and the @mrcoffee at home. Y…" +02/14/2018,Comedians,@attell,RT @PaulyPeligroso: #PHOENIX I'll be opening for @attell this Friday and Saturday at @tempeimprov and Sunday at @standuplive. Let's talk ab… +02/08/2018,Comedians,@attell,"Happy Birthday, @RussMeneve ! https://t.co/7YGC6ZIWUK" +01/28/2018,Comedians,@attell,"We rocked the mall, @IamJustinSilver , Valerie & @PeteDominick !!!  @LevityLive is an awesome club!!!  Next stop… https://t.co/0Q9v9HPLYl" +01/25/2018,Comedians,@attell,"See yah at @LevityLive this weekend, @IamJustinSilver https://t.co/43w413i6iK" +01/25/2018,Comedians,@attell,RT @military_family: @attell Check out this amazing #HarleyDavidson being auctioned tomorrow - proceeds support #MilitaryFamilies https://t… +01/19/2018,Comedians,@attell,"It was a great night! xox +@NYCComedyCellar @realjeffreyross @DaveJuskow @toddbarry @Sherrod_Small @NikkiGlaser… https://t.co/1EBZBEGWXB" +01/19/2018,Comedians,@attell,Yummers!!!! Great cake fun nite. Xox https://t.co/ln1tBPIRvN +01/16/2018,Comedians,@attell,RT @IamJustinSilver: These shows are gonna be “fire” as the kids say these days! I’ll be opening for the great @attell Jan 26th & 27th at… +01/09/2018,Comedians,@attell,Great time at the @NYCComedyCellar post-holiday party tonight! See yah on the road this weekend Jan 12-14 at… https://t.co/0ngOCbtiDd +01/01/2018,Comedians,@attell,Great show at @sfmasonic . It was blast from beginning to end w/ @nickvatterott @heybubbles @morgan_murphy &… https://t.co/mveacbxGCp +12/24/2017,Comedians,@attell,Holidays shows are always fun but at @Hilarities in Cleveland we took it to the next level big thanks to The crowds… https://t.co/FUVyqgEcd0 +12/22/2017,Comedians,@attell,RT @Hilarities: Uncle Dave has arrived to spread Christmas Joy to all good little boys & girls & tell tales of skanky memories past! The fa… +12/21/2017,Comedians,@attell,Happy holidays to all the @jimandsamshow listeners. You rock!!   See yah at a club sometime soon. (New dates up on… https://t.co/4r34tcMzxo +12/21/2017,Comedians,@attell,"RT @joemachi: I'll be opening for @attell December 27-30 @CarolinesonBway. +#fun #hashtag" +12/17/2017,Comedians,@attell,I had so much funny hitting the stage with @iamjustinsilver and @maryradzinski at the legendary @UNCLEVINNIESCC. … https://t.co/W5BqGbzX6R +12/13/2017,Comedians,@attell,RT @CarolinesonBway: Get tickets to see Dave @attell LIVE in NYC at Carolines on Broadway Dec 27 - Dec 30 HERE: https://t.co/hj13xMg8EJ!! h… +12/13/2017,Comedians,@attell,Added more dates - next stop @UNCLEVINNIESCC in NJ and @Hilarities in Cleveland - Tickets on https://t.co/C1JS5AVNa2 https://t.co/rUBVowT6ij +12/12/2017,Comedians,@attell,Congratulations @JuddApatow on your first hour special! Check it out on @netflix +12/03/2017,Comedians,@attell,RT @HeliumComedyBUF: Easily one of the best weekends we have had this year! Big thanks to @rjpurpura and @iamShaunmurphy and of course to t… +12/03/2017,Comedians,@attell,It was great to be back in buffalo i love the crowds and staff at the @HeliumComedyBUF club.  And it was a pleasure… https://t.co/9mjhquRSEs +12/03/2017,Comedians,@attell,Congratulations on the new @hbo special @michelleisawolf !! #MichelleWolfNiceLady https://t.co/V4zLG0YXq4 +12/01/2017,Comedians,@attell,RT @HeliumComedyBUF: Four shows left with the amazing @Attell! Best availability at the late shows! Grab yours here: https://t.co/WTAtL87yN… +12/01/2017,Comedians,@attell,Thanks for the delicious chocolate treats @howardcadmus @OhPourLamour https://t.co/Yzyacw7btU +12/01/2017,Comedians,@attell,It was a great start of the week @HeliumComedyBUF - the crowd was pumped. And super fan Howard brought some delicio… https://t.co/R3ZopVof0h +11/25/2017,Comedians,@attell,"I hope everyone had a Happy T Day. xoxo +Let's give it up for the troops it's rough being away from family over the… https://t.co/x0jyRgzE0r" +11/23/2017,Comedians,@attell,"Happy Thanksgiving! + +Gobble up these dates & I'll see yah on the road! +(Tickets at https://t.co/vC07ePilDC) https://t.co/ZjZUfGNDuF" +11/21/2017,Comedians,@attell,"Great weekend @WiseguysUtah in SLC.... love the new club - BIG thanks to the Wiseguys' staff! +Next stop...… https://t.co/Nr15FhcDlU" +11/17/2017,Comedians,@attell,.@realjeffreyross Goal!!!! Congratulations on the new special Jeff. Xox #roasttheborder +11/16/2017,Comedians,@attell,It was a weds show but it rocked like a Friday. Full tilt great show with comics Chris & @nicoleaimee . Thanks Bake… https://t.co/OQWQwJjOZV +11/15/2017,Comedians,@attell,"@joerogan @HollywoodImprov Always a fun hang, Joe. Great to see yah!" +11/15/2017,Comedians,@attell,RT @joerogan: Beautiful to run into my friend @attell at the @hollywoodimprov tonight! https://t.co/PuXpYx6JUg +11/11/2017,Comedians,@attell,.@NateRockQuarry Thank you for inviting me to @vetspeakPDX .  It was  a very moving experience.  Much respect to  a… https://t.co/zxTt6S5Yv6 +11/10/2017,Comedians,@attell,"@T_h_e_D_u_d_e_ will be in San Diego in Feb. +my site has info https://t.co/C1JS5AVNa2" +11/10/2017,Comedians,@attell,RT @HeliumComedyPdx: Five shows left with the amazing @Attell! Limited tickets remain for Sunday Night! Grab yours here: https://t.co/rJiG8… +11/07/2017,Comedians,@attell,.@JudahWorldChamp you did it!!!  Congratulations on the new special +11/07/2017,Comedians,@attell,You gotta love a good bingo nite !! For a great cause.  #TeamRubicon @TeamRubicon w/ Michael Che https://t.co/S4aE7uWG8t +11/05/2017,Comedians,@attell,Had a blast w/ @louiskatz & @nicoleaimee @IrvineImprov It’s a big club but we packed it out! Next stop Portland >… https://t.co/ZOmwpWFIRY +10/31/2017,Comedians,@attell,What a fun nite!!! Check out the living legend @RealGilbert's documentary. Gilbert.  I laughed I cried I wet the be… https://t.co/jmKEZPTg4Y +10/24/2017,Comedians,@attell,"Weekend went from good to great @VTcomedy when the king himself Elvis P, dropped by to hang w/ me & the other comic… https://t.co/niRWt5JLvt" +10/17/2017,Comedians,@attell,Me and @mikefinoia at one of my favorite clubs Always fun times - the staff and crowds rock.  Happy 25 years… https://t.co/ivHikpxgea +10/14/2017,Comedians,@attell,"comedy fans! My buddy @wilsylvince is making a film - it's really cool - check out the clip +https://t.co/Ba9O3WnSYl" +10/12/2017,Comedians,@attell,RT @mikefinoia: Washington D.C! I’ll be with @attell this weekend at @dcimprov Friday - Sunday. 5 shows. Almost… https://t.co/sCbJSS4FFD +10/12/2017,Comedians,@attell,.@artiequitter you made it!!! Happy birthday brother. Xox https://t.co/CktEfobJbK +10/06/2017,Comedians,@attell,The Road Gods have taken another great one... We miss you Ralphie!! +09/22/2017,Comedians,@attell,See yah tonight @Red5Nord ! https://t.co/FN499YkmHl +09/17/2017,Comedians,@attell,"RT @joemachi: Hey CT! I'm opening for @attell at Foxwoods 9/22! +https://t.co/CqIcicuxJW" +09/17/2017,Comedians,@attell,Me & @KingJasonAllen @ComedyZoneCLT - @cliffcashcomedy was also on the show but had to drive to next gig. Go see… https://t.co/LonDGFLlCR +09/17/2017,Comedians,@attell,"Drawn by one of the staff Sarah at the @ComedyZoneCLT + +Way to go Sarah P I love it!! https://t.co/jRo57XakAV" +09/15/2017,Comedians,@attell,RT @woodyandwilcox: Thnx again Dave. Always great. Go see @Attell @ComedyZoneCLT this wknd!! #ComedyLegend #Attell #Woodying https://t.co/B… +09/14/2017,Comedians,@attell,"Happy Birthday, @realjeffreyross ! 💕 https://t.co/Nw0t2eDdCX" +09/12/2017,Comedians,@attell,This will be a fun show. Check it out . https://t.co/iRm0uQeZNi +09/09/2017,Comedians,@attell,"RT @ArtieandAnthony: Check out today's episode of #TheAAShow w/ @artiequitter, @AnthonyCumiaxyz, @attell, & @robertkelly in the archives be…" +09/04/2017,Comedians,@attell,.@lacelarrabee & Jarrod Harris killed at @punchlinecomedy and are getting married!!!  Give em a hand!!! https://t.co/TTyugSJdaE +09/04/2017,Comedians,@attell,I made it!!   I had a great weekend playing the new @punchlinecomedy. Check out this club - The crowds rocked! https://t.co/FYuAs9bzYS +09/01/2017,Comedians,@attell,"RT @punchlinecomedy: This Weekend Dave Attell is only at The Punchline. Friday, Saturday, Sunday. Make your plans to see @attell https://…" +08/18/2017,Comedians,@attell,See yah tonight @ 8pm. Still a few tix left. https://t.co/Er9CxgHSsX +08/16/2017,Comedians,@attell,"Can't wait, @joemachi - it's gonna be a great night! https://t.co/hK9hGoQ7fN" +08/15/2017,Comedians,@attell,Check out this documentary... https://t.co/xwhUBn5tJs +08/07/2017,Comedians,@attell,RT @kevinbrennan666: @SteveTorelli @DaveJuskow @attell @RachelFeinstein @NYCComedyCellar That pos @attell can only like it? No retweet? Wha… +08/07/2017,Comedians,@attell,"It would be an honor & a privilege to write a blurb for your 2nd installment, @DougStanhope https://t.co/p1zyfYwBwv" +07/30/2017,Comedians,@attell,".@CraigyFerg you are the man!!! + +Thanks for doing the show!! https://t.co/AfLVZdhQkY" +07/24/2017,Comedians,@attell,"RT @TheBonfireSXM: FUN FACT! @ComicMikeV @louiskatz & @bigjayoakerson were all consultants on @attell's ""Dave's Old Porn""... https://t.co/L…" +07/21/2017,Comedians,@attell,RT @FoxwoodsCT: .@Attell is bringing the laughs to the #Foxwoods stage this fall! Don’t miss the comedian live on Sep 22 https://t.co/xdq6o… +07/19/2017,Comedians,@attell,RT @realjeffreyross: Nice piece about my upcoming live shows with my best pal @attell #BumpingMics at Montreal's @justforlaughs is next wee… +07/18/2017,Comedians,@attell,RT @realjeffreyross: Excited to share the stage w my brother @attell during the Montreal Comedy Festival next week @justforlaughs Info at h… +07/18/2017,Comedians,@attell,Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for doing the… https://t.co/0rEKhuXn2T +07/18/2017,Comedians,@attell,Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for doing the… https://t.co/W0Oo2pUCOh +07/18/2017,Comedians,@attell,RT @ChristineMEvans: Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for @attell's Military Fa… +07/13/2017,Comedians,@attell,Great nite @NYCComedyCellar with one of the best of the best. My friend Artie Lange @artiequitter https://t.co/nRBQbHGV2Z +07/06/2017,Comedians,@attell,Thanks for letting me hang on @TheBonfireSXM today @bigjayoakerson & @DanSoder https://t.co/tKt74KZq4Y +07/06/2017,Comedians,@attell,Watch @DanSoder's @netflix special! https://t.co/WFfw1IqHWm +06/22/2017,Comedians,@attell,"See yah this Fri & Sat, Annapolis @RamsHeadOnStage + +https://t.co/QrkhxQuKyY https://t.co/kmq1gYGgQ1" +06/19/2017,Comedians,@attell,RT @TheBonfireSXM: .@bigjayoakerson & @DanSoder are on @attell's National Military Family Association benefit MON 7/17 @NYCComedyCellar htt… +06/19/2017,Comedians,@attell,See ya this weekend Annapolis @RamsHeadOnStage it's gonna be a hot one! https://t.co/LZOWfSRdQW +06/18/2017,Comedians,@attell,Me and the comics had a great one @HeliumComedySTL !!!  I love them St. Louis crowds.  Xox https://t.co/8UG1r1du3V +06/17/2017,Comedians,@attell,RT @NYCComedyCellar: July 17th @attell and friends at the Village Underground to support the @military_family tkts: https://t.co/9vhhE7U8… +06/15/2017,Comedians,@attell,"RT @justforlaughs: One stage might not be enough for these two... +@realjeffreyross and @attell: Bumping Mics July 26-28! +Tix: https://t.co/…" +06/15/2017,Comedians,@attell,RT @HeliumComedySTL: #TBT to an episode of The Up-and-Comer with @Attell at our Philly club a few years back! He'll be here all weekend! ht… +06/15/2017,Comedians,@attell,"@rainebates Hi,  Samantha .. I  really like your drawing..You nailed it, big time.  thanks again." +06/11/2017,Comedians,@attell,.@ComedyWorks Rocks!! #Denver https://t.co/MTc5nlJJso +06/07/2017,Comedians,@attell,"RT @bertkreischer: NEW PODCAST IS UP!!! + +#237 – @attell , @TomSegura, & ME https://t.co/Jti7hTHQfl" +06/06/2017,Comedians,@attell,Doing a show for @military_family at @NYCComedyCellar on 7/17. Tickets here: https://t.co/0oveM0IpZJ https://t.co/Tf15VCBqvM +06/05/2017,Comedians,@attell,See ya in Denver this weekend @ComedyWorks https://t.co/RkTkVsVWFD https://t.co/jdibhhSB1o +06/02/2017,Comedians,@attell,Happy Bday @amyschumer & @NikkiGlaser !! +06/02/2017,Comedians,@attell,Summer's here and I'm on the road. Check & see if I'm at a club near you. Tickets at https://t.co/vC07ePilDC xoxo https://t.co/j5PdZ9abp1 +05/24/2017,Comedians,@attell,3 Beards!!! Fun hanging with @bertkreischer & do the @bertcast . Check these guys out live.  They're great!!! https://t.co/NiXJbA8EGD +05/19/2017,Comedians,@attell,The llama crushed it! Next stop @Netflix! @funnybrad @CrapshootComedy https://t.co/F2gUZui4LI +05/14/2017,Comedians,@attell,It was a wet rainy nite but the Boston crowds came out in droves. @The_Wilbur is the best. Xox https://t.co/CEO4uWniz2 +05/12/2017,Comedians,@attell,Check Mark N’s 1st hour special tonite.  @marknorm is one of my favorites. He's a killer joke writer & I can’t wait… https://t.co/6N2etVSxcu +05/05/2017,Comedians,@attell,.@funnybrad it's just a few weeks till vegas @CrapshootComedy fest. After the show we are going for steaks !! My treat. +05/04/2017,Comedians,@attell,.@JimGaffigan I am thinking of you & your family and wishing @jeanniegaffigan a speedy recovery. +04/30/2017,Comedians,@attell,@NickLongworth08 Thanks for coming to the show. You and your crew were great!!! +04/28/2017,Comedians,@attell,"RT @StressFactoryCC: Doors are open for @attell's first show of the weekend! Still a few tickets left for tonight's shows, tomorrow is sold…" +04/28/2017,Comedians,@attell,". @Vinnie_Brand & @mikefinoia guys, Its gonna be a hot weekend at the club. I am pumped for the shows - https://t.co/PuusuKprmX" +04/27/2017,Comedians,@attell,"RT @StressFactoryCC: This Weekend - @Vinnie_Brand Thursday & @attell Friday & Saturday. Shows are selling out, so don't wait to get tickets!" +04/27/2017,Comedians,@attell,RT @mikefinoia: NJ! This fri & sat I'm opening for @attell at @StressFactoryCC get tix it's gonna be life changing https://t.co/hqSIwsqGWf +04/23/2017,Comedians,@attell,Amazing shows. I love this town!! @AcmeComedyCo https://t.co/xneBVee1rL +04/23/2017,Comedians,@attell,"RT @mikefinoia: New Jersey friends. Next fri & sat I'm opening for @attell at @StressFactoryCC 4 shows. Get tickets, poop, shower, eat, & c…" +04/21/2017,Comedians,@attell,Go to this - @RoryAlbanese taping his first 1-hr special - check him out live - https://t.co/3GncYlbGzV https://t.co/Uf38z2apdm +04/18/2017,Comedians,@attell,RT @DirJordanBrady: “I am Battle Comic” Documents Stand Up Comedy for Troops & Donates Ticket Sales to NMFA https://t.co/i3bR5I36PK w @geor… +04/11/2017,Comedians,@attell,It was a wild nite at the palace theatre. There is nobody better than Chris. It was an honor to be a part of the sh… https://t.co/f3UEvLpu6s +04/11/2017,Comedians,@attell,RT @chrisrock: Total blackout tour Albany NY. The great Dave Attell just ripped it. https://t.co/JyKZ4eUoSO +04/09/2017,Comedians,@attell,"4 sold out shows!!  Thanks Madison, Mike Stanley, & Nick Hart @ComedyOnState https://t.co/YFklZZcF0p" +04/07/2017,Comedians,@attell,"Another sad loss in the comedy world. Don was a hero of mine. He was fast, loose & never quit. + +https://t.co/OnDpRF9wRF" +04/01/2017,Comedians,@attell,"Great show jay and dave killed it!!   Check em out at @CarolinesonBway saturday & sunday +@bigjayoakerson… https://t.co/iXwGqS3d61" +03/30/2017,Comedians,@attell,.@bigjayoakerson 1st ever Carolines gig !!! https://t.co/DUsf1o08nX +03/27/2017,Comedians,@attell,Congrats @DaveJuskow on your episode of @CrashingHBO ! https://t.co/cx92Zsr1Hm +03/22/2017,Comedians,@attell,"RT @The_Wilbur: Presale: @attell 5/13 - Enter code ""WT22"" to get the best seats before the public! +TIX: https://t.co/9SbDeZsJk0 https://t.c…" +03/19/2017,Comedians,@attell,"The @BorgataAC .  This was great!!!  Two amazing shows!!! Me, @sammorril & @realjeffreyross https://t.co/rUp9iQO4g6" +03/17/2017,Comedians,@attell,"RT @realjeffreyross: I'm probably the first person ever to say ""I'm so excited to be in Bethlehem, PA!"" Big show at @Sands_Bethlehem with…" +03/06/2017,Comedians,@attell,RT @DirJordanBrady: .@artiequitter march 10th please tell your #Detroit fans to see @IAmBattleComic April 5th. Doc on comedy for troops w @… +02/27/2017,Comedians,@attell,What fun club. I had a blast. Thanks again @parlorlive https://t.co/xgwWwncwyd +02/24/2017,Comedians,@attell,It's gonna be a good night... https://t.co/twrTdkSmIo +02/18/2017,Comedians,@attell,"RT @CrashingHBO: He's lost everything but his sense of humor. #CrashingHBO premieres Sunday, Feb. 19 at 10:30pm. https://t.co/KrbiKADLnP" +02/13/2017,Comedians,@attell,Congrats @pattonoswalt on the Grammy win! +02/06/2017,Comedians,@attell,RT @luisjgomez: I'm opening for the great Dave @Attell at Levity Live in W Nyack NY all weekend! Come out! +02/05/2017,Comedians,@attell,The @RussMeneve Birthday Pre-Game! https://t.co/uKiiQFNvxb +01/27/2017,Comedians,@attell,RT @CrapshootComedy: @CrapshootComedy is proud to announce the addition of #DaveAttell to the 2017 lineup #Headliner #Legend https://t.co/J… +01/24/2017,Comedians,@attell,"TONIGHT: tix avail at the door starting at 6:30pm: $40 cash/credit + +https://t.co/XaG6ZmcMPX" +01/23/2017,Comedians,@attell,A rocking time in at @Magoobys. Big thanks to the crowds this weekend https://t.co/P4Hbv7cis6 +01/19/2017,Comedians,@attell,Thanks everybody for all the birthday shoutouts   Xox. https://t.co/HFXbrXpnN1 +01/10/2017,Comedians,@attell,"RT @dcimprov: Friday and Saturday, @ComicMikeV kicks off our Next Wave comedy series. Check him out: https://t.co/mt8xDPAx8T" +01/10/2017,Comedians,@attell,RT @dcimprov: Dave @attell picked @ComicMikeV for our Next Wave series ... and he's here Friday and Saturday! https://t.co/3GFlaC0F50 +01/10/2017,Comedians,@attell,Yessss https://t.co/SeCCU6xjrR +01/02/2017,Comedians,@attell,Happy New Year @kevinbrennan666 and Carrie thanks again for having me on your @mlcpodcast +01/01/2017,Comedians,@attell,"Cellar New Years Shows +#2017 +@nyccomedycellar +#happynewyear https://t.co/HJpnnVa52d" +12/31/2016,Comedians,@attell,One of the best shows of the year.  Big thanks to the staff and fans for coming down to @CarolinesonBway .   Have a… https://t.co/CUqkTTmvmG +12/27/2016,Comedians,@attell,"RT @RiotCast: A brand new @MLCPodcast, Happy Hanukkah with @Attell’ is up now on iTunes, Stitcher & https://t.co/eCA9Zg51F9!" +12/22/2016,Comedians,@attell,RT @DaveJuskow: Good morning everyone. It's an all new classic pcast to last you through the holidays with the great @attell :) +12/22/2016,Comedians,@attell,RT @CarolinesonBway: Dave @Attell headlines the week in between Christmas & New Years. Tickets are going fast! -> https://t.co/DUA3ATzvc5 h… +12/20/2016,Comedians,@attell,"RT @truTV: No more eggnog jokes. +@attell wrote the BEST ONE: + +“Eggnog, who thought that up? 'I wanna get a little drunk, but I also want…" +12/13/2016,Comedians,@attell,RT @jimandsamshow: Thanks to @jameyjasta and @attell for coming in! #JimandSam replay is on NOW! Sirius 206 / XM 103 https://t.co/0foUEQiBrw +12/07/2016,Comedians,@attell,"Happy Birthdays, @bigjayoakerson & @wilsylvince xox" +12/06/2016,Comedians,@attell,"The Grand Master of comedy, #RobertKlein!!! @laughforsight #benefit w/ @judahworldchamp + #gotham #nyc https://t.co/fckaSc9hIH" +12/06/2016,Comedians,@attell,At the @laughforsight #benefit with @JudahWorldChamp tonight. #gotham #nyc https://t.co/rRServ2vMw +12/06/2016,Comedians,@attell,Great night at the @laughforsight #benefit with @jimgaffigan & brian fischler https://t.co/LfGkM9cTTo +11/30/2016,Comedians,@attell,RT @luisjgomez: You wanted @attell. You got him! Tonight @LegionOfSkanks LIVE 9pm @creekandcave! Come hang out! +11/23/2016,Comedians,@attell,.@PaulMecurio Thanks paul. for having me on the show Have a great turkey day buddy +11/19/2016,Comedians,@attell,RT @RealBenBailey: Today's the day!!! NEW STAND-UP SPECIAL short films & new podcasts are all available at https://t.co/zsXrEHtzCq https://… +11/19/2016,Comedians,@attell,"RT @artiequitter: First time I've seen my name up in print for ""Crashing"". On HBO. Worked w Pete Holmes & Judd Apatow! Starts Feb 19! https…" +11/11/2016,Comedians,@attell,"RT @ComedyCastle: It's Friday and we are ready for the weekend with @attell, @nicoleaimee & Steve Sabo. 🎟: https://t.co/1eC1YsxVCU https://…" +11/10/2016,Comedians,@attell,RT @nicoleaimee: HEADS UP DETROIT! Doing 5 shows with @attell this weekend at @comedycastle! Come see us tell… https://t.co/JJ07qxmbgM +11/07/2016,Comedians,@attell,.@ChicagoImprov we did it!! https://t.co/3yYQji3TgX +11/03/2016,Comedians,@attell,Me and the guys at last night's Hedberg Vinyl Release show @RealGilbert @artiequitter https://t.co/R9nMs8t42H +11/02/2016,Comedians,@attell,The vinyl box set of the greatest of the great... https://t.co/Rvh3aH96aD https://t.co/UaWW5Rf81A +11/02/2016,Comedians,@attell,RT @ChristineMEvans: Had such a great time tonight at the live @TheBonfireSXM for @nycomedyfest w/ @bigjayoakerson @DanSoder & @attell!! #C… +10/30/2016,Comedians,@attell,Me and the comics at @Hilarities #Cleveland rocks !! https://t.co/nLufBUJcPO +10/29/2016,Comedians,@attell,Fan art from Mike @ the @Hilarities show tonite. Thanks  Mike!!  Super cool. Love it!! https://t.co/TONwFC28hJ +10/22/2016,Comedians,@attell,"Kevin Meaney was a classy guy on & off stage. One of my favorite bits, ""We're Big Pants People"" is timeless. https://t.co/ntwHGIysKT RIP" +10/21/2016,Comedians,@attell,Happy birthday @DanNaturman ! +10/15/2016,Comedians,@attell,All star show Tonite at the sun arena I was just glad to be a part of it.   Happy 20th anniversary @MoheganSun!!… https://t.co/tv2gEmfERD +10/14/2016,Comedians,@attell,RT @artiequitter: @attell thx Dave! I love this picture! Signed your favorite Ghostbuster Melissa Mcarthy! +10/13/2016,Comedians,@attell,What a meal!! What a nite!!  Happy birthday @artiequitter Xox https://t.co/bDPitAoHcu +10/11/2016,Comedians,@attell,Happy Birthday Artie L You made it ! Xox @artiequitter +10/09/2016,Comedians,@attell,Big thanks to the crowds and staff at @zaniesnashville The other comics on the show - @maryjayberger… https://t.co/8h6fX4SLIp +10/03/2016,Comedians,@attell,See yah this weekend @zaniesnashville https://t.co/LKeYPYACZN +09/18/2016,Comedians,@attell,RT @TimJDillon: Great night @dcimprov with @attell and @matty_litwack #comedy https://t.co/e7Yw7jO6Ux +09/14/2016,Comedians,@attell,RT @kevinbrennan666: Also special thanks to @robertkelly @RobSprance @DanSoder @ComicMikeV @attell @AnthonyCumia for all doing great @mlcpo… +07/02/2018,Comedians,@ElayneBoosler,@DAvallone Hahahahahahah. +07/02/2018,Comedians,@ElayneBoosler,"@johnpavlovitz I know there is pain there, but I also know you know you are doing the right thing." +07/02/2018,Comedians,@ElayneBoosler,RT @DearAuntCrabby: Exactly! https://t.co/EJu3splKFl +07/02/2018,Comedians,@ElayneBoosler,@JohnEdwardBake1 :( +07/02/2018,Comedians,@ElayneBoosler,@HeidiEly @BillSiddons I think the hat leaks. +07/02/2018,Comedians,@ElayneBoosler,@johnkensil @SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets… https://t.co/zOlWYsQOtf +07/02/2018,Comedians,@ElayneBoosler,@geoff9cow @Wonkette @commiegirl1 @DoktorZoom @EvanHurst @RobynElyse @DominicGwinn @5DollarFeminist @KillerMartinis… https://t.co/cPZWca0gZm +07/02/2018,Comedians,@ElayneBoosler,@ComedyMontreal Hello handsome little fella! #tailsofjoy https://t.co/YNSa5T1RMC +07/02/2018,Comedians,@ElayneBoosler,@Ellisonx And to you. Thank you. +07/02/2018,Comedians,@ElayneBoosler,"@CyrusMMcQueen You can, but it's like how your dog looks when he knows you have two cookies and you're only showing him one..." +07/02/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Yes! +07/02/2018,Comedians,@ElayneBoosler,"@stutteringjohnm @MichaelAvenatti Count on me for bail. You have done the country a great service, showing there is… https://t.co/tLdTRQ2itb" +07/02/2018,Comedians,@ElayneBoosler,"@Demandor @BillSiddons Aw, thanks." +07/02/2018,Comedians,@ElayneBoosler,"@HeidiEly @BillSiddons Of course! Ya gotta have the chin strap! and there's a way you have to break it in, in Canad… https://t.co/B3C42rX0FZ" +07/01/2018,Comedians,@ElayneBoosler,"RT @essenviews: Staff Of Capital Gazette Just Issued a Stunning Response To Trump: “We won’t forget being called an enemy of the people,”…" +07/01/2018,Comedians,@ElayneBoosler,@SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/gXq0uIvHL8 +07/01/2018,Comedians,@ElayneBoosler,@HeidiEly @TheWileyMiller Awwww.... +07/01/2018,Comedians,@ElayneBoosler,@SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/byaArSKFtM +07/01/2018,Comedians,@ElayneBoosler,@elbycloud @TheWileyMiller And why should you? +07/01/2018,Comedians,@ElayneBoosler,@TheAllisonJames I will. Thank you so much for having the great idea! +07/01/2018,Comedians,@ElayneBoosler,"@davidpom2000 @BillSiddons Brilliant lol. Excellent. Bill kept his citizenship for ""sh*t hitting the fan day"", whic… https://t.co/oW3xOrGDBk" +07/01/2018,Comedians,@ElayneBoosler,@SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/10i8Gst05S +07/01/2018,Comedians,@ElayneBoosler,"@HeidiEly @BillSiddons ANd I also bought a nor'easter hat, the yellow plastic. Should be good for winter in LA lol." +07/01/2018,Comedians,@ElayneBoosler,@geoff9cow @JohnnyArgent Done my friend. +07/01/2018,Comedians,@ElayneBoosler,@mcm04103 @BillinPortland Hahahaha. That is wonderful. +07/01/2018,Comedians,@ElayneBoosler,@stutteringjohnm @MichaelAvenatti They should give you a medal for exposing the flaws in our National Security. +07/01/2018,Comedians,@ElayneBoosler,Happy #CanadaDay. My Saskatoon born hubby and I recently returned from your land of very friendly people and amazin… https://t.co/qZMHaR5DN7 +07/01/2018,Comedians,@ElayneBoosler,@Shaler1967 @WayneKlineHere Awwww youuuuuu.... xoxoxoox +07/01/2018,Comedians,@ElayneBoosler,@DogmaKinja @gsdogrecovery I am glad you got past the bad stuff to get to the good stuff. Thank you again and Paws crossed! +07/01/2018,Comedians,@ElayneBoosler,@RedpineFour I know. It's on the short list. +07/01/2018,Comedians,@ElayneBoosler,@Snarkaroni Awesome! +07/01/2018,Comedians,@ElayneBoosler,@maraleia @AngryBlackLady Awesome. I could get there! +07/01/2018,Comedians,@ElayneBoosler,@RedpineFour Well I lobe them. +07/01/2018,Comedians,@ElayneBoosler,Calvin is a beauty!! And your wish... Here are Tails of Joy's signature cat totes! Art by @TheWileyMiller. They hol… https://t.co/1m4cZbnc2d +07/01/2018,Comedians,@ElayneBoosler,"@gregpliska I totally understand. +I just ate two Peppermint Patties. Can you find my car?" +07/01/2018,Comedians,@ElayneBoosler,@OWNERSOFTHEMETS @SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/MS2xPFRQi1 +07/01/2018,Comedians,@ElayneBoosler,@DogmaKinja @gsdogrecovery Thank you for the great resource. I will forward it along. +07/01/2018,Comedians,@ElayneBoosler,@friendlysmilepi @WendyLiebman Happy Belated Birthday Phil! I hope it was a great day full of all the good stuff. Thanks for the cake! oxxo +07/01/2018,Comedians,@ElayneBoosler,"@lindsaygoldwert @RelktntHero I know, Meep! I love it." +07/01/2018,Comedians,@ElayneBoosler,@greatfailures @WayneKlineHere Yet you were such a cute couple. +07/01/2018,Comedians,@ElayneBoosler,"I just bought mine. What a perfect idea; benefits charity helping immigrants, and you get to wear your heart on you… https://t.co/rXHRklzmI4" +07/01/2018,Comedians,@ElayneBoosler,@RelktntHero @lindsaygoldwert Be still my heart. +07/01/2018,Comedians,@ElayneBoosler,@TheLadyAye Ohmygod are you ok? +07/01/2018,Comedians,@ElayneBoosler,@WayneKlineHere That's why I turned down The Descendants. I just couldn't spend all that time in a room with George Clooney again. +07/01/2018,Comedians,@ElayneBoosler,"Our friend @TheWileyMiller outdid himself today. We needed this love and joy in our lives this week, didn't we? A g… https://t.co/g8HqWxGHal" +07/01/2018,Comedians,@ElayneBoosler,"And it's the best religion there is! Pure love, kindness to all, and animals are family. TY Wiley, for being the Pa… https://t.co/cMAhdsFUuc" +07/01/2018,Comedians,@ElayneBoosler,"Lost Dog named Belgium. Bev Hills, LA area. Chipped, tags, family is devastated. Any sightings at all pls let me kn… https://t.co/vhT6YhNmMM" +07/01/2018,Comedians,@ElayneBoosler,"RT @votevets: US Marine Corps veteran Hazel Diaz put on the uniform and served America, and says she won’t allow Donald Trump to put someon…" +06/30/2018,Comedians,@ElayneBoosler,@EddieSarfaty You give me hope. xoxooxxoxoxo +06/30/2018,Comedians,@ElayneBoosler,@AngryBlackLady Spoilers!!!! +06/30/2018,Comedians,@ElayneBoosler,"Happy #Caturday. My nationwide Tails of Joy is funding the ""Bedford Cares TNR"" program in Lynchburg, VA, helping th… https://t.co/fq46NPtIJN" +06/30/2018,Comedians,@ElayneBoosler,@maraleia @AngryBlackLady Worth waiting for. +06/30/2018,Comedians,@ElayneBoosler,"@KoHoSo Yes, thank you so much! We're Tails of Joy in Studio City." +06/30/2018,Comedians,@ElayneBoosler,"@BluToonz Of course. You're not shopping, you're rescuing lol. https://t.co/jnWGcI17vr for Tails of Joy, Studio City. oxox" +06/30/2018,Comedians,@ElayneBoosler,"@Vondulce Well, some of us continue on, but thank you for the very lovely words. Have a beautiful weekend. oxox" +06/30/2018,Comedians,@ElayneBoosler,@gregpliska I was so young. But i remember us laughing a lot. He was a nice friend in those years. I collected unic… https://t.co/a1oQGHlsfF +06/30/2018,Comedians,@ElayneBoosler,@gregpliska Agreed. But he certainly left so much beauty and wonder behind. +06/30/2018,Comedians,@ElayneBoosler,"@bettinamhornsby @stutteringjohnm Ironically, this might be the only prank call where the receiver actually might h… https://t.co/3AAe5ZweEs" +06/30/2018,Comedians,@ElayneBoosler,"RT @billprady: Remember when everyone was upset that Hillary’s server was a security risk? + +Stuttering John just got through to the preside…" +06/30/2018,Comedians,@ElayneBoosler,Je suis Charlie. :( +06/30/2018,Comedians,@ElayneBoosler,@D0GSAREFAMILY Awesome! +06/30/2018,Comedians,@ElayneBoosler,@KennethWReid Yayyyy!!!!! +06/30/2018,Comedians,@ElayneBoosler,"@AngryBlackLady Repeat after me: Jodie Whittaker, Jodie Whittaker, Jodie Whittaker..." +06/29/2018,Comedians,@ElayneBoosler,Thank you so much! Every donation helps. Choose #tailsofjoy at https://t.co/jnWGcI17vr and they donate to us when y… https://t.co/DaZhFlQ0va +06/29/2018,Comedians,@ElayneBoosler,@AngryBlackLady Can't wait. They don't say when she's coming. +06/29/2018,Comedians,@ElayneBoosler,@Scone_Mason We did not shtup!!! We had some fun dates that didn't go further. :) +06/28/2018,Comedians,@ElayneBoosler,"When I was a young comic new to LA, I had a few dates w/ Harlan Ellison. Never went beyond friendship, & what a wor… https://t.co/ViHfu1nxMd" +06/28/2018,Comedians,@ElayneBoosler,@AngryBlackLady Bring on Jodie Whittaker! +06/28/2018,Comedians,@ElayneBoosler,"“I can’t wait for the vigilante squads to start gunning journalists down on sight."" -Muslim American now in jail fo… https://t.co/8V2cUdk0Ei" +06/28/2018,Comedians,@ElayneBoosler,@D0GSAREFAMILY Enjoy your wonderful new family!!!!!! +06/27/2018,Comedians,@ElayneBoosler,@wilkravitz @AARP We've seen this a lot. Dogs can get a bit of dementia when they're old. So sorry.. +06/27/2018,Comedians,@ElayneBoosler,"@wilkravitz @AARP My cousin wrote them down, but nothing tastes the way it did when she made it." +06/27/2018,Comedians,@ElayneBoosler,"RT @TopRopeTravis: When Joe Biden was refused service by a bakery in 2012, Republicans absolutely loved it. As a matter of fact, Paul Ryan,…" +06/26/2018,Comedians,@ElayneBoosler,@Camonghne Congratulations!! +06/26/2018,Comedians,@ElayneBoosler,@BettyBuckley Watched @PreacherAMC last nite. YOU ARE FANTASTICALLY AMAZINGLY SPELLBINDING!!!!!!! Loved it from top… https://t.co/PJPHzoDnM3 +06/26/2018,Comedians,@ElayneBoosler,@Shaddow13 @AARP I'm so glad you had a wonderful mother. oxxo +06/26/2018,Comedians,@ElayneBoosler,@BoutinJoan @AARP Thank you so much Joan. Food always saves the day. +06/26/2018,Comedians,@ElayneBoosler,@wilkravitz @AARP Sounds like a plan. Thank you for the kind words. +06/26/2018,Comedians,@ElayneBoosler,Sanity before civility. Then we can talk. +06/26/2018,Comedians,@ElayneBoosler,ICYMI A sweet story. https://t.co/68wgRea1qR https://t.co/QvR3VgD6uL +06/25/2018,Comedians,@ElayneBoosler,"RT @megan19: The sheer balls of the GOP to cry about ""civility"" when they openly support pedophiles, criminals and nazis is enraging, hypoc…" +06/25/2018,Comedians,@ElayneBoosler,@NicolleHunsberg @RedHenLex @PressSec LOLOL! +06/25/2018,Comedians,@ElayneBoosler,"@JohnEdwardBake1 @waitwait Oh, you are so kind. Thank you!" +06/25/2018,Comedians,@ElayneBoosler,@TGrant622 @DannyZuker i can live with that! +06/25/2018,Comedians,@ElayneBoosler,@KouklaKim Thanks Kimberly. So sad. +06/25/2018,Comedians,@ElayneBoosler,A personal short story for #DisruptDementia #MondayMotivation @AARP https://t.co/68wgRea1qR https://t.co/JNn6INMkTu +06/25/2018,Comedians,@ElayneBoosler,"Dear Sir, thank you for your service. May you rest in peace and may your memory be a blessing to your fellow firefi… https://t.co/ZKF683BjqG" +06/24/2018,Comedians,@ElayneBoosler,"It's fine. After @PressSec Sanders and her family left the @RedHenLex, they stopped off at Hobby Lobby, then went a… https://t.co/osN7IQEHAe" +06/24/2018,Comedians,@ElayneBoosler,"RT @BettyBuckley: “Preacher” is coming back! Tweet @PreacherAMC + #PreacherLore + 😜👊👍Season 3 starts tonight at 9 PM Central, 10 PM Eastern…" +06/24/2018,Comedians,@ElayneBoosler,@noradunn @washingtonpost @jamielbridgers @mogaffney @LALGBTCenter @maddow Are they kidding? He's busy letting the… https://t.co/TCw1SCQUEN +06/24/2018,Comedians,@ElayneBoosler,@BettyBuckley @RedHenLex @PressSec Miss you! oxxoxo +06/24/2018,Comedians,@ElayneBoosler,Hey right- wingers -freaking -out about the @RedHenLex politely asking @PressSec Sanders to leave. You can all calm… https://t.co/5iF0egznnF +06/24/2018,Comedians,@ElayneBoosler,"@alphawhiskey77 @RedHenLex @PressSec There is a space for a note to the restaurant, put it in there. Where it said… https://t.co/SeXh3rS5x8" +06/24/2018,Comedians,@ElayneBoosler,@Communic8n0w @DannyZuker Broadway in the 40's. +06/24/2018,Comedians,@ElayneBoosler,"@Communic8n0w @DannyZuker An orange ""shake""." +06/24/2018,Comedians,@ElayneBoosler,@TGrant622 @DannyZuker Miami is NY. +06/23/2018,Comedians,@ElayneBoosler,"Last one I promise, for New Yorkers: Orange Judas. + +#Restaurants4Sarah @DannyZuker https://t.co/a1gJxEdEsq" +06/23/2018,Comedians,@ElayneBoosler,"@renegadecop @RedHenLex @HoarseWisperer Ahh, well I saw your tweet. And now three of us bought gift certificates an… https://t.co/Q4uEHdZi4c" +06/23/2018,Comedians,@ElayneBoosler,@BluthX @DannyZuker Yes! +06/23/2018,Comedians,@ElayneBoosler,@DannyZuker No YOU! +06/23/2018,Comedians,@ElayneBoosler,RT @johnlundin: #SarahSanders 'Red Hen' https://t.co/lwx7MYBNF3 +06/23/2018,Comedians,@ElayneBoosler,@TimfromDa70s Do you know how much we drink? What are you telling us now for? +06/23/2018,Comedians,@ElayneBoosler,"RT @thistallawkgirl: How dare these parents try to bring their children to America in search of a better life. Who do they think they are,…" +06/23/2018,Comedians,@ElayneBoosler,Indeed her actions do. They say she is a true patriot @RedHenLex. That she believes so strongly in America hearing… https://t.co/P3E1ahYO5t +06/23/2018,Comedians,@ElayneBoosler,I just bought a gift certificate 2 @RedHenLex 2 support their patriotism. Donated it 2 them 4 the needy. They stood… https://t.co/6tjbUtMkfS +06/23/2018,Comedians,@ElayneBoosler,"Omarosa Steakhouse. Fact Checkers. White Supremacist Rally's. + +#Restaurants4Sarah @DannyZuker https://t.co/hid5Nl1kvi" +06/23/2018,Comedians,@ElayneBoosler,"KKKFC. +#Restaurants4Sarah @DannyZuker" +06/23/2018,Comedians,@ElayneBoosler,"Deny's. Menu: Build Your Own Grand Sham. + +#Restaurants4Sarah @DannyZuker https://t.co/Dkhe6s2hhY" +06/23/2018,Comedians,@ElayneBoosler,Great idea. I am buying a gift card now too. Donate it to a needy person who's hungry. Thanks @RedHenLex for being… https://t.co/YxrVyvoQQ1 +06/22/2018,Comedians,@ElayneBoosler,"RT @bslxo_: Instead of reposting that poor boy being abused and dying on the street, post the pictures of the ones who did this to him. #Ju…" +06/22/2018,Comedians,@ElayneBoosler,Study these photos. https://t.co/YbcbF1pyOv +06/22/2018,Comedians,@ElayneBoosler,"@DannyDeraney I think it means he loves only one person, and will kill everybody else." +06/22/2018,Comedians,@ElayneBoosler,"@Scareythoughts2 She doesn't ""have to"". She made a choice." +06/22/2018,Comedians,@ElayneBoosler,"Happy #TakeYourDogToWorkDay If u didn't have a doggie 2 take 2 work 2day, how bout beautiful Luna, a 2 yr old Cane… https://t.co/MNhwRWve8G" +06/22/2018,Comedians,@ElayneBoosler,@noradunn @mogaffney @janefmorris @UnCabaret @robreiner LOL. +06/22/2018,Comedians,@ElayneBoosler,@DrCherylllP Yay!!! +06/22/2018,Comedians,@ElayneBoosler,@davidpom2000 Serrated. +06/22/2018,Comedians,@ElayneBoosler,"You know, if The Third Lady really wanted to eliminate cyber bullying, she could take out 90% of it with a steak knife. #FridayFeeling" +06/22/2018,Comedians,@ElayneBoosler,@BettyBowers Bingo. +06/22/2018,Comedians,@ElayneBoosler,@Karoli @CNN Every time. +06/22/2018,Comedians,@ElayneBoosler,"@doughtywench Ah come on, nobody knits like you." +06/22/2018,Comedians,@ElayneBoosler,"@TheWileyMiller Hahaha. The happiest puppy in the world, and the cutest, with the cutest puppy bark. Thank you so m… https://t.co/qAfamRjDhw" +06/21/2018,Comedians,@ElayneBoosler,@valkyrie64 Thank you for the heads up. I will. +06/21/2018,Comedians,@ElayneBoosler,"Honey, you don't need to write it on your jacket. It lives on your face. #MelaniaTrump" +06/21/2018,Comedians,@ElayneBoosler,RT @AngryBlackLady: This by @Sonja_Drimmer is so vitally important. Do not fall for the administration’s attempts to cast Melania as the wo… +06/21/2018,Comedians,@ElayneBoosler,"RT @SantaInc: So now First Lady Melania Trump is going to the US/Mexico border to meet with immigrant children. + +Nice photo op. + +Anyways, h…" +06/21/2018,Comedians,@ElayneBoosler,Happy #NationalSelfieDay https://t.co/Fg2lGt1naI +06/20/2018,Comedians,@ElayneBoosler,@ComedyMontreal Labrador and Newfie would have made me 2/3 Canadian. +06/20/2018,Comedians,@ElayneBoosler,@ibookery I have to open it up first. +06/20/2018,Comedians,@ElayneBoosler,"@HeidiEly But Boxers are the comedians of the dog world, and they are so AWESOME and silly. I love Rotties too, the… https://t.co/A5SjGaJ0Mp" +06/20/2018,Comedians,@ElayneBoosler,@TheWileyMiller Are you kidding? Their entire focus is food. +06/20/2018,Comedians,@ElayneBoosler,@KennethWReid How great. She was an amazing sidekick and fantastic in Penny Dreadful. You must be a master as they… https://t.co/lqZv1r5A3W +06/20/2018,Comedians,@ElayneBoosler,"@HeidiEly I thought there would be some Boxer in there as well, a bit disappointed." +06/20/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Wellll.... that was very kind. Thanks. +06/20/2018,Comedians,@ElayneBoosler,@Evil_Ashe @DannyDeraney It is. It's always pivotal times in history mixed with sci fi. A perfect blend. And anti-v… https://t.co/WFEGUcBW7G +06/20/2018,Comedians,@ElayneBoosler,@LaPazzaFugata @Evil_Ashe @DannyDeraney True. I have the boxed set of the early years. +06/20/2018,Comedians,@ElayneBoosler,"@KennethWReid How excellent. Tennant and Smith were my favorite doctors, so jackpot. And Smith was incredible in Th… https://t.co/DHaOrKuRrT" +06/20/2018,Comedians,@ElayneBoosler,@kcory @FunctionalNerd Thanks! +06/20/2018,Comedians,@ElayneBoosler,@agilewavedoug Hahahaha. +06/20/2018,Comedians,@ElayneBoosler,"Decent human beings are so against separating children from their parents, we're going to put Eric, Ivanka and Don.… https://t.co/TRAD0mrxMd" +06/20/2018,Comedians,@ElayneBoosler,"I found out I'm Hungarian, Rumanian, and Labrador Retriever. #23andme" +06/20/2018,Comedians,@ElayneBoosler,"I didn't know we had so many Whovians in the house. In that case, not to make anybody jealous, but this is what I b… https://t.co/Ryq1wzHZoV" +06/20/2018,Comedians,@ElayneBoosler,@KennethWReid Oh my goodness how was THAT???!!!!!!!! Did you love it? +06/20/2018,Comedians,@ElayneBoosler,@Evil_Ashe @DannyDeraney It's the best. You have to. +06/20/2018,Comedians,@ElayneBoosler,@thesavageballet @kathygriffin Everybody does. No worries. :) +06/20/2018,Comedians,@ElayneBoosler,@literateartist @LenHochberg @LyleMSpencer It was. +06/20/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Awwww **blushy blushy blush*** +06/20/2018,Comedians,@ElayneBoosler,@newcybersol xoxoxoxoox +06/20/2018,Comedians,@ElayneBoosler,@MsDarcyFarrow @HollandTaylor @BettyBuckley Mazel tov! +06/19/2018,Comedians,@ElayneBoosler,@TruthsMinister Thanks. I loved Matt Smith. Didn't care for Capaldi though. And loved ALL the women. +06/19/2018,Comedians,@ElayneBoosler,@DannyDeraney No. Sadly. +06/19/2018,Comedians,@ElayneBoosler,@Jar_O_Cats Would be good for rats and roaches. +06/19/2018,Comedians,@ElayneBoosler,@Lolly_Jean I have the teapot. No sound though. +06/19/2018,Comedians,@ElayneBoosler,"How old am I, right? The only souvenirs I brought back from Canada, and I was so excited. #DrWho #Ood… https://t.co/E14HHakldR" +06/19/2018,Comedians,@ElayneBoosler,@TheLadyAye It comes naturally to you because you are wonderful. +06/18/2018,Comedians,@ElayneBoosler,@DAvallone Well of course the republicans support separation of parents and kids. Look at their kids! +06/18/2018,Comedians,@ElayneBoosler,@krassenstein Hello beautiful sweet boy. +06/18/2018,Comedians,@ElayneBoosler,"@BOCArnie @BevVincent We see many ""Restrooms Are For Customers Only"" signs all across America." +06/18/2018,Comedians,@ElayneBoosler,"@bjb1124 Plus, they wash and wax your car before they tow it." +06/18/2018,Comedians,@ElayneBoosler,@MsDarcyFarrow We all have. The men's room is usually open. +06/17/2018,Comedians,@ElayneBoosler,"Another way in which Canada treats people better than America does. Snapped this last month on our trip, because it… https://t.co/hx5n0VSvAz" +06/17/2018,Comedians,@ElayneBoosler,@Jerry_at_Rick @nerdist @alisonhaislip @mlthaller @altonbrown @gordlittle Hahahahaha. Very bad Tardis. +06/17/2018,Comedians,@ElayneBoosler,@billscheft @NYTimesWordplay Thanks! +06/17/2018,Comedians,@ElayneBoosler,"@DebAmlen @billscheft @NYTimesWordplay Ok Bill, then we'll marry you." +06/16/2018,Comedians,@ElayneBoosler,"@noradunn @nytimes @nanhunt @jamielbridgers @mogaffney Oh god, they're turning into comedians." +06/15/2018,Comedians,@ElayneBoosler,Locking them up is too good for them. Lock them down. #FridayFeeling +06/15/2018,Comedians,@ElayneBoosler,@iammoshow @OregonHumane Love! +06/15/2018,Comedians,@ElayneBoosler,Support the Blue Wave. #FF. https://t.co/kkS1ranXfh +06/15/2018,Comedians,@ElayneBoosler,@Stonekettle May your memories of your courageous family keep you warm and proud. +06/15/2018,Comedians,@ElayneBoosler,"@thistallawkgirl Oh no, I'm so sorry. Did you go to that cake place?" +06/15/2018,Comedians,@ElayneBoosler,"@AngryBlackLady It's got the perfect ""Heil Hitler"" rhythm to it." +06/15/2018,Comedians,@ElayneBoosler,@greatfailures Beautiful. Happy Father's Day Steve. +06/15/2018,Comedians,@ElayneBoosler,@recovlitigator @HillaryClinton No doubt! +06/15/2018,Comedians,@ElayneBoosler,@HillaryClinton No more tweets. We have a winner. +06/15/2018,Comedians,@ElayneBoosler,"Quilts-a-Palooza! Pillow-Cases-Palooza! Our sewing angel Judy Isaacs outdid herself with these summer weight, handm… https://t.co/uJ9mcrD2jN" +06/15/2018,Comedians,@ElayneBoosler,@HillaryClinton i love you. Marry me. +06/14/2018,Comedians,@ElayneBoosler,@skjdrama Thank you! Be safe. +06/14/2018,Comedians,@ElayneBoosler,@atrupar @JoeWatchesTV Damage. More damage. +06/14/2018,Comedians,@ElayneBoosler,"RT @RepJoeKennedy: In @realDonaldTrump’s eyes, brutal dictators get the benefit of the doubt but parents & kids fleeing unimaginable violen…" +06/14/2018,Comedians,@ElayneBoosler,@BoringEnormous This made me laugh out loud. +06/14/2018,Comedians,@ElayneBoosler,@Globetoppers That's how I know my dogs will stay by me. As long as i fall down around 5pm. +06/12/2018,Comedians,@ElayneBoosler,"RT @JudyTenuta: Throwback Thursday, June 2014: ⁦@ElayneBoosler⁩ & ⁦@JudyTenuta⁩ celebrate the Summer with Princess Cake! #itcouldhappen #yu…" +06/12/2018,Comedians,@ElayneBoosler,@paddydee56 @QuiltingMuriel Well put and so true. oxxo +06/12/2018,Comedians,@ElayneBoosler,@noradunn @janefmorris @mogaffney @nanhunt @jamielbridgers LOL. +06/12/2018,Comedians,@ElayneBoosler,@newcybersol @QuiltingMuriel Thank you so much. She misses her as do we all. +06/12/2018,Comedians,@ElayneBoosler,Haven't seen @QuiltingMuriel's little Tiger for over 2 yrs. Muriel's wonderful daughter Marcia is in NYC visiting a… https://t.co/GZchL8VI9u +06/11/2018,Comedians,@ElayneBoosler,@KingRhiNOLa Oh yes. Such a deft touch. +06/11/2018,Comedians,@ElayneBoosler,@djdi Montawk Lawng Giland. +06/11/2018,Comedians,@ElayneBoosler,"@aerwaves_ If you don't take a minute to breathe every few years, you can't possibly keep on fighting. Liking a thi… https://t.co/NdyjuVcWgY" +06/11/2018,Comedians,@ElayneBoosler,@NYSF89 Antique carved wooden angels. +06/11/2018,Comedians,@ElayneBoosler,@BradTassell No. We tiptoed.. +06/11/2018,Comedians,@ElayneBoosler,"@Rickagain They re-created the original Stanford White house, down to the flaws and cracks in the floors. Truly amazing." +06/11/2018,Comedians,@ElayneBoosler,@davidpom2000 Did they make Chex Mix? +06/11/2018,Comedians,@ElayneBoosler,"Btw, just saw Deadpool 2 for a second time, so if you need a break from news stress and want to laugh for 90 minute… https://t.co/0WtIm2ylen" +06/11/2018,Comedians,@ElayneBoosler,Thanks amigo! Today is the last day for Guide Dogs for the Blind auction so check them out. And check us out too!… https://t.co/17kq3E7rhP +06/11/2018,Comedians,@ElayneBoosler,"We donated totes, earrings to Guide Dogs auction (https://t.co/x6WHFozpb8). Bids r already 3x higher than what we s… https://t.co/H02t1EddLQ" +06/11/2018,Comedians,@ElayneBoosler,A few more pix of Cavett's house. #MondayMotivation https://t.co/WqHpVuzFCH +06/11/2018,Comedians,@ElayneBoosler,Thought u might enjoy some pix of Dick Cavett's beautiful Montauk estate. #MondayMotivation https://t.co/62KrUxQZrL +06/11/2018,Comedians,@ElayneBoosler,Following IHOP's lead: FlapJacks in the Box. #IHOP #IHOB +06/11/2018,Comedians,@ElayneBoosler,@RobinShorr @villepique @LosFelizPodcast @morgan_murphy .@morgan_murphy and I are on for lunch when I get back to L… https://t.co/ONdlW7ltmB +06/29/2018,Comedians,@Ornyadams,@stevebyrnelive Congrats! +06/28/2018,Comedians,@Ornyadams,Just want to state for the record @HowardStern I love your show and so I don’t feel bad if I say it again — I’ve be… https://t.co/wBAJujIJ05 +06/27/2018,Comedians,@Ornyadams,RT @TheLaughFactory: #comedy #TheLaughFactory #Hollywood #Wednesday @JayDavisComedy @Ornyadams @donnellrawlings @DaneCook @TeamIanBagg… +06/27/2018,Comedians,@Ornyadams,@Sherm100 He can say it to my face! +06/27/2018,Comedians,@Ornyadams,I hate chase scenes in books. I hate chase scenes in movies. They are such overused over bloated unrealistic cliche… https://t.co/3paiGV0ClI +06/27/2018,Comedians,@Ornyadams,Hey @duranduran your version of Bowie's Starman just changed my entire day. Lifetime guest passes to any of my show… https://t.co/dn3ju5LGJf +06/26/2018,Comedians,@Ornyadams,I ate an impossible burger and it tasted very possible to me. +06/26/2018,Comedians,@Ornyadams,"I'm working on making cows taste more like plants. We will win this battle! And then I will have the ""Impossible salad"" made of cow." +06/26/2018,Comedians,@Ornyadams,I keep seeing restaurants serving a plant based “Impossible burger.” Is there anything more annoying than cocky veg… https://t.co/5hivpPOlCA +06/24/2018,Comedians,@Ornyadams,Anybody want to nominate this for a “Shot on iPhone X” billboard? https://t.co/TTmg3BKF3A +06/24/2018,Comedians,@Ornyadams,Can somebody please explain what’s going on here? Do I need to break this up? https://t.co/Y2cPLBZLA9 +06/23/2018,Comedians,@Ornyadams,Always enjoy talking with you Ron. Thanks for loving comedy so much. https://t.co/gaMRqQelRl +06/23/2018,Comedians,@Ornyadams,And tonight in LA @HollywoodImprov 8pm show. https://t.co/qWJ6TdqB1B +06/23/2018,Comedians,@Ornyadams,Tonight in LA @TheComedyStore 7pm show. https://t.co/kySWhaNuuY +06/22/2018,Comedians,@Ornyadams,My summer home Montreal! See you in a few weeks @justforlaughs #TheEthnicShow https://t.co/kqEwnKHUCq +06/21/2018,Comedians,@Ornyadams,@BillyTheG33 Great. Did you have a name of the reservation? +06/20/2018,Comedians,@Ornyadams,Tonight in LA @HollywoodImprov https://t.co/qiGr5hXSFa +06/19/2018,Comedians,@Ornyadams,Hey Kevin I appreciate this... thank you. https://t.co/VYQCyUa05N +06/18/2018,Comedians,@Ornyadams,Another dumb street sign. Who approves this stuff? #WhatsWrong https://t.co/okC4OcXc6g +06/18/2018,Comedians,@Ornyadams,Another dumb street sign. Who approves this stuff? https://t.co/uT5MknLLy2 +06/16/2018,Comedians,@Ornyadams,RT @HollywoodImprov: Don’t miss this 🔥🔥🔥 line up TMRW at 10:30! 🎟️🎟️https://t.co/PuJTZbwPtV https://t.co/R6XCaVHIKa +06/16/2018,Comedians,@Ornyadams,RT @TheLaughFactory: #comedy #TheLaughFactory #Hollywood #Saturday @JayDavisComedy @jeremypiven @tomdreesencomic @Face_Law @Ornyadams… +06/16/2018,Comedians,@Ornyadams,RT @TheComedyStore: 7pm Main Room A Surprise Guest with @steveo @iliza @Ornyadams @JuddApatow +more! Use promo code JUNE at checkout for di… +06/16/2018,Comedians,@Ornyadams,And also in LA tonight at 10:30pm @HollywoodImprov. I'll be wearing the same outfit for all LA shows tonight. https://t.co/iNEEQ4i1Fi +06/16/2018,Comedians,@Ornyadams,Tonight in LA I'll be on a 7pm show @TheComedyStore https://t.co/n83ZxsaT71 +06/16/2018,Comedians,@Ornyadams,Tonight in LA I'll be on a show at 7:30pm @TheLaughFactory https://t.co/4Ms3NtLMRM +06/15/2018,Comedians,@Ornyadams,"Why do I think the only people that will visit this are comedians to see if we’re in it? +https://t.co/mFLfh23ixK" +06/15/2018,Comedians,@Ornyadams,This is how I feel at weddings too. Fine dining? I pay more to eat so this doesn’t happen! https://t.co/ZCSqd1HSSw +06/14/2018,Comedians,@Ornyadams,I did a private show for @elavon last night. Heading home tomorrow. Maybe I’m coming to your city soon? Check my to… https://t.co/Xeg87snMj2 +06/14/2018,Comedians,@Ornyadams,If I had a family this is how I’d make them stand at the beach too. This is good parenting. Like we’re filming the… https://t.co/EBSJOY5iQe +06/14/2018,Comedians,@Ornyadams,Found half my Instagram followers here. (Kidding kids. Love you. Now eat your vegetables.) https://t.co/W7GeMTaMdd +06/14/2018,Comedians,@Ornyadams,Quick lesson on sea turtles for all you kids. https://t.co/uZLGhjbfsQ +06/14/2018,Comedians,@Ornyadams,Congrats buddy! https://t.co/B5H8uWs3IP +06/14/2018,Comedians,@Ornyadams,Am the only one who's iPhone thinks they're 12? Every time one of my lame friends texts me LOL it gives me emoji op… https://t.co/c3Wd27IKAe +06/13/2018,Comedians,@Ornyadams,See you tonight @atlantisbahamas rain or shine! https://t.co/m4LpBcxL8D +06/12/2018,Comedians,@Ornyadams,@LoniLove @StandUpLiveHSV I was just there. Great club. Great staff. Christian will take care of you. And there’s a… https://t.co/lq470H2R6L +06/12/2018,Comedians,@Ornyadams,Unless your job involves saving lives do it. Howard Stern used to say people would sit outside work listening to hi… https://t.co/38rWIn4gLU +06/12/2018,Comedians,@Ornyadams,I’ve been on @Spotify for years. I now have three comedy albums up there. Enjoy. Thanks. https://t.co/FkLQhzTYUa +06/12/2018,Comedians,@Ornyadams,RT @alley__jean: can now finally listen to my favorite comedian @Ornyadams thanks spotify. https://t.co/xkWkzCwh9n +06/12/2018,Comedians,@Ornyadams,This makes my day! Of course I’m flying all day so the bar is low. EXPECTATIONS LOWERED! But regardless I know my M… https://t.co/yMjpGVJPAk +06/11/2018,Comedians,@Ornyadams,@imangelalonzo @MTVteenwolf Yeah I think that would be cool! +06/11/2018,Comedians,@Ornyadams,@MaybeAWerewolf Thanks Cat! See you the next time I am @zaniesnashville --- bring more @MTVteenwolf fans. They deserve to NOT breathe too. +06/11/2018,Comedians,@Ornyadams,Well who the hell wears a Hawaiian shirt in Nashville! Only someone that is out to hurt me! Kidding. So glad you we… https://t.co/zNglW3h0jG +06/11/2018,Comedians,@Ornyadams,It was so nice meeting you guys in Nashville. Always fun meeting @MTVteenwolf fans all over the world. https://t.co/7pcaOg1Okc +06/10/2018,Comedians,@Ornyadams,@Uber_Support Done +06/10/2018,Comedians,@Ornyadams,@Uber why is my app stuck on this screen? Have deleted and reloaded app twice https://t.co/8rpcPMYlez +06/09/2018,Comedians,@Ornyadams,Just got my shoes repaired and now they look and sound like every other pair of shoes. Guess I went to the wrong pl… https://t.co/mchbUrWVrL +06/09/2018,Comedians,@Ornyadams,"Yes, after every show people line up and give me gifts like I am the leader of a communist regime. I present my han… https://t.co/Nvc3gBiFCe" +06/08/2018,Comedians,@Ornyadams,Thanks enjoyed talking with you today.... #Nashville https://t.co/2q6TPvCYBu +06/08/2018,Comedians,@Ornyadams,Fantastic! #Nashville https://t.co/EUn8rC1kUy +06/08/2018,Comedians,@Ornyadams,@green_fury77 @HarlandWilliams will come to your home and sing lullabies to your kids. +06/08/2018,Comedians,@Ornyadams,The best part about La-Z-boy is even the spelling is La-Z. +06/08/2018,Comedians,@Ornyadams,Any takers? https://t.co/OZXSF3oY1Z +06/08/2018,Comedians,@Ornyadams,I’m not too sure if I am going to make dvds on this one. Maybe I should just make thumb drives for the few people t… https://t.co/PXOjvjY5TF +06/08/2018,Comedians,@Ornyadams,@kyphur I’ll be back @StandUpLiveHSV and we’ll do it again. Thanks for the kind tweet! +06/08/2018,Comedians,@Ornyadams,@raerae_9500 @StandUpLiveHSV Thanks for the dirt shirt! Love it!!! See you the n ft one I’m in Hunty +06/08/2018,Comedians,@Ornyadams,You guys deserved 10. See you the next time I’m in Huntsville. @StandUpLiveHSV https://t.co/ap614LLmJ8 +06/08/2018,Comedians,@Ornyadams,@jfischervo Thanks Jerome. That was a fun show. We’ll do it again at @StandUpLiveHSV !!! +06/07/2018,Comedians,@Ornyadams,Great minds think alike— that’s what I think when I repeat myself. +06/07/2018,Comedians,@Ornyadams,Guns disguised as walking canes are the only illegal firearms in Alabama. Walker rocket launchers are permissible in all counties. +06/07/2018,Comedians,@Ornyadams,It’s 95 degrees in Huntsville. I don’t know what that is in kilometers but it’s hot. +06/07/2018,Comedians,@Ornyadams,@HaleyBakerWAFF @StandUpLiveHSV Thanks for the interview Haley! +06/07/2018,Comedians,@Ornyadams,Fantastic. Wish I saw more tweets like this. https://t.co/wGUf30Gxr3 +06/06/2018,Comedians,@Ornyadams,This plane takes off at 7:50pm from Atlanta and lands in Huntsville at 7:45pm. What should I do with this 5 minutes? +06/06/2018,Comedians,@Ornyadams,@raerae_9500 Looking forward to meeting you in Huntsville @StandUpLiveHSV +06/04/2018,Comedians,@Ornyadams,Here come the VILLES! NASHVILLE and HUNTSVILLE YOU'RE UP! Huntsville Alabama and surrounding areas this Thursday co… https://t.co/HCjPBZTeYA +06/04/2018,Comedians,@Ornyadams,I think I ate some bad soy. +06/04/2018,Comedians,@Ornyadams,About to start watching... can't wait for more gold like this https://t.co/x7U8FAn2iQ #90DayFiance +06/03/2018,Comedians,@Ornyadams,This week I’m doing shows in Huntsville Alabama and Nashville. Details are on on my website. +06/03/2018,Comedians,@Ornyadams,It’s my cheat day. The one day a week I diet. +06/03/2018,Comedians,@Ornyadams,I'd be happy to do a show you could attend JM... where do you suggest? https://t.co/VrO15KzfIg +06/03/2018,Comedians,@Ornyadams,@GoldfarbIrwin @StandUpLiveHSV Thanks Irwin... I appreciate hearing that. +06/02/2018,Comedians,@Ornyadams,"RT @StandUpLiveHSV: 🐺Teen Wolf's Coach!🐺 +@Ornyadams played Coach on Teen Wolf for 6 seasons, released his newest Showtime special ""More Tha…" +06/02/2018,Comedians,@Ornyadams,Me. Alabama. Thursday night. Huntsville. You. Go. Thank you. https://t.co/9DdsAIwaCq +06/02/2018,Comedians,@Ornyadams,@xoJohnD @Showtime Newest. Came out in December. +06/02/2018,Comedians,@Ornyadams,My current special MORE THAN LOUD is airing on @Showtime. Have you seen it!? It’s on demand too. https://t.co/ib0R4SbCKm +06/02/2018,Comedians,@Ornyadams,@brandbogard No dates. But that could change. +06/02/2018,Comedians,@Ornyadams,@vfp111 I don’t know about that... but thanks. +06/02/2018,Comedians,@Ornyadams,@CeliaR81 @Puce31 Hope to see you at one of my @justforlaughs shows in July. +06/02/2018,Comedians,@Ornyadams,"No, thank you Jeff. I’m just getting started. https://t.co/b332wbbS45" +06/02/2018,Comedians,@Ornyadams,@EMJW03092014 Thanks Elaine! +06/01/2018,Comedians,@Ornyadams,Google music’s got MORE THAN LOUD. Link below. https://t.co/JNArKE7Ss2 +06/01/2018,Comedians,@Ornyadams,SPOTIFY me. Link below for my new stand up special MORE THAN LOUD. Thanks Sarah for posting. https://t.co/RbPxXVmI2i +06/01/2018,Comedians,@Ornyadams,Is that @Spotify? I don't subscribe so if one of you subscribers could post a clean link to my new special ORNY ADA… https://t.co/dD4DF3omYU +06/01/2018,Comedians,@Ornyadams,Amazon Prime subscribers can listen to my newest stand up special MORE THAN LOUD for free! Available for download t… https://t.co/dfalXSdKV4 +06/01/2018,Comedians,@Ornyadams,My newest stand up special MORE THAN LOUD is now available on iTunes. It says explicit but that's now how I would d… https://t.co/HpJqIDjc1x +06/01/2018,Comedians,@Ornyadams,MORE THAN LOUD audio it’s everywhere as of right now. iTunes. Amazon. Spotify. And so on. +05/31/2018,Comedians,@Ornyadams,@showmesometatas I do that on planes. +05/31/2018,Comedians,@Ornyadams,I disagree I blame baby aspirin for everything that has gone wrong in my career. https://t.co/G59M0eAUNZ +05/31/2018,Comedians,@Ornyadams,Wow those were the days before the internet boom when we offended people blissfully unaware. You know it was lupus… https://t.co/0jKVmfG4BC +05/31/2018,Comedians,@Ornyadams,I apologize to anybody offended by my last tweet I took a baby aspirin earlier today and was baby aspirin tweeting. +05/31/2018,Comedians,@Ornyadams,I wonder if I was a doctor if every Uber driver would tell me “I’m a doctor too?” +05/29/2018,Comedians,@Ornyadams,It’s Tuesday. Keep that in mind when you’re parking. They don’t care that you thought it was Monday. +05/29/2018,Comedians,@Ornyadams,@green_fury77 Regardless I like your dad. Tell him Orny says hi. +05/28/2018,Comedians,@Ornyadams,90 Day Fiancé recapping when Mohamed left Danielle. I'm starting to think maybe this marriage isn't so real... https://t.co/Ci6yhzqhoW +05/27/2018,Comedians,@Ornyadams,@chachadawn Wasn’t that YEARS ago? +05/27/2018,Comedians,@Ornyadams,@CanyonDentalCen Thanks dentist Bob. Wish I had done my flossing joke now. Which show tonight @TheComedyStore or @HollywoodImprov? +05/27/2018,Comedians,@Ornyadams,I needed that. Thanks @TheComedyStore crowd. +05/27/2018,Comedians,@Ornyadams,Did you know Facebook and Google's analytics are so good they can predict what I'm going to complain about on stage before even I know? +05/26/2018,Comedians,@Ornyadams,RT @TheComedyStore: 7pm Main Room @DaneCook @steveo @bobbyleelive @Ornyadams @brianmonarch https://t.co/Q0hdesQ50q #thecomedystore +05/26/2018,Comedians,@Ornyadams,Let’s discuss this commercial. Now everyone’s doing dishwasher bits like me? https://t.co/EcMQRxrBPh +05/26/2018,Comedians,@Ornyadams,@legendnatalie1 @MickJagger Mick? +05/26/2018,Comedians,@Ornyadams,Listen @MickJagger you’ve done so much for my comedy. Let me repay the favor... let me write you some solid materia… https://t.co/myudYVXcXp +05/26/2018,Comedians,@Ornyadams,@tlynch2 Ditty mao! +05/26/2018,Comedians,@Ornyadams,Am I the only one live tweeting The Deer Hunter right now? I feel so alone. +05/26/2018,Comedians,@Ornyadams,Dozed off for a minute and now we’re in Vietnam. I missed something. Lots of pigs running around. No deers here either. +05/26/2018,Comedians,@Ornyadams,At 57 minutes. Insert of a deer running. Clearly a studio note “Hey guys maybe we should see a deer in the first ho… https://t.co/Aqbw5i22qW +05/26/2018,Comedians,@Ornyadams,49 minutes in and still haven’t scene a deer. Wedding is over! But now some guy is running down the street in his u… https://t.co/i5cljwxUlM +05/26/2018,Comedians,@Ornyadams,@ngildvilll Dammit +05/26/2018,Comedians,@Ornyadams,That’s right I’m live tweeting a movie that came out in 1979. +05/26/2018,Comedians,@Ornyadams,Anybody watching Deer Hunter right now wondering if this wedding scene is going to end before the end of Memorial D… https://t.co/ZMqT0BZiqb +05/26/2018,Comedians,@Ornyadams,@Dylan0addicted You’re my new favorite person. +05/26/2018,Comedians,@Ornyadams,I’m getting too old for this should not be my response to EVERYTHING. +05/25/2018,Comedians,@Ornyadams,RT @HollywoodImprov: Don’t miss this killer show TMRW at 8! @SherriEShepherd @KevinNealon @RafinhaBastos @OrnyAdams & @MaxComedian are taki… +05/25/2018,Comedians,@Ornyadams,Looking forward to it Nashville! https://t.co/o1YZYY0hi0 +05/25/2018,Comedians,@Ornyadams,Last night I almost posted a Michelangelo quote and I wasn’t even drunk. +05/24/2018,Comedians,@Ornyadams,90 day fiancé on TLC “The idiot.” Anybody else watching this train wreck? https://t.co/0QpSOmfI9f +05/24/2018,Comedians,@Ornyadams,"@CovinoandRich I’m sorry what part of my I DON’T GIVE COMPS TO DUDES policy don’t you guys get. Ok, I’ll see what I can do. Miss you guys!" +05/24/2018,Comedians,@Ornyadams,If you need help writing commercials that don't annoy so many of us... let me know https://t.co/DTnkqMl3V8 +05/24/2018,Comedians,@Ornyadams,@ImkenmacMaclean Thanks. Check out my other two-- I think they are online.... someplace. Audio for sure. +05/24/2018,Comedians,@Ornyadams,@Nancernoodle @grapecrime Being called a king by someone from the UK always means a LITTLE bit more. Thank you. +05/24/2018,Comedians,@Ornyadams,I can't believe I'm the same age as Bob Dylan. +05/24/2018,Comedians,@Ornyadams,What ever happened to that beret? https://t.co/qzZ8T0x6uj +05/24/2018,Comedians,@Ornyadams,What ever happened to that beret? https://t.co/KnlX3GruQz +05/24/2018,Comedians,@Ornyadams,In case you find yourself with 120 seconds and nothing to do in a world full of way too many distractions https://t.co/DTnkqMl3V8 +05/24/2018,Comedians,@Ornyadams,@DawnMDix I'm working on new material for one... +05/23/2018,Comedians,@Ornyadams,@519lucha Would you be willing to clone yourself to help me get more well known? +05/23/2018,Comedians,@Ornyadams,No! I’ve done enough for you people. https://t.co/yD0mMKh179 +05/23/2018,Comedians,@Ornyadams,Thanks. I have a youtube channel with plenty of content. Check it out. This is were I’d post a link to it if I wasn… https://t.co/pWF11fKTUW +05/23/2018,Comedians,@Ornyadams,@invisibleeggs I have a youtube channel with plenty of context. Check it out. +05/23/2018,Comedians,@Ornyadams,I didn't even know I was watching a car commercial. https://t.co/cFkKqvkFlC +05/21/2018,Comedians,@Ornyadams,It’ll be nice to be home. https://t.co/QudlyZVnmm +05/21/2018,Comedians,@Ornyadams,This made me laugh. Why do you even bother @Delta no one’s following the signs. I mean NOT one person using this bi… https://t.co/90DGz0QvMv +05/21/2018,Comedians,@Ornyadams,@loujo333 @YouTube Fantastic. Love hearing this. I’ll be in Montreal this summer for @justforlaughs if you wanna see me live. +05/21/2018,Comedians,@Ornyadams,Don’t kid yourself parents PICK ME A WINNER is nothing short of nose picker shaming and I won’t have it. These kids… https://t.co/PrkE2Pku2j +05/20/2018,Comedians,@Ornyadams,@519lucha You've lowered it THAT much? +05/20/2018,Comedians,@Ornyadams,@MelissaClaire93 Congrats! Not about my show being canceled but the other thing. +05/20/2018,Comedians,@Ornyadams,@ilavfd Why do you have to be so difficile? +05/20/2018,Comedians,@Ornyadams,About 45 minutes into my show alarms go off to remind old people to take their medication. +05/20/2018,Comedians,@Ornyadams,Yeah a lot of you Teen Wolf fans should be 21 by now... what's the hold up? https://t.co/Zj6V7bUJ8z +05/20/2018,Comedians,@Ornyadams,“Orny you must meet a lot of women after your shows.” Uhm not really... THIS IS MY FANBASE. https://t.co/Gp4ZAqrCdb +05/20/2018,Comedians,@Ornyadams,This is what my fan base has turned into. The good news is I can retire soon because it looks like my fans and I ha… https://t.co/xkDeqJzR6Y +05/20/2018,Comedians,@Ornyadams,Spies everywhere! I had never put Tobasco on my pancakes before and it is SO me. I'd like it named after me. Even i… https://t.co/5FoMNKUBVh +05/20/2018,Comedians,@Ornyadams,That's ONE vote for me. https://t.co/KdPiwvffri +05/20/2018,Comedians,@Ornyadams,Did you lose weight? https://t.co/QOr8rJceYw +05/20/2018,Comedians,@Ornyadams,Hey @howiemandel if I lose five pounds can I be one of the briefcase models? I feel like we talked about this at on… https://t.co/ijI6svsiOg +05/19/2018,Comedians,@Ornyadams,You'll be seeing mostly a new show tonight but I'll throw in a few favorites from #MoreThanLoud... hope that's ok.… https://t.co/HQrllFyCOS +05/19/2018,Comedians,@Ornyadams,Prepping for my shows tonight in Cleveland @Hilarities. https://t.co/MPjcrne2s3 +05/19/2018,Comedians,@Ornyadams,"Can you supply us with the exact percentage of POSITIVE @yelp reviews that are removed for NOT ""Including enough de… https://t.co/NfRiInsP0L" +05/19/2018,Comedians,@Ornyadams,@claybob7 @Hilarities I look forward to returning to Dallas sooooon! Glad you enjoyed my special. I think you can g… https://t.co/XtRjxepxd6 +05/19/2018,Comedians,@Ornyadams,Hope you enjoyed the show! 2 more tonight CLEVELAND and one tomorrow night @Hilarities downtown. https://t.co/OaP9B1j1Vk +05/18/2018,Comedians,@Ornyadams,For the record @yelp has NEVER deleted one of my positive reviews for not having enough details about my experience. +05/18/2018,Comedians,@Ornyadams,"Hey @yelp ""IT SUCKED AND THEY WERE RUDE"" is plenty of detail for a restaurant review. The problem with most yelp re… https://t.co/nGgQ7wSgbQ" +05/18/2018,Comedians,@Ornyadams,@ShaniCAWCAW @Yelp Yup just posted this-- Done with @Yelp they delete REAL negative reviews from actual customers w… https://t.co/oMfnxojMNu +05/18/2018,Comedians,@Ornyadams,Done with @Yelp they delete REAL negative reviews from actual customers who have had REAL experiences and let busin… https://t.co/PByEUraLHs +05/18/2018,Comedians,@Ornyadams,"Just got this from @Yelp for a review I left months ago ""I'm reaching out to let you know that our moderators remov… https://t.co/kiNcAkZIdu" +05/18/2018,Comedians,@Ornyadams,The dream continues. Now I'm in Cleveland doing shows this weekend @Hilarities downtown. Times and tickets https://t.co/wkzoYZklKG +05/18/2018,Comedians,@Ornyadams,Found this old picture of my great grandfather taking a selfie. https://t.co/Z3dGbogpqt +05/18/2018,Comedians,@Ornyadams,@itslizblanc @Hilarities @DowntownCLE Thanks Liz! We’re gonna have a great weekend @Hilarities!!! +05/18/2018,Comedians,@Ornyadams,@theHurt_Locker @Hilarities Glad you enjoyed my show! +05/18/2018,Comedians,@Ornyadams,@TheNolanNation @Hilarities @majic1057 Thanks for having me on. Had a blast. +05/17/2018,Comedians,@Ornyadams,I have a really crappy attitude about this royal wedding... am I supposed to care at all? +05/17/2018,Comedians,@Ornyadams,@rissy207 I can’t keep track of my schedule when was I supposed to be there? +05/17/2018,Comedians,@Ornyadams,@NoraPrinciotti I’ll be there alone too. Don’t feel self conscious. See you soon. +05/17/2018,Comedians,@Ornyadams,"RT @StandUpLiveHSV: Thursday, June 7! Fresh off of his Showtime special ""More Than Loud,"" @Ornyadams is coming to Rocket City for one night…" +05/15/2018,Comedians,@Ornyadams,I think I did and now it looks like I’m wearing braces. Do I have to explain this one? The melted plastic stuck to… https://t.co/ChBA7N231l +05/15/2018,Comedians,@Ornyadams,Ha! All new lazy low for @Starbucks... didn’t even take the pasty out of the plastic wrap. It’s ok I shouldn’t be e… https://t.co/1Ddqyfmzt1 +05/15/2018,Comedians,@Ornyadams,It keeps my comedy real https://t.co/RRk1UKM4ZN +05/15/2018,Comedians,@Ornyadams,Tomorrow night Rochester! Let’s go! https://t.co/UhtbftKCwf +05/15/2018,Comedians,@Ornyadams,Sometimes I look in the mirror and think I hope I look this good when I'm my age. +05/14/2018,Comedians,@Ornyadams,Absolutely. I’ll be around. https://t.co/pgCYmNWecv +05/13/2018,Comedians,@Ornyadams,But Castro is dead. Zuck is scarier than a dead person? I mean how many people are leaving America on flotillas to… https://t.co/Mtvfg5vCnu +05/13/2018,Comedians,@Ornyadams,@JonDonahue I am so grateful that stupid Budweiser strawberry festival brought us together last night! Thanks Jon. It was great to meet you. +05/13/2018,Comedians,@Ornyadams,@SandyStec @cannoncomedy @LevityOxnard It was such a pleasure working with you. I can not wait to do it again. Than… https://t.co/UE1pv8inrD +05/13/2018,Comedians,@Ornyadams,Whoever wrote this doesn’t understand me. https://t.co/bluhoyWaQI +05/12/2018,Comedians,@Ornyadams,The cheaper the hotel the louder the couples fight in room next door. Say what you want about rich people but they… https://t.co/1vcYlaRNUX +05/12/2018,Comedians,@Ornyadams,The cheaper the hotel the louder the couples fight in room next door. Say what you want about rich people but they… https://t.co/GTkAHeVPce +05/12/2018,Comedians,@Ornyadams,Yes Oxnard CALIFORNIA... 2 more shows tonight @LevityOxnard and if last night is any indication we are going to hav… https://t.co/uFRMEhP9az +05/12/2018,Comedians,@Ornyadams,It’s official Crest has run out health benefits to claim. Nothing like a bullshit gum detox that our gums have all… https://t.co/8eBavwKcVN +05/12/2018,Comedians,@Ornyadams,@SandyStec @LevityOxnard @maijareturns Great job last night Sandy! Thanks for being such a pro. Looking forward to tonight. +05/12/2018,Comedians,@Ornyadams,Guy on this show Safe has been dead for 4 days and gets pulled out of a lake and he looks better than me and I’ve b… https://t.co/u1PNXxeXhC +05/11/2018,Comedians,@Ornyadams,@JonDonahue @LevityOxnard Good news because you are verified you qualify to have @cannoncomedy valet your car for free too. +05/10/2018,Comedians,@Ornyadams,I am with these wonderful comedians this Friday and Saturday in Oxnard CA @LevityOxnard. And... free parking! https://t.co/YmIk71mrIk +05/10/2018,Comedians,@Ornyadams,@showmesometatas I'll be in Huntsville June 7th @StandUpLiveHSV if you still live close or know people who do... thanks! +05/10/2018,Comedians,@Ornyadams,Doing a show next month in Alabama and it got me thinking about boiled peanuts and the time I got pulled over in Do… https://t.co/UvQQ40rD1I +05/09/2018,Comedians,@Ornyadams,@gideonemery Now that I think about it Gideon sounds like something you catch in Vegas on one of those WHAT HAPPENS… https://t.co/P4764gKgYx +05/09/2018,Comedians,@Ornyadams,"I still consider myself a catch. Though, confidence waning." +05/08/2018,Comedians,@Ornyadams,I’m at this restaurant and this woman is staring at me. Finally she says hi. I said you’re looking at me like a pie… https://t.co/K11GjnnzVt +05/08/2018,Comedians,@Ornyadams,@SkinnerPm I’d prefer when you watch my stand-up comedy it not be when you’re naked soaking in your iron tub. Thanks. @NewYorker @bentaub91 +05/07/2018,Comedians,@Ornyadams,I have shows this FRIDAY/SATURDAY in Oxnard CA @LevityOxnard... info in tweet below. https://t.co/qo5EI9cp9f +05/07/2018,Comedians,@Ornyadams,I have the answer! START SWIMMING CLEVELAND. See you May 16-20th @Hilarities https://t.co/zNjegL5aZn https://t.co/nfrc7yv2f2 +05/05/2018,Comedians,@Ornyadams,"Everyone in this film @TheDaughterFilm deserves an award. Even the two girls in the bar. Spectacular writing, direc… https://t.co/pESHyrYfkU" +05/05/2018,Comedians,@Ornyadams,@GrandmaPams Thanks! I think you mean @Showtime +05/04/2018,Comedians,@Ornyadams,@schnelly2 @Hilarities START DRIVING NOW to @Hilarities +05/03/2018,Comedians,@Ornyadams,"It’s all heights! Cleveland, Ohio shows May 17-20 at Hilarities @Hilarities https://t.co/rcahMmlVOH" +05/03/2018,Comedians,@Ornyadams,@mariobosco @Hilarities And I look forward to meeting you one day too Mario-- especially after getting this tweet. +05/03/2018,Comedians,@Ornyadams,Next Fri/Sat doing shows in OXNARD CA! Yes! @LevityOxnard This club rocks! https://t.co/LKLykeVftI +05/03/2018,Comedians,@Ornyadams,Tickets for Cleveland @Hilarities https://t.co/TRbTfyH6eQ +05/03/2018,Comedians,@Ornyadams,Put on your bathing suit and start swimming to see my show in Cleveland May 17-20th @Hilarities https://t.co/lVvMOUDswB +05/02/2018,Comedians,@Ornyadams,Coming this fall Beacon Hills Elementary. Find out who was always dumb and annoying. #teenwolf @mtv @mtvteenwolf ..… https://t.co/Xaqkcsx5HL +06/27/2018,Comedians,@amyschumer,"I’m coming to @NtlComedyCenter in Jamestown, NY with my friends for #LucyComedyFest on 8/3! Get tix here https://t.co/KwLT2TGcOj" +06/25/2018,Comedians,@amyschumer,"In solidarity with the survivors of the Las Vegas shooting, I’m telling the ATF to ban bump stocks. The public comm… https://t.co/H0pRF1sdcr" +06/21/2018,Comedians,@amyschumer,It's official. We've launched! Check out #3Girls1Keith on @Spotify https://t.co/cDOepm2Iqx +06/20/2018,Comedians,@amyschumer,@NYCCuomo & political leaders have the power to protect farmworkers TODAY. Read why farmworker women have been wait… https://t.co/HcbfW4HJxg +06/20/2018,Comedians,@amyschumer,"Hey New York, I’m coming to @Pier17NY with my friends on 8/1! Tickets available here https://t.co/wNTBnIXmaT" +06/14/2018,Comedians,@amyschumer,"Make sure to tune into my @spotify Original Podcast Amy Schumer Presents: 3 Girls, 1 Keith on 6/21. #3Girls1Spotify https://t.co/5NE7elf0lX" +06/13/2018,Comedians,@amyschumer,"I’m coming to @WinStarWorld in Thackerville, OK with my friends on 7/28! Tickets available now! https://t.co/VvFUjDi9Mz" +05/29/2018,Comedians,@amyschumer,Come see me and my friends this weekend in San Fran! June 2nd at 9pm https://t.co/LKq0x8vZGV +05/15/2018,Comedians,@amyschumer,LA and NYC and the world don’t miss @kathygriffin she’s a true killer! https://t.co/L8mjnfEx5L +05/11/2018,Comedians,@amyschumer,I'm doing a few shows with my friends this Summer! Tickets on sale now! https://t.co/h2qfwlTuLL +05/07/2018,Comedians,@amyschumer,Tickets are on-sale THIS FRIDAY starting at 10AM EST for my summer tour! Get your tickets now! https://t.co/kGplNTY3Kw +05/05/2018,Comedians,@amyschumer,Please watch this https://t.co/NTPcQ91FB8 +05/04/2018,Comedians,@amyschumer,RT @LearyFF: The Second Annual Denis Leary FDNY Firefighter Challenge is in full force! #WeCanBeHeroes #FFChallenge #IFFD https://t.co/dofD… +05/02/2018,Comedians,@amyschumer,We're calling on corporations to cut all ties with R. Kelly and insist on safety and dignity for women of all kinds… https://t.co/ki0glwZNCV +04/24/2018,Comedians,@amyschumer,"Hear my full conversation with @Oprah in the latest Oprah's #SuperSoulConversation Podcast, out TODAY! @OWNTV… https://t.co/qaH3ws2568" +04/23/2018,Comedians,@amyschumer,"Hear my full conversation with @Oprah in the latest Oprah's #SuperSoulConversation Podcast, out TODAY! @OWNTV… https://t.co/tlcwwuINpQ" +04/19/2018,Comedians,@amyschumer,@IFeelPretty hits theaters TOMORROW! Get your tickets now: https://t.co/Zr84FZ2aYh https://t.co/YDJ6OZwLaP +04/19/2018,Comedians,@amyschumer,"RT @IFeelPretty: ""While I mostly feel good about myself now, I know plenty of other women don't. I wanted to make I Feel Pretty to empower…" +04/17/2018,Comedians,@amyschumer,Watch @emrata Aidy Brant and I show you the last thing on our phones @glamourmag https://t.co/kYrFlY9e3G +04/16/2018,Comedians,@amyschumer,@IFeelPretty is in theaters in 4 DAYS!!! Get your tickets now: https://t.co/TQykSePthJ https://t.co/FUnpR80L5T +04/14/2018,Comedians,@amyschumer,6 DAYS‼️‼️‼️‼️get your tickets NOW https://t.co/BXfFVDaRcD https://t.co/zSWCL7ZJ19 +04/13/2018,Comedians,@amyschumer,@IFeelPretty is out in theaters in ONE WEEK!! Get your tickets! https://t.co/TQykSf74Gj https://t.co/wZpIXv0vJ2 +04/10/2018,Comedians,@amyschumer,@katiecouric is unpacking the most complicated issues we're facing as a country today on #AmericaInsideOut. Join us… https://t.co/uz4DiFuZfy +04/10/2018,Comedians,@amyschumer,Get your tickets for @IFeelPretty now! Open in theaters April 20th! https://t.co/BXfFVDaRcD https://t.co/YWXj8cEIKV +04/06/2018,Comedians,@amyschumer,"No one tells funnier stories than my friend, old school comedian D.C. Benny, whose new album drops today. He's the… https://t.co/fYV6bZzaUA" +04/06/2018,Comedians,@amyschumer,RT @TommyMcFLY: Don’t call @amyschumer a “Lady Boss” she schooled me on how we should talk about women who lead. Thoughts? Thanks Amy Schum… +04/02/2018,Comedians,@amyschumer,Love a good TED talk https://t.co/fX6ZxmqSkL +04/02/2018,Comedians,@amyschumer,RT @jimmykimmel: this is extremely dangerous to our democracy https://t.co/D1T8Z7J2Wn +03/26/2018,Comedians,@amyschumer,We are @Twitter! #IFeelPretty https://t.co/EV3OG4QQO8 +03/25/2018,Comedians,@amyschumer,"RT @SenSchumer: Yesterday, I marched alongside amazing kids and worried families who are doing things Congress & NRA loyalists have long re…" +03/22/2018,Comedians,@amyschumer,Watch my homies!@RachelFeinstein @aparnapkin @ginayashere https://t.co/WWs94qcavm +03/14/2018,Comedians,@amyschumer,RT @emilymusilchrch: Stand with these students & @pvpspringfield today to hold @SmithWessonCorp accountable! #HowManyMore #BePartOfTheSolut… +03/14/2018,Comedians,@amyschumer,"On Saturday, March 24th, #IWillMarch in solidarity with Parkland students for common-sense gun safety laws. Will yo… https://t.co/o5ISuk3600" +03/03/2018,Comedians,@amyschumer,APRIL 20th! Woot woot! @IFeelPretty #ifeelpretty https://t.co/eSAMEv5puo +02/27/2018,Comedians,@amyschumer,Please call your congressperson today to vote YES on HR1865 #FOSTA #SESTA: https://t.co/ZjujurMiXT… https://t.co/SgZltpi9JE +02/23/2018,Comedians,@amyschumer,"The NRA’s media arm, NRATV, uses dangerous rhetoric to spread fear so people will buy more guns. + +Add your name to… https://t.co/i9d7ZR5sJL" +02/21/2018,Comedians,@amyschumer,RT @Lynetterice: Get a first look at the @JuddApatow documentary about the one and only Garry Shandling @HBODocs https://t.co/xj41kOLN59 ht… +02/18/2018,Comedians,@amyschumer,"On March 24, students are leading marches in DC & across the country to demand that lawmakers do their jobs and tak… https://t.co/895fFZt18q" +02/18/2018,Comedians,@amyschumer,"RT @AngeloRoefaro: SHOCKING BUT TRUE: Despite tragic mass shootings, just-released White House budget would cripple the gun background chec…" +02/14/2018,Comedians,@amyschumer,Get your tickets now for @clusterfest! https://t.co/YNJIdVUzpX +02/08/2018,Comedians,@amyschumer,"Change everything, without changing anything. Watch the trailer for my new comedy, I Feel Pretty – coming soon to t… https://t.co/OtQiPN38DM" +02/07/2018,Comedians,@amyschumer,Check out the poster for @IFeelPretty! Trailer tomorrow! https://t.co/b7ybRcXBgb +02/05/2018,Comedians,@amyschumer,"RT @ComedyCentral: Lady Doritos are here to kill satire. #InsideAmy +https://t.co/gg2ejiSRgc" +02/03/2018,Comedians,@amyschumer,RT @msjwilly: Heyyy Hoochies! Tonight is THE night! The first of our FOUR @2DopeQueens specials premieres this evening on HBO at 11:30pm!!… +02/01/2018,Comedians,@amyschumer,Thanks for having me on Katie! https://t.co/XgFIDwTwxA +02/01/2018,Comedians,@amyschumer,"RT @TIMESUPNOW: Members of Congress, standing for safety and equity in the workplace at the #SOTU. Across all industries, the message is st…" +01/30/2018,Comedians,@amyschumer,Please give what you can to help Luke! https://t.co/oQpHDYgvrU +01/30/2018,Comedians,@amyschumer,"RT @rosemcgowan: Today, I rise. ✊ +#CitizenRose #BeBrave https://t.co/2hV9WK6lij" +01/27/2018,Comedians,@amyschumer,Still don’t have a copy of #TheGirlWithTheLowerBackTattoo? Get the audiobook edition read by yours truly at the new… https://t.co/yGvBzj57Vr +01/23/2018,Comedians,@amyschumer,"Today's school shooting in KY was at least the 10th school shooting nationwide in 2018, and third in JUST TWO DAYS,… https://t.co/GzriVb1mhi" +01/18/2018,Comedians,@amyschumer,RT @shondarhimes: Just in case you’re wondering how to dismiss foolishness: https://t.co/ErvHKPsFF4 +01/16/2018,Comedians,@amyschumer,"RT @BBCNewsPR: In an interview with the BBC’s @StephenSackur, @AshleyJudd talks about the #MeToo movement, Weinstein and James Franco. For…" +01/14/2018,Comedians,@amyschumer,RT @ambertamblyn: Hi @Disney and @RobertIger . It looks like you’re about to have two seats open on your board of directors. We call on you… +01/12/2018,Comedians,@amyschumer,"Our fight for the rights of immigrants and #Dreamers is a fight for racial justice, for the end of anti-Blackness &… https://t.co/8QywUcAfGO" +01/11/2018,Comedians,@amyschumer,WATCH: https://t.co/SZI14o3THn JOIN US: We need to urge Congress to amend #CDA230 on National Human Trafficking Aw… https://t.co/gvQ5IMoreC +01/07/2018,Comedians,@amyschumer,"RT @AmericaFerrera: Grateful to our Activist Sisters for gracing the red-carpet today with their extraordinary work and voices, which repre…" +01/07/2018,Comedians,@amyschumer,RT @AmericaFerrera: Wonder Woman says #TIMESUP !!!!! #WhyWeWearBlack https://t.co/NJTsJ07CXW +01/04/2018,Comedians,@amyschumer,RT @MichelleObama: So proud of my friend and former chief of staff @TinaTchen and the other strong women banding together to fight sexual h… +12/27/2017,Comedians,@amyschumer,"New Orleans! Spend New Year’s Eve with me and @anidifranco, @RachelFeinstein, @vanessabayer and other special guest… https://t.co/lsHoq922gw" +12/26/2017,Comedians,@amyschumer,"""Thanks for loaning me the #Q7 @audi I loved it! """ +12/19/2017,Comedians,@amyschumer,"Tonight, I’m on #FindingYourRoots discovering my ancestry with @HenryLouisGates. We’ll be on your local @PBS statio… https://t.co/x0ymzrKRUg" +12/06/2017,Comedians,@amyschumer,"DEAR GOP: Pass the #DreamActNow or families will be destroyed. Watch this video feat @rosariodawson & tell + us whic… https://t.co/UuXom5PctF" +12/05/2017,Comedians,@amyschumer,"Right now, the NRA and its allies in Congress are pushing through a bill that would force YOUR state to abide by th… https://t.co/9q0hMo6wgo" +11/29/2017,Comedians,@amyschumer,New Orleans show on New Years Eve! Come see me and my favorite musician of all time @anidifranco and I’ll be perfor… https://t.co/uxblxrGuBu +11/19/2017,Comedians,@amyschumer,Republican tax bill includes tax break for those with private jets. Wonder if it comes with free peanuts? https://t.co/SAsPy7iNcc +11/17/2017,Comedians,@amyschumer,"HELL YES! @ambertamblyn released a collection with @mysisterorg to fight assault, exploitation and trafficking. 25%… https://t.co/NyTFwDwLV4" +11/15/2017,Comedians,@amyschumer,RT @SenWarren: The news just broke – Senate Republicans want to rip health insurance away from 13 million Americans... through the tax bill… +11/09/2017,Comedians,@amyschumer,Let’s share how Americans can get health insurance. Open enrollment happens now thru Dec. 15. If you aren't covered… https://t.co/IG8M0gAJf1 +11/06/2017,Comedians,@amyschumer,https://t.co/He1aR7N5kg Spread the word! This film has every element of what never giving up can do for you.… https://t.co/9zTtVUToFF +11/03/2017,Comedians,@amyschumer,"Do not miss my girl @rachelfeinstein taping her new @netflix special in LA this Sunday, Nov 5! Get free tickets here +https://t.co/xXyaLUaX28" +10/18/2017,Comedians,@amyschumer,"RT @MeteorShowerBwy: .@AmySchumer, @KeeganMKey, @LauraBenanti and @JeremyShamos challenge @Springsteen to the #WaitressPieChallenge for @Ko…" +10/18/2017,Comedians,@amyschumer,Tell Congress to #RejectTheNRA's radical agenda. Text REJECT to 64433 & @Everytown will connect you with your Rep. https://t.co/5JNMjSZ11U +10/17/2017,Comedians,@amyschumer,Watch me on @JimmyKimmel – Tonight on ABC! #KimmelINBrooklyn https://t.co/Q2ICQurtoY +10/06/2017,Comedians,@amyschumer,"FYI to @WhiteHouse: Mad-men era, when the boss decided what kind of hlthcare a woman is entitled 2 is thing of past! https://t.co/YKUvx4rF3c" +10/02/2017,Comedians,@amyschumer,"Today we mourn for Las Vegas, tomorrow we fight for them. +Join the movement to end gun violence: Text ACT to 64433.… https://t.co/RTrZjyoR1H" +09/13/2017,Comedians,@amyschumer,RT @ambertamblyn: My Open Letter to James Woods by Amber Tamblyn | Teen Vogue https://t.co/7LEzRc8q4M +09/06/2017,Comedians,@amyschumer,Call your Senator/Representative to amend #CDA230. Join me in supporting trafficking survivors. #IamJaneDoeFilm… https://t.co/4cG142358n +09/01/2017,Comedians,@amyschumer,Happy Labor Day weekend! Make sure to pack your copy of #TheGirlWithTheLowerBackTattoo. https://t.co/vdp6oT9G8s +08/27/2017,Comedians,@amyschumer,My girls and I have a new Girls Night tradition- putting our $ where our mouths are. Join us in donating #DACA… https://t.co/eW7dn0yMf0 +08/24/2017,Comedians,@amyschumer,Why yes my book is very artsy https://t.co/vdp6oT9G8s https://t.co/sLO43ZYBH1 +08/16/2017,Comedians,@amyschumer,Want to write your own version of #TheGirlWithTheLowerBackTattoo? Amy Libs: https://t.co/J5BNpdS5XS +08/12/2017,Comedians,@amyschumer,It’s my book on a table! I hope you get it too! https://t.co/vdp6oT9G8s https://t.co/Lx36EHeHhp +08/08/2017,Comedians,@amyschumer,#TheGirlWithTheLowerBackTattoo is out in paperback today! https://t.co/LrTGDaOnjr +08/07/2017,Comedians,@amyschumer,.@stevemartintogo wrote a hilarious play @MeteorShowerBwy & I get to do it w/ @KeeganMKey @LauraBenanti @AlanTudyk… https://t.co/UMW6HZVQOD +08/04/2017,Comedians,@amyschumer,The paperback of my book #TheGirlWithTheLowerBackTattoo comes out on Tuesday! Don’t forget to pre-order your copy. https://t.co/vdp6oT9G8s +07/26/2017,Comedians,@amyschumer,"CAN'T STOP WON'T STOP #SaveACA & protect care @PPFA - tweet your Senators +NOW and tell them to vote NO #StandwithPP https://t.co/PDaKJw8702" +06/26/2017,Comedians,@amyschumer,THIS WEEK millions of patients could lose health care access at @PPFA. Tell your Senator to #StandWithPP now! https://t.co/PDaKJwpIoC +06/22/2017,Comedians,@amyschumer,"Senate released #Trumpcare bill that ""defunds"" @PPFA. TWEET YOUR +SENATORS NOW & tell them to #StandwithPP https://t.co/PDaKJw8702" +06/14/2017,Comedians,@amyschumer,".@clairecmc🔥-calling out Senators secretly moving a bill that would gut healthcare & ""defund"" PP👎#StandWithPP https://t.co/ZxE1GaFWqd" +06/14/2017,Comedians,@amyschumer,Please consider donating to mental illness here and reading the story of my brothers childhood friend https://t.co/6VggAhZARH +06/05/2017,Comedians,@amyschumer,Climate change denier https://t.co/XC5HUWJVFY +06/05/2017,Comedians,@amyschumer,Boston! Go see @RachelFeinstein this Thurs thru Saturday! Get them tickets now https://t.co/Cb1DGF5ATZ +06/05/2017,Comedians,@amyschumer,Birth control! Such a great time for women! https://t.co/xsYCQahknH +06/05/2017,Comedians,@amyschumer,Dr. Congress https://t.co/Ys7zfWaE5m +06/02/2017,Comedians,@amyschumer,"I #WearOrange for Ronique Williams. One of the 93 killed, and hundreds injured by gun violence every day in America." +05/20/2017,Comedians,@amyschumer,Nyc go see @ambertamblyn in #CanYouForgiveHer @VineyardTheatre you will love every second like I did. https://t.co/md3eXGN13J +05/18/2017,Comedians,@amyschumer,Turn hashtags into action! Watch #ActivismIRL live panel https://t.co/O8rN9BbDUB 5pm ET. @iwillharness @Twitter… https://t.co/aaGEbPw6bq +05/14/2017,Comedians,@amyschumer,Mom always has your back. #SnatchedMovie🌴 is in theaters now! #MothersDay https://t.co/PvrUTIEJU1 +05/13/2017,Comedians,@amyschumer,#SnatchedMovie🌴 is now playing in theaters everywhere! https://t.co/5sVxJZR8Qy https://t.co/CFEtz6ycwp +05/12/2017,Comedians,@amyschumer,"RT @JuddApatow: Let's raise some money for @ACLU to fight Trump! May 17 at @LargoLosAngeles @ThatKevinSmith, FRED ARMISEN & more!!! https:…" +05/12/2017,Comedians,@amyschumer,"The local flavor, the third wheel and the survivor. See #SnatchedMovie🌴 in theaters today! https://t.co/5sVxJZR8Qy https://t.co/KSMaV5L49M" +05/12/2017,Comedians,@amyschumer,Don't know what to get Mom for Mother's Day? 👉 Get your #SnatchedMovie🌴 tickets now 🎟: https://t.co/5sVxJZR8Qy https://t.co/aPpvstMhiv +05/11/2017,Comedians,@amyschumer,Whale what? #SnatchedMovie🌴 is in theaters tonight! Get your tickets: https://t.co/5sVxJZR8Qy https://t.co/ypRLKqqhOu +05/10/2017,Comedians,@amyschumer,Get Snatched this Friday. Get your tickets now: https://t.co/5sVxJZR8Qy #SnatchedMovie🌴 https://t.co/444UpRSnbO +05/10/2017,Comedians,@amyschumer,Send thoughts and prayers… and wine. 🍷🙏 #SnatchedMovie🌴 https://t.co/Drvo2WgY0N +05/08/2017,Comedians,@amyschumer,"Watch Wanda and I get out a of a tough situation that was completely, 100% not my fault. #SnatchedMovie #May12… https://t.co/6KP7foL82Y" +05/04/2017,Comedians,@amyschumer,"🚨ALERT🚨 House just voted to repeal the ACA & ""defund"" @PPFA. Call your Senators to stop the bill→ +https://t.co/qDeHgGFq3o #IStandWithPP" +05/03/2017,Comedians,@amyschumer,Watch me with @stephenathome on @colbertlateshow tonight! https://t.co/Whtr5ZKbVJ +04/28/2017,Comedians,@amyschumer,Congratulations @maryjblige on your inspirational album #StrengthofaWoman https://t.co/l7JgauEp5A +04/18/2017,Comedians,@amyschumer,RT @ambertamblyn: Full trailer for PAINT IT BLACK is up. Get ready for two incredible performances by Janet McTeer and @ShawkatAlia https:… +04/13/2017,Comedians,@amyschumer,"RT @EW: .@amyschumer & @goldiehawn take us on the set of the summer’s funniest, wildest and blondest comedy #SnatchedMovie! https://t.co/CR…" +04/12/2017,Comedians,@amyschumer,"RT @Snatched_Movie: This is it. You’re in the middle of it. @AmySchumer & @ParkRandall star in this exclusive clip from #SnatchedMovie🌴, in…" +04/11/2017,Comedians,@amyschumer,"RT @ambertamblyn: OH LOOK. Teaser trailer for PAINT IT BLACK, the film I wrote/directed exploring women's grief is now live. Link in bio. I…" +04/05/2017,Comedians,@amyschumer,Proud to be on the cover of @instyle! Thank you @laurabrown99 @kimmykuppkakes @andrea_tiller @cristinaehrlich… https://t.co/gTeZ7BdH7R +04/04/2017,Comedians,@amyschumer,See what life is like with 20% less. Seem crazy? So is the gender pay gap. #20PercentCounts https://t.co/nTWbF24W9y +04/04/2017,Comedians,@amyschumer,#quitthisshit https://t.co/wY7zPWfban +03/30/2017,Comedians,@amyschumer,...It works! See me and @goldiehawn in #SnatchedMovie🌴 this Mother's Day https://t.co/0MdgiH6V8y +03/28/2017,Comedians,@amyschumer,Word to your Mother. See me and @GoldieHawn in #SnatchedMovie🌴 https://t.co/crVmif9rAt +03/25/2017,Comedians,@amyschumer,ahhhhhhhhhhhhhhhhh https://t.co/qdNcLQMO3G +03/23/2017,Comedians,@amyschumer,House couldn’t get their vote on today to “defund” @PPFA-so they’re trying tomorrow. Tweet your Rep. https://t.co/YdGCOJZ158 #IStandwithPP +03/21/2017,Comedians,@amyschumer,When your boss asks you to come in an hour early #SnatchedMovie🌴 https://t.co/hIyUb8sL7j +03/21/2017,Comedians,@amyschumer,Couldn't be prouder of my sisters https://t.co/3MzYuaESNw +03/20/2017,Comedians,@amyschumer,.@JimNorton's new special on Netflix is hilarious https://t.co/dapyscckGe +03/14/2017,Comedians,@amyschumer,Only thing better than getting the final rose? Drinking rose on a vacay with your momay #TheBachelor #SnatchedMovie… https://t.co/kJIf9m23Yr +03/13/2017,Comedians,@amyschumer,#Snatchedmovie poster is here! https://t.co/KTYYp2gVo5 +03/07/2017,Comedians,@amyschumer,"RT @Skype: Tonight till Fri, you're invited to chat all things comedy with @RachelFeinstein. Just add SkypeComedy as a contact to join #Sky…" +03/07/2017,Comedians,@amyschumer,Blow the whistle. #SnatchedMovie🌴 https://t.co/skdEOFgpRM +03/02/2017,Comedians,@amyschumer,Mom hugs 😬 #SnatchedMovie🌴 https://t.co/hty3FVSvKB +03/02/2017,Comedians,@amyschumer,Watch me tonight on @latenightseth #theleatherspecial https://t.co/XLEp0im9tn +03/01/2017,Comedians,@amyschumer,2 days til my show at @FoxwoodsCT. https://t.co/sENv7TAzS7 +02/28/2017,Comedians,@amyschumer,RT @enews: Lessons in posting a nude selfie: @amyschumer spills in a sneak peek of her new @netflix special. Tonight on #ENews! https://t.c… +02/28/2017,Comedians,@amyschumer,March 7th! #TheLeatherSpecial https://t.co/HeqgIm0ESS +02/28/2017,Comedians,@amyschumer,Going on vacation with your mother #SnatchedMovie🌴 https://t.co/NBvo0KGa9a +02/23/2017,Comedians,@amyschumer,This is an @oldnavy commercial I did about pants #oldnavystyle #aboutpants https://t.co/WzmhPGGePI +02/22/2017,Comedians,@amyschumer,NOT YOU. #SnatchedMovie🌴 https://t.co/HK5fuyWEeJ +02/22/2017,Comedians,@amyschumer,"LA, please help bring Milek home safely! Contact the police if you have any info! RT https://t.co/NOdtqEjU37" +02/07/2017,Comedians,@amyschumer,Watch me and @GoldieHawn get Snatched Mother’s Day Weekend. Watch the new trailer now. #SnatchedMovie🌴 https://t.co/KaWyzeuoX8 +02/03/2017,Comedians,@amyschumer,"Can't wait to see @katiecouric's #GenderRevolution. It airs Feb. 6 at 9/8c on @NatGeoChannel, don't miss it!! https://t.co/ZRwDtGmo5r" +02/03/2017,Comedians,@amyschumer,RT @SenGillibrand: .@AmySchumer Got your voicemail! Thanks for the call—and thanks to all NYers who gotten #offthesidelines to make calls.… +02/01/2017,Comedians,@amyschumer,"RT @SarahKSilverman: My friend @SuliMcCullough made DyingLaughing, w/ @amyschumer @chrisrock @KevinHart4real available 4 preorder: https://…" +01/29/2017,Comedians,@amyschumer,RT @Adweek: How Airbnb and Lyft are taking action against Trump’s immigration ban (as #DeleteUber becomes a trending topic): https://t.co/Q… +01/29/2017,Comedians,@amyschumer,RT @SenSchumer: The Elias Family has been in the US for a month. I asked Hazem what he wants to be when he grows up: A policeman. And his s… +01/24/2017,Comedians,@amyschumer,I am adding a 2nd show at FOXWOODS on March 2nd! Tickets on-sale now:https://t.co/hgIodtrHHU +01/20/2017,Comedians,@amyschumer,"I had the pleasure of hanging with @neiltyson, this video is not to promote anything but I hope it makes you smile https://t.co/w9tLvJrZXG" +01/17/2017,Comedians,@amyschumer,"RT @nowthisnews: This is the little-known history behind America's most famous health care provider – thanks to @lenadunham, @mindykaling a…" +01/14/2017,Comedians,@amyschumer,I'll be at FOXWOODS on March 2nd! Get tickets here: https://t.co/hgIodtrHHU +01/10/2017,Comedians,@amyschumer,RT @netflix: Totally fearless and always hilarious: @AmySchumer's new stand-up special debuts March 7 https://t.co/XR8dLwAyHd +12/16/2016,Comedians,@amyschumer,.@TheRock Thank you so much! Please camp out all night in your living room to simulate. +12/16/2016,Comedians,@amyschumer,Watch me get snatched with @GoldieHawn this Mother’s Day weekend. Watch the new trailer for #SnatchedMovie🌴 https://t.co/02IWiIx7af +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Rachel D'Avino, 29, had just started as a teacher's aide + +#SandyHook https://t.co/dyoJVJTCy4" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Dawn Hochsprung, 47, was the school principal + +#SandyHook https://t.co/OpPk76AWZl" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Teacher's aide Anne Marie Murphy, 52, was found having tried to shield one of the 6 year old students + +#SandyHook https://t…" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Lauren Rousseau, 30, was a teacher + +#SandyHook https://t.co/oj916yznSY" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Mary Sherlach, 56, was the school psychologist + +#SandyHook https://t.co/XmzGeyauMT" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: 1st grade teacher Victoria Leigh Soto, 27, was killed protecting her students + +#SandyHook https://t.co/VHJik6k0P5" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Charlotte Bacon, 6 + +#SandyHook https://t.co/bKUZsxRveX" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Daniel Barden, 7 + +#SandyHook https://t.co/9Oq2RcpqiC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Olivia Engel, 6 + +#SandyHook https://t.co/MOGCJDPa5E" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Josephine Gay, 7 + +#SandyHook https://t.co/mpw4x4glsS" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Dylan Hockley, 6 + +#SandyHook https://t.co/Vu0WWWp6BF" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Madeleine Hsu, 6 + +#SandyHook https://t.co/hVIBvIDwg2" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Catherine Hubbard, 6 + +#SandyHook https://t.co/1b7SmW9Q69" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Chase Kowalski, 7 + +#SandyHook https://t.co/uTCpfJTj5D" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jesse Lewis, 6 + +#SandyHook https://t.co/xXHWyCJpIC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Ana Márquez-Greene, 6 + +#SandyHook https://t.co/GByT82JFaC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: James Mattioli, 6 + +#SandyHook https://t.co/hvAgW57rQj" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Grace McDonnell, 7 + +#SandyHook https://t.co/LZ8Ysf3axH" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Emilie Parker, 6 + +#SandyHook https://t.co/ShakzuvOOs" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jack Pinto, 6 + +#SandyHook https://t.co/VDq3NKNPNS" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Noah Pozner, 6 + +#SandyHook https://t.co/kxGifxAqzU" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Caroline Previdi, 6 + +#SandyHook https://t.co/s1aLnmDeVN" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jessica Rekos, 6 + +#SandyHook https://t.co/Uv3ndK76qp" +12/15/2016,Comedians,@amyschumer,RT @jaketapper: Four years ago today. #SandyHook https://t.co/WTTvTCZes4 +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Avielle Richman, 6 + +#SandyHook https://t.co/G5xPTSrizz" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Benjamin Wheeler, 6 + +#SandyHook https://t.co/0BmMVGda9h" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Allison Wyatt, 6 + +#SandyHook https://t.co/ZCHVZ8IbnP" +12/13/2016,Comedians,@amyschumer,Nothing worse than bumping into an ex while holiday shopping. How embarrassing for him. @oldnavy #oldnavystyle https://t.co/pdmo2CJOVV +12/12/2016,Comedians,@amyschumer,I'm on Ellen +12/12/2016,Comedians,@amyschumer,our movie has a title! @Snatched_Movie @goldiehawn https://t.co/A94Fw3fHM4 +12/12/2016,Comedians,@amyschumer,RT @TheEllenShow: OMG @AmySchumer is hilarious. Wait till you hear this story tomorrow. https://t.co/PeiLK54gsN +12/07/2016,Comedians,@amyschumer,I made a commercial with my sister who loves me and is very psyched to hang out with me @oldnavy #oldnavystyle https://t.co/wBNXOLBGiy +12/01/2016,Comedians,@amyschumer,Cousin @SenSchumer's law to stop cyber BOTS passed! Makes it easier for fans to see shows they love! #BOTSBeGone https://t.co/sk7ARFlZyb +12/01/2016,Comedians,@amyschumer,Today is World AIDS Day and this just happened. All for @RED!https://t.co/qAHbkqmHb8 +11/28/2016,Comedians,@amyschumer,.@IAmJericho just send me my call time #blessedtwin +11/19/2016,Comedians,@amyschumer,On the road reading material: @andy's #Superficial book. So GOOD! +11/19/2016,Comedians,@amyschumer,Renew your faith in humanity... grab @annakendrick47's new book #ScrappyLittleNobody +11/19/2016,Comedians,@amyschumer,Can't get over how good @joerogan's new stand-up special on Netflix. https://t.co/v6WLMTrl5Q +11/18/2016,Comedians,@amyschumer,My favorite thing I've seen all year @iamcolinquinn #TheNewYorkStory on @netflix +11/06/2016,Comedians,@amyschumer,Listen to @Lin_Manuel and make sure you vote on Tuesday. Find out where you can here: https://t.co/Zc9DGfrKLI https://t.co/F12pbefgRM +11/05/2016,Comedians,@amyschumer,RT @ambertamblyn: Nasty girls we nasty @AmericaFerrera @lenadunham @amyschumer #HillOrado #COPolitics https://t.co/cFE5cU7ILM +11/05/2016,Comedians,@amyschumer,.@TheRock I gotchu. But stay alive! +11/03/2016,Comedians,@amyschumer,#iwillvote.com https://t.co/1LDjOAxBie +11/02/2016,Comedians,@amyschumer,Louie knows what's up https://t.co/5lCs0aU9n7 also go cubs! +11/01/2016,Comedians,@amyschumer,RT @tweet_elva: @MomsDemand volunteers making tons of calls to #GOTV & having fun doing it! #ImWithHer #MomsDemandHillary https://t.co/kTF1… +11/01/2016,Comedians,@amyschumer,"RT @C_EmilyDurbin: MI moms register voters w @GloriaSteinem. ""Change comes from the bottom up"".#MomsDemandHillary @MomsDemand https://t.co/…" +11/01/2016,Comedians,@amyschumer,"RT @Rebecca_221B: Missouri @MomsDemand supporters in Springfield, Columbia & St. Louis got together today to get out the vote for @HillaryC…" +11/01/2016,Comedians,@amyschumer,RT @sbeergon: Beautiful day for phone bank! PDX @MomsDemand making calls for our Gun Sense Champ Rep Paul Evans #GunSenseMajority #MomsDema… +10/27/2016,Comedians,@amyschumer,"Information about My ""Formation"": https://t.co/xqZ4LGwxJl" +10/27/2016,Comedians,@amyschumer,I’ve picked your memoir title – find out what it is now! https://t.co/ZtdUxMz4Qo +10/24/2016,Comedians,@amyschumer,thank you @ELLEmagazine for including me! +07/02/2018,Comedians,@SarahKSilverman,RT @MaryEMcGlynn: @SarahKSilverman If only there was something Social that would give them more Security in their convictions. 🧐 +07/02/2018,Comedians,@SarahKSilverman,"Forgive me but you are daft. Socialist democrats are for socialized programs within our democracy. Like, education… https://t.co/bHTaMq9wpp" +07/02/2018,Comedians,@SarahKSilverman,RT @Ocasio2018: Pretty much! https://t.co/73nxk22W55 +07/02/2018,Comedians,@SarahKSilverman,Good lord I know racists cry when we call them racist but um... I guess that’s um.. wow those “menacing” cartoon f… https://t.co/VOcYFjZ2TK +07/02/2018,Comedians,@SarahKSilverman,RT @GhostPanther: This thread pretty much sums up all the madness. https://t.co/3tZg38fjAp +07/02/2018,Comedians,@SarahKSilverman,Ooh- nice BLP- isn’t that where we collectively take on an opinion that we can’t nec actually manifest? Am I off?… https://t.co/tLdFCVB551 +07/02/2018,Comedians,@SarahKSilverman,"RT @Caesleyemily: @CDestructus @matthewjdowd @SarahKSilverman @michaelianblack I live in Texas, am married to an ex-military, gun owning hu…" +07/02/2018,Comedians,@SarahKSilverman,Alex this is a lie. I’m trying 2 understand if u know that or if u somehow believe this is true. UR hurting people.… https://t.co/M7FrFtjyvY +07/02/2018,Comedians,@SarahKSilverman,"RT @selfstyledsiren: A visitor to Hollywood encounters incivility, 1938. https://t.co/13ph92EdXR" +07/02/2018,Comedians,@SarahKSilverman,😭😭😭😭😭😭 https://t.co/Xl2JKS7XAs +07/02/2018,Comedians,@SarahKSilverman,⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ https://t.co/CbR0mFvfGE +07/02/2018,Comedians,@SarahKSilverman,RT @stephenrahn13: Substitute Georgian for Texan and I am with you 100%! https://t.co/L7JdfMDrE8 +07/02/2018,Comedians,@SarahKSilverman,@p0peyelang As many could fit in my apartment. But they don’t want new parents they want THEIR parents +07/02/2018,Comedians,@SarahKSilverman,Go Ma go https://t.co/OlhSRsef3a +07/02/2018,Comedians,@SarahKSilverman,Who taught you that new messaging phrase “virtue signaling”? It’s how people who don’t stick their necks out for ot… https://t.co/nSP8ZG9prQ +07/01/2018,Comedians,@SarahKSilverman,RT @HCookAustin: Same. https://t.co/UA9W9wZelF +07/01/2018,Comedians,@SarahKSilverman,RT @HJBenjamin: Can we at least get one reverse angle of the person riding it ? https://t.co/Taq0ZNQHqN +07/01/2018,Comedians,@SarahKSilverman,RT @chrisinsilico: IMPORTANT: There is now a money trail that leads from Russia to Brexit. LeaveEU associates accepted huge financial deals… +07/01/2018,Comedians,@SarahKSilverman,"Friggin Sheen, always pandering for RTs https://t.co/QnVZ4ehucC" +07/01/2018,Comedians,@SarahKSilverman,We live in fucking insanity https://t.co/oIlGpXjcUW +07/01/2018,Comedians,@SarahKSilverman,@TriumphICDHQ @davidalangrier Yay!!! You wrote that!! You must have because I loved it +07/01/2018,Comedians,@SarahKSilverman,@jimvitola @_TheLeader @jdhlsc169 @Armi7119 @michaelianblack @DLoesch Every citizen of israel is trained to use a g… https://t.co/5Ucqnr6yzZ +07/01/2018,Comedians,@SarahKSilverman,"This hashtag is objective truth. As Mr Rogers says, “Love is at the root of everything… Love or the lack of it” https://t.co/8IdmJlIWlS" +07/01/2018,Comedians,@SarahKSilverman,"RT @bust_magazine: Sarah Silverman On ""I Love You, America"" And Trying To Understand Trump Supporters https://t.co/rl5RNj9alK https://t.co/…" +07/01/2018,Comedians,@SarahKSilverman,"RT @matthewjdowd: @SarahKSilverman @michaelianblack I am a gun-owning Texan, and want gun reform regulation, as do a majority of gun-owners…" +07/01/2018,Comedians,@SarahKSilverman,The acoustics were insane https://t.co/GsKPbHQhts +07/01/2018,Comedians,@SarahKSilverman,"I don’t think he’s talking about the members, the majority of whom want reasonable gun regulation. I think he’s tal… https://t.co/0lesnCXWeZ" +07/01/2018,Comedians,@SarahKSilverman,FUCK YOU TODD YOURE WHATS WRONG WITH HIS COUNTRY https://t.co/O6SNE5FoR2 +07/01/2018,Comedians,@SarahKSilverman,❤️ https://t.co/AmlF7LYGoZ +06/30/2018,Comedians,@SarahKSilverman,https://t.co/nqfwRuKCG3 +06/30/2018,Comedians,@SarahKSilverman,RT @lisang: Rabbi Waskow is the founder of the Jewish Renewal Movement. He was active in the civil rights movement and in the non violent p… +06/30/2018,Comedians,@SarahKSilverman,The politicians involved are mostly white men but YES- TRUTH - the same white women that voted Trump in office. As… https://t.co/lisOYDYzsv +06/30/2018,Comedians,@SarahKSilverman,♥️ https://t.co/4MK6pgt1ru +06/30/2018,Comedians,@SarahKSilverman,https://t.co/ecr059TMzX +06/30/2018,Comedians,@SarahKSilverman,The difference between humans and animals used to be that humans possess reason. Now it’s that animals have an ins… https://t.co/Er08oYpE7G +06/30/2018,Comedians,@SarahKSilverman,@chrissyteigen My first draft called him a pig’s twat but im tryin ta better myself❤️ +06/30/2018,Comedians,@SarahKSilverman,RT @dsam4a: The UK's National Health Service spared @robdelaney's family from financial stress while they endured the grief of losing their… +06/30/2018,Comedians,@SarahKSilverman,As a comic this is trite as fuck but IF MEN WERE THE ONES WHO GOT PREGNANT THIS WOULD BE A NON ISSUE https://t.co/JQ4VpEsYsX +06/30/2018,Comedians,@SarahKSilverman,"RT @billmaher: For Republicans, the Supreme Court is all about abortion - to which they remain staunchly opposed, right up to the moment th…" +06/30/2018,Comedians,@SarahKSilverman,"I hope when he cries you show him he’s loved, & I hope when he grows up he cares more about truth than winning. https://t.co/0DLX9hif3n" +06/29/2018,Comedians,@SarahKSilverman,@Weiss_Tea @jash Forwarded to head of jash he’ll def look into it and help in any way he can +06/29/2018,Comedians,@SarahKSilverman,The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships sta… https://t.co/DcfCgqPg4I +06/29/2018,Comedians,@SarahKSilverman,⬇️⬇️⬇️⬇️⬇️⬇️⬇️ https://t.co/FhZepiZ5Ig +06/29/2018,Comedians,@SarahKSilverman,3 days ago in South Carolina Trump said (once again) that journalists were the enemy of the people https://t.co/3dbpIvTbWV +06/28/2018,Comedians,@SarahKSilverman,RT @democracy4ppl: #Annapolis #NoNRAMoney https://t.co/6wQwcTWr9w +06/28/2018,Comedians,@SarahKSilverman,"RT @_rajdesai: Top 3 lazy nicknames: + +1. Big Guy +2. Boss +3. Dr. Eugene M. Devireau" +06/28/2018,Comedians,@SarahKSilverman,Our democracy is being murdered by frauds wearing american flag pins. HAVE A GREAT THURSDAY!! +06/28/2018,Comedians,@SarahKSilverman,"Show some emotion +Put expression in your eyes +Light up if you're feeling happy +But if it's bad then let those tears… https://t.co/z0jQQpMHN7" +06/28/2018,Comedians,@SarahKSilverman,"Trumps admin tells govt officials to lie. One wouldn’t, and quit. Intimidation followed. BE ON THE RIGHT SIDE OF HI… https://t.co/5Z7ZMdOiva" +06/28/2018,Comedians,@SarahKSilverman,"“The American people should have a voice in the selection of their next Supreme Court Justice."" @SenateMajLdr when… https://t.co/k80ghS9BD7" +06/27/2018,Comedians,@SarahKSilverman,"RT @misslaneym: This is why Ocasio-Cortez won. + + https://t.co/FbWyvAJHOq" +06/27/2018,Comedians,@SarahKSilverman,RT @iamcardib: LIVE YOUR BEST LIFE AND DRINK CRANBERRY JUICE !!! https://t.co/ReVW844aXb +06/27/2018,Comedians,@SarahKSilverman,Not giving a single fuck must be terrific. It puts the ick in terrific but I’m def jelly I’m middle aged +06/27/2018,Comedians,@SarahKSilverman,what changed? Attn: @VP https://t.co/Xw58RLnxdE +06/27/2018,Comedians,@SarahKSilverman,"RT @matthewstoller: I'm going to show you just who @Ocasio2018, Justice Democrats, and DSA beat tonight. it isn't @JoeCrowleyNY. It's the m…" +06/27/2018,Comedians,@SarahKSilverman,#FollowTheMoney https://t.co/WBz5nr4Vch +06/27/2018,Comedians,@SarahKSilverman,So @scotus ruled today that the religious right’s huge # of FAKE abortion clinics are allowed to continue purposely… https://t.co/D4ZetlACx7 +06/26/2018,Comedians,@SarahKSilverman,Yes https://t.co/jcB62scX5A +06/26/2018,Comedians,@SarahKSilverman,YO NASHVILLE!!! https://t.co/dkws88AXz8 +06/25/2018,Comedians,@SarahKSilverman,"RT @JuddApatow: I wonder if @FoxNews will air this information. Hey Lachlan, what will your children think of how you responded to this hu…" +06/25/2018,Comedians,@SarahKSilverman,RT @JamesMartinSJ: Here’s a list of organizations that are mobilizing to help immigrant children separated from their families https://t.co… +06/25/2018,Comedians,@SarahKSilverman,"RT @AndyRichter: “Decorum” is mostly a tool designed to keep the ppl w the power from losing power. You have the leverage, you fuck people…" +06/25/2018,Comedians,@SarahKSilverman,RT @Travon: The America I want to live in. https://t.co/6AKho5MLJH +06/25/2018,Comedians,@SarahKSilverman,RT @JuddApatow: This is what @realDonaldTrump doesn’t want you to read because if he doesn’t have the immigration issue to run on he loses… +06/25/2018,Comedians,@SarahKSilverman,"RT @ilyamerica: We’re back Sept 6, babies! https://t.co/6a2rOuxv26" +06/25/2018,Comedians,@SarahKSilverman,♥️ #ILoveYouAmerica ❤️https://t.co/kQMBT3jUtj +06/25/2018,Comedians,@SarahKSilverman,Why don’t they call fireworks what they really are: dog terrorists. Can y’all just google image fireworks? Maybe go… https://t.co/BROT3NKpmB +06/25/2018,Comedians,@SarahKSilverman,Ah haha https://t.co/OuncFRfBmP +06/25/2018,Comedians,@SarahKSilverman,First Sunday game with my sweet ass @MooreMaya #Jordan 11s #RookToQueen https://t.co/JweljHylEx +06/25/2018,Comedians,@SarahKSilverman,Yo r u kookoo bananas? He took a pic w the kids and declined a pic w a man complicit in consciously diminishing th… https://t.co/hBzrTkEviH +06/25/2018,Comedians,@SarahKSilverman,RT @Alyssa_Milano: Hey guess what everyone? @realDonaldTrump hired undocumented immigrants for $4 an hour for a demolition project. Here ar… +06/25/2018,Comedians,@SarahKSilverman,Look for the helpers⬇️⬇️⬇️ https://t.co/G4ikxfsgcK +06/25/2018,Comedians,@SarahKSilverman,Omg you guys would love orgasms +06/24/2018,Comedians,@SarahKSilverman,RT @JoeNBC: Trump’s Centralized State is even banning the Red Cross from visiting those infants and toddlers being incarcerated by Trump. W… +06/24/2018,Comedians,@SarahKSilverman,I’m so sorry but I have to say it is exhilarating to hear THE Christine Baranski say my name. #Legend… https://t.co/YoHghQwKNm +06/24/2018,Comedians,@SarahKSilverman,RT @guybranum: Things that white children do that are adorable become crimes when black and brown children do them. Crimes that create grou… +06/24/2018,Comedians,@SarahKSilverman,RT @ilyamerica: .@SarahKSilverman is here to talk about the hard stuff –– and to maybe make a difference along the way. #ILYAmerica https:/… +06/24/2018,Comedians,@SarahKSilverman,"RT @danrsena: @GovMikeHuckabee No, @GovMikeHuckabee. You got the wrong picture. These are the Hispanic staff at the @DCCC who are fighting…" +06/24/2018,Comedians,@SarahKSilverman,"Well gee u lie 2 us so much, and U defend a man who lies pathologically &commits crimes against humanity on the reg… https://t.co/aaNswsLYup" +06/23/2018,Comedians,@SarahKSilverman,RT @ilyamerica: .@SarahKSilverman knows how to handle tough conversations –– some might even call her work prophetic. #ILYAmerica https://t… +06/22/2018,Comedians,@SarahKSilverman,RT @WestWingReport: Safety problems with the water that U.S. military members and their families drink - and the White House and EPA chief… +06/22/2018,Comedians,@SarahKSilverman,RT @Variety: .@SarahKSilverman tells @joelmchale why she can't watch his @Netflix show with her dog https://t.co/LCNjzU5XXf https://t.co/lD… +06/22/2018,Comedians,@SarahKSilverman,RT @chelseaperetti: THIS DEPRAVED PARTY HATES CHILDREN https://t.co/UAdTUVw4tQ +06/22/2018,Comedians,@SarahKSilverman,"RT @TopherSpiro: Whoa conservative George Will: Vote against the GOP and flip both houses of Congress. ""Ryan traded his political soul for.…" +06/22/2018,Comedians,@SarahKSilverman,RT @DEADLINE: .@ilyamerica's @SarahKSilverman on breaking out of the echo chamber #DeadlineContenders https://t.co/e4S6ZtO7o0 +06/22/2018,Comedians,@SarahKSilverman,"Oh, Lil Marco, it’s very common to defend your abuser. (Not as common to defend the man guilty of crimes against hu… https://t.co/rCroC3V6e6" +06/22/2018,Comedians,@SarahKSilverman,This pastor really “Gets it”https://t.co/ap5Mi4dLrD https://t.co/nrELtG0QNN +06/22/2018,Comedians,@SarahKSilverman,"RT @vulture: .@SarahKSilverman on bridging seemingly impossible political divides, and how it's changed her view of (maybe) running for off…" +06/22/2018,Comedians,@SarahKSilverman,@KayKayCannon Kay! +06/22/2018,Comedians,@SarahKSilverman,"RT @hemantmehta: The video was removed, but a mirror is here: https://t.co/DgaZc9Nhao https://t.co/T0DHZiW5ym" +06/22/2018,Comedians,@SarahKSilverman,Trump sucks (Big Oil’s dick) (and tickles their balls) https://t.co/RbFbu9qz9v +06/22/2018,Comedians,@SarahKSilverman,"RT @MykeCole: I was activated and deployed to the gulf for Deepwater Horizon. We killed ourselves out there, up to our armpits in toxic che…" +06/22/2018,Comedians,@SarahKSilverman,"RT @birbigs: Today was my birthday. No gifts please. But if you like me and you're into reuniting families, maybe kick 5 or 10 bucks to the…" +06/22/2018,Comedians,@SarahKSilverman,Oh my. https://t.co/ap5Mi4dLrD +06/22/2018,Comedians,@SarahKSilverman,FYC https://t.co/TIr5xvzTfw +06/22/2018,Comedians,@SarahKSilverman,RT @ilyamerica: Dinner conversation just got a lot more interesting now that @SarahKSilverman is at the table. #ILYAmerica. https://t.co/0f… +06/22/2018,Comedians,@SarahKSilverman,RT @LibyaLiberty: We’re...we’re at number 8 aren’t we. https://t.co/fHTMcuuAIM +06/22/2018,Comedians,@SarahKSilverman,"RT @chrislhayes: First time illegal entry into the United States is a misdemeanor. + +Lying on or omitting materially relevant information fr…" +06/22/2018,Comedians,@SarahKSilverman,"RT @votevets: Today the House GOP voted to rip food away from the 1.5 million veteran and 23,000 active duty households who rely on SNAP be…" +06/21/2018,Comedians,@SarahKSilverman,What’s for dinner? Me https://t.co/vYnLUImwo4 #ILYA @HULU +06/20/2018,Comedians,@SarahKSilverman,"RT @RepJoeKennedy: You might not know this about me, but I'm a white guy. And as a white guy, I would encourage @realDonaldTrump & his fell…" +06/20/2018,Comedians,@SarahKSilverman,RT @ahamedweinberg: The season finale of Please Understand Me is out today starring @Punkiejohnson and my damn self #bitchonchristmas https… +06/19/2018,Comedians,@SarahKSilverman,RT @GavinNewsom: Trump tried to use DREAMers as bargaining chips. That didn't work. Now he's threatening a shutdown and using children — to… +06/19/2018,Comedians,@SarahKSilverman,RT @GeorgeTakei: For your consideration. I would appreciate a read—and a share. https://t.co/llCUna6kXB +06/19/2018,Comedians,@SarahKSilverman,RT @SteveLevitan: Let me officially join @SethMacFarlane in saying I’m disgusted to work at a company that has anything whatsoever to do wi… +06/19/2018,Comedians,@SarahKSilverman,"RT @GavinNewsom: This makes me sick to my stomach. Children separated from their parents, crying out for help. Border Patrol joking that th…" +06/19/2018,Comedians,@SarahKSilverman,"RT @thejoshpatten: Please enjoy this clip of Tucker Carlson, who went to a K-12 boarding school that costs $59,750/year, and a college that…" +06/19/2018,Comedians,@SarahKSilverman,RT @OshaDavidson: Here's another way to funnel outraged into action: Donate to @HumaneBordersAZ I just did. #KeepFamiliesTogether https://t… +06/18/2018,Comedians,@SarahKSilverman,"RT @jonfavs: Family separation isn’t just a Trump policy, it’s a Republican policy. They control both houses of Congress and haven’t lifted…" +06/18/2018,Comedians,@SarahKSilverman,"RT @SarahThyre: The world is watching us, and they are appalled. https://t.co/I4so7lYSha" +06/18/2018,Comedians,@SarahKSilverman,RT @ikebarinholtz: This motherfucker pardoned Dinesh D’Souza in five minutes but when it comes to stopping children from being caged his li… +06/18/2018,Comedians,@SarahKSilverman,RT @jzipple: I don't think drawing a moral equivalence between criminal activity & fleeing violence/poverty to save your family is the best… +06/18/2018,Comedians,@SarahKSilverman,"RT @JamesMartinSJ: Like many, I've resisted using this word but it's time: the deliberate and unnecessary separation of innocent children f…" +06/18/2018,Comedians,@SarahKSilverman,RT @jacobsoboroff: JUST IN: Video from inside our tour of the Border Patrol's processing station in McAllen -- the epicenter of family sepa… +06/18/2018,Comedians,@SarahKSilverman,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Comedians,@SarahKSilverman,"RT @hwinkler4real: ON this FATHER'S DAY i just cant stop thinking about the children we have locked up , who cant get a hug , who wonder w…" +06/18/2018,Comedians,@SarahKSilverman,CC: @MELANIATRUMP @FLOTUS #BeBest https://t.co/46ts4MZSAa +06/17/2018,Comedians,@SarahKSilverman,RT @KaivanShroff: FLASHBACK: “I don’t want to rip families apart. I don’t want to send parents away from children.” — @HillaryClinton stand… +06/17/2018,Comedians,@SarahKSilverman,Good lord https://t.co/z8kg8W57md +06/17/2018,Comedians,@SarahKSilverman,"RT @MattBors: Employee quits job at for-profit child prison camp after being told to order three siblings not to hug each other. + +“[they w…" +06/17/2018,Comedians,@SarahKSilverman,Yo! @BetoORourke currently leading a march to the detention center in Tornillo. Follow live on Beto’s FB page… https://t.co/rfrKtl36oZ +06/17/2018,Comedians,@SarahKSilverman,"RT @Pontifex: Children must be able to play, study and grow in a peaceful environment. Woe to anyone who stifles their joyful impulse to ho…" +06/17/2018,Comedians,@SarahKSilverman,Take a break from the madness and watch a turtle who thinks he’s a dog https://t.co/rh1tZRA5CD +06/17/2018,Comedians,@SarahKSilverman,RT @SenJeffMerkley: Children are being ripped away from their parents at the U.S. border. WATCH this video to learn how you can fight back… +06/17/2018,Comedians,@SarahKSilverman,Proof https://t.co/5xvrOJvv7z +06/17/2018,Comedians,@SarahKSilverman,"RT @ProudResister: Dear @GOP, + +Putting children in prison camps. +WE’LL REMEMBER IN NOVEMBER. + +Targeting preexisting conditions. +WE’LL REMEM…" +06/17/2018,Comedians,@SarahKSilverman,RT @LupeValdez: I’m proud to be joining @BetoORourke @vgescobar @latinovictoryus and other Texans to let the world know that we are against… +06/17/2018,Comedians,@SarahKSilverman,"RT @PolitiFact: 11 wrong or misleading statements from @realDonaldTrump's Friday morning with reporters. +https://t.co/fNhsFJDfaZ https://t.…" +06/17/2018,Comedians,@SarahKSilverman,RT @mradamscott: The children being held in cages at our border have fathers too. Fathers who don’t know where their children are. You are… +06/16/2018,Comedians,@SarahKSilverman,RT @GeorgeTakei: The lies are never ending. via @actdottv https://t.co/z5wzeFp4xF +06/16/2018,Comedians,@SarahKSilverman,"RT @JamesMartinSJ: Federal regulations will not protect anyone from the Last Judgment. +""I was a stranger and you did not welcome me."" (Mt.…" +06/16/2018,Comedians,@SarahKSilverman,"RT @DevonRomanoff: It hurts knowing this kid since he was in diapers & knowing he’s spending his young life, in prison, while this other fu…" +06/16/2018,Comedians,@SarahKSilverman,RT @pattonoswalt: Here's a link to help fund DACA recipients renewal fees. I've kicked in 1K. To my fellow godless Hollyweird colleagues --… +06/16/2018,Comedians,@SarahKSilverman,RT @ShaunKing: Tomorrow’s cover for the @NYDailyNews. https://t.co/vCRWwALxb3 +06/15/2018,Comedians,@SarahKSilverman,RT @BaltimoreBobby3: #EarlyVoting for @BenJealous! Maryland has an opportunity to elect a real progressive as our governor. Let’s do it! ht… +06/15/2018,Comedians,@SarahKSilverman,"RT @SRuhle: The average age of a Korean War vet is 87 +@realDonaldTrump has taken a tangible positive outcome from the #SingaporeSummit & tu…" +06/15/2018,Comedians,@SarahKSilverman,RT @fakedansavage: This fucking thread. https://t.co/i1b0XVrOTa +06/15/2018,Comedians,@SarahKSilverman,"RT @ASlavitt: Yes, you are reading this right. The gun lobby is trying to remove pre-existing condition protections. + +People need to know.…" +06/15/2018,Comedians,@SarahKSilverman,RT @JamesMartinSJ: Disgraceful. Do not use St. Paul to justify unjust laws and acts of cruelty. St. Paul was an apostle not of laws (we are… +06/15/2018,Comedians,@SarahKSilverman,Im gonna hold these children hostage until Dems agree to all the shitty things I want = this is on the Dems. You’r… https://t.co/867F4n74aF +06/15/2018,Comedians,@SarahKSilverman,It’s nuts- she’s blaming Dems 4not stopping Trump from making this pure-evil policy. Man -they repeatedly point2 D… https://t.co/MvpF0vC2du +06/15/2018,Comedians,@SarahKSilverman,Had fun on @latelateshow last night but didn’t wanna touch the audience’s cummy jizzy hands https://t.co/kQhtZmFSk5 +06/15/2018,Comedians,@SarahKSilverman,RT @rweb333: @SpeakerRyan @SteveScalise https://t.co/SyI94mc4jp +06/15/2018,Comedians,@SarahKSilverman,"Fucking bot. +(sept 6th- thanks!!) https://t.co/tGJMHJwBsK" +06/15/2018,Comedians,@SarahKSilverman,@Maddyjaykurtz We’re hard at work and start back sept 6 booboo +06/15/2018,Comedians,@SarahKSilverman,@Sethrogen Holy fucking shit I’m jellyyyy +06/15/2018,Comedians,@SarahKSilverman,RT @birbigs: These people in charge are real life monsters. https://t.co/A2ajxuICS2 +06/15/2018,Comedians,@SarahKSilverman,Wow https://t.co/hGi3TYGpVR +06/15/2018,Comedians,@SarahKSilverman,This is us https://t.co/bYUEx3x3zQ +06/15/2018,Comedians,@SarahKSilverman,Rad https://t.co/QeQctRY37b +06/15/2018,Comedians,@SarahKSilverman,"RT @SimonWDC: Grandfather, been in the US for 50 years, since he was 13. He’s a legal resident. Went to high school here. Taken away by…" +06/15/2018,Comedians,@SarahKSilverman,Ok someone made this extremely random montage of me and it made me laugh https://t.co/suGkWDdBXc +06/14/2018,Comedians,@SarahKSilverman,RT @RealRonHoward: Honest question to #MAGA minders. When was America at its greatest? Can you tell me an era that reflects the “Again” tha… +06/14/2018,Comedians,@SarahKSilverman,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Comedians,@SarahKSilverman,RT @latelateshow: This is your warning that the #LateLateShow with @SarahKSilverman and @mrbobodenkirk starts right now. https://t.co/Fv29k… +06/14/2018,Comedians,@SarahKSilverman,@WilliamMatt22 Thanks for making it. You did this. Thank you +06/13/2018,Comedians,@SarahKSilverman,RT @ahamedweinberg: My favorite episode of Please Understand Me is here! I made it with @stevenfeinartz @jetzotime and @SarahKSilverman and… +06/13/2018,Comedians,@SarahKSilverman,"RT @TelevisionAcad: Now LIVE: Our Summer Auction, benefiting the @TelevisionAcad Foundation's education programs. +➤Shop & bid by June 27th!…" +06/13/2018,Comedians,@SarahKSilverman,RT @SarahKSilverman: Yo - Watch this and Love America with me! Catch up ‘cause we’re back Sept 6 babieees https://t.co/tqF3Afn2pG +06/13/2018,Comedians,@SarahKSilverman,ATTN: @JeffBezos @tim_cook @amazon @Apple https://t.co/Ttv1mDq9Ut +06/13/2018,Comedians,@SarahKSilverman,RT @TheDailyShow: Sean Hannity EVISCERATES Sean Hannity https://t.co/EOxp0FSrAR +06/12/2018,Comedians,@SarahKSilverman,Yo - Watch this and Love America with me! Catch up ‘cause we’re back Sept 6 babieees https://t.co/tqF3Afn2pG +06/12/2018,Comedians,@SarahKSilverman,"RT @sportingnews: This high school pitcher held off celebrating with his teammates so he could console his childhood friend instead. + +(📹:…" +06/12/2018,Comedians,@SarahKSilverman,@SarahThyre Oh ya cbd cream! +06/11/2018,Comedians,@SarahKSilverman,He definitely has had 3 miracles. 1) could be when he got $20M government funding for public television /children’s… https://t.co/5ogMNxn5vv +06/11/2018,Comedians,@SarahKSilverman,For a really long time the comedy women did in movies was tripping/falling I’m so jazzed that’s over +06/11/2018,Comedians,@SarahKSilverman,i smell like tiger balm a lot +06/11/2018,Comedians,@SarahKSilverman,I love you so much George https://t.co/ossKrPiouo +06/11/2018,Comedians,@SarahKSilverman,https://t.co/HKvTAkQD4n +06/11/2018,Comedians,@SarahKSilverman,"I love Bruce Springsteen. He makes us all come from Freehold, NJ" +06/11/2018,Comedians,@SarahKSilverman,@dana_vesley @LPJLeague Omg I love this +06/11/2018,Comedians,@SarahKSilverman,"And just so you don’t think birthday girl @LauraJSilverman is just a comedy level singer, here she is singing her f… https://t.co/dollgCnaiK" +06/11/2018,Comedians,@SarahKSilverman,Another @LauraJSilverman birthday song from TSSP — “The Baby Penis in Your Mind” enjoy https://t.co/Q5qEv2ZeE7 +06/11/2018,Comedians,@SarahKSilverman,In honor of bday girl sissy @LauraJSilverman here is a song we sang on the Sarah silverman program in a scene where… https://t.co/46zj7vCqNT +06/11/2018,Comedians,@SarahKSilverman,It scrambles my brain that people clutch their mfing pearls bc a comedian used a crude word while speaking truth 2… https://t.co/d8096IW7cW +06/11/2018,Comedians,@SarahKSilverman,OMG @joshgroban & @SaraBareilles are KILLING it CHILLS #TonyAwards +06/10/2018,Comedians,@SarahKSilverman,"RT @elongreen: I remember when top reporters were chastising us for reading too deeply into Trump's remarks about immigrants and ""animals""…" +06/10/2018,Comedians,@SarahKSilverman,RT @sza: I’m not brave everyday but when i am its LIFE CHANGING ! PLEASE DONT WAIT TO GET OUT OF UR HEADS !! SAY WHAT U WANT NOW !! BE WHO… +06/10/2018,Comedians,@SarahKSilverman,RT @GhostPanther: Our modern media just isn’t built to handle a story as massive as global warming. Respectable journalists are reluctant t… +06/10/2018,Comedians,@SarahKSilverman,"I stand with Puerto Rico. Join me in making a donation to support Puerto Rico, @Google is matching up to $2M!… https://t.co/AjEX4T7gcE" +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @AmarilloKenja @phoenixkhost It’s a reaction to what we are seeing. How do you see these pictures and no… https://t.co/j7nnchXZn8 +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @shoeluver67 That’s what you get from watching this monologue or is that what you get from reading the h… https://t.co/nmTUfBeYge +06/10/2018,Comedians,@SarahKSilverman,@phoenixkhost @LeoRules1 Ha wrong. Your vision of my life is wrong. 1 br apartment baby. +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @AmarilloKenja @phoenixkhost No I think we’ve all been acknowledging that. It’s a heinous stain that Tru… https://t.co/o7W4Sq6NiL +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @daniepedia Touché my friend. That said- even if the adults we are talking about were criminals (they ar… https://t.co/u3d7Ob7sl4 +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @daniepedia Why are you hanging onto this? Criminals are criminals. Who is lying about seeking asylum? T… https://t.co/H41AyES44U +06/10/2018,Comedians,@SarahKSilverman,This is pure evil. This makes me want to fight https://t.co/iaDsmZHKlA +06/10/2018,Comedians,@SarahKSilverman,"This is what divides us. People learn about who the left is by watching foxnews or reading breitbart, twitchy etc.… https://t.co/aJjkGUNDgq" +06/10/2018,Comedians,@SarahKSilverman,"RT @ChrisMurphyCT: For years Republicans said they would protect people with pre-existing conditions. They lied. + +Instead, the Trump admin…" +06/10/2018,Comedians,@SarahKSilverman,"@CurrentGiant @Butterwomp @LeoRules1 They are people seeking asylum. +You can say that’s not true or somehow decide… https://t.co/1xSGd6YH41" +06/09/2018,Comedians,@SarahKSilverman,@wyattcenac Aww! I agree that would be incredible +06/09/2018,Comedians,@SarahKSilverman,@LeoRules1 That’s how you see refugees? +06/09/2018,Comedians,@SarahKSilverman,RT @Alyssa_Milano: We need the #ERANow. https://t.co/oFlJAGam6z +06/09/2018,Comedians,@SarahKSilverman,This show is great ♥️Go Wyatt https://t.co/fBK5fz2aCV +06/09/2018,Comedians,@SarahKSilverman,Dad Performs Ballet With Stage-Fight Stricken Daughter ❤️❤️❤️https://t.co/WbxYbsYTns via @YouTube +06/09/2018,Comedians,@SarahKSilverman,"RT @THR: “If I’m an advocate for anything, it’s to move. As far as you can, as much as you can. Across the ocean, or simply across the rive…" +06/09/2018,Comedians,@SarahKSilverman,RT @LauraJSilverman: Sickle Cell Anemia is on this list. I have nothing else to say. https://t.co/3n93FKdhNw +06/09/2018,Comedians,@SarahKSilverman,"He’s a Republican, he‘s a devout Christian, and he’s my hero + +Every single person needs to go see WON’T YOU BE MY N… https://t.co/yaUU9QLnpV" +06/08/2018,Comedians,@SarahKSilverman,"RT @Lin_Manuel: Gmorning. +YOU ARE SO LOVED AND WE LIKE HAVING YOU AROUND. +*ties one end of this sentence to your heart, the other end to ev…" +07/02/2018,Comedians,@TheEllenShow,.@AdamLevine is working on his own little @Maroon5. https://t.co/6sAgwM5VFG +07/02/2018,Comedians,@TheEllenShow,"Happy birthday, @MargotRobbie! I hope your husband wears those cute little shorts for you. https://t.co/EZj1N5XALH" +07/01/2018,Comedians,@TheEllenShow,Happy #InternationalJokeDay! Share this with your favorite joke teller. https://t.co/yX3JPk0QXs +06/30/2018,Comedians,@TheEllenShow,Happy #SaturKay! @TheKalenAllen https://t.co/r8QgEJnRDf +06/29/2018,Comedians,@TheEllenShow,Remember to make some time for yourself this summer. https://t.co/AB7tgGqdvB +06/29/2018,Comedians,@TheEllenShow,Macey’s RV went to Las Vegas! Grandma went ziplining! Check out Episode 2 right here. #ThanksSponsor https://t.co/tV1ZLUNqBu +06/29/2018,Comedians,@TheEllenShow,".@AliWong is hilarious. Please, no one ever make me have a baby. https://t.co/B4Gom4PeA0" +06/29/2018,Comedians,@TheEllenShow,"West Coast, you’re gonna see this and so much more on tonight’s episode of #LittleBigShots! https://t.co/oLCQON5Oxr" +06/28/2018,Comedians,@TheEllenShow,.@TheMandyMoore is really bucking good at this game. https://t.co/VFwRG8gZVc +06/28/2018,Comedians,@TheEllenShow,Marrying Portia was the best thing I ever got to do. I hope everyone gets to experience that joy. (You can’t all ma… https://t.co/GyJIfhgu91 +06/28/2018,Comedians,@TheEllenShow,"Happy birthday, @KelliePickler! Nobody pickles like you." +06/28/2018,Comedians,@TheEllenShow,There’s nothing better on a hot summer day than some @TheKalenAllen and Snickers Ice Cream. #ThanksSponsor https://t.co/idptN645wk +06/27/2018,Comedians,@TheEllenShow,"Someone watching Go RVing with Macey on @ellentube is gonna win $25,000! Is it you? #ThanksSponsor https://t.co/Qqu1ihTnR4" +06/27/2018,Comedians,@TheEllenShow,"Sometimes, being true to yourself can feel like the biggest risk, but there’s no greater reward. @ellentube #Pride https://t.co/8QonEn1Ddu" +06/27/2018,Comedians,@TheEllenShow,Clear the beaches. https://t.co/mBraCW7AS9 +06/27/2018,Comedians,@TheEllenShow,"Someone watching my show this week is gonna win $10,000 in my Road to Riches app! If you watched, download it here… https://t.co/GwfuiI4BpU" +06/27/2018,Comedians,@TheEllenShow,#LittleBigShots is on tomorrow night! Get ready for some major talent from some minor performers. https://t.co/Fo8svt3h0m +06/27/2018,Comedians,@TheEllenShow,"Happy birthday, @khloekardashian! This tweet is good for one hour of babysitting from Auntie Ellen. (Offer excludes… https://t.co/TLiPtgo3zB" +06/26/2018,Comedians,@TheEllenShow,"Get a head start on your 4th of July gear in The Ellen Shop! +🇺🇸 Promo code: ellenjuly20 https://t.co/PeXDMNEw4d https://t.co/9VI6IMffe1" +06/26/2018,Comedians,@TheEllenShow,Who do we think will take home the final rose? Who will drink too much rosé? Find out on this week’s Bachelorette R… https://t.co/UFNusw8pIt +06/26/2018,Comedians,@TheEllenShow,Throwback to the first time Elton John was on my show. @eltonofficial #Pride2018 https://t.co/s7ElrEumlj +06/26/2018,Comedians,@TheEllenShow,"This is my producer Alissa’s dog, Fanny, named after Fanny Brice. This felt appropriate for #Pride Week. https://t.co/AwD3y3yZXe" +06/26/2018,Comedians,@TheEllenShow,I’ll never forget the moment when @BarackObama became the first sitting president to support marriage equality. Hap… https://t.co/ohVfXtPcu7 +06/26/2018,Comedians,@TheEllenShow,.@RuPaul brought the extravaganza eleganza to my show. Celebrating #Pride on @ellentube this week! https://t.co/CjL6oa52xf +06/26/2018,Comedians,@TheEllenShow,"Happy birthday, @SeanHayes and @ArianaGrande! You have so much in common. You’re gay icons, you can hit a high E ov… https://t.co/VQ8Ot4rQGT" +06/25/2018,Comedians,@TheEllenShow,"This week, you can pay forward the adoption fee for a dog or a cat in need. Seems like a great thing to do for $25.… https://t.co/F6pDIC2hyu" +06/25/2018,Comedians,@TheEllenShow,"Happy birthday, @RickyGervais! I hope you have a ball. https://t.co/8KSfvVp51O" +06/25/2018,Comedians,@TheEllenShow,"It’s so hot! How bad do you wish you could play ""Make It Rain"" right now? https://t.co/jl0ymjiDLG" +06/25/2018,Comedians,@TheEllenShow,"Claire and @DaveCrosby are about to take you, wonder by wonder. https://t.co/xa0MxsnJNX" +06/25/2018,Comedians,@TheEllenShow,This week on @ellentube is #Pride Week! We’ve come so far. We’ve helped so many. We’re ready to fight for what come… https://t.co/Kydt3NWor4 +06/24/2018,Comedians,@TheEllenShow,.@HeadsUp has a new soccer deck! Something tells me you might wanna play it today. #WorldCup https://t.co/A71CUsU09j https://t.co/27ipi4lVX9 +06/23/2018,Comedians,@TheEllenShow,Happy #NationalPinkDay! https://t.co/CneBM8RUmK +06/23/2018,Comedians,@TheEllenShow,"It wouldn’t be #SaturKay without @TheKalenAllen! + +Watch the full clip here: https://t.co/yezQ7MhisU https://t.co/or9ekXgBPI" +06/22/2018,Comedians,@TheEllenShow,Summer vibe. https://t.co/7x4r3BNzLk +06/22/2018,Comedians,@TheEllenShow,Macey is back on the road! Check out all the fun she had in San Francisco in the first episode of Season 2 of Macey… https://t.co/a8iuUZ8Kx8 +06/22/2018,Comedians,@TheEllenShow,Amy came here all the way from China to dance on my show. It was definitely worth the trip. https://t.co/qp3i468S6a +06/22/2018,Comedians,@TheEllenShow,"Happy birthday, Meryl Streep! I hope you have a wonderful day and don’t have to give birth while reporting on the t… https://t.co/WBwVPVelVi" +06/22/2018,Comedians,@TheEllenShow,Chacha is the world’s tiniest fitness guru. She’s a Fitbit. #LittleBigShots https://t.co/eedBLQmHdE +06/21/2018,Comedians,@TheEllenShow,Pool security. https://t.co/rzxD3SMuRj +06/21/2018,Comedians,@TheEllenShow,This @KobeBryant surprise was a slam dunk. @Arike_O https://t.co/258ruascEj +06/21/2018,Comedians,@TheEllenShow,"The first time Beyoncé was on my show, she was a single lady. #TBT https://t.co/XGd7fM9hbN" +06/21/2018,Comedians,@TheEllenShow,.@StephenCurry30 and @AyeshaCurry really know how to spice things up. https://t.co/VNXaAFs7cS +06/21/2018,Comedians,@TheEllenShow,"Happy birthday, @prattprattpratt. I’ll see you tomorrow. #JurassicWorld" +06/21/2018,Comedians,@TheEllenShow,"Happy #NationalSelfieDay, Bradley Cooper. https://t.co/BoUFC6ZHuD" +06/20/2018,Comedians,@TheEllenShow,These singers are ridiculously good. #LittleBigShots is on tomorrow night! https://t.co/1EFw39t8td +06/20/2018,Comedians,@TheEllenShow,She really is brielle-iant. https://t.co/3hGgZH02Pa +06/20/2018,Comedians,@TheEllenShow,"Happy birthday, Nicole Kidman! Did you know your husband @KeithUrban has his own online dictionary? I’m learning so much from it." +06/20/2018,Comedians,@TheEllenShow,Dwayne Johnson and Kevin Hart make me happy. @TheRock @KevinHart4real https://t.co/NRnl14Qzv3 +06/20/2018,Comedians,@TheEllenShow,It’s #WorldRefugeeDay. Do an act of kindness for a refugee today. https://t.co/0JYZBYmibu +06/20/2018,Comedians,@TheEllenShow,"Bruce @Springsteen, I love you. https://t.co/8Ta0aSGumU" +06/20/2018,Comedians,@TheEllenShow,"Rachel @Maddow is a brilliant journalist, but this news was too much for her. It’s too much for me too. https://t.co/EoZ4y5bIit" +06/19/2018,Comedians,@TheEllenShow,Sounds like @RyanGosling and Harrison Ford got along great. https://t.co/CRM3TefJLU +06/19/2018,Comedians,@TheEllenShow,Who watched #TheBachelorette this week? My recap is back! https://t.co/Ygsw42ZD9f +06/19/2018,Comedians,@TheEllenShow,"This photo haunts me, but I thank @JBMoorephoto for posting it, because it captures the heartbreaking truth of what… https://t.co/raGp3BWGaN" +06/19/2018,Comedians,@TheEllenShow,Now that’s some good material. https://t.co/aKlMgvkC8S +06/19/2018,Comedians,@TheEllenShow,Are you watching my show this week? Of course you are. Can you win $10K in my Road to Riches game? Of course you ca… https://t.co/5cC6ns7Lze +06/19/2018,Comedians,@TheEllenShow,I hope @KanyeWest is happy about this. @KimKardashian https://t.co/DOZVapr6KX +06/19/2018,Comedians,@TheEllenShow,"Happy birthday, @Macklemore! I’m popping tags in your honor. Whatever that means." +06/18/2018,Comedians,@TheEllenShow,#Summer https://t.co/JRL209OdS7 +06/18/2018,Comedians,@TheEllenShow,Maura’s Navy boyfriend wrote me a letter since he knew she was going to be in my audience. He wished he could be he… https://t.co/bQ5fUwInIN +06/18/2018,Comedians,@TheEllenShow,This one’s for all the dog lovers. https://t.co/uBsMwqltfW +06/18/2018,Comedians,@TheEllenShow,Ayrton and Alex have big dreams of going to college. Watching them come true was one of my favorite things this sea… https://t.co/NAhC7X0uhb +06/18/2018,Comedians,@TheEllenShow,"I don’t care what your politics are, we can’t be a country that separates children from their parents. Do something… https://t.co/4a52Tnzi8q" +06/18/2018,Comedians,@TheEllenShow,"Happy birthday, @BlakeShelton! I wanted you to have the biggest, most wonderful birthday gift, but you already have @GwenStefani." +06/17/2018,Comedians,@TheEllenShow,"Happy birthday, @kendricklamar. You won a Grammy and a Pulitzer this year. Good luck staying humble with all that." +06/16/2018,Comedians,@TheEllenShow,".@theKalenAllen has a whole new roundup of the internet’s best videos. #SaturKay + +Watch the full clip on @ellentube… https://t.co/yc4IwlgJR1" +06/15/2018,Comedians,@TheEllenShow,Who’s ready for the weekend? https://t.co/UoeYa0PVjo +06/15/2018,Comedians,@TheEllenShow,Happy birthday to my friend @CourteneyCox! I adore you. +06/15/2018,Comedians,@TheEllenShow,I thought this would make you extra joyful today. @TiffanyHaddish @Oprah https://t.co/djKfFJssbA https://t.co/GOkRFdG9UV +06/15/2018,Comedians,@TheEllenShow,#RelationshipGoals @ChrissyTeigen @JohnLegend https://t.co/0xAysQcYMJ +06/15/2018,Comedians,@TheEllenShow,"Maesi is an incredible young dancer. I’m a big fan. West Coast, it’s almost your turn! #LittleBigShots https://t.co/rLv7QhpT4w" +06/14/2018,Comedians,@TheEllenShow,Tonight’s episode of #LittleBigShots has some amazing little ninja warriors. Don’t miss it! +06/14/2018,Comedians,@TheEllenShow,@USFigureSkating @HeadsUp @KaitlinHawayek @jeanlucbaker #NewOlympicEvent +06/14/2018,Comedians,@TheEllenShow,It’s not every day a billionaire stops by your stage. @BillGates https://t.co/WtnNGwZZSG +06/14/2018,Comedians,@TheEllenShow,This is one of my favorite performances of the season. #Havana Ooh na na @Camila_Cabello https://t.co/aRcUxbwrcy +06/14/2018,Comedians,@TheEllenShow,"I’m doing my first standup shows in 15 years. I’m coming to Seattle, San Francisco and San Diego. Come see me.… https://t.co/69iyHZZgPo" +06/14/2018,Comedians,@TheEllenShow,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/13/2018,Comedians,@TheEllenShow,This little girl is a ninja. Seriously. Don’t miss #LittleBigShots tomorrow night! https://t.co/baAHDogUdX +06/13/2018,Comedians,@TheEllenShow,Threepee https://t.co/P9brJ0D8ks +06/13/2018,Comedians,@TheEllenShow,"I’m nominated for a #TeenChoice Award! You can vote for me right here, or Snapchat a GIF of a meme or something. I’… https://t.co/j987hL0Hou" +06/13/2018,Comedians,@TheEllenShow,.@TheKalenAllen is what the internet was created for. https://t.co/oQ16WIVdMZ +06/13/2018,Comedians,@TheEllenShow,Guess who’s taking over my show today? @thekalenallen https://t.co/msfoYjid5j +06/12/2018,Comedians,@TheEllenShow,There were two very special guests in my Bachelorette Recap this week. Find out what @AshleyIaco and @Haibon_Jared… https://t.co/0UYvemvNUD +06/12/2018,Comedians,@TheEllenShow,It doesn’t get much more adorable than father-daughter singing duo Claire and @DaveCrosby. https://t.co/wQVqrPawDy +06/12/2018,Comedians,@TheEllenShow,New episodes of #LittleBigShots start Thursday! Is your little big shot ready? https://t.co/ytYIooazJb +06/12/2018,Comedians,@TheEllenShow,Nate Seltzer has to be one of my favorite guests of the season. Watch this and you’ll see why. https://t.co/yTAa5LmNTu +06/12/2018,Comedians,@TheEllenShow,Much better. #Oceans8 Week https://t.co/DQbeJVNIhl +06/11/2018,Comedians,@TheEllenShow,Send me your cute summer photos! Summer great. Summer better than great. #ellen15 https://t.co/67LY5B2mGU +06/11/2018,Comedians,@TheEllenShow,".@HowieMandel told me about Meghan Markle’s days on ""Deal or No Deal."" + +Watch the full clip on @ellentube:… https://t.co/GiPzigOjGz" +06/11/2018,Comedians,@TheEllenShow,"I was unprepared for how funny @Shaq with tiny hands would be. + +Watch the full clip on @ellentube:… https://t.co/4mb05m9E8n" +06/11/2018,Comedians,@TheEllenShow,It’s #Oceans8 Week on @ellentube! I love these women. https://t.co/8L7xqnfZ3I +06/11/2018,Comedians,@TheEllenShow,The young people will win. #MarchForOurLives #RoadToChange https://t.co/hBI32F5Rqo +06/09/2018,Comedians,@TheEllenShow,"Nobody recaps the week on the internet like @TheKalenAllen. #SaturKay + +Watch the full clip on @ellentube:… https://t.co/783774bL7u" +06/08/2018,Comedians,@TheEllenShow,"#Oceans8 opens tonight, and next week on @ellentube is ""Ocean’s 8"" Week! You don’t wanna miss either.… https://t.co/ZFQeXF6JYB" +06/08/2018,Comedians,@TheEllenShow,"#FathersDay is next weekend! You know the old saying – dads love Ellen underwear. https://t.co/PeXDMNEw4d + +Discount… https://t.co/MLkGp9iiNT" +06/08/2018,Comedians,@TheEllenShow,Cousins. https://t.co/bIqr2LAC8w +06/08/2018,Comedians,@TheEllenShow,"It’s #WorldOceansDay. By 2050, there will be more plastic waste in the sea than fish. We can change this. Sign here… https://t.co/mSj2u00faJ" +06/08/2018,Comedians,@TheEllenShow,"To everyone who’s reading this... I see you. I know the world can be a dark place, but it's better with you in it.… https://t.co/Jy1KMgaDLz" +06/07/2018,Comedians,@TheEllenShow,Hanging out with elephants at @DSWT was a dream come true. #BeKindToElephants https://t.co/sjA1tMPlCl +06/07/2018,Comedians,@TheEllenShow,"It sounds like Anne Hathaway really bonded with @Rihanna. + +Watch the full clip on @ellentube:… https://t.co/cvoZO4jku7" +06/07/2018,Comedians,@TheEllenShow,.@DarrenCriss is good at everything. Accents included. @HeadsUp https://t.co/nkG0Wx9PrL +06/07/2018,Comedians,@TheEllenShow,"Anne Hathaway is fearless... except when you scare her. + +Watch the full clip on @ellentube: https://t.co/vcyPuSgEAP https://t.co/V2Wu8E86UV" +06/07/2018,Comedians,@TheEllenShow,I ❤ Prince. I miss him. https://t.co/1uEj5CMRPi +06/07/2018,Comedians,@TheEllenShow,@DarrenCriss @HeadsUp ❤️ +06/06/2018,Comedians,@TheEllenShow,"Happy #GlobalRunningDay, everybody! I know the best way to get people to start running. https://t.co/cLijj38LfW" +06/06/2018,Comedians,@TheEllenShow,"Apparently, the “L” in @SamuelLJackson stands for ""Language Alert.” https://t.co/CAP3bK4D2k" +06/06/2018,Comedians,@TheEllenShow,"In this game you have to taste foods blindfolded while your friend is on your back. If that sounds strange, it abso… https://t.co/CPUnwQsc43" +06/06/2018,Comedians,@TheEllenShow,".@SamuelLJackson can have as many seconds as he needs in this round of ""5 Second Rule."" + +Watch the full clip here:… https://t.co/5T1jxQ1Gjv" +06/06/2018,Comedians,@TheEllenShow,@DanReynolds I told you! ❤ +06/06/2018,Comedians,@TheEllenShow,@Imaginedragons @DanReynolds This was great. Next time bring dragons. +06/06/2018,Comedians,@TheEllenShow,".@DanReynolds' new documentary, “Believer,” details his questions about his Mormon faith, and his belief in LGBT eq… https://t.co/gw5JSl7ORT" +06/05/2018,Comedians,@TheEllenShow,#TheBachelorette Recap has a special guest star this week – @TheKalenAllen! https://t.co/4PhXz7rMqn +06/05/2018,Comedians,@TheEllenShow,"Sometimes, Tuesday can feel more like Sundae. https://t.co/7XfC69UeBO" +06/05/2018,Comedians,@TheEllenShow,This game combines Tic Tac Toe and hunks... if you’re into that kind of thing. https://t.co/ktw02VCHkA +06/05/2018,Comedians,@TheEllenShow,My friend Jim Parsons told me about his new role and his dogs. https://t.co/XqxUnTFVef +06/05/2018,Comedians,@TheEllenShow,#BurningQuestions with @Diddy! That’s what I’m talking about. https://t.co/85cubgtWIq +06/05/2018,Comedians,@TheEllenShow,"Young Dylan is humble. + +Watch the full clip here: https://t.co/cVouGhCL2m https://t.co/57HXY4UNfu" +06/05/2018,Comedians,@TheEllenShow,"Happy birthday, @MarkWahlberg. Today should be a national holiday. https://t.co/xg4rtx2XEh" +06/05/2018,Comedians,@TheEllenShow,"If you want to see change in our country, today is your chance. Get up. Get out. Vote. California, Montana, Alabama… https://t.co/2n7rXgJcQj" +06/05/2018,Comedians,@TheEllenShow,RT @mindykaling: “Act natural” @TheEllenShow https://t.co/UKzVTsfGnm +06/04/2018,Comedians,@TheEllenShow,"Thank you to all of the amazing people I met on my trip, who helped make it so special. https://t.co/w4sQop7yfR" +06/04/2018,Comedians,@TheEllenShow,"This is my foster elephant, Enkesha. She was found as a baby with her trunk caught in a snare. The David Sheldrick… https://t.co/9jJ7Afv6K5" +06/04/2018,Comedians,@TheEllenShow,@Michaelraymusic Come back soon please. Your new friend already misses you. +06/04/2018,Comedians,@TheEllenShow,This love story is so surprising and absolutely beautiful. https://t.co/fKZ08yBONE +06/04/2018,Comedians,@TheEllenShow,I love giving away big checks. I never thought about how to cash them. https://t.co/f1j9TXfnAR +06/04/2018,Comedians,@TheEllenShow,.@DavidSpade listing the things you won’t find in his house is the funniest thing you’ll see all day. https://t.co/OUd2r23rSr +06/04/2018,Comedians,@TheEllenShow,".@MindyKaling and I texted all the stars of #Oceans8. Guess who texted back. + +Watch the full clip here:… https://t.co/tlV2jNvg4n" +06/04/2018,Comedians,@TheEllenShow,"I loved meeting the President of Rwanda. Thank you, @PaulKagame, for supporting @EDWildlifeFund and gorilla conserv… https://t.co/9lkgpztvNO" +06/03/2018,Comedians,@TheEllenShow,"Thank you, Angela and Robert for an incredible day at the David Sheldrick Wildlife Trust @DSWT. What you’re doing t… https://t.co/KiZ4dmB6mq" +06/02/2018,Comedians,@TheEllenShow,"Kickin’ the weekend off right with @theKalenAllen. #SaturKay + +Watch it on @ellentube: https://t.co/mjA70aXqic https://t.co/1pdromXJFF" +06/02/2018,Comedians,@TheEllenShow,This was us about to start our three-mile trek up the mountain to see the gorillas. Every moment of it was incredib… https://t.co/08SvYWjGxF +06/01/2018,Comedians,@TheEllenShow,This trip has been pretty great sofari. https://t.co/CYi2QAAuvL +06/01/2018,Comedians,@TheEllenShow,I loved every minute of this new series with @official_tWitch. Watching him surprise these students made me very ha… https://t.co/zdVZfUJeiv +06/01/2018,Comedians,@TheEllenShow,Happy birthday to one of the funniest blondes I know. It takes one to know one. @AmySchumer https://t.co/thLHQ9p696 +06/01/2018,Comedians,@TheEllenShow,".@iamcardib is a lot of fun to talk to, like a lot of fun. https://t.co/a6dlw1eDDy" +06/01/2018,Comedians,@TheEllenShow,Everything is better with @JLo. https://t.co/YilegsYkAU +06/01/2018,Comedians,@TheEllenShow,".@KymDouglas, I’m sending you love, light, and healing thoughts. From me and everyone at my show. https://t.co/kMFHmhi6YW" +05/31/2018,Comedians,@TheEllenShow,This is Dian Fossey’s desk in Rwanda. Sitting here and helping carry on her mission moved me more than I can expres… https://t.co/0WZA3yu45E +05/31/2018,Comedians,@TheEllenShow,I’ve waited my whole life to make this trip. https://t.co/J2GNciu9Oy +05/31/2018,Comedians,@TheEllenShow,"I can’t imagine what it would be like to have @iamJamieFoxx as a dad, but it sounds amazing and scary at the same t… https://t.co/yHI8widiqD" +05/31/2018,Comedians,@TheEllenShow,"Lil' Mushroom is here all the way from China! Big Crouton was very excited about it. + +Watch the full clip here:… https://t.co/SrIO0vJrmU" +05/31/2018,Comedians,@TheEllenShow,".@FallOutBoy performed their new hit, “The Last of The Real Ones.” Watch it here. https://t.co/26GTHFycLp" +05/31/2018,Comedians,@TheEllenShow,"Happy birthday, Clint Eastwood and Colin Farrell. Seems like an extra-handsome day to be born." +05/31/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: Today is the last day you can enter to win a trip to visit a wildlife sanctuary with @EllenPompeo! We can’t imagine any… +05/31/2018,Comedians,@TheEllenShow,I asked @IMKristenBell to guest host my show. She wound up dangling 30 feet in the air with @iamjamiefoxx’s daughte… https://t.co/ZGnCmYmMvA +05/31/2018,Comedians,@TheEllenShow,.@IMKristenBell picked up my hosting duties perfectly. Step 1: Scare @AndyLassner. https://t.co/iRF6QgBC98 https://t.co/wpUlTJyXpg +05/31/2018,Comedians,@TheEllenShow,".@IMKristenBell is my guest host today, and she had a lot of questions to answer about Elsa. https://t.co/SPJl19Ux3G" +05/31/2018,Comedians,@TheEllenShow,"I love being a part of this video, and I love you, @AdamLevine. @Maroon5 #GirlsLikeYou https://t.co/Jn5ly9t5Yy" +05/31/2018,Comedians,@TheEllenShow,@DebraMessing @SeanHayes It worked for my DJ. +05/31/2018,Comedians,@TheEllenShow,@SeanHayes You were hilarious and charming and wonderful just like I knew you would be. +05/30/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: Spending time with these gorillas changed my life. Thank you to everyone who is helping Dian Fossey Gorilla Fund @Savin… +05/30/2018,Comedians,@TheEllenShow,"I can’t begin to describe what this experience was like, or how much it means to me. I’m so grateful. https://t.co/nuoRaPsVnu" +05/30/2018,Comedians,@TheEllenShow,We found them. @EDWildlifeFund @SavingGorillas https://t.co/MXpe7gudsA +05/30/2018,Comedians,@TheEllenShow,"Zoey is only 6, and she already knows more Shakespeare than @SeanHayes. https://t.co/elNxT01fY3" +05/30/2018,Comedians,@TheEllenShow,"It’s Wednesday, but it feels more like Munnday. @OliviaMunn @SeanHayes + +Watch the full clip here:… https://t.co/op344VTluh" +05/30/2018,Comedians,@TheEllenShow,.@SeanHayes is guest-hosting my show today... in case you’re confusing him with someone else. https://t.co/lw96pQ80fs +05/29/2018,Comedians,@TheEllenShow,"#TheBachelorette is BACK, and so is my staff recap! Who are your top picks this season? https://t.co/3h3wYfdSNg https://t.co/stngILAuCy" +05/29/2018,Comedians,@TheEllenShow,This new series with @official_tWitch may be one of our best ideas yet. Watch the whole #tWitchPlease episode this… https://t.co/QUPu26J1mI +05/29/2018,Comedians,@TheEllenShow,I demanded @BrandiCarlile to perform this on my show. She literally had no choice. https://t.co/pzUl76WL7B +05/29/2018,Comedians,@TheEllenShow,The only thing better than watching people on my Scary Go Round is watching teams of people on my Scary Go Round. https://t.co/bOsxHurvHH +05/29/2018,Comedians,@TheEllenShow,"Jon Hamm told me about his first acting gig, which happened to be with my wife! https://t.co/PfnQEmyXsf" +05/29/2018,Comedians,@TheEllenShow,"Happy birthday, @LaverneCox! I hope you’re somewhere dancing with Beyoncé." +05/29/2018,Comedians,@TheEllenShow,"RT @EDWildlifeFund: Ellen, Portia, Dr. Tara Stoinski in Rwanda working with Dian Fossey Gorilla Fund @SavingGorillas. You can help! Get you…" +05/28/2018,Comedians,@TheEllenShow,It’s an itsy bitsy teeny weeny coral polka dot bikini. https://t.co/4Irj0inwR8 +05/26/2018,Comedians,@TheEllenShow,"I love this amazing proposal @official_tWitch pulled off for this couple. Thank you, @Buick, for making this show p… https://t.co/JkotGpeEHh" +05/26/2018,Comedians,@TheEllenShow,Giraffes! #giraffemanor #discoverthesafaricollection https://t.co/5mzVASvPex +05/26/2018,Comedians,@TheEllenShow,Just ordering breakfast on our vacation. #giraffemanor #discoverthesafaricollection https://t.co/UlIZmkOIxL +05/26/2018,Comedians,@TheEllenShow,Quick question: Who likes a good deal? #MemorialDayWeekend2018 https://t.co/HDBOosvc6J https://t.co/tMfNdj7Xbh +05/26/2018,Comedians,@TheEllenShow,She could’ve used a little more rehearsal. https://t.co/166wcczuMs +05/25/2018,Comedians,@TheEllenShow,.@BTS_twt has an amazing army of followers. Even Panda Express is a fan. #ThanksSponsor #BTSxEllen https://t.co/5O9lOBg24z +05/25/2018,Comedians,@TheEllenShow,He’s gonna teach that baby so much... like where to get a perm. https://t.co/wcbBfVqs3O +05/25/2018,Comedians,@TheEllenShow,How did you do in this Weally Wacky Walmart Wace? #ThanksSponsor https://t.co/AwCGtzplpH +05/25/2018,Comedians,@TheEllenShow,@donnyosmond ❤️ +05/25/2018,Comedians,@TheEllenShow,.@official_tWitch helping this sweet guy propose is absolutely going to make your whole weekend. #tWitchplease https://t.co/g3UwMIgHUk +05/25/2018,Comedians,@TheEllenShow,"I played ""What’s in My Honeypot?"" with Ewan McGregor. You heard me. @mcgregor_ewan #WinnieThePooh https://t.co/eC8i6GUbw3" +05/25/2018,Comedians,@TheEllenShow,Raise your hand if you have real love for #FakeLove. @BTS_twt #BTSxEllen https://t.co/6BbmWlt9jw +05/25/2018,Comedians,@TheEllenShow,"Happy birthday, @OctaviaSpencer! I love everything you do, even though you asked that lady about her fish-boyfriend’s penis." +05/25/2018,Comedians,@TheEllenShow,"I scared the S out of BTS. @BTS_twt #BTSxEllen + +Watch the full clip here: https://t.co/yb6o0xw9dT https://t.co/a7nuSmZ6Pv" +05/25/2018,Comedians,@TheEllenShow,#WinniethePooh is back! Check out the exclusive #ChristopherRobin trailer debut right here. It’s in theaters August… https://t.co/ZoDBKEph9Q +05/25/2018,Comedians,@TheEllenShow,You are not gonna believe what happens tomorrow. @BTS_twt #BTSxEllen https://t.co/BU63ndELj7 +05/25/2018,Comedians,@TheEllenShow,"Happy 5th birthday, @HeadsUp! Check out all the exciting new content in our birthday update! https://t.co/DghgP4rqvB https://t.co/U2C93ZWqT8" +05/24/2018,Comedians,@TheEllenShow,"Amy Poehler and @Nick_Offerman are here with some lumber. + +Watch the full clip here: https://t.co/CKVza8To7K https://t.co/irUPvZPdKr" +05/24/2018,Comedians,@TheEllenShow,#RedNoseDay is tonight on @NBC. Don’t just donate because @official_tWitch is so adorable. Do it for the kids. But… https://t.co/DK0AA24qIj +05/24/2018,Comedians,@TheEllenShow,"Now I know exactly what I’m getting @TigNotaro’s twins for their birthday. Garbage. + +Watch the full clip here:… https://t.co/4FcFY6sgE3" +05/24/2018,Comedians,@TheEllenShow,.@SterlingKBrown told me the beautiful reason why he changed his name. https://t.co/XTvpELFXLW +05/24/2018,Comedians,@TheEllenShow,"@brandicarlile @nbc I love you, and I think you’re absolutely incredible." +05/24/2018,Comedians,@TheEllenShow,"Amy Poehler and @Nick_Offerman told me if they’d ever do another season of ""Parks and Rec."" https://t.co/EMpJD2YqQr" +05/24/2018,Comedians,@TheEllenShow,"We’ve been scaring people for at least 10 years, and @SterlingKBrown may be my favorite so far. + +Watch the full cli… https://t.co/tqu3IvgdyR" +05/24/2018,Comedians,@TheEllenShow,"Here’s the first look at the new #ChristopherRobin poster. I’m still not quite sure what a “pooh” is, but this is a… https://t.co/eqNZc7l80K" +05/23/2018,Comedians,@TheEllenShow,"@Ripple @aplusk @guyoseary @EDWildlifeFund If this is what they mean by the ripple effect, I’m into it and I’m so grateful to you." +05/23/2018,Comedians,@TheEllenShow,Two. More. Days. @BTS_twt #BTSxEllen https://t.co/YB8luHx7Gi +05/23/2018,Comedians,@TheEllenShow,".@MarkWahlberg on the #RoyalWedding. + +Watch the full clip here: https://t.co/2BVLX5JleN https://t.co/M1NOS4LV2K" +05/23/2018,Comedians,@TheEllenShow,I definitely think they can dance. #SYTYCD https://t.co/ZmHxtkWA4v +05/23/2018,Comedians,@TheEllenShow,"Dickson didn’t know he was a finalist in my Dance Dare Challenge, and he definitely didn’t know he was the winner.… https://t.co/PMXNg2K9Te" +05/23/2018,Comedians,@TheEllenShow,"Thank you, @NickiMinaj, for putting me in another music video. #ChunLi #Blessed + +Watch the full clip here:… https://t.co/DOe8Cn9DNt" +05/23/2018,Comedians,@TheEllenShow,"I don’t surprise easily, but this really got me. I am so grateful. I love you both so much. @aplusk @guyoseary https://t.co/BITMK0vF5E" +05/23/2018,Comedians,@TheEllenShow,West Coast! The season finale of #SplittingUpTogether is on! Then you’ll have all summer to get excited for season 2! +05/23/2018,Comedians,@TheEllenShow,The season finale of #SplittingUpTogether starts in 5 minutes! Stop looking at this little screen and start looking… https://t.co/5I6qySmspB +05/22/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: The new EDWF #EDEllenDeGeneres shoes are perfect for any occasion... like sitting on a couch and thinking about gorilla… +05/22/2018,Comedians,@TheEllenShow,OMG. I scared @bts_twt. #BTSxEllen https://t.co/wJMrZJoU0f +07/02/2018,Comedians,@chelseahandler,"As someone who knows nothing about basketball, I’m just happy LeBron will be making more money than Trump." +07/01/2018,Comedians,@chelseahandler,Good riddance. There should be zero tolerance for any racism in this country after what we did for 250 years to bla… https://t.co/LRVPDSPbAc +07/01/2018,Comedians,@chelseahandler,"People who stand up against these violations of basic human rights are necessary and should be applauded, because t… https://t.co/AgWlItJqm9" +07/01/2018,Comedians,@chelseahandler,"@AlyssaMastro44 @JFKairport Girl, Igor you a segway for a reason" +07/01/2018,Comedians,@chelseahandler,To tell him they’re sorry that our president is such a dumb ass. https://t.co/HXJLNOovdT +07/01/2018,Comedians,@chelseahandler,"RT @thebryanpaulk: Since you’re a Republican, have you tried putting him in a cage and separating him from his mother for 2 months? https:…" +07/01/2018,Comedians,@chelseahandler,You can also vote for @Lina4HC who is running for Harris County judge and who will do more to fix this broken syste… https://t.co/aNP72TNB4S +06/30/2018,Comedians,@chelseahandler,"Now more than ever, it's crucial that we elect more pro-choice Democratic women to the House and Senate who will de… https://t.co/QQJKFR4wOL" +06/30/2018,Comedians,@chelseahandler,I like this woman. Missouri’s 1st. @CoriBush https://t.co/uPfYVl8Pe7 +06/30/2018,Comedians,@chelseahandler,RT @tedlieu: House Republicans held an emergency hearing into the investigation of Hillary's emails. They did not hold a hearing on the tho… +06/30/2018,Comedians,@chelseahandler,We need to be focused on supporting the candidates who can win and change these terrible practices this administrat… https://t.co/iKhIkYYjsu +06/30/2018,Comedians,@chelseahandler,RT @emilyslist: The Supreme Court is at stake. We need to flip two seats to take back the Senate. And we've endorsed two pro-choice Democra… +06/29/2018,Comedians,@chelseahandler,Please retweet this and make sure thes “officers” lose their jobs. https://t.co/JMkmaomJBS +06/28/2018,Comedians,@chelseahandler,If anyone thinks comparing what’s happening in our country to the Holocaust or to the handmaids tale is “ridiculous… https://t.co/LvYRz2lZ8n +06/28/2018,Comedians,@chelseahandler,You have my support @JanzforCongress https://t.co/MOrfJFDG1X +06/28/2018,Comedians,@chelseahandler,"RT @cmclymer: Sweetie, white men make up 67% of Congress, 56% of Supreme Court seats, 94% of Fortune 500 CEOs, and 44 of 45 U.S. presidents…" +06/28/2018,Comedians,@chelseahandler,"Wait. #Progressive NJ @GovMurphy protected @PPACtionNJ, voting rights, toughened gun laws, sued Trump over Dreamers… https://t.co/EnmDjDscVl" +06/28/2018,Comedians,@chelseahandler,Trump and Putin are going to meet on July 16th in Finland… Which means Trump has two weeks to get in shape to fit i… https://t.co/Qo6Z6Nqelm +06/28/2018,Comedians,@chelseahandler,"After Joe Crowley's loss, the Center for American Progress and End Citizens United are calling for Democrats to ref… https://t.co/2yjzoJQZEH" +06/28/2018,Comedians,@chelseahandler,"RT @JackiSchechner: If @realDonaldTrump ever paid for your abortion, now would be a really good time to speak up." +06/28/2018,Comedians,@chelseahandler,"From @emilyslist +Here's some good news: Nine of our candidates on the ballot yesterday in Colorado, Maryland, and… https://t.co/Qh3dFeZ13x" +06/27/2018,Comedians,@chelseahandler,You inspire me. Thanks for reminding us of our voices and our duty of goodness to each other. https://t.co/d05dWuWkGZ +06/27/2018,Comedians,@chelseahandler,"Please vote, people. https://t.co/rE781IYzZU" +06/27/2018,Comedians,@chelseahandler,I want to hear from you. What issues matter most this election year? Take 30 seconds to record a video by following… https://t.co/N85UOpdK8h +06/27/2018,Comedians,@chelseahandler,It’s about time. https://t.co/9UjkvvPLK5 +06/27/2018,Comedians,@chelseahandler,RT @ava: Ignore the women of color replacing the old guard at your own peril. Three words: Alexandria Ocasio-Cortez. https://t.co/yoXFNb4Z… +06/27/2018,Comedians,@chelseahandler,Waking up to this woman gives me a lot of hope for the future of our party and for the future of our country.… https://t.co/pcNQHCqYTD +06/27/2018,Comedians,@chelseahandler,RT @emilyslist: Congrats to @RepDMB on winning her primary! https://t.co/Z8y6XSvyoF +06/27/2018,Comedians,@chelseahandler,Congratulations! https://t.co/QML7FV7wVq +06/27/2018,Comedians,@chelseahandler,"RT @funder: Republicans in Congress are a joke. + +They just moved to censure Maxine Waters and demand her resignation. For saying people wil…" +06/27/2018,Comedians,@chelseahandler,RT @emilyslist: Congrats to @JenaGriswold on advancing through her primary! https://t.co/uQwIQfhVxk +06/27/2018,Comedians,@chelseahandler,RT @GwenGraham: It is unbelievable that @realDonaldTrump is cutting off housing assistance for hundreds of Puerto Rican families in Florida… +06/27/2018,Comedians,@chelseahandler,"RT @PodSaveAmerica: ""For the first time in history, we have recruited a Democratic candidate for every single seat in the legislature. 77 o…" +06/26/2018,Comedians,@chelseahandler,Trump has reportedly told Sarah Huckabee that he is going to “grade” her appearances in public. What a fun time tha… https://t.co/SNo1UXMktR +06/26/2018,Comedians,@chelseahandler,"RT @rgoodlaw: Further plunge into civil rights nightmare for America: + +Leaked audio footage of employee at child migrant detention facility…" +06/26/2018,Comedians,@chelseahandler,"RT @swingleft: YOU: college student dedicated to putting a check on Trump and the GOP. +WE: will train and mobilize you for the midterm elec…" +06/25/2018,Comedians,@chelseahandler,"@tedlieu I know how much scotch you drink, and you’re right. It’s not a lot." +06/25/2018,Comedians,@chelseahandler,"New York, Maryland, Colorado. There is an election on Tuesday with these @emilyslist endorsed candidates running! T… https://t.co/w3bWzVmzNF" +06/24/2018,Comedians,@chelseahandler,"New York - Get out the vote for these three women running for the House this Tuesday, June 26. +@ErinCollier2018 @liuba4congress @RepMaloney" +06/24/2018,Comedians,@chelseahandler,"Sounds like we need more people of color in office. If the consequence of Obama is Trump, then the consequence of T… https://t.co/NIbtMmJFys" +06/24/2018,Comedians,@chelseahandler,@TimChap45336298 @RepDMB @CaryKennedy That’s right! +06/24/2018,Comedians,@chelseahandler,"There’s an election in Colorado Colorado - On Tuesday, June 26, vote for @RepDMB for representative and… https://t.co/TtKdtUP7Tr" +06/23/2018,Comedians,@chelseahandler,"Maryland, on Tuesday vote for @arunamiller for representative. https://t.co/1drFzVwAwl" +06/23/2018,Comedians,@chelseahandler,"Hey New York. Get out and vote for these three women running for the House this Tuesday, June 26. +@ErinCollier2018… https://t.co/sSex8MrWUe" +06/23/2018,Comedians,@chelseahandler,"@CNN Well, what in the fuck is he waiting for?" +06/23/2018,Comedians,@chelseahandler,"@JimmyV08070562 Well, that’s nice for you, but some people need to be reminded that there is a lack of diversity at the table." +06/23/2018,Comedians,@chelseahandler,@LobotomyForABC @FLOTUS She’s an idiot who is married to a wannabe dictator. I can promote women who are strong and… https://t.co/JS4tjLEnxD +06/23/2018,Comedians,@chelseahandler,@debsstar57 Why are you following me? Why do you spend your time like that? +06/23/2018,Comedians,@chelseahandler,Who is going to enforce the rules of “decorum” with our president? https://t.co/vcTI1rxyjz +06/23/2018,Comedians,@chelseahandler,RT @tedlieu: 2300 kids were ripped away from parents with no real plan to reunite them. I can't play the @ProPublica audio of their cries f… +06/22/2018,Comedians,@chelseahandler,"This weekend, join people across the country and #StandForKids by starting a lemonade stand to raise money for grou… https://t.co/NgCUpQHRc4" +06/22/2018,Comedians,@chelseahandler,"This is a woman of color who I’ve hosted at my house, too. She’s incredible. When people tell me not to mention whe… https://t.co/qDk40Ega9h" +06/22/2018,Comedians,@chelseahandler,@deann_soqui I have plenty of Texan reps who are running. Go to my Facebook or countable page and look up Lina hidalgo! +06/22/2018,Comedians,@chelseahandler,RT @DavidLeopold: Good morning @SecNielsen. Kids don’t sleep in peace. You don’t sleep in piece. https://t.co/ha7NiTXFSZ +06/22/2018,Comedians,@chelseahandler,RT @TopherSpiro: BREAKING: The House GOP just voted a budget bill out of committee that fast tracks ACA repeal and $2 TRILLION in cuts to M… +06/22/2018,Comedians,@chelseahandler,"As i sit on a layover in Frankfurt, Germany, i have been asked by multiple people- do Americans understand what thi… https://t.co/fhUWRzhZar" +06/21/2018,Comedians,@chelseahandler,@Alyssa_Milano Love this +06/21/2018,Comedians,@chelseahandler,Another badass female running in Texas #23. I had this woman at my house and she inspired the shit out of everyone… https://t.co/PyUobBT2qr +06/21/2018,Comedians,@chelseahandler,"@debidevens @FLOTUS No, DONALD trump expedited her immigration for her. Look it up" +06/21/2018,Comedians,@chelseahandler,Maybe she’s just talking to you. https://t.co/ejzz1OLlXu +06/21/2018,Comedians,@chelseahandler,"RT @ActivateAmerica: @chelseahandler @FLOTUS SEEN ON TWITTER: +""We need to pause for a moment to appreciate the absurdity of the First +Lady…" +06/21/2018,Comedians,@chelseahandler,"@MatthewEnders2 @FLOTUS @realDonaldTrump @POTUS You’re the same person who says you can’t just vote for a woman, be… https://t.co/69rrJFRLiM" +06/21/2018,Comedians,@chelseahandler,The hypocrisy of @FLOTUS going down to the border to speak broken English to our refugees in that dumb jacket is a… https://t.co/WkA71WnYCm +06/21/2018,Comedians,@chelseahandler,Please read this article whether or not you believe refugees should be allowed in this country. They are placing ch… https://t.co/VvyxVE8cAz +06/21/2018,Comedians,@chelseahandler,"Yeah, female veterans are running throughout our country in NOVEMBER. This woman is running in Texas. Get on board! https://t.co/vG8IHzrTRF" +06/20/2018,Comedians,@chelseahandler,This is the guy running against @tedcruz in Texas and has a very good chance of beating him. We need real progressi… https://t.co/k7mKqz8Woj +06/20/2018,Comedians,@chelseahandler,"When people send their children to countries alone, it is because they are desperate to save their children from th… https://t.co/Qdv1LoscVh" +06/20/2018,Comedians,@chelseahandler,RT @TopherSpiro: .@SecAzar is this why you signed up for public service? To run baby jails? Your reputation will forever be tarnished. You… +06/20/2018,Comedians,@chelseahandler,"Guys, this is not right. This could be human trafficking. https://t.co/2zNbCfeLBk" +06/20/2018,Comedians,@chelseahandler,Alyssa Milano Discusses Trump & Crimes Against Humanity https://t.co/IXyq65aMIw via @YouTube +06/20/2018,Comedians,@chelseahandler,RT @franklinleonard: @kumailn There's an argument to be made that they actually love them more since they've established a willingness to r… +06/20/2018,Comedians,@chelseahandler,@ikebarinholtz I can’t take this anymore +06/20/2018,Comedians,@chelseahandler,This is what a leader looks like. #ChildInternmentCamps https://t.co/2fFIX9MCFK +06/20/2018,Comedians,@chelseahandler,"We just quit the UN citing “human rights abusers.” Um..,hello? All women from Trump’s administration should resign. https://t.co/xyp51UZCUq" +06/20/2018,Comedians,@chelseahandler,And here’s the woman who can flip CA #45 @katieporteroc https://t.co/QGXRAq6yBM +06/20/2018,Comedians,@chelseahandler,This is the man to flip CA #49 https://t.co/WM6U20mYjo +06/19/2018,Comedians,@chelseahandler,@mobracing1 @IngrahamAngle @AnnCoulter Anyone sending their child to a foreign botder without them is desperate for… https://t.co/XuLysPN3JT +06/19/2018,Comedians,@chelseahandler,@kumailn Congrats +06/19/2018,Comedians,@chelseahandler,"Hey @IngrahamAngle, if these detention centers are “essentially summer camps” why don’t you send your children ther… https://t.co/RlVY8yI9Gc" +06/19/2018,Comedians,@chelseahandler,"RT @TopherSpiro: 🚨🚨 BREAKING: The House GOP just released a budget bill that fast tracks ACA repeal, massive Medicare and Medicaid cuts, an…" +06/19/2018,Comedians,@chelseahandler,I’m sure all those crying babies are MS-13 members. The way to ensure permanent damage and create criminals is by p… https://t.co/kX5POV4Jrh +06/19/2018,Comedians,@chelseahandler,"RT @marycmccormack: We are very aware of the seriousness of the situation, and we're just very lucky that our children weren’t in the car.…" +06/19/2018,Comedians,@chelseahandler,RT @JasonKander: 👁❤️🇺🇸 https://t.co/btuirrf2r2 +06/19/2018,Comedians,@chelseahandler,More voter suppression in Kansas City. Pence and Trump’s guy. ⁦@KrisKobach1787⁩ let’s vote this guy out. thank you… https://t.co/2wpxAneJqI +06/19/2018,Comedians,@chelseahandler,"RT @renato_mariotti: When you have to explain to people why your policies aren't exactly like Nazi Germany, it's time to rethink your polic…" +06/19/2018,Comedians,@chelseahandler,https://t.co/WjlzryGC57 +06/19/2018,Comedians,@chelseahandler,"RT @renato_mariotti: If you live near Chicago, join me and many others on June 30th to protest the Administration's policy of separating im…" +06/19/2018,Comedians,@chelseahandler,@billyeichner Agreed +06/18/2018,Comedians,@chelseahandler,"RT @Alyssa_Milano: You are the only senator in the Democratic Party that has not signed on to the #KeepingFamiliesTogetherAct, @Sen_JoeManc…" +06/18/2018,Comedians,@chelseahandler,@jonfavs Seriously. +06/18/2018,Comedians,@chelseahandler,@Craig_Deas It doesn’t matter. Kids can’t be put in cages. That’s how you create mental problems. The parents are o… https://t.co/emIvMtIBlc +06/18/2018,Comedians,@chelseahandler,@metalnv @waltshaub Just did. Thanks +06/18/2018,Comedians,@chelseahandler,@DearBelva @waltshaub Just did +06/18/2018,Comedians,@chelseahandler,@Onlyonelov3 @Schmol55 Go fuck your self. +06/18/2018,Comedians,@chelseahandler,@breezinnn There is annonuncement on all in with Chris Hayes tonight. A march announcement +06/18/2018,Comedians,@chelseahandler,@tamralee68 @waltshaub Just reached out. Thank you +06/18/2018,Comedians,@chelseahandler,@tamralee68 @waltshaub Will do. Thanks +06/18/2018,Comedians,@chelseahandler,@mdalcorobbo @SimpleeKatyLee @GlennonDoyle @togetherrising @AbbyWambach I know them both. Already reached out. +06/18/2018,Comedians,@chelseahandler,@SimpleeKatyLee @GlennonDoyle @togetherrising Thank you. +06/18/2018,Comedians,@chelseahandler,"@alexburnsNYT @maggieNYT Not much. Everyone who works for him that seems normal in the beginning, turns evil rather… https://t.co/YlIsaySZtA" +06/18/2018,Comedians,@chelseahandler,Can someone please DM who knows of an organized movement to revolt against this latest trump abomination at the bor… https://t.co/n2xmiir5sI +06/18/2018,Comedians,@chelseahandler,@Marcus_OTF @MichaelSkolnik My god. This country is in shambles. +06/18/2018,Comedians,@chelseahandler,"Puerto Rico, #BlackLivesMatter, brown babies and children being ripped from their mothers and put in cages. Notice… https://t.co/4KBzVdC8rp" +06/18/2018,Comedians,@chelseahandler,This organization is helping Latinos to why out the vote. We need Latinos to be mobilized all across the country an… https://t.co/soZ0IS2NOh +06/18/2018,Comedians,@chelseahandler,@TheTessMorris Someone is back! +06/18/2018,Comedians,@chelseahandler,@JohnFugelsang Ya think??? +06/18/2018,Comedians,@chelseahandler,Here’s a great candidate to get rid of @DevinNunes who has obstructed justice and will break any law in the name of… https://t.co/tYE0kG8qUg +06/18/2018,Comedians,@chelseahandler,How about you just call your husband from whichever room you’re trapped in? https://t.co/dID5Cuooko +06/16/2018,Comedians,@chelseahandler,Everyone with an early model Tesla needs to be aware of this. I have one that I will not be driving again. @Tesla… https://t.co/U7rkt6Gfdl +06/16/2018,Comedians,@chelseahandler,"RT @madlinbmek: New: @BetoORourke to lead a “March to Tornillo” on Sunday (Father’s Day), to protest separation of migrant kids from their…" +06/16/2018,Comedians,@chelseahandler,@madlinbmek @BetoORourke @elpasotimes Ok. Let me see if I can get down there. +06/16/2018,Comedians,@chelseahandler,"@FollowingDougK_ @marycmccormack @Tesla First of all, this has happened before. Many times. Look it up." +06/16/2018,Comedians,@chelseahandler,@DYINGtoLlVE @marycmccormack @Tesla Any car catching on fire for no reason is not acceptable. Are you saying they d… https://t.co/wzu1rIJ6Aq +06/16/2018,Comedians,@chelseahandler,This woman is running for a very important Harris county judge position. She would be charge of many issues in Texa… https://t.co/73JsV4Fmbw +06/16/2018,Comedians,@chelseahandler,"RT @tedlieu: Dear @realDonaldTrump: Um, what elections are you talking about? Since your relatively small inauguration, DEMS WON: + +-Alabama…" +06/16/2018,Comedians,@chelseahandler,"Schlimm noted that people often misuse the Bible. In fact, the same passage Sessions cited has been used to justify… https://t.co/EhpskWanWv" +06/16/2018,Comedians,@chelseahandler,It’s more than that. Every Republican is complicit in human rights violations. https://t.co/q7vB4jljFE +06/16/2018,Comedians,@chelseahandler,@MrRetroManiac @NatashaBertrand He should have been in one 5 years ago. +06/16/2018,Comedians,@chelseahandler,"RT @thehill: Cardinal Dolan fires back at Sessions: There is ""no Bible passage"" that would justify family separation https://t.co/HIbNVpOeN…" +06/16/2018,Comedians,@chelseahandler,RT @TomSteyer: Mr. Trump and his administration are locking children in prison camps and tearing families apart at our borders. That’s why… +06/16/2018,Comedians,@chelseahandler,"@LondonBreed @SFAAACC Go, girl" +06/16/2018,Comedians,@chelseahandler,"@thegarance @kevintripp @elonmusk @Tesla I use my megaphone for everyone. Not just people I know. If you know me, you know that." +06/16/2018,Comedians,@chelseahandler,This happened to my bff today. Who drives 3 girls daily in this car. @elonmusk @Tesla I have the same model and mak… https://t.co/8uPCoqzELr +06/16/2018,Comedians,@chelseahandler,"I can’t wait until there’s (more) irrefutable proof that trump has cheated, scammed the IRS, and colluded,—and the… https://t.co/jjtmlHzgCS" +06/15/2018,Comedians,@chelseahandler,"@Rosie @NicolleDWallace Yeah, she’s awesome." +06/15/2018,Comedians,@chelseahandler,This is the man who won his primary for #CA49 and will flip this seat blue. He is the kind of candidate I am prou… https://t.co/DDZSkwTQbc +06/15/2018,Comedians,@chelseahandler,"Hey syphilis brain. It’s nice you have such sympathy for high level criminals, yet not for kids being ripped from t… https://t.co/RtBbjNqbp1" +06/15/2018,Comedians,@chelseahandler,"I always knew orange was Paul Manafort’s color. See ya later, girl." +06/15/2018,Comedians,@chelseahandler,@jonfre75 Seriously +06/15/2018,Comedians,@chelseahandler,"@craigmccu Oh, fuck you. All I do is campaign and post and advocate for candidates who are positive and care about… https://t.co/ceN07qx8pR" +06/15/2018,Comedians,@chelseahandler,@mattrett We have got to get that turtle’s emails. +06/15/2018,Comedians,@chelseahandler,@fleccas Yeah. Nothing there as usual. Trump is the problem. Not someone who ran and lost. +06/15/2018,Comedians,@chelseahandler,@COostvogels Magazines worth. While those innocent children’s photos are spread all over the walls of his cell. +06/15/2018,Comedians,@chelseahandler,@stealth_singer I can’t take it. +06/15/2018,Comedians,@chelseahandler,"I hope that when you go to prison, someone has a flag and a pole. https://t.co/F6xDERuChS" +06/15/2018,Comedians,@chelseahandler,@AwesomeTSpears Or ketamine therapy. +06/15/2018,Comedians,@chelseahandler,@MadKarmaBomber Thank you. +06/15/2018,Comedians,@chelseahandler,@onesoldiersmom That doesn’t mean anything to me except the source that it’s coming from is bored and spending his… https://t.co/FwSFAPVhii +06/15/2018,Comedians,@chelseahandler,@acehanna54 Thanks. That looks about right +06/15/2018,Comedians,@chelseahandler,@manders42019 I believe that +06/15/2018,Comedians,@chelseahandler,"@therealFranGSF @howroute Agreed. I’m angry at how much of my day this administration robs me off, but not speaking… https://t.co/7o7y3SroST" +06/15/2018,Comedians,@chelseahandler,Im pretty sure we have something called a separation between church and state in this country. Why is our attorney… https://t.co/KF6Rf0EF71 +06/15/2018,Comedians,@chelseahandler,RT @SenWarren: Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice heard and… +06/14/2018,Comedians,@chelseahandler,Thank you @briankarem for calling her on her unconscionable complicity. I’m not a mother and I know how wrong this… https://t.co/ADCJzTsbYR +06/14/2018,Comedians,@chelseahandler,@HokiePolkie @jacobsoboroff @HHSGov @chrislhayes You’re a pig. +06/14/2018,Comedians,@chelseahandler,@funder Yeah! +06/14/2018,Comedians,@chelseahandler,This is what Fox News is talking about today. Oklahoma fishermen catch 'behemoth' alligator snapping turtle - Fox N… https://t.co/uaMHgJ0AKK +06/14/2018,Comedians,@chelseahandler,"RT @JoyAnnReid: This is a must-read thread, and incredibly disturbing... a child “detention center,” in America, complete with a Trump pro…" +06/14/2018,Comedians,@chelseahandler,@Newsweek That’s what your approval rating is when you’re held hostage. +06/14/2018,Comedians,@chelseahandler,@thehill Get it. The criminality is beyond. +06/14/2018,Comedians,@chelseahandler,"What kind of world is this? Why would any American including Democrats, Republicans, and everything in between—be o… https://t.co/K6u4atCTIR" +06/14/2018,Comedians,@chelseahandler,RT @RepAdamSchiff: Lawsuit against Trump Foundation for using charity money for campaign purposes highlights need to follow the money in Ru… +06/14/2018,Comedians,@chelseahandler,"@TheMainRyan85 Yeah, that means a lot." +06/14/2018,Comedians,@chelseahandler,"RT @MadKarmaBomber: @chelseahandler . +Confucious say... +. https://t.co/9ewkuNZqwt" +06/14/2018,Comedians,@chelseahandler,@BobWilliams2057 He is the grossest +06/14/2018,Comedians,@chelseahandler,@OldGibsonND He’s too unathletic to have any aim. +06/14/2018,Comedians,@chelseahandler,@JoeVito12 Sorry/ I don’t find being controlled by Russia funny. I don’t find children at our borders—in cages—funny. +06/14/2018,Comedians,@chelseahandler,@starlasworld I’m glad. +06/14/2018,Comedians,@chelseahandler,It was the great Ivanka Trump who made up and tweeted the Chinese proverb which isn’t a Chinese proverb—“those who… https://t.co/BgAnYWrc85 +06/14/2018,Comedians,@chelseahandler,@jiffywild Check your ambien +06/13/2018,Comedians,@chelseahandler,"We had major female wins last night. This is just Virginia. Virginia Breakdown: + 4/4 @emilyslist endorsed candidat… https://t.co/vA8ajpvQJm" +06/13/2018,Comedians,@chelseahandler,"We support @dconefairwage. #VoteYeson77 on June 19 in DC to support fair wages, decent working conditions & access… https://t.co/bC7jpTNRtD" +06/13/2018,Comedians,@chelseahandler,I can’t believe Farrah Abraham got arrested before Donald Trump. What a horrible day for reality stars. +06/13/2018,Comedians,@chelseahandler,"Women are going to win so much, we are going to be tired of winning. https://t.co/Q8Nbxr4CgY" +06/13/2018,Comedians,@chelseahandler,Only republicans try to prevent elections. They don’t even deserve a capital “R.” https://t.co/ODn8HW3bUs +06/13/2018,Comedians,@chelseahandler,@SarahEMcBride @laurenduca This is what we all need to read every day to remind people that there is good within ba… https://t.co/eYVqEIZPDR +06/13/2018,Comedians,@chelseahandler,"RT @JasonKander: Nevadans voted to make universal background checks the law of the land, and the state's current attorney general has refus…" +06/13/2018,Comedians,@chelseahandler,Tonight was a great night for @emilyslist and for women throughout the country. We will stand together and see this… https://t.co/3ddpigaiwY +06/13/2018,Comedians,@chelseahandler,RT @kurteichenwald: Gee what a surprise. A January piece in the Wall Street Journal - five months ago - reported that Trump had been told b… +06/13/2018,Comedians,@chelseahandler,RT @JohnFugelsang: People who cheered Trump for defunding Planned Parenthood are now cheering him for meeting w/a govt that forces women to… +06/13/2018,Comedians,@chelseahandler,RT @Acosta: Dear Brad.. dictatorships take away press credentials. Not democracies. https://t.co/TqgCHOW0t6 +06/12/2018,Comedians,@chelseahandler,@shannonrwatts @NRA @PattyMurray It’s sick. Not protecting our children from guns is tantamount to pulling the trigger. +06/12/2018,Comedians,@chelseahandler,Trump doesn’t need notes from his meeting with Kim Jong Un because he has “one of the great memories of all time.”… https://t.co/Q18f7K2L71 +06/12/2018,Comedians,@chelseahandler,SCOTUS has sided with vote suppressors. That's why we need to win the political fight for voting rights. Join me an… https://t.co/4SXSSPNESd +06/12/2018,Comedians,@chelseahandler,"RT @TomSteyer: We knocked on 10,000 doors with @NextGenAmerica in anticipation of today’s primary in Virginia, where voters are headed to t…" +06/12/2018,Comedians,@chelseahandler,This is an organization that is doing very important work to make sure that Latinos get out the vote and that we he… https://t.co/KhOX1Qp3DG +06/12/2018,Comedians,@chelseahandler,@krassenstein @Rosie Me +06/12/2018,Comedians,@chelseahandler,"@BetteMidler Because his plan is to become a dictator and with this Republican Congress, they’ll allow it." +06/12/2018,Comedians,@chelseahandler,Today is voting day. https://t.co/J1MSZrVeKO +06/12/2018,Comedians,@chelseahandler,For Nevada and Virginia. Today is voting day. https://t.co/2Lk7M1H6hp +06/12/2018,Comedians,@chelseahandler,Today’s election guide. https://t.co/SuOg39Ldem +06/12/2018,Comedians,@chelseahandler,The Supreme Court ruling that people who haven’t voted in past elections can have their names purged from voter reg… https://t.co/Cak5FlJwZP +06/12/2018,Comedians,@chelseahandler,You mean like making enemies with all of our allies and sucking a dictator’s ass? We won’t interrupt. https://t.co/BNB9EJRg3S +06/12/2018,Comedians,@chelseahandler,RT @JasonKander: An American President celebrates the disenfranchisement of eligible voters. UnAmerican. https://t.co/a7YTDPSen0 +06/12/2018,Comedians,@chelseahandler,RT @ajplus: What's happening to immigrant kids who are separated from their parents at the border? This U.S. Senator was blocked from findi… +06/12/2018,Comedians,@chelseahandler,There is only one political party that wants to prevent people from voting. They are the Republican Party. They ar… https://t.co/8KXsNifIaJ +06/12/2018,Comedians,@chelseahandler,@kcs7272 Go take a xanax +06/12/2018,Comedians,@chelseahandler,Was on a plane and just landed. Assuming trump fixed everything with kimmy? +06/12/2018,Comedians,@chelseahandler,I wonder how many “u up?” texts Putin is going to send Trump after his meeting with Kim Jong Un. #TrumpKimSummit +06/11/2018,Comedians,@chelseahandler,The only thing we can do to counteract this disgraceful administration is vote. We must get out the vote. Every min… https://t.co/ab4lgkamen +06/11/2018,Comedians,@chelseahandler,Maine! You've got your primary election on Tuesday. There are only two pro-choice Democratic women governors in the… https://t.co/YqeRvkK6Hc +06/11/2018,Comedians,@chelseahandler,"Here's this week's @emilyslist endorsements: +✅ @Deb4CongressNM in #NM01 (She could be one of the first Native Ameri… https://t.co/QkpujMGhRZ" +06/11/2018,Comedians,@chelseahandler,Putin is giving trump talking points and actions to take to help undermine the very country he is from. We have a… https://t.co/jvolk9ok4L +06/11/2018,Comedians,@chelseahandler,"RT @KevinMKruse: You know you're a member of the United States Senate, right? You can actually do a lot more than send out some sad tweets.…" +06/11/2018,Comedians,@chelseahandler,@SethAbramson Putin +06/11/2018,Comedians,@chelseahandler,"RT @katieporteroc: Ready to #FlipTheHouse in November? I know I am. +Current polling shows us beating @RepMimiWalters— +who has voted with T…" +06/10/2018,Comedians,@chelseahandler,Nevada! Your primary election is this Tuesday. Polls will be open between 7 a.m. and 7 p.m. Confirm your polling pl… https://t.co/IWcQT7Mx5w +06/10/2018,Comedians,@chelseahandler,It’s happening tonight. This big ball of hair @Riedle and I are @ImperialTheatre at 7. #civilizedlife https://t.co/M5HXt1YGpI +06/09/2018,Comedians,@chelseahandler,@WhitfordBradley It helps. +06/09/2018,Comedians,@chelseahandler,Virginia! Your primary election is Tuesday. Polls will be open between 6 a.m. and 7 p.m. Confirm your polling place… https://t.co/TuRNCOcqZB +07/02/2018,Comedians,@TigNotaro,Tickets are going fast for Tig’s performance at Betnzen Ball in DC! https://t.co/wdTuUnbmHI +06/30/2018,Comedians,@TigNotaro,"I've been @drewjanda, and tweeting for Tig has been an honor. Be kind. I'll leave you with my favorite sketch serie… https://t.co/XjgDS2gJtX" +06/30/2018,Comedians,@TigNotaro,"Here's the thing about the movie Goodfellas: the ""fellas"" are actually bad" +06/30/2018,Comedians,@TigNotaro,"RT @drewjanda: Doctor: I'm sorry, your son is very cool +Me: my god. can he still go to school +doctor: I hate to be the one to say this" +06/30/2018,Comedians,@TigNotaro,"*An episode of Chopped: We Have Food At Home Edition* +Chefs, your ingredients are: + +one hamburger bun +hot dogs +tort… https://t.co/sBDU1K8D7M" +06/29/2018,Comedians,@TigNotaro,"Have you watched Tig's new special yet? It's called ""Happy To Be Here"" and it's streaming now on @netflix! https://t.co/yXhRm7RBnl" +06/29/2018,Comedians,@TigNotaro,"RT @TransWrites: RT so your trans followers can see! + +If you are a trans comedy writer, please send an email to gracethomas@transwrites.or…" +06/29/2018,Comedians,@TigNotaro,"RT @drewjanda: This land is my land +This Al is Borland https://t.co/GNIXnoc0vr" +06/29/2018,Comedians,@TigNotaro,Oh and the lady will be having the Bud Lite *Platinum* +06/29/2018,Comedians,@TigNotaro,"Hello, and welcome to Twitter. I'm @drewjanda, your Tig today. + +MY DREAM is to write for television. If you like m… https://t.co/j8qeCFWSfQ" +06/29/2018,Comedians,@TigNotaro,"This has been so fun! +You are all welcome to hire me as a standup comic or a writer for your shows. +I have an alb… https://t.co/nFjxWl1yCW" +06/29/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Sister: have you met any nice men lately? +Me: we are failing the Bechdel test." +06/29/2018,Comedians,@TigNotaro,"RT @JenniferJokes: *updates iOS* +*looks up from phone* +*finds herself chained to a million other slaves dragging monolith to the pyramids…" +06/29/2018,Comedians,@TigNotaro,RT @JenniferJokes: please dont be mean to me cause im very soft but also dont be nice cause i fall in love very easily +06/28/2018,Comedians,@TigNotaro,"Me: can I get pregnant from handjobs? +Doctor: *pinching bridge of nose, flipping to my age on the chart* +Me: I wen… https://t.co/eJz9PAlmUd" +06/28/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Instead of asking people to watch my laptop at a café, I just leave an open google search for “how to clean a yeast infe…" +06/28/2018,Comedians,@TigNotaro,As a Catholic I was raised to be so private about romance that I’m not even sure if my parents are dating +06/28/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Her: what do you feel like? +Me: really sad all the time. idk what to do +Her: I meant for dinner +Me: OHH lol pizza would…" +06/28/2018,Comedians,@TigNotaro,"[pulls out easel with enormous notepad] + +Me: Welcome to my crafting workshop, using your period to show dominance on office furniture" +06/28/2018,Comedians,@TigNotaro,Hi! I’m Jennifer McAuliffe @jenniferjokes and I’m going to be tweeting for Tig today. As a stand up and writer I ta… https://t.co/WM1aCijPNr +06/28/2018,Comedians,@TigNotaro,"Here I am, driving away! Thank you for reading. May several really good things happen to you today, and, I don't kn… https://t.co/iVc5LogWhf" +06/28/2018,Comedians,@TigNotaro,"RT @abbycohenwl: Me (texting): Help I'm in the pantry hiding from the murderer +Murderer: Probably shouldn't have used speech-to-text" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: She: But WHY are you breaking up with me? Please tell me honestly. +He (sigh): Ok It's...your ""signature sex move"" +She: Jud…" +06/27/2018,Comedians,@TigNotaro,"For every million you make, the government lets you break a law. Can't wait to violate thermodynamics!" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: Realized I never said ""unquote"" after reciting a famous poem in 10th grade. Sorry if you thought everything I've said sinc…" +06/27/2018,Comedians,@TigNotaro,"Friend: She picked dare over truth +Friend2: Oh god, she’s doing it! +Me: *reveals my actual personality*" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: How to apply mascara: +Pull wand from tube +Open your eyes like a haunted doll coming to life" +06/27/2018,Comedians,@TigNotaro,"Sadly, as one of many million Americans born with the Inability to Be Cool, I failed to mention my twitter handle.… https://t.co/qWY2lnOXdJ" +06/27/2018,Comedians,@TigNotaro,"As I was giving a dollar to a girl singing on the street today, I realized: it was Helen Henny, former vocalist fro… https://t.co/mUXp7ncpg8" +06/27/2018,Comedians,@TigNotaro,Not sure how I got the distinct privilege of tweeting for the incredibly fantastic Tig Notaro today! I hope I have… https://t.co/LVitelw1fJ +06/27/2018,Comedians,@TigNotaro,"Well folks, I’ve been @mikebigby and that’s a wrap! Thanks for the favs and, if you’re wondering if you should foll… https://t.co/kDA7J9kIY3" +06/27/2018,Comedians,@TigNotaro,RT @MikeBigby: Would be funny if like a guy who was a werewolf got mooned by some dudes ass and it worked +06/27/2018,Comedians,@TigNotaro,"It’s late and it’s dark so I threw something appropriately spooky together for you, enjoy! https://t.co/kzWrGBoKc3" +06/26/2018,Comedians,@TigNotaro,"RT @MikeBigby: u guys do know that when u say ""frig"" we ALL know what you mean? At this point u might as well just say ""frog pig"" its not e…" +06/26/2018,Comedians,@TigNotaro,"Hey @beyonce it’s me tig, your close personal friend, just wanted to let u know about this cool guy I discovered… https://t.co/HRz35XciRZ" +06/26/2018,Comedians,@TigNotaro,RT @MikeBigby: https://t.co/vFVrdb6QXe +06/26/2018,Comedians,@TigNotaro,"As well as jokes, I want to use this platform for something good, something I really care about - pressuring… https://t.co/Ny7Mg2PSMu" +06/26/2018,Comedians,@TigNotaro,"Again, Just kidding, I respect @lin_manuel. I respect him and he respects me. It’s mutual. He knows who I am. Don’t… https://t.co/TvPWVLWjSL" +06/26/2018,Comedians,@TigNotaro,"I’m just kidding, I’ve not seen Hamilton. I’m from the UK. Not heard of it? Oh, it’s just this little old place whe… https://t.co/nyPuPs3qfd" +06/26/2018,Comedians,@TigNotaro,"Got major stagefright, like when you’re trying really hard to pee but you can’t go because you feel like people are… https://t.co/rz26XY4bZQ" +06/26/2018,Comedians,@TigNotaro,Hey it’s ya boy @mikebigby or should I say mike TIGBY!! Off to a good start. Anyway my best friend tig and i were h… https://t.co/5vC9GDiKlD +06/26/2018,Comedians,@TigNotaro,"Hey everyone, it's been really awesome being Tig for a day. Be kind to each other! + +🌵💚 + +- Dave" +06/25/2018,Comedians,@TigNotaro,"RT @batkaren: LOOK AT ME, she screamed from a tiny corner on a speck of dust circling a small star, one of billions in a galaxy, one of bil…" +06/25/2018,Comedians,@TigNotaro,"After you die, do you get to see the deleted scenes from your life?" +06/25/2018,Comedians,@TigNotaro,"HIM: No sensible man will take you dancing in your bikini! +ME: It's OK. I'm going with a little moron." +06/25/2018,Comedians,@TigNotaro,"RT @Woody_B_: {Things I know about bears} +Bear in an ascot = sort of funny dork. +Bear in a hat and tie = funny bear who steals food. +Bear i…" +06/25/2018,Comedians,@TigNotaro,"ME: I'm building airplanes from these blueprints. +ROB: They'll never fly. +ME: Yeah, I have to fold them first." +06/25/2018,Comedians,@TigNotaro,RT @dave_cactus: A fart is a wish a butt makes. +06/25/2018,Comedians,@TigNotaro,"If a tree falls in the woods and no one is around, will anyone know? Yes, thanks to the TreeAlert™ Pendant!" +06/25/2018,Comedians,@TigNotaro,"Good morning! It's me, @dave_cactus, and today I'll be TIG NOTARO. + +T- The +I- Internet's +G- Greatest + +N- Nonsense +O… https://t.co/VlAiRaQ2pU" +06/23/2018,Comedians,@TigNotaro,"Friends, it's been my pleasure to entertain you today! If anyone is in the market for a silly writer, I strongly re… https://t.co/BKf9MI92M5" +06/22/2018,Comedians,@TigNotaro,RT @caraweinberger: 10 Women You Won't BELIEVE until a Man Says the Exact Same Thing +06/22/2018,Comedians,@TigNotaro,"Me: I have to pee +Dad: [pulling over] Go in the woods +Me: [walking through the woods for an hour] I don't see a sin… https://t.co/LpKRWY8ZJd" +06/22/2018,Comedians,@TigNotaro,Sometimes the big spoon is the most fragile spoon of all. +06/22/2018,Comedians,@TigNotaro,"RT @markedly: Always the ice tray refiller, never the ice cube enjoyer" +06/22/2018,Comedians,@TigNotaro,"RT @markedly: You're darn right I abuse drugs. I see a drug, I punch the crap out of it. Get lost, drugs." +06/22/2018,Comedians,@TigNotaro,"Hello, yes, I couldn't help noticing you from across the room. If it's not too forward, may I have the pleasure of… https://t.co/Yu4jk70ekg" +06/22/2018,Comedians,@TigNotaro,"RT @markedly: Spanish: The h is silent +English: Many letters can be silent +French: All letters are meaningless, every living thing is born…" +06/22/2018,Comedians,@TigNotaro,"Hiya, folks! This is @markedly tweeting for the amazing Tig Notaro and enjoying a persimmon for the first time ever… https://t.co/MkziN8O9Mu" +06/22/2018,Comedians,@TigNotaro,Heyyyyy Tulsa!!! https://t.co/C2rus1d78V +06/22/2018,Comedians,@TigNotaro,"RT @emilyrschmidt: It's so super easy to wear a jacket that *doesn't* say ""I don't really care,"" like, I've gone my whole life not even wea…" +06/21/2018,Comedians,@TigNotaro,"Friends, that’s it for me today!! This has been rad. Thanks for reading my words and looking at my dang face. + +Fol… https://t.co/96lecbKWBk" +06/21/2018,Comedians,@TigNotaro,RT @ohheyohhihello: stop naming your babies James. name him Jame. he is one Jame. +06/21/2018,Comedians,@TigNotaro,Walking out of a doctor's office and realizing you forgot how to get back to the lobby is one of those human experi… https://t.co/SEbhUUZ99A +06/21/2018,Comedians,@TigNotaro,"RT @ohheyohhihello: Today I drove through a huge puddle that splashed up under my car and laughed to myself as I whispered, ""car bidet.""" +06/20/2018,Comedians,@TigNotaro,"Friends, you deserve to be in love with someone who respects you, treasures you, and doesn’t order chicken tenders at every restaurant." +06/20/2018,Comedians,@TigNotaro,RT @ohheyohhihello: one or two questions about the third picture https://t.co/lrSxa2TEO9 +06/20/2018,Comedians,@TigNotaro,The bicycle was invented over 200 years ago and we still haven’t invented a seat that supports more than the middle third of a butt. +06/20/2018,Comedians,@TigNotaro,I recently met a girl who always carries an extra pair of underwear in her bag. Anyone with that level of crisis pr… https://t.co/GVFBKMCi6d +06/20/2018,Comedians,@TigNotaro,RT @ohheyohhihello: life hack https://t.co/y8Ia9P8cLc +06/20/2018,Comedians,@TigNotaro,Hellooooooo my friends! I’m @ohheyohhihello (or Kelly for short) and I have the pleasure of tweeting for Tig today!… https://t.co/IkwcarqhBe +06/20/2018,Comedians,@TigNotaro,"Whoooo I had a blast being Tig today thanks y'all +If you liked my jokes and are hungry for more, you can: head ove… https://t.co/iDWwOe4BPK" +06/20/2018,Comedians,@TigNotaro,RT @isabelzawtun: We cut open the cake at the gender reveal party and out spill thousands of fire ants. The guests howl. FIRE ANTS ARE MOST… +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: The local children surround me, trying to build a pyre. I'M NOT A WITCH, I shriek, my witch-like shrieking doing me no fa…" +06/19/2018,Comedians,@TigNotaro,"It's not WEIRD, eating 8 spiders per year makes me AVERAGE" +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: When I was 6 my uncle caught a moth in his mouth, walked outside, opened up and the moth flew away into the night. I thin…" +06/19/2018,Comedians,@TigNotaro,"""Oh, I don't want to be pushy, whatever you want is fine,"" I smile nervously + +The genie sighs, exasperated" +06/19/2018,Comedians,@TigNotaro,"The biggest baseball on record weighed 23 lbs and was thrown by Bo ""Meat Fist"" Jibbson, who missed home plate entir… https://t.co/NFInsqEoIv" +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: The scene in which The Little Mermaid learns the true purpose of a toilet, having lived her whole life bereft of a human…" +06/19/2018,Comedians,@TigNotaro,Excuse me but have you considered spending your entire day googling Russian glamour shots https://t.co/TnR7RMi029 +06/19/2018,Comedians,@TigNotaro,"Put your hands together for THE INDIGO GIRLS! Haha just kidding it's me, @isabelzawtun, freaky-fridaying with Tig t… https://t.co/FwLPEagCcQ" +06/19/2018,Comedians,@TigNotaro,"It's been amazing tweeting for Tig today! That's a picture of me and my fam below! If you liked the tweets today, f… https://t.co/Gshjj5zvhe" +06/19/2018,Comedians,@TigNotaro,"RT @AdamBroud: (Doctor's Office) +Me: So I guess some have innies and some just have outies huh? + +Gynecologist: No" +06/19/2018,Comedians,@TigNotaro,"Me: Welcome to my vegan zoo! + +Friend: This…this is just a garden + +Me: *holding up baby carrots* They've had a litter" +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: Me trying to communicate that I'd rather not do something: Sure +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: Person who loves LaCroix: *Eating a scented candle* this is also good +06/18/2018,Comedians,@TigNotaro,"Jesus: If your right eye offends thee, pluck it out. Like Carl here did. Right Carl? + +One-eyed Carl: Once again, I… https://t.co/D13Q2FnBBk" +06/18/2018,Comedians,@TigNotaro,RT @TheFoxTheatre: We're two days away from an unforgettable night of comedy with @IAmWandaSykes & @TigNotaro on 6/20 😂🤣 Secure great seats… +06/18/2018,Comedians,@TigNotaro,"RT @AdamBroud: HER:I love Tolstoy's take on the human moral struggle +ME:*Trying to impress* See I prefer Tolstoyee 3 where Woody was in the…" +06/18/2018,Comedians,@TigNotaro,RT @ppacutah: Get your laughs on for a good cause: @TigNotaro will be here next week! Get your tickets now before they are gone with code '… +06/18/2018,Comedians,@TigNotaro,"Scientist: Sure, we can discuss string theory + +Scientist that's actually a bunch of cats stacked in a lab coat: Oh hell yeah" +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: My hostages' family is going to eat this up. https://t.co/8mBTGdo7h4 +06/18/2018,Comedians,@TigNotaro,"I'm @AdamBroud and I'll be tweeting for Tig today! I perform improv at @ImprovBroadway, I write sketch for… https://t.co/JqvjOeTDMX" +06/16/2018,Comedians,@TigNotaro,"Hello, thank you for letting me (@sug_knight) tweet as Tig today. + +Here’s a picture of me when I looked most like… https://t.co/2KCCuucGIL" +06/16/2018,Comedians,@TigNotaro,"I'm writing a book, it's basically like War & Peace but it's not set in the napoleonic era & it's about snakes and the snakes are on a plane" +06/16/2018,Comedians,@TigNotaro,People who take fast showers just don't spend enough time pondering their own mortality while they're in there. +06/16/2018,Comedians,@TigNotaro,I don’t have anything I want to plug on here but I DO want to remind everyone that Alanis Morisette and Dave Coulie… https://t.co/hPPwK2xBaO +06/16/2018,Comedians,@TigNotaro,RT @sug_knight: https://t.co/qza1GO9Nzy +06/16/2018,Comedians,@TigNotaro,Oh it’s different than I remember but I trust the process https://t.co/ebk0WlLV10 +06/15/2018,Comedians,@TigNotaro,"RT @sug_knight: I’ll find you, Richard https://t.co/L6k7WolF3r" +06/15/2018,Comedians,@TigNotaro,What if true enlightenment is just accepting that abs are made in the kitchen? +06/15/2018,Comedians,@TigNotaro,"RT @sug_knight: Me: while you're up there let's do a Spider-Man kiss +My dental hygienist: still no" +06/15/2018,Comedians,@TigNotaro,"Hello everyone it’s me, @sug_knight, tweeting for Tig. Everything I say will be a subtweet at Taylor Dayne. EVERYTH… https://t.co/Z17U8UioCE" +06/15/2018,Comedians,@TigNotaro,guys I've been @zakagan and I'm done tweeting for today. A lot of people don't know this but I'm actually a minor-l… https://t.co/t15xCnQWhj +06/15/2018,Comedians,@TigNotaro,"toy story 3 would be more emotional if the toys were bionicles, and instead of Andy it was me, and [i’m sobbing now… https://t.co/wLSeoueVp9" +06/14/2018,Comedians,@TigNotaro,"it's cool when a dessert has a hint of something, like i'm biting into a tart and suddenly it goes ""your wife's death was not an accident""" +06/14/2018,Comedians,@TigNotaro,why does Charles Darwin always look like you could insert a CD-ROM into his mouth https://t.co/zMJXDYyJzs +06/14/2018,Comedians,@TigNotaro,why aren’t there more satanic masses at the pentagon? seems perfect for it +06/14/2018,Comedians,@TigNotaro,Tig is in Atlanta June 20! Tix here: https://t.co/Nuu3nI26II +06/14/2018,Comedians,@TigNotaro,"AVOCADO RIPENESS + +underripe = wet styrofoam +ripe = god's unsalted butter +overripe = sunscreen that's been cursed by a witch" +06/14/2018,Comedians,@TigNotaro,thought I would use this opportunity to share my tinder bio. looking for someone special!! https://t.co/tD5RqvfmCs +06/14/2018,Comedians,@TigNotaro,"RT @zakagan: Old M&M’s commercials: the chocolate that melts in your mouth, not your hand + +New M&M’s commercials: hey, maybe you can fuck t…" +06/14/2018,Comedians,@TigNotaro,hey gang I'm @zakagan and I'll be tweeting for Tig today. True story: I once got written up at work for listening t… https://t.co/SviOb91JPp +06/14/2018,Comedians,@TigNotaro,hi! this is still @freshhel 😈 if u liked all this nonsense please follow me On Here & maybe come to a show if you’r… https://t.co/EoRSXOwK7B +06/14/2018,Comedians,@TigNotaro,"is bi visibility an issue? yea +is it our fault for wearing so much camo? absolutely" +06/14/2018,Comedians,@TigNotaro,would love an ice cold glass of $700 +06/13/2018,Comedians,@TigNotaro,CARTOON CATS: WHO'S HOT & WHO'S NOT pt 2 https://t.co/TWz20QaUXj +06/13/2018,Comedians,@TigNotaro,CARTOON CATS: WHO'S HOT & WHO'S NOT pt 1 https://t.co/YuqEYrMcgU +06/13/2018,Comedians,@TigNotaro,"people think that being bi means you are confused. No, it means you wanna fuck the double dragon from Dragon Tales" +06/13/2018,Comedians,@TigNotaro,me stealing batteries from work to put in my vibrator: This Is What A Femnist Looks Like :) +06/13/2018,Comedians,@TigNotaro,"baby in flip flops: cute +5 yr old in flip flops: cute +10 yr old in flip flops: please keep this THING very far away from me !!!!!!" +06/13/2018,Comedians,@TigNotaro,hello it is me @freshhel 🚨 pictured here getting brunch with your mom https://t.co/vFTzeZY7HX +06/13/2018,Comedians,@TigNotaro,RT @DogDaysTheFilm: Unleash the love August 10 💙 Watch the official trailer for #DogDays now 🐾 https://t.co/VzYF9YnNs6 +06/13/2018,Comedians,@TigNotaro,"I've been @GraceGThomas. + +I'm a Senior Contributing Writer @ClickHole, I contribute to @TheOnion and I'm trans as h… https://t.co/4mQ61sapYr" +06/13/2018,Comedians,@TigNotaro,recent art project https://t.co/Wby92LpTVB +06/12/2018,Comedians,@TigNotaro,"When I visited the Pulse memorial last year, I was struck by how busy it was. Huge Wendy's across the street, a man… https://t.co/n3QECz6BPw" +06/12/2018,Comedians,@TigNotaro,We must stop Jim Davis from making Garfield real. https://t.co/sPMtUUEqgs +06/12/2018,Comedians,@TigNotaro,Utah!! Tig will be there supporting Planned Parenthood next week. Grab discounted tickets below! https://t.co/He7otijbHq +06/12/2018,Comedians,@TigNotaro,"Jackie Chan Killed My Dad But 'Rush Hour 2' Made Up For It + +Mr. Bekemeyer 2nd Hour Health Class - Mental Health Uni… https://t.co/dV7lAmfzhR" +06/12/2018,Comedians,@TigNotaro,"AM I TURNING INTO SPIDER-MAN? + +A Science Project For The 3rd Grade Science Fair + +By Grace Thomas https://t.co/RWcYUyM9aK" +06/12/2018,Comedians,@TigNotaro,"These are my notes on The Great Gatsby. + +Please let me know if I missed anything, the test is tomorrow!! https://t.co/S1P1xfi2tF" +06/12/2018,Comedians,@TigNotaro,RT @GraceGThomas: Man Caves are OUT! Genderless Crying Dens are IN! +06/12/2018,Comedians,@TigNotaro,"Wow, hello! I'm @GraceGThomas! Tig adopted me so that I'm legally required to manage her Twitter account. + +I'll be… https://t.co/FmNUFhsgDQ" +06/12/2018,Comedians,@TigNotaro,"What a wild ride it’s been! Thanks for tuning in. Folks, the terrible truth is that I’m a very talented painter, an… https://t.co/fFH9QD5IRP" +06/12/2018,Comedians,@TigNotaro,Imagining mr bean getting his huge ass stuck in a vase at the horse track. that guy is almost unbelievable +06/12/2018,Comedians,@TigNotaro,RT @coolturtleneck: This Trans Person's Selfies Before and After Transitioning Will Leave You Speechless... https://t.co/mR3yGdndJC +06/11/2018,Comedians,@TigNotaro,"Welcome to the kissing factory!! 😗 I’ll be ur foreman and shift manager :) :) :) +You may not join a union" +06/11/2018,Comedians,@TigNotaro,RT @rachel_kaly: me being sworn into the Supreme Court: I solemnly swear I am the femme Bruce almighty +06/11/2018,Comedians,@TigNotaro,"I want to b urban planner :) “Hello, mayor? Yes the train will go here... and of course it will be free. Any questions bich?”" +06/11/2018,Comedians,@TigNotaro,I live with my parents and just had a very real escalation with my dad that ended in me yelling “if you touch my p… https://t.co/hIwiliTNG6 +06/11/2018,Comedians,@TigNotaro,"Dear diary, + +I am jealous of every shark" +06/11/2018,Comedians,@TigNotaro,RT @coolturtleneck: Just got back from the gender summit. Cis ppl said trans ppl can get guaranteed safety in public spaces if we stop draw… +06/11/2018,Comedians,@TigNotaro,Good morning to my new friends and many new enemies! My name is Lukey Walden (@coolturtleneck) and due to circumsta… https://t.co/reEuXkGcFu +06/10/2018,Comedians,@TigNotaro,RT @Honda5gs: @TigNotaro @netflix I’m happiest when I’m grilling. https://t.co/fj9YU96X4V +06/10/2018,Comedians,@TigNotaro,"Have you watched Tig's new @netflix special ""Happy To Be Here""? Tweet a pic of the place where you're happy to be! #happytobehere" +06/09/2018,Comedians,@TigNotaro,this has been such a wild day for me....... the good news is that the high of this day will continue forever and i… https://t.co/bFYwgvFi94 +06/09/2018,Comedians,@TigNotaro,pic of me giving myself space to think about an emotionally turbulent day but then accidentally also thinking about… https://t.co/w3LFLcmW0X +06/09/2018,Comedians,@TigNotaro,i’m sorry everyone :((( the pressure got to me and all i could think to do was retweet tylenol promotional content… https://t.co/IN1dGfru8G +06/09/2018,Comedians,@TigNotaro,"a ship in a harbor is safe. the good news is that that is precisely what ships are for. if ur ship is in a harbor,… https://t.co/ulysk6Sw14" +06/08/2018,Comedians,@TigNotaro,BEST case scenario broadly speaking???? a cat and a bird become friends :) +06/08/2018,Comedians,@TigNotaro,today is a really hard day for a lot of ppl. i know that i am personally working to counter my negative thoughts wi… https://t.co/sqXLxL5NWY +06/08/2018,Comedians,@TigNotaro,RT @ALT1057FM: Go see @iamwandasykes and @tignotaro at @TheFoxTheatre for a Night of PRIDE Comedy! Your chance at tickets coming this hour!… +06/08/2018,Comedians,@TigNotaro,"this pic of mariah is all of us - living through pain, honestly and as best we can. not hiding it, but not letting… https://t.co/AhZo6hfBRe" +06/08/2018,Comedians,@TigNotaro,RT @chunkbardey: kinda absurd that I still constantly have to explain that Dora was a good explorer because of (not in spite of) her abilit… +06/08/2018,Comedians,@TigNotaro,hmmm i guess my VERY quick question is this: am i good enough +06/08/2018,Comedians,@TigNotaro,"RT @AM2DM: Full interview: @TigNotaro joins #AM2DM to talk about her new Netflix special, #MeToo, working with Jennifer Aniston, and more h…" +06/08/2018,Comedians,@TigNotaro,hello everyone i am @chunkbardey and i am tweeting for tig today. i know everyone is sad so i thought i would share… https://t.co/LeBJxcpxHC +06/08/2018,Comedians,@TigNotaro,"well folks.. i am @rachel_kaly and this has been a doozy! I’d like to quickly come out to my estranged father, a Mo… https://t.co/PrYaxMcUN4" +06/08/2018,Comedians,@TigNotaro,"RT @NetflixIsAJoke: .@tignotaro is the life of the party, but mainly when she doesn't know anyone there. Happy To Be Here, now streaming. h…" +06/08/2018,Comedians,@TigNotaro,"i am totally just like one of the guys! +1) my favorite hobby is posting a picture of my significant other on social… https://t.co/AqlzvJN3SS" +06/08/2018,Comedians,@TigNotaro,I actually originally pitched cash cab but da set up was diff: I hail every cab in NYC looking for my estranged fat… https://t.co/hVmAVeNBjI +06/07/2018,Comedians,@TigNotaro,"rough draft of my bucket list: +-get @KellyRipa to call me sir +-get an award for getting asthma from 9/11 or learn t… https://t.co/x6ScKF1qah" +06/07/2018,Comedians,@TigNotaro,RT @rachel_kaly: Hi sluts👋 im a thin and white 20-something girl who weArs sheer clothes so u can always see my nipples 🤷‍♀️ i co-opt black… +06/07/2018,Comedians,@TigNotaro,howdy.I have a new idea for episode of “friends” reboot. as it turns out chandler died as a roadie for Dane cook so… https://t.co/5ROSktVosF +06/07/2018,Comedians,@TigNotaro,"just got kicked out of the army bc all I knew in morse code was ""dam Daniel"" :( I understand why they let me go but I can still Be Upset :(" +06/07/2018,Comedians,@TigNotaro,"RT @rachel_kaly: doctor: do you have any history of eating disorders +me: no +doctor: ok well that’s g— +me: I have a HERstory of eating dis…" +06/07/2018,Comedians,@TigNotaro,#BentzenBall tickets are available now! Feat: @dopequeenpheebs @cameronesposito @jvn @RheaButcher @MichelleButeau… https://t.co/RExL7tH7Gw +06/07/2018,Comedians,@TigNotaro,I go to da Apple store and I raise my hand like it is school. Usually I will stay there all day and I do not get ca… https://t.co/izvKCstEYI +06/07/2018,Comedians,@TigNotaro,"hello, wats up, my name is @rachel_kaly and i will unfortunately for u being tweeting for tig today! tig and I have… https://t.co/QaQH6CuSWs" +06/07/2018,Comedians,@TigNotaro,RT @manicsocratic: @MonicaLewinsky @TigNotaro @colbertlateshow Snagged an HQ vrsion of the clip. Hope this helps! https://t.co/3mfPPk71g9 +06/07/2018,Comedians,@TigNotaro,RT @MonicaLewinsky: so. apparently the badass @TigNotaro said something generous about me last night on the @colbertlateshow but i can only… +06/07/2018,Comedians,@TigNotaro,"omg it wasn’t a bug LOL!!!! shaking my head ! i have to go make dinner for my Family and the neighbors + +Logging Off… https://t.co/jN7JoD7Dul" +06/06/2018,Comedians,@TigNotaro,this is my Fave part of #Hitch the movie -Tig N. https://t.co/R3Jne9E87i +06/06/2018,Comedians,@TigNotaro,KNew It!!!!!!! Jen is crazy!!!!! i’m gunna give her pink eye w my finger so we can be bedridden together (as i have… https://t.co/Tx3SfhecAk +06/06/2018,Comedians,@TigNotaro,okay...what the FUCK....WHO put this BABADOOK in my ROOM!!!! I am Not smiling this is a Strained face bc the bug l… https://t.co/YzGcYqi8MA +06/06/2018,Comedians,@TigNotaro,BREAKING NEWS!!! i will be playing Big Fuck in PENCIL: The Movie!!!!!!!!! omw 2 Dr. Plippy for the Bug has burrowed… https://t.co/6vLsYH7PYj +06/06/2018,Comedians,@TigNotaro,Tig was on @colbertlateshow last night talking @StarTrek! https://t.co/pzTN2XaJiO +06/06/2018,Comedians,@TigNotaro,MFW THE BUG IS CRAWLJNG AROUND THE PERIMETER OF MY HOLE NOW I COAXED IT OUT BY PLAYING HOT CROSS BUNS ON RECORDER L… https://t.co/y2vpCxgly8 +06/06/2018,Comedians,@TigNotaro,uhhhh ya.....there’s a story behind this candle...so my Wife and I were on a @CarnivalCruise and the Captain asked… https://t.co/fxbzIH8OFK +06/06/2018,Comedians,@TigNotaro,"LITERALLY HILARIOUS HOW THE #MEDIA #LIES 2 US!!!!!! +1.not vegan as I ONLY eat burger and peas +2. ALICIA SILVERST… https://t.co/3U40WVVvyA" +06/06/2018,Comedians,@TigNotaro,ok so dis baby farted and Jen Anniston wer like..Tig did U toot?? i were like no it were UR BABY! jen hit me &my ea… https://t.co/ymylY7EYPV +06/06/2018,Comedians,@TigNotaro,hi dis is actually tig today i’m in the garden thinking about a deliciosó pot sticker from @CheesecakeFactory and u… https://t.co/0Chf3iNdS2 +06/06/2018,Comedians,@TigNotaro,"RT @colbertlateshow: I have no idea what I’m saying on that show, all joking aside. - @TigNotaro who is on this new season of #StarTrek #LS…" +06/06/2018,Comedians,@TigNotaro,"goodbye.... this has been brian ffidymen... it sure was fun tweeting from this account for a while... + +tomorrows ju… https://t.co/DbgPSYuI66" +06/06/2018,Comedians,@TigNotaro,"self care night: +👍phone OFF +👍bottle of raspberry stoli +👍play nba 2k15 on easy + win by 90 points in my room (favorite light on) +👍4x a week" +06/05/2018,Comedians,@TigNotaro,Hope this is helpful. Guide to choosing a bank: https://t.co/gmD62X0DOs +06/05/2018,Comedians,@TigNotaro,I’ve had a really long day of being really calm y’all! needless to say now I am really pissed off... +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: Anyone care to explain this? #trumpsballproblem https://t.co/UiuBjE0Hu5 +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: i took the #DunkinDonutsChallenge https://t.co/HQUBnSLL11 +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: 20 $ bank prank https://t.co/YmhGSWG5Bw +06/05/2018,Comedians,@TigNotaro,I hate tables. It’s stupid that you have to lean over it to get close enough to your friend to talk- usually knocki… https://t.co/EGZ07b7kMT +06/05/2018,Comedians,@TigNotaro,"RT @brian4showbiz: 2018 is the year that I finally do something that I’ve been meaning to for a while, carry my controller around https://t…" +06/05/2018,Comedians,@TigNotaro,"hello yall!!!! my name is brian fiddybment @brian4showbiz + +I’m very passionate about cardio, red wine, whatever re… https://t.co/UdI6uYTOaS" +06/05/2018,Comedians,@TigNotaro,"Alright folks. That’s all for me, @joecastlebaker ... all in all this day has been one of THE days of my life... Hi… https://t.co/RhOvcbkXqu" +06/05/2018,Comedians,@TigNotaro,"“Mom. Dad... I’m same sex...” -me coming out. + +I think Tig is really gonna like this one :)" +06/04/2018,Comedians,@TigNotaro,I just found out on Ancestry dot com that my great great grand pa was a golden retriever 🤯🤯🤯 +06/04/2018,Comedians,@TigNotaro,"I am so excited :) my pilot “What if Spider Man Was In World War 1” has just been picked up LinkedIn :-) + +I think… https://t.co/F4fqM06khn" +06/04/2018,Comedians,@TigNotaro,"RT @joecastlebaker: I hate how on HBO when a character's throat is slit, they die immediately. As someone whose throat has been slit countl…" +06/04/2018,Comedians,@TigNotaro,"Hello... I’m @joecastlebaker .... + +i’m tweeting for Tig tod ay :) + +A pic of me below... I think Tig is really gonn… https://t.co/wgX1JFd59o" +06/02/2018,Comedians,@TigNotaro,"""Soooooo... who's the bottom and who's the top?"" - me talking to a disassembled box. + +Happy pride month. This has b… https://t.co/IOUrV0171B" +07/02/2018,Comedians,@mariabamfoo,Sorry- all taken down for beeswax reasons- will put up again or have small group private. Not sure. https://t.co/mKzm6jsx15 +07/02/2018,Comedians,@mariabamfoo,"RT @MHKollock: @TheStageNM Thank you for bringing @mariabamfoo and @jackiekashian to New Mexico. Please bring them back soon, and please bo…" +07/01/2018,Comedians,@mariabamfoo,"RT @STAR999radio: Enter to win tix to @mariabamfoo playing @StressFactoryCT July 6th! + +https://t.co/SFYvaQffq4" +06/30/2018,Comedians,@mariabamfoo,RT @chrissyteigen: There are 600+ #FamiliesBelongTogether events happening TOMORROW. I’ll be speaking and introducing @johnlegend in downto… +06/30/2018,Comedians,@mariabamfoo,RT @wkamaubell: Whoah! #PrivateSchoolNegro on @NetflixIsAJoke is Revolutionary Ballet Dancer Approved! #RBDA https://t.co/GfTzFLDWrR +06/30/2018,Comedians,@mariabamfoo,"RT @MHKollock: Thank you so much for the laughs, @mariabamfoo and @jackiekashian! I am grateful for your visit to the Land of Enchantment.…" +06/30/2018,Comedians,@mariabamfoo,"RT @TransWrites: RT so your trans followers can see! + +If you are a trans comedy writer, please send an email to gracethomas@transwrites.or…" +06/29/2018,Comedians,@mariabamfoo,"Yay, team! https://t.co/BLYm3GF7mr" +06/29/2018,Comedians,@mariabamfoo,RT @MHKollock: I can’t believe I finally get to see the magical @mariabamfoo tonight here in #ABQ! She is by far my favorite professional f… +06/29/2018,Comedians,@mariabamfoo,Thank you for coming out to the CASINO! 7 and 9:40 (?) PM shows- we'll see you there. I have been to to kick ass… https://t.co/anxw5dy5aV +06/29/2018,Comedians,@mariabamfoo,So nice to meet you as well! We did it! https://t.co/XDkjvmSdGI +06/29/2018,Comedians,@mariabamfoo,"Thanks so much for coming out and listening to my act across a tiny coffee shop table, @awoo_crouse! Very fun. Saf… https://t.co/q7nT5ObpVK" +06/28/2018,Comedians,@mariabamfoo,@LWVNewMexico Hello! I'm a comedian who will be doing shows at the Santa Ana Casino! If you would like to register… https://t.co/fSs18pNETR +06/28/2018,Comedians,@mariabamfoo,RT @MeowWolf: @alynes @mariabamfoo @jackiekashian We'd love for y'all to be our guests here in Santa Fe. Four passes will be under Maria's… +06/27/2018,Comedians,@mariabamfoo,"RT @PickleCatShow: @mariabamfoo ABQkarting. +Always. +Be. +Qkarting. + +Put that down, Qkoffee is for Qklosers!" +06/27/2018,Comedians,@mariabamfoo,RT @SwoopNine: Maria Bamford at an ABQ casino? What luck! https://t.co/NWNcA8KuTd +06/27/2018,Comedians,@mariabamfoo,Its actually fine- it will help me rehearse! Fresh crowd! https://t.co/LXXHpWraiN +06/27/2018,Comedians,@mariabamfoo,"Of course. But no pastries. NO PASTRIES. Ok, 70/30 split on pastries. https://t.co/B1o4qYa4Nz" +06/27/2018,Comedians,@mariabamfoo,Yes! message me and I can do morning of Friday? I'll pick a place near me. https://t.co/TlaxzHdMV9 +06/27/2018,Comedians,@mariabamfoo,@awoo_crouse Hey Wyatt. Message me if you'd like to meet for coffee. I'm not joking! It is for reals. I always like to rehearse. +06/27/2018,Comedians,@mariabamfoo,7 AND 9 PM SHOWS!! New Mexico! Friday! https://t.co/Q49pmSetoq +06/27/2018,Comedians,@mariabamfoo,RT @OfTheRose6: @TerilynnS This will be an incredible show. If you don’t go at least get @jackiekashian latest album. https://t.co/1BELDcxW… +06/27/2018,Comedians,@mariabamfoo,"RT @bradengw: Drop everything, run downstairs (using the hand rail of course) and go see @mariabamfoo and @jackiekashian in @NewMexico @505…" +06/27/2018,Comedians,@mariabamfoo,"RT @zaniesnashville: 💥Here Comes Lady Dynamite!💥 +@mariabamfoo is heading to Zanies July 15 for one night only! Tickets are on sale now and…" +06/27/2018,Comedians,@mariabamfoo,RT @MattRogersTho: Today is very genuinely a great day 'cause @mariabamfoo is on @LasCulturistas and ya i guess it's an honor or whatever!… +06/26/2018,Comedians,@mariabamfoo,"RT @JFLLive: The star of @netflix's ""Lady Dynamite"", @mariabamfoo, will be LIVE in #Ottawa on September 26th at the @CentrepointeT! Tix: ht…" +06/26/2018,Comedians,@mariabamfoo,"Huh. That blows. I apologize for the limited thinking of my tour. If you can drive to a coffee shop, I will do t… https://t.co/qCX4tRXT2P" +06/26/2018,Comedians,@mariabamfoo,ABQkarting! Noted. https://t.co/Z30AQc5wmE +06/26/2018,Comedians,@mariabamfoo,NEW MEXICO! This FRIDAY at 7 PM w @jackiekashian! This is the only time I've been to New Mexico or Albuquerque. T… https://t.co/fKQpFiZsWm +06/26/2018,Comedians,@mariabamfoo,"@roryalsop Wowee! So nice to hear from you, Rory! Good times in Edinburgh basements!" +06/26/2018,Comedians,@mariabamfoo,RT @janetvarney: Any selfie that puts @mariabamfoo front-and-center is a.o.k. with me! @ifc #stanagainstevil https://t.co/GbnhJCFynN +06/26/2018,Comedians,@mariabamfoo,RT @RightOnPR: Need a laugh? @NPR recs comedy specials by @harikondabolu @solomongeorgio @cameronesposito @birbigs @mariabamfoo @guybranum… +06/26/2018,Comedians,@mariabamfoo,RT @ColorOfChange: RT to tell @amazon & @Apple to reject racism and protect the voting rights of Black and poor people in North Carolina. #… +06/23/2018,Comedians,@mariabamfoo,So cool to meet you and see your terrifying boot height! https://t.co/mhHvwfy4Jr +06/23/2018,Comedians,@mariabamfoo,"RT @Glibbyglopgloob: @asis @BuzzFeed @sweatmoustache @mariabamfoo +Let him do your hair next time! https://t.co/RQZDl7vPR2" +06/23/2018,Comedians,@mariabamfoo,It is true. I wish @angelcomedy was here. It's awesome. https://t.co/XCCgrttexn +06/23/2018,Comedians,@mariabamfoo,OHMIGOD! You give me hope that I can keep going. Happy you are a co-worker in the biz! Always room for more wonde… https://t.co/RYP0l7yPqU +06/23/2018,Comedians,@mariabamfoo,"This is a metaphor for Bamfooco, Inc. sales and marketing push. https://t.co/523QFHMtMl" +06/23/2018,Comedians,@mariabamfoo,RT @BellHouseNY: SEPT. 15: Few tickets remain for @mariabamfoo at The Bell House - get them while you can! https://t.co/OC6b0Y5F7Y https:/… +06/22/2018,Comedians,@mariabamfoo,RT @grantimahara: I’m doing an offbeat trivia show with @mariabamfoo called @GoFactYourPod this Sunday 6/24 at 7pm at Angel City Brewery in… +06/22/2018,Comedians,@mariabamfoo,"So saddened by this. Glad there were at least a few thousand, hardy protesters. https://t.co/pswQ1VrRzD" +06/22/2018,Comedians,@mariabamfoo,"RT @danagould: Willard’s Mill Hospital has a great staff. With Rob Cohen, @braunger and @mariabamfoo on the set of #stanagainstevil…" +06/20/2018,Comedians,@mariabamfoo,"RT @GoFactYourPod: https://t.co/lIdIi2IWK8 + +Los Angeles! + +5pm: @MattBesser vs. @lyricsaidwhaaa +7pm: @mariabamfoo vs. @grantimahara + +Plus…" +06/20/2018,Comedians,@mariabamfoo,"RT @bikebrh: @kathygriffin @jackiekashian @mariabamfoo @Anylaurie16 @LisaLampanelli and you. + +The @JackieandLaurie show has a great list of…" +06/20/2018,Comedians,@mariabamfoo,so nice to do! Putting a word in for my pal @jackiekashian and @JackieandLaurie ! https://t.co/7QT7ppaiPm +06/20/2018,Comedians,@mariabamfoo,"RT @amyschumer: Hey New York, I’m coming to @Pier17NY with my friends on 8/1! Tickets available here https://t.co/wNTBnIXmaT" +06/19/2018,Comedians,@mariabamfoo,"RT @J_Keith: I am excited for you to come see this show for free. + +Tickets here: https://t.co/i2D1MCxbDO + +@MattBesser @mariabamfoo @lyricsa…" +06/19/2018,Comedians,@mariabamfoo,RT @wkamaubell: What happens when someone is killed by law enforcement officers and there’s a lack of justice for this killing? How is the… +06/19/2018,Comedians,@mariabamfoo,RT @splcenter: Manuel Duran was simply doing his job as a journalist when he was unlawfully arrested and sent to a remote ICE detention cen… +06/19/2018,Comedians,@mariabamfoo,"RT @splcenter: In our efforts to provide legal representation to detained immigrants, we have seen multiple cases of fathers being separate…" +06/19/2018,Comedians,@mariabamfoo,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/19/2018,Comedians,@mariabamfoo,RT @barvonblaq: I don’t understand how a country obsessed with superhero movies doesn’t recognize supervillainy. +06/19/2018,Comedians,@mariabamfoo,"RT @pattonoswalt: Some audio while you joylessly chew on your KFC, @realDonaldTrump https://t.co/a6kkvVPFiI" +06/19/2018,Comedians,@mariabamfoo,"RT @wkamaubell: ""How is this not child abuse?"" - CNN's Jeff Zeleny +""Be more specific, please."" - Secretary Kirstjen Nielsen + +SHE👏🏿DOESN'T👏🏿…" +06/19/2018,Comedians,@mariabamfoo,RT @meganamram: Can some cool country please declare war on us and win?? +06/17/2018,Comedians,@mariabamfoo,RT @PortlandDSA: #AbolishICE https://t.co/Ye33GO87wC +06/17/2018,Comedians,@mariabamfoo,"Thanks for coming! Tonight @JoinTheDynasty, we raised $2,000 for the @ACLU_SoCal - so THANK YOU! https://t.co/G1LW43yum7" +06/17/2018,Comedians,@mariabamfoo,Thank you!!!! https://t.co/yo4WfXg8fL +06/17/2018,Comedians,@mariabamfoo,"RT @lapazylaunidad: If @netflix does not stop displaying the confederate flag on its home page every single day in order to promote ""White…" +06/16/2018,Comedians,@mariabamfoo,RT @thatsfunny: heyLA @JoinTheDynasty 8pm tonight @mariabamfoo 8:30pm @LargoLosAngeles @JuddApatow @BethStelling & more 10pm @ucbtla @guybr… +06/15/2018,Comedians,@mariabamfoo,@roadieric @jayemcbride @roadsidephil @rickoverton @PaulProvenza @jackiekashian @AniriaComedian @SarahKSilverman… https://t.co/2GlU3Hetob +06/15/2018,Comedians,@mariabamfoo,"RT @JFL42: .@JuddApatow describes @mariabamfoo as the ""funniest comedian in the world"" and who are we to disagree with that? Come see Maria…" +06/15/2018,Comedians,@mariabamfoo,Nice! https://t.co/Nj3y5QoRFU +06/15/2018,Comedians,@mariabamfoo,"@jcolburn1, I'm at Dynasty Typewriter downtown on Saturday and I'd love to make it a benefit for the @ACLU_SoCal. I… https://t.co/bSbGtwjU07" +06/14/2018,Comedians,@mariabamfoo,RT @DenofGeekUS: Stan Against Evil booked some seriously awesome guest stars to play monsters of the week in season three. https://t.co/oXb… +06/14/2018,Comedians,@mariabamfoo,RSVP to protest in your area! https://t.co/YqKXIAsYkg +06/14/2018,Comedians,@mariabamfoo,Just called! Let me know where to sit-in. https://t.co/bN65uz7OUR +06/14/2018,Comedians,@mariabamfoo,RT @emilynussbaum: Interesting thread https://t.co/DUlHtjWdcw +06/14/2018,Comedians,@mariabamfoo,GORGEOUS! https://t.co/yJcw1DKxaf +06/14/2018,Comedians,@mariabamfoo,RT @wkamaubell: My debut @NetflixIsAJoke stand-up comedy special #PrivateSchoolNegro comes out on June 26 WORLDWIDE! Here's a trailer NOW!… +06/14/2018,Comedians,@mariabamfoo,"RT @AFLCIO: Of the 10 most common jobs in Ohio, just two pay enough for a worker to afford a modest two-bedroom apartment. https://t.co/1ZB…" +06/14/2018,Comedians,@mariabamfoo,"RT @SenFeinstein: Happy #FlagDay! Today, let’s remember what our flag stands for: equality, opportunity, freedom and refuge for so many per…" +06/14/2018,Comedians,@mariabamfoo,"RT @SmartAssJen: I saw Cam do this live and was floored. It covers a lot of ground, goes in unexpected directions, is damn funny throughout…" +06/14/2018,Comedians,@mariabamfoo,"RT @TranslateRealDT: Imagine how much wasteful spending we’d save if we didn’t have... + +...Trump spending $67,000,000 on golf; +...Mnuchin s…" +06/14/2018,Comedians,@mariabamfoo,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Comedians,@mariabamfoo,"DULUTH, MN PROTEST TRUMP RALLY June 20th! It's happening! @perfectduluth https://t.co/MWH1Ii6W85" +06/14/2018,Comedians,@mariabamfoo,"Hilarious. Well, I'll ask around see what's going on in Duluth! I'd like to help. https://t.co/xmTTFvy1rg" +06/14/2018,Comedians,@mariabamfoo,"RT @JFLLive: The star of @netflix's ""Lady Dynamite"", @mariabamfoo, will be performing live for the first time in #Ottawa at the @Centrepoin…" +06/14/2018,Comedians,@mariabamfoo,DULUTH! @perfectduluth! https://t.co/MR5bla4au5 +06/14/2018,Comedians,@mariabamfoo,"RT @laurakrabappel: @mariabamfoo Hi Maria, There are protest actions planned across the US tomorrow in response to the Trump administration…" +06/14/2018,Comedians,@mariabamfoo,I feel similarly disappointed. I don't know what to do. https://t.co/nCvq5wriAK +06/14/2018,Comedians,@mariabamfoo,"RT @jacobsoboroff: Just finished tour, don’t even know where to start. + +One of the first things you notice when you walk into the shelter…" +06/14/2018,Comedians,@mariabamfoo,RT @cameronesposito: My new special is AVAIL NOW!! https://t.co/mrdDRgIvPt to stream free or purchase to benefit @RAINN https://t.co/bxied9… +06/14/2018,Comedians,@mariabamfoo,"YAY, @cameronesposito!!!!!!!!!! https://t.co/8HmU7BPawy" +06/14/2018,Comedians,@mariabamfoo,OH MY LORD. That's really disheartening. https://t.co/KhRsoNWm1l +06/14/2018,Comedians,@mariabamfoo,"My god, that is a typo. I do 60 minutes and then, tip into the nearest curtain. https://t.co/ZnC6oO9gkq" +06/12/2018,Comedians,@mariabamfoo,You look great! https://t.co/9lkGl7iEjU +06/12/2018,Comedians,@mariabamfoo,"RT @marcellacomedy: We have a super stacked and hilarious line up this week at Women Crush Wednesdays with Casey Balshem, Pallavi Gunalan,…" +06/12/2018,Comedians,@mariabamfoo,"RT @mindykaling: Guys! It's a good day! #Champions, the comedy show I wrote, produced, and star in, is now available on #Netflix internatio…" +06/12/2018,Comedians,@mariabamfoo,"RT @cameronesposito: Yesterday u raised $8k for @RAINN. What if we did it again today? + +Go to https://t.co/VfwqhnFlsz, watch ‘Rape Jokes’…" +06/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: Ophira Eisenberg is a national treasure and our accents are alike. See her in Philadelphia!! https://t.co/lpku4SzwnT +06/12/2018,Comedians,@mariabamfoo,RT @anylaurie16: https://t.co/TObKIG9esm https://t.co/zv45QJuxLB +06/12/2018,Comedians,@mariabamfoo,@drunkhistory @derekwaterss Have a drunk history pitch for the next season: The History of Alcoholics Anonymous. Th… https://t.co/e63zrfkTa6 +06/12/2018,Comedians,@mariabamfoo,"thanks for the shout-out, Dulce! So great seeing you on the Daily Show and killing it. https://t.co/fpQhMCSkFF" +06/12/2018,Comedians,@mariabamfoo,PHILLY! JULY 18th! My pal @ophiraeisenberg is coming to see you at 8 PM! She's WONDERFUL! https://t.co/GcB48blX2B +06/12/2018,Comedians,@mariabamfoo,RT @michaelianblack: Cameron is a goddamned national treasure is what she is. https://t.co/srCSXaZG2Y +06/12/2018,Comedians,@mariabamfoo,"RT @DivaDelux: Loving all the hilarious people on this list, especially @rileyjsilverman @chrissymeds @Party_Harderson @BisHilarious @Marga…" +06/12/2018,Comedians,@mariabamfoo,Very niiice! https://t.co/oY7cqgeftt +06/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: New hour from Esposito! You can stream it free from the website (https://t.co/jaWbpB4rZz) or donate to download a copy w… +06/12/2018,Comedians,@mariabamfoo,@cameronesposito NEW SPECIAL IS FREE! AND DONATES ALL PROCEEDES TO RAINN! ENJOY! https://t.co/JuTNLuLDXk +06/12/2018,Comedians,@mariabamfoo,Los Angeles! I'm at Dynasty Typewriter headlining downtown on SATURDAY! COME BY! Or take care of yourself and fal… https://t.co/i7R66CXbaG +06/12/2018,Comedians,@mariabamfoo,RT @andriakbarratt: Almost missed this! Don't make the same mistake! https://t.co/1Ce8ypt9ho +06/10/2018,Comedians,@mariabamfoo,"RT @guybranum: My book ""My Life As A Goddess"" was supposed to come out in June for #PrideMonth but I missed several deadlines! Pre-order it…" +06/10/2018,Comedians,@mariabamfoo,"Really loved this column by @SarajBenincasa (as well as her book, Real Artists Have Day Jobs!) https://t.co/lHDyApBQbn" +06/10/2018,Comedians,@mariabamfoo,"RT @thecomedybureau: #OnTheHorizon: +@jointhedynasty presents Season 1: The Prototype +https://t.co/M8pOKO12Hf https://t.co/ciLqWvohzp" +06/10/2018,Comedians,@mariabamfoo,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/09/2018,Comedians,@mariabamfoo,"RT @SteelStacks: These 11 NEW SHOWS are ON SALE NOW including @mariabamfoo, @MavericksMusic, @traecrowder, @JewdyGold, @luccadoes & more! I…" +06/08/2018,Comedians,@mariabamfoo,RT @justforlaughs: Every. Time. #TBT to 2006 with @mariabamfoo. https://t.co/WIDCOqH5kO https://t.co/mGwgiKBfzK +06/06/2018,Comedians,@mariabamfoo,You can - any time. They are complete and I'll tweet my next daytime show where I'm trying the new hour. And when… https://t.co/FrqlPaMEaA +06/06/2018,Comedians,@mariabamfoo,Hello T-shirt Lovers/Psych facility supporters: These are the final numbers in this Awesome Style. I'll then move… https://t.co/BFk7N3GCUc +06/06/2018,Comedians,@mariabamfoo,You had a great set! I love your stuff! Heard about you on dork forest radio with my pal @jackiekashian! I love t… https://t.co/OCYVuSU2hm +06/06/2018,Comedians,@mariabamfoo,"If it was cafe de leche in Altadena, it was me! I have been here all day. Always say hello and hello to your bf. https://t.co/FnURm9mom1" +06/06/2018,Comedians,@mariabamfoo,"RT @JFLLive: #Ottawa! @mariabamfoo is coming to the @CentrepointeT! + +#PugLife #MondayMood #MondayMotivation https://t.co/PY93imMrxn" +06/05/2018,Comedians,@mariabamfoo,"RT @800273TALK: You are enough. If you find yourself struggling, remember that the Lifeline is here for you, 24/7, at 1-800-273-TALK (8255)…" +06/04/2018,Comedians,@mariabamfoo,@derekwaterss Hey Derek! Great to see you at the Clusterfest. I had a Drunk History pitch (just for fun- might be good for someone) +05/31/2018,Comedians,@mariabamfoo,Agh. Can't do it due to RICH PERSONAL LIFE! But thank you!!!!!! https://t.co/CD64FXfbA2 +05/31/2018,Comedians,@mariabamfoo,"RT @thetinashow: @aparnapkin hello funny lady. @mariabamfoo is coming to Ottawa in the autumn...can you be next, please? <3" +05/31/2018,Comedians,@mariabamfoo,"RT @hoperhenderson: @Mother_Faulkner also if you have a spotify account, there are some great stand-up albums on there - I forever love @ma…" +05/31/2018,Comedians,@mariabamfoo,RT @AcmeComedyCo: We’re SUPERSIZING our marketing game for the queen @mariabamfoo!!! Don’t miss her at @theordway on October 20th! Tickets… +05/31/2018,Comedians,@mariabamfoo,RT @nsilverberg: I'm so excited for @clusterfest!! @RachelWenitsky and I will be doing the @Reductress podcast with two of my favorite comi… +05/31/2018,Comedians,@mariabamfoo,RT @JFLMTL: Add @mariabamfoo's love of pugs to the list of the hundred things we love about her 🐾 😍 #ArtistoftheWeek #JFLMTL https://t.co/… +05/29/2018,Comedians,@mariabamfoo,TORONTO! I’ll be @JFL42 in September! Pre-sale passes available now w/password 42COMICS https://t.co/eHVCVMQZHG +05/29/2018,Comedians,@mariabamfoo,NASHVILLE! I’ll be @zaniesnashville Sun. July 15! Two shows – on sale now! https://t.co/JLkdX1C2TX +05/29/2018,Comedians,@mariabamfoo,ORLANDO! I’ll be at Plaza Live Sat. July 14! Tix on sale this Friday. https://t.co/ZXe1Hx0lAp +05/29/2018,Comedians,@mariabamfoo,RT @karlhungus76: @TheDallasBatman @mariabamfoo https://t.co/wAQadElFjP +05/29/2018,Comedians,@mariabamfoo,RT @JFLMTL: This week's #ArtistoftheWeek is one dynamite lady! See @MariaBamfoo shake things up in Montreal at #JFLMTL on July 27. https:/… +05/29/2018,Comedians,@mariabamfoo,RT @standup: Your Joke of the Day from @mariabamfoo. https://t.co/d2gzy6Y4Pf +05/29/2018,Comedians,@mariabamfoo,"RT @Proteautype: This festival has become a vital part of Toronto. And once again, the lineup rocks. The Bammer, @mariabamfoo! The honorary…" +05/29/2018,Comedians,@mariabamfoo,"RT @pksfrk: Woot! Just got tix to see @mariabamfoo at @zaniesnashville in July! I've lost track of how many times I've seen her now, but A…" +05/29/2018,Comedians,@mariabamfoo,RT @GregProops: @ouldsmobile @JFL42 @sethmeyers @Jokoy @iamwandasykes @hannibalburess @chrisdelia @kenjeong @anthonyjeselnik @mariabamfoo @… +05/28/2018,Comedians,@mariabamfoo,Was just there. Ah well. https://t.co/49efdjH0Aj +05/28/2018,Comedians,@mariabamfoo,"RT @clusterfest: Go ahead - get your mouth on! + +@Reductress is bringing @itsmouthtime to #Clusterfest with special guests @mariabamfoo and…" +05/28/2018,Comedians,@mariabamfoo,"Thank you for this- hilarious. I go down fairly quickly, but with a mixed green salad, fresh raspberries, pine nuts… https://t.co/FW97F8KUk3" +05/27/2018,Comedians,@mariabamfoo,Thanks for the kind words!!! https://t.co/89Anh9j275 +05/27/2018,Comedians,@mariabamfoo,"It stuck! I went to Dr. Rodney Boone in glendale, CA and he has a bunch of therapists that work with him. I don't… https://t.co/HDno7cqsRe" +05/27/2018,Comedians,@mariabamfoo,Great to meet you too! See you around comedy! https://t.co/PDlt1EZ53i +05/27/2018,Comedians,@mariabamfoo,I'm so sorry- we had a really early flight to Cincinnati the next morning and Mama get ti-ti! Apologies! https://t.co/zfHEnw8b2r +05/27/2018,Comedians,@mariabamfoo,Thanks for driving so far!!! https://t.co/eB8f5WJYUk +05/27/2018,Comedians,@mariabamfoo,"Wowee Albe! I've never been and though I am a few years older than the billboard, I feel hopeful that I will be rec… https://t.co/miIoCj4Tum" +05/27/2018,Comedians,@mariabamfoo,RT @jbendery: Harvard labor professor: The NFL’s “take a knee” ban is flatly illegal https://t.co/d8AjWXwiKn +05/27/2018,Comedians,@mariabamfoo,"Thanks so much for coming out! My cousins came and were very impressed with the crowd. So, GOOD JOB! https://t.co/93yMa6JvbY" +05/27/2018,Comedians,@mariabamfoo,Thanks so much for coming all the way! https://t.co/eB8f5WJYUk +05/27/2018,Comedians,@mariabamfoo,Thanks so much for coming! What a lovely crowd!! https://t.co/bwFZ2G6Fqq +05/25/2018,Comedians,@mariabamfoo,"RT @jackiekashian: if this is my last tweet: +Republicans are upset because kneeling players are disrespecting white supremacy. That’s what…" +05/25/2018,Comedians,@mariabamfoo,"RT @AWolfeful: @GreenFrieda @mariabamfoo Current needs include: a freezer to store donated meals, rent for shelter, bus passes, pillows, un…" +05/25/2018,Comedians,@mariabamfoo,Wowee! https://t.co/i1tx1z7qPc +05/25/2018,Comedians,@mariabamfoo,RT @jerseylightning: I just finished watching @TigNotaro new special on Netflix. Absolutely amazing. And I realized the last few specials… +05/25/2018,Comedians,@mariabamfoo,RT @moviesandcool: Review: #LadyDynamite: Season 2' - The best show on television that you're not watching. @Netflix @mariabamfoo https://t… +05/25/2018,Comedians,@mariabamfoo,RT @TaftTheatre: .@MariaBamfoo is an empath & advocate & also so so funny!! Don’t miss her show at the Taft THIS SATURDAY! https://t.co/u7z… +05/25/2018,Comedians,@mariabamfoo,"RT @GayHorseDerek: .@mariabamfoo making @MayaRudolph break on Comedy Bang Bang pitching a business idea as ""home free conservative"" Claire…" +05/25/2018,Comedians,@mariabamfoo,RT @metrotimes: A delightfully awkward conversation with comedian Maria Bamford https://t.co/Ly0GBDOwNG @mariabamfoo +05/23/2018,Comedians,@mariabamfoo,RT @CincinnatiUSA: Come laugh with us when @mariabamfoo comes to @TaftTheatre: https://t.co/97jrYNk1nL https://t.co/9wHzJN7k1e +05/23/2018,Comedians,@mariabamfoo,"Very true. I had a problem with that myself. I apologize! Also, everyone was wearing shoes and speaking to each o… https://t.co/4IIpbmYs9L" +05/23/2018,Comedians,@mariabamfoo,"RT @AWolfeful: For any folks who live in Highland Park/Eagle Rock/Glassell Park areas of Los Angeles, i.e. NELA, Recycled Resources is in d…" +05/22/2018,Comedians,@mariabamfoo,"HEY NYC AND PHILLY! Check this out @ellen_forney is coming!: NEW YORK +Wed, 5/23, 7:30PM +The Strand… https://t.co/vyJlL7zr6N" +05/22/2018,Comedians,@mariabamfoo,So sorry but need to cancel Clubhouse 1 pm show tomorrow (wednesday) due to work opportunity. #livebetterworkunion… https://t.co/WiViv8ECga +05/22/2018,Comedians,@mariabamfoo,I will end with a hat-trick. https://t.co/QMV4lRlSzV +05/22/2018,Comedians,@mariabamfoo,RT @billyeichner: Incomprehensibly cruel. Vote out all Republicans and Trump supporters on Nov. 6th. https://t.co/KPfEcrmLKx https://t.co/6… +05/22/2018,Comedians,@mariabamfoo,OTTAWA! I’ll be @CentrepointeT Sep. 26! Pre-sale code: BAMFORD https://t.co/Mssae8eOrl +05/22/2018,Comedians,@mariabamfoo,So sad to hear the passing of @sadikifuller. He was a great person and a wonderful comedian and I had the pleasure… https://t.co/1PIImIBMR9 +05/22/2018,Comedians,@mariabamfoo,RT @elizaskinner: If you are a comic - especially a new or female comic - and you’re not listening to @JackieandLaurie you’re missing out o… +05/22/2018,Comedians,@mariabamfoo,"RT @easternblot: @mariabamfoo And if you’re worried the movie dog might meet a tragic end, you can check https://t.co/R2TPs6JSwA before wat…" +05/21/2018,Comedians,@mariabamfoo,I registered to vote online in California at https://t.co/BsWFt3rm1T #VoteCalifornia. +05/21/2018,Comedians,@mariabamfoo,RT @billyeichner: California friends! TOMORROW (Monday May 21st) is the LAST day you can register to vote in order to vote in the CA primar… +05/21/2018,Comedians,@mariabamfoo,"RT @therealmollymcg: 🗣🗣🗣🗣🗣🗣toronto, don’t miss this angel!! https://t.co/5EzM306B5r" +05/21/2018,Comedians,@mariabamfoo,"RT @cameronesposito: Come see me tape a special this Thursday 7 & 9PM at @ucbtla! + +Tix: https://t.co/mrdDRgIvPt https://t.co/l5Jd05H9ks" +05/21/2018,Comedians,@mariabamfoo,Wow. @jackiekashian ? Lighting pull you? https://t.co/PiPqXF07vZ +05/21/2018,Comedians,@mariabamfoo,"RT @deenatypedthis: Thanks to @nikkidelamotte +from @clevelanddotcom for writing the story. Includes shoutouts to heroes @mariabamfoo and @M…" +05/21/2018,Comedians,@mariabamfoo,"RT @PortCityPCMH: Last call for Maria Bamford tickets at PCMH on July 7, only a handful left: https://t.co/u4K5YTt70P @mariabamfoo" +05/21/2018,Comedians,@mariabamfoo,DOES IT HAVE DOGS? Movie Reviews! So helpful. https://t.co/LZW3wAHAV9 +05/21/2018,Comedians,@mariabamfoo,"RT @MrEmilyHeller: SEATTLE! I'm shooting a special at the Showbox on June 16! NO MEN ALLOWED!!!!!!* +Early Show: https://t.co/aqe9dH5Py3 +La…" +05/21/2018,Comedians,@mariabamfoo,RT @ellen_forney: @AndyKindler How is it we didn’t get a photo with you me and @mariabamfoo at @vromans ?? So I photoshopped one!🤔✂️Eh? htt… +05/21/2018,Comedians,@mariabamfoo,That is a really nice couch. You are lucky. We have not thought out our couch system as well and it is seriously… https://t.co/av3uVtFwWQ +05/21/2018,Comedians,@mariabamfoo,Thank you. I will wear your t-shirt in solidarity. https://t.co/0fl2ha4r1e +05/21/2018,Comedians,@mariabamfoo,"RT @ellen_forney: Book tour update!! My favorite pic from Friday: me & @mariabamfoo @vromans. We agree that side effects suck, & @bpHopeMag…" +05/19/2018,Comedians,@mariabamfoo,"A PR person? I'd miss out on the social anxiety that is the internet! Only I will benefit! I like to ""like"" and ""f… https://t.co/SvwYGbQjRo" +05/19/2018,Comedians,@mariabamfoo,"FREE SHOW! Mon &Wed at 1 pm, I'll be doing my new hour at The Clubhouse 1607 N. Vermont Avenue, East Hollywood, CA,… https://t.co/m8u8JMKWcV" +05/19/2018,Comedians,@mariabamfoo,"She is an American (and had she competed in Eurovision and taken every prize, European) Treasure. A woman of iron… https://t.co/QFWHNwNCtX" +05/18/2018,Comedians,@mariabamfoo,You have set your bar at a leap-able height. https://t.co/Vt02RZc02Z +05/18/2018,Comedians,@mariabamfoo,"TONIGHT at 7 pm @vromans pasadena w ms @ellen_forney! Her new book ROCK STEADY is immensely helpful, hilarious and… https://t.co/XOZo6YLciC" +05/18/2018,Comedians,@mariabamfoo,Niiiice merch! Wahoo! https://t.co/AhZ4PUTrl9 +05/17/2018,Comedians,@mariabamfoo,"RT @JFLMTL: Just for Laughs is the world's largest stand up comedy festival and the biggest party in comedy. If last year looks fun, just w…" +05/17/2018,Comedians,@mariabamfoo,RT @fantagraphics: Los Angeles! Don't miss out on an amazing two-for-one show with cartoonist @ellen_forney and comedian @mariabamfoo FREE… +05/17/2018,Comedians,@mariabamfoo,So fun! Excited to see you on Friday at VROMANS! https://t.co/siMrayyITa +05/16/2018,Comedians,@mariabamfoo,Montreal! Join me at @JFLMTL July 27! Pre-sale code: JFLMTL https://t.co/2843ASWdU8 https://t.co/sSx2NvBBYz +05/15/2018,Comedians,@mariabamfoo,CINCY! (CINCINNATI) May 26th SATURDAY! @jackiekashian opens! We will be there at 7:30 PM but the show begins at 8… https://t.co/u6wyeOTjCi +05/15/2018,Comedians,@mariabamfoo,"DETROIT! ROYAL OAK! ONE NIGHT, ONE SHOW! TWO HEADLINERS FOR THE PRICE OF ONE! WHY AM I YELLING? FRIDAY MAY 25th… https://t.co/QNcYDUESVq" +05/14/2018,Comedians,@mariabamfoo,"RT @billmurraypub: Hey @mariabamfoo, you own a part of The Bill Murray now! Thank you for supporting us. You, Scott and the pugs are welcom…" +05/12/2018,Comedians,@mariabamfoo,THANK YOU!!!! so fun with Kate and Aaron! https://t.co/KxJm42vOnE +05/12/2018,Comedians,@mariabamfoo,RT @moshekasher: Literally a plot line from The Handmaids Tale. https://t.co/062p8cYJ60 +05/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: First show last night @FlappersComedy I mentioned my dad is 81 and it got an applause break. Huh. So I stare at the audi… +05/12/2018,Comedians,@mariabamfoo,RT @goodgoodcomedy: #Philly! TONIGHT. 8:30 PM. Come see the hilarious @KateWillett & special guest @samlymatters. Cheap tix: https://t.co/W… +05/12/2018,Comedians,@mariabamfoo,GORGEOUS WORK! Strut with pride. https://t.co/Y6mLUHRBJQ +05/10/2018,Comedians,@mariabamfoo,Thanks for coming! https://t.co/JaUiaDHrmr +05/09/2018,Comedians,@mariabamfoo,Nope! https://t.co/EzvTSjAKBw +05/07/2018,Comedians,@mariabamfoo,PHILADELPHIA! 7:30 PM with Michelle Biloon! Tickets still available for general admit at $25. Come if you have th… https://t.co/MzucfjAZ0Y +05/07/2018,Comedians,@mariabamfoo,"RT @HeliumComedy: #ThisWeekAtHelium we graduate a new crop of students, one night with @SteveHofstetter, @TheJoeMatarese stops by for the w…" +05/07/2018,Comedians,@mariabamfoo,"RT @amiblue29: Love @mariabamfoo on #WorstCooks . . . . and, she is coming to Maine! Can't wait to see her at the @statetheatreME. . . . T…" +05/04/2018,Comedians,@mariabamfoo,"RT @elizaskinner: Thank you, Chad. You have impeccable taste in Comedy. https://t.co/QAGMRGi2WX" +05/04/2018,Comedians,@mariabamfoo,"RT @splcenter: 50 years ago, the Fair Housing Act sought to increase integration & end racial discrimination. But many of America's cities…" +07/02/2018,Comedians,@margaretcho,Excited to be included on the list of the 7 Best Female Comedians on Netflix Right Now: https://t.co/qtFpq0OM2w @netflix +06/30/2018,Comedians,@margaretcho,Happy Saturday. #beauty #glam https://t.co/TQLazvfKVG +06/30/2018,Comedians,@margaretcho,"500,000 OF YOU TOLERATE MY TWITTER FEED! THANK YOU FOR THE LOVE AND SUPPORT! https://t.co/UNPdk5SzDV" +06/30/2018,Comedians,@margaretcho,Fixed it! https://t.co/njdV9noP8N +06/29/2018,Comedians,@margaretcho,RT @MAKERSwomen: Comedian @MargaretCho reflects on the resilience and sense of community she gained while growing up in San Francisco durin… +06/29/2018,Comedians,@margaretcho,RT @MikePMoffatt: @rywadams Amazing idea! My remake of Sanford and Son is starring @margaretcho and @IncredibleCulk. +06/29/2018,Comedians,@margaretcho,RT @steemee: ⁦@POTUS⁩ DID THIS! BLOOD ON HIS HANDS! ⁦@cher⁩ ⁦@Madonna⁩ ⁦@margaretcho⁩ ⁦@kathygriffin⁩ ⁦@DebraMessing⁩ ⁦@chelseahandler⁩ ⁦@… +06/29/2018,Comedians,@margaretcho,My face has really slimmed down from my @equinox workouts. It’s weird that’s where I lose weight! https://t.co/URfGIi37s2 +06/29/2018,Comedians,@margaretcho,@BruceDevlin @MontBleuResort REPLY +06/29/2018,Comedians,@margaretcho,TOMORROW NIGHT! Get ready Nevada. Tickets are still available. https://t.co/2MVf2NJpC0 @MontBleuResort +06/28/2018,Comedians,@margaretcho,"RT @KaleidoscopeFF: Margaret Cho: ‘Nobody Has Ever Really Accepted That I’m Truly Bisexual’ + +HuffPost #TheFutureIsQueer https://t.co/8EBigN…" +06/27/2018,Comedians,@margaretcho,"With Kennedy retiring, the right to access abortion in this country is on the line. Pres. Trump has promised to onl… https://t.co/usT6UZaZ2d" +06/27/2018,Comedians,@margaretcho,I don’t know about this. Purple glitter too much? https://t.co/bIvLtNpZFy +06/25/2018,Comedians,@margaretcho,Here’s me from the #LimestoneComedyFestival. I really look like a comedian. If you're in Nevada this Saturday the 3… https://t.co/QsU1ivgjw8 +06/24/2018,Comedians,@margaretcho,"To support @votolatino and #StopSeparation, @lenadunham and @JenniKonner will be matching your donations to Voto La… https://t.co/OKUCiDWQc2" +06/22/2018,Comedians,@margaretcho,RT @BillNyeSaves: .@BillNye and @MargaretCho welcome you to flavortown. https://t.co/lTlU9rT1lB +06/22/2018,Comedians,@margaretcho,"RT @Refinery29: We sat down with @jvn and @margaretcho to talk about #Pride, coming out, twerking and why the B in LGBTQ+ is still waiting…" +06/22/2018,Comedians,@margaretcho,RT @FARNOOSH: In convo with @margaretcho and how hamburgers fed her early money lessons. https://t.co/N85GrFrFWf #SoMoney https://t.co/6nj… +06/22/2018,Comedians,@margaretcho,RT @stvrsnbrgr: @robreiner @StephenAtHome @iamsambee @chelseahandler @kathygriffin @margaretcho @kathynajimy https://t.co/MtWxciEHi2 +06/22/2018,Comedians,@margaretcho,"It's Friday afternoon and I know you're not working, SO GO BUY YOUR TICKETS NOW! See you on the 30th at the… https://t.co/vxRjGEZQGz" +06/20/2018,Comedians,@margaretcho,Come see me June 30th at the @MontBleuResort You can buy your tickets here: https://t.co/SrlpCRGj4S https://t.co/FAhYujTwpM +06/20/2018,Comedians,@margaretcho,Happy #Pride Month! Check out this inspiring project I was part of with @LogoTV to highlight our LGBTQ+ family with… https://t.co/CcRAMJtppx +06/19/2018,Comedians,@margaretcho,Honored to be on the LOGO 30 https://t.co/yTnymwCDy9 +06/19/2018,Comedians,@margaretcho,RT @noahmichelson: I recently caught up with @MargaretCho to talk about Pride but the most powerful part was when she opened up about the s… +06/18/2018,Comedians,@margaretcho,Come see me at #JFL42! Tickets on sale at https://t.co/LQgWhz6XiQ https://t.co/cR3p49qa7y +06/15/2018,Comedians,@margaretcho,RT @ProudTimes: @margaretcho is still on tour! You won't want to miss this comedy queen! For more info on tickets check out https://t.co/er… +06/14/2018,Comedians,@margaretcho,RT @DanPasternack: Here's a @margaretcho Throwback Thursday to 1994. The 8th Annual American Comedy Awards with the great Jonathan Winters… +06/14/2018,Comedians,@margaretcho,RT @ProudTimes: Preview of our June issue -online tomorrow morning! We are so excited to bring you this issue with cover story @margaretcho… +06/11/2018,Comedians,@margaretcho,"Tickets available now for #JFL42 and I’ll be there 9/22!!! + +https://t.co/LQgWhz6XiQ https://t.co/ZN585prSzE" +06/10/2018,Comedians,@margaretcho,"HAPPY PRIDE TO ALL YOU LOVERS, LIVERS, AND LIFEGIVERS 🌈🌈🌈 https://t.co/NBGdgayjim" +06/08/2018,Comedians,@margaretcho,"RT @Jayson510: @BreedLittle @margaretcho A favor please, don’t use gay as a way to say lame or stupid. Thanks" +06/06/2018,Comedians,@margaretcho,THIS GIRL IS A FORCE TO BE RECKONED WITH AND THERE WILL BE NO SLANDER AGAINST HER NAME. #KellyMarieTran https://t.co/dbe1saJlDi +06/06/2018,Comedians,@margaretcho,RT @MAKERSwomen: Comedian @MargaretCho reflects on the resilience and sense of community she gained while growing up in San Francisco durin… +06/05/2018,Comedians,@margaretcho,"THIS FRIDAY & SATURDAY - JUNE 8 & 9TH!! IM BACK AT IT NEW JERSEY!!! HEADING TO @StressFactoryNJ, GET TICKETS TODAY… https://t.co/SDdRVWCDPy" +06/05/2018,Comedians,@margaretcho,Girl have you had dinner with her? I have. HMU for tips! https://t.co/R5A3IoAaGX +06/05/2018,Comedians,@margaretcho,RT @ComedyPlugs: RT @StressFactoryNJ: @margaretcho this FrI @ Sat at @Vinnie_Brand’s Stress Factory!! Come out for a hilarious night of com… +06/05/2018,Comedians,@margaretcho,"RT @DivaDelux: Thanks for the love @margaretcho 🙌🏾❤️ +I can't wait to perform with @SeleneLuna & @GregWalloch https://t.co/q9NQTbz6CK" +06/04/2018,Comedians,@margaretcho,Please check out my friend @seleneluna's show TOMORROW in LA. She's an amazing talent and this is going to be a gre… https://t.co/doiyIp5vhq +05/29/2018,Comedians,@margaretcho,"RT @JFL42: We're baaaaaaack! #JFL42 2018 coming at you HARD this September! We've got @sethmeyers, @JoKoy, @iamwandasykes, @hannibalburess,…" +05/25/2018,Comedians,@margaretcho,Share this! https://t.co/jyIdir3qLX +05/25/2018,Comedians,@margaretcho,Thanks for having me!😘 https://t.co/PbIBYBQmGr +05/25/2018,Comedians,@margaretcho,Hey-O https://t.co/dAzdMPnWg2 +05/22/2018,Comedians,@margaretcho,"RT @ahmedcomedy: Hey everyone Ep#2 of “LOLNOW” is up! I talk about @margaretcho show in KL, my comedy special picks of the week, Mitzi Shor…" +05/22/2018,Comedians,@margaretcho,Shut up https://t.co/q5d4eDCwXw +05/22/2018,Comedians,@margaretcho,RT @HRC: Out #bisexual comedian @MargaretCho uses her platform for #LGBTQ representation. @HRC is proud to honor her and many other incredi… +05/22/2018,Comedians,@margaretcho,"RT @MemphisMeats: .@BillNye after tasting our clean duck: ""This is just cool!"" The full episode—featuring @margaretcho and our CEO @UmaVale…" +05/19/2018,Comedians,@margaretcho,"ICYMI, I was a clue on @Jeopardy earlier this week! https://t.co/1G7bsWUaUH" +05/16/2018,Comedians,@margaretcho,"Thank you @TIME #FreshOffTheBloat +READ AND WATCH HERE: https://t.co/2nTgFXGAip https://t.co/Fyy85tr8il" +05/14/2018,Comedians,@margaretcho,Hey! I eat algae-shrimp and mealworms and SCORPIONS with @billnye on @billnyesaves. Season 3 on @netflix now!… https://t.co/9BGfjepGVD +05/14/2018,Comedians,@margaretcho,RT @lacomedylive: TAIWAN! Are you ready for @margaretcho’s debut show? It’s gonna be a night full of laughs so don’t miss out!! 🙏 https://t… +05/01/2018,Comedians,@margaretcho,HAPPY #MAYDAY! TOUR DATES IN ASIA FILLING UP FAST! #HONGKONG #SINGAPORE #KUALALUMPUR! https://t.co/hpB2vCceKS +04/28/2018,Comedians,@margaretcho,I like where your heads at. Sorry about you and Brittany. https://t.co/rTRi074E6Y +04/28/2018,Comedians,@margaretcho,Caption This. #OldHeadShotDay https://t.co/T4ppJmVV7L +04/26/2018,Comedians,@margaretcho,Had fun sitting with Tara from @next_fem! https://t.co/gGNqUQ1u0L +04/25/2018,Comedians,@margaretcho,Yassssssssss snap snap https://t.co/89hvoHNZrl +04/24/2018,Comedians,@margaretcho,"RT @ComedyPlugs: RT @GoodnightsCC: #ThisWeekAtGoodnights we've got Good Joke / Bad Joke Bingo, @margaretcho stops by for the weekend, and R…" +04/24/2018,Comedians,@margaretcho,"RT @lacomedylive: Check out @margaretcho's meeting with DIM SUM Magazines here!! 🙂 +https://t.co/7hzdwU7ApE https://t.co/SKjQstLjQF" +04/24/2018,Comedians,@margaretcho,Can’t wait to come to you! https://t.co/34tVypfNP0 +04/24/2018,Comedians,@margaretcho,👍🏼👍🏼👍🏼 https://t.co/ibfEMsAwIg +04/24/2018,Comedians,@margaretcho,Always a good time chatting with @outinjersey! Extending #FreshOffTheBloat (we're even going to Asia) (No North Kor… https://t.co/yPYq5QDx29 +04/23/2018,Comedians,@margaretcho,👄 🍒 https://t.co/RNVNpi65QV +04/23/2018,Comedians,@margaretcho,RT @MiikeyGrey: I finally get to see @margaretcho tonight at the Addison improv! I feel like this shirt would be super gay & appropriate!… +04/22/2018,Comedians,@margaretcho,"RT @lyndseyparker: In honor of #RecordStoreDay, here are some clips of me vinyl-shopping with awesome people. #RecordPlayers + +@MargaretCho…" +04/22/2018,Comedians,@margaretcho,THATS THE PLAN! LOVE YOU AND YOUR GUNT! https://t.co/T511Tupe2z +04/21/2018,Comedians,@margaretcho,It’s 4/20! Happy Margaret Cho Day! +04/21/2018,Comedians,@margaretcho,Special counsel? I dunno...what are words... https://t.co/fsOuaFAD6d +04/21/2018,Comedians,@margaretcho,RT @yashar: Big headlines re North Korea tonight and instead of reveling in the moment..... https://t.co/ORiHDKuUnU +04/21/2018,Comedians,@margaretcho,Can’t wait for this!!!! https://t.co/thRdJfmK1w +04/21/2018,Comedians,@margaretcho,We know he likes that tho. But let’s make sure he has a target! (NOT IT) https://t.co/0gMEHVtmXJ +04/21/2018,Comedians,@margaretcho,We don’t all know each other https://t.co/cpIg4onUgS +04/20/2018,Comedians,@margaretcho,"RT @leezy911: Getting to teach @MrEddieHuang’s hilarious and real memoir today with @margaretcho’s stand-up comedy - humor, politics, race,…" +04/20/2018,Comedians,@margaretcho,RT @AmandaGThang: @margaretcho you have inspired us to start our own queer run podcast called Near and Queer to My Heart (iTunes/Spotify) w… +04/18/2018,Comedians,@margaretcho,We're taking #FreshOffTheBloat to Singapore! I talked about it to @aprilmag - check it out here:… https://t.co/nyrCarbWeQ +04/12/2018,Comedians,@margaretcho,What's up Orlando? See you this weekend. #FreshOffTheBloat https://t.co/1F09tCkZ3z +04/12/2018,Comedians,@margaretcho,A very cute interview with #Meaww https://t.co/HtoypFblL4 https://t.co/RD1bpxqTlc +03/30/2018,Comedians,@margaretcho,I GOT THREE DATES IN ASIA COMING UP AND NONE OF THEM ARE KOREA CAUSE I AM TOO CONTROVERSIAL TO GET INTO THAT MESS R… https://t.co/x8VBs49Npd +03/27/2018,Comedians,@margaretcho,Had the pleasure of spending time with this extremely witty voice of a generation so I encourage you to making the… https://t.co/Ny2ejc6L9T +03/26/2018,Comedians,@margaretcho,"#HappyBdayStevenTyler!!! 70 YEARS YOUNG, BABY! https://t.co/OIrR7JHmFP" +03/22/2018,Comedians,@margaretcho,APOCALYPSE READY https://t.co/2PKMBRy2KF +03/19/2018,Comedians,@margaretcho,"RT @bowenyang: Look, @margaretcho and @roccocomedy are on this week and it’s a really special ep. Very very very thankful @mattrogerstho an…" +03/19/2018,Comedians,@margaretcho,Fun little interview with @michaelraver. READ IT HERE: https://t.co/MLQvrX3c7Q https://t.co/nBfgAm70fi +03/12/2018,Comedians,@margaretcho,"RT @PBImprov: The one and only @margaretcho takes the stage THIS WEEKEND, bringing her Fresh Off The Bloat Tour to Palm Beach! Get TIX: htt…" +03/12/2018,Comedians,@margaretcho,LOVE YOU @AnnaAkana <3 https://t.co/hN4S3nmLhK +03/09/2018,Comedians,@margaretcho,"🏝 WEST PALM BEACH 🏝 SHOW ME A GOOD TIME! I’m there next weekend, March 16/17 for #FreshOffTheBloat special engageme… https://t.co/72dxKnYggE" +03/09/2018,Comedians,@margaretcho,You help make it happen! https://t.co/7VRcItncyP +03/08/2018,Comedians,@margaretcho,The world is searching for “gender equality” on @Google more than ever before. Keep fighting for progress. Check ou… https://t.co/7YsjbiLTGh +03/02/2018,Comedians,@margaretcho,RT @WendyLowySloane: Special thx to @margaretcho for joining me this morning. Lots of laughs & great tease for what to expect tonight & tom… +03/01/2018,Comedians,@margaretcho,RT @mskason3: Share my daddy’s picture please https://t.co/V7QoEmtfqd +03/01/2018,Comedians,@margaretcho,Heading to Nyack Levity Live this weekend! TICKETS HERE IN THIS LINK HERE! (Don't live in Nyack? There's other date… https://t.co/9W0wSucwuE +02/28/2018,Comedians,@margaretcho,Can’t say don’t be a dick anymore because of you @DICKS. At least it’s for a good reason. #GunControlNow +02/28/2018,Comedians,@margaretcho,"I'm still #FreshOffTheBloat and ready to spread that magic all over you New York! Come one, come all - tickets stil… https://t.co/YYf1nKwYdd" +02/24/2018,Comedians,@margaretcho,RT @standuplive: THIS WEEKEND! Don't miss @margaretcho Friday and Saturday night! Get TIX: https://t.co/qEbYjw8673 https://t.co/OgqC3Teimk +02/19/2018,Comedians,@margaretcho,"THE FACE OF THE FUTURE HAS HAD ENOUGH OF YOUR BULLSHIT! Nothing but love for #EmmaGonzalez, a TRUE leader.… https://t.co/KOGmqdEAWI" +02/18/2018,Comedians,@margaretcho,MORE #FRESHOFFTHEBLOAT DATES! THIS WEEK IM IN PHOENIX! LAST DATES OF FEBRUARY! MORE DATES THRU JUNE!! COME GET TICK… https://t.co/2nE2yIKN4m +02/13/2018,Comedians,@margaretcho,If you’re in need of a red hot lovah this #ValentinesDay join me at the Improv in Hollywood for saucy uproarious la… https://t.co/xooLF7bZV9 +02/12/2018,Comedians,@margaretcho,"I think you'll like the vibe of this interview, I enjoyed sitting down with @SmashingIntvws I think you'll like thi… https://t.co/4Tj200t9Jr" +02/08/2018,Comedians,@margaretcho,It’s about time we prioritized female pleasure. Thanks @TrystNetwork and @JessicaBiel for spreading the word.… https://t.co/Uzbj822Elq +02/06/2018,Comedians,@margaretcho,🚨🚨🚨NEW U.S. DATES FOR #FRESHOFFTHEBLOAT!!! Tickets on sale now at https://t.co/1VdtmqDyjB!!! 🚨🚨🚨 https://t.co/Rihy15rsQ8 +02/05/2018,Comedians,@margaretcho,I sat with my longtime makeup artist @johntstapleton for a chat while he slapped up my mug using the best of… https://t.co/W5I7mfp3fs +02/02/2018,Comedians,@margaretcho,"You asked for it, INCOMING even MORE #FreshOffTheBloat including a VALENTINE'S DAY show for you Los Angeles… https://t.co/52BvU1dmIi" +01/31/2018,Comedians,@margaretcho,"RT @BenJealous: Trump was wrong to demagogue immigrant communities tonight. + +Period." +01/31/2018,Comedians,@margaretcho,RT @yashar: You are the last person in media that is allowed to speak about anything related to women ever again. https://t.co/Fxk0IzpN3S +01/30/2018,Comedians,@margaretcho,ICE HOUSE PASADENA - TOMORROW NIGHT!!! 8PM SPECIAL SHOW! DONT BE LATE! TIX HERE: https://t.co/69EQ4dCBqM #icehouse https://t.co/JSrwQuvgIk +01/25/2018,Comedians,@margaretcho,RT @GAYWhistler: A very special message to everyone in Whistler for #whistlerpride2018 from MARGARET CHO! Join us for the Night of Comedy W… +01/25/2018,Comedians,@margaretcho,Cause Frances McDormand would have that ass shook! https://t.co/xQVT6FMRGe +01/24/2018,Comedians,@margaretcho,RT @DanielNewman: Are you guys coming to snowboard with me Jan 24-28 at #Whistler? @margaretcho is coming! https://t.co/1OKfRFdOIZ +01/22/2018,Comedians,@margaretcho,"Fuck Nazis. I don’t care how cool your Christmas parties are. FUCK. YOU and the clique you claim. + +That’s all." +01/22/2018,Comedians,@margaretcho,"This wasn’t once or twice, this was constant interaction. I feel like @xychelsea used me and others because we are… https://t.co/gUU9pDFTog" +01/22/2018,Comedians,@margaretcho,"I supported @xychelsea through her ordeal and especially because I was consistently told she was either near death,… https://t.co/KLCoxsXKAN" +01/22/2018,Comedians,@margaretcho,RT @buddhistchick75: Important: @margaretcho needs your help to win the #ShortyAwards. Join me and vote https://t.co/y6rWGHWsM0 +01/21/2018,Comedians,@margaretcho,RT @LGBTPlusProud: Hate is far more of a choice... #NOH8 https://t.co/LhW7e0NDit +01/21/2018,Comedians,@margaretcho,#LetKathyBackIn https://t.co/AxwdRVNhg2 +01/19/2018,Comedians,@margaretcho,RT @beautycon: GIANNI VERSACE BROKE ALL THE RULES! LEARN HOW THE LATE FASHION MOGUL CHANGED GAME. #ACSVersace https://t.co/VYAIu6vLo1 +01/15/2018,Comedians,@margaretcho,RT @KendraHulbert: @margaretcho The Cranberries made my high school years more bearable. Very sad news today. +01/15/2018,Comedians,@margaretcho,"REST IN POWER #doloresoriordan - a voice like no other, a beauty like no other, a fierce resister that inspires all… https://t.co/CL3bhbaSEo" +01/04/2018,Comedians,@margaretcho,I start my mornings with @yashar and let it tumble from there. Always a treat! +01/04/2018,Comedians,@margaretcho,RT @jaketapper: Yesterday: https://t.co/cXCZAEtpKN +01/04/2018,Comedians,@margaretcho,I did die tho https://t.co/2EH0v6UWiT +01/04/2018,Comedians,@margaretcho,RT @arturo1gonz: Watched Margaret Cho's stand up comedy Beautiful on Hulu. Absolutely loved it. Love you @margaretcho 👅😘🙌👑 +01/04/2018,Comedians,@margaretcho,Not gonna be in Bright 2 but someone call Will Smith and lobby for it. Maybe I can be regenerated https://t.co/Y0nakdS9O0 +01/04/2018,Comedians,@margaretcho,"RT @Shmartemis: ARE YOU READY FOR SOME not FOOTBALL?! +Mother May I Dance With Mary Jane's Fist?: A Lifetone Original Movie for @adultswim…" +01/03/2018,Comedians,@margaretcho,I'm heading to Whistler because I want to freeze my tits off and heard this is the place to do that right now! I'm… https://t.co/D6SUIaVaZH +01/03/2018,Comedians,@margaretcho,Thanks to this amazing cover story from #OutinJersey! READ: https://t.co/vlAcrxHNol https://t.co/EpiFjmXJzH +12/20/2017,Comedians,@margaretcho,"Over 12,000 Dreamers are at risk of deportation TODAY because Trump ended DACA. That number will only keep growing.… https://t.co/P4kFm0ugQz" +12/19/2017,Comedians,@margaretcho,I'm on @michaelianblack's wonderful podcast @HTBA_Show which of course I am... https://t.co/49BQj0v81f +12/13/2017,Comedians,@margaretcho,"I cant stop watching this #DougJones congrats, #RoyMoore get lost! https://t.co/0EcXCKx8j9" +12/12/2017,Comedians,@margaretcho,RT @DarkMattersProj: .@margaretcho on Surviving Sexual Abuse and Evolving into a Political Comic https://t.co/3eEPdDcpTH https://t.co/0S6y7… +12/10/2017,Comedians,@margaretcho,"RT @broadly: @margaretcho ""With all the stuff about Harvey Weinstein and Louis CK—and what I talk about in my show now, too—is how we have…" +12/10/2017,Comedians,@margaretcho,"RT @o2sbe: Check out the @guardian's review of @margaretcho's wild show in Bristol!👏 https://t.co/Gci2J5JRZN +You just know her show 'Fresh…" +12/10/2017,Comedians,@margaretcho,"RT @HarvBlue: Fuck the snow, yo, we’re still coming to see you @margaretcho #rhyminggamestrong. #london" +12/09/2017,Comedians,@margaretcho,@farrah0000 @MooreSenate The character count! ❤️ +12/09/2017,Comedians,@margaretcho,"Hey @MooreSenate, the last time America was great was before AfAm were dragged here against their will, Native Amer… https://t.co/0fOuV9qBR5" +12/08/2017,Comedians,@margaretcho,COPENHAGEN! Lets get raw! #freshoffthebloat will begin shortly! https://t.co/C3Y5BkkCct +12/07/2017,Comedians,@margaretcho,Guess what? Let me record your new voicemail for you and proceeds from the auction will benefit @ACLU_SoCal! Bid on… https://t.co/UXr6anGu2B +12/04/2017,Comedians,@margaretcho,"Only 6 more shows, #Amsterdam #Antwerp #Copenhagen #London #Vienna #Oslo https://t.co/PZrIcoPY1L… https://t.co/vzuponimx4" +12/03/2017,Comedians,@margaretcho,ZING! 🤣 https://t.co/JNn5KuNyFK +11/27/2017,Comedians,@margaretcho,The #FashionPolice walks its final beat tonight on E! @e_FashionPolice - tune in at 8P EST! https://t.co/doHEv5xZQ3 +11/27/2017,Comedians,@margaretcho,Thank you Metro Edinburgh for the lovely review for #FreshOffTheBloat https://t.co/PVNhVQ4pzA https://t.co/AWrtz9YXX0 +11/23/2017,Comedians,@margaretcho,"Whoops, make that 11:45 y'all. #bbctw @bbcthisweek https://t.co/5ErRkCyniC" +11/23/2017,Comedians,@margaretcho,Happy Thanksgiving y’all and good evening London! I’m on “This Week” @bbcthisweek tonight on BBC One at 10:30 UK time! #bbctw 🦃 🇬🇧 +11/22/2017,Comedians,@margaretcho,"Before I head out on tour overseas for #FreshOffTheBloat, I had to share #WhatsInMyBag! +https://t.co/rxxukPZz1P https://t.co/pjyxAwCZl9" +11/17/2017,Comedians,@margaretcho,Good idea https://t.co/uycD9thYMO +11/17/2017,Comedians,@margaretcho,"RT @FestivalBristol: #Bristol #competitions win a pair of tickets to see @margaretcho new comedy show, Fresh Off The Bloat, @stgeorgesbris…" +11/16/2017,Comedians,@margaretcho,"Sorry #SouthDakota, we definitely tried. https://t.co/IZwJd63Hyg" +11/15/2017,Comedians,@margaretcho,#FreshOffTheBloat tix avail now click the link in my bio and join me in the UK and Europe! https://t.co/ERvwJjHP7V https://t.co/YLq3gweuYK +11/11/2017,Comedians,@margaretcho,Right. https://t.co/vG35IYwXeo +11/11/2017,Comedians,@margaretcho,I’m at @katyperry tonight in a sea of kids whose lives will be made better by the brave actions of a few #metoo +11/07/2017,Comedians,@margaretcho,Europe! UK! Special message for you 📫💌 https://t.co/PZrIcoPY1L https://t.co/5aBHY5fmcv +11/03/2017,Comedians,@margaretcho,Philly! Read my latest in @thephillyvoice ahead of my show this weekend! https://t.co/Iz79ZsF5eA https://t.co/PPMw9zPs9e +11/03/2017,Comedians,@margaretcho,"Be one of the first to #jointhedynasty, support an amazing new LA venue for comedy! https://t.co/xeCkJWhDkk" +11/03/2017,Comedians,@margaretcho,"Philly, I'm bringing my show ""FRESH OFF THE BLOAT"" to you this weekend! Get tickets here: https://t.co/PZrIcoPY1L https://t.co/AzKxeqI53S" +11/03/2017,Comedians,@margaretcho,Tickets are on sale for #FreshOffTheBloat in Europe and the U.K.! Go to my site to get them now:… https://t.co/HxRvjBFEQC +10/29/2017,Comedians,@margaretcho,"Hopefully tomorrow, from the mind of @1oneclone https://t.co/zWJh7bw1Xj" +10/28/2017,Comedians,@margaretcho,#Mueller time got me like...ayyyyyyy https://t.co/s2D9KdeVqx +10/27/2017,Comedians,@margaretcho,Always so fun running into old friends @tomgreenlive 😎 https://t.co/lwxIdOYowk +10/26/2017,Comedians,@margaretcho,OH YES⚡️⚡️ I want y’all in my coven ❤️ https://t.co/E5V0lIIT9z +10/22/2017,Comedians,@margaretcho,RT @AranORoe: Headed to see @margaretcho tonight! Loves her so much. +10/22/2017,Comedians,@margaretcho,RT @DowntownDonna69: Excited to see @margaretcho 'Fresh off The Bloat' @Castro_Theatre. Gonna be a great! https://t.co/k5eFTG8VIe +10/22/2017,Comedians,@margaretcho,"RT @ryanzhelp: Yay @MargaretCho! (@ Castro Theatre for Margaret Cho: Fresh Off the Bloat in San Francisco, CA) https://t.co/T2xSrPQY3O" +10/22/2017,Comedians,@margaretcho,RT @RickyTweetsToo: Second row to see @margaretcho tonight! Hilarious woman that constantly breaks the boundaries… https://t.co/EWGBwh0Lyt +10/22/2017,Comedians,@margaretcho,RT @Militant_Asian: Hey @margaretcho that was us cheering the Jesus joke stage right. Thank you for making us laugh our asses off. 💜 +10/22/2017,Comedians,@margaretcho,"RT @ChinHuaLu: Just saw @margaretcho perform: Not only was she hilarious, I could see her highlighter poppin' from the balcony damn 👏🏼 #Fre…" +10/22/2017,Comedians,@margaretcho,I wore my most Asian outfit for you San Francisco. See you tonight #FreshOffTheBloat https://t.co/Stc3YMuzVp +10/21/2017,Comedians,@margaretcho,RT @mitten82: I've always been a fan of @margaretcho so I designed this as a token of my love for Margaret. :) https://t.co/ILbu4bQ4K3 +10/21/2017,Comedians,@margaretcho,Thank you Santa Cruz! Love the neon 👌🏼💥⚡️ https://t.co/pB1VI3r2Iq +10/20/2017,Comedians,@margaretcho,Yessss!!!!😘 https://t.co/U3Y7Q46bbU +10/20/2017,Comedians,@margaretcho,RT @DIVAmagazine: The November issue starring @margaretcho is out now! Here's how to get your hands on a copy... #FridayFeeling 🎉 https://t… +10/20/2017,Comedians,@margaretcho,RT @centralcitydigs: @margaretcho thank you for the Sac show! Go #grrrl +10/20/2017,Comedians,@margaretcho,RT @mcespino: @margaretcho Thank you for an amazing show!!!! https://t.co/UVBKu0o5Ed +10/19/2017,Comedians,@margaretcho,"#SpiritDay, stop the bullying - don’t wait for Melania to finish her gloss and injections to tell you this. Thank y… https://t.co/ZbXzArBYlR" +10/19/2017,Comedians,@margaretcho,@Kevin_byDesign Come thru! +10/19/2017,Comedians,@margaretcho,"RT @bust_magazine: ""After more than 30 years in stand up, it is no exaggeration to say that @margaretcho is at the top of her game. "" https…" +10/19/2017,Comedians,@margaretcho,https://t.co/ERvwJjZpZt for tix!!! https://t.co/iRDdhB9pMK +10/19/2017,Comedians,@margaretcho,Can’t wait to see you either hunty https://t.co/kLE69mFVwd +10/19/2017,Comedians,@margaretcho,"Isss gone, girl https://t.co/lsSliKWltR" +10/19/2017,Comedians,@margaretcho,RT @OurMilkMoney: SO done w/ #toxicMasculinity & #patriarchy. #womenleaders this is how we #unite & #stopsilence https://t.co/5DT4WQnbts #s… +10/19/2017,Comedians,@margaretcho,"Prayers up, only got one or two AZN’s in the NBA and we need them all! #JEREMYLIN https://t.co/pdFBtivk90" +10/14/2017,Comedians,@margaretcho,Some fine words from @washingtonpost about #FreshOffTheBloat (it’s not #fakenews!) https://t.co/oWsqOnfiJ1 +10/13/2017,Comedians,@margaretcho,RT @DJchaotic: @margaretcho @GramercyTheatre You were on fire last night. Loved your set. Brought so much joy at a time when it's truly nee… +10/13/2017,Comedians,@margaretcho,Thank you to @HuffPost and fuck Harvey Weinstein. https://t.co/sovHCTDpg5 https://t.co/3u92wy3eme +10/13/2017,Comedians,@margaretcho,Thank you @GramercyTheatre and NEW YORK CITY! 🗽 #FreshOffTheBloat https://t.co/dIYtrJeNJ4 +10/13/2017,Comedians,@margaretcho,RT @patrickglee: @margaretcho thank u for tonite & for blazing a path. we were the gaggle of korean gays in front! also: our film on asians… +10/13/2017,Comedians,@margaretcho,RT @Kizzbeth: Tonight I went to see @margaretcho with @mimiferraro but we were laughing so hard we forgot to… https://t.co/ZdMkyQSv48 +10/13/2017,Comedians,@margaretcho,RT @tatianatenreyro: There is nothing more therapeutic than hearing @margaretcho call out rapists tonight during her set and talk about her… +10/13/2017,Comedians,@margaretcho,RT @jeremycolemusic: @margaretcho SLAYED per usual🙌🏼 loaughed so hard I couldn’t breathe 😂😂😂 #margaretcho #comedy… https://t.co/kqpBcJeLlG +10/13/2017,Comedians,@margaretcho,"RT @adith1801: With this crowd, @margaretcho's show might as well be sponsored by @Grindr" +10/13/2017,Comedians,@margaretcho,RT @gayinfj: Can’t wait to see @margaretcho tonight!! I have a feeling she will be exactly what I need after the last 10 months of this Tru… +10/13/2017,Comedians,@margaretcho,RT @FranciscoNYC: Over the top excited to see my inspiration for LIFE tonight: @margaretcho + @SeleneLuna!!!! https://t.co/aWgVYS2eOd +10/12/2017,Comedians,@margaretcho,"NEW YORK! You wanna get involved with a movement, come see me in #FreshOffTheBloat tonight at the Gramercy - tix:… https://t.co/mOAIW1k8Ys" +10/10/2017,Comedians,@margaretcho,"RT @BeautyconTweets: #BenAffleck done slipped up. https://t.co/Uar5XkkiRO +#HarveyWeinstein #WhyWomenDontReport https://t.co/qmBDw0LUFa" +10/06/2017,Comedians,@margaretcho,RIP Raphie May. Way too soon. Way too young. It just sucks. Love you. +10/06/2017,Comedians,@margaretcho,ShoutOUT I love you and you can beat this!!! ❤️ https://t.co/nIAJuPqb8r +10/06/2017,Comedians,@margaretcho,RT @heidyv: Getting my rofls on at @margaretcho and @SeleneLuna! Love these ladies! 😂😂😂😂 https://t.co/DX3KyF1NN3 +10/06/2017,Comedians,@margaretcho,"RT @RyTheGuy915: @margaretcho @SeleneLuna Thank-you for an amazingly hilarious show! It was my friend's first comedy show, and you made it…" +10/06/2017,Comedians,@margaretcho,RT @CurvyPervy: Hahahaha nalgas @margaretcho I love her. She's so real. @ The Wiltern https://t.co/9tNRS25iz5 +10/06/2017,Comedians,@margaretcho,"RT @jeffleach: Saw @margaretcho's 'Fresh Off The Bloat' live tonight and it was hilarious. Wonderful material, calmly executed. https://t.c…" +10/06/2017,Comedians,@margaretcho,RT @strawberrycindy: Saw @margaretcho's live stand-up comedy tonight. She's so hilarious and raunchy and seriously so perf. Thank u soo muc… +10/06/2017,Comedians,@margaretcho,RT @DJLisaFoxx: Cuz yesssss...@margaretcho was THAT FUNNY!!! thank uuu for the MUCH NEEDED giggles ;) oh and my date was fun too haa xoxo @… +06/05/2018,Comedians,@WhoopiGoldberg,Also last night @CFDA I saw the amazing @NaomiCampbell who got an award as did the wonderful @KimKardashian. It wa… https://t.co/81xJ3yE6f5 +06/05/2018,Comedians,@WhoopiGoldberg,"I was at the CFDA awards, @CSiriano decided to take me and put me in a bright beautiful color,THANK YOU so much 4 a… https://t.co/0p94fSqb6q" +05/22/2018,Comedians,@WhoopiGoldberg,"@NesterMt Umm, when John McCain says water boarding doesn’t work because he actually knows, also YOU care what I ha… https://t.co/Lr9bQmS14o" +05/01/2018,Comedians,@WhoopiGoldberg,Excited to bring my 9 animated shorts to @Tribeca ’s film festival this year to celebrate imaginative storytelling.… https://t.co/ouJZjAjJXO +04/26/2018,Comedians,@WhoopiGoldberg,Yesterday I spent the afternoon immersed in Summer the Donna Summer musical at the Lunt on Broadway. She had a 1 of… https://t.co/zuQnHqTzF2 +04/23/2018,Comedians,@WhoopiGoldberg,I just spent the whole day in the theatre watching Harry Potter & the Cursed Child pt 1 &2. The show is off the hoo… https://t.co/NsMLbfIq9c +03/09/2018,Comedians,@WhoopiGoldberg,"@KillerMartinis I read your piece in today’s @thedailybeast, story 3. I tried 2 post but I kept messing it up, hope… https://t.co/8jNyyWAlQC" +03/05/2018,Comedians,@WhoopiGoldberg,RT @LoriGreiner: Luv to laugh?! See what in the world @LouieAnderson & I are up to on the HILARIOUS TV comedy @BasketsFX w/ @galifianakisz… +02/24/2018,Comedians,@WhoopiGoldberg,"RT @Ike_Saul: Students have: + +- forced CNN town hall +- got new commitments from Rubio +- pressured POTUS to call for bump stock ban +- led a…" +02/24/2018,Comedians,@WhoopiGoldberg,RT @BetteMidler: And to you Hertz! Well done! https://t.co/b5uQZrdLKJ +02/24/2018,Comedians,@WhoopiGoldberg,"RT @helenhousandi: I've watched this GIF at least 100 times now, cry-laughing the entire time. https://t.co/Hih7VJe28T" +02/23/2018,Comedians,@WhoopiGoldberg,@FLGovScott THANK YOU for of choosing the well-being of Kids & Teachers FIRST https://t.co/JaNFzpvsHZ +02/14/2018,Comedians,@WhoopiGoldberg,@darlenebearden @auburnrunnermom @plusaphoto @ABC @TheView @JoyVBehar @foxandfriends @sunny @MeghanMcCain… https://t.co/3jb2hYvMN5 +02/14/2018,Comedians,@WhoopiGoldberg,@_Makada_ @delorose propaganda much Makada? If VP feels some type of way..he should not have attended the olympics… https://t.co/jT7n4rkufa +02/14/2018,Comedians,@WhoopiGoldberg,@JordanPeele @Ryyyanne Can I say this on the view? +02/14/2018,Comedians,@WhoopiGoldberg,@darlenebearden @ABC @TheView @JoyVBehar why are you watching Darlene you still have free will save yourself the ag… https://t.co/c0HsA4vee6 +02/14/2018,Comedians,@WhoopiGoldberg,"Oh hell AND Happy Valentine’s Day, these are for you all❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️… https://t.co/Sy11HFDv2q" +02/14/2018,Comedians,@WhoopiGoldberg,Kudos NOT kiddos +02/14/2018,Comedians,@WhoopiGoldberg,Kiddos.. not kiddos😱 +02/14/2018,Comedians,@WhoopiGoldberg,"kiddos to this director@RyanCoogler 4 getting it done damn well, Lupita, Dani, Letitia, & Florence r messing people… https://t.co/RoTm7tSicz" +02/14/2018,Comedians,@WhoopiGoldberg,"Just watched Black Panther, RUN 2 this Film, Chadwick Boseman, Michael B Jordan off the hook, & EVERY woman in thi… https://t.co/1x0qKpU0U3" +02/05/2018,Comedians,@WhoopiGoldberg,"RT @sallykohn: Trayvon Martin would have turned 23 years old today. George Zimmerman shot and killed him, but… https://t.co/XVvLV8eLvM" +01/31/2018,Comedians,@WhoopiGoldberg,RT @EdKrassen: Neil Gorsuch dined w/ high ranking GOP Senators at the home of GOP Senator John Cornyn. Why is it wrong for an FBI agent to… +01/31/2018,Comedians,@WhoopiGoldberg,"No mention of Niger or of Sgt LaDavid Johnson, no mention of those Soldiers. Why not.. just asking." +01/31/2018,Comedians,@WhoopiGoldberg,"RT @RepDwightEvans: President Trump talked a whole lot about the black unemployment rate, but has his aides misinformed–yet again—he should…" +12/21/2017,Comedians,@WhoopiGoldberg,I just was sent this from a friend& so I figured I’d Shae it with you..makes a great point.. https://t.co/61PlwbIzxt +12/19/2017,Comedians,@WhoopiGoldberg,"Hey everyone I feel I have been remiss in wishing +Happy Chanukah Merry Christmas, Happy Holidays +Happy New Year to… https://t.co/vG7aYDmpVJ" +10/05/2017,Comedians,@WhoopiGoldberg,https://t.co/xPdNWiaAMh +08/20/2017,Comedians,@WhoopiGoldberg,"I realize I may be late with all this but all know is,losing Dick Gregory & Jerry Lewis is a gain 4 heaven, but big loss for comedy" +08/20/2017,Comedians,@WhoopiGoldberg,"Jerry Lewis passed today,millions around the world loved him,millions of kids he helped w/his telethons. R.I.P. &condolences 2 his family" +08/20/2017,Comedians,@WhoopiGoldberg,"About being black in America Dick Gregory has passed away, Condolences to his family and to us who won't have his insight 2 lean on +R.I.P" +08/20/2017,Comedians,@WhoopiGoldberg,"Dick Gregory, Truth teller, make you fall on your face laughing Comedian, health man before it was cool & crazy expensive unapologetic" +08/16/2017,Comedians,@WhoopiGoldberg,U all R the reasons This behavior will NOT fly +08/16/2017,Comedians,@WhoopiGoldberg,"To ALL those denominations who continue2come out &protest wrongs you C,2 all U different races that come out &protest the wrongs U C THANK U" +08/16/2017,Comedians,@WhoopiGoldberg,The silence of the Christian Right about the Charlottesville Attack is deafening. +08/16/2017,Comedians,@WhoopiGoldberg,Allowing this hate a new place to fester with permission from the man in office.laying blame on both sides is LUDICROUS WTF +08/16/2017,Comedians,@WhoopiGoldberg,"Why R people surprised that ""new guy "" in office who started HIS run out w/hate speech that many overlooked in order to justify voting 4him" +08/07/2017,Comedians,@WhoopiGoldberg,"Hey there y'all have been on my mind and just wanted 2 say thank you 4 all your support over the years,& haven't said that you in a while🙂" +07/28/2017,Comedians,@WhoopiGoldberg,"@MarkReardonKMOX Mark, that's how u ask a question you want their ans. You ask, you don't tell them & Ur on the radio you know that" +07/28/2017,Comedians,@WhoopiGoldberg,To sit down and make ACA work for the majority and not respective parties.Bravo 2 those who remembered it's about the People NOT the Party +07/28/2017,Comedians,@WhoopiGoldberg,That was never done with ACA Mitch McConnell led his party into a stance not good for the https://t.co/I54jgf7NHl both side will have +07/28/2017,Comedians,@WhoopiGoldberg,"Thank2John McCain Claire McCaskill&Susan Collins,ACA was not perfect, no bill is, both sides then take it and make it work 4 the people" +07/25/2017,Comedians,@WhoopiGoldberg,"Congrats!!!!!! +https://t.co/Ptoo0geNJX" +06/30/2017,Comedians,@WhoopiGoldberg,"I'm crazy excited & amazed 2 b selected as 1 of the Board of Governors 4 @TheAcademy. I'm really thrilled!!! Thanks Academy, thanks voters!!" +05/17/2017,Comedians,@WhoopiGoldberg,Watch this powerful film by @JOSS Whedon & then join the fight to #StandWithPP → https://t.co/qi3aTTq08a +05/09/2017,Comedians,@WhoopiGoldberg,"So excited,1 of the smartest people I know launches Deadline:White House on MSNBC at 4 go @NicolleDWallace, can't wait to watch!!!" +04/06/2017,Comedians,@WhoopiGoldberg,"One of the all time great men & comics Don Rickles passed, always a class act & funny as hell. RIP condolences to his family & to America" +03/06/2017,Comedians,@WhoopiGoldberg,"Ben Carson..please read or watch Roots, most immigrants come here VOLUNTARILY,cant't really say the same about the slaves..they were stolen" +03/02/2017,Comedians,@WhoopiGoldberg,Important clarification about fake news attributed to me. Thank you @snopes for debunking #FakeNews:… https://t.co/auFP2yBFmj +03/01/2017,Comedians,@WhoopiGoldberg,"RT @FIRE_THE_FOOL: ""Education is civil rights issue of our time"" -45. I'd argue CIVIL RIGHTS is the civil rights issue of our time. #fireth…" +03/01/2017,Comedians,@WhoopiGoldberg,RT @waltb31: Been watching @MSNBC all day Not one mention of Rachel @maddow's blockbuster exposé of the Wilbur Ross Russian bank ties. Wond… +03/01/2017,Comedians,@WhoopiGoldberg,"RT @sallykohn: FACT CHECK: Obama actually CUT the deficit by almost three-quarters. + +https://t.co/YhyU42vK1N #JointAddress" +03/01/2017,Comedians,@WhoopiGoldberg,RT @thesherylralph: #THEGREATWALL Joshua fought the battle of Jericho and you know what happened! +03/01/2017,Comedians,@WhoopiGoldberg,"RT @PolitiFact: ""94 million Americans"" out of the labor force. That's misleading. https://t.co/hVBWNWBUAl https://t.co/h1CRYDswTx" +03/01/2017,Comedians,@WhoopiGoldberg,"RT @JCTheResistance: #DontGetTrumped +#BlackOutTrump + +Don't get complacent. + +Don't back down + +Stay pissed off. https://t.co/cGvTs62KNF" +03/01/2017,Comedians,@WhoopiGoldberg,A Great Great Wall? What the hell? +02/27/2017,Comedians,@WhoopiGoldberg,"I'm so honored to be part of #WhenWeRise, starting Tonight 9|8c on ABC. Hope you’ll check it out. https://t.co/tUKqpa2W8k" +02/25/2017,Comedians,@WhoopiGoldberg,“LETTER TO IVANKA” by @woke_nation https://t.co/EKqtalWK0t A beautiful request +02/22/2017,Comedians,@WhoopiGoldberg,"Hey everyone who re-tweeted that young man's info, @SherriEShepherd just let me know he's been found alive and he is now safe. YOU ALL ROCK!" +02/21/2017,Comedians,@WhoopiGoldberg,https://t.co/zrOj8JnYpQ +02/21/2017,Comedians,@WhoopiGoldberg,Hey @SherriEShepherd asked me to tweet this out & to get folks 2 retweet PLEASE HELP https://t.co/0Mtml6hgGP +02/17/2017,Comedians,@WhoopiGoldberg,"@StephenKing been re-listening 2 Salems Lot &into my dreams comesJohn Zacherley (also watched as a kid)message 2 U from him ""I am a story""" +02/16/2017,Comedians,@WhoopiGoldberg,"WellG'nite, I wish us all the good fortune 2 sleep & wake up tomorrow & do our best 4 R family & friends & the occasional stranger" +02/16/2017,Comedians,@WhoopiGoldberg,@Susang1979 @TiffanyATrump silly woman I said I would sit with her at any of the fashion shows do your home work +02/16/2017,Comedians,@WhoopiGoldberg,@Wyattladelle @TiffanyATrump omg do ur homework dude wtf r u talking about do u even know? You don't watch the show & now u look stupid. +02/16/2017,Comedians,@WhoopiGoldberg,"@BrentJManners @TiffanyATrump yes when she was a little girl," +02/16/2017,Comedians,@WhoopiGoldberg,@Argos5USA @TiffanyATrump sorry did u know that I said I would sit with her at the next fashion show?Nothing about the view.. do ur homework +02/16/2017,Comedians,@WhoopiGoldberg,"RT @EKeratsis: @WhoopiGoldberg How kind, your thoughts toward Tiffany Trump. I am no Trump supporter. DONALD Trump. But the kid? You're a m…" +02/16/2017,Comedians,@WhoopiGoldberg,@whoosdat @TiffanyATrump u have no idea what ur talking about do u? U heard something that u didn't bother to check +02/16/2017,Comedians,@WhoopiGoldberg,@JT3cool @TheDailyBeast_ @thedailybeast I mean no matter who you voted for does ANYONE think this is a good idea? +02/16/2017,Comedians,@WhoopiGoldberg,@BPoppel what? Look if ur going 2bitch bout the view at least know what your talking about & clearly U don't get your the facts right +02/16/2017,Comedians,@WhoopiGoldberg,@lemon_meringues thank you I'll try to remember that🙋🏾 +02/16/2017,Comedians,@WhoopiGoldberg,"@garza_anabella I hope people will continue to support them. +🙋🏾" +02/16/2017,Comedians,@WhoopiGoldberg,"Senate Does NRA’s Bidding, Lets 75,000 Mentally Ill People Buy Guns https://t.co/dcq34kAKfl via @TheDailyBeast_" +02/15/2017,Comedians,@WhoopiGoldberg,"I JUST saw this, I ADORED your dad!!& nice to say hi to you as well https://t.co/jj9yPhli6g" +02/15/2017,Comedians,@WhoopiGoldberg,@HeyMisfit he was the best +02/15/2017,Comedians,@WhoopiGoldberg,@Yuridianocun LOVE Cancun!! +02/15/2017,Comedians,@WhoopiGoldberg,@JT3cool hey Joe!! 😀 +02/15/2017,Comedians,@WhoopiGoldberg,"Whatever your belief's I wish for us and all our friends, lovers, kids, strangers a really good day and laughter somewhere in the day." +02/15/2017,Comedians,@WhoopiGoldberg,"@ru4boo if you wish it, hello my sister💃🏽" +02/15/2017,Comedians,@WhoopiGoldberg,"@melbourneminker nope I'm still here, I'd say check your facts, but if facts actually mattered to u, you'd have sent a smarter tweet" +02/15/2017,Comedians,@WhoopiGoldberg,RT @OhMyGOFF: Please RT 27-Year-Old Woman Reported #Missing In Maryland: https://t.co/zepagaM6Fj via @nbcwashington +02/15/2017,Comedians,@WhoopiGoldberg,"Fake News huh?..So Fake Mr.Flynn resigned..Wow does this mean all those u were blaming 4 Mr. Flynn's problems +was the actual FAKE news?" +02/15/2017,Comedians,@WhoopiGoldberg,@JuniorPoulton I was bitching then as welI &bitched only 1 group was being deported when it was supposed 2 be about folks here illegally +01/19/2017,Comedians,@WhoopiGoldberg,RT @FrenchGetem: My president is black today's the last day 😭retweet this😭 https://t.co/u83C7Z7wsa +01/11/2017,Comedians,@WhoopiGoldberg,U R the last President my mom & brother were alive 4 the last president we all shared so U will always represent the best of times 2me 😂❤🙋🏾 +01/11/2017,Comedians,@WhoopiGoldberg,"RT @WhiteHouse: “My fellow Americans, it has been the honor of my life to serve you.” —@POTUS #OamaFarewell" +01/11/2017,Comedians,@WhoopiGoldberg,And BOOM...THAT is the way a President drops the microphone and moves on down the road +01/11/2017,Comedians,@WhoopiGoldberg,WTF we are going frmPresident Obama's farewell address 2discussing possibility of prostitutes & Golden showers comprising the next prez +01/11/2017,Comedians,@WhoopiGoldberg,"RT @NARAL: ""It's about acknowledging that the effects of Jim Crow and Slavery didn't end in the 1960's."" #ObamaFarewell" +01/11/2017,Comedians,@WhoopiGoldberg,Not special treatment but equal treatment we as a nation have to try harder.. +01/11/2017,Comedians,@WhoopiGoldberg,This is what a REAL victory lap looks like and that only works if you have actually done something to to take a lap for. +01/06/2017,Comedians,@WhoopiGoldberg,"(9/9)I'm thrilled 2 b invited 2perform. I keep my fingers crossed, that these exchanges between us have given u some insight into me. +Whoop" +01/06/2017,Comedians,@WhoopiGoldberg,(8/9)more than perform because this is a quick trip that keeps my performance soul lubricated as being in just 1 place can feel constrained. +01/06/2017,Comedians,@WhoopiGoldberg,"(7/9)my life and where I come from & it might help u find a more gracious way to solicit a donation. +Unfortunately I won't be able to do" +01/06/2017,Comedians,@WhoopiGoldberg,"(6/9)b lost on me. Perhaps if u look me up & saw me as a real person instead of just some stereotype u disagree with, you'd know how I live" +01/06/2017,Comedians,@WhoopiGoldberg,(5/9)disabuse u of this idea that I don't know what it's like to work for a living or that somehow the work this school does would somehow +01/06/2017,Comedians,@WhoopiGoldberg,(4/9)employees & more taxes for the business. Understand I'll never make enough money 2 b entitled 2 NOT pay my taxes. I tell u all this 2 +01/06/2017,Comedians,@WhoopiGoldberg,"(3/9)2 folks who booked the show (agents), fees to 2 bus drivers & fuel. Also, I run a company & pay business managers, lawyers and 9" +01/06/2017,Comedians,@WhoopiGoldberg,"(2/9)a number was put out there by u, let's discuss. Because of my tax bracket, about 50% of that fee will go to state and local taxes, 10%" +01/06/2017,Comedians,@WhoopiGoldberg,"(1/9)Dear @WoodyWhite5, +Thank u 4 ur interesting & informative response. I don't normally discuss financial matters w/ strangers but since" +01/06/2017,Comedians,@WhoopiGoldberg,@ArthurRHill3 wishful thinking on many peoples part Arthur sorry 2 break hearts again😀 +01/06/2017,Comedians,@WhoopiGoldberg,"@zanne68 in fact it's the only time we HEARD him say it.. +Would u want someone 2 talk about u, your daughter or mother sister that way ever?" +01/05/2017,Comedians,@WhoopiGoldberg,(9/9)known as the man excusing the bad behavior of another grown man who should've known better. +01/05/2017,Comedians,@WhoopiGoldberg,"(8/9)if nobody buys tkts, I won't come, but u will lose all credibility as a 1st amendment guy - oh, wait, that's not u - u'll still be" +01/05/2017,Comedians,@WhoopiGoldberg,(7/9)thing then Im surprised u r OK w/ that & questioning me. It just makes me glad my mother raised me 2 know what is truly offensive. So +01/05/2017,Comedians,@WhoopiGoldberg,"(6/9) someone who thinks grabbing women by the genitalia and also saying out loud ""that if you are famous, woman will allow that kind of" +01/05/2017,Comedians,@WhoopiGoldberg,"(5/9) That's neither here nor there, but the fact that it would not occur to u that women & girls would be offended about the prospect of" +01/05/2017,Comedians,@WhoopiGoldberg,"(4/9) tho I don't expect u will because if u were interested in facts or truth, u wouldn't have had any basis for what u wrote about me." +01/05/2017,Comedians,@WhoopiGoldberg,(3/9)advantage to remain ignorant of the facts but for what it's worth I never said I would leave if Trump became President U can look it up +01/05/2017,Comedians,@WhoopiGoldberg,"(2/9) Well, if u r going 2 talk about me, get it right. I get that it's 2 ur" +01/05/2017,Comedians,@WhoopiGoldberg,(1/9) This appeared 2day & I want 2 set it str8 https://t.co/gF2VWGqry2 +12/31/2016,Comedians,@WhoopiGoldberg,"Debbie Reynolds once said to me surviving the bullshit requires a keen sense of self & of humor. condolences Todd Fisher &Billie Lourde +RIP" +12/27/2016,Comedians,@WhoopiGoldberg,"Carrie Fisher has passed, she was funnier&smarter than anyone had the right to be. Sail On Silver Girl. Condolences Debbie & Billie +R.I.P." +12/26/2016,Comedians,@WhoopiGoldberg,"R.I.P. George Michael... +Thankful for the music..." +12/12/2016,Comedians,@WhoopiGoldberg,Thankful for @rachaelray's generosity! She donated $10K to support @MainLineRescue. Follow her pet food brand @nutrish 4 more.#SantaPaws2016 +11/19/2016,Comedians,@WhoopiGoldberg,The fabulous Sharon Jones has passed tonight she & her band The DapKings made great music together & she sang her butt off. Condolences RIP +11/16/2016,Comedians,@WhoopiGoldberg,Show your support for #WorldCOPDDay by posting a Straw Selfie and tag @Philips #BreatheBoldly for #COPD #Sponsored https://t.co/JVD3sXhIKQ +11/13/2016,Comedians,@WhoopiGoldberg,"The magnificent Leon Russell amazing musician, true superstar ""Long ago and so far away,I fell in love with you..After the 2nd show"" R.I.P" +11/09/2016,Comedians,@WhoopiGoldberg,"RT @Crutnacker: 2016. We've lost Bowie, Prince, Gene Wilder, Muhammad Ali and the United States all in the same year. #ElectionNight" +11/08/2016,Comedians,@WhoopiGoldberg,"I do not think all those voting for Donald Trump are racist, but I do think ALL the racists will be voting." +11/01/2016,Comedians,@WhoopiGoldberg,Just tweeted a really wonderful article that was on @voxdotcom this email madness.. +11/01/2016,Comedians,@WhoopiGoldberg,https://t.co/yNp9tm7Viz via @voxdotcom +10/20/2016,Comedians,@WhoopiGoldberg,"RT @CNN: On Donald Trump's #DebateNight performance, @VanJones68 quotes @llcoolj: ""He lied about the lies that he lied about"" https://t.co/…" +10/20/2016,Comedians,@WhoopiGoldberg,"RT @kkalmes2: Jake Tapper: Trump saying he won't support election results is ""stunning... https://t.co/XIrtTVLl3Y via @YouTube" +10/20/2016,Comedians,@WhoopiGoldberg,OMG WHATS HAPPENING here??? +10/20/2016,Comedians,@WhoopiGoldberg,The wall too??? +10/20/2016,Comedians,@WhoopiGoldberg,"I want to know how many decisions he's been involved with in terms of abortion, what does he know about this?" +10/20/2016,Comedians,@WhoopiGoldberg,Bad hombres? +10/20/2016,Comedians,@WhoopiGoldberg,"RT @JoshElliott32: Hillary Clinton, on Roe v Wade: ""I will defend women's rights to make their own health decisions. We have come too far t…" +10/10/2016,Comedians,@WhoopiGoldberg,RT @BuzzFeed: https://t.co/HOCSP2KJeN +10/10/2016,Comedians,@WhoopiGoldberg,"New York suddenly lost Brooklyn D.A. Ken Thompson 2cancer, worked tirelessly for the rights of all people RIP& condolences 2 his family" +10/10/2016,Comedians,@WhoopiGoldberg,"RT @NorahODonnell: ""If Donald Trump was trying to broaden his appeal tonight, where in the speech did he do that?"" @bobschieffer @CBSNews" +10/10/2016,Comedians,@WhoopiGoldberg,at the end of the day we have to answer the question to whom are we willing to give the stewardship of America's credibility +10/10/2016,Comedians,@WhoopiGoldberg,Gee Donald do you think some of that hate is your fault? +10/10/2016,Comedians,@WhoopiGoldberg,RT @chrisrock: My mother is 71 years old. Black don't crack . https://t.co/l6jB7Ju8a8 +10/10/2016,Comedians,@WhoopiGoldberg,"RT @GeorgeTakei: NAFTA was signed by President Bush, you knucklehead." +10/10/2016,Comedians,@WhoopiGoldberg,WTF is he talking about my god.. Wait...that's Alec Baldwin!! +10/10/2016,Comedians,@WhoopiGoldberg,OMG!! It's like a really BAD high!! +10/10/2016,Comedians,@WhoopiGoldberg,When four former presidents say your not fit to be president.. +10/10/2016,Comedians,@WhoopiGoldberg,"When they go low, you go high!" +10/08/2016,Comedians,@WhoopiGoldberg,"@ananavarro out there telling truth tothe GOP, HER own party, not only is she saying ""he needs to drop out right now"" & then lays it out 4 u" +10/06/2016,Comedians,@WhoopiGoldberg,"Hey just want to say thank you all again for the support you've given the cast of Strut,@oxygen and me" +10/06/2016,Comedians,@WhoopiGoldberg,@HowardStern Howard thank you for making our cast of Strut feel like a jillion bucks and for having their back's it means the world 2 us all +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia I am your fan and yr student, thank you 4 being U🙋🏾" +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia Bird Set Free & California Dreaming r two that ur voice paints, ur artistry is thrilling, whatever u got from me you've given back 2me" +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia First.. We adore you & yr talent, I can say ask so thank you for your kind words about our show,Strut & love that your watching it.🙋🏾" +10/06/2016,Comedians,@WhoopiGoldberg,RT @Sia: In love with the new reality tv show STRUT about our trans brothers and sisters trying to make it in the modeling biz! Love you gu… +10/02/2016,Comedians,@WhoopiGoldberg,@TyDurdz why not share it +10/02/2016,Comedians,@WhoopiGoldberg,"RT @mamatator1: @WhoopiGoldberg @nytimes The IRS went after Pete Rose, Wesley Snipes, Willie Nelson, and Redd Foxx. Why have they not arres…" +10/02/2016,Comedians,@WhoopiGoldberg,"Hell I forgot to thank everyone 4all the support you all have given Strut, I know how much help & love y'all have shown me & lot that I do🙋🏾" +10/02/2016,Comedians,@WhoopiGoldberg,"So this has been fun nice to connect to folk with a different opinion who don't call you names. +Good night y'all sleep well" +10/02/2016,Comedians,@WhoopiGoldberg,@Rayrobby11 in what country did he releases his taxes think @KellyannePolls his campaign manager would have mentioned it.oh well +10/02/2016,Comedians,@WhoopiGoldberg,"@Boch56 @nytimes hey boch it's been a long time!Family good, my best to everyone." +10/02/2016,Comedians,@WhoopiGoldberg,@jessie2u I work everyday Sharon I pay about close to 50 percent of my income and I don't get a return at the end is the year.. And you? +10/02/2016,Comedians,@WhoopiGoldberg,"@usmsmom it's not business call it what it is,the screwing of fellowAmericanswho don't get to blow off their cos of a bad year." +10/02/2016,Comedians,@WhoopiGoldberg,"@jessie2u you haven't annoyed me, +my mom worked hard made not a lot of money & SHE paid all her taxes sometime over time, why can't he" +10/02/2016,Comedians,@WhoopiGoldberg,@JT3cool @HillaryClinton Joe if people saw stuff in our past with today's eyes we WOULD b in jail😂 & thank u 4 honoring fallen soldiers btw +10/02/2016,Comedians,@WhoopiGoldberg,@jessie2u 4 everyone who clearly missed this & u keep tweeting the same question Answer: Clintons taxes were made public a long time ago +10/02/2016,Comedians,@WhoopiGoldberg,"@Richard555 tell that to the millions o people who struggle every day & still pay their tax, don't they'd like a loop hole too?" +10/02/2016,Comedians,@WhoopiGoldberg,Question Did u pay yr taxes hell yea Ans. #not wealthy enough for a loophole +10/02/2016,Comedians,@WhoopiGoldberg,@JT3cool @HillaryClinton not sure ur info is correct Joe but I'm sure someone will look into it as they have looked into everything else +10/02/2016,Comedians,@WhoopiGoldberg,@Chandra0816 girl I pay them every penny's they say I owe cos u know the IRS doesn't play😂 +10/02/2016,Comedians,@WhoopiGoldberg,"@jessie2u Clintons tax returns been public 4A while, yr 2nd question Yes I pay my tax all 50 percent of it, not wealthy enough for loop hole" +10/02/2016,Comedians,@WhoopiGoldberg,RT @WhoopiGoldberg: Trump Tax Records Obtained by The Times Reveal He Could Have Avoided Paying Taxes for Nearly Two Decades https://t.co/c… +10/02/2016,Comedians,@WhoopiGoldberg,@NicolleDWallace @nytimes hey Nichole a friend got the tinkle called me.. So I thought I'd share it.. Crazy right a trueWTF moment +10/02/2016,Comedians,@WhoopiGoldberg,Trump Tax Records Obtained by The Times Reveal He Could Have Avoided Paying Taxes for Nearly Two Decades https://t.co/cb0e4gCQaz +09/27/2016,Comedians,@WhoopiGoldberg,@strut episode 2 tonight on @oxygen 9pm/8central +09/27/2016,Comedians,@WhoopiGoldberg,"Proud of @HillaryClinton had a vision and a plan and did her thing, she was on point well done" +09/27/2016,Comedians,@WhoopiGoldberg,"I Think with all those emails everyone always talking about it's kind of amazing that no one has hacked her server," +09/27/2016,Comedians,@WhoopiGoldberg,"This is some crazy shit, wtf!! he's gone crazy. He just said i settled that lawsuit with no admission of guilt.." +09/21/2016,Comedians,@WhoopiGoldberg,Hey UK & Ireland! You can watch our new show #Strut on @hayu_uk every Wednesday! You can sign up at https://t.co/4Ogws6oAST. Enjoy! +09/20/2016,Comedians,@WhoopiGoldberg,(4/4) Was even possible doesn't make sense +09/20/2016,Comedians,@WhoopiGoldberg,(3/4) So the idea that anyone would think that I was making fun of the possible divorce without knowing if it +09/20/2016,Comedians,@WhoopiGoldberg,(2/4) The view it was unsubstantiated and therefore gossip - to me if u know anything about me you know I hate talking about +09/20/2016,Comedians,@WhoopiGoldberg,(1/4) I'm hearing that people thought I was making fun of the Angel/brad split 1 at 11 am when I was asked to do it on +09/14/2016,Comedians,@WhoopiGoldberg,You can watch the 1st episode of #Strut on my Facebook page before it premieres 9/20 8/9c on @oxygen https://t.co/sUKpPcXFKH +08/12/2016,Comedians,@WhoopiGoldberg,"one of my fav shoe spots is closing. Solestruck +had some of the shoes out there & u made my feet stand out so THANK U SOLESTRUCK" +08/09/2016,Comedians,@WhoopiGoldberg,"Here is a look at our new show #Strut premiering on @oxygen Tuesday, September 20th at 9/8c. Enjoy! https://t.co/pZFOdnskxB" +08/09/2016,Comedians,@WhoopiGoldberg,"We are announcing our new show #Strut today premiering Tuesday, Sept. 20 at 9/8c on @oxygen So proud! Hope you enjoy!" +08/03/2016,Comedians,@WhoopiGoldberg,"correction daily beast well done + +https://t.co/GyD4KcHARK" +08/03/2016,Comedians,@WhoopiGoldberg,Someone my age would do. For goodness sake the only botch fest is the one in talks minds.no fight here just clearing up an untruth +08/03/2016,Comedians,@WhoopiGoldberg,"Anything I think?? No daily mail I wouldn't, so if your going to continue to accuse me of doing this kind of thing could you make something" +08/03/2016,Comedians,@WhoopiGoldberg,Also daily mail knowing that people talk A lot do you honestly think I would talk or act in such a way that would give u ANY ability to know +08/03/2016,Comedians,@WhoopiGoldberg,"Rule the entire universe, I have enough to do in my life than to take mean girl pleasure at some one else WRONGLY perceived change." +08/03/2016,Comedians,@WhoopiGoldberg,I'm not responsible 4 firing or moving people around or negotiating my coworkers contracts. I LIKE having a gig and as much as I'd like to +08/03/2016,Comedians,@WhoopiGoldberg,"Contrary to what u might read in the I do NOT run ABC nor do I own or produce,not involved in hiring4 the View so don't send ur resumes" +07/28/2016,Comedians,@WhoopiGoldberg,So proud to support @amfAR & @kiehls for #LifeRide7. Join the conversation and help us find a cure! https://t.co/Se8KmPKFl9 +07/26/2016,Comedians,@WhoopiGoldberg,Ok @HilliaryClinton...History made...your turn now...Take care of business +07/12/2016,Comedians,@WhoopiGoldberg,"My friend Nicolle Wallace got some insight into Jeb Bush in her interview last night, Your STILL a Great interviewer & we miss u here.." +07/11/2016,Comedians,@WhoopiGoldberg,"Ok NOW it's official, I have re-upped for 1 year returning to @TheView 4 the 2016/2017 season. Will continue 2 annoy some, delight others" +06/23/2016,Comedians,@WhoopiGoldberg,"A little more on our new show + +https://t.co/fWFIYCjO5h" +06/23/2016,Comedians,@WhoopiGoldberg,"Our new show with @44blue for @oxygen. + +https://t.co/S7NLc0oFCn" +06/04/2016,Comedians,@WhoopiGoldberg,"RIP Muhammad Ali u elevated the art of the fight in the ring &out of it,a truly funny man,&remains the greatest my condolences to the family" +05/24/2016,Comedians,@WhoopiGoldberg,For all my young fans... https://t.co/kXx5PJgHIK +05/23/2016,Comedians,@WhoopiGoldberg,"RT @oxygen: Get ready for Strut, a new series about transgender models breaking down barriers! https://t.co/XbS90HOgAc https://t.co/xtm1PDX…" +05/23/2016,Comedians,@WhoopiGoldberg,@oxygen So proud of our new show! Coming Sept. #Strut https://t.co/8S5MJpFcEL +05/05/2016,Comedians,@WhoopiGoldberg,Today on The View https://t.co/PvL7DSaVER +07/02/2018,Comedians,@aparnapkin,queen alert everybody go please https://t.co/LsAtVhUoqV +07/02/2018,Comedians,@aparnapkin,popping a pimple on a challenging part of your face engenders a sense of victory that accomplishing actual goals pales in front of +07/02/2018,Comedians,@aparnapkin,Yes yes yes everyone watch Nanette thank you and please on Netflix https://t.co/1U4HTQMLXa +07/02/2018,Comedians,@aparnapkin,RT @Ocasio2018: Thank you @SRuhle for this excellent breakdown! https://t.co/5xhdlRJqGl +07/02/2018,Comedians,@aparnapkin,RT @nataliesurely: forcing people to pay document processing fees and airfare to get their kids back is called “extortion” https://t.co/TVM… +07/02/2018,Comedians,@aparnapkin,RT @pixelatedboat: Wow this Vice article is pretty controversial!!!!!! https://t.co/feJzJu1ERC +07/01/2018,Comedians,@aparnapkin,RT @TheDweck: ICE is still so young it would be separated from its parents by ICE +07/01/2018,Comedians,@aparnapkin,RT @ashleyn1cole: Super cool that they are working together. Super not cool that the phrase “all three black senators” is a thing. https://… +07/01/2018,Comedians,@aparnapkin,"RT @ClintSmithIII: I’ve said it before but it can’t be said enough, so many of the people seeking refuge in the United States wouldn’t be d…" +07/01/2018,Comedians,@aparnapkin,"If I was on Queer Eye: + +Bobby: you made us enter through a vent +Jonathan: bangs shouldn’t go past your bellybutton,… https://t.co/qWBLQTpsRf" +07/01/2018,Comedians,@aparnapkin,"RT @MrFilmkritik: A new poll shows Beto O'Rourke is within 5 points of Ted Cruz in the Texas Senate race. + +A good sign, but don't let this…" +07/01/2018,Comedians,@aparnapkin,"if you respond to this with any version of NotAllBeckys, here is the sound of a door closing old-school AIM style" +07/01/2018,Comedians,@aparnapkin,hashtag let’s blame millennials for everything because that’s easier than acknowledging our deeply fractured societ… https://t.co/q12sYPYpP0 +07/01/2018,Comedians,@aparnapkin,"can white ladies please do a recall on your racist buzzkill line +https://t.co/duOnf2zAyG" +07/01/2018,Comedians,@aparnapkin,Every dog with face-framing ears has The Rachel. I will not be taking comments or questions. Press conference over. +07/01/2018,Comedians,@aparnapkin,"Ok, twitter, i’ll bite. here’s what YOU missed: *pan over to reveal real human friend, makes direct eye contact, feels actually seen*" +07/01/2018,Comedians,@aparnapkin,"RT @terrycrews: Why didn’t you say something? + +I did. + +Why didn’t you push him off? + +I did. + +Why didn’t you cuss him out? + +I did. + +Why did…" +07/01/2018,Comedians,@aparnapkin,RT @ericdadourian: WE HAVE TO START GIVING EACH OTHER HONEST AND REAL ETA’s OR NOTHING WILL CHANGE. +07/01/2018,Comedians,@aparnapkin,RT @SarahKSilverman: We live in fucking insanity https://t.co/oIlGpXjcUW +07/01/2018,Comedians,@aparnapkin,@CocoKur courtney!!! +07/01/2018,Comedians,@aparnapkin,RT @arvintgod: IF A BABY HANDS YOU A FAKE PHONE YOU BETTER ANSWER THAT SHIT +07/01/2018,Comedians,@aparnapkin,october bell houseeeee https://t.co/wE8PcIiIAm +07/01/2018,Comedians,@aparnapkin,oh my god https://t.co/Hg38FsSyFX +07/01/2018,Comedians,@aparnapkin,"RT @Todd_Spence: This just made my year. + +JURASSIC PARK, but everyone including the dinosaurs is wearing high heels. (source Imgur) https:…" +07/01/2018,Comedians,@aparnapkin,"RT @jonnysun: me, before the party: ok ok u got this. just try to fit in. talk to ppl. stay cool. dont turn into a big duck. ull be fine +me…" +06/30/2018,Comedians,@aparnapkin,@jonnysun jonny i love this so much thank you +06/30/2018,Comedians,@aparnapkin,@mattingebretson @corporate God is half shaved +06/30/2018,Comedians,@aparnapkin,takes one to know one https://t.co/QlNKOXyXWC +06/30/2018,Comedians,@aparnapkin,@mattingebretson @corporate Matt u finally found god +06/30/2018,Comedians,@aparnapkin,@morninggloria MS-13 came for my bilingual charter school core curriculum & then MSNBC came for my self-taught pundits +06/30/2018,Comedians,@aparnapkin,RT @RomancingNope: Maxine Waters has had to cancel events due to death threats. The Red Hen's owner has had to step down from a local leade… +06/30/2018,Comedians,@aparnapkin,Protests are a safe space for reading every sign that I pass out loud & I do not take it for granted +06/30/2018,Comedians,@aparnapkin,boyfriend took great pic. #familiesbelongtogether https://t.co/txXtxHyLhe +06/30/2018,Comedians,@aparnapkin,#familiesbelongtogether ❤️ great signs think alike (not sure who made this but it’s rul good!) https://t.co/6rNn9M5tab +06/30/2018,Comedians,@aparnapkin,Maybe everyone can clear up that their bigotry & calls for violence are sarcasm by finishing their thought with “pl… https://t.co/aW91drFB5R +06/30/2018,Comedians,@aparnapkin,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Comedians,@aparnapkin,"RT @Jordan_Morris: Sorry websites, I prefer to get my news the old fashioned way: With a bunch of other people crowded around the window of…" +06/29/2018,Comedians,@aparnapkin,Sometimes I will download so many podcasts it’s like “Are you even hearing yourself right now?” +06/29/2018,Comedians,@aparnapkin,RT @weismanjake: Today is the last day of shooting season 2 of @corporate. The cast and crew were incredible. You are going to fucking love… +06/29/2018,Comedians,@aparnapkin,@JoshRadnor the struggle is REAL +06/29/2018,Comedians,@aparnapkin,"""Just trolling"" means words don't matter. Words do matter. Journalism matters. Consequences matter. https://t.co/yPdtVgCbGF" +06/29/2018,Comedians,@aparnapkin,RT @SarahKSilverman: The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships start… +06/29/2018,Comedians,@aparnapkin,@words_is_money i felt lucky to see the incredible work being done! +06/29/2018,Comedians,@aparnapkin,@nolairfan so nice to meet you! +06/29/2018,Comedians,@aparnapkin,@JudahWorldChamp i believe it +06/28/2018,Comedians,@aparnapkin,Just texted my psychiatrist a “:(“ hello breakthrough +06/28/2018,Comedians,@aparnapkin,"@erikaabdelatif back in ny, sorry friend!" +06/28/2018,Comedians,@aparnapkin,Nothing destroys an otherwise functional relationship like trying to help someone parallel park +06/28/2018,Comedians,@aparnapkin,@IHeartApplejack @nytimesarts @nytimes thanks friend <3 +06/28/2018,Comedians,@aparnapkin,bloomington! hey! https://t.co/glbDZFLC0g +06/28/2018,Comedians,@aparnapkin,yeah she is! and i am as well! https://t.co/z3vydNRhZ4 +06/27/2018,Comedians,@aparnapkin,"My old gynecologist’s office just sent me an e-vite to a blow-dry party & it’s like “This isn’t your way back in, bb.”" +06/27/2018,Comedians,@aparnapkin,"RT @ACLU: UPDATE — +Just over 24 hours later, the court ordered: +✅ all children must be reunited within 30 days; +✅ children under five must…" +06/27/2018,Comedians,@aparnapkin,"PRIORITIES: +❌ Holding a rally for yourself +❌ Tweeting at late night hosts +❌ Listening to a podcast with said late n… https://t.co/B04K9pdRwP" +06/27/2018,Comedians,@aparnapkin,RT @GhostPanther: Very exciting. Time to create a New Democratic Party https://t.co/1ZiE0Y0C8o +06/27/2018,Comedians,@aparnapkin,"RT @KenTremendous: McConnell stole a SCOTUS seat, and now SCOTUS is gutting antitrust law, banning immigration based on religion, and uphol…" +06/27/2018,Comedians,@aparnapkin,"Grateful to have been a part of this & glad for what it’s helped to manifest! +https://t.co/gSjWSzNryA" +06/27/2018,Comedians,@aparnapkin,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/27/2018,Comedians,@aparnapkin,@VimanaRob yup i am also a tennis shoe +06/27/2018,Comedians,@aparnapkin,"@GregProops was just waiting for my assist, thank you, greg" +06/27/2018,Comedians,@aparnapkin,His name was Antwon Rose Jr. #BlackLivesMatter https://t.co/dRs7oDKBdD +06/27/2018,Comedians,@aparnapkin,RT @laurenduca: Fuck civility. https://t.co/oRn1R2mLLU +06/27/2018,Comedians,@aparnapkin,"World Cup, Super Bowl, wake me up when it’s time for the Intergalactic Gravy Boat" +06/26/2018,Comedians,@aparnapkin,RT @michaelianblack: Thank you to the good people at Breitbart for picking up my book announcement about masculinity. The responses have ma… +06/26/2018,Comedians,@aparnapkin,RT @washingtonpost: Amber Tamblyn’s novel about sexual assault will upset some people. She’s okay with that. https://t.co/erNIi14v9C +06/26/2018,Comedians,@aparnapkin,"the news is beyond terrible right now but dont forget, despite all your care & concern, to make a little room for y… https://t.co/7ChEkPn4bj" +06/26/2018,Comedians,@aparnapkin,RT @KarenKilgariff: This is THE SHIT https://t.co/ktaEt3ULZe +06/26/2018,Comedians,@aparnapkin,@weismanjake jake u r jazz +06/26/2018,Comedians,@aparnapkin,"“It’s not a Muslim ban, it’s just a ban against Muslim-majority countries” is gaslighting at its finest" +06/26/2018,Comedians,@aparnapkin,"RT @meganamram: New word: ""Civillain"" -- someone who is willing to throw the needs of innocent people and the country under the bus in an e…" +06/26/2018,Comedians,@aparnapkin,RT @chrislhayes: Hey New Yorkers: You've got an election day Tuesday! Lots of interesting races. Go vote! +06/26/2018,Comedians,@aparnapkin,"if you aren’t going to count trump’s bigotry in his decisionmaking, when exactly are you going to count it? recreational racists dont exist" +06/26/2018,Comedians,@aparnapkin,RT @CecileRichards: SCOTUS today: upholds the immoral Muslim ban and says it’s just fine for fake clinics paid for with tax $ to lie to wom… +06/26/2018,Comedians,@aparnapkin,RT @OhNoSheTwitnt: Pretty sure civility died the day Trump offered to pay legal fees for his supporters if they beat up protestors. +06/26/2018,Comedians,@aparnapkin,A supreme court is only as fair as how its members got there +06/26/2018,Comedians,@aparnapkin,"RT @voxdotcom: The 2014 election had the lowest turnout in 72 years, in part because a lot of Democrats didn’t think they mattered. Tuesday…" +06/26/2018,Comedians,@aparnapkin,@peteabides @Refinery29 @kingfirestorm ha! thanks pete! +06/26/2018,Comedians,@aparnapkin,"RT @joncoopertweets: Sonia Sotomayor condemns Trump’s “unrelenting attack on the Muslim religion and its follow­ers” + +Sotomayor read Trump’…" +06/26/2018,Comedians,@aparnapkin,"RT @ACLU: Despite what the Supreme Court just decided, Congress can pass legislation to rescind the president's Muslim ban. + +It's up to us…" +06/26/2018,Comedians,@aparnapkin,RT @brhodes: The breakdown in civility and our politics occurred when a sitting President couldn't even get a hearing on a Supreme Court no… +06/26/2018,Comedians,@aparnapkin,social media is such a great place to mute new people +06/26/2018,Comedians,@aparnapkin,@Gwionbach well he did say maybe gary johnson because of course everyone almost remembers gary johnson +06/26/2018,Comedians,@aparnapkin,"did David Lynch mean ""He could go down as one of the greatest PRECEDENTS in history because he has disrupted the th… https://t.co/OioSSXoZV2" +06/26/2018,Comedians,@aparnapkin,your right to #civility ended when you started taking away civil rights +06/26/2018,Comedians,@aparnapkin,RT @MikeDrucker: Fun that the people who spent 10 years complaining about PC culture are now deeply upset whenever someone dares be rude to… +06/26/2018,Comedians,@aparnapkin,"RT @laurenduca: At this point, Twitter is just Yelp for the presidency" +06/26/2018,Comedians,@aparnapkin,"RT @ohJuliatweets: Colin Jost is dating Scarlett Johansson and Pete Davidson is dating Ariana Grande and every female comedian is like, ""I…" +06/25/2018,Comedians,@aparnapkin,Via: @JenaFriedman. https://t.co/qnpSug7HbH +06/24/2018,Comedians,@aparnapkin,no shirt no conscience no service +06/24/2018,Comedians,@aparnapkin,You know who else came into this country illegally? The people who created the whole government so +06/24/2018,Comedians,@aparnapkin,"RT @NickMiroff: We finally know how many children were taken from their parents since May 5, when the govt says its separation system went…" +06/24/2018,Comedians,@aparnapkin,"RT @marcushjohnson: How you gonna be on Team Trump, team ""fuck you feelings,"" team ""let's hurt minorities,"" and then you get mad when other…" +06/24/2018,Comedians,@aparnapkin,RT @morninggloria: Weird that the president thinks he can reduce crime with border security measures he comes up with when he wasn’t even a… +06/24/2018,Comedians,@aparnapkin,happy pride. tolerance is free. acceptance is free. love is free. being yourself is priceless. https://t.co/OKIz67VgsX +06/24/2018,Comedians,@aparnapkin,"hey white women, can i speak to YOUR manager" +06/24/2018,Comedians,@aparnapkin,"RT @Shakestweetz: White People: Pull yourself up by the bootstraps! + +Black Girl: Okay. + +White People: *calls police* + +#PermitPatty" +06/23/2018,Comedians,@aparnapkin,"RT @morninggloria: Statistically, men in Jared Kushner's immediate family are much more likely to commit felonies than undocumented immigra…" +06/23/2018,Comedians,@aparnapkin,RT @mbieseck: BREAKING ⁦@AP:⁩ Immigrant children as young as 14 housed at a juvenile detention center in Virginia say they were beaten whil… +06/23/2018,Comedians,@aparnapkin,"Getting politely asked to leave a restaurant for human rights crimes still beats getting the cops called on you for existing, no?" +06/23/2018,Comedians,@aparnapkin,"@kimnewmoney this is a beautiful poem, kim" +06/23/2018,Comedians,@aparnapkin,"RT @guybranum: If you oppose gay marriage and immigration to this country, you don't get farm to table dining. You picked a side in the cul…" +06/23/2018,Comedians,@aparnapkin,does treating people respectfully not include separating families? https://t.co/vf3hxNSiiX +06/23/2018,Comedians,@aparnapkin,@dannystearns @elizaskinner thanks danny +06/23/2018,Comedians,@aparnapkin,I'm at a point in my life where I log out like I'm walking away from a burning car +06/22/2018,Comedians,@aparnapkin,@BebeNeuwirth Bebe!!! <333 +06/22/2018,Comedians,@aparnapkin,"Ever deflected a compliment so hard it falls to the ground, shatters & everyone just stares at it sadly" +06/22/2018,Comedians,@aparnapkin,@elizaskinner This was just so good i muttered it to myself +06/22/2018,Comedians,@aparnapkin,@RickyCarmona Ricky!!!!!!!!!! Cmon!!!!!!! +06/22/2018,Comedians,@aparnapkin,@elizaskinner Sloppy chests +06/22/2018,Comedians,@aparnapkin,RT @ksieff: It is shockingly difficult for immigration attorneys to locate children separated from their parents at the border. Today I spo… +06/22/2018,Comedians,@aparnapkin,Lance is the king!!!! https://t.co/ejafZ43938 +06/22/2018,Comedians,@aparnapkin,@reb_says_what @NetflixIsAJoke @ModCloth thanks for watching! +06/21/2018,Comedians,@aparnapkin,Who wore this statement worse? Melania Trump's jacket or Donald Trump's entire Presidency? https://t.co/rHJ3o4IkZ4 +06/21/2018,Comedians,@aparnapkin,RT @Susan_Hennessey: This is a good time to recall that we have never been given an even remotely satisfactory response to strong evidence… +06/21/2018,Comedians,@aparnapkin,"This is one of the most incredible, powerful, wrenching pieces of comedy and art I have ever seen. Watch, watch, wa… https://t.co/aJE7q6k6Ey" +06/21/2018,Comedians,@aparnapkin,"Thanks for getting in my head, @vulture & @e_alexjung! +https://t.co/tqZ0T4QfpV" +06/20/2018,Comedians,@aparnapkin,A refugee is a human being. Let’s start there. #WorldRefugeeDay +06/20/2018,Comedians,@aparnapkin,"RT @ACLU: We are systematically tearing apart thousands of families — to scare others from seeking refuge. + +Does THIS reflect the deeply he…" +06/20/2018,Comedians,@aparnapkin,o i see you are worried about “monsters” coming into the country and ruining everything because you were actually t… https://t.co/tqLflhGwrH +06/20/2018,Comedians,@aparnapkin,The Statue of Liberty should replace her torch with a gaslight until further notice +06/20/2018,Comedians,@aparnapkin,RT @laurenduca: Today Kirstjen Nielsen drafted executive action to end the policy of family separation that she said did not exist less tha… +06/20/2018,Comedians,@aparnapkin,@jayweingarten @KyleMizono remember when we performed in a bar +06/20/2018,Comedians,@aparnapkin,RT @AndyRichter: I hope that every Latinx US citizen is registering to vote today so that they can go to the polls & remember those who wer… +06/20/2018,Comedians,@aparnapkin,To borrow from “A Time to Kill”...now imagine if all the children in those detention centers were white +06/20/2018,Comedians,@aparnapkin,the sound of the last of your humanity leaving the body https://t.co/kVSJVqGYuw +06/20/2018,Comedians,@aparnapkin,RT @Geniusbastard: It positively chills you to the bone the degree to which white people will accept almost any atrocity if you convince th… +06/20/2018,Comedians,@aparnapkin,"RT @GhostPanther: This is what the jailing of kids, the racism, the xenophobia, homophobia, the assault rifles, attacks on education, all o…" +06/20/2018,Comedians,@aparnapkin,RT @ashleyn1cole: I still remember every single person (read: white man) who the day after the election told me to calm down it wasn't goin… +06/19/2018,Comedians,@aparnapkin,If you're still holding rallies for yourself when you're currently sitting on unchecked human rights abuses...U MIGHT BE A DICTATOR +06/19/2018,Comedians,@aparnapkin,"RT @laurenduca: Infest. To describe human beings. The president is an unabashed white supremacist, and journalists have no valid reason to…" +06/19/2018,Comedians,@aparnapkin,RT @ambermruffin: Celebrate Juneteenth by remembering they’re coming for you next! +06/18/2018,Comedians,@aparnapkin,"RT @davidhogg111: Human beings are not illegal +Human beings are not illegal +Human beings are not illegal +Human beings are not illegal…" +06/18/2018,Comedians,@aparnapkin,RT @HuffPost: The nearly eight-minute recording is of 10 Central American children who were separated from their parents last week by immig… +06/18/2018,Comedians,@aparnapkin,"RT @isi_kbreen: as more information about the child detention camps comes out, and more conservatives bend over backwards to defend them, i…" +06/18/2018,Comedians,@aparnapkin,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/18/2018,Comedians,@aparnapkin,"RT @LadyGodiva83: Hey Twitter family, if you’re in a position to - please donate to the #EurydiceDixon memorial fund. She was a brilliant c…" +06/18/2018,Comedians,@aparnapkin,RT @clementine_ford: 1. Some thoughts. It was not a lack of ‘situational awareness’ that ended the life of Eurydice Dixon - it was a person… +06/17/2018,Comedians,@aparnapkin,RT @itsmeheidi_h: Y’all this #Apeshit video has me losing my shit. This moment right here is the fulfillment of my art history degree. Beyo… +06/17/2018,Comedians,@aparnapkin,"in honor of father’s day, turn off google maps and ask your nearest dad for directions" +06/17/2018,Comedians,@aparnapkin,i’d rather be wrong about being concerned than be right about doing nothing +06/17/2018,Comedians,@aparnapkin,"RT @GeorgeTakei: If you think authoritarianism cannot happen here in America, I lived through a time when it already did: to 120,000 Japane…" +06/17/2018,Comedians,@aparnapkin,"RT @ZackBornstein: Remember when people didn’t vote bc they said there was no difference between Hillary and Trump, and now there are child…" +06/17/2018,Comedians,@aparnapkin,RT @kashanacauley: “Let’s spell immigration in a way that emphasizes how much we know about the issue.” https://t.co/JvIGfKp4wr +06/17/2018,Comedians,@aparnapkin,"Happy Father’s Day! Here are ways to take action against families being separated at the border: +https://t.co/VHScZ7Nx7n" +06/17/2018,Comedians,@aparnapkin,@aBerginthehand @washingtonpost @birbigs hahah +06/17/2018,Comedians,@aparnapkin,@mediocremujer ❤️ +06/17/2018,Comedians,@aparnapkin,@thelilynews i was a stage 5 clinger +06/17/2018,Comedians,@aparnapkin,@RebesaurusRex thanks for watching! +06/15/2018,Comedians,@aparnapkin,no one’s hands are tied when it comes to basic human rights. laws can change. children are not political capital an… https://t.co/RjbQWQS1Uj +06/15/2018,Comedians,@aparnapkin,@SamJayComic yay!!!! +06/14/2018,Comedians,@aparnapkin,RT @joshgondelman: Okay I finally get why they say New York is the greatest city in the world. https://t.co/iVD2Lp4bRn +06/14/2018,Comedians,@aparnapkin,"RT @leedsgarcia: I'm on a plane, so might as well do this. Feeling helpless about the family separations at the border? Guess what, there a…" +06/14/2018,Comedians,@aparnapkin,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Comedians,@aparnapkin,@jonnysun jonny!!! you’re always the best +06/14/2018,Comedians,@aparnapkin,@nkuchibhotla @washingtonpost hi! +06/14/2018,Comedians,@aparnapkin,@kramdas kavita ❤️❤️❤️ +06/14/2018,Comedians,@aparnapkin,@aspiegelnpr thanks alix :) +06/14/2018,Comedians,@aparnapkin,@motherseer @washingtonpost @wkamaubell !!! +06/14/2018,Comedians,@aparnapkin,@eleanortiernan I catch it breathlessly +06/14/2018,Comedians,@aparnapkin,@maevehiggins Marve!!! +06/13/2018,Comedians,@aparnapkin,Go lizz! And lady parts justice! https://t.co/DBp5HTFaH4 +06/13/2018,Comedians,@aparnapkin,@KennethWReid thanks ken ❤️❤️❤️ +06/13/2018,Comedians,@aparnapkin,"@_chrisgarcia @HollywoodImprov @washingtonpost Thanks, chris 🙃🙃🙃" +06/13/2018,Comedians,@aparnapkin,"Thank you, @washingtonpost, for this deep cut origin story profile! (I was bitten by my radioactive parents.) +https://t.co/xd7N4vxIW0" +06/13/2018,Comedians,@aparnapkin,Best new drama of 2018 https://t.co/Kjb99psF9C +06/13/2018,Comedians,@aparnapkin,"Probably a bad sign that I now watch ""The Handmaid's Tale"" to unwind from the news" +06/13/2018,Comedians,@aparnapkin,@K0h4ku @ROBOTCAITLIN @DailyZeitgeist @ROBOTCAITLIN is the cat's PJs! And the dog's nightie! +06/13/2018,Comedians,@aparnapkin,"RT @IndieWire: David Simon on Anthony Bourdain: ""To lose him now, amid so many fear-mongering, xenophobic tantrums by those engaged in our…" +06/13/2018,Comedians,@aparnapkin,"RT @SopanDeb: Uh, David Simon (Yes, from ""The Wire"") is banned from Twitter currently. It is very bizarre who is allowed to remain on this…" +06/12/2018,Comedians,@aparnapkin,Ocean’s 8 makes me feel seen as a woman but also as someone who has tried to organize anything with more than 3 people +06/12/2018,Comedians,@aparnapkin,"Keep it together, scones" +06/12/2018,Comedians,@aparnapkin,Shame recognize shame https://t.co/mbwtn6FqNl +06/12/2018,Comedians,@aparnapkin,dictator rule: be so bad they have no choice but to rave over things like you sitting quietly +06/12/2018,Comedians,@aparnapkin,dis a good ting ! https://t.co/WLeDo1g6rc +06/12/2018,Comedians,@aparnapkin,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/12/2018,Comedians,@aparnapkin,RT @nathanfielder: Emmy voting is now open. Good luck to all the shows! https://t.co/1UAG0qLOA9 +06/12/2018,Comedians,@aparnapkin,"@sejhammer thank you, friend 🤡🤡🤡™️" +06/12/2018,Comedians,@aparnapkin,@PictureThisShow @mexopolis I love all of this!!! ❤️🤡❤️ +06/10/2018,Comedians,@aparnapkin,@mikeymeitbual thank you! +06/10/2018,Comedians,@aparnapkin,@mikeymeitbual it was me +06/10/2018,Comedians,@aparnapkin,“‘...We need preventive public-health initiatives on managing depression and anxiety in the pre-crisis stage...’ We… https://t.co/Rot86mmsz4 +06/10/2018,Comedians,@aparnapkin,"HAPPY PRIDE, EVERYONE!!! Take this dog’s lead and express your truest self!!! 🌈🌈🌈🌈🌈🌈🌈 https://t.co/OLCfeIAzmJ" +06/10/2018,Comedians,@aparnapkin,@mexopolis @PictureThisShow you were so wonderful! what an honor 🙃 +06/08/2018,Comedians,@aparnapkin,"RT @toastasaurus: I met Anthony Bourdain only once, while waiting in line at a food festival. Instead of hello he said ""hey kid, you hungry…" +06/08/2018,Comedians,@aparnapkin,❤️ https://t.co/6DJGDzSuRp +06/08/2018,Comedians,@aparnapkin,RT @MikeDrucker: Depression isn’t a form of sadness. It’s not something that goes away if you just think about how good you have it or how… +06/08/2018,Comedians,@aparnapkin,"RT @Caissie: So many messages telling those who are struggling to reach out. Fair enough, but part of what depression does is mutes your ab…" +06/08/2018,Comedians,@aparnapkin,boy are you an indie movie because you are projecting a boldly unresolved narrative onto me +06/07/2018,Comedians,@aparnapkin,@nathanwpyle I knew this was real!!!! +06/07/2018,Comedians,@aparnapkin,@bassamshawl @jbrogie @brckhmptn @kevinabstract @merlynwood @JOBAISREAL Yes +06/07/2018,Comedians,@aparnapkin,I always feel sorry for the “dogs in blankets who look like tacos” who don’t crack the Buzzfeed list +06/07/2018,Comedians,@aparnapkin,RT @STLFoodbank: Just a few more hours (until 10p) to get in on the #HungerIsNoJoke pre-sale. Get your tickets now before they go on-sale t… +06/07/2018,Comedians,@aparnapkin,@jbrogie @brckhmptn @kevinabstract @merlynwood @JOBAISREAL I dont follow!!! +06/07/2018,Comedians,@aparnapkin,"@biloon @AndyKindler what is mojos, she asked earnestly" +06/07/2018,Comedians,@aparnapkin,@sejhammer 😍😍😍 +06/07/2018,Comedians,@aparnapkin,@mgiant the algorithm is gonna getchoo +06/07/2018,Comedians,@aparnapkin,@AndyKindler you don't miss a beat! +06/07/2018,Comedians,@aparnapkin,"since reality got canceled awhile ago, let's at least keep the quality programming https://t.co/OsdtTrVHDG" +06/07/2018,Comedians,@aparnapkin,"it’s not delivery, it’s depression" +06/07/2018,Comedians,@aparnapkin,"RT @davidhogg111: .@BetsyDeVosED as you are secretary of education I respect your decision. However, as a citizen and survivor of a school…" +06/21/2018,Comedians,@LisaLampanelli,"I love this interview! Thanks, @ThriveLouD https://t.co/sGMlcUGXFH" +06/20/2018,Comedians,@LisaLampanelli,"Within 10 minutes, one fan on the street said “you look greatl and the other one said “why’d you lose weight? I thi… https://t.co/iavrh5Y6EH" +06/20/2018,Comedians,@LisaLampanelli,"You know you wanna see me in CT! My storytelling show is happening @FTCPresents! Less than 400 tickets to spare, so… https://t.co/ueBUlwSXYS" +06/19/2018,Comedians,@LisaLampanelli,"Listen in, Thursday, folks! This guy is a great interviewer, and I'm, well . . . you know. https://t.co/8ELovdpNMh" +06/13/2018,Comedians,@LisaLampanelli,Just when you thought I gave it to that guy in SJ! Listen to this for an epic heckler story!!! https://t.co/zCMmoUzlp3 +05/11/2018,Comedians,@LisaLampanelli,There's only a few more hours until #Taskmaster on @ComedyCentral airs tonight at 11pm/10pm CT! https://t.co/Lrh3EBOiFG +05/11/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tonight at 11pm/10pm CT to see me on #Taskmaster! https://t.co/pFMrKcu4Dj +05/04/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tonight at 11/10c to see me on two brand-new episodes of #Taskmaster! https://t.co/WFB9ijDKOZ +05/01/2018,Comedians,@LisaLampanelli,"So proud of @amyschumer - TONY NOMINEE! You werk, mama! #GirlKnowsNoBounds" +04/29/2018,Comedians,@LisaLampanelli,Watch me on the #trumproast tonight on @ComedyCentral at 11/10c! https://t.co/qAWNcNSl7q +04/27/2018,Comedians,@LisaLampanelli,And THIS YouTube video by @2buffoons is why I can't be spiritual! https://t.co/JhOpWHPkJC https://t.co/WGiBB3rYP6 +04/27/2018,Comedians,@LisaLampanelli,Watch me tonight on @ComedyCentral at 11pm/10pm CT on its brand-new game show #Taskmaster! https://t.co/b6PJActozF +04/26/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tomorrow at 11pm/10pm CT to see me on its new game show #Taskmaster! https://t.co/39BDGl9DJO +04/12/2018,Comedians,@LisaLampanelli,"Looking forward to playing @WellmontTheater in Montclair, NJ on Sat, 4/14! https://t.co/r2ABdFRhbt" +03/24/2018,Comedians,@LisaLampanelli,Detroit! Come see me @MotorCityCasino on 4/19! Get your tickets now! https://t.co/at84N74diK +03/08/2018,Comedians,@LisaLampanelli,New Jersey! Come see me @WellmontTheater in Montclair on 4/14! https://t.co/dWLvQcVAXv +03/05/2018,Comedians,@LisaLampanelli,Atlanta! I’m coming back to see you on March 24. Tickets to my show @CenterStageATL are available now! https://t.co/lOCDxoDzmp +03/03/2018,Comedians,@LisaLampanelli,New fan of @ashleyprimis - author of amazing article on Gen Xers in 2/18 Philadelphia magazine. Great insights! Mad… https://t.co/G5F0Q9JN8D +02/23/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my shows on 5/18 and 5/19 at the Seneca Niagara Casino in Niagara Falls, NY! https://t.co/Eq3hMjve19" +02/23/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 4/13 show @20MonroeLive in Grand Rapids, MI! https://t.co/MKYJr0gae7" +02/21/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my Grand Rapids, MI show on 4/13! https://t.co/j7oKLTJ0bG" +02/02/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 5/5 show @rivercitycasino in St. Louis, MO! https://t.co/r0pMo3Htjc" +01/31/2018,Comedians,@LisaLampanelli,Pre-sale tickets are now available for my 5/5 show @rivercitycasino in St. Louis! https://t.co/8zQsxDmf9a +01/26/2018,Comedians,@LisaLampanelli,"Tickets are now available for my 3/23 show @AmeristarKC in Kansas City, MO! https://t.co/6ckoNkvvT6" +01/23/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my 3/23 show @AmeristarKC in Kansas City, MO! https://t.co/KKpPwAdavk" +01/14/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/1 show @ParamountHV in Peekskill, NY! https://t.co/xcPVFkQfSu" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/9 show @groveofanaheim in Anaheim, CA! https://t.co/wDY0P9YgpN" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/10 show @SJTheaters in San Jose, CA! https://t.co/Bg6JrZ2cy4" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 4/20 show @GeneseeTheatre in Waukegan, IL! https://t.co/itDPk6d7oX" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 5/12 show @theSBEC in Bethlehem, PA! https://t.co/pkCaybkGXI" +01/11/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my show on 6/1 @ParamountHV in Peekskill, NY! https://t.co/KBhc3ACLDT" +01/10/2018,Comedians,@LisaLampanelli,"Pre-sales happening now for 5/12 Bethlehem, PA, 6/9 Anaheim, CA & 6/10 San Jose, CA! https://t.co/Eq3hMjve19" +12/22/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on April 14th @WellmontTheater in Montclair, NJ! https://t.co/dWLvQcVAXv" +12/22/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on March 24th @CenterStageAtl in Atlanta, GA! https://t.co/lOCDxoDzmp" +12/15/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on February 2nd @TheatreWestbury in Westbury, NY! https://t.co/wDDeF1UqGu" +12/08/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on February 3rd @hardrockliveorl in Orlando, FL! https://t.co/PBCVGk6wlu" +12/05/2017,Comedians,@LisaLampanelli,"RT @centerstage_md: Comedy's Lovable Queen of Mean, @LisaLampanelli , is coming to Baltimore Center Stage for one night only! Don't miss…" +12/01/2017,Comedians,@LisaLampanelli,Tix are now on sale for my stand-up show at the Ohio Theatre @playhousesquare in Cleveland on 6/23! https://t.co/HDumtpLLCc +12/01/2017,Comedians,@LisaLampanelli,"Tix are now on sale for my stand-up show @FiveFlagsCenter in Dubuque, IA, on 3/31! https://t.co/ci3aUixee0" +11/28/2017,Comedians,@LisaLampanelli,Save more animal lives this #GivingTuesday by making a donation to my @AnimalLeague pals! Donate TODAY & @Zappos Fo… https://t.co/f7MP6RduR3 +11/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Stuffed will have its final performance tonight at 7pm! Get your tickets at https://t.co/3hYVkLHnFw for your last chance t… +11/15/2017,Comedians,@LisaLampanelli,"Barbara, Could love you, @nypost or this piece more! Thank you so so much! https://t.co/Nvy7JAYnTq" +11/10/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: .@LisaLampanelli takes @LaurenScala4NY from @newyorklivetv on a tour of her favorite NYC eateries, @PressedJuicery & @BBQN…" +11/10/2017,Comedians,@LisaLampanelli,Tune-in on @nbc’s @newyorklivetv for my interview about @StuffedPlay filmed at @PressedJuicery and @BBQNYC! https://t.co/4B68fponmW +11/08/2017,Comedians,@LisaLampanelli,RT @FeralAudio: talking body image & food stuff on a new GET STUFFED w/ @LisaLampanelli & guest @OHEden ! https://t.co/d82vBZHSKz +11/06/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Join @LisaLampanelli tomorrow at 2pm EST on @usweekly's page for a LIVE Q&A with @XtinaGaribaldi & @Heytravhey! https://t.… +11/04/2017,Comedians,@LisaLampanelli,RT @TimeOutNewYork: Comedian @LisaLampanelli is taking over our Instagram Story! Watch to see what happens backstage at @StuffedPlay: https… +11/03/2017,Comedians,@LisaLampanelli,Congratulations to @GreerBarnes1 on a great season of Red Oaks on Amazon. So proud of what an amazing actor you are!!! +11/02/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in on @NPR's @hereandnow to @LisaLampanelli's interview about #StuffedPlay! Click LISTEN LIVE on the left! https://t.… +11/01/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: @realdonjamieson @JaneGreen @clayaiken @Savage937 And some more pictures with @LisaLampanelli, @OHEden, @SayconSengbloh, @…" +11/01/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: In honor of last night's opening, here are some pictures from our @StuffedPlay celebration! https://t.co/QE3fTl0FQ3" +10/31/2017,Comedians,@LisaLampanelli,Love my new friends on the @stufdtruck! Come stop by get some bites and $30 tix tonight ONLY to @StuffedPlay! https://t.co/Lxn9caZo68 +10/31/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@LisaLampanelli coming at you LIVE from the @stufdtruck at the Westside Theatre! Come stop by for treats and $30 tix TONI… +10/31/2017,Comedians,@LisaLampanelli,Watch me on @Cheddar at 3:40pm ET #CheddarLive https://t.co/hSshqQo9jd +10/31/2017,Comedians,@LisaLampanelli,RT @andreaboehlke: Comedian @LisaLampanelli from @StuffedPlay stops by #PeopleNow to talk the importance of comedy in darker times 👉🏼 https… +10/31/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in LIVE on https://t.co/O7S4P89YAI at 1PM EST for @LisaLampanelli’s @Backstage interview on @StuffedPlay! https://t.c… +10/31/2017,Comedians,@LisaLampanelli,About to go on with @JrzyJoePiscopo on NY 970AM! Listen now!!! +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: A sneak peek at @LisaLampanelli's Roast Beef of the Week! View the full video on @StuffedPlay's Facebook. https://t.co/Z0T… +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: 1 day only! Get $30 tix to @StuffedPlay TOMORROW by using code STHW30 for performances 10/31-11/30. We'll have treats fro… +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in TODAY at 5:00pm on @TheCumiaShow for a Facebook LIVE interview with @LisaLampanelli on @ArtieandAnthony! https://t… +10/27/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: #FlashbackFriday to our very first performance at the Westside Theatre! https://t.co/80s5TUqviW +10/26/2017,Comedians,@LisaLampanelli,"Watch me on @People giving the full scoop about my journey with @StuffedPlay! +Check it out: https://t.co/p0voOkGtwo https://t.co/EdKgUpiaND" +10/24/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: TUNE IN TODAY at 5:30pm for a LIVE interview with @LisaLampanelli on @BroadwayWorld! Send questions with #AskLisaBWW—https… +10/20/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: Ready for her glamour shot and some doughnuts, it’s @OHEden! https://t.co/uYfF09YkMn" +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@LaurenABrickman is ready to take a bite! 🍩 https://t.co/Ef9FaY61RQ +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Here to get Stuffed and celebrate! 🍩 https://t.co/weqmstPXTF +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: We are kicking off the party with doughnuts at @BBQNYC!! 🍩 https://t.co/yBslnzcYHX +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: A bow to kick off our @StuffedPlay celebration!!! 🍩 https://t.co/3VnZZKQK3Y +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli is ready for a party! Chow down all night with #StuffedPlay! https://t.co/RL3Pq77oNJ +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Apprentice reunion! @clayaiken and @lisalampanelli and ready to chow down with @stuffedplay. 🍩 https://t.co/z6rj6GNHlS +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tonight is our celebration! Dig in on our Twitter & Instagram for a treat behind-the-scenes at the Westside Theatre & @BBQ… +10/18/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tomorrow is our @StuffedPlay celebration so we gave @LisaLampanelli some healthy snacks to get her energy up. https://t.co… +10/18/2017,Comedians,@LisaLampanelli,Tomorrow is our @StuffedPlay celebration so the show gave me some healthy snacks for energy. Check out how THAT tur… https://t.co/5S2TlXJg2O +10/17/2017,Comedians,@LisaLampanelli,Love the new recipes @RoccoDiSpirito! Congrats on the new cookbook #RoccosHealthyAndDelicious! Get your copy here:… https://t.co/ItFb6Cj1dg +10/17/2017,Comedians,@LisaLampanelli,In honor of my mom's fave game show: Would you like to buy a vowel? https://t.co/W9dnAXXXP1 +10/16/2017,Comedians,@LisaLampanelli,"#MotivationMonday — drop the healthy snack and treat yourself. Have a donut or cupcake and tell 'em ""Lisa Made Me D… https://t.co/RyltPADMQE" +10/16/2017,Comedians,@LisaLampanelli,Thanks for coming @clayaiken 💚 https://t.co/JlXpcDn54T +10/10/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Today is #NationalCakeDecoratingDay. Special shout out to anyone who can make a cake look like a doughnut. https://t.co/TO… +10/10/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli takes over Instagram today! DOUGH-NOT miss out on a behind-the-scenes sneak peek. 🍩 https://t.co/56A1sVDf… +10/09/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Our assistant director is getting ready to dig in! Opening night is only 10 days away! https://t.co/NRb0UWvLv7 +10/08/2017,Comedians,@LisaLampanelli,My castmates @MarshaSBlake and @NikkiBlonsky agree – doughnuts are greater than salads. 🍩 🥗 https://t.co/GzIGKHRCNT +10/06/2017,Comedians,@LisaLampanelli,"It’s Friday, so you deserve a treat! Break out the cookies & come see @StuffedPlay. https://t.co/fNhkiELikj" +10/05/2017,Comedians,@LisaLampanelli,Listen to me chat with my pal @PaulMecurio about @StuffedPlay RIGHT NOW!! https://t.co/Tr108HIpPu +10/05/2017,Comedians,@LisaLampanelli,Thanks to @playbill I feel official!!! https://t.co/lvf8IXuszB +10/05/2017,Comedians,@LisaLampanelli,Proudest moment since I resisted an entire chocolate cake! Starting @stuffedplay previews TONITE! https://t.co/B1QdCGgEhK #dreamsdocometrue +10/04/2017,Comedians,@LisaLampanelli,Stay up late tonight and catch me on @CelebrityPageTV for an interview with @ArthurKade! Tune in at 1AM EST and 10P… https://t.co/CzPvhlehYC +10/04/2017,Comedians,@LisaLampanelli,Tune in right now to @BUILDseriesNYC for the scoop on @StuffedPlay! https://t.co/OWROerDVzp https://t.co/NISzTLJOHF +10/04/2017,Comedians,@LisaLampanelli,Everybody better tune in to @fox5ny #GDNY at 9:45am! I’m dishing out everything on my new play @StuffedPlay. https://t.co/FT0iOZYNEp +10/03/2017,Comedians,@LisaLampanelli,Returning to #GDNY tomorrow morning to chat about my play @StuffedPlay with @rosannascotto and @gregkellyfox5. Can'… https://t.co/Y87go4SYES +10/03/2017,Comedians,@LisaLampanelli,It’s @NikkiBlonsky from…my play @StuffedPlay! Took her a few tries to get it right. https://t.co/7BZqfNudZI +10/02/2017,Comedians,@LisaLampanelli,Take a bite of my new play @StuffedPlay during previews for only $30 through @TodayTix! https://t.co/3E9EL8dUFd +10/02/2017,Comedians,@LisaLampanelli,"A lil' bite of LL on @NewYorkLiveTV! I took @LaurenScala4NY around the city to my favorite places, including… https://t.co/rbMivd2qr2" +09/29/2017,Comedians,@LisaLampanelli,See what's pissing me off this week in my #RoastBeefoftheWeek @StuffedPlay. Pass it on! https://t.co/4csWA01s0h +09/29/2017,Comedians,@LisaLampanelli,"@Tom_Bergeron @DancingABC Such an honor to hear from you, @TomBergeron - u are my favorite host since Wink Martinda… https://t.co/m0SrCSlLym" +09/28/2017,Comedians,@LisaLampanelli,"This week's question: When you've tried to lose weight or lost weight, were your friends:" +09/28/2017,Comedians,@LisaLampanelli,"Listen now, folks!!! https://t.co/595sXPPeyP" +09/28/2017,Comedians,@LisaLampanelli,One long poem or one big grocery list for my show @StuffedPlay? #NationalPoetryDay! https://t.co/Qk1n2PaVTh +09/28/2017,Comedians,@LisaLampanelli,#ThrowbackThursday to our 1st reading of @StuffedPlay on Sept 7th! Only a week away from the 1st performance! Shoul… https://t.co/dUdHsPThF3 +09/27/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli found herself on the street! See if you can spot our delicious new kiosks around NYC! https://t.co/KB9cGp… +09/27/2017,Comedians,@LisaLampanelli,Here it is! My new @DancingABC recap on @Vulture. What I learned from this episode? There’s a lot of dry-humping in… https://t.co/z3EMNMB4qp +09/26/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: A lifelong yo-yo dieter, a bulimic, a confident overweight gal, and a permanent size zero who can’t gain weight walk into…" +09/26/2017,Comedians,@LisaLampanelli,Check me out tonite at 8P EST with @KennedyNation on @FoxBusiness in celebration of #FreeSpeechWeek - and I don't even say CUNT!!! +09/26/2017,Comedians,@LisaLampanelli,Keep the stacks piled high — it’s National Pancake Day! Celebrate with some tickets to @StuffedPlay https://t.co/RPYZKCME0v +09/26/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show @The_Wilbur in Boston, MA on March 10th! Get your tix here! https://t.co/ieQyzzGYbw" +09/25/2017,Comedians,@LisaLampanelli,Guess who's got a new gig?!?! Hint: it's me!! Check it out! https://t.co/BLs5YGBcAq +09/25/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show @FoxwoodsCT in Mashantucket, CT on February 23rd! Get your tix here! https://t.co/TJhpHnOEOT" +09/25/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@mikeymusto from @NewNowNext sat with @LisaLampanelli to talk about a feast of titillating topics including @StuffedPlay!… +09/25/2017,Comedians,@LisaLampanelli,Nothing like a talk with @mikeymusto from @NewNowNext to remind me how much I love lettin' it all hang out! https://t.co/j4cuIBB3Vf +09/25/2017,Comedians,@LisaLampanelli,Listen to me live NOW on @SIRIUSXM 102 with my bud @SandraBernhard to talk @StuffedPlay +09/24/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: #ICYMI, @theatermania is excited to have a second helping of @StuffedPlay this Fall! +https://t.co/WQwrXvt2hk" +09/23/2017,Comedians,@LisaLampanelli,Sat down with my pal @ComedyDaddy for @KPCurtainCall to chat about @StuffedPlay ! Loved every second! Listen here: https://t.co/sf04fMCEzm +09/22/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: It’s the first day of Fall! You know what that means…give us all the pumpkin spiced treats. https://t.co/RgeYSCH7GO +09/22/2017,Comedians,@LisaLampanelli,"It’s the first day of fall, so you know what THAT means. Three words: PUMPKIN SPICED EVERYTHING! https://t.co/cK4f6LXn9C" +09/22/2017,Comedians,@LisaLampanelli,"Miss my podcast this week? Well, LISTEN NOW! It's about acceptance - and I DON'T accept you NOT listening! Go to: https://t.co/5Zx1qbRvzI" +09/21/2017,Comedians,@LisaLampanelli,RT @broadwaycom: We can't wait to chat with @LisaLampanelli about @StuffedPlay and more! https://t.co/dksGZiwzno https://t.co/LWJE613WCG +09/21/2017,Comedians,@LisaLampanelli,Getting ready to go LIVE on @broadwaycom at 5!!! Will take ur questions & dish about @StuffedPlay & me!!! https://t.co/B1QdCGyfGk +09/21/2017,Comedians,@LisaLampanelli,"Wanna big bite of LL in @StuffedPlay? Well, hurry! Just two weeks left until performances begin! https://t.co/VJ0SPKXA8z" +09/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@NikkiBlonsky & @LisaLampanelli are two peas in a pod at @StuffedPlay rehearsals. https://t.co/NRDR5sLYGW +09/20/2017,Comedians,@LisaLampanelli,Absolutely thrilled to join @GeffenPlayhouse for a good chat and a few laughs :) Listen on @PodcastOne https://t.co/eHodEvyhjn +09/19/2017,Comedians,@LisaLampanelli,"If you're not an @AudienceRewards member, join! My @StuffedPlay page has lots of treats for you at… https://t.co/tpIjyFRCFa" +09/19/2017,Comedians,@LisaLampanelli,The great gals on the great @ATWWDpodcast hosted me this week to talk @StuffedPlay ! Listen here for lots of laughs! https://t.co/nbC31PWAGG +09/18/2017,Comedians,@LisaLampanelli,"#MondayMotivation If you can get thru a Monday, you deserve a treat. https://t.co/BTW27E2qke" +09/17/2017,Comedians,@LisaLampanelli,"Ever since @StuffedPlay, my favorite day of the week is . . . Sundae! LIKE for a banana split or HEART for a milksh… https://t.co/A10BzdJxwJ" +09/15/2017,Comedians,@LisaLampanelli,All you Bway actresses need to back off! I'm the new triple threat in town! Check out my audition reel on @Playbill. https://t.co/C0zVK3GNxi +09/14/2017,Comedians,@LisaLampanelli,Don't forget to meet me at https://t.co/uiOw99wvV0 at 10 PM EST/7 PM PST for my live chat. Have your @StuffedPlay & podcast questions ready! +09/14/2017,Comedians,@LisaLampanelli,Break out the Boston Cream! It’s National Cream-Filled Donut Day! #ProofThatGodExists https://t.co/OAlfq6JInx +09/13/2017,Comedians,@LisaLampanelli,"Wanna talk? Go to https://t.co/uiOw99wvV0 Thurs at 10PM EST/7PM PST to talk @ my podcast, @StuffedPlay or to get some help from urs truly!" +09/13/2017,Comedians,@LisaLampanelli,"The 1st episode of my podcast, Get Stuffed, is here to help you get your life on track (or not). Get it on iTunes:https://t.co/BXRZi1X7cT" +09/12/2017,Comedians,@LisaLampanelli,My masterpiece @StuffedPlay is in the @broadwaycom Fall Preview! Wanna bite? Go to https://t.co/hBfqJfadk0. https://t.co/w8HNN2k0tl +09/12/2017,Comedians,@LisaLampanelli,Do you think therapy is: +09/12/2017,Comedians,@LisaLampanelli,"Only 1 more day until my podcast, ""Get Stuffed with Lisa Lampanelli"" is up & running. Go to https://t.co/5Zx1qbRvzI right now and subscribe!" +09/11/2017,Comedians,@LisaLampanelli,"Got a funny, interesting, horrifying or truly heinous story about therapy? Send it to https://t.co/hE4Z4n0M5U - u may end up on my podcast" +09/11/2017,Comedians,@LisaLampanelli,"Your pleas have been heard! My podcast ""Get Stuffed w/LL"" starts this week! Check out the preview & subscribe now at https://t.co/5Zx1qbRvzI" +09/10/2017,Comedians,@LisaLampanelli,Much to my amazement -- and delight -- you don't have to be dead to get your own chair at the @FriarsClub https://t.co/UiTk4oQBE9 +09/08/2017,Comedians,@LisaLampanelli,"Unlike in real life, you can pick only ONE dessert. Choose wisely! RETWEET for cupcakes or HEART for muffins! https://t.co/99L9hPlrEs" +09/08/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: First day of rehearsals at #StuffedPlay… welcome to the “circle of trust”. 🍩 https://t.co/nkGj18nE3U +09/07/2017,Comedians,@LisaLampanelli,"It's the first day of @StuffedPlay rehearsal, and I just ate my own placenta -- and I wasn't even pregnant. https://t.co/hBfqJfadk0 for tix" +09/07/2017,Comedians,@LisaLampanelli,#ThrowbackThursday - a taste-test of last week’s @StuffedPlay photoshoot with @JeremyDanielPix! More coming soon!! https://t.co/KAqUnMrbfp +09/07/2017,Comedians,@LisaLampanelli,Our pals at @playbill got a taste of what the @StuffedPlay cast has in store for u in Oct! https://t.co/krg1eBSJXP +09/05/2017,Comedians,@LisaLampanelli,1 MONTH til @StuffedPlay starts! To win a chance to meet ME get ur tix at https://t.co/B1QdCGyfGk & comment below w… https://t.co/6w7L3hWg7j +09/05/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: 1 MONTH until 10/5! Reply w/ the friend you're bringing for a chance to win a meet & greet with @LisaLampanelli! https://t… +09/01/2017,Comedians,@LisaLampanelli,"Thanks, guys!!! https://t.co/oLXhbtv7UG" +09/01/2017,Comedians,@LisaLampanelli,"Yassss, @playbill ! Thanks for the love!!! https://t.co/Rq5fEOQT6I" +09/01/2017,Comedians,@LisaLampanelli,"Bad Pun of the Day: Donut miss out! @StuffedPlay begins 10/5. For tix, go to https://t.co/B1QdCGyfGk! https://t.co/pR8EkmLaJx" +08/31/2017,Comedians,@LisaLampanelli,Thanks 2 @rdmcphee @TylerGMount & all the folks at @playbill for the 1st Look video of @StuffedPlay - watch it here! https://t.co/A6ZyBs6il7 +08/31/2017,Comedians,@LisaLampanelli,"With @StuffedPlay starting soon, wondering: What do you ""stuff"" yourself with -- food, booze, relationships, what? Weigh in, folks!" +08/30/2017,Comedians,@LisaLampanelli,QUESTION OF THE DAY: What have u tried to change about urself or ur life that u need to accept? And is acceptance powerlessness or power? +08/30/2017,Comedians,@LisaLampanelli,"A blast today at the @stuffedplay photoshoot! I'm FULL of laughs from my cast members @NikkiBlonsky, @MarshaSBlake,… https://t.co/DdyJ9qC5pu" +08/29/2017,Comedians,@LisaLampanelli,All my fans like 2nd helpings! So check out @broadwaycom & its story on our @StuffedPlay event! https://t.co/OtTgWadDlZ +08/27/2017,Comedians,@LisaLampanelli,"Had an amazing with the great @MorganSpurlock on the 3rd episode of is""Week in the Knees"" podcast! Listen here! https://t.co/XBFIlVIdnH" +08/27/2017,Comedians,@LisaLampanelli,Ms @ChristineBurr did it again on @PageSix - thx 4 the 2 gr8 pieces about @StuffedPlay -- https://t.co/hUj09JJMom & https://t.co/fl573fb4Q2 +08/25/2017,Comedians,@LisaLampanelli,"You @NikkiBlonsky are a pro! Even with laryngitis, you shined like the star you are last night at @FriarsClub - a million thanks & hugs!" +08/25/2017,Comedians,@LisaLampanelli,"Hey Ms. @MarshaSBlake - you are my dream ""Katey""! Thank you so much for signing on to do @StuffedPlay & for being at @friarsclub last nite!" +08/25/2017,Comedians,@LisaLampanelli,So excited that you @OHEden are part of @StuffedPlay - hanging with u last nite at @friarsclub was a dream! Can't wait to start! +08/25/2017,Comedians,@LisaLampanelli,"RT @theatermania: PIX: @LisaLampanelli, @NikkiBlonsky & the cast of @StuffedPlay meet the press → https://t.co/KtlbmpjDIj https://t.co/h9z9…" +08/25/2017,Comedians,@LisaLampanelli,"RT @BroadwayWorld: Get to know the cast of @LisaLampanelli's @Stuffedplay! +https://t.co/tLjEcauSdo" +08/25/2017,Comedians,@LisaLampanelli,RT @broadwaycom: .@LisaLampanelli & the cast of STUFFED prep for off-Broadway bow: https://t.co/YTPnef1JpH https://t.co/mYQoDwZ0QT +08/25/2017,Comedians,@LisaLampanelli,https://t.co/VahLuxftVP +08/25/2017,Comedians,@LisaLampanelli,https://t.co/BDqvuvLfMn +08/24/2017,Comedians,@LisaLampanelli,Yours truly will be LIVE tomorrow from Facebook HQ! Send ur questions about @StuffedPlay & all things ME for Friday… https://t.co/QP9PqouncJ +08/23/2017,Comedians,@LisaLampanelli,"Hey all got a question about food, weight loss, body image or @StuffedPlay ? Just tweet me by 10AMThurs & I might just answer u! Now, type!" +08/23/2017,Comedians,@LisaLampanelli,Wanna hear the inside scoop on @StuffedPlay? I gave an extra helping of truth to @ShelliSonstein on @iHeartRadio -… https://t.co/HUDIOZCRe6 +08/22/2017,Comedians,@LisaLampanelli,Big @StuffedPlay casting announcement! @OITNB alums @MarshaSBlake & @OHEden join me & @NikkiBlonsky! Beyond psyched… https://t.co/2ov8Ir7sdf +08/21/2017,Comedians,@LisaLampanelli,Don't let the sun eclipse your chance to meet a star! Buy tix for @StuffedPlay by midnite & win a chance to meet me! https://t.co/yWBQz6Vx1R +08/20/2017,Comedians,@LisaLampanelli,"Hey, @BenSPlatt - in the audience chomping at the bit to see you today in @DearEvanHansen - try not to disappoint me! Lol" +08/17/2017,Comedians,@LisaLampanelli,Loved doing this interview last year on @AOL @BUILDseriesNYC talking about how I created @StuffedPlay!… https://t.co/y4189fVyGk +08/16/2017,Comedians,@LisaLampanelli,It's National Tell A Joke Day so give me your CORNiest joke. Best ones get a shout out from @StuffedPlay! Holler no… https://t.co/vnAdldcxxD +08/15/2017,Comedians,@LisaLampanelli,I do believe @NYTimes is hungry for more of lil ol' me! Can’t wait for @StuffedPlay to return in October. Go to… https://t.co/PvJVJ2t2JW +08/14/2017,Comedians,@LisaLampanelli,Thanks @RealSway for the fun interview talking about two of my favorite things: food and @StuffedPlay! https://t.co/dbntPLf1oP +08/10/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show at Sound Board @MotorCityCasino on 4/19 in Detroit, MI! https://t.co/at84N6MBUa" +08/10/2017,Comedians,@LisaLampanelli,Talk about making lemonade outta lemons! GORGEOUS!!! https://t.co/zINa1RGdb9 +08/08/2017,Comedians,@LisaLampanelli,Thank u for the amazing interview!!! https://t.co/Ibq1VIKXPV +08/08/2017,Comedians,@LisaLampanelli,"Girl, couldn't be prouder of you and your Emmy mom! Glad the world caught up to what we knew all along. https://t.co/1swvTSncZj" +08/08/2017,Comedians,@LisaLampanelli,"Pre-sale tickets are now on sale for my stand-up show at Sound Board @MotorCityCasino on 4/19 in Detroit, MI! https://t.co/y2Cit3WCxt" +08/02/2017,Comedians,@LisaLampanelli,Listen or else! XOXO Mom https://t.co/xTMmkem32f +07/28/2017,Comedians,@LisaLampanelli,"Hey, @NikkiBlonsky - we're on @PageSix ! Thanks, @ChristineBurr - so excited for @StuffedPlay ! Read about it here: https://t.co/PLCuwUfjyU" +07/27/2017,Comedians,@LisaLampanelli,My girl @NikkiBlonsky from Hairspray is doing @STUFFEDPlay! How f-in' cool is that?!? Get tix to see us at… https://t.co/xWCVcYSw2v +07/10/2017,Comedians,@LisaLampanelli,RT @SXMInsight: What was it like being on The Apprentice with @realDonaldTrump @LisaLampanelli talks with @wjcarter https://t.co/Pyrn8XU… +07/10/2017,Comedians,@LisaLampanelli,"An honor, Bill!!! XOXO https://t.co/xcDmOg5Bwc" +07/10/2017,Comedians,@LisaLampanelli,It's exactly two months til I start rehearsal for @StuffedPlay at the Westside Theatre NYC. How should I spend those last months of freedom? +07/07/2017,Comedians,@LisaLampanelli,"U da man, @RealSway https://t.co/68jIr8pTDN" +07/07/2017,Comedians,@LisaLampanelli,"Man, did I love talking to you guys!!! Thanks a million! https://t.co/bVMvFWnhYD" +07/07/2017,Comedians,@LisaLampanelli,"See u tonite at 9EST/6PST for a LIVE CHAT on https://t.co/uiOw99wvV0 - bring all ur weight, food, Trump, roast & @StuffedPlay questions." +07/05/2017,Comedians,@LisaLampanelli,So so thrilled to see my second favorite flag - the @StuffedPlay’s flag flying above the Westside Theatre in NYC! S… https://t.co/hiqAGQE7kW +07/05/2017,Comedians,@LisaLampanelli,What is the best subtitle for @StuffedPlay ? +06/30/2017,Comedians,@LisaLampanelli,"Tickets for my TWO stand-up shows at @VFCasinoResort in King of Prussia, PA, on 2/24 are now on sale! https://t.co/jLFtZJ83ke" +06/29/2017,Comedians,@LisaLampanelli,"Tickets are on sale now for my stand-up show @RegLenna on 8/5 in Jamestown, NY! #lucilleballcomedyfestival https://t.co/RIMASIKgsx" +06/26/2017,Comedians,@LisaLampanelli,Listen to me with @RealSway NOW on @Shade45 !!! +06/26/2017,Comedians,@LisaLampanelli,Wanna hear the joke @JimNorton liked best on the roast? Listen at 10A EST! @jimandsamshow @StuffedPlay +06/26/2017,Comedians,@LisaLampanelli,How cool is it that I'm talking @StuffedPlay w/@jimandsamshow at 10AEST! Haven't spent time w/ @JimNorton since the Gene Simmons roast! +06/23/2017,Comedians,@LisaLampanelli,Quick! Go to https://t.co/yQ4bPFg3gc or tune in to @Z100NewYork to hear us compare gunts & talk @StuffedPlay ! 8:35… https://t.co/hIhs2RTD8v +06/23/2017,Comedians,@LisaLampanelli,My pal @elvisduran & I laugh it up & talk @StuffedPlay at 8:35A. Listen in NY on @Z100NewYork & everywhere on https://t.co/yQ4bPFg3gc +06/23/2017,Comedians,@LisaLampanelli,"I love those puppies almost as much as I love all of you at @PIX11News - enjoy your new doggie, Dan! https://t.co/cgQPaTjQ4v" +06/23/2017,Comedians,@LisaLampanelli,Thanks for a truly fun-filled morning! XOXO https://t.co/OFG578sp1V +06/22/2017,Comedians,@LisaLampanelli,Excited to be talking @AnimalLeague & @StuffedPlay on @PIX11News w/ @TheBettyNguyen & @DanMannarino at 8:50A! https://t.co/JV4XrP40Z2 +06/20/2017,Comedians,@LisaLampanelli,"On Facebook Live @ 6 EST to talk weight struggles, life changes, political correctness & @StuffedPlay - go to https://t.co/IAvIEeICMO 2 chat" +06/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Don’t wait to take a bite out of Stuffed! Tickets on sale now at https://t.co/3hYVkLHnFw. https://t.co/8Ip0n2TWC2 +06/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: We're proud to celebrate and stand with our LGBTQ fans this week during NYC Pride Week! 🏳️‍🌈 https://t.co/AG1JOIlB5A +06/20/2017,Comedians,@LisaLampanelli,TONITE I'll be on Facebook Live 2 talk @StuffedPlay NYC! Chat with me at 6EST/3PST. And get ur tix for my play NOW https://t.co/zs99wEdB09 +06/20/2017,Comedians,@LisaLampanelli,Tickets are now on sale to the general public for @StuffedPlay! Returning to NYC in October! Get tickets here: https://t.co/zs99wEdB09 +07/02/2018,Comedians,@kathygriffin,RT @JanzforCongress: Thanks for the support @SenFeinstein! #CA22 #Drewfor22 https://t.co/2tyFYZVjON +07/02/2018,Comedians,@kathygriffin,"And here are the voter registration deadlines by state: https://t.co/JimpvgUWFq + +Don't wait!!! Register now:… https://t.co/AzI9infCSv" +07/02/2018,Comedians,@kathygriffin,"RT @mileskahn: ""Sure, my dick is small, but look at these much bigger dicks that are near my dick. Anyway, that's why I think I have a big…" +07/02/2018,Comedians,@kathygriffin,Register to vote: https://t.co/QfF2eLSfRo https://t.co/dcN0VdGd6A +07/02/2018,Comedians,@kathygriffin,Register to vote: https://t.co/QfF2eLSfRo https://t.co/X7J2WaOkgi +07/02/2018,Comedians,@kathygriffin,RT @BettyBowers: Is there anything more blasphemous than giving your god “credit” for you being a blood-thirsty sociopath who slaughters ma… +07/02/2018,Comedians,@kathygriffin,"My July and August US tour dates! + +Get Tickets Here: https://t.co/Nq0HnqTHFK + +Los Angeles: July 19th +Los Angeles:… https://t.co/9SOvI4Xt5t" +07/02/2018,Comedians,@kathygriffin,"Three big shows this month in Southern California! + +Los Angeles, July 19th: https://t.co/jyCPdfYX2B + +Los Angeles,… https://t.co/40feQovRJM" +07/02/2018,Comedians,@kathygriffin,"RT @OhNoSheTwitnt: The straight white men who got mad about fictional characters being rebooted as women, POC, and LGBT are really gonna ha…" +07/02/2018,Comedians,@kathygriffin,RT @ACTBrigitte: At least you don't try to pretend to be civil. https://t.co/iajfHILlU4 +07/02/2018,Comedians,@kathygriffin,Fake outrage is a specialty of the right...how many days did you all spend upset that @PressSec was asked to leave… https://t.co/Jas0mT4KE1 +07/02/2018,Comedians,@kathygriffin,"Good Morning! Another day of incivility ahead... + +FUCK TRUMP" +07/02/2018,Comedians,@kathygriffin,RT @RobertMaguire_: Here's the President of the United States greeting paying customers at a private luxury resort he still profits from.… +07/02/2018,Comedians,@kathygriffin,"RT @KenDilanianNBC: Former CIA analyst Sue Mi Terry to @halliejackson: ""The Singapore declaration was a bunch of verbiage. We didn't get a…" +07/02/2018,Comedians,@kathygriffin,RT @rgay: I’m not really ever going to live in the Midwest again but I’m always gonna be a Nebraskan and it would be nice if journalists we… +07/02/2018,Comedians,@kathygriffin,RT @rgay: It’s exhausting watching journalists assume all Midwesterners are white. We aren’t. Or that all Midwesterners are conservative. W… +07/02/2018,Comedians,@kathygriffin,Disgusting! https://t.co/U2tlRy2FOY +07/02/2018,Comedians,@kathygriffin,"RT @RAICESTEXAS: Our Executive Director, Jonathan Ryan will be live with @KateBolduan on @CNN in a few minutes to discuss what we're seeing…" +07/02/2018,Comedians,@kathygriffin,"RT @RAICESTEXAS: On behalf of the famlies we can serve thanks to your generosity, we say THANK YOU. We will keep fighting. We will keep wor…" +07/02/2018,Comedians,@kathygriffin,RT @RAICESTEXAS: A story in three images. @Twitter made this happen in less than 12 hours over a weekend. https://t.co/ulFcgtDMOJ +07/02/2018,Comedians,@kathygriffin,RT @billprady: Somebody please explain to me about all the Trump supporters shocked by cursing. It's like barbershop quartet fans who hate… +07/02/2018,Comedians,@kathygriffin,"RT @AP: Concern rising that U.S. adversaries will use “deepfake” videos to influence political campaigns, jeopardize national security. htt…" +07/02/2018,Comedians,@kathygriffin,@KlasfeldReports I will never forget the images of Erdogan’s thugs beating up innocent American non-violent protest… https://t.co/58wpMyFzBb +07/02/2018,Comedians,@kathygriffin,RT @AlyssaMastro44: ITS SO GOOD. In every way possible. https://t.co/UaC9SPAIg2 +07/02/2018,Comedians,@kathygriffin,@DebraMessing Where's my god damn invite @DebraMessing?! +07/02/2018,Comedians,@kathygriffin,I'm so glad to hear this. Everyone should watch @Hannahgadsby's special on @netflix https://t.co/8mTqSqrTHT +07/02/2018,Comedians,@kathygriffin,RT @RAICESTEXAS: Does anyone know the right person to speak to @Twitter @TwitterSupport to get our account verified? Please retweet to help… +07/02/2018,Comedians,@kathygriffin,RT @kylegriffin1: Trump has spent nearly 1 in 3 days as president at a Trump property and more than 1 in 5 days as president at a Trump gol… +07/02/2018,Comedians,@kathygriffin,You honestly think I’m gonna have my feelings hurt when you say this @ACTBrigitte? Why do you follow me if I’m so c… https://t.co/fa6FGzcEoX +07/02/2018,Comedians,@kathygriffin,Tweet wasn’t deleted motherfucker: https://t.co/WJckJjpa6k https://t.co/YfeAHkZxXG +07/02/2018,Comedians,@kathygriffin,Oh honey - you think my Twitter feed is meant for comedy? Seriously get a life @michaeljknowles - my fans know bett… https://t.co/9U0fhzFozV +07/02/2018,Comedians,@kathygriffin,RT @JuddApatow: Yes everyone— Rupert and Lachlan Murdoch are collaborators with all the evil happening. Daily. https://t.co/Z9KHuJu9H7 +07/02/2018,Comedians,@kathygriffin,"RT @billprady: @michaeljknowles @kathygriffin Now if I were to judge your ""tome"" solely upon your tweets, I would assume it was terrible —…" +07/02/2018,Comedians,@kathygriffin,RT @stutteringjohnm: I am meeting with the Secret Service tomorrow at 10am. @MichaelAvenatti I need your help. +07/02/2018,Comedians,@kathygriffin,RT @stutteringjohnm: I have just spoken to my new attorney @MichaelAvenatti who has agreed to represent me on this. Stay tuned. +07/02/2018,Comedians,@kathygriffin,RT @michaeljknowles: Sure. Likewise I suspect your Twitter doesn't give a false impression either. We present ourselves as polite producers… +07/02/2018,Comedians,@kathygriffin,And I am thankful for you! 💕💕💕 https://t.co/8ll3oVvrmz +07/02/2018,Comedians,@kathygriffin,RT @yashar: Again...why do people eat dark chocolate? Milk chocolate is soothing and creamy. Dark chocolate is bitter and dark. Ugh. +07/02/2018,Comedians,@kathygriffin,RT @TVietor08: This is the most pathetic oppo hit i have ever seen. You embarrassed yourself here @PageSix not @Ocasio2018 https://t.co/aMN… +07/02/2018,Comedians,@kathygriffin,RT @joanwalsh: Ugh. The person who wrote the story about @johnlegend in the @nytimes Sunday Styles section referred to his focusing on how… +07/02/2018,Comedians,@kathygriffin,cc: @IngrahamAngle he's still dribbling but thankfully he's not shutting up. https://t.co/4UEwatoUPG +07/02/2018,Comedians,@kathygriffin,"RT @louisvirtel: Woman Not Nice Enough to be Revolutionary, Says Random Acquaintance https://t.co/Eizp1DDIM4" +07/02/2018,Comedians,@kathygriffin,RT @chrissyteigen: told youuuu https://t.co/ENTrEuq0NC +07/02/2018,Comedians,@kathygriffin,"Just did two big shows at Radio City Music Hall and Carnegie Hall - along with shows in San Francisco Masonic, Seat… https://t.co/VmfrKhRJ2q" +07/02/2018,Comedians,@kathygriffin,RT @MichaelCastner: Seriously @SecretService ? @stutteringjohnm and @kathygriffin are what you consider threats to the republic? Ya might l… +07/01/2018,Comedians,@kathygriffin,Oh fuck you @AriFleischer you lied and leaked while you were in the White House and helped to sell a war we didn’t… https://t.co/9nfR4xngDv +07/01/2018,Comedians,@kathygriffin,RT @McFaul: Why did Putin fail to show up for arguably Russia's greatest football victory ever? Anyone know where he is today? +07/01/2018,Comedians,@kathygriffin,RT @AsiaArgento: This is an important read https://t.co/MWVPqTuydN +07/01/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: Breaking: Secret Service contacted me agent & wants me to meet with them tomorrow. Stay tuned, Avenatti, can you come…" +07/01/2018,Comedians,@kathygriffin,RT @KamalaHarris: Donald Trump wants to fill this SCOTUS vacancy with a justice who will overturn Roe v. Wade. Here’s what this is really a… +07/01/2018,Comedians,@kathygriffin,RT @JimCarrey: God Bless You Mr Rosenstein for bravely standing up to the likes of Jim Jordan and Trey Gowdy who seek to destroy the rule o… +07/01/2018,Comedians,@kathygriffin,"RT @kylegriffin1: Trump's nominee to run the IRS failed to disclose that he owns units in a Trump hotel, according to The Hill. https://t.c…" +07/01/2018,Comedians,@kathygriffin,Innocent or Guilty. I’ll let @darth be the judge. https://t.co/3XqsCKSryz +07/01/2018,Comedians,@kathygriffin,@mooretabithia31 Chocolates next to flowers +07/01/2018,Comedians,@kathygriffin,"Thank you @rachaelray!! What a beautiful and delicious surprise! + +Love, +KG https://t.co/x6Z6OLDGfX" +07/01/2018,Comedians,@kathygriffin,RT @goldengateblond: Everything you need to know about Susan Collins’ judgment is right here. https://t.co/boqnXgif49 +07/01/2018,Comedians,@kathygriffin,I’ve been a professional comic for 30 years. I’ve been studying comedy for even longer. I thought I had seen everyt… https://t.co/CDpQCCs9lK +07/01/2018,Comedians,@kathygriffin,"Bill is a catch! Brilliant, kind, and hilarious!! https://t.co/D8Pdhj1ciT" +07/01/2018,Comedians,@kathygriffin,Happy Canada Day!!! 🇨🇦🇨🇦🇨🇦 +07/01/2018,Comedians,@kathygriffin,"RT @kylegriffin1: It's official: For the second year in a row, the White House did not release a presidential proclamation marking Pride Mo…" +07/01/2018,Comedians,@kathygriffin,"RT @neeratanden: Just to state it, Gorsuch has voted a 100% with the hard right on the Court; there is no reason at all to think he would p…" +07/01/2018,Comedians,@kathygriffin,"RT @brianefallon: Susan Collins to @jaketapper: ""The President told me he would not ask that question"" about Roe. +He doesnt need to, Susan…" +07/01/2018,Comedians,@kathygriffin,RT @DebraMessing: You have to tag her @SusanSarandon if you want her to see it. Just helping out. https://t.co/AYmj5EJQYl +07/01/2018,Comedians,@kathygriffin,"RT @JimCarrey: If you’re wondering why Fake President @realDonaldTrump doesn’t care about the suffering of children at the border, the answ…" +07/01/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: I was told by someone close to me that this was a silly prank. I'm sorry I have to disagree,at the very least,this has…" +07/01/2018,Comedians,@kathygriffin,RT @maggieNYT: To be clearer here after a reader email - they’ve addressed their views on constitutionality of Roe v Wade previously. There… +07/01/2018,Comedians,@kathygriffin,Omg amazing https://t.co/OJw3Ol8hW7 +07/01/2018,Comedians,@kathygriffin,"RT @andylassner: Happy #CanadaDay!! + +Thank you for bearing with us during this highly embarrassing time for our country." +07/01/2018,Comedians,@kathygriffin,RT @MollyJongFast: Jared is as good at world peace as he is at switchboard operator. https://t.co/689eNxvz6U +07/01/2018,Comedians,@kathygriffin,"RT @Toure: In the picture below you see an adult woman screaming at a 14 yo child. She is Roslyn La Liberte, a MAGA zealot racist who runs…" +07/01/2018,Comedians,@kathygriffin,https://t.co/4tuBolSsyo +07/01/2018,Comedians,@kathygriffin,RT @EricHaywood: We been knew https://t.co/Kw87WEQWTs +07/01/2018,Comedians,@kathygriffin,"Last day of Pride! In honor of Pride, I’m donating $2 for every ticket sold on my US tour to the @TrevorProject whi… https://t.co/J36ZzJZcwY" +07/01/2018,Comedians,@kathygriffin,But of course https://t.co/dgsxblYXhx +07/01/2018,Comedians,@kathygriffin,RT @cher: I wish bots were funny +07/01/2018,Comedians,@kathygriffin,RT @davidmackau: threeeeeeeeeeeeead https://t.co/C3eDFqJKLX +06/30/2018,Comedians,@kathygriffin,RT @DebraMessing: https://t.co/xlyYZd0fpR +06/30/2018,Comedians,@kathygriffin,"Good...she is a brilliant, empathetic woman who should be our president. And just because she's not going to run fo… https://t.co/iFmLfRXbDR" +06/30/2018,Comedians,@kathygriffin,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Comedians,@kathygriffin,"RT @Diane_Warren: Oh shit, if she is picked we r fuuuuuucked. #handmaids #cantmakethisshitup https://t.co/g5GeE6Mk3o" +06/30/2018,Comedians,@kathygriffin,"RT @HoarseWisperer: MSNBC cancels Hugh Hewitt's show. + +Happy Saturday. + +https://t.co/BzGIecbr00" +06/30/2018,Comedians,@kathygriffin,RT @Sia: #stopseparation https://t.co/BtmcHOewti +06/30/2018,Comedians,@kathygriffin,RT @KrangTNelson: very powerful https://t.co/Qh8dN5ICJb +06/30/2018,Comedians,@kathygriffin,RT @shannonrwatts: This is a 40 year old @NRA lobbyist. My 17 year old wouldn’t even behave like this 👇 https://t.co/oePDej3d8j +06/30/2018,Comedians,@kathygriffin,👏🏻👏🏻👏🏻👏🏻 https://t.co/haskaVTtFi +06/30/2018,Comedians,@kathygriffin,RT @kenolin1: I get the feeling most Americans don’t like to see kids put in cages. +06/30/2018,Comedians,@kathygriffin,Harris/Booker 2020 +06/30/2018,Comedians,@kathygriffin,RT @KamalaHarris: We’ve already seen the President’s list of potential SCOTUS nominees — they are conservative ideologues who would put a w… +06/30/2018,Comedians,@kathygriffin,"RT @andylassner: Reminder: + +The President of the United States of America is such a colossal, fuck brain of a moron that he took a prank ca…" +06/30/2018,Comedians,@kathygriffin,"RT @AndrewKirell: In just the past year, @DineshDSouza has said C-Ville was “staged,” shared conspiracy that Vegas killer was anti-Trump, d…" +06/30/2018,Comedians,@kathygriffin,RT @DannyZuker: .@realDonaldTrump thinks you guys who still support him are SO stupid that he can lie to you this obviously and you won’t n… +06/30/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: ""If it was that easy to dupe him, there's every chance in the world Putin duped him,"" says comedian ""Stuttering John""…" +06/30/2018,Comedians,@kathygriffin,"RT @WisePaxCat: How TF was this not ALREADY a hate crime????? + +3 Black U.S. Senators Introduce Bill to Make Lynching a Federal Hate Crime h…" +06/30/2018,Comedians,@kathygriffin,RT @MollyJongFast: Owning the libs by completely contradicting yourself 3 days later. https://t.co/rQR2FPT0U1 +06/30/2018,Comedians,@kathygriffin,"RT @Marmel: The word is “Lies.” +Shorter. +Less characters. +Why is that so hard? https://t.co/iiGLhO4WNP" +06/30/2018,Comedians,@kathygriffin,"RT @davidmackau: The Best, Most Creative Signs From The ""Families Belong Together"" Protests https://t.co/w0h0EPJAhr via @ambiej" +06/30/2018,Comedians,@kathygriffin,RT @MattNegrin: @realDonaldTrump hahahahahahah omg this is so sad +06/30/2018,Comedians,@kathygriffin,"RT @danpfeiffer: @realDonaldTrump If you don’t like Trump (or Sean Spicer), buy Yes We (Still) Can and a portion of the proceeds of every b…" +06/30/2018,Comedians,@kathygriffin,"RT @CharlesMBlow: #OnThisDay in 1917 the legendary entertainer and activist Lena Horne was born in Brooklyn, the original “livest one from…" +06/30/2018,Comedians,@kathygriffin,RT @yashar: Is This the Year Women Break the Rules and Win? https://t.co/initHFAxzh +06/30/2018,Comedians,@kathygriffin,"RT @rmayemsinger: if Stuttering John is able to prank Donald Trump and get a live call from Air Force One, what THE HELL IS VLADIMIR PUTIN…" +06/30/2018,Comedians,@kathygriffin,"RT @michaelianblack: Have never felt continual, daily dread about my country before. I wake up with it, go to sleep with it. It’s exhaustin…" +06/30/2018,Comedians,@kathygriffin,RT @michaelkruse: Nearly 200 anti-lynching bills were introduced in Congress from 1882 to 1986. None were approved. https://t.co/HRzvh4Fpmu +06/30/2018,Comedians,@kathygriffin,RT @rgay: I am so tired. +06/30/2018,Comedians,@kathygriffin,"Brilliant column by @KarenAttiah —-> + +I no longer have hope in white America https://t.co/EKTEWObHGE" +06/30/2018,Comedians,@kathygriffin,"RT @AmbassadorRice: Folks, this is huge, if true: NK has a secret, third nuclear facility. They have been hiding it. The US intell commu…" +06/30/2018,Comedians,@kathygriffin,"RT @BetteMidler: Yup. Trump and Putin are meeting in Finland next month. Which is more appropriate than you’d think, since if these two kee…" +06/30/2018,Comedians,@kathygriffin,RT @andylassner: @kathygriffin This is the dude that slept with both @IngrahamAngle and @AnnCoulter. What a delightful trio they make. +06/30/2018,Comedians,@kathygriffin,RT @Diane_Warren: Is this all just a fucking reality show to U? The show we r waiting for is American Indictments. And it's coming soon. ht… +06/30/2018,Comedians,@kathygriffin,RT @The_A_Prentice: Translation: “I tried to tell you motherfuckas” https://t.co/W7C63HPFJw +06/30/2018,Comedians,@kathygriffin,RT @maxwelltani: it's true do not ever exaggerate the physical harm you experience as a journalist https://t.co/PrjJc2kR6r +06/30/2018,Comedians,@kathygriffin,RT @brianklaas: Dinesh D’Souza has been retweeting some pretty vile hashtags while trying to promote his film. https://t.co/EamljeWC6c +06/30/2018,Comedians,@kathygriffin,Dinesh D’Souza says he did Nazi that someone used the hashtag #burnthejews in a tweet he retweeted. https://t.co/TAvXnvL36u +06/30/2018,Comedians,@kathygriffin,RT @jeremymstamper: Should @kathygriffin stop using the bad f-word in order to be more ladylike? +06/30/2018,Comedians,@kathygriffin,RT @THR: .@KathyGriffin jumps back to No. 1 on Top Comedians social media ranking https://t.co/WBkJffCld2 https://t.co/OablGZ9ixM +06/30/2018,Comedians,@kathygriffin,"RT @nadabakos: “Fear of Donald Trump is not enough for me to support Clinton, with her record of corruption.” +— Susan Sarandon https://t.co…" +06/30/2018,Comedians,@kathygriffin,Thank you! Kathy Griffin Jumps Back to No. 1 on Top Comedians Social Media Ranking https://t.co/yVvJV7tYGZ via @THR +06/30/2018,Comedians,@kathygriffin,RT @ParkerMolloy: .@dominicholden put together a list of anti-LGBT actions taken by the Trump administration. If you’re not completely glue… +06/30/2018,Comedians,@kathygriffin,RT @ira: I don’t need to hear Bon Jovi in a gay bar +06/30/2018,Comedians,@kathygriffin,RT @JoyAnnReid: Why NFL players kneel: https://t.co/cLCLXlMiSE +06/30/2018,Comedians,@kathygriffin,"RT @rosemcgowan: .@terrycrews You are a HERO! Assault happens to boys and Men too. You are brave, you are good, you are strong. I’m so plea…" +06/30/2018,Comedians,@kathygriffin,RT @JuddApatow: Lachlan Murdoch and his @FoxNews has no interest in bringing our country together with accurate information and thoughtful… +06/30/2018,Comedians,@kathygriffin,RT @MattOswaltVA: Milo Yiannopolous is what happens when you sprinkle glitter on Alex Jones https://t.co/ekKOWQuc5w +06/30/2018,Comedians,@kathygriffin,"RT @MattOswaltVA: waiting for Twitter to expand to 280,000 characters before I tackle this https://t.co/iOFT3RAeZI" +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: To everyone preaching “civility” just a friendly reminder that nothing anyone calls Trump is as bad as the worst thing p… +06/30/2018,Comedians,@kathygriffin,@Spencer4Texas @TrevorProject Thank you! 😘 +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: The guy who can’t stop talking about Hillary’s emails got prank called on Air Force One then called the prank call back… +06/30/2018,Comedians,@kathygriffin,ooops https://t.co/1SvOFwX3Kl +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: GREAT JOB SENATOR MENENDEZ WE’RE PROUD OF YOU https://t.co/GmkPbC9o1k +06/30/2018,Comedians,@kathygriffin,"RT @HillaryClinton: Given the news coming out of the Supreme Court this week, I'm excited to support @WeDemandJustice's critical work by we…" +06/30/2018,Comedians,@kathygriffin,"RT @andylassner: Keep fighting the good fight, Jim. + +You’re yelling at him for millions of us. https://t.co/RRykSe0hAN" +06/30/2018,Comedians,@kathygriffin,RT @BetteMidler: #JoeJackson is d-e-a-d- and Hallelujah!! A monster who ate his own children; like in an old Grecian myth. I hated every… +06/30/2018,Comedians,@kathygriffin,"Hmmmmm tbd on the meeting part - you just followed me so I’d like to see how you behave! + +As for Texas, I’m doing t… https://t.co/q7jIJ5YWpX" +06/30/2018,Comedians,@kathygriffin,RT @RepSwalwell: Scary. A constituent just confronted me and told me I support open borders. I told her that’s not true and I’ve never said… +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: It’s because he’s a fucking idiot how is this hard https://t.co/iE106KedHa +06/30/2018,Comedians,@kathygriffin,Her clients thought she was selling their homes...but she was selling them out. https://t.co/1kTwTYv5NE +06/30/2018,Comedians,@kathygriffin,RT @JuddApatow: This is where Lachlan Murdoch and @FoxNews are especially evil. This promotion of the idea that the next Supreme Court Jus… +06/30/2018,Comedians,@kathygriffin,RT @brianklaas: The guy who rode to the White House arguing that his opponent couldn’t be trusted with classified information runs such a t… +06/30/2018,Comedians,@kathygriffin,@robbie_couch You just saved yourself. @ParkerMolloy was kind enough to tell me what she thought of the show...sile… https://t.co/adErkmU1Ee +06/30/2018,Comedians,@kathygriffin,@robbie_couch did you make it to my show? +06/30/2018,Comedians,@kathygriffin,"RT @billprady: Remember when everyone was upset that Hillary’s server was a security risk? + +Stuttering John just got through to the preside…" +06/30/2018,Comedians,@kathygriffin,"RT @elijahdaniel: GOD HATES LIL PHAG + +PREORDER + NEW SINGLE DROPS JULY 13TH +FULL ALBUM DROPS JULY 27TH https://t.co/JLV5jKQwz6" +06/30/2018,Comedians,@kathygriffin,"RT @LibyaLiberty: Hey as long as you’re civil for the photo op, right? Ew. https://t.co/IHfhWVeXcx" +06/30/2018,Comedians,@kathygriffin,@maggieNYT @MZHemingway Fuck @MZHemingway - she’s just pro trump now cause it’ll get her attention and on TV. +06/30/2018,Comedians,@kathygriffin,RT @maggieNYT: Actually @MZHemingway I was making a totally different point re what my colleague was saying about both sides in a long pres… +06/30/2018,Comedians,@kathygriffin,Hungry for attention honey? Here it is. That photo was from a reality show taping many years ago. What’s your point… https://t.co/w3Tj3fxjJn +06/30/2018,Comedians,@kathygriffin,Provocateur? He’s not Madonna. He’s a racist asshole and a criminal. https://t.co/bb8rtPvIPz +06/30/2018,Comedians,@kathygriffin,RT @KamalaHarris: Women aren’t just marching — they’re running and fighting for our future. https://t.co/2zHSZsub7z +06/30/2018,Comedians,@kathygriffin,JESUS https://t.co/hoZhwqbgsT +06/30/2018,Comedians,@kathygriffin,"RT @selfstyledsiren: A visitor to Hollywood encounters incivility, 1938. https://t.co/13ph92EdXR" +06/30/2018,Comedians,@kathygriffin,Amazing https://t.co/n6mBTiwb6l +06/30/2018,Comedians,@kathygriffin,Like you give a fuck about immigrant communities @mschlapp https://t.co/uRpnb6yHJY +06/30/2018,Comedians,@kathygriffin,Forgive me...I should have included a comma.... https://t.co/XaiYP0S7aG +06/30/2018,Comedians,@kathygriffin,RT @shannonrwatts: How’s this going? https://t.co/G5I7pw04Nl +06/30/2018,Comedians,@kathygriffin,Brother and Sister ❤️ https://t.co/3rhfBH000m +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: The Annapolis shooter once stalked and harassed a woman to the point where she fled the state. If you don’t want to blam… +06/30/2018,Comedians,@kathygriffin,RT @TVietor08: This asshole destroyed people’s lives when he spent four years demagoging the many Benghazi investigations. https://t.co/fM7… +06/30/2018,Comedians,@kathygriffin,RT @PreetBharara: Breaking: Dictators lie. Wannabe dictators lie too. https://t.co/kYmjPKNyx1 +06/30/2018,Comedians,@kathygriffin,RT @justinmclachlan: I'm so on board with I Don't Give a Fuck What Anyone Thinks Hillary https://t.co/sXy1HYyPBN +06/30/2018,Comedians,@kathygriffin,RT @PreetBharara: Yeah but North Korea denies it. So it’s ok. https://t.co/kYmjPKNyx1 +06/30/2018,Comedians,@kathygriffin,"Thank you @HillaryClinton for always saying what needs to be said. + +https://t.co/HY5bYi5XT4 https://t.co/YZcvHpdv45" +06/30/2018,Comedians,@kathygriffin,"RT @mehdirhasan: Worse: she said Hillary was more dangerous than Trump and still stands by that, even now. https://t.co/pchy6vUTFO" +06/30/2018,Comedians,@kathygriffin,"RT @kylegriffin1: Hillary Clinton on incivility: ""Give me a break! What is more uncivil and cruel than taking children away? It should be m…" +06/30/2018,Comedians,@kathygriffin,"RT @ava: Just so you know, @RTraister came to snatch all wigs and edges in this power-packed piece that had me in full black church call an…" +06/30/2018,Comedians,@kathygriffin,"RT @terrycrews: Why didn’t you say something? + +I did. + +Why didn’t you push him off? + +I did. + +Why didn’t you cuss him out? + +I did. + +Why did…" +06/30/2018,Comedians,@kathygriffin,But I thought there was little to no difference between Trump and Hillary? https://t.co/H6unxTAVVJ +06/29/2018,Comedians,@kathygriffin,"RT @andylassner: Yet you tweeted at me. +You’re bad at Twitter. https://t.co/tyAHqwRgSQ" +06/29/2018,Comedians,@kathygriffin,RT @MalcolmNance: BOT ALERT. This is hilarious when read with a Russian accent! Enjoy! #SaveDemocracy https://t.co/SUIMKjXn5F +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: Unspeakable. Don’t stop speaking about it. https://t.co/CgyuMfGoo0 +06/29/2018,Comedians,@kathygriffin,"Certainly not you bitch. + +@ACTBrigitte https://t.co/cneX2pmvSq" +06/29/2018,Comedians,@kathygriffin,RT @PattyArquette: I didn’t hear one hannity type condemn Milo or call it a bad joke like they did with Kathy Griffin. You know why? They k… +06/29/2018,Comedians,@kathygriffin,RT @SortaBad: When you call someone a pussy it’s actually short for the word pusillanimous which means timid. It doesn’t reference a body p… +06/29/2018,Comedians,@kathygriffin,"RT @freedominguez: Dear @marcorubio + +From one child of Cuban immigrants to another - where the fuck are the children ? And why are they sti…" +06/29/2018,Comedians,@kathygriffin,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Comedians,@kathygriffin,RT @yashar: Or maybe Kushner could listen to people for once and not think he’s the smartest man in the room as he often does? https://t.co… +06/29/2018,Comedians,@kathygriffin,You guys are hilarious - how about you get an administration that doesn't get fooled by a comedian. https://t.co/bAeWLfCqSZ +06/29/2018,Comedians,@kathygriffin,HAHAHAHAHAHAHA https://t.co/bAeWLfCqSZ +06/29/2018,Comedians,@kathygriffin,"My two LA shows are just around the corner! Both shows are at the Dolby Theatre! + +July 19th:… https://t.co/9V53oOwiYn" +06/29/2018,Comedians,@kathygriffin,"Go fuck yourself you useless, spineless piece of shit. Fuck you and Fuck Trump. https://t.co/jbedYvQQ1C" +06/29/2018,Comedians,@kathygriffin,RT @AlyssaMastro44: i have to be honest i am a polite person whose language has become more caustic bc I don’t believe in violence and it’s… +06/29/2018,Comedians,@kathygriffin,Is this a fucking joke? https://t.co/Kl280uHyZR +06/29/2018,Comedians,@kathygriffin,RT @yashar: The Trump campaign just sent out this text-message to supporters. https://t.co/DkRmq381ne +06/29/2018,Comedians,@kathygriffin,"I'm doing three shows in Texas motherfucker. + +Get Tickets Here: https://t.co/Nq0HnqTHFK https://t.co/vLL0AreCvy" +06/29/2018,Comedians,@kathygriffin,"“Force for positive change..” + +😂😂😂 https://t.co/3oLfqjKwJC" +06/29/2018,Comedians,@kathygriffin,Yup...every other word https://t.co/fXHwOTMnph +06/29/2018,Comedians,@kathygriffin,"Chicago, thank you for an amazing welcome last night!!! + +Next up: Two shows in LA, San Diego, and Charlotte! + +Get… https://t.co/yFlXv9GQvs" +06/29/2018,Comedians,@kathygriffin,"RT @EricHaywood: Proposal: Let Black Twitter name everything from now on. + +#BBQBecky +#PermitPatty +#PoolPatrolPaula https://t.co/MZXYNudOgC" +06/29/2018,Comedians,@kathygriffin,"RT @thistallawkgirl: By your description, he sounds like he’ll make a perfect ninth husband for Kim Davis one day. https://t.co/JXPSPZqgCM" +06/29/2018,Comedians,@kathygriffin,Must be nice to spend time with your grandson...other people’s grandchildren are in internment camps. https://t.co/yZk114hOim +06/29/2018,Comedians,@kathygriffin,RT @ChelseaClinton: This is monstrous. https://t.co/spMcxNzYAe +06/29/2018,Comedians,@kathygriffin,"RT @BetteMidler: I don't believe #Trump cares one iota about abortion, nor would I be surprised to find out he owns stock in a coat-hanger…" +06/29/2018,Comedians,@kathygriffin,"RT @aparnapkin: ""Just trolling"" means words don't matter. Words do matter. Journalism matters. Consequences matter. https://t.co/yPdtVgCbGF" +06/29/2018,Comedians,@kathygriffin,RT @michelleisawolf: Hey @GOP thanks for the free publicity 😘 #Unhinged2018 https://t.co/jLcfGdXCbE +06/29/2018,Comedians,@kathygriffin,"RT @DrClawMD: Just checking in: When @kathygriffin does this it's ""unacceptable"" but when the @GOP uses it for more political mind games an…" +06/29/2018,Comedians,@kathygriffin,"RT @ColMorrisDavis: .@DLoesch and her @NRA collaborators are enemies of democracy and a clear & present danger. + +@Morning_Joe https://t.co/…" +06/29/2018,Comedians,@kathygriffin,"RT @ShaunKing: This police officer in Lancaster, Pennsylvania should be fired immediately. After he is fired, the District Attorney should…" +06/29/2018,Comedians,@kathygriffin,Thank you for coming! 🍿👑 https://t.co/O9MlBfVAAu +06/29/2018,Comedians,@kathygriffin,Thank you!! 💋❤️ https://t.co/ruwurMjb1W +06/29/2018,Comedians,@kathygriffin,A pleasure working for you! https://t.co/NqwzmIo8N0 +06/29/2018,Comedians,@kathygriffin,"RT @AndyRichter: McDonald's CEO scolds employees for making burgers ""too burgery"" https://t.co/rcFPxzK6DY" +07/02/2018,Comedians,@cameronesposito,Today’s @queerycast guest: activist @blairimani!! Listen at https://t.co/SfCUeKovaQ https://t.co/XShhAuZ1qA +07/02/2018,Comedians,@cameronesposito,"Here’s Rhea July 11, 2014 (LeBron back to Cavs day); excited to see their face when I get home https://t.co/ljfOGJQFcA" +07/02/2018,Comedians,@cameronesposito,"@NewsHour @RAINN Hey thanks for having me @NewsHour + +was a great convo" +07/02/2018,Comedians,@cameronesposito,"RT @NewsHour: How should comics tackle sensitive topics? ‘Lead with personal experience,’ says @cameronesposito, whose set ‘Rape Jokes’ has…" +07/01/2018,Comedians,@cameronesposito,"@PFTompkins @RheaButcher Bizkits dont bizquit + +what am i even doing" +07/01/2018,Comedians,@cameronesposito,This third base coach tho https://t.co/6eAkDhaWAD +07/01/2018,Comedians,@cameronesposito,"this older gay couple had our whole neighborhood over to do karaoke on their front lawn last night + +So that’s who I want to be" +07/01/2018,Comedians,@cameronesposito,"@callmegplease Lemme pitch an alt ending real quick: + +“And that’s how I met my wife!”" +06/30/2018,Comedians,@cameronesposito,"grateful to have friends who talk politics over dinner, wake up early to rally or march & generally give a shit" +06/30/2018,Comedians,@cameronesposito,#familiesbelongtogether https://t.co/VwWXqkw0l5 +06/30/2018,Comedians,@cameronesposito,"Queer as Folk finale was on. The final words of the series, from 2005 https://t.co/5LrTq1eTJz" +06/29/2018,Comedians,@cameronesposito,"Los Angeles: will u be at this tmo? + +Hope so!! #FamilesBelongTogether https://t.co/1I31SEgeNW" +06/29/2018,Comedians,@cameronesposito,"@martcw12 @MNUFC Stoked for you, Collin." +06/29/2018,Comedians,@cameronesposito,@albinokid @RheaButcher @ClubhousePod oh wow cannot wait to listen +06/29/2018,Comedians,@cameronesposito,"@flyFoxfromNJ it was a coincidence! It’s that rad? + +I’ve totally talked w/ @threebarebears about how happy it makes me" +06/29/2018,Comedians,@cameronesposito,@jackiekashian @elizaskinner @aparnapkin @MrEmilyHeller @anylaurie16 @mariabamfoo seconded! +06/29/2018,Comedians,@cameronesposito,IM A FUCKING JOKE PROFESSOR +06/29/2018,Comedians,@cameronesposito,"No, that’s not a joke + +Jokes use an emotional reaction to an event or phenomenon to point to universal human truths… https://t.co/gAWTLAraS1" +06/29/2018,Comedians,@cameronesposito,"woke Rhea up at 7AM by screaming + +“TESSA!!!”" +06/28/2018,Comedians,@cameronesposito,"i guess im asking every queer person to go to law school or run for office + +OR BOTH" +06/28/2018,Comedians,@cameronesposito,"can’t stop thinking about an entirely queer Supreme Court + +Where all the dissenting opinions are justices calling e… https://t.co/sMXQTwA3Hd" +06/28/2018,Comedians,@cameronesposito,"Last night we passed the $50k mark in donations to support @rainn!! + +Thank you, friends. + +Watch the rest of this… https://t.co/bLhMQjbzdJ" +06/27/2018,Comedians,@cameronesposito,"45 getting another SCOTUS seat makes me nauseated + +im w/ u, other queer folks & anyone who’s part of a marginalized… https://t.co/5cZGEdtHVh" +06/27/2018,Comedians,@cameronesposito,"@waxpancake this is rad, Andy. + +thanks" +06/27/2018,Comedians,@cameronesposito,Portland! Come see me at @xoxo. https://t.co/HcGoYA9584 +06/27/2018,Comedians,@cameronesposito,@jeannakadlec @brookshelley @xoxo uh I’m a Libra moon +06/27/2018,Comedians,@cameronesposito,@tedleo @RheaButcher @pyhtshow @knottyyarn @caseywley 💜💜💜💜🎟 +06/27/2018,Comedians,@cameronesposito,"Alexandria Ocasio-Cortez!!!!!! + +!!!!!!!!!!!!!!! 😁 + +okay. Goodnight." +06/27/2018,Comedians,@cameronesposito,@Lawthreeper Hahahaha +06/27/2018,Comedians,@cameronesposito,‘Rape Jokes’ has raised over $43k for @rainn!! Watch FREE & donate at https://t.co/mrdDRgIvPt https://t.co/JfXLwIXjgt +06/27/2018,Comedians,@cameronesposito,i *am* Big Dick Energy +06/26/2018,Comedians,@cameronesposito,"RT @skgway: Number One Feeling. + +(🎥: @cameronesposito #RapeJokes) https://t.co/6NhqWcAFW5" +06/26/2018,Comedians,@cameronesposito,@skgway Yes. Yes every day. +06/26/2018,Comedians,@cameronesposito,@IjeomaOluo damn ur good w/ words +06/26/2018,Comedians,@cameronesposito,"Did u know that if u get really mad that i talk about being gay, ill still talk about it but u’ll be a mad sad baby… https://t.co/RAL5VDw4fU" +06/26/2018,Comedians,@cameronesposito,"Whoa cool. + +‘Rape Jokes’ in @MsMagazine +https://t.co/0Oxmd2t0EX https://t.co/SAS2GxuQKN" +06/26/2018,Comedians,@cameronesposito,"obvs SCOTUS doesn’t actually give a shit about religious freedom (Muslim ban) + +I do think w/ abortion specifically… https://t.co/m4k5eqggkI" +06/26/2018,Comedians,@cameronesposito,"@carrie1ou @designsponge @queerycast to recommend something adjacent, my new standup special has captions + +It’s fre… https://t.co/N7zEIKUoDC" +06/26/2018,Comedians,@cameronesposito,"Faith is a personal + +Evangelism as medical care is not faith and today’s Supreme Court decision is bogus + +Access… https://t.co/eROheVBKRZ" +06/26/2018,Comedians,@cameronesposito,"Brokebutch Mountain, right?? Also see u tonight 8PM at @ucbtla https://t.co/GBRnSV22JQ" +06/26/2018,Comedians,@cameronesposito,@ColinAnder @carrie1ou @designsponge @queerycast Yes yes yes yes PLS DO pls do +06/26/2018,Comedians,@cameronesposito,RT @PFTompkins: ICYMI: Spontaneanation Ep 169 continues our #PrideMonth celebration with our old pals Rhea Butcher & Cameron Esposito! With… +06/26/2018,Comedians,@cameronesposito,RT @designsponge: Hands down the most personal discussion I’ve ever had publicly. Thank you to @cameronesposito for making me feel safe to… +06/26/2018,Comedians,@cameronesposito,@katekillet much love Kate! +06/26/2018,Comedians,@cameronesposito,"@hanawith1n Hahahaha + +🗣 T O W E R" +06/26/2018,Comedians,@cameronesposito,@notarealpigeon much love!! +06/26/2018,Comedians,@cameronesposito,watch the rest of this set FREE & donate to support @RAINN at https://t.co/mrdDRgIvPt +06/26/2018,Comedians,@cameronesposito,ive been asked if ‘rape jokes’ can be funny for yrs. A: joke about whatever u want but BE GOOD AT IT & assume there… https://t.co/MEocBWa9Cj +06/25/2018,Comedians,@cameronesposito,"You better BIRD + +- Cover Girl!!! - + +BIRD and Rap-ine-oooooh + +Do ur thing on the cover https://t.co/XpnVtL9lFc" +06/25/2018,Comedians,@cameronesposito,"shoutout to my long-haired butches + +i once walked amongst u https://t.co/qvCsM9MF3S" +06/25/2018,Comedians,@cameronesposito,"@designsponge @queerycast Grace! Keep going w/ ur work. + +I’m always following & I’m such a fan." +06/25/2018,Comedians,@cameronesposito,"RT @designsponge: This was so much fun. Talking about work, life, finding our own version of #pride and everything in between with @cameron…" +06/25/2018,Comedians,@cameronesposito,"@Felonious_munk i can do 28 pretty easily + +u have a strong foundation; now build!" +06/25/2018,Comedians,@cameronesposito,@Che3fNuggz NAME 37 LESBIANS +06/25/2018,Comedians,@cameronesposito,FACT: you can tell a straight man’s value by how many lesbian standup comics he can name +06/25/2018,Comedians,@cameronesposito,"RT @earwolf: Design*Sponge founder Grace Bonney (@designsponge) sits down with @cameronesposito to discuss her new magazine Good Company, s…" +06/25/2018,Comedians,@cameronesposito,Stoked ‘Rape Jokes’ is included as the only indie special on this list ✌️ https://t.co/kM6b73jFSW +06/25/2018,Comedians,@cameronesposito,@DaylorTavidson thanks Taylor. +06/25/2018,Comedians,@cameronesposito,@Jesse_Hirsch hey thanks Jesse. +06/25/2018,Comedians,@cameronesposito,@j_n_foster wow look at her. +06/24/2018,Comedians,@cameronesposito,@ConorWalshy @RAINN I know hahaha. +06/24/2018,Comedians,@cameronesposito,"In honor of Pride, here’s what it felt like to kiss a woman for the first time + +Watch the rest of my special ‘Rape… https://t.co/ZH4ksh95Nk" +06/24/2018,Comedians,@cameronesposito,"Last night there was a moment when rhea & I didn’t laugh but just said “that’s a really good joke.” + +Highest compli… https://t.co/Frs1H2i0bl" +06/24/2018,Comedians,@cameronesposito,"i refuse to not exist + +Or make myself smaller + +I’m up for listening and learning + +enjoying my time here + +And holding the door open" +06/24/2018,Comedians,@cameronesposito,"RT @ColinAnder: .@cameronesposito's new special is free to stream now, benefits @RAINN, and is a brilliant, thought-provoking, emotional an…" +06/24/2018,Comedians,@cameronesposito,@TheOpposition wow i can’t believe Jordan had Spike from Buffy as a guest. Big get!! +06/24/2018,Comedians,@cameronesposito,"RT @TheOpposition: .@cameronesposito explains why her new stand-up special ""Rape Jokes"" is so funny. ► https://t.co/gH72wK7lpL https://t.co…" +06/24/2018,Comedians,@cameronesposito,Got to be on my hometown radio w/ someone ive seen make a lot of art!! https://t.co/dnOOhrdeP4 +06/24/2018,Comedians,@cameronesposito,@anitasarkeesian thanks Anita! +06/24/2018,Comedians,@cameronesposito,"Finally, i remember the Speedos + +pls enjoy ur Pride, Chicago + +Send me photos of ur Speedos" +06/24/2018,Comedians,@cameronesposito,"this is a reminder for white ppl + +Obvs POC don’t need this white lesbian’s permission to exist" +06/24/2018,Comedians,@cameronesposito,"even at my first Pride, i noticed the division btwn the white dudes who lived in Boystown & POC who likely didn’t (… https://t.co/5W6FB34118" +06/24/2018,Comedians,@cameronesposito,i was still full-on Catholic. The bull-horned protestors w/ slur filled signs didn’t shock me but I was like “what… https://t.co/LHtagyZtFh +06/24/2018,Comedians,@cameronesposito,"my parents demanded that i not come out to my lil sis, then a young teen, & she wasn’t allowed to come w/ us to the… https://t.co/AY009YZEdN" +06/24/2018,Comedians,@cameronesposito,"When i was first coming out & my only access to the queer community was an L Word msg board, my older sister took m… https://t.co/kcyEHrhyd4" +06/24/2018,Comedians,@cameronesposito,@teganandsara 😘😘 +06/24/2018,Comedians,@cameronesposito,"Tonight: stream ‘Rape Jokes” free on https://t.co/mrdDRgIvPt + +Or tomorrow. Or Monday. + +And then donate to support @RAINN" +06/24/2018,Comedians,@cameronesposito,This Pride i hope u wear a rainbow bandana & are held next to a painting of yourself https://t.co/QAlD7Phiqo +06/23/2018,Comedians,@cameronesposito,"RT @junethomas: On this week's episode of The Waves, @c_cauterucci, @latifalyles, @veralynmedia, and I talked about the Carters' album, @ca…" +06/23/2018,Comedians,@cameronesposito,@trixiemattel @RheaButcher oh that was my “keep going” face +06/23/2018,Comedians,@cameronesposito,@trixiemattel @RheaButcher https://t.co/xm68fpnj9c +06/23/2018,Comedians,@cameronesposito,"i, a gay, refuse Sarah Sanders service in my bakery* + +also Kirstjen Nielsen + +And Stephen Miller + +*i don’t have a b… https://t.co/UalNFHZ9zV" +06/23/2018,Comedians,@cameronesposito,In ten yrs of standup & 15 yrs of professional comedy ive walked ppl once & it was earlier this yr bc i said tr*mp… https://t.co/xb7piNnJtF +06/22/2018,Comedians,@cameronesposito,"cannot believe i got to wear this outfit & say these words on tv + +Thanks @jordanklepper & @ComedyCentral https://t.co/c13643TwQr" +06/22/2018,Comedians,@cameronesposito,Blair & Rhea doing the work. ✊ https://t.co/yqn1OCfRdD +06/22/2018,Comedians,@cameronesposito,"@junethomas @c_cauterucci @latifalyles @veralynmedia this was rad to listen to! + +Thanks for the kind words." +06/22/2018,Comedians,@cameronesposito,"RT @JWhitePubRadio: Love that I got to talk to @cameronesposito about her new comedy special. Really fascinating convo about identity, surv…" +06/22/2018,Comedians,@cameronesposito,imagine having such a low opinion of women that u don’t think Melania can be criticized +06/22/2018,Comedians,@cameronesposito,"RT @RAINN: In her new comedy special (now with closed captioning), @cameronesposito discusses complex issues surrounding sexual violence, m…" +06/22/2018,Comedians,@cameronesposito,@leffjakin @thepinhook i love the Pinhook and I think the shows will def sell out - ur city is good indeed +06/22/2018,Comedians,@cameronesposito,"sooooo white folks: + +Call Senators. Be loud. Make sure ur ass is registered to vote & talk w/ ur family. + +Demand c… https://t.co/eU9lnyxUQf" +06/22/2018,Comedians,@cameronesposito,That thing where the president thinks he earned anything he has & that a crappy hotel and steak empire is worth pro… https://t.co/Ii8ztgIblh +06/22/2018,Comedians,@cameronesposito,Did u catch @jordanklepper & lil guest me on @TheOpposition tonight? We were adorable. https://t.co/SURfMdsYFR +06/22/2018,Comedians,@cameronesposito,"@TheOpposition I have a secret which is that u are kind & also nice + +Hahaha I’ve exposed u Mr Klepper + +And ur show" +06/22/2018,Comedians,@cameronesposito,"RT @chicagotribune: ""I thought of the title first,"" said comedian Cameron Esposito of her newest stand-up special. + +It’s called ""Rape Jokes…" +06/21/2018,Comedians,@cameronesposito,"RT @TheOpposition: Tonight's opponent is comedian and actor @cameronesposito. I prefer *my* Camerons ""Despacito."" https://t.co/KN6HTMhjCN" +06/21/2018,Comedians,@cameronesposito,"RT @HuffPost: ""It felt like this entire press cycle could potentially complete without ever exploring anything about the survivors."" –– @ca…" +06/21/2018,Comedians,@cameronesposito,"home tmo. wknd agenda for things to yell about w/ Rhea: + +- politics +- politics +- POLITICS +- Mackenzie Davis/Terminator set photos +- politics" +06/21/2018,Comedians,@cameronesposito,@lpolgreen Thanks Lydia. ‘ppreciate ya! +06/21/2018,Comedians,@cameronesposito,"@noahmichelson @RAINN Thank u Noah! Thanks for coming to see the show live, too. Cool of you." +06/21/2018,Comedians,@cameronesposito,RT @lpolgreen: Her hourlong comedy special “Rape Jokes” takes lessons from the Me Too movement as far as they will go. @cameronesposito is… +06/21/2018,Comedians,@cameronesposito,"Gun violence +Healthcare +Aging Boomer population +Mass incarceration +Automation replacing the worker +Integrating un… https://t.co/Ow7Fq64eyi" +06/21/2018,Comedians,@cameronesposito,@MaryKoCo @RAINN thanks Mary. (Sent from the east coast when this isn’t an ungodly early time) +06/21/2018,Comedians,@cameronesposito,@scalzi oh thank u sir! +06/21/2018,Comedians,@cameronesposito,@MaryKoCo @RAINN Mary! U are my friend & I like u! +06/21/2018,Comedians,@cameronesposito,"Today we hit $35k for @RAINN!! + +Stream ‘Rape Jokes’ free & donate if u can all via https://t.co/mrdDRgqUXV https://t.co/jIrIMLNsDi" +06/21/2018,Comedians,@cameronesposito,@rachelleetweets Thanks Rachel! +06/20/2018,Comedians,@cameronesposito,"@RheaButcher @RAINN Thanks for supporting me, human." +06/20/2018,Comedians,@cameronesposito,"RT @sealln: Thank you for this, @cameronesposito. Everyone watch. And donate! https://t.co/CmgPQoSTJM #rapejokes" +06/20/2018,Comedians,@cameronesposito,RT @smrtgrls: .@cameronesposito is using stand-up comedy to start a conversation about the difficult topic of sexual assault. All proceeds… +06/20/2018,Comedians,@cameronesposito,"Our jobs are: + +- CALL (202) 224-3121, enter your zip, state that u want Family Separation to end + +- MARCH June 30th… https://t.co/q1wIS0SVqP" +06/20/2018,Comedians,@cameronesposito,"Before standup, i worked at a home for kids who couldn’t be placed in foster care + +Vibrant, awesome kids & also war… https://t.co/OjcZ0VoWHU" +06/19/2018,Comedians,@cameronesposito,"RT @gibblertron: .@cameronesposito built this hilarious, touching performance on her personal trauma and is using that to help others and h…" +06/19/2018,Comedians,@cameronesposito,@gibblertron this is beautiful & thank u +06/19/2018,Comedians,@cameronesposito,I’m outta town so can u pls go see this human do standup tonight 8PM at @ucbtla?? I miss them. https://t.co/N3LF91JM31 +06/19/2018,Comedians,@cameronesposito,@ParkerMolloy not really in town - hanging w/ my folks in the burbs +06/19/2018,Comedians,@cameronesposito,A spot of brightness: pls enjoy my mom welcoming u to “Gayvy Pier” https://t.co/ih72p1Yulg +06/19/2018,Comedians,@cameronesposito,@kthawbaker great to meet you! +06/19/2018,Comedians,@cameronesposito,RT @UnapologeticAMC: Visit https://t.co/AwULsGMh39 to stream @cameronesposito’s new “Rape Jokes” special for free or donate to benefit @RAI… +06/19/2018,Comedians,@cameronesposito,took my dad to the @Cubs game & it was rained out but i got this photo of Theo Epstein & Dave Roberts 🤷‍♂️ https://t.co/SRlUAWWapp +06/19/2018,Comedians,@cameronesposito,I got to talk about my new special & why i think it’s important to focus on survivors on tv!! Watch tonight. https://t.co/Av3GWpKBpY +06/18/2018,Comedians,@cameronesposito,RT @brooklynvegan: Stream Cameron Esposito's 'Rape Jokes' special - it's free and you can purchase it to benefit RAINN: https://t.co/c8zhr5… +06/18/2018,Comedians,@cameronesposito,"‘Rape Jokes’ went live on my website one week ago today + +So far $30k raised for @RAINN + +My goal is $100k for rape… https://t.co/8gHEmos2AW" +06/18/2018,Comedians,@cameronesposito,@DueOrDie @RheaButcher 💜💜 always in ur corner +06/18/2018,Comedians,@cameronesposito,This week’s @queerycast guest is @Travon!! Second pic is evidence of how much i liked talking with him.… https://t.co/fF0ufpdkRV +06/18/2018,Comedians,@cameronesposito,"why i am an angry lesbian + +When I should be a furious one" +06/18/2018,Comedians,@cameronesposito,And our god is money. +06/18/2018,Comedians,@cameronesposito,"The U.S. is a + +1. Carry all pregnancies to term +2. But don’t expect support or insurance +3. And same sex couples… https://t.co/hpcDZyvyMR" +06/18/2018,Comedians,@cameronesposito,"👆posting in case this is helpful to anyone going thru shit w/ ur family of origin + +But also: if ur queer, ur my fam… https://t.co/Qu2vP7JJ0I" +06/18/2018,Comedians,@cameronesposito,"A few yrs ago i interviewed my dad about our relationship, Catholicism, my being gay. Father’s Day repost: +https://t.co/dECs490xMM" +06/17/2018,Comedians,@cameronesposito,"@JoCoCruise @RAINN Thank u, delightful cruise ship!" +06/17/2018,Comedians,@cameronesposito,follow-up: happy daddy’s day to me https://t.co/HGSKBCX7x5 +06/17/2018,Comedians,@cameronesposito,Happy Daddy’s Day to all butches. +06/17/2018,Comedians,@cameronesposito,RT @katemicucci: ❤️❤️❤️ Check out the wonderful @cameronesposito’s special and benefit @RAINN while you do! ❤️❤️ https://t.co/1N76sXYziU +06/17/2018,Comedians,@cameronesposito,@quietbonnie Hahahah amazing. +06/17/2018,Comedians,@cameronesposito,@ramona_von_punk @ayyy_bibii Bloomington +06/17/2018,Comedians,@cameronesposito,@DanEngler @RAINN @LALGBTCenter thanks Dan. +06/17/2018,Comedians,@cameronesposito,Feeling very welcome at this coffee shop in Indiana altho honestly i think it was scones that turned me https://t.co/IfwpwLk2Et +06/17/2018,Comedians,@cameronesposito,@shmemschmidt Ugh yes Carrie Fisher. +06/17/2018,Comedians,@cameronesposito,"RT @vulture: Watch @cameronesposito's new remarkable comedy special on rape jokes and sexual assault, here on @vulture https://t.co/pDKe8wh…" +06/17/2018,Comedians,@cameronesposito,"an older fella just told me i look like a young Denis Leary + +And I’m truly floored/grateful he saw me as the dude w… https://t.co/4Q7SBjHbik" +06/17/2018,Comedians,@cameronesposito,RT @laurenlapkus: Go watch @cameronesposito's new special and donate to @rainn!! https://t.co/zK5bHTV7h1 +06/16/2018,Comedians,@cameronesposito,"Me, when I ascend to heaven: https://t.co/zqgOUReZHl" +06/16/2018,Comedians,@cameronesposito,"@Galaxy_Allie @MsMagazine hey there! Followed u. + +Go ahead and DM me" +06/16/2018,Comedians,@cameronesposito,Had a great time talking w/ Larkin! https://t.co/6VlCMYTwCu +06/16/2018,Comedians,@cameronesposito,@amycbecker @RAINN thank u Amy. +06/16/2018,Comedians,@cameronesposito,@maureenjohnson @RAINN thnx Maureen! Appreciate u. +06/16/2018,Comedians,@cameronesposito,@CharmedChancer thanks for this Tristan! +06/16/2018,Comedians,@cameronesposito,"‘Rape Jokes’ now has captioning!! + +Stream free at https://t.co/mrdDRgqUXV https://t.co/FuJjDpsh5v" +06/16/2018,Comedians,@cameronesposito,"fellow white ppl: we ARE a country that separates black & brown children from parents + +that’s why telling POC to sh… https://t.co/T98Y0opUc5" +06/16/2018,Comedians,@cameronesposito,@caitlinrcruz wow congrats +06/16/2018,Comedians,@cameronesposito,@Pixiesnix @RAINN @IndieWire @Refinery29 @MotherJones @RealMickFoley definitely not weird. +06/16/2018,Comedians,@cameronesposito,@_AmyScanlon @RAINN hello to ur beautiful dog! +06/15/2018,Comedians,@cameronesposito,@Allison_Yvonne get over here! +06/15/2018,Comedians,@cameronesposito,"My standup special ‘Rape Jokes’ has raised $25k for @RAINN in 4 days + +It’s free on https://t.co/mrdDRgqUXV + +Give it… https://t.co/3Agyd9ZZfA" +06/15/2018,Comedians,@cameronesposito,@RheaButcher @RAINN guess what it’s now $25k 😎 +06/15/2018,Comedians,@cameronesposito,Dispatch from Indiana. It’s good to remember many businesses don’t want restrictive bathroom laws. https://t.co/HFuy07TDGu +06/15/2018,Comedians,@cameronesposito,"This wknd: Bloomington, IN + +And see you in July, Durham + +Lots of dates for fall. Info/tix here:… https://t.co/T2ws9mJO5J" +06/15/2018,Comedians,@cameronesposito,"RT @tweedmandan: At the end of @cameronesposito 's special, I simply refused to believe an hour had passed. I found myself scrolling back a…" +06/15/2018,Comedians,@cameronesposito,@CintaRose @RheaButcher wow we look like we love each other +06/15/2018,Comedians,@cameronesposito,"RT @wearewildfang: Go buy @cameronesposito's new standup special! It's heartfelt, brilliant and to top it off, all the proceeds go to @RAIN…" +06/15/2018,Comedians,@cameronesposito,@sierraackman this is EXACTLY RIGHT +06/15/2018,Comedians,@cameronesposito,"As Jesus said: “That’s not what the Bible means, asshole.” + +*this really applies to a lot" +06/15/2018,Comedians,@cameronesposito,"if offered the chance to go to the local queer bar, always always go https://t.co/HsLlXO8vEG" +06/15/2018,Comedians,@cameronesposito,@JenKirkman @jonahray @RAINN giving it a shot! +06/14/2018,Comedians,@cameronesposito,"Bloomington, IN! I’m in town all wknd + +Almost barfed going to the airport early this morn FOR YOU +https://t.co/KyvUlm3Lkp" +06/14/2018,Comedians,@cameronesposito,@janl Wow thanks for this Jan! +06/14/2018,Comedians,@cameronesposito,"You know I love you, @autostraddle. + +Thnx for covering ‘Rape Jokes’!! +https://t.co/XYRWIjjLV5" +06/14/2018,Comedians,@cameronesposito,@kyliesparks thanks Kylie! +06/14/2018,Comedians,@cameronesposito,@ElenaStofle Code is CAMERON +06/14/2018,Comedians,@cameronesposito,"@JustineEEgner @RAINN Whoa Justine; this is rad! + +where do u teach?" +06/14/2018,Comedians,@cameronesposito,"I’m floored by press for ‘Rape Jokes’ + +Stream free at https://t.co/mrdDRgIvPt + +Over $20k raised for @RAINN & rape c… https://t.co/IABSGjWQRs" +06/14/2018,Comedians,@cameronesposito,"RT @rosemakesart: A portrait of @cameronesposito, whose new work of comedy to benefit @RAINN just completely shattered me in all the best w…" +06/14/2018,Comedians,@cameronesposito,@rosemakesart @RAINN I love this! +06/14/2018,Comedians,@cameronesposito,"RT @janetvarney: Nice work, Ms. Esposito! https://t.co/Yo1gxiGnhn" +06/14/2018,Comedians,@cameronesposito,@SarahThyre I’d happily do cute bits instead +06/14/2018,Comedians,@cameronesposito,"RT @MikeBatesSBN: I watched this exceptionally funny +(free) special last night with my partner. This morning, she and I both made donation…" +06/14/2018,Comedians,@cameronesposito,@MikeBatesSBN hey thanks Mike +06/14/2018,Comedians,@cameronesposito,@showermanb thanks Brent. +06/14/2018,Comedians,@cameronesposito,@carolinefives that’s incredible. +06/14/2018,Comedians,@cameronesposito,"@ErinMayaDarke Erin! i loved meeting u today + +And thank u" +06/14/2018,Comedians,@cameronesposito,"i see u all tagging ur posts about ‘Rape Jokes’ #getintheway + +It’s beyond. Ur too much. I honestly didn’t know that… https://t.co/eozgl9ACcC" +06/14/2018,Comedians,@cameronesposito,"RT @Variety: Cameron Esposito on 'Rape Jokes,' her new comedy special tackling sexual assault and consent https://t.co/lBxGYQD9H0" +06/14/2018,Comedians,@cameronesposito,@mariabamfoo MARIA U R THE GREATEST +06/14/2018,Comedians,@cameronesposito,@livhewson thank u liv +06/14/2018,Comedians,@cameronesposito,@SmartAssJen @RAINN same my friend 💜 +06/13/2018,Comedians,@cameronesposito,"If i had a thesis for ‘Rape Jokes’ it’d be “she’s in control of her narrative, while challenging what it means to b… https://t.co/0qV2RUVqhN" +06/13/2018,Comedians,@cameronesposito,RT @teganandsara: Loved every minute of this. https://t.co/5zY7xE2HC0 +06/13/2018,Comedians,@cameronesposito,@SmartAssJen @RAINN Jen u just made me cry. +06/13/2018,Comedians,@cameronesposito,"RT @SmartAssJen: I saw Cam do this live and was floored. It covers a lot of ground, goes in unexpected directions, is damn funny throughout…" +06/13/2018,Comedians,@cameronesposito,"@teganandsara ugh u loved my art, artists i adore?!! + +Cool. That’s cool." +06/13/2018,Comedians,@cameronesposito,@JorCru thank u Jordan! +06/13/2018,Comedians,@cameronesposito,@bjcolangelo thanks BJ! +06/13/2018,Comedians,@cameronesposito,RT @TheAVClub: .@CameronEsposito’s Rape Jokes offers humor and empathy at a time when they’re most needed https://t.co/jzPqRI27Xn https://t… +06/13/2018,Comedians,@cameronesposito,RT @RheaButcher: My wife has raised $20k in 2 days putting out her completely independent special with NO NETWORK https://t.co/5CADLvDxLJ +06/13/2018,Comedians,@cameronesposito,@maureenjohnson thanks Maureen! +06/13/2018,Comedians,@cameronesposito,@carlylane thanks Carly! +06/13/2018,Comedians,@cameronesposito,@QueerXiChisme @RAINN yep! Working on it now. +06/13/2018,Comedians,@cameronesposito,"Stream my new special ‘Rape Jokes’ FREE or donate to benefit @rainn. + +So far $20k raised in 2 days!! + +Watch at… https://t.co/79yddTE7wv" +06/13/2018,Comedians,@cameronesposito,"@theadamgoldman @queerycast @tobinlow @_kathytu @SueYacka ooohh I’m gonna listen back to this, Adam + +Was a good chat!" +07/02/2018,Comedians,@WhitneyCummings,People trying to use the Starbucks app at check out is the new paying with change +07/02/2018,Comedians,@WhitneyCummings,You make a good point Marc. The Female Brain is back on demand TODAY! 🧠 https://t.co/y1KLAI63c1 +07/01/2018,Comedians,@WhitneyCummings,When did Instagram become Twitter? https://t.co/IMG3olcMQl +07/01/2018,Comedians,@WhitneyCummings,Please don’t forget I was on Tylenol PM by accident when I recorded this. https://t.co/kFkkJ4ZnIc +07/01/2018,Comedians,@WhitneyCummings,I love you. I’m so glad it’s over! ❤️ https://t.co/EN6zQDJiN3 +06/30/2018,Comedians,@WhitneyCummings,@marishannah Gah!!! Damn it! ❤️ +06/30/2018,Comedians,@WhitneyCummings,This made me cry so this day is already off to a banging start. https://t.co/jKlxc8B3B2 +06/30/2018,Comedians,@WhitneyCummings,🙌🏼Thank you 🙌🏼 https://t.co/h0bRAbXiNg +06/30/2018,Comedians,@WhitneyCummings,RT @billyeichner: We need to fight this with everything we’ve got. The vast majority of the country is Pro-Choice. And I can’t even imagine… +06/29/2018,Comedians,@WhitneyCummings,San Jose tickets are UP! https://t.co/L948Z0V5ug +06/28/2018,Comedians,@WhitneyCummings,💔 https://t.co/mEmhgFiQ4N +06/28/2018,Comedians,@WhitneyCummings,"RT @maddow: Real headline. + +https://t.co/SyRaPbgamC" +06/28/2018,Comedians,@WhitneyCummings,@robintran04 @TheoVon HAHAHAHAHAHAHAHAH +06/28/2018,Comedians,@WhitneyCummings,I took two Tylenol PM by accident and did Theo’s podcast. Enjoy! https://t.co/aIyKV4x4bR +06/27/2018,Comedians,@WhitneyCummings,"New York: tickets for July shows here. New material, old need to make drunk strangers laugh. https://t.co/Aruas7k0kq" +06/27/2018,Comedians,@WhitneyCummings,Is this administration one giant scam to get more people to buy blood pressure medication? +06/27/2018,Comedians,@WhitneyCummings,Okay yes I love the Handmaids Tale - that doesn’t mean I want to live in it. https://t.co/JkGnZbH088 +06/27/2018,Comedians,@WhitneyCummings,"This isn’t a party issue, this is a humanity issue. https://t.co/MME4Rhek96" +06/27/2018,Comedians,@WhitneyCummings,Well this made my day. Neurology and horses is my favorite combination of things next to Laverne and Shirley https://t.co/1yNQQ4H5Ep +06/27/2018,Comedians,@WhitneyCummings,🤦🏻‍♀️ https://t.co/r5NmXHPhtR +06/26/2018,Comedians,@WhitneyCummings,Melania is going to pay a second visit to immigration facilities and I’m on pins and needles about what she will we… https://t.co/vVE3NMVqLv +06/26/2018,Comedians,@WhitneyCummings,@GoodThymeHefe What is this company? +06/26/2018,Comedians,@WhitneyCummings,Lets go then. https://t.co/U12jhssGtO +06/26/2018,Comedians,@WhitneyCummings,I'm trying to find GOOD news online and so far this is all I've found https://t.co/2t4pNy7BlY +06/25/2018,Comedians,@WhitneyCummings,Now Walgreens sucks? I don’t know how much more i can take of this. +06/25/2018,Comedians,@WhitneyCummings,August 17/18 I’m doing shows in CHICAGO. Tix just went on sale my lovelies. https://t.co/TmzSK0qrwk +06/25/2018,Comedians,@WhitneyCummings,"So when we attack Trump, his approval rating goes up? 😞 https://t.co/hs5EbZmrII" +06/24/2018,Comedians,@WhitneyCummings,"Whoever is building these, please stop? https://t.co/SkaIMYiqO3" +06/24/2018,Comedians,@WhitneyCummings,Don’t know who made this...but exactly. https://t.co/UyTeM5pmxf +06/24/2018,Comedians,@WhitneyCummings,I didn’t realize how badly I needed this. https://t.co/fSDt6qOnnH +06/23/2018,Comedians,@WhitneyCummings,@carlyincontro HAHA that you noticed that! +06/23/2018,Comedians,@WhitneyCummings,Don’t cry! 😞 https://t.co/JnqXieeHe6 +06/22/2018,Comedians,@WhitneyCummings,"I’m starting to lose faith in CNN. It’s discouraging how click bait driven they’ve become, and now they aren’t even… https://t.co/SId1D5oBot" +06/22/2018,Comedians,@WhitneyCummings,Please sit in the front row. https://t.co/9f9dzEN6EC +06/22/2018,Comedians,@WhitneyCummings,Add to cart. https://t.co/TIglY89rQ1 +06/22/2018,Comedians,@WhitneyCummings,@dogtalesrescue hey I am doing shows there this weekend and would love to visit-possible? +06/22/2018,Comedians,@WhitneyCummings,@SarahKSilverman Is he from Gilead? +06/22/2018,Comedians,@WhitneyCummings,"Not gonna lie, I was a bit surprised to find out Melania shops at Zara. I'm a bit annoyed we have something in common." +06/22/2018,Comedians,@WhitneyCummings,I think the weirdest part of this jacket saga is that Melania was implying that at one point she did care? +06/21/2018,Comedians,@WhitneyCummings,Is this a joke? I literally can’t tell anymore. https://t.co/nOuPa1ufq6 +06/21/2018,Comedians,@WhitneyCummings,"If you're coming to Ontario shows this weekend, I will sign books if you bring them. I'll be there Friday, Saturday… https://t.co/fkkFrrqs5Q" +06/21/2018,Comedians,@WhitneyCummings,"There's no shortage of things we all need to read and watch, but this is worth the time. Take care of your body, be… https://t.co/SptEFFaIrV" +06/21/2018,Comedians,@WhitneyCummings,"I mean, I don't know why I'm even shocked anymore. Of course a pussy grabber would also be a baby snatcher." +06/21/2018,Comedians,@WhitneyCummings,"If you me thinking toddlers and parents should stay together makes me a “snowflake”, then... https://t.co/Tk7nNqeWfg" +06/20/2018,Comedians,@WhitneyCummings,"I may need to leave the internet. +https://t.co/i1OoTTjj6I" +06/20/2018,Comedians,@WhitneyCummings,For breaking news watch the Handmaids Tale https://t.co/rRfqMcqYA3 +06/20/2018,Comedians,@WhitneyCummings,Please call please call https://t.co/DATskZnvBz +06/20/2018,Comedians,@WhitneyCummings,👏🙌🏼 @KamalaHarris https://t.co/5IrlQqSlFo +06/20/2018,Comedians,@WhitneyCummings,I tend not to retweet too much because I assume anyone who follows me already knows this is sickening but what the… https://t.co/4B1UHMAJUa +06/20/2018,Comedians,@WhitneyCummings,Child actors have parents on set at all times and can only work in 8 hour increments. At least have the decency to… https://t.co/oFYM0rzSsm +06/19/2018,Comedians,@WhitneyCummings,Unconscionable. https://t.co/l5CLH5GksT +06/19/2018,Comedians,@WhitneyCummings,Separating children from their parents is traumatizing whether they’re put in cages or not. So yes the cages should… https://t.co/e5heuqYdAD +06/18/2018,Comedians,@WhitneyCummings,"Who is coming to Ontario, CA shows this weekend? https://t.co/QNmhZrOr1M" +06/17/2018,Comedians,@WhitneyCummings,@KathiaVC Hahahahahhaah +06/17/2018,Comedians,@WhitneyCummings,RT @joerogan: ‘America is better than this’: What a doctor saw in a Texas shelter for migrant children https://t.co/4fqHNpcHIy +06/16/2018,Comedians,@WhitneyCummings,"Next weekend I’ll be doing and hour of new material in Ontario - an hour from LA. Come for the comedy, stay for the… https://t.co/T0WvsTIo1q" +06/16/2018,Comedians,@WhitneyCummings,@kayeezus_ Got it now delete +06/16/2018,Comedians,@WhitneyCummings,@kayeezus_ Send me your address +06/15/2018,Comedians,@WhitneyCummings,"I’ll be performing in San Jose in August - all new material, all same weird dynamic of telling my secrets to strang… https://t.co/jwLlRr9dTt" +06/15/2018,Comedians,@WhitneyCummings,IHOB? Whoever came up with this new name please STOB making decisions +06/15/2018,Comedians,@WhitneyCummings,So we are just Gilead now? https://t.co/KgDr8shHG0 +06/15/2018,Comedians,@WhitneyCummings,It’s back up on digital 7/3! Right now it’s on planes 👋🏻 https://t.co/fbxVF2vXxU +06/15/2018,Comedians,@WhitneyCummings,@tiffanyredford @amazon @iTunes It’s back up on 7/3! It’s on planes right now! +06/14/2018,Comedians,@WhitneyCummings,@SebastianComedy Is that your house? +06/14/2018,Comedians,@WhitneyCummings,San Diego shows are sold out. Thank you my lovers. I will be down there again in September for the Kaboo festival a… https://t.co/Uu3we3RL3s +06/14/2018,Comedians,@WhitneyCummings,Just added shows in SAN JOSE the second week of August. who is coming? tix here. https://t.co/TIqO1siVAz +06/14/2018,Comedians,@WhitneyCummings,"WAIT. Did everyone but me know that Handmaids Tale was a MOVIE in 1990? +https://t.co/eQUgA7Ff8A" +06/14/2018,Comedians,@WhitneyCummings,New Handmaids Tale = me crying alone in my sports bra. This is all your fault @maxminghella https://t.co/1HQiMzk3Jl +06/13/2018,Comedians,@WhitneyCummings,Should we just start calling Ivanka Trump Mrs. Waterford? (IF YOU GET THIS YOU GET ME) +06/13/2018,Comedians,@WhitneyCummings,My “daily mix” on Spotify is really holding up a mirror I’d rather not look in +06/13/2018,Comedians,@WhitneyCummings,I never thought the day would come where I liked Delta. @nealbrennan https://t.co/qL1cZpNIEx +06/12/2018,Comedians,@WhitneyCummings,I’m performing @KAABOODelMar on SAT SEPT 15! Single and three-day passes are available at https://t.co/1h79u7PaEv… https://t.co/2bMFnJap4s +06/12/2018,Comedians,@WhitneyCummings,My bar for sanity has gotten so low I actually thought Dennis Rodman was making some sense. +06/11/2018,Comedians,@WhitneyCummings,The Trump administration just dropped protections for domestic violence victims. I would give anything for this to have surprised me. +06/11/2018,Comedians,@WhitneyCummings,"Come see me and my pals do some LOLs in Pasadena, CA June 27. https://t.co/lTFpda44tW https://t.co/k5nbZFEa3m" +06/11/2018,Comedians,@WhitneyCummings,"Per usual, I'm sorry about something. The Female Brain is now on planes, so not on iTunes and Amazon, but it will b… https://t.co/OtepktKp87" +06/11/2018,Comedians,@WhitneyCummings,The Parkland students singing Seasons Of Love just wrecked me so hard-goodbye forever dry eyes +06/11/2018,Comedians,@WhitneyCummings,"I can't with this. +https://t.co/4dIrb2znCh" +06/10/2018,Comedians,@WhitneyCummings,"Delta, in the past we’ve certainly had our differences, but now that you’re showing The Female Brain, I’ll forgive… https://t.co/7tAiTq6zeE" +06/10/2018,Comedians,@WhitneyCummings,@err_bear8 I love this! +06/09/2018,Comedians,@WhitneyCummings,When is United just going to admit that it’s Southwest? +06/09/2018,Comedians,@WhitneyCummings,Snippets of it are on my Instagram story 👍🏼 https://t.co/GQk4ExlIEW +06/08/2018,Comedians,@WhitneyCummings,Where did we land on muting people’s instagrams? Can we do that now? Need to know because it’s ruining some of my friendships thanks! +06/08/2018,Comedians,@WhitneyCummings,"PASADENA, CA. I'll be working on New Material with some pals this Sunday at the Ice House at 9pm. Come, let's navig… https://t.co/RDR9aaxeMl" +06/08/2018,Comedians,@WhitneyCummings,This is important. https://t.co/cv01WedUlc +06/07/2018,Comedians,@WhitneyCummings,Please consider signing this 🦄 https://t.co/usXRhLxVqI +06/07/2018,Comedians,@WhitneyCummings,Well at least I got this pal out of that whole mess. @sarahchalke https://t.co/5ITvW5C5F3 +06/07/2018,Comedians,@WhitneyCummings,@marisamode YES I WILL! CAN'T WAIT! +06/06/2018,Comedians,@WhitneyCummings,"San Diego, I'll be performing in you in two weekends, so come, let's be sunburnt and laugh together. Tix here https://t.co/aUiddxCD29" +06/06/2018,Comedians,@WhitneyCummings,@inthehenhouse @Variety No women are available they all have shows! +06/05/2018,Comedians,@WhitneyCummings,"That said, all man-babies are welcome at my shows! https://t.co/0bJbzLdHpm" +06/05/2018,Comedians,@WhitneyCummings,Don’t panic everyone. You can still find women in swimsuits on instagram whenever you want. https://t.co/aacRFldpgt +06/04/2018,Comedians,@WhitneyCummings,Every day on Facebook https://t.co/W9HCO3veql +06/03/2018,Comedians,@WhitneyCummings,Should we just start calling Melania OfDonald? +06/03/2018,Comedians,@WhitneyCummings,Weddings are super fun if you love hearing people talk about what time their flight got in +06/03/2018,Comedians,@WhitneyCummings,@Shteyngart I’m opening a competitor across the street called Beauty and the Yeast +06/03/2018,Comedians,@WhitneyCummings,@NikkiGlaser It’s the end of us +06/03/2018,Comedians,@WhitneyCummings,I have a feeling “active now” on instagram is going to ruin a couple relationships +06/03/2018,Comedians,@WhitneyCummings,What happened to stores having things? https://t.co/Oc8t6jqAIG +06/03/2018,Comedians,@WhitneyCummings,@msmashaarielle @BNBuzz @amazonprimenow Sorry! +06/02/2018,Comedians,@WhitneyCummings,This is the only way I can get through the Handmaids Tale without a complete emotional meltdown https://t.co/XsqJtfMdMI +06/02/2018,Comedians,@WhitneyCummings,I really feel like I cracked Instagram Live. https://t.co/kiX77y9yo1 +06/02/2018,Comedians,@WhitneyCummings,Why does throwing phones at walls feel so good? +06/01/2018,Comedians,@WhitneyCummings,RT @lcmoser: The thing that’s most fascinating about Samantha Bee is that 4600 people died in Puerto Rico. +06/01/2018,Comedians,@WhitneyCummings,@SebastianComedy This is off brand to say the least +05/31/2018,Comedians,@WhitneyCummings,@lizastrof Lol +05/30/2018,Comedians,@WhitneyCummings,"RT @Dictionarycom: The name Ambien is thought to come from the word ""ambient"" or similar words in French. Ambient does not mean ""prone to m…" +05/29/2018,Comedians,@WhitneyCummings,I love you Sara. https://t.co/77tHCzb29H +05/29/2018,Comedians,@WhitneyCummings,@MsDafneRuiz Yes! I love this! +05/28/2018,Comedians,@WhitneyCummings,thank you to everyone Tweeting me that they are watching The Female Brain today! Weird way to celebrate Memorial da… https://t.co/1lUCIv5kfm +05/28/2018,Comedians,@WhitneyCummings,I don’t program names into my phone because I like the thrill of getting texts like “I miss you” from some random number +05/28/2018,Comedians,@WhitneyCummings,Be nice to yourself! Being mean to yourself is so 90s. https://t.co/hVs83QTLe3 +05/26/2018,Comedians,@WhitneyCummings,@mke2112 Genius +05/26/2018,Comedians,@WhitneyCummings,AND he misspells my name?! https://t.co/6WoqSE8Zyv +05/26/2018,Comedians,@WhitneyCummings,🔥first date shirt https://t.co/AQQkoDsUzz +05/26/2018,Comedians,@WhitneyCummings,This is the greatest compliment I could ever get. https://t.co/XrrlDDG7uV +05/25/2018,Comedians,@WhitneyCummings,I just voted by mail and it’s very very easy so there is no excuse not to vote my lovers. Democracy is sexy 😛 https://t.co/7OGVAjv2mx +05/25/2018,Comedians,@WhitneyCummings,"OXNARD, CA. next weekend i'll be working on my new hour in your great city. also where is OXNARD? https://t.co/sKi0jaPbSU" +05/24/2018,Comedians,@WhitneyCummings,New Handmaids Tale! @maxminghella you did this! https://t.co/NehuRSCtB0 +05/23/2018,Comedians,@WhitneyCummings,I’m working on my new hour of stand up in NYC in July thank the good lord https://t.co/QNmhZrOr1M https://t.co/Ms3Xfb8YIE +05/23/2018,Comedians,@WhitneyCummings,If you had told me that the little toddlerl who I loved on Full House when I was ten would be charging me 200 dolla… https://t.co/rJpZkW1D2O +05/22/2018,Comedians,@WhitneyCummings,👋 https://t.co/7PW88A2PGL +05/20/2018,Comedians,@WhitneyCummings,@err_bear8 I LOVE YOU! what an honor to meet you. +05/19/2018,Comedians,@WhitneyCummings,Pre show ritual: hurt myself. https://t.co/ufLGKCHuHy +05/19/2018,Comedians,@WhitneyCummings,@nealbrennan You can’t be stopped! +05/18/2018,Comedians,@WhitneyCummings,A map of the shootings since Sandy Hook. Stay angry. https://t.co/3seFnV82IZ +05/18/2018,Comedians,@WhitneyCummings,"If you’re going to troll me about my feet, please just do me a favor and unfollow me. My feet are a size ten and ha… https://t.co/H3ZglndZm4" +05/17/2018,Comedians,@WhitneyCummings,I was just given this fruit plate. Is this sexual harassment? https://t.co/dgOfepECfL +05/17/2018,Comedians,@WhitneyCummings,@bluechuck49 To attack women’s biology and decision to have kids are not is not a left v right issue-it’s a human i… https://t.co/c93mrheBPn +05/17/2018,Comedians,@WhitneyCummings,@err_bear8 Come up after the show! +05/17/2018,Comedians,@WhitneyCummings,@doctorcherokee She apologized for that. focus on the other 30 years of her career as well. If people don’t want to… https://t.co/cYwD4QKn7H +05/17/2018,Comedians,@WhitneyCummings,@JoshRadnor @benleemusic @Qantas It’s so fancy! +05/17/2018,Comedians,@WhitneyCummings,@MelissaMermaid @RoseanneOnABC I was the liberal voice on the show +05/16/2018,Comedians,@WhitneyCummings,Regarding Laurel and Yanny: I hear the dress is blue +05/16/2018,Comedians,@WhitneyCummings,@johndfountain @PBImprov Yay +05/16/2018,Comedians,@WhitneyCummings,Be careful how fun you come off on instagram—you’re really setting yourself up for being underwhelming in person 👍🏼 +05/15/2018,Comedians,@WhitneyCummings,@kevingchristy Nightmare +05/15/2018,Comedians,@WhitneyCummings,I will sign books if y’all bring them to shows. See what cities I’m coming to on my website obvs. Who is coming to… https://t.co/YeOPTYcnhq +05/15/2018,Comedians,@WhitneyCummings,If you get this joke I love you. https://t.co/QEiaS7QI72 +05/14/2018,Comedians,@WhitneyCummings,@betsy7b golden goose +05/13/2018,Comedians,@WhitneyCummings,I can’t wait for the day that my kid wishes me a happy Mother’s Day via text after I spent tens of thousands of dollars on their education. +05/13/2018,Comedians,@WhitneyCummings,It’s nice to see so many of my friends posting how much they love their mom when all they do with me is complain about her 👍🏼 +05/11/2018,Comedians,@WhitneyCummings,"@MsJuneDiane I just spent some time on that guys Twitter page. His bio is just ""Seriously?!"" So. You won that round." +05/11/2018,Comedians,@WhitneyCummings,"Feminism just means women want suuuuper basic things like respect, safety, and to earn the same as men for the same… https://t.co/fktWqX7jd2" +05/11/2018,Comedians,@WhitneyCummings,"Fans freaking out that their show gets cancelled, but won’t watch the show when it airs, which is what makes it cancelled 🙄" +05/10/2018,Comedians,@WhitneyCummings,You can’t fart on a plane and have bad breath. You gotta pick one. +05/09/2018,Comedians,@WhitneyCummings,I feel like we are gonna reach a point where you text someone “how are you?” and they’ll just respond “link in bio” +05/09/2018,Comedians,@WhitneyCummings,Whenever people on twitter troll comedians I just want to yell at them “they’re giving you jokes for free!” What ot… https://t.co/e2FFEk0PHa +05/09/2018,Comedians,@WhitneyCummings,@nealbrennan God damn it now i have to go read whatever that is +05/09/2018,Comedians,@WhitneyCummings,@Mychasiw The late shows yes! +05/09/2018,Comedians,@WhitneyCummings,@FeldyNBCS you should be on list +05/09/2018,Comedians,@WhitneyCummings,@deandelray @CobbsComedyClub DUDE THANK YOU! I'LL BE WITH THE ONE AND ONLY @kevingchristy +05/09/2018,Comedians,@WhitneyCummings,"Let's stop eating palm oil? +https://t.co/cZcQ1eiyU5" +05/09/2018,Comedians,@WhitneyCummings,@FeldyNBCS Is it sold out? I’ll put your name on the list +05/09/2018,Comedians,@WhitneyCummings,@sirgregmoore iTunes! +05/09/2018,Comedians,@WhitneyCummings,Twitter making me angry about politics makes me miss the good ole days when twitter made me angry about people post… https://t.co/Gh2oUrlElw +05/08/2018,Comedians,@WhitneyCummings,Arizona. I’ll be running new material in your hot as hell state this summer. Tix avail now if you’re into comedy in… https://t.co/ogTp4xD2a4 +05/08/2018,Comedians,@WhitneyCummings,@fadedcalic0jack What! +05/08/2018,Comedians,@WhitneyCummings,"To the guy who just tweeted at me “I’m so sick of feminism.” Copy that, but think of feminism as women trying to ma… https://t.co/QVHxbreHEe" +05/07/2018,Comedians,@WhitneyCummings,Melania’s campaign for kids is called “Be Best.” Does she mean “Be THE Best?” Or is she just approaching grammar th… https://t.co/VtPYoF2Uhz +05/07/2018,Comedians,@WhitneyCummings,@shannonrwatts @Alyssa_Milano @NRA Sickening. +05/06/2018,Comedians,@WhitneyCummings,Trumps catch phrase used to be “you’re fired!” Now it’s “please don’t quit” +05/06/2018,Comedians,@WhitneyCummings,Anyone else feeling weirdly cat called by Instagram filters recently? https://t.co/5BixWbPqaf +05/05/2018,Comedians,@WhitneyCummings,"San Fran shows are next weekend! Let’s LOL, shall we? https://t.co/1pCBnHZHlO" +05/05/2018,Comedians,@WhitneyCummings,@kevingchristy You two got a lot of posts out of this face time sesh-congrats! +05/05/2018,Comedians,@WhitneyCummings,@Khushbu_Juneja What is the delay?! Let me know I you have a problem and I’ll send you one - dm your address +05/05/2018,Comedians,@WhitneyCummings,"I finished it in about 3,700 sittings🙋🏻‍♀️ https://t.co/UjbRBcJIud" +05/05/2018,Comedians,@WhitneyCummings,@DJWOLFD reming me closer to the date +05/05/2018,Comedians,@WhitneyCummings,@nealbrennan wasn't the pint that the audience is kind of the reviewer? +05/05/2018,Comedians,@WhitneyCummings,Is anyone else having insta accounts in their feed that you never chose to follow? There’s no way I followed this m… https://t.co/R04UjixshX +05/05/2018,Comedians,@WhitneyCummings,"The Kentucky Derby is terrible. This is a day that always hurts my heart. +https://t.co/gPYM0aoc85" +05/05/2018,Comedians,@WhitneyCummings,"I know everyone is upset DJ Khaled won’t go down on his wife, but i feel like that isn’t close to the biggest disap… https://t.co/s8cbePiCq0" +05/04/2018,Comedians,@WhitneyCummings,@tonya_nance thank u +05/04/2018,Comedians,@WhitneyCummings,@juliebeann_ grinberg method +05/04/2018,Comedians,@WhitneyCummings,"To the guy who was texting for most of the Bruce Springsteen Broadway show and ruined it for many people, including… https://t.co/yjsXzPHq7q" +05/04/2018,Comedians,@WhitneyCummings,@KateUpton @RuPaulsDragRace I am jealous +05/04/2018,Comedians,@WhitneyCummings,@brizmullen Yay! +05/03/2018,Comedians,@WhitneyCummings,@nealbrennan I’m dying to know why you thought of this +05/02/2018,Comedians,@WhitneyCummings,Why does Trumps doctor look like guy who puts up tents at Lollapalooza https://t.co/auc42vy1u2 +05/02/2018,Comedians,@WhitneyCummings,"I feel like the best way to get even with Kanye is to say “sit down, be humble.”" +05/02/2018,Comedians,@WhitneyCummings,"Kanye says “the world is my therapist."" No buddy, the world is why you get a therapist." +05/01/2018,Comedians,@WhitneyCummings,Kanye's meltdown is making me miss Britney's meltdown +05/01/2018,Comedians,@WhitneyCummings,"slavery wasn't a choice, but not buying Kanye's music anymore is?" +05/01/2018,Comedians,@WhitneyCummings,"I THINK this is a compliment. If you didn’t mean for it to be, thanks anyway! https://t.co/edtU4R3c2D" +05/01/2018,Comedians,@WhitneyCummings,"I realize I am a child but this was in my horoscope and it made me laugh: ""Uranus is usually explosive""" +04/30/2018,Comedians,@WhitneyCummings,"if conservatives want liberals to stop making fun of them so much, maybe stop doing so many ridiculous things that can be made fun of?" +04/30/2018,Comedians,@WhitneyCummings,"maybe if the journalists who were so offended by @michelleisawolf did their jobs as well as she did hers, people wo… https://t.co/PPGojALfkV" +04/30/2018,Comedians,@WhitneyCummings,I wish the right was half as outraged about school shootings as they are about Michelles jokes. +04/30/2018,Comedians,@WhitneyCummings,"who is coming to the San Fran shows and what should I do during the day while I'm there? +https://t.co/v93ZAWoAvR https://t.co/9tF7KxHWup" +04/30/2018,Comedians,@WhitneyCummings,"I think conservatives are so mad at Michelle Wolf because they realized that when liberals play their insult game,… https://t.co/2KzPSqKhFW" +04/30/2018,Comedians,@WhitneyCummings,It's so funny to me to picture Dennis Miller trying to write jokes about Michelle Wolf. +04/30/2018,Comedians,@WhitneyCummings,"I think conservatives are so mad at Michelle Wolf because they realized that when liberals play your insult game, w… https://t.co/srlrNl7yrQ" +04/30/2018,Comedians,@WhitneyCummings,"I know other people have mentioned this already, but in case you want to be mad at Michelle Wolf about talking abou… https://t.co/PQRVs1YInu" +04/30/2018,Comedians,@WhitneyCummings,Feminism isn't about walking on eggshells around other women that are doing silly things and giving them a free pas… https://t.co/9mHwCffvbT +04/30/2018,Comedians,@WhitneyCummings,Of course conservatives are upset about Michelle Wolf. They haven’t heard the truth in so long they forgot how rough it can be +04/29/2018,Comedians,@WhitneyCummings,Dragon Energy sounds like a shitty caffeine drink I would have paired with Popov vodka when I was 20 +04/29/2018,Comedians,@WhitneyCummings,@b_raeholla Yay! +04/29/2018,Comedians,@WhitneyCummings,I like you. https://t.co/vLQgJATDCr +04/29/2018,Comedians,@WhitneyCummings,@andrew_harmon Send me that video! +06/19/2018,Comedians,@iamsambee,RT @FullFrontalSamB: A quick refresher. https://t.co/vo2TT9xiz6 +05/31/2018,Comedians,@iamsambee,I would like to sincerely apologize to Ivanka Trump and to my viewers for using an expletive on my show to describe… https://t.co/bwphm63ZAb +05/26/2018,Comedians,@iamsambee,RT @AllanaHarkin: .@FullFrontalSamB has been here for 7 hours waiting for the results. EXCITED!!! #repealthe8th #irelandreferendum #ta http… +05/25/2018,Comedians,@iamsambee,RT @FullFrontalSamB: Get your official Sam/Kim peace summit coin! It's definitely going to happen. https://t.co/fPALCv9KgK +05/23/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: And a fuck ton of women who will fight you. +https://t.co/fMx95ORTT9" +05/09/2018,Comedians,@iamsambee,"@SebGorka Aw, I thought we were friends 😥 https://t.co/P4qNZj2C5M" +05/01/2018,Comedians,@iamsambee,"When my BFF @davidduchovny told me he was writing a book about a smart, funny woman living in New York City I assum… https://t.co/vButUaao5R" +04/30/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: See @michelleisawolf, this is how you tell a non-offensive joke that everyone likes. https://t.co/JCQ3ii1h7H" +04/16/2018,Comedians,@iamsambee,RT @FullFrontalSamB: TONIGHT ON HANNITY: Are the endangered rhinos at the zoo TOO horny? +04/16/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: ""Jesus is my co-counsel."" https://t.co/coYCkk9aMv" +04/10/2018,Comedians,@iamsambee,RT @FullFrontalSamB: I don’t take normal #NationalLibraryWeek photos... https://t.co/ZFvtGQ8erT +03/29/2018,Comedians,@iamsambee,RT @FullFrontalSamB: There are many ways to help Puerto Rico. Buying a t-shirt from https://t.co/Z97dKW4Amp or moving your t-shirt producti… +03/28/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Thanks! We're pleased, too! #GreatAmericanPuertoRico https://t.co/z82w59N47t" +03/28/2018,Comedians,@iamsambee,My husband @jonesinforjason is a G-D force of nature and the season finale of @DetourTBS is 🔥 Tonight at 10:30 on @TBSnetwork. +03/24/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: We’re here and we have signs, chargers and love. #marchforourlives #neveragain #WeCallBS https://t.co/QweAQ1DpUq" +03/07/2018,Comedians,@iamsambee,Tonight’s @DetourTBS is in no way inspired by my actual marriage to @jonesinforjason. I hope. 10:30/9:30c on @TBSNetwork #getsome +02/28/2018,Comedians,@iamsambee,RT @FullFrontalSamB: When you hear Hope Hicks is resigning after testifying for just 8 hours. https://t.co/8POqm0Hzag +02/26/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 🤔 https://t.co/ZNU9b7s73B +02/13/2018,Comedians,@iamsambee,"Tonight on @DetourTBS @ToddPalinUSA fights @jonesinforjason and it wasn’t because of something I said on @FullFrontalSamB! +10:30 on @tbs" +02/12/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Dear @realdonaldtrump, hate to interrupt you while you're planning your big parade, but wanted to update you on the po…" +02/12/2018,Comedians,@iamsambee,RT @FullFrontalSamB: We're shooting a special in #PuertoRico and this happened. Not sure if there are enough paper towels to fix it. #black… +01/30/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 1. Denial 2. Guilt 3. Anger 4. Depression 5. Acceptance https://t.co/CH3t5z2WAs +01/24/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: New season of #TheDetour starts TONIGHT, starring the amazing @NatalieZea and Sam’s babysitter @jonesinforjason! Tune…" +01/15/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 1) You would have called for him to be fired. 2) You wouldn't have rented an apartment to him. 3) You call the people… +01/15/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Three months ago, you walked out of an event in disgust because of a non-violent protest by black athletes. +https://t.…" +01/10/2018,Comedians,@iamsambee,Emissaries of peace @michaelsrubens @AllanaHarkin @ashleyn1cole @amy_hoggart Don’t forget to bring me back souvenirs! #apologyrace +01/10/2018,Comedians,@iamsambee,For 2 weeks we’ll go anywhere an apology is needed. Hint: it’s a lot of places #apologyrace https://t.co/JURMM961Cz +12/15/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Hey @PressSec were so excited about you and @AprilDRyan's pie conversation we wanted to share our favorite recipe! htt… +12/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Office cake is how we self care. Thanks @SenGillibrand! https://t.co/EoELAltzvk +12/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: May this tweet be @SenGillibrand's superhero origin story and ignite her 2020 campaign to replace your sexist ass. 🙏 h… +12/01/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Oh we are saying Merry Christmas now! https://t.co/JMS02GU16N +11/30/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We know. https://t.co/DG0qQxmp55 +11/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Our friend @JakeTapper is hosting an auction for the troops! Lots of pretty good items and one just absolutely excepti… +10/12/2017,Comedians,@iamsambee,RT @AllanaHarkin: Lit. @FullFrontalSamB https://t.co/lR7Q0iVe3r +10/08/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: “...And also because the cheerleaders made me feel wrong in my bathing suit area.” +https://t.co/ck1iAJ2amT" +10/03/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Republicans: Kneeling for the National Anthem is offensive. +Trump: What if I throw paper towels at hurricane survivor…" +09/29/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Safe travels, Secretary Price! +https://t.co/z2BIkKByo5" +09/29/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We've got to get #BigWater out of politics. https://t.co/rk7KKZoO97 +09/29/2017,Comedians,@iamsambee,@StephenAtHome @nickkroll This photo brought to you by Sun-In ™ and my grandma’s Liz Claiborne separates. #PuberMe… https://t.co/GxJPSL1VFv +09/27/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Lock her up. +https://t.co/MRMah4ibyt" +09/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Trump to Puerto Rico: See you next Tuesday https://t.co/pc7dLNbw4R +09/25/2017,Comedians,@iamsambee,"Everybody watch @TheOpposition tonight at 11:30 on Comedy Central, featuring my Mortal Enemy @jordanklepper" +09/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Just making sure we’ve got this straight. https://t.co/2Xs9eUQJMs +09/24/2017,Comedians,@iamsambee,"RT @BlitznBeans: * New Freedom of Speech Hours: + +Monday - Friday: 7pm - 7am + +Saturday and Sunday - CLOSED FOR GOLF + +(*does not apply to naz…" +09/22/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Wondering how you can help the people of Mexico and Puerto Rico? We were too, so we did some research. +https://t.co/YT…" +09/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We sent @AllanaHarkin and @MichaelsRubens to Netroots to find hope for 2018 and/or lean in to our misery. Produced by… +09/14/2017,Comedians,@iamsambee,RT @FullFrontalSamB: BREAKING: @missbreton's “Who Is Paying For The Wall” list has been updated. Please make a note. https://t.co/78mYaPtVvm +09/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Please stop circulating this image. It has been reported to Twitter and support has been contacted. https://t.co/nLuz4… +09/09/2017,Comedians,@iamsambee,@Travon AAAAAAHHHHH I LOVE IT! +09/06/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Savage @POTUS subtweet from @FLOTUS. https://t.co/rFSbC0G950 +08/18/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Leaving to spend more time with his pets. https://t.co/ClfrJXte8b +08/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Punching Nazis doesn't help. But you can put that energy somewhere that does. Feels just as good, we swear. +https://t.…" +08/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meet the Iraqi women who are queens of the land, bosses of alllll the shit, and whose fearlessness inspired us. Produc…" +08/04/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We went to the one place where Trump is universally beloved: Iraq. Produced by @RazanGhalayini_ #SamanthaBee https://… +08/03/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Sam went all the way to Iraq and met a Bernie Bro. Tune in tonight at 10:30/9:30c on TBS for more surprises from her t… +07/31/2017,Comedians,@iamsambee,RT @JMunozActor: Something's brewing....@FullFrontalSamB https://t.co/hobEzqVBY0 +07/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: .@Scaramucci, you forgot to delete this one. +https://t.co/w6ZWv57MeP" +07/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: After consultation with our staff, here is our current statement regarding @POTUS's transgender service tweets. ""FUCK…" +07/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meanwhile, at Full Frontal... https://t.co/qyDYmfM831" +07/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: “Sean Spicer crawled to freedom through five hundred yards of shit smelling foulness I can’t even imagine…” https://t.… +07/17/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Congratulations on Doctor Who, ladies, but stay vigilant. We’ve got a lot more work to do. https://t.co/eWALnfoJ8o" +07/16/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Hey @Delta, heard you ruined some poor woman's life. #MoreLegroomForNanCoulson +https://t.co/1NxkVeSFhD" +07/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Congrats, Beyoncé! Three gorgeous babies! 🙏🏽❤️👨🏽👩🏽👧🏽👶🏾👶🏾👨🏼 https://t.co/7EUiwwa1BP" +07/14/2017,Comedians,@iamsambee,I'll be chatting with my good friend @katiecouric on July 22nd LIVE in Central Park at #OZYFEST - get your tickets… https://t.co/QmcsnGk3QS +07/13/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Best day at work ever! Thanks to our team, our fans, and all the #NastyWomen and Thundercunts, wherever you are. #Emmy…" +06/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: No @PressSec at this White House briefing?? What are we supposed to do with this puppet then? https://t.co/85XwbMRd9n +06/20/2017,Comedians,@iamsambee,@AllanaHarkin @ashleyn1cole @michaelsrubens too late +06/20/2017,Comedians,@iamsambee,People you should definitely know--the BEST people @AllanaHarkin @ashleyn1cole @michaelsrubens https://t.co/5b5RcxpR8M +06/15/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: .@HannahAWright doesn’t normally reply to PR emails, but... https://t.co/0Up7rLrrvk" +06/02/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Thanks for all the new seasons, @POTUS and @ScottPruittOK! +https://t.co/7ail1hQL7i" +05/31/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Oh, hi @SenFranken! (Psst, new show tonight.) https://t.co/T1ygH2M4g2" +05/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""They may even call you a nasty woman."" Yasssss, @HillaryClinton. https://t.co/AFLBGeNGZs" +05/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Gianforte Campaign Statement (First Draft) https://t.co/f8pHrc7GBk +05/24/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""Can you please not post this on any social media? I don’t want my boss seeing.” - Pope Francis https://t.co/o4IKtD16Oj" +05/12/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: If you enjoyed the #NotTheWHCD, it’s because of @kevermantweets and @KimmieDisco. Show them some love! https://t.co/5R…" +05/12/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Florida: the surf, the sun, the sand, the fight for basic voting rights! #SamanthaBee https://t.co/KiaRBKhBI7" +05/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Tonight, we’re discussing Ivanka’s book. If you haven’t read it yet, don’t worry, we made you a guide. + +Download: http…" +04/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Trump’s almost 100 days in. Only @GeorgeTakei can express what we’re feeling. #NotTheWHCD https://t.co/6Og8a2F8Bx +04/24/2017,Comedians,@iamsambee,RT @FullFrontalSamB: When everyone has something to do on Saturday night but you. #NotTheWHCD https://t.co/7QvD1mNBHR +04/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: If you had a big bowl of chili for lunch and your memory’s a little fuzzy, here’s your friendly reminder that #NotTheW…" +04/21/2017,Comedians,@iamsambee,"My backstage ritual is ""looming over the tech crew."" #IWCTFF @Tribeca @IWC https://t.co/t64zXU5Kys" +04/19/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Resigning is a very funny response to being told to “Do your job.” https://t.co/9SBJTT3cDS +04/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Georgia! Don’t forget tomorrow’s special election. It’s either take one hour and vote or go to a town hall every week… +04/13/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: How Sean Spicer Should Quit: +9 Blaze-Of-Glory Ideas (That Have Nothing To Do With Hitler) https://t.co/uJmjSZmPpZ" +03/31/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: This conclusion to our original Rape Kits story was so good, we had to go full School House Rock on it. #SamanthaBee h…" +03/31/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Because nothing else has worked. https://t.co/VCyHZ7hKli +03/29/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@POTUS Fixed this tweet. https://t.co/vYvoufUr4B +03/27/2017,Comedians,@iamsambee,RT @AllanaHarkin: Happy #worldtheatreday @wecomefromaway! Long may your big jib draw! @iamsambee and I loved the show. photo: @mcoppola5/@G… +03/24/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Bye, Bill. #AHCA https://t.co/GGfVOpVob7" +03/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Delaying the health care vote today to try to figure out what a woman is. https://t.co/ezu5p4r40A +03/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Local journalism is failing and we need to save it! But what's in it for us? #SamanthaBee https://t.co/6iiejmZlZs +03/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: One of our staffers has been keeping an actual log of who's paying for Trump's wall. https://t.co/P1C6xW41vd +03/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@RachelFeltman We connected the whales. https://t.co/baZ6EVnt35 +03/15/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Sorry you're having trouble finding a new job, @PatMcCroryNC. Here, we wanted to help! https://t.co/jSSfugIHwN" +03/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Getting ready to spin those CBO numbers like... https://t.co/5FCN9dmlN5 +03/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: A new cornerstone of the conservative platform: media whiplash for all Americans! #SamanthaBee https://t.co/3IxtbPyRvp +03/09/2017,Comedians,@iamsambee,@meg_kelly16 We deeply apologize for offending you and @_that_kyle. We only learned of his condition today & have removed him from the piece +03/08/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: The Trump WH is so feminist, EVERY day is Day Without a Woman. https://t.co/rYZeYo04kn" +03/08/2017,Comedians,@iamsambee,Get some of #TheDetour TONIGHT at 10/9c. Watch in wonder as comedy BEAST @nataliezea shows us all how it's done. +02/28/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Fav if you're planning to shotgun Maalox through the whole thing. +https://t.co/NlSq6IfqBh" +02/28/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@VP Pence unveils his plan to be more likable than @JoeBiden in tonight's #JointSession. https://t.co/5T0UesGsyC http… +02/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@realDonaldTrump 🐔 +02/22/2017,Comedians,@iamsambee,"Climbing out of my panic bunker tonight to watch #TheDetour 2-ep season premiere at 10/9c on @TBSNetwork! +(Commercial free because eff it)" +02/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: We're on hiatus this week, but check out our Russia playlist on youtube! No reason in particular. https://t.co/9KQScaB…" +02/20/2017,Comedians,@iamsambee,"Doing a Q&A for #TheDetour @PaleyCenter Feb 21 at 6:30pm w/ @jonesinforjason & @nataliezea +(Like an ACA town hall but with *more* yelling)" +02/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@ScottPruittOK Congrats on your confirmation. They'll probably tell you this at orientation but just in case: climate… +02/17/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Did you know that handsome people can be bad, too? We've got just the Paul Ryan to prove it. https://t.co/wJGMMi1Bws" +02/16/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Watching this @POTUS presser. https://t.co/95Q9UOo5QJ +02/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Happy Valentine's Day, @POTUS! https://t.co/99dcuRbn2A" +02/14/2017,Comedians,@iamsambee,".@LindseyGrahamSC heyyyy, call me! https://t.co/VJ02WPijRo" +02/14/2017,Comedians,@iamsambee,RT @paleycenter: Hey NY! Come see @jonesinforjason @iamsambee & @nataliezea at the @DetourTBS premiere on 2/21! #TheDetour Tix: https://t.c… +02/14/2017,Comedians,@iamsambee,".@LindseyGrahamSC I have important info you need to hear! It's that I like you & think we should chat on the phone. (I'm serious, DM me)" +02/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Sending Trudeau to stand attractively next to Trump while speaking French is actually the closest thing Canada has to… +02/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: President Snowflake is feeling very unsafe in places where people are treated like people. #SamanthaBee https://t.co/P… +02/08/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We premiered one year ago today! Right before Sam was raptured into the current timeline. Working on a way to get back… +02/02/2017,Comedians,@iamsambee,@FullFrontalSamB All in on the #MuslimBan tonight. ALL THE FUCK IN. 10:30 on @TBSNetwork +02/01/2017,Comedians,@iamsambee,RT @FullFrontalSamB: LEAKED: The White House’s #BlackHistoryMonth Program Of Events https://t.co/qpQTeA9bg6 +01/29/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""You don't get to be the shining city on the hill by cowering in fear & putting your head in the sand..."" @philklay +h…" +01/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Are we done giving Trump a chance now? https://t.co/UpPBF2TAWT +01/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: A bunch of girls hurt Trump's feelings. #SamanthaBee https://t.co/1M3tKqUAXB +01/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We're still bringing you the hard-hitting reporting you've come to expect from a satire show. Tune in TONIGHT at 10:30… +01/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: National Park Service Temporarily Ordered To Stop Tweeting: Reactions From Wildlife https://t.co/iEfPHxW3Ry +01/22/2017,Comedians,@iamsambee,"RT @DetourTBS: Want to see what it's like to be stuck in a van with these guys for days on end? + +Binge Season 1 NOW, only on @Hulu: https:/…" +01/22/2017,Comedians,@iamsambee,RT @AllanaHarkin: @FullFrontalSamB represent! #WomensMarch https://t.co/PTPNVThkDE +01/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We're giving away 1000 Feminist shirts at the bus this morning. Come find us! #WomensMarchWashington https://t.co/fgsd… +01/20/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Noticed you had to use an old Obama inauguration photo for your banner, so we fixed it for you. https://t.co/qTkPCuGUY9" +01/20/2017,Comedians,@iamsambee,RT @FullFrontalSamB: You can watch this as many times as you need to get through today. https://t.co/rkv4Gi3DbT +01/20/2017,Comedians,@iamsambee,"How I'm feeling. +https://t.co/7RvJmbDzca via @youtube" +01/19/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Even if the sky rains blood in D.C. on Saturday it will be more fun than this. #TrumpInauguration +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Is it just us or does that ""USA"" firework look suspiciously like ""USR?"" #TrumpInauguration https://t.co/4zktBfYArv" +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: We love @MashaGessen for so many things, but chief among them is her calming way of reminding us we're fucked. #Samant…" +01/19/2017,Comedians,@iamsambee,RT @MarkForwardd: How great would it be if the Lincoln statue got up and left. #Inauguration +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meet Secretary of the Treasury and Swamp King, Steve Mnuchin. #SamanthaBee https://t.co/QulK72pr46" +01/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Good luck to Giuliani on his new cyber security role! #RudyGiuliani https://t.co/N7jBkQ1mLr +01/11/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Quote of the day: ""I've never walked into an office where so many people are screaming at their TVs."" - Breakfast cate…" +01/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Trump's Movie Blurbs +https://t.co/qblj0CYBh3" +12/16/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We hired the nation's top linguists to translate what Putin's dog was saying to Japanese journalists. https://t.co/AGx… +11/27/2016,Comedians,@iamsambee,Looking down the barrel of the next four years like https://t.co/BKlxXRHXlr +11/14/2016,Comedians,@iamsambee,We are all Lesley Stahl. https://t.co/fDgQMEdJRk +11/10/2016,Comedians,@iamsambee,"So proud to present tonight's post election @FullFrontalSamB. Watch to the end, it's worth it I promise." +11/08/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Full Frontal's official endorsement of the baddest bitch ever to run for president. #SamanthaBee https://t.co/4GAp3ca1… +11/02/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Trump says Russia isn't influencing our election, and so do these Russian trolls who are being paid to influence our e…" +11/01/2016,Comedians,@iamsambee,RT @katiecouric: Did you catch @FullFrontalSamB last night? @iamsambee joined #CouricPodcast & had even more insight on #Election2016 https… +11/01/2016,Comedians,@iamsambee,RT @FullFrontalSamB: It's not a conspiracy theory if it's true. #TrumpCantRead #SamanthaBee https://t.co/RShLm5Za2B +11/01/2016,Comedians,@iamsambee,"New @FullFrontalSamB starts now! I went to Russia and everything, just for you." +11/01/2016,Comedians,@iamsambee,RT @TheMattWilstein: All I've got to say is watch @FullFrontalSamB's Facebook Live broadcast at 9:30pm tonight: https://t.co/LRsr6QTabR #Tr… +10/21/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: The Clinton Campaign Can Chill With The Emails +https://t.co/O2deh7gP8T" +10/21/2016,Comedians,@iamsambee,RT @FullFrontalSamB: This came straight from our private fax line with Julian Assange. Information has not been authenticated. https://t.co… +10/19/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: And now, an extra special Real or Fake with two GOP women whose votes Donald Trump did not manage to grab by the pussy…" +10/19/2016,Comedians,@iamsambee,RT @AllanaHarkin: My #debate drinking game for tonight is to do a shot every time Trump says something factual because I need to feel refre… +10/10/2016,Comedians,@iamsambee,Post debate mood https://t.co/tn7pP9Wzjn +10/06/2016,Comedians,@iamsambee,New @FullFrontalSamB tonight at 10:30 on @TBSNetwork! Prepare thyself +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@GOP finally figured out how to set their time machine to the future. https://t.co/2W5nUK9cLB +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@GOP has got to do better at the cyber. #VPDebate https://t.co/2MfrdAeQZ8 +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Let us allow Pence to reintroduce himself. #VPdebate #VPdebate2016 https://t.co/ifMBqDJaCp +09/29/2016,Comedians,@iamsambee,RT @AllanaHarkin: Well hi there Wednesday! TONIGHT at 10:30pm on @TBSNetwork @iamsambee brings you her @FullFrontalSamB oh so special debat… +09/28/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We fact-checked and Full Frontal's Debate Special is in fact on tonight at 10:30! #SamanthaBee +09/27/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We found the epicenter of an upsetting new hearing loss epidemic. https://t.co/3OjCyIboJL +09/21/2016,Comedians,@iamsambee,Workin' hard on next Wednesday's show! https://t.co/5hwsFv2yzx +09/20/2016,Comedians,@iamsambee,@iamTannenbaum @DonaldJTrumpJr Oh. The tweet that broke my heart... +09/15/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We got an exclusive first look at Trump’s medical records. https://t.co/muLWfudwrC +09/13/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Look who got kicked out of the TN house. Don’t let the bathroom door hit you on the way out. https://t.co/ZxCOjm3qhW +09/13/2016,Comedians,@iamsambee,.@DrJillStein @HillaryClinton https://t.co/1Ci7hsfcKf +09/12/2016,Comedians,@iamsambee,"Quivering with excitement to get back on the air tomorrow. QUIVERING. +New episode of @FullFrontalSamB Monday at 10:30." +09/07/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Donald Trump saw ""Letters to Hillary"" on Tumblr. This is his response. https://t.co/H2JPubIghb https://t.co/shNSViGhwf" +08/01/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Our staff, chasing celebrities as always! https://t.co/79kPKCrxQl" +07/29/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@realDonaldTrump Congrats! https://t.co/eLATz0FgNA +07/27/2016,Comedians,@iamsambee,RT @FullFrontalSamB: What could the Congressional Women's Caucus do to achieve greater hotness? #TrumpAMA +07/27/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: We couldn’t get into the #TrumpAMA, so here are some of the questions we wished we could have asked. Feel free to shar…" +07/27/2016,Comedians,@iamsambee,@asvokos @CoryBooker we know how to play this game +07/26/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Hello from the first night of #DemsInPhilly, or should we say Здравствуйте to our Russian friends reading this. +https:…" +07/26/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Congrats to Hillary on selecting Tim Kaine as Joe Biden! +https://t.co/F4jd3clMad" +07/26/2016,Comedians,@iamsambee,"Tonight's @FullFrontalSamB: feast your eyes on @AllanaHarkin @ashleyn1cole and @yrnameer, doing the lord's work on the floor of the RNC" +07/21/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Final night of #RNCinCLE! Looks like they’re bringing it home with a bang! https://t.co/gzkxFaZMyL +07/20/2016,Comedians,@iamsambee,Le gasp! https://t.co/Tc064I4dnB +07/19/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We got our hands on the speaker schedule for tonight at the #RNCinCLE. https://t.co/Xoqv3yzMKt +07/15/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Breaking the mattress of America. https://t.co/M4Cq62YS2c +07/13/2016,Comedians,@iamsambee,RT @tonygoldwyn: Thx @iamsambee for letting me into the sandbox. Chk out a special @FullFrontalSamB next Wed at 10:30 on @TBSNetwork https:… +06/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We conclude with an act of kindness and compassion more powerful than any high-capacity assault rifle. #SamanthaBee ht… +06/21/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: How weird. I sent my thoughts and prayers to the gun control bills today, and they failed. Guess that shit doesn't rea…" +06/09/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Other Female Firsts Covered Like Hillary’s Historic Nomination https://t.co/qzQxnplwp9 https://t.co/W6MlroPhui +05/26/2016,Comedians,@iamsambee,"RT @iTunesTV: Created by @iamsambee & Jason Jones, @DetourTBS is our hilarious #EditorsChoice. +https://t.co/XaIRy4lVZr https://t.co/wDX9fjQ…" +05/25/2016,Comedians,@iamsambee,"Extraordinary human being @AllanaHarkin makes a whole bunch of new friends on @FullFrontalSamB #letfreedomblow +https://t.co/gEqMBylvP8" +05/24/2016,Comedians,@iamsambee,ICYMI let the full episode of last night's @FullFrontalSamB wrap you in its warm embrace https://t.co/7v8vACpYvE +05/24/2016,Comedians,@iamsambee,@BrokenFiction YES +05/24/2016,Comedians,@iamsambee,I'm doing great thanks for asking https://t.co/f93MAcdAIg +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Our show got bumped to after Conan on the East Coast. It's fine. She's coping. https://t.co/xlMOKvwIS3 +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: It wasn’t us. https://t.co/C7ulRjf6BU +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We will hunt down those responsible. #SamanthaBee https://t.co/QzzP0ihsuv +05/24/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: East Coast, our new episode is on after Conan. Trump tried to stop us from airing but his little hands were no match f…" +05/16/2016,Comedians,@iamsambee,@amyschumer I made you something! https://t.co/9Ju5awhDiR +05/09/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Full Frontal airs tonight at 10/9c AND 10:30/9:30c this week only! Set your eye clocks accordingly! #SamanthaBee https… +05/06/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: The Canadian Red Cross has a page to help evacuees from the terrible #FortMcMurray wildfire. RT, donate if you can: ht…" +05/03/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Make Your Own Lyin' Ted! We provide the Ted, YOU provide the background: https://t.co/QpSvLUJVvt #WhereIsLyinTed https…" +05/03/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Pic from morning press conference in Indiana. Can't for the life of me figure out what's on the sign behind Carly. htt… +04/19/2016,Comedians,@iamsambee,Local satirist earnestly performs civic duty #NYPrimary https://t.co/bGzN4trjyQ +04/12/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Yachts, mansions, diapers—just some of the luxury lifestyle goods out of reach for low-income parents. #SamanthaBee +ht…" +04/04/2016,Comedians,@iamsambee,"The Detour sneak preview tonight @tbs featuring @jonesinforjason and his (preferred) second wife @nataliezea! +https://t.co/mLSyPGKl2Y" +03/16/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Ladies, it's very important that you #SmileForJoe. +https://t.co/hy6CBbLwdY https://t.co/Z8asKguNdv" +03/09/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Behavioral Difficulties +Please Stand By +#GOPDebate https://t.co/o11BDgQ6WN" +07/02/2018,Comedians,@chelseaperetti,"RT @Ocasio2018: I won a nearly impossible race with: + +- Not taking💰from corporate lobbyists +- Spending time with people that “experts” say…" +07/02/2018,Comedians,@chelseaperetti,@nytopinion even using his bs “elites” term is so dumb lol buck up nyt +07/02/2018,Comedians,@chelseaperetti,"RT @splcenter: Brett Talley: +*was graded “unqualified” by the ABA +*hadn’t ever argued a motion or tried a case +*had failed to disclose tha…" +07/02/2018,Comedians,@chelseaperetti,"RT @oldpicsarchive: Mae Jemison, the 1st black woman to fly in Space (1992). J https://t.co/cbR3tRWjDg" +07/02/2018,Comedians,@chelseaperetti,@nytopinion wrong pic? https://t.co/Kjke5VESF9 +07/02/2018,Comedians,@chelseaperetti,"RT @peterdaou: The normalization and validation continues. While CNN characterizes progressive values as fringe, the @nytimes says ""Mr. Tru…" +07/02/2018,Comedians,@chelseaperetti,love is so important https://t.co/Zggg7I2txx +07/02/2018,Comedians,@chelseaperetti,wow 😩😍😘u guys r too sweet https://t.co/pMTdxfJCOO +07/01/2018,Comedians,@chelseaperetti,RT @SenGillibrand: Take @realdonaldtrump at his word. He wants to “punish” women for exercising their reproductive freedom. He promised to… +07/01/2018,Comedians,@chelseaperetti,"RT @tedlieu: Dear @SecNielsen: You need to resign not just because you brazenly lied to the American people, but also because you are gross…" +07/01/2018,Comedians,@chelseaperetti,RT @RAICESTEXAS: Remember this: Children with representation are 5 times more likely to be successful in their case than children who go to… +06/30/2018,Comedians,@chelseaperetti,#FamiliesBelongTogether +06/30/2018,Comedians,@chelseaperetti,RT @lsarsour: NYC always shows up and shows out ♥️✊🏽♥️ #FamilesBelongTogetherMarch https://t.co/HzlZ5b4ChT +06/30/2018,Comedians,@chelseaperetti,@GovMikeHuckabee I bet you said this to someone in your family and they laughed so you got super excited to post it… https://t.co/2U09R8goj8 +06/30/2018,Comedians,@chelseaperetti,RT @tedlieu: House Republicans held an emergency hearing into the investigation of Hillary's emails. They did not hold a hearing on the tho… +06/30/2018,Comedians,@chelseaperetti,RT @fvmero: me commenting on @chelseaperetti’s Instagram photos like we’re friends https://t.co/VwdAWlSqRL +06/30/2018,Comedians,@chelseaperetti,@natica24 the audacity of nope +06/30/2018,Comedians,@chelseaperetti,"RT @TheAlanvargas: We deserve to be safe at school. +We deserve to listened to by our elected officials. +We deserve to be safe at a concert.…" +06/30/2018,Comedians,@chelseaperetti,Perfect photo of two asswipes https://t.co/S3mEYVJ9li +06/30/2018,Comedians,@chelseaperetti,RT @AyeshaASiddiqi: Simi Valley California https://t.co/SCcpAFjxSu +06/30/2018,Comedians,@chelseaperetti,"RT @AndyRichter: From Wikipedia: ""A curb stomp... is a form of assault in which a victim's mouth is forcefully placed on a curb and then st…" +06/30/2018,Comedians,@chelseaperetti,RT @abogada_laura: An attorney for ICE used info taken from their database and files to open lines of credit and get loans under the names… +06/30/2018,Comedians,@chelseaperetti,RT @missmayn: If I can’t go to Planned Parenthood for a routine pap smear without being screamed at and harassed by Christian protestors th… +06/30/2018,Comedians,@chelseaperetti,RT @lsarsour: Urgent - we need to find 160 Spanish speaking attorneys to go to the border ASAP. If you can go and/or if you have a network… +06/29/2018,Comedians,@chelseaperetti,@thepubhistorian @Brooklyn99FOX hi cutie! +06/29/2018,Comedians,@chelseaperetti,@WeaselShop @laurachese 😒nightmare for your students +06/29/2018,Comedians,@chelseaperetti,@maggiehutch14 @Taniel lol +06/29/2018,Comedians,@chelseaperetti,@bjaeger11 @SpeakerRyan lol +06/28/2018,Comedians,@chelseaperetti,RT @Alyssa_Milano: TRUMP SHOULD NOT BE ABLE TO CHOOSE A LIFETIME APPOINTEE WHILE HE IS UNDER FEDERAL INVESTIGATION. FULL STOP. +06/28/2018,Comedians,@chelseaperetti,@daxshepard MME +06/28/2018,Comedians,@chelseaperetti,@daxshepard ahhaha +06/28/2018,Comedians,@chelseaperetti,RT @aravosis: 10) So why aren’t we doing the same? +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 9) Had Pres. Hillary, at this late date, continued to take Russia’s side in the election hack, with another election on the h…" +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 8) Had Hillary done what Trump has done, the GOP would shut down Washington. They would shut down govt. They would refuse to…" +06/28/2018,Comedians,@chelseaperetti,RT @aravosis: 4) Defending the nation from foreign attack is a core requirement of the presidency. If Trump can’t even muster the patriotis… +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 3) If Trump doesn’t think Russia hacked the election, then Trump doesn’t think Russia is STILL hacking our elections. That me…" +06/28/2018,Comedians,@chelseaperetti,RT @kurteichenwald: Having been subjected to hundreds of death threats from Republicans (as have many reporters) without Republican leaders… +06/28/2018,Comedians,@chelseaperetti,"RT @Sil_Lai: ""When we speak we are afraid our words will not be heard or welcomed. But when we are silent, we are still afraid. So it is be…" +06/28/2018,Comedians,@chelseaperetti,@JuddLegum @ChelseaClinton they simply lie +06/28/2018,Comedians,@chelseaperetti,"RT @JuddLegum: On June 20, Paul Ryan promised that the House of Representatives will vote to end family separation the very next day. + +It…" +06/28/2018,Comedians,@chelseaperetti,RT @NBCNews: LIVE: Police in tactical gear have moved in as agents dismantle protesters' makeshift blockade of ICE facility in P… https://t… +06/28/2018,Comedians,@chelseaperetti,"RT @nedprice: 2018 Bolton, who said yesterday that he'd ""like to hear someone say"" it's a bad idea to meet with Putin, should be introduced…" +06/28/2018,Comedians,@chelseaperetti,"RT @Taniel: updating big board for Automatic Voter Registration: +—is law: AK, CA, DC, IL, MD, NJ, OR, RI, VT, WA, WV +—passed one legislat…" +06/28/2018,Comedians,@chelseaperetti,"RT @ChristFinnegan: Dem senators, repeat after me: + +“The President of the United States is under investigation for collusion with a foreig…" +06/28/2018,Comedians,@chelseaperetti,RT @timheidecker: Good question! @MickJagger why do you allow your songs to be used at @realDonaldTrump rallies? https://t.co/pwUsFMONDd +06/28/2018,Comedians,@chelseaperetti,had a peanut butter sundae last night +06/28/2018,Comedians,@chelseaperetti,They will go over the few remaining items on their checklist of goals https://t.co/CYWXKPIRbR +06/28/2018,Comedians,@chelseaperetti,RT @PhilipRucker: An ICE whistleblower who resigned because his administration superiors told him to lie to the public had his CBS News int… +06/28/2018,Comedians,@chelseaperetti,"RT @JStein_WaPo: I put this together yesterday, but look at @Ocasio2018's reliance on small donors vs. that of the entire NYC Congressional…" +06/28/2018,Comedians,@chelseaperetti,"RT @ewg: .@EPAScottPruitt's EPA is doing the bidding of the chemical industry by giving it the green light to continue business as usual, a…" +06/28/2018,Comedians,@chelseaperetti,"RT @PreetBharara: Regarding the SCOTUS opening, this president and his enablers have zero standing to lecture others about norms, standards…" +06/28/2018,Comedians,@chelseaperetti,RT @danpfeiffer: I feel compelled to point out yet again that the man decrying the elites is the Ivy-league educated heir to a real estate… +06/28/2018,Comedians,@chelseaperetti,RT @csdickey: We are rapidly approaching the moment when we should stop referring to the American government and start referring to the Tru… +06/28/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: Less than 48 hours ago, we launched a portal for kids legal service providers to try and find parents of separated kids. W…" +06/28/2018,Comedians,@chelseaperetti,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/28/2018,Comedians,@chelseaperetti,RT @nytimes: A Kansas City immigration lawyer said she broke her foot after being pushed to the ground by an ICE officer. She was trying to… +06/28/2018,Comedians,@chelseaperetti,https://t.co/UGBzxauRX1 +06/28/2018,Comedians,@chelseaperetti,"RT @EricBoehlert: on eve of 2016 elections, Republicans vowed NEVER to confirm ANY justices nominated by Clinton if she won." +06/28/2018,Comedians,@chelseaperetti,"RT @PoliticusSarah: ""I tell you, the Dem base is wired now for a revolt. This will be trigger for it. They shouldn’t have a mtg w any of hi…" +06/28/2018,Comedians,@chelseaperetti,@apexwinter @buzzf82 @terrycrews im sorry for your pain. glad you have been able to get counselling ❤️stay strong +06/28/2018,Comedians,@chelseaperetti,@Jilli_Beans what was he like +06/28/2018,Comedians,@chelseaperetti,@JoelMcKMiller @UMDBulldogs dirk looks different +06/28/2018,Comedians,@chelseaperetti,RT @BuzzFeedNews: Do you know a family separated at the border? We're looking for information about the children held by the US government… +06/28/2018,Comedians,@chelseaperetti,@marieclaire .....thaaaanks? +06/28/2018,Comedians,@chelseaperetti,RT @fshakir: Guatemalan migrant alleges officers mockingly said 'Happy Mother's Day' before they separated her from 8-year-old daughter htt… +06/28/2018,Comedians,@chelseaperetti,NEVER APOLOGIZE TO THESE REPUBLICANS NEVER https://t.co/rIYm9ynyk9 +06/28/2018,Comedians,@chelseaperetti,AGREE SIR THANK YOU FOR STANDING STRONG IN FAIRNESS AND CONVICTION. THE AMERICAN PEOPLE APPRECIATE YOUR ETHICAL STA… https://t.co/2T2uxlcsp0 +06/28/2018,Comedians,@chelseaperetti,cnn is trash #basura 🚮🚮🚮🚮🚽 +06/28/2018,Comedians,@chelseaperetti,RT @davidhogg111: We WILL win. We WILL live. We WILL save lives. https://t.co/oYWULXjY1Y +06/28/2018,Comedians,@chelseaperetti,RT @ChrisMurphyCT: Let’s call it like it is: the Supreme Court is turning itself into a political arm of the Republican Party. Weakening or… +06/28/2018,Comedians,@chelseaperetti,WHAT JUDGES ARE ALLOWING THIS????? LOOKING AT A TODDLER ALONE AND DELIVERING SENTENCES? ITS DEMONIC https://t.co/5kzEPhyqw0 +06/28/2018,Comedians,@chelseaperetti,THANK YOU MAXINE WATERS FOR STATING WHAT SHOULD BE OBVIOUS TO THESE PEARL-CLUTCHING THEATRICAL MANIPULATIVE HYPOCRI… https://t.co/NJICfD1z9j +06/28/2018,Comedians,@chelseaperetti,RT @kathygriffin: Fuck civility https://t.co/2U54qpnZs5 +06/28/2018,Comedians,@chelseaperetti,"RT @Taniel: one remedy against the coming SCOTUS: elect govs who'll veto abortion restrictions & gerrymanders, state lawmakers who'll expan…" +06/28/2018,Comedians,@chelseaperetti,@evanasmith @KHNews @SecondLady @FLOTUS TODDLERS. +06/28/2018,Comedians,@chelseaperetti,RT @tedlieu: Dear @SecNielsen: Resign. https://t.co/xIj540VGLZ +06/28/2018,Comedians,@chelseaperetti,"RT @kylegriffin1: VICE has obtained audio of what they say is ""a distraught Guatemalan child call[ing] his mother from a U.S. immigration s…" +06/28/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: ""Immigrant children as young as three years old are being ordered into court for their own deportation proceedings"" + +https…" +06/28/2018,Comedians,@chelseaperetti,"RT @KevinMKruse: I'm sure @SenMajLdr, being a man of firm principle and clear honor, will refuse to hold any hearings on a SCOTUS nominee u…" +06/28/2018,Comedians,@chelseaperetti,WOKE UP AN HOUR AND A HALF BEFORE MY ALARM should be a great day +06/28/2018,Comedians,@chelseaperetti,RT @VincentIntondi: No nominee should be considered until after the Mueller investigation is complete. +06/28/2018,Comedians,@chelseaperetti,"RT @melissafumero: I don’t live in a gated community, but if I did and if someone jumped over my gate because they were running for their l…" +06/28/2018,Comedians,@chelseaperetti,Gonna do an escape room solo. Think it will lift my spirits! +06/28/2018,Comedians,@chelseaperetti,@buzzf82 @terrycrews stay strong and live in your truth - you didnt deserve it and you’re not alone ❤️ +06/28/2018,Comedians,@chelseaperetti,https://t.co/CCyNojyK2t +06/28/2018,Comedians,@chelseaperetti,@robdelaney did i get a role i sent tape +06/28/2018,Comedians,@chelseaperetti,@laurenleti @JordanPeele BBRO STARTS TONITE PLS RECORD +06/28/2018,Comedians,@chelseaperetti,need it more than ever JERSEY SHORE IS CURRENTLY MY DRUG OF CHOICE 😩😢 https://t.co/LOHSyYfgy3 +06/28/2018,Comedians,@chelseaperetti,"RT @matt_cam: UPDATE: Client arrested in #EastBoston court still in #ICE custody. Fighting to get him out, but that's not what this thread…" +06/28/2018,Comedians,@chelseaperetti,RT @BlairImani: I believe in retribution. Let’s go! https://t.co/oNVWoQQCk6 +06/28/2018,Comedians,@chelseaperetti,Couple next to me (Im dining solo) at a restaurant. He went to b room for a whiiiiile. Wud it b ok to ask him “Did u shit” +06/27/2018,Comedians,@chelseaperetti,how does meditation work +06/27/2018,Comedians,@chelseaperetti,Does anyone have the initials “BLT”? Wud be a pretty cool idea +06/27/2018,Comedians,@chelseaperetti,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/27/2018,Comedians,@chelseaperetti,"RT @IBJIYONGI: 1850s: this is the time period we need to study. In the years leading up to the Civil War, resistance to the Fugitive Slave…" +06/27/2018,Comedians,@chelseaperetti,RT @IBJIYONGI: We were sold a bag of rocks in the form of the American political dream (which was in fact a nightmare for so many around th… +06/27/2018,Comedians,@chelseaperetti,RT @IBJIYONGI: I want to call on folks who do social studies/ethnic studies/movement studies and who may consider themselves elders to thin… +06/27/2018,Comedians,@chelseaperetti,hell https://t.co/uiJ9tlc1SP +06/27/2018,Comedians,@chelseaperetti,"RT @WomenintheWorld: Woman, 26, first person charged by Trump administration with leaking, pleads guilty: +https://t.co/cNSpdlyAuk https://t…" +06/27/2018,Comedians,@chelseaperetti,"RT @ACLU: The appointment of a new Supreme Court justice determines our future as a nation of people whose humanity must be respected. + +We'…" +06/27/2018,Comedians,@chelseaperetti,"RT @slack2thefuture: Remember sitting in history, thinking “If I was alive then, I would’ve…” + +You’re alive now. Whatever you’re doing is w…" +06/27/2018,Comedians,@chelseaperetti,RT @KHNews: Defendants In Diapers? Immigrant Toddlers Ordered To Appear In Court Alone https://t.co/OKMFgBRpjV via @By_CJewett and @shefalil +06/27/2018,Comedians,@chelseaperetti,RT @MichaelSLinden: Will @SenatorCollins really cast the deciding vote to confirm a a supreme court justice who will overturn Roe V. Wade?… +06/27/2018,Comedians,@chelseaperetti,RT @JoyceWhiteVance: The Democratic Party has called for more accountability from Congresswoman Maxine Waters in the last 24 hours than the… +06/27/2018,Comedians,@chelseaperetti,RT @ikebarinholtz: .@CNN WHY DO YOU KEEP LETTING THIS INFECTED COCK ZIT ON YOUR AIRWAVES https://t.co/p9drm1xd4s +06/27/2018,Comedians,@chelseaperetti,"RT @ChrisMurphyCT: Wait, so the thing about “the American people should have a voice in the selection of their next Supreme Court Justice”…" +06/27/2018,Comedians,@chelseaperetti,"RT @JuddLegum: The good news is, since Mitch McConnell is a man of principle, the Senate won’t consider any Supreme Court nominee until aft…" +06/27/2018,Comedians,@chelseaperetti,@bthomas9 @peterdaou @CBSNews Insane response as usual. Be well +06/27/2018,Comedians,@chelseaperetti,ITS ALMOST AS IF THESE MOTHERS ARE *RUNNING FROM* THE GANGS TRUMP & HIS RACIST LACKEYS SAY THEY & ALL IMMIGRANTS *A… https://t.co/oHQfRLORHf +06/27/2018,Comedians,@chelseaperetti,RT @lsarsour: Separating black and brown families is the policy of this administration. Whether it be stripping babies from their mothers a… +06/27/2018,Comedians,@chelseaperetti,RT @AP: BREAKING: Pennsylvania police officer who shot unarmed black teenager charged with criminal homicide. +06/27/2018,Comedians,@chelseaperetti,I think of this daily in light of the children separated from their mothers. They wont be understood and it will ha… https://t.co/JucGCtq1JH +06/27/2018,Comedians,@chelseaperetti,"RT @WesleyLowery: You know, when you look at electoral results and ignore the political pundits, you almost get the sense that the Dems pat…" +06/27/2018,Comedians,@chelseaperetti,"RT @tedlieu: I predict that in the future, Congress will apologize for this discriminatory SCOTUS decision the same way Congress apologized…" +06/27/2018,Comedians,@chelseaperetti,HEY @SpeakerRyan *BABIES* ARE CRYING FOR THEIR MOTHERS IN *CAGES*- YOU SHOULD APOLOGIZE! YOU ARE SICKENING. YOU HAV… https://t.co/mrHIuoTrId +06/27/2018,Comedians,@chelseaperetti,RT @MatthewACherry: Nah we’re not doing this. https://t.co/LUT4i02I94 +06/27/2018,Comedians,@chelseaperetti,@peterdaou @CBSNews @SecondLady do something @FLOTUS visit is nothing to a child that wants her mother. These are b… https://t.co/4ukRfOvWNn +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: Heartbreaking. This cellphone image is of a crying girl who couldn't talk to her mother. (via @CBSNews) + +#ImmigrantChildren…" +06/27/2018,Comedians,@chelseaperetti,RT @anylaurie16: #MAGA is a suicide cult. https://t.co/m4n6QHK1bx +06/27/2018,Comedians,@chelseaperetti,"do the wives of republican politicians read the news? they read about moms being told “say bye” to their infants, b… https://t.co/3r3l03XX7n" +06/27/2018,Comedians,@chelseaperetti,"RT @slpng_giants: Still nothing from @united. + +Are your planes being used to fly children separated from their parents at the border or are…" +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: REMINDER: + +There is no Trump without McConnell. +No Trump without Ryan. +No Trump without Sessions. +No Trump without Pence. +No…" +06/27/2018,Comedians,@chelseaperetti,"RT @jacobsoboroff: Just before going on air with @Lawrence, @HHSGov got back to me to say they still *are* receiving newly-separated migran…" +06/27/2018,Comedians,@chelseaperetti,"RT @jonfavs: The only way to stop Trump from packing SCOTUS with more Trumpists is to win the Senate. + +Help @RosenforNevada, @kyrstensinem…" +06/27/2018,Comedians,@chelseaperetti,"RT @jonfavs: Truly one of the best ads of 2018, if you haven’t seen it yet https://t.co/VzNiNjr8k0" +06/27/2018,Comedians,@chelseaperetti,RT @ACLU: This is not the America we want to live in. https://t.co/X3oj0OamNK +06/27/2018,Comedians,@chelseaperetti,"RT @thedailybeast: After fleeing her abusive husband in Guatemala, Maria and her 12-year-old daughter sought asylum in the U.S. After cross…" +06/27/2018,Comedians,@chelseaperetti,"RT @thedailybeast: EXCLUSIVE: Border agent threatened to put immigrant's daughter up for adoption, ACLU says https://t.co/0y64CXWyJc" +06/27/2018,Comedians,@chelseaperetti,"Rape, harassment & assault are often approached as “womans issues” where boys and men are sidelined as silent victi… https://t.co/xTFu8Yxbnj" +06/27/2018,Comedians,@chelseaperetti,@kennfujioka do u put on repellant every time you leave your house? What about children +06/27/2018,Comedians,@chelseaperetti,REMINDER THAT EVEN ONE DAY WITHOUT KNOWING WHERE YOUR CHILD IS - IS HELL. one minute https://t.co/GcNx6reqiv +06/27/2018,Comedians,@chelseaperetti,RT @ACLU: These families thought they might never see each other again. Tonight's court ruling will change lives. #FamiliesBelongTogether h… +06/27/2018,Comedians,@chelseaperetti,"RT @ACLU: 📣 The judge ruled that the Trump administration must reunite separated families within 30 days, and children under 5 must be reun…" +06/27/2018,Comedians,@chelseaperetti,RT @dsam4a: Want to win? Here’s a tip: https://t.co/Lff4no2eWt +06/27/2018,Comedians,@chelseaperetti,"RT @Ocasio2018: “The people closest to the pain should be closest to the power.” + - @AyannaPressley. + +Vote her in next, Massachusetts. + +Th…" +06/27/2018,Comedians,@chelseaperetti,RT @AP: BREAKING: Judge orders US to reunite families separated at border within 30 days; sooner for children under 5. +06/27/2018,Comedians,@chelseaperetti,RT @SeanMcElwee: Alexandria Ocasio Cortez was one of the first candidates to support abolishing ICE. She led on the issue. Simple clear mor… +06/27/2018,Comedians,@chelseaperetti,"RT @robdelaney: I am a registered Democrat in Maxine Waters’ state & I stand with her, erect, with chest out. As do the 1.5 million #teens…" +06/27/2018,Comedians,@chelseaperetti,RT @laurenduca: Fuck civility. https://t.co/oRn1R2mLLU +06/27/2018,Comedians,@chelseaperetti,"RT @AyeshaASiddiqi: another anti ICE pro healthcare candidate, check out Megan Hunt in Nebraska 🎶 https://t.co/91CN4k2wts" +06/27/2018,Comedians,@chelseaperetti,RT @tedlieu: Dear @SecNielsen: Resign. https://t.co/cVSM1aSscQ +06/27/2018,Comedians,@chelseaperetti,"RT @theGregJohnson: I like when a shitty movie has 4+ writers. Man, all y’all fuckin bombed." +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: We're in a fight for survival, and within lawful and non-violent limits, we MUST take unwavering stands in defense of our co…" +06/27/2018,Comedians,@chelseaperetti,RT @peterdaou: DEM FRIENDS: We need new leadership for our party that is willing to take strong progressive stands and willing to fight enc… +06/27/2018,Comedians,@chelseaperetti,@simbaspaw my heart is broken ❤️stay strong +06/27/2018,Comedians,@chelseaperetti,❤️ +06/27/2018,Comedians,@chelseaperetti,RT @maddow: ...the distraught child verbalized that he wanted to jump because he missed his parents. 12 other young kids who were separated… +06/27/2018,Comedians,@chelseaperetti,"RT @maddow: New York AG: ""A boy who was separated from his father at the border was rushed to the hospital because he was about to jump ou…" +06/27/2018,Comedians,@chelseaperetti,RT @PaulRieckhoff: Just when we all assumed tomorrow’s Senate confirmation hearings would be a breeze for Wilkie. This is ugly stuff. He ab… +06/27/2018,Comedians,@chelseaperetti,"RT @PaulSonne: NEW: Trump’s nominee to lead the VA defended Confederate insignia, attended Confederate memorial events, joined and then lef…" +06/27/2018,Comedians,@chelseaperetti,sleep well innocent babies +06/27/2018,Comedians,@chelseaperetti,sleep well racist demons +06/27/2018,Comedians,@chelseaperetti,"RT @Sifill_LDF: We need answers and information given UNDER OATH from Secys Azar, Sessions and Nielsen. It’s Congress’s job to compel that…" +06/27/2018,Comedians,@chelseaperetti,RT @Sifill_LDF: .@SenAlexander chairs the committee that has oversight of HHS (Azar). Sen @ChuckGrassley chairs the committee w/oversight o… +06/27/2018,Comedians,@chelseaperetti,RT @Sifill_LDF: I implore you to direct some attention to Congress which has the power to make @SecAzar account for these children & provid… +06/27/2018,Comedians,@chelseaperetti,RT @ft_variations: Take a look at this map of ICE facilities across the US to understand just how widespread this monstrous apparatus is.… +06/27/2018,Comedians,@chelseaperetti,"RT @rdevro: Those efforts are currently colliding with realities on the ground, including a clear legal prohibition against the prolonged d…" +06/26/2018,Comedians,@chelseaperetti,RT @mizsant: So Velveeta isn’t allowed to call itself “cheese” but an unlicensed crisis pregnancy center can pretend to be a medical facili… +06/26/2018,Comedians,@chelseaperetti,RT @KaraRBrown: ARE YOU SERIOUSLY WASTING OUR TIME WITH THIS STUPID BULLSHIT WHILE CHILDREN ARE LITERALLY IN CAGES AND A BOOTLEG SUPREME CO… +06/26/2018,Comedians,@chelseaperetti,"THANK YOU FOR STANDING BY YOUR MORAL CONVICTIONS, SIR! WE APPLAUD YOUR CONSISTENCY AND STRENGTH! https://t.co/UR1dq1uvqA" +06/26/2018,Comedians,@chelseaperetti,RT @KenTremendous: Agree! https://t.co/Yw66uhnlnC +06/26/2018,Comedians,@chelseaperetti,TALK BABIES AND THE WEAPONIZATION OF BABIES https://t.co/9hgDLYAeP1 +06/26/2018,Comedians,@chelseaperetti,"RT @Miajmerrill: @chelseaperetti While you're here, a progressive Congressional candidate for Maryland is @AllisonforMD" +06/26/2018,Comedians,@chelseaperetti,@srosner @LanghartCohen or both +06/26/2018,Comedians,@chelseaperetti,"@RachelRumbelow Hi Rachel, more useful to convince an apathetic liberal to vote than spend energy on someone who th… https://t.co/3u1SHA13DJ" +06/26/2018,Comedians,@chelseaperetti,RT @nyuravlivker: @chelseaperetti Two generations heeding the call! #MDvotes https://t.co/UPLtuT3qMy +06/26/2018,Comedians,@chelseaperetti,RT @SenSanders: Rep. @PeterWelch visited a border patrol “processing facility” in Texas holding hundreds of children. Here is what he saw.… +06/26/2018,Comedians,@chelseaperetti,RT @MrEmilyHeller: Hello my fellow touring stand ups! Now is a great time to start hitting up volunteers in every city we visit to register… +06/26/2018,Comedians,@chelseaperetti,PLEASE https://t.co/D1imTX2p4q +06/26/2018,Comedians,@chelseaperetti,RT @LanghartCohen: Remember the next president gets to pick the next Supreme Court justice when you vote in November! #SCOUTUS #CourtsMatte… +06/26/2018,Comedians,@chelseaperetti,"RT @JoyAnnReid: Muslim ban +Separating migrant parents and children, even babies +Planned internment camps +Puerto Rico & USVI left to suff…" +06/26/2018,Comedians,@chelseaperetti,RT @lsarsour: Sitting in my daughter’s high school graduation in tears. I have to tell my daughter who has been asking me for updates that… +06/26/2018,Comedians,@chelseaperetti,"RT @deray: Before the election, someone said that if Trump won that us trying to undo the damage would be like trying to un-ring a bell. Th…" +06/26/2018,Comedians,@chelseaperetti,RT @justinjm1: BREAKING: Immigration attorney tells @woodruffbets ICE broke her foot and locked her up this morning https://t.co/3J1eHqHpof… +06/26/2018,Comedians,@chelseaperetti,RT @michaelianblack: Wow. Thread. https://t.co/jhODCbh160 +06/26/2018,Comedians,@chelseaperetti,"RT @splcenter: When the #POTUS starts talking about taking due process rights away, we shouldn’t shrug it off as just rhetoric meant to ene…" +06/26/2018,Comedians,@chelseaperetti,"RT @HuffPost: ""What happened to me has happened to many, many other men... I have had thousands and thousands of men come to me and say, 'M…" +06/26/2018,Comedians,@chelseaperetti,RT @CREWcrew: A reminder that countries where Trump does business are not hit by the travel ban https://t.co/a0xg2kxdY3 +06/26/2018,Comedians,@chelseaperetti,@Simon_Wynne great point 🙄 +06/26/2018,Comedians,@chelseaperetti,"IF YOU ARE TRANSPORTING THE CHILDREN, BUILDING THEIR CAMPS, TEARING THEM FROM THEIR FAMILIES, RULING AGAINST THEIR… https://t.co/2FYUfnYHs8" +06/26/2018,Comedians,@chelseaperetti,WHO ARE THE HUMANS PHYSICALLY TAKING BABIES FROM THEIR PARENTS? WHAT DOES THAT DO TO YOUR SOUL? YOU HAVE TO KNOW YO… https://t.co/dQoFKDXZP6 +06/26/2018,Comedians,@chelseaperetti,"RT @EricHolder: Here’s another zero tolerance program for the Trump Administration: EVERY child, EVERY baby has to be reunited with his or…" +06/26/2018,Comedians,@chelseaperetti,"RT @ambiej: I spent today at the El Paso immigration court, where a 3-year-old boy who'd been separated from his father had his removal hea…" +06/26/2018,Comedians,@chelseaperetti,RT @Alyssa_Milano: President Trump tweeted that he advocates for eliminating due process for immigrants. What the president suggested was b… +06/26/2018,Comedians,@chelseaperetti,CAN THEY SAVE US???? https://t.co/F4ODRABAbN +06/26/2018,Comedians,@chelseaperetti,"RT @keithellison: Like the Korematsu decision that upheld Japanese internment camps or Plessy v. Ferguson that established ""separate but eq…" +06/26/2018,Comedians,@chelseaperetti,"RT @washingtonpost: ""Get your son ready, because we are taking him."" + +Parents describe being separated from their children at the border. h…" +06/26/2018,Comedians,@chelseaperetti,"RT @ezraklein: In 2014, Dem turnout was abysmal and Rs picked up 9 Senate seats. That gave them the votes to block Obama from replacing Sca…" +06/26/2018,Comedians,@chelseaperetti,RT @ACLU: We must make it crystal clear to our elected representatives: If you are not taking action to rescind and dismantle Trump's Musli… +06/26/2018,Comedians,@chelseaperetti,👀 https://t.co/EIC0a1Ql4e +06/26/2018,Comedians,@chelseaperetti,RT @robdelaney: 🚨#NY14! You are very powerful today. Get out there & vote for @Ocasio2018! Her policies are THE antidote to the for-profit… +06/26/2018,Comedians,@chelseaperetti,"RT @chrisgeidner: Sotomayor: ""History will not look kindly on the court's decision today, nor should it.""" +06/26/2018,Comedians,@chelseaperetti,"RT @HuffPost: Sonia Sotomayor and Ruth Bader Ginsburg say Trump's travel ban was ""motivated by anti-Muslim animus.” https://t.co/eme8uXNias" +06/26/2018,Comedians,@chelseaperetti,RT @UltraViolet: The Supreme Court just ruled that fake clinics can continue to lie to pregnant women about abortion. This is a disgraceful… +06/26/2018,Comedians,@chelseaperetti,RT @deray: nah. https://t.co/KMXubr16TZ +06/26/2018,Comedians,@chelseaperetti,RT @deray: I just keep thinking about all of the people who didn’t believe Trump during the election and who told people that the president… +06/26/2018,Comedians,@chelseaperetti,RT @RinChupeco: The first requirement when approaching any discussion with civility is that both sides must come to the table with it. The… +06/26/2018,Comedians,@chelseaperetti,"RT @RinChupeco: ""So much for the tolerant left."" This is why they say this all the fucking time. This is the bait they expect you to fall f…" +06/26/2018,Comedians,@chelseaperetti,RT @RinChupeco: People invested in putting kids in cages don't want your civility. They don't want you to extend them the same courtesy the… +06/26/2018,Comedians,@chelseaperetti,"RT @ananavarro: -#BarbecueBetty called cops on black fam grilling +-#PermitPatty called cops on black girl selling water +-#LandscapeLucy ber…" +07/02/2018,Comedians,@mindykaling,I don’t want Lebron to go to the Tar Pits when he first gets here. Yes they are cool but that whole area smell like farts sometimes. +07/02/2018,Comedians,@mindykaling,@ikebarinholtz @KingJames Great question. I think he would’ve laughed but ultimately thought it was foolishness. +07/02/2018,Comedians,@mindykaling,I would watch a reality show about @KingJames acclimating to LA life. Him opening his first “Trust Me” from Sugarfi… https://t.co/dlNI4VVmux +07/02/2018,Comedians,@mindykaling,Oh my god is it my queen @fortunefunny’s birthday? I love you Fortune! https://t.co/nXEK5yedG1 +07/02/2018,Comedians,@mindykaling,@tamara_fuentes @EmilyMomentx Hey. You could not be cuter. I love you guys. ❤️ https://t.co/GJJ4l60flP +07/02/2018,Comedians,@mindykaling,@MarkHarrisNYC Hugh Grant in Paddington 2 was better than Hugh Grant in Florence Foster Jenkins IMHO +07/02/2018,Comedians,@mindykaling,@SunnyBrunette @TheMindyProject This is a @MrSalPerez question but I remember saying to him “they need to special and so expensive it hurts” +07/01/2018,Comedians,@mindykaling,@zara915 You were so helpful and nice!!!! 👯‍♀️ +07/01/2018,Comedians,@mindykaling,It me. Anyone else? @yeahitschill https://t.co/3XmpLnxG1c +07/01/2018,Comedians,@mindykaling,@Yassir_Lester Disagree +06/29/2018,Comedians,@mindykaling,"Families belong together. Tomorrow, thousands of people across the country are wearing white and taking to the stre… https://t.co/QCQiX4S533" +06/28/2018,Comedians,@mindykaling,You got it! 👍🏾 https://t.co/vCRXhzs5Ja +06/28/2018,Comedians,@mindykaling,"Congratulations to @Ocasio2018, the nation is rooting for you! How can I help?" +06/28/2018,Comedians,@mindykaling,"@bjnovak This has to be a sponsored post, it’s sunglasses day, this is not real" +06/28/2018,Comedians,@mindykaling,"RT @HRC: .@HRC was proud to present actor J.J. Totah with the HRC Visibility Award at the 2018 HRC Salt Lake Gala. Thank you, @JJTotah, fo…" +06/27/2018,Comedians,@mindykaling,Because summer 🌞 and #NationalSunglassesDay 😎✌️🎉 https://t.co/4IIQn3dXaC +06/27/2018,Comedians,@mindykaling,#paulruddisawitch +06/27/2018,Comedians,@mindykaling,Paul Rudd has been handsome for 40 years and is somehow still like 32 +06/26/2018,Comedians,@mindykaling,👍🏾 this crew too! @TheAcademy ✨ https://t.co/XA1O9tWXKX +06/26/2018,Comedians,@mindykaling,It’s an incredible honor to be asked to join @theacademy! Thank you!!! 🙌 https://t.co/WCOnQfSRWY +06/26/2018,Comedians,@mindykaling,"Thank you, Seth! 💕❤️💕 https://t.co/CDfbSW9Doa" +06/25/2018,Comedians,@mindykaling,@LitsaDremousis @oceans8movie Thanks Litsa! So happy you liked it! +06/25/2018,Comedians,@mindykaling,@MatthewACherry Thank you!! 💕💕💕 +06/25/2018,Comedians,@mindykaling,@iamthepuma @nicolette819 @robsimonsen @TheAcademy ❤️❤️❤️ +06/25/2018,Comedians,@mindykaling,Whoa!!! Congrats @oceans8movie! $100 million!?! 💵 #SequelMuch https://t.co/xCPVhXETRK +06/25/2018,Comedians,@mindykaling,"@jimmyfallon I see the da Vinci code is not an option, I beg you to reconsider" +06/25/2018,Comedians,@mindykaling,@chrissyteigen @netflix I want Jonathan to help me find my inner diva with new bob and for Antoni to transform my s… https://t.co/1KT5zeK8mP +06/25/2018,Comedians,@mindykaling,I’m gonna say what we’re all thinking: whoever cast the @netflix #queereye did an incredible job +06/25/2018,Comedians,@mindykaling,@jimmyfallon Yaaaaaaasss +06/25/2018,Comedians,@mindykaling,My less important birthday wish is that Pepe the Frog would no longer be a symbol of hate groups. Pepe holding cham… https://t.co/GF4b7B3Zfq +06/25/2018,Comedians,@mindykaling,"Thank you for all the birthday wishes! I get to live with my daughter which is better than any present, and makes m… https://t.co/AuCyo9tfay" +06/25/2018,Comedians,@mindykaling,"Thank you, you know this gif is my favorite gif on the internet https://t.co/HYXyNulrjd" +06/24/2018,Comedians,@mindykaling,@Yassir_Lester I know! I felt like it seemed like I was angling for you to give me birthday greetings but it wasn’t!!! +06/24/2018,Comedians,@mindykaling,@PRanganathan Twins! +06/24/2018,Comedians,@mindykaling,"I love my Reese dawg, you are the personification of the 💯 emoji. https://t.co/ynCsGiQR2b" +06/24/2018,Comedians,@mindykaling,@daliaganz Yay! Thanks!! 💃🏻 +06/24/2018,Comedians,@mindykaling,"@bestofmindy Oh my god, thanks! I obvs love your take on the world heheheh" +06/24/2018,Comedians,@mindykaling,@cschleichsrun This is ridiculous +06/24/2018,Comedians,@mindykaling,I didn’t know anything about Sanfilippo Syndrome until I read about it here. It’s devastating. Help Carter and his… https://t.co/zHWEcwXa2B +06/23/2018,Comedians,@mindykaling,Oh my did I miss @Yassir_Lester’s birthday? I’m obsessed with him. +06/23/2018,Comedians,@mindykaling,Because of the twirl. #Werk https://t.co/iPX1jppLtw +06/22/2018,Comedians,@mindykaling,"This is so funny, I never wanted it to end. #SheReady alright https://t.co/6r9tmpczAz" +06/21/2018,Comedians,@mindykaling,@mullallying @MsSarahPaulson THANK YOU for blurring out all those other losers +06/20/2018,Comedians,@mindykaling,Go over to guiding light @Ava’s twitter feed right now to be inspired. It’s very special and reminds us that we wer… https://t.co/tFvXQG3zyv +06/20/2018,Comedians,@mindykaling,RT @ava: I look at myself as a girl and imagine having to travel unsafely in a quest for safety. Be forcibly separated from my mother. Cage… +06/20/2018,Comedians,@mindykaling,Oooh it’s @LaLigneNYC 👌🏾 https://t.co/HZB9tzWogY +06/20/2018,Comedians,@mindykaling,That feeling when you come home from work and you’re sure the baby is already asleep but she’s awake and babbling a… https://t.co/An1oJ9vaVb +06/19/2018,Comedians,@mindykaling,"As a mother and a daughter of immigrants, I am heartbroken about children being separated from their families at Am… https://t.co/lkggiCARZW" +06/19/2018,Comedians,@mindykaling,It's always sunny when you're visiting your friends on @alwayssunny #Season13 https://t.co/5LxgymfTSG +06/19/2018,Comedians,@mindykaling,"If it’s true that the arc of the moral universe bends towards justice, let’s please help it bend a little faster, f… https://t.co/AhMY58lP8k" +06/19/2018,Comedians,@mindykaling,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/19/2018,Comedians,@mindykaling,"RT @FridaGhitis: Under the orders of armed men, a mother pulls the shoestrings from her daughter's shoes before being dragged away from her…" +06/19/2018,Comedians,@mindykaling,"RT @SenFeinstein: UPDATE: 48 senators now support the Keep Families Together Act. We're making progress, but we still need Republicans to j…" +06/18/2018,Comedians,@mindykaling,Binged the entire season #KillingEve. May never sleep the same way again. Thank you...I think? @IamSandraOh… https://t.co/TGxCafnRZC +06/17/2018,Comedians,@mindykaling,"@MsSarahPaulson @FelicityHuffman Sarah and I were in another scene that got cut, Felicity you should come over, I will show you" +06/16/2018,Comedians,@mindykaling,So many great movies coming out this weekend but only one where you can see me take apart a $150 million dollar nec… https://t.co/CtquqwiYo9 +06/15/2018,Comedians,@mindykaling,"Eid Mubarak, my friend! And all my Muslim friends. ❤️ https://t.co/BFHQ5oBwyR" +06/14/2018,Comedians,@mindykaling,"In honor of my friend @davidstassen’s birthday, here he is doing all the things he’s best at: being in a writers ro… https://t.co/m2iafHRXAg" +06/14/2018,Comedians,@mindykaling,Awww @jjtotah @AndyFavs @ders808 @fortunefunny #ChampionsOnNetflix https://t.co/6PoLi1yLtB +06/14/2018,Comedians,@mindykaling,🤗🤗🤗 #ChampionsOnNetflix @AndyFavs https://t.co/CQFx6TuAot +06/14/2018,Comedians,@mindykaling,"London Premiere 💎 #Oceans8 +Styled by #JasonBolden +💁🏾‍♀️: #DayaRuci +💄: @kaymontano +👗: @albertaferretti +👠:… https://t.co/Vgt9Lxo4o1" +06/14/2018,Comedians,@mindykaling,@ultimatefan1 @cindy_2627 You were a delight (as usual!) +06/13/2018,Comedians,@mindykaling,🇬🇧 💎✌️#Oceans8 https://t.co/sJ7Eg336mc +06/13/2018,Comedians,@mindykaling,"I love this woman. She makes beautiful clothes, but more importantly, finds beauty in women of every background and… https://t.co/cedyQZRxSD" +06/13/2018,Comedians,@mindykaling,We love it! Catch us on @NetflixUK and tweet me what you think! ❤️ https://t.co/1RDtK4SQsu +06/13/2018,Comedians,@mindykaling,Party in my backyard? https://t.co/JtlyBKVlOD +06/12/2018,Comedians,@mindykaling,Loved seeing the iconic @StellaMcCartney in her gorgeous new London store! #23oldbond https://t.co/2LwrjpBOH1 +06/12/2018,Comedians,@mindykaling,Congrats @StellaMcCartney ❤️✨🇬🇧 https://t.co/NuhZC0KOgS +06/12/2018,Comedians,@mindykaling,Agree @jjtotah! #ChampionsOnNetflix forever! 🙌 https://t.co/iJqcxmIt9h +06/12/2018,Comedians,@mindykaling,RT @jjtotah: y’all can share me❤️ https://t.co/gHHumo5lHY +06/12/2018,Comedians,@mindykaling,I actually wish @jjtotah was my kid! He’s another nice woman’s child though 😩 https://t.co/1pYVaGGSvj +06/12/2018,Comedians,@mindykaling,@AndyFavs is the best. Episode 10 especially! Tweet me when you see it! https://t.co/OFuOKRc9Ie +06/12/2018,Comedians,@mindykaling,Working on it cutie https://t.co/qOJm9cHNQ1 +06/12/2018,Comedians,@mindykaling,I will if we come back for another season! 😘 https://t.co/I8wOMnMTln +06/12/2018,Comedians,@mindykaling,RT @CourtneyKofeldt: You need to be your own cheerleader 📣... and root for those around you! @mindykaling. Love this powerful message! http… +06/12/2018,Comedians,@mindykaling,"I'm in London, streaming #Champions! This is awesome! International folks - if you share photos & posts with the ha… https://t.co/5r6Z3oE1Dj" +06/12/2018,Comedians,@mindykaling,👍🏾👍🏾👍🏾 https://t.co/SyEAtQNFHS +06/12/2018,Comedians,@mindykaling,"Guys! It's a good day! #Champions, the comedy show I wrote, produced, and star in, is now available on #Netflix int… https://t.co/sVr9MljUYi" +06/12/2018,Comedians,@mindykaling,RT @theregos: OMG Champions is finally on @NetflixMENA! Eid binging sorted! @mindykaling https://t.co/fDUb6M1Cq7 +06/11/2018,Comedians,@mindykaling,@chrismcquarrie Three great scenes and no shitty ones! I love it! I love practical writing advice! Thank you! +06/11/2018,Comedians,@mindykaling,"@ConstanceWu @oceans8movie @awkwafina Thank you, my hilarious new friend. You’re the best." +06/11/2018,Comedians,@mindykaling,@awkwafina That all sounds fun but we miss you in London +06/10/2018,Comedians,@mindykaling,"Thank you @dartmouth, my Alma Mater, for welcoming me back to deliver today’s commencement speech. To say it was an… https://t.co/EvGI9I32CM" +06/10/2018,Comedians,@mindykaling,Back at @dartmouth! Oh heyyyy old dorm room ✌🏾 https://t.co/efdyjcVgEv +06/09/2018,Comedians,@mindykaling,@itsgabrielleu I travel with an economy sized eucerin +06/09/2018,Comedians,@mindykaling,@itsgabrielleu hahahahahahhahahaha until I die +06/09/2018,Comedians,@mindykaling,RT @ava: This matters. 🖤 https://t.co/z6JiPAO9fg +06/09/2018,Comedians,@mindykaling,It’s a party today at @POPSUGAR #POPSUGARPlayground https://t.co/hdQC4D1gB3 +06/09/2018,Comedians,@mindykaling,@willxcheng @dartmouth Thanks Will! Can’t wait to come to campus! Save some Hop fries for me. +06/09/2018,Comedians,@mindykaling,"Congratulations to Emma Thompson, who is now a dame commander of the order of the British Empire. She is also my fr… https://t.co/EmNiGcKch2" +06/08/2018,Comedians,@mindykaling,"I didn't know I needed this until now. Thanks, @tomlenk. https://t.co/3xJcAgmfdQ" +06/08/2018,Comedians,@mindykaling,"I saw #oceans8, it was so good. The ensemble is fantastic and the jeweler is particularly convincing! She sure know… https://t.co/kigpv8xn1H" +06/08/2018,Comedians,@mindykaling,RT @ikebarinholtz: I can’t wait to see #Ocean8Movie today starring my dear friend @mindykaling and my ex-girlfriend @rihanna +06/08/2018,Comedians,@mindykaling,@davidstassen Cerulean +06/07/2018,Comedians,@mindykaling,"Thanks for having me @TodayShow! 🌈 + +https://t.co/mPkHBGzq1m https://t.co/stgd4q1hkT" +06/07/2018,Comedians,@mindykaling,"THANK YOU, SCOTT https://t.co/ICXYNrpw9t" +06/07/2018,Comedians,@mindykaling,"I was at @TODAYshow all morning and would have stayed all afternoon but they were like “go home, Barry Manilow is n… https://t.co/8DJgK5RnDv" +06/07/2018,Comedians,@mindykaling,Crew’s all here. #Oceans8 https://t.co/20VePv4cme +06/07/2018,Comedians,@mindykaling,@anildash @prabalgurung ❤️❤️❤️❤️ +06/06/2018,Comedians,@mindykaling,🖤 #Oceans8 https://t.co/lSFGFi1dFX +06/06/2018,Comedians,@mindykaling,RT @DavidSpade: Katy at my book signing. I love this pic of her. So pretty. I dont think everyone knew how fucking funny she was... Its a… +06/05/2018,Comedians,@mindykaling,"All this sparkle, brought to you by @prabalgurung & @Cartier. Thank you, I love! 💎 #Oceans8 (Styled by… https://t.co/88lVjswUGC" +06/05/2018,Comedians,@mindykaling,"California, Montana, Alabama, Iowa, Mississippi, New Jersey, New Mexico, South Dakota - Get your vote on! https://t.co/LzMjq4xx0F" +06/05/2018,Comedians,@mindykaling,"I am heartbroken about the news of Kate Spade. I have worn her clothes many, many times. They were colorful, bold,… https://t.co/uvW3Housz7" +06/05/2018,Comedians,@mindykaling,Hugh Dane was one the funniest actors ever. I loved writing and acting with him. ❤️ https://t.co/kOlcofYxIn +06/04/2018,Comedians,@mindykaling,“Act natural” @TheEllenShow https://t.co/UKzVTsfGnm +06/04/2018,Comedians,@mindykaling,When I see @nickkroll is gonna be a nemesis in a movie I get https://t.co/y0jYQcA7fl +06/04/2018,Comedians,@mindykaling,"A shark named Meg? What’s next, a lion named Gretchen? Cmon" +06/04/2018,Comedians,@mindykaling,Uncle Drew is already my favorite movie of the year +06/03/2018,Comedians,@mindykaling,"❤️ this chat @bostonglobe. And see you soon @dartmouth!! 🙌 + +https://t.co/0M5mDKga2x" +06/03/2018,Comedians,@mindykaling,@TessaThompson_x Tell me more!! +06/03/2018,Comedians,@mindykaling,@cschleichsrun I have a very interested baby. I would love to get her in the DGA +06/02/2018,Comedians,@mindykaling,@MarkHarrisNYC But Mark I was gonna live-tweet Perestroika for my followers. Is that gonna be an issue +06/01/2018,Comedians,@mindykaling,It’s all happening today. #NationalDonutDay 🍩 https://t.co/O3tZKddmir +06/01/2018,Comedians,@mindykaling,"@carriecoon @people If you’re in it, I’ll watch it! https://t.co/o2lVUg5XSm" +06/01/2018,Comedians,@mindykaling,@davidstassen @ikebarinholtz Yeah maybe it was good actually +06/01/2018,Comedians,@mindykaling,@ikebarinholtz @davidstassen It’s pretty dumb +06/01/2018,Comedians,@mindykaling,@davidstassen Look at this old photo of him and his sons. I die https://t.co/KhayO2fIma +06/01/2018,Comedians,@mindykaling,@gracie_x24 @maht_in_chicago @MeCookieMonster It’s a great recommendation. Just might do it! +05/31/2018,Comedians,@mindykaling,These are promising but not for sale https://t.co/pgwjQBCboo +05/31/2018,Comedians,@mindykaling,"Guys I’m looking for a Cookie Monster cookie jar. Can anyone help me please, it’s v. important. @MeCookieMonster" +05/31/2018,Comedians,@mindykaling,"@ava Nothing would make me happier than to tell you, but I need it to be three days." +05/31/2018,Comedians,@mindykaling,@janna_joyner Whoa! Thank you so much! +05/31/2018,Comedians,@mindykaling,👏🏾👏🏾👏🏾👏🏾 https://t.co/NCem0WSPjD +05/30/2018,Comedians,@mindykaling,@CAPEUSA @IWGroup @Kollaboration @oceans8movie @awkwafina @OsricChau @ch8i @yoshi_sudarso @PeterSAdrian… https://t.co/gvsRQqemIa +05/30/2018,Comedians,@mindykaling,Thanks @time! We love @NBCChampions too! @ders808 @jjtotah @AndyFavs @CBGrandy https://t.co/DBLnuOeEkx +05/30/2018,Comedians,@mindykaling,Love this guy. Smart and dreamy. https://t.co/OuJeyq3PYO +05/30/2018,Comedians,@mindykaling,Laurie Metcalf and John Goodman let me write things for you +05/29/2018,Comedians,@mindykaling,@davidstassen I wrote on The Office! 😏 +05/28/2018,Comedians,@mindykaling,hahaha I’m an Annie stan https://t.co/NA3wvA4zUq +05/28/2018,Comedians,@mindykaling,RT @DaveKingThing: lebron is underrated +05/28/2018,Comedians,@mindykaling,“This is a close game.” - me just now about this game. @nba need a commentator? +05/27/2018,Comedians,@mindykaling,@chrissyteigen Beware! Tumeric was the death of my manicure. After I cook with it i look like a yellow nailed side… https://t.co/iDYVDVm4qB +05/27/2018,Comedians,@mindykaling,"Proud of Ireland for #RepealedTheEighth. Savita Halappanavar died because she did not have the right to choose, but… https://t.co/MKQUvL2EUs" +05/26/2018,Comedians,@mindykaling,RT @TorieTheriot: Did #champions just reference a baseball team as “Baton Rouge Humidity”?!?! @mindykaling ❤️ it! https://t.co/W2WRqu8kY6 +05/26/2018,Comedians,@mindykaling,RT @thestormwithin: Do not change the channel! There is another episode of #Champions! +05/26/2018,Comedians,@mindykaling,💁🏾‍♀️❤️ https://t.co/NoHgXDs4qC +05/25/2018,Comedians,@mindykaling,I didn’t ask him to tweet this! https://t.co/m0ukfmNnvf +05/25/2018,Comedians,@mindykaling,"RT @damianholbrook: two NEW episodes tonight! @NBCChampions +watch this show so we get more next season! + +#IdLikeFiveDrugsPlease https://t…" +05/25/2018,Comedians,@mindykaling,2 back-to-back episodes tonight - including the season finale of @NBCChampions! 8/7c! https://t.co/cDoR64KlQD +05/25/2018,Comedians,@mindykaling,@_juliescharf @MsSarahPaulson Paulson is my khaleesi and I am Jorah mormont +05/25/2018,Comedians,@mindykaling,Coming for ya @sethmeyers @LateNightSeth https://t.co/NgPYdwEcSR +05/25/2018,Comedians,@mindykaling,RT @hulu: #TBT to the set of Mindy. The show might be over but you can watch all episodes only on Hulu. https://t.co/4Y9B8fAXCo #FYC https:… +05/24/2018,Comedians,@mindykaling,All for clowning around especially for a good cause! Watch #RedNoseDay tonight on @nbc! Donate:… https://t.co/iOx1LXy4va +05/23/2018,Comedians,@mindykaling,"Not your typical LBD... @FallonTonight +👗: #celine +👠: @LouboutinWorld +💎: @KMD_Jewelry +😘😍 @jason_bolden @Marcmena… https://t.co/1YJ0bOfLzK" +05/23/2018,Comedians,@mindykaling,HIIIIiiiiiiiiiiiiii @FallonTonight @jimmyfallon https://t.co/utdT9f4VBR +05/23/2018,Comedians,@mindykaling,@jackburditt Don’t do it Jack!! +05/23/2018,Comedians,@mindykaling,SRSLY. Sandy brought shakes. ❤️❤️❤️ #Oceans8 https://t.co/Wj8g1gumLJ +05/23/2018,Comedians,@mindykaling,My heart hurts this kid is so cute https://t.co/ea2iEH72cU +05/23/2018,Comedians,@mindykaling,Posse. #Oceans8 https://t.co/paq5I03FEB +05/22/2018,Comedians,@mindykaling,Pearls on pearls on pearls for @oceans8movie press day. I play a jeweler after all. https://t.co/5rzYIRIgIe +05/19/2018,Comedians,@mindykaling,In custom Stella! https://t.co/D8BAXIW3rH +05/19/2018,Comedians,@mindykaling,The excitement on her face is heart crushing. This little girl could’ve been my daughter. We must do more than just… https://t.co/Gs5BmMZwaa +05/18/2018,Comedians,@mindykaling,Heartbroken by the news from #SantaFe Texas. #EnoughIsEnough +05/18/2018,Comedians,@mindykaling,@dannychun @ConstanceWu Me too! The decor and cocktail list are also so good. +05/18/2018,Comedians,@mindykaling,@ConstanceWu Selfridges! Gymkhana! 221b Baker Street! +05/18/2018,Comedians,@mindykaling,@DaveKingThing Are you fucking kidding me Dave. Forget it. Enemies +05/17/2018,Comedians,@mindykaling,The only person who can pull off tiny sunglasses https://t.co/EfvLiX3nFA +05/17/2018,Comedians,@mindykaling,@DaveKingThing Yanny and laurel has revealed a new layer to your comedy voice that I love so much +05/16/2018,Comedians,@mindykaling,I love retweeting Canada! And I extra love this insanely talented young woman! https://t.co/Kb99cEeB8j +05/16/2018,Comedians,@mindykaling,".@Shape_Magazine was like, “Cover?” and I was like, “YASS!” 🤩😍😘 https://t.co/BzKaLqGdNw https://t.co/vBM5MlcHrD" +05/16/2018,Comedians,@mindykaling,@megynkelly Feels so good to ignore. +05/16/2018,Comedians,@mindykaling,When they drag you just hoping you will @ them and you don’t https://t.co/CPYUWdfARB +05/16/2018,Comedians,@mindykaling,"Obsessed with this romper, @shivan_narresh are so talented. Love repping Indian fashion! ❤️ https://t.co/o1SUXaarCT" +05/16/2018,Comedians,@mindykaling,RT @SaltyShep: If you’ve had a tough creative day— remember it happens to everyone who creates art. Here’s Kubrick on 2001 set... https://t… +05/16/2018,Comedians,@mindykaling,@MiniB622 @GWillowWilson She’s incredible! Just want to support her any way I can! +05/16/2018,Comedians,@mindykaling,Yup! https://t.co/RMnqVOe8lf +05/16/2018,Comedians,@mindykaling,"Also it’s yanny not yanni, let’s not be cute about it" +05/16/2018,Comedians,@mindykaling,It’s Yanny https://t.co/p03ljzpomJ +05/16/2018,Comedians,@mindykaling,@yashar You’re insane. This is like me not seeing elephants in your posts about elephants +05/16/2018,Comedians,@mindykaling,@chrissyteigen I bought your cookbook. I loved it. And now you betray me? #yanny +05/16/2018,Comedians,@mindykaling,@SashaBanksWWE Hi! +05/16/2018,Comedians,@mindykaling,"Riz! I am obsessed with this comic book, I’ve read them all. I love Kamala Khan. https://t.co/f3PevhfUzv" +05/15/2018,Comedians,@mindykaling,2018 Graduation is lit. 🔥 Kelly would be proud. https://t.co/9Mzi6JPxuG +05/15/2018,Comedians,@mindykaling,Ain’t it shocking what love can do? https://t.co/PaqCAyMJUS +05/15/2018,Comedians,@mindykaling,The song that most encapsulates my soul is “So Emotional” by Whitney Houston. I was so lucky to grow up waiting for… https://t.co/fUVfIPjFAB +05/15/2018,Comedians,@mindykaling,@jackburditt @TraceyWigfield he would go on the ride and say loudly “that’s a lot of dinosaurs!” over and over. He needed to go +05/14/2018,Comedians,@mindykaling,I think we will regret this tiny sunglasses look +05/14/2018,Comedians,@mindykaling,"@AkashaRichmond hi Akasha, I love Akasha and miss Sambar. I wanted to get in touch with you! ❤️" +05/14/2018,Comedians,@mindykaling,"@ChrisEvans Oh my god, your mother is stunningly beautiful." +05/14/2018,Comedians,@mindykaling,@HAbbaraju What a wonderful message! She must be so proud of you! +05/14/2018,Comedians,@mindykaling,@BethGrantActor Oh I love this so much. Happy Mother’s Day Beth! ❤️ +05/14/2018,Comedians,@mindykaling,"Happy Mother’s Day to those of us who miss our moms. I have a kid now who is the joy of my life, but each year that… https://t.co/L85DBXpBk9" +05/13/2018,Comedians,@mindykaling,"I’ll just let this picture explain itself. Happy Birthday, @StephenAtHome 🎉 https://t.co/RP6BiirvFa" +05/13/2018,Comedians,@mindykaling,Saturday smoothness. Thanks to #FawltyTowers https://t.co/HwpMqSOUbO +05/12/2018,Comedians,@mindykaling,“WOOOOW! So PROUD of these women standing up for change! #TimesUp #Cannes https://t.co/bAYOHtlmlH +05/11/2018,Comedians,@mindykaling,THIS 👏🏾 IS 👏🏾 A 👏🏾 MOOD! 👏🏾 @JLo @rihanna https://t.co/qvlfyB5zLC +05/11/2018,Comedians,@mindykaling,RT @awkwafina: Man this is inspiring as hell https://t.co/PjKTvIB2jN +05/11/2018,Comedians,@mindykaling,"RT @xor: ""Marisa Tomei"" is an anagram for ""It's-a me, Mario""" +05/10/2018,Comedians,@mindykaling,Photo bombing is the worst. We didn’t want you in the photo!! +05/10/2018,Comedians,@mindykaling,It takes 8. #Oceans8 🎱 https://t.co/nyeKOBkCo8 +05/09/2018,Comedians,@mindykaling,@bjnovak your mailbox is full and I take it as a personal affront. Go get your mailbox. +05/09/2018,Comedians,@mindykaling,It is a beautiful night to walk home tipsy in New York City and that is precisely what I’m doing +05/08/2018,Comedians,@mindykaling,"After all, I gave my word....My @Cannes Jury lewks reviews is up now on my Insta-Story! 👀💁🏾‍♀️👠😍🌴🌟👯‍♀️👙🙌😘 https://t.co/tn5BsIc2r3" +05/08/2018,Comedians,@mindykaling,"It’s finally out! I love these two, I wrote the foreword to their book, pick up a copy today! https://t.co/fhZW1fC7SU" +05/08/2018,Comedians,@mindykaling,I SAT NEXT TO HIM! #WakandaForever https://t.co/bQfQWZv5zG +05/08/2018,Comedians,@mindykaling,My greatest joy of social media. @ikebarinholtz https://t.co/ZKnAC1XO9w +05/08/2018,Comedians,@mindykaling,#MetGala 🌟 https://t.co/mkdCyUdvw4 +05/08/2018,Comedians,@mindykaling,#MetGala 👋 https://t.co/ow7DA8nxlw +07/01/2018,Comedians,@dopequeenpheebs,"RT @nowthisnews: 'If you shoot me, you better shoot straight. There's nothing like a wounded animal.' — Rep. Maxine Waters had a powerful m…" +06/30/2018,Comedians,@dopequeenpheebs,"@mariluza_dias @daniDpVox @alison_wanders @U2 @U2Community One of my close friends, Alison! 😍" +06/29/2018,Comedians,@dopequeenpheebs,"So excited, boo boos! I teamed up with @Nordstrom to help celebrate their upcoming Anniversary sale. Early access f… https://t.co/RHVbrrZyxq" +06/29/2018,Comedians,@dopequeenpheebs,@Allie_Cat_Swag 🙏🏾🙏🏾🙏🏾🙏🏾 +06/27/2018,Comedians,@dopequeenpheebs,"OMG! First Phoebe Robinson & Friends sold out on Monday, so we’re adding a late show! Get your tix now before they’… https://t.co/5vUDJrWlgR" +06/27/2018,Comedians,@dopequeenpheebs,@mindykaling https://t.co/iYJptPAkjh +06/27/2018,Comedians,@dopequeenpheebs,@maggiebertram @HubSpot @2DopeQueens @LenaWaithe @INBOUND Omg! Bring your Bono is the highest honor. We must meet when I’m in town! +06/26/2018,Comedians,@dopequeenpheebs,@jayohtaytho I was there!!! Did you enjoy the show??? +06/25/2018,Comedians,@dopequeenpheebs,😑😑😑😑😑. Mar-a-lago had 15 health code violations and I 10000% hate that I had to go on Fox News’s Trash ass website… https://t.co/yC6k5GXZ5L +06/25/2018,Comedians,@dopequeenpheebs,Hi Q Hi! I’m doing a show at @UnionHallNY with some of my favorite ppl on July 24th. Get your tix now before they’r… https://t.co/S5Zh76DWFA +06/24/2018,Comedians,@dopequeenpheebs,"@klmenard Lmaooo. Not weird. Final confirmation that it’s me, boo boo!" +06/23/2018,Comedians,@dopequeenpheebs,“Illegally selling water without a permit.” That little girl is 8 years old. Motherfucking white kids are constantl… https://t.co/9DrqFeXRkM +06/23/2018,Comedians,@dopequeenpheebs,@lovesfiercely @FunnyAsianDude He was one of my all-time favorite guests. So funny and wise. I can’t wait for him t… https://t.co/wBzSvqpZqR +06/23/2018,Comedians,@dopequeenpheebs,"Biiiiiiiiiiiiiitch, can you assemble all the black & brown families who’ve had loved ones killed by police so they… https://t.co/6ZvIJOhJ9T" +06/23/2018,Comedians,@dopequeenpheebs,@icecreamtamales Masterchef Junior is sooooooo good! +06/22/2018,Comedians,@dopequeenpheebs,Who. 👏🏾 Da. 👏🏾 Fuck. 👏🏾 Said 👏🏾 This?! #Lies https://t.co/TqYimGAvBK +06/22/2018,Comedians,@dopequeenpheebs,"A day and woman we all need to celebrate. Also, let’s give her some royalties! 👏🏾👏🏾👏🏾 https://t.co/qimUaaqg5K" +06/21/2018,Comedians,@dopequeenpheebs,@rgay #Goals. Congrats! You’re so inspiring! https://t.co/gka9DSxVDZ +06/20/2018,Comedians,@dopequeenpheebs,"@MattRogersTho Lmaooooooo. This is so ignorant. Straight ppl, please sit down, shut the fuck up, and quit making it… https://t.co/mSMlYg3ued" +06/20/2018,Comedians,@dopequeenpheebs,ARE YOU KIDDING?! Here’s an idea! Stop putting babies in fucking cages. The audacity that you two have to be out in… https://t.co/YOUgPVQ8Xr +06/19/2018,Comedians,@dopequeenpheebs,@barberjohn @katiefward @YouDonKnowMe @vanessabayer @GillianJacobs @_richardmadden I loved THE BIG SICK so much! +06/19/2018,Comedians,@dopequeenpheebs,If this Keebler elf looking mofo doesn’t sit his ass down somewhere and read a damn book and understand that what h… https://t.co/TvkxZEMtmt +06/19/2018,Comedians,@dopequeenpheebs,RT @saladinahmed: these people are more upset seeing black athletes kneeling than they are hearing 4-year-olds screaming in terror. just *t… +06/19/2018,Comedians,@dopequeenpheebs,"@thunderup09 @msjwilly I would def do something ig. Jess would mostly do something pretty smart, but where’s the fun in that? Haha. 😜" +06/18/2018,Comedians,@dopequeenpheebs,"@JustDesmund @msjwilly @jessicabennett See ya there, boo boo!" +06/18/2018,Comedians,@dopequeenpheebs,"@nikkidjensen Welcome to the tribe, honey! https://t.co/a27MiOYlHt" +06/16/2018,Comedians,@dopequeenpheebs,"RT @thatonequeen: Sometimes Drag Race makes me realize other things about the world. NOT ALL, but a lot of the most popular queens fall int…" +06/16/2018,Comedians,@dopequeenpheebs,@ashleyn1cole https://t.co/WsxKlIAcze +06/15/2018,Comedians,@dopequeenpheebs,RT @cameronesposito: My new special is AVAIL NOW!! https://t.co/mrdDRgIvPt to stream free or purchase to benefit @RAINN https://t.co/bxied9… +06/15/2018,Comedians,@dopequeenpheebs,@aflorall 🤣🤣🤣🤣 +06/15/2018,Comedians,@dopequeenpheebs,@karilebby @netflix You can make it!! https://t.co/u2LohQWnr9 +06/14/2018,Comedians,@dopequeenpheebs,"RT @kendrickmaslany: some girl at my job said “I’m not scared to admit I’m homophobic”, so I told my superior and she got fired today lmao" +06/13/2018,Comedians,@dopequeenpheebs,@Marix82 THANK YOU! 😘 +06/12/2018,Comedians,@dopequeenpheebs,"🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣😭😭😭😭😭😭😭😭😭😭😭😭How you gonna try and drag him when you misspelled the word “too?” It’s three letters, bruh. https://t.co/1NQbuGo3GU" +06/11/2018,Comedians,@dopequeenpheebs,"@marenjmitchell I got invited to go, but I’m in Atlanta shooting a movie. Absolutely devastated!" +06/11/2018,Comedians,@dopequeenpheebs,@MorganJerkins @tylercoates https://t.co/4X0r52tMEz +06/11/2018,Comedians,@dopequeenpheebs,"RT @havingfunsaving: #ad OMG The Slay Team @ElizabethBanks, @LauraBellBundy, @ChrissieFit, @DopeQueenPheebs & Cecily Strong are totally ""Cr…" +06/10/2018,Comedians,@dopequeenpheebs,@ragsmurph @U2 Haha. I’m going to all the MSG shows! +06/09/2018,Comedians,@dopequeenpheebs,@JasonFarrJokes Totally. +06/09/2018,Comedians,@dopequeenpheebs,@ashleympetrey Resisting. Like how ppl act like MLK Jr.’s was mostly peaceful when the reality is he was under thre… https://t.co/YP082V3ij4 +06/09/2018,Comedians,@dopequeenpheebs,@ashleympetrey Exactly. Forgot to mention that part. Haha. I’m just so mad at #45. Idk who he thinks he’s fooling o… https://t.co/0rFLd3YbMN +06/09/2018,Comedians,@dopequeenpheebs,@AlePlaysWStars Lmaoooo. This was a very bad game. 🤣🤣😭😭 +06/08/2018,Comedians,@dopequeenpheebs,Huh? I guess he’s gonna pretend Ali’s didn’t protest America’s injustices. To consider this empty ass “gesture” whe… https://t.co/8VveDZjsEJ +06/08/2018,Comedians,@dopequeenpheebs,"@SymoneDSanders Ummmmm, this person is so ignorant. https://t.co/htPnlmDTtB" +06/08/2018,Comedians,@dopequeenpheebs,"RT @CBSThisMorning: .@GayleKing had an emotional reaction to the new #WatchingOprah exhibit at @NMAAHC: ""She really is a good human who jus…" +06/07/2018,Comedians,@dopequeenpheebs,@TheNelsman Thank you! “Zooropa” is such an overlooked album when it had so many amazing songs on it! 🙌🏾🙌🏾🙌🏾 +06/07/2018,Comedians,@dopequeenpheebs,@KristinDavis @SJP @KimCattrall @CynthiaNixon Congrats! What a beautiful photo and a beautiful show. You touched so… https://t.co/5gIckSHRVM +06/07/2018,Comedians,@dopequeenpheebs,@fee_therese @U2 ⚰️⚰️⚰️⚰️ +06/06/2018,Comedians,@dopequeenpheebs,@alladinsan3 @U2BROTHR OMG! Hi!!! +06/06/2018,Comedians,@dopequeenpheebs,@fee_therese @U2 😭😭😭😭😭😭🤣🤣🤣🤣🤣🤣 +06/06/2018,Comedians,@dopequeenpheebs,@laurensieben Yay! We like the same people! Aren’t we cute! +06/06/2018,Comedians,@dopequeenpheebs,"@shreyann 😘😘😘. I got you, boo!" +06/05/2018,Comedians,@dopequeenpheebs,"@Carrie_Bland @_bacongod_ @ashleydianette Oh! Didn’t know it was your tweet, Ashley! Thanks for the laughs!!!" +06/05/2018,Comedians,@dopequeenpheebs,🤣🤣🤣🤣😭😭😭😭⚰️⚰️⚰️⚰️ https://t.co/pn2xo6YdoQ +06/05/2018,Comedians,@dopequeenpheebs,@TinyT_I_M Thank you! It’s @StellaMcCartney!! +06/05/2018,Comedians,@dopequeenpheebs,@corriepurcell https://t.co/gdnSjo9XNS +06/04/2018,Comedians,@dopequeenpheebs,"RT @2DopeQueens: ""She could pull a full Beyoncé — speaking through her work expressly — without filtering her thoughts through an interlopi…" +06/04/2018,Comedians,@dopequeenpheebs,@curlycomedy 😘😘😘😘 +06/04/2018,Comedians,@dopequeenpheebs,@carsonfrae https://t.co/wvmBGndYEX +06/03/2018,Comedians,@dopequeenpheebs,@annadrezen @vanessabayer 😘😘😘😘 +06/03/2018,Comedians,@dopequeenpheebs,@jimwilbourne @2DopeQueens https://t.co/a4uBba8YRw +06/03/2018,Comedians,@dopequeenpheebs,RT @Travon: 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 464… +06/01/2018,Comedians,@dopequeenpheebs,@raeleejgrimm It’s the seas finale! +06/01/2018,Comedians,@dopequeenpheebs,@hellodcro https://t.co/0kTkz0SAlc +06/01/2018,Comedians,@dopequeenpheebs,@katietombstone Liked it better sleeveless* Jeez. Auto correct is a mess. +05/31/2018,Comedians,@dopequeenpheebs,"@katietombstone Hahaha. They cut the sleeves off because I liked it Breyer sleeveless, too! Send me a pic when you’re done!" +05/31/2018,Comedians,@dopequeenpheebs,@SimoneRSM Ooooh! I hope you like the movie! https://t.co/zvFuTwuWG5 +05/31/2018,Comedians,@dopequeenpheebs,@rachel_handler https://t.co/DAvan30FJZ +05/31/2018,Comedians,@dopequeenpheebs,All of the love and hugs to @adamlevine & @maroon5 for asking me to be a part of the amazing “Girls Like You” music… https://t.co/KK20MqqsrL +05/30/2018,Comedians,@dopequeenpheebs,@awkwafina https://t.co/YkZR3NlR9d +05/30/2018,Comedians,@dopequeenpheebs,@leonardmaltin @YouDonKnowMe @jessiemaltin @DanielleHope26 @NetflixUK @GillianJacobs @vanessabayer @_richardmadden… https://t.co/LAXJtwFNxO +05/30/2018,Comedians,@dopequeenpheebs,@MissNyle 😘😘😘😘 +05/30/2018,Comedians,@dopequeenpheebs,"@MorganJerkins Honestly, I tried reading it and got 50 pgs in and stopped. Never picked it up again. 🤷🏽‍♀️🤷🏽‍♀️🤷🏽‍♀️" +05/29/2018,Comedians,@dopequeenpheebs,BLOOP! I’m so pumped to join the cast of #WhatMenWant! Can’t wait for y’all to watch this!: https://t.co/gx2pUCtegd +05/29/2018,Comedians,@dopequeenpheebs,@ScottAukerman You are truly a gem! Please have me on more of your podcast so I can be a mediocre guest and laugh a… https://t.co/FbSITFpYrF +05/28/2018,Comedians,@dopequeenpheebs,@AmberSeva Link?!?! This is nuts! +05/28/2018,Comedians,@dopequeenpheebs,RT @BravoWWHL: TONIGHT at 11/10c it’s #WWHL w/ @GillianJacobs @vanessabayer & @dopequeenpheebs! https://t.co/5PUeV8DYEe +05/27/2018,Comedians,@dopequeenpheebs,@bekahparrish Just stare and scream. Haha. +05/26/2018,Comedians,@dopequeenpheebs,@NateMartinTO Ooooo! I like that! +05/25/2018,Comedians,@dopequeenpheebs,@iKeralot THANK YOU SO MUCH! +05/24/2018,Comedians,@dopequeenpheebs,Hell. Yes. None of us are equal until all of us are. @ONECampaign’s #PovertyisSexist movement is so vital that I’m… https://t.co/sxsWrlG8sw +05/23/2018,Comedians,@dopequeenpheebs,"Exciting news, boo boos! I went on @LateNightSeth to reveal the cover from my upcoming book “Everything’s Trash, Bu… https://t.co/e1gGWLWIcr" +09/26/2014,Comedians,@dopequeenpheebs,"RT @amandaseales: i need to publish a book of our greatest #scandal tweets cc: @Bossip +@MadameNoire @imcharlaface @PRobinsonComedy @Blacktr…" +09/24/2014,Comedians,@dopequeenpheebs,RT @amandaseales: Lookin like 4 sides of a Shea butter box! Laughs w/ @chescaleigh @PRobinsonComedy @msjwilly at @UCBTheatreEast http://t.c… +07/02/2018,Comedians,@iliza,"i.e.,what scares you to the point of anger? 😮👿 +Could be anything that at first upset you then makes you made, e.g.,… https://t.co/7T2LsKgDED" +07/02/2018,Comedians,@iliza,#savedbythemax @ Saved By The Max - Saved By The Bell Pop Up Shop Diner & Bar https://t.co/IXiIme1aDE +07/01/2018,Comedians,@iliza,Re-enacting my wedding for the sold out @icehousecomedy shows last night. Thank you all so much for being 🔥… https://t.co/U05y2VztcQ +07/01/2018,Comedians,@iliza,This is tonight. Two shows. Gonna do my new hour twice. 🦊 will be there. ❤️🇺🇸🎉✌️ @ Ice House Comedy Club https://t.co/5pPtVZo9Ij +06/30/2018,Comedians,@iliza,@danielletbd @NetflixIsAJoke I would never leave her out! https://t.co/Ok7nSgrFY7 +06/29/2018,Comedians,@iliza,#montreal I will be doing ONE NIGHT @justforlaughs JULY 27! Get your tickets at https://t.co/zUHxXXLnfP and see me… https://t.co/RynSnQppWM +06/28/2018,Comedians,@iliza,RT @rejects: I’m all-in on the new @iliza. https://t.co/tksGOthSjP +06/28/2018,Comedians,@iliza,BREAK OUT YOUR RAZR PHONE AND TEXT YOUR FRIENDS TO WATCH MY NEW @NetflixIsAJoke SPECIAL #ElderMillennial on JULY 24… https://t.co/hrOlwZzapT +06/28/2018,Comedians,@iliza,@LucysGorge YES! Come see me in Maui or Honolulu! https://t.co/dxmHR7oaxt +06/28/2018,Comedians,@iliza,"Tonight, #partygoblin ©️ got to the her story of how she came to be. 💚It was tearful, true and super gross. Thank y… https://t.co/5osYNMGvy2" +06/27/2018,Comedians,@iliza,@bennallsop @NetflixIsAJoke @UGG @juicycouture @netflix soon +06/27/2018,Comedians,@iliza,@JenniMarie684 @channingtatum OH MY GOD AND GET A PICTURE!!!! +06/26/2018,Comedians,@iliza,Today @billnye gave me a pin off his own lapel and now I have space credentials and I’m gonna send a picture to my… https://t.co/j1ThwyNAaF +06/26/2018,Comedians,@iliza,"#dogfear Anytime, anywhere. https://t.co/HVOEtixOZu" +06/26/2018,Comedians,@iliza,"Today I showed @billnye the densest body in our galaxy, a star in the Lamb Cluster nebula, Star SmalliusRarian384… https://t.co/vtLdZpqy8X" +06/25/2018,Comedians,@iliza,"2 SHOWS THIS SATURDAY IN #PASADENA 🦊 WILL BE THERE! +#standupcomedy #comedy #lastandup #standup #eldermillennialtour… https://t.co/xMOLES1GqN" +06/25/2018,Comedians,@iliza,I’ll be at The Mirage @themiragelv for #4thofjuly weekend! Come see me and @hunter_hill and grab your VIP 🎟🤝 ❤️at… https://t.co/OOD6jMozNz +06/25/2018,Comedians,@iliza,@SrhHdlw Me and the people putting out all the artwork and promo stuff for the #ElderMillennial @NetflixIsAJoke special! +06/25/2018,Comedians,@iliza,"RT @_ChelseaChelsea: @hannahrae97 @brookespencer22 BOOM, Gladys. LET’S. PARTY. +-bags of deli turkey +-local pharmacy employees +-pregaming wi…" +06/25/2018,Comedians,@iliza,@HaydenCreates @dejecteddog hmmmmmmmmmmm? +06/25/2018,Comedians,@iliza,@jakesonaplane Force'em! +06/25/2018,Comedians,@iliza,Are you planning an #ElderMillennial watch party? We want to know about it! +06/25/2018,Comedians,@iliza,@urbostonceltics @EmersonCollege We actually were friends haha +06/25/2018,Comedians,@iliza,1997- Present: An autodidactic education in comedy. ❤️There is no right or wrong way to love comedy. Some people ha… https://t.co/32eIUSpRul +06/24/2018,Comedians,@iliza,We would get our fake IDs from #oklahoma because they didn’t have holograms so they were easy to replicate. “Just a… https://t.co/DIcoh2fvt0 +06/24/2018,Comedians,@iliza,Found my @emersoncollege senior yearbook. #boston #emerson #emersoncollege #yearbook #salad https://t.co/jxRZxlDZgh +06/23/2018,Comedians,@iliza,RT @Hunter_Hill: Two sold out shows @RecRoomHB w/ @iliza tonight! Super excited. +06/23/2018,Comedians,@iliza,"We have to start having real conversation with each other, not from anger but to further understanding.I don't like… https://t.co/vKh1h4yHRE" +06/23/2018,Comedians,@iliza,"@tyger429 I'm saying this not from a place of anger but education. You don't start with murder, you start with gal… https://t.co/iO1I2JHTXa" +06/22/2018,Comedians,@iliza,"And the saddest part is, you can't bring up immigration without people saying ""oh so just let them all in?"" or ""LET… https://t.co/rlBSnrS8o1" +06/22/2018,Comedians,@iliza,"I was not a Trade Unionist.Then they came for the Jews, and I did not speak out—Because I was not a Jew. Then they… https://t.co/cMMzw8HYuf" +06/22/2018,Comedians,@iliza,I can't believe this isn't the first time I've felt compelled to post this... Remember the words of Martin Niemölle… https://t.co/XQmJ0AEjYn +06/22/2018,Comedians,@iliza,never see your kid again and their life is ruined as well? That is insane. That's like cutting off a hand for steal… https://t.co/MgZHFrmjxJ +06/22/2018,Comedians,@iliza,Of course you should be punished for crossing illegally but... Do we not think these punishments are exceeding the… https://t.co/lfi5VBFYpo +06/22/2018,Comedians,@iliza,"He's creating an enemy, coming up with an excessive solution, having YOU pay for it as a tax payer and getting a pe… https://t.co/pDSppBJEGt" +06/22/2018,Comedians,@iliza,You can trot out 100s of people from any group and claim them as the face of a problem. The minority doesn't repres… https://t.co/fMBwWJSst3 +06/22/2018,Comedians,@iliza,This has all the makings of a Holocaust. It's not enough to keep saying #neveragain if we stand by. I'm all for bor… https://t.co/kBMuU7iP0Q +06/22/2018,Comedians,@iliza,RT @AmericanGreedTV: @iliza @HollywoodImprov @TheComedyStore Hey July 24th! What's keepin' ya? New @iliza Special on @netflix . +06/22/2018,Comedians,@iliza,TONIGHT! I'm @HollywoodImprov 8pm show and @TheComedyStore at 9:30! +06/22/2018,Comedians,@iliza,"Oh wow, this gets really good at 1:27!! + +https://t.co/KYrca7U9qs" +06/22/2018,Comedians,@iliza,@kimh0013 I never got through +06/22/2018,Comedians,@iliza,@Kristen_Bashaw That's a trend that's still alive and well in many suburbs of America +06/22/2018,Comedians,@iliza,"@BunsAndBites I cut up so many tights to go under my skirt, ugh" +06/22/2018,Comedians,@iliza,Thanks @Variety https://t.co/ZeA5tDyuM3 !! +06/21/2018,Comedians,@iliza,"4- And I could wake up with a full face of last night's make up, eat 2 burritos, do some odd job, 7 minutes of okay… https://t.co/xBzdqbTk3d" +06/21/2018,Comedians,@iliza,3- I had worn these like 20 dollar trash boots I had gotten at some garbage store on Melrose and they hurt my feet… https://t.co/qJ0THXWyxN +06/21/2018,Comedians,@iliza,"2- monster club promoter, this awful woman in, of course, a fedora, made me pay her for the carton, she wouldn't ev… https://t.co/nwOo5QECiv" +06/21/2018,Comedians,@iliza,"1 - Being an LA #Eldermillennial was gross. I got a job at the coat check for, what was, Pray (now Nightingale Plaz… https://t.co/iFCD1i5Xk2" +06/20/2018,Comedians,@iliza,My greatest #eldermillennial memory is being 23 and thinking we were crushing life because we got into garbage club… https://t.co/QtTZelahX9 +06/20/2018,Comedians,@iliza,@danielletbd THANK YOU FOR THE SUPPORT! +06/20/2018,Comedians,@iliza,"@danielletbd totally, you just have to whisper ""trademarked"" every time you say it." +06/20/2018,Comedians,@iliza,"@danielletbd Hey, thank you for not tagging me in that, I appreciate that. I have no idea how you ended up blocked,… https://t.co/VNsRQBGjvt" +06/20/2018,Comedians,@iliza,"@no_day_but_2day I'd always be like ""it's not Saved by the Bell, but it will do.""" +06/20/2018,Comedians,@iliza,RT @kittykatelc: Let me tell you about my girl crush @iliza and her latest comedy show #ElderMillennial https://t.co/rPLnVapNF4 https://t.c… +06/20/2018,Comedians,@iliza,@kittykatelc Hey! Thank you for this! +06/20/2018,Comedians,@iliza,"@AmberRetro so much, all over everyone." +06/20/2018,Comedians,@iliza,@dayvidgrad Bahahaha devil sticks on every outdoor promenade and in the quad of every college. +06/20/2018,Comedians,@iliza,@LisaKayyye Did? Do. Still do. +06/20/2018,Comedians,@iliza,"Well guys, I'm gonna use all my minutes calling you on my LG Chocolate because @ParisHilton liked my tweet. The… https://t.co/nmWojyk9dF" +06/20/2018,Comedians,@iliza,"#eldermillennial memories also included lot of lower belly exposure, wrist sweatbands, leopard print belts and thin… https://t.co/ypaKD8o254" +06/20/2018,Comedians,@iliza,"@heidig121011 hated handkerchief tops but loved butterfly clips. Ew yeah, those straps fooled no one." +06/20/2018,Comedians,@iliza,@TheHezzEffect Waiting for seconds at a time! +06/20/2018,Comedians,@iliza,"@kisoumcg She was the early 2000s, she guided us. @ParisHilton was our God." +06/20/2018,Comedians,@iliza,"@itschelsfoster And you'd always think ""oh great, I'll make all my calls then"" but somehow I never felt I got my money's worth" +06/20/2018,Comedians,@iliza,@BeingZhenya and roll over minutes +06/20/2018,Comedians,@iliza,"@TehSoundTehFury ""Mom, raving is a way of life. PLUR.""" +06/20/2018,Comedians,@iliza,@Sarah__Deline OMG THE WORST hahaha +06/20/2018,Comedians,@iliza,"What are some of your #eldermillennial memories? Mine are all nightmares: low rise jeans, body glitter, tinted sung… https://t.co/td0sxggH2h" +06/20/2018,Comedians,@iliza,My new and 4th @NetflixIsAJoke special comes out July 24th! So grab your @UGG boots and @juicycouture sweatsuits an… https://t.co/Cs7ZeVSQ4G +06/20/2018,Comedians,@iliza,I’m excited to announce the premiere date of my… https://t.co/vBduCFirzb +06/20/2018,Comedians,@iliza,"I have a very special announcement for you at all 11am PST tomorrow morning... + +https://t.co/1lDsjbte0U https://t.co/692Rp94hQV" +06/19/2018,Comedians,@iliza,HUNTINGTON BEACH! This SATURDAY! I’m running… https://t.co/FQV58M5BXB +06/19/2018,Comedians,@iliza,"@SaltLifeGirl14 Party Goblin says AGN498792O23^*OI&%ROH:HIONVWN'IO43[HOWIGBV;BVJN/LWNKL)*%) + +She has claws, she can't type" +06/19/2018,Comedians,@iliza,@ldisalmostfunny I was just there. I'll be back. Also that drink sounds amazing. +06/19/2018,Comedians,@iliza,Wow! At https://t.co/t3hNHRfBvs When you buy a 💚🦊🍤 pin set you… https://t.co/C4h3XE4IYF +06/19/2018,Comedians,@iliza,"#Newyork in November. 🦊🍁🍂 +See you… https://t.co/bB5GpERwuR" +06/18/2018,Comedians,@iliza,"#Boston 💚🦊🍤 +. +. +. +. +#boston #bostoncomedy… https://t.co/n4ha9uV5Gv" +06/18/2018,Comedians,@iliza,"Your #4thofjuly plans should be as follows: +1)… https://t.co/x1AOHMxbob" +06/16/2018,Comedians,@iliza,You just have to know what’s in these burritos… https://t.co/7tlARdnSgc +06/16/2018,Comedians,@iliza,Oooooo see me headline Kaaboooooo! Get tickets… https://t.co/PyKATezwcH +06/15/2018,Comedians,@iliza,@iliza only looked mildly worried about her… https://t.co/u6z9EYCQ24 +06/15/2018,Comedians,@iliza,NO ONE GETS TO HAVE BLONDE HAIR BUT ME! Jk. Fun… https://t.co/4EOVgPnmTF +06/15/2018,Comedians,@iliza,This was our wedding ode to Velasquez’s “Las… https://t.co/dxf5U3sW0B +06/15/2018,Comedians,@iliza,The one I posted before was blurry so here it is… https://t.co/2OWInsJm1q +06/15/2018,Comedians,@iliza,The one I posted before was blurry so here it is… https://t.co/yIT5jhsL5b +06/15/2018,Comedians,@iliza,Yes I put LED lights in my hair for our first… https://t.co/BOF5Nv4EEZ +06/15/2018,Comedians,@iliza,@wolfegrrl @netflix so soon +06/14/2018,Comedians,@iliza,"Priorities were- +1- Balloon cloud sculpture +2-… https://t.co/YBePcmMlP3" +06/14/2018,Comedians,@iliza,I picked my best friend and threw the bouquet… https://t.co/uiMB6HrEnT +06/14/2018,Comedians,@iliza,I loved my #chuppah - that room was so perfect… https://t.co/X5SEC6sxFO +06/13/2018,Comedians,@iliza,Our wedding 🤵🏻👰🏼🦊 and the full story is at… https://t.co/X6SzfhrMGN +06/12/2018,Comedians,@iliza,@MikeDrucker Putting this on a Father's Day card +06/12/2018,Comedians,@iliza,@cpmcclennan Fish vaginas! +06/12/2018,Comedians,@iliza,@1AndrewRose Such a long walk for the shortest sip of water +06/12/2018,Comedians,@iliza,"I'm HEADLINING kaaboodelmar on Saturday,… https://t.co/xe3hdR7xoW" +06/12/2018,Comedians,@iliza,@MyKneeShakes To let others know they are not alone! *Blows dust *disappears +06/12/2018,Comedians,@iliza,See me in #Montreal at @justforlaughs for one… https://t.co/mnQW9kL5GD +06/10/2018,Comedians,@iliza,"🎉TONIGHT🎉 +Come see me @thecomedystore… https://t.co/3BpynAnKCh" +06/08/2018,Comedians,@iliza,RT @TheComedyStore: 9pm Original Room tonight see @marcmaron @iliza @SklarBrothers @TheoVon +more til 2! Less than 20 tickets left: https:/… +06/08/2018,Comedians,@iliza,@JohnMZ91493 Thank you for reading! +06/07/2018,Comedians,@iliza,RT @lorigibbs: Calgary & Edmonton. I will be opening for @iliza… https://t.co/UEEON6UfEr +06/07/2018,Comedians,@iliza,Today’s… https://t.co/HHaMRbpkD8 +06/07/2018,Comedians,@iliza,RT @HollywoodImprov: TMRW! @Iliza @JamieKennedy @TheoVon @SklarBrothers @RafinhaBastos & @BrianMonarch are taking the stage! Get your ticke… +06/06/2018,Comedians,@iliza,So much rural #canada so little time.… https://t.co/WIXubi8jEQ +06/06/2018,Comedians,@iliza,THIS WEEK I'll be @TheComedyStore TONIGHT: 9:15. THURSDAY: 9:45 FRIDAY: 10:45 SATURDAY: 8:30 & 10:30 AND @HollywoodImprov THURSDAY at 10:15! +06/06/2018,Comedians,@iliza,@CB__Comedy Can't stop won't stop +06/05/2018,Comedians,@iliza,"When my friend @pbernon showed me this hilarious photo mix up in @THR today my first thought was ""Finkle is Einhorn… https://t.co/tZ0hUwsMUd" +06/05/2018,Comedians,@iliza,"May this sticker shame, inspire and or motivate… https://t.co/vXPPMdnShp" +06/04/2018,Comedians,@iliza,"SECOND SHOW ADDED IN PORTLAND! 🌲☕️🧘‍♀️🍻🌥👓🎒 +GET… https://t.co/k2W1nBzmBB" +06/04/2018,Comedians,@iliza,Me looking for places to go for our trip: “I… https://t.co/qqDwOKqTbn +05/31/2018,Comedians,@iliza,"I’M COMING TO EAT YOU, NEW YORK! BLANCHE IS… https://t.co/aHAjhYIPoh" +05/30/2018,Comedians,@iliza,https://t.co/UpNX7h5Bns for your 🎟&🤝 https://t.co/KT01qjxjcf +05/29/2018,Comedians,@iliza,"PORTLAND: We’ve added a second show! Tickets for August 25th go on sale this Friday, June 1st. 🎟 https://t.co/if1Pu3ZKnD" +05/29/2018,Comedians,@iliza,Loving #1968 @CNNOriginals - great history lesson/recap for #MemorialDayWeekend @CNN +05/29/2018,Comedians,@iliza,“The Shade Of It All” https://t.co/651qyHpA76 +05/28/2018,Comedians,@iliza,Add some beauty to your life and follow her… https://t.co/6I8VRWe05k +05/27/2018,Comedians,@iliza,Thank you to thejointstaff @the_uso for… https://t.co/xOk0Zkg5nh +05/27/2018,Comedians,@iliza,My fans remembered that a year ago today I got… https://t.co/oAX7whrvsU +05/26/2018,Comedians,@iliza,"@KelseyEIngram Nice try, pretty girl! 🤗😍" +05/26/2018,Comedians,@iliza,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 +Patrick Henry said “Give me… https://t.co/NgEZWRUmEs" +05/26/2018,Comedians,@iliza,@smallpools I AM ON MY HONEYMOON AND I AM SO SAD I MISSED THIS! I got your new single and will be listening to your… https://t.co/q3VaTTncbI +05/26/2018,Comedians,@iliza,RT @HOT107Edmonton: She is the only female and youngest comedian to hold the title of NBC's Last Comic Standing! @iliza Shlesinger will be… +05/24/2018,Comedians,@iliza,"#eldermillennialtour has bar laced its sneakers,… https://t.co/g4rTPLlqFw" +05/24/2018,Comedians,@iliza,"#eldermillennialtour has bar laced its sneakers,… https://t.co/ZZJv4R3GaN" +05/21/2018,Comedians,@iliza,The #eldermillennialtour is selling OUT! And we… https://t.co/fefJS2tTtP +05/18/2018,Comedians,@iliza,Tickets are now on sale for #JFLMTL! https://t.co/y02GKu9I5I https://t.co/MmbG1gRLQ8 +05/17/2018,Comedians,@iliza,"I can hear both. But if you never said “yanny” which isn’t a thing, everyone would hear Laurel. Just like when som… https://t.co/tqu9sbVjxF" +05/17/2018,Comedians,@iliza,@ditzkoff Oh wow I am very much looking forward to checking this out! Been a fan of yours for a while and this looks awesome!! +05/17/2018,Comedians,@iliza,"RT @exclaimdotca: Just for Laughs adds names to the #JFLMTL lineup, continues bid to become comedy's Coachella: https://t.co/TJAmkXNBS6 htt…" +05/17/2018,Comedians,@iliza,@CraigGeraghty Awwedding twins!!! +05/17/2018,Comedians,@iliza,MONTREAL! Every few years I return to your city… https://t.co/wT1OrwlA5I +05/16/2018,Comedians,@iliza,RT @iliza: Hey Party Goblins! Join me for Just For Laughs Montreal July 27th! Pre-sale tickets are available now with code JFLMTL. https://… +05/16/2018,Comedians,@iliza,It’s in print so it has to be true! Thanks @usweekly https://t.co/mmJYMsHpBY +05/16/2018,Comedians,@iliza,Hey Party Goblins! Join me for Just For Laughs… https://t.co/heGFtUxRGa +05/16/2018,Comedians,@iliza,Hey Party Goblins! Join me for Just For Laughs Montreal July 27th! Pre-sale tickets are available now with code JFL… https://t.co/NJvPkEqxLY +05/16/2018,Comedians,@iliza,RT @wlcmdistraction: #GirlLogic by @iliza is $1.95 on @audible_com TODAY ONLY!!! Go buy it now! You have no excuses... unless you're a chea… +05/16/2018,Comedians,@iliza,"@united can someone DM me about why, stuck in Austria, you guys kicked me off my flight and put me on a later fligh… https://t.co/C05uVDi3fE" +05/15/2018,Comedians,@iliza,RT @the_USO: Thanks @iliza for joining us as a Force Behind the Forces! #BeTheForce https://t.co/btUXarkV6X +05/15/2018,Comedians,@iliza,See you in a few weeks my special lamb. In 🇮🇹 you are piccolo e… https://t.co/DeBnE4vAmG +05/15/2018,Comedians,@iliza,I'm proud to wear my support of our service men & women! #BeTheForce Behind the Forces with @the_USO by supporting… https://t.co/O03dqxpaZs +05/14/2018,Comedians,@iliza,RT @GreyEagleResort: Congratulations to @iliza and @galuten on their beautiful wedding! Catch her in all her newlywed hilarity this August… +05/14/2018,Comedians,@iliza,"@KAABOODELMAR @galuten Aw, thank you. See you guys in September 🎤☀️🌴" +05/14/2018,Comedians,@iliza,RT @usweekly: Former 'Last Comic Standing' winner Iliza Shlesinger marries chef Noah Galuten https://t.co/FdzroQD99N @iliza @galuten +05/14/2018,Comedians,@iliza,And here are the 534 rhinestones and pearls I glued to my Nikes. Thanks for mentioning that detail @usweekly… https://t.co/ms85V6gJkd +05/14/2018,Comedians,@iliza,"Turns out, “Thanks so much for coming out tonight” applies to ending comedy shows and weddings. On behalf of me and… https://t.co/4wEYn5nYVb" +05/14/2018,Comedians,@iliza,@AmericanGreedTV @ChuckCNBC Thanks guys! +05/13/2018,Comedians,@iliza,"#Repost @usweekly with get_repost +・・・ +Comedian Iliza Shlesinger has… https://t.co/CErXyqYMxK" +05/13/2018,Comedians,@iliza,RT @usweekly: Comedian Iliza Shlesinger marries chef Noah Galuten https://t.co/FdzroQD99N @iliza @galuten +05/13/2018,Comedians,@iliza,Comedian Iliza Shlesinger Marries Chef Noah Galuten https://t.co/zPkDOFhDYk SMOKEY HUSKY HAS A REAL NAME!!! +05/12/2018,Comedians,@iliza,"RT @LilMsShrtCake: @iliza wanted2say Congrats🍾🍀👰🏼🎩I’ve been👀all ur adventures w Smokey @galuten he’s def the1, he truly adores U & Bebo💛 &…" +05/12/2018,Comedians,@iliza,21 Jumpsuit @ Drago Centro https://t.co/YWmGDKsMsI +05/10/2018,Comedians,@iliza,RT @RecRoomHB: Just announced & tickets are MOVING! Don’t miss our BFF @iliza! One night. Two shows. Share the gospel. https://t.co/8qEtl3Q… +05/10/2018,Comedians,@iliza,"RT @TheCrofoot: Did you hear? We're bringing @iliza to @michigantheater on September 28th. +Tix: https://t.co/fAYxhcXYUa https://t.co/XX8wuh…" +05/10/2018,Comedians,@iliza,"@BassTrilogy @jimjefferies Like a slow Phoenix, i will rise and return..." +05/10/2018,Comedians,@iliza,@UncleWolfox No bottled water. Most people are not that dehydrated that we need compacted water within arm’s reach at all times. +05/10/2018,Comedians,@iliza,@TheMrWulff12 Why would I have a lawn when there is a drought! Now step away from my SUV! +05/10/2018,Comedians,@iliza,"Smoking cigarettes looks cool, there is no denying it. But aside from that? It’s a vile selfish habit and you compo… https://t.co/My96wlnUvf" +05/10/2018,Comedians,@iliza,I did it. I finally said “try a trash can next time” to someone who threw their LIT cigarette into the street. I’m… https://t.co/O1kYNIbaEB +05/10/2018,Comedians,@iliza,@AmyKinLA No one who would carry that is actually eating that. +05/09/2018,Comedians,@iliza,LAS VEGAS! Come for the 🇺🇸 stay for the #partygoblin #4thofjuly… https://t.co/nBFXJui1Y1 +05/09/2018,Comedians,@iliza,"RT @GregLongstreet: Why are the closing credits to ""Predator"" like the opening credits to a 70s/80s era sitcom? https://t.co/n2xzqRxDFD" +05/09/2018,Comedians,@iliza,SECOND SHOW ADDED IN #Boston @the_wilbur GO TO https://t.co/H8ipefMDIP for 🎟 VIP… https://t.co/ULKXNMks8U +05/09/2018,Comedians,@iliza,"RT @rBostonComedy: Second show added to see +@Iliza: Elder Millennial tour at @The_Wilbur +Saturday, September 22nd - 9:45PM +Presale HAPPENIN…" +05/09/2018,Comedians,@iliza,"RT @rBostonComedy: Second show added to see +@Iliza: Elder Millennial tour at @The_Wilbur +Saturday, September 22nd - 9:45PM +Presale begins N…" +05/09/2018,Comedians,@iliza,"RT @Do617: ☀️ Good morning, millennials! LATE SHOW ADDED BY POPULAR DEMAND for @iliza #ElderMillenial at @The_Wilbur! Use Code DO617 to get…" +05/09/2018,Comedians,@iliza,"Thank you @WeAreTheMighty and @the_USO for using a picture of me when I had like, really good hair! Support our tro… https://t.co/TlECKRcMZY" +05/09/2018,Comedians,@iliza,Tonight was my last set as a non married woman and I'm glad I got it out of my system because I FUCKED THAT CROWD t… https://t.co/kr4knw8k9g +05/09/2018,Comedians,@iliza,@vanessa_dews YES! Hopefully this winter! (American winter) +05/09/2018,Comedians,@iliza,RT @TheComedyStore: 9pm Original Room @madflavor @realjeffreyross @iliza @SebastianComedy @bobbyleelive @thechrisspencer @SteveRannazzisi @… +05/08/2018,Comedians,@iliza,@unrulyhooly AND MY DOG! +05/08/2018,Comedians,@iliza,@drewmagary @mattufford Just read this- @drewmagary is hilarious and @mattufford i will now follow you into traffi… https://t.co/9c6YDudqvT +05/08/2018,Comedians,@iliza,"RT @drewmagary: Your FUNBAG guest host this week is the incomparable @mattufford, so dig in. https://t.co/n4MeShlhid" +05/08/2018,Comedians,@iliza,"@piersmorgan K, this is what white women would look like with payot... https://t.co/SUoMOZ77bV" +05/08/2018,Comedians,@iliza,I didn’t want to interrupt him while he was having a conversation so… https://t.co/Z9kkkOhHDI +05/08/2018,Comedians,@iliza,@davejorgenson @laurenduca Hahaha +05/08/2018,Comedians,@iliza,Tickets 🎟🎟 VIP 🤝 meet and greet for my #eldermillennialtour at… https://t.co/SQHUbnDXtv +05/08/2018,Comedians,@iliza,#MetGala https://t.co/THFxKOBr44 +05/07/2018,Comedians,@iliza,A “Good Vibes Only” sign in your business is a great way to let people know your staff is incapable but anyone who notices that too uptight. +05/07/2018,Comedians,@iliza,"SECOND SHOW ADDED TO #BOSTON +Venue Presale: Wednesday, 5/9 @ 12PM EST – Thursday, 5/10 @ 11:59PM EST +Presale Code:… https://t.co/Mn400kNAX4" +05/07/2018,Comedians,@iliza,"@hankypanty @JeeyaDhadkDhadk @TheComedyStore Oh wow, thank you!" +05/07/2018,Comedians,@iliza,@lorigibbs @thatonequeen What you need to know about her? ENTER THAT ROOM #PURSEFIRST 👛☝️ +05/06/2018,Comedians,@iliza,@lorigibbs @thatonequeen Also @TheBiancaDelRio is so witty and so quick she makes us look like we just woke up. She is an assassin! +05/06/2018,Comedians,@iliza,@lorigibbs @thatonequeen He is hilarious! +05/06/2018,Comedians,@iliza,@lorigibbs OH MY GOD CALL ME IF YOU HAVE ANY QUESTIONS ABOUT ANY EPISODE EVER +05/06/2018,Comedians,@iliza,@wyldride Omg that is genius hahahahahahah +05/06/2018,Comedians,@iliza,Just a close up of my wedding dress because I want the judgement to be granular and blossom into something I can ca… https://t.co/4w03jDeafo +05/06/2018,Comedians,@iliza,Making these for the honeymoon plane ride that way when i flip out at an airline and get detained in a foreign jail… https://t.co/E1D0Q71OCo +05/06/2018,Comedians,@iliza,"@jakesonaplane Hey man, thanks 🍤" +05/05/2018,Comedians,@iliza,RT @HOT107Edmonton: Iliza Shlesinger brings her Elder Millennial Tour to @RiverCreeCasino on August 18th! Enter now to win tickets to see c… +05/05/2018,Comedians,@iliza,RT @TheComedyStore: 7pm Main Room @DaneCook @marcmaron @iliza @brianmonarch +more! Only 39 tickets left: https://t.co/yvyhW7ekJ2 +05/05/2018,Comedians,@iliza,We overhype mediocrity because we look for anything to represent hope and change... and not all are always capable… https://t.co/qn3pr6SL03 +05/05/2018,Comedians,@iliza,RT @AccessVegas: Iliza Shlesinger Performing Live in #Vegas July 7. Tickets: https://t.co/VOHjpymiNl @iliza https://t.co/xJv9Augss3 +05/05/2018,Comedians,@iliza,I don’t care what a fucking DJ thinks. +05/04/2018,Comedians,@iliza,See you guys Saturday @TheComedyStore SATURDAY AT 9 and 10:30. Main Room. Get 🎟🎟 now. +05/03/2018,Comedians,@iliza,Hair inquiry and tutorial. #hair #bun #fashiom #juice #blonde #caleb… https://t.co/3U155lxEaA +05/02/2018,Comedians,@iliza,Get your tickets at https://t.co/t3hNHRfBvs and don’t yip at me about your city not being… https://t.co/64Oe31nYYj +05/02/2018,Comedians,@iliza,@Taurustempest Beautiful! +05/02/2018,Comedians,@iliza,"RT @Taurustempest: @iliza So happy you're coming to Indy! Tickets: bought! Now, do I make a new shirt or stick with the Kinnamon one? Hmmm.…" +05/02/2018,Comedians,@iliza,@MeganShook Pretty sure i already have this dog +05/01/2018,Comedians,@iliza,I’ll be @TheComedyStore this Saturday night for 2 shows. Starting at 9! +06/04/2018,Comedians,@aliwong,#FYC https://t.co/wy77yUlBL3 +05/30/2018,Comedians,@aliwong,!!!!!!!!!!! https://t.co/01YveutU2c +05/25/2018,Comedians,@aliwong,Is Sunday here yet????!!!! https://t.co/XMAlqjNQsl +05/21/2018,Comedians,@aliwong,This made my day! https://t.co/HV159BlzUW +05/16/2018,Comedians,@aliwong,Thank you for watching https://t.co/M6geV7jq0c +05/16/2018,Comedians,@aliwong,RT @ImMegDonnelly: WHO’S WATCHING #AMERICANHOUSEWIFE TONIGHT?!?!?!? 🤩🤩🤩 +05/15/2018,Comedians,@aliwong,RT @MadyColey: My mom trying to watch the new @aliwong Netflix special and DYING https://t.co/bXbpk2u5Nn +05/14/2018,Comedians,@aliwong,@mulaney 😭😭😭😭😭 +05/13/2018,Comedians,@aliwong,"Happy Mother’s Day to the true, original #HardKnockWife https://t.co/2KSfpqsW8P" +05/08/2018,Comedians,@aliwong,#fysee https://t.co/xeKs0kZNqK +05/07/2018,Comedians,@aliwong,RT @TheAVClub: .@aliwong joins @TiffanyHaddish in #BoJackHorseman team's new show https://t.co/1zvzogRmWD https://t.co/WWBoCVEdFt +05/05/2018,Comedians,@aliwong,I have watched this 10 times today. I plan on watching it 10 more times before I sleep. https://t.co/S0RMBV3P3a +05/03/2018,Comedians,@aliwong,@davidchang @uglydelicious @colbertlateshow !!!!!! +05/02/2018,Comedians,@aliwong,https://t.co/dqLshTINdY +05/02/2018,Comedians,@aliwong,RT @WendyMolyneux: Dennis Miller all night tonight figuring out those perfect Michelle Wolf burns for tomorrow. https://t.co/gapdqQsSOF +05/01/2018,Comedians,@aliwong,RT @ItsMeCathi: James Shaw Jr. is paying for the funeral of each of the four Waffle House shooting victims out of the gofundme monies raise… +04/30/2018,Comedians,@aliwong,"@mulaney sold out a bajillion shows at Radio City, and if you watch this special, you'll see why. i cannot wait. https://t.co/8wjsmSIyGP" +04/30/2018,Comedians,@aliwong,BOSTON! The first 3 shows are SOLD OUT but there are a few tix left for the 4th this Saturday. Tix here: https://t.co/8IazHOyzlr +04/30/2018,Comedians,@aliwong,RT @neiltyson: When did it become okay to be more offended by what someone with no power says than by what someone with power does? +04/29/2018,Comedians,@aliwong,@michelleisawolf was freaking AMAZING tonight at the #WHCD !!!!! +04/29/2018,Comedians,@aliwong,@michelleisawolf SHE WAS AMAZING!!!! https://t.co/TsrDvLP0Xh +04/29/2018,Comedians,@aliwong,RT @iamwandasykes: This man is a Hero! I want him in the next Black Panther movie! #bravery #compassion I ❤️ this dude! https://t.co/sEVz8… +04/29/2018,Comedians,@aliwong,RT @Emma4Change: my hero James Shaw Jr. https://t.co/BRnuYEURdv +04/19/2018,Comedians,@aliwong,@TheComedyStore THANK YOU!!! +04/19/2018,Comedians,@aliwong,"RT @anthonyjeselnik: Ali Wong is one of the absolute funniest comics working right now. And watching this trailer, it's impossible to see…" +04/18/2018,Comedians,@aliwong,@Bradleyduaneinc May 13! +04/17/2018,Comedians,@aliwong,THESE ARE MY FRIENDS AND I LOVE THEM SO MUCH! https://t.co/TGdpiIrH4N +04/16/2018,Comedians,@aliwong,My homie @amyschumer stars in a new movie #ifeelpretty opening this Friday!!!! https://t.co/41KwJhq0EM +04/13/2018,Comedians,@aliwong,RT @TheEllenShow: .@AliWong has suffered enough. https://t.co/O5FpB8GloO +04/13/2018,Comedians,@aliwong,"RT @NetflixIsAJoke: .@AliWong is back, she's twerking, and she's ready to deliver. Mother's Day 2018. #HardKnockWife https://t.co/afNg4ZTEkN" +03/30/2018,Comedians,@aliwong,Oh my gahds!!!!! https://t.co/RgUHshJowz +03/28/2018,Comedians,@aliwong,"RT @kumailn: ICE arrests have increased 30%. The fastest-growing category of arrests? Those with no criminal records. + +That's why I joined…" +03/27/2018,Comedians,@aliwong,RT @dianeguerrero__: The #WeHaveRights series by @ACLU empowers you to know and defend your rights in encounters with ICE. https://t.co/Iy… +03/26/2018,Comedians,@aliwong,"RT @kearnystreet: Celebrating 45 brave years @kearnystreet, the first multidisciplinary API arts org that has supported artists like @aliwo…" +03/23/2018,Comedians,@aliwong,RT @Variety: 'Fresh Off the Boat' showrunner Nahnatchka Khan is reteaming with @aliwong and @parkrandall for a @netflix romantic comedy htt… +03/23/2018,Comedians,@aliwong,🙌 https://t.co/WCTnmsAxue +03/15/2018,Comedians,@aliwong,@bader_diedrich 😘😘😘 +03/14/2018,Comedians,@aliwong,RT @KaplanAaron: Catch an all-new episode of @AmericanWifeABC TONIGHT at 9:30/8:30c on @ABCNetwork!! @KatyEMixon @bader_diedrich @ImMegDonn… +03/14/2018,Comedians,@aliwong,"RT @rBostonComedy: FOURTH SHOW ADDED to see @aliwong +at @TheChevalierMA Theatre in Medford +Saturday, May 5th - 9:45pm +Get tickets before an…" +03/14/2018,Comedians,@aliwong,@aparnapkin I ADORE U +03/13/2018,Comedians,@aliwong,🙌 https://t.co/FJUoORqL59 +03/13/2018,Comedians,@aliwong,"Everyone go see @aparnapkin live. She is and has always been, one of my favorites https://t.co/kkqaoUm6Pm" +03/07/2018,Comedians,@aliwong,RT @KaplanAaron: An all-new episode of @AmericanWifeABC airs TONIGHT on @ABCNetwork -- don't miss it! @KatyEMixon @bader_diedrich @DDiMaggi… +03/05/2018,Comedians,@aliwong,"While peeps spent the day getting ready for the Oscars, I was over here... https://t.co/neM4pAzy1c" +03/03/2018,Comedians,@aliwong,@MekitaRivas 2019 or 2020 +03/03/2018,Comedians,@aliwong,BOSTON! https://t.co/ks0cxUE2PU +02/28/2018,Comedians,@aliwong,BOSTON! https://t.co/lGCLiEMsQd +02/28/2018,Comedians,@aliwong,BOSTON! The presale for my May 4th show at the Chevalier Theatre begins now. Go to… https://t.co/5jijyc1kS2 +02/28/2018,Comedians,@aliwong,@lizamarie1022 CVR28 +02/22/2018,Comedians,@aliwong,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/19/2018,Comedians,@aliwong,I love this so much. Congrats! https://t.co/c1PmYJUyew +02/19/2018,Comedians,@aliwong,#AllStarWeekend #2kids #TheJoyOfMotherhood https://t.co/oPnZlRU34u +02/18/2018,Comedians,@aliwong,"RT @MichaelSkolnik: Emma Gonzalez. A student at Marjory Stoneman Douglas High School. + +An American Hero. + +Watch This. + +All of it. + +The…" +02/12/2018,Comedians,@aliwong,I CANNOT WAIT FOR THIS!!!!! https://t.co/vLL2O44XjU +01/21/2018,Comedians,@aliwong,@JohnTheCho All sorts of joy shooting through my heart! +01/08/2018,Comedians,@aliwong,"RT @goldenglobes: “I want all of the girls watching here now to know, that a new day is on the horizon.” @Oprah accepts the 2018 Cecil B. d…" +12/30/2017,Comedians,@aliwong,RT @aparnapkin: social media is just a long line of other people trying to sell you mixtapes of their mental demons +12/30/2017,Comedians,@aliwong,RT @JohnTheCho: https://t.co/MjaVc8q2f1 +12/25/2017,Comedians,@aliwong,"RT @dianaphamfatale: Forget Sheryl Sandburg, I take my motivational quotes from @aliwong. #tea #christmasjoy https://t.co/EeJv85K57p" +12/15/2017,Comedians,@aliwong,"RT @netflix: We’re disappointed in the decision to gut #NetNeutrality protections that ushered in an unprecedented era of innovation, creat…" +12/15/2017,Comedians,@aliwong,RT @jodikantor: Excellent questions from the wall of my daughter’s classroom. https://t.co/ntgKHYG9eU +12/14/2017,Comedians,@aliwong,"RT @JarettSays: #NetNeutrality could vanish in TWO DAYS!!!! + +PLEASE call Congress NOW: 202-759-7766 https://t.co/6g7hwCHRMa" +12/13/2017,Comedians,@aliwong,All new episode tonight! https://t.co/ddR6OjqpBa +12/13/2017,Comedians,@aliwong,RT @wkamaubell: Salma Hayek: Harvey Weinstein Is My Monster Too https://t.co/D56eysbHpT +12/13/2017,Comedians,@aliwong,RT @guybranum: I just want to wish everyone with Jewish lawyers a very happy Hanukkah. +12/13/2017,Comedians,@aliwong,WOOOOOOOOO HOOOOOOOOOOO!!!!! +12/12/2017,Comedians,@aliwong,"RT @ELLEmagazine: Jada Pinkett Smith: ""I have so much to say on why @TiffanyHaddish was not nominated for a Globe... but I won't"" + +Also Jad…" +12/11/2017,Comedians,@aliwong,RT @ong_going: I have never wanted a shirt more. @aliwong https://t.co/4Ga7bmREVC #colonizethecolonizer +12/08/2017,Comedians,@aliwong,RT @billyeichner: It's that time of year - the AMY POEHLER CHRISTMAS CAROL AMBUSH from BILLY ON THE STREET! A HOLIDAY CLASSIC! #tbt #Billyo… +12/07/2017,Comedians,@aliwong,"RT @LailaLalami: Woman reports a predator anonymously. +""Anonymous accusations aren't credible!"" +Woman reports under her name. +""She just wan…" +12/07/2017,Comedians,@aliwong,RT @goldengateblond: This photo belongs in the Louvre. https://t.co/oyrqrhpPSP +12/07/2017,Comedians,@aliwong,RT @LauraPrepon: #ThrowbackThursday to @NBCChelsea with my girl @AliWong who you can now see killing it on @AmericanWifeABC. #TBT https://t… +12/01/2017,Comedians,@aliwong,"RT @SInow: It is a rare person who gives up what he loves in exchange for what he believes. + +Colin Kaepernick is the winner of SI’s Muhamm…" +11/28/2017,Comedians,@aliwong,"RT @Todaysparent: .@aliwong has ""got the power"" in her hilarious new Instagram video. 😂💪🤰 —> https://t.co/CMXhTrUQaI https://t.co/o3DZiBzrJV" +11/28/2017,Comedians,@aliwong,RT @nowthisnews: President Obama said repealing net neutrality would ‘end the internet as we know it’ https://t.co/n5wn3JMgpu +11/28/2017,Comedians,@aliwong,"RT @MikeDrucker: Remember when we used to be mad that social media was mostly photos of people’s meals, and now when we see photos of peopl…" +11/25/2017,Comedians,@aliwong,"RT @clarewxy: Queen @aliwong just dropped her new #BabyCobra apparel line 👀 https://t.co/ktFospKIw9 + +""I don't want to lean in. I want to li…" +11/22/2017,Comedians,@aliwong,"If you haven’t already, watch this!!! One of my favorite movies this year. https://t.co/RiMzYBR0E3" +11/16/2017,Comedians,@aliwong,RT @AmericanWifeABC: Thanksgiving with the Ottos will definitely be stuffed with surprises. 🦃 https://t.co/kTErhwRojm +11/13/2017,Comedians,@aliwong,"RT @Kaepernick7: I'm honored to be recognized by @GQMagazine as Citizen of the Year. + +https://t.co/s6wBZTa6tH" +11/12/2017,Comedians,@aliwong,TIFFANY is on @nbcsnl TONIGHT TONIGHT TONIGHT! https://t.co/SNjfhT9BX1 +11/08/2017,Comedians,@aliwong,"RT @CNN: - Openly transgender candidates won races + +- Minneapolis: First openly transgender person of color elected + +- New Jersey: First Si…" +11/06/2017,Comedians,@aliwong,RT @Alyssa_Milano: Amazing news! Open enrollment happening right now at https://t.co/GE3NsxPjww! #GetCoveredNow https://t.co/76c9dHOQXZ +11/02/2017,Comedians,@aliwong,RT @oliviamunn: In 2011 it didn't matter enough to make a lasting effect 😕 Thank God it's a new day. ❤️❤️❤️🌤 https://t.co/fwKWGUbYh4 +11/02/2017,Comedians,@aliwong,Tonight after Modern Family! https://t.co/enozYrnWoy +10/31/2017,Comedians,@aliwong,RT @curlycomedy: I was so committed to playing @aliwong from her #BabyCobra special I got a real human to play the bump. #SchtickOrTreat #c… +10/31/2017,Comedians,@aliwong,I love this woman https://t.co/eLX6CXiEPF +10/30/2017,Comedians,@aliwong,RT @hannibalburess: 🔥 https://t.co/7kbsdaRXcb +10/30/2017,Comedians,@aliwong,YES YES YES https://t.co/lyvPommGuB +10/30/2017,Comedians,@aliwong,"RT @Alyssa_Milano: Need you to take 3 minutes out of your evening to watch this, get angry, and then HELP ME get #FreeRosa to trend NOW! ht…" +10/29/2017,Comedians,@aliwong,RT @RebsL: Wasssuuppp it’s Halloween 2017! @netflix @angryasianman @hasanminhaj @aliwong #lowbudget #aapi https://t.co/bP4jBzcPaN +10/29/2017,Comedians,@aliwong,RT @nokwestion: @aliwong sighting https://t.co/PUh4HRaDmp +10/27/2017,Comedians,@aliwong,RT @mcgboye: This boy's career path is already set. The parents shouldn't bother wasting their time and money. https://t.co/A2hCcx3nQZ +10/27/2017,Comedians,@aliwong,"RT @jemelehill: A quote that will make you cringe from Texans owners Bob McNair, re: anthem protests: “We can't have the inmates running th…" +10/27/2017,Comedians,@aliwong,RT @kumailn: Right. Cuz all brown people are famous. https://t.co/gyM1zsMZUJ +10/24/2017,Comedians,@aliwong,I cannot wait for this!!! Michelle is INCREDIBLE https://t.co/IpV3aFiQc8 +10/24/2017,Comedians,@aliwong,RT @GlennWhipp: UPDATE: 38 women contacted me for this story. That number has now doubled since it was published. https://t.co/beVGHWGOKM +10/23/2017,Comedians,@aliwong,"RT @bader_diedrich: Thanks for the great interview Jessica!! +I really went off the rails at the end there! + +But happy to talk about my quee…" +10/20/2017,Comedians,@aliwong,"RT @aparnapkin: As the daughter of a father, I think the lot of you could do better" +10/20/2017,Comedians,@aliwong,RT @ava: Saluting my sister @Lupita_Nyongo and all the women who speak out. And all the women who don't. All who survive this. And all who… +10/19/2017,Comedians,@aliwong,RT @davidchang: Incredible https://t.co/iJiyreuiYi +10/18/2017,Comedians,@aliwong,RT @AmericanWifeABC: We're itching to see how Katie handles everything tonight! #AmericanHousewife https://t.co/DbrYodDEVw +10/15/2017,Comedians,@aliwong,"RT @meganamram: Sometimes it's like, who's responsible: the victims or the person who's responsible?" +10/11/2017,Comedians,@aliwong,"RT @AmericanWifeABC: #AmericanHousewife’s Katie Otto is unapologetic and real. +Watch the best mom ever tonight at 9:30|8:30c on ABC! https…" +10/11/2017,Comedians,@aliwong,RT @BET: The FULL verse that EVERYBODY is talking about! @eminem BODIED THIS! #HipHopAwards https://t.co/zoS0wEwjQF +10/11/2017,Comedians,@aliwong,"RT @nytimes: An NYT reader's reaction to Gwyneth Paltrow, Angelina Jolie and +others saying Harvey Weinstein harassed them https://t.co/apUs…" +10/09/2017,Comedians,@aliwong,Rooting for #KellyMarieTran so hard!!! https://t.co/mdXaxburPK +10/08/2017,Comedians,@aliwong,"RT @aparnapkin: if you think taking a knee is unbelievably disrespectful, imagine what drove people to do it in the first place" +10/05/2017,Comedians,@aliwong,RT @laurenduca: MOM & DAD PLEASE COME HOME THE BABYSITTER IS REALLY WEIRD https://t.co/qBRnK3NhSl +10/05/2017,Comedians,@aliwong,"RT @jk_rowling: There is so much truth in this, it hurts. @MichelleObama on the fools who get free passes to the top table... + https://t.co…" +10/04/2017,Comedians,@aliwong,SF! Go see my dear friend @mulaney tonight. There are a few tix left. He's BRILLIANT. https://t.co/5vbDApydN9 +10/04/2017,Comedians,@aliwong,👑@KatyEMixon 👑 https://t.co/adjIwHEBqT +10/02/2017,Comedians,@aliwong,RT @nowthisnews: THIS is how you respond to racism https://t.co/Ebo4ohctlO +09/28/2017,Comedians,@aliwong,RT @MrTonyHale: We love this woman. https://t.co/EqvF6HXpj0 +09/28/2017,Comedians,@aliwong,RT @janetmock: Doreen (@dstfelix) writing about Cardi's ascendence to the TOP for @NewYorker has me in all my feels. YES! https://t.co/s0do… +09/27/2017,Comedians,@aliwong,"RT @thehill: ""All in the Family"" producer tweets message of solidarity with NFL protesters https://t.co/TBRpQBDBmY https://t.co/xSISToc9rF" +09/27/2017,Comedians,@aliwong,"RT @AmericanWifeABC: Today's the day! ❤️ +RT if you're excited for the premiere of #AmericanHousewife tonight! https://t.co/fg7HkFDnEc" +09/27/2017,Comedians,@aliwong,"RT @AmericanWifeABC: She may not be America's #1 mom, but she's our favorite. #AmericanHousewife returns tomorrow at 9:30|8:30c on ABC! htt…" +09/25/2017,Comedians,@aliwong,"RT @shondarhimes: I think: By kneeling, players don’t disrespect the flag.They ask US to respect the flag. They ask us to make the anthem t…" +09/24/2017,Comedians,@aliwong,"RT @OmarKelly: Dolphins safety Michael Thomas started breaking up when talking about Trump calling him ""a son of a b!tch."" https://t.co/Z4w…" +09/24/2017,Comedians,@aliwong,@morgan_murphy hi!!! missed you but see you in LA +09/22/2017,Comedians,@aliwong,This made my day!!!! https://t.co/EbbsXZsT9n +09/16/2017,Comedians,@aliwong,RT @KamalaHarris: Remember when we saved health care for millions of Americans? We have to do it again. Call your reps now: (202) 224–3121. +09/12/2017,Comedians,@aliwong,Houston! See you on Friday https://t.co/8kx4yFidu7 +09/10/2017,Comedians,@aliwong,Congrats Kamau!!!! https://t.co/idYOkAYyH5 +09/07/2017,Comedians,@aliwong,RT @nowthisnews: ‘I’m gonna be sent back to a country that I’ve ever been to and I’m gonna lose every opportunity that I have.’ https://t.c… +09/06/2017,Comedians,@aliwong,"RT @BarackObama: To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co…" +09/06/2017,Comedians,@aliwong,"RT @AmericaFerrera: Dreamers- you have led your own movement from the start w/ courage, dignity & beauty. I feel privileged to follow & sta…" +09/06/2017,Comedians,@aliwong,"RT @janetmock: Beautiful campaign, starring @Lavernecox! #Ivypark take my 💰 https://t.co/qO035Zh84x" +09/05/2017,Comedians,@aliwong,RT @kumailn: #TheBigSick is on all streaming platforms! iTunes. Amazon. On Demand. Google Play. Check out this rave review! https://t.co/aD… +09/05/2017,Comedians,@aliwong,RT @KamalaHarris: The heartless move to rescind DACA is a betrayal of our promise to Dreamers. It’s now on Congress to pass the Dream Act.… +09/02/2017,Comedians,@aliwong,RT @ELLEmagazine: This 8-year-old boy loves transforming into drag queen Lactatia—& he won't let other people stop him from doing what make… +08/31/2017,Comedians,@aliwong,RT @NPR: Still wondering how you can help those affected by #Harvey? Here is our list: https://t.co/ybaj4nsjl0 +08/30/2017,Comedians,@aliwong,RT @JarrettHill: THIS. https://t.co/NobnCCVJCF +08/30/2017,Comedians,@aliwong,RT @decider: .@RyanHamilton's #HappyFace is highly contagious. Watch it on @netflixcomedy: https://t.co/eib7MVv09N https://t.co/i1IqgB2xbM +08/29/2017,Comedians,@aliwong,RT @MichaelSkolnik: American hero. https://t.co/0z9nQ2RjTA +08/20/2017,Comedians,@aliwong,"RT @ShaunKing: We've provided authorities: + +7 videos. +142 images. +2 confirmed identities. +1 address. + +7 days later, NO ARRESTS. + +https://t.…" +08/19/2017,Comedians,@aliwong,RT @ChelseaClinton: The story of Lucifer-who rebelled against God-is part of many Christians' traditions. I've never been in a church with… +08/16/2017,Comedians,@aliwong,RT @VICE: Watch @vicenews' full report from the front lines in Charlottesville: https://t.co/6QgDdm0zF9 https://t.co/NJbxEd1FKL +08/16/2017,Comedians,@aliwong,"RT @StephenAtHome: ""I don't agree with the Nazis, but they had a permit for Normandy & the Allies didn't."" -Donald Trump https://t.co/0WeIM…" +08/15/2017,Comedians,@aliwong,"RT @THR: .@AliWong, @ParkRandall to star in Netflix feature romantic comedy https://t.co/wmWxTxNefg https://t.co/5rSCVqAmOU" +08/15/2017,Comedians,@aliwong,RT @nycjayjay: Amazing. https://t.co/jSCM8sDb5q +08/15/2017,Comedians,@aliwong,RT @Seth_Lemon: #UnionSquare https://t.co/ymqofeEPGa +08/14/2017,Comedians,@aliwong,EVERYONE WATCH THIS!!! Tiffany has been funny forever and she's also the most wonderful human being. https://t.co/AR1m0uc5xH +08/13/2017,Comedians,@aliwong,RT @MrGeorgeWallace: That little baby grew up believing in goodness and justice and standing up to hate. Heather Heyer. Say her name. https… +08/13/2017,Comedians,@aliwong,"RT @ShaunKing: Heather Heyer. + +An American martyr. A hero. My hero. + +Last words on FB ""If you're not outraged, you're not paying attentio…" +08/13/2017,Comedians,@aliwong,"RT @NYMag: “I want her death to be a rallying cry for justice and equality and fairness and compassion,” says Heyer's mother https://t.co/T…" +08/13/2017,Comedians,@aliwong,"RT @JohnDingell: I signed up to fight Nazis 73 years ago and I'll do it again if I have to. + +Hatred, bigotry, & fascism should have no plac…" +08/13/2017,Comedians,@aliwong,RT @JoeBiden: There is only one side. #charlottesville +08/12/2017,Comedians,@aliwong,RT @oliviamunn: 💔 #Charlottesville https://t.co/le6zTIMxR8 +08/12/2017,Comedians,@aliwong,RT @TheEllenShow: Is this America now? We cannot let this stand. #Charlottesville +08/02/2017,Comedians,@aliwong,"RT @sfmasonic: The 1st of 7(!) SOLD OUT shows with @aliwong is tonight! Doors open at 6, Kevin Camia starts things off at 7 & Ali Wong is o…" +08/02/2017,Comedians,@aliwong,"RT @ACLU: Happy birthday, James Baldwin! https://t.co/aw40QndS2O" +08/02/2017,Comedians,@aliwong,RT @kumailn: Thread. Must read. It's very good. https://t.co/nKZLZmoHzn +08/01/2017,Comedians,@aliwong,"My remaining stand up dates for the year. Few tix still left for DENVER, HOUSTON, DALLAS late… https://t.co/JoAQVZOHNN" +08/01/2017,Comedians,@aliwong,Please read this article. Thank goodness for @JanetMock https://t.co/nVOqL5sgqy +07/31/2017,Comedians,@aliwong,"RT @thepharcyde: 😂😂😂 GET THAT @aliwong #DemCrossoverMovesTho #ThePharcyde +・・・ +DALLAS! Pre sale for my second… https://t.co/4NWtpOTYxO" +07/28/2017,Comedians,@aliwong,"RT @KamalaHarris: Tonight health care was saved for millions of Americans. This is your victory. Your calls, letters, and courage made this…" +07/27/2017,Comedians,@aliwong,RT @tracelysette: In solidarity with the thousands of trans folk who are currently serving our country in the military. You are not expenda… +07/26/2017,Comedians,@aliwong,"RT @HamillHimself: A salute to the 15,000+ transgender patriots now currently serving in the United States Military. #ThankYouLGBT #TransR…" +07/26/2017,Comedians,@aliwong,"RT @TheEllenShow: We should be grateful to the people who wish to serve, not turn our backs on them. Banning transgender people is hurtful,…" +07/26/2017,Comedians,@aliwong,DALLAS! Pre sale for my second added show is on now. The first show sold out quick so I suggest… https://t.co/HflPiKoE8L +07/26/2017,Comedians,@aliwong,RT @smeagolsfree: My mom has Stage 4 breast cancer and will die without Medicaid. My rage is powerful and insane. They should be afraid of… +07/20/2017,Comedians,@aliwong,"RT @janetmock: Tiffany is a damn STAR, and a stellar storyteller. https://t.co/WBC3JSZQn2" +07/20/2017,Comedians,@aliwong,RT @AccessVegas: Ali Wong playing #Vegas October 7. Tickets: https://t.co/4Y3kH2UjVl @aliwong https://t.co/FMaGbGh7Gb +07/19/2017,Comedians,@aliwong,"RT @reventioncenter: PRESALE — @AliWong on Friday, September 15th! Use offer code TEMPO to lock down advanced tickets at https://t.co/D4i23…" +07/19/2017,Comedians,@aliwong,RT @hennepintheatre: Hurry! 36 hours only - get your presale tickets for @aliwong with code: BABY – October 14 at the State Theatre https:/… +07/19/2017,Comedians,@aliwong,Houston and Minneapolis! The presale has begun. Get your tickets now before the shows sell… https://t.co/XZ3DUhdZ04 +07/15/2017,Comedians,@aliwong,RT @SilverLegacy: Raise your hand if your seeing @aliwong tonight? 🙋 #SilverLegacy #AliWong #BabyCobra #ItsARenoThing https://t.co/ghsDwCyB… +07/08/2017,Comedians,@aliwong,That's because SHE IS! I fucking love @aparnapkin https://t.co/Ca8Sp61as6 +07/05/2017,Comedians,@aliwong,"RT @KamalaHarris: This #FourthofJuly, a reminder that eight immigrants signed the Declaration of Independence." +06/29/2017,Comedians,@aliwong,Atlantic City and Philadelphia! See you on Saturday https://t.co/CcrMgmS0mO +06/28/2017,Comedians,@aliwong,RT @iamwandasykes: It's time that more women held political office. @aliwong nominated…me! Who would you nominate to run? @ELLEmagazine #We… +06/26/2017,Comedians,@aliwong,Woooooooo!!!!! https://t.co/Gl9EY1igpL +06/22/2017,Comedians,@aliwong,"RT @sanfranmag: July cover story: How @aliwong grew up, cracked filthy jokes, got pregnant, and became the next big thing in comedy https:/…" +06/22/2017,Comedians,@aliwong,RT @sanfranmag: Our annual Best of SF issue drops soon! Cover story: @aliwong on how she shot to the top of comedy (and she's just getting… +06/20/2017,Comedians,@aliwong,RT @BorgataAC: We're ready to LOL with @aliwong at the Event Center on July 1! Purchase Tickets: https://t.co/JSk94Y6hiK https://t.co/Scdf… +06/17/2017,Comedians,@aliwong,"If you're looking for a summer read, pickup Jessi Klein's brilliant book. I savored every page.… https://t.co/Vtt6Nro5TZ" +06/17/2017,Comedians,@aliwong,"RT @TheKingCenter: Extol #PhilandoCastile's virtues, but know: Even if he didn't serve children, even if he didn't love his family, he shou…" +06/17/2017,Comedians,@aliwong,Imma watch this and I suggest you do too. Nikki is so fucking funny. https://t.co/zTMNePtEQk +06/15/2017,Comedians,@aliwong,@themodernageorg hi it's working now sorry for the glitch! +06/14/2017,Comedians,@aliwong,LAS VEGAS and THOUSAND OAKS! The presale has begun. Denver and Dallas tomorrow morning at 10am.… https://t.co/FNMxyPRRRp +06/09/2017,Comedians,@aliwong,Anaheim this weekend! https://t.co/XyElDTa9gD +06/02/2017,Comedians,@aliwong,"RT @MikeDelMoro: Countries committed to the Paris Climate Accord shaded in blue, via @mashable https://t.co/1RGVGjUUyu" +06/02/2017,Comedians,@aliwong,RT @EmmanuelMacron: https://t.co/3g5LYO9Osj +06/02/2017,Comedians,@aliwong,"RT @michelleisawolf: Congressman: god will take care of climate change. + +God: bitch I sent you scientists." +06/01/2017,Comedians,@aliwong,SANTA BARBARA! See you on Saturday. Few tix still left for the LATE show. https://t.co/DLA90Hgqud +06/01/2017,Comedians,@aliwong,This haircut is everything #happyinternationalChildrensDay https://t.co/TVCYOSp7DU +05/31/2017,Comedians,@aliwong,"RT @moshekasher: Ah I see now, ""covfefe"" is the guttural gurgle your grandchild will choke out as they are overtaken by rising sea water." +05/29/2017,Comedians,@aliwong,"RT @ChrisEvans: They did not die because of you. They died because of a hateful, ignorant, pathetic, EMBOLDENED piece of trash. https://t.c…" +05/29/2017,Comedians,@aliwong,RT @JoyAnnReid: We await their commander in chief's acknowledgement of them and their families. https://t.co/PzfspiIDge +05/28/2017,Comedians,@aliwong,"RT @resisterhood: 3 Americans were murdered this past week for standing up to white terrorists. + +Richard Collins III +Taliesin Myrddin Namk…" +05/28/2017,Comedians,@aliwong,RT @patrick_brice: I can't stop thinking about these guys. Our time on this planet is short and hard. Let's take care of each other. https:… +05/28/2017,Comedians,@aliwong,"RT @HillaryClinton: Heartbreaking. +No one should have to endure this racist abuse. +No one should have to give their life to stop it. +https:…" +05/27/2017,Comedians,@aliwong,RT @WendyMolyneux: I would just absolutely love it if someone would put a fake arm up their shirt sleeve and let Trump rip it off during on… +05/27/2017,Comedians,@aliwong,RT @aparnapkin: IDEA: marie kondo method to clean out the presidential cabinet. does this bozo bring me joy? no? then carefully mark as don… +05/27/2017,Comedians,@aliwong,RT @VanityFair: It’s enough to make Patti LuPone proud https://t.co/XlQTrgnngs +05/26/2017,Comedians,@aliwong,"RT @GranadaSB: Comedian, writer & actress @aliwong brings her incredibly hilarious stand-up performance to the Granada on Sat. 6/3! https:/…" +06/16/2018,Comedians,@msjwilly,@LashanaLynch @FlawlesslyGeeky Ahhh! Thank you queen! Can’t wait to see you in the movie!! +06/16/2018,Comedians,@msjwilly,@markhughesfilms @WonderWomanFilm @PattyJenks @jermainedesign This rules! I’ve gotta research. I don’t know much ab… https://t.co/AgMqFgZxAy +06/14/2018,Comedians,@msjwilly,@FantasticBeasts He da best! +06/14/2018,Comedians,@msjwilly,I *Really* want to play a superhero. I just want to kick some ass. And get in shape. Mostly I want to get paid to get in shape. #6feettall +06/14/2018,Comedians,@msjwilly,@chloedreyfus @BigBoyler Hahaha he didn’t tell me wtf? And thank you! It looks like y’all had a fun night. 😉 +06/14/2018,Comedians,@msjwilly,@eddiotsavant Hahahaha I’ll see what I can do! +06/14/2018,Comedians,@msjwilly,@molly_blooom She was amazing! It’s never too late for a good thing. +06/14/2018,Comedians,@msjwilly,@FlawlesslyGeeky @LashanaLynch THANK YOU. KEEP ME IN YOUR THOTS. I wanna play a superhero SO BAD. +06/14/2018,Comedians,@msjwilly,@TVElle Hahaha I loved that line. That Jessica was so extra. Thanks for watching! +06/14/2018,Comedians,@msjwilly,@AmandaGeisel That’s awesome Amanda! Thanks for letting me know! +06/14/2018,Comedians,@msjwilly,@choitotheworld @ClaraRose @TheCut Thank you lady! 😘 +06/14/2018,Comedians,@msjwilly,"@ClaraRose @choitotheworld @TheCut @BigBoyler THANK YOU! 😊 and yes, @bigboyler is aiight. 😉" +06/14/2018,Comedians,@msjwilly,@FantasticBeasts Y’all are getting me PUMPED! +06/08/2018,Comedians,@msjwilly,@christinefriar @itsjameskennedy Let them know! And Jesus no more take out orders +06/08/2018,Comedians,@msjwilly,@cameronesposito Hahahahaha this made me lol. +06/08/2018,Comedians,@msjwilly,@christinefriar ⚰️ I expect songs like this on our road trip. Thank you. +05/30/2018,Comedians,@msjwilly,"RT @the_wing: Hot and dewy off the presses, our #NOMANSLAND covergirl is @msjwilly !!! Issue 02 drops June 4th, but you can pre-order your…" +05/30/2018,Comedians,@msjwilly,"RT @the_wing: Don't know if you heard, but we made a magazine!!!! #NOMANSLAND!!! and @msjwilly is on our cover!!! and it drops June 4th but…" +05/19/2018,Comedians,@msjwilly,@Travon You’re a mad man! +05/19/2018,Comedians,@msjwilly,@Travon Hahahahaha +05/19/2018,Comedians,@msjwilly,@JohnMilhiser @TODAYshow hahaha his facial hair is wild. +05/09/2018,Comedians,@msjwilly,WE BOUTA MAKE A MOOVVVIE SHARON!!!! Hi @patrick_brice 💕 https://t.co/9NJOTitnQE +05/07/2018,Comedians,@msjwilly,RT @CecileRichards: Great news: There are still a few tickets left for this! Come join @msjwilly and me at the @92Y tomorrow night.👇🏻 https… +05/05/2018,Comedians,@msjwilly,@christinefriar Hahahahaha +04/24/2018,Comedians,@msjwilly,"@susanheyward @Jessie_BBA Y’all/ you were AMAZING! Congrats, sis!! 😍😍😍😍" +04/23/2018,Comedians,@msjwilly,@blanip @indieabby88 Lmaooo I’m ⚰️ +04/23/2018,Comedians,@msjwilly,@jk_rowling Yassss Ilvy!!!!!!!!!!!!!!!! 🙌🏾 +04/22/2018,Comedians,@msjwilly,RT @jk_rowling: Professor Eulalie (Lally) Hicks of Ilvermorny School of Witchcraft and Wizardry with some random woman during the interval… +04/17/2018,Comedians,@msjwilly,"RT @CecileRichards: Kind of can’t believe I get to say this: On May 8th, I’ll be sitting down with @msjwilly at @92Y to talk about activism…" +04/13/2018,Comedians,@msjwilly,@shanpop @SarahSlutsky hahaha it's ALWAYS Sephora's brand of blue eyeliner. Enjoy! ;] +03/13/2018,Comedians,@msjwilly,Yooo!! I LOVE my pack of rainbow dogs. And the best part? They don’t give me allergies! 🤓 @TheSims #ad… https://t.co/Zdhczc5yJg +03/10/2018,Comedians,@msjwilly,@lindseyweber Of course it was +02/23/2018,Comedians,@msjwilly,Heyyy! TONIGHT at 11:30pm is our FINAL episode of @2dopequeens on @hbo. @dopequeenpheebs and I… https://t.co/W2HzefwYei +02/16/2018,Comedians,@msjwilly,RT @corimurray: Returning with the newness: @dopequeenpheebs @msjwilly from @2DopeQueens are on #yesgirlpodcast #2DopeQueensHBO - https://t… +02/16/2018,Comedians,@msjwilly,DONT FORGET: AN ALL NEW EPISODE OF OUR 2 DOPE QUEENS @HBO SPECIALS AIR TONIGHT AT 11:30pm!… https://t.co/ZsC7MWMZDA +02/13/2018,Comedians,@msjwilly,@KristinDavis @2DopeQueens @TigNotaro @SJP @RheaButcher Omg thank you for watching @KristinDavis! 💕💕💕 you’ve made m… https://t.co/tkpXbIMZau +02/10/2018,Comedians,@msjwilly,@MichaelaAngelaD @fentybeauty 😂😂😍lmaooo I am all about @fentybeauty. Thanks for watching the second episode! +02/09/2018,Comedians,@msjwilly,Ayyy call up the squad & tell them to bring over the cocoa butter and the rosé because we have… https://t.co/oYgM6eR4Lg +02/09/2018,Comedians,@msjwilly,RT @RobinRoberts: We're celebrating #BlackHistoryMonth with a brand new series highlighting women who are game changers & showcasing their… +02/06/2018,Comedians,@msjwilly,"RT @TheDailyShow: Ayyyy see you at 11/10c, @msjwilly & @dopequeenpheebs! #2DopeQueensHBO https://t.co/OSsxpDbOqY" +02/05/2018,Comedians,@msjwilly,"RT @TheDailyShow: This week, Trevor welcomes @msjwilly & @dopequeenpheebs, @yford, the heroes and stars of @1517toParis, and @steveaoki! ht…" +02/03/2018,Comedians,@msjwilly,@PiaGuerra Ahh thank you! Damn. I love her. That would be my dream role! +02/03/2018,Comedians,@msjwilly,@jdry @2DopeQueens @dopequeenpheebs Thank you! It’s great!!! +02/03/2018,Comedians,@msjwilly,Lmaooooooo I know today is a crazy day but also Happy birthday to @TheSims! 🎉Thanks for an… https://t.co/rM2kiyGdsD +02/02/2018,Comedians,@msjwilly,"RT @davidcicilline: I’ve reviewed the Nunes memo and the Democratic memo (which Republicans are refusing to release). + +I can’t divulge the…" +02/02/2018,Comedians,@msjwilly,Hey Hoochies! Who else is staying in tonight to watch #2DopeQueensHBO? The first special starts… https://t.co/QZYoWQ5xmg +02/02/2018,Comedians,@msjwilly,Heyyy Hoochies! Tonight is THE night! The first of our FOUR @2DopeQueens specials premieres this evening on HBO at… https://t.co/y77VXYtPBb +02/01/2018,Comedians,@msjwilly,"RT @ditzkoff: My Q&A with the hilarious @dopequeenpheebs and @msjwilly, who are bringing @2DopeQueens to HBO. https://t.co/QvivvDHCGC" +01/31/2018,Comedians,@msjwilly,"RT @CBSThisMorning: Jessica Williams and Phoebe Robinson blend a unique brand of conversation, stand up comedy and storytelling in their po…" +01/31/2018,Comedians,@msjwilly,"RT @colbertlateshow: TONIGHT's #LSSC is LIVE following the #SOTU: @TVietor08, @jonfavs, and @jonlovett from @PodSaveAmerica, @dopequeenphee…" +01/19/2018,Comedians,@msjwilly,"RT @danikwateng: While y'all are skimming through the latest @Essence make sure to read my first in-book story!! + +I interviewed @dopequeen…" +01/12/2018,Comedians,@msjwilly,45 minutes after we took this photo my mother asked me to clarify what part the guy on the left played in the Harry… https://t.co/epvd9rg4Il +01/12/2018,Comedians,@msjwilly,RT @HBO: 2 dope hosts. 4 dope specials. @msjwilly and @dopequeenpheebs are the @2DopeQueens. Premieres February 2 on #HBO. https://t.co/8y2… +01/12/2018,Comedians,@msjwilly,@nealjustin hello Neal. : ] +01/11/2018,Comedians,@msjwilly,@WheresAmaya @jk_rowling hahahah i am pretty sure she has. (this is not confirmed by me but lmaooo) +01/11/2018,Comedians,@msjwilly,"Me with the shade when they give house points to Gryffindor at the last minute for being pretty reckless, thereby a… https://t.co/Sll9zWGFwl" +01/11/2018,Comedians,@msjwilly,Lmaoooo at #blackhogwarts trending. Screaming. #onbrand +01/02/2018,Comedians,@msjwilly,RT @Maccadaynu: When your Sims are waiting for instructions https://t.co/IqkGODapdL +12/19/2017,Comedians,@msjwilly,Serving while wearing this ruff around my neck! Our 4 @HBO specials start airing February 2nd at 11:30pm! See you t… https://t.co/Db54LzI5Fv +12/19/2017,Comedians,@msjwilly,Hey Hoochies! Our 4 @HBO specials start airing February 2nd at 11:30pm! (Definitely NOT after Game of Thrones.) See… https://t.co/RN1otdpjjv +12/15/2017,Comedians,@msjwilly,So excited to get to interview @HillaryClinton at the #Girlsbuild Summit today! This is amazing! And there are so m… https://t.co/RfUNhqpjcc +11/21/2017,Comedians,@msjwilly,Hiiiii! Check out me holding the Sims version of me in my hand! Thank you @TheSims for recreating my iconic comedic… https://t.co/pf7qC3iFe6 +11/17/2017,Comedians,@msjwilly,RT @TeenVogue: SAME. https://t.co/V6OotMBSHG +11/17/2017,Comedians,@msjwilly,@lindseyweber Dark! +11/16/2017,Comedians,@msjwilly,@jk_rowling That's hot. +11/16/2017,Comedians,@msjwilly,"RT @pottermore: A familiar world. A new story. Return to the Wizarding World with Fantastic Beasts: The Crimes of Grindelwald, coming late…" +11/01/2017,Comedians,@msjwilly,RT @2DopeQueens: Unbutton your pants. @marcmaron visits us this week from his podcast kingdom. https://t.co/XVlSjOjaQt +10/27/2017,Comedians,@msjwilly,@lindseyweber Yes. +10/12/2017,Comedians,@msjwilly,"RT @noredavis: I'm on @2dopequeens #41 JessBDshow! ❤️her& pheebs. Show🔥&link below. thx 2 new followers & who hit my Venmo🔌⚡️😎 + +https://t.c…" +10/11/2017,Comedians,@msjwilly,RT @noredavis: blessed to be on this episode and finally meet @msjwilly family who has adopted me & Jessica has to accept that❣️#HBD https:… +10/06/2017,Comedians,@msjwilly,"RT @jk_rowling: @msjwilly There's no purple heron emoji, so 🦉💕" +10/06/2017,Comedians,@msjwilly,@jk_rowling Hahaha! 😏 +10/06/2017,Comedians,@msjwilly,@jk_rowling Thank you thank you thank you. ⚡️✨⚡️❤️ +10/06/2017,Comedians,@msjwilly,@ditzkoff THIS IS NOT A DRILL DAVE!!! ⚰️ +10/06/2017,Comedians,@msjwilly,"RT @pottermore: @msjwilly Welcome to the Wizarding World family, Jessica!" +10/06/2017,Comedians,@msjwilly,@pottermore Thank you! https://t.co/8aQPwfmC2B +10/06/2017,Comedians,@msjwilly,HELLO THERE. I AM SCREAMING BECAUSE I AM GOING TO BE IN FANTASTIC BEASTS. 😩😃😃 https://t.co/k4UAT9y5gc +10/06/2017,Comedians,@msjwilly,@AlannaBennett Thank you!!!! 🎉🎊 https://t.co/SSTcbM83Wz +10/04/2017,Comedians,@msjwilly,@Pallystyle @TheSims https://t.co/NP513bOSml +10/04/2017,Comedians,@msjwilly,@stonercinderlla @TheSims Me too! https://t.co/JTMjjolst5 +10/04/2017,Comedians,@msjwilly,@hereforparrilla @TheSims Me too!!! Gonna be silly! +10/04/2017,Comedians,@msjwilly,@Pallystyle @TheSims It’s me! +10/04/2017,Comedians,@msjwilly,@davimachaado @TheSims You know what? Imma look into it. +10/04/2017,Comedians,@msjwilly,"RT @TheSims: Jessica Williams is taking over @TheSims Twitter this Friday, 10/6 at 11:30AM PDT! +More: https://t.co/WZ91yO4poz #JWillyAMA @…" +10/04/2017,Comedians,@msjwilly,RT @2DopeQueens: You've got 1 shot to see special guest co-host @Blacktress joining @msjwilly for a 2DQ show you'll never forget. Tix https… +09/25/2017,Comedians,@msjwilly,ITS SO GOOD AND BEAUTIFUL! https://t.co/KoESMS9agc +09/22/2017,Comedians,@msjwilly,RT @SaintHeron: Darling & daring comedy-sweetheart @msjwilly is headed to @Showtime where she will star in a self-written comedy. https://t… +09/22/2017,Comedians,@msjwilly,@kscoult @TheDailyShow Thank you so much! <3! +09/22/2017,Comedians,@msjwilly,"RT @DEADLINE: Jessica Williams To Topline Comedy In Works At Showtime, Jim Strouse To Direct https://t.co/KjF4YxI72H https://t.co/pZm18iJD5P" +09/15/2017,Comedians,@msjwilly,Due to POPULAR DEMAND WE'VE ADDED ONE MORE SHOW FOR OUR @2DopeQueens HBO SPECIAL TAPINGS NEXT MONTH. BUY NOW!! https://t.co/vPpulGPiHK +09/13/2017,Comedians,@msjwilly,RT @2DopeQueens: Queens! Oct 5 is date night with your girl @msjwilly! Come see 2DQ out in La La Land with guest co-host @Blacktress: https… +08/30/2017,Comedians,@msjwilly,@HollywoodDebi @fromoldharlem i got you Debi. Mistakes happen. Deleting your original tweet. Take care! +08/30/2017,Comedians,@msjwilly,@HollywoodDebi @bymeg waiiiiiittt what? so how is this what the situation is? You literally thought I was a complet… https://t.co/RV5Y1vAsZl +08/30/2017,Comedians,@msjwilly,@fredrickthomps6 No worries. Someone screen grabbed it earlier in this thread! +08/30/2017,Comedians,@msjwilly,@Guari1x Thank you. +08/26/2017,Comedians,@msjwilly,RT @KPCCInPerson: Watch @msjwilly and @Blacktress do their thing at the live taping of @2DopeQueens. Get your tickets now! https://t.co/bxX… +08/25/2017,Comedians,@msjwilly,@tkconch @UVA Thank you Tess! +08/25/2017,Comedians,@msjwilly,@ajLevy363 Yasss my maxxinister!!!!! Thank you for coming! +08/25/2017,Comedians,@msjwilly,@lmillernpr @ramenshopradio @2DopeQueens @JadAbumrad Yassssss!!! Y'all look cute! Thank you for coming! 😍 +08/22/2017,Comedians,@msjwilly,"ANNNNNNNNND HERE IS ANOTHER THE LINK TO OUR @2DopeQueens HBO special taping✨✨✨https://t.co/9zNCu2nt07 +HURRY!!" +08/22/2017,Comedians,@msjwilly,PRESALE Password is DOPE +08/22/2017,Comedians,@msjwilly,Link to our @2DopeQueens HBO SPECIAL TAPING https://t.co/1XlHVFZVr6 +08/21/2017,Comedians,@msjwilly,"RT @2DopeQueens: Set your alarm! Pre-sale for our special taping is happening tomorrow at 10amEST. Baes, you're getting the code first. ✅ i…" +08/21/2017,Comedians,@msjwilly,The partial darkness of this eclipse is my preferred lighting level tbh. #romanticdimlighting +08/21/2017,Comedians,@msjwilly,@iluvbutts247 Hahahaha +08/15/2017,Comedians,@msjwilly,Existing in a world where racism and hate grasp desperately for control while we fight and plead for something as simple as being free. +08/15/2017,Comedians,@msjwilly,"Being black in a country that was not made for me, I carry my sadness and anger with me always- responses to that which I cannot see." +08/15/2017,Comedians,@msjwilly,I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am hurt I am sad +08/13/2017,Comedians,@msjwilly,@rellativity @wocfilmclub ah okay! noted! thank you! +08/11/2017,Comedians,@msjwilly,RT @CharlieRoseShow: The incomparable @msjwilly is here tonight! Tune in on @PBS. https://t.co/Avra0XGq12 +08/10/2017,Comedians,@msjwilly,@HBOPR @2DopeQueens @dopequeenpheebs @HBO NOT A DRILL. THIS IS HAPPENING!!! +08/10/2017,Comedians,@msjwilly,"RT @HBOPR: Hit comedy podcast @2DopeQueens, from @msjwilly & @dopequeenpheebs, will come to @HBO next year: https://t.co/aQ0Bbmdb3F https:/…" +08/02/2017,Comedians,@msjwilly,"Ah, you're the best! Thank you Angelica. I REALLY appreciate the love! https://t.co/t8wKD4P76t" +08/02/2017,Comedians,@msjwilly,@jonweisman @SoWeirdonDisney Yes! MASSIVE fan! It was ahead of it's time! Can you tell me some cool fact about the show??? 😩😩😩 +08/02/2017,Comedians,@msjwilly,"RT @RottenTomatoes: New, captivating, & a star-making performance from @msjwilly has made The Incredible Jessica James #CertifiedFresh! + +ht…" +08/02/2017,Comedians,@msjwilly,@DevanshiDPatel @jk_rowling @BuzzFeed Lmaoooooo don't drag buzzfeed into this!!! 😩😂😂😂😂😂😂😂 +08/01/2017,Comedians,@msjwilly,RT @jk_rowling: .@msjwilly and I celebrating our birthday yesterday (my tiara really pinched). https://t.co/jf2vdILopS +07/31/2017,Comedians,@msjwilly,@evanrosskatz Oh wow thank you Evan!!! 😩😩😩 +07/31/2017,Comedians,@msjwilly,@hotpatooties @netflix Lmaoooooooooo thank you!!!! +07/31/2017,Comedians,@msjwilly,@TheEmperorJahi @TheRoot Yes! +07/31/2017,Comedians,@msjwilly,@urweedmom Hahahah Awww thanks beautiful! +07/30/2017,Comedians,@msjwilly,@LydiaDYork @TheRoot Me! +07/30/2017,Comedians,@msjwilly,"RT @radioopensource: Check out our own @susansmusings's ~subversive~illustrations in the new @msjwilly film, The Incredible Jessica James,…" +07/30/2017,Comedians,@msjwilly,"RT @StrouseJames: @omfgthelife @msjwilly These are my favorite songs from it: +William Onyeabar/Body and Soul, Fantastic Man +Sofi Tukker/Dr…" +07/30/2017,Comedians,@msjwilly,@vkeithley 🙌🏾🙌🏾🙌🏾yasss khaleesi!!!! Y'all look cute!! 😍 +07/30/2017,Comedians,@msjwilly,@matt_kleinmann 🙌🏾🙌🏾🙌🏾🙌🏾yasssss!! Thank you! +07/30/2017,Comedians,@msjwilly,@el_Rod_1976 @netflix OMG thank you SO much!! I appreciate it! +07/30/2017,Comedians,@msjwilly,@_LIVoutLOUD YESSSSSSS!!!! +07/30/2017,Comedians,@msjwilly,@katieislawsome Well thank you!!!!! +07/30/2017,Comedians,@msjwilly,@ohwhatevan Heyyyyyyyy girl!!!!!! +07/29/2017,Comedians,@msjwilly,@amoore9 Ahhhh You're just the best. Thank you love! #leolove +07/29/2017,Comedians,@msjwilly,"@mrbowline @jk_rowling Ahhhhh! Happy Early birthday, bb!!!!!" +07/29/2017,Comedians,@msjwilly,@techchickk Oh my gosh! I'm so sorry. I'm glad you're okay and thank you for the love. +07/29/2017,Comedians,@msjwilly,@k_bubbs THANK YOU!!! +07/29/2017,Comedians,@msjwilly,@ava Wow! Thank you! Happy Friday!! +07/28/2017,Comedians,@msjwilly,@igotawywitwords Thank you so much!!!! +07/28/2017,Comedians,@msjwilly,@nadiethebaddie @netflix THANK YOU!!! +07/28/2017,Comedians,@msjwilly,Hey Everybody! My new movie The Incredible Jessica James is out today! Check it out on @netflix ! Thank you for your support! +07/28/2017,Comedians,@msjwilly,@Laura_K_A Um.... I Adore this photo. thank you for watching!! +07/28/2017,Comedians,@msjwilly,RT @hunteryharris: hi i interviewed @msjwilly and she is regal https://t.co/H1M9031R0U +07/28/2017,Comedians,@msjwilly,@hunteryharris Thank you! You're such a great interviewer! +07/28/2017,Comedians,@msjwilly,"@QueenSurya No, love!" +07/28/2017,Comedians,@msjwilly,@eddiequintana @Sarahparga @CSzLA Lmaooooooook +07/27/2017,Comedians,@msjwilly,"RT @desusandmero: Tonight, comedian and former Daily Show correspondent @msjwilly. 11pm. https://t.co/SONjkQtcBy" +07/27/2017,Comedians,@msjwilly,@BenjaminJS Thank you!!!! +07/26/2017,Comedians,@msjwilly,@janetmock AHHHHHHH you're the best! Thank you Janet!! +07/26/2017,Comedians,@msjwilly,@anthony_gunk Thank you! Welcome!!! +07/26/2017,Comedians,@msjwilly,RT @gotagirlcrush: Have you chipped in to our @kickstarter yet? 4 days left! You can even get yr voicemail recorded by @msjwilly! https://t… +07/26/2017,Comedians,@msjwilly,"RT @TheDailyShow: Guess the ""T"" is silent? https://t.co/LTGUYJ6rxw" +07/25/2017,Comedians,@msjwilly,@troytheboyy @BellHouseNY NO WAY! Excited to hang!! +07/25/2017,Comedians,@msjwilly,"RT @nprfreshair: ""OK, Ter-Ter. I've always wanted to call you that."" @msjwilly with Terry Gross: https://t.co/HyCF4TuXIH" +07/25/2017,Comedians,@msjwilly,@pilothodge80 Thank you!! +07/25/2017,Comedians,@msjwilly,RT @TheGreeneSpace: 🚨 A few tix released for screening of @netflix's 'The Incredible Jessica James' + Q&A w @msjwilly + @StrouseJames: htt… +07/25/2017,Comedians,@msjwilly,"RT @KamalaHarris: Today’s the day. Keep focused: +Health care +Health care +Health care +Health care +Health care + +Call your Senators now at (20…" +07/25/2017,Comedians,@msjwilly,@veganshaun @nprfreshair @TheDailyShow @2DopeQueens Umm duh. Also thank you for you kind words! +07/25/2017,Comedians,@msjwilly,@sometimesJon @2DopeQueens @dopequeenpheebs Lmaooo DO IT +07/25/2017,Comedians,@msjwilly,"RT @RobertEFenton: . @msjwilly calling Terry Gross ""Ter-Ter"" on @nprfreshair is the best thing I think I've ever heard on this show." +07/25/2017,Comedians,@msjwilly,"RT @colbertlateshow: 🚨🚨 #LSSC TONIGHT:🚨🚨 @charlierose from @CBSThisMorning, @msjwilly of #IncredibleJessicaJames, and @maxbrooksauthor of @…" +07/25/2017,Comedians,@msjwilly,"RT @nprfreshair: TODAY: Jessica Williams @msjwilly on The Incredible Jessica James, getting her @TheDailyShow job at 22, and her podcast @2…" +07/24/2017,Comedians,@msjwilly,RT @nprfreshair: Recording now: Jessica Williams (@msjwilly) on her new @netflix film 'The Incredible Jessica James.' Airs tomorrow! https:… +07/19/2017,Comedians,@msjwilly,"RT @gotagirlcrush: Pledge $275 & you'll get an voicemail recording from our favorite funny woman & Issue 04 featured gal, @msjwilly! https:…" +07/18/2017,Comedians,@msjwilly,@Britnerene Jesus. Are you okay? +07/17/2017,Comedians,@msjwilly,@brooklynmag I just had a chicken salad while playing the sims & now I'm getting ready for my 2 Dope Queens show tonight. +07/17/2017,Comedians,@msjwilly,"@VivalaEmiliaa @brooklynmag AH, thank you!!!" +07/17/2017,Comedians,@msjwilly,"RT @TheRoot: Comedian @msjwilly has a new rom-com coming out on Netflix called ""The Incredible Jessica James."" + +Here's why you should be e…" +07/17/2017,Comedians,@msjwilly,@EvanRomano @brooklynmag @dopequeenpheebs @WNYC @2DopeQueens @TheDailyShow @Trevornoah @jordanklepper @hasanminhaj THANK YOU FOR HAVING ME! +07/17/2017,Comedians,@msjwilly,RT @brooklynmag: @msjwilly @dopequeenpheebs @2DopeQueens @TheDailyShow @Trevornoah @jordanklepper @WNYC Jessica Williams has a leading role… +07/17/2017,Comedians,@msjwilly,RT @brooklynmag: The cover star for our Summer 2017 issue is @msjwilly! https://t.co/jyV8OpwS2B https://t.co/O719BVRf09 +07/15/2017,Comedians,@msjwilly,@emilyvgordon THANK YOU EMILY!!! +07/14/2017,Comedians,@msjwilly,"RT @vulture: .@msjwilly is friggin’ dope in this new trailer for @netflix's ""The Incredible Jessica James"" https://t.co/RMlrbzKB98" +07/08/2017,Comedians,@msjwilly,RT @TheGreeneSpace: Just announced! Preview screening + talkback with @msjwilly and writer/director @StrouseJames: https://t.co/W8o8obVaSU +06/29/2017,Comedians,@msjwilly,RT @2DopeQueens: IT'S TIME! Get your tix to our 7/17 shows at @boweryballroom now! Early show: https://t.co/teMfg6eqe8 Late show: https://t… +06/25/2017,Comedians,@msjwilly,@SidneyCherubin Okay great! I just saw this and was worried!!! +06/25/2017,Comedians,@msjwilly,"RT @wmag: @MsJWilly's first trailer for ""The Incredible Jessica James"" is here: https://t.co/bTX7VBcqqL" +06/23/2017,Comedians,@msjwilly,RT @2DopeQueens: Stop whatever you're doing and watch @msjwilly's trailer for 'The Incredible Jessica James' right now 😍😍😍 https://t.co/2pg… +06/23/2017,Comedians,@msjwilly,RT @ELLEmagazine: EXCLUSIVE: Here's the first trailer for @netflix's 'The Incredible Jessica James' starring @msjwilly: https://t.co/WzHqyK… +06/22/2017,Comedians,@msjwilly,RT @SaintHeron: Next month on July 28th be sure to tune into @msjwilly's 'The Incredible Jessica James' on @netflix: https://t.co/FoSEuL0OX… +06/14/2017,Comedians,@msjwilly,RT @TimeOutNewYork: This week we talk to Jessica Williams on black roles and being a leading lady: https://t.co/H8xLVPKopX @msjwilly https:… +06/13/2017,Comedians,@msjwilly,KAMALA!!!!!! +06/13/2017,Comedians,@msjwilly,@danny_yu Thank you danny!!!!!!! It was such a fun shoot! +06/09/2017,Comedians,@msjwilly,RT @2DopeQueens: We're looking 💣💣💣 at #Bonnaroo2017! We're LIVE on Facebook! https://t.co/r2cXDtvRE1 https://t.co/1rHTWGxrd2 +06/03/2017,Comedians,@msjwilly,@abiolaismyname @CentralPictureH Yes!! See you there! +05/27/2017,Comedians,@msjwilly,@oneilllo @sundancefest @StrouseJames AHHHH THANK YOU @oneilllo!!!! I can't wait for you to see it! +05/27/2017,Comedians,@msjwilly,RT @sundancefest: #London: See the European premiere of @StrouseJames' THE INCREDIBLE JESSICA JAMES starring @msjwilly https://t.co/wS0vVIZ… +05/27/2017,Comedians,@msjwilly,RT @jk_rowling: Muahahahahaha... https://t.co/tjtCcSuYdt +05/26/2017,Comedians,@msjwilly,@anngav Yes! Just one but come through anyway!!! +05/26/2017,Comedians,@msjwilly,London! Come see me Sunday!!! https://t.co/CKDHuNMuLj +05/25/2017,Comedians,@msjwilly,@brocktalbot Yes! Thank you so much! see you there!!! +05/22/2017,Comedians,@msjwilly,Oy! UK! My new movie The Incredible Jessica James is coming to #SundanceLondon 1-4 June @CentralPictureH Tickets > https://t.co/JbhjWR5qqG +05/07/2017,Comedians,@msjwilly,NYC! Tonight at 6:30 I'm doing a staged reading of a REAL HOUSEWIVES OF NY EPISODE AT LITTLEFIELD IN BROOKLYN: https://t.co/cYpi1zGHFe +05/05/2017,Comedians,@msjwilly,"RT @GreggyBennett: This Sunday! Me, @msjwilly, @BrianJMoylan, @RyanHoulihan, @itgetsbedder & more read the RHONY Berkshires ep.Get tix: htt…" +05/04/2017,Comedians,@msjwilly,@anittygritty @Spotify @2DopeQueens It's a podcast. +05/04/2017,Comedians,@msjwilly,"@anittygritty @Spotify @2DopeQueens But...did you know that dope could mean...""very good""? We should be proud of that?" +05/04/2017,Comedians,@msjwilly,"@anittygritty @CapitolEthan @Spotify @2DopeQueens But...it is a usual genre for like, everyone? They have sold over… https://t.co/mdyYgMR2Q3" +05/04/2017,Comedians,@msjwilly,@anittygritty @CapitolEthan @Spotify @2DopeQueens They are literally one of the greatest rock bands in history. Do… https://t.co/rKZYv89dzP +04/29/2017,Comedians,@msjwilly,"@unfoRETTAble On it, khaleesi!" +04/10/2017,Comedians,@msjwilly,"RT @2DopeQueens: We're nominated for the #Webbys, and we're in third place. Come on. We can do better than that. https://t.co/sEqvxaHM4b ht…" +04/05/2017,Comedians,@msjwilly,@moochavsky Yaiansksns! (Yasssss in simlish) +04/05/2017,Comedians,@msjwilly,@MaggieSmet @2DopeQueens Yours too? Haha it's iconic!! +04/05/2017,Comedians,@msjwilly,RT @itsgabrielleu: Meet today's #WCW @msjwilly and @dopequeenpheebs! Read more about these incredible and hysterical ladies below. https://… +07/02/2018,Comedians,@JenKirkman,Yay! This is what I wanna see happening in the world. @Hannahgadsby turned it all upside down and I have seen it li… https://t.co/u5prpc3Y39 +06/30/2018,Comedians,@JenKirkman,RT @MCSnugz: I find it endlessly amusing that I am wearing my “childfree” necklace (by @JenKirkman) in the photo that accompanies this awes… +06/30/2018,Comedians,@JenKirkman,@JElvisWeinstein @HollywoodImprov If has now become when +06/30/2018,Comedians,@JenKirkman,A very important person @robertAbooey just tweeted Baba booey https://t.co/ibpwB9wdS3 +06/30/2018,Comedians,@JenKirkman,No thank YOU! Super hilarious! And thanks to the great audience who came to laugh at our jokes about death and matc… https://t.co/uuvpzsOI1i +06/30/2018,Comedians,@JenKirkman,Hope you outgrow cruel jokes about a child. He’s probably worried that you’re a Republican. https://t.co/HqDZqsyI8A +06/30/2018,Comedians,@JenKirkman,@LaLaLandJen @guybranum Wait I was in the same room with @guybranum And didn’t know it??? +06/29/2018,Comedians,@JenKirkman,Huh. Tad Devine - former partner to Paul Manafort in electing Putin puppet in Ukraine - information the Senator kne… https://t.co/Fi9nR5xgxb +06/29/2018,Comedians,@JenKirkman,Read this thread. Find your state. Register to vote. Or add your state. Helps others register to vote. https://t.co/Mnd66HpBFM +06/29/2018,Comedians,@JenKirkman,"@ArleBear Simple easy read on how to register to vote in CALIFORNIA +https://t.co/OKj87G0uB9 + +And direct link to reg… https://t.co/6PbcMD9UNQ" +06/29/2018,Comedians,@JenKirkman,@TrumpPrisonDate I always forget the time travel option. I female feel better 😂 +06/29/2018,Comedians,@JenKirkman,“female pilot” 🤦🏻‍♀️ https://t.co/XdENbrelLj +06/28/2018,Comedians,@JenKirkman,RT @solomongeorgio: White Americans that are horrified by today’s SCOTUS news. This is a real good time to wield your privilege for the gre… +06/28/2018,Comedians,@JenKirkman,"RT @BilgeEbiri: Hitler propagandist Leni Riefenstahl denied service at Hollywood nightclubs and studios in 1938. Leaves fuming, her feeling…" +06/28/2018,Comedians,@JenKirkman,@lauferlaw @asmith702 @LouiseBagshawe @DrDenaGrayson @thespybrief @TheDemocrats It would be Devine if we didn’t have to wait a Tad longer +06/27/2018,Comedians,@JenKirkman,@SpicyFiles @LouiseMensch Me too. +06/27/2018,Comedians,@JenKirkman,@TheRickWilson @LouiseMensch We got your back. +06/24/2018,Comedians,@JenKirkman,@chelseaperetti But is there still gonna be a scene where a guy shows up a a lady’s wedding or something and says h… https://t.co/RCcCNqlqhx +06/24/2018,Comedians,@JenKirkman,@steveblats @Stapes It doesn’t. Go show your wife and kids this tweet. +06/23/2018,Comedians,@JenKirkman,@annielederman 👍 +06/22/2018,Comedians,@JenKirkman,@annielederman Aw thanks. Didn’t take four hours or anything for me to get the right sun lighting +06/22/2018,Comedians,@JenKirkman,Retweeting my podcast account @iseemfunpodcast https://t.co/BewLQtcNom +06/22/2018,Comedians,@JenKirkman,@PFTompkins God Bless it +06/22/2018,Comedians,@JenKirkman,@kelly_carlin And make an awesome daughter!! ❤️🙏🏻 with you today. +06/21/2018,Comedians,@JenKirkman,@anylaurie16 👌🏼👍 +06/21/2018,Comedians,@JenKirkman,@TrannaWintour @Alanis @10x10TO @michaelvenus @neverapartmtl Whoa!! Totally good look +06/20/2018,Comedians,@JenKirkman,@EugeneMirman Omg now everyone is gonna cancel their tix to Flight of the Concords Friday.... +06/18/2018,Comedians,@JenKirkman,@20committee @counterchekist @TheRickWilson I get it! And “I like it! Especially if it’s later in summer...” +06/18/2018,Comedians,@JenKirkman,@counterchekist ❤️🙏🏻👍👍👍👍 +06/18/2018,Comedians,@JenKirkman,@adriann_ramirez @lsqtheatre Ok cool 🧚‍♀️🧚‍♀️🧚‍♀️can you delete this tweet tho 😂 it’s ok for podcast but if I wante… https://t.co/EonZSNeAaG +06/18/2018,Comedians,@JenKirkman,👇🏼 (thread) https://t.co/Oxadgwzchy +06/18/2018,Comedians,@JenKirkman,Just in case any of you were still unclear about how comedians are prophets. https://t.co/kCmoczJai6 +06/17/2018,Comedians,@JenKirkman,@whocharted is there a pic of us from when I was on or a link or didn’t it air yet +06/17/2018,Comedians,@JenKirkman,@anylaurie16 😂😂😂😂😂😂😂😂😂😂 +06/17/2018,Comedians,@JenKirkman,Been trying to compose a ❤️tweet ❤️about Mamma Tammye for days. But I’ve lost fifty pounds in water weight from cry… https://t.co/ZVnu3pxvpg +06/16/2018,Comedians,@JenKirkman,@sedavenport I’m the luckiest girl. I don’t get cramps! +06/16/2018,Comedians,@JenKirkman,@JesseRikart It’s the everything. I don’t even watch the show but I’ve found him so appealing for decades +06/16/2018,Comedians,@JenKirkman,@notbeforenoon Yes. That’s what I mean and it’s not dawning on him that that’s wrong and not American +06/16/2018,Comedians,@JenKirkman,Guys wanna know how PMS feels? It's like the moment of provocation before a testosterone fueled bar fight and in th… https://t.co/Ko2xScBcgj +06/16/2018,Comedians,@JenKirkman,Why would you ever be happy to run into someone you only sort of know. +06/16/2018,Comedians,@JenKirkman,@michaelianblack “Accidentally” +06/16/2018,Comedians,@JenKirkman,@krazykernal Yeah I saw the transformation too on my end with people. It’s terrifying. +06/16/2018,Comedians,@JenKirkman,@lauferlaw That’s what I keep telling myself!! ❤️🙏🏻🙏🏻 +06/16/2018,Comedians,@JenKirkman,@TundraEatsYou I doubt my mom and him would appreciate that 😂 +06/16/2018,Comedians,@JenKirkman,@lauferlaw Why would those heavies that we need resign? Seems cutting off one’s nose....what then happens to the investigation +06/16/2018,Comedians,@JenKirkman,@TomArnold Why tmrw +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe Hey any excuse to toss up a caddy shack clip 😂 +06/15/2018,Comedians,@JenKirkman,"Me, as a get more confused about where America is headed. https://t.co/pZMnwWffn9" +06/15/2018,Comedians,@JenKirkman,Dear @HouseGOP @SenateGOP you can end this. https://t.co/K3P2ABDQW8 +06/15/2018,Comedians,@JenKirkman,@laurenduca @Allen Cc @mattbelknap +06/15/2018,Comedians,@JenKirkman,@KennethWReid 😂😂 +06/15/2018,Comedians,@JenKirkman,If his account were a purposeful parody of himself it would be genius. https://t.co/bZPuJdM4RC +06/15/2018,Comedians,@JenKirkman,@TheRickWilson I’ve been in bed since 630pm. No joke. +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe This is the most satisfying thing I have ever watched +06/15/2018,Comedians,@JenKirkman,@cameronesposito @jonahray @RAINN I can’t wait to watch!!!! I will so soon! +06/15/2018,Comedians,@JenKirkman,"She’s a hateful, hateful, gaslighting sociopath. https://t.co/rRVeeoppcv" +06/15/2018,Comedians,@JenKirkman,@cameronesposito @jonahray @RAINN 🙏🏻🙏🏻🙏🏻❤️👍👍 +06/15/2018,Comedians,@JenKirkman,@MrJonCryer I read this quickly and thought you wrote “anyone who doesn’t look like Anne Hathaway.” And I was like… https://t.co/YgeBm3iDiH +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe I’m greedy. I want both. +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe Hmm well ok then for “birthday weekend” 😂😂🎁🎁🎁🎁 +06/14/2018,Comedians,@JenKirkman,❓ https://t.co/jp0gEhqRUg +06/14/2018,Comedians,@JenKirkman,@jdouglaslittle @ryrysven @tarabea80 @Maggie_Klaus @thehill He didn’t even win a primary so save your kremlin talki… https://t.co/O71SvyTXUP +06/13/2018,Comedians,@JenKirkman,@DitMusic Please lemme know how it goes?????? +06/12/2018,Comedians,@JenKirkman,@DitMusic You’ve always been funnier than me so you’re gonna be amazing. Just open your mouth and say what you feel… https://t.co/NPA9V6LepL +06/12/2018,Comedians,@JenKirkman,"Hey @Newsweek a better headline would be “Just last year, Trump thought Kim Jong Un was his deceased father, Kim Jo… https://t.co/0vAlDptJOx" +06/12/2018,Comedians,@JenKirkman,@gametheorytoday Beta male start own business drop out of college interconnected.....do go on? +06/12/2018,Comedians,@JenKirkman,@MrJonCryer My guess? Destiny Pictures is a woman who is about to be represented by Michael Avenatti. +06/12/2018,Comedians,@JenKirkman,@donnabrazile @counterchekist @realDonaldTrump This is a fucked up thing to tweet Donna. RU serious +06/12/2018,Comedians,@JenKirkman,Who is the third Kim that Trump will meet with this month? +06/12/2018,Comedians,@JenKirkman,@Brotherwags I will never forget we kept saying “this is really gonna happen...” +06/12/2018,Comedians,@JenKirkman,@Hannahgadsby @netflix I’m so excited and so glad the world gets to see this. I tell everyone about it all the time! 🙏🏻❤️🙏🏻 +06/12/2018,Comedians,@JenKirkman,RT @Hannahgadsby: HERE IT IS! THE @netflix TRAILER FOR NANNETFLIX!! gosh.... https://t.co/qYpHDZ7gLm +06/12/2018,Comedians,@JenKirkman,Young people who came to see me on tour this year - remember when I told you guys about Dennis Rodman’s past with K… https://t.co/HKhNxvHZ2x +06/12/2018,Comedians,@JenKirkman,@allistillo @iseemfunpodcast How do I decide what to have for breakfast lunch tmrw. I need advice. +06/12/2018,Comedians,@JenKirkman,Omg https://t.co/wUAjNxma3f +06/12/2018,Comedians,@JenKirkman,@annielederman @AndyKindler 😂 +06/11/2018,Comedians,@JenKirkman,@JElvisWeinstein @AndyKindler Well if Andy is doing all of the speaking it sounds like the dummy DOES get to speak. #hey-o +06/11/2018,Comedians,@JenKirkman,@AuthorKimberley @NRA What a bunch of pussies (forgive use of word pussy) +06/11/2018,Comedians,@JenKirkman,@AndyKindler People often ask me “what’s it like being a woman in comedy”? This is my new answer. https://t.co/FYur0xuuAU +06/11/2018,Comedians,@JenKirkman,@AkilahObviously Omg 😮 the yelling part sounds horrifying and also just omg you poor thing. +06/11/2018,Comedians,@JenKirkman,@AkilahObviously Omg did you have to sit in the brace position for landing. And was it rough landing so glad all is ok 🙏🏻❤️ +06/11/2018,Comedians,@JenKirkman,I strongly feel the Never Trump Republicans and conservatives should make a documentary (much like the Fox News one… https://t.co/XTUvyryULs +06/11/2018,Comedians,@JenKirkman,@Caissie Bless you 🙏🏻❤️ +06/11/2018,Comedians,@JenKirkman,Delete your presidency. https://t.co/jrKBG6tqh3 +06/11/2018,Comedians,@JenKirkman,@kelly_carlin But I have a feeling DT will nuke us before NK does +06/11/2018,Comedians,@JenKirkman,@kelly_carlin You'll be so happy you didn't waste the 20 minutes of your life it takes to reach us worrying - you'l… https://t.co/00mR7XpGx0 +06/10/2018,Comedians,@JenKirkman,"Please wipe off your baby and cut the umbilical cord before you take the announcement pic, cool? Cool." +06/10/2018,Comedians,@JenKirkman,@JElvisWeinstein Shit. Now I’ve been activated. All I wanna do is think of more puns. +06/10/2018,Comedians,@JenKirkman,Indie-rock loving housewives sit around the house eating Bon-Bon..Ivers. +06/10/2018,Comedians,@JenKirkman,@ChrisFranjola “Jingle” is worse than “push pins” if you’re talking about old people expressions +06/10/2018,Comedians,@JenKirkman,@Brotherwags 😂😂😂 I don’t know if I’ve ever laughed so fucking hard +06/09/2018,Comedians,@JenKirkman,@sarahcolonna ❤️❤️❤️ +06/09/2018,Comedians,@JenKirkman,@janiehaddad I talk fast and it mostly confuses everyone then nothing happens 😂 +06/09/2018,Comedians,@JenKirkman,Please calm down. You don’t have to stand this far away from someone in a prescription line. He’s ruining the entir… https://t.co/KsHQoEfLK1 +06/09/2018,Comedians,@JenKirkman,@20committee @FelisDave Happy Caturday. My sister’s cat Mittens never takes a day off from trying to figure out the… https://t.co/uHfExmKvU5 +06/09/2018,Comedians,@JenKirkman,@DeanWardVenice @ChrisFranjola One time Chris wanted me to write a Porky Pig doesn’t wear pants joke +06/08/2018,Comedians,@JenKirkman,@ChrisFranjola Deep +06/08/2018,Comedians,@JenKirkman,@mrdavehill as #vip #celebs I bet we can still get into any cockpit we want tbh +06/08/2018,Comedians,@JenKirkman,@mrdavehill I really do. My dad took me on my first flight when I was 8 and before take off we walked in and pilot… https://t.co/FM3OInraxE +06/07/2018,Comedians,@JenKirkman,"This is important. And thank you @RepSwalwell for using common sense about, ya know, maybe not letting people help… https://t.co/D7xe6bbtCE" +06/07/2018,Comedians,@JenKirkman,I don't wanna alarm my parents but most of the music from your era involved men singing about wanting to have sex with teenaged girls. +06/07/2018,Comedians,@JenKirkman,@reznor68 @ACLU I’m sorry but you do not have correct Information on this. +06/07/2018,Comedians,@JenKirkman,@CandiceMcD Been vegetarian for 30 years so for me no +06/06/2018,Comedians,@JenKirkman,@roxydavis99 Wow. I didn’t know we were allowed to say all this. I must’ve missed the Deep State declassified meeti… https://t.co/aLMHC91j0G +06/06/2018,Comedians,@JenKirkman,@AndyKindler Did he use a word processor and then print it up on his DOT MATRIX printer? #choochoo +06/06/2018,Comedians,@JenKirkman,@michaelianblack @toddbarry I just said “omg watch this. Michael gonna eat this up.” +06/06/2018,Comedians,@JenKirkman,@michaelianblack @toddbarry IS it fun to goof around?? That’s the real question. +06/06/2018,Comedians,@JenKirkman,@toddbarry @michaelianblack @NBCNewsTHINK Todd what I text you privately while I’m tweeting must remain private. Thanks. Is this a DM +06/06/2018,Comedians,@JenKirkman,@michaelianblack @NBCNewsTHINK You’re a lovely human ❤️🙏🏻 +06/06/2018,Comedians,@JenKirkman,@Eviljohna @rbsmashp @joncoopertweets I asked him once on Twitter didn’t answer 😂 +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets I did a 92 point thread (no longer up but archived) about how trump and Bernie made sim… https://t.co/1BVw6G8geV +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets Russian indictments indicate B was helped and the media lets him go. Wife under FBI inv… https://t.co/zFvo8joZP6 +06/05/2018,Comedians,@JenKirkman,@ChrisFranjola You remind me of an old Dennis Miller +06/05/2018,Comedians,@JenKirkman,Biblical prophets haven't warned us of their prophecies with the intensity that Los Angeles cashiers deliver the ne… https://t.co/LVCQcaTs03 +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets Been scream/asking this since late 2016. I. Don’t. Get. It. We heard whispers of every… https://t.co/6iFsQ91nil +06/05/2018,Comedians,@JenKirkman,@nemack007 @counterchekist @lukeobrien @subverzo I’m blocked too +06/05/2018,Comedians,@JenKirkman,@michaelianblack I hear she owns all the jails and that’s why she hasn’t been jailed yet. She gave speeches in jail… https://t.co/eNSsL4pJnB +06/05/2018,Comedians,@JenKirkman,@michaelianblack No. Not as bad as what Hillary did. +06/05/2018,Comedians,@JenKirkman,@aliasvaughn You can. But this isn’t some freestyle stuff. It’s a very choreographed dance that comes with a song c… https://t.co/6VxJ7bQqrQ +06/05/2018,Comedians,@JenKirkman,@aliasvaughn And then Manafort turns on Tad Devine and I do a happy dance. +06/05/2018,Comedians,@JenKirkman,@jean_yoon @marilyn555 @lauferlaw @sparkycollier 100% +06/04/2018,Comedians,@JenKirkman,@KenPlume Thank you ken!! I hope you have 200 friends +06/03/2018,Comedians,@JenKirkman,@JamesFourM @mattgreenfield @RVAwonk @Vbiii241 BAM 🔥 +06/03/2018,Comedians,@JenKirkman,@QeyeTDogbytes @Pinche_Pi Maybe he will once Mueller talks to him about Tad Devine +06/03/2018,Comedians,@JenKirkman,@anylaurie16 He talked to you that way in front of your son??????? +06/02/2018,Comedians,@JenKirkman,"“Jennifah, good talking to you. Your father says hi but he’s busy right now watching Crocodile Dundee.”" +06/02/2018,Comedians,@JenKirkman,@1WomanProblem @SaraJFruman Never does. Thanks for making me laugh....at my own joke I guess. 😂😂😂😂 +06/02/2018,Comedians,@JenKirkman,@BrianStack153 @anylaurie16 I know. Why do people talk in elevators or ask personal questions. Who cares. And he wo… https://t.co/b3LEqayuc2 +06/02/2018,Comedians,@JenKirkman,"Pilot of my flight is a woman. And she’s going through the aisles shaking hands, saying her name, and “I’m driving… https://t.co/IYBFzd1vnO" +06/02/2018,Comedians,@JenKirkman,@anylaurie16 Why would you ever answer anyone 😂 +06/02/2018,Comedians,@JenKirkman,@Brotherwags 6:33 am in nyc and I have learned to no surprise that I’ve already experienced some sexism +06/01/2018,Comedians,@JenKirkman,"@RelativelySane0 @counterchekist @KremlinTrolls So you're saying ""baby, he was born that way?""" +06/01/2018,Comedians,@JenKirkman,@lauferlaw @LouiseMensch BAM! +06/01/2018,Comedians,@JenKirkman,@Tru7hS33kR @counterchekist @KremlinTrolls This is why I ONLY wear Saran Cling Wrap hats +06/01/2018,Comedians,@JenKirkman,@counterchekist @KremlinTrolls Wait I'm OLDER than Alex Jones? He looks like shit +06/01/2018,Comedians,@JenKirkman,“I’m literally dead” - tombstones in the future +05/31/2018,Comedians,@JenKirkman,@fortunefunny Oh good. She’s having some fun. +05/31/2018,Comedians,@JenKirkman,@fortunefunny FIND MELANIA!!! +05/31/2018,Comedians,@JenKirkman,@Brotherwags NO +05/31/2018,Comedians,@JenKirkman,@Brotherwags And that this feckless cunt is LITERALLY selling out America because she's a Russian fucking agent +05/31/2018,Comedians,@JenKirkman,@MCSnugz totally. lol. who am i kidding. +05/31/2018,Comedians,@JenKirkman,@johnmoe 😢 +05/31/2018,Comedians,@JenKirkman,@BVPcomedy I was JUST thinking about you today - no lie. I'm STILL in NYC - and have been all year :( :( :( But OBV… https://t.co/cecJrYtSOc +05/31/2018,Comedians,@JenKirkman,Yup. Stopped myself in the middle of a Google search. I'm too old for adhesive hair jewels. +05/30/2018,Comedians,@JenKirkman,@AndyKindler @dvdjbrn You really need your agent to reach out. Your Russian agent +05/30/2018,Comedians,@JenKirkman,@TheRickWilson 😂 +05/30/2018,Comedians,@JenKirkman,"Oh, sure. I'll take that receipt and then complete an online survey about your service once I finish MAKING MY LIFE WHAT I WANT IT TO BE." +05/30/2018,Comedians,@JenKirkman,How come confetti or balloons don't fall from the ceiling when I put a whole dollar bill in the counter tip jar?!?!? +05/30/2018,Comedians,@JenKirkman,@dvdjbrn @AndyKindler Block all of them. You don’t want any of them able to read your posts as you’re just handing them their research +05/30/2018,Comedians,@JenKirkman,@AndyKindler @dvdjbrn Hot tip cuz I study this stuff due to having been attacked by Russian trolls for two years ha… https://t.co/tFJxewfcHW +05/30/2018,Comedians,@JenKirkman,I've been on Twitter since the beginning when it was in black and white and we had to put a rabbit ear antenna on top of the computer. +05/29/2018,Comedians,@JenKirkman,If you're going to put your home videos of your cat on YouTube - please take the dirty sheets that you use as curta… https://t.co/KnsCCth0DB +05/29/2018,Comedians,@JenKirkman,If @ABCNetwork had just made my pilot - maybe they could’ve avoided this Roseanne mess. https://t.co/rjERp9Sqof +05/28/2018,Comedians,@JenKirkman,Is it ok that today I’m also remembering https://t.co/tLWgsL07b4 +05/28/2018,Comedians,@JenKirkman,A lovely day of remembrance to everyone. From me & Fleet Week. Thanks to those who have sacrificed their lives for… https://t.co/sdQjokuyEB +05/27/2018,Comedians,@JenKirkman,What?? This sounds like fan fiction about a modeling agency. https://t.co/HWaiBjXApJ +05/26/2018,Comedians,@JenKirkman,"My podcast @iseemfunpodcast is now available on @Spotify - and here's how to find it! +https://t.co/ZmnwMnY5Mn" +05/25/2018,Comedians,@JenKirkman,I judge people who have to physically stop what they're doing to answer a question. +05/25/2018,Comedians,@JenKirkman,This isn’t an apology. https://t.co/I3namDtAD6 +05/24/2018,Comedians,@JenKirkman,"I have a ""white noise"" machine in my bedroom. It blares the sounds of people discussing how expensive and competiti… https://t.co/s07kibsPeG" +05/23/2018,Comedians,@JenKirkman,"🇬🇧 LONDON! 🇬🇧 +Me. June 22nd. One night only. One show only. +Tickets here: https://t.co/l1uFeItbAv +@lsqtheatre https://t.co/DVglZByD1W" +05/20/2018,Comedians,@JenKirkman,"I'm gonna be rich once I open this funeral home/florist shop franchise called ""Making Arrangements.""" +05/20/2018,Comedians,@JenKirkman,She was a teenager 30 years his junior. I’m so over this shit. Let’s get some new heroes. https://t.co/W5tbUNwr8w +05/20/2018,Comedians,@JenKirkman,Please do not pawn your snooze of a wife off on me at a party thinking that we'll have things in common because we are both gals. +05/17/2018,Comedians,@JenKirkman,"""CAN MUELLER INDICT A SITTING PRESIDENT OR NOT?"" https://t.co/Aypysst9pu" +05/17/2018,Comedians,@JenKirkman,"""Stella McCartney clothes are so affordable!"" - anyone named McCartney" +05/16/2018,Comedians,@JenKirkman,"""We have no space in our home."" ""What? You have tons of space! You just have too many kids."" -me, if I hosted any HGTV show." +05/16/2018,Comedians,@JenKirkman,"Guys, nevermind Yanny and Laurel. Let’s never forget Yanni and Linda. https://t.co/e7hSGOegQ6" +05/15/2018,Comedians,@JenKirkman,"This is a great thing about a terrible thing. +https://t.co/oQvEMvOP4m" +05/15/2018,Comedians,@JenKirkman,Incredible thread. Only YOU can screw up the 2018 midterms by not speaking up about propaganda aimed at Dems and by… https://t.co/33H6qMx57O +05/15/2018,Comedians,@JenKirkman,Thank God for texting so you can quickly Google a reference rather than getting caught pretending to know face to f… https://t.co/ifDvMNbkmb +05/14/2018,Comedians,@JenKirkman,"Sometimes I just sit around thinking about the time Robert Reed pronounced weekend as ""week-END"" in an episode of the Brady Bunch." +05/14/2018,Comedians,@JenKirkman,"Hearing someone's phone ring in the middle of the day and their ring is my wake-up alarm, is the most disorienting… https://t.co/a2MUFdS6Cy" +05/14/2018,Comedians,@JenKirkman,@michellelkeen I looked it up - it's near the commons on Bowdoin street - near the state house-ish +05/14/2018,Comedians,@JenKirkman,I would like to fix- I try to get this out every way I can. I was wrong. There is a sculpture of Mary Dyer in Bosto… https://t.co/BEHtnlnmhp +05/13/2018,Comedians,@JenKirkman,"My Mother’s Day Call with my mom: + +“Jennifah, I saw Tom Jones. He sang Sex Bomb and he sings, “‘take off your shoes… https://t.co/HwJGUUrPM5" +05/13/2018,Comedians,@JenKirkman,Men when us women take over the world and install Matriarchy we promise we won't creepily watch you eat in restaurants alone. We don't care. +05/13/2018,Comedians,@JenKirkman,Your yearly reminder that Mother’s Day was originally a proclamation by Julia Howe Ward that women worldwide unite… https://t.co/M3rIHQxoyK +05/12/2018,Comedians,@JenKirkman,"Summer here I come! My beach body is READY! I am made of sand, bird poop, and syringes." +05/12/2018,Comedians,@JenKirkman,We have shit to do. https://t.co/REGwugxlLo +05/12/2018,Comedians,@JenKirkman,Jared @comedyattic (my fave comedy club booker) secretly taking me doing my vocal warm up video. https://t.co/JbUJEcOeHc +05/11/2018,Comedians,@JenKirkman,Spiritual Melania: “Best Be.” +05/11/2018,Comedians,@JenKirkman,@Merrillmarkoe He looks cooler and more awesome than most dudes my age and younger. He would never be caught dead w… https://t.co/e3l7xST6zI +05/11/2018,Comedians,@JenKirkman,"I am overhearing two 20-somethings discuss Keith Richards. +“I think he’s like 95.” +“No. He just looks 95 but I thi… https://t.co/kVvcJI5rcc" +05/11/2018,Comedians,@JenKirkman,The only carefree thing I do is toss out the extra button that comes with some clothes. +05/10/2018,Comedians,@JenKirkman,"Just another morning at the airport where everyone is impeccably dressed, smelling nice and making healthy food choices!" +05/10/2018,Comedians,@JenKirkman,"Male TSA agent to me. ""You're flying all alone today?"" I said, ""God. I wish! But I think there's going to be 200 other people on the plane.""" +05/09/2018,Comedians,@JenKirkman,BROOKLYN - I added this additional show on 7/29 because 7/22 sold out within a week - so don't sleep on these ticke… https://t.co/63SONjp77N +05/09/2018,Comedians,@JenKirkman,Sometimes I wonder if I'm really a woman because I don't enjoy watching Law & Order or Breakfast at Tiffany's. +05/09/2018,Comedians,@JenKirkman,I couldn't be less interested in what day of the week it is and how you're feeling about it and what day you want it to be +05/09/2018,Comedians,@JenKirkman,If you have abused any women I will kick your fucking ass.... https://t.co/af8MQfCui2 +05/08/2018,Comedians,@JenKirkman,LOS ANGELES!! My show LAB TEST is back for 3 more dates in 2018. It's been selling out since 2017 and so who are yo… https://t.co/mTWa17L35C +05/08/2018,Comedians,@JenKirkman,If you can't take the heat - get out of my bitchin' +05/08/2018,Comedians,@JenKirkman,"Nobody ever makes inspirational wood carvings that say, ""If you love something set it free. It will be totally fine… https://t.co/XzyQJ2LxSz" +05/08/2018,Comedians,@JenKirkman,I was in a good mood until someone just reminded me of when Scarlett Johansson covered a bunch of Tom Waits songs. +05/07/2018,Comedians,@JenKirkman,I’m done arguing with idiots who don't know that Ray Parker Jr. is totally Dorothy Parker’s nephew. +05/07/2018,Comedians,@JenKirkman,It's been a long day and night & I'm too tired to go through the steps of washing my face. I'll just take an entire… https://t.co/yYMgRfypu0 +05/07/2018,Comedians,@JenKirkman,I'm looking for more of a farm-to-couch dining experience. +05/06/2018,Comedians,@JenKirkman,I bet necrophiliacs have good time management skills. They've taken the two things people obsess over every three minutes & combined them. +05/06/2018,Comedians,@JenKirkman,"I wanna close every last business that still says ""www"" when giving out their website over the phone." +06/24/2018,Musicians,@taylorswift13,"Angels 😇 +@RobbieWilliams +https://t.co/A6rx5WA0ie" +05/25/2018,Musicians,@taylorswift13,Amazing @JamesBayMusic! 👏👏👏👏👏👏👏👏👏👏👏👏👏 https://t.co/9RDrCEbKBc +05/22/2018,Musicians,@taylorswift13,Thanks @vmagazine ❤️ See you tonight Seattle!! https://t.co/VB78rGXO7C +05/12/2018,Musicians,@taylorswift13,RT @Variety: Taylor Swift Dazzles on Opening Night of 'Reputation' Tour @taylorswfit13 https://t.co/lGp9dgDYSr +05/12/2018,Musicians,@taylorswift13,RT @RollingStone: Taylor Swift kicked off her 'Reputation' tour last night in Arizona. Rob Sheffield on why this trek is her finest yet htt… +05/12/2018,Musicians,@taylorswift13,RT @mercnews: Review: Taylor Swift delivers near-perfect pop show in Bay Area https://t.co/aOoOAMGCGV https://t.co/EQa5YuTRO9 +05/11/2018,Musicians,@taylorswift13,RT @charli_xcx: 💕CHARLI💕CAMILA💕TAYLOR💕 SEE U 2NIGHT SANTA CLARA !!!!!! https://t.co/dCaEIaFmRR +05/05/2018,Musicians,@taylorswift13,"RT @Camila_Cabello: ALSO ""10 SONGS FROM PAST ALBUMS"" MY HEAD IS SPINNING?!! WILL A HEY STEPHEN, OR CHANGE BE THROWN IN? ENCHANTED?! LONG LI…" +05/05/2018,Musicians,@taylorswift13,RT @Camila_Cabello: THERE’S FOUR DAYS TILL THE REPUTATION TOUR HOLD MY WIG +04/11/2018,Musicians,@taylorswift13,It's National Siblings Day! Check out Austin's movie 😁 https://t.co/Zqx5hLj6of +03/30/2018,Musicians,@taylorswift13,Vertical video for #Delicate out now. Only on @Spotify ✨ https://t.co/ZHvrH7k1PN https://t.co/nhcfIv97gR +03/29/2018,Musicians,@taylorswift13,New video for #Delicate at midnight EST tonight. Only on @spotify  ✨ https://t.co/AHEY6LOSTz +03/12/2018,Musicians,@taylorswift13,I know that it’s delicate... https://t.co/0H5EpgcFtd +03/11/2018,Musicians,@taylorswift13,DELICATE VIDEO WORLD PREMIERE ON @iHeartRadio MUSIC AWARDS ON @TBSNetwork!!! ✨💃✨ https://t.co/hhILI7bwn9 +03/05/2018,Musicians,@taylorswift13,✨✨✨✨✨✨✨✨✨✨✨✨✨ https://t.co/KHNRCaKfU0 +03/01/2018,Musicians,@taylorswift13,I have a very exciting update to share... @Camila_Cabello and @charli_xcx will be the opening acts on the… https://t.co/cN3Wfgbvb3 +02/05/2018,Musicians,@taylorswift13,"Songs I’m loving right now 🎶 +https://t.co/K62TYfJht6" +01/12/2018,Musicians,@taylorswift13,#EndGameMusicVideo out now. @edsheeran @1future https://t.co/z6EiFsLniY +01/11/2018,Musicians,@taylorswift13,"Tonight at midnight eastern. #EndGameMusicVideo +@1future @edsheeran https://t.co/XHRS02IXfY" +12/24/2017,Musicians,@taylorswift13,RT @taylornation13: #TheSwiftLife is now available for Android! Get it on Google Play now: https://t.co/qguJHJ3qPL https://t.co/93evBchcNl +12/16/2017,Musicians,@taylorswift13,RT @AppStore: .@taylorswift13's first app has arrived—and it’s only on the App Store. (Early reviews are in: Meredith and Olivia give it tw… +12/13/2017,Musicians,@taylorswift13,North American dates on sale now! https://t.co/o8bU3G9HMl https://t.co/4ZV2mczOPt +12/11/2017,Musicians,@taylorswift13,RT @RIAA: Congratulations @taylorswift13. #reputation is 3X Platinum + RIAA’s top certified 2017 album to date! @BigMachine https://t.co/D1… +12/11/2017,Musicians,@taylorswift13,RT @RIAA: There’s more! Look What You Made Me Do is 3X Platinum + ... Ready For It? is Platinum @taylorswift13! @BigMachine https://t.co/St… +12/11/2017,Musicians,@taylorswift13,RT @RIAA: #Fearless joins the RIAA 10X Diamond club! @taylorswift13! @BigMachine https://t.co/DSnfIt2Nmc +12/07/2017,Musicians,@taylorswift13,"RT @taylornation13: 🚗❤️🚨 The perfect road trip song! Watch @taylorswift13 find her “Getaway Car” breakthrough on #TaylorSwiftNOW, only from…" +12/07/2017,Musicians,@taylorswift13,"""...Ready For It?"" (@BloodPop ® Remix) out now - https://t.co/BhnUlUqUD7 https://t.co/rsKdAQzd2q" +12/04/2017,Musicians,@taylorswift13,"Thank you @Edward_Enninful, Mert Alas and Marcus Piggott for your passion, spirit and contagious laughter on set.… https://t.co/HTJMTNJlrt" +12/02/2017,Musicians,@taylorswift13,Absolutely stunning. https://t.co/6itJC1bk6W +11/30/2017,Musicians,@taylorswift13,RT @taylornation13: https://t.co/WWpP1tpRmU +11/16/2017,Musicians,@taylorswift13,This week has been unforgettable. I love you guys. Thanks a million 😉 https://t.co/qjspCA7NJ7 +11/15/2017,Musicians,@taylorswift13,The Making of #Delicate ✨ #reputation #TaylorSwiftNow https://t.co/tn78pMCoVV +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/CbTqn2F6Xs +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/JhZNUZ7MxK +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/f4135JnNhM +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/JtblVbBa5u +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/sAtTLVzfw3 +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/pOEpn6Dk5p +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/2OV2DvvIyN +11/14/2017,Musicians,@taylorswift13,RT @jimmyfallon: Taylor Swift performs 'New Year's Day' from her new album Reputation #FallonTonight https://t.co/20GPtmFWzf +11/13/2017,Musicians,@taylorswift13,RT @etnow: Taylor Swift defends her 'reputation' as a great 'SNL' musical guest with 2 epic performances. https://t.co/BGvqX6H1Sn https://t… +11/13/2017,Musicians,@taylorswift13,RT @people: Taylor Swift Takes SNL Stage with Snake-Shaped Mic In Hand — then Goes Acoustic https://t.co/cnH2ESn93x +11/13/2017,Musicians,@taylorswift13,RT @Metro_Ents: Taylor Swift slays the first live performances of the Reputation era on #SNL https://t.co/gYKn3UjLBW +11/13/2017,Musicians,@taylorswift13,RT @usweekly: Taylor Swift slays on 'SNL' and Tiffany Haddish makes history: see the best moments https://t.co/ZdWzK8e3Qj +11/13/2017,Musicians,@taylorswift13,RT @InStyle: Watch Taylor Swift crush her performances from last night's SNL. https://t.co/7zSCBEerxB +11/12/2017,Musicians,@taylorswift13,"THANK YOU SO MUCH!! AHHHH!!! PS, I ADORED your CMA performance 👏👏👏 https://t.co/RGEvOTYEhd" +11/11/2017,Musicians,@taylorswift13,"Tonight. + +📷: Mary Ellen Matthews https://t.co/mbQdDHz5Dn" +11/11/2017,Musicians,@taylorswift13,"My cousins in St. Louis sent this to me. I LOVE YOU @LauraKHettiger +https://t.co/OvC349nq8y" +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/WPWiwPodY1 +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/hEGz0GQFqc +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/PRkjzCmoAc +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/NPcA5WsgVL +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/hxD5n2KrxW +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/9n2rvbzXph +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/K3tUWVvmpd +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/18sg97Oshp +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/3p2sIX7WGU +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/z5HoBkxUQy +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/O8sznXy3vX +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/sygCHKoJvu +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/tDWpcN4MGx +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/eS6JDjsWuF +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/rOXGOsBDae +11/10/2017,Musicians,@taylorswift13,RT @babyhaim: give me dress all day everyday....dress dress dress dress yes yes yes yes @taylorswift13 https://t.co/0RfSI1QHpY +11/10/2017,Musicians,@taylorswift13,"RT @latimes: Taylor Swift's talent remains intact on ""Reputation,"" her most focused, most cohesive album yet https://t.co/9OWWyhLppb https:…" +11/10/2017,Musicians,@taylorswift13,RT @robsheff: good lord I love this album https://t.co/pUVZtUg4t5 +11/10/2017,Musicians,@taylorswift13,#reputation is out now. Let the games begin. https://t.co/oExj2XFGvH https://t.co/GzA6cTEwjf +11/10/2017,Musicians,@taylorswift13,RT @taylornation13: Get an exclusive first listen of ‘New Year’s Day’ at 9:29p ET tonight on @ABC and hang with us as we countdown to #repu… +11/09/2017,Musicians,@taylorswift13,"Waiting for #reputation like... + +https://t.co/oExj2XFGvH https://t.co/LCCRtKnQXz" +11/09/2017,Musicians,@taylorswift13,ABC tonight during Scandal #reputation #TGIT https://t.co/kOhx1vAXoV +11/09/2017,Musicians,@taylorswift13,In NYC for SNL rehearsals. I️ LOVE YOU @littlebigtown and CMAs. https://t.co/3QT7bX6yOe +11/09/2017,Musicians,@taylorswift13,"RT @GMA: CMA Awards Song of the Year: ""Better Man"" - @taylorswift13 + +@CountryMusic #cmaawards2017 #CMAawards https://t.co/QJlUQXHh64" +11/09/2017,Musicians,@taylorswift13,"Two days until #reputation. +https://t.co/oExj2XFGvH https://t.co/z4bk0thC5c" +11/08/2017,Musicians,@taylorswift13,"Three new behind-the-scenes videos available now. + +Only on @AppleMusic: https://t.co/nNtHaYzZrp https://t.co/a4E6cNaD3B" +11/08/2017,Musicians,@taylorswift13,RT @courtneyforce: Let the games begin! Running a @taylorswift13 FunnyCar w/ @AdvanceAuto & @BigMachine at @NHRA Finals! Taylors #reputatio… +11/08/2017,Musicians,@taylorswift13,Forgot to show the back of the Target magazines 😂 on Friday you can get your hands on this quality reading material… https://t.co/r626FRMtI2 +11/08/2017,Musicians,@taylorswift13,"3 days until #reputation. + +https://t.co/oExj2XFGvH https://t.co/sjr8hMqPxV" +11/07/2017,Musicians,@taylorswift13,"Two unique magazines. Poetry, paintings, lyrics & polaroids. +Available Friday: https://t.co/fPhRA1wB6F https://t.co/frFIILyrqa" +11/07/2017,Musicians,@taylorswift13,Inside the reputation Secret Sessions - https://t.co/aotQtPBzer +11/03/2017,Musicians,@taylorswift13,The #CallItWhatYouWant lyric video is out now! Watch it here: https://t.co/FKYJ3dADib +11/03/2017,Musicians,@taylorswift13,"“Call It What You Want” available now. @applemusic +Pre-order #reputation: https://t.co/oExj2XFGvH https://t.co/EWxoTpSzIT" +11/02/2017,Musicians,@taylorswift13,Call It What You Want. Midnight Eastern. https://t.co/nTmlQUzmFN +11/01/2017,Musicians,@taylorswift13,"RT @ATT: ⏰ The Making of a Song premieres 11/13 on @DIRECTVNOW, only from AT&T! https://t.co/emXplX8gjo #TaylorSwiftNOW https://t.co/VIXXYd…" +10/27/2017,Musicians,@taylorswift13,#ReadyForItMusicVideo https://t.co/HYBhBqNVo3 +10/02/2017,Musicians,@taylorswift13,There are no words to express the helplessness and sorrow my broken heart feels for the victims in Vegas and their families. +09/29/2017,Musicians,@taylorswift13,https://t.co/EIXRjnE9Gw +09/22/2017,Musicians,@taylorswift13,"RT @RollingStone: All 115 of Taylor Swift's songs, ranked https://t.co/mdD4f04rQ8 https://t.co/Bm317v6fib" +09/22/2017,Musicians,@taylorswift13,RT @TheEllenShow: #LookWhatYouMadeMeDo @TaylorSwift13 https://t.co/8rUDDtwbdH +09/22/2017,Musicians,@taylorswift13,😍😍😍 https://t.co/oIAruxj8ZH +09/07/2017,Musicians,@taylorswift13,😃☎️ @ATT https://t.co/I6mCnlan8g https://t.co/mjjELwz7L8 +09/07/2017,Musicians,@taylorswift13,Some real tough questions I had for Olivia. https://t.co/VeLIN3iYRY +09/07/2017,Musicians,@taylorswift13,Such a taxing day when they're like 'eat some cookie dough' and you're like 'ok I'll make this sacrifice for my art… https://t.co/oddvslRGXe +09/03/2017,Musicians,@taylorswift13,A second glance into #reputation...ready for it? https://t.co/e495xJi3M8 https://t.co/HF35pISj2N +08/28/2017,Musicians,@taylorswift13,The #LWYMMDvideo is out now - https://t.co/6ajIH45CnX +08/25/2017,Musicians,@taylorswift13,"Official #LWYMMDvideo world premiere. +Sunday 8/27 at the @vmas https://t.co/tjAxr8qdsY" +08/25/2017,Musicians,@taylorswift13,"New single #LookWhatYouMadeMeDo out now. Pre-order #reputation: https://t.co/oExj2XFGvH + +Merch & ticket info at… https://t.co/YFctYldpic" +08/23/2017,Musicians,@taylorswift13,https://t.co/xMBBukfZPs +08/23/2017,Musicians,@taylorswift13,https://t.co/xqhhDZ0y7c +08/22/2017,Musicians,@taylorswift13,https://t.co/12Rfi8bso4 +08/21/2017,Musicians,@taylorswift13,https://t.co/p2DyY0e2M3 +07/02/2018,Musicians,@ArianaGrande,🌫 https://t.co/hXTdu7ZFiP https://t.co/sz4OULBKbr +07/02/2018,Musicians,@ArianaGrande,🍽🌙☁️ https://t.co/1CZ1FvtYK5 +07/01/2018,Musicians,@ArianaGrande,i try my sweets 🍽 https://t.co/Qo7Ub3cZ4k +07/01/2018,Musicians,@ArianaGrande,yea it’s v exciting https://t.co/FSEf65zsjL +07/01/2018,Musicians,@ArianaGrande,= https://t.co/pcTmPpmIbS +07/01/2018,Musicians,@ArianaGrande,cloud > https://t.co/y7xu2YU0HD +07/01/2018,Musicians,@ArianaGrande,☁️ ♡ https://t.co/DKvvWZBm2T +07/01/2018,Musicians,@ArianaGrande,@ColleenB123 and teach your child all the strange space & marine biology facts it will never need to know +07/01/2018,Musicians,@ArianaGrande,@ColleenB123 i love u so much more i KNEW immediately. i cant wait to hug u. +07/01/2018,Musicians,@ArianaGrande,@Iouisrem omg hbd ! +07/01/2018,Musicians,@ArianaGrande,@sweetenerari hbd baby +07/01/2018,Musicians,@ArianaGrande,@agbdavidson so happy for her. and can’t wait to meet the tiny human ! +07/01/2018,Musicians,@ArianaGrande,@agbdavidson i knew it. for some reason. she was like hey can u call me ? and i was like omg pregnant. +07/01/2018,Musicians,@ArianaGrande,@goodnightdeIuxe the bottle comes out of the cloud ! it’s so cute +07/01/2018,Musicians,@ArianaGrande,love ʸᵘʰ i do +07/01/2018,Musicians,@ArianaGrande,@greedyillusion https://t.co/kLR5qK8BQH +07/01/2018,Musicians,@ArianaGrande,@arianapotion ʸᵘʰs i do +07/01/2018,Musicians,@ArianaGrande,@greedyillusion oooo i want to show u the packaging +07/01/2018,Musicians,@ArianaGrande,@biebbsspurpose i really havent ! y’all have usually heard waaaay more by now aren’t u proud of me +07/01/2018,Musicians,@ArianaGrande,@godisblazed i don’t mute y’all u my babies +07/01/2018,Musicians,@ArianaGrande,"@godisblazed no, rose" +07/01/2018,Musicians,@ArianaGrande,@buntybutera @tearsuscry happy giaw month to u baby ! +07/01/2018,Musicians,@ArianaGrande,@tearsuscry hmmmmm +07/01/2018,Musicians,@ArianaGrande,i logged on at the right time https://t.co/8sVTPVT7id +07/01/2018,Musicians,@ArianaGrande,love ʸᵘʰ more https://t.co/6A4UPBonKe +07/01/2018,Musicians,@ArianaGrande,omg https://t.co/jVIq1FTWGo +07/01/2018,Musicians,@ArianaGrande,🌫 ♡ https://t.co/KhNWi3jUTb +06/30/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 🌫 https://t.co/kgaHLWjUeK https://t.co/pi5FukIk0W +06/30/2018,Musicians,@ArianaGrande,@onelovesbutera me fuckin too but he’s busy being an eyebrow / lash extension king ! so proud of him +06/30/2018,Musicians,@ArianaGrande,@grandesliving ☕️ +06/30/2018,Musicians,@ArianaGrande,@arianasgrnds omg honeymoon ave duhhhhh +06/30/2018,Musicians,@ArianaGrande,@agbdavidson kb 100% +06/30/2018,Musicians,@ArianaGrande,@jonygrandee oh trust me so do we lmao 🙈 he’s very wonderful at what he does tho +06/30/2018,Musicians,@ArianaGrande,@bettersoffs sksjsjs don’t it’s ok i understand +06/30/2018,Musicians,@ArianaGrande,@blowsitaIl yuh yuh yuh ! +06/30/2018,Musicians,@ArianaGrande,@nyczach yooooo wanna hear something i was afraid to tell y’all bc i didn’t want u to worry but i didn’t even do th… https://t.co/iZ7zF9zGA7 +06/30/2018,Musicians,@ArianaGrande,luh you so much https://t.co/W9i76NWFGj +06/30/2018,Musicians,@ArianaGrande,sksjsjsj https://t.co/w4B87oxUdV +06/30/2018,Musicians,@ArianaGrande,oh ........... https://t.co/MIcTrVFgJY +06/30/2018,Musicians,@ArianaGrande,@bettersoffs @rightheresus good bb. love you guys. have a good night pls! +06/30/2018,Musicians,@ArianaGrande,@grandesrole @rightheresus thank u sm +06/30/2018,Musicians,@ArianaGrande,@rightheresus i’m like ...... pretty good +06/30/2018,Musicians,@ArianaGrande,@justgrandeit @ttylgrande mmm hmmmm ! +06/30/2018,Musicians,@ArianaGrande,@remdrops @theIightiscomin sksjsjsj we’ve literally been working on getting our lil dwt project to u nonstop ! thes… https://t.co/SHya6iWTTL +06/29/2018,Musicians,@ArianaGrande,@bigtitsariana IT WAS A BDAY GIFT +06/29/2018,Musicians,@ArianaGrande,@moonlightmiguel amdjsksjjsjs +06/29/2018,Musicians,@ArianaGrande,@fvocus . +06/29/2018,Musicians,@ArianaGrande,@rightheresus @notearsnjh @lightissgrande @blazedbyari @apeshitdeluxe indeed +06/29/2018,Musicians,@ArianaGrande,@notearsnjh @lightissgrande @blazedbyari @apeshitdeluxe yummy ones +06/29/2018,Musicians,@ArianaGrande,"@moonofari you’ll never know +only one +dw & be alright are tied" +06/29/2018,Musicians,@ArianaGrande,@lightissgrande @blazedbyari @apeshitdeluxe it’s so me +06/29/2018,Musicians,@ArianaGrande,@godisawomanag ! +06/29/2018,Musicians,@ArianaGrande,@grandekordei @blazedbyari @apeshitdeluxe collect me +06/29/2018,Musicians,@ArianaGrande,@defendgrande @blazedbyari @apeshitdeluxe 🍴 +06/29/2018,Musicians,@ArianaGrande,@minajcum @blazedbyari @apeshitdeluxe oof r we fighting +06/29/2018,Musicians,@ArianaGrande,@blazedbyari @apeshitdeluxe for now +06/29/2018,Musicians,@ArianaGrande,@bettersoffs for now +06/29/2018,Musicians,@ArianaGrande,@bettersoffs only one +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe i’m back & i feel like they’re tied although so very different +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe like i love u SO much im laughing +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe omG you’re the meanest i love u so so so much tho even tho tasteless sksjsjshsks +06/29/2018,Musicians,@ArianaGrande,@behoeright @apeshitdeluxe @grandesliving anys i love u +06/29/2018,Musicians,@ArianaGrande,@gagasgrande omg love u. hugging u from here. +06/29/2018,Musicians,@ArianaGrande,@privilegedboca @JasperButera @sunkissedhanna i love u more +06/29/2018,Musicians,@ArianaGrande,@sidestoside @JasperButera @sunkissedhanna no but i love u sm +06/29/2018,Musicians,@ArianaGrande,@betteroffdeIuxe @JasperButera @sunkissedhanna ok all of them +06/29/2018,Musicians,@ArianaGrande,@grandesliving oooo i meant single +06/29/2018,Musicians,@ArianaGrande,@collectcaIls @JasperButera @sunkissedhanna ! +06/29/2018,Musicians,@ArianaGrande,@arianaclout @JasperButera @sunkissedhanna so r u my cutie omg +06/29/2018,Musicians,@ArianaGrande,@JasperButera @sunkissedhanna i don’t like to hype y’all up but a hundred percent +06/29/2018,Musicians,@ArianaGrande,@mariesweeteners @badcisions @jonygrandee you’ll see +06/29/2018,Musicians,@ArianaGrande,@Ieftstocry @badcisions @jonygrandee can’t +06/29/2018,Musicians,@ArianaGrande,@remslovato @badcisions @jonygrandee yea +06/29/2018,Musicians,@ArianaGrande,@buterassheesh @jonygrandee ok tru +06/29/2018,Musicians,@ArianaGrande,@badcisions @jonygrandee 🌘🌫👩🏼‍⚖️☁️🌎🕯🌙🐱🎨👼🏼🌌🐺 +06/29/2018,Musicians,@ArianaGrande,@jonygrandee babies it’s not that deep ! these are jus the emojis i like 🙈 +06/29/2018,Musicians,@ArianaGrande,⚡️ https://t.co/Q2qZE5DFBS +06/29/2018,Musicians,@ArianaGrande,i love u +06/29/2018,Musicians,@ArianaGrande,@sweetnrsus it’s coming +06/29/2018,Musicians,@ArianaGrande,@letmeIoveyou @GRANDESDEVOTlON ok werk even tho we’re celebrating at midnight. u in ? +06/29/2018,Musicians,@ArianaGrande,@sweetenersammy this ones jus for me 🙈😇 +06/29/2018,Musicians,@ArianaGrande,@GRANDESDEVOTlON is it 48 or 49 i- +06/29/2018,Musicians,@ArianaGrande,@bealrightdeluxe @notearsttocry @theway fuck i love y’all both sooooo much more fr +06/29/2018,Musicians,@ArianaGrande,@notearsttocry i cant tell u how hard we just laughed +06/29/2018,Musicians,@ArianaGrande,"@selfloveari hi it’s courtney +1. r.e.m. +2. better off +3. sweetener +4. pete +5. goodnight n go" +06/29/2018,Musicians,@ArianaGrande,@selfloveari omg inquiring now +06/29/2018,Musicians,@ArianaGrande,we could jus ... https://t.co/d172UF5KcS +06/28/2018,Musicians,@ArianaGrande,🌫 +06/28/2018,Musicians,@ArianaGrande,if u can beliiiieeeeeeeve mmmm you’re such a dream to me +06/28/2018,Musicians,@ArianaGrande,sleeeeeeeeeep +06/28/2018,Musicians,@ArianaGrande,yuh +06/28/2018,Musicians,@ArianaGrande,boy you’re sucha dream to me +06/28/2018,Musicians,@ArianaGrande,"RT @RepublicRecords: 𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 +𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 +𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 + +Pre-order @ArianaGrande's new album // Out 8.17 +↳ https://t.co/7rXownGX5Q https://t.c…" +06/28/2018,Musicians,@ArianaGrande,@RAINEGRANDE i do +06/28/2018,Musicians,@ArianaGrande,@grandemeester HAHAHAH +06/28/2018,Musicians,@ArianaGrande,@notearslexi omg my sometimes pants look great hello +06/28/2018,Musicians,@ArianaGrande,@ntltckay love u more +06/28/2018,Musicians,@ArianaGrande,@kelanigrande never +06/28/2018,Musicians,@ArianaGrande,@invisibleseas @sweetaner sksjsjskjsjsn +06/28/2018,Musicians,@ArianaGrande,@sweetaner i tried wearing jeans today i felt like my legs were braided. we’ll see. +06/28/2018,Musicians,@ArianaGrande,@minajcum i’m crying wtf is this +06/28/2018,Musicians,@ArianaGrande,i’d literally do this tonight if i could https://t.co/HbUodEXBqd +06/28/2018,Musicians,@ArianaGrande,@arianashijabi i’m pete +06/28/2018,Musicians,@ArianaGrande,hey i miss singing for u guys bye https://t.co/OpQuGtRovU +06/27/2018,Musicians,@ArianaGrande,hi love u more https://t.co/L4jM4iSQsh +06/27/2018,Musicians,@ArianaGrande,omg https://t.co/OiTSyRpWkn +06/27/2018,Musicians,@ArianaGrande,🌘 ♡ https://t.co/SzncBFvnqQ +06/27/2018,Musicians,@ArianaGrande,@juhaynatdjebara @shadeofari tis the whole intro :’) +06/27/2018,Musicians,@ArianaGrande,@sweetenerlilly yes :) +06/27/2018,Musicians,@ArianaGrande,@gotwelIsoon no u already have raindrops now ! my bad. this was confusing. i decided to give u raindrops last minut… https://t.co/rOFN9IjEGz +06/27/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs bundles https://t.co/8wbV2UN8yL https://t.co/cPDH2OqAsa +06/27/2018,Musicians,@ArianaGrande,bitch a mood https://t.co/7UNMLml7vQ +06/27/2018,Musicians,@ArianaGrande,i still don’t think y’all understand how much i love u ........ like .... at the fuck all +06/27/2018,Musicians,@ArianaGrande,issa countdown https://t.co/Us5T2AWutC +06/27/2018,Musicians,@ArianaGrande,@tbyarianagb thank u baby +06/27/2018,Musicians,@ArianaGrande,@grandesbenefit full mood i can’t wait +06/27/2018,Musicians,@ArianaGrande,@dangerousbwoman r we fighting +06/27/2018,Musicians,@ArianaGrande,@selrianarunpop omg cutie ! thank you ! i’m ......... the most excited for you to hear the rest ..... ever +06/27/2018,Musicians,@ArianaGrande,@grandesweeter love u way more +06/27/2018,Musicians,@ArianaGrande,@arianashijabi omg they’re so fun +06/27/2018,Musicians,@ArianaGrande,@flamesariana love u way more +06/27/2018,Musicians,@ArianaGrande,@cutepiegrande u too my sweet +06/27/2018,Musicians,@ArianaGrande,@knewitgrande missed u +06/27/2018,Musicians,@ArianaGrande,@touchedher the best ever i love u +06/27/2018,Musicians,@ArianaGrande,@aintnotearleft @sweetenerlilly i love u more +06/27/2018,Musicians,@ArianaGrande,@godisawomanag hi baby ! +06/27/2018,Musicians,@ArianaGrande,@sweetenerlilly the most grateful ever +06/27/2018,Musicians,@ArianaGrande,“i found the perfect dress for lafayette today” - a tipsy @victoriamonet +06/26/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 🌫 https://t.co/kgaHLW2iQa https://t.co/JOyKQL2iup +06/25/2018,Musicians,@ArianaGrande,@offlinehunk werk +06/25/2018,Musicians,@ArianaGrande,i’m so i’m so !!! +06/25/2018,Musicians,@ArianaGrande,caption dis https://t.co/O7EN8BNO9T +06/25/2018,Musicians,@ArianaGrande,remember when i was the SHADIEST BABY IN THE WORLD https://t.co/WWVqgTJzJM +06/25/2018,Musicians,@ArianaGrande,i - https://t.co/vqiHXSXdOu +06/25/2018,Musicians,@ArianaGrande,ily @troyesivan +06/25/2018,Musicians,@ArianaGrande,@grandekordei i already know qt +06/25/2018,Musicians,@ArianaGrande,@bottomlineari @grandekordei love u more +06/25/2018,Musicians,@ArianaGrande,@grandekordei sksjshakshaksj i love u more +06/25/2018,Musicians,@ArianaGrande,@grandekordei how tFYCK is this a drag i LOVE U and tweet u like 79 times a day relax i love u goodbye +06/25/2018,Musicians,@ArianaGrande,@joangrande @grandekordei @blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @NICKIMINAJ ur so cute i’m out +06/25/2018,Musicians,@ArianaGrande,@joangrande @grandekordei @blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @NICKIMINAJ “expand their mus… https://t.co/qj7YOKwlRJ +06/25/2018,Musicians,@ArianaGrande,ok i love u i gtg find troye +06/25/2018,Musicians,@ArianaGrande,@seattlekarev @teasybutera @nucleargrande @focusondiley @selfloveari which is also what i want on my tombstone btw +06/25/2018,Musicians,@ArianaGrande,@seattlekarev @teasybutera @nucleargrande @focusondiley @selfloveari a bitch ate +06/25/2018,Musicians,@ArianaGrande,@badlyariana i love u sm more always +06/25/2018,Musicians,@ArianaGrande,@teasybutera @nucleargrande @focusondiley @selfloveari sexual female empowerment & how women are literally everythi… https://t.co/xjsS4VrJov +06/25/2018,Musicians,@ArianaGrande,@whenyouready it’s the best +06/25/2018,Musicians,@ArianaGrande,@nucleargrande @focusondiley @selfloveari it’s so fun to like............ go places ! some days will always be bett… https://t.co/Anr67Cq88r +06/25/2018,Musicians,@ArianaGrande,@remsbutera bc at first i was nervous about like....... it coming true. if that makes sense. more honest than i was… https://t.co/QuDRjLXZYP +06/25/2018,Musicians,@ArianaGrande,@purposerealest @selfloveari duh +06/25/2018,Musicians,@ArianaGrande,@focusondiley @selfloveari me too ! it’s lit ! no anxiety ! who is she +06/25/2018,Musicians,@ArianaGrande,"@notearstocryy @selfloveari your humor, understanding, honesty & kindness ! and your ability to make me feel human… https://t.co/zaBD8IRzxp" +06/25/2018,Musicians,@ArianaGrande,@tearsleftocry @notearsalright oh fuck she’s in my favorites too +06/25/2018,Musicians,@ArianaGrande,@selfloveari yo same +06/25/2018,Musicians,@ArianaGrande,@Iouisrem @agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande fuck and borderline. i really c… https://t.co/Uz4Q39GBQH +06/25/2018,Musicians,@ArianaGrande,@notearsalright nope +06/25/2018,Musicians,@ArianaGrande,i know we’re not really doing snippets but i do wanna give u sum special for my birthday if that’s ok .... might po… https://t.co/pCoCDQXE8e +06/25/2018,Musicians,@ArianaGrande,@Iouisrem @agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande i don’t really have a top 5 i k… https://t.co/kwF0QtNLaY +06/25/2018,Musicians,@ArianaGrande,"@agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande rosh says: +Not in order... can't do that.… https://t.co/kcBIxBAOS0" +06/25/2018,Musicians,@ArianaGrande,@leavemeloona @alemoonlightbae @arisweetwaffle @bealrightdeluxe @joangrande everyone’s sleeping ! i’ll ask him too +06/25/2018,Musicians,@ArianaGrande,"@blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande hi it’s doug!!! +- Better Off +- Get Better S… https://t.co/jVYlRNMYq6" +06/25/2018,Musicians,@ArianaGrande,@blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande handing phone over +06/25/2018,Musicians,@ArianaGrande,@alemoonlightbae @arisweetwaffle @bealrightdeluxe @joangrande i’ll ask him in a lil omg +06/25/2018,Musicians,@ArianaGrande,@selfloveari @arisweetwaffle @bealrightdeluxe @joangrande omG i’ll ask when she’s awake +06/25/2018,Musicians,@ArianaGrande,@Buterasbieberrx @arisweetwaffle @bealrightdeluxe @joangrande omg i’ll ask tonight +06/25/2018,Musicians,@ArianaGrande,"@arisweetwaffle @bealrightdeluxe @joangrande it’s frankie !!!! goodnight n go, no tears left to cry, light is comin… https://t.co/z5UM5d0h85" +06/25/2018,Musicians,@ArianaGrande,@arisweetwaffle @bealrightdeluxe @joangrande ok lemme ask +06/25/2018,Musicians,@ArianaGrande,@bealrightdeluxe @joangrande https://t.co/qbQqTqoB16 +06/25/2018,Musicians,@ArianaGrande,"@bealrightdeluxe @joangrande 1. No Tears, 2. God is a Woman, 3. Breathing, 4. Light is Coming, 5. Raindrops - from Joan" +06/25/2018,Musicians,@ArianaGrande,@onelovesbutera @joangrande omg my 3rd bday was Jaws themed & everyone left but i was lit +06/25/2018,Musicians,@ArianaGrande,@bealrightdeluxe @joangrande lemme text her & ask +06/25/2018,Musicians,@ArianaGrande,@joangrande oh my GOD i fucking remember that balloon mom i mentioned it yesterday that shit was so cool omg thank u +06/25/2018,Musicians,@ArianaGrande,@aintnotearleft @fIatlineari omg maybe ! that’d be fun +06/25/2018,Musicians,@ArianaGrande,@leighsometimes @fIatlineari a n x i e t y 🌫 +06/25/2018,Musicians,@ArianaGrande,@sweetaner @fIatlineari oh wow +06/25/2018,Musicians,@ArianaGrande,@fIatlineari bc it’s about people & their loud ass opinions making them deaf to others & the light +06/25/2018,Musicians,@ArianaGrande,@sweeteneramb @knewitgrande @tbyarianagb @touchyit ty ! excited for u to see the rest +06/25/2018,Musicians,@ArianaGrande,@knewitgrande @tbyarianagb @touchyit love u more +06/25/2018,Musicians,@ArianaGrande,@tbyarianagb @touchyit yo same +06/25/2018,Musicians,@ArianaGrande,@touchyit L ! so snuggly n dope +06/25/2018,Musicians,@ArianaGrande,https://t.co/M7ZWJNgZDS +06/25/2018,Musicians,@ArianaGrande,luv u +06/25/2018,Musicians,@ArianaGrande,@nyczach omg +06/25/2018,Musicians,@ArianaGrande,@wegotnotears 🌫👶🏼🙈 +06/25/2018,Musicians,@ArianaGrande,@joangrande what was da surprise i forgot bc it was 22 years ago +06/25/2018,Musicians,@ArianaGrande,https://t.co/DZHoPEHiCA +06/24/2018,Musicians,@ArianaGrande,@beereilish same tbh +06/24/2018,Musicians,@ArianaGrande,yuh https://t.co/oDZbkuGSNU +06/24/2018,Musicians,@ArianaGrande,(indeed the beat did get sicker) +06/24/2018,Musicians,@ArianaGrande,jus sneezed on beat god bless me +06/24/2018,Musicians,@ArianaGrande,be happy 🌫 +06/24/2018,Musicians,@ArianaGrande,grateful n so excited. still listening to sweetener. i’ve...... never been this excited ab anything ever. love u th… https://t.co/U3GARGGioz +06/24/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 💭 preorder https://t.co/kgaHLWjUeK https://t.co/PhD87rBp3Y +06/24/2018,Musicians,@ArianaGrande,see u soon my sweet https://t.co/wKhBfnYGQi +06/24/2018,Musicians,@ArianaGrande,"RT @RepublicRecords: .@ArianaGrande ☾ 𝐒 𝐰 𝐞 𝐞 𝐭 𝐞 𝐧 𝐞 𝐫 ☾ Merch avail now ✨ + +Grab yours here: +https://t.co/LasjaSG58M https://t.co/zhoplLCB…" +06/24/2018,Musicians,@ArianaGrande,"universe must have my back, fell from the sky into my lap" +06/23/2018,Musicians,@ArianaGrande,ʞɹoʎ ʍǝu ǝʌol ᴉ +06/23/2018,Musicians,@ArianaGrande,☕️ ♡ +06/23/2018,Musicians,@ArianaGrande,yuh +06/23/2018,Musicians,@ArianaGrande,n girl you too you are so young n beautiful n so succcesssful +07/17/2017,Musicians,@edsheeran,"This year continues to be equally surreal and amazing. Watch out for this one, me and Lisa have… https://t.co/fNL3aOdkQ4" +07/17/2017,Musicians,@edsheeran,Just posted a photo https://t.co/2iJDDGH7bc +07/17/2017,Musicians,@edsheeran,"First time @itsbennyblanco has seen an episode, here's his review https://t.co/yKwpjetrL4" +07/17/2017,Musicians,@edsheeran,Throwback to the time I was a Lannister https://t.co/QEt6TiexbA +07/16/2017,Musicians,@edsheeran,"Sunday = cat picture. Also, watch Game of Thrones tonight x https://t.co/YG31hfqieH" +07/16/2017,Musicians,@edsheeran,Mohegan sun night #2 ! https://t.co/QC5xOkno1Z +07/15/2017,Musicians,@edsheeran,Filming something cool with @jamielawsonuk and jamesblunt today https://t.co/6W31sFaXRj +07/15/2017,Musicians,@edsheeran,Mohegan Sun ! https://t.co/vMpCqZucct +07/14/2017,Musicians,@edsheeran,Ur a long way from howum now seabiscuit buh https://t.co/CTZp9Mmo5T +07/13/2017,Musicians,@edsheeran,Philly night #2 ! https://t.co/pMqO9pBqYs +07/12/2017,Musicians,@edsheeran,Philly night #1 ! https://t.co/0lZxTEjOkb +07/10/2017,Musicians,@edsheeran,"More stadium dates going up tomorrow in Europe too, as pretty much all of that has gone too.… https://t.co/itFgkPXjrq" +07/10/2017,Musicians,@edsheeran,"More uk stadiums announced, this is bonkers x https://t.co/YzscG67TeJ" +07/10/2017,Musicians,@edsheeran,Buffalo ! https://t.co/S4OWtVsRDW +07/09/2017,Musicians,@edsheeran,Toronto night #2 ! https://t.co/eWbN8CyHUf +07/08/2017,Musicians,@edsheeran,"UK stadium tour sold out this morning so we are adding more dates due to overwhelming demand,… https://t.co/FIyjKl0XRv" +07/08/2017,Musicians,@edsheeran,Toronto night #1 ! https://t.co/LVNbmTdzjm +07/05/2017,Musicians,@edsheeran,"Q magazine is out now. Also loads of Hoo-har about me quitting stuff. I haven't quit anything,… https://t.co/pZqrifrFiW" +07/04/2017,Musicians,@edsheeran,Reppin' on July 4th https://t.co/MLLty4u2Xa +07/02/2017,Musicians,@edsheeran,Sunday Funday #giveitsomewelly https://t.co/TbboZhfAK2 +07/02/2017,Musicians,@edsheeran,St. Paul ! https://t.co/gz0Ifg2Eq7 +07/01/2017,Musicians,@edsheeran,Puerto Rico tour diary x https://t.co/sbXDUtLfVt +07/01/2017,Musicians,@edsheeran,Des Moines ! https://t.co/tUIYcebmIa +06/30/2017,Musicians,@edsheeran,"Check out @FuseODG's brand new banger #WindowSeat & campaign to build a school in Ghana https://t.co/4ryXJHU4GN +#NewAfricaNation" +06/30/2017,Musicians,@edsheeran,Kansas City ! https://t.co/cyClTGylLn +06/30/2017,Musicians,@edsheeran,"Got the fantastic jamesblunt opening up the whole USA tour, his set is brilliant, you're in for… https://t.co/UiRqBs34V9" +06/29/2017,Musicians,@edsheeran,"Starting the first leg of the North American tour today in Kansas, very excited. Also, check out… https://t.co/ScbOOJ7ycj" +06/28/2017,Musicians,@edsheeran,"That's not the end of the stadium tour, watch this space x" +06/28/2017,Musicians,@edsheeran,"Here are the dates for the European stadium tour, tickets on sale Saturday 8th of July -… https://t.co/CIxA7LKXCF" +06/28/2017,Musicians,@edsheeran,"Thank you to @tdtomdavies for making me loads of great specs, lad x https://t.co/JRwbR8bewU" +06/27/2017,Musicians,@edsheeran,🚀 https://t.co/6joHdTll4g +06/27/2017,Musicians,@edsheeran,Announcing UK and Europe stadium tour tomorrow. This was the only picture I could find at short… https://t.co/kBEqb141u6 +06/26/2017,Musicians,@edsheeran,"Anyway, great night, great atmosphere, family, friends, fun. Love you all x" +06/26/2017,Musicians,@edsheeran,"Never thought I'd have to explain it, but everything I do in my live show is live, it's a loop station, not a backing track. Please google x" +06/26/2017,Musicians,@edsheeran,Glastonbury ! https://t.co/iMf1Uo2pPS +06/25/2017,Musicians,@edsheeran,"Closing the Pyramid stage tonight at Glastonbury, tune in on BBC from 21:30pm x https://t.co/c0D7vI7mXJ" +06/24/2017,Musicians,@edsheeran,Bogota tour diary x https://t.co/O1OWsWHdAB +06/22/2017,Musicians,@edsheeran,Glasto warm up show at the O2 ! https://t.co/OHizXjK4RC +06/22/2017,Musicians,@edsheeran,"New merch on https://t.co/W2vnTwszLX, made by @hoax1994 - cruisin' https://t.co/p6GWKlgGS1" +06/21/2017,Musicians,@edsheeran,London Koko ! https://t.co/RI6YR3OgpI +06/17/2017,Musicians,@edsheeran,"Chuffed to be awarded an MBE for services to charity and music, thanks for all your lovely… https://t.co/XLVyGWRqtn" +06/15/2017,Musicians,@edsheeran,Rusty + Calippo https://t.co/UWmsILSQXx +06/15/2017,Musicians,@edsheeran,Monterrey ! https://t.co/iyEv0cqiC4 +06/15/2017,Musicians,@edsheeran,@FuseODG @killbeatz We dey vibe ! +06/15/2017,Musicians,@edsheeran,Sonny & ted https://t.co/ImOfqMVrwF +06/14/2017,Musicians,@edsheeran,Thanks to the lovely people at Jim Dunlop for sorting out my tour capo's and plectrums x https://t.co/Suy7yWNQSW +06/14/2017,Musicians,@edsheeran,Or any of these locations. Please give anything x https://t.co/p3miLUkZ5a +06/14/2017,Musicians,@edsheeran,"anyone with spare clothes/toys/supplies or anything they can part with, please donate to 210 Latimer Rd in West London as soon as you can x" +06/14/2017,Musicians,@edsheeran,Here's a picture of me with a taco and another margarita #mexico #believe #achieve #wot https://t.co/NGf6XSxECS +06/13/2017,Musicians,@edsheeran,Throwback to coconuts on the roadside in Ghana with @fuseodg and @killbeatz https://t.co/dAU65KlCvG +06/13/2017,Musicians,@edsheeran,Homeslice https://t.co/Kt1ZLSn4Pi +06/13/2017,Musicians,@edsheeran,Guadalajara ! https://t.co/szmLm5o0Yi +06/13/2017,Musicians,@edsheeran,Having a drink with this fine gent in Mexico https://t.co/N0yl217TQH +06/13/2017,Musicians,@edsheeran,"Ted, Tedd and Teddy https://t.co/3uDxNHwnFb" +06/11/2017,Musicians,@edsheeran,Mexico City ! https://t.co/g8xFiB0OW8 +06/07/2017,Musicians,@edsheeran,Carpool karaoke is finally here ! Check it out - https://t.co/yYNwLG5z6L +06/07/2017,Musicians,@edsheeran,San José ! https://t.co/6GVO7pgl26 +06/07/2017,Musicians,@edsheeran,Brazil diary x https://t.co/aYG4Lq9djo +06/05/2017,Musicians,@edsheeran,San Juan ! https://t.co/BoV9wTVT08 +06/04/2017,Musicians,@edsheeran,thinking of Manchester today x https://t.co/sobyTO5EH3 +06/03/2017,Musicians,@edsheeran,Bogota ! https://t.co/KNDyRlUw0K +06/02/2017,Musicians,@edsheeran,Argentina tour diary x https://t.co/5LAee1hCRs +06/01/2017,Musicians,@edsheeran,@JKCorden Woof +05/31/2017,Musicians,@edsheeran,@AnneMarieIAm Deep +05/31/2017,Musicians,@edsheeran,Belo Horizonte ! https://t.co/PMfKU7LyOm +05/29/2017,Musicians,@edsheeran,Sao Paolo ! https://t.co/DAC8r1eBLx +05/28/2017,Musicians,@edsheeran,"mini bar raid, pringles and m&m's for dinner don't stop me" +05/26/2017,Musicians,@edsheeran,Santiago diary x https://t.co/6O2Am0W4JQ +05/26/2017,Musicians,@edsheeran,No. No no no no no. https://t.co/fUguQ19cQE +05/26/2017,Musicians,@edsheeran,"New single by @ritaora, me and Steve Mac on writing duties, I love it, check it out people x https://t.co/0IJO3rgVWw" +05/26/2017,Musicians,@edsheeran,Rio ! https://t.co/20pkn8T7HH +05/24/2017,Musicians,@edsheeran,Curitiba ! https://t.co/XnQUiXG5yq +05/23/2017,Musicians,@edsheeran,So heartbreaking. Love and prayers for Manchester. https://t.co/hxTQQAnMfS +05/21/2017,Musicians,@edsheeran,Buenos Aires ! https://t.co/71Sajvi8Ij +05/20/2017,Musicians,@edsheeran,Lima tour diary x https://t.co/vb0r5WTh03 +05/19/2017,Musicians,@edsheeran,"For anyone that missed it, you can get my desert island discs on their podcast now for free x https://t.co/h0lfWyDEj9" +05/19/2017,Musicians,@edsheeran,Woof https://t.co/ToGAlma93A +05/19/2017,Musicians,@edsheeran,"This song came out today that I helped write, check it out x https://t.co/029eTuuOk3" +05/18/2017,Musicians,@edsheeran,Today is a sad day. Rest in peace. +05/18/2017,Musicians,@edsheeran,RT @sortrehearsals: We’ve scrapped our marketing budget to support unsigned bands instead. Here’s why: https://t.co/h7VqHlAZ5J Please RT!… +05/17/2017,Musicians,@edsheeran,Santiago night #2 ! https://t.co/O67w8Lai8j +05/16/2017,Musicians,@edsheeran,Santiago night #1 ! https://t.co/yMBvEZjhmK +05/15/2017,Musicians,@edsheeran,Kev doing a good deed for @greatormondst https://t.co/2vtoAgTBui +05/15/2017,Musicians,@edsheeran,"Pre-sale for my Australian & New Zealand tour starts Tuesday, all the details here x https://t.co/PXZJE1Lvm2 https://t.co/GXzrPuPk1b" +05/14/2017,Musicians,@edsheeran,"RT @JmeBBK: Remember, don't just vote for someone on recommendation. Do your own research. +BUT MAKE SURE YOU REGISTER: +https://t.co/OOXc9Ui…" +05/14/2017,Musicians,@edsheeran,"RT @JmeBBK: RT: Listed by process +Numbered by importance. + +2. Register to vote + +4. Know who you are voting for + +1. Know why you are voting…" +05/14/2017,Musicians,@edsheeran,Lima ! https://t.co/toOOeNllcw +05/13/2017,Musicians,@edsheeran,Machu Picchu https://t.co/scP52ZHWvk +05/13/2017,Musicians,@edsheeran,"'I wasn't made for rain, where's the sun!?' https://t.co/22sDqdnv7f" +05/05/2017,Musicians,@edsheeran,"off into the wilderness for a week, in a bit x" +05/04/2017,Musicians,@edsheeran,"Here's the Galway Girl video, shot by me, thanks to everyone who featured in it! x https://t.co/Z2xjzTSWvU" +05/03/2017,Musicians,@edsheeran,London night #3 ! https://t.co/BNgEpBHTzQ +05/03/2017,Musicians,@edsheeran,"Video for Galway Girl dropping tomorrow, look out for it x https://t.co/ui6q6HwhLL" +05/02/2017,Musicians,@edsheeran,Double pudding +05/02/2017,Musicians,@edsheeran,London night # 2 ! https://t.co/nCO8f5hMUm +05/02/2017,Musicians,@edsheeran,London night #1 ! https://t.co/Xu1h0nKIE3 +05/02/2017,Musicians,@edsheeran,Portrait of me by the wonderful Colin Davidson is on exhibition from tomorrow onwards at the… https://t.co/lxpTMqYHCm +05/01/2017,Musicians,@edsheeran,pudding +05/01/2017,Musicians,@edsheeran,@RyanTedder grabbin' yo nutz +04/29/2017,Musicians,@edsheeran,"@ashtonmiranda @Pret And I just had a dirty burger, the shame of it" +04/29/2017,Musicians,@edsheeran,Birmingham night #2 ! https://t.co/QHzYNOT13A +04/28/2017,Musicians,@edsheeran,@SianAnderson i got some competition it seems ! +04/28/2017,Musicians,@edsheeran,Birmingham night #1 ! https://t.co/KFNZ9659Jh +04/27/2017,Musicians,@edsheeran,@robdelaney watching catastrophe for the first time. ur funny +04/26/2017,Musicians,@edsheeran,Travelling to stage in style on @StuartCamp https://t.co/NHkWxDTFHX +04/26/2017,Musicians,@edsheeran,Nottingham night #2 ! https://t.co/nLC3QV1VBT +04/26/2017,Musicians,@edsheeran,Nottingham night #1 ! https://t.co/XWRJj0jPbs +04/26/2017,Musicians,@edsheeran,Manchester night #2 ! https://t.co/1WXsputL5K +04/24/2017,Musicians,@edsheeran,pre order yo x https://t.co/sh6xZHmdeQ +04/24/2017,Musicians,@edsheeran,Das Bollocks https://t.co/psh7jEeS90 +04/22/2017,Musicians,@edsheeran,Manchester night #1 ! https://t.co/BsQ9K5v4Cz +04/20/2017,Musicians,@edsheeran,Newcastle night #2 ! https://t.co/7UVEqUSNlG +04/20/2017,Musicians,@edsheeran,"Support act for my Central & South American dates will be @antoniolulic, get down early to check him out. Dates at https://t.co/Shphh4csSf" +04/20/2017,Musicians,@edsheeran,"@GreggsOfficial thanks for your gift. I ate 7 sausages rolls in a row and had to go to bed, I love you" +04/19/2017,Musicians,@edsheeran,Calippo is my mood https://t.co/bJyVvTaflK +04/19/2017,Musicians,@edsheeran,Newcastle night #1 ! https://t.co/1RdtkaKuuz +04/19/2017,Musicians,@edsheeran,Random clips from the first month of tour in Europe x https://t.co/NOyIly6mJ5 +04/19/2017,Musicians,@edsheeran,Playing Galway Girl with Beoga on Jools Holland - https://t.co/ZsWsvAW3Se +04/18/2017,Musicians,@edsheeran,big love to @beogamusic for always being amazing x +04/18/2017,Musicians,@edsheeran,"this was one of my favourite things i've done. May 7th, tune in x https://t.co/6ueYlvgmp1" +04/18/2017,Musicians,@edsheeran,"playing on Later... with Jools Holland tonight, 3 songs, BBC2 10PM live, tune in !x" +04/17/2017,Musicians,@edsheeran,"@zaralarsson fries on a pizza too, lets not forget that" +04/16/2017,Musicians,@edsheeran,Glasgow night #1 ! https://t.co/DBLYifpBKJ +04/14/2017,Musicians,@edsheeran,@BBCR1 genuinely am +04/14/2017,Musicians,@edsheeran,@AnneMarieIAm pure bantz +04/14/2017,Musicians,@edsheeran,whoop ! https://t.co/fbhtCa7q7X +04/13/2017,Musicians,@edsheeran,getting to play Nancy Mulligan and Galway Girl today and yesterday with @beogamusic in Dublin was something else +04/13/2017,Musicians,@edsheeran,Dublin night #2 ! https://t.co/asfJkVTlIR +04/12/2017,Musicians,@edsheeran,Dublin night #1 ! https://t.co/tbvbUUvbc8 +04/12/2017,Musicians,@edsheeran,Thank you to Galway and all the wonderful people in it for helping us shoot a music video… https://t.co/OfJUeQLohX +04/09/2017,Musicians,@edsheeran,playing Barcelona tonight in Barcelona was a moment. love you guys x +04/09/2017,Musicians,@edsheeran,@JazminSawyers this is awesome +04/09/2017,Musicians,@edsheeran,Barcelona ! https://t.co/cmlAET1SUb +04/09/2017,Musicians,@edsheeran,Madrid ! https://t.co/SKkGffXWHf +04/09/2017,Musicians,@edsheeran,@WimbledonHC congrats !x +04/09/2017,Musicians,@edsheeran,@WimbledonHC @cristacullen5 @stxhockey whoop !! +04/06/2017,Musicians,@edsheeran,Paris ! https://t.co/dkVdk3t4TR +04/05/2017,Musicians,@edsheeran,Loving discovering this tv show. Worth a watch X https://t.co/bgn5cJf1d4 +04/05/2017,Musicians,@edsheeran,Antwerp ! https://t.co/UAdUysSYZS +04/04/2017,Musicians,@edsheeran,This guy @ryanmcmusic is opening up my Europe tour alongside Anne Marie. Caught him practicing… https://t.co/OaQBGg8m8C +04/04/2017,Musicians,@edsheeran,Amsterdam night #2 ! https://t.co/GlFI7JvZ6h +04/03/2017,Musicians,@edsheeran,Amsterdam night #1 ! https://t.co/FVcxEhNd9p +04/01/2017,Musicians,@edsheeran,Herning ! https://t.co/DiQzQUXoSH +03/31/2017,Musicians,@edsheeran,thank you ! amazing x https://t.co/OfCKIvDPHE +03/30/2017,Musicians,@edsheeran,Stockholm ! https://t.co/0Nc9KkrlFR +03/30/2017,Musicians,@edsheeran,Just posted a photo https://t.co/yFmyHhvnhe +03/29/2017,Musicians,@edsheeran,Teenage cancer trust ! https://t.co/rv6PYgtSZS +03/27/2017,Musicians,@edsheeran,Berlin ! https://t.co/TJyNrfdocW +03/26/2017,Musicians,@edsheeran,Hamburg ! https://t.co/16pEGtOhJY +03/25/2017,Musicians,@edsheeran,@KuruptFM pleasure working with you boiz +03/24/2017,Musicians,@edsheeran,"Pussles reppin Red Nose Day, thanks for all who donated to such a great cause x https://t.co/aw3wgMOOtR" +03/24/2017,Musicians,@edsheeran,"Comic relief Red Nose Day today. Tune in tonight, il be on a fair bit, and so will lots of awesome people. BBC One, 7pm x" +03/24/2017,Musicians,@edsheeran,"Happy friday everyone. James Blunts new album is out today, I co wrote this one with him and… https://t.co/Gsz0a9dqXM" +03/23/2017,Musicians,@edsheeran,Cologne ! https://t.co/arA68apGXX +03/23/2017,Musicians,@edsheeran,CLASH magazine https://t.co/46feWE5tum +03/22/2017,Musicians,@edsheeran,Mannheim ! https://t.co/nJ3kVA0C5x +03/22/2017,Musicians,@edsheeran,Rupert you lad x - https://t.co/nNJdJYI84O +03/22/2017,Musicians,@edsheeran,#WorldWaterDay is TODAY - so lets help kids get #CleanWaterHere by lending your social voice here: https://t.co/i7klqoXkhF +03/20/2017,Musicians,@edsheeran,Munich ! https://t.co/lVHFUKaBPC +03/20/2017,Musicians,@edsheeran,Happy to announce my opening act on my North American tour is @jamesblunt x +03/19/2017,Musicians,@edsheeran,Zurich ! https://t.co/QOdI3Lfj3R +03/17/2017,Musicians,@edsheeran,Turin night #2 (sorry I missed night one !) https://t.co/aGJIrlqvtc +03/17/2017,Musicians,@edsheeran,"For anyone interested, here is the band that play on Galway Girl @beogamusic, and this is the song we sampled x - https://t.co/o5AJNb3X4K" +03/17/2017,Musicians,@edsheeran,"Got a lyric video for my next single Galway Girl, check it out x https://t.co/E8rrgOFeUB" +03/17/2017,Musicians,@edsheeran,Blimey https://t.co/98Hq4WuUGR +03/17/2017,Musicians,@edsheeran,Zara Larsson album out today. We wrote this song together and I love it. Check it out X https://t.co/R9fWKs04vc +03/16/2017,Musicians,@edsheeran,"Great way to start a tour, thank you Turin. Forgot to take a photo of the crowd though, sorry, tomorrow I shall remember. Love y'all x" +03/16/2017,Musicians,@edsheeran,Can't wait @glastofest x https://t.co/BGoKXVqUZp +03/16/2017,Musicians,@edsheeran,Tickets for my US tour on sale Friday at 10am local time. Links & details at https://t.co/DsQUFNY5Lt x https://t.co/ctOLhau3fM +03/15/2017,Musicians,@edsheeran,"@gregjames no worries, i tried to trend it with @JamesBlunt a week ago to no avail, you are my hero" +03/13/2017,Musicians,@edsheeran,This is insane. Thanks to everyone who has a copy xx https://t.co/emXSfqRKtA +03/13/2017,Musicians,@edsheeran,"RT @CHABUDDYGEEZY: ""I'm in love with Chabuddy"" - @edsheeran https://t.co/3IeYoPD7zx" +03/13/2017,Musicians,@edsheeran,Playing an extra show at @theO2 on 22nd June for their 10th Birthday shows. Tickets on sale at 5pm x https://t.co/bKrfdPyNPy +03/12/2017,Musicians,@edsheeran,guess the cats out the bag... https://t.co/9GCDUp9HPN +03/12/2017,Musicians,@edsheeran,"Blimey Milan, thanks for the warm welcome ! https://t.co/dW9cKdiXaA" +03/12/2017,Musicians,@edsheeran,"been working with @KuruptFM for @comicrelief, check it out - https://t.co/U0syjMyCwo" +03/11/2017,Musicians,@edsheeran,Munich to Milan +03/11/2017,Musicians,@edsheeran,Kev took a picture of me sleeping and I sleep with one eye open https://t.co/DN9WGNtsEP +03/11/2017,Musicians,@edsheeran,One more week of promo then tour starts and I can't wait +03/11/2017,Musicians,@edsheeran,@CalvinHarris ❤️ +03/10/2017,Musicians,@edsheeran,@gregjames absolutely bonks +03/10/2017,Musicians,@edsheeran,Did a secret show in NYC for @SIRIUSXM . Hear it on @SiriusXMHits1 and @SiriusXMPulse all weekend: https://t.co/tNQ8TUxSC7 +03/08/2017,Musicians,@edsheeran,"Coming to North American this summer, go here https://t.co/Hjpv5qcz1K for details on the fan pre-sale that starts t… https://t.co/DEtdGAdbv0" +03/07/2017,Musicians,@edsheeran,RT @StuartCamp: Come on down!!! https://t.co/YLgByPloSQ +03/07/2017,Musicians,@edsheeran,"Spent 2 weeks with @PatrickDoyleRS, we had ourselves a good time. Read all about it here x https://t.co/4NBMfaVNqN" +03/07/2017,Musicians,@edsheeran,"Going on Howard Stern today, tune in yo" +03/07/2017,Musicians,@edsheeran,"My first Rolling Stone cover, everywhere friday x https://t.co/H30VzjsiDN" +03/07/2017,Musicians,@edsheeran,Everything's coming up Milhouse +03/06/2017,Musicians,@edsheeran,"Happy Independence Day to Ghana! I had a wonderful time there with @FuseODG last year, such a wonderful, beautiful, vibrant place x 🇬🇭" +03/06/2017,Musicians,@edsheeran,"Thank you iheart, New York bound now X" +03/06/2017,Musicians,@edsheeran,Thank you ! https://t.co/ZNY77euZXW +03/05/2017,Musicians,@edsheeran,chicken for breakfast. wingz an dat +03/05/2017,Musicians,@edsheeran,"Just got to LA, iheart radio awards tomorrow, tune in !" +03/04/2017,Musicians,@edsheeran,Thank you to Blunty for presenting my Goldene Kamera award to me tonight in Hamburg https://t.co/dwWnQNqGxr +03/03/2017,Musicians,@edsheeran,@valstones this is beautiful and exactly the reason why I make music. Thank you x +03/03/2017,Musicians,@edsheeran,"RT @AtlanticRcrdsUK: Happy album release day to @edsheeran! It's been a long wait but '÷' is so worth it, have you listened yet? https://t.…" +03/03/2017,Musicians,@edsheeran,"Quitting music, found a new job. New album out now - https://t.co/zcIzlFOm8C https://t.co/mr0nJPb7gk" +03/03/2017,Musicians,@edsheeran,Lovely seeing all the reactions to the record. Keep sharing x +03/03/2017,Musicians,@edsheeran,@JamesBlunt lets celebrate our albums coming out this month with an album party ! #analbumparty +03/03/2017,Musicians,@edsheeran,RT @JamesBlunt: Fed up of @edsheeran in your feed? Here's a new song of mine to listen to instead. Oh... I wrote it with Ed. https://t.co/X… +07/02/2018,Musicians,@BrunoMars,Your mother must be an incredibly handsome woman 😜 https://t.co/K49haxUiGJ +07/02/2018,Musicians,@BrunoMars,Here’s me being thirsty trying to take a selfie in the club. Thank you Paris for giving us our biggest show yet!… https://t.co/TZoTV5h7rd +06/30/2018,Musicians,@BrunoMars,Paris with the game changer @virgilabloh Before we rock Stade De France 🇫🇷 #24kmagicworldtour https://t.co/CmqeKgkjyP +06/29/2018,Musicians,@BrunoMars,I don’t know what this tweet says but this video makes me happy. I love you all!! https://t.co/dMKg4u2zQQ +06/27/2018,Musicians,@BrunoMars,Found this video in my phone. This is @BRODYTHEGR8 and I trying to figure out the groove for 24k Magic in 2015. W… https://t.co/ZTFkGONhGe +06/27/2018,Musicians,@BrunoMars,RT @Listenary: Bruno Mars. https://t.co/YDb00NIx43 +06/25/2018,Musicians,@BrunoMars,😂 https://t.co/68giC02s0j +06/25/2018,Musicians,@BrunoMars,Steady callin me out!! They act like they luuhhhh me but tweet otherwise. 😏Mmm mmm mmm #CruelWorld https://t.co/xEySzTdWbo +06/25/2018,Musicians,@BrunoMars,🎼 I don’t ever make a promise that I can’t keep 🎶 ~ Bruno Mars 😎 https://t.co/X183syoupW +06/25/2018,Musicians,@BrunoMars,@BET THANK YOU! THANK YOU! THANK YOU! I know I missed the party but I know I’ll see y’all real soon. 🥂 +06/25/2018,Musicians,@BrunoMars,Last night in Lisbon I got to sing for like 2 miliion people. Nah it was more like 1 million. I ain’t going less th… https://t.co/fLfncdvZoc +06/23/2018,Musicians,@BrunoMars,Don’t back pedal now baby we here! 😂 https://t.co/UkswejRij7 +06/23/2018,Musicians,@BrunoMars,Oh the ole what words should I say to get a reply trick huh 😒 https://t.co/UQ54aFWlcs +06/23/2018,Musicians,@BrunoMars,You always gonna twist my tweets and use it against me huh? 😒 https://t.co/DBBlzOYgso +06/23/2018,Musicians,@BrunoMars,You always got somethin to say 😏 https://t.co/f9pKLWho35 +06/23/2018,Musicians,@BrunoMars,"Yo I’m poppin in Madrid!! 😎 Thank you all for always bringin it at the concerts. Can’t wait to come back! Love, E… https://t.co/K96z9zmBI3" +06/22/2018,Musicians,@BrunoMars,😂 THE BEST! Drink lots of agua and say a prayer tonight Chicas. For El Capitan and his hermanos are showing up with… https://t.co/RzgLYiC321 +06/22/2018,Musicians,@BrunoMars,Madrid it is I. El Capitan 🔥. Feels good to be back. Tonight we dance! 🥂 #24KMagicWorldTour +06/21/2018,Musicians,@BrunoMars,Thank you Lucy. It was an honor to sing for y’all last night. ♥️ https://t.co/H787ncgl74 +06/17/2018,Musicians,@BrunoMars,The man that taught me everything I know. From… https://t.co/eeVcl12is6 +06/15/2018,Musicians,@BrunoMars,🎼 Daylight 🎵 https://t.co/wHl1OG7atJ +06/14/2018,Musicians,@BrunoMars,I love you Hawaii! ♥️ Thank You so much. The band and I are gonna have that stadium Shakin!!! https://t.co/PdvTv94sdB +06/11/2018,Musicians,@BrunoMars,One day imma figure out what to do with this… https://t.co/h5hadudLZJ +06/10/2018,Musicians,@BrunoMars,Shut up Dwayne! I shred that shit! https://t.co/NuDjmuYHhq +06/10/2018,Musicians,@BrunoMars,NAH! https://t.co/wIfIJ5ILnw +06/10/2018,Musicians,@BrunoMars,You right. https://t.co/1pT9eMyMOa +06/10/2018,Musicians,@BrunoMars,Nah! https://t.co/G2iS9MO3tS +06/10/2018,Musicians,@BrunoMars,😂😂😂😂😂 How Could I forget? https://t.co/uCKoJhVcnE +06/10/2018,Musicians,@BrunoMars,A song by Santana called Europa. The band will tell you. I play it every soundcheck. @jamareoartis always asks me… https://t.co/nZHAuR1Dbp +06/10/2018,Musicians,@BrunoMars,🙌♥️ https://t.co/Smur0SDV08 +06/10/2018,Musicians,@BrunoMars,Thank You Thank You Thank You! https://t.co/8iPr8XOTBd +06/10/2018,Musicians,@BrunoMars,Thank you 😊 see you soon. https://t.co/ck6kPCUyBd +06/09/2018,Musicians,@BrunoMars,Nah! https://t.co/7zbswauW10 +06/09/2018,Musicians,@BrunoMars,ITS COMING. I GOT YOU https://t.co/bPnE94U7db +06/09/2018,Musicians,@BrunoMars,Have no fear kissy face! Braddah gotta plan 😎 https://t.co/pBvSuKXTZv +06/09/2018,Musicians,@BrunoMars,HAWAII I HEAR YOU!! WERE DOING IT!!! TWO SHOWS AT ALOHA STADIUM!!! #CHEEEHOOOO 🤙 +06/09/2018,Musicians,@BrunoMars,🤔 https://t.co/uWLtMUfzmT +06/09/2018,Musicians,@BrunoMars,"RT @_palolooo: Yoooo @BrunoMars, you gotta add a second show in Hawaii for the homies my dude 🙏🙏🙏" +06/09/2018,Musicians,@BrunoMars,RT @CamMtess: @BrunoMars 2nd show please! Tickets sold out in 20 min. #showyourAloha 🤙🏼 +06/06/2018,Musicians,@BrunoMars,🙌 ♥️ https://t.co/WEUQqQrmOB +06/04/2018,Musicians,@BrunoMars,@DwayneDuggerII 😒 +06/04/2018,Musicians,@BrunoMars,@JoHnJohnThE1 😒 +06/02/2018,Musicians,@BrunoMars,Ok ok ok that’s enough. https://t.co/BpQwK1zUEF +06/02/2018,Musicians,@BrunoMars,Alright calm down 😂 https://t.co/h1vfBxV0Mu +06/02/2018,Musicians,@BrunoMars,👇It’s pretty close actually 😢 #Fuck +06/02/2018,Musicians,@BrunoMars,😒 https://t.co/bqDoQB0bGM +06/02/2018,Musicians,@BrunoMars,😒 https://t.co/D0xKVInZlg +05/31/2018,Musicians,@BrunoMars,TBT https://t.co/aC2wGFqkqs +05/30/2018,Musicians,@BrunoMars,😂 https://t.co/Hi8GlS3vDY +05/30/2018,Musicians,@BrunoMars,No scraps! All love! We’ll figure it out! Brada love da Aina and Aina love da brada! 🤙😜 https://t.co/hA0paMsffG +05/30/2018,Musicians,@BrunoMars,Live In Hawaii #24KMagicWorldTour https://t.co/TNXz9c4WVV +05/30/2018,Musicians,@BrunoMars,Super fail! I tried 😜 https://t.co/zjruCQxvWs +05/30/2018,Musicians,@BrunoMars,I’m https://t.co/MweCfxj6T4 +05/30/2018,Musicians,@BrunoMars,Home https://t.co/Yza3svl2dM +05/27/2018,Musicians,@BrunoMars,@JoHnJohnThE1 I can talk as loud as I want!! And if I choose to summer in Bruges best believe you gon hear about it! Thanks 💅 +05/26/2018,Musicians,@BrunoMars,NAH! https://t.co/EnbNTZeLz0 +05/21/2018,Musicians,@BrunoMars,Just posted a photo https://t.co/cpsd2scPhv +05/21/2018,Musicians,@BrunoMars,👑 https://t.co/aq0kKpfUkt +05/21/2018,Musicians,@BrunoMars,Ms. Jackson ❤️ https://t.co/4b5WbCFcew +05/19/2018,Musicians,@BrunoMars,But nah! https://t.co/n603cf39i5 +05/19/2018,Musicians,@BrunoMars,That was beautiful 😢 https://t.co/n603cf39i5 +05/19/2018,Musicians,@BrunoMars,han backwards is guess what? Nah! https://t.co/XN9frsqrUp +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/d0fT7TO20i +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/T5mtjr2soC +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/x45nPAYjAr +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/fURfenCcqU +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/3hyiMCyvLA +05/19/2018,Musicians,@BrunoMars,I’m in the shadows babbbbyyyy https://t.co/BtSFLWJyQ6 +05/19/2018,Musicians,@BrunoMars,"RT @E40: E-40 New album +“ THE GIFT OF GAB “ +June 29th 2018 🚀🚀🚀🚀🚀 https://t.co/gXdZA84Upg" +05/14/2018,Musicians,@BrunoMars,"*me: tells camera man to stop + +*also me: immediately posts on… https://t.co/0VhPFtSUYX" +05/14/2018,Musicians,@BrunoMars,*Serenaded 🤪 +05/14/2018,Musicians,@BrunoMars,You got it!!! If you ain’t here to party take yo ass back home!! And if you ain’t got yo phone out come get serinat… https://t.co/s6gcXXcLPF +05/13/2018,Musicians,@BrunoMars,Last show tonight in Hong Kong 🇭🇰 #24kmagicworldtour LETS GOOOOOO! https://t.co/rtdZCYsOXg +05/12/2018,Musicians,@BrunoMars,https://t.co/EtQave5NWl Morning inspiration. Tomorrow is not promised. Let’s Rebuild! I wanna see a glimpse before I exit. Don’t you? +05/07/2018,Musicians,@BrunoMars,Thank you all for another session of #AskTheDragon. Gotta get ready for tonight’s show in Singapore. Love on Love o… https://t.co/ugpEGmPdKc +05/07/2018,Musicians,@BrunoMars,Baby steps https://t.co/zXYkke1fK0 +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/oCS8HJMvge +05/07/2018,Musicians,@BrunoMars,Uuuuuhhhhh. https://t.co/Hbv6qJFWhD +05/07/2018,Musicians,@BrunoMars,Molly’s Game https://t.co/1GocAyL0bJ +05/07/2018,Musicians,@BrunoMars,He don’t return my calls no more 😒 after that basketball game shit ain’t never been the same. #RIP https://t.co/JA9NjGRP3Y +05/07/2018,Musicians,@BrunoMars,"The Beach Boys, Gucci Mane and last night the band and I were listening to nine inch nails, System of a Down and in… https://t.co/gpSl9IpUTj" +05/07/2018,Musicians,@BrunoMars,😂 https://t.co/yAob6u3oEm +05/07/2018,Musicians,@BrunoMars,Both of those are fire! Thank you https://t.co/lzIhUHAQC2 +05/07/2018,Musicians,@BrunoMars,E-panda https://t.co/sVBgQMpukf +05/07/2018,Musicians,@BrunoMars,Always! https://t.co/6JpVYqK9PJ +05/07/2018,Musicians,@BrunoMars,I haven’t written my best album yet https://t.co/duWjodkimr +05/07/2018,Musicians,@BrunoMars,Always! https://t.co/D8qfr9aNfH +05/07/2018,Musicians,@BrunoMars,What you mean?? It’s one of my favorites https://t.co/HV9rc36XHT +05/07/2018,Musicians,@BrunoMars,Two diffrent shows starring one magnificent unicorn. https://t.co/IZYGQ7Mn10 +05/07/2018,Musicians,@BrunoMars,Again It’s not true at all. I love Michael too much. If there was a song he wanted to release I’m sure it would’v… https://t.co/NFBzccWskY +05/07/2018,Musicians,@BrunoMars,Childish Gambino. From his show Atlanta to his music and new video. All around incredible. https://t.co/yooD3AHxir +05/07/2018,Musicians,@BrunoMars,No that is not true https://t.co/luCOpHqOS8 +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/L6hjWrzato +05/07/2018,Musicians,@BrunoMars,Everyone!! I wanna go on a collaboration spree. Jump from studio to studio and start writing again. https://t.co/s8ajCiw0X7 +05/07/2018,Musicians,@BrunoMars,I don’t know bout all that. but I will do my best to leave y’all wit something to rock to https://t.co/QgwYeXOjT6 +05/07/2018,Musicians,@BrunoMars,It’s been a while let’s do it!!! #AskTheDragon 🔥 🔥 +05/07/2018,Musicians,@BrunoMars,Shit https://t.co/bs5jqnOz0f +05/07/2018,Musicians,@BrunoMars,Yo Dwayne when I’m tweeting Back Back. https://t.co/wXKCoxmGod +05/07/2018,Musicians,@BrunoMars,BET! https://t.co/SE19gOUcwh +05/07/2018,Musicians,@BrunoMars,You really are. ✨ https://t.co/BGBatruVSK +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/10oWsmnI3i +05/07/2018,Musicians,@BrunoMars,Nah it’s not that serious. But the truth is why would I want to sing to a bunch of screens when I much rather be s… https://t.co/j02958iXYP +05/07/2018,Musicians,@BrunoMars,@kameronwhalum with the phone choreography! 😂 #PutYourPhoneDown!#FeelSomething! https://t.co/xHLwJKrbMf +05/06/2018,Musicians,@BrunoMars,Brace yourself Singapore. For I have returned. 😎 #24kmagicworldtour Tonight!! https://t.co/6595pYKVXI +05/06/2018,Musicians,@BrunoMars,Incredible 😂👏👏👏 https://t.co/hVMb1EoziE +05/06/2018,Musicians,@BrunoMars,Feelin myself in Manila 🇵🇭 #24kmagicworldtour https://t.co/xyIk2je0cF +05/01/2018,Musicians,@BrunoMars,Thank you Bangkok!!! #24kmagicworldtour https://t.co/h6UshK85Zw +04/30/2018,Musicians,@BrunoMars,https://t.co/pkIIb6e3Dl +04/23/2018,Musicians,@BrunoMars,I use to dream about this shit!! 😜🙌 #StillDreamin https://t.co/mYlaB0BU2z +04/21/2018,Musicians,@BrunoMars,Mood https://t.co/pvlRlJsyJM +04/19/2018,Musicians,@BrunoMars,Sending love and prayers to Bruno Sammartino’s family. He was such a gentleman when I met him & really meant a lot to my father & I. RIP👑 +04/17/2018,Musicians,@BrunoMars,💥💥💥💥💥💥music💥💥💥💥💥 +04/17/2018,Musicians,@BrunoMars,Congrats 2 @iamcardib on her #1 album 💥 Congrats 2 @kendricklamar for winning The Pulitzer💥 Congrats to @Beyonce for killin it @ Coachella 💥 +04/16/2018,Musicians,@BrunoMars,Cuz I can’t get a hold of Yoooooouuuuuu🎶 https://t.co/wI0jiLcUWq +04/13/2018,Musicians,@BrunoMars,You can’t stop what was meant to be +04/12/2018,Musicians,@BrunoMars,Thank You Tokyo!!! 🇯🇵 🎶 🍣 😴 https://t.co/BrO9sJ2AKm +04/10/2018,Musicians,@BrunoMars,日本の皆さん。 あなたがコンサートに参加しているのなら、明日は叫び、歌って、汗を流して一晩中踊ってください! パーティーしよう🇯🇵 #24KMagicWorldTour +03/29/2018,Musicians,@BrunoMars,When it comes to spittin that hot fire 🔥 I’m over koalafied! Thank you Australia for… https://t.co/rkynsNZcbR +03/26/2018,Musicians,@BrunoMars,It’s been great Sydney 🇦🇺! Thank you for 5 awesome shows #Hooligans #24kmagicworldtour https://t.co/3cshxYryns +03/25/2018,Musicians,@BrunoMars,Front row last night in Sydney. Her sign said “Brno Mars I think I want to marry you will you… https://t.co/9mDCVTDE1m +03/24/2018,Musicians,@BrunoMars,Everyone head over to snap and get your finesse on!! @iamcardib 🔥 https://t.co/BOZJIyshaV +03/24/2018,Musicians,@BrunoMars,tonight’s our last show in Sydney🇦🇺 Let’s go out in style! Thank you to everyone who showed up… https://t.co/SaSDb6RcpW +03/24/2018,Musicians,@BrunoMars,RT @AtlanticRecords: Limited Edition @BrunoMars & @iamcardib ‘Finesse’ Vinyl & $10.00 T-Shirt! Only Available until March 29th! https://t.c… +03/23/2018,Musicians,@BrunoMars,Who remembers this? https://t.co/sz0L2YcITV +03/23/2018,Musicians,@BrunoMars,I’m bumpin her song right now! That’s Just the way you make me feel 🎶 🎶 https://t.co/AHF6rRqx37 +03/22/2018,Musicians,@BrunoMars,Love this!!! Thank you ladies ❤️ https://t.co/Guf8WRTfkO +03/22/2018,Musicians,@BrunoMars,RT @BET: Look out! '@BrunoMars Presents: 24K Magic Live at the Apollo' hits BET this Saturday night at 8/7c! 🕺🏾💃🏽 https://t.co/c0H4yvq7kZ +03/22/2018,Musicians,@BrunoMars,"RT @lollapalooza: We’re bringing The Weeknd, Bruno Mars, Jack White, Arctic Monkeys + more to Grant Park for #Lolla 2018! Grab your 4-Day T…" +03/19/2018,Musicians,@BrunoMars,You know why I Love Australia? Everywhere I go they serve guava juice. What 👆this picture has to… https://t.co/oTAr9GFZWd +03/15/2018,Musicians,@BrunoMars,Thank you Brisbane 🇦🇺 #Hooligans #24kmagicworldtour https://t.co/JHELoquVu7 +03/13/2018,Musicians,@BrunoMars,Thanks for the love Melbourne 🇦🇺 #24kmagicworldtour 🥂 https://t.co/BD6WucXB7r +03/08/2018,Musicians,@BrunoMars,Melbourne 🇦🇺 #24kmagicworldtour https://t.co/jczXLZJ7ae +03/07/2018,Musicians,@BrunoMars,#24kMagicWorldTour makes its first appearance in Australia tonight 🇦🇺 ✨✨✨#Melbourne #NightOne. Its on!!! +03/05/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/htZmse9elH +03/03/2018,Musicians,@BrunoMars,RT @MissyElliott: I BELIEVE in the Power of Prayer Sending Prayers up for Rick Ross🙏🏾 +03/02/2018,Musicians,@BrunoMars,We must preserve the body roll at all cost. +02/28/2018,Musicians,@BrunoMars,RESPECT! https://t.co/NEznEVNR7V +02/27/2018,Musicians,@BrunoMars,And just like that... WE BACK! Thank you Auckland NZ 🇳🇿 Night 1✨✨ #24kmagicworldtour https://t.co/hnIvur7wiS +02/26/2018,Musicians,@BrunoMars,What an angel . Who knew this little boy would grow up and turn down an NBA contract just so he could pursue his mu… https://t.co/Owm9HigayY +02/26/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/WbBkxEgfjf +02/26/2018,Musicians,@BrunoMars,Hangin With Mr Cooper 🔥 https://t.co/DZ4SGIY5VI +02/26/2018,Musicians,@BrunoMars,This is my favorite gif 👇 https://t.co/h6ivYo6QZr +02/20/2018,Musicians,@BrunoMars,LIKED! https://t.co/JMBIZjMSib +02/20/2018,Musicians,@BrunoMars,https://t.co/SF3RUDjqv6 😂 https://t.co/xF64LX0zgU +02/20/2018,Musicians,@BrunoMars,No. You’re gonna need that. https://t.co/jWizw7CKOS +02/20/2018,Musicians,@BrunoMars,🤔 https://t.co/kgC7fMUO20 +02/20/2018,Musicians,@BrunoMars,Nah! https://t.co/PhtUR7j4My +02/20/2018,Musicians,@BrunoMars,One could argue they never left 😎 https://t.co/X8xbfMJctD +02/20/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/AtANFE3N5s +02/20/2018,Musicians,@BrunoMars,RT @ChantalSumiye: @BrunoMars Only good vibes 😎 +02/20/2018,Musicians,@BrunoMars,Oooohhhh word?!?!? 🍾🍾🍾🍾 I’m playing her whole album in her honor! Happy birthday @rihanna https://t.co/Vu6uRU8iLZ +02/20/2018,Musicians,@BrunoMars,What we talkin bout today twitter? We being positive and uplifting or we being weird? Let me know. 😎 +02/20/2018,Musicians,@BrunoMars,Uncle Quincy 🙌 https://t.co/1qwrdV7oPU +02/16/2018,Musicians,@BrunoMars,Tomorrow is the big day! I hope I see you all at the show and we can celebrate one last time! #24KMagicTour… https://t.co/wSnD4lhWIt +02/15/2018,Musicians,@BrunoMars,I love you Hooligans. Thank you so much. https://t.co/u1Hbbcz1og +02/14/2018,Musicians,@BrunoMars,When Beyonce is having a conversation with Jesus and you over here reflecting about all the… https://t.co/GGpFYVHPzV +02/13/2018,Musicians,@BrunoMars,Ayyyeee! Thanks @kobebryant! #LA https://t.co/cn0qmVFU38 +02/12/2018,Musicians,@BrunoMars,🚨🚨🚨 https://t.co/BqyF9O4tLv +02/08/2018,Musicians,@BrunoMars,Give Me timeeeeee 🎶 https://t.co/G9bytjMpEH +02/08/2018,Musicians,@BrunoMars,#AtlantaHipHopRoyaltyHalftime @NFL I can see it! 😎 https://t.co/p2cD3efTks +02/06/2018,Musicians,@BrunoMars,"GRACIAS MONTERREY, MEXICO CITY AND GUADALAJARA! 🇲🇽 WE HAD SO MUCH FUN IN YOUR COUNTRY. THANKS FOR THE LOVE. #24KMagicTour" +02/05/2018,Musicians,@BrunoMars,See! This the type of tweets that warm my heart. God bless you. ❤️ https://t.co/nIu8Q5HtqB +02/05/2018,Musicians,@BrunoMars,I really tried but there was no availability’s at the venues 😞 forgive me. https://t.co/FIl8XU9F1u +02/05/2018,Musicians,@BrunoMars,. @NFL all jokes aside please lets make that happen +02/05/2018,Musicians,@BrunoMars,". @NFL Shit I just wanna help curate that show, and I’ll only charge like a billion😂" +02/05/2018,Musicians,@BrunoMars,". @NFL Outkast. T.I Gucci, lil jon, Jeezy, Jermaine Dupri just to name a few. it would be the best party Tv has ever seen!" +02/05/2018,Musicians,@BrunoMars,. @NFL you have the opportunity to celebrate incredible Hip Hop Artist from Atlanta Next year. +02/05/2018,Musicians,@BrunoMars,Awesome! https://t.co/HjRH3JyBfs +02/05/2018,Musicians,@BrunoMars,Yo is it true that the next Super Bowl is in Atlanta? +02/05/2018,Musicians,@BrunoMars,The band and I had a lot of fun watching the Super Bowl last night in Mexico. Congrats to philly!! +02/05/2018,Musicians,@BrunoMars,Two sold out stadium shows in Mexico City! Thank you guys for welcoming us with so much love and… https://t.co/l2COEJMNt4 +02/04/2018,Musicians,@BrunoMars,Nah! https://t.co/XW9Z4OmOJB +02/04/2018,Musicians,@BrunoMars,🎥 Rehearsal @sb_jbwkz @tjlewis_916 https://t.co/i8O3jf7XlH +02/04/2018,Musicians,@BrunoMars,👑👑👑 https://t.co/JmTCk0uy0C +02/02/2018,Musicians,@BrunoMars,"The Finale. 🍾🥂 +#24kmagicworldtour https://t.co/LqRf3Zjsof" +02/02/2018,Musicians,@BrunoMars,Announcement Tomorrow! #24kMagicFinale #Hooligans 💥💥💥💥💥💥💥💥💥💥💥💥💥💥💥 I’m doin it! +02/02/2018,Musicians,@BrunoMars,Wooh!!!! 💥💥💥💥💥 +02/02/2018,Musicians,@BrunoMars,Annndddd...what if I told u imma bring my lil sis @iamcardib on tour so we can really turn your city upside down! Make this finale a party!! +02/02/2018,Musicians,@BrunoMars,To be honest maybe 10 to 12 years.... *slowly looks out the window and exhales 😞 #DramaQueen #StillGotIt 😜 https://t.co/QYGg7KMdMS +02/02/2018,Musicians,@BrunoMars,I promise I’m going into hibernation after this. https://t.co/SacDJO1Lp2 +02/02/2018,Musicians,@BrunoMars,And Denver I didn’t forget about you. 😉 +02/02/2018,Musicians,@BrunoMars,🤔 https://t.co/upszwGqaSZ +02/02/2018,Musicians,@BrunoMars,What if I told you I wanna do one more U.S tour so we could celebrate 24k Magic together one last time..... +02/02/2018,Musicians,@BrunoMars,A celebration must commence!! +01/30/2018,Musicians,@BrunoMars,Still on cloud 100! This shit right here was so fun!!! Thank you to everyone in attendance and… https://t.co/0HXu5g6BS0 +01/29/2018,Musicians,@BrunoMars,Unreal!! I love you all!!! ✨ https://t.co/EoDRh9Q5lp +01/25/2018,Musicians,@BrunoMars,Laugh at me all u want but I’m hittin the gym as we speak!!! And by gym I mean slim Jim. I just ate 14 slim Jim’s.… https://t.co/Teipdxl18a +01/24/2018,Musicians,@BrunoMars,If you missed us playing at the the world famous @apollotheater have no fear! CBS is re airing the show THIS FRIDAY… https://t.co/m3biYNzf41 +01/16/2018,Musicians,@BrunoMars,When you got one song in the top 10 but Cardi B got three.😂 LETS GO @iamcardib !!! Thank you to… https://t.co/BiwQ7QWBbf +01/15/2018,Musicians,@BrunoMars,.. @naacpimageaward Thank you for making me feel outstanding this morning. I’m beyond grateful for these awards. https://t.co/U5GozppMsi +01/15/2018,Musicians,@BrunoMars,A true leader. Happy #MLKDay https://t.co/KJF7datN9M +01/14/2018,Musicians,@BrunoMars,#Blessings 🥂 https://t.co/v2DFsi9kg2 +01/14/2018,Musicians,@BrunoMars,Jeez. https://t.co/b0FetmQBbE +01/14/2018,Musicians,@BrunoMars,For real though...What’s wrong with the one I got? What makes a good profile pic? https://t.co/BRJTJjehWk +01/14/2018,Musicians,@BrunoMars,Happy Sunday! ✨✨ https://t.co/TpyS2wmzAx +01/12/2018,Musicians,@BrunoMars,Absolutely! https://t.co/suIO1cmU1U +01/12/2018,Musicians,@BrunoMars,Exactly! I love it you too. https://t.co/kf1gcrscZg +01/12/2018,Musicians,@BrunoMars,Then u must teach the world sweet Delaney. Show them the powers of finesse & the joy it brings. Don’t do it for me.… https://t.co/753t21MPFh +01/12/2018,Musicians,@BrunoMars,"If you don’t know, I’m afraid you’ll never know. Good luck Kyle. I Wish you all the best. https://t.co/BoBlvSt92X" +06/30/2018,Musicians,@selenagomez,"Families seeking safety in our country need protection, understanding and opportunity, not detention. This is a mor… https://t.co/9w0w0v6Eo5" +06/29/2018,Musicians,@selenagomez,"RT @HotelT: Grab some 🍿 and get your 🎟️🎟️’s to join Selena, Andy, Joe, and Keegan in #HotelT3 on July 13th! https://t.co/dA7RDCexPr https:/…" +06/21/2018,Musicians,@selenagomez,This is so beautiful thank you Chris https://t.co/XProHkb5Kj +06/13/2018,Musicians,@selenagomez,Help my friend @kidkelly get into the @RadioHOF by voting at https://t.co/OygZajk8vp +06/06/2018,Musicians,@selenagomez,"Donate to #savecarter if you can. If you can’t, please spread the word. Every bit helps! https://t.co/G8NmOlIdFD" +06/06/2018,Musicians,@selenagomez,RT @seewhatsnext: #13ReasonsWhy has been renewed for a third season. All 13 episodes will premiere in 2019. https://t.co/UPtOWyIvJq +06/05/2018,Musicians,@selenagomez,"You can never be too passionate. The video for Back To You Video is out now! +https://t.co/NmFG8RhDJm https://t.co/kkd5OCXw5F" +06/04/2018,Musicians,@selenagomez,Me when I finally get to tell you guys the #BackToYou Video is out tomorrow. 😁 https://t.co/nsamBO5mAX +06/04/2018,Musicians,@selenagomez,😜 https://t.co/aRu5KlJSOz +06/03/2018,Musicians,@selenagomez,(COMING SOON) https://t.co/aeQrrHIKH4 +06/02/2018,Musicians,@selenagomez,https://t.co/myvzHOdwzk +06/02/2018,Musicians,@selenagomez,https://t.co/wNhISpoDio +06/01/2018,Musicians,@selenagomez,https://t.co/p3f6shFw2l +06/01/2018,Musicians,@selenagomez,https://t.co/Dz4xSYbInU +05/31/2018,Musicians,@selenagomez,https://t.co/Pl9aOBsLjE +05/31/2018,Musicians,@selenagomez,https://t.co/A3g9Iurj9e +05/19/2018,Musicians,@selenagomez,My thoughts are with the families of #SantaFe who were supposed to be looking forward to summer break with their lo… https://t.co/g9IcMdeRim +05/19/2018,Musicians,@selenagomez,I am at a complete loss for words watching yet another school shooting. This time in my home state of Texas. Congr… https://t.co/K37Ox4TTdj +05/15/2018,Musicians,@selenagomez,Preorder exclusive @13reasonswhy soundtrack bundles and a portion of the proceeds will go to @TrevorProject and… https://t.co/4abfryhyj0 +05/13/2018,Musicians,@selenagomez,Excited that #BackToYou is the next #HitBound Song of the Week and on the @SiriusXMHits1 playlist! Thank you… https://t.co/v1d4j843EC +05/11/2018,Musicians,@selenagomez,"Thank you @spotify for featuring #BackToYou from @13ReasonsWhy on New Music Friday! +https://t.co/8C2HI06fis https://t.co/VsQm1tFoNK" +05/11/2018,Musicians,@selenagomez,"RT @amazonmusic: 💞 @selenagomez 💞 +🎧#BackToYou https://t.co/zy2xifR2Se https://t.co/2cgcq2QKsm" +05/11/2018,Musicians,@selenagomez,Check out #BackToYou on @AppleMusic’s Selena Gomez Essentials Playlist! https://t.co/uwSrgwqJJY +05/11/2018,Musicians,@selenagomez,Get #BackToYou out now on @AppleMusic 💫 https://t.co/nDiLJ8PZj8 https://t.co/NsLvVot8K9 +05/10/2018,Musicians,@selenagomez,Check out an exclusive vertical video (and a first look at the official video 👀 ) for #BackToYou on @Spotify!… https://t.co/NzDYuROkNi +05/10/2018,Musicians,@selenagomez,"#BackToYou is out now! Preorder the @13ReasonsWhy Season 2 Soundtrack and get it +instantly. 🔙… https://t.co/HcyYZHBLzU" +05/10/2018,Musicians,@selenagomez,"Tune in to @beats1 at 9 am PT to hear my interview with @ZaneLowe about #BackToYou. +https://t.co/KXAm08Dg7h https://t.co/u0psoxX3XU" +05/09/2018,Musicians,@selenagomez,"RT @Beats1: #Selenators! ❣️ +New music from @selenagomez is on the way. #BackToYou is Thursday's #WorldRecord. @zanelowe has it at 9AM LA /…" +05/04/2018,Musicians,@selenagomez,I wanna hold you when I’m not supposed to… https://t.co/Q03X6VCF64 +05/03/2018,Musicians,@selenagomez,Are you guys ready for @13ReasonsWhy Season 2 on May 18? Listen to all the music from the series on my @Spotify pla… https://t.co/6GpG0DemwM +05/02/2018,Musicians,@selenagomez,Presave #BackToYou and you’ll be entered to win a @Puma Phenom Lux Prize Pack!👟 https://t.co/RTnaL0ZAoX https://t.co/dpk6bAAd0x +05/01/2018,Musicians,@selenagomez,"#BackToYou. Out May 10th, part of the @13ReasonsWhy S2 soundtrack. I’m so excited for you guys to hear it.❣️ https://t.co/BsWAQEx0RW" +05/01/2018,Musicians,@selenagomez,RT @13ReasonsWhy: The tapes were just the beginning. May 18. https://t.co/MZczjM1fP3 +04/21/2018,Musicians,@selenagomez,So inspired by your work ♥️ https://t.co/bkQdReyjbZ +03/28/2018,Musicians,@selenagomez,RT @LupusResearch: Learn more about the @PUMA and @selenagomez collaboration benefiting Lupus Research Alliance https://t.co/1oRAjlTIRk htt… +03/26/2018,Musicians,@selenagomez,RT @HotelT: New adventures? ✅ New monsters? ✅ New trailer for #HotelT3? ✅ 🧛🚢 https://t.co/aqdbPEdHUD +12/20/2017,Musicians,@selenagomez,"Go behind the scenes of Wolves, directed by the amazing Colin Tilley. 💕 https://t.co/KP8aLfkbrW" +12/19/2017,Musicians,@selenagomez,Get a look behind the scenes of the Wolves video tomorrow! https://t.co/sOdGjBu3xt +12/01/2017,Musicians,@selenagomez,Thank you @billboard https://t.co/3zkRR6C5BO +11/20/2017,Musicians,@selenagomez,RT @LupusResearch: The @EmpireStateBldg has lit NYC skyline tonight in honor of our Breaking Through Gala celebrating lupus research & the… +11/18/2017,Musicians,@selenagomez,"RT @AMAs: .@selenagomez’s WOLVES VIDEO IS UP ON YOUTUBE! First LIVE performance is tomorrow at 8/7c on ABC. 🌑🐺 #SELENAxAMAs + +https://t.co/…" +11/17/2017,Musicians,@selenagomez,Wolves video x @marshmellomusic is out now! Watch it first on @applemusic. 🐺 https://t.co/gKCG3e9ef0 https://t.co/yaBVR97DSZ +11/17/2017,Musicians,@selenagomez,WOLVES video x @marshmellomusic tomorrow. Watch it first on @applemusic. https://t.co/dJ6Z1W1raX https://t.co/soW8kpzcG0 +11/16/2017,Musicians,@selenagomez,RT @HotelT: Kick back with the Drac pack in the all-new #HotelT3 teaser trailer now and don’t miss them in theaters next summer! 🧛🚢 https:/… +11/15/2017,Musicians,@selenagomez,RT @1027KIISFM: .@SelenaGomez loves seeing #Selenators give back 😊. Tweet a pic/vid completing today's KIISGiving task of telling someone a… +11/08/2017,Musicians,@selenagomez,"LA! Check out the Wolves Wall on Sunset & Stanley, now through the @AMAs on November 19th. Tag your photos of the m… https://t.co/ik58QdidCB" +11/06/2017,Musicians,@selenagomez,Here’s a first look at the music video for Wolves! Tune-in to the @amas Nov 19th to see me perform it live for the… https://t.co/7WGNWDp1CT +10/31/2017,Musicians,@selenagomez,Thank you @billboard! https://t.co/VVhjZjJQjN +10/28/2017,Musicians,@selenagomez,Love to @BBCR1 for making #Wolves their Tune of the Weekend 🐺 listen in to hear it https://t.co/TwcYr05pJ3 +10/27/2017,Musicians,@selenagomez,Thanks to everyone for listening to Wolves and to @spotify for all the support! https://t.co/9SVBJRULSW https://t.co/R2SuSTZTOn +10/27/2017,Musicians,@selenagomez,"RT @Beats1: #BestOfTheWeek headlines: +@selenagomez x @marshmellomusic +@samsmithworld +@cleanbandit +@tydollasign x @LaurenJauregui +https://t.…" +10/26/2017,Musicians,@selenagomez,Wolves x @MarshmelloMusic is out now! 🐺 https://t.co/vyXkNxLOJC https://t.co/oZA8d8gRWI +10/26/2017,Musicians,@selenagomez,Can't wait- 🐺 https://t.co/HG24wMONMh +10/25/2017,Musicians,@selenagomez,"Check out an exclusive visual for Wolves with @marshmellomusic, out now on @Spotify’s Today’s Top Hits Playlist.… https://t.co/c5iJ0LGA17" +10/24/2017,Musicians,@selenagomez,"Check out the official lyrics for Wolves x @marshmellomusic, before it's out tomorrow: https://t.co/ccVY1ERY64 https://t.co/urXYA72RFz" +10/24/2017,Musicians,@selenagomez,"RT @zanelowe: THIS IS BIG! New @selenagomez x @marshmellomusic +#WOLVES #WorldRecord. WEDNESDAY 9AM LA/12PM NYC/5PM LDN +📲 https://t.co/CpoxV…" +10/24/2017,Musicians,@selenagomez,Presave Wolves x @marshmellomusic now and tune in tomorrow for an exclusive vertical video on @Spotify.… https://t.co/rx5TvOwcMY +10/24/2017,Musicians,@selenagomez,Wolves is out tomorrow morning. @marshmellomusic https://t.co/1Gz7ZOVLu6 +10/23/2017,Musicians,@selenagomez,Presave my new song Wolves with @marshmellomusic to be the first to hear it on @spotify Wednesday!… https://t.co/Bz1AQ0aaoa +10/23/2017,Musicians,@selenagomez,"I've been running through the jungle, I've been crying with the wolves. 10.25. https://t.co/ZN9vZTcPnZ" +10/19/2017,Musicians,@selenagomez,Coming 10.25... WOLVES x @marshmellomusic https://t.co/DdctDKXgtc +10/19/2017,Musicians,@selenagomez,"Selenators, meet the mellogang. https://t.co/46Ed4x3Xg4" +09/20/2017,Musicians,@selenagomez,Praying for everyone in Mexico City. So devastated. +09/19/2017,Musicians,@selenagomez,Enter to win the @Coach Selena Grace bag by listening on @Spotify. Top Selenators get their name on my site! 😏… https://t.co/baWT96VtVp +09/04/2017,Musicians,@selenagomez,You can now listen to ‘Fetish’ (@WeAreGalantis Remix) on @spotify’s dancePOP playlist!! https://t.co/JOahGijb1W +08/30/2017,Musicians,@selenagomez,So devastated about the crisis in my home state of Texas. Let's all help- donating here in case you can too: https://t.co/ZTrYu04jAn +08/23/2017,Musicians,@selenagomez,Fetish (@WeAreGalantis Remix) is out now! Listen here: https://t.co/Vo7E89nmbW https://t.co/1deEHoWGLU +08/22/2017,Musicians,@selenagomez,Surprise! @wearegalantis remix of ‘Fetish’ comes out at midnight ET and YOU GUYS helped inspire the art.😝 Can’t wai… https://t.co/rHH0M3O8FQ +08/16/2017,Musicians,@selenagomez,Stream ‘Fetish’ to unlock an exclusive look behind the scenes of the Fetish video before anyone else.… https://t.co/mds1EtEx7j +08/14/2017,Musicians,@selenagomez,I have to run but maybe I should do this more often! Thx for hanging & listening to my music. xo #StreamWithSelena https://t.co/jwzIlxAjIZ +08/14/2017,Musicians,@selenagomez,My little sister Gracie. She's 4 and cooler than me. https://t.co/nYVSZCIMGL +08/14/2017,Musicians,@selenagomez,Depends on my mood! #streamwithselena https://t.co/u1zhynoOVn +08/14/2017,Musicians,@selenagomez,Remind myself what I stand for https://t.co/Do8pztYOLu +08/14/2017,Musicians,@selenagomez,Chocolate https://t.co/56EyYc3jyY +08/14/2017,Musicians,@selenagomez,"My experiences, people just help pull it out of me https://t.co/Im4rqdnYv7" +08/14/2017,Musicians,@selenagomez,Who's listening to 'Love You Like A Love Song' with me? #StreamWithSelena https://t.co/jwzIlxAjIZ +08/14/2017,Musicians,@selenagomez,Eat and talk about everything and nothing https://t.co/jc6NOQhs31 +08/14/2017,Musicians,@selenagomez,Alice in Wonderland https://t.co/U1FxVg5tiv +08/14/2017,Musicians,@selenagomez,Or 16 Candles https://t.co/Nae7ifyv67 +08/14/2017,Musicians,@selenagomez,Wizard of Oz https://t.co/Nae7ifyv67 +08/14/2017,Musicians,@selenagomez,Spanish would be my top but then French https://t.co/dqliHA7kQy +08/14/2017,Musicians,@selenagomez,French https://t.co/dqliHA7kQy +08/14/2017,Musicians,@selenagomez,Treat others how you wish to be treated. #streamwithselena https://t.co/FWkGt6KE3c +08/14/2017,Musicians,@selenagomez,Anything with cream cheese frosting https://t.co/l89MroxGHj +08/14/2017,Musicians,@selenagomez,I'll always go home. It's where my heart is. https://t.co/0QiQuWI7il +08/14/2017,Musicians,@selenagomez,Now Playing: The Heart Wants What It Wants 💕https://t.co/jwzIlxAjIZ https://t.co/pPAwL8BGZR +08/14/2017,Musicians,@selenagomez,Sometimes I have to even if it's not perfected https://t.co/2a4758R9dS +08/14/2017,Musicians,@selenagomez,Camouflage https://t.co/euALfE0Fe3 +08/14/2017,Musicians,@selenagomez,A deep blue https://t.co/VW5AJTWHDN +08/14/2017,Musicians,@selenagomez,Are you serious?!!!! I was literally just listening to her yesterday. She's SUCH a legend. #streamwithselena https://t.co/PHY3afxwxP +08/14/2017,Musicians,@selenagomez,A Heart Like His https://t.co/ViwliJSXQk +08/14/2017,Musicians,@selenagomez,"Up next: My favorite song from Revival, Me & The Rhythm (Sober was a close second.) #StreamWithSelena https://t.co/R1kHNK7hPh" +08/14/2017,Musicians,@selenagomez,Quail egg https://t.co/3ywFl1RVUB +08/14/2017,Musicians,@selenagomez,"I really like ""me and the rhythm"" https://t.co/LziNrkOpaq" +08/14/2017,Musicians,@selenagomez,Now playing: Hands To Myself! #StreamWithSelena https://t.co/dtJhwZfavf +08/14/2017,Musicians,@selenagomez,It was so much fun. I was in a room full of boys. They were all on their phones. https://t.co/0MNEGlEOvP +08/14/2017,Musicians,@selenagomez,"I like feeling like i'm creating a whole new sound each time I collaborate. @KygoMusic's sound is so unique, I love… https://t.co/rm4Q4BkFco" +08/14/2017,Musicians,@selenagomez,I don't have favorites. I have recents. I just watched Lake Mungo https://t.co/eVmaZ38UyJ +08/14/2017,Musicians,@selenagomez,I always have that on every album! https://t.co/x9Kz0OK2YL +08/14/2017,Musicians,@selenagomez,Slow Down https://t.co/KqK997ycfq +08/14/2017,Musicians,@selenagomez,Eminem! #StreamWithSelena https://t.co/3r1CMal9ar +08/14/2017,Musicians,@selenagomez,I love my Brazilian fans! https://t.co/SBSIATagUd +08/14/2017,Musicians,@selenagomez,I don't know. I have always preferred piano https://t.co/bLEqcoQTaE +08/14/2017,Musicians,@selenagomez,Now let’s listen to ‘It Ain’t Me’ with @kygomusic. This was such a fun one to make! https://t.co/jwzIlxAjIZ #StreamWithSelena +08/14/2017,Musicians,@selenagomez,Most of the time I am. I'm just really good at covering it up 😀 https://t.co/M5wlRtqhT2 +08/14/2017,Musicians,@selenagomez,Lately? That I'm moving to Europe... so random. #StreamWithSelena https://t.co/ioxlycLXCC +08/14/2017,Musicians,@selenagomez,The collaboration and being a part of their family #streamwithselena https://t.co/BecVPY5ICb +08/14/2017,Musicians,@selenagomez,"With confidence, you just have to believe it until it's natural. Don't just say it. Believe it. #StreamWithSelena https://t.co/bQ1trCjSrv" +08/14/2017,Musicians,@selenagomez,The album making process because I learned so much about myself as an artist #streamwithselena https://t.co/HkmD8BGiv6 +08/14/2017,Musicians,@selenagomez,Kill Em With Kindness is up next… a song that’s close to my heart now more than ever. https://t.co/jwzIlxAjIZ… https://t.co/Ebe3tpJvOR +08/14/2017,Musicians,@selenagomez,I have to always grow #streamwithselena https://t.co/OmCzml3Bzr +08/14/2017,Musicians,@selenagomez,Yes - there's one that is really special to me. It's ballad. https://t.co/uvTd2elMBi +08/14/2017,Musicians,@selenagomez,I got the most inspiration during seasons of change https://t.co/NVL5yTGdgs +08/14/2017,Musicians,@selenagomez,Connecting with my fans! And filters. https://t.co/lXXhrngwug +08/14/2017,Musicians,@selenagomez,Now let’s throw it back to Revival with Good For You. https://t.co/jwzIlxAjIZ #StreamWithSelena https://t.co/GRbCzRCkqe +08/14/2017,Musicians,@selenagomez,#GameOfThrones I finished the third season yesterday. No spoilers! #streamwithselena https://t.co/Mgc0lImL2r +08/14/2017,Musicians,@selenagomez,"I like ""Wild Thoughts"" with Rihanna https://t.co/4a12NuEbj9" +08/14/2017,Musicians,@selenagomez,Pieces by Amanda Cook https://t.co/oTBD2L7ode +08/14/2017,Musicians,@selenagomez,"Probably the mom character! It was such a twist at the end, I love how it all came together. #streamwithselena https://t.co/5I71V2Z9Nd" +08/14/2017,Musicians,@selenagomez,Being able to learn from someone else's sound and combining it with mine https://t.co/BU6i35L3gE +08/14/2017,Musicians,@selenagomez,Next on the playlist is Bad Liar! https://t.co/jwzIlxAjIZ #StreamWithSelena https://t.co/fgIIV8a3Mw +08/14/2017,Musicians,@selenagomez,I love being able to collaborate w/different artists & producers so every song is new and different. #streamwithsel… https://t.co/vKtVfmClC6 +08/14/2017,Musicians,@selenagomez,Not telling! https://t.co/9lRlcg2sMr +08/14/2017,Musicians,@selenagomez,"Yes, I can sing @gucci1017's part" +08/14/2017,Musicians,@selenagomez,Being able to work with @gucci1017 again. #goals +08/14/2017,Musicians,@selenagomez,"Here we go! Listen along on https://t.co/jwzIlxAjIZ. First up, Fetish ft. @gucci1017. #StreamWithSelena https://t.co/J5m2IUc8CD" +08/14/2017,Musicians,@selenagomez,#StreamWithSelena starts in 30 minutes. Get ready to push play on https://t.co/jwzIlxAjIZ on @spotify and tweet me… https://t.co/QsJ0OPNWrT +08/14/2017,Musicians,@selenagomez,Join me for a listening party and Q&A tmrw at 12 pm PT. Get ready by following https://t.co/jwzIlxAjIZ on @Spotify… https://t.co/jeeUARJ43E +08/10/2017,Musicians,@selenagomez,Press and hold on the @Snapchat camera when listening to “Fetish” to @Shazam and unlock my exclusive filter! 🍑 https://t.co/K7KzDpqHd6 +08/04/2017,Musicians,@selenagomez,TONIGHT! Watch #WEday on CBS at 8/7c. @wemovement https://t.co/1OvHa8rTM6 +08/03/2017,Musicians,@selenagomez,RT @voguemagazine: Why @SelenaGomez's new collaboration with @Coach is deeply personal. https://t.co/zVMt2lsmin +08/03/2017,Musicians,@selenagomez,Ahhh!💕thank you Instyle!! Wearing @coach for the @InStyle September cover and showing a sneak peek at my new bag I… https://t.co/XS9zt9seqf +08/03/2017,Musicians,@selenagomez,RT @MissPiggy: Watch moi & BFF @selenagomez at #WEday August 4th on CBS! Incredible kids changing the world… So inspiring that next year mo… +08/01/2017,Musicians,@selenagomez,"I push you out and you come right back… Watch Fetish now: + https://t.co/L8u81hszyO" +07/31/2017,Musicians,@selenagomez,Listen to ‘Fetish'🍑 out now on @applemusic.🍎 https://t.co/3Qts3qUdP1 https://t.co/eV2MXpiDlR +07/29/2017,Musicians,@selenagomez,Get exclusive merch inspired by the ‘Fetish’ video in my official store. https://t.co/du1Qxay1ZZ https://t.co/9IHOPCWS3W +07/26/2017,Musicians,@selenagomez,FETISH VIDEO. OUT NOW. @petracollins @gucci1017 https://t.co/CDu2oRMnY6 https://t.co/znGGr5g3h1 +07/26/2017,Musicians,@selenagomez,FETISH VIDEO. TOMORROW. https://t.co/vwDKVKqc08 +07/24/2017,Musicians,@selenagomez,The official video for Fetish… coming Wednesday. @gucci1017 @petracollins https://t.co/wf5LsQLCfg +07/22/2017,Musicians,@selenagomez,Thank you so much for all the birthday wishes! Asked my family and friends to make a donation -if you want to join: https://t.co/KONFIgjfRc +07/21/2017,Musicians,@selenagomez,Fetish video directed by @PetraCollins & ft. @gucci1017 drops next week. 🍑 https://t.co/vbFd93Ksku +07/20/2017,Musicians,@selenagomez,"I'm not surprised, I sympathize. https://t.co/NDXNsroShu" +07/14/2017,Musicians,@selenagomez,Don't see a point in blaming you... 🍑 https://t.co/Hq0MHRG86F https://t.co/YYixlYXsR0 +07/14/2017,Musicians,@selenagomez,@ddlovato Yes we have 😊 -just listening to Sorry Not Sorry! You slay as always. So happy for you! +07/13/2017,Musicians,@selenagomez,RT @Shazam: It's here! We made @selenagomez's new track #Fetish our Song of the Day!! Time to get the #Shazam party started: https://t.co/I… +07/13/2017,Musicians,@selenagomez,FETISH is here 🍑🍑🍑 @gucci1017 on @applemusic: https://t.co/DDhdmX7uY1 https://t.co/QnZpXvqHIv +07/13/2017,Musicians,@selenagomez,"FETISH, ft. @Gucci1017 out now. Watch the first visual on @Spotify: https://t.co/MnmD0obn33 https://t.co/BtR9KCHE7N" +07/12/2017,Musicians,@selenagomez,"RT @Genius: LYRIC PREMIERE: @selenagomez keepin' it a buck on her new single “fetish” with @gucci1017 💯 +https://t.co/gS40lxz0yb https://t.…" +07/11/2017,Musicians,@selenagomez,Fetish. Thursday. https://t.co/ddTsZSI2jJ +07/10/2017,Musicians,@selenagomez,Presave Fetish ft. @gucci1017 to be the first to hear it July 13th. 🍑 https://t.co/s6mcMkB78E +07/10/2017,Musicians,@selenagomez,You got a fetish for my love. https://t.co/x4rDhPJ4md +07/09/2017,Musicians,@selenagomez,"Thank you @OnAirRomeo & #MostRequestedLive, here's my #BadLiar @iHeartRadio @AskAnythingChat https://t.co/7aMy9RyiSY" +07/07/2017,Musicians,@selenagomez,JULY 13 https://t.co/0fJIwwqC8U +07/06/2017,Musicians,@selenagomez,FETISH https://t.co/wjCyId6ZsK +07/04/2017,Musicians,@selenagomez,Check out my Me & My Girls @Spotify playlist celebrating some of the amazing women topping the charts:… https://t.co/r98ujxfYmK +07/02/2017,Musicians,@selenagomez,RT @MostRequestLive: in 1 week watch our EXCLUSIVE @SelenaGomez #MostRequestedLive @AskAnythingChat w/ @OnAirRomeo. Send Q’s! https://t.co/… +06/25/2017,Musicians,@selenagomez,RT @MostRequestLive: We've got @selenagomez for a #MostRequestedLive @iHeartRadio @AskAnythingChat 7/8 w/@OnAirRomeo! Send q's https://t.co… +06/19/2017,Musicians,@selenagomez,When you get asked about Canada… love you guys 🇨🇦💕#WEdayCanada https://t.co/JGOnGn7Hjp +06/16/2017,Musicians,@selenagomez,RT @arainydream: #ShazamBadLiar supporting @selenagomez no matter what 🌟💜 @selenafanclub #BadLiar https://t.co/RHyt9kHIcv +06/16/2017,Musicians,@selenagomez,RT @worthingselena: #ShazamBadLiar #BadLiar iconic! I mean YAS 😍 https://t.co/Q3uQrkrj9V +06/15/2017,Musicians,@selenagomez,.@Shazam #BadLiar on @Snapchat to unlock exclusive Bad Liar filters! https://t.co/E5DPHm0e3V +06/15/2017,Musicians,@selenagomez,Get exclusive #BadLiar merch available now. https://t.co/GUrFQDsv5B https://t.co/jlxwnVcxSd +06/15/2017,Musicians,@selenagomez,#BadLiar music video is out by the way 😏 https://t.co/soMub0utR6 https://t.co/JcVxjNKy1n +06/12/2017,Musicians,@selenagomez,#BadLiar - a film. Coming Wednesday. https://t.co/E6j4BPJLf9 +06/10/2017,Musicians,@selenagomez,RT @iHRCountdown: Our girl @selenagomez is joining @OnAirRomeo to co-host the @iHeartRadio Countdown!Listen here: https://t.co/Z4VaBWXZAW #… +05/30/2017,Musicians,@selenagomez,RT @christiaannoval: When ur waaay to sleepy but you still wanna jam to @selenagomez .... #badliar #selenagomez #thiskid #musicislife https… +05/23/2017,Musicians,@selenagomez,My thoughts and prayers go out to everyone affected in Manchester. +05/19/2017,Musicians,@selenagomez,"AH, thank you!! https://t.co/ZFOX8yM1Rg" +05/18/2017,Musicians,@selenagomez,♥️ https://t.co/9UFy1hDMwz +05/18/2017,Musicians,@selenagomez,Watch an exclusive playlist video for 'Bad Liar' on @Spotify: https://t.co/YS9XpcTjyE #BadLiarOutNow https://t.co/ZpJo7HQuss +05/18/2017,Musicians,@selenagomez,All my feelings on fire... #BadLiar is out now. https://t.co/o4KYidITCr https://t.co/c2BboJKVtP +05/17/2017,Musicians,@selenagomez,"RT @Genius: .@selenagomez flipped a 1977 talking heads classic on her new single 💯 + +verified #badliar lyrics: https://t.co/DmOqzdTgmO https…" +05/17/2017,Musicians,@selenagomez,😏 https://t.co/2aTiaCaDhl +05/17/2017,Musicians,@selenagomez,#BadLiar 5.18 https://t.co/oohH9odA2E +05/15/2017,Musicians,@selenagomez,#BadLiar 5.18 https://t.co/T0pjPeexwY +05/13/2017,Musicians,@selenagomez,Pre-save #BadLiar on @Spotify to be the first to hear it when it comes out 5.18. https://t.co/JlTnPGbM4K https://t.co/dCcezFhQm8 +05/12/2017,Musicians,@selenagomez,#BadLiar. 5.18. https://t.co/7jFDhmgUIm +05/11/2017,Musicians,@selenagomez,#SGBadLiar https://t.co/7UNcqpse9i +05/04/2017,Musicians,@selenagomez,Something new is coming. Sign-up to be the first to know… https://t.co/Hbdo2uWOsM +04/25/2017,Musicians,@selenagomez,"RT @KygoMusic: It ain't me music video is out now!🎥 @selenagomez + +https://t.co/XZ3dKnO2h7" +04/01/2017,Musicians,@selenagomez,RT @SelenaFanClub: Our #13ReasonsWhy watch party is TODAY at 4p PST. We'll be watching Episode 1. Who's joining us?!? 🎉🎉🎉 https://t.co/J0qN… +03/29/2017,Musicians,@selenagomez,"2 days til @13ReasonsWhy… Here's a 1st listen to my cover of ""Only You” from the soundtrack, inspired by Hannah and… https://t.co/3qOAJpKGa1" +03/21/2017,Musicians,@selenagomez,RT @voguemagazine: What happened when @SelenaGomez answered #73Questions. https://t.co/vgqyhzMlAh +03/16/2017,Musicians,@selenagomez,Thrilled to share my first American @voguemagazine cover with you! Read the story and see the full spread:… https://t.co/BSdoZZuz0q +03/01/2017,Musicians,@selenagomez,RT @13ReasonsWhy: You can't bury the truth. #13ReasonsWhy revealed 3/31. https://t.co/LccZYtL8KB +02/27/2017,Musicians,@selenagomez,"RT @SelenaFanClub: .@selenagomez & all her hits (including the AMAZING new song, #ItAintMe). What more could you want?! +Listen here 👉 http…" +02/18/2017,Musicians,@selenagomez,"RT @AppleMusic: You know what to do. +@noyes, @TreySongz, #MeAndThatMan + more on the #BestOfTheWeek: https://t.co/QEAncfuZ5w https://t.co/1…" +02/16/2017,Musicians,@selenagomez,"To celebrate #ItAintMe, @KygoMusic and I took over the Teen Party playlist on @Spotify. Listen to our picks here:… https://t.co/5BGwbdiSxj" +02/16/2017,Musicians,@selenagomez,It's finally here! Listen to my new song #ItAintMe with @KygoMusic on @AppleMusic! https://t.co/jBKYNmM4GY +02/16/2017,Musicians,@selenagomez,RT @SelenaFanClub: Head over to @musicallyapp and create those #ItAintMe videos! You might get some goodies from Sel :) https://t.co/ExoJXP… +02/13/2017,Musicians,@selenagomez,#ItAintMe. Thursday. @KygoMusic https://t.co/YsB9N8CkcH +08/13/2016,Musicians,@selenagomez,"I love you, Christina. https://t.co/p2vUWvjbh0" +08/09/2016,Musicians,@selenagomez,Such a memorable show in Sydney tonight.. I'll never forget this one. Thanks for singing along with me-woke up with a sore throat 😕 I LOVE U +08/03/2016,Musicians,@selenagomez,After years of work from so many incredible people -I'm getting so excited/emotional about our show 13 Reasons Why https://t.co/qhk6VWeFaV +07/26/2016,Musicians,@selenagomez,Big news! I’m playing this year’s #GCFestival 9/24. Take action to earn your tickets https://t.co/Yxz04A6IcK https://t.co/YIuiG0Uole +07/23/2016,Musicians,@selenagomez,"I asked all my friends and family to make a donation for my birthday. If you want to, would love you for to join 💜 https://t.co/4M1SoL1GWR" +07/23/2016,Musicians,@selenagomez,"Did this on my birthday... coming soon. Thank you for all the love. I love you guys, God bless https://t.co/4Pb5usx2Pk" +07/18/2016,Musicians,@selenagomez,This industry is so disappointing yet the most influential smh +07/18/2016,Musicians,@selenagomez,"Truth is last thing we need right now is hate, in any form" +07/18/2016,Musicians,@selenagomez,There are more important things to talk about... Why can't people use their voice for something that fucking matters? +06/23/2018,Musicians,@katyperry,Was so proud to give the gift of #transcendentalmeditation to my tour mates last week lead by my beautiful friend… https://t.co/4EKlQMP9Wk +06/22/2018,Musicians,@katyperry,found my first skin tag today. I think I’m an adult now. #TGIF +06/21/2018,Musicians,@katyperry,"Never forget, everyone was once a child." +06/20/2018,Musicians,@katyperry,"My Aussies 🐨 & Kiwis 🥝! For the FINALE of #WitnessTheTour (that's right, shows #98-111 🙀), I'm bringing… https://t.co/tkXX44Dypk" +06/15/2018,Musicians,@katyperry,"I 👁 you, @RoarForJess, and I ❤ you, and I’m singing this one for you tonight!" +06/09/2018,Musicians,@katyperry,Scandinavians have figured it out. +06/09/2018,Musicians,@katyperry,Oi oi @JackGarratt remember when we locked ourselves in a room for a few days in Santa Barbara and wrote a rad song… https://t.co/qosnSJtTr0 +06/09/2018,Musicians,@katyperry,WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr https://t.co/KnC2OnWSSU +06/06/2018,Musicians,@katyperry,IM SCREAMINGOSBEJRMF$&2@!K https://t.co/SnRrHLSSLR +06/05/2018,Musicians,@katyperry,CALIFORNIANS! What’s important to you? Is it gun violence? Immigration? Women’s rights? Prison reform? The… https://t.co/tr8Pu9GmTO +06/02/2018,Musicians,@katyperry,"We just played our 80TH show for #WITNESSTHETOUR... 🤝🌎💪🏻🌍🙌🏻🌏❤️ #andwedontstop +#welloiledmachine #cookingwithgas 👵🏼" +06/02/2018,Musicians,@katyperry,bout to do Yoga to new Kanye record +06/01/2018,Musicians,@katyperry,Happy #PRIDE month. I see you and I love you 🌈❤️🧡💛💚💙💜🌈 +06/01/2018,Musicians,@katyperry,Imma #believer ♥️ https://t.co/BV2ZK9OeAX +06/01/2018,Musicians,@katyperry,Here’s something to believe in: @cynthialovely is really coming into her own 🌸 and just put out a 📹 to one of my fa… https://t.co/xQeBcn1mpl +05/30/2018,Musicians,@katyperry,RT @AmericanIdol: Did you think we were 'going going' to miss it?! Our Idol @MaddiePoppe will perform TONIGHT on @JimmyKimmelLive! #America… +05/29/2018,Musicians,@katyperry,"RT @repjohnlewis: Thank you, @ABCNetwork. You did the right thing. There is not any room in our society for racism or bigotry." +05/22/2018,Musicians,@katyperry,"Before this weekend’s American Idol finale, I… https://t.co/OcJnBWY5j5" +05/22/2018,Musicians,@katyperry,"Season 1 is ""Going, Going, Gone""! Congratulations, brilliant @MaddiePoppe ✨👏🏻 Click here for her ear 🍬:… https://t.co/wbpr1utAHc" +05/22/2018,Musicians,@katyperry,The couple that sangs together stays together... #AmericanIdolFinale https://t.co/3GPMGfRdym +05/22/2018,Musicians,@katyperry,WHEN A QUEEN MEETS ANOTHER QUEEN @adavox @mspattipatti 👑 👑 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,😭 WHAT THE WORLD NEEDS NOW IS ❤️ and more of you @michaelwoodard @YolandaAdams #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,"Look at you, you're sparkling ✨ @hashtagcatie #KatySquared #AmericanIdolFinale https://t.co/Cdek7uUi2J" +05/22/2018,Musicians,@katyperry,KATY SQUARED COMING SOON ‼️#AmericanIdolFinale https://t.co/OEss6MMn7u +05/22/2018,Musicians,@katyperry,😩LAYLAAAAA❗️DYXIIIEEEEE❗️TWO precious. God bless you @leannrimes 🙏🏼 +05/22/2018,Musicians,@katyperry,I can't believe y'all did that to me on live television @americanidol @tholmesmusic I'm coming for you next season 😈 +05/22/2018,Musicians,@katyperry,My angel @beberexha and the Idol BBs 😩 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,"Just a coupla old souls, sangin' @calebleemusic @dariusrucker #AmericanIdolFinale" +05/22/2018,Musicians,@katyperry,LAST LOOKS! #AmericanIdolFinale https://t.co/GGBChLkbpr +05/22/2018,Musicians,@katyperry,Speaking of 🔥: @CadeFoehner @dennislorenzo @GaryClarkJr #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,Me watching @MaddiePoppe and @KermitTheFrog https://t.co/r8Z6znw2XC +05/22/2018,Musicians,@katyperry,I BELIEVE MOST PEOPLE ARE GOOD TOOOOO 😩 @lukebryanonline @gabbybarrett_ +05/22/2018,Musicians,@katyperry,"I just caught up to Huntin, Fishin, Lovin, and now it's Sunrise 🌅, Sunburn 🔥, Sunset 🌅 @LukeBryanOnline? #americanidolfinale" +05/22/2018,Musicians,@katyperry,OMG is that OUR @Jurnee? 😱 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,OMG UNCLE LIONEL‼️ 😩 #AllNightLong #AmericanIdolFinale https://t.co/dQr8djp2Cc +05/21/2018,Musicians,@katyperry,It’s the ✨GRAND FINALE!✨😱 and my last show with uncle @LionelRichie and my cray brother @LukeBryanOnline this seaso… https://t.co/xJVnY5lZ8S +05/21/2018,Musicians,@katyperry,Just rewatched the 3 finale contestants' 1st auditions on the @AmericanIdol app. So proud of each of them & how far… https://t.co/nXMhGQsX7G +05/21/2018,Musicians,@katyperry,addicted/obsessed https://t.co/kHW2sRjyqz +05/21/2018,Musicians,@katyperry,🌼 @maddiepoppe Authentic AF. +05/21/2018,Musicians,@katyperry,NEVER WASTE A FRINGE @GabbyBarrett_ ☝🏻💁🏼 +05/21/2018,Musicians,@katyperry,🤠 @calebleemusic Don't Close Your Eyes is your essence and why we all fell in love with you months ago. Keep that c… https://t.co/eVhppIrGPO +05/21/2018,Musicians,@katyperry,"“Fake it until you make it and then when you make it, shake and bake it” -@LukeBryanOnline 😝🤦🏼‍♂️ #AmericanIdolFinale" +05/20/2018,Musicians,@katyperry,You can travel the 🌎 but nothing comes close to the SB coast🏠About to hit stage for a long awaited homecoming benef… https://t.co/EpTqldVs0r +05/18/2018,Musicians,@katyperry,Add me to the group of most. #gunreformnow https://t.co/14VN4jSmat +05/17/2018,Musicians,@katyperry,"#tbt to Lions and Frida and tacos, oh my! 🦁🌮😱 Mexico, I had so much fun with you. Te amo! You’re up next, Europe! 🔜 https://t.co/6My2GwoV9f" +05/17/2018,Musicians,@katyperry,"I don’t even say “I can’t wait...” anymore. That statement says I don’t have the patience and actually, I know I do… https://t.co/sLc7G0BZQo" +05/17/2018,Musicians,@katyperry,"Everything is energy, words are vibrations, remember words are ARE powerful. Change I can’t to I can. I won’t to I… https://t.co/m9YtMlXYJr" +05/16/2018,Musicians,@katyperry,"3⃣ more days until Witness: Coming Home, a benefit for the community of my ❤, Santa Barbara. Bid now for 🎟 to this… https://t.co/oAJag26DAx" +05/16/2018,Musicians,@katyperry,My 👑 queens 👑 @HookedOnDolls and my 😇 Angel 😇 @OhElleYeah are coming with me to Johannesburg! See you soon ‼️… https://t.co/wEgCELnJAh +05/16/2018,Musicians,@katyperry,LAURELLLLLLLLLLLLLLLLLL +05/16/2018,Musicians,@katyperry,@HighwayKatyCorn Pinot Noir +05/16/2018,Musicians,@katyperry,@colleenseleven No how cause I haven’t been on here in a min +05/16/2018,Musicians,@katyperry,*you’re (leaves twitter) +05/16/2018,Musicians,@katyperry,"Furthermore, it should be submitted to get its own national holiday. I’m over these made up holidays to sell more j… https://t.co/8TrrJUN5bv" +05/16/2018,Musicians,@katyperry,Honestly whoever named it a “lazy Susan” wasn’t giving it enough credit. That thing can serve several people in one… https://t.co/CN67rECqg3 +05/16/2018,Musicians,@katyperry,Who ate my snacks?! #EndARelationshipIn4Words +05/16/2018,Musicians,@katyperry,"WHAT 👏🏼 A 👏🏼 LINEUP❗️ +The #AmericanIdol finale is almost here and we are going out BIG! 💥 Watch 📺, vote ✅, and list… https://t.co/aIFnuCF4Rf" +05/14/2018,Musicians,@katyperry,AUSTRALIA! 🇦🇺 The final encore shows in Adelaide & Sydney are on sale now! Get your 🎟 at https://t.co/VNXmphRhJe an… https://t.co/jhIO18EKHx +05/14/2018,Musicians,@katyperry,Are you watching this Mother’s Day themed #AmericanIdol? I hope you’re tuning in and snuggling with your mama! ❤️… https://t.co/Y8HXzbM5YO +05/13/2018,Musicians,@katyperry,Things are HEATING UP🔥 Tune in at 5pm local time and ☑VOTE☑ for who you want to be in the #AmericanIdol FINALE! 🎤🏆 https://t.co/PdwtnPJJWu +05/13/2018,Musicians,@katyperry,Issa word 🤗👑♥️ https://t.co/fUfb0lfBTT +05/11/2018,Musicians,@katyperry,Don’t forget to take everything with a himayalain grain of salt AND laugh at the devil daily ♥️ +05/10/2018,Musicians,@katyperry,"✨3 Wise WOWmen ✨ + +#TBT 📸 @ronyalwin @ St Marks Hotel New York City https://t.co/le51JFMQX9" +05/10/2018,Musicians,@katyperry,Isn’t it so wonderful that with every new day there is a new opportunity to see things differently and live more gracefully? ♥️ +05/10/2018,Musicians,@katyperry,There’s only two states of being. Love or Fear. Which one will you choose? ♥️ +05/10/2018,Musicians,@katyperry,Love you too my Earth Angel. ♥️ https://t.co/peMHCfLNhW +05/09/2018,Musicians,@katyperry,Though I walk through the valley of the shadow of death...… https://t.co/VspKHAwjEt +05/08/2018,Musicians,@katyperry,"🇦🇺! You asked for it! I'm ADDING ✌🏼MORE SHOWS! See you in Adelaide on July 28 and Sydney August 17 +🎟 go on sale at… https://t.co/qcg5R40ayw" +05/08/2018,Musicians,@katyperry,Best dressed: Greta Gerwig #METGALA18 +05/07/2018,Musicians,@katyperry,I knew I wore that Donald Duck hat for a reason! 😝 https://t.co/Gcae66wS9O +05/07/2018,Musicians,@katyperry,Are you watching?! ♥️ #americanidol https://t.co/OxHNxCJleZ +05/07/2018,Musicians,@katyperry,“...when you gotta lil hitch in your giddy up...”- @LukeBryanOnline 😝🐴 #americanidol +05/07/2018,Musicians,@katyperry,TUNE IN NOW 📺 AND VOTE! ✅ #americanidol +05/05/2018,Musicians,@katyperry,"I need a Mai Tai, so f*ckin' sci-fi +Give me the password, to the fuckin' WiFi. (OMFG THESE LYRICS/LEWKS & VIDEO🚨IM… https://t.co/a7XGddT7d7" +05/04/2018,Musicians,@katyperry,Y’ALL! I’m having TWO ✌🏼 much fun to stop now... so why don’t we keep it going!? 🚨 🔈EXCITED TO ANNOUNCE that… https://t.co/lFerHehptK +05/03/2018,Musicians,@katyperry,#TBT This weekend marked the 10th anniversary of the release of I Kissed A Girl! 💋 Thank you for believing in me th… https://t.co/ew5vUSlmvF +04/30/2018,Musicians,@katyperry,Cindy lent me her shoes 🤷🏼‍♂️ https://t.co/2qCO8kJVyW +04/30/2018,Musicians,@katyperry,"dress for the job you want, not for the job you have... ✨ https://t.co/8SJxHOWdgW" +04/30/2018,Musicians,@katyperry,Someday my prince will come✨Today I got Happy and Dopey 😑 And now I'm Sleepy. 😴 See you next week 😘 #AmericanIdol https://t.co/9yp0MZeemR +04/30/2018,Musicians,@katyperry,VOTE ✅ VOTE ✅ VOTE ✅ https://t.co/MZVX4xCyJe @AmericanIdol @RyanSeacrest https://t.co/eejrP8Bmdm +04/29/2018,Musicians,@katyperry,"Not only is it #AmericanIdol, it's @DISNEY-THEMED so prepare for wigs to fly whilst ""letting it go"" ❄ and finding y… https://t.co/C7xDMo1oR0" +04/29/2018,Musicians,@katyperry,Honored to be in the presence of His Holiness @Pontifex's compassionate heart and inclusivity. Thank you to… https://t.co/qJXQFSZqaj +04/28/2018,Musicians,@katyperry,I’m inspired ✨ & encouraged 🤗today & grateful to share how meaningful transcendental meditation has been for me. I… https://t.co/nntQRFHRxO +04/27/2018,Musicians,@katyperry,Are you a BELIEVER❓Listen to @cynthialovely’s new song now https://t.co/q0lCHmz2yg and let me know if you’re a… https://t.co/8ICACAaFjl +04/26/2018,Musicians,@katyperry,🙌🏼🙌🏼🙌🏼 https://t.co/GGFyZwXXX9 +04/26/2018,Musicians,@katyperry,You wanna open a big door? Try the kindness key 🗝♥️ +04/24/2018,Musicians,@katyperry,"My ❤ has been on a roller coaster tonight 😭 Congratulations to the Top 🔟 America, if you truly are a fan of one of… https://t.co/wjfode9w5x" +04/24/2018,Musicians,@katyperry,"""It's time to change their minds."" THAT'S THE ATTITUDE, @dennislorenzo 🙌🏼 #americanidol" +04/24/2018,Musicians,@katyperry,One singer through 🎤 and two in the danger zone already. 😬 R! U! WATCHING ?? 👀hsiriehfjebdhdha #americanidol +04/23/2018,Musicians,@katyperry,You got the POWER✨Now you can VOTE! 🤝🇺🇸 #AmericanIdol https://t.co/HnRAo9oHBc +04/23/2018,Musicians,@katyperry,What do you mean you don't have the app yet ⁉️THE POWER IS IN YOUR HANDS (literally when you pick up the phone). VO… https://t.co/4nV0mZqVEg +04/23/2018,Musicians,@katyperry,"🚨TUNE IN TONIGHT AT 8/7c FOR YOUR FIRST CHANCE TO VOTE FOR YOUR #AMERICANIDOL⭐🚨 Download the app 📱, vote on… https://t.co/9CocdLMD9i" +04/22/2018,Musicians,@katyperry,"If the word ear is in Earth, maybe we should listen to it. Peace be with you on this beautiful #earthday 👂🏻🌎♥️" +04/21/2018,Musicians,@katyperry,"🌎 Day isn't until Sunday, but I'm proud to announce that @kpcollections will be donating 10% of your purchases from… https://t.co/ihjv75Qtiv" +04/19/2018,Musicians,@katyperry,SANTA BARBARIANS! 🌅 Join my friends at @AHASBCal in an amazing living art piece this SATURDAY! You have until noon… https://t.co/jCkkqQB0BV +04/19/2018,Musicians,@katyperry,I've officially e-scribed 🤝 https://t.co/CYRr0wr7ed +04/18/2018,Musicians,@katyperry,KatyCats! Remember that time I sent y’all on a 🕺disco ball🕺 scavenger hunt? 👀 Apparently it was cool enough to get… https://t.co/vo9G6TGFfs +04/18/2018,Musicians,@katyperry,@joshgroban go to bed dad you’re drunk +04/18/2018,Musicians,@katyperry,"high of the day: 0 cavities 🙏🏻 +low: @washingtonpost won’t deliver physical newspapers to my zip code. Alas, I guess… https://t.co/tBDKO4naeW" +04/18/2018,Musicians,@katyperry,talking and communicating are two different things - Rebecca Lynn @VCRebecca 🤝 +04/16/2018,Musicians,@katyperry,I have good news and bad news today - ☹️: I won’t be able to live stream #AmericanIdol today but 🙂: I CAN promise y… https://t.co/VSMnfhh1EG +04/15/2018,Musicians,@katyperry,"Ooh, almost time for another #americanidol! 👏🏼 Going live with my mama again in under an hour. Get ready for round… https://t.co/h5n4dRO3Nw" +04/15/2018,Musicians,@katyperry,And that’s a wrap on the Asian leg of Witness The Tour! Fell in love with many different cherry… https://t.co/3d7vpN0k75 +04/12/2018,Musicians,@katyperry,😍👃🏼 https://t.co/HnVSLRIwQD +04/12/2018,Musicians,@katyperry,"I had a wonderful chat with 👑 @dualipa for @vmagazine, coming soon to a newsstand near you. Nice catching up with h… https://t.co/D6F7CrazHN" +04/10/2018,Musicians,@katyperry,"even when you don’t believe in love, love believes in you. ❤️" +04/10/2018,Musicians,@katyperry,To @laylaspring @LegitDominique @BrandonDMusic @kaykaydna @TrevorMcBane just because your #americanidol journey has… https://t.co/dMZOgov6qL +04/10/2018,Musicians,@katyperry,Unfortunately we had to make a drastic cut of 5 😭 If the show is still stuck in your DVR you better press play! And… https://t.co/yNBh6z2spC +04/10/2018,Musicians,@katyperry,🤗@hashtagcatie gives good hugs! @DennisLorenzo sounds like a flock of beautiful doves! @jonnybrenns did ballet!💃🏻… https://t.co/eNcG8BTWPN +04/10/2018,Musicians,@katyperry,Caught up on #AmericanIdol on the ✈! Here are my highlights: +04/10/2018,Musicians,@katyperry,MFW when they tell us we have to send home 5 of the 12 contestants tonight 😩...BUT it’s time for ⭐ALL STAR DUETS⭐!… https://t.co/1AqyNy62PV +04/09/2018,Musicians,@katyperry,I can't wait for you to 👁witness👁 my baby bird @cynthialovely when she opens for me in Mexico!🎵❤Tickets at… https://t.co/nNOXNDlnDK +04/09/2018,Musicians,@katyperry,Who's ready for #americanidol ⁉️🙋🏼Live on Instagram from Singapore in 5 minutes! ⌚️ This Top 24 is so fresh n so cl… https://t.co/sFSu8jHvfK +04/07/2018,Musicians,@katyperry,"Zomg this is me everyday after I read the whole internet. Lucky, there’s so much to learn in nature... 🌳 https://t.co/s0xEcWFiqn" +04/07/2018,Musicians,@katyperry,V Cute! https://t.co/Dqgw5v9a13 +04/06/2018,Musicians,@katyperry,Oh this is just puurrfect #KatyKatGloss was named Best Lip Lustre in @InStyle's Best Beauty Buys of 2018! Thank you… https://t.co/g66qfU58bb +04/05/2018,Musicians,@katyperry,"On this day 50 years ago, they tried to silence his voice, but the #DreamStillLives ✌🏻 https://t.co/XMocaecbyI" +04/04/2018,Musicians,@katyperry,"was feeling homesick today, being on this leg of tour for over 4 weeks now and then I put on @KaceyMusgraves’s new… https://t.co/pb3WJ2hqIw" +04/03/2018,Musicians,@katyperry,❤️❤️❤️ @maddiezahm ❤️❤️❤️ #americanidol +04/03/2018,Musicians,@katyperry,You’re not going to miss this dance @effiepassero. #americanidol +04/03/2018,Musicians,@katyperry,"\m/ @CadeFoehner \m/ Keep that feather, keep catching those dreams. #americanidol" +04/03/2018,Musicians,@katyperry,HONEY! 🍯 #americanidol +04/03/2018,Musicians,@katyperry,👂🏻@calebleemusic WE ARE LISTENING 👂🏻AND WE LIKE WHAT WE HEAR! #americanidol +04/03/2018,Musicians,@katyperry,"✨@MaraJustine1 There’s not just glitter on your nails 💅🏼 It’s in every pore, and it comes out every time you sing ✨ #americanidol" +04/03/2018,Musicians,@katyperry,".@JonnyBrenns If your family being here meant that much to ME, I can only imagine how it felt to you. Nearly cried… https://t.co/Jr1dJ22GCV" +04/03/2018,Musicians,@katyperry,You DO belong here! And anywhere you want! @AdaVox #thatruntho #americanidol https://t.co/GX8B2CspFg +04/03/2018,Musicians,@katyperry,"Out of the ashes, rises the phoenix @AdaVox #americanidol" +04/03/2018,Musicians,@katyperry,"Your attitude will take you everywhere, @vmcqueenmusic 💔 I can’t wait to see what you do. #americanidol" +04/03/2018,Musicians,@katyperry,"My wig is waiting to be blown off even harder and farther next year, @noahdavis50 🌬💁🏼 #americanidol" +04/03/2018,Musicians,@katyperry,WHAT IS WITH THESE COMMERCIAL BREAKS @ABCNetwork ⁉️YOU KEEP ME HANGING LIKE ALL MY EXES #americanidol +04/03/2018,Musicians,@katyperry,@jurnee ➕ Ashley 4EVA 😭 #americanidol +04/03/2018,Musicians,@katyperry,Good luck @WillCasanovaDC. You’ll always have a leg up on the competition 👠 #americanidol +04/03/2018,Musicians,@katyperry,Are you over me @lukebryanonline? This gif looks like you are #americanidol https://t.co/FCvkLI99Pg +04/03/2018,Musicians,@katyperry,THAT IS NOT RIGHT @ABCNetwork I CAN’T BELIEVE YOU CUT TO COMMERCIAL AND KEPT PEOPLE HANGING #americanidol +04/03/2018,Musicians,@katyperry,"It’s true, I can get a little bit feisty when I’m fighting for something I believe in. Sorry not sorry @lukebryanonline #americanidol" +04/03/2018,Musicians,@katyperry,"I swear to tell the truth, the whole truth, and nothing but the truth 👏🏼 so 👏🏼 help 👏🏼 me 👏🏼 God 👏🏼 #americanidol" +04/03/2018,Musicians,@katyperry,Your dad is my hero @hashtagcatie #americanidol +04/03/2018,Musicians,@katyperry,Tears are salt. Salt is healing. Crying is good for your health. @hashtagcatie #americanidol https://t.co/mJAiGR46dK +04/03/2018,Musicians,@katyperry,DON’T TOUCH MY SAUCE! 🍝 @alyssaraghu #americanidol +04/03/2018,Musicians,@katyperry,101% IS RIGHT☝🏼@michellesussett #americanidol +04/03/2018,Musicians,@katyperry,"You are enough, and I still believe in you, put one foot in front of the other ❤ #ThaddeusJohnson #americanidol" +04/03/2018,Musicians,@katyperry,PS your dad is a beautiful man and your family deserves all the happiness in the world @gabbybarrett_ #americanidol +04/03/2018,Musicians,@katyperry,I AM READY TO BE CONVINCED! ❤ @gabbybarrett_ #americanidol +04/03/2018,Musicians,@katyperry,😭 Rest In Peace and see you in my dreams @tholmesmusic #americanidol +04/03/2018,Musicians,@katyperry,Hi Sierra 👋🏼😘 @tholmesmusic #americanidol +04/03/2018,Musicians,@katyperry,💪🏼 @LukeBryanOnline @MichaelJWoodard https://t.co/ZtxXHyx4x1 +04/03/2018,Musicians,@katyperry,.@MichaelJWoodard @LukeBryanOnline #americanidol https://t.co/XIbgd9Y7us +04/03/2018,Musicians,@katyperry,"Whenever I feel any anxiety, I just breathe through my nose and out through my mouth 💆🏼‍♀🤗" +04/03/2018,Musicians,@katyperry,🐣 Spring has SPRUNG! @LaylaSpring 🐣 #americanidol +04/03/2018,Musicians,@katyperry,Can we re-name this American IdolS? Because this is getting tough to boil it down to one person 😐 #americanidol +04/02/2018,Musicians,@katyperry,WEST COAST! I'm live-Tweeting #americanidol with you tonight before I catch a plane to Taipei. It's the FINAL JUDGMENT! +04/01/2018,Musicians,@katyperry,Catch all the feels 😍😭😳with me LIVE tonight on Instagram at 8p PT when @AmericanIdol is back for Hollywood Week sol… https://t.co/LxcLBCnnwu +04/01/2018,Musicians,@katyperry,my brokenness + God’s Divinity = my wholeness 🕊 @ Hong Kong https://t.co/8wWKmOr0N0 +03/31/2018,Musicians,@katyperry,Every day is a new opportunity to show up 🕊 +03/30/2018,Musicians,@katyperry,There's something in the 🌊: new arrivals at https://t.co/F1qKGOllSl (and buy one get one 50% off with code BUNNYHOP… https://t.co/wigQosvsTU +03/29/2018,Musicians,@katyperry,Sometimes your wig flies when you least expect it on @AmericanIdol. Today's #WigWednesday goes to @MichaelJWoodard.… https://t.co/71xaMpJsrq +03/28/2018,Musicians,@katyperry,Looking forward to performing “Act My Age” 👶🏼👧🏼👩🏼👵🏼 @ntv_sukkiri for 🌸Japan🌸! It’s going to be my first time perfor… https://t.co/rNA5IgBuCt +03/27/2018,Musicians,@katyperry,"I know it's uncouth to dip out in the middle of the show, but I must prep for my Tokyo show now. Good luck to every… https://t.co/nq4twXPdwG" +03/27/2018,Musicians,@katyperry,"TBH I still sleep everywhere - planes, trains, automobiles, corners of rooms, it doesn’t stop once you pop 💁🏼 #americanidol" +03/27/2018,Musicians,@katyperry,❗️FIND YOUR TRIBE❗️#americanidol +03/27/2018,Musicians,@katyperry,You've already won @_davidfrancisco ❤️ #americanidol +03/27/2018,Musicians,@katyperry,"When the whole world falls in love with you, this love triangle is going to turn into a rhombicosidodecahedron. Get… https://t.co/CdVlViEHZY" +03/27/2018,Musicians,@katyperry,Omg @DennisLorenzo who knew you were a gymnast #americanidol +03/27/2018,Musicians,@katyperry,Shoutout to #jurnee's wife. Thank you for your service 🙏🏼 🇺🇸 #americanidol +03/27/2018,Musicians,@katyperry,We all believe in you and it's written in the stars so trust the universe @jonnybrenns #americanidol +03/27/2018,Musicians,@katyperry,Shout out @samsmithworld. Love you buddy 🎶 #americanidol +03/27/2018,Musicians,@katyperry,"From now on, I'm not gonna say ""break a leg"" for every performance that you do @CadeFoehner, but I am kinda glad th… https://t.co/XvDwJGt667" +03/27/2018,Musicians,@katyperry,You are a dream 💘 @MaddiePoppe #americanidol +03/27/2018,Musicians,@katyperry,"I 👁 you, and I ❤️ you @zachdonofrio. Every time I wear my socks, I'll think of you #americanidol" +03/27/2018,Musicians,@katyperry,Find someone who looks at you like @hashtagcatie looks @zachdonofrio 😍 #americanidol +03/27/2018,Musicians,@katyperry,"Every time @LionelRichie cries, a dove dies 😔 #americanidol" +03/27/2018,Musicians,@katyperry,SHAKE AND BAKE AND IIIIII HELPED #MiloSposato #americanidol +03/27/2018,Musicians,@katyperry,.@noahdavis50 #americanidol https://t.co/oE5wIvaW6A +03/27/2018,Musicians,@katyperry,Take us to church 🙏🏼 @TrevorMcBane #americanidol +03/27/2018,Musicians,@katyperry,You're MY hero @AlyssaRaghu 😭 #americanidol +03/27/2018,Musicians,@katyperry,You can be like a 🌴 and you can bend and sway and you will not break @laylaspring #americanidol +03/27/2018,Musicians,@katyperry,"HOLY CRAP I'M NERVOUS. We are separating the singers from the superstars now, aren't we @LukeBryanOnline… https://t.co/gtcdanTLfT" +03/27/2018,Musicians,@katyperry,You did not just kiss your bicep @tholmesmusic 🤦🏼‍♀️ #americanidol +03/27/2018,Musicians,@katyperry,"Luck is when opportunity meets preparation, truer words were never spoken @RyanSeacrest #americanidol" +03/27/2018,Musicians,@katyperry,Welcome back! #americanidol +03/27/2018,Musicians,@katyperry,"Is it a 🦅? Is it a ✈️? No, it’s @LukeBryanOnline, @lionelrichie, @ryanseacrest and my enormous heads in an attempt… https://t.co/zeRfsMn1G5" +03/26/2018,Musicians,@katyperry,👏🏼 YOU 👏🏼 DID 👏🏼 NOT 👏🏼 COME 👏🏼 HERE 👏🏼 TO 👏🏼 PLAY 👏🏼YOU 👏🏼 CAME 👏🏼 HERE 👏🏼 TO 👏🏼 SLAY 👏🏼 @adavox #americanidol +03/26/2018,Musicians,@katyperry,Social media is a blessing and a curse. Don't let bullies behind a keyboard tell you what you're worth. Thank you f… https://t.co/vqVstlbU2w +03/26/2018,Musicians,@katyperry,"We work hard AND we play hard, right @LukeBryanOnline @LionelRichie @RyanSeacrest? (Well, not you, @RyanSeacrest. Y… https://t.co/WNrH28IJb4" +03/26/2018,Musicians,@katyperry,"It looks like you have arrived on the right path now, and we are with you on this journey @jurnee #americanidol" +03/26/2018,Musicians,@katyperry,.@lukebryanonline is the 👑 of bad dad jokes 🙌🏼 #americanidol +03/26/2018,Musicians,@katyperry,"Glad you could watch the big win 🏈 🙌🏼Now FOCUS on helping us find a big star ⭐️ on #americanidol, @LukeBryanOnline" +03/26/2018,Musicians,@katyperry,People listen with their eyes more than they listen with their ears. Truer words were never spoken. @DamianoScarfi #americanidol +03/26/2018,Musicians,@katyperry,I still think you got that sparkle 😉 ✨ #Orion #americanidol +03/26/2018,Musicians,@katyperry,Welcome to the city #SamuelSwanson. Serving up a slice of velvet pie! #americanidol +03/26/2018,Musicians,@katyperry,"Be encouraged, Lovely Rose 🌹 This is only the beginning of a beautiful journey for you #AyanaRoseLawson #americanidol" +03/26/2018,Musicians,@katyperry,"There is a ☀️ in you, and it’s lovely to see it rise. Let’s all dream the dream together with you and momma @carlymoffa #americanidol" +03/26/2018,Musicians,@katyperry,A beautiful mess @carlymoffa #americanidol +03/26/2018,Musicians,@katyperry,"Your father has fought this far for you and now we will join him on the front lines. Love you #BrielleRathbun, you… https://t.co/8teI9T0ibn" +03/26/2018,Musicians,@katyperry,"THAT’S the signature thrust, @lukebryan?? 🤔 #americanidol" +03/26/2018,Musicians,@katyperry,"Beauty can be a combination of glowing soul and skin deep and if you’ve got both, then ✨ #americanidol" +03/26/2018,Musicians,@katyperry,I’m absolutely IN LOVE with everything that is @michaeljwoodard ❤ #americanidol +03/26/2018,Musicians,@katyperry,From one weirdo to another I 👁 U #Jarom #americanidol +03/26/2018,Musicians,@katyperry,"Well, ya “zoomed” through to Hollywood @leeleevasi but be sure to keep your hands on the wheel so you don’t crash and burn ❤ #americanidol" +03/26/2018,Musicians,@katyperry,The difference between nerves and excitement is preparedness. #americanidol +06/30/2018,Musicians,@carrieunderwood,"@ChristinaLPro Happy birthday!!! I’m sorry you’re stuck in bed, but I do hope that the time you’re spending there i… https://t.co/QL2QppJve7" +06/30/2018,Musicians,@carrieunderwood,This was about 30 seconds before I went on stage tonight...❤️❤️❤️ @HardRockHCAC https://t.co/J0naKvpvJd +06/30/2018,Musicians,@carrieunderwood,"Had soooo much fun tonight playing the @HardRockHCAC !!! Atlantic City, you were so good to us!! ❤️🔥❤️ https://t.co/TtcaS7n7DW" +06/28/2018,Musicians,@carrieunderwood,"#Repost ・・・ +CELEBRATE 20 YEARS WITH @carrieunderwood! + +#deniutemuster #allroadsleadtodeni20 #carrieunderwood https://t.co/OSXJ1P7fxe" +06/27/2018,Musicians,@carrieunderwood,Tomorrow is your last chance to vote #CryPretty as your #ChoiceCountrySong. RT’s count! Vote @CarrieUnderwood… https://t.co/uyvXLnnTQN +06/27/2018,Musicians,@carrieunderwood,ICYMI: Carrie and @Ludacris performed #TheChampion for the first time together on the @RadioDisney music awards.… https://t.co/iZXgoxFhsx +06/26/2018,Musicians,@carrieunderwood,@VGcom @reba @DollyParton Ooh! Ooh! I know! Pick me!!! 😃 +06/26/2018,Musicians,@carrieunderwood,@DollyParton @EnterMissThang Congratulations!!! You continue to be a trailblazer and inspiration to us all! ❤️❤️❤️ +06/26/2018,Musicians,@carrieunderwood,"Dear London, I ❤️ you infinitely, but why does your 🌞 come up at 4:45AM? #CantAGirlGetSomeSleep #JetLag… https://t.co/jbrAS3EwXZ" +06/25/2018,Musicians,@carrieunderwood,"RT @TheLongRoadFest: Please give a warm, country welcome to our incredible headliner @carrieunderwood! One of country music’s biggest globa…" +06/24/2018,Musicians,@carrieunderwood,"Such an amazing, full circle night at the #RDMA !!! Got to perform with the incredible @Ludacris at the venue I won… https://t.co/xdQzpF7UJ4" +06/23/2018,Musicians,@carrieunderwood,Tune in tonight! Carrie is honored with the Hero award + performs #TheChampion with @Ludacris for the first time on… https://t.co/NBSjxXDg1g +06/22/2018,Musicians,@carrieunderwood,#CryPretty has been nominated for #ChoiceCountrySong! RT to vote for @CarrieUnderwood #TeenChoice… https://t.co/RD1OtqqWmG +06/21/2018,Musicians,@carrieunderwood,Behind the scenes of #CryPretty! 😭 #MusicVideo https://t.co/sjB61oIXnx +06/19/2018,Musicians,@carrieunderwood,@crowdermusic 😂 +06/19/2018,Musicians,@carrieunderwood,"Ummm...this is amazing! @prattprattpratt + +Chris Pratt is Our Generation Award Recipient | 2018 MTV Movie & TV Awar… https://t.co/VLJXoxsXS2" +06/19/2018,Musicians,@carrieunderwood,Reminder to vote for @CarrieUnderwood as your #ChoiceCountryArtist! Voting ends tomorrow at 9am PT… https://t.co/bUBVUnxIoH +06/18/2018,Musicians,@carrieunderwood,Happy Father’s Day to this handsome fella! “You… https://t.co/iXbf9fvX3V +06/15/2018,Musicians,@carrieunderwood,See Carrie in Vegas at the @iHeartRadio Music Festival on September 22nd! Get tickets + details now:… https://t.co/PkayJejwW8 +06/15/2018,Musicians,@carrieunderwood,#FBF to the set of the #CryPretty music video!! 🕶 https://t.co/ryVbINeB0m https://t.co/2IlGDz0Sb9 +06/15/2018,Musicians,@carrieunderwood,Tickets to see Carrie perform on July 4th at the @Spotify Hot Country Live concert at @Pier17ny in New York are now… https://t.co/JoJfdM84GV +06/14/2018,Musicians,@carrieunderwood,@ZMyersOfficial Congrats to you and your sweet family!!! ❤️❤️❤️ +06/14/2018,Musicians,@carrieunderwood,.@CarrieUnderwood is nominated for #ChoiceCountryArtist. RT to vote now! – TeamCU https://t.co/NDo1wDRYNC +06/14/2018,Musicians,@carrieunderwood,"RT @BBCRadio2: ✨ A seven-time Grammy Award winner. ✨ 64 million records sold around the world. ✨ +We are delighted to announce that @carrieu…" +06/13/2018,Musicians,@carrieunderwood,Visit https://t.co/tWEtpnBn4t to pre-order exclusive album packages! -TeamCU https://t.co/uct8C6Gofs +06/13/2018,Musicians,@carrieunderwood,Connect with Carrie on Spotify for a chance to fly away to New York and see her at the @Spotify Hot Country Live co… https://t.co/KhTc9Wu8Ku +06/12/2018,Musicians,@carrieunderwood,Just announced! Carrie will perform at @Spotify’s first ever Hot Country Live show on July 4th in New York! Tickets… https://t.co/CIw7zcZDmW +06/11/2018,Musicians,@carrieunderwood,❤️ these leggings!! @CALIAbyCarrie https://t.co/YbsOfRy04m +06/10/2018,Musicians,@carrieunderwood,#ICYMI – Watch Carrie’s #CMTAwards performance of #CryPretty now! -TeamCU https://t.co/ksRSoMbCNH +06/09/2018,Musicians,@carrieunderwood,RT @UMGNashville: Get an exclusive @carrieunderwood poster when you pre-order her new album at the UMGN Booth at Fan Fair X this weekend! 💖… +06/09/2018,Musicians,@carrieunderwood,Nighttime at #CMAFest 😭#timelapse #downtown #CryPretty https://t.co/gD1L0v1Uuo +06/09/2018,Musicians,@carrieunderwood,Sounds just like the original...🤪 #CryPretty https://t.co/7I0McAhutB +06/09/2018,Musicians,@carrieunderwood,#CMAfest 🔥 📸: @JeffJohnsonFilm https://t.co/rHWoLDjH7d +06/09/2018,Musicians,@carrieunderwood,"Holy hotness, Nashville! That stadium was on 🔥 🔥🔥 tonight! Dunno how I’m gonna sleep tonight after that show! #CMAfest" +06/09/2018,Musicians,@carrieunderwood,@CarriePerryFan @UMGNashville @cameronpremo @Tennessean @SPrivara 💧💧💧❤️❤️❤️😘😘😘 +06/09/2018,Musicians,@carrieunderwood,@Amanda022186 @CountryMusic I’ll keep a glitter eye out for ya’! +06/09/2018,Musicians,@carrieunderwood,@JesseHdz88 Love it!!! +06/08/2018,Musicians,@carrieunderwood,#FBF – Thanks to all the #CareBears for an amazing Fan Club Party this week! ❤️all the #CryPretty tears & Carrie-Ok… https://t.co/EQSUd0MQdk +06/08/2018,Musicians,@carrieunderwood,Stop by the @UMGNashville booth (#200) at Fan Fair X by 5pm to get your own Cry Pretty tears (available all weekend… https://t.co/hitgATorrv +06/08/2018,Musicians,@carrieunderwood,Sound check for tonight’s set at the stadium! Sooo pumped to see this place rockin’ later! #CMAfest @CountryMusic 📸… https://t.co/wXcz06xUSU +06/08/2018,Musicians,@carrieunderwood,RT @radiodisney: BREAKING NEWS! @carrieunderwood will be honored with the Hero Award at the #RDMA! And she'll be performing #TheChampion wi… +06/07/2018,Musicians,@carrieunderwood,@OfficialBoBice @ny4carrie Awww...thanks so much Bo!!! Sending you and your family lots of love ❤️❤️❤️ +06/07/2018,Musicians,@carrieunderwood,"About last night...the #CMTAwards were so much fun! Thanks, again, @ludacris for lending some of your magic to this… https://t.co/h1tjGl1Zrp" +06/07/2018,Musicians,@carrieunderwood,"Yay!!!!! I won a #CMTAward!!! Thank you, fans, for voting your fingers off! 😘 And congrats to all the other winners… https://t.co/GCXDhLBGTp" +06/07/2018,Musicians,@carrieunderwood,Congratulations to Carrie! Winner of the 2018 @CMT award for Female Video of The Year! #CMTAwards #TheChampion -Tea… https://t.co/11eZ0s6FJw +06/07/2018,Musicians,@carrieunderwood,Disco queen!!! #CMTAwards… https://t.co/X5uU0nDLcl +06/06/2018,Musicians,@carrieunderwood,Tonight! Carrie is nominated and performs on the #CMTawards! Tune in at 8/7c! -TeamCU https://t.co/y3olLXPkZD +06/06/2018,Musicians,@carrieunderwood,So glad you love it!!!  We will send you more!  😘 https://t.co/o12rRuSRUM +06/06/2018,Musicians,@carrieunderwood,@KelseaBallerini 😳 +06/06/2018,Musicians,@carrieunderwood,Thanks to everyone who came out to the @opry tonight!!! You all (and this dress) made me feel like an Opry princess… https://t.co/QCCNLKcXeM +06/06/2018,Musicians,@carrieunderwood,Soooo grateful for my fans who come from near and far to be at the Fan Club party year after year!! You guys are th… https://t.co/ZZTnqxZScG +06/05/2018,Musicians,@carrieunderwood,Anyone see this on the bridge today? Isaiah… https://t.co/Vlly1ZnIbH +06/03/2018,Musicians,@carrieunderwood,Don’t forget! Today is the last day to vote for the 2018 #CMTMusicAwards! Vote as many times as you want all day.… https://t.co/KTLMarvSYB +06/02/2018,Musicians,@carrieunderwood,❤️❤️❤️ https://t.co/O7H9CjYIk3 +05/31/2018,Musicians,@carrieunderwood,@KarrisInHaiti This is amazing! 😂 +05/29/2018,Musicians,@carrieunderwood,Just announced! Carrie will perform at the 2018 #CMTMusicAwards – TeamCU https://t.co/aDKzuvG0QK +05/25/2018,Musicians,@carrieunderwood,@CareBear4CU @ny4carrie I’m sorry...I’ve failed us all...😔🤦‍♀️🤪 +05/24/2018,Musicians,@carrieunderwood,"😭 #CryPretty +Watch: https://t.co/ryVbINeB0m     +Stream or download: https://t.co/S8iq7b92Br -TeamCU https://t.co/0Yw3nNxOcM" +05/23/2018,Musicians,@carrieunderwood,🏈🏈 The 2019 #NFLDraft is headed to Music City! Can’t wait!!! @visitmusiccity @NFL #TheFutureIsComing +05/22/2018,Musicians,@carrieunderwood,"Congratulations, @MaddiePoppe ! What a fun finale! You all should be so proud! Can’t wait to catch you out on the r… https://t.co/VgbgMyGGGB" +05/20/2018,Musicians,@carrieunderwood,Dearest @calebleemusic @GabbyBarrett_ and @MaddiePoppe ...best of luck and lots of ❤️ for the finale tonight! Whate… https://t.co/FRyrXD6rHE +05/19/2018,Musicians,@carrieunderwood,@CUfan1021 @liveinvineyard I can’t believe you guys traveled so far!!! Thanks for coming! ❤️❤️❤️ +05/19/2018,Musicians,@carrieunderwood,Carrie has been nominated for 4 #CMTMusicAwards! Voting is unlimited! Vote now and vote often at… https://t.co/gUgOYphiYb +05/18/2018,Musicians,@carrieunderwood,Summer vibes! 👙 😎☀️ @CALIAbyCarrie https://t.co/7sxHveA8Ix +05/18/2018,Musicians,@carrieunderwood,"RT @OklahomaHoF: Welcome to the Oklahoma Hall of Fame, class of 2018! #OKHighestHonor + +- Paul Allen +- Mo Anderson +- Charlie Christian +- Ree…" +05/17/2018,Musicians,@carrieunderwood,"What a great night! Thanks for having me, @liveinvineyard !🍷 https://t.co/a1VdO2q3FT" +05/14/2018,Musicians,@carrieunderwood,ICYMI: Carrie performed #CryPretty last night on @AmericanIdol. Click to watch now. -TeamCU https://t.co/yeV4Cgc0Ct +05/14/2018,Musicians,@carrieunderwood,Hear the hits performed on tonight’s @AmericanIdol as well as much more on the “Carrie Underwood: American Idol Pla… https://t.co/iWOIBwDsI0 +05/14/2018,Musicians,@carrieunderwood,These idols are BRINGING IT tonight!!! @AmericanIdol +05/13/2018,Musicians,@carrieunderwood,Carrie returns to @AmericanIdol as tonight's guest mentor + performs her new hit single #CryPretty! Tune in at 8e|5… https://t.co/TmvghUBpsx +05/13/2018,Musicians,@carrieunderwood,"Hey, Mom, I hope you feel like this today! Happy Mother’s Day!!! Love you so much!!!!! https://t.co/PUgvOwUQu9" +05/13/2018,Musicians,@carrieunderwood,"My shirt for today...unfortunately, my kid can’t read, so I have,… https://t.co/lRl3NQaOgl" +05/13/2018,Musicians,@carrieunderwood,At @AmericanIdol rehearsals today!!! So good to be back! Feels like coming home! Don’t forget to tune in tomorrow..… https://t.co/f4q1wriqgC +05/12/2018,Musicians,@carrieunderwood,Tomorrow night! 🎤🎉🎶@AmericanIdol https://t.co/bXClfIVcA7 +05/12/2018,Musicians,@carrieunderwood,"What an incredible night celebrating 10 years of being in this amazing @opry family. Thank you, @randytravis for al… https://t.co/apmmslTK8q" +05/12/2018,Musicians,@carrieunderwood,I am so blessed to be a part of this family!!! Thanks to all who made tonight happen! https://t.co/RH2RJ9Pp59 +05/12/2018,Musicians,@carrieunderwood,@CUnews4Fans @opry Yay!!! +05/12/2018,Musicians,@carrieunderwood,10 year anniversary #OprySelfie @opry ❤️❤️❤️ https://t.co/sEmabbpQIZ +05/12/2018,Musicians,@carrieunderwood,Soooo excited to play at the @opry tonight! Can’t believe it’s my 10 year anniversary! This is truly the ❤️ and sou… https://t.co/3wBGFwxbka +05/12/2018,Musicians,@carrieunderwood,"@DeannaRilling @goldenpipeslv @GoldenKnights Hey man, was just offering up my services as someone who loves me some… https://t.co/T82wQjZ54M" +05/11/2018,Musicians,@carrieunderwood,ICYMI: Carrie will be performing at the @HardRockHCAC on June 29th. Tickets + details: https://t.co/V2dlwEhlGq -Tea… https://t.co/h3urXXtQHN +05/11/2018,Musicians,@carrieunderwood,"@NashCntryDaily @reba I was looking for a gif about the elephant gun, but this’ll do... https://t.co/Hoq1qADUkY" +05/11/2018,Musicians,@carrieunderwood,"Oh my goodness, I NEED this in my life! Loved the original! Such a classic! This looks soooooo good! https://t.co/tUVaeIgN4Y" +05/11/2018,Musicians,@carrieunderwood,"And one last thing...if the @GoldenKnights need an anthem singer, I’m 2-0 in the playoffs...just saying...🤷‍♀️ + +Goo… https://t.co/1RvyVurD10" +05/11/2018,Musicians,@carrieunderwood,"PS, this @PredsNHL crowd was amazing tonight from beginning to end!!! So amazing and loud...like, REAL loud...you know what I mean. 😜" +05/11/2018,Musicians,@carrieunderwood,"And I’ll also say, until next season, I am officially a @GoldenKnights fan! I’ll enjoy seeing them make a little history!!" +05/11/2018,Musicians,@carrieunderwood,"Welp, to me & our 3 year-old, @mikefisher1212 is the greatest hockey player alive & the @PredsNHL are now & forever… https://t.co/NTzxyL1tYW" +05/08/2018,Musicians,@carrieunderwood,Congrats to Carrie on 4 @CMT Music Awards nominations!! Vote as often as you can here: https://t.co/2xYEzu3Znh… https://t.co/niVOhd7FGX +05/07/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Sometimes staying the path is spinning while your laundry is. https://t.co/XOIET4GJuO +05/07/2018,Musicians,@carrieunderwood,Carrie to return to @AmericanIdol May 13th as superstar guest mentor and to perform #CryPretty! Details:… https://t.co/RPcCuSAx2V +05/07/2018,Musicians,@carrieunderwood,"Congrats on the album, guys! You put on a great show tonight! Lots of love ❤️ from the Nashvegas crew! https://t.co/1rTirLDI5G" +05/07/2018,Musicians,@carrieunderwood,Watch the official #CryPretty music video now! -TeamCU https://t.co/ryVbINeB0m +05/06/2018,Musicians,@carrieunderwood,Watch @AmericanIdol tonight to get a worldwide exclusive look at my new music video for #CryPretty !! Live show sta… https://t.co/u3kvI6wUju +05/05/2018,Musicians,@carrieunderwood,Dear all @PredsNHL fans coming to the game tonight: accept the fact that you will not have a voice tomorrow. Bring… https://t.co/OCO9bdeOxu +05/05/2018,Musicians,@carrieunderwood,Watch @AmericanIdol on @ABCNetwork Sunday night at 8e/5p for a sneak peek of my new music video for #CryPretty ! https://t.co/dZorKrAvDk +05/05/2018,Musicians,@carrieunderwood,"An amazing group of women joined me, my mom, and @CALIAbyCarrie for an afternoon of fashion, fitness, and fun! Such… https://t.co/A3SD6Q7e9l" +05/05/2018,Musicians,@carrieunderwood,"Had a great time in NYC! If I can, when I’m there, I love to see talented people doing amazing things! So, naturall… https://t.co/At8CAV9TWp" +05/04/2018,Musicians,@carrieunderwood,Coming soon… #CryPretty https://t.co/Rc0ZotYYlC +05/01/2018,Musicians,@carrieunderwood,"As a child, I wanted nothing more than to make my parents proud of me...and… https://t.co/MehykVylsM" +04/30/2018,Musicians,@carrieunderwood,Glorious... +04/30/2018,Musicians,@carrieunderwood,@MattEaton1 @PredsNHL Right?! Mama needs to go night night...😜😴 I turn into a pumpkin at 9! +04/27/2018,Musicians,@carrieunderwood,Can’t wait!! June 5 @Opry 🎉🎉🎉 https://t.co/Iry9Qq0A3m +04/26/2018,Musicians,@carrieunderwood,New #CryPretty merch has been added to the Official Carrie Underwood Store. Shop now: https://t.co/iJDfjxchPe -Team… https://t.co/OEwWD80Y1F +04/25/2018,Musicians,@carrieunderwood,This @CALIAbyCarrie reversible tank top is one of my favorites! #StayThePath 🏋️‍♀️💪 https://t.co/m7HxvDccnB +04/24/2018,Musicians,@carrieunderwood,Want to see Carrie perform at this year’s @liveinvineyard festival? Enter now for your chance to win a flyaway trip… https://t.co/rqmJkvHIuT +04/24/2018,Musicians,@carrieunderwood,"Sometimes, you’re swinging on a tree swing in Oklahoma and you look up and think, “Wow, that’s beautiful.” ❤️😊 https://t.co/ON9juNTqA4" +04/23/2018,Musicians,@carrieunderwood,😁👍👊 https://t.co/LalHUqpPpb +04/21/2018,Musicians,@carrieunderwood,"Today, we celebrated my parents’ 50th anniversary...We listened to stories of how they met and… https://t.co/9RBcixThpZ" +04/21/2018,Musicians,@carrieunderwood,Ready to cheer on the boys tonight! Especially that #12! I hear he’s alright!😘 @mikefisher1212 @predsnhl… https://t.co/VGnWwsIWip +04/20/2018,Musicians,@carrieunderwood,✨Trying out new @CALIAbyCarrie #StayThePath✨ https://t.co/MvsNjjkJSg +04/20/2018,Musicians,@carrieunderwood,Looking forward to #CMAFest this year! #itstartswithME #musiceducation #CMAFoundation https://t.co/gaj6SII7J6 +04/18/2018,Musicians,@carrieunderwood,"RT @iHeartCountry: We just added @carrieunderwood's single ""Cry Pretty"" to our New Country Weekly Playlist! Listen here: https://t.co/VkGjJ…" +04/18/2018,Musicians,@carrieunderwood,#CryPretty the album…coming September 14!! 😭 💗 🎶 https://t.co/M1QVdbuquE https://t.co/UzoxBTc9Af +04/17/2018,Musicians,@carrieunderwood,It’s such an honor to be a part of the @Opry family! Can’t wait to celebrate 10 years! ❤️ https://t.co/IzVxuF8PLR +04/16/2018,Musicians,@carrieunderwood,ICYMI! Watch Carrie’s performance of #CryPretty from the #ACMawards below! -TeamCU https://t.co/T9I3ko2xFu +04/16/2018,Musicians,@carrieunderwood,"RT @ACMawards: And the winner for Vocal Event of the Year goes to... @KeithUrban and @CarrieUnderwood for “The Fighter"" #ACMawards https://…" +04/15/2018,Musicians,@carrieunderwood,Tune in tonight to watch the world television premiere of #CryPretty! @ACMawards -TeamCU https://t.co/bBXt6mS1ok +04/15/2018,Musicians,@carrieunderwood,My boys...(and Uncle @budfisher 😜) I wonder if he’ll remember seeing his daddy play...I sure… https://t.co/Sa87yJCdvH +04/15/2018,Musicians,@carrieunderwood,Had a great rehearsal for the @acmawards ! Can’t wait until tomorrow night! #CryPretty #ACMAwards https://t.co/hGLjmCdubn +04/14/2018,Musicians,@carrieunderwood,Amazing! @BradPaisley !!! Way to kick us off!!! Go Preds!!! +04/14/2018,Musicians,@carrieunderwood,"RT @pandoramusic: .@carrieunderwood returns with ""Cry Pretty"" -- as in, you can't. You can ""pretty lie"" and ""pretty smile,"" ""pretty much fa…" +04/14/2018,Musicians,@carrieunderwood,Getting ready for the weekend…#CryPretty #ACMawards @CALIAbyCarrie https://t.co/R2BX6QAvAK +04/14/2018,Musicians,@carrieunderwood,YES @Spotify #NewMusicFriday! ☺️😭🎉🎶#CryPretty #TimesSquare https://t.co/Zd4dD0kj59 https://t.co/vlN5iqpuH6 +04/12/2018,Musicians,@carrieunderwood,Check out Carrie Underwood’s Cry Pretty Playlist -TeamCU https://t.co/x7uASDtJdc https://t.co/RO0shCydIA +04/12/2018,Musicians,@carrieunderwood,@LoriMcKennaMA Tiny part...ha ha! You’re too humble! 😘 Thank you (and Liz and Hillary) for allowing me to be in the room with greatness! +04/11/2018,Musicians,@carrieunderwood,"@mrBobbyBones Thanks! Why isn’t there a hug emoji? 👻 This dude’s got his arms out, so he’ll do! You get it..." +04/11/2018,Musicians,@carrieunderwood,Lyric video for #CryPretty is available here: https://t.co/VuzoJ0Yphk -TeamCU https://t.co/5hHKYSQTvs +04/11/2018,Musicians,@carrieunderwood,It’s here! #CryPretty I hope you love it as much as I do!!! https://t.co/S8iq7b92Br https://t.co/YEgPodfYba +04/11/2018,Musicians,@carrieunderwood,So excited to perform #CryPretty at the @ACMawards this weekend!! https://t.co/k65hGmZzuV +04/11/2018,Musicians,@carrieunderwood,I can’t wait for you to hear my new single tomorrow! #CryPretty #iHeartCountry #WorldPremiere https://t.co/ZrAh0o4ssR +04/10/2018,Musicians,@carrieunderwood,Good morning! Just a couple of updates to share with you…😉 https://t.co/gfbFNEkP40 https://t.co/YuGXY4JkRK +04/09/2018,Musicians,@carrieunderwood,"This Wednesday, April 11. 6am ET. https://t.co/7n4eDMcfdd" +04/07/2018,Musicians,@carrieunderwood,"Whatever, girl, I voted for you! 😘 + +But seriously, I do wish more publications would just celebrate women’s succes… https://t.co/AYJNcPrEKq" +04/06/2018,Musicians,@carrieunderwood,Missed these guys. #bandrehearsals https://t.co/cB2hlxgCQM +04/06/2018,Musicians,@carrieunderwood,"Wow! Way to go, boys! So proud of you! https://t.co/nGmdXs51eq" +04/06/2018,Musicians,@carrieunderwood,"Yay! Congrats, guys!!! ❤️👊 https://t.co/sHCbrbgXTj" +04/05/2018,Musicians,@carrieunderwood,So proud of my sisters...Making a difference for the best reason...KIDS! Here’s hoping OK schools get the funding t… https://t.co/reyuTn21I8 +04/04/2018,Musicians,@carrieunderwood,https://t.co/2QDk7Dxqp6 +04/04/2018,Musicians,@carrieunderwood,"@mikefisher1212 I love you, baby! 😘" +04/04/2018,Musicians,@carrieunderwood,RT @RealKiefer: Dear @nhl I love you and I always will but @PredsNHL were robbed tonight. +04/04/2018,Musicians,@carrieunderwood,Yup... https://t.co/C68ItXkhtv +04/04/2018,Musicians,@carrieunderwood,"I am seriously livid. @NHL , fix this." +04/04/2018,Musicians,@carrieunderwood,"RT @TomAWillis: You decide on this one: + +#Preds | #NSHvsFLA https://t.co/h2JRuCWFM6" +04/04/2018,Musicians,@carrieunderwood,Biggest pile of 💩 ever! Preds we’re straight up robbed. https://t.co/sdr8kkMa1A +04/04/2018,Musicians,@carrieunderwood,"RT @budfisher: That was a good game that the @NHL ruined. + +Ghost goaltender interference. + +Can anyone explain this rule to me?" +04/04/2018,Musicians,@carrieunderwood,Goaltender interference? Are you out of your mind? On what planet? #WorstCallEver @PredsNHL #NSHvsFLA +04/02/2018,Musicians,@carrieunderwood,I put my kid down for “night nights” an hour and a half ago...why is he still rolling around in his bed singing son… https://t.co/kGoqMGIcUL +03/30/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Sometimes it’s spinning while your laundry is. Sometimes it’s turning work breaks into sweat breaks. How do you work it… +03/30/2018,Musicians,@carrieunderwood,"Can we all just agree that @Logancouture has the coolest name in the @NHL ??? That said, go @PredsNHL !!! This game… https://t.co/f4x7uupYac" +03/27/2018,Musicians,@carrieunderwood,@PS22Chorus @Ludacris Amazing!!!! Thank you!! ❤️🎶 +03/27/2018,Musicians,@carrieunderwood,Each and every one of you is most definitely a champion! So much love for the @PS22Chorus ❤️ This made my day!!!… https://t.co/tddiLfNhgm +03/26/2018,Musicians,@carrieunderwood,"Happy Birthday, Steven! ❤️🎂🎉 #sexyat70 #HappyBdayStevenTyler https://t.co/DxYCD7q5B0" +03/23/2018,Musicians,@carrieunderwood,#TheChampion https://t.co/2A0FyD8k9s @richchiassaro @SpecialOlympics @bethanyhamilton @ShalaneFlanagan… https://t.co/Tg8y5yWoZz +03/22/2018,Musicians,@carrieunderwood,Finally getting to catch up on this week’s @AmericanIdol !!! Love to see some more ❤️ for Checotah with @kenritt !… https://t.co/Gceoj6AAnn +03/17/2018,Musicians,@carrieunderwood,"Here we go again...congrats, boys! https://t.co/i9VhP9WrrM" +03/15/2018,Musicians,@carrieunderwood,This makes me cry every single time. Thank you for welcoming me into the family 10 years ago. ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/2rMk7G8ij1 +03/12/2018,Musicians,@carrieunderwood,This will definitely be my go-to bag for spring! #convertiblebag #backpack #tote #StayThePath 💐 https://t.co/PnIF2G33yG +03/11/2018,Musicians,@carrieunderwood,"Thanks so much, everyone, for the sweet birthday wishes! Can’t wait to share with you all the things I’ve been work… https://t.co/f17La1cD1j" +03/10/2018,Musicians,@carrieunderwood,"Happy Birthday, Carrie! +Take 15% off storewide today only using code CUBDAY15. +Plus free gift with orders over $35… https://t.co/xB6vy3dnhB" +03/09/2018,Musicians,@carrieunderwood,.@Spotify added an exclusive vertical version of #TheChampion to the #HotCountry playlist! Click here to watch 👀… https://t.co/hdSe0SCTVf +03/08/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Happy International Women’s Day to all the strong women out there! You continue to inspire us every day. 💕 https://t.co/… +03/07/2018,Musicians,@carrieunderwood,RT @PredsNHL: Franchise record win # NINE in a row for your #Preds. New guy Ryan Hartman with the GWG and Pekka with the shoutout. What a n… +03/07/2018,Musicians,@carrieunderwood,"@PredsNHL @ElectronicXpres I have lots of headphones at the house, but I would love it if you played A: “The Champion” 😜😆🤪" +03/04/2018,Musicians,@carrieunderwood,@KarrisInHaiti I knew you had to be bad at SOMETHING! 😜 +03/03/2018,Musicians,@carrieunderwood,@PredsNHL Hawt...I’d marry him! +03/02/2018,Musicians,@carrieunderwood,"Check out the brand new official music video for #TheChampion here! https://t.co/2A0FyD8k9s -TeamCU + +More info:… https://t.co/AwPjMccoa6" +03/02/2018,Musicians,@carrieunderwood,RT @TODAYshow: .@CarrieUnderwood debuts powerful new video for #TheChampion — watch it here https://t.co/Ops7WTfVly https://t.co/j538zOIXKc +03/02/2018,Musicians,@carrieunderwood,RT @TODAYshow: Coming up: A first look at @carrieunderwood’s official music video for #TheChampion! https://t.co/u03iy2vGCC +03/02/2018,Musicians,@carrieunderwood,Tune in! First look of #TheChampion’s official music video tomorrow morning on the @TODAYshow! -TeamCU https://t.co/rsGLrQdLNy +03/02/2018,Musicians,@carrieunderwood,Congratulations Carrie on your @ACMawards nominations - Female Vocalist of the Year and Vocal Event of the Year! -T… https://t.co/i77dVPHL6R +02/28/2018,Musicians,@carrieunderwood,How is my sweet baby 3 years old? Thank you all for the sweet birthday wishes for the little man! He knows he is loved! ❤️❤️❤️ +02/26/2018,Musicians,@carrieunderwood,Boo-Hooing at an episode of @TheWalkingDead like it’s an episode of This is Us... +02/25/2018,Musicians,@carrieunderwood,Forever a fan (and friend) of these guys! @TheSwonBrothers always love to hear new music from ya’! https://t.co/nCOhbidoF9 +02/25/2018,Musicians,@carrieunderwood,"RT @NBCOlympics: The #WinterOlympics have been filled with moments and memories that will last a lifetime. + +🎵: The Champion, @CarrieUnderwo…" +02/25/2018,Musicians,@carrieunderwood,Too cute to eat (but we did anyway)! @iveycakestore did it again!!! Isaiah loved his Mickey Mouse Clubhouse cake! T… https://t.co/xpDLGOEYTF +02/21/2018,Musicians,@carrieunderwood,"Amazing...Rest in the arms of the Lord. Surely right now He is saying “Well done, my son.” https://t.co/I6i62JQlvD" +02/18/2018,Musicians,@carrieunderwood,These. Are. Amazing! ❤️🐟 @mikefisher1212 @predsnhl https://t.co/K0MkDfasPc +02/17/2018,Musicians,@carrieunderwood,"Congrats, Annie! #TheChampion https://t.co/hyDRDw1uUk" +02/17/2018,Musicians,@carrieunderwood,"RT @NBCOlympics: Some of the best moments of the #WinterOlympics. + +And we've got more great moments coming your way! + +🎶: The Champion, @Ca…" +02/16/2018,Musicians,@carrieunderwood,So inspiring! Love seeing this little warrior go! #TheChampion https://t.co/jCzJ3673iW +02/15/2018,Musicians,@carrieunderwood,"Congrats, Amy and the Shamrocks! #FierceGirls #TheChampion https://t.co/8bHySjZqDy" +02/14/2018,Musicians,@carrieunderwood,What a comeback! @PredsNHL +02/14/2018,Musicians,@carrieunderwood,"Yes! #TheChampion as a hype song! Thanks, Gabby! https://t.co/FmGkXkyeOl" +02/13/2018,Musicians,@carrieunderwood,"RT @billboard: Fans upload videos using Carrie Underwood's triumphant ""The Champion"" as a soundtrack to overcoming struggle https://t.co/1I…" +02/13/2018,Musicians,@carrieunderwood,"Wow, so great to see how you start your day – thank you!! #okieschoolsrock #TheChampion https://t.co/ASjS9FgfTA" +02/11/2018,Musicians,@carrieunderwood,"Love seeing all the Champion-inspired posts! Keep them coming! Love this, Marqos! #TheChampion https://t.co/3hHYbVrhla" +02/11/2018,Musicians,@carrieunderwood,He is a TRUE champion! #Inspired #TheChampion https://t.co/GIwrKcJfMk +02/10/2018,Musicians,@carrieunderwood,"My boys make work outs fun (and a bit less productive, but that’s ok)! #StayThePath @CALIAbyCarrie 📸: @ErinOprea https://t.co/8oRPxAM9n6" +02/10/2018,Musicians,@carrieunderwood,"Congrats, Nicole! #StayThePath #TheChampion https://t.co/tH2rIAdECI" +02/09/2018,Musicians,@carrieunderwood,You guys inspire ME! #WallOfChampions #wilburinspired #TheChampion https://t.co/EME9aOFNc9 +02/08/2018,Musicians,@carrieunderwood,"RT @AppleMusic: From the #SuperBowl to the #WinterOlympics, #TheChampion is the ultimate anthem. Find out the inspiration from @carrieunder…" +02/05/2018,Musicians,@carrieunderwood,"Congrats, @Eagles and Eagles fans! That was a great game from the anthem to the halftime show to the confetti! So m… https://t.co/iMyGpuQdFo" +02/04/2018,Musicians,@carrieunderwood,"RT @SNFonNBC: .@carrieunderwood kicks us off on the biggest Sunday Night of them all. + +Watch the #SuperBowl now on NBC or stream: https://…" +02/04/2018,Musicians,@carrieunderwood,RT @SNFonNBC: Two teams enter #SBLII but only one can be #TheChampion https://t.co/ceaMgFZieI +02/03/2018,Musicians,@carrieunderwood,Are you ready for Super Bowl LII? #TheChampion will kick it all off tomorrow at 6pm ET/3pm PT! #SBLII… https://t.co/64uaIrN42w +02/03/2018,Musicians,@carrieunderwood,"RT @SNFonNBC: Champions will be crowned this month on NBC at #SBLII & the #WinterOlympics + + 🎵: @carrieunderwood #TheChampion https://t.co/P…" +02/02/2018,Musicians,@carrieunderwood,I’m so honored that you guys took the time to do this!! ❤️ #MyChampions #TheChampion https://t.co/cRMKAN1rZ2 +02/02/2018,Musicians,@carrieunderwood,Carrie has taken over @Spotify’s #Workout playlist. Listen here! https://t.co/pR8vSV2lDK -TeamCU #TheChampion https://t.co/IhrclYIMSc +02/01/2018,Musicians,@carrieunderwood,"#TheChampion, as featured on NBC’s Super Bowl LII and XXIII Winter Olympic Games, is available now! Download or add… https://t.co/JLV3TC2G25" +02/01/2018,Musicians,@carrieunderwood,You guys are amazing - this made my day! #TheChampion #ReadersAreLeaders https://t.co/o4YcREeC6n +07/02/2018,Musicians,@KeithUrban,Looking forward to the Canada tour Lindz!!!! - KU https://t.co/EnITnzzIzW +07/02/2018,Musicians,@KeithUrban,"Happy #CanadaDay! 🇨🇦 Thanks for having us this weekend, Toronto! #GraffitiUWorldTour https://t.co/BTSLGn4SWf" +07/01/2018,Musicians,@KeithUrban,TORONTO 6.29 & 6.30 • #GraffitiUWorldTour • Happy #CanadaDay https://t.co/YIgWcW2Anl +07/01/2018,Musicians,@KeithUrban,"It’s gonna be a HUGE night tonight Toronto!!!!!! - KU +#GraffitiUWorldTour https://t.co/x98As9A9fG" +06/30/2018,Musicians,@KeithUrban,Mornin Toronto.... wakin up on bus backstage .... gonna be a kickass nite 2nite!!!! - KU https://t.co/bSNI1Hd9Z0 +06/29/2018,Musicians,@KeithUrban,Yo @DanAndShay.... It’s a great song!!!!!!! - KU https://t.co/mMtwuRvR4D +06/28/2018,Musicians,@KeithUrban,#TBT to the #GraffitiU Release Party with @iHeartRadio! ✨ Relive the party and performances:… https://t.co/igcUflPPwc +06/28/2018,Musicians,@KeithUrban,"Saratoga Springs, NY • 6.27.18 • #GraffitiUWorldTour https://t.co/W21qFg4gQd" +06/27/2018,Musicians,@KeithUrban,🚨 Please be aware of IMPOSTERS pretending to be artists on social media. Know how to spot the signs of fake account… https://t.co/vtrQSiY9JL +06/27/2018,Musicians,@KeithUrban,"RT @FallonTonight: Turn up that volume...@KeithUrban is performing ""Coming Home""! #FallonTonight https://t.co/C14EOGq1Fh" +06/26/2018,Musicians,@KeithUrban,"See u tonight on @jimmyfallon! - KU +#FallonTonight https://t.co/cXrjdxYA1O" +06/26/2018,Musicians,@KeithUrban,Get ready! 🎤 Keith is performing on @FallonTonight TONIGHT! 📺 https://t.co/FgjtR5g6iJ +06/26/2018,Musicians,@KeithUrban,"RT @FallonTonight: Tonight on the show: @SHAQ, @jennadewan, and music from @KeithUrban! #FallonTonight https://t.co/jsU5iWN3ar" +06/26/2018,Musicians,@KeithUrban,"RT @jimmyfallon: Tonight on the show: @SHAQ is here and @jennadewan stops by! Plus, a performance from @KeithUrban! #FallonTonight" +06/25/2018,Musicians,@KeithUrban,12 years of celestial synergized soul dancing. Happy anniversary Babygirl!!! I love you SO much. - KU https://t.co/sBwz7fvslO +06/25/2018,Musicians,@KeithUrban,Looking for the perfect way to commemorate seeing the #GraffitiUWorldTour?! 🎤 Now you can customize a 3D Souvenir T… https://t.co/hkLbtrJ7CR +06/24/2018,Musicians,@KeithUrban,"THANK YOU for having us this weekend, Detroit and Pittsburgh!!! ✨ +#GraffitiUWorldTour weekend 2 in the books! https://t.co/ISpcXgCB2k" +06/24/2018,Musicians,@KeithUrban,"Pittsburgh, PA • 6.23.18 • #GraffitiUWorldTour https://t.co/fxfFINeshg" +06/24/2018,Musicians,@KeithUrban,"We’re ready for a great night, Pittsburgh!!! #GraffitiUWorldTour https://t.co/DVvXKmJNIK" +06/23/2018,Musicians,@KeithUrban,"See you tonight, Pittsburgh!!! #GraffitiUWorldTour https://t.co/eC2f7ppEyE" +06/23/2018,Musicians,@KeithUrban,"Clarkston, MI • 6.22.18 • #GraffitiUWorldTour https://t.co/M8zp2oJ1iA" +06/22/2018,Musicians,@KeithUrban,"We're SO ready for another weekend of the #GraffitiUWorldTour!!! 🙌 +See you soon, Clarkston and Pittsburgh! https://t.co/P8kJ0PRXVD" +06/21/2018,Musicians,@KeithUrban,RT @opry: @KeithUrban There's only one Music City! ❤️🎶 #ComingHome https://t.co/7mbCzoOaqH +06/20/2018,Musicians,@KeithUrban,RT @xokatic: @KeithUrban Nothing like the Missouri hills. 😉💛 https://t.co/Y4Odpfm2Si +06/20/2018,Musicians,@KeithUrban,"RT @_DefyinGravity_: @KeithUrban Love my home state, Ky! Bluegrass music, UK basketball, horses, and fried chicken! Love the bluegrass stat…" +06/20/2018,Musicians,@KeithUrban,RT @countrymuzikfn: @KeithUrban There’s nothing like #ComingHome to Wisconsin. https://t.co/EvVnKQKicv +06/20/2018,Musicians,@KeithUrban,RT @nclement372: @KeithUrban What's not to love!!!!❤🏡#ComingHome #Canada https://t.co/MCHdRluxDW +06/20/2018,Musicians,@KeithUrban,RT @Whobugs: @KeithUrban I love that it shows how beautiful #Utah is in the summertime. If you look closely it shows how much we love summe… +06/20/2018,Musicians,@KeithUrban,"""There's nothing in the world that feels like coming home."" ✨ +Find the #ComingHome postcard for your home and shar… https://t.co/RrjIVPtDMM" +06/19/2018,Musicians,@KeithUrban,"Congrats to @leannrimes and @StevieNicks on BORROWED!!!!!! - KU +https://t.co/nsNb7ngeVu" +06/19/2018,Musicians,@KeithUrban,Keith and @JuliaMichaels are taking you behind the scenes of their music video for #ComingHome! 🎬 https://t.co/o8Y5hieidI +06/18/2018,Musicians,@KeithUrban,"THANK YOU for a killer opening weekend, St. Louis and Indy!!! 💥 #GraffitiUWorldTour https://t.co/KpyI22wJgK" +06/17/2018,Musicians,@KeithUrban,RT @LarkinPoe: The head-bang crew 💀💀💀 Round two with @KeithUrban tonight in Noblesville! #GraffitiU #larkinpoe https://t.co/d5AgVTtqhr +06/17/2018,Musicians,@KeithUrban,"Indianapolis, IN • 6.16.18 • #GraffitiUWorldTour • @larkinpoe https://t.co/7FFsvuEGIF" +06/16/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour officially kicked off last night! 🎤 We'll see you tonight, Indianapolis! 🙌 @ruoffmusicenter https://t.co/uwup11Urag" +06/16/2018,Musicians,@KeithUrban,"ST. LOUIS, MO • 6.15.18 • #GraffitiUWorldTour OPENING NIGHT https://t.co/JDZpj64kBq" +06/16/2018,Musicians,@KeithUrban,"RT @LarkinPoe: Tonight is the kick-off show of @KeithUrban’s #GraffitiU Tour! +St. Louis, we’re stoked to be here!@HollywoodAmpSTL #keithurb…" +06/15/2018,Musicians,@KeithUrban,"We had a crazy final day of rehearsals, but we're ready to ROCK the opening night of the #GraffitiUWorldTour in St.… https://t.co/URVVSfQVNR" +06/15/2018,Musicians,@KeithUrban,TOMORROW • #GraffitiUWorldTour https://t.co/HkMaAjelmP +06/14/2018,Musicians,@KeithUrban,"The setlist is finalized, the trucks are loaded, and we are ready to hit the road! 🙌 See you tomorrow, St. Louis! 🎸… https://t.co/a58GArClkl" +06/14/2018,Musicians,@KeithUrban,RT @people: Keith Urban Preps for Graffiti U Tour: All the Behind-the-Scenes Photos https://t.co/2DXLLlJY9E +06/14/2018,Musicians,@KeithUrban,#GraffitiUWorldTour • FRIDAY!!! https://t.co/yqN8pMqLt3 +06/14/2018,Musicians,@KeithUrban,We’re gettin’ ready to roll! 🙌 #GraffitiUWorldTour https://t.co/bZZD9i7QVw +06/13/2018,Musicians,@KeithUrban,A quick update from Keith from the #GraffitiUWorldTour rehearsals! 🎸🎤 https://t.co/AMHQxEiGAy +06/13/2018,Musicians,@KeithUrban,Celebrate the 4th of July with Keith! 🎆 Don't miss his #MacysFireworks performance this year on @NBC. https://t.co/bP5YLzxlsw +06/13/2018,Musicians,@KeithUrban,Keith and @JuliaMichaels are taking you behind the scenes of the #ComingHome music video! 🎬 WATCH:… https://t.co/Yggac3xpPd +06/13/2018,Musicians,@KeithUrban,"The bass(es) are loaded and we’re #ComingHome! 🎸😉 +#GraffitiUWorldTour https://t.co/bPbxfsTWYD" +06/12/2018,Musicians,@KeithUrban,RT @LarkinPoe: We’re excited to announce that @KeithUrban has asked us to join him as featured performers on his #GraffitiU World Tour this… +06/12/2018,Musicians,@KeithUrban,RT @KelseaBallerini: finishing #CMAFest and starting the #GraffitiUWorldTour!! My heart is happy. so ready for this @KeithUrban!! Who’s com… +06/12/2018,Musicians,@KeithUrban,RT @TasteOfCountry: The new video from @KeithUrban is so cool! Get a look behind the scenes with him and @JuliaMichaels. https://t.co/pUHq… +06/12/2018,Musicians,@KeithUrban,RT @SoundsLikeNash: Is @KeithUrban's #GraffitiU Tour coming to a city near you? https://t.co/BpDoXiEEpL +06/12/2018,Musicians,@KeithUrban,The band has some fun surprises in store for the #GraffitiUWorldTour! 🎸🎹🥁 Check it out: https://t.co/GpMhis8fhj https://t.co/0TdLwKXDbO +06/11/2018,Musicians,@KeithUrban,"“...like context in a modern debate, I just took it out.” - Sage commentary @Truman_Black - love the new song!! - KU" +06/11/2018,Musicians,@KeithUrban,RT @TasteOfCountry: Heck YES! @KeithUrban's tour kicks off this week and we are puuuumped! https://t.co/e668lnqbt4 +06/11/2018,Musicians,@KeithUrban,"We’re ready to rock, St. Louis! 🙌 +#GraffitiUWorldTour https://t.co/rx57tk3T0h" +06/10/2018,Musicians,@KeithUrban,Last day to find the #GraffitiU murals around #CMAfest! We can’t wait to see your pictures! https://t.co/RrSbnVRFg1 +06/10/2018,Musicians,@KeithUrban,#CMAfest • 6.9.18 • @CountryMusic https://t.co/dsc9awr4Aj +06/10/2018,Musicians,@KeithUrban,"RT @visitmusiccity: Sing it w/us! + +🎶 ""All That Wasted Ti-i-i-ime!"" 🎶 + +@KeithUrban #CMAfest https://t.co/okl7fEDij8" +06/10/2018,Musicians,@KeithUrban,RT @NissanStadium: No better way to end the night! #CMAfest https://t.co/RXET2k0dUr +06/09/2018,Musicians,@KeithUrban,"Less than a week to go! 🎹🙌 +#GraffitiUWorldTour https://t.co/XB2YFozNEl" +06/09/2018,Musicians,@KeithUrban,#CMAfest TONIGHT!!! https://t.co/D9MdecDsDl +06/08/2018,Musicians,@KeithUrban,One week from now we’ll be rockin’ the first night of the #GraffitiUWorldTour in St. Louis! 🎸🙌🎶 https://t.co/q2HSzyVC2r +06/08/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour kicks off ONE WEEK from today! 🎤 +Don't miss Keith and @KelseaBallerini out on the road thi… https://t.co/3w7Z7kPcrZ" +06/08/2018,Musicians,@KeithUrban,"“There’s a place that I know +where they all know me...” +#GraffitiUWorldTour +#ComingHome https://t.co/PmJEeD8e4b" +06/07/2018,Musicians,@KeithUrban,In Nashville for #CMAfest? ☀ Find the #GraffitiU murals around town and post a picture using #GraffitiU and… https://t.co/OXhKfmveNE +06/07/2018,Musicians,@KeithUrban,"We're headed into #CMAFest like... 🤟🎤 +#ComingHome @juliamichaels https://t.co/Cn8ldXzyLn" +06/07/2018,Musicians,@KeithUrban,The band is ready to get this show ON THE ROAD! 🎸 @Raderator #GraffitiUWorldTour https://t.co/khctn5st8P +06/06/2018,Musicians,@KeithUrban,"The first stop on the #GraffitiUWorldTour is just 9 DAYS away! 🙌 +Celebrate by tweeting us your favorite concert mem… https://t.co/RL7AXKxaGL" +06/06/2018,Musicians,@KeithUrban,RT @EW: Here's a behind-the-scenes look at @KeithUrban's 'Graffiti U' tour https://t.co/O559SHhdgZ +06/05/2018,Musicians,@KeithUrban,"🔟🎸🔟✨🔟🎤🔟🔥🔟🎶🔟 +#GraffitiUWorldTour https://t.co/5ouTz3oAh4" +06/04/2018,Musicians,@KeithUrban,"RT @RecordingAcad: GRAMMY winner @KeithUrban has released a brand-new video for his upbeat collaboration with @JuliaMichaels, ""Coming Home.…" +06/03/2018,Musicians,@KeithUrban,"Keith is taking you inside his studio to see how ""Coming Home"" was written and recorded! 🎶 @juliamichaels +FULL VIDE… https://t.co/u5roz1qgzI" +06/01/2018,Musicians,@KeithUrban,"2 WEEKS! 🎤 2 WEEKS! 🎤 2 WEEKS! +#GraffitiUWorldTour https://t.co/RXAfltYcG1" +06/01/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour is just 2 WEEKS AWAY! 🙌 Which song are you most excited to hear LIVE?! 🎤 +TICKETS:… https://t.co/6dXFil9FRL" +06/01/2018,Musicians,@KeithUrban,RT @ClaireHKU_Fan: HAPPY JUNE ☀️!!! THAT MEANS ONLY 15 DAYS UNTIL @KeithUrban EMBARKS ON HIS #GraffitiUWorldTour 💃🤩💥!!! BRING IT ON 🤘!!! +06/01/2018,Musicians,@KeithUrban,I got your back @NileRodgers ALWAYS! CONGRATS and love!!!! - KU https://t.co/567eqcdr5E +06/01/2018,Musicians,@KeithUrban,Congrats @BrandonRayMusic!!!! - KU https://t.co/O1khjLgXRd +05/31/2018,Musicians,@KeithUrban,Spotted at #GraffitiUWorldTour rehearsals... 🙌🎤 https://t.co/ND1Z5cIA1v +05/31/2018,Musicians,@KeithUrban,RT @Vevo: You know you're going to have a good night when you walk into a bar and @KeithUrban & @juliamichaels are performing. Watch their… +05/31/2018,Musicians,@KeithUrban,"RT @flickeringjulia: OMG THE COMING HOME MV IS OUT IM FLIPPING OUT + +@juliamichaels @KeithUrban https://t.co/eH6IrNYchs" +05/31/2018,Musicians,@KeithUrban,@flickerlives @juliamichaels Thanks for letting us know! We’re on it! - Team KU +05/31/2018,Musicians,@KeithUrban,@lucy_arden @juliamichaels Thanks for letting us know! We’re on it! - Team KU +05/31/2018,Musicians,@KeithUrban,Check out the brand new music video for #ComingHome featuring @juliamichaels! 🎤 https://t.co/VtIZoI17Rc +05/30/2018,Musicians,@KeithUrban,We want to know which songs YOU want to hear on the #GraffitiUWorldTour! 🎤 SURVEY: https://t.co/lIDwF3leMl https://t.co/mAtLCgWdyj +05/30/2018,Musicians,@KeithUrban,"LAST DAY to enter! 🚨 Join Keith's fan club for the chance to win a pair of 4-day passes to #CMAfestl! 🎟 +Enter HERE:… https://t.co/KloSM5YKg1" +05/30/2018,Musicians,@KeithUrban,#ComingHome • TOMORROW https://t.co/waqkasp2JP +05/29/2018,Musicians,@KeithUrban,"Have you heard Keith's version of @LittleBigTown's hit #BetterMan? 🎶 +https://t.co/Ub9xxFnuoW" +05/29/2018,Musicians,@KeithUrban,#ComingHome • 5.31.18 https://t.co/tviL9WLJwg +05/27/2018,Musicians,@KeithUrban,"Forest City, IA • 5.26.18 • @TreeTownFest https://t.co/bo7Y7zfLg7" +05/27/2018,Musicians,@KeithUrban,Deep into training for the #GraffitiUWorldTour!!!!! - KU https://t.co/U76GlBC2UR +05/25/2018,Musicians,@KeithUrban,We're coming for you @TreeTownFest! 🤘 Can’t wait to see you all there TOMORROW! 🎤 TICKETS: https://t.co/EXboQ3snqR 🎟 https://t.co/vAdvZjw1yF +05/25/2018,Musicians,@KeithUrban,Go inside Keith's studio and see how his current single #ComingHome was written and recorded! 🎶 https://t.co/2Y5cp3gIsv +05/24/2018,Musicians,@KeithUrban,#CMAfest is only 2 WEEKS AWAY! 🎉 Join Keith's fan club for the chance to win a pair of 4-day passes to the festival… https://t.co/5vZyqRg32D +05/24/2018,Musicians,@KeithUrban,"#TBT to this epic version of #TheFighter from the #CMTawards! +VOTE for it to win CMT Performance of the Year:… https://t.co/FE8ciwiNfQ" +05/23/2018,Musicians,@KeithUrban,"How awesome for all of us here in Nashville that the 2019 @NFL draft is coming to our town!!!!!!! - KU 🏈 +#NFLDraft… https://t.co/292KMHZrWB" +05/21/2018,Musicians,@KeithUrban,"Keith is #ComingHome to play @BrdgstoneArena in August, and you could win a trip to Nashville to see the show! ✈ EN… https://t.co/rg1ypbhH2F" +05/16/2018,Musicians,@KeithUrban,Keith chatted with @TheKellySutton about the songs of #GraffitiU! Check out their @TuneIn Conversation:… https://t.co/qMYdHRlgTc +05/16/2018,Musicians,@KeithUrban,"We'll see you on September 9th, #CCMAawards! 🎤 Tickets on sale now! 🎟 @CCMAofficial @CBCMusic 🇨🇦 https://t.co/0iLbum15JJ" +05/15/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour kicks off ONE MONTH from today! +TICKETS: https://t.co/ISgkDPKADz 🎤 +MERCH:… https://t.co/3GEJFy9QCd" +05/14/2018,Musicians,@KeithUrban,How about a little #ParallelLine from #GraffitiU on this #MusicMonday? 🎶 https://t.co/LOK4idqf5R +05/13/2018,Musicians,@KeithUrban,Happy #MothersDay! Use code MOTHERSDAY today to get 13% off of new #GraffitiUWorldTour merchandise and the rest of… https://t.co/WesjGWocOa +05/13/2018,Musicians,@KeithUrban,HAPPY MOTHER'S DAY MOM- and for Moms everywhere!!!!!!! - KU https://t.co/juHfwiwZ4H +05/11/2018,Musicians,@KeithUrban,We've got our shades on dancing with our hands up high! 🙌 Crank up #DropTop featuring @KassiAshton to get that… https://t.co/7ROycsLWNr +05/10/2018,Musicians,@KeithUrban,.@JESSICAMAUBOY - YOU ROCK GIRL!!!!!!!! - KU +05/10/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour is just around the corner! 🎶 Which songs would make it on to your dream set list?! +https://t.co/ZLh5twIUdu" +05/10/2018,Musicians,@KeithUrban,"RT @amazonmusic: ""He's the real deal."" @KeithUrban closes out his week guest hosting #SOTD w/ a track from @ericchurch! #JustAsk, ""Alexa, p…" +05/10/2018,Musicians,@KeithUrban,"RT @AppleMusic: When two of your faves collab. 🙌 +@KeithUrban talks working with @juliamichaels on #ComingHome. +Listen now to #GraffitiU: ht…" +05/09/2018,Musicians,@KeithUrban,A friendly reminder from Team KU: Beware of Keith Urban imposters on social media! 🚨 Tips on how to spot and report… https://t.co/ITvZtlkaGa +05/09/2018,Musicians,@KeithUrban,"☀ ""You gotta watch out for the shine blockers!"" ☀ +#WednesdayWisdom #MyWave +https://t.co/Ra3oLCU7av" +05/09/2018,Musicians,@KeithUrban,"RT @EMIMusicAU: Head down to Brekky Central this Friday, before 7am, for your chance to meet @KeithUrban. He'll be meeting fans on the red…" +05/08/2018,Musicians,@KeithUrban,Keith has two performances nominated for CMT Performance of the Year at the #CMTawards! 🏆 https://t.co/CONZdZmbUC https://t.co/UDFJhmTCqt +05/07/2018,Musicians,@KeithUrban,RT @cleanbandit: ty @KeithUrban for picking i miss you as @amazonmusic’s song of the day! #AskAlexa to play the song of the day to hear it… +05/07/2018,Musicians,@KeithUrban,"RT @amazonmusic: ""She is one of the great, great songwriters. Period."" @KeithUrban with the love for @taylorswift13! #JustAsk, ""Alexa, play…" +05/06/2018,Musicians,@KeithUrban,Back on #TexasTime 🎤 #iHeartCountry https://t.co/VpsdhTtGnG +05/06/2018,Musicians,@KeithUrban,"RT @bobbybonesshow: Don’t miss @KeithUrban performance coming up & he’s got a surprise collab you DON’T want to miss!!! + +watch live: https…" +05/06/2018,Musicians,@KeithUrban,"RT @iHeartRadio: TONIGHT! @LukeBryan, @KeithUrban and more take the stage at the #iHeartCountry Festival by @ATT! Watch now. +https://t.co/…" +05/05/2018,Musicians,@KeithUrban,We'll see you on the Plaza in August! 😎 @TODAYShow #KeithTODAY https://t.co/ntCD9dqBVr +05/05/2018,Musicians,@KeithUrban,"RT @Jason_Aldean: Thank you @KeithUrban for picking “You Make It Easy” as @amazonmusic’s Song of the Day! To check it out, just #AskAlexa “…" +05/05/2018,Musicians,@KeithUrban,The #iHeartCountry Festival starts TONIGHT! 🙌 Head over to @ATT at 8/7c to stream Keith performing new songs from… https://t.co/Y0JZ5fA85V +05/05/2018,Musicians,@KeithUrban,RT @TODAYshow: Here it is! The lineup for the Citi Concert Series! https://t.co/j6w3OH7OOQ +05/05/2018,Musicians,@KeithUrban,Can you feel it?! 🎶 Watch Keith perform #NeverCominDown from #GraffitiU on @LateNightSeth! https://t.co/Y5sv46KPtd +05/04/2018,Musicians,@KeithUrban,"#ComingHome is @AmazonMusic’s Song of the Day! 🎶 To check it out, just #AskAlexa “Play the Song of the Day.” #SOTD https://t.co/bsGAh3W3aw" +05/04/2018,Musicians,@KeithUrban,RT @LateNightSeth: Don’t miss @KeithUrban chatting with @SethMeyers and performing #NeverCominDown on #LNSM tonight! https://t.co/qOlM1UprOe +05/03/2018,Musicians,@KeithUrban,TONIGHT! • @LateNightSeth https://t.co/HYIHZngZHT +05/03/2018,Musicians,@KeithUrban,"RT @LateNightSeth: TONIGHT! Seth welcomes @KeithUrban and @iamstephbeatz! Plus, #ACloserLook! https://t.co/M1jsHAQFWd" +05/03/2018,Musicians,@KeithUrban,Hear Keith talk about the making of #ComingHome and working with @JuliaMichaels at his @iHeartRadio Album Release P… https://t.co/IOIwYYCPSL +05/03/2018,Musicians,@KeithUrban,".@DwightYoakam and @BrothersOsborne joined Keith on stage at @Stagecoach for a rockin' version of #FastAsYou! +https://t.co/dk3Sr4jChP" +05/03/2018,Musicians,@KeithUrban,Catch Keith performing songs from #GraffitiU on @LateNightSeth TONIGHT! 🎤 https://t.co/fmyNhnTDNC +05/02/2018,Musicians,@KeithUrban,RT @pandoramusic: Go to #GraffitiU with @KeithUrban as he works with a graffiti artist Troy Duff to bring his sound to life. Then listen to… +05/02/2018,Musicians,@KeithUrban,"RT @Spotify: Studio playdates with @KeithUrban sound like the best way to spend an afternoon 🙌 + +Watch the full episode on #HotCountry ⭐️ h…" +05/01/2018,Musicians,@KeithUrban,#ComingHome feat. @JuliaMichaels is on the #TheAListCountry Playlist on @AppleMusic! 🎶 Check it out:… https://t.co/JvY8AXDCfA +05/01/2018,Musicians,@KeithUrban,"RT @iHeartRadio: The iHeartRadio Artist Of The Week Is: @KeithUrban. Friday, the four-time Grammy winner dropped his 9th studio album, #Gra…" +05/01/2018,Musicians,@KeithUrban,Watch Keith perform songs from #GraffitiU on @JimmyKimmelLive TONIGHT at 11:35/10:35c! 🎤 https://t.co/ooXyx6YLDu +04/30/2018,Musicians,@KeithUrban,HUGE thx to @brothersosborne and @DwightYoakam for gracing our stage with your mythical mojo!!!!!! - KU 🎤… https://t.co/c38fHbumdC +04/29/2018,Musicians,@KeithUrban,#Stagecoach • 4.28.18 https://t.co/5KQ2rKgu80 +04/28/2018,Musicians,@KeithUrban,🙌 @STAGECOACH - IT IS GOIN DOWN TONIGHT!!!!!!!! - KU https://t.co/9gXD55uN9Q +04/28/2018,Musicians,@KeithUrban,Hey @barclayscenter... SO lookin forward to Oct 27 - it’s gonna be  OFF THE HOOK!!!!!!! - KU https://t.co/1PnPfJEYvF +04/27/2018,Musicians,@KeithUrban,LOS ANGELES • TONIGHT • FREE • 18+ https://t.co/wKFuUUWdfU +04/27/2018,Musicians,@KeithUrban,"RT @Spotify: ""You get a jeep! And you get a jeep! Everybody gets a jeep!"" Watch the full @KeithUrban episode on #HotCountry ⭐️ https://t.co…" +04/27/2018,Musicians,@KeithUrban,RT @Bose: Check out ‘Drop Top’ featuring @KassiAshton on @KeithUrban’s new album #GraffitiU. #QC35 II https://t.co/PHbMg1Kn2U https://t.co/… +04/27/2018,Musicians,@KeithUrban,"RT @AppleMusic: Eat. Sleep. Listen to @KeithUrban's new album. Repeat. #GraffitiU +https://t.co/wPpNQLRGQD" +04/27/2018,Musicians,@KeithUrban,RT @KassiAshton: ME ALL DAY HELLLOOOO #DROPTOP #GRAFFITIU @KeithUrban https://t.co/Z2BwWENDQA +04/27/2018,Musicians,@KeithUrban,Huge thanks to @Spotify for featuring #Horses from #GraffitiU on the #NewMusicFriday playlist! 🎶 Check it out:… https://t.co/8mS5qZxqJH +04/27/2018,Musicians,@KeithUrban,"RT @amazonmusic: NEW from @KeithUrban, get a hold of #GraffitiU! https://t.co/F8hGUWisvC #CountryHeat https://t.co/eM37JbmOau" +04/27/2018,Musicians,@KeithUrban,"RT @SIRIUSXM: Hear a special @KeithUrban performance this morning at 9am ET on @SXMTheHighway (Ch. 56)! +Click to listen now online and on t…" +04/27/2018,Musicians,@KeithUrban,#GraffitiU is finally here! 🎶 LISTEN: https://t.co/MCfsAhiCUv https://t.co/CqCW1G0jDJ +04/27/2018,Musicians,@KeithUrban,RT @TIDAL: 'Graffiti U' makes @KeithUrban's 9th studio album! Listen now on TIDAL: https://t.co/7XY2RP1HDd https://t.co/chzpcK2OUd +04/27/2018,Musicians,@KeithUrban,RT @lindsayell: When you are so excited for the new @keithurban album to come out.... you show up at #Walmart early.....#GraffitiU is now o… +04/26/2018,Musicians,@KeithUrban,"RT @RIAA: For 20 years, @KeithUrban has made #Platinum album after #Platinum album! Be sure to check out his latest, #GraffitiU, out TMRW #…" +04/26/2018,Musicians,@KeithUrban,#GraffitiU is available everywhere TOMORROW! 🙌 Which song are you most excited to hear? https://t.co/Ti285jep2H +04/26/2018,Musicians,@KeithUrban,LOS ANGELES • #GraffitiU https://t.co/szPyutHgLI +04/26/2018,Musicians,@KeithUrban,"Thank you, @iHeartRadio! #GraffitiU https://t.co/vUhwJ40WDU" +04/26/2018,Musicians,@KeithUrban,Watch LIVE as Keith celebrates the release of #GraffitiU with @iHeartRadio! 🎤 https://t.co/Y9Q8p2fZWk +04/26/2018,Musicians,@KeithUrban,#GraffitiU 🎤 https://t.co/Cx5030KTvl +04/25/2018,Musicians,@KeithUrban,"RT @iHeartRadio: Tonight we're celebrating @KeithUrban 's Album Release Party at 7PM PT / 10PM ET live from the @iHeartTheaterLA! + +Watch it…" +04/25/2018,Musicians,@KeithUrban,Let’s be lost and young. • #Horses feat. @LindsayEll • #GraffitiU out FRIDAY https://t.co/55cTKRilbG +04/24/2018,Musicians,@KeithUrban,Keith's new album #GraffitiU will be available everywhere FRIDAY! 🎤 https://t.co/MCfsAhiCUv https://t.co/6VbOnY3JAz +04/24/2018,Musicians,@KeithUrban,#ParallelLine • #SpotifyFansFirst • #GraffitiU https://t.co/9MEAsq6Su3 +04/24/2018,Musicians,@KeithUrban,"RT @TheEllenShow: I love @KeithUrban, and if you love him too, tell me why you should be here Thursday to see him perform live! keithurbano…" +04/23/2018,Musicians,@KeithUrban,RT @UMGNashville: Want a behind the scenes look at the making of @KeithUrban’s new album? Pre-order #GraffitiU in exclusive packages to get… +04/23/2018,Musicians,@KeithUrban,"RT @opry: #OpryMember @KeithUrban's new album #GraffitiU is out FRIDAY ... It's gonna be a good week! 🙌🙌 + +Pre-order the album 💿 here: https…" +04/23/2018,Musicians,@KeithUrban,"RT @NHL: The @PredsNHL are moving on to the Second Round and according to @KeithUrban, the city of Nashville is ready. #StanleyCup https://…" +04/22/2018,Musicians,@KeithUrban,Join Keith's email list and be the first to know about all things #GraffitiU and the #GraffitiUWorldTour! 📧 JOIN:… https://t.co/6PDNSMBrzU +04/22/2018,Musicians,@KeithUrban,"WE LOVE YOU PREDS! GOOD LUCK IN COLORADO!!!!! - KU +#StandWithUs @PredsNHL https://t.co/MqBBwDDM8F" +04/21/2018,Musicians,@KeithUrban,RT @iHeartRadio: We have your chance to celebrate @KeithUrban's #GraffitiU Album Release Party with us in the @iHeartTheaterLA on April 25!… +04/20/2018,Musicians,@KeithUrban,"Want to win a trip to Nashville to see the #GraffitiUWorldTour? 🎤 Stream, watch, and listen to earn your points for… https://t.co/WohZZZ6IMa" +04/19/2018,Musicians,@KeithUrban,Rock out to #ComingHome featuring @JuliaMichaels on @DigsterPlaylist's #CountryHits playlist on @AppleMusic! 🎶… https://t.co/9pcqLl4i6e +04/18/2018,Musicians,@KeithUrban,"""Yeah I know it's only one call away, but it's not the same..."" 🎶 #ComingHome @JuliaMichaels ✨… https://t.co/hjGqM2YggI" +04/17/2018,Musicians,@KeithUrban,We're celebrating the release of #GraffitiU with an @iHeartCountry Album Release Party at the @iHeartTheaterLA on A… https://t.co/cElRjunQYF +04/17/2018,Musicians,@KeithUrban,"RT @iHeartRadio: 🚨 @KeithUrban will be celebrating the release of his new album, #GraffitiU, with an @iHeartCountry Album Release Party at…" +04/16/2018,Musicians,@KeithUrban,"RT @ACMawards: And the winner for Vocal Event of the Year goes to... @KeithUrban and @CarrieUnderwood for “The Fighter"" #ACMawards https://…" +04/16/2018,Musicians,@KeithUrban,#ACMawards • #ComingHome • @JuliaMichaels https://t.co/RqbFZ6ngnf +04/15/2018,Musicians,@KeithUrban,Don't miss Keith and @JuliaMichaels performing #ComingHome at the #ACMawards TONIGHT at 8/7c on @CBS! https://t.co/f371NAN00d +04/14/2018,Musicians,@KeithUrban,Wishing @LorettaLynn a very happy birthday today! 🎂 #HappyBirthdayLoretta https://t.co/rUevvpUJ7H +04/14/2018,Musicians,@KeithUrban,At the iconic @CapitolRecords building in LA today and saw this in the hallway. Miss you Glen! - KU https://t.co/h5kE6swBfH +04/13/2018,Musicians,@KeithUrban,"The release of Keith's new album #GraffitiU is just 2 weeks away! 🎶 +Pre-order it in exclusive packages:… https://t.co/2hSg6H6id1" +04/11/2018,Musicians,@KeithUrban,JUST ANNOUNCED: @JuliaMichaels is joining Keith to sing #ComingHome at Sunday's @ACMawards! 🎤 https://t.co/R64dFypx9v +04/11/2018,Musicians,@KeithUrban,"RT @danceon: Serious question, are you thinking about the summer right now like we are? 😋#CountryMusic #YouCanDanceToCountry #StageCoach…" +04/09/2018,Musicians,@KeithUrban,RT @UMGNashville: .@KeithUrban's #GraffitiU is now available for pre-order. Get in on the action here: https://t.co/5OMer8PM86 https://t.co… +04/08/2018,Musicians,@KeithUrban,Hey Lindsay- can't wait for everyone to hear HORSES!!! And hey- we get to tour some too!!!!!! - KU https://t.co/UDGYWwiWiZ +04/08/2018,Musicians,@KeithUrban,"Ft. Lauderdale, FL • 4.7.18 • @FestivalTortuga https://t.co/wuzUaAfyBd" +04/06/2018,Musicians,@KeithUrban,The honor's all mine KA. You are THE REAL DEAL!!! - KU https://t.co/LGCMIkndmU +04/06/2018,Musicians,@KeithUrban,Pre-order #GraffitiU in exclusive packages and gain a first look at behind-the-scenes content in the Graffiti U Dig… https://t.co/a47AbxzIBV +04/06/2018,Musicians,@KeithUrban,PA & OH: The #GraffitiUWorldTour is coming to a city near you! 🎤 Tickets on sale TODAY: https://t.co/0hf0KmVUmq 🎟 https://t.co/TeYiQrdQ7V +04/06/2018,Musicians,@KeithUrban,TRACK LIST • GRAFFITI U • 4.27.18 https://t.co/wFRdeRvuJe +04/05/2018,Musicians,@KeithUrban,JUST ANNOUNCED: Keith's new album #GraffitiU will be available everywhere 4.27.18! 🎶 https://t.co/erYT9rRS8g +04/04/2018,Musicians,@KeithUrban,"Keith is playing the @GrandOleRager in Augusta, GA during #TheMasters TOMORROW, April 5th with Russell Dickerson &… https://t.co/neDD60QGZh" +04/04/2018,Musicians,@KeithUrban,"Likewise Russell....... on both!!!! - KU +@GrandOleRager https://t.co/1Cr8KTrRM5" +03/31/2018,Musicians,@KeithUrban,"Have you heard Keith's new single #ComingHome featuring @JuliaMichaels!? +🎶 https://t.co/yCieKtRDmj https://t.co/nteHHrigqw" +03/26/2018,Musicians,@KeithUrban,Last chance to get official merchandise from Keith's #ripCORDWorldTour! 🎸 On sale while supplies last:… https://t.co/wLNWMarbbm +03/25/2018,Musicians,@KeithUrban,"RT @AppleMusic: All the feels on #ComingHome from @KeithUrban x @imjmichaels. +Give it a listen. +https://t.co/EB1oganDYM" +03/24/2018,Musicians,@KeithUrban,"RT @TIDAL: #NowPlaying @KeithUrban's new song ""Coming Home"" on TIDAL: https://t.co/DsuJlPwqKQ https://t.co/lXLQfIrye0" +03/23/2018,Musicians,@KeithUrban,Check out #ComingHome on @AmazonMusic's #BrandNewMusic playlist! 🎧 https://t.co/Qk4DcjEEgv https://t.co/jRJulf9sLe +03/23/2018,Musicians,@KeithUrban,RT @festivaltortuga: Are you ready to Rock The Ocean?! By joining your favorite artists on the beach at #TortugaFest you're helping raise m… +03/23/2018,Musicians,@KeithUrban,"Keith is bringing the #GraffitiUWorldTour to a city near you! 🎤 +Tickets on sale TODAY: https://t.co/0hf0KmVUmq https://t.co/4PSMsuG5KI" +03/22/2018,Musicians,@KeithUrban,"Missed @SXSW? Check out Keith's conversation with @ScottLGoldman from The @GRAMMYMuseum! +https://t.co/lSlUF4jrDh" +03/22/2018,Musicians,@KeithUrban,"RT @Spotify: Nothin' feels like coming home, right @keithurban? Hear his new jam with @imjmichaels right here 👉 https://t.co/694KdTKcn4 htt…" +03/22/2018,Musicians,@KeithUrban,Keith is performing at @CountryMusic’s #CMAfest in support of the #CMAFoundation and music education in June! ☀… https://t.co/9ifOOl5CXx +03/21/2018,Musicians,@KeithUrban,"RT @etnow: Listen to @KeithUrban's collaboration with @imjmichaels, 'Coming Home'! https://t.co/0HrGRLDn92 https://t.co/uq0gsJ1uxd" +06/30/2018,Musicians,@PaulMcCartney,"Paul during the recording of #EgyptStation at @AbbeyRoad, 2017 https://t.co/tgAfcxOAg8" +06/28/2018,Musicians,@PaulMcCartney,"Paul @AbbeyRoad during the recording of #EgyptStation, 2017 https://t.co/9Yi4VUV2Ph" +06/26/2018,Musicians,@PaulMcCartney,Paul during the recording of #EgyptStation at @AbbeyRoad 2017 https://t.co/MxlegiEwm3 +06/26/2018,Musicians,@PaulMcCartney,"RT @CapitolRecords: 🗣 All aboard, #Hollywood! + +Next stop: #EgyptStation. The journey begins September 7th 🎶 @PaulMcCartney https://t.co/De…" +06/25/2018,Musicians,@PaulMcCartney,'I Don't Know' taken from Paul's forthcoming album #EgyptStation. In stores 7th September. Listen / Download / Pre-… https://t.co/SpCH0JMtfx +06/25/2018,Musicians,@PaulMcCartney,"Paul during the recording of #EgyptStation @AbbeyRoad, November 2017 https://t.co/RWEtRQu5qf" +06/24/2018,Musicians,@PaulMcCartney,"""I saw you flash a smile"". Listen to Paul's new single 'Come On To Me' on @Spotify: https://t.co/J5CV5nJIsG https://t.co/cMVN6tNjqu" +06/23/2018,Musicians,@PaulMcCartney,"""I've got so many lessons to learn"". Listen to Paul's new single 'I Don't Know' on @Spotify:… https://t.co/3dDAriR7JW" +06/23/2018,Musicians,@PaulMcCartney,RT @YouTube: You need this. https://t.co/q3ny7VgDa4 https://t.co/NhCtqbwgkp +06/22/2018,Musicians,@PaulMcCartney,RT @diymagazine: .@PaulMcCartney talks new album 'Egypt Station' and working with @RyanTedder and @GregKurstin in an exclusive DIY intervie… +06/22/2018,Musicians,@PaulMcCartney,"RT @JKCorden: Ok, so here it is. Quite possibly the best #CarpoolKaraoke we’ve done so far. I hope you like it. I’ll never ever forget it.…" +06/21/2018,Musicians,@PaulMcCartney,'Come On To Me' taken from Paul's forthcoming album #EgyptStation. In stores 7th September. Listen / Download / Pre… https://t.co/DWXeNc7vyH +06/21/2018,Musicians,@PaulMcCartney,RT @BBC6Breakfast: LISTEN BACK to @matteveritt's extended chat with @PaulMcCartney - https://t.co/IYpUWUSDO8 https://t.co/BR9VYPpnxs +06/20/2018,Musicians,@PaulMcCartney,New album 'Egypt Station' arriving 7th September featuring singles ‘I Don’t Know’ and ‘Come On To Me'. Pre-order HE… https://t.co/ynIJUAFY94 +06/20/2018,Musicians,@PaulMcCartney,"RT @RadioX: TONIGHT. On the Evening Show. +@gordonsmart in conversation with the incredible @PaulMcCartney. +They talk new double A-side sing…" +06/20/2018,Musicians,@PaulMcCartney,"RT @BBC6Music: Woo! @PaulMcCartney speaks to @MattEveritt on the @BBC6Breakfast show, this Thursday from 8.30am. Not that anyone's getting…" +06/20/2018,Musicians,@PaulMcCartney,🎧 https://t.co/fD9898XWkE +06/19/2018,Musicians,@PaulMcCartney,Paul to release all-new double A-side single ‘I Don't Know’/‘Come On To Me’. Full details HERE!… https://t.co/qTHh9SsT8Q +06/18/2018,Musicians,@PaulMcCartney,#PaulMcCartney #EgyptStation https://t.co/40o6Mo81lB +06/18/2018,Musicians,@PaulMcCartney,https://t.co/351RbE9Agh +06/17/2018,Musicians,@PaulMcCartney,https://t.co/znKZ84KRH8 +06/17/2018,Musicians,@PaulMcCartney,https://t.co/ptpbhvghNt +06/16/2018,Musicians,@PaulMcCartney,https://t.co/3znWdt9yrF +06/15/2018,Musicians,@PaulMcCartney,https://t.co/XpyHOvKQtj +06/14/2018,Musicians,@PaulMcCartney,https://t.co/CwYXidsMnA +06/13/2018,Musicians,@PaulMcCartney,https://t.co/iLeL2UU45j +06/13/2018,Musicians,@PaulMcCartney,"RT @latelateshow: It’s happening! + +#CarpoolKaraoke with @PaulMcCartney premieres next week during our four nights in London! https://t.co/m…" +06/12/2018,Musicians,@PaulMcCartney,https://t.co/mZlAscFFq1 +06/11/2018,Musicians,@PaulMcCartney,https://t.co/hMdNSl36kw +06/10/2018,Musicians,@PaulMcCartney,https://t.co/TZ8VeKEv8f +06/08/2018,Musicians,@PaulMcCartney,I think it would be really nice to see this pregnant cow given a reprieve. She’s done nothing wrong. Join us if you… https://t.co/OaxF7qjCV3 +06/05/2018,Musicians,@PaulMcCartney,🌼#OTD in 1989 'Flowers in the Dirt' was released...🌼 What's your favourite track from the album? https://t.co/F46GGezPmE +06/03/2018,Musicians,@PaulMcCartney,"""It wasn’t like we were following a trend; we were in the trend..."" Paul talks about how @TheBeatles kept up with s… https://t.co/UyiipxrOjC" +06/02/2018,Musicians,@PaulMcCartney,#ICYMI Read the https://t.co/eEFPgd3GIu May newsletter HERE: https://t.co/n1OxusIoHw https://t.co/VuqOjM3DNM +05/31/2018,Musicians,@PaulMcCartney,Paul in Jamaica. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/bIDk50ctKk +05/30/2018,Musicians,@PaulMcCartney,"RT @ESA_History: Speaking of anniversaries, we see that congratulations are in order to Sir @PaulMcCartney, whose spacey titled #Wings albu…" +05/27/2018,Musicians,@PaulMcCartney,Ever wondered what happens backstage at Paul’s shows? Go behind-the-scenes with publicist Stuart Bell in his tour b… https://t.co/LfBIiPkjE0 +05/26/2018,Musicians,@PaulMcCartney,"#ICYMI Learn more about 'Eat At Home', taken from 'Thrillington' HERE: https://t.co/bSVwc5ck9g + +Get your reissue co… https://t.co/t61GkCuKel" +05/25/2018,Musicians,@PaulMcCartney,Did you know the album artwork for ‘Chaos and Creation in the Backyard’ features Paul’s name styled as an ambigram.… https://t.co/6hru1RQWz2 +05/23/2018,Musicians,@PaulMcCartney,🎧 https://t.co/UbcFyxb7Lg +05/18/2018,Musicians,@PaulMcCartney,"'NEW', 'Chaos and Creation in the Backyard', 'Wings Greatest' and 'Thrillington' are back in stores today in single… https://t.co/vFjirEouJW" +05/17/2018,Musicians,@PaulMcCartney,🤔 #ThrowbackThursday #TBT Photo by Linda McCartney #Thrillington https://t.co/KVEc7u1pHZ +05/16/2018,Musicians,@PaulMcCartney,"The story of ‘Eat At Home’ has had a fun telling, starting off life as a co-written song on Paul and Linda McCartne… https://t.co/Y8zdnvKeT7" +05/14/2018,Musicians,@PaulMcCartney,"""But darling, doesn't EVERYONE know Percy Thrillington?"" +In stores 18th May: https://t.co/e9bgu55aC4 https://t.co/MEsuUHMv5P" +05/13/2018,Musicians,@PaulMcCartney,Fond memories of my Mum. Happy Mother’s Day to all you Mothers! https://t.co/hEnEQRRIQ2 +05/12/2018,Musicians,@PaulMcCartney,“I'm the man on the flaming pie” What are your favourite songs from Paul’s 1997 album? #PaulMcCartney https://t.co/MSEEBENsBX +05/10/2018,Musicians,@PaulMcCartney,"""Bit flat, mate?"" #WingsGreatest #ThrowbackThursday #TBT +In stores 18th May: https://t.co/e9bgu55aC4 https://t.co/GzQRRbbG0a" +05/07/2018,Musicians,@PaulMcCartney,"""With A Little Love, We Can Lay It Down / Can't You Feel The Town Exploding?..."" +Available for the first time in li… https://t.co/pCaClzhgVU" +05/04/2018,Musicians,@PaulMcCartney,"This week in 1973, Wings released 'Red Rose Speedway' 🌹 What are your favourite songs from the album? https://t.co/05RFi8h6wJ" +05/04/2018,Musicians,@PaulMcCartney,Paul at Buckingham Palace earlier today where he was made a Companion of Honour by the Queen for services to music.… https://t.co/Il5DZ8O0zC +05/03/2018,Musicians,@PaulMcCartney,"Wrecked Car. Portugal, 1969 #ThrowbackThursday #TBT +One of 63 prints by Linda McCartney, donated by Paul and famil… https://t.co/LGgVsM8X3k" +05/02/2018,Musicians,@PaulMcCartney,"""I often think 'How did @thebeatles get together?'"" Does Paul believe in destiny or fate? Find out HERE:… https://t.co/QTuau6UdSU" +05/01/2018,Musicians,@PaulMcCartney,"Austin, Paul is coming to see you in October at #ACLFest! Get your tickets HERE: https://t.co/glEFCMAIS2 https://t.co/r9uqtTpwdM" +05/01/2018,Musicians,@PaulMcCartney,May your #MayDay be the best! https://t.co/6Xg693AIdz +04/30/2018,Musicians,@PaulMcCartney,"""With a little luck we can help it out / We can make this whole damn thing work out""... Dive a little deeper into '… https://t.co/8xDze10hJm" +04/27/2018,Musicians,@PaulMcCartney,"RT @virgisketch: Paul McCartney 🌹 + +portrait made with Prismacolor coloured pencils on Fabriano paper. + +#whatsnewpaul #PaulMcCartney #fanart…" +04/27/2018,Musicians,@PaulMcCartney,RT @treg817: #painting I did of @PaulMcCartney #FanArtFriday #beatles #macca #bass #guitar #wings #whatsnewpaul https://t.co/v6fl2iUltw +04/27/2018,Musicians,@PaulMcCartney,"RT @virgisketch: Paul McCartney ❤️ I drew it at school 😂 +#whatsnewpaul #PaulMcCartney #drawing #FanArtFriday #fanart https://t.co/rKBIT3eQ4K" +04/26/2018,Musicians,@PaulMcCartney,"Paul, Linda and Denny, 1977. Photo by Clive Arrowsmith #ThrowbackThursday #TBT #Wings https://t.co/AHrS6alY0g" +04/25/2018,Musicians,@PaulMcCartney,"""Looking through the backyard of my life / Time to sweep the fallen leaves away..."" Dive into 'Promise To You Girl'… https://t.co/yuAAU3onMa" +04/23/2018,Musicians,@PaulMcCartney,Happy George’s Day! #StGeorgesDay https://t.co/fqQYIGhHxX +04/22/2018,Musicians,@PaulMcCartney,Happy #EarthDay! There is a simple but significant way to help protect the planet and all its inhabitants and it st… https://t.co/ga0vedIiV4 +04/22/2018,Musicians,@PaulMcCartney,Happy #EarthDay! Help save it. 🌏 https://t.co/LbFXqbEIkQ +04/19/2018,Musicians,@PaulMcCartney,'Creating Chaos at @AbbeyRoad.' Photo by Richard Haughton #ThrowbackThursday #TBT https://t.co/wchG7F9Bju +04/18/2018,Musicians,@PaulMcCartney,"""But the day will come / Jenny Wren will sing / When this broken world / mends its foolish ways..."" +'Chaos and Crea… https://t.co/QNZFfe3OyH" +04/17/2018,Musicians,@PaulMcCartney,Remembering Linda with love today. Beautiful memories. https://t.co/sfREUMl0ey +04/16/2018,Musicians,@PaulMcCartney,"""On my way to work / But all the time I thought of you..."" #MondayMotivation 👣 💞 +Listen to 'On My Way To Work' HERE… https://t.co/DVOwwhlBhv" +04/13/2018,Musicians,@PaulMcCartney,#FanArtFriday by Instagram user eszterbudavari_art! Share your #fanart with the hashtag #whatsnewPaul! 🎨😎 https://t.co/lXmQhZ7eZz +04/12/2018,Musicians,@PaulMcCartney,Dive into Paul's track 'On My Way To Work' taken from his album 'New'... https://t.co/5FHOt40sQe....… https://t.co/iFyUu8ddqT +04/09/2018,Musicians,@PaulMcCartney,#ICYMI Read the https://t.co/eEFPgd3GIu March newsletter HERE: https://t.co/PMdCCn9XiO https://t.co/5PVoipKFJb +04/06/2018,Musicians,@PaulMcCartney,RT @THEmodmother: my #drawing of @PaulMcCartney for #FanArtFriday from a photo by @BaileyQuotes #whatsnewpaul #pencil #art #portrait htt… +04/06/2018,Musicians,@PaulMcCartney,"RT @Kunigami_Maaji: Love you @PaulMcCartney !! +#whatsnewPaul +@MJKIM_lalala Thank you for a wonderful photo !! https://t.co/vWYBLQuepS" +04/05/2018,Musicians,@PaulMcCartney,50 years ago on April 4th Dr. King’s life was cut short but his dream still lives. My dream is for everyone to live… https://t.co/Elkm9rOXni +04/05/2018,Musicians,@PaulMcCartney,The 'Chaos and Creation in the Backyard' album cover featured this photo taken by Paul's brother Mike at their home… https://t.co/GxcTs3v1c4 +04/04/2018,Musicians,@PaulMcCartney,"""I never knew what I could be / What I could do / Then we were new..."" +Available for the first time in limited edit… https://t.co/CMmftA2vzP" +04/01/2018,Musicians,@PaulMcCartney,Have a glorious Easter! #HappyEaster https://t.co/HAC1O1oslQ +04/01/2018,Musicians,@PaulMcCartney,Easter tweeting greeting! https://t.co/oiju9y4vh0 +03/29/2018,Musicians,@PaulMcCartney,'NEW' Abbey Road Recording Sessions. Photo by @maryamccartney #ThrowbackThursday #TBT https://t.co/hhsuejEKMD +03/28/2018,Musicians,@PaulMcCartney,"Paul will reissue four catalogue titles on 18th May via MPL/Capitol: 'NEW,' 'Chaos and Creation in the Backyard,' '… https://t.co/1fLVQ5De8l" +03/23/2018,Musicians,@PaulMcCartney,#FanArtFriday by @Instagram user babicheva_lerP ! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/I3ofshFXtY +03/22/2018,Musicians,@PaulMcCartney,"On the Bakerloo Line, London. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/oPGFl1GnZZ" +03/21/2018,Musicians,@PaulMcCartney,🌼 I’d rather be listening to McCartney 🌼 Listen to your favourite Paul McCartney songs on @Spotify:… https://t.co/NLPZg6BaHr +03/20/2018,Musicians,@PaulMcCartney,#InternationalDayOfHappiness https://t.co/NsluVcwyMr +03/20/2018,Musicians,@PaulMcCartney,Which song makes you feel the happiest? 😁 #InternationalDayOfHappiness +03/19/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: “What we’re doing with #MeatFreeMonday is urging people to just try it, because it will make a difference if the idea s…" +03/17/2018,Musicians,@PaulMcCartney,Go green on St Paddy’s Day! #StPatricksDay https://t.co/wujlCH90gY +03/16/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagram user moixonada ! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/okZ1dcxwO5 +03/16/2018,Musicians,@PaulMcCartney,"RT @ShineMsd: OUR SONG SHINE, which was performed live at the @CNN Town Hall, is now streaming everywhere! All proceeds will go to #ShineMS…" +03/15/2018,Musicians,@PaulMcCartney,"The McCartney's visit to East Hampton. New York, 1975 #ThrowbackThursday #TBT https://t.co/MPXDAEhOoq" +03/12/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: ""Nobody’s forcing anyone to do anything; you just try one day meat free, because it’s a good idea..."" Read @PaulMcCartn…" +03/12/2018,Musicians,@PaulMcCartney,Paul on Ken Dodd... https://t.co/ytd8SyRtip +03/11/2018,Musicians,@PaulMcCartney,Fond memories of my Mum. Happy Mother’s Day to all you Mothers! https://t.co/sKl5D94D9m +03/09/2018,Musicians,@PaulMcCartney,Paul playing guitar at home in London. Photo by Linda McCartney #FlashbackFriday https://t.co/NPtASvvkVk +03/08/2018,Musicians,@PaulMcCartney,"To all the women in my life. Happy International Women’s Day! You go, girls! #IWD2018 https://t.co/eLStqkbnpM" +03/07/2018,Musicians,@PaulMcCartney,“How many days will the wet weather last?” Download exclusive audio and other treats HERE! https://t.co/ZWME3UCzjq https://t.co/VDrYHD7zPN +03/05/2018,Musicians,@PaulMcCartney,#ICYMI Paul describes how he overcomes the effects of jet lag... https://t.co/2IULuw4eLx https://t.co/81o0SFX5HW +03/02/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagramuser https://t.co/XqWQ1q853V! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/YTX5K5JCsg +03/01/2018,Musicians,@PaulMcCartney,#ICYMI Catch up on all the latest from https://t.co/eEFPgd3GIu in February's newsletter: https://t.co/OXofXSJzK6 https://t.co/5bX0FVxOz0 +03/01/2018,Musicians,@PaulMcCartney,Paul in Nashville 😎 Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/Yys4PLO33T +02/28/2018,Musicians,@PaulMcCartney,"Paul answered, 'The Long and Winding Road.' What question do you think he was asked? Find out HERE:… https://t.co/fGclSvZHlP" +02/25/2018,Musicians,@PaulMcCartney,I just saw this great video that @WarChildUK have produced. They do such great work which is needed these days more… https://t.co/qXY74zsx1P +02/25/2018,Musicians,@PaulMcCartney,Happy Birthday Georgie. Wonderful memories. https://t.co/JklMJ79Zeo +02/23/2018,Musicians,@PaulMcCartney,RT @DarkSweetSadie: #drawing #fanartSaturday🌸 #PaulMcCartney #whatsnewpaul https://t.co/r7IbDxLjOL +02/22/2018,Musicians,@PaulMcCartney,Paul in Scotland. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/oc9tA52AEY +02/21/2018,Musicians,@PaulMcCartney,RT @MeatFreeMonday: #NowPlaying on #MeatFreeMusic: Let Me Spring Roll It – @PaulMcCartney 💚🎶🌿 https://t.co/PGcXBNzUwB +02/19/2018,Musicians,@PaulMcCartney,"“Someone's knocking at the door, somebody's ringing the bell. Do me a favour, open the door and let 'em in” Sign up… https://t.co/qdzIaSXrjL" +02/15/2018,Musicians,@PaulMcCartney,"Paul in London, 1969. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/UbUjrTROKp" +02/14/2018,Musicians,@PaulMcCartney,"“And she was right, this love of mine. My Valentine...” ❤️🌹 +Send Paul's song 'My Valentine' along with your own per… https://t.co/KmPeDwtK3t" +02/14/2018,Musicians,@PaulMcCartney,All the love in the world on Valentine's Day. Have a great one!🌹#14feb https://t.co/QCV0K7kvRx +02/13/2018,Musicians,@PaulMcCartney,Enjoy your pancakes! Happy Mardi Gras! 🙂 https://t.co/AAvshA3pra +02/12/2018,Musicians,@PaulMcCartney,If you had the chance to ask Paul one question - what would it be? 🤔 https://t.co/YszD6AuDlj +02/11/2018,Musicians,@PaulMcCartney,Explore a selection of Paul's lesser-known tracks in the online series 'Sticking Out Of My Back Pocket' 🧐 ...… https://t.co/V1C5zg6B6E +02/08/2018,Musicians,@PaulMcCartney,"In the bath. London, 1969. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/f3RfzZwdgX" +02/06/2018,Musicians,@PaulMcCartney,Congratulations to all of us on the 100th anniversary of the Suffragette movement. Amazing to think that #100years… https://t.co/GXx6qH05fE +02/04/2018,Musicians,@PaulMcCartney,"""We asked a group of 100 people: What is Paul’s favourite American TV show?"" Find out the answer in this month’s 'Y… https://t.co/ajvudpofAj" +02/03/2018,Musicians,@PaulMcCartney,"“A love so fine, My Valentine” ❤️🌹 https://t.co/zPTDdOfg9g https://t.co/i97sYqnMms" +02/02/2018,Musicians,@PaulMcCartney,#FanArtFriday by @Instagram user _charlizart! Submit your #fanart with the hashtag #whatsnewPaul on Twitter and Ins… https://t.co/5tEE7EOHRd +02/01/2018,Musicians,@PaulMcCartney,Paul at The 100 Club in 2010 #ThrowbackThursday #TBT #IVW18 https://t.co/9tnWs1WTrA +01/31/2018,Musicians,@PaulMcCartney,Hiya 2018 👋 Find out about Paul's favourite binge-worthy American TV shows and go behind-the-scenes of his… https://t.co/LFctaVEj9E +01/28/2018,Musicians,@PaulMcCartney,#ICYMI Read Paul's publicist Stuart Bell's touring diary 'For Whom The Bell Tells - Australia and New Zealand':… https://t.co/Mj8O2SoTTI +01/26/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagram user henrique_marinelli! Submit your #fanart with the hashtag #whatsnewPaul! https://t.co/stv2gacoSW +01/25/2018,Musicians,@PaulMcCartney,#ThrowbackThursday #TBT🕺 https://t.co/PjOrpcOHvi +01/24/2018,Musicians,@PaulMcCartney,A note from Paul about the work of @AustMarConsSoc and the fight for our reef... https://t.co/8IZs61ZnjS https://t.co/QveVrZVaHN +01/22/2018,Musicians,@PaulMcCartney,Paul's publicist Stuart Bell shares his wonderful experiences from Australia and New Zealand in the latest instalme… https://t.co/6CWLJTpf5b +01/18/2018,Musicians,@PaulMcCartney,"Paul. Venice, 1976. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/M9Wa6FxwHV" +01/17/2018,Musicians,@PaulMcCartney,#HumpDay remedy: https://t.co/VbzWuFWYZf https://t.co/OREaJueGiD +01/15/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: ""We love the way @ArchersMark has captured the excitement of Meat Free Monday as well as the variety of colours and fla…" +01/14/2018,Musicians,@PaulMcCartney,Don't miss the last few days of the winter sale... https://t.co/uMyqh10Qrq https://t.co/JLr7Bi0feC +01/13/2018,Musicians,@PaulMcCartney,Is your favourite song on the 'Best Of' Paul McCartney @Spotify playlist? Listen HERE: https://t.co/KBsVzoPjpf https://t.co/fuR6SA9HJZ +01/12/2018,Musicians,@PaulMcCartney,"#FanArtFriday by Instagram users rachxnaomi, u.ndreamlike, maryamtdraws and https://t.co/XqWQ1q853V! Submit your… https://t.co/Zg7zQh8ycN" +01/11/2018,Musicians,@PaulMcCartney,Paul during the orchestral sessions for the ‘Thrillington’ album in New York #ThrowbackThursday #TBT… https://t.co/YXlSrMDzb5 +01/10/2018,Musicians,@PaulMcCartney,What song would you most like to see Paul perform live? Listen to the Paul McCartney Live @Spotify playlist HERE:… https://t.co/neBmtuLOS7 +01/06/2018,Musicians,@PaulMcCartney,Check out the winter sale HERE: https://t.co/uMyqh10Qrq https://t.co/Wf6Evj0Nhk +01/05/2018,Musicians,@PaulMcCartney,Live and Let's Diet #MakeASongLessInteresting +01/04/2018,Musicians,@PaulMcCartney,"Paul outside Trident Studios, London, 1968. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/E0mnbMb40A" +01/03/2018,Musicians,@PaulMcCartney,"RT @UMG: Complete your @PaulMcCartney collection with the first 8 Paul McCartney Archive Collection titles, available on 180g black vinyl,…" +01/02/2018,Musicians,@PaulMcCartney,#ICYMI Read the December newsletter HERE: https://t.co/qmGKfwlEOE https://t.co/HUyp7UoUxe +01/01/2018,Musicians,@PaulMcCartney,"""Happy New Year! Should auld acquaintance be forgot... +I hope that everyone has a really brilliant New Year. And th… https://t.co/463bSJW3vp" +12/30/2017,Musicians,@PaulMcCartney,Huge congrats Sir Ringo! Sir Richard Starkey has a nice ring to it. Best drummer best pal! X Paul https://t.co/ew5PuxhEv1 +12/29/2017,Musicians,@PaulMcCartney,#ICYMI Download the Club Sandwich Quiz HERE! https://t.co/z1nXrO5KIw https://t.co/TA0tIFjGiL +12/26/2017,Musicians,@PaulMcCartney,There are 31 key moments from Paul's year hidden in our 2017 wordsearch. 🎄How many can you find? Download HERE:… https://t.co/pRPHZyzPRP +12/25/2017,Musicians,@PaulMcCartney,Happy Chrissie to y'all! I hope everyone has a really wonderful Christmas and has a great time with their loved one… https://t.co/OJSkqmQ3Yk +12/23/2017,Musicians,@PaulMcCartney,Paul tells us about his all-time best Christmas and shares his plans for 2018 in a special edition of 'You Gave Me… https://t.co/9R3GV325ik +12/22/2017,Musicians,@PaulMcCartney,"#FanArtFriday by Instagram users memeleine and halord_lalala, submit your #fanart with #whatsnewPaul! https://t.co/KwX7mB4dlm" +12/22/2017,Musicians,@PaulMcCartney,Find out which song I chose as my most precious childhood music memory for @HopeandHomes HERE:… https://t.co/b5hM3mf2kD +12/21/2017,Musicians,@PaulMcCartney,Can you spot the visual clues to 75 of Paul's song titles? #ThrowbackThursday #TBT https://t.co/z1nXrO5KIw https://t.co/yDCVlqyYPi +12/19/2017,Musicians,@PaulMcCartney,"One song, eight albums! Can you match the song to the album? Colour vinyl in stores now: https://t.co/2glcBidVDy https://t.co/DiysP8DV7z" +12/19/2017,Musicians,@PaulMcCartney,Get in the Christmas spirit with #HolidaysRule Vol. 2! 🎄Listen now: https://t.co/dWhOoNYTvQ https://t.co/95VTEq1JY0 +12/17/2017,Musicians,@PaulMcCartney,"""The party's on, the feeling's here"" 🎅🏼 https://t.co/6pV8QTjggt https://t.co/zKawDatnda" +12/14/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: 'Drive My Car'🚗 Please check your inbox to find out whether you've… https://t.co/Li7tzD0oSt +12/14/2017,Musicians,@PaulMcCartney,"Memories of Mexico! #ThrowbackThursday #TBT +Paul's publicist Stuart Bell shares some of Paul's fantastic experienc… https://t.co/LOWh3JWjIr" +12/14/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul #OneOnOne in Auckland 16th December by answering the following question: Paul ope… https://t.co/Ui0WixNWpD +12/14/2017,Musicians,@PaulMcCartney,Lovin NZ. Been a long time! x 🇳🇿 https://t.co/3K8j82ISeU +12/13/2017,Musicians,@PaulMcCartney,"'The party's on, the spirit's up...'🎄 Christmas merchandise available now: https://t.co/uMyqh10Qrq https://t.co/NT78gI6AfR" +12/13/2017,Musicians,@PaulMcCartney,Up on Sydney Harbour Bridge! Last day in Oz. Had a great time. Thanks! 🇦🇺 https://t.co/zZu6WvBuyk +12/12/2017,Musicians,@PaulMcCartney,Have the happiest of Hanukkahs! #HappyHanukkah https://t.co/tJbSXwKmw5 +12/11/2017,Musicians,@PaulMcCartney,Let us know if you're heading to see Paul's second show @qudosbankarena this evening and don't forget to use the… https://t.co/CQ89rgXoye +12/11/2017,Musicians,@PaulMcCartney,Rocking with Kyles in Syd 🇦🇺#oneonone https://t.co/5Vpd0ZnZC6 +12/11/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: The New World Tour. Please check your inbox to find out whether you… https://t.co/Xok28W280o +12/10/2017,Musicians,@PaulMcCartney,We’ve heard that the 1972 Wings tour bus is back on the road in the UK. Have info on this? Send us a DM! https://t.co/IZ7DUwZNiB +12/10/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul play #OneOnOne in Sydney 11th December by answering the following question: Paul… https://t.co/QgaLGyI4Jf +12/09/2017,Musicians,@PaulMcCartney,Take a look at my daughter Mary’s limited edition silk scarves and write Santa a note! https://t.co/av4wqX59nB https://t.co/56dV7xytlu +12/08/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: 1975! Please check your inbox to find out whether you've won a pair… https://t.co/ZZlpxsXtcb +12/07/2017,Musicians,@PaulMcCartney,Paul’s forthcoming #OneOnOne show in Brisbane will be his first solo performance in the city... #ThrowbackThursday… https://t.co/ifkhhL6OlL +12/07/2017,Musicians,@PaulMcCartney,Paul spoke with @zanrowe on Australia’s @triplej earlier this week: https://t.co/WkoDTGgbSp #OneOnOne https://t.co/3fujbQkVkL +12/07/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul play #OneOnOne in Brisbane 9th December by answering the following question: In w… https://t.co/Cd4wmzHiGH +12/06/2017,Musicians,@PaulMcCartney,RT @davidwalliams: Sir @PaulMcCartney paying tribute to @GeorgeHarrison by singing ‘Something’ https://t.co/MyapnsHXR0 +12/06/2017,Musicians,@PaulMcCartney,"RT @Melbourne: Two epic sell-out shows @aamipark, thank you Sir @PaulMcCartney. Love us #oneonone https://t.co/XIjaUimN79" +12/06/2017,Musicians,@PaulMcCartney,RT @frontiertouring: Just a few of you here at @AAMIPark tonight Melbourne! #OneOnOne @PaulMcCartney https://t.co/QhMHZDh31O +12/06/2017,Musicians,@PaulMcCartney,RT @AAMIPark: Seriously!!! @PAULMCCARTNEY is HERE!!!! 🙌 #AAMIPark #OneOnOne https://t.co/lqgr8zkXxy +12/05/2017,Musicians,@PaulMcCartney,Listen to Paul talk in-depth about five songs from his catalogue to @zanrowe on Australia’s @triplej Take 5 tomorro… https://t.co/FulutXp88b +12/04/2017,Musicians,@PaulMcCartney,Consider donating to @1010 and @NRDC at https://t.co/S8Nx2mb4h6 to help defend our planet from climate change and y… https://t.co/SjgbqTAjOl +12/04/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: Sidney Myer Music Bowl! Please check your inbox to find out whether… https://t.co/c72pPUeVTj +12/03/2017,Musicians,@PaulMcCartney,Win tickets to see Paul play in Melbourne on 5th December by answering the following question: Name the Melbourne v… https://t.co/D0s3YIMdgV +12/03/2017,Musicians,@PaulMcCartney,Warm up by the fire with the #HolidaysRule Vol. 2 Yule Log video for 'Wonderful Christmastime'🎄https://t.co/95VTEq1JY0 +12/02/2017,Musicians,@PaulMcCartney,Bagpipes of peace in Perth #oneonone 🇦🇺 https://t.co/XhxUKp2kbg +11/30/2017,Musicians,@PaulMcCartney,"McCartney Recording Session, 1970. Photo by LindaMcCartney #ThrowbackThursday #TBT https://t.co/O9gUb6Fq3e" +11/28/2017,Musicians,@PaulMcCartney,“Help me to learn / Songs of joy instead of / Burn baby burn / Won’t you show me how to play / The pipes of peace..… https://t.co/qXxiZE6yfR +11/27/2017,Musicians,@PaulMcCartney,Climate change is a real issue and no effort is too small when it comes to protecting and preserving our planet. A… https://t.co/7WNu3Clt8i +11/24/2017,Musicians,@PaulMcCartney,Getting really excited about returning to Australia and New Zealand. Can’t wait to rock out with our Aussie and Kiw… https://t.co/UXVAjAmxxU +11/23/2017,Musicians,@PaulMcCartney,Happy Thanksgiving! Thanks for the support. Paul x https://t.co/ekF8pVvtoN +11/21/2017,Musicians,@PaulMcCartney,"""Take it away / Want to hear you play / Till the lights go down / Take it away / Don't you want to stay / Till ther… https://t.co/Q13CO0yoS1" +11/21/2017,Musicians,@PaulMcCartney,Don’t forget to support your local record store this Saturday and be part of the #ShopSmall movement founded by our… https://t.co/cOJWqKOkRI +11/19/2017,Musicians,@PaulMcCartney,"""You want a love to last forever / One that will never fade away / I want to help you with your problem / Stick aro… https://t.co/o8FZjJcQwq" +11/17/2017,Musicians,@PaulMcCartney,The first eight Archive Collection titles are available in stores or online today in limited edition 180g coloured… https://t.co/m49fwdP0fP +11/16/2017,Musicians,@PaulMcCartney,“Some people want to fill the world with silly love songs / and what’s wrong with that? I’d like to know cos here I… https://t.co/vg6p30RXN8 +11/14/2017,Musicians,@PaulMcCartney,"""A good friend of mine / Follows the stars – Venus and Mars / are alright tonight..."" What’s your favourite song fr… https://t.co/KrqGdrLa9D" +11/13/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: Be inspired to protect the planet from climate change! Start today with just #OneDayAWeek #MeatFreeMonday https://t.co/… +11/12/2017,Musicians,@PaulMcCartney,"""Well, the rain exploded with a mighty crash, As we fell into the sun..."" What’s your favourite song from the 'Band… https://t.co/0PBYCpVU2e" +11/10/2017,Musicians,@PaulMcCartney,"""Ram on, give your heart to somebody soon..."" What’s your favourite song from the 'RAM' album? #FlashbackFriday Com… https://t.co/tZGGQjSXPU" +11/10/2017,Musicians,@PaulMcCartney,"#FanArtFriday by @Instagram users https://t.co/pMr11odDsT, marmalade_skies_art_, izzy.ferraro and aljeensane! Share… https://t.co/c3bkjrd4Ug" +11/09/2017,Musicians,@PaulMcCartney,"When you see it… #ThrowbackThursday #TBT +What’s your favourite song from the 'McCartney' album? Complete your coll… https://t.co/bDKHHle06m" +11/08/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: Watch our new short film featuring @PaulMcCartney @maryamccartney @stellamccartney #EmmaStone and @WoodyHarrelson and t… +11/07/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: #COP23 starts today! See why diet plays such a huge rule in #climatechange and watch our new documentary short HERE: ht… +11/06/2017,Musicians,@PaulMcCartney,Taken at the launch of @MeatFreeMonday's new documentary short #OneDayAWeek @lilycole @JoannaLumley Watch it HERE:… https://t.co/PQlPPWIesa +11/06/2017,Musicians,@PaulMcCartney,RT @GaryBarlow: An extremely important cause ! #MeatFreeMonday #OneDayAWeek https://t.co/u2pipO5R7D +11/06/2017,Musicians,@PaulMcCartney,RT @rickygervais: Watch #MeatFreeMonday’s short film narrated by @PaulMcCartney and go meat free #OneDayAWeek https://t.co/csfQgSpMqH +11/05/2017,Musicians,@PaulMcCartney,Happy Bonfire Night! 🔥 https://t.co/0CISQGgQs3 +11/05/2017,Musicians,@PaulMcCartney,Great fun rocking out last night with my friend @StevieVanZandt and his band at @RoundhouseLDN - Welcome to Britain guys 🇬🇧 +11/03/2017,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: Watch #MeatFreeMonday’s new documentary short #OneDayAWeek with the McCartney family, Woody Harrelson and Emma Stone ht…" +06/29/2018,Musicians,@ladygaga,RT @THWofD: Cynthia Germanotta (@momgerm) explains what she learned about #mentalhealth from @ladygaga and why the @BTWFoundation has teame… +06/24/2018,Musicians,@ladygaga,#Pride Dance for your life. #equality https://t.co/8WZIHGUuMf +06/24/2018,Musicians,@ladygaga,#HappyPrideMonth #pride #equality https://t.co/lq5kjeGQs2 +06/24/2018,Musicians,@ladygaga,I love the lgbtq 🏳️‍🌈 community more than I can say. So I’ll sing it instead. Forever. And that’s a NY promise. One… https://t.co/CaojJolSxD +06/24/2018,Musicians,@ladygaga,HAPPY PRIDE THIS IS SUCH A WONDERFUL TIME TO CELEBRATE https://t.co/ioplYXfFZO +06/24/2018,Musicians,@ladygaga,"Loved performing and watching @itstonybennett sing last night. He’s a dream. That’s showbiz, baby! https://t.co/8YmhwIr07d" +06/22/2018,Musicians,@ladygaga,Untitled Original 11383 John Coltrane WOW 🎷🎼 +06/21/2018,Musicians,@ladygaga,RT @Variety: Exclusive Interview: @ladygaga on MTV documentary win and reinventing herself through the pain https://t.co/87R9pZmfiq https:/… +06/19/2018,Musicians,@ladygaga,So happy that #GagaFiveFootTwo won Best Music Documentary at the #MTVAwards! Thank u Little Monsters & @MTV!! 😘 https://t.co/Hba41WNgzM +06/17/2018,Musicians,@ladygaga,"RT @AMENARTPOP: 7 years ago today, Lady Gaga performed on The Paul O'Grady Show in London, UK. https://t.co/JiL7Q54jdg" +06/11/2018,Musicians,@ladygaga,"RT @allyslays38: I'm beautiful in my way +'Cause God makes no mistakes +I'm on the right track, baby +I was born this way +Don't hide yourself…" +06/11/2018,Musicians,@ladygaga,"My mother and I, as well as the whole @BTWFoundation wish you a HAPPY PRIDE !!! 🎉🌈💕 https://t.co/mIz0qVbyje" +06/06/2018,Musicians,@ladygaga,"It’s a dream come true and an honor to be a part of this incredible movie. Bradley's ability as a director, actor a… https://t.co/cgL9ROMGFn" +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Lady Gaga. #AStarIsBorn https://t.co/pYtRPed2bv +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Bradley Cooper. #AStarIsBorn https://t.co/JMAhnjpxGL +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Bradley Cooper & Lady Gaga in #AStarIsBorn. In theaters October 5. https://t.co/03kSXHkoOF +06/05/2018,Musicians,@ladygaga,"RT @LadyGagaUpdates: Exactly 9 years ago today, Lady Gaga released the epic music video for ""Paparazzi"". It was directed by Jonas Åkerlund…" +06/02/2018,Musicians,@ladygaga,"RT @gagasyuyi: Lady Gaga 6 years ago: ""#HappyBirthdayMarilyn They'll never take our blonde hair and lipstick."" 💋 https://t.co/2QEDx7sRc3" +05/30/2018,Musicians,@ladygaga,"Nothing like New York, Baby https://t.co/4a60i6trQl" +05/27/2018,Musicians,@ladygaga,Happy Birthday to my manager and best friend @bobby_campbell love you to the moon and back. Thank you for taking su… https://t.co/uGkxFXztLD +05/23/2018,Musicians,@ladygaga,#HappyBirthdayBornThisWay https://t.co/Qp1jyqOazz +05/23/2018,Musicians,@ladygaga,I’m emotional. It’s been 7 yrs since the release of “Born This Way.” It’s a celebration of love & diversity that br… https://t.co/qJyLVBE7St +05/17/2018,Musicians,@ladygaga,That was the night @itstonybennett asked me to make a record with him. ❤️ Tony https://t.co/aXsgqdmbDf +05/16/2018,Musicians,@ladygaga,"#MentalHealthAwarenessMonth is an important time to learn how to be there for your friends, family and community me… https://t.co/AYSAR0Dx0E" +05/16/2018,Musicians,@ladygaga,"RT @GagaLoverNE: Lady Gaga’s documentary, Gaga: Five Foot Two is nominated for an MTV Movie and TV award in the ""Best Music documentary"" ca…" +05/15/2018,Musicians,@ladygaga,"This is the #MentalHealthMinute, an important message to support @heads_together & the UK’s… https://t.co/3YXG2EbIB9" +05/13/2018,Musicians,@ladygaga,Tiny Dancer flies to see the Rocket Man. 4 more show left baby. How wonderful life is while you’re in the world… https://t.co/2ZwPvYo6sq +05/10/2018,Musicians,@ladygaga,RT @weeklygaga: Have you voted today #LittleMonsters Remember you can vote daily for #ladygaga‘s “Gaga: Five Foot Two” for “Best Music Docu… +05/10/2018,Musicians,@ladygaga,Thank you so much for this award! We are so honored and grateful @bmi Thankful for Million Reasons that we have you… https://t.co/yTlhcQeVDm +05/07/2018,Musicians,@ladygaga,In honor of the Met Gala and its theme I’ll post the “Judas” video. Here we explored Christianity through fashion s… https://t.co/m4aMWRQLeW +05/07/2018,Musicians,@ladygaga,https://t.co/SLbwyiFdbr +05/07/2018,Musicians,@ladygaga,🙌 #ThisIsAmerica https://t.co/HGKTBa41OA +05/07/2018,Musicians,@ladygaga,"RT @LGMonsterFacts: 7 years ago today, after traveling around the world for 2 years and 203 performances, Lady Gaga played the last Monster…" +05/07/2018,Musicians,@ladygaga,Love. https://t.co/O31fOeiSNb +05/06/2018,Musicians,@ladygaga,💕💋 https://t.co/dQd7nldRZs +05/06/2018,Musicians,@ladygaga,RT @MTV: @ladygaga congrats!!! you've been nominated at the 2018 #mtvawards and can vote now at https://t.co/B6c16HKCG5 🌈 https://t.co/HQec… +05/03/2018,Musicians,@ladygaga,"RT @AMENARTPOP: Lady Gaga's documentary ""Gaga: Five Foot Two"" is nominated as Best Music Documentary at the 2018 MTV Movie & TV Awards! VOT…" +04/28/2018,Musicians,@ladygaga,"RT @gagasyuyi: • And after the show, some fans could meet and take pictures with Lady Gaga. 💕 https://t.co/evVqbCpVfB" +04/28/2018,Musicians,@ladygaga,It’s the 6 year anniversary of the Born This Way Ball. Such a special time and such a special show that I will neve… https://t.co/BuxO0Gfuzl +04/27/2018,Musicians,@ladygaga,Words from me that my mom spoke on my behalf receiving a Didi Hirsch Erasing the Stigma Leadership Award.… https://t.co/20b9en9Bbp +04/27/2018,Musicians,@ladygaga,So proud of my mom and The Born This Way Foundation. We can all learn more about suicide prevention and mental heal… https://t.co/ju8Wnw36F7 +04/26/2018,Musicians,@ladygaga,Making music n’ stuff. 💕 https://t.co/pfbzkWGDAG +04/25/2018,Musicians,@ladygaga,"RT @TheWebbyAwards: Congrats Monsters! ⚡️🙌🎉 @ladygaga won FOUR #Webbys! + +🏆 @LiveNationProds ➡️ https://t.co/Yq996ZchrJ + +🏆 @intel ➡️ https:/…" +04/22/2018,Musicians,@ladygaga,Do it https://t.co/hVUjE15KhO +04/19/2018,Musicians,@ladygaga,@boysnoize But then I resurrected it with a blow dryer it was a christening ☠️ +04/15/2018,Musicians,@ladygaga,"Love you #BeyHive @Beyonce Have fun celebrating all that love in the desert. When it’s dry and we are thirsty, musi… https://t.co/nDdDxt2HyL" +04/12/2018,Musicians,@ladygaga,So crazy!!! Happened in 2010! 💕🙏 https://t.co/2fGEHhPewF +04/11/2018,Musicians,@ladygaga,Don’t forget to watch!! I had so much fun performing for my pops! #EltonSalute #EltonREVAMP https://t.co/pR2kTySaop +04/11/2018,Musicians,@ladygaga,@tc_littles Fall down 9 times but I get up 10! @iamcardib SPEAK WOMAN.💕 https://t.co/KnqkjYGebb +04/11/2018,Musicians,@ladygaga,I LIVE @iamcardib 🙌❤️🔥 https://t.co/DFQXBO63tu +04/09/2018,Musicians,@ladygaga,This video is so cool!! Thank you for believing in me 💕 https://t.co/wumFjeA3GS +04/09/2018,Musicians,@ladygaga,I love you little monsters 4eva. The last decades been a blast I will never forget. I can’t wait for the next. If y… https://t.co/WGWVfDkKsq +04/08/2018,Musicians,@ladygaga,I can’t believe it’s been ten years since the release of Just Dance. It’s very emotional and I am so grateful to li… https://t.co/Bfehav2MC7 +04/06/2018,Musicians,@ladygaga,@iamcardib Love you girl. +04/01/2018,Musicians,@ladygaga,"HAPPY EASTER from me, my friends, family and especially Gustave! My swimming spotted Easter BunnyBatPig! 🐰🐣🌸 https://t.co/zUQmDv6wJ4" +04/01/2018,Musicians,@ladygaga,💕💕love you🧚‍♀️🧚‍♀️ https://t.co/Ls3FGzCpqm +03/29/2018,Musicians,@ladygaga,"HERE WE ARE!!! Here's my cover of one of the greatest songs of all time. Elton John and Bernie Taupin’s ""Your Song… https://t.co/U0B0ezTHhF" +03/28/2018,Musicians,@ladygaga,Thank you so much 🤗for all your beautiful birthday🎂messages. I love you so much. If you’re compelled to give me a g… https://t.co/SEvXlL5D1W +03/28/2018,Musicians,@ladygaga,Here’s me in 2007 right before I dyed my hair blonde and released Just Dance. It’s now 2018 and I’m so blessed to b… https://t.co/qkxtKsDUPL +03/26/2018,Musicians,@ladygaga,Happy Ten Year Twitter Anniversary! It’s been willlllld ride 🧚‍♀️ https://t.co/wljWKdXkwH +03/24/2018,Musicians,@ladygaga,"Today and every day, listen to young people. #MarchForOurLives #guncontrol. Follow @ChnlKindness for more reports f… https://t.co/ZIMvJ3PNM5" +03/24/2018,Musicians,@ladygaga,#March4OurLives we say #BeKind !! https://t.co/PUWghs405G +03/24/2018,Musicians,@ladygaga,DISARM HATE https://t.co/VNmeJunFy5 +03/24/2018,Musicians,@ladygaga,Proud to share these photos of the brave young people from #StreetCornerResources as they join with other youth lea… https://t.co/XyvwBKdVPQ +03/24/2018,Musicians,@ladygaga,"Our bus will be one of 17 buses, representing the lives lost in the Parkland shooting and those lost every day to g… https://t.co/JzVsTSAuo5" +03/24/2018,Musicians,@ladygaga,.@BTWFoundation & I believe in the power of young people to create a better future. We’re so proud to stand with… https://t.co/jtbOADrlRO +03/22/2018,Musicians,@ladygaga,💕🌈 https://t.co/r8e3jymlZC +03/19/2018,Musicians,@ladygaga,@Shout_LGaga Hang in there I love you +03/19/2018,Musicians,@ladygaga,"I miss you Sonja, everyday. #BreastCancerAwareness https://t.co/IDKndqIuhN" +03/19/2018,Musicians,@ladygaga,"RT @ladygagaIoo: Lady Gaga photographed in early 2008 by street photographer Geordie Wood. + +When he asked her name she said: ""I am Lady Ga…" +03/15/2018,Musicians,@ladygaga,❤️🤗 https://t.co/5zjaDBAbnN +03/14/2018,Musicians,@ladygaga,RT @BTWFoundation: Young people are powerful when they work together! So proud of the students nationwide today who peacefully came togethe… +03/11/2018,Musicians,@ladygaga,"RT @PopCrave: 8 years ago today, Lady Gaga & Beyoncé released the music video for their smash hit ""Telephone."" The video shook pop culture…" +03/10/2018,Musicians,@ladygaga,Happy Birthday to my precious angel of a sister. An artistic design genius and loyal caring woman. I feel exactly t… https://t.co/8N7Qcc2tS2 +03/10/2018,Musicians,@ladygaga,Thank you so much to all the little monsters who wrote these thoughtful lovely notes to me. I am deeply touched and… https://t.co/ncLSRFRJKJ +03/08/2018,Musicians,@ladygaga,Happy International Women’s Day to every single woman in the world. Cheers to your strength and bravery to thrive i… https://t.co/DUEih9Zg52 +03/05/2018,Musicians,@ladygaga,So wonderful to watch the joy of all these artists shine on that beautiful stage tonight. We are so lucky to have art in the world #Oscars +03/03/2018,Musicians,@ladygaga,🤷‍♀️🤦‍♀️ https://t.co/mEwf65rT83 +03/01/2018,Musicians,@ladygaga,@ladygaga_JWT Or what did I do to deserve to have all of you? 💕 Miss you all and that stage I call home. +03/01/2018,Musicians,@ladygaga,@maitemisonrisa I love you too 💕🐰 +03/01/2018,Musicians,@ladygaga,@moonrisejoanne I love you 😘 +03/01/2018,Musicians,@ladygaga,"I remember that day, it was so fun was with so much of my fashion family. https://t.co/bsqPJkTlp4" +02/26/2018,Musicians,@ladygaga,"RT @ladygaga_JWT: Lady Gaga on the cover of Billboard’s February 26, 2011 issue— 7 years ago today. Her single ‘Born This Way’ had just bec…" +02/22/2018,Musicians,@ladygaga,Thanks for remembering guys!! 💕 https://t.co/XErZpFvfSs +02/19/2018,Musicians,@ladygaga,Parkland Survivors and others that are standing up through the media are so brave and are true role models. I’m spe… https://t.co/MlZPTZB3is +02/19/2018,Musicians,@ladygaga,I miss u. #LittleMonsters https://t.co/lOTUiSQWdd +02/10/2018,Musicians,@ladygaga,RT @BTWFoundation: Friendly reminder to follow your dreams! Reply with your hopes + dreams for the week. 💭 https://t.co/lsAcvVBxFd +02/08/2018,Musicians,@ladygaga,RT @Ddleonardo: my little sister doing Lady Gaga's touch down in the super bowl @ladygaga #Halftime #SuperBowl https://t.co/VSPdAgp5ZV +02/07/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/NNkgmK9tBs +02/07/2018,Musicians,@ladygaga,It’s been just about 1 year since my Super Bowl Haltime show! Celebrate by watching here 🤗🐰💕https://t.co/mMGjxWT1rB +02/07/2018,Musicians,@ladygaga,While I’m resting I’ll be spending more time on our social media website/app for fans... get app for free here.… https://t.co/0YYCkj4Qlz +02/07/2018,Musicians,@ladygaga,A must watch....the littlest and sweetest #Joanne https://t.co/E7g7ptHPuS +02/05/2018,Musicians,@ladygaga,@antpats2videos @jaakemeIIor I am the luckiest girl in the world to have fans like you. +02/05/2018,Musicians,@ladygaga,https://t.co/iUe2fTmiUN +02/04/2018,Musicians,@ladygaga,Playing the Super Bowl last year was indescribable. It changed my life! So excited to see what Justin’s going to d… https://t.co/jF4PVm84zI +02/03/2018,Musicians,@ladygaga,https://t.co/w5mTZsSb0X +02/01/2018,Musicians,@ladygaga,Are you ready Birmingham? (watch the whole video) #JoanneWorldTourBirmingham https://t.co/ohmtFDdusA +02/01/2018,Musicians,@ladygaga,"RT @AppleMusic: She never disappoints. Listen to the 🎹 version of @ladygaga's #Joanne. +https://t.co/BbktTgmi15" +02/01/2018,Musicians,@ladygaga,"Thank you, Birmingham. This photo says it all. #JoanneWorldTour #JoanneWorldTourBirmingham https://t.co/JeaFwuV4EP" +01/31/2018,Musicians,@ladygaga,What an 👼 🐶. He just gave me a million reasons to love him!! https://t.co/XhK8WDEsaT +01/31/2018,Musicians,@ladygaga,We are filming the show tonight Birmingham so bring that little monster fire!!!!!! #JoanneWorldTour https://t.co/gb0YzSlOh6 +01/29/2018,Musicians,@ladygaga,Here’s the Piano Version of “Joanne” music video. I sang it in one take. In a way I think I sang it to myself. https://t.co/PqOp1SBQMp +01/29/2018,Musicians,@ladygaga,Thank you to the fans and #TheGrammys for such a special night. It was very emotional singing. Soul shaking and hum… https://t.co/pHy4N7Kb8l +01/28/2018,Musicians,@ladygaga,#GRAMMYS #FASHION Armani Privé @giorgioarmani I’m so excited to have been nominated twice tonight and to be a part… https://t.co/Uq6eQqI8M7 +01/28/2018,Musicians,@ladygaga,RT @enews: Where do you think you're going? Sit back down and watch @LadyGaga's Glambot at the #GRAMMYs. https://t.co/TVw9JPLvRb +01/28/2018,Musicians,@ladygaga,A message from me on the day of #TheGrammys with a picture of me and @MarkRonson writing #Joanne. I love you little… https://t.co/5ukO3yyJtV +01/28/2018,Musicians,@ladygaga,"Pre Grammy Night! Music music and more music. Rehearsal, food, friends, and FASHUN. #Grammys https://t.co/cgQo42o62E" +01/26/2018,Musicians,@ladygaga,"Buy or Stream The Song/Video of this new Piano Version of #Joanne. + +https://t.co/czJwynauHX" +01/25/2018,Musicians,@ladygaga,#Joanne https://t.co/rPvDUaAWEP +01/25/2018,Musicians,@ladygaga,"RT @ChnlKindness: Introducing our 2018 Class of #ChannelKindness Reporters! We can’t wait for you to read, watch, and listen to their amazi…" +01/24/2018,Musicians,@ladygaga,"Sneak Peek: +Joanne (Where Do You Think You’re Goin’?) Piano Version +#Joanne #music #video + +The +@LupusResearch All… https://t.co/EMqYv2QOel" +01/24/2018,Musicians,@ladygaga,I have a surprise. #Joanne +01/20/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/ppocaRFY3l +01/18/2018,Musicians,@ladygaga,CIAO ITALIA in custom @Versace love you Donatella. Tonight I met family I never met before because of this album “… https://t.co/wuUoSukZlV +01/18/2018,Musicians,@ladygaga,RT @BTWFoundation: BREAKING NEWS: We’re donating everything we raise through January 19th (that’s tomorrow!) to our #ChannelKindness tour p… +01/17/2018,Musicians,@ladygaga,Ciao Milano!!! We are here!! #JoanneWorldTour https://t.co/vAC29TLqBV +01/17/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/xhtdFbJCvc +01/17/2018,Musicians,@ladygaga,"Adios Barcelona, Ciao Milano #JoanneWorldTour https://t.co/39rR3F6eVR" +01/16/2018,Musicians,@ladygaga,#JoanneWorldTourBarcelona https://t.co/OxNlmzYwGq +01/16/2018,Musicians,@ladygaga,I ‘ve decided to play the documentary made about me every night before the show. If you get there early it will be… https://t.co/APmOKJdvLl +01/15/2018,Musicians,@ladygaga,SOLD OUT!! And another one day after tomorrow ❤️ TE AMO BARCELONA https://t.co/2uPgj72e3Z +01/13/2018,Musicians,@ladygaga,#JoanneWorldTourBarcelona where’s the 🔥 at? @Versace https://t.co/16b0KawgYf +01/10/2018,Musicians,@ladygaga,RT @LGMonsterFacts: It’s been 2 years since legendary musician and artistic pioneer David Bowie passed away. His legacy will live on foreve… +01/08/2018,Musicians,@ladygaga,Oprah for president? She’s got my vote. +01/03/2018,Musicians,@ladygaga,"Happy New Year. To happiness. Health. Love. And to the simplicity of beautiful unforgettable nature, life. https://t.co/dpdN1eXeeS" +12/23/2017,Musicians,@ladygaga,Wishing you the happiest possible of holidays and remembering we’re all in this as one family: Humanity. #BeKind th… https://t.co/MdOT2IoOzn +12/19/2017,Musicians,@ladygaga,The rumors are true! I will have my own residency at MGM’s Park Theater. Get ready for a brand new show!! It’s been… https://t.co/qA0KBKaEvQ +12/19/2017,Musicians,@ladygaga,"Today is the anniversary of my father’s sister Joanne’s passing. 12-18-1974 +It also happens to be our last… https://t.co/0PEhP05OkF" +12/18/2017,Musicians,@ladygaga,RT @runs_w_woIves: Reveal https://t.co/ElbgNeG1H7 +12/18/2017,Musicians,@ladygaga,It’s holiday time baby! Wishing you all a beautiful time filled with smiles and wishes coming true in many forms! 💋… https://t.co/HhnhyE4VPt +12/15/2017,Musicians,@ladygaga,"When my mind begins to wander I spend it being creative with my friends. Much better place to put your dreams, in t… https://t.co/J5jPoVXKbT" +12/13/2017,Musicians,@ladygaga,Another killer sold-out show at #JoanneWorldTourDenver next stop 🛑 Salt Lake City! 😎 https://t.co/kgGSH0LsNF +12/12/2017,Musicians,@ladygaga,"I’ve seen a lot of rumors on the internet that for “A Star Is Born” I’ll be billed as Stefani, but that’s not the c… https://t.co/s4QUAx8lEB" +12/12/2017,Musicians,@ladygaga,My new babies ❤️🐴👼 https://t.co/s4ejQD6V4l +12/11/2017,Musicians,@ladygaga,Happy Holidays from the Germanotta sisters and the #HausOfGaga. Mrs. Claus and Mistress Claus. Can’t we all just ge… https://t.co/hOI8B3gs7u +12/10/2017,Musicians,@ladygaga,We made it from #Dallas to #JoanneWorldTourOklahomaCity can’t wait to get out there and have some real fun with you… https://t.co/LrXzggTOnf +12/09/2017,Musicians,@ladygaga,What a night Dallas! @Verizon Up members get your stage side tickets for Oklahoma City tomorrow! Come sing with me… https://t.co/zjLzGAZ2U2 +12/09/2017,Musicians,@ladygaga,Backstage at #JoanneWorldTourDallas getting ready for the show in Gianni @Versace circa 1990. I LOVE VINTAGE AND I… https://t.co/G6HtMqZHI6 +12/09/2017,Musicians,@ladygaga,ME<————who has the coolest bestest most monstrous fans in the whole world? #pawsup #LittleMonsters 🐾Up!… https://t.co/nhzhbWFb9h +12/08/2017,Musicians,@ladygaga,https://t.co/QRWTyeAbVm +12/08/2017,Musicians,@ladygaga,RT @BTWFoundation: We're partnering with @MHFirstAidUSA to provide a FREE #mentalhealth workshop in Denver next week. Register today! https… +12/06/2017,Musicians,@ladygaga,Saying a prayer and sending loving thoughts to those suffering in California due to these horrible fires. No one de… https://t.co/SqA7YgIx3Z +12/06/2017,Musicians,@ladygaga,This is where our party’s at tonight! ❤️ https://t.co/P7FQgCVDcK +12/04/2017,Musicians,@ladygaga,RT @BTWFoundation: Thank you so much to our amazing partners @Minted and everyone who’s helped us write thank you notes to first responders… +12/04/2017,Musicians,@ladygaga,Memories ❤️😭 https://t.co/VRrEmnasn3 +12/04/2017,Musicians,@ladygaga,"RT @BTWFoundation: Recovering - physically, mentally, emotionally- from natural disasters takes time + the work isn’t over yet. Thanks @Tea…" +12/04/2017,Musicians,@ladygaga,Before the #JoanneWorldTourHouston tonight me and @btwfoundation teamed up with @teamrubicon to do some demolition… https://t.co/mu9IJ6xZG6 +12/03/2017,Musicians,@ladygaga,"Sexy Sunday! + #HAUS #HausEditorial +Photographer @hannah_khymych +Hair @fredericaspiras +Makeup @sarahtannomakeup +S… https://t.co/HFJzn7gpss" +12/03/2017,Musicians,@ladygaga,#NewProfilePic https://t.co/E6vWZXJ4m2 +12/01/2017,Musicians,@ladygaga,#BlackLivesMatter  Section 112 in the concourse at the Amalie Arena has https://t.co/18dEhUwPBB tonight at my show.… https://t.co/AkrEzKQ9zN +12/01/2017,Musicians,@ladygaga,1 in 4 Black Residents are ineligible to vote in Florida: here’s your chance to give 1.6 million people the ability… https://t.co/sQneMWxrjF +12/01/2017,Musicians,@ladygaga,#JoanneWorldTourTampa here we come! 🌞 https://t.co/X0Qd1LchFE +11/30/2017,Musicians,@ladygaga,blond silver and gold curls with dark blond root. Feline flicker eyeliner with rose gold metallic mouth. #beauty… https://t.co/m8vcFQL0BT +11/30/2017,Musicians,@ladygaga,Favorite Mascara love to layer and layer it. @MarcBeauty Velvet Noir https://t.co/r60G8JJijq +11/30/2017,Musicians,@ladygaga,#JoanneWorldTourMiami https://t.co/FpV0jFZs88 +11/29/2017,Musicians,@ladygaga,RT @momgerm: Check out our curated store https://t.co/2mVCZ2kiA3 on our amazing partner @Minted website. They are doing amazing work and y… +11/29/2017,Musicians,@ladygaga,"So glad to be back on the #JOANNEworldtour tonight after Thanksgiving, thank u Atlanta 💖 If u couldn't get tickets… https://t.co/GChuS805AE" +11/29/2017,Musicians,@ladygaga,RT @BTWFoundation: We had the best time teaming up today with @PayAwayLayaway to surprise local families! YOU can help us spread kindness e… +11/28/2017,Musicians,@ladygaga,And a MASSIVE Congratulations to all @theGRAMMYs nominees!!!! What a night we will have to celebrate music. Cheers… https://t.co/mgleSDYGo8 +11/28/2017,Musicians,@ladygaga,I never knew her and she never knew me. But my knowledge of her strength in my ancestry through her struggle with… https://t.co/ZrZ64DGGgt +11/28/2017,Musicians,@ladygaga,RT @BTWFoundation: Today's the day! Will you be a part of our movement to build a kinder world this #GivingTuesday? https://t.co/topUJQbE7H… +11/28/2017,Musicians,@ladygaga,"Thank u @Starbucks & @Spotify for celebrating artists who #GiveGood with a donation to @BTWFoundation, and to great… https://t.co/E6JH9hdGnD" +11/28/2017,Musicians,@ladygaga,I’m humbled & grateful that my album “Joanne” was nominated & also my song “Million Reasons.” Thank u so much Monst… https://t.co/VN8EX19u1A +11/27/2017,Musicians,@ladygaga,"This Thanksgiving I thought a lot about all the blessings I have: my fanily, my friends and extended family, and al… https://t.co/fpeb9Gkd5w" +11/25/2017,Musicians,@ladygaga,RT @KensingtonRoyal: You can watch the #StopSpeakSupport campaign animation here → https://t.co/5A35bfGWfM +11/22/2017,Musicians,@ladygaga,"Watch “The Cure” HERE: +https://t.co/e10ddYfSDP" +11/21/2017,Musicians,@ladygaga,#NewProfilePic https://t.co/AV9xBe3dME +11/20/2017,Musicians,@ladygaga,RT @BTWFoundation: We're partnering with @Minted to #ChannelKindness this holiday season! Check out the beautiful cards we’re using to than… +11/20/2017,Musicians,@ladygaga,Behind the Scenes Last night getting ready for the #AmericanMusicAwards2017 show with Hair @faspiras Makeup… https://t.co/m7ZyViw1dC +11/20/2017,Musicians,@ladygaga,We had a killer time performing and I’m so honored that we won Favorite Pop/Rock female I was so surprised I “ugly… https://t.co/w6E3xw6Enl +11/20/2017,Musicians,@ladygaga,Last night was one of the best nights of my life! We loved performing “The Cure” I was honored to win… https://t.co/DG6OiYpk50 +11/20/2017,Musicians,@ladygaga,#AMAs #AMAsRedCarpet Me in #Alaïa and ready to perform!! https://t.co/xekuFGSYbD +11/19/2017,Musicians,@ladygaga,When the #AMAs brings the red carpet to you! #AMAsRedCarpet #AMAsxGAGA wearing the one and only #Alaïa https://t.co/qFroGBt4Fx +11/19/2017,Musicians,@ladygaga,Behind the scenes of #AMAs getting for my performance in #Alaïa https://t.co/C9Q5mpX6Bu +11/19/2017,Musicians,@ladygaga,"I’M SOOOO EXCITED TO PERFORM FOR YOU TONIGHT!!! #AMAs +If I Can’t Find #TheCure , I’ll Fix You With My L💓ve !!! https://t.co/ilWXhLH0Xe" +11/19/2017,Musicians,@ladygaga,"RT @LadyGagaPopNet: Exactly 8 years ago today, Lady Gaga released her Grammy winning EP “The Fame Monster”. An iconic album that defined, i…" +11/19/2017,Musicians,@ladygaga,These were my last moments w/ Azzedine Alaïa. He was just behind the door to my right as I sat on his stoop & sang… https://t.co/aeNSVUFvGN +11/18/2017,Musicians,@ladygaga,❤️ #AMAs https://t.co/WRZkDAYY6c +11/18/2017,Musicians,@ladygaga,https://t.co/DG4S1DjWuV +11/18/2017,Musicians,@ladygaga,My mom is the best. @BTWFoundation #BeKind Spread #Kindness & #Bravery https://t.co/qOPokXfr4I +11/18/2017,Musicians,@ladygaga,RT @ELLEmagazine: Gaga explains that her love for helping others and activism goes far beyond a pop star. https://t.co/oJVwGKlvjI +11/17/2017,Musicians,@ladygaga,"RT @BTWFoundation: Team @BTWFoundation is in DC this morning, talking the #BusinessOfKindness with @USCCFBiz4Good + @DeloitteUS. Tune in to…" +11/17/2017,Musicians,@ladygaga,#JoanneWorldTourStLouis ARE U READY?!!! I’m warming up ❤️#JOANNEWorldTour Let me see your costumes!!! https://t.co/p4T7rico4W +11/16/2017,Musicians,@ladygaga,Can’t wait! 💋 https://t.co/75stNXujcD +11/16/2017,Musicians,@ladygaga,#HAUS #HausEditorial Hair @faspiras Makeup @SarahTanno and me in Couture @JPGaultier Styled by @TomEerebout and San… https://t.co/QKMr6pgPn5 +11/16/2017,Musicians,@ladygaga,Happy Anniversary to my self-directed video. Triangle bangs in muscle cars 🤘fighting for my dream from the street t… https://t.co/Wld7NHC17o +11/16/2017,Musicians,@ladygaga,"Tonight was so killer +#JoaneWorldTourKansasCity #JoanneWorldTour https://t.co/GsFAKHfzJf" +11/16/2017,Musicians,@ladygaga,"@gagadaily More sweat, more focus, more drive and practice to spread a message of love. That’s what little monsters… https://t.co/sNZyEo9WRs" +11/15/2017,Musicians,@ladygaga,NOW THATS WHAT IM TALKIN’ ABOUT! #MarriageEquality https://t.co/AIVdbq7EEG +11/14/2017,Musicians,@ladygaga,#HappyTuesday wishing you a sunny day from the inside out. 🖤🤘 https://t.co/LUjVuC2e9b +11/14/2017,Musicians,@ladygaga,RT @AMAs: .@LadyGaga is bringing 'The Cure' from the #JoanneWorldTour to the #AMAs! 💥 She's performing this Sunday at 8/7c on ABC. #GAGAxAM… +11/13/2017,Musicians,@ladygaga,Happy #worldkindessday #WorldKindnessDay THIS IS THE BEST DAY EVER❤️ my wish is for you all to know how happy it ma… https://t.co/cVhU3A7WOA +11/13/2017,Musicians,@ladygaga,"RT @BTWFoundation: The students of @WMSFA, @LPASlou + everyone else @JCPSKY deserve ALL the applause for collecting more than +2K toiletrie…" +11/12/2017,Musicians,@ladygaga,On the road to Kentucky. Gas stop. Why do we look like 3 teenagers waiting for an adult to buy us 40s.… https://t.co/ohagYJIRJA +11/12/2017,Musicians,@ladygaga,Happy 4 yr Anniversary #ARTPOP Thank u for allowing me to release my rage & passion & fear into this music. “I️ try… https://t.co/7hpUYpxqTt +11/11/2017,Musicians,@ladygaga,Last show for #JoanneWorldTourConnecticut SOLD OUT LOVIN PERFORMIN 4 U! ❤️❤️lets see ur outfits!! #JoanneWorldTour… https://t.co/HSYVZEUkP3 +11/11/2017,Musicians,@ladygaga,You certainly did make me cry. https://t.co/mkwZIe5VQx +11/09/2017,Musicians,@ladygaga,"The show is tonight!! Get your #JoanneVibes ready for the +#JoanneWorldTourConnecticut #JoanneWorldTour @SarahTanno… https://t.co/HNQl0PJgkJ" +02/28/2018,Musicians,@bobdylan,"Check out @TheAvenerMusic’s rework of Masters of War, out this Friday. https://t.co/wtrTPUMX7B" +02/07/2018,Musicians,@bobdylan,"It’s Bob Dylan like you’ve never seen him. +'Trouble No More' premieres Monday, February 26 at 10PM on #Cinemax. https://t.co/0KL6D5uEXm" +02/05/2018,Musicians,@bobdylan,"Check out Bob Dylan’s performance of “It Takes a Lot to Laugh, It Takes a Train to Cry” with the @wyntonmarsalis Se… https://t.co/IQAIR3mIin" +11/10/2017,Musicians,@bobdylan,There’s a slow train comin’. ‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’ is available now. https://t.co/nvodovsQW5 +11/06/2017,Musicians,@bobdylan,Discover rare memorabilia from the period covered in ‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’:… https://t.co/MZMRolFvNm +11/03/2017,Musicians,@bobdylan,‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’ is available today: https://t.co/n9phC2eJKF https://t.co/rtMMP4HvM6 +11/02/2017,Musicians,@bobdylan,"Trouble No More concert film screenings in five cities tonight! +https://t.co/816GQGl4WI…" +11/02/2017,Musicians,@bobdylan,"Esquire’s Jeff Slate: When Bob Dylan Saw God +https://t.co/a6JoUOWv5m" +11/02/2017,Musicians,@bobdylan,https://t.co/a16TZ5C0yN +11/01/2017,Musicians,@bobdylan,A clip featuring a performance of “What Can I Do For You?” can be viewed exclusively at The @nytimes: https://t.co/Jl1eRLyR1F +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +San Francisco: https://t.co/NVH0vEa0gP" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Philadelphia: https://t.co/xobPCjaKNi" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Chicago: https://t.co/QYqL7FzSGf" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +New York: https://t.co/c60bYiTtOd" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Boston: https://t.co/ODEgrqK908" +10/29/2017,Musicians,@bobdylan,"Recorded live in London in 1981, this version features a faster tempo and two guitar solos. #SlowTrainSundays https://t.co/21PUpmaptx" +10/26/2017,Musicians,@bobdylan,Head to @NPR for an exclusive first listen to tracks from ‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’:https://t.co/iK1bgJk3zQ +10/26/2017,Musicians,@bobdylan,"“The Groom’s Still Waiting At the Altar” was originally a B-side to the single “Heart of Mine,” but was later added… https://t.co/9Mqsc8fOkb" +10/24/2017,Musicians,@bobdylan,https://t.co/0dYqI0jynH +10/22/2017,Musicians,@bobdylan,“It’s been coming a long time and it’s picking up speed...” #SlowTrainSundays https://t.co/Icrq9rJ3xP +10/19/2017,Musicians,@bobdylan,"If you bought the “Gotta Serve Somebody” single in Holland, your record would have come in this picture sleeve. https://t.co/OQ1d0DrvY1" +10/18/2017,Musicians,@bobdylan,“One of the finest songs to come out of that period.” https://t.co/sP9JvjkZGk +10/15/2017,Musicians,@bobdylan,This unique rehearsal version of “Slow Train” offers a fascinating listen of what could have been. #SlowTrainSundays https://t.co/IIquBO0NMq +10/12/2017,Musicians,@bobdylan,Hear never-before-heard performances on ‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’:… https://t.co/vk7LV4Ud2g +10/11/2017,Musicians,@bobdylan,“…A Lost Gospel Masterpiece…” https://t.co/ji5ELEXc0a +10/08/2017,Musicians,@bobdylan,"All through October, enjoy a series of “Slow Train Sundays,” featuring unreleased versions of “Slow Train.” https://t.co/YnGm3HppNz" +10/06/2017,Musicians,@bobdylan,‘Trouble No More: A Musical Film’ made its premiere this week at @TheNYFF. https://t.co/fvndsvF6da +10/05/2017,Musicians,@bobdylan,Here are the original LP and cassette art proofs for ‘Shot of Love.’ https://t.co/5dnfc0388n +10/05/2017,Musicians,@bobdylan,"This British ad for ‘Saved’ features the original cover, which was later changed to a painting of Dylan from the al… https://t.co/QJZeipeocZ" +09/26/2017,Musicians,@bobdylan,Bob Dylan’s singles have been heard all over the world. Here’s a Spanish release of the single “Heart of Mine” off… https://t.co/uqhd1qYtK6 +09/20/2017,Musicians,@bobdylan,‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’ showcases one of the richest periods of Bob Dylan’s care… https://t.co/jpD6XyYoJU +09/11/2017,Musicians,@bobdylan,"Bob Dylan and his Band will tour the U.S. this Fall. + +Tickets on sale this week, Amex pre-sale on Wednesday.… https://t.co/I18d84Uhc3" +09/05/2017,Musicians,@bobdylan,"Joan Osborne’s excellent new album Songs of Bob Dylan is out now! Check it out! +https://t.co/JPq5F2Oyty https://t.co/wbTePBOem1" +08/21/2017,Musicians,@bobdylan,"Bob Dylan remembers rockabilly legend Roland Janes +https://t.co/hCpZk12rkk" +08/06/2017,Musicians,@bobdylan,"Girl From the North Country, one of the standout hits of the season on London’s West End. +https://t.co/hFQc8XwVrk… https://t.co/OvZeAwbvfS" +06/12/2017,Musicians,@bobdylan,"Girl From The North Country +The Old Vic, London +8 July to 7 October +https://t.co/jOmsixrfls https://t.co/YfcULMvvYy" +04/25/2017,Musicians,@bobdylan,"Bob Dylan’s new exhibition, The Beaten Path: The Silkscreen Collection, now open at @HalcyonGallery #DylanAtHalcyon… https://t.co/L8spK5wYUe" +04/07/2017,Musicians,@bobdylan,"Bob Dylan was presented with the Nobel Prize in Literature in Stockholm: + +https://t.co/Forbi304CO" +04/05/2017,Musicians,@bobdylan,Bob Dylan’s Triplicate is today’s album of the day on BBC 6 Music. Tune in throughout the day to hear tracks.… https://t.co/L3Rxirmh93 +04/02/2017,Musicians,@bobdylan,"Bob Dylan's new album Triplicate is available now. Get 30 brand new recordings of classic American songs on iTunes. +https://t.co/YWsYsRIKo3" +03/31/2017,Musicians,@bobdylan,RT @RollingStone: Bob Dylan's 'Triplicate' is majestic in its own right. Our review https://t.co/xj9XhooDaK https://t.co/jdp5v1urnu +03/31/2017,Musicians,@bobdylan,A limited number of Triplicate Deluxe Ltd Edition LPs in a numbered case are available now on the Bob Dylan Store:… https://t.co/5jwSAX6TN5 +03/31/2017,Musicians,@bobdylan,Bob Dylan's new 3-disc album 'Triplicate' is available now on @AmazonMusic. https://t.co/h9xbDF4t7p +03/31/2017,Musicians,@bobdylan,"Bob Dylan's new album 'Triplicate,' which features 30 recordings of classic American songs, is available now:… https://t.co/vyTcfTnzDy" +03/29/2017,Musicians,@bobdylan,"RT @nprmusic: #FirstListen: Stream selections from @bobdylan's new three-disc set, 'Triplicate,' before it's out. https://t.co/bJqggMOCpc h…" +03/24/2017,Musicians,@bobdylan,10 tracks from 'Triplicate' are now available to stream at @nprmusic. https://t.co/y2Lm30QWUu +03/23/2017,Musicians,@bobdylan,"RT @nprmusic: #FirstListen: Stream selections from @bobdylan's new three-disc set, 'Triplicate,' before it's out. https://t.co/bJqggMOCpc h…" +03/23/2017,Musicians,@bobdylan,"Exclusive to bobdylan .com, a new interview with Bob Dylan: + +https://t.co/HxlrZhCN5B" +03/10/2017,Musicians,@bobdylan,"Listen to ""Stardust"" off Bob Dylan's upcoming 3-disc album 'Triplicate' now on @AppleMusic. https://t.co/Q6RCb3hzcQ" +03/10/2017,Musicians,@bobdylan,"Pre-order the 3-disc album now to get ""Stardust"" and two more tracks instantly: https://t.co/VeBSNghcAI https://t.co/pZPGO83DYR" +03/10/2017,Musicians,@bobdylan,"""Stardust"" off Bob Dylan's upcoming three-disc album 'Triplicate' is available today. https://t.co/paFsPPbZUS" +03/06/2017,Musicians,@bobdylan,The Triplicate deluxe limited 180 gram vinyl comes in a numbered case-made book. Pre-order now:… https://t.co/9P5z6lJPKs +02/17/2017,Musicians,@bobdylan,"Pre-order #Triplicate on @AppleMusic to get ""My One and Only Love"" and ""I Could Have Told You"" instantly. https://t.co/XiuvpogUKj" +02/17/2017,Musicians,@bobdylan,'Triplicate' will be released on March 31. Pre-order now and get two tracks instantly. https://t.co/VeBSNghcAI +02/17/2017,Musicians,@bobdylan,"""My One and Only Love"" off Bob Dylan's upcoming 3-disc album 'Triplicate' is available now. https://t.co/Y9lLTisxIr" +02/08/2017,Musicians,@bobdylan,"Bob Dylan and his Band will perform at the London Palladium on April 28, 29 and 30. Tickets on sale Friday at 10AM:… https://t.co/TgXyC4C9wT" +02/07/2017,Musicians,@bobdylan,"RT @BNBuzz: RT by 12PMET Weds 2/8/17 for chance to win signed vinyl of @bobdylan's ""Fallen Angels""! #Sweeps Rules https://t.co/zzfq487lAL…" +01/31/2017,Musicians,@bobdylan,'Triplicate' is available to pre-order on CD and vinyl now in the https://t.co/2JlPRaopp9 store:… https://t.co/lqWOdgkoun +01/31/2017,Musicians,@bobdylan,"Pre-order 'Triplicate' now on @amazonmusic: https://t.co/h9xbDF4t7p + +3-LP Deluxe Vinyl Limited Edition:… https://t.co/CqK812Bw82" +01/31/2017,Musicians,@bobdylan,"'Triplicate' features 30 brand new recordings of classic American songs including ""I Could Have Told You"" https://t.co/UvcvdOhuFR" +01/31/2017,Musicians,@bobdylan,Bob Dylan’s first three-disc album — 'Triplicate' — set for March 31 release. Learn more: https://t.co/5u6QWz5sGl https://t.co/6KWOWgRbv0 +01/27/2017,Musicians,@bobdylan,Bob Dylan and his Band at Firefly Festival in June. Tickets on sale today! @LifeAtFirefly +12/13/2016,Musicians,@bobdylan,"Nobel Presentation Speech by Professor Horace Engdahl, 10 Dec 2016: +https://t.co/02uDEc6dKg" +12/08/2016,Musicians,@bobdylan,"Bob Dylan and his Band will tour the UK next May. Tickets to go on sale 13 December! + +Info here! +https://t.co/oNa4cWaknX" +11/30/2016,Musicians,@bobdylan,"Bob Dylan's ""Chronicles: Volume One"" on sale today only for $2.99 at the Kindle Store +https://t.co/mInAQXtlcK" +11/07/2016,Musicians,@bobdylan,"No Direction Home: Bob Dylan, the Deluxe 10th Anniversary Edition, available now for the first time on @iTunesMovies +https://t.co/Bl6ja3QCrg" +10/14/2016,Musicians,@bobdylan,"RT @POTUS: Congratulations to one of my favorite poets, Bob Dylan, on a well-deserved Nobel. https://t.co/c9cnANWPCS" +10/13/2016,Musicians,@bobdylan,Bob Dylan was awarded the 2016 #NobelPrizeLiterature “for having created new poetic expressions within the great American song tradition.” +10/04/2016,Musicians,@bobdylan,"No Direction Home: Bob Dylan, the Deluxe 10th Anniversary Edition to be released on October 28th. More info: https://t.co/g5f0GbZwwf" +09/28/2016,Musicians,@bobdylan,"The 1966 Live Recordings: +36 CD set to be released on Nov. 11. +Pre-order: https://t.co/IRaMpRLnbm" +08/15/2016,Musicians,@bobdylan,Bob Dylan's Fallen Angels blue vinyl is available now exclusively at @BNBuzz. #BNVinylDay https://t.co/zhkTZiwjni https://t.co/VYHagnWjNS +06/04/2016,Musicians,@bobdylan,"On Muhammad Ali: [2/2] + +“.. then he truly was the greatest. In every way he was the bravest, the kindest and the most excellent of men.”" +06/04/2016,Musicians,@bobdylan,"On Muhammad Ali: [1/2) + +“If the measure of greatness is to gladden the heart of every human being on the face of the earth…" +06/01/2016,Musicians,@bobdylan,.@courtneymelba shares her 5 essential Bob Dylan songs with @WFUV https://t.co/lnJ5lDbSSi +05/24/2016,Musicians,@bobdylan,"RT @AppleMusic: The story continues... +@bobdylan's 37th studio album #FallenAngels, now on #AppleMusic: +https://t.co/DfQiLpafjS https://t.c…" +05/22/2016,Musicians,@bobdylan,Exclusive “Fallen Angels” lithographs and bundles are now available here: https://t.co/29Azq2EGMz https://t.co/ou6KD02l6m +05/21/2016,Musicians,@bobdylan,Get the limited blue vinyl edition of “Fallen Angels” exclusively at @BNBuzz https://t.co/zhkTZiNUeQ +05/20/2016,Musicians,@bobdylan,“Young at Heart” from the new album Fallen Angels is featured on @AppleMusic’s Best of the Week Playlist https://t.co/xSJOcw51fF +05/20/2016,Musicians,@bobdylan,“Fallen Angels” is available now on @AppleMusic! https://t.co/3psdNaDGIe +05/20/2016,Musicians,@bobdylan,Get the new album “Fallen Angels” now on @amazonmusic https://t.co/AGz62mXyfc +05/18/2016,Musicians,@bobdylan,RT @ColumbiaRecords: Only two more days until the release of @bobdylan's album #FallenAngels! Pre-order here: https://t.co/ekIKd4xK0d https… +05/12/2016,Musicians,@bobdylan,"RT @nprmusic: First Listen: Bob Dylan, 'Fallen Angels' @bobdylan https://t.co/wCQ5JSa1Zf https://t.co/AMrWXAT2y3" +05/08/2016,Musicians,@bobdylan,#DesertTrip passes on sale tomorrow at 10am PT. https://t.co/4kV4HM3TJy https://t.co/zCi5dFlrgs +05/07/2016,Musicians,@bobdylan,#DesertTrip passes on sale Monday at 10am PT at https://t.co/4kV4HM3TJy https://t.co/KjA1hrFaVl +05/07/2016,Musicians,@bobdylan,"#DesertTrip passes on sale Monday at 10am PT at https://t.co/4kV4HLMikY +https://t.co/bfZAHShU20" +05/03/2016,Musicians,@bobdylan,"Passes on sale Monday, May 9, 10 am PT! https://t.co/EIqAH9Icjp" +04/30/2016,Musicians,@bobdylan,"RT @AppleMusic: Reimagining a Sinatra favorite, @bobdylan shares #AllTheWay. +#FallenAngels coming soon! +https://t.co/jszQlkCyJt https://t.c…" +04/30/2016,Musicians,@bobdylan,“All The Way” is featured on @AppleMusic’s Best of the Week Playlist! Listen here: https://t.co/xSJOcw51fF +04/29/2016,Musicians,@bobdylan,“All The Way” from Bob Dylan’s upcoming album #FallenAngels is now available on @AppleMusic: https://t.co/lFKmRn9DrK +04/29/2016,Musicians,@bobdylan,"October… +https://t.co/m2S0Mrh1xF" +04/29/2016,Musicians,@bobdylan,"Hear ""All The Way"" off #FallenAngels out May 20: https://t.co/wGqohxDcYw https://t.co/MSfrug79Vh" +04/16/2016,Musicians,@bobdylan,Celebrate @recordstoreday by picking up this rare 7” EP with songs from the upcoming album Fallen Angels! #RSD16 https://t.co/00UrtDgPrz +04/12/2016,Musicians,@bobdylan,Only 3 more days to save 30%-50% on select shirts at the https://t.co/zJo1wDxtrQ Spring Cleaning Sale! https://t.co/8xxWgrJRZi +04/11/2016,Musicians,@bobdylan,“Melancholy Mood” is featured on @AppleMusic’s Best of the Week Playlist! Listen here: https://t.co/xSJOcw51fF +04/07/2016,Musicians,@bobdylan,Bob Dylan's new studio album “Fallen Angels” to be released May 20: Pre-order today! https://t.co/mqqs1nAVv6 https://t.co/EMMcyTjtXL +03/16/2016,Musicians,@bobdylan,"@JeffBuckley's #YouAndI ft. a cover of ""Just Like A Woman"" is out now. +link: https://t.co/5d03iWHi4u" +03/14/2016,Musicians,@bobdylan,"Bob Dylan’s 7/8 show at Forest Hills Stadium in Queens, NY, on pre-sale for Amex holders: https://t.co/4sffWIwjkR +(corrected link)" +03/07/2016,Musicians,@bobdylan,"Bob Dylan summer tour with Mavis Staples. +Tix: https://t.co/oNa4cWaknX +Amex pre-sales start tomorrow! https://t.co/svLOZ1Ozgf" +02/15/2016,Musicians,@bobdylan,"The Basement Tapes: Complete, Grammy winner for Best Historical Album. + +Order: https://t.co/Pyjgb8B57g https://t.co/gyEbuEwKJO" +01/14/2016,Musicians,@bobdylan,"Listen now to @JeffBuckley’s cover of ""Just Like A Woman"" from his upcoming album 'You and I.' https://t.co/66VecmGdg5" +01/02/2016,Musicians,@bobdylan,The evolution of Bob Dylan’s “Sitting On A Barbed Wire Fence” #CuttingEdge https://t.co/dInNxt4OQR +12/30/2015,Musicians,@bobdylan,Exclusive: Check out the newly released “One of Us Must Know” stems with #CuttingEdge: https://t.co/HBnkZs8KGA https://t.co/Xh5NGpaczW +12/27/2015,Musicians,@bobdylan,Did any fans out there own these classic Bob Dylan albums on 8-track? #CuttingEdge https://t.co/VGRukDarAF +12/26/2015,Musicians,@bobdylan,"""It's very complicated to play with electricity..."" - Bob Dylan in the summer of '65 #CuttingEdge https://t.co/YQHSmCpL63" +12/24/2015,Musicians,@bobdylan,Learn where Bob Dylan shot the iconic cover to 'Blonde on Blonde' with @PopSpotsNYC​! #CuttingEdge https://t.co/r2hHDbc1aB +12/23/2015,Musicians,@bobdylan,The 3 Bob Dylan albums highlighted on #CuttingEdge are all on @RollingStone's 500 Greatest Albums of All Time. https://t.co/duYIYvyuU6 +12/22/2015,Musicians,@bobdylan,Bob Dylan and his Band will tour Japan in April 2016. Tix go on sale in January. See the dates: https://t.co/QF7rNUtq8l +12/21/2015,Musicians,@bobdylan,Go check out take 13 of “Stuck Inside of Mobile with the Memphis Blues Again” from #CuttingEdge: https://t.co/buACDLkfT9 +12/19/2015,Musicians,@bobdylan,Think you can sing like Bob Dylan? Experience Studio A. Revisited here: https://t.co/MafSaRIzwv #CuttingEdge https://t.co/ThY68y5HqX +12/18/2015,Musicians,@bobdylan,"""All I can be is me--whoever that is."" #CuttingEdge https://t.co/nie75Q3MKh" +12/17/2015,Musicians,@bobdylan,"Go watch “Visions of Johanna,” off Bob Dylan’s #CuttingEdge! https://t.co/2N33uxDFjm" +12/15/2015,Musicians,@bobdylan,"""...you almost might not notice that it’s poetry."" - Allen Ginsberg on Bob Dylan #CuttingEdge https://t.co/ENsTLlleae" +12/14/2015,Musicians,@bobdylan,Don’t be a complete unknown. Sing “Like a Rolling Stone” like Bob Dylan: https://t.co/Joax8CfUkR #CuttingEdge https://t.co/MPbqt2qawk +12/13/2015,Musicians,@bobdylan,Hear “Leopard-Skin Pill-Box Hat (Take 8)” from Bob Dylan’s #CuttingEdge https://t.co/RMbYfARI0I +12/12/2015,Musicians,@bobdylan,".@nprmusic on the twelfth installment of Bob Dylan’s Bootleg Series, #CuttingEdge. https://t.co/hC8YKyBx1G" +12/10/2015,Musicians,@bobdylan,Have you picked up your copy of Bob Dylan’s #CuttingEdge? Get it today: https://t.co/fcED104yDh https://t.co/UvPuddfXzi +12/09/2015,Musicians,@bobdylan,Watch the video for Bob Dylan’s “Subterranean Homesick Blues” featuring never-before-seen outtakes: https://t.co/Driyu0qk5E #CuttingEdge +12/08/2015,Musicians,@bobdylan,"""I wrote it. I didn't fail. It was straight."" -Bob Dylan on ""Like a Rolling Stone"" #CuttingEdge https://t.co/rGJW3gLlq2" +12/07/2015,Musicians,@bobdylan,'Shadows in the Night' and 'The Basement Tapes Complete' are nominated for @TheGRAMMYs! https://t.co/PzMpzthlas +12/05/2015,Musicians,@bobdylan,Here’s the new video for Bob Dylan’s “Just Like Tom Thumb’s Blues” #CuttingEdge https://t.co/6mEh83M1K8 +12/04/2015,Musicians,@bobdylan,Watch the premiere of the new video for “Just Like Tom Thumb’s Blues” off #CuttingEdge on @nprmusic: https://t.co/YaiS3Jyfdw +12/02/2015,Musicians,@bobdylan,Here’s how “Stuck Inside of Mobile with the Memphis Blues Again” developed to its final version. #CuttingEdge https://t.co/mq0hT1Qi3Y +11/30/2015,Musicians,@bobdylan,Celebrate today by listening to the original. #CuttingEdge https://t.co/254RY0YRny https://t.co/nI1YFsczOO +11/29/2015,Musicians,@bobdylan,A collection of Bob Dylan concert tickets throughout 1965. Have you attended any of these shows? #CuttingEdge https://t.co/j5hDX1YAq2 +11/28/2015,Musicians,@bobdylan,"""The closest I ever got to the sound I hear in my mind was on individual bands in the 'Blonde on Blonde' album."" https://t.co/uVGddrDy2Q" +11/27/2015,Musicians,@bobdylan,"Get the #CuttingEdge, Bob Dylan outtakes, rehearsals and more from the mid 60’s. https://t.co/254RY0YRny https://t.co/AIuO8y7qLY" +11/25/2015,Musicians,@bobdylan,"D. A. Pennebaker's Dylan documentary, 'Dont Look Back,' is now available in a new deluxe edition from @Criterion! https://t.co/g1F1P1njgE" +11/24/2015,Musicians,@bobdylan,Hear unheard Dylan outtakes and early versions of some of the greatest songs of all time on the #CuttingEdge! https://t.co/YALaMoiRih +11/23/2015,Musicians,@bobdylan,Listen to the previously unreleased 1st take of Subterranean Homesick Blues https://t.co/254RY1gsM8 #CuttingEdge https://t.co/BPVGOmGckh +11/21/2015,Musicians,@bobdylan,Studio is all yours! Play with the stems of “Like a Rolling Stone” just like it was 50 years ago. https://t.co/254RY0YRny #CuttingEdge +11/20/2015,Musicians,@bobdylan,What are your earliest memories of Bob Dylan? #CuttingEdge https://t.co/gKcFe7Kh2g +11/18/2015,Musicians,@bobdylan,Watch to find out where the cover of 'Highway 61 Revisited' was photographed. #CuttingEdge https://t.co/SzAuvnH6jo https://t.co/2TXRrIucM2 +11/17/2015,Musicians,@bobdylan,"""It's impossibly good…how can a human mind do this?"" - Phil Ochs on 'Highway 61 Revisited' #CuttingEdge https://t.co/B1dsZgS3oJ" +11/15/2015,Musicians,@bobdylan,#CuttingEdge highlights one of Dylan's most creative periods! Pick it up on @amazonmusic: https://t.co/SzAuvnpuUO https://t.co/ja5ddY2XOL +11/14/2015,Musicians,@bobdylan,"By '66, Bob Dylan was a musical icon, influencing not only how others sounded but how others dressed! #CuttingEdge https://t.co/m6BD5Lpx8D" +11/12/2015,Musicians,@bobdylan,#CuttingEdge documents Bob Dylan's transition from folk hero to rock and roll legend: https://t.co/SzAuvnpuUO https://t.co/jFTqGlZqor +11/11/2015,Musicians,@bobdylan,"You've never heard ""Subterranean Homesick Blues"" like this! + +#CuttingEdge out now: https://t.co/SzAuvnH6jo https://t.co/SayJFKObDc" +11/11/2015,Musicians,@bobdylan,"UK fans! Missed Paul Sexton playing tracks from #CuttingEdge on @BBCRadio2 over the weekend? Listen here: +https://t.co/2HiV3FBFJi" +11/10/2015,Musicians,@bobdylan,RT @amazonmusic: Bob Dylan collects alternate versions of his classic songs on 'The Best of the Cutting Edge' https://t.co/FMnOkVHDsK https… +11/10/2015,Musicians,@bobdylan,"UK! Want this limited edition of the ""Like A Rolling Stone"" 7”? Buy it from @hmvtweets & get £2 off #CuttingEdge https://t.co/LMWMWeA4Ae" +11/10/2015,Musicians,@bobdylan,#DidYouKnow most of 'Highway 61 Revisited' was recorded in 1 week? https://t.co/254RY0YRny #CuttingEdge https://t.co/Xoek1nxdrl +11/09/2015,Musicians,@bobdylan,#CuttingEdge features 100+ unreleased tracks and the full 16 takes of “Like A Rolling Stone.” Get it here: https://t.co/SzAuvnH6jo +11/09/2015,Musicians,@bobdylan,RT @SonyMusicIre: Ireland!! #CuttingEdge from @bobdylan is in @TowerDublin @HMVIreland @GoldenDiscs Preview: https://t.co/dcTW49ogws https:… +11/08/2015,Musicians,@bobdylan,"#CuttingEdge takes you inside the creative process of “Desolation Row” off ‘Highway 61 Revisited.’ + +gif via @Genius https://t.co/wKEm26ZFqz" +11/07/2015,Musicians,@bobdylan,The limited Collector's Edition of the #CuttingEdge is now available! Get yours here: https://t.co/kM4HGLSDAZ https://t.co/Pkq8vERhpB +11/06/2015,Musicians,@bobdylan,#Exclusive: Now you can make Bob Dylan's “Like a Rolling Stone” your own with #CuttingEdge: https://t.co/254RY1gsM8 https://t.co/aBiVOA9Rfv +11/06/2015,Musicians,@bobdylan,"RT @RollingStone: Remix Bob Dylan's ""Like a Rolling Stone"" using individual song parts on a new site https://t.co/hbCQywnToy https://t.co/K…" +11/06/2015,Musicians,@bobdylan,Bob Dylan's #CuttingEdge which features alternate versions of Dylan classics is out now! https://t.co/TpwEoW1a1l https://t.co/Z949SD0sVl +11/05/2015,Musicians,@bobdylan,UK fans! Buy the @hmvtweets exclusive of “Like A Rolling Stone” 7” single for £4.99 and get £2 off #CuttingEdge! https://t.co/zfiJAg3fSi +11/04/2015,Musicians,@bobdylan,"Listen to Take 3 of Bob Dylan’s ""It Takes a Lot to Laugh, It Takes a Train to Cry” off #CuttingEdge on @esquire​: https://t.co/t3qP6znCdt" +11/03/2015,Musicians,@bobdylan,Check out the premiere of the alt take of “Just Like A Woman” on @Vulture: https://t.co/ynmJnjODSV #CuttingEdge https://t.co/UWrmP9JQ4p +11/02/2015,Musicians,@bobdylan,Watch the world premiere of ‘Visions Of Johanna’ directed by John Hillcoat on @guardian: https://t.co/eoo5jx0mYd #CuttingEdge +11/01/2015,Musicians,@bobdylan,"Get an in-depth look at the limited Collector’s Edition of the #CuttingEdge, out 11/06. Watch here: https://t.co/PS5m62l72J" +10/31/2015,Musicians,@bobdylan,Here’s a closer look at the deluxe edition of Bob Dylan's upcoming #CuttingEdge: https://t.co/s6FC5OMrcK +10/30/2015,Musicians,@bobdylan,The release of Bob Dylan’s #CuttingEdge is one week away! Stream an exclusive sampler on @nprmusic: https://t.co/HSNe0NW5Hz +10/29/2015,Musicians,@bobdylan,Read @uncutmagazine's extensive review of Bob Dylan's #CuttingEdge: https://t.co/Fj51PMduJV https://t.co/TyVrDd2wkI +10/29/2015,Musicians,@bobdylan,"Bob Dylan's secret history! A bonus, 52-page Bootleg Series book comes w/ new @MOJOmagazine +https://t.co/p9x2HjTLII https://t.co/TWZB8y25JV" +10/28/2015,Musicians,@bobdylan,Exclusive Premiere! Listen to “Leopard-Skin Pill-Box Hat” off #CuttingEdge on @YahooMusic: https://t.co/HYWbVu9X4A https://t.co/PCzYh1Moto +10/27/2015,Musicians,@bobdylan,Photographer Jerry Schatzberg search for the 'Blonde on Blonde' cover location https://t.co/Wh8btSFLwO #CuttingEdge https://t.co/VETgTG8wHz +10/27/2015,Musicians,@bobdylan,"Watch the final album cover location video, The Story of the ‘Blonde on Blonde’ cover, on @RollingStone https://t.co/Wh8btSXmVo #CuttingEdge" +10/26/2015,Musicians,@bobdylan,"Earlier, @Genius released ‘Evolution of A Song’ dedicated to Dylan’s classics: https://t.co/hMJA1U5UZn #CuttingEdge https://t.co/smtNFyINYD" +10/26/2015,Musicians,@bobdylan,.@Genius explores the making of Dylan’s classics in new ‘Evolution of A Song.' More on @RollingStone: https://t.co/hMJA1U5UZn #CuttingEdge +10/25/2015,Musicians,@bobdylan,Pre-order your copy of Bob Dylan's #CuttingEdge today: https://t.co/TpwEoW1a1l https://t.co/UngncYwcdA +10/24/2015,Musicians,@bobdylan,"""I'm going back to New York City, I do believe I've had enough…"" + +#CuttingEdge out 11/6! https://t.co/SzAuvnH6jo https://t.co/IgIRrlpg43" +10/23/2015,Musicians,@bobdylan,"""The most influential album of its era..."" -Clinton Heylin on 'Bringing It All Back Home’ #CuttingEdge https://t.co/oTFo8pTdsp" +10/22/2015,Musicians,@bobdylan,#CuttingEdge offers an unprecedented journey into the 14 months in which Bob Dylan changed rock and roll! Pre-order: https://t.co/SzAuvnH6jo +10/21/2015,Musicians,@bobdylan,Priceless! Watch angry fans back in '66 complain about Dylan ‘going electric.’ #CuttingEdge https://t.co/s5Yt1O0ND7 https://t.co/MD4HNq5nlH +10/20/2015,Musicians,@bobdylan,Watch the unreleased version of “Subterranean Homesick Blues” on @coslive: https://t.co/W5iHJ85F4H #CuttingEdge https://t.co/zTFxUimqk9 +10/19/2015,Musicians,@bobdylan,Here’s another track off #CuttingEdge. Listen to Take 1 of “It Takes a Lot to Laugh It Takes a Train to Cry.” https://t.co/HDHQOenpM2 +10/18/2015,Musicians,@bobdylan,"Many covered Bob Dylan's songs in the '60s, but as this ad put it: No one sings Dylan like Dylan. #CuttingEdge http://t.co/YS6ShgKz1z" +10/17/2015,Musicians,@bobdylan,The 3-LP 180-G vinyl of Bob Dylan's #CuttingEdge is now available for pre-order! http://t.co/OtXsql2fyE http://t.co/kMMJbUwYT8 +10/16/2015,Musicians,@bobdylan,Here’s Take 1 of “Can You Please Crawl Out Your Window?” off the upcoming #CuttingEdge: https://t.co/0Mes2gpEW8 +10/15/2015,Musicians,@bobdylan,Watch @PopSpotsNYC​’s Bob Egan break down how the cover of ‘Highway 61 Revisited’ came about. #CuttingEdge https://t.co/ofS07zLugO +10/15/2015,Musicians,@bobdylan,You can now listen to “Can You Please Crawl Out Your Window” off #CuttingEdge exclusively on @thedailybeast: http://t.co/9UWl5xhAqW +10/13/2015,Musicians,@bobdylan,Watch the second album cover location video featuring Bob Dylan’s ‘Highway 61 Revisited’ on @RollingStone: http://t.co/awBHmL7ddH +10/09/2015,Musicians,@bobdylan,"Listen to “Sitting On A Barbed Wire Fence” off Bob Dylan’s upcoming Bootleg Series, The #CuttingEdge: http://t.co/xDUaVnYjdr" +10/08/2015,Musicians,@bobdylan,Listen to the premiere of the alternate version of “Sitting On A Barbed Wire Fence” off #CuttingEdge on @WSJ: http://t.co/Qi5TGuRfjO +10/07/2015,Musicians,@bobdylan,"#CuttingEdge includes the complete 16-take session of “Like A Rolling Stone."" Pre-order: http://t.co/5ZyM327L5S http://t.co/ch8WbWLEiG" +10/06/2015,Musicians,@bobdylan,Read @NYTimes’ coverage of Bob Dylan’s #CuttingEdge: http://t.co/GE9nD7Iq8i http://t.co/dWqs3hQZDz +10/05/2015,Musicians,@bobdylan,"In case you missed it, here’s the story of Bob Dylan’s upcoming Bootleg Series The #CuttingEdge: http://t.co/uJrEUjsmM3" +10/03/2015,Musicians,@bobdylan,#CuttingEdge out November 6th! Pre-order today: http://t.co/7Y3VHpyaOF http://t.co/Fhfak3raTG +10/02/2015,Musicians,@bobdylan,"""...a definitive look at the development of Dylan's plugged-in sound."" - @greeneandy, @RollingStone on #CuttingEdge http://t.co/bmLMXCaGdW" +09/30/2015,Musicians,@bobdylan,Watch the story of the cover of ‘Bringing It All Back Home’ #CuttingEdge http://t.co/ezgiWksgzZ +09/29/2015,Musicians,@bobdylan,Watch @PopSpotsNYC break down the cover of ‘Bringing It All Back Home’ on @RollingStone: http://t.co/qr2P9wugWP http://t.co/l4nvRcu1IV +09/24/2015,Musicians,@bobdylan,#CuttingEdge takes listeners into some of Bob Dylan's legendary studio sessions. Pre-order: http://t.co/7Y3VHpgzX7 http://t.co/31DKlc8Mz6 +09/24/2015,Musicians,@bobdylan,#CuttingEdge takes you inside the studio during the recording of three of Bob’s most iconic albums. http://t.co/uJrEUjaLUv +05/20/2015,Musicians,@bobdylan,"Watch Bob Dylan perform ""The Night We Called It A Day"" from Shadows In The Night on @Letterman: https://t.co/fUXZdibj04" +05/20/2015,Musicians,@bobdylan,Bob Dylan is about to close out The Late Show With David @Letterman. #Shazam to see the new video and more. http://t.co/BDs2Dqy9vP +05/20/2015,Musicians,@bobdylan,"Bob Dylan is performing on tonight’s penultimate episode of the Late Show with David @Letterman , starting now on CBS." +05/19/2015,Musicians,@bobdylan,Don’t miss Bob Dylan performing on The Late Show With David @Letterman tonight at 11:35pm EST on CBS. +05/15/2015,Musicians,@bobdylan,"In a rare TV appearance, Bob Dylan will perform on one of the final @LETTERMAN shows, Tuesday, May 19th at 11:35 PM ET/PT on #CBS." +03/16/2015,Musicians,@bobdylan,"Four live videos from The New Basement Tapes, just released: +http://t.co/DmxOAwU9rV" +03/02/2015,Musicians,@bobdylan,"""The Night We Called It A Day,"" the new video from Bob Dylan's album Shadows In The Night, directed by Nash Edgerton. http://t.co/R2yoYlbxrU" +02/13/2015,Musicians,@bobdylan,"Bob Dylan in conversation with Bill Flanagan, February 2015 + +http://t.co/HI0zXy70iS" +02/12/2015,Musicians,@bobdylan,"Bob Dylan and his Band will perform concerts in the U.S. in April and May + +Tickets on sale next week! + +http://t.co/QF7rNUtq8l" +02/11/2015,Musicians,@bobdylan,"""Shadows in the Night"" becomes a worldwide hit debuting in the top ten in 13 countries! Read more at http://t.co/PxkVlhNzQ6" +02/05/2015,Musicians,@bobdylan,Bob Dylan’s new album “Shadows In The Night” is available now at @BestBuy​. Find it in a store near you: http://t.co/zlgCcruNgd +02/03/2015,Musicians,@bobdylan,"Bob Dylan's new album Shadows In The Night is available now on CD, Vinyl and MP3 on @amazonmusic. Get it today: http://t.co/jXAXMAnT1G" +02/03/2015,Musicians,@bobdylan,"RT @iTunesMusic: Ol’ Blue Eyes would be proud. +@bobdylan goes Sinatra with Shadows In The Night +http://t.co/B0RGMfm2P2 http://t.co/uODOIZD…" +02/03/2015,Musicians,@bobdylan,"Bob Dylan’s first new album in three years, Shadows In The Night, arrives in stores and online today. http://t.co/jXAXMAnT1G" +06/27/2018,Musicians,@MileyCyrus,BFF’S @MarkRonson 🔥🔥🔥 https://t.co/YDJV04CIE3 +06/26/2018,Musicians,@MileyCyrus,https://t.co/8ohDGgIEei +06/26/2018,Musicians,@MileyCyrus,#EndFamilySeperation #KeepFamiliesTogether @happyhippiefdn @supportKIND https://t.co/Kv2lDFGMEn +06/25/2018,Musicians,@MileyCyrus,#ConversePride https://t.co/c13zJNwEjT +06/25/2018,Musicians,@MileyCyrus,thanks for showing your PRIDE rockin the Converse X Miley pride collection!! #ConversePride https://t.co/36loAcWuVu +06/23/2018,Musicians,@MileyCyrus,💚 @wizkhalifa https://t.co/yhUCXSH42X +06/21/2018,Musicians,@MileyCyrus,backstage before my #GeorgeClooneyAFI performance! Airs tonight at 10/9c on TNT! https://t.co/Ct1K6jGo5S +06/21/2018,Musicians,@MileyCyrus,https://t.co/Iq31XI7CAI +06/18/2018,Musicians,@MileyCyrus,NO ONE could ever love you more than I do! Even the thousands would never add up to how much space you take in my s… https://t.co/wrhR8QVk4U +06/17/2018,Musicians,@MileyCyrus,https://t.co/UQQv1fkJWB +06/17/2018,Musicians,@MileyCyrus,Happy Daddy’s Day to the best Dad on the planet! @billyraycyrus https://t.co/BW3wupu3Bx +06/13/2018,Musicians,@MileyCyrus,"RT @fweakysus: @StylishCyrus @MileyCyrus oh yes girllll, u already know i copped!!🌈💖 #ConverseXMiley @MileyCyrus https://t.co/snV3uXcE1C" +06/13/2018,Musicians,@MileyCyrus,Even my trees are GAY! Happy pride! https://t.co/vaIiBf5bud +06/13/2018,Musicians,@MileyCyrus,Stan legends @Wyattish @billyraycyrus https://t.co/8WvhXsRtfF +06/12/2018,Musicians,@MileyCyrus,RT @SofiaChiostri: @MileyCyrus ❤️❤️❤️❤️❤️❤️ https://t.co/JyJTMm3IRU +06/12/2018,Musicians,@MileyCyrus,RT @StylishCyrus: Who got their Miley x Converse Pride Merch?! Tweet me pics! 🌈🌈🌈 #ConverseXMiley @MileyCyrus https://t.co/8BAf4Ogu7w +06/12/2018,Musicians,@MileyCyrus,🌈 https://t.co/u7eEtng9dv +06/11/2018,Musicians,@MileyCyrus,RT @EleLovesBritney: Wrecking Ball @ RomaPride @MileyCyrus 🏳️‍🌈❤️ https://t.co/mJccCYQUjI +06/11/2018,Musicians,@MileyCyrus,"AN ICON + +AND THE FUCKING PRESIDENT https://t.co/newAEGMbYT" +06/11/2018,Musicians,@MileyCyrus,💖🌈 https://t.co/ibsNxt4AQA +06/10/2018,Musicians,@MileyCyrus,"IT’S STILL THE WEEKEND SO PARTY LIKE ME & MURRAY + +Watch us honor the bad ass life and career of George Clooney Jun… https://t.co/Mi0IO2cPFN" +06/09/2018,Musicians,@MileyCyrus,🌈🌈🌈🌈❤️❤️❤️ https://t.co/I4ErmvHRuK +06/09/2018,Musicians,@MileyCyrus,🌈🌈🌈🌈 https://t.co/K8DYuiJMTn +06/09/2018,Musicians,@MileyCyrus,"RT @elizabethforma: Get ready, #BostonPride – @metheridge and I are ready to dance! #RainbowResistance #Pride2018 https://t.co/qnucmd11qf" +06/09/2018,Musicians,@MileyCyrus,.@voguemagazine https://t.co/GlopaCsEdN 🌈 +06/09/2018,Musicians,@MileyCyrus,"RT @voguemagazine: .@MileyCyrus has debuted a special @Converse capsule collection dedicated to #Pride 2018, with all proceeds going to LGB…" +06/06/2018,Musicians,@MileyCyrus,"Share your #prideposterproject with us, and look out for these at your Pride parades. @happyhippiefdn @ItGetsBetter… https://t.co/br9RNhegMB" +06/05/2018,Musicians,@MileyCyrus,https://t.co/bzhwxzwwRX https://t.co/ywfltcUscG +06/05/2018,Musicians,@MileyCyrus,All net proceeds of the Converse Pride collection will support our LGBTQ+ youth community partners globally!… https://t.co/WmYBmL1wI7 +06/05/2018,Musicians,@MileyCyrus,"Happy Pride! 🌈 +@HappyHippiefdn and I support being yourself everyday, and Pride is an extra special time to celebr… https://t.co/Ak2nhZQOhO" +06/02/2018,Musicians,@MileyCyrus,"RT @Spotify: Hey @MileyCyrus, no one can resist the emotional power of ""Wrecking Ball."" Not even the two guys in our new commercial, enjoyi…" +06/02/2018,Musicians,@MileyCyrus,💚💚 @Spotify https://t.co/O7cMLvhICE +06/01/2018,Musicians,@MileyCyrus,Like nappin with floyd 🌈 https://t.co/O5dpgyU3sw +05/31/2018,Musicians,@MileyCyrus,"Always a beautiful start to the day +When a piece of art finds its right & grateful owner https://t.co/85AAH9ZK3H" +05/31/2018,Musicians,@MileyCyrus,step yo pussy up https://t.co/9oW87gfjuv +05/27/2018,Musicians,@MileyCyrus,"Happy Birthday 🎊 @BrandiCyrus +Throwback! Sissy time! Love you! https://t.co/Igh9bdmGwd" +05/25/2018,Musicians,@MileyCyrus,COME THRU 🌞 https://t.co/ntkYgF9CPi +05/24/2018,Musicians,@MileyCyrus,❤️🔥❤️🔥 https://t.co/hnCwRXeqmk +05/24/2018,Musicians,@MileyCyrus,❤️❤️❤️ @chrishemsworth https://t.co/Z2PJqEkRdr +05/22/2018,Musicians,@MileyCyrus,https://t.co/Tw5Dr0x4Ek @jimmykimmellive #kimmel https://t.co/phyNwSxHEr +05/22/2018,Musicians,@MileyCyrus,RT @aliciakeys: Calling every member of #TeamAlicia out there! 🌍 It's all led up to THIS! We need to work together to get @BrittonBuchanan… +05/22/2018,Musicians,@MileyCyrus,RT @jimmykimmel: A trespasser named @MileyCyrus breaks into my house in the middle of the night. #WreckingBall https://t.co/gYHEVvzPKd +05/21/2018,Musicians,@MileyCyrus,RT @JimmyKimmelLive: .@MileyCyrus invades Jimmy’s home TONIGHT! #Kimmel https://t.co/3wwRH5Xe8S +05/21/2018,Musicians,@MileyCyrus,https://t.co/yKbFDOi9UL +05/20/2018,Musicians,@MileyCyrus,"Face Mask ✔️ +Facts AF tee ✔️ +Weed Panties✔️ + +MC Sunday Checklist https://t.co/pIdv8tRkJv" +05/18/2018,Musicians,@MileyCyrus,RT @eltonofficial: Two surprise and very special guests at Elton's final @CaesarsPalace show last night! @MileyCyrus @LiamHemsworth #LasVeg… +05/18/2018,Musicians,@MileyCyrus,https://t.co/b1rVjO0MF1 +05/17/2018,Musicians,@MileyCyrus,Laurel Vs Yammy lol https://t.co/Ew6HwWV5Va +05/16/2018,Musicians,@MileyCyrus,"If this isn’t a definition of a “Time” i don’t know wtf + +#AnEra https://t.co/9EbBfgQHM9" +05/13/2018,Musicians,@MileyCyrus,3 Generations of GO GETTIN’ WOMEN. Happy mother’s day to ALL! https://t.co/CeTm4T2gZe +05/13/2018,Musicians,@MileyCyrus,https://t.co/8b51kKbuvb +05/13/2018,Musicians,@MileyCyrus,"Happy B-Day Mommy @TishCyrus! + +& Happiest Mother’s Day to mamas everywhere! https://t.co/58OjROdJpU" +05/11/2018,Musicians,@MileyCyrus,https://t.co/ZIAo4xhmL1 +05/11/2018,Musicians,@MileyCyrus,https://t.co/qi7obQE4mn +05/11/2018,Musicians,@MileyCyrus,Not killing animals is fucking hot! It’s so much cuter to NOT kill animals! ❤️ https://t.co/6nxrWEgx8d +05/10/2018,Musicians,@MileyCyrus,Kiley Cyrushian https://t.co/cXUxK6BtaG +05/09/2018,Musicians,@MileyCyrus,Happiest Birthday to my baby brother bear! @BraisonCyrus 🐻 🐻🐻🐻 https://t.co/5DgFUc6uw5 +05/09/2018,Musicians,@MileyCyrus,Been in this together since the beginning! Love ya sister @katyperry https://t.co/HPJ2apI8jL +05/09/2018,Musicians,@MileyCyrus,#sustainablestyle @StellaMcCartney https://t.co/uuhxmfHKL1 +05/09/2018,Musicians,@MileyCyrus,"RT @StellaMcCartney: Heavenly bodies! Stella, @MileyCyrus and @rihanna at the 2018 #MetGala last night. + +#HeavenlyBodies #StellaMcCartney h…" +05/08/2018,Musicians,@MileyCyrus,Thank you @StellaMcCartney for having me as your date & shining a bright light on sustainable non violent fashion! https://t.co/kmdeWymxmU +05/08/2018,Musicians,@MileyCyrus,RT @StylishCyrus: I’m dead at @MileyCyrus singing “Jolene” in the very beginning Kim Kardashian’s snap and you can hear her saying “I’m jus… +05/08/2018,Musicians,@MileyCyrus,https://t.co/CPK9OaFXwc +05/08/2018,Musicians,@MileyCyrus,.@StellaMcCartney girls!!! @ParisJackson https://t.co/24mTp37eLO +05/08/2018,Musicians,@MileyCyrus,https://t.co/Tg9ZcWTux6 +05/08/2018,Musicians,@MileyCyrus,https://t.co/iGWxJZTX1Y +05/08/2018,Musicians,@MileyCyrus,https://t.co/wi4txkYu5P +05/07/2018,Musicians,@MileyCyrus,Punk ball! Babies first MET! @marcjacobs 🍒 https://t.co/3hNT2vhRpU +05/07/2018,Musicians,@MileyCyrus,MET with @AlexanderWangNY a few years ago! https://t.co/qYp1be14pR +05/07/2018,Musicians,@MileyCyrus,Lol Bad A$$ @Converse edit! Throwback to my first MET! Can’t wait for tonight! #ConverseXMiley https://t.co/yz4zreGNBt +05/05/2018,Musicians,@MileyCyrus,You taught me how to LOVE without fear of loss... Every second of happiness together....was worth every minute of s… https://t.co/LXjQtQplnr +05/04/2018,Musicians,@MileyCyrus,MOOD AF https://t.co/WyUF4KH75F +05/04/2018,Musicians,@MileyCyrus,who got my #ConverseXMiley collection?? I wanna see y’all in the line!! https://t.co/wVJCHrUqI4 +05/04/2018,Musicians,@MileyCyrus,RT @arviedizon: #MileyXConverse serving Manila traffic some glits and fun. @MileyCyrus @Converse https://t.co/lhLljWrKm7 +05/04/2018,Musicians,@MileyCyrus,"My @Converse line is suppppper cute, you should totally swoop!!!! #ConverseXMiley https://t.co/0ehXp14G1o" +05/03/2018,Musicians,@MileyCyrus,RT @AliGutyy: @MileyOfficial @instagram @Snapchat #MileyXConverse @MileyCyrus ❤️ https://t.co/Y1beZt694m +05/03/2018,Musicians,@MileyCyrus,RT @MyFabulousMiley: @MileyOfficial @instagram @Snapchat I am living for the gifs #ConserveXMiley @Converse @MileyCyrus https://t.co/RXCJe5… +05/03/2018,Musicians,@MileyCyrus,RT @CyrusIsMyVirus: @MileyOfficial @instagram @Snapchat https://t.co/9cWSKmSiMw +05/03/2018,Musicians,@MileyCyrus,RT @MileyCyrusIntl: In Mexico it's also already on sale! 😍💜 #ConverseXMiley @MileyCyrus @Converse https://t.co/8bqwlNjCfb +05/03/2018,Musicians,@MileyCyrus,RT @lauramiley97: Look what I found!!!!! 😱❤️ #MILEYxCONVERSE @Converse @MileyCyrus #SPAIN https://t.co/jB8HTO9FPy +05/03/2018,Musicians,@MileyCyrus,"RT @zacheese1: Converse in SOHO went full out!!!! +Come party in NYC @MileyCyrus! https://t.co/Em9xBHqB1B" +05/03/2018,Musicians,@MileyCyrus,"RT @Francescapanda: OH MY GOD, Bershka in Milan, Italy @MileyCyrus @Converse #MileyXConverse https://t.co/Eclhtw8Mrp" +05/03/2018,Musicians,@MileyCyrus,Bts of my #ConverseXMiley @converse shoot on @Tumblr! https://t.co/Bj9FhlgtLq https://t.co/xomdajWOZC +05/03/2018,Musicians,@MileyCyrus,Don’t forget to check out my @converse collection out now! #ConverseXMiley https://t.co/7cMzAeVLV4 +05/03/2018,Musicians,@MileyCyrus,#ConverseXMiley @wonderlandmag https://t.co/sZhlXXxl3T +05/03/2018,Musicians,@MileyCyrus,RT @wonderlandmag: Who's that chick that's rockin' kicks? 💕 Our Spring cover babe @MileyCyrus has teamed up with @Converse to create the sh… +05/02/2018,Musicians,@MileyCyrus,my #ConverseXMiley @Converse collection is out NOW! https://t.co/soXhDEX5nR to get em!!! 🚨🎉💖 https://t.co/CIxi6zIFec +05/02/2018,Musicians,@MileyCyrus,RT @HeartBeatsMiley: I'm at a loss for words. I can't thank you enough @MileyCyrus for sending me this package and thinking of me. You're s… +05/02/2018,Musicians,@MileyCyrus,wanna thank my awesome fans who were a part of the campaign and everyone who’s got a pair of my #ConverseXMiley col… https://t.co/EdTGLatLr8 +05/02/2018,Musicians,@MileyCyrus,"YAY!!! The #ConverseXMiley @converse collection is out everywhere! + +Shop at https://t.co/soXhDEX5nR! + +❤️ 💰 🎉 https://t.co/Hrjx3eJyqd" +05/02/2018,Musicians,@MileyCyrus,Don’t forget to watch @jimmykimmellive #KIMMEL #ConverseXMiley https://t.co/nis0B0qwrD +05/02/2018,Musicians,@MileyCyrus,🚨 🚨 #ConverseXMiley COLLECTION DROPS AT MIDNIGHT 🚨🚨 @Converse https://t.co/69jc7BcbfM +05/02/2018,Musicians,@MileyCyrus,see y’all soon!! #ConverseXMiley https://t.co/JFFOEYSbQZ +05/02/2018,Musicians,@MileyCyrus,Headed to the grove soon! See ya there #ConverseXMiley https://t.co/YWvh89xIQ0 +05/02/2018,Musicians,@MileyCyrus,Excited to meet my fans @ nordstrom at the grove!!! #ConverseXMiley https://t.co/nGINbFz0Ge +05/01/2018,Musicians,@MileyCyrus,Yup! Bringing some for @JimmyKimmelLive tonight in HIS size! https://t.co/hFcOHK95jz +05/01/2018,Musicians,@MileyCyrus,Can’t wait for everyone to get their #ConverseXMiley!! if you’re in La meet @ the grove at 6! https://t.co/rhRQvJFF1a +05/01/2018,Musicians,@MileyCyrus,LA... Who’s headed to nordstrom at the grove later day?? see you there around 6 ;) #ConverseXMiley @Converse https://t.co/hqswMHvLm9 +05/01/2018,Musicians,@MileyCyrus,#ConverseXMiley https://t.co/KSiRoXHeBN +05/01/2018,Musicians,@MileyCyrus,my bad ass fans modeling my @converse collection! OUT MAY 2! #ConverseXMiley https://t.co/Be5IU8aKI8 +05/01/2018,Musicians,@MileyCyrus,CATCH ME ON @JimmyKimmelLive TONIGHT AT 11:35|10:35c TO TALK ABOUT MY @Converse COLLECTION 💖💖 (Ps how cute are my b… https://t.co/iCMehPr9Xt +05/01/2018,Musicians,@MileyCyrus,OUT MAY 2. #ConverseXMiley @Converse https://t.co/HfFtnebHUu +04/30/2018,Musicians,@MileyCyrus,#ConverseXMiley https://t.co/PuolTo2D82 +04/29/2018,Musicians,@MileyCyrus,"IM NOT SORRY + +Fuck YOU #10yearsago https://t.co/YTJmPHKwLX" +04/29/2018,Musicians,@MileyCyrus,Sooo Harpers Bazaar https://t.co/XFjuIdfiHB +04/29/2018,Musicians,@MileyCyrus,Feeling myself... I’ll never forget the day I got this shirt from Fred Segal https://t.co/jpQ3rAocHO +04/29/2018,Musicians,@MileyCyrus,A picture says 1000 words... but this one only says two... FUCK YOU https://t.co/57JJZIDCbV +04/29/2018,Musicians,@MileyCyrus,Being extra AF! Thanks mom! @tishcyrus https://t.co/1iiBnxjY3O +04/27/2018,Musicians,@MileyCyrus,Slay diva! https://t.co/u3QXEb01bQ +04/24/2018,Musicians,@MileyCyrus,"Partyin w @LykkeLi +Bringing her some cons as a “fuck yeah bad ass record” present https://t.co/OUtRcH3lL8" +04/24/2018,Musicians,@MileyCyrus,Last night w big sis was LIT @aliciakeys https://t.co/55tAsYYzj9 +04/22/2018,Musicians,@MileyCyrus,I fucking hate when he does this shit https://t.co/kpmcHnW4Cz +04/22/2018,Musicians,@MileyCyrus,Happy Sunday! Have fun and get as me$$y as my hurr! https://t.co/hshMSmbU3g +04/20/2018,Musicians,@MileyCyrus,Mood! BECUZZ ‘Party In The USA’ is now #BRITcertified Platinum! 👅🇬🇧💿 https://t.co/dEvuJdRgtu +04/18/2018,Musicians,@MileyCyrus,https://t.co/fG2oeeBDLB +04/16/2018,Musicians,@MileyCyrus,HomeCHELLA! https://t.co/6RnCq6jKEu +04/14/2018,Musicians,@MileyCyrus,Guess where I’m at! https://t.co/VhtEEcxmqz +04/11/2018,Musicians,@MileyCyrus,💋👅💋👅 @eltonofficial https://t.co/ilgFI86rcg +04/11/2018,Musicians,@MileyCyrus,"RT @eltonofficial: I didn’t know about those fabulous glasses until @MileyCyrus put them on. Needless to say, I wanted a pair for myself! E…" +04/11/2018,Musicians,@MileyCyrus,RT @eltonofficial: Here we go and what a way to start this #EltonSalute! @MileyCyrus gives her all to everything she does and she took the… +04/11/2018,Musicians,@MileyCyrus,RT @eltonofficial: A superstar #EltonSalute begins in one hour with Elton John: I'm Still Standing - A GRAMMY® Salute! 9/8pm CT only on @CB… +04/10/2018,Musicians,@MileyCyrus,Tune in tonight! @RecordingAcad CBS https://t.co/kTiGecZAZw +04/08/2018,Musicians,@MileyCyrus,Thanks for a rockin night @MFPLA !!!! https://t.co/NjWu9EoG0A +04/08/2018,Musicians,@MileyCyrus,"Freaking out! @jackblack +The MFP gala has only been over for an hour & “Dude... I totally miss you...” https://t.co/gM2akiOrHh" +04/06/2018,Musicians,@MileyCyrus,https://t.co/oQj5qr6bel https://t.co/EMm1jBhXO4 +04/06/2018,Musicians,@MileyCyrus,BTS up! https://t.co/X11tlJq1RH https://t.co/Q310ViWXPY +04/06/2018,Musicians,@MileyCyrus,two new @eltonofficial covers for my fans… hope you like! ❤️❤️ https://t.co/mKFKy0FxDa #EltonREVAMP +04/06/2018,Musicians,@MileyCyrus,"RT @eltonofficial: A #NewMusicFriday with @edsheeran, @ladygaga, @QOTSA, @MileyCyrus + many more superstars all on one album! Join our #Elt…" +04/06/2018,Musicians,@MileyCyrus,Check out my reimagined cover of ‘Don’t Let The Sun Go Down On Me’ taken from REVAMP an album celebrating the songs… https://t.co/VvwCRNbZ5n +04/06/2018,Musicians,@MileyCyrus,#EltonREVAMP @eltonofficial https://t.co/4BB7Fw5MnA +04/01/2018,Musicians,@MileyCyrus,@iHeartRadio ❤️🐰❤️🐰 +04/01/2018,Musicians,@MileyCyrus,https://t.co/Cx5VLbjBNY +04/01/2018,Musicians,@MileyCyrus,Hoppy Eastahhhhh! https://t.co/hDJInanRNg +04/01/2018,Musicians,@MileyCyrus,https://t.co/wwRqqyVlon +03/31/2018,Musicians,@MileyCyrus,Check out my tumblr https://t.co/6LZZIKjvRu for BTS pics from my Easter shoot! https://t.co/VaQRX8WPdA +03/30/2018,Musicians,@MileyCyrus,Have a Hoppy Easter!!! https://t.co/Q3uVmZrBWo +03/30/2018,Musicians,@MileyCyrus,https://t.co/bIVkuBYX88 +03/30/2018,Musicians,@MileyCyrus,❤️🐰❤️🐰 https://t.co/55atM9Coiz +03/30/2018,Musicians,@MileyCyrus,@Z100NewYork @ArianaTodayNet ❤️❤️❤️❤️ +03/30/2018,Musicians,@MileyCyrus,Hoppy Easter Erbody! https://t.co/kgc1y9wuW5 +03/30/2018,Musicians,@MileyCyrus,https://t.co/6jU6k55l5N +03/30/2018,Musicians,@MileyCyrus,https://t.co/xmdUN3x7xb +03/30/2018,Musicians,@MileyCyrus,🐰🐰🐰 https://t.co/jbmUcv1Rs1 +03/30/2018,Musicians,@MileyCyrus,https://t.co/A6dXCaJ7M1 +03/30/2018,Musicians,@MileyCyrus,https://t.co/WL6hyms8wF +03/30/2018,Musicians,@MileyCyrus,https://t.co/nrw7A7CQm3 https://t.co/9XDxWjiPkw +03/27/2018,Musicians,@MileyCyrus,👅 Like mommy like daughter... https://t.co/rsO1B6qrvt +03/26/2018,Musicians,@MileyCyrus,love to make it to a show 💖 https://t.co/6gVIOS0NoJ +03/25/2018,Musicians,@MileyCyrus,Never Again! Gonna post pics from DC on my tumblr ! ❤️ https://t.co/X11tlJq1RH https://t.co/lM72JXqTBc +03/25/2018,Musicians,@MileyCyrus,@TheEllenShow ❤️❤️❤️ +03/25/2018,Musicians,@MileyCyrus,Look at how beautiful everyone in this crowd is!!!! Singing with all their heart! Makes me so happy and honored to… https://t.co/jPXohFNPha +03/25/2018,Musicians,@MileyCyrus,"our open wounds , on all our hurt , anger and resentment..... it was a beautiful day to experience.... that stage h… https://t.co/EXAjDQfnpr" +03/25/2018,Musicians,@MileyCyrus,I will never forget this moment..... don’t forget this feeling of unity we had the joy of experiencing yesterday...… https://t.co/zukJwEYfBR +03/24/2018,Musicians,@MileyCyrus,Been friends forever & happy to stand with you on important days like this! https://t.co/gtb5GnFaDp +03/24/2018,Musicians,@MileyCyrus,https://t.co/BRtkTur1QE +03/24/2018,Musicians,@MileyCyrus,https://t.co/uqvQjYX4LN +03/24/2018,Musicians,@MileyCyrus,"RT @AMarch4OurLives: Watch LIVE as we #MarchForOurLives in the streets of Washington, DC to demand that we end gun violence and mass shooti…" +03/24/2018,Musicians,@MileyCyrus,"If you can't join us at #MarchForOurLives today, watch LIVE starting at 12pm EST on https://t.co/sxLIqHxnXN" +03/24/2018,Musicians,@MileyCyrus,Selfies and Licks w @noahcyrus ! It’s a very special morning #MarchForOurLives https://t.co/aWuFWweOKt +03/24/2018,Musicians,@MileyCyrus,Millennials taking over! 🖤 #MarchForOurLives https://t.co/Kuj2uBQYtB +03/24/2018,Musicians,@MileyCyrus,Surrounded by heroines! Lucky to be here at this moment in history with the ones I love! #MarchForOurLives https://t.co/xVF4sDVofh +03/24/2018,Musicians,@MileyCyrus,These lyrics mean more to me now than ever. I won’t ever give up & neither will the millions that march with us tod… https://t.co/ml9jAjww7e +03/24/2018,Musicians,@MileyCyrus,NEVER AGAIN! We call BS! Love Wins! https://t.co/cfA91u5tm8 +03/24/2018,Musicians,@MileyCyrus,Proud to be apart of the #MarchForOurLives here in DC! ❤️❤️❤️ https://t.co/ZXKnEFyR28 +03/23/2018,Musicians,@MileyCyrus,Meeting the amazing #SHINEMSD group! Can’t wait for their performance https://t.co/Ge9vbAhOu2 +03/23/2018,Musicians,@MileyCyrus,Be there!!! https://t.co/HsxTbsXYoM https://t.co/yc4NZEaxiX +03/23/2018,Musicians,@MileyCyrus,Big sissy day! So happy @BrandiCyrus is with me for such a special moment! #MarchForOurLives PS I Love DC! Such an… https://t.co/rdR8vuSmBr +03/23/2018,Musicians,@MileyCyrus,So excited to be here and apart of the @AMarch4OurLives! #MSDStrong #NeverAgain https://t.co/1XemF2VdgG +03/23/2018,Musicians,@MileyCyrus,Happiest Bday 2 THE dude! @MikeWiLLMadeIt My life is complete because you’re in it! Let’s keep makin HITz till we’r… https://t.co/VVrM38sCrp +03/20/2018,Musicians,@MileyCyrus,So inspired by the incredible students behind #MarchForOurLives. Can’t wait to join them in DC to perform and show… https://t.co/ViP9HFLw8R +03/20/2018,Musicians,@MileyCyrus,Thanks dude! ❤️❤️❤️❤️ https://t.co/1tQYaOuHha +03/20/2018,Musicians,@MileyCyrus,https://t.co/GtLNq6RqQe +03/20/2018,Musicians,@MileyCyrus,BE YOU 2 FUL #BeautyTime https://t.co/TVU5djA5BP +03/20/2018,Musicians,@MileyCyrus,Pamper YoSELF! #DateNightWithME! https://t.co/ZqenP7SWms +03/19/2018,Musicians,@MileyCyrus,RU-TOX! Perfect start to a week! Is watching old @RuPaulsDragRace episodes you’ve seen a million times and sweatin… https://t.co/MSPGjOBD1F +03/19/2018,Musicians,@MileyCyrus,"Fun is a rainbow +Friends are the pot of gold! https://t.co/TpGClsMeQq" +03/17/2018,Musicians,@MileyCyrus,https://t.co/nSGYWCImul +03/17/2018,Musicians,@MileyCyrus,RFD @OffsetYRN @iamcardib https://t.co/AOvYlJJThH +03/17/2018,Musicians,@MileyCyrus,https://t.co/RDzsP3FDWo +03/17/2018,Musicians,@MileyCyrus,Itszzzzz EZ being green! Happy St Pattys https://t.co/A8PCR0VAq0 +03/16/2018,Musicians,@MileyCyrus,https://t.co/42iunNnGeD https://t.co/VQzWOwMbIS +03/16/2018,Musicians,@MileyCyrus,.@shineMSD #MSDStrong #NeverAgain @AMarch4OurLives 💛💛💛 @happyhippiefdn +03/16/2018,Musicians,@MileyCyrus,"Please support the powerful message of change, unity and healing from student survivors of the #StonemanDouglas sho… https://t.co/B5jxkUd1vy" +03/16/2018,Musicians,@MileyCyrus,https://t.co/vv1scZaAhL +03/15/2018,Musicians,@MileyCyrus,"I’ve never wanted to be boxed in by anything, especially genre, and @eltonofficial gave me the freedom to participa… https://t.co/sKkKANr0gy" +03/14/2018,Musicians,@MileyCyrus,https://t.co/REXBbq1yfA +03/14/2018,Musicians,@MileyCyrus,"Proud of all of you! Never give up! You are THE change! + +So amazing to see young peo… https://t.co/sOiFn1EQAM" +03/13/2018,Musicians,@MileyCyrus,https://t.co/iu20fBpqi2 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack https://t.co/0tY7aAVfQ9 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack https://t.co/vUZvC3XLD0 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack April 10th on CBS! @eltonofficial #ImStillStanding #GRAMMYSalute https://t.co/YGNcWWcSOJ +03/13/2018,Musicians,@MileyCyrus,"Proud to be opening the I’m Still Standing @eltonofficial #GRAMMYSalute April 10 at 9p.m., ET/PT on @CBS. Don't miss it! #BitchIsBack" +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack Announcement today! @eltonofficial https://t.co/nmRBUwD6MD +03/08/2018,Musicians,@MileyCyrus,Happy International Women’s Day! https://t.co/PMOsOuwI86 +03/07/2018,Musicians,@MileyCyrus,https://t.co/Bj9FhlgtLq 💋 https://t.co/TevKrnXOZY +03/07/2018,Musicians,@MileyCyrus,Behind the scene of @wonderlandmag !!! Check out more pics on my tumblr! https://t.co/Bj9Fhly5a0 https://t.co/nGEzFERiBc +03/06/2018,Musicians,@MileyCyrus,https://t.co/wLOTq2SToc +03/05/2018,Musicians,@MileyCyrus,https://t.co/ahhHIv8KU6 +03/05/2018,Musicians,@MileyCyrus,https://t.co/ehLyA03vrx +06/29/2018,Musicians,@kelly_clarkson,Yaaasssss!!!! Please let me know when y’all play in LA!! So proud of y’all!!!! https://t.co/nHLeYeqyhn +06/26/2018,Musicians,@kelly_clarkson,"✨Well that was fun @radiodisney Music Awards! ✨ - Team KC + +https://t.co/fVjdNpbqgL" +06/26/2018,Musicians,@kelly_clarkson,Now we are ready for the 4th of July. Thanks @Macys 😜 🎆 – Team KC https://t.co/Vt1jU2voGG +06/23/2018,Musicians,@kelly_clarkson,Y’all ready?! The 2018 @radiodisney Music Awards airs tonight at 8:00 pm ET/PT on the @DisneyChannel ! – Team KC https://t.co/QjephGLhq4 +06/20/2018,Musicians,@kelly_clarkson,"🔥Have y’all seen this!? Watch Kelly perform “Heat” live in the studio! 🔥 – Team KC + +https://t.co/DNDoPlOnJH" +06/15/2018,Musicians,@kelly_clarkson,We love the @iHeartRadio Music Festival! It’s a great weekend and we hope to see you there! Get your… https://t.co/uYnjJFl5au +06/15/2018,Musicians,@kelly_clarkson,I’m thrilled to be part of this incredible track by @DanAndShay ! Check out #KeepingScore today and stay tuned for… https://t.co/wOAT1R43ZV +06/15/2018,Musicians,@kelly_clarkson,Is it odd that going to the bathroom for a parent feels sort of like a tiny vacation just for you away from tiny hu… https://t.co/gPteQcWaNN +06/14/2018,Musicians,@kelly_clarkson,"Make sure to watch the @radiodisney music awards #RDMA Saturday, June 23 at 8p on @DisneyChannel! – Team KC https://t.co/YbLCcrxQ20" +06/14/2018,Musicians,@kelly_clarkson,RT @boringcompany: We’re really excited to work with the Mayor and the City to bring this new high-speed public transportation system to Ch… +06/13/2018,Musicians,@kelly_clarkson,Y’all! Kelly is up for a #TeenChoice @TeenChoiceFox Award! RETWEET this to vote for @kelly_clarkson as… https://t.co/NEyRrbRzug +06/13/2018,Musicians,@kelly_clarkson,RT @TeenChoiceFOX: Get ready to move those thumbs — voting is officially OPEN for the 2018 #TeenChoice Awards! 🙌🎉 Submit your vote by tweet… +06/13/2018,Musicians,@kelly_clarkson,🤣🤣🤣💁🏼‍♀️ https://t.co/wzRZgMB4Mo +06/13/2018,Musicians,@kelly_clarkson,"Yes, but the first computer was enormous and now one fits in my back pocket.... so I’m just saying we can’t be that… https://t.co/1GVKOFoCw3" +06/13/2018,Musicians,@kelly_clarkson,Yes!! https://t.co/kq71MjObhU +06/12/2018,Musicians,@kelly_clarkson,Who wants to celebrate July 4th with us?! Don’t miss Kelly’s #MacysFireworks performance on @nbc ! 🎆 - Team KC https://t.co/c1l1rDpiEn +06/12/2018,Musicians,@kelly_clarkson,Once they do figure it out imagine the possibilities 4 not only all forms of transportation but solar everything. I… https://t.co/swCXz9nzuf +06/12/2018,Musicians,@kelly_clarkson,Ooh Audi is doing it! Thanks @jasonhalbert for the info. https://t.co/0Zvcbg1QLv +06/12/2018,Musicians,@kelly_clarkson,"Hahaha! Okay, but imagine all the money you spend regularly on gas. I haven’t been to a gas station in like 3 years… https://t.co/suIn3zlHWw" +06/12/2018,Musicians,@kelly_clarkson,This is probably a dumb question but why doesn’t @Tesla install their solar energy capabilities on their cars? Then… https://t.co/nBJ6LopaRc +06/09/2018,Musicians,@kelly_clarkson,Loving my recent pick. Great read! #KCBookClub #NerdsAreCool 😜 https://t.co/PfPi1eDbga +06/09/2018,Musicians,@kelly_clarkson,Proud of you @AlexaCappelli now go conquer the world! 😊🙌😎👣👩🏼‍🎓🎤 https://t.co/ymZ2ziTvlr +06/09/2018,Musicians,@kelly_clarkson,Congrats @BrittonBuchanan and proud mama @Sybuchanan1 😊🙌 https://t.co/2kqxIC5Emw +06/08/2018,Musicians,@kelly_clarkson,So proud of my girl @BrynnCartelli for killing it on @TODAYshow this morning. https://t.co/CDwv6LqGqi +06/08/2018,Musicians,@kelly_clarkson,Sweet.... where does one enter to sing with you? #AskingForAFriend 😏 https://t.co/cswrZ7jawn +06/08/2018,Musicians,@kelly_clarkson,Tonight’s the night for @americanwomantv ! Now we can watch the premiere tonight at 10/9c on @paramountnet . - Team… https://t.co/1tiklyndHI +06/07/2018,Musicians,@kelly_clarkson,"RT @Shazam: #Shazam @kelly_clarkson's performance on the @TODAYshow tomorrow morning for the chance to win a signed limited edition gold ""M…" +06/07/2018,Musicians,@kelly_clarkson,I FINALLY GOT BLAKE TO HOLD UP HIS END OF THE DEAL AND CALL ME QUEEN FOR WINNING!! 🤣🤣 LOVED that it happened at his… https://t.co/Lr7hkjDyVK +06/07/2018,Musicians,@kelly_clarkson,She is one of my favorites 😊 nothing like a girl in jeans simply singing a great song and creating an intimate envi… https://t.co/8J9YCOTvJl +06/06/2018,Musicians,@kelly_clarkson,In case you missed it! ✨ Kelly is officially performing at the @CMT Music Awards TONIGHT!! #AmericanWoman ✨ - Team… https://t.co/VlLX1PB3en +06/06/2018,Musicians,@kelly_clarkson,I’m gonna buy it on iTunes and vinyl!! #SupportArt #FanForLife 🙌💁🏼‍♀️ https://t.co/W6V9iI7KoH +06/06/2018,Musicians,@kelly_clarkson,Exactly! 😂 https://t.co/4gPkpqqpJv +06/06/2018,Musicians,@kelly_clarkson,Yaaassss!!! See y’all soon!! ❤️😊 https://t.co/c7e7LkiNZm +06/06/2018,Musicians,@kelly_clarkson,Yes and yes!!! From this video alone I am certain we could be friends 🤣💁🏼‍♀️😎 https://t.co/A2fTwqUzK7 +06/06/2018,Musicians,@kelly_clarkson,LOVE these two!! https://t.co/p07UU4y3CX +06/06/2018,Musicians,@kelly_clarkson,If it had anything to do with poking fun at me I full on give you permission 🤣💁🏼‍♀️ #LetBobbyTellHisJoke… https://t.co/Xm7jdexLOa +06/06/2018,Musicians,@kelly_clarkson,@ZacharyRob37 @carrieunderwood I’m so sorry. The love received from a four-legged friend is priceless. +06/05/2018,Musicians,@kelly_clarkson,Thank you @carrieunderwood This apparel cake idea was adorable! I’m just now receiving it because it’s been at Star… https://t.co/iifDDzFWdr +06/05/2018,Musicians,@kelly_clarkson,Um.... I am incredibly excited about this!! 🎉🙌❤️ https://t.co/pkQBgXwlwq +06/05/2018,Musicians,@kelly_clarkson,🌈 Happy Pride Month 🌈 Shop the Official Webstore now to get your FREE gift with any purchase at… https://t.co/krxpTXizyy +06/05/2018,Musicians,@kelly_clarkson,Come be in the PIT while Kelly performs at the 2018 CMT Music Awards on June 6! Request FREE tickets to join her v… https://t.co/JzsOwpvAFF +06/04/2018,Musicians,@kelly_clarkson,This little nugget has me wrapped around his little finger ❤️💁🏼‍♀️😊 #RemyB #FarmLife https://t.co/lK0C4GnD2d +06/04/2018,Musicians,@kelly_clarkson,Love it @JmpSings #LoveNHate get it girl!! 🙌❤️ https://t.co/0C0CzM6OPS +06/03/2018,Musicians,@kelly_clarkson,Thanks for having me again #WarriorGames It’s always an honor to perform for y’all and it’s always a great time!… https://t.co/kPgiuxT5UN +06/02/2018,Musicians,@kelly_clarkson,"Um.... YES!! Also, I can’t wait to see @gwenstefani in Vegas!!! https://t.co/b3EHwsWx99" +06/02/2018,Musicians,@kelly_clarkson,This might be my new favorite tweet 🤣 #ChristmasInJune #NeverTooSoon https://t.co/94ZsPANevf +06/02/2018,Musicians,@kelly_clarkson,Tweet 💁🏼‍♀️ https://t.co/5mfPm6cL6G +06/02/2018,Musicians,@kelly_clarkson,Yes ladies!! Can’t wait to do this live!! 😎 https://t.co/xzJAbe9NnE +06/01/2018,Musicians,@kelly_clarkson,Had such a great time @topgolf #Nashville 🙌❤️👍 if you haven’t been you HAVE to go!! #TheLeague #RockyRocks ❤️#IActuallyWasntHorrible 💁🏼‍♀️ +05/30/2018,Musicians,@kelly_clarkson,Absolutely nothing is wrong with natural. I sport it every day of my life unless I’m working because at the end of… https://t.co/LeKADYhy08 +05/30/2018,Musicians,@kelly_clarkson,Oh my gosh you’re hilarious! 🤣 if I could I would totally be there! Y’all go check out my boy @WILKESmusic 😎 https://t.co/RANoA1QnzM +05/30/2018,Musicians,@kelly_clarkson,Yes!!! #WalkMyWay @BrynnCartelli https://t.co/9AodXxsqXY +05/29/2018,Musicians,@kelly_clarkson,The night @BrynnCartelli won #TheVoice me & my glam squad decided show people the before/after so every little girl… https://t.co/Rh9NYYcxxB +05/29/2018,Musicians,@kelly_clarkson,Is it just me or is @ChrisStapleton looking at me in this picture longing to sing a duet with me?? 🤣💁🏼‍♀️😎… https://t.co/ZOAD1jBHhn +05/29/2018,Musicians,@kelly_clarkson,@jasonhalbert + @iamjessicollins = How that monologue happened 🙌❤️ and it was so much fun!! https://t.co/Omo7XDcuG8 +05/29/2018,Musicians,@kelly_clarkson,Yes!! 🎉🎉🎉❤️❤️❤️🙌🙌🙌😎😎😎 https://t.co/dyUW9XtmUh +05/29/2018,Musicians,@kelly_clarkson,"I think I’m gonna take a chance and kiss him ..... +💁🏼‍♀️ https://t.co/7SVApgP3KJ" +05/27/2018,Musicians,@kelly_clarkson,Thank you so much @IMS for having me!! Y’all know how to have good time 😜 #Indy500 https://t.co/bD0FUMPRN7 +05/27/2018,Musicians,@kelly_clarkson,YES WE CAN!!! C’mon y’all #SameOleJaneDoe https://t.co/2g7fhK8VRc +05/27/2018,Musicians,@kelly_clarkson,Oh my gosh I just saw @JohnMayer new video for #NewLight and it’s my favorite thing EVER!!! You are the funniest pe… https://t.co/aKyXZTdXBZ +05/27/2018,Musicians,@kelly_clarkson,Yes girl 😜 I call it the #ModernMullet https://t.co/5pUXVJWRqc +05/27/2018,Musicians,@kelly_clarkson,"Anyone trying out 4 #TheVoice next season that sounds remotely like this angel, I want u on my team! Please pick me… https://t.co/6m1BB8UiY4" +05/24/2018,Musicians,@kelly_clarkson,@BrynnCartelli @NBCTheVoice @TwitterLA #AskBrynn What are some of your favorite artists that I know you love but ma… https://t.co/PEVJGgWjem +05/24/2018,Musicians,@kelly_clarkson,"@kalebleemusic @itsjackieverna @BairdPryor I missed y’all on the finale BUT that’s okay, it just means I’ll have to… https://t.co/yMElE1iq3p" +05/23/2018,Musicians,@kelly_clarkson,@CedEntertainer is so competitive 😜🤣💁🏼‍♀️ https://t.co/7eH0rswhpb +05/23/2018,Musicians,@kelly_clarkson,"We did it.. and we couldn’t have done it without y’all!! As a special thank you, use code ‘BRYNNFORTHEWIN’ for a sp… https://t.co/4WTedqYRtC" +05/23/2018,Musicians,@kelly_clarkson,So lovely to see you girl! Love the new hair and you sounded amazing! https://t.co/sLpywQyotQ +05/23/2018,Musicians,@kelly_clarkson,"Y’all can now go behind the scenes of the “Meaning Of Life” music video! Check it out! + +Watch it here: https://t.co/q2oZ9UAkcq + +- Team KC" +05/23/2018,Musicians,@kelly_clarkson,We did it y’all!!! @BrynnCartelli is your Season 14 winner of @NBCTheVoice !! 🌟 - Team KC https://t.co/TgvEzXRyWs +05/23/2018,Musicians,@kelly_clarkson,✨We can’t wait for this y’all! Kelly is officially performing at the @CMT Awards!! #AmericanWoman ✨ - Team KC https://t.co/1lmkcvCaRP +05/23/2018,Musicians,@kelly_clarkson,OH MY GOSH I AM SO HAPPY FOR HER HODA!!!!! https://t.co/ULT4KAdIis +05/23/2018,Musicians,@kelly_clarkson,Because you’re always so supportive! Thank you for being so kind and funny 😊🙌😎❤️ https://t.co/5MlVkZ7mWU +05/23/2018,Musicians,@kelly_clarkson,"Um I completely rushed the stage to meet you because I’m such an uber fan! 🤣 Seriously, what an amazing gift it was… https://t.co/9OLKuTxgnE" +05/23/2018,Musicians,@kelly_clarkson,YAAASSSSS #TeamKelly thank y’all so much for making my world work and for being supportive and loving and such awes… https://t.co/GQxBbnSol3 +05/23/2018,Musicians,@kelly_clarkson,The Voice Finale outfit!! ✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Nails: @nailsbytsha Dre… https://t.co/YBpWmR0gNm +05/22/2018,Musicians,@kelly_clarkson,Yaaasssss @itsjackiefoster 🎉🎉🙌🙌❤️❤️ #WalkMyWalk https://t.co/VE3DFzpIh5 +05/22/2018,Musicians,@kelly_clarkson,"In case you missed the @BBMAs check out Kelly’s performance of “Whole Lotta Woman”! + +See it here: https://t.co/ApulU4MTyO + +– Team KC" +05/22/2018,Musicians,@kelly_clarkson,I can’t wait!! 😊🎉🙌💁🏼‍♀️❤️ https://t.co/mHomKwYMc3 +05/22/2018,Musicians,@kelly_clarkson,Yes. Yes it was. 🤣🤣🤣 https://t.co/9tJgcX0LVg +05/22/2018,Musicians,@kelly_clarkson,ABSOLUTELY YES!!!! https://t.co/AcrF5mY71Q +05/22/2018,Musicians,@kelly_clarkson,"Don’t mind me, just jammin’ to my girl @BrynnCartelli new single #WalkMyWay YAAASSSSS!!!! 🎉🙌❤️😎 I love this girl y’… https://t.co/qqu7UBNMdF" +05/22/2018,Musicians,@kelly_clarkson,The @NBCTheVoice finale is here! Do y’all remember the jersey’s that were given to contestants in the blind auditio… https://t.co/3TxroiU1Vf +05/21/2018,Musicians,@kelly_clarkson,Can’t wait to hang in New York soon! Miss y’all 😊💁🏼‍♀️❤️ #TodayShow #KathieLeeAndHoda #GoodTimesPartyForAll https://t.co/JZUp0TR2zv +05/21/2018,Musicians,@kelly_clarkson,I CANNOT WAIT FOR TONIGHT!BRYNN’S NEW SINGLE #WalkMyWay duet #DontDreamItsOver new cover #Skyfall BRYNN 4 THE WIN Y… https://t.co/FpxnIjS7te +05/21/2018,Musicians,@kelly_clarkson,"You and your team are so rad man! Everything you make me is so unique, sassy, and gorgeous!! Thank you again… https://t.co/JPYMF76M3V" +05/21/2018,Musicians,@kelly_clarkson,"Sir, coming from you that is quite the compliment 😊❤️ https://t.co/1Ufm62pZC2" +05/20/2018,Musicians,@kelly_clarkson,✨ Here we go @BBMAs ! #BBMAs ✨ -Team KC https://t.co/PE9U8RLjeP +05/20/2018,Musicians,@kelly_clarkson,I love this @ambersauer 🎉🎉🎉🙌❤️ https://t.co/s0F0nCSPMI +05/18/2018,Musicians,@kelly_clarkson,"Check this out! You can now duet with Kelly on @smule ! Sing ""I Don't Think About You"" and ""Whole Lotta Woman""! –… https://t.co/2b8stYYjoY" +05/18/2018,Musicians,@kelly_clarkson,I wish!! I loved y’alls performance! Y’all had me dancing and singing 😆🎉❤️ https://t.co/dHyU4QYHym +05/18/2018,Musicians,@kelly_clarkson,Love this ❤️ killer job @DBradbery https://t.co/gaWb27i8Ju +05/18/2018,Musicians,@kelly_clarkson,Are you guys ready for the @BBMAs this Sunday?! #BBMAs – TEAM KC https://t.co/G5O08ts0Wj +05/18/2018,Musicians,@kelly_clarkson,THANKS GIRL ❤️😊 I’ve been a fan since #Clueless https://t.co/sxAvRL15OH +05/18/2018,Musicians,@kelly_clarkson,My disco diva nailed her first performance ever!! #RiverRose #ProudMomAlert 😊❤️ kid concerts are the greatest! https://t.co/VSoUqKY3qM +05/17/2018,Musicians,@kelly_clarkson,✨The premiere of @AmericanWomanTV is almost here! Tune in June 7th at 10/9c on @Paramountnet #AmericanWomanTV ✨- T… https://t.co/bfM8s1iBy3 +05/16/2018,Musicians,@kelly_clarkson,This ❤️🙏😊 #TeamKalebForever https://t.co/0o10JSENyY +05/16/2018,Musicians,@kelly_clarkson,We are behind the scenes at the @BBMAs photoshoot! Catch Kelly hosting AND performing on MAY 20th! #BBMAs - Team KC https://t.co/v51SgofFks +05/16/2018,Musicians,@kelly_clarkson,I’m not even sad for @kalebleemusic tonight because this is just the beginning and he was incredible tonight! Thank… https://t.co/mGSehaOeM5 +05/16/2018,Musicians,@kelly_clarkson,RT @NBCTheVoice: Retweet to #VoiceSaveKaleb https://t.co/aS7tLQEL5K +05/16/2018,Musicians,@kelly_clarkson,Please y’all! Let’s save @kalebleemusic ! Make sure to use #VoiceSaveKaleb when the voting window opens! We need as… https://t.co/M1Q7PcozUR +05/16/2018,Musicians,@kelly_clarkson,Get ready to Instant Save @kalebleemusic on @NBCTheVoice !!! Wait until the voting window opens! Let’s save him! +05/15/2018,Musicians,@kelly_clarkson,YAAASSSS!!!! https://t.co/80xM7vo7Ar +05/15/2018,Musicians,@kelly_clarkson,I love all this female power and energy!! Yes ladies!! #TeamBrynn 😊❤️😎 https://t.co/yqlrDqZIfw +05/15/2018,Musicians,@kelly_clarkson,HELL YES!!!! https://t.co/8KqwB56Y4T +05/15/2018,Musicians,@kelly_clarkson,The lives got me like.. #VoteBrynn #VoteKaleb #TheVoice @nbcthevoice https://t.co/yn9qqMyqAY +05/15/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 MUA: @gloglomakeup Hair: @robertramoshair Jumpsuit: @temperleylondon Belt: @dolcegabbana Jew… https://t.co/d8Y1GXX67d +05/14/2018,Musicians,@kelly_clarkson,MY MIND IS BLOWN #Timeless ....I am so happy right now I don’t know what to do. How will I sleep? What in the world… https://t.co/Fz28xglQE5 +05/14/2018,Musicians,@kelly_clarkson,Watching #Timeless finale and I LOVE The General!! Yes!! This show is so cool. I can’t believe this might not be re… https://t.co/2ZTgTD9KmA +05/14/2018,Musicians,@kelly_clarkson,For Mother’s Day I am watching my 3 year old on her baby cam pacing her room and acting out times she’s been in tro… https://t.co/B9BpQucGbo +05/13/2018,Musicians,@kelly_clarkson,ACTIVATING @BBMAs ONE WEEK COUNTDOWN. 05.20 at 8 ET/5 PT on NBC. #KELLY_BBMAs - Team KC https://t.co/GVwPiafllm +05/13/2018,Musicians,@kelly_clarkson,"Happy Mother’s day to all the moms out there! Here is our gift to you! + +WATCH HERE: https://t.co/Rzy8BJW6sS +– Team… https://t.co/vPj1JuAVIW" +05/13/2018,Musicians,@kelly_clarkson,I LOVE THIS!!!! 😊 https://t.co/OADUd8iESy +05/12/2018,Musicians,@kelly_clarkson,"RT @people: Blake Shelton & Kelly Clarkson Team Up for @NBCTheVoice Edition of @hqtrivia to Help Fans Win $50,000 https://t.co/9gfdV7BPHn #…" +05/12/2018,Musicians,@kelly_clarkson,"WHAT IS LIFE??!!!!! I can’t believe I just ran into WYATT!!!!! Literally, best mother’s day weekend ever!!! +PLEASE… https://t.co/PBARTNS8YG" +05/11/2018,Musicians,@kelly_clarkson,"This whole experience is a beautiful moment that @BrittonBuchanan his mother, & his family are sharing. Please don’… https://t.co/Dsl1rv6cZK" +05/11/2018,Musicians,@kelly_clarkson,HACKED!! Big #TheVoice announcement from @IAMJHUD ... https://t.co/7ZSCSVF5HR +05/10/2018,Musicians,@kelly_clarkson,RT @IMS: BREAKING: Grammy Award-winning superstar @kelly_clarkson will perform the National Anthem before the start of the #102ndRunning of… +05/10/2018,Musicians,@kelly_clarkson,I’m so happy you like it! #madewithlovenotperfection 😜😂❤️💁🏼‍♀️ https://t.co/h0TrjXuC4B +05/09/2018,Musicians,@kelly_clarkson,We made it! 🙌 #Top8 #thevoice @NBCTheVoice https://t.co/36VsQx9kzm +05/09/2018,Musicians,@kelly_clarkson,Oh my gosh Dylan HAPPY BIRTHDAY!!!!!! 🎉🎂🎈#SameOleJaneDoe https://t.co/F2TLbkeAMQ +05/09/2018,Musicians,@kelly_clarkson,"✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Shirt & Skirt @gucci Belt @altuzarra +Shoes… https://t.co/GYIEe1wwZk" +05/08/2018,Musicians,@kelly_clarkson,"Go ahead with those sexy, mysterious cowboy poses @kalebleemusic 😎💁🏼‍♀️🙌 https://t.co/CtHY4CB1Zm" +05/08/2018,Musicians,@kelly_clarkson,🤣🤣🤣 we were going for that 80’s rock band ballad look 😜 miss hearing you on the show Wilkes! https://t.co/GOEaGha7QJ +05/08/2018,Musicians,@kelly_clarkson,"Stranger asking my mom: “What’s your name?” +Mom to Stranger: “I’m Kelly Clarkson’s mom.” 🤣🤣🤣 (by the way I wasn’t… https://t.co/2C56ZvwS02" +05/08/2018,Musicians,@kelly_clarkson,@tamyragray Thanks girl!! I literally just finished talking about you in an interview! +05/08/2018,Musicians,@kelly_clarkson,In case you missed the performance of “I Don’t Think About You” on @NBCTheVoice here you go!! ✨💕 - Team KC https://t.co/YLhVl0xIww +05/08/2018,Musicians,@kelly_clarkson,@ajgeagan5800 HAPPY BIRTHDAY 🎈 🎉🎂 +05/08/2018,Musicians,@kelly_clarkson,....the part where Joe Fox comes around the corner 2 meet Kathleen Kelly for the big reveal #YouveGotMail 😭💁🏼‍♀️❤️… https://t.co/U7NC52MObl +05/08/2018,Musicians,@kelly_clarkson,Yaaaassss! #quiltingismyjam ....but don’t look 2 closely because it sort of looks like a high school home economics… https://t.co/Y2MY5Viyl1 +05/08/2018,Musicians,@kelly_clarkson,Here is how to vote for @BrynnCartelli!! Get to voting!!! https://t.co/gmumDZ52sK +05/08/2018,Musicians,@kelly_clarkson,This girl is special y'all! Get your votes in for @BrynnCartelli https://t.co/w8hFk4R37M +05/08/2018,Musicians,@kelly_clarkson,@BrynnCartelli This girl is special y'all!! Get your votes in! https://t.co/w8hFk4R37M +05/08/2018,Musicians,@kelly_clarkson,✨ The Voice show look - Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @dolcegabbana Belt:… https://t.co/zujyJ7Wvsc +05/08/2018,Musicians,@kelly_clarkson,✨IDTAY performance look - Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @moniquelhuillier… https://t.co/kjo7DIRLZ0 +05/08/2018,Musicians,@kelly_clarkson,Remember that time I said vote for @kalebleemusic!!? #VoiceTop10 +05/08/2018,Musicians,@kelly_clarkson,Listen to @kalebleemusic! https://t.co/BWwCOnUP2e +05/08/2018,Musicians,@kelly_clarkson,Y'all better be voting for @kalebleemusic!! #VoiceTop10 https://t.co/XfINWQq3hC +05/07/2018,Musicians,@kelly_clarkson,"Make sure to @Shazam the performance of ""I Don't Think About You"" on @NBCTheVoice tonight for a chance to win a sig… https://t.co/pVfUVgWfau" +05/07/2018,Musicians,@kelly_clarkson,In case you missed it! Kelly is stepping out of the chair and onto @NBCTheVoice stage✨ TONIGHT ✨ to sing her single… https://t.co/rVlYO7opyu +05/07/2018,Musicians,@kelly_clarkson,You’re gonna kill it @brynncartelli 😜❤️🙌 #Vote https://t.co/0jzJOEISGg +05/07/2018,Musicians,@kelly_clarkson,Um 😐....hi 😊💁🏼‍♀️ ....and yes please! 😂 #IHopeYouEndUpWithFlynn ....I know you’re a real person but in my brain mov… https://t.co/9k2qjbZxlF +05/07/2018,Musicians,@kelly_clarkson,Exactly! ....nice pun 😎 live tweet #Timeless Let’s do this! I literally don’t know ANYONE on this show and have no… https://t.co/s5K0AFn1I1 +05/07/2018,Musicians,@kelly_clarkson,"@luanh2001 Super, thanks for asking 😜" +05/07/2018,Musicians,@kelly_clarkson,That’s the spirit!! 🤣 it’s so great! You should watch or DVR if you’re busy. I love it! #RenewTimeless https://t.co/GFqpU5Uv7B +05/06/2018,Musicians,@kelly_clarkson,#Timeless got me feelin’ like.... https://t.co/k4OftNlskq +05/06/2018,Musicians,@kelly_clarkson,"In a world where reality can be terrifying and depressing, isn’t it great to have a show on that is fun, historical… https://t.co/oHa5z7l50b" +05/06/2018,Musicians,@kelly_clarkson,#RenewTimeless https://t.co/L8PgBCwUI3 +05/06/2018,Musicians,@kelly_clarkson,You are 100% correct. I actually forgot the song #Timeless even existed 🤣🤣🤣 but thank you for the reference!… https://t.co/33rdOhLaF1 +05/06/2018,Musicians,@kelly_clarkson,I once recorded a duet titled #Timeless and although it was good it was nothing compared to #NBCTimeless the show.… https://t.co/2jKmIhqFHV +05/06/2018,Musicians,@kelly_clarkson,"Hosting the Billboard Awards on May 20th is gonna be #Timeless ....RENEW TIMELESS PLEASE 😊💁🏼‍♀️ ....yep, I’m not even close to being done." +05/06/2018,Musicians,@kelly_clarkson,Just sitting here thinking about how #Timeless #TheVoice is 😜 ....see what I did there. Oh yes there are so many mo… https://t.co/CJNgP0Hyex +05/06/2018,Musicians,@kelly_clarkson,"Y’all I love this show! Please everyone tweet tonight so they renew it! It’s creative, different from everything el… https://t.co/FIQDfzO5Ml" +05/04/2018,Musicians,@kelly_clarkson,"The Gold #MeaningOfLife Vinyl is available NOW! Pick up your Limited Edition copy today, only at… https://t.co/MwFx5XF7t7" +05/04/2018,Musicians,@kelly_clarkson,Um.... I feel I should apologize in advance if I ever see y’all around on the lot and totally nerd out 😬 ....and YE… https://t.co/9XqmBEKDUw +05/04/2018,Musicians,@kelly_clarkson,Yes!!! Vote Vote Vote!!! https://t.co/Xdj2TGRxrW +05/03/2018,Musicians,@kelly_clarkson,🤔 https://t.co/IrYiZIXey8 +05/03/2018,Musicians,@kelly_clarkson,YAAASSSS!!!! https://t.co/dIzyypBDdM +05/03/2018,Musicians,@kelly_clarkson,....because it’s great! #listentothepeople 😜💁🏼‍♀️ https://t.co/L6Hjzi8WIT +05/03/2018,Musicians,@kelly_clarkson,✨Hope y’all love the ‘American Woman’ cover for @AmericanWomanTV! We can’t wait for the premiere June 7th at 10/9c… https://t.co/N23h14XuQz +05/03/2018,Musicians,@kelly_clarkson,Mia might be one of the most beautiful babies I’ve ever seen! How precious is that face?! 😊❤️ https://t.co/xXSZyByQiN +05/03/2018,Musicians,@kelly_clarkson,Excited to announce that I am not just HOSTING the @BBMAs but I am PERFORMING as well! Tune-in May 20 at 8e|5p on N… https://t.co/40tSRIME6V +05/03/2018,Musicians,@kelly_clarkson,Okay somebody has got to get this man a pass 🤣🤣🤣 he deserves it! 😜💁🏼‍♀️ https://t.co/PQjLXe4JmH +05/03/2018,Musicians,@kelly_clarkson,I LOVE MY TEAM!!!!!!!! #Brynn #Kaleb ❤️❤️❤️ https://t.co/vlGXtgulTl +05/02/2018,Musicians,@kelly_clarkson,"These are some real heroes, y’all! Proud to announce Kelly will be performing for our service members at… https://t.co/nzWKi2g4aO" +05/02/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Leather: @balmain Dress: @dolcegabbana Shoes:… https://t.co/E9MU6nG43r +05/01/2018,Musicians,@kelly_clarkson,"Hey Los Angeles! Kelly is throwing a concert live from The Voice stage in LA and you can enter to attend!! + +Click… https://t.co/m3G96EWBws" +05/01/2018,Musicians,@kelly_clarkson,Yes and yes girl!!!!! https://t.co/oDk42EEWgy +05/01/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @carolinaherrera Shoes: @valentino Belt:… https://t.co/gs7O4RH4Yb +04/30/2018,Musicians,@kelly_clarkson,Are y’all ready for Team Kelly tonight on @NBCTheVoice !!? – Team KC https://t.co/ubgRWpTfQB +04/30/2018,Musicians,@kelly_clarkson,Get it Dylan!!!! https://t.co/se6Riu9YC5 +04/29/2018,Musicians,@kelly_clarkson,Thanks girl! 😊 https://t.co/ZTz1bnis3L +04/28/2018,Musicians,@kelly_clarkson,Yes girl!! https://t.co/68CcXqNLqA +04/27/2018,Musicians,@kelly_clarkson,I just saw this!! Thanks @tishhayneskeys 😊 we miss you 😩 https://t.co/Ku2tnx82Gx +04/27/2018,Musicians,@kelly_clarkson,"RT @BBMAs: #BBMAs 05.20 ON NBC +_User: @DUALIPA /CONFIRMED https://t.co/FEGkqfWaSN" +04/27/2018,Musicians,@kelly_clarkson,"RT @BBMAs: #BBMAs 05.20 ON NBC +_User: @Camila_Cabello /CONFIRMED https://t.co/b2GBfjwlUG" +04/27/2018,Musicians,@kelly_clarkson,We ❤️ Team Kelly @NBCTheVoice - Team KC https://t.co/9PnpAAk9ef +04/26/2018,Musicians,@kelly_clarkson,"Make sure to Shazam the performance of ""I Don't Think About You"" on Ellen DeGeneres for a chance to win a signed go… https://t.co/ArRbyhVtu5" +04/26/2018,Musicians,@kelly_clarkson,"It may be over, but we are still celebrating with another Minute + Glass of Wine! 🍷🎂 🎉 - Team KC + +Watch here:… https://t.co/H0J5U4MT3d" +04/26/2018,Musicians,@kelly_clarkson,Hanging with the real @TheEllenShow this afternoon 😂 - Team KC https://t.co/6PYWIaO3dl +04/26/2018,Musicians,@kelly_clarkson,Thank you @BigSugarBakeshp for creating such amazing cakes for #TeamKC @NBCTheVoice and my birthday. They were beau… https://t.co/FnMSAUKJ6G +04/25/2018,Musicians,@kelly_clarkson,Did y’all catch the Team Kelly performance last night on the @NBCTheVoice !? ✨✨ – Team KC https://t.co/qv4MLdTbIu +04/25/2018,Musicians,@kelly_clarkson,Y’all were so great!! I forgot to say this last night but what an incredibly gifted group of singers y’all are?! Se… https://t.co/JijI8w05iq +04/25/2018,Musicians,@kelly_clarkson,Oh my gosh I just saw this! Thanks guys 😊 https://t.co/4189gZ1pVd +04/25/2018,Musicians,@kelly_clarkson,Y'all want to be a part of the Team Kelly Facebook Group? Click the link below to join! - Team KC… https://t.co/R6zeqjSDsI +04/25/2018,Musicians,@kelly_clarkson,@RyanSeacrest Thanks Ryan 😊 +04/25/2018,Musicians,@kelly_clarkson,Well that was a crap birthday present 😭😔😩 I can’t believe @DRKingnyc just went home. You will find him on stage wit… https://t.co/g4kfb9un1y +04/25/2018,Musicians,@kelly_clarkson,Please vote for @DRKingnyc #voicesaveDRking https://t.co/Cn2jenrf5x +04/25/2018,Musicians,@kelly_clarkson,RT @NBCTheVoice: Retweet to #VoiceSaveDRKing https://t.co/j7zKjJdwiW +04/25/2018,Musicians,@kelly_clarkson,It's time y'all let's save @DRKingnyc ! RETWEET THIS!!! #VoiceSaveDRKing +04/25/2018,Musicians,@kelly_clarkson,RT @kelly_clarkson: @DRKingnyc killed it! Get ready to save him! https://t.co/6c5Tt0DiZt +04/25/2018,Musicians,@kelly_clarkson,@DRKingnyc killed it! Get ready to save him! https://t.co/6c5Tt0DiZt +04/25/2018,Musicians,@kelly_clarkson,Y'all! Get ready to save @DRKingnyc !! https://t.co/xTrPuLgfaG +04/25/2018,Musicians,@kelly_clarkson,Yaaaaaas!!! It’s my birthday!! 🎉🎂✨#Stylist @cdicelove13 #Hair @robertramoshair #Mua @gloglomakeup #Dress:… https://t.co/7lrep5I15Y +04/25/2018,Musicians,@kelly_clarkson,Got to celebrate my birthday with a queen! @aliciakeys https://t.co/tRbhTdMOqV +04/24/2018,Musicians,@kelly_clarkson,Going live on FaceBook at 1:45 PST. Tune in! +04/24/2018,Musicians,@kelly_clarkson,You are literally one of my longest friendships haha! What year was this?? 2003?? https://t.co/DYMY6wj1ID +04/24/2018,Musicians,@kelly_clarkson,"""I Don’t Think About You” on @TheEllenShow !!? Ohh yes! Please! – Team KC https://t.co/McQ9VnaQtd" +04/24/2018,Musicians,@kelly_clarkson,Happy Birthday to another talented woman who shares the same birthday and also happens to have been my favorite cha… https://t.co/HIkpjcsRYp +04/24/2018,Musicians,@kelly_clarkson,#birthdaymood Happy Birthday to one of my favorites who happens to share the same birthday ❤️ #barbra #feelinfancy https://t.co/Eg1aqkipet +04/24/2018,Musicians,@kelly_clarkson,Thanks Jim 😊 https://t.co/ceepaayAkD +06/20/2018,Musicians,@StevieWonder,"Hey Western Mass, Boston & Connecticut! I want to personally invite you to my party, The Stevie Wonder Song Party:… https://t.co/6tit1bA1s5" +06/18/2018,Musicians,@StevieWonder,"Hey DMV! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love and Musi… https://t.co/QD8CSAZTr1" +06/15/2018,Musicians,@StevieWonder,"Hey Jersey, Philly & Delaware! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrati… https://t.co/O0YMcS9uYX" +06/13/2018,Musicians,@StevieWonder,"Hey Vegas & LA! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love a… https://t.co/mYiBdARmYv" +06/11/2018,Musicians,@StevieWonder,"I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love and Music. Get re… https://t.co/2Knm5RTHBc" +06/08/2018,Musicians,@StevieWonder,President @BarackObama and Mrs. @MichelleObama's dreams. Share your dream & post your own #DreamStillLives video.… https://t.co/orUV5ugSMP +06/06/2018,Musicians,@StevieWonder,.@DariusRucker's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/aSOyGSASMs +06/06/2018,Musicians,@StevieWonder,.@NaomiCampbell's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/oDrkc26Cgw +06/06/2018,Musicians,@StevieWonder,.@Lecrae's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/J03trrofZl +06/04/2018,Musicians,@StevieWonder,.@WhoopiGoldberg's full dream. Share your dream in the comments below or post your own Dream Still Lives video wit… https://t.co/eDi1hA2bs5 +06/04/2018,Musicians,@StevieWonder,.@MariahCarey's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/X5dm60BPke +06/04/2018,Musicians,@StevieWonder,.@RepRichmond's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/w3xWegCSB0 +06/01/2018,Musicians,@StevieWonder,.@YaraShahidi's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/J0YCjmn14p +06/01/2018,Musicians,@StevieWonder,.@KirkFranklin's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/3rfLk43iq0 +05/30/2018,Musicians,@StevieWonder,.@ChadwickBoseman’s full dream. Share your dream in the comments below or post your own Dream Still Lives video wi… https://t.co/n2E4HLIfu9 +05/30/2018,Musicians,@StevieWonder,Senator @KamalaHarris' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread h… https://t.co/fipnuD2w5h +05/29/2018,Musicians,@StevieWonder,.@MarkRonson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/2V10MSuAIG +05/29/2018,Musicians,@StevieWonder,.@RevJJackson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/mkmYlKiQcr +05/29/2018,Musicians,@StevieWonder,Meryl Streep's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/f8TQfGlJTP +05/25/2018,Musicians,@StevieWonder,.@ddlovato's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/9ELjoX7FPO +05/25/2018,Musicians,@StevieWonder,.@RyanTedder's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bQaakZEDmN +05/25/2018,Musicians,@StevieWonder,.@SerenaWilliams' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/I01fxNvS6Q +05/23/2018,Musicians,@StevieWonder,.@Noah_Schnapp's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/kehkFfz6Aj +05/23/2018,Musicians,@StevieWonder,.@KeshaRose's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/naGpvMUadq +05/23/2018,Musicians,@StevieWonder,.@SadiqKhan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/iUP3tR8Llp +05/21/2018,Musicians,@StevieWonder,.@MarcMorial's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/odOhqwPvG0 +05/21/2018,Musicians,@StevieWonder,.@MeganNicole's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/O7H9wUgBGV +05/21/2018,Musicians,@StevieWonder,.@JKCorden's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/mdWdTPQeaz +05/18/2018,Musicians,@StevieWonder,Dr. Keith Black's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/1jXZSi3yDk +05/18/2018,Musicians,@StevieWonder,.@RitaWilson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/L115DNn4KA +05/18/2018,Musicians,@StevieWonder,Secretary @AntonioGuterres' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spr… https://t.co/7TkU5X8sEw +05/16/2018,Musicians,@StevieWonder,.@CarmeloAnthony's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/FZDSf1A5uu +05/16/2018,Musicians,@StevieWonder,.@IISuperwomanII (Lilly Singh)'s full dream. Share your dream & post your own #DreamStillLives video. Spread love.… https://t.co/xM9mJzrK7Z +05/16/2018,Musicians,@StevieWonder,.@Harry_Styles' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ZcGH3pr3G0 +05/14/2018,Musicians,@StevieWonder,.@LuisFonsi’s full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/lh8bAtauEj +05/14/2018,Musicians,@StevieWonder,.@HowardStern's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/REAHlBVLkj +05/14/2018,Musicians,@StevieWonder,.@MaryJBlige's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ZAi7LSl1vB +05/11/2018,Musicians,@StevieWonder,.@TylerOakley's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ph3hPxNKcv +05/11/2018,Musicians,@StevieWonder,.@SamuelLJackson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/TN7Era0BvG +05/11/2018,Musicians,@StevieWonder,.@itstonybennett's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/C4kkcFKAGR +05/09/2018,Musicians,@StevieWonder,.@TheChainsmokers' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/B0JGHxMDhH +05/09/2018,Musicians,@StevieWonder,.@Lupita_Nyongo's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/4jEaBY6jEc +05/09/2018,Musicians,@StevieWonder,.@GarthBrook's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/l14GMdWdCH +05/07/2018,Musicians,@StevieWonder,.@BTS_twt's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bV4U3SPSe5 +05/07/2018,Musicians,@StevieWonder,.@NickJonas' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/Xi3tnSRMMe +05/07/2018,Musicians,@StevieWonder,.@TrevorNoah's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/1qBRl6PAWP +05/04/2018,Musicians,@StevieWonder,Arturo Sandoval's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/o8SABxp8uh +05/04/2018,Musicians,@StevieWonder,.@LionelRichie's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/N57Sdv87cz +05/04/2018,Musicians,@StevieWonder,.@JimmyKimmel's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/RghLqGJNfB +05/02/2018,Musicians,@StevieWonder,.@Common's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/kJT4ifrTK9 +05/02/2018,Musicians,@StevieWonder,Sir @PaulMcCartney's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hop… https://t.co/rtnMeh1uNb +04/30/2018,Musicians,@StevieWonder,.@MichaelStrahan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/JA26bki933 +04/30/2018,Musicians,@StevieWonder,.@KatyPerry's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/dMeDRk5jCV +04/30/2018,Musicians,@StevieWonder,.@BonJovi's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/YoujfTVf0u +04/27/2018,Musicians,@StevieWonder,.@iamjamiefoxx's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/xp7O8hm7Jq +04/27/2018,Musicians,@StevieWonder,.@JanelleMonae's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/aPbWyH6ihc +04/27/2018,Musicians,@StevieWonder,.@CharliePuth's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope https://t.co/7sVzexlQvY +04/25/2018,Musicians,@StevieWonder,.@SZA's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/zePoRnkL1S +04/25/2018,Musicians,@StevieWonder,Bruce @Springsteen's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hop… https://t.co/yuZl7ZLbL7 +04/25/2018,Musicians,@StevieWonder,.@GloriaEstefan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/yUKD8zkwuM +04/23/2018,Musicians,@StevieWonder,.@TigerWoods' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/81AGG5dAX3 +04/23/2018,Musicians,@StevieWonder,.@GayleKing’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/uxzhPMsX8t +04/23/2018,Musicians,@StevieWonder,.@DaveMatthewsBnd's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/njd2z5ri0z +04/20/2018,Musicians,@StevieWonder,.@EvaLongoria’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/0F1LVmEneN +04/20/2018,Musicians,@StevieWonder,.@DaveChappelle’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/0BosqOOebv +04/20/2018,Musicians,@StevieWonder,.@BillieJeanKing’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/VP30vN96Yy +04/18/2018,Musicians,@StevieWonder,.@CondoleezzaRice's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/9urLJmDTYp +04/18/2018,Musicians,@StevieWonder,Berry Gordy’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/7BIes3QTz9 +04/18/2018,Musicians,@StevieWonder,.@Cher’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/p93J5wgNmb +04/16/2018,Musicians,@StevieWonder,.@Smokey_Robinson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/qbpf8MsewP +04/16/2018,Musicians,@StevieWonder,.@CliveDavis’ full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/in39oy3XOb +04/16/2018,Musicians,@StevieWonder,.@BetteMidler's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ENIPB9WPy5 +04/10/2018,Musicians,@StevieWonder,.@Tim_Cook's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bvlsbXw1Qj +04/10/2018,Musicians,@StevieWonder,.@AndraDayMusic's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/AlBLf97o7c +04/10/2018,Musicians,@StevieWonder,.@EltonOfficial's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/4uZVT2cijM +04/06/2018,Musicians,@StevieWonder,Robert De Niro’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/HvLKXbfRxR +04/05/2018,Musicians,@StevieWonder,"On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for h… https://t.co/XVJ9Gis9zp" +06/27/2018,Musicians,@kanyewest,https://t.co/keACtfDvtD +06/27/2018,Musicians,@kanyewest,https://t.co/hUzYzgu45U +06/23/2018,Musicians,@kanyewest,https://t.co/GFmMQMI2rI +06/22/2018,Musicians,@kanyewest,I love you brother congratulations https://t.co/bHZApDf3Ol +06/22/2018,Musicians,@kanyewest,https://t.co/gy60h56Izv +06/22/2018,Musicians,@kanyewest,the universe is on our side bro +06/22/2018,Musicians,@kanyewest,RT @TEYANATAYLOR: Teyana Taylor's album listening #KTSE https://t.co/WI9JxL0SVO +06/18/2018,Musicians,@kanyewest,rest in peace 🙏🙏🙏 I never told you how much you inspired me when you were here thank you for existing https://t.co/QU7DR3Ghbw +06/16/2018,Musicians,@kanyewest,😍😍😍 https://t.co/lRkpsQ94iN +06/16/2018,Musicians,@kanyewest,1...2...3...🔥🔥🔥🔥🔥 https://t.co/IPhCypJOhC +06/16/2018,Musicians,@kanyewest,https://t.co/sxOn37QP0h +06/15/2018,Musicians,@kanyewest,RT @Nas: My album release party tonight LIVE with @YouTubeMusic → https://t.co/KF1DIxFaw4 #NASIR +06/15/2018,Musicians,@kanyewest,RT @Nas: The Kids Are Our Future. NASIR out everywhere tomorrow! Executive Produced by @kanyewest #NASIR https://t.co/gpRUBT7FPU +06/14/2018,Musicians,@kanyewest,sometimes I have trouble saying no because I want to help everyone +06/14/2018,Musicians,@kanyewest,this is new for me but it’s just how I feel now. I don’t know why. I thought my ego protected me from doubters so t… https://t.co/pC1d7C5UkK +06/14/2018,Musicians,@kanyewest,Who or what is Kanye West with no ego? Just Ye +06/14/2018,Musicians,@kanyewest,I killed my ego +06/14/2018,Musicians,@kanyewest,your pride can be and will be used against you +06/14/2018,Musicians,@kanyewest,be great without pride +06/14/2018,Musicians,@kanyewest,give without pride +06/14/2018,Musicians,@kanyewest,https://t.co/GBaHHmLIL3 +06/14/2018,Musicians,@kanyewest,"RT @s_lomba1: Thank you for #KidsSeeGhosts , @KidCudi and @kanyewest . Reborn’s meaning is as beautiful as the album artwork. Thanks a bunc…" +06/14/2018,Musicians,@kanyewest,"RT @LuisRagon7: ""Everybody want world peace, till your niece gets shot in the dome-piece, then you go and get your own piece, hoping it'll…" +06/14/2018,Musicians,@kanyewest,😢🙏🙏🙏🙏 https://t.co/0Z5HDZFnx4 +06/14/2018,Musicians,@kanyewest,RT @Bubbabue: @kanyewest Your album #ye is an inspiration. I can completely relate to every song. I’m going through my own issues right no… +06/14/2018,Musicians,@kanyewest,RT @danicapelli: i remember tweeting about synchronicities but this whole era really takes the cake for me. this man call bipolar disorder… +06/13/2018,Musicians,@kanyewest,Leaders create leaders +06/13/2018,Musicians,@kanyewest,https://t.co/PEeKDDUrSl +06/13/2018,Musicians,@kanyewest,Supermoon YEEZY desert rat campaign shot by Eli Linnetz 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +06/13/2018,Musicians,@kanyewest,https://t.co/ZZyma1RDde +06/13/2018,Musicians,@kanyewest,https://t.co/D6ubUZF11o +06/13/2018,Musicians,@kanyewest,https://t.co/0rZFimqlOb +06/13/2018,Musicians,@kanyewest,https://t.co/bgaE5M6Pq0 +06/13/2018,Musicians,@kanyewest,https://t.co/hbtCFijEVT +06/13/2018,Musicians,@kanyewest,https://t.co/lUYf1h5MBe +06/13/2018,Musicians,@kanyewest,https://t.co/MU16ssRl6E +06/13/2018,Musicians,@kanyewest,https://t.co/N7RRqUiY0f +06/13/2018,Musicians,@kanyewest,https://t.co/pPafVRL2ai +06/13/2018,Musicians,@kanyewest,https://t.co/v0dMpbHO4s +06/13/2018,Musicians,@kanyewest,https://t.co/CLrZhCuPfV +06/13/2018,Musicians,@kanyewest,https://t.co/ldZmPj3ZL5 +06/13/2018,Musicians,@kanyewest,https://t.co/elaym8M5nD +06/13/2018,Musicians,@kanyewest,https://t.co/DxKBC17uLE +06/13/2018,Musicians,@kanyewest,https://t.co/t92ZyCK5Jv +06/13/2018,Musicians,@kanyewest,https://t.co/tElIvc7ujx +06/13/2018,Musicians,@kanyewest,https://t.co/9v3l7dAo2k +06/13/2018,Musicians,@kanyewest,https://t.co/9sp8bwb6Ko +06/13/2018,Musicians,@kanyewest,https://t.co/VdJKyDmcVJ +06/13/2018,Musicians,@kanyewest,https://t.co/ajULgsReUe +06/13/2018,Musicians,@kanyewest,https://t.co/tFwZXfZjH9 +06/13/2018,Musicians,@kanyewest,https://t.co/X4V2wyDhVq +06/13/2018,Musicians,@kanyewest,https://t.co/onz2qOLATS +06/13/2018,Musicians,@kanyewest,https://t.co/6bASsjft0i +06/13/2018,Musicians,@kanyewest,https://t.co/mrAGKDdxwo +06/13/2018,Musicians,@kanyewest,https://t.co/3F7rlUTQzS +06/13/2018,Musicians,@kanyewest,https://t.co/CJh6fxxT1W +06/13/2018,Musicians,@kanyewest,https://t.co/ahgFhhq9QD +06/13/2018,Musicians,@kanyewest,https://t.co/ZN5OHzjTsj +06/13/2018,Musicians,@kanyewest,https://t.co/wIReZapSje +06/13/2018,Musicians,@kanyewest,https://t.co/Qe113Iwx2N +06/13/2018,Musicians,@kanyewest,https://t.co/0ZwE3jnBw4 +06/13/2018,Musicians,@kanyewest,https://t.co/x4q8U34qUS +06/12/2018,Musicians,@kanyewest,freeeeeeeeeee https://t.co/ioKUaaVy2a +06/12/2018,Musicians,@kanyewest,I be taking naps +06/12/2018,Musicians,@kanyewest,Bloody Dior in Wyoming hoodie https://t.co/RkRAtb0BfL +06/12/2018,Musicians,@kanyewest,https://t.co/V7ZeBuufOB +06/12/2018,Musicians,@kanyewest,your guys writing and approach is so innovative … I love how you guys break the 4th wall… thank you for being innov… https://t.co/fkay133ewy +06/12/2018,Musicians,@kanyewest,I love both Deadpool movies🔥🔥🔥🔥🔥🔥🔥🔥🔥… I heard tracks in it that sound similar to mine… bro I would have cleared my music for Deadpool … +06/12/2018,Musicians,@kanyewest,Thank you to my wife for throwing me the most beautiful fun and intimate birthday party https://t.co/1ZR4DlCtMc +06/12/2018,Musicians,@kanyewest,https://t.co/bw7xN9wl8g https://t.co/ri1kM8GUEh +06/12/2018,Musicians,@kanyewest,Thank you to everyone who supported our 8th number 1 album 🙌🙌🙌🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 all love all great energy… https://t.co/AdUmHGnfd7 +06/12/2018,Musicians,@kanyewest,https://t.co/PsUa8R6g67 +06/12/2018,Musicians,@kanyewest,https://t.co/4wDx2pfzew +06/12/2018,Musicians,@kanyewest,😢 https://t.co/c5v5fuSBgz +06/12/2018,Musicians,@kanyewest,https://t.co/fopemnwiMI +06/11/2018,Musicians,@kanyewest,7 deadly sins https://t.co/YczOcBEMdY +06/11/2018,Musicians,@kanyewest,We’re trying new ideas without the fear of not being perfect… It’s just a gut feeling sometimes… just making stuff with your friends… +06/11/2018,Musicians,@kanyewest,We’re here creating in real time just having fun. I hear the albums blasting out of the cars when I walk down t… https://t.co/Btr6jZBeYP +06/11/2018,Musicians,@kanyewest,Just wanted to say I’m up in the morning working on the Nas album and I’m so humbled by all the love we’re getting… https://t.co/0KpWPPvzt0 +06/11/2018,Musicians,@kanyewest,😂 https://t.co/zD0cQryW3j +06/11/2018,Musicians,@kanyewest,😂 https://t.co/0cbuZDQSuO +06/08/2018,Musicians,@kanyewest,Download the @WAV_Media app https://t.co/HxSvFHiSrY to watch the livestream of the KIDS SEE GHOSTS listening party tonight @ 8pm PST +06/07/2018,Musicians,@kanyewest,RT @tylerthecreator: see if i was tryna relate to more people i would say im struggling with loving myself because that seems like a common… +06/07/2018,Musicians,@kanyewest,https://t.co/ssV4UeFpiL +06/07/2018,Musicians,@kanyewest,"RT @CNN: BREAKING: Alice Marie Johnson has just been released from prison after Trump commuted her sentence. ""I'm just so thankful. I feel…" +06/06/2018,Musicians,@kanyewest,RT @mic: BREAKING: President Trump has granted clemency to #AliceMarieJohnson after meeting with @KimKardashian West to talk about her case… +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: BEST NEWS EVER!!!! 🙏🏼🙏🏼🙏🏼 https://t.co/JUbpbE1Bk0 +06/06/2018,Musicians,@kanyewest,"RT @KimKardashian: So grateful to @realDonaldTrump, Jared Kushner & to everyone who has showed compassion & contributed countless hours to…" +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: I hope to continue this important work by working together with organizations who have been fighting this fight for much… +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: The phone call I just had with Alice will forever be one of my best memories. Telling her for the first time and hearing… +06/06/2018,Musicians,@kanyewest,https://t.co/r2idQETRCQ +06/06/2018,Musicians,@kanyewest,RT @KidCudi: KIDS SEE GHOSTS ALBUM ART https://t.co/MVt5vIzlA1 +06/06/2018,Musicians,@kanyewest,https://t.co/bYVgnuMASB +06/06/2018,Musicians,@kanyewest,🙏🙏🙏 all love to her family https://t.co/p3cu3CUdw5 +06/06/2018,Musicians,@kanyewest,#1 in 83 countries 🙌🙌🙌 https://t.co/Z8FC9LPL7W +06/06/2018,Musicians,@kanyewest,https://t.co/FQUdTnViNC +06/04/2018,Musicians,@kanyewest,I feel so blessed. For everyone that didn't turn they back. I'm in tears right now. I love all of you https://t.co/8jwIALBsDu +06/03/2018,Musicians,@kanyewest,😍😍😍 https://t.co/PfxbSlZTNw +06/02/2018,Musicians,@kanyewest,"For all my dogs that stayed down, we up again 🙌🙌🙌 https://t.co/HSSyZeTI30" +06/02/2018,Musicians,@kanyewest,https://t.co/mramWmhY1S +06/02/2018,Musicians,@kanyewest,I’ve never been about beef    I’m about love    lines were crossed and it’s not good for anyone    so this is dead now +06/02/2018,Musicians,@kanyewest,https://t.co/gtu95VUe64 +06/02/2018,Musicians,@kanyewest,https://t.co/ngNMZjM7tN +06/01/2018,Musicians,@kanyewest,"https://t.co/SScskeUWQs + +https://t.co/qMCfkQTjLy + +https://t.co/pa0iHEIdZT" +06/01/2018,Musicians,@kanyewest,https://t.co/xYu7lH1rZ7 +06/01/2018,Musicians,@kanyewest,"Download the @WAV_Media app https://t.co/HxSvFHiSrY  to watch the livestream of my album listening tonight in Jackson Hole, Wyoming 7PM MDT" +05/25/2018,Musicians,@kanyewest,https://t.co/3YFh8MIHIH +05/25/2018,Musicians,@kanyewest,New Flacko 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/F3lAEVGX4A +05/25/2018,Musicians,@kanyewest,https://t.co/QAZmYHt4eA +05/25/2018,Musicians,@kanyewest,🔥🔥🔥 This is one of my favorite moments. https://t.co/LLhZlU7fAG +05/25/2018,Musicians,@kanyewest,gratitude and happiness best describe what my wife means to me. I’m deeply grateful and purely happy 😊 +05/24/2018,Musicians,@kanyewest,Daytona is the first project out of Wyoming. I’m really proud of what we put together. We’ve spent a year and a… https://t.co/rnQ2uXTSeE +05/24/2018,Musicians,@kanyewest,album 1 PUSHA T DAYTONA dropping 2mrw https://t.co/M1UPvax5fa +05/21/2018,Musicians,@kanyewest,before Edward Bernays Americans purchased things based off needs There was a a time in the 20s when women did… https://t.co/FQMq29vChC +05/21/2018,Musicians,@kanyewest,the century of self https://t.co/JVvJby2TFq It’s 4 hours long but you’ll get the gist in the first 20 minu… https://t.co/6h5mjB1qih +05/21/2018,Musicians,@kanyewest,Google dopamine +05/21/2018,Musicians,@kanyewest,there was a time when we completely operated without phones. We're addicted to our phones. +05/21/2018,Musicians,@kanyewest,Look at your phone as tool not an obligation. Would you walk around with a hammer in your pocket? You would p… https://t.co/U7lY1tRZXH +05/21/2018,Musicians,@kanyewest,Amma Mata had given over 32 million hugs https://t.co/OBotiHWZUU +05/21/2018,Musicians,@kanyewest,sometimes we all need hugs +05/20/2018,Musicians,@kanyewest,Very cozy. Sleeping in the studio https://t.co/hZk0UEW81G +05/17/2018,Musicians,@kanyewest,"🤣🤣🤣 +https://t.co/I8lcHB8gxf" +05/15/2018,Musicians,@kanyewest,https://t.co/o5GyOkB2hg +05/15/2018,Musicians,@kanyewest,for anyone whose tried to text or call me in the past 2 weeks I got rid of that phone so I could focus on these albums +05/14/2018,Musicians,@kanyewest,The United Nations introduced the Sustainable Development goals and platform in 2015 to transform the world by 2030 https://t.co/ufbZlURwPA +05/12/2018,Musicians,@kanyewest,rules are structure for people who can’t carve their own path successfully +05/11/2018,Musicians,@kanyewest,100% I love the way you think. I’ll reach out https://t.co/MVqBKd0vaM +05/10/2018,Musicians,@kanyewest,approved 700 V2 color way Q4 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/IWAzItCnEK +05/10/2018,Musicians,@kanyewest,https://t.co/eUnzwhr72z      This is the greatest news      This is my favorite show     I’ve seen every episode at least 5 times each +05/08/2018,Musicians,@kanyewest,free thinking is a super power +05/08/2018,Musicians,@kanyewest,🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/yEYJP7qrvf +05/07/2018,Musicians,@kanyewest,https://t.co/5Fe6LJqAQo +05/07/2018,Musicians,@kanyewest,https://t.co/y2DHIlfl9Q +05/07/2018,Musicians,@kanyewest,original 350 sample https://t.co/MVn5J579t8 +05/07/2018,Musicians,@kanyewest,It’s about the feeling first https://t.co/4x2wkCMidR +05/07/2018,Musicians,@kanyewest,I’m hyper focused on the now +05/07/2018,Musicians,@kanyewest,https://t.co/pRxvzbTu7c +05/06/2018,Musicians,@kanyewest,Childish Gambino - This is America https://t.co/sknjKSgj8c +05/06/2018,Musicians,@kanyewest,😂😂😂🔥🔥🔥 https://t.co/KmvxIwKkU6 +05/06/2018,Musicians,@kanyewest,we’re starting a Yeezy architecture arm called Yeezy home. We’re looking for architects and industrial designers wh… https://t.co/0DGrDZ9DEz +05/06/2018,Musicians,@kanyewest,naps are awesome +05/06/2018,Musicians,@kanyewest,All music coming out of Yeezy sound has to ride like the new Tesla Yeezy sound is Tesla radio +05/06/2018,Musicians,@kanyewest,hologram https://t.co/yx0N61hrcr +05/05/2018,Musicians,@kanyewest,I love the 700 V2s https://t.co/tVCUz4GZpL +05/05/2018,Musicians,@kanyewest,take a walk outside. Fresh air is healing +05/04/2018,Musicians,@kanyewest,"In a moment of inspiration, energy and excitement I had posted this sketch and would like to acknowledge the true c… https://t.co/e6rRdA9Ae4" +05/04/2018,Musicians,@kanyewest,Today I learned that a newly hired designer on the Yeezy team presented work that was not of their own. This person… https://t.co/56QUEjfpA7 +05/04/2018,Musicians,@kanyewest,enjoy the present +05/04/2018,Musicians,@kanyewest,if you’re in the way of your own life you’ll end up in the way of other people’s lives too +05/04/2018,Musicians,@kanyewest,I can’t wait for electric planes. Elon please hurry up with the ⚡️ jets😭 +05/04/2018,Musicians,@kanyewest,I can still feel the love +05/03/2018,Musicians,@kanyewest,@yeezy https://t.co/hVoaVm3EUY +05/03/2018,Musicians,@kanyewest,https://t.co/IxydIAseI0 +05/03/2018,Musicians,@kanyewest,https://t.co/5smCEzqTmA +05/03/2018,Musicians,@kanyewest,https://t.co/d3FttWufBL +05/03/2018,Musicians,@kanyewest,https://t.co/jZ62l9x8GV +05/03/2018,Musicians,@kanyewest,https://t.co/jCkREE9NzP +05/03/2018,Musicians,@kanyewest,https://t.co/MO7BYwIB0b +05/03/2018,Musicians,@kanyewest,https://t.co/IeNUbKXIZH +05/02/2018,Musicians,@kanyewest,https://t.co/cGFzbVSNS6 +05/02/2018,Musicians,@kanyewest,this is so helpful. I'm always a student. I'm learning about love https://t.co/IknblRx4Pk +05/02/2018,Musicians,@kanyewest,most fear is learned +05/02/2018,Musicians,@kanyewest,energy meeting. Beings from all different backgrounds https://t.co/iJteS5MMbY +05/02/2018,Musicians,@kanyewest,"when the media masses and scholars talk about what started today. Here's a title ... + +the overground hell road" +05/01/2018,Musicians,@kanyewest,in school we need to learn how magic Johnson built his business not always about the past. Matter fact I've never e… https://t.co/pbEjTJeCgR +05/01/2018,Musicians,@kanyewest,we are programmed to always talk and fight race issues. We need to update our conversation. +05/01/2018,Musicians,@kanyewest,the universe has a plan. I knew that TMZ would be awesome. +05/01/2018,Musicians,@kanyewest,we need to have open discussions and ideas on unsettled pain +05/01/2018,Musicians,@kanyewest,https://t.co/sq66Kaz3yc +05/01/2018,Musicians,@kanyewest,https://t.co/alJp679tHp +05/01/2018,Musicians,@kanyewest,Thank you Shade room for the love https://t.co/kiclvIpFSS +05/01/2018,Musicians,@kanyewest,we got love. Doing TMZ live with Harvey and Candace Owens https://t.co/yoZdHwpdis +05/01/2018,Musicians,@kanyewest,https://t.co/Br5kIafXtG Charlamagne interview also on YouTube +05/01/2018,Musicians,@kanyewest,https://t.co/V7ZeBuufOB Charlamagne interview +05/01/2018,Musicians,@kanyewest,Making of ye vs the people https://t.co/1xvft3175J +05/01/2018,Musicians,@kanyewest,stop thinking about things for a long time without saying what you think +04/30/2018,Musicians,@kanyewest,Eli with the drip https://t.co/FlNgliReGv +04/30/2018,Musicians,@kanyewest,Open letter from Jan Adams    This is amazing. Thank you so much for this connection brother. I can't wait to sit w… https://t.co/ZRRDi0r8GY +04/30/2018,Musicians,@kanyewest,we're starting WORLD LOVE 1 right now the opposite of a WORLD WAR +04/30/2018,Musicians,@kanyewest,Through speech it may be saying simply the word love at the end of a phone call or just saying much love. +04/30/2018,Musicians,@kanyewest,"I feel it was heavy handed for me to tell people to tell people ""I love you"" I would ask that we show love how eve… https://t.co/3HX9nQOMzu" +04/30/2018,Musicians,@kanyewest,We are all great artists. I said something ego driven in the Charlamagne interview that I'd like to update. I said… https://t.co/vOcA8SE8du +04/30/2018,Musicians,@kanyewest,https://t.co/sIVjyPJslJ +04/30/2018,Musicians,@kanyewest,Adi Shankar   We got love https://t.co/dyJyLRF79e +04/30/2018,Musicians,@kanyewest,https://t.co/KTgTcvfsAC +04/30/2018,Musicians,@kanyewest,love is infinite +04/30/2018,Musicians,@kanyewest,infinite possibilities https://t.co/SogcrHMmx3 +04/30/2018,Musicians,@kanyewest,https://t.co/kuyAZxv85h +04/30/2018,Musicians,@kanyewest,https://t.co/DMqCuG5DP8 +04/30/2018,Musicians,@kanyewest,Axel Vervoordt the globe +04/30/2018,Musicians,@kanyewest,Candace Owens wrote this at the Office yesterday https://t.co/3utFm74k75 +04/30/2018,Musicians,@kanyewest,https://t.co/HrkNlEAxMc +04/30/2018,Musicians,@kanyewest,we’re opening up the conversation to the psychologists sociologists and philosophers of the world and we're moving… https://t.co/AifFGXQd7f +04/30/2018,Musicians,@kanyewest,"Yeezy is also food shelter communication education and now a VC + +we've invested in 3 companies since last week" +04/30/2018,Musicians,@kanyewest,There has never been a Disney or Apple of apparel and now there is. We are hiring the greatest technical and indust… https://t.co/ybClLIhfeH +04/30/2018,Musicians,@kanyewest,"🔥🔥🔥 +this is where a YEEZY study for base layer starts. I'm so excited about our new design team. Yeezy is no longer… https://t.co/dKOcgLFGOE" +04/30/2018,Musicians,@kanyewest,🔥🔥🔥😊😊😊 just great energy bro 🐉 https://t.co/QYLzHkCLHg +04/30/2018,Musicians,@kanyewest,Try to avoid repetition do meetings in different places and at different times than the normal break the normal +04/30/2018,Musicians,@kanyewest,https://t.co/NmkDiG5IbM +04/30/2018,Musicians,@kanyewest,https://t.co/CeVEZmJBHb +06/16/2018,Musicians,@kendricklamar,Proud of the bro for this one. Growth. https://t.co/iSYFQ2uaew +06/09/2018,Musicians,@kendricklamar,🌊 https://t.co/2kiP5TAkM1 +06/05/2018,Musicians,@kendricklamar,RT @jayrock: Road to #Redemption Trailer https://t.co/sqUyjsnd6E +05/25/2018,Musicians,@kendricklamar,https://t.co/zg5m9qEf2D ☠️ +05/25/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +5/25 ATLANTA, GA | WISH | 453 MORELAND AVE NE, ATLANTA, GA 30307 | 11AM - 7PM | #TDE https://t.co/UDlZHnmlwd" +05/24/2018,Musicians,@kendricklamar,RT @inglewoodSiR: Tickets On Sale Starting Now @ArinRayCamp 🌊🌊🌊 https://t.co/zH6quCdkMl https://t.co/87HgmMyCxZ +05/22/2018,Musicians,@kendricklamar,RT @dangerookipawaa: Championship Tour Update... https://t.co/7w1i9q6WwZ +05/22/2018,Musicians,@kendricklamar,RT @jayrock: NEW ALBUM “REDEMPTION” COMING 06/15/18 #TDE 📷: @miyatola https://t.co/kwntXcFwum +05/19/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +5/19 - 5/20 HOUSTON, TX | SOCIAL STATUS | 1201 FANNIN ST, HOUSTON, TX 77002 | 9AM - 7PM | #TDE… https://t.co/4pOJnbBO4G" +05/18/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THECHAMPIONSHIPSHOP +5/18 AUSTIN, TX | SOUTH OF EVERYWHERE | 2324 S LAMAR BLVD,  AUSTIN, TX 78704 | 11AM - 7PM https://t.co…" +05/16/2018,Musicians,@kendricklamar,RT @dangerookipawaa: WIN WIN WIN. https://t.co/NGmRiZUqyW https://t.co/mbQCRLCzM3 +05/13/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THECHAMPIONSHIPSHOP +5/13 SAN DIEGO, CA | GYM STANDARD | 2903 EL CAJON BLVD, SAN DIEGO, CA 92104 | 11AM - 7PM https://t.co/…" +05/10/2018,Musicians,@kendricklamar,"LA, pull up. @Lyft enter the code CHAMPIONLA - get 25% off a ride to and from the Forum. #GiftfromLyft https://t.co/lDbWeGE68e" +05/10/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: Access to The Championship Shop - Los Angeles will be given on a FIRST COME, FIRST SERVED BASIS. All previously raffled wri…" +05/09/2018,Musicians,@kendricklamar,RT @TopDawgEnt: NIKE X TDE AT @blendsla TODAY. DOORS NOW OPEN. #TDE https://t.co/iNVuPnGve4 +05/08/2018,Musicians,@kendricklamar,"2DAY! #THECHAMPIONSHIPSHOP +05/08 OAKLAND, CA | @ OAKLANDISH | 1444 BROADWAY OAKLAND, CA 94612 | 11AM - 7PM #TDE https://t.co/jrYpEjrVwe" +05/07/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: At the first stop of the six-city TDE x NIKE Championship Shop Tour, Blends DTLA will host a live raffle for access to shop…" +05/06/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +05/06 PORTLAND, OR | MACHUS | 542 E BURNSIDE ST. PORTLAND, OR 97214 | 11AM - 7PM #TDE https://t.co/67u9dS1exc" +05/04/2018,Musicians,@kendricklamar,RT @inglewoodSiR: D’Evils // 🎥 Dir. by Karena Evans https://t.co/ZqdO3sZe4Y // https://t.co/AcDP7la2Nr https://t.co/BTeDO0D6NT +05/03/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: FRI 05/04 #THECHAMPIONSHIPSHOP +5/04 VANCOUVER, BC | LIVESTOCK | 141 E PENDER ST, VACOUVER, BC V6A 1T6, CANADA | 11AM - 7PM…" +04/30/2018,Musicians,@kendricklamar,".@TOPDAWGENT Presents: The CHAMPIONSHIP Shop | Pop-Up shops across North America, select locations produced in conj… https://t.co/VUjgTAkCSc" +04/29/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: TICKETS ON SALE TODAY @kendricklamar #DAMN (AUSTRALIA/NEW ZEALAND) + +AUS: https://t.co/HTpnm9vXBN + +NZ: https://t.co/x8Y9Egf…" +04/27/2018,Musicians,@kendricklamar,RT @dangerookipawaa: . @TopDawgEnt Presents: “The CHAMPIONSHIP Shop” https://t.co/DfEOAAh6Kc #TDE https://t.co/TDAdbD8VoQ +04/17/2018,Musicians,@kendricklamar,RT @miyatola: #TDE 🏆 Tour - https://t.co/fIN30IwxLz +04/08/2018,Musicians,@kendricklamar,RT @dangerookipawaa: It’s time to show our fans some love! #TDE Fan Appreciation Free Tees!!! Follow my ig page… https://t.co/iyKepFF6I4 +04/06/2018,Musicians,@kendricklamar,https://t.co/TDvrcY6t3R 🌊🌊🌊 +03/29/2018,Musicians,@kendricklamar,RT @dangerookipawaa: Let’s get it DG #TDE https://t.co/qBsnNU1oVr +03/28/2018,Musicians,@kendricklamar,Big Mingo said pull up champion... https://t.co/aqGVNboR5p +03/26/2018,Musicians,@kendricklamar,https://t.co/l5F0aYwLDo 🔥🔥🔥 +03/10/2018,Musicians,@kendricklamar,RT @stro: Stro - Steal & Rob. #RIPBIG https://t.co/HAkevYrxbF https://t.co/Aa9fbPPQIN +03/10/2018,Musicians,@kendricklamar,RT @jayworthy142: https://t.co/FgxfiWeIxG +03/08/2018,Musicians,@kendricklamar,https://t.co/v1K8meoDX8 +03/01/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP FRI - 03/02 OSLO, NORWAY| STRESS | +KIRKGATA 34, 0153 OSLO, NORWAY https://t.co/L8yF0YlakC" +02/28/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP THUR - 03/01 COPENHAGEN, DENMARK | STORM | STORE REGNEGADE 1, 1110 COPENHAGEN, DENMARK https://t.co/Jv3shEj4XI" +02/27/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP TUES - 02/27 ANTWERPEN, BELGIUM | VIER | KAMMENSTRAAT 62, 2000 ANTWERPEN, BELGIUM https://t.co/BMFQOYAFK6" +02/26/2018,Musicians,@kendricklamar,https://t.co/DgtQnyPv94 +02/23/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP SAT 02/24 PARIS, FRANCE | NOUS | 48 ROU CAMBON, 75001 PARIS, FRANCE https://t.co/Ze6lDvlFIl" +02/22/2018,Musicians,@kendricklamar,@Luxxkjr Goodlookin on my watch brick head toddler...I'm on! +02/21/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP THU 02/22 - FRI 02/23/18 ROTTERDAM, NETHERLANDS| ANSH46 | VAN OLDENBARNEVELTSTRAAT 99, 3012 GS ROTTER… https://t.co/LItXZaMibP" +02/19/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP TUES 02/20 - LONDON, UK | SELFRIDGES & CO.| 400 OXFORD ST., +MARLYLEBONE, LONDON, W1A 1AB U.K. https://t.co/DKl64uyOr5" +02/19/2018,Musicians,@kendricklamar,Honorable https://t.co/rs7aLqixWO +02/17/2018,Musicians,@kendricklamar,https://t.co/IHDNKhR27l +02/16/2018,Musicians,@kendricklamar,https://t.co/eV0h7S1k7N +02/15/2018,Musicians,@kendricklamar,"RT @dangerookipawaa: NEW VIDEO ""King's Dead"" https://t.co/f0FutwoWcG #TDE" +02/15/2018,Musicians,@kendricklamar,@Eazee OG Eazee +02/14/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THEDAMNPOPUP 02/15 - FRANKFURT, GERMANY | THE LISTENER | STEPHANSTRAßE 3, 60313 FRANKFURT AM MAIN, GERMANY https://t.co/St…" +02/14/2018,Musicians,@kendricklamar,https://t.co/qpPL1oqlTV | EUROPE https://t.co/7ws81hMUDW +02/11/2018,Musicians,@kendricklamar,"Black Panther + +Respect to all the artist/producers that allowed me to execute a sound for the soundtrack. + +The con… https://t.co/UJ5BtdTWxa" +02/11/2018,Musicians,@kendricklamar,All-Star Weekend Night Game. https://t.co/7pKX7abYt5 https://t.co/rnzNkwfjlY +02/09/2018,Musicians,@kendricklamar,@Jayrhome_gh 😂 +02/09/2018,Musicians,@kendricklamar,https://t.co/v1K8meoDX8 https://t.co/m1uqjPJimj +02/06/2018,Musicians,@kendricklamar,https://t.co/RExuaFTtQc +02/06/2018,Musicians,@kendricklamar,"THIS FRIDAY, 2/9. https://t.co/v1K8meoDX8 https://t.co/3muVKs7zTg" +01/31/2018,Musicians,@kendricklamar,Black Panther The Album 2/9 https://t.co/MqhsEcj6iF +01/30/2018,Musicians,@kendricklamar,"RT @thefader: Meet Charm La’Donna, the unforgettable dancer Kendrick Lamar brought to the Grammys. https://t.co/UvkrUOq8id https://t.co/ZYh…" +01/24/2018,Musicians,@kendricklamar,Snapped! https://t.co/Q5Av09NDQR +01/24/2018,Musicians,@kendricklamar,@iambekon get with the times!https://t.co/WYO8Mcl9uQ +01/24/2018,Musicians,@kendricklamar,"@iambekon get with the times! + +https://t.co/WYO8Mcl9uQ" +01/22/2018,Musicians,@kendricklamar,Amazing https://t.co/a3LVkFKpOJ +01/22/2018,Musicians,@kendricklamar,RT @dangerookipawaa: . @TopDawgEnt PRESENTS: THE CHAMPIONSHIP TOUR https://t.co/UOCPJIcyQh +01/19/2018,Musicians,@kendricklamar,https://t.co/3FWQ23NJI8 +01/17/2018,Musicians,@kendricklamar,RT @inglewoodSiR: “Summer in November” directed by Karena Evans | https://t.co/tqfbnxteSW | https://t.co/0IgCTymW75 https://t.co/5RC1W15fbV +01/12/2018,Musicians,@kendricklamar,"RT @dangerookipawaa: Chess Moves 2018 ""King's Dead"" https://t.co/f3B3mURhuV @jayrock #TDE https://t.co/7LdLduLiMx" +01/10/2018,Musicians,@kendricklamar,@dopeboySHAKE Minor setbacks for major comebacks. Push through it. Culture will need you. More. +01/05/2018,Musicians,@kendricklamar,"RT @MarvelStudios: .@KendrickLamar, @DangerooKipawaa, and @TopDawgEnt will curate and produce #BlackPanther: The Album, Music from and Insp…" +01/04/2018,Musicians,@kendricklamar,RT @dangerookipawaa: 1st move of 2018. #TDE https://t.co/p49N4tOZEq +12/28/2017,Musicians,@kendricklamar,RT @pharoahemonch: My life is all I have. https://t.co/pgFGfEeDEc +12/27/2017,Musicians,@kendricklamar,RT @inglewoodSiR: Something Foreign https://t.co/1RPcKMT9Nz +12/22/2017,Musicians,@kendricklamar,https://t.co/N74YuZqAPW +12/20/2017,Musicians,@kendricklamar,RT @dangerookipawaa: 🎶 Schest nuts roash-ting on a open fyah... Jack Frossh nipping from your nosehhhh 🎶 @rihanna @E40 #TDEXMAS17 https://t… +12/19/2017,Musicians,@kendricklamar,DON'T TRIP. CORTEZ KENNY https://t.co/KK0FemMsH3 +12/15/2017,Musicians,@kendricklamar,RT @dangerookipawaa: We back home. 4th Annual @TopDawgEnt holiday concert n toy giveaway 12/21 #TDEXMAS17 https://t.co/TdTfbrS9xa +12/15/2017,Musicians,@kendricklamar,It’s snow season @jeezy #Pressure out now 💎 #TrustYaProcess https://t.co/v6iSPvkD5K https://t.co/vXILb3S3s4 +12/08/2017,Musicians,@kendricklamar,RT @kendricklamar: COLLECTORS EDITION. https://t.co/gxWq1aCVCn https://t.co/DzMtsAvv6L +12/08/2017,Musicians,@kendricklamar,COLLECTORS EDITION. https://t.co/gxWq1aCVCn https://t.co/DzMtsAvv6L +12/07/2017,Musicians,@kendricklamar,"RT @HotNewHipHop: Check out the latest from @kendricklamar collaborator @iambekon. #coldasice + +https://t.co/AqbJZXEeRn" +11/30/2017,Musicians,@kendricklamar,RT @TopDawgEnt: #THEDAMNPOPUP WARPED.12/9/17-12/10/17 (12-8PM) #TDE https://t.co/BTDEqaPifw +11/29/2017,Musicians,@kendricklamar,"RT @inglewoodSiR: https://t.co/3JwkkzcU98 +https://t.co/z71kZfhPnO https://t.co/kesAp6pR7I" +11/28/2017,Musicians,@kendricklamar,https://t.co/6Batsbiyfe +11/27/2017,Musicians,@kendricklamar,RT @TopDawgEnt: ALL NEW ORDERS 30% OFF #BLACKFRIDAY Use Discount code: TDEHOLIDAY17 NOW @ https://t.co/qdvbJlkGc3 #TDE https://t.co/pLHAUg… +11/20/2017,Musicians,@kendricklamar,https://t.co/GZmXVodkkI +11/09/2017,Musicians,@kendricklamar,"11/18 - 11/19/17 (11AM-7PM) #THEDAMNPOPUP - TOKYO, JAPAN - MONKEYTIME HARAJUKU 6-13-9 JINGUMAE SHIBUYA-KU, TOKYO 15… https://t.co/6vqmcqG63V" +11/07/2017,Musicians,@kendricklamar,"#THEDAMNPOPUP - TOKYO, JAPAN https://t.co/x2E1rOJ3vZ" +10/27/2017,Musicians,@kendricklamar,https://t.co/cphnbDbsuS 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +09/21/2017,Musicians,@kendricklamar,https://t.co/raOcufOxPd Rapsody at her best. +08/26/2017,Musicians,@kendricklamar,Cortez. Since day one. #teamnike #TDE @nike @nikelosangeles https://t.co/HEfReKy6zd +08/26/2017,Musicians,@kendricklamar,5th listen. +08/26/2017,Musicians,@kendricklamar,https://t.co/ovjuQN8weO listen to this album if you feel anything. raw thoughts. https://t.co/ovjuQN8weO +08/24/2017,Musicians,@kendricklamar,"2DAY: 08/24 (11AM-7PM) #THEDAMNPOPUP MONTREAL - 407 Saint Pierre St. Montreal, Quebec H2Y 2M3 https://t.co/nQBalBEH2u" +08/24/2017,Musicians,@kendricklamar,RT @dangerookipawaa: Another night in the stu with @jayrock & @MixedByAli .... we need y'all help.. who shud we feature on this trk? https:… +08/23/2017,Musicians,@kendricklamar,RT @TopDawgEnt: Be sure to download and use the @turnstilelive app to be ONE of several lucky winners to meet @KendrickLamar tonight @AirCa… +08/22/2017,Musicians,@kendricklamar,RT @Complex: A&R and music industry veteran @BrockyMarciano is on our latest episode of 'The Culture.' WEDNESDAY @ 10 AM. https://t.co/6v1p… +08/22/2017,Musicians,@kendricklamar,"2DAY: 08/22 (11AM - 7PM) #THEDAMNPOPUP DUBLIN, OH - @SOLECLASSICS 6391 SAWMILL ROAD DUBLIN, OH #TDE https://t.co/E0HpFy6ybW" +08/06/2017,Musicians,@kendricklamar,"2DAY: 08/06 (11AM) #THEDAMNPOPUP @BLENDSLA 725 S Los Angeles St. Los Angeles, CA 90014 https://t.co/gqw4CNAmhR" +08/05/2017,Musicians,@kendricklamar,"2DAY: 08/05 (11AM) #THEDAMNPOPUP LAS VEGAS - INSTITUTION 918 S Main St. Las Vegas, NV 89101 https://t.co/b4EMzVYmIj" +08/04/2017,Musicians,@kendricklamar,"2DAY: 08/04 (11AM) #THEDAMNPOPUP SAN FRANCISCO - 45 Wentworth Place San Francisco, CA 94108 https://t.co/66pjkYbgkX" +08/01/2017,Musicians,@kendricklamar,"2DAY: 08/01 (11AM-7PM) + +#THEDAMNPOPUP SEATTLE - ALIVE & WELL 705 E PIKE ST SEATTLE, WA 98122 https://t.co/7w0dxxRs9K" +07/29/2017,Musicians,@kendricklamar,"2DAY: 07/29 (11AM) + +#THEDAMNPOPUP DENVER - ABSTRACT 84 S BROADWAY DENVER, CO 80209 https://t.co/8cWZl4W8Mq" +07/28/2017,Musicians,@kendricklamar,LOYALTY. https://t.co/m3bUZONMqb +07/27/2017,Musicians,@kendricklamar,"2DAY: 07/27 (11AM) + +#THEDAMNPOPUP CHICAGO - NOTRE 118 N PEORIA 1N CHICAGO, IL 60607 https://t.co/pqbtaCOy3z" +07/25/2017,Musicians,@kendricklamar,"2DAY: 07/25 (11AM) + +#THEDAMNPOPUP TORONTO - LIVESTOCK 116 SPADINA AVENUE TORONTO, ON M5V 2K6 https://t.co/cBZGxjyPBv" +07/22/2017,Musicians,@kendricklamar,"2DAY: 07/22 (11AM) + +#THEDAMNPOPUP CAMBRIDGE, MA @ CONCEPTS - 9 JFK ST. CAMBRIDGE, MA 02138 https://t.co/StuUXV5DWj" +07/21/2017,Musicians,@kendricklamar,"2DAY: 07/21 (11AM) + +#THEDAMNPOPUP WASHINGTON, DC - UBIQ 3124 M ST NW WASHINGTON DC, 20007 https://t.co/QjQiWVd6NM" +07/20/2017,Musicians,@kendricklamar,"2DAY: 07/20 (11AM) + +#THEDAMNPOPUP NEW YORK - 39 Spring Street New York, NY 10012 #TDE https://t.co/s4z3zlWI5V" +07/19/2017,Musicians,@kendricklamar,"2DAY: 07/19 (11AM) + +#THEDAMNPOPUP PHILADELPHIA - UBIQ +1509 Walnut Street +Philadelphia, PA 19102 https://t.co/fyMf4gpJ1s" +07/17/2017,Musicians,@kendricklamar,"2DAY: 07/17 (11AM) + +#THEDAMNPOPUP +ATLANTA - 117 MLK JR. DRIVE SW ATLANTA, GA 30303 https://t.co/qiRDNuGl52" +07/15/2017,Musicians,@kendricklamar,"2DAY: 07/15 (11AM) + +#THEDAMNPOPUP +HOUSTON - The Tipping Point: 214 Travis St. Suite A Houston, TX 77002 https://t.co/O3X55uUHLr" +07/14/2017,Musicians,@kendricklamar,https://t.co/9dMG6l1sa7 Congrats champ. @TheJay305 +07/14/2017,Musicians,@kendricklamar,"2DAY: 07/14 (11AM) + +#THEDAMNPOPUP +DALLAS - Black Market USA: 5509 W. Lovers Ln Dallas, TX 75209 https://t.co/OALcvWfhJs" +07/13/2017,Musicians,@kendricklamar,THE WILDEST SHOW IS BROUGHT TO YOU BY KUNGFU KENNY TRAVIS SCOTT AND DRAM. ARIZONA. AMAZING START. +07/11/2017,Musicians,@kendricklamar,"RT @MackWop: ""if it wasn't for wayne' Mix on the Cizoud now!! + +play games like ya favorite rapper aint study him + +https://t.co/aEXAxKWd9E" +07/10/2017,Musicians,@kendricklamar,https://t.co/zuPd6pqkSx https://t.co/yxgejmZsdm +07/10/2017,Musicians,@kendricklamar,RT @TopDawgEnt: https://t.co/bOZMTafQ58 @daynnightfestoc #TDE https://t.co/Q0uiYvTqF8 +07/07/2017,Musicians,@kendricklamar,https://t.co/MO3qBpExO8 +07/06/2017,Musicians,@kendricklamar,https://t.co/iNYpzYFSlF +06/30/2017,Musicians,@kendricklamar,4:44. WOW. MASTER TEACHER. +06/27/2017,Musicians,@kendricklamar,https://t.co/ByaRPv7vL4 +06/20/2017,Musicians,@kendricklamar,RT @sza: drew barrymore ☺️✨ https://t.co/MnA0iKchy7 +06/20/2017,Musicians,@kendricklamar,JAY HALL OF FAME. NIPSEY MORE BLACK BUSINESS MOVES. LIL MEECH NAILED HIS PAC DEBUT. 2CHAINZ SNAPPIN THE WHOLE ALBUM. RAP RUN IT 4EVER! +06/15/2017,Musicians,@kendricklamar,Stellar performance and story telling. Very proud of this woman. @SZA https://t.co/KIAQz9oTqS +06/09/2017,Musicians,@kendricklamar,"RT @sza: I made this, here it go #Ctrl https://t.co/14S37bgAhN" +05/30/2017,Musicians,@kendricklamar,"RT @MikeWiLLMadeIt: 🚨🦍🚨 + +#PerfectPintsVideo is live + +FT: Kendrick Lamar, Rae Sremmurd, Gucci Mane + +#RANSOM2 + +https://t.co/bdV7egQDUK" +05/25/2017,Musicians,@kendricklamar,RT @dangerookipawaa: a word from RZA https://t.co/vKIMyOBscA +05/11/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +05/01/2017,Musicians,@kendricklamar,DAMN. https://t.co/QKX5FEEidd +04/25/2017,Musicians,@kendricklamar,RT @AmericanExpress: Card Members can get #AmexPresale tix now thru 4/27 to see @KendrickLamar! https://t.co/hj9o9EqRWa https://t.co/W5hDI0… +04/24/2017,Musicians,@kendricklamar,THE DAMN. TOUR https://t.co/RK89UlBayi +04/22/2017,Musicians,@kendricklamar,https://t.co/yRJKuUM8TH +04/22/2017,Musicians,@kendricklamar,RT @dshyman: Got the low down on the new Kendrick from his main man @SounwaveTDE for @GQMagazine https://t.co/hxXhzXBKO0 +04/21/2017,Musicians,@kendricklamar,KenFolk. ThankU 4 the desire of always anticipating new music of my own. None is coming. My work will be in our future TDE dates tho. 💯#DAMN +04/20/2017,Musicians,@kendricklamar,COMPTON. https://t.co/OGxQK6drtX +04/19/2017,Musicians,@kendricklamar,vinyl. https://t.co/fuRHqbg57B +04/19/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +04/18/2017,Musicians,@kendricklamar,RT @DonCheadle: DNA. https://t.co/vN15jKbh2r +04/18/2017,Musicians,@kendricklamar,physicals. https://t.co/334a2Jp27N +04/16/2017,Musicians,@kendricklamar,https://t.co/9aK87Qi8Dt +04/16/2017,Musicians,@kendricklamar,"RT @ESPNNBA: The NBA playoffs start at 3 ET on ABC. + +Something to sit down for, right @kendricklamar? https://t.co/QwXVyJx92x" +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/rWvi04oCTE +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/oJ9UDztNML +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/0nyaf30vtA +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/oqPIAkOCNL +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +04/11/2017,Musicians,@kendricklamar,DAMN. by Kendrick Lamar. https://t.co/ucQcg0PuzG +04/06/2017,Musicians,@kendricklamar,HUMBLE. https://t.co/8WpQ628QIQ +04/04/2017,Musicians,@kendricklamar,"RT @trvisXX: GOOSEBUMPS VIDEO +https://t.co/13PW2RUwNk" +04/02/2017,Musicians,@kendricklamar,RT @S_C_: Kalief is a prophet. His story will save lives . You guys watching and your compassion made this happen. Thank you . https://t.co… +03/31/2017,Musicians,@kendricklamar,Mr. 1-5 +03/31/2017,Musicians,@kendricklamar,Kung Fu Kenny. +03/31/2017,Musicians,@kendricklamar,https://t.co/jAapTgpTEN +03/31/2017,Musicians,@kendricklamar,https://t.co/f5IoSdCANQ +03/31/2017,Musicians,@kendricklamar,https://t.co/y7wjvh5mZo +03/31/2017,Musicians,@kendricklamar,https://t.co/ODrJikuh19 +03/30/2017,Musicians,@kendricklamar,https://t.co/E2STAyQ7GT +03/30/2017,Musicians,@kendricklamar,RT @PROBLEM354: I've slept a total of 3 hours on the last 2 days +03/24/2017,Musicians,@kendricklamar,The Heart Part 4 https://t.co/XcDcxJtvCt +03/24/2017,Musicians,@kendricklamar,The Heart Part 4 https://t.co/C9M7ZH1o4v +03/01/2017,Musicians,@kendricklamar,RT @S_C_: This is important. spike tv 10pm/9c https://t.co/JkRZxJ1YHT +02/24/2017,Musicians,@kendricklamar,I love it Nicki Minaj. 😍👑🤕 +02/22/2017,Musicians,@kendricklamar,"RT @S_C_: By the way, this is a win for US. I remember when rap was said to be a fad . We are now alongside some of the greatest writers in…" +02/07/2017,Musicians,@kendricklamar,RT @dangerookipawaa: https://t.co/g8m5doKMtN @sza +01/21/2017,Musicians,@kendricklamar,RT @fatbellybella: Never Forget... https://t.co/fRvrSa6vcD +01/20/2017,Musicians,@kendricklamar,@potus We really gonna miss you champ. The good you've done & opportunity's you've given. Truly never know what we got til its gone. Thank u +01/19/2017,Musicians,@kendricklamar,RT @dangerookipawaa: Welcome home kid #JohnDoe2 @inglewoodSiR https://t.co/hvSE8rcoEl #TDE +01/13/2017,Musicians,@kendricklamar,@sza 😍. https://t.co/omjNdjjYx1 Amazing writer. Thank you. +12/20/2016,Musicians,@kendricklamar,2DAY. Family. #TDEXMAS2016 https://t.co/uJTOkTk1gl +12/15/2016,Musicians,@kendricklamar,"RT @ScHoolboyQ: #BlankFaceTour - Groovy Tony [EPISODE 5] +https://t.co/0pfFN4ndob" +12/15/2016,Musicians,@kendricklamar,"RT @abdashsoul: Do What Thou Wilt. +https://t.co/VvbDguXSsO" +12/14/2016,Musicians,@kendricklamar,next stop with @americanexpress… Brooklyn. https://t.co/4SNi3yFXBp +12/09/2016,Musicians,@kendricklamar,RT @abdashsoul: Not Ye. https://t.co/qSxcHhDLxi https://t.co/zaFzVeIuUE +11/30/2016,Musicians,@kendricklamar,Music Meets Art. My exclusive concert experience with @americanexpress and @Shantell_Martin Tomorrow. Miami.… https://t.co/3E3vfy49lV +11/27/2016,Musicians,@kendricklamar,RT @MoosaTDE: @KEMBE_X 'Oxygen' https://t.co/owKqy4jvUs +11/16/2016,Musicians,@kendricklamar,@VSattenXXL https://t.co/kpSk0zamJO +10/24/2016,Musicians,@kendricklamar,#LilSunnyTour #TDE https://t.co/671ca9NZ5s +10/20/2016,Musicians,@kendricklamar,RT @GQStyle: Kendrick Lamar covers the Holiday issue of GQ Style https://t.co/G2JUjjshE6 https://t.co/yMyttfiPqs +10/13/2016,Musicians,@kendricklamar,"RT @maroon5: The wait is over. Our new single #DontWannaKnow, Ft. @KendrickLamar​ is out now on @AppleMusic https://t.co/f4dsNRwVoE https:/…" +10/07/2016,Musicians,@kendricklamar,Look. https://t.co/Z6x9VRifW8 +10/03/2016,Musicians,@kendricklamar,https://t.co/cXU0aDNnAl +09/27/2016,Musicians,@kendricklamar,Pimp pimp! available now. https://t.co/uooPMbe3Qe https://t.co/TqR7hpamh0 +09/02/2016,Musicians,@kendricklamar,RT @isaiahrashad: Thanks for holding us down.. and thanks to our parents for keeping our phones on https://t.co/XOuMg2mxJw +08/24/2016,Musicians,@kendricklamar,Blonde and Endless. Encore to Frank. +08/05/2016,Musicians,@kendricklamar,"RT @skiiiwalker: ""All Stops"" https://t.co/OSoWQaWNBD" +07/29/2016,Musicians,@kendricklamar,RT @iamstillpunch: Shout out to Oran Juice Jones. He was pretty pissed when he caught his lady walking in the rain with that other nigga. L… +07/24/2016,Musicians,@kendricklamar,Isaiah Copper. Go young man! Go!https://t.co/pWzlKnxFKs +07/23/2016,Musicians,@kendricklamar,RT @TopDawgEnt: [NEW MERCH ALERT] @kendricklamar #PanoramaNYCFestival Purchase yours today and tmrw!!! #TDE https://t.co/rpqA6PwN5l +07/21/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: new video. joHn muir: https://t.co/a1eQtq21iZ +07/08/2016,Musicians,@kendricklamar,#BlankFaceLP https://t.co/KrV7Rwjz6X +07/08/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: THat OtHer Part. Black Hippy REMIX. #BlankFaceLP drops in 1Hr!!! https://t.co/Em7DvFuqmv https://t.co/lipjpQsrLw +07/04/2016,Musicians,@kendricklamar,tune in https://t.co/IxoEMyLOPG @WhiteHouse 645PM EST +06/25/2016,Musicians,@kendricklamar,"London. 7/2 @BSTHydePark +https://t.co/0gVYPdS18g https://t.co/mEcFS4pSDO" +06/16/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: OFFICIAL - JULY 8tH https://t.co/exxCxblb12 +05/11/2016,Musicians,@kendricklamar,. @skiiiwalker ? +05/01/2016,Musicians,@kendricklamar,@Luxxkjr gmoms food it is... +05/01/2016,Musicians,@kendricklamar,@Luxxkjr u must got a few dollas on you. Steak and lobster. Let me hold somethin. +04/14/2016,Musicians,@kendricklamar,No pressure. THE GREAT ONE. @kobebryant . Thank you for the journey champ. +04/12/2016,Musicians,@kendricklamar,.@JCrossover https://t.co/MEupLv6p32 +04/12/2016,Musicians,@kendricklamar,"RT @SportsCenter: ""How do empires last when there's no longer an emperor?"" + +@kendricklamar honors @kobebryant. https://t.co/iTWKDfY53M" +04/06/2016,Musicians,@kendricklamar,https://t.co/o711uZ7bBJ ....super. +04/06/2016,Musicians,@kendricklamar,Miles Ahead by the incredible @IamDonCheadle. Must see. +04/05/2016,Musicians,@kendricklamar,Q season. +07/02/2018,Musicians,@OzzyOsbourne,Cultureshock: @TheOsbournesTV airs TONIGHT on @AETV https://t.co/v0SDIFQiKa +07/01/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: Last day of 20% OFF! https://t.co/6Eh3zt5bZS +06/30/2018,Musicians,@OzzyOsbourne,"The North American leg of #NoMoreTours2 kicks off in just 2 MONTHS! + +Go to https://t.co/mlduswcZH5 to see the list… https://t.co/de69cH94V9" +06/29/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Warehouse Summer Sale! + +Get 20% OFF EVERYTHING in our @eBay Store now thru Sunday night! +https://t.co/pHLOvgnrE0 + +Plus 10%…" +06/29/2018,Musicians,@OzzyOsbourne,"on stage 1978 +#fbf https://t.co/WNgJlnvBB7" +06/29/2018,Musicians,@OzzyOsbourne,RT @DKMS_us: Thank you @OzzyOsbourne for supporting us in the fight against blood cancer. https://t.co/t9EVrKm4Sw +06/28/2018,Musicians,@OzzyOsbourne,https://t.co/RVhNph0rw0 +06/28/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: Cultureshock: @TheOsbournesTV airs July 2nd on @AETV +Set your DVR's and RSVP at https://t.co/vBjlfQ7ERP https://t.co/Uy…" +06/28/2018,Musicians,@OzzyOsbourne,"Please #GetOnTheList with @LHSF AND consider donating to help delete blood cancer! +@DKMS_us @DKMS_uk + +https://t.co/BahNozGIrr" +06/28/2018,Musicians,@OzzyOsbourne,"My life is free now, my life is clear +I love you sweet leaf—though you can’t hear. + +#tbt https://t.co/MpHQSUvslU" +06/27/2018,Musicians,@OzzyOsbourne,"RT @AETV: Watch Ozzy and Jack tonight at 9pm to welcome a new member to the A&E family, Minnie Theodora Osbourne! https://t.co/RQ2Lc3DmUT" +06/27/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: . @AETV's Cultureshock: @TheOsbournesTV airs July 2nd, Set your DVR's! +RSVP at https://t.co/kTN26dYmTB + + And don't for…" +06/27/2018,Musicians,@OzzyOsbourne,"RT @AETV: ""Namaste Dad!"" Keep up with @OzzyOsbourne and @KellyOsbourne tonight at 9 PM on #OzzyandJack. https://t.co/mgn5oybmMr" +06/27/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Grab the Ice Cream and get ready for an all new episode of #OzzyAndJack's and #Kelly’s World Detour TONIGHT on @AETV! ht… +06/27/2018,Musicians,@OzzyOsbourne,Get FIRED UP for an all new episode of @OzWorldDetour airing TONIGHT on @AETV! https://t.co/EwkLin5FcI +06/26/2018,Musicians,@OzzyOsbourne,"with Glenn Tipton a couple nights ago in Belgium + +Photo: @RossHalfin https://t.co/a4CfHqgO8y" +06/25/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: All new episode this Wednesday at 9pm on @AETV! #OzzyAndJack https://t.co/NkE4qi0QAj +06/25/2018,Musicians,@OzzyOsbourne,"Hey @Channel4 move to Birmingham + +#WMGeneration +@Channel4News +@BhamCityCouncil https://t.co/49h4IHjaSw" +06/25/2018,Musicians,@OzzyOsbourne,"""Hand of the Enemy"" + +https://t.co/dUowi7ABaZ https://t.co/KgQHM9cfXa" +06/24/2018,Musicians,@OzzyOsbourne,Tune in to Wednesday's all new @OzWorldDetour on @AETV! https://t.co/6zHD3kuZSY +06/23/2018,Musicians,@OzzyOsbourne,on stage 1977 https://t.co/yypZgUY1vA +06/23/2018,Musicians,@OzzyOsbourne,"RT @AETV: ICYMI: Last night on #OzzyandJack, @OzzyOsbourne and @KellyOsbourne head to Arizona and see sites that would make @JackOsbourne j…" +06/22/2018,Musicians,@OzzyOsbourne,Who would like to see @TheOzzfest happen in the New York area this year? Post your answers at… https://t.co/rB6zXAP4Jf +06/22/2018,Musicians,@OzzyOsbourne,1977 #fbf https://t.co/Y5yokOQ5Ju +06/21/2018,Musicians,@OzzyOsbourne,"on stage in Illinois 1974 + +I return to the Chicago area in only 3 MONTHS! #NoMoreTours2 + +https://t.co/wj6aIKJIuI https://t.co/fanhadaCPW" +06/21/2018,Musicians,@OzzyOsbourne,RT @AETV: Superhero Ozzy! #OzzyandJack https://t.co/pIhDgWRBEK +06/21/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: We're back tonight! Check out the hijinks at 9pm on @AETV! #OzzyAndJack https://t.co/n7GsE9pRjb +06/20/2018,Musicians,@OzzyOsbourne,On tonight’s episode of @OzWorldDetour on @AETV https://t.co/5Hh38m932v +06/19/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: On this week’s World Detour https://t.co/XZriQMTuzA +06/19/2018,Musicians,@OzzyOsbourne,RT @LHSF: Just about two months until #lovehopestrength… https://t.co/WOoKU8n6bf +06/19/2018,Musicians,@OzzyOsbourne,Traveled to the Prague show last week this @AudiUK #audiSQ7. Nice ride! https://t.co/2HZFZJtSms +06/18/2018,Musicians,@OzzyOsbourne,on stage in the early days https://t.co/UJBcsi5ce0 +06/17/2018,Musicians,@OzzyOsbourne,"Happy Father’s Day! + +Photo: @markweissguy https://t.co/4J9VzOJkmW" +06/17/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: Happy Father’s Day to this guy right here. He’s… https://t.co/BhHgx05arh +06/16/2018,Musicians,@OzzyOsbourne,Lazy Saturday at Home 1990 https://t.co/jQRWcdF2J7 +06/15/2018,Musicians,@OzzyOsbourne,"Just me and Johnny hanging in Prague + +Photo: @RossHalfin https://t.co/bJSvP3orMC" +06/14/2018,Musicians,@OzzyOsbourne,Great to see my old friend @JDavisOfficial when we were gigging together in Prague. https://t.co/rVTGrtX3Fu +06/14/2018,Musicians,@OzzyOsbourne,"June 13 & 14, 1986 +with @Metallica at Long Beach Arena +#tbt https://t.co/2QOCGCvnmg" +06/13/2018,Musicians,@OzzyOsbourne,"Season 3 of Ozzy & Jack's @OzWorldDetour begins TONIGHT on @AETV! + +#ozzyandjack https://t.co/NUOQAnfNZY" +06/12/2018,Musicians,@OzzyOsbourne,with my old friend Baldric https://t.co/xsWOtRHgir +06/12/2018,Musicians,@OzzyOsbourne,"RT @MSOPR: .@OzzyOsbourne hit it hard @DownloadFest in the U.K with 80,000 fans on hand. https://t.co/p6qtIJNwkV" +06/11/2018,Musicians,@OzzyOsbourne,RT @PCFnews: Thank you! https://t.co/q1Yo2ZjcQv +06/11/2018,Musicians,@OzzyOsbourne,"Released June 11, 2010 + +https://t.co/SpKHTOrJYl" +06/11/2018,Musicians,@OzzyOsbourne,RT @MrsSOsbourne: From @OzzyOsbourne’s show yesterday at @DownloadFest https://t.co/OixXJpMFVt +06/11/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @OzzyOsbourne at #Ozzfest 2001 https://t.co/10XCeg0eqP +06/11/2018,Musicians,@OzzyOsbourne,"at the @HollywoodBowl in 1975 + +I return to The Bowl in 4 MONTHS for #NoMoreTours2 on Oct 11 with @StoneSour… https://t.co/6xvx179ppJ" +06/11/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Thank you @DownloadFest. +I hope you had a great time, I know I did. + +Next stop for #NoMoreTours2 us the Czech Republic! h…" +06/10/2018,Musicians,@OzzyOsbourne,"Thank you @DownloadFest. +I hope you had a great time, I know I did. + +Next stop for #NoMoreTours2 us the Czech Repub… https://t.co/Hvg2BVuTOv" +06/10/2018,Musicians,@OzzyOsbourne,"TRI-STATE AREA! + +Less than 3 Months until #NoMoreTours2 at @NorthwellJBT followed by @PNCArtsCenter + +Show list:… https://t.co/MlBQs2iSpb" +06/09/2018,Musicians,@OzzyOsbourne,Season 3 of #OzzyAndJack’s @OzWorldDetour starts this Wednesday June 13th on @AETV https://t.co/tINlNf6Cqj +06/09/2018,Musicians,@OzzyOsbourne,RT @AETV: Buckle Up and watch this SNEAK PEEK from the upcoming season of #OzzyandJack premiering Wednesday June 13th at 9PM! https://t.co/… +06/08/2018,Musicians,@OzzyOsbourne,"Thank you and goodnight @SwedenRockFest! + +Next stop for #NoMoreTours2 is @DownloadFest on Sunday https://t.co/cBn4Vhhftd" +06/08/2018,Musicians,@OzzyOsbourne,RT @TheOsbournesTV: . #OzzyAndJack’s @OzWorldDetour Season 3 begins on WEDNESDAY on @AETV! https://t.co/CL46aqzOtL +06/08/2018,Musicians,@OzzyOsbourne,"June 8, 1984 edition of +The Weekend Dallas Times Herald +#fbf https://t.co/iyVRib1KxA" +06/07/2018,Musicians,@OzzyOsbourne,"Ozzy & Jack's @OzWorldDetour Season 3 Premier is this Wednesday June 13th on @AETV! + +#ozzyandjack https://t.co/bBIhzigufc" +06/07/2018,Musicians,@OzzyOsbourne,"RT @RollingStone: Ozzy Osbourne tells us about roadtripping with his kids, blowing stuff up and trying goat yoga https://t.co/RKUvuMWAmj ht…" +06/07/2018,Musicians,@OzzyOsbourne,"RT @AETV: Whose ready for a rockin' ride?! Ozzy, Jack, and Kelly are headed out on the road in the season premiere of #OzzyJack June 13th a…" +06/06/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts airing 1 WEEK from today on @AETV! https://t.co/uLelncLXk1 +06/06/2018,Musicians,@OzzyOsbourne,"BOSTON!! + +Only 3 MONTHS until #NoMoreTours2 hits the @XfinityCenter! + +https://t.co/wj6aIKJIuI https://t.co/WH9rCEZrAq" +06/06/2018,Musicians,@OzzyOsbourne,"RT @JackOsbourne: Season 3 of #OzzyandJack starts at 9PM Wednesday June 13th on @AETV! +#ozzyandjack https://t.co/zNGadi1FFz" +06/05/2018,Musicians,@OzzyOsbourne,"Thank you Russia for an amazing kickoff to the 2nd leg of #NoMoreTours2! + +Head to https://t.co/mlduswcZH5 to see a… https://t.co/MqaqgOA06M" +06/05/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Season 3 of @OzWorldDetour begins Wednesday June 13th on @AETV! + +https://t.co/NpObSjfBub + +#ozzyandjack https://t.co/VrDP4…" +06/05/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: In honor of June being Men's Health Month, 10% of all proceeds in the #Ozzfest @eBay Store will go directly to the Prostate…" +06/04/2018,Musicians,@OzzyOsbourne,"RT @OzzysBoneyard: NEW EPISODE of Ozzy Speaks!!! +Today @ 5 & 8pm ET hear @OzzyOsbourne @BillyMorrison #OzzySpeaks on Ozzy’s Boneyard! 🤘🏼 +Re…" +06/04/2018,Musicians,@OzzyOsbourne,New episode of #OzzySpeaks airs TODAY at 5pm ET/2pm PT on @SIRIUSXM @OzzysBoneyard! https://t.co/HbIH59QpCj +06/03/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts at 9PM Wednesday June 13th on A&E! https://t.co/N6yt4gH1tm +06/03/2018,Musicians,@OzzyOsbourne,"Street Plaques in 3 Countries: +Moscow, Russia; Hollywood, CA and Birmingham U.K. https://t.co/xYb6wLCbqb" +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Last night in Moscow. +Tomorrow night is St. Petersburg! https://t.co/mlduswcZH5 + +Photo: @RossHalfin https://t.co/VITekK7d…" +06/02/2018,Musicians,@OzzyOsbourne,"Last night in Moscow. +Tomorrow night is St. Petersburg! https://t.co/mlduswcZH5 + +Photo: @RossHalfin https://t.co/VITekK7dsd" +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzzysBoneyard: Ozzy Osbourne: ‘My problem, really, is I don’t remember I’m 70’ [He’s 69] https://t.co/vgWDHvY1Z0" +06/02/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts on Wednesday June 13th on @AETV https://t.co/gIRFGsTprx +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: Happy Friday! +#ozzyandjack https://t.co/26A9qnSKT1" +06/02/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: Season 3 of @OzWorldDetour begins Wednesday June 13th on A&E! + +#ozzyandjack https://t.co/AQzCg72gc9" +06/01/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Yesterday at the Vegas Center in Moscow + +2 Russian Shows This Week: +Moscow Today and St. Petersburg on Sunday! +https://t.…" +06/01/2018,Musicians,@OzzyOsbourne,"Yesterday at the Vegas Center in Moscow + +2 Russian Shows This Week: +Moscow Today and St. Petersburg on Sunday!… https://t.co/LXBDnwFLvY" +06/01/2018,Musicians,@OzzyOsbourne,"RT @AETV: ""The Prince of Darkness...Look where I've ended up!"" The new season of #OzzyandJack begins June 13th at 9PM. https://t.co/DMpa2jW…" +06/01/2018,Musicians,@OzzyOsbourne,RT @axs: In two weeks The Dark Lords of Metal will shine their black sun upon @OzzyOsbourne! https://t.co/AofypCWVuU https://t.co/K4h7GWIzUg +06/01/2018,Musicians,@OzzyOsbourne,"RT @LIPALiverpool: Then this afternoon Ozzy and Sharon Osbourne chat to Noddy Holder about picking up the pieces after #BlackSabbath split,…" +05/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Less than 1 WEEK until https://t.co/2D2tbXx3Fy in Hyvinkää! + +TIX: https://t.co/egyqL8NGcL https://t.co/LVMVE7Hj5O" +05/31/2018,Musicians,@OzzyOsbourne,"Less than 1 WEEK until https://t.co/2D2tbXx3Fy in Hyvinkää! + +TIX: https://t.co/egyqL8NGcL https://t.co/LVMVE7Hj5O" +05/31/2018,Musicians,@OzzyOsbourne,"on stage at Cal Jam 1974 +#tbt https://t.co/1OkYV0M7FG" +05/31/2018,Musicians,@OzzyOsbourne,RT @MetalHammer: .@OzzyOsbourne is coming to the Golden Gods! https://t.co/WM0OqDhI4v +05/31/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: Announcing the #Ozzfest 2004 Lineup with @OzzyOsbourne @MrsSOsbourne @Slayer @JudasPriest @ZakkWyldeBLS @DownNola @Lacuna_C… +05/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Which show are you coming to? +https://t.co/mlduswcZH5 + + #NoMoreTours2 https://t.co/tw6IAzbDQv" +05/30/2018,Musicians,@OzzyOsbourne,"Which show are you coming to? +https://t.co/mlduswcZH5 + + #NoMoreTours2 https://t.co/tw6IAzbDQv" +05/30/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @OzzyOsbourne at #Ozzfest 2002 https://t.co/dclaLQvHRV +05/30/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: 35 Years Ago Today + +https://t.co/xdAXmzhkSq" +05/29/2018,Musicians,@OzzyOsbourne,"35 Years Ago Today + +https://t.co/xdAXmzhkSq" +05/28/2018,Musicians,@OzzyOsbourne,"Season 3 of @OzWorldDetour begins Wednesday June 13th on @AETV! + +https://t.co/NpObSjfBub + +#ozzyandjack https://t.co/VrDP4T9OHK" +05/27/2018,Musicians,@OzzyOsbourne,Pick up the current issue of @MetalHammer https://t.co/DqQJXCw4NU +05/26/2018,Musicians,@OzzyOsbourne,"Want to hear an episode of ""Ozzy Speaks"" but don't have @SiriusXM? Now is your FREE chance!! + +Head to the link bel… https://t.co/jzcqAoCvpq" +05/25/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack begins Wednesday June 13th on @AETV! https://t.co/4ZxXxgR8Ao +05/25/2018,Musicians,@OzzyOsbourne,"Only 1 WEEK until the next leg of #NoMoreTours2 kicks off! +Head to https://t.co/mlduswcZH5 to see the list of shows… https://t.co/yf4RIRBfY2" +05/25/2018,Musicians,@OzzyOsbourne,RT @WSJ: Ozzy Osbourne tells the story of the song that helped put him and Black Sabbath on the map https://t.co/eKpQ45kSRa +05/25/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Ozzy Osbourne - ""Perry Mason"" Live at Ozzfest 1996 https://t.co/e2XO63pb36" +05/24/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: #ozzyandjack https://t.co/9q0iJ8YQY5 +05/24/2018,Musicians,@OzzyOsbourne,#tbt https://t.co/nd5QNjMC2j +05/24/2018,Musicians,@OzzyOsbourne,RT @MetalHammer: ...but that’s not all that’s inside our new issue. We got together some of metal’s biggest names to interview The Prince O… +05/23/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Thank you South America! +Next stop for #NoMoreTours2 is Russia! + +Upcoming shows http:/:https://t.co/mlduswcZH5 + +Photo: Al…" +05/23/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Released May 22nd 2007 + +https://t.co/uE5QvCo1M5" +05/22/2018,Musicians,@OzzyOsbourne,"Released May 22nd 2007 + +https://t.co/uE5QvCo1M5" +05/22/2018,Musicians,@OzzyOsbourne,"Thanks to my friends at @MetalCasino, I have 2 extra of the festival’s VIP tickets to Sweden Rock Festival! + +To win… https://t.co/dCzSvOYgp3" +05/22/2018,Musicians,@OzzyOsbourne,"Thank you South America! +Next stop for #NoMoreTours2 is Russia! + +Upcoming shows http:/:https://t.co/mlduswcZH5 + +Pho… https://t.co/yQFX0FxF7D" +05/22/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Don't forget you can roll to #NoMoreTears with a VIP Package! + +Europe: https://t.co/aEdD9AApiJ +North America: https://t.c…" +05/21/2018,Musicians,@OzzyOsbourne,Riffing into a Monday like... https://t.co/6rvT7TXI2a +05/20/2018,Musicians,@OzzyOsbourne,Time to read the Sunday paper https://t.co/4j0t8bWofb +05/19/2018,Musicians,@OzzyOsbourne,"Don't forget you can roll to #NoMoreTears with a VIP Package! + +Europe: https://t.co/aEdD9AApiJ +North America:… https://t.co/jFqwpu09yg" +05/18/2018,Musicians,@OzzyOsbourne,"on stage in the 70's +#fbf https://t.co/Dj0E6NrImw" +05/17/2018,Musicians,@OzzyOsbourne,"Double Picture Disc LP versions of 'Memoirs of a Madman' on sale TODAY at @PopMarketMusic! + +https://t.co/gur6xHglEj" +05/17/2018,Musicians,@OzzyOsbourne,"on the cover of Faces Magazine May 1984 +#tbt https://t.co/k5s0Bu56bi" +05/17/2018,Musicians,@OzzyOsbourne,RT @OzzysBoneyard: https://t.co/nDS7prehOK +05/17/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: RSVP to let us know you'll be watching! +https://t.co/yjsxWeshWm" +05/16/2018,Musicians,@OzzyOsbourne,"Wish you could check out @OzzysBoneyard for FREE? +Now is your chance - May 29th! +https://t.co/4GHZ4FybAx + +Your inac… https://t.co/cCXcMeoEO8" +05/15/2018,Musicians,@OzzyOsbourne,"On way to Curitiba for tomorrow's concert! +#NoMoreTours2 at Pedreira Paulo Leminski +https://t.co/mlduswcZH5 + +Photo:… https://t.co/RHrnkj3tvc" +05/15/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: SEASON 3 OF ‘OZZY & JACK’S WORLD DETOUR’ RETURNS WEDNESDAY, JUNE 13 AT 9PM ET/PT + +#OzzyandJack are back this summer on…" +05/15/2018,Musicians,@OzzyOsbourne,"RT @OsbournePodcast: Here’s a snippet of Jack interrogating his 6-year-old daughter, Pearl. When cornered, Pearl does the right thing and b…" +05/14/2018,Musicians,@OzzyOsbourne,Whaddya mean it’s Monday? https://t.co/TKU2Wk3Igt +05/13/2018,Musicians,@OzzyOsbourne,Happy #MothersDay @MrsSOsbourne! https://t.co/VbeeLrWGbO +05/13/2018,Musicians,@OzzyOsbourne,"CZECH REPUBLIC! + +Only 1 MONTH from today + +TIX: https://t.co/wdT16aRRxO + +VIP: https://t.co/eBBqC1QURA https://t.co/8gh6yBLzFR" +05/13/2018,Musicians,@OzzyOsbourne,"Tonight is the first of 4 #NoMoreTours2 concerts in Brazil! +https://t.co/mlduswcZH5 https://t.co/G5LbT02hJI" +05/11/2018,Musicians,@OzzyOsbourne,"Only 3 WEEKS until the 2nd leg of #NoMoreTours2 kicks off in Moscow! + +TIX: https://t.co/OhskNbOZ3j + +VIP Packages:… https://t.co/a4OFBZ839n" +05/10/2018,Musicians,@OzzyOsbourne,"on our way to #NoMoreTours2 in Argentina happening tomorrow at #EstadioObras +https://t.co/mlduswcZH5 + +Photo:… https://t.co/ieOK37d0GV" +05/09/2018,Musicians,@OzzyOsbourne,"SAN DIEGO! + +5 MONTHS until #NoMoreTours2 at @MattressFirmAmp with @StoneSour! + +TIX: https://t.co/wj6aIKJIuI + +VIP Pa… https://t.co/kJtAMMAQqu" +05/08/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: TONIGHT in Chile at @MoviStarArena! +https://t.co/mlduswcZH5 +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/wDItaDEnEC" +05/08/2018,Musicians,@OzzyOsbourne,Bid on a #NoMoreTours2 @VIPNation Meet & Greet Package with all proceeds benefiting the @ACLU! Available now on… https://t.co/rtqsHcgLyj +05/08/2018,Musicians,@OzzyOsbourne,"TONIGHT in Chile at @MoviStarArena! +https://t.co/mlduswcZH5 +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/wDItaDEnEC" +05/08/2018,Musicians,@OzzyOsbourne,"RT @MrsSOsbourne: Ozzy on his way to Mexico and performing in front of 80,000 people and I had to miss the whole thing as I forgot my passp…" +05/07/2018,Musicians,@OzzyOsbourne,"On way to Chile! + +Photo: @RossHalfin https://t.co/VROpCD1Rqu" +05/06/2018,Musicians,@OzzyOsbourne,"Last night in Mexico City. Next stop Chile! +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/Fnu9szxW2b" +05/05/2018,Musicians,@OzzyOsbourne,"Today at @HHFest! +#NoMoreTours2 https://t.co/iJlymawVIJ" +05/05/2018,Musicians,@OzzyOsbourne,"outside Las Ventas Bullring, Madrid April 1989 + +I return to Spain in July for @DownloadFestMad and @BCNRockfest https://t.co/tBADzhyHAf" +05/04/2018,Musicians,@OzzyOsbourne,"Tomorrow At @HHFest in Mexico City! +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/5eXN7MvlBQ" +05/04/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: A Look Back at #Ozzfest 2016 +#tbt https://t.co/zChoNONc9P" +05/03/2018,Musicians,@OzzyOsbourne,"with Bernie Torme at @TheGarden on the Diary of a Madman Tour April 1982 +#tbt https://t.co/ec9Vr1krma" +05/02/2018,Musicians,@OzzyOsbourne,"TOMORROW on @OzzysBoneyard, @SiriusXM Ch 38, 5/3 at 5PM ET + +Hear an all new episode of #OzzySpeaks - Ozzy is joine… https://t.co/TTMyR317v9" +05/02/2018,Musicians,@OzzyOsbourne,RT @josemangin: Holy F moment of my Florida weekend...starting @OzzyOsbourne chant before The Prince Of Darkness @ZakkWyldeBLS & the guys s… +05/02/2018,Musicians,@OzzyOsbourne,On this week’s @OsbournePodcast available for FREE from @ApplePodcasts and https://t.co/rTvg75JlEc https://t.co/LadQXRiAnV +05/02/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: NEW MONTH = NEW CHARITY!! + +For the month of May, 10% of all proceeds from @TheOzzfest @eBay Store, containing mostly the la…" +05/01/2018,Musicians,@OzzyOsbourne,"1 MONTH TILL MOSCOW! + +TIX: https://t.co/OhskNbOZ3j + +VIP: https://t.co/Aeb24ptKqO https://t.co/3roHtBXKb7" +04/30/2018,Musicians,@OzzyOsbourne,"Thank you Ft. Lauderdale! +Next stop Mexico City on Saturday! #NoMoreTours2 + +Photo: @RossHalfin https://t.co/JsDWj47UCO" +04/29/2018,Musicians,@OzzyOsbourne,"Tonight #NoMoreTours2 in Ft. Lauderdale! + +Photo: @RossHalfin from Jacksonville, FL on Friday… https://t.co/v68xFVbP0m" +04/28/2018,Musicians,@OzzyOsbourne,"Thank you Jacksonville! +Tomorrow night in Ft. Lauderdale +#NoMoreTours2 +https://t.co/mldusvVoPx https://t.co/2ZVIOneSRp" +04/27/2018,Musicians,@OzzyOsbourne,Who is ready for the kickoff of #NoMoreTours2 today at @RockvilleFest with @FortRockFest performance on Sunday! https://t.co/BYVFBDo5Fq +04/27/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: #NoMoreTours2 starts tomorrow at @RockvilleFest and @FortRockFest on Sunday! +https://t.co/mldusvVoPx https://t.co/PJ0IHsb…" +04/26/2018,Musicians,@OzzyOsbourne,"#NoMoreTours2 starts tomorrow at @RockvilleFest and @FortRockFest on Sunday! +https://t.co/mldusvVoPx https://t.co/PJ0IHsbxkD" +04/24/2018,Musicians,@OzzyOsbourne,"The #NoMoreTours2 concerts start with 2 festivals in Florida this weekend! + +Show listings at… https://t.co/0FhzRuD5MW" +04/23/2018,Musicians,@OzzyOsbourne,"INDIANA! + +5 MONTHS until #NoMoreTours2 in Noblesville with @StoneSour! + +TIX: https://t.co/wj6aIKJIuI + +VIP:… https://t.co/Y4PvWatW6j" +04/22/2018,Musicians,@OzzyOsbourne,Flying High Again https://t.co/bk4vgqM6Wa +04/22/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Last 5 of these @BlackSabbath patches from #TheEnd Tour! +https://t.co/pHLOvgnrE0 https://t.co/VjpwljRYC8" +04/21/2018,Musicians,@OzzyOsbourne,I wonder what's for lunch today... https://t.co/wz2RyZPDIU +04/20/2018,Musicians,@OzzyOsbourne,"Happy 420! +#fbf https://t.co/lCXNATXWKE" +04/20/2018,Musicians,@OzzyOsbourne,RT @T4FBizarro: No te pierdas la última oportunidad de disfrutar del sonido de @OzzyOsbourne en Chile este 8 de mayo en @movistararena . Co… +04/20/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: April 19, 1986 issue of Cashbox Magazine +#tbt https://t.co/IrdLpiVywG" +04/19/2018,Musicians,@OzzyOsbourne,"April 19, 1986 issue of Cashbox Magazine +#tbt https://t.co/IrdLpiVywG" +04/18/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until Ozzy in Belo Horizonte! + +#NoMoreTours2 + +https://t.co/EGplM9fsbH https://t.co/HMEh3m5FeK" +04/17/2018,Musicians,@OzzyOsbourne,on tour in 1978 https://t.co/dCv3L94jrZ +04/16/2018,Musicians,@OzzyOsbourne,New episode of The @OsbournePodcast featuring @RossHalfin available TODAY at @ApplePodcasts or… https://t.co/MHjbOCiNKz +04/16/2018,Musicians,@OzzyOsbourne,"RT @duffgoldman: We should #FlashbackFriday for this #CakeOfTheWeek: when @Charm_CityCakes made a cake for the Prince of Darkness himself,…" +04/15/2018,Musicians,@OzzyOsbourne,"Logo Magazine April 1989 +#UltimateSinSundays https://t.co/fBpZw9PxSj" +04/14/2018,Musicians,@OzzyOsbourne,April 1984 https://t.co/8hXh7F8avN +04/13/2018,Musicians,@OzzyOsbourne,"Loading in for #NoMoreTours2 rehearsals + +Show list: https://t.co/3lI792GbB3 https://t.co/mrb2Yo82WI" +04/13/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until Ozzy in São Paulo at @AllianzParque ! + +https://t.co/EGplM9fsbH https://t.co/50cRddSXjf" +04/12/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: 5 MONTHS from today is #NoMoreTours2 in Camden at @BBTPavilion! + +https://t.co/wj6aIKJIuI https://t.co/weg3zl5Bs3" +04/12/2018,Musicians,@OzzyOsbourne,"5 MONTHS from today is #NoMoreTours2 in Camden at @BBTPavilion! + +https://t.co/wj6aIKJIuI https://t.co/weg3zl5Bs3" +04/11/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until the concert in Chile! + +https://t.co/BPMEHnuSRq https://t.co/M0qgGF9GHJ" +04/10/2018,Musicians,@OzzyOsbourne,"On the road + +Upcoming #NoMoreTours2 concerts listed at https://t.co/3lI792GbB3 https://t.co/v71duoDjwU" +04/09/2018,Musicians,@OzzyOsbourne,New @OsbournePodcast episode released today!! Download for FREE from @ApplePodcasts or https://t.co/rTvg75JlEc https://t.co/brZgqkuCU7 +04/09/2018,Musicians,@OzzyOsbourne,Getting ready for the week like... https://t.co/tPgbI3DRaC +04/08/2018,Musicians,@OzzyOsbourne,"on the Diary of a Madman tour, April 1982 at @TheGarden + +I return to NY on Sept 8 +https://t.co/3lI792GbB3 https://t.co/ZfzxiSoEfI" +04/08/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 La despedida de los escenarios del gran icono del rock @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫📲 Tickets…" +04/08/2018,Musicians,@OzzyOsbourne,RT @T4FBizarro: @OzzyOsbourne nos deja esta reflexión. 8 de Mayo en Chile Más info en: https://t.co/cvf0m4Qkz3 #conciertost4fbizarro https:… +04/08/2018,Musicians,@OzzyOsbourne,"RT @VIPNation: Got your @OzzyOsbourne VIP yet? HURRY! + +https://t.co/QTcpNrYAUs & +https://t.co/qXSfHQHwX7 https://t.co/XugFlHhsVy" +04/07/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: NEW MONTH = NEW CHARITY + +10% of ALL proceeds in the #Ozzfest @eBay Store will go directly to @SoCalBulldog + +https://t.co/p…" +04/07/2018,Musicians,@OzzyOsbourne,"with Captain Lou Albano on April 7, 1986 at @WWE #Wrestlemania 2 https://t.co/htIgJJcMHp" +04/06/2018,Musicians,@OzzyOsbourne,"Fun with Funicello Part 2 +#fbf https://t.co/TAOmfidxp1" +04/05/2018,Musicians,@OzzyOsbourne,"Record Review April 1982 +#tbt https://t.co/X4YrX8iUzH" +04/04/2018,Musicians,@OzzyOsbourne,https://t.co/gMj0acAN7O +04/03/2018,Musicians,@OzzyOsbourne,"Classic Rock Russia April 2007 + +I return to Russia in less than 2 months +https://t.co/3lI792GbB3 https://t.co/UmyIKVWAKB" +04/02/2018,Musicians,@OzzyOsbourne,All new episode of The @OsbournePodcast released TODAY! Get it for FREE from @ApplePodcasts or the family podcast… https://t.co/eShuyioQ28 +04/01/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: HAPPY #EASTER! + +Photo: @MarkWeissguy https://t.co/XXnTDKhDUZ" +04/01/2018,Musicians,@OzzyOsbourne,"HAPPY EASTER! + +Photo: @MarkWeissguy + +If you would like to be entered for a chance to win a FREE print of this phot… https://t.co/nSPmWcMB3N" +04/01/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 No te quedes afuera de este show que va a ser increíble @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫 Tickets…" +03/31/2018,Musicians,@OzzyOsbourne,Raging into the weekend like... https://t.co/T04bTQZkXO +03/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Just added to @TheOzzfest @eBay Store! +The very last of the @BlackSabbath The End 2016 baseball hats! +https://t.co/OvJRJ…" +03/30/2018,Musicians,@OzzyOsbourne,"Just added to @TheOzzfest @eBay Store! +The very last of the @BlackSabbath The End 2016 baseball hats!… https://t.co/7jqhitzY4i" +03/30/2018,Musicians,@OzzyOsbourne,"Metal Hammer March 1987 +#FBF https://t.co/l0qNs81MV3" +03/29/2018,Musicians,@OzzyOsbourne,"in Italy 1973 +#tbt https://t.co/HztQBT8Aul" +03/28/2018,Musicians,@OzzyOsbourne,Middle of the week vibes... https://t.co/kcYkIfkUU2 +03/28/2018,Musicians,@OzzyOsbourne,RT @OzzyOsbourne: LAST DAY to bid on this @VIPNation Meet & Greet Package for 2 People to an upcoming show on #NoMoreTours2 of their choosi… +03/27/2018,Musicians,@OzzyOsbourne,LAST DAY to bid on this @VIPNation Meet & Greet Package for 2 People to an upcoming show on #NoMoreTours2 of their… https://t.co/X42WjquDGf +03/27/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 No te quedes afuera de este show que va a ser increíble @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫 Tickets…" +03/27/2018,Musicians,@OzzyOsbourne,"at The Palladium in NYC 1981 + +Photo: @RossHalfin https://t.co/TLL89ENIEU" +03/26/2018,Musicians,@OzzyOsbourne,"New episode of @OsbournePodcast release today! +Get it for FREE at @ApplePodcasts or https://t.co/rTvg75JlEc https://t.co/vZ58PTux7K" +03/25/2018,Musicians,@OzzyOsbourne,Sunday lounging https://t.co/bAkqWdeneY +03/24/2018,Musicians,@OzzyOsbourne,It's the weekend! https://t.co/lEfWnwhsH7 +03/23/2018,Musicians,@OzzyOsbourne,"Just added to @theOzzfest @eBay Store: +The last remaining #Ozzy / #Ozzfest 2017 Long Sleeve Shirts! +Previously only… https://t.co/zZ53vNrijP" +03/23/2018,Musicians,@OzzyOsbourne,RT @LHSF: Don forget about meeting #ozzyosbourne to benefit #lhsf Meet Ozzy Osbourne with 2 Tickets to an Upcoming No More T... https://t.c… +03/23/2018,Musicians,@OzzyOsbourne,"Just added! +The last of the #Ozzy @TheOzzfest Long Sleeve Shirt! + +10% to @HealTheBay on everything in the store!… https://t.co/A5A16tAAYl" +03/22/2018,Musicians,@OzzyOsbourne,"Ozzy Flannels are perfect for cold snowy or rainy days +https://t.co/OvJRJLOTIt https://t.co/8jf2olbPRa" +03/22/2018,Musicians,@OzzyOsbourne,"with @ZakkWyldeBLS in Burrn! Magazine +March 1988 #tbt https://t.co/lqVgg9eHye" +06/14/2018,Musicians,@WillieNelson,In case you missed it Willie was featured on an episode of @WorldCafé from @NPRMusic. Listen as Willie sits for a w… https://t.co/U4RAdrbgiS +05/08/2018,Musicians,@WillieNelson,"RT @RaelynNelson: Aw Hell #mmhmm single: +https://t.co/A7oRQIug7k +https://t.co/fHxXeVzcXZ" +05/08/2018,Musicians,@WillieNelson,"RT @lukasnelson: STARTING TODAY - If you don't have a vinyl copy of our record yet, and you live near a @CrackerBarrel Old Country Store (o…" +04/30/2018,Musicians,@WillieNelson,"RT @lukasnelson: I would like to wish a very happy 85th birthday to my dad, @WillieNelson with this special @flyLAXairport rendition of “Bl…" +04/27/2018,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @WillieNelson #LastManStanding special #HappyBirthdayWillie w/ @PaulaNelsonBand @buddycannon @SIRIUSXM Ch59 & @SXMO… +04/18/2018,Musicians,@WillieNelson,"Help Willie, Go see #SuperTroopers2 on 4/20 + +https://t.co/wyFmcZMVJw" +04/15/2018,Musicians,@WillieNelson,Two Super Troopers inspect the bus before tonight's concert. #SuperTroopers2 https://t.co/EpSPyzfDwt +04/03/2018,Musicians,@WillieNelson,@BioAnnie1 @WillieN55660955 Thank you. Fraud! +04/03/2018,Musicians,@WillieNelson,@Shotnfreud @WillieN55660955 You are communicating with a fraud. +03/23/2018,Musicians,@WillieNelson,Support the work of @REVERBrocks by bidding on signed instruments and art from @WillieNelson and other artists. The… https://t.co/mLuM5cm840 +03/16/2018,Musicians,@WillieNelson,Last Man Standing at Luck https://t.co/PoLMaIEV0i https://t.co/i5dYzWGUbe +02/16/2018,Musicians,@WillieNelson,RT @gatlinbrothers: Good memories with our long-time friend @WillieNelson https://t.co/re5J9c0nFn +02/16/2018,Musicians,@WillieNelson,"Willie’s new album ‘Last Man Standing’ is available April 27! +Check out the title track here: +https://t.co/u24ec8BFMJ" +02/15/2018,Musicians,@WillieNelson,RT @MrChuckD: Had to pull car over having listened to a Flawless song written and sang by Willie Nelson called You Ought To Hear Me Cry. O… +02/15/2018,Musicians,@WillieNelson,@MrChuckD @SIRIUSXM Thank you @MrChuckD #SXMWillie @SXMWillie +01/25/2018,Musicians,@WillieNelson,Willie Nelson - Living in the Promiseland https://t.co/jl2IemC67Q via @YouTube +12/21/2017,Musicians,@WillieNelson,Nothing holds Willie back. So check out holiday deals to hear Willie present classic country his way on Willie’s Ro… https://t.co/QGAwgymcGM +11/21/2017,Musicians,@WillieNelson,"RT @FarmAid: Farm Aid founder @WillieNelson: On #Thanksgiving, remember family #farmers and their challenges. They're the economic bedrock…" +11/14/2017,Musicians,@WillieNelson,Have you seen this clip of @WoodyHarrelson as #LBJ? https://t.co/bTvHraziak +11/09/2017,Musicians,@WillieNelson,"Glen Campbell, Willie Nelson Win Musical Event of the Year at the 2017 CMAs https://t.co/eXpxw2hMb7 @tasteofcountry" +11/09/2017,Musicians,@WillieNelson,"Thank you! #GlenCampbell , Willie Nelson Win Musical Event of the Year at the 2017 #CMAs https://t.co/eXpxw2hMb7 @tasteofcountry" +11/07/2017,Musicians,@WillieNelson,Congratulations @lukasnelson and @POTR on your #1 record. https://t.co/j7r7oAch28 +11/07/2017,Musicians,@WillieNelson,". @WoodyHarrelson as #LBJ is creative. Take a look at the ""preview"" we just received https://t.co/NmNo7s6krC" +11/03/2017,Musicians,@WillieNelson,@TexasGalWaxi @SXMWillie @NelsonWillieFam @SIRIUSXM @PaulaNelsonBand @WillieN18997625 I am the real. +10/20/2017,Musicians,@WillieNelson,"RT @SXMWillie: TUNE IN: @WillieNelson #WillieAndTheBoys #Lukas #Micah album special @SIRIUSXM Ch59 w/ @PaulaNelsonBand info +here: https://…" +10/18/2017,Musicians,@WillieNelson,"Get a first look at the video to “My Tears Fall” at CMT. ‘Willie and The Boys,’ the new album is available Friday. https://t.co/oCstXUW2hJ" +10/17/2017,Musicians,@WillieNelson,Watch Willie Nelson and His Sons Detail Unbreakable Family Bond on Tour Bus https://t.co/u7sRD7NM8I +10/06/2017,Musicians,@WillieNelson,https://t.co/mGacGoikQV +09/29/2017,Musicians,@WillieNelson,"Check out Willie, #LukasNelson and #MicahNelson perform “Healing Hands of Time” The new album in stores Oct 20. https://t.co/oM7FccwWLf" +09/29/2017,Musicians,@WillieNelson,RT @TasteOfCountry: What a moment! When @WillieNelson and #KrisKristofferson join forces we're all the way in! https://t.co/FaOtXOkYt9 +09/27/2017,Musicians,@WillieNelson,Exclusive premiere: Watch Willie Nelson’s new video with sons Lukas and Micah https://t.co/JrM8EOSJ2P +09/23/2017,Musicians,@WillieNelson,RT @SkinAndTonicATX: I took this pic last night at the most AMAZING benefit show! @willienelson I love you!… https://t.co/jAuoCCyeXX +09/22/2017,Musicians,@WillieNelson,Tune-In & Donate tonight! #HarveyCantMessWithTexas via https://t.co/8ffZR5zRWm 9-10pm CT. Proceeds benefit Rebuild… https://t.co/wGS2CA9Uty +09/16/2017,Musicians,@WillieNelson,RT @AXSTV: We're ALL #FarmAid ALL Saturday! Make sure to set your DVR NOW! #SaturdayStack https://t.co/SodcittKOn +09/16/2017,Musicians,@WillieNelson,RT @FarmAid: Watch and listen to #FarmAid2017 live on Sept. 16. Get all the details at: https://t.co/a3OIFgnssl https://t.co/RB8gMvzhKp +09/15/2017,Musicians,@WillieNelson,"Willie Nelson sets Hurricane Harvey benefit concert + +https://t.co/Xa1I9XoHUL" +09/14/2017,Musicians,@WillieNelson,"Garth Hudson of The Band came by to join in on the fun with Willie and Family in Poughkeepsie, NY. https://t.co/MbmVeHZxGf" +09/13/2017,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @FarmAid 2017 concert broadcast SAT 9/16 @SIRIUSXM Ch59 noon-11:30pmET info here: https://t.co/d1mJ728J2K https://t… +09/06/2017,Musicians,@WillieNelson,".@FarmAid is working with partners in TX & LA to support the needs farmers & ranchers. +Donate today: https://t.co/y1NHQuiWnv #Harvey" +09/06/2017,Musicians,@WillieNelson,Living in the Promiseland https://t.co/jl2IemC67Q +08/25/2017,Musicians,@WillieNelson,RT @lukasnelson: Our new album is out TODAY! Get it here or at your favorite record store: https://t.co/594PZkuSHw +08/21/2017,Musicians,@WillieNelson,Willie Nelson - Darkness on the Face of the Earth (Live at Farm Aid 1998) https://t.co/KLeC4zxXus via @YouTube +08/20/2017,Musicians,@WillieNelson,Willie Nelson felt like an infinitely renewable resource at the Shrine https://t.co/qkb0Zbhl0j +08/20/2017,Musicians,@WillieNelson,@ShellyPicarella @SnoopDogg Willie has a statue in Austin Texas +08/20/2017,Musicians,@WillieNelson,Tonight @KaceyMusgraves and the band came to say goodbye after her set at The Greek Theater. https://t.co/WBHHJVd18Q +08/19/2017,Musicians,@WillieNelson,"We had a wonderful night in LA. +https://t.co/1GU6ajZB1H" +08/18/2017,Musicians,@WillieNelson,RT @lukasnelson: Check out this great review of the new record in @soundboard_blog! https://t.co/vQUOxR2VUT +08/18/2017,Musicians,@WillieNelson,RT @BioAnnie1: Hey @PaulBegala You should be here! Willie talking to @billclinton right now. Headed to a show. https://t.co/TRRCGY2qyG +08/18/2017,Musicians,@WillieNelson,RT @PEcom_news: Willie Nelson proves that he’s not quite dead yet with spirited set at the Shrine https://t.co/6KPOCKHR8z https://t.co/smft… +08/18/2017,Musicians,@WillieNelson,"RT @livepositive11: Once you replace negative thoughts with positive ones, you'll start having positive results. -Willie Nelson" +08/17/2017,Musicians,@WillieNelson,"RT @SXMOutlaw: WIN trip for 2 #OutlawMusicFestival 9/17 Camden, NJ @WillieNelson @ericchurch @SherylCrow @theavettbros +more! GO to https:/…" +08/16/2017,Musicians,@WillieNelson,"For Sinead O'Connor, Love Willie - Don't Give Up - https://t.co/xbFXnQsH3i via @YouTube" +08/14/2017,Musicians,@WillieNelson,This is Willie I am sorry to have to cut the SLC show short tonight The altitude got to me I am feeling better now & headed for lower ground +07/28/2017,Musicians,@WillieNelson,".@WillieNelson sat down with @washingtonpost @libcasey to talk about his historic career, @WilliesReserve and more https://t.co/l9afI35x3Z" +07/13/2017,Musicians,@WillieNelson,"We love you Loretta - +Loretta Lynn Postpones Release of New Album - Rolling Stone +https://t.co/wcn1ErZrUq" +07/12/2017,Musicians,@WillieNelson,Every musician hates canceling a show. https://t.co/lpoesPefew +07/11/2017,Musicians,@WillieNelson,An amazing album! https://t.co/jXpRbNH1lQ +07/11/2017,Musicians,@WillieNelson,"RT @WilliesReserve: Nice hat @SnoopDogg! +Get your #WilliesReserve official cap here: https://t.co/H6Uy5ouHrx +(( @TeamCoco )) +#CannabisCom…" +07/04/2017,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @WillieNelson #4thOfJulyPicnic broadcast LIVE @Austin360Amp 4pm-1amET @SIRIUSXM Ch59 set times & more info: https:/… +06/27/2017,Musicians,@WillieNelson,Living in the Promiseland https://t.co/jl2IemC67Q +06/16/2017,Musicians,@WillieNelson,Don't miss your chance for a once in a lifetime VIP package to @FarmAid The auction is open for a limited time https://t.co/mbyw5BwXMA +06/13/2017,Musicians,@WillieNelson,"RT @FarmAid: Have you head the moos, er.... news! + +Farm Aid 2017 is coming to the Pittsburgh area! Join us on Saturday, Septemb… https://t.…" +06/05/2017,Musicians,@WillieNelson,@1DeborahHyde @WillieNelson000 @YouTube You are talking to a scamming account. Report it! +06/05/2017,Musicians,@WillieNelson,@1DeborahHyde @WillieNelson000 @YouTube @WillieNelson000 willienels is a fraud/ scam account +06/05/2017,Musicians,@WillieNelson,@Christy1043 @WillieNelson000 @YouTube This account is a scam account. +05/27/2017,Musicians,@WillieNelson,"RT @WilliesReserve: #PhotoContest @LivWellCannabis w/ a signed @WillieNelson guitar +#MemorialDay +Stapleton 10:30-12:30pm +Garden City 1:30…" +05/20/2017,Musicians,@WillieNelson,@Di3G02020 Better than ever +05/20/2017,Musicians,@WillieNelson,RT @NewYorkConcert: Don't miss the @willienelson at Battery Park on Jun 10! → https://t.co/uqEF0oSLw3 https://t.co/BMvAYX0doP +05/20/2017,Musicians,@WillieNelson,RT @GigsRaleigh: Did you know that @willienelson is ROCKING on Jul 14 in Cary? Don't miss this concert! → https://t.co/BpIGjVWYk6 https://t… +05/20/2017,Musicians,@WillieNelson,@awnaves That is a good question. +05/20/2017,Musicians,@WillieNelson,@bettyco33617316 Yup still not dead again. https://t.co/mPZqVR1XOa +05/20/2017,Musicians,@WillieNelson,@KJC135 @RollingStone It is priceless +05/20/2017,Musicians,@WillieNelson,@gunds_up It is a Good morning +05/20/2017,Musicians,@WillieNelson,"RT @MakeAWish: Ava, who has a GI disorder, wished to meet & play guitar with @WillieNelson, because his songs helped her get through her tr…" +05/20/2017,Musicians,@WillieNelson,RT @ReaperToolsInc: Willie Nelson explaining the dangers of #marijuana. https://t.co/0nUIL7qzP7 +05/20/2017,Musicians,@WillieNelson,"RT @ChuckCanady: Once you replace negative thoughts with positive ones, you'll start having positive results. - Willie Nelson #quote" +05/20/2017,Musicians,@WillieNelson,@StillerAndrew I Woke Up Still Not Dead Again https://t.co/mPZqVR1XOa +05/20/2017,Musicians,@WillieNelson,"RT @RollingStone: Willie Nelson discusses Trump, his marriage, why Jeff Sessions should try smoking pot and more https://t.co/Cla8XPF0sZ ht…" +05/20/2017,Musicians,@WillieNelson,"RT @thebootdotcom: .@WillieNelson gets write-in votes during elections, but don't expect to see him running for office for real: https://t.…" +05/20/2017,Musicians,@WillieNelson,"RT @FarmAid: Farm Aid's director Carolyn Mugar and co-founder @johnmellencamp introduced our film, Homeplace Under Fire, at @du… https://t.…" +05/20/2017,Musicians,@WillieNelson,RT @TerryVJennings: 1986 @WillieNelson @JohnnyCash Kris Kristofferson & @OfficialWaylon star in @CBS remake of the movie Stagecoach https… +05/20/2017,Musicians,@WillieNelson,RT @Linda_Colo: Why Colorado Tokers Love Red Headed Stranger @williesreserve @bioannie1 @willienelson https://t.co/SqIw5eiN16 via @denverw… +05/11/2017,Musicians,@WillieNelson,"Critics can’t get enough of ‘God’s Problem Child’! What do you think of Willie’s new album? + +https://t.co/N2z4Vr6UKZ https://t.co/PcKhrz3eTC" +05/11/2017,Musicians,@WillieNelson,"RT @RollingStone: Chris Stapleton on covering Willie Nelson on his new album, leaving Nashville and more https://t.co/sifqz1pB0G https://t.…" +05/11/2017,Musicians,@WillieNelson,"RT @livepositive11: Once you replace negative thoughts with positive ones, you'll start having positive results. -Willie Nelson" +05/11/2017,Musicians,@WillieNelson,RT @FarmAid: John Mellencamp and Oklahoma Farm Advocate Mona Lee Brock share a moment on the Farm Aid 30 stage in 2015. On Thur… https://t.… +05/05/2017,Musicians,@WillieNelson,"Willie Nelson's Birthday Party at the Bowl +https://t.co/ecVjSZa4UC" +04/28/2017,Musicians,@WillieNelson,‘God’s Problem Child’ is available today! https://t.co/rlrj3nN2gz https://t.co/W78ppFUIIj +04/27/2017,Musicians,@WillieNelson,"You’ve heard about the song, now check out the video for “Still Not Dead”! https://t.co/DmF6Ju5usy +https://t.co/cWTU0VMuLR" +04/26/2017,Musicians,@WillieNelson,"RT @SXMWillie: TUNE IN: @WillieNelson 84th birthday weekend #GodsProblemChild special @SIRIUSXM info here: https://t.co/FdQfWv1nBf +https:/…" +04/26/2017,Musicians,@WillieNelson,"“I woke up still not dead again today…” +https://t.co/mPZqVR1XOa" +04/24/2017,Musicians,@WillieNelson,RT @SnoopDogg: Shouts to @djwhookid with @willienelson biggn me up on @shade45 #BurnSlow mix 💨💨💨💨💨💨💨💨💪🏽 #whoolywoodshuffle +04/21/2017,Musicians,@WillieNelson,"Get your tickets for Willie Nelson's 4th of July Picnic in Austin, TX, onsale today! Tickets:… https://t.co/JPuGP0Daa0" +04/20/2017,Musicians,@WillieNelson,"Listen to the incredible new album ‘God’s Problem Child’ on NPR First Listen. +https://t.co/hPYZZfKMWZ" +04/18/2017,Musicians,@WillieNelson,"RT @thebootdotcom: Willie Nelson, Bob Dylan, Jason Isbell Set to Headline 2017 Outlaw Music Festival Tour https://t.co/CkIeiXgfqZ https://t…" +04/18/2017,Musicians,@WillieNelson,Willie Nelson Plans 44th Annual Fourth of July Picnic https://t.co/we8DTskAjQ @thebootdotcom +03/28/2017,Musicians,@WillieNelson,"The Daily Beast has the exclusive first look at the video to “Old Timer”! +https://t.co/Mq1ToOO05Y" +03/21/2017,Musicians,@WillieNelson,RT @FarmAid: Wildfires are ravaging over 2 mil. acres of ranch land. You can help by donating to our Family Farm Disaster Fund. https://t.c… +03/09/2017,Musicians,@WillieNelson,"Head to @latimes for an exclusive first look at Willie’s new video, “It Gets Easier,” from ‘God’s Problem Child’ +https://t.co/ILyChf7WYS" +03/08/2017,Musicians,@WillieNelson,"RT @FarmAid: Asked about retirement, @WillieNelson says ""Which would I give up: music or golf?"" Turns out farmers feel the same. https://t.…" +03/08/2017,Musicians,@WillieNelson,RT @sunherald: Reporter @thejeffclark spoke with @WillieNelson's harmonica player -- here's the skinny. https://t.co/hPbO69qTzZ https://t.c… +03/08/2017,Musicians,@WillieNelson,"Here’s a clip of “It Gets Easier” from Willie's upcoming new album ‘God’s Problem Child,’ -- full video tomorrow. https://t.co/aFRcmZHwsH" +03/05/2017,Musicians,@WillieNelson,.@DwightYoakam was on the show at the @PompanoAmp and dropped by the bus after his set. https://t.co/XPZu6Y8CBS +03/02/2017,Musicians,@WillieNelson,"Check out a sneak peak of the new track from 'God's Problem Child.’ https://t.co/0GDPo3v9f1 +Pre-Order: https://t.co/8bdg0UPboa" +03/01/2017,Musicians,@WillieNelson,RT @WilliesReserve: #WilliesReserve apparel is now available on our new website. And it's legal in all 50 states! Visit https://t.co/pxXnub… +02/21/2017,Musicians,@WillieNelson,RT @PinewoodBowl: JUST ANNOUNCED: @WillieNelson with special guest @DwightYoakam + Robert Earl Keen are coming to @PinewoodBowl 6/7. https:… +02/21/2017,Musicians,@WillieNelson,"RT @Southern_Living: ""I've never seen worrying about anything change it, so I decided not to do it."" —@WillieNelson https://t.co/AuLjvCaFER…" +02/21/2017,Musicians,@WillieNelson,Remember when Willie hosted SNL? Check out Redneck Tanning Parlor on https://t.co/p50vN92Vv9 — https://t.co/q33MgTv45F +02/17/2017,Musicians,@WillieNelson,"Willie and Bono Team for Miraculous Movie +https://t.co/x0s7Q1CMIf" +02/16/2017,Musicians,@WillieNelson,RT @BioAnnie1: williesreserveofficial's photo https://t.co/Bq3nGdQtxx @WilliesReserve @willienelson @jacmnelson3 #EndTheCannabisProhibiti… +02/14/2017,Musicians,@WillieNelson,"Happy Valentine’s Day! Video premiere of ""A Woman’s Love,"" from 'God’s Problem Child.' https://t.co/KPKnG9w5B8" +02/14/2017,Musicians,@WillieNelson,"Happy Valentine's Day! +https://t.co/It2n6IGqXX" +02/14/2017,Musicians,@WillieNelson,Willie is headed to Tx for 2 nights @ Whitewater Music Amp this April! Club Pre-Sale tixs & Pkgs on sale @ 10am CT! https://t.co/3neHJPpeNL +02/14/2017,Musicians,@WillieNelson,RT @SnoopDogg: True. 💨💨💨 https://t.co/jW6XgBLbdn https://t.co/vxCtFyntNN +02/13/2017,Musicians,@WillieNelson,"What an honor to win last night. + +https://t.co/9B1YimZ4gY" +02/13/2017,Musicians,@WillieNelson,RT @SnoopDogg: #Legend ✨ music video. world premiere !! Watch it right now @WORLDSTAR https://t.co/WfxmWubgjT #DoggyStyleRecords https://t… +02/13/2017,Musicians,@WillieNelson,"RT @SweetRelief: You can pre-order the NEW @WillieNelson album ""God’s Problem Child"" and get exclusive merchandise on @PledgeMusic! https:/…" +02/13/2017,Musicians,@WillieNelson,RT @colbertlateshow: Congratulations to our good friend @WillieNelson on his #GRAMMY win for Best Traditional Pop Vocal for #Summertime! ht… +07/02/2018,Musicians,@jtimberlake,"Beautiful, @Emilykingmusic !! This might have to be the rise and shine alarm!! 🎶 https://t.co/3RBeeSTB8P" +06/30/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: .@JTimberlake shows off multiple ""Air Higher"" Air Jordan 3 JTH options. https://t.co/93q96tGdA8" +06/24/2018,Musicians,@jtimberlake,RT @TheSinnerUSA: A performance you won't forget. Consider @JessicaBiel for Outstanding Lead Actress in a Limited Series or Movie. #TheSinn… +06/15/2018,Musicians,@jtimberlake,Bwahahaha! My hero. https://t.co/Fy6Xyheti4 +06/15/2018,Musicians,@jtimberlake,"Yoooooo! “Right there, right there!” https://t.co/hiSH4bOuBW" +06/15/2018,Musicians,@jtimberlake,"Young yellow beanie vibes... lol + +🙌 https://t.co/ASAjEUwE6r" +06/15/2018,Musicians,@jtimberlake,👀 https://t.co/vzBHtE1Mlr +06/13/2018,Musicians,@jtimberlake,Thank you guys for nominating Say Something for a surfboard! We’re honored. Vote here ✔️ https://t.co/tSUgerlkyK… https://t.co/58wL5mRRrp +06/09/2018,Musicians,@jtimberlake,"RT @NBCSports: Hey @jimmyfallon, who do you want to win @BelmontStakes? + +Also... what’s your favorite @jtimberlake album? 😂 https://t.co/xg…" +06/07/2018,Musicians,@jtimberlake,GET’M PUFF!!! 💯💯💯 https://t.co/ABKveClsXG +06/06/2018,Musicians,@jtimberlake,"Hey man, when someone tells you they’ll make a drink based on a fake (but very real) fruit you made up…you just don… https://t.co/GVyNrVGGX3" +06/04/2018,Musicians,@jtimberlake,2 JT’s and a Wanamaker! 🙌 https://t.co/DzsoMSaaN8 +06/04/2018,Musicians,@jtimberlake,Thank you to Philly for helping us wrap up the last show of the first leg of #MOTWTOUR. We’re taking a little break… https://t.co/tuBCN4kGCp +06/03/2018,Musicians,@jtimberlake,Last chance! https://t.co/KWHICooMfC +05/28/2018,Musicians,@jtimberlake,🥃 @swish41 https://t.co/jq2YY2ig4z +05/27/2018,Musicians,@jtimberlake,"TEXAS STRONG + +https://t.co/wGcSWAVO6X https://t.co/6Vbs2k537G" +05/26/2018,Musicians,@jtimberlake,"RT @JJWatt: Cheers to good times with great friends and the beautiful city of Houston. +@jtimberlake https://t.co/93a6j6cL70" +05/25/2018,Musicians,@jtimberlake,"RT @brkicks: ""DETAILS"" @jtimberlake @virgilabloh https://t.co/zLFWwvLIs0" +05/25/2018,Musicians,@jtimberlake,".@JJWatt bro, you could really use a trip to the gym. Congrats to the 🚀!!! + +https://t.co/7v3e1XqgpX https://t.co/QBAgasoau0" +05/22/2018,Musicians,@jtimberlake,Google’s having a rough night. @SHAQ @NBAonTNT https://t.co/ehqGOxFeM5 +05/21/2018,Musicians,@jtimberlake,Why is the net already bracing for that dunk?!?! 😂 https://t.co/8ItjY7SNpq +05/20/2018,Musicians,@jtimberlake,"Custom 501’s in action last night. Thank you @Levis...Happy #501Day. + +https://t.co/w5RQADyKsG https://t.co/XYIyeWNJqX" +05/19/2018,Musicians,@jtimberlake,RT @adamblackstone: YUPPPP... ITS TRUE... I'm BACK rocking w @jtimberlake & my @THETNKIDS FAMILY 2NITE!!! Gonna have a great time here in… +05/19/2018,Musicians,@jtimberlake,😂 https://t.co/Ia1AUSNuJU +05/19/2018,Musicians,@jtimberlake,🙌 https://t.co/Hvt2aQTU0N +05/18/2018,Musicians,@jtimberlake,🔥 https://t.co/0kyvoa1twH +05/17/2018,Musicians,@jtimberlake,YES. https://t.co/smNRIbszi6 +05/15/2018,Musicians,@jtimberlake,"RT @TheFieldhouse: Dang @jtimberlake, we see you 👀 + +We'll have to get you on the @Pacers Practice Court when #MOTWtour comes to #Indy in De…" +05/15/2018,Musicians,@jtimberlake,"I should have put this thing on silent... + +https://t.co/bMyKEj4CT3 https://t.co/5WRBiOXAFL" +05/15/2018,Musicians,@jtimberlake,https://t.co/jClsoOdLFe +05/14/2018,Musicians,@jtimberlake,Three out of the four of us are moms! Celebrating my MVP’s today and everyday. Happy Mother’s Day! 🏆… https://t.co/gg13F5DyVl +05/12/2018,Musicians,@jtimberlake,Sounds like...@Jumpman23. S/O @virgilabloh @trvisXX https://t.co/oPrFG7ovJo https://t.co/gzo0HK2sh1 +05/11/2018,Musicians,@jtimberlake,Thank you to the one and only @ChrisStapleton for making an appearance last night in Nashville. Always honored to s… https://t.co/B6Ce0yHkO7 +05/09/2018,Musicians,@jtimberlake,Who’s coming? https://t.co/BOhjzhYz5f +05/08/2018,Musicians,@jtimberlake,"Last night. For the record, you were by far our loudest crowd so far, Columbus. + +https://t.co/HoH7bEBaW7 https://t.co/2LYxaPKEO7" +05/08/2018,Musicians,@jtimberlake,🙌 https://t.co/S3TaDIOAjG +05/08/2018,Musicians,@jtimberlake,RT @joywilliams: In exactly one week I’ll be getting ready to take the stage @eddiesattic to perform (mostly) new music for a sold out crow… +05/07/2018,Musicians,@jtimberlake,Thank you Tulsa! https://t.co/bgQWuk5wPB +05/05/2018,Musicians,@jtimberlake,"RT @Suns: JT keeping the court warm until the boys are back 👀 + +@jtimberlake https://t.co/K7ImYuZaeG" +05/03/2018,Musicians,@jtimberlake,BRASPBERRY. Google it. https://t.co/7ne1MFmTle +05/02/2018,Musicians,@jtimberlake,"Why’d I even ask. #OREOS + +https://t.co/S0fZ1IvLud https://t.co/11DbjSErmm" +05/01/2018,Musicians,@jtimberlake,🔥 https://t.co/1ZYf96D9xl +04/30/2018,Musicians,@jtimberlake,Wait for it 😂l https://t.co/TjSECg4q0x +04/30/2018,Musicians,@jtimberlake,Honored to be up here with my brothers today. Thank you #WalkofFame for the star...and thank you @TheEllenShow and… https://t.co/WVrSx9q3Do +04/30/2018,Musicians,@jtimberlake,"RT @TheEllenShow: Congratulations, @NSYNC! You got a star on the Walk of Fame! All without a vowel. Congratulations! https://t.co/QuRcHPglwP" +04/30/2018,Musicians,@jtimberlake,RT @theforum: JT backstage with our custom #MOTW neon sign. 🔥 @jtimberlake #JTForum #MOTWTour @THETNKIDS (📷: Mark Nguyen) https://t.co/b4ha… +04/29/2018,Musicians,@jtimberlake,"Time for round two, tonight at @theforum... https://t.co/41WKOOgcE8" +04/29/2018,Musicians,@jtimberlake,Check it out 💯 https://t.co/r5wRZeIr7o +04/27/2018,Musicians,@jtimberlake,RT @ComplexStyle: .@jtimberlake's Man Of The Woods Tour merch designed by @heronpreston + 4 exclusive products in collaboration with @RSVPG… +04/27/2018,Musicians,@jtimberlake,RT @RSVPGallery: RSVP GALLERY X JUSTIN TIMBERLAKE X HERON PRESTON POP-UP LIVE NOW. Exclusive collab merch by RSVP and tour merch from @jtim… +04/27/2018,Musicians,@jtimberlake,RT @Spotify: .@jtimberlake is changing it up on his #ManOfTheWoods tour. Get a taste with live performances 👉https://t.co/7UDWaCYmOt https:… +04/27/2018,Musicians,@jtimberlake,New videos up on @Spotify today! Check them out: https://t.co/sGxDvEf8qA https://t.co/m7K5GpIBDr +04/27/2018,Musicians,@jtimberlake,RT @wwd: .@jtimberlake's concert merch will be sold at L.A. boutique RSVP Gallery: https://t.co/8PHDxYk2Km https://t.co/P1wAaLCCii +04/24/2018,Musicians,@jtimberlake,We’re invading The Bay. See you tonight San Jose! https://t.co/pPL9jUFkYR https://t.co/drzdKK4iPE +04/22/2018,Musicians,@jtimberlake,"We’re so lucky to call this place home. #earthday + +https://t.co/mCLcd2wlEc https://t.co/yQ9EnwW73K" +04/20/2018,Musicians,@jtimberlake,"Dad life. His toys = my toys. @PJMasksUS + +https://t.co/x8sCRb8GZE https://t.co/qj4QAnVhWK" +04/18/2018,Musicians,@jtimberlake,What they said👇 https://t.co/kUnerWPCsy +04/16/2018,Musicians,@jtimberlake,"Thank you Vegas + +https://t.co/c2i022uqXm https://t.co/nCpCOqhk0J" +04/16/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: me every time I open new sneakers, @jtimberlake. 😂 https://t.co/qSgEEencVy" +04/14/2018,Musicians,@jtimberlake,🙌 https://t.co/Wjn2A0hVu4 +04/14/2018,Musicians,@jtimberlake,"Loved hanging out with you last night, Salt Lake! #MOTWTOUR https://t.co/3JXKSZ4Oal https://t.co/idSKEpewtK" +04/12/2018,Musicians,@jtimberlake,"RT @LEVIS: Our limited-edition flannels, co-designed with @jtimberlake, are part of the @AmericanExpress OUTSIDE IN shoppable mixed reality…" +04/12/2018,Musicians,@jtimberlake,"RT @HYPEBEAST: #hypebeastart: @Pharrell and @jtimberlake with their new BFFs. ""SEEING/WATCHING"" - @fyKAWS. https://t.co/xF88W205wF" +04/10/2018,Musicians,@jtimberlake,"Next stop: SLC... + +https://t.co/Ry9pUgkOXb https://t.co/3DJvQfdDBL" +04/06/2018,Musicians,@jtimberlake,RT @SoleCollector: .@JTimberlake's Air Jordan 3s releasing again today in LA and Boston: https://t.co/3VndNNfeES https://t.co/OTl1HstIBV +04/06/2018,Musicians,@jtimberlake,"So...now there's two of me? + +https://t.co/Vx5jREAU7m https://t.co/wsOeVStV1q" +04/06/2018,Musicians,@jtimberlake,"RT @freestylesteve: Who’s Next?? #MotwTour #DjLife @ Montreal, Quebec https://t.co/6bLZ5zVzza" +04/06/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake wearing the “UNDFTD” Nike Zoom Kobe 1 Protro in Boston #MOTWTOUR + +📸 @marklashark https://t.co/caL9YISCxS" +04/05/2018,Musicians,@jtimberlake,Night 2 @tdgarden #MOTWTOUR https://t.co/ydwCCfiZXJ +04/05/2018,Musicians,@jtimberlake,💯 https://t.co/NLm9pKbBw5 +04/05/2018,Musicians,@jtimberlake,"Happy birthday, brother. @Pharrell https://t.co/Yd1LT4Vy4Y https://t.co/wuM8s5VDZy" +04/05/2018,Musicians,@jtimberlake,Anything with you LEGEND! @jimmyfallon you can get your feature game up! https://t.co/bAwJ3IrYjp +04/05/2018,Musicians,@jtimberlake,🙌 https://t.co/DDJcyQnWbB +04/05/2018,Musicians,@jtimberlake,🙌 https://t.co/GswZPdEJHA +04/05/2018,Musicians,@jtimberlake,🔥⛳️ https://t.co/3FfeVCiDLF +04/03/2018,Musicians,@jtimberlake,"Detroit, we’re here... + +https://t.co/ZVm65fgAx8 https://t.co/CIyMZXTJ8l" +04/02/2018,Musicians,@jtimberlake,"See you soon, Detroit. https://t.co/iAG9881ejX" +04/02/2018,Musicians,@jtimberlake,Every kid deserves an equal education...but millions don't have access to the technology they need to succeed. I'm… https://t.co/wavKUuu3ne +04/01/2018,Musicians,@jtimberlake,"RT @BleacherReport: GOT EMM! + +@AntDavis23, Master #AprilFools prankster! https://t.co/V40Y18XGC7" +04/01/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: Nike boys in Cleveland. + +@jtimberlake in the mismatched ‘Equality’ LeBron 15s and @kingjames is a Red PE of the ‘Prime…" +04/01/2018,Musicians,@jtimberlake,"A MOMENT. Had no idea @kingjames was jumping on stage tonight. Thanks for celebrating with us, Cleveland...cheers!… https://t.co/e5rj7yZn1W" +03/31/2018,Musicians,@jtimberlake,RT @brkicks: Justin Timberlake at the Cavs game in the Nike LeBron 15 “Diamond Turf” https://t.co/LjzZOyToMB +03/30/2018,Musicians,@jtimberlake,"Sound on + +https://t.co/R57iBBY3aj https://t.co/zFXEcO00s9" +03/28/2018,Musicians,@jtimberlake,Legends never die https://t.co/fPSPmSNsyO +03/28/2018,Musicians,@jtimberlake,https://t.co/oVEl3e2nXe +03/27/2018,Musicians,@jtimberlake,RT @THETNKIDS: In case you missed it! “GUY time” OR “GOT time?” https://t.co/tDeyIUM6vZ +03/26/2018,Musicians,@jtimberlake,Get too close to the stage and I might steal your phone...https://t.co/SZvBc5qqsq +03/26/2018,Musicians,@jtimberlake,THANK YOU JERSEY! #MOTWTOUR https://t.co/vK3ERmoETO +03/26/2018,Musicians,@jtimberlake,On the road with @theshadowboxers for #MOTWTOUR and they just released their debut EP APOLLO. Check it out / put it… https://t.co/sKK5SmxVwA +03/25/2018,Musicians,@jtimberlake,RT @NBA: This week’s JAM SESSION on #InsideStuff features “Supplies” by @jtimberlake! https://t.co/Uh0vZAm6Qy +03/24/2018,Musicians,@jtimberlake,This is the future. So proud to see you all using your voices and marching today. #NeverAgain #MarchforOurLives… https://t.co/hfht1bf5jV +03/24/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake in the Off-White Air Jordan 1 at @TheGarden + +📸 @marklashark https://t.co/viaqBYboIa" +03/23/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake performs wearing the Nike LeBron 15 ""Orange Box"" in New York City #MOTW https://t.co/XYqAw7hgYD" +03/23/2018,Musicians,@jtimberlake,"RT @THETNKIDS: New York, we love you. @jtimberlake @TheGarden #MOTWTOUR https://t.co/8cDBLXUaUT" +03/23/2018,Musicians,@jtimberlake,"RT @TheGarden: ""On top of the world at the greatest venue in the world, Madison Square Garden!"" - @jtimberlake + +#JustinTimberlakeMSG +(Phot…" +03/22/2018,Musicians,@jtimberlake,"Again, so sorry we had to postpone last night’s show. BUT we have a new date for our next concert at @TheGarden. I’… https://t.co/MG5MLABS8n" +03/21/2018,Musicians,@jtimberlake,I’m sorry to announce the show tonight at Madison Square Garden has been POSTPONED due to the snow. BUT we’re still… https://t.co/pvQjXeLyps +03/20/2018,Musicians,@jtimberlake,RT @Timbaland: Repost from @Tidal. You can't deny @jtimberlake and @timbaland's studio chemistry. Press play on their collaborations: https… +03/20/2018,Musicians,@jtimberlake,RT @brkicks: Justin Timberlake performs in the Kith x Nike LeBron 15 Lifestyle at Washington D.C. #MOTW https://t.co/TtHZeiuWjh +03/19/2018,Musicians,@jtimberlake,I’m so inspired by the #MarchForOurLives students out there owning their voices. We need to demand action. Get out… https://t.co/uv6uq78va2 +03/17/2018,Musicians,@jtimberlake,"RT @Jumpman23: ""Keep jumping."" - @jtimberlake + +Toronto got a first look at the new 🔥 from JT. https://t.co/1eMBfmQ0uO" +03/17/2018,Musicians,@jtimberlake,"Down time. #MOTWTOUR + +https://t.co/xauP4ixkst https://t.co/NXCManMJm3" +03/16/2018,Musicians,@jtimberlake,"That’s a wrap Toronto. We’d stay longer but DC’s callin’...#MOTWTOUR + +https://t.co/gtEQ0zr7yh https://t.co/2EPDDFD3DE" +03/15/2018,Musicians,@jtimberlake,Thank you @StellaMcCartney! https://t.co/18WcUsoAiD +03/15/2018,Musicians,@jtimberlake,"Surprised Toronto with some 2-Minute Warnings #MOTWTOUR + +https://t.co/F3NpBIRJur https://t.co/iwKgQSFOTN" +03/14/2018,Musicians,@jtimberlake,6:23 @Jumpman23 https://t.co/SW8oqsZSTD +03/14/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: 🚨 EXCLUSIVE + +@jtimberlake + @Jumpman23 are celebrating the start of his tour by dropping a limited number of JTH 3s a…" +03/14/2018,Musicians,@jtimberlake,"RT @Jumpman23: 👟: @jtimberlake +📍: 306 Yonge St., Toronto +⏰: 6:23pm ET +📅: 3.14 https://t.co/TQFVyvcU2U" +03/14/2018,Musicians,@jtimberlake,"RT @Complex: 🚨 EXCLUSIVE 🚨 + +@jtimberlake's Jordan 3s release tonight in Toronto + +https://t.co/mFWaXmdljY https://t.co/F8EXpR9nia" +03/14/2018,Musicians,@jtimberlake,"RT @HYPEBEAST: The @jtimberlake x @Jumpman23 kicks are headed to the 6. +https://t.co/MOgSaFJcEf" +03/13/2018,Musicians,@jtimberlake,.@Jumpman23 https://t.co/yISACD4Hiq +03/13/2018,Musicians,@jtimberlake,"Goin’ on tour. #MOTWTOUR + +https://t.co/9TnZeau94A https://t.co/kqhgusmokp" +03/11/2018,Musicians,@jtimberlake,"GOAT @Jumpman23 + +https://t.co/ir25iTAeFX https://t.co/Wof5NZSTNS" +03/02/2018,Musicians,@jtimberlake,Was a honor to share the stage with my brother @ChrisStapleton at the @BRITs last week. Full performance of… https://t.co/E2JWsAEQbX +03/01/2018,Musicians,@jtimberlake,RT @brkicks: P.J. Tucker had options tonight 👀 https://t.co/clEkU82gtA +02/26/2018,Musicians,@jtimberlake,RT @BR_Kicks: P.J. Tucker wearing the Air Jordan 3 JTH against Denver https://t.co/MswcNfuVsO +02/22/2018,Musicians,@jtimberlake,After the show it’s the afterparty. Good times @Spotify #AboutLastNight https://t.co/v3dRQlC7yt +02/22/2018,Musicians,@jtimberlake,Thanks for having us @brits! 🙌 @thetnkids @chrisstapleton #MidnightSummerJam #SaySomething https://t.co/AhGLDfAeh0 +02/21/2018,Musicians,@jtimberlake,RT @BRITs: The Man of the Woods 🌲 is now Man of The #BRITs - we've taken over @jtimberlake's emoji! #JustinTimberlakeBRITs +02/21/2018,Musicians,@jtimberlake,"Here we go... @BRITs #JustinTimberlakeBRITs + +https://t.co/LqhblzG4vX" +02/21/2018,Musicians,@jtimberlake,Excited to be here... #BritAwards https://t.co/14lxTTdbX9 +02/20/2018,Musicians,@jtimberlake,#britawards tomorrow night... I’m the one in the beanie. https://t.co/C725A5fHhc +02/14/2018,Musicians,@jtimberlake,RT @BR_Kicks: P.J. Tucker in the Air Jordan 3 “Legends of the Summer” #Rockets https://t.co/609dk2wTVh +02/09/2018,Musicians,@jtimberlake,"Friday...Volume up! #MOTW +(Exclusive orange vinyl only Target​) +https://t.co/Q0NTBruMDZ https://t.co/iJC5p7kB5Z" +02/08/2018,Musicians,@jtimberlake,RT @pandoramusic: Mood:@jtimberlake's #MOTW. Listen now: https://t.co/rdFE5uWEKG https://t.co/iopMq8QNqb +02/08/2018,Musicians,@jtimberlake,"Behind ""Montana"" and more...... +#MOTW #DeconstructionWithJT on @AmazonMusic: +https://t.co/h4CEWOMF0B https://t.co/mtkFZ6A0Df" +02/07/2018,Musicians,@jtimberlake,"RT @TheEllenShow: Thanks for my secret signal, @JTimberlake. #SuperBowl https://t.co/RkfBc6Zjm8" +02/07/2018,Musicians,@jtimberlake,#MOTW @applemusic https://t.co/Po8obBEjho https://t.co/6nBvtAYca1 +02/07/2018,Musicians,@jtimberlake,"#ManOfTheWoods out now! + +https://t.co/L9yGfZpcbg https://t.co/2LhnVAdksZ" +02/06/2018,Musicians,@jtimberlake,"Thank you, THANK YOU #SBLII @nfl @pepsi! Congrats @Eagles🏆! We out!! @thetnkids #PepsiHalftime 🏈 https://t.co/xjcjqAyBAc" +02/06/2018,Musicians,@jtimberlake,About last night… @thetnkids and I just added more US and Canada #MOTWTour dates. Europe and UK announced!… https://t.co/57Y75ue4VT +02/06/2018,Musicians,@jtimberlake,"Love you, bro!! Thank you! https://t.co/cDZcxgdpOJ" +02/05/2018,Musicians,@jtimberlake,"#MOTW + +https://t.co/rMIkpl3yp3 https://t.co/nW9WVEvQTX" +02/05/2018,Musicians,@jtimberlake,.@THETNKIDS and I brought #Supplies onto @FallonTonight! ⚠️ Limited merch as seen in video available now for only 2… https://t.co/6zgTxmnLoE +02/05/2018,Musicians,@jtimberlake,#SuperBowlSelfie https://t.co/JAJWoDmUFc +02/05/2018,Musicians,@jtimberlake,RT @TheEllenShow: My friend @JTimberlake just killed it. #SuperBowl #JustinTimberlake https://t.co/oZv0YcxsrN +02/05/2018,Musicians,@jtimberlake,🙌🙌🙌 #SBLII #PepsiHalftime @Pepsi @NFL #MOTW @thetnkids https://t.co/blsaV3b8x8 +02/05/2018,Musicians,@jtimberlake,#SBLII #PepsiHalftime @Pepsi @NFL #MOTW https://t.co/EwZnemHzWU +02/05/2018,Musicians,@jtimberlake,#SBLII #PepsiHalftime @Pepsi @NFL #MOTW @thetnkids https://t.co/8RVE5pxW1D +02/05/2018,Musicians,@jtimberlake,⚠️ Two minute warning. ⚠️ @Jumpman23 #SBLII https://t.co/yBo3PZFAJJ +02/04/2018,Musicians,@jtimberlake,My band @theTNKids looking good @RamTrucks! 🙌#CountryBoy #SBLII https://t.co/pt4A2XcqYl +02/04/2018,Musicians,@jtimberlake,"I see you @Spotify #NYC #MOTW + +https://t.co/aOlte4eNgy https://t.co/b3tEJU42dN" +02/03/2018,Musicians,@jtimberlake,"Weekend plans? THIS VIBE. Playin’ all day long. #MOTW + +@AppleMusic +https://t.co/Po8obBmIpQ https://t.co/nmHMhhapZW" +02/03/2018,Musicians,@jtimberlake,"Love love love to you, sis!!!! You saaaang on that!! 🙌 https://t.co/8i2XF0K0qC" +02/03/2018,Musicians,@jtimberlake,"Casual Friday + +#SBLII https://t.co/wNhTMP9vwp" +02/02/2018,Musicians,@jtimberlake,Just made a #targetrun and got my limited edition vinyl there.. Also left a gift for 5 of y’all at the Super… https://t.co/SE7fazStl3 +02/02/2018,Musicians,@jtimberlake,"When @twitter makes your logo an emoji!!! + +#ManoftheWoods +#MOTW +#MOTWTour +#JustinTimberlake +#JTSuperbowl" +02/02/2018,Musicians,@jtimberlake,"RT @iHeartRadio: Yup, it's true! @jtimberlake is hooking you up! His entire new album ""Man Of The Woods"" is available for free with the iHe…" +02/02/2018,Musicians,@jtimberlake,The album & my interviews about the stories behind the songs up on @AmazonMusic now. https://t.co/h4CEWOv493 https://t.co/hSyr9YuaqF +02/02/2018,Musicians,@jtimberlake,"Man of the Woods music video. 🎥: #PaulHunter / @Prettybirdpic +https://t.co/TSJbPA4xle" +02/02/2018,Musicians,@jtimberlake,Man of the Woods... out now! https://t.co/L9yGfZpcbg https://t.co/jcSuUxHiX0 +02/02/2018,Musicians,@jtimberlake,Live from Paisley Park! Teamed up with @AmericanExpress to livestream my official album release – #ManoftheWoods https://t.co/beOZ4nqUPz +02/02/2018,Musicians,@jtimberlake,"Let’s GOOOO! I’m so excited for y’all to hear this all from top to bottom! + +This is a song called MIDNIGHT SUMMER J… https://t.co/9zkDoPb4Iu" +02/02/2018,Musicians,@jtimberlake,4 of 4. Man of the Woods music video out midnight ET. 🎥 : #PaulHunter / @Prettybirdpic https://t.co/q1DgjoCQov +02/01/2018,Musicians,@jtimberlake,Whooooo! It’s a VIBE y’all! ⚠️More New Music Alert⚠️ This is a song called MORNING LIGHT feat. @aliciakeys You bett… https://t.co/ulDCgoAbBC +02/01/2018,Musicians,@jtimberlake,What’s that? Oh yeah... we’re still partying. ⚠️More New Music Alert⚠️ This is a song called WAVE. @pharrell… https://t.co/iemcCqz239 +02/01/2018,Musicians,@jtimberlake,💪💪💪 @adamblackstone @SoiRodgers @BrianFrasierM & all @THETNKIDS https://t.co/TVjTowc8l8 +02/01/2018,Musicians,@jtimberlake,Still my bday!! I’m having too much fun! ⚠️More new music alert ⚠️ This is a song called HIGHER HIGHER. @Pharrell… https://t.co/0njI8nFsJi +02/01/2018,Musicians,@jtimberlake,"Gotta stay hydrated for bro biking, BRO! Btw... it’s COLD in MN. Snow-bro biking when you get here?? https://t.co/oE5ml5c97a" +02/01/2018,Musicians,@jtimberlake,@adamblackstone 🙌 +02/01/2018,Musicians,@jtimberlake,"Bday rehearsals. Still feeling myself..? YES. + +This is a song called MONTANA. @Pharrell @ChadHugo +Man Of The Woods.… https://t.co/QCIAW7EKVc" +02/01/2018,Musicians,@jtimberlake,Talked about the process of creating Man of the Woods with @amazonmusic. First 3 episodes are up now; stayed tuned… https://t.co/7BW82YgjtC +01/31/2018,Musicians,@jtimberlake,@tinyambo 🙌 +01/31/2018,Musicians,@jtimberlake,"I feel like @djkhaled right now!!! NEW SONG ALERT! Birthday vibes! +Thanks everybody for the bday love! https://t.co/Al1qonrZyK" +01/31/2018,Musicians,@jtimberlake,"Man of the Woods is out Friday. And yes, this is how cold it is in Minnesota right now 😉 + +https://t.co/L9yGfZpcbg https://t.co/Zo8ICyQ0g3" +01/30/2018,Musicians,@jtimberlake,#Superbowl #SBLII https://t.co/PEYofvPPlv +01/30/2018,Musicians,@jtimberlake,Excited to be performing #Brits! See you soon UK. https://t.co/KWg4JgoWLY +01/29/2018,Musicians,@jtimberlake,Behind: Say Something @ChrisStapleton https://t.co/QLLwVBeq9y +01/29/2018,Musicians,@jtimberlake,LET’S GO! #Superbowl #SBLII https://t.co/ub3h1ctRbl +01/29/2018,Musicians,@jtimberlake,"Congrats, Jedi!!!!! You all deserve it! https://t.co/xjG7Va94l1" +01/29/2018,Musicians,@jtimberlake,"Happy Bday, Big Spain! https://t.co/d5GIdztpNt" +01/28/2018,Musicians,@jtimberlake,I wish I could be there to support all of the artists on what will undoubtedly be a special night tonight. Sending… https://t.co/09lsQz4uak +01/28/2018,Musicians,@jtimberlake,So inspired by Jay’s words from last night’s pre-Grammy party (Congrats Hov! @S_C_ )...and it reminded me of times… https://t.co/ib8nH7Wjwy +01/28/2018,Musicians,@jtimberlake,#SaySomething acoustic version https://t.co/HXLgYnG05b +01/27/2018,Musicians,@jtimberlake,"It’s always a pleasure when we get to play tunes together, my friend. Honored! @ChrisStapleton… https://t.co/QfhtomXZeE" +01/27/2018,Musicians,@jtimberlake,"Thank you, bro!!! 🙌 https://t.co/wGW2tlIUJd" +01/26/2018,Musicians,@jtimberlake,#SaySomething from #ManoftheWoods up now on @AmazonMusic. Check it! https://t.co/h4CEWOMF0B https://t.co/riT49OCn5K +01/26/2018,Musicians,@jtimberlake,#Superbowl rehearsals are going well... @Jumpman23 #SBLII https://t.co/kuBEoIofIp +01/26/2018,Musicians,@jtimberlake,Aww. Honored to celebrate YOU! Happiest Born Day from me and @TheTNKids! @TheEllenShow #HappyBirthdayEllen https://t.co/IkyaoNdmGo +01/26/2018,Musicians,@jtimberlake,"Man that was fun! @ChrisStapleton @TheTNKids @blogotheque @artperezjr +#SaySomething https://t.co/u2u2dmMrMh https://t.co/GT1pR7yZAT" +01/26/2018,Musicians,@jtimberlake,"RT @blogotheque: ""Maybe one of the most ambitious video shoots I’ve ever been a part of. One take, live performance, in the Bradbury Buildi…" +01/25/2018,Musicians,@jtimberlake,"#SaySomething on @Spotify! +https://t.co/oSnRjHozC9 https://t.co/Ogz8aNIwGa" +01/25/2018,Musicians,@jtimberlake,"Say Something. 3 of 4. feat. @ChrisStapleton +https://t.co/KPzApHWFTG https://t.co/UfzTM4flL2" +01/25/2018,Musicians,@jtimberlake,"Folks, the #SaySomething song + video feat. @chrisstapleton is now up @applemusic... https://t.co/tLFlEo1uII https://t.co/W8MNFkK8zJ" +01/25/2018,Musicians,@jtimberlake,"""Say Something"" feat. @chrisstapleton. 🎥 @blogotheque @artperezjr. +https://t.co/SIe37byPIT" +01/25/2018,Musicians,@jtimberlake,🙌 https://t.co/SEgYusC55r +01/24/2018,Musicians,@jtimberlake,"#SaySomething. @ChrisStapleton +Tomorrow. 12 PM ET. https://t.co/F5vheaMpOZ" +01/24/2018,Musicians,@jtimberlake,.@ChrisStapleton and me. #SaySomething. Tomorrow! https://t.co/0iKwJAovUJ +01/23/2018,Musicians,@jtimberlake,“At a club? Are you f*cking crazy?” - @tylerthecreator #jerrodcarmichael #Supplies https://t.co/2MtTcTqFWh +01/23/2018,Musicians,@jtimberlake,"THANK YOU! Day changed. + +#StillPieOverCake https://t.co/gbyezn2hhs" +01/23/2018,Musicians,@jtimberlake,"Also... I prefer pie, I think." +01/23/2018,Musicians,@jtimberlake,"Random question: Can someone please explain the saying, “You just want your cake and to eat it too.” + +What else am… https://t.co/tiNyeiFVZC" +01/22/2018,Musicians,@jtimberlake,Behind : Supplies @Pharrell https://t.co/GahdZPIYzL +01/22/2018,Musicians,@jtimberlake,Me? 🙌 https://t.co/9hdLkknSHG +01/22/2018,Musicians,@jtimberlake,RT @adamblackstone: WHAT A WIN... IM SPEECHLESS.... this is like a dream come true... IM PLAYING SBOWL HALFTIME... ANNNNDDD MY TEAM IS PLA… +01/21/2018,Musicians,@jtimberlake,"Supply-eye-ies... + +https://t.co/PlAckfOawg https://t.co/CmFkb5V6yM" +01/19/2018,Musicians,@jtimberlake,"RT @Beats1: Let's go! +@jtimberlake x @zanelowe +#ManOfTheWoods + more. +👀 https://t.co/URmOxfJJGn https://t.co/osXQ48Av2r" +01/19/2018,Musicians,@jtimberlake,"RT @Beats1: ""I always want to write music. I always want to make movies. I always want to go on tour. I don't know how long my body will le…" +01/18/2018,Musicians,@jtimberlake,Supply-eye- ies!!!! 🙌 https://t.co/PFrL4kjv9p +01/18/2018,Musicians,@jtimberlake,🙌 https://t.co/Gnc0S2vyXt +07/02/2018,Musicians,@ShawnMendes,"RT @SiriusXMHits1: #MendesArmy. GET. READY. We have your chance to see @ShawnMendes LIVE at a secret location in LA on July 13, hosted by #…" +07/02/2018,Musicians,@ShawnMendes,"With all of my heart. Thank you, Brazil. Te amo demas! X https://t.co/db5atuDI9x" +07/01/2018,Musicians,@ShawnMendes,Happy Canada day ❤️🇨🇦🇨🇦!!! +06/30/2018,Musicians,@ShawnMendes,Goiania xx https://t.co/MNcx2q9DdO +06/27/2018,Musicians,@ShawnMendes,❤️ +06/25/2018,Musicians,@ShawnMendes,Thank you #RDMAs! https://t.co/HsMybSBTGt +06/19/2018,Musicians,@ShawnMendes,"Brazil, see u soon. Can’t wait to play for you again. X" +06/19/2018,Musicians,@ShawnMendes,. @billieeilish i think you are just really crazy talented and everybody who hasn’t listened to your music is seriously missing out. +06/18/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnMendesCollection now available in select @UrbanOutfitters stores and online at https://t.co/EWswWsKSh8 https://t.co/… +06/18/2018,Musicians,@ShawnMendes,Honestly doesn’t get better than this!! @DanielCaesar https://t.co/rdjLSLmYqm +06/18/2018,Musicians,@ShawnMendes,"#ShawnMendesCollection launches with @urbanoutfitters today. In select stores in NY, LA, & Toronto and online at… https://t.co/RYWxOviKfF" +06/18/2018,Musicians,@ShawnMendes,RT @UrbanOutfitters: It’s here! Shop @ShawnMendes The Collection online now: https://t.co/jxvt8FVnjr https://t.co/bwD8omgwL5 +06/16/2018,Musicians,@ShawnMendes,#ShawnMendesFestivalTour this summer. Tickets https://t.co/bEmQqHS8Gq https://t.co/6nsVKox3Yg +06/16/2018,Musicians,@ShawnMendes,https://t.co/2PegoPX29v +06/16/2018,Musicians,@ShawnMendes,I ABSOLUTELY LOVE YOU GUYS. I REALLY REALLY LOVE U +06/15/2018,Musicians,@ShawnMendes,3rd London show is onsale now x https://t.co/qAZaGlclFv https://t.co/l3YxQ0uaqh +06/14/2018,Musicians,@ShawnMendes,https://t.co/G1zT7InoQV +06/13/2018,Musicians,@ShawnMendes,Hahaha thank you so much!!!! https://t.co/87Y2VrwF6q +06/13/2018,Musicians,@ShawnMendes,"Vamos, família! Força Portugal! 🇵🇹 ⚽️ ❤️❤️ @selecaoportugal" +06/13/2018,Musicians,@ShawnMendes,Did the official World Cup song for @selecaoportugal! Go watch here https://t.co/XUC4xcJeF8 #InMyBloodPortugal https://t.co/KXDHgQuoD7 +06/13/2018,Musicians,@ShawnMendes,RT @selecaoportugal: Notícia de última hora: Shawn Mendes chamado à Seleção de Portugal. Aqui está a sua música oficial de apoio à equipa p… +06/12/2018,Musicians,@ShawnMendes,Haha i love this!!!! ❤️ https://t.co/H7QGOdqE2N +06/12/2018,Musicians,@ShawnMendes,Performing @iHeartFestival Sept 22nd! X https://t.co/RcrUwNEzr5 +06/11/2018,Musicians,@ShawnMendes,"Go watch #NervousMusicVideo now! +https://t.co/Y6cj0lpZLR https://t.co/tz0D23WYKt" +06/11/2018,Musicians,@ShawnMendes,#NervousMusicVideo drops in full color at noon EST x https://t.co/WoyqtCWJa5 +06/10/2018,Musicians,@ShawnMendes,https://t.co/FNZObhEZn7 +06/10/2018,Musicians,@ShawnMendes,"If money comes my way, i wont be complaining, though it wouldn’t mean a thing without you" +06/09/2018,Musicians,@ShawnMendes,Thank you @capitalofficial for having me!!! ❤️ https://t.co/2SYOqxXXwM +06/08/2018,Musicians,@ShawnMendes,3rd London show added! https://t.co/qAZaGltX45 x https://t.co/4rqTgYEwBK +06/08/2018,Musicians,@ShawnMendes,https://t.co/t4dY6dzALm +06/08/2018,Musicians,@ShawnMendes,Perfectly wrong. https://t.co/SpAjNURnGZ +06/08/2018,Musicians,@ShawnMendes,#LateLateShawn final night tonight thank you @latelateshow @JKCorden for such a wonderful week https://t.co/uUeLoqvyWA +06/08/2018,Musicians,@ShawnMendes,"RT @JKCorden: Today @ShawnMendes made our entire staff #LateLateShawn merchandise! It was the sweetest gift from an incredibly kind, funny,…" +06/08/2018,Musicians,@ShawnMendes,📷: @JosiahVanDien https://t.co/NWdhtvMZoT +06/08/2018,Musicians,@ShawnMendes,"RT @latelateshow: That was awesome. Thanks for all the great questions! + +Be sure you join us tonight at 12:37/11:37c for the last night of…" +06/07/2018,Musicians,@ShawnMendes,RT @latelateshow: .@AidaWen3 #AskLateLateShawn https://t.co/5BuK0R1sDA +06/07/2018,Musicians,@ShawnMendes,"RT @latelateshow: It's been a crazy, wonderful week here at the #LateLateShow and we bet it's left you with some questions for @ShawnMendes…" +06/07/2018,Musicians,@ShawnMendes,RT @JKCorden: Me and @ShawnMendes both busk on the same subway. https://t.co/nAfgrafU2U +06/07/2018,Musicians,@ShawnMendes,“Like To Be You” with @juliamichaels on @latelateshow https://t.co/HquRhMfJj5 https://t.co/KU8uLkGLcj +06/07/2018,Musicians,@ShawnMendes,RT @latelateshow: This GIF of @ShawnMendes can actually save lives. #LateLateShawn https://t.co/kvH4zXya88 +06/07/2018,Musicians,@ShawnMendes,RT @JKCorden: Tonight’s @latelateshow might be one of my favorites of all time x @CBS 12.30 x #LateLateShawn +06/07/2018,Musicians,@ShawnMendes,Tonight night 3 of #LateLateShawn with @juliamichaels https://t.co/2vX8LrXnJw +06/07/2018,Musicians,@ShawnMendes,Cez and I got a flow https://t.co/HGOWkfUzY7 +06/06/2018,Musicians,@ShawnMendes,New campaign with @EmporioArmani coming soon x #EAwatches https://t.co/h0Y2vjCjEy +06/06/2018,Musicians,@ShawnMendes,RT @billboard: .@ShawnMendes returns to No. 1 on the Billboard Artist 100 chart https://t.co/1LK9gBOF2Q https://t.co/YgtaSc9Ixr +06/06/2018,Musicians,@ShawnMendes,“Lost In Japan”.. Thank you @latelateshow! Night 3 Tonight x https://t.co/YNLOKRPJO7 https://t.co/ivWgeN4L56 +06/06/2018,Musicians,@ShawnMendes,Im a sucker for a good topical joke Ben! https://t.co/YWSR3Jn0Bw +06/06/2018,Musicians,@ShawnMendes,Dan & Shay man!!!! Country music ! Im back baby! +06/06/2018,Musicians,@ShawnMendes,RT @latelateshow: 🎶 Do you got plans tonight? I'm a couple hundred miles from Japan. 🎶 #LateLateShawn https://t.co/2z850Etr4a +06/06/2018,Musicians,@ShawnMendes,😂 @latelateshow @JKCorden #LateLateShawn https://t.co/ftaMdeMhD4 +06/06/2018,Musicians,@ShawnMendes,"RT @whymutual: ""I'm your host, Shawn Mendes"" #LateLateShawn https://t.co/40axy9LoXD" +06/06/2018,Musicians,@ShawnMendes,"RT @latelateshow: It's time for the ""shawnologue"" with @ShawnMendes. #LateLateShawn https://t.co/iaeoTlKnhf" +06/06/2018,Musicians,@ShawnMendes,Night 2 of #LateLateShawn tonight! @latelateshow https://t.co/jdBL323gJ0 +06/05/2018,Musicians,@ShawnMendes,"RT @latelateshow: .@ShawnMendes CRUSHED this performance of ""Nervous"" on last night's show. https://t.co/BaWAEGJdqY" +06/05/2018,Musicians,@ShawnMendes,"RT @TwitterMusic: Looking through your timeline +Seeing all the Tweets 🎶 + +@ShawnMendes stopped by to read what fans are Tweeting.👇 https://t…" +06/05/2018,Musicians,@ShawnMendes,"RT @JKCorden: I swear if @ShawnMendes steals my parking spot again, it won’t end pretty. https://t.co/InNLqNxsn4" +06/05/2018,Musicians,@ShawnMendes,"RT @latelateshow: You know, this @ShawnMendes guy might have a future in the music biz. #LateLateShawn https://t.co/LvecfhgkSg" +06/05/2018,Musicians,@ShawnMendes,Thank you @latelateshow @JKCorden #ShawnCarpool x https://t.co/l35p1k74vp https://t.co/ToaTbLMaeS +06/05/2018,Musicians,@ShawnMendes,"RT @benwinston: His fans have been asking for this for a while and its finally here.... @ShawnMendes carpool, is carpool at its best. He is…" +06/05/2018,Musicians,@ShawnMendes,RT @Hopefully5sos: i was literally dying of laughter mood is james #ShawnCarpool #LateLateShawn https://t.co/YCoISIrd8e +06/05/2018,Musicians,@ShawnMendes,RT @latelateshow: But what Hogwarts house would @ShawnMendes be part of? #ShawnCarpool https://t.co/9Q1kaH5e1r +06/05/2018,Musicians,@ShawnMendes,#ShawnCarpool tonight on the first night of the week takeover @latelateshow #LateLateShawn x https://t.co/bPPcC0DDJs +06/05/2018,Musicians,@ShawnMendes,RT @latelateshow: It's official: Nobody will be needing stitches if @ShawnMendes and @JKCorden show up to a fight 🥊🙈😬 #ShawnCarpool https:/… +06/04/2018,Musicians,@ShawnMendes,RT @latelateshow: .@JKCorden and @ShawnMendes have a little something they’d like to tell you about tonight’s show... https://t.co/PbEG3Ceo… +06/04/2018,Musicians,@ShawnMendes,https://t.co/3bq5cCTM7P +06/04/2018,Musicians,@ShawnMendes,https://t.co/15fGZlwosw +06/04/2018,Musicians,@ShawnMendes,Its all about the connection. Truly is. +06/04/2018,Musicians,@ShawnMendes,https://t.co/u9dsKdrg6Z +06/04/2018,Musicians,@ShawnMendes,Unreal. Thank you to every single person who made this happen! I love u guys so much!!!!!!!!❤️❤️❤️❤️❤️❤️ https://t.co/AFGaSetCuU +06/03/2018,Musicians,@ShawnMendes,@latelateshow @JKCorden Great idea! Haha x +06/03/2018,Musicians,@ShawnMendes,@latelateshow @JKCorden @JKCorden @latelateshow https://t.co/meLHzjdHAQ +06/03/2018,Musicians,@ShawnMendes,RT @latelateshow: .@ShawnMendes #ShamesCorndes week starts tomorrow!! 🙌💃✨🎉 https://t.co/yqLK9st1rR +06/03/2018,Musicians,@ShawnMendes,"RT @iHeartRadio: TONIGHT. We relive all the best moments from the 2018 iHeartRadio Wango Tango AGAIN! + +Watch our #WangoTangoOnFreeform at…" +06/03/2018,Musicians,@ShawnMendes,@latelateshow .@JKCorden @latelateshow https://t.co/4HWFoNGRIT +06/03/2018,Musicians,@ShawnMendes,RT @1027KIISFM: OMG @shawnmendes is RIGHT THERE! 😭😭😭 #WangoTango https://t.co/Mh7Ij1sPyC +06/02/2018,Musicians,@ShawnMendes,!!!!!!!!!!!!!! 😍 https://t.co/WuntfHwfm9 +06/02/2018,Musicians,@ShawnMendes,Wow ❤️ https://t.co/pTzsTuAULx +06/02/2018,Musicians,@ShawnMendes,Unreal. Thank you. @govballnyc https://t.co/d2oPJuH2ns +06/01/2018,Musicians,@ShawnMendes,RT @TODAYshow: .@ShawnMendes is rocking the plaza! #ShawnTODAY https://t.co/1pAXTdJmjf +06/01/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnTODAY 8:30am ET tune in! +05/31/2018,Musicians,@ShawnMendes,Tomorrow performing on @TODAYshow come down to Rockefeller Plaza before 8am to watch! https://t.co/XgPtE4rNeC +05/30/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum - “Lost In Japan” x https://t.co/xfrqTMHH3h +05/30/2018,Musicians,@ShawnMendes,RT @billboard: .@ShawnMendes' new album is heading for No. 1 on the #Billboard200 chart https://t.co/TgkumAizk4 https://t.co/RPTSmJ5Okd +05/30/2018,Musicians,@ShawnMendes,Today come listen to the album on @Spotify with me https://t.co/rmlow132qi https://t.co/S0FrNyZplb +05/29/2018,Musicians,@ShawnMendes,https://t.co/gYlBGfAM0X +05/29/2018,Musicians,@ShawnMendes,"RT @pandoramusic: .@ShawnMendes gets real with us discussing how he is breaking down genres with his new self-titled album, #ShawnMendesThe…" +05/28/2018,Musicians,@ShawnMendes,Will be on at 5:25p @GovBallNYC this Friday go get tickets now at https://t.co/aDve3S2DhF x +05/28/2018,Musicians,@ShawnMendes,London Popup open today only x https://t.co/h40gIMWguV +05/27/2018,Musicians,@ShawnMendes,"RT @JaredLeto: Thx again for joining us on stage at #BiggestWeekend for #RescueMe, @ShawnMendes!! 🙏🏼 @30SECONDSTOMARS https://t.co/pTa1Yd29…" +05/27/2018,Musicians,@ShawnMendes,❤️ https://t.co/N8ukd5xpd8 +05/27/2018,Musicians,@ShawnMendes,https://t.co/IJnvRlj390 +05/27/2018,Musicians,@ShawnMendes,https://t.co/5TXuX8YerC +05/27/2018,Musicians,@ShawnMendes,https://t.co/LaGb685TGL +05/27/2018,Musicians,@ShawnMendes,"RT @BBCR1: Are you excited about @ShawnMendes? + +Because we SURE are 😱🎉 + +Watch the full performance on the @BBCiPlayer ➡️ https://t.co/pBz5i…" +05/27/2018,Musicians,@ShawnMendes,Limited vinyl at https://t.co/KEz4lLaNb4 https://t.co/fuiNvQmRE5 +05/27/2018,Musicians,@ShawnMendes,5:30pm BST tune in @BBCR1 x https://t.co/ewhp1hmhxj https://t.co/9Nh9moA3uq +05/26/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum Pt II. Get the album here x https://t.co/RRpkfGE1tC https://t.co/rqaDCqMsg4 +05/26/2018,Musicians,@ShawnMendes,Wow ive never seen so many different answers! That makes SO happy because they all are super important to me for different reasons ❤️ +05/26/2018,Musicians,@ShawnMendes,Okay favourite songs HIT ME! +05/26/2018,Musicians,@ShawnMendes,Secret pop-up shop in London on May 28th #ShawnLondonPopup https://t.co/zeWAtVejmQ https://t.co/V2fhcl0Eak +05/25/2018,Musicians,@ShawnMendes,https://t.co/oRA9dmRo2S +05/25/2018,Musicians,@ShawnMendes,RT @Target: #ShawnMendesTheAlbum is available now! Our Target exclusive includes extra songs. NY and LA @ShawnMendes has a surprise for you… +05/25/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum  packaging & credits. Thank you x https://t.co/tzLVMY7yk2 +05/25/2018,Musicians,@ShawnMendes,RT @andrewgertler: #ShawnMendesTheAlbum @ShawnMendes https://t.co/NyB53jin9C +05/25/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum Pt I below. Get the album here x https://t.co/JkjwPG2pEd https://t.co/xJgVhN7Jq1 +05/25/2018,Musicians,@ShawnMendes,"Go get the album on @applemusic #ShawnMendesTheAlbum + +iTunes: https://t.co/mnTsXhlJCq +AppleMusic:… https://t.co/OFCtxLw2Kh" +05/25/2018,Musicians,@ShawnMendes,Go stream the album & watch the “Nervous” vertical video on @Spotify! https://t.co/QNp4tNFHOz https://t.co/OmuOFSMcD0 +05/25/2018,Musicians,@ShawnMendes,"Thank you, with all of my heart thank you!! I LOVE YOU!!!! ❤️" +05/25/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawMendesTheAlbum out now! https://t.co/VVprIExL1g https://t.co/4o0N5rpUZQ +05/25/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum is out now go listen & download! x https://t.co/JkjwPG2pEd https://t.co/cZhAskqrXp +05/25/2018,Musicians,@ShawnMendes,my favorite lyrics is the first phrase I say in Like To Be You and the first phrase Julia says #ShawnMendesTheAlbum https://t.co/CSoeEBnEDq +05/25/2018,Musicians,@ShawnMendes,"Everything will be different, a new album lets me be creative with the show all over again. Also. Using lots of fl… https://t.co/7AsT7rzewH" +05/25/2018,Musicians,@ShawnMendes,I wanted to stamp this moment in time at 19 because ive never felt so true to myself #ShawnMendesTheAlbum https://t.co/GDjrMLAWY9 +05/25/2018,Musicians,@ShawnMendes,This is almost impossible to answer but if i had to choose it’d be a fight between In My Blood & where were you in… https://t.co/TGY9i9zV1G +05/25/2018,Musicians,@ShawnMendes,"Depends, some days a couple of hours and sometimes a few days! #ShawnMendesTheAlbum https://t.co/iJGsjAa8aJ" +05/25/2018,Musicians,@ShawnMendes,Im excited for people to see how ive grown and to listen to the stories ive wrote! https://t.co/m36xi7j0R7 +05/25/2018,Musicians,@ShawnMendes,Where were you in the morning!!!!!! #ShawnMendesTheAlbum https://t.co/a8cjbvsDyu +05/25/2018,Musicians,@ShawnMendes,"RT @shawnallofme: I'm very Excited for Midnight @ShawnMendes +#ShawnMendesTheAlbum" +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum Midnight https://t.co/C3oXJ4AOKF https://t.co/BPRFpbSEeV +05/24/2018,Musicians,@ShawnMendes,Twitter Q&A at 11pm ET send your questions with #ShawnMendesTheAlbum https://t.co/chU4sVTax8 +05/24/2018,Musicians,@ShawnMendes,RT @janzenstarr: MIDNIGHT!!!!! @ShawnMendes #ShawnMendesTheAlbum +05/24/2018,Musicians,@ShawnMendes,RT @mendesgoodness: You did it #ShawnMendesTheAlbum https://t.co/f5XnbgFaj3 +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum tonight at midnight x https://t.co/C3oXJ4AOKF https://t.co/cbjOhCcBkZ +05/24/2018,Musicians,@ShawnMendes,RT @nbtscarpenter: I CANT BELIEVE WE’RE GETTING SM3 AT MIDNIGHT IM SO HAPPY #ShawnMendesTheAlbum +05/24/2018,Musicians,@ShawnMendes,That was in my blood i think! Haha https://t.co/5rOW6I8RIJ +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum Midnight x. https://t.co/C3oXJ4AOKF https://t.co/TjmMX8YZmN +05/24/2018,Musicians,@ShawnMendes,"RT @ShawnAccess: #ShawnMendesTheAlbum +#ShawnMendesTheAlbum +#ShawnMendesTheAlbum" +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum out tonight at midnight!!! https://t.co/C3oXJ4AOKF https://t.co/avP3AGBeoJ +05/23/2018,Musicians,@ShawnMendes,#ShawnSecretListening thank you @Bose x https://t.co/5PTzSAxi9I https://t.co/MK9vFWmDqE +05/23/2018,Musicians,@ShawnMendes,Limited tee collection available now x https://t.co/KEz4lLaNb4 https://t.co/J7oLKIO5Tx +05/23/2018,Musicians,@ShawnMendes,2 days until #ShawnMendesTheAlbum x https://t.co/C3oXJ4AOKF https://t.co/nkJKlfkGwW +05/23/2018,Musicians,@ShawnMendes,"New song #Nervous from the album, go download it now https://t.co/YWLwOFozbG" +05/23/2018,Musicians,@ShawnMendes,#Nervous out now x https://t.co/w1znlD9iIP https://t.co/7U6YiFNZJG +05/23/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum - “#Nervous” x Preorder now to get it at midnight https://t.co/C3oXJ4AOKF https://t.co/4r43dinxfK +05/22/2018,Musicians,@ShawnMendes,RT @lightsondoshawn: I'm #Nervous #Nervous #Nervous #Nervous ... +05/22/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #Nervous #Nervous #Nervous +05/22/2018,Musicians,@ShawnMendes,#Nervous Midnight https://t.co/6gMUiyYcXS +05/22/2018,Musicians,@ShawnMendes,3 days until #ShawnMendesTheAlbum! Pre-order now to get #Nervous at midnight tonight x https://t.co/C3oXJ4AOKF https://t.co/0rv8HMpY0z +05/22/2018,Musicians,@ShawnMendes,RT @shawnsmusical: NERVOUS https://t.co/Gh89iLRnKW +05/22/2018,Musicians,@ShawnMendes,RT @aliciakeys: Calling every member of #TeamAlicia out there! 🌍 It's all led up to THIS! We need to work together to get @BrittonBuchanan… +05/21/2018,Musicians,@ShawnMendes,#Nervous comes out Wednesday! Get it when you preorder the album https://t.co/C3oXJ4SpCd https://t.co/27Xpuz1uOr +05/21/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum “In My Blood” x https://t.co/C3oXJ4AOKF https://t.co/t2d5SR4rV7 +05/21/2018,Musicians,@ShawnMendes,Performing new music live outside from Rockefeller Plaza on @TODAYshow June 1st 8am ET. Come watch! x #ShawnTODAY https://t.co/kUUXYBpMmg +05/21/2018,Musicians,@ShawnMendes,"RT @billboard: Shawn Mendes & Khalid put on a powerful performance of ""Youth"" at the #BBMAs https://t.co/giS3J9FphU https://t.co/8IJYbEbS1Q" +05/21/2018,Musicians,@ShawnMendes,RT @ShawnAccess: VIP Ticketless Upgrades for all #ShawnMendesTheTour dates start today at 4pm local time! https://t.co/kydnQeKowN +05/21/2018,Musicians,@ShawnMendes,Love you. +05/21/2018,Musicians,@ShawnMendes,RT @TwitterMoments: The Marjory Stoneman Douglas Show Choir joined @ShawnMendes and @thegreatkhalid on stage for a powerful performance at… +05/21/2018,Musicians,@ShawnMendes,RT @BBMAs: Chills from this moving @ShawnMendes & @thegreatkhalid performance. A huge thank you to the Marjory Stoneman Douglas Show Choir… +05/21/2018,Musicians,@ShawnMendes,RT @BBMAs: 🌹🌹🌹 + 🎸+ @ShawnMendes + 'In My Blood' = 😍😍😍 #BBMAs #SHAWN_BBMAs https://t.co/a11LIery6G +05/20/2018,Musicians,@ShawnMendes,"RT @BBMAs: .@ShawnMendes looks AMAZING tonight, right Mendes Army?🤘#SHAWN_BBMAs https://t.co/zGw29Kt09f" +05/20/2018,Musicians,@ShawnMendes,Tonight tune in @BBMAs will be performing twice x +05/20/2018,Musicians,@ShawnMendes,You can watch #ShawnOneNightOnly now on @AppleMusic! x https://t.co/SCsUptGNIc https://t.co/af0eFHET96 +05/19/2018,Musicians,@ShawnMendes,https://t.co/EQP4CGerBG +05/19/2018,Musicians,@ShawnMendes,North America shows are onsale now! x https://t.co/qAZaGlclFv https://t.co/OUMPLDczC2 +05/19/2018,Musicians,@ShawnMendes,North America Public onsales start today at 10am local time x https://t.co/qAZaGlclFv +05/18/2018,Musicians,@ShawnMendes,UK & Europe shows are onsale now & 2nd Amsterdam date added! x https://t.co/qAZaGlclFv” https://t.co/E75H4LZtsH +05/18/2018,Musicians,@ShawnMendes,#InTheMorning out now x https://t.co/WK9bG4FNtr https://t.co/ujsrHQ1VTT +05/18/2018,Musicians,@ShawnMendes,#ShawnOneNightOnly live now x https://t.co/NGnWWPIYMX https://t.co/jktMrt6dvw +05/18/2018,Musicians,@ShawnMendes,"Watch now! X #ShawnOneNightOnly + +YouTube: https://t.co/NGnWWPIYMX +AppleMusic: https://t.co/vdX2l1OMKz https://t.co/vwmgB4iKvJ" +05/18/2018,Musicians,@ShawnMendes,RT @Shawn_M_Up: Tickets for #ShawnOneNightOnly 😻 https://t.co/jjuHtq9Qxg +05/18/2018,Musicians,@ShawnMendes,#InTheMorning Midnight x https://t.co/v5Uy7HRC8W +05/17/2018,Musicians,@ShawnMendes,RT @ShawnMendes: #InTheMorning Midnight x https://t.co/TG6wSl3Kfq +05/17/2018,Musicians,@ShawnMendes,#InTheMorning Midnight x https://t.co/TG6wSl3Kfq +05/17/2018,Musicians,@ShawnMendes,"Live concert + Q&A with @applemusic starts at 8:30PM PT tonight! Send me your questions with #ShawnOneNightOnly + +Wa… https://t.co/CT9ZSumyaJ" +05/17/2018,Musicians,@ShawnMendes,North America ShawnAccess presale for #ShawnMendesTheTour is happening now x https://t.co/qAZaGlclFv https://t.co/58ERDgsnrs +05/17/2018,Musicians,@ShawnMendes,"North America ShawnAccess presale starts today at 10am local time x +https://t.co/qAZaGlclFv" +05/17/2018,Musicians,@ShawnMendes,UK & Europe General fan presales for #ShawnMendesTheTour are happening now x https://t.co/qAZaGlclFv https://t.co/onwultjRlc +05/17/2018,Musicians,@ShawnMendes,UK & Europe General fan presale starts today at 10am local time x https://t.co/qAZaGlclFv +05/17/2018,Musicians,@ShawnMendes,#InTheMorning Friday! x https://t.co/raYGOCuQU8 https://t.co/6rWdCicnfa +05/17/2018,Musicians,@ShawnMendes,RT @ShawnAccess: Tomorrow make sure to tune into @ShawnMendes #OneNightOnly with @AppleMusic at 7:45pm PT for a live performance & special… +05/16/2018,Musicians,@ShawnMendes,Performing on @TheEllenShow tomorrow x https://t.co/uIMddyaodY +05/16/2018,Musicians,@ShawnMendes,Woa. Next friday. +05/16/2018,Musicians,@ShawnMendes,"FirstAccess presale for the UK & EU, & O2 Priority presale for the UK are happening now x https://t.co/qAZaGlclFv https://t.co/cAS2kUR3MB" +05/16/2018,Musicians,@ShawnMendes,Priority tickets for #ShawnMendesTheTour UK dates with @O2Music are on sale now at https://t.co/SZzStwEme2 https://t.co/6T7aDVBwqa +05/16/2018,Musicians,@ShawnMendes,"FirstAccess presale for UK & EU, & O2 Priority presale for the UK, start today 10am Local! Details at https://t.co/qAZaGlclFv" +05/16/2018,Musicians,@ShawnMendes,Thank youuuuuu ❤️❤️❤️ https://t.co/MTsBWMC1PR +05/15/2018,Musicians,@ShawnMendes,"RT @ShawnAccess: North America! For fans that did not get into the FirstAccess or General Presale via Verified Fan, we’re releasing more ti…" +05/15/2018,Musicians,@ShawnMendes,Thank you @BBMAs! Vote with #IVoteShawnBBMAs or at https://t.co/yMF4IJLaMF +05/14/2018,Musicians,@ShawnMendes,Thursday night performing new music + doing a Q&A live from the John Anson Ford Theater in LA for @applemusic… https://t.co/XWnVoWSu5Z +05/13/2018,Musicians,@ShawnMendes,Love you guys forever! X https://t.co/q1X5soguB2 +05/13/2018,Musicians,@ShawnMendes,All North America General Fan presales for #ShawnMendesTheTour are happening now x https://t.co/qAZaGltX45 https://t.co/4xRNKZwow2 +05/13/2018,Musicians,@ShawnMendes,North America General Fan and Merch presales for #ShawnMendesTheTour start today at 10am & 12pm local time x https://t.co/qAZaGltX45 +05/12/2018,Musicians,@ShawnMendes,All North America FirstAccess presales for #ShawnMendesTheTour are happening now x at https://t.co/qAZaGltX45 https://t.co/L4ePS7znmz +05/11/2018,Musicians,@ShawnMendes,#InMyBloodAcoustic out now x https://t.co/e45V3Uovu9 https://t.co/bklV43GFJi +05/10/2018,Musicians,@ShawnMendes,Thank you @wonderlandmag @TommyHilfiger. Preorder the summer issue at https://t.co/r37Fyv1ejc x https://t.co/3RPQt1j8lG +05/10/2018,Musicians,@ShawnMendes,RT @youthkhalid: @ShawnMendes we love manny THE legend himself +05/10/2018,Musicians,@ShawnMendes,"Old mans bday today, always learning from you. Thank you for being a friend as much as a dad. Love you x" +05/10/2018,Musicians,@ShawnMendes,❤️❤️❤️❤️ +05/09/2018,Musicians,@ShawnMendes,RT @ShawnAccess: You can now buy all of the limited tour prints to access a special merch presale at https://t.co/giwl9RtBJ9 https://t.co/w… +05/09/2018,Musicians,@ShawnMendes,Shot this amazing ad with @O2music for #ShawnMendesTheTour UK. Get priority presale ticket info at… https://t.co/s47YKzlG6t +05/09/2018,Musicians,@ShawnMendes,Sign up for verified fan for the North America presales here x https://t.co/GRdPFzAUMT +05/08/2018,Musicians,@ShawnMendes,"Promise for any cities not yet announced, there will be many more dates added later x #ShawnMendesTheTour" +05/08/2018,Musicians,@ShawnMendes,Ticket presales for #ShawnMendesTheTour start this weekend. All info at https://t.co/qAZaGltX45 https://t.co/N2DeBvOiEk +05/08/2018,Musicians,@ShawnMendes,#ShawnMendesTheTour dates & ticket info all at https://t.co/qAZaGltX45 https://t.co/uXiaIvTYIm +05/08/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnMendesTheTour announces today. Follow along for each date reveal on @ShawnMendes’ IG story & here on @shawnaccess. A… +05/08/2018,Musicians,@ShawnMendes,#ShawnMendesTheTour today x https://t.co/xdbFX7j2OY +05/06/2018,Musicians,@ShawnMendes,it’s crazy to me that you can physically feel your heart skip when you see or hear something you really care about +05/04/2018,Musicians,@ShawnMendes,#Youth hoodie + Album collection available now. Will be donating a portion of all Youth collection sales to… https://t.co/980dK0JyYy +05/04/2018,Musicians,@ShawnMendes,https://t.co/iQZ2NgWg4D +05/04/2018,Musicians,@ShawnMendes,All the love on Youth! Thank you SO much! So proud of it!! X +06/26/2018,Musicians,@BritneySpears,I think he knew it was coming 😏🙃🙃🤓🙄 https://t.co/ciqC7lDYBI +06/26/2018,Musicians,@BritneySpears,😴🧚‍♀️✨🌸 🎀 https://t.co/ZEWlkEZkW0 +06/25/2018,Musicians,@BritneySpears,🐠🐠🐠 https://t.co/CAq44sJYWh +06/19/2018,Musicians,@BritneySpears,"Happy, happy birthday to my beautiful niece, Maddie!! Can’t believe this sweet girl is 10 years old 💕 https://t.co/zNchaLjgeG" +06/17/2018,Musicians,@BritneySpears,Wishing my daddy a very happy #FathersDay today!!! I love you! ❤️ +06/12/2018,Musicians,@BritneySpears,Love > Hate 🌈 We will not forget those we lost 2 years ago in Orlando 💛 #OrlandoUnited https://t.co/aah5fCRrXp +06/11/2018,Musicians,@BritneySpears,Great trip to Miami! Thank you @TheSetai 🌞 #thankyouforthisgift https://t.co/y8FIXVp5hk +06/11/2018,Musicians,@BritneySpears,Having the best time with my other half ❤️ https://t.co/9z58FfI3Rn +06/10/2018,Musicians,@BritneySpears,"Sending all my love to everyone at #LAPride today!! And wishing a very happy Pride Month to the brave, strong, and… https://t.co/Mk7tDfXojO" +06/09/2018,Musicians,@BritneySpears,Look who I found in Miami 🍎😻 https://t.co/XvVE5z4xnq +06/07/2018,Musicians,@BritneySpears,Magic is everywhere https://t.co/7Sd81F2AJT +06/07/2018,Musicians,@BritneySpears,When you make your kids your famous ice cream sundae and forget to put their favorite thing in it... the banana...… https://t.co/Qw1YfHaI1H +06/06/2018,Musicians,@BritneySpears,Me and Pres having a chill day at our favorite spot in Miami! 🎨🍒🍇🍎🌸🌼☘️🍀🐠🐯🐭👙👗👡 https://t.co/TeMmTLnBwD +06/04/2018,Musicians,@BritneySpears,"Cheering on my home away from home, Las Vegas in the #StanleyCup Finals! Best of luck to the @GoldenKnights in Game… https://t.co/zkSMHJk4qy" +06/04/2018,Musicians,@BritneySpears,Let’s play 🏀 https://t.co/tabt1uCTTP +06/04/2018,Musicians,@BritneySpears,My first photo with Portrait Mode just before having sushi with friends last night!!!!! 🍎👛🍎👠🍀🍏⭐️🌸🐯 https://t.co/rmKPapkEd1 +06/02/2018,Musicians,@BritneySpears,👛😜😜👛 #FBF https://t.co/rymGXwzvzn +06/01/2018,Musicians,@BritneySpears,It’s been way too long since I’ve seen these boys! Had an amazing time on set 😜😜🍎🍎👠🍎 https://t.co/pTyYjWjP4p +06/01/2018,Musicians,@BritneySpears,"Don’t you just love Pretty Woman!! +🍀🍏🍀🍎👠🍎 https://t.co/LYc4JdBzLL" +05/30/2018,Musicians,@BritneySpears,🍏🍎🍏 https://t.co/TVh2P3h40I +05/29/2018,Musicians,@BritneySpears,Love when we go to our favorite spot on Sundays 💕🥞 The boys are bigger than me now!!!!! 😜 https://t.co/p2EGNVFZrj +05/29/2018,Musicians,@BritneySpears,"This is great! + +🎥: @aaroncmusic_ https://t.co/d7jUontjc6" +05/25/2018,Musicians,@BritneySpears,"Don’t you just love jokes +🙃🧝‍♀️😂 https://t.co/RY0dhejFZP" +05/16/2018,Musicians,@BritneySpears,Painting feels so therapeutic to me! Getting to do this with my boys on a beautiful day like this is such a blessin… https://t.co/GWeVaECtyF +05/15/2018,Musicians,@BritneySpears,Love watching these boys succeed when they put their minds to something... even if they cheat on their pull ups 😉🙈🙊 https://t.co/3Z6HrRQ776 +05/15/2018,Musicians,@BritneySpears,Nothing makes me happier as a mom than watching these boys grow and smile and laugh!! They are my world and I love… https://t.co/CH6LRF9YWQ +05/05/2018,Musicians,@BritneySpears,Perfect start to the weekend!! 🍳🥓🍽 https://t.co/VphyJ91gcn +05/05/2018,Musicians,@BritneySpears,https://t.co/jTX03JvhuY +05/04/2018,Musicians,@BritneySpears,"👒👒👒 #fbf +📷: Gilles Bensimon https://t.co/2XvfKnnD0c" +05/04/2018,Musicians,@BritneySpears,"I’m so grateful for the guidance my mother has given me throughout my life! My intuition, will to be stronger and l… https://t.co/U1csZfN6OA" +05/03/2018,Musicians,@BritneySpears,Stronger together 👯‍♀️🍏👯‍♀️ https://t.co/wtXt10SclD +04/30/2018,Musicians,@BritneySpears,💃🏼💃🏼💃🏼 https://t.co/SR82xbZVi8 +04/28/2018,Musicians,@BritneySpears,#FBF 👠👠👠 photo by Steven Klein https://t.co/sGz207mCEL +04/27/2018,Musicians,@BritneySpears,"🎩 #tbt +📷: @EllenVUnwerth https://t.co/UPsSl2wv42" +04/25/2018,Musicians,@BritneySpears,RT @COTA: Gimme more. Tickets on sale Friday at https://t.co/JafXlc8WRR https://t.co/QjfBBgldUN +04/24/2018,Musicians,@BritneySpears,love getting to watch my boys at the skate park!! https://t.co/7m1mVZG3qY +04/24/2018,Musicians,@BritneySpears,Switching up my workout routine in the gym as I get ready for the #PieceOfMe Tour!! 🎀 https://t.co/dqZJkHzsRs +04/24/2018,Musicians,@BritneySpears,Sending my love to the people of Toronto and all those affected ❤️ https://t.co/sJW1D7Mr3F +04/21/2018,Musicians,@BritneySpears,This video shoot was incredible!!! What dreams are made of... #Slave4U https://t.co/XIvSzazUwH +04/19/2018,Musicians,@BritneySpears,Happy birthday to my big brother Bryan!!! He means the world to me and I hope he has the best b-day ever!!!! https://t.co/5SRfYHJckO +04/19/2018,Musicians,@BritneySpears,I think it's impossible for me to go a day without dancing 😜🌹 https://t.co/TQnNSZWdIU +04/18/2018,Musicians,@BritneySpears,RT @TheBritneyArmy: Don't miss @britneyspears on the @GLAAD Awards airing tonight on @logotv at 8/7c!! #GLAADawards https://t.co/9FnnSBQG0s +04/18/2018,Musicians,@BritneySpears,🍎✏️🍎✏️🍎 https://t.co/gBVJhtw7oO +04/17/2018,Musicians,@BritneySpears,🌸 https://t.co/DxjtIUjMpW +04/16/2018,Musicians,@BritneySpears,Channeling my inner Aretha Franklin - the woman has got so much soul!!!! ⭐️🍎⭐️ https://t.co/peq2KiOV0M +04/14/2018,Musicians,@BritneySpears,https://t.co/YaaKwCz6pT +04/14/2018,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/vHKsU8JVDl +04/13/2018,Musicians,@BritneySpears,some days you just got to dance! https://t.co/Lhc3s9C894 +04/13/2018,Musicians,@BritneySpears,What an incredibly moving evening celebrating love and acceptance at the #GLAADawards! I'm so proud to be an ally o… https://t.co/rhRa0fXRZx +04/13/2018,Musicians,@BritneySpears,✨@glaad awards tonight ✨ #GLAADawards https://t.co/dO5CBc1Txx +04/12/2018,Musicians,@BritneySpears,I could not be more excited to welcome baby Ivey to this world. Congrats to @jamielynnspears and the whole family -… https://t.co/ZNmLFxgnTS +04/05/2018,Musicians,@BritneySpears,"RT @glaad: Enter to win a chance to go to the #GLAADawards and see @britneyspears, @iamwandasykes, Jim Parsons and MORE! https://t.co/AufjU…" +04/04/2018,Musicians,@BritneySpears,Wishing my sister @jamielynnspears a very happy 27th birthday today!! 🎀💕 +03/31/2018,Musicians,@BritneySpears,Heaven gained a beautiful angel this week with the passing of Christopher Metsker. His strength and fighting spirit… https://t.co/LsAGbiBLGK +03/30/2018,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/73RuOK6HXc +03/26/2018,Musicians,@BritneySpears,Just want to wish happy birthday to my friend @iamstevent!!! You're a true rock star and inspiration!! Love you! 💕 #HappyBDayStevenTyler +03/24/2018,Musicians,@BritneySpears,"⭐️⭐️ +📷: Mark Seliger https://t.co/nRBkQC133x" +03/24/2018,Musicians,@BritneySpears,Found my white booty shorts 😉😉😉😉 https://t.co/CLcSChcVsm +03/23/2018,Musicians,@BritneySpears,🎀🌹🎀 https://t.co/wae4zvI3Zi +03/22/2018,Musicians,@BritneySpears,Support the #CleanWaterHere2018 campaign to help give children access to safe drinking water. Everyone deserves… https://t.co/k6zJei3qA5 +03/22/2018,Musicians,@BritneySpears,🌹 #tbt https://t.co/mxC3G0Usin +03/20/2018,Musicians,@BritneySpears,"La Collection Memento No2 from @KENZO +📷: @peterlindbergh #kenzolovesbritney #collectionmemento2 https://t.co/gC8C6WXAcB" +03/20/2018,Musicians,@BritneySpears,So excited to announce my new campaign for @KENZO’s La Collection Memento No2 shot by @peterlindbergh!!!… https://t.co/tMBr1tPvni +03/19/2018,Musicians,@BritneySpears,"☕️☕️☕️ +🎨: Make and Tell https://t.co/AVU0YEcdr3" +03/16/2018,Musicians,@BritneySpears,"Feeling so inspired by #SHINE, a song written and performed by students from Stoneman Douglas who survived the trag… https://t.co/NOW6SBCVsA" +03/16/2018,Musicians,@BritneySpears,"🎀🌹🎀 #tbt +📷: Mark Liddell https://t.co/tKLj6gMff7" +03/15/2018,Musicians,@BritneySpears,👒👯‍♀️☘️🕊☘️👯‍♀️👒 https://t.co/440RgEvlQh +03/15/2018,Musicians,@BritneySpears,🎀🎀🎀 https://t.co/Xv6H2DOKjz +03/09/2018,Musicians,@BritneySpears,"just give me a kiss, like this #tbt https://t.co/q4PaPhm2X3" +03/09/2018,Musicians,@BritneySpears,Talk this way https://t.co/CvB5DSB4t9 +03/08/2018,Musicians,@BritneySpears,Walk this way https://t.co/epO9LdGL3S +03/08/2018,Musicians,@BritneySpears,"💕#InternationalWomensDay +🎨: Kasi Turpin https://t.co/E47utGRwQt" +03/05/2018,Musicians,@BritneySpears,Sometimes you’re just trying to get out the door and go to your favorite restaurant when your girlfriend pulls out… https://t.co/7Fwc9JOKMQ +03/03/2018,Musicians,@BritneySpears,Filmed this with the boys and just noticed the guy on the TV says “Dream Within A Dream” at the beginning... that p… https://t.co/WvmG8lP6Ao +03/03/2018,Musicians,@BritneySpears,"Just a little game of tennis with my man!!! Not professional, but it’s really fun!!!!!!!!!!😉😉😉😉😉 https://t.co/JJjrrfmgcx" +03/03/2018,Musicians,@BritneySpears,🕊🕊🕊 https://t.co/bxi51ryazi +03/03/2018,Musicians,@BritneySpears,Going out tonight!! Found my red dress!!!!! 👠👠👠 https://t.co/DMGgKtP2Gv +02/27/2018,Musicians,@BritneySpears,Who doesn’t love Sinatra?? https://t.co/kZBXPzEA67 +02/27/2018,Musicians,@BritneySpears,…and this is the after! Thank you to all the people behind the scenes who help us look and feel beautiful - you are… https://t.co/G5ckccZtTw +02/27/2018,Musicians,@BritneySpears,Had to get a quick shot wearing my favorite dress right before I went into hair and makeup to get ready for the… https://t.co/ygWftHlYmB +02/26/2018,Musicians,@BritneySpears,Went hiking on one of my favorite trails and I looked up and saw this glow and it warmed my heart!!! 💖 https://t.co/HizD6bCvCv +02/23/2018,Musicians,@BritneySpears,Quite the goal by @jocelyneUSA17!! Congrats to the women’s @usahockey team on bringing home the #Gold!! #Olympics +02/17/2018,Musicians,@BritneySpears,"So proud of #TeamUSA!! Hey @guskenworthy, gimme, gimme more on the slopes today!! #ItsGusBitch 👍😉⛷" +02/17/2018,Musicians,@BritneySpears,I posted my leap over a year ago and had to see if I could go higher... well... I did!!! But I really should take a… https://t.co/yu0aUxzEWs +02/16/2018,Musicians,@BritneySpears,Who doesn't love to twirl all day?? 😉😉😉 https://t.co/z7gpLUb9it +02/16/2018,Musicians,@BritneySpears,"Hey @Adaripp.... I just wanted let you know that I am a fan, I am not in denial, and that you are THE MOST FUN!! Ke… https://t.co/0JrATIxdrO" +02/15/2018,Musicians,@BritneySpears,Just heard the tragic news about Florida. My heart breaks for the students of Marjory Stoneman Douglas High School.… https://t.co/0fHsqfWGky +02/14/2018,Musicians,@BritneySpears,Don't underestimate the power of batwoman!!! #happyvalentinesday ❤️❤️❤️ https://t.co/DXVwUDGd1B +02/13/2018,Musicians,@BritneySpears,Honored to be receiving the Vanguard Award at the @GLAAD Media Awards this year! The LGBTQ community means the abso… https://t.co/MkgvjHXLrq +02/09/2018,Musicians,@BritneySpears,Excited to announce that the talented @pitbull will be joining me on select #PieceOfMe shows this summer!! AND we’v… https://t.co/Bjrv9DpUl9 +02/09/2018,Musicians,@BritneySpears,Great day behind the lens!!!! https://t.co/1ATJ784pWD +02/08/2018,Musicians,@BritneySpears,Gearing up for summer!!! ⭐️🎀⭐️ https://t.co/91pzIh1phC +02/07/2018,Musicians,@BritneySpears,Wow! Thank you #HollywoodBeautyAwards!!! So honored to have Fantasy In Bloom named #FragranceoftheYear 💖 https://t.co/AMm9eW0auV +02/06/2018,Musicians,@BritneySpears,📷: Thierry Le Gouès https://t.co/2kxtfz5DNQ +02/05/2018,Musicians,@BritneySpears,I’ve been with this man for over a year... everyday he inspires me to be a better person and that makes me feel lik… https://t.co/nf2J5g2Ksf +02/01/2018,Musicians,@BritneySpears,Some things are just timeless 😉 Thank you for letting me be apart of your story @Pepsi! Watch the #SBLII commercial… https://t.co/1F7KSBx8CI +01/31/2018,Musicians,@BritneySpears,"YES!!! That is right @LouMTaylor!! You do step up every single day, and so do so many other ladies in the music bus… https://t.co/lq4tbQi6Mh" +01/30/2018,Musicians,@BritneySpears,This was from our lil trip to see Aladdin. What a great show!!!! https://t.co/1qFJwWpXpD +01/30/2018,Musicians,@BritneySpears,🎀 https://t.co/g3JRl9jEyA +01/30/2018,Musicians,@BritneySpears,🎀🍎🎀 https://t.co/zRpoOCJho9 +01/29/2018,Musicians,@BritneySpears,"I love cardio and sweating, but over doing anything just isn’t good. It’s been nice working out a little less these… https://t.co/iRyBEVmTEB" +01/27/2018,Musicians,@BritneySpears,Tickets and VIP packages are on sale now for all of the #PieceOfMe dates! 💖 https://t.co/SBF4WxXT31 https://t.co/qW3hTpGENk +01/26/2018,Musicians,@BritneySpears,Can’t wait for this summer!!!! Tickets for select #PieceOfMe dates will go on sale on Friday! All the details are a… https://t.co/lCntLyhmjN +01/25/2018,Musicians,@BritneySpears,RT @LucasMacha: Finally Britney is bringing her tour to Europe! 🔥👍🏻 Join the @britneyspears Tour Club so you’ll have chance to buy presale… +01/25/2018,Musicians,@BritneySpears,Awww thank you!!! See you this summer ❤️ https://t.co/y5RXDICW7X +01/25/2018,Musicians,@BritneySpears,@JericaSwag see you in the big apple!! 🍎🍎🍎✨💜 +01/25/2018,Musicians,@BritneySpears,RT @IfUSeekDrew: just joined the @britneyspears Tour Club so that i can score fan presale tickets for #PieceOfMe bright and early tomorrow… +01/25/2018,Musicians,@BritneySpears,UK + Europe... in case you missed this while you were sleeping❤️✨ https://t.co/EXaohqPzMo +01/24/2018,Musicians,@BritneySpears,Can’t wait to get back on the road this summer #PieceOfMe 🍏🍏🍏 https://t.co/fzcfD7z5Vp +01/23/2018,Musicians,@BritneySpears,"I'm so excited to announce that we're bringing the #PieceOfMe tour to select cities in North America, Europe and th… https://t.co/GP2aEctF0n" +01/18/2018,Musicians,@BritneySpears,🌊🌊🌊 #tbt https://t.co/wCppFRkDnO +01/18/2018,Musicians,@BritneySpears,My son is fantastic! 🎉🎉 https://t.co/6V7a61X8PF +01/15/2018,Musicians,@BritneySpears,Proud mommy moment! https://t.co/KeRYfwAnWv +01/14/2018,Musicians,@BritneySpears,Seriously though... what more could you ask for? 🔥👒😜 Nachos all the way!! https://t.co/EmUOf51FBl +01/11/2018,Musicians,@BritneySpears,🤓👠📚 https://t.co/kDXpNqtq8f +01/10/2018,Musicians,@BritneySpears,🐠🦋🐠 So much fun at this beautiful place https://t.co/9rKsn8Tp7u +01/07/2018,Musicians,@BritneySpears,👒🎀 https://t.co/LZoWB1mGmP +01/07/2018,Musicians,@BritneySpears,🏖🏖 https://t.co/aSEh0URVfA +01/06/2018,Musicians,@BritneySpears,👒🏖👒 Just a sprinkle of paradise!!!!!! https://t.co/ZEUPRDixJ8 +01/03/2018,Musicians,@BritneySpears,Me and my boys enjoying the warm weather!!! 🕶🌴🌊⭐️ https://t.co/3ElQb1lg5R +01/03/2018,Musicians,@BritneySpears,"Thank you, Vegas ❤️ +📷: Randee St. Nicholas https://t.co/MAAgeqN9V1" +01/01/2018,Musicians,@BritneySpears,2018 shenanigans with Sam 🤷‍♀️👒🤷‍♀️ https://t.co/1zGePhJoyM +01/01/2018,Musicians,@BritneySpears,"It’s almost showtime! I just want to say thank you to the #PieceOfMe cast and crew, the city of Las Vegas, and all… https://t.co/lKpeQgL5zT" +12/31/2017,Musicians,@BritneySpears,"Tonight is the night! Saying goodbye both to Vegas and 2017! It’s bittersweet, but I’m looking forward to an amazin… https://t.co/rZAUkaHGsc" +12/30/2017,Musicians,@BritneySpears,"RT @TheBritneyArmy: Get ready for @NYRE with the official @spotify playlist featuring @britneyspears!!! 🎉 #BRITNEYxRockinEve +https://t.co/O…" +12/29/2017,Musicians,@BritneySpears,Enjoying the holiday break! 👟🍎 https://t.co/iht7brTk9f +12/24/2017,Musicians,@BritneySpears,Maddie is going to be the best big sister!!! So happy for you @jamielynnspears!!!! Love you all sooo much!!! 💕 https://t.co/aTQnCrmh6V +12/24/2017,Musicians,@BritneySpears,Awwww your family is so adorable!!! Merry Christmas to you all ❤️🎄 https://t.co/Y83hpTUhBH +12/23/2017,Musicians,@BritneySpears,We are all Dreamers ✨ Tell Congress to pass the #DreamAct https://t.co/VRw2xORG97 https://t.co/TjAbL8UiYi +12/22/2017,Musicians,@BritneySpears,Denmark!! See you at @Smukfest on August 8th!! ✨ #SMUK18 https://t.co/MI3yu6DKq7 +12/21/2017,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/txYPEpxIJK +12/21/2017,Musicians,@BritneySpears,Going to be ending 2017 with the last #PieceOfMe show ever and a special performance on @NYRE!! Tune in to ABC on 1… https://t.co/ouavykB0dD +12/19/2017,Musicians,@BritneySpears,https://t.co/7dmZe9a0QA +12/11/2017,Musicians,@BritneySpears,Today is the last day to enter to win a trip for 2 to Las Vegas and join me for the final #PieceOfMe show! Don’t mi… https://t.co/lDIonrOsdT +12/06/2017,Musicians,@BritneySpears,👠 https://t.co/h0XVqESSPI +12/05/2017,Musicians,@BritneySpears,👒👠👒 https://t.co/1V1s3Wz3Pf +12/03/2017,Musicians,@BritneySpears,"Thanks again for all the birthday love yesterday!!! For those who donated to the LSBA, show me a screenshot of your… https://t.co/7GivtUXnu2" +12/03/2017,Musicians,@BritneySpears,@TheEllenShow You always crack me up!!! Thanks Ellen!! ❤️ +12/03/2017,Musicians,@BritneySpears,@MileyCyrus Thanks Miley ❤️❤️❤️ +12/03/2017,Musicians,@BritneySpears,@charli_xcx Thanks girl!!!!! ✨ +12/03/2017,Musicians,@BritneySpears,@jamielynnspears Thanks sis!!! Love you 💕🎀 +12/02/2017,Musicians,@BritneySpears,I decided my birthday wish this year will be to make sure we help the Louisiana School Boards Association as much a… https://t.co/YKWTw71Qk2 +12/02/2017,Musicians,@BritneySpears,Couldn’t ask for a better way to kick off my birthday ❤️🎂 https://t.co/CnEXXw8lYB +12/02/2017,Musicians,@BritneySpears,❤️🌎 #WorldAIDSDay https://t.co/2xa2rLuwJN +12/01/2017,Musicians,@BritneySpears,🎄🎁👠🎄 https://t.co/d3Q5joFPGK +11/30/2017,Musicians,@BritneySpears,🎄🌹 https://t.co/2gWD2RDZ5V +11/28/2017,Musicians,@BritneySpears,Don’t miss your chance to hang out with me at the final #PieceofMe show in Vegas!! Donate to the Louisiana School B… https://t.co/jzUuR8HgA4 +11/23/2017,Musicians,@BritneySpears,My favorite boys at my house for Thanksgiving!!!! 🦃🦃 https://t.co/qwMDKEjFST +11/23/2017,Musicians,@BritneySpears,Happy Thanksgiving!!!! 🦃 https://t.co/h0RCDpve0i +11/23/2017,Musicians,@BritneySpears,Don’t you just love getting ready for the holidays?? I think I need another pumpkin spice latte 😜 ☕️ https://t.co/N6H687PBKA +11/22/2017,Musicians,@BritneySpears,Found this clip from a photoshoot with the kiddos from a few years ago... it got a little silly 🎀🎀🎀🍎🍎🍎 https://t.co/vwPdR55vaN +11/22/2017,Musicians,@BritneySpears,Can’t believe it’s been a year since the #SlumberParty video was released! This was my favorite scene and outfit!! https://t.co/7YzWb2IZ5l +11/21/2017,Musicians,@BritneySpears,Went for a hike the other day and this was my view... so beautiful 👒👒 https://t.co/XfaUhyimxQ +11/16/2017,Musicians,@BritneySpears,Always have a ball with this crew... so much fun!! #TBT 🎉🌺🎀🌸🤓😉 https://t.co/2zydCeHzH4 +11/15/2017,Musicians,@BritneySpears,Support the LSBA for the chance to join me in Vegas on New Year's for the FINAL #PieceofMe show! Donate today for y… https://t.co/t4avdUnvoo +11/14/2017,Musicians,@BritneySpears,🌺🍎🌺🍎 https://t.co/IO1qfB8yjJ +11/13/2017,Musicians,@BritneySpears,😳😳😳😳 https://t.co/y5cwLGGOyi +11/13/2017,Musicians,@BritneySpears,"Wow!!! So honored to be named Best Resident Performer, Best Production Show, Best Bachelorette Party and Best Bache… https://t.co/nXngqInGPh" +11/10/2017,Musicians,@BritneySpears,Secret project 😜🍎🌺🍎 https://t.co/tMKdlpGfD8 +11/09/2017,Musicians,@BritneySpears,We’re getting creative at our house lately... 🌺🌸🌷🌸🌺🌸🌷 https://t.co/Ju853q1cCb +11/09/2017,Musicians,@BritneySpears,"Tammy Richardson, one of the amazing volunteers from the @NVCCF is nominated for the @NASCAR_FDN #BJFHAward! Let's… https://t.co/FMJ9FZgXVx" +11/06/2017,Musicians,@BritneySpears,I’m gonna marry chocolate 👠 https://t.co/H8zJlCQDNK +11/06/2017,Musicians,@BritneySpears,Support the LSBA for your chance to win a trip to hangout with me in Vegas and see the final #PieceOfMe show on NYE… https://t.co/bg2DgeEzpo +11/05/2017,Musicians,@BritneySpears,My heart breaks over the news coming out of Texas 💔 My prayers are with the Sutherland Springs community 🙏 +11/05/2017,Musicians,@BritneySpears,Donny always makes me smile and happy 💗🍎💗 #PieceOfMe https://t.co/0DgnYR5P6L +11/05/2017,Musicians,@BritneySpears,Honored to be part of the grand opening of the new @NVCCF campus today!! This amazing facility is going to help so… https://t.co/aTng5eKefU +11/03/2017,Musicians,@BritneySpears,Always love getting to spend an afternoon at one of my favorite spots in Los Angeles 💓💓👠👠🎀 #tbt https://t.co/ZvkXemDDlX +11/02/2017,Musicians,@BritneySpears,Wow!! Look at these gorgeous heels!! Thank you so much @JLo!!!! 💋👠💎#GiuseppexJennifer https://t.co/uG8DGAQMu4 +11/02/2017,Musicians,@BritneySpears,Vegas always looks so pretty from above! Happy to be back! See you guys tonight!!!! https://t.co/QwMGi7TLxE +11/01/2017,Musicians,@BritneySpears,Sending my love to NYC and those affected by yesterday's senseless tragedy ❤️ +10/31/2017,Musicians,@BritneySpears,"So in love with this puppy 🐶 +🎃🎃👻🎃🎃 #HappyHalloween https://t.co/eHXfmtiwlb" +10/31/2017,Musicians,@BritneySpears,LOVE IS BLIND. https://t.co/BlPHzN5SQF +10/31/2017,Musicians,@BritneySpears,It’s almost Halloween... wonder what clever neighborhood scares there will be.. 😜😜😜😜😜😜😜😜 Trick or treat!! https://t.co/lQsK0ceTh8 +10/30/2017,Musicians,@BritneySpears,🖤💛🖤💗 #Blackout10 https://t.co/5rBjdtE6pZ +10/25/2017,Musicians,@BritneySpears,Wanted some candy 🍭🍡🍬🍭🍬🍡🎂but I ate an acorn instead 🍩🦋🦄👙💋😜🤓 https://t.co/0MCHx3u1jW +10/25/2017,Musicians,@BritneySpears,These hoodies are a huge hit at our house!! 🍎🎀🍎🎀🍎 https://t.co/DI0kEtPhqr +10/20/2017,Musicians,@BritneySpears,"I did this shoot two years ago with my friend @glennnutley... I remember being on my knees, making sure my sons’ ha… https://t.co/cKKlyBKFjI" +10/20/2017,Musicians,@BritneySpears,👯🍎👯 https://t.co/P97a8gO7Vd +10/20/2017,Musicians,@BritneySpears,Let's stand together against bullying and show our support the LGBTQ youth for #SpiritDay! Go purple! 💜  … https://t.co/McyVhaZjTH +10/19/2017,Musicians,@BritneySpears,Back on stage tonight! See ya soon!!!! 😜🤓🍎🎉 https://t.co/zN6UJiqOjf +10/18/2017,Musicians,@BritneySpears,🍎🍎 https://t.co/dNir4yE5YF +10/16/2017,Musicians,@BritneySpears,🎹🎻🌹C L A S S I C   M O O D 🌹🎻🎹 with Sam #mylove https://t.co/abmZyutp1K +10/16/2017,Musicians,@BritneySpears,"RT @glaad: On October 19th, join millions and go purple to take a stand against bullying for #SpiritDay. 💜 + +Are you in? Take the pledge no…" +10/13/2017,Musicians,@BritneySpears,Sometimes you just gotta play!!!!!! 🤓😜💋💅🏻👩‍🎨🎨👯👗👛👒👠🦄🦋🐠🌹💥💥 https://t.co/T3ne9oCZyc +10/13/2017,Musicians,@BritneySpears,https://t.co/943cwqOfWw +10/13/2017,Musicians,@BritneySpears,More from last night ✨#PieceOfMe https://t.co/trOXzIBSVm +10/12/2017,Musicians,@BritneySpears,"Vegas, we felt your love and your strength last night ❤️ #VegasStrong https://t.co/r2Sao8WmkO" +10/10/2017,Musicians,@BritneySpears,Dinner with the boys!!! 🍔🍔🍔 https://t.co/MEVaOf7bP9 +10/09/2017,Musicians,@BritneySpears,❤️🐶🐻 https://t.co/uP1VvRLloL +10/06/2017,Musicians,@BritneySpears,We’ll get through this together ❤️ See you Wednesday #VegasStrong https://t.co/tKqeFMfTiy +10/05/2017,Musicians,@BritneySpears,❤️ #VegasStrong https://t.co/3FkeMRAzj6 +10/02/2017,Musicians,@BritneySpears,Completely heartbroken over the news this morning. Keeping the victims of last night's tragedy in Las Vegas in my p… https://t.co/T3mbcNPmie +09/29/2017,Musicians,@BritneySpears,"When the crew came to town, we dressed alike, blabbed all day and danced at night to ""Tootsee Roll""!!!!! Here's to… https://t.co/uFgZW9jHdF" +09/26/2017,Musicians,@BritneySpears,👠👠👠👠👠💄💄💄💄💄💄 https://t.co/jV3oZprsLH +09/26/2017,Musicians,@BritneySpears,👙👠👗👯💃🏼💅🏻👅 https://t.co/uxGCcfdGvF +09/25/2017,Musicians,@BritneySpears,So... I totally have a girl crush on @EWagmeister! She seems so sweet and I think she is absolutely lovely 🌟 +09/22/2017,Musicians,@BritneySpears,Keeping the people of Puerto Rico and those affected by #HurricaneMaria in my thoughts ❤️🇵🇷 +09/20/2017,Musicians,@BritneySpears,"You never know who you’re going to meet at dinner parties!! 🎉 Great night! So much fun, thank you Cade! 🍃🍃 https://t.co/jFR4pzwmwZ" +09/19/2017,Musicians,@BritneySpears,Sending my love to Mexico ❤️🇲🇽 #PrayForMexico #FuerzaMexico https://t.co/m0oYhRj4pp +09/19/2017,Musicians,@BritneySpears,Fun day yesterday at gymnastics! So excited to hear the Olympics are coming to LA in 2028... already getting in the… https://t.co/23IiVeHfFS +07/02/2018,Musicians,@LukeBryanOnline,"Share your worst, funniest or most creative sunburn using the hashtag #SunburnRepeat for a chance to win a Luke Bry… https://t.co/05fH9eHTFm" +06/29/2018,Musicians,@LukeBryanOnline,Thank you Raleigh #WhatMakesYouCountryTour https://t.co/k7ODtksJm7 +06/28/2018,Musicians,@LukeBryanOnline,Want to meet Luke backstage? Support the amazing work of St. Jude and enter to win: https://t.co/30rLjEY3II https://t.co/4TrXrNFDk0 +06/28/2018,Musicians,@LukeBryanOnline,Can't wait to see y'all on the #WhatMakesYouCountryTour this weekend https://t.co/bXpeEFlHAJ +06/28/2018,Musicians,@LukeBryanOnline,Can't wait to get back out on the farm. Tickets are on sale now for #FarmTour2018 https://t.co/RkUNIerfYw https://t.co/HJFjufysYM +06/27/2018,Musicians,@LukeBryanOnline,"RT @cb30music: When Brody forgets what today is 🤦🏻‍♂️ #NationalSunglassesDay +Listen to @LukeBryanOnline’s 🕶 playlist now to hear #LikeIts…" +06/27/2018,Musicians,@LukeBryanOnline,"RT @UMGNashville: We're celebrating #NationalSunglassesDay at the UMG Nashville office with @LukeBryanOnline! 😎☀️ + +Stream his custom playli…" +06/27/2018,Musicians,@LukeBryanOnline,"RT @carlypearce: Not only am I on @LukeBryanOnline's WHAT MAKES YOU COUNTRY tour this summer, but I am also on his #NationalSunglassesDay p…" +06/27/2018,Musicians,@LukeBryanOnline,"Hey Nashville, check out my Instagram Story to find out where we’ve hid some #SunriseSunburnSunset sunglasses. Post… https://t.co/ugMZUlkavB" +06/27/2018,Musicians,@LukeBryanOnline,We got your #NationalSunglassesDay playlist covered. Put on your shades and hit play. https://t.co/YhGXkJvtFD https://t.co/vKA2Xcw1gr +06/27/2018,Musicians,@LukeBryanOnline,"It’s #NationalSunglassesDay & we’ve got somethin’ for ya a little later on. Stay tuned, Nashville. https://t.co/BStBsIVLW4" +06/26/2018,Musicians,@LukeBryanOnline,"RT @mossycreekstore: #Repost @LukeBryanOnline (get_repost) +・・・ +Just happy. +@LukeBryanOnline with his first bass fishing his custom abelreel…" +06/22/2018,Musicians,@LukeBryanOnline,Want to win tickets to the What Makes You Country Tour? Enter Here: https://t.co/mFAYJeQN6A +06/22/2018,Musicians,@LukeBryanOnline,Good to be back in West Palm #WhatMakesYouCountryTour https://t.co/p3xh2bj1KP +06/21/2018,Musicians,@LukeBryanOnline,Can’t believe the #CrashMyParty video came out 5 years ago today. Always been one of my favorites. #TBT https://t.co/eyWBTuydVq +06/20/2018,Musicians,@LukeBryanOnline,Summertime is just fun and I wanted to showcase some people in my world doing just that. #SunriseSunburnSunset https://t.co/QEL1VkAQXH +06/19/2018,Musicians,@LukeBryanOnline,TOMORROW #SunriseSunburnSunset https://t.co/BYr2ovxJXm +06/19/2018,Musicians,@LukeBryanOnline,Want to win the ultimate Luke Bryan experience at Wrigley Field? Get Luke’s App to enter for your chance to win.… https://t.co/jKMJZHzu8P +06/18/2018,Musicians,@LukeBryanOnline,Excited to see where you go @MaddiePoppe https://t.co/tEj8jfMRgh +06/16/2018,Musicians,@LukeBryanOnline,Check out Luke’s gallery of Musical Notes to share with your dad on this #FathersDayWeekend. https://t.co/e95u09rsYN +06/16/2018,Musicians,@LukeBryanOnline,Everybody knew that was our summer. #SunriseSunburnSunset https://t.co/dO4UGbl2gJ +06/16/2018,Musicians,@LukeBryanOnline,RT @CMThot20: We're making waves at the @CCMFLive this weekend with your favorite stars @LukeBryanOnline @OldDominion @Michaelraymusic @Dea… +06/15/2018,Musicians,@LukeBryanOnline,Looking forward to playing the @iHeartRadio Music Festival in September. Tickets are on sale now:… https://t.co/FwWby73FfO +06/15/2018,Musicians,@LukeBryanOnline,"Thank you Columbia, MD #WhatMakesYouCountryTour https://t.co/Mlfo4yaOTr" +06/14/2018,Musicians,@LukeBryanOnline,We always love the #CMTawards. Thanks for having us. #tbt https://t.co/eV75fDEnsf +06/14/2018,Musicians,@LukeBryanOnline,Want to hang with Luke backstage in Lake Tahoe? Support the amazing work of St. Jude Children’s Research Hospital b… https://t.co/lROFRbTmXS +06/12/2018,Musicians,@LukeBryanOnline,Y’all ready for #FarmTour2018? Tickets are on sale now: https://t.co/RkUNIerfYw https://t.co/9vvLRgsWov +06/12/2018,Musicians,@LukeBryanOnline,Enjoyed surprising fans during #CMAFest with help from @Chevrolet. #ChevyCMA #Sponsored https://t.co/uQig7SREXF +06/12/2018,Musicians,@LukeBryanOnline,RT @TasteOfCountry: There's a lot of reasons why @LukeBryanOnline is crushing it. You may not have thought of this one 🤔 https://t.co/A3Ej5… +06/11/2018,Musicians,@LukeBryanOnline,What a great week at #CMAFest. #itstartswithME @ShearerPhoto @GettyImages https://t.co/MZg4kGWiVz +06/10/2018,Musicians,@LukeBryanOnline,Let’s close this thing out #CMAfest! https://t.co/WKVJAC4AV8 +06/10/2018,Musicians,@LukeBryanOnline,Don’t forget to tune in this morning on @cbssunday to get a BTS look at my @musiciansoncall visit. #MOConCBS +06/09/2018,Musicians,@LukeBryanOnline,Thanks for such an amazing day yesterday. Couldn’t do this with you. Love y’all. https://t.co/Nk7yh1Wbat +06/09/2018,Musicians,@LukeBryanOnline,Tune in to @CBSSunday 6/10 and go behind the scenes on my @musiciansoncall visit. What an honor to deliver the heal… https://t.co/btRc4MtrG4 +06/08/2018,Musicians,@LukeBryanOnline,"RT @dariusrucker: Had the best time stirring up a little trouble with my brothers @Jason_Aldean, @LukeBryanOnline and @CharlesKelleyLA! Y’a…" +06/07/2018,Musicians,@LukeBryanOnline,I want to meet one of y’all in Tahoe! Win tix to the show and meet me backstage—all by supporting St. Jude. ENTER:… https://t.co/txCWZYJbGM +06/07/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Warm up those vocal chords! 🎤🎶 Think you could be #TheNextIdol? Auditions are starting soon! 🚌 Visit https://t.co/2ruYWen… +06/07/2018,Musicians,@LukeBryanOnline,RT @TomCrean: The greatest orientation verse. EVER!! Our @universityofga student orientation group are not only great students but TALENTED… +06/06/2018,Musicians,@LukeBryanOnline,I’m taking over @Esquire’s IG Story tonight for the #CMTAwards. Follow along. https://t.co/dGetHWXpTI +06/06/2018,Musicians,@LukeBryanOnline,Luke’s new single #SunriseSunburnSunset is on @AppleMusic. Listen here: https://t.co/xc4MgBDcHs https://t.co/fvlZZsmuxx +06/05/2018,Musicians,@LukeBryanOnline,Thank you @Billboard for sharing my story and taking the time to get to know me. Appreciate the support and making… https://t.co/jPMghCwEkX +06/05/2018,Musicians,@LukeBryanOnline,"RT @extratv: Exclusive! We're with @lukebryanonline on his #whatmakesyoucountrytour, dishing on his kids, the #CMTawards & more! https://t.…" +06/04/2018,Musicians,@LukeBryanOnline,Excited to have #SunriseSunburnSunset as my next single. https://t.co/oysyFtvSHD +06/04/2018,Musicians,@LukeBryanOnline,"RT @TasteOfCountry: Massive, but somehow intimate 🤔 @LukeBryanOnline broke some personal records Saturday night! https://t.co/PGGcWzSqOQ" +06/03/2018,Musicians,@LukeBryanOnline,Shout out to Verizon Up for hooking fans up with stageside tickets tonight at MetLife. #VZup #ad… https://t.co/6IEBE4Xt6y +06/02/2018,Musicians,@LukeBryanOnline,"Harvest Time VIP Experiences are back. Get early entry, VIP viewing and restrooms plus charging station access and… https://t.co/LxyIzDiRp7" +06/02/2018,Musicians,@LukeBryanOnline,@Forever_TeamTLB You were great. So fun +06/01/2018,Musicians,@LukeBryanOnline,Presale tickets for #FarmTour2018 are available today. Get em’ https://t.co/irQYI9X5ef +05/31/2018,Musicians,@LukeBryanOnline,.@BayerUS presents the 10TH YEAR of Farm Tour. Fan club presale starts tomorrow. Join the Nut House now for access:… https://t.co/XodrNRsErM +05/30/2018,Musicians,@LukeBryanOnline,Get your votes in for #LightItUp at the #CMTAwards at https://t.co/M6IPRWGYjV https://t.co/u1JQtMf1iL +05/29/2018,Musicians,@LukeBryanOnline,#SunriseSunburnSunset Repeat. https://t.co/cJeN2efjCP +05/26/2018,Musicians,@LukeBryanOnline,We’ve got your summertime playlist covered. Listen to the #SunriseSunburnSunset playlist on @Spotify… https://t.co/sQ5EVYBRQ7 +05/25/2018,Musicians,@LukeBryanOnline,Our store exclusive. Available at https://t.co/Y67SPQEa2i @shorethingcigar https://t.co/TBcgztWM79 +05/25/2018,Musicians,@LukeBryanOnline,RT @BoogSciambi: Hey @LukeBryanOnline fans!!! How bout a chance to bid on two tix to his show at Fenway Park AND meet him!!! Proceeds go to… +05/25/2018,Musicians,@LukeBryanOnline,Luke Bryan’s Farm Tour presented by @Bayer is back! Tickets go on sale soon. #FarmTour2018 #HeresToTheFarmer… https://t.co/bLk2SRNuR0 +05/24/2018,Musicians,@LukeBryanOnline,Stay tuned... https://t.co/2kiUtbVuR9 +05/23/2018,Musicians,@LukeBryanOnline,"#ICYMI: I performed my new single, “Sunrise, Sunburn, Sunset” Monday night on #AmericanIdol. Listen here:… https://t.co/GgUyJLUUPk" +05/23/2018,Musicians,@LukeBryanOnline,I’ll be performing at this year’s @CMT Awards on June 6. Be sure to tune in. https://t.co/N6ijrcvAbo +05/23/2018,Musicians,@LukeBryanOnline,Excited that the 2019 @NFL Draft is coming to Nashville. Check out the official announcement here:… https://t.co/LmssrENwZk +05/23/2018,Musicians,@LukeBryanOnline,Tickets are on sale now for @CrashMyPlaya #5YearFiesta. See y’all in Mexico. https://t.co/fcD2EtVsFX +05/22/2018,Musicians,@LukeBryanOnline,Definitely learned the definition of WIG this season...@calebleemusic @maddiepoppe y’all are great together https://t.co/ozJzNX1aXE +05/22/2018,Musicians,@LukeBryanOnline,Amazing. https://t.co/V3lZeoJP5y +05/22/2018,Musicians,@LukeBryanOnline,Papa @lionelrichie has lost all control #AmericanIdol https://t.co/WD3WcFKD6z +05/22/2018,Musicians,@LukeBryanOnline,That was fun @GabbyBarrett_ #AmericanIdol #SunriseSunburnSunset https://t.co/CPaGaIemIJ +05/22/2018,Musicians,@LukeBryanOnline,"Just performed my new single “Sunrise, Sunburn, Sunset” on the #AmericanIdol Finale. How’d we do? https://t.co/862R7fjy4H" +05/22/2018,Musicians,@LukeBryanOnline,@jimmykimmel @AmericanIdol @RyanSeacrest @katyperry @LionelRichie See you soon +05/22/2018,Musicians,@LukeBryanOnline,#Americanidol got us like... https://t.co/YRLXtRffVH +05/22/2018,Musicians,@LukeBryanOnline,RT @katyperry: It’s the ✨GRAND FINALE!✨😱 and my last show with uncle @LionelRichie and my cray brother @LukeBryanOnline this season 😭 Turn… +05/21/2018,Musicians,@LukeBryanOnline,Performing my new single on #AmericanIdol tonight. Which song do you think it'll be? Tune in at 9/8c to find out. G… https://t.co/rlIrnMfyXz +05/21/2018,Musicians,@LukeBryanOnline,That’s a wrap on night one of the #IdolFinale. Tune in tomorrow at 9/8c to find out who your new @AmericanIdol is.… https://t.co/zgI4xwlClH +05/21/2018,Musicians,@LukeBryanOnline,I mean it is the #AmericanIdolFinale. https://t.co/IdSQa8Oh0N +05/21/2018,Musicians,@LukeBryanOnline,"Round 3, let’s see what you got @GabbyBarrett_ @MaddiePoppe @calebleemusic #americanidol #IdolFinale" +05/21/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Oh hayyyy night 1 @AmericanIdol finale! 🎉 @LukeBryanOnline @katyperry #americanidol https://t.co/sbHgzcAFlF +05/21/2018,Musicians,@LukeBryanOnline,"Fake it till you make it, when you make it, shake and bake it. Right @katyperry? #AmericanIdol https://t.co/9G62kqEkiD" +05/21/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: .@MaddiePoppe is going, going for the crown with a performance like that! Download her song here: https://t.co/iC7RUGnuH9…" +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Will @GabbyBarrett_ RISE UP to win the crown with that performance? She just might after that song! Download it here: htt… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: .@calebleemusic is ready to win America’s ❤️(and vote) with songs like that! Download it here: https://t.co/i1KooTnXaJ… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Walking to the set like... @katyperry @lionelrichie and @lukebryanonline are ready for #IdolFinale! 💃🏻🙌 https://t.co/B4y… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: It’s time! It’s time for the Top 3 to take the stage! Our 2 Night Finale Event starts right NOW! #AmericanIdol #IdolFinal… +05/20/2018,Musicians,@LukeBryanOnline,You never know what will happen during the two night finale of #AmericanIdol. Tune in LIVE tonight starting at 8pm… https://t.co/8498mjwzyl +05/20/2018,Musicians,@LukeBryanOnline,"Wow, this one means a lot. Thank you to the fans for showing up. #BBMAs https://t.co/eS5RwwAejp" +05/17/2018,Musicians,@LukeBryanOnline,We're down to the Top 3. Follow their journeys to the finale with your @AmericanIdol backstage pass! https://t.co/zjgBsN4dEF +05/17/2018,Musicians,@LukeBryanOnline,"Excited to let y'all know I'll be the #CMAfest Artist of the Day on Friday, 6/8 at Music City Center! Get your tick… https://t.co/EY8NjFurs0" +05/16/2018,Musicians,@LukeBryanOnline,Monday is the #AmericanIdol finale and I’ll be performing. I promise you don’t want to miss this one. Special guest… https://t.co/tqUWVYBSMN +05/15/2018,Musicians,@LukeBryanOnline,#ICYMI my appearance on @JimmyKimmelLive is airing again tonight. Tune in at 11:35p ET https://t.co/sCu8rzzBYf +05/15/2018,Musicians,@LukeBryanOnline,Keep saying it like you say it brother! Proud of you and love listening to your music. https://t.co/43RQc6GiwJ +05/15/2018,Musicians,@LukeBryanOnline,Excited for another year of #CrashMyPlaya. Grab your friends and come on down to Mexico with us. https://t.co/Qu0nhF069S +05/14/2018,Musicians,@LukeBryanOnline,Excited for y’all. Congrats on making the #IdolTop3. https://t.co/durSmPBBdG +05/14/2018,Musicians,@LukeBryanOnline,That feeling when your mom surprises you on #AmericanIdol. https://t.co/Wp6agPI1W2 +05/14/2018,Musicians,@LukeBryanOnline,Beautiful performance @MaddiePoppe. I’ve loved seeing you grow throughout this process #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,I just got a glimpse into your future @calebleemusic #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,"I don’t know what’s happening, @MichaelJWoodard. I do know that performance was amazing. #AmericanIdol" +05/14/2018,Musicians,@LukeBryanOnline,Perfect song choice. That is exactly who you are @CadeFoehner...#AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,@LionelRichie Not so sure about glitter but I’m always in for a good black jacket +05/14/2018,Musicians,@LukeBryanOnline,"I don’t want to speak after that, but I can tweet. @GabbyBarrett_ that was incredible. Great job girl. #AmericanIdol" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @MaddiePoppe, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below! 👇…" +05/14/2018,Musicians,@LukeBryanOnline,#AmericanIdol night with my 2 other favorite judges. https://t.co/A6nbBJf3wY +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @calebleemusic, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below!…" +05/14/2018,Musicians,@LukeBryanOnline,@AmericanIdol @LionelRichie you can see him from a mile away. Ha #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @CadeFoehner, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below! 👇…" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @GabbyBarrett_, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below!…" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @MichaelJWoodard, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below…" +05/13/2018,Musicians,@LukeBryanOnline,The #AmericanIdol Top 5 need your votes. Tune in from coast to coast at 5pm PST / 8pm EST and vote until the end of… https://t.co/THeCPRdmfT +05/13/2018,Musicians,@LukeBryanOnline,Happy Mother’s Day to the best mama in the D worlds. https://t.co/dWsetuchNw +05/12/2018,Musicians,@LukeBryanOnline,RT to vote #LukeBryan for #TheBestest at the #RDMA’s! @radiodisney https://t.co/OJj291NzLt +05/11/2018,Musicians,@LukeBryanOnline,Make sure to catch the #AmericanIdol Top 7 on tour this summer. Tickets on sale now https://t.co/7h6Ku3v1JK https://t.co/SusDkmVHIy +05/08/2018,Musicians,@LukeBryanOnline,“Light It Up” is nominated for Male video of the Year at the #CMTAwards. Vote now: https://t.co/M6IPRWGYjV https://t.co/PnyNLAKWwF +05/07/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Nothing compares to #Prince! 💜Beautiful night on @AmericanIdol paying tribute to his music... @SheilaEdrummer @katyperry… +05/07/2018,Musicians,@LukeBryanOnline,I’ll be on @JimmyKimmelLive tonight. Make sure to tune in. https://t.co/61uchMUQkK +05/07/2018,Musicians,@LukeBryanOnline,.@Jurnee and @hashtagcatie are 2 special humans. The ride is just beginning. Good luck on the next chapter girls.… https://t.co/sES2MABoDt +05/07/2018,Musicians,@LukeBryanOnline,Waiting on #AmericanIdol results like... https://t.co/kkxHGYcrEa +05/07/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: The #AmericanIdolTour is hitting the road this summer! Pre-sales start Tues. at 10am local time & onsale is this Fri. at… +05/07/2018,Musicians,@LukeBryanOnline,It’s @CadeFoehner’s fault @LionelRichie...we just can’t control ourselves. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,True God given talent @MichaelJWoodard. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,When you can’t think of anything country to say to @MaddiePoppe...#AmericanIdol https://t.co/SpjCdAYYSS +05/07/2018,Musicians,@LukeBryanOnline,Way to keep getting better every week @calebleemusic. Good job buddy. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,"Maybe I need a hug from @nickjonas too, ha. Great job @hashtagcatie. Keep being you. #AmericanIdol" +05/07/2018,Musicians,@LukeBryanOnline,That was so special @GabbyBarrett_. Well done girl. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,.@jurnee kicking us off tonight like... #AmericanIdol https://t.co/ILJSIjaPsY +05/06/2018,Musicians,@LukeBryanOnline,RT @EW: .@LukeBryanOnline is taking over our Instagram Story from the #AmericanIdol set! Follow along here: https://t.co/ichtck6aAF https:/… +05/06/2018,Musicians,@LukeBryanOnline,Getting fired up for @AmericanIdol tonight. Y’all ready to tune for live voting? See you at 8pm EST / 5pm PST https://t.co/8k0ndJlX4S +05/06/2018,Musicians,@LukeBryanOnline,Thanks for having me. https://t.co/4AfdLiJZz9 +05/06/2018,Musicians,@LukeBryanOnline,"RT @iHeartRadio: TONIGHT! @LukeBryanOnline, @KeithUrban and more take the stage in Austin for the party of the year. Watch #iHeartCountry F…" +05/05/2018,Musicians,@LukeBryanOnline,"If you’re not in Austin, don’t worry - you can stream the #iHeartCountry Festival online tonight… https://t.co/9Q15sOegFY" +05/04/2018,Musicians,@LukeBryanOnline,It’s happening. Season 2. @americanidol https://t.co/SsNJTLFF6p +05/03/2018,Musicians,@LukeBryanOnline,RT @lukecombs: Make them turkeys go boom boom... @LukeBryanOnline https://t.co/E9l4SK24qF +05/03/2018,Musicians,@LukeBryanOnline,Announcing Luke’s MVP Stadium Experience for select stadium shows this year. Download Luke’s App now for more info:… https://t.co/qO4j1WRYuH +05/03/2018,Musicians,@LukeBryanOnline,"Austin, y’all coming out to @iHeartCountry Fest Saturday? #iHeartCountry https://t.co/3HLu13CYEa" +05/02/2018,Musicians,@LukeBryanOnline,Y’all go listen to @amazonmusic’s new #CountryHeat playlist that features #MostPeopleAreGood https://t.co/O15fktZdBq https://t.co/lxbyX0oRgF +05/02/2018,Musicians,@LukeBryanOnline,RT @iHeartCountry: The countdown is on! Only 4 more days until the #iHeartCountry Festival in Austin 🤠 Who are you most excited to see? htt… +05/02/2018,Musicians,@LukeBryanOnline,RT @dariusrucker: Ladies and Gentleman.....The Troublemakers!! https://t.co/XyPQ1iVPHI +04/30/2018,Musicians,@LukeBryanOnline,It’s #MusicMonday! Kick it off with Luke’s #MostPeopleAreGood playlist on @Spotify. Listen here: https://t.co/5FufQ3UFea +04/30/2018,Musicians,@LukeBryanOnline,"America, THIS is your Top 7: @Jurnee, @MaddiePoppe, @GabbyBarrett_, @HashtagCatie, @CadeFoehner, @MichaelJWoodard,… https://t.co/U7llBMYlff" +04/30/2018,Musicians,@LukeBryanOnline,".@AdaVox, @DennisLorenzo, @MichelleSussett so sad to see y’all go. Keep pursuing your dreams. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,"America, you have a tough job on your hands. I’m not jealous of ya tonight. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,Way to close out the Top 10 @DennisLorenzo. Great performance. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,.@hashtagcatie you were inspiring tonight. I’m speechless. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,You did @RandyNewman proud @calebleemusic. Way to bring it buddy #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,As magical as #DisneyNight itself @MichaelJWoodard. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,We aren’t having any fun tonight. #AmericanIdol #DisneyNight #VOTE https://t.co/qUf1JnZ87z +04/30/2018,Musicians,@LukeBryanOnline,You’ve got it all @GabbyBarrett_. Great job girl. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Make sure to vote for your favorite everyone! What do you guys think so far?! @lukebryanonline #mickeymouse #AmericanIdol… +04/30/2018,Musicians,@LukeBryanOnline,Nailed it @MichelleSussett. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,.@AdaVox you’re truly honing your skills and your voice. Amazing performance. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,Shoutout to #DisneyNight for bringing that out of ya @CadeFoehner. Great job. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,"Keep dreamin’ and believin’ on your journey, @Jurnee. Ha. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,Your voice is timeless @MaddiePoppe. I just want to keep listening. #AmericanIdol +04/29/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: We're breaking new ground on #AmericanIdol with Disney Night, airing LIVE coast-to-coast! Join in the fun TONIGHT at 8e|5…" +04/29/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: It's going to be a magical night! #DisneyNight at #AmericanIdol starts LIVE coast-to-coast at 8e|5p! https://t.co/SaLjTWw… +04/29/2018,Musicians,@LukeBryanOnline,Catch Disney night on @AmericanIdol tonight with coast to coast live voting from 8/7c until the end of the show! https://t.co/wDkq3ycW1s +04/28/2018,Musicians,@LukeBryanOnline,Y’all go check out @cb30music’s new song. I’m very proud of them. #LikeItsABadThing https://t.co/PJiRodowgS https://t.co/7cQ9vU9xdo +04/25/2018,Musicians,@LukeBryanOnline,Can’t wait to see y’all out on the road this summer. Which show are ya comin’ to? https://t.co/Kt8QDt1IHQ +04/24/2018,Musicians,@LukeBryanOnline,".@MaraJustine1, @JonnyBrenns, @MarcioDonaldson, @Garrett_Jacobs_ y’all have come so far from the first time we hear… https://t.co/s9BSWFMUuo" +04/24/2018,Musicians,@LukeBryanOnline,"Congratulations @Jurnee, @MichelleSussett, and @DennisLorenzo we are so proud to see y’all in the Top 10. #AmericanIdol" +04/24/2018,Musicians,@LukeBryanOnline,Our final judgement. @LionelRichie @katyperry #AmericanIdol https://t.co/goq9RKHfQH +04/24/2018,Musicians,@LukeBryanOnline,"@hashtagcatie , you just keep bringing it girl. @AdaVox you are incredible. Welcome to the Top 10. #AmericanIdol" +04/24/2018,Musicians,@LukeBryanOnline,RT @liz_dae_: When you remember there can only be one #AmericanIdol 💔 https://t.co/LPVrIV9Sct +04/24/2018,Musicians,@LukeBryanOnline,Hi https://t.co/3fGDUxPy49 +04/24/2018,Musicians,@LukeBryanOnline,.@MichaelJWoodard so great to see ya make it through. Way to go #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@briaxbeauty @AmericanIdol https://t.co/0qofaJWCPU +04/24/2018,Musicians,@LukeBryanOnline,Huge congrats @CalebLeeMusic. Pumped to see ya in the Top 10 #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@_a_lwsn_ Don’t do that +04/24/2018,Musicians,@LukeBryanOnline,That was crazy fun @gabbybarrett_. Good job and welcome to the top 10. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,No Instagram Lives were ruined in the making of this pic #AmericanIdol https://t.co/fMcGfHCWHu +04/24/2018,Musicians,@LukeBryanOnline,Couldn’t be happier to see ya in the Top 10 @CadeFoehner. Congrats. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@2DeCee @IdolTweethearts I mean...I’m here. +04/24/2018,Musicians,@LukeBryanOnline,Try being at the judges table #AmericanIdol https://t.co/Zl6EHot8RH +04/24/2018,Musicians,@LukeBryanOnline,Congrats @MaddiePoppe. Excited to see you in the Top 10. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,I’m with you Julia #AmericanIdol https://t.co/ZfjXAzZCWo +04/23/2018,Musicians,@LukeBryanOnline,When you’re about to be live on #AmericanIdol https://t.co/hEGR3nAkkz +04/23/2018,Musicians,@LukeBryanOnline,Catch the first live results show of this season’s @AmericanIdol TONIGHT! https://t.co/G2lUBUOmMG +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Which 10 will continue on to next week? Find out tonight at 8/7c! #AmericanIdol https://t.co/qR3g1q2zmj +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: That’s it for the Top 14! Be sure to vote for your favorites - then find out who is making it to the Top 10 tomorrow at 8… +04/23/2018,Musicians,@LukeBryanOnline,When you remember #AmericanIdol is on again tomorrow. Tune in at 8/7c. https://t.co/QHZeSx6zEX +04/23/2018,Musicians,@LukeBryanOnline,Best vocal performance of the night. Well done @GabbyBarrett_ #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,"You make us love you more and more each time, @MichaelJWoodard. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,"Somebody showed up. Amazing job, @jurnee. @jonnybrenns way to have fun and attack those notes. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,@garrett_jacobs_ tricky little underscore you've got at the end there buddy haha +04/23/2018,Musicians,@LukeBryanOnline,Did y’all feel that from @MaddiePoppe? #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,You definitely gave your mom something to be proud of @DennisLorenzo. #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,".@hashtagcatie that was amazing, but stop looking at the internet. @cadefoehner you never disappoint, but please st… https://t.co/mi2foCn9OE" +04/23/2018,Musicians,@LukeBryanOnline,"Biggest voice I’ve ever heard, @AdaVox. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,"Dynamic performance, @Garrett_Jacobs. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,Keep showing us those layers @MarcioDonaldson & bring that emotion every night @MaraJustine1 #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,I think you made it obvious why you’re here @MichelleSussett #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,.@calebleemusic starting us off right! Good job buddy. #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Voting is open now! Watch tonight and vote for your favorite contestant! 👇👇👇10 votes per contestant per method. #American… +04/22/2018,Musicians,@LukeBryanOnline,De-shined and ready for tonights show. Who’s watching? Let’s go! https://t.co/NxgWcJbvpN +04/22/2018,Musicians,@LukeBryanOnline,It’s your turn America. #VOTE #americanidol @LionelRichie https://t.co/ROQlzbSoOT +04/22/2018,Musicians,@LukeBryanOnline,Don’t miss the Top 14 of #AmericanIdol tonight at 8/7c. Be sure to tune in! https://t.co/9Jjna8vNGt +04/20/2018,Musicians,@LukeBryanOnline,We’ve had some good times so far on #AmericanIdol https://t.co/35lWQbzdQD +04/18/2018,Musicians,@LukeBryanOnline,Get ready for upcoming stadium dates with the #WhatMakesYouCountryXL playlist on @Spotify: https://t.co/JQx9RxlrA0 +04/18/2018,Musicians,@LukeBryanOnline,"RT @LionelRichie: Hey @LukeBryanOnline... how about this... is this ""cowboy cool""? #AmericanIdol https://t.co/zYi1jcf9xv" +04/17/2018,Musicians,@LukeBryanOnline,"ICYMI: You can watch Luke's @ACMawards performance of ""Most People Are Good"" here: https://t.co/knw9JROlkD" +04/17/2018,Musicians,@LukeBryanOnline,Excited to be nominated for this year's @BBMAs Top Country Tour! #BBMAs https://t.co/Rc9wLMr6hH +04/17/2018,Musicians,@LukeBryanOnline,".@AlyssaRaghu @AmeliaHammer @ShannonOhara @EffiePassero @RonBultongez, we love all of you and can’t wait to see wha… https://t.co/2Ofc1pHYNO" +04/17/2018,Musicians,@LukeBryanOnline,.@EffiePassero had us in the palm of her hands with @CamCountry’s #Diane. #AmericanIdol +04/17/2018,Musicians,@LukeBryanOnline,.@marajustine1 you definitely shined bright tonight with @RachelPlatten. Way to take what we’ve said and learn from… https://t.co/UmL7UQ86nY +04/17/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: That performance from @MaraJustine1 and @RachelPlatten got us like 😭#AmericanIdol #IdolDuets https://t.co/rfUVUN6ZPy +04/17/2018,Musicians,@LukeBryanOnline,"Keep taking those kinds of steps, @Garrett_Jacobs_ and you are going to go far. You brought it with @ColbieCaillat. #AmericanIdol" +07/01/2018,Musicians,@SantanaCarlos,"POR LA GRACIA DE DIOS +ESTAMOS A QUI REUNIDOS +PARA CELEBRAR NUESTRA +PROPIA LUZ + +BY THE GRACE OF GOD +WE ARE RE UNITE… https://t.co/4iM3XHuCWw" +06/29/2018,Musicians,@SantanaCarlos,"ABOVE ALL WE ASPIRE TO HEAL OURSELVES AND THE WORLD +truth kindness compassion mercy oneness empathy unity harmony +T… https://t.co/lkvq0BJEAk" +06/29/2018,Musicians,@SantanaCarlos,"ABOVE ALL WE ASPIRE TO HEAL OURSELVES AND THE WORLD +truth kindness compassion mercy oneness empathy unity harmony +T… https://t.co/fTu3kxD0g9" +06/26/2018,Musicians,@SantanaCarlos,"Compassion mercy kindness is +The Living CHRIST WAY +The light of JESUS +Knows NOT words like +ALIEN REFUGEES nor IMM… https://t.co/AaSIBkQvdy" +06/19/2018,Musicians,@SantanaCarlos,"DIVINE LIGHT does not recognize space nor time +This why the frequency of the LIVING CHRIST +Is TOTALLY ALIVE TODAY +L… https://t.co/X3wox42Rhe" +06/19/2018,Musicians,@SantanaCarlos,"World CITIZENS open your HEART +CHRIST CONSCIOUSNESS is about HEALING +Being your SISTER and BROTHERs Keeper +Is the o… https://t.co/pFChptWCF9" +06/16/2018,Musicians,@SantanaCarlos,"IT IS SUBJECTIVE FOLKS +If you STOP and ask JIMI HENDRIX +Who’s your favorite guitar player +He most certainly will de… https://t.co/EsjALBx7uO" +06/16/2018,Musicians,@SantanaCarlos,"WE are ever so grateful for the opportunity +To be invited to come to London and share +Our music and energy with our… https://t.co/fD0R6iSO2C" +06/12/2018,Musicians,@SantanaCarlos,"MY LIGHT Will SEE ME THROUGH +Suicide prevention HOT LINE +Offering people words of wisdom that have +Light powers to… https://t.co/eGAxekeRAB" +06/08/2018,Musicians,@SantanaCarlos,"From Team Santana: +On Sunday, June 10 Santana’s iconic performance from the 1982 Us Festival will air on AXS TV 10:… https://t.co/gE40AXTkAq" +06/04/2018,Musicians,@SantanaCarlos,RT @drumstress: Carlos and I had a great time playing the #Anthem at the #NBA https://t.co/aQuYpl1e2x +06/04/2018,Musicians,@SantanaCarlos,Carlos Santana performs national anthem at Game 2 of 2018 NBA Finals | ESPN https://t.co/Nu1ZMsBHDX +06/02/2018,Musicians,@SantanaCarlos,"From Team Santana: The NBA Finals, presented by Youtube announced that Carlos Santana & Cindy Blackman Santana will… https://t.co/6jEUTEkw9a" +05/29/2018,Musicians,@SantanaCarlos,Fear is the parasite that infects the minds of those who have no awareness of their own spirit. Any business that p… https://t.co/QED2b63nBw +05/19/2018,Musicians,@SantanaCarlos,"COMPASSION MERCY FORGIVENESS +these words have the ingredient spiritual power +We desperately need to HEAL and bring… https://t.co/lOF24c02oE" +05/18/2018,Musicians,@SantanaCarlos,"WORLD CHANGE AGENT +1 Constantly creates effortlessly +For the highest good of ALL +2 think good thoughts and CHANGE… https://t.co/4perWYy84e" +05/17/2018,Musicians,@SantanaCarlos,"When you raise your consciousness +By MEDITATING PRAYING OR SELFLESS SERVICE +You see that EVERYONE and EVERYTHING +In… https://t.co/SwBXldNlKq" +05/16/2018,Musicians,@SantanaCarlos,From Team Santana: Own a stage played guitar from Carlos’ personal collection with proceeds going to the Milagro Fo… https://t.co/sPtGrJ51qj +05/12/2018,Musicians,@SantanaCarlos,"Woodstock nation Embody the frequency of a Planetary consciousness +The spiritual world breathing with unity And har… https://t.co/49FO48kNaF" +05/11/2018,Musicians,@SantanaCarlos,"The solution to all humanity’s problems +Raise your consciousness +The 60s slogan turn on tune in drop out +Simply mea… https://t.co/s4vwK970kd" +05/09/2018,Musicians,@SantanaCarlos,"Unwavering highest good is my hearts aim +Therefore the sound and feel of SANTANA +Will always BE a frequency of HEAL… https://t.co/gpYJ26D4r1" +05/05/2018,Musicians,@SantanaCarlos,"Looking through the EYES of GOD +We take the high road +Look at the aerial view +We see the BIG PICTURE +THE HIGHEST G… https://t.co/NAexVtSnnf" +05/03/2018,Musicians,@SantanaCarlos,"Yield real fruit of consciousness creativity +Collect your thoughts feelings emotions +Words deeds and arrange them l… https://t.co/gV30zRMvCq" +05/03/2018,Musicians,@SantanaCarlos,"Moments of awakening +When you realize your beyond the EGO laws +Of this planet plane +Beyond religion politics govern… https://t.co/LGOL8MK6Vj" +05/01/2018,Musicians,@SantanaCarlos,"GOOD to know +Our SALVATION is within Reach +Self realization is attainable and available +When we surrender our mind… https://t.co/Qqa3RjSqo7" +04/28/2018,Musicians,@SantanaCarlos,"Wealthy with wisdom +Some people have many many zeros +To the right yet .... they hardly know +The ONE on the left ..… https://t.co/mZMvFZdcUy" +04/22/2018,Musicians,@SantanaCarlos,"The human spirit / soul +does not complicate nor muddles +The universal oneness with all +The human mind however being… https://t.co/SFPUvmnZrj" +04/19/2018,Musicians,@SantanaCarlos,"FOR THE HIGHEST GOOD +Sentient benevolent autonomy +Meditate raise your consciousness +Activate your awareness knowing… https://t.co/SFc3MTN1aX" +04/07/2018,Musicians,@SantanaCarlos,"This side of heaven +1 CLARITY +2 INTEGRITY +3 GOOD HEALTH +4 PEACE OF MIND +5 JOY +We had a glorious glaring concert las… https://t.co/DKZXVGEti1" +03/27/2018,Musicians,@SantanaCarlos,"RT @billboard: .@SantanaCarlos says Dolores Huerta film will inspire ""sisters of all ages"" https://t.co/FnOzmMOXQQ https://t.co/UomN7R8Hao" +03/27/2018,Musicians,@SantanaCarlos,"RT @Dolores_Movie: .@Dolores_Movie is coming to @PBS! Tune into the TV premiere - Tuesday, March 27 at 9pm. Follow @IndependentLens for upd…" +03/26/2018,Musicians,@SantanaCarlos,"From Team Santana: From the inside out, Carlos by Carlos Santana Men’s Shoes are designed with you and your impecca… https://t.co/VKgAwHqtzI" +03/20/2018,Musicians,@SantanaCarlos,"War is not the answer +For only love can conquer fear +Brother Marvin Gaye + +War in the east War in the west +War up no… https://t.co/mnwi8ih7sI" +03/19/2018,Musicians,@SantanaCarlos,"From Team Santana: We invite you to catch up on the latest news from the Milagro Foundation. +#themilagrofoundation https://t.co/kYH0WG2Sfn" +03/12/2018,Musicians,@SantanaCarlos,"My spirits LIGHT floods my consciousness with +Illumination liberation wisdom power peace +Beauty grace strength... https://t.co/oXL5fXdk7T" +03/07/2018,Musicians,@SantanaCarlos,From Team Santana: We are proud to announce that Zappos has debuted the new Anthony Veer – Carlos by Carlos... https://t.co/VVmS5YkX3x +02/26/2018,Musicians,@SantanaCarlos,"Immutable impeccable indestructible incorruptible +Unwavering unyielding unaffected purity and innocence +At our... https://t.co/VPI1OI9Exb" +02/26/2018,Musicians,@SantanaCarlos,"We propose and present +a new movie rating +We have now +PG .. R .. and so on +We propose adding with accurate... https://t.co/dO79AvKLad" +02/21/2018,Musicians,@SantanaCarlos,"We are here to express the love of GOD +Let us BE present with the divine gifts of +Beauty grace excellence... https://t.co/eZ0SP2wtdH" +02/14/2018,Musicians,@SantanaCarlos,"With love in your heart +And belief in GOD +Anything is possible +Claim what is already yours +Miracles and... https://t.co/GN4cuGYSYc" +02/13/2018,Musicians,@SantanaCarlos,"Dance with the unknown +Take a leap of faith +Go out on a limb +Stick your neck out +Face your fears +Re invent... https://t.co/9tjDDn4e3D" +02/06/2018,Musicians,@SantanaCarlos,"The mechanics of spiritual code of conduct +Will help you build a powerful house +For your soul heart mind and... https://t.co/zDk4v5pVrN" +02/02/2018,Musicians,@SantanaCarlos,"GOD is the motor operandum +He allows us to get behind the drivers seat +And select an assign destination +Beauty and grace" +01/29/2018,Musicians,@SantanaCarlos,"THE LOVING HAND OF THE DIVINE +Last night …In my dream +My angel said don’t worry +Everything is going to be... https://t.co/w8L1pgaPhc" +01/22/2018,Musicians,@SantanaCarlos,"War starts with the letter W +Because it is Weak +Peace starts with the letter P +Because it is Powerful" +01/21/2018,Musicians,@SantanaCarlos,"This is the journey of remembrance +Regardless of your perceptions or beliefs +Regardless of your hue or... https://t.co/AvhOUkvFR9" +01/21/2018,Musicians,@SantanaCarlos,"Change the molecular structure +ALTER the DNA of this planet +Thoughts infected with fear worry anger sadness... https://t.co/dVyRGh2HD2" +01/17/2018,Musicians,@SantanaCarlos,"A Sentient being +is like a Christmas tree +What adorns him/her are these virtues +Honesty +Kindness +Compassion... https://t.co/QAoAnINHP1" +01/15/2018,Musicians,@SantanaCarlos,"1 Spontaneous Remission +2 Total restoration +3 Better than new +4 No Fear Here +5 Whole and sound +6 My recuperation... https://t.co/GiPjcQF0hS" +01/14/2018,Musicians,@SantanaCarlos,"Lead me from the unreal to the…REAL +Lead me from darkness to…LIGHT +Lead me from death to..IMMORTALITY" +01/14/2018,Musicians,@SantanaCarlos,"The LIGHT in us ONLY sees LOVE +FEAR does not see or feel beauty or GRACE what GOD created all around the WORLD... https://t.co/UdYaxtRhPO" +01/09/2018,Musicians,@SantanaCarlos,"YOU ARE DESIGNED TO BE AN EVER- EVOLVING CONSCIOUSNESS +IGNITE NEWNESS …TRANSFORM FEAR …EVERYWHERE +HEAL ALL AND... https://t.co/t94KLuVeme" +12/31/2017,Musicians,@SantanaCarlos,"Happy New Year 2018 +Let us go forward knowing we will +Heal all the wounds forgive all mishaps +restore all beauty... https://t.co/QOPWeKgt3n" +12/30/2017,Musicians,@SantanaCarlos,"Nightmares ... hound you +torture you torment you +Well ... let’s do something totally effective +About that ..,... https://t.co/JX73d0poXZ" +12/25/2017,Musicians,@SantanaCarlos,"Now is the time to invest in promoting +Respect honor spiritual values peace +Yielding with kindness on the road... https://t.co/cAWFmqPiyt" +12/21/2017,Musicians,@SantanaCarlos,"Happy birthday JELLI +May your SPIRIT guide you to your light +May your SOUL comfort you with LOVE +May your HEART... https://t.co/uYcU2uQL0i" +12/20/2017,Musicians,@SantanaCarlos,"I offer deepest gratitude +To the great spirit for allowing +Me to reason and understand +The ways of light love... https://t.co/N7gCGOG7QO" +12/04/2017,Musicians,@SantanaCarlos,From Team Santana: We are proud to announce the first dates of the 2018 ‘Divination' Tour! We just announced... https://t.co/SHoUpDVdog +11/20/2017,Musicians,@SantanaCarlos,"TIME STANDS STILL +For those that ascend into divine LOVE +For those that dance with grace +For those that sing the... https://t.co/vee5npMQax" +11/15/2017,Musicians,@SantanaCarlos,https://t.co/MamsZXflW0 +11/11/2017,Musicians,@SantanaCarlos,"Lower is a Slower frequency vibration +Higher is a faster velocity traction +It’s an individual choice selection... https://t.co/URlNBVImCQ" +11/09/2017,Musicians,@SantanaCarlos,RT @PBS: Ever looked inside the mind of a genius? Stream CHASING TRANE from @IndependentLens through 11/20. #IndieLensPBS https://t.co/KxW5… +11/01/2017,Musicians,@SantanaCarlos,"We are creatures of identification +When we see beauty grace elegance +Excellence integrity high consciousness... https://t.co/qxteNPiyka" +11/01/2017,Musicians,@SantanaCarlos,"The high road to excellence +is reached by every step of integrity +The eternal songs Have a perfect balance +Of... https://t.co/OEfX27Vprs" +10/31/2017,Musicians,@SantanaCarlos,"When you think of divine organizations +Like +DOCTORS WITH NO BORDERS +UNICEF …And others +I visualized a safety... https://t.co/06XSNa94U6" +10/30/2017,Musicians,@SantanaCarlos,"An opinion view and decision of one person +If is for the highest good of all +Should totally have merit and power... https://t.co/8laCCb32MX" +10/25/2017,Musicians,@SantanaCarlos,"Do you remember what was given to you +Before you were born ? +True essence … Light Divine +Perfect Perfection... https://t.co/UANscfrWy8" +10/25/2017,Musicians,@SantanaCarlos,"If you so desire with intense willingness +Please listen to SUN RA +“ Search light blues “ +Tenor saxophone +John... https://t.co/awzqXwQrGg" +10/20/2017,Musicians,@SantanaCarlos,https://t.co/g0dIwe7gPO +10/20/2017,Musicians,@SantanaCarlos,"Let’s be accurate and clear +I said ( during a recent interview )! What makes you think, +I am your poodle and I... https://t.co/Ym8D0QcCdA" +10/18/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: A tribute to an important woman who has received few tributes because she’s a woman | via @SFWeekly | https://t.co/t12CU… +10/18/2017,Musicians,@SantanaCarlos,Help members of music community affected by recent hurricanes. Donate to the @MusiCares Hurricane Relief Fund: https://t.co/cnMvWiroGt +10/18/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: See the story of #DoloresHuerta on the big screen → https://t.co/iCmwBmdkDJ https://t.co/33lHppQxiM +10/18/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #BootSeason is the best. #carlossantana #bootsale #ankleboots #fallfashion #weekendstyle #fashionblogger @lily_glam_ http… +10/18/2017,Musicians,@SantanaCarlos,RT @drumstress: Performing at @DailysPlace on October 24th with @SantanaCarlos and the Santana Band at 7pm. https://t.co/XIb5fU8xvZ +10/12/2017,Musicians,@SantanaCarlos,"Give yourself the gift of brilliant peace +calm clarity beauty grace and elegance +Stop take a deep breath and... https://t.co/0f6BdMuaDF" +10/09/2017,Musicians,@SantanaCarlos,"The Raiders and Kaepernick +are a winning combination" +10/08/2017,Musicians,@SantanaCarlos,"Oh, here is an idea......All of the property and money that is owned by the Las Vegas shooter should be forfeited... https://t.co/PAZ6qFAlgo" +10/05/2017,Musicians,@SantanaCarlos,"Carlos Santana, through his Milagro Foundation, is supporting UNICEF USA's work for children with a gift of... https://t.co/oBLOZBaDIw" +10/05/2017,Musicians,@SantanaCarlos,"Following three recent devastating earthquakes in Mexico, I am making a $100,000 donation through The Milagro... https://t.co/tIIgIHhF5M" +10/03/2017,Musicians,@SantanaCarlos,"Listen to +WHAT THE WORLD NEEDS NOW +MERCY MERCY ME +From the POWER OF PEACE CD +And be uplifted into a place of +QUALITY OF PEACE" +10/03/2017,Musicians,@SantanaCarlos,"My light will see me through +For honest to goodness +Clarity +I don’t belong to the left far left +Or right or far... https://t.co/E6DB8cfgxK" +10/02/2017,Musicians,@SantanaCarlos,"LOVE ONLY SEES LOVE +AINT NO FUTURE WITHOUT +FORGIVENESS +COMPASSION +MERCY" +10/02/2017,Musicians,@SantanaCarlos,"To everyone that lost loved ones in Las Vegas, we stand with you. To those of you who are wounded and hurt, we... https://t.co/pZHJBi5NEj" +10/02/2017,Musicians,@SantanaCarlos,"Congratulations to Mr. Clive Davis ! Your bigger than life movie, ""THE SOUNDTRACK OF OUR LIVES"", is a testament... https://t.co/o9DnWJDtKI" +10/01/2017,Musicians,@SantanaCarlos,DOLORES HUERTA DOCUMENTARY.......I would like to respectfully invite everyone to come and see the Dolores Huerta... https://t.co/iVlGwYqAa1 +09/26/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out this video about Carlos' Milagro Foundation, our Licensing... https://t.co/OZ98eREHoM" +09/26/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out this video to learn more about Carlos' Milagro Foundation, our... https://t.co/P9129MLppL" +09/25/2017,Musicians,@SantanaCarlos,"Last night in my dream +I was being honored by the Academy +Of Arts and Science +And just before they gave me the... https://t.co/e4N2RAqin2" +09/21/2017,Musicians,@SantanaCarlos,"We send our collective hearts, light, love and compassion to our sisters and brothers in Mexico. We feel your... https://t.co/gzUaadSe0P" +09/19/2017,Musicians,@SantanaCarlos,"This the +TIME SPACE AND PLACE + To + HEAL + The +TWISTED and... https://t.co/D1MiBqZ8lN" +09/18/2017,Musicians,@SantanaCarlos,RT @Cricketnation: No games here—enter for a chance to win a trip to see @SantanaCarlos in #LasVegas! https://t.co/Y6Y3Kmo9UM https://t.co/… +09/07/2017,Musicians,@SantanaCarlos,"FEEL SENSE BE TOTALLY AWARE +TAKE A DEEP BREATHE BE PRESENT +CRYSTALIZE YOUR PRIORITIES +GRASP THE NOTION WHOLLY... https://t.co/UwdNSlOA6C" +09/05/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""#DoloresHuerta is the real #WonderWoman,” says @SantanaCarlos via @sfchronicle https://t.co/FyPR2yxfMM (NOW PLAYING at…" +09/05/2017,Musicians,@SantanaCarlos,"RT @AliceRadio: The legendary Carlos Santana joins Sarah & Vinnie today at 8:00AM!! We talk ""DELORES"", music, and much more ONLY @ https://…" +09/05/2017,Musicians,@SantanaCarlos,"Above all INTEGRITY and HONESTY +FOR THE HIGHEST GOOD +COMPASSION FOR ALL AND EVERYTHING +IS the frequency of... https://t.co/a6N81Jw4Lm" +09/01/2017,Musicians,@SantanaCarlos,"RT @NBCLatino: Rock Legend @SantanaCarlos Gives Us ‘Power of Peace’ With New Album, Documentary https://t.co/tOiLpKLqQV https://t.co/vrwCFo…" +09/01/2017,Musicians,@SantanaCarlos,https://t.co/Xk52EX5BLM +09/01/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: #NYC, our 9/1 premiere is here! Q&A screening @IFCCenter w. #DoloresHuerta, filmmaker #PeterBratt + @monifabandele @msla…" +09/01/2017,Musicians,@SantanaCarlos,"RT @gretschdrums: . @drumstress 's ""Fun Party Splash"" is available for pre-order. Feat, @SantanaCarlos & co-written w/ @NaradaMWalden https…" +09/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Make a style statement with every stunning step.#carlossantana #mules #floralheels #statementshoes #embroideredshoes http… +09/01/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""In the fight for #socialjustice there is no 'right' time to act""—#BenjaminBratt. How #DoloresHuerta inspires him and hi…" +09/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Celebrate #LaborDay early with 20% OFF + #FreeShipping (#promocode CELEBRATE17) thru 9/4!👢👠 #carlossantana #shoesale http… +09/01/2017,Musicians,@SantanaCarlos,"Dear Friends of Dolores Huerta......In case you haven't heard, the life story of our beloved Dolores Huerta is... https://t.co/cqccUkf3wy" +08/25/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""Her contributions have gone unrecognized—until now"" | via @Latina | https://t.co/eSw8FJC3h2 +SCREENINGS: https://t.co/9…" +08/25/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: ‘Dolores’ the movie (opens Sept 1) seeks to inspire all generations → https://t.co/KOKA77oSuX via @monitornews #DoloresH… +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Join me at 3 pm PST on Facebook LIVE. I want to tell you about my new single FUN PARTY SPLASH! https://t.co/QVUtk7ayZI +08/25/2017,Musicians,@SantanaCarlos,"RT @Carlos_Shoes: Slide... into the weekend, in comfort & style! ➡️👡 #carlossantana #slidesandals #weekendready #slides #whitesandals http…" +08/25/2017,Musicians,@SantanaCarlos,https://t.co/ZU1IvEUZLJ +08/25/2017,Musicians,@SantanaCarlos,"RT @SFMFoodBank: Our newest members of the 🍏Brigrade: @SantanaCarlos & @Milagro_kids! Won't you join too? #HeartCore #FoodForAll + +https:…" +08/25/2017,Musicians,@SantanaCarlos,From Team Santana: Cindy Blackman Santana's Fun Party Splash Single is out today! We invite you to check it out.... https://t.co/PB7JFslVkm +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Today is the release of my new single. I am singing as well as playing drums. Let me know what you think! https://t.co/kbEX… +08/25/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: To @FBI she was a threat. To Sen. Robert Kennedy, she was a friend. See #DoloresHuerta’s remarkable story @IFCCenter htt…" +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Thankful for all these great reviews of my new single https://t.co/1YoBJ50rC7 +08/24/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Step into the must-have #cowboyboot of the season… #carlossantana #cowgirlboot #westernboot #bootseason #studdedboot http… +08/23/2017,Musicians,@SantanaCarlos,"RT @AXSTV: This Saturday, we're hanging out with @SantanaCarlos & few of our other favs from the #SummerofLove. https://t.co/XsKiGHxmBg" +08/23/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""At 87, she’s the kind of wonder woman we should all admire and hope to emulate"" — @REMEZCLA on #DoloresHuerta. https://…" +08/23/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""I cannot praise enough #PeterBratt’s @Dolores_Movie which opens in Sept"" | via @IndieWire | https://t.co/O2nJN6QKm4" +08/23/2017,Musicians,@SantanaCarlos,"RT @QuinnSullivan1: Words from the greatest, @SantanaCarlos lots of love https://t.co/MLmm854ufM" +08/23/2017,Musicians,@SantanaCarlos,RT @StanleyNelson1: Had the honor of hosting a lunch for @Dolores_Movie produced by legendary @SantanaCarlos and super talented director #P… +08/23/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: Reunited for a preview screening! @Dolores_Movie opens Sept. 1 at @IFCCenter. Tickets available NOW → https://t.co/30JCN… +08/23/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: I love #embellishedshoes… jewelry for your feet!✨👣 #carlossantana #slides #slidesandals #fromwhereistand #iloveshoes http… +08/23/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #IWish that every time I liked #shoes on Twitter they would magically appear in my closet.#carlossantana #cagedheels http… +08/23/2017,Musicians,@SantanaCarlos,"RT @drumstress: This Friday is release! Fun, Party, Splash https://t.co/GrEP78lQBg" +08/21/2017,Musicians,@SantanaCarlos,RT @BorgataAC: RT if you'll be jammin' with @SantanaCarlos at his SOLD OUT show at the Event Center tonight! https://t.co/2RQH2MpkNL +08/21/2017,Musicians,@SantanaCarlos,RT @QuinnSullivan1: Jamming with @SantanaCarlos last night! @MoheganSun https://t.co/qAijfGkaN1 +08/21/2017,Musicians,@SantanaCarlos,RT @drumstress: Photos from @MoheganSun https://t.co/GXJG5jQjwv https://t.co/hdrBcAZr8t +08/21/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Slide this-a-way... ➰💙👡 @shoes_sashimi #fashionblogger #slides #summerstyle #slidesandals #poolslides #carlossantana http… +08/21/2017,Musicians,@SantanaCarlos,https://t.co/SKE99bLYGi +08/20/2017,Musicians,@SantanaCarlos,"I feel a deep sense of GRATITUDE +This wonderful Sunday morning +Last night's concert filled me with +SUPREME... https://t.co/Aej0GmqXUH" +08/18/2017,Musicians,@SantanaCarlos,RT @nprmusic: Carlos Santana teamed up with The Isley Brothers for a new album dedicated to peace through music. https://t.co/1BKytR9Tjr ht… +08/18/2017,Musicians,@SantanaCarlos,RT @drumstress: Keep eye out in #NYC cabs for @CarlosSantana #IsleyBrothers clip on our album 50 years in the making https://t.co/6ABEv0EX… +08/17/2017,Musicians,@SantanaCarlos,RT @MoheganSun: Don’t miss the electric sound of @SantanaCarlos on 8/19 at #MoheganSunArena! https://t.co/AJY2U8ojtY https://t.co/Vy2fqa2tUK +08/17/2017,Musicians,@SantanaCarlos,"RT @LatinoVoices: Watch how Dolores Huerta inspired Barack Obama's ""Yes we can"" slogan https://t.co/goz3R2LwzF" +08/17/2017,Musicians,@SantanaCarlos,RT @LookingGlassSMM: She’s got that #magic in her sole... 🌸👢✨ @Carlos_Shoes #shoefie #floralboots #showusyoursole #magiclv #carlossantana h… +08/17/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: #Elvis wasn't the only rockin' Blue Suede shoes. Get inspired by the King today w/ our Royal Blue Suede “Spirit” #Penn… +08/17/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Last Day! Brighten up #summertofall with $20 OFF $100 + #FreeShipping (#promocode SUNNY17). #carlossantana #shoesale http… +08/17/2017,Musicians,@SantanaCarlos,RT @drumstress: I have released a vocal single- pre order is up now​:​https://t.co/kbEXO17NeQ​ thanks for all your support. https://t.co/A7… +08/16/2017,Musicians,@SantanaCarlos,"Dolores — in theaters beginning Sept. 1. +https://t.co/52xd4G2gnJ https://t.co/ZjUjWMlZFD" +08/15/2017,Musicians,@SantanaCarlos,RT @HOBLasVegas: ON SALE NOW — @SantanaCarlos dates for January & February 2018! Grab your tickets at https://t.co/Yn1baT6wGN https://t.co/… +08/15/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: .@SantanaCarlos' 'Shangó,' which featured the hit single “Hold On,” turns 35 today! Rediscover the album: https://t.co/…" +08/15/2017,Musicians,@SantanaCarlos,RT @MoheganSun: The legendary @SantanaCarlos comes to #MoheganSunArena on 8/19! https://t.co/AJY2U8ojtY https://t.co/4doqWAwgU2 +08/15/2017,Musicians,@SantanaCarlos,We invite you to check out the trailer for the movie 'Dolores' https://t.co/c4fFqaHKTY +08/14/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out the trailer for ‘Dolores’, a film close to Carlos’ heart about the... https://t.co/HRKFRyn6ae" +08/11/2017,Musicians,@SantanaCarlos,"Learn to SOAR +No matter what Gets in front of you +No matter who approves or disapproves +No matter where you... https://t.co/5KFgEfHaXI" +08/11/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to pre-order the new single, by Cindy Blackman Santana, ""Fun Party Splash""... https://t.co/TDybWbLcPL" +08/09/2017,Musicians,@SantanaCarlos,"WHOLEHEARTEDLY Cindy and I +We LOVE sharing our LIGHT +With GOD the WORLD …PEOPLE +And we have the audacity to... https://t.co/myFLC46a5V" +08/08/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: We take pride in our designs. Would you? Browse our latest styles https://t.co/FEp0dkCXcv https://t.co/Xqc1X33rQo +08/08/2017,Musicians,@SantanaCarlos,RT @AnnWilson: Playing with @SantanaCarlos tonight! #awoh #rock #live https://t.co/gXJ2MPQ9qU +08/08/2017,Musicians,@SantanaCarlos,RT @drumstress: Information about the new album with @SantanaCarlos and @TherealRonIsley Brothers via @ABC7NY https://t.co/NkemsUD7Cv +08/08/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Cuz glamour never takes a day off…✨👡💯 #carlossantana #studdedsandals #weekendready #glamvibes #carlosbycarlossantana http… +08/08/2017,Musicians,@SantanaCarlos,RT @HOBLasVegas: JUST ANNOUNCED — New @SantanaCarlos date for January & February 2018! Tickets on sale Friday at 10AM: https://t.co/mAsKc0Z… +08/06/2017,Musicians,@SantanaCarlos,"What IF … +There is NO such thing as +DEVIL LUCIFER SATAN +What if you arrive at knowing +It's just DENSE... https://t.co/K2fuAgcfHj" +08/06/2017,Musicians,@SantanaCarlos,"""The poorest of the poor "" +Somewhere somehow +There is someone living in the street +With NO place to GO +And... https://t.co/TH1iVeo1Pu" +08/06/2017,Musicians,@SantanaCarlos,"""The poorest of the poor "" +Somewhere somehow +There is someone living in the street +With NO place to GO +And... https://t.co/ACEe4e6sml" +08/01/2017,Musicians,@SantanaCarlos,"RT @SonyMusicUK: When the Isley Brothers and @SantanaCarlos get together in the studio, magic happens 🎸✨ https://t.co/MMcJjOhMGJ https://t.…" +08/01/2017,Musicians,@SantanaCarlos,Power of Peace Available now! https://t.co/TcB115jbn2 https://t.co/qBGWqiGBF3 +08/01/2017,Musicians,@SantanaCarlos,RT @drumstress: Second stop in August is @BethelWoods Center for the Arts on August 5th at 8pm. https://t.co/bmtKCuYzct +08/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Who says you can’t wear #boots in the summer?! #summerboots #ankleboots #coolboots #summerstyle #carlossantana https://t.… +07/29/2017,Musicians,@SantanaCarlos,"RT @MomsRising: Produced by Peter Bratt & @SantanaCarlos, Dolores is a powerful #doc abt #feminist & labor activist #DoloresHuerta https://…" +07/28/2017,Musicians,@SantanaCarlos,"RT @CarlosShoes4Men: Introducing the ""Essential Collection"". Hand crafted #mens #shoes from music legend @SantanaCarlos https://t.co/akLD6z…" +07/27/2017,Musicians,@SantanaCarlos,"RT @HOBLasVegas: Pre-Order @SantanaCarlos’ new album (out this Friday): https://t.co/og4hXwyhCZ. See him in Sept & Nov, tix: https://t.co/…" +07/27/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: .@SantanaCarlos and #TheIsleyBrothers, together on one album. ‘Power of Peace’ is out tomorrow! Preorder now: https://t…" +07/27/2017,Musicians,@SantanaCarlos,"RT @CBSSunday: How did legends #TheIsleyBrothers & @SantanaCarlos end up collaborating on new album ""Power of Peace?"" Find out Sun! https:/…" +07/27/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: My #flipflops are cuter than yours! #carlossantana #cutesandals #strappysandals #silversandals #thursdaythought https://t… +07/25/2017,Musicians,@SantanaCarlos,"Dearest Mark Zuckerberg & Priscilla, + +Driving around the SF Mission District, I couldn't help but notice the... https://t.co/4OJKPQl4q1" +07/20/2017,Musicians,@SantanaCarlos,"Dearest ONES +Your outpouring of light / love +and sharing your highest wishes +Floods my heart with profound... https://t.co/HlnmOHnIlt" +07/20/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #LastChance to get 20% OFF all #CarlosSantana #shoes (#promocode 20SUMMER)! 👡⬇#shoesale #sandalsale #slidesandals https:/… +07/20/2017,Musicians,@SantanaCarlos,"From Team Santana: “Mercy Mercy Me"" showcases Ronnie Isley’s spectacular ballad singing on a song that is even... https://t.co/D0PwtixQbr" +07/20/2017,Musicians,@SantanaCarlos,We invite you to check out Mercy Mercy Me from Power of Peace on @npr https://t.co/wraqqTZPMQ +07/20/2017,Musicians,@SantanaCarlos,RT @AXSTV: Latin rock legend @SantanaCarlos is celebrating the big 7-0! We're happy to show his #BigInterview episode this morning at 10a/… +07/20/2017,Musicians,@SantanaCarlos,"RT @GuitarWorld: Happy 70th to @SantanaCarlos! Check out this clip of him jamming with +Stevie Ray Vaughan and @JimmieVaughan in 1988 https…" +07/19/2017,Musicians,@SantanaCarlos,Power of Peace - Available July 28th - Pre Order Today https://t.co/lrNdNMd4Hk https://t.co/voUcHcq3yF +07/19/2017,Musicians,@SantanaCarlos,"RT @JimMimna: . @SantanaCarlos played @RedRocksCO last week and I was there to photograph it! +@listenupdenver + +https://t.co/UjfQVQyTRJ ht…" +07/19/2017,Musicians,@SantanaCarlos,RT @caleresinc: Shoe of the Week: the @Carlos_Shoes Emma. https://t.co/i8JB9LWJH0 #shoeoftheweek https://t.co/1lB3Uq63Jr +07/19/2017,Musicians,@SantanaCarlos,RT @drumstress: Excited! W/ @SantanaCarlos @ErnieIsley and @TheRealRonIsley on a new album Power of Peace avail. 8/4 @SonyLegacyRecs https:… +07/19/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: We are thrilled to launch the @SantanaCarlos Shoes For Men website https://t.co/P3ULUTmWM6 #Legendary #Mensfashion #me… +07/19/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Sitting pretty in #CarlosSantana #sliponsneakers! #slipons #casualstyle #whitesneakers #fashionblogger @ginadiazh https:/… +07/17/2017,Musicians,@SantanaCarlos,"RT @RedRocksCO: Earlier this week, @SantanaCarlos was inspired by some serious air guitar shredding to share a special gift... #RedRocksCO…" +07/17/2017,Musicians,@SantanaCarlos,RT @TIDALHiFi: It's always a treat when legends come together. Check out “Are You Ready” by #TheIsleyBrothers & @SantanaCarlos: https://t.c… +07/17/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Preorder ‘Power of Peace,’ a collaboration between music legends @SantanaCarlos and #TheIsleyBrothers, out 7/28: https:…" +07/17/2017,Musicians,@SantanaCarlos,RT @drumstress: https://t.co/1sKM8c4zgk +07/17/2017,Musicians,@SantanaCarlos,RT @drumstress: https://t.co/KIwlAuKFYY +07/14/2017,Musicians,@SantanaCarlos,https://t.co/ir0uEpKXyP +07/12/2017,Musicians,@SantanaCarlos,From Team Santana: We would like to share the premiere of ‘Are You Ready’ from the forthcoming Santana - Isley... https://t.co/qsqkIj8GZG +07/12/2017,Musicians,@SantanaCarlos,From Team Santana: We would like to share the premiere of ‘Are You Ready’ from the forthcoming Santana - Isley... https://t.co/mInXYb5z9r +07/06/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Going gaga for GAMMA! #carlossantana #summerboots #redboots #suedeboots #anklebooties #thursdaythought https://t.co/yZRmC… +07/06/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Get a closer look at The Isley Brothers & @SantanaCarlos’ new album, ‘Power of Peace,’ available July 28: https://t.co/…" +07/06/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: All you need is a #recordplayer & #CarlosSantana. @noel_labb #bloggerstyle #ankleboots #cuteboots #vinylsoundsbetter http… +07/06/2017,Musicians,@SantanaCarlos,'Power of Peace' EPK Video Album available July 28th! @drumstress @TheRealRonIsley https://t.co/33qWsiKHW4 +07/05/2017,Musicians,@SantanaCarlos,"7 Steps to uplifting the consciousness of PLANET EARTH + +CO CREATE HEAVEN ON EARTH +1 ) MASTER YOUR THOUGHTS +2 )... https://t.co/TRL51IWKSJ" +07/02/2017,Musicians,@SantanaCarlos,"We are at the point in time +Where we see clearly +Faith is a blessing use it +Miracles are tangible apply them... https://t.co/sqYx0c42RC" +06/28/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Can't think of a better look in time for #CanadaDay than Dose of Haute's #Canadiantuxedo & #CarlosSantana #sneakers! http… +06/28/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Preorder ‘Power of Peace,’ a collaboration between music legends @SantanaCarlos and #TheIsleyBrothers, out 7/28: https:…" +06/27/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #FlipFlops are my favorite #summershoes. #carlossantana #favoriteshoes #sandalweather #summerstyle #jeweledsandals https:… +06/27/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Music icons @SantanaCarlos and #TheIsleyBrothers join forces on ‘Power of Peace,’ out 7/28. Preorder here: https://t.co…" +06/26/2017,Musicians,@SantanaCarlos,"RT @rbgconcerts: Concert fans! are you ready for @SantanaCarlos this Wednesday? There is no opener, so be at the amphitheatre early to get…" +06/26/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Get a wedge up on the week in #CarlosSantana #corkwedges!🌞👡❤️ #wedgesandals #platformwedges #redsandals #summerstyle http… +06/26/2017,Musicians,@SantanaCarlos,"RT @drumstress: Fun gig tonight w/ @SantanaCarlos in Seattle !!!! Great crowd, thanks for your energy!!!!!🌺❤️🌺❤️ Photos- Jeff Ocheltree htt…" +06/22/2017,Musicians,@SantanaCarlos,"ABOVE ALL… Is imperative we elevate…raise higher… uplift ourselves +OUR COLLECTIVE CONSCIOUSNESS… into a... https://t.co/Cw5Z2hAkut" +07/02/2018,Musicians,@jlo,West coast! YOUR TURN! #shadesofblue tonight! Harlee’s nightmare is becoming a reality!! 😳😳😳 @nbc #SHADESOFBLUE 10/… https://t.co/Om1MzpVjYV +07/02/2018,Musicians,@jlo,Nooooooooooooooooo #shadesofblue +07/02/2018,Musicians,@jlo,"She was really in there trying on Harlee’s clothes. Girl, bye. 🙄 #shadesofblue" +07/02/2018,Musicians,@jlo,GIRL. Girl. 😳@nbcshadesofblue +07/02/2018,Musicians,@jlo,RT @EGTisme: Secrets have a way of coming out...Woz should embrace that philosophy before it's too late! @nbcshadesofblue https://t.co/h5DO… +07/02/2018,Musicians,@jlo,"RT @nbcshadesofblue: Stahl is really back, y'all! 😳 #ShadesofBlue https://t.co/EIeCMRKhYj" +07/02/2018,Musicians,@jlo,"Give it time, mami...give it time. #shadesofblue https://t.co/oI0ttO8e5v" +07/02/2018,Musicians,@jlo,Harlee and Christina forever 👩‍👧 +07/02/2018,Musicians,@jlo,Everyone’s Mom has told them this! If she doesn’t - tell HER! 🤣🤣🤣 https://t.co/wyL0NpT68W +07/02/2018,Musicians,@jlo,RT @WannaBeLikeJLo: @JLo do I believe that Stahl is dead? #ShadesOfBlue https://t.co/CF9LQWI5TJ +07/02/2018,Musicians,@jlo,I CANNOT DEAL WITH THIS RIGHT NOW #shadesofblue - I was so stuck I forgot to tell you all this. My bad. https://t.co/cNrP0MN23b +07/02/2018,Musicians,@jlo,NOT AT ALL #nononono https://t.co/z105UsBdCO +07/02/2018,Musicians,@jlo,I don’t trust those 💐 #shadesofblue https://t.co/V70YHGeBz2 +07/02/2018,Musicians,@jlo,Hmmm...is he telling the truth? #shadesofblue +07/02/2018,Musicians,@jlo,RT @BrittanyBeese: “Your gut is your best warning system” -woz. Ain’t that the truth #Shadesofblue @JLo +07/02/2018,Musicians,@jlo,Thoughts?? #shadesofblue https://t.co/FPMrNeHLIq +07/02/2018,Musicians,@jlo,RT @BrittanyBeese: Loving this mother daughter bonding #Shadesofblue @JLo +07/02/2018,Musicians,@jlo,RT @gpolson37: Im so proud😂 my mom is just as hooked as i am💙💙💙 @JLo #ShadesOfBlue https://t.co/MeZ1fF3wIy +07/02/2018,Musicians,@jlo,RT @TaylorJLover724: I don’t like this new FBI lady @JLo @EGTisme @nbcshadesofblue #SHADESOFBLUE +07/02/2018,Musicians,@jlo,“IT DEPARTMENT” #shadesofblue +07/02/2018,Musicians,@jlo,Karen not today! #shadesofblue +07/02/2018,Musicians,@jlo,BIG MOOD 😳 https://t.co/nHn9J5fAv2 +07/02/2018,Musicians,@jlo,SHE IS! Better than most. https://t.co/UMyEqW0zfX +07/02/2018,Musicians,@jlo,LORDT #shadesofblue +07/02/2018,Musicians,@jlo,👌🏼thismuch https://t.co/tOjHrsJv2W +07/02/2018,Musicians,@jlo,FR FR https://t.co/tcZsRbk8ud +07/02/2018,Musicians,@jlo,Woz not impressed. He could be paralyzed. Always being tough. #gluttonforpunishment #shadesofblue +07/02/2018,Musicians,@jlo,YOU KNOW WHAT TIME IT IS!! #SHADESOFBLUE https://t.co/SFFswzXoOa +07/02/2018,Musicians,@jlo,I AM. You ready? https://t.co/9oHimvaTkZ +07/01/2018,Musicians,@jlo,Bella Bella ✨♥️✨🗽 https://t.co/FgI5ldx0bw +06/30/2018,Musicians,@jlo,Hi. ✨ https://t.co/NZ5K1ypni2 +06/28/2018,Musicians,@jlo,"Luce sexy en todo momento con mi colección #JLOxCoppel +https://t.co/8OCOgVE5Jv https://t.co/wZY9bIEzlk" +06/27/2018,Musicians,@jlo,💔😢 #justiceforjunior https://t.co/br5FPQeMg0 +06/27/2018,Musicians,@jlo,"Which mood are you? +♥️😎 ♥️ +#NationalSunglassesDay https://t.co/GAIZejgIVc" +06/27/2018,Musicians,@jlo,THE SHOW MUST GO ON! AND IT WILL!!! WEST COAST YOURE UP! 10/9 @NBCWorldofDance #WORLDOFDANCE!!! https://t.co/i8MDeVbO7X +06/27/2018,Musicians,@jlo,It’s a pleasure! ♥️♥️♥️ https://t.co/S3iv7BFCEl +06/27/2018,Musicians,@jlo,She is bold. This is so dicey #worldofdance +06/27/2018,Musicians,@jlo,RT @EGTisme: I love @RoyalFluxDance on @NBCWorldofDance +06/27/2018,Musicians,@jlo,Oh no!! 🙈 #worldofdance +06/27/2018,Musicians,@jlo,STINKYFUNKY™️ https://t.co/vM8Nkjo6zz +06/27/2018,Musicians,@jlo,"RT @WannaBeLikeJLo: Dance doesn’t know age, borders, race, limits... it connects people in the most passionate way. @JLo @EGTisme this epis…" +06/27/2018,Musicians,@jlo,RT @NBCWorldofDance: .@silverbeatworld’s story is SO inspiring! #WorldofDance https://t.co/qfXMWN7D6K +06/27/2018,Musicians,@jlo,From now on it’s stinky funky everything. All day. 🙌🏼🙌🏼🙌🏼 #worldofdance https://t.co/CA2JzeiDug +06/27/2018,Musicians,@jlo,RT @jloverbby: #ShadesofBlue commercial YES!!! Hurry up Sunday! @JLo +06/27/2018,Musicians,@jlo,"RT @dredis92: Those kids are doing good, I love it! @JLo @NeYoCompound @derekhough @jennadewan #WorldOfDance" +06/27/2018,Musicians,@jlo,RT @Aly_Siragusa: it’s crazy how once you find your passion in life everything just opens up regardless of your circumstances #worldofdance… +06/27/2018,Musicians,@jlo,"When a momma cries, I cry 😢 #WorldOfDance" +06/27/2018,Musicians,@jlo,👠👠👠👠👠👠 https://t.co/JotZoxsllU +06/27/2018,Musicians,@jlo,You know I love a hair flip 💁🏻‍♀️ https://t.co/8O9wx0hd3L +06/27/2018,Musicians,@jlo,RT @Aly_Siragusa: Ohhh yes already feeling the girl power #WorldOfDance @JLo +06/27/2018,Musicians,@jlo,Elaine noticing you got me to notice this. Thank Elaine @egtisme 😘 https://t.co/39atFb8iqm +06/27/2018,Musicians,@jlo,What the world needs right now....TEN YEAR OLD BALLROOM DANCERS #worldofdance @alla_and_daniel +06/27/2018,Musicians,@jlo,"RT @NBCWorldofDance: CUTENESS OVERLOAD. @alla_and_daniel are mini ballroom royalty! +#WorldofDance https://t.co/HWhJmj0Dth" +06/27/2018,Musicians,@jlo,Look at them go! #worldofdance 🕺🏼 💃🏻 +06/27/2018,Musicians,@jlo,Derek’s mini me 😝 @derekhough #WORLDOFDANCE +06/27/2018,Musicians,@jlo,Watching dancers do what they love! 😘 https://t.co/d7zT8cWlD4 +06/27/2018,Musicians,@jlo,RT @KrystalAlese: They definitely made me a believer 😍 @NBCWorldofDance #WorldOfDance +06/27/2018,Musicians,@jlo,RT @NBCWorldofDance: We’re feeling inspired to take on the WORLD after that @JLo pep talk. 👑🔥#WorldofDance https://t.co/WOQmUhoJ3B +06/27/2018,Musicians,@jlo,"Loved the performance, choreography and power! Great job @Dance11Rudy 👌🏼👌🏼#WorldOfDance" +06/27/2018,Musicians,@jlo,Everyday! ♥️♥️♥️ https://t.co/t7XfZ1wJB7 +06/27/2018,Musicians,@jlo,LOOK AT RUDY!!!! 🙌🏼🙌🏼 https://t.co/Wk4bdpNRpn +06/27/2018,Musicians,@jlo,⚠️HERE I AM! LET’S GO!!! ⚠️ https://t.co/y5XgfMe8Gz +06/26/2018,Musicians,@jlo,#WORLDOFDANCE TONIGHT! STAKES ARE GETTING HIGHER AND THE PRESSURE IS TOO REAL! TUNE-IN AT 10/9c ON @NBC… https://t.co/io3rXsXSyu +06/26/2018,Musicians,@jlo,"Thank you @teenchoicefox for nominating #Dinero for #ChoiceLatinSong!!!! + +Voting is open NOW so LET’S GO! 💋👑💰… https://t.co/tWepFTXZP5" +06/26/2018,Musicians,@jlo,FAMILIA ♥️♥️♥️♥️♥️ https://t.co/emZKxc7azZ +06/25/2018,Musicians,@jlo,HAPPY PRIDE #loveislove ❤️🧡💛💚💙 https://t.co/6582A0l0Dx +06/25/2018,Musicians,@jlo,"♥️♥️♥️😘 thank you for watching, love doing this with you guys #shadesofblue https://t.co/AIHbly2sBb" +06/25/2018,Musicians,@jlo,"RT @LivinJENeration: ""It's good to be back."" OMFGGG. @JLo @EGTisme @nbcshadesofblue #ShadesOfBlue" +06/25/2018,Musicians,@jlo,RT @EGTisme: Now it's up to Harlee to find his killer and bring him/her/them to justice @nbcshadesofblue https://t.co/95nMtO3hxs +06/25/2018,Musicians,@jlo,"Christina...pure heart, true grit! ♥️👩🏻👧🏻 #shadesofblue" +06/25/2018,Musicians,@jlo,RT @EGTisme: Nava's dead and his killer probably wears a badge. @jlo @nbcshadesofblue +06/25/2018,Musicians,@jlo,"RT @nbcshadesofblue: ""Everything that I know is broken. I'M broken."" - Harlee Santos. 💔 #ShadesofBlue" +06/25/2018,Musicians,@jlo,"RT @WannaBeLikeJLo: “Not the terms you agreed on?” +Shady Harlee... @JLo @EGTisme #ShadesOfBlue" +06/25/2018,Musicians,@jlo,RT @nbcshadesofblue: Harlee's reached her breaking point. 💔 #ShadesofBlue https://t.co/73Dt8GKpDI +06/25/2018,Musicians,@jlo,🔦 down... #shadesofblue +06/25/2018,Musicians,@jlo,RT @sarahmjeffery3: When Harlee gives tough love but also defends her baby for standing tf up... 😭❤️ #shadesofblue @JLo @nbcshadesofblue ht… +06/25/2018,Musicians,@jlo,RT @ashjlover1102_: the fact the hr goes by to quick while watching #shadesofblue @EGTisme @jlo https://t.co/tLGiXWVTno +06/25/2018,Musicians,@jlo,"RT @BrittanyBeese: It’s the last laugh that counts, you know it when you hear it!! + +Yass woz #Shadesofblue @JLo" +06/25/2018,Musicians,@jlo,Thank you 🙏🏼👏🏼 https://t.co/43P9yLd6Ru +06/25/2018,Musicians,@jlo,RT @lovejlopez1: Okurrrrr Cristina don’t let them talk about ya mama like that @sarahmjeffery3 @JLo #Shadesofblue https://t.co/ats8N3OXDO +06/25/2018,Musicians,@jlo,Lookin our for her mama https://t.co/aYxW8wDhYt +06/25/2018,Musicians,@jlo,RT @WannaBeLikeJLo: “I confuse you with the furniture.” LOL gotta love Woz @JLo @EGTisme #ShadesOfBlue 💙😂 +06/25/2018,Musicians,@jlo,"Both of em! Maybe more, she’ll figure it out 😂🤣😂 https://t.co/WjtClCjyWP" +06/25/2018,Musicians,@jlo,RT @EGTisme: Tess has put the crew in hot water @nbcshadesofblue +06/25/2018,Musicians,@jlo,RT @megs_xo10: Ok imma really need Harlee to kick some ass cuz all these sad flashbacks make me want to personally take the intelligence te… +06/25/2018,Musicians,@jlo,Yep. https://t.co/I9dqF4SmBJ +06/25/2018,Musicians,@jlo,I 👏🏼 CANT! 👏🏼 #SHADESOFBLUE +06/25/2018,Musicians,@jlo,RT @EGTisme: With you! @nbcshadesofblue https://t.co/nQiycLlTva +06/25/2018,Musicians,@jlo,Can’t handle this #SHADESOFBLUE +06/25/2018,Musicians,@jlo,I wouldn’t. And that’s me. 🤣😂🤣 https://t.co/Xn8IVl3Htt +06/25/2018,Musicians,@jlo,Do you think Harlee saw Stahl? #SHADESOFBLUE +06/25/2018,Musicians,@jlo,.@EGTisme watch my next tweet https://t.co/pBkfGn8G6T +06/25/2018,Musicians,@jlo,OOH HARLEE SHOULDER CHECKED HER!!! OMG! SHE IS NOT PLAYIN! #shadesofblue +06/25/2018,Musicians,@jlo,Struggle! Ask @EGTisme she will be more objective!! https://t.co/6Gx7wLCUa7 +06/25/2018,Musicians,@jlo,Same. https://t.co/d0JRFSbJoi +06/25/2018,Musicians,@jlo,💔💔💔 https://t.co/uKNQBOpVrq +06/25/2018,Musicians,@jlo,This is gonna be a tough one...#shadesofblue +06/25/2018,Musicians,@jlo,“They took him from me!” 😭😭😭 #shadesofblue @EGTisme +06/25/2018,Musicians,@jlo,They don’t EVEN know! #ShadesofBlue https://t.co/Yj8JvSLntw +06/25/2018,Musicians,@jlo,RT @gpolson37: Im not crying youre crying!!! 😩😭😭 #ShadesOfBlue @JLo +06/25/2018,Musicians,@jlo,Tweet with me and @EGTisme ‼️ https://t.co/CG1TkTzzFz +06/25/2018,Musicians,@jlo,"RT @Gorgeous_jlo_: I was in a good mood waiting for Shades, but I remembered that Nava is dead and my heart broke all over again. 😫 nooooo…" +06/25/2018,Musicians,@jlo,TWEET WITH US! #SHADESOFBLUE IS BACK AND ITS ONLY GETTING STARTED! https://t.co/GMKj5MaE7n +06/24/2018,Musicians,@jlo,#SHADESOFBLUE STARTED OFF WITH A BANG...BUT THERE’S MORE TO COME‼️ TUNE-IN TOMORROW NIGHT FOR THE NEXT CHAPTER IN T… https://t.co/zFfACqUDx1 +06/22/2018,Musicians,@jlo,"RT @Univision: .@JLo descubre un punto débil de @AROD con una singular perdida (y así salvó a su ""macho bello"") https://t.co/tT6u2Vkj07 htt…" +06/22/2018,Musicians,@jlo,https://t.co/IfAtIqQhEu +06/22/2018,Musicians,@jlo,"RT @NBCWorldofDance: G - L - A - M - O - R - O - U - S = @JLO, obviously. ✨💅 #WorldofDance https://t.co/xdnOygyKZn" +06/22/2018,Musicians,@jlo,"ITS ALL IN OUR HANDS. Supporting one another in these troubled times, we can remain on the right side of history: t… https://t.co/bxqfIOMZxc" +06/21/2018,Musicians,@jlo,"but I also want you to remain hopeful—hold fast to hope, faith and Love. We first need to admit we have a problem b… https://t.co/j6Wfz8gNbt" +06/21/2018,Musicians,@jlo,"have concern for the lack of transparency about this disastrous display, in full view to the world in general, I e… https://t.co/Kl8XvZA8oe" +06/21/2018,Musicians,@jlo,"we and the people of all different races, roots, and culture have enriched this country. But the recent rhetoric an… https://t.co/1cLR4GMF6h" +06/21/2018,Musicians,@jlo,"I feel we will never forget this moment in time. Bearing witness to these atrocities and that’s what they are, I ca… https://t.co/LFqCd1ERnE" +06/21/2018,Musicians,@jlo,"Reading the news about the separation of children from their families, I can’t help but think about my own children… https://t.co/x8b1Q78k7T" +06/21/2018,Musicians,@jlo,"☀️ 😎 ✅ 🍗 🍖 ✅ 💰 💰 ✅ + +#SummerSolstice #TheLongestDay +#dinero #dinero #dinero https://t.co/Sbpv5ZWEGj" +06/21/2018,Musicians,@jlo,🌊 https://t.co/4pHltm0XBp +06/20/2018,Musicians,@jlo,#ballin’biggerthanlebron #WORLDOFDANCE #dancersareathletes #putsomerespectontheirnames +06/20/2018,Musicians,@jlo,Looking out and thinking how lucky I am...oh and yes these #Niyamasol leggings are becoming a staple to my… https://t.co/lmp0hdK0W1 +06/20/2018,Musicians,@jlo,"RT @MarioJimen69: @evaigo @JLo @evaigo Last year you were amazing. This year you are scaring me, and I mean that in a good way..😊😁😍 Congrat…" +06/20/2018,Musicians,@jlo,#relatable https://t.co/iaKYNh2BJU +06/20/2018,Musicians,@jlo,RT @theofficaltay: @JLo put some hood on off the chain sis said “off the chainezzzz” I fell out 🤣💗 #worldofDance @NBCWorldofDance @EGTisme +06/20/2018,Musicians,@jlo,RT @EGTisme: Gives me motivation too! @NBCWorldofDance https://t.co/XUi29fsPFs +06/20/2018,Musicians,@jlo,It’s a global movement 🙌🏼🙌🏼⚡️ https://t.co/oNiD09KlLc +06/20/2018,Musicians,@jlo,RT @jloverbby: #shadesofblue commercial making me want this week to fly by already!! Can’t wait😍 @JLo +06/20/2018,Musicians,@jlo,RT @theofficaltay: The fact @JLo started as a dancer and helping people achieve their goals on #WorldOfDance is truly a blessing 💗 we love… +06/20/2018,Musicians,@jlo,These kids don’t mess around. They come to play and come correct. I like that. 💥🔥🔥💥 https://t.co/POusVFCvhZ +06/20/2018,Musicians,@jlo,Incredible prowess. Loved!♥️ https://t.co/vMAuNZURwQ +06/20/2018,Musicians,@jlo,Thanks baby!! https://t.co/sypQV64veK +06/20/2018,Musicians,@jlo,Oh! @EGTisme - SEASON 4 💡??? https://t.co/EjQdTMaDkG +06/20/2018,Musicians,@jlo,Out of this world!! https://t.co/9RPv0Za29W +06/20/2018,Musicians,@jlo,Mine too. Keep it up. ♥️ https://t.co/Hzlk2hFRU5 +06/20/2018,Musicians,@jlo,RT @gpolson37: Dance is my safe haven and i dont know what id do without having dance a part of my life.Thank you #WorldOfDance for existin… +06/20/2018,Musicians,@jlo,RT @NBCWorldofDance: Tonight's #WorldofDance was filled with certified bops. 💯 What was your favorite song? 🎶 https://t.co/3QH2GJFLUy +06/20/2018,Musicians,@jlo,"RT @NBCWorldofDance: .@jonasterleckas and @rubylcastro are bringing that ballroom FIRE to @thescoremusic’s ""Legend!"" #WorldofDance +https:/…" +06/20/2018,Musicians,@jlo,"Have to hand it to my dynamite Co-panel of judges, they know it when they 👀 it!!! @NeYoCompound @derekhough https://t.co/Sbp8eBkjQM" +06/20/2018,Musicians,@jlo,"RT @EGTisme: So they found Jonas in Lithuania?!?? WOW, that's commitment right @jlo? These dances #jonasandruby mean business on @NBCWorldo…" +06/20/2018,Musicians,@jlo,Never want to discourage-only encourage! https://t.co/N0vA3oNS0h +06/20/2018,Musicians,@jlo,HERE WE GO! @EGTisme https://t.co/pMk5zzB3st +06/20/2018,Musicians,@jlo,"Everyone tonight, I felt that. Great job 👌🏼#WORLDOFDANCE https://t.co/bbL8yRp82v" +06/20/2018,Musicians,@jlo,Agree agree agree https://t.co/orCF9AXGX8 +06/20/2018,Musicians,@jlo,EVA! Whoooo! #worldofdance +06/20/2018,Musicians,@jlo,I know! Flies by doesn’t it? @EGTisme https://t.co/3f6Ch5L2Wg +06/20/2018,Musicians,@jlo,Oh you guys are gooooood https://t.co/MCdRuLJjEq +06/20/2018,Musicians,@jlo,"RT @NBCWorldofDance: We all were thinking it, @JLo said it. 👌 #WorldofDance https://t.co/tPS5nH49Ui" +06/20/2018,Musicians,@jlo,"RT @EGTisme: I mean, #expressionz are so in sync it's crazy. Those spins were wild on @NBCWorldofDance" +06/20/2018,Musicians,@jlo,RT @derekhough: Nailed it ! https://t.co/Imt5ausEPm +06/20/2018,Musicians,@jlo,♥️@NBC! https://t.co/QQEzozltyc +06/20/2018,Musicians,@jlo,RT @TaylorJLover724: Omg @JLo stopppp I can’t you’re too cute with these facial expressions on #WorldOfDance 😩😩😩❤️ PS They were INCREDIBLE +06/20/2018,Musicians,@jlo,"Savion Glover, Gregory Hines, Nicholas Brothers! World’s greatest tap men, Lucas has to work to get there. But he h… https://t.co/6hpR5PDy7A" +06/20/2018,Musicians,@jlo,Really hard! Don’t make me choose (yet!) 😉 https://t.co/q1SPyMGaKg +06/20/2018,Musicians,@jlo,Omg Lucas’ style! @EGTisme #WorldofDance +06/20/2018,Musicians,@jlo,Look at that @EGTisme @NeYoCompound @jennadewan @derekhough 👌🏼👌🏼 https://t.co/RcmaKciW8t +06/20/2018,Musicians,@jlo,RT @Gorgeous_jlo_: I like #TheBradas a loooottt. #WorldofDance @JLo sooo sick 😍👏🏼🔥 +06/20/2018,Musicians,@jlo,Wow! That bag was a helluva prop. FLAWLESS #WORLDOFDANCE https://t.co/waI6vckhb3 +06/20/2018,Musicians,@jlo,RT @EGTisme: thank you for noticing! Love tweeting and interacting with @jlo fans and fans of @NBCWorldofDance and @nbcshadesofblue https:… +06/20/2018,Musicians,@jlo,"Passion, intensity, technique. 👌🏼 #worldofdance https://t.co/XaTdO4mWja" +06/20/2018,Musicians,@jlo,"What do you think @EGTisme ? Rough, right? https://t.co/lWwtcYe2wD" +06/20/2018,Musicians,@jlo,Y’all ready for @evaigo?? #worldofdance +06/20/2018,Musicians,@jlo,Give me all the SPARKLE. You know I love a sparkle ⚡️ ✨ https://t.co/arskIcHTxg +06/20/2018,Musicians,@jlo,Sorry LeBron! @EGTisme and I love you tho! 🙌🏼 https://t.co/KWJGTKzV60 +06/20/2018,Musicians,@jlo,"Great performance, very strong. Intensity! https://t.co/M4fWwwCh5c" +06/20/2018,Musicians,@jlo,What a saucy duo Jonas and Ruby are #WORLDOFDANCE +06/20/2018,Musicians,@jlo,TWEET WITH US! https://t.co/JGRvmgBTsC +06/20/2018,Musicians,@jlo,GO TIME YALL #WORLDOFDANCE 💃🏻 https://t.co/DGGUY08nkd +06/19/2018,Musicians,@jlo,THE PASSION AND THE 🔥!!WE GOT IT! 👌🏼 #WORLDOFDANCE TONIGHT!! @NBC 10/9c https://t.co/Q1888Z8Tg3 +06/19/2018,Musicians,@jlo,A FAN FAVE IS BACK! CAN’T WAIT FOR YOU ALL TO SEE WHO IS BRING-ING IT‼️#WORLDOFDANCE TUESDAYS 10/9c ON @NBC 💃🏾 🕺🏻💃🏻… https://t.co/EL57Xr2lUy +06/18/2018,Musicians,@jlo,Thank u all for watching! WOW! Helluva season ahead #shadesofblue https://t.co/28pFZjKfiM +06/18/2018,Musicians,@jlo,Things will never be the same.... #SHADESOFBLUE +06/18/2018,Musicians,@jlo,Nava... 😢😢😢 +06/18/2018,Musicians,@jlo,SHOOK‼️ SHOOKETH‼️‼️ #shadesofblue +06/18/2018,Musicians,@jlo,Can’t have it both ways! #Shadesofblue +06/18/2018,Musicians,@jlo,"RT @EGTisme: Harlee: they killed one of their own men, WOZ. WOZ: so@did we... #ripsaperstein @nbcshadesofblue" +06/18/2018,Musicians,@jlo,"RT @TaylorJLover724: If you thought Harlee was badass before, clearly you were wrong. She just keeps getting better. Great job @JLo @EGTism…" +06/18/2018,Musicians,@jlo,🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️ https://t.co/U2TPhGNRlJ +06/18/2018,Musicians,@jlo,Is having the time of her life rn 🤣🥊 https://t.co/lHeF45e7DS +06/18/2018,Musicians,@jlo,Yup @EGTisme https://t.co/fsBYkovDEK +06/18/2018,Musicians,@jlo,He knows...something...ok there you go #Shadesofblue +06/18/2018,Musicians,@jlo,RT @CJaskowski: @JLo happy fathers day to harlee!! +06/18/2018,Musicians,@jlo,Omg #ShadesofBlue +06/18/2018,Musicians,@jlo,But she’s being vulnerable too... https://t.co/rTkmJzr4Gc +06/18/2018,Musicians,@jlo,Gotta be 💪🏼 https://t.co/d83pNUnaIA +06/18/2018,Musicians,@jlo,I didn’t give him a chance to explain... #Harleesantos #shadesofblue +06/18/2018,Musicians,@jlo,Imagine going home to your novio and tell him about your day...Harlee is trying to ✌🏼keep it together✌🏼...she’s sti… https://t.co/ts6A4sPgH5 +06/18/2018,Musicians,@jlo,This scene! @EGTisme https://t.co/FEeoXPAQTK +06/18/2018,Musicians,@jlo,MORE INCENTIVE TO STAY TUNED‼️‼️ https://t.co/mFkMXk6ZZF +06/18/2018,Musicians,@jlo,WHELP!! #shadesofblue DAMN!!! +06/18/2018,Musicians,@jlo,Oh this is dark 👀 #ShadesOfBlue +06/18/2018,Musicians,@jlo,It be like that sometimes!🤷🏽‍♀️ https://t.co/EEM7AgQOMB +06/18/2018,Musicians,@jlo,So twisted. Beyond twisted. https://t.co/3Qac4UVwG4 +06/18/2018,Musicians,@jlo,Go watch with papi! I always say FAMILY FIRST...thennnn you watch #shadesofblue💙 https://t.co/8IeOENtOOb +06/18/2018,Musicians,@jlo,@jloverbby 👍🏼 +06/18/2018,Musicians,@jlo,RT @mlo_jlo: Let’s make #ShadesOfBlue trend before it start @JLo @EGTisme 💙💙 +06/18/2018,Musicians,@jlo,HARLEE BEEN THRU IT!! WHOOO!! 💙💙💙 #shadesofblue https://t.co/MySrQvzCqe +06/18/2018,Musicians,@jlo,Watch with me!💙💙💙 https://t.co/nEWUkKEZID +06/18/2018,Musicians,@jlo,"Appreciating you and loving you today and everyday for being our fearless leader, our everyday hero, for making us… https://t.co/5dVXnuHw5p" +06/18/2018,Musicians,@jlo,"HAPPY “FARTER” DAY FLACO 🤣🤣🤣 @MarcAnthony + +🥥 ♥️🥥 ♥️🕺🏻 https://t.co/WrlBz4x75U" +06/17/2018,Musicians,@jlo,FAMILY FIRST 💙@nbcshadesofblue RETURNS TONIGHT! 10/9c ON @NBC! #ShadesOfBlue https://t.co/naiHEVo2Ax +06/17/2018,Musicians,@jlo,"RT @nbcshadesofblue: One. Day. Away! 👏 + +Tell us what you're most excited to see in the final season of #ShadesofBlue. 👇 https://t.co/uSVZFA…" +06/16/2018,Musicians,@jlo,💯 MILLION @VEVO VIEWS AND ⬆️ MUCHAS GRACIAS MI GENTE/THANK YOU TO EVERYONE FOR SUPPORTING #ELANILLO ♥️🌟♥️ https://t.co/p3ydqeM9fW +06/16/2018,Musicians,@jlo,LET’S TALK ABOUT IT 🔥 https://t.co/EctRmnhXXC +07/02/2018,Musicians,@BebeRexha,Talked about #Expectations with @RossGolan and @JoeLNDN on @AndTheWriterIs! Listen here on @ApplePodcasts:… https://t.co/7RFWZ43yar +07/02/2018,Musicians,@BebeRexha,RT @AndTheWriterIs: We're switching things up this week & catching up with #AndTheWriterIs S1 guest @BebeRexha since the release of her alb… +07/02/2018,Musicians,@BebeRexha,"RT @iHeartRadio: New month, new music! These new songs are a MUST-LISTEN! 😍 + +🎶: https://t.co/Yq0SYKc82p + +@BebeRexha ""I'm A Mess"" +@Badflower…" +07/02/2018,Musicians,@BebeRexha,RT @njhstide: @BebeRexha https://t.co/Ej10GHB3Mv +07/02/2018,Musicians,@BebeRexha,shot a music video. its cool. +07/02/2018,Musicians,@BebeRexha,hi. I'm laying in bed. just wanna talk +07/02/2018,Musicians,@BebeRexha,My ears are so so so clogged. What do I do. +07/02/2018,Musicians,@BebeRexha,Sean Paul appreciation tweet. Let’s remember these hits. Gimme the light: https://t.co/dRiMQ81ndz Like Glue: https://t.co/y6kES494PR +07/01/2018,Musicians,@BebeRexha,I’m a mess. I’m a loser. I’m a hater. I’m a user. #ImAMess #MusicVideo #ComingSoon https://t.co/ZIMuV9VCpZ +07/01/2018,Musicians,@BebeRexha,RT @lenadunham: @BebeRexha Right back at you bebebaby. It’s gonna be a good life (at least that’s what my therapist say) +07/01/2018,Musicians,@BebeRexha,Needed it badly. I’m still very sick but feeling a bit better. I’m so sorry to have missed Summerfest but there was… https://t.co/ygifxFtNNZ +07/01/2018,Musicians,@BebeRexha,I just slept for 20 hours. +07/01/2018,Musicians,@BebeRexha,Omg. I love you so much @lenadunham. 😭 https://t.co/XHUR46putr +06/29/2018,Musicians,@BebeRexha,"Current mood: happy, over fuck boys, damn this iced coffee is good, my butt looks good in these jeans, this drake album is so good." +06/29/2018,Musicians,@BebeRexha,I’ve been so emotional lately and I’m not even pmsing. 💁🏼‍♀️ +06/29/2018,Musicians,@BebeRexha,RT @BebeRexhaHQ: Congratulations on the release of #Expectations @BebeRexha! We made this video to show you how proud and happy we are for… +06/29/2018,Musicians,@BebeRexha,"This a roley not a stopwatch, shit don't ever stop." +06/29/2018,Musicians,@BebeRexha,RT @MrsSOsbourne: . @BebeRexha is an absolute breath of fresh air. She is honest and talented with an energy and charisma that doesn’t sto… +06/29/2018,Musicians,@BebeRexha,@CBSDaytime ❤️🙏🏻 +06/29/2018,Musicians,@BebeRexha,❤️❤️❤️❤️ @JulieChen https://t.co/fe4i7BSacK +06/29/2018,Musicians,@BebeRexha,I adore you beyond words @MrsSOsbourne. I idolize you and your strength. Thank you for this. ❤️❤️❤️ https://t.co/8GDB9lJQfb +06/28/2018,Musicians,@BebeRexha,@justPEREZplay @kiss957 ❤️❤️❤️ +06/28/2018,Musicians,@BebeRexha,RT @justPEREZplay: Have you heard @BebeRexha's #ImAMess? I'm blastin it NEXT on @kiss957! 📻 https://t.co/HbXNXeaLlZ #BebeRexha https://t.co… +06/28/2018,Musicians,@BebeRexha,RT @PopCraveNet: Bebe Rexha tears up about being on 'The Talk': “I literally watched this show at home when I was in Staten Island trying t… +06/28/2018,Musicians,@BebeRexha,@livinqhere Yes babe +06/28/2018,Musicians,@BebeRexha,She wasn’t there. I missed you Queen @JulieChen 😞 https://t.co/XTQmjeLgoU +06/28/2018,Musicians,@BebeRexha,I had the time of my life today on @TheTalkCBS. Thank you to all of the amazing ladies and the whole team there for… https://t.co/85eTLEgmW6 +06/28/2018,Musicians,@BebeRexha,RT @jaymichaels13: Fav new song #ImAMess @BebeRexha 💥🔥🎉 @justtranter ❤️❤️❤️ @wbr https://t.co/iQoGuf1plB +06/28/2018,Musicians,@BebeRexha,@kiwisays ❤️🙏🏻 +06/28/2018,Musicians,@BebeRexha,"RT @MikeAdamOnAir: CONGRATS #BEBEREXHA!!! #Expectations, the first official studio album from @BebeRexha, has debuted in the top ten on iTu…" +06/28/2018,Musicians,@BebeRexha,"RT @Fresh1027NY: CONGRATS #BEBEREXHA!!! #Expectations, the first official studio album from @BebeRexha, has debuted in the top ten on iTune…" +06/28/2018,Musicians,@BebeRexha,Adore you @DellaCrews12 https://t.co/f16yn3Iy3i +06/28/2018,Musicians,@BebeRexha,@997now @ArianaGrande @STJOHNSOFIERCE Thank youuuuu #ImAMess +06/28/2018,Musicians,@BebeRexha,Omg I love all threeeee of you so much. @SofiaCarson @TanyaRad @paudacchar ❤️ https://t.co/HnugQDQOqu +06/28/2018,Musicians,@BebeRexha,@DDLECOURS ❤️❤️❤️❤️ +06/28/2018,Musicians,@BebeRexha,Standing united for equality and justice tonight on #TrailblazerHonors at 9:30/8:30c on @VH1. Tune in ❤️ (📸:… https://t.co/PHk2xLfimr +06/28/2018,Musicians,@BebeRexha,I’m A Mess this morning on @TheTalkCBS. Special versions of In The Name Of Love and Meant To Be on @VH1 #TrailblazerHonors tonight. ❤️ +06/28/2018,Musicians,@BebeRexha,RT @VH1: The girl can SING! We celebrated game changers and everyday activists for Trailblazer Honors. Catch @BebeRexha open #TrailblazerHo… +06/28/2018,Musicians,@BebeRexha,"RT @TheTalkCBS: TODAY: We're sizzling hot when the talented @BebeRexha joins us to perform music from her new album #Expectations! Plus, th…" +06/27/2018,Musicians,@BebeRexha,Happy birthday to the amazing @Shelley_Rome Thank you for always making me feel welcomed at the radio station 💕💕💕 +06/27/2018,Musicians,@BebeRexha,Love you Tanya. You’re the best ever https://t.co/IglKMMe9b8 +06/27/2018,Musicians,@BebeRexha,You Guys I’m so excited I saw the first incredibles this week and I was obsessed. now I’m gonna go watch the second one today in 3D woooo. +06/27/2018,Musicians,@BebeRexha,"RT @ChartsBebeRexha: 🇪🇸 iTunes: Spain + +38. @BebeRexha — “Shining Star” (+22) *peak #32* https://t.co/EZ6uBc6LH0" +06/27/2018,Musicians,@BebeRexha,RT @SiriusXMHits1: We had SO much fun with @BebeRexha! You are a firecracker girl!! We love ya and congrats on #Expecations 💖💖 https://t.co… +06/27/2018,Musicians,@BebeRexha,RT @SamarSamierr: Look who’s number one ☝️ in iTunes Egypt !! @BebeRexha https://t.co/FsCqlApE7O +06/27/2018,Musicians,@BebeRexha,Lolol https://t.co/93swW1PTpP +06/27/2018,Musicians,@BebeRexha,RT @BebeUpdater: Update| ‘Knees’ has now become the 4th best selling New Release of the week. https://t.co/CdyWApHzYG +06/27/2018,Musicians,@BebeRexha,WHAT https://t.co/J0bKcKFBBB +06/27/2018,Musicians,@BebeRexha,😱 what https://t.co/Fs6vF3Kl2u +06/27/2018,Musicians,@BebeRexha,RT @TeenChoiceFOX: .@BebeRexha + @FLAGALine = #ChoiceCountrySong. Is it Meant To Be? 🤷‍♀️ You can make it happen: RT to vote! #TeenChoice h… +06/26/2018,Musicians,@BebeRexha,"If someone tells you, you can’t. You don’t scream, you dont yell. You just do it and that will be the loudest thing they’ve ever heard." +06/26/2018,Musicians,@BebeRexha,"I can’t believe this.I finally put out an album.All the no’s I got, All the nonbelievers, All the haters.They never stopped me & never will." +06/26/2018,Musicians,@BebeRexha,It’s okay baby. Stream it online. I love you no matter what https://t.co/GgapUiUh57 +06/26/2018,Musicians,@BebeRexha,Lol. Do you guys want one? Let me talk to my team. Hold please. https://t.co/8sx5eyDpnH +06/26/2018,Musicians,@BebeRexha,😍😍😍. https://t.co/kv5kn13Wda +06/26/2018,Musicians,@BebeRexha,EXACTLY!!! https://t.co/sn57rhtMBd +06/26/2018,Musicians,@BebeRexha,Yay to being imperfect and a mess and a little crazy sometime! Woooo!!! +06/26/2018,Musicians,@BebeRexha,"RT @headlineplanet: Pop Radio Add Leaders: +1) @BebeRexha +2) @KygoMusic & @Miguel +3t) @nickiminaj & @ArianaGrande +3t) @alessiacara +5) @5sos…" +06/26/2018,Musicians,@BebeRexha,I just found out I’m A Mess is #1 Most Added at Top 40 today!!!!!!!!!!!!!!!!!!! Thank you to my incredible @wbr tea… https://t.co/bwZU0B4gpy +06/26/2018,Musicians,@BebeRexha,Best @Target run of my life. Thank you so much for supporting #Expectations ❤️❤️❤️ https://t.co/GRoqs9YrlN +06/26/2018,Musicians,@BebeRexha,I’m a mess for your love it ain’t new. +06/26/2018,Musicians,@BebeRexha,"RT @livycone: When Bebe Rexha said “I’m a Mess” +I felt that." +06/26/2018,Musicians,@BebeRexha,😱 https://t.co/m4zlMhHBi1 +06/26/2018,Musicians,@BebeRexha,Thanks @hmvtweets! #Expectations is out now xo https://t.co/ivlLOgPdE9 https://t.co/bX6Cmz4VGX https://t.co/EACD3Ivz1y +06/26/2018,Musicians,@BebeRexha,"RT @billboard: .@BebeRexha performs emotional new single ""I'm A Mess"" on ""The Tonight Show"" https://t.co/oQB8A7hSv2 https://t.co/mbFu8ZEtva" +06/26/2018,Musicians,@BebeRexha,I LOVED this performance so much. One of my favorite moments ever. “IM A MESS” LIVE: https://t.co/PWGSg1sejs +06/26/2018,Musicians,@BebeRexha,Woah https://t.co/yYKXPRDnDI +06/26/2018,Musicians,@BebeRexha,"RT @PFBRreal: Acompanhada de bailarinos e cenário hospitalar, @BebeRexha faz performance de “I’m a Mess” no The Tonight Show - https://t.co…" +06/26/2018,Musicians,@BebeRexha,Thank you https://t.co/kF3zRtYNiB +06/26/2018,Musicians,@BebeRexha,RT @xMusicMayhemx: WOW! @BebeRexha's performance on The Tonight Show Starring @jimmyfallon tonight was INCREDIBLE! 🔥😍 #IMAMESS #Expectation… +06/26/2018,Musicians,@BebeRexha,"RT @FallonTonight: .@BebeRexha debuts her new song ""I'm a Mess"" https://t.co/h84M68Xbe1 https://t.co/uoNoPkvUwa" +06/26/2018,Musicians,@BebeRexha,EAST COAST!!!! 2 mins until “I’m A Mess” on @FallonTonight. Turn on NBC right now!!!! +06/26/2018,Musicians,@BebeRexha,"RT @billboard: These are 6 of @BebeRexha's most intoxicating lyrics from new ""Expectations"" album https://t.co/O57mvK2857 https://t.co/H24t…" +06/26/2018,Musicians,@BebeRexha,I’ll be on Watch What Happens Live at 11pm Don’t miss it!!!! On @Bravotv https://t.co/MISf9kKHSY +06/26/2018,Musicians,@BebeRexha,RT @Andy: Tweet me Qs all night for MUSIC SUPERSTARS @BebeRexha & @bryanadams! They're on #WWHL tonight - live at 11! +06/26/2018,Musicians,@BebeRexha,RT @BravoWWHL: TONIGHT at 11/10c we’re LIVE w/ @BebeRexha & @bryanadams! Start tweeting in your questions to @Andy! https://t.co/ASWeyt4T5c +06/26/2018,Musicians,@BebeRexha,RT @BravoWWHL: Keep tweeting in your questions to @Andy for @BebeRexha & @bryanadams! +06/25/2018,Musicians,@BebeRexha,Tonighttttt https://t.co/Hyj3bNLIhd +06/25/2018,Musicians,@BebeRexha,😱😱😱😱 https://t.co/tvDpcH3DOH +06/25/2018,Musicians,@BebeRexha,"RT @BebeRexhaHQ: UK Top Albums Midweek Chart: +18. @BebeRexha - #Expectations +Keep buying, UK Rexhars!" +06/25/2018,Musicians,@BebeRexha,😱😱😱😱😱😱 https://t.co/q2oM0T702n +06/25/2018,Musicians,@BebeRexha,What’s your fav song on Expectations? +06/25/2018,Musicians,@BebeRexha,RT @arjanwrites: #ICMYI The state of Pop is strong... I'm playing you all the bops... Listen to this week's @Beats1 #AListPopLive on demand… +06/25/2018,Musicians,@BebeRexha,Okay. I’ve got to go to sleep now because I’m performing on @FallonTonight Tomorrow. Here is a clip of rehearsal fo… https://t.co/zvvTXVXMqJ +06/25/2018,Musicians,@BebeRexha,Forever. https://t.co/vw0CmHns6F +06/25/2018,Musicians,@BebeRexha,"Anyways, I’m always here. Just listen to my songs and I’m right there with you. Always." +06/25/2018,Musicians,@BebeRexha,"You are only really “alone,” unless you want to be. And sometimes I like it." +06/25/2018,Musicians,@BebeRexha,The truth is you’re never really alone. +06/25/2018,Musicians,@BebeRexha,I’m a mess https://t.co/nx7DNy0KCk +06/25/2018,Musicians,@BebeRexha,"Do you ever sleep, troubles in your head? Wrapped up in regrets? +Reaching for the help you gotta find inside yourself. Stuck inside a spell" +06/25/2018,Musicians,@BebeRexha,"Do you ever sit in silence all alone +Drowned out by your thoughts +Trying to get a grip but just keep on spiraling down +Voices getting loud" +06/25/2018,Musicians,@BebeRexha,"Baby Maybe, I’m just comfortable being sad." +06/25/2018,Musicians,@BebeRexha,Thank you Pete 💕🙏🏼 https://t.co/Rh9GHbPaj2 +06/25/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: iTunes WW 🌎 + +#3. Expectations (=) *peak #3 for 3 days* https://t.co/jmzvjHYQoj" +06/24/2018,Musicians,@BebeRexha,Ask Me Anything on @reddit: https://t.co/bgxCft9R1h https://t.co/kWYKUiGytX +06/24/2018,Musicians,@BebeRexha,🙇🏼‍♀️🙆🏼‍♀️🙏🏼 https://t.co/uCDnQxX3yM +06/24/2018,Musicians,@BebeRexha,😭 https://t.co/Ul68Sa2FzU +06/24/2018,Musicians,@BebeRexha,RT @simply__sarai: @BebeRexha It’s a stomach virus going around be careful y’all... +06/24/2018,Musicians,@BebeRexha,For real?! https://t.co/1rHdWIrCuO +06/24/2018,Musicians,@BebeRexha,😬 https://t.co/yKHGYaaYbq +06/24/2018,Musicians,@BebeRexha,I wonder if there is a virus going around +06/24/2018,Musicians,@BebeRexha,Okay. I’ve been throwing up all day and now my manager is sick. Hot Sweats and throwing up and all and we are on a plane. God help us. 🤮🤮🤮 +06/23/2018,Musicians,@BebeRexha,Playing @B96Chicago @Pepsi #SummerBash TODAY! Get tix at the Allstate Arena box office. Come party with me… https://t.co/TyGptonAlO +06/23/2018,Musicians,@BebeRexha,Just took my 53rd flight of the year +06/23/2018,Musicians,@BebeRexha,😭🙆🏼‍♀️🙇🏼‍♀️ https://t.co/NWarq17nvd +06/23/2018,Musicians,@BebeRexha,I want an owl 🙇🏼‍♀️ like the one Harry Potter has. But I wanna rescue one. I dunno. Is that weird? +06/23/2018,Musicians,@BebeRexha,The twist on Expectations. Every song is about bear. https://t.co/DrhJvIffTM +06/23/2018,Musicians,@BebeRexha,I’m A Mess https://t.co/gr633qpvMS +06/23/2018,Musicians,@BebeRexha,“Ferrari” https://t.co/fd421KOXWw +06/23/2018,Musicians,@BebeRexha,RT @pandoramusic: .@BebeRexha's anticipated debut album is here. Find out what 3 words the pop singer-songwriter chose to describe ‘Expecta… +06/23/2018,Musicians,@BebeRexha,Going to bed with the biggest smile on my face. I’ll never forget this day. Ever. Thank you to everyone around the… https://t.co/d55dwjkeBh +06/22/2018,Musicians,@BebeRexha,Got one. https://t.co/nZ2Hi0sGkS +06/22/2018,Musicians,@BebeRexha,Going to target on 34th street nyc to buy my album 🙇🏼‍♀️ +06/22/2018,Musicians,@BebeRexha,My mood all day @radiodisney #RDMAS https://t.co/TI15vbH27y +06/22/2018,Musicians,@BebeRexha,Holy shit #3 worldwide 🌎 🌍😭 https://t.co/pxFJT9gHjR +06/22/2018,Musicians,@BebeRexha,RT @GMA: SURPRISE! Congrats to @BebeRexha for winning #TheFreshest and #PlayItAgain at the #RDMA! Make sure to watch the @RadioDisney Music… +06/22/2018,Musicians,@BebeRexha,"RT @chartdata: US Certifications (@RIAA): @BebeRexha, Expectations Gold (500,000)." +06/22/2018,Musicians,@BebeRexha,Expectations is certified GOLD on the first day. I am speechless. Taking it all in. At breakfast with my family and friends. ❤️❤️❤️ +06/22/2018,Musicians,@BebeRexha,"RT @billboard: .@BebeRexha rocks Central Park with ""I'm a Mess"" performance on ""GMA"" https://t.co/cqMdsqi4wJ https://t.co/xp1ZNliw77" +06/22/2018,Musicians,@BebeRexha,RT @radiodisney: We have our first #RDMA winner! Congrats to @BebeRexha on winning #TheFreshest AND #PlayItAgain for #MeantToBe with @FLAGA… +06/22/2018,Musicians,@BebeRexha,"RT @Spotify: Everything you expected. +@beberexha's debut album is here. Listen now https://t.co/EyFjWT5Ank https://t.co/3YUiYD4Ad3" +06/22/2018,Musicians,@BebeRexha,RT @WhaleReport: Bebe Rexha’s just released her new album #Expectations and it has already reached the top ten in 47 countries around the w… +06/22/2018,Musicians,@BebeRexha,"RT @BBRexhaCharts: WE DID IT, REXHARS! + +@BebeRexha won two categories on Radio Disney Music Awards at the categories ""The Freshest: Best Ne…" +06/22/2018,Musicians,@BebeRexha,#Expectations is out everywhere now. https://t.co/y3ag0j8lKz https://t.co/XVW9GqW46b +06/22/2018,Musicians,@BebeRexha,"RT @GMA: STILL AHEAD ON @GMA: @BebeRexha performs LIVE in Central Park! GET TO A TV! + +RT if you're excited! + +Tweet us using #BEBEREXHAonGM…" +06/22/2018,Musicians,@BebeRexha,Just got to @GMA!!!!!! https://t.co/pzsmanVtt6 +06/22/2018,Musicians,@BebeRexha,Unreal. I’ll never forget this. https://t.co/FjvqgV74hN +06/22/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: .@BebeRexha's 'Expectations' is charting in the top 10 of 26 countries, including the UK." +06/22/2018,Musicians,@BebeRexha,"RT @amazonmusic: .@BebeRexha insta takeover happening NOW https://t.co/6nBtmpSoBA +#ExpectationsIsComing https://t.co/M8P5VJhLuo https://t.…" +06/21/2018,Musicians,@BebeRexha,"RT @GMA: GET READY. #BEBEREXHAonGMA tomorrow in Central Park! Who's excited?! + +See you bright and early, @beberexha! https://t.co/6qh1dgcrCQ" +06/21/2018,Musicians,@BebeRexha,😭🙏🏼 https://t.co/YVDzZ2Defo +06/21/2018,Musicians,@BebeRexha,"RT @eshaangill: @BebeRexha Congratulations! You’re already #1 at the Pop Charts on iTunes (India🇮🇳) +and +#4 on iTunes Chart (India🇮🇳) +In…" +06/21/2018,Musicians,@BebeRexha,RT @stylesmitchwll: @BebeRexha PLEASE LOOK THIS 😭😭😭😭 https://t.co/MHRFbvogyb +06/21/2018,Musicians,@BebeRexha,Okayyy UK. 😁😁😁 https://t.co/ZqLjjEhMJT +06/21/2018,Musicians,@BebeRexha,Wow https://t.co/ZLP6M7FC4X +06/21/2018,Musicians,@BebeRexha,🙇🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️ https://t.co/nUQkR1MGsF +06/21/2018,Musicians,@BebeRexha,"RT @BebeRexhaHQ: #Expectations is Top 10 in 7 countries already! @BebeRexha + +iTunes: +#2 Fiji +#4 New Zealand +#4 Taiwan +#6 Indonesia +#7 Aust…" +06/21/2018,Musicians,@BebeRexha,Yesssss. Airing next week though xoxo https://t.co/ZxHEbC4ZiI +06/21/2018,Musicians,@BebeRexha,Got you https://t.co/rsZ52qmjLw +06/21/2018,Musicians,@BebeRexha,My favoriteeeeee hoodie ever 😭 https://t.co/sRTd6roN1w https://t.co/wY3eOlsWeP +06/21/2018,Musicians,@BebeRexha,🛒 🛍 https://t.co/sRTd6roN1w +06/21/2018,Musicians,@BebeRexha,I always knew I loved Brazil 🙇🏼‍♀️ +06/21/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: ITunes BR 🇧🇷: + +30. I'm a mess - @BebeRexha (+10) NEW PEAK + +#ExpectationsTomorrow https://t.co/m87xw5bYgT" +06/21/2018,Musicians,@BebeRexha,Me waiting for everyone’s reactions on expectations... https://t.co/bP50GahgQF +06/21/2018,Musicians,@BebeRexha,Pre-save #Expectations on @Spotify before it comes out TONIGHT: https://t.co/yBcnEr5xYW +06/21/2018,Musicians,@BebeRexha,Good morning everyone. My album comes out at midnight tonight. I’m low key freaking out. #Expectations +06/21/2018,Musicians,@BebeRexha,"RT @BebeRexha_Peru: Countdown: +#ExpectationsTomorrow +@BebeRexha https://t.co/8GjKJk5Nd6" +06/21/2018,Musicians,@BebeRexha,RT @gabriel5souza: 1 Day Expectations @BebeRexha https://t.co/roZc5NqT0S +06/21/2018,Musicians,@BebeRexha,RT @Andr3w_95: This album is like I Don’t Wanna Grow Up meets All Your Fault. It’s cohesive yet experiments. Honestly the album of 2018 😭😭😭… +06/21/2018,Musicians,@BebeRexha,Hear #Expectations the second it comes out on Friday 💗 Pre-add it now on @AppleMusic: https://t.co/no15DAEqt2 https://t.co/oFE2VRqc87 +06/20/2018,Musicians,@BebeRexha,Yes https://t.co/rY4pUXnoFg +06/20/2018,Musicians,@BebeRexha,Sometimes I just go to the bathroom and sit on the toilet to get away from everyone and have me time. +06/20/2018,Musicians,@BebeRexha,I’m cominggggggg @ElvisDuranShow stuck in a little traffic!!! Don’t miss it everyone!!!!! 8:35am est https://t.co/gfTOwAyFfj +06/20/2018,Musicians,@BebeRexha,RT @ElvisDuranShow: WEDNESDAY: We have our girl @beberexha 🔥😍 LIVE in-studio with us at 8:35 AM ET for some quality BFF time. 😊💯 Tune in: h… +06/20/2018,Musicians,@BebeRexha,@fcknjaaay you are amazing +06/20/2018,Musicians,@BebeRexha,RT @fcknjaaay: I heard it was the one year anniversary of @BebeRexha’s iconic instagram live so I had to do this 💀 if you’re a pervert get… +06/19/2018,Musicians,@BebeRexha,Thank you Rexhars #ImAMess https://t.co/4DMOMJ43dY +06/19/2018,Musicians,@BebeRexha,https://t.co/fHBv7avSBG +06/19/2018,Musicians,@BebeRexha,Thank you @BBCR1 for playing #ImAMess on Best New Pop 💗 https://t.co/AbwQxOOngl +06/19/2018,Musicians,@BebeRexha,😱OH MY GOD https://t.co/L5MrzVNyOP +06/19/2018,Musicians,@BebeRexha,https://t.co/4nmaxQFqRo +06/19/2018,Musicians,@BebeRexha,Lmfaoooooo 😂😂 https://t.co/l8906SUFUU +06/19/2018,Musicians,@BebeRexha,RT @chayennemjq: @BebeRexha What happens when you are in the store and ferrari comes on https://t.co/mp61ZCxRvl +06/19/2018,Musicians,@BebeRexha,3 days till expectations. +06/19/2018,Musicians,@BebeRexha,He banged on the door. Trust me the driver saw him. https://t.co/UFflSjSmGD +06/19/2018,Musicians,@BebeRexha,Power trip https://t.co/rB4c7dLA7U +06/19/2018,Musicians,@BebeRexha,I just saw someone run to the bus and literally touch the door and the driver closed the door on him and drove away. 😔 @MTA +06/19/2018,Musicians,@BebeRexha,"Dear @MTA bus drivers, if you see someone running for the bus, waiting 2 secs won’t kill you but will make someone’s day better." +06/19/2018,Musicians,@BebeRexha,Cool beans +06/19/2018,Musicians,@BebeRexha,🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️ https://t.co/2ll7dVh55c +06/19/2018,Musicians,@BebeRexha,Yay new Merch done. Comingggg +06/19/2018,Musicians,@BebeRexha,💕💕💕💕❤️ https://t.co/EGWY0Qse7t +06/19/2018,Musicians,@BebeRexha,RT @dirtydannyyy: me & my 2 bebe rexha mutuals next friday when the album comes out https://t.co/pHE2wHr15A +06/19/2018,Musicians,@BebeRexha,RT @vinrago5: Thanks @BebeRexha for coming back to Tville to talk to the Student Organization!! It was so great and inspirational to hear s… +06/19/2018,Musicians,@BebeRexha,"RT @nikki_hinz: thank you so much for coming to tottenville!! my friends and I had the best time ever, also btw you sound amazing live 💜💜💜💜…" +06/19/2018,Musicians,@BebeRexha,😌😌😌 https://t.co/eRx1KNLDOV +06/19/2018,Musicians,@BebeRexha,"RT @RoTierno: Today @TottenvilleSO18 had a Sing-a-Long with @BebeRexha , how was your day? @THSSTEAM @PirateTVTHS @SIBFSC #PirateFam #Pirat…" +06/18/2018,Musicians,@BebeRexha,"RT @TIDAL: Celebrate #Pride with playlists from @BebeRexha, @AnneMarie, @musicpronoun and more on https://t.co/DOEFADJLse https://t.co/OC33…" +06/18/2018,Musicians,@BebeRexha,"RT @lottieslilo: I made makeup inspired by #MeantToBe music video + +@BebeRexha I'm so proud of you, queen. You deserve everything that you…" +06/18/2018,Musicians,@BebeRexha,"I’m looking for allllll your #ImAMess videos. Covers, musicallys, reactions, dances, reply them to me 💞" +06/18/2018,Musicians,@BebeRexha,"RT @amazonmusic: Spend your #MusicMonday w. @BebeRexha! #JustAsk, ""Alexa, play the Song of the Day"" to stream ""I'm a Mess"" https://t.co/aZC…" +06/18/2018,Musicians,@BebeRexha,RT @stoesselsabby: i'm a mess by @BebeRexha is a masterpiece +06/18/2018,Musicians,@BebeRexha,RT @JDudleyRowe: Just finished watching @BebeRexha’s On the Record @AppleMusic film. I love her so much because she continues to inspire me… +06/18/2018,Musicians,@BebeRexha,RT @Jessie88967722: ‘I’m a mess’ by Bebe Rexha is actually amazing I recommend that everyone gives it a listen and downloads it she deserve… +06/18/2018,Musicians,@BebeRexha,"RT @IhlenAmber: Hey @BebeRexha I’m a mess over you and obsessed with your new single “I’m a mess” because it’s so relatable! +Coincidence? I…" +06/18/2018,Musicians,@BebeRexha,RT @Mbreezy_xo: I’m in love with song & i can’t wait for Friday @BebeRexha https://t.co/NX57mkKr21 +06/18/2018,Musicians,@BebeRexha,😱 https://t.co/OUV7xpmTsg +06/18/2018,Musicians,@BebeRexha,Yesterday. https://t.co/nnyKJsn3Ht +06/18/2018,Musicians,@BebeRexha,RT @UpdatesBeRexha: 📷| Bebe na ściance #Kiss108kissConcert 😍 https://t.co/NFJJvNDBz3 +06/18/2018,Musicians,@BebeRexha,@LokiIsOurKingxx My pleasure babe +06/18/2018,Musicians,@BebeRexha,Done. https://t.co/IkxoNV6p1l +06/18/2018,Musicians,@BebeRexha,@Austinn_Blakee ❤️❤️❤️ +06/18/2018,Musicians,@BebeRexha,"RT @CVanBramer: Honestly cannot stop listening to I’m a mess @BebeRexha , it’s such a bop!" +06/18/2018,Musicians,@BebeRexha,RT @_Cmnunez_: Can’t wait to hear her new album that’s coming up this Thursday and can’t wait to see her too at @GMA @BebeRexha 😭😭😭❤️❤️❤️💗😂… +06/18/2018,Musicians,@BebeRexha,@nickrvaz373 @Kiss108 Looooove +06/18/2018,Musicians,@BebeRexha,RT @loufromdonny: THIS WEEK WE FINALLY GOING TO HAVE EXPECTATIONS IN OUR HANDS AND MY WIG ISN’T READY @BebeRexha +06/18/2018,Musicians,@BebeRexha,"RT @BebeRexha_Peru: I'm a Mess = HIT +#ExpectationsIsComing 🔥 @BebeRexha https://t.co/cljcww4xoK" +06/18/2018,Musicians,@BebeRexha,Can’t wait. @B96Chicago @EBUNC1 https://t.co/kNzSWC2loC +06/18/2018,Musicians,@BebeRexha,RT @lizlyngad: ⁦@BebeRexha⁩ has made ⁦@blainelyngad⁩’s night she’s in TEARS!! IT IS LOVELY!! https://t.co/f7oZtbvmCU +06/18/2018,Musicians,@BebeRexha,@hargrove_carter Thank you so much for watching Babe. +03/26/2018,Musicians,@imjmichaels,Little gems! I switched my twitter & Instagram handles to @juliamichaels today! Just giving you a heads up!!! +07/01/2018,Musicians,@CalvinHarris,Thank you to everyone supporting this song!!! https://t.co/u1j4xKfjy6 +06/30/2018,Musicians,@CalvinHarris,1 year today since Funk Wav Bounces Vol.1 came out! https://t.co/jLeseR6bFE +06/24/2018,Musicians,@CalvinHarris,Yes I’m Scottish but I don’t care the legend Harry Kane picked our song hahahahaha https://t.co/r0JclobgzN +06/22/2018,Musicians,@CalvinHarris,"Full One Kiss remix pack is out now with Extended, @R3HAB @Jauzofficial @OliverHeldens @ValentinoKhan… https://t.co/5UiA8qbpNz" +06/15/2018,Musicians,@CalvinHarris,"This guy is already a radio icon, make it official by voting for him to get in radio hall of fame : https://t.co/r6CFCXoM7N" +06/15/2018,Musicians,@CalvinHarris,The @ValentinoKhan mix of One Kiss is out now ! Listen here: https://t.co/0rgtNoj20E +06/13/2018,Musicians,@CalvinHarris,"One Kiss @ValentinoKhan remix is out Friday !! +Presave here: +https://t.co/O89pwabIGx" +06/08/2018,Musicians,@CalvinHarris,"One Kiss 8 weeks at number 1 in UK now! Back at number 1 WW iTunes. Unbelievable! So happy you’re enjoying it, than… https://t.co/QP5s57h8id" +06/06/2018,Musicians,@CalvinHarris,"One Kiss @R3HAB remix this Friday !! Presave here !! +https://t.co/4j9Nj4X38L" +06/02/2018,Musicians,@CalvinHarris,RT @DUALIPA: WHAT A DAY @CalvinHarris 💥💥 https://t.co/9mutRQUfFY +06/01/2018,Musicians,@CalvinHarris,https://t.co/gf95qr4iRg https://t.co/UbRQguG6YD +06/01/2018,Musicians,@CalvinHarris,"7 weeks at number 1 in UK now !! Magical +Thank u +@DUALIPA @Jessiereyez" +06/01/2018,Musicians,@CalvinHarris,RT @DUALIPA: 7 BABY 7!!!!! #ONEKISS COME ONNNNN @CalvinHarris https://t.co/bdvkbaUlbW +06/01/2018,Musicians,@CalvinHarris,"One Kiss @OliverHeldens remix is out now !! + +https://t.co/0w9ZdYC12d" +05/28/2018,Musicians,@CalvinHarris,"One Kiss @DUALIPA is the biggest song in the world rn number 1 global iTunes, Apple Music & Spotify thank you so much !!!!!! 🤯🤯🤯" +05/28/2018,Musicians,@CalvinHarris,"The @OliverHeldens remix of One Kiss is coming on Friday ... +https://t.co/O89pwabIGx" +05/28/2018,Musicians,@CalvinHarris,"Made a Funk Wav playlist for those of you who keep asking me where Vol 2 is + +https://t.co/DdZxB1sRNH" +05/26/2018,Musicians,@CalvinHarris,Spot on https://t.co/B2UcFcCT84 +05/25/2018,Musicians,@CalvinHarris,"RT @BBCR1: SIX WEEKS at the top of the #OfficialChart? + +@CalvinHarris and @DUALIPA have got it in the bag with 'One Kiss', which is going a…" +05/25/2018,Musicians,@CalvinHarris,Thank you ! https://t.co/PVaVNQvCtk +05/25/2018,Musicians,@CalvinHarris,RT @DUALIPA: Sooo #OneKiss w @calvinharris is number 1 for 6 weeks and has just gone PLAT PLAT 💿 I have been found staring into the abyss (… +05/25/2018,Musicians,@CalvinHarris,One Kiss @ZHUmusic remix is out now ! https://t.co/Uf1MW58via +05/22/2018,Musicians,@CalvinHarris,"One Kiss Zhu remix coming Friday ! @ZHUmusic + +Presave here https://t.co/uRHnPdhGyS https://t.co/nBqRfECG1t" +05/21/2018,Musicians,@CalvinHarris,"#1 global iTunes +#2 global Spotify +with @DUALIPA thank you world !!!! ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️" +05/19/2018,Musicians,@CalvinHarris,"RT @CalvinHarris: ONE KISS w/ @DUALIPA out now ! + +iTunes - https://t.co/krYlw0IF0z + +Apple Music - https://t.co/P94kZJ8FnD + +Spotify - https:…" +05/19/2018,Musicians,@CalvinHarris,Blessed to have put Frank and Migos on the same record #HumbleBragAboutSomething +05/18/2018,Musicians,@CalvinHarris,RT @Jauzofficial: ONE KISS REMIX IS OUT NOW!!! Thx @CalvinHarris @DUALIPA for letting me put my touch on such a dope record! OUT NOW EVERYW… +05/18/2018,Musicians,@CalvinHarris,5️⃣ !!!!!!!! https://t.co/7kImLJ6M4t +05/17/2018,Musicians,@CalvinHarris,"Thank you ! +Also how deep is your love on Jimmy Fallon was one of my favourites https://t.co/ZoknShQroP" +05/17/2018,Musicians,@CalvinHarris,Listen for the premiere of One Kiss @Jauzofficial Remix 10am EST tomorrow w/ @Ridanaser on #BPM @sxmelectro https://t.co/X7xv1oBIeW +05/15/2018,Musicians,@CalvinHarris,"Jauz remix coming ! + +One Kiss w @DUALIPA @Jauzofficial remix coming Friday presave here !! +https://t.co/uRHnPdhGyS https://t.co/tJUDqhyhWl" +05/15/2018,Musicians,@CalvinHarris,Back at #1 WW iTunes with @DUALIPA thank u world !!! xxx 🙏🙏🙏 +05/12/2018,Musicians,@CalvinHarris,Thank you!!!!! https://t.co/tCzppNAEcN +05/11/2018,Musicians,@CalvinHarris,4 weeks !!! https://t.co/63KXGqv4Ze +05/09/2018,Musicians,@CalvinHarris,https://t.co/QzZfZdrRZ9 One Kiss behind the scenes w @DUALIPA @emilnava +05/08/2018,Musicians,@CalvinHarris,5th in the world @Spotify that’s maddddd thank you !!! 🏴󠁧󠁢󠁳󠁣󠁴󠁿 https://t.co/kOw28UDou6 +05/08/2018,Musicians,@CalvinHarris,Thank you @KidKelly and @MikeyPiff for putting One Kiss on the @SiriusXMHits1 playlist !! 🙏🙏🙏 https://t.co/5xrm1WWZeL +05/05/2018,Musicians,@CalvinHarris,Looool https://t.co/FpxvTY6CWb +05/04/2018,Musicians,@CalvinHarris,Thank you!!!!!!! https://t.co/zwaQRXCPt4 +05/03/2018,Musicians,@CalvinHarris,NEW VIDEO ALERT @DUALIPA https://t.co/j9UUDgVHPz +05/03/2018,Musicians,@CalvinHarris,😀😀😀 https://t.co/1yXjQCvHqF +05/03/2018,Musicians,@CalvinHarris,I love this video thank you @emilnava https://t.co/j9UUDgVHPz +05/02/2018,Musicians,@CalvinHarris,Appreciate your confidence but I’m Scottish https://t.co/wrUyvejHjT +05/02/2018,Musicians,@CalvinHarris,RT @clockworkbea: @CalvinHarris King of holding a glass for 10 seconds +05/02/2018,Musicians,@CalvinHarris,Welcome 2 my world https://t.co/rSaMbvuzyT +05/02/2018,Musicians,@CalvinHarris,"ONE KISS VIDEO @DUALIPA + +https://t.co/bA5eoyzcph" +05/02/2018,Musicians,@CalvinHarris,Rollin platinum in US ! @thegreatkhalid @1future https://t.co/BhoYhJPPkB +05/02/2018,Musicians,@CalvinHarris,"RT @AppleMusic: The official video for #OneKiss is here! +@CalvinHarris x @DUALIPA +Watch now, only on Apple Music: https://t.co/o2igWNvhlJ h…" +05/01/2018,Musicians,@CalvinHarris,Official video for One Kiss w/ @DUALIPA now streaming exclusively on @AppleMusic https://t.co/lZGO9BE2Mr +04/30/2018,Musicians,@CalvinHarris,"One Kiss w/ @DUALIPA video premieres tomorrow on @AppleMusic ! +https://t.co/Waq9WdJKJf https://t.co/OgC8eCwpCS" +04/27/2018,Musicians,@CalvinHarris,Thank you !! https://t.co/EONApRrHNZ +04/27/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/6MWiVrJ6ud +04/27/2018,Musicians,@CalvinHarris,"RT @AppleMusic: The #Alone (@CalvinHarris Remix) with @halsey x @stefflondon needs to be on your weekend playlist. +https://t.co/NrSjK6StM0" +04/24/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS VIDEO W @calvinharris COMING VERY SOON!!! BUT 4 NOW STREAM IT LINK IT SHARE IT W YO FRENDS https://t.co/5vLjJSbyEO 💕💕… +04/24/2018,Musicians,@CalvinHarris,"One Kiss video on it’s way 🍸 + +https://t.co/6OGEyd3QOF https://t.co/TiDOCkF44W" +04/24/2018,Musicians,@CalvinHarris,👋 https://t.co/PjKFQc3iXT +04/23/2018,Musicians,@CalvinHarris,@LaidbackLuke Me too what a tune +04/23/2018,Musicians,@CalvinHarris,Thank you 🙏 @DUALIPA https://t.co/njdearbI0Z +04/20/2018,Musicians,@CalvinHarris,"Devastating news about Avicii, a beautiful soul, passionate and extremely talented with so much more to do. My hear… https://t.co/v4kho3FXmq" +04/20/2018,Musicians,@CalvinHarris,RT @DUALIPA: Catch @CalvinHarris and I on The Graham Norton Show TONIGHT on BBC One from 22:30! #OneKiss ❤️ https://t.co/b1KXZDZ15q +04/20/2018,Musicians,@CalvinHarris,RT @Ingrosso: @CalvinHarris @halsey Sick remix +04/20/2018,Musicians,@CalvinHarris,"RT @KDariiidah: 🚀🚀🚀🚀 + +@CalvinHarris is so legit. https://t.co/4mLg2apESs" +04/20/2018,Musicians,@CalvinHarris,RT @17xlm: .@CalvinHarris just keeps dropping banger after banger. 💥💥 https://t.co/7RGNCnM5AI +04/20/2018,Musicians,@CalvinHarris,😀 https://t.co/qMMvF4LLmU +04/20/2018,Musicians,@CalvinHarris,@Ingrosso @halsey Thank you and happy birthday !!!! +04/20/2018,Musicians,@CalvinHarris,"Brand new @halsey remix out now! + +Apple Music - https://t.co/iT3H6UQd0z + +Spotify - https://t.co/to8ziic4Or + +iTunes… https://t.co/GyK7jgGpyP" +04/20/2018,Musicians,@CalvinHarris,"RT @billboarddance: .@CalvinHarris teases killer remix of @Halsey's ""Alone"" feat. @StefflonDon https://t.co/QUMAx4saRI https://t.co/VL1dsMh…" +04/19/2018,Musicians,@CalvinHarris,RT @dancingastro: Welcome to Calvin Harris season 🔥 https://t.co/oyO9snYVaj +04/18/2018,Musicians,@CalvinHarris,My remix of @halsey Alone w/ @stefflondon is out this Friday ! https://t.co/DMggdFPS8z +04/17/2018,Musicians,@CalvinHarris,Ah thank you boss !! https://t.co/uJNgy4Eoy1 +04/17/2018,Musicians,@CalvinHarris,And thank U once again ! @BBMAs https://t.co/rojdEsZJOz +04/17/2018,Musicians,@CalvinHarris,Thank u very much @BBMAs https://t.co/py2oZFY1tN +04/17/2018,Musicians,@CalvinHarris,I can’t find the old man emoji https://t.co/Eeumaq3CkL +04/16/2018,Musicians,@CalvinHarris,🌞🌞🌞 https://t.co/ETaMIpZ8Zl https://t.co/oDVtt2hV5f +04/16/2018,Musicians,@CalvinHarris,RT @MTV: Pro-tip: Start off your day by blasting @DUALIPA x @CalvinHarris' #OneKiss 😘 https://t.co/TStab3qY5g +04/15/2018,Musicians,@CalvinHarris,@brothersosborne https://t.co/jaQRJC6Zxq +04/12/2018,Musicians,@CalvinHarris,RT @DUALIPA: This is craaaaazyyy!! Lets keep this up https://t.co/LCDMBzvi3w ❤️❤️ https://t.co/EBpVQwDtbp +04/11/2018,Musicians,@CalvinHarris,"Calvin Harris Radio is on Apple Music now too 🤠 +https://t.co/jn8yzokFCl" +04/11/2018,Musicians,@CalvinHarris,Wowwww thank you !!! https://t.co/bqmw1DrSaY +04/11/2018,Musicians,@CalvinHarris,2 songs i wish were on streaming platforms Cevin fisher burning up original mix & Snoop Dogg raphael saadiq midnight love +04/10/2018,Musicians,@CalvinHarris,Sharing link w my friends 😁 https://t.co/R7RdJLAdMe +04/10/2018,Musicians,@CalvinHarris,RT @ConnorBrosnan: @CalvinHarris @DUALIPA safe for releasing probably the biggest banger of the year❤️ +04/10/2018,Musicians,@CalvinHarris,RT @emilyhoban95: Well @CalvinHarris & @DUALIPA song is a little summer sizzler +04/10/2018,Musicians,@CalvinHarris,RT @Louisemoran30: Nice one @CalvinHarris and @DUALIPA I love it! ⭐️💕🎼🎤📀😘 +04/09/2018,Musicians,@CalvinHarris,"Calvin Harris Radio just updated + +New tracks from @djsnake @Jauzofficial @toddedwards3000 @DUALIPA & me 🤠 + +https://t.co/IxlDxR7ehB" +04/09/2018,Musicians,@CalvinHarris,Listen to One Kiss with @DUALIPA on @AppleMusic https://t.co/P94kZJ8FnD +04/09/2018,Musicians,@CalvinHarris,Lol https://t.co/6BVkgXPZFc +04/08/2018,Musicians,@CalvinHarris,RT @_patrii26: Just in love with this song🔥🔥🇮🇹 @CalvinHarris @DUALIPA this is insane man! https://t.co/zVASG6Tjfr +04/08/2018,Musicians,@CalvinHarris,RT @clockworkbea: Listening to one kiss by @CalvinHarris and @DUALIPA I’m so obsessed! +04/08/2018,Musicians,@CalvinHarris,RT @charewall: Obsessin' over ONE KISS 💋 @CalvinHarris @DUALIPA it's on repeat 🔥 https://t.co/vOwlgMMs5i +04/08/2018,Musicians,@CalvinHarris,"RT @_MJCN_: The track ""One kiss"" by @CalvinHarris & @DUALIPA is fire 🔥" +04/08/2018,Musicians,@CalvinHarris,RT @K3llzie: Little bit obsessed with One Kiss 😍 @DUALIPA @CalvinHarris +04/08/2018,Musicians,@CalvinHarris,RT @sarahmac_ox: in love with @DUALIPA and @CalvinHarris new tune; one kiss 💋 +04/08/2018,Musicians,@CalvinHarris,"Thank u +Refreshment is my primary aim ! https://t.co/10xf1rfBCe" +04/08/2018,Musicians,@CalvinHarris,RT @Too8oo: @DUALIPA and @CalvinHarris made a bop. One Kiss is my favorite song right now and I can't stop playing that song. What a great… +04/08/2018,Musicians,@CalvinHarris,RT @Found_Squilly: @DUALIPA x @CalvinHarris 👀🔥🔥🔥 +04/08/2018,Musicians,@CalvinHarris,"RT @ojas_gupta_: Was waiting so much for a new song to obsess with , one kiss ♥️♥️ thank you @CalvinHarris @DUALIPA" +04/08/2018,Musicians,@CalvinHarris,RT @vicctorlcc: I CAN’T STOP LISTENING ONE KISS @CalvinHarris and @DUALIPA 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +04/08/2018,Musicians,@CalvinHarris,@jonjace24 @luiferarancibia @MrDkbza @samsheffer @rihanna I wrote the lyrics 🙃 +04/07/2018,Musicians,@CalvinHarris,RT @DrewChadhall: That new @CalvinHarris @ @DUALIPA my goodness 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥💃💃💃💃💃💃💃💃💃💃💃💃 +04/07/2018,Musicians,@CalvinHarris,RT @arsenalking7: One kiss 🔥🔥🔥🔥 @CalvinHarris @DUALIPA +04/07/2018,Musicians,@CalvinHarris,RT @J18Jordan: Ok I am now hooked on the song “one kiss” @CalvinHarris @DUALIPA you done well #tune +04/07/2018,Musicians,@CalvinHarris,RT @fxckdelano: One kiss is so good tho @CalvinHarris @DUALIPA +04/07/2018,Musicians,@CalvinHarris,"RT @amazonmusic: #JustAsk, ""Alexa, play the Song of the Day"" & stream the new collab from @CalvinHarris & @DUALIPA, ""One Kiss"" https://t.co…" +04/07/2018,Musicians,@CalvinHarris,RT @DUALIPA: Ofcourse!! We’re very excited cc @CalvinHarris 💕💥 https://t.co/TsXrGHJkBV +04/07/2018,Musicians,@CalvinHarris,👋 https://t.co/RbWLGPV0CX +04/07/2018,Musicians,@CalvinHarris,RT @DuaReport: Check out the #OneKiss Snapchat filter available now! @DUALIPA @CalvinHarris 💋💥 https://t.co/8DZPAMNwsR +04/06/2018,Musicians,@CalvinHarris,"RT @Shazam: #OneKiss by @CalvinHarris & @DUALIPA will make you dance till your heart's content 💙💃🕺 + +Listen to our Song of the Day on @Appl…" +04/06/2018,Musicians,@CalvinHarris,"One Kiss w @DUALIPA is out today! Thank you @Spotify !!! +https://t.co/9OuOUKFRR2 https://t.co/LIRB3HgQbJ" +04/06/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS @CalvinHarris 🍒💥 https://t.co/sPsNU7FSWr +04/06/2018,Musicians,@CalvinHarris,"Listen to the world premiere of “One Kiss"" on @iHeartRadio https://t.co/TCq08fKwWa https://t.co/qwOZUy409B" +04/06/2018,Musicians,@CalvinHarris,😁❤️ https://t.co/PJe7JGl76M +04/06/2018,Musicians,@CalvinHarris,RT @BBCR1: Tonight's Hottest Record for @AnnieMac goes to the huge collab @CalvinHarris & @dualipa. Is this going to be big or what?! 😱🌶🌶🌶… +04/06/2018,Musicians,@CalvinHarris,Listen to One Kiss on @TIDAL !  https://t.co/Y4IMapPJUL +04/06/2018,Musicians,@CalvinHarris,Get #OneKiss with @DUALIPA on @AmazonMusic now: https://t.co/GbmwsBXPOr +04/06/2018,Musicians,@CalvinHarris,RT @Melvin_SK_: One Kiss by @CalvinHarris and @DUALIPA is the summer song I always wanted! 😍🍒🥥💖 +04/06/2018,Musicians,@CalvinHarris,"RT @AppleMusic: It's a bop. +Listen to @CalvinHarris x @DUALIPA's #OneKiss. +https://t.co/Fwz0Qbe85O" +04/06/2018,Musicians,@CalvinHarris,RT @harday: Listening to @CalvinHarris @DUALIPA #OneKiss for the 46th time this morning like https://t.co/4KzqdTr5jC +04/06/2018,Musicians,@CalvinHarris,RT @djalice1075: That new @DUALIPA x @CalvinHarris song though 🔥 +04/06/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS w/ @CalvinHarris is out!! I hope this makes you wanna dance till your hearts content xxx https://t.co/5vLjJSt9wm http… +04/06/2018,Musicians,@CalvinHarris,RT @capliverpool: When you listen to the new @CalvinHarris and @DUALIPA 🔥😳😍 https://t.co/sM9298QrGz +04/06/2018,Musicians,@CalvinHarris,RT @__Avion__: This new @DUALIPA x @CalvinHarris is a fucking TUNE +04/06/2018,Musicians,@CalvinHarris,RT @itsAliStone: I’m loving “One Kiss” by @CalvinHarris & @DUALIPA 🙌🏻 let the House vibes in!!!! +04/06/2018,Musicians,@CalvinHarris,"RT @KarlaCardenas08: Thank you @CalvinHarris & @DUALIPA for blessing us with One Kiss + +2 of my absolute favs, I knew it’d be amaze 😍" +04/06/2018,Musicians,@CalvinHarris,RT @samuel_rider1: On repeat 😍 @CalvinHarris is a God of sound and @DUALIPA is an angel of vocals in this one. Don’t DM me #OneKissOutNow h… +04/06/2018,Musicians,@CalvinHarris,RT @waldosoboojie: OH MY GOD!! @DUALIPA @CalvinHarris WHAT DID YOU GUYS CREATE!!? THIS IS A BANGER! I LOVE IT 💥💥💥 https://t.co/sgFAcHdosE +04/06/2018,Musicians,@CalvinHarris,RT @zookepermusic: @CalvinHarris @DUALIPA you are a fuckin madman this record is so good goddamn +04/06/2018,Musicians,@CalvinHarris,RT @chemis_523: @DUALIPA @CalvinHarris best song I’ve heard in 2018 🤟🏻🤟🏻 https://t.co/6dXnYtYCHG +04/06/2018,Musicians,@CalvinHarris,RT @daniiiizle: @CalvinHarris @DUALIPA you guys did it 🤩🤩🤩 https://t.co/wXuXkA1wlw +04/06/2018,Musicians,@CalvinHarris,"ONE KISS w/ @DUALIPA out now ! + +iTunes - https://t.co/krYlw0IF0z + +Apple Music - https://t.co/P94kZJ8FnD + +Spotify -… https://t.co/rdUpCmw6Qn" +04/06/2018,Musicians,@CalvinHarris,https://t.co/P94kZJ8FnD +04/06/2018,Musicians,@CalvinHarris,RT @RaveenaSharma19: @CalvinHarris @DUALIPA One Kiss is everything & more than I expected it to be ! New Fav 💯💃🏻💋🙌🏻 +04/06/2018,Musicians,@CalvinHarris,RT @theknocks: oh fuck yeah @DUALIPA and @CalvinHarris coming with the eaaarly 90s house vibe +04/06/2018,Musicians,@CalvinHarris,"RT @itsmeluizfelipe: One kiss is all it takes, Fallin' in love with me @DUALIPA @CalvinHarris https://t.co/x2iX0uySgu" +04/06/2018,Musicians,@CalvinHarris,🙏🙏🙏❤️❤️❤️ https://t.co/31lJ45KG48 +04/05/2018,Musicians,@CalvinHarris,"🤠🤠🤠 +Presave here : +https://t.co/UjLPmsGEqu https://t.co/yhEQzTCIkg" +04/03/2018,Musicians,@CalvinHarris,https://t.co/UjLPmsGEqu +04/02/2018,Musicians,@CalvinHarris,"Soon! +@DUALIPA +Presave here +https://t.co/pVU0dHTrzQ https://t.co/fWCcnHekjv" +03/30/2018,Musicians,@CalvinHarris,"New record coming very soon . . . +Presave on Spotify here +https://t.co/O89pwabIGx" +03/27/2018,Musicians,@CalvinHarris,Lol exactly https://t.co/HKjHozHcts +03/27/2018,Musicians,@CalvinHarris,Whatever do u mean ? https://t.co/wfsNswl7Tl +03/27/2018,Musicians,@CalvinHarris,☄️☄️☄️ https://t.co/hQA9Aj7kEO +03/26/2018,Musicians,@CalvinHarris,@GrooveArmada Legend +03/21/2018,Musicians,@CalvinHarris,😁 https://t.co/9GtxmMYJfJ +03/20/2018,Musicians,@CalvinHarris,"Calvin Harris Radio updated 🏂 + +https://t.co/JXCVPWCqVC" +03/19/2018,Musicians,@CalvinHarris,😭 https://t.co/F4XufsiXys +03/17/2018,Musicians,@CalvinHarris,❤️ https://t.co/snSF7IZlUW +03/13/2018,Musicians,@CalvinHarris,"RT @billboarddance: .@CalvinHarris shares new Spotify playlist featuring @virtual_self, @FatboySlim & more https://t.co/kxhIWpn9lI https://…" +03/10/2018,Musicians,@CalvinHarris,@Ingrosso Big tune +03/09/2018,Musicians,@CalvinHarris,Follow my new playlist on Spotify to hear what I’m listening to .... this week tracks by @virtual_self @MarcKinchen… https://t.co/ncFYe6ApGQ +03/09/2018,Musicians,@CalvinHarris,Omnia Las Vegas tonight for my first Vegas show of the year ! 😵 +02/28/2018,Musicians,@CalvinHarris,Big tune https://t.co/l0OdqpbL7W +02/27/2018,Musicians,@CalvinHarris,"RT @CalvinHarris: NUH READY NUH READY +W/ @PARTYNEXTDOOR +Spotify https://t.co/JnkHHvDcn1 +Apple Music https://t.co/YhrOQllf05 +Video https://t…" +02/23/2018,Musicians,@CalvinHarris,Slide is 1 year old today ! 🎂🎂🎂 https://t.co/OwhesrXWZj +02/22/2018,Musicians,@CalvinHarris,🚨🚨🚨 https://t.co/PJDclqDxAf +02/20/2018,Musicians,@CalvinHarris,@kaskade That’s great i might start using that one +02/17/2018,Musicians,@CalvinHarris,Thanks Henry! https://t.co/tcBIw4pKuh +02/16/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/o5L4Uo691r +02/16/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/zByVNYORaZ +02/14/2018,Musicians,@CalvinHarris,RT @XXL: This video is extremely trippy https://t.co/rbGNpBV2sE +02/14/2018,Musicians,@CalvinHarris,2 songs on this list?!?! I’ve peaked https://t.co/rfQVnucj5W +02/14/2018,Musicians,@CalvinHarris,Thank you @AppleMusic ! Nuh Ready Nuh Ready is in the #BestoftheWeek playlist https://t.co/4OnyuSVFeK +02/14/2018,Musicians,@CalvinHarris,🙌❤️ https://t.co/KC065P2adM +02/11/2018,Musicians,@CalvinHarris,I love Through the keyhole with Keith lemon +02/09/2018,Musicians,@CalvinHarris,Thank you Annie !! https://t.co/VSAV7LZBMr +02/09/2018,Musicians,@CalvinHarris,"“Nuh Ready Nuh Ready” with @PARTYNEXTDOOR available on @Spotify !!!!!!! #NewMusicFriday +https://t.co/JnkHHvDcn1 https://t.co/JyMf7PRoCw" +02/09/2018,Musicians,@CalvinHarris,❤️ https://t.co/jfC1HsCzWJ +02/09/2018,Musicians,@CalvinHarris,🙏 https://t.co/iMztY4QxrE +02/09/2018,Musicians,@CalvinHarris,Thank you Pete ! https://t.co/TjmahhE1pw +02/09/2018,Musicians,@CalvinHarris,🇬🇧🇬🇧🇬🇧 https://t.co/TdakHWOFSq +02/09/2018,Musicians,@CalvinHarris,Thank u vevo ❤️ https://t.co/vuL6mnhCnz +02/09/2018,Musicians,@CalvinHarris,Thank you!!! https://t.co/IqQ34Mbptu +02/09/2018,Musicians,@CalvinHarris,Thank you!!! https://t.co/ORkZXXBuPJ +02/08/2018,Musicians,@CalvinHarris,"NUH READY NUH READY +W/ @PARTYNEXTDOOR +Spotify https://t.co/JnkHHvDcn1 +Apple Music https://t.co/YhrOQllf05 +Video… https://t.co/v8zOuFBsIO" +02/08/2018,Musicians,@CalvinHarris,https://t.co/JnkHHvDcn1 +02/08/2018,Musicians,@CalvinHarris,https://t.co/eoESolIHSJ +02/08/2018,Musicians,@CalvinHarris,https://t.co/wuvlmrR4Wc +02/08/2018,Musicians,@CalvinHarris,RT @billydakiduk: OMFG new @CalvinHarris @partynextdoor just hit the inbox and it's ABSOLUTE FIRE!!!! 🔥🔥🔥 +02/08/2018,Musicians,@CalvinHarris,RT @TODDLAT: Final eve of holdin it for @DJTarget on @1Xtra and gonna be chattin to @CalvinHarris about lots of random ish .. 📻🤷🏼‍♂️ .. 7pm… +02/08/2018,Musicians,@CalvinHarris,"RT @Beats1: 🚨 BREAKING NEW MUSIC! 🚨 +@CalvinHarris joins @zanelowe to talk 2018 + the new track #NuhReadyNuhReady! Listen: +11AM LA / 2PM NYC…" +02/08/2018,Musicians,@CalvinHarris,https://t.co/YhwljQaF9C +02/06/2018,Musicians,@CalvinHarris,"No sir, a whole new experience ⬆️ https://t.co/cFrpJ8z9Ed" +02/06/2018,Musicians,@CalvinHarris,"Thursday +Nuh Ready Nuh Ready +w/ @partynextdoor https://t.co/16EcGeDpE8" +02/04/2018,Musicians,@CalvinHarris,https://t.co/ihrRvdAe3Y +01/31/2018,Musicians,@CalvinHarris,"Now my beard is gone, the experiment completed and I can move forward with 2018! +God bless and thank you for your support !!!" +01/31/2018,Musicians,@CalvinHarris,"But unfortunately this weekend I learned that even a new beard has its limitations. +On Sunday I lost out to the in… https://t.co/7hAtpFkCBq" +01/31/2018,Musicians,@CalvinHarris,"Last year I grew a big ol beard in order to be taken seriously by the Grammys as a producer. +It worked to an exten… https://t.co/05GyZV3fWk" +01/27/2018,Musicians,@CalvinHarris,Amusement arcade in Moscow +01/26/2018,Musicians,@CalvinHarris,Eternally grateful +01/18/2018,Musicians,@CalvinHarris,In 2018 movin on from Funk Wav sound thank u for joining me on my musical journey haha +01/17/2018,Musicians,@CalvinHarris,Thank u!! https://t.co/Qr06PBIQqG +01/17/2018,Musicians,@CalvinHarris,@enterwboldness Unbelievable work x +01/17/2018,Musicians,@CalvinHarris,Thank you Danny ! X https://t.co/n0Yhu5CjqD +01/17/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/mMV3ljdZm1 +01/17/2018,Musicians,@CalvinHarris,Belter x https://t.co/iMAZCWuurf +01/17/2018,Musicians,@CalvinHarris,Happy birthday to you too my friend 🎉🎉🎉 https://t.co/UK2vyoPXBK +01/17/2018,Musicians,@CalvinHarris,"Thank you for your birthday wishes +Been blessed with another year on earth !!! +Thank you universe !!!!!" +01/13/2018,Musicians,@CalvinHarris,Virtual self ghost voices is an absolute beast of a tune +01/13/2018,Musicians,@CalvinHarris,Inside the place +07/02/2018,Musicians,@DuaLipa,Thanks SF ❤️ Seattle I am HERE!!! Last show of this leg and off to europe we go❗️ Let’s gooooo xx https://t.co/YFR5xhqExW +07/02/2018,Musicians,@DuaLipa,@williambowerman Insane and terribly worrying!!! +07/02/2018,Musicians,@DuaLipa,❗️❗️❗️ Wildfires turn the San Francisco sky into an eerie shade of orange https://t.co/qCjwZ5tUtA +07/02/2018,Musicians,@DuaLipa,The San Francisco sky was insane today!! This has no filter on it!! ☄️ https://t.co/LweoAPEt6v +07/01/2018,Musicians,@DuaLipa,Woweeeee @CalvinHarris !!!! https://t.co/TzS9ZTazwQ +07/01/2018,Musicians,@DuaLipa,"Thank you San Francisco, love you forever ❤️ the self-titled tour, 30.06.2018 // shot by Pixie Levinson https://t.co/RDw0GByVoZ" +07/01/2018,Musicians,@DuaLipa,I KNEW THIS WOULD BE A GREAT SONG TO PLAY AFTER THE SHOW!! LOVE LOVE LOVE https://t.co/zDWGOzT6qu +07/01/2018,Musicians,@DuaLipa,We are a lil fam and i’m so lucky to have them https://t.co/jVDviBbLPV +07/01/2018,Musicians,@DuaLipa,RT @clairo: san francisco when i tell u this venue is big as hell.. it is big as hell +06/30/2018,Musicians,@DuaLipa,"RT @L0STlNDUA: my friend just sent me this from london! it makes me so happy seeing you everywhere, i’m so proud of you, have fun tonight a…" +06/30/2018,Musicians,@DuaLipa,"Thank you San Diego. Last night was the ultimate bounce back. Thank you for so much fun! The self-titled tour, 29.0… https://t.co/1D7OLKK5Ju" +06/30/2018,Musicians,@DuaLipa,San Diego pre-show 🖤 https://t.co/BIiMQSitLh +06/29/2018,Musicians,@DuaLipa,RT @ChartsDuaLipa: “One Kiss” has already sold over 3.5 million copies worldwide! Huge congrats @CalvinHarris & @DUALIPA. https://t.co/5C5H… +06/29/2018,Musicians,@DuaLipa,@heavenforgaves There are two more dates to be added in China but we can’t announce exactly where and what dates un… https://t.co/ULVIfXt8Tz +06/29/2018,Musicians,@DuaLipa,@vanillahalsey No m&g just a show rescheduling x +06/29/2018,Musicians,@DuaLipa,@aworldaIone No i’ll be doing some radio shows in the US then xx +06/29/2018,Musicians,@DuaLipa,Rescheduled Denver date xx https://t.co/MRxzYwB4g3 +06/29/2018,Musicians,@DuaLipa,"I love you guys. Thank you for being so caring, kind and sweet. Goodnight xx" +06/29/2018,Musicians,@DuaLipa,@tuliplipa @hotlightsiz It sucks but the painkillers help!! +06/29/2018,Musicians,@DuaLipa,@hotlightsiz Thanks iz i’ll try that tonight. Ive seen a doctor too and hopefully with your help and his I can go b… https://t.co/SES3JNyhzf +06/29/2018,Musicians,@DuaLipa,I can’t hear very well in my right ear due to the ear infection but ive been put on some medication that should hop… https://t.co/6Dgc4iYaqe +06/29/2018,Musicians,@DuaLipa,After a whole day in bed I went out on a sunset hike in Arizona and it was wonderful. 🌵🏜🌄💕 https://t.co/jO4mUidqt9 +06/28/2018,Musicians,@DuaLipa,❤️❤️❤️❤️ https://t.co/7JcnTn2ttX +06/27/2018,Musicians,@DuaLipa,No but now that im in bed for a couple days I would love some recommendations xx https://t.co/VfgtQQDaVq +06/27/2018,Musicians,@DuaLipa,With the prettiest girl @clairo ☁️ https://t.co/dOffyhAxAZ +06/27/2018,Musicians,@DuaLipa,Thank you for all your well wishes and hashtags they mean a lot. Still upset about last night and I wish it didnt i… https://t.co/8o8jsw9Z7R +06/27/2018,Musicians,@DuaLipa,RT @TeenChoiceFOX: Rule 1️⃣: You HAVE to retweet to vote for New Rules by @DuaLipa as #ChoiceSongFemaleArtist! #TeenChoice https://t.co/iDD… +06/27/2018,Musicians,@DuaLipa,RT @TeenChoiceFOX: One vote is all it takes. RETWEET now to vote One Kiss by @CalvinHarris and @DUALIPA for #ChoiceElectronicDanceSong! 😘 #… +06/27/2018,Musicians,@DuaLipa,@sighzach Happy Birthday darling!! Here’s to many more wonderful years! Love always xxx +06/27/2018,Musicians,@DuaLipa,Dua Diary - Atlanta https://t.co/4xezwYCPjh 💕 +06/27/2018,Musicians,@DuaLipa,Denver ❤️ https://t.co/8GCRnsyYkc +06/27/2018,Musicians,@DuaLipa,Somewhere over the rainbow https://t.co/zEAVDsPO2s +06/26/2018,Musicians,@DuaLipa,"My favourite poem. @rupikaur_ you are a force. It is truly all about togetherness, love, friends and family. What i… https://t.co/CUVY8L4V3O" +06/26/2018,Musicians,@DuaLipa,GRACIAS ESPAÑA ❤️❤️❤️❤️ https://t.co/SlxmqmzAVi +06/26/2018,Musicians,@DuaLipa,💓💓💓💓💓 https://t.co/NTYBAsTVoz +06/25/2018,Musicians,@DuaLipa,RT @vmagazine: Catch a glimpse inside @DUALIPA's V113 cover signing that shut down Soho. https://t.co/8l6lI2CttL https://t.co/9KtO8u2Jxf +06/25/2018,Musicians,@DuaLipa,"RT @DeezerFR: Gagnez vos places pour assister à la #DeezerSession de @DUALIPA le 4 juillet à Paris ➡️ https://t.co/HXKJBQrYMt 💃 +🎶 Concours…" +06/25/2018,Musicians,@DuaLipa,"Thank you Minneapolis, The self-titled tour, 24.06.2018 💖💥 // shot by Pixie Levinson https://t.co/WzQfSRw6Yk" +06/25/2018,Musicians,@DuaLipa,RT @dlipanews: Dua Lipa performing in Minneapolis tonight! (via huntr.elijah) https://t.co/GthjDXnr83 +06/25/2018,Musicians,@DuaLipa,RT @beech_lo: BIG MOOD @DUALIPA https://t.co/RgpYvbLwBT +06/25/2018,Musicians,@DuaLipa,My heart ❤️❤️❤️❤️❤️ https://t.co/jt0SjadGEQ +06/25/2018,Musicians,@DuaLipa,LOVE YOU GUYS! Tonight was sooo much fun! 💕💕💕 https://t.co/XstlLfGPAL +06/24/2018,Musicians,@DuaLipa,RT @CalvinHarris: Yes I’m Scottish but I don’t care the legend Harry Kane picked our song hahahahaha https://t.co/r0JclobgzN +06/24/2018,Musicians,@DuaLipa,Haaaa legend https://t.co/MZ2qVXt5eZ +06/24/2018,Musicians,@DuaLipa,We’ve released some extra tickets for the show tonight Minneapolis!! Come down after pride if you wanna party 💗💗 +06/24/2018,Musicians,@DuaLipa,"RT @henrywinter: ""One Kiss by Calvin Harris and Dua Lipa..."" Kane's choice after a Brazilian reporter tells him top player with a hat-trick…" +06/24/2018,Musicians,@DuaLipa,Ballerina batme for B96 Summer Bash 💗⚔️💗 shot by Pixie Levinson https://t.co/03CNVtkxrg +06/23/2018,Musicians,@DuaLipa,RT @PopCrave: “One Kiss” by @CalvinHarris & @DUALIPA now has over 300 MILLION streams on Spotify. This is Calvin’s tenth & Dua’s fourth son… +06/23/2018,Musicians,@DuaLipa,RT @deezeruk: Be in with a chance of winning a trip to Paris to see @DUALIPA perform an intimate Deezer Session on July 4th! Find out more… +06/23/2018,Musicians,@DuaLipa,RT @Spotify: When @dualipa met @shawnmendes... 🚗💚 https://t.co/Nv9axFQ410 +06/23/2018,Musicians,@DuaLipa,So sick!!! https://t.co/GEr6hBwaNm +06/23/2018,Musicians,@DuaLipa,Stopping traffic w @diplo in Chi https://t.co/68HknH08Ys +06/22/2018,Musicians,@DuaLipa,ABSOLUTELY!!!! My loves my heart my fam! Thank you xxxxx https://t.co/KcyrVHaTBG +06/22/2018,Musicians,@DuaLipa,My @youtubemusic fam holding down the fort in London town!! ITS ALL HERE ❤️❤️ @YouTube ❤️❤️ https://t.co/g7MmLycMcj +06/22/2018,Musicians,@DuaLipa,RT @DeezerDE: .@DUALIPA Fans aufgepasst! Wir schicken einen glücklichen Gewinner plus Begleitung nach Paris zur exklusiven #DeezerSession a… +06/22/2018,Musicians,@DuaLipa,Okkkkkkk chef!!! A BOOK! A COOK BOOK! the stuff we’d dream about ☁️☁️☁️☁️☁️☁️☁️☁️☁️ https://t.co/A6pb8BFBl5 +06/22/2018,Musicians,@DuaLipa,@frangilana Thank you!!! And Happy Birthday gorgeous girl have the best most extra day in the world! Big kisses xxxx +06/22/2018,Musicians,@DuaLipa,People of Tomorrow I'm ready for you! 🦋 @tomorrowland https://t.co/Zc30JDFYor +06/22/2018,Musicians,@DuaLipa,KISS 98.5 Radio show in Buffalo NY 💓 thank you xx // shot by Pixie Levinson https://t.co/c3gIV6t5eG +06/21/2018,Musicians,@DuaLipa,Melania makes first public appearance in 27 days... she shouldve stayed in hiding longer we probably would’ve liked her better that way. +06/21/2018,Musicians,@DuaLipa,#Chicago! I’m playing @B96Chicago #SummerBash June 23rd! Grab your tickets at the Allstate Arena box office and… https://t.co/YLkTXuiFve +06/21/2018,Musicians,@DuaLipa,"RT @vmagazine: Greeted by more than a thousand fans, V113 cover star @DUALIPA took over SoHo for a signing that Mercer Street will remember…" +06/21/2018,Musicians,@DuaLipa,More pix from pix @vmagazine ✨ https://t.co/WZsxNz7KiV +06/21/2018,Musicians,@DuaLipa,RT @headlineplanet: .@CalvinHarris & @DUALIPA's One Kiss is headed for the Top 10 at pop radio https://t.co/EgciD0uoEU +06/21/2018,Musicians,@DuaLipa,RT @lipasrules: @DUALIPA https://t.co/HzVZj4ruL6 +06/21/2018,Musicians,@DuaLipa,RT @renanwho: @DUALIPA I found these here: https://t.co/0yEwBB30hl https://t.co/iK2dSKHBaM +06/21/2018,Musicians,@DuaLipa,RT @cruelworId: @DUALIPA https://t.co/pN5xp3Cjsn +06/21/2018,Musicians,@DuaLipa,RT @MELLETMAGIC: @DUALIPA if you’re calling from outside the US add +1 before the phone number and say a random state https://t.co/z08shr4i… +06/21/2018,Musicians,@DuaLipa,RT @clairo: redownloaded twitter app to say that there are still many families who have already been separated and children that don’t know… +06/21/2018,Musicians,@DuaLipa,If there are any other ways to send help to those families please comment below and i’ll RT onto my feed. ❤️ +06/21/2018,Musicians,@DuaLipa,Everything thats happening in the world is breaking my heart. Children being seperated from their parents is the mo… https://t.co/MQ0pKJX2Ap +06/21/2018,Musicians,@DuaLipa,@godknowsilost Happy Birthday sugar pie xxxx +06/21/2018,Musicians,@DuaLipa,@L0STlNDUA @vmagazine Absolutely x +06/21/2018,Musicians,@DuaLipa,@perfectlplaces @vmagazine Not for a little while but im working on it babe! I’m really excited xxx +06/21/2018,Musicians,@DuaLipa,💋💋💋💋 https://t.co/0EJ7FLjKSx +06/21/2018,Musicians,@DuaLipa,Yesterday was so much fun! Thank you to my @vmagazine fam for giving me the chance to get to see my bbys in NYC! So… https://t.co/42F5n8YHQU +06/20/2018,Musicians,@DuaLipa,An angel and a light. Thank you for having me as a part of your world. You mean a lot to me xxx https://t.co/keuS7aXwmA +06/20/2018,Musicians,@DuaLipa,KRZ Summer Smash // 📸 Pixie Levinson https://t.co/7iz7TOmNx7 +06/20/2018,Musicians,@DuaLipa,Looking gorgey! See you soon xx https://t.co/OGcIB0U342 +06/20/2018,Musicians,@DuaLipa,Come meet me at 11 Mercer in SoHo today from 4-5:30pm to get your signed copy of my @vmagazine cover! AND CELEBRATI… https://t.co/lpiaguKoJL +06/19/2018,Musicians,@DuaLipa,@dualipanoticias @vmagazine This isnt correct. This whole segment is about the journalist who wrote the piece. Not about me. X +06/19/2018,Musicians,@DuaLipa,"RT @vmagazine: To clarify, admittance to meet @dualipa tomorrow is free! Special editions will be for sale, which will also come with a tot…" +06/19/2018,Musicians,@DuaLipa,@getalilhigh @begsforyou That whole segment is what the journalist said at the top of the article +06/19/2018,Musicians,@DuaLipa,I would never agree to anything like this so i have my team finding out but im sure its just a miscommunication. Th… https://t.co/8l8FAgpVT4 +06/19/2018,Musicians,@DuaLipa,@sighzach I dont know anything about this? Im doing this all for free. I don’t know who said any of this but i don’t think its true +06/19/2018,Musicians,@DuaLipa,RT @vmagazine: What @DUALIPA's success says about the immigrant dream. https://t.co/4RRQtuTT4Q https://t.co/bXgDsEUhSx +06/19/2018,Musicians,@DuaLipa,My bro @ActionBronson and I after his show in NYC. Come see us both this summer at Sunny Hill festival and in the w… https://t.co/Fej9XZc1ib +06/19/2018,Musicians,@DuaLipa,@angelsvices I was literally just at MoMA idk what im meant to explain +06/19/2018,Musicians,@DuaLipa,"RT @ChartsDuaLipa: “One Kiss” has now reached #1 on iTunes in 60 countries! Congrats @DUALIPA & @CalvinHarris, you did that. 🔥🌎 https://t.c…" +06/19/2018,Musicians,@DuaLipa,RT @sighzach: Dula Peep is finally doing IDGAF promo in NYC 😍✊❤️ https://t.co/cWuuRTnxpn +06/18/2018,Musicians,@DuaLipa,RT @vmagazine: 2 days... @DUALIPA https://t.co/Q2eOI9LTeg +06/18/2018,Musicians,@DuaLipa,WOW!!!! 😭😭😭 https://t.co/SOp2a0U5cH +06/18/2018,Musicians,@DuaLipa,"RT @angelsvices: look at those streams honey!!!!!!! that's insane. also, new rules has over 800 milli streams. damn ma. look at u <3 congr…" +06/18/2018,Musicians,@DuaLipa,Lady birdin’ https://t.co/Cu9irap2AN +06/18/2018,Musicians,@DuaLipa,Seee you sooon!!! ❤️❤️❤️❤️ https://t.co/DnKl9OwRuh +06/18/2018,Musicians,@DuaLipa,Last night at Kiss108 shot by Pixie Levinson ✨ https://t.co/Z8q4nQN3A5 +06/18/2018,Musicians,@DuaLipa,RT @jamietworkowski: To those with no pictures to post. To those recovering from his absence. To those recovering from his presence. To tho… +06/17/2018,Musicians,@DuaLipa,ZACH!!! 😭❤️ thank you for your kind words. Always! I’m proud of all of us together xxx https://t.co/2lNBYK5YRQ +06/17/2018,Musicians,@DuaLipa,"RT @dukagjinlipa: @caIIofduaty @DUALIPA We are looking into creating charter flights for the festival. 🤞 +Hopefully we can get a budget air…" +06/17/2018,Musicians,@DuaLipa,@caIIofduaty @dukagjinlipa Flights are really expensive because there is so rarely a direct flight. Hopefully soon… https://t.co/00X6ORb5AR +06/17/2018,Musicians,@DuaLipa,Wow thank you for the support! Cc @dukagjinlipa https://t.co/R7O0ck92d3 +06/17/2018,Musicians,@DuaLipa,Love it sidney xx https://t.co/dX8R6jq1TS +06/17/2018,Musicians,@DuaLipa,RT @vmagazine: Come meet V113 cover star @DUALIPA at V Magazine this Wednesday from 4 - 5:30pm! Get to 11 Mercer early because this signing… +06/17/2018,Musicians,@DuaLipa,"RT @MikeAdamOnAir: As an #Albanian, this makes me so, so proud... #DuaLipa and father created a festival for Kosovo. I love this. And on an…" +06/17/2018,Musicians,@DuaLipa,"RT @TwitterMoments: So, @dualipa and daddy Lipa @dukagjinlipa have created their own festival in Kosovo this summer. https://t.co/jP5VFBrnK2" +06/17/2018,Musicians,@DuaLipa,Tonight at KTUPhoria // shot by Pix 💕 https://t.co/TI8z9VAjj4 +06/17/2018,Musicians,@DuaLipa,THIS IS CRAZY! WOW! Thank you bb 💜💜💜 https://t.co/TKs0xOgrnE +06/17/2018,Musicians,@DuaLipa,Haaa the second half of this https://t.co/1fM2gtySIK +06/17/2018,Musicians,@DuaLipa,Such a surreal moment in my life https://t.co/4PrlKwbl6O +06/17/2018,Musicians,@DuaLipa,Beyonce is my favourite rapper +06/16/2018,Musicians,@DuaLipa,I just watched Sting perform. I wish I could frame that moment. It was an experience. +06/16/2018,Musicians,@DuaLipa,@MNEK Thank you bb! Miss u xxx +06/16/2018,Musicians,@DuaLipa,Thanks for coming to my Ted talk https://t.co/D5t3I4yuIb +06/16/2018,Musicians,@DuaLipa,Francesca Brazzo doing the absolute most https://t.co/abpy5vPumo +06/16/2018,Musicians,@DuaLipa,RT @AgonMaliqi: Giving back to the community back home in #Kosovo. Great job @DUALIPA @dukagjinlipa https://t.co/TNkEn8ubbm +06/16/2018,Musicians,@DuaLipa,Awwwww bby. This is so thoughtful. Thank you ✨✨✨✨ https://t.co/vSszMXxYq2 +06/16/2018,Musicians,@DuaLipa,Sunny Hill is the neighbourhood my parents grew up in Kosova. Its always been home to me and thats why its the name… https://t.co/fJ7Kx4eMe3 +06/16/2018,Musicians,@DuaLipa,I’ll post my full caption about Sunny Hill festival here bc twitter count isnt enough! Tickets on… https://t.co/tI2OSRjg9v +06/16/2018,Musicians,@DuaLipa,Sunny Hill festival is coming this summer to Germia Park!! I’m so excited to head down a few days prior to the fes… https://t.co/qNNF9ORyl2 +06/16/2018,Musicians,@DuaLipa,Thanks bb! Proud of this one ❤️❤️❤️ https://t.co/ChhPgihoeD +06/16/2018,Musicians,@DuaLipa,Nina 💓💓💓💓💓 https://t.co/wpLXc2Ifaq +06/16/2018,Musicians,@DuaLipa,LOVE YOU https://t.co/nraq2jT8eQ +06/16/2018,Musicians,@DuaLipa,Omg i remember when i posted this on twitter and my manager was like “dont panic but someone has leaked a pic from… https://t.co/rYajYDiIdd +06/16/2018,Musicians,@DuaLipa,Obsessed w nyc 💓 https://t.co/p7xKFE5GAr +06/16/2018,Musicians,@DuaLipa,💖 #BLISummerJam shot by Pixie Levinson https://t.co/bYmsYR5Adl +06/16/2018,Musicians,@DuaLipa,4EVER!! https://t.co/QgrvPWchvp +06/16/2018,Musicians,@DuaLipa,Sun in my eyes https://t.co/RnuLMyShuy +06/16/2018,Musicians,@DuaLipa,My bb @itsgracecarter has just released her EP!! Check it out my loves she’s a good one 💓 https://t.co/c4Yt39Zwtw +06/15/2018,Musicians,@DuaLipa,@itsmekaram Beauty queen +06/15/2018,Musicians,@DuaLipa,@tumultuousbrain I gave up babe it was fun for a day but I think im over it hahaha +06/15/2018,Musicians,@DuaLipa,"@lovelikelipa Hey Erin, im sorry you’re not feeling well! I hope you have a super speedy recovery and i’ll get to see you soon 💓💓💓" +06/15/2018,Musicians,@DuaLipa,@builtzara Idk baby a lady did them for me in Atlanta but the gel colour is peeling off ALREADY i cant believe it so i’m mad :( +06/15/2018,Musicians,@DuaLipa,@lovelylonds Wowee congrats hard working gal! Proud of u bb xx +06/15/2018,Musicians,@DuaLipa,@lovelylonds Hi babyyyy +06/15/2018,Musicians,@DuaLipa,@ale_alejandro I havent seen any on my TL really +06/15/2018,Musicians,@DuaLipa,@sighzach NEVER +06/15/2018,Musicians,@DuaLipa,@tragichaIsey Miss you lea xxxx +06/15/2018,Musicians,@DuaLipa,Awww Manu love this. Hope you’re feeling better. Xxx https://t.co/Gt1ywcVojQ +06/15/2018,Musicians,@DuaLipa,Queer Eye season 2. Today should be a national holiday. +06/15/2018,Musicians,@DuaLipa,Congrats bb angel xx https://t.co/zF6DpygpDu +06/15/2018,Musicians,@DuaLipa,@heartednotes I’m so confused maybe i said dual nationality but im not jewish. Where is this from?? +06/15/2018,Musicians,@DuaLipa,Eid Mubarak from our family to yours ❤️✨ +06/15/2018,Musicians,@DuaLipa,2 CUTE!! https://t.co/pychYDmNme +06/15/2018,Musicians,@DuaLipa,Safe to say i’ve never seen anyone throw cheese steaks into the crowd. My bro @ActionBronson killed it in NY tonigh… https://t.co/e3fswVpTgT +06/14/2018,Musicians,@DuaLipa,I like wines from Chateauneuf du Pape 🇫🇷 https://t.co/6shpPY0uUa +06/14/2018,Musicians,@DuaLipa,Wine mum in full effect https://t.co/NZuusStWju +06/14/2018,Musicians,@DuaLipa,An icon of our generation. An outspoken legend. https://t.co/aQ9tkKKvGH +06/14/2018,Musicians,@DuaLipa,Yes all the money goes to the UN foundation to support free & equal - A campaign for LGBTI equality 🌈💋 https://t.co/mYZqy7VJPT +06/14/2018,Musicians,@DuaLipa,🌈 HAPPY PRIDE ANGELS 🌈 we made a lil special pride IDGAF tank top and all proceeds go to united nations foundation… https://t.co/Qg7UZZ9SqV +06/14/2018,Musicians,@DuaLipa,Thank you Orlando!! We ❤️ you! The self-titled tour 13.06.2018 // shot by Pixie Levinson https://t.co/qqafzOJbM0 +06/14/2018,Musicians,@DuaLipa,Thinking of you London on this sad day. A year ago today. We will never forget. Justice for Grenfell. Forever in ou… https://t.co/VoFMxs1ZqK +06/14/2018,Musicians,@DuaLipa,I LOVE THEM!! This is actual goals!!! https://t.co/NfpuJSdR7g +06/13/2018,Musicians,@DuaLipa,That is my name https://t.co/eqEWrecZmX +06/13/2018,Musicians,@DuaLipa,I love the drama with uppercase way too much https://t.co/vPPTuh9mdY +06/13/2018,Musicians,@DuaLipa,Thanks bb xx https://t.co/CkZNMR5aWI +06/13/2018,Musicians,@DuaLipa,⚔️❤️⚔️❤️⚔️ https://t.co/pE4yJ2fP8E +06/13/2018,Musicians,@DuaLipa,LOL ITS IS MY BABY AFTER ALL https://t.co/4TyyTdkLVK +06/13/2018,Musicians,@DuaLipa,HEYOOOOO!!! THIS IS CRAZY!! https://t.co/O8qSEa7DyX https://t.co/ndlyEfpVDn +06/13/2018,Musicians,@DuaLipa,"We mustn’t encourange unkind words and bullying of any form! We must work together to encourage love, kindness and… https://t.co/ZEjlLNLHKp" +06/13/2018,Musicians,@DuaLipa,CRYING!!!! 📀✨✨✨✨ https://t.co/3x6TjCZj8Y +06/13/2018,Musicians,@DuaLipa,Hola Miami!!! We felt so lucky to play in an open-air amphitheatre last night. Felt like our own mini festival. Swe… https://t.co/zcc509xl1v +06/13/2018,Musicians,@DuaLipa,Soundcheck yday in Miami // shot by Pixie Levinson https://t.co/rCwDIYZfBl +06/13/2018,Musicians,@DuaLipa,"RT @dlipanews: .@DUALIPA's debut album 'Dua Lipa' is now certified GOLD in the US, 'IDGAF' is now certified GOLD in the US and 'Blow Your M…" +06/13/2018,Musicians,@DuaLipa,The happiest kid ever!!! https://t.co/9ZlN2060wP +06/13/2018,Musicians,@DuaLipa,I just found out i’m the #1 artist on youtube in the Netherlands 🇳🇱 ❤️ my dutchies I love you! You go hard. Thank you xxxx +06/13/2018,Musicians,@DuaLipa,Omg it was so hot MY KNEES WERE SWEATING!!! Miami you were unbelievable tonight ILY 💓💓 https://t.co/pb5JYvO1So +06/13/2018,Musicians,@DuaLipa,@sighzach Stress over what? +06/12/2018,Musicians,@DuaLipa,No please. Let us not. https://t.co/PlmDf6WCpO +06/12/2018,Musicians,@DuaLipa,For tonights show I need your help. Which song would you prefer to hear? GO 💥 +06/12/2018,Musicians,@DuaLipa,Woweeeee https://t.co/OR12VrdDmg +06/12/2018,Musicians,@DuaLipa,Thank you to all the radio stations that invited me over yesterday to perform for you all! I feel so lucky to get t… https://t.co/FyykI8AdzN +06/12/2018,Musicians,@DuaLipa,Beautiful Anna xx https://t.co/G5dF9Ltrzf +06/12/2018,Musicians,@DuaLipa,Love is the most wonderful thing in the world. Dont be afraid to love with all youve got. When it doesnt go your wa… https://t.co/JlwqiBAe1s +06/12/2018,Musicians,@DuaLipa,Oh my darling I think a bigger fear is allowing yourself to stay around toxic people for too long. You’ll recognise… https://t.co/O0TWYCJLqx +06/12/2018,Musicians,@DuaLipa,"You should keep your friends and loved ones close, trust your gut and go with your instinct. Never let go of the pe… https://t.co/xkDZ0K2gYX" +06/12/2018,Musicians,@DuaLipa,"RT @duadior: ""homesick"" vs ""new rules"" https://t.co/wBfQJDyW6I" +06/12/2018,Musicians,@DuaLipa,I got to meet so many sweethearts today! Love miami 💗💗 https://t.co/Uu3wl9gV0W +06/11/2018,Musicians,@DuaLipa,In Miami in that @NathalieBallout drip 💧 https://t.co/1CdT6j9Lgg +06/11/2018,Musicians,@DuaLipa,LOVE YOU BBYS 💕 +06/11/2018,Musicians,@DuaLipa,@frangilana Youre a special one Nat. You a real one 💕 +06/11/2018,Musicians,@DuaLipa,RT @frangilana: we are such babies!!!!! sticking with u forever sis https://t.co/wpPeeJds1O +06/11/2018,Musicians,@DuaLipa,I’m gonna follow some new people on twitter so put it on my feed who I should follow! Going into an interview but o… https://t.co/Yxm3gSVkxq +06/11/2018,Musicians,@DuaLipa,And I wrote ur tattoo x https://t.co/yAFGslzxHs +06/11/2018,Musicians,@DuaLipa,Omg in Chicago and you guys were so sweet and singing along to Thinking bout you you made me cryyyy!! Such a specia… https://t.co/nj0Z8q73sq +06/11/2018,Musicians,@DuaLipa,Thank you for the memories and the love you are all so special to me ❤️ +06/11/2018,Musicians,@DuaLipa,Ofcourse!!! https://t.co/JCEJ6T51Hf +06/11/2018,Musicians,@DuaLipa,Love you!! That was such a good day https://t.co/aOXTIKg733 +06/11/2018,Musicians,@DuaLipa,@newrulesdua Get well soon 💕 +06/11/2018,Musicians,@DuaLipa,You! I was like “awww cute she wanted me to get my daily potassium intake... they really care for my health” 😝😝😝 https://t.co/XzZD59Ans4 +06/11/2018,Musicians,@DuaLipa,ME! https://t.co/n6rMacVCmR +06/11/2018,Musicians,@DuaLipa,I LITERALLY SPOKE ABOUT THIS AT MY RADIO Q&A TODAY!! R U PSYCHIC https://t.co/WJU6q1LuUY +06/11/2018,Musicians,@DuaLipa,I’m lucky to do it with you all. I only wanna make you guys proud and happy xxx https://t.co/IoNLbAOkRT +06/11/2018,Musicians,@DuaLipa,Colline!!!! I remember this so well when! Love you xxx https://t.co/Oi9TXekL9c +06/11/2018,Musicians,@DuaLipa,Thanks @rulesdua for putting that onto my TL all those memoriesssss +06/11/2018,Musicians,@DuaLipa,Omggggg 😭😭💗💗 https://t.co/WtQaFbWZot +06/11/2018,Musicians,@DuaLipa,Bonnaroo that was crazy thank you so much 💥 10.06.2018 // shot by Pixie Levinson https://t.co/z7w9A0FBdg +06/11/2018,Musicians,@DuaLipa,Go on girlllll https://t.co/jA2ohLFL6z +06/11/2018,Musicians,@DuaLipa,RT @visitkingdoms: u always provide me w a night i’ll never forget @DUALIPA thank u 💓🌟 https://t.co/x8BLk1OSdW +06/11/2018,Musicians,@DuaLipa,"🧡 Join me, @aalayaheastmond, @breebxtler and @team_enough in the fight to prevent gun violence. Text “Roo” to 877-8… https://t.co/9faOK6WjnV" +06/11/2018,Musicians,@DuaLipa,RT @IzzyRosa216: EVERYONE KNOWS NOT TO GIVE A FUCK.🖕🏻@DUALIPA https://t.co/tm6zu8EGCA +07/02/2018,Musicians,@JessGlynne,Last chance to PreOrder Always In Between and receive your PreSale code for first access to the November tour ticke… https://t.co/xN3GjEKtpg +06/29/2018,Musicians,@JessGlynne,RT @hmvtweets: .@JessGlynne is back with a new album! Pre-order Always In Between & get a #hmvExclusive Blue Dreams box with art cards & po… +06/29/2018,Musicians,@JessGlynne,Im so excited that the the preorder for my new album Always In Between is live!!!! Another moment I can’t quite bel… https://t.co/KHYMseI6S3 +06/28/2018,Musicians,@JessGlynne,I can’t believe I’m finally announcing the new chapter... Always In Between my new album will be with you in just a… https://t.co/rCuEZFPP1p +06/15/2018,Musicians,@JessGlynne,"I can’t believe it! Truly blessed! As I said, I’ll keep giving you guys the music you deserve ... Some really huge… https://t.co/HoPlhl830L" +06/13/2018,Musicians,@JessGlynne,Just being real out here. Showing you the truth behind the scenes.. How you feel? 💋 https://t.co/sA0mkjX13j +06/13/2018,Musicians,@JessGlynne,I’ll Be There is #1 in the @bigtop40 for a 2nd week 🙌 https://t.co/ipsDtNSm52 +06/13/2018,Musicians,@JessGlynne,Thank you so much for having me @CapitalOfficial. To all my fans I love you X https://t.co/ud0rQyLoqX +06/13/2018,Musicians,@JessGlynne,"#2 in New Hits UK, thank you Deezer, my love is unconditional https://t.co/FfFvityQTE https://t.co/DAVAHOIMva" +06/13/2018,Musicians,@JessGlynne,"AND #1 in Hot Hits UK, thank you so much for your support @Spotify https://t.co/oWZzEhabea" +06/13/2018,Musicians,@JessGlynne,"I'll Be There #1 in Today's Hits, thank you so much @applemusic https://t.co/F8FfPPjibq https://t.co/OuZzLFZ6AA" +06/12/2018,Musicians,@JessGlynne,Can’t believe I’ll Be There is Number one in the midweeks.. I have so much warmth in my heart right now! https://t.co/3OvdU1AFDM +06/11/2018,Musicians,@JessGlynne,I promise you I don’t take one day of my life for granted. I am so grateful for all the support and love. I can’t t… https://t.co/8Ov3zO9B8G +06/08/2018,Musicians,@JessGlynne,So much love for @banxnranx for remixing I’ll Be There! 💙 y’all can listen here https://t.co/LADxGDZIOi +06/04/2018,Musicians,@JessGlynne,See you on 4th August Bedford Park! Can’t wait 😍 https://t.co/aGHwNHo2AQ https://t.co/qnDzupDdad +06/03/2018,Musicians,@JessGlynne,Thank you @BigTop40 I feel so blessed! I don’t know how to express how much these things mean to me. Just the fact… https://t.co/k1lkYKTiOu +06/03/2018,Musicians,@JessGlynne,@BigTop40 Thank you so much! To everyone who’s bought or streamed I’ll Be There... I can’t thank you enough and I’m… https://t.co/mWVHmPQmWm +06/03/2018,Musicians,@JessGlynne,"RT @BigTop40: The moment you find out you're No. 1... 😍 + +@JessGlynne has done it again! I'll Be There becomes her EIGHTH No. 1 on The Offic…" +06/01/2018,Musicians,@JessGlynne,Hope you guys like this acoustic version of I’ll Be There.. It’s out today. I really love this and I hope y’all lov… https://t.co/J8XnnGPokJ +05/31/2018,Musicians,@JessGlynne,Tomorrow morning I’ll be on the telly 📺 BBC Breakfast from 9 +05/25/2018,Musicians,@JessGlynne,See you tomorrow Swansea!!! https://t.co/2wVdhZSEKS +05/24/2018,Musicians,@JessGlynne,#TBT to the the I'll Be There launch party. Was so special.. Thank you everyone who came and shared that evening wi… https://t.co/xwjYouIm2u +05/22/2018,Musicians,@JessGlynne,Loved my Sunday morning! Go catch up on All 4 if you fancy 💜 https://t.co/PTWQQCnwOl +05/19/2018,Musicians,@JessGlynne,"Thank you for being with me on Thursday, it was a special night at the Jazz Cafe in London.. my Home. I don’t know… https://t.co/vb5C74qn5v" +05/17/2018,Musicians,@JessGlynne,Tonight... you coming? 💙 https://t.co/ql8pLllpM6 +05/14/2018,Musicians,@JessGlynne,I’m doing a special performance this Thursday at the Jazz Café in Camden. Very limited tickets available right now… https://t.co/r3WSNQGuBj +05/10/2018,Musicians,@JessGlynne,What a moment! Thank you everyone who came down to this.. you got me! 💕 https://t.co/qGrHve2GP3 +05/09/2018,Musicians,@JessGlynne,"On @BBCTheOneShow tonight tune in at 7 📺 Or come down and watch the performance, 7:45 pm at BBC Broadcasting house. https://t.co/ZArdXLM4lw" +05/09/2018,Musicians,@JessGlynne,.@Deezer put I’ll Be There in Brand New UK. Big up ❤ https://t.co/bjtNMfJiMT +05/08/2018,Musicians,@JessGlynne,Thanks @Spotify! X https://t.co/IljMIK1RyA +05/04/2018,Musicians,@JessGlynne,"A small hint to those that really want to come to the launch party. First come first serve, limited space X https://t.co/upN8qKv53y" +05/04/2018,Musicians,@JessGlynne,From day ONE I’m in Today’s Hits on @AppleMusic with I’ll Be There! Thank you so much x https://t.co/yLIVmLwHpx https://t.co/9h720qZD5a +05/04/2018,Musicians,@JessGlynne,Big love @Spotify for all the support! X https://t.co/Tihh6GzAzu +05/04/2018,Musicians,@JessGlynne,"My new single I’ll Be There is out now, and so is the video. It’s been a while and I’m so excited for you to hear i… https://t.co/l7wzdT9Gvw" +05/03/2018,Musicians,@JessGlynne,💙https://t.co/4KrWQUC2Ed https://t.co/slvnB5xjMb +05/02/2018,Musicians,@JessGlynne,See you in 2... 💧 https://t.co/ZHFAJcS838 +05/02/2018,Musicians,@JessGlynne,Hey my friends.. So this Friday I’m coming for you finally! I wanted to put on a special event for my fans and for… https://t.co/iZY1GHXkFu +05/01/2018,Musicians,@JessGlynne,When you're lost... I’ve got enough love for 2... https://t.co/4KrWQUC2Ed https://t.co/QAIwDzBbR7 +05/01/2018,Musicians,@JessGlynne,Ayyyy! Happy Birthday Land Rover! You guys have been too good to me 💙! @LandRoverUKPR #landrover70years 👅 https://t.co/9heRRI1CJG +05/01/2018,Musicians,@JessGlynne,New Single 04.05.18. PreOrder https://t.co/4KrWQUC2Ed https://t.co/fmtknXDOxN +04/30/2018,Musicians,@JessGlynne,I'll Be There https://t.co/8nEeV8ja5H +04/30/2018,Musicians,@JessGlynne,#ILLBETHERE https://t.co/Gpb6d6sbEn +04/30/2018,Musicians,@JessGlynne,"Can't wait! @CapitalOfficial's Summer Time Ball, see you soon! #CapitalSTB https://t.co/PCLbOyGC4r" +04/25/2018,Musicians,@JessGlynne,Thank you so much @SiriusXMHits1 for having These Days as their #HitBound Song of the Week!!! Big love to @KidKelly… https://t.co/3prUmsGCnn +04/03/2018,Musicians,@JessGlynne,This is so insane and kinda hard to believe... The love is so real! Thank you 💙 https://t.co/wq4ikadFqq +03/30/2018,Musicians,@JessGlynne,We Number 1!! Fully emotionally excited and so damn happy for everyone involved in this song… https://t.co/AaZmraMWik +03/29/2018,Musicians,@JessGlynne,Mind On It... go check it on YouTube now gorgeous people 💞 https://t.co/uGd4V2lpQv +03/26/2018,Musicians,@JessGlynne,Ain’t no one complaining out here FYI! Just singing my feels! Sometimes I just need to put my… https://t.co/U9XckEbCI6 +03/24/2018,Musicians,@JessGlynne,Never mind 💙 https://t.co/US7dhliGHG +03/22/2018,Musicians,@JessGlynne,"Please help play a part in turning the tide against one of our biggest killers, dementia. Simply watch and share th… https://t.co/Vl50mKcEAp" +03/15/2018,Musicians,@JessGlynne,Hey people.. Me and my friend @YungenPlayDirty have a little treat for you.. “Mind On It” will… https://t.co/oSbdaklh12 +03/13/2018,Musicians,@JessGlynne,"W O W so These Days is number 1 in the midweeks, I can’t believe it! Please show the love for… https://t.co/xw0drWsULH" +03/11/2018,Musicians,@JessGlynne,"Happy mummy’s day! No words can describe the love I have for you, my number 1 woman xxxx https://t.co/PWLFNxYeE8" +03/10/2018,Musicians,@JessGlynne,A moment for me 🌴 https://t.co/AUwF44FSCJ +03/08/2018,Musicians,@JessGlynne,WOMAN IS POWER! DON’T EVER FORGET IT! 💞 https://t.co/39IxLaaVKb +03/07/2018,Musicians,@JessGlynne,That time I wore that suit... 👅 https://t.co/sS4HYaBH1I +02/28/2018,Musicians,@JessGlynne,I am not perfect. https://t.co/YzNS5Oa439 +02/28/2018,Musicians,@JessGlynne,Insecure and I don’t care https://t.co/sYD1mnEelT +02/22/2018,Musicians,@JessGlynne,🕊 https://t.co/JZYb0mjuBD +02/22/2018,Musicians,@JessGlynne,I am a woman with a platform and I’m so grateful for where I stand. I didn’t go to the Brits… https://t.co/BGDPtprcig +02/22/2018,Musicians,@JessGlynne,2018 https://t.co/fHdHrqsy62 +02/19/2018,Musicians,@JessGlynne,These Days at Abbey Road with these lovely bunch of boys... @Rudimental @dancaplen @macklemore all the love! 👅 https://t.co/WJYRzipM9D +02/16/2018,Musicians,@JessGlynne,These Days acoustic out today 👅 https://t.co/IX44AIJdpE and the live video is out Monday hunnies https://t.co/aI3cFr9Cko +02/09/2018,Musicians,@JessGlynne,One step at a time... 👀 https://t.co/Hy0ygoNTDI +02/07/2018,Musicians,@JessGlynne,Get ready my people... I’m coming for you👅... #biggestweekend https://t.co/eHDW7kcXlo +02/06/2018,Musicians,@JessGlynne,Meet me tomorrow night 7pm.. bbconeshow 👅 https://t.co/AXRNiQQLJ9 +02/04/2018,Musicians,@JessGlynne,@BigTop40 @Rudimental @macklemore @dancaplen So blessed I can’t believe it! Big love everyone that is so special xxx +02/04/2018,Musicians,@JessGlynne,"RT @BigTop40: 🥇 Imagine romping up 12 places, to get the #BigTop40's No. 1 spot. 'Cause @Rudimental, @JessGlynne, @macklemore and @dancaple…" +01/31/2018,Musicians,@JessGlynne,My protector 💞 https://t.co/Muyc644Ytz +01/25/2018,Musicians,@JessGlynne,Hey people.. here’s a little video for you.. hope y’all like it 💞 https://t.co/7OMPKq7gcp +01/24/2018,Musicians,@JessGlynne,#THESEDAYS video soon come @rudimental @dancaplen @macklemore https://t.co/2uald2lK6G +01/22/2018,Musicians,@JessGlynne,I’m out here in the trees what y’all saying? https://t.co/1wGsKkwtmh +01/19/2018,Musicians,@JessGlynne,2018... slowly coming for you. Don’t be scared just be ready... https://t.co/TkZ1KHXNbq +01/19/2018,Musicians,@JessGlynne,"Listen up.. #TheseDays is out! Enjoy 👅 https://t.co/5obo8iV1lp + +@Rudimental @Macklemore @DanCaplen https://t.co/zBNgT8aetj" +01/18/2018,Musicians,@JessGlynne,I’m on a new tune with @Rudimental and y’all can get... #TheseDays at midnight!!! https://t.co/5obo8iV1lp https://t.co/1ZoygjhBHz +01/17/2018,Musicians,@JessGlynne,💙 https://t.co/kVUQmfy9ev +01/16/2018,Musicians,@JessGlynne,"T H E S E D A Y S + +#TheseDays https://t.co/kqJUpayTLC" +01/15/2018,Musicians,@JessGlynne,"Are you ready... +@Rudimental @macklemore @dancaplen #2018 https://t.co/dDBMSrL4UM" +12/31/2017,Musicians,@JessGlynne,So I hope everyone is ready for 2018 cause I am and I’m nearly ready to share the love. Let’s… https://t.co/X84OwZcubb +12/31/2017,Musicians,@JessGlynne,I’ve been doing me for a little minute finding some balance and I’ve also been working… https://t.co/vayIjc2Ocz +12/31/2017,Musicians,@JessGlynne,"Hey, it’s been a while... https://t.co/ZSbUbk4WDq" +09/26/2017,Musicians,@JessGlynne,I got you.. Don't rush me. I got you 💜 +09/23/2017,Musicians,@JessGlynne,When I say thank you I mean... Thank You from the bottom of my heart 🖤 https://t.co/teZ1s0rv7o +08/21/2017,Musicians,@JessGlynne,I am lying in my bed.. the washing machine is on and I am having a moment. I Cry When I Laugh… https://t.co/g4yvfjx91X +08/09/2017,Musicians,@JessGlynne,My mask... that's what I need right now x https://t.co/VwlERtW1uY +07/14/2017,Musicians,@JessGlynne,London I'm so excited to see you! We home & I'm bringing you some summer of love! Here's a little something for you 💗https://t.co/G0wg9NI2ZV +07/08/2017,Musicians,@JessGlynne,Happy Pride! Celebrate Love and be YOU!Today and every day. We are one my people! I LOVE YOU… https://t.co/Nahgo79fto +12/23/2016,Musicians,@JessGlynne,This journey so far has involved so much that I thought I would only dream of. I can't tell you… https://t.co/xUbCNmXUPK +12/22/2016,Musicians,@JessGlynne,I want to be like Helen Mirren when I'm older 💜 +12/20/2016,Musicians,@JessGlynne,Just say it how it is... makes life a lot simpler you know 👌🏼 +12/20/2016,Musicians,@JessGlynne,You cool? 👀 https://t.co/TbpDBmzYW8 +12/19/2016,Musicians,@JessGlynne,Have you heard about this oil? Honestly! The ONE!!!!!!!! 💜 https://t.co/OundOzm294 +12/17/2016,Musicians,@JessGlynne,Monster Munch 💜 +12/17/2016,Musicians,@JessGlynne,RT @Jolene_Henry: I love people +12/16/2016,Musicians,@JessGlynne,"I announced some new UK live dates over the past few weeks. They’re all below in case you missed any, tix & info at… https://t.co/gSMBFafuZV" +12/15/2016,Musicians,@JessGlynne,Thank you @belvederevodka for my bespoke bottle of vodka for the Take Me Home tour and thank you… https://t.co/wOAGcIINFf +12/15/2016,Musicians,@JessGlynne,https://t.co/D0BTMEcvfQ 💜 +12/13/2016,Musicians,@JessGlynne,Baes 💓 https://t.co/xVbtUNxMg7 +12/12/2016,Musicians,@JessGlynne,Kahlil Joseph | m.A.A.d https://t.co/QUij1al2rY +12/12/2016,Musicians,@JessGlynne,Bed 💜 https://t.co/OeKCMEnf7S +12/12/2016,Musicians,@JessGlynne,Chemical Brothers #robot https://t.co/xCIAxLpxwq +12/11/2016,Musicians,@JessGlynne,😂💜 https://t.co/RJvcNqBoHF +12/11/2016,Musicians,@JessGlynne,Wow thank you so much BBC Awards!! So grateful to be recognised!! So much love xxxx https://t.co/vF2k9jIXas +12/10/2016,Musicians,@JessGlynne,Nicole to win +12/10/2016,Musicians,@JessGlynne,Sleep deprived.. I'm so sad right now! +12/08/2016,Musicians,@JessGlynne,HAPPY BIRTHDAY TO A SPECIAL BANANA HEAD! May this next year bring you even more happiness and… https://t.co/1QZ5XS1Gz6 +12/08/2016,Musicians,@JessGlynne,When you know ... you know +12/07/2016,Musicians,@JessGlynne,@grimmers same page!!! +12/07/2016,Musicians,@JessGlynne,About that... 👄 https://t.co/ul4zna6JJt +12/05/2016,Musicians,@JessGlynne,Last night was nothing short of a big fat load of fun loving wilin' out!!!! Thank you to… https://t.co/e7LWx4uBgo +12/05/2016,Musicians,@JessGlynne,If you have my phone.. please can I have it back? Please 🙏🏻 +12/04/2016,Musicians,@JessGlynne,T O N I G H T 👌🏼 +12/03/2016,Musicians,@JessGlynne,Can someone help me out.. I want to go for dinner in town (London) but everywhere is booked up.. I know it's Saturday but come on!? +12/02/2016,Musicians,@JessGlynne,Thank you to every single person who came and joined me on the Take Me Home tour... I can't… https://t.co/qrJFS0QjUU +12/02/2016,Musicians,@JessGlynne,"Tickets on sale now for summer dates in Aintree, Wincanton, Carlisle, Newmarket, Llanelli, Newbury & York...… https://t.co/DSTjMfkkKc" +12/01/2016,Musicians,@JessGlynne,London you stole my heart last night. I can't even put it in to words. I will never forget… https://t.co/yDdAvaYrJv +11/30/2016,Musicians,@JessGlynne,LONDON ARE YOU READY!!?? 👅 https://t.co/H1X8fd5Vc5 +11/30/2016,Musicians,@JessGlynne,"Pleased to announce 4 very special summer dates! Tickets on sale Friday 2nd Dec. Presale starts tomorrow, sign up a… https://t.co/lXQPKhvTHd" +11/30/2016,Musicians,@JessGlynne,O2 Arena... I can't believe I am coming for you... 💜 https://t.co/Sx8VO8zXe2 +11/29/2016,Musicians,@JessGlynne,Late nights https://t.co/X88sAedM4i +11/29/2016,Musicians,@JessGlynne,Take Me Home https://t.co/NzhOSZsyos +11/27/2016,Musicians,@JessGlynne,Merch / Hoody Crew https://t.co/PQ245bqUK9 +11/27/2016,Musicians,@JessGlynne,See true https://t.co/2FoVW7mdj6 +11/27/2016,Musicians,@JessGlynne,Brighton... what you got for me 👄 +11/27/2016,Musicians,@JessGlynne,💜 https://t.co/E1w3UuWHdx +11/26/2016,Musicians,@JessGlynne,Apple Crumble and custard in Brighton 💜 +11/26/2016,Musicians,@JessGlynne,I'm yours 💜 https://t.co/Vf6GICuMX4 +11/26/2016,Musicians,@JessGlynne,@emily_JG_ I'm so sorry I didn't get to meet you. I hope you're ok and thank you for all your support. Sending you a big hug 💜Jx +11/25/2016,Musicians,@JessGlynne,'Love Me'. by nadineijewere https://t.co/TGeyzDRVNb +11/25/2016,Musicians,@JessGlynne,NEWCASTLE !!! I'm so excited 💜 +11/24/2016,Musicians,@JessGlynne,A few last min tickets for were just made available for the tour. QUICK Brighton https://t.co/OzxnZnER1O | Plymouth https://t.co/oclnY4I1jT +11/23/2016,Musicians,@JessGlynne,Amelia... I got you 💜 https://t.co/mCPKShRTFO +11/22/2016,Musicians,@JessGlynne,I see you 👁 https://t.co/pGEHlfG1qJ +11/22/2016,Musicians,@JessGlynne,💜 https://t.co/9wELTv5jyX +11/21/2016,Musicians,@JessGlynne,#TAKEMEHOMETOUR https://t.co/neDar1d2nJ +11/21/2016,Musicians,@JessGlynne,Liverpool!!!!!!! WOW!!!!!!! Thank you 💜💜💜💜💜 so loud and so special xxxxx +11/20/2016,Musicians,@JessGlynne,💜. Artwork @jolene_henry / Photo nadineijewere https://t.co/Me6RnQ03Da +11/20/2016,Musicians,@JessGlynne,Just posted a photo https://t.co/GAaUJvSXza +11/20/2016,Musicians,@JessGlynne,Aloha Liverpool 👀 +11/19/2016,Musicians,@JessGlynne,#TAKEMEHOMETOUR https://t.co/8tVrnxgZTw +11/19/2016,Musicians,@JessGlynne,Birmingham... I can't thank you enough for kicking this tour off with so much love! What a… https://t.co/jDbKdj0izx +11/18/2016,Musicians,@JessGlynne,Birmingham... I will be on stage at 8:15pm! You ready!? 💜 +11/18/2016,Musicians,@JessGlynne,BIRMINGHAM ARE YOU READY!!!??? https://t.co/0VNQmvhg9I +11/17/2016,Musicians,@JessGlynne,2 F***ING DAYS!!!!! 😱 https://t.co/RYdH9W4klr +11/16/2016,Musicians,@JessGlynne,T R E E J 💜 https://t.co/B0cv0nXemy +11/15/2016,Musicians,@JessGlynne,Bid on my shoes https://t.co/VFoEG9iQGZ in #CelebrityShoeAuction so @SmallStepsDocs can help kids on rubbish dumps https://t.co/zQzmv6IJOa +11/15/2016,Musicians,@JessGlynne,TOUR IS COMING!! Are you READY!? https://t.co/Scdiw7Xxz9 +11/14/2016,Musicians,@JessGlynne,Just posted a video https://t.co/xxbTmVcPTc +11/14/2016,Musicians,@JessGlynne,T M H T https://t.co/v0LTbcwquJ +11/13/2016,Musicians,@JessGlynne,We tried something like this.... 👄#mannaquinchallange https://t.co/6RlozqaIfy +11/12/2016,Musicians,@JessGlynne,@Jolene_Henry you're telling me +11/11/2016,Musicians,@JessGlynne,I’m working on a special project & need your help. If you’re coming to my tour I want to see where you’ve enjoyed m… https://t.co/SLv339n71b +11/08/2016,Musicians,@JessGlynne,Pull It https://t.co/rNmVA7E2Pe +11/07/2016,Musicians,@JessGlynne,Stand up for women! Let's make history... We didn't fight for nothing. Make sure you vote!… https://t.co/zXSvtHbAej +11/04/2016,Musicians,@JessGlynne,That time at Arsenal https://t.co/sZCzvrKqux +11/04/2016,Musicians,@JessGlynne,That time in America https://t.co/FH2FHCExUB +11/04/2016,Musicians,@JessGlynne,I only have a cup of tea so I can have a biscuit +11/02/2016,Musicians,@JessGlynne,Us / @itslyndell https://t.co/wa9c7ElDFt +11/01/2016,Musicians,@JessGlynne,So excited to announce the supports for my UK tour... We got mr @wretch32 and miss @raye... YOU READY!? X https://t.co/SdSAQMv6gJ +11/01/2016,Musicians,@JessGlynne,I tried... 👄 https://t.co/aivSXN9JlC +11/01/2016,Musicians,@JessGlynne,Just posted a photo https://t.co/fG4s6az1h8 +10/28/2016,Musicians,@JessGlynne,This girl!! @RayBLK_ https://t.co/qKaHXVt0rH 💜 +10/27/2016,Musicians,@JessGlynne,To NYC or NO? +10/26/2016,Musicians,@JessGlynne,Where is the ginger hair emoji? I think it's rude that there isn't one.. +10/26/2016,Musicians,@JessGlynne,Yo / https://t.co/PymD5QPPCk +10/25/2016,Musicians,@JessGlynne,Love #ChrisLevine https://t.co/H48moLGIAJ +10/25/2016,Musicians,@JessGlynne,Thank you R1 Teen Awards 💜 https://t.co/nUmIZx6dMK +10/25/2016,Musicians,@JessGlynne,Sometimes it just works +10/25/2016,Musicians,@JessGlynne,Had an amazing time with you all at the @BBCR1 #TeenAwards on Sunday! Watch it back 👉 https://t.co/NhvLb4Wg6A https://t.co/lXaA2FXkjP +10/24/2016,Musicians,@JessGlynne,Some of my loves 💜 https://t.co/zS01sijUKo +10/23/2016,Musicians,@JessGlynne,@JoFrostMakeUp @Eyeko what a dream!!! 💜 +10/23/2016,Musicians,@JessGlynne,G Y A L S 💓 https://t.co/g4YbIRxvsb +10/23/2016,Musicians,@JessGlynne,@TinieTempah thank you mr! 🙈x +10/22/2016,Musicians,@JessGlynne,3X PLATINUM ALBUM!!! I can't believe it!!!!!! THANK YOUUUUU 😭 +10/22/2016,Musicians,@JessGlynne,To my fans.. I got your cards and I read your messages and your tweets and I can't thank you enough for all the love and support you give! 💓 +10/22/2016,Musicians,@JessGlynne,"I have the best family, friends and team anyone could wish for! I've had the best birthday… https://t.co/FtNJ46Y9dj" +10/19/2016,Musicians,@JessGlynne,Thank you for having me Triumph! Beautiful bikes 💜@officialtriumph #brutalbeauty https://t.co/xZeuMU6n9S +10/18/2016,Musicians,@JessGlynne,@Sweetstix but I missssss YOU +10/17/2016,Musicians,@JessGlynne,👄 https://t.co/YPgM7aN5cE +10/16/2016,Musicians,@JessGlynne,Love my T big thank you nandes_clbb 💓 https://t.co/5TRK9wyM5v +10/14/2016,Musicians,@JessGlynne,@bbdiamond you are too funny!! 😂 +10/13/2016,Musicians,@JessGlynne,@Annarbanannar me too minus the hot choc! 💜 +10/13/2016,Musicians,@JessGlynne,@_kerry93 me too 💓 +10/13/2016,Musicians,@JessGlynne,@AliciaWoodwardx I'm ok xx +10/13/2016,Musicians,@JessGlynne,@bloodygalore xxx +10/13/2016,Musicians,@JessGlynne,How is everyone? 💜 +10/13/2016,Musicians,@JessGlynne,Did you vote? https://t.co/XqLKew15uU +10/13/2016,Musicians,@JessGlynne,"Watch my performance of “Take Me Home”, “Hold My Hand” and “Rather Be” on PBS’ Live at 9:30! https://t.co/pOfuvLJrbH https://t.co/FqUCVLL1DE" +10/12/2016,Musicians,@JessGlynne,"My Love from Austin City Limits ❤ +https://t.co/wLutTZLTUV" +10/10/2016,Musicians,@JessGlynne,@mtvema thank you! 💜 +10/07/2016,Musicians,@JessGlynne,O ok. https://t.co/Cp7UZkPSPu +10/06/2016,Musicians,@JessGlynne,"You can vote as many times as you like, so please take 5 mins to go and vote like crazy! https://t.co/XqLKew15uU" +10/06/2016,Musicians,@JessGlynne,"I'm nominated for the 'Best World Stage’ award at the @MTVEMA's, but I need your votes to win!… https://t.co/5zrLL4Accd" +10/06/2016,Musicians,@JessGlynne,Have you heard about @jinjinofficial and @lovefromcamille ... cause they just too much 👌🏼💜 +10/05/2016,Musicians,@JessGlynne,Salt fish patty and Orange Is The New Black 💓 #Ochiyougotme +10/04/2016,Musicians,@JessGlynne,Vegas 💸 https://t.co/QzuQ2O8BBI +10/04/2016,Musicians,@JessGlynne,Summer is officially done... I just have to say.. Thank you so much! Next stop... Arenas 😱🙈xxx https://t.co/frseNv3Ftq +10/03/2016,Musicians,@JessGlynne,Touch DOWN 🇬🇧 +10/03/2016,Musicians,@JessGlynne,I'm coming home! 🇺🇸✈️🇬🇧 ... +10/01/2016,Musicians,@JessGlynne,Austin!!! I LOVE YOU!!!! Thank you so much!!!!! Austin City Limits festival was such a treat… https://t.co/UV0FZtuehg +07/02/2018,Musicians,@EllaHenderson,Can @ZakAbel just come & sing to me right now? 😍👌🏼 vocals vocals vocallssssssssssss x. E https://t.co/K9baZpQqXH +06/18/2018,Musicians,@EllaHenderson,🙌🏼 STUNNING @itsgracecarter https://t.co/SHhptomsGF +05/26/2018,Musicians,@EllaHenderson,Still best vocals in the game @samsmithworld @bbcr1 🎶❤️🙌🏼🙏🏼 #BiggestWeekend x E +05/19/2018,Musicians,@EllaHenderson,That moment you open your take out pizza box & they delivered to you with extra toppings & stuffed crust!! 🧡🙌🏼🍕😂… https://t.co/IBpTsUY8Vd +05/18/2018,Musicians,@EllaHenderson,Wishing @GabbyBarrett_ all the love & luck in the world for @AmericanIdol final!! ✍️ Loved writing #RiversDeep & yo… https://t.co/aGkYuGDBMk +05/18/2018,Musicians,@EllaHenderson,"RT @HollywoodRecs: ✨ @GabbyBarrett_'s #RiversDeep is out now! 🎶 Listen on @AppleMusic: https://t.co/MDfRDmyBwr + +The LIVE, two-night @Americ…" +05/18/2018,Musicians,@EllaHenderson,"RT @GabbyBarrett_: My new single “Rivers Deep” IS OUT RIGHT NOW! GO GRAB IT on Itunes, Spotify, ETC. ❤️ https://t.co/rWlkHLl1dD" +04/22/2018,Musicians,@EllaHenderson,RIP @Avicii 💔 https://t.co/vVkOZ6eTZq +03/08/2018,Musicians,@EllaHenderson,Feel honoured to be amongst some very incredible & inspiring women @adele @DUALIPA @littlemix .. here’s to making… https://t.co/MCX1wOESnT +02/23/2018,Musicians,@EllaHenderson,ᴛᴜɴᴇ ɪɴᴛᴏ ʏᴏᴜ🎛 https://t.co/u2EFT2lt8W +02/20/2018,Musicians,@EllaHenderson,Completely obsessed @JamesBayMusic 🙌🏼👏🏼 https://t.co/EGkszUCmaF +02/20/2018,Musicians,@EllaHenderson,ᴄʀᴇᴀᴛɪɴɢ✍️ @ArrowBenjamin x. E https://t.co/oZ49UaDYpL +02/20/2018,Musicians,@EllaHenderson,"RT @officialcharts: Loads of artists have assured us they're releasing new albums in 2018, including @EllaHenderson and @RitaOra. Full list…" +02/03/2018,Musicians,@EllaHenderson,RT @KinkyBootsUK: Ella + Kinky Boots = FABULOUS! ❤ https://t.co/n7adarUdhH +02/01/2018,Musicians,@EllaHenderson,HAPPY 10 YEARS @Fabulousmag 🙌🏼❤️😘💛 x. X Thank you for all your support throughout the years! Here’s to an exciting… https://t.co/btRVTwvEtj +01/29/2018,Musicians,@EllaHenderson,Congrats @alessiacara 🙌🏼 so well deserved!! X. E https://t.co/8xkIk8cxg0 +01/20/2018,Musicians,@EllaHenderson,AUSTRIA 🇦🇹 https://t.co/YEjuzqRcox +01/19/2018,Musicians,@EllaHenderson,"@ScarlettMoffatt Ps. You’re beautiful @ScarlettMoffatt ... your not a shape, size or a label... your a woman. ❤️" +01/19/2018,Musicians,@EllaHenderson,🙌🏼❤️ yess https://t.co/Mzvsd9b38i +01/12/2018,Musicians,@EllaHenderson,twenty- two⚜️ https://t.co/1LRs0cYrhZ +01/07/2018,Musicians,@EllaHenderson,sᴀʏ ᴛʜᴇ ᴡᴏʀᴅs... ᴇxᴀᴄᴛʟʏ ᴀs ᴛʜᴇʏ ᴀʀᴇ. #ᴀʟʙᴜᴍ2 https://t.co/oRrlKviwIs +01/06/2018,Musicians,@EllaHenderson,👀🙌🏼 https://t.co/zumcgz3kvw +12/21/2017,Musicians,@EllaHenderson,❤️ https://t.co/TjIbd6hVWa +12/21/2017,Musicians,@EllaHenderson,Driving home for Christmas ❄️🎄@LincsFM x. E https://t.co/K1nXnoQcUd +12/15/2017,Musicians,@EllaHenderson,Thank you @Spotify for an amazing 2017!! Here’s to wrapping up this year & to an exciting 2018 filled with new sou… https://t.co/TgDT9vkrmA +12/10/2017,Musicians,@EllaHenderson,Me when it snows... ❄️❄️❄️ https://t.co/NUWTZLzJlU +12/08/2017,Musicians,@EllaHenderson,Let’s gooo Fridayyy!!! 💋 https://t.co/3X8oQFdt3v +12/07/2017,Musicians,@EllaHenderson,Huge congrats to @JorjaSmith for winning the 2018 @BRITs #CriticsChoiceAward 🙌🏼❤️ ... yassss gurll!! X. E https://t.co/0IAqlgOosq +12/01/2017,Musicians,@EllaHenderson,First day off since tour... & watching @thismorning with @Rylan just makes me so happy ☺️. X x love waking up to you!! X haha. E x +12/01/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Last night of the tour tonight in Bournemouth! Big shout out to everybody who came!! and my amazing band and crew!! Spec… +11/29/2017,Musicians,@EllaHenderson,#EllaAlbum2 https://t.co/hOPSC0dVpZ +11/29/2017,Musicians,@EllaHenderson,GLASGOW ... you were unreal last night!! 🙌🏼💙 thank you Scotland! Xx. E https://t.co/AEoYeZruRw +11/27/2017,Musicians,@EllaHenderson,RT @candycain_: I really feel like 2018 is a good year for some new @EllaHenderson music +11/27/2017,Musicians,@EllaHenderson,Aww glad you enjoyed it!! ❤️🙏🏼 x. E. X x https://t.co/LY4enk3S6v +11/27/2017,Musicians,@EllaHenderson,RT @officialkione: @JamesArthur23 & @EllaHenderson you both were amazing tonight in Nottingham. Defiantly could not stop dancing. 😆 +11/27/2017,Musicians,@EllaHenderson,RT @hollyjames4: Amazing performances tonight by @JamesArthur23 and @EllaHenderson !! 🎶🎶 +11/26/2017,Musicians,@EllaHenderson,RT @gemma_geer: So amazing to see @EllaHenderson and @JamesArthur23 singing together. Beautiful! Thanks for an incredible show x +11/26/2017,Musicians,@EllaHenderson,❤️❤️❤️ https://t.co/IM4jycHXyw +11/26/2017,Musicians,@EllaHenderson,@meggyban 😘 xx E +11/25/2017,Musicians,@EllaHenderson,RT @ellastearn: What a brilliant way to kick off the night! @EllaHenderson was amazing and her new album is beaaaautiful! 🙌🏻❤️ #BackFromThe… +11/25/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Thanks E!! Xx https://t.co/v3pFKockvS +11/25/2017,Musicians,@EllaHenderson,"RT @sonyatvpubuk: #FollowFriday shout-out to just a few of the amazing live shows out & about this weekend +@damianlazarus @hello_operator @…" +11/25/2017,Musicians,@EllaHenderson,@DeanoG1234 😘🙌🏼 x E +11/25/2017,Musicians,@EllaHenderson,RT @DeanoG1234: My guilty pleasure @EllaHenderson rocked Dublin 🙌🏽👌🏼😍 +11/25/2017,Musicians,@EllaHenderson,RT @sonoffisher: @LauraFerns @GentingArena @EllaHenderson @JamesArthur23 Ella is making a comeback after two years away from the music scen… +11/25/2017,Musicians,@EllaHenderson,So glad you enjoyed tonight 😘 x. E https://t.co/idZQNfNQ9O +11/25/2017,Musicians,@EllaHenderson,Last night 🥂❤️ @NicoleScherzy @JamesArthur23 #BackFromTheEdgeTour x. E https://t.co/DXvr4YKa3M +11/24/2017,Musicians,@EllaHenderson,A little bit excited for tonight WEMBLEY!!! @JamesArthur23 #BackFromTheEdgeArenaTour x. E https://t.co/bwmSNLJKEY +11/24/2017,Musicians,@EllaHenderson,Late night tour bus drives just got a lot better ... @JamesArthur23 I can’t cope with you!! 😍😍 x. E… https://t.co/Mh74kH4B1y +11/24/2017,Musicians,@EllaHenderson,❤️ @JamesArthur23 https://t.co/oI8LCp0mMK +11/23/2017,Musicians,@EllaHenderson,"Dressing room vibes, Cardiff I’m a bit excited for tonight!! X @OfficialSteps @Ianhwatkins x. E https://t.co/oafdYsVIyy" +11/22/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Dublin you were sensational last night 🤘🏻 +11/22/2017,Musicians,@EllaHenderson,Last night in Dublin @JamesArthur23 x 🍀❤️ x E https://t.co/MzVOYDJM0m +11/22/2017,Musicians,@EllaHenderson,RT @Michaela_Langan: What a night that was at the 3Arena.. @JamesArthur23 & @EllaHenderson were so good last night 👏👏 +11/21/2017,Musicians,@EllaHenderson,DUBLIN🇮🇪 https://t.co/4D9VIdLP8P +11/21/2017,Musicians,@EllaHenderson,"BELFAST ... I ❤️U + +E x https://t.co/zYMJmWOXdo" +11/19/2017,Musicians,@EllaHenderson,NEWCASTLE ... you blew my mind last night! Thank you!! X. E #BackFromTheEdgeArenaTour https://t.co/AL7jdgmbJG +11/18/2017,Musicians,@EllaHenderson,NEWCASTLE! Who’s ready for tonight?! X I can’t wait! I’ll be on stage at 7:30pm... see you soon 😘 x. E x… https://t.co/uqFbFGGZC2 +11/17/2017,Musicians,@EllaHenderson,SO proud of this amazing woman & thank you for having be a part of writing on this record!! 🙌🏼❤️🎼 If you haven’t al… https://t.co/aNHNrFYFZs +11/17/2017,Musicians,@EllaHenderson,RT @samsmithworld: @EllaHenderson ❤️❤️❤️❤️❤️ +11/17/2017,Musicians,@EllaHenderson,LIVERPOOL who’s ready for tonight?! #BackFromTheEdgeTour x. E https://t.co/HzWNIP1v1a +11/17/2017,Musicians,@EllaHenderson,LEEDS #BackFromTheEdgeTour https://t.co/o3NPpNdOQf +11/17/2017,Musicians,@EllaHenderson,I can’t wait either! X x E https://t.co/fTyDfaBrVF +11/17/2017,Musicians,@EllaHenderson,@Jxrdd Ahhh 🙈🙌🏼🙌🏼😘 +11/17/2017,Musicians,@EllaHenderson,RT @Shaye_Rose: What a show!!!! @JamesArthur23 & @EllaHenderson were absolutely fantastic tonightt!!! What a great night!!! @gingercon97 ❤ +11/17/2017,Musicians,@EllaHenderson,@Chxrlotteclxy ❤️❤️❤️❤️❤️ +11/17/2017,Musicians,@EllaHenderson,@Chxrlotteclxy @JamesArthur23 🙌🏼 +11/17/2017,Musicians,@EllaHenderson,"RT @Chxrlotteclxy: You know you had a good night when you literally have lost your entire voice ✌ +And I got work tomorrow ✌ thanks for a si…" +11/17/2017,Musicians,@EllaHenderson,@katiebrough1023 Ahhh ... so glad you had an amazing night!! X. X big love ❤️ x. E +11/16/2017,Musicians,@EllaHenderson,It’s TOUR TIME!!!! X See you soon LEEDS! X #BackFromTheEdgeTour E x. https://t.co/4Bdh1W08Pk +11/13/2017,Musicians,@EllaHenderson,I CAN'T WAIT to get out on the road with my band in a few days time & perform some NEW music! #BackFromTheEdgeTour… https://t.co/waF3PzoDzX +11/12/2017,Musicians,@EllaHenderson,#LestWeForget 🙏🏼 +11/11/2017,Musicians,@EllaHenderson,Nope! 🙌🏼😍 https://t.co/v2MStiplTB +11/11/2017,Musicians,@EllaHenderson,About last night... LIVERPOOL you were AMAZING!! Felt amazing being back up on stage!! Thank you @RadioCity967 x E x https://t.co/yPAybF0oD6 +11/10/2017,Musicians,@EllaHenderson,❤️🙌🏼 I’ll be back soon ;) x. E https://t.co/MfrEaH6uea +10/18/2017,Musicians,@EllaHenderson,"Secondly, my words can’t even express how phenomenal @emelisande was tonight!! Thank you for being the soulful trut… https://t.co/7DMHicqFxv" +10/18/2017,Musicians,@EllaHenderson,First of all... tonight @calumscott you blew me away 🎵 those vocals!! Wowwww!! X can’t wait for the album Mr! X. E… https://t.co/YbybKdeQN4 +10/11/2017,Musicians,@EllaHenderson,All I can say is ... I can't bloody wait to get back out on that stage!! @RadioCity967 Xxx #ItsBeenAWhile x x. E https://t.co/YtKzMLJ2ti +10/11/2017,Musicians,@EllaHenderson,She inspires me everyday @theashleygraham 🙌🏼 #OwnWhoYouAre #SizeSexy x E. x https://t.co/jrhaU9772w +10/07/2017,Musicians,@EllaHenderson,Had so much fun yesterday on my first magazine shoot back 👀 https://t.co/X4vjaaMM9G +09/28/2017,Musicians,@EllaHenderson,@BBCR1 @JamesArthur23 The prank Tour War is on... starting from NOWWW! 👻 x E +09/28/2017,Musicians,@EllaHenderson,"RT @BBCR1: ""I can't do this anymore..."" 😂 + +Scott & Chris made @JamesArthur23 prank call tour mate @EllaHenderson using speech jammer and it…" +09/15/2017,Musicians,@EllaHenderson,Congrats @samsmithworld for going No.1 in UK!! ❤️❤️❤️ have an amazing show tonight 😘. E x https://t.co/GaY3lTFOqw +09/11/2017,Musicians,@EllaHenderson,So I watched 'IT' the movie last night in 4DX ... 🤡 I'm now officially terrified of clowns. https://t.co/AgPKRFSwED +09/11/2017,Musicians,@EllaHenderson,My thoughts & prayers are with you & your family gorgeous girl ❤️❤️❤️❤️❤️ xxx lots of love & a big hug ... Ella x https://t.co/XltZAjsDlk +08/18/2017,Musicians,@EllaHenderson,It's definitely that #FridayFeeling ... @annalingis !! X x. E. X https://t.co/QnuYIwr4hb +08/07/2017,Musicians,@EllaHenderson,@Annaloveskat @JessieWare @SpotifyUK @Spotify Love it 😍 +08/06/2017,Musicians,@EllaHenderson,Obsessed 😍🔥 @JessieWare @SpotifyUK @Spotify 🎵🎵 x E https://t.co/4eqHWBFUon +08/03/2017,Musicians,@EllaHenderson,RT @LincsFM: @EllaHenderson We can't wait to hear it! 😁 x +08/02/2017,Musicians,@EllaHenderson,Writing this album has & still is one of the most incredible creative processes I will ever go through in life... I can't wait for u to hear +08/02/2017,Musicians,@EllaHenderson,My two faves @thescript & @JPCooperMusic 🙌🏼🙌🏼 x. X. E https://t.co/C3l6v8TOo2 +07/18/2017,Musicians,@EllaHenderson,This makes me so happy... Because flaws are ok 👌🏼@ASOS x x. E https://t.co/YNrrqHmoQ1 +06/21/2017,Musicians,@EllaHenderson,Lets spread the LOVE today ❤️❤️❤️ .... https://t.co/pMssH17qOg xxx. E Donate here: https://t.co/J1KejsYUiG +06/20/2017,Musicians,@EllaHenderson,"RT @SimonCowell: As well as buying the single, we hope people can support those affected by the Grenfell fire by donating. https://t.co/071…" +06/20/2017,Musicians,@EllaHenderson,"RT @SimonCowell: Tomorrow at 8am across major UK radio stations, you will be able to hear Bridge Over Troubled Water. https://t.co/Bgg8u6oU…" +06/20/2017,Musicians,@EllaHenderson,"RT @officialcharts: .@SimonCowell confirms Grenfell Tower charity single, featuring @Louis_Tomlinson, @EllaHenderson & loads more: https://…" +06/01/2017,Musicians,@EllaHenderson,Amazing https://t.co/vH1rQ0iuFY +05/26/2017,Musicians,@EllaHenderson,@LincsFM Have a fabulous bank holiday!! Xx I'll come in to see you & play you the new music soon ;) x. Till then- e… https://t.co/1oNPD4JvTu +05/26/2017,Musicians,@EllaHenderson,Feels good to be home 🌳🍃🌺🌸Lincolnshire !! X @LincsFM x. E https://t.co/jVrYxQpNgj +05/25/2017,Musicians,@EllaHenderson,I just can't process this right now... my heart is broken. Love to all the families that have lost their loved ones… https://t.co/8lkJf5Qw3a +05/23/2017,Musicians,@EllaHenderson,🙏🏼 https://t.co/7OGmJgfzXN +05/23/2017,Musicians,@EllaHenderson,RT @ollyofficial: No one should go to a concert and never come home 💔 +05/22/2017,Musicians,@EllaHenderson,Sending love & prayers to anyone affected by the Ariana concert tonight 🙏🏼 #ConcertsShouldBeSafe x. E +05/22/2017,Musicians,@EllaHenderson,Excited to be part of the @fusionfest line up this year! Tickets go on sale this Friday!! Link here...… https://t.co/0yobTfMPhJ +05/19/2017,Musicians,@EllaHenderson,Time flies ... 5yrs on .. 🎼❤️ @nilerodgers @sonyatvpubuk x. E https://t.co/ib71kuqYnG +05/15/2017,Musicians,@EllaHenderson,"RT @MileyCyrus: #Malibu is available now!!! @AppleMusic - https://t.co/qAciiFlJcg +@Spotify - https://t.co/6aqG2oEfZs https://t.co/Sfx9GcxCjS" +05/15/2017,Musicians,@EllaHenderson,Fucking love this songgg!! I have to meet you one day @MileyCyrus ... So nice to see & feel honesty❤️ x. E https://t.co/PTzR84Je3a +05/10/2017,Musicians,@EllaHenderson,We're all human. Same wants ... same needs... similar desires... & we all love making love. 🌍❤️ x. E https://t.co/h79zD0ZRkq +05/06/2017,Musicians,@EllaHenderson,HAHAAAAA https://t.co/OoqN7uE0ZO +05/03/2017,Musicians,@EllaHenderson,RT @edsheeran: London night #3 ! https://t.co/BNgEpBHTzQ +05/03/2017,Musicians,@EllaHenderson,INCREDIBLE. As always @edsheeran ➗🎼💪🏼 X. E https://t.co/B9H1wcM4qO +05/02/2017,Musicians,@EllaHenderson,Love is a losing game ❤️ ... when Amy comes on in the cab & you're reminded that females can make such a difference to the world🎼 x E X +04/27/2017,Musicians,@EllaHenderson,Such an amazing week in Copenhagen X 🎼 x. E https://t.co/i0d9g08jO7 +04/20/2017,Musicians,@EllaHenderson,#1in4 of us will experience mental health issues. I’m helping @BBCR1 spread the message. Let's stop the stigma! x X… https://t.co/cG0v9RdQFc +04/17/2017,Musicians,@EllaHenderson,RT @CalvinHarris: This shouldn't work but somehow 🤔 https://t.co/4FOrCzxEiy +04/14/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Great day in the studio today with @TMSLDN and @EllaHenderson thanks for drawing on my piano tonight Ella! #NBAAllStar 😉 +04/06/2017,Musicians,@EllaHenderson,@nadiadkins Love @zaralarsson ❤️ +04/06/2017,Musicians,@EllaHenderson,@NicoLovesElla Honesty +04/06/2017,Musicians,@EllaHenderson,@ShanMcA2 anything with Rachel Mcadams !!! ❤️❤️❤️😢😢😢 x. E +04/06/2017,Musicians,@EllaHenderson,@ohitskatieeee Well this tour... it will be performing the new music for the first time!! X +04/06/2017,Musicians,@EllaHenderson,@restyourlouve This song!!!! X obsessed 😍😍 https://t.co/xBDZGenO4e +04/06/2017,Musicians,@EllaHenderson,@ShanOdonnellX Yayyy!! X can't wait !! X. E +04/06/2017,Musicians,@EllaHenderson,@welshmixer_tich 😘😘 +04/06/2017,Musicians,@EllaHenderson,@SEXGRAHAM @JamesArthur23 Of course!!! It's gonna be such a good tour... you coming? X. E +04/06/2017,Musicians,@EllaHenderson,@enchantedlerrie @edsheeran ⭐️⭐️⭐️ +04/06/2017,Musicians,@EllaHenderson,@meganfowlerr12 Soon!! I can't give any specific date yet ...it's changing constantly ... but I feel like I'm bout… https://t.co/fGx42AqSVV +04/06/2017,Musicians,@EllaHenderson,💧💔👄 https://t.co/PqzAKPolH7 +04/06/2017,Musicians,@EllaHenderson,@NicoLovesElla I do 😘👀👀 !! You will know about it soon ! X. E +04/06/2017,Musicians,@EllaHenderson,@kardashianxslay ❤️❤️❤️ +04/06/2017,Musicians,@EllaHenderson,Ok ... 3 1/2 hours late ... but I'm here!! Hit me with the Qs !! X. E +04/06/2017,Musicians,@EllaHenderson,👧🏼 Have a good day guys 😘 x. E gonna be back for 12pm if anyone wants a chat! X. E https://t.co/22Pit2nO3b +04/05/2017,Musicians,@EllaHenderson,RT @stayceexa: Tickets purchased for @JamesArthur23 arena tour. Twice in one year #happylady cant wait to see @EllaHenderson 😍 +04/05/2017,Musicians,@EllaHenderson,Yes!! 🙌🏼 @Pharrell @ArianaGrande @CalvinHarris https://t.co/rz2V8F7SdB +04/04/2017,Musicians,@EllaHenderson,@culeix Hey Poland !! X 👋🏼 x. E +04/04/2017,Musicians,@EllaHenderson,@sjtn_514 I can't wait for you to hear it!! #EllaAlbum2 x. E +04/04/2017,Musicians,@EllaHenderson,For sure 😂😂😂 https://t.co/gwsXJ1KTP4 +04/04/2017,Musicians,@EllaHenderson,@jodeyagg @Sarahjanevg 🙌🏼🙌🏼🙌🏼. X E +04/04/2017,Musicians,@EllaHenderson,RT @All_stars92: @EllaHenderson Saw @JamesArthur23 perform live in London recently... night have to but more tickets to witness the great @… +04/03/2017,Musicians,@EllaHenderson,@mattycaplin 😘😘 +04/03/2017,Musicians,@EllaHenderson,"RT @EchoArena: NEWS: @JamesArthur23 brings his #BackFromTheEdge tour here on 17 November and will be joined by @EllaHenderson! +https://t.c…" +04/03/2017,Musicians,@EllaHenderson,"RT @hotpress: . @JamesArthur23 set for @3arenadublin with the help of @EllaHenderson +https://t.co/em8OrrLeQW" +04/03/2017,Musicians,@EllaHenderson,"RT @Georgie2306: Can't wait to recreate this one day, hopefully it will be soon 🙏🏻 miss you ❤️💜 @EllaHenderson https://t.co/yd1w4gVvbI" +04/03/2017,Musicians,@EllaHenderson,@ShanOdonnellX See you then 😘😘 (hopefully before 😉 #Album2 ) x X. E +04/03/2017,Musicians,@EllaHenderson,Album 2 .... is close ;) x. E https://t.co/F3KFfMAa8Q +04/03/2017,Musicians,@EllaHenderson,@Lucyell_xo Yesss!! 😘😘🎶🎶🙌🏼 x. E +04/03/2017,Musicians,@EllaHenderson,Yayyy!! We need to catch up way before then babe !! @DaniellePeazer X X. E https://t.co/6SqpgB22pN +04/03/2017,Musicians,@EllaHenderson,RT @unrealitytv: .@JamesArthur23 & @EllaHenderson are going on tour together! https://t.co/OPQ4Ebu9jd https://t.co/48BQ2AnffD +04/03/2017,Musicians,@EllaHenderson,Well this is gonna be fun... @jamesarthurinsta23 UK ARENA TOUR this November!! ... tickets go on sale this Friday!… https://t.co/fUKuJbQC0x +04/03/2017,Musicians,@EllaHenderson,🔥🔥🔥 https://t.co/5n2Bhc3Ja7 +04/01/2017,Musicians,@EllaHenderson,My winner .... @meeshjohn 👸🏽 wow... stunning voice & stunning woman 🙌🏼 @thevoiceuk x. E +03/21/2017,Musicians,@EllaHenderson,It's onnnn @Chris_Stark @scott_mills 💦💦 !! X E https://t.co/UREatF1c9P +03/21/2017,Musicians,@EllaHenderson,Ahhh @scott_mills @BBCR1 I'm so coming back for #InnuendoBingo Round 2 soon with #Album2 🙏🏼 xx E… https://t.co/1u1Cwspahn +03/21/2017,Musicians,@EllaHenderson,I'm ready when @cleanbandit are! 👀😘 x E https://t.co/42EUND0Lpl +03/20/2017,Musicians,@EllaHenderson,@shafiqnajib 😘 can't wait for summer 2017!! X x. E +03/17/2017,Musicians,@EllaHenderson,Happy St Paddys Day @thismorning 😂💚💚🍀 ... you never fail to have me breaking into laughter @Rylan !! #LoveYouAll x.… https://t.co/VBa6r0mqwY +03/07/2017,Musicians,@EllaHenderson,#Life https://t.co/XDmj98hKe0 +02/21/2017,Musicians,@EllaHenderson,RT @NeilOrmandy: @EllaHenderson @SILOMusicTV @StvnSolomon @PrettyGreenltd #studiotime 🇬🇧🤘🏻 https://t.co/E6jENanhOz +02/20/2017,Musicians,@EllaHenderson,That green lighting though... Shrek made me his Fiona!! Haha 😂 fun times with the family 💚@ShreksAdventure xx. E https://t.co/EBGFpLWnd3 +02/20/2017,Musicians,@EllaHenderson,Hope you all had a great Monday👊🏼 x. E https://t.co/52heIgbVA1 +02/19/2017,Musicians,@EllaHenderson,Family time❤️😝🍃 @RainforestCafe x. E https://t.co/NIcKJeJgdj +02/15/2017,Musicians,@EllaHenderson,"Drake, you have to be one of the best artists I've ever seen live!! Incredible show tonight! #StartedFromTheBottom… https://t.co/Ku4WXEQiwZ" +02/14/2017,Musicians,@EllaHenderson,😂 Happy Alentines Ay ❤️ xx E https://t.co/VnOoG0R3qg +02/03/2017,Musicians,@EllaHenderson,❤️🎶🎶🎶 was a pleasure! Let's catch up soon! X E https://t.co/fYI9MN4ZYR +01/27/2017,Musicians,@EllaHenderson,🎶 https://t.co/6dCXe7DHJs +01/11/2017,Musicians,@EllaHenderson,@MusicTvOfficial need to get myself over to Italy 🇮🇹... maybe for #EllaAlbum2 ;) x. E +12/20/2016,Musicians,@EllaHenderson,@isthatperryd aww haha!! Not to worry ! I'll be back! 🙌🏼❤️ x. E +12/15/2016,Musicians,@EllaHenderson,Oh Christmas Tree 🎄 https://t.co/SXVxKHpRCN +12/11/2016,Musicians,@EllaHenderson,❤️🙏🏼 #JustHoldOn Sending love & congrats on the new tune! ✨ @Louis_Tomlinson @steveaoki xxxx. E X. X +12/10/2016,Musicians,@EllaHenderson,@RagNBoneManUK @brits congrats Mr!!! 💛💛🙏🏼🙏🏼 x. E +12/10/2016,Musicians,@EllaHenderson,"RT @brits: It was tough, but the winner of #BRITs 2017 Critics' Choice Award is the amazing @RagNBoneManUK! Congratulations!! 🙌 https://t.c…" +12/10/2016,Musicians,@EllaHenderson,"Just watching back #CapitalsJBB & @BrynChristopher you absolutely smashed it!! Those vocals 🙌🏼🔥🔥 on ""Sweet Lovin"" @SigalaMusic !!! E. x." +12/03/2016,Musicians,@EllaHenderson,❤️❤️❤️ https://t.co/i9Cz7kxS7k +12/03/2016,Musicians,@EllaHenderson,Obsessed with this ... my mood right now @lizzo !! ❤️🌟🌎 https://t.co/K1aKvzeQwR +12/02/2016,Musicians,@EllaHenderson,🙏🏼 https://t.co/kqspfLCz8Y +11/29/2016,Musicians,@EllaHenderson,"🦄when I love, it's like fire in my bones https://t.co/HC845TmNHH" +11/22/2016,Musicians,@EllaHenderson,@BethanSellers need this for my Insta +11/16/2016,Musicians,@EllaHenderson,@ASCAPUK @ASCAP ❤️🙏🏼🙏🏼🙏🏼 xx E +11/15/2016,Musicians,@EllaHenderson,Me & my very first @ASCAPUK award!! Thank you so much 🏆🏅💛🙏🏼 x. X x makes me so excited for Album 2 now!! X. E https://t.co/djqKLyhp0S +11/14/2016,Musicians,@EllaHenderson,🙏🏼👀 https://t.co/sRHYcGnHe7 +11/11/2016,Musicians,@EllaHenderson,"RT @CapitalLONnews: Congrats to @yearsandyears, @MNEK, @JessGlynne & @EllaHenderson who have all won @ASCAPUK awards for songwriting #Capit…" +11/09/2016,Musicians,@EllaHenderson,🐶 https://t.co/veEcb7Ixx4 +11/06/2016,Musicians,@EllaHenderson,Sick performance!! 🙏🏼🙌🏼🙌🏼🙌🏼@mtvema @OneRepublic E. x +11/06/2016,Musicians,@EllaHenderson,RT @mtvema: What a DREAMY @OneRepublic performance ☔️💙☁️ https://t.co/av0Y7ApEdO +10/31/2016,Musicians,@EllaHenderson,Such a fun night @Tulleys_Shock 🎉👻☠️💛x. E https://t.co/ZdM3kCgWI2 +10/25/2016,Musicians,@EllaHenderson,@Rylan happy birthday gorgeous 🎈🎉🎉🎉 xx E +10/23/2016,Musicians,@EllaHenderson,Flawless performance @calumscott on #XtraFactor @TheXFactor tonight! X. E +10/22/2016,Musicians,@EllaHenderson,🔥🔥🔥 https://t.co/OvQdJGNoZh +10/21/2016,Musicians,@EllaHenderson,@thismorning @Rylan 💛 ... see you soon with Album 2 😘 x. E +10/21/2016,Musicians,@EllaHenderson,""" I once gave up bread- don't judge, I was frail"" - @emilywarrennnn 🙌🏼😂🙏🏼💛 x. E" +10/21/2016,Musicians,@EllaHenderson,Getting ready for studio today... & got @thismorning on in the background... @Rylan - YOU MAKE MY DAY😂😂😂 #TGIF x. E +10/19/2016,Musicians,@EllaHenderson,HUGE THROWBACK!! Two years ago today my album Chapter One went Number One in the UK official charts!! E. X https://t.co/9OaPp3Jjfp +10/12/2016,Musicians,@EllaHenderson,Bye Finland 👋🏼🇫🇮✈️...Until next time! X. E https://t.co/0the3EJdAK +10/11/2016,Musicians,@EllaHenderson,"RT @qatarairways: Helsinki, we've arrived! Our first flight to Finland has officially landed, and we can't wait to start exploring. #Helsin…" +10/11/2016,Musicians,@EllaHenderson,Had such a great time tonight performing at the @qatarairways #HelsinkiTogether gala. Can't wait to fly with them s… https://t.co/Br8wh6JwHA +10/08/2016,Musicians,@EllaHenderson,What an incredible evening dining with an elephant ❤️🐘 @RainforestCafe x E https://t.co/pX4lwWTH8l +10/04/2016,Musicians,@EllaHenderson,Too much talent ... can't handle @JoeJaniak x x E https://t.co/ORZI3qTtJf +10/04/2016,Musicians,@EllaHenderson,💯👊🏼 https://t.co/yrrJfOttaU +10/01/2016,Musicians,@EllaHenderson,Current vibes @JaxJones @ministryofsound #SaturdayNight x. E https://t.co/jSH8dJULO7 +10/01/2016,Musicians,@EllaHenderson,Good morning to the weekend ☕️ @NespressoUK x x. E https://t.co/ShXRRnN2fT +06/30/2018,Musicians,@samsmithworld,Driver roll up the partition please https://t.co/tOFcVhSLl8 +06/29/2018,Musicians,@samsmithworld,So ready for this https://t.co/aHqHFr5h7t +06/29/2018,Musicians,@samsmithworld,MSG 🙌🏻 https://t.co/OCwjH2Adat +06/27/2018,Musicians,@samsmithworld,Boston. Had me in tears last night. Brooklyn tonight. Can’t fucking wait x https://t.co/Sh8XOMUJ5I +06/21/2018,Musicians,@samsmithworld,"Beautiful people. Me and my wonderful friends filmed a special video for Baby You Make Me Crazy in Verona, one of t… https://t.co/6aF2bi6wvx" +06/19/2018,Musicians,@samsmithworld,Montreal. The sun is out and we can’t wait for tonight x pic by @jamesmsbarber https://t.co/TaGMFDGuJe +06/17/2018,Musicians,@samsmithworld,Beautiful few weeks off in California. Ready to kick off our North American tour in @Drake‘s Kingdom - Toronto - TO… https://t.co/t9aBgu2PSL +06/17/2018,Musicians,@samsmithworld,"There's dread in my heart +And fear in my bones +I just don't know what to say https://t.co/p7tIllhWiz" +06/15/2018,Musicians,@samsmithworld,Too Good At Goodbyes. The Thrill Of It All 🖤 https://t.co/ox0CoCL0gm https://t.co/oMZMzS3hyf +06/14/2018,Musicians,@samsmithworld,💚Always and forever in our hearts https://t.co/xwu5U4t0QM +06/13/2018,Musicians,@samsmithworld,"Shanghai x +Bringing The Thrill Of It All World Tour to you this October. Tickets go on sale 10am local 22nd June 🖤 https://t.co/qajdM4PKCF" +06/13/2018,Musicians,@samsmithworld,THRILLS https://t.co/SLUNn8UCo2 +06/12/2018,Musicians,@samsmithworld,https://t.co/80njGEj0U1 +06/11/2018,Musicians,@samsmithworld,"#TheThrillOfItAllWorldTour North America +ONE WEEK!! +I've missed performing for you so much, can't wait to see all y… https://t.co/pwQra7nhss" +06/11/2018,Musicians,@samsmithworld,"Bangkok 🖤 +So excited to see you this October! Tickets go on sale June 30th x https://t.co/s08FFw75oy" +06/10/2018,Musicians,@samsmithworld,"Music was my first love, and it will be my last https://t.co/HQ2gb2lgXO https://t.co/JfzNtE6xSn" +06/07/2018,Musicians,@samsmithworld,"Bejing x +Tickets for my show at Cadillac Center have just gone on sale https://t.co/j7KEXaFGc8 See you in October 🖤 https://t.co/S5IVZSavMQ" +06/05/2018,Musicians,@samsmithworld,https://t.co/2elJz6hvAm +06/03/2018,Musicians,@samsmithworld,Why am I so emotional +06/01/2018,Musicians,@samsmithworld,This made me cry xx thank you so much xx https://t.co/fOdILPzBDj +05/31/2018,Musicians,@samsmithworld,"Beijing! So excited to bring The Thrill Of It All World Tour to you 🖤 Tickets go on sale 10am, June 7th x https://t.co/26DQOQVMJq" +05/29/2018,Musicians,@samsmithworld,‘Me and my confidence. We are now more than friends. We’re growing up slowly’ - @mariamena_no +05/27/2018,Musicians,@samsmithworld,"RT @BBCR1: We laughed, we cried (a lot) - that performance had it all @samsmithworld 👏 + +We're no good at goodbyes - so let's just say see y…" +05/27/2018,Musicians,@samsmithworld,RT @huwstephens: Last week I was in a shop in Swansea and the nice ladies there said ‘Can you deliver a Love Spoon to Sam Smith from our fr… +05/24/2018,Musicians,@samsmithworld,"SATURDAY 🖤 +@BBCR1 https://t.co/4z2xsN1QTM" +05/21/2018,Musicians,@samsmithworld,"Shooting PRAY. +Thank you to everyone watching the official video, over 10 million views 🖤 +https://t.co/HcJ1gbuou9 https://t.co/dFe7BFerfl" +05/21/2018,Musicians,@samsmithworld,"PRAY live on The Thrill Of It All World Tour x +These shows have been INCREDIBLE. North America next 🖤 https://t.co/GQ5LsZUHjz" +05/21/2018,Musicians,@samsmithworld,@adamlambert ❤️ +05/21/2018,Musicians,@samsmithworld,@TheEllenShow LOVE YOU ELLEN X +05/21/2018,Musicians,@samsmithworld,"RT @TheEllenShow: Happy birthday, @samsmithworld! I hope you have a year filled with joy and an album filled with heartbreak." +05/19/2018,Musicians,@samsmithworld,Thank you so much to everyone donating to @WarChildUK for my 26th Birthday. There’s still a few hours of the fundr… https://t.co/3MOJM6QY5X +05/19/2018,Musicians,@samsmithworld,Xx https://t.co/9HBKKRAmtU +05/19/2018,Musicians,@samsmithworld,Thank you x https://t.co/au1Oi9XsZx +05/19/2018,Musicians,@samsmithworld,TWENTY - SIX https://t.co/P1rSnELeL3 +05/19/2018,Musicians,@samsmithworld,It’s my birthday and I’ll cry if I want to https://t.co/BaGIeht1ad +05/17/2018,Musicians,@samsmithworld,Australia & New Zealand... the gorgeous @PalomaFaith will join me for my #TheThrillOfItAllWorldTour shows. Such an… https://t.co/Hlia20Cfow +05/17/2018,Musicians,@samsmithworld,THANK YOU SO MUCH to everyone who's donated to my 26th Birthday fundraiser for @WarChildUK... just two days to go!!… https://t.co/jJceE6FpMm +05/16/2018,Musicians,@samsmithworld,Blue https://t.co/V0VgaXmZ8r +05/15/2018,Musicians,@samsmithworld,🖤 @WarChildUK https://t.co/B1LDXwJzOW +05/14/2018,Musicians,@samsmithworld,"Italy x the last few shows have been out of this universe. Thank you for giving me your all. I’m so thankful, and f… https://t.co/8gntbI1JCh" +05/12/2018,Musicians,@samsmithworld,Thank you all so much for my birthday donations to @WarChildUK so far 🖤 Just one week left for us to hit our target… https://t.co/VXBL5lZbXd +05/11/2018,Musicians,@samsmithworld,"North America... x +So excited to see you again next month for The Thrill Of It All World tour! You can find shows… https://t.co/lmj9c40jNG" +05/11/2018,Musicians,@samsmithworld,RT @HYPEBEASTMusic_: .@samsmithworld and @Logic301's @Timbaland-produced single gets a reflective visual https://t.co/pGJ9Jh5sRr +05/10/2018,Musicians,@samsmithworld,Im not a saint. Im more of a sinner. https://t.co/HcJ1gbLZlH https://t.co/XHzzUlOyCS +05/10/2018,Musicians,@samsmithworld,"RT @RecordingAcad: What better music video backdrop for a spiritual track such as ""Pray"" than an Italian villa? Directed by @JoeVConnor, @S…" +05/10/2018,Musicians,@samsmithworld,BELLA VITA 🇮🇹 https://t.co/62pQGbm5fE +05/10/2018,Musicians,@samsmithworld,"Singapore! My October 2nd show has sold out, thank you all 🖤 We've just added a second date at Singapore Indoor Sta… https://t.co/WwM9smCODC" +05/09/2018,Musicians,@samsmithworld,"PRAY ft @Logic301 x +https://t.co/DNZcBpAAiM" +05/09/2018,Musicians,@samsmithworld,"I'm so happy to share this with you... the official video for PRAY ft @Logic301 https://t.co/HcJ1gbuou9 +The vision… https://t.co/IPAauIx0Aa" +05/09/2018,Musicians,@samsmithworld,"PRAY. +OFFICIAL VIDEO 6PM BST +@Logic301 https://t.co/LQntZfiuui" +05/08/2018,Musicians,@samsmithworld,CANNOT WAIT for you to see this. Pray feat. @Logic301 official video. TOMORROW https://t.co/B32oW7irMu +05/08/2018,Musicians,@samsmithworld,£26K – could support 85 families in Yemen for 4 months OR could pay for 300 children to attend a Child Friendly Space for a month. +05/08/2018,Musicians,@samsmithworld,"They can play, learn and gain the support of specialist child protection staff who can help them deal with all they have faced." +05/08/2018,Musicians,@samsmithworld,£10K - could pay for 150 children to attend a Child Friendly Space for a month. Keeping them off the streets and in… https://t.co/96EbUjGavi +05/08/2018,Musicians,@samsmithworld,5K - could save 5 children's lives by reuniting them with their family or being placed in a safe foster family. +05/08/2018,Musicians,@samsmithworld,"Please share this link, spread the word and donate what you can. +https://t.co/B1LDXwJzOW +Again, a huge thank you fo… https://t.co/DAlKpW0AvZ" +05/08/2018,Musicians,@samsmithworld,Guys... Thank you so so much for your donations. It means the world to see such incredible support for such an impo… https://t.co/JtAwJySvE5 +05/05/2018,Musicians,@samsmithworld,Release the leg type of day https://t.co/ty0n0eKdNj +05/04/2018,Musicians,@samsmithworld,"Pray feat @Logic301 +Thank you for all the love you've shown this track. It was amazing to collaborate with Logic, a… https://t.co/MRpqpYyTbJ" +05/03/2018,Musicians,@samsmithworld,TOMORROW @spotify @Logic301 https://t.co/P0OMvfgoqD +05/03/2018,Musicians,@samsmithworld,"RT @PearlThusi: Sam smith. Any time. ANY.TIME.!!!!!!! +“Nothing left for you.” @samsmithworld ❤️❤️❤️ https://t.co/jKmErX2de9" +05/02/2018,Musicians,@samsmithworld,"PRAY +https://t.co/m8xpKAiaG8 https://t.co/D3oMT0u1UL" +05/02/2018,Musicians,@samsmithworld,"Singapore, I’m so excited to bring The Thrill Of It All World Tour to you. Tickets are on sale now… https://t.co/uOVuQV4kF1" +05/01/2018,Musicians,@samsmithworld,Me and my divas https://t.co/a1eSEkG3LD +05/01/2018,Musicians,@samsmithworld,Paris🌹photo by @jamesmsbarber https://t.co/EiT8LB1uPD +05/01/2018,Musicians,@samsmithworld,Hello beautiful people.. Plans are underway to open an LGBTQ centre in East London - this will be a safe & support… https://t.co/RcxlJc68vr +04/30/2018,Musicians,@samsmithworld,"I'm Still Standing, the @eltonofficial Special, airs on @ITV tonight at 10.45pm. Such an honour to be a part of thi… https://t.co/tHyC43Ynx8" +04/29/2018,Musicians,@samsmithworld,...who have been affected both physically and mentally by war. Let’s keep donating and spreading the word. Love is… https://t.co/vQCIq8wvpZ +04/29/2018,Musicians,@samsmithworld,Happy Sunday everyone. I’m absolutely blown away and so touched by all your donations already! Thank you all for yo… https://t.co/suIsMtghOK +04/24/2018,Musicians,@samsmithworld,Day off in Berlin. Not leaving this spot https://t.co/aHOfoUpzga +04/24/2018,Musicians,@samsmithworld,Was so lovely to sit down with @george_ezra a few weeks ago and do his podcast xxxx it’s out now!! George Ezra and… https://t.co/clvcLIBi62 +04/24/2018,Musicians,@samsmithworld,Oslo. Thank you so much x I love you all. https://t.co/FZ25AGQjg9 +04/22/2018,Musicians,@samsmithworld,I want to live in Copenhagen https://t.co/buNE2AiuKN +04/22/2018,Musicians,@samsmithworld,@charlieputh Can’t wait to hear it sir x +04/21/2018,Musicians,@samsmithworld,@natashabdnfield ❤️😭❤️ +04/20/2018,Musicians,@samsmithworld,I have just found out that ‘Too Good At Goodbyes’ has sold 10 MILLION COPIES worldwide. My heart is crying right no… https://t.co/hph1QJEUIc +04/20/2018,Musicians,@samsmithworld,"RT @camcountry: Ok you asked for it, so I made my version of Palace available everywhere! (Spotify, iTunes, Apple Music, Google Play, Amazo…" +04/20/2018,Musicians,@samsmithworld,Last night in Stockholm x https://t.co/renJtSIKkJ +04/19/2018,Musicians,@samsmithworld,The European tour BEGINS 🚀 xx Stockholm that blew my mind. Thank you for singing your hearts out and coming away wi… https://t.co/ROJjcuWc1v +04/19/2018,Musicians,@samsmithworld,Me and my wonderful singing teacher Yvie Burnett x my life saver on this tour https://t.co/w4ADaxebPM +04/18/2018,Musicians,@samsmithworld,"Maybe I’ll pray... +https://t.co/m8xpKAiaG8 https://t.co/P85KCYivsP" +04/18/2018,Musicians,@samsmithworld,“Gratitude is riches. Complaint is poverty.” - Doris Day +04/18/2018,Musicians,@samsmithworld,"RT @BBCR1: 🔁 @claraamfo wants to rewind a @SamSmithWorld cover from the Live Lounge at midday, but which one to choose?! + +@EdSheeran, @Pin…" +04/18/2018,Musicians,@samsmithworld,"Seoul, so excited to bring The Thrill Of It All World Tour to you this October. Tickets are on sale now… https://t.co/Z7hCaKGWUX" +04/17/2018,Musicians,@samsmithworld,MANILA! Tickets for my show at @MOAArena are on sale now https://t.co/gKgYsJFfRa. So excited to see you x… https://t.co/WcrpZ1fLKs +04/16/2018,Musicians,@samsmithworld,Curls https://t.co/T5Isaban4g +04/15/2018,Musicians,@samsmithworld,❤️🌹@JohnNewmanMusic https://t.co/RzhzYaF3Ye +04/15/2018,Musicians,@samsmithworld,Beyoncé at coachella looks out of this world 🔥🌹❤️ +04/14/2018,Musicians,@samsmithworld,@aaronamoso03 See you there babe x +04/14/2018,Musicians,@samsmithworld,RT @aaronamoso03: gotta spoil your best friend sometimes😁 ready for @samsmithworld ! https://t.co/j3nDwl5YpL +04/12/2018,Musicians,@samsmithworld,I love these humans so fucking much. https://t.co/egWOX2ti35 +04/11/2018,Musicians,@samsmithworld,@AttitudeMag ❤️❤️❤️❤️❤️❤️❤️❤️ +04/11/2018,Musicians,@samsmithworld,@littlebigtown Thank you ❤️❤️ you guys are sensational 🌹🌹🌹🌹🌹🌹🌹🌹 +04/10/2018,Musicians,@samsmithworld,"TONIGHT. Watch the @eltonofficial special 'I'm Still Standing' from 9pm on @CBS, in celebration of the new album… https://t.co/bTDh4gOIia" +04/08/2018,Musicians,@samsmithworld,"RT @HenryFricker: @samsmithworld was just awe inspiring last night. One of the best concerts I’ve witnessed, thank you 🙏🏼 https://t.co/V65w…" +04/08/2018,Musicians,@samsmithworld,RT @jemmataylxr: Just when I thought I couldn’t love @samsmithworld more than I did. Last night was incredible 🖤 https://t.co/3kd8nTFGUe +04/08/2018,Musicians,@samsmithworld,"RT @camcountry: ✨ P A L A C E ✨ +Live from London tonight with @samsmithworld @TheO2 https://t.co/7RXNQ4VUIK" +04/07/2018,Musicians,@samsmithworld,En route x https://t.co/8SCPsi4plk +04/07/2018,Musicians,@samsmithworld,RT @MrBrunoMajor: Tonight will be my final arena show with @samsmithworld ...see you onstage at 7:45pm 🌙✨ 📸 @andytsv https://t.co/bRfWp9mOpL +04/07/2018,Musicians,@samsmithworld,RT @TfLRail: @SamSmithworld plays @TheO2 this evening. You may ask us How Will I Know travel plans to see him? That’s easy. Just click here… +04/07/2018,Musicians,@samsmithworld,@camcountry @TylerSamJ You are out of the world. Honoured to have you on stage & know you and call you a friend x +04/07/2018,Musicians,@samsmithworld,"RT @camcountry: Wrote #Palace with @samsmithworld & @TylerSamJ...and tonight, I got to sing it w/Sam for the 1st time...AT THE O2!!! 😭 + +Sam…" +04/07/2018,Musicians,@samsmithworld,RT @TheO2: That moment when #TheO2 lights up with @samsmithworld ✨😍 https://t.co/NQLoeNJlH6 +04/06/2018,Musicians,@samsmithworld,LONDON. LET’S GO https://t.co/Qo2rVLKRIp +04/06/2018,Musicians,@samsmithworld,#TheThrillOfItAllWorldTour https://t.co/oe6kLPTtBd +04/05/2018,Musicians,@samsmithworld,Gratitude +04/05/2018,Musicians,@samsmithworld,BIRMINGHAM 🌹Thank you so much for two beautiful shows xxxxxx I love you with all my heart. Singing scars in the cit… https://t.co/0nkKM2aKDy +04/05/2018,Musicians,@samsmithworld,@MrBrunoMajor I love you Bruno xx so honoured to tour with you man!! ❤️ +04/04/2018,Musicians,@samsmithworld,@paulaparsons45 @joeykanowee1 Love you xx miss you xx +04/03/2018,Musicians,@samsmithworld,RT @supadupastacey: @samsmithworld HIM was EVERYTHING! Love IS Love 🏳️‍🌈 my Him is a her and I too am PROUD 🏳️‍🌈❤️ +04/03/2018,Musicians,@samsmithworld,@_alicetilly ❤️thank you x +04/03/2018,Musicians,@samsmithworld,RT @caitlin_bean: i aspire to be as dramatic as @samsmithworld was tonight +04/03/2018,Musicians,@samsmithworld,"RT @amazonmusic: .@samsmithworld gives ""Pray"" a remix, with @Logic301 making a guest appearance. #JustAsk, ""Alexa, play the Song of the Day…" +04/03/2018,Musicians,@samsmithworld,MERCH https://t.co/llZMvCK4jc +04/03/2018,Musicians,@samsmithworld,Thank you @claraamfo. Pray feat. Logic is Tune of the Week on @BBCR1 🖤 +04/02/2018,Musicians,@samsmithworld,Take me to your river https://t.co/PMFG2v5vej +04/02/2018,Musicians,@samsmithworld,🖤 https://t.co/A5deGXHvOf +04/02/2018,Musicians,@samsmithworld,Be real. Be you. Start your week of with a smile and a coffee everyone xx +04/01/2018,Musicians,@samsmithworld,Happy Easter from me and my chicken wings https://t.co/Tjun9k0tc9 +04/01/2018,Musicians,@samsmithworld,I love singing so much +04/01/2018,Musicians,@samsmithworld,"I'm young and I'm foolish, +I make bad decisions https://t.co/zvXxSgRt3a" +04/01/2018,Musicians,@samsmithworld,Farewell Ireland xx I’ll miss you +04/01/2018,Musicians,@samsmithworld,Listening to the lord of the rings film music. Howard Shore is a genius x +03/31/2018,Musicians,@samsmithworld,You lift my heart up https://t.co/cjOFpJ8Y4r +03/31/2018,Musicians,@samsmithworld,007 called and said we need EXTRA drama https://t.co/VHl8kahXoV +03/30/2018,Musicians,@samsmithworld,Honoured to have @Logic301 join me on PRAY. I’m such a fan of his work & his inspiring lyrics. Thank you logic for… https://t.co/0fwrC2lgP9 +03/29/2018,Musicians,@samsmithworld,@krischin Successful +03/29/2018,Musicians,@samsmithworld,RT @Logic301: This is the most important feature I've ever done. Writing from the perspective of someone who feels unwanted and un accepted… +03/29/2018,Musicians,@samsmithworld,RT @AnnieMac: ❤️🚀 https://t.co/tnojcIYLH1 +03/29/2018,Musicians,@samsmithworld,". @AnnieMac @BBCR1 today from 7.30pm 🖤🖤 +https://t.co/VH4XU9h0Md https://t.co/kz357aDQTq" +03/29/2018,Musicians,@samsmithworld,RT @AmiyahYoung: best thing to wake up to 😍😍😍 https://t.co/gQJOBnqYQP +03/29/2018,Musicians,@samsmithworld,"RT @getstiggywidit: Already loved Pray @samsmithworld but Logic 👌 brilliant choice, can’t wait to see you next Friday 🙌" +03/29/2018,Musicians,@samsmithworld,"Gorgeous people... my new single Pray featuring @Logic301 is officially out now 🖤🖤🖤 +Listen at:… https://t.co/TRM7He4zLM" +03/29/2018,Musicians,@samsmithworld,@thedannybeard ❤️ +03/29/2018,Musicians,@samsmithworld,I love my job. Thank you for making this tour possible x https://t.co/sv3UDdZKND +03/28/2018,Musicians,@samsmithworld,"PRAY ft @LOGIC301 +TOMORROW https://t.co/D28N6wZDLK" +03/28/2018,Musicians,@samsmithworld,Manchester. I am floating after last nights show! The energy was OUT OF THIS UNIVERSE! ❤️ Thank you xx https://t.co/MTo8V5gmM8 +03/27/2018,Musicians,@samsmithworld,"My new single is PRAY feat. @Logic301 +I am so excited for you to hear this new version of one of my favourite trac… https://t.co/9zad0CPcav" +03/27/2018,Musicians,@samsmithworld,So happy to announce I've partnered with @PLUS1org so £1 from every ticket on #TheThrillOfOtAllWorldTour goes to… https://t.co/2yIWDqR7FK +03/27/2018,Musicians,@samsmithworld,https://t.co/cihdAqKoE7 +03/26/2018,Musicians,@samsmithworld,"So happy and overwhelmed by the The Thrill Of It All shows!! +Thank you for supporting me, it honestly means so much… https://t.co/jSkZYqT8bI" +03/25/2018,Musicians,@samsmithworld,Grammys 2018 @Logic301 🌹 https://t.co/o7H6gKlR0u +03/24/2018,Musicians,@samsmithworld,RT @nwiggins02: Love this @TheSSEHydro all rainbow for the man himself @samsmithworld which by the amazing concert!!! Yeah I will keep twee… +03/24/2018,Musicians,@samsmithworld,@MsnHeyder ❤️❤️ +03/24/2018,Musicians,@samsmithworld,RT @lisamcd2612: Sing song in the clyde tunnel leaving glasgow hydro after seeing the fabulous @samsmithworld 😍💖 @chris101285 https://t.co/… +03/24/2018,Musicians,@samsmithworld,RT @Kaaayss: @samsmithworld didn't think I could love you any more than what I did but you just blew my mind tonight .. incredible 💖 #Glasg… +03/24/2018,Musicians,@samsmithworld,RT @honestlyspn: One of the most emotional parts of tonight. Such an amazing night. Thank you @samsmithworld for coming to Glasgow and allo… +03/24/2018,Musicians,@samsmithworld,"RT @SammyMactaggart: Another concert over with.... girlies had a great night! Have to say, the staff at Hydro are great too!! Great seats!!…" +03/23/2018,Musicians,@samsmithworld,RT @katycatcaitlin: @samsmithworld 💕💕💕💕what a night !!!! https://t.co/MpZOfNWPTd +03/23/2018,Musicians,@samsmithworld,RT @Leeziooooo: @samsmithworld I am proud to call myself a gay man in this generation 🏳️‍🌈 you made us feel at home and welcome and I thank… +03/23/2018,Musicians,@samsmithworld,I can’t believe the SS HYDRO did this!! Has made me so emotional 🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈… https://t.co/nHJz6WOFkQ +03/23/2018,Musicians,@samsmithworld,@wildfreckle It wasn’t me! It was the venue! So amazing 😭 +03/23/2018,Musicians,@samsmithworld,"RT @mandychic1: @samsmithworld iv been to loads of concerts, you have beaten them all by far !! what a night your voice gets you lost in th…" +03/23/2018,Musicians,@samsmithworld,RT @Jackkbbrennan: A full on spiritual experience at @samsmithworld tonight 🙌🏽 +03/23/2018,Musicians,@samsmithworld,RT @emilyosborneexo: @samsmithworld blew everyone away tonight!! So so amazing❤️❤️❤️ +03/23/2018,Musicians,@samsmithworld,"RT @PopCrave: 'The Thrill Of It All' by Sam Smith is now certified 2x PLATINUM in the UK. + +Congratulations, @samsmithworld! https://t.co/5F…" +03/23/2018,Musicians,@samsmithworld,"RT @EllieGelsthorpe: I have absolutely no words for how amazing @samsmithworld was tonight!! I’ve said it once and I’ll say it again, you c…" +03/23/2018,Musicians,@samsmithworld,"RT @AishaAToussaint: @samsmithworld Exceptional! You did it, I forgot about reality for the last two hours!" +03/23/2018,Musicians,@samsmithworld,"Pray holds a very very special place in my heart x +@Timbaland @JimmyNapes @AppleMusic https://t.co/yq9GhiWe4T" +03/23/2018,Musicians,@samsmithworld,For every show on the tour someone from my band or crew is choosing a record of the day. I'm so excited to be intro… https://t.co/HMAijFQspA +03/23/2018,Musicians,@samsmithworld,"RT @bpi_music: Big congrats to @samsmithworld as his latest album 'The Thrill Of It All' is now 2x Platinum in the UK! + +#bpiAwards + +💿🇬🇧 h…" +03/22/2018,Musicians,@samsmithworld,@ollielarrr Oh my gosh!! This is the most thing ever! CONGRATULATIONS. She is so beautiful 😭 I’m happy to have minorly helped Hahahaha +03/22/2018,Musicians,@samsmithworld,RT @ChenoaJanice: @samsmithworld so leave your history behind let's grab a bottle and ....❤️❤️ https://t.co/NIjZVbewpW +03/22/2018,Musicians,@samsmithworld,@george_ezra @JAMESMSBARBER ❤️ +03/22/2018,Musicians,@samsmithworld,"NEWCASTLE, you never ever ever disappoint. Last night was so wonderful x @JAMESMSBARBER #THETHRILLOFITALLUKTOUR https://t.co/GHuXMQVOxQ" +03/21/2018,Musicians,@samsmithworld,RT @jaimeGjrz: I really need to see @samsmithworld https://t.co/GVpItfFuJr +03/21/2018,Musicians,@samsmithworld,RT @NadineTaylor6: I didn’t think anyone would fill the void George left. Thanks @samsmithworld tonight in Newcastle you healed the pain x +03/21/2018,Musicians,@samsmithworld,RT @hollyjadee_x: Gutted I didn’t get to see @samsmithworld tonight in Newcastle 🙁 +03/21/2018,Musicians,@samsmithworld,RT @laugh_100: The biggest compliment I could pay @samsmithworld is that I felt whether he was playing to 5 or 5000 people tonight he would… +03/21/2018,Musicians,@samsmithworld,😂😂😂😂😂😂😂😂😂😂😂😂😂😩😩😩😩😩😩😩😩😩😩😩😩 https://t.co/1C1LqOy4WV +03/21/2018,Musicians,@samsmithworld,Sheffield. You took us to the moon and back. Thank you for taking #THETHRILLOFITALLUKTOUR's virginity 🖤 https://t.co/TXradfKizr +03/21/2018,Musicians,@samsmithworld,RT @JessicaEhallxxx: @samsmithworld I’m bringing my friend to your show tonight as she went last night and her boyfriend didn’t propose whe… +03/21/2018,Musicians,@samsmithworld,RT @liv_smiithx: Best night of my life watching @samsmithworld WOWOWOW i love him so much. So amazing live i'm crying😭😭😍😍 +03/21/2018,Musicians,@samsmithworld,"RT @victoriathorpes: So went to see @samsmithworld drank tea, sang a couple riffs and left the world behind for a couple hours. What a terr…" +03/21/2018,Musicians,@samsmithworld,@paulaparsons45 @lauraalison86 I LOVE YOU PAULA +03/20/2018,Musicians,@samsmithworld,RT @Jh9Hague: Ok but have you ever seen a more iconic t-shirt??? @samsmithworld https://t.co/kkBEaMOt3D +03/20/2018,Musicians,@samsmithworld,RT @AmieBradwell: My mascaras running and my voice has gone but I’ve just had the best night of my life @samsmithworld 😍😭🤪❤️❤️❤️(everyone p… +03/20/2018,Musicians,@samsmithworld,RT @_annaguest8: Swear we don’t deserve @samsmithworld what an amAZing opening night😭❤️ 🌈also: voice is officially gone +03/20/2018,Musicians,@samsmithworld,RT @chloetayls: .@samsmithworld puts on quite the show 👌🏻 https://t.co/znsFOrWjSV +03/20/2018,Musicians,@samsmithworld,RT @leah_till: @samsmithworld was unbelievable tonight... without doubt my favourite gig I've been to! ❤️❤️❤️ +03/20/2018,Musicians,@samsmithworld,RT @Shan12xox: The best night ever @samsmithworld thank you https://t.co/NiQ3zyNtsw +03/20/2018,Musicians,@samsmithworld,"WE HAVE LIFT OFF!! SHEFFIELD 🖤 +@jasonsherwooddesign #THETHRILLOFITALLUKTOUR https://t.co/MHlQAR71qP" +03/20/2018,Musicians,@samsmithworld,U.K TOUR LIFT OFF IS HOURS AWAY. LET’S GET SPIRITUAL ✨🖤 #THETHRILLOFITALLUKTOUR https://t.co/ghJJO7DZVc +03/19/2018,Musicians,@samsmithworld,FIFTH HARMONY!!!!! NO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +03/19/2018,Musicians,@samsmithworld,"TOMORROW ❤️🌈🇬🇧 +https://t.co/YO6uidRvHP #THETHRILLOFITALLWORLDTOUR https://t.co/6U2eYv2eJ7" +03/18/2018,Musicians,@samsmithworld,@MrBrunoMajor @Selimmunir @lithophyte_vw Fuck yeaaaaaaaaaaaaaah +03/18/2018,Musicians,@samsmithworld,@clairebooth3003 ❤️ I’ll see you Tuesday Claire xx your courage and bravery is so inspiring to me xx +03/17/2018,Musicians,@samsmithworld,Me and my dad https://t.co/rSJOWSRczy +03/17/2018,Musicians,@samsmithworld,"Three Days. #THETHRILLOFITALLWORLDTOUR 🖤🖤🖤 +If you'd like the chance to win a pair of tickets to one of my UK shows.… https://t.co/toenOYfZ8X" +03/16/2018,Musicians,@samsmithworld,4 DAYS 🌈🌈🌈🌈 #THETHRILLOFITALLWORLDTOUR https://t.co/RJGeT6IDHr +03/16/2018,Musicians,@samsmithworld,RT @TheGarden: Tickets are ON SALE NOW for @SamSmithWorld's newly-added second show due to phenomenal demand at The Garden on June 30! Don'… +03/16/2018,Musicians,@samsmithworld,"New US shows on sale from 9am local today 🖤 +https://t.co/YO6uidRvHP #THETHRILLOFITALLWORLDTOUR https://t.co/o6uo0v9B2T" +03/15/2018,Musicians,@samsmithworld,5 DAYS #THETHRILLOFITALLWORLDTOUR https://t.co/LD6K4jJwxS +03/14/2018,Musicians,@samsmithworld,"So honoured to receive this from the sensational @vincekamp, I am such a huge fan of his work. His paintings take m… https://t.co/6INtdq8QpE" +03/14/2018,Musicians,@samsmithworld,"‘Science is not only a disciple of reason but, also, one of romance and passion’ - what an incredible human. Every… https://t.co/Lk3ZtWP5RG" +03/14/2018,Musicians,@samsmithworld,Happy Birthday @QuincyDJones ❤️ Thank you for everything x +03/13/2018,Musicians,@samsmithworld,@andrew2themic Thank you for listening. Your voice sent shivers all over my body! Don’t you EVER EVER EVER stop singing! Ever! ❤️ +03/13/2018,Musicians,@samsmithworld,@merrellgomez This made me cry 😭 I can’t wait to see you gorgeous girl ❤️ I’ll be looking out for you xx +05/18/2018,Musicians,@TantrumJas,"Honored to be a part of Spotify’s Asian Pacific Heritage Month. Listen to my brand new playlist here +https://t.co/vI0qBB5TUR" +05/05/2018,Musicians,@TantrumJas,My cover of Avicii’s “Lonely Together” is available everywhere now. Listen at https://t.co/YPFlegQyAG https://t.co/WHilKBxD57 +05/03/2018,Musicians,@TantrumJas,"I'm going to LA next saturday 🌸 so excited for the sun, the beach and also going to write some more music while i'm out there 💛" +04/22/2018,Musicians,@TantrumJas,"@cowboyrobert @mrocznoduszki Haha yes of course, i need to get back into social media, i feel like i have been in m… https://t.co/6GEjm2yXtF" +04/22/2018,Musicians,@TantrumJas,@illegaljbieber I missed you too ❤❤ +04/22/2018,Musicians,@TantrumJas,"@mrocznoduszki Ahh, haha you are so sweet. I am doing really well, life is good and i feel so ready to do music. How are you??" +04/22/2018,Musicians,@TantrumJas,"@AliceSi67284770 I am good, feels amazing to be on youtube again. Hope you are good aswell" +04/22/2018,Musicians,@TantrumJas,@illegaljbieber Why on earth would i not remember you +04/22/2018,Musicians,@TantrumJas,In tribute to @Avicii. My cover of Lonely Together ft @RitaOra https://t.co/8TYGZOTXzB https://t.co/KTd6n7Gv4h +11/15/2017,Musicians,@TantrumJas,"Love you guys a lot, just need to spend some time focusing on home and being happy" +11/15/2017,Musicians,@TantrumJas,"Hey guys, sorry i have been unactive on social media recently. I've just been quite tired, and been trying not to go on my phone too much" +11/14/2017,Musicians,@TantrumJas,@LuckyShot2002 Aw ty hunny! Love u ❤️ +11/14/2017,Musicians,@TantrumJas,@chloelouiseh_x Love u too +11/14/2017,Musicians,@TantrumJas,@jasxjana Very!!! +11/14/2017,Musicians,@TantrumJas,@jasxjana Me too! +11/14/2017,Musicians,@TantrumJas,@jasxelle I’m so grateful ❤️ +11/14/2017,Musicians,@TantrumJas,@Ginny099 Love u BB +11/14/2017,Musicians,@TantrumJas,@levi_less Thank u Hun! +11/14/2017,Musicians,@TantrumJas,@TantrumLance Miss u too lance! +11/14/2017,Musicians,@TantrumJas,@Will_Hall_00 I’m good thank u! How r u will? +11/14/2017,Musicians,@TantrumJas,@TantrumLance Yeah! 💖 +11/14/2017,Musicians,@TantrumJas,@Hvandelft16 Ty Henk! +11/14/2017,Musicians,@TantrumJas,@tantrumemily Love u loads emi +11/14/2017,Musicians,@TantrumJas,@tantrumemily Seems like yesterday! +11/14/2017,Musicians,@TantrumJas,@chloelouiseh_x Aw yay! +11/13/2017,Musicians,@TantrumJas,Just wanted to do a lil shout out to everyone who was a part of this video for my birthday last week. I love you a… https://t.co/QwVareLyMf +11/13/2017,Musicians,@TantrumJas,Christmas came early 😜 Thanks so much for the beautiful gifts Michael!! https://t.co/3TGHySVqsa +11/13/2017,Musicians,@TantrumJas,Look what just arrived! This is the sweetest thing. Thanks so much @fede_bonatesta 😘 https://t.co/Z9C6LNe1YY +11/08/2017,Musicians,@TantrumJas,@RFMFrance Thank you!! ❤️❤️ +11/08/2017,Musicians,@TantrumJas,Wow! Dirk! These are so incredibly beautiful. Thank you so much❤️❤️❤️ https://t.co/bn9YDwR57w +11/08/2017,Musicians,@TantrumJas,@rufis313 Such a lovely message ❤️❤️❤️ +11/08/2017,Musicians,@TantrumJas,@TheOnyx3 Hope you’re okay honey x +11/08/2017,Musicians,@TantrumJas,@PulsefireLoL You’re not late 😂 +11/08/2017,Musicians,@TantrumJas,@Gimpanzee123 😂 +11/08/2017,Musicians,@TantrumJas,Smiling so much bby 😘😘 https://t.co/vj3EVasvsf +11/08/2017,Musicians,@TantrumJas,"So sweeeeeet ❤️ TySM Thys, @hvandelft16 & Ole https://t.co/Av5xee1Chm" +11/08/2017,Musicians,@TantrumJas,"Ahhh you guys, thank you for the birthday wishes. Love you guys 🌸" +11/08/2017,Musicians,@TantrumJas,@Dreamer_Colour THANK YOUUUU ❤❤❤ +11/08/2017,Musicians,@TantrumJas,"@jasxjana You are so kind! Thank you for writing such sweet words to me. Love you so much, and i am so happy to hear that we are family 💛" +11/08/2017,Musicians,@TantrumJas,@charlycarmona00 Thank you so much!!! Hope you are well 🌸💛 +11/08/2017,Musicians,@TantrumJas,@s_xrry Thank you ❤❤❤❤ +11/08/2017,Musicians,@TantrumJas,@lightseekerLegi Thank you so much ❤❤ +11/08/2017,Musicians,@TantrumJas,@ineedarishug__ ty marti! ❤️ +11/08/2017,Musicians,@TantrumJas,@AdelineEtLapsus I want to! +11/08/2017,Musicians,@TantrumJas,@livelifelively3 tysm!! +11/08/2017,Musicians,@TantrumJas,@ananasftluke @FelixJaehn yes poland!! +11/08/2017,Musicians,@TantrumJas,@jasxelle one day!! +11/08/2017,Musicians,@TantrumJas,@eliza2thompson thank u babe! +11/08/2017,Musicians,@TantrumJas,@cindyarcillo TYSM Cindy!! ❤️❤️❤️ +11/08/2017,Musicians,@TantrumJas,@Mhae_Putri thank youuuuu! +11/08/2017,Musicians,@TantrumJas,@hannienggggg this is the nicest thing ever ty 💕 +11/08/2017,Musicians,@TantrumJas,@hannienggggg Thank you so much BB +11/07/2017,Musicians,@TantrumJas,@dolcethompson just chilling with friends and fam! +11/07/2017,Musicians,@TantrumJas,@Dreamer_Colour Thank you so much!! 💕 +11/07/2017,Musicians,@TantrumJas,@dolcethompson I'm at home! :) x +11/07/2017,Musicians,@TantrumJas,@brinirescueme this is cool!! +11/07/2017,Musicians,@TantrumJas,@TantrumLance this is so sweet lance ty for everything 💕 +11/07/2017,Musicians,@TantrumJas,@marylouisse607 thank u so much 💕 +11/07/2017,Musicians,@TantrumJas,@WildGirl48 exciting!! +11/07/2017,Musicians,@TantrumJas,@jasthomps thank u so much hun 💕 +11/07/2017,Musicians,@TantrumJas,"@Dreamer_Colour this is so sweet, ily 💕" +11/07/2017,Musicians,@TantrumJas,@TheMayDJMH @galaxyart babe u r talented!! +11/07/2017,Musicians,@TantrumJas,@juanenr98274817 thank u honey! +11/07/2017,Musicians,@TantrumJas,@_selenasvojce_ ily2! +11/07/2017,Musicians,@TantrumJas,@cowboyrobert sending hugs Rob! +11/07/2017,Musicians,@TantrumJas,@pavlyuchenko37 im gd thank u sweetie how r u? +11/07/2017,Musicians,@TantrumJas,@JUCEGALU ur so sweet! +11/07/2017,Musicians,@TantrumJas,@pavlyuchenko37 that would be fun! +11/07/2017,Musicians,@TantrumJas,@BrunoSigwela happy studying! 😇 +11/06/2017,Musicians,@TantrumJas,@charlycarmona00 omg hope u feel better hun!! so glad my music can be there to soothe u right now. feel better real soon 💕 +11/06/2017,Musicians,@TantrumJas,@xitssxrx @jasxjana 😂 xx +11/06/2017,Musicians,@TantrumJas,@jasminefangroup night night hunny ❤️ +11/06/2017,Musicians,@TantrumJas,@Hvandelft16 good thank u honey how r u ? 💕 +11/06/2017,Musicians,@TantrumJas,@MaciejPasik night lovely! +11/05/2017,Musicians,@TantrumJas,@maravllrt @FelixJaehn aw this is so cute! +11/05/2017,Musicians,@TantrumJas,@TantrumLance ha! knew I'd never live this down 😂 princess from day 1 💁😂 +11/05/2017,Musicians,@TantrumJas,@JelieberPenguin wooo! +11/05/2017,Musicians,@TantrumJas,@Jasmine_Fanpage omgggg three years! +11/05/2017,Musicians,@TantrumJas,@Hvandelft16 gd thanks Henk how was urs? +11/05/2017,Musicians,@TantrumJas,@selenasnasty u ok hunny? we're here for u +11/05/2017,Musicians,@TantrumJas,@adrianpeter254 love that u love this song +11/05/2017,Musicians,@TantrumJas,@cindyarcillo thanks Cindy! hope you're well honey!! +11/05/2017,Musicians,@TantrumJas,@jasxjana it's been good thanks! reconnecting with a lot of my friends which has been so nice +11/05/2017,Musicians,@TantrumJas,@laurxpearce I knoooow it's come round so soon! +11/05/2017,Musicians,@TantrumJas,@jasxjana so cool! +11/05/2017,Musicians,@TantrumJas,@xitssxrx @jasxjana omg this makes me so so happy! +11/05/2017,Musicians,@TantrumJas,@xitssxrx aw thanks for the recommendation lovely! +11/05/2017,Musicians,@TantrumJas,@tantrumemily u can do it boo! +11/05/2017,Musicians,@TantrumJas,@JasThompson_Fan miss u too bb! +11/05/2017,Musicians,@TantrumJas,@radionob ok? +11/05/2017,Musicians,@TantrumJas,@ineedarishug__ haha so exciting! +11/05/2017,Musicians,@TantrumJas,@LNISHO_ @smule I love this! +11/05/2017,Musicians,@TantrumJas,@jasxjana that sounds so fun! +11/04/2017,Musicians,@TantrumJas,"@jasxelle Oh wonder, i'm so excited haha" +11/04/2017,Musicians,@TantrumJas,"@jasminefangroup It was alright, very chilled. What about you?" +11/04/2017,Musicians,@TantrumJas,"@Will_Hall_00 Heyyyy willllll!! Haha i am good thanks, how are you? Hope your weekend is going good" +11/04/2017,Musicians,@TantrumJas,"@WildGirl48 Miss you too, sorry i've been a little inactive on social media recently. Just needed to hibernate for a little bit haha" +11/04/2017,Musicians,@TantrumJas,"@jasxelle Haha, i'm just going to a concert. Not really going to do much this year, just spend time with friends" +11/04/2017,Musicians,@TantrumJas,@TantrumLance Why what is wrong? I'm sorry +11/04/2017,Musicians,@TantrumJas,"@MaciejPasik Haha yess, i finished it on the first day. Did you?" +11/04/2017,Musicians,@TantrumJas,"@Hvandelft16 Hey! I am good thanks, just spent the morning with my friends at home. How are you?" +11/02/2017,Musicians,@TantrumJas,@JUCEGALU twins! +11/02/2017,Musicians,@TantrumJas,😱😱😱TYSM Naba for sending this all the way from Indonesia! This is such a sweet bday present 😘😘 https://t.co/iey7nkTX13 +11/02/2017,Musicians,@TantrumJas,❤️❤️❤️ https://t.co/SN1msK5YlA https://t.co/XbCub4koap +11/02/2017,Musicians,@TantrumJas,Check out the video from my #GiveaHome performance last month in solidarity with refugees: https://t.co/SN1msJOnu2 @amnestyUSA @sofarsounds +11/01/2017,Musicians,@TantrumJas,@charlycarmona00 aw I miss u too honey! I'm always here 💕 +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan mmmmm this looks so good! +11/01/2017,Musicians,@TantrumJas,@tantrumemily @selenasnasty of course! I keep everything you guys send ❤️ +11/01/2017,Musicians,@TantrumJas,@Gimpanzee123 @WarriorWeirdoDK @Jasmine_Fanpage 😂😂😂 +11/01/2017,Musicians,@TantrumJas,@Will_Hall_00 omg! 😂😂😂😂😂 +11/01/2017,Musicians,@TantrumJas,@AshimGiri1 thank u Ashim! happy haloweeeen! +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan i love popcorn everything 😂 +11/01/2017,Musicians,@TantrumJas,@xlilouis my fans are awesome I'm so lucky +11/01/2017,Musicians,@TantrumJas,@Hvandelft16 ty Henk! +11/01/2017,Musicians,@TantrumJas,@TantrumAziza you too Aziza! ❤️❤️ +11/01/2017,Musicians,@TantrumJas,@JUCEGALU omg this looks so cool! +11/01/2017,Musicians,@TantrumJas,@selenasnasty ily2! happy halloween too lovely! +11/01/2017,Musicians,@TantrumJas,@PVerdina big love to indonesia!! +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan aw that's so sweet! ty! +11/01/2017,Musicians,@TantrumJas,@Gimpanzee123 @Jasmine_Fanpage 😂😂 +10/31/2017,Musicians,@TantrumJas,Happy Halloween everyone! ty Stefan for this edit! 🔥💀👻 https://t.co/qXYfm0QWgd +10/31/2017,Musicians,@TantrumJas,@radionob 😂😂😂 this makes me happy +10/30/2017,Musicians,@TantrumJas,@selenasnasty I ❤️ Love it +10/30/2017,Musicians,@TantrumJas,@BIC1YT I love reading them ❤️ +10/30/2017,Musicians,@TantrumJas,thank you for the lovely letters and gifts. Really grateful for you guys 💛 https://t.co/H5doprZZbr +10/30/2017,Musicians,@TantrumJas,@selenasnasty I am! +10/30/2017,Musicians,@TantrumJas,@Will_Hall_00 Good thanks will how are uuu? +10/30/2017,Musicians,@TantrumJas,@selenasnasty Good thank u bb +10/30/2017,Musicians,@TantrumJas,@jasminefangroup Night lovely ❤️ +10/30/2017,Musicians,@TantrumJas,@Dreamer_Colour Sending hugs!! +10/30/2017,Musicians,@TantrumJas,@xxmelcixx0612 I love America but England will always be home +10/30/2017,Musicians,@TantrumJas,@BrunoSigwela Aw this is a cute idea! +10/30/2017,Musicians,@TantrumJas,@TheMayDJMH @Dreamer_Colour @GalaxyArtt Mmmmm pizza 🍕 +10/30/2017,Musicians,@TantrumJas,@Hvandelft16 I always write every day! 😄 +10/30/2017,Musicians,@TantrumJas,@warrai711 this means so much ty ❤️ +10/29/2017,Musicians,@TantrumJas,@TantrumLance sending hugs bbe! +10/29/2017,Musicians,@TantrumJas,@TheMayDJMH @branxroeux @tumblr @taylorswift13 I'm not at the mo! :) +10/29/2017,Musicians,@TantrumJas,@adimeindc this means so much to hear ❤️ +10/29/2017,Musicians,@TantrumJas,"@jasxelle u're never alone babe, we're always here for u❤️" +10/29/2017,Musicians,@TantrumJas,@Hvandelft16 great thank u Henk! how was urs? +10/29/2017,Musicians,@TantrumJas,@Dreamer_Colour yay I love it when u guys hear my music out and about! 😘 thank u for being awesome!! +10/29/2017,Musicians,@TantrumJas,@SusydjPoesia thank u 😘😘 good night! +10/29/2017,Musicians,@TantrumJas,@MaciejPasik goodnight lovely +10/28/2017,Musicians,@TantrumJas,@selenasnasty kocham cie! +10/28/2017,Musicians,@TantrumJas,@nathgarces ❤️❤️ +10/28/2017,Musicians,@TantrumJas,@TheMayDJMH @Dreamer_Colour @GalaxyArtt hmmm maybe I need to revise for this one before I do... *turns on tetris* +10/28/2017,Musicians,@TantrumJas,@MaciejPasik sending huge hugs 💕💕 +10/28/2017,Musicians,@TantrumJas,@_RitaBright_ aw ur cute too! +10/28/2017,Musicians,@TantrumJas,@Dreamer_Colour ily2!! 💕 +10/28/2017,Musicians,@TantrumJas,"@GlindonDavids1 ty! I rly just wanted to sing about everything thats going on rn. its such a beautiful song, it's g… https://t.co/JXaLG4SGI0" +10/28/2017,Musicians,@TantrumJas,@AshimGiri1 this is so nice to hear ty 💕 +10/28/2017,Musicians,@TantrumJas,@loyalMaddians tysm hunny +10/28/2017,Musicians,@TantrumJas,@jasminefangroup ily2 😘 +10/28/2017,Musicians,@TantrumJas,@ineedarishug__ ty for always looking out for me hun 💕 +10/28/2017,Musicians,@TantrumJas,@Hvandelft16 yeah it's very autumnal in London atm! +10/28/2017,Musicians,@TantrumJas,@jasxelle hey lovely! long time no speaaakk! u ok? I've been gd ty! :D +10/28/2017,Musicians,@TantrumJas,@Dreamer_Colour @TantrumLance oh ... my ... god ... this genuinely made me feel a bit light headed 😅 hope he is ok!! +10/28/2017,Musicians,@TantrumJas,@jasxjana ah this was so fun! look how long my hair was!! +10/28/2017,Musicians,@TantrumJas,@JUCEGALU I knowww! omg this year has gone so fast. What should I do for my birthday?? +10/28/2017,Musicians,@TantrumJas,@jasxjana this is so sweet!! +10/27/2017,Musicians,@TantrumJas,@onewshii ❤️ ty for listening 😘😘 +10/27/2017,Musicians,@TantrumJas,@WarriorWeirdoDK goodnight hun! 💕 +10/27/2017,Musicians,@TantrumJas,@TheMayDJMH @Devon_k01 like an L - shaped tromino? think of tetris! 😂 (see - I knew playing video games would pay off one day) +10/27/2017,Musicians,@TantrumJas,@monsieuraudio @Mhae_Putri @Jasmine_Fanpage yes? 😂 +10/27/2017,Musicians,@TantrumJas,@eddierom205 tysm Eddie ❤️ +10/27/2017,Musicians,@TantrumJas,@jasthomps how r u ? +10/27/2017,Musicians,@TantrumJas,@jasthomps hey Nadya! woooo! I'm gd ty hun 💕 +10/27/2017,Musicians,@TantrumJas,@TantrumnatorUK omg amazzziiing!! +10/27/2017,Musicians,@TantrumJas,@TantrumLance miss u always Lance +10/27/2017,Musicians,@TantrumJas,@patrik_kara 😘😘😘 sounds like a good day! +10/27/2017,Musicians,@TantrumJas,@loyalMaddians sending HUGE love to Indonesia! +10/27/2017,Musicians,@TantrumJas,@tadeo_eleazar hey bb! ilysm tooooooo! +10/27/2017,Musicians,@TantrumJas,@DDaaash aw this is so sweet ha thanks! practice practice practice is all I can say! :D +10/27/2017,Musicians,@TantrumJas,@adam_adrac1 @Mhae_Putri @Jasmine_Fanpage mmm coffee +10/27/2017,Musicians,@TantrumJas,@TheMayDJMH @AshimGiri1 cool - what song r u singing??? +10/27/2017,Musicians,@TantrumJas,@tantrumemily u give me strength hunni +10/27/2017,Musicians,@TantrumJas,@_selenasvojce_ great song! ty for the suggestion +10/27/2017,Musicians,@TantrumJas,@selenasnasty Kocham Cie Milena! +10/27/2017,Musicians,@TantrumJas,@meggymic12 sending huge hugs! 😘😘😘 +10/26/2017,Musicians,@TantrumJas,@TantrumLance Great thanks ❤️ +10/26/2017,Musicians,@TantrumJas,@TheMayDJMH @Mhae_Putri @Jasmine_Fanpage Ty ☺️☺️ +10/26/2017,Musicians,@TantrumJas,@tantrumemily ily❤️ +10/26/2017,Musicians,@TantrumJas,@jasxjana Sending huggggss!!! +10/26/2017,Musicians,@TantrumJas,@navas_gertru @tantrumemily Happy birthday! +10/26/2017,Musicians,@TantrumJas,@Devon_k01 It’s ok honey! School is important! 💖 +10/26/2017,Musicians,@TantrumJas,@Dreamer_Colour So grateful for every view +10/26/2017,Musicians,@TantrumJas,@Dreamer_Colour Thats so sweet ty! +10/26/2017,Musicians,@TantrumJas,@WildGirl48 @SapphireSing @DoveCameron @TTBate Omg how exciting! Do u have an outfit? +10/26/2017,Musicians,@TantrumJas,@MaciejPasik Can’t believe it! +10/25/2017,Musicians,@TantrumJas,Yaaassss ❤️ https://t.co/2ZhSa23OEa +10/25/2017,Musicians,@TantrumJas,Lil fan mail from @tantrumemily ❤️❤️❤️ https://t.co/TnjO4f3WIo +10/24/2017,Musicians,@TantrumJas,@TantrumLance Congratulations!!!! So happy for you +10/24/2017,Musicians,@TantrumJas,@tantrumemily Love and miss you girly +10/24/2017,Musicians,@TantrumJas,"@dolcethompson It was good thank you, been writing new music, how are you?" +10/24/2017,Musicians,@TantrumJas,@Hvandelft16 Yours? +10/24/2017,Musicians,@TantrumJas,@Hvandelft16 Yellow haha +10/23/2017,Musicians,@TantrumJas,Thank you @Spotify for adding the remix of my track “Know Love” from @DVBBS to New Music Friday! Listen now!… https://t.co/rMsRXNLyKa +10/23/2017,Musicians,@TantrumJas,"Have you heard the amazing remix @DVBBS of my song “Know Love”? Listen to it now on @AppleMusic ! +https://t.co/SBr1PMXkjs" +10/23/2017,Musicians,@TantrumJas,@loyalMaddians Goodnight! I am okay thank you! Hope you are well +10/23/2017,Musicians,@TantrumJas,@TantrumLance @SINIZTER15 HAPPY BIRTHDAY!!! Hope you have an amazing day!! +07/02/2018,Musicians,@ParsonJames,Aw thank you guys for nominating me for the music artist category!!! 💛💛💛💛💛 ! https://t.co/Z8rNdKjQhv +07/01/2018,Musicians,@ParsonJames,P town tomorrowwwww +06/30/2018,Musicians,@ParsonJames,Happy belated to my angel!!! @NicoleScherzy https://t.co/np07l5cGus +06/30/2018,Musicians,@ParsonJames,Happy birthday to my beautiful mamaaaa! Constantly thankful and proud to have an outstanding woman like you in my l… https://t.co/4GIjMjuZsU +06/29/2018,Musicians,@ParsonJames,Baby!!!! https://t.co/eshiRv4t4s +06/29/2018,Musicians,@ParsonJames,@cheapyxo How dare u disrespect 1991 binch!!!! +06/29/2018,Musicians,@ParsonJames,Omg hearing Michael on this drake record just got me deeeeep in my feels 😩 +06/28/2018,Musicians,@ParsonJames,😘😘😘😘😘 Love love loveeee !! Best weekend! https://t.co/SonZa2N2lR +06/27/2018,Musicians,@ParsonJames,This incredibly important and powerful film is finally available everywhere. I had the privilege of seeing this fil… https://t.co/r9tMp5hihc +06/25/2018,Musicians,@ParsonJames,thank u @tommydorfman @glaad @ASOS for having me come perform in a literal boxing ring at @OverthrowNYC for #pride… https://t.co/NMOkuSMGnz +06/25/2018,Musicians,@ParsonJames,"RT @Fool_4_Music: This past week has been 🙌🏻. Got to support @ParsonJames at an amazing @amfAR event, got to see @ToveLo spread her message…" +06/25/2018,Musicians,@ParsonJames,literally have the time of my life performing with this beauty. #nycpride #Pride you were AMAZING!!! Thank you… https://t.co/83fuWO7PJw +06/24/2018,Musicians,@ParsonJames,"RT @diorexha: @ParsonJames @Daya okay oh my fucking shit they are so beautiful, look at these smiles softs. appreciation post" +06/23/2018,Musicians,@ParsonJames,Over 100k streams in one day :) thank you guys! @Spotify @CAZZETTE https://t.co/AP3srSaoFv +06/22/2018,Musicians,@ParsonJames,RT @musiqchild007: @ParsonJames https://t.co/DBcGcgSkVR +06/22/2018,Musicians,@ParsonJames,omg Hotel manager DMed me on IG happens to love my music and just upgraded me to a suite WHAT AN ICON +06/22/2018,Musicians,@ParsonJames,"RT @amfAR: Proud to have @ParsonJames lending his voice (literally!) to the fight for an HIV cure at last night's #amfARgenCURE. + +Are you…" +06/22/2018,Musicians,@ParsonJames,Missing You w/ @CAZZETTE is out now. https://t.co/bR0CYtfWZP https://t.co/2z2qxm0NuJ +06/22/2018,Musicians,@ParsonJames,What a fucking incredible privilege to be able to release music for a living. Sometimes in the midst of all the mad… https://t.co/Uwv5zBX4ec +06/22/2018,Musicians,@ParsonJames,The homieeeeeeee @jakemiller https://t.co/r8HABlsS9s +06/22/2018,Musicians,@ParsonJames,@drunkinjames 😘😘😘 +06/21/2018,Musicians,@ParsonJames,Let’s go @amfAR #amfARgenCURE ! Excited to perform tonight and raise money for a cure!!! 🌈🌈🌈💚🧡❤️💙💜 https://t.co/PnWsIQVEaa +06/21/2018,Musicians,@ParsonJames,I’ll be honest one time I bought IG followers when I was in a bind and just starting to release music do u love me less +06/21/2018,Musicians,@ParsonJames,@_Ollie2505 @fernlovesmcfly I felt this +06/21/2018,Musicians,@ParsonJames,@JHartMusic Noooo +06/21/2018,Musicians,@ParsonJames,@JHartMusic Our songs are gonna scissor sissy!! +06/21/2018,Musicians,@ParsonJames,@lex727 University and e 8th! At 12! +06/21/2018,Musicians,@ParsonJames,I’m way too fucked up ocer #koko dying 😩 +06/21/2018,Musicians,@ParsonJames,Tomorrow! @CAZZETTE x @ParsonJames ‘Missin You’ pre save on @Spotify meow https://t.co/WMryCAHAWd https://t.co/qX2ZkGeGZa +06/21/2018,Musicians,@ParsonJames,RT @prmdmusic: Out tomorrow! | @CAZZETTE feat. @ParsonJames - 'Missing You' | https://t.co/lJCE3XR7QH https://t.co/P9c2tZIjPt +06/21/2018,Musicians,@ParsonJames,Woo Chile the ghetto +06/21/2018,Musicians,@ParsonJames,@stivenhg Hahahaha aw! It’s okay! Literally everyone does that nice to meet u! +06/21/2018,Musicians,@ParsonJames,"RT @stivenhg: So I meet @ParsonJames today and he was super sweet even tho I called him “James Parson” +(Sorry I was really excited) https:…" +06/20/2018,Musicians,@ParsonJames,@noyes I don’t know how it slipped my mind hahahahahahah literally can’t stop laughing now +06/20/2018,Musicians,@ParsonJames,@noyes 😩😩😩 +06/20/2018,Musicians,@ParsonJames,Omg What show was it where the girl said u shouldn’t have called me a fat ass Kelly price 😂😩😭 +06/20/2018,Musicians,@ParsonJames,Flew in just in time to catch up with my baby muva last evening. Things got touchy feely per usual but it was a civ… https://t.co/3DzRn3Pr80 +06/19/2018,Musicians,@ParsonJames,On today’s episode of Parson crying on a plane we present hysterical tears featuring Pixar’s Coco. +06/19/2018,Musicians,@ParsonJames,"So excited to be performing at @amfAR ‘s #amfARgencure Solstice party this Thursday, June 21st. Raising funds and… https://t.co/tGEVEgXF4z" +06/18/2018,Musicians,@ParsonJames,@iamjojo OKAY JOANNA THIS FUCKING OUTFITTTTTTT BINCHHHH!!!!! +06/15/2018,Musicians,@ParsonJames,"Thanks so much for including me @BillboardPride ! Talking the moments that I associate with coming out, why you all… https://t.co/5P3diFZF23" +06/14/2018,Musicians,@ParsonJames,"RT @iamsheadiamond: Chattin and being cute with @billboard @BillboardPride ! + +https://t.co/yIt17BN4Fk" +06/14/2018,Musicians,@ParsonJames,"RT @amfAR: One week until our #amfARgenCURE Solstice party with a performance by @ParsonJames and music by @samantharonson. + +For a limited…" +06/14/2018,Musicians,@ParsonJames,"RT @LAFW: .@tovelo in designer @marymejimmypaul, as seen on the @lafw runway 🌈 this past @lapride ⚡️⚡️⚡️ft. @ParsonJames ✨ https://t.co/1sF…" +06/14/2018,Musicians,@ParsonJames,#BelieveinMEAF #MeafMafia https://t.co/hrnBlB9kzf +06/13/2018,Musicians,@ParsonJames,Aw omg thank you @TheSurfLodge https://t.co/OQuSQxjoxB +06/12/2018,Musicians,@ParsonJames,"RT @HOLLYWIRE: Watch @ParsonJames play Happy, Joyous and Free at #Pride as well as sharing the meaning behind #OnlyYou 🎼🎙️https://t.co/Pre…" +06/12/2018,Musicians,@ParsonJames,@Sairahnina Omg +06/12/2018,Musicians,@ParsonJames,@drunkinjames That is a loaded wu +06/12/2018,Musicians,@ParsonJames,y r we ok w our own farts but not farts of others +06/11/2018,Musicians,@ParsonJames,Full video of me & and @ToveLo performance from @lapride is up now! https://t.co/u9aI31GEgL +06/11/2018,Musicians,@ParsonJames,@ToveLo_Daily @almacyber @iconapop 💙💛💙 +06/11/2018,Musicians,@ParsonJames,"RT @ToveLo_Daily: You can now find some of LA Pride's performance highlights on my YT channel. 👀🎉🦄 + +https://t.co/4q9677nRH9 https://t.co/pI…" +06/11/2018,Musicians,@ParsonJames,Best fucking time ever w/ my angel unicorn @ToveLo last night!! Thank you for bringing me out for @lapride !!!! I w… https://t.co/mORXf7NVRD +06/09/2018,Musicians,@ParsonJames,"RT @amfAR: Tickets are now on sale for the #amfARgenCURE Solstice Party! Join us as we kick off summer with a performance by @ParsonJames,…" +06/08/2018,Musicians,@ParsonJames,@Ragenlov It’s not out! Chain Gang :) +06/07/2018,Musicians,@ParsonJames,THANK U FOR THE B DAY LOVE U ICONIC BUNCH OF BEAUTIES. IN NASHVILLE SMILING ABOUT TO PLAY A SHOW FOR @GLAAD W MY FA… https://t.co/wrmg0jR1JN +06/07/2018,Musicians,@ParsonJames,"Proud to be performing at @amfAR’s #amfARgenCURE Solstice Party on Thursday, June 21 in NYC. Come out and support a… https://t.co/xroTGW1DuR" +06/07/2018,Musicians,@ParsonJames,@PCA_Angel @glaad @calumscott Hahaha I’m DOWN! +06/07/2018,Musicians,@ParsonJames,@omfgbruce Aw!!!! Thank you! Just as I land in Nashville!! +06/07/2018,Musicians,@ParsonJames,Haha yasss! Thank you! https://t.co/dUFI49LSdQ +06/07/2018,Musicians,@ParsonJames,On the way to Nashville for @glaad #concertforloveandacceptance ! Give me hot chicken and kisses for my burfday Nashville! +06/07/2018,Musicians,@ParsonJames,RT @melalelou: Happy Birthday to the man who always steals the show with his great dance moves on stage!🕺🏼🎉I wish you continued success wit… +06/07/2018,Musicians,@ParsonJames,"RT @JDudleyRowe: Happy 2️⃣4️⃣ birthday to this incredible & inspiring legend king @ParsonJames! +I love you so much babycakes. +I hope you ha…" +06/07/2018,Musicians,@ParsonJames,RT @b_money_z: .@ParsonJames gracing spotify roof w motivational words and music that’s real 🌱💞 https://t.co/3Ch4qaodrQ +06/07/2018,Musicians,@ParsonJames,💛💛💛💛 love u thank u! https://t.co/pHlAXtZkqU +06/07/2018,Musicians,@ParsonJames,My birthday is tomorrow and I just played a show for @Spotify !!!! https://t.co/5sAbDsi2nY +06/06/2018,Musicians,@ParsonJames,"RT @GMA: JUST IN: Pres. Trump commutes the sentence of Alice Johnson, a 63-year-old great-grandmother, who has served almost 22 years in fe…" +06/06/2018,Musicians,@ParsonJames,literal love this playlist name & appreciate uuuu! 💛💛💛 https://t.co/m6TEyRqzQn +06/05/2018,Musicians,@ParsonJames,"RT @NewNowNext: Rest In Power, Antash'a English! https://t.co/VBeTDwiasD @HRC @TransEquality @equalityfl" +06/05/2018,Musicians,@ParsonJames,SO excited to be performing at the @GLAAD + @TyHerndoncom Concert for Love & Acceptance during #CMAFest on June 7!… https://t.co/EVVmp3VGZ3 +06/05/2018,Musicians,@ParsonJames,@lovelivelife811 @MordecaiNuccio All you have to do is refer to my past tweets before coming at me with a tweet lik… https://t.co/o79MXSBgjT +06/05/2018,Musicians,@ParsonJames,Didn’t realize we were almost b day twins !! Happy birthday Gemini bb! 💛💙 @troyesivan +06/04/2018,Musicians,@ParsonJames,RT @Jon_ALi: My June #QueerNecessities playlist is here!! ✨🏳️‍🌈✨ @MNEK @troyesivan @LelandOfficial @VINCINT_ @yearsandyears @kwaye @QueensC… +06/04/2018,Musicians,@ParsonJames,@OneCanDoLots Aw man that makes my heart swell. So glad you received the music in that way. Appreciate u +06/04/2018,Musicians,@ParsonJames,Yass thank you love! 💛💙💛🌈 https://t.co/vBXy1tSBo7 +06/04/2018,Musicians,@ParsonJames,@thefader Hung out w the cover girl yesterday. Insightful/Playful/Wild #bitch 😂 cc @ToveLo @elliphantmusic https://t.co/ZvxP5uL4cX +06/04/2018,Musicians,@ParsonJames,RT @thefader: .@ToveLo shares artwork for upcoming song “bitches.” https://t.co/C8GGusweZc https://t.co/EvXLAECrTK +06/03/2018,Musicians,@ParsonJames,RT @ArianaGrande: i literally woke up this morning with a sigh of relief and said to myself......... I’m really that bitch huh +06/02/2018,Musicians,@ParsonJames,Throwback to performing at @1027KIISFM #WangoTango ! Going to see some friends kill it today! Who’s going?? 💛💛💛💛 https://t.co/HlDysd2rmQ +06/02/2018,Musicians,@ParsonJames,HAPPY PRIDE IMMA THIQQ THOT https://t.co/bDX53L9zQT +06/02/2018,Musicians,@ParsonJames,@chrissyteigen Chrissy keeps this country together +06/02/2018,Musicians,@ParsonJames,😘😘😘😘 duh bitch. Congrats on release day!!!! https://t.co/YL5GBsnWpS +06/02/2018,Musicians,@ParsonJames,💛💛💛 https://t.co/DhEOQrI8yl +06/02/2018,Musicians,@ParsonJames,RT @noyes: reasons why I love June : ITS PRIDE MONTH!!!!!! 💖❤️💛💚💙💜Happy pride my loves! Shine bright like the diamonds that you are and be… +06/01/2018,Musicians,@ParsonJames,"My 🌈look alive, it’s pride🌈 playlist is up on @Spotify now! Head over to check out some of my fave LGBTQ+ and LGBTQ… https://t.co/ovLRbme9FE" +06/01/2018,Musicians,@ParsonJames,RT @VINCINT_: 🗣YOU’RE THE BEST ❤️💋 https://t.co/jJZHDHRi3l +05/31/2018,Musicians,@ParsonJames,@MordecaiNuccio Representation. I have had to fight double duty to also not have my blackness discredited just bc m… https://t.co/rYn3KU49Wj +05/31/2018,Musicians,@ParsonJames,@MordecaiNuccio I am a black man that like Adam and anyone else was invited with no + 1 and no view of the guest li… https://t.co/DPQkaCdMLh +05/30/2018,Musicians,@ParsonJames,Okay just did Pilates for the first time and she really is that bitch huh. I’m wobblin +05/30/2018,Musicians,@ParsonJames,Thanks @MartinGarrix for chucking broken love onto #themartingarrix show! 💛💛💛🙌🏽 https://t.co/zfNdR2Pjfw +05/30/2018,Musicians,@ParsonJames,SO excited to be performing at the @GLAAD + @TyHerndoncom Concert for Love & Acceptance during #CMAFest on June 7!… https://t.co/v3MqOtX7L4 +05/30/2018,Musicians,@ParsonJames,I AM SO EXCITED !!!! https://t.co/0hBUrHtCI1 +05/30/2018,Musicians,@ParsonJames,@TroyBlackwelljr 🙋🏽‍♂️ +05/29/2018,Musicians,@ParsonJames,@cheapyxo U know miss Barr been forever doing the most 😂 she beeeen blatantly racist but the she got got this mornting! +05/29/2018,Musicians,@ParsonJames,"@cheapyxo She out here calling people Apes, Wylin" +05/29/2018,Musicians,@ParsonJames,@kaggyj1 Thankfully flying domestic isn’t so bad without ID just had to do some verification things! Quite painless! +05/29/2018,Musicians,@ParsonJames,"RT @them: Let’s create a community where everyone is celebrated for who they love, who they are, and how they look. https://t.co/kRidkjTGTH" +05/29/2018,Musicians,@ParsonJames,we need that #BrokenLove New single out now via @SpinninRecords @thehim https://t.co/mf2S2WC3lw https://t.co/R3W8CYwVDW +05/29/2018,Musicians,@ParsonJames,DEVELOPMENT: I still got thru TSA https://t.co/cGep8tMq38 +05/29/2018,Musicians,@ParsonJames,Got pick pocketed at penn station yay no wallet or ID for my flight 😩 +05/28/2018,Musicians,@ParsonJames,Omg What !!! Thank you!!!! 😩😍 this is amazing ! https://t.co/tjl2htf5SQ +05/27/2018,Musicians,@ParsonJames,@Vintagecaption Omg Ily! +05/27/2018,Musicians,@ParsonJames,@Fool_4_Music @thehim ILY! +05/27/2018,Musicians,@ParsonJames,@PhoebeRyan @gladiusjames @JamesNewmanUk @AdventureJames @JamesBayMusic HAHAHAAAA ILYSM +05/26/2018,Musicians,@ParsonJames,MY SHOE GAME LOOKIN LIKE MY BOO GAMEEEE AYYYYY!!!! https://t.co/E5R6Vxxy4R +05/26/2018,Musicians,@ParsonJames,wow suddenly im a @LilMama Stan. https://t.co/ZAm5I1gkAX +05/26/2018,Musicians,@ParsonJames,@PothMaxwell @KeiynanLonsdale @JaredGelman @VINCINT_ @SUP3RFRUIT @jessesaintjohn @HeyItsMarioJose @LelandOfficial… https://t.co/RPRilHnrtl +05/26/2018,Musicians,@ParsonJames,!!!!!!!!!!!!!! https://t.co/AWwDeQJJuf +05/25/2018,Musicians,@ParsonJames,See u tomorrow @TheSurfLodge 💛💛 https://t.co/8CPUgVTxTU +05/25/2018,Musicians,@ParsonJames,omg crying bc this low key sounds like an eric vetro “ssss” exercise interrupted by cutting tf up 😩😩 https://t.co/37Bhg0BKjy +05/25/2018,Musicians,@ParsonJames,#BrokenLove with @thehim is out now via… https://t.co/iXNbzzYVZz +05/25/2018,Musicians,@ParsonJames,Thank you @spotify ! #BrokenLove is on #NewMusicFriday today! Go peep. Cc @thehim @SpinninRecords… https://t.co/4iaQ0TnytJ +05/25/2018,Musicians,@ParsonJames,RT @SpinninRecords: This new tune by @thehim ft. @ParsonJames is a definite must-have! https://t.co/G6HGvcuS4s +05/25/2018,Musicians,@ParsonJames,👏🏽👏🏽👏🏽🙌🏽🙌🏽🙌🏽 congrats @ShawnMendes !!!!! https://t.co/xgsj9Dz2qB +05/25/2018,Musicians,@ParsonJames,"RT @billboarddance: Thousands of ""Kids In Love"": How @KygoMusic became an arena act https://t.co/SZGV30XBo9 https://t.co/l8SmDMdsET" +05/25/2018,Musicians,@ParsonJames,"@alexx_reidd Haha I totally respect and value opinions and I’ll never be EVERYONES cup of tea, im realistic there!… https://t.co/KCrx9VrVFk" +05/25/2018,Musicians,@ParsonJames,@lex727 @thehim Haha I just landed !! Have some shows this weekend in hamptons :) and yassss +05/25/2018,Musicians,@ParsonJames,RT @JDudleyRowe: @ParsonJames @thehim https://t.co/JCfRXbqRlm +05/25/2018,Musicians,@ParsonJames,@alexx_reidd No worries man. All good 🙏🏽 +05/25/2018,Musicians,@ParsonJames,💔💔💔midnight💔💔💔 #BrokenLove @thehim https://t.co/OhmtOW1R8B +05/24/2018,Musicians,@ParsonJames,@cheapyxo IM LINING UP AND BRINGING MY OWN TUPPERWARE TO TAKE LEFTOVERS. +05/24/2018,Musicians,@ParsonJames,@JHartMusic mhm and i was smiling +05/24/2018,Musicians,@ParsonJames,"@alexx_reidd Lol mate go to bed. Must be quite bothered to provide such a dull opinion. Spell check, it’s “eccentri… https://t.co/ZHVdWLCn74" +05/24/2018,Musicians,@ParsonJames,"@Kris4Equity Hi! I am a black gay male (which I have to keep repeating for some reason), and my sentiments are quit… https://t.co/LYlompNoMl" +05/24/2018,Musicians,@ParsonJames,Flying economy but pooping in the first class bathroom rn lol +05/24/2018,Musicians,@ParsonJames,@UrGewdJoodie 😩😩😘😘😘😘💛💛💛 +05/24/2018,Musicians,@ParsonJames,@Into & ALL of our community and those extensions of it deserve and desperately NEED to be celebrated. we have SO f… https://t.co/Hs703dC1MX +05/24/2018,Musicians,@ParsonJames,@Into i did gain a lot of knowledge from this sit down and it was glaringly obvious from the jump what needed to be… https://t.co/oP7PuuKokm +05/24/2018,Musicians,@ParsonJames,"@Into just read ur article and agree wholeheartedly on many levels. I was invited, as a guest, no knowledge of the… https://t.co/pv3peQKQ8c" +05/23/2018,Musicians,@ParsonJames,@TheSurfLodge is about to be lit this #MemorialDayWeekend !!! I’m playing Saturday and the vocal BIBLE @JessieJ is… https://t.co/XJNCFISQH0 +05/23/2018,Musicians,@ParsonJames,RT @SpinninRecords: This absolute gem by @thehim ft. @ParsonJames is coming this Friday! https://t.co/RdHPNLcKNX +05/23/2018,Musicians,@ParsonJames,So much more to be done though. I am extremely thankful for this conversation starter and the opportunity to gather… https://t.co/44CyUS5uGB +05/23/2018,Musicians,@ParsonJames,I was there! & while it was definitely surprising to be the only POC at this initial event i am genuinely excited a… https://t.co/oxI2wKIaWP +05/22/2018,Musicians,@ParsonJames,@MJE4Peace @adamlambert Omg 😂 +05/22/2018,Musicians,@ParsonJames,@TheGlamourGuy @shirleyhalperin @Variety @troyesivan @adamlambert @justintranter16 @IlseyJ @ferras @TOMofLA… https://t.co/Ns8sjwCeVo +05/22/2018,Musicians,@ParsonJames,"RT @TheGlamourGuy: Grateful to @shirleyhalperin for letting me write about homophobia in the biz for @Variety! Thank you to @troyesivan, @a…" +05/22/2018,Musicians,@ParsonJames,Had a little Sunday brunch with some remarkable LGBTQ+ artists and writer and spoke to @Variety_Music @Variety abo… https://t.co/dmU6IKQZ3g +05/22/2018,Musicians,@ParsonJames,@zainab13rw Step away from my mans!!!! +05/22/2018,Musicians,@ParsonJames,@adamlambert 💛💛 so much love for u! +05/22/2018,Musicians,@ParsonJames,RT @adamlambert: What a wondering Sunday brunch ! And thanks for the kind words @ParsonJames !! https://t.co/YOOTe2hT5t +05/22/2018,Musicians,@ParsonJames,RT @jonboy79: “Forcing people into the closet - or making them feel that they can’t be themselves without facing some sort of criticism - c… +05/22/2018,Musicians,@ParsonJames,ILYSM 💛 https://t.co/kDfZ37FB02 +05/22/2018,Musicians,@ParsonJames,@LykkeLi IS PLAYING IN LA TOMORROW AND I AM JUST FINDING OUT!!! WHERE R THE TIX!!! OMG !!!! +05/22/2018,Musicians,@ParsonJames,@thatgirlbishop @jess_earnshaw @LarryFlick @Refinery29 @LiveKellyRyan @KellyRipa @SIRIUSXM Larry!!!!!! +05/21/2018,Musicians,@ParsonJames,RT @thehim: @ParsonJames @SpinninRecords F YEA!!!!! +05/21/2018,Musicians,@ParsonJames,Friday. 5/25. @thehim @SpinninRecords #brokenlove https://t.co/mN4JDgefyo +05/21/2018,Musicians,@ParsonJames,It’s Gemini seasonnnnnnnnnn! My crazy ass and all my other crazy ass Gemini’s are rejoicing! +05/21/2018,Musicians,@ParsonJames,omg @iamcardib shot her video in the same church as my first video it’s litttt. I miss this song. #Temple https://t.co/ppt6nyVyOF +05/19/2018,Musicians,@ParsonJames,Not again. #SanteFe 😢 +05/18/2018,Musicians,@ParsonJames,"RT @ChrChristensen: 22 years ago, a gunman entered Dunblane Primary School in Scotland, killing 16 kids and a teacher. The UK govt responde…" +05/18/2018,Musicians,@ParsonJames,"@TheSurfLodge is going to be lit this summer. Memorial Day weekend I’ll be singing you songs. Also, @JessieJ !!!! I… https://t.co/cOZqMzPaV1" +05/18/2018,Musicians,@ParsonJames,@HENRiAYO Thank you ! 💛💛💛 +05/18/2018,Musicians,@ParsonJames,My brother. We’ve seen the highest of highs and lowest of lows together and I truly love the shit out of you. You a… https://t.co/JtNmNwbsmc +05/17/2018,Musicians,@ParsonJames,RT @theacesofficial: SHAZAM OUR @LateNightSeth PERFORMANCE TONITE AND MAYBE WIN A DOPE AF VINYL BUNDLE @Shazam https://t.co/m4gOkk7Uks +05/17/2018,Musicians,@ParsonJames,RT @theacesofficial: LATE NIGHT ✔️ TUNE IN TONIGHT BABIES @LateNightSeth https://t.co/FkG4zICfio +05/16/2018,Musicians,@ParsonJames,@JSepulvedaNY It’s just time bro. It really hurt me when u said I looked like a fat ass Kelly price. +05/16/2018,Musicians,@ParsonJames,The last few months have brought forth some pivotal changes. All extremely crucial for me to move forward and learn… https://t.co/sLDbZx8kG3 +05/16/2018,Musicians,@ParsonJames,it’s fucking laurel https://t.co/J6e1b4Ly5E +05/16/2018,Musicians,@ParsonJames,"Oh fuck, u gotta go drop this shit like I haven’t walked out your show 4 times crying over this song https://t.co/0bpyzD2PKj" +05/15/2018,Musicians,@ParsonJames,This is me every day https://t.co/8oABr5gBrv +05/14/2018,Musicians,@ParsonJames,C u Memorial Day weekend @TheSurfLodge 💛 https://t.co/1ZLTqdxLJb +05/14/2018,Musicians,@ParsonJames,Whooo said dat???????? **RHOA VOICE** https://t.co/APOBsd12mb +05/14/2018,Musicians,@ParsonJames,What a fucking ride. Thank you to all the cities across the US who… https://t.co/1b0fwlpMo4 +05/13/2018,Musicians,@ParsonJames,#HappyMothersDay Queen. 💛 https://t.co/uiKoKAZOaA +05/13/2018,Musicians,@ParsonJames,@lilyallen HAHAHAHAH LILY! How iconic how progressive. I live +05/13/2018,Musicians,@ParsonJames,Happy Mother’s Day Queen. Not enough words in the world to describe… https://t.co/5C5GQ1UXKF +05/12/2018,Musicians,@ParsonJames,Thank you @barclayscenter you were absolutely magical and I’m still in shock. Tonight we close the tour in Boston’s… https://t.co/Alo4NtTrMH +05/12/2018,Musicians,@ParsonJames,@HeyItsMarioJose Omg my fucking queen ilysm +05/12/2018,Musicians,@ParsonJames,"RT @HeyItsMarioJose: #NowPlaying - “Only You” by @ParsonJames. + +A GODDAMN TUUUUUNE. +Love you, boo. 😍❤️❌💯" +05/12/2018,Musicians,@ParsonJames,I performed at Barclays center last night but immediately went to @MetropolitanBK and @BagelsmithNY after bc im👏🏽that👏🏽kinda👏🏽girl ! +05/12/2018,Musicians,@ParsonJames,@morgxn This !!!!!!!!!!! +05/11/2018,Musicians,@ParsonJames,Full @houseofsolomag spread on stands soon! 💛💛 thank you… https://t.co/rAW3ni7OoK +05/11/2018,Musicians,@ParsonJames,"RT @Fool_4_Music: Oh man, tonight’s gonna be a good night. Pumped for the @KygoMusic show with my bb’s @ParsonJames + @BonnieMcKee PLUS Bon…" +05/10/2018,Musicians,@ParsonJames,RT @BonnieMcKee: Check out @billboard’s premiere of my new single #MadMadWorld! I talked a little about the inspiration for the song and wh… +05/10/2018,Musicians,@ParsonJames,It’s ya boy! @houseofsolomag 💛💛💛 https://t.co/HQjnLtALzl +05/10/2018,Musicians,@ParsonJames,@houseofsolomag on stands soon! shot by @emighernandez 💛💛💛 @… https://t.co/SucExqeehC +05/10/2018,Musicians,@ParsonJames,Thanks for quoting me babes! 💛💛 @into https://t.co/AoGem4Ar0t +05/09/2018,Musicians,@ParsonJames,Tonight! My party returns to NYC’s @PublicHotels !! Will be a cute night of live music and surprises.… https://t.co/O21gB1vU3K +05/09/2018,Musicians,@ParsonJames,little ol me for @houseofsolomag shot by the wonderful Emilio Hernandez💛 full issue out soon!! https://t.co/xc6gLSaJF7 +05/08/2018,Musicians,@ParsonJames,Donald can I talk to u for a min imma make it quick @ The White House https://t.co/NwOHspxgoX +05/08/2018,Musicians,@ParsonJames,Wearing my formation tour jacket to the private White House tour im getting rn bc it’s what I need to do +05/07/2018,Musicians,@ParsonJames,RT @VINCINT_: @JaredGelman @jessesaintjohn There aren’t any ugly people! Just people who are led to believe that because they don’t have ce… +05/07/2018,Musicians,@ParsonJames,Missing my @artecareyes fam 😩💛 @ Careyes https://t.co/eCrLCN2eu5 +05/07/2018,Musicians,@ParsonJames,DC! I’m in You! Playing @TheAnthemDC this eve and tomorrow! 💃🏼💃🏼💃🏼💃🏼 what’s good in these parts?? Xx +05/07/2018,Musicians,@ParsonJames,🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/uBSOhaTQwh +05/06/2018,Musicians,@ParsonJames,@JHartMusic @LelandOfficial Omg +05/06/2018,Musicians,@ParsonJames,@ryankazmarek wow so then im actually heroic +05/06/2018,Musicians,@ParsonJames,@Chinfullthought 😂😂😂 +05/06/2018,Musicians,@ParsonJames,@Deedseramma Yas!!! +05/06/2018,Musicians,@ParsonJames,"RT @Deedseramma: Better gahtdamb believe it! The always will, and I'm more than okay with that. Love. My. Body. #BodyLove #SelfLove #ILoveM…" +05/06/2018,Musicians,@ParsonJames,"hats off to a beautiful Sunday. Amazing show in Chicago last night, now on to DC! 💛💛💛 https://t.co/54KpuX4kd3" +05/06/2018,Musicians,@ParsonJames,My thighs touch but I am still a good person +05/06/2018,Musicians,@ParsonJames,@pcrowl @glaad @jvn Go off!!!!!! 💛💛💛💛 +05/05/2018,Musicians,@ParsonJames,Billy Gilman is the OG Mason Ramsey +05/05/2018,Musicians,@ParsonJames,"RT @SheaCoulee: Happy Cinco De Mayo everyone! And by EVERYONE, I mean the individuals who are paying homage to Mexico's victory in the Batt…" +05/04/2018,Musicians,@ParsonJames,There are some points she has made https://t.co/nGVzlB9uO6 @NICKIMINAJ +05/04/2018,Musicians,@ParsonJames,. @NICKIMINAJ ate that +05/04/2018,Musicians,@ParsonJames,"Today is a significant learning lesson for me. On so many levels. Self care, relationships, responsibility. The bea… https://t.co/aoMgfekaCQ" +05/04/2018,Musicians,@ParsonJames,@hoecakegal Who said anything about race here? These are direct quotes from this man that contradict himself. It’s… https://t.co/S7AMTuMVhH +07/02/2018,Musicians,@JamesArthur23,WOW #BELJAP #WorldCup18 +07/01/2018,Musicians,@JamesArthur23,I love this World Cup +06/29/2018,Musicians,@JamesArthur23,"RT @JAShows_: 🎥 || @JamesArthur23 performing a cover of The Fugee’s ‘READY OR NOT’ at the Jounieh Summer Festival 2018 in Jounieh, Lebanon…" +06/29/2018,Musicians,@JamesArthur23,💖 https://t.co/WremTS2pJI +06/29/2018,Musicians,@JamesArthur23,"#YouDeserveBetterAcoustic + +https://t.co/TV54Zq7PII" +06/29/2018,Musicians,@JamesArthur23,"Thank you Lebanon you were electric tonight, you reminded me how much I’m still in love with the live aspect of the… https://t.co/BamXxFoHin" +06/29/2018,Musicians,@JamesArthur23,After this album I’m retiring. Love James x +06/29/2018,Musicians,@JamesArthur23,🐐 #Scorpion #Drake +06/28/2018,Musicians,@JamesArthur23,https://t.co/ywEuxdXN1D +06/28/2018,Musicians,@JamesArthur23,@ZingyTheRobot Of course we didn’t throw the game there’s a few highlights of us genuinely trying to score +06/28/2018,Musicians,@JamesArthur23,@ReochReoch Begging.. Or performing music in front of millions of people which takes balls big man 😂 there’s a diff… https://t.co/OJwug76nj7 +06/28/2018,Musicians,@JamesArthur23,RT @SpotifyUK: #TBT to when to @rudimental and @JamesArthur23 made us dance until sunrise. Get your #SummerRewind ☀️⏪https://t.co/pgm323EwJ… +06/28/2018,Musicians,@JamesArthur23,RT @CapitalOfficial: It's the #WorldCup match we've all been waiting for: #ENGBEL. ⚽️ Let's just hope the #ThreeLions don't get thrashed as… +06/28/2018,Musicians,@JamesArthur23,I’m the best there is https://t.co/TNU0mH2Q9F +06/28/2018,Musicians,@JamesArthur23,Do we really wanna win today 😕 #ENGBEL +06/27/2018,Musicians,@JamesArthur23,Nirvana nevermind still sounds so good in 2018 #Nirvana #Nevermind +06/27/2018,Musicians,@JamesArthur23,Head to https://t.co/nltKgE62Lw for details & tickets for all my upcoming live shows this summer! +06/27/2018,Musicians,@JamesArthur23,"#YouDeserveBetter @AppleMusic + +https://t.co/09RoHUdW43" +06/26/2018,Musicians,@JamesArthur23,@triglarrrrrrr And a record deal and the opportunity to work with some of the best musical minds in the world and a… https://t.co/MpJc87SZWT +06/26/2018,Musicians,@JamesArthur23,#YouDeserveBetter video coming soon! https://t.co/x2VnSWlqMk +06/26/2018,Musicians,@JamesArthur23,"RT @BBCR1: Set your reminders, @JamesArthur23 fans! 🗓 + +James will be joining us in the Live Lounge on Tuesday 3rd July at 12pm. What would…" +06/26/2018,Musicians,@JamesArthur23,RT @ShottyHorroh: Listen to #Shudehill on all streaming platforms now https://t.co/HM1l1HLnTJ https://t.co/iTgtaeoXSx +06/25/2018,Musicians,@JamesArthur23,"@triglarrrrrrr Pretty stupid comment, that was a competition with a completely different premise 🤨" +06/25/2018,Musicians,@JamesArthur23,@simybv81 I like Dani and jack they’re a cute little cockney couple +06/25/2018,Musicians,@JamesArthur23,@rosieheadland Hahaha I’m giving it a chance! Only watched a bit of tonight’s 😂 +06/25/2018,Musicians,@JamesArthur23,@JohannRed16 Yeah to be fair I’m not with the plot but I’m slowly picking it up +06/25/2018,Musicians,@JamesArthur23,@Lois_Talia Yeah I feel that +06/25/2018,Musicians,@JamesArthur23,Can someone explain to me why our country gets so excited about stuff like Love island? Tonight was my first night… https://t.co/dBvHQy4UsS +06/25/2018,Musicians,@JamesArthur23,"https://t.co/MX97Ve5YaY + +@ShottyHorroh You are just fucking sick bro" +06/25/2018,Musicians,@JamesArthur23,RT @Official_Jamal: Obsessed with @JamesArthur23 ‘s two new tunes 😍😍 +06/24/2018,Musicians,@JamesArthur23,Wow #EnglandvPanama +06/24/2018,Musicians,@JamesArthur23,See I knew he’d score!! #EnglandvPanama @JesseLingard +06/24/2018,Musicians,@JamesArthur23,"Rashford or vardy would be a so effective in that position Sterling is playing in, just my opinion #EnglandvPanama" +06/24/2018,Musicians,@JamesArthur23,One of the best pens I’ve ever seen 😕 #EnglandvPanama +06/24/2018,Musicians,@JamesArthur23,Jon stones first goal #EnglandvPanama 🙄 +06/24/2018,Musicians,@JamesArthur23,Lingard first goal #EnglandvPanama +06/23/2018,Musicians,@JamesArthur23,Had Belgium 5-1 Mexico 2-1 and Germany 2-1 today cashed out Belgium at 5-1 and had Toni kroos to score as well. Lov… https://t.co/YEX4Jk7mOh +06/23/2018,Musicians,@JamesArthur23,Phil Neville whispering the commentary on #BelgioTunisia love it #SaturdayMotivation +06/22/2018,Musicians,@JamesArthur23,😂 https://t.co/mzucNYU9Sk thanks for this dad @Neilarthur1Neil +06/22/2018,Musicians,@JamesArthur23,"Thanks so much @lorraine for having us on the show this morning, here is the interview https://t.co/Nto3GMJkS7 the… https://t.co/mSNDuJfHzG" +06/22/2018,Musicians,@JamesArthur23,"RT @MTVMusicUK: Check out this week's MTV Music (Sky 350/Virgin 310) playlist featuring new entries from... +@JamesArthur23 +@5SOS +@heyitsa…" +06/22/2018,Musicians,@JamesArthur23,Thank you for having me Lorraine! Always so nice to talk to you 🙂🙂😘😘 https://t.co/mooAeEwfSP +06/22/2018,Musicians,@JamesArthur23,RT @JAShows_: MAKE SURE you tune into @ITV to catch @JamesArthur23’s chat and performance on @lorraine this morning! 📺 https://t.co/odAke66… +06/21/2018,Musicians,@JamesArthur23,@Rickahir 😂😂 +06/21/2018,Musicians,@JamesArthur23,"Reach out to that friend you haven’t heard from in a while, you never know what they might be going through. We all… https://t.co/Af7gyxp8Tc" +06/21/2018,Musicians,@JamesArthur23,Happy 90th birthday to the vegan axe wielder @Rickahir your licks and beard get more ripe and juicy by the year.… https://t.co/5BHfPbr0p7 +06/20/2018,Musicians,@JamesArthur23,"RT @KissFMUK: It's that age-old question, #LoveIsland or the #WorldCup? @JamesArthur23's weighed in, where do you stand? 🤔 #POLSEN + +WATCH…" +06/18/2018,Musicians,@JamesArthur23,"RT @KissFMUK: TOMORROW we'll be chatting to @JamesArthur23 on #KISSBreakfast and it all kicks off from 7am! 🙌 + +LISTEN here 👉 https://t.co/…" +06/18/2018,Musicians,@JamesArthur23,#TheCarters album is Great +06/18/2018,Musicians,@JamesArthur23,"Summer 2018 issue for  +@euphoriazine #EUPHORIA8 +📸 @jackalexanderuk + +https://t.co/ytCYBfsyAB https://t.co/cCMZCfEFtL" +06/17/2018,Musicians,@JamesArthur23,Never has anybody eaten so many carbs in one weekend 😔 +06/17/2018,Musicians,@JamesArthur23,The whole world should be listening to the new @Miguel album #warandleisure +06/16/2018,Musicians,@JamesArthur23,"RT @Z100NewYork: Wanna know what @MaxwellsHouse is listening to this weekend?? Here are his 🖐🏾 NEW #MaxwellApproved tracks! + +@alessiacara -…" +06/16/2018,Musicians,@JamesArthur23,FUCK OFF FLY +06/15/2018,Musicians,@JamesArthur23,https://t.co/GtxYFfTyJi https://t.co/PBOoW6aGOZ +06/15/2018,Musicians,@JamesArthur23,I listen to the used when I meditate +06/15/2018,Musicians,@JamesArthur23,"RT @iHeartRadioAU: The @iHeartRadioAU artist of the week is @JamesArthur23 ❤️🎶 + +Tune into the #iHeartRadioCountdown this Sunday from 6pm AE…" +06/14/2018,Musicians,@JamesArthur23,"@dapperlaughs All good, no hard feelings. Much respect for apologising takes a big man." +06/14/2018,Musicians,@JamesArthur23,The World Cup opening later getting me through this grey arse morning in London +06/13/2018,Musicians,@JamesArthur23,"RT @BBCRadio2: 🎶 New to the Radio 2 Playlist this week... + +🆕 @KylieMinogue +🆕 @LennyKravitz +🆕 @JamesArthur23 + +Find out more about the mus…" +06/13/2018,Musicians,@JamesArthur23,@finers9 @dapperlaughs I was also in Marbella last night so.. +06/13/2018,Musicians,@JamesArthur23,@dapperlaughs To be fair mate back in 2012 she could well hv got DM’d along with the rest of the babestation cast b… https://t.co/a7WVNxRNXM +06/13/2018,Musicians,@JamesArthur23,"I promise! And I promise to sing it better + +Better + +Better ..🙄 https://t.co/G75dxdLiCe" +06/13/2018,Musicians,@JamesArthur23,@DanielTheFiRowe @dapperlaughs That and multi platinum records yeah 😂 read a book mate +06/13/2018,Musicians,@JamesArthur23,"@dapperlaughs Mugged your mate off? I did a meet a greet with all 500 people that were there off my own back, how a… https://t.co/rqvo0PpjP4" +06/12/2018,Musicians,@JamesArthur23,"RT @MTVMusicUK: 🚨 If you've always wanted to ask @JamesArthur23 something, THIS IS YOUR CHANCE! Head here >>> https://t.co/7oTX36awVF and J…" +06/12/2018,Musicians,@JamesArthur23,"RT @SonyMusicUK: Were you lucky enough to see @JamesArthur23 perform to this HUGE crowd at @CapitalOfficial's #capitalSTB? + +What an incredi…" +06/12/2018,Musicians,@JamesArthur23,"#AtMyWeakest +https://t.co/VpAyWl3ynL" +06/11/2018,Musicians,@JamesArthur23,RT @Pressparty: .@JamesArthur23’s “Back From The Edge” went straight to No.1 in the UK charts & has gone multi platinum worldwide https://t… +06/10/2018,Musicians,@JamesArthur23,"#capitalSTB @CapitalOfficial + +https://t.co/ivo0LrPH2g https://t.co/ZonvwnCBIo" +06/09/2018,Musicians,@JamesArthur23,Thank you @CapitalOfficial 🙌🏻 #SummerTimeBall https://t.co/zhekEtKW37 +06/09/2018,Musicians,@JamesArthur23,"RT @officialcharts: Check out this week's Official Singles Chart in full, incl. You Deserve Better, a definite future hit from @JamesArthur…" +06/08/2018,Musicians,@JamesArthur23,@GeorgiaGarrod97 Happy birthday x +06/08/2018,Musicians,@JamesArthur23,"RT @AppleMusic: Two amazing singles from @JamesArthur23. Listen now. +#YouDeserveBetter +#AtMyWeakest +https://t.co/a6pO1R4Qmb" +06/08/2018,Musicians,@JamesArthur23,Thank you very much! https://t.co/gMdz7NCJyD +06/07/2018,Musicians,@JamesArthur23,Big love Australia ! ❤️ https://t.co/mXqB7KQ8hh +06/06/2018,Musicians,@JamesArthur23,"RT @Pressparty: .@JamesArthur23’s ""Say You Won’t Let Go” has sold more than 9.6 million copies globally https://t.co/y6FlwGbLNS https://t.c…" +06/06/2018,Musicians,@JamesArthur23,🎥 #YouDeserveBetter https://t.co/gIVbWEXJMs +06/06/2018,Musicians,@JamesArthur23,@pandoratweets @KissFMUK Thank you :) x +06/05/2018,Musicians,@JamesArthur23,"RT @Sianwelby: Get ready, he’s here! 😝@JamesArthur23 on the show next! @thisisheart #YouDeserveBetter https://t.co/Zy5ifwuehr" +06/05/2018,Musicians,@JamesArthur23,".@AmazonMusicUK + +https://t.co/tcMFPdcUNO https://t.co/IVoJSfKxAP" +06/05/2018,Musicians,@JamesArthur23,RT @officialcharts: The UK believes that @JamesArthur23's new single 'deserves' a spot on the Official Trending Chart! Listen to You Deserv… +06/05/2018,Musicians,@JamesArthur23,"#NewMusicFriday MusicFriday @Spotify + +https://t.co/OzLMqKpWuf https://t.co/hgXX40fq2l" +06/04/2018,Musicians,@JamesArthur23,RT @JAShows_: 🎥 || CHECK OUT @ShawnMendes telling his fan base to check out @JamesArthur23's new song #YouDeserveBetter 🎵 - (via: @BeIlasMe… +06/04/2018,Musicians,@JamesArthur23,"You deserve better, better... @TheVoiceAU https://t.co/SDJnHBSkzu" +06/04/2018,Musicians,@JamesArthur23,"RT @ColumbiaRecords: Two new songs from @JamesArthur23? Yes, please! https://t.co/RPVvgBlLwS https://t.co/ICFM3ks4Js" +06/03/2018,Musicians,@JamesArthur23,@redrose7221 @TheVoiceAU The last post chorus of the song needed to be on track so that I could sing the signature… https://t.co/aH3cPrwFDU +06/03/2018,Musicians,@JamesArthur23,Thank you @TheVoiceAU #YouDeserveBetter https://t.co/s1UyypS871 +06/03/2018,Musicians,@JamesArthur23,RT @SonyMusicAU: See @JamesArthur23's world premier performance of #YouDeserveBetter tonight on @TheVoiceAU | starts at 7pm AEST 🕺 https://… +06/03/2018,Musicians,@JamesArthur23,TONIGHT! @TheVoiceAU #YouDeserveBetter https://t.co/BGznk7xszw +06/02/2018,Musicians,@JamesArthur23,RT @syco: 🎶 You Deserve Better 🎶 @JamesArthur23 👌 https://t.co/16QPf8RRQu https://t.co/tw98ljknN4 +06/02/2018,Musicians,@JamesArthur23,RT @_kris_ashley_: When you’re in the car listening to @JamesArthur23 ‘s new shit and the MF in the car with you won’t shut TF up! 🤬 #YouDe… +06/02/2018,Musicians,@JamesArthur23,Beyond belief https://t.co/nuiCOoFt6E +06/02/2018,Musicians,@JamesArthur23,Thanks! Im glad you’re feeling it x https://t.co/pXU4a9iCiY +06/02/2018,Musicians,@JamesArthur23,"RT @AilsaBailliex: 'And I hope you find somebody else +That'll love you like nobody else' 🎧 @JamesArthur23 #YouDeserveBetter is 🔥🔥" +06/02/2018,Musicians,@JamesArthur23,"RT @stanecy: @JamesArthur23 Loving the Song!!! ❤️❤️😍 +Feel like this album is going to be So Much Of Your Style - Like how you first came ou…" +06/02/2018,Musicians,@JamesArthur23,"Yo! Are you all enjoy #YouDeserveBetter ? + +https://t.co/yOmhv9wS2R" +06/02/2018,Musicians,@JamesArthur23,RT @MTVMusicUK: The video of the week on @ClubMTV is 'You Can Cry (ft. @JamesArthur23)' by @marshmellomusic x @therealjuicyj 💚 Watch it her… +06/02/2018,Musicians,@JamesArthur23,RT @SonyMusicAU: Tune in to @TheVoiceAU tomorrow night to see the world premier live performance of @JamesArthur23’s new bop #YouDeserveBet… +06/02/2018,Musicians,@JamesArthur23,RT @syco: .@JamesArthur23 releases two brand new songs today 'You Deserve Better' and 'At My Weakest'! 🎶 Out now everywhere! 🙌 https://t.co… +06/02/2018,Musicians,@JamesArthur23,"RT @chunxlix: I- @JamesArthur23 boiii it's sick i love it +#YouDeserveBetter https://t.co/idxacofCeb" +06/01/2018,Musicians,@JamesArthur23,I see :) thank you xxxx https://t.co/J1wXfMXlp1 +06/01/2018,Musicians,@JamesArthur23,"RT @Charllouiseox: My timeline is such a happy place and it's all thank to you @JamesArthur23! ❤ + +#YouDeserveBetter + #AtMyWeakest are both…" +06/01/2018,Musicians,@JamesArthur23,❤️💗 https://t.co/b1uazsY4cO +06/01/2018,Musicians,@JamesArthur23,RT @TrollopeLucy: i think I’ve found a voice i will listen to for the rest of my life - @JamesArthur23 +06/01/2018,Musicians,@JamesArthur23,"This is what it’s all about. I hope your daughter gets well soon, thanks for the love x https://t.co/6ZDCDrTtNr" +06/01/2018,Musicians,@JamesArthur23,RT @zaynabmm: #YouDeserveBetter and #AtMyWeakest are beyond perfect. @JamesArthur23 never fails to amaze me 😭💜💜💜 +06/01/2018,Musicians,@JamesArthur23,RT @SienPuttemans: Even if @JamesArthur23 will never notice me. He will forever be the best artist in my opinion. And he did it again #YouD… +06/01/2018,Musicians,@JamesArthur23,RT @nygmarose: Omg what is this magic?!?? Everything by @JamesArthur23 are magical!! I wanna cry coz it’s so beautiful 😭 followed him for s… +06/01/2018,Musicians,@JamesArthur23,I see you 💗 https://t.co/n3lUyWlfIr +06/01/2018,Musicians,@JamesArthur23,RT @INKEDSTYLES94: @JamesArthur23 literally me after hearing #YouDeserveBetter for the first time https://t.co/jSzx9hw8Ta +06/01/2018,Musicians,@JamesArthur23,RT @okokTJ: @JamesArthur23 new album in the works? 😏 cause #YouDeserveBetter and #AtMyWeakest are complete bangers 😍 +06/01/2018,Musicians,@JamesArthur23,RT @iscoftramos: you killed it love @JamesArthur23 #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,RT @SassyTexan: This week really sucked. The release of the video for #YouCanCry and the songs #YouDeserveBetter and #AtMyWeakest were the… +06/01/2018,Musicians,@JamesArthur23,Yep hahahahaha https://t.co/MqbQugJwoD +06/01/2018,Musicians,@JamesArthur23,RT @nadhira86: @JamesArthur23 Jamie our son loves your song!!! #YouDeserveBetter I am so proud of you!! You are incredibly talented https:/… +06/01/2018,Musicians,@JamesArthur23,RT @MacarenaEC: Que no sé si me quedo con #YouDeserveBetter o #AtMyWeakest!! 😍 Las dos tan diferentes y tan geniales al mismo tiempo... Muy… +06/01/2018,Musicians,@JamesArthur23,RT @neonbelle: @JamesArthur23 After hearing #YouDeserveBetter #Atmyweakest can’t wait to hear the new album and see how your music has ev… +06/01/2018,Musicians,@JamesArthur23,"RT @Esbranza: @JamesArthur23 +In my eyes you’re a fabulous flawless man you can never do wrong, I love & adore you and i see your music as…" +06/01/2018,Musicians,@JamesArthur23,Aw thank you!! ❤️ https://t.co/pprnZgrjsj +06/01/2018,Musicians,@JamesArthur23,RT @LBannatyne: @JamesArthur23 only way i can describe it is beautiful!👌 #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,I’m here 😜 thanks for all your comments ❤️ https://t.co/cBAgB3FG50 +06/01/2018,Musicians,@JamesArthur23,☺️ thanks mate https://t.co/7daFOryk1k +06/01/2018,Musicians,@JamesArthur23,Thank you so much I’m very glad you like them x https://t.co/dktBB09FiC +06/01/2018,Musicians,@JamesArthur23,"RT @https_breeze: I loved the songs very much,your music is art and beautiful!!! #YouDeserveBetter #AtMyWeakest @JamesArthur23 ❤😍 @Jame…" +06/01/2018,Musicians,@JamesArthur23,RT @Niallirish_lad: My 2 favorites love them your music is amazing you diserve everything you got you are truly amazing @JamesArthur23 http… +06/01/2018,Musicians,@JamesArthur23,RT @DeanJohnWilson: Big Congratulations to the Talent and friend @JamesArthur23 on his two new releases which are nothing short of #RI-DOPE… +06/01/2018,Musicians,@JamesArthur23,RT @MrsRow: When you did all your best #YouDeserveBetter tweets this morning and @JamesArthur23 hasn't noticed them but you're too tired to… +06/01/2018,Musicians,@JamesArthur23,"RT @allana1309: @JamesArthur23 +Loved you from the get go... You just keep getting better and better ♥ +#YouDeserveBetter +#AtMyWeakest +Canno…" +06/01/2018,Musicians,@JamesArthur23,Haha 😂 you’re too kind x https://t.co/Ozvnpu2DzD +06/01/2018,Musicians,@JamesArthur23,Haaa yes please https://t.co/pkCCrJbZHU +06/01/2018,Musicians,@JamesArthur23,RT @tomnye9: @JamesArthur23 hope you get to number 1 man with #youdeservebetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,RT @MabroukaC: @JamesArthur23 I fell even more in love with you today ❤️❤️ the new tracks are 🔥🔥🔥 #youdeservebetter #atmyweakest +06/01/2018,Musicians,@JamesArthur23,RT @aanahernandes: Thank you for release the song on my birthday @JamesArthur23 ❤️ #YouDeserveBetter #Atmyweakest https://t.co/CdBRil6kiV +06/01/2018,Musicians,@JamesArthur23,"RT @JoLArroyo: @JamesArthur23 #YouDeserveBetter on repeat and a challenge to sing. Keep it up, can't wait to see you live. 👏🏻" +06/01/2018,Musicians,@JamesArthur23,RT @albaadp: I’m quite excited for @JamesArthur23 new musical era this year! Those new songs are so good 💗 #AtMyWeakest #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,"RT @btwtay: @JamesArthur23 I’ve only just been able to listen and all I can say is I’m in loveeee, release the album soon pls :)) x #AtMyWe…" +06/01/2018,Musicians,@JamesArthur23,RT @introsbutera: @JamesArthur23 i'm obsessed with your new songs....good job 👏🏻💥☄ #YouDeserveBetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,Thank you ❤️ https://t.co/ySObOcGnV3 +06/01/2018,Musicians,@JamesArthur23,RT @parkerhllnd: @JamesArthur23 i'm so proud of you and the masterpieces you always do like really thank YOU for blessing us with your musi… +06/01/2018,Musicians,@JamesArthur23,Now 🙋🏼‍♂️ https://t.co/yhKWqfqurJ +06/01/2018,Musicians,@JamesArthur23,Thank you love you to! X https://t.co/w6wjTB5rLE +06/01/2018,Musicians,@JamesArthur23,"RT @agicampos: @JamesArthur23 +Brazil loves its music. So happy with new songs! #YouDeserveBetter" +06/01/2018,Musicians,@JamesArthur23,Thank you ! https://t.co/xkIbXZ2BEo +06/01/2018,Musicians,@JamesArthur23,Thank you brother much love and respect to you x https://t.co/pivsGeVTkv +06/01/2018,Musicians,@JamesArthur23,😍 https://t.co/ZBWUBcVR68 +06/01/2018,Musicians,@JamesArthur23,RT @Andreathatgirl: @JamesArthur23 I am proud of you. I love your new songs so much. Come to Spain soon please! 🙏🏻🙏🏻#YouDeserveBetter #AtM… +06/01/2018,Musicians,@JamesArthur23,Thank you so much for listening and supporting me. Much love and respect x https://t.co/ULycvhbfnh +06/01/2018,Musicians,@JamesArthur23,Bless you x https://t.co/MqIDluML2D +06/01/2018,Musicians,@JamesArthur23,Thanks bro! https://t.co/rQ0ZrFCH7b +06/01/2018,Musicians,@JamesArthur23,"RT @_heyitsgem: @JamesArthur23 at it again boy, smashing it👊🏽😍 #YouDeserveBetter #AtMyWeakest" +06/01/2018,Musicians,@JamesArthur23,RT @megss_1412: Literally hooked on #youdeservebetter and #atmyweakest literally didn’t think this man could get any better 😍 you surprise… +06/01/2018,Musicians,@JamesArthur23,"RT @ChloeRGoodridge: Didn’t know I could love @JamesArthur23 anymore, but then he brought out #AtMyWeakest and #YouDeserveBetter 😍😍😍😍 xx" +06/01/2018,Musicians,@JamesArthur23,"RT @buzolerrie: you deserve better is such a bop, i love it so much i can’t get it out of my head. great job @JamesArthur23 🙌🏼😻 #YouDeserve…" +06/01/2018,Musicians,@JamesArthur23,"RT @Arta_Styles: @JamesArthur23 ok I have to confess this after all this time , I'm in love with you and your angelic voice, bye. #YouDese…" +06/01/2018,Musicians,@JamesArthur23,"RT @dudebaker123: #YouDeserveBetter is a BOP , I am so excited to hear your new album . You are so talented and you have an AMAZING voice .…" +06/01/2018,Musicians,@JamesArthur23,RT @BeckyJaaynee97x: @JamesArthur23 I’ve had you deserve better in my head all day! Absolutely LOVE IT BRING ON THE ALBUM😍😍😍 +06/01/2018,Musicians,@JamesArthur23,"RT @MARCH006: @JamesArthur23 +#YouDeserveBetter I can not wait for your new album ... your music blow my mind !!... Thanks for composing for…" +06/01/2018,Musicians,@JamesArthur23,RT @ssami_: . @JamesArthur23 just keeps on giving us amazing songs. This is such a catchy tune! 🎶 https://t.co/RnPcPmE2P5 +06/01/2018,Musicians,@JamesArthur23,RT @JArmySpain: You’re doing an amazing job @JamesArthur23. You always put all your soul in your songs and that’s what make them even more… +06/01/2018,Musicians,@JamesArthur23,RT @OutsidersMel: @JamesArthur23 I’m gonna be listening #YouDeserveBetter & #AtMyWeakest non stop. Amazing👏🏻♥️ +06/01/2018,Musicians,@JamesArthur23,RT @ElliexGuy: Sorry but every song @JamesArthur23 brings out is an absolute banger! #YouDeserveBetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,RT @dionsellars1: @JamesArthur23 I’ve converted my mates 😍 #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,You’re so kind! Album is coming this year I promise x https://t.co/ANlF172sDw +06/01/2018,Musicians,@JamesArthur23,😘 https://t.co/gCplLhLuWM +06/01/2018,Musicians,@JamesArthur23,RT @TheJarmyRules: This new @JamesArthur23 music gets me so excited for the new album🙌 #AtMyWeakest #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,RT @SarahhPerezz3: Literally everything to me😍 @JamesArthur23 https://t.co/88dMlwnf3D +06/01/2018,Musicians,@JamesArthur23,RT @sarcitrin: hi @JamesArthur23 i just wanna day i will have these two songs on repeat for the next year ok great that’s it — they’re amaz… +06/01/2018,Musicians,@JamesArthur23,RT @GottaBeNere: I adore @JamesArthur23’s tunes. They’re masterpieces. #AtMyWeakest. 😍 https://t.co/z9lLQIM7uC +06/01/2018,Musicians,@JamesArthur23,"RT @sara_ankersen: the king @JamesArthur23 is back with new music, and im in love !!#atmyweakest #youdeservebetter https://t.co/WgnT1sBijB" +06/01/2018,Musicians,@JamesArthur23,RT @ilwethh: @JamesArthur23 “you deserve bettet” totally became my summer song thx😍 +06/01/2018,Musicians,@JamesArthur23,Thank you 👊🏻 https://t.co/jx0y3C2QXi +06/01/2018,Musicians,@JamesArthur23,RT @jesshedrick: @JamesArthur23 Honestly can’t wait for this album of yours!! These SINGLES ARE AMAZING😍😍😍 #AtMyWeakest Hits you right in t… +06/01/2018,Musicians,@JamesArthur23,RT @harri_purd1e: @JamesArthur23 you deserve better is such a bop and I bloody love it!!!😆😆 +06/01/2018,Musicians,@JamesArthur23,RT @TheBestRombout: @JamesArthur23 so so proud of you. Absolutely love your new songs. Come to New Zealand please!!! #YouDeserveBetter #AtM… +06/01/2018,Musicians,@JamesArthur23,RT @mckenzi54389989: @JamesArthur23 #AtMyWeakest #YouDeserveBetter been on repeat all day! In love with them both 😍💓 +06/01/2018,Musicians,@JamesArthur23,RT @emmaPmcewanx: One of the best ❤️❤️ @JamesArthur23 https://t.co/QX1jYeKwmq +06/01/2018,Musicians,@JamesArthur23,Haha ❤️❤️ https://t.co/quDsBHwaiH +06/01/2018,Musicians,@JamesArthur23,"RT @cerys_harvey: I am officially in love....with @JamesArthur23 new songs #YouDeserveBetter and #AtMyWeakest +James, thank you so much for…" +06/01/2018,Musicians,@JamesArthur23,Thank you!! Xx https://t.co/ceAiy0CFMK +06/01/2018,Musicians,@JamesArthur23,RT @TameraKirkwood: I don't have a favorite song @JamesArthur23 You have made me fall in love with these two songs from the first tune! 😍🎤🎶… +06/01/2018,Musicians,@JamesArthur23,I am proud to give you both I suppose it depends on what mood your in :) that’s the beauty of 2 ends of the spectru… https://t.co/eLtMKYb762 +06/01/2018,Musicians,@JamesArthur23,"RT @kellyW2480: @JamesArthur23 #Youdeservebetter is such a banger , your music keeps evolving, love it 😍🙌🏻🙌🏻" +06/01/2018,Musicians,@JamesArthur23,❤️❤️❤️❤️❤️ https://t.co/KlTaWAEWxS +06/01/2018,Musicians,@JamesArthur23,"RT @A_n_g_e_l_i_e_: @JamesArthur23 ‘s RT spree are making me dizzy!! Love it! So happy and digging your new songs!! +#YouDeserveBetter…" +06/01/2018,Musicians,@JamesArthur23,RT @TheScript_Fan3: @JamesArthur23 I completely idolize you and and have quickly fallen in love with these two new amazing tunes!! 💙💙💙 #You… +06/01/2018,Musicians,@JamesArthur23,RT @sarcitrin: @JamesArthur23 really puttin me in my feels #atmyweakest #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,RT @narry_my_love: Catch me getting down to this song 24/7 @JamesArthur23 #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,Thank you that means a lot x https://t.co/z0rZ6LrGSa +06/01/2018,Musicians,@JamesArthur23,RT @geraldine96Lew: @JamesArthur23 just listened to your brand new song #YouDeserveBetter what an amazing song love it love it!!😍 +06/01/2018,Musicians,@JamesArthur23,Thank you sir https://t.co/TKZOYEwrJR +06/01/2018,Musicians,@JamesArthur23,RT @TheXFactor: It changed @JamesArthur23’s life and it could change yours too! #XFactor Open Auditons are happening this weekend! Sunday 3… +07/02/2018,Musicians,@ddlovato,Thank you Europe! Spending the last month of my life with you was truly special. I can’t wait to see you all again… https://t.co/YhqKJ5w7AU +07/01/2018,Musicians,@ddlovato,Who wants a signed guitar from my Core photoshoot!? 💙🎶 All you have to do is follow https://t.co/gzocGmvojg and he… https://t.co/9t76mb5rhg +06/29/2018,Musicians,@ddlovato,Sister I am slayed. 😍 https://t.co/BwVRX7P3VF +06/27/2018,Musicians,@ddlovato,"To my fans, my family, and my supporters, the ones who never left me, you are my light. I am forever grateful 🙏🏻 https://t.co/0BVzp5wP8p" +06/26/2018,Musicians,@ddlovato,#Sober 🖤https://t.co/RArIHOpNNq https://t.co/f0kaRDkn2t +06/26/2018,Musicians,@ddlovato,🔋💚💪🏼 @Fabletics Nori Outfit #Demi4Fabletics https://t.co/t8YYlLunqV https://t.co/DGDBxBiEm2 +06/26/2018,Musicians,@ddlovato,"I’m celebrating Pride by raising money for GLAAD, an organization that has been fighting for LGBTQ+ inclusion and j… https://t.co/foe05LMySl" +06/25/2018,Musicians,@ddlovato,"RT this to vote for me or tweet ""My #TeenChoice for #ChoiceSnapchatter is Demi Lovato @ddlovato” https://t.co/wm86nmfbjc" +06/25/2018,Musicians,@ddlovato,"RT this to vote for me or tweet ""My #TeenChoice for #ChoiceLatinSong is Échame La Culpa @LuisFonsi @ddlovato” https://t.co/G9pXnQNWA3" +06/25/2018,Musicians,@ddlovato,"I got three more Teen Choice Nominations! RT this to vote for me or tweet ""My #TeenChoice for… https://t.co/EHVb2hrC1z" +06/24/2018,Musicians,@ddlovato,"Tonight I took the stage, a new person with a new life. Thank you to everyone who has supported me throughout this… https://t.co/CaDgNiWe1O" +06/21/2018,Musicians,@ddlovato,"My truth... https://t.co/tmDhhBGLNQ +#sober out now https://t.co/Uwfg6PFPk9" +06/20/2018,Musicians,@ddlovato,My heart is broken with what’s going on in the US right now. +06/19/2018,Musicians,@ddlovato,Zaddy issues 💁🏻‍♀️ https://t.co/2Y9ya1eUp5 +06/19/2018,Musicians,@ddlovato,Did you hear the acoustic version of Solo with @cleanbandit? Love the vibe. https://t.co/3YaNtb3Uyn https://t.co/DGl78V3cmZ +06/18/2018,Musicians,@ddlovato,Solo with @cleanbandit is #1 on the UK mid-week chart! Let's make sure it stays there until Friday 🙏🏼… https://t.co/afkg8HNlR6 +06/16/2018,Musicians,@ddlovato,Manchester.. it was an honor to perform for you all. Thank you for being such an incredible audience.. you are so strong.. 🙏 +06/15/2018,Musicians,@ddlovato,Sorry Not Sorry was nominated for #ChoiceSongFemaleArtist! Let’s win this thing. RT to vote for me or tweet “My… https://t.co/i0S2Oy0ZHs +06/15/2018,Musicians,@ddlovato,"Thank you so much for the Teen Choice Nomination for #ChoiceFemaleArtist! 😍 RT this to vote for me or tweet ""My… https://t.co/VnX56snAUE" +06/15/2018,Musicians,@ddlovato,.@xtina this ALBUM!!! 😍 Guys it’s sooo good. Do yourself a favor and listen here: https://t.co/IPPSO1911X… https://t.co/Xv2QoyRRnb +06/15/2018,Musicians,@ddlovato,Feeling cute in my @Fabletics Stretto II 🌊☀️ https://t.co/LTXFrCiNHU https://t.co/Rpe69XOXVJ +06/14/2018,Musicians,@ddlovato,Who else can’t sleep? +06/14/2018,Musicians,@ddlovato,Is it bad that I can’t focus on it because of how hot the son Todd is? +06/14/2018,Musicians,@ddlovato,Watching the staircase on Netflix... it’s sooooo good. Anybody else watching it? +06/14/2018,Musicians,@ddlovato,RT @tatted_up_dolly: https://t.co/SyCb0T4ybA. Please help support a good cause! We are a local recovery center in… +06/14/2018,Musicians,@ddlovato,Life is a balancing act. Had so much fun working with @COREdrinks on this new campaign. Check it out. … https://t.co/1prF3NS5V7 +06/13/2018,Musicians,@ddlovato,Well guys I made it through the show!! I’ve never sang in falsetto so much in my life but I still had fun!! Thank you Glasgow!!! ❤️ +06/13/2018,Musicians,@ddlovato,I still have to protect my voice so y’all may have to hit the high notes for me tonight 😜😝 +06/13/2018,Musicians,@ddlovato,"I feel sooooo much better, thank you for all your well wishes!!!! You guys are the best!!!" +06/13/2018,Musicians,@ddlovato,At the venue... so ready to get back on stage!!! Who’s ready?!! +06/11/2018,Musicians,@ddlovato,Still less invasive than paparazzi +06/11/2018,Musicians,@ddlovato,I’m so bored I might start playing fortnite +06/11/2018,Musicians,@ddlovato,Most exciting part of my day? Getting a camera shoved up my nose and down my throat to look at my vocal chords 😑 +06/11/2018,Musicians,@ddlovato,"This seriously sucks.. haven’t left my hotel room in 2 days now. Sick, bored and bummed out." +06/11/2018,Musicians,@ddlovato,I’m literally gutted that I have to postpone this next show in Birmingham.. I’ve never had to miss shows due to my… https://t.co/P0PjfUsDW4 +06/10/2018,Musicians,@ddlovato,My fans are seriously the best... I can’t believe how much love and support I’ve received today.. the video of my f… https://t.co/fip5YJLb2l +06/10/2018,Musicians,@ddlovato,❤️ https://t.co/QpkPZtMXyP +06/10/2018,Musicians,@ddlovato,💔 https://t.co/Rs7ZWMCvcQ +06/09/2018,Musicians,@ddlovato,Loving the Canon II from @Fabletics. Pretty in pink 🌸 #Demi4Fabletics https://t.co/EcSO0BkW0i https://t.co/J7yWHmZBZU +06/09/2018,Musicians,@ddlovato,Help me get @kidkelly in the @RadioHOF by texting the number 200 to 96000 (and also voting at https://t.co/BMxzD3LNzJ) – he deserves it! +06/09/2018,Musicians,@ddlovato,RT @xtina: It sets a tone of returning to the youthful innocence and feeling of limitless possibility that 'Liberation' is all about. Shout… +06/08/2018,Musicians,@ddlovato,"I loved working on my room, Power Parlor, for #29Rooms and can't wait to share it with all of my Chicago friends.… https://t.co/wZNA1ltkgT" +06/08/2018,Musicians,@ddlovato,RIP Anthony Bourdain.. I always wanted to meet you and talk jiu jitsu with you. May you sleep with the angels now. 🙏🏼 +06/07/2018,Musicians,@ddlovato,Hey guys!!! #TheFour is BACK!!! Tune in tonight at 8/7c on FOX! https://t.co/NRWFCSvqyl +06/07/2018,Musicians,@ddlovato,So psyched about these new @Fabletics styles! What do you think of this one? #Demi4Fabletics https://t.co/uhCeVYTQmt +06/05/2018,Musicians,@ddlovato,So excited to announce that @iambeckyg is supporting the #TellMeYouLoveMeTour in Argentina and Brazil!❤️ 🇧🇷 https://t.co/TXPBowyJF3 +06/03/2018,Musicians,@ddlovato,That’s just the thing... people DON’T know my full story.. https://t.co/0x8uU7gdDv +06/03/2018,Musicians,@ddlovato,So sorry if anyone was offended 😔 +06/03/2018,Musicians,@ddlovato,"For all of those coming at me rn, listen to the lyrics of Warrior and maybe you’ll have more compassion for someone… https://t.co/Su4tu6KsDD" +06/03/2018,Musicians,@ddlovato,@iamwithjb Listen to warrior and the lyrics. Maybe you’ll have more compassion for a simple mistake. +06/03/2018,Musicians,@ddlovato,I swear I could tweet something about craving jelly beans and it would offend someone. +06/03/2018,Musicians,@ddlovato,I can remember what I was wearing on this day 5 years ago but I can’t remember if I’ve ever milked a cow.. +06/03/2018,Musicians,@ddlovato,Okay guys I gotta go!! I love you all! +06/03/2018,Musicians,@ddlovato,Stop tweeting https://t.co/RZFUOiCJJ2 +06/03/2018,Musicians,@ddlovato,The fact that people in other countries know the words to my songs 😭 https://t.co/OepWlfSP0s +06/03/2018,Musicians,@ddlovato,The one coming out soon https://t.co/xkMphF44JY +06/03/2018,Musicians,@ddlovato,I DREAMT ABOUT THAT LAST NIGHT https://t.co/9YHxXejXOf +06/03/2018,Musicians,@ddlovato,I love this https://t.co/e3parnwxsW +06/03/2018,Musicians,@ddlovato,Nah https://t.co/F6ZVHt48MU +06/03/2018,Musicians,@ddlovato,I did! https://t.co/3XL1vh1Whb +06/03/2018,Musicians,@ddlovato,Lions... duh 😝 https://t.co/lr9j8dLBYl +06/03/2018,Musicians,@ddlovato,Yes!! I love horses https://t.co/YwsW3C9jn4 +06/03/2018,Musicians,@ddlovato,Poot is locked up. She’s allergic to sunlight. https://t.co/NCOUU2btBI +06/03/2018,Musicians,@ddlovato,I legit can’t remember if I have..... is that weird? https://t.co/Has9kTRnVJ +06/03/2018,Musicians,@ddlovato,Pink 💗 https://t.co/HqvggzqJVH +06/03/2018,Musicians,@ddlovato,Night in https://t.co/7LiS8tUiJT +06/03/2018,Musicians,@ddlovato,I haaaaaaate scuba diving https://t.co/PvqTCknndg +06/03/2018,Musicians,@ddlovato,Batman. He’s my first born so naturally he’s my favorite. #savage https://t.co/Bnv0YAvK0O +06/03/2018,Musicians,@ddlovato,"I can’t... they’re amazing, non-judgemental, funny, loyal... etc. https://t.co/x2ckiH4p5K" +06/03/2018,Musicians,@ddlovato,I think so 😊 https://t.co/N8EE7pxIy4 +06/03/2018,Musicians,@ddlovato,THANK YOU https://t.co/BBiD1Dcj6B +06/03/2018,Musicians,@ddlovato,I don’t think so https://t.co/9XRWXAJ8Sa +06/03/2018,Musicians,@ddlovato,Of course boo https://t.co/ig436uB6LW +06/03/2018,Musicians,@ddlovato,Bora bora 😍 https://t.co/T63fvmFb8n +06/03/2018,Musicians,@ddlovato,Yes!! I want to go in Dubai!! https://t.co/wr766mZhxc +06/03/2018,Musicians,@ddlovato,Their loyalty 😍 https://t.co/oHnSagHIL8 +06/03/2018,Musicians,@ddlovato,That I leak my own pictures/captions from my private account 🙄 https://t.co/KDb82J2VU6 +06/03/2018,Musicians,@ddlovato,😏 https://t.co/DCiVBJSCMb +06/03/2018,Musicians,@ddlovato,The fans and the architecture https://t.co/j6GfC8IFqM +06/03/2018,Musicians,@ddlovato,😳 https://t.co/NJzxDwGpp6 +06/03/2018,Musicians,@ddlovato,Savage https://t.co/ev6ujGzso6 +06/03/2018,Musicians,@ddlovato,Cereal first https://t.co/G6My87x8BE +06/03/2018,Musicians,@ddlovato,Yes!!! I love Amsterdam!! https://t.co/c6XakrJEQc +06/03/2018,Musicians,@ddlovato,C*** https://t.co/HawkMES9IR +06/03/2018,Musicians,@ddlovato,Not in the iPhone 😩😩😩 https://t.co/C31FsVNcBc +06/03/2018,Musicians,@ddlovato,Yes!!! I know what I’m getting too 😁 https://t.co/R8zAAzBCMv +06/03/2018,Musicians,@ddlovato,"Raw, emotional, heavy https://t.co/aOM5fWMK52" +06/03/2018,Musicians,@ddlovato,The one where he texts me back https://t.co/q2xLl5z4sH +06/03/2018,Musicians,@ddlovato,Is this a trick question? https://t.co/a843NzpOEa +06/03/2018,Musicians,@ddlovato,I love girls period https://t.co/V65tB7EUXr +06/03/2018,Musicians,@ddlovato,I’m always sane at work... except when I have to do video liners. (Those videos where I have to memorize shit and s… https://t.co/RmnpoHZFdW +06/03/2018,Musicians,@ddlovato,Teenage dream.... good memories to that one https://t.co/yJg5rIjQF0 +06/03/2018,Musicians,@ddlovato,YES https://t.co/wrw2UiveI7 +06/03/2018,Musicians,@ddlovato,JPG (@jillpowellglam) https://t.co/Bko86OAmwD +06/03/2018,Musicians,@ddlovato,Being myself 😁🌈 https://t.co/MAMD1pVWFt +06/03/2018,Musicians,@ddlovato,I wish 🙁 https://t.co/YwZco97HBe +06/03/2018,Musicians,@ddlovato,Yessssss 😍 https://t.co/v6YAYwALVe +06/03/2018,Musicians,@ddlovato,I wish 😩😩😩 https://t.co/hLlPdZx8pU +06/03/2018,Musicians,@ddlovato,Thank you!! I just need a beat and I’ll write to t. When I write by myself it always ends up country now 😂 https://t.co/aDuqfQqqhE +06/03/2018,Musicians,@ddlovato,You can’t always trust people who you once thought saved you https://t.co/RP35m52hOT +06/03/2018,Musicians,@ddlovato,Coffee & workout! https://t.co/cKrZRunQZH +06/03/2018,Musicians,@ddlovato,I want Brazilian girls 😍 https://t.co/H1iFSODcXY +06/03/2018,Musicians,@ddlovato,I hate Swedish meatballs yesterday! https://t.co/DMEMGnVwoo +06/03/2018,Musicians,@ddlovato,AMA’s last year https://t.co/CFPhy8Mct4 +06/03/2018,Musicians,@ddlovato,Red 😂 https://t.co/YkDd840ZsZ +06/03/2018,Musicians,@ddlovato,Sparking water with lemon or pineapple juice https://t.co/0nwJbqHBkQ +06/03/2018,Musicians,@ddlovato,Margot Robbie and Dua Lipa https://t.co/k3NRtl3LDm +06/03/2018,Musicians,@ddlovato,Not next week but maaaayyyyybbbbeeeeee the week after............. https://t.co/QdDuFO4VmY +06/03/2018,Musicians,@ddlovato,Getting better but still not great ☹️ https://t.co/tKXleZklK7 +06/03/2018,Musicians,@ddlovato,Gummy bears https://t.co/bfDS87OSPK +06/03/2018,Musicians,@ddlovato,I’m not in Paris yet! https://t.co/H319T6LKG1 +06/03/2018,Musicians,@ddlovato,Ask me questions!!! Let’s do a q&a!!! +06/03/2018,Musicians,@ddlovato,Help me I’m bored +06/03/2018,Musicians,@ddlovato,@LarryCsgo @hellgrnemelie So cute!!! +06/03/2018,Musicians,@ddlovato,"RT @LarryCsgo: Celebrated 1 year wedding anniversary with @hellgrnemelie together with Queen @ddlovato + +Even our August baby (same as @ddlo…" +06/03/2018,Musicians,@ddlovato,Never trust a website that claims they’re posting from my private account with captions and everything. It’s called photoshop. +06/02/2018,Musicians,@ddlovato,Ps. I’ve known @druidDUDE for almost 20 YEARS NOW.... WTFFFFFF +06/02/2018,Musicians,@ddlovato,"Stockholm.. you were gorgeous, incredible and amazing. I love you 💗" +06/01/2018,Musicians,@ddlovato,I feel like I’ve grown more in the past two months than I have in years. I feel like a new woman and I’m so grateful for my life today. +06/01/2018,Musicians,@ddlovato,OSLO!!! You were incredible.. what a night!! +06/01/2018,Musicians,@ddlovato,I wanna wear heels already 😩😩😩 +06/01/2018,Musicians,@ddlovato,NEWMARKET! I can't wait to headline Summer Saturday Live for a special outdoor show on 9th June! 💕Tickets on sale n… https://t.co/elkbDD3tGN +05/31/2018,Musicians,@ddlovato,The video is out for SOLO with @cleanbandit!! Hope you guys love it. https://t.co/FjZvgbnIWU https://t.co/HVscb35Lsc +05/31/2018,Musicians,@ddlovato,💚 #Demi4Fabletics https://t.co/mdv9313pSX https://t.co/sMMERAlYDe +05/31/2018,Musicians,@ddlovato,RT @cleanbandit: THE SOLO VIDEO IS OUT NOW @ddlovato ➡ https://t.co/Yt0KTk5hsY +05/30/2018,Musicians,@ddlovato,RT @cleanbandit: TOMORROW 10am BST https://t.co/eR4I7veMjt +05/30/2018,Musicians,@ddlovato,Hahahahaha https://t.co/Z5sh2tz6ur +05/30/2018,Musicians,@ddlovato,Can you handle the truth? #newmusiccomingsoon +05/30/2018,Musicians,@ddlovato,Sometimes you have to end an era to begin talking about a new chapter of your life. #D7 +05/29/2018,Musicians,@ddlovato,Some of you may not like or understand my truth but it’s me.. take it or leave it.. +05/29/2018,Musicians,@ddlovato,I’ll share my truth soon +05/29/2018,Musicians,@ddlovato,"There’s nothing like the truth. The honest to God, uncomfortable and shocking truth. Sometimes you have to share yo… https://t.co/5eMNMbiJ0N" +05/29/2018,Musicians,@ddlovato,I’m just gonna let my lyrics say it all... new music coming very soon +05/29/2018,Musicians,@ddlovato,You’re so vain you probably think this tweet is about you 😂😂😂 +05/29/2018,Musicians,@ddlovato,😝😊🤗 https://t.co/xzZVf4FOLS +05/29/2018,Musicians,@ddlovato,What do you guys think of this @Fabletics Flare outfit? #Demi4Fabletics https://t.co/t8YYlLunqV https://t.co/YYLxCDRYCe +05/29/2018,Musicians,@ddlovato,Yes please!!! https://t.co/5CK5bTIAFA +05/29/2018,Musicians,@ddlovato,Today marks two years without my Mimaw... I’m still heartbroken because she was my world but she’s in a better plac… https://t.co/gJdnlmT3Yw +05/29/2018,Musicians,@ddlovato,Okay guys! Thanks for keeping me company.. gotta go! Love you all +05/29/2018,Musicians,@ddlovato,"True friends don’t ask anything of you.. they don’t take, they give... nothing but love, acceptance and loyalty" +05/29/2018,Musicians,@ddlovato,Matthew Scott and Sirah https://t.co/XLfRBG1JrP +05/29/2018,Musicians,@ddlovato,Beach always https://t.co/LPTO8moP8R +05/29/2018,Musicians,@ddlovato,Lion https://t.co/2WUCIiXuNr +05/29/2018,Musicians,@ddlovato,HA https://t.co/AGJjfAnWwZ +05/29/2018,Musicians,@ddlovato,iPhone https://t.co/Q9EJdBeX7f +05/29/2018,Musicians,@ddlovato,Yes 😑 https://t.co/JxVSNCbVOO +05/29/2018,Musicians,@ddlovato,Too embarrassing to say https://t.co/7Hb8BRC9ar +05/29/2018,Musicians,@ddlovato,Waffles https://t.co/fNB5nqvwRF +05/29/2018,Musicians,@ddlovato,Production issues https://t.co/0swBn7qSmA +05/29/2018,Musicians,@ddlovato,Be careful https://t.co/qkTJLloN2y +05/29/2018,Musicians,@ddlovato,It was to a really cute boy 😝😍 https://t.co/0KviivSFGG +05/29/2018,Musicians,@ddlovato,Nope https://t.co/wYlJGkAsv2 +05/29/2018,Musicians,@ddlovato,My babies Batman and Cinderella https://t.co/1ReIX6oR2Z +05/29/2018,Musicians,@ddlovato,Skittles https://t.co/82bgpLEe8E +05/29/2018,Musicians,@ddlovato,Pizza https://t.co/xGP4oOXMS5 +05/29/2018,Musicians,@ddlovato,🤢🤮 https://t.co/bXxwjkTdWU +05/29/2018,Musicians,@ddlovato,NARS https://t.co/DbSUgaq03V +05/29/2018,Musicians,@ddlovato,Very VERY soon.... could be a matter of weeks actually https://t.co/vOciaHp5mD +05/29/2018,Musicians,@ddlovato,Barbecues with family and friends https://t.co/AdkGYFbnK3 +05/29/2018,Musicians,@ddlovato,Concealer!! https://t.co/4yKVpx8D7J +05/29/2018,Musicians,@ddlovato,Everything and more https://t.co/0DQFNPuCAZ +05/29/2018,Musicians,@ddlovato,You have to be able to make me laugh... https://t.co/1xJgy4F8Qn +05/29/2018,Musicians,@ddlovato,"Right now, yes https://t.co/mYsVBGjrjL" +05/29/2018,Musicians,@ddlovato,😩😩😩 https://t.co/FjfnARF7WC +05/29/2018,Musicians,@ddlovato,Speechless by Dan + Shay https://t.co/LNdXdrf1Jc +05/29/2018,Musicians,@ddlovato,LAUREL https://t.co/23AwoXMCWA +05/29/2018,Musicians,@ddlovato,Dogs are better https://t.co/DTwmKlhxda +05/29/2018,Musicians,@ddlovato,Miss Dior https://t.co/ReUhY0QnP5 +05/29/2018,Musicians,@ddlovato,Nope https://t.co/vkWPtjBzhi +05/29/2018,Musicians,@ddlovato,I’m the happiest I’ve ever been in my life... #free https://t.co/CIFwodGTTI +05/29/2018,Musicians,@ddlovato,😉 https://t.co/CfWsxiIxvq +05/29/2018,Musicians,@ddlovato,Nearly peed my pants https://t.co/cZf9VFT6aV +05/29/2018,Musicians,@ddlovato,Yes!! I plan on getting back into acting this next year https://t.co/kx6hzPo04c +05/29/2018,Musicians,@ddlovato,Someday I hope!! I love her 💖☁️ https://t.co/4IQ2R3o4AQ +05/29/2018,Musicians,@ddlovato,I can skateboard but I don’t because I’m clumsy as fuck https://t.co/0642id1cf1 +05/29/2018,Musicians,@ddlovato,Pretty much... I have so much new music to release very VERY soon!!! https://t.co/EaAaiJ4mjD +05/29/2018,Musicians,@ddlovato,@ConfidentGirl65 Single! +05/29/2018,Musicians,@ddlovato,A brand new song called........ https://t.co/jbgx6dU1MI +05/29/2018,Musicians,@ddlovato,Batman is with my mom!! I miss him soooooo much. And cinderella https://t.co/obmHiARtyX +05/29/2018,Musicians,@ddlovato,It’s on the mend. I wanted to try it out to see how it felt without the boot. We’ll see https://t.co/X4zZfFBBn6 +05/29/2018,Musicians,@ddlovato,I’m loving Fall In Line.. I just wish Christina was with me to perform it every night! https://t.co/oKKS3IvvZu +05/29/2018,Musicians,@ddlovato,Ask me questions! I’m bored. Hahaha +05/29/2018,Musicians,@ddlovato,Wide awake on the bus this morning.. what are y’all up to? +05/28/2018,Musicians,@ddlovato,You should see the other guy.... 😜 jk.. thanks for understanding Antwerp!!!! Incredible audience tonight!! I love you!! 😎😎😎 +05/28/2018,Musicians,@ddlovato,"To every brave soldier and individual who gave their lives and service to ensure our freedom, thank you and Happy M… https://t.co/pGz8hSUQq1" +05/28/2018,Musicians,@ddlovato,@DDNCLA I love you all!! +05/28/2018,Musicians,@ddlovato,RT @DDNCLA: @ddlovato We’re waiting for you babe #tellmeyoulovemetourantwerp https://t.co/9Su1OJGoAt +05/28/2018,Musicians,@ddlovato,I don’t think I’ve ever felt happier or more free... +05/26/2018,Musicians,@ddlovato,I love you Dublin +05/25/2018,Musicians,@ddlovato,BTS from my shoot with @COREdrinks. 💦 More coming soon! https://t.co/eEZDc1Xsnp +05/25/2018,Musicians,@ddlovato,Love wearing activewear as regular clothes. Lazy yet fierce. Featuring @Fabletics Stretto II #Demi4Fabletics… https://t.co/QDbtLZPC5l +05/25/2018,Musicians,@ddlovato,Btw wouldn’t y’all rather have NEW songs from a NEW album and choose a NEW single from that?! +05/25/2018,Musicians,@ddlovato,And no that’s not the next single... just my life right now +05/25/2018,Musicians,@ddlovato,I fucking love Belfast... thank you guys for an awesome first show!!! +05/25/2018,Musicians,@ddlovato,You don’t do it for me anymore +05/24/2018,Musicians,@ddlovato,Surprise! Spotify and I teamed up to create this exclusive crop-hoodie for my fans on @Spotify. Check your email to… https://t.co/0xyuio8H8d +05/24/2018,Musicians,@ddlovato,Tickets are now on sale for my ONLY East Coast show of the summer - July 26th on the beach in Atlantic City with sp… https://t.co/7NgJXCkxOd +05/24/2018,Musicians,@ddlovato,RT @xtina: Fall In Line is as much about supporting each other as it is about self-empowerment. I wanted to convey that in this video by vi… +05/24/2018,Musicians,@ddlovato,@LaurenJauregui @xtina Love you tons girl.. so happy you understood the message 💗💗💗 +05/24/2018,Musicians,@ddlovato,RT @LaurenJauregui: So powerful. @xtina @ddlovato you two have been such huge inspirations for me since I️ was a child. Christina was my fi… +07/02/2018,Musicians,@ollyofficial,Simple but utterly brilliant You have to watch it twice to get it 👌🏻🔥 Happy 30th @loztwiddle my brother my boy my a… https://t.co/eW59W7H22A +07/01/2018,Musicians,@ollyofficial,"I’ve got a new job.... @ Ibiza, Spain https://t.co/brn8CELjMF" +06/30/2018,Musicians,@ollyofficial,Fly-Dab-boarding head first 😝 https://t.co/4qLv6TEIZq +06/30/2018,Musicians,@ollyofficial,Life’s for living 🙌🏻 https://t.co/3k0QnpXeUd +06/27/2018,Musicians,@ollyofficial,Get involved 😝😝😝 hope to see you men and ladies later this year 🤞🏻😝 https://t.co/e98koVAuyD +06/27/2018,Musicians,@ollyofficial,@c_haynesbrown1 @joshuapolard755 Got beaten by me in everything ✅ +06/27/2018,Musicians,@ollyofficial,Size of my forehead 🙄😂could cook ya dinner on it https://t.co/T2O7h0aozg +06/27/2018,Musicians,@ollyofficial,@MarkWright_ Need my hairdryer back! Hairs in bits! 😝😂 +06/27/2018,Musicians,@ollyofficial,😂😂😂 most likely https://t.co/UyTqlhqvr2 +06/27/2018,Musicians,@ollyofficial,Did I just hear I’m nominated for two awards 🤔what are we saying 😝👌🏻🤷🏻‍♂️ +06/27/2018,Musicians,@ollyofficial,Can’t be arsed it’s Wednesday face 😝 https://t.co/ht54GiemOp +06/26/2018,Musicians,@ollyofficial,😂😂 you don’t scare me 😂 https://t.co/b4AmsZRmjs +06/26/2018,Musicians,@ollyofficial,@milliemarrison1 @MelanieCmusic @GeriHalliwell @victoriabeckham @EmmaBunton But Mills you’ve got about 1000 pictures with me 😝 +06/26/2018,Musicians,@ollyofficial,@lauragwales @MelanieCmusic @GeriHalliwell @victoriabeckham @EmmaBunton I’ve met her but never got a picture I don’t think 🤔 +06/26/2018,Musicians,@ollyofficial,Nearly..... 1 more to go!! 😝😉 https://t.co/82AQAKJhRM +06/26/2018,Musicians,@ollyofficial,4th spice girl added to my collection... GINGER SPICE! one more to go! #ifyouknowyouknow 🔥❤️😘 https://t.co/wcIkRQKBrV +06/25/2018,Musicians,@ollyofficial,But on a serious note! To get 9 awesome years in this mad world called Showbiz is not something I take for granted! Love ya long time ❤️😘 +06/25/2018,Musicians,@ollyofficial,@maybeitsmurs 😂😂 +06/25/2018,Musicians,@ollyofficial,#9YearsOfMe ain’t you lot lucky 😉😝🤷🏻‍♂️ +06/25/2018,Musicians,@ollyofficial,Me: Jamie I have an idea 🤔 50 shades of Murs? 😝🤷🏻‍♂️🤪 https://t.co/e38UwOp8lO +06/24/2018,Musicians,@ollyofficial,"@EssexPR Fantastic day mate! Roast dinner on point, football on point, drinks on point! Was great to see ya 👍🏻 I’ll… https://t.co/Qrm3h6grUO" +06/24/2018,Musicians,@ollyofficial,This shirt is never coming off now specially after winning 6-1 😱🔥 https://t.co/lH3aVmZXcR +06/24/2018,Musicians,@ollyofficial,Come on England 🏴󠁧󠁢󠁥󠁮󠁧󠁿 we go again #ENG #ThreeLions #WorldCup https://t.co/ogTQC8xwnv +06/24/2018,Musicians,@ollyofficial,@ToniKroos Unreal! Superb Toni 🔥 +06/24/2018,Musicians,@ollyofficial,Fantastic night at the Horan&Rose 2018 event! Huge amounts raised that will benefit and help so many children / fam… https://t.co/SlWEFtTrT1 +06/23/2018,Musicians,@ollyofficial,"I’m not weird, I’m limited edition 👍🏻" +06/23/2018,Musicians,@ollyofficial,@aliceeeeee_xo I’m not weird I’m limited edition 😝 +06/23/2018,Musicians,@ollyofficial,Missing this 😵 https://t.co/yrDPUf3XW5 +06/22/2018,Musicians,@ollyofficial,https://t.co/A4Egx87PlY +06/22/2018,Musicians,@ollyofficial,Nice day for a dip 😎☀️💦 https://t.co/cAToFrGhJN +06/22/2018,Musicians,@ollyofficial,It’s Friday people... Last day in the office 😝😜🤪 https://t.co/pkMDjP6CIY +06/22/2018,Musicians,@ollyofficial,@JKCorden Phenomenal!! 🔥 wow at the end “hey Jude” 😭❤️ +06/21/2018,Musicians,@ollyofficial,Got a tenner on this lad getting Golden Boot at the #Worldcup Come on @HKane can’t wait for the game Sunday #tbt… https://t.co/IuCnNGJwRp +06/21/2018,Musicians,@ollyofficial,Check out my little announcement with a special guest... ⁉️ 🏃🏻‍♂️🏃‍♀️@Great_Run @Mo_Farah @fayzeewoo_loves… https://t.co/CRkAGtULBq +06/21/2018,Musicians,@ollyofficial,All about the beauty spots @NiallOfficial 😝😂 wicked seeing ya! https://t.co/GoCEs4Q3Zb +06/21/2018,Musicians,@ollyofficial,Check out these crackers 😝😂🙈 #niallhoran https://t.co/fiXjHpZ8k3 +06/20/2018,Musicians,@ollyofficial,@officialdonel @LaurenBannon1 Love you both! 👍🏻🔥😘 +06/19/2018,Musicians,@ollyofficial,Every Red light 🔴 gotta say an England player!… https://t.co/Vq4Z7NSYNQ +06/19/2018,Musicians,@ollyofficial,@PeteBlay @Mo_Farah @lewis_damian @usainbolt Love Harry! Top guy and absolutely buzzing he rates me as a player 👍🏻 +06/18/2018,Musicians,@ollyofficial,@EssexPR @England @HKane @TheThreeColts Next one I’m there son 👍🏻🏴󠁧󠁢󠁥󠁮󠁧󠁿💯 +06/18/2018,Musicians,@ollyofficial,Unreal scenes tonight! Loved it @England Some great positives to take from the game! Captain @HKane you legend! Wel… https://t.co/GQvZsocz5f +06/18/2018,Musicians,@ollyofficial,I’m hoping this is the ENGLAND team talk tonight!! Get @JKCorden in there!! This gets me pumped every time... geniu… https://t.co/E37cJrR7WA +06/18/2018,Musicians,@ollyofficial,Come on ENGLAND 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🦁🦁🦁 #worldcup https://t.co/glcVf5M2Fc +06/17/2018,Musicians,@ollyofficial,Love ya dad 😘❤️ https://t.co/NwMMsXbrvN +06/17/2018,Musicians,@ollyofficial,Happy #FathersDay to all the awesome dads out there today but also to those who aren’t here with us 💯❤️🙏🏻 +06/15/2018,Musicians,@ollyofficial,Finally the #WorldCup2018 is here What a game! @Cristiano this guy 🔥🔥 +06/15/2018,Musicians,@ollyofficial,Next album cover Rob? 😝🤷🏻‍♂️ https://t.co/SOpFXOjcny +06/15/2018,Musicians,@ollyofficial,Loved it thanks for having me! 😘👍🏻 https://t.co/bAqXjoWujv +06/14/2018,Musicians,@ollyofficial,How many songs could we put over @davidguetta ft @justinbieber 2U 🤔 loved this @ConorMaynard #TBT https://t.co/Y5bCwmvzoS +06/13/2018,Musicians,@ollyofficial,"After an emotional, exhausting, unbelievable weekend... THIS is the reason we do @socceraid and we can’t thank you… https://t.co/YafV5d0frD" +06/13/2018,Musicians,@ollyofficial,❤️ this photo #ProudUncle 😭 https://t.co/plpnmbEIDb +06/13/2018,Musicians,@ollyofficial,😂😂😂 love this Starky! Can I give you my USA 94 panini sticker album please?! any chance you can finish that NOW tha… https://t.co/LQhfwzCXBY +06/12/2018,Musicians,@ollyofficial,"This picture says it all... + +Highest attendance ever ✅ + +Over £5.5 million raised ✅ + +England Win ✅ + +This is… https://t.co/i9w4q7i5Ae" +06/12/2018,Musicians,@ollyofficial,"RT @SportsBreakfast: ""I've been playing with Ozil for many years"" 😂😂 + +@ollyofficial talks us through THAT #SoccerAid assist for @DarrenBent…" +06/12/2018,Musicians,@ollyofficial,@ChristinaHibbs Eh what you chatting about +06/12/2018,Musicians,@ollyofficial,"Missing the lads already, not sure they’re missing me 😂😝 @PaddyMcGuinness @socceraid https://t.co/5wj9va5skH" +06/11/2018,Musicians,@ollyofficial,@Rudimental @socceraid Yes lads! For sure 😂😂 thanks for the message! 👌🏻 +06/11/2018,Musicians,@ollyofficial,Just a casual shoot dance after we scored last… https://t.co/5FWqEwdC1O +06/11/2018,Musicians,@ollyofficial,When ya nephew dabs on TV 😂😝 #legend… https://t.co/X7YVgyj2wX +06/10/2018,Musicians,@ollyofficial,"Love this photo! What a night! +Thank you to everyone who donated and supported @socceraid this year! We’ve raised… https://t.co/sW0UfxSHaF" +06/10/2018,Musicians,@ollyofficial,😂😂😂 https://t.co/nIENOmBdOK +06/10/2018,Musicians,@ollyofficial,@AndersonNatalie Indeed it does 🙌🏻👍🏻❤️ +06/10/2018,Musicians,@ollyofficial,"It’s big, it’s round, it’s shiny and I’ve Finally got my hands on it #winners #captain 😝🍾🏆⚽️ https://t.co/V8yK4OmPF6" +06/10/2018,Musicians,@ollyofficial,COME ON ENGLAND!! 👍🏻🔥😝#TeamRobbie https://t.co/4lexUkrk4N +06/10/2018,Musicians,@ollyofficial,THE KING IS HERE “Oh Ah CANTONA” 👌🏻🔥 https://t.co/Go7NOtFmz5 +06/09/2018,Musicians,@ollyofficial,Riding solo 🎩🍾🇬🇷😉 https://t.co/zV4DRYz77s +06/09/2018,Musicians,@ollyofficial,"One’s the fastest person in the world +One runs the country and another has almost completed tinder! +I’ll let you d… https://t.co/lU2p4VxsHQ" +06/08/2018,Musicians,@ollyofficial,Yesssssss @robbiewilliams loved it! Let’s get on stage together soon mate 😉😝👍🏻 https://t.co/nF8ZdYVLRD +06/08/2018,Musicians,@ollyofficial,Look at these right couple of mugs 😂😝 @loosewomen vs #loosemen @itv @socceraid special today at 12.30pm!! Don’t mis… https://t.co/nHABrJvtS0 +06/07/2018,Musicians,@ollyofficial,Heads up @TheF2 😂😂 https://t.co/5oMhkCo3xX +06/07/2018,Musicians,@ollyofficial,Pads only got Sir @Mo_Farah 😂😂😂 https://t.co/c2gDcASgBm +06/07/2018,Musicians,@ollyofficial,My favourite part of the week @MarkWright_ ‘s NOT so favourite 😂😂 https://t.co/1ZmWhbJADg +06/07/2018,Musicians,@ollyofficial,All the gear no idea 😝 @socceraid @UNICEF_uk 👍🏻🔥 https://t.co/jNgwOaPTZ0 +06/07/2018,Musicians,@ollyofficial,RT @GranadaReports: @socceraid stars met the PM ahead of their game at Old Trafford this weekend. @ollyofficial was well impressed with th… +06/06/2018,Musicians,@ollyofficial,Honoured to be at No.10 Celebrating the partnership between @socceraid for @UNICEF_uk and the governments aid match… https://t.co/mOCl1qKh9R +06/06/2018,Musicians,@ollyofficial,"RT @DailyMirror: Olly Murs visited African tip and met kids who are his Soccer Aid inspiration +https://t.co/ME1EdsUaPg https://t.co/GfXS0p1…" +06/06/2018,Musicians,@ollyofficial,That moment when ya beating @usainbolt at… https://t.co/RarBHenl5D +06/06/2018,Musicians,@ollyofficial,"Unbelievable afternoon at 10 Downing Street for @socceraid +@UNICEF 👍🏻⚽️ https://t.co/NtmEbUox3q" +06/06/2018,Musicians,@ollyofficial,New boyband alert 👍🏻😝🔥 https://t.co/m9e8gCVNma +06/06/2018,Musicians,@ollyofficial,So the week begins @socceraid 👍🏻🔥 https://t.co/5ClwzChclu +06/05/2018,Musicians,@ollyofficial,RT @JustinRose99: Last chance #Team🌹for earlybird tickets! Offer ends on Sunday 10th June with up to 30% savings. @british_masters @waltonh… +06/04/2018,Musicians,@ollyofficial,Tribute to my showbiz dad on his birthday… https://t.co/w8TrMluNVk +06/04/2018,Musicians,@ollyofficial,Oooooooooo it’s nearly here!! 6 days till @socceraid @UNICEF whose coming?!?! 😉👍🏻 https://t.co/ZD4cf8whU8 +06/04/2018,Musicians,@ollyofficial,RT @loosewomen: SCORE! Don't miss the Loose Women & Men @socceraid special this Friday with @robbiewilliams @ollyofficial @BrendanCole & @P… +06/02/2018,Musicians,@ollyofficial,@KamilleXX I was with you aswell and I must say I hope we can sort out our differences and can you love me again please Kamille 😝😉 +06/01/2018,Musicians,@ollyofficial,😂😂 @louis_tomlinson It works every time 😂😂… https://t.co/fzfMwyOXHn +05/30/2018,Musicians,@ollyofficial,This guy! The winner of #BGT this year for me! Just watched it back about 4times! Absolutely brilliant! 👏🏻 https://t.co/cnEOtWNqCr +05/30/2018,Musicians,@ollyofficial,@aboutIeigh Excuse me I’m doing alrite thanks 😂 Im with RCA 😝👍🏻 but appreciate the concern +05/29/2018,Musicians,@ollyofficial,I will never break up with gym we just seem to “workout” 😉😝 https://t.co/vGQHGMqTSC +05/28/2018,Musicians,@ollyofficial,@OllyMursMemes 😂😂😂 +05/27/2018,Musicians,@ollyofficial,@EchoArena Loved it! Top night +05/27/2018,Musicians,@ollyofficial,Wow met the main man @danawhite everything I expected & more! What a guy!! Top night & congrats to @darrentill2… https://t.co/iC2S2sShYv +05/27/2018,Musicians,@ollyofficial,IBIZA is calling me!! I’ll be over soon... ☀️🍹🏖😎 https://t.co/Dw1Otssvcb +05/24/2018,Musicians,@ollyofficial,"I’m not going to say good luck Saturday for obvs reasons 😂🙈🙄but I must say top guy, great banter and loved chatting… https://t.co/w5SIhzsl0P" +05/23/2018,Musicians,@ollyofficial,"So 😂🙈 Here’s my attempt at @DFID_UK ‘s keepy-uppy challenge! Challenge yourself, raise money for @SoccerAid for… https://t.co/sd4jBUrn4x" +05/22/2018,Musicians,@ollyofficial,https://t.co/1RTOxoV5jE +05/22/2018,Musicians,@ollyofficial,Loved surprising the amazing @RaysofSunshine Children’s Choir today! (Good job they knew the lyrics 😂) They were th… https://t.co/mgbJCzeyyN +05/22/2018,Musicians,@ollyofficial,Never forgotten and always in our hearts! What happened that day 1 year ago will live with us forever! No one shoul… https://t.co/RSwIcXkqiR +05/22/2018,Musicians,@ollyofficial,RT @ManUtd: Always Remember. Never Forget. Forever Manchester. #ManchesterTogether https://t.co/TFOVM0Cx1S +05/22/2018,Musicians,@ollyofficial,RT @GranadaReports: Here's how #Manchester will mark one year since the terror attack at the city's Arena which killed 22 people. #Manchest… +05/21/2018,Musicians,@ollyofficial,Eh actually buzzing.... 🤪 https://t.co/bXgpWYUHe3 +05/21/2018,Musicians,@ollyofficial,Well well well what can I say #Deadpool2 was everything I wanted and more after the 1st one!! I love @VancityReynolds what a guy! 👍🏻💯🔥 +05/21/2018,Musicians,@ollyofficial,"Awwww what a night with the @CoggeshallTown boys this was Saturday😝🔥💯 + +Thanks @sugarhut for having the best looking… https://t.co/4Rl74dLTak" +05/21/2018,Musicians,@ollyofficial,Only 3 weeks till @socceraid @UNICEF_uk bloody excited about it!! Are you????? 😆👍🏻💯🔥 https://t.co/6HNZ3C4ULB +05/20/2018,Musicians,@ollyofficial,"RT @socceraid: Just 3️⃣ weeks to go until @robbiewilliams’ England take on @usainbolt’s World XI 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽️🌎 + +🎟 Don’t miss a game like no ot…" +05/20/2018,Musicians,@ollyofficial,@JasonManford @howlettspark 😂😂😂 +05/19/2018,Musicians,@ollyofficial,On my way to @sugarhut with the @CoggeshallTown last night till we hit pre-season 🔥😝👍🏻 +05/19/2018,Musicians,@ollyofficial,Ffs lost my keys again 🤷🏻‍♂️ https://t.co/N9QyceYmlX +05/18/2018,Musicians,@ollyofficial,@Sianwelby 😂😂😂 +05/18/2018,Musicians,@ollyofficial,@CapitalOfficial @MarvinHumes Just you wait and see 😝👍🏻 +05/17/2018,Musicians,@ollyofficial,@officialroycey Happy birthday Roycey ❤️😘 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Thanks babe see ya soon! Make sure you have Hooch next time 😝👌🏻 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Classic keyboard warrior and never said anything! I’m gutted you have plenty to say 😂😂 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Cheers 😂🤷🏻‍♂️👌🏻 +05/16/2018,Musicians,@ollyofficial,RT @CoggeshallUtd: Our team are seeking a kit sponsor for the coming 2 seasons. If interested please message us for details. please RT akke… +05/15/2018,Musicians,@ollyofficial,@officialroycey Love ya mate! ❤️👍🏻 check ya dms +05/15/2018,Musicians,@ollyofficial,"Stop making me laugh your make me @PUMA pants 😝 + +Great meeting & exciting to work with you guys @pumafootball movin… https://t.co/LiXr0F5QP8" +05/15/2018,Musicians,@ollyofficial,"Woke up this morning and it just hit me that you lot.... + +Thanks for every tweet yesterday! Best fans ever! Love ya… https://t.co/8NRQ1f6bk1" +05/15/2018,Musicians,@ollyofficial,@VasJMorgan Thanks Vas 😊👍🏻 +05/15/2018,Musicians,@ollyofficial,@EssexPR Thanks brooksy 😘 +05/15/2018,Musicians,@ollyofficial,@Popprince Thanks kev 😘 +05/15/2018,Musicians,@ollyofficial,@BroadcastMoose Thanks moose 👍🏻 +05/15/2018,Musicians,@ollyofficial,@Tallia_Storm Cheers Tallia +05/15/2018,Musicians,@ollyofficial,@RickyRayment Thanks Ricky +05/14/2018,Musicians,@ollyofficial,@BRITs Thanks Brits ❤️😘 +05/14/2018,Musicians,@ollyofficial,Thanks official charts see you soon 😏😉😘 https://t.co/UhKAzvSclz +05/14/2018,Musicians,@ollyofficial,Awwww thanks you lot ❤️❤️❤️ https://t.co/TpQPQjw0j6 +05/14/2018,Musicians,@ollyofficial,Keeping it cool since 1984!! Thanks for all the love today! You lot are awesome!! Love ya ❤️😘 https://t.co/VmDRhXpa2H +05/14/2018,Musicians,@ollyofficial,@Luke_Wilson89 @CoggeshallTown Thanks skipper 😝 +05/13/2018,Musicians,@ollyofficial,😂😂😂 @sueperkins killed me there 👏🏻 But very funny!! #BAFTATV +05/13/2018,Musicians,@ollyofficial,I’ve had so many nightmares over this since last soccer aid! Can’t believe I missed it 🙈 https://t.co/INxEqhWtUC +05/12/2018,Musicians,@ollyofficial,"Winners smile tonight 😝 +@thurlownunnECL presentation night!! 👍🏻⚽️⚫️🔴⚫️🔴 https://t.co/Qd22eVMbLy" +05/11/2018,Musicians,@ollyofficial,"Wow what a final day of the season for us @CoggeshallTown 🔥💯😝 + +Big thanks to @joshfilmmaker for this video he did!… https://t.co/yMEi3ZpAOs" +05/11/2018,Musicians,@ollyofficial,Oh F%#k !! Can’t believe it!! What a honour It will be to meet this legend... OH AH CANTONA 🙌🏻🔥💯 https://t.co/hGTSsBbyOp +05/09/2018,Musicians,@ollyofficial,@undateables_jb @Withamtownfc @CoggeshallTown Was it nice seeing a team lift a trophy??! 😝 nah only messing was gre… https://t.co/k9qO8L58RW +05/09/2018,Musicians,@ollyofficial,"RT @socceraid: When you realise there’s 3️⃣6️⃣ days until the @FIFAWorldCup but only 3️⃣2️⃣ days until #SoccerAid 😁 + +🎟 https://t.co/ihLTUR4…" +05/09/2018,Musicians,@ollyofficial,@JoeKnightyy9 @scotthiskey Great season actually! You melons 🍉 🍉🍉🍉🍉🍉🍉🍉🍉🍉 +05/08/2018,Musicians,@ollyofficial,@JoeKnightyy9 Shame you get Injured every 5mins 😂😂 +05/07/2018,Musicians,@ollyofficial,"RT @BBCEssexSport: ICYMI: “These are the moments you will cherish for the rest of your life.” + +@ollyofficial on @CoggeshallTown’s promotion…" +05/06/2018,Musicians,@ollyofficial,@BBCEssexSport @CoggeshallTown @ThurlowNunnFL Thanks for all the support 👍🏻💯🔥 +05/06/2018,Musicians,@ollyofficial,"RT @BBCEssexSport: “We’re not th biggest club in the world but it’s been a great season.” + +@ollyofficial reflects on @CoggeshallTown becom…" +05/06/2018,Musicians,@ollyofficial,@IainvanderRee @rickandrews65 You guys yesterday were an embarrassment singing and swearing in front of all the kid… https://t.co/eclOdxJqkp +05/06/2018,Musicians,@ollyofficial,@rickandrews65 😂😂👍🏻🏆you can have Division 1 will take the Premier 🔥💯🤣 +05/05/2018,Musicians,@ollyofficial,"RT @CoggeshallTown: WE ARE THE CHAMPIONS‼️ @CoggeshallTown 2017/18 @thurlownunnECL + +#SeedGrowers 🔴⚫️👍🏻🔥💯 https://t.co/yqo7DbLa3B" +05/05/2018,Musicians,@ollyofficial,Taken me all year to get my hands on this biggun 😝💯🔥#seedgrowers #champions https://t.co/9lSjZ4aAMG +05/05/2018,Musicians,@ollyofficial,"What a day! Sun is out, legs are out +Back home and straight over to… https://t.co/pzTslD3tIA" +05/04/2018,Musicians,@ollyofficial,Note to self 🤔 Tequila was a bad choice🤷🏻‍♂️😂🙈 @ The Highlight Room https://t.co/ZInoYnWPxW +05/04/2018,Musicians,@ollyofficial,"RT @5liveSport: ""Me and my brother had Cantona shirts, a Sharpe shirt and a Giggs shirt"" + +@Ollyofficial on his love of #MUFC growing up.🔴⚪…" +05/04/2018,Musicians,@ollyofficial,Flossing’ell 😝‼️ https://t.co/3HYVlhsQxD +05/04/2018,Musicians,@ollyofficial,Me & Wrighty out out ! His killing me for my shirt? What we saying... 😝 https://t.co/mpM8pICjvp +05/03/2018,Musicians,@ollyofficial,Buckle up you lot! Rest of this year gunna be fun 😝😝👊🏻🔥 https://t.co/OG4hRDJfsv +05/03/2018,Musicians,@ollyofficial,Doing the Harlem Shake 😂 #family #birthdaymonth #TBT https://t.co/kDwa6bXPVY +05/01/2018,Musicians,@ollyofficial,RT @CoggeshallTown: Excitement is electric and we can’t wait to lift the trophy on Saturday at Home. Can’t wait to see you all there. Huge… +05/01/2018,Musicians,@ollyofficial,"One word “CHAMPIONS” +@CoggeshallTown 🏆 #SeedGrowers 🔴⚫️🔴⚫️⚽️ https://t.co/KyQfqJGSEx" +05/01/2018,Musicians,@ollyofficial,"Gutted lads @CoggeshallTown I won’t be there tonight against @Felixseasiders I only turn up for the big games 😝 +Nah… https://t.co/N06GvquRVl" +05/01/2018,Musicians,@ollyofficial,In case you was wondering... https://t.co/hyZS1Sk7eX +04/30/2018,Musicians,@ollyofficial,Soccer aid June 4th..... er no it’s June 10th @GordonRamsay 🤣 plus @MarkWright_ send me a postcard next time bud 😝🤣… https://t.co/6Ojxjz8Ksx +04/29/2018,Musicians,@ollyofficial,I’ve got my Sunday smile on!! https://t.co/fgqdgVr2kM +04/29/2018,Musicians,@ollyofficial,Put your filthy hands all over me 😝 @ Justin Timberlake Man of the Woods https://t.co/AAw95hRTca +04/29/2018,Musicians,@ollyofficial,What a show this was 🔥💯👍🏻 https://t.co/yIaRJ1yOTn +04/28/2018,Musicians,@ollyofficial,"Loving it mate @NiallOfficial 😝👊🏻🔥 + +https://t.co/yUjqEa7mpG" +04/28/2018,Musicians,@ollyofficial,What a little star 🌟 yes I’ll sort out a signed pic for the little man! 👍🏻💯 https://t.co/9d6suipIuE +04/28/2018,Musicians,@ollyofficial,"@foreverourolly 😂 but truth is you gotta learn to love yourself before you can love another + +or I’m just abit of a loner 🤣" +04/28/2018,Musicians,@ollyofficial,@loubeylou What a little star 🌟 +04/28/2018,Musicians,@ollyofficial,@ZoeSoraff_OM Oh sorry Grammar police 🙄can’t help it! It’s what I do 😝 +04/28/2018,Musicians,@ollyofficial,@ged_coyne @warwickroad69 Just abit of banter lads 😂😂 +04/28/2018,Musicians,@ollyofficial,I’ll be watching Kaano! 🔥💯👊🏻 https://t.co/WQZx7LlzWQ +04/28/2018,Musicians,@ollyofficial,@jamier1977 That’s the joke 😂😂 +04/27/2018,Musicians,@ollyofficial,I’m READY for the weekend are YOU⁉️😝 https://t.co/VBrZ8szNob +04/27/2018,Musicians,@ollyofficial,Yessssssss #PrinceLouis great name choice but I’m afraid ive already got my own Prince Louis and he loves selfies w… https://t.co/MOoiYIOBlF +04/27/2018,Musicians,@ollyofficial,@ourrachblogs Worse!! I was reading her a blog about abstaining in April about crisps 😂😝 +04/27/2018,Musicians,@ollyofficial,@ourrachblogs That’s what she said last night 😝😂😏 +04/27/2018,Musicians,@ollyofficial,@ourrachblogs Oh well thanks for listening Rach👌🏻appreciate your positive feedback😂 Shame I didn’t come to you earl… https://t.co/9c5u1Sv6ZM +04/27/2018,Musicians,@ollyofficial,"Well, for future reference this is my serious face 😝👊🏻 https://t.co/DimlXbYIki" +04/26/2018,Musicians,@ollyofficial,"Yesterday’s gone, Tomorrow is a Mystery, Today is a gift! LIVE IT 🔥💯👊🏻 https://t.co/4KSUab0m8v" +04/26/2018,Musicians,@ollyofficial,@TheXFactor 😂😂😂 +04/26/2018,Musicians,@ollyofficial,@officialroycey Sending you my love mate 😘☹️ +04/26/2018,Musicians,@ollyofficial,A random picture outside A random door 😝 @ Warner Bros. Entertainment https://t.co/WocXF4wLRi +04/25/2018,Musicians,@ollyofficial,Last time the Eithad was full 😂😝 #robbiewilliams #tour #2013 #troublemaker https://t.co/uheDlDv15V +04/25/2018,Musicians,@ollyofficial,@eddiebrett @CoggeshallTown Thanks Eddie 🤓 +04/25/2018,Musicians,@ollyofficial,Don’t you chicken curry! New music is coming... 😝🔥💯 https://t.co/9hCwAoR63m +04/24/2018,Musicians,@ollyofficial,Big hand selfie 👋🏻😎🇺🇸 https://t.co/S5q5Nhrp7m +04/24/2018,Musicians,@ollyofficial,"Let’s just enjoy the next 3 games lads! What will be will be! +Promotion was what we wanted @CoggeshallTown & we’ve… https://t.co/OmGPYTV2ie" +04/24/2018,Musicians,@ollyofficial,"RT @CoggeshallTown: PROMOTION FOR THE #SeedGrowers🔥💯👊🏻 + +What an effort from the lads with back to back promotions!Unbelievable! + +The hosts…" +04/24/2018,Musicians,@ollyofficial,Wow 😮 see you there 😝🔥‼️ https://t.co/TWVJ6UVhQU +04/24/2018,Musicians,@ollyofficial,3rd wheeling at its finest! You just can’t compete with @realsirtomjones ☹️😂💯 https://t.co/z7ZVSreZAF +04/23/2018,Musicians,@ollyofficial,"New Monday, New Week, New sneaks! LETS DO THIS 💯😝👊🏻 https://t.co/9ljvnLc9TR" +04/23/2018,Musicians,@ollyofficial,@VickNHope 😂😂 +04/22/2018,Musicians,@ollyofficial,#LondonMarathon 💯👍🏻🔥 +04/22/2018,Musicians,@ollyofficial,Yesssss @JBransgrove our GK @CoggeshallTown is doing it today @LondonMarathon I’m watching mate! His doing it for… https://t.co/6WMnwaE32Q +04/22/2018,Musicians,@ollyofficial,To everyone running the london marathon today! Nothing but love and respect! The hard work / dedication you’ve put… https://t.co/hfxu06uKXH +04/21/2018,Musicians,@ollyofficial,"RT @ManUtd: Wembley is red. + +#MUFC #EmiratesFACup https://t.co/f6wrsU8v4P" +04/21/2018,Musicians,@ollyofficial,"RT @ManUtd: FT: #MUFC 2 Tottenham 1. + +Goals from @Alexis_Sanchez and @AnderHerrera see the Reds into the #EmiratesFACup final... + +Let the c…" +04/21/2018,Musicians,@ollyofficial,"Huge guys!! Get in!! +Can’t be more prouder of the effort & dedication you lads have put in! 23pts behind and we are… https://t.co/JnLHUj0UiT" +04/21/2018,Musicians,@ollyofficial,Oops Morning 🙊😝🤪 https://t.co/JIFa9fj5q1 +04/20/2018,Musicians,@ollyofficial,@LiamPayne 🤪💯👍🏻 +04/20/2018,Musicians,@ollyofficial,YESSSSS @LiamPayne ‼️🔥TUNEEEEE MATE! #Familiar https://t.co/JY4T6dbgp9 +04/20/2018,Musicians,@ollyofficial,@mynameisbrooke @bekahxlouise_ 😂😂😂❤️ +04/20/2018,Musicians,@ollyofficial,@EssexPR Dya remember ‘Shadow’ ?! He used to rip geezers heads off in dual! +04/20/2018,Musicians,@ollyofficial,Without a shadow of a doubt yes! Only if “Jet” is back doing it 😝 https://t.co/5XB3F4gMuq +07/02/2018,Musicians,@elliegoulding,Yes! https://t.co/fkTnqGhavm +07/02/2018,Musicians,@elliegoulding,@LaraWetzel 😉 +06/29/2018,Musicians,@elliegoulding,"RT @marcocaselli_: @elliegoulding and @duttypaul 's new song is a BOP +#Badlove https://t.co/49QGzpqdje" +06/29/2018,Musicians,@elliegoulding,❤️ https://t.co/DKcqgL5Z3l +06/29/2018,Musicians,@elliegoulding,"RT @caitlinmoran: And so it has been left to Danny Dyer to speak the simplest and greatest truth about Brexit. Especially with the second ""…" +06/27/2018,Musicians,@elliegoulding,RT @duttypaul: @JheneAiko @elliegoulding @iambeckyg @MAJORLAZER @stefflondon @Migos @torylanez @DUALIPA!!! SOON COME!!! #madloveEP RRR!!! +06/26/2018,Musicians,@elliegoulding,It was a privilege to visit @NordoffRobbins1 yesterday to take part in a music therapy session! The sessions are fr… https://t.co/hjM5j2UnhJ +06/26/2018,Musicians,@elliegoulding,RT @NordoffRobbins1: Congratulations to the incredible @elliegoulding for winning the @lizhobbs_group Best Female Award at this year's @Nor… +06/25/2018,Musicians,@elliegoulding,"RT @CaroRance: Disgraceful result from Westminster tonight as 415 MPs vote to approve #Heathrow third runway, approve unabated climate chan…" +06/25/2018,Musicians,@elliegoulding,Until I’m back I just gotta keep doing the right thing! https://t.co/gTZnzZTi5g +06/25/2018,Musicians,@elliegoulding,RT @Ed_Miliband: We owe it to future generations not just to have good environmental principles but to act on them. That is why I will be v… +06/25/2018,Musicians,@elliegoulding,I like you Matthew https://t.co/S6ByFDT5no +06/25/2018,Musicians,@elliegoulding,"RT @mtpennycook: I’ll be voting against #Heathrow expansion later today. The project is expensive, risky, and the financing still doesn't a…" +06/25/2018,Musicians,@elliegoulding,"RT @HomeHouseLondon: We are delighted to announce The Marylebone Project as our charity for 2018/19, London's largest women only homeless p…" +06/25/2018,Musicians,@elliegoulding,@mytaxiuk Improve your app +06/23/2018,Musicians,@elliegoulding,Congrats @akalamusic https://t.co/Av4PXPQ2VM +06/21/2018,Musicians,@elliegoulding,@Benfogle Fair play! +06/20/2018,Musicians,@elliegoulding,“Bestie” “supper” “yummy” 😷 https://t.co/YNgcfLxKsx +06/19/2018,Musicians,@elliegoulding,"RT @AmnestyUK: If you don't have #humanrights, you don't have humanity. https://t.co/yAp6EHFN2I" +06/18/2018,Musicians,@elliegoulding,RT @MarylebonePrjct: Happy #RefugeeWeek2018 We are going to be taking part in the 20 #SimpleActs Here we have shared our welcome banner & a… +06/18/2018,Musicians,@elliegoulding,"RT @TheNewsAtGlenn: I really took @elliegoulding to task here. It's like Paxman. Move over, Dimbleby, Moore's in town. https://t.co/VrK55sX…" +06/14/2018,Musicians,@elliegoulding,"RT @UN_EMG: Are YOU ready for World Sea Turtle Day? #BeatPlasticPollution #SDG14 + +Watch this video with @UNEnvironment Goodwill Ambassador…" +06/14/2018,Musicians,@elliegoulding,@grimmers Haha +06/14/2018,Musicians,@elliegoulding,@GabrielleAplin Vaseline around the inside of your nostrils 😂 +06/08/2018,Musicians,@elliegoulding,@alisonleung1989 No +06/08/2018,Musicians,@elliegoulding,Indeed. https://t.co/QC73FDTiDW +06/07/2018,Musicians,@elliegoulding,Amazing! Kudos to the teachers!!!! 👏🏼👏🏼👏🏼 https://t.co/jOerynW0uH +06/07/2018,Musicians,@elliegoulding,@elliehamilton38 @reallorraine Hahaha +06/06/2018,Musicians,@elliegoulding,@RowForTheOcean @lucysiegle @UNEnvironment You are AWESOME +06/06/2018,Musicians,@elliegoulding,"RT @RowForTheOcean: @elliegoulding @lucysiegle @UNEnvironment Hey Ellie, we are rowing 3,000 miles across the Atlantic to spread the messag…" +06/05/2018,Musicians,@elliegoulding,RT @halcyon_leah: @elliegoulding We stand together! +06/05/2018,Musicians,@elliegoulding,Let’s do Instagram tagging tomorrow? Been a long studio day 🤯 Goodnight beautiful people x #BeatPlasticPollution +06/05/2018,Musicians,@elliegoulding,They were super early supporters of me. Thank you @Lookmagazine ❤️ https://t.co/b3U3DdwyIJ +06/05/2018,Musicians,@elliegoulding,🤩 https://t.co/N7y7kqfkYZ +06/05/2018,Musicians,@elliegoulding,"RT @GeorgeMonbiot: In the midst of a climate emergency, the government is imposing a 3-line whip on its MPs, to force acceptance of a Third…" +06/05/2018,Musicians,@elliegoulding,RT @CarolineLucas: Can't quite believe Chris Grayling's statement on #Heathrow didn't mention climate change even once. The biggest crisis… +06/05/2018,Musicians,@elliegoulding,Seeing as few politicians are brave enough to try to implement any kind of serious planet 🌍 saving legislation (blo… https://t.co/971aXsRrQh +06/05/2018,Musicians,@elliegoulding,Later on I want you to tag me in your #beatplasticpollution pics on insta pleeeease will let you know when x @UNEnvironment +06/05/2018,Musicians,@elliegoulding,Happy World Environment Day to all my beautiful fans and beyond. Remember you can still be a bad b*tch and care abo… https://t.co/Mh096hJoIA +06/04/2018,Musicians,@elliegoulding,Shoutout to anyone making a difference +06/04/2018,Musicians,@elliegoulding,@bittersweeteg That’s because these pictures are not supposed to be out +06/03/2018,Musicians,@elliegoulding,RT @guardian: Whale dies from eating more than 80 plastic bags https://t.co/iTImrYhcES +06/01/2018,Musicians,@elliegoulding,@Tonygardner I wouldn’t have got that +06/01/2018,Musicians,@elliegoulding,🎉🎉🎉 https://t.co/70AEL86Ayd +06/01/2018,Musicians,@elliegoulding,RT @Dania_H_: Whatever is going through @elliegoulding s mind right now-I can 100% relate to that. +05/31/2018,Musicians,@elliegoulding,RT @guardian: Avoiding meat and dairy is ‘single biggest way’ to reduce your impact on Earth https://t.co/pejsoEG7uD +05/31/2018,Musicians,@elliegoulding,"RT @Channel4News: No, this viral video doesn't show Muslims attacking cars in Britain. + +They're football hooligans in Switzerland. https://…" +05/31/2018,Musicians,@elliegoulding,@grimmers ❤️ +05/30/2018,Musicians,@elliegoulding,https://t.co/YTLU8dk7W8 +05/30/2018,Musicians,@elliegoulding,Amazing ❤️ https://t.co/eb3RHKaNST +05/30/2018,Musicians,@elliegoulding,@jamal_andreas @_AndyGrover That headshot tho +05/30/2018,Musicians,@elliegoulding,@YogaWorks it has legit taken me about an hour just to try and book a class online/on the app 😕 still havnt managed to! +05/29/2018,Musicians,@elliegoulding,@nikla_1 Crikey +05/28/2018,Musicians,@elliegoulding,@herminecornish_ Lately I’ve been finishing songs! :) +05/26/2018,Musicians,@elliegoulding,"This is just wonderful, Ireland 💚" +05/26/2018,Musicians,@elliegoulding,RT @CalvinHarris: Spot on https://t.co/B2UcFcCT84 +05/25/2018,Musicians,@elliegoulding,@cattleyaEG I am good! ❤️ +05/25/2018,Musicians,@elliegoulding,RT @AnnieMac: I'm feeling the tension in Ireland all the way over here in London. Sending love and solidarity to all those women and men fe… +05/21/2018,Musicians,@elliegoulding,@HEAVYCR0WN Yes is fake x +05/21/2018,Musicians,@elliegoulding,"RT @dpcarrington: Since the rise of human civilisation, 83% of wild land mammals, 80% of marine mammals and 50% of plants have been lost ht…" +05/21/2018,Musicians,@elliegoulding,"RT @dpcarrington: “I would hope this gives people a perspective on the very dominant role that humanity now plays on Earth,” Prof Ron Milo…" +05/21/2018,Musicians,@elliegoulding,RT @guardian: Human race just 0.01% of all life but has destroyed over 80% of wild mammals – study https://t.co/xNu6DTLr9U +05/17/2018,Musicians,@elliegoulding,"@ellieandbanks Bless you, not long x" +05/17/2018,Musicians,@elliegoulding,"RT @vaughnwallace: Our latest @NatGeo cover is one for the ages + +#PlanetorPlastic https://t.co/NssiHOtaYc" +05/16/2018,Musicians,@elliegoulding,Excited to headline @RockCorpsJapan concert on Sept 1st. Sign up here to earn your ticket! https://t.co/YnNTVzdgTM… https://t.co/5qTcj7UYcH +05/15/2018,Musicians,@elliegoulding,@ThisLully Cheers +05/15/2018,Musicians,@elliegoulding,@ThisLully https://t.co/xidxLFCjj7 +05/13/2018,Musicians,@elliegoulding,@JasminRicard 😘 +05/13/2018,Musicians,@elliegoulding,"RT @elliegoulding: @goulding_eg4 Until I spend the next three years fully immersed in my new music, for now, ain’t nothing wrong with a par…" +05/13/2018,Musicians,@elliegoulding,"@goulding_eg4 Until I spend the next three years fully immersed in my new music, for now, ain’t nothing wrong with… https://t.co/St8gnaKJmb" +05/10/2018,Musicians,@elliegoulding,@getglucky @CalvinHarris U missin London guh +05/09/2018,Musicians,@elliegoulding,@JessicaAlstonxx ❤️ +05/08/2018,Musicians,@elliegoulding,@fieldsofgould 🙂 +05/08/2018,Musicians,@elliegoulding,@goulden_heart Thank you! +05/07/2018,Musicians,@elliegoulding,@DILLONFRANCIS @IntrigueVegas Haha +05/04/2018,Musicians,@elliegoulding,https://t.co/VeGXXhNpGT +05/03/2018,Musicians,@elliegoulding,@leahdarmanin Lyrics!! +05/01/2018,Musicians,@elliegoulding,@CSuonATC :) +05/01/2018,Musicians,@elliegoulding,@salihughes Realising that something switched mentally and physically months after being veggie. I felt much more a… https://t.co/IoOFTrLkkz +05/01/2018,Musicians,@elliegoulding,RT @NosaIsabor: .....keep messing with nature and see what happens https://t.co/z90aWKeqkk +04/25/2018,Musicians,@elliegoulding,RT @karliekloss: Goulden Hour 🌞 cc @elliegoulding https://t.co/vrEbtGX14C +04/24/2018,Musicians,@elliegoulding,"RT @Kwabs: Yo @IvyChelsGarden, at this point you ought to give out some sort of public response to Raye that explains your position undismi…" +04/22/2018,Musicians,@elliegoulding,"RT @UNFCCC: How much do you know about #ClimateChange? https://t.co/GZMa8Y73oc This #EarthDay, take this #climate quiz and get informed abo…" +04/22/2018,Musicians,@elliegoulding,RT @narendramodi: I compliment all those individuals and organisations who are working towards promoting harmony with nature and ensuring s… +04/22/2018,Musicians,@elliegoulding,@Shelter Legends!! +04/22/2018,Musicians,@elliegoulding,Sending good vibes to all the London Marathon runners today. You are brilliant x +04/20/2018,Musicians,@elliegoulding,"Rest easy Avicii, you inspired so many of us. Wish I could have said that to you in person x" +04/20/2018,Musicians,@elliegoulding,No brainer smh https://t.co/3LuOcFALfn +04/20/2018,Musicians,@elliegoulding,"RT @goul_ding: @elliegoulding said ""I need your love I need your time"" + +Well, I say ""I need your fucking new music now"" + +Bye 🐒" +04/19/2018,Musicians,@elliegoulding,@martindavis111 ❤️ +04/18/2018,Musicians,@elliegoulding,@MelissaHooker3 Thank you! +04/18/2018,Musicians,@elliegoulding,I did that! Seemed like a fun idea at the time 🤷🏼‍♀️😷 https://t.co/XjssFlGyIj +04/17/2018,Musicians,@elliegoulding,@SoccerAM @EddieHearn Ha! +04/17/2018,Musicians,@elliegoulding,@grimmers Ha ive had a few grumpy-ish texts saying the same 😬⛈💦🌧🌦 +04/16/2018,Musicians,@elliegoulding,"RT @JonathanBadyal: Great evening at the UK reception for the Commonwealth Forums and Heads of Government meeting 2018. + +Opened by the Duke…" +04/16/2018,Musicians,@elliegoulding,OMFG Gordon https://t.co/y9507jvPPz +04/16/2018,Musicians,@elliegoulding,"RT @tictoc: Buckingham Palace has been transformed into a rainforest, as part of a global conservation initiative led by the @RoyalFamily's…" +04/15/2018,Musicians,@elliegoulding,RT @richardbranson: By 2050 there is going to be more plastic (by weight) than fish in the sea. Learn about this - and more ocean plastic f… +04/15/2018,Musicians,@elliegoulding,These are really good https://t.co/yoyKBJkN40 +04/14/2018,Musicians,@elliegoulding,RT @YeomanMichael: @keyofDom @elliegoulding @timkubart @sesamestreet @bshe Beautiful message for children including my son# earth is the on… +04/14/2018,Musicians,@elliegoulding,Ugh I love you guys so much for GETTING IT xxx https://t.co/XIlPlZL5Hz +04/14/2018,Musicians,@elliegoulding,RT @keyofDom: So excited that this is in the universe. @timkubart and I wrote this song a while back and it's such a dream to hear @elliego… +04/10/2018,Musicians,@elliegoulding,@getglucky @SylviaObell Me on every night out #foreverTired +04/10/2018,Musicians,@elliegoulding,RT @LouieBanks: Hi @instagram you seem to have deleted my account (@louiebanksshoots) and I believe it to be an error. I’d hugely appreciat… +04/10/2018,Musicians,@elliegoulding,"@claraamfo Oh wow, 😔❤️" +04/10/2018,Musicians,@elliegoulding,@hollandnigel @BBCR1 @claraamfo Huh?! +04/07/2018,Musicians,@elliegoulding,@JustinTrudeau ? https://t.co/a4CiYDR6Go +04/07/2018,Musicians,@elliegoulding,@kndrptr 😃 +04/04/2018,Musicians,@elliegoulding,@ConorMcDPhoto @BBCR1 @AnnieMac @benhowardmusic Do you like Ben Howard? I never knew that +04/04/2018,Musicians,@elliegoulding,@foolishm0rtals ❤️❤️❤️ +04/03/2018,Musicians,@elliegoulding,RT @GabrielleAplin: I wish we didn't treat other beings like such shite. Humans and animals. Elephants are so peaceful I hate seeing footag… +04/02/2018,Musicians,@elliegoulding,@cqmerqn The Blaze and George Fitzgerald +04/02/2018,Musicians,@elliegoulding,@Gouldingoddess Really good thank you! ❤️ +04/01/2018,Musicians,@elliegoulding,Wishing everyone a lovely lovely Easter 😊 +04/01/2018,Musicians,@elliegoulding,"Finally watched the fight, congratulations @anthonyfjoshua 🙏🏼 much respect as ever! Why do Brits love to boo so much tho 😑" +03/29/2018,Musicians,@elliegoulding,https://t.co/xsFnJVrq3B +03/27/2018,Musicians,@elliegoulding,"RT @guardian: John Bercow, the Speaker of the House of Commons, tells off foreign secretary Boris Johnson for using 'inappropriate and sexi…" +03/25/2018,Musicians,@elliegoulding,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Musicians,@elliegoulding,@Dania_H_ Fair play 😂❤️ +03/23/2018,Musicians,@elliegoulding,RT @sarfow11: the great cake-eating saga on @elliegoulding’s instagram story is pretty much the only thing keeping me going rn. they NEED t… +03/23/2018,Musicians,@elliegoulding,Um.... yeah! https://t.co/LG0zsG1X6y +03/21/2018,Musicians,@elliegoulding,"RT @DesiJV: @elliegoulding What a Dame! Ellie's devotion to inspire, challenge, impact, and change the way our world thinks and works is so…" +03/21/2018,Musicians,@elliegoulding,@shannonn2323 Bless you ❤️ I’ll be back soon x +03/20/2018,Musicians,@elliegoulding,RT @StylistMagazine: . @elliegoulding shares her tiny tips for saving the planet https://t.co/q7HF67gvNj #earthhour #climatechange #plastic… +03/18/2018,Musicians,@elliegoulding,Cool 😑 https://t.co/7l3xzaPuUa +03/18/2018,Musicians,@elliegoulding,Why are you so great Pret https://t.co/SzTp4d7c9t +03/16/2018,Musicians,@elliegoulding,RT @StreetsofL: Thank you to everyone who placed a bid/bought items in our recent eBay auction of signed memorabilia + a big thank you to e… +03/15/2018,Musicians,@elliegoulding,@mccordsbutera 😘 +03/15/2018,Musicians,@elliegoulding,@halcyonsdays Hi 🐶 +03/15/2018,Musicians,@elliegoulding,RT @BronteFarenden: The lovely @elliegoulding doing her thing by sharing this - there’s no reason why we can’t all do our bit to help reduc… +03/15/2018,Musicians,@elliegoulding,RT @Dania_H_: A concept; @elliegoulding in oversized shirts. +03/15/2018,Musicians,@elliegoulding,"RT @paulocoelho: Don't panic +Loneliness, when accepted, is a gift that will lead us to find a purpose in life." +03/15/2018,Musicians,@elliegoulding,Back to the stars for Stephen Hawking 💫 Thank you for your remarkable intelligence and perseverance. As a pioneer i… https://t.co/I8trmLjmBw +03/15/2018,Musicians,@elliegoulding,RT @ConorMcDPhoto: BEN HOWARD JUST POSTED A TEASER VIDEO https://t.co/GCHkJrmp1v +03/14/2018,Musicians,@elliegoulding,@JessicaAlstonxx @Everlast_ Caspar and I are very grateful for the beautiful flowers x +03/13/2018,Musicians,@elliegoulding,@gouldingglitter Have a wonderful birthday ☺️ +03/12/2018,Musicians,@elliegoulding,Impossible burger 😍😍😍😍😍 https://t.co/e3BdSoz3r3 +03/10/2018,Musicians,@elliegoulding,@AAllexl I’m glad!! You should! ❤️ +03/09/2018,Musicians,@elliegoulding,#HappyInternationalWomenDay To the courageous women who paved the way for us to thrive today. To all the hardworkin… https://t.co/2PXge69vcG +03/07/2018,Musicians,@elliegoulding,"We need to act now, World https://t.co/6JsKg1z8hs" +03/06/2018,Musicians,@elliegoulding,RT @jennypackham: Ellie Goulding wearing the Calypso gown from the AW18 Collection to the 2018 Vanity Fair Oscar Party @elliegoulding #jenn… +03/05/2018,Musicians,@elliegoulding,You absolutely smashed it @AndraDayMusic ❤️ #Oscars +03/03/2018,Musicians,@elliegoulding,Happy World Wildlife Day! 🦁💚🌏 https://t.co/N7dKDhWfFv https://t.co/x4GNU8zV0U +03/03/2018,Musicians,@elliegoulding,RT @GlobalGoalsUN: Big cats are under threat but you can do something about it. On #WorldWildlifeDay join a team like @elliegoulding & supp… +03/03/2018,Musicians,@elliegoulding,Ps Am already in LA that was for someone else :) ☔️☔️☔️ +03/02/2018,Musicians,@elliegoulding,@Hanaranah Unfortunately it’s true +03/02/2018,Musicians,@elliegoulding,@Gouldingoddess 💕💕💕 +03/02/2018,Musicians,@elliegoulding,My sister saw comments on @herefordtimes and was upset by it. Not sure why people are so obsessed with criticising.… https://t.co/vOtDJZxe2Q +03/02/2018,Musicians,@elliegoulding,@ellieandbanks ❤️❤️❤️ +03/02/2018,Musicians,@elliegoulding,Epic auction alert for an amazing cause... You are wonderful @StreetsofL x https://t.co/Qt0Ivf0U8y +03/02/2018,Musicians,@elliegoulding,@FrankAnne1 @HTnewsroom This a classically ignorant response. So depressing +03/02/2018,Musicians,@elliegoulding,"Thank you, and yes, that was the aim. I don’t know why Herefordians are always so quick to the negative before the… https://t.co/n1PO5FDSKr" +03/01/2018,Musicians,@elliegoulding,RT @ohmygouldness: @elliegoulding I think I remember seeing that Street Link doesn’t work in Scotland however there are these 2 numbers for… +03/01/2018,Musicians,@elliegoulding,"RT @Tell_StreetLink: If you see rough sleepers out in the snow during daytime hours, please remember that you can use our app to locate the…" +02/28/2018,Musicians,@elliegoulding,RT @UNEP: Are you ready to rise up for people and planet? We're looking for the next Young Champions of the Earth to tackle the world's env… +02/28/2018,Musicians,@elliegoulding,Best album https://t.co/mSNnUVBFAI +02/27/2018,Musicians,@elliegoulding,@djsaraht @Spotify I will make another! 😘 +02/27/2018,Musicians,@elliegoulding,@DarpinoLaura @PanteneUK Will sort x +02/27/2018,Musicians,@elliegoulding,RT @rarohde: The North Pole is warmer than much of Europe right now. https://t.co/7hWpF0EysY +02/26/2018,Musicians,@elliegoulding,@AskTSA Can you DM me? Thanks +02/26/2018,Musicians,@elliegoulding,@TSA @AskTSA Yes!! +02/26/2018,Musicians,@elliegoulding,@AskTSA Is this active?! +02/23/2018,Musicians,@elliegoulding,"RT @lcoynearmet: @elliegoulding covering ‘Vincent’ (aka, one of my top 10 favorite songs EVER) by @donmcleanonline is THE BEST PART OF MY D…" +02/23/2018,Musicians,@elliegoulding,Same difference x https://t.co/u7lgqiP4jw +02/23/2018,Musicians,@elliegoulding,I did not give Marine Le Pen permission to use my song at the CPAC. @MLP_officiel Do not use my music in future. +02/22/2018,Musicians,@elliegoulding,@jackwhitehall Nailed it +02/21/2018,Musicians,@elliegoulding,@ladyhaja I love her +02/21/2018,Musicians,@elliegoulding,"@Aliina57 Please don’t say things like that, I spread love, not “shade” 🤦🏼‍♀️" +02/21/2018,Musicians,@elliegoulding,@ohmygouldness @DineGouldDigger @Nick_Pettigrew I don’t shade. I said what I was told to say. I wouldn’t ever say a… https://t.co/y4KR0I8gQf +02/21/2018,Musicians,@elliegoulding,So so proud to celebrate British Music tonight. Such a fantastic evening... #BRITs #80sB*tch +02/21/2018,Musicians,@elliegoulding,@DineGouldDigger @Nick_Pettigrew Guys like that need a wee punch! Happy to offer! +02/21/2018,Musicians,@elliegoulding,@Nick_Pettigrew Piss off +02/21/2018,Musicians,@elliegoulding,@LaureRoosen Haha 😜😇 +02/21/2018,Musicians,@elliegoulding,@Metro_Ents Haha noooo ❤️ +02/18/2018,Musicians,@elliegoulding,https://t.co/35rA2QpBgr +02/18/2018,Musicians,@elliegoulding,@destiny_lanee What app?! +02/18/2018,Musicians,@elliegoulding,RT @Dania_H_: @elliegoulding uhhh you forgot these https://t.co/XggFOEdBPq +02/18/2018,Musicians,@elliegoulding,https://t.co/XtBKZKTwLn +02/18/2018,Musicians,@elliegoulding,https://t.co/c7KTXhea9T +02/16/2018,Musicians,@elliegoulding,"RT @BBCScienceNews: '100,000 orangutans' killed in 16 years https://t.co/XATqq3yjEs" +02/16/2018,Musicians,@elliegoulding,RT @ClassicJpow: .@elliegoulding’s cover of “Vincent” has been the only thing to keep me sane through all the madness. +02/16/2018,Musicians,@elliegoulding,RT @EllieGWiki: NEWS: Ellie Goulding has now reached 50 MILLION Shazams & is now 1 of the 3 ONLY female artists to reach this milestone alo… +02/15/2018,Musicians,@elliegoulding,@ellieandbanks Yes x +02/15/2018,Musicians,@elliegoulding,RT @BradleyKShelton: @elliegoulding cover of #Vincent by @donmcleanonline is a touching tribute. Ellie’s one of the only artists who cover… +02/14/2018,Musicians,@elliegoulding,"@donmcleanonline Thank you so much Don , that means a lot. No one could ever sing it like you! Please never forget… https://t.co/38SZ00mPaM" +02/14/2018,Musicians,@elliegoulding,RT @donmcleanonline: Hello @elliegoulding... Vincent is not an easy song to sing and you sing it very beautifully. Please know that I am de… +02/14/2018,Musicians,@elliegoulding,"Happy Valentines Day to my incredible fans. Any of you who feel lonely, single or not, I promise you’re not alone,… https://t.co/jgrY3F5Sa8" +02/14/2018,Musicians,@elliegoulding,"My album isn’t ready yet, but for the best fans in the world, here’s my offering for Valentines Day, a tribute to D… https://t.co/SK9qxjVibD" +02/14/2018,Musicians,@elliegoulding,@matheusmaus12 @chrisketley Me! +02/13/2018,Musicians,@elliegoulding,@MandiieeTS13 I’m always up for a @BBCR1 live lounge 🤓 +02/13/2018,Musicians,@elliegoulding,@DarpinoLaura I think I’m allowed a year off festivals :) +02/13/2018,Musicians,@elliegoulding,@LaureRoosen Exactly! ❤️ +02/13/2018,Musicians,@elliegoulding,@cononrwalsh No x +02/13/2018,Musicians,@elliegoulding,❤️ https://t.co/cQIl1i1FCB +02/12/2018,Musicians,@elliegoulding,"RT @RachhLoves: Dear social media apps: +PLEASE STOP MESSING WITH CHRONOLOGICAL ORDER. We live our lives chronologically, so when it jumps a…" +02/11/2018,Musicians,@elliegoulding,RT @TheDweck: Me when I say I’m five minutes away https://t.co/IcL42swdf1 +02/09/2018,Musicians,@elliegoulding,@nikla_1 That’s exactly right +02/07/2018,Musicians,@elliegoulding,RT @benhowardmusic: https://t.co/Fh9p1rWYYn +02/06/2018,Musicians,@elliegoulding,👍🏼👍🏼 @elonmusk https://t.co/gJyEDT3MdN +07/01/2018,Musicians,@IGGYAZALEA,Damn im about to. hold the line. https://t.co/zaP4ckKVPH +07/01/2018,Musicians,@IGGYAZALEA,"at least four times a week i say +""well... they had to sew sandy into her pants on grease! so- "" +in regards to why… https://t.co/hybFvYnUlz" +07/01/2018,Musicians,@IGGYAZALEA,If you consider the fact my life revolved around the movie grease as a child i think everything else really becomes self explanatory. +06/30/2018,Musicians,@IGGYAZALEA,I heard you say that to all the girls. . . +06/30/2018,Musicians,@IGGYAZALEA,https://t.co/HOT02f2bTi +06/29/2018,Musicians,@IGGYAZALEA,RICH BITCHES DONT DIE. +06/29/2018,Musicians,@IGGYAZALEA,ALWAYS. 🥰 https://t.co/UMhw2PY8YA +06/28/2018,Musicians,@IGGYAZALEA,I cant stop looking at it on 'maps' and thinking about all the times i would walk down the streets that are now jus… https://t.co/A4JjVg8f2d +06/28/2018,Musicians,@IGGYAZALEA,RT @SHANE_TMUK_NM4: @IGGYAZALEA Full circle moment. STS is going to be everything. Im so exited!!!!! Love u +06/28/2018,Musicians,@IGGYAZALEA,"awwwww, dream iggy thanks you and so does the real one. https://t.co/SKIK6io1gn" +06/28/2018,Musicians,@IGGYAZALEA,"I literally am fucking SHOOK right now. I just saw the address to somewhere that im going, and its randomly (or may… https://t.co/40iIDECI4S" +06/27/2018,Musicians,@IGGYAZALEA,"Im not going to let anything ruin my good mood or creative happy space im in lately. NOPE! +Im having my fun and im… https://t.co/Y1kahN1Dqk" +06/27/2018,Musicians,@IGGYAZALEA,"""We said modeling"" +I didnt ask for your order. +I didnt even make you a plate. +I'll serve up whatever the fuck i… https://t.co/6DnGKUKaRq" +06/26/2018,Musicians,@IGGYAZALEA,Ughhh you both always kill it. its too muchhhhhhhhh. 😍 https://t.co/np1zLQAduA +06/25/2018,Musicians,@IGGYAZALEA,RT @incufiend: @IGGYAZALEA I’ve legit cried cuz I spilled the ramen noodle seasoning packet. +06/25/2018,Musicians,@IGGYAZALEA,Love you guys. The single artwork says kream because that is the name of the song. i dont know any Norwegian DJs bu… https://t.co/NLJrrT1dzQ +06/25/2018,Musicians,@IGGYAZALEA,LMAO WHY DO I GET SO MAD ABOUT FOOD. CAN YOU RELATE?! https://t.co/VsrKhy7yHM +06/25/2018,Musicians,@IGGYAZALEA,JULY SIX. https://t.co/SN3HaC94jE +06/24/2018,Musicians,@IGGYAZALEA,RT @leflower: I’ll just leave this right here https://t.co/7eypJYPplG +06/24/2018,Musicians,@IGGYAZALEA,@Thee_LoLaMonroe 🧡 +06/24/2018,Musicians,@IGGYAZALEA,"Have a lovely day ladies! lets all be about our business and prosper. +I love you all. 🧡🧡🧡" +06/23/2018,Musicians,@IGGYAZALEA,"A shark in the water, how you found me." +06/23/2018,Musicians,@IGGYAZALEA,@illumedbeauty @JackieA025 @AdanPartida @ROBUARYY ive been battling loosing my voice all week. just worn out +06/23/2018,Musicians,@IGGYAZALEA,"FUCK. +IM LOOKING AT SOME CASTING VIDEOS FOR A VIDEO. +IF YOU ARE A DANCER WHO AUDITIONED, I JUST WANT TO SAY. +YOU… https://t.co/LpZRt9XqKl" +06/22/2018,Musicians,@IGGYAZALEA,JULY SIX. YOU WONT SURVIVE THE SUMMER. https://t.co/ePEnBnEaIL +06/21/2018,Musicians,@IGGYAZALEA,when i bounce it. drop a thousand. while you all talk. an im bout it. https://t.co/M5FfaPfXBf +06/21/2018,Musicians,@IGGYAZALEA,RT @edodb8: I got big fish money he gon’ bite the bait 🦈 https://t.co/tRzthbKkm8 +06/21/2018,Musicians,@IGGYAZALEA,"I was there the day we sung you happy birthday for 6 years sober. +I jumped a random persons fence in my PJs to com… https://t.co/cq6ZEAJltf" +06/21/2018,Musicians,@IGGYAZALEA,"waking up listening to @ddlovato ""sober"". +Im proud of you for having the guts to reveal your truth to the world ag… https://t.co/s46BrJyzcP" +06/20/2018,Musicians,@IGGYAZALEA,"@fondue4kill i be fair, i actually love the design aspect but no, i dont understand much about the functionality so… https://t.co/JTjJjnBDS4" +06/20/2018,Musicians,@IGGYAZALEA,I love.... pipes? i think. https://t.co/7WDOqHtJht +06/20/2018,Musicians,@IGGYAZALEA,"guys are so funny. someone literally just showed me an exhaust and said ""isnt this so cool"" i dunno. is it? im a gi… https://t.co/EngYnmyPYZ" +06/20/2018,Musicians,@IGGYAZALEA,"mom, if your reading this; send mini banana candies to america asap ive eaten them all already from breakfast." +06/20/2018,Musicians,@IGGYAZALEA,RT @THEmale_madonna: @IGGYAZALEA Well alrighty then. Bring on July!!!!!! https://t.co/H88BpDVVyE +06/20/2018,Musicians,@IGGYAZALEA,Anyway just know im really happy and excited but occasionally a lil overwhelmingly nervous - just cause who knows!?… https://t.co/xrDfKTQiae +06/20/2018,Musicians,@IGGYAZALEA,All the less eyebrows a bitch gotta draw on her face anTway. its less stressful. +06/20/2018,Musicians,@IGGYAZALEA,You ever have someone facetime you every call yall have for months; then suddenly only wanna regularly call yo ass… https://t.co/VfamWOcmKU +06/20/2018,Musicians,@IGGYAZALEA,Jurassic park is the first movie i ever watched that made me want to piss my pants. It was great. I wish i could be… https://t.co/GwQce58HwX +06/20/2018,Musicians,@IGGYAZALEA,RT @1D_memoriez: @IGGYAZALEA I feel the same way!!! https://t.co/Q0eSLkGL7s +06/20/2018,Musicians,@IGGYAZALEA,I dont care how many of those movies they make vs. how many of them i end up liking. they can get my money everytim… https://t.co/N0G3hJubZp +06/20/2018,Musicians,@IGGYAZALEA,jurassic park is coming jurrassic park is coming jurasicxdsijcominggggggggg ahhhhhhhhhhhhhhhhhhhhhhhh!!!!!!!!!!! +06/19/2018,Musicians,@IGGYAZALEA,Its not easy when you are fundamentally someone who struggles with depression and anxiety but im hopefull still eve… https://t.co/2lteBgSpSH +06/19/2018,Musicians,@IGGYAZALEA,im getting to the point now where i start to try to foresee the outcome of whats about to happen (an impossible thi… https://t.co/M69zbUyDPN +06/19/2018,Musicians,@IGGYAZALEA,because if it were up to me id be releasing songs at the same rate i post pictures. I really care about music and a… https://t.co/BGy6sReeq0 +06/19/2018,Musicians,@IGGYAZALEA,"and maybe its silly, but it really has been helping me lately to feel more postive and just keep my mind in a creat… https://t.co/Er0mQ0uJ6Y" +06/19/2018,Musicians,@IGGYAZALEA,"Say what you want about me posting pictures on instagram but honestly, +it gives me something else creative i can f… https://t.co/yfR6oQIOnd" +06/19/2018,Musicians,@IGGYAZALEA,Being spoiled spoils life. +06/19/2018,Musicians,@IGGYAZALEA,@jazalean SICK! +06/18/2018,Musicians,@IGGYAZALEA,"Also, unrelated but - im hungry." +06/18/2018,Musicians,@IGGYAZALEA,July 6th is so close yet so far away and i cannot stop thinking about it. +06/13/2018,Musicians,@IGGYAZALEA,I love you! the ULTIMATE SUPREME. https://t.co/pDekL0vPVa +06/12/2018,Musicians,@IGGYAZALEA,RT @IggysUpdates: Help @IGGYAZALEA & @eBay support the LGBTQ+ community by bidding Iggy’s Signed Cheerleading Uniform From BBMAS! All Proce… +06/10/2018,Musicians,@IGGYAZALEA,"@illumedbeauty @XZXIEXN @High_Mayyy @HotThocket @IGGYAZMALEA @Slave4Iggy @kremeclassic iam aware the GP likes ass, yes. lol" +06/10/2018,Musicians,@IGGYAZALEA,Did you know i laughed out loud about 22 times today? I swear to God. +06/09/2018,Musicians,@IGGYAZALEA,"@digitaIfon @fentyshole i did, dont worry." +06/09/2018,Musicians,@IGGYAZALEA,@Adidas_Head88 july 6. 😇 +06/08/2018,Musicians,@IGGYAZALEA,"@rightheresus it means, you can show someone how to help themselves - but sometimes they are so full with their own… https://t.co/eADVYoVLAc" +06/08/2018,Musicians,@IGGYAZALEA,"@DDistortion12 @DUASBOY After, i dont want anything else coming out until my full EP is out July 6th." +06/08/2018,Musicians,@IGGYAZALEA,You can lead a horse to water; but sometimes its already been drinking its own kool aid. +06/08/2018,Musicians,@IGGYAZALEA,"Also - Since i cant seem to speak about anything without being asked - +when is the EP dropping: S.T.S is dropping July 6th. #TheMoreYouKnow" +06/08/2018,Musicians,@IGGYAZALEA,Thankyou for all the birthday wishes yesterday. 🧡 +06/04/2018,Musicians,@IGGYAZALEA,https://t.co/PGXTiFpRuo +06/04/2018,Musicians,@IGGYAZALEA,https://t.co/B4SVTA9GTU +05/20/2018,Musicians,@IGGYAZALEA,"@IggyAzaleaHQ1 oh yeah you cant do that, you gotta keep your eye on it the whole time. shit gets outta hand real fa… https://t.co/XJwtAX3nfP" +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 the timing thing is really the biggest hurdle with it. the brown sugar makes it volatile. +05/20/2018,Musicians,@IGGYAZALEA,I have memories from early childhood of my mother literally running for her life alongside the parade like a crazed… https://t.co/GsvsEJ45s7 +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 yup you did! bring it to boil on medium while you stir and then let it simmer for 4mins on low heat… https://t.co/2AJkslNPxW +05/20/2018,Musicians,@IGGYAZALEA,"If you felt overwhelmed watching your timeline talk about the royal wedding today, imagine how i felt witnessing my… https://t.co/umBeJMYHVO" +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 what are they ? +05/19/2018,Musicians,@IGGYAZALEA,https://t.co/xaGRTKuV7v +05/17/2018,Musicians,@IGGYAZALEA,but i say all this to say i met up and spoke to an old friend/creative person i work with last night and we spoke f… https://t.co/i0c6UI2q2P +05/17/2018,Musicians,@IGGYAZALEA,Sometimes i feel a little overwhelmed by how many little pieces i have to get sorted out before i can say music and… https://t.co/plOYYfw1vn +05/17/2018,Musicians,@IGGYAZALEA,"Nonchalant an i kill em +team captain of the villains +they don't wanna see me winning +and i don't wanna see you live bitch" +05/15/2018,Musicians,@IGGYAZALEA,"Yup, I’m gonna take twitters advice... just drink out of cups and chill." +05/15/2018,Musicians,@IGGYAZALEA,"I really think I hurt my hand, it’s been a week and I still can’t open a bottle or water with it. I hate going to t… https://t.co/gXf53wLxVx" +05/14/2018,Musicians,@IGGYAZALEA,How to break an addiction. Decide to live. +05/14/2018,Musicians,@IGGYAZALEA,RT @newsdistortion: @IGGYAZALEA f*** me https://t.co/WuWIGR8JJC +05/14/2018,Musicians,@IGGYAZALEA,@ricktrbl @lggysBae I literally am but okay.... +05/13/2018,Musicians,@IGGYAZALEA,"27. Is where it’s at. +Just... tell them you’re sunburnt 🤔 https://t.co/5W3b2Wzvc7" +05/13/2018,Musicians,@IGGYAZALEA,Ambition & Hyperfemininity +05/12/2018,Musicians,@IGGYAZALEA,"@youllneverknow Ahhh no, it’s not. It’s love. +I think it’s “delete it fat” “she made some points” “I don’t know h… https://t.co/JtJVW3292w" +05/12/2018,Musicians,@IGGYAZALEA,@SWEETENER_18 😂😂😂 too funny. 💜 +05/12/2018,Musicians,@IGGYAZALEA,If they called me at 5am in the rain I would put my slippers on and go to the studio- even if they got wet. https://t.co/hcFbuyMOXa +05/12/2018,Musicians,@IGGYAZALEA,Hey @Meghan_Trainor you looked beautiful yesterday 💜 +05/11/2018,Musicians,@IGGYAZALEA,"Whelp, just watched wild wild country on Netflix and i finally know what was up with my neighbors as a child. lol. random." +05/10/2018,Musicians,@IGGYAZALEA,Whilst also doing normal shit that feels natural so as not to become an Android. +05/10/2018,Musicians,@IGGYAZALEA,I’m just tryna live my private life as privateLY as possible. +05/09/2018,Musicians,@IGGYAZALEA,@HausOfIggz @thynewcIassic i tweeted it weeks ago. 🤣 you know i love to tweet and delete! +05/09/2018,Musicians,@IGGYAZALEA,"Do you ever see your friend online and youre like... +thats some really great advice, but i happen to know your per… https://t.co/uJnKJKg5q6" +05/07/2018,Musicians,@IGGYAZALEA,@hourgIassfigure I’m getting ready to go out but watching until I have to leave +05/07/2018,Musicians,@IGGYAZALEA,"Jasmine sanders is fucking doing IT people! I am getting my life! That fabric, the hair!" +05/07/2018,Musicians,@IGGYAZALEA,"Grey smoke bellowing back... +Are we on fire?" +05/06/2018,Musicians,@IGGYAZALEA,@outfagged A concept! +05/06/2018,Musicians,@IGGYAZALEA,@lustforlfie @britneyspears I was never not on good terms. The internet tried to make a beef that never existed and I truly mean that. +05/06/2018,Musicians,@IGGYAZALEA,RT @mxchxen: @IGGYAZALEA Me after fucking things up +05/06/2018,Musicians,@IGGYAZALEA,RT @levels_player: @IGGYAZALEA A scientist. What’s your favorite area to experiment sis +05/06/2018,Musicians,@IGGYAZALEA,I only make poor life choices as experiments. I swear. +05/05/2018,Musicians,@IGGYAZALEA,@lustforlfie @britneyspears Bitch can dream. I still Stan. +05/05/2018,Musicians,@IGGYAZALEA,"I’m going skating on Monday and I’ve already decided that yes, a 40 inch wig is entirely appropriate for the occasion." +05/05/2018,Musicians,@IGGYAZALEA,@CupcakKe_rapper @JDudleyRowe Thicka than a Strippa but if she clap it ima tip ha 🗽 +05/04/2018,Musicians,@IGGYAZALEA,"@itsBrandonLamar Yes, June 7. And yes, I’m a serial killer." +05/04/2018,Musicians,@IGGYAZALEA,Hmmmmm? Could be great. I like the energy. https://t.co/xqk8ivApvy +05/04/2018,Musicians,@IGGYAZALEA,@rachelpage_ She looks preppy & organized. https://t.co/yKyBuROQtN +05/04/2018,Musicians,@IGGYAZALEA,@rachelpage_ No but I see you have a dog & I don’t know if they’re already employed but one of my dogs needs an ass… https://t.co/tYLNAj8OY6 +05/04/2018,Musicians,@IGGYAZALEA,"It’s May, which means it’s almost June... which means it’s practically Halloween & Everyone needs to start planning… https://t.co/Vxx4yEdWsv" +05/04/2018,Musicians,@IGGYAZALEA,RT @Phoenix_Stone09: This era Iggy is coming for blood https://t.co/obhrEUyRmm +05/03/2018,Musicians,@IGGYAZALEA,RT @silizzzle: @IGGYAZALEA GANGANG +05/03/2018,Musicians,@IGGYAZALEA,"RT @Shazam: Beauty, brains and talent 👉 @IGGYAZALEA https://t.co/SUueIx6drp" +05/01/2018,Musicians,@IGGYAZALEA,I feel my energy really coming back these days. +05/01/2018,Musicians,@IGGYAZALEA,"no exaggeration, the only thing I love more than doing my own thing... is helping girls I believe in do theirs. I j… https://t.co/YrqNMQXaZV" +04/30/2018,Musicians,@IGGYAZALEA,In other news I’m in the mood for tacos. +04/30/2018,Musicians,@IGGYAZALEA,I’m not judging I’m just watching. +04/30/2018,Musicians,@IGGYAZALEA,@PettyJBlige 😩🙂 +04/30/2018,Musicians,@IGGYAZALEA,@PettyJBlige Girl that’s just called being a picky eater 😝 +04/30/2018,Musicians,@IGGYAZALEA,Iam an endless fountain of vagina metaphors and punchlines. +04/30/2018,Musicians,@IGGYAZALEA,"Let me feel myself, yeah daddy know im cocky." +04/29/2018,Musicians,@IGGYAZALEA,"reasons to believe +dont feel like reasons at all +love i lie in the dark +light me up when you call" +04/28/2018,Musicians,@IGGYAZALEA,"If you betray anothers trust & good faith in order for us to share a secret. +The only secret I’m actually burdened… https://t.co/tWWhBe3QPd" +04/28/2018,Musicians,@IGGYAZALEA,I cannot come to grips with the fact my finger nail is entirely gone. https://t.co/bCgw6V2XLz +04/28/2018,Musicians,@IGGYAZALEA,RT @jurai: @IGGYAZALEA bad feels +04/28/2018,Musicians,@IGGYAZALEA,When you stop texting each other goodnight it’s... +04/27/2018,Musicians,@IGGYAZALEA,60% of my thoughts are pure smut. +04/27/2018,Musicians,@IGGYAZALEA,"control is safe + +but + +love is not control + +Love is + +200mph on the freeway with the door open and no seatbelts." +04/27/2018,Musicians,@IGGYAZALEA,I’m still looking for you. +04/26/2018,Musicians,@IGGYAZALEA,RT @igorehaofficial: @IGGYAZALEA https://t.co/gRfLRIhImV +04/26/2018,Musicians,@IGGYAZALEA,Profound +04/26/2018,Musicians,@IGGYAZALEA,"I have so many introspective things I’d like to lament on when it comes to men... + +But since this is Twitter & it’… https://t.co/K25zeOzeaQ" +04/22/2018,Musicians,@IGGYAZALEA,RT @slaylikeiggy: @IGGYAZALEA you're literally an insane person im ctfu this is pure gold 😂💕 +04/22/2018,Musicians,@IGGYAZALEA,"Happiness is having something to look forward to. + +And that’s it." +04/21/2018,Musicians,@IGGYAZALEA,I live in seasons that refuse to change. +04/20/2018,Musicians,@IGGYAZALEA,I know it’s still April but I just booked my birthday vacation and I’m already OD excited. Haha. +04/20/2018,Musicians,@IGGYAZALEA,"@callieazalean @ositopapasito I love you but please, I’m not giving updates on social media about my project. Thanks 🙏" +04/20/2018,Musicians,@IGGYAZALEA,"@ItsVonTae Thanks man & I agree. +Never force your pen." +04/20/2018,Musicians,@IGGYAZALEA,"The reason we have polarizing personas making up larger artistic generations is to create balance. + +Everyone shoul… https://t.co/EhnXPibBP3" +04/20/2018,Musicians,@IGGYAZALEA,@killianwjackson 😂 https://t.co/TT8V2RjOnp +04/19/2018,Musicians,@IGGYAZALEA,"I said all this to say: + +If anyone needs a freelance writer to do a think piece on chicken nuggets - + +Im available." +04/19/2018,Musicians,@IGGYAZALEA,"RULE OF THUMB + +If youre speaking about it with friends at home, you MAY care. + +If youre talking about it on your s… https://t.co/e7Pj8V8djg" +04/19/2018,Musicians,@IGGYAZALEA,@Str8witGayTaste I believe in confirmation bias +04/19/2018,Musicians,@IGGYAZALEA,Time to make a mood board. +04/19/2018,Musicians,@IGGYAZALEA,My house keeper filmed it & made me make a wish on it. She seemed sure it was scientifically valid. https://t.co/R4UrhPudJs +04/19/2018,Musicians,@IGGYAZALEA,There was a humming bird in my house today. I’m going to have good luck. Can’t tell me shit all week! Lol. +04/19/2018,Musicians,@IGGYAZALEA,RT @SARATONlN: yes https://t.co/wJZp3cbZ8w +04/15/2018,Musicians,@IGGYAZALEA,Okay now tory 🙏🙂 https://t.co/hEG6OaFswl +04/15/2018,Musicians,@IGGYAZALEA,I don’t think I’ll ever see a better show then the one I just watched Beyonce perform tonight. Iam shaken to my bones. +04/12/2018,Musicians,@IGGYAZALEA,@thynewclassic Truuuuuueeee +04/12/2018,Musicians,@IGGYAZALEA,@soares_mateus00 @iggzrey @itsiggyiggzz @ElizeuGomez9 @FranciscoAzalea @pussypowerglory @jaygoodie_ Okay +04/12/2018,Musicians,@IGGYAZALEA,@iggzrey @itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ Yup +04/12/2018,Musicians,@IGGYAZALEA,@7teenmilli @itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ 28 +04/12/2018,Musicians,@IGGYAZALEA,@itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ https://t.co/p5melVerEd +04/12/2018,Musicians,@IGGYAZALEA,@itsiggyiggzz Lmao 😆 you crazy 14! +04/12/2018,Musicians,@IGGYAZALEA,@IggyPty @igorehaofficial @thenewwclassic @nicocarciochi Okay 👌 +04/12/2018,Musicians,@IGGYAZALEA,@soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ No I’ve been on a meal plan this week although they… https://t.co/CdAKVRdHE8 +04/12/2018,Musicians,@IGGYAZALEA,@igorehaofficial @thenewwclassic @nicocarciochi 31 +04/12/2018,Musicians,@IGGYAZALEA,@pussypowerglory @bangerzantii @jaygoodie_ Lmao +04/12/2018,Musicians,@IGGYAZALEA,@Riguistan @thenewwclassic @nicocarciochi 22 +04/12/2018,Musicians,@IGGYAZALEA,@thenewwclassic @nicocarciochi Hey 46! +04/12/2018,Musicians,@IGGYAZALEA,"@iggzrey @nicocarciochi Yes, it’s on iTunes ! Ha!" +04/12/2018,Musicians,@IGGYAZALEA,"@nicocarciochi No not yet, but I read the book so that has to count for something. +I don’t go to the movies much I… https://t.co/6fumnL26Hk" +04/12/2018,Musicians,@IGGYAZALEA,@azillions I love talking about my vagina and pizza on the Internet with everyone but you know what I mean... there’s levels. +04/12/2018,Musicians,@IGGYAZALEA,"@LotteLDN That’s true! Success is dealing with rejection, it’s part of it. I was more so referring to people ie. lo… https://t.co/B2YhBOzRk0" +04/12/2018,Musicians,@IGGYAZALEA,@LaKreme2LaKreme Totally!!!! Pride is crazy. +04/12/2018,Musicians,@IGGYAZALEA,"Rejection is such a funny emotion. +It’ll trick you into feeling sad you didn’t walk away with something you never wanted anyway." +04/09/2018,Musicians,@IGGYAZALEA,I wish I could keep you safe. +04/09/2018,Musicians,@IGGYAZALEA,"@SurvivingDevone Just because I cut my hair doesn’t mean I won’t still slay a wig etc etc. +this is just what I’m d… https://t.co/DZQU6X0e2Z" +04/08/2018,Musicians,@IGGYAZALEA,"@mxchxen @SummerSurvival @iggyoutsold If you can’t laugh at yourself then life will be long and hard. I promise you, it’s all love." +04/08/2018,Musicians,@IGGYAZALEA,@SummerSurvival @iggyoutsold Why do y’all care so much? I think it’s extremely funny or I wouldn’t have made the jo… https://t.co/nVRbdKoHOK +04/07/2018,Musicians,@IGGYAZALEA,"RT @CaMidStateFair: JUST ANNOUNCED: Demi Lovato, with special guest Iggy Azalea, to perform at the #MidStateFair | JULY 22 | Tickets on sal…" +04/05/2018,Musicians,@IGGYAZALEA,@MoBounceDD @biblical_dildo they have to come to me naturally i cant force them. +04/05/2018,Musicians,@IGGYAZALEA,@biblical_dildo i really think you should its literally the best thing ive thought of in days. +04/05/2018,Musicians,@IGGYAZALEA,@digitalfon biblical_dildo +04/04/2018,Musicians,@IGGYAZALEA,"@DropNM4Nicki @thynewclassic Anddddd that’s why I fuck with you. +If you like something listen, if ya don’t? All good! +It’s logical." +04/04/2018,Musicians,@IGGYAZALEA,@nphucas This is exactly my feelings every time I log on and see “what you need to do is......” like can we please.… https://t.co/5Zd28louQt +04/04/2018,Musicians,@IGGYAZALEA,@nphucas Lmao well I love all 60 of you; I just want to come online and have fun conversations with you guys. I don… https://t.co/GcBLpH0WhR +04/03/2018,Musicians,@IGGYAZALEA,"Im on a meal plan and they really cut up a grilled chicken breast and named it ""chicken tenders"" i - + +im not cut out for this life!" +04/03/2018,Musicians,@IGGYAZALEA,@stainediggy @thynewclassic Iam so sick of these pap drones. its out of control. +04/02/2018,Musicians,@IGGYAZALEA,"@IggyPty @wdangst Yes, but the topic at hand isnt ""do you agree or disagree with non-traditional relationship dynam… https://t.co/msJjBZmbxF" +04/02/2018,Musicians,@IGGYAZALEA,@wdangst Im talking about love and sexuality in 2018; not my ex boyfriends. +04/02/2018,Musicians,@IGGYAZALEA,"@Budah96 Totally agree, i just think its funny so see so many conversations about gender and sexuality but not as m… https://t.co/BLeum9bjIf" +04/02/2018,Musicians,@IGGYAZALEA,@Azaleans_Israel I think thats an unfair thing to say. For me; its not something im personally open to in my relati… https://t.co/iHwZlAuPAI +04/02/2018,Musicians,@IGGYAZALEA,@SurvivingDevone no i order candy bars on there! +04/02/2018,Musicians,@IGGYAZALEA,@SurvivingDevone nothing +04/02/2018,Musicians,@IGGYAZALEA,"@IGGYAZMALEA yes, and you wont." +04/01/2018,Musicians,@IGGYAZALEA,"emotional co-dependancy is literally the scariest thing of all time. +Aliens could beam me into their space ship and id be less afraid." +03/31/2018,Musicians,@IGGYAZALEA,@CupcakKe_rapper @MiamiHooookah let your clit do the talking for you sis. +03/31/2018,Musicians,@IGGYAZALEA,@lcslanzzani these are not song lyrics... you're not in any danger of lack of surprise. 🙂 +03/31/2018,Musicians,@IGGYAZALEA,SAME. HELP?! https://t.co/TIe1ejEVXe +03/31/2018,Musicians,@IGGYAZALEA,RT @beccajj: @IGGYAZALEA https://t.co/TWqjWqKvid +03/31/2018,Musicians,@IGGYAZALEA,"I have legitimately drunk at least 8 bottles of water today. +Iam a fish." +03/30/2018,Musicians,@IGGYAZALEA,@IggysSaviors @AzaleaKingdom @ddlovato @KeshaRose @QuavoStuntin to clarify the qauestion asked was 'who has persona… https://t.co/yKC0a10lxt +03/30/2018,Musicians,@IGGYAZALEA,"@jasonlipshutz I really appreciate that you were fair to me, you gave me a voice and a chance to show i'm just human. Thanks Jason." +03/30/2018,Musicians,@IGGYAZALEA,Hey @MileyCyrus just wanted to say that im in completely love with your pink hair in these easter pics!!!! 😍 +03/30/2018,Musicians,@IGGYAZALEA,@ussefm @vulture IM GREAT ! 😊 +03/30/2018,Musicians,@IGGYAZALEA,"@vulture Its was because i suffered from depression, and im only writing this to you because you may be unaware but… https://t.co/EF4Oi0Q9U5" +03/29/2018,Musicians,@IGGYAZALEA,"big phantom grill, cook the streets like hibachi" +03/23/2018,Musicians,@IGGYAZALEA,NYC BTS Part 2. https://t.co/p9t0PcWr41 +03/23/2018,Musicians,@IGGYAZALEA,NYC BTS Part 1. https://t.co/LvFOhUthwM +03/23/2018,Musicians,@IGGYAZALEA,Im sorry Ale. But this is going public. https://t.co/I5m4ByD03G +03/23/2018,Musicians,@IGGYAZALEA,Probably a little too soon. https://t.co/WA3eBej98b +07/02/2018,Musicians,@TinieTempah,Value your time like it’s your life because your time is literally your life. +06/26/2018,Musicians,@TinieTempah,Nigeria vs Argentina tonight woooii +06/26/2018,Musicians,@TinieTempah,RT @Shaneduncan_: This is Peckham is out now / https://t.co/MnPG3KmebK https://t.co/DhC7Ivu1XB +06/25/2018,Musicians,@TinieTempah,Who’s Josh and how did he get into my wardrobe?? 🤔😂 +06/18/2018,Musicians,@TinieTempah,YES ENGLAND!!!!!!!!!!!!!! +06/13/2018,Musicians,@TinieTempah,TONIGHT! ⚡️ @ushuaiaibiza https://t.co/ILilxshmiW +06/13/2018,Musicians,@TinieTempah,Yesterday at the What We Wear ‘HAT TRICK’ Spring/Summer 19 Runway show in London. Love to everyone who came out to… https://t.co/ReqT1yWraG +06/12/2018,Musicians,@TinieTempah,What We Wear Spring/Summer 19 HAT-TRICK ⚽️ Many thanks to @Dailypaper_ & @FillingPieces on the collab runway music… https://t.co/xK5k5baYDW +06/10/2018,Musicians,@TinieTempah,LOND0N FASHI0N WEEK!!! @whatwewear__ M0NDAY 5PM!!!!!!! +06/10/2018,Musicians,@TinieTempah,Money heist on Netflix has got me moving like a squatter that don’t wanna leave the house. +06/06/2018,Musicians,@TinieTempah,Praise the Lord mama raised me right. Disturbing Ibiza opening party tonight! +05/28/2018,Musicians,@TinieTempah,Big up that guy from Mali that did the impossible in Paris the other day. I thought I was fit boy. +05/07/2018,Musicians,@TinieTempah,"RT @JmeBBK: CHILDISH GAMBINO + +https://t.co/Hzq29apjJS" +05/04/2018,Musicians,@TinieTempah,Minds clearer than ever. Heart’s purer than ever. +04/28/2018,Musicians,@TinieTempah,I miss @SIRSPYRO https://t.co/cDSJgEbBSc +04/28/2018,Musicians,@TinieTempah,"RT @HardyCaprio: Hardy Caprio - Naij +https://t.co/kV9efpsy8L + +warming up https://t.co/Mkb4xLb732" +04/24/2018,Musicians,@TinieTempah,Maybach SUV 😩🤤 +04/19/2018,Musicians,@TinieTempah,This is too sick bro @Dynamomagician https://t.co/MTSTEAAKcy +04/19/2018,Musicians,@TinieTempah,Watched Caroline or change at the Hampstead Theatre last night. Everyone needs to go watch it! +04/06/2018,Musicians,@TinieTempah,https://t.co/pq1otSPLWF https://t.co/KlfxMZgu2f +04/05/2018,Musicians,@TinieTempah,RT @BritishGQ: An exclusive first look at @tinietempah new @whatwewear__ collection. https://t.co/FQJTZxfieT +04/05/2018,Musicians,@TinieTempah,"48 people murdered in London already in 2018. My heart goes out to all their families and to the youts, don’t waste… https://t.co/jn9OfSxa1x" +03/27/2018,Musicians,@TinieTempah,"Shudda been on my way to Hong Kong for @ArtBasel right now, I know it’s gonna be so sick" +03/26/2018,Musicians,@TinieTempah,🔥🔥🔥🔥🔥 https://t.co/MzkBe3aKTA +03/17/2018,Musicians,@TinieTempah,Happy St Patrick’s Day. 🙏🏾🍀🇳🇬🇮🇪 +03/16/2018,Musicians,@TinieTempah,"RT @yxngbane: Out now!!! I need every1 to go crazy wit it! #Vroom we go again!! + +https://t.co/AjnyHiEEmp + +❤💎💫 https://t.co/Rb1c9dGgeg" +03/16/2018,Musicians,@TinieTempah,RT @wizkidayo: Smash on smash on smash!🔥🔥 +03/15/2018,Musicians,@TinieTempah,DXB!!!! 🇦🇪 +03/15/2018,Musicians,@TinieTempah,RT @Not3sofficial: NEW MUSIC VIDEO ALERT 🚨 Out In A Piece... Myself ft @MaleekBerry- SIT BACK DOWN 🤙🏾 More Tunes Out Soon https://t.co/NUxN… +03/14/2018,Musicians,@TinieTempah,RT @MusicWeek: 'It's like a brand new day': Tinie Tempah's hopes for the next generation of UK rap stars https://t.co/KvXmTQckO8 [📷 @paul_h… +03/12/2018,Musicians,@TinieTempah,In the flesh. https://t.co/ihzncPFCoO +03/12/2018,Musicians,@TinieTempah,God has blessed me and my family abundantly. All praise to the most high +03/05/2018,Musicians,@TinieTempah,RT @1crazysingh: Last week we were honoured to be asked by @TinieTempah to support the ww.wear pop up store at… https://t.co/yPk0jRjk0s +03/05/2018,Musicians,@TinieTempah,RT @Not3sofficial: The internet misleads the blind and the sheep 🐑 +03/02/2018,Musicians,@TinieTempah,RT @Drilloski_hs: Loski - cool kid Out now 🌪🌪 https://t.co/PGLuh8k3VX https://t.co/NLxugKc6cs +03/01/2018,Musicians,@TinieTempah,A2 sold out KOKO tonight yo!!! @A2Artist 👏🏾💪🏾 +03/01/2018,Musicians,@TinieTempah,"RT @BritishGQ: Model, activist and businesswoman @NaomiCampbell and breakthrough grime artist @Skepta talk race, sex, love and black power…" +03/01/2018,Musicians,@TinieTempah,"RT @Santandave1: 465,000 in a day. Thank you all for my most viewed video in 24 hours." +02/27/2018,Musicians,@TinieTempah,RT @Santandave1: Dave- Hangman Out Now https://t.co/MYtEvbVE7M +02/26/2018,Musicians,@TinieTempah,Save the date. 28/02/18 @whatwewear__ https://t.co/KyF4bc4D9l +02/22/2018,Musicians,@TinieTempah,"RT @HardyCaprio: First release of the year... + +Hardy Caprio - Rapper + +cc: @CallMeTheKidd @YomsTV + +https://t.co/7ul1AVf1QW https://t.co/L8…" +02/22/2018,Musicians,@TinieTempah,"RT @Not3sofficial: April 17th is My Birthday and The London date to my tour in KOKO, Camden. For the sake of the pain my mum went through o…" +02/21/2018,Musicians,@TinieTempah,@TheNotoriousMMA @mcgregorsfast 🤣🤣🤣 +02/21/2018,Musicians,@TinieTempah,RiRis 30!! Time flies when you’re enjoying life.. birthday blessings! @rihanna +02/20/2018,Musicians,@TinieTempah,"Growing up I didn’t see many films where the protagonists were the same skin tone as me especially, a super hero mo… https://t.co/K09NdUK6KG" +02/17/2018,Musicians,@TinieTempah,Manchester tonight! Eubank Jr Vs Groves 💥 +02/08/2018,Musicians,@TinieTempah,Shed your skin +02/04/2018,Musicians,@TinieTempah,Spoke too soon. +02/03/2018,Musicians,@TinieTempah,Emirates is levels man. Some of these other airlines need to step their game up..quickly! +02/02/2018,Musicians,@TinieTempah,Robo ske ske robo ske ske +02/02/2018,Musicians,@TinieTempah,🏆 https://t.co/O5e35033xV +02/02/2018,Musicians,@TinieTempah,RT @BigTobzsf: #StillWinning out right now ! https://t.co/Fzmoq6i0wj https://t.co/vxvLbcMwcL +02/02/2018,Musicians,@TinieTempah,Dubai we back!!!! Disturbing Dubai tonight!!! @whitedubaiclub https://t.co/3YeMtCtriA +01/28/2018,Musicians,@TinieTempah,You shudda said Hi 👋🏾 🤣 https://t.co/ziKn4Sz4b9 +01/26/2018,Musicians,@TinieTempah,RT @Not3sofficial: I JUST GOT THE CALL......SOLD OUT TOUR IN 15 MINUTES 😩 +01/23/2018,Musicians,@TinieTempah,RT @Not3sofficial: Proud to announce my second headline UK tour!! Tickets on sale from Friday at 10am 💥https://t.co/76Fy3Pz3tT 🤘🏾3️⃣ https:… +01/23/2018,Musicians,@TinieTempah,I need to start watching stranger things them little kids are everywhere! +01/22/2018,Musicians,@TinieTempah,You like that song by Yxng Bane & Kojo so I wrote a tune for you.. +01/20/2018,Musicians,@TinieTempah,Paris. +01/15/2018,Musicians,@TinieTempah,Wet January. +01/13/2018,Musicians,@TinieTempah,.@dolcegabbana Live Stream Now. +01/08/2018,Musicians,@TinieTempah,💛 https://t.co/w7dxv3kJp5 +01/08/2018,Musicians,@TinieTempah,"RT @whatwewear__: LOOK 1, 2, 3, 4 #AW18 #REALWORLD #WHATWEWEAR https://t.co/6H3RqlDkJQ" +01/04/2018,Musicians,@TinieTempah,Casting! @whatwewear__ +01/01/2018,Musicians,@TinieTempah,Back to the future! +12/31/2017,Musicians,@TinieTempah,Stepping into 2018 like.. https://t.co/AT5B5X9Sld +12/31/2017,Musicians,@TinieTempah,"RT @Not3sofficial: Not3s X Mabel - My Lover Remix Video Out Now 3️⃣💯💪🏾 +https://t.co/wL0XXh1YNz" +12/27/2017,Musicians,@TinieTempah,"RT @MayorofLondon: As a proud feminist at City Hall, I’m committed to taking real action to tackle gender inequality in London in 2018 - an…" +12/26/2017,Musicians,@TinieTempah,Happy Boxing Day from Barbados! X +12/25/2017,Musicians,@TinieTempah,Merry Christmas to all the fans. R.I.P to my dear friend Daniele. +12/21/2017,Musicians,@TinieTempah,Time flies on instagram boy. +12/17/2017,Musicians,@TinieTempah,This Bangs! ❄️❄️❄️ https://t.co/XKCVvFotLc @Official_Romzy +12/15/2017,Musicians,@TinieTempah,"RT @SpotifyUK: Forever is the new track by @sigmahq, feat. @QuavoStuntin, @TinieTempah, @yxngbane, & @SebastianKole. +Listen now. +https://t.…" +12/15/2017,Musicians,@TinieTempah,.@fredo @Not3sofficial ❄️❄️❄️❄️ https://t.co/nLtvFhayq1 +12/13/2017,Musicians,@TinieTempah,Ed Sheeran has clocked the game. Eminem and B in the same month. Madness. ✅✅✅ +12/13/2017,Musicians,@TinieTempah,Put God first. +12/13/2017,Musicians,@TinieTempah,RT @complex_uk: Not3s (@Not3sofficial) is up next: https://t.co/o7oT63SiY1 https://t.co/EjmJxhGxo5 +12/11/2017,Musicians,@TinieTempah,I’m hungry. +12/10/2017,Musicians,@TinieTempah,Ice cream in the snow ❄️❄️❄️ +12/08/2017,Musicians,@TinieTempah,RT @BritishGQ: Take style cues from @TinieTempah and don a shearling coat to stay warm and dapper at your black tie Christmas events. https… +12/07/2017,Musicians,@TinieTempah,"RT @donaeo: You can watch my new video “My Team” now +Click Here : https://t.co/DaxE2XE2D1 https://t.co/a9VtdJjSQ5" +12/07/2017,Musicians,@TinieTempah,Available Everywhere @JBLaudio ⚡️ https://t.co/gxylnytnSo +12/07/2017,Musicians,@TinieTempah,https://t.co/nw7GmLYIvj 🎁 +12/05/2017,Musicians,@TinieTempah,Great day raising money @ICAPCharityDay supporting @centrepointuk and homeless young people in the UK 🇬🇧 https://t.co/7af9F99hWR +12/05/2017,Musicians,@TinieTempah,"RT @Burberry: .@Stormzy1 dressed in a @Burberry tuxedo with @TinieTempah in @Burberry Tartan trousers, outerwear and Topstitched Derby shoe…" +12/03/2017,Musicians,@TinieTempah,Disturbing Manchester. 🚨 2/12/17 @Not3sofficial @DanielSturridge @Gfrsh @BigTobzsf https://t.co/wwTlt7aXCw +11/29/2017,Musicians,@TinieTempah,Good luck to everyone at the @MOBOAwards tonight! +11/28/2017,Musicians,@TinieTempah,Maybach 😍😍😍 @MercedesBenzUK +11/28/2017,Musicians,@TinieTempah,RT @DisturbingLDN: Big congratulations to @yxngbane for being listed on the official @bbcmusic #Soundof2018 longlist. This is only the star… +11/28/2017,Musicians,@TinieTempah,RT @JmeBBK: Stunting on your headteacher. +11/27/2017,Musicians,@TinieTempah,Try to live the kind of life someone might wanna make a movie about one day. Make your mark. +11/25/2017,Musicians,@TinieTempah,🙌🏾🙌🏾🙌🏾 https://t.co/ipPhWxUMTT +11/24/2017,Musicians,@TinieTempah,Happy Thanksgiving American family. +11/23/2017,Musicians,@TinieTempah,New drop tomorrow. https://t.co/nw7GmLYIvj @whatwewear__ https://t.co/NKB34q6q6L +11/23/2017,Musicians,@TinieTempah,👏🏾🙏🏾❤️ https://t.co/hNE5nxzhWA +11/21/2017,Musicians,@TinieTempah,RT @Fahim__k: No Drama is a pure banger 💪@iAmShakka @Not3sofficial @TinieTempah +11/20/2017,Musicians,@TinieTempah,Congrats @NiallOfficial on winning an American Music Award. 💪🏾🇬🇧 +11/19/2017,Musicians,@TinieTempah,"RT @FuseODG: Boa Me Official Video OUT NOW + +https://t.co/INyVYvR5T2 + +Watch, Enjoy and Share 🙏 + +@edsheeran +@mugeezxmugeez +@killbeatz + +#Ne…" +11/17/2017,Musicians,@TinieTempah,Let’s go my G! 👑🙏🏾💪🏾 @Not3sofficial 📝📝📝 #TAKENOT3S https://t.co/2bB6Tv4EcO +11/14/2017,Musicians,@TinieTempah,New Joint from my bro. @Reblah_Artist https://t.co/Jxx47URbeB +11/14/2017,Musicians,@TinieTempah,"RT @TheBugzyMalone: Man like Big Shaq in the 0161 🔥 +Watch full video >>> https://t.co/54PYN2nJ3Q @MichaelDapaah https://t.co/po4JhSn9S3" +11/13/2017,Musicians,@TinieTempah,I got four hours to kill in Trindad and Tobago. Where the roti spots at? +11/13/2017,Musicians,@TinieTempah,Santiago has been vibey. +11/12/2017,Musicians,@TinieTempah,RT @AlexAdeosun: Always good to have little victories that let you know you’re making progress! Catch myself alongside @Leomie_Anderson and… +11/12/2017,Musicians,@TinieTempah,💥 https://t.co/MvVk1z8g9j +11/11/2017,Musicians,@TinieTempah,The other night at @IkoyiLondon 💉❤️ https://t.co/r8IZlIHUll +11/10/2017,Musicians,@TinieTempah,RT @officialAvelino: Proud 2 present the 'No Bullshit' the playlist. I put my heart & soul into this shit & it made gr8ness. 1 Love https:/… +11/10/2017,Musicians,@TinieTempah,"RT @yxngbane: HBK D.TOUR|@yxngbane x @dopechef collab tee dropping Monday 13th November 8PM on https://t.co/hxXmlo88J7 + +In Distressed Or Re…" +11/05/2017,Musicians,@TinieTempah,My lil bro just hit another MILLION views with 'My Lover' @Not3sofficial 👏🏾 https://t.co/vap4uokcXa +11/03/2017,Musicians,@TinieTempah,RT @Santandave1: Super happy to say Game Over is finally out. Listen to it here. https://t.co/jPTk11wnkq +11/03/2017,Musicians,@TinieTempah,You've gotta give it to the guy. Hats off to you man. Definitely one for the book collection. https://t.co/WIvt8kcUxU +11/02/2017,Musicians,@TinieTempah,"'If I hit it one time Ima pipe her, if it hit it two times then I like her..'" +10/31/2017,Musicians,@TinieTempah,Working towards that Billion. https://t.co/2OGPTKK29J +10/31/2017,Musicians,@TinieTempah,Man like Oluwatobi! @BigTobzsf https://t.co/CLbDx9kC9F +10/27/2017,Musicians,@TinieTempah,It wasn't me. https://t.co/ZoY0Jn3xYT +10/27/2017,Musicians,@TinieTempah,"RT @YungenPlayDirty: *NEW VIDEO* + +YUNGEN FEAT MR EAZI - ALL NIGHT 🌚🌚 + +https://t.co/nMQF9kQaXI + +@mreazi + +RT!! + +AVAILABLE TO BUY AND STREAM…" +10/25/2017,Musicians,@TinieTempah,"RT @marshmellomusic: Never be afraid to create what you want to create. What one person may dislike, ten others may love ❤" +10/24/2017,Musicians,@TinieTempah,That's my cousin on the Phone. Wo Wo Wo +10/24/2017,Musicians,@TinieTempah,😂😂 https://t.co/oAnPxf21La +10/24/2017,Musicians,@TinieTempah,I'm so proud of this guy. 4 years on. @je1bc 💪🏾🙏🏾 https://t.co/MYkZ5sjKM7 +10/24/2017,Musicians,@TinieTempah,💪🏾💪🏾💪🏾 https://t.co/wBancr7Asd +10/23/2017,Musicians,@TinieTempah,Pop immigrants. +10/22/2017,Musicians,@TinieTempah,Wrist cudda got froze. ❄️❄️❄️ +10/22/2017,Musicians,@TinieTempah,Deeply profound. She might be onto something. 😂😅 https://t.co/hPTNpJIIGm +10/22/2017,Musicians,@TinieTempah,Celebrate your happiness & achievements with your ppl and enjoy your success in peace that's what Its about yo. +10/22/2017,Musicians,@TinieTempah,"RT @yxngbane: #FROZE. OUT TONIGHT 6PM +LETS GO CRAZY!!! +🇬🇧💎🇬🇧!! +VIA @linkuptv https://t.co/LPvOo3uHsg" +10/19/2017,Musicians,@TinieTempah,"RT @GRMDAILY: 💪 @Callmecadet takes names in ""RMF"" freestyle + +➡️ https://t.co/cVejtSPhc1 https://t.co/sKcpS2gaAE" +10/19/2017,Musicians,@TinieTempah,At lot of institutions teach ppl in their workforce to be assholes or to feel entitled because of a position. I'm doing things so different +10/19/2017,Musicians,@TinieTempah,Voting for the whole gang at the @MOBOAwards this year. Let's bring home some trophies 💪🏾🏆 +10/13/2017,Musicians,@TinieTempah,Amsterdam with the gang. +10/13/2017,Musicians,@TinieTempah,🏌🏾🏌🏾🏌🏾 https://t.co/sL3UDvarus +10/13/2017,Musicians,@TinieTempah,🙏🏾 https://t.co/YQT2BK9ZlP +10/11/2017,Musicians,@TinieTempah,Mental health is real. +10/07/2017,Musicians,@TinieTempah,"RT @ajtracey: HAPPY SECURE THE FUCKING BAG DAY! 🎒 + +https://t.co/uPFcRVOn0M https://t.co/0dkR4b0Xo9" +10/06/2017,Musicians,@TinieTempah,At @OneYoungWorld in Bogota. Tune in here from 10pm BST for my keynote and Q&A. https://t.co/LVb9ISzziJ +10/06/2017,Musicians,@TinieTempah,Oh shit!!! #BESTIE is officially in the top 10 congratulations brothers @YungenPlayDirty @yxngbane here's to many m… https://t.co/H12P20QpOt +10/05/2017,Musicians,@TinieTempah,RT @DisturbingEvent: Manchester… We’ll be bringing the🔥to @VicWarehouse on Sat 2nd Dec! Tickets here 👉https://t.co/4V3dGxyRSw https://t.co/… +10/04/2017,Musicians,@TinieTempah,"Just touched down in Bogota, Colombia to talk to some of our generations future leaders. @OneYoungWorld #YOUTH2017 🇨🇴" +10/03/2017,Musicians,@TinieTempah,Thanks. 👍🏾 https://t.co/SEmyFC7A8t +10/03/2017,Musicians,@TinieTempah,@ClareParslow That's my good deed done for the week. What was the question? +10/03/2017,Musicians,@TinieTempah,"RT @Y2SHAF: ""Granddad"" is a funny way of spelling terrorist https://t.co/RX72IA4LNR" +10/03/2017,Musicians,@TinieTempah,RT @DGGroupUK: 8 weeks to go 4 the party of all time & final race of season.Headlining Sat @TinieTempah @djcharlesy & Sun @AleshaOfficial @… +10/02/2017,Musicians,@TinieTempah,RT @DisturbingLDN: 🔊Seven years of Disc-Overy. What was your favourite track from @TinieTempah's debut album? https://t.co/KN7PEVC5Rl +10/02/2017,Musicians,@TinieTempah,I hear that. 😌 https://t.co/btVpUaCwsS +10/02/2017,Musicians,@TinieTempah,Damn. What is this world coming to? Prayers go out to anyone affected by the shootings in Las Vegas. +10/02/2017,Musicians,@TinieTempah,The insane help keep the sane sane. +10/01/2017,Musicians,@TinieTempah,Free up all my aunties and uncles. +10/01/2017,Musicians,@TinieTempah,Nigerian Eagle. 🦅🇳🇬 Happy Independence Day to all my people dem. +09/30/2017,Musicians,@TinieTempah,From people who aren't genuine yes. https://t.co/KR55bxcCR2 +09/30/2017,Musicians,@TinieTempah,"I can't stop I'm a busy man, holding fire for hella man." +09/29/2017,Musicians,@TinieTempah,"RT @Yungfumelitm: "" Yung Fume Alot On My Back "" 😰 + +OUT NOWWWWWW ................. + +@linkuptv - https://t.co/EvNpYCJWCz. https://t.co/m8KaYj…" +09/27/2017,Musicians,@TinieTempah,Vote for me to win best Video at this years @GRMDAILY awards for my 'Lightwork' video if you feel like it. Thanks https://t.co/8RuxzTNCx7 +09/27/2017,Musicians,@TinieTempah,RT @thebobpalmer: @ShortList I talked to @TinieTempah about his favourite trainers of the last ten years https://t.co/mCQcKJnkY1 +09/26/2017,Musicians,@TinieTempah,RT @MichaelDapaah: *ATTENTION* Mans Not Hot -is officially OUT ! Click this link 👉🏾: https://t.co/WnqTAZo1ij Thank you my G's in advance #M… +09/26/2017,Musicians,@TinieTempah,RT @robynxcole: @TinieTempah @whatwewear__ 😎 #whatwewear https://t.co/mDaVfzd0xr +09/26/2017,Musicians,@TinieTempah,".@whatwewear__. For a chance to WIN a pair of the new socks in black, follow the page and tweet me a screenshot wit… https://t.co/d0DdTqzhGf" +09/26/2017,Musicians,@TinieTempah,. @VanessaKingori now I'm gonna get onto twitter about making sure they give you that blue tick! +09/26/2017,Musicians,@TinieTempah,Superstar Status. 👑 Congratulations @VanessaKingori @BritishVogue https://t.co/upEdFVXWJX +09/25/2017,Musicians,@TinieTempah,RT @je1bc: A year ago I emailed the CEO of @NandosUK about connecting with more young people! Today we launched a project at the HQ! So tha… +09/25/2017,Musicians,@TinieTempah,.@kidekomusic X Tinie Tempah X @iambeckyg… #DUMDUM. Out NOW. Check it out here. https://t.co/0QjRTRQir2 https://t.co/XoVm07Tkbp +09/25/2017,Musicians,@TinieTempah,There can never be another me.. just like there can never be another you. +09/22/2017,Musicians,@TinieTempah,My first Friday off in a while. Feels weird. #IbizaBlues +09/22/2017,Musicians,@TinieTempah,Big love to @Scott_Mills for dropping #DUMDUM. @kidekomusic @iambeckg @BBCR1 +09/21/2017,Musicians,@TinieTempah,RT @DisturbingEvent: We've made some amazing memories this summer… https://t.co/7Vacl23emw +09/21/2017,Musicians,@TinieTempah,#FR32 🎈 +09/20/2017,Musicians,@TinieTempah,RT @wizkidayo: Ft @1future https://t.co/Rw9tEDqM1i +09/20/2017,Musicians,@TinieTempah,"#DisturbingIbiza 2017. 15 shows. 70 artists. 50,000 people. Same again next year? https://t.co/ZnjICqR4AQ" +09/19/2017,Musicians,@TinieTempah,RT @kidekomusic: Pre-save my new single w/ @TinieTempah and @iambeckyg on @Spotify! Might get yourself 2 tix to @WHP_Mcr 😉 https://t.co/Seq… +09/19/2017,Musicians,@TinieTempah,@MisguidedMinx You sure can. +09/19/2017,Musicians,@TinieTempah,Anyone can be anything they want in this world...especially on Instagram. +09/18/2017,Musicians,@TinieTempah,.@kidekomusic X Tinie Tempah X @iambeckyg… #DUMDUM. Out on Friday. https://t.co/HBoUajdVoN +09/15/2017,Musicians,@TinieTempah,#DisturbingIbiza https://t.co/yC57l6Je8u +09/15/2017,Musicians,@TinieTempah,One last time... Times for tonight. #DisturbingIbiza. Who are you most excited to see? https://t.co/9Q2ZmXiXIA +09/15/2017,Musicians,@TinieTempah,Follow me to #DisturbingIbiza… https://t.co/zpaKFUCNab +09/13/2017,Musicians,@TinieTempah,RT @DisturbingEvent: THIS is how we're lining up for our FINAL #DisturbingIbiza this Friday... IT's MUAD 🔥👇 https://t.co/X23pEBC7qb +09/13/2017,Musicians,@TinieTempah,"RT @TheBugzyMalone: Bugzy Malone - We Don't play (Official Video) +https://t.co/5h4g9nlxaB 🎞" +09/13/2017,Musicians,@TinieTempah,"RT @realmostack: Not3s x MoStack - Celebration. + +VIDEO OUT NOW ON GRM DAILY. https://t.co/TRgSvMWE7O" +09/12/2017,Musicians,@TinieTempah,"RT @DisturbingEvent: When it's 5am in Ibiza and your mate says 'let's head back' ! "" +@TinieTempah https://t.co/vXccW7oF1C" +09/11/2017,Musicians,@TinieTempah,RT @LethalBizzle: New Dench Fragrance advert. RT for a chance to win a signed bottle 😆💥🌹👊🏾 https://t.co/I6zkwiCLeI +09/10/2017,Musicians,@TinieTempah,Narcos S3 +09/09/2017,Musicians,@TinieTempah,Penultimate night #DisturbingIbiza Happy birthday @djcharlesy. One of my closest friends for the last 9 years. https://t.co/5Vhkdz5HvL +09/09/2017,Musicians,@TinieTempah,24hrs +09/09/2017,Musicians,@TinieTempah,RT @joel_duncan89: Last night was a movie @TinieTempah @Kwame_Augustine @DrewMula #disturbingIbiza https://t.co/DTa8Isxfxq +09/08/2017,Musicians,@TinieTempah,RT @DisturbingEvent: 💥💥 @TinieTempah shutting down Ushuaia #DisturbingIbiza💥💥 ... Who's joining us next week at our last #DisturbingIbiza e… +09/08/2017,Musicians,@TinieTempah,Here are the set times for the Penultimate #DisturbingIbiza today. Who are you excited to see the most. Vote with t… https://t.co/S8eOh7KRgY +09/08/2017,Musicians,@TinieTempah,Big love to everyone who's bought YOUTH on vinyl. Still chance to win one by following my @Spotify playlist here.… https://t.co/5OkXAu9lqM +09/07/2017,Musicians,@TinieTempah,"RT @OneAcen: U might be the one I been 👀 for! + +#Verified ✔️🦋 +prod. by me & @CallMeTheKidd +https://t.co/fbcMcXbAgA + +Gang pleaseee RT & enjo…" +09/06/2017,Musicians,@TinieTempah,RT @MOBOAwards: So much excellence in one pic 🙌🏾🙌🏾🙌🏾 https://t.co/C5WnH3JpwW +09/06/2017,Musicians,@TinieTempah,RT @cnbcipr: Don't forget to tune into #Trailblazers tonight on @CNBCi at 10PM BST. @TaniaBryer is in #London with @TinieTempah https://t.c… +09/06/2017,Musicians,@TinieTempah,RT @mrdavidhaye: Always good catching up with my brother @TinieTempah 😎👌🏾 https://t.co/VnsnDMFVl3 +09/06/2017,Musicians,@TinieTempah,https://t.co/pd2RKOWxq0 👔 https://t.co/JT48RcakBO +09/05/2017,Musicians,@TinieTempah,RT @DisturbingEvent: Your girl watching our ting 😏 #DisturbingIbiza WEEK 14 line-up... https://t.co/0RCrnETLtY +09/05/2017,Musicians,@TinieTempah,Join me and @TaniaBryer on Wednesday night on @CNBCi's. Trailblazers. Tune into Sky 505 from 10pm. https://t.co/c265SlqP3e +09/04/2017,Musicians,@TinieTempah,RT @cnbcipr: Don't miss a very special episode of #Trailblazers this Wednesday at 10PM BST on @CNBCi... @TaniaBryer meets music legend @Tin… +09/04/2017,Musicians,@TinieTempah,UnFazed +09/04/2017,Musicians,@TinieTempah,Gibraltar was sick @MTVUK 🌪🌪 https://t.co/rDVktndlEf +09/04/2017,Musicians,@TinieTempah,"RT @fusionfest: Music, events, fashion and vehicles - is there anything @TinieTempah can't do?! See what he had to say in his interview wit…" +09/04/2017,Musicians,@TinieTempah,RT @LizzieBriggerz: I've waited over ten years to see @TinieTempah live and he did not disappoint 🔥😍🔥#bestofgib +07/02/2018,Musicians,@chrisbrown,DALLAS TONIGHT!!!#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sW8A1Sb1yL +07/01/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUXGr1 https://t.co/jYzFm8Sq6G +06/29/2018,Musicians,@chrisbrown,AUSTIN!!! WE HERE! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/s60hp1xrK1 +06/29/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/xTbRJ14G8t +06/29/2018,Musicians,@chrisbrown,"Woodlands, TX TONIGHT! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/tAdZQbfppb" +06/28/2018,Musicians,@chrisbrown,When GOD knows what he’s doing!❤️ IM SO IN LOVE WITH THIS LITTLE GIRL. Thank YOU https://t.co/yhu8FwKbmX +06/26/2018,Musicians,@chrisbrown,https://t.co/mg37Mp7HQ5 +06/26/2018,Musicians,@chrisbrown,https://t.co/qCv0bJ6FaU +06/26/2018,Musicians,@chrisbrown,https://t.co/4IRtjBkVRd +06/26/2018,Musicians,@chrisbrown,Do shit yourself so if you ever fail you can be ok with it because you have given it your all. LEARN AS FAST OR AS… https://t.co/f7xLGJkgya +06/24/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUXGr1 https://t.co/yv6dT3SoVh +06/22/2018,Musicians,@chrisbrown,RT @Vevo: This is the kind of Breezy we like to hear! Here's a quick addition to your #QuietStorm playlist for the night. Watch @chrisbrown… +06/22/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/7WHbYW6TbH +06/22/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUG52r https://t.co/yV2czay12Q +06/21/2018,Musicians,@chrisbrown,CONCORD TONIGHT! #HeartbreakOnAFullMoonTour https://t.co/fccn78riKK https://t.co/VfgLvNR2Mj +06/21/2018,Musicians,@chrisbrown,#TOMYBED VIDEO WORLD PREMIERE! @Vevo https://t.co/4hvSFUG52r +06/19/2018,Musicians,@chrisbrown,SEATTLE!!! First show is tonight! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/Ovn4H11MRS +06/17/2018,Musicians,@chrisbrown,#HOPEYOUDO. @Vevo https://t.co/jDDjJA0ioc +06/12/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/vLJjWVXvBx +06/12/2018,Musicians,@chrisbrown,“HOPE YOU DO” I hope you STREAM REQUEST DOWNLOAD PURCHASE https://t.co/jDDjJA0ioc +06/10/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/mcRpd9Fhui +06/08/2018,Musicians,@chrisbrown,#HOPEYOUDO. https://t.co/jDDjJAhTfK +06/08/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/SmlN43e604 +06/07/2018,Musicians,@chrisbrown,RT @Shazam: .@chrisbrown always comes thru with the moves! 🔥 Watch his brand new music vid for #HopeYouDo now ---> https://t.co/HQmnTQ29S8… +06/06/2018,Musicians,@chrisbrown,RT @RCARecords: 🔥🔥 OUT NOW! The world premiere for @chrisbrown's #HopeYouDo 🔥🔥WATCH HERE>>> https://t.co/W6Xg4SDvRu https://t.co/LZomXipfRA +06/06/2018,Musicians,@chrisbrown,"RT @Vevo: ""Hope You Do"" is basically four minutes of @chrisbrown's best dance moves and we're here for it. 🙌🏽 https://t.co/8MyuEfbtRQ https…" +06/06/2018,Musicians,@chrisbrown,"RT @RIVETING_ENT: #HopeYouDo video out now! + +Directed by @chrisbrown + @DanielCzerni + +Produced by @RIVETING_ENT + +https://t.co/h9OYm6PJXC…" +06/06/2018,Musicians,@chrisbrown,https://t.co/DwpbluVesW +06/06/2018,Musicians,@chrisbrown,#HopeYouDo WORLD PREMIERE!!! @Vevo https://t.co/jDDjJAhTfK +06/06/2018,Musicians,@chrisbrown,https://t.co/DxlswETOiI +06/04/2018,Musicians,@chrisbrown,https://t.co/nhwLXH7joG +06/04/2018,Musicians,@chrisbrown,https://t.co/igGQZEyqu2 +06/03/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sFbHv5gBTS +06/02/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/gjt7D70W1o +06/02/2018,Musicians,@chrisbrown,https://t.co/nAnmYDES8l +05/31/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/pqRagWAVzf +05/31/2018,Musicians,@chrisbrown,https://t.co/kI6TDdjxUR +05/30/2018,Musicians,@chrisbrown,https://t.co/pNm6StART0 +05/30/2018,Musicians,@chrisbrown,Started the SUMMER off right! +05/30/2018,Musicians,@chrisbrown,RICK AND MORTY https://t.co/uUM3HbOj4I +05/28/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! https://t.co/fccn78riKK https://t.co/acCPfqqMxF +05/28/2018,Musicians,@chrisbrown,https://t.co/vZzK49FxMS +05/23/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/lSTAivDcQK +05/23/2018,Musicians,@chrisbrown,https://t.co/aHfiQPvtvX +05/22/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/dGxW6je1Zb +05/21/2018,Musicians,@chrisbrown,https://t.co/P9MOIc2sza +05/21/2018,Musicians,@chrisbrown,https://t.co/DzypC7Nh2Q +05/20/2018,Musicians,@chrisbrown,https://t.co/vc3jz07afs +05/20/2018,Musicians,@chrisbrown,Directing BTS with @RIVETING_ENT https://t.co/cplycku87D +05/19/2018,Musicians,@chrisbrown,THANK U TO THE FANS AND THE PEOPLE WHO LOVE WHAT WE CREATE! ❤️ https://t.co/vuGRuKKL4N +05/19/2018,Musicians,@chrisbrown,https://t.co/B70e0XUJC0 +05/19/2018,Musicians,@chrisbrown,RT @ellamai: *sings taina theme song* https://t.co/5dmQW2ygws +05/18/2018,Musicians,@chrisbrown,Think positive.... it will be what it will be. The goal is happiness! ❤️ https://t.co/MDDAHwS2CU +05/17/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/QCarmPObSb +05/17/2018,Musicians,@chrisbrown,Which city are you coming to?! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/oiqC3mJde0 +05/16/2018,Musicians,@chrisbrown,https://t.co/TnfgX3QQ5A +05/16/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/FWp3WyI7LK +05/15/2018,Musicians,@chrisbrown,https://t.co/PMf2llb7CD +05/14/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/LKUWHcNhef +05/14/2018,Musicians,@chrisbrown,HAPPY MOTHERS DAY! https://t.co/MzEoe74Nku +05/12/2018,Musicians,@chrisbrown,TOUR! #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/jLOrk3R0oj +05/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/KWCeVxCk9f +05/11/2018,Musicians,@chrisbrown,❤️💝❤️ https://t.co/WOwIpoLVoJ +05/09/2018,Musicians,@chrisbrown,SUMMER TOUR #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/D9uH53Br4n +05/09/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/taihC9flUT +05/08/2018,Musicians,@chrisbrown,Almost done. SUMMER TIME https://t.co/ABTyOqQvqc +05/08/2018,Musicians,@chrisbrown,We on some shit!!! 🔥🔥🔥🔥🔥 https://t.co/xe7fWUb1nx +05/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/ripjxP9KxE +05/06/2018,Musicians,@chrisbrown,SUMMER. #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/xG2vttmdAl +05/04/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/5EGsAcRMda +05/04/2018,Musicians,@chrisbrown,RT @Tee_Grizzley: One of my favorite songs https://t.co/mp6WevgT5D +05/03/2018,Musicians,@chrisbrown,GET YOUR TICKETS NOW! #HeartbreakOnAFullMoonTour! https://t.co/fccn78IU9k https://t.co/Q5mETZ2dEG +05/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/zMzSFW1zdA +05/03/2018,Musicians,@chrisbrown,DOUBLE DRAGONS https://t.co/6mZV6dZiJY +05/03/2018,Musicians,@chrisbrown,RT @JoynerLucas: They wanna see us dead... @chrisbrown https://t.co/qqdaPIaz8m +05/03/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour Tickets: https://t.co/fccn78IU9k https://t.co/WtQgyXw7Fg +05/02/2018,Musicians,@chrisbrown,#IDONTDIE @JoynerLucas https://t.co/JBEEX3m9PG +05/02/2018,Musicians,@chrisbrown,“I DONT DIE” IS OUT!!! Thoughts? https://t.co/KFfiunH8D6 +05/02/2018,Musicians,@chrisbrown,https://t.co/uKeEHY8TcU +05/01/2018,Musicians,@chrisbrown,Whenever u ready.... SO AM I🔥 https://t.co/rHAxGPWSfT +04/30/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/IIQWHhpYQj +04/30/2018,Musicians,@chrisbrown,https://t.co/MhiiDdEOLQ +04/30/2018,Musicians,@chrisbrown,GET YOUR TICKETS NOW! #HeartbreakOnAFullMoonTour! https://t.co/fccn78IU9k https://t.co/C6Nhb6Ox8s +04/29/2018,Musicians,@chrisbrown,Getting to it . https://t.co/MPPpG6e9P5 +04/29/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! Tickets: https://t.co/fccn78IU9k https://t.co/oBFkit3Agi +04/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/KKszkazhfD +04/25/2018,Musicians,@chrisbrown,JUST CANT WAIT TO BE KING 👑! ( in my simba voice) https://t.co/1NFgNSZx6k +04/24/2018,Musicians,@chrisbrown,❤️ LA https://t.co/hZLemvFRay +04/23/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! Tickets: https://t.co/fccn78IU9k https://t.co/xxTEqo1wpE +04/23/2018,Musicians,@chrisbrown,TEEN TITANZ OHB. EXPRESSION https://t.co/mMQliDtRUs +04/19/2018,Musicians,@chrisbrown,Be creative. LET NOTHING STOP YOU. Don’t put yaself in a box unless it’s your funeral! I’m thankful to have a team… https://t.co/mphiZQiHGZ +04/19/2018,Musicians,@chrisbrown,See what’s happening. LOVE YA TIME TO SHINE! #OHB https://t.co/nlbK3aWGb3 +04/18/2018,Musicians,@chrisbrown,🌊https://t.co/4Iq2qt9WVS https://t.co/NH93xrqSB3 +04/18/2018,Musicians,@chrisbrown,🙌 https://t.co/pDskAHXCZS +04/17/2018,Musicians,@chrisbrown,The BOYZ ARE BACK IN TOWN https://t.co/aC8XJPbk6U +04/17/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sRC4BVBzbY +04/16/2018,Musicians,@chrisbrown,‘I DON’T DIE’ video coming soon... @JoynerLucas https://t.co/giZdwIazb5 +04/16/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/Jzm427OYor +04/15/2018,Musicians,@chrisbrown,#Tempo https://t.co/2wOmw9FW5s https://t.co/1Ux6YJvloD +04/12/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/vwZ5pyvbir +04/10/2018,Musicians,@chrisbrown,Tickets available now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/GiUTFewsce +04/10/2018,Musicians,@chrisbrown,https://t.co/12t7KDse6Y +04/09/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/a72SNNh0k1 +04/09/2018,Musicians,@chrisbrown,YOU ARE MORE THAN WHO THEY WANT U TO BE https://t.co/cR8ICRKobJ +04/09/2018,Musicians,@chrisbrown,100 MILLION!! @lildickytweets #VevoCertified https://t.co/WQ64lwBuAA +04/08/2018,Musicians,@chrisbrown,❤️ https://t.co/d5M5dScG3l +04/06/2018,Musicians,@chrisbrown,RT @officialcharts: It's Freaky Friday! @lildickybeats and @chrisbrown's body swap collaboration claims Number 1 on this week's Official Si… +04/05/2018,Musicians,@chrisbrown,"RT @HERMusicx: I can’t wait for this summer! #HeartbreakOnAFullMoonTour tickets are available everywhere now! + +Visit https://t.co/RyFR710V…" +04/04/2018,Musicians,@chrisbrown,Tickets available now! #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/xSUblCIgNF +04/04/2018,Musicians,@chrisbrown,https://t.co/gJNy7VnqWn +04/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/i4rmSSfbAQ +04/03/2018,Musicians,@chrisbrown,New painting https://t.co/9M60jrCkAP +04/02/2018,Musicians,@chrisbrown,🙏🏽 https://t.co/8FkakQ2vfE +04/02/2018,Musicians,@chrisbrown,Which show are you going to?! #HeartbreakOnAFullMoonTour Tickets: https://t.co/fccn78riKK https://t.co/lrV9q7RcIv +04/02/2018,Musicians,@chrisbrown,RT @lildickytweets: My track “Freaky Friday (feat. Chris Brown)” made #TheBeats1List. Hear it on @Beats1 this week! https://t.co/W3HiyS8jsZ +04/01/2018,Musicians,@chrisbrown,Grab your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/TCqdc9InTJ +03/30/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/6sqIX8nEqD +03/30/2018,Musicians,@chrisbrown,TICKETS ARE AVAILABLE EVERYWHERE NOW! https://t.co/fccn78IU9k #HeartbreakOnAFullMoonTour https://t.co/9rrTVhLTD9 +03/28/2018,Musicians,@chrisbrown,PRESALE starts today! Enter presale code “HEARTBREAK” for exclusive early access to tickets for the tour.… https://t.co/kqQDEFF61M +03/28/2018,Musicians,@chrisbrown,"RT @LiveNation: JUST ANNOUNCED: @chrisbrown is heading out on the Heart Break On A Full Moon Tour with @6LACK, @HERMusicx, and @richthekid…" +03/27/2018,Musicians,@chrisbrown,https://t.co/2vHEssXV9u +03/27/2018,Musicians,@chrisbrown,"TOUR!!! Excited to be heading out on the road for the Heartbreak On A Full Moon Tour with @HERMusicx @6LACK, and… https://t.co/1ksDoSsmlz" +03/27/2018,Musicians,@chrisbrown,"RT @billboardhiphop: .@LilDickytweets scores his first #Hot100 top 10, as ""Freaky Friday,"" featuring @chrisbrown, debuts at No. 9! https://…" +03/26/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/bkML6SmmmO +03/25/2018,Musicians,@chrisbrown,#TEMPO https://t.co/2wOmw9FW5s +03/25/2018,Musicians,@chrisbrown,https://t.co/LVazVJvIS7 +03/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/m09daUK7tS +03/24/2018,Musicians,@chrisbrown,RT @billboardhiphop: .@lildickytweets' #FreakyFriday featuring Chris Brown is aiming for a top 20 #Hot100 debut https://t.co/nwTzfuMRDA htt… +03/23/2018,Musicians,@chrisbrown,https://t.co/g0E2WcGeFi +03/23/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/XB4bMGJRvg +03/23/2018,Musicians,@chrisbrown,https://t.co/cJlsxXl5tE +03/22/2018,Musicians,@chrisbrown,The GREATEST 🔥SQUAD LIT https://t.co/Ix842oJIJd +03/20/2018,Musicians,@chrisbrown,https://t.co/oDnAYmWc9b +03/20/2018,Musicians,@chrisbrown,Take time to recharge 👍🏾 https://t.co/yTWmncvLf9 +03/19/2018,Musicians,@chrisbrown,😂😂😂https://t.co/WQ64lwT5Za +03/19/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/iL2E3wxdM0 +03/17/2018,Musicians,@chrisbrown,555. 333. 11.11 https://t.co/SfUJlpeST5 +03/16/2018,Musicians,@chrisbrown,#FREAKYFRIDAY @lildickytweets https://t.co/WQ64lwBuAA +03/16/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9XwX0 +03/15/2018,Musicians,@chrisbrown,I woke up in @lildickytweets body??? 🧐 #FreakyFriday https://t.co/O2QIjTnknn +03/15/2018,Musicians,@chrisbrown,https://t.co/waOBnT81r1 +03/13/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s +03/13/2018,Musicians,@chrisbrown,A🎉 https://t.co/BrJgLmNO73 +03/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/6pfg6QRQDq +03/10/2018,Musicians,@chrisbrown,Can I switch up the #Tempo? https://t.co/2wOmw9XwX0 +03/10/2018,Musicians,@chrisbrown,Flyest 3year old On EARTH https://t.co/MbILUvzNO5 +03/10/2018,Musicians,@chrisbrown,👀 https://t.co/gSSW8qMvNn +03/09/2018,Musicians,@chrisbrown,RT @WorIdOfDancing: Rock Your Body 😍 https://t.co/raJCLr7Uy3 +03/08/2018,Musicians,@chrisbrown,#GIRLPOWER #tempotakeover 😳🔥🔥🔥🔥🔥https://t.co/2wOmw9FW5s https://t.co/sd697Xhbd8 +03/07/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s https://t.co/Aq08sEmvwS +03/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/yJ5RszoFKK +03/06/2018,Musicians,@chrisbrown,MOOD https://t.co/FecS06uWKj +03/05/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9XwX0 +03/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/B1P9icLh2k +03/03/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s +03/02/2018,Musicians,@chrisbrown,#TEMPO VIDEO WORLD PREMIERE!!! Available everywhere now. #TempoTakeover https://t.co/2wOmw9XwX0 +03/01/2018,Musicians,@chrisbrown,TEMPO VIDEO WORLD PREMIERE COMING FRIDAY #tempotakeover https://t.co/QC2glx490n +03/01/2018,Musicians,@chrisbrown,https://t.co/sAmpYFv8xF +02/27/2018,Musicians,@chrisbrown,.@JakeMiosge :PHOTO https://t.co/Ko5oI3mrpU +02/26/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/g3WemzBqEd +02/25/2018,Musicians,@chrisbrown,#STRANGERTHINGS @JoynerLucas https://t.co/JSl2RbSc4y +02/25/2018,Musicians,@chrisbrown,"“ STRANGER THINGS “ X @JoynerLucas on @AppleMusic, @Spotify & @TIDAL NOW! https://t.co/Yvgw8T8kMt" +02/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/uCZhUMVgF3 +02/24/2018,Musicians,@chrisbrown,💔🌕 https://t.co/DSgT1oHFQG https://t.co/D96U7kfabS +02/22/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/LpHBYu1FzV +02/22/2018,Musicians,@chrisbrown,Clone 👽 https://t.co/jnxOxxaiLu +02/19/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/pmHKv7Rz2X +02/19/2018,Musicians,@chrisbrown,LOVED THE FILM https://t.co/YZkW3O07TZ +02/18/2018,Musicians,@chrisbrown,BRUDDAH https://t.co/BTh3kG8urY +02/18/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/bydNPWFgc5 +02/18/2018,Musicians,@chrisbrown,https://t.co/ejAxiYepd1 +02/16/2018,Musicians,@chrisbrown,https://t.co/zMd4cNax2g +02/14/2018,Musicians,@chrisbrown,RT @RealRemyMa: #MELANINMAGICVIDEO out now! @chrisbrown https://t.co/mcPfGAibS9 https://t.co/MApRMOTxCI +02/13/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/V7wtvHkdTu +02/13/2018,Musicians,@chrisbrown,SAY WHAT U WANT... really wouldn’t matter at this point. ❤️🏆. GREATNESS DEFENDS AND SPEAKS FOR ITSELF https://t.co/nCJfHwComY +02/12/2018,Musicians,@chrisbrown,https://t.co/dLl3sQDDjt +02/12/2018,Musicians,@chrisbrown,ALLSTAR @snoopdogg they gone get this work! https://t.co/9v97s7Hlea +02/11/2018,Musicians,@chrisbrown,Excited for the THINGS TO COME https://t.co/moY95SQ1lz +02/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/duYlYFB4OT +02/10/2018,Musicians,@chrisbrown,TEMPO.... COMING SOON 😏 https://t.co/La7ACqiwIm +02/09/2018,Musicians,@chrisbrown,NAME THIS GROUP.... https://t.co/bRSDot7uVc +02/09/2018,Musicians,@chrisbrown,"Just thinking.... A CRAZY WORLD TOUR would BEYONCE, RIHANNA, BRUNO MARS, CHRIS BROWN. “2 for 2”. And if y’all deci… https://t.co/7RTls3wnT5" +02/09/2018,Musicians,@chrisbrown,MUSIC ALL IN MY HEAD... can’t record fast enough “ SIDE NIGGA OF THE YEAR” 😂 https://t.co/pMedznwVeX +02/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/UXFEwHrkE0 +02/07/2018,Musicians,@chrisbrown,😳 https://t.co/wDyWHaRopp +02/06/2018,Musicians,@chrisbrown,#TEMPOTAKEOVER https://t.co/FsWyJDfgio +02/05/2018,Musicians,@chrisbrown,LATE NIGHT https://t.co/qn4e6s2er3 +02/04/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/iTXlYnO2mi +02/03/2018,Musicians,@chrisbrown,💔🌕 https://t.co/DSgT1oHFQG https://t.co/d1hyfn39eG +02/03/2018,Musicians,@chrisbrown,RT @jtimberlake: Man of the Woods... out now! https://t.co/L9yGfZpcbg https://t.co/jcSuUxHiX0 +02/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/QznSGAAov2 +02/03/2018,Musicians,@chrisbrown,❤️ https://t.co/1Ll5OA3GT3 +02/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/GWm4WB8kPx +02/01/2018,Musicians,@chrisbrown,When u realize it’ll be too late https://t.co/1swAYQhZwY +01/31/2018,Musicians,@chrisbrown,"""State Of The Union"" available on my soundcloud now https://t.co/vlFZpgfhrA" +01/31/2018,Musicians,@chrisbrown,🙏🏽 https://t.co/qOCDnpzHDd +01/30/2018,Musicians,@chrisbrown,#TEMPOTAKEOVER https://t.co/FsWyJDfgio +01/30/2018,Musicians,@chrisbrown,https://t.co/7Wh0kmd69K +01/29/2018,Musicians,@chrisbrown,https://t.co/eGJ9XC9AYv +01/29/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/zWUXNC57z1 +08/18/2015,Musicians,@justinbeiber,Who else is excited? http://t.co/aJuH3466Kx +01/16/2014,Musicians,@justinbeiber,RT @IslandRecords: Help to complete @JustinBieber's #Journals here - http://t.co/jNuS5RAqOv +01/15/2014,Musicians,@justinbeiber,check out my main man when it comes to reviews: @XerexusReviews follow him on a roll tonight. ans be ready for #BelieveMoviePremiereJBAO +01/15/2014,Musicians,@justinbeiber,"RT @XerexusReviews: This is my twitter. Here I will do updates on what reviews I will be coming up with next. So check my tumblr blog ""xere…" +07/30/2012,Musicians,@justinbeiber,"https://t.co/a3r5t2sa the beautiful talents I wish I could meet. I'm a fan of theirs, you guys should check out their videos and follow too!" +07/18/2012,Musicians,@justinbeiber,http://t.co/Exo2u7XT #YouDontKnowStruggle check this out guys. +07/01/2018,Musicians,@jasonderulo,Shmood when I get that Caribbean food in Miami https://t.co/WcGk3qpxSw +06/30/2018,Musicians,@jasonderulo,#DeruloLive https://t.co/EHFszywiHZ +06/29/2018,Musicians,@jasonderulo,RT @motorpoint: JASON DERULO | To celebrate that #FridayFeeling Motorpoint is giving away its last pair of complimentary tickets to see @ja… +06/28/2018,Musicians,@jasonderulo,RT @LIVmiami: Let’s get WILD with @IRIE @irieweekend this SATURDAY! Live performances by @jasonderulo @JustineSkye and guest appearance by… +06/28/2018,Musicians,@jasonderulo,https://t.co/Ye8PRk7Nok +06/27/2018,Musicians,@jasonderulo,Best caption gets a FaceTime tomorrow #LiveMore https://t.co/XO7nFYVGXR +06/26/2018,Musicians,@jasonderulo,Mood for the summer ??Smile or Smize ➡️ https://t.co/sqSh5r2ufn +06/25/2018,Musicians,@jasonderulo,Miami I'm coming home to perform live @irieweekend for the @Sprint BBQ Beach Bash presented by @Samsungmobileusa on… https://t.co/b0o4i4AABW +06/23/2018,Musicians,@jasonderulo,The comeback is always more important than the set back +06/23/2018,Musicians,@jasonderulo,@im_so_cash Well I co-wrote it 🤷🏾‍♂️ 9 yrs ago +06/21/2018,Musicians,@jasonderulo,"You calling the shots for 4 days, where we sailing to? https://t.co/iSWgj8DT3y" +06/20/2018,Musicians,@jasonderulo,The World Cup is ON! And #Colors is the @CocaColaCo anthem for the 2018 @FIFAWorldCup To celebrate enter now for a… https://t.co/CWZMG1vFAP +06/18/2018,Musicians,@jasonderulo,Ice nearly passed out at Runyon Canyon this morning. Tried to bring Ghost too but he ain’t friendly enough to be am… https://t.co/HdhlDyeWUm +06/16/2018,Musicians,@jasonderulo,Imagine yourself surrounded by ancient tombs in a desertlike landscape where the only sounds are waves crashing on… https://t.co/sFh72flcid +06/15/2018,Musicians,@jasonderulo,Family! I collaborated with @stingraymusic to curate my own channel FOR THE SECOND TIME! All my favorite songs are… https://t.co/3dRNVuKaT8 +06/15/2018,Musicians,@jasonderulo,"Not everything needs an explanation... + +Don’t believe everything you read ✈️ +https://t.co/Oh5AqlE0fy https://t.co/3fqk8OSRWv" +06/12/2018,Musicians,@jasonderulo,THIS IS AMERICA 🇺🇸 and this is what happens when me n broski @MattSteffanina got 15 mins by my pool in Miami to coo… https://t.co/OmVBirXmhU +06/11/2018,Musicians,@jasonderulo,"Summer Ready?? +No shirt shawty allll summer long starting in 2 weeks. It’s hot af!!!! https://t.co/WyKRu7vVdg" +06/10/2018,Musicians,@jasonderulo,"3 mins before show time but first.... DRIP + +Stage Ready +Designed by the legend +@forthestarsfashionhouse Jacob https://t.co/44WCdz9KdZ" +06/10/2018,Musicians,@jasonderulo,@Kryp04 Errrthing you could possibly imagine.. +06/08/2018,Musicians,@jasonderulo,Миллион голосов поёт со мной! Эту песню поёт свобода. Я люблю тебя #russia #stbasilscathedral… https://t.co/dhqTCHGv0X +06/04/2018,Musicians,@jasonderulo,RT @bobbybonesshow: So @FLAGALine is working on collabs with @Jason_Aldean & @jasonderulo + looking for a female artist for a collab all on… +06/03/2018,Musicians,@jasonderulo,"It’s Time for that Switch Up +Anticipation is killing me #2Sides #Album #Tour https://t.co/JQjhC8gM2Z" +06/02/2018,Musicians,@jasonderulo,Chk the new Coca Cola commercial #colors #WorldCup https://t.co/06jI5902GV +05/28/2018,Musicians,@jasonderulo,Appreciate 🙏🏾🙏🏾the love https://t.co/cH2A1NYmwd +05/28/2018,Musicians,@jasonderulo,I’m into it https://t.co/u3kKy1MvzL +05/28/2018,Musicians,@jasonderulo,"@LVLXIII_BRANDS x @LuisaViaRoma +https://t.co/VDK9JEv4FX https://t.co/wekQz4ktzO" +05/27/2018,Musicians,@jasonderulo,RT @eventim_uk: Get ready to Wiggle as @jasonderulo tours the UK in September –if you enjoyed his BBC Biggest Weekend performance then grab… +05/25/2018,Musicians,@jasonderulo,RT @MTVMusicUK: Calling all @jasonderulo fans! 🗣 We need your help! Head here to submit your questions for him & they might be answered on… +05/24/2018,Musicians,@jasonderulo,Ever wanted to see the Cayman Islands?! Come see me perform at @KAABOOCayman on Feb 15th & 16th 2019. Plus use the… https://t.co/Ce9EG1V6Kv +05/23/2018,Musicians,@jasonderulo,"2Sides Tour Arena +Tickets Avail Now! +https://t.co/0sQXHDmzKI https://t.co/emGmvxMefL" +05/21/2018,Musicians,@jasonderulo,🤫Sshhh https://t.co/saILwgN2ka +05/18/2018,Musicians,@jasonderulo,Are y’all ready to show your pride during the @FifaWorldCup! I wanna see you represent your country on this one 🔥… https://t.co/c30Z2p64xQ +05/14/2018,Musicians,@jasonderulo,Still carrying me 28yrs strong after those 1st 9 months. I love you mommma & sending big love to all moms out there… https://t.co/rdOZn8lc1U +05/13/2018,Musicians,@jasonderulo,"RT @LuisaViaRoma: @jasonderulo in store +15 May 17.00-19.00 +See you there! https://t.co/YlMfbwFnqj" +05/13/2018,Musicians,@jasonderulo,I want you.. I can’t lie.. Imma give it to you.. Hang tight.. https://t.co/uIu0ezD0o5 +05/11/2018,Musicians,@jasonderulo,Better late than never love😘 https://t.co/HareUbWobL +05/11/2018,Musicians,@jasonderulo,@Elizabethkayem Love u more +05/11/2018,Musicians,@jasonderulo,I’m wheezing!!!!!😂😂😂 ya’ll are INSANE! 👏🏾👏🏾👏🏾Someone pls help me find him. #jasonderulokid #internetisundefeated https://t.co/S4lNA0vTzC +05/10/2018,Musicians,@jasonderulo,I’m so excited to announce I’ll be coming back to the beautiful island of Malta for @IsleofMTV. Can’t wait to perf… https://t.co/fd6nChdSBR +05/10/2018,Musicians,@jasonderulo,I wrote “Ridin Solo” in my cousins basement at 3am on a couch we found in the street. I wrote “Whatcha Say” in a bo… https://t.co/qGUF7csTMD +05/10/2018,Musicians,@jasonderulo,"Bruhhh 😂😂😂😂 I’m dead +#metgala https://t.co/h9OyKdu6fL" +05/09/2018,Musicians,@jasonderulo,Don’t you worry bout the seasons... cause we gon’ fly out every weekend https://t.co/URRxbPKn0z +05/04/2018,Musicians,@jasonderulo,RT @CassperNyovest: .@jasonderulo feat Cassper Nyovest - Colours (Official Music Video) https://t.co/1nUzXtD4ru +04/30/2018,Musicians,@jasonderulo,"Dogs or Cats + +#Ghost #Ice https://t.co/IwwoDXKw2g" +04/28/2018,Musicians,@jasonderulo,"Portugal-I'll be performing at @MEOSudoeste on August 9th! See you there! + +https://t.co/ixCuFHe11g https://t.co/f2aRc6nrZu" +04/27/2018,Musicians,@jasonderulo,🔥 https://t.co/Hc1PCdthhY +04/27/2018,Musicians,@jasonderulo,"3 more months till tour, what city am I meeting you in? https://t.co/Q1IzSk7Ey0" +04/26/2018,Musicians,@jasonderulo,What country has the best beaches? https://t.co/zjmybfe8bp +04/21/2018,Musicians,@jasonderulo,"Grand prize winner for #colorschallenge is flying to the WORLD CUP with me! +I’ll also be posting tons of… https://t.co/Scb9fcmR2a" +04/21/2018,Musicians,@jasonderulo,Check out my latest insta post to see how you can fly with me to the World Cup! https://t.co/C8LWEX7IH7 +04/21/2018,Musicians,@jasonderulo,"Bout that green +Ever golfed? https://t.co/vSQJ8Uy9kz" +04/19/2018,Musicians,@jasonderulo,Too lit bro bro https://t.co/Kr309qGvGO +04/18/2018,Musicians,@jasonderulo,How long does it take u to get date ready? https://t.co/E4tm8lJJp0 +04/16/2018,Musicians,@jasonderulo,Drip drip 💦 https://t.co/qPllzqS1ye +04/15/2018,Musicians,@jasonderulo,New band who dis @ShawnMendes https://t.co/exP6dOffyV +04/14/2018,Musicians,@jasonderulo,Derulo & @maluma new video out now! #colors #worldcup https://t.co/aupwtVgpGj +04/14/2018,Musicians,@jasonderulo,Derulo & @maluma go see the new video posted today https://t.co/LfetbWW3cH +04/14/2018,Musicians,@jasonderulo,"RT @maluma: Video oficial disponible en @Vevo +#Colors @jasonderulo / available on @vevo #HandsUpForYourColors https://t.co/iCXDgT52b0" +04/13/2018,Musicians,@jasonderulo,Golden Carpet #echoawards #germany https://t.co/twpXVxuTlz +04/12/2018,Musicians,@jasonderulo,"Look How Far We've Come! Colors video is out now! Watch & Comment https://t.co/1YDHcZmThD +Colors is the @CocaColaCo… https://t.co/tMIMiRFECD" +04/11/2018,Musicians,@jasonderulo,My brother!! https://t.co/BmY3pPeGMe +04/11/2018,Musicians,@jasonderulo,Darlin I’m here in Germany & there’s diversity here. Ur missing the entire point of the song. It’s all about unity… https://t.co/4hcDkqNSS2 +04/11/2018,Musicians,@jasonderulo,"COLORS OFFICIAL VIDEO OUT NOW! https://t.co/1YDHcZmThD +The Coca-Cola Company Anthem for the 2018 @FIFA World Cup https://t.co/C3zHhFsp3i" +04/10/2018,Musicians,@jasonderulo,C O L O R S Video Dropping Tomorrow @ 7am PST!! Colors is the @CocaColaCo anthem for the 2018 @FIFAWorldCup https://t.co/Ua8VZ4IS87 +04/10/2018,Musicians,@jasonderulo,Let’s get it @RitaOra 🔥 https://t.co/mGxbHo0zzf +04/07/2018,Musicians,@jasonderulo,You can tell I' been workin #beardgang https://t.co/UhFsVuP56Q +04/06/2018,Musicians,@jasonderulo,Have you raised your flag yet?! #RepYourCOLORS now and watch the new lyric video for COLORS on… https://t.co/2OC573MI1I +04/06/2018,Musicians,@jasonderulo,RT @AllThingsSNT: .@jasonderulo will Perform in the End Of the Show Show for the #SaturdayNightTakeaway Finale Tomorrow - Aaron https://t.c… +04/05/2018,Musicians,@jasonderulo,Love more #unity https://t.co/nVqF1RY6bQ +04/03/2018,Musicians,@jasonderulo,Congrats kings.. Welcome to Miami #michaeljordan #derekjeter https://t.co/MRoLDIkjXl +04/02/2018,Musicians,@jasonderulo,Last Night https://t.co/C7BXpvx0Ch +03/27/2018,Musicians,@jasonderulo,RT @Marlins: #OpeningDay keeps on getting better! @jasonderulo will perform the first National Anthem of the season. Be there: https://t.co… +03/23/2018,Musicians,@jasonderulo,Hands Up For Your Colors! Represent your country - Represent your flag. @TheCocaColaCo anthem for the 2018… https://t.co/AyhEtA0w8v +03/22/2018,Musicians,@jasonderulo,@maluma ready? #colors https://t.co/Hsc3ReNah3 +03/16/2018,Musicians,@jasonderulo,Tune into the brand new music series #LiveAtTheBBC tonight! I’ll be co-hosting and performing. Premieres on… https://t.co/v6erCMM9lO +03/16/2018,Musicians,@jasonderulo,"C O L O R S Lyric Video live now! +https://t.co/OunUQmtMzV" +03/15/2018,Musicians,@jasonderulo,https://t.co/Jfgf7mTVZA +03/15/2018,Musicians,@jasonderulo,RT @billboard: .@jasonderulo made a surprise visit to a Boys and Girls Club in Miami https://t.co/TgX4vDHhvF https://t.co/HcMOLwcPbM +03/12/2018,Musicians,@jasonderulo,Thank God for family https://t.co/1B3W6cSb7S +03/11/2018,Musicians,@jasonderulo,Excuse me if I get you W E T 💦 https://t.co/khHTnJAmkI +03/09/2018,Musicians,@jasonderulo,.@DonaldTrump. We're all united in the fact that we're different. Hands up 4 my #colors Haiti🇭🇹 RT YOUR FLAG https://t.co/FYo2Meqnx5 +03/09/2018,Musicians,@jasonderulo,@Shazam got #Colors (The Coca-Cola Anthem for the 2018 FIFA World Cup) as the Song of the Day! https://t.co/GayuB1Hg0c +03/09/2018,Musicians,@jasonderulo,@DonaldTrump We're all united in the fact that we're different. Hands up for my #colors Haiti🇭🇹 Rep YOUR country RT… https://t.co/VwMI3tNye3 +03/09/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag +Be proud of where you're from & who you are. +#Ready… https://t.co/XQfFF0fR5R" +03/08/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag +Be proud of where you’re from & who you are. +@CocaColaCo An… https://t.co/z76EEy5FSZ" +03/08/2018,Musicians,@jasonderulo,"If this was a movie, what we callin it??? +#Miami https://t.co/yCnKzFdqNV" +03/06/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag. +Be proud of where you're from. World Cup Anthem 2018… https://t.co/u5wbA4prda" +03/05/2018,Musicians,@jasonderulo,"Home Sweet Home +You ever been to #miami? +#southbeach #oceandrive https://t.co/9QpPhG9fPD" +03/03/2018,Musicians,@jasonderulo,Happy B-day Baby Noah uncle got you https://t.co/hhFc7rhHTi +03/01/2018,Musicians,@jasonderulo,I try to humble myself enough to know there’s always room to grow. https://t.co/wZVhhxcCO5 +02/28/2018,Musicians,@jasonderulo,@TonyAguilarOfi @SoSofiaReyes @Del40al1_es @DeLaGhettoReal Much love +02/27/2018,Musicians,@jasonderulo,W O N D E R O U T https://t.co/YGJ4wdzw0Q +02/26/2018,Musicians,@jasonderulo,Best caption gets a FaceTime https://t.co/uoUTWfsVCT +02/24/2018,Musicians,@jasonderulo,Live like there’s no tomorrow https://t.co/TOAZIO7u5R +02/19/2018,Musicians,@jasonderulo,"You wanna meet me in Dubai this week??? Comment & tag a friend to get that chance + +#beautifuldestinations… https://t.co/vSneOVz2UE" +02/18/2018,Musicians,@jasonderulo,@TwitterMusic @CocaColaCo Classic man +02/14/2018,Musicians,@jasonderulo,Also who tf is taking playa advice from you lame$??? https://t.co/nZFa2QQCnu +02/14/2018,Musicians,@jasonderulo,Stop posting old news @playaspoint! That’s y u only have 100 followers. Every1 now knows I was on the tv show… https://t.co/Q0WghZrqup +02/14/2018,Musicians,@jasonderulo,@fijiwawta My +02/14/2018,Musicians,@jasonderulo,@fijiwawta Relax ppl I was on the tv show #safeword smh. The show hacked me pages +02/09/2018,Musicians,@jasonderulo,Candace sheesh 👐🏼👐🏼👐🏼 !!!!!! #TheFour what's your thoughts on this @djkhaled +02/09/2018,Musicians,@jasonderulo,Holly shit evvie wow #TheFour +02/09/2018,Musicians,@jasonderulo,RT @Diddy: My brother @FrencHMonTanA is about perform. Tune in!!! #TheFour +02/09/2018,Musicians,@jasonderulo,Who y'all got this final round ? #TheFour +02/09/2018,Musicians,@jasonderulo,Yoo @diddy you can’t send Zaviah home yet she just came wit it !!!!#TheFour @thefouronfox +02/06/2018,Musicians,@jasonderulo,Yuuup🔥🔥🔥 https://t.co/aD0UA5YTCp +02/05/2018,Musicians,@jasonderulo,Family WE reached 1 Billion Views on Swalla today! We now have about 5 Billion views on my YouTube page!!! That's w… https://t.co/kJlEWP7pVc +01/30/2018,Musicians,@jasonderulo,That’s a Insensitive af. I broke my neck last time I cancelled which was 5 YRS AGO. Sorry you’re upset but it hurts… https://t.co/bwjQiFGLUy +01/30/2018,Musicians,@jasonderulo,Pls send him my apologies and tell him I can’t wait to meet him https://t.co/yh1MW4EAt2 +01/30/2018,Musicians,@jasonderulo,Good Mawninn! +01/29/2018,Musicians,@jasonderulo,I C E & G H O S T https://t.co/IkX5qekKpO +01/26/2018,Musicians,@jasonderulo,Chest day https://t.co/W0Kh6PMCQb +01/25/2018,Musicians,@jasonderulo,"@MattSteffanina and crew dancin to #TipToe! 🔥 +https://t.co/HoOMCMEBkb" +01/24/2018,Musicians,@jasonderulo,😂😂🕺🏾 https://t.co/ODNd1qD3s9 +01/23/2018,Musicians,@jasonderulo,Check me out teaching a @zumba class! #TipToeZumba https://t.co/UfnYugVvUg +01/21/2018,Musicians,@jasonderulo,2 days vacation to whatever location.. where u goin? https://t.co/TTgif6ZnFD +01/20/2018,Musicians,@jasonderulo,Shmood or nah? https://t.co/hFKEv4IiRF +01/20/2018,Musicians,@jasonderulo,First emoji that comes to mind https://t.co/pasCDHtBjU +01/19/2018,Musicians,@jasonderulo,RT @officialcharts: .@JasonDerulo has tip-toed his way to a 13th UK Top 10 single! His latest single makes a big climb on this week's Offic… +01/19/2018,Musicians,@jasonderulo,Crazy leg day! @SimeonPanda put the boys through a monstrous one. I love training with different ppl everyone has t… https://t.co/NXSvzEK9FS +01/18/2018,Musicians,@jasonderulo,https://t.co/KoinBm55QD +01/17/2018,Musicians,@jasonderulo,RT @MTVMusicUK: Say hello to this week's Official Trending Chart No.1 - it's #TipToe from @jasonderulo & @FrencHMonTanA! Check out this wee… +01/17/2018,Musicians,@jasonderulo,Just crashed the @zumba with my friends and taking over LA Beatbox Los Angeles #tiptoewithzumba… https://t.co/5SLRJ0ORCC +01/16/2018,Musicians,@jasonderulo,It's my dawg birthday! Follow @JaeMurphy https://t.co/hiUrYg22Mi +01/15/2018,Musicians,@jasonderulo,We celebrate you https://t.co/BAoW9R7hET +01/15/2018,Musicians,@jasonderulo,Writing Camp https://t.co/iG4V0dOIm6 +01/12/2018,Musicians,@jasonderulo,Damn where tf am I supposed to get my black t-shirts? 😂 https://t.co/B9Y016mgc0 +01/09/2018,Musicians,@jasonderulo,Yes I did thank u for letting us know first🙌🏾🙌🏾 https://t.co/Yga6df47KD +01/09/2018,Musicians,@jasonderulo,It begins family!!! Top ten in the UK. #TipToe 🙏🏾 let’s take it to #1 #blessup https://t.co/lLXLkSW99j +01/09/2018,Musicians,@jasonderulo,"""Tip Toe” Zumba Takeover has begun #TipToe #TipToeWithZumba https://t.co/V7IseuB0wz" +01/08/2018,Musicians,@jasonderulo,https://t.co/Lfd7BkEEgh +01/06/2018,Musicians,@jasonderulo,Good job homie. #blessup https://t.co/5JQtRwxZ9N +01/06/2018,Musicians,@jasonderulo,"Crazy!!!!! This is ""Our accomplishment"" 🙏🏾 #16andcounting #TipToe https://t.co/VhDDjglMeh" +01/05/2018,Musicians,@jasonderulo,I love you more than you know 😩 https://t.co/zGgLTZwlhj +01/04/2018,Musicians,@jasonderulo,Thank u for making me one of the most listened to artists on Spotify so consistently! 🙏🏾#TipToe made a huge jump af… https://t.co/x6UjvBH51d +01/04/2018,Musicians,@jasonderulo,Just before this photo I was milly rockin tryna get the bats out my face https://t.co/s8Y39LwGbt +01/03/2018,Musicians,@jasonderulo,"They say your New Year’s Eve KISS sets the tone for the New Year. +#tagyours #tagwhoshouldvebeen https://t.co/EijoLpcujE" +01/02/2018,Musicians,@jasonderulo,First emoji that comes to mind https://t.co/Os38ZWGhfY +01/01/2018,Musicians,@jasonderulo,Everyone that asks always thinks they’re the first https://t.co/qvxI7Eyk7A +01/01/2018,Musicians,@jasonderulo,just so u know on my New Years evening I took 200+ pics honestly. Them denying is just Me trying 2make it 2my bed.… https://t.co/GdoQ1pINTC +12/31/2017,Musicians,@jasonderulo,Finish this caption 2018 is gonna be... https://t.co/E8Uu7XNR3f +12/28/2017,Musicians,@jasonderulo,#TBT #Phillipplein https://t.co/jvLZdEogTx +12/27/2017,Musicians,@jasonderulo,RT @jasonderulo: What city has the best beach in the world? https://t.co/lIKwoWhFW4 +12/27/2017,Musicians,@jasonderulo,What city has the best beach in the world? https://t.co/lIKwoWhFW4 +12/26/2017,Musicians,@jasonderulo,Merry Christmas from Miami https://t.co/zqM6TpgysP +12/25/2017,Musicians,@jasonderulo,Miss my Christmas Day show on @BBCR1? You can listen back right here:https://t.co/Pur12wcPD6 +12/25/2017,Musicians,@jasonderulo,What’s Up people! I’ll be taking over @BBCR1 on Christmas Day from 2pm GMT– listen here:https://t.co/Pur12wcPD6 +12/25/2017,Musicians,@jasonderulo,Where are we going for Christmas dinner? https://t.co/wnzvMNSNzI +12/23/2017,Musicians,@jasonderulo,S/O to @AtariLife for the exclusive SpeakerHat 🔥 Now how did @JaeMurphy get his before me!!! #Speakersinthebrim… https://t.co/EagDpSEJEj +12/18/2017,Musicians,@jasonderulo,@MoonPie Your page is amazing +12/18/2017,Musicians,@jasonderulo,"RT @BestCoverEver: Where our #derulers at!? Name this @JasonDerulo #BestCoverEver song without the sound. RT w/ your answer. + +(Need help? A…" +12/17/2017,Musicians,@jasonderulo,"RT @XXL: Watch @frenchmontana and @jasonderulo team up in the new video for ""Tip Toe"" https://t.co/oXWUzhTzZG https://t.co/lg4OUMrozH" +12/16/2017,Musicians,@jasonderulo,"RT @Fact: A person who sleeps too much, sits too much and isn’t physically active enough is more than 4 times as likely to die early." +12/15/2017,Musicians,@jasonderulo,🙏🏾 https://t.co/HKVKneN94I +12/15/2017,Musicians,@jasonderulo,RT @LiamPayne: .@JasonDerulo your uncle is a Legend 🤣🤣🤣 https://t.co/A7eF92Y5OU +12/15/2017,Musicians,@jasonderulo,RT @Popdust: We love Jason Derulo's new music video. It's W I L D ! ( #📷 @jasonderulo via @latermedia ) https://t.co/EjRpWk1TGe +12/13/2017,Musicians,@jasonderulo,Thank you God for waking me up this morning https://t.co/55nxXlnifm +12/13/2017,Musicians,@jasonderulo,"#thiscouldbeusbutitswinter +Tag who would like this https://t.co/gBiI5oTY3W" +12/13/2017,Musicians,@jasonderulo,@PopeDave8 😂 +12/12/2017,Musicians,@jasonderulo,When you’re about to raise 10’s of thousands for charity @KekePalmer https://t.co/VD7GwTOTCw +12/12/2017,Musicians,@jasonderulo,Share the joy and #ShareYourEars! Help make wishes come true this holiday with Disney parks and Make-A-Wish. For ev… https://t.co/9rx1ij8Txx +12/12/2017,Musicians,@jasonderulo,"RT @BBCR1: 🎄 BIG FESTIVE NEWS 🎄 + +We've invited some of your favourite stars to take over Radio 1 on Christmas Day! + +Get ready for Superstar…" +12/11/2017,Musicians,@jasonderulo,I’ll be at your door at 8. Then we’ll take a jet to anywhere you wanna go. WHERE WE GOIN? https://t.co/8pPHD6KCnA +12/09/2017,Musicians,@jasonderulo,"Proud new owner of my 2nd horse. +What should I name this beauty?? https://t.co/9cSTYUf41h" +12/09/2017,Musicians,@jasonderulo,What time zone are you in? Is it bedtime? Or breakfast in bed time? https://t.co/YwYASinCPM +12/07/2017,Musicians,@jasonderulo,"RT @DJcity: ""Tip Toe"" was DJcity’s 4th most-downloaded song of November. + +https://t.co/o1LglHFUZE" +12/07/2017,Musicians,@jasonderulo,"RT @idolator: .@jasonderulo's ""Tip Toe"" video is a sexy, choreography-filled adventure: https://t.co/n1bmNAi5FN https://t.co/sCsEP2Dnyz" +12/07/2017,Musicians,@jasonderulo,RT @SincereShow: @jasonderulo w/ Another On #Tiptoevideo Out Now Ft. @frenchmontana https://t.co/xXZZtx8yIM +12/07/2017,Musicians,@jasonderulo,"RT @DoctorMusicTuit: Selva, nieve y calaveras doradas en el vídeo oficial de #TipToe de @jasonderulo y @FrencHMonTanA 🐯🌴❄️⛩️ https://t.co/k…" +12/07/2017,Musicians,@jasonderulo,RT @WarnerMusicBR: .@JasonDerulo tem mais uma dança irresistível no clipe de “Tip Toe”! Vem ver e se jogar com o hitmaker: https://t.co/MQu… +12/07/2017,Musicians,@jasonderulo,"RT @ComplexMusic: Premiere: Watch @jasonderulo's new video for ""Tip Toe"" f/ @FrencHMonTanA. https://t.co/D85l5tgt7v https://t.co/biKmvvtnKM" +12/07/2017,Musicians,@jasonderulo,"Official Video for Tip Toe feat. @FrencHMonTanA O U T N O W https://t.co/zSqaQThtdE +https://t.co/CzrMwhr38B https://t.co/cuVK6t3PLd" +12/05/2017,Musicians,@jasonderulo,Peanut-butter or chocolate? https://t.co/3JHBDQZYcb +12/05/2017,Musicians,@jasonderulo,A G E N T: #777 need protection? https://t.co/jwainpFAos +12/03/2017,Musicians,@jasonderulo,https://t.co/wRWd9VVbA7 +12/02/2017,Musicians,@jasonderulo,Comment with two emojis https://t.co/3EeFyUlhvX +12/01/2017,Musicians,@jasonderulo,@km_hamilton15 😘thanks love. I'm a sucker for falsetto +12/01/2017,Musicians,@jasonderulo,So glad to hear that. Peace be with u https://t.co/nVAn6Ua2pB +12/01/2017,Musicians,@jasonderulo,RT @jamiebirdie13: @jasonderulo has an incredible voice omg 😍😭 +12/01/2017,Musicians,@jasonderulo,"RT @RyanBartholomee: Such range and such a beautiful tone, @jasonderulo! ""Silent Night"" was 🔥🔥🔥! 👏🏽👏🏽👏🏽 #DisneyHolidayCelebration" +12/01/2017,Musicians,@jasonderulo,RT @Mack2death: @jasonderulo better sing! Lol taking them to church #DisneyHolidayCelebration +12/01/2017,Musicians,@jasonderulo,RT @kellss_XO: Can we talk about @jasonderulo vocals performing silent night 😍😍😍😍😍😍 +12/01/2017,Musicians,@jasonderulo,A D I O S C H I L E. 🇨🇱 Tag who you ridin in your Lambo wit. #thispiclit https://t.co/UCWVO3gCTx +11/30/2017,Musicians,@jasonderulo,If today was f$cked up. It's all good cuz there's always a fresh start in the morning. +11/29/2017,Musicians,@jasonderulo,Say good morning in your native language https://t.co/4vFmpDkmAa +11/29/2017,Musicians,@jasonderulo,Breaking bad #WalterBlack https://t.co/L3pTDIQgO1 +11/28/2017,Musicians,@jasonderulo,M U S C L E https://t.co/trEL30cVub +11/26/2017,Musicians,@jasonderulo,Just landed in #Chile 🇨🇱 first things first 💦 https://t.co/KOijGSVFPQ +11/25/2017,Musicians,@jasonderulo,Summertime in #Chile 🇨🇱 with my niece skylar https://t.co/OgNSJAmnV8 +11/24/2017,Musicians,@jasonderulo,Stopped by a random shelter today in Detroit to give back. Shoutout to https://t.co/oy5QZRymzl 🙌🏾🙌🏾 https://t.co/JETxRSRiyp +11/24/2017,Musicians,@jasonderulo,Thankful 🙏🏾 https://t.co/htxAS9t5VK +11/23/2017,Musicians,@jasonderulo,🙌🏾 https://t.co/3L6csDQUd2 +11/23/2017,Musicians,@jasonderulo,RT @_OfficialFree: @jasonderulo Great performance at the game bro 💯 #DetroitLions +11/23/2017,Musicians,@jasonderulo,RT @JosieAve: The best part of the whole Lions/Vikings game is @jasonderulo halftime show 🤷🏻‍♀️😍 #sorrynotsorry +11/23/2017,Musicians,@jasonderulo,RT @idfkrow: here I am bawling my eyes out bc jason did so good at the halftime show today I MISS HIM holy shit what a great highlight to m… +11/22/2017,Musicians,@jasonderulo,Pls don't trust these mf's. If it's not from my verified account it's not from me. https://t.co/CTcEo9VF9q +11/22/2017,Musicians,@jasonderulo,@JaeMurphy Family bro! Excited to make history wit u bro +11/22/2017,Musicians,@jasonderulo,It takes a village. You're only as strong as the ppl you surround yourself with. I Love my team 🙌🏾 https://t.co/VEK4ap1B4N +11/21/2017,Musicians,@jasonderulo,"Turkey with a side of #TipToe and #WantToWantMe, on Thanksgiving day! Halftime Performance @Lions https://t.co/G7R7oC40Jm" +06/28/2018,Musicians,@MeekMill,Watch the entire live performance of #StayWoke from the #BETAwards: https://t.co/9yoRoZV3pX https://t.co/jJJ3KSBgBL +06/28/2018,Musicians,@MeekMill,"RT @MeekMill: ""The odds against you and they double stacked...stay woke"" + +Listen to #SayWoke ft. @Miguel now: https://t.co/iA3SWlaICH https…" +06/28/2018,Musicians,@MeekMill,"""The odds against you and they double stacked...stay woke"" + +Listen to #SayWoke ft. @Miguel now:… https://t.co/Hp2lPxvIcB" +06/27/2018,Musicians,@MeekMill,Follow my #StayWoke playlist on @Spotify: https://t.co/cMo0V7blYf https://t.co/PIaQTksJlE +06/27/2018,Musicians,@MeekMill,Shout out #TheBeats1List for including Stay Woke. Hear it on @Beats1 this week https://t.co/rkQwl9BIHH https://t.co/zU1jSrhvn2 +06/27/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke with @Miguel on #RapCaviar: https://t.co/P4uxy6C8SX @Spotify https://t.co/oU6U5oXmtP +06/27/2018,Musicians,@MeekMill,RT @MeekMill: #StayWoke on @AppleMusic A List Hip-Hop: https://t.co/Qe37dgB61r https://t.co/VVpVKCbPZ6 +06/27/2018,Musicians,@MeekMill,"👁 @KingJames 👁 + +Listen to #StayWoke: https://t.co/cMo0V7blYf https://t.co/nfkXwncd3S" +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke on @TIDAL's THORO playlist: https://t.co/3sLdx7cMKh https://t.co/PyIHCMzf2e +06/25/2018,Musicians,@MeekMill,#StayWoke on @AppleMusic A List Hip-Hop: https://t.co/Qe37dgB61r https://t.co/VVpVKCbPZ6 +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke with @Miguel on #RapCaviar: https://t.co/P4uxy6C8SX @Spotify https://t.co/oU6U5oXmtP +06/25/2018,Musicians,@MeekMill,"RT @SpotifyUSA: Motivation music 💪 +Stream @MeekMill's new track #StayWoke with @Miguel on #RapCaviar now https://t.co/e0ZMe0Powq https://t.…" +06/25/2018,Musicians,@MeekMill,"RT @AppleMusic: Brand new @MeekMill featuring @Miguel. Listen to #StayWoke. +https://t.co/7V0TguR8vm" +06/25/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke ft. @Miguel now on @Spotify: https://t.co/4j8Vyhystg https://t.co/YpP6vRv3kE +06/25/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke ft. @Miguel now on @AppleMusic: https://t.co/MRRTkRkmSi https://t.co/T6guMPLvZz +06/25/2018,Musicians,@MeekMill,"RT @MeekMill: #StayWoke ft. @Miguel 👁 + +Listen now: https://t.co/inBU60WCnh https://t.co/3kQYWUDSbm" +06/25/2018,Musicians,@MeekMill,RT @KevinHart4real: So happy & proud of my brother @MeekMill .....Great performance...Great message...STAND UP PHILADELPHIA!!!!! +06/25/2018,Musicians,@MeekMill,"Kept the hood motivated, this the thanks I get? + +#StayWoke: https://t.co/iA3SWlaICH https://t.co/Q6VuRykeby" +06/25/2018,Musicians,@MeekMill,"I stay way from them clowns, watch how I move thru the circus + +#StayWoke: https://t.co/iA3SWlaICH https://t.co/wTbVuwzvFw" +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @AppleMusic: https://t.co/MRRTkRkmSi https://t.co/T6guMPLvZz +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @Spotify: https://t.co/4j8Vyhystg https://t.co/YpP6vRv3kE +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @TIDAL: https://t.co/HOk9wCaf3K https://t.co/uEJ4y5GR2t +06/25/2018,Musicians,@MeekMill,"#StayWoke ft. @Miguel 👁 + +Listen now: https://t.co/inBU60WCnh https://t.co/3kQYWUDSbm" +06/25/2018,Musicians,@MeekMill,"RT @RocNation: ⚡️ “Meek Mill - Stay Woke” by @RocNation + +https://t.co/36odNVICfA" +06/25/2018,Musicians,@MeekMill,#StayWoke ft. @miguel out tonight 👁 !!! +06/24/2018,Musicians,@MeekMill,RT @NYjusticeleague: Thanks to our brother @MeekMill for designing these #Woke tees exclusively for @PUMA —& donating the proceeds to #TheG… +06/24/2018,Musicians,@MeekMill,#staywoke https://t.co/qI30ggGeNg +06/23/2018,Musicians,@MeekMill,RT @RocNation: .@MeekMill is performing tonight at the #BETExperience at @STAPLESCenter in Los Angeles. https://t.co/hQtrlJbgaz +06/23/2018,Musicians,@MeekMill,#staywoke https://t.co/7ush13RKkh +06/22/2018,Musicians,@MeekMill,#staywoke https://t.co/WrFyc96yhS +06/19/2018,Musicians,@MeekMill,"RT @pandoramusic: For #BlackMusicMonth, we’re celebrating iconic artists who have over a billion spins on Pandora and we've passed the aux…" +06/16/2018,Musicians,@MeekMill,RT @NYjusticeleague: #Philly come thru!! On Monday @MeekMill and local community leaders will be at the Philly Criminal Justice Center call… +06/15/2018,Musicians,@MeekMill,RT @NYjusticeleague: We're going back to #Philly. And we're gonna keep going back til we get #Justice4Meek. Come out and show support and… +06/15/2018,Musicians,@MeekMill,"RT @NYjusticeleague: When @S_C_ says ""probation is a trap"" -that's TRUTH! After finally being released from prison for a probation violatio…" +06/09/2018,Musicians,@MeekMill,🚁🏍🎤🎬 LEGENDS OF THE SUMMER! Stream my #SummerJam performance tomorrow on @TIDAL at https://t.co/30WvWTJINs https://t.co/4Gk7Cj6IuB +06/06/2018,Musicians,@MeekMill,I’m taking over @BET weekend. Performing at #BETAwards and #BETX in LA https://t.co/iwBjZWflnK +06/06/2018,Musicians,@MeekMill,Listen to the Litty City playlist on @AppleMusic for #BlackMusicMonth https://t.co/HCavkU8uSs https://t.co/1EbekvsMIZ +05/28/2018,Musicians,@MeekMill,RT @BleacherReport: Cavs singing @meekmill’s “Dreams & Nightmares” in the locker room after the win 🔥 *NSFW* (Via @jordanclarksons) https:/… +05/14/2018,Musicians,@MeekMill,RT @TIDAL: M.I.A. in Miami this past weekend for #RollingLoud? Relive @MeekMill's comeback performance at the festival with this: https://t… +05/13/2018,Musicians,@MeekMill,"RT @RollingStone: Watch Meek Mill's surprise, first post-jail concert at Rolling Loud https://t.co/xayiDLTBHS" +05/13/2018,Musicians,@MeekMill,RT @Diddy: WELCOME HOME @MEEKMILL https://t.co/bzACRSrPCQ +05/10/2018,Musicians,@MeekMill,RT @RocNation: Tune into @espn to see @MeekMill live on @FirstTake right now! +05/10/2018,Musicians,@MeekMill,RT @fox5ny: Rapper @MeekMill tells his story of incarceration and now freedom to @rosannascotto @loristokes during #GDNY Watch online at th… +05/09/2018,Musicians,@MeekMill,"RT @Deena_CNN: Check out my CNN interview with @meekmill ahead of his speech at the @Innocence Project gala: ""Meek Mill's fight is not fini…" +05/08/2018,Musicians,@MeekMill,RT @TIDAL: .@angiemartinez is sitting down with @MeekMill today at 12pm EST. Watch the livestream exclusively on https://t.co/tPvxVkHkao ht… +05/08/2018,Musicians,@MeekMill,RT @CBSThisMorning: COMING UP: Rapper @MeekMill will join us LIVE on @CBS. https://t.co/yPDM509nUp +05/07/2018,Musicians,@MeekMill,"RT @billboard: TIDAL announces new series special ""One of One"" with Angie Martinez. + +The first guest will be rapper Meek Mill! https://t.co…" +05/07/2018,Musicians,@MeekMill,"RT @TIDAL: ""These are the vibes that kept my spirits up while I was incarcerated feeling like I was in a situation that was hell on earth.""…" +05/07/2018,Musicians,@MeekMill,"RT @billboard: Watch Meek Mill's interview with ""Dateline NBC"" detailing his incarceration https://t.co/sXFlY4ivLU https://t.co/NUpVUdE1kt" +05/07/2018,Musicians,@MeekMill,RT @TIDAL: .@angiemartinez is going live on TIDAL with @MeekMill tomorrow. Watch the livestream at 12pm EST/9am PST. For more info visit ht… +05/07/2018,Musicians,@MeekMill,RT @angiemartinez: going live on TIDAL with @MeekMill. 🙌🏼TOMORROW watch the livestream at 12pm EST/9am PST. for more info visit https://t.c… +05/07/2018,Musicians,@MeekMill,Going live with @angiemartinez tomorrow on @TIDAL. Watch the livestream at 12pm ET/9am PT. For more info visit… https://t.co/Rlb1uuEQrd +05/07/2018,Musicians,@MeekMill,"RT @DatelineNBC: NOW: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @LesterHo…" +05/06/2018,Musicians,@MeekMill,RT @RocNation: https://t.co/iivNdpfquI +05/06/2018,Musicians,@MeekMill,"RT @ColorOfChange: If you’re on probation you can go to prison for: + +-Missing a meeting with your probation officer. +-Having a work commi…" +05/06/2018,Musicians,@MeekMill,RT @NYjusticeleague: We also have to remember the initial arrest has been contested from jump. In @MeekMill own words... #Dateline #MeekMi… +05/06/2018,Musicians,@MeekMill,"RT @cut_50: ""I had 8 years probation. it turned into 16 years of probation. I'm still doing time for that case."" Watch the exclusive interv…" +05/06/2018,Musicians,@MeekMill,Tune into @DatelineNBC now in EST and CST timezones to watch “Dreams and Nightmares: The Meek Mill Story.” (Airs 6p… https://t.co/VLPMsSq1Zq +05/06/2018,Musicians,@MeekMill,"Tune into @DatelineNBC tonight at 7e/6c to watch “Dreams and Nightmares: The Meek Mill Story."" Hosted by… https://t.co/9QQeaPgHD3" +05/06/2018,Musicians,@MeekMill,RT @NBCNews: Why rapper Meek Mill wants to fix broken justice system https://t.co/4IYDzIQrcn +05/06/2018,Musicians,@MeekMill,"RT @DatelineNBC: Tonight on #Dateline at 7/6c, @LesterHoltNBC talks with rapper @MeekMill about the new path he's charting to reform the U.…" +05/06/2018,Musicians,@MeekMill,RT @TIDAL: Celebrate the warmer weather with @MeekMill's Pool Party playlist on https://t.co/Azgv5ZEpUs https://t.co/PhutrfrcNn +05/06/2018,Musicians,@MeekMill,"RT @LesterHoltNBC: Tune in to @DatelineNBC tonight at 7p/6c for “Dreams and Nightmares: The Meek Mill Story,” my exclusive in-depth interv…" +05/06/2018,Musicians,@MeekMill,"RT @NBCNightlyNews: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @LesterHolt…" +05/06/2018,Musicians,@MeekMill,RT @DatelineNBC: He had a dream that a helicopter was going to pick him up when he got out of prison. Go inside @MeekMill’s chopper ride fr… +05/05/2018,Musicians,@MeekMill,"RT @sixers: .@MeekMill, @questlove, @MNightShyamalan and @ZERTZ_86 in the house for today’s game! + +#PhilaUnite x #HereTheyCome https://t.c…" +05/05/2018,Musicians,@MeekMill,"RT @FairPunishment: .@MeekMill: ""A lot of these laws are made to keep most of these minorities trapped forever. … Let’s retire the #FreeMee…" +05/05/2018,Musicians,@MeekMill,RT @DatelineNBC: Musicians @questlove and @blackthought from @theroots talk about rapper @MeekMill’s place in Philadelphia’s hip-hop histor… +05/04/2018,Musicians,@MeekMill,RT @angiemartinez: talking to @LesterHoltNBC on air about sunday’s #Dateline #meekmill special. tune in on @Power1051 +05/04/2018,Musicians,@MeekMill,"RT @DatelineNBC: Rapper @MeekMill tells @LesterHoltNBC: ""It's about chasing your dreams no matter what you do in life."" Watch more of Meek'…" +05/04/2018,Musicians,@MeekMill,RT @billboard: Meek Mill & Pennsylvania Gov. urge criminal justice reforms https://t.co/ufPqyIudgM https://t.co/cYnOHYb6Gj +05/04/2018,Musicians,@MeekMill,RT @BostonGlobe: New England Patriots owner Robert Kraft chatted with rapper Meek Mill in their courtside seats at Game 2 of the Celtics NB… +05/04/2018,Musicians,@MeekMill,"RT @SBNation: Just Gucci Mane, Robert Kraft, and Meek Mill having a conversation https://t.co/ZGZbDeagXB" +05/04/2018,Musicians,@MeekMill,RT @NBCPhiladelphia: .@meekmill is in the building as the @sixers take on the @celtics #PhilaUnite #HereTheyCome https://t.co/oQxCfchrqN +05/04/2018,Musicians,@MeekMill,"RT @sixers: .@MeekMill in the building! + +#PhilaUnite x #HereTheyCome https://t.co/8PQ8DyLO49" +05/03/2018,Musicians,@MeekMill,RT @DatelineNBC: He had a dream that a helicopter was going to pick him up when he got out of prison. Go inside @MeekMill’s chopper ride fr… +05/03/2018,Musicians,@MeekMill,RT @RollingStone: Is the Meek Mill case a sign of substantial criminal justice reforms on the way? https://t.co/qgTyDYEJe4 https://t.co/Xjm… +05/03/2018,Musicians,@MeekMill,RT @tictoc: ⚡️ @MeekMill is calling for criminal justice reform in Pennsylvania to “speak for the voiceless” https://t.co/ffHk1GBpI1 +05/03/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: I’m proud to join state legislators, @sixers co-owner @MichaelGRubin, and artist @MeekMill today to announce proposals…" +05/03/2018,Musicians,@MeekMill,"RT @GovernorsOffice: Today at 11:00 AM, @GovernorTomWolf will join @RepDwightEvans, @sixers co-owner @MichaelGRubin, artist @MeekMill, and…" +05/03/2018,Musicians,@MeekMill,RT @EW: Meek Mill teaming with Amazon for six-part docuseries https://t.co/PtM2Our6au +05/03/2018,Musicians,@MeekMill,RT @RIAA: .@MeekMill's latest album Wins & Loses is officially Gold. It's Meek's third RIAA Album Award: https://t.co/ohedbtVnA4 @Atlantic… +05/02/2018,Musicians,@MeekMill,"RT @DatelineNBC: EXCLUSIVE: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @Le…" +04/29/2018,Musicians,@MeekMill,"RT @TIME: Rapper Meek Mill will be released from prison on bail +https://t.co/tz4jsojiXn" +04/27/2018,Musicians,@MeekMill,"RT @RollingStone: In one of his first post-jail interviews, Meek Mill reflects on the toll of prison https://t.co/mKHDS4oW2Y https://t.co/D…" +04/26/2018,Musicians,@MeekMill,RT @NBCNightlyNews: WATCH: Rapper Meek Mill speaks out to @LesterHoltNBC in an exclusive interview following his release from prison. https… +04/25/2018,Musicians,@MeekMill,"RT @RepKarenBass: There are thousands of men and women in jail right now for the same, unjust reasons that Meek Mill was put in jail for. I…" +04/25/2018,Musicians,@MeekMill,"RT @LesterHoltNBC: In an exclusive interview for an upcoming @DatelineNBC , Philadelphia rapper Meek Mill talks to me about his release fro…" +04/25/2018,Musicians,@MeekMill,RT @djkhaled: Bless up meekmill God is The Greatest 🙏🏽 https://t.co/19Jh2JvjTF +04/25/2018,Musicians,@MeekMill,RT @NYjusticeleague: “Ain’t this what we been waiting for?!” MEEK MILL IS FREE!!! Read this statement from Meek on his release. This is who… +04/25/2018,Musicians,@MeekMill,RT @KevinHart4real: Back like we never left....Welcome home meekmill ....Lets gooooooooo Sixers #PhillyStandUp… https://t.co/aLgGWH60Tv +04/25/2018,Musicians,@MeekMill,"RT @Spotify: Welcome home, Meek Mill 🙏 +https://t.co/92e0izlkJk https://t.co/aMRng5LdI1" +04/25/2018,Musicians,@MeekMill,RT @TIDAL: #MeekMill is finally a free man 🙌. RT if you’re blasting “Dreams and Nightmares”: https://t.co/DUpqAKYGD4 https://t.co/oc6P1TZL0D +04/25/2018,Musicians,@MeekMill,"RT @amazonmusic: ""I roared with the lions."" Here's to Philly's own Meek Mill! #MeekisFree https://t.co/Qlbm1llAxF https://t.co/U8FOqfsMo0" +04/25/2018,Musicians,@MeekMill,RT @TG3II: Yessirrr welcome home @MeekMill https://t.co/F5nz0VxXlL +04/25/2018,Musicians,@MeekMill,"RT @billboard: JAY-Z on Meek Mill prison release: ""A son of Philadelphia is a free man"" https://t.co/V2kVAgmUah https://t.co/9d9WZYpte7" +04/25/2018,Musicians,@MeekMill,"RT @RollingStone: Jay-Z celebrates Meek Mill's release from prison: ""Today, Meek Mill, a son of Philadelphia, is a free man"" https://t.co/j…" +04/25/2018,Musicians,@MeekMill,"RT @NBA: Joined by @KevinHart4real, @MeekMill rings the 🔔 in Philadelphia ahead of @MiamiHEAT/@Sixers Game 5! #NBAPlayoffs https://t.co/dOr…" +04/24/2018,Musicians,@MeekMill,"In the meantime, I plan to work closely with my legal team to overturn this unwarranted conviction and look forward… https://t.co/TVE1J7AD4Z" +04/24/2018,Musicians,@MeekMill,"To the Philly District Attorney’s office, I’m grateful for your commitment to justice. I understand that many peopl… https://t.co/nKUemVQLWJ" +04/24/2018,Musicians,@MeekMill,"I’d like to thank God, my family, and all my public advocates for their love, support and encouragement during this… https://t.co/2cQXcKgip7" +04/24/2018,Musicians,@MeekMill,RT @TMZ: Kevin Hart Visits Meek Mill in Philadelphia Prison https://t.co/6lnUfjiEM7 +04/24/2018,Musicians,@MeekMill,RT @Tip: #FreeMeek https://t.co/ekEbIc6rRu +04/24/2018,Musicians,@MeekMill,"RT @ShannonSharpe: Meek Mill didn’t kill anyone and can’t get a bond, but that’s none of my business. https://t.co/TTdtlSFlk1" +04/22/2018,Musicians,@MeekMill,RT @XXL: Boxer @Gervontaa wears a @MeekMill shirt in the ring after knocking out Jesus Cuellar https://t.co/6WUWGGXW6M +04/21/2018,Musicians,@MeekMill,"RT @RickRoss: #FreeMeek + +RT." +04/20/2018,Musicians,@MeekMill,RT @thefader: Meek Mill gives statement on cases involving his arresting officer being dismissed. https://t.co/6PW4IMoavi https://t.co/iQnI… +04/18/2018,Musicians,@MeekMill,"RT @TheRevAl: Attorney @TacopinaLaw talks about his client Meek Mill, the criminal justice system, policy reform, and more at the 2018 Nati…" +04/18/2018,Musicians,@MeekMill,RT @breakfastclubam: Meek Mill's Lawyer Discusses The Judge's Obsession & Unfair Treatment https://t.co/hEPEpIWbiy +04/18/2018,Musicians,@MeekMill,".@MeekMill's Lawyer, Joe Tacopina, Discusses The Judge's Obsession & Unfair Treatment In The Courtroom on… https://t.co/EWbARAnj2b" +04/18/2018,Musicians,@MeekMill,RT @breakfastclubam: We got #meekmills lawyer #joetacopina in the building >> he’s updating us and letting us know… https://t.co/M0jLcwQpGl +04/18/2018,Musicians,@MeekMill,RT @angiemartinez: so here’s what i learned today about the @meekmill case.... https://t.co/rL1P03sCfy +04/18/2018,Musicians,@MeekMill,RT @djenvy: meekmill attorney Joe Tacopina is here discussing everything going on with his case... Tune… https://t.co/UL0IEOIfxQ +04/18/2018,Musicians,@MeekMill,"RT @angelayee: We have meekmill lawyer Joe Tacopina giving us the details of meek’s case, the corrupt officer… https://t.co/DaAnRfbqC1" +04/18/2018,Musicians,@MeekMill,"RT @breakfastclubam: .@MeekMill's lawyer, Joe Tacopina joins The Breakfast Club tomorrow morning to discuss Meek's case. Make sure to tune…" +04/18/2018,Musicians,@MeekMill,".@MeekMill's lawyer, Joe Tacopina, will be on @breakfastclubam tomorrow morning to discuss Meek's case. https://t.co/gTZoTR3kHn" +04/17/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: When Meek Mill was resentenced to prison for parole violations, his case brought hundreds of thousands to call for cha…" +04/17/2018,Musicians,@MeekMill,"RT @XXL: Watch Meek Mill's interview with CNN +https://t.co/HmlAY5Hq0M" +04/17/2018,Musicians,@MeekMill,RT @okayplayer: #FreeMeekMill https://t.co/egJjSD2MzS +04/17/2018,Musicians,@MeekMill,"RT @FairPunishment: Meek Mill's case has been plagued by a staggering number of allegations of judicial, police, and prosecutorial miscondu…" +04/16/2018,Musicians,@MeekMill,"""Black lives matter but the system is consistently saying they don't."" - Angelo Pinto #FreeMeekMill #Justice4Meek… https://t.co/U2ZspW5ieP" +04/16/2018,Musicians,@MeekMill,RT @nytimesarts: The Philadelphia district attorney’s office threw its support behind a campaign to overturn the conviction of the rapper M… +04/16/2018,Musicians,@MeekMill,RT @XXL: The Philly D.A. is standing behind Meek Mill in support of his release from prison https://t.co/DPZcjk9chf +04/16/2018,Musicians,@MeekMill,"RT @CBSNews: Rapper Meek Mill's convictions should be vacated, Philadelphia district attorney says, arguing that he should have a new trial…" +04/16/2018,Musicians,@MeekMill,"RT @TIME: Rapper Meek Mill's conviction should be thrown out, prosector says https://t.co/tI4DSvpdmf" +04/16/2018,Musicians,@MeekMill,RT @DeSeanJackson11: Young Papi !! 💪🏾💪🏾 #freemeek https://t.co/yZ7FAagkqj +04/16/2018,Musicians,@MeekMill,RT @vicenews: Philadelphia DA is backing a new trial for rapper Meek Mill https://t.co/OHwD9ZEj7u +04/16/2018,Musicians,@MeekMill,RT @HipHopDX: 🗣 In the hood yelling #FreeMeek! The Philly DA has apparently agreed to a retrial for Meek Mill! https://t.co/TUWPGMYH6f +04/16/2018,Musicians,@MeekMill,RT @RocNation: https://t.co/t85kkJrqis +04/16/2018,Musicians,@MeekMill,"""The time is really now to create change"" - @Angelopinto720 #Justice4Meek #FreeMeekMill #ReformPhilly… https://t.co/ixDfJHr4Ao" +04/16/2018,Musicians,@MeekMill,"RT @Phillyfreezer: PHILADELPHIA – Join hundreds of community members, elected officials, celebrities, and professional athletes this Today…" +04/16/2018,Musicians,@MeekMill,RT @NBCNews: Supporters of rapper Meek Mill begin gathering outside of a Philadelphia court to rally and demand a judge overturn his convic… +04/16/2018,Musicians,@MeekMill,RT @ColorOfChange: #FreeMeekMill https://t.co/SiCSvVfYXF +04/16/2018,Musicians,@MeekMill,RT @NYjusticeleague: Listen to @marclamonthill ask the right questions!!! #FreeMeekMill https://t.co/fS5Zdfton7 +04/16/2018,Musicians,@MeekMill,"RT @RocNation: “I pledge to you, I will not rest until we reform this system...We need to free Meek!"" @SenSharifStreet @MeekMill #Justice4M…" +04/16/2018,Musicians,@MeekMill,"RT @RocNation: “Justice needs to be blind and it hasn't been...We need sanity, we need love, we need fairness."" @LtGovStack #ReformPhilly #…" +04/16/2018,Musicians,@MeekMill,"""Everyone needs to stand up for justice"" @LtGovStack #ReformPhilly #Justice4Meek #FreeMeekMill… https://t.co/RskLERAcb2" +04/16/2018,Musicians,@MeekMill,Come out to the Philadelphia Criminal Justice Center today from 8am – 12pm to show support for criminal justice ref… https://t.co/ZwrR9OCuY1 +04/15/2018,Musicians,@MeekMill,#FreeMeek https://t.co/KWzOdH3M1G +04/15/2018,Musicians,@MeekMill,RT @darrenrovell: Free Meek Mill shirts all over tonight in Philly ahead of 76ers game as grassroots effort to release the Philly born rapp… +04/14/2018,Musicians,@MeekMill,RT @ColorOfChange: What’s happening to #MeekMill is just one example of how our criminal justice system entraps thousands of Black ppl ever… +04/14/2018,Musicians,@MeekMill,RT @cut_50: Show support for @MeekMill and #CJreform nationwide by joining this rally at the Philadelphia Criminal Justice Center on MONDAY… +04/14/2018,Musicians,@MeekMill,"RT @AtlanticRecords: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MON…" +04/14/2018,Musicians,@MeekMill,"RT @Tyrese: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MONDAY from…" +04/14/2018,Musicians,@MeekMill,RT @PageSix: Frustrated Meek Mill speaks out from prison: I am a political prisoner https://t.co/yModn4sFXE https://t.co/FGCQZYtC6i +04/14/2018,Musicians,@MeekMill,RT @KevinHart4real: Just got off the phone with meekmill ....I love my guy...He’s in a really good space and wanted… https://t.co/9Z3Ff7WWnH +04/13/2018,Musicians,@MeekMill,"RT @RocNation: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MONDAY fr…" +04/13/2018,Musicians,@MeekMill,"PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this… https://t.co/xRoXFy8zGZ" +04/13/2018,Musicians,@MeekMill,"RT @CNN: ""Who is Meek Mill and why do we want to free him?"" Someone, somewhere, is in dire need of this article. https://t.co/W1ZFulgEtY ht…" +04/13/2018,Musicians,@MeekMill,RT @jasoncollins98: #FreeMeekMill https://t.co/lBCQ4ySl3V +04/13/2018,Musicians,@MeekMill,RT @NYjusticeleague: Did u see @MeekMill last night w @LesterHoltNBC talking about his push for criminal justice reform & vowing 2use his… +04/13/2018,Musicians,@MeekMill,RT @donlemon: Visited @MeekMill today. Stay tuned. #MeekMill https://t.co/pTNKKa3XdF +04/13/2018,Musicians,@MeekMill,RT @thefader: Watch Meek Mill’s interview from prison with NBC’s Lester Holt. https://t.co/GFOhaNgcEN https://t.co/ZejDHDWehd +04/13/2018,Musicians,@MeekMill,"RT @RollingStone: Meek Mill talks ""helping minorities that come from these situations like myself"" in new interview https://t.co/wxibf33j9x…" +04/13/2018,Musicians,@MeekMill,RT @RickRoss: #FreeMeekMill @NBCPhiladelphia https://t.co/ZBsxCZNRlb +04/13/2018,Musicians,@MeekMill,RT @billboard: Meek Mill tells Lester Holt he always thought his probation would bring him back to prison https://t.co/oqZVgPjycf https://t… +04/12/2018,Musicians,@MeekMill,Show support for criminal justice reform across the country by joining us for a rally and sit in at the Philadelphi… https://t.co/9tXNvfM0nV +04/12/2018,Musicians,@MeekMill,RT @NYjusticeleague: Join us and Philadelphia’s criminal justice community as we give court support & rally & sit in to #FreeMeekMill ! Mor… +04/12/2018,Musicians,@MeekMill,RT @MalcolmJenkins: #FreeMeek https://t.co/gxXE8cbMox +04/12/2018,Musicians,@MeekMill,RT @NBCNightlyNews: WATCH: Rapper Meek Mill was jailed for violating probation in a case that has received national attention and calls for… +04/12/2018,Musicians,@MeekMill,RT @KevinHart4real: #FreeMeek https://t.co/09zq1EJn2U +04/12/2018,Musicians,@MeekMill,RT @LesterHoltNBC: In Philadelphia speaking by phone with imprisoned rapper Meek Mill. Why his case has drawn attention and support from Ja… +04/12/2018,Musicians,@MeekMill,"RT @NBCNightlyNews: TONIGHT on @NBCNightlyNews: ""It was always a thought in the back of my mind that ten years of probation would bring me…" +04/12/2018,Musicians,@MeekMill,"RT @ComplexMusic: Wale sends love to Meek Mill: ""It's really deeper than rap."" + +https://t.co/YCeIkFEFrE https://t.co/t5gnwwGImF" +04/12/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: When Meek Mill was recommitted to prison, hundreds of thousands of people signed petitions requesting that I step in t…" +04/11/2018,Musicians,@MeekMill,RT @billboard: Wale pens a heartfelt message about brotherhood after speaking with Meek Mill https://t.co/TC4jW0j96y https://t.co/kzHoIYinWV +04/11/2018,Musicians,@MeekMill,"RT @NBCPhiladelphia: BREAKING: @PhillyMayor visited Meek Mill in state prison today, says the rapper ""would better serve the community outs…" +04/11/2018,Musicians,@MeekMill,"RT @XXL: Meek Mill is visited in prison by the New England Patriots owner Robert Kraft and Philadelphia 76ers co-owner Michael Rubin +https…" +04/11/2018,Musicians,@MeekMill,RT @GenoSmith3: #FreeMeek +04/11/2018,Musicians,@MeekMill,RT @BleacherReport: Pats owner Robert Kraft visits Meek Mill in prison https://t.co/WZkT6aM0yb https://t.co/l2ZbwUmPZU +04/09/2018,Musicians,@MeekMill,"RT @TIDAL: Watch @MeekMill's new video for ""1942 Flows"" now on https://t.co/Azgv5ZEpUs https://t.co/s0XU2jX1SK" +04/09/2018,Musicians,@MeekMill,https://t.co/olpvgBtNvj NOW! https://t.co/9hRoBP17px +04/06/2018,Musicians,@MeekMill,"RT @VibeMagazine: The Supreme Court to look into Meek Mill’s bail release case +https://t.co/3k6zZdpMNr https://t.co/fH4CsoXpig" +04/06/2018,Musicians,@MeekMill,.@MeekMill Gets Prison Visit from 76ers Star Rookies https://t.co/bJzmKbuGTn https://t.co/B9cfoBbLNy +04/06/2018,Musicians,@MeekMill,RT @TMZ: Meek Mill Gets Prison Visit from 76ers Star Rookies https://t.co/2YQr55lt39 +04/06/2018,Musicians,@MeekMill,"RT @RollingStone: Philadelphia District Attorney ""does not oppose"" Meek Mill's bail request in new motion https://t.co/MCNeQieNvq https://t…" +04/06/2018,Musicians,@MeekMill,RT @djkhaled: meekmill https://t.co/37APtoahLW +04/05/2018,Musicians,@MeekMill,RT @Complex: Philadelphia DA officially files no opposition to releasing Meek Mill on bail: https://t.co/RZ9K0dvNC5 https://t.co/CVaSYNvGcf +04/05/2018,Musicians,@MeekMill,RT @thefader: Philadelphia D.A. files no opposition to releasing Meek Mill at the state supreme court level. https://t.co/fvth9k2S7g https:… +04/03/2018,Musicians,@MeekMill,RT @NBCSports: wow everybody wants to #FreeMeek ! https://t.co/nlWnP8TMKM +03/29/2018,Musicians,@MeekMill,"RT @spotifyartists: In the midst of the #FreeMeekMill movement, the one voice we’ve been missing is the Philly rapper himself. In this powe…" +03/28/2018,Musicians,@MeekMill,RT @youngthug: I miss my brada @MeekMill +03/28/2018,Musicians,@MeekMill,"RT @RickRoss: Meek Mill's mother pens emotional letter to Lady Justice: ""You've taken his innocence and abused his pride"" https://t.co/AG94…" +03/26/2018,Musicians,@MeekMill,"RT @thefader: Read Meek Mill’s mother’s op-ed, addressed to “Lady Justice."" https://t.co/Djl3kyHf21 https://t.co/cE2acizvgK" +03/26/2018,Musicians,@MeekMill,"RT @billboardhiphop: Meek Mill's mother's plea to Lady Justice: ""You've taken his innocence and abused his pride."" https://t.co/5m5FcGsUgs…" +03/26/2018,Musicians,@MeekMill,RT @REVOLTTV: #FreeMeekMill: Philadelphia D.A. says there is a “strong likelihood” @MeekMill’s conviction could be reversed. ➡️ https://t.c… +03/25/2018,Musicians,@MeekMill,RT @RickRoss: Free Meek Mill +03/25/2018,Musicians,@MeekMill,RT @BILLBELLAMY: Pennsylvania Governor Supports Meek Mill's Release From Prison https://t.co/ha1e6ESjMS +03/24/2018,Musicians,@MeekMill,RT @billboard: Pennsylvania governor Tom Wolf supports Meek Mill's prison release https://t.co/7ryvmQaoTw https://t.co/4pmKU8AG0A +03/24/2018,Musicians,@MeekMill,RT @RollingStone: Pennsylvania governor supports Meek Mill's release from prison https://t.co/0nDBFdHH9h +03/23/2018,Musicians,@MeekMill,"RT @TMZ: Meek Mill Gets Shout Out, Support from Pennsylvania's Governor Wolf https://t.co/Q2kWFDaBxd" +03/23/2018,Musicians,@MeekMill,RT @RepHarris: I stand with @GovernorTomWolf & @Krasner4DA in fighting for a more equitable justice system. It's time we ensure that the co… +03/23/2018,Musicians,@MeekMill,RT @GovernorTomWolf: But more needs to be done. I am calling on the PA General Assembly to pass the Justice Reinvestment II reforms to the… +03/23/2018,Musicians,@MeekMill,RT @GovernorTomWolf: I support D.A. Larry Krasner’s position in the case of Robert Williams (Meek Mill). Our criminal justice system is in… +03/21/2018,Musicians,@MeekMill,RT @WendyWilliams: Meek Mill might be a free man soon! https://t.co/EeGNgIdQfk https://t.co/8ibiSQuTPu +03/19/2018,Musicians,@MeekMill,RT @chrisrock: Free MeekMill. Such a sad story. https://t.co/ZGiTwptE3V +03/18/2018,Musicians,@MeekMill,RT @lildurk: FREE MEEK ⏰ +03/16/2018,Musicians,@MeekMill,"RT @RickRoss: Meek Mill addresses corrupt prison system & moving to Atlanta in rare prison interview with ""Rolling Stone"" https://t.co/wwJP…" +03/15/2018,Musicians,@MeekMill,RT @RollingStone: Watch Meek Mill's cousins recall the rapper's horrific arrest https://t.co/N1gcI9O0hO https://t.co/3291rNEC4W +03/15/2018,Musicians,@MeekMill,RT @billboard: Prosecutors aren't opposed to freeing Meek Mill https://t.co/tTTAYCqYSQ https://t.co/XlHZ5u9aTb +07/01/2018,Sports_celeb,@Jumpman23,"Built for the blacktop. + +The #WhyNot Zer0.1 Low 'Black' is available now." +06/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 3 'International Flight' + +Shop 🇺🇸 https://t.co/fp1wZtfzaJ https://t.co/1hRXu9O4l0" +06/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 10 'White/University Red' + +Shop 🇺🇸 https://t.co/uOCJ7Fs3J0 https://t.co/Jbap55fzXO" +06/29/2018,Sports_celeb,@Jumpman23,"Frequent flyer. + +Explore the International Flight Collection, which pays tribute to three moments MJ elevated his g… https://t.co/MZFu3eFCYB" +06/28/2018,Sports_celeb,@Jumpman23,"Game for summer. + +Introducing the @RussWest44 #WhyNot Zer0.1 Low 'Black', dropping Sunday. https://t.co/mu4jolMKuW" +06/27/2018,Sports_celeb,@Jumpman23,"For the class of ’06. + +Inspired by @RussWest44’s high school days, the #AirJordan X ‘White/University Red’ drops Sa… https://t.co/tdf8R9tWxn" +06/26/2018,Sports_celeb,@Jumpman23,"RT @hornets: OFFICIAL: @KembaWalker is the 2017-18 NBA Sportsmanship Award Winner! + +⭐️⭐️ CONGRATS KEMBA! ⭐️⭐️ + +#BuzzCity x #NBAAwards http…" +06/26/2018,Sports_celeb,@Jumpman23,"RT @NBAonTNT: Russ has a message to all his fans that voted him for the 2017-2018 ""Best Style"" Award! https://t.co/zSjFQMfgVh" +06/26/2018,Sports_celeb,@Jumpman23,"""I took the doubt people had in me and let it fuel my fire."" - @VicOladipo  + +Learn how this year’s Most Improved Pl… https://t.co/Hwlsx3UfjR" +06/25/2018,Sports_celeb,@Jumpman23,"Designing a legacy. + +Discover the details behind the Jordan Legacy 312 and what this shoe means to designer Don C. #JUMPMAN" +06/25/2018,Sports_celeb,@Jumpman23,"Center stage. + +Explore how @billieeilish’s unique style starts with Jordans at Paris Fashion Week. #JUMPMAN" +06/23/2018,Sports_celeb,@Jumpman23,"Combining passion with performance. + +Explore the second #WhyNot collection from @RussWest44, debuted during Paris Fashion Week. #JUMPMAN" +06/23/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 12 'Michigan' + +Shop 🇺🇸 https://t.co/EbN8hyFc2c https://t.co/gUZF4287KC" +06/22/2018,Sports_celeb,@Jumpman23,Fit for fall. https://t.co/rcYNmX4IIi +06/22/2018,Sports_celeb,@Jumpman23,"Inspired by the court, led by the culture, built for the community. + +Russell Westbrook, Don C, and Billie Eilish br… https://t.co/xpFELPe9ai" +06/18/2018,Sports_celeb,@Jumpman23,"Flying high. + +Find out how the Wings Scholars Program is helping 26 incoming freshman begin their college journeys." +06/18/2018,Sports_celeb,@Jumpman23,"RT @aardodson: 26 high school students from across the country were recently named @Jumpman23 Wings Scholars, and awarded full rides to att…" +06/16/2018,Sports_celeb,@Jumpman23,"RT @russwest44: #FASHION KING 🔥🔥 These for you Mom, Thank you for inspiring me and showing me how fashion is done!!! #whynot In stores now!…" +06/16/2018,Sports_celeb,@Jumpman23,"Bow down. + +The @RussWest44 #WhyNot Zer0.1 'Fashion King' is available now." +06/14/2018,Sports_celeb,@Jumpman23,"On this day 20 years ago, the Boss won his 6th and final championship with a clutch jumper. + +In honor of that mome… https://t.co/gUKawnn5xK" +06/13/2018,Sports_celeb,@Jumpman23,"RT @TheNBPA: (7 of 12). + +The NBPA Best Side Hustle Award + + Can’t Knock the Hu$tle. Congrats @russwest44!! + +@purehoop illustrates The Brodi…" +06/12/2018,Sports_celeb,@Jumpman23,"All on the line. + +The #AirJordan XIV 'Last Shot' drops Thursday, 6/14 to celebrate the 20th anniversary of the Bos… https://t.co/GwWCy53TBw" +06/09/2018,Sports_celeb,@Jumpman23,RT @MooreMaya: It’s that time of year....Red Velvet cake Birthday shoes!!!!! So fun! Watch us hoop vs the Sun today at 2pm ET on NBA TV!! h… +06/09/2018,Sports_celeb,@Jumpman23,"Clutch gene. + +The #AJXXXII Low 'Last Shot' is available now." +06/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The Travis Scott x @Jumpman23 Air Jordan 4 + +Shop 🇺🇸 https://t.co/7HXjLecwv4 https://t.co/sA8eOtIK5q" +06/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 2 'Melo' + +Shop 🇺🇸https://t.co/vLkyGQFGAD https://t.co/I7sp51ToxG" +06/08/2018,Sports_celeb,@Jumpman23,"Fresh heat. + +The Women's #AirJordan III 'Particle Beige' is available now." +06/07/2018,Sports_celeb,@Jumpman23,"The closer. + +The #AirJordan XIV 'Last Shot' drops Thursday, 6/14 on the 20th anniversary of the Boss' final champi… https://t.co/8Qt9ahyT7E" +06/07/2018,Sports_celeb,@Jumpman23,"Back in style. + +See how @AlealiMay used classic LA hoops and the 90s as inspiration for this summer's hottest drops. #JUMPMAN" +06/07/2018,Sports_celeb,@Jumpman23,"Fully fitted. + +Preview the next two Jordan x @LEVIS collaborations, launching this month. https://t.co/RrpDIokJ0L" +06/07/2018,Sports_celeb,@Jumpman23,RT @dennyhamlin: Fireproof suede is hard to come by.. We have several different color variations but this is the material and shoe it’s cut… +06/06/2018,Sports_celeb,@Jumpman23,RT @trvisXX: JACK 4 HTX BLOCK PARTY https://t.co/wNEdhcllby +06/04/2018,Sports_celeb,@Jumpman23,"Coming up clutch. + +The #AJXXXII Low 'Last Shot' drops Saturday: https://t.co/MioWbRt7E7. https://t.co/ZCpcEN7JH9" +06/03/2018,Sports_celeb,@Jumpman23,"Back to '03. + +The #AirJordan II 'Melo' drops Saturday: https://t.co/WIPSqgQlAc. https://t.co/23VkuO4XG2" +06/02/2018,Sports_celeb,@Jumpman23,"All about the process. + +Explore how @bloody_osiris combines nostalgia and authenticity to style the #AirJordan XIV 'Last Shot'." +06/02/2018,Sports_celeb,@Jumpman23,"Taking it to the next level. + +Pulling inspiration from his brother’s graduation jacket and tie, the @RussWest44… https://t.co/K2D2U0CbU3" +06/01/2018,Sports_celeb,@Jumpman23,"Repping his hometown, @trvisXX introduces his first Jumpman collab. + +The #AirJordan IV 'Travis Scott' drops 6/9:… https://t.co/yd5Oy4qZAe" +06/01/2018,Sports_celeb,@Jumpman23,RT @russwest44: I am always inspired by you Brodie! The #WhyNot Zer0.1 “Masters” is dedicated to all the hard work you put in getting your… +06/01/2018,Sports_celeb,@Jumpman23,"Keep it real. + +The Michael Jordan Icon Edition Authentic Jersey is available now in North America:… https://t.co/4UbObkVfjO" +06/01/2018,Sports_celeb,@Jumpman23,"This is when it becomes a game of lasts. +Last games, last possessions, last shots. +To Love the Game is to own the… https://t.co/ycj88FbFoH" +06/01/2018,Sports_celeb,@Jumpman23,"Love the pressure. +Live for the Last Shot. https://t.co/R4f3cRgV69" +05/31/2018,Sports_celeb,@Jumpman23,"RT @TheNBPA: (3 of 12). + +The NBPA Freshest Award + +Style 👑. Congrats @russwest44!! + +Artist @purehoop, illustrates a portrait honoring the…" +05/28/2018,Sports_celeb,@Jumpman23,RT @NBA: 🙌 Jeff Green is an inspiration to all of us! #ThisIsWhyWePlay 🙌 https://t.co/193iSBDJzZ +05/27/2018,Sports_celeb,@Jumpman23,"🏆🏆🏆🏆🏆🏆 + +Pay tribute to the Boss and his final championship season with a limited edition jersey, available in North… https://t.co/KYVPam5oQo" +05/26/2018,Sports_celeb,@Jumpman23,"RT @GGGBoxing: My new official @Jumpman23 gear is still available, get yours before they run out again. +https://t.co/xYbhucnvTb https://t.…" +05/26/2018,Sports_celeb,@Jumpman23,"Made to impress, on and off the court. + +Read more about how the #AirJordan XI is suited for celebrating the journey." +05/26/2018,Sports_celeb,@Jumpman23,"Top honors. + +The #AirJordan XI 'Cap and Gown' is available now." +05/25/2018,Sports_celeb,@Jumpman23,"Made for medals. + +Get a closer look at the Jordan Zoom Tenacity 88 'Jasari' colorway, inspired by the shoe that dominated the '96 Olympics." +05/25/2018,Sports_celeb,@Jumpman23,"Fit for success. + +The #AirJordan XI 'Cap and Gown' drops tomorrow: https://t.co/Lf4IoKrdwK. https://t.co/yFJnaVJ9zZ" +05/25/2018,Sports_celeb,@Jumpman23,Can't beat heart. https://t.co/1hv7Gl8KyW +05/24/2018,Sports_celeb,@Jumpman23,"Stay authentic. + +The Michael Jordan Icon Edition Authentic Jersey drops in North America on 6/1:… https://t.co/t8qLngSqmk" +05/24/2018,Sports_celeb,@Jumpman23,RT @okcthunder: Thunder duo makes All-NBA. Russ (2nd team) for the 7th time and PG (3rd team) for the 4th time. #ThunderUp⚡️ https://t.co/0… +05/24/2018,Sports_celeb,@Jumpman23,"RT @spurs: LaMarcus Aldridge has been named to the league’s All-NBA Second Team. + +Read → https://t.co/fPsqSzioby https://t.co/A9VktSF7fM" +05/24/2018,Sports_celeb,@Jumpman23,"RT @Pacers: Add 2017-18 All-NBA Third Team to Vic's list of accomplishments this year ✅ + +A big congratulations to @VicOladipo! https://t.co…" +05/24/2018,Sports_celeb,@Jumpman23,"RT @Timberwolves: For the second-straight season, @JimmyButler is All-NBA. 🏅 https://t.co/v4BTnfzDB7" +05/24/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Art of a Champion + +The Women's @Jumpman23 Air Jordan 11 Low 'Rook to Queen' + +Shop 🇺🇸https://t.co/tHI2oF8HhM https://t.co/hy6…" +05/23/2018,Sports_celeb,@Jumpman23,"Top of the class. + +The #AirJordan XI 'Cap and Gown' drops Saturday: https://t.co/n54QmPbZhT. https://t.co/R4QmKeL6TV" +05/23/2018,Sports_celeb,@Jumpman23,"RT @Pacers: 🔒Led the NBA in steals and now named to the 2017-18 NBA All-Defensive First Team. + +Congrats Vic! https://t.co/eMxh1L8W4n" +05/23/2018,Sports_celeb,@Jumpman23,"👑 status. + +The Women's #AirJordan XI Low 'Rook to Queen' drops tomorrow: https://t.co/PKAQ7NDKHP. https://t.co/Sct0rtivxj" +05/23/2018,Sports_celeb,@Jumpman23,Doing it for H-Town. https://t.co/fgxgOIX61E +05/23/2018,Sports_celeb,@Jumpman23,"RT @MooreMaya: Oh, how far we’ve come! So excited to share this with the world & soar higher with my Jordan Brand Family https://t.co/CmPHs…" +05/22/2018,Sports_celeb,@Jumpman23,"@Raymondkenneth Hey @Raymondkenneth, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@doeyjavis Hey @doeyjavis, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@BenOlsem Hey @BenOlsem, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@kcantu20 Hey @kcantu20, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us with y… https://t.co/9cZIwIEUhB" +05/22/2018,Sports_celeb,@Jumpman23,"@BWash_22 Hey @BWash_22, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us with… https://t.co/8wYynVSoMP" +05/22/2018,Sports_celeb,@Jumpman23,"@AnnieB1513 Hey @AnnieB1513, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us wi… https://t.co/hT4ST8lucY" +05/22/2018,Sports_celeb,@Jumpman23,"@Morgs_theONE Hey @Morgs_theONE, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/D4rfzfjEo1" +05/21/2018,Sports_celeb,@Jumpman23,"@MsKathleenPerry Hey @MsKathleenPerry, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster… https://t.co/C25mMe5dSp" +05/21/2018,Sports_celeb,@Jumpman23,"@luramccoy81 Hey @luramccoy81, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us… https://t.co/HQ9t7lDApV" +05/21/2018,Sports_celeb,@Jumpman23,"@Lynx_Dynasty Hey @Lynx_Dynasty, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/yxux3DZT07" +05/21/2018,Sports_celeb,@Jumpman23,"@CoachWolfe13 Hey @CoachWolfe13, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/6Ujm5KuEf7" +05/21/2018,Sports_celeb,@Jumpman23,"@allieware22 @minnesotalynx @LA_Sparks @MooreMaya @WNBA Hey @allieware22, +We see you showing ❤️ to Maya Moore and w… https://t.co/kVS5PqDvTh" +05/21/2018,Sports_celeb,@Jumpman23,"@sportsiren @MooreMaya Hey @sportsiren, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poste… https://t.co/GSTMcmPcSO" +05/21/2018,Sports_celeb,@Jumpman23,"@Coach_LB_Brown Hey @Coach_LB_Brown, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster.… https://t.co/tnDv2zFtIB" +05/21/2018,Sports_celeb,@Jumpman23,"@ed_young_iii Hey @ed_young_iii, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/oA174Hxlkw" +05/21/2018,Sports_celeb,@Jumpman23,"@justicesikakane @WNBA @MooreMaya @minnesotalynx Hey @justicesikakane, +We see you showing ❤️ to Maya Moore and want… https://t.co/0AvZXfnpi4" +05/21/2018,Sports_celeb,@Jumpman23,"@houseofhenry Hey @houseofhenry, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/FmquTkpnFK" +05/21/2018,Sports_celeb,@Jumpman23,"The late Gary Warnett’s candid and prolific sneaker commentary made him one of the culture’s best writers. + +Read mo… https://t.co/BsaJmCSL4q" +05/20/2018,Sports_celeb,@Jumpman23,RT @SLAMonline: Time to soar. https://t.co/jkFRo8HRrw +05/20/2018,Sports_celeb,@Jumpman23,"No bird soars too high, +If she soars with her own wings. https://t.co/OVLkKlkoVi" +05/19/2018,Sports_celeb,@Jumpman23,"Where it all started. + +The #AirJordan I 'Homage to Home' is available now." +05/19/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 32 Low 'Neo' + +Shop 🇺🇸https://t.co/vGglzuSNIs https://t.co/8U2yIUPLyr" +05/19/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Fresh Take. + +The Women’s @Jumpman23 Air Jordan I Rebel XX + +Shop ‘Top 3’ 🇺🇸 https://t.co/ukkvrxHi5p + +Shop ‘Chicago’ 🇺🇸 htt…" +05/18/2018,Sports_celeb,@Jumpman23,"Ready to soar. + +4-time WNBA Finals Champion, @MooreMaya, is poised to build onto her legacy. https://t.co/aSgfm5rjAB" +05/18/2018,Sports_celeb,@Jumpman23,"Suited for summer. + +The #AirJordan I High Zip 'Mica Green' is available now." +05/16/2018,Sports_celeb,@Jumpman23,"New look, classic colorway. + +The Women's #AirJordan I Rebel XX 'Top 3' drops Saturday: https://t.co/HflFO059yO. https://t.co/0239r0lFGW" +05/16/2018,Sports_celeb,@Jumpman23,"Solidifying a title, a legacy and a legend. + +Celebrate the Boss’ last game as a Chicago Bull with a limited edition… https://t.co/W2OxPL3cxh" +05/16/2018,Sports_celeb,@Jumpman23,"Chi-town shoutout. + +The Women's #AirJordan I Rebel XX 'Chicago' drops Saturday: https://t.co/5NdmPElbAX. https://t.co/ycdpQAk2Rz" +05/15/2018,Sports_celeb,@Jumpman23,"Bringing it back. + +The #AirJordan I 'Homage to Home' drops Saturday: https://t.co/5jdM2cfRhT. https://t.co/rNuvQ25UO7" +05/15/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 14 'Desert Sand' + +Shop 🇺🇸 https://t.co/bScES5AVpC https://t.co/RQ68w2Yaw4" +05/15/2018,Sports_celeb,@Jumpman23,"This is the show before the show. +When conferences are claimed, +And each win is a step closer to history." +05/14/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 11 Low 'Binary Blue' + +Shop 🇺🇸https://t.co/PgGJi6fxQf https://t.co/rWaa7rJ3Zm" +05/12/2018,Sports_celeb,@Jumpman23,RT @russwest44: This one for My ManMan!! Make sure y’all grab the “NoNo” color way. Out Now!!! Love you Son! #nono #manman #whynot https://… +05/12/2018,Sports_celeb,@Jumpman23,"For Noah. + +Inspired by his son's birthstone, the @RussWest44 #WhyNot Zer0.1 'No No' is available now." +05/12/2018,Sports_celeb,@Jumpman23,"Next chapter. + +The #AirJordan III 'White/Red' is available now." +05/09/2018,Sports_celeb,@Jumpman23,"Next up. + +Cultural icon Edison Chen introduces the world to his protege and fashion up-and-comer, Elle Hu. #JUMPMAN" +05/09/2018,Sports_celeb,@Jumpman23,"This is when the Point God soars to new heights, +With sights set on a ring. https://t.co/kGI38tnOGN" +05/09/2018,Sports_celeb,@Jumpman23,Persistence pays off. Go get yours @CP3. https://t.co/vIrFgUTxes +05/07/2018,Sports_celeb,@Jumpman23,"A community cornerstone. + +The #AirJordan III 'White/Red' drops Saturday: https://t.co/sPGCHyiVpj. https://t.co/mvd5sp1u6O" +05/07/2018,Sports_celeb,@Jumpman23,"@cjallday_7 Cap ✅ +Gown ✅ +Kicks ✅" +05/06/2018,Sports_celeb,@Jumpman23,"When the stage gets bigger, +and momentum swings with every second." +05/05/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The Women's @Jumpman23 Air Jordan 1 'Satin Shattered Backboard' + +Shop 🇺🇸 https://t.co/coqBz3LOxF https://t.co/FXYplThTdW" +05/04/2018,Sports_celeb,@Jumpman23,"Made for those who shatter expectations. + +The Women's #AirJordan I 'Shattered Backboard' drops tomorrow:… https://t.co/lP4MSDefak" +05/03/2018,Sports_celeb,@Jumpman23,"Iconic inspiration. + +Reina Koyano describes how Jordans play an integral part in her illustrations. #JUMPMAN" +05/03/2018,Sports_celeb,@Jumpman23,@RedSox Mookie making noise. +05/02/2018,Sports_celeb,@Jumpman23,"Heat wave. + +The Women's #AirJordan I Premium 'Desert Sand' is available now." +05/01/2018,Sports_celeb,@Jumpman23,RT @russwest44: Do You. #whynot 🤷🏾‍♂️ Tag me when you customize your pair .... get creative cause @Jumpman23 is sending out Why Not? Tshirt… +05/01/2018,Sports_celeb,@Jumpman23,All that matters is you do you. #WhyNot https://t.co/Vc8wxKIx31 +05/01/2018,Sports_celeb,@Jumpman23,"Freestyle or stay the course. Make a statement with markers, pens or paint. #WhyNot https://t.co/Tp8ilrlTPs" +05/01/2018,Sports_celeb,@Jumpman23,"Start with a blank canvas. + +The @RussWest44 #WhyNot Zer0.1 'Do You' is available now. https://t.co/Kd1I9W4fig" +05/01/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 1 + +Shop 'Blue Moon' 🇺🇸 https://t.co/oh9ghTBg8X + +Shop 'Clay Green' 🇺🇸 https://t.co/l16CO4ORhT https…" +04/30/2018,Sports_celeb,@Jumpman23,"Late birthday present, @trvisXX. + +Coming soon. https://t.co/UlhHr5Y5KS" +04/30/2018,Sports_celeb,@Jumpman23,"@trvisXX Happy born day, fam." +04/30/2018,Sports_celeb,@Jumpman23,"Make it your own. + +The @RussWest44 #WhyNot Zer0.1 ‘Do You’ drops tomorrow with customization markers in every box. https://t.co/0txThvenAE" +04/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 3 'Tinker' + +Shop 🇺🇸 https://t.co/stcxqvlCzo https://t.co/MP0IhwJno0" +04/29/2018,Sports_celeb,@Jumpman23,"This is the second act. +When the field gets narrower, +And the margin for error gets even smaller." +04/29/2018,Sports_celeb,@Jumpman23,"RT @Jumpman23: This is when you leave it all on the court, +Or spend the summer wishing you did." +04/28/2018,Sports_celeb,@Jumpman23,"This is when you leave it all on the court, +Or spend the summer wishing you did." +04/28/2018,Sports_celeb,@Jumpman23,"Top flight. + +The #AirJordan XI Low 'Cool Grey' is available now." +04/28/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Art of a Champion + +The @Jumpman23 Air Jordan 1 'Pass the Torch' + +Shop 🇺🇸 https://t.co/ntsqWyhyEG https://t.co/JgaVosHYLn" +04/28/2018,Sports_celeb,@Jumpman23,“Series ain’t over.” - @VicOladipo https://t.co/Ou1xIYz83L +04/28/2018,Sports_celeb,@Jumpman23,.@VicOladipo means business. https://t.co/WL0q4IZkYG +04/27/2018,Sports_celeb,@Jumpman23,"More than a shoe. + +Discover the #AirJordan III’s journey from PE to the Hall of Fame and why its impact off the cou… https://t.co/KijwuIGgqF" +04/27/2018,Sports_celeb,@Jumpman23,"Thank you for your dedication to the next generation of flight, Mr. Lara. We're honored to be a part of your classr… https://t.co/dRcWFXNeCO" +04/27/2018,Sports_celeb,@Jumpman23,"RT @nikestore: MOP + +The @Jumpman23 Air Jordan 9 Melo + +Shop 🇺🇸 https://t.co/599hmzRhDu https://t.co/xVb4DMY0lY" +04/26/2018,Sports_celeb,@Jumpman23,RT @JabariParker: Humbled to be named a finalist for this year's NBA Community Assist Award for my work with @MilwaukeeMPS. Show your suppo… +04/26/2018,Sports_celeb,@Jumpman23,RT @mconley11: Honored to be recognized as a finalist for the #NBACommunityAssist Award again! I would love your support by sharing this an… +04/26/2018,Sports_celeb,@Jumpman23,Brodie’s not done yet. https://t.co/GXE6w9EpAU +04/26/2018,Sports_celeb,@Jumpman23,What he said 👇 https://t.co/HwkNMmS88H +04/25/2018,Sports_celeb,@Jumpman23,"This is when failure becomes fuel for next season, +And glory can be short lived." +04/24/2018,Sports_celeb,@Jumpman23,"Showing out. + +@AlealiMay talks summer looks as she and her friends gear up for festival season. #JUMPMAN" +04/24/2018,Sports_celeb,@Jumpman23,"RT @aardodson: Since 2015, @Jumpman23's Wings Program has given over 200 kids full rides to college. + +Getting there once seemed bleak for…" +04/24/2018,Sports_celeb,@Jumpman23,Dimes on dimes. https://t.co/jscHRDSRQG +04/23/2018,Sports_celeb,@Jumpman23,"Cool and collected. + +The #AirJordan XI Low 'Cool Grey' drops Saturday: https://t.co/KcFSBTaIKN. https://t.co/TivtqmeGv6" +04/23/2018,Sports_celeb,@Jumpman23,One Moore for the trophy case. https://t.co/lPfeaOPK7G +04/22/2018,Sports_celeb,@Jumpman23,Keeping the dream alive. https://t.co/ujOPFPLQNx +04/22/2018,Sports_celeb,@Jumpman23,Rising to the occasion. https://t.co/GKhrt6xc7a +04/20/2018,Sports_celeb,@Jumpman23,"For Chicago. + +Discover how classic colorways combine to make up the Boss' signature look on the Air Jordan I 'Homag… https://t.co/3m8D0hRa32" +04/20/2018,Sports_celeb,@Jumpman23,"A classic returns. + +The #AirJordan X 'Shadow' is available now." +04/19/2018,Sports_celeb,@Jumpman23,"Highlight reel. + +The Best Hand in the Game collection introduces four new takes on the Air Jordan I. https://t.co/wQAsG3rG4x" +04/19/2018,Sports_celeb,@Jumpman23,Take notes. https://t.co/uVSNh8qC3M +04/19/2018,Sports_celeb,@Jumpman23,Thunder and lightning. https://t.co/Tfyvfq4UCS +04/18/2018,Sports_celeb,@Jumpman23,'Tis the season. https://t.co/De4FaK8N8J +04/18/2018,Sports_celeb,@Jumpman23,"Championship fit. + +The #AirJordan X 'Shadow' drops Friday in full family sizing: https://t.co/n6GTtgqN49. https://t.co/PjVeDjshPB" +04/17/2018,Sports_celeb,@Jumpman23,Everyone wants to be Brodie. https://t.co/kvWq8wk1mf +04/17/2018,Sports_celeb,@Jumpman23,".@GGGBoxing has only one special ingredient. +#JUMPMAN https://t.co/1SsyTf5BYL" +04/16/2018,Sports_celeb,@Jumpman23,"Different mindset. + +Discover what drives @CarmeloAnthony and how he adjusted his game to get back to the playoffs. #JUMPMAN" +04/16/2018,Sports_celeb,@Jumpman23,Let 'em talk. https://t.co/3En2ETaYcr +04/16/2018,Sports_celeb,@Jumpman23,"RT @PlayersTribune: .@VicOladipo knows a thing or two about winning in Indiana. + +He and the @Pacers are looking to make some noise in the…" +04/15/2018,Sports_celeb,@Jumpman23,Ice runs through @VicOladipo’s veins. https://t.co/OqUorNTRps +04/15/2018,Sports_celeb,@Jumpman23,"RT @carmeloanthony: FROZEN MOMENT - NEW CHAPTER +@Jumpman23 +#STAYME7O +#JUMPMAN https://t.co/6tXrviSCi6" +04/14/2018,Sports_celeb,@Jumpman23,The season starts now. #NBAPlayoffs +04/14/2018,Sports_celeb,@Jumpman23,"This is when the Love of the Game shines through. +From stadium to street court, +Blacktop to your own backyard;" +04/14/2018,Sports_celeb,@Jumpman23,"This is when process meets proving ground, +Pressure meets opportunity, +And patience pays off." +04/14/2018,Sports_celeb,@Jumpman23,This is when lights get brighter and fans get louder. +04/14/2018,Sports_celeb,@Jumpman23,"This is when MVP’s become champions, +idols become rivals, +And careers become legacies." +04/14/2018,Sports_celeb,@Jumpman23,To those who Love the Game… +04/14/2018,Sports_celeb,@Jumpman23,"Standout. + +The #AirJordan I 'Shadow' is available now." +04/13/2018,Sports_celeb,@Jumpman23,"Golden rule. + +The Women's #AirJordan XI Low 'Rose Gold' is available now." +04/12/2018,Sports_celeb,@Jumpman23,"Original one. + +The #AirJordan I 'Shadow' drops Saturday: https://t.co/VGJgVLuCWy. https://t.co/xCTCkZ0dWd" +04/12/2018,Sports_celeb,@Jumpman23,"If you don’t want it, @russwest44 is gonna get it. + +The Brodie has the triple-double crown, now he’s going for a r… https://t.co/JBpfLChIzN" +04/12/2018,Sports_celeb,@Jumpman23,Reign on. #WhyNot https://t.co/mvm5IrspIV +04/12/2018,Sports_celeb,@Jumpman23,"Made for this. + +Celebrate the Brodie and his triple-double legacy with the @RussWest44 #WhyNot Zer0.1 '3D King'." +04/11/2018,Sports_celeb,@Jumpman23,"Giving back. + +Chris Young and Roy Walker talk about the values of mentorship and how the community is built around… https://t.co/9SVnZTlrAm" +04/11/2018,Sports_celeb,@Jumpman23,"@KristineLeahy @russwest44 We see you, Kristine. The ‘Why Not’ Tour shirts were hot, but we have the last one in a… https://t.co/3k0YRtISF1" +04/10/2018,Sports_celeb,@Jumpman23,"Original remastered. + +Three iconic colorways return in the Women's 2018 Summer collection. https://t.co/8FBkG3HITb" +04/10/2018,Sports_celeb,@Jumpman23,"RT @NBA: Clinched! + +The @okcthunder come back from 18 down for the 115-93 W and a playoff berth! + +Russ: 23 PTS, 18 REB, 13 AST +PG: 27 PTS…" +04/10/2018,Sports_celeb,@Jumpman23,"A look back on the legendary day that @RussWest44 took the triple-double 👑. + +https://t.co/VUOaL6ZXEC" +04/09/2018,Sports_celeb,@Jumpman23,"Why not break records? + +On 4.9.17 @RussWest44 made history. Recognize greatness with the #WhyNot Zer0.1 ‘3D King’:… https://t.co/7yWHObwAIp" +04/09/2018,Sports_celeb,@Jumpman23,"Path to glory. + +Take a closer look at the moments that inspired the Art of a Champion collection. https://t.co/USQE0pBKnO" +04/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: On this day last year, @RussWest44 changed history forever. Celebrate the day the Brodie became the Triple-Double King with…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Hand over the crown. + +@EmmittWilliams6 drops 44 points, passing @KingJames for the most ever in the Boy's Jordan Brand…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 144 +⚫️: 136 + +Victory royale. The Home team wraps up the win in the 17th annual Jordan Brand Classic. #NEXTvsNEXT htt…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 86 +⚫️: 81 + +Crunch time. The boys teams are leaving it all on the floor with 14 minutes left in the game. #NEXTvsNEXT" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 89 +⚫️: 88 + +Comeback season. The Home team overcomes a double-digit deficit to lock up the W. #NEXTvsNEXT https://t.c…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 54 +⚫️: 44 + +On the clock. The girls teams are putting in work with one half to go. #NEXTvsNEXT" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Calm before the storm. #NEXTvsNEXT + +Girls: 2:30pm ET on WatchESPN +Boys: 5:00pm ET on ESPN2 and WatchESPN https://t.co/Bs…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: New 🔥 + +The Class of XXXII is set for the main stage in their AJXXXII PEs. #NEXTvsNEXT https://t.co/rUnE5HmfZ7" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Ready for the spotlight. + +Watch the top prospects in the country battle for bragging rights at 5:00pm ET on ESPN2 and Wa…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Gametime. + +Watch the top prospects in the country battle for bragging rights at 2:30pm ET on WatchESPN. #NEXTvsNEXT htt…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Ready to ball. + +The boys from the Class of XXXII scrimmage in preparation for tomorrow’s game at 5:00pm ET on ESPN2 and…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Gameday prep. + +The girls from the Class of XXXII hit the court one more time before tomorrow’s tip-off at 2:30 ET. #NEXT…" +04/07/2018,Sports_celeb,@Jumpman23,"Under the radar. + +The #AJXXXII 'Stealth' is available now." +04/07/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 18 'Gym Red/Black' + +Shop 🇺🇸 https://t.co/qfv7k0pvBv https://t.co/mhB9S7DL6V" +04/07/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Welcome to JBC. + +Peep our Instagram Story to see the next wave kick it off court. #NEXTvsNEXT https://t.co/82e9uJjmlh" +04/06/2018,Sports_celeb,@Jumpman23,Summer heat. 🔥 https://t.co/OSs5MKDK23 +04/06/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Icons Evolved + +The Women's @Jumpman23 @nikesportswear 'The 1 Reimagined' Collection + +Shop 🇺🇸 https://t.co/Hd7tmUDFP6 https:/…" +04/06/2018,Sports_celeb,@Jumpman23,"No shortcuts to the top. + +@CP3 talks playing JV ball and his journey to the league. #JUMPMAN" +04/06/2018,Sports_celeb,@Jumpman23,The closer. https://t.co/SGdUvyY7Xa +04/05/2018,Sports_celeb,@Jumpman23,"RT @NickDePaula: Inside the delayed timeline and process of designing Chris Paul’s newest Jordan sneaker, the CP3.11. + +@CP3 becomes just th…" +04/03/2018,Sports_celeb,@Jumpman23,Going for history. #GoBlue https://t.co/XSTJ1IUzvT +04/02/2018,Sports_celeb,@Jumpman23,"High key. + +The Women's #AirJordan I Lifted 'Rose Gold' is available now: https://t.co/mc51UU0tW7. https://t.co/Q0HaBJGxs6" +04/01/2018,Sports_celeb,@Jumpman23,Not done yet. #GoBlue https://t.co/5jHRRB4Ivo +03/31/2018,Sports_celeb,@Jumpman23,"Leave it on the floor. + +@umichbball is ready to earn their spot in the National Championship. #GoBlue" +03/31/2018,Sports_celeb,@Jumpman23,Call him a Hall of Famer. https://t.co/6gpNOS20Fh +03/31/2018,Sports_celeb,@Jumpman23,"Searching for baskets. + +The #AirJordan XI Low 'Iridescent' is available now." +03/29/2018,Sports_celeb,@Jumpman23,"Ready for the show. + +The Jordan Baseball roster is geared up for Opening Day. https://t.co/H1yKmFUjGv" +03/29/2018,Sports_celeb,@Jumpman23,"RT @SLAMonline: The new all-time leading scorer in Hornets history! + +Congrats to @KembaWalker https://t.co/OJT2fCAbSF" +03/29/2018,Sports_celeb,@Jumpman23,"Proving ground. + +Al Jafiliya is where players in Dubai put their love for the game on full display." +07/02/2018,Sports_celeb,@kobebryant,Welcome to the family @KingJames #lakers4life #striveforgreatness @JeanieBuss @MagicJohnson and RP well done!!! 🙌🏾 +06/26/2018,Sports_celeb,@kobebryant,Hydration fit for an MVP. Congrats @JHarden13. Check @DrinkBODYARMOR for your limited-edition bottle.… https://t.co/DVnyOBTzqr +06/22/2018,Sports_celeb,@kobebryant,Accept that the present is made to learn from the past. Watch the latest episode of Musecage Basketball Network her… https://t.co/Heqm9LU6L3 +06/22/2018,Sports_celeb,@kobebryant,My man @icecube getting back at it with the second season of @thebig3! https://t.co/mNM0yNKKEJ +06/22/2018,Sports_celeb,@kobebryant,"Attention @NBADraft Class of 2018, your first assignment is to watch tonight’s episode of #Detail. We’re going back… https://t.co/awhZBUKsWV" +06/12/2018,Sports_celeb,@kobebryant,"It's a wrap on the @warriors @cavs #NBAFinals so for the next episode of #DETAIL, we're looking ahead to next seaso… https://t.co/ShYBw349Cd" +06/12/2018,Sports_celeb,@kobebryant,RT @ZachLowe_NBA: What does Kevin Durant want? https://t.co/h11FglePQ6 +06/11/2018,Sports_celeb,@kobebryant,"RT @AlexKennedyNBA: .@KobeBryant discussed his influence on today's NBA players, whether teams have tried luring him out of retirement, how…" +06/11/2018,Sports_celeb,@kobebryant,"WE had to face the Spurs EVERY post season pretty much. Not to mention the first super team in Boston but hey, what… https://t.co/SgLpYOJfJz" +06/10/2018,Sports_celeb,@kobebryant,Will power https://t.co/BO9zTSmI2k +06/05/2018,Sports_celeb,@kobebryant,Wow 🙌🏾 https://t.co/r29Jqv18qo +06/03/2018,Sports_celeb,@kobebryant,On tonight's episode of DETAIL... We're breaking down @kevinlove's defensive looks in this @cavs @warriors series.… https://t.co/xaX0NU9Ky3 +06/01/2018,Sports_celeb,@kobebryant,Athletes as creators? Yep. Met another one this week. Congrats @MalcolmJarod on your children's book about having a… https://t.co/WE1FQFRU3s +06/01/2018,Sports_celeb,@kobebryant,💩 play. Flush it. Move on #nbafinals2018 +05/31/2018,Sports_celeb,@kobebryant,#growup https://t.co/6kVVV7bzSa +05/31/2018,Sports_celeb,@kobebryant,"It's time for the #NBAFinals and the next episode of DETAIL is up on @espn+. This time, we're looking at how… https://t.co/3JeoxKb3SI" +05/29/2018,Sports_celeb,@kobebryant,"""The Mamba Mentality: How I Play"" book comes out October 23, 2018! Learn how I approached the process and the craft… https://t.co/uUOymSgLKk" +05/28/2018,Sports_celeb,@kobebryant,"RT @alexbazzell24: First look of @PHEEsespieces new, release point. @kobebryant can validate this isn’t a fluke lol she hit 20+ in a row w/…" +05/28/2018,Sports_celeb,@kobebryant,#Annie #Oscar #Emmy safe to say I’m focused on another mountain but I’m guessing it’s hard to fathom athletes suppo… https://t.co/3YQpCHhH67 +05/28/2018,Sports_celeb,@kobebryant,We can enjoy one without tearing down one. I love what he’s doing. Don’t debate what can’t be definitively won by a… https://t.co/MHjvujWPuB +05/28/2018,Sports_celeb,@kobebryant,#Lebranium 👏🏾 +05/28/2018,Sports_celeb,@kobebryant,🙏🏾 https://t.co/X9K8jHnkmQ +05/28/2018,Sports_celeb,@kobebryant,#mambamentality 🙏🏾 #Congrats https://t.co/pQdn0mISDH +05/27/2018,Sports_celeb,@kobebryant,"RT @ConnecticutSun: New career high ✔️ + +@rachelbanham_1 showed up to work last night, locking in 14 points. https://t.co/2ZQ4yhyzNk" +05/26/2018,Sports_celeb,@kobebryant,Get em lil sis 🙌🏾 #goldmamba https://t.co/rAwJhtT8as +05/25/2018,Sports_celeb,@kobebryant,👀 @FCHWPO We're looking at the @celtics pushing hard in transition vs the @cavs in the next episode of DETAIL. It'… https://t.co/h8VLBfCeIm +05/25/2018,Sports_celeb,@kobebryant,"RT @ZachLowe_NBA: ""There is no way we can do what we do without him."" What Trevor Ariza, always playing and rarely discussed, means to the…" +05/22/2018,Sports_celeb,@kobebryant,👀 @StephenCurry30. Check out the newest Detail on the @ESPN+ app from Sunday's @warriors @HoustonRockets game. We… https://t.co/BgNnUtFrIQ +05/20/2018,Sports_celeb,@kobebryant,🙌🏾 https://t.co/g1pbTIYoZz +05/19/2018,Sports_celeb,@kobebryant,Un grande. Un mito @gianluigibuffon @juventusfc #buffon #juve +05/18/2018,Sports_celeb,@kobebryant,"RT @DrinkBODYARMOR: Basketball Legend @DianaTaurasi is #ObsessedWithBetter. 🏀🔥🐐 +Welcome to #TeamBODYARMOR. #BODYARMORLYTE +cc: @KobeBryant 🔈…" +05/17/2018,Sports_celeb,@kobebryant,Many thanks to @TheView for inviting me to the show to meet the amazing Thompson family. I'm honored to help them r… https://t.co/CLhBxUfBhq +05/17/2018,Sports_celeb,@kobebryant,🙏🏾 despite me calling them the evil empire while I was playing lol @espn has been a GREAT partner #moretocome https://t.co/DKfGC5lVlG +05/17/2018,Sports_celeb,@kobebryant,Why? Because I am incapable of coming up with and writing an idea on my own? #dearbasketball #detail #myideas… https://t.co/BjNnPEqtDq +05/17/2018,Sports_celeb,@kobebryant,👀@jaytatum0 is the next subject of DETAIL. Watch my analysis from Game 2 of the Eastern Conference Finals on the E… https://t.co/ar4wYFUgLc +05/13/2018,Sports_celeb,@kobebryant,Thank you. Will do #Detail https://t.co/JvT2cOhR1R +05/13/2018,Sports_celeb,@kobebryant,🙏🏾 #detail https://t.co/SUTvXhU3B8 +05/13/2018,Sports_celeb,@kobebryant,Haha that’s a good look @Arike_O #mambabarking lol https://t.co/rqPxTM2x1I +05/13/2018,Sports_celeb,@kobebryant,Yup #bookem https://t.co/4uTIH9N68G +05/12/2018,Sports_celeb,@kobebryant,"👀@KingJames In the next episode of Detail, I take a look at Cavs/Celtics regular season games before they head into… https://t.co/LugzwXEdBg" +05/12/2018,Sports_celeb,@kobebryant,💯 https://t.co/FwaOi0ftwJ +05/12/2018,Sports_celeb,@kobebryant,Tomorrow https://t.co/rk1mMEMK3e +05/11/2018,Sports_celeb,@kobebryant,🙌 @paugasol https://t.co/FYVk5odSHF +05/06/2018,Sports_celeb,@kobebryant,👀 @Jrue_Holiday11 is the focus for DETAIL's newest episode. Watch my analysis of Friday night's game now on the ESP… https://t.co/KfafKgOEWe +05/03/2018,Sports_celeb,@kobebryant,Lol Saturday #Detail https://t.co/5ftIsJeAOX +05/01/2018,Sports_celeb,@kobebryant,👀 @spidadmitchell is the focus for DETAIL's newest episode. Watch my analysis of yesterday's game now on the ESPN+… https://t.co/nMRpyALeEF +04/23/2018,Sports_celeb,@kobebryant,@BelieveInBlopp Sunday #Detail +04/22/2018,Sports_celeb,@kobebryant,Hahaha #congrats #round2 https://t.co/8aR028E0F4 +04/20/2018,Sports_celeb,@kobebryant,Ha! Next #detail episode will be the 30th. I haven’t decided which player will be the focus. https://t.co/N0zVcSZJUq +04/19/2018,Sports_celeb,@kobebryant,🙏🏾 #coachpop +04/18/2018,Sports_celeb,@kobebryant,"Thanks @Gatorade, @DrinkBODYARMOR will take it from here... #ObsessedWithBetter #ObsessionIsNatural @JHarden13… https://t.co/A2P5mk4VP5" +04/18/2018,Sports_celeb,@kobebryant,#ObsessedWithBetter #obsessionisnatural @DrinkBODYARMOR @darrenrovell https://t.co/CQRP827nbi +04/17/2018,Sports_celeb,@kobebryant,Nah... I coach with content #Detail https://t.co/X8z7i4UJp8 +04/17/2018,Sports_celeb,@kobebryant,My man (Denzel voice) #DETAIL https://t.co/sD2aKshSws +04/17/2018,Sports_celeb,@kobebryant,That’s what I LOVE to hear @mrcramher If he can start understanding these concepts at 12 then how high will his bas… https://t.co/EUtAiZRgzO +04/17/2018,Sports_celeb,@kobebryant,🙏🏾 #detail https://t.co/Gor8FfD4CS +04/16/2018,Sports_celeb,@kobebryant,👀 @demar_derozan #Detail. Watch Episode 2 now on ESPN+ https://t.co/qzWPnGEJUa +04/15/2018,Sports_celeb,@kobebryant,#BEYCHELLA +04/12/2018,Sports_celeb,@kobebryant,"Determination wins games, but Detail wins championships...Check out Detail, our new show from Granity Studios, on E… https://t.co/HdZUd5izg1" +04/11/2018,Sports_celeb,@kobebryant,LOVE IT https://t.co/H80FOjRuhm +04/09/2018,Sports_celeb,@kobebryant,Congrats @ivypochoda 🙌 https://t.co/nkMq703BZ5 +04/06/2018,Sports_celeb,@kobebryant,"RT @TheEllenShow: Just shooting some hoops with the star of the NCAA season @Arike_o, @KobeBryant and @IceCube. No big deal. https://t.co/D…" +04/05/2018,Sports_celeb,@kobebryant,"RT @VandyWBB: What @kobebryant said 👇🏽👇🏽👇🏽 + https://t.co/SmrYab39P9" +04/04/2018,Sports_celeb,@kobebryant,Wow! Dear Basketball nominated for three Sports Emmys and a Webby! Thank you for keeping the love going for our an… https://t.co/KKl22R3UNF +04/03/2018,Sports_celeb,@kobebryant,Congrats @NovaMBB #champs 🙌 https://t.co/2xySr5rhCA +04/02/2018,Sports_celeb,@kobebryant,WOW! @Arike_O #lifecomplete #MambaMentality +04/02/2018,Sports_celeb,@kobebryant,@Arike_O WOW +03/31/2018,Sports_celeb,@kobebryant,Shoutout to two of my all time fav @UConnWBB players on the end of an amazing collegiate career @KayNurse11 @MochaTrapuccino 🙌🙌 +03/31/2018,Sports_celeb,@kobebryant,Nah... it’s complete by finishing the job on Sunday @Arike_O #MambaMentality https://t.co/pvL95JCZHn +03/31/2018,Sports_celeb,@kobebryant,@NancyLieberman @ncaawbb Great to catch up with you @NancyLieberman and witness two epic games. The future of women… https://t.co/HGiIsUvpUd +03/31/2018,Sports_celeb,@kobebryant,Big time shot Arike! We are a @UConnWBB family but we love seeing great players making great plays. I know my lil s… https://t.co/pH6cpKARhA +03/30/2018,Sports_celeb,@kobebryant,From the Book of Antetokounmpo: The greatest gift is understanding HOW to use the gifts we’ve been given.… https://t.co/qKLB96eyAY +03/22/2018,Sports_celeb,@kobebryant,👀 @DeMar_DeRozan #kobe360 #MambaArmy https://t.co/jSuvuO3LTY +03/16/2018,Sports_celeb,@kobebryant,I LOVED IT 🙌 https://t.co/o4cfzMlh3c +03/16/2018,Sports_celeb,@kobebryant,Well deserved @tomi_adeyemi I read it in just about a day!! LOVED it #ChildrenofBloodandBone #congrats https://t.co/8wTh0OwKq2 +03/09/2018,Sports_celeb,@kobebryant,Jimmy dresses up my Oscar and I talk about what’s coming next - tonight on ABC #KIMMEL #DearBasketball https://t.co/OS2gZrZJnb +03/04/2018,Sports_celeb,@kobebryant,🙏🏾🙏🏾 https://t.co/5KH8psknD0 +03/03/2018,Sports_celeb,@kobebryant,🙌 @33katielou @UConnWBB https://t.co/mDLwSnF2cE +03/02/2018,Sports_celeb,@kobebryant,RT @judyseto: You too can get championship care for your injuries and help to prevent future ones. #GetPT1st @MoveForwardPT @kobebryant htt… +03/01/2018,Sports_celeb,@kobebryant,"When the world stops, there’s only one option - #ChooseGo #Nike https://t.co/JKJsrBpbBU" +03/01/2018,Sports_celeb,@kobebryant,Cheryl Boone Isaacs 🙌 #ICONMANN https://t.co/iHCRPNJ8AV +03/01/2018,Sports_celeb,@kobebryant,Lace up. Get out. #ChooseGo https://t.co/Yem7pKthUW +02/16/2018,Sports_celeb,@kobebryant,On my way LA! https://t.co/TZUWXqpTo3 +02/15/2018,Sports_celeb,@kobebryant,"Shark or Seal, Lion or Gazelle, Wolf or Sheep...which one are you? Watch the latest episode of Musecage Basketball… https://t.co/SVWmlY1hMY" +02/13/2018,Sports_celeb,@kobebryant,"RT @UConnWBB: BIG NEWS! CD will be inducted into the Women's Basketball Hall of Fame!! Congrats CD!! + +@WBHOF // #UConnNation // #DemandMor…" +02/12/2018,Sports_celeb,@kobebryant,Proud to have my own Granity Studios be a part of the Evolve Entertainment Fund. L.A. is a global hub of creativity… https://t.co/SzEklCEDrd +02/12/2018,Sports_celeb,@kobebryant,"Happy birthday to the 🐐, my muse, my mentor and friend @RealBillRussell" +02/09/2018,Sports_celeb,@kobebryant,Much luv to @JordanClarksons and @Larrydn22 two of my fav young guns. Do great things! You know where to find me sh… https://t.co/kVBqH4glfw +02/08/2018,Sports_celeb,@kobebryant,RT @Eagles: Watch live as the World Champion Philadelphia Eagles celebrate the city's first-ever Super Bowl. https://t.co/sctJ7uEuDp +02/08/2018,Sports_celeb,@kobebryant,I wish I could be there @greengoblin but building a studio from the ground up got me in #Mambamode not to mention m… https://t.co/fDBShmMf9N +02/07/2018,Sports_celeb,@kobebryant,Loved all the Protro thoughts. @BrianPatrickP @ImGeraLd @AirMikey were fastest and closest. Congrats and please hit… https://t.co/dJKTWszLLF +02/07/2018,Sports_celeb,@kobebryant,Dream Big things then Do Big things @WNBAPrez the @WNBA future is bright https://t.co/DrpdN2SbQh +02/07/2018,Sports_celeb,@kobebryant,Kobe 1 Protro. 2005 design. Modern day technology. Drops Feb. 17. #yourewelcome https://t.co/ltNbRYqBM2 +02/07/2018,Sports_celeb,@kobebryant,Protro = Performance Retro +02/07/2018,Sports_celeb,@kobebryant,🙏🏾 https://t.co/6lHlUpKV19 +02/06/2018,Sports_celeb,@kobebryant,"RT @jemelehill: Spent this morning chatting w/ legend @kobebryant. Got his thoughts on his relationship w/ Bill Russell, the evolution of b…" +02/06/2018,Sports_celeb,@kobebryant,"RT @TheUndefeated: Be a part of our live audience taping for our BHM special #DearBlackAthlete in Birmingham, Ala. on Feb. 7. +Doors open a…" +02/05/2018,Sports_celeb,@kobebryant,What does the word “Protro” mean? 🤔 Special prize to the first to reply with the correct guess. +02/05/2018,Sports_celeb,@kobebryant,YES!!!!!!!!!!!! #EAGLES #SUPERBOWLCHAMPS #PHILLY YES!!!!!!!!!!!!!!!!! +02/04/2018,Sports_celeb,@kobebryant,It’s go time #EaglesNation #FlyEagleFly +02/04/2018,Sports_celeb,@kobebryant,🙌 https://t.co/bMubNoZTZ0 +02/04/2018,Sports_celeb,@kobebryant,💪 https://t.co/gp5JbAZx2h +02/03/2018,Sports_celeb,@kobebryant,🙌 @VULions https://t.co/3SIgKM1VgF +02/02/2018,Sports_celeb,@kobebryant,Yup! I LOVE it @DrinkBODYARMOR #fam #ObsessionIsNatural https://t.co/Qq599gJq14 +02/01/2018,Sports_celeb,@kobebryant,Congrats and well deserved @SerenaWinters wish you nothing but epicness!! #laker4life #brightfuture https://t.co/b4sIB2VYbx +02/01/2018,Sports_celeb,@kobebryant,@MilesBrown 👍 #Blackish +02/01/2018,Sports_celeb,@kobebryant,Thank you for having me! I learned so much in just the one day!@violadavis you are truly one of the greats 🙌… https://t.co/oe8OD8w8TU +01/31/2018,Sports_celeb,@kobebryant,Rest In Peace my brother 🙏🏾#RasualButler +01/31/2018,Sports_celeb,@kobebryant,@JHarden13 #60 #tripdub @DrinkBODYARMOR #obsessionisnatural +01/30/2018,Sports_celeb,@kobebryant,Great to witness the whole @shondarhimes family doing work today. Happy early bday @kerrywashington! https://t.co/ZPJuWP8vBV +01/29/2018,Sports_celeb,@kobebryant,Congrats to my man @kendricklamar on a big night last night #GrammyAwards #damn +01/28/2018,Sports_celeb,@kobebryant,Simple @rogerfederer = 🐐 #AustralianOpen +01/27/2018,Sports_celeb,@kobebryant,Get healthy @boogiecousins You will comeback stronger. If you need anything on my end just holla 🙏🏾 +01/24/2018,Sports_celeb,@kobebryant,From #Akron to #30k @KingJames well done my brotha +01/23/2018,Sports_celeb,@kobebryant,What?? This is beyond the realm of imagination. It means so much that the @TheAcademy deemed #DearBasketball worthy… https://t.co/dC7Yxkcioo +01/22/2018,Sports_celeb,@kobebryant,Getting there wasn’t the goal @Eagles let’s finish the job #focus #superbowl +01/21/2018,Sports_celeb,@kobebryant,RT @serenawilliams: I've conquered a lot of things... blood clots in my lungs- twice... knee and foot surgeries... winning grand slams bein… +01/21/2018,Sports_celeb,@kobebryant,#clutch https://t.co/W2d1gdP0eI +01/19/2018,Sports_celeb,@kobebryant,"RT @MSU_WBasketball: 👀 the alternate @Nike uni’s and @kobebryant AD’s 👟 we’ll be rocking on Saturday 🔥 +#GoGreen #SwooshFam #Nike https://t…" +01/16/2018,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: Congrats to @Maddie_Mastro on qualifying to rep the USA in PyeongChang. 🇺🇸🇺🇸🇺🇸 #TeamBODYARMOR https://t.co/HSVMmmI6O0 +01/15/2018,Sports_celeb,@kobebryant,🙌 https://t.co/4wsJCmOuGL +01/15/2018,Sports_celeb,@kobebryant,Keep moving! #ThankYouMLK50 https://t.co/tdbHQlQb3s +01/12/2018,Sports_celeb,@kobebryant,"""Detail"" - my new show from Granity Studios - hits ESPN in March. Viewers can expect to learn how the pros better… https://t.co/TWVweCfePz" +01/12/2018,Sports_celeb,@kobebryant,Have you seen #DearBasketball yet? Let me know what you think below and check out the #BTS documentary!… https://t.co/Rcy0Kh9WMF +01/11/2018,Sports_celeb,@kobebryant,#16 https://t.co/7xS5IKVrWl +01/05/2018,Sports_celeb,@kobebryant,"“You gave a six-year-old boy his Laker dream, and I’ll always love you for it.” https://t.co/J0hxcfGtLW… https://t.co/I2ykijUseH" +01/05/2018,Sports_celeb,@kobebryant,Catch #Kimmel tonight on ABC! #DearBasketball https://t.co/fYb5FZbsrm +01/04/2018,Sports_celeb,@kobebryant,Shooting is the key that opens every door the game has to offer. Watch the latest episode of Musecage Basketball Ne… https://t.co/pU8oVw9sL6 +01/03/2018,Sports_celeb,@kobebryant,#DeRozan https://t.co/iowndyuCwQ +12/30/2017,Sports_celeb,@kobebryant,Working with @GlenKeanePrd & John Williams on #DearBasketball was surreal. So much heart and soul went into this sp… https://t.co/1fQRdzYWbi +12/28/2017,Sports_celeb,@kobebryant,RT @ramonashelburne: I always love when @ZachLowe_NBA nerds out on jerseys. But nothing about the Lakers new 🐍 uniforms nerdy. https://t.co… +12/28/2017,Sports_celeb,@kobebryant,RT @espn: Mamba Mentality inspired. https://t.co/WdMioPOtFk +12/23/2017,Sports_celeb,@kobebryant,Evolution or extinction...this is the way of ‘The Arc’. Watch the latest episode of Musecage Basketball Network her… https://t.co/OpEghnmbF2 +12/23/2017,Sports_celeb,@kobebryant,A new season of Musecage Basketball Network premieres tonight on @espn after the game! #MBN https://t.co/2H8Ml1N6nN +12/22/2017,Sports_celeb,@kobebryant,I couldn’t imagine anyone else directing and animating something so personal to me. Thank you @glenkeaneprd… https://t.co/CN2upGzeEg +12/22/2017,Sports_celeb,@kobebryant,Relive history this holiday season with #NBA2K18 w/ limited new MyTEAM cards featuring different points of my caree… https://t.co/Tu24xtX5wd +12/21/2017,Sports_celeb,@kobebryant,💪 https://t.co/tpeVb4vqk2 +12/21/2017,Sports_celeb,@kobebryant,Geno the #GOAT @UConnWBB #1000 +12/19/2017,Sports_celeb,@kobebryant,Great to see you tonight my brother. https://t.co/nf61mDG3L7 +12/19/2017,Sports_celeb,@kobebryant,"Thanks to the Lakers organization and the best fans in the world. You gave a six-year-old boy his Laker dream, and… https://t.co/3ysIsNysyE" +12/18/2017,Sports_celeb,@kobebryant,#8v24 https://t.co/DUuSb1fsup +12/18/2017,Sports_celeb,@kobebryant,"Different animal, same beast. https://t.co/1VEmcfG4Be" +12/18/2017,Sports_celeb,@kobebryant,"My love letter to basketball, Directed & Animated by @GlenKeanePrd, Original Score by John Williams. Watch it here!… https://t.co/jydH0q0mhx" +12/15/2017,Sports_celeb,@kobebryant,“You asked for my hustle - I gave you my heart.” #DearBasketball #ComingSoon @GlenKeanePrd https://t.co/ojjafQ4CMd +12/13/2017,Sports_celeb,@kobebryant,Always good to catch up with my man Coach Geno https://t.co/4V4pOdX9cQ +12/13/2017,Sports_celeb,@kobebryant,RT @judyseto: Just finished “Performing Under Pressure” course for @ACUMHPS Masters degree in High Performance Sport. Great info that appli… +12/10/2017,Sports_celeb,@kobebryant,RT @Hargraves24: This is what @kobebryant said. Don't click on @ESPN. https://t.co/mbSuZJPQl5 +12/10/2017,Sports_celeb,@kobebryant,Nope https://t.co/9qSgqC1ywT +12/10/2017,Sports_celeb,@kobebryant,RT @travelinglao: @espn @RichBTIG I'm starting to think you are right on about @espn they are getting desperate for clicks and viewership;… +12/10/2017,Sports_celeb,@kobebryant,👏 @SpectrumSN https://t.co/lLqD50hx4d +12/09/2017,Sports_celeb,@kobebryant,He and they will be just fine. They will do the necessary work and yrs from now none of u will remember the struggl… https://t.co/SRcowY1gUO +12/08/2017,Sports_celeb,@kobebryant,My man 💪 🙌 https://t.co/XjHGndD2gN +12/05/2017,Sports_celeb,@kobebryant,🙏🏻 https://t.co/jFrMKuNu9Y +12/01/2017,Sports_celeb,@kobebryant,RT @iamrapaport: If you’re looking for one or the greatest in depth athlete interviews in the history of podcasting then look no further th… +11/29/2017,Sports_celeb,@kobebryant,It’s been 2 years already? @PlayersTribune #timehaswings https://t.co/EXHypqbuZT +11/29/2017,Sports_celeb,@kobebryant,👌💪 @Djawadi_Ramin https://t.co/lTJ5IDqhtm +11/28/2017,Sports_celeb,@kobebryant,👏 @KlayThompson @DrinkBODYARMOR https://t.co/lLLmbbVHc0 +11/20/2017,Sports_celeb,@kobebryant,Maybe but Coach Smith stopped recruiting me. He thought I would go pro and wished me luck. Coach K kept at it. https://t.co/xS6OD8SmEV +11/20/2017,Sports_celeb,@kobebryant,Duke https://t.co/RDyzJ0PMUw +11/20/2017,Sports_celeb,@kobebryant,"Little known fact, I did one year of summer school at @ucla after my rookie year but now I hire @usc film students… https://t.co/wGur9fp7Du" +11/18/2017,Sports_celeb,@kobebryant,RT @MarucciBaseball: Every player in the United States should watch this video of Altuve. https://t.co/NG3lmnGYkC +11/18/2017,Sports_celeb,@kobebryant,RT @CalSwish_Nike: Thanks @kobebryant for working with us today in practice . Our @VULions loved it and learned a ton. Loved the teaching… +11/10/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/FI062fp89r +11/06/2017,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: #TeamBODYARMOR #ObsessionIsNatural 🏀🏆💥 https://t.co/nkes5HqRHd +11/06/2017,Sports_celeb,@kobebryant,#ObsessionIsNatural @JHarden13 @DrinkBODYARMOR 💪 https://t.co/As3hEuBJMs +10/24/2017,Sports_celeb,@kobebryant,The team @15SOF delivers your World Series TV appearances. Let's make some memories. Go LA! Get the app here: https://t.co/b3GXC47J0d +10/20/2017,Sports_celeb,@kobebryant,Lil bit haha @winnieharlow @neymarjr good times https://t.co/Ui076ILLNj +10/20/2017,Sports_celeb,@kobebryant,#gracias #merci 👍 https://t.co/31sUJZpFZd +10/16/2017,Sports_celeb,@kobebryant,We LOVED the match @uscwomensvolley and @StanfordWVB #MambaMentality Thank you for the hospitality #USC https://t.co/XkoxSEd4cz +10/06/2017,Sports_celeb,@kobebryant,Thank you. I had a great time on the podcast with you @ScottFeinberg https://t.co/AHTNbC5GH2 +10/05/2017,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: ❗️BREAKING: BODYARMOR is NOW the OFFICIAL Sports Drink of #UFC. 👊 #Switch2BODYARMOR #ObsessionIsNatural @UFC @UFCPI htt… +10/05/2017,Sports_celeb,@kobebryant,She’s a beast https://t.co/EgKgG6o6ro +10/05/2017,Sports_celeb,@kobebryant,Congrats to @minnesotalynx 4 championships in 7 seasons is 🙌 #wnbachamps +10/04/2017,Sports_celeb,@kobebryant,@EvMatic https://t.co/aC6jjmMP0m +10/04/2017,Sports_celeb,@kobebryant,BUT @DrinkBODYARMOR had a HOT🔥 summer! Up over 110%+ in Convenience stores @darrenrovell #gofigure… https://t.co/4Nh4DqP2h0 +10/02/2017,Sports_celeb,@kobebryant,"RT @LVMPD: For families looking to locate missing loved ones, please call 1-866-535-5654." +10/02/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/5sn9taFK7z +10/01/2017,Sports_celeb,@kobebryant,RT @ramonashelburne: When @kobebryant called @Candace_Parker and helped a kindred spirit learn how to win. https://t.co/lJmSiFmcUW +09/30/2017,Sports_celeb,@kobebryant,"Thank u Coach Frank for your deep understanding of the game, your patience & for challenging me to defend @ the hig… https://t.co/IhPuvWHhzA" +09/30/2017,Sports_celeb,@kobebryant,RT @serenawilliams: Without Billie Jean King I don't know if any of us female athletes would be here. Don't miss the… https://t.co/BBnqZhRU… +09/26/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/itdHqK1kqS +09/26/2017,Sports_celeb,@kobebryant,Thank you for the opportunity to talk about our film. To even hear Oscar contender next to Dear Basketball is beyon… https://t.co/TFsijvz0Uu +09/23/2017,Sports_celeb,@kobebryant,#mambamentality https://t.co/xzFcEmOLEH +09/23/2017,Sports_celeb,@kobebryant,"A #POTUS whose name alone creates division and anger. Whose words inspire dissension and hatred can't possibly ""Make America Great Again""" +09/20/2017,Sports_celeb,@kobebryant,"RT @paulocoelho: MEXICO, TE AMAMOS https://t.co/lhwyp8dh1Z" +09/20/2017,Sports_celeb,@kobebryant,🙏🏾 #dearbasketball https://t.co/1vo5PNQQ54 +09/20/2017,Sports_celeb,@kobebryant,RT @15SOF: Not a rumor anymore. 15 Seconds of Fame has partnered with @NFL to deliver your TV appearances at all NFL games through the Supe… +09/18/2017,Sports_celeb,@kobebryant,Just a lil daddy/daughter time #proudpappa https://t.co/DSktefRDoB +09/18/2017,Sports_celeb,@kobebryant,Gigi working on that @DianaTaurasi stroke #wristwork #wnbafinals we r hype for the rematch! https://t.co/Ly6pEjLuZS +09/15/2017,Sports_celeb,@kobebryant,Happy #2KDay You pick... play as 8 or 24 in @NBA2K! https://t.co/BrGl7dFiN0 https://t.co/AhOSgh6N9V +09/15/2017,Sports_celeb,@kobebryant,Great to be back in China earlier this week to help announce the NBA Academy @missionhillscn. I continue to be grat… https://t.co/STKesdpIhN +09/11/2017,Sports_celeb,@kobebryant,#NeverForget911 https://t.co/5ltFzooAse +09/10/2017,Sports_celeb,@kobebryant,Well deserved Tmac. You were a beast in every aspect of the game. I hope your kids know and appreciate how cold their pops was #HallOfFame +09/09/2017,Sports_celeb,@kobebryant,RT @SportsCenter: Tracy McGrady: High school star to NBA Hall of Famer. https://t.co/Mbq3pcGetP +09/07/2017,Sports_celeb,@kobebryant,Congrats hermano #grandepau https://t.co/N9SH4j3Xfw +09/06/2017,Sports_celeb,@kobebryant,RT @CNN: Read Bill Clinton's full statement on the Trump administration's DACA decision https://t.co/ndGYBfwDHY +09/02/2017,Sports_celeb,@kobebryant,RT @jewellloyd: I don't call her Legend for nothing 🙌🏽👏🏽 https://t.co/EdeuKpCfCT +09/02/2017,Sports_celeb,@kobebryant,Never thought I'd be on stage w/ the great JOHN WILLIAMS @HollywoodBowl to perform the #DearBasketball animated sho… https://t.co/kjr4UKYWYh +08/29/2017,Sports_celeb,@kobebryant,Claro #primomamba #mambasangre https://t.co/Udo2vJpZ0Q +06/30/2018,Sports_celeb,@raylewis,"Seek improvement, not perfection. Take it one step at a time." +06/29/2018,Sports_celeb,@raylewis,RT @HamiltonESPN: #ESPN300 & 2019 Under Armour @AllAmericaGame RB @Emery4____ hanging with @raylewis & @TwentyER at Ed Reed Foundation Camp… +06/29/2018,Sports_celeb,@raylewis,The words you speak become the House you live in. - Hafiz +06/28/2018,Sports_celeb,@raylewis,My heart breaks for all in Annapolis in this senseless tragedy. Praying for families and friends of those lost toda… https://t.co/eyrVD0TdM2 +06/28/2018,Sports_celeb,@raylewis,make a difference. leave your mark +06/28/2018,Sports_celeb,@raylewis,"RT @Ravens: .@raylewis to appear in upcoming Baltimore-based movie. +📰: https://t.co/caQZV66UhK https://t.co/28wU0sqlWD" +06/28/2018,Sports_celeb,@raylewis,RT @DylanMathiot: @SNFonNBC @raylewis you inspired me to play football 🏈 https://t.co/Vn2PMJmqEL +06/28/2018,Sports_celeb,@raylewis,Stay committed +06/26/2018,Sports_celeb,@raylewis,https://t.co/FAjZzuSw96 +06/26/2018,Sports_celeb,@raylewis,"RT @Ravens: ""When it comes to Hall of Fame, you have to define the position. And @raylewis, in today's game, did just that."" -@CoachBillick…" +06/26/2018,Sports_celeb,@raylewis,RT @NFLAlumni: They say humans would never stand a chance against dinosaurs. We think we know a guy…. @RayLewis #JurassicWorld #NFLAlumni… +06/25/2018,Sports_celeb,@raylewis,chase greatness. you have to go after it! +06/22/2018,Sports_celeb,@raylewis,The greatest enemy of progress is your last success. keep grinding 💪🏿 +06/21/2018,Sports_celeb,@raylewis,to Love Is to selflessly serve. https://t.co/dwTzkpXxiG +06/21/2018,Sports_celeb,@raylewis,who remembers? 💥💥💥 https://t.co/qyniYUlzXL +06/19/2018,Sports_celeb,@raylewis,You gonna believe them?? https://t.co/q9XREAeSzF +06/19/2018,Sports_celeb,@raylewis,"RT @IMGAcademy: “Any vision that is not written is a dream.” -@raylewis + +#MotivationMonday https://t.co/7E51AqrE7w" +06/17/2018,Sports_celeb,@raylewis,RT @UAFootball: No excuses at the @raylewis Academy. #IWILL https://t.co/pv7H9tNaYC +06/17/2018,Sports_celeb,@raylewis,"family is bigger than you think, men. Stand in the gap - lead #happyfathersday https://t.co/d1LxFT737d" +06/17/2018,Sports_celeb,@raylewis,RT @DemetricDWarren: 🗣LBs Listen Up! Ray Lewis @raylewis is teaching about “Reading the Triangle” Alabama LB Mack Wilson @iam__mw3o & Michi… +06/17/2018,Sports_celeb,@raylewis,RT @EByner: Great to see #EdReed and @raylewis @IMG for #52 special linebacker camp. @Ravens https://t.co/onDC0DHGBs +06/17/2018,Sports_celeb,@raylewis,"RT @zacharylovett10: Had fun this past weekend at the Ray Lewis academy putting in work on and off the field to become better athletes,man,…" +06/17/2018,Sports_celeb,@raylewis,RT @Footdoctor_Mata: Thankful for the opportunity @raylewis & @UnderArmour https://t.co/EQboIwyETU +06/17/2018,Sports_celeb,@raylewis,"RT @RobVellinga: We need men who are fine with being MEN. - @RayLewis + +#Mentoring +#Fatherhood +#Dadfest + +@WillowCreekCC" +06/17/2018,Sports_celeb,@raylewis,RT @CarManCarl: @raylewis sharing the LOVE!!! @WillowCreekCC https://t.co/grjjaaTzoL +06/17/2018,Sports_celeb,@raylewis,"RT @RobVellinga: When I came to the RIGHT it was for the Father. +When I can to the LEFT it was for the Son. +When I came through the CENTE…" +06/17/2018,Sports_celeb,@raylewis,RT @CarManCarl: @raylewis @steveryancarter rocking the house @WillowCreekCC by challenging men to be men!!! +06/17/2018,Sports_celeb,@raylewis,"RT @WillowCreekCC: We're here with @steveryancarter & @raylewis this morning! Join us for #DadFest at 9 a.m. or 11:30 a.m.! +#WillowCreekCC…" +06/17/2018,Sports_celeb,@raylewis,Sharing from my heart today at @WillowCreekCC watch online: https://t.co/ZsyrbauL64 #HappyFatherDay +06/16/2018,Sports_celeb,@raylewis,can't wait for this hug https://t.co/LSUszvfwps +06/15/2018,Sports_celeb,@raylewis,Keep at it 🔥 the result is worth the sacrifice +06/14/2018,Sports_celeb,@raylewis,Effort. https://t.co/CD0tPFvNoU +06/14/2018,Sports_celeb,@raylewis,Stay ready +06/13/2018,Sports_celeb,@raylewis,pain. is. temporary - hang in there +06/13/2018,Sports_celeb,@raylewis,RT @jaesonma: One of the Greatest Speeches Ever | Ray Lewis https://t.co/y3WPVBnb3y via @raylewis #painistemporary +06/13/2018,Sports_celeb,@raylewis,Hope is seeing light even in the middle of darkness +06/12/2018,Sports_celeb,@raylewis,🔥🔥🔥 https://t.co/qQx4jhITo7 @ThatOtherLewis +06/12/2018,Sports_celeb,@raylewis,Book a seat with my buddy Patrick Day’s company Flyfoxtrot to the US Open and he will get you there for $695 a seat. https://t.co/k0hbJh3gRc +06/12/2018,Sports_celeb,@raylewis,discipline is choosing what u want most over what you want now +06/11/2018,Sports_celeb,@raylewis,let your work speak loudly +06/11/2018,Sports_celeb,@raylewis,https://t.co/McrsDEfOOT +06/09/2018,Sports_celeb,@raylewis,You can change the outcome +06/08/2018,Sports_celeb,@raylewis,Work to be good. Study to be great. Commit to be a legend. +06/07/2018,Sports_celeb,@raylewis,RT @JohnMichaels929: Me and the best college LB of all time @raylewis #LetsGoCanes #TheU https://t.co/eBNeIhC9Vy +06/07/2018,Sports_celeb,@raylewis,"RT @JTWilcoxSports: ICYMI +Erickson, @DanMorganJr & @raylewis Added To 2019 College HOF Ballot + +https://t.co/AL69JQK39d +(via @TribuneMiami)…" +06/07/2018,Sports_celeb,@raylewis,someone is going to be strengthened one day by your story - don't give up. +06/05/2018,Sports_celeb,@raylewis,"Work, even when no one else sees you #effort" +06/05/2018,Sports_celeb,@raylewis,If you want others to be happy - practice compassion. If you want to be happy - practice compassion +06/04/2018,Sports_celeb,@raylewis,RT @CanesFootball: Congratulations to these three Miami greats who’ve been named to the @cfbhall ballot! https://t.co/XIp24S51gM +06/04/2018,Sports_celeb,@raylewis,Giving up means you never really wanted it +06/01/2018,Sports_celeb,@raylewis,You’ve got what it takes but it will take everything you’ve got. #effort +05/31/2018,Sports_celeb,@raylewis,No one ever achieved greatness by hesitating. Pursue your goals. +05/29/2018,Sports_celeb,@raylewis,Who wants to be in a movie with me? I’ll be conducting casting calls June 24th! 🎬 https://t.co/UwsNkUTm7U +05/28/2018,Sports_celeb,@raylewis,#MemorialDay2018 https://t.co/yx4U3WBmov +05/27/2018,Sports_celeb,@raylewis,https://t.co/RKd2uKWQoD +05/27/2018,Sports_celeb,@raylewis,https://t.co/1tUEl97P5E +05/26/2018,Sports_celeb,@raylewis,Even in El Salvador - #52 - thanks for the pic my man @BrockESPN keep up the good work! https://t.co/u5F14v9lkZ +05/26/2018,Sports_celeb,@raylewis,"RT @NFLUK: Super Bowl 58 is heading to New Orleans 🎉 + +The last Super Bowl at New Orleans saw @raylewis last dance for the @Ravens 👏 + +Legend…" +05/26/2018,Sports_celeb,@raylewis,Never let a stumble be the end of your journey +05/24/2018,Sports_celeb,@raylewis,"RT @NFLFilms: WHAT ABOUT RIGHT NOW?! +🗣 @raylewis spittin’ that #WednesdayWisdom https://t.co/2OtL0ysPwq" +05/22/2018,Sports_celeb,@raylewis,effort https://t.co/WuzMxc1svu +05/22/2018,Sports_celeb,@raylewis,heat right here 🔥 talkin shop & more: https://t.co/Rh2QB44dbq https://t.co/iIeZvE15Pe +05/22/2018,Sports_celeb,@raylewis,RT @msslimgdy: @raylewis Thank you so much for sharing your wisdom & being an inspiration! +05/22/2018,Sports_celeb,@raylewis,RT @zacharylovett10: Honored to be invited to the Ray Lewis camp this summer @pbhs_football @raefsu23 @Neefy87 @EjMayes23 @raylewis https:/… +05/22/2018,Sports_celeb,@raylewis,"RT @1wayjaay: Very Thankful 🙏🏽 to be Invited to the 2018 Ray Lewis Academy‼️🦍 +@HamiltonESPN @raylewis https://t.co/zAdEks7mTJ" +05/22/2018,Sports_celeb,@raylewis,Stay focused. 🎯 +05/21/2018,Sports_celeb,@raylewis,truth https://t.co/yLcvhsk5SL +05/21/2018,Sports_celeb,@raylewis,when Lights Out stops over for some 💥 https://t.co/N1WohR05fP +05/21/2018,Sports_celeb,@raylewis,Never lessen your dream to equal your reality. Keep aiming beyond what you can see right now. +05/19/2018,Sports_celeb,@raylewis,🔥 https://t.co/MLXPOap9Q5 +05/19/2018,Sports_celeb,@raylewis,RT @Lj_era8: I should’ve did the whole thing just gave a little something 😈 https://t.co/yzRC3MTS52 +05/18/2018,Sports_celeb,@raylewis,Struggling is one thing. Quitting is another. Stick with it through the struggle. +05/16/2018,Sports_celeb,@raylewis,"RT @NFLFilms: Join us in celebrating 2018 HOF inductee, @raylewis' birthday today! 🎉🎉🎉 + +@Ravens @ProFootballHOF https://t.co/za5FiFbkWj" +05/16/2018,Sports_celeb,@raylewis,"RT @NFL: 2x @SuperBowl champion. 2x DPOY. +13x Pro Bowler. 10x All-Pro. +And @ProFootballHOF Class of 2018. + +Join us in wishing @raylewis a H…" +05/16/2018,Sports_celeb,@raylewis,"RT @NFL: One of the greatest linebackers EVER. +And soon to be enshrined into the @ProFootballHOF. + +In honor of his 43rd birthday, @raylewis…" +05/16/2018,Sports_celeb,@raylewis,"RT @Ravens: In honor of his birthday, relive the moment @raylewis officially learned what we all knew. +He is a Hall of Famer. https://t.co/…" +05/16/2018,Sports_celeb,@raylewis,@NFLOffical @SuperBowl @ProFootballHOF Thank you!! +05/16/2018,Sports_celeb,@raylewis,you know it’s yours. 💪🏿 https://t.co/qH3bwpaUzY +05/16/2018,Sports_celeb,@raylewis,The fear you refuse to face becomes your limit. +05/14/2018,Sports_celeb,@raylewis,there is power. https://t.co/MHcMuf6WYU +05/14/2018,Sports_celeb,@raylewis,Appreciate those who don’t give up on you +05/13/2018,Sports_celeb,@raylewis,RT @evanpryor3: Blessed to be invited to the 2018 Ray Lewis Academy !! @CarolinaXposure @HamiltonESPN @JibrilleFewell @raylewis https://t.… +05/13/2018,Sports_celeb,@raylewis,Happy Mother’s Day to all the Moms ♥️ +05/12/2018,Sports_celeb,@raylewis,RT @TwentyER: This is so dope https://t.co/r2YY7qCqmk +05/12/2018,Sports_celeb,@raylewis,destroy distractions. Commit https://t.co/HFRxdvVCei +05/11/2018,Sports_celeb,@raylewis,You choose. Invest in you. #effort +05/09/2018,Sports_celeb,@raylewis,Effort beats talent. +05/07/2018,Sports_celeb,@raylewis,https://t.co/cNnHWloaP5 +05/06/2018,Sports_celeb,@raylewis,RT @thecheckdown: Ray's last dance was literally lit 🔥 @raylewis (via bosnog/YT) https://t.co/5vGGZfic7z +05/06/2018,Sports_celeb,@raylewis,Let your results drive you. #effort +05/05/2018,Sports_celeb,@raylewis,worry ends where belief begins +05/04/2018,Sports_celeb,@raylewis,say it 🔥 https://t.co/5pMfW3rqeu +05/03/2018,Sports_celeb,@raylewis,it’s a slow process but quitting won’t speed it up. keep pushing through +05/02/2018,Sports_celeb,@raylewis,Hustle until your haters ask if you’re hiring. +05/02/2018,Sports_celeb,@raylewis,Master the skill of believing & you’ve mastered your legacy. https://t.co/bUYfFLnbP6 +05/01/2018,Sports_celeb,@raylewis,You don’t grow when things go easy. You grow when you face challenges. +04/30/2018,Sports_celeb,@raylewis,greatness right here! #pfhof18 #goldjacket #HallOfFame https://t.co/HVJIaCWx5D +04/30/2018,Sports_celeb,@raylewis,You make your future by what you do now. #leaveyourmark +04/30/2018,Sports_celeb,@raylewis,Have the courage to take risks. But keep the discipline to stay committed to your goals. +04/30/2018,Sports_celeb,@raylewis,RT @BelindaBalleng1: @raylewis No man can judge effort...its between you and you .....awesome #motivational words @raylewis +04/30/2018,Sports_celeb,@raylewis,RT @atgbowers: Reminiscing on Ravens 1st draft! Hoping this year is just as great! #ravens @raylewis https://t.co/E5QIB4MXS9 +04/29/2018,Sports_celeb,@raylewis,It’s yours for the taking. Go get your greatness! #effort https://t.co/oip1EZc8Mn +04/29/2018,Sports_celeb,@raylewis,"Make an effort, not an excuse." +04/29/2018,Sports_celeb,@raylewis,"RT @gladi8r013: @raylewis One of the best motivational speeches I’ve ever heard. The one when you spoke to the Miami Hurricanes +https://t…" +04/28/2018,Sports_celeb,@raylewis,RT @Power52Official: Get your tickets today for Power52 LIVE Fundraiser!! https://t.co/M5R8mNOhjU +04/28/2018,Sports_celeb,@raylewis,"RT @Muthead: Ultimate Legend @raylewis: + +https://t.co/ATiEJAUO2Q +. https://t.co/uW7lWzQ25o" +04/28/2018,Sports_celeb,@raylewis,https://t.co/kUpzhjZrlL +04/28/2018,Sports_celeb,@raylewis,Effort can take you further than talent. +04/27/2018,Sports_celeb,@raylewis,Success sits outside of your comfort zone. You have to go get it. +04/27/2018,Sports_celeb,@raylewis,"RT @Ravens: ""The first thing I thought about was me and @raylewis doing that commercial, how he made me do his laundry. And now, it's proba…" +04/26/2018,Sports_celeb,@raylewis,RT @alohajamz: @raylewis is a once in a generation player I wonder now that @raylewis is a HOF player. Who will be the next Ray Lewis that… +04/26/2018,Sports_celeb,@raylewis,RT @ThePostGame: Draft day 1996: @raylewis is second pick in @Ravens history (@jonathanogden75 went earlier in first round). #NFLDraft #TBT… +04/26/2018,Sports_celeb,@raylewis,"RT @NFL: Every #1 overall pick from the last 16 years! + +Who’s next?! + +2018 #NFLDraft starts TONIGHT (8pm ET) on NFLN/FOX/ESPN! https://t.co…" +04/26/2018,Sports_celeb,@raylewis,"the work you put in now is the legacy you live out later. +congratulations to everyone who steps into their legacy t… https://t.co/jDcUalT2l6" +04/26/2018,Sports_celeb,@raylewis,We ready! 🏈💪🏿 #NFLDraft2018 @NFL https://t.co/kpp36a9pIL +04/26/2018,Sports_celeb,@raylewis,"Let your pain push you to a greater level of power. Focus it. Use it, for good." +04/25/2018,Sports_celeb,@raylewis,It is better to be respected than liked. +04/25/2018,Sports_celeb,@raylewis,RT @MarcusAllenHOF: New Jersey! The @GTSportsMkt show is back! This wknd April 27-29 Come meet @drewbrees @raylewis @Jerryrice @deshaunwats… +04/25/2018,Sports_celeb,@raylewis,"RT @SiriusXMNFL: Who are a few Linebackers that @RoquanSmith1 enjoyed watching in the NFL? + +@raylewis and @Bwagz + +#NFLDraft https://t.co/jy…" +04/25/2018,Sports_celeb,@raylewis,Be so great that they have to notice. +04/25/2018,Sports_celeb,@raylewis,RT @Ravens: One call led to the Hall. #NFLDraft https://t.co/Xvl1AGUdRu +04/25/2018,Sports_celeb,@raylewis,Belief enables the power to achieve. +04/25/2018,Sports_celeb,@raylewis,@coachjkirk 💪🏿💥 +04/25/2018,Sports_celeb,@raylewis,RT @coachjkirk: @raylewis down here in TX trying to #ShowMeYourRay https://t.co/mSziNxh6K1 +04/24/2018,Sports_celeb,@raylewis,Dreams don’t work unless you do. Proud of you baby boy! 💯 https://t.co/Qnqo2n5nIS +04/24/2018,Sports_celeb,@raylewis,Those genes are strong. #Legacy #LionOrder https://t.co/JvnEpXXUhs +04/24/2018,Sports_celeb,@raylewis,RT @JerryRice: New Jersey! Come meet me and other legends @raylewis @kaj33 @drewbrees @EmmittSmith22 and more at @GTSportsMkt show April 2… +04/24/2018,Sports_celeb,@raylewis,Go on! You deserve that dance!! #ShowMeYourRay https://t.co/8oN2WSbWgK +04/24/2018,Sports_celeb,@raylewis,RT @jbenjaminblom: I graduate from dental school in two weeks and my mom pimped out my suit jacket for me. Can’t decide...squirrel dance ac… +04/24/2018,Sports_celeb,@raylewis,@jbenjaminblom @Ravens definitely the squirrel dance - congrats! +04/24/2018,Sports_celeb,@raylewis,"RT @DLineVids: ""Blueprint"" by #TheU alum & #NFL Hall of Famer @raylewis 💯 https://t.co/KwKBUBLXvb" +04/24/2018,Sports_celeb,@raylewis,"Almost time 2 break out those threads, men! 💥 @NFL #NFLDraft #TheFutureIsNow https://t.co/clUoCaGtGm" +04/24/2018,Sports_celeb,@raylewis,The wolf on the hill is never as hungry as the wolf climbing the hill. Never stop. Keep aiming higher. +04/24/2018,Sports_celeb,@raylewis,"RT @Thuzio: During the @Ravens' #SuperBowl season of 2000-2001, Brian Billick relied on @raylewis and @ShannonSharpe to be gatekeepers in t…" +04/24/2018,Sports_celeb,@raylewis,"RT @NFL: Top 10 @NFLDraft Classes of the Past 25 Years: + +1. ’96 @Ravens +2. ’95 @Buccaneers +3. ’04 @Chargers +4-10. https://t.co/X6j5eV484p…" +04/24/2018,Sports_celeb,@raylewis,"RT @CanesFootball: The @NFL ranked the best draft pick of all-time at every slot, from Nos. 1 to 32, and Miami has SEVEN listed — more than…" +04/20/2018,Sports_celeb,@raylewis,Achieve everything they said you never would. +04/20/2018,Sports_celeb,@raylewis,Who is ready to #partywithapurpose with us? @power52official https://t.co/DOo39DB4qD +04/20/2018,Sports_celeb,@raylewis,Two weeks! @power52official https://t.co/Wp7fMHYWJE +04/20/2018,Sports_celeb,@raylewis,"Where there is peace, there is prosperity. #RaysWords #RL52 https://t.co/YnX7RhPZ7A" +04/20/2018,Sports_celeb,@raylewis,You got to be willing to walk in a storm. #RaysWords #RL52 https://t.co/iYeXyeibZF +04/20/2018,Sports_celeb,@raylewis,"Man believes in the possible, God believes in the impossible. #RaysWords #RL52 #legends52 https://t.co/IkEF9fsinm" +04/17/2018,Sports_celeb,@raylewis,"Awesome performance at the Mountain Moving Men Summit @CityofPraiseMD +Many are called, few are… https://t.co/aKP3yrILuA" +04/15/2018,Sports_celeb,@raylewis,What comes easy doesn’t always last. What comes through difficulties & effort leaves a legacy. +04/13/2018,Sports_celeb,@raylewis,RT @SFY: .@RayLewis reacts to Odell Beckham Jr.'s (@OBJ_3) Instagram post responding to his criticism https://t.co/cApwS4vtbA +04/13/2018,Sports_celeb,@raylewis,"RT @undisputed: ""I look at Odell as a son of mine, so am I hurt? Absolutely. Why wouldn't I be hurt?"" + +@raylewis explains his comments rega…" +04/13/2018,Sports_celeb,@raylewis,Hidden in every challenge you face is an opportunity. Find it. +04/12/2018,Sports_celeb,@raylewis,Courage begins the moment you decide to be true to yourself. +04/10/2018,Sports_celeb,@raylewis,"RT @FOXSports: ""So many people saying they know so much about him [OBJ] have never had one phone call with him."" + +-- @RayLewis believes OB…" +04/09/2018,Sports_celeb,@raylewis,"Live selflessly. We all have a greater purpose, but we often have to look outside ourselves to… https://t.co/S9KsgWjqfI" +04/08/2018,Sports_celeb,@raylewis,Sometimes life is about risking everything for a dream no one can see but you. +04/05/2018,Sports_celeb,@raylewis,RT @cmorrow322: I am thankful for people that care & use their celebrity to spread a great message and make a difference . @raylewis & @Mar… +04/05/2018,Sports_celeb,@raylewis,#RaysWords #pfhof18 #legends52 #ravensnation #RL52 #IWILL #nfl #football https://t.co/kAa2jTWMQD +04/05/2018,Sports_celeb,@raylewis,"RT @AthleteNet: Advice straight from @RayLewis: ""Put your plan together & then work the plan."" https://t.co/QN0C1n3rou @fromglorydays #keep…" +04/05/2018,Sports_celeb,@raylewis,"RT @DenverGreg_: https://t.co/qiJ2Wnw1eD + +Little Thursday morning motivation. “Effort is between you and you.” @raylewis let’s get it!" +04/05/2018,Sports_celeb,@raylewis,Write your destiny. #pfhof18 #RL52 https://t.co/UjVs9LDA7C +04/02/2018,Sports_celeb,@raylewis,"One month from tomorrow, join us for our annual fundraiser! @power52official #power52 @… https://t.co/MwZuaswUPF" +04/02/2018,Sports_celeb,@raylewis,"The Power behind Power52! @power52official +robdwallace #power52 #pfhof18 #RL52 #solarpower… https://t.co/zdHodRl5C2" +04/02/2018,Sports_celeb,@raylewis,"#Repost @power52official +・・・ +Just in case you missed it!! Get your tickets today!… https://t.co/X3zGdH4Ai9" +04/01/2018,Sports_celeb,@raylewis,“He then began to teach them that the Son of Man must suffer many things and be rejected by the… https://t.co/AKzYCXgphI +04/01/2018,Sports_celeb,@raylewis,"Happy Easter, He is risen. Rejoice in His name. #amen #blessings https://t.co/ylR07Q3XIg" +04/01/2018,Sports_celeb,@raylewis,Hope is here! You’re going to make it. Only believe. +03/31/2018,Sports_celeb,@raylewis,"RT @drewbrees: Hey New Jersey! Come see me, @raylewis @shaunwatson4 jerryrice and more! @GTSportsMkt show at… https://t.co/AdYXGkzMEP" +03/31/2018,Sports_celeb,@raylewis,"Hang in there, it’s going to get better. Keep moving forward." +03/30/2018,Sports_celeb,@raylewis,#ITISFINISHED https://t.co/QAtwvJ9jVM +03/29/2018,Sports_celeb,@raylewis,#QOTD No time like the present. #RaysWords https://t.co/W3LiPy1p4Z +03/29/2018,Sports_celeb,@raylewis,"The legend and the leader. #legends52 + +📸: @thebrewergroup https://t.co/UCcq829Grm" +03/27/2018,Sports_celeb,@raylewis,Discipline is required even when no one is looking. #RaysWords #RL52 #ravensnation #pfhof18 https://t.co/GMJ52H0mDK +03/27/2018,Sports_celeb,@raylewis,@CityofPraiseMD #RL52 https://t.co/TQEf1wedhy +03/26/2018,Sports_celeb,@raylewis,"RT @Ravens: The journey to Canton. + +The first installment of our Ray Lewis Timeline series is live. + +From Bartow, Fla. to to college recr…" +03/26/2018,Sports_celeb,@raylewis,💥 https://t.co/mBhahStjfj +03/25/2018,Sports_celeb,@raylewis,"@power52official provides employment training for at-risk adults, returning citizens, and… https://t.co/qN7vqZ5OUz" +03/25/2018,Sports_celeb,@raylewis,Congratulations to the 15 trainees who graduated from our Power52 Energy Institute Baltimore… https://t.co/V7YF6A9rBJ +03/25/2018,Sports_celeb,@raylewis,RT @Gr4yson_: For my favorite player and the 🐐 MLB. Made this when the Class of 2018 was announced but never posted it. Can't wait for the… +03/24/2018,Sports_celeb,@raylewis,The Power52 Family invites you to join us for our premier event of the year Power52LIVE! “After Five”. Tickets ca… https://t.co/FkGnxECHch +03/24/2018,Sports_celeb,@raylewis,Don't rush away from something just because it's uncomfortable. Grow in it and through it. +03/24/2018,Sports_celeb,@raylewis,People only rain on your parade because they are jealous of your sun. +03/23/2018,Sports_celeb,@raylewis,I had to GRIND every day. #RL52 #legends52 #pfhof18 #GoldJacket #legends52 https://t.co/QRhfh6uRQw +03/22/2018,Sports_celeb,@raylewis,RT @andres_cadena11: “The greatest opportunity in the world is found in today” @raylewis +03/22/2018,Sports_celeb,@raylewis,RT @Houston_TheReal: @raylewis @Ravens No player I've ever seen played football with more passion and leadership than 52. Point. Blank. PER… +03/22/2018,Sports_celeb,@raylewis,RT @UsmcBobLeeSwag: That shoestring theory by @raylewis via his podcast really hit home. Thank you for that wisdom @raylewis +03/21/2018,Sports_celeb,@raylewis,Life is about being a versatile athlete and training in all realms of life. #RaysWords #RL52… https://t.co/BZNRLHbt1k +03/21/2018,Sports_celeb,@raylewis,Working towards a new type of greatness! 52legendsandleaders #legends52 https://t.co/cKjY3ApM5y +03/21/2018,Sports_celeb,@raylewis,Don’t walk through life just playing football. Don’t walk through life just being an athlete.… https://t.co/GdUVaVkUFm +03/21/2018,Sports_celeb,@raylewis,Represent! 💥 #PFHOF18 @UnderArmour collection: https://t.co/EMRiX83Fky https://t.co/DqUZs0tMGZ +03/21/2018,Sports_celeb,@raylewis,Know your mission. #RL52 https://t.co/MB1ELOETXA +03/20/2018,Sports_celeb,@raylewis,The road to Canton. #PFHOF18 #GoldJacket #RavensFlock @Ravens https://t.co/zY9aH7gLe3 +03/20/2018,Sports_celeb,@raylewis,RT @UAFootball: 😜 #IWILL https://t.co/HrVshQAzGm +03/20/2018,Sports_celeb,@raylewis,"RT @UAFootball: Speak volumes by repping a legend. #IWILL + +Snag your official @raylewis @UnderArmour collection: https://t.co/TCFfdH61Fr ht…" +03/19/2018,Sports_celeb,@raylewis,"Speak volumes without saying a word. #Family #WeWill #IWILL @UAFootball #HallofFame +https://t.co/a4KimtDYzH https://t.co/kEJmYzgr1e" +03/19/2018,Sports_celeb,@raylewis,The number one skill for success - never quit. +03/19/2018,Sports_celeb,@raylewis,Giving up means you never truly wanted it. Push through. +03/19/2018,Sports_celeb,@raylewis,Accept what is. Let go of what was. Have faith in what will be. #GodisGod +03/19/2018,Sports_celeb,@raylewis,💥 @Rolando21897 https://t.co/MUrso362Yu +03/18/2018,Sports_celeb,@raylewis,The most amazing things in life often happen right when you are about to give up. Hang in there. +03/18/2018,Sports_celeb,@raylewis,RT @Sdarley14: @raylewis https://t.co/f9CoSpsS8X this goes down in the books #grindin #3amworkouts +03/18/2018,Sports_celeb,@raylewis,You can overcome whatever you put your mind to. +03/17/2018,Sports_celeb,@raylewis,RT @RobMaaddi: Here’s the latest episode of @FaithOnTheField Show titled “The Faithful Pursuit” featuring a powerful interview with Hall of… +03/17/2018,Sports_celeb,@raylewis,"RT @kurt13warner: Virginia and all Football Fans! I will be appearing @Gtsportsmkt show in Sterling, VA with @MarcusAllenHOF @DougFlutie @r…" +03/17/2018,Sports_celeb,@raylewis,RT @RyanShazier: Thanks all the support helps me through this. 💯 https://t.co/OvExGW8koE +06/10/2018,Sports_celeb,@FloydMayweather,Play on the WinView Sports app today to have a chance to win a signed boxing glove ! #PlayPredictWin… https://t.co/juSXDhj4Vm +06/05/2018,Sports_celeb,@FloydMayweather,https://t.co/tUWTAiZ5Sn +06/03/2018,Sports_celeb,@FloydMayweather,"I challenge you! Score 15k+ points in any QTR on https://t.co/4yPtxJ9YQq for a share of $5,000! #NBAfinals https://t.co/dh1gEfzeLG" +06/03/2018,Sports_celeb,@FloydMayweather,"In boxing, I'm undefeated, but can you beat me in poker? Download and play my game @WildPokerTXHold… https://t.co/FKjJDzD9gK" +06/02/2018,Sports_celeb,@FloydMayweather,@MizzMelissia https://t.co/jVKqhNMObf +06/02/2018,Sports_celeb,@FloydMayweather,"Life is a game of chess & all I do is make power moves +Photo Credit: @mssunray https://t.co/049IBNZOS4" +06/02/2018,Sports_celeb,@FloydMayweather,"#mood +video credit: @moneyyaya +Music by: @otgenasis https://t.co/snEsqseex5" +06/01/2018,Sports_celeb,@FloydMayweather,"I’m so proud of my son @kingkoraun for doing something that I didn’t do, and that’s graduate high school. When I️ w… https://t.co/fGflOAwEAa" +06/01/2018,Sports_celeb,@FloydMayweather,"Great is Great ! No matter what, I’m a natural born hustler! https://t.co/VL0jOXGcZV" +05/26/2018,Sports_celeb,@FloydMayweather,No one makes more money watching sports than me! Come play against me at https://t.co/4yPtxJrzHY and watch the NBA… https://t.co/8AE5OfCksI +05/24/2018,Sports_celeb,@FloydMayweather,#mugshot https://t.co/W7SRNrijGC +05/24/2018,Sports_celeb,@FloydMayweather,"Royal treatment...private massage on my private jet. Y’all talking about a prince with one princess, I’m a King wi… https://t.co/fMPimntha5" +05/24/2018,Sports_celeb,@FloydMayweather,I post pictures like this to motivate my haters to get money. https://t.co/NF7Kh4Fulk +05/24/2018,Sports_celeb,@FloydMayweather,"Another one of my timepieces I designed and got customized by @mr.gregyuna . + +Photo Credit: @moneyyaya https://t.co/TnWEvNoZgQ" +05/24/2018,Sports_celeb,@FloydMayweather,"Leaving LA, heading to Las Vegas to get ready for Memorial Day Weekend. 🎥 video credit: @moneyyaya https://t.co/r7IdOIoqDg" +05/20/2018,Sports_celeb,@FloydMayweather,FOLLOW & WISH my daughter @moneyyaya a HAPPY 18th BIRTHDAY!!! https://t.co/CD631jc6TY +05/19/2018,Sports_celeb,@FloydMayweather,"Follow and wish @mayweatherpromotions ‘ fighter, @badoujack good luck as he looks to capture his 3rd World title.… https://t.co/yQRIAFVar7" +05/19/2018,Sports_celeb,@FloydMayweather,Peace & Tranquility https://t.co/tXQTHZaInb +05/19/2018,Sports_celeb,@FloydMayweather,At another private island somewhere close by the equator #photography #photooftheday #photographer https://t.co/EO5631dqae +05/19/2018,Sports_celeb,@FloydMayweather,"Sitting back smirking, making millions sitting on my ass. You can smell the bag through the photo and I’m not talki… https://t.co/pz3nmycr01" +05/18/2018,Sports_celeb,@FloydMayweather,Check out my latest interview with Fight hype https://t.co/ycABb8r6SL +05/10/2018,Sports_celeb,@FloydMayweather,"Stopped by the Wat Pho Buddhist Temple in Bangkok, Thailand. Next… https://t.co/YZt0obO0Yb" +05/05/2018,Sports_celeb,@FloydMayweather,"Bali, Indonesia. Swipe to the left👈🏽 #temple #bali #indonesia + +Photo Credit :… https://t.co/D12QFV5NSp" +05/05/2018,Sports_celeb,@FloydMayweather,"Swipe to the left ⬅️ I made a pit stop in Bali, Indonesia +#Bali +#Indonesia… https://t.co/U69a3NwdFN" +05/05/2018,Sports_celeb,@FloydMayweather,"Pool party on top of the world. + +#marinabaysands +#airmayweather @ Singapore https://t.co/mdVuDg7Wvs" +05/05/2018,Sports_celeb,@FloydMayweather,"I was bored today so I decided to fly to Singapore... Stay tuned, I’ll be in… https://t.co/ZYi9zdjNb7" +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video @ Dubai Desert https://t.co/aaInGnMJxi +05/05/2018,Sports_celeb,@FloydMayweather,Feeding the giraffes #wildlife #dubai https://t.co/MxSiNwJu0a +05/05/2018,Sports_celeb,@FloydMayweather,"Feeding Teddy Bear #wildlife #dubai @ Dubai, United Arab Emirates https://t.co/OTVIqztVjU" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing, always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/YK0n6xJd6n" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing,always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/xHx0w0UPo9" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing, always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/SgWipyuXA1" +05/05/2018,Sports_celeb,@FloydMayweather,"Traveling the world, having fun with my brother @theharlemhotboy #dubai @… https://t.co/O6YMDb9cMW" +05/05/2018,Sports_celeb,@FloydMayweather,"In living color + +#BurjAlArab +#yacht + +Photo Credit : _franktmt @ Dubai, United… https://t.co/zWqeovpGOl" +05/05/2018,Sports_celeb,@FloydMayweather,I can do this shit with no effort. @ Mayweather Boxing Gym https://t.co/wfE8GDNU59 +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video @ Mayweather Boxing Gym https://t.co/sVPUsaQGHl +05/05/2018,Sports_celeb,@FloydMayweather,"Jumped off Air Mayweather, checked into my presidential suite at the tallest… https://t.co/3gRQeBzq5N" +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video https://t.co/k8fUQ0HqKy +05/05/2018,Sports_celeb,@FloydMayweather,I just purchased 4 more Richard Mille timepieces from @rafaelloandco. Shop… https://t.co/VtG2fAPbjF +05/05/2018,Sports_celeb,@FloydMayweather,"Baby Face Little Floyd @ Grand Rapids, Michigan https://t.co/34IGHiE3te" +05/05/2018,Sports_celeb,@FloydMayweather,Time to take AIR MAYWEATHER worldwide and country hop. 🎥Credit :… https://t.co/8QsyMFbKRS +04/23/2018,Sports_celeb,@FloydMayweather,"I’m blessed! No baby mama drama @MizzMelissia + +FOLLOW @MizzMelissia https://t.co/9MxTu07Rc3" +04/23/2018,Sports_celeb,@FloydMayweather,Where should I travel to next ? https://t.co/6k4L4CQVdB +04/23/2018,Sports_celeb,@FloydMayweather,"One thing about me, I’m self made! My Dad taught me how to box and I perfected the boxing business, made my own mon… https://t.co/syDt63BvWz" +04/08/2018,Sports_celeb,@FloydMayweather,"I don't know nothing about tomorrow but I'm living for today. + +Photo Credit: @moneyyaya https://t.co/H7HC12hZGv" +04/04/2018,Sports_celeb,@FloydMayweather,"Follow one of the best pound 4 pound boxers in the world today @badoujack + +Instagram @badoujack + +Facebook Badou Jack https://t.co/zDsauAiyxA" +03/30/2018,Sports_celeb,@FloydMayweather,https://t.co/RcVFjbJgXF +03/30/2018,Sports_celeb,@FloydMayweather,https://t.co/GTEUYdULsq +03/29/2018,Sports_celeb,@FloydMayweather,Everybody follow and wish my son @zion_mayweather a Happy Birthday ! I love you Mush! https://t.co/UzfyobNklg +03/27/2018,Sports_celeb,@FloydMayweather,"Hate me or love me, you see me! https://t.co/VBfY42zwkA" +03/22/2018,Sports_celeb,@FloydMayweather,"Join me Tuesday, April 3rd at the 10th Annual Minnie’s Feed Just One Gala. Enter the fight at this epic event featu… https://t.co/aFzK0e6pDm" +03/08/2018,Sports_celeb,@FloydMayweather,Early morning selfie. https://t.co/js3pSQfUsb +03/04/2018,Sports_celeb,@FloydMayweather,Pretty Boy Floyd https://t.co/PoEmSjDPIh +03/01/2018,Sports_celeb,@FloydMayweather,https://t.co/ham7HHocux https://t.co/l6KkvVMvMF +03/01/2018,Sports_celeb,@FloydMayweather,These TMT Hublot time pieces will only appreciate in value. Go to your nearest @hublot boutique and shop right now… https://t.co/ghlvPPd2rG +03/01/2018,Sports_celeb,@FloydMayweather,Big Bottles For Those Big Moments... https://t.co/dtstgGZtIT +03/01/2018,Sports_celeb,@FloydMayweather,"Floyd Mayweather, you’re a show off. https://t.co/MgS4Zriov7" +03/01/2018,Sports_celeb,@FloydMayweather,"If you live in or are visiting Las Vegas, make sure to check out. @subzerorecovery and explore the benefits of cryo… https://t.co/bi0G55Ufxp" +03/01/2018,Sports_celeb,@FloydMayweather,I fuckin’ love my life. https://t.co/Dorf2duH4V +03/01/2018,Sports_celeb,@FloydMayweather,Buckle Up! #beltbuckle https://t.co/pDR9DXHwdf +03/01/2018,Sports_celeb,@FloydMayweather,https://t.co/XoUVKdyP26 +03/01/2018,Sports_celeb,@FloydMayweather,Unconditional Love https://t.co/zsdYrI2DDG +02/28/2018,Sports_celeb,@FloydMayweather,"The grass only gets greener on this side. +#AirMayweather +Photo Credit: @moneyyaya https://t.co/FV7fPEzJz3" +02/27/2018,Sports_celeb,@FloydMayweather,Fifty Shades of May. https://t.co/q1G30F9UKL +02/27/2018,Sports_celeb,@FloydMayweather,Mr. Chandelier Man. https://t.co/C3otqvUiNT +02/27/2018,Sports_celeb,@FloydMayweather,"I got a new jet for my birthday #AirMayweather #TMT +Photo Credit: @tmtpilot https://t.co/oDUGmD4XOR" +02/27/2018,Sports_celeb,@FloydMayweather,"I heard Chris Paul had his cowboy swag on today and so did I. I guess great minds think alike, be outside the box. https://t.co/HJ8ulpuPYI" +02/17/2018,Sports_celeb,@FloydMayweather,"Honored to launch my Big Bang Unico TMT with @HUBLOT! Shop at your nearest Hublot boutique! +#HublotMayweather #TMT… https://t.co/IgjptA41qm" +02/14/2018,Sports_celeb,@FloydMayweather,REAL TALK. #HappyValentinesDay https://t.co/vpOg4FhNBo +02/14/2018,Sports_celeb,@FloydMayweather,https://t.co/Z6RhMbgFXy +02/11/2018,Sports_celeb,@FloydMayweather,Certified Killa vs Certified Bitch https://t.co/N0GcWrycEL +02/10/2018,Sports_celeb,@FloydMayweather,"If you’re here in Las Vegas, I’m inviting you to come join me, @hublot & my team as we unveil the LIMITED EDITION… https://t.co/ro4Rv2shNE" +02/10/2018,Sports_celeb,@FloydMayweather,"Fooling around, playing my cousin Roy on my $30,000 crystal glass ping pong table. https://t.co/2PN9VbnQhI" +02/10/2018,Sports_celeb,@FloydMayweather,"Fooling around, playing my cousin Roy on my $30,000 crystal glass ping pong table. https://t.co/9nUtlyEnYd" +02/09/2018,Sports_celeb,@FloydMayweather,"Me, TMT and @hublot. Stay tuned https://t.co/WFWxyIuLEz #hublot #mayweather #tmt #tbe" +02/08/2018,Sports_celeb,@FloydMayweather,I know you can barely see me because my kitchen is bigger than your house. Can you hear the echo by looking at the… https://t.co/Aj5Rj9vkdm +02/05/2018,Sports_celeb,@FloydMayweather,"I see some of you are making comparisons to the custom $100,000.00 chinchilla fur coat I wore last night to the off… https://t.co/5uyZKEYB9d" +02/03/2018,Sports_celeb,@FloydMayweather,"@mannyfernandez You""re right ! You're muthafuckin' right!" +02/03/2018,Sports_celeb,@FloydMayweather,Billion Dollar Man https://t.co/8Vv4y1QpFK +02/01/2018,Sports_celeb,@FloydMayweather,"Come at the king, you best not miss... https://t.co/uHx4SJngHx" +01/30/2018,Sports_celeb,@FloydMayweather,https://t.co/JqWbuJ43eQ +01/30/2018,Sports_celeb,@FloydMayweather,#MCM Mayweather Crushes McGregor. https://t.co/i6p1K2QjGG +01/26/2018,Sports_celeb,@FloydMayweather,Some say there’s a difference between being smart and intelligent. Everyone knows that common sense isn’t so common… https://t.co/ct2mMZEhuo +01/26/2018,Sports_celeb,@FloydMayweather,https://t.co/Z0NWdsx3aS https://t.co/4VKWxNBcKK +01/24/2018,Sports_celeb,@FloydMayweather,Just heard a crazy song from @MaitreGims. This is why his music #1 in France. Now let’s do a crazy video for… https://t.co/2rBqIaaeeu +01/10/2018,Sports_celeb,@FloydMayweather,I already fucked you up in 2017 now they about to fuck you up in 2018. You’re about to start your new year off with… https://t.co/I8RR6oujD6 +01/09/2018,Sports_celeb,@FloydMayweather,BLACK IS BEAUTIFUL https://t.co/Q2Q1u3qg74 +01/04/2018,Sports_celeb,@FloydMayweather,Young Money May https://t.co/m6ACbbw8ol +12/26/2017,Sports_celeb,@FloydMayweather,Happy Holidays To Everyone. https://t.co/Dl9CBoBnmp +12/25/2017,Sports_celeb,@FloydMayweather,HAPPY HOLIDAYS! https://t.co/c5Cw9iRmWw +12/24/2017,Sports_celeb,@FloydMayweather,"It’s nothing like giving back to children, @icedoutbarber ,I’m so proud of you! You will always have my support.… https://t.co/Oilko743io" +12/24/2017,Sports_celeb,@FloydMayweather,"@keithandjames +#keithandjames https://t.co/FxHcSP4S68" +12/20/2017,Sports_celeb,@FloydMayweather,It’s always MONEY season. https://t.co/vdOC5xPrqB +12/15/2017,Sports_celeb,@FloydMayweather,https://t.co/zuxkthsSYK https://t.co/6jptzgl0Kw +12/10/2017,Sports_celeb,@FloydMayweather,https://t.co/tWxQCMX5Wl https://t.co/15DHdkCYmo +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/ayAbzkm6sv https://t.co/3qMnZkPRuB +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/yxhGSR1rpx https://t.co/nuwVV0PTtV +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/dyIA3zeqwS https://t.co/yZ2liznMvq +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/H58AXl4mJJ +R.I.P. Taylor https://t.co/t1j8HLZ0mt" +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/Writg5mVrF +R.I.P. Taylor https://t.co/DwLVRQKP1F" +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/w3j65h2ddF +R.I.P. Taylor https://t.co/Z4ASqPyoTq" +12/07/2017,Sports_celeb,@FloydMayweather,Taking a little food break in between gambling while on a quick visit to Macau. https://t.co/ku3fA4lTVW +12/07/2017,Sports_celeb,@FloydMayweather,https://t.co/hWA2fAXkS1 https://t.co/kvOqOSg6Yq +12/03/2017,Sports_celeb,@FloydMayweather,"Victoria Peak +Hong Kong, China +「金錢團隊」 https://t.co/LU0PQ8mXIb" +12/03/2017,Sports_celeb,@FloydMayweather,"Hong Kong, China +「金錢團隊」 https://t.co/PyZinWowSs" +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/6mBifyx7TF https://t.co/VADQ33MI61 +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/mU9kmLzjuS https://t.co/BurrqMGBi2 +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/Z1FRO8UK43 https://t.co/Z2aC3OHRS4 +12/02/2017,Sports_celeb,@FloydMayweather,https://t.co/KlXdoEVw6x https://t.co/Er4vpYNhf6 +11/20/2017,Sports_celeb,@FloydMayweather,https://t.co/XT987hqilw https://t.co/pCGLPR6JzS +11/17/2017,Sports_celeb,@FloydMayweather,"I want to wish my son, @kingkoraun a HAPPY BIRTHDAY! +Everyone FOLLOW and WISH @kingkoraun A HAPPY 18th BIRTHDAY! https://t.co/smzgkQIRIV" +11/15/2017,Sports_celeb,@FloydMayweather,RIP Grand Dad. I️ will always love you. https://t.co/ZBLBrmyFSK +11/13/2017,Sports_celeb,@FloydMayweather,"I Will Be In China In Two Weeks. +Can’t Wait!!!! See You Guys Soon https://t.co/jCF7uCgvGR" +11/09/2017,Sports_celeb,@FloydMayweather,If you’re in Las Vegas next Saturday (11/18) meet me at the Chelsea inside the Cosmopolitan to watch an exciting ni… https://t.co/UsPVP0biRM +11/08/2017,Sports_celeb,@FloydMayweather,"Let's Start Your Christmas Shopping Early And Visit @RickiBrazil Ladies Treat Yourself To Something Nice, And Fella… https://t.co/zNWlP4PIKt" +11/02/2017,Sports_celeb,@FloydMayweather,https://t.co/K7DY9vbPYk https://t.co/H0BrtadOoO +10/27/2017,Sports_celeb,@FloydMayweather,https://t.co/xwx16yD8WP https://t.co/CZ8KO5h6jS +10/23/2017,Sports_celeb,@FloydMayweather,"I got that bag...literally & figuratively. + +#Hermes +#HermesHac +#HermesDiamondHac https://t.co/8X6E4M9NQz" +10/23/2017,Sports_celeb,@FloydMayweather,"“ROCK-A-BYE-BABY” +https://t.co/E04XN3A9VV https://t.co/e5HF5jRw50" +10/23/2017,Sports_celeb,@FloydMayweather,With 3 of my 4 children at the home opener for The Clippers vs. The Lakers game. They are all grown up now & are s… https://t.co/YupLauXpO5 +10/23/2017,Sports_celeb,@FloydMayweather,https://t.co/jWUzerRgSs https://t.co/ocs170AURW +10/20/2017,Sports_celeb,@FloydMayweather,"Support my girl @keyshiacole and get her new album #1111Reset now! +@keyshiacole!! you did it! Get her new album… https://t.co/cnzluhhdWT" +10/19/2017,Sports_celeb,@FloydMayweather,https://t.co/WgwicxJ9HX +10/18/2017,Sports_celeb,@FloydMayweather,https://t.co/z6BVbn660t +10/09/2017,Sports_celeb,@FloydMayweather,Like fine wine https://t.co/AsOZxFTbIk +10/06/2017,Sports_celeb,@FloydMayweather,Best Mouthguard In The Game @IcebergGuards For $99. We Send You A Personal Kit So You Can Have A Custom Fit Guard… https://t.co/tK8NBEUWUq +10/06/2017,Sports_celeb,@FloydMayweather,Born ready. https://t.co/FVliki6lnj +10/05/2017,Sports_celeb,@FloydMayweather,"“MR. UNDEFEATED” +50-0 +‘Undefeated’ +Music by Friyie @artofvangogh +NOW AVAILABLE on iTunes +GO BUY NOW! https://t.co/OGvXljvQgw" +10/04/2017,Sports_celeb,@FloydMayweather,"My love for the city of Las Vegas is unconditional! +I put this city on my https://t.co/g9aYEl1IrH https://t.co/BLbYiVjc37" +10/04/2017,Sports_celeb,@FloydMayweather,Billion Dollar Business https://t.co/BVy2PxCxsk +09/30/2017,Sports_celeb,@FloydMayweather,EVERYONE FOLLOW & WISH @MizzMelissia A VERY HAPPY BIRTHDAY! https://t.co/ywtRyh7hTL +09/26/2017,Sports_celeb,@FloydMayweather,"Exclusive timeless artwork in my Beverly Hills home + +#BeverlyHills + +#90210 + +#TBE + +#TMT https://t.co/o4IVZZTmpu" +09/20/2017,Sports_celeb,@FloydMayweather,"On behalf of The Money Team and Myself, I want to send my sincerest condolences to the families of Mexico and to… https://t.co/Za3AZ3mmN9" +09/18/2017,Sports_celeb,@FloydMayweather,"Centra's (CTR) ICO starts in a few hours. Get yours before they sell out, I got mine https://t.co/nSiCaZ274l https://t.co/dB6wV0EROJ" +09/18/2017,Sports_celeb,@FloydMayweather,"When it comes to luxury timepieces, Hublot is in a class of its own! As a collector of great watches,… https://t.co/hTcHcLVAzh" +09/15/2017,Sports_celeb,@FloydMayweather,Spending bitcoins ethereum and other types of cryptocurrency in Beverly Hill https://t.co/q9VZ3MzpK8 https://t.co/BYyOFUnm8W +09/15/2017,Sports_celeb,@FloydMayweather,https://t.co/rFIUcblFIh https://t.co/YBjI7XnlOV +09/13/2017,Sports_celeb,@FloydMayweather,"RT @lelepons: This video is so good @FloydMayweather @awkwardpuppets @rudymancuso!!!!! + +https://t.co/Je7MkSPNn8" +09/13/2017,Sports_celeb,@FloydMayweather,"RT @tubefilter: Fresh Off His Big Win, @FloydMayweather Sits Down With @rudymancuso’s ‘@AwkwardPuppets’ https://t.co/Qn3LVPXK8H" +09/13/2017,Sports_celeb,@FloydMayweather,RT @shots: Best @FloydMayweather Interview by @awkwardpuppets via Shots Studios: https://t.co/0Z1npYb95D https://t.co/U7K0mAOR5K +09/12/2017,Sports_celeb,@FloydMayweather,I truly love & appreciate my fans. This tattoo artist is unbelievable https://t.co/oJ2kHPoXAb +09/12/2017,Sports_celeb,@FloydMayweather,I truly love & appreciate my fans. This tattoo artist is unbelievable https://t.co/w1ltFwVg4u +09/11/2017,Sports_celeb,@FloydMayweather,"Check your local TV listing on NBC today; Monday, Sept 11, 2017 and tune in on The Steve Harvey Show for my 1st TV… https://t.co/3cH7eEFAFA" +09/11/2017,Sports_celeb,@FloydMayweather,https://t.co/ve7zkkGqId https://t.co/0TL2QW7fpN +09/09/2017,Sports_celeb,@FloydMayweather,Ladies love to be spoiled. 10 Hermes Birkin Bags cause I can. #hermes #birkin #tmt #tbe https://t.co/zx7Iz4DNQt +09/08/2017,Sports_celeb,@FloydMayweather,"I do it all for them. Unconditional love. +#family #children + +https://t.co/CtdEjfq8QJ https://t.co/LnpLrZNu3K" +09/07/2017,Sports_celeb,@FloydMayweather,Follow my playlist on @Spotify https://t.co/vJUKEwz9zH +09/07/2017,Sports_celeb,@FloydMayweather,Check Out @IcebergGuards To Get The Best Mouth Guard For Athletes. #BreatheAbility https://t.co/dd0j1vE6I3 +09/05/2017,Sports_celeb,@FloydMayweather,RT @awkwardpuppets: I have the first interview with the Champ @floydmayweather since #MayweatherMcGregor fight. It's coming soon to https:/… +09/05/2017,Sports_celeb,@FloydMayweather,"Texting Bruce, my driver. https://t.co/m78dnq0ivC" +09/04/2017,Sports_celeb,@FloydMayweather,"Las Vegas, come visit @girlcollection 7 days a week. [Song is Will I See You by @Anitta] https://t.co/bhQqjJS39z" +09/04/2017,Sports_celeb,@FloydMayweather,RT @HugoGloss: O @floydmayweather bem maravilhoso no stripclub dele usando #WillISeeYou de trilha no stories!! https://t.co/vQkGVOzYR5 +09/04/2017,Sports_celeb,@FloydMayweather,RT @rudymancuso: Coming soon @FloydMayweather @awkwardpuppets @john @shots https://t.co/IJVtgFw4u9 +08/31/2017,Sports_celeb,@FloydMayweather,I'm going in the Guinness Book of World Records for that heist. @PhilippPlein78 #TMT #TBE https://t.co/2d5AdmA9lg +08/31/2017,Sports_celeb,@FloydMayweather,Smile because life is great. #TMT #TBE https://t.co/GAblmczXj6 +08/31/2017,Sports_celeb,@FloydMayweather,RT @john: thank you @idris_erba https://t.co/OzxTNAtWtB +08/29/2017,Sports_celeb,@FloydMayweather,RT @MaiaMitchell: https://t.co/Nq0qUlI0iu +08/27/2017,Sports_celeb,@FloydMayweather,@dathanvp Thank you family. +08/27/2017,Sports_celeb,@FloydMayweather,50 - 0 +08/27/2017,Sports_celeb,@FloydMayweather,Thank you to the great country of Ireland and all the countries around the world for supporting me. +08/27/2017,Sports_celeb,@FloydMayweather,@ddlovato Thank you. +08/27/2017,Sports_celeb,@FloydMayweather,Thank you everyone in Las Vegas and everyone at home who ordered PPV. Thank you @SHOsports and my team… https://t.co/7kwPA2NXRo +08/27/2017,Sports_celeb,@FloydMayweather,"Without God, none of this is possible. THANK YOU" +08/27/2017,Sports_celeb,@FloydMayweather,RT @JBALVIN: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @Anitta: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,What were the odds on that? #paddypower #alwaysbetonblack ☘️ https://t.co/EPsbCygfaR +08/26/2017,Sports_celeb,@FloydMayweather,RT @lelepons: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @rudymancuso: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @inanna: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @HannahStocking: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @ElJuanpaZurita: #TeamMayweather ⚡️🔝 +08/26/2017,Sports_celeb,@FloydMayweather,RT @awkwardpuppets: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @shots: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,"Head to the theaters tonight to witness me make history! For locations near you, go to https://t.co/lXsQk9LZN2" +08/26/2017,Sports_celeb,@FloydMayweather,#TeamMayweather https://t.co/vtUvv0hUOp +08/26/2017,Sports_celeb,@FloydMayweather,Thank you @hublot for the unconditional support over the years https://t.co/n6MPnqSkgD +08/26/2017,Sports_celeb,@FloydMayweather,Talking doesn't win fights. +08/26/2017,Sports_celeb,@FloydMayweather,RT @john: The official weigh-in with @FloydMayweather. https://t.co/wdqUbAeK4G +08/26/2017,Sports_celeb,@FloydMayweather,"RT @LEllerbe: Unbelievable atmosphere at the weigh-in, can't wait until tomorrow!!!!!" +08/25/2017,Sports_celeb,@FloydMayweather,https://t.co/tOZDszQ2Sk +08/25/2017,Sports_celeb,@FloydMayweather,Weigh-in is at 3pm PT today. Make sure to watch it live. +08/25/2017,Sports_celeb,@FloydMayweather,Conor and I take will take the center stage tomorrow. Live on PlayStation®4 (PS4™). Order #MayweatherMcGregor today https://t.co/ZTqGuv9Gst +08/24/2017,Sports_celeb,@FloydMayweather,Watch me fight on @DISH Pay-Per-View. Go to https://t.co/00sSmir6JM for details on how to order #MayweatherMcGregor +08/24/2017,Sports_celeb,@FloydMayweather,"God believes in me, America believes in me, even the Irish believe in 🤜☘️ https://t.co/0W6jFFfr6B" +08/24/2017,Sports_celeb,@FloydMayweather,"I chose @TequilaAvion, Worlds Best Tequila to commemorate my 50th fight. Grab a bottle of Avion Tequila for fight n… https://t.co/icJA5SaGcm" +08/23/2017,Sports_celeb,@FloydMayweather,RT @ConorMaples: This @Spotify workout playlist from @FloydMayweather will get you amped for the gym — or for watching the fight https://t.… +08/23/2017,Sports_celeb,@FloydMayweather,You can call me Floyd Crypto Mayweather from now on #HubiiNetwork #ICO starts tomorrow! Smart contracts for sports?… https://t.co/u5ahtljk3B +08/23/2017,Sports_celeb,@FloydMayweather,What are you waiting for? Order the fight NOW on @verizonfios and you can win a trip to a future boxing event! https://t.co/2wdaI1L7jo +08/23/2017,Sports_celeb,@FloydMayweather,https://t.co/ZLirM3UUBi +08/18/2017,Sports_celeb,@FloydMayweather,I know everyone's excited to see my biggest fight ever... but blowing up my phone isn't going to get you anywhere..… https://t.co/Azo8HoIHBL +08/17/2017,Sports_celeb,@FloydMayweather,I don't only bring the action inside the ring! Watch me on the #LateLateShow w/ @JKCorden tonight at 12:37/11:37c o… https://t.co/SvsAyTmOOL +08/16/2017,Sports_celeb,@FloydMayweather,RT @Isaiah_Thomas: Always good to see my brother @FloydMayweather. Aug 26th he will be 50-0 #TMT #TBE +08/15/2017,Sports_celeb,@FloydMayweather,RT @MayweatherPromo: What makes @FloydMayweather vs @TheNotoriousMMA intriguing https://t.co/pPV6ceP6dz +08/12/2017,Sports_celeb,@FloydMayweather,"Tune in for The Third Episode +Of Four-Part Series. Premieres Tonight at 10p.m. ET/ 7p.m. PT + On SHOWTIME… https://t.co/Qyy8LgMut1" +08/06/2017,Sports_celeb,@FloydMayweather,new photo on bigboymansion's IG https://t.co/FkUsYkZwcs +08/05/2017,Sports_celeb,@FloydMayweather,#TMT +08/05/2017,Sports_celeb,@FloydMayweather,https://t.co/zHQaFxFw1c https://t.co/IGXDiDHdC7 +08/04/2017,Sports_celeb,@FloydMayweather,@billboard @Anitta Congratulations. +08/01/2017,Sports_celeb,@FloydMayweather,https://t.co/3uljFZ24hC https://t.co/TOF5iBPoHu +08/01/2017,Sports_celeb,@FloydMayweather,"Just shooting around, working on my midrange jumper #nba +@iam_jcraw +@Alonzo_Earle +@nba https://t.co/ssDhS1DdQ4" +07/02/2018,Sports_celeb,@SHAQ,"RT @echostage: How often do you get to see @cashcash + @SHAQ share the stage? + +July 14th it's going down! 🔥🔥🔥 + +Tickets: https://t.co/CzXSX…" +07/02/2018,Sports_celeb,@SHAQ,I got ready for @KrispyKreme #WorldChocolateDay by learning how to say “chocolate” in 327 different languages! Grab… https://t.co/HKPTGYpKky +07/02/2018,Sports_celeb,@SHAQ,Check out my homegirls on Claws tonight on TNT at 9pm ET. Hopefully they can help me get my pedicure right” hey @karrueche +07/01/2018,Sports_celeb,@SHAQ,The @rootsoffight summer sale is live! Save big on select styles now until noon PT July 5th. #CelebrateTogether… https://t.co/k5XRXcI4pN +06/28/2018,Sports_celeb,@SHAQ,"RT @DeepakChopra: Join me in supporting @RealAfroScholar's efforts to bring @amazon's #HQ2 to #Newark, NJ. He's helping to create a more pe…" +06/28/2018,Sports_celeb,@SHAQ,MIAMI. 305. I am coming home and promise you this one is going to be legendary. Grab your tickets while you still c… https://t.co/adEGwRClLt +06/28/2018,Sports_celeb,@SHAQ,"RT @GetUpESPN: Regarding a rap battle re-match, @kenjeong has a message for you @SHAQ: https://t.co/1OAkDB3LVC" +06/27/2018,Sports_celeb,@SHAQ,"Had to do it big for last night, thanks for helping me up my suit game @jcpenney #ad https://t.co/hBAKKn9GWr" +06/27/2018,Sports_celeb,@SHAQ,"It's summertime, baby! Stay cool, hydrated, and energized with @TheRealEnergice now at every @myfamilydollar store… https://t.co/zZ5yHad6FM" +06/27/2018,Sports_celeb,@SHAQ,Congratulations to Coach Johnny Jones the head coach of Texas Southern University we wish you well brother +06/27/2018,Sports_celeb,@SHAQ,"RT @MayorLevine: .@Shaq is on #TeamLevine, are you? This is our year to change the direction of Florida! + +Growing up I worked every job, fr…" +06/26/2018,Sports_celeb,@SHAQ,Suns out guns out...Summer of SHAQ starts now @BillboardDance 🔥💪 https://t.co/fPpdHKnbsJ https://t.co/xkbEal70IQ +06/24/2018,Sports_celeb,@SHAQ,DJ DIESEL AND bayati_music HAD @chateaulv ROCKING LIKE A MUG https://t.co/gKvI8WgSqW +06/23/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: NBA draft news, MLB updates, NFL insider info... + +PodcastOne Sports along w/ @SHAQ and many others bring you all the lates…" +06/22/2018,Sports_celeb,@SHAQ,Atlantic City I am coming for you July 14 🔥🔥 Jersey Shore get ready to Turn Up!! Tickets: https://t.co/eZrigt3RKb https://t.co/JcZiJ6LB4f +06/22/2018,Sports_celeb,@SHAQ,@MikeGoldFool @PostMalone Gonna miss u to +06/22/2018,Sports_celeb,@SHAQ,Congratulations @MB3FIVE and welcome to Sacramento. You've got a big career ahead of you. Already starting in style… https://t.co/lKXClkHzTy +06/21/2018,Sports_celeb,@SHAQ,"Can’t wait to visit Wisconsin on Friday. Big day of @ChampionsTour golf, #DJShaq and more. Check out my… https://t.co/oush5LHWnX" +06/20/2018,Sports_celeb,@SHAQ,"My new game Shaq Slam is on @myVEGAS Facebook baby! Here’s some chips for you to spin & win: +Facebook –… https://t.co/cr0iTHGbj0" +06/17/2018,Sports_celeb,@SHAQ,"Enough said, y’all need to check this out, a… https://t.co/ulsxmwnLk9" +06/16/2018,Sports_celeb,@SHAQ,Caught up with @MB3FIVE at the studio to show him the ropes. @JCPenney followed us around to capture it all. Watch… https://t.co/85lq5Qp7ki +06/15/2018,Sports_celeb,@SHAQ,Thanks @dubmagazine for hooking my cars up with your new @dubirtint #tintwithtechnology installed by @aesouthbay +06/14/2018,Sports_celeb,@SHAQ,Meet Big Fella! Check me out in #UncleDrew In theaters June 29 https://t.co/rBzSVjb6DK https://t.co/qQbbEDpdj5 +06/14/2018,Sports_celeb,@SHAQ,@theofficialhesh Just send me the heat 🔥🔥🔥 and I will drop that bass cuz +06/13/2018,Sports_celeb,@SHAQ,Thank you for sending your questions. See @UncleDrewFilm in theaters June 29! #AskShaq https://t.co/VEyzO3fy2l +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @kaylaxabby .@kaylaxabby #AskShaq https://t.co/i2jwEin49H +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @RishiK19 .@RishiK19 #AskShaq https://t.co/mhnay7FX0V +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @TheMasonGaming .@TheMasonGaming #AskShaq https://t.co/CaIWS3NuWq +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @spiros602 @TwitterMovies .@spiros602 @TheGeneralAuto #AskShaq https://t.co/hhLA51r26w +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @RishiK19 .@rishik19 #AskShaq https://t.co/c38uIHidiV +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @BALLnROLL .@BALLnROLL #askshaq https://t.co/RAzeStgqNe +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @neverheardabout @UncleDrewFilm .@neverheardabout #askshaq https://t.co/jakRW5jQoi +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @AmeliaEarhart1 .@AmeliaEarhart1 @nate_robinson #AskShaq https://t.co/Rv1M7zpM9w +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @JesseAndClarke .@JesseAndClarke @KyrieIrving #AskShaq https://t.co/BQZMjGIpdS +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @LisaLeslie .@LisaLeslie #AskShaq https://t.co/FkSRdDSCVT +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @Dyl5nSmith .@Dyl5nSmith #AskShaq https://t.co/ICVMkqCWQJ +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @ChaoticProdigy_ #AskShaq https://t.co/VlX8PwEz4x +06/13/2018,Sports_celeb,@SHAQ,@kaylaxabby .@kaylaxabby #AskShaq https://t.co/i2jwEin49H +06/13/2018,Sports_celeb,@SHAQ,@RishiK19 .@RishiK19 #AskShaq https://t.co/mhnay7FX0V +06/13/2018,Sports_celeb,@SHAQ,@TheMasonGaming .@TheMasonGaming #AskShaq https://t.co/CaIWS3NuWq +06/13/2018,Sports_celeb,@SHAQ,@spiros602 @TwitterMovies .@spiros602 @TheGeneralAuto #AskShaq https://t.co/hhLA51r26w +06/13/2018,Sports_celeb,@SHAQ,@RishiK19 .@rishik19 #AskShaq https://t.co/c38uIHidiV +06/13/2018,Sports_celeb,@SHAQ,@BALLnROLL .@BALLnROLL #askshaq https://t.co/RAzeStgqNe +06/13/2018,Sports_celeb,@SHAQ,@neverheardabout @UncleDrewFilm .@neverheardabout #askshaq https://t.co/jakRW5jQoi +06/13/2018,Sports_celeb,@SHAQ,@AmeliaEarhart1 .@AmeliaEarhart1 @nate_robinson #AskShaq https://t.co/Rv1M7zpM9w +06/13/2018,Sports_celeb,@SHAQ,@JesseAndClarke .@JesseAndClarke @KyrieIrving #AskShaq https://t.co/BQZMjGIpdS +06/13/2018,Sports_celeb,@SHAQ,@LisaLeslie .@LisaLeslie #AskShaq https://t.co/FkSRdDSCVT +06/13/2018,Sports_celeb,@SHAQ,@Dyl5nSmith .@Dyl5nSmith #AskShaq https://t.co/ICVMkqCWQJ +06/13/2018,Sports_celeb,@SHAQ,@ChaoticProdigy_ #AskShaq https://t.co/VlX8PwEz4x +06/13/2018,Sports_celeb,@SHAQ,#AskShaq https://t.co/16aHnuPA19 +06/13/2018,Sports_celeb,@SHAQ,Please help my friends in Gwinnett County. Shelter is full! Adopt a new family member! This month all dogs and cats… https://t.co/LE0KigY789 +06/13/2018,Sports_celeb,@SHAQ,Who wore the 'stache better? #BigFella or #LilG #ad https://t.co/dUMOW08FMK +06/12/2018,Sports_celeb,@SHAQ,I’m answering your Uncle Drew questions live on Wednesday! Tweet them to me now using #AskShaq! https://t.co/carNdIgaLR +06/11/2018,Sports_celeb,@SHAQ,@j_spag @svddendeathdub That track had the crowd getting sick as fuh... send me some more of that fire cuz +06/10/2018,Sports_celeb,@SHAQ,In the studio with @KingsGuardGG. #SHAQramento 👑🎮 https://t.co/lNSBqxqQjO +06/09/2018,Sports_celeb,@SHAQ,Forget @FortniteGame and play a real game! Shaq Fu: A Legend Reborn is out now. U gonna love it. https://t.co/YJ3f5ZKoFh +06/09/2018,Sports_celeb,@SHAQ,Get that #FridayFeeling!!! Pick up Shaq Fu: A Legend Reborn for the weekend. It's time to settle the score of '94! https://t.co/YJ3f5ZKoFh +06/06/2018,Sports_celeb,@SHAQ,Boom! The wait is finally over and the Shaq Attack is in full effect! Grab a copy of Shaq Fu: A Legend Reborn today… https://t.co/Dqa8EI14li +06/05/2018,Sports_celeb,@SHAQ,"THE BIG DAY HAS ARRIVED!!! Shaq Fu: A Legend Reborn is available now on PS4, Xbox One, Nintendo Switch, & Steam. St… https://t.co/jK3aD1Y1tq" +06/05/2018,Sports_celeb,@SHAQ,Was such an honor to represent @NBA2K as their Legend Edition cover athlete last year. Can’t think of anyone better… https://t.co/DffoanFK7e +06/05/2018,Sports_celeb,@SHAQ,RT @espn: On This Date: @kobebryant threw it up and @SHAQ slammed it down in Game 7 against the Blazers. https://t.co/VA7rjCcsJE +06/04/2018,Sports_celeb,@SHAQ,Nice work @StephenCurry30 on getting in the #nbafinals record books! You inspired me to add a new look to my alread… https://t.co/xlla5Sovjx +06/03/2018,Sports_celeb,@SHAQ,RT @TheRealMikeEpps: Youngster got that swag 😂👌🏾 https://t.co/sgxeWAOhmb +06/01/2018,Sports_celeb,@SHAQ,RT @krispykreme: It's free. Why not? #NationalDoughnutDay is June 1st. https://t.co/77y6SENjzP +05/29/2018,Sports_celeb,@SHAQ,"Shaq's Fun House aimed to create the most legendary event on the planet. The best DJ's in the world, carnival attra… https://t.co/337RtApuuu" +05/29/2018,Sports_celeb,@SHAQ,Who could turn down a free doughnut? Not me! Head to @KrispyKreme June 1 to snag a free one of your choice for… https://t.co/fzm1pSqGG6 +05/28/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ says Chris Paul should ""man up"" and play the rest of this #HOUvsGSW series despite his hamstring injury. + +Listen to…" +05/24/2018,Sports_celeb,@SHAQ,RT @WiredP: *Announcement* We’ve teamed up with @Shaq to bring an extremely limited (just 500 in the world!) Shaq FU: A Legend Reborn Colle… +05/24/2018,Sports_celeb,@SHAQ,@jtimberlake @NBAonTNT When you need a handsome baritone It’s gonna be me @realjoeyfatone baby bye bye bye +05/24/2018,Sports_celeb,@SHAQ,RT @jtimberlake: Google’s having a rough night. @SHAQ @NBAonTNT https://t.co/ehqGOxFeM5 +05/23/2018,Sports_celeb,@SHAQ,"Big news today! As The BIG Guy in charge at @CarnivalCruise AKA CFO, I’m honored to introduce our newest ship:… https://t.co/5JS3wVec3g" +05/23/2018,Sports_celeb,@SHAQ,"RT @shaqtin: “Nominee Numba 1! Draymond Green!” -@SHAQ, probably #Shaqtin 😂 https://t.co/glMW8zSdku" +05/23/2018,Sports_celeb,@SHAQ,DC I am coming for you!! Throwing down with my boys @cashcash at Washington’s best club @echostage. Tix on sale Thu… https://t.co/nJIqwXAiMV +05/22/2018,Sports_celeb,@SHAQ,RT @PC1Sports: Before tonight's #WarriorsVSRockets game 4 @SHAQ dropped by to give a quick message about @PodcastOne! https://t.co/mkASmeiq… +05/22/2018,Sports_celeb,@SHAQ,RT @PC1Sports: 👀👀 what is @SHAQ up to with us today? https://t.co/QTOyDv35XL +05/22/2018,Sports_celeb,@SHAQ,Last chance to come hang with me in Vegas! Enter here and support the SAGERSTRONG Foundation:… https://t.co/AVx9777mGD +05/22/2018,Sports_celeb,@SHAQ,.@TheRealEnergice helps me stay hydrated and energized. Find #Energice in every @DollarGeneral store nationwide! #ad +05/22/2018,Sports_celeb,@SHAQ,"RT @NBAonTNT: ""I've come a long way since Kazaam!"" + +@SHAQ stars in Shaqanimal Shaqkingdom. https://t.co/Ch6ly9ooKt" +05/20/2018,Sports_celeb,@SHAQ,RT @richeisen: For your weekend listening: the newest “Eyes On Sports” where Suzy and I welcome two guests — @notthefakeSVP on our old ESPN… +05/19/2018,Sports_celeb,@SHAQ,Headed to The Bay this weekend #nbaplayoffs #warriors #rockets what up @G_Eazy where dem Bay Area ballers @E40… https://t.co/QuCRktI4XA +05/17/2018,Sports_celeb,@SHAQ,RT @RealBillRussell: #shaqinafool @NBAonTNT I once had an inbound pass that hit the guide wire that should qualify. @shaq +05/17/2018,Sports_celeb,@SHAQ,I’m back baby on @myVEGAS! Play my new game Shaq Slam. Here’s some chips to get you started:… https://t.co/lg1RnzPtTz +05/17/2018,Sports_celeb,@SHAQ,@kingjames I thought it was you brother but it… https://t.co/ha1yFxqh7O +05/16/2018,Sports_celeb,@SHAQ,"Me, Chuck Boy, @TheJetOnTNT and @TurnerSportsEJ back in #Houston tonight for game 2 @NBAonTNT… https://t.co/8T3OjxZ4qG" +05/16/2018,Sports_celeb,@SHAQ,‘It’s time to settle the score of ’94! I’m back baby! Pre-order the new and improved #ShaqFu at @GameStop and be re… https://t.co/AVQHGZVSiO +05/15/2018,Sports_celeb,@SHAQ,RT @JustinLockhart_: Extremely honored and blessed to have received an offer from Utah State! #GoAggies https://t.co/5Lt4chZAyG +05/09/2018,Sports_celeb,@SHAQ,"Y'all better step aside, cause @TheGeneralAuto and I have arrived! 🏀 + +Get your first look at #BigFella and #LilG p… https://t.co/H0VzrCGLrq" +05/07/2018,Sports_celeb,@SHAQ,RT @PC1Sports: A listener of The Big Podcast had a question for @SHAQ - which superstar would he choose to make NBA title runs for the next… +05/06/2018,Sports_celeb,@SHAQ,"Ready to flex on em tonight. Got something big with @jcpenney coming for you guys, catch me on @NBAonTNT #AllAtJCP… https://t.co/noZu4OlmZr" +05/06/2018,Sports_celeb,@SHAQ,Can't believe this was 25 years ago #ROOKIEOFTHEYEAR Who you got this year? https://t.co/zOazz1c4mp +05/05/2018,Sports_celeb,@SHAQ,RT @JustinLockhart_: Blessed to say I have received my 2nd offer and 1st Pac 12 offer from the University of Utah! #GoUtes https://t.co/hLY… +05/05/2018,Sports_celeb,@SHAQ,"@JalenRose you tell @paulpierce34 that’s was a different Shaq, come on truth lol I’m watching you @ paulpierce34 great job fellas" +05/04/2018,Sports_celeb,@SHAQ,"DJ Diesel X @steveaoki X @dimmak +Stay tuned this motion picture is to be continued... https://t.co/py5YZ2trdB" +05/03/2018,Sports_celeb,@SHAQ,What @mcuban used to play every time I went to the free throw line hillarious https://t.co/XYMXRgTLFN +05/03/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ makes his BOLD prediction where @KingJames & @Yg_Trece will be playing next year! + +Hear the rest of this conversation…" +05/02/2018,Sports_celeb,@SHAQ,I’m looking for a VIP... and it could be YOU! For your chance to party with me in Vegas & support a great cause go… https://t.co/rU9G5KOR0U +05/01/2018,Sports_celeb,@SHAQ,I made chuck go into his MATRIX #NBAONTNT https://t.co/0CaupkxZtG +04/30/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: A new episode of The Big Podcast with @SHAQ is out! + +Here's a clip of Shaq talking about his NBA Playoff curfew rules when…" +04/29/2018,Sports_celeb,@SHAQ,My main man ceowacko142 just hook me up with 100 dope t shirts check him out… https://t.co/MddNMeJ03T +04/28/2018,Sports_celeb,@SHAQ,Got this @G_Eazy @yogottikom and @YBNNahmir on repeat! And you know it’s from the #UncleDrew Soundtrack. Get it: https://t.co/ETPrPdHfbu +04/27/2018,Sports_celeb,@SHAQ,"RT @TheGeneralAuto: Okay, #BigFella! You know who to call if you need a 6th man for the geriatric squad, @SHAQ 😉 + +#GetBuckets #UncleDrew h…" +04/26/2018,Sports_celeb,@SHAQ,Let’s GO! The new trailer for #UncleDrew is here! See the crew in theaters June 29. uncledrewfilm https://t.co/dEtNcUExdz +04/26/2018,Sports_celeb,@SHAQ,Let’s GO! The new trailer for #UncleDrew is here! See the crew in theaters June 29: https://t.co/h2fu9SH19A @UncleDrewFilm +04/26/2018,Sports_celeb,@SHAQ,I didn’t know they had sharks and alligators in MINNESOTA LAKES they tried to attack me America… https://t.co/5F9MaR0d8S +04/25/2018,Sports_celeb,@SHAQ,"What's going on with Kawhi in San Antonio? Here's what I think went down, from this week's #Shaqcast.… https://t.co/sU40E6d6UY" +04/25/2018,Sports_celeb,@SHAQ,"When I go to Vegas, I go big. Think you can handle it? Support @SagerStrong & enter to be my VIP:… https://t.co/nVHZM35LXb" +04/25/2018,Sports_celeb,@SHAQ,"RT @MikeGoldFool: Dear @KingJames & @JoelEmbiid, here is how you can avoid winning Shaqtin MVP: + +1) tweet Shaq something nice and funny +2)…" +04/25/2018,Sports_celeb,@SHAQ,"RT @UncleDrewFilm: Squad up! Check out the new official poster for #UncleDrew in theaters June 29! Starring @KyrieIrving, @LilRel4, @Shaq,…" +04/24/2018,Sports_celeb,@SHAQ,Meek Mill Boards Chopper Heading to 76ers Game! via @TMZ https://t.co/0lKqOdHQGO https://t.co/HswaJ2EKRk +04/23/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ gives his thoughts on what he thinks went down between Kawhi Leonard and the Spurs + +Listen to the full episode here:…" +04/23/2018,Sports_celeb,@SHAQ,Be yourself be different be the best be whatever you want. https://t.co/sZwG77ui95 +04/22/2018,Sports_celeb,@SHAQ,@sickickmusic does it again the guy is crazy I seen him do it in real life daaaaaaam https://t.co/NRRUJHreTF +04/21/2018,Sports_celeb,@SHAQ,@Grabbitz had me jammin like a mug https://t.co/LZ79RfVhHR +04/19/2018,Sports_celeb,@SHAQ,"From basketball to big business, it's all about fun. Thanks to @RealSportsHBO for the feature: https://t.co/rZGvAjDK6B" +04/18/2018,Sports_celeb,@SHAQ,I want to fly you out to Vegas to live it up with me! It’s gonna be 🔥🔥🔥 Support #SAGERSTRONG & enter to win:… https://t.co/TTSizc16Yv +04/15/2018,Sports_celeb,@SHAQ,"Watch me battle @kenjeong on the premiere of @DropTheMic tonight at 10:30 on TBS."" https://t.co/1zqdQH8awX" +04/13/2018,Sports_celeb,@SHAQ,Catch us on the @latelateshow! @victoriabeckham @JKCorden Tonight at 12:37/11:37c on CBS #LateLateShow https://t.co/dCastQddNU +04/10/2018,Sports_celeb,@SHAQ,"@krispykreme Hey, what about me?! #KrispyKremePartner" +04/09/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: .@SHAQ calls out the Hall of Fame committee for not letting Chris Webber into the Hall again this year, which sparks a spir…" +04/07/2018,Sports_celeb,@SHAQ,🚨 My man @andrewhypes and I produced a crazy remix to @iamcardib “Bartier Cardi” to celebrate… https://t.co/x8JJVRMECd +04/07/2018,Sports_celeb,@SHAQ,🚨 My man @andrewhypes and I produced a crazy remix to @iamcardib “Bartier Cardi” to celebrate the release of her de… https://t.co/3WeFxjDLPo +04/06/2018,Sports_celeb,@SHAQ,RT @RoParrish: .@KGArea21 Shaq + KG choppin it up with Yours Truly @RoParrish — talkin whips 4 @KumhoTireUSA @NBAonTNT RT https://t.co/a8k7… +04/05/2018,Sports_celeb,@SHAQ,"Our squad is stacked and about to run this league. Let’s get it, @KingsGuardGG! 💯 #Shaqramento https://t.co/l4baQSUPj6" +04/04/2018,Sports_celeb,@SHAQ,Its OVER! RANE changed the GAME No Needles let’s go @IRIE @atrak @djkhaled @djcarnage @steveaoki @diplo @RaneDJ… https://t.co/ZxzKSjc5nl +04/02/2018,Sports_celeb,@SHAQ,Get ready NBA 2K League... I’m the new GM of @KingsGuardGG and we’re about to reign supreme! 👑 🎮 #Shaqramento https://t.co/TZ1ipE5Xdn +04/01/2018,Sports_celeb,@SHAQ,Just posted a video https://t.co/D7K7mHCYz8 +03/30/2018,Sports_celeb,@SHAQ,"RT @UncleDrewFilm: #GetBuckets with @KyrieIrving, @LilRel4, @SHAQ, @RealChrisWebber, @ReggieMillerTNT, @Nate_Robinson, @LisaLeslie, @TheEri…" +03/28/2018,Sports_celeb,@SHAQ,Congrats to my friend MARK EATON great book https://t.co/rDkp3uuu5S +03/28/2018,Sports_celeb,@SHAQ,"Had a wild ride to shaqsfunhouse last weekend thanks to @Lyft #ad"" https://t.co/fDCj57XZfn" +03/28/2018,Sports_celeb,@SHAQ,"Had a wild ride to shaqsfunhouse last weekend thanks to @Lyft #ad"" https://t.co/q2Fnq0y0JR" +03/28/2018,Sports_celeb,@SHAQ,RT @RealSportsHBO: TONIGHT on #RealSports (10:30 PM ET/PT): @BernardGoldberg finds out how @SHAQ turned a HOF @NBA career into a business e… +03/27/2018,Sports_celeb,@SHAQ,Listen up! Something big (and tall) is coming your way soon. @jcpenney #AllAtJCP #ad https://t.co/4yFJco8q2C +03/24/2018,Sports_celeb,@SHAQ,"Shaq X @steveaoki #MiamiMusicWeek +https://t.co/WdwsKssC1j #shaqsfunhouse https://t.co/Qwzu5LSmhg" +03/23/2018,Sports_celeb,@SHAQ,@steveaoki X SHAQ #miamimusicweek #miamiultra https://t.co/WdwsKsb19L #shaqsfunhouse https://t.co/Qwzu5LALpI +03/23/2018,Sports_celeb,@SHAQ,@Drewo93 Who said you were not good enough? +03/23/2018,Sports_celeb,@SHAQ,"I’m bringing my talents to South Beach this weekend #ShaqsFunHouse +#MiamiMusicWeek https://t.co/udzPKyt1Ed" +03/22/2018,Sports_celeb,@SHAQ,RT @shaqtin: 🚨 TRAGIC BRONSON ALERT 🚨 https://t.co/PLrisbpRfJ +03/21/2018,Sports_celeb,@SHAQ,#SnowDay so what? I'm getting my hydration on with @TheRealEnergice frozen ice bars. Now at @myfamilydollar #ad https://t.co/q1XEBPFjMh +03/21/2018,Sports_celeb,@SHAQ,Yup https://t.co/Wpfa0d9TNb +03/19/2018,Sports_celeb,@SHAQ,Only a few spots left on my guest list to the first ever @shaqsfunhouse this Friday 🎧🎡🏀 RSVP & VIP TABLE reservatio… https://t.co/JImzcwmSlH +03/18/2018,Sports_celeb,@SHAQ,@TheJetOnTNT glad u got rid of the ugly fat guy and got a sexy underwear model next to you hey Wallace ZIBIAK +03/17/2018,Sports_celeb,@SHAQ,"@TRAEABN and @youngthug team up for a melodic new track “Don’t Know Me” +https://t.co/nopqOF4zqY #HometownHero https://t.co/1jqcVyvy6N" +03/17/2018,Sports_celeb,@SHAQ,@ClarkKelloggCBS and GREG GUMBLE how y’all gonna fire @TheJetOnTNT and replace him with a aborcombie and Fitch unde… https://t.co/K9xuVuVRIB +03/17/2018,Sports_celeb,@SHAQ,"Hey Barkley and @TheJetOnTNT first the Virginia loss killed my bracket, then I just saw a TURTLE RAT" +03/17/2018,Sports_celeb,@SHAQ,"“I'm Still Laughing” my newest All-Stars comedy w/Bruce Bruce, Huggy Lowdown, Aida Rodriguez & Brian ""Da Wildcat"" S… https://t.co/yirDJEu2uJ" +03/16/2018,Sports_celeb,@SHAQ,The steph curry robot he never misses like steph curry https://t.co/9i6OVSZM3O +03/16/2018,Sports_celeb,@SHAQ,"Part Festival, Part Carnival…I'm launching @ShaqsFunHouse in Miami next week alongside the world’s best DJ’s. Y’all… https://t.co/NgwwZn6Lzp" +03/15/2018,Sports_celeb,@SHAQ,Flex on 'em after your workout with @TheRealEnergice #ad https://t.co/xL4JgA2TuG +03/15/2018,Sports_celeb,@SHAQ,"Yo #Shaqcast listeners time for you to vote for your favorites in the 2018 #Borderline Bracket, your winners will m… https://t.co/KM8L8eWiSz" +03/14/2018,Sports_celeb,@SHAQ,The #BigFella dominates this time every year. Me and the @UncleDrewFilm cast challenge you to use #UncleDrewBracket… https://t.co/13Awrs4eX2 +03/13/2018,Sports_celeb,@SHAQ,"RT @NRGgg: Samsung #GalaxyS9 & @LogitechG Keyboard, Mouse and Headset #Giveaway +-Tag Your Friends +-RT, Like & Follow @NRGgg +Click Here: ht…" +03/13/2018,Sports_celeb,@SHAQ,Would like to thank THE JEFFERSON AWARDS COMMITTEE for choosing me as award winner for… https://t.co/Nf4nM86CVo +03/12/2018,Sports_celeb,@SHAQ,The WALDORF ASTORIA AND PENNINSULA HOTEL IN NEW YORK ARE MY FAVORITE SPOTS IN NEW YORK +03/12/2018,Sports_celeb,@SHAQ,Think you can beat me and @RobRiggle? Compete against the PC1 hosts in the #PodcastOneSportsNet Bracket Challenge.… https://t.co/trBmMI0qwC +03/10/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: .@Shaq and other #PodcastOneSportsNet hosts are competing in a #BracketChallenge this year, and you can join in! Do you hav…" +03/08/2018,Sports_celeb,@SHAQ,I am proud to support the incredible students behind #marchforourlives. Join us on March 24 as we march on Washingt… https://t.co/ZIX0Y960vi +03/08/2018,Sports_celeb,@SHAQ,"Yes, you can get an @oreo Chocolate Candy Bar even if you’re not Laura McPingleton in the #OreoBirthdayGiveaway #ad… https://t.co/wPHEk2sXv3" +03/07/2018,Sports_celeb,@SHAQ,Good news: I finally found my phone. Even better news: I’m giving away 1 Million @oreo Chocolate Candy Bars!… https://t.co/VtuDFtGhDJ +03/06/2018,Sports_celeb,@SHAQ,Thanks for all the birthday wishes #moneyballonchallenge https://t.co/14qiOMNwtH +03/06/2018,Sports_celeb,@SHAQ,.@oreo and I share a birthday … and a love of giving away 1 Million free OREO Chocolate Candy Bars!… https://t.co/Hv1W9f6yEz +03/05/2018,Sports_celeb,@SHAQ,RT @Skye_chanel: @SHAQ Oh Lawd here comes the Kazaam animated short film from Dreamworks that nobody asked for😒 https://t.co/AA5aqHS4m7 +03/05/2018,Sports_celeb,@SHAQ,"Congrats to KOBE first Oscar that’s big bro #dearbasketball. Proud of you, Big honor for you and your family. I’m jealous lol" +03/04/2018,Sports_celeb,@SHAQ,Dj diesel rockin the crowd in San Antonio Texas @VeroTrueSocial https://t.co/fHXG9a8djy +03/02/2018,Sports_celeb,@SHAQ,Had to put some music to this one woo weeee dam Gina https://t.co/cmzC8V7oyP +03/02/2018,Sports_celeb,@SHAQ,"@chadwickboseman you are incredible brother , I am literally your biggest fan may you have continued success brother https://t.co/uD5vkmbQ0H" +03/01/2018,Sports_celeb,@SHAQ,"I have the coolest treehouse ever... don’t miss Watching me and @TheTreehouseMan tomorrow, Friday at 9p ET on… https://t.co/xEEWTsYriD" +03/01/2018,Sports_celeb,@SHAQ,"As Carnival CFO, I’d like to welcome royalty to the family! @IAMQUEENLATIFAH congrats on being named Godmother of… https://t.co/RBEVbfiYPi" +02/28/2018,Sports_celeb,@SHAQ,"Next month, you could win a fan's dream: a trip to San Antonio to play on MY team in a celebrity game! Don't miss y… https://t.co/5ZFN5AoiC1" +02/28/2018,Sports_celeb,@SHAQ,Since y’all scared the las #familydancechallenge I challenge @kingjames @kevinhart4real @diddy… https://t.co/zKyHrCwaPD +02/25/2018,Sports_celeb,@SHAQ,"I like my new line of kids shoes so much, I had them made in King size. #ShaqShoes #CheckThemOut https://t.co/LYl4lruSBv" +02/25/2018,Sports_celeb,@SHAQ,“Proud to Exec Produce a powerful documentary about saving the kids in the inner cities. Check it out on @Netflix “A WEEK IN WATTS”. +02/24/2018,Sports_celeb,@SHAQ,[MT] #DamnSonWheredYouFindThis: F*ck How It Turn Out Edition:: #GetItLIVE! https://t.co/gFcwR9wqqR @LiveMixtapes… https://t.co/lvHVYPMaVM +02/24/2018,Sports_celeb,@SHAQ,HQPPY BIRTHDAY TO MY NEPHEW @shaq_morris keep it going big homie u almost at the finish line https://t.co/HQNe8kXi5h +02/23/2018,Sports_celeb,@SHAQ,This needs to be a show. What do you think https://t.co/qa1jEpm56Y +02/22/2018,Sports_celeb,@SHAQ,Here is a Throwback Thursday for ya 🎤Me and Fu-Schnickens on @arseniohall 💪🏾💪🏾💪🏾 Don’t call it comeback🎤I’ve been h… https://t.co/fT6zwZPOyD +02/22/2018,Sports_celeb,@SHAQ,"When you’re 7 feet tall, you eat your #PringlesStack 7 chips tall. Vote for your chance to play on my Team… https://t.co/4WHBwOv4yG" +02/22/2018,Sports_celeb,@SHAQ,"See why @bluhazl is sleeping better with @casper +https://t.co/BBLD7wWSj1" +02/22/2018,Sports_celeb,@SHAQ,SHAQTIN A FOOL MIDSEASON AWARDS COMIN IN FIVE MINUTES DONT MISS IT +02/21/2018,Sports_celeb,@SHAQ,"U know u got nothin better to do tonight than watch my show.... dont miss it. +#ShaqtinAwards #NBATV https://t.co/W0OiVKtj3S" +02/21/2018,Sports_celeb,@SHAQ,RT @BET: Wishing a happy birthday to the amazing @rihanna! Enjoy your day sis. https://t.co/hZpdVcLrRg +02/21/2018,Sports_celeb,@SHAQ,RT @danawhite: I’m gonna knock that smirk right off your face!!! #fightweek https://t.co/e0P5UIidv2 +02/21/2018,Sports_celeb,@SHAQ,Happy birthday to the great Charles Barkley https://t.co/EnjTzJ8wBB +02/19/2018,Sports_celeb,@SHAQ,RT @MooreAshleyE: Now y’all know the #Fergie National wasn’t worse than when Carl Lewis thought he could sing it before the Bulls game... l… +02/19/2018,Sports_celeb,@SHAQ,If you haven’t seen black panther you better go now @chadwickboseman did his thing this is the… https://t.co/enWZRT4e97 +02/18/2018,Sports_celeb,@SHAQ,RT @RoParrish: .@NBATV Donovan Mitchell didn't disappoint during the dunk contest… #NBAAllStar #TakeNote https://t.co/ogVi2eSqOy +02/17/2018,Sports_celeb,@SHAQ,LA! Come hang with me at @ShoePalace tomorrow https://t.co/VpGPQrEJGB +02/16/2018,Sports_celeb,@SHAQ,Can’t wait to join #XboxLiveSessions at #OneCourt to play #XboxOneX and discuss all things #NBAAllStar. Make sure t… https://t.co/nFeFYpIKcC +02/15/2018,Sports_celeb,@SHAQ,I need to get one of these for my house. Reserve your spot now for this amazing @AmericanExpress Experience! … https://t.co/jKk0oBr3Pp +02/14/2018,Sports_celeb,@SHAQ,It’s almost time for the Big Fella to shine! Watch the brand new #UncleDrew trailer right here! The movie busts ont… https://t.co/4lr709Pazd +02/14/2018,Sports_celeb,@SHAQ,See you there https://t.co/9G5PZxIuxe +02/12/2018,Sports_celeb,@SHAQ,"Happy Birthday to the ALL TIME 🐐 +11✖️@nba 🏆 Bill Russell much love and respect https://t.co/7oyCRHF1Jj" +02/12/2018,Sports_celeb,@SHAQ,"The bigger we are, the harder we ball. Meet the #BigFella when #UncleDrew hits theaters June 29! @UncleDrewFilm https://t.co/2fdotuTGTE" +02/11/2018,Sports_celeb,@SHAQ,Fun video of my boys thanks to @overtime #overtimechallenge https://t.co/usdcRhn0Hi +02/10/2018,Sports_celeb,@SHAQ,Happy Birthday to THE SHARK @SharkGregNorman https://t.co/5qVMNXvJrK +02/09/2018,Sports_celeb,@SHAQ,I rather be blind then to not sing my favorite artist beyonce song #beyoncesbiggestfanliterally https://t.co/e2HxIjO9Kk +02/09/2018,Sports_celeb,@SHAQ,BEAT DONUTS EVER #krispykreme #krispykremedoughnuts https://t.co/BwHSri21ka +02/08/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: Look at that, Gunner and @SHAQ are the same size 😂 Don't miss his cameo on #MakeSpeidiFamousAgain with @spencerpratt & @hei…" +02/07/2018,Sports_celeb,@SHAQ,Excited to continue my partnership with @TheGeneralAuto on our mission to #MakeLifeEasier for customers! https://t.co/xB3vYoF5vD +02/07/2018,Sports_celeb,@SHAQ,RT @SHAQ: @amiller @JimmyRollins11 @ryanhoward @SFShock Let’s do this! Join me in the #BabyBayChallenge to support our commitment to youth… +02/07/2018,Sports_celeb,@SHAQ,@amiller @JimmyRollins11 @ryanhoward @SFShock Let’s do this! Join me in the #BabyBayChallenge to support our commit… https://t.co/qfv1Pi0WTS +03/02/2018,Sports_celeb,@larrybirddaily,"PLAYER COMPARISON '13 LeBron James and '86 Larry Bird. + +Both players won MVP in their respective seasons.☘️🏀 https://t.co/7E7iUvCmo6" +02/07/2018,Sports_celeb,@larrybirddaily,"(1980) Back in days.. + +☘️Larry with Pistol🔫 https://t.co/CbWhffTeuD" +01/26/2018,Sports_celeb,@larrybirddaily,RT @tatonka44: @LarryBirdDaily Still my favorite https://t.co/VmFlHIyULS +01/26/2018,Sports_celeb,@larrybirddaily,RT @jeffstripp: Don’t let winning make you soft. Don’t let losing make you quit. Don’t let your teammates down in any situation. – Larry B… +01/26/2018,Sports_celeb,@larrybirddaily,"RT @designbyduncan: ""Push yourself again and again. Don't give an inch until the final buzzer sounds."" -Larry Bird @LarryBirdDaily https://…" +01/16/2018,Sports_celeb,@larrybirddaily,Three Letter Man MVP ☘️ https://t.co/UV07dkTFk1 +01/09/2018,Sports_celeb,@larrybirddaily,"""The lefty game"" Prior to a game against the Blazers, Larry Bird told the media that he was saving his right hand f… https://t.co/pKxxD1OvYk" +01/06/2018,Sports_celeb,@larrybirddaily,RT @PigasusPictures: It's safe to say it's always #NationalBirdDay in Indiana https://t.co/7Rv9AabMpK +01/06/2018,Sports_celeb,@larrybirddaily,(1987) Good old days☘️ https://t.co/50kcY89yLe +01/04/2018,Sports_celeb,@larrybirddaily,"(1979) Back in days.. + +Red & Larry☘️ https://t.co/SftxISc3Kj" +01/04/2018,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 26 years ago today in NBA History + +January 4, 1992 + +Boston's Robert Parish became the fifth player in NBA history (along wit…" +01/02/2018,Sports_celeb,@larrybirddaily,"Larry Bird's career free throw percentage☘️ + +🏀% 88.6🏀 https://t.co/W1fjfw08rh" +01/01/2018,Sports_celeb,@larrybirddaily,Larry Legend 1979☘️ https://t.co/O2mFjmvx8p +12/31/2017,Sports_celeb,@larrybirddaily,Happy new year everyone🎄☘️ https://t.co/nlsWyjzE2W +12/28/2017,Sports_celeb,@larrybirddaily,"The Historic Rivalry.. + +Magic vs. Larry, NBA style, began 38 years ago today☘️ https://t.co/Ct2ypVTP7K" +12/26/2017,Sports_celeb,@larrybirddaily,"Good old days.. + +(1977) Larry Bird and Indiana State Cheerleaders☘️ https://t.co/yxSn7bjyPJ" +12/25/2017,Sports_celeb,@larrybirddaily,"RT @CWalt419: @LarryBirdDaily +Merry Christmas Larry. Hope you and your family have a great one 😘 https://t.co/AfkIktXXez" +12/25/2017,Sports_celeb,@larrybirddaily,Merry Christmas Everyone🎄🎅 https://t.co/66cOXVGnp8 +12/24/2017,Sports_celeb,@larrybirddaily,The greatest thing about being from Boston is that you have no shortage of sports heroes.☘️ https://t.co/mJqFwdvKTS +12/23/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/uX5k2jcnl5 +12/21/2017,Sports_celeb,@larrybirddaily,💚3⃣3⃣💚 https://t.co/8vFTVom5g0 +12/19/2017,Sports_celeb,@larrybirddaily,Pick your decade? https://t.co/GnB3MSc1UP +12/19/2017,Sports_celeb,@larrybirddaily,Which behind the backboard shot was the best? https://t.co/AbonmTPzcP +12/16/2017,Sports_celeb,@larrybirddaily,1983☘️ https://t.co/L3EVYQ6n6M +12/13/2017,Sports_celeb,@larrybirddaily,Biggest 3☘️☘️☘️ https://t.co/QwUrxaOs0L +12/11/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +Larry Legend teaching us how to shoot a basketball🏀☘️ https://t.co/U3HxfGEWkN" +12/11/2017,Sports_celeb,@larrybirddaily,"I've got a theory that if you give 100% all of the time,somehow things will work out in the end.☘️ https://t.co/8Y79gsu2Hj" +12/11/2017,Sports_celeb,@larrybirddaily,Bird vs Jordan🎮 https://t.co/aZxuzvohS6 +12/09/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +(1986) Bird & Jordan https://t.co/rG8jhwbojH" +12/08/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird - Mini Biography + +📹https://t.co/OKIQEhZKFE 📹 https://t.co/sz1lZsHrhZ" +12/07/2017,Sports_celeb,@larrybirddaily,Happy 61st Birthday Legend☘️ https://t.co/sft1g12dRM +12/05/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird (29-11-12) vs. Hakeem (19-13-0) 1986 Finals Gm 6 - Bird Dominates, Finals MVP☘️ + +📹… https://t.co/m5h8HSBzrL" +12/04/2017,Sports_celeb,@larrybirddaily,"(1979) Back in days.. + +Larry Bird cuts down the net after Indiana State University won the championship game in th… https://t.co/rc6MvsqKeC" +12/03/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Good old days.. + +☘️Larry & Magic✨ https://t.co/9WmLxFPffX" +12/03/2017,Sports_celeb,@larrybirddaily,☘️Best Celtics player of all time? https://t.co/2koxDHUBYK +12/01/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +⚕️Dr. J & Larry Legend☘️ https://t.co/vJn36yOeaT" +11/30/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: ☘️27 years ago today, November 30, 1990 + +Larry Bird scored his 20,000th career point in the Celtics' 123-95 win over Washing…" +11/30/2017,Sports_celeb,@larrybirddaily,(1985) Larry Bird drops 60 points against the Hawks. Just look at the reactions on Atlanta's bench. Unbelievable☘️ https://t.co/c4le1M4Gvn +11/29/2017,Sports_celeb,@larrybirddaily,Choose your weapon🔫 https://t.co/xbY1SaV903 +11/28/2017,Sports_celeb,@larrybirddaily,Larry's last season..☘️ https://t.co/GGq1fQjHCP +11/27/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird talks about Michael Jordan's 63 points versus Celtics + +📹https://t.co/XaR6nuLNNy📹 https://t.co/PpluY0Yihj" +11/27/2017,Sports_celeb,@larrybirddaily,Bird vs Dirk☘️ https://t.co/NnHtE4SzuS +11/26/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird and Bill Walton: Basketball Magic (1986 Boston Celtics) + +📹https://t.co/r4X6caz2yS📹 https://t.co/Nu9qLVBAap" +11/26/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Yes or No? https://t.co/0X12eBWFua +11/26/2017,Sports_celeb,@larrybirddaily,RT @JasonFisher01: My son Davis snagged a picture with Larry Bird's MVP trophy while visiting family this weekend in French Lick! @LarryBir… +11/25/2017,Sports_celeb,@larrybirddaily,"1985 NBA Finals, Game 4: Larry Bird Dominates The 4th Quarter + +📹https://t.co/t65jNk11RU📹 https://t.co/JL1ewhBN5G" +11/25/2017,Sports_celeb,@larrybirddaily,"""1992"" #UsaDreamTeam https://t.co/rZBsydPBRd" +11/24/2017,Sports_celeb,@larrybirddaily,Larry Bird hits an incredible three-quarter court shot👊 https://t.co/M6Ug8wcCAn +11/23/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird schools Hakeem Olajuwon + +📹https://t.co/wE5P12M63k📹 https://t.co/ZsDrthICNe" +11/23/2017,Sports_celeb,@larrybirddaily,Old school Larry Bird sketch card☘️#ArtWork https://t.co/2HlDDym1jU +11/23/2017,Sports_celeb,@larrybirddaily,Larry Bird & Dominique Wilkins #ArtWork https://t.co/bXO5C5g3DT +11/23/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: WATCH: (1985) Magic Johnson vs. Larry Bird + +📹https://t.co/DzMfGorzgx📹 https://t.co/rKbzjNGqdn" +11/22/2017,Sports_celeb,@larrybirddaily,Larry Bird vs Detroit's Bad Boys https://t.co/OYEWgiK5H8 +11/22/2017,Sports_celeb,@larrybirddaily,"RT @WashNews: Decorated my tree last night. Only needed one ornament. Feeling good about my decision... and my @celtics.🎄☘️ + +#larrybird #ce…" +11/21/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: (1987) Larry Bird - 41/7/7 vs. Jordan's Bulls. Classic 👌 + +📹 https://t.co/VdUTxs8QE0📹 https://t.co/7hCFf3B724" +11/21/2017,Sports_celeb,@larrybirddaily,Dr. J & Larry Legend #ArtWork https://t.co/n9jHP08hfZ +11/20/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: “I hate to lose more than I like to win.” + +-Larry Bird☘️ https://t.co/DIvbwGZaI2" +11/20/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird is/was better than LeBron James (who is an inconsistent shooter) + +📹https://t.co/MtI3ivwb2P📹 https://t.co/29oWDndDh5" +11/20/2017,Sports_celeb,@larrybirddaily,"""Leadership is diving for a loose ball, getting other players involved. + +It's being able to take it as well as dish… https://t.co/xT6XI29xDE" +11/20/2017,Sports_celeb,@larrybirddaily,"WATCH: Scottie Pippen Defense on Larry Bird - 1990/91 Season + +📹https://t.co/QErxeiy6pH📹 https://t.co/k2uNoywJkL" +11/19/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird's incredible behind the backboard shot👽 + +That classic play happend during a 1986 preseason game against the Houst…" +11/19/2017,Sports_celeb,@larrybirddaily,Larry Bird helps up Magic Johnson during the 1979 NCAA Championship🤝☘️ https://t.co/l6CcjjIKzk +11/17/2017,Sports_celeb,@larrybirddaily,"Larry Bird Springs Valley High School highlights + +📹https://t.co/cD9lKdC60a📹 https://t.co/oIiZAKXvcJ" +11/17/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird asked his competitors this question before winning the 3 point contest; + +- So who is coming in second? https://t.…" +11/16/2017,Sports_celeb,@larrybirddaily,"Larry Bird - 32/18/9/4 vs. Magic's Lakers (1983) + +☘️https://t.co/6NQssWDeSI☘️ https://t.co/Ncj74ikkGV" +11/15/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird talks about the '86 Celtics☘️ + +🎧https://t.co/iprJbvnrkj🎧 https://t.co/8fJ9hnPXfq" +11/14/2017,Sports_celeb,@larrybirddaily,"With his warm-up jacket, Larry Bird put on a 3-point contest show at Chicago 1988 NBA All-Star, winning his third t… https://t.co/3KtyQ2awLu" +11/14/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird & Robert Parish ''Basketball Clinic'' vs Miami Heat (1991) + +📹https://t.co/xTkBBBU86F📹 https://t.co/ZUDjHpln3o" +11/13/2017,Sports_celeb,@larrybirddaily,"WATCH: Pistol Pete Maravich - Last game of his NBA career, rookie Larry Bird☘️ + +📹https://t.co/2wxwSaKi5K📹 https://t.co/jXcav6hqdg" +11/13/2017,Sports_celeb,@larrybirddaily,One of the best shooter in NBA History☘️ https://t.co/zgHVeMRGwf +11/13/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +(1995) NBA Looney Tunes McDonald's Commercial🍔🍟 https://t.co/Ufm6agTnQb" +11/12/2017,Sports_celeb,@larrybirddaily,Where the rivalry began.. https://t.co/XuqHtVdjDP +11/11/2017,Sports_celeb,@larrybirddaily,We never forget..☘️ https://t.co/yUOnSEJ8kh +11/11/2017,Sports_celeb,@larrybirddaily,Who is the Best SF of All Time? https://t.co/G3t7avKXR1 +11/10/2017,Sports_celeb,@larrybirddaily,"Larry Bird: ""Passing Skills Compilation""☘️ + +📹https://t.co/wf0m04TZ8L📹 https://t.co/M0vUqFIUcx" +11/10/2017,Sports_celeb,@larrybirddaily,"On This Day in 1989, Larry Bird crossed Dominique Wilkins 2 times on same night, dropped 50 points 13 rebounds 7 as… https://t.co/joOpLmWrTS" +11/10/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 36 years ago today, November 9, 1981 + +Larry Bird on Sports Illustrated Cover #LarryLegend☘️ https://t.co/uCpaxlzwgV" +11/09/2017,Sports_celeb,@larrybirddaily,"33 years ago today in NBA History + +November 9, 1984 + +Larry Bird dropped 42 points on an aging Julius Erving and to… https://t.co/P99eUwaARS" +11/09/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Celtics vs Lakers (Regular Season) +- 287 games +- 159 wins BOS +- 128 wins LAL + +Celtics vs Lakers (NBA Finals) +- 74 games +-…" +11/09/2017,Sports_celeb,@larrybirddaily,"Larry Bird - Smartest NBA Player Ever, High Basketball IQ + +📹https://t.co/nJbOcXRpxY📹 https://t.co/CmvHQv9NBT" +11/07/2017,Sports_celeb,@larrybirddaily,"Drazen was the type of Player I love. I played against him a lot of times, he was a fantastic Shooter. -Larry Bird https://t.co/U4JJRjAjj7" +11/07/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird in Space Jam + +📹https://t.co/EVqPm3kWRE📹 https://t.co/oS9f1viA2V" +11/06/2017,Sports_celeb,@larrybirddaily,1992.. https://t.co/6yNo5mUH0x +11/05/2017,Sports_celeb,@larrybirddaily,"""When I was young, I never wanted to leave the court until I got things exactly correct. + +My dream was to become a… https://t.co/ofikt04z27" +11/05/2017,Sports_celeb,@larrybirddaily,"Larry Bird Top 10 Game Winners + +📹https://t.co/YjZnQl8SUF📹 https://t.co/tN3I40OV9Q" +11/04/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird - The Clutch Shots and Buzzerbeaters + +📹https://t.co/RfV1c50Nvq📹 https://t.co/lJ0pHRmyjm" +11/03/2017,Sports_celeb,@larrybirddaily,Peter Griffin vs Larry Bird for a Big Mac🍔 https://t.co/8DPAyfpBTR +11/03/2017,Sports_celeb,@larrybirddaily,"WATCH: He was one steal away from a 30 point quadruple-double before he decided to sit the 4th quarter. + +📹… https://t.co/HMSRSwmxgZ" +11/02/2017,Sports_celeb,@larrybirddaily,Larry Bird's first game and last game ☘️ https://t.co/vbJgp0zYrc +11/02/2017,Sports_celeb,@larrybirddaily,Larry Bird & Magic Johnson #NBA2K18 https://t.co/aJCkNyLx00 +11/01/2017,Sports_celeb,@larrybirddaily,Always great to see Larry Legend! (Yesterdays @ Pacers-Kings game) https://t.co/mAsFQOxEFn +11/01/2017,Sports_celeb,@larrybirddaily,💥Bill Lambier Vs Larry Bird💥 https://t.co/sWnErtqMg6 +11/01/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 📌DeMarcus Cousins is 1st player since Larry Bird ('87-'88) to average 30 points, 10 rebounds & 5 assists through 1st 6 game…" +11/01/2017,Sports_celeb,@larrybirddaily,RT @KarlTowns: @World_Wide_Wob “You never make any of the shots you never take.”- Larry Bird +11/01/2017,Sports_celeb,@larrybirddaily,RT @taylormade2fit_: @MagicJohnson @LarryBirdDaily https://t.co/ze9osWkKkt +11/01/2017,Sports_celeb,@larrybirddaily,10 years old fan loves Larry Legend💚☘️ https://t.co/XOgdQyekdG +11/01/2017,Sports_celeb,@larrybirddaily,Push yourself again and again☘️ https://t.co/c20bKMhF9s +10/31/2017,Sports_celeb,@larrybirddaily,1992 Barcelona Olympics https://t.co/g186DF6MK6 +10/29/2017,Sports_celeb,@larrybirddaily,Luke Walton on Larry Bird's unselfish passing.☘️ https://t.co/7Q3Zzt7vOC +10/29/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: WATCH: Legends Show! + +Larry Bird 38 PTS 💥 Michael Jordan 42 PTS (1988) + +📹https://t.co/zdxguNcnX5📹 https://t.co/wRxbG83HSQ" +10/29/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Remembering Red Auerbach🙏 + +11 years ago today on October 28, 2006 Legendary Boston Celtics coach Red Auerbach died at the a…" +10/28/2017,Sports_celeb,@larrybirddaily,"Boston's attempt to make Larry Bird a dynamic ""Mini-Me"" failed when he couldn't shoot or dribble so they just let h… https://t.co/M7nrpYupZg" +10/28/2017,Sports_celeb,@larrybirddaily,"Larry Bird demonstrates why the red, white and blue ABA ball will always be cooler☘️ https://t.co/B0qZOAd89w" +10/27/2017,Sports_celeb,@larrybirddaily,Larry Bird How to Fake an Entire Team Out 😎 https://t.co/QZqbF9HJ5B +10/26/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird was faking everybody easily! Passing Skills were LIT🔥💥 https://t.co/s4Zdx0M6V5 +10/26/2017,Sports_celeb,@larrybirddaily,RT @DWilkins21: #TBT Hmmm...Wonder what's going thru our minds? 🤔 https://t.co/DFV5zsHVki +10/26/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Top 10 Craziest Larry Bird Stories😮 + +☘️https://t.co/QnrLDDebB1☘️ https://t.co/x8IWKWfS3e" +10/25/2017,Sports_celeb,@larrybirddaily,"(1979) Pistol was at the end of the line, but it's still pretty damn cool Pete Maravich and Larry Bird were teammat… https://t.co/laZ4mKrswC" +10/25/2017,Sports_celeb,@larrybirddaily,"WATCH: 1991 Playoffs, Game 5.. Larry Bird's 32pts vs. Indiana Pacers + +☘️https://t.co/g92BrTtQLe ☘️ https://t.co/rqBUgyIX9S" +10/25/2017,Sports_celeb,@larrybirddaily,Happy 69th Birthday Dave Cowens☘️ https://t.co/HdiJUNHCUN +10/23/2017,Sports_celeb,@larrybirddaily,"(1981) Back in days.. + +☘️Larry Bird Vs. Dr. J https://t.co/y6u4CHZ7YA" +10/22/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: At Pacers practice, if Larry Bird misses a free throw, all the coaches run sprints! Bird missed on purpose😆 https://t.co/pj1…" +10/22/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird Top 10 Dunks of his Career☘️ https://t.co/cm6X2hDBRO +10/21/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +Dennis & Larry☘️ https://t.co/gr3mNFFwku" +10/18/2017,Sports_celeb,@larrybirddaily,Jayson Tatum is the first Celtics player to record a double-double in their NBA debut since Larry Bird (1979). https://t.co/mXDLR0c1ZI +10/18/2017,Sports_celeb,@larrybirddaily,Back in days.. (1984) https://t.co/YTHOSIMG29 +10/16/2017,Sports_celeb,@larrybirddaily,"WATCH: Rookie Larry Bird (36pts/7rebs/4asts) vs. Clippers (1980) + +☘️https://t.co/rh56euEPuO☘️ https://t.co/sUFWN2iTsJ" +10/14/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/sIVfWkS3cv +10/12/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 38 years ago today.. + +On this date in 1979, Larry Bird made NBA debut☘️ https://t.co/vHmfuOw3YV" +10/12/2017,Sports_celeb,@larrybirddaily,"""1979"" https://t.co/Kz9r5dBtTG" +10/11/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +1981 Eastern Conference All-Stars🌟 https://t.co/2LASeEi0DM" +10/10/2017,Sports_celeb,@larrybirddaily,"""1981"" + +Larry Bird vs Bill Willoughby https://t.co/NLT1WecpWZ" +10/10/2017,Sports_celeb,@larrybirddaily,"March 1979 + +Sports Illustrated Cover https://t.co/1Srhl0WVVU" +10/10/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Good old days.. (1988 Eastern Conference Semifinals) + +Larry Legend Vs Nique https://t.co/Cgz4t9hCKH" +09/29/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/QwxWMIPwSJ +09/29/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/yuCvf3K2sL +09/28/2017,Sports_celeb,@larrybirddaily,"""1985"" + +Larry Bird had 30 pts, 12 rebs, 12 asts and 9 steals, almost the only Quad-Dbl in NBA history, in just 33 M… https://t.co/hJu30eWEJ5" +09/28/2017,Sports_celeb,@larrybirddaily,Rank the best duos in NBA history! https://t.co/hbYXDUnTem https://t.co/QUX2TPZ7fT +09/28/2017,Sports_celeb,@larrybirddaily,"Stephen King on his 70th birthday: In 80s, I was shooting free throws in the driveway pretending I was Larry Bird… https://t.co/Lqyf8DO7vv" +09/28/2017,Sports_celeb,@larrybirddaily,WATCH: What If MAGIC AND BIRD Played in the Modern NBA? https://t.co/5yCqoFz3oD https://t.co/DoCL8EZP3l +09/28/2017,Sports_celeb,@larrybirddaily,3⃣3⃣BEST 3⃣3⃣ https://t.co/MZ2L5ZbUkb +09/28/2017,Sports_celeb,@larrybirddaily,"On Indiana's legendary shoe tree, Larry Bird's sneakers could be hanging next to yours https://t.co/ZXWBKHhPGL https://t.co/si5bYw2mD1" +09/28/2017,Sports_celeb,@larrybirddaily,Converse’s NBA All Star Chuck Taylor Collection Pays Tribute To Basketball History https://t.co/uLOhsgmfBM https://t.co/KRG7MR6agy +09/28/2017,Sports_celeb,@larrybirddaily,1982 NBA Media Day https://t.co/TZiZy4tNYk +09/26/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/UL1YZNf2vf +09/26/2017,Sports_celeb,@larrybirddaily,Missing those days.. https://t.co/6hXjdJPTKo +09/25/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/2JdNvYd6JG +09/25/2017,Sports_celeb,@larrybirddaily,"WATCH: What If MAGIC AND BIRD Played in the Modern NBA? + +https://t.co/5yCqoFz3oD https://t.co/T1eANIGGR7" +09/25/2017,Sports_celeb,@larrybirddaily,3× NBA Most Valuable Player🎖️🎖️🎖️ https://t.co/UWsKUYDenn +09/25/2017,Sports_celeb,@larrybirddaily,"""1979"" + +Red & Larry https://t.co/XYWkedZA0Z" +09/24/2017,Sports_celeb,@larrybirddaily,Agree or disagree? https://t.co/8R27kCyxhu +09/23/2017,Sports_celeb,@larrybirddaily,Legends! https://t.co/vGfwhoHLg1 +09/23/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird was LIT!🔥🍀 https://t.co/4urR4363HG +09/23/2017,Sports_celeb,@larrybirddaily,(1979) Larry Legend & Pistol Pete☘️ https://t.co/sMnLzzMUK8 +02/16/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Have Good Day Everyone! #hisairness #NbaHistory https://t.co/mrwF5oi5Xt +01/26/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: June 23, 1992 - Team USA, Summer Olympics + +Larry Bird, Michael Jordan and Magic Johnson https://t.co/OrOYojlDbZ" +01/17/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: 56 years ago in #NbaHistory https://t.co/phujLGbgD6 +12/13/2016,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 23 years ago in #NbaHistory + +Dec. 13, 1983 + +Pistons 186, Nuggets 184 / Highest Scoring NBA Game Ever! + +https://t.co/QQtKKKTB…" +12/10/2016,Sports_celeb,@larrybirddaily,"Hawks erase 20-point deficit for victory over Bucks! + +https://t.co/WQVg6ZHspH https://t.co/APrCCq6ehX" +12/09/2016,Sports_celeb,@larrybirddaily,"Larry Bird's career filled with amazing accomplishments + +https://t.co/9GM3DcaLNv https://t.co/V443OG1W2q" +12/06/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Klay Thompson's 60 Points in 3 Quarters (HD VIDEO) https://t.co/U1OiFlJMco https://t.co/K2wiWa0tYp" +12/02/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Steph Curry's Circus Sitdown Layup Won't Count (HD VIDEO) https://t.co/TAE5iMIYGM https://t.co/6jjlEdjuI2" +12/01/2016,Sports_celeb,@larrybirddaily,"DeMarcus Cousins and John Wall To Boston Celtics! + +4-Team Deal Between Celtics, Kings, Nets And Wizards;… https://t.co/r1ywD6bY1a" +12/01/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Isaiah Thomas with the H.O.R.S.E Shot After the Whistle (HD VIDEO) https://t.co/Y5j5TS3UkB https://t.co/XMY7xo93q0" +12/01/2016,Sports_celeb,@larrybirddaily,"Shumpert to the Warriors: “We gon bust your ass. Period.” | KNBR-AM +https://t.co/xqlqRhOBiA" +11/30/2016,Sports_celeb,@larrybirddaily,"Shaquille O’Neal Has Message For NBA Free Agents: Trust Me, Boston Is Great +https://t.co/jm3soAq8LD https://t.co/17dRSejgvg" +11/30/2016,Sports_celeb,@larrybirddaily,"Thon Maker Made Chris Andersen Look Silly On This Step Back Jumper :) + +WATCH: https://t.co/go8uhuLlti https://t.co/YnhVaGbCOa" +11/08/2016,Sports_celeb,@larrybirddaily,"RECORD ALERT!!! + +Steph Curry's Record Breaking 13 3-Pointers (HD VIDEO) https://t.co/LuwgvFkxV4 https://t.co/nDIsSSfnct" +10/29/2016,Sports_celeb,@larrybirddaily,RT @EreenTuncay: Oyuna havası sezdim ama orada bile skor üretiyor :( https://t.co/VhWYyzwPKU +10/09/2016,Sports_celeb,@larrybirddaily,"AMAZING... + +Top 10 Longest NBA Shots of All Time (HD VIDEO) https://t.co/K4FRSdZhWo https://t.co/XzmJAzrHqj" +10/06/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!! + +Best 2016 Season Bloopers In 16 Minutes! (HD VIDEO) https://t.co/B04OkAldIl https://t.co/DNciCGHX6j" +09/25/2016,Sports_celeb,@larrybirddaily,Kevin Garnett's Top 50 Plays of His Career (HD VIDEO) https://t.co/0OoE8x8nWf https://t.co/er007i5y6m +09/18/2016,Sports_celeb,@larrybirddaily,Steve Nash's Top 13 Plays on the Suns (HD VIDEO) https://t.co/B0R4x6X6NZ https://t.co/tlBHbYtzbZ +09/12/2016,Sports_celeb,@larrybirddaily,Toronto Raptors' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/wa1Su7wns6 https://t.co/vf5wHR2CIa +09/11/2016,Sports_celeb,@larrybirddaily,Portland Trail Blazers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/MLqORX2ESx https://t.co/7CqmLL3ia1 +09/10/2016,Sports_celeb,@larrybirddaily,Los Angeles Clippers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/KTSQ9rPhd8 https://t.co/bbLnyMw2Pv +09/09/2016,Sports_celeb,@larrybirddaily,Indiana Pacers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/j5MVKv59Cb https://t.co/d7uPb4s3Hi +09/08/2016,Sports_celeb,@larrybirddaily,Oklahoma City Thunder's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/qUvh8kWrsc https://t.co/deuthzSN9z +09/07/2016,Sports_celeb,@larrybirddaily,Minnesota Timberwolves' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/rPbmZl31x8 https://t.co/e3fnghwauB +09/06/2016,Sports_celeb,@larrybirddaily,Chicago Bulls' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/IEVcNqhKrD https://t.co/IZWfpT1q0J +09/05/2016,Sports_celeb,@larrybirddaily,San Antonio Spurs' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/MsyVE9Jzxx https://t.co/RUOiCsbW9G +09/04/2016,Sports_celeb,@larrybirddaily,Phil Jackson Considered Trading Kobe Bryant for Grant Hill https://t.co/3odfueyQPO https://t.co/bK7Vz7cQyQ +09/04/2016,Sports_celeb,@larrybirddaily,Utah Jazz's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/3ExAPlFSiR https://t.co/oAdAJaFRu4 +09/03/2016,Sports_celeb,@larrybirddaily,New York Knicks' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/iexKWg0K99 https://t.co/zCCI3hgWZg +09/02/2016,Sports_celeb,@larrybirddaily,Denver Nuggets' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/kYqudJ2Lq4 https://t.co/Nhy4yWQALf +09/01/2016,Sports_celeb,@larrybirddaily,Top 50 Clutch Shots: 2016 NBA Season (HD VIDEO) https://t.co/666mQz6MAx https://t.co/A550TKz38k +08/31/2016,Sports_celeb,@larrybirddaily,Cleveland Cavaliers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/HXSbPAnPM1 https://t.co/guBINNQ3FU +08/30/2016,Sports_celeb,@larrybirddaily,Golden State Warriors' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/7RJTF61Ey9 https://t.co/MXGWlzC6yT +08/29/2016,Sports_celeb,@larrybirddaily,Top 50 Blocks: 2016 NBA Season (HD VIDEO) https://t.co/7SuzhYtoH5 https://t.co/JYOyip4Ulk +08/28/2016,Sports_celeb,@larrybirddaily,New Orleans Pelicans' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/ysk8HDBfDE https://t.co/AjohabZWcK +08/27/2016,Sports_celeb,@larrybirddaily,Top 10 Putback Dunks of the 2015-2016 Season (HD VIDEO) https://t.co/nzvLzdGfeO https://t.co/xjSbwNde7V +08/26/2016,Sports_celeb,@larrybirddaily,Memphis Grizzlies' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/mqBfSj45uC https://t.co/Utoca6c5ZI +08/25/2016,Sports_celeb,@larrybirddaily,Houston Rockets' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/U9Jju0G14u https://t.co/VxrnOiTDK3 +08/24/2016,Sports_celeb,@larrybirddaily,Dallas Mavericks' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/V8jDhGf8HP https://t.co/nphSD9toSf +08/23/2016,Sports_celeb,@larrybirddaily,Top 50 Assists: 2016 NBA Season (HD VIDEO) https://t.co/AyIco4jXAo https://t.co/mlHyy04dG8 +08/22/2016,Sports_celeb,@larrybirddaily,Washington Wizards' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/nU95Wm0sY7 https://t.co/CMsVPA4soV +08/21/2016,Sports_celeb,@larrybirddaily,Orlando Magic's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/LvuuCH9Uxb https://t.co/tLyeonYEBx +08/20/2016,Sports_celeb,@larrybirddaily,Miami Heat's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/gD0POjKSXH https://t.co/EXE9BPjkE1 +08/19/2016,Sports_celeb,@larrybirddaily,Top 10 Alley-Oops of the 2015-2016 Season (HD VIDEO) https://t.co/3SePT3DzgD https://t.co/ySb5Z9KlRD +08/19/2016,Sports_celeb,@larrybirddaily,"Warriors-Spurs, Cavs-Knicks headline opening day + +https://t.co/xTMv8wF47Y https://t.co/GFnl16pllj" +08/19/2016,Sports_celeb,@larrybirddaily,"Q&A with Celtics guard Thomas on the Olympics, KD and what makes Boston so special http:// + +https://t.co/kL5TDFTVWO https://t.co/pJ3PO8l9sd" +08/19/2016,Sports_celeb,@larrybirddaily,"Durant: ""We’re just so separated, man. It’s sad to see. I just hope... + +https://t.co/g8LzTP5i3f https://t.co/qhYrSy8Vmc" +08/19/2016,Sports_celeb,@larrybirddaily,"Lakers season preview: They project them to finish at No. 13 in the Western Conference. + +https://t.co/w5nxppJTLm https://t.co/NeYrJP91oX" +08/19/2016,Sports_celeb,@larrybirddaily,"Will Timberwolves have 3 straight Rookie of the Year winners? + +https://t.co/eMmCNYBFOa https://t.co/3LgiJqunwo" +08/19/2016,Sports_celeb,@larrybirddaily,"Caron Butler says he’d love to play for Knicks this season, do they want him? + +https://t.co/yRCwbkNpD9 https://t.co/XLX2WNY9hs" +08/19/2016,Sports_celeb,@larrybirddaily,"USA vs. France 2016 Rio Olympics final score: Sylvia Fowles comes up big in 86-67 win + +https://t.co/ERroMRXyVM https://t.co/P0RpEc7clM" +08/19/2016,Sports_celeb,@larrybirddaily,"Caron Butler eyeing New York! + +https://t.co/FqqrV6p8qk https://t.co/pTXabJJWLV" +08/19/2016,Sports_celeb,@larrybirddaily,"Lakers hold free agent minicamp with a few familiar faces in attendance + +https://t.co/bYt6plppGk https://t.co/wqANUe1bo1" +08/18/2016,Sports_celeb,@larrybirddaily,"LeBron James has plenty of respect for Kawhi Leonard! + +https://t.co/JUvOtitHte https://t.co/FJVGMrFY9s" +08/18/2016,Sports_celeb,@larrybirddaily,"Sit back & enjoy the Top 10 Putback Dunks from 2015-16! + +https://t.co/UVV8Id7CLL https://t.co/K73cBpDGR5" +07/01/2018,Sports_celeb,@RealBillRussell,Today I picked the winner of the framed & signed Jersey. Congrats @CalzonaKerBear you are the latest #WINNER in m… https://t.co/cJaOuNYIZh +06/29/2018,Sports_celeb,@RealBillRussell,Getting ready to watch it now @CBS @colbertlateshow @MMFlint @StephenAtHome https://t.co/eVBZuHcjDd +06/27/2018,Sports_celeb,@RealBillRussell,"Gongrats Grant, enjoy & please tell all your kids I say hello. https://t.co/yT8rYf7Ueg" +06/27/2018,Sports_celeb,@RealBillRussell,"Well this was PERFECT timing, when we got home today our very good friend had sent us a gift that was very fitting.… https://t.co/6dAH9cbyic" +06/26/2018,Sports_celeb,@RealBillRussell,"Only a handful of days left, then I give out a signed autographed framed Jersey to one lucky follower. Follow & RT… https://t.co/UJtQCJz4n2" +06/26/2018,Sports_celeb,@RealBillRussell,"Sorry everyone, I forgot it was live TV & I can’t help myself whenever I see Charles it just is pure instinct.… https://t.co/4Bpdov6oKN" +06/26/2018,Sports_celeb,@RealBillRussell,". #NBAAwards show just getting started, our host @anthonyanderson is wearing shorts it looks like he rode in on a… https://t.co/PDRydRKQsD" +06/24/2018,Sports_celeb,@RealBillRussell,"It is beyond words to think this is happening in America. Sorry, @realDonaldTrump this is far from America being g… https://t.co/vnjDDvgFZx" +06/23/2018,Sports_celeb,@RealBillRussell,Looking forward to attending the 2nd annual @NBA #Awards awards show on Monday. Happy to be there to support my lon… https://t.co/RmvhqNiOmk +06/17/2018,Sports_celeb,@RealBillRussell,". #Congratulations to our nephew, #Grad2018, we had a fun time today at your #graduation bbq. I think your #mom m… https://t.co/oLkzkn9xLv" +06/14/2018,Sports_celeb,@RealBillRussell,This month for my #8straightgiveaway in honor of #FathersDay I will be giving away a framed & signed Jersey to one… https://t.co/zxJSwENEoW +06/14/2018,Sports_celeb,@RealBillRussell,"Just heard the sad news of #AnneDonovan passing, my thought are with her loved ones. She was a great champion for… https://t.co/nW8vml2Aup" +06/09/2018,Sports_celeb,@RealBillRussell,People are giving @KDTrey5 a hard time for not shaking my hand. I know how it feels to get caught up in the energy… https://t.co/zODLPcY1JJ +06/09/2018,Sports_celeb,@RealBillRussell,Congratulations to #DubNation on #BackToBack Championships. @warriors @NBA #NBAfinals @StephenCurry30 @KDTrey5 https://t.co/fEm8iyyxKx +06/09/2018,Sports_celeb,@RealBillRussell,. #Game4 I’m in the building. Hope to see a good game. #GSWvsCAVS @cavs @warriors @nba #NBAFinals #quickenloans +06/07/2018,Sports_celeb,@RealBillRussell,https://t.co/upEwHZXvib +06/07/2018,Sports_celeb,@RealBillRussell,Sorry we will miss you Miles. I remember the first time we met at the @NBA All Star game a few years ago. @jrnba… https://t.co/W8wOIYbajO +06/07/2018,Sports_celeb,@RealBillRussell,Well looks like I’m heading to #Cleveland May have to give out the Bill Russell MVP Trophy. @warriors @cavs #NBAFinals @NBA @NBAonABC +06/07/2018,Sports_celeb,@RealBillRussell,Respect is a two way street. If @realDonaldTrump won't show it why sould he expect it. Very proud of these young… https://t.co/GQWty26vq8 +06/06/2018,Sports_celeb,@RealBillRussell,Well said my friend! https://t.co/Sb0xtaTy5f +06/06/2018,Sports_celeb,@RealBillRussell,. @realDonaldTrump wages war on @NFL players for being unpatriotic & disrespectful to flag & country when he him se… https://t.co/iGPHqRW38x +06/06/2018,Sports_celeb,@RealBillRussell,The best thing that happened to @Eagles since winning the #superbowl is @realDonaldTrump uninviting them to the… https://t.co/YTnmpf3b6h +06/04/2018,Sports_celeb,@RealBillRussell,Thank you @TraegerGrills for helping my wife get our grill up & running today. Getting ready to our game time grub… https://t.co/fnL0pZFSV6 +06/03/2018,Sports_celeb,@RealBillRussell,Thank you for sharing this. He was a true friend #onegreathuman https://t.co/WtI3DNYsgP +06/03/2018,Sports_celeb,@RealBillRussell,"@IsiahThomas Thanks for the follow, I follow you back. Always my pleasure my friend. @NBATV @NBA" +06/03/2018,Sports_celeb,@RealBillRussell,Getting my Pre-game Fix @NBATV with @realgranthill33 @TheJetOnTNT @BillSimmons & @IsiahThomas Should be another Gr… https://t.co/yJc5wC4dC3 +06/02/2018,Sports_celeb,@RealBillRussell,Congratulations @gedwards30 you are the winner of my #8straightgiveaway an autographed #basketball Thanks to… https://t.co/cf5Sf5FoKm +06/01/2018,Sports_celeb,@RealBillRussell,"I may have heart problems if all the #NBAFInals #CavsVsWarriors games are like this first one, OMG. What a game… https://t.co/mWURTDOQ9z" +06/01/2018,Sports_celeb,@RealBillRussell,Tomorrow I am giving away a signed Basketball for my #8straightgiveaway follow & RT I have seen a lot of bad info… https://t.co/X4KWuHVvgW +06/01/2018,Sports_celeb,@RealBillRussell,Never a doubt in my mind that was going in. @StephenCurry30 Big 3 to end the half. What a game #WarriorsvsCavs… https://t.co/8Y3Y0jibMy +05/28/2018,Sports_celeb,@RealBillRussell,This is worth repeating on #MemorialDay @SenJohnMcCain is a true Hero. #ThankYou to him & all others who serve & h… https://t.co/V4g96lPxnA +05/26/2018,Sports_celeb,@RealBillRussell,Let see some good D tonight @celtics Get that W! #CUsRise @espn @NBA #BOSvsCLE #NBAFinals @CelticsLife +05/25/2018,Sports_celeb,@RealBillRussell,#MemorialDayWeekend watch Portrait of an American Hero about @SenJohnMcCain @HBO 8pm. Agree or disagree with him h… https://t.co/razIGtORxz +05/24/2018,Sports_celeb,@RealBillRussell,Great WIN @celtics #CUsRise #CelticsVsCavs be sure to follow & RT me. I am giving away a autographed basketball th… https://t.co/8CD1OmDAiP +05/22/2018,Sports_celeb,@RealBillRussell,Check out my interview with @DangeRussWilson The LEGENDS Series Premiers 5-22-18 @TraceMe_App We had a really grea… https://t.co/sddz6eUsAT +05/21/2018,Sports_celeb,@RealBillRussell,"#NationalRescueDogDay we love our crazy girl, we adopted her 8 yrs ago. Best decision ever! Puppy love - mans best… https://t.co/rcCDmvgB4j" +05/19/2018,Sports_celeb,@RealBillRussell,I decided this month for my #8straightgiveaway I will give away a signed Basketball Follow & RT me. @espn… https://t.co/HhPymEnOYx +05/19/2018,Sports_celeb,@RealBillRussell,Back home got my water getting ready for the #CelticsVsCavs Go get a win @celtics @celticslife @nbcsports @si @espn… https://t.co/6xNRKASgLo +05/19/2018,Sports_celeb,@RealBillRussell,"Thank you everyone for the kind thoughts, yes I was taken to the hospital last night & as my wife likes to remind m… https://t.co/gyht9vvwVH" +05/17/2018,Sports_celeb,@RealBillRussell,#shaqinafool @NBAonTNT I once had an inbound pass that hit the guide wire that should qualify. @shaq +05/16/2018,Sports_celeb,@RealBillRussell,"Sorry @smart_MS3 could not find you, congratulations @celtics. Great Win" +05/16/2018,Sports_celeb,@RealBillRussell,#marcussmart has it correct always stick up for your teammates. #CelticsNation #CelticsVsCavs @Al_Horford @NBA… https://t.co/TndLUozo0x +05/16/2018,Sports_celeb,@RealBillRussell,Great playing @celtics keep up the pressure. Get that WIN! Go #CelticsNation #CelticsVsCavs @NBA @espn +05/09/2018,Sports_celeb,@RealBillRussell,. @SHAQ took a page out of my fashion playbook tonight @NBAonTNT @TheJetOnTNT @NBA https://t.co/LdhEBJyzJH +05/05/2018,Sports_celeb,@RealBillRussell,"Good game between #BOSvsPHI but in OT my $$ is on #Boston +GO @celtics @NBA @sixers are playing great though" +05/01/2018,Sports_celeb,@RealBillRussell,Thank you so much to my favorite Italian women & our favorite Italian Restaurant @2sistersnebo for an amazing lunch… https://t.co/ipeq15B7Sf +05/01/2018,Sports_celeb,@RealBillRussell,Congratulations @DaAnsahonSports you are the lucky winner of a cap with my personal logo in my #8straightgiveaway… https://t.co/QcvuIqFnJW +05/01/2018,Sports_celeb,@RealBillRussell,"#TuesdayThoughts It’s #8straightgiveaway Day, Follow & RT to be entered to win. It was a good night @celtics WIN! H… https://t.co/WRlcwEpEeL" +05/01/2018,Sports_celeb,@RealBillRussell,"I know Charles @NBAonTNT would never say he could guard me, he has a better chance of getting struck by lightning… https://t.co/yBp9XTfymU" +05/01/2018,Sports_celeb,@RealBillRussell,I’m here! Let’s go @celtics @NBA @tdgarden @NBAonTNT https://t.co/LbA0lvArWn +04/30/2018,Sports_celeb,@RealBillRussell,Hey #boston got a surprise for you tonight stay tuned. @celtics @NBA @BostonGlobe @NBCSBoston +04/29/2018,Sports_celeb,@RealBillRussell,Way to go @celtics great win! Keep up the good team play. @NBA @NBAonTNT +04/29/2018,Sports_celeb,@RealBillRussell,"Sorry I could not make it to the game tonight, but I am watching. GO @celtics @nba @nbaplayoffs2018 @NBAonTNT" +04/28/2018,Sports_celeb,@RealBillRussell,"Happy #SaturdayMorning I’m @ 99 Fordham Rd Wilmington, MA meet me @ 12-1 today & tomorrow. Meet Oscar Robertson, n… https://t.co/j5mmQPVd8l" +04/26/2018,Sports_celeb,@RealBillRussell,"RT @ Follow me to qualify, Just a handful of days left before I pick from my #8straightgiveaway list & send off ano… https://t.co/Wvq7U7o0Tu" +04/26/2018,Sports_celeb,@RealBillRussell,"Congrats to @warriors, my wife & puppy are 2 of your biggest fans! @nba @KDTrey5 Looking forward to @celtics mee… https://t.co/jxmf5YQFci" +04/20/2018,Sports_celeb,@RealBillRussell,My apologies to my very dear friend @RickWelts on my delayed Congratulations for your #18HoopClass. I am so proud o… https://t.co/8Mcmo5YWjB +04/19/2018,Sports_celeb,@RealBillRussell,I was shocked and saddened to hear on @NBAonTNT of the passing of #ErinPopovich wife of @spurs head coach Gregg Pop… https://t.co/Fk5fYfHY8D +04/19/2018,Sports_celeb,@RealBillRussell,"Looking forward to being in #Boston next week for the @RichAltmanHWC show come on out to see me, maybe get an autog… https://t.co/m4arXQydFC" +04/19/2018,Sports_celeb,@RealBillRussell,Say what!! @NBAonTNT how in the world did @TheJetOnTNT get in that play?? It reminded me of Mike TV from Willie Wo… https://t.co/04eTrIDE56 +04/18/2018,Sports_celeb,@RealBillRussell,It was a pleasure in my life to have met former First Lady #BarbaraBush. Our thoughts are with her family & friend… https://t.co/pnpZ29edme +04/16/2018,Sports_celeb,@RealBillRussell,Sad to hear of the failing health of former First Lady #BarbaraBush. Our thoughts are with the Bush Family. Once… https://t.co/C0WVioV2UC +04/16/2018,Sports_celeb,@RealBillRussell,Happy Birthday @kaj33 Enjoy your day! +04/08/2018,Sports_celeb,@RealBillRussell,Thanks to @RichAltmanHWC for getting the first #giveaway prize of my #8straightgiveaway out. RT & make sure to fol… https://t.co/TKSh7cCwks +04/08/2018,Sports_celeb,@RealBillRussell,WoW anyone who is missing the @TheMasters is really missing some amazing golf by @JordanSpieth started 9 back now t… https://t.co/DBqASwCtZP +04/08/2018,Sports_celeb,@RealBillRussell,. @JoyAnnReid enjoyed you interview with #ElginBaylor just now on @amjoyshow It was great to see all my old frien… https://t.co/9gcsB2J24G +04/07/2018,Sports_celeb,@RealBillRussell,What a great surprise to see my old friend @JoyAnnReid in LA at #ElginBaylorStatue @msnbc @NBA https://t.co/zl0QgEyj7v +04/07/2018,Sports_celeb,@RealBillRussell,So true! Great looking #ElginBaylorStatue @Lakers @celtics @NBA https://t.co/qA5JUZbpmr +04/07/2018,Sports_celeb,@RealBillRussell,"At @LALIVE ready to honor my good friend #ElginBaylorStatue +@Lakers @nba @STAPLESCenter @NBAonTNT https://t.co/rJmWpC2XrK" +04/06/2018,Sports_celeb,@RealBillRussell,Thank you for reminding me @davidaxelrod & #CharlesBarkley I have to set Charles straight so often I forgot about… https://t.co/mebd2pHBvm +04/04/2018,Sports_celeb,@RealBillRussell,"I still feel that was the correct decision, I did not want to take away from his hard work. #MLK50 https://t.co/j23cilDHGO" +04/04/2018,Sports_celeb,@RealBillRussell,"50 yrears ago today Humanity lost a great friend, and so did I. #MLK50 @Lawrence @MSNBC @NBA @celtics @espn https://t.co/UIRhSGkmJo" +04/04/2018,Sports_celeb,@RealBillRussell,Get in on this very rare chance for a photo with a really tall guy with a few extra rings. I will be in #Boston in… https://t.co/SvAqN7rvbF +04/01/2018,Sports_celeb,@RealBillRussell,Wishing everyone a #HappyEaster & #HappyPassover From the Russell's https://t.co/cAW9q677r9 +04/01/2018,Sports_celeb,@RealBillRussell,. @davidhogg111 @Emma4Change @NeverAgainMSD 1 Register & vote 2 Bullies will come for you when you make them uncomf… https://t.co/iwPTOk8fTU +03/31/2018,Sports_celeb,@RealBillRussell,Congratulations @suzyqjinx you won the first prize in my #8straightgiveaway. An 8x10 autographed photo. (Item #3)… https://t.co/gnoWRJ0hBr +03/31/2018,Sports_celeb,@RealBillRussell,RT & #follow Today I pick the first winner in my #8straightgiveaway Check out @RichAltmanHWC for all your memorabi… https://t.co/TxAsBpa6wi +03/30/2018,Sports_celeb,@RealBillRussell,"It may have evolved a bit, but nothing has changed. This is from 1 of my books & my experience in #LosAngeles… https://t.co/3FIDIProdR" +03/30/2018,Sports_celeb,@RealBillRussell,#ThursdayThoughts This is why I #TakeAKnee #StephonClark https://t.co/XMe9qSLzMY +03/30/2018,Sports_celeb,@RealBillRussell,I am so sorry for Stephon Clarks family & friends having to lay to rest their loved one This is why we #TakeAKnee… https://t.co/dPufc8xJwn +03/29/2018,Sports_celeb,@RealBillRussell,#redsox @MLB opening day. @RedSox 2016 I had the honor of throwing out 1st pitch with @davidortiz #BobbyOrr… https://t.co/7a3eadGkOK +03/29/2018,Sports_celeb,@RealBillRussell,Thank you @celtics. AM I really that old? SMH. @NBA https://t.co/cg5bJNjESO +03/28/2018,Sports_celeb,@RealBillRussell,#WednesdayWisdom A few days left for the 1st giveaway of autographed memorabilia. RT & follow 4 a chance to win. If… https://t.co/N9480hePGl +03/26/2018,Sports_celeb,@RealBillRussell,Wow I missed this dunk by @Giannis_An34 https://t.co/jD4M7IdF9o via @youtube really enjoyed getting to know his sto… https://t.co/cYSh0lL4P0 +03/26/2018,Sports_celeb,@RealBillRussell,"Thank you @MENTORnational for this supportive piece, for #MarchforOurLives held yesterday. I can always count on yo… https://t.co/nIFTyWEGqn" +03/25/2018,Sports_celeb,@RealBillRussell,If you missed #HopeAndFury last night it will replay #tonight @ 9 on @MSNBC a must see. It will not interfere watch… https://t.co/ADjrmDRGJr +03/25/2018,Sports_celeb,@RealBillRussell,#HopeAndFury I have for years told my wife we are not far from what was going on 50 yrs ago. This is a must see f… https://t.co/hGDbdYum8h +03/24/2018,Sports_celeb,@RealBillRussell,Spread the word! We will be heard! We are going to be a great generation! - Yolanda Renee King Your Grandfather wh… https://t.co/3YOVIMfMQi +03/24/2018,Sports_celeb,@RealBillRussell,Amen Zach https://t.co/hBXGayfu3q +03/24/2018,Sports_celeb,@RealBillRussell,"Thank you for the RT. You and @itsgabrielleu are making real change by standing for what is important, keep up the… https://t.co/1RX4hHiL4l" +03/24/2018,Sports_celeb,@RealBillRussell,Way to go my man Miles https://t.co/rk8azn415o +03/24/2018,Sports_celeb,@RealBillRussell,If you can get out & support @AMarch4OurLives today I am proud of this generation standing up for injustice & havin… https://t.co/Ie9MiIFoHb +03/21/2018,Sports_celeb,@RealBillRussell,RT & follow me there are only 10days left before I give away the first of my #8straightgiveaway autographed memorab… https://t.co/4VPjpjmzQo +03/21/2018,Sports_celeb,@RealBillRussell,My wife & I really enjoyed our visit last year. One of the best museum experiences I have had. The sweet home Cafe… https://t.co/A3V5EyYAWj +03/20/2018,Sports_celeb,@RealBillRussell,Happy #firstdayofspring2018 and #InternationalHappinessDay. This is my happy puppy. Princess Leaha. @NBA… https://t.co/gNZ9BUe1KP +03/19/2018,Sports_celeb,@RealBillRussell,Looking forward to seeing my good friend Oscar Roberton in Boston for @RichAltmanHWC Boston Show Come on in if you… https://t.co/7aZF1ASNoH +03/18/2018,Sports_celeb,@RealBillRussell,What a great game! @ZagMBB & @OhioState_WBB gotta love @marchmadness #marchmadness Its hard to say who will end up… https://t.co/v4BYPvG9Ut +03/17/2018,Sports_celeb,@RealBillRussell,"So sorry to hear of your families great loss. They really are part of the family, best friends, protectors & uncond… https://t.co/7m1mPWVfDL" +03/16/2018,Sports_celeb,@RealBillRussell,You got the same chance as everyone else. Good luck Miles live what you are doing for @jrnba @NBATV https://t.co/msBb4Ow69e +03/16/2018,Sports_celeb,@RealBillRussell,Enjoyed giving away a signed pair of shoes on my Bday I'm doing it again but bigger celebrating my 8 Straight champ… https://t.co/rjJdUGLZdV +03/15/2018,Sports_celeb,@RealBillRussell,Happy Birthday @StephenCurry30 It has been fun watching you progress year after year. Remember I only give the guys… https://t.co/PQ96web4mJ +03/15/2018,Sports_celeb,@RealBillRussell,"So proud of all the brave students that made the decision to participate #nationalwalkoutday with your voice, and d… https://t.co/XZzuJeRRkJ" +03/09/2018,Sports_celeb,@RealBillRussell,"Did you do something to celebrate #InternationalWomenDay ? My wife is one of the strongest women I know, so was my… https://t.co/Pg0O0qiAou" +03/05/2018,Sports_celeb,@RealBillRussell,Great job @JordanPeele on your #Oscars way to go! Keep up the good work +03/05/2018,Sports_celeb,@RealBillRussell,"Congratulations to @kobebryant on his Oscar for #DearBasketball way to go Kid! Very proud, Never #ShutUpAndDribble… https://t.co/DsuBZxtxPn" +03/04/2018,Sports_celeb,@RealBillRussell,Having a hard time picking a favorite sketch @nbcsnl #CharlesBarkley is doing great. @AlecBaldwin killed it!… https://t.co/6qANfZqp4F +03/04/2018,Sports_celeb,@RealBillRussell,"Going to take a quick nap so I can watch my good friend #CharlesBarkley Host @nbcsnl for the 4th time, that’s grea… https://t.co/bIS8XVqCjj" +03/02/2018,Sports_celeb,@RealBillRussell,Having my #morningcoffee enjoying Wilt 100 @NBATV One thing I know for sure He would have never got 100 on me! Ch… https://t.co/sl9XyrIAhw +02/22/2018,Sports_celeb,@RealBillRussell,I remember this well. Red & Walter only wanted to WIN. @NBA @NBAHistory https://t.co/dBBbmd18Q9 +02/19/2018,Sports_celeb,@RealBillRussell,"Thank you for the birthday wishes, it was great seeing you at #NBAAllStar I did not see this sooner FYI I’m on Twit… https://t.co/SqL4E768Vt" +02/19/2018,Sports_celeb,@RealBillRussell,Nice kicks Miles sorry we missed you this year https://t.co/JCTErkB2Dy +02/19/2018,Sports_celeb,@RealBillRussell,Lacing up before the game @StephenCurry30 @nba @NBAonTNT #NBAAllStar https://t.co/R4dHETzxTt +02/19/2018,Sports_celeb,@RealBillRussell,Hanging with the guys #JerryWest @kaj33 @JuliusErving ready for #NBAAllStar Game @nba @STAPLESCenter https://t.co/1KF5L71SMh +02/19/2018,Sports_celeb,@RealBillRussell,Thank you it was a real honor https://t.co/6LinjoOyaO +02/18/2018,Sports_celeb,@RealBillRussell,My thoughts exactly Thank You @Giannis_An34 This is very dear to my heart. @ nba https://t.co/CAJbifDZXu +02/18/2018,Sports_celeb,@RealBillRussell,Congratulations @realgranthill33 & Good Luck https://t.co/UwV0DDg20y +02/18/2018,Sports_celeb,@RealBillRussell,Having a laugh at the @NBA #legendsbrunch with @BillyCrystal . #NBAAllStar https://t.co/L5PkOzyQ8b +02/18/2018,Sports_celeb,@RealBillRussell,Proud of @KingJames & @KDTrey5 for speaking truth against racism ! I have never & would never #ShutUpAndDribble T… https://t.co/g4S95d748q +02/18/2018,Sports_celeb,@RealBillRussell,Well said Yara! @NBA #BlackHistoryMonth2018 https://t.co/4nAmlJO2ts +02/18/2018,Sports_celeb,@RealBillRussell,"Thanks Miles, hope to see you at the @nba #legendsbrunch #NBAAllStarWeekend https://t.co/FqayknKY6j" +02/18/2018,Sports_celeb,@RealBillRussell,Great dunk by @LarryNanceJr7 @NBA #SlamDunkContest #NBAAllStarWeekend https://t.co/AznkRjNkA9 +02/18/2018,Sports_celeb,@RealBillRussell,Warming up for #3PointContest https://t.co/1hhW4G913u +02/18/2018,Sports_celeb,@RealBillRussell,Just sat down courtside for the @NBA on @NBAonTNT #AllStarWeekend #NBAAllStars skills challenge https://t.co/ERbPw5feaw +02/17/2018,Sports_celeb,@RealBillRussell,"Super! I like the Boston flag, enjoy them. @celtics @NBA https://t.co/5JdFFMvpiZ" +02/16/2018,Sports_celeb,@RealBillRussell,"Thanks Sam, Sorry I missed this. Hope to see you at #NBAAllStar https://t.co/OWyH7Ldd9B" +02/14/2018,Sports_celeb,@RealBillRussell,"""To love someone is nothing, to be loved by someone is something, to love someone who loves you is everything"" - Bi… https://t.co/KaCMfuGdWQ" +02/13/2018,Sports_celeb,@RealBillRussell,Thank you so much for the #birthday wishes. You are a great leader for @MENTORnational https://t.co/cU7YPnqvFC +02/13/2018,Sports_celeb,@RealBillRussell,"Thanks Bill, see you at #NBAAllStar Bill Lucky for you twitter added more characters. Lol https://t.co/R04BjUsmBq" +02/13/2018,Sports_celeb,@RealBillRussell,Congratulations @Jordan_VanBeek you are the WINNER of the #BillRussellBdayGiveAway enjoy! #winner #NBAAllStar2018… https://t.co/WHPRRiUFfO +02/12/2018,Sports_celeb,@RealBillRussell,Thank you to @UnderArmour for the #StephenCurry shoes for my #BillRussellBdayGiveAway #nba #UnderArmour I am pickin… https://t.co/RSDjjH7WiF +02/12/2018,Sports_celeb,@RealBillRussell,Thank you to my great marketing team for all your hard work it is a pleasure working with all of you. https://t.co/T2ZNBypDcA +02/12/2018,Sports_celeb,@RealBillRussell,Thank you https://t.co/Uum3cto4Ko +02/12/2018,Sports_celeb,@RealBillRussell,Thank you! https://t.co/GLftsoXLZp +02/12/2018,Sports_celeb,@RealBillRussell,Thank You! https://t.co/P8iQVFuNap +02/12/2018,Sports_celeb,@RealBillRussell,THANK YOU to everyone for all the #birthday wishes. I am picking 1 FOLLOWER today to win a pair of autographed sne… https://t.co/GU5bhpfWWm +02/11/2018,Sports_celeb,@RealBillRussell,"Today is the last chance, Don't miss out. I will be picking one lucky follower for an autographed pair of sneakers… https://t.co/qeN1bbMuou" +02/11/2018,Sports_celeb,@RealBillRussell,Congratulations to @PaulPierce34 #TheTruth on a GREAT career! Very proud to have you as part of my @celtics family… https://t.co/UGKp5VnSHc +02/10/2018,Sports_celeb,@RealBillRussell,Only 2 days left before my #birthday & my BillRussellBDay #Giveaway 1 lucky follower will win a pair of autographe… https://t.co/aT7co0fxRT +02/09/2018,Sports_celeb,@RealBillRussell,Always a good laugh listening to my guys #NBAonTNT If I could get Charles to follow me he might win a autographed… https://t.co/LAIm8CUqv9 +02/06/2018,Sports_celeb,@RealBillRussell,"Looking forward to seeing my good friend ""The Big O"" at the show. https://t.co/kEB5CR9WJq" +02/05/2018,Sports_celeb,@RealBillRussell,Let #GoPats get your game face on!! #SuperBowl52 https://t.co/vw6JNdtziG +02/04/2018,Sports_celeb,@RealBillRussell,Getting ready for #superbowl GO #patriots ! Remember follow me to have a chance to win an autographed pair of shoe… https://t.co/Gc8kyaUVnG +02/02/2018,Sports_celeb,@RealBillRussell,"Follow & RT me for a chance to win an autographed pair of shoes. I will pick a winner on my birthday, February 12th… https://t.co/zhjBzhc1nb" +01/26/2018,Sports_celeb,@RealBillRussell,". @NBAonTNT Not only did I win multiple championships as player coach, a little know fact I did not have any assistant coaches." +01/24/2018,Sports_celeb,@RealBillRussell,"Congratulations, @KingJames with 30,000 points, 7,000 rebounds and 7,000 assists. THAT IS @NBAHistory #LeBronJames @NBA @NBAcom" +01/24/2018,Sports_celeb,@RealBillRussell,"Follow & RT to make sure you hear about my big announcement next week, you don't want to miss it. #NBA #sports… https://t.co/cuNgphUljE" +01/21/2018,Sports_celeb,@RealBillRussell,WOW! #JAXvsNE what a game. Congratulations to #Patriots #AFCChampionship #NFLPlayoffs +01/21/2018,Sports_celeb,@RealBillRussell,Please support @davidortiz wonderful charity and buy a cookbook @ https://t.co/8t83P2n7Mh Lots of NE legends… https://t.co/N4fiMaCET0 +01/21/2018,Sports_celeb,@RealBillRussell,.@davidortiz I'm Getting ready for #ChampionshipSunday My wife is https://t.co/8t83P2n7Mh Check out my Moms recipe… https://t.co/sxi7Nx24ZI +01/19/2018,Sports_celeb,@RealBillRussell,".@KGArea21 & @NBAonTNT @paulpierce34, Paul is correct he handled it better than what I would have. #petty" +01/18/2018,Sports_celeb,@RealBillRussell,"Hey @KevinHart4real how is this for working out? Getting in shape for @NBAAllStar See you there, if you can recogn… https://t.co/v2YWuJAvBx" +01/18/2018,Sports_celeb,@RealBillRussell,"It was my great pleasure to have worked for many years with Keith, he made my job easier. My condolences to Keith… https://t.co/xNd0PobPM4" +01/17/2018,Sports_celeb,@RealBillRussell,Today would have been my good friend & fellow activist @MuhammadAli 76th Birthday #HappyBirthdayAli You are deeply… https://t.co/R8boC9nkzO +01/17/2018,Sports_celeb,@RealBillRussell,Maybe we can get in some golf. https://t.co/X1eFtXhste +01/17/2018,Sports_celeb,@RealBillRussell,"Extremely sad to hear about the passing of @Hoophall @Celtic Great JoJo White, lost his fight with cancer. He wa… https://t.co/zYS8c92KPq" +01/16/2018,Sports_celeb,@RealBillRussell,"Congratulations @blackishabc outstanding comedy series, @anthonyanderson - actor, @TraceeEllisRoss - actress &… https://t.co/1UAhHaCpC9" +01/15/2018,Sports_celeb,@RealBillRussell,Will said my friend. https://t.co/kfRL49ClVp +01/15/2018,Sports_celeb,@RealBillRussell,“And so the challenge which confronts all of us is to respond to our circumstances with strength and courage rather… https://t.co/Ry7ZCiwXUl +01/15/2018,Sports_celeb,@RealBillRussell,"The most insidious type of #racist labels countries full of black and brown people #shitholes one day, while purpor… https://t.co/21dVmyB5Ua" +01/14/2018,Sports_celeb,@RealBillRussell,January is #mentoring month @MENTORnational #NBA @celtics @RedSox https://t.co/y66keT9T6J +01/14/2018,Sports_celeb,@RealBillRussell,"Great Job @Patriots nice defense, & I know defense. Keep up the good work @NFL @NFLonCBS #TENvsNE #NFLPlayoffs" +01/14/2018,Sports_celeb,@RealBillRussell,Let GO @Patriots https://t.co/24h4wbBChI +01/13/2018,Sports_celeb,@RealBillRussell,"Congratulations @TheShaneMissler enjoy the journey and HAVE FUN! At least you will live long enough to spend it,… https://t.co/2bxB8RfrZS" +01/13/2018,Sports_celeb,@RealBillRussell,Agreed https://t.co/Pbj995D7nD +01/13/2018,Sports_celeb,@RealBillRussell,Thank You @JoyAnnReid #AMjoy for bringing awareness to all the contributions made to OUR country by Immigrants from… https://t.co/5vu3CuGdPk +01/13/2018,Sports_celeb,@RealBillRussell,"As do I, Thank you David & everyone who helps to runs @MENTORnational Anyone who mentors someone across the globe… https://t.co/4RmLnRXRYo" +01/13/2018,Sports_celeb,@RealBillRussell,"@kaj33 this is the best compliment @realDonaldTrump could have ever given you. Can't stop laughing Best Wishes,… https://t.co/RDTQqL1RjB" +01/13/2018,Sports_celeb,@RealBillRussell,Love this my Friend https://t.co/GTfgb3qIij +01/12/2018,Sports_celeb,@RealBillRussell,The struggle continues even today for many in Haiti. Difficult to imagine 8 years have passed https://t.co/Uf3TiLvQpC +01/12/2018,Sports_celeb,@RealBillRussell,Well said https://t.co/2sTDHFgpLH +01/12/2018,Sports_celeb,@RealBillRussell,"RT @SenJohnMcCain: People have come to this country from everywhere, and people from everywhere have made America great. Our immigration po…" +01/12/2018,Sports_celeb,@RealBillRussell,"Thank you Sir for standing up against racism, and doing what is best for our Country. https://t.co/umJqGY2U6z" +01/12/2018,Sports_celeb,@RealBillRussell,"Is @realDonaldTrump aware the first people to come here from #""SHIThole"" countries did not come willingly, they cam… https://t.co/B65sNLv3xO" +01/10/2018,Sports_celeb,@RealBillRussell,Praying for all who may be in harm's way. https://t.co/A68BCn23pM +01/10/2018,Sports_celeb,@RealBillRussell,@SenFeinstein @maddow @MSNBC @Lawrence @CNN https://t.co/FZ8u445oji +01/10/2018,Sports_celeb,@RealBillRussell,Thank you #brave @SenFeinstein for #ReleaseTheTranscript 300+ pages #FusionGPS testimony of Glenn Simpson. My read… https://t.co/CjwRxBGI1a +01/10/2018,Sports_celeb,@RealBillRussell,Enjoyed the @michaeljackson ONE @cirque show in #LasVegas @MandalayBay Thank You to our security detail for the qui… https://t.co/lc4C6W3Fk4 +01/07/2018,Sports_celeb,@RealBillRussell,"Had a great time in #LasVegas for #NYE. Thank you to my good friends at @southpointlv, as always we had a great time there." +01/01/2018,Sports_celeb,@RealBillRussell,With family & friend this #NewYearsEve2017 wishing Everyone a Happy & Healthy #NewYear2018 Be safe tonight #NYE +12/26/2017,Sports_celeb,@RealBillRussell,"When I was little I wish I could sing, now I wish @NBAonTNT could sing" +12/26/2017,Sports_celeb,@RealBillRussell,"@NBAonTNT Little known fact #FrankRobinson & I were class mates & team mates. Yes, he still looks the same." +12/26/2017,Sports_celeb,@RealBillRussell,my 4 fav announcers @NBAonTNT always keep me entertained @TheJetOnTNT @SHAQ @TurnerSportsEJ #CharlesBarkley… https://t.co/tvbINWbW0E +12/26/2017,Sports_celeb,@RealBillRussell,52 yrs ago I went behind the Iron Curtain for the State Dept and I took a picture with this young man. Today on… https://t.co/lbYq074cFg +12/25/2017,Sports_celeb,@RealBillRussell,"I am very happy to have my good friend and favorite President @BarackObama, say it for me #MerryChristmas @NBA… https://t.co/iTpGZvZgQn" +12/25/2017,Sports_celeb,@RealBillRussell,Thanks for sharing this. https://t.co/foOAAPFch7 +12/23/2017,Sports_celeb,@RealBillRussell,"When I saw this in the sky this evening I felt like the poor folks on the video, I had NO idea what this was. Happy… https://t.co/jeSVWA2tA2" +12/23/2017,Sports_celeb,@RealBillRussell,@johncusack @SamuelLJackson Thanks John for not making fun of the blurry photo I put up. I’m new at this people! +12/22/2017,Sports_celeb,@RealBillRussell,Great @TheDailyShow reunion last night on @colbertlateshow @StephenAtHome reminded me of this Sam on Your Side: Bil… https://t.co/B4FvnMsYBK +12/22/2017,Sports_celeb,@RealBillRussell,Uplifting story about how having a second chance is always worth the time Reminds me of the great work… https://t.co/JUBhdw2VDe +12/22/2017,Sports_celeb,@RealBillRussell,"Do not want the day to go by without saying #HappyBirthday to my good friend @SamuelLJackson. I’m sure I beat you,… https://t.co/tUDMVdxDBV" +12/19/2017,Sports_celeb,@RealBillRussell,@kobebryant @kobebryant Thank you for allowing me to share in your special moment. Be well my friend +12/19/2017,Sports_celeb,@RealBillRussell,"Thank you @KDTrey5 for being so kind to my wife today. I had a great time watching a really good game tonight,… https://t.co/2TlUTbVqUB" +12/19/2017,Sports_celeb,@RealBillRussell,Always a fun time @kaj33 #NBA https://t.co/8hiDgOEAfo +12/19/2017,Sports_celeb,@RealBillRussell,Had a great time tonight with my good friend @kaj33 I was happy to be at #LakerNation #LakeShow to support & honor… https://t.co/PBMBgLsotK +12/18/2017,Sports_celeb,@RealBillRussell,"https://t.co/wThAX67mvX +Congrats @kobebryant I want to officially welcome you to the legend's club! #Ko8e24, they r… https://t.co/LLbSAZaC9y" +12/13/2017,Sports_celeb,@RealBillRussell,RT @1MrBigShot: With a heavy heart I send my condolences to Megan Klindt’ family. I had the pleasure of spending some time w Megan a few yr… +12/13/2017,Sports_celeb,@RealBillRussell,Congratulations @GDouglasJones. #Alabama you made the country proud. Great to see all the diversity on stage with… https://t.co/CDbN5p83fv +12/09/2017,Sports_celeb,@RealBillRussell,"Hey Steph, I know when I played at Defremery Park they can always use goodies. I love my SC @UnderArmour shoes. Ke… https://t.co/i8IvA4eIa6" +12/09/2017,Sports_celeb,@RealBillRussell,It brings me great joy to say Happy Birthday to @JoyAnnReid. I would have sent a video but did not want to ruin yo… https://t.co/8Ca3GXEyj3 +12/09/2017,Sports_celeb,@RealBillRussell,Happy to hear about the opening of CivilRightsMuseum. I stand by & with the decision of @repjohnlewis & any others… https://t.co/F7n6UwaTp1 +06/29/2018,Sports_celeb,@tonyparker,"Photo souvenir à l'occasion de la première pierre de la #TPAA, merci aux équipes de l'@ASVEL_Basket, l’… https://t.co/21RPlHUlLr" +06/29/2018,Sports_celeb,@tonyparker,"Retrouvez-moi aujourd'hui à partir de 15h pour la pose officielle de la première pierre de la @TP_A_A , à suivre en… https://t.co/yvr9bQpFqL" +06/25/2018,Sports_celeb,@tonyparker,Super moment partagé avec la famille #TeamASVEL https://t.co/7hFgLyqY88 +06/22/2018,Sports_celeb,@tonyparker,@Puressentiel a créé un kit spécial avec mes trois produits préférés 😃👌 Retrouvez la sélection sur :… https://t.co/sYLxxQPTkV +06/18/2018,Sports_celeb,@tonyparker,RT @TonyESTANGUET: Merci @tonyparker de ta présence ce matin avec #Paris2024 🏀 et les jeunes de @unss. Welcome on board for such an amazing… +06/18/2018,Sports_celeb,@tonyparker,"Fier d’être l’ambassadeur de l’éducation pour les Jeux Olympiques et Paralympiques ! #Paris2024 +Proud to be Ambass… https://t.co/rcbR9Exmm2" +06/15/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Quel bel événement lancé officiellement ce matin ! ✨ La @villedelyon accueillera en septembre la 1ère édition du Festival… +05/28/2018,Sports_celeb,@tonyparker,Happy Memorial Day #SpursCity 🇺🇸 +05/24/2018,Sports_celeb,@tonyparker,"Découvrez mon quotidien auprès de l’@ASVEL_Basket, @ASVEL_Feminin et la @TP_A_A grâce à ce documentaire. Merci aux… https://t.co/vSFWIGcnl0" +05/22/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: @ajslaughter8 @CKahudi5 VICTOIRE 💪 #MSBASVEL #PlayoffsJeepELITE https://t.co/xLvExHvV5H +05/18/2018,Sports_celeb,@tonyparker,"Merci beaucoup @Puressentiel ! Si vous avez un ami qui est né le même jour que moi, n'hésitez pas à le taguer sur c… https://t.co/yi2uhAHZeu" +05/18/2018,Sports_celeb,@tonyparker,"RT @TISSOT: A very happy birthday #TissotAmbassador @tonyparker! +#HappyBirthday #Tissot #TonyParker https://t.co/pB24qWZykM" +05/18/2018,Sports_celeb,@tonyparker,Merci à tous pour vos messages d’anniversaire ! Thanks to everybody for your bday wishes ! 3️⃣6️⃣ 🎂 +05/18/2018,Sports_celeb,@tonyparker,"RT @ASVEL_Feminin: 🎉 Bon anniversaire au Président @tonyparker ! + +#TeamASVEL https://t.co/R1f5uhgclH" +05/18/2018,Sports_celeb,@tonyparker,"RT @ASVEL_Basket: Nous souhaitons aujourd'hui un joyeux anniversaire à notre Président, @tonyparker ! 😀✌ #TeamASVEL https://t.co/qqxtfgiXJt" +05/10/2018,Sports_celeb,@tonyparker,Bravo pour cette saison ! 👍🏼@ASVEL_Feminin #TeamASVEL https://t.co/wtHttHsn2k +05/04/2018,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: Retrouvailles avec le Président @tonyparker avant le départ des Lionnes pour la demi-finale aller à @BourgesBasket ! 🔜💪… +05/04/2018,Sports_celeb,@tonyparker,"De retour en France, ça fait du bien ! 😬👍🏼 +In France for a couple of days, good to be back! 🇫🇷" +05/02/2018,Sports_celeb,@tonyparker,BRAVOOOOOOO @ASVEL_Feminin https://t.co/iz8itwDJN9 +04/23/2018,Sports_celeb,@tonyparker,💪🏼 @manuginobili #spursnation https://t.co/Xhrb8JeHce +04/23/2018,Sports_celeb,@tonyparker,"RT @spurs: With tonight’s win, Tony Parker and Manu Ginobili become the winningest duo in NBA Playoff History. + +Tony Parker and Manu Ginob…" +04/22/2018,Sports_celeb,@tonyparker,"RT @NBAFRANCE: Votre #NBASundays en grand, en très grand !! 🍿🎥 + +Le game 4 du premier tour des #NBAPlayoffs entre #DubNation et #GoSpursGo s…" +04/10/2018,Sports_celeb,@tonyparker,"Amazing Broadway Musical! Time for Playoffs now, 17 in a row!!! +#WifeyDateNoKids #SpursFamily +@MeanGirlsBway… https://t.co/df5tcRmupq" +04/08/2018,Sports_celeb,@tonyparker,Félicitations @TonyYoka 💪🏽 https://t.co/dvuoB2mkgG +04/02/2018,Sports_celeb,@tonyparker,"RT @NBA: Congrats to @tonyparker of the @spurs for moving up to 19th on the NBA’s ALL-TIME ASSISTS list! + +#GoSpursGo #ThisIsWhyWePlay http…" +04/01/2018,Sports_celeb,@tonyparker,#FinalFour #AlmaMater @LoyolaChicago 🙌🏾 https://t.co/lBWyLMP5l5 +03/30/2018,Sports_celeb,@tonyparker,YAAASS https://t.co/2aJv8J9srb +03/25/2018,Sports_celeb,@tonyparker,"Super moment avec Elodie et Sylvain, les deux gagnants du jeu concours avec @Puressentiel! +#PurChampions https://t.co/smYOH1IMYT" +03/25/2018,Sports_celeb,@tonyparker,"RT @TP_A_A: Dans le cadre de notre partenariat avec le @GroupeAdequat, Céline (Adéquat Toulon) et son client sont actuellement à San Antoni…" +03/06/2018,Sports_celeb,@tonyparker,"RT @spurs: Bringing some 🔥 off the bench + +Tony Parker scored a team-high 23 points vs Memphis #GoSpursGo https://t.co/CS455KqYLv" +03/06/2018,Sports_celeb,@tonyparker,AHAHA old pic @alexisrambur 😂 https://t.co/kmxpT1iJKh +02/25/2018,Sports_celeb,@tonyparker,"RT @NBAFRANCE: Quand le triple champion #NBA Bruce @Bowen12 revient dans son club d' @ALMEvreux ​ ! + +Il nous parle de son expérience en Fr…" +02/16/2018,Sports_celeb,@tonyparker,"RT @Puressentiel: Pour les 10 ans du Roller A&M, on vous envoie à San Antonio rencontrer @tonyparker ! Pour partir 5 jours au soleil et ass…" +02/16/2018,Sports_celeb,@tonyparker,Happy Lunar New Year to all my friends in China ! ⛩ 🇨🇳 🎊 +02/08/2018,Sports_celeb,@tonyparker,@kmoreland14 @spurs Awesome ! +02/08/2018,Sports_celeb,@tonyparker,🙌🏼 https://t.co/dTg3uCdTcX +02/08/2018,Sports_celeb,@tonyparker,👌 https://t.co/6FlkU6JVX7 +02/07/2018,Sports_celeb,@tonyparker,"RT @spurs: two years ago today. 💁🏽‍ + +CC: @selenagomez https://t.co/qCebkDPDSi" +02/07/2018,Sports_celeb,@tonyparker,"Enjoy the video that we did in #BuenosAires a few month ago, my stay there was fantastic, I really hope to come bac… https://t.co/lJODVQFBlc" +01/29/2018,Sports_celeb,@tonyparker,"Votez @MakeAWishFrance ! +Cette association qui réalise les vœux d'enfants atteints d'affections graves a été pré-sé… https://t.co/4hFxQ1s9W5" +01/24/2018,Sports_celeb,@tonyparker,RT @spurs: Tony Parker right now... https://t.co/DEnMZUV8xH +01/23/2018,Sports_celeb,@tonyparker,"Je suis heureux de vous annoncer que je rejoins la team Fruit Shoot France pour encourager les enfants à bouger, à… https://t.co/W2RuFQzlO3" +01/01/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Nous avons ce soir une très forte pensée pour Fred Forte du @limogescsp +12/31/2017,Sports_celeb,@tonyparker,"Happy New Year ✨ +Bonne Année ✨ +Feliz Año ✨" +12/25/2017,Sports_celeb,@tonyparker,"Merry Christmas from my family to yours! Joyeux Noël à tous🎄🎅🏼 +#xmas #familytime" +12/22/2017,Sports_celeb,@tonyparker,#teamwork @manuginobili 🤣 https://t.co/K3wDn5nFA4 +12/19/2017,Sports_celeb,@tonyparker,😬 https://t.co/VHZKtuzeIg +12/19/2017,Sports_celeb,@tonyparker,Congrat's on your career @kobebryant ! #Ko8e24 #Goat #Mamba +12/19/2017,Sports_celeb,@tonyparker,"RT @spurs: TP was cookin' tonight 🔥 + +16 points +7 assists +2 steals https://t.co/E5k1OtSS3A" +12/17/2017,Sports_celeb,@tonyparker,"RT @LNBofficiel: Lancement officiel des #JournéesdeNoëlLNB à l'Astroballe en compagnie de @leafrancoisoff, de Gaëtan Muller et de Sébastien…" +12/17/2017,Sports_celeb,@tonyparker,💪🏼🔥 https://t.co/eBdkmenwOF +12/17/2017,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: Coup d'envoi dans 3 minutes !🏀🔥 #ASVELBLMA #TeamASVEL https://t.co/96EK0K17Py +12/06/2017,Sports_celeb,@tonyparker,"Une rock star s’en est allée... RIP @JohnnySjh⭐️🎸🎤 +Toutes mes condoléances à sa famille! #légende" +11/29/2017,Sports_celeb,@tonyparker,"RT @spurs: ""I feel very lucky and very blessed."" + +@cayleighgriffin caught up with @tonyparker following his season debut last night: https…" +11/28/2017,Sports_celeb,@tonyparker,RT @spurs: Squad was pumped to have @tonyparker back tonight. https://t.co/9lNMnfKDfv +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: “No, it was just a lot of emotion but almost, almost. I’m always amazed by all the love from the Spurs fans.” - TP on if he shed…" +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: After seven months, @tonyparker made his return to the court last night. + +#WelcomeBackTP https://t.co/qBu1zZmwEQ" +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: 🙌 + +#WelcomeBackTP https://t.co/iomb2C1ugL" +11/28/2017,Sports_celeb,@tonyparker,Thanks Bala 👍🏽 https://t.co/LfjBFrTxzq +11/28/2017,Sports_celeb,@tonyparker,Thank you 👌🏼 https://t.co/DGDEZPfBn8 +11/28/2017,Sports_celeb,@tonyparker,Thank you my man! 🙏🏻 https://t.co/4q1N9V0p76 +11/23/2017,Sports_celeb,@tonyparker,Happy Thanksgiving y’all 🍁🦃🍰 +11/03/2017,Sports_celeb,@tonyparker,"Match contre @nicolas88batum ce soir à San Antonio, mais avant match des filles @ASVEL_Feminin! 1er match pour… https://t.co/8wv18YL23D" +11/01/2017,Sports_celeb,@tonyparker,"RT @spurs: 16 years ago today, a 19-year old @tonyparker made his @NBA debut! https://t.co/W6Fp9RtYpC" +10/31/2017,Sports_celeb,@tonyparker,💪🏽 #PurChampions https://t.co/x1r0U04KKN +10/28/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/jZNehlQ0sJ +10/19/2017,Sports_celeb,@tonyparker,@Puressentiel Pensez-vous que @JonnyWilkinson ait une chance contre moi ? #TeamTony #PurChampions https://t.co/22ZuSbNbim +10/19/2017,Sports_celeb,@tonyparker,We are back #SpursNation ⚪️⚫️ +10/12/2017,Sports_celeb,@tonyparker,👍🏼😍 https://t.co/o1DwbxYBqP +10/12/2017,Sports_celeb,@tonyparker,Merci les amis @Puressentiel ! 😬✌🏻 https://t.co/4gwdQ7UIOF +10/11/2017,Sports_celeb,@tonyparker,RT @GroupeAdequat: Notre nouvelle campagne cosignée avec @TonyParker et la @TP_A_A #Adéquat #SimplementPourVous #TPAA #LEJobAdéquat #TonyPa… +10/09/2017,Sports_celeb,@tonyparker,Joyeux anniversaire à Jean-Marc Brun et au @GroupeAdequat ! Ce n’est que le début de grandes aventures ensemble avec la @TP_A_A 😉 +10/06/2017,Sports_celeb,@tonyparker,Retour sur ce moment sympa passé il y a un an déjà avec @JonnyWilkinson et @Puressentiel #purchampions… https://t.co/8WLqQ6hAhB +10/04/2017,Sports_celeb,@tonyparker,"Concentré sur le match des filles! Match dans 10 minutes, allons chercher notre deuxième victoire ✌🏻 https://t.co/iFJmAlMiBe" +10/01/2017,Sports_celeb,@tonyparker,RT @spurs: All smiles on set today as we shoot another round of everyone's favorite @HEB commercials https://t.co/QmacRBq1OV +09/30/2017,Sports_celeb,@tonyparker,Très content du début de saison ! #OpenLFB #ASVELTGB 👌🏽🏀 https://t.co/Lg8WWs07Vb +09/30/2017,Sports_celeb,@tonyparker,Go @ASVEL_Basket 👍🏼 #ASVELCB https://t.co/aWMWBHpYsB +09/26/2017,Sports_celeb,@tonyparker,GO ASVEL GO ! https://t.co/iVjtFFwAiU +09/26/2017,Sports_celeb,@tonyparker,I tried out #RenaultTimeCapsule. You too travel to the future thanks to #RenaultSYMBIOZ https://t.co/IEeWsxoBPa https://t.co/fGfAhHChm4 +09/25/2017,Sports_celeb,@tonyparker,"RT @spurs: ""That was my main goal all summer... to be back at the level I was in the playoffs"" - @tonyparker https://t.co/U07bR87FOI" +09/24/2017,Sports_celeb,@tonyparker,Premier match de la saison pour les verts 😬🏀 #GoAsvelGo #ASVELCSP +09/24/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: H-1 ! Prêts pour le premier RDV de la saison ? 🔥🏀 #ASVELCSP https://t.co/ACQEWr7Tny +09/13/2017,Sports_celeb,@tonyparker,"RT @Paris: Notre rêve devient réalité, @Paris2024 se concrétise 😍 Les Jeux Olympiques de 2024 sont une chance pour la France🇫🇷 #ANousLesJeu…" +09/13/2017,Sports_celeb,@tonyparker,"Bravo à toute la délégation pour avoir décroché les Jeux Olympiques en France. 🇫🇷🎉 +#ANousLesJeux #Paris2024" +09/13/2017,Sports_celeb,@tonyparker,"RT @Paris2024: #ANousLesJeux 🎉 La #France accueillera les Jeux #Paris2024 🥇 +WE DID IT – 🇫🇷 will host the 2024 #Olympic and #Paralympic Game…" +09/02/2017,Sports_celeb,@tonyparker,"RT @FRABasketball: Les Bleus s'imposent face à la Grèce 95-87 💪 #GREFRA +#teamfrancebasket #EuroBasket2017 https://t.co/nOMCjvTHGZ" +09/02/2017,Sports_celeb,@tonyparker,Bravo 💪🏼🥋 https://t.co/Rt4iQeE1Ke +08/31/2017,Sports_celeb,@tonyparker,"RT @FRABasketball: Prolongations !!!!! #FRAFIN +Le scénario de 2015 se répète +#GoFrance 💪🔵⚪️🔴 +#TeamFranceBasket" +08/31/2017,Sports_celeb,@tonyparker,@FRABasketball @EvanFourmizz @basketfinland @BasketAvecCanal @EspritBasket Allez les Bleus 💪🏽🏀 #Eurobasket17 +08/31/2017,Sports_celeb,@tonyparker,"RT @Sandrine_Gruda: Légende de notre sport 🇫🇷👌 +@tonyparker https://t.co/CKN30aB1wc" +07/26/2017,Sports_celeb,@tonyparker,Super événement @GRDF ! 👍🏼😊 #GenerationBasket https://t.co/0TU6c47A2J +07/26/2017,Sports_celeb,@tonyparker,"Beijing, here I am ! Thank you @peaksportsUSA 🇨🇳🏀" +07/21/2017,Sports_celeb,@tonyparker,👍 https://t.co/wBOIOulBu9 +07/21/2017,Sports_celeb,@tonyparker,Buenos tiempos con @RenaultArg ! #TonyParkerxRENAULT https://t.co/4yY8qgsSFl +07/20/2017,Sports_celeb,@tonyparker,RT @RenaultArg: ¡Bienvenido @tonyparker a la #Argentina! 💪🏀 Seguí el paso a paso de su visita desde nuestras redes sociales. #TonyParkerxRE… +07/19/2017,Sports_celeb,@tonyparker,"RT @manuginobili: 🇦🇷Seguiré vistiendo la #20 un tiempito más!! #sigaelbaile #elpibede40  +🇺🇸Back with the @Spurs for another season #thrille…" +07/19/2017,Sports_celeb,@tonyparker,MANU IS BACK !! So happy @manuginobili ⚪️⚫️ #GoSpursGo #SpursNation +07/16/2017,Sports_celeb,@tonyparker,👏👏 https://t.co/ibAf9rSwp5 +07/14/2017,Sports_celeb,@tonyparker,"Joyeux 14 Juillet à tous ! 🇫🇷 +Happy Bastille Day ! 🇫🇷 https://t.co/BCWhHgzOWA" +06/27/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/vxsZePUFGU +06/27/2017,Sports_celeb,@tonyparker,RT @RRG_fr: @tonyparker est arrivé sur les lieux et découvre le Nouveau #RenaultKoleos https://t.co/v7IWxTgSZD +06/27/2017,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: @tonyparker @ASVEL_Basket @TP_A_A @villedelyon @nicolas88batum Photo de famille pour clôturer la conférence de présentat… +06/26/2017,Sports_celeb,@tonyparker,"RT @TP_A_A: RDV demain pour une conférence de presse de @tonyparker, Gaëtan Muller et @nicolas88batum sur les grands projets ASVEL #TPAA" +06/09/2017,Sports_celeb,@tonyparker,Fier d’avoir vu l'@ASVEL_Basket ne faire qu’UN durant ces Playoffs. Merci à tous nos soutiens et rdv l’année prochaine ! #Conquerthefuture +06/09/2017,Sports_celeb,@tonyparker,Thank you @spurs 💪🏼😎 https://t.co/QKmp9dOne8 +06/04/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: AHOU !! Allez l'@ASVEL_Basket ! 👊🏼 #ASVELSIG #WeAreASVEL https://t.co/UK46lv26pK +05/30/2017,Sports_celeb,@tonyparker,YES !!! 💪🏼 On to the next one @ASVEL_Basket #WeAreASVEL https://t.co/KUf9A46cey +05/26/2017,Sports_celeb,@tonyparker,"Fier de mon équipe @ASVEL_Basket ! Prochaine étape, la 1/2 face à @sigstrasbourg 🏀 #PlayoffsLNB #ObjectifBack2Back" +05/26/2017,Sports_celeb,@tonyparker,Dernière ligne droite ! #GoasvelGo https://t.co/NrxQ9l5wQa +05/24/2017,Sports_celeb,@tonyparker,ALLEZ @ASVEL_Basket je regarde le match en direct de San Antonio ! 🏀 #PlayoffsLNB #ObjectifBack2Back #GoAsvelGo https://t.co/QGL1YvseSH +05/24/2017,Sports_celeb,@tonyparker,"RT @spurs: All of this is nothing without you by our side. From the bottom of our hearts, thank you #SpursFamily for all your support. We l…" +05/23/2017,Sports_celeb,@tonyparker,Thank you for all the support during this season #SpursNation ! @spurs +05/17/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Happy birthday Président @tonyparker ! 😉🎉 #TeamASVEL https://t.co/rYHwKd8XMl +05/17/2017,Sports_celeb,@tonyparker,RT @LYONBF: Bon anniversaire à notre président @tonyparker ! 🎉 🎂🏀 #LBFamily +05/17/2017,Sports_celeb,@tonyparker,RT @NBA: Join us in wishing @tonyparker of the @spurs a HAPPY 35th BIRTHDAY! #NBABDAY #GoSpursGo https://t.co/qtXIHWcL6X +05/17/2017,Sports_celeb,@tonyparker,Thank you ! #GoSpursGo https://t.co/WvVPrtTglN +05/12/2017,Sports_celeb,@tonyparker,Western Conference Finals !!! #gospursgo +05/10/2017,Sports_celeb,@tonyparker,What a win! So proud of my teammates! #gospursgo +05/02/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: .@CB_officiel @CKahudi5 #CBASVEL #ProA https://t.co/2KAHqaSs7E +05/02/2017,Sports_celeb,@tonyparker,Félicitations à nos filles du @LYONBF !!! On reste en Ligue 1 ! Hâte d'être à l'année prochaine 🏀 +05/01/2017,Sports_celeb,@tonyparker,Je compte sur le public lyonnais pour faire vibrer Mado Bonnet et soutenir le @LYONBF ce mardi en finale des #PlaydownsLFB ! #MissionLFB +04/29/2017,Sports_celeb,@tonyparker,"Joyeux anniversaire Josh ! Déjà trois ans, le temps passe vite 🎂 +Happy birthday to my big boy Josh, already three y… https://t.co/0uPfxLoHRe" +04/28/2017,Sports_celeb,@tonyparker,"On to Round 2 #SpursNation ! +💪🏼👨🏽‍🍳🔥 @spurs" +04/28/2017,Sports_celeb,@tonyparker,RT @spurs: 🔥 TONY 🔥 PARKER 🔥TONIGHT 🔥 https://t.co/qcwTllyA6i +04/28/2017,Sports_celeb,@tonyparker,RT @SamuelLJackson: Tony Parker Yalllllll!!! +04/28/2017,Sports_celeb,@tonyparker,RT @DavidtheAdmiral: Vintage @tonyparker tonight. Hitting big shots all night. #Clutch +04/26/2017,Sports_celeb,@tonyparker,"Mon gars @edjacks c'est définitivement le #MVPMovistar de la @ACBCOM. Jamais un français ne l'as fait, aidez le à écrire l'histoire !! 🔥👌🏀" +04/23/2017,Sports_celeb,@tonyparker,RT @NBA: Congrats to @tonyparker of the @spurs on moving up to 6th on the #NBAPlayoffs Games Played list with 217! https://t.co/F5azjTrtw5 +04/21/2017,Sports_celeb,@tonyparker,👍 https://t.co/an4k8W4LD6 +04/15/2017,Sports_celeb,@tonyparker,"That happy face when you know today is #PlayoffsDay ! @spurs +#GoSpursGo https://t.co/rpO1n0u8cy" +04/15/2017,Sports_celeb,@tonyparker,#NBAPlayoffs 🏀 https://t.co/f9OdyDBfFd +04/06/2017,Sports_celeb,@tonyparker,Thank you for being the Best Fans in the world ! ❤️ #SpursFAN @spurs https://t.co/rPmroEiYMV +04/06/2017,Sports_celeb,@tonyparker,RT @spurs: Happy Birthday @mattbonner_15! 🎉 https://t.co/xBS7U2KkTU +04/03/2017,Sports_celeb,@tonyparker,Merci pour le soutien @AntoGriezmann ! 😊 https://t.co/spQggkRSOh +03/29/2017,Sports_celeb,@tonyparker,Très heureux d'annoncer l'arrivée de @nicolas88batum au sein de mon club de l'@ASVEL_Basket ! Une nouvelle aventure commence ensemble... +03/14/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Welcome back Casper ! 😉 #TeamASVEL https://t.co/BvmOOI4j30 +03/10/2017,Sports_celeb,@tonyparker,RT @jpsiutat: Bravo à @tonyparker nouveau président et propriétaire majoritaire de Lyon Basket Féminin ! @ffbasketball @basketlfb +03/10/2017,Sports_celeb,@tonyparker,Très fier de pouvoir officialiser l'achat du @LYONBF ! Une nouvelle aventure commence ... #lfb #basket #feminin +03/02/2017,Sports_celeb,@tonyparker,The documentary #asveldidit is now online. Le documentaire Asvel Did It est en ligne. Enjoy ! https://t.co/HSyBMvJyRB +02/26/2017,Sports_celeb,@tonyparker,"RT @spurs: Pretty nifty, @tonyparker https://t.co/k27W6PI5mv" +02/26/2017,Sports_celeb,@tonyparker,Look who came to the game ! #CasperWare #Asvel #FranceChampion2016 cc. @ASVEL_Basket https://t.co/1q8zBhkLNn +02/26/2017,Sports_celeb,@tonyparker,"RT @spurs: Okay, TP, okay! https://t.co/v86mmZsT30" +02/24/2017,Sports_celeb,@tonyparker,Family Time in L.A. 👌🏼cc. @unistudios #theparkers #love https://t.co/ymemYzQnfE +02/23/2017,Sports_celeb,@tonyparker,Concept store sympa ! Allez rencontrer des sportifs et découvrez mes vêtements @WapTwo 👌cc. @tsonga7 @lucabalo… https://t.co/NFj0auKMt9 +02/20/2017,Sports_celeb,@tonyparker,"Got to stay in shape, even during the All-Star break! Great times at Enchanted Rock. 💪🏼 https://t.co/5jj7emxMKl" +02/19/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Place à la finale #ProA !! #MonacoASVEL #LeadersCup https://t.co/12kKlkV8CV +02/12/2017,Sports_celeb,@tonyparker,Go @HollyHolm ! #ufc208 https://t.co/sGBBwPqnXZ +02/11/2017,Sports_celeb,@tonyparker,"Défiez moi sur les jeux #bootcamp #RenaultSport ! Try to challenge my scores on @RenaultSport #bootcamp games! +➡️ https://t.co/mWD92MtOEv" +02/10/2017,Sports_celeb,@tonyparker,"RT @gerardcollomb: Confidence de @tonyparker : ""Je suis tombé amoureux de #Lyon !"" +C'est réciproque, cher Tony. 😉 +🏀 Longue vie à la Parker…" +02/10/2017,Sports_celeb,@tonyparker,"RT @GroupeAdequat: Adéquat est fier de devenir partenaire de la future ""Tony Parker Adéquat Academy"" #TPAA #Adéquat #TonyParker https://t.c…" +02/10/2017,Sports_celeb,@tonyparker,https://t.co/aT5UCrJJEM 👍🏼 +02/10/2017,Sports_celeb,@tonyparker,Je suis fier de vous présenter le nom de ma future academy : la TONY PARKER ADEQUAT ACADEMY #TPAA #Adéquat @TP_A_A… https://t.co/LdQGjaFfxU +02/09/2017,Sports_celeb,@tonyparker,Retrouvez-moi demain à 15h pour l’annonce du nom de la @TP_Academy_ … #staytuned #TPAcademy #ASVEL +02/08/2017,Sports_celeb,@tonyparker,Retour des #CGB en Février ! @GRDF 👍🏻 https://t.co/PSIRGQ3Wlk +02/08/2017,Sports_celeb,@tonyparker,#GOAT 🏀 https://t.co/pfDkJkT1fK +02/06/2017,Sports_celeb,@tonyparker,RT @spurs: And #SpursRRT begins. We're Memphis bound! https://t.co/ZlPim1frnt +02/05/2017,Sports_celeb,@tonyparker,"RT @NBAHistory: Gregg Popovich #1,128; journey back to Pop's first win as @Spurs head coach https://t.co/sVHU5JUL0m" +02/05/2017,Sports_celeb,@tonyparker,"Congratulations to Coach Pop, made history yesterday with 1,128 wins as head coach! #proud @spurs" +02/04/2017,Sports_celeb,@tonyparker,"RT @NBA2K: Big news! 4x NBA champ @TonyParker joins #NBA2KCast 2/7, 4 PM PST for the @Tissot 24 Second Challenge #ThisIsYourTime https://t.…" +02/01/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/ecxC6guMEY +01/30/2017,Sports_celeb,@tonyparker,Congrats to my friend @rogerfederer ! So happy for you #goat #tennis #tbt https://t.co/aBGStmDisO +01/29/2017,Sports_celeb,@tonyparker,Merci @gadelmaleh pour ce super show hier soir ! Amazing show from my friend @gadelmaleh yesterday evening un Austi… https://t.co/SZ3yl2HivL +01/18/2017,Sports_celeb,@tonyparker,Always a great time at Coach Pop dinner for @safoodbank ! #championsagainsthunger https://t.co/zc3sKeHunf +01/18/2017,Sports_celeb,@tonyparker,"RT @spurs: Tricky, tricky @tonyparker.. https://t.co/XLKTllLwLH" +01/13/2017,Sports_celeb,@tonyparker,Amazing pic of @Thom_astro from the space ! Thanks for sharing it with me ! Huge @spurs fan ! https://t.co/kSupw5YAhl +01/13/2017,Sports_celeb,@tonyparker,Merci @Thom_astro de m'avoir envoyé cette photo ! J'espère que tout se passe bien dans l'espace avec ton nouveau po… https://t.co/fY5RMEbOHG +01/01/2017,Sports_celeb,@tonyparker,RT @lequipe: Le doc #ASVELdidit sur l'épopée de l'@ASVEL_Basket de @tonyparker en Pro A vous donne RDV dans 5mn sur @lachainelequipe ! http… +12/31/2016,Sports_celeb,@tonyparker,Happy New Yeare everyone ! Bonne année ! ✨ +12/29/2016,Sports_celeb,@tonyparker,RT @spurs: Tony was cookin' tonight. https://t.co/4LZIZQs0fd +12/28/2016,Sports_celeb,@tonyparker,A 17h50 sur @lachainelequipe découvrez « Asvel Did It » un docu sur l’@ASVELbasket et les Finales LNB 2016 ! #asveldidit @waptwo @OckeFilms +12/25/2016,Sports_celeb,@tonyparker,Joyeux Noël ! Merry Christmas ! Feliz Navidad ! 🎄🎅🏽✨ +12/24/2016,Sports_celeb,@tonyparker,I got what was at the top of my wish list! #Tissot Chemin Des Tourelles https://t.co/2F06goClmX +12/22/2016,Sports_celeb,@tonyparker,Proud to show you the amazing job made by @WapTwo recording the best moments to the Finals of my french club… https://t.co/dsDkSPQxf7 +12/18/2016,Sports_celeb,@tonyparker,"RT @spurs: 30 minutes till tipoff. Y'all ready?! + +#GoSpursGo https://t.co/NiRgmujp8P" +12/18/2016,Sports_celeb,@tonyparker,"Wearing these socks in honor of #Timmy tonight ! +Spéciale dédicace à #TD ce soir ! +#21 #spurs #ThankYouTD @spurs https://t.co/KgZ5NXF3lb" +12/15/2016,Sports_celeb,@tonyparker,RT @NBAonTNT: We are forever #SagerStrong https://t.co/t9C3x6znkb +12/11/2016,Sports_celeb,@tonyparker,Super photo @Thom_astro ! Merci du soutien en direct de l'espace 🚀✨ +12/11/2016,Sports_celeb,@tonyparker,Thank you @Thom_astro for your support of the @spurs ! Amazing picture from space 🚀 #sanantoniobynight +12/11/2016,Sports_celeb,@tonyparker,RT @Thom_astro: Good game to my friend @tonyparker & @spurs playing at home tonight in San Antonio TX. I'm a huge @NBA fan & I follow the s… +11/28/2016,Sports_celeb,@tonyparker,Fier de présenter la nouvelle collection capsule @WapTwo pour @zkidsofficial Shop ---> https://t.co/ADl6JiToXw #waptwo #Zkids #collection +11/25/2016,Sports_celeb,@tonyparker,"RT @spurs: Wherever home is for you, we hope you're enjoying time there today ❤️ https://t.co/7QjlXa22Ar" +11/24/2016,Sports_celeb,@tonyparker,"Happy Thanksgiving to everyone ! I'm thankful for my wonderful family, my friends and for you #spursnation 🙏🏻 🍁 🦃 @spurs" +11/24/2016,Sports_celeb,@tonyparker,💪🏼 @manuginobili https://t.co/7w8U1M8of5 +11/24/2016,Sports_celeb,@tonyparker,RT @spurs: .@tonyparker came up clutch with this three late in the fourth! https://t.co/oOh1JVt4p1 +11/23/2016,Sports_celeb,@tonyparker,"RT @Thom_astro: Thanks everybody for this video: it means a lot to me, and when I got to the rocket I felt fantastic https://t.co/9v4HiHRpCC" +11/18/2016,Sports_celeb,@tonyparker,Great times at George's personal court at Warner Brothers ! 🏀📽 https://t.co/URs6EvEgag +11/17/2016,Sports_celeb,@tonyparker,"RT @FRABasketball: .@tonyparker et @theborisdiaw aux côtés de @Thom_astro avant son départ pour l'espace 💫 🚀 +https://t.co/HHuVlC7QOn https:…" +11/17/2016,Sports_celeb,@tonyparker,"Bonne chance @Thom_astro pour la mission ""Proxima"" ! 🚀 +On se voit à ton retour ✨" +11/17/2016,Sports_celeb,@tonyparker,RT @Thom_astro: L-0: Lancement aujourd’hui! Tout est expliqué dans cette vidéo. Moi je connais ça par cœur ;) https://t.co/hxnfcXLPa7 +11/15/2016,Sports_celeb,@tonyparker,RT @spurs: Tony talks defense and Manu talks Tony: https://t.co/kLdSKXp1kC +11/12/2016,Sports_celeb,@tonyparker,RT @spurs: Basketball meets soccer. https://t.co/Pz1drHVbIu +11/12/2016,Sports_celeb,@tonyparker,RT @NBAFRANCE: @tonyparker a de la visite ce soir! @10APG https://t.co/PvV2Z8eAhy +11/12/2016,Sports_celeb,@tonyparker,Very happy to see you @10apg at the AT&T Center ! #spurs #tigres #france 🇫🇷👍🏼 https://t.co/oYuQxqErt0 +11/11/2016,Sports_celeb,@tonyparker,Happy #VeteransDay Spurs Nation ! +11/11/2016,Sports_celeb,@tonyparker,"RT @spurs: Tonight we honor those who have served with a special #SpursSalute game. + +#VeteransDay 🇺🇸 https://t.co/U4US3NWHQw" +11/04/2016,Sports_celeb,@tonyparker,"RT @spurs: “It’s incredible to see the way basketball has grown around the world since I was a rookie."" - @tonyparker https://t.co/jeOBtOF…" +11/01/2016,Sports_celeb,@tonyparker,Game Day #SpursNation ! #vsjazz #GoSpursGo +10/31/2016,Sports_celeb,@tonyparker,"RT @spurs: .@tonyparker has been a Spur for 44% of his life + +more fun stuff » https://t.co/jnor54AHaz https://t.co/VVRsYP0wC1" +10/31/2016,Sports_celeb,@tonyparker,RT @spurs: 💯 https://t.co/BXkr3aOCF4 +10/31/2016,Sports_celeb,@tonyparker,You can never be too accurate #TeamTissot #ThisIsYourTime https://t.co/e6yfyprJkS +07/01/2018,Sports_celeb,@Cristiano,"O vosso apoio foi e sempre será fundamental para nós. +Obrigado Portugal 🇵🇹 https://t.co/qjKNNp6skN" +06/27/2018,Sports_celeb,@Cristiano,"High @sleepscore. ✅ +Game day ready. ✅ +Try out this new app today! +https://t.co/bcfa1BItoD #WhatsYourSleepScore https://t.co/dwmu9lnVqj" +06/27/2018,Sports_celeb,@Cristiano,"Happy to launch my new #Mercurial Chapter 6 Edição Especial that celebrate 85 goals for 🇵🇹⚽️👍🏽 +Coming soon at… https://t.co/UQ6aPURYXz" +06/25/2018,Sports_celeb,@Cristiano,Objectivo cumprido. Unidos e focados para os oitavos de final. Vamos Portugal💪🏽🇵🇹 https://t.co/fEdKbFB9X8 +06/24/2018,Sports_celeb,@Cristiano,Mood👌🇵🇹💯 https://t.co/q43fbu6jsJ +06/24/2018,Sports_celeb,@Cristiano,"Leaving home at 12 was the hardest thing I ever did... but I believed. +Believe. #justdoit @nikefootball https://t.co/9ZWsz95CAz" +06/22/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/Awb3DLFAib +06/20/2018,Sports_celeb,@Cristiano,Vitória importante. Continuamos focados no nosso objectivo.⚽️🇵🇹 https://t.co/tceQUIEfFO +06/19/2018,Sports_celeb,@Cristiano,"WHEN I TALK TO THE BALL, IT LISTENS. + +BELIEVE. #JUSTDOIT @NIKEFOOTBALL https://t.co/gUSFBj26b8" +06/16/2018,Sports_celeb,@Cristiano,Feliz por ter sido eleito o melhor em campo. Bom trabalho de equipa!🇵🇹👍🏽 https://t.co/EjLIZxp3Dm +06/15/2018,Sports_celeb,@Cristiano,Vamos família!👍🏽🇵🇹 https://t.co/YjfMbdx8xN +06/14/2018,Sports_celeb,@Cristiano,Celebrating World Blood Donor Day and the start of the World Cup! Feeling strong with my young blood donors team! R… https://t.co/ihAnq4wz7N +06/14/2018,Sports_celeb,@Cristiano,"I’m so glad I went for it - it was the greatest goal I’ve ever scored. +Believe. #justdoit @nikefootball https://t.co/iSFRsSW4nc" +06/13/2018,Sports_celeb,@Cristiano,"In my mind, there’s only one winner. + +Believe. #justdoit @nikefootball https://t.co/7Z1btfgSHI" +06/10/2018,Sports_celeb,@Cristiano,Sonhar é humano …. e somos do tamanho dos nossos sonhos! @MEOpt https://t.co/8SM7UQW8Op +06/10/2018,Sports_celeb,@Cristiano,🇵🇹💪🏽😜 https://t.co/7jTQVbgrR7 +06/09/2018,Sports_celeb,@Cristiano,Guess who’s back on the cover of @EASPORTSFIFA! 😉 #FIFA19 #ChampionsRise 🎮⚽️🏆 https://t.co/7jb1euX5Fu +06/09/2018,Sports_celeb,@Cristiano,"Time to pack! +Let’s do it, team! ⚽ + +#AmericanTourister #BringBackMore https://t.co/chjLBaU4tc" +06/09/2018,Sports_celeb,@Cristiano,Good morning🇵🇹😜 https://t.co/ZoVWW8Xk5B +06/08/2018,Sports_celeb,@Cristiano,Unidos 🇵🇹👌 https://t.co/RQljR0ShqR +06/07/2018,Sports_celeb,@Cristiano,"When you believe you achieve. +@nikefootball #nikefootball #JustDoIt https://t.co/ptLV2VzhMx" +06/06/2018,Sports_celeb,@Cristiano,Ready 🇵🇹👌 https://t.co/8jwT3lbaAl +06/06/2018,Sports_celeb,@Cristiano,I’m bringing together some of the coolest heroes on the planet for my very own Super-Team. Stay tuned for… https://t.co/NjxkGECGSV +06/05/2018,Sports_celeb,@Cristiano,Os meus bebés Eva e Mateo cumprem hoje o seu primeiro aniversário! Parabéns meus queridos filhos!👏🏽🎂😘😘 https://t.co/BZuLX0OkH2 +06/04/2018,Sports_celeb,@Cristiano,The world is watching. Let’s go to work #HerbalifeNutrition #BehindTheResults #sponsored https://t.co/HSPjsRJ7JK +06/02/2018,Sports_celeb,@Cristiano,Vencedores 👌🏆 https://t.co/SN3oNC8xLY +06/01/2018,Sports_celeb,@Cristiano,"Never finished 🇵🇹 ⚽ 💪 + +Shop my latest #Mercurial in my personal store at https://t.co/E2zLOUFGP6 #Nike… https://t.co/DUgODwkruM" +05/31/2018,Sports_celeb,@Cristiano,"Are you donating blood and plasma regularly? Guess who could be next to you next time you donate!☝🏼☝🏼 BE THE 1. +Sa… https://t.co/AjD0DANeyT" +05/29/2018,Sports_celeb,@Cristiano,Família. Momentos inesquecíveis 💪🏽❤️ https://t.co/d9wa3tcFnb +05/28/2018,Sports_celeb,@Cristiano,🏆❤️ https://t.co/cNVIXvzpvk +05/28/2018,Sports_celeb,@Cristiano,História 🌎🏆 https://t.co/vhAitaP2Aw +05/27/2018,Sports_celeb,@Cristiano,🏆🏆🏆🏆🏆 https://t.co/5MhvvArz1b +05/26/2018,Sports_celeb,@Cristiano,"Believe It Done. #JustDoIt +-- +#Nike #NikeFootball #NikeSoccer https://t.co/HJSlxDRJI0" +05/24/2018,Sports_celeb,@Cristiano,"If you believe, why not? +#NIKEFOOTBALL #NIKESOCCER #MERCURIAL #BORNMERCURIAL #JUSTDOIT https://t.co/p0CnaLz5EH" +05/24/2018,Sports_celeb,@Cristiano,A caminho de Kiev 👌✈️ https://t.co/2s6bxDfov1 +05/23/2018,Sports_celeb,@Cristiano,Don’t miss my sisters Elma Aveiro e @KatiaAveiro at Madeira Fashion Weekend on June 2 and 3! The party goes on at… https://t.co/BvspSy3SBg +05/23/2018,Sports_celeb,@Cristiano,My perfect shoes for the gym.💪 #Nike #Niketraining @niketraining https://t.co/qqtYbR1lDF +05/23/2018,Sports_celeb,@Cristiano,Can’t wait to work with @Herbalife Nutrition for another 3 years! Proud to call them my partner in performance… https://t.co/2zehRd4266 +05/22/2018,Sports_celeb,@Cristiano,Good morning ☀️ ☀️ ☀️ ☀️ https://t.co/MTAHJKerh8 +05/19/2018,Sports_celeb,@Cristiano,👌⚽️ https://t.co/meWZy2b9nM +05/18/2018,Sports_celeb,@Cristiano,Paz e amor 💕 https://t.co/IUbJ7lOqNu +05/18/2018,Sports_celeb,@Cristiano,"We’ve made it last year in Funchal, let’s do it for Lisbon this year! +Click here: https://t.co/PfvzZ5oaCJ vote ;)… https://t.co/YnYKGvoVP5" +05/17/2018,Sports_celeb,@Cristiano,Pleased with this great partnership with #egyptiansteel @ahmedabohashima #A_New_Generation_Of_Steel https://t.co/4h4OHy365u +05/17/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/OXizqFk0PS +05/16/2018,Sports_celeb,@Cristiano,"Muito contente por anunciar o gesto do meu amigo @enriqueiglesias em doar 7⃣% das receitas do concerto em Lisboa,ao… https://t.co/R3Hy08T6gZ" +05/15/2018,Sports_celeb,@Cristiano,👌 https://t.co/uTmxndlUJi +05/12/2018,Sports_celeb,@Cristiano,Back on track 👌👋💪 https://t.co/WkhDmp8rAZ +05/05/2018,Sports_celeb,@Cristiano,"My thoughts and prayers are with you, my dear friend. Be strong, Boss! https://t.co/kmih28Xpsq" +05/04/2018,Sports_celeb,@Cristiano,"Madeira Island, the place where I was born, is nominated for Europes’s Leading Island Destination! Let’s all vote?… https://t.co/XuwXKOpcmb" +05/03/2018,Sports_celeb,@Cristiano,Ready for Russia? The FIFA #WorldCup comes to #FIFA18 on May 29th 🎮👌 @easportsfifa https://t.co/42DLu8MXWN https://t.co/T1VbAdifja +05/01/2018,Sports_celeb,@Cristiano,Final 👌 https://t.co/A0xnTPUPKH +04/30/2018,Sports_celeb,@Cristiano,"The perfect boot for my biggest matches. ⚽ 💪 +Get yours on https://t.co/Td9BJOXwaj. #Mercurial #Nikefootball https://t.co/yU9dTFXuHo" +04/29/2018,Sports_celeb,@Cristiano,Soon UCL ⚽️ https://t.co/BsVWt5toQw +04/25/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽 https://t.co/73bMhzwxEk +04/21/2018,Sports_celeb,@Cristiano,Chill in my hotel with my baby❤️ https://t.co/ySPQ9BP566 +04/20/2018,Sports_celeb,@Cristiano,Relaxing 👌 https://t.co/fcFt2AGsBH +04/16/2018,Sports_celeb,@Cristiano,⚽️👀 https://t.co/1wY275ywgr +04/14/2018,Sports_celeb,@Cristiano,O Cristiano foi o melhor marcador da escola! Parabéns filho!👏🏽🔝👌🏽 https://t.co/pRTxLdkxNO +04/14/2018,Sports_celeb,@Cristiano,Congratulations @egyptiansteel for the opening in “Al Ain Al Sokhna”using the newest eco-friendly technology in the… https://t.co/6Jrk1sozcK +04/13/2018,Sports_celeb,@Cristiano,Please support @able2uk today as the disabled awareness organisation celebrates its 17th anniversary #able2uk +04/12/2018,Sports_celeb,@Cristiano,Vamos equipo!!👍🏽 https://t.co/6v0jEZaX8T +04/09/2018,Sports_celeb,@Cristiano,👌 https://t.co/bTFbcvVFhw +04/06/2018,Sports_celeb,@Cristiano,"Preparing my suitcase for a new trip! Which colors look best on me? +Travel in style with #AmericanTourister… https://t.co/dHbNDGIVQx" +04/03/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽⚽️⚽️⚽️ https://t.co/NXoulxYVjU +04/02/2018,Sports_celeb,@Cristiano,UCL⚽️ https://t.co/FmU9tDJCzC +04/01/2018,Sports_celeb,@Cristiano,Feliz Páscoa!🐣 https://t.co/l77dlVmyhR +03/29/2018,Sports_celeb,@Cristiano,Double trouble ;p @cr7underwear https://t.co/1HGbZRwrPB +03/24/2018,Sports_celeb,@Cristiano,Results don’t happen overnight. It takes daily commitment. Watch my #BehindTheResults video with #HerbalifeNutrition https://t.co/1jwQxJIfmv +03/24/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/VetQvKxFAs +03/22/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/b0SUaPwbdU +03/21/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/vknrvyNRW1 +03/20/2018,Sports_celeb,@Cristiano,"Fight as one, rise together !⚽ +The new @Portugal National Team Collection, available on +March 23rd on… https://t.co/jrCUzseIWh" +03/19/2018,Sports_celeb,@Cristiano,⚽️7 https://t.co/rvYAhaDLN7 +03/18/2018,Sports_celeb,@Cristiano,Vamos Equipo!👍🏽💪🏽 https://t.co/8BTu6Fwsvw +03/17/2018,Sports_celeb,@Cristiano,😂😂 https://t.co/mcoAIPPWgm +03/17/2018,Sports_celeb,@Cristiano,"Dedicated SINCE the Beginning. #BornMercurial +Get THE Mercurial superFly 360 now at https://t.co/pzHBG6y9o5 https://t.co/497HZTdNeB" +03/15/2018,Sports_celeb,@Cristiano,"Hola Madrid, +we are on the way! #pestana #pestanacr7 #cr7 #2019 #pestanacr7madrid #spain #madrid https://t.co/Z94V4BaVba" +03/14/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/LcWYOyOR0m +03/13/2018,Sports_celeb,@Cristiano,Be strong. Have faith. Never give up. #7WordsForSyria @SavetheChildren https://t.co/WjGltzXhSV +03/12/2018,Sports_celeb,@Cristiano,Still legendary together. 10 years and counting. #ClearMen #WorldNo1MenShampoo https://t.co/9n5Ccwy3DE +03/11/2018,Sports_celeb,@Cristiano,That feeling when you reach your goal 💪 See how @herbalife is helping people achieve their goals… https://t.co/UG2amgrD7V +03/10/2018,Sports_celeb,@Cristiano,Vamos Equipo!👍🏽💪🏽 https://t.co/TU1TkArQ8W +03/09/2018,Sports_celeb,@Cristiano,Fast meets Fast ⚡ Great to meet you brother! #bornmercurial #mercurial #nikefootball https://t.co/Kfp3acbLRm +03/08/2018,Sports_celeb,@Cristiano,My SS18 CR7 Underwear campaign launches today! Go to https://t.co/D3TT7ERIz0 to check it out. ;) https://t.co/mnsPjMaewI +03/08/2018,Sports_celeb,@Cristiano,My SS18 @CR7Underwear campaign launches today! Go to https://t.co/Vlium6FXZ6 to check it out. ;) https://t.co/hnQg3EGb0N +03/06/2018,Sports_celeb,@Cristiano,Una victoria importante en Paris. Vamos Equipo!💪🏽 https://t.co/hOPilXXUgN +03/05/2018,Sports_celeb,@Cristiano,Let's go 💪👌 https://t.co/H0KgDnfECO +03/04/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/qm0fUiOjLb +03/03/2018,Sports_celeb,@Cristiano,Vamos equipo!!👍🏽 https://t.co/mJ9lu3xufv +03/01/2018,Sports_celeb,@Cristiano,🐆 #bornmercurial https://t.co/Ce55ar3ysT +03/01/2018,Sports_celeb,@Cristiano,💪Jr say daddy I'm gonna be like you!!! What do you think?? 😂🤔 https://t.co/wL7KVyCkaF +02/25/2018,Sports_celeb,@Cristiano,To more mornings like this at my @PestanaCR7 Lisbon hotel https://t.co/NBouh25NXH +02/25/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/kGyIW7xvrE +02/24/2018,Sports_celeb,@Cristiano,Feliz por haber alcanzado los 300 goles en la Liga Española por el Real Madrid. Vamos equipo!👍🏽 https://t.co/KBizM5OTdb +02/23/2018,Sports_celeb,@Cristiano,Best of luck to #Egyptian_Steel latest addition...The soon to open “AL AIN AL SOKHNA” steel plant @ahmedabohashima… https://t.co/4zHRAVzIib +02/22/2018,Sports_celeb,@Cristiano,"Try to Keep Up 🐆 #BornMercurial + +Introducing the Mercurial Superfly 360, available February 26 at… https://t.co/0CwkXBl1v2" +02/20/2018,Sports_celeb,@Cristiano,Love is in the air ❤️❤️ https://t.co/cwyBIQNaBQ +02/18/2018,Sports_celeb,@Cristiano,"Juntos, a seguir luchando!💪🏽 https://t.co/WJuUOD84ko" +02/15/2018,Sports_celeb,@Cristiano,One 🌍 where we all ❤ our children. Please help. #Rohingya #Refugee @SavetheChildren https://t.co/t2eJN244Jl https://t.co/9ZPwe5olJC +02/14/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽💪🏽 https://t.co/Z1Hon6cihl +02/13/2018,Sports_celeb,@Cristiano,I love this game 😂😄❤️😉 https://t.co/6k3CElTIy1 +02/11/2018,Sports_celeb,@Cristiano,Nice to see you bro. 👌💪 https://t.co/MMqLZDsEgJ +02/07/2018,Sports_celeb,@Cristiano,Me and my boy 💙 Rocking our @cr7limitless & @cr7junior gear | https://t.co/rIL6OxcBQk #CR7Denim #CR7Jeans #CR7Squad https://t.co/wGuGCAP2mg +02/06/2018,Sports_celeb,@Cristiano,#bornmercurial @nikefootball https://t.co/ugnl0Ef6Xb +02/06/2018,Sports_celeb,@Cristiano,#NovaFotoDoPerfil https://t.co/36nZtKDiMQ +02/05/2018,Sports_celeb,@Cristiano,"Thanks @Nike for this amazing birthday gift!🎁👟👌🏽🔝 +#24kgold #AF1 #CR7 https://t.co/LYDy58Vs13" +02/05/2018,Sports_celeb,@Cristiano,Job done with a special partner on my birthday!💪🏽❤️#livelifefit https://t.co/4hGRRssTZv +02/05/2018,Sports_celeb,@Cristiano,33!🎂🥂Thank you all for your birthday messages https://t.co/YUJGDZCsAe +02/05/2018,Sports_celeb,@Cristiano,"Not bad for my first time playing football 💪🏼 +https://t.co/oAaLFOnMn8" +02/04/2018,Sports_celeb,@Cristiano,#NovaFotoDoPerfil https://t.co/XrUiPnpEqk +02/02/2018,Sports_celeb,@Cristiano,👌 https://t.co/saZsfm4Qrp +02/01/2018,Sports_celeb,@Cristiano,New jersey. Thoughts? 😉 #Ad https://t.co/7icciDe4UR +01/31/2018,Sports_celeb,@Cristiano,#CR7Fragrance the perfect scent for Valentines day! https://t.co/gNubub7SDE +01/31/2018,Sports_celeb,@Cristiano,❤️❤️❤️ https://t.co/Njzma7SeyY +01/30/2018,Sports_celeb,@Cristiano,Denim on denim 👖 living in my CR7 jeans 👌 Get yours now on https://t.co/rIL6OwV0rK @cr7limitless #CR7Denim #CR7Jeans https://t.co/pc6ippbitm +01/30/2018,Sports_celeb,@Cristiano,"Esta noche no te pierdas “En el corazón de la 12”, en RMTV (22:30h) https://t.co/dWGZdy2sd6" +01/29/2018,Sports_celeb,@Cristiano,Glad to win the award of the 懂球帝(All Football) 2017 best player. Thanks to the Chinese fans who have voted on me. https://t.co/B92Os5fbXx +01/27/2018,Sports_celeb,@Cristiano,Vitoria importante. Juntos vamos continuar a ganhar! https://t.co/zpw72rOkZp +01/25/2018,Sports_celeb,@Cristiano,Ánimo equipo. Ánimo madridistas. Aún nos quedan muchas batallas por ganar. https://t.co/xkbCAMYmpk +01/21/2018,Sports_celeb,@Cristiano,Vamos equipo https://t.co/Sh8B2IYZdM +01/20/2018,Sports_celeb,@Cristiano,"You might see the shots I take on the field, but you don’t see what’s behind those results - countless hours of tra… https://t.co/glBAXhkRVO" +01/19/2018,Sports_celeb,@Cristiano,🇵🇹❤️☀️ https://t.co/KUdnB7iR4B +01/19/2018,Sports_celeb,@Cristiano,9️⃣9️⃣! Highest-rated player in the @easportsfifa Team of the Year! Thanks for picking me 🙌 https://t.co/ak34v7CWBe… https://t.co/ZKzJSrkK5C +01/16/2018,Sports_celeb,@Cristiano,Honored to be nominated for the 2017 Laureus Sportsman of the Year Award. This is only possible because of the grea… https://t.co/Q9wJaAxbak +01/15/2018,Sports_celeb,@Cristiano,Wearing my Signature CR7 Steel Shirt 👌 Comfort is the new luxury. Find yours now on https://t.co/rIL6OxcBQk… https://t.co/IZcXuJiYmR +01/11/2018,Sports_celeb,@Cristiano,"The wait is over, my AF1 CR7 is launching today! Now available Globally on https://t.co/hiajNcJH0B, the Nike SNEAKR… https://t.co/XKrNeXk30l" +01/10/2018,Sports_celeb,@Cristiano,Practice 👌 https://t.co/VQ5jqj55cz +01/05/2018,Sports_celeb,@Cristiano,Home away from home #pestanacr7lisbon https://t.co/LB4KiKpK13 +01/03/2018,Sports_celeb,@Cristiano,A new year can mean new goals 🏆. What are yours? #BehindTheResults https://t.co/KuCbOJswpZ +01/02/2018,Sports_celeb,@Cristiano,Quando jogava nas ruas da Madeira e sonhava chegar ao topo não pensei que tiraria uma foto assim. Dedico este momen… https://t.co/vIYRS2pZ5x +12/30/2017,Sports_celeb,@Cristiano,Celebration time…Join me and give a gift for life! Sign up to donate blood and plasma at https://t.co/4kjqXfhE25 https://t.co/yIWgzp5PZG +12/28/2017,Sports_celeb,@Cristiano,Late night chats by the pool #PestanaCR7Funchal https://t.co/sfFLYF011E +12/27/2017,Sports_celeb,@Cristiano,Gala CR7 2017!👌🏽🎉❤️ https://t.co/xnm4cYJYkX +12/27/2017,Sports_celeb,@Cristiano,Wherever. Whenever. Arrive in style. Get the full @cr7limitless look now on https://t.co/rIL6OxcBQk #CR7Denim… https://t.co/fGsG460dCJ +12/26/2017,Sports_celeb,@Cristiano,Estou PRESO a estes bebés lindos ahahahah ❤️❤️❤️ https://t.co/RogaRwDJra +12/24/2017,Sports_celeb,@Cristiano,"Feliz Natal,paz,amor Deus e saúde =FAMÍLIA❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/7PjMs4sdJu" +12/22/2017,Sports_celeb,@Cristiano,We are ready 👌 https://t.co/n8eNd125IM +12/20/2017,Sports_celeb,@Cristiano,I truly value the commitment to make a meaningful difference in people’s lives and this is what #Egyptian_Steel is… https://t.co/L7Awj16PWw +12/19/2017,Sports_celeb,@Cristiano,My new #CR7Fragrance one of my favourite presents to give my friends and family this Christmas! 🎁 https://t.co/2rAwJXQVCI +12/18/2017,Sports_celeb,@Cristiano,🏆 https://t.co/zapVkPkpVa +12/18/2017,Sports_celeb,@Cristiano,Dynamic and united…my new team of young blood and plasma donors are motivated! Like @BETHE1Donor​… #BETHE1Donor… https://t.co/UIth4ErR5X +12/17/2017,Sports_celeb,@Cristiano,🏆 https://t.co/crsE7HUXhK +12/17/2017,Sports_celeb,@Cristiano,Campeones❤️🥇 https://t.co/aPjiyE6NMI +12/16/2017,Sports_celeb,@Cristiano,Proud!!! Champions of the world ⚽️ https://t.co/HpRRty01r2 +12/15/2017,Sports_celeb,@Cristiano,Focused ⚽️ https://t.co/lRAjjkOQTy +12/14/2017,Sports_celeb,@Cristiano,"My Mercurial Quinto Triunfo is out now.👌 Find them at https://t.co/DVqPiekKju +Hurry, they're likely to go even fast… https://t.co/bHJal4yQ8d" +12/13/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/Vog9rm99C2 +12/13/2017,Sports_celeb,@Cristiano,😋 https://t.co/4FWHtcPrwh +12/12/2017,Sports_celeb,@Cristiano,Mercurial Quinto Triunfo. Coming soon. The perfect way to celebrate my fifth 🏆 . 👌 Sign up for a reminder at… https://t.co/TdJ1KAe0OA +12/10/2017,Sports_celeb,@Cristiano,⚽️👌 https://t.co/fTw1QriXnm +12/09/2017,Sports_celeb,@Cristiano,😉❤️ https://t.co/7WQ9lhxneL +12/08/2017,Sports_celeb,@Cristiano,❤️ https://t.co/TsSqSBXg2j +12/08/2017,Sports_celeb,@Cristiano,Be your own rival. 🏆 #CR7 #NikeFootball #PlayFree https://t.co/g5tv70viEP +12/07/2017,Sports_celeb,@Cristiano,"Another dream come true. Unbelievable feeling. Thanks to my family, friends, teammates, coaches and everyone that s… https://t.co/R7QvR8quhI" +12/07/2017,Sports_celeb,@Cristiano,Flying in style!!👌🏽🔛 https://t.co/QvPHhMmRRQ +12/07/2017,Sports_celeb,@Cristiano,"My AF1 CR7’s launch today on the Nike SNEAKRS app! #AF1#CR7 +Go to https://t.co/adIUxXBRvm https://t.co/4Enyjf4dw6" +12/04/2017,Sports_celeb,@Cristiano,Next up! My Air Force 1 CR7 launching on 7th December 🙌🏻 Download the Nike SNEAKRS App to find out more… https://t.co/iCHQ4v3BkK +12/01/2017,Sports_celeb,@Cristiano,"As a thank you, I am offering my fans a flash sale on all my ROC headphones, the perfect holiday gift :) Go to… https://t.co/rFayVjMQla" +11/30/2017,Sports_celeb,@Cristiano,#ThrowbackThursday to my launch event in Madrid! #CR7Fragrance 🙌🏻 https://t.co/qq0cKkSHjC +11/30/2017,Sports_celeb,@Cristiano,Nothing is coincidence 🙌🤗⚽️ https://t.co/VrFSKuC30R +11/28/2017,Sports_celeb,@Cristiano,❤️ https://t.co/9lbC3DzpEm +11/27/2017,Sports_celeb,@Cristiano,Get all your favorite CR7 Denim gear with our Cyber Monday special 👉🏼 https://t.co/yxYL0ZWATi @cr7limitless… https://t.co/UdjPNWHomo +11/26/2017,Sports_celeb,@Cristiano,"The ultimate #SportsBar in town +#PestanaCR7Lisbon #CR7Corner https://t.co/Vezs4LYO2Y" +11/25/2017,Sports_celeb,@Cristiano,The best spot in town with the best company!👌🏽😍 https://t.co/tRPgEQwVf3 +11/23/2017,Sports_celeb,@Cristiano,Get ready for the weekend 🙌CR7 Mens & Boys Collection available on https://t.co/rIL6OwV0rK @CR7limitless #BFCM… https://t.co/kV7H4nfpQW +11/22/2017,Sports_celeb,@Cristiano,"Music is part of my life. It's part of me. ROC is my headphone brand, go to https://t.co/sFd4IXi33N and see them no… https://t.co/Dz2sIa7cAn" +11/22/2017,Sports_celeb,@Cristiano,🙌 https://t.co/kroGIz44oK +11/22/2017,Sports_celeb,@Cristiano,Trabalho feito 👌 https://t.co/8sHMyw6nNc +11/21/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/EFxGK7rY7e +11/20/2017,Sports_celeb,@Cristiano,Os 3 mosqueteiros 👌👌👌 https://t.co/hajkSBkcuT +11/17/2017,Sports_celeb,@Cristiano,"If you missed out on the first drop of my Mercurial CR7 Melhor, you can get them again now in Europe here … https://t.co/JfyN9ao8iF" +11/15/2017,Sports_celeb,@Cristiano,Score goals with me wherever you go with the new FIFA Mobile season 📱🎮⚽ Download for free now!… https://t.co/AqerzrKgTN +11/15/2017,Sports_celeb,@Cristiano,Focado 👌 https://t.co/F2JmxphRm8 +11/12/2017,Sports_celeb,@Cristiano,A Alana Martina acaba de nascer! Tanto a Geo como a Alana estão muito bem! Estamos todos muito felizes! ❤️ https://t.co/nMT4rYc32U +11/12/2017,Sports_celeb,@Cristiano,"Living it up in the CR7 Suite. +#PestanaCR7Lisbon https://t.co/IWHlrHdx0L" +11/12/2017,Sports_celeb,@Cristiano,Genes 👌👌👌 https://t.co/ctVAuXhuzu +11/10/2017,Sports_celeb,@Cristiano,"Vamos preparar bem o Mundial e ajudar as vítimas dos incêndios. Bom jogo, malta! #tudoporportugal https://t.co/haGwRbMwh4" +11/10/2017,Sports_celeb,@Cristiano,Special guest today in training ground 👌👌👌❤️ https://t.co/M0mG9Cueu9 +11/09/2017,Sports_celeb,@Cristiano,#CR7Junior IS LIVE 👖 ⚽ Now available on 👉 https://t.co/rIL6OwV0rK @CR7limitless #PressPlay #CR7Denim https://t.co/MWGzbQXnUu +11/08/2017,Sports_celeb,@Cristiano,Like father like son 😜 We are excited to launch our #CR7Junior denim collection. Now live on 👉… https://t.co/HGlyqVOqKb +11/07/2017,Sports_celeb,@Cristiano,Work done ✈️👌👌👌 https://t.co/ezyjWr70Tf +11/06/2017,Sports_celeb,@Cristiano,"Building projects with green steel is a real innovation. @egyptian_steel +@AhmedAbuHashima https://t.co/3joVu2xNO0" +11/06/2017,Sports_celeb,@Cristiano,"💎👌⚽ +Chapter 5: available on https://t.co/3dYSJ5Yb4C +#mercurial #CR7 @nikefootball https://t.co/mrQYBzOQvB" +11/03/2017,Sports_celeb,@Cristiano,"Learn the secrets to my success at  +https://t.co/4uhloqwgnO  #ROCliveLifeLoud #headphones" +11/03/2017,Sports_celeb,@Cristiano,CLEAR Men: World’s #1 Men Shampoo ☝🏼 https://t.co/YdGkG2tS9f +11/02/2017,Sports_celeb,@Cristiano,✌️ https://t.co/2VgVvtirSb +10/30/2017,Sports_celeb,@Cristiano,"Loving my new CR7 woven shirt 👔Styles for everyday. https://t.co/rIL6OwV0rK 💪@CR7Limitless +#CR7Denim… https://t.co/uAYo3Lka4z" +10/30/2017,Sports_celeb,@Cristiano,Positive mind 👌✌️ https://t.co/UxAxTn5DBq +10/28/2017,Sports_celeb,@Cristiano,"I vote for my hometown, Madeira, as the world’s leading Island Destination 2017. Are you with me? +VOTE HERE:… https://t.co/z2Cjqz1HpO" +10/27/2017,Sports_celeb,@Cristiano,Camo style! 👍🏼 @CR7Underwear #CR7Underwear https://t.co/bkbElQM8X3 +10/27/2017,Sports_celeb,@Cristiano,Good times at my hotel in Lisbon! #PestanaCR7Lisbon https://t.co/ao2BsBKsaD +10/25/2017,Sports_celeb,@Cristiano,"Ensinando aos meus 2 filhos com talento, trabalho e dedicação e a única forma de chegar a ser o número 1❤️❤️🇵🇹 https://t.co/gZIKpydF2p" +10/25/2017,Sports_celeb,@Cristiano,Not bad 11 😉😉😉😉😂😂 https://t.co/Ww0rCnU3Cv +10/24/2017,Sports_celeb,@Cristiano,❤️ https://t.co/60uQL39qpX +10/24/2017,Sports_celeb,@Cristiano,❤️❤️❤️❤️❤️❤️❤️ https://t.co/OTsB8kG1u6 +10/23/2017,Sports_celeb,@Cristiano,"Amazing feeling to have won this award again. Want to dedicate to my family, my friends, my teammates and coaches f… https://t.co/5dOhWOoptL" +10/23/2017,Sports_celeb,@Cristiano,Here we go again!!👍🏽 https://t.co/R6FXROynbh +10/23/2017,Sports_celeb,@Cristiano,"My Air Max 97 CR7’s are available exclusively on the Nike SNEAKRS app today! #Airmax #CR7 +Go to… https://t.co/7XXwYNw60B" +10/21/2017,Sports_celeb,@Cristiano,👌 https://t.co/Ue5mENXs6i +10/19/2017,Sports_celeb,@Cristiano,👌 https://t.co/I3BocNEkMk +07/01/2018,Sports_celeb,@serenawilliams,Ok..... this is going to pentality shots! Who’s watching the football (soccer) #WorldCup2018 +07/01/2018,Sports_celeb,@serenawilliams,"1 day until #Wimbledon + +In this moment, 22 was the greatest feeling, but ultimately getting to 23 was even better.… https://t.co/uwGy2rfKWK" +06/30/2018,Sports_celeb,@serenawilliams,"2 days until #Wimbledon + +Just in case no one’s told you yet today, I want to remind you that you are greater than y… https://t.co/eN64JqX6FM" +06/29/2018,Sports_celeb,@serenawilliams,"3 days until #Wimbledon + +Mood for the weekend. +Mood for Wimbledon. +One giant leap for womankind. https://t.co/jBc1rm1YFh" +06/28/2018,Sports_celeb,@serenawilliams,"4 days until #Wimbledon + +Would you believe me if I told you the girl on the left always dreamed of becoming the wo… https://t.co/9fn7MDRy8N" +06/28/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Wimbledon ready 🎾 Introducing the limited edition ‘S’ London tee, exclusively available at https://t.co/e2LGLxv8Nh +Let’s ta…" +06/27/2018,Sports_celeb,@serenawilliams,🖐🏾 days until #Wimbledon https://t.co/C7RAAwGsrh +06/27/2018,Sports_celeb,@serenawilliams,Excited to be on the August cover of @InStyle…an amazing publication that captures all women so beautifully in all… https://t.co/bgZ4YZE80W +06/26/2018,Sports_celeb,@serenawilliams,"6 days until #Wimbledon + +15 years ago a boy from Switzerland and a girl from the US, both 21, shared the stage at W… https://t.co/ydkhfL2Ia5" +06/25/2018,Sports_celeb,@serenawilliams,"7 days until #Wimbledon + +It's hard to believe it's been 16 years since my first title in London. What I remember mo… https://t.co/MofToguV7f" +06/24/2018,Sports_celeb,@serenawilliams,Some more fun ways to wear @ShopSerena. I get so excited to see the looks you come up with so please keep taking pi… https://t.co/k85u545Yu2 +06/24/2018,Sports_celeb,@serenawilliams,LOVE seeing you guys in your @serena pieces!! Please keep sharing these pics and tagging us! #BeSeenBeHeard… https://t.co/VRzcis1Gcu +06/23/2018,Sports_celeb,@serenawilliams,RT @alexisohanian: That's the one. My babygirl needs to know I'll always be there for her; and her papa got betrayed by his jealous busines… +06/23/2018,Sports_celeb,@serenawilliams,@KenyaMoore I tried to keep myself insanely busy +06/23/2018,Sports_celeb,@serenawilliams,Watched Coco with @alexisohanian for the first time. I looked over in the middle of the film and he was sobbing lik… https://t.co/MDeiHFh4Zj +06/21/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: https://t.co/Cl6lkkBbmp +06/21/2018,Sports_celeb,@serenawilliams,"Yesterday in NYC, with my partners @PurplePurse, I was proud to help kick off a national street art campaign to mak… https://t.co/exdPBJHJSt" +06/18/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: @rstuhlmann looking amazing in our Varsity Zipper dress! Keep tagging and sharing how you’re wearing Serena. We hear and se… +06/17/2018,Sports_celeb,@serenawilliams,#SerenaShareSunday here are some of my fav pics from this week. Tag @ShopSerena to be featured next week!!!! https://t.co/9okcNtjXas +06/14/2018,Sports_celeb,@serenawilliams,I will be live on instagram @ShopSerena account it’s @Serena on Instagram... who’s joining? +06/14/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: .@serenawilliams is going LIVE tonight on Instagram at 8pm EST and she wants to hear how YOU are seen and heard. Drop your… +06/13/2018,Sports_celeb,@serenawilliams,"As Board Chairwoman, I'm excited to celebrate @oath's 1st anniversary by giving back to the community and supportin… https://t.co/xAMkxEOQLS" +06/12/2018,Sports_celeb,@serenawilliams,"At first, I was so uncomfortable with the look and feel of my scar. Then I discovered @neodyneembrace and now my sc… https://t.co/tK0rsxnPgN" +06/12/2018,Sports_celeb,@serenawilliams,Goodnight world.... yes it’s 8:39pm and I’m going to bed. Because when I wake I’ll have a beautiful smart strong su… https://t.co/JUg6F24505 +06/08/2018,Sports_celeb,@serenawilliams,"Excited to see the best of the best show what they’ve got! #MadeDefiant +Watch the whole @beatsbydre film here:… https://t.co/dl0ItPJ3JP" +06/08/2018,Sports_celeb,@serenawilliams,The @leroyalmonceau has been such a joy. They have the coolest mirrors and decor! Inspiring decor https://t.co/cnYk4QUrFa +06/03/2018,Sports_celeb,@serenawilliams,That @LeRoyalMonceau life https://t.co/sCUukE7fZa +06/02/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Saturday’s with the squad. Shop our Signature S Bralette and high waisted brief at https://t.co/oR9OUKEWG9 💋 +#BeSeenBeHear…" +06/02/2018,Sports_celeb,@serenawilliams,"Never basic 😏 Shop my Signature S Bralette and high waisted brief at https://t.co/4tHKDgNgX9 +#BeSeenBeHeard https://t.co/a3aE60bpZV" +06/01/2018,Sports_celeb,@serenawilliams,"When I needed the best support off the court for my best performance on the court, @neodyneembrace rose to the chal… https://t.co/rJrM2XhhkN" +06/01/2018,Sports_celeb,@serenawilliams,I love my partner @Venuseswilliams https://t.co/nICwQOae1l +06/01/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: Always stay reppin’. Shop the first of many S tees to come. #BeSeenBeHeard https://t.co/oR9OUKEWG9 https://t.co/teHo6EgyTH +05/30/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: The wait is over! @ShopSerena is officially here. + +Be the first to rep S. #BeSeenBeHeard👇🏻👇🏼👇🏽👇🏾👇🏿 + +https://t.co/oR9OUKEW…" +05/30/2018,Sports_celeb,@serenawilliams,#BeSeenBeHeard https://t.co/4tHKDgNgX9 https://t.co/XHb6gp5Nhg +05/30/2018,Sports_celeb,@serenawilliams,Never stop believing in yourself. You’re worth it. https://t.co/8lzFQeDcD2 +05/30/2018,Sports_celeb,@serenawilliams,"Today, I am excited to introduce @ShopSerena, my own online shop: https://t.co/4tHKDgNgX9 https://t.co/uoY0EvurBz" +05/30/2018,Sports_celeb,@serenawilliams,"23 Grand Slam titles later, I assembled my power team and we got to work. We designed and we planned. I wanted to b… https://t.co/SyicbS2Y6W" +05/30/2018,Sports_celeb,@serenawilliams,"Here I was, a spokeswoman for women, telling them to never give up and believe in themselves when no one else does.… https://t.co/1pqcuFsYYj" +05/30/2018,Sports_celeb,@serenawilliams,"One day, I was encouraging my best friend to invest in herself and pursue a dream of hers. A light bulb went off wh… https://t.co/EUlWccjiBm" +05/30/2018,Sports_celeb,@serenawilliams,"15 years of false starts and people telling me “no” was frustrating, but also made me more determined. If you know… https://t.co/0MxWZTtJyN" +05/30/2018,Sports_celeb,@serenawilliams,Every time I would go into a department store to present a collection it would always end up with - we love it but we are going to pass... +05/30/2018,Sports_celeb,@serenawilliams,I tried many times to align with people who could help me get things off the ground while I played tennis worked wi… https://t.co/elDH4tPuSt +05/30/2018,Sports_celeb,@serenawilliams,"That was 2001. I had a vision to create a fashion line unrelated to tennis, but soon realized the complexities of m… https://t.co/UaoWIEj2aq" +05/30/2018,Sports_celeb,@serenawilliams,"They say life is about timing. I learned this lesson at age 18, when I chose to play a light tennis schedule becaus… https://t.co/3x334u4XRb" +05/30/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Strong. Sexy. Sophisticated. + +Be the first to rep Serena tomorrow! 👆🏻👆🏼👆🏽👆🏾👆🏿#BeSeenBeHeard + +https://t.co/oR9OUKEWG9 https:…" +05/29/2018,Sports_celeb,@serenawilliams,"Catsuit anyone? For all the moms out there who had a tough recovery from pregnancy—here you go. If I can do it, so… https://t.co/wycharHRC0" +05/25/2018,Sports_celeb,@serenawilliams,"It’s National Heat Awareness Day, grab your @missionathlete MAX cooling towel and stay cool and safe all summer lon… https://t.co/SNW98d0CJ3" +05/23/2018,Sports_celeb,@serenawilliams,@HBO tonight #beingserena don’t miss this epic episode +05/23/2018,Sports_celeb,@serenawilliams,New shoe for Roland Garros Blazer Mid SW Went -to La Grande Arche in Paris with @nikecourt and surprised some reall… https://t.co/IE7QBE9nvw +05/21/2018,Sports_celeb,@serenawilliams,And...... just like that anti doping is here ....again... second time this week. proud to participate to keep the… https://t.co/ts5QfVlMp1 +05/20/2018,Sports_celeb,@serenawilliams,I just put Olympia to sleep.... and I am already looking at pictures of her missing her. #beingserena Wednesday’s on @HBO 10pm +05/20/2018,Sports_celeb,@serenawilliams,Little known fact: I often wear sneakers under my evening gown. These @maisonvalentino @pppiccioli gave to me last… https://t.co/wS7psHu9t7 +05/19/2018,Sports_celeb,@serenawilliams,Thank you Pierpaolo for making me look special on this special evening. @MaisonValentino https://t.co/w2m6lEMyST +05/19/2018,Sports_celeb,@serenawilliams,"RT @Essence: If an employer/school ever makes a comment about your twits, braids, or cornrows reply with, “if it’s good enough for a #Royal…" +05/19/2018,Sports_celeb,@serenawilliams,Ready for my friend’s wedding. #beingserena @alexisohanian https://t.co/PSIYvpXlaV +05/19/2018,Sports_celeb,@serenawilliams,IG- instagram +05/19/2018,Sports_celeb,@serenawilliams,Check out my IG stories today. I’m getting ready for my friends wedding https://t.co/Y3Xy1JdhM6 +05/19/2018,Sports_celeb,@serenawilliams,Follow my IG stories today to see me getting… https://t.co/ZKiAVJNftr +05/18/2018,Sports_celeb,@serenawilliams,Just sitting on this incredibly #rochebobois couch. I’m obsessed with them. I could have passed out for hrs but wor… https://t.co/zbKbTRirAm +05/16/2018,Sports_celeb,@serenawilliams,Tonight!!!! @hbo #beingserena 10pm +05/15/2018,Sports_celeb,@serenawilliams,@ForeverKhadijah @AqueelahR @LEGOLAND_CA Aww I’m sorry. Love you sis +05/15/2018,Sports_celeb,@serenawilliams,#beingserena @hbo Wednesday nights 10pm https://t.co/mz8KnVf5Fi +05/14/2018,Sports_celeb,@serenawilliams,My baby has a Mohawk. I love it. Watch #beingserena on @HBO this Wednesday at 10pm part 3. +05/11/2018,Sports_celeb,@serenawilliams,I just put her to bed.... she did not wrestle as hard. I kinda missed it. I miss her. #beingserena @hbo wednesday N… https://t.co/HKt8WumvNf +05/11/2018,Sports_celeb,@serenawilliams,I’m very excited to play in San Jose for the first time at the @MubadalaSVC this summer. Looking forward to seeing… https://t.co/K4StiTQGus +05/11/2018,Sports_celeb,@serenawilliams,#beingserena @hbo https://t.co/4QOYN7jQ2K +05/09/2018,Sports_celeb,@serenawilliams,Last night after bath time with Olympia I had to put on her PJ’s We wrestled for 20 mins. She was flipping like a f… https://t.co/poo7R0OdeU +05/09/2018,Sports_celeb,@serenawilliams,@BrooklynDecker What??? Lol +05/09/2018,Sports_celeb,@serenawilliams,It’s back on tonight! 10pm #beingserena who’s watching part two? https://t.co/UKG3HothlP +05/08/2018,Sports_celeb,@serenawilliams,Guess what everyone. #BeingSerena is back on @hbo tomorrow night. Part 2.. you do not want to miss this episode! +05/07/2018,Sports_celeb,@serenawilliams,Olympia ice skates better than @alexisohanian #beingserena +05/03/2018,Sports_celeb,@serenawilliams,Sometimes I serve on the moon. How did you like #beingserena on. Hbo last night? Are you ready to tune in next week… https://t.co/nplsMWXam7 +05/02/2018,Sports_celeb,@serenawilliams,Mama bear and baby cub #beingSerena @hbo https://t.co/lX88EZYRNp +05/02/2018,Sports_celeb,@serenawilliams,@alexisohanian Dats ma Baby!!!!!!!!!! +05/02/2018,Sports_celeb,@serenawilliams,I had so much fun thank you all for he great questions. Be sure to tune in tonight on @hbo #beingserena starts TONIGHT! 10pm +05/02/2018,Sports_celeb,@serenawilliams,I feel doubled in the air... do you?? #beingserena https://t.co/nRyCBKPdxa +05/02/2018,Sports_celeb,@serenawilliams,Yes I love Disney. I’m their biggest fan. Can’t wait to take Olympia there every weekend. It’s the reason I live in… https://t.co/HjMtTw8T5V +05/02/2018,Sports_celeb,@serenawilliams,.@meganKarmstrong #beingserena https://t.co/7NFf25Q971 +05/02/2018,Sports_celeb,@serenawilliams,She never quits. And I mean NEVER quits. I love it #beingserena https://t.co/uE2gYbmxWH +05/02/2018,Sports_celeb,@serenawilliams,Patience.... and how to say the word husband. Lol #beingserena https://t.co/3LZYYE6ufN +05/02/2018,Sports_celeb,@serenawilliams,The non meat stuff??? I can eat that!! #beingserena https://t.co/ABpueYFINz +05/02/2018,Sports_celeb,@serenawilliams,I just get into a zone... like I can’t describe it. It just come over my whole self. It’s like I become a diff pers… https://t.co/iV7BiOVUGf +05/02/2018,Sports_celeb,@serenawilliams,Honestly prob venus. She’s better more natural than me. #beingserena https://t.co/y9kwgj1zLf +05/02/2018,Sports_celeb,@serenawilliams,.@bowden_saint #beingserena https://t.co/6GAdqNdtUR +05/02/2018,Sports_celeb,@serenawilliams,I can’t say because if I have more kids they may have those names #beingserena https://t.co/v44hrRhPKR +05/02/2018,Sports_celeb,@serenawilliams,Accepting the bad with the good and not deleting the bad!! It’s really real and open #beingserena https://t.co/4oGEmBfYws +05/02/2018,Sports_celeb,@serenawilliams,I need one. I’ve been asking all my friends?? Help please!!!! #beingserena https://t.co/mYmCvhPazv +05/02/2018,Sports_celeb,@serenawilliams,@CaroWozniacki of course!! #beingserena https://t.co/wxFm5hy2Wf +05/02/2018,Sports_celeb,@serenawilliams,Again anything @iamcardib #beingserena https://t.co/wGfqzwZdcK +05/02/2018,Sports_celeb,@serenawilliams,It’s funny you ask I’m working on that myself. Anyone out there have tips? @milosraonic #beingserena https://t.co/nmX7rtZ3lO +05/02/2018,Sports_celeb,@serenawilliams,Viewers can expect me to meet @OlympiaOhanian for the first time!!! How exciting #beingserena https://t.co/WiQxT6UOze +05/02/2018,Sports_celeb,@serenawilliams,Anything from CardiB #beingserena https://t.co/BOX8VprGQW +05/02/2018,Sports_celeb,@serenawilliams,Really just getting to see the final product. And seeing the project come to life. That was and is rewarding.… https://t.co/SbCmMDPi9B +05/02/2018,Sports_celeb,@serenawilliams,I don’t wanna say..... #beingserena https://t.co/o5pJ8e1RT3 +05/02/2018,Sports_celeb,@serenawilliams,It keeps changing. Now I would say a biz woman. Ceo/founder of course #beingserena https://t.co/18OZBSwQNh +05/02/2018,Sports_celeb,@serenawilliams,The physical. What u put ur body through for 9months of pregnancy and you have2 suddenly come back it’s a lot of ph… https://t.co/GO6W01wbqA +05/02/2018,Sports_celeb,@serenawilliams,Hummmmm lol let’s just say a lot of hard court tournaments leading up to the grand slam finale #beingserena https://t.co/wW0P6UD6jH +05/02/2018,Sports_celeb,@serenawilliams,I was afraid. I did not.... hey wait watch the show lol #beingserena https://t.co/OtJ2Klvgg6 +05/02/2018,Sports_celeb,@serenawilliams,Love you thanks!!! #beingserena https://t.co/MPOIVtBwks +05/02/2018,Sports_celeb,@serenawilliams,Honestly about a week later.... but I did not accept it or believe it until we got married lol. @alexisohanian https://t.co/gx5BMrieKE +05/02/2018,Sports_celeb,@serenawilliams,Run my fashion line and VC #beingserena https://t.co/1CFcacg1is +05/02/2018,Sports_celeb,@serenawilliams,I do! But I need a good show? Help recommend one to me please?? #beingserena https://t.co/4hwvxRSV6Y +05/02/2018,Sports_celeb,@serenawilliams,If Leo would like that!! Haha I’m not sure if Olympia will choose tennis but we will see!!! @vika7 #beingserena https://t.co/IDWVfF95g5 +05/02/2018,Sports_celeb,@serenawilliams,Olympia my parents my sisters #beingserena https://t.co/GntZ9oMnlI +05/02/2018,Sports_celeb,@serenawilliams,Formula one and ice skating ⛸ #beingserena https://t.co/5oCKm4Tqy1 +05/02/2018,Sports_celeb,@serenawilliams,Starting my fashion brand launching soon. AND launching my VC firm.. Interested more to come on both in the future… https://t.co/CejbtKtx6z +05/02/2018,Sports_celeb,@serenawilliams,Ugh you are tough. I would say 23 orrrrr I dunno 22? I can’t really remember the rest 🙈🙈🙈 #beingserena https://t.co/aILzecn8Gw +05/02/2018,Sports_celeb,@serenawilliams,When my coach. @PatrickMouratoglou asked me why I only wanted 18 and told me to think and dream bigger. Thanks Patr… https://t.co/y2B629Ypln +05/02/2018,Sports_celeb,@serenawilliams,Well I’m thinking popcorn (it’s my fav) and watermelon slices. 🤷🏾‍♀️ #beingserena https://t.co/M3PFqJzIhu +05/02/2018,Sports_celeb,@serenawilliams,There is more much more that can be done should be done and eventually will be done. #beingserena https://t.co/f4u7oplLX4 +05/02/2018,Sports_celeb,@serenawilliams,Self doubt is fear. Fear breeds failure... throw that self doubt in the garbage. ignore and disassociate with negat… https://t.co/egbnhXioZm +05/02/2018,Sports_celeb,@serenawilliams,Hummmmmmm I dunno there is one on the street my dad lives on a truck I love that taco truck maybe there.… https://t.co/VQenFxupIX +05/02/2018,Sports_celeb,@serenawilliams,Just a ton of hard work really. It has to be your life. #beingserena https://t.co/HeQV0C8ufX +05/02/2018,Sports_celeb,@serenawilliams,I would transport myself. Across country. I hate flying. It’s so long and takes a lot of time. So this seems a lot… https://t.co/C6q6EymZK6 +05/02/2018,Sports_celeb,@serenawilliams,It’s a small world but once you can get in there are friends and there are plenty of loving caring helping advocate… https://t.co/d2BaiyP3e8 +05/02/2018,Sports_celeb,@serenawilliams,What a pleasure to tweet to you. An honor really but my fav depends I like slow love songs or 80’s rock songs!!… https://t.co/UeIGzIExJU +05/02/2018,Sports_celeb,@serenawilliams,I can’t choose so I have to say all of them. Really all of them are super special #beingserena https://t.co/AGimv7pZ0q +05/02/2018,Sports_celeb,@serenawilliams,.@SWBlade #beingserena https://t.co/NwTbCjYK5M +05/02/2018,Sports_celeb,@serenawilliams,Become the avatar of course🤺 #beingserena https://t.co/tcGrOUj4Hc +05/02/2018,Sports_celeb,@serenawilliams,If I can be any marvel character I would be the Haulk I think you couldn’t be Black widow and @jsmoll is clearly Th… https://t.co/Bak69YIAG3 +05/02/2018,Sports_celeb,@serenawilliams,Medicare Mackie @MackieShilstone is the best we hope to hit the studio as soon as I get back from Europe LOL… https://t.co/mWkpQFgPOt +05/02/2018,Sports_celeb,@serenawilliams,As soon as I can find my superpowers #beingserena https://t.co/vw3zCPzy1y +05/02/2018,Sports_celeb,@serenawilliams,.@Waitin4theBeast https://t.co/nsSltb1rVA +05/02/2018,Sports_celeb,@serenawilliams,I don’t have one. I need one for our one year anniversary any suggestions?? https://t.co/KtKrzPW9nc +05/02/2018,Sports_celeb,@serenawilliams,Because you are always stealing my orthotics and socks and ur always late 🤷🏾‍♀️ #beingserena https://t.co/n9MviYTyqO +05/02/2018,Sports_celeb,@serenawilliams,"I wish I had her return, she has an unbelievable return. And Chip is much better than Alexis. #beingserena https://t.co/ZaP4SVOB9R" +05/02/2018,Sports_celeb,@serenawilliams,"I had never thought about it, but maybe I’ll write one with Olympia #beingserena https://t.co/ePaN5OH3jN" +05/02/2018,Sports_celeb,@serenawilliams,Humility. To always have a humble heart. #beingserena https://t.co/0AEzzKKtzJ +05/02/2018,Sports_celeb,@serenawilliams,"Chips. Any type of chip - I’m a chip connoisseur. One flavour at a time, but boy... #beingserena https://t.co/ddHWuD7foH" +05/02/2018,Sports_celeb,@serenawilliams,Ace. Because there’s just something so powerful about it. All my aces at the Olympics - particularly the gold medal… https://t.co/sX53bsR1kn +05/02/2018,Sports_celeb,@serenawilliams,"All the stuff I do off the court with my philanthropy, trying to inspire, help and motivate people. Rather that tha… https://t.co/pRilmcdpxq" +05/02/2018,Sports_celeb,@serenawilliams,Ice. It would be really fast! And with really cute sequined ice skater outfits. #beingserena https://t.co/KhyRleDUgN +05/02/2018,Sports_celeb,@serenawilliams,Myself. I’m motivated and inspired by my personal goals and that’s the only reason I’m still continuing.… https://t.co/RDOpjlkLNP +05/02/2018,Sports_celeb,@serenawilliams,"Every day is my favorite moment, just breastfeeding was by far one of my favorite moments. Just every day.… https://t.co/wNoZoX7pNS" +05/02/2018,Sports_celeb,@serenawilliams,"I’d play tennis, because everything in my life is here because of it, I don’t know where I’d be without it and I li… https://t.co/6yDyIVnYdo" +05/02/2018,Sports_celeb,@serenawilliams,"I don’t think he’s jealous, he’s more in ignore mode. She loves him, all she wants to do is play but he doesn’t wan… https://t.co/ArND8VnrNG" +05/02/2018,Sports_celeb,@serenawilliams,Moana because I watched it when I was pregnant and so she watched it with me. And The Little Mermaid ride!… https://t.co/1rRbBmFv00 +05/02/2018,Sports_celeb,@serenawilliams,Hey everyone ask me anything in celebration of my premiere epsoide of being Serena on @hbo tonight! Add #beingserena hashtag for me2reply +05/02/2018,Sports_celeb,@serenawilliams,Me: you really like my leopard print shoes? Him: yes check out moments like… https://t.co/kXrVjR6Ij2 +05/02/2018,Sports_celeb,@serenawilliams,"My Q&A starts at 12PM PST/3PM EST, last call for questions! #BeingSerena" +05/01/2018,Sports_celeb,@serenawilliams,One more day until the premiere of my new show on @HBO Being Serena. Today I… https://t.co/7DKHWeuGqv +05/01/2018,Sports_celeb,@serenawilliams,"I'm going to be doing a Twitter Q&A tomorrow in honor of the premiere of my HBO series, Being Serena. Send me your… https://t.co/iINbdEq3i5" +04/30/2018,Sports_celeb,@serenawilliams,"Watch me on @TheView talk about @HBO Being Serena, how @neodyneembrace helped me with my come back and more. I had… https://t.co/XzHkvsap81" +04/30/2018,Sports_celeb,@serenawilliams,@bonappetit Thank you!!! +04/30/2018,Sports_celeb,@serenawilliams,I just bathed her and put her I bed. Now I feel lonely and like crying cause I miss her so much. When does that go… https://t.co/IfsoNURM0N +04/30/2018,Sports_celeb,@serenawilliams,Hey everyone. Can someone out there teach me how to Mack cacio and Pepe pasta? Thanks in advance!!!! Post a link pleaseeeee +04/30/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/ZDnA9sCFeg +04/29/2018,Sports_celeb,@serenawilliams,I can’t sleep when she cries or is upset +04/29/2018,Sports_celeb,@serenawilliams,Singing @SmashingPumpkin bullet with butterfly wings on Selexis day with @alexisohanian I’m just… https://t.co/YqB9baOtHJ +04/29/2018,Sports_celeb,@serenawilliams,@kmcme17 Wait what?? +04/29/2018,Sports_celeb,@serenawilliams,Changing @OlympiaOhanian diaper has gotten to be so challaning I need a Dramamine afterwards! She’s a mover!!! +04/28/2018,Sports_celeb,@serenawilliams,That side eye to Jill https://t.co/VRSXubEEMM +04/28/2018,Sports_celeb,@serenawilliams,Cheers https://t.co/plfrV8yqAq +04/27/2018,Sports_celeb,@serenawilliams,I’m not a fan of decorative pillows. They look pretty but if you are exhausted (me every night) they are a pain to… https://t.co/PZdGTyakwZ +04/27/2018,Sports_celeb,@serenawilliams,Once a year @alexisohanian and I have what we call Selexis day. It can fall on any day out of… https://t.co/0UTmnKVKlS +04/26/2018,Sports_celeb,@serenawilliams,With the handsome @alexisohanian https://t.co/Qu3yLipeSQ +04/26/2018,Sports_celeb,@serenawilliams,Was great chatting with you Robin! @robinroberts @GMA https://t.co/LGL3NHBp41 +04/26/2018,Sports_celeb,@serenawilliams,My ladies. My loves. @gigihadid bellahadid Thanks for the support. Love you two dearly. And that… https://t.co/jc7YorkAa4 +04/26/2018,Sports_celeb,@serenawilliams,Being Serena Premire last night @hbo https://t.co/tmTgGqqd3M +04/26/2018,Sports_celeb,@serenawilliams,@RenasArmy @alexisohanian Gosh wow I still don’t remember it. Crazy +04/25/2018,Sports_celeb,@serenawilliams,Casually jumped into a ball pit. #beingSerena. @Hbo may 2 https://t.co/JOAer5fkl9 +04/25/2018,Sports_celeb,@serenawilliams,I’ve been so good... but does anyone know any good beignet places in nyc? +04/21/2018,Sports_celeb,@serenawilliams,Filling out paper work for @olympiaohanian Mom is a Jock dads a Nerd #beingserena coming to @HBO… https://t.co/0M69trtt4N +04/21/2018,Sports_celeb,@serenawilliams,@alexisohanian @vr_drifter I hope you are having th best day ever #selexis day +04/19/2018,Sports_celeb,@serenawilliams,If I were proactive I would get up and start packing. Instead I’m gonna turn on the golden girls. #beingserena @hbo #may5 +04/18/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/PtRlfCrPcx +04/16/2018,Sports_celeb,@serenawilliams,Night night +04/15/2018,Sports_celeb,@serenawilliams,@geniebouchard @bri_sull Right???!!!!! +04/15/2018,Sports_celeb,@serenawilliams,Sooooo I need a dollar lol I had to ask my friend @bri_sull for a dollar to pay for my Valet parking. #whoCarriesCash ? I don’t!! +04/13/2018,Sports_celeb,@serenawilliams,I’m not perfect. But I’m perfectly Serena. #beingSerena @hbo https://t.co/L6c9Wshjk9 +04/13/2018,Sports_celeb,@serenawilliams,I need some clones. One to play tennis. One to sit on company boards. One to design my new fashion line. One to des… https://t.co/7qBWsKgorA +04/12/2018,Sports_celeb,@serenawilliams,Sitting here waiting on @OlympiaOhanian to wake up +04/12/2018,Sports_celeb,@serenawilliams,@alexisohanian @TOMFORD @ElisabethGarvin Maybe a reg tie? U always do bow tie +04/11/2018,Sports_celeb,@serenawilliams,Excited to share the trailer for my upcoming documentary series #BeingSerena – starting May 2 on @HBO. Check it out! https://t.co/ibGW5bIEeB +04/10/2018,Sports_celeb,@serenawilliams,Great to see @starbucks and their commitment to pay equity. #EqualPay https://t.co/yuOfvckcAH +04/10/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/HKxdXz3dun +04/09/2018,Sports_celeb,@serenawilliams,Soooooo every time I have to go to the bathroom at night I think a snake is going to bite me. So I always leave the lights on. #beingserena +04/06/2018,Sports_celeb,@serenawilliams,Mother may I? https://t.co/2OJaCi3B03 +04/06/2018,Sports_celeb,@serenawilliams,I never understood why on chopped there is only one ice cream maker. #beingSerena +04/05/2018,Sports_celeb,@serenawilliams,"My story. My words. My @HBO documentary series, #BeingSerena, starting May 2. Find out more: https://t.co/kmiVBe45ev https://t.co/0INKTYzJiu" +04/05/2018,Sports_celeb,@serenawilliams,She really does need pockets. Who agrees with me she can keep a snack in them! https://t.co/3KwLlziZTT +04/05/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/4jPKf6g0Xs +04/05/2018,Sports_celeb,@serenawilliams,"RT @StevieWonder: On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for his dre…" +04/05/2018,Sports_celeb,@serenawilliams,50 years ago on April 4th Dr. King's life was cut short but his dream still lives. My dream is equal opportunities… https://t.co/I193Vou5PZ +04/03/2018,Sports_celeb,@serenawilliams,SWIPE RIGHT: Superhero by day family man at night. @alexisohanian @olympiaohanian https://t.co/GWTwHeEoTj +04/01/2018,Sports_celeb,@serenawilliams,Her first memorial last night @venuseswilliams https://t.co/WdUN6qx62G +03/28/2018,Sports_celeb,@serenawilliams,You inspire me to #EmbraceAmbition @Venuseswilliams . Join the @ToryBurchFdn movement & celebrate the women who hav… https://t.co/OLlfPQyj0G +03/26/2018,Sports_celeb,@serenawilliams,My @hbo documentary called Being Serena premieres May 2. I can't wait to share what I have been… https://t.co/FFB8PBmhKR +03/26/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/oaOdzlvNUC +03/25/2018,Sports_celeb,@serenawilliams,Our sons and daughters shouldn’t fear for their lives while at school. I’m proud of all the young people who are pe… https://t.co/FwQxi872AA +03/24/2018,Sports_celeb,@serenawilliams,@AudemarsPiguet Stunning +03/24/2018,Sports_celeb,@serenawilliams,"RT @AudemarsPiguet: The winter landscapes of the Vallée de Joux. Forever an inspiration for our watchmakers. #RoyalOakConcept +https://t.co/…" +03/24/2018,Sports_celeb,@serenawilliams,Is it normal to have a super low everything your baby goes to sleep? I feel like crying. I miss her and I can't wai… https://t.co/bTg3Rd3DMV +03/24/2018,Sports_celeb,@serenawilliams,Olympia hates naps. I'm trying to be a strong parent but I keep cracking +03/23/2018,Sports_celeb,@serenawilliams,Why is it that pimples on the eyebrows hurt the most? 🤔 +03/22/2018,Sports_celeb,@serenawilliams,4 months ago I could not walk to my mailbox... but I will keep going forward and I'll get there.… https://t.co/nH9Y02AOnO +03/21/2018,Sports_celeb,@serenawilliams,"As my next chapter begins, I’m ready to see how far I can go. @LincolnMotorCo #ad https://t.co/2UFD9TkaMy" +03/20/2018,Sports_celeb,@serenawilliams,@AudemarsPiguet Love this! +03/20/2018,Sports_celeb,@serenawilliams,@dinethuw_811 Got it thanks!!! It's been wracking my brain for so long +03/20/2018,Sports_celeb,@serenawilliams,@scotty_13_ @dinethuw_811 Ohhhhhh ok got it +05/29/2018,Sports_celeb,@YaoMing,Congratulations to the Rockets on an excellent season. This is a great team with a bright future. Houston should be proud. 🚀 +03/31/2018,Sports_celeb,@YaoMing,RT @WildAid: 70 species of #sharks are at risk of extinction. We work with @YaoMing & other ambassadors to reduce demand for shark fin soup… +03/31/2018,Sports_celeb,@YaoMing,@YaoFamilyWines Happy Easter everyone! +03/31/2018,Sports_celeb,@YaoMing,Congratulations to my friend @SteveNash and the rest of the 2018 HOF class! +01/06/2018,Sports_celeb,@YaoMing,https://t.co/nt3gRm9edj +12/07/2017,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: JUST RELEASED! 2016 Yao Ming Napa Valley Brut Sparkling Wine. Limited edition, only available at our tasting room and o…" +11/02/2017,Sports_celeb,@YaoMing,Houston. 👊🏼 +10/22/2017,Sports_celeb,@YaoMing,Houston. 👊🏼 +10/13/2017,Sports_celeb,@YaoMing,Sending condolences to the victims of the Napa fires & gratitude to the firefighters and everyone working to save the beautiful Napa Valley. +08/30/2017,Sports_celeb,@YaoMing,My thoughts are with the people of Houston today. Wishing everyone wellness and safety. Stay safe and stay strong Houston. +06/21/2017,Sports_celeb,@YaoMing,"RT @PrincessCruises: We're honored to announce that basketball legend @yaoming and his wife, Ye Li, will officially name #MajesticPrincess…" +05/18/2017,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: It's #WineWednesday and our #Spring Newsletter is on our #blog! Read about the latest, including our new partnership wi…" +02/03/2017,Sports_celeb,@YaoMing,RT @HoustonRockets: .@YaoMing's first 3-pointer! We are retiring #11 to the rafters tonight at halftime. #ThankYouYao https://t.co/hTjSdcNW… +02/03/2017,Sports_celeb,@YaoMing,Thank you @HoustonRockets fans for everything! Honored to have my #11 jersey retired today. A Rocket for life.… https://t.co/WH12DPlpy5 +02/02/2017,Sports_celeb,@YaoMing,"No, Coach Van Gundy, the honor was all mine. https://t.co/V1X56cK3hI" +02/02/2017,Sports_celeb,@YaoMing,"RT @PlayersTribune: As the @HoustonRockets retire @YaoMing's jersey, Jeff Van Gundy remembers his former center's greatness: https://t.co/Z…" +11/13/2016,Sports_celeb,@YaoMing,"Did you know that illegal wildlife trade trails only gun, drug and human trafficking? When the buying stops the killing can to. @WildAid" +10/20/2016,Sports_celeb,@YaoMing,Thanks to Forbes For the kind words! https://t.co/lUFsLha9Of +09/29/2016,Sports_celeb,@YaoMing,@BearGrylls @WildAid @YaoFamilyWines I will be ready! +09/29/2016,Sports_celeb,@YaoMing,Always good to be in Napa Valley during harvest. @YaoFamilyWines https://t.co/HEDmErNr7y +09/12/2016,Sports_celeb,@YaoMing,Thank you for my birthday wishes. I'm trying to stay young so I am now on Instagram. https://t.co/Vd1bYYwY0M +09/11/2016,Sports_celeb,@YaoMing,The best moments this week were with old friends like @officialmutombo @BillWalton @HoustonRockets CD coach Rudy & coach Van Gundy. #blessed +09/11/2016,Sports_celeb,@YaoMing,It was great to see u again @alleniverson @SHAQ & @SherylSwoopes . I am honored to be part of the class of 2016 with such greatness. +09/10/2016,Sports_celeb,@YaoMing,RT @JLin7: Congrats to @YaoMing on the Hall of Fame!! https://t.co/LOCfyckNHs +09/10/2016,Sports_celeb,@YaoMing,Thank you Hall of Fame for the private tour today. It was incredible to see such history. https://t.co/arGN8tyEJh +09/10/2016,Sports_celeb,@YaoMing,RT @PlayersTribune: READ: The full transcript of @YaoMing’s 2016 Hall of Fame speech. https://t.co/jZubWCEL5r +09/09/2016,Sports_celeb,@YaoMing,Thank you to my Rocket brother @SteveFranchise3 in the great @PlayersTribune story on a very special night. https://t.co/ly6ByxlLf4 +08/24/2016,Sports_celeb,@YaoMing,"Join me at the Hall of Fame ceremony next month in Springfield, MA. And help raise money for two wonderful causes. https://t.co/pcdjQ8bX3l" +08/21/2016,Sports_celeb,@YaoMing,RT @PlayersTribune: One picture taught former @HoustonRockets center @YaoMing the meaning of the @Olympics. https://t.co/VfN7lGawiv https:/… +08/21/2016,Sports_celeb,@YaoMing,"As #Rio2016 comes to a close, I'm thinking of my own Olympic memories. One picture comes to mind. https://t.co/kolKpO93Py @PlayersTribune" +08/12/2016,Sports_celeb,@YaoMing,"On #WorldElephantDay remember: When the buying stops, the killing can too. #JoinTheHerd Photo: Chrystina Geagan https://t.co/srQeAwzqA5" +08/10/2016,Sports_celeb,@YaoMing,Want to join me at the Hall of Fame ceremony? You can! https://t.co/2jPtkVYu7X +07/19/2016,Sports_celeb,@YaoMing,I learned many things during my rookie season driving around Houston w Steve Francis. @PlayersTribune https://t.co/LK8LLnmO2T. +07/12/2016,Sports_celeb,@YaoMing,Congratulations to one of the all time greats Tim Duncan! +06/22/2016,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: In case you missed it, here's the excellent CCTV piece on the Yao and the new tasting room:... https://t.co/dj9zErIX9x" +06/08/2016,Sports_celeb,@YaoMing,RT @WildAid: We’re getting ready for #WorldOceansDay. Check back tomorrow for an announcement from #WildAid (Photo: Laura Wais) https://t.c… +06/06/2016,Sports_celeb,@YaoMing,RT @PaulGAllen: Announced U.S. ivory ban means that elephants have a better chance to avoid extinction: https://t.co/5lhSx2MpJd https://t.c… +06/06/2016,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Thanks to @Terroiristblog for the excellent recommendation of our 2015 Napa Crest #sauvignonblanc! https://t.co/biywrO… +06/02/2016,Sports_celeb,@YaoMing,Thank you. There is much more to do. https://t.co/QvMBky6gie +05/24/2016,Sports_celeb,@YaoMing,"How the Elephant Became the Newest Celebrity Cause, via @nytimes https://t.co/yEVrvPCh8P" +12/25/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Merry Christmas! https://t.co/CYq2C090IZ +11/11/2015,Sports_celeb,@YaoMing,Funny guy! https://t.co/p3UYC6gvJ1 +09/25/2015,Sports_celeb,@YaoMing,Happy to share this great news. WildAid | US and China Agree to Halt Ivory Trade http://t.co/cjpMwEA4KD +08/21/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Cheers to our founder! Yao Ming helps China wins bid to host 2019 FIBA World Cup | ProBasketballTalk http://t.co/EfMHK9… +08/05/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: 2012 scores are in: @JamesSuckling 95/93/88! @RobertMParkerJr 96/90/87! A big NI HAO from YFW! Request allocation at h… +08/04/2015,Sports_celeb,@YaoMing,http://t.co/GFm1rjLaGF +04/09/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: High Stakes: Yao Ming’s Wine Has a Good Shot at Its Crowdfunding Goal http://t.co/za1SV6fNiO via @LA_mag +03/14/2015,Sports_celeb,@YaoMing,RT @billsanders: NBA legend Yao Ming has pulled $2m worth of crowdfunders in to share his love of red wine | Business Insider http://t.co/g… +12/24/2014,Sports_celeb,@YaoMing,"Wishing you and your loved ones a very Merry Christmas, happy holidays and happy new year." +11/17/2014,Sports_celeb,@YaoMing,Heading back to China after a week supporting #IvoryFree. Please watch our @WildAid film on Tuesday night. Thank you for living #IvoryFree +11/17/2014,Sports_celeb,@YaoMing,RT @deandean: Be ivory free with @YaoMing. Great job @WildAid - Let's all help save Africa's Giants. http://t.co/ievMbkzh3z +11/16/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Look who loves our Napa cab! @yuanyuanTan9 prima ballerina! http://t.co/wnF1qKnoio +11/16/2014,Sports_celeb,@YaoMing,RT @boderek: Looking forward to meeting my fellow @WildAid member and my hero in sports and conservation @YaoMing tonight. http://t.co/FvJ8… +11/14/2014,Sports_celeb,@YaoMing,About to tape @MorningEdition on the last stop of the #IvoryFree New York media your. Join me http://t.co/MP0fyhsuIM http://t.co/K1aL0UlP6U +11/14/2014,Sports_celeb,@YaoMing,About to go on @Morning_Joe to discuss #IvoryFree +11/13/2014,Sports_celeb,@YaoMing,About to go on @cnni with @WildAid Peter Knights to talk about living@#IvoryFree http://t.co/MP0fyhsuIM +11/13/2014,Sports_celeb,@YaoMing,I travel a lot. But these guys are @Globies http://t.co/TZxmLnRfe8 +11/13/2014,Sports_celeb,@YaoMing,And sign the petition at http://t.co/1kPdzXrfkr. Thank you for joining us. +11/13/2014,Sports_celeb,@YaoMing,"Over 30,000 elephants are killed every year for ivory. I'm #ivoryfree. Please RT if you are with me." +11/12/2014,Sports_celeb,@YaoMing,RT @SatOnMeeting: @Schultz_Report @HuffPostLive What inspired @YaoMing 2get involved in protecting elephants & rhinos from poachers? #Savin… +11/12/2014,Sports_celeb,@YaoMing,Getting ready to go on @HuffPostLive. Bring me your best questions. A-game only! +11/12/2014,Sports_celeb,@YaoMing,Talking hoops and elephants on @SInowLIVE today at 1 PM Eastern. #ivoryfree +11/12/2014,Sports_celeb,@YaoMing,Happy to be joining Fox and Friends to begin promoting #ivoryfree http://t.co/duiboZFoQa +11/10/2014,Sports_celeb,@YaoMing,1 elephant is killed every 15 minutes. Please watch my @AnimalPlanet special on 11/18 & join me in the pledge to be #ivoryfree +11/07/2014,Sports_celeb,@YaoMing,RT @AnimalPlanet: RT @gm_tortie: I'm going #IvoryFree. Will you? Take the pledge with @WildAid and @AnimalPlanet. http://t.co/F4tiC4FTZ4 +10/10/2014,Sports_celeb,@YaoMing,RT @rogerfederer: Hard not to look up to the great @YaoMing. Amazing athlete and national hero http://t.co/iWvi4GrY0Z +10/03/2014,Sports_celeb,@YaoMing,"#Retacked from @imcrazyaha via @HashtackApp + #instasize #yaoming 😌#爸爸去哪儿 http://t.co/45VHc0MkYY http://t.co/fSjrxAXgdq" +09/13/2014,Sports_celeb,@YaoMing,Thanks everyone for all of the nice birthday wishes. +08/26/2014,Sports_celeb,@YaoMing,RT @youtholympics: Social media chat with @yaoming at the Youth Olympic Games http://t.co/rkJTcbO3Ve #nanjing2014 #yogambassador +08/24/2014,Sports_celeb,@YaoMing,Thinking of our good friends in Napa Valley today. +08/20/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: #Chicago + great #steaks + our #NapaValley #CabernetSaivignon = @gibsonssteak! #Thanks for putting us on the list! +08/14/2014,Sports_celeb,@YaoMing,RT @nytimes: Sinosphere Blog: A Plea to Shun the Ivory Trade From Yao Ming http://t.co/as7y44wbLb +07/09/2014,Sports_celeb,@YaoMing,RT @CCTV_America: @JohnKerry talks with retired Chinese #NBA star @YaoMing about efforts against international #wildlife #trafficking http:… +06/19/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Proud to be a part of the @foodandwine Classic in Aspen! How to drink wine like a millionaire http://t.co/qDPTIssyUY v… +06/07/2014,Sports_celeb,@YaoMing,“@JackiePipkins: Why so tall @YaoMing http://t.co/pTenq8oQoR” Why so surprised? +06/07/2014,Sports_celeb,@YaoMing,@JackiePipkins +06/07/2014,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: A beautiful evening at La Casa Havana, Singapore. Tom Hinde w/ Jimmy Ng and a few bottles of our finest. #singapore htt…" +05/15/2014,Sports_celeb,@YaoMing,RT @WildAid: The fiery view from inside the rotary kiln...962 degrees celsius. 35 drums at 35 kg each go in today. #HKIvoryBurn http://t.co… +04/20/2014,Sports_celeb,@YaoMing,Let's go @HoustonRockets! +04/12/2014,Sports_celeb,@YaoMing,"RT @sportsuncorked: @YaoMing @YaoFamilyWines talks how he can change the wine world He already has in the @NBA http://t.co/Ndg2bdMr0e +#wine…" +03/24/2014,Sports_celeb,@YaoMing,"RT @jewelsdolphins: @YaoMing @WildAid Thank you Yao Ming for making meaningful change in the world! +http://t.co/HKX0FZ173p" +03/24/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Wine Enthusiast Magazine Awards 2010 Yao Ming® Family Reserve Cabernet Sauvignon Highest Rating In April 2014 http://t.… +03/01/2014,Sports_celeb,@YaoMing,I enjoyed meeting the great wine critic @RobertMParkerJr in Shanghai. Thanks for your kind words for @YaoFamilyWines! http://t.co/fpQ5oMQZFn +11/25/2013,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: .@YaoMing stays busy in retirement with college, winemaking and owning the Shanghai Sharks http://t.co/95PqyZsWFj" +11/18/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Thanks @BinnysBev for having us. Proud to be in your shelves. http://t.co/ViZScKAQFh +11/18/2013,Sports_celeb,@YaoMing,Here's a great piece on our visit to Spec's Wines Spirits & Fine Foods. Thanks to Spec's for carrying @YaoFamilyWines http://t.co/VWWtIFBvik +11/04/2013,Sports_celeb,@YaoMing,With @kobebryant http://t.co/AwhF7kXvi1 +09/26/2013,Sports_celeb,@YaoMing,"When people in China know what's happening with the illegal ivory trade, they will say no to these products @WildAid http://t.co/d2KWfVb1Z5" +07/19/2013,Sports_celeb,@YaoMing,Enjoying a beautiful day in Napa Valley @YaoFamilyWines http://t.co/6DPMWeFE5k +07/15/2013,Sports_celeb,@YaoMing,I feel so happy that @DwightHoward chose the @HoustonRockets +03/01/2013,Sports_celeb,@YaoMing,"Now I won't be the tallest Yao in Houston RT @ShernMinKHOU Hou Zoo named the baby giraffe you saw during Allstar week ""Yao""! Any comment?" +02/26/2013,Sports_celeb,@YaoMing,Say “No” to Rhino Horns! http://t.co/vFbnty1iKy +02/25/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Proud to be featured here! Wineries find success exporting California wines to Asia http://t.co/gs6p45uLYv +02/18/2013,Sports_celeb,@YaoMing,Thank you for a great All-Star Weekend Houston. I had a wonderful time. http://t.co/OVSZtlKk +02/18/2013,Sports_celeb,@YaoMing,"RT @HoustonRockets: PHOTO: Rockets Royalty. Of course Hakeem the Dream, @YaoMing and Les Alexander are here courtside http://t.co/cM9QGg3V" +02/18/2013,Sports_celeb,@YaoMing,"Had a very special day at Retired Players Brunch. Great honor to be awarded along with The Dream, Coach T, Dike, Clyde, Horry and others" +02/16/2013,Sports_celeb,@YaoMing,Great spending time today with @RealJayWilliams http://t.co/hzUSzrXB +02/15/2013,Sports_celeb,@YaoMing,RT @HoustonRockets: .@YaoMing officially named Houston Goodwill Ambassador & given key to the city by Mayor Parker. http://t.co/Q2ZxD01U +02/15/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Today Yao Ming was presented the key to the city by Houston mayor Annise Parker. In return guess what she received? ... +02/13/2013,Sports_celeb,@YaoMing,RT ‏@JJWatt: Great lunch with @YaoMing today. Have a feeling he could knock down a pass or two... http://t.co/SRmAsgSB +11/13/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Honored at Robb Report’s – Robb Choice · Best of the Best 2012 http://t.co/KeH6qOyY +10/22/2012,Sports_celeb,@YaoMing,It was fun watching the Clippers and Heat play in Beijing last week. I got to see many friends including Bill Russell http://t.co/YNQLfIEm +08/27/2012,Sports_celeb,@YaoMing,I came face to face with a large black rhino http://t.co/VTj5HKIo +08/24/2012,Sports_celeb,@YaoMing,"Bonding w/ Kinango, a 2-wk-old orphaned elephant whose mother was lost to poaching http://t.co/EClYlPUa" +08/23/2012,Sports_celeb,@YaoMing,Just saw a collection that's not to be proud of http://t.co/XUUPnCR8 +08/21/2012,Sports_celeb,@YaoMing,I was very close to becoming a meal for lions. Probably not so tasty. http://t.co/Z3Qb2B8d +08/20/2012,Sports_celeb,@YaoMing,Scouted local basketball talent in Samburu Village and managed to break the hoop! http://t.co/1BtyS5GZ +08/19/2012,Sports_celeb,@YaoMing,I never thought I'd become an honorary Samburu warrior: http://t.co/EVpPbSsw +08/16/2012,Sports_celeb,@YaoMing,"While in Namunyak, Northern Kenya, I come across a sight I will not soon forget… http://t.co/rlwXUQFP" +08/14/2012,Sports_celeb,@YaoMing,"Met Najin and Suni, two of the world's remaining seven Northern White Rhinos http://t.co/0n5HmdOi" +08/14/2012,Sports_celeb,@YaoMing,RT @nbacares: .@YaoMing films anti-poaching documentary in Kenya... http://t.co/qsRT7VfI +08/10/2012,Sports_celeb,@YaoMing,Follow my journey to Africa with @wildaid http://t.co/jkjlg8qt +06/07/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Wins Silver Medal in the 2012 Decanter World Wine Awards http://t.co/BRLNac4A +05/16/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Receives Top Scores From @WineEnthusiast Magazine! http://t.co/UjIds9OE +05/15/2012,Sports_celeb,@YaoMing,RT @WSJpop: VIDEO: The Business of Being Yao Ming http://t.co/TKw33TlC +04/27/2012,Sports_celeb,@YaoMing,Thank you to Baccarat and Pernod Ricard for your donation to my foundation. The dinner was very enjoyable http://t.co/wAGgVmWJ +02/26/2012,Sports_celeb,@YaoMing,Vote for Budinger #SpriteSlam +02/26/2012,Sports_celeb,@YaoMing,RT @HoustonRockets: Aaaaaaaaahhhhhhh! Chaaaaasssse! Vote vote vote! #SpriteSlam Budinger +02/26/2012,Sports_celeb,@YaoMing,Budinger #SpriteSlam +02/26/2012,Sports_celeb,@YaoMing,Getting ready to vote Budinger #SpriteSlam +02/22/2012,Sports_celeb,@YaoMing,Looks like Chase has an interesting dunk for the contest. Funny guy! http://t.co/xOBpuC5B +02/16/2012,Sports_celeb,@YaoMing,I'm excited to see my former teammate @CBudinger in the Dunk Contest. I've seen it. Chase can fly! http://t.co/JbaAb9vy +01/26/2012,Sports_celeb,@YaoMing,At the taping of the Chinese Lunar New Year television special http://t.co/zsB2PIQS +01/04/2012,Sports_celeb,@YaoMing,I am on the 2012 cover issue of GQ China http://t.co/UOl716B2 +11/29/2011,Sports_celeb,@YaoMing,Happy that the website http://t.co/z8pfUE9M and twitter page has launched for @YaoFamilyWines +11/28/2011,Sports_celeb,@YaoMing,"Very happy that my first bottle of wine helped raise 150,000 RMB (about $20,000) for Special Olympic http://t.co/ts75sd7n" +11/08/2011,Sports_celeb,@YaoMing,"I chose Jiaotong University instead of private tutors, because I want to feel the atmosphere on campus http://t.co/sBp5uky7" +10/21/2011,Sports_celeb,@YaoMing,RT @SHAQ: I'm wit the greatest center ever Yao ming http://t.co/RHJc52ix +10/21/2011,Sports_celeb,@YaoMing,Flying on board the first A380 airbus felt exceptionally comfortable and there was a lot of space for me http://t.co/N1c9BrXm +10/19/2011,Sports_celeb,@YaoMing,I had a great time at the China Open in Beijing watching the tennis http://t.co/Gh4Td4zi +10/17/2011,Sports_celeb,@YaoMing,I received the “Outstanding Contribution Award” at the 6th Annual China Top 10 Laureus Awards http://t.co/PXC1SVDe +10/10/2011,Sports_celeb,@YaoMing,Happy to hear California has banned shark fin soup http://t.co/tdKh0CSk +10/08/2011,Sports_celeb,@YaoMing,Sorry to hear about the passing of Steve Jobs. A great creative leader. http://t.co/e6654LhI +10/07/2011,Sports_celeb,@YaoMing,This is a picture of me in Australia learning about how pearls are made http://t.co/cKtrI91t +10/03/2011,Sports_celeb,@YaoMing,I attended the Cable Beach Invitational in Australia this weekend. It was a great combination of basketball and be http://t.co/cAF76sF6 +09/28/2011,Sports_celeb,@YaoMing,My friend Richard Branson is helping me with a campaign against eating shark fins in Shanghai this past weekend http://t.co/2wX7P9wB +09/26/2011,Sports_celeb,@YaoMing,Congratulations to the Chinese basketball team for qualifying for the 2012 London Olympics +08/22/2011,Sports_celeb,@YaoMing,I met Coach K today http://t.co/Fvoic5H +08/03/2011,Sports_celeb,@YaoMing,Me playing golf http://twitpic.com/60iwj4 +07/20/2011,Sports_celeb,@YaoMing,"Nine years ago I came to Houston as a young, tall, skinny player, and the entire city and the team changed me to a grown man. Thank you." +07/20/2011,Sports_celeb,@YaoMing,"Special thanks to my friends overseas, especially to fans in Houston. I would like to thank you for giving me great nine years." +07/19/2011,Sports_celeb,@YaoMing,My press conference will air on @NBATV tonight at 2am ET/ 11pm PT. Tune in! +06/04/2011,Sports_celeb,@YaoMing,Congratulations to Li Na for making history today at the French Open +06/02/2011,Sports_celeb,@YaoMing,Congratulations to @Shaq on an incredible career. He was a great champion and player. I wish him success and happiness. +05/19/2011,Sports_celeb,@YaoMing,Me and the Loyd family at Hunters Creek Elementary. It was a great visit. http://twitpic.com/4zqy9d +05/17/2011,Sports_celeb,@YaoMing,"RT @RocketsJCF: Video: A Houston-area student wins at show-and-tell, brings Yao Ming to school for the day: http://on.nba.com/j56uid" +05/12/2011,Sports_celeb,@YaoMing,Pictures from the @WildAid PSA shoot and gala http://on.fb.me/lWGwGu +05/10/2011,Sports_celeb,@YaoMing,My @WildAid award. I had a great time at their event. http://twitpic.com/4w0j5i +05/07/2011,Sports_celeb,@YaoMing,"My agent Bill Duffy feeding ""Beans"" the Oakville heifer who loves tortillas http://twitpic.com/4ur7b9" +05/06/2011,Sports_celeb,@YaoMing,"Hey @leodicaprio, sorry I missed you at the @WildAid event last night. I hear you do lots of great work with them." +05/05/2011,Sports_celeb,@YaoMing,Talking with public radio on the subject of shark fin soup. http://twitpic.com/4tttgr +05/05/2011,Sports_celeb,@YaoMing,Back in the US. I am looking forward to attending the Wild Aid function tonight. I continue to enjoy working with them. +03/31/2011,Sports_celeb,@YaoMing,I went to @jordanchill43 and Chase's bowling event. It was a great event for the kids http://twitpic.com/4fddr8 +03/23/2011,Sports_celeb,@YaoMing,I had a video shoot today in Houston http://twitpic.com/4cj9gs +03/21/2011,Sports_celeb,@YaoMing,Congratulations to Kyle for winning player of the week. Well deserved +03/01/2011,Sports_celeb,@YaoMing,Welcome to all the new Rockets +02/03/2011,Sports_celeb,@YaoMing,Happy Chinese New Year 新年快樂! http://on.fb.me/hQwjr8 +01/28/2011,Sports_celeb,@YaoMing,Its an honor to be voted as a starter for the All-Star Game. I would like to thank everyone who has supported me as I continue to rehab +12/15/2010,Sports_celeb,@YaoMing,"Im waiting for the green light, but I won't push the trainer or the doctor. They are finding the best way for me to get back on the court" +10/01/2010,Sports_celeb,@YaoMing,It's our 5th day in Austin. I practiced about the same time today I've been doing all week. Now at the hotel. Sat. is last Austin practice +09/29/2010,Sports_celeb,@YaoMing,"Back at the hotel now after today's workout with the team. I went about halfway through the scrimmage, which is normal." +09/10/2010,Sports_celeb,@YaoMing,Just got done with my workout. Meeting with trainer now. Training camp starts in about 2 weeks. Looking forward to those workouts. +08/20/2010,Sports_celeb,@YaoMing,Videos posted from the charity tour late last month. Great highlights. Thanks to all who made the tour a success. http://facebook.com/yao +08/04/2010,Sports_celeb,@YaoMing,Video working out last week in Taipei shooting baskets on the court. http://youtu.be/g4FcNGovnqo +07/01/2010,Sports_celeb,@YaoMing,"@ChrisBosh, Hey Chris, hopefully you'll play with us (Rockets) next season. I'll be healthy and I'd really look forward to playing together" +06/29/2010,Sports_celeb,@YaoMing,Video of Yao interview after announcing today he won't opt out of contract and will remain a Rocket next season: http://bit.ly/9WmB5r +06/26/2010,Sports_celeb,@YaoMing,I'm still working out 5 days a week. I'm running on a real treadmill 20-30 minutes each time. I don't need the Alter-G treadmill any more. +06/18/2010,Sports_celeb,@YaoMing,I watched Game 7 last night. Unbelievable series. I am happy for Ron having a great year. Hopefully next year it will be us in Houston. +05/22/2010,Sports_celeb,@YaoMing,Happy to announce the arrival of our daughter. This is a very special moment in our lives. We thank everyone for their kindness and support. +05/07/2010,Sports_celeb,@YaoMing,"I worked out at Toyota Center this morning. Luis Scola and Jermaine Taylor were in there, too. http://twitpic.com/1ludd4" +04/24/2010,Sports_celeb,@YaoMing,Congrats to Aaron Brooks for winning the Most Improved Player Award. You deserved it. Thanks for your effort this season. +04/11/2010,Sports_celeb,@YaoMing,"...I am very proud of my players and their efforts. We have great fans, a great city, and I am already looking forward again to next season." +04/11/2010,Sports_celeb,@YaoMing,Congrats to the Guangdong Tigers for their series win over my Sharks today. They showed everyone they are a great team... +02/07/2010,Sports_celeb,@YaoMing,"I'm packing today. Flying to China early Monday for Chinese New Year, my first time back for it since signing w/Rockets. I'm back late Feb." +02/06/2010,Sports_celeb,@YaoMing,"Welcome to the NBA Joey Dorsey! You looked great last night in Memphis, your college town. 7 points, 12 rebounds and a block in 19 minutes!" +01/31/2010,Sports_celeb,@YaoMing,"Sorry I've been silent for a few weeks. Back from China. In Houston for 10 more days. At Toyota Center for workout, then Suns game tonight." +12/11/2009,Sports_celeb,@YaoMing,"Today my Esquire interview about ""What I've learned"" was posted online. http://bit.ly/5DTmw8" +11/28/2009,Sports_celeb,@YaoMing,Please join me to stop discrimination of people with HIV and AIDS. http://bit.ly/70mdY0 +11/18/2009,Sports_celeb,@YaoMing,Yesterday I announced my Foundation and the Museum of Fine Arts will throw a celebrity gala on January 30th in Houston. http://bit.ly/3fpWjY +11/16/2009,Sports_celeb,@YaoMing,A great win against the Lakers tonight in LA. I'm very proud of my teammates. Go Rockets! +11/15/2009,Sports_celeb,@YaoMing,"I hear Obama is in Shanghai, my hometown. Welcome to China. Hope you enjoy. Like NYC, the best food is sold on streets (I know u r busy tho)" +11/13/2009,Sports_celeb,@YaoMing,"George Bush (the father) lives in Houston. He gave me his book ""China Diary"" from his time there. It's good. My first English book to read." +11/08/2009,Sports_celeb,@YaoMing,I signed the new Rocket jerseys yesterday at Toyota Center. Good to see the fans. Thanks for coming out. My foot is feeling better every day +10/30/2009,Sports_celeb,@YaoMing,This afternoon I met with John from YaoMingMania. Tomorrow I will be at Houston's home opener at Toyota Center against Portland. +10/27/2009,Sports_celeb,@YaoMing,"I like David Andersen, our new center. We played each other in international games.I think he will fit Coach Adelman's style very well." +06/27/2018,Sports_celeb,@rogerfederer,🔙 at @Wimbledon 🎾 https://t.co/NkavzmjDOO +06/26/2018,Sports_celeb,@rogerfederer,RT @BelindaBencic: Team Switzerland is back 🇨🇭 Can’t wait to play @HopmanCup again with @RogerFederer in @WesternAustralia #HopmanCup #just… +06/18/2018,Sports_celeb,@rogerfederer,RT @GERRYWEBERWORLD: Bitte direkt zu uns! 😃Wir und die Zuschauer freuen sich schon riesig. 🎉#gwo #gerryweberopen https://t.co/L9gpZaXAnI +06/18/2018,Sports_celeb,@rogerfederer,"Where shall I go? +😄 https://t.co/vRFn7SnKT5" +06/17/2018,Sports_celeb,@rogerfederer,😄 https://t.co/aphf69Yqtv +06/17/2018,Sports_celeb,@rogerfederer,Thank you 🙏 https://t.co/G9ACJrPjqf +06/17/2018,Sports_celeb,@rogerfederer,"RT @AdvFederer: He’s commenting! +He’s retweeting! +This is not a drill, people! GO! GO! GO! #RogerFederer @rogerfederer https://t.co/hzkwEXr…" +06/17/2018,Sports_celeb,@rogerfederer,Unlucky? https://t.co/FPGLG8AkNR +06/17/2018,Sports_celeb,@rogerfederer,"RT @tugcege: @rogerfederer He’s a father of four, I don’t think he’d do something that would put his or anyone else’s life at risk." +06/17/2018,Sports_celeb,@rogerfederer,RT @tesssjimmie: @rogerfederer Waiting impatiently for you in Halle #RFmatchingshirts https://t.co/F8rE7ggLrh +06/17/2018,Sports_celeb,@rogerfederer,RT @Pollyannina: @rogerfederer Did you see three girls who waved at you like crazy and hitchhiked when you left? 🧚🏼‍♀️🧚🏼‍♀️🧚🏼‍♀️👋🏻👍🏻💚🎾🔙🔛🔝🏆@… +06/17/2018,Sports_celeb,@rogerfederer,No speed limit in Germany in some places 😋 https://t.co/IEq3ECz0kG +06/17/2018,Sports_celeb,@rogerfederer,"RT @TennisMajesty: @rogerfederer Going by the blurry trees out the window, it looks like you’re driving over the speed limit Rog. 😏🤣" +06/17/2018,Sports_celeb,@rogerfederer,🤨 https://t.co/UKbsUzbUMB +06/17/2018,Sports_celeb,@rogerfederer,"Made it back home on time +⚡️🏎💨 +to watch 🇨🇭 vs 🇧🇷 +Great effort team Switzerland, +good luck Brazil for the rest o… https://t.co/iwSwNIzUF7" +06/17/2018,Sports_celeb,@rogerfederer,"So happy! +Thank you Stuttgart ❤️ https://t.co/zdL3AcRK99" +06/17/2018,Sports_celeb,@rogerfederer,Good day 🇨🇭 +06/16/2018,Sports_celeb,@rogerfederer,🔙🔛🔝 https://t.co/lr5zWpmF0U +06/16/2018,Sports_celeb,@rogerfederer,big day 🙌🏼🎈 https://t.co/wgzivEq0Sv +06/12/2018,Sports_celeb,@rogerfederer,@Biryukova15 Those things I knew! +06/12/2018,Sports_celeb,@rogerfederer,finally he is out of the house https://t.co/PhNIjs7FgX +06/12/2018,Sports_celeb,@rogerfederer,@fedangels1 can't wait for Thursday. Switzerland might win it 🧐 +06/12/2018,Sports_celeb,@rogerfederer,@Exposure_Sport chillaaaax +06/12/2018,Sports_celeb,@rogerfederer,@luca_sporting https://t.co/Pw5VN3icLu +06/12/2018,Sports_celeb,@rogerfederer,What did I miss? +06/12/2018,Sports_celeb,@rogerfederer,@swatifederer @Wimbledon @WimbledonRoof have you enjoyed your offseason? +06/12/2018,Sports_celeb,@rogerfederer,@fedangels1 @Wimbledon missed you all too! +06/12/2018,Sports_celeb,@rogerfederer,"RT @Wimbledon: After a second year of construction work, No.1 Court is ready for The Championships 2018 🙌 + +#Wimbledon https://t.co/HMrh2x18…" +04/27/2018,Sports_celeb,@rogerfederer,"RT @rogerfedererfdn: The film to the visit of Roger in Zambia during the last days. Great people, high emotions, true impact. +https://t.co/…" +04/26/2018,Sports_celeb,@rogerfederer,"👋 Zambia 🇿🇲 + +I enjoyed your beautiful country and meeting the amazing people here. Hope to return soon with the… https://t.co/CO5efJkfkD" +04/24/2018,Sports_celeb,@rogerfederer,"Learning the dance 🕺 moves here in Zambia 🇿🇲, while visiting community schools with the @rogerfedererfdn… https://t.co/xR47GWjxpO" +04/24/2018,Sports_celeb,@rogerfederer,"@rogerfedererfdn visit in Zambia 🇿🇲 +#educationempowers +👋 https://t.co/plV0O9pgA9" +04/24/2018,Sports_celeb,@rogerfederer,🤓 https://t.co/3M4B6ELY3k +04/23/2018,Sports_celeb,@rogerfederer,Very happy to be in Zambia 🇿🇲 working with the @rogerfedererfdn. It’s my first time here! https://t.co/SUKMnHwtQ7 +04/22/2018,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: Thank you for hosting us. We look forward to further collaboration in accelerating acces to early childhood education… +04/20/2018,Sports_celeb,@rogerfederer,"Thank you for the kind words, @BillGates. Honored. @TIME https://t.co/eGmBhS3NZv" +03/23/2018,Sports_celeb,@rogerfederer,Loved being in Chicago and can’t wait to return for the @LaverCup in September... Hope you can join me there. Ticke… https://t.co/HquTuv1f4r +03/21/2018,Sports_celeb,@rogerfederer,"RT @rogerfedererfdn: Roger besucht Kinder des Programms ""Empowerment"", ein Förderfond für ausserschulische Bildung der Winterhilfe. Jedes 1…" +03/20/2018,Sports_celeb,@rogerfederer,"RT @ScottiePippen: Welcoming @NickKyrgios and the GOAT @rogerfederer to Chicago and the @UnitedCenter, home of this year’s #LaverCup 🎾 http…" +03/19/2018,Sports_celeb,@rogerfederer,Good Morning Chicago! The countdown to the #LaverCup 2018 starts here! Follow the action live on Twitter and Perisc… https://t.co/UOZLgbO74I +03/19/2018,Sports_celeb,@rogerfederer,"What a battle today. Congrats on a fantastic tournament and match, @delpotrojuan https://t.co/bqf4LyL1B8" +03/17/2018,Sports_celeb,@rogerfederer,@maya_iyer 💐 +03/17/2018,Sports_celeb,@rogerfederer,@maya_iyer https://t.co/aJ47jn5JmC +03/17/2018,Sports_celeb,@rogerfederer,@Exposure_Sport https://t.co/tzaqLTkJqN +03/17/2018,Sports_celeb,@rogerfederer,@TrueNorth4 @BNPPARIBASOPEN Thanks for coming! 🙏🏼 +03/17/2018,Sports_celeb,@rogerfederer,Thanks Rocket 🚀! https://t.co/3emo6dhOug +03/17/2018,Sports_celeb,@rogerfederer,17-0! So thrilled to have fought my way into the finals at @BNPPARIBASOPEN 💪🏻😅 https://t.co/otsiZr97g8 +03/17/2018,Sports_celeb,@rogerfederer,Are you ready for Chicago😉💯🔝?@nickkyrgios @rodlaver #LaverCup #TeamEurope https://t.co/Izp2UasglU +03/15/2018,Sports_celeb,@rogerfederer,@vynndawg you're welcome! +03/15/2018,Sports_celeb,@rogerfederer,@naveenbaskaran7 are you still fed up? 🙂 +03/15/2018,Sports_celeb,@rogerfederer,@madhuchak No +03/15/2018,Sports_celeb,@rogerfederer,"RT @counterfeitaura: ┏┓ +┃┃╱╲ in this +┃╱╱╲╲ house +╱╱╭╮╲╲ we +▔▏┗┛▕▔ +╱▔▔▔▔▔▔▔▔▔▔╲ + love and support + @rogerfederer +╱╱┏┳┓╭╮┏┳┓ ╲╲…" +03/15/2018,Sports_celeb,@rogerfederer,@antonellaf70 https://t.co/jH9NlANmj2 +03/15/2018,Sports_celeb,@rogerfederer,@beafabregas Chilllaaaax +03/15/2018,Sports_celeb,@rogerfederer,RT @nnniicole: Staying up late has its perks... like watching @rogerfederer interact with his fans in real time 😭 https://t.co/A2Y11lxUPJ +03/15/2018,Sports_celeb,@rogerfederer,"I'm on the massage table.. so, close! https://t.co/UcFrF8F4pQ" +03/15/2018,Sports_celeb,@rogerfederer,RT @rand_luu: I would say @rogerfederer is a legend on Twitter with how he interacts with his fans. 🐐 +03/15/2018,Sports_celeb,@rogerfederer,@ClaytonHoffard Now you need some more things for your list! +03/15/2018,Sports_celeb,@rogerfederer,@lodotennis https://t.co/PAueLUxFl3 +03/15/2018,Sports_celeb,@rogerfederer,Good to know. I've never had deep dish 🍕 What's the best place to try in Chicago? https://t.co/nHlzIB8Luf +03/15/2018,Sports_celeb,@rogerfederer,@SaraParetsky Thank you for the recommendations! +03/15/2018,Sports_celeb,@rogerfederer,@QuienTengaOidos 😳 +03/15/2018,Sports_celeb,@rogerfederer,@rhondaygans Thanks for the suggestions! +03/15/2018,Sports_celeb,@rogerfederer,@DCaramanidis Tell me more https://t.co/5CU4qgAjaM +03/15/2018,Sports_celeb,@rogerfederer,@dianne9m @lincolnparkzoo Good idea! +03/15/2018,Sports_celeb,@rogerfederer,@mari_moraes_rs From where do you recommend? +03/15/2018,Sports_celeb,@rogerfederer,Can’t wait to visit #Chicago for the first time next week. What shall I do while I am in town? #LaverCup 🤔 https://t.co/OMFSu04mXK +03/13/2018,Sports_celeb,@rogerfederer,@NateCourtright 🙃 +03/13/2018,Sports_celeb,@rogerfederer,@nnniicole Thank you! +03/13/2018,Sports_celeb,@rogerfederer,@TenistaDeSanz https://t.co/ptaQnaWIJi +03/13/2018,Sports_celeb,@rogerfederer,RT @eriq_spin: @rogerfederer liking and replying to fans tweets at 10pm has me like https://t.co/8ARvNbW9rv +03/13/2018,Sports_celeb,@rogerfederer,@neerajrd19 engineering isn't dull! you build things from scratch 🤯 +03/13/2018,Sports_celeb,@rogerfederer,@mikhailara Nice 📸! +03/13/2018,Sports_celeb,@rogerfederer,@KasiTennis Thanks for watching! +03/13/2018,Sports_celeb,@rogerfederer,Gotta stay on your toes 😋 https://t.co/6fZuOqYNta +03/13/2018,Sports_celeb,@rogerfederer,Had a nice day at the office with no ☔️ and all ☀ https://t.co/8puTjgh377 +03/12/2018,Sports_celeb,@rogerfederer,1⃣0⃣th🌴🌌🎾🌧☔🙅🏻‍♂🍝😴1⃣1⃣th🌄🎾🌞🙌🏼🏁 +03/11/2018,Sports_celeb,@rogerfederer,1️⃣2️⃣ million 🙏🏼 https://t.co/OmNtNBl5nr +03/11/2018,Sports_celeb,@rogerfederer,"RT @BNPPARIBASOPEN: When life gives you a rain delay… + +Tweet a video of @RogerFederer playing art critic with a batch of miniature (and ad…" +03/09/2018,Sports_celeb,@rogerfederer,👑 @TommyHaas13 https://t.co/w6nHrwvQK4 +03/07/2018,Sports_celeb,@rogerfederer,RT @BillGates: Most people know @rogerfederer as one of the greatest tennis players of all time. But his work off the court is also impress… +03/06/2018,Sports_celeb,@rogerfederer,About to go on #MatchforAfrica https://t.co/u0MTB2CNCd +03/06/2018,Sports_celeb,@rogerfederer,Carbo loading before #MatchForAfrica https://t.co/FvwNJkMroe +03/05/2018,Sports_celeb,@rogerfederer,Was great to sit down with @BillGates and @SavannahGuthrie to talk about why #MatchforAfrica is so important to us.… https://t.co/5aXYsdZZCU +03/05/2018,Sports_celeb,@rogerfederer,RT @TODAYshow: We can't wait to watch @savannahguthrie and @JackSock take on @rogerfederer and @billgates in the #MatchforAfrica! https://t… +03/01/2018,Sports_celeb,@rogerfederer,Oh hey @SavannahGuthrie. See you guys on the court! #YouCantSeeMe #MatchForAfrica https://t.co/FJDZZb2UCe +02/26/2018,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: We made an effort to present the new Roger Federer Foundation Annual Report 2017 as early as possible. Have a look and… +02/24/2018,Sports_celeb,@rogerfederer,⛷🇨🇭🥇🤩🤩🤩🤩🤩 https://t.co/OOLMNJzcvX +02/24/2018,Sports_celeb,@rogerfederer,🏂🇨🇭🥇🎇🎆🎇🎆🎇 https://t.co/94Raa8YEI6 +02/23/2018,Sports_celeb,@rogerfederer,🥌 🇨🇭 🥉 🍾https://t.co/wqyOEvupep +02/23/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥉👊💥 https://t.co/FWTXi2cdQt +02/23/2018,Sports_celeb,@rogerfederer,Excited to be heading to Monaco for the @LaureusSport Awards! Good luck to all the Nominees 💪 see you next week 😃 #Laureus18 +02/22/2018,Sports_celeb,@rogerfederer,"🎿🇨🇭🥇🤩 Michelle 🎯 +🎿🇨🇭🥉😃 Wendy 🥂 + https://t.co/t2PtDinlvi" +02/22/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈🕺👍 https://t.co/6rPhYOog2x +02/21/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈Cmoooon 👊💥 https://t.co/N9pchngfR2 +02/18/2018,Sports_celeb,@rogerfederer,😂 https://t.co/nvP1IMWXP2 +02/18/2018,Sports_celeb,@rogerfederer,@GoldenChild621 Thank you for coming! +02/18/2018,Sports_celeb,@rogerfederer,Thank you Rotterdam! You broke the record for attendance.. 120k people! It was an amazing atmosphere 👊🏼👏🏼 https://t.co/yAVl8woRgH +02/17/2018,Sports_celeb,@rogerfederer,🤗 https://t.co/ifSCxR3vd8 +02/17/2018,Sports_celeb,@rogerfederer,🗣 magnifique 🇨🇭🥈😃 https://t.co/SLl2QSWU5j +02/17/2018,Sports_celeb,@rogerfederer,💪💪💪🇨🇭🤩🥇 https://t.co/g76JaN7EWg +02/17/2018,Sports_celeb,@rogerfederer,"It's been a long road, and sometimes windy, but feels surreal to be back at the top. I'm just happy to be healthy a… https://t.co/g0q4mIKI6f" +02/16/2018,Sports_celeb,@rogerfederer,Apparently I'm the oldest tennis player with a #1️⃣ ranking. Somebody might have mentioned that to me already but I… https://t.co/sZ3NFoddzk +02/16/2018,Sports_celeb,@rogerfederer,🇨🇭🥇 woooooow @dariocologna https://t.co/Nr79FCQ9lg +02/16/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈 @BeatFeuz yeaaaahhhhh https://t.co/53VlXTogYt +02/16/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈💪 Congratulations Wendy https://t.co/MCiMrmx74Q +02/15/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥉Super Beat https://t.co/rtXBmE1OKO +02/13/2018,Sports_celeb,@rogerfederer,🥌 🇨🇭 🥈 Gratulation https://t.co/FXszdzAJ2E +02/01/2018,Sports_celeb,@rogerfederer,Thank you to all the amazing fans who greeted me and Norman🏆 back in 🇨🇭 https://t.co/Me5oqTcPzD +02/01/2018,Sports_celeb,@rogerfederer,"Thank you Australia for the support, the passion and all the epic memories. Can't wait until next year. #RF20… https://t.co/OvgXgKfHVp" +01/29/2018,Sports_celeb,@rogerfederer,Norman looks even more shiny in the daytime 🌞 #RF20 https://t.co/VzmAOpattj +01/29/2018,Sports_celeb,@rogerfederer,Norman joined us on the car ride home #NormanInTheTrunk #RF20 https://t.co/1SS1pVa8vB +01/29/2018,Sports_celeb,@rogerfederer,"Seve, me & Norman 🏆 #RF20 https://t.co/PG1cBzeTrK" +01/29/2018,Sports_celeb,@rogerfederer,My first moment reunited with the family & team after last night #RF20 https://t.co/ZAPQ4NmcnG +01/28/2018,Sports_celeb,@rogerfederer,Going to sleep well tonight. Thank you to everyone for the love and support. It means more than I could possible de… https://t.co/nGhjs88dl8 +01/28/2018,Sports_celeb,@rogerfederer,🏆20. ❤️ https://t.co/WqUiSo3fd5 +01/25/2018,Sports_celeb,@rogerfederer,"I noticed the ball went out but yes, very intimidating @SavannahGuthrie 😉 .. @BillGates and I will be ready with ou… https://t.co/tJZUDYD9pf" +01/22/2018,Sports_celeb,@rogerfederer,enjoyed my match in outer space yesterday 🌌😳 https://t.co/EXzemd2Rlo +01/21/2018,Sports_celeb,@rogerfederer,Post match smolderview 🤨 https://t.co/xW80lFBk1X +01/21/2018,Sports_celeb,@rogerfederer,🙌🏻 https://t.co/9RreCC3cVO +01/21/2018,Sports_celeb,@rogerfederer,"Thanks, skydiverer https://t.co/kAXud4bxIj" +01/17/2018,Sports_celeb,@rogerfederer,#SmoldeRF @TheRock https://t.co/WHXlSE6UWp +01/16/2018,Sports_celeb,@rogerfederer,"Great to see you back +#Stanimal 💪👊 + https://t.co/VAQoi7m6Kc" +01/16/2018,Sports_celeb,@rogerfederer,🤔 https://t.co/mFaavI4hyX +01/16/2018,Sports_celeb,@rogerfederer,😳 wow https://t.co/zgWzi2gmik +01/16/2018,Sports_celeb,@rogerfederer,😉 https://t.co/DAkwabNoe9 +01/16/2018,Sports_celeb,@rogerfederer,"Being back on Rod Laver Arena was so nice after last year, Thank you 🙏🏼 https://t.co/deWFYFtvWF" +01/15/2018,Sports_celeb,@rogerfederer,@CrackedRacquets 😂 so good +01/15/2018,Sports_celeb,@rogerfederer,@ajshaheed 😂👏 +01/15/2018,Sports_celeb,@rogerfederer,@Benji9588 🦇 +01/15/2018,Sports_celeb,@rogerfederer,@kiran_aravelli 👏😳 +01/15/2018,Sports_celeb,@rogerfederer,Paging @RealHughJackman https://t.co/KmQH9UzHJt +01/15/2018,Sports_celeb,@rogerfederer,@NYC212516 👏 +01/15/2018,Sports_celeb,@rogerfederer,RT @brohit_98: @rogerfederer Captain Roger Federer #PhotoshopRF https://t.co/T0odUYOVm4 +01/15/2018,Sports_celeb,@rogerfederer,😂 https://t.co/wnk6yzKHt2 +01/15/2018,Sports_celeb,@rogerfederer,I doubt that... but let's give it a shot.. been awhile since the last #PhotoshopRF. Let's see your best/funniest ph… https://t.co/JSzAdjEjwt +01/14/2018,Sports_celeb,@rogerfederer,🐜🕷🇨🇭🕸🔨 https://t.co/zvy6itZoDm +01/14/2018,Sports_celeb,@rogerfederer,@ItsOana https://t.co/bm8RkFM7Cn +01/14/2018,Sports_celeb,@rogerfederer,@Ashish__TV https://t.co/QgwSxsCqkL +01/14/2018,Sports_celeb,@rogerfederer,Hey Spiderman can you string my racket? 🕸🎾 https://t.co/UUjiPkNotu +01/14/2018,Sports_celeb,@rogerfederer,Getting ready to ruuuumble for the @AustralianOpen https://t.co/YzkRfhz8ry +01/12/2018,Sports_celeb,@rogerfederer,"Hey @TheRock, am I doing the ""Smoldering Intensity"" right? 🤔 https://t.co/5A5ILEXYNK" +01/11/2018,Sports_celeb,@rogerfederer,RT @AustralianOpen: An exclusive look into a pre-tournament video shoot with our five-time champion @rogerfederer.#AusOpen https://t.co/f8G… +01/06/2018,Sports_celeb,@rogerfederer,"RT @CoryKarma: Team Switzerland 🇨🇭🎾🇨🇭 + +@rogerfederer @BelindaBencic + +#HopmanCup 🏆 https://t.co/TqaHMgtmZU" +01/06/2018,Sports_celeb,@rogerfederer,"Thank you Perth +#Thank you @BelindaBencic +Great week, it was so much fun. +You played phenomenal 🇨🇭🎾👊🏼 https://t.co/fSgLSsFkox" +01/06/2018,Sports_celeb,@rogerfederer,"Selfie time +😉 https://t.co/mHbJWITq0q" +01/06/2018,Sports_celeb,@rogerfederer,RT @FanOfBencic: Congrats @BelindaBencic @rogerfederer !! #Benderer 🇨🇭🙌🏻😍#HopmanCup https://t.co/xjsEOXEQ1q +01/06/2018,Sports_celeb,@rogerfederer,RT @FanOfBencic: HOPMAN CUP CHAMPIONS🇨🇭🙌🏻🙌🏻🙌🏻 #BENDERER https://t.co/Fi1Elt4mcB +01/04/2018,Sports_celeb,@rogerfederer,"Jumping into the finals like.... +@BelindaBencic +@hopmancup +#Benderer +🎾🇨🇭 https://t.co/L9ftI8lCPO" +01/02/2018,Sports_celeb,@rogerfederer,"Great match +Super partner +🎾🇨🇭 https://t.co/NKzFhcwmJW" +01/02/2018,Sports_celeb,@rogerfederer,Gotcha ☝️😉 https://t.co/et1SkoggPc +01/02/2018,Sports_celeb,@rogerfederer,Classic 😂🤣https://t.co/UmEVn7FmVl +01/02/2018,Sports_celeb,@rogerfederer,RT @7tennis: Not many shots leave @rogerfederer like 😮 but this one certainly did. Simply amazing @NastiaPav!! #HopmanCup https://t.co/7ZQX… +12/31/2017,Sports_celeb,@rogerfederer,RT @BelindaBencic: Happy New Year from Perth! #benderer 🇨🇭 https://t.co/Gct4okj02q +12/31/2017,Sports_celeb,@rogerfederer,"Happy new year from Perth everyone, 2017 was unreal. 2018 here we come. +🎇🎆 https://t.co/nFtTfNlpjQ" +12/30/2017,Sports_celeb,@rogerfederer,"Ha! + https://t.co/t02gOLJKNi" +12/29/2017,Sports_celeb,@rogerfederer,"Team Swiss 🇨🇭 +🧀 🐮🍫🏔🕰 +#benderer https://t.co/Kv0wyMA4oJ" +12/29/2017,Sports_celeb,@rogerfederer,"1h practice from 5-6pm + https://t.co/yQ14cxJlB9" +12/28/2017,Sports_celeb,@rogerfederer,"Great to be back in Perth, +See you tomorrow at 5pm +🎾 https://t.co/YeLT1SJ8UK" +12/28/2017,Sports_celeb,@rogerfederer,🏖 https://t.co/ZvqtRajRj9 +12/28/2017,Sports_celeb,@rogerfederer,"Meet my new furry friend. +So happy to be back down under 🙃#HappyQuokka @westernaustralia #justanotherdayinWA https://t.co/YvgdMCs13u" +12/28/2017,Sports_celeb,@rogerfederer,My first day cooking. See how I did… 🎾 ➡️ 🍅 #MastersOfPasta 🍝 @Barilla @davideoldanido #ad https://t.co/dFo3ht9vx8 +12/27/2017,Sports_celeb,@rogerfederer,Thanks for taking the time to put this together 🙌🏻 https://t.co/Scp3ZIaipq +12/10/2017,Sports_celeb,@rogerfederer,"Congratulations on coach of the year in Switzerland 🇨🇭, So well deserved, lucky 🍀 to have you on my team. You’ve be… https://t.co/CyNlisQaEy" +12/10/2017,Sports_celeb,@rogerfederer,So honored to have won this award. Sharing this with my entire team.. I wouldn’t be where I am and who I am without… https://t.co/wO5rOcijIO +12/09/2017,Sports_celeb,@rogerfederer,Honored to be nominated for the @CreditSuisse Swiss Sports person of 2017 🇨🇭🥇🥈🥉 ⚽🎾🏒🥅🚵🏻 🎿 https://t.co/Cljei207QJ +12/07/2017,Sports_celeb,@rogerfederer,"Gym time +🏋️ 💦 https://t.co/9Z0s9Nvsi0" +12/06/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: How can children learn when they are constantly hungry? School feeding is crucial in particular for younger children.… +11/23/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: All Children have a Right To Education. This is our obligation. The @rogerfedererfdn has almost reached one million ch… +11/22/2017,Sports_celeb,@rogerfederer,"Words can’t possibly describe this incredible moment for this club, wow!!!! +Congrats to the team 🎉 +https://t.co/qvEOCHoSmN" +11/12/2017,Sports_celeb,@rogerfederer,Next time... 🍑🎯 https://t.co/vZh9UbXAAw +11/10/2017,Sports_celeb,@rogerfederer,Press day at the @ATPWorldTour Finals 💃 https://t.co/3EeC7oEIvV +11/10/2017,Sports_celeb,@rogerfederer,I’ll have my revenge! 🧛‍♂️ https://t.co/h3NcXTmvo9 +11/08/2017,Sports_celeb,@rogerfederer,Starting on Sunday @ 2pm vs Jack Sock +11/08/2017,Sports_celeb,@rogerfederer,Ready? 🎾 https://t.co/rfJbOuonTt +11/07/2017,Sports_celeb,@rogerfederer,Great to see you back on court @andy_murray .. thanks for having me in Glasgow https://t.co/PNdMmibrqF +11/07/2017,Sports_celeb,@rogerfederer,"RT @Ashish__TV: Roger Federer's 1HBH, but in a kilt. + +#AndyMurrayLive https://t.co/apNt9jkxMN" +11/07/2017,Sports_celeb,@rogerfederer,Kilterer 💪🏼 https://t.co/yVqvrmq9od +11/07/2017,Sports_celeb,@rogerfederer,@andy_murray Can’t get a warmer welcome than this. Thanks @andy_murray ... is this your usual pre-match routine? 🍪 https://t.co/mWntwqvDPA +11/07/2017,Sports_celeb,@rogerfederer,In Glasgow for the evening to play in @andy_murray’s charity match. Scotland is beautiful even from the air! https://t.co/ueLU2FLBqr +10/29/2017,Sports_celeb,@rogerfederer,8 is gr8 🏆💪🏼 https://t.co/pWmMjFQARE +10/20/2017,Sports_celeb,@rogerfederer,"Basel ❤️ +So happy to be back in 🇨🇭 +Here with my man the MC @mchiudinelli33 https://t.co/mU6U4aPGZC" +10/15/2017,Sports_celeb,@rogerfederer,What a wild week here in Shanghai. Thanks to all the fans and the tournament and staff for making it so special ✌🏻❤️ https://t.co/jVWxtnh0pD +10/15/2017,Sports_celeb,@rogerfederer,🇨🇳🏆😘 https://t.co/T31a6xthSf +10/13/2017,Sports_celeb,@rogerfederer,Sounds like a challenge to me @KlayThompson 😉 https://t.co/5ZhDBe5JN1 +10/13/2017,Sports_celeb,@rogerfederer,"RT @SoleCollector: #SoleWatch: @RogerFederer wearing the ""Atmos"" NikeCourt Zoom Vapor RF x AJ3 in Shanghai. https://t.co/mBX6GRAlWi" +10/10/2017,Sports_celeb,@rogerfederer,@LaverCup @tomasberdych We’re already scheming against #TeamWorld for @lavercup in Chicago 😈 +10/10/2017,Sports_celeb,@rogerfederer,We all missed @LaverCup so much that we had to have a reunion in Shanghai 🇨🇳 ...@tomasberdych we saved you a seat! https://t.co/lnt2ixCDBi +10/09/2017,Sports_celeb,@rogerfederer,HardcoRFans 🙏❤️ https://t.co/hhH1rC2xD5 +10/09/2017,Sports_celeb,@rogerfederer,We’re basically the same height https://t.co/OX7XSmv6t8 +10/09/2017,Sports_celeb,@rogerfederer,"RT @NBA: Prior to today's #NBAChinaGames action in Shanghai, @RogerFederer visited with Golden State! (📹 @Warriors) https://t.co/G6AM9SKQO8" +10/05/2017,Sports_celeb,@rogerfederer,My kind of shoe delivery https://t.co/X6QBEp00LX +10/04/2017,Sports_celeb,@rogerfederer,Last visit to Tokyo was 11 years ago… excited to be back! 🇯🇵 🗼 https://t.co/fViAVKFFBq +10/04/2017,Sports_celeb,@rogerfederer,Japan! https://t.co/rYkwxqVyOq +10/03/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: To reach sustainability is our biggest challenge. Listen to Roger in the full version of the Foundation Talk https://… +09/28/2017,Sports_celeb,@rogerfederer,👔🎬🎥 https://t.co/OPLU5kILuy +09/27/2017,Sports_celeb,@rogerfederer,"Already can't wait until next year, in Chicago 2018. https://t.co/X5wNWumOw2" +09/27/2017,Sports_celeb,@rogerfederer,But we made it in the end! https://t.co/qBb4aSL2NA +09/27/2017,Sports_celeb,@rogerfederer,And some lows... https://t.co/gy89afDXok +06/26/2018,Sports_celeb,@KingJames,#JamesGang👑 More to come in a couple weeks at Nationals https://t.co/FwSMjHm2lF +04/14/2018,Sports_celeb,@KingJames,Preach “PrimeTime”! Once u understand that you’ll be better off. #Facts #HandleYourBusiness ✊🏾🙏🏾 https://t.co/YMwYp1m77d +04/10/2018,Sports_celeb,@KingJames,RT @FOXSportsOH: LeBron James becomes the only player in NBA history to win 10 straight division titles 👑 https://t.co/tNPkyc5TnY +04/10/2018,Sports_celeb,@KingJames,"RT @NBA: Power in #PhantomCam + +#AllForOne https://t.co/tXIHjCkVc1" +04/10/2018,Sports_celeb,@KingJames,All love and respect Young King 🤴🏾! Good luck with the draft and do work at the next level. 🙏🏾 https://t.co/E0lG7xXjbx +04/09/2018,Sports_celeb,@KingJames,"Just heard a new @jerreau track! SHEESH!! “Y’all big lame, probably run your own fan page. My wave man made and I a… https://t.co/YeYRWXuylg" +04/07/2018,Sports_celeb,@KingJames,@MikeMiller_13 Thanks my brother!!! 🙏🏾 +04/05/2018,Sports_celeb,@KingJames,Can’t wait to go see it! Wife and I be waiting so patiently. #HorrorHouseWeHave https://t.co/0R9Lg9om9B +04/05/2018,Sports_celeb,@KingJames,"RT @bycycle: LeBron’s documentary on the Civil Rights Movement debuts tonight. + +Another step toward a media empire. https://t.co/6DkHwbpNBT" +04/05/2018,Sports_celeb,@KingJames,Nick the Quick was a Animal out there! Go check the highlights +04/05/2018,Sports_celeb,@KingJames,🔥🔥🔥🔥🔥🔥🔥🔥. https://t.co/hdP1K0mSk5 +04/04/2018,Sports_celeb,@KingJames,Yes Tonight! Very important ✊🏾 https://t.co/VS6BWoaqgy +04/04/2018,Sports_celeb,@KingJames,"RT @SpringHillEnt: #MLK: ""Our lives begin to end the day we become silent about things that matter."" + +Today we honor Martin Luther King Jr.…" +04/04/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: ✨Lights 🎥 Camera 🎬Action! +Our 6th Graders are on and behind the scenes at our favorite news station @WKYC! Students ar…" +04/03/2018,Sports_celeb,@KingJames,I shed a tear or 2 every single time this episode comes on! Can’t help it🤷🏾‍♂️. I’ve had that same feeling my whole… https://t.co/adnMBfPKI6 +04/02/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: Dressed and ready to impress!💃Another successful PROM PROMISE hosted by Savannah. + +Each Prom PROMISE participant rece…" +04/02/2018,Sports_celeb,@KingJames,@verizon Yesssss!!! 👏🏾👏🏾 @Verizon the future is NOW! We’re on board 💪🏾🖥💻 @LJFamFoundation #IPS #WeAreFamily https://t.co/rZRQzwayjV +04/02/2018,Sports_celeb,@KingJames,Yes sir!! Best 🍕 pies in the world @BlazePizza. Congrats on your day too @QuavoStuntin! 🙏🏾 https://t.co/2nON8ujtLJ +04/01/2018,Sports_celeb,@KingJames,"RT @ComplexSneakers: Nike boys in Cleveland. + +@jtimberlake in the mismatched ‘Equality’ LeBron 15s and @kingjames is a Red PE of the ‘Prime…" +04/01/2018,Sports_celeb,@KingJames,"RT @jtimberlake: A MOMENT. Had no idea @kingjames was jumping on stage tonight. Thanks for celebrating with us, Cleveland...cheers! 🎥: http…" +04/01/2018,Sports_celeb,@KingJames,🏆🏆🏆🏆🏆🏆🏆🏆 Looks about right! #1 All-Time in Ohio for state championships. 🤷🏾‍♂️😜 #IrishPride🍀 https://t.co/46BzPzmbEX +04/01/2018,Sports_celeb,@KingJames,The reason I wore #9 at wideout in HS! Congrats Peter Warrick! https://t.co/IPwnnKggE5 +03/31/2018,Sports_celeb,@KingJames,So proud to announce this project and to partner with @stanleynelson1!! This story and their struggle feels more im… https://t.co/aiBWwY6Eec +03/31/2018,Sports_celeb,@KingJames,CONGRATS Codey!!!! #BlackBoyFly https://t.co/0Zi9ovtVbI +03/29/2018,Sports_celeb,@KingJames,And we now know that black boys need black men in their lives. Doesn't even need to their father. Thank you to ev… https://t.co/GU3lI12ZJy +03/29/2018,Sports_celeb,@KingJames,Everyone should take time to listen to this. Really deep look at what young black men go through. The idea that it'… https://t.co/zwDrt26nmt +03/28/2018,Sports_celeb,@KingJames,"RT @SpringHillEnt: Congrats to @OceanSky18, @KingJames, @mavcarter, @uninterrupted & @FS1 on the #SportsEmmy nomination for #89Blocks 🏆 htt…" +03/27/2018,Sports_celeb,@KingJames,👀🔥🔥🔥 https://t.co/Z09qqhJZY8 +03/26/2018,Sports_celeb,@KingJames,HAPPY #AirMaxDay!!! Which ones will I wear today 🤔🤷🏾‍♂️😁 +03/26/2018,Sports_celeb,@KingJames,Appreciate you @michaelstrahan!! 🙏🏾 Good to see you today and thanks for taking time to come watch me at work. Keep… https://t.co/7032p5OAaa +03/25/2018,Sports_celeb,@KingJames,RT @BonusSports: 💍💍BACK TO BACK State Champs!!! @STVMAthletics are the most Winningest School is Ohio History.. 8 Rings 😱🔥🔥 s/o to @CoachDr… +03/25/2018,Sports_celeb,@KingJames,@DruOnDemand @scottywaltz7 YES SIR Scott!! Congrats young fella. #CarryOnTradtition #BannerWalk #IrishPride +03/25/2018,Sports_celeb,@KingJames,EXTREMELY PROUD!!!! 🙏🏾 https://t.co/2KxyJs60gF +03/24/2018,Sports_celeb,@KingJames,SUPER GEEKED UP!!!! https://t.co/YB1R9bIQaH +03/24/2018,Sports_celeb,@KingJames,Carry On Tradition!! Congrats Boys and @CoachDruJoyce!!!! #IrishPridd 🏆🏆🏆🏆🏆🏆🏆🏆 https://t.co/BroJ0t2m79 +03/24/2018,Sports_celeb,@KingJames,#MarchForOurLives Salute the youth making a REAL impact!! ❤️❤️ +03/23/2018,Sports_celeb,@KingJames,Well guess what the inner #IrishPride woke me up 2 mins before tipoff anyways! Let’s go Irish ☘️ https://t.co/GRWrljzw8B +03/21/2018,Sports_celeb,@KingJames,🙈😵 https://t.co/YQpxQ6HGj4 +03/21/2018,Sports_celeb,@KingJames,That’s exactly the face! 😁👍🏾 https://t.co/AIuXIF4AQV +03/19/2018,Sports_celeb,@KingJames,Super Throwback. Same mindset as when I was a teenager though! #StriveForGreatness🚀 https://t.co/D79KA9VfUP +03/19/2018,Sports_celeb,@KingJames,@timelesssports_ What y’all missing is how gangster he was to even take 28 FGA’s after taking off a year and a half. Straight savage!! +03/19/2018,Sports_celeb,@KingJames,Absolutely FACTS!! The whole squad!! The original true blue ones with icy outsoles. Congrats @Iam1Cent. https://t.co/ajEkGbvhAs +03/19/2018,Sports_celeb,@KingJames,Good luck boys!! Carry On Tradition #bannerchasers #GoIrish🍀🍀 https://t.co/JEz2126c00 +03/19/2018,Sports_celeb,@KingJames,"Well for the younger generation who missed out, I feel for you but guess what!?!? I’m bringing it back to the big s… https://t.co/TvuYomddrs" +03/17/2018,Sports_celeb,@KingJames,That’s all we know!! 🍀🍀 #bannerchasers #GoIrish https://t.co/fdLY859X2x +03/16/2018,Sports_celeb,@KingJames,@BlazePizza Well that’s the real question. 🤔Maybe do 2 pies. The usual and something too to try out. +03/16/2018,Sports_celeb,@KingJames,Just got to Chicago and @BlazePizza sounds so amazing to me right now! May have to make a stop in there! 🍕 🍕 +03/16/2018,Sports_celeb,@KingJames,😭😭😭😭😭 at my crazy teammates!! Luckily we didn’t get a technical for being on the court! https://t.co/SY8Z87TgJ9 +03/16/2018,Sports_celeb,@KingJames,👀🤦🏾‍♂️💪🏾😤🤷🏾‍♂️🙏🏾👑 https://t.co/DINaYlCTqi +03/14/2018,Sports_celeb,@KingJames,Helleva career @joethomas73!!! Next stop Canton for you brother!! 🧥 https://t.co/QtoT0DKUwP +03/14/2018,Sports_celeb,@KingJames,@CassidyHubbarth @joevardon @clevelanddotcom @FSOAllieOop Damn right she gone kill it! Super excited for her and Al… https://t.co/ZkNK14aneN +03/14/2018,Sports_celeb,@KingJames,🤦🏾‍♂️Don’t know what the hell he was thinking!! 🤔Well actually he wasn’t thinking. 🤷🏾‍♂️ #YallWannaSeeADeadBody https://t.co/2lGdH1jRoO +03/12/2018,Sports_celeb,@KingJames,🔥☝🏾💪🏾 #Vinsanity!!! https://t.co/wiXFzM1oLY +03/11/2018,Sports_celeb,@KingJames,👌🏾 #BronnyYoungKing🤴🏾 #JamesGang👑 https://t.co/7zvGeFwvz8 +03/10/2018,Sports_celeb,@KingJames,👀👀👀🔥🔥🔥🔥👑👑👑 https://t.co/sYCqBmMHql +03/09/2018,Sports_celeb,@KingJames,"Definitely not going today without saying #HappyInternationalWomensDay!! Thank you for being loving, caring, powerf… https://t.co/6hoXSs4pLe" +03/09/2018,Sports_celeb,@KingJames,Prayers sent to you right now and up Jalen Brown!!!! Glad to see you walk off on your own 🙏🏾 +03/08/2018,Sports_celeb,@KingJames,Yo @Royceda59!!!!! No more freestyles man! People gotta pay for those bars! @funkflex it’s your fault! SHEESH 🔥🔥🔥🔥🔥🔥🔥 +03/07/2018,Sports_celeb,@KingJames,Congrats bro on passing the Logo on the All-Time scoring list!! @carmeloanthony +03/06/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: From Akron ➡️ Austin, we love talking about how incredible our kids are anywhere we go. Today, we did just that at @SX…" +03/06/2018,Sports_celeb,@KingJames,You’re even more powerful now than ever before @kevinlove!!! Salute and respect brother! ✊🏾💪🏾🙏🏾 https://t.co/6nL6WoZMCm +03/05/2018,Sports_celeb,@KingJames,#JamesGang👑 Plus they won the whole thing too! https://t.co/Z4TEsZlosO +03/05/2018,Sports_celeb,@KingJames,Congrats!!! Loved “Get Out”!! Keep it going 🙏🏾 https://t.co/8tbjOtJRIX +03/05/2018,Sports_celeb,@KingJames,"RT @nikebasketball: Sport takes us beyond the lines. Congrats, @kobebryant for your award for #DearBasketball 🏆🏆🏆🏆🏆🏆 https://t.co/ljeOqzSuBM" +03/05/2018,Sports_celeb,@KingJames,Salute @kobebryant on that Oscar!! #WeAreMoreThanShutUpDribble #UJustContinueToSitBackAndWatch +03/03/2018,Sports_celeb,@KingJames,Straight up man!! Prayers up to the homie @RickRoss 🙏🏾 https://t.co/YpzSFbgm4Y +03/02/2018,Sports_celeb,@KingJames,🤷🏾‍♂️ The young generation would say I was in my bag and haters will say it’s fake. https://t.co/hCXa7OctWR +03/01/2018,Sports_celeb,@KingJames,@swish41 Congrats man on 31K. Same damn spot on the court as 30K. Haha! Amazing!! +03/01/2018,Sports_celeb,@KingJames,That’s super dope!! @StephenCurry30 need to get those framed for sure. https://t.co/vw3Dl9Ms0N +03/01/2018,Sports_celeb,@KingJames,Love what @KDTrey5 is doing in his hometown with that up and coming learning center! Means a lot to those kids. Salute G! 🙏🏾 +03/01/2018,Sports_celeb,@KingJames,RT @MiamiHEAT: 👀 https://t.co/F3Q2W2eI2q +03/01/2018,Sports_celeb,@KingJames,@MiamiHEAT #CLASSIC!!!!!!!!!!! +02/28/2018,Sports_celeb,@KingJames,🙏🏾 #StriveForGreatness🚀 #LLTK👑 https://t.co/7bL0X1cATJ +02/28/2018,Sports_celeb,@KingJames,What a night last night! #StriveforGreatness🚀 #LLTK👑 https://t.co/rVTachBHBV +02/28/2018,Sports_celeb,@KingJames,Appreciate it Boiiiiiiiiii!! Hurry up and get back so I can get more assist! https://t.co/Jpf95LzI5X +02/27/2018,Sports_celeb,@KingJames,RT @mcten: LeBron James’ ringing endorsement of Black Panther: https://t.co/t5iDDzMik8 +02/27/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: Proud to announce the official appointment of @akronschools’ Rockstar, Principal Brandi Davis, as the principal of the…" +02/26/2018,Sports_celeb,@KingJames,RT @SLAMonline: A new multicolor LeBron 15 is making its debut today. https://t.co/hxmareQaQE +02/26/2018,Sports_celeb,@KingJames,"RT @SLAMonline: ""Fruity Pebbles"" LeBron 4 x ""Fruity Pebbles"" LeBron 15. https://t.co/065xYUvyIe" +02/24/2018,Sports_celeb,@KingJames,Work out Bronny!!! Let’s keep improving and making others better. #JamesGang👑 https://t.co/khNmb6adJp +02/22/2018,Sports_celeb,@KingJames,@RAVIEB @pr_RWTW They look so good! Palm trees 🌴 +02/20/2018,Sports_celeb,@KingJames,@AntDavis23 @verizon 💯we’ll be playing an ASG like this one day. Sheesh!! 😎 https://t.co/0FOjSmkJ9h +02/18/2018,Sports_celeb,@KingJames,RT @KlutchSports: Great times celebrating at our annual “The Game Is Everything” All-Star Dinner! @BenSimmons25 @RealTristan13 @JohnWall @K… +02/18/2018,Sports_celeb,@KingJames,RT @NBATV: The @Warriors' @Money23Green gives NBA TV a behind-the-scenes tour of @mavcarter's @uninterrupted studio in Los Angeles! #NBAAll… +02/18/2018,Sports_celeb,@KingJames,Super dope and crazy varsity jacket @kevinlove!! 🔥🔥🔥 https://t.co/WnTdkaFo04 +02/18/2018,Sports_celeb,@KingJames,RT @BlazePizza: @LJFamFoundation @KingJames Thanks for the love! So glad you stopped by and we hope everyone had a great time! +02/18/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: ALL-STAR | @Blazepizza with the #CLUTCH HOOK UP 💪🔥. To @kingjames, you’re a favorite spot, but to his 330 Ambassadors,…" +02/18/2018,Sports_celeb,@KingJames,RT @LJFamFoundation: #NBAAllStar | @kingjames continues to use All-Star as a vehicle to bring one-of-a-kind experiences to his 330 Ambassad… +02/18/2018,Sports_celeb,@KingJames,Freaking amazing man!!!!! Unbelievable time for father and son! WOW https://t.co/b0PoumJ3eM +02/18/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: #NBAAllStar | 👀👀 LeBron’s 330 Ambassadors take a hard-earned break to watch @teamlebron practice. After all, it wouldn…" +02/18/2018,Sports_celeb,@KingJames,Something lite bro!!!! 🤷🏾‍♂️ https://t.co/beqhWFwYei +02/17/2018,Sports_celeb,@KingJames,#wewillnotshutupanddribble https://t.co/LyenGRKTUE +02/16/2018,Sports_celeb,@KingJames,Thank you Love you @YaraShahidi!! #LoveOurBlackWomen. All of you are special! ✨⭐️ please remember and know that 👸🏽… https://t.co/5VRFJZ4HBk +02/15/2018,Sports_celeb,@KingJames,RT @KDTrey5: Rolling with @carichampion @kingjames: https://t.co/uRkwepGMc0 https://t.co/cmEE5YHpef +02/15/2018,Sports_celeb,@KingJames,💯 https://t.co/RkO6JzYHli +02/15/2018,Sports_celeb,@KingJames,🙏🏾✊🏾💪🏾👑 https://t.co/HeFzH647fv +02/13/2018,Sports_celeb,@KingJames,This is gonna be fun!! Stephen and Jamal are so talented. Very excited to work with them on this. Stay tuned!… https://t.co/VMAshhXCXD +02/13/2018,Sports_celeb,@KingJames,Beautiful Black Empowered Women!! Love y’all!! ❤️ https://t.co/dTXqTNeceV +02/10/2018,Sports_celeb,@KingJames,🔥🔥🔥🔥🔥🔥🔥. Yeah glad you kept those tucked https://t.co/Y1eocdAIZI +02/10/2018,Sports_celeb,@KingJames,RT @NBA: LeBron's #NBAKicks in ATL. https://t.co/3m94adb4sH +02/10/2018,Sports_celeb,@KingJames,"RT @SoleCollector: #SoleWatch: @KingJames debuts the ""Diamond Turf"" Nike LeBron 15 in red. https://t.co/cgTbMYsR28" +02/09/2018,Sports_celeb,@KingJames,👀👀👀💵🔥😍💪🏾 https://t.co/S3YpaAig4R +02/09/2018,Sports_celeb,@KingJames,"HUGE s/o to @StowStudCo & @STVMAthletics. Cheer, student section, community, men’s & women’s bball, the whole famil… https://t.co/otoK1AiwVo" +02/08/2018,Sports_celeb,@KingJames,Happy Gday my G!! 🙏🏾🎂🎊🎉💯 https://t.co/JU74XvZF0I +02/07/2018,Sports_celeb,@KingJames,#Facts 💯 Embrace the struggle! Salute and congrats on that performance and Ring in the big dance @NFoles_9 https://t.co/i4fq9QcSge +02/07/2018,Sports_celeb,@KingJames,Was hoping for the best news when I saw the play after the game. 🤦🏾‍♂️!! Best wishes and have a speedy healthy reco… https://t.co/BlHCfVS5Z4 +02/06/2018,Sports_celeb,@KingJames,50K mins played though @swish41?!?!? Sheesh bro that’s insane. Congrats man! That’s what you call punching in your clock daily! +02/05/2018,Sports_celeb,@KingJames,@Eagles @LG_Blount *Wait +02/05/2018,Sports_celeb,@KingJames,"Hold What A Min, Y’all thought I was finish! #FreeMeek, Congrats @Eagles and the whole city of Philadelphia on thei… https://t.co/GaYHUce723" +02/05/2018,Sports_celeb,@KingJames,#FreeMeek +02/05/2018,Sports_celeb,@KingJames,This is one incredible game to say the least obviously!! AMAZING #SuperBowl2018 +02/05/2018,Sports_celeb,@KingJames,WOW!!!!!!! +02/04/2018,Sports_celeb,@KingJames,Best of luck to both the @Patriots & @Eagles today in the Granddaddy of them all! May the best team be victorious 🙏🏾 #SuperBowl +02/04/2018,Sports_celeb,@KingJames,Salute and congrats to two of my favorites of All-Time @RandyMoss & @terrellowens on the HOF nod! Well damn deserve… https://t.co/uMngrzllVH +02/01/2018,Sports_celeb,@KingJames,S/o to all my #ipromise kids & families ☝🏾🙏🏾🙌🏾💪🏾💪🏾💪🏾🔥!! @ljfamfoundaton #WeAreFamily https://t.co/rTRBNpcHMl +01/31/2018,Sports_celeb,@KingJames,Congrats to my bro @DwyaneWade on passing Larry the Legend Bird in the all time scoring list! #FlashDance⚡️ +01/31/2018,Sports_celeb,@KingJames,C’mon @JHarden13!!! Now that’s insane G! 60 point Triple Dub. Sheesh!!! 🔥🔥🔥🔥🔥 +01/29/2018,Sports_celeb,@KingJames,"Happy Gday to one of my day 1s @DruOnDemand!!! Love bro, enjoy your day my brother!! #LiveLaughLove" +01/29/2018,Sports_celeb,@KingJames,Happy Bday Coach Pop!! One of the best to ever do(in my opinion thee best) and even more great guy! #Respect +01/28/2018,Sports_celeb,@KingJames,@JColeNC *aint the same +01/28/2018,Sports_celeb,@KingJames,Happy Bday to one of the best MC’s ever @JColeNC! All we know they sit the same 🙏🏾✊🏾👑 https://t.co/XnFWtqpsI8 +01/28/2018,Sports_celeb,@KingJames,I do get to pick who starts on my #TeamLeBron team since I had an injury on my team correct?!?! By the @Yg_Trece happy to have u bro!! +01/28/2018,Sports_celeb,@KingJames,@KyrieIrving & @StephenCurry30 just simply amazing!! Sheesh man! 🔥🔥🔥🔥🔥🔥🔥 +01/27/2018,Sports_celeb,@KingJames,Prayers sent to @FlyDre21! Hope you gone be good homie. 🙏🏾 +01/27/2018,Sports_celeb,@KingJames,25K large!!!!! Congrats my brother @carmeloanthony #WalkingBuckets +01/27/2018,Sports_celeb,@KingJames,#WeAreFamily👊🏾 https://t.co/0wiGGUus5k +01/27/2018,Sports_celeb,@KingJames,🙏🏾 https://t.co/CoBg8t2ktz +01/27/2018,Sports_celeb,@KingJames,Thoughts out to @boogiecousins! Hope you good big fella. 🙏🏾 +01/26/2018,Sports_celeb,@KingJames,RT @uninterrupted: 👀 https://t.co/pUeSSelR0V +01/25/2018,Sports_celeb,@KingJames,🙏🏾 https://t.co/tBML5X6WYa +01/25/2018,Sports_celeb,@KingJames,Thank you! 💪🏾 https://t.co/iMGofUVHNq +01/25/2018,Sports_celeb,@KingJames,☝🏾 #StriveForGreatness 🚀 https://t.co/u5jMoUEN79 +01/25/2018,Sports_celeb,@KingJames,Yo @StephenCurry30 that was fun!! Definitely should’ve been televised. 🤷🏾‍♂️ #AllStarDraft⭐️ +01/24/2018,Sports_celeb,@KingJames,"Thank you, Thank you, Thank you to all my family, friends, colleagues, business partners and fans for reaching out… https://t.co/LobQVjOaIh" +01/23/2018,Sports_celeb,@KingJames,Yo @boogiecousins chill out man!! Sheesh!!! Super sick stat line +01/20/2018,Sports_celeb,@KingJames,🤣🤣🤣🤣🤣🤣! U forgot Teen 🐺 too. https://t.co/lUGigkAJL9 +01/20/2018,Sports_celeb,@KingJames,Just trying to be remembered and leave a mark on the game. Truly honored and blessed! 🙏🏾👑#StriveForGreatness🚀 https://t.co/I0ZULtrILJ +01/19/2018,Sports_celeb,@KingJames,🤩🤷🏾‍♂️👑 https://t.co/Qj24sUqUNN +01/19/2018,Sports_celeb,@KingJames,Man was I garbage tonight! 🤢💩🤮😷!!!! Thank God for teammates. Appreciate it fellas ✊🏾🙏🏾#StriveForGreatness🚀 +01/17/2018,Sports_celeb,@KingJames,Happy Gday to my brother from another @DwyaneWade!! Been my dog since we started this journey almost 15 years ago.… https://t.co/1v85vm2brW +01/15/2018,Sports_celeb,@KingJames,-Injustice Anywhere Is A Threat To Justice Everywhere- Our Lives Begin To End The Day We Become Silent About Thing… https://t.co/YgsYFMa4wb +01/14/2018,Sports_celeb,@KingJames,"In my own words, unscripted. 👑UNTIL WE ALL WIN #EQUALITY https://t.co/iy3fF40az8" +01/13/2018,Sports_celeb,@KingJames,Man just landed back in Cleveland and I have to say in the 29 years I've lived here this is the coldest I've felt i… https://t.co/aZE2in9sIw +01/13/2018,Sports_celeb,@KingJames,Definitely stepped out by a tiny bit after seeing it over again! Great call. Needed to be in OKC on that drive. Lol. Live and you Learn +01/12/2018,Sports_celeb,@KingJames,"RT @AC360: ""Let me be clear.... the people of Haiti have been through more, withstood more, fought back against more injustice... than our…" +01/12/2018,Sports_celeb,@KingJames,"RT @CNN: ""Not racial. Not racially charged. Racist. ... The sentiment the President expressed today is a racist sentiment."" Anderson Cooper…" +01/11/2018,Sports_celeb,@KingJames,#NBAVote my lil bro @BenSimmons25! He definitely got next +01/11/2018,Sports_celeb,@KingJames,#NBAVote my bro aka Yellow @carmeloanthony!! +01/11/2018,Sports_celeb,@KingJames,#NBAVote my brother aka the Point God @CP3! +01/11/2018,Sports_celeb,@KingJames,@KDTrey5 Congrats G on 20K!! Lots and lots of buckets! Easy too +01/10/2018,Sports_celeb,@KingJames,Going to be one of the greatest days of my life and my kids when this happens! #WeAreFamily https://t.co/U9KcXv7iyO +01/09/2018,Sports_celeb,@KingJames,Hope the homie @Klow7 is straight! Thinking about you G! 🙏🏾 +01/09/2018,Sports_celeb,@KingJames,@Rachel__Nichols U get a full time Tequila bar I'm coming on the show!! 🤣🤣🤣🍸🤷🏾‍♂️ +01/08/2018,Sports_celeb,@KingJames,"#NBAvote my brother from another, day 1 @DwyaneWade" +01/08/2018,Sports_celeb,@KingJames,#NBAvote My lil pit bull @isaiahthomas!! +01/08/2018,Sports_celeb,@KingJames,@djmeel I saved you money! Lucky I didn't bet you. U know better. #GoIrish☘️ +01/07/2018,Sports_celeb,@KingJames,@Channing_Frye Hahahahaha!!!! +01/07/2018,Sports_celeb,@KingJames,#NBAVote @kevinlove to the All-Star game! I mean just look at his monster year so far! I see you working boooooiiiiii!! +01/06/2018,Sports_celeb,@KingJames,Happy Gday to my brother from day 1 @SianCotton85!! 🙏🏾💪🏾✊🏾👑 +01/05/2018,Sports_celeb,@KingJames,Man I just had the GREATEST Thai massage of all time!! Got me feeling like a slinky. Straight up!! +01/05/2018,Sports_celeb,@KingJames,Congrats to my G @russwest44 on his signature shoe!! Welcome to the gang bro! 🙏🏾✊🏾💪🏾👑 +01/03/2018,Sports_celeb,@KingJames,Retro coming soon..??? Just maybe 🤷🏾‍♂️😐💪🏾👑 https://t.co/i4oJcDLtzG +01/02/2018,Sports_celeb,@KingJames,Let's go!!! 🙏🏾💪🏾👑 #WeAreFamily https://t.co/ZpkmagrjX9 +12/31/2017,Sports_celeb,@KingJames,🙏🏾✊🏾💪🏾👑. THANK YOU https://t.co/iWozwH9QPk +12/30/2017,Sports_celeb,@KingJames,🙏🏾💪🏾👑 https://t.co/z0XkOSTaeN +12/30/2017,Sports_celeb,@KingJames,Love you guys! Thanks! 🙏🏾 https://t.co/cpiiCFhdaI +12/30/2017,Sports_celeb,@KingJames,My G appreciate it! 🙏🏾 https://t.co/ah7jHapKuS +12/30/2017,Sports_celeb,@KingJames,My G appreciate it! 🙏🏾 https://t.co/iexBPp6GpG +12/25/2017,Sports_celeb,@KingJames,Being away from my family for the Holidays for work is the absolute worst! Love what I do and wouldn't change it fo… https://t.co/jOHHYy38lA +12/25/2017,Sports_celeb,@KingJames,Family ties! We push each so we can stand alone when needed but we move as 1 unit so it makes us even stronger! 💪🏾✊… https://t.co/iKrPciNROi +12/24/2017,Sports_celeb,@KingJames,Yes sir!! Oh I already know https://t.co/WVUulTpyUB +12/24/2017,Sports_celeb,@KingJames,RT @SLAMonline: LeBron's Christmas Day highlight package. 🔥🔥🔥 https://t.co/eR0RrDJhYl +12/23/2017,Sports_celeb,@KingJames,👌🏾🔥 #StriveForGreatness https://t.co/qxU6lImbBt +12/23/2017,Sports_celeb,@KingJames,"It's 6 o'clock in the morning, let's get these pads lit up!🔥🚨🏆💪🏾👌🏾#StriveForGreatness🚀 https://t.co/qBFA7z9bCO" +12/22/2017,Sports_celeb,@KingJames,You damn right y'all are!! Beautiful Powerful Smart Black Women! ✊🏾🙏🏾👸🏾 https://t.co/m2WP0o6UJ9 +12/22/2017,Sports_celeb,@KingJames,Go check it out now. Lots of insight from of my closest that has seen the journey. https://t.co/4WuwzXMloC 👑🦁🙏🏾… https://t.co/3EPKXrkAn4 +12/21/2017,Sports_celeb,@KingJames,✊🏾🙏🏾👑 https://t.co/T4HSM0zjBH +12/21/2017,Sports_celeb,@KingJames,Well she actually has more game than me! Amazing examples inside our Kingdom! Queen 👸🏾 James get it girl!!… https://t.co/8k2CMXb7EW +12/21/2017,Sports_celeb,@KingJames,RT @GQMagazine: These 4 pairs got Nike its mojo back https://t.co/11TwSVP3vM https://t.co/LSNc9XrXTx +12/21/2017,Sports_celeb,@KingJames,"RT @LJFamFoundation: You never know who it’ll be when the bell rings! Last night, a team of #EastOhio @Chase elves visited five #IPromise f…" +12/21/2017,Sports_celeb,@KingJames,RT @LJFamFoundation: 🥁🥁🥁🚨🔥👨‍⚕️👩‍⚕️🏆💪👍!!!! Translation: we’re proud to announce our long term partnership with #CrystalClinic Orthopaedic Ce… +12/20/2017,Sports_celeb,@KingJames,@shonrp2 You already know! ✊🏾💪🏾👑 +12/20/2017,Sports_celeb,@KingJames,@PCampbell21 Yes sir!! ✊🏾💪🏾👑 +12/20/2017,Sports_celeb,@KingJames,Congrats young 👑 @shonrp2!!! Keep going. #StriveForGreatness🚀 #OH https://t.co/Cn3LduD7Xr +12/20/2017,Sports_celeb,@KingJames,That's amazing!!! Keep going young 👑 @PCampbell21!! #IrishAlumProud☘️ #OH https://t.co/v63yIFJET8 +12/19/2017,Sports_celeb,@KingJames,"This hurts my heart but HUGE s/o to Gracie, @stowstudco & the entire #Stow community. You guys were unbelievable. A… https://t.co/tgMrevJK6W" +12/19/2017,Sports_celeb,@KingJames,"Congrats @kobebryant!! Dayuumm man NOT1, NOT 2.. ok it is 2 jerseys going up! Amazing G and appreciate the inspirat… https://t.co/YruxajNGLj" +12/18/2017,Sports_celeb,@KingJames,👀👀👀😐 YOU DIDN’T HAVE TO DO ‘EM LIKE THAT EB!! That’s not right. Smh. #GETMYMANON #SCTOP10 #WingfootsClassic… https://t.co/3yogswIIfu +12/18/2017,Sports_celeb,@KingJames,So proud of everyone at @LJFamFoundation!! This is your story. Thank you! https://t.co/bCiVoMUiS3 +12/18/2017,Sports_celeb,@KingJames,The move was cool but what's the best part of the whole thing is my guys @kevinlove and Kyle reaction!! 🤙🏾 https://t.co/SqGyLjCeLp +12/16/2017,Sports_celeb,@KingJames,@blackthought Went in something crazy on @funkflex!! SHEESH!! Went for 10 mins straight. Always been a fan of his style and bars. #HipHop101 +12/16/2017,Sports_celeb,@KingJames,Yeah that pretty much sums it up! @CP3 @TrevorAriza https://t.co/ffKGvIiDw3 +12/16/2017,Sports_celeb,@KingJames,Man this game is NUTS!!!!! #OKCvsPHI #AFansTreat +12/15/2017,Sports_celeb,@KingJames,Yes they are!!! 🔥🔥🔥🔥 https://t.co/xwVh3efXPh +12/15/2017,Sports_celeb,@KingJames,👀👀👀 y’all got me in there singing the wrong alma mater!! Man - vicious. Pumped for you guys. Hope you're enjoying t… https://t.co/tVqtLSxUzZ +12/15/2017,Sports_celeb,@KingJames,WHO DID THIS!!!?Let them know I'm looking for them😂😂😂😂 #StriveForGreatness🚀 https://t.co/d8DJ9EGAEF +12/15/2017,Sports_celeb,@KingJames,It ain’t no game out here with @stowstudco. Turning the #WingfootsClassic into a war. Y’all LUCKY I like pups… https://t.co/pcuny6qQzN +12/15/2017,Sports_celeb,@KingJames,RT @SpringHillEnt: #DoOrDare is LIVE!!! You won't believe the CRAZY dare @Usher and @jermainedupri do to win money for their favorite chari… +12/14/2017,Sports_celeb,@KingJames,Of course they are! Let's go ladies! #GoIrish☘️ https://t.co/1xmjsvw6uw +12/14/2017,Sports_celeb,@KingJames,Yes they are ready!! #GoIrish☘️ https://t.co/lA7XXZscGv +06/25/2018,Sports_celeb,@carmeloanthony,"I can go on and on, but at the end of the day, to make a long story short, HAPPY BORN DAY!!! Love ❤️ You" +06/25/2018,Sports_celeb,@carmeloanthony,The way you hold our family down is Remarkable. I know you’ve been through a lot. Somethings people just would neve… https://t.co/MiuCHGoi0v +06/25/2018,Sports_celeb,@carmeloanthony,I want to acknowledge A VERY SPECIAL PERSON on A VERY SPECIAL DAY!!! @lala It’s very hard to put in words how speci… https://t.co/eeSbaKh783 +06/24/2018,Sports_celeb,@carmeloanthony,"Oh You Mad, Huh? 😂 “Take A Step Back, Evaluate, What Is Important, And Enjoy Life” +#STAYME7O https://t.co/emlzaQr5pH" +06/24/2018,Sports_celeb,@carmeloanthony,"So You Mean To Tell Me...NVRMND +#STAYME7O https://t.co/pRcawCJqzI" +06/23/2018,Sports_celeb,@carmeloanthony,"😲 OH WORRRDDD? 😆😂😝 +#STAYME7O https://t.co/2bxvcxAJXq" +06/21/2018,Sports_celeb,@carmeloanthony,"BLACK EFFECT +“What’s Understood Doesn’t Need To Be Spoken on” +This is 🔥. Thanks 🙏 sis @beyonce +#STAYME7O https://t.co/cShI3xVlAK" +06/21/2018,Sports_celeb,@carmeloanthony,"BULLETPROOF DIARIES *coming soon +#STAYME7O https://t.co/kw8nZ84huR" +06/20/2018,Sports_celeb,@carmeloanthony,"“Fashion Has Always Been A Repetition Of Ideas, But What Makes It New Is The Way You Put It Together” +#STAYME7O https://t.co/whBQtZICXb" +06/20/2018,Sports_celeb,@carmeloanthony,"Front Row Shenanigans +@MaisonValentino https://t.co/GjKN2ixFhc" +06/20/2018,Sports_celeb,@carmeloanthony,“For All The Low Hangin Fruit. You Get Your Work Done Early So You Can Enjoy The Fruit Of Your Labour” 😝… https://t.co/udiimvM0r1 +06/20/2018,Sports_celeb,@carmeloanthony,"“Life Can Only Be Understood Backwards; But It Must Be Lived Forward” +#STAYME7O https://t.co/JfuCzDoAc6" +06/18/2018,Sports_celeb,@carmeloanthony,"*Mood +“All Critics Can Duck Sick” +#STAYME7O https://t.co/mJfSWP9kYC" +06/18/2018,Sports_celeb,@carmeloanthony,"We Live On A Blue Planet 🌎 That Circles Around A Ball Of Fire 🔥 Next To A Moon 🌚 That Moves The Sea 🌊, And You Don’… https://t.co/xTAEVptSSC" +06/17/2018,Sports_celeb,@carmeloanthony,"IF YOU KNOW ME, YOU KNOW!!! +@nas +#STAYME7O https://t.co/nta9Lh519b" +06/06/2018,Sports_celeb,@carmeloanthony,#STAYME7O @kingjames @NBA2k cover athlete #Brotherhood https://t.co/hmcy5qUHOD https://t.co/R1R9ShdpbF +05/29/2018,Sports_celeb,@carmeloanthony,PROUD FATHER Moment!!! #STAYME7O https://t.co/eEgCRfHsMj +05/29/2018,Sports_celeb,@carmeloanthony,"Proud of My New NYC 5th grade AAU team #BlackOpsCadets +GREAT Weekend at The Memorial Day TAKEOVER Tournament. Lost… https://t.co/69cA3p6m7X" +05/24/2018,Sports_celeb,@carmeloanthony,"AJ2 MELO #rebirth @finishline +#STAYME7O + +Early footwear release available: +Grand Opening 5/26 @ 8AM +Finish Line Par… https://t.co/YAwE8gQx4J" +05/21/2018,Sports_celeb,@carmeloanthony,"""The Dream Is 🆓, The Hustle Sold Separately"" +BLACK Ops +#STAYME7o https://t.co/Eynhu5Trz0" +05/14/2018,Sports_celeb,@carmeloanthony,"Happy Mother’s Day to the strongest and bravest woman I know!!! Thanks for being our rock @lala +#STAYME7O https://t.co/WmPZMYybIl" +05/03/2018,Sports_celeb,@carmeloanthony,"Congrats @aeneas_dicosmo on narrowing it down, big decisions ahead. https://t.co/lwCRcVA0VH" +04/15/2018,Sports_celeb,@carmeloanthony,"FROZEN MOMENT - NEW CHAPTER +@Jumpman23 +#STAYME7O +#JUMPMAN https://t.co/6tXrviSCi6" +04/13/2018,Sports_celeb,@carmeloanthony,INSPIRATION 🙏🏽 @cp3 #STAYME7O https://t.co/vDrf02SL5R +04/11/2018,Sports_celeb,@carmeloanthony,"Happiness is to be found within your own life, in your thoughts at this very moment. You yourself are most noble an… https://t.co/1TcxKIzkHa" +04/05/2018,Sports_celeb,@carmeloanthony,"The #DreamStillLives… What’s yours? +#STAYME7O https://t.co/WbqUdgUmq6" +04/05/2018,Sports_celeb,@carmeloanthony,"RT @StevieWonder: On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for his dre…" +04/04/2018,Sports_celeb,@carmeloanthony,The #IAmMLKJr documentary…catch it tonight 9/8c @paramountnet #MLK50 https://t.co/zQfeDfizgI +04/04/2018,Sports_celeb,@carmeloanthony,"""Injustice anywhere is a threat to justice everywhere.” - #MLK50 #STAYME7O https://t.co/toHzA8Ea4f" +03/27/2018,Sports_celeb,@carmeloanthony,"""TRIUMPH"" - in theaters until 3/29 NYC & LA +#PerryWallaceFilm +#STAYME7O +https://t.co/SWDw2gcVaU https://t.co/AvYyKMF0zQ" +03/23/2018,Sports_celeb,@carmeloanthony,"Partnering with @MTV @NAACP and my city of Bmore to support #MarchForOurLives. + +Sending over 4,500 kids from Balti… https://t.co/8S4k6JQ47x" +03/19/2018,Sports_celeb,@carmeloanthony,"“Haters Gonna Say This Is Photoshopped” +Sorry @Money23Green +#STAYME7O https://t.co/URMKDX9vMp" +03/15/2018,Sports_celeb,@carmeloanthony,"I’m sure we made The whole MHP and McHP(Those who know, know) proud. B’MORE period was represented to the world. On… https://t.co/26eyLby2qZ" +03/15/2018,Sports_celeb,@carmeloanthony,One of the greatest days of my life. Playing against my best friend first round of NCAA tourney. We sat in my house… https://t.co/KR0EmoTArh +03/15/2018,Sports_celeb,@carmeloanthony,"Squad Up +One Down!!! +Sorry @JHarden13 😂 +#STAYME7O https://t.co/noJUPIm9rg" +03/11/2018,Sports_celeb,@carmeloanthony,RT @DwyaneWade: They need our help! I'm asking my NBA fam to join us in raising money to send kids from underserved communities to March….@… +03/11/2018,Sports_celeb,@carmeloanthony,RT @DwyaneWade: Spoke to my brother @carmeloanthony & we're standing w/ students from MSD. We both come from communities where gun violence… +03/10/2018,Sports_celeb,@carmeloanthony,I'm giving and supporting to my community and the students of Baltimore. @TheNBPA Foundation will match up to $25k… https://t.co/oZjKAED0xB +03/10/2018,Sports_celeb,@carmeloanthony,.@DwyaneWade and I on the same page... Standing with the students of MSD - both of us come from hometowns where the… https://t.co/QsCrGAMAeA +03/08/2018,Sports_celeb,@carmeloanthony,"Happy Born Day 👑 +""If I Could Give You One Thing In Life, I Would Give You The Ability To See Yourself Through My Ey… https://t.co/9y5WG5D6qA" +03/01/2018,Sports_celeb,@carmeloanthony,"“The Future Is In Good Hands” +Young Kings 👑 +@Diddy +#STAYME7O https://t.co/Y6sWSM2dll" +02/27/2018,Sports_celeb,@carmeloanthony,"We each move forward, secure on our own earth, not the earth of others. Happiness is something we must create for o… https://t.co/LD082sodJ6" +02/24/2018,Sports_celeb,@carmeloanthony,“Breath of fresh air” #STAYME7O @espn @okcthunder #ThunderUP https://t.co/RcVUJPlWA8 +02/24/2018,Sports_celeb,@carmeloanthony,"📷hat: “Sage Camo” +#FreshGreens +#STAYME7O https://t.co/V0gCpFSj6X" +02/24/2018,Sports_celeb,@carmeloanthony,"📷 Hat: “Everyday Camo” +MELOxGoorinBros +#FreshGreens +#STAYME7O https://t.co/5JFfjsw57R" +02/24/2018,Sports_celeb,@carmeloanthony,"New Collection “Fresh Greens” +MELOxGoorinBros. +📷 hat: Melo Mint +#STAYME7O https://t.co/lkangZXTIi" +02/21/2018,Sports_celeb,@carmeloanthony,"TRUST:NOBODYs +RED Vibes 👂 🔊🔊”BLUE LACES” +#VictoryLap +#STAYME7O https://t.co/qh1Pz5rZfY" +02/18/2018,Sports_celeb,@carmeloanthony,Tune in tonight @NBAonTNT 7p ET ‘Sports & Society’ #STAYME7O https://t.co/TkL74fMwJY +02/18/2018,Sports_celeb,@carmeloanthony,"RT @NBAonTNT: #NBAAllStar pregame coverage will include a special Sports & Society roundtable show featuring Dwyane Wade, Chris Paul & spec…" +02/17/2018,Sports_celeb,@carmeloanthony,"“We Will Never Rush The Hands Of Time” +#STAYME7O https://t.co/MFlzaYxrye" +02/16/2018,Sports_celeb,@carmeloanthony,Sports & Society...airing Sunday 2/18 7p ET on TNT #StayMe7o https://t.co/TzUHmFdURY +02/14/2018,Sports_celeb,@carmeloanthony,"***❤️ MINE FOREVER!!! +HAPPY VALENTINES DAY to MY WIFE @lala +#STAYMe7O https://t.co/lbUzpcOpV3" +02/02/2018,Sports_celeb,@carmeloanthony,"All Praise Due 🙏 +#STAYME7O https://t.co/uTFy6Oplgt" +01/28/2018,Sports_celeb,@carmeloanthony,RT @TeamMe7o: Big ups @carmeloanthony on hitting 25k points! Going strong 💪💪 #StayMe7o https://t.co/3465XfoCZr +01/28/2018,Sports_celeb,@carmeloanthony,.@Yg_Trece congrats on it 🙏 #NBAallstar +01/27/2018,Sports_celeb,@carmeloanthony,"“When The Music Changes, So Does The Dance” *AfrikanProverbs +#STAYME7O https://t.co/Te1WZaVUng" +01/24/2018,Sports_celeb,@carmeloanthony,Big ups to my guy @russwest44 🙏🏾 #NBAAllstar #ThunderUP +01/22/2018,Sports_celeb,@carmeloanthony,Congrats @kingjames 🙏🏽 #NBAAllStar captain leading the East #StriveforGreatness #StayMe7o +01/21/2018,Sports_celeb,@carmeloanthony,"“Canadian Tux” +Yeah Ehhh, Dun Kno! 😆 +#STAYME7O https://t.co/avYjkZbEsA" +01/17/2018,Sports_celeb,@carmeloanthony,"“Its The Repetition Of Affirmations That Leads To Belief. And Once That Belief Becomes A Deep Conviction, Things Be… https://t.co/dR690D6qdq" +01/15/2018,Sports_celeb,@carmeloanthony,"“Progress Will Always Be Uncomfortable And Noisy” +#MLKDay +#STAYME7O https://t.co/SaVCF1Yuks" +01/15/2018,Sports_celeb,@carmeloanthony,"EQUALITY @Jumpman23 + +MELO AJ1: https://t.co/OYSn9yfWX5 + +#Hoodieszn: https://t.co/u3i9tSB1CK + +#STAYME7O https://t.co/gBhjsxsBis" +01/15/2018,Sports_celeb,@carmeloanthony,Proud of our work with the W.K. Kellogg Foundation. Tune in tomorrow at 6:30pm CST to celebrate our common humanity… https://t.co/VpH44KKxhC +01/14/2018,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/TWGW4dBTUL +01/13/2018,Sports_celeb,@carmeloanthony,Vote @CP3 @KingJames @DwyaneWade @russwest44 @Yg_Trece #NBAAllStar https://t.co/Km4eG8FZXc #StayMe7o +01/04/2018,Sports_celeb,@carmeloanthony,New #MeloMoji's are live...check them out at https://t.co/27tQpZL3OU & https://t.co/h72GW44ZFN #ThunderUp #StayMe7o https://t.co/3b1hieFpEV +12/27/2017,Sports_celeb,@carmeloanthony,"GRA7EFUL +#STAYME7O https://t.co/ITD69kiFHj" +12/14/2017,Sports_celeb,@carmeloanthony,Respect. #YearInSearch @google #StayMe7o https://t.co/1zwbOKrdE1 +11/21/2017,Sports_celeb,@carmeloanthony,Thank u @footlocker... #Greatnessdoesgood New shoes donated in the USA will be sent directly to Puerto Rico for thi… https://t.co/GrafWrrF2r +11/19/2017,Sports_celeb,@carmeloanthony,"INNER-PEACE +#STAYME7O https://t.co/Ss6rX2d8hU" +11/18/2017,Sports_celeb,@carmeloanthony,Proud of @jessomatt on all the hard work she’s put in with #UnchartedPower - big time POWER play @upowerco #StayMe7o https://t.co/bUoQGFJl9t +11/16/2017,Sports_celeb,@carmeloanthony,Working with @footlocker give back to my people in Puerto Rico. Join us in this fight https://t.co/PtprbCOCgI… https://t.co/gVd6MggTJB +11/15/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/2JiB1lTJlG +11/14/2017,Sports_celeb,@carmeloanthony,"Me7o Monday’s +#STAYME7O https://t.co/qPxZU9W5D5" +11/14/2017,Sports_celeb,@carmeloanthony,"“Be The Reason Someone Smiles” +#800Families800ReasonsToSmile +#STAYME7O https://t.co/hRyLUioD3Z" +11/11/2017,Sports_celeb,@carmeloanthony,"#HoodieSzn + +https://t.co/MgNCeD0Fd3 https://t.co/4iwh4DQkYu" +11/09/2017,Sports_celeb,@carmeloanthony,"#HoodieSzn #StayMe7o + +https://t.co/1Iapu7hLUg https://t.co/bCn5s5veDo" +11/05/2017,Sports_celeb,@carmeloanthony,"Always Remember Someone Is Looking Up To You!! +#STAYME7O https://t.co/hc9uIKNJcF" +10/31/2017,Sports_celeb,@carmeloanthony,We distributed 100k lbs of food and water to the families & children of #PuertoRico... Join us @Youcaring #StayMe7o… https://t.co/rHDnsy7q0E +10/23/2017,Sports_celeb,@carmeloanthony,"#ValentinoResort2018 +@MaisonValentino +#STAYME7O https://t.co/XEQfJwbnl5" +10/23/2017,Sports_celeb,@carmeloanthony,"@MaisonValentino +#valentinoresort18 “Just The Beginning” +#STAYME7O https://t.co/fWZVQfllGd" +10/21/2017,Sports_celeb,@carmeloanthony,"RT @manuel_aj_laboy: Despite of current challenges, Puerto Rico responded to #AmazonHQ2 RFP. Our message is bold and clear: We will emerge…" +10/19/2017,Sports_celeb,@carmeloanthony,"“You Watched Me Walk Through Hell, Now Watch Me Walk Up Out It” +#STAYME7O https://t.co/w9h0LgAqv4" +10/13/2017,Sports_celeb,@carmeloanthony,We need to focus on tragedies that don't always get the attention they deserve. #PuertoRico @youcaring… https://t.co/hdLOA02so6 +10/11/2017,Sports_celeb,@carmeloanthony,"At The Center of YOUR Being, You Have The Answer. You Know Who You Are And You Know What You Want!!! +#STAYME7O https://t.co/R7H7Ofx8b7" +10/09/2017,Sports_celeb,@carmeloanthony,I'm working w @feedthechildren to make sure all those affected by #HurricaneMaria in #PuertoRico get the supplies t… https://t.co/DS2mfcw4gs +10/09/2017,Sports_celeb,@carmeloanthony,Much love to Earl Lloyd for paving the way for me to play in this league. #TheFirstToDoIt in theatres February 2018… https://t.co/5ya2Sm536g +10/06/2017,Sports_celeb,@carmeloanthony,"Mad I missed Laundry day. +Kiyan w/ the Spin Cycle!!! +#STAYME7O https://t.co/ofd7PXnM1h" +10/05/2017,Sports_celeb,@carmeloanthony,Help aid the relief efforts of #HurricaneMaria by donating to my @youcaring page. #PuertoRico needs help. #StayMe7o… https://t.co/Th1vv6sHIx +10/03/2017,Sports_celeb,@carmeloanthony,"Tune in to #FindingYourRoots, season 4, with @HenryLouisGates premiering tonight, Oct 3 at 8/7c on @PBS #StayMe7o" +09/30/2017,Sports_celeb,@carmeloanthony,"Puerto Rico is without power, but NOT powerless. Teaming up w/ #CarmeloAnthonyFoundation to aid the relief efforts.… https://t.co/z8Wig39Za3" +09/29/2017,Sports_celeb,@carmeloanthony,Talking ball & style with @GothamMag... Check the Fall issue cover story out now #StayMe7o https://t.co/qd1gDLcGwG https://t.co/Ur092LzExG +09/28/2017,Sports_celeb,@carmeloanthony,"Road to recovery in #PuertoRico won't be easy, +but I'll be there every step of the way. Visit my @youcaring page… https://t.co/Y4l8mWswjv" +09/25/2017,Sports_celeb,@carmeloanthony,"Dear NEW YORK, + +From the day I first met you, I knew we were meant to be together... https://t.co/0kFojmkrve https://t.co/iMbLpTmZtk" +09/22/2017,Sports_celeb,@carmeloanthony,"I’ve set up a @YouCaring page to aid the relief efforts in Puerto Rico. We need your help in this fight. + +Donate:… https://t.co/XjjT8kAoSv" +09/18/2017,Sports_celeb,@carmeloanthony,"If you lose today, win tomorrow. In this never-ending spirit of challenge is found the heart of a victor.… https://t.co/hrc9rlH1ea" +09/14/2017,Sports_celeb,@carmeloanthony,"""People do not grow when they are not challenged. It is in the midst of suffering & hardship that strength of chara… https://t.co/xi1Giw4Ue1" +09/12/2017,Sports_celeb,@carmeloanthony,"Can't Make Sense Out Of Non Sense! +""A certain darkness is needed to see the stars."" +@espn Don't be so Blatant with… https://t.co/S1zH47aUSY" +09/11/2017,Sports_celeb,@carmeloanthony,"Another Day At The Office!!! +M7 Black Ops +#STAYME7O https://t.co/oKegElbOjr" +09/11/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/01ivvhr0EK +09/06/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/S30oMVAgTm +09/06/2017,Sports_celeb,@carmeloanthony,"""Celebrating All Woman All Sizes"" @lala Words Can't explain how Proud I am of YOU. Always setting the bar higher. L… https://t.co/NoDdsjVzip" +09/04/2017,Sports_celeb,@carmeloanthony,"""You shouldn't imitate those who came before. You must discover, manifest, & share what makes You- & ONLY YOU- exce… https://t.co/MqvkTtjwFq" +08/26/2017,Sports_celeb,@carmeloanthony,"""When we have a clear purpose in life we can overcome anything. WITHOUT a sense of purpose, our lives begin a slow… https://t.co/2krsuLzEGF" +08/21/2017,Sports_celeb,@carmeloanthony,"""The Wolf 🐺 On The Hill Is Not As Hungry As The Wolf 🐺 Climbing The Hill"" +#STAYME7O https://t.co/P4DqengFzk" +08/20/2017,Sports_celeb,@carmeloanthony,"NOBODY's FC⚽️ +#STAYME7O https://t.co/SrfWtmSikP" +08/16/2017,Sports_celeb,@carmeloanthony,"Pt.4 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/iuRveKPjjs" +08/16/2017,Sports_celeb,@carmeloanthony,"PT.3 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/sPb5sDT5oV" +08/16/2017,Sports_celeb,@carmeloanthony,"PT.2 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/pxnaYJTH6P" +08/15/2017,Sports_celeb,@carmeloanthony,"""Positive Energy Always Create Elevation"" +M7 #AcademyBasketball BLACK OPS Session PT.1 +#STAYME7O +PT.2 Coming soon https://t.co/ZvU9zGCl62" +08/12/2017,Sports_celeb,@carmeloanthony,"To strive even higher, to do even better—the creative process is a desperate struggle to go beyond what we were yes… https://t.co/mjcAMjDti9" +08/05/2017,Sports_celeb,@carmeloanthony,New 2-pack options now live on https://t.co/XFKXbshHHK. Max comfort where it counts #Frigo #iwearfrigo… https://t.co/H54Sfc11CU +08/03/2017,Sports_celeb,@carmeloanthony,2 million dollars on the line tonight... tune in on @ESPN at 7p ET for the @thetournament https://t.co/IcplA1ag8m… https://t.co/6YPZuC7jFz +07/30/2017,Sports_celeb,@carmeloanthony,👀❤️🌏 https://t.co/RdwwMdBkcR +07/30/2017,Sports_celeb,@carmeloanthony,Couple days until @thetournament Championship game in Baltimore. Tune in @ESPN at 7p ET. More info here:… https://t.co/xQdLL9fCWT +07/23/2017,Sports_celeb,@carmeloanthony,Good luck to Cuse. The dream is still alive. Win this one and I'll see you in Baltimore! #TBT2017 +04/14/2017,Sports_celeb,@carmeloanthony,"REALLY 😂😂 +#StayMe7o https://t.co/Y9Vky2zgLh" +04/14/2017,Sports_celeb,@carmeloanthony,Paving the way for those to come. Catch @JordanClassic #NEXTvsNEXT tonight on ESPN. #FBF https://t.co/cOS11a6l32 +04/04/2017,Sports_celeb,@carmeloanthony,Discover your own color. Mine is Sungmoon... What's yours? Thanks @SamsungTV #FindYourColor here:… https://t.co/Obw6W5Qm49 +03/30/2017,Sports_celeb,@carmeloanthony,"""Baltimore will always have a special place in my heart, and I'm excited to bring @thetournament to this city.""… https://t.co/6YtLREs1Bn" +03/16/2017,Sports_celeb,@carmeloanthony,Congrats to the @PolyBoysBball team for bringing home that State Championship #StayMe7o @dreperry22 @thedmj1 @CoachSamBrand @CoachFitz40 +03/15/2017,Sports_celeb,@carmeloanthony,#StayMelo https://t.co/JAjq9I13tV +03/13/2017,Sports_celeb,@carmeloanthony,"""Nyctophilia"" +(n.) Love of darkness or night. Finding relaxation or comfort in darkness. +#StayMe7o https://t.co/kjyO6a2Hpw" +03/10/2017,Sports_celeb,@carmeloanthony,"Thank you @NintendoAmerica for The Nintendo switch. I get the BEST DaD award now 😂 +#NintendoSwitch +#StayMe7o https://t.co/VoIH3MH16H" +03/02/2017,Sports_celeb,@carmeloanthony,RT @VICESports: .@carmeloanthony meets up with WBA Middleweight champ @DanielJacobsTKO to get a tour of Brooklyn's boxing Mecca. https://t.… +02/21/2017,Sports_celeb,@carmeloanthony,Excited for things to come! Soundbite from #MeloMoji - https://t.co/gQ6NoeOXWB https://t.co/CNpy6txNUq https://t.co/rmv33G2WND +02/21/2017,Sports_celeb,@carmeloanthony,"RT @VICESports: In this episode of #StayMelo, @carmeloanthony visits the nationally ranked MLK High School boys soccer team. https://t.co/I…" +02/18/2017,Sports_celeb,@carmeloanthony,#StayMe7o https://t.co/uitJ6mKY9F +02/18/2017,Sports_celeb,@carmeloanthony,"""Way of Life"" +#StayMe7o https://t.co/6RreNenXN8" +02/15/2017,Sports_celeb,@carmeloanthony,"Happy Valentines Day +#StayMe7o https://t.co/EVd8UZremZ" +02/14/2017,Sports_celeb,@carmeloanthony,Clock's ticking... https://t.co/A2P9CPFUsE ends at 7pm. You could win a trip for 2 to @NYKnicks vs. @Warriors! https://t.co/DS0GnLR7Sw +02/13/2017,Sports_celeb,@carmeloanthony,Last chance to win a trip to meet me for @NYKnicks vs. @Warriors! https://t.co/A2P9CPFUsE https://t.co/SxE0LpfJ4y +02/06/2017,Sports_celeb,@carmeloanthony,Feeling strong and ready for LA tonight thanks to @HSpecialSurgery. Check out this video about my journey with HSS:… https://t.co/62IxPON6Z3 +01/31/2017,Sports_celeb,@carmeloanthony,Running away from things you find unpleasant causes suffering. But facing and challenging such situations will enri… https://t.co/tuSFgeUcQs +01/30/2017,Sports_celeb,@carmeloanthony,"Only 2 weeks left to win a trip to NYC to meet me, get tix for @NYKnicks vs. @Warriors & come to shoot-around too https://t.co/A2P9CPFUsE" +01/30/2017,Sports_celeb,@carmeloanthony,"Prouder than ever to support @lyft, a company that stands behind its values. #TeamLyft #DeleteUber https://t.co/2rTgzx9I6t" +01/26/2017,Sports_celeb,@carmeloanthony,You can still sign up for my @EliteSportsCon2 Youth Basketball Camp @PacPlex in Brooklyn https://t.co/Snk8vXUvfM https://t.co/QDNeW0GbQh +01/24/2017,Sports_celeb,@carmeloanthony,"In this episode of #StayMelo, I explore some of the best views in Brazil and the favelas of Rio with @VICESports:… https://t.co/iOGtiA4OXm" +01/17/2017,Sports_celeb,@carmeloanthony,Looking forward to stepping on the court with NY's young talent @EliteSportsCon2 Youth Basketball Camp. Sign up now… https://t.co/Kw0NEIBcM8 +01/15/2017,Sports_celeb,@carmeloanthony,"Be More +""The One"" +@gervontaa https://t.co/1Obw061Sws" +01/14/2017,Sports_celeb,@carmeloanthony,I'm Thankful for ALL of it. The Highs. The Lows. The Blessings. The Lessons. The Setbacks. The Comebacks. The Love.… https://t.co/FNYREkXPHh +01/14/2017,Sports_celeb,@carmeloanthony,Hoping to see you in New Orleans. #FBF #NBAVOTE Carmelo Anthony https://t.co/Yf4n6fMSvI +01/14/2017,Sports_celeb,@carmeloanthony,"RT @NykInsider: Kristaps Porzingis 🦄 +Derrick Rose 🌹 +Carmelo Anthony 🎖🎖🎖 + +#NBAVOTE +(every Retweet counts as one vote) https://t.co/Bm0g79Lb…" +01/12/2017,Sports_celeb,@carmeloanthony,Don't text your friends. Let me talk to them. DL MeloMoji & #StayMe7o all day iOS: https://t.co/27tQpZL3OU Android:… https://t.co/R7lAzQ1ftO +01/12/2017,Sports_celeb,@carmeloanthony,Donate to the Carmelo Anthony Foundation & you could win a trip to NYC to meet up with me for @NYKnicks v.… https://t.co/mJA8vCmCip +01/11/2017,Sports_celeb,@carmeloanthony,"THANK YOU!!! +#StayMe7o https://t.co/vsM8SJW60q" +01/10/2017,Sports_celeb,@carmeloanthony,Excited to announce my upcoming @EliteSportsCon2 Youth Basketball Camp in BKLYN! Sign up now https://t.co/Snk8vXUvfM https://t.co/12tfLb48cC +01/10/2017,Sports_celeb,@carmeloanthony,"Al-ḥamdu lillāh +#StayMe7o https://t.co/IFYA7oVW72" +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @DwyaneWade +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @kporzee +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @drose +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @CP3 +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @kingjames +01/07/2017,Sports_celeb,@carmeloanthony,"Grateful to be here. Humbled to look back. Hopeful for the future. #NBAVote Carmelo Anthony + +Thx @NBA for the video. https://t.co/IWbH6Ct4XE" +01/06/2017,Sports_celeb,@carmeloanthony,"RT @nyknicks: 9X @NBAAllStar @carmeloanthony. + +RT to #NBAVote! #NYKtoNOLA https://t.co/slSYKOyZeq" +01/06/2017,Sports_celeb,@carmeloanthony,"RT @Guhlarzzza: #NBAVote Derrick Rose +#NBAVote Carmelo Anthony +#NBAVote Kristaps Porzingis" +01/04/2017,Sports_celeb,@carmeloanthony,Forever proud to wear these colors. #NBAVote Carmelo Anthony https://t.co/r8ywW7PeYw +01/04/2017,Sports_celeb,@carmeloanthony,RT @whatsupmelo9: I want to see Carmelo Anthony play at the ASG2017. #NBAVote https://t.co/9wkoF8s53I +01/03/2017,Sports_celeb,@carmeloanthony,RT @KnicksPassion: CARMELO ANTHONY #NBAVOTE https://t.co/sHqxGdkSTn +01/03/2017,Sports_celeb,@carmeloanthony,RT @Vic_Anthony7: #NBAVOTE I want to see Carmelo Anthony play in the NBA All-Star Game 2017 ! https://t.co/i2z4GIDsR6 +12/31/2016,Sports_celeb,@carmeloanthony,Your support is appreciated more than you know. https://t.co/8c0ZQZKsFG #NBAVote Carmelo Anthony https://t.co/CX3NeYXQ0L +12/31/2016,Sports_celeb,@carmeloanthony,"RT @nyknicks: Vote Melo to New Orleans! + +RT Carmelo Anthony #NBAVote #NYKtoNOLA + +Or visit https://t.co/EiWlaP9FS7 https://t.co/aM3BvpbyVM" +12/31/2016,Sports_celeb,@carmeloanthony,Hope to see everyone in New Orleans. NBA AllStar voting is open. Tweet #NBAVote Carmelo Anthony https://t.co/1h8LnPboJ7 +12/30/2016,Sports_celeb,@carmeloanthony,"RT @NBAAllStar: 16 days left... 2017 #NBAAllStar Voting presented by @Verizon ends January 16th! + +https://t.co/7SYpaqHa1f or the NBA app h…" +12/30/2016,Sports_celeb,@carmeloanthony,"RT @NBAAllStar: Vote for the 2017 #NBAAllStar teams right here on Twitter! + +Tweet #NBAVote + player first & last name or twitter handle. *l…" +12/23/2016,Sports_celeb,@carmeloanthony,Feeling strong & ready for the C's this weekend. Thanks @hspecialsurgery. See how they help keep me healthy here:… https://t.co/7SnWm1JK3v +12/22/2016,Sports_celeb,@carmeloanthony,A Very Melo Christmas with future leaders! Made possible by @regalmovies @jumpman23 @thebridgedirect @singmovie… https://t.co/XKWZWx2J89 +12/22/2016,Sports_celeb,@carmeloanthony,Thank you @UniversalPics for setting us up with #SingMovie for A Very Melo Christmas https://t.co/c4EnwXg089 +12/20/2016,Sports_celeb,@carmeloanthony,Watching #SingMovie for A Very Melo Christmas 2016. #CarmeloAnthonyFoundation @Singmovie #SageBusinessGroup +12/19/2016,Sports_celeb,@carmeloanthony,"Sophisticated Elite +@rockwell_group #YayolKusama +#StayMe7o https://t.co/AkNoSkwlmq" +12/15/2016,Sports_celeb,@carmeloanthony,"""Rest In Peace"" +One of The Greatest Fighters Ever. A True Inspiration +#TheSagerLegendContinues +#StayMe7o https://t.co/5n2p09HZiN" +12/09/2016,Sports_celeb,@carmeloanthony,Giving a @Bevel shave system to the follower who knows how many times I medaled w/ Team USA. Answer w/ #JoyOfBevel. https://t.co/ERCAzZnlNw +12/08/2016,Sports_celeb,@carmeloanthony,"UN-Phased +(MyLifeSummedUpInOnePhoto) +#StayMe7o https://t.co/LUtdSxhOTE" +12/08/2016,Sports_celeb,@carmeloanthony,"EGO is the only requirement to destroy any relationship. So, be a BiGGER person, skip the ""E"" and let it ""GO""… https://t.co/ncmKA2I4aD" +12/07/2016,Sports_celeb,@carmeloanthony,Teamed up with @feedthechildren @avoninsider for a special community event here in NYC https://t.co/5b6iaMkdln +12/05/2016,Sports_celeb,@carmeloanthony,"I'm joining @serenawilliams, @neymarjr, @MarceloM12, and global champions to ask students to try the #HourOfCode. https://t.co/03GX8ph17p" +12/01/2016,Sports_celeb,@carmeloanthony,https://t.co/5npxQ09xpJ +12/01/2016,Sports_celeb,@carmeloanthony,"GREAT TEAM WIN!!! +""It Is The Mark of An Educated Mind To Be Able To Entertain A Thought Without Accepting It""… https://t.co/b3RHEhWxJN" +11/30/2016,Sports_celeb,@carmeloanthony,"""We Are Not A Team Because We Work Together. We Are A Team Because We Respect, Trust, And Care For Each Other""… https://t.co/ThbDYH2Ewo" +11/29/2016,Sports_celeb,@carmeloanthony,Thanks to the #RedhookInitiative for producing the #BQX video. Bright futures ahead for #Redhook. #StayMe7o https://t.co/2KPNCVW85q +11/22/2016,Sports_celeb,@carmeloanthony,Thank you to @feedthechildren @avoninsider and @brucebeck4NY for helping us provide 800 families with essentials be… https://t.co/70WYngtNXN +11/22/2016,Sports_celeb,@carmeloanthony,RT @BruceBeck4NY: This is my 6 pm piece on the fine work by the @carmeloanthony Foundation in Harlem! https://t.co/VzgOaUSB6V https://t.co/… +11/16/2016,Sports_celeb,@carmeloanthony,@_frankiefjr_ @footlocker No Distractions. #DestiNY #StayMe7o +11/16/2016,Sports_celeb,@carmeloanthony,@NickyPetrucelli Greatness is a Mindset. Greatness is the Legacy You Leave Behind. +11/16/2016,Sports_celeb,@carmeloanthony,Sound off in the comments after you check out my @footlocker #WeekofGreatness spot https://t.co/SQRT91N1FH +11/08/2016,Sports_celeb,@carmeloanthony,Stand Together In Solidarity. Tune in now to #ESPN2 and watch The Clubhouse. https://t.co/J2QcOrlXal +10/31/2016,Sports_celeb,@carmeloanthony,Salute To My Toy Soldier!!! @lala You killed this ☝️ 😂😂😂 #StayMe7o https://t.co/sy7lS16yqK +10/21/2016,Sports_celeb,@carmeloanthony,"P-Positive +E-Energy +A-Activates +C-Constant +E-Elevation +#StayMe7o https://t.co/1LZJ2IjqMj" +10/07/2016,Sports_celeb,@carmeloanthony,Had a great time playing #GearsOfWar @Xbox loft. Check it out on Oct 11th. https://t.co/aladNOFeO8 +10/06/2016,Sports_celeb,@carmeloanthony,Catch me tonight on @TheDailyShow with @Trevornoah at 11pm EST +10/05/2016,Sports_celeb,@carmeloanthony,Check out #LaGrata Pizzeria in #SouthBronx for that authentic slice https://t.co/wRYCeBtylG +10/05/2016,Sports_celeb,@carmeloanthony,"Watch my show #StayMelo on @VICELAND, starting right now: https://t.co/o7oqSpTSrf" +10/04/2016,Sports_celeb,@carmeloanthony,My episode of #StayMelo: Puerto Rico airs tonight at 11:00PM on @VICELAND. Watch the full series now on @VICESports… https://t.co/oMyeAoh3b9 +10/04/2016,Sports_celeb,@carmeloanthony,Watch #StayMelo tomorrow at 11:00PM ET on @VICELAND where I visit the streets of San Juan and explore Puerto Rico's… https://t.co/JkBc3vuVCZ +10/03/2016,Sports_celeb,@carmeloanthony,A good year to all my friends celebrating Rosh Hashanah #5777 #StayMe7o https://t.co/P6TyGuykV2 +10/01/2016,Sports_celeb,@carmeloanthony,"""Don't Be Afraid To Embrace Your DestiNY"" #StayMe7o https://t.co/X1MtVNCkbp" +09/27/2016,Sports_celeb,@carmeloanthony,Text 47246 for more info on how to vote during #Election2016! https://t.co/j6IqADbONg +09/27/2016,Sports_celeb,@carmeloanthony,Take a behind the scenes look at this year's A Very Melo Weekend in Puerto Rico #AVMW2016 #CAF #sagebusinessgroup… https://t.co/D0u9OnFpy6 +09/27/2016,Sports_celeb,@carmeloanthony,#NYKMediaDay #DestiNY https://t.co/LVCFf6yqBz +09/26/2016,Sports_celeb,@carmeloanthony,Trust The Process. Enjoy the Journey. Embrace Your Destiny. #StayMe7o https://t.co/2vKylEgobR +07/02/2018,Sports_celeb,@KDTrey5,Just a few spots left in my 2nd Annual Fantasy Experience! Who’s got next? Join me at the @Warriors Practice Facili… https://t.co/90Gbsf8m4n +06/26/2018,Sports_celeb,@KDTrey5,"Thank u to the @NBA, the fans and my KDCF/KD Enterprises team for all the support. https://t.co/vybMqLTp8x" +06/22/2018,Sports_celeb,@KDTrey5,"RT @acorns: Introducing Acorns Spend - the only checking account and debit card that saves, invests and earns for you! #FutureIsYours #Grow…" +06/13/2018,Sports_celeb,@KDTrey5,"RT @RonConway: Kudos to @laurenepowell who is working tirelessly on education reform, immigration reform, and so many more worthwhile cause…" +06/13/2018,Sports_celeb,@KDTrey5,"RT @PlayersTribune: All-Access Bay Bash with @KDTrey5. +https://t.co/nUMzmea45z" +06/13/2018,Sports_celeb,@KDTrey5,"More on the colorways and design @nikebasketball #KD11 +https://t.co/19STMAsHJs" +06/13/2018,Sports_celeb,@KDTrey5,First look at the #KD11 on my @youtube w @IAmJayJones : https://t.co/NXIjSIJL2L +06/13/2018,Sports_celeb,@KDTrey5,RT @PlayersTribune: Inside the Warriors championship parade with Finals MVP @KDTrey5. https://t.co/AgcQ2geWk6 +06/12/2018,Sports_celeb,@KDTrey5,RT @IAmJayJones: MIND MATTERS E:2 with Kevin Durant| Discussing the NIKE KD11: https://t.co/auvPwqENVC via @YouTube +06/12/2018,Sports_celeb,@KDTrey5,RT @IAmJayJones: KD’s video: First Look at the KD 11 https://t.co/6wJRjbLMPf +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “You can accomplish any goal by rising & grinding: nothing worth having will come easy. It’s important for our youth to know th… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “There are so many heroes in my community that allow me to be here today. We grind through so many things & this is our opportu… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “We don’t do this for recognition. We don’t do it for the shine. We do it for the community. But it feels good to get recognize… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: @nikebasketball @KDTrey5 @warriors “We work hard to build a foundation for our kids. To be able to lift & empower people is mag… +06/12/2018,Sports_celeb,@KDTrey5,"RT @NikeSF: Rise. Grind. Shine. Again. + +To celebrate the championship, we’re celebrating Champions of Oakland, community members who sacrif…" +06/12/2018,Sports_celeb,@KDTrey5,Tonight on @jimmykimmel https://t.co/36kAXE0j2D +06/10/2018,Sports_celeb,@KDTrey5,Let’s go #DubNation! I’ll be on @jimmykimmel Monday night (tomorrow) to celebrate our B2B championships🏆🏆 +06/08/2018,Sports_celeb,@KDTrey5,"RT @pieology: One assist deserves another. For every assist @KDTrey5 gets during tonight’s game, @Pieology donates $1,000 to his foundation…" +06/04/2018,Sports_celeb,@KDTrey5,💯 Very cool to watch this come together https://t.co/ZdRaUifC1g +05/31/2018,Sports_celeb,@KDTrey5,Checking in with y'all on @YouTube before Game 1...let's go #DubNation https://t.co/pW7slAQ0Sf +05/30/2018,Sports_celeb,@KDTrey5,"RT @thirtyfivemedia: Stay tuned for our latest project, ""Q Ball"", executive produced by @KDTrey5 & @richkleiman in conjunction w/Fox Sports…" +05/30/2018,Sports_celeb,@KDTrey5,RT @AlaskaAir: Thank you to our entire team! We’re celebrating our 11th consecutive J.D. Power award for “Highest in Customer Satisfaction… +05/22/2018,Sports_celeb,@KDTrey5,"RT @lonelywhale: ""Your sipping habits at 33,000 feet are about to get a makeover: Today, @AlaskaAir became the first U.S. airline to ban si…" +05/22/2018,Sports_celeb,@KDTrey5,RT @darrenrovell: I sat down with @KDTrey5 to discuss is growing business empire https://t.co/H6FnKfwo4b +05/19/2018,Sports_celeb,@KDTrey5,RT @Essence: Two women make history as first Black female pilots to fly for Alaska Airlines. https://t.co/vxUuEpLa7R https://t.co/PiP7ERSSw1 +05/03/2018,Sports_celeb,@KDTrey5,"RT @pgcps: RT to vote for #KevinDurant for the #NBACommunityAssist Award! + +The Durant Charity Foundation recently committed $10 million to…" +04/30/2018,Sports_celeb,@KDTrey5,"RT @warriors: #KevinDurant is making a difference on & off the court 💙💛 + +RETWEET to vote for him for the #NBACommunityAssist Award! https:/…" +04/29/2018,Sports_celeb,@KDTrey5,"Great home win last night, thank you #DubNation for always bringing the energy and to my guys @pieology for sending pizza for the team!" +04/29/2018,Sports_celeb,@KDTrey5,RT @AlaskaAir: We’re flying high into the semifinals with @KDTrey5. We’re giving two lucky fans a chance to win an autographed Kevin Durant… +04/25/2018,Sports_celeb,@KDTrey5,"Thanks to everyone who’s voting, this one really means a lot to me https://t.co/y9SFme3Ppw" +04/25/2018,Sports_celeb,@KDTrey5,Proud of all the work we're doing in the Bay with @AlaskaAir - check the BTS of our shoot on my YouTube now:… https://t.co/ESwXCoPTb4 +04/21/2018,Sports_celeb,@KDTrey5,Year 1 of my fantasy camp at the @warriors practice facility was one for the books - sign up is open now for this y… https://t.co/IoOK2A4oVW +04/21/2018,Sports_celeb,@KDTrey5,RT @overtime: THIS IS WHAT YOU DO 🚨🚨🚨 @teamdurantaau @KDTrey5 @RMBWilliams https://t.co/3VKTJ0Upz5 +04/19/2018,Sports_celeb,@KDTrey5,Big honor for me to be on this year's #TIME100 list. Thanks @cue for the kind words! https://t.co/OlcoRZMggj +04/12/2018,Sports_celeb,@KDTrey5,Some of the best from @javalemcgee Parking Lot Chronicles through the season - watch em all if you missed them… https://t.co/RKwtSUivnY +04/12/2018,Sports_celeb,@KDTrey5,RT @warriors: A message from @KDTrey5 & @D_West30. #StrengthInNumbers #DubNation https://t.co/oZBbqp99Lz +04/06/2018,Sports_celeb,@KDTrey5,Congratulations to my friend @CoachOG on becoming the next head coach for UT Arlington.  He is the true definition… https://t.co/74TNm3wcMY +04/04/2018,Sports_celeb,@KDTrey5,RT @jack: I can’t imagine what our friends at YouTube are feeling and dealing with right now. We‘re here for you and your families and frie… +04/04/2018,Sports_celeb,@KDTrey5,RT @RonConway: Another senseless shooting in our own backyard @YouTube. After #Parkland we said #Enough & #NeverAgain & we #MarchedForOurLi… +04/02/2018,Sports_celeb,@KDTrey5,RT @teamdurantaau: First episode of 35 Degrees with LT! Follow the teams with LT throughout the season. Don't miss out!... https://t.co/quZ… +03/31/2018,Sports_celeb,@KDTrey5,"RT @PlayersTribune: ""This should’ve been the best year of my life — and it was, for a while. Until I turned it into a nightmare."" + +@Dardoch…" +03/28/2018,Sports_celeb,@KDTrey5,@MikeWiLLMadeIt you already know how it is!! 💯💯 +03/24/2018,Sports_celeb,@KDTrey5,"RT @warriors: ""Just that her name is in the sneaker world & the basketball world, it rings louder & louder every year."" - @KDTrey5 on the @…" +03/24/2018,Sports_celeb,@KDTrey5,RT @RonConway: In Washington DC for the #MarchForOurLives! Proud to join these national leaders and the #Parkland students fighting to stem… +03/20/2018,Sports_celeb,@KDTrey5,Checking out who's got next! Part 3 with @overtime https://t.co/ukJ5iQdBW9 +03/20/2018,Sports_celeb,@KDTrey5,"RT @overtime: Kevin Durant Breaks Down Top HS Players Part 3 | KD on Mac McClung, Jordan McCabe, Bol Bol, Andre Ball & Tyler Herro 🔥 Full V…" +03/19/2018,Sports_celeb,@KDTrey5,Had some fun with the Google Assistant in their new ad...#HeyGoogle remind me to order more gummy bears. https://t.co/wLD2pPEubD +03/15/2018,Sports_celeb,@KDTrey5,RT @thirtyfivemedia: Watch the Oscar-worthy season finale of Parking Lot Chronicles with @JaValeMcGee & @KDTrey5 now: https://t.co/mRDrUNOG… +03/15/2018,Sports_celeb,@KDTrey5,Parking Lot Chronicles season finale!! Show @javalemcgee some love https://t.co/9rfC982eTD +03/14/2018,Sports_celeb,@KDTrey5,Don't sleep on my first video with @michaelrapaport. Got a new episode of Parking Lot Chronicles coming this week f… https://t.co/rqKFF7atTD +03/12/2018,Sports_celeb,@KDTrey5,@SteveCahill12 someone’s upset +03/12/2018,Sports_celeb,@KDTrey5,"@boggerVB didn’t mean to hurt u this morning, I’ll unlike immediately. 🐍💪🏿🙏🏾🐍🐍" +03/12/2018,Sports_celeb,@KDTrey5,@ZaayWoop u mad I liked a post on Twitter? Really bruh? +03/12/2018,Sports_celeb,@KDTrey5,@Irishodonnell5 🤘🏿🐍 no doubt! Thanks for coming to the game +03/09/2018,Sports_celeb,@KDTrey5,Got to check in on progress at the Durant Center on our trip to DC - crazy to watch it come to life… https://t.co/hE3ePSU1E4 +03/08/2018,Sports_celeb,@KDTrey5,My guy @MichaelRapaport talks a big game but at the end of the day you know he's a fan. Watch #Rapaport:… https://t.co/pDmBBLN7Wj +03/05/2018,Sports_celeb,@KDTrey5,Here we go!! Watch the new @michaelrapaport series here: https://t.co/5VQSSBnMpJ +03/03/2018,Sports_celeb,@KDTrey5,RT @MichaelRapaport: Special Guest @KDTrey5 joins us on a brand new episode of the #ShameGame @deanrcollins COMING SOON https://t.co/BFhogr… +03/02/2018,Sports_celeb,@KDTrey5,New series on my @YouTube with @MichaelRapaport!! https://t.co/bHEFZhrKBU +02/23/2018,Sports_celeb,@KDTrey5,"The Durant Center has been a dream of mine for a long time, excited to announce it's finally happening in Prince Ge… https://t.co/KahquEdMbg" +02/22/2018,Sports_celeb,@KDTrey5,RT @SteveNash: I'm so inspired by the young people in America standing up for their future. I really believe it's our best chance to see ch… +02/16/2018,Sports_celeb,@KDTrey5,"LJ and I are locked in for #NBAAllStar: https://t.co/efYJH7YKCV +#rollingwiththechampion https://t.co/2cAJVjEhB9" +02/16/2018,Sports_celeb,@KDTrey5,More from my ride with @CariChampion @KingJames up on my YouTube now https://t.co/PGIQipcNxn +02/15/2018,Sports_celeb,@KDTrey5,Thanks for the love @nytimes https://t.co/oh3WP3XjWR +02/15/2018,Sports_celeb,@KDTrey5,Rolling with @carichampion @kingjames: https://t.co/uRkwepGMc0 https://t.co/cmEE5YHpef +02/15/2018,Sports_celeb,@KDTrey5,"RT @SkydioHQ: Skydio R1 understands and acts in the world through the Skydio Autonomy Engine, which combines breakthrough technology in adv…" +02/14/2018,Sports_celeb,@KDTrey5,"RT @THR: Sports media startup Overtime raises $9M from Andreessen Horowitz, @KDTrey5 https://t.co/TqpEvS1OTN https://t.co/yfJo8g0Czs" +02/13/2018,Sports_celeb,@KDTrey5,RT @THR: .@KDTrey5 is prepping a scripted basketball drama for @Apple https://t.co/4Zp9a8K182 https://t.co/oWxxlvabbb +02/13/2018,Sports_celeb,@KDTrey5,So excited to partner with Imagine and Apple on this series...much more to come @richkleiman @thirtyfivemedia https://t.co/ZC21fSkXIe +02/13/2018,Sports_celeb,@KDTrey5,"RT @SkydioHQ: This is Skydio R1 Frontier Edition: a self-flying camera that knows what to film and flies itself to get the best shot, letti…" +02/10/2018,Sports_celeb,@KDTrey5,New Parking Lot Chronicles alert!! @javalemcgee @derekcarrqb @casspi18 https://t.co/xaobuGk7IF +02/08/2018,Sports_celeb,@KDTrey5,RT @RMBWilliams: It’s Official @KDTrey5 @TeamDurantAAU has joined the @NikeEYB & will be Playing 16’s this Summer! #KevinDurant #NBA #NBAAl… +01/30/2018,Sports_celeb,@KDTrey5,Big episode of PLC up now! @javalemcgee @stephencurry30 @michaelrapaport @imanitrishawn_ https://t.co/sbn116GqWp +01/25/2018,Sports_celeb,@KDTrey5,"RT @TheUndefeated: As we continue our State of the Black Athlete series, @KDTrey5 pens a letter to his neighborhood, and reflects on growin…" +01/24/2018,Sports_celeb,@KDTrey5,RT @CNTraveler: The Alaska Airlines/Virgin America merger has the potential to be one of the best airlines in the country https://t.co/6OCh… +01/22/2018,Sports_celeb,@KDTrey5,Great day in the bay! What up? +01/22/2018,Sports_celeb,@KDTrey5,"This was a fun one, check it out: https://t.co/hqZAmtofZh https://t.co/Ywni5ReShA" +01/20/2018,Sports_celeb,@KDTrey5,RT @richkleiman: Check it out https://t.co/NuXjDCITff +01/18/2018,Sports_celeb,@KDTrey5,"RT @nealmohan: Thrilled to partner with Thirty Five Media, @richkleiman and @KDTrey5 to help sports stars launch YouTube channels and creat…" +01/18/2018,Sports_celeb,@KDTrey5,RT @KarlTowns: I finally made a @YouTube channel! Check it out for all access to my life on & off the court & more. Subscribe & enjoy! htt… +01/17/2018,Sports_celeb,@KDTrey5,Thank you for all that you do brother @Kaepernick7 https://t.co/1KYcjBEqdY +01/17/2018,Sports_celeb,@KDTrey5,RT @FastCompany: .@KDTrey5 will assist other athletes questing for YouTube stardom https://t.co/c0HVprK6qp https://t.co/NnV6QqDAF2 +01/17/2018,Sports_celeb,@KDTrey5,"RT @thirtyfivemedia: We're excited to continue our partnership with @YouTube to create athlete channels, new series, and more https://t.co/…" +01/15/2018,Sports_celeb,@KDTrey5,New Parking Lot Chronicles ⬇️ https://t.co/m5Zl0sGDuL +01/13/2018,Sports_celeb,@KDTrey5,@Postmates thanks for the love! +01/12/2018,Sports_celeb,@KDTrey5,Got a chance to catch up and answer some great fan q's this week on my @YouTube 📹: https://t.co/f1TOuoUs1z +01/11/2018,Sports_celeb,@KDTrey5,"RT @AlaskaAir: Kevin Durant just scored a HUGE milestone—20,000 career points. To celebrate @KDTrey5's achievement, we're giving one lucky…" +01/06/2018,Sports_celeb,@KDTrey5,Yesterday was amazing @UTAustin @TexasMBB! Video from the day: https://t.co/w1wegYjtcE #HookEm #Longhorn4Life +01/03/2018,Sports_celeb,@KDTrey5,RT @RonConway: Tribute to Ed Lee in Time Magazine - how fitting and well deserved for him and his family: https://t.co/P0Cco1UmHm +01/02/2018,Sports_celeb,@KDTrey5,Taking a look back on 2017 and wishing everyone a happy New Year https://t.co/Hf4ficMQ5x +12/25/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles ep 6 is out! Happy holidays @JaValeMcGee @QCook323 https://t.co/d6TJ0bgGMA +12/22/2017,Sports_celeb,@KDTrey5,New video up from one of my favorite days of the year visiting Oakland Elizabeth House again and meeting the youth… https://t.co/5YPjJg733w +12/21/2017,Sports_celeb,@KDTrey5,"RT @warriors: Get your votes in early for #NBAAllStar 👇🏽 + +💻 » https://t.co/dI40RybctL +📱» https://t.co/1GLNiOaLcx https://t.co/REuZ6NILY5" +12/19/2017,Sports_celeb,@KDTrey5,Big things to come @Overtime #TheDurantCompany https://t.co/6KSIOL8oxL +12/16/2017,Sports_celeb,@KDTrey5,RT @JaValeMcGee34: NEW EPISODE OUT! Parking lot chronicles feat @Money23Green https://t.co/lXCj55HQXl +12/15/2017,Sports_celeb,@KDTrey5,The boy @JaValeMcGee34 is back! Parking Lot Chronicles Ep 5 with @Money23Green https://t.co/xFBwt4QUwq +12/12/2017,Sports_celeb,@KDTrey5,"RT @PlayersTribune: “He did not like rules. And I don’t just mean fashion rules.” + +The wild, unpredictable, courageous life of Craig Sager.…" +12/05/2017,Sports_celeb,@KDTrey5,RT @NickSwagyPYoung: The best show on YouTube when I’m on it lol 😂👀😂 JaVale McGee's Parking Lot Chronicles: Episode 4 https://t.co/PSaiYdi2… +12/05/2017,Sports_celeb,@KDTrey5,"RT @JaValeMcGee34: New Episode of Parking Lot Chronicles feat. @1jordanbell n @NickSwagyPYoung https://t.co/3dcTqiMwGL +Check on @KDTrey5 Y…" +12/05/2017,Sports_celeb,@KDTrey5,"Parking Lot Chronicles Episode 4 is up now, best one yet @JaValeMcGee34​ https://t.co/41vghbo2yc" +11/29/2017,Sports_celeb,@KDTrey5,New video up! Reviewing some of the best high school ballers on @Overtime​ https://t.co/Bm7SjcO8qd +11/28/2017,Sports_celeb,@KDTrey5,"@nealmohan I’m into it. Gonna pop on later this week to check in with my fans, been a great experience for me so far" +11/28/2017,Sports_celeb,@KDTrey5,Got word that the @YouTube Community tab I've been talking to you guys on is opening up to more creators this week. @nealmohan true? +11/25/2017,Sports_celeb,@KDTrey5,Good luck to the USA Men’s World Cup Qualifying Team tomorrow in Greensboro #FIBAWC #DefendTheCup https://t.co/yNSOdzv92n +11/20/2017,Sports_celeb,@KDTrey5,All-basketball Q&A session up now! Gonna keep doing these for you guys throughout the season https://t.co/ABl1hHsgfd +11/19/2017,Sports_celeb,@KDTrey5,New vid going up tomorrow answering some of your 🏀 q’s. Watch @javalemcgee34's Parking Lot Chronicles first https://t.co/ZAuOUEULc9 +11/19/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Kevin Durant on His Legendary Game at Harlem’s Rucker Park | GQ https://t.co/C4treZRPZt via @YouTube +11/18/2017,Sports_celeb,@KDTrey5,RT @warriors: 📷 @KDTrey5 for @GQMagazine » https://t.co/AYc2gyyEcT https://t.co/HFkDdi4iZb +11/16/2017,Sports_celeb,@KDTrey5,Cool animation @GQMagazine on my Rucker game https://t.co/k6F27k2sTE +11/16/2017,Sports_celeb,@KDTrey5,Tune in and show some love https://t.co/REYatmcvhq +11/16/2017,Sports_celeb,@KDTrey5,Behind the scenes of my @GQMagazine shoot up now on YouTube https://t.co/FxKDM7IupF +11/16/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: Kevin Durant is just heating up https://t.co/ZRQNpJwfRl #GQMOTY https://t.co/CwibVCeB7H +11/16/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: Our Champion of the Year: @KDTrey5 https://t.co/IlOUK9Lr48 #GQMOTY https://t.co/D1BaD7qGAm +11/15/2017,Sports_celeb,@KDTrey5,RT @richkleiman: JaVale McGee's Parking Lot Chronicles: Episode 3 https://t.co/oQfHm5aqdi via @YouTube +11/14/2017,Sports_celeb,@KDTrey5,"RT @YTCreators: You might know him from the @NFL, but check out @RSherman_25's @YouTube channel where you'll get a behind the scenes look i…" +11/14/2017,Sports_celeb,@KDTrey5,"RT @nealmohan: Welcome to @YouTube, @RSherman_25! https://t.co/piLoOwRPnB" +11/13/2017,Sports_celeb,@KDTrey5,This story is a must-read...honored & humbled to share a cover w you @Kaepernick7 https://t.co/QFtIFj7DL5 +11/13/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: .@Kaepernick7 will not be silenced https://t.co/NxQFCxdf1L #GQMOTY https://t.co/jBIa1cHwPm +11/13/2017,Sports_celeb,@KDTrey5,In good company! Thank you @GQMagazine for the honor https://t.co/SiB5AkTeYU +11/13/2017,Sports_celeb,@KDTrey5,Watch on my @YouTube channel https://t.co/ZAuOUEULc9 https://t.co/he84jiPPYR +11/11/2017,Sports_celeb,@KDTrey5,"RT @PlayersTribune: “In 2017, in America, silence is no longer an option.” + +@StephenCurry30 in his own words. https://t.co/1RNiZjUoEe" +11/11/2017,Sports_celeb,@KDTrey5,RT @JaValeMcGee34: NEW EPISODE OF THE PARKING LOT CHRONICLES EPISODE 3 IS OUT ON @KDTrey5 YOUTUBE. https://t.co/lc0lD88pNP +11/11/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles is back! New one with @javalemcgee34 @klaythompson @e40 @AR510 https://t.co/ZAuOUEULc9 +11/10/2017,Sports_celeb,@KDTrey5,Follow my business partner’s new IG https://t.co/qDOBcO2mPQ https://t.co/M2vLHUl3xk +11/10/2017,Sports_celeb,@KDTrey5,Gearing up for another Q&A vid - get your questions in here: https://t.co/tTqTDE73vS +11/10/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Parking lot chronicles 3 coming soon https://t.co/T8oYAqXvuu https://t.co/lTgUe3WhQ8 +11/10/2017,Sports_celeb,@KDTrey5,🔥🔥🔥 https://t.co/YMXUZJ3W39 +10/29/2017,Sports_celeb,@KDTrey5,"RT @richkleiman: Make sure not to miss it!! +JaVale McGee's Parking Lot Chronicles: Episode 2 https://t.co/4P5Nf65QJe via @YouTube" +10/25/2017,Sports_celeb,@KDTrey5,RT @RonConway: #BandTogetherBayArea 11/9 @ATTPark - proud to support #northbayfire relief w/ @Metallica @davematthewsbnd @G_Eazy https://t.… +10/25/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles @Javalemcgee34 Episode 2 is up! Including a special appearance from yours truly https://t.co/cj0gf0abfw +10/24/2017,Sports_celeb,@KDTrey5,Subscribe to my channel to get updates - we got a new @JaValeMcGee34 episode coming up too! https://t.co/wwzZJsEO7e +10/24/2017,Sports_celeb,@KDTrey5,New vid up from opening night and the ring ceremony https://t.co/5LzVZ8aNDY +10/22/2017,Sports_celeb,@KDTrey5,ICYMI: First episode of @JaValeMcGee34 Parking Lot Chronicles is up now! Episode 2 hits next week https://t.co/MqUEi4Un3D +10/20/2017,Sports_celeb,@KDTrey5,Hard Work @beatsbydre #1of1 https://t.co/ixyF4DCMkL +10/19/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles Ep 1 w/@JavaleMcGee34 @andre @NickSwagyPYoung https://t.co/MqUEi4Un3D +10/17/2017,Sports_celeb,@KDTrey5,Here we go...the first episode of Parking Lot Chronicles with @JaValeMcGee34 is up now! https://t.co/MqUEi4Un3D presented by @beatsbydre +10/17/2017,Sports_celeb,@KDTrey5,Thank you!! Appreciate the love https://t.co/xXunye9p5X +10/16/2017,Sports_celeb,@KDTrey5,What happens when you give @JaValeMcGee34 a camera crew @OracleArena. Parking Lot Chronicles starts tomorrow https://t.co/Oqjk5n3Tl1 +10/16/2017,Sports_celeb,@KDTrey5,💯 https://t.co/7KoOh9793X +10/16/2017,Sports_celeb,@KDTrey5,"My @FastCompany article is out now, this one is really special to me. Read it here: https://t.co/utqW7Gy86V https://t.co/pEJKaiMwSM" +10/14/2017,Sports_celeb,@KDTrey5,"RT @warriors: #DubNation, check out @KDTrey5 on the cover of @FastCompany & his Q&A over on his YouTube » https://t.co/We8D95qxlv https://t…" +10/14/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Make sure to watch KD Fan Q&A and Fast Company Cover reveal https://t.co/v1RKLIx0bi +10/14/2017,Sports_celeb,@KDTrey5,RT @FastCompany: Our Nov issue features NBA star Kevin Durant's nascent business empire. Get a sneak peak and insights from @KDTrey5: https… +10/13/2017,Sports_celeb,@KDTrey5,On the cover of @FastCompany - story out next week! Sharing the moment & answering your Q's on my Youtube:… https://t.co/GPn2GPaSsd +10/10/2017,Sports_celeb,@KDTrey5,New court launch in Redwood City! S/o to @AlaskaAir for the grand prize. Watch: https://t.co/99pRs9uN3F +10/09/2017,Sports_celeb,@KDTrey5,RT @darrenrovell: JUST IN: @KDTrey5’s investment company has taken a stake in upstart fast casual pizza biz @pieology https://t.co/4L3A0zHE… +10/03/2017,Sports_celeb,@KDTrey5,Some thoughts on getting ready for the season and a look inside @Warriors training camp: https://t.co/24rVUWespF +09/29/2017,Sports_celeb,@KDTrey5,New Nike x NBA connected jersey 🔥 Check the bts from the launch on my YouTube https://t.co/9WODbGxNDE https://t.co/4WA7TmZAxH +09/28/2017,Sports_celeb,@KDTrey5,RT @richkleiman: San Francisco Magazine | Modern Luxury | KD and the VCs: How Kevin Durant Became a Made Man in Silicon Valley https://t.co… +09/28/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Kevin Durant is newest MVP for Alaska Airlines https://t.co/cDz7PIqTOU +09/25/2017,Sports_celeb,@KDTrey5,Back to the grind...some thoughts on coming back to the Bay and from the NBA x Nike jersey launch https://t.co/9WODbGgcM6 +09/21/2017,Sports_celeb,@KDTrey5,"New #KDCF court, vid coming soon. Thanks to @AlaskaAir for hooking our B&G Club winner up, more on our partnership… https://t.co/lDS8IPfnTO" +09/21/2017,Sports_celeb,@KDTrey5,RT @richkleiman: .@laurenepowell & @ronconway urge #TCDisrupt audience to call Congress & tell them to pass the #DREAMAct https://t.co/WIWe… +09/20/2017,Sports_celeb,@KDTrey5,Yesterday's talk @TechCrunch Disrupt with @richkleiman https://t.co/8e8iQk5Ksb +09/19/2017,Sports_celeb,@KDTrey5,Thanks @sanfranmag for the love - cover story out now https://t.co/1YgWF29vWb https://t.co/jYehjf6llE +09/19/2017,Sports_celeb,@KDTrey5,On my way to TechCrunch Disrupt SF this am w @richkleiman to talk business #TCDisrupt +09/18/2017,Sports_celeb,@KDTrey5,Shooting contest with Chris Mullin up now on @YouTube​ https://t.co/8HqlqDmlh3 +09/18/2017,Sports_celeb,@KDTrey5,Officially part of the @AlaskaAir team. Looking fwd to doing great things in the Bay & beyond #ThirtyFiveMedia https://t.co/DXBxdbIg8m +09/17/2017,Sports_celeb,@KDTrey5,"Good win skins. Cowboys, pass the sticks" +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga you have to start wording shit like this a little better, I'm confused lol" +09/16/2017,Sports_celeb,@KDTrey5,"@codywallace1244 no, I just deleted it." +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga I see u, well it's a bet" +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga https://t.co/sgtZKHFxI5 +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga and my 5 racks +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga wen I win, Ima need u to take the caps lock off and wear full warrior gear all the way down to the socks, for a whole day." +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga you do NOT wanna lose 5 racks to me. +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga u trash +09/16/2017,Sports_celeb,@KDTrey5,@NickSwagyPYoung https://t.co/C0ClFWS0bN +09/16/2017,Sports_celeb,@KDTrey5,Q&A from Nike campus with @SteveNash​ https://t.co/c84CK7pv26 +09/15/2017,Sports_celeb,@KDTrey5,It's time for my fantasy camp weekend - you can still help make an impact even if you're not there in person:… https://t.co/AeybM99Kq5 +09/15/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Looking forward to @TechCrunch Disrupt SF on Tues w @KDTrey5. More info: https://t.co/xhHNnLLHwP #TCDisrupt #ThirtyFiveMed… +09/14/2017,Sports_celeb,@KDTrey5,@Bmaggia you're just upset. I get it lol. I love you too +09/14/2017,Sports_celeb,@KDTrey5,@CKiepert I bring out the ya mama jokes on occasion. Be on the look out +09/14/2017,Sports_celeb,@KDTrey5,"@Bmaggia scenario: u tell a joke on me, I laugh, I make a joke about u, u call me soft?? 🤔🤔 makes zero sense to me. Who's the soft one?" +09/13/2017,Sports_celeb,@KDTrey5,@incarceratedbob @Stugotz790 same man that uses amazon instead of going to the mall. Lmao +09/12/2017,Sports_celeb,@KDTrey5,@Mohsin_35_313 thanks bro!! +09/10/2017,Sports_celeb,@KDTrey5,@Smailing07 @OGZaves didn't know I played golf +09/10/2017,Sports_celeb,@KDTrey5,@OGZaves I now play for every team in every league. Mission accomplished! Winning rings every year until I retire +09/09/2017,Sports_celeb,@KDTrey5,"@zoolander8816 I don't get this one. I think u mean Atlanta or to be even funnier, the patriots 🗣 HA" +09/08/2017,Sports_celeb,@KDTrey5,@deusoc17 so you're tellin me what I was thinking? +09/08/2017,Sports_celeb,@KDTrey5,@thehappydaze u said 81 and I gave u somebody else that didn't have 81 and u backtracking. Think before u tweet me lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest everyday, I don't think about if we are gonna win or lose a game. Every single day I think about my individual skills tho" +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest I play for more than one reason. If anybody tell u they don't then it's just a lie +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest a coach is suppose to put me in position to maximize what i do best. That's why more than one person wins a ring. +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest i play to be the best individual talent I can be, that's why u work out by yourself." +09/08/2017,Sports_celeb,@KDTrey5,@Jason_Stateman it is. +09/08/2017,Sports_celeb,@KDTrey5,@thehappydaze mj? +09/08/2017,Sports_celeb,@KDTrey5,@channooo3 thank u lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest if u do the eye test, u would know that mac was different." +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest t mac could do it all. Don't get it twisted. He was booked in for 30-6-5 every night. Nobody could stop him bro lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest I'm on here arguing about TMac. What has the world come to, guess he's not the ""two way player"" u want." +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest u don't know basketball so you don't get it +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest he played with mutumbo when he was the oldest player in the league and grant hill got hurt a few times, so did Yao!" +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest he got traded for franchise. Know your history +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest oh yea I know that +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest it's always been about winning. U get more buckets than the other team and u win +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest I don't get what u tryna say. +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest u like assist and rebounds right? U make a pass so that u can score right? U rebound an attempted shot right? +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest elaborate +09/08/2017,Sports_celeb,@KDTrey5,@blazeisbaseball he wore number 1 on his jersey +06/29/2018,Sports_celeb,@alleniverson,"To all my fans, I wish @JahlilBeats much success with his event in Chester. Please come out and support it!" +06/25/2018,Sports_celeb,@alleniverson,"9 years ago today, the King of Pop passed away!! #TheGreatest https://t.co/BpSJ61kXnt" +06/21/2018,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: The best player in the NBA Draft tonight is Collin Sexton from Alabama. He has .... https://t.co/zt0DCZcMDn https://t.c… +06/07/2018,Sports_celeb,@alleniverson,"Due to scheduling conflicts, I have informed the… https://t.co/njdvsZak53" +05/23/2018,Sports_celeb,@alleniverson,Me X Kith X Mitchell and Ness https://t.co/Xb5HoknUUS +05/21/2018,Sports_celeb,@alleniverson,"Coming to see all my fans at the Chicago Sports Spectacular in Rosemont, IL, on Saturday, June 9th, at the Donald E… https://t.co/0C5THcD1hy" +05/06/2018,Sports_celeb,@alleniverson,Love champ!! RT @JCrossover: One of the King's of this thing. More influence on my game than anyone else.… https://t.co/Vhm6SSapwo +05/05/2018,Sports_celeb,@alleniverson,Happy birthday Lil homie!! @kevinporterjr https://t.co/eX5PoytJcs +04/24/2018,Sports_celeb,@alleniverson,Tune in!! I'm up next on @firstTake talking @sixers and more!!! +04/20/2018,Sports_celeb,@alleniverson,Next Up!!! #Georgetown #PracticeGreatness #IversonClassic iversonclassic @ Souderton Area High… https://t.co/GDZJekhUz8 +04/20/2018,Sports_celeb,@alleniverson,#PracticeGreatness #IversonClassic iversonclassic @ Souderton Area High School https://t.co/R6GTlPZnlm +04/20/2018,Sports_celeb,@alleniverson,Witnessing jaw dropping talent #PracticeGreatness #IversonClassic 📸: @Suav5 @ Souderton Area… https://t.co/7WM5UCnUtV +04/20/2018,Sports_celeb,@alleniverson,Me and the Philly legend! 📸: @Suav5 @ Souderton Area High School https://t.co/ksfhncIN54 +04/20/2018,Sports_celeb,@alleniverson,Me and the rock reminiscing!!! 📸: @Suav5 @ Souderton Area High School https://t.co/zJy9niTnrp +04/20/2018,Sports_celeb,@alleniverson,Save up to 50% on my collection & across the entire @RootsofFight store in their huge #SpringCleaningSale event rig… https://t.co/WhLxuPNIIF +04/19/2018,Sports_celeb,@alleniverson,Prayers and condolences go out to Gregg Popovich and his family!! +04/18/2018,Sports_celeb,@alleniverson,My exclusive shoe for the best high school players in the country #YouWereChosen @iversonclassic @Reebok https://t.co/vKWvkE4r5F +04/17/2018,Sports_celeb,@alleniverson,SIXERS 4 LIFE! https://t.co/FWUalfjBE5 +04/17/2018,Sports_celeb,@alleniverson,With the Philly guys!!! https://t.co/UDe97goBbQ +04/14/2018,Sports_celeb,@alleniverson,#HereTheyCome #PhilaUnite https://t.co/DBghp5uzaV +04/13/2018,Sports_celeb,@alleniverson,Happy bday lil dude!!! https://t.co/f4EKYK04E5 +04/13/2018,Sports_celeb,@alleniverson,RT @iversonclassic: .@alleniverson said: Only the strong survive! America’s most competitive games begin in Philly in 6 days! https://t.co/… +04/02/2018,Sports_celeb,@alleniverson,RT @SLAMonline: Love the game. https://t.co/LXgUqfGKuj +04/02/2018,Sports_celeb,@alleniverson,Only the strong survive!!!... ticket link for @iversonclassic in bio https://t.co/3pksnyIH8Y +03/27/2018,Sports_celeb,@alleniverson,Welcome to the @Rootsoffight family @BretHart & @ReyMysterio Two legends joining #AndreTheGiant in the new… https://t.co/JJ0U7lUQsX +03/23/2018,Sports_celeb,@alleniverson,This is it! The 2018 #IVERSONCLASSIC roster is here! Get ready for the most competitive game in America.… https://t.co/wFaUkSB3Au +03/11/2018,Sports_celeb,@alleniverson,"RT @fanthropic: Hey, @sixers Fans! Wanna be a #Sixer for a day & hang with #76er legend @alleniverson? Thanks to #Fanthropic & #SixersYouth…" +03/10/2018,Sports_celeb,@alleniverson,I did not grant my name and likeness to be used as promotion for this event. I will not be in… https://t.co/kfwHQ40uOk +02/17/2018,Sports_celeb,@alleniverson,I THANK YOU!!!! https://t.co/qIumUfonA0 +02/17/2018,Sports_celeb,@alleniverson,"#EnoughSaid #IDidItMyWay #AsLongAsMyFamilyFriendsAndFansLoveIt #GodBless ... + Get this jacket from @rootsoffight… https://t.co/lHgX19ivRB" +02/16/2018,Sports_celeb,@alleniverson,All-Star for LIFE!!! #RedAuerbach https://t.co/thcr4ca9jg +02/15/2018,Sports_celeb,@alleniverson,"Oh yea, we in good hands!!! @sixers https://t.co/wmyoyPQ08u" +02/09/2018,Sports_celeb,@alleniverson,Go get your Ai bomber today!!! https://t.co/beSCnIKgGm https://t.co/BlL3sx0afF +01/31/2018,Sports_celeb,@alleniverson,Rest easy my brother. See you when I get there!!! https://t.co/Npsnib7k5t +01/11/2018,Sports_celeb,@alleniverson,"However you want it, you can get it!!! #FittyPiece ... @TeamLou23 https://t.co/soTd7DWk6T" +01/03/2018,Sports_celeb,@alleniverson,Congratulations to the “Game Changer” award winners of the #CrossoverHolidayShowcase for winning the Ai Melton jack… https://t.co/QCXt33nLgC +12/26/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Tomorrow we start up the 3rd annual Crossover High School Christmas holiday showcase!!! A family friendly event that you… +12/24/2017,Sports_celeb,@alleniverson,Give the gift of crossovers this holiday season with #NBALIVEMobile! For .... https://t.co/VJHg3GhPqx https://t.co/3Ly3BaygXh +12/22/2017,Sports_celeb,@alleniverson,"Sometimes you gotta play the best to be your best. Game 1 in the 2001 finals, @shaq & myself went after it!! It was… https://t.co/nCIGYXLXSg" +12/18/2017,Sports_celeb,@alleniverson,Congrats!!! #Str8SerialKilla @kobebryant https://t.co/m2LhIAGp9W +12/07/2017,Sports_celeb,@alleniverson,When I was coming up I used to take inspiration from these guys and now I’m being included amongst them. Proud to a… https://t.co/Ms4fWA0pTw +12/06/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: The 3rd annual #CrossoverHolidayShowcase is upon us! Dec 27th make sure you come out and see some of the best talent in t… +11/25/2017,Sports_celeb,@alleniverson,My partners @rootsoffight have their #BlackFriday sale rolling right now!! Go check i.... https://t.co/l4XJP74pRt https://t.co/TEVqgsX6Bz +11/08/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: Our episode of @Complex Sneaker Shopping with the legendary @alleniverson and our good friend @JLaPuma airs on MSG at 1… +11/03/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Press Release: “Allen Iverson champions need for new gymnasium floor at Newport News Boys & Girls Club” https://t.co/mkmU… +11/02/2017,Sports_celeb,@alleniverson,Check out my cut off from my @rootsoffight collection! It just dropped and is available now! #RootsofBasketball… https://t.co/RN3O9ifpln +10/31/2017,Sports_celeb,@alleniverson,Make sure you go to https://t.co/7ZCGQIQaLb to get your pair of the new #AnswerIV @ReebokClassics https://t.co/cOlXv7JeuD +10/27/2017,Sports_celeb,@alleniverson,RT @PCFriarsmbb: Dickens with the exclamation point #gofriars https://t.co/KZ1BgLP3vR +10/20/2017,Sports_celeb,@alleniverson,Out now! New T with @RootsofFight just launched. #KnowyourRoots #RootsofBasketball https://t.co/9RtTCjWXo2 https://t.co/pgIMfZJJAj +09/22/2017,Sports_celeb,@alleniverson,Happy 58th ma! & many more to my special lady!!! https://t.co/44taB4v0K6 +09/08/2017,Sports_celeb,@alleniverson,Loyal to the core!!!#My Chinese fans https://t.co/MH05YDFNgn +08/23/2017,Sports_celeb,@alleniverson,Happy birthday killa!!! @kobebryant https://t.co/ZzCTvqlsgr +08/13/2017,Sports_celeb,@alleniverson,"#Repost @thebig3 +・・・ +He's back! Come see 3's Company fight for a playoff spot today at Staples… https://t.co/KUl1Ioqp3M" +08/01/2017,Sports_celeb,@alleniverson,Just posted a photo https://t.co/8SyNOJpaSI +07/29/2017,Sports_celeb,@alleniverson,I see you haters! https://t.co/snHKnQ45TS +07/26/2017,Sports_celeb,@alleniverson,RIP PRODIGY... LONG LIVE MOBB DEEP https://t.co/NfGGsIpPMi +07/26/2017,Sports_celeb,@alleniverson,I love interacting with my fans @thebig3 Chicago 🎬: @kaptain_kai https://t.co/gWjjtFG9KW +07/25/2017,Sports_celeb,@alleniverson,I Love this man...Thanks coach!!! https://t.co/1QivLVxKWF +07/25/2017,Sports_celeb,@alleniverson,@prettichuckie FAMILY!!💯 https://t.co/GrxJ0HW6kq +07/25/2017,Sports_celeb,@alleniverson,Looking at the ppl scared to be who they really are! Im comfortable & blessed to be who i am… https://t.co/rns5EThLB5 +07/24/2017,Sports_celeb,@alleniverson,Happy gday to one of the greatest players I know @GaryPayton_20 and my young bull ao20buckets https://t.co/YP9xcQpsco +07/24/2017,Sports_celeb,@alleniverson,I will cherish this moment FOREVER! https://t.co/7COKeKl4Er +07/23/2017,Sports_celeb,@alleniverson,Happy Birthday to my big bro! https://t.co/S5SfUp9kg3 +07/21/2017,Sports_celeb,@alleniverson,Congrats Lil bruh!! #winsandlosses meekmill out today! https://t.co/9tWVAjl6qk +07/19/2017,Sports_celeb,@alleniverson,RT @coachmhagans: Always reppin' for Uncle Chuck @alleniverson🐐 https://t.co/croxM84Lyz +07/16/2017,Sports_celeb,@alleniverson,Just posted a video @ Wells Fargo Center https://t.co/PyNoNftKS3 +07/16/2017,Sports_celeb,@alleniverson,Tomorrow night at B Side!!! https://t.co/qcpQ3XsoGt +07/15/2017,Sports_celeb,@alleniverson,Get to @RUVILLA right now! First 10 fans to purchase spend $75 on Big 3/AI merchandise get a special invitation to… https://t.co/qbio9q9MdJ +07/15/2017,Sports_celeb,@alleniverson,"All my Philadelphia fans, I'm coming home tomorrow! Stop by @ruvilla on 12th and Chestnut… https://t.co/V0f9Q45Eac" +07/13/2017,Sports_celeb,@alleniverson,Daddy work https://t.co/SWkBL3Nh3C +07/13/2017,Sports_celeb,@alleniverson,#reallove #louwillcamp https://t.co/Rrm8RfZrKz +07/13/2017,Sports_celeb,@alleniverson,My lil man @teamlou23 doin it for the kids #louwillcamp https://t.co/QVKVzWf6lx +07/10/2017,Sports_celeb,@alleniverson,FAMILY! Only the ones that care for REAL understand!!! Love y'all! WE US!!!!!!!! https://t.co/lJADnjubMC +06/28/2017,Sports_celeb,@alleniverson,Mommy! https://t.co/vZFnwCqvYG +06/27/2017,Sports_celeb,@alleniverson,Fam https://t.co/RGeAuceXV3 +06/27/2017,Sports_celeb,@alleniverson,Fam https://t.co/RGeAubXmwt +06/27/2017,Sports_celeb,@alleniverson,Til Death... https://t.co/7H6dTNcQpQ +06/27/2017,Sports_celeb,@alleniverson,The guys https://t.co/gGm0Ms7G5V +06/27/2017,Sports_celeb,@alleniverson,theofficialai3's photo https://t.co/VGAbFL1b6q +06/24/2017,Sports_celeb,@alleniverson,"RT @SportsCenter: If Allen Iverson could play with one player in the BIG3, he says: Kobe. https://t.co/wABxL9ZtOi" +06/24/2017,Sports_celeb,@alleniverson,RT @ToddRadom: Big3 media day in NYC. The. Answer. https://t.co/tTL0FHFs1e +06/24/2017,Sports_celeb,@alleniverson,"RT @MichaelRapaport: Dreaming while awake with AI +@alleniverson @thebig3 +#TheAnswer https://t.co/qqu3yNNXYt" +06/23/2017,Sports_celeb,@alleniverson,RT @barclayscenter: Great seats just released for @thebig3 here this Sunday! Don't miss out: https://t.co/cGH5H7oEk4 #Big3BKLYN #Big3 https… +06/23/2017,Sports_celeb,@alleniverson,RT @thebig3: BIG3 has The Answer: we’re changing the game https://t.co/LE4lp1pbTw +06/22/2017,Sports_celeb,@alleniverson,Oxygen please !!!!! 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/N5BaGEUBml +06/22/2017,Sports_celeb,@alleniverson,Getting major flashbacks! Lol 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/PIHxPIYe3S +06/22/2017,Sports_celeb,@alleniverson,putting in the work! 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/rtCa7a3eh2 +06/18/2017,Sports_celeb,@alleniverson,I'm the best father in the world because they said so! I love being a part of the real fathers… https://t.co/s4ZXhIPer5 +06/16/2017,Sports_celeb,@alleniverson,11 days till Brooklyn!!! #BallinAgain @thebig3 https://t.co/pSgtKD9sJg +06/16/2017,Sports_celeb,@alleniverson,Happy birthday Big bro!!!..... see you in Brooklyn next week for the Big 3! Enjoy your day! https://t.co/UC1Pp6MN57 +06/07/2017,Sports_celeb,@alleniverson,RT @Hoophall: RT to wish #16HoopClass member @alleniverson a Happy Birthday! #HOFBdays https://t.co/plLkID73DW +06/07/2017,Sports_celeb,@alleniverson,"RT @ComplexSneakers: Happy 42nd Birthday to The Answer 🙌 + +We went 'Sneaker Shopping' with @alleniverson in Philly: https://t.co/HpJzxOxt7…" +06/07/2017,Sports_celeb,@alleniverson,RT @Hoophall: #OTD @alleniverson & @SHAQ both went the distance in each scoring 40+ PTS in Game 1 of the 2001 NBA Finals. #NBAFinals https:… +06/07/2017,Sports_celeb,@alleniverson,RT @thebig3: Happy Birthday @alleniverson from the #BIG3! https://t.co/h1Mthz3AUl +06/07/2017,Sports_celeb,@alleniverson,"RT @sixers: Happy birthday to the one, the only, @alleniverson! 🎉🎂 https://t.co/0t0fkcIZZf" +06/07/2017,Sports_celeb,@alleniverson,"RT @GeorgetownHoyas: Happy Birthday to @GeorgetownHoops, @NBA and @Hoophall legend, @alleniverson! https://t.co/XuwHq0A2vj" +06/07/2017,Sports_celeb,@alleniverson,Chillin wit my big baby on my day! tiaurai https://t.co/W72kIMVTBW +06/07/2017,Sports_celeb,@alleniverson,"RT @espn: The icon, the Hall of Famer, the Answer. + +Whatever you want to call him, @alleniverson turns 42 today. https://t.co/usYAYsm37F" +06/07/2017,Sports_celeb,@alleniverson,"RT @LapstoneHammer: $150 in-store and online, 11am, Friday. FCFS. Any remaining pairs from in-store release will be added to online availab…" +06/07/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: Happy birthday and best wishes to our good friend @alleniverson - you are a legend! Look forward to seeing you Friday e… +06/07/2017,Sports_celeb,@alleniverson,"RT @rootsoffight: #HBD to #TheAnswer @AllenIverson Today only, take 20% off our entire #AI3 collection. Use code: AIJB20 https://t.co/16FYA…" +06/05/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Special thanks to Coaches Steve Joyner Sr. and Jr. and Johnson C Smith University for hosting… https://t.co/MKGJvsYTIr +05/27/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: The legendary @alleniverson & @PostMalone rocking with our Lapstone & Hammer x @mitchell_ness Black Destructed Denim Co… +05/26/2017,Sports_celeb,@alleniverson,The culture has no boundaries! https://t.co/Oyu2SoQc62 +05/25/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: You have to be willing to do whatever it takes to make sure they get the message #YouGotIt #HOF… https://t.co/ooybrYjaCZ +05/25/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: A true mentor wants more for the mentee than for himself. It's been an honor to stand in your… https://t.co/6x1pFXcEPX +05/25/2017,Sports_celeb,@alleniverson,RT @ColinCowherd: Special moment meeting @alleniverson. Never heard anyone say that about LeBron and MJ https://t.co/m1JVzvJj6L +05/25/2017,Sports_celeb,@alleniverson,RT @ColinCowherd: Great meeting Allen Iverson today. Could not have been nicer or more authentic. https://t.co/gnWnmuxq7x +05/25/2017,Sports_celeb,@alleniverson,@ColinCowherd It was a pleasure! Thanks for the opportunity. +05/25/2017,Sports_celeb,@alleniverson,It's all coming together! Happy workings with these pros. https://t.co/VI5jNOyJQh +05/24/2017,Sports_celeb,@alleniverson,RT @TheHerd: .@alleniverson: It shows what type of player LeBron is that you can compare him to Black Jesus... I can't put anybody before M… +05/24/2017,Sports_celeb,@alleniverson,"RT @FS1: Who talked the most trash? @MichaelRapaport interviews @alleniverson. + +@thebig3 premieres June 26th on FS1 https://t.co/i6zaWYQa2w" +05/24/2017,Sports_celeb,@alleniverson,The Big 3 will fun for us & the fans! https://t.co/aJlUUFuahw +05/24/2017,Sports_celeb,@alleniverson,Me & big homie working https://t.co/0Kye9KCGnE +05/03/2017,Sports_celeb,@alleniverson,"RT @MooreMgmtEnt: You heard it here first... That was then, this is NOW! https://t.co/F1NQfpUifk" +05/03/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Big Time Players make Big Time Plays. 1ST I-3 NOW COMES I-4. Look out World! https://t.co/YHRhfWXFWn +05/01/2017,Sports_celeb,@alleniverson,"Congratulations on a first ballot Hall of Fame careeer. Paul ""The Truth"" Pierce https://t.co/MgaSSx3OsC" +04/27/2017,Sports_celeb,@alleniverson,You have to get the real answer #UpYourGame https://t.co/b4XghH1YBh +04/26/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: All in a day's work - https://t.co/zohqi9GrtG +04/26/2017,Sports_celeb,@alleniverson,"RT @Adweek: .@AllenIverson pitches @BleacherReport as sports culture, not just scores, in its first national spot: https://t.co/iE7huAGbEk…" +04/25/2017,Sports_celeb,@alleniverson,RT @BleacherReport: The Answer opens up about facing Michael Jordan #BRmag https://t.co/sVb4dx3inm https://t.co/L0prgRxOq5 +04/25/2017,Sports_celeb,@alleniverson,15 years later you need to get the real answer to get the game. 4.26.17. #UpYourGame @Bleacherreport #ad https://t.co/dFSZdmckm4 +04/23/2017,Sports_celeb,@alleniverson,"Proud to be playing a key part in an ol skool basketball game. Switch, Xbox, PS4 and PC. I'm… https://t.co/et5m7y7MRl" +04/23/2017,Sports_celeb,@alleniverson,Much love Kobe https://t.co/VKyTWeYYDl +04/23/2017,Sports_celeb,@alleniverson,Me & the 1 https://t.co/rJ6CcJ4vUc +04/23/2017,Sports_celeb,@alleniverson,Happy Birthday to my Uncle Stevie https://t.co/kPSQijk6YA +04/20/2017,Sports_celeb,@alleniverson,VA's finest https://t.co/oJooV67VQa +04/20/2017,Sports_celeb,@alleniverson,"A lot of good young talent at the @iversonclassic ... +https://t.co/9WHHeuYN2o" +04/20/2017,Sports_celeb,@alleniverson,Great first day at the @iversonclassic ... https://t.co/eG6Vc3q082 +04/13/2017,Sports_celeb,@alleniverson,"RT @ComplexSneakers: .@alleniverson told us how proud he was to see @kobebryant and @KingJames wear his signature sneakers. + +WATCH: https:…" +04/13/2017,Sports_celeb,@alleniverson,Check my collection from my friends @rootsoffight. The Spring Cleaning sale is this week only! #RootsOfBasketball… https://t.co/AEfzWaHU96 +04/10/2017,Sports_celeb,@alleniverson,Always nice shopping with the good people at @LapstoneHammer and had a great convo with @Complex Sneaker Shopping.… https://t.co/hUkqP4xu6X +04/01/2017,Sports_celeb,@alleniverson,"Congratulations @Real_T_Mac, well deserved killa!! https://t.co/UQ83CzQi3J" +03/20/2017,Sports_celeb,@alleniverson,Swift! Love u & your family CHAMP...Cherish tomorrow. https://t.co/jcc1as4WS7 +03/19/2017,Sports_celeb,@alleniverson,Sis just got busy in my home town...God is good! @MonicaBrown https://t.co/QHQlNOBAJE +03/10/2017,Sports_celeb,@alleniverson,"RT @SiriusXMNBA: ""The nucleus of talent is off the chain."" @alleniverson on the current @Sixers. Hear the FULL interview w/@TinaCervasio to…" +03/10/2017,Sports_celeb,@alleniverson,RT @TheSource: Mitchell And Ness Unveiled Their Revamped Brand Shop At The @NBAStore With Help From @AllenIverson https://t.co/9pOXUkvHqb h… +03/10/2017,Sports_celeb,@alleniverson,Thank you!!! @mitchell_ness +03/10/2017,Sports_celeb,@alleniverson,"RT @mitchell_ness: 🅰️ℹ️ but we call him Chuck @alleniverson! Special thanks to the @NBASTORE & @NBA, as well as all of the media & fans who…" +03/10/2017,Sports_celeb,@alleniverson,#Repost @nba ... @alleniverson greets fans at the launch of the @mitchell_ness shop at the… https://t.co/r01pqQmLwS +03/08/2017,Sports_celeb,@alleniverson,"#Repost @divineuniversal ... +Tomorrow in 🗽 at the @nbastore with the 🐐 @alleniverson... https://t.co/MoUarmjUpT" +03/08/2017,Sports_celeb,@alleniverson,Family https://t.co/8ZwqXs1DEI +03/08/2017,Sports_celeb,@alleniverson,Me and my lil bro doing it for #SixersYouthFoundation https://t.co/y608oE9Cj4 +03/03/2017,Sports_celeb,@alleniverson,Me & Lil Big Man!!! @Isaiah_Thomas https://t.co/efojWkYrDQ +03/03/2017,Sports_celeb,@alleniverson,A Angel's son! https://t.co/clEEsYZ24A +03/02/2017,Sports_celeb,@alleniverson,Greatest Sniper of All-Time @StephenCurry30 https://t.co/Srjg1LHKKP +03/01/2017,Sports_celeb,@alleniverson,Control your own destiny and do it your way. Try Stash. Use my link for a $5 bonus to start:… https://t.co/9lZAZaDLoa +02/21/2017,Sports_celeb,@alleniverson,Shop my collection #TheAnswer on SALE NOW at https://t.co/xgDSgZI9ed #rootsofbasketball https://t.co/ruxfm0pjny +01/13/2017,Sports_celeb,@alleniverson,"RT @NBA: Showing off his @Hoophall 💍 + +@alleniverson courtside at @chicagobulls/@nyknicks! https://t.co/EBGTwkN3Jm" +01/12/2017,Sports_celeb,@alleniverson,Let's help get @Isaiah_Thomas into the 2017 @NBAAllStar Game in New Orleans. Retweet to vote! #NBAVOTE #NBAAllStar… https://t.co/wJIaFHeDsF +01/07/2017,Sports_celeb,@alleniverson,#Sixers fans! Let's help get @JoelEmbiid into the 2017 @NBAAllStar Game in New Orleans. Retweet to vote! #NBAVOTE @Sixers #NBAAllStar #nba +01/07/2017,Sports_celeb,@alleniverson,#NBAVote for the lil homie joelembiid https://t.co/bF7kUUmesJ +12/21/2016,Sports_celeb,@alleniverson,RT @HRVarsity: .@alleniverson gives back to Boys and Girls Club of Greater Hampton Roads https://t.co/Ar7xB90uHm via @jfmcgrath @visualDP h… +12/21/2016,Sports_celeb,@alleniverson,@DP_Sports @jfmcgrath @visualDP thanks for coming out. +12/21/2016,Sports_celeb,@alleniverson,RT @DP_Sports: .@alleniverson gives back to Boys and Girls Club of Greater Hampton Roads https://t.co/f8qreVAAyM via @jfmcgrath @visualDP h… +12/21/2016,Sports_celeb,@alleniverson,@PhillyMayor thank you for your love and support. +12/21/2016,Sports_celeb,@alleniverson,RT @PhillyMayor: Thank you @alleniverson for your continued support of the people of Philadelphia and @PhillyPAL! https://t.co/sZ14Q9ZtZU +12/21/2016,Sports_celeb,@alleniverson,@BobbyScott Thank you for coming. +12/21/2016,Sports_celeb,@alleniverson,RT @BobbyScott: Proud to support Hall Of Famer @alleniverson & @BGC_VAPeninsula for their Bring Home Christmas For Hometown Youth event htt… +12/20/2016,Sports_celeb,@alleniverson,"Special thanks to the City of Portsmouth, Grove Church, Portsmouth Redevelopment and Housing and… https://t.co/UfT2bJFpM8" +12/20/2016,Sports_celeb,@alleniverson,RT @ChenueHer: The legend himself @alleniverson is in the building! #TheAnswer https://t.co/TSkDv7YaTf +12/20/2016,Sports_celeb,@alleniverson,@AdamWinkSports @WTKR3 thank for coming out! +12/20/2016,Sports_celeb,@alleniverson,"RT @AdamWinkSports: Think Hampton native @alleniverson loves #Virginia? (Hint: Yes. Yes he does.) + +More from A.I. tonight on @WTKR3. + +https…" +12/16/2016,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: December 29-30 we'll be having the 2nd annual #CrossOverHoopsShowcase at the Hampton Coliseum. Tickets https://t.co/QRhGR… +12/16/2016,Sports_celeb,@alleniverson,Next week stay tuned for my holiday give back in the Hampton Roads area --> https://t.co/PWfmYBe030 +12/16/2016,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Join Allen Iverson next week as he gives back to the Hampton Roads community this Christmas --> https://t.co/09ni3JCt6O +12/15/2016,Sports_celeb,@alleniverson,Rest In Peace to Craig Sager. My condolences go out to his family and friends. We lost a great… https://t.co/eOits3OfvV +12/08/2016,Sports_celeb,@alleniverson,"My latest tee from @rootsoffight just dropped #TheAnswer #PHILA +Check it out at https://t.co/M5r6bbfGRh https://t.co/DV4B1iLU7t" +11/25/2016,Sports_celeb,@alleniverson,Head to https://t.co/voCpv1A0uO to check it out. https://t.co/55CovKSFOS +11/25/2016,Sports_celeb,@alleniverson,My collection from @rootsoffight is on sale this weekend for #BlackFriday #Cyber Monday. +11/18/2016,Sports_celeb,@alleniverson,Check out my new collab with @rootsoffight part of their #RootsOfBasketball collection. Shop… https://t.co/0CRQhpu5S5 +11/17/2016,Sports_celeb,@alleniverson,My #RootsofBasketball collection from @rootsoffight comes out tomorrow. #TheAnswer https://t.co/MqCfPHkJMt +11/13/2016,Sports_celeb,@alleniverson,The champ 📸: @therealbl https://t.co/Hm6paO6V2K +11/12/2016,Sports_celeb,@alleniverson,Great win guys!!!! +10/18/2016,Sports_celeb,@alleniverson,RT @SoleCollector: .@BaitMeCom's ice cold Reeboks honor @AllenIverson: https://t.co/sR2ei5hvdt https://t.co/KUL79JJuI8 +10/18/2016,Sports_celeb,@alleniverson,RT @VibeMagazine: Check out @BaitMeCom's take on @alleniverson's Reebok Question Mid https://t.co/OS5AEfn35u https://t.co/sx4eZSKPoJ +10/07/2016,Sports_celeb,@alleniverson,Georgetown Made Me https://t.co/L5ntAh9xRv +09/21/2016,Sports_celeb,@alleniverson,RT @GeorgetownHoops: Always great having @alleniverson on campus!! #H4L #WeAreGeorgetown https://t.co/NGy2mHqBFJ +09/19/2016,Sports_celeb,@alleniverson,A real one! @50cent https://t.co/3LoCxtmXlZ +09/16/2016,Sports_celeb,@alleniverson,#QuestionMidPacker Shoe Release. @packershoes @reebokclassics #NYC https://t.co/Rx0MvBTwsM +09/15/2016,Sports_celeb,@alleniverson,Thank you for having me @colbertlateshow !! +09/12/2016,Sports_celeb,@alleniverson,"RT @PlayersTribune: A bond bigger than basketball, Aaron McKie's stories on the @AllenIverson you don’t know: https://t.co/y1zjZWE6hX https…" +09/08/2016,Sports_celeb,@alleniverson,Looking forward to a great weekend! https://t.co/3ZeyBRMLId +08/25/2016,Sports_celeb,@alleniverson,"RT @SLAMonline: Despite an unspectacular supporting cast, @alleniverson took the Sixers to the Finals in 2001. #TBT @mitchell_ness https://…" +08/24/2016,Sports_celeb,@alleniverson,RT @stance: 👍 @alleniverson https://t.co/VqHcIAoeRo +08/24/2016,Sports_celeb,@alleniverson,"RT @Sixers: Enter to win some @alleniverson socks from @stancehoops 🔥 + +[ 🗳 » https://t.co/c6pao4xSpI ] https://t.co/4Rl6zyY3FX" +08/22/2016,Sports_celeb,@alleniverson,"RT @TheHarlemHotBoy: Standing Room ONLY‼️ +@alleniverson 🏀 https://t.co/CTWZFmEoWz" +08/22/2016,Sports_celeb,@alleniverson,"RT @ReebokClassicCA: @alleniverson + @Therealkiss = Reebok Question ""A5"". Available now in Canada! #thisISclassic #Question20 https://t.co/…" +08/18/2016,Sports_celeb,@alleniverson,RT @dlynamCSN: Walking through #rittenhousesquare I was tempted to buy this painting of #HOF @alleniverson… https://t.co/Hr9iVjX6qW +08/16/2016,Sports_celeb,@alleniverson,"RT @Footaction: Find the @stancehoops X @alleniverson ""Aces"" and ""Winning Taste"" @stance sock designs in stores now! #OwnIt https://t.co/Sq…" +08/16/2016,Sports_celeb,@alleniverson,RT @mitchell_ness: 2001 Allen Iverson ASG jersey @alleniverson @nbaallstar @nba #TheANSWER #2001ASG https://t.co/10vSQ64Rh9 https://t.co/8u… +08/12/2016,Sports_celeb,@alleniverson,"RT @Therealkiss: ""LIVIN LEGENDS"" ALLEN IVERSON & JADAKISS https://t.co/bZwCRlKFqP" +08/12/2016,Sports_celeb,@alleniverson,"RT @Therealkiss: #LIVINLEGENDS +#ALLENIVERSON +#JADAKISS +#SORASPY +#REEBOK https://t.co/wKN80evOK1" +08/12/2016,Sports_celeb,@alleniverson,RT @ReebokClassics: OUT NOW: @alleniverson x @TheRealKiss Question A5 - https://t.co/qQcX8p5O2G https://t.co/9Kis2dMUe9 +08/12/2016,Sports_celeb,@alleniverson,"RT @Footaction: Hook those A5s up with the @stancehoops X @alleniverson ""Money Bags"" socks - in stores now! #OwnIt https://t.co/tbNO5AdQuP" +08/10/2016,Sports_celeb,@alleniverson,We lost a great one today. Long live John Saunders! +08/10/2016,Sports_celeb,@alleniverson,If you haven't grabbed a pair of my new @stancehoops socks get them today. Link in my bio… https://t.co/iKWupL8rrh +08/10/2016,Sports_celeb,@alleniverson,Thanks to What's Up Energy! #AICSC https://t.co/788IStYMpV +08/08/2016,Sports_celeb,@alleniverson,RT @Ballislife: (VIDEO) Allen Iverson & Larry Hughes Reenacted A 1999 NBA Commercial This Past Weekend https://t.co/mY9CxV4DMO https://t.co… +08/08/2016,Sports_celeb,@alleniverson,"RT @SLAMonline: Over the weekend, @alleniverson, @therealkiss and @myfabolouslife posted up at the @mitchell_ness party in Philly. +https://…" +06/28/2018,Sports_celeb,@TheNotoriousMMA,RT @BurgerKing: 😝 #whassup @budweiserusa https://t.co/uEGLmiqq7D +06/24/2018,Sports_celeb,@TheNotoriousMMA,Ireland baby I love you. IE Monsters 🍀 https://t.co/SOK61vQIse +06/20/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/VZStTUVxQf +06/13/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: Legend #ConorMcGregor https://t.co/VNbpzHeEVa +06/12/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/Dc1TI5meVR +06/09/2018,Sports_celeb,@TheNotoriousMMA,"Congrats @CianCowley from the cells to the stadiums. Not a scratch. They done nothing. +Jet leaves Tuesday my broth… https://t.co/zt1t98tscg" +06/07/2018,Sports_celeb,@TheNotoriousMMA,"I took up two jobs. +Where there is a will. There is a way. +Keep grinding 🙏 https://t.co/fBvohKCKxX" +06/06/2018,Sports_celeb,@TheNotoriousMMA,Solid work tonight because 4th place doesn’t get… https://t.co/SpgiGS3Rwz +06/06/2018,Sports_celeb,@TheNotoriousMMA,thinking about all of your belts 🍆 https://t.co/KLu1YJcxGF +06/06/2018,Sports_celeb,@TheNotoriousMMA,Made it to number 4 on the Forbes list this… https://t.co/nt45hs8ZbM +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @MariahMorrison7: Goals...Stubborn , Patience, Diligence,Persistence &Hard Work = this successful smile. @TheNotoriousMMA keep it up htt…" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @KristinaCarrino: @TheNotoriousMMA this is a picture of my son Connor, he’s called “Little Notorious One” by all his instructors. We lov…" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"I will usually work towards the temple, but… https://t.co/GllvrSoPoD" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @KingMcgregorFC: From Nothing , to something , to everything. @TheNotoriousMMA https://t.co/vkPsV5YRh9" +05/30/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/sp1FfUVeIw +05/29/2018,Sports_celeb,@TheNotoriousMMA,Out for a nice fly https://t.co/OqBWhtXZf2 +05/25/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: .@Relentlessward says if @50cent wants to have a go at fighting, he's happy to meet him. + +Full Interview: https://t.co…" +05/23/2018,Sports_celeb,@TheNotoriousMMA,"Keep your dukes up when you see me. +See you soon. https://t.co/M2KX5HZ90F" +05/23/2018,Sports_celeb,@TheNotoriousMMA,Respect. https://t.co/Bttk9rzdYo +05/22/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/MTLPp5lexa +05/22/2018,Sports_celeb,@TheNotoriousMMA,"Zoom in on the tie, it says fuck you. +Zoom in the cuff, it says who it’s from. +@AugustMcGregor https://t.co/JnK7WFn5Hz" +05/21/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Does @WonderboyMMA mind playing the villain? Not exactly. + +(Full interview: --> https://t.co/NnoLhzJUpe) https://t.co/…" +05/20/2018,Sports_celeb,@TheNotoriousMMA,Thank you Rock! Your work ethic is inspiring to… https://t.co/YOU8BELmXa +05/19/2018,Sports_celeb,@TheNotoriousMMA,"RT @SevereMMA: Video - Finish from Peter Queally vs David Khachatryan at FNG 88 + +https://t.co/AMrfIpXnfI #IrishMMA https://t.co/Sb2eh64JNI" +05/19/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Peter Queally: The reason I stay so calm in fights is because I’m used to sparring with Conor McGregor | https://t.co/… +05/19/2018,Sports_celeb,@TheNotoriousMMA,RT @liamgallagher: I've just watched your film Conor McGregor biblical I want you to be in my new music video as you were LG x +05/15/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: 60 Gs BABYYY @TheNotoriousMMA https://t.co/treIYTz0IE +05/12/2018,Sports_celeb,@TheNotoriousMMA,Watching the Late Late show last night and on comes this young man… https://t.co/Z9WT4vaJlf +05/12/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: Champ @TheNotoriousMMA Enjoying with the little champ 😍😍😍 @DeeDevlin1 #conormcgregor https://t.co/rJxN7zbjPc +05/12/2018,Sports_celeb,@TheNotoriousMMA,"RT @HansMolenkamp: I enjoy shooting photos of legendary people. +@TheNotoriousMMA 👑 +———$—$———- +#ConorMcGregor #TheNotoriousMMA #Mölenkamp ⚔️…" +05/11/2018,Sports_celeb,@TheNotoriousMMA,RT @John_Kavanagh: best of luck to my long time student @TheHotWheels93 walking the #DarknessintoLight in the early hours of tomorrow. cont… +05/11/2018,Sports_celeb,@TheNotoriousMMA,"RT @danfar93: Another @amazon Alexa Skill I've been playing around with for @MacTalkApp + +@TheNotoriousMMA  + +#McGregorSportsAndEntertainmen…" +05/09/2018,Sports_celeb,@TheNotoriousMMA,McGregor Sports and Entertainment. https://t.co/EDYRM4ETnT +05/03/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor (@thenotoriousmma) & SBG inspire disabled athlete Craig Rankin (@TheHotWheels93) to achieve his goals 👊… +04/26/2018,Sports_celeb,@TheNotoriousMMA,RT @TheHotWheels93: Yesterday the best fighter on the planet @TheNotoriousMMA helped me get through 3500 metres doin so with the use of one… +04/14/2018,Sports_celeb,@TheNotoriousMMA,"It is only a lesson if you learn from it. +I learn everyday. https://t.co/vg7CpK9xYg" +04/10/2018,Sports_celeb,@TheNotoriousMMA,❤️ https://t.co/6FXVQkwGs1 +04/05/2018,Sports_celeb,@TheNotoriousMMA,You’s’ll strip me of nothing you’s do nothing cunts. +04/03/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor vs. Nate Diaz II voted best fight in UFC history | https://t.co/X986fy1dRa https://t.co/YXV5SpMHzM +04/03/2018,Sports_celeb,@TheNotoriousMMA,"RT @ufc: The Greatest UFC fight of all-time - as voted on by YOU! + +🏆 @NateDiaz209 vs @TheNotoriousMMA 2 - UFC 202 - Aug. 20, 2016 🏆 + +#UFC2…" +04/02/2018,Sports_celeb,@TheNotoriousMMA,"Feeling strong on the @mcgregorsfast program. +Sign up today at https://t.co/AR8mnmdlay https://t.co/VtBdIRcBSk" +04/02/2018,Sports_celeb,@TheNotoriousMMA,These fools pull out more times than I do with my dick. +03/31/2018,Sports_celeb,@TheNotoriousMMA,"What an inspiration and true legend you are Arnold @Schwarzenegger! +It is great to hear you are back in good healt… https://t.co/O0QCE7LHo4" +03/30/2018,Sports_celeb,@TheNotoriousMMA,"Solid work with phenomenal young wrestler Kosti. +Another great Moldovan in the stable. +Up Moldova 🇲🇩 https://t.co/vF9uMZvRJ9" +03/29/2018,Sports_celeb,@TheNotoriousMMA,💪🏼🇮🇪 https://t.co/vQaq7ecTf7 +03/24/2018,Sports_celeb,@TheNotoriousMMA,Stay ready. +03/23/2018,Sports_celeb,@TheNotoriousMMA,"Sit down Dana, I'm the real boss. The Champ Champ 🇮🇪. #BeatTheBoss #ad + +Up to 35% off for a limited time 👉… https://t.co/bksBOMmK3B" +03/21/2018,Sports_celeb,@TheNotoriousMMA,"Today is World Down Syndrome Day! A day to celebrate abilities in everyone. +In honour of the… https://t.co/GGWbq91MwV" +03/21/2018,Sports_celeb,@TheNotoriousMMA,🐋🐳 https://t.co/RrXSyYpjZB +03/20/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Ahead of MMA debut, Dillon Danis finds motivation in training alongside Conor McGregor | https://t.co/L4RFnEHg31 https…" +03/17/2018,Sports_celeb,@TheNotoriousMMA,"Happy St Patrick's day everyone 🍀 +Conor Jr. went to his first parade today and he was absolutely… https://t.co/WGccbYxNqR" +03/16/2018,Sports_celeb,@TheNotoriousMMA,Let's go Jimi boy! Team @Betsafe #UFCLondon https://t.co/1BsAqTUg6C +03/16/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: 10 Years in the Making: In anticipation of his fight at this weekend’s UFC London, The Mac Life caught up with Jimi Ma…" +03/15/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Dana White now a playable character in EA UFC 3 | https://t.co/FOqDAHW86I https://t.co/xqmKSM3piS +03/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @EASPORTSUFC: The ultimate boss battle comes to the Octagon. #BeatTheBoss #BeTheBoss #EAUFC3 + +Up to 35% off for a limited time 👉 https:/…" +03/15/2018,Sports_celeb,@TheNotoriousMMA,RT @MonsterGaming: Get in the game and play as the GOAT! https://t.co/jCOpucYWQH +03/12/2018,Sports_celeb,@TheNotoriousMMA,You will never beat the McGregor's. https://t.co/qE3EbFWkee +03/12/2018,Sports_celeb,@TheNotoriousMMA,"RT @BurgerKing: it's an honor to meet this King, from one King to another...@TheNotoriousMMA #spicycrispychickensandwich https://t.co/ldXkc…" +03/09/2018,Sports_celeb,@TheNotoriousMMA,1 Euro. https://t.co/GdLPottQw2 +03/09/2018,Sports_celeb,@TheNotoriousMMA,"The conormcgregorfast conditioning program is the true animal. +10 TRUE weeks long this camp was.… https://t.co/OXUZTPcTgm" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"Happy international Women's day everyone! +Get your tits out for the lads ladies. We love you… https://t.co/2rRn1TNPXq" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"170 years ago today Ireland's Tri-colour was first raised! +I've raised it high and with pride… https://t.co/P1p68oGetW" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"WHAT A HISTORY! +WHAT A FUTURE! +IRELAND FIRST 🍀 https://t.co/AFZw0F2AUJ" +03/08/2018,Sports_celeb,@TheNotoriousMMA,Standing next to the Original declaration of Ireland's independence with my son Conor McGregor Jr. https://t.co/A9QoJ0rvt7 +03/07/2018,Sports_celeb,@TheNotoriousMMA,"Underneath Ireland's GPO. +Those in power, proceed with caution. +This is an Irish pedestrian area. https://t.co/CUqjXFsEBg" +03/07/2018,Sports_celeb,@TheNotoriousMMA,Dons under 30. https://t.co/MHuUnZBHcw +03/07/2018,Sports_celeb,@TheNotoriousMMA,Thanks for the cheese. Actually no give me all your cheese. https://t.co/hT2EH6LUk1 +03/05/2018,Sports_celeb,@TheNotoriousMMA,"Making deals and TAKING deals! +Kings recognise Kings! +Congrats to jayz on his number 1 takeover… https://t.co/ienY2VHUc0" +03/05/2018,Sports_celeb,@TheNotoriousMMA,The Undisputed Champ Champ and the Undisputed Spicy Champ #spicycrispychickensandwich @burgerking #ad https://t.co/cd9yR0SgHe +03/05/2018,Sports_celeb,@TheNotoriousMMA,There are two kings in this picture and only one in the fight game. Forget the rest. Big news on the way.… https://t.co/mfUCgYu9sA +03/05/2018,Sports_celeb,@TheNotoriousMMA,"@TonyFergusonXT You are a sad bastard, mate." +03/05/2018,Sports_celeb,@TheNotoriousMMA,"@BlessedMMA @FrankieEdgar Kid, you bounced. Leave it." +03/04/2018,Sports_celeb,@TheNotoriousMMA,"Frankie's career deserved for that to be against me tonight. +Respect Frankie. +Love and respect always! +A true fighters fighter ❤" +03/01/2018,Sports_celeb,@TheNotoriousMMA,Happy birthday kid. https://t.co/wlmpKE6SHT +03/01/2018,Sports_celeb,@TheNotoriousMMA,You are all handy bread. https://t.co/yM9qFUrH19 +02/22/2018,Sports_celeb,@TheNotoriousMMA,"I am fighting again. Period. +I am the best at this. +I put my name forward to step in at UFC… https://t.co/fbxOL8l4JL" +02/22/2018,Sports_celeb,@TheNotoriousMMA,"RT @SixOClockShow: Straight off the dance floor and into our studio, .@GregorErin will be with us tonight! Any questions? Get them in! http…" +02/22/2018,Sports_celeb,@TheNotoriousMMA,"Harry Kane, Sergio Aguero and Mo Salah are lighting up this year's Premier League. We want to know who you think wi… https://t.co/U9tqcnLCmL" +02/21/2018,Sports_celeb,@TheNotoriousMMA,"At the @mcgregorsfast Sports Institute staying sharp and staying ready. +We are leading Ireland to a better tomorro… https://t.co/a5YJZ8W5Gp" +02/20/2018,Sports_celeb,@TheNotoriousMMA,"At the conormcgregorfast Sports Institute staying sharp and staying ready. +We are leading… https://t.co/ZheGI2JHOj" +02/20/2018,Sports_celeb,@TheNotoriousMMA,🦍 @mcgregorsfast https://t.co/dT8LKHvdtc +02/20/2018,Sports_celeb,@TheNotoriousMMA,RT @BetsafeRacing: A great day of racing ahead at @WetherbyRaces! Check out our Acca Boosts for today's action: https://t.co/7rIPVjOZGS htt… +02/20/2018,Sports_celeb,@TheNotoriousMMA,RT @RTEOne: 'From good to to GREAT!' well done @GregorErin & @RYANMCS! #DWTSIrl https://t.co/inBViX2PhT +02/19/2018,Sports_celeb,@TheNotoriousMMA,True Irish Whiskey is forming in the barrels as we speak. https://t.co/DLI7igJK9Z +02/18/2018,Sports_celeb,@TheNotoriousMMA,I am happy for Floyd and his recent announcement that he is out of these current fight… https://t.co/EfTBJXf4RK +02/17/2018,Sports_celeb,@TheNotoriousMMA,RT @iamblazen: @TheNotoriousMMA No ref is gonna save Floyd when he starts shaking his A$$ at Conor in the #UFC ⚰️🔨 https://t.co/fegS0C0HNx +02/17/2018,Sports_celeb,@TheNotoriousMMA,"This was just moments after I tore my ACL in a fight in Boston Massachusetts. +It was when I… https://t.co/hrkuUVOCKd" +02/16/2018,Sports_celeb,@TheNotoriousMMA,Controlling the human head. https://t.co/0Ktgp4CvZz +02/16/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: John Kavanagh (@John_Kavanagh) on McGregor/Mayweather in MMA: ‘We could fit it in on the night of Conor’s real fight’… +02/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @btsportufc: The Russian Hammer is back! 👊 + +And #UFC223 just keeps on stacking up... + +Watch it live on BT Sport HD on April 7th 📺 https:…" +02/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @HansMolenkamp: (Hans Photo Vault) 2015 +The undisputed King of the fight game and life pretty much. 💰🏅 +@TheNotoriousMMA at one of our fi…" +02/14/2018,Sports_celeb,@TheNotoriousMMA,Walking into the place of battle like it is the place of breakfast. https://t.co/xR7ErsyAtB +02/11/2018,Sports_celeb,@TheNotoriousMMA,A real elbow in a real fight. https://t.co/9kZ7Opw8Zl +02/08/2018,Sports_celeb,@TheNotoriousMMA,RT @PrettyGreen: Strong start to the day - @SportIndustry nomination for ‘Best Use of PR’ for our @Betsafe @TheNotoriousMMA campaign #BTSIA… +02/08/2018,Sports_celeb,@TheNotoriousMMA,RT @Betsafe: Betsafe are delighted to have been nominated in the ‘Best Use of PR’ category @SportIndustry for our PR campaign with @TheNoto… +02/07/2018,Sports_celeb,@TheNotoriousMMA,"5 years ago today, I signed a contract with the UFC. +When the call came, I would have been… https://t.co/Il0vbfXdN2" +02/07/2018,Sports_celeb,@TheNotoriousMMA,"RT @MMAHistoryToday: Feb7.2013 + +5 years ago today, + +The UFC signed Conor McGregor to a multi fight contract. https://t.co/BWW4CJJ9ei" +02/05/2018,Sports_celeb,@TheNotoriousMMA,"Standing next to a rare signed photo of Muhammad Ali and Joe Frazier. +Two fighting greats who… https://t.co/7XUYts14Fk" +02/05/2018,Sports_celeb,@TheNotoriousMMA,"🍀🇮🇪🇺🇸❤🍀1 +@themaclifeofficial https://t.co/vH9Qsq887J" +02/05/2018,Sports_celeb,@TheNotoriousMMA,RT @SophiaHelwani: If Conor McGregor ever wants to become a pop singer he could be Justin Timberlake's doppelganger. @jtimberlake @TheNotor… +02/05/2018,Sports_celeb,@TheNotoriousMMA,Thank you to everyone voting and supporting my sister on Dancing with the stars. Yup the… https://t.co/PsdyUGiLRu +02/04/2018,Sports_celeb,@TheNotoriousMMA,Boo https://t.co/mDvS8DpAcU +02/04/2018,Sports_celeb,@TheNotoriousMMA,"Text ""Erin"" to 53125 NOW! +What a performance this week @erinmcgregor123 on Dancing with the Stars! +#TeamMcGregor… https://t.co/KqdVee0UF7" +02/03/2018,Sports_celeb,@TheNotoriousMMA,When there is no referee to save you. https://t.co/5XXA7G5uCq +02/03/2018,Sports_celeb,@TheNotoriousMMA,The game. https://t.co/v5P3qp7nmY +02/02/2018,Sports_celeb,@TheNotoriousMMA,Think you can take me? You'll do NOTHING! @EASPORTSUFC 3 is out now 👉 https://t.co/kX0BYy5t2V #ad https://t.co/q1pLwU3Ehe +02/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Conor McGregor ""delighted"" for Ronda Rousey in WWE move | https://t.co/ABkIPrlOuU https://t.co/rO1q4N2FDT" +02/02/2018,Sports_celeb,@TheNotoriousMMA,RT @Eemsoshea: Conor McGregor @TheNotoriousMMA &many more shone a bright light for @CMRFCrumlin in NY this wk @ 7th Best of Ireland Gala Di… +02/02/2018,Sports_celeb,@TheNotoriousMMA,💪🏼 https://t.co/bOPh8KUyZz +02/02/2018,Sports_celeb,@TheNotoriousMMA,I run New York. https://t.co/TjxNjbGBGo +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor honoured for his charitable work for Dublin children’s hospital | https://t.co/mQvMUNhAa2 https://t.co/… +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor was the United States’ most Googled athlete in 2017 | https://t.co/E3hhd1Djbe https://t.co/qDxit7r4e1 +02/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Conor McGregor on Floyd Mayweather's MMA posts: 'If he doesn't do it, it'll follow him for the rest of his days' | htt…" +02/01/2018,Sports_celeb,@TheNotoriousMMA,It was an honour to support Our Ladies Children's Hospital of Crumlin at the 7th Annual 'Best of… https://t.co/GzkENlxIAN +02/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @DamonMartin: A new study shows Conor McGregor as the most Googled athlete in the U.S. with Ronda Rousey at No. 7. Take a look — +#UFC…" +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @arielhelwani: Conor McGregor is in New York tonight. He’s being honored at the New York’s Children Medical Research Foundation 7th Annu… +01/31/2018,Sports_celeb,@TheNotoriousMMA,RT @EASPORTSUFC: Are you ready fight fans?! RT and tag a friend for a chance to both win #EAUFC3 Champions Edition codes and play today! ht… +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Comfort on the commercial flight! +Rocking my custom made 'NOTORIOUS' @beatsbydre headphones!… https://t.co/Bi7W1gT8PD" +01/31/2018,Sports_celeb,@TheNotoriousMMA,Stay hydrated. https://t.co/wYbpibNmkG +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Accepting my UFC fighter of the year award at the awards ceremony in Las Vegas in 2016. +I called in through phone… https://t.co/QE4mqCdbDA" +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Accepting my UFC fighter of the year award at the awards ceremony in Las Vegas. +I called in… https://t.co/z0K5GnUka4" +01/30/2018,Sports_celeb,@TheNotoriousMMA,Fuck the Mayweathers. https://t.co/1E4MQTWoUr +01/30/2018,Sports_celeb,@TheNotoriousMMA,"Hahahaha very good. Keep up the good work my son. +Yours sincerely, +Senior. https://t.co/Qk3U69isTS" +01/29/2018,Sports_celeb,@TheNotoriousMMA,Neck work. https://t.co/60LQ9ib7jS +01/29/2018,Sports_celeb,@TheNotoriousMMA,"Attacking the standing back. +This is the equivalent of being wrapped around by a boa… https://t.co/3pWNszzOKo" +01/29/2018,Sports_celeb,@TheNotoriousMMA,I'm on top. https://t.co/x5iZwfOpFU +01/28/2018,Sports_celeb,@TheNotoriousMMA,"Congrats @GregorErin on Dancing with the stars tonight! +You killed it again! +Vote 'Erin' to… https://t.co/DWoCnBRV9e" +01/27/2018,Sports_celeb,@TheNotoriousMMA,I am so everywhere I am behind you. https://t.co/diq4sQWlgH +01/27/2018,Sports_celeb,@TheNotoriousMMA,Yum yum. https://t.co/q4i4ab7HJh +01/26/2018,Sports_celeb,@TheNotoriousMMA,God bless us all 🙏 https://t.co/i4h2pZOhUI +01/25/2018,Sports_celeb,@TheNotoriousMMA,"We are having lunch on the jet on our way to Ibiza, and he is still after the watch too. +My… https://t.co/Z1mwPMaqgU" +01/19/2018,Sports_celeb,@TheNotoriousMMA,Testosterone. https://t.co/szD4xOnVnK +01/19/2018,Sports_celeb,@TheNotoriousMMA,"In a parallel universe could we have seen this? +Follow my media empire @Maclifeofficial on all… https://t.co/sbpIdFvMBL" +01/19/2018,Sports_celeb,@TheNotoriousMMA,RT @Betsafe: That #FridayFeeling. 💯🔥 https://t.co/milMUmSypE +01/19/2018,Sports_celeb,@TheNotoriousMMA,RT @JaredDudley619: Just got done watching @TheNotoriousMMA new Movie!!! 🔥🔥🔥🔥 Hate him or Love him but after watching that movie you will r… +01/19/2018,Sports_celeb,@TheNotoriousMMA,White teeth in 10 minutes with @hismileteeth. Go to https://t.co/rKIK9Dm9WA to get yours #ad https://t.co/mGh4F4Xvgu +01/18/2018,Sports_celeb,@TheNotoriousMMA,Fresh and solid. You bet your bollox I can play Centre half hahah https://t.co/Ij9IDFrfBV +01/18/2018,Sports_celeb,@TheNotoriousMMA,"Working on the ""Blitz"" tonight at @SBG_Ireland. +An underrated technique until it goes through… https://t.co/vIOjO3VzO7" +01/16/2018,Sports_celeb,@TheNotoriousMMA,The White Knight. https://t.co/dEYPhaBZZ6 +01/16/2018,Sports_celeb,@TheNotoriousMMA,Proud of the newest members of @beatsbydre. Keep pushing boundaries! #abovethenoise https://t.co/sa9dTKLk3Z +01/16/2018,Sports_celeb,@TheNotoriousMMA,The home of the champ champ. https://t.co/UlSYRGkxMQ +01/15/2018,Sports_celeb,@TheNotoriousMMA,Driving out the compound these women are animals. https://t.co/zRM29Lp6na +01/15/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/OinS5sQjyt https://t.co/BtloiWrfSl +01/14/2018,Sports_celeb,@TheNotoriousMMA,The Rich list. https://t.co/cjseZSJJfG +01/14/2018,Sports_celeb,@TheNotoriousMMA,"Great job on Dancing with the stars @GregorErin!! #Proud +Voting lines are now open everyone!… https://t.co/j0nTbt41OQ" +01/13/2018,Sports_celeb,@TheNotoriousMMA,Taasty! https://t.co/yFeTvLb10V +01/12/2018,Sports_celeb,@TheNotoriousMMA,"Fighting pure is a different gravy. +Looking at the landscape of my current opponents, everyone… https://t.co/aKEjNDnn01" +01/12/2018,Sports_celeb,@TheNotoriousMMA,Control that wrist and let rip into the temple with the free hand. Stay ready always. https://t.co/mzcrykyLA0 +01/12/2018,Sports_celeb,@TheNotoriousMMA,Great rounds with my brother sergey_pikulskiy tonight at @SBG_Ireland! https://t.co/KfmY1Xd8Vq +01/12/2018,Sports_celeb,@TheNotoriousMMA,Back at the gym floyds a rat. https://t.co/FT5Zea2z8N +01/12/2018,Sports_celeb,@TheNotoriousMMA,"This is the new @marquedelux range. +The one in the back is my range. https://t.co/QJW5EC7jOc" +01/11/2018,Sports_celeb,@TheNotoriousMMA,"My latest time piece. +The pink gold skeleton. https://t.co/c64QJQAuwu" +01/10/2018,Sports_celeb,@TheNotoriousMMA,Plunder. https://t.co/QpLdbXNOJr +01/10/2018,Sports_celeb,@TheNotoriousMMA,With the Baroness lady Mone of Mayfair. https://t.co/6ybjrmoDWP +01/10/2018,Sports_celeb,@TheNotoriousMMA,"Face off with Mr. Branson. +He is not a knighted Sir on this soil. https://t.co/LQBC1zYhP1" +01/10/2018,Sports_celeb,@TheNotoriousMMA,@FloydMayweather I am the cartel. +01/10/2018,Sports_celeb,@TheNotoriousMMA,RT @MichelleMone: Totally love this guy!! @TheNotoriousMMA https://t.co/qHH4Fg9Fx9 +01/10/2018,Sports_celeb,@TheNotoriousMMA,"Pulling into the back of the convention centre to collect some award. +Handy. Thanks. https://t.co/nBCAO4wV3H" +01/10/2018,Sports_celeb,@TheNotoriousMMA,Buzzing with my auntie Joan at Eddie Rockets hahah ❤ https://t.co/kRvDw85HsI +01/10/2018,Sports_celeb,@TheNotoriousMMA,Yup the Moore's ❤ https://t.co/hBDR7jLQKK +01/09/2018,Sports_celeb,@TheNotoriousMMA,"The road to becoming the GOAT goes through me #EAUFC3 #EASponsored + +Get Champions Edition 👉 https://t.co/JUNlKeiqAv https://t.co/pZcG1xr3yt" +01/09/2018,Sports_celeb,@TheNotoriousMMA,"This is a happy young man in the midst of it all! +God bless this life. Truly god bless. https://t.co/izlrYNwFwx" +01/09/2018,Sports_celeb,@TheNotoriousMMA,"Great to meet this little man tonight. +My training partner Ciaran Maher, his son and his wife.… https://t.co/mRwyMIlpa3" +01/09/2018,Sports_celeb,@TheNotoriousMMA,The only Q in the place. https://t.co/Lk0FL8twuo +01/09/2018,Sports_celeb,@TheNotoriousMMA,"I shut down funderland tonight, for my family and friends to have fun on this fresh January… https://t.co/1DHxX3j2b9" +01/08/2018,Sports_celeb,@TheNotoriousMMA,The people of Ireland I love you 🍀❤ https://t.co/mC7a7Ueq04 +01/06/2018,Sports_celeb,@TheNotoriousMMA,"This moment was survived. +The arm was kept locked out straight as pictured, allowing the… https://t.co/W0rgQvbue2" +01/06/2018,Sports_celeb,@TheNotoriousMMA,McGregor rules. https://t.co/dWCD7PlD5f +01/06/2018,Sports_celeb,@TheNotoriousMMA,"Great work with my brother and head coach of sbgdublin24 The Hooligan @paddyholohanmma +yup the… https://t.co/hUHf1TrjPQ" +01/06/2018,Sports_celeb,@TheNotoriousMMA,Late night trim feeling so good. https://t.co/OdwvCQitRe +01/05/2018,Sports_celeb,@TheNotoriousMMA,Shut your weasel mouth. Who gives a fuck about the North American numbers when we are the GLOBAL KINGS you shmuck.… https://t.co/fdE7hL1z8r +01/05/2018,Sports_celeb,@TheNotoriousMMA,Solid https://t.co/Py7PFTpl3X +01/05/2018,Sports_celeb,@TheNotoriousMMA,Great work with my brother @richie_smullen today at @SBG_Ireland. Look out for him on the next… https://t.co/zh6qFEQhNY +01/04/2018,Sports_celeb,@TheNotoriousMMA,"RT @John_Kavanagh: Starting on Monday one of my first Black Belts, Nerigus, will be coaching full time at HQ. He started with me more than…" +01/04/2018,Sports_celeb,@TheNotoriousMMA,A lot of great buzzes in this mad life but none greater or madder than this buzz right here… https://t.co/6FY9Ggm0x0 +01/04/2018,Sports_celeb,@TheNotoriousMMA,🍆 @CalvinKlein https://t.co/leFoCBBvLV +01/03/2018,Sports_celeb,@TheNotoriousMMA,"""Smiles every time my face is up in the source!"" +Whatever you do in this life, do it for your… https://t.co/oHHX0KOoDU" +01/03/2018,Sports_celeb,@TheNotoriousMMA,"RT @ConormcGregor5: A Irish woman didn't take too kindly to being clamped so she removed the clamp herself & left this message + +'You'll do…" +01/02/2018,Sports_celeb,@TheNotoriousMMA,"""The Flatley"" +With sharp peripheral vision and big balls of steel, you too can master this… https://t.co/EfgSbLEIwg" +01/02/2018,Sports_celeb,@TheNotoriousMMA,I slaughter your pets and wear them as coats. And I only wear them once. https://t.co/5IMAc3ysgN +01/02/2018,Sports_celeb,@TheNotoriousMMA,The super hero villain. @beatsbydre https://t.co/Ln2gr1wVa3 +01/01/2018,Sports_celeb,@TheNotoriousMMA,Now get your Diddy's out and beg. +01/01/2018,Sports_celeb,@TheNotoriousMMA,And that's Diddy bread on top of already Diddy bread. +01/01/2018,Sports_celeb,@TheNotoriousMMA,"Truly truly truly get on your fucking knees and beg me. Otherwise I don't give a bollox. +My whiskey is out this year and thats Diddy bread." +01/01/2018,Sports_celeb,@TheNotoriousMMA,Shin bone to the cheek bone. The rule set kept you out the funeral home. https://t.co/chJ5ieUQvQ +01/01/2018,Sports_celeb,@TheNotoriousMMA,That Dagestani was dog shit the other night you's are all nuts. Game full of sloppy bums asking to be slept. Pay me my worth and Kings back. +01/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @CageWarriors: One shot. @TheNotoriousMMA has been putting people away with this left hand since the early days! 👌 + +#McGregorTakeover ht…" +01/01/2018,Sports_celeb,@TheNotoriousMMA,#2017BestNine ❤ https://t.co/zkAcbcImkB +12/30/2017,Sports_celeb,@TheNotoriousMMA,Big Mickey https://t.co/fyZLFGgt3X +12/26/2017,Sports_celeb,@TheNotoriousMMA,"Happy Christmas everyone ❤️ +I had a special day with my son, my family and my friends! +I hope… https://t.co/buwkiiHpz5" +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @ashbabyxx24xx: Best Christmas present ever. Can’t wait to settle down and watch @TheNotoriousMMA tonight. Im@proud to be half Irish ☘️… +12/25/2017,Sports_celeb,@TheNotoriousMMA,"RT @joshtetlow: Watching the @TheNotoriousMMA Movie, Fire lit, Whisky in hand. A Merry Christmas to all the Tebow lovers and haters! 🎥 🥃🎄 h…" +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @ryannevanssNo9: Going to be a good rest of the day 🤴🎁@TheNotoriousMMA https://t.co/TAhDLXZ5pz +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @StephenMcMinter: People always tell me they dunno what to buy me and then they roll up with a hand signed @TheNotoriousMMA photo. Clear… +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @stan_cargill: @TheNotoriousMMA brothers favourite Christmas present ... https://t.co/et927Tcfin +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @Vince_Costello: @TheNotoriousMMA best Christmas gifts ever! https://t.co/MyYQf0y44L +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @AdamB156: Santa knew what’s up! @TheNotoriousMMA https://t.co/lxN2XPIc8k +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @James_Hoare2301: All I wanted for Christmas was the @TheNotoriousMMA movie and I got it ❤️ It’s the small things that count... Merry Ch… +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @jordhall6: What a christmas present this is!!! Over the moon with it!! Unreal best christmas ever!! @TheNotoriousMMA @DeeDevlin1 @John_… +07/02/2018,Sports_celeb,@TigerWoods,"Tiger finishes tied for 4th @QLNational, making this his second-best showing of the season. - TGR +https://t.co/PKxCmT14iZ" +07/02/2018,Sports_celeb,@TigerWoods,"Congrats @F_Molinari on a great win @QLNational! Thanks to the fans, volunteers, @TPCPotomac and my @TGRLiveEvents… https://t.co/iMVMTbepm6" +07/01/2018,Sports_celeb,@TigerWoods,Tiger tees off tomorrow at 1:20 p.m. ET with hopes that the course plays firm and tough. – TGR https://t.co/VvVK5ansgZ +06/30/2018,Sports_celeb,@TigerWoods,The camo bag used in today’s round will be signed and entered into an auction where the proceeds will benefit… https://t.co/SxUb2MS2v1 +06/30/2018,Sports_celeb,@TigerWoods,"“I was thinking something in the mid-to-high 60’s would have been a good score, and I was able to do that,” said Wo… https://t.co/yghaNw1j0X" +06/29/2018,Sports_celeb,@TigerWoods,"Woods tees off tomorrow morning at 8:20 a.m. ET - TGR +https://t.co/7mi2QlFeA4" +06/28/2018,Sports_celeb,@TigerWoods,Go check out @TGRFound’s Activity Zone at @QLNational this weekend! - TGR https://t.co/SgXmdzVPTB +06/28/2018,Sports_celeb,@TigerWoods,"“Fun Pro-Am round today. Excited to be back in DC playing at the @QLNational supporting @TGRFound.” #MomentsMadeHere +https://t.co/NsgbMifWBq" +06/27/2018,Sports_celeb,@TigerWoods,I am proud to continue the tradition of honoring and supporting our nation’s military at the @QLNational.… https://t.co/w4n1636dEI +06/26/2018,Sports_celeb,@TigerWoods,RT @TGRFound: Check out this great article via @usatoday: @TigerWoods wants to level the playing field in education one child at a time htt… +06/17/2018,Sports_celeb,@TigerWoods,"Happy Father's Day everyone. +I'm blessed and proud to be Sam's and Charlie's dad." +06/16/2018,Sports_celeb,@TigerWoods,"Tiger heads home after missed cut at U.S. Open but looks forward to upcoming events, including the @QLNational. - T… https://t.co/zETwWpCaQh" +06/15/2018,Sports_celeb,@TigerWoods,"Tiger tees off at tomorrow morning at 8:02 a.m. ET on the 10th hole with Johnson and Thomas. - TGR +https://t.co/eW5ZKmwaBx" +06/13/2018,Sports_celeb,@TigerWoods,"Upon arrival at Shinnecock, Woods practices with fellow competitors and friends who touch on how his game is lookin… https://t.co/JBnWD7B7zg" +06/13/2018,Sports_celeb,@TigerWoods,"It’s been 10 years since Woods won the U.S. Open. He’s back with hopes of a fourth win, this time at Shinnecock Hil… https://t.co/ad39RLr9fe" +06/04/2018,Sports_celeb,@TigerWoods,"“Overall, my game is where it needs to be heading into the U.S. Open, and that’s something that’s very positive,” s… https://t.co/qJLA7VEhzf" +06/03/2018,Sports_celeb,@TigerWoods,"“I’m in a position where if I shoot another good round like I had the last two days, I’ve got a chance,” said Woods… https://t.co/bP5yrUTpjm" +06/02/2018,Sports_celeb,@TigerWoods,"“I was in the rhythm of the round,"" said Woods after making an eagle on the 11th hole. Finishing today at 5-under-p… https://t.co/SvfI5qGZ9E" +06/01/2018,Sports_celeb,@TigerWoods,"Tiger, who ended Round 1 at even par, will tee off tomorrow at 1:16 p.m. ET with Dufner and Rose. - TGR +https://t.co/KIG0Xuu4AZ" +05/30/2018,Sports_celeb,@TigerWoods,"“This one is very special to all of us for what he has done,” said Woods of tournament founder and host, Jack Nickl… https://t.co/lftr1OJkyf" +05/30/2018,Sports_celeb,@TigerWoods,Fun playing with Peyton today. Now time to do some work @MemorialGolf https://t.co/YuhCTiMpMi +05/30/2018,Sports_celeb,@TigerWoods,Excited to be back at The Memorial. New @TaylorMadeGolf #MGwedge going in the bag this week. https://t.co/wq83blgY20 +05/29/2018,Sports_celeb,@TigerWoods,"Here today at Shinnecock, and grateful every day to the men & women who sacrificed their lives to give us our freed… https://t.co/bUBxAIk63F" +05/23/2018,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Loved having our friends from @ChiGolfAlliance in the office yesterday. Wonderful to hear @MarkRolfingGC and @TigerWood… +05/23/2018,Sports_celeb,@TigerWoods,So proud of @TGRFound for being recognized as a leader in leveraging tech and talent to promote social good. - TGR https://t.co/h5pI7HASaO +05/21/2018,Sports_celeb,@TigerWoods,"""Joe, take the day off."" @TGRFound supporter to caddie for Woods Wednesday at #HeroWorldChallenge for $50,000 donat… https://t.co/eLDNrMynY7" +05/20/2018,Sports_celeb,@TigerWoods,"Thank you @LarryFitzgerald, @ReggieBush and all of the guests who came out to #TigerJam to support @TGRFound this w… https://t.co/ksdTtgKfji" +05/20/2018,Sports_celeb,@TigerWoods,What a great show by @train at #TigerJam. Thank you for supporting @TGRFound https://t.co/UbGjiZ6Nnn +05/20/2018,Sports_celeb,@TigerWoods,Glad to have @TGRFound scholar Desiree Simms share her story with the #TigerJam guests. Such an inspiration! https://t.co/XwysAknQQq +05/18/2018,Sports_celeb,@TigerWoods,Excited to celebrate 20 years of #TigerJam this weekend. This event has been vital to the impact @TGRFound has had… https://t.co/40dMGox4Nw +05/18/2018,Sports_celeb,@TigerWoods,Fun time teeing it up for guests at Shadow Creek for the 20th #TigerJam today! https://t.co/u0dKi7rako +05/14/2018,Sports_celeb,@TigerWoods,"“I felt good in basically every facet of my game,” said Woods, who finished The Players tied for 11th. - TGR +https://t.co/A28ay0SelN" +05/13/2018,Sports_celeb,@TigerWoods,"Happy Mother’s Day everyone. Thank you Mom for giving me the strength to chase after my dreams in school, golf, lif… https://t.co/xhy2qQjxW8" +05/13/2018,Sports_celeb,@TigerWoods,"Rising up the leaderboard, Tiger finishes Saturday’s round at 7-under-par 65. - TGR +https://t.co/op8DKddLaJ" +05/12/2018,Sports_celeb,@TigerWoods,"Woods heads into the weekend at The Players, teeing off tomorrow at 9 a.m. ET. - TGR +https://t.co/H4t0r0cPVv" +05/11/2018,Sports_celeb,@TigerWoods,"“I gotta drive it a lot better than I did today and obviously hit it closer,” said Woods, who tees off tomorrow mor… https://t.co/L1qqh2iU8c" +05/09/2018,Sports_celeb,@TigerWoods,"“I think it’s going to be fun playing with him again,” said Woods of Mickelson. The two, alongside Rickie Fowler, w… https://t.co/YQDDc4nM5t" +05/07/2018,Sports_celeb,@TigerWoods,"Woods finishes tied for 55th and is already looking forward to next week. - TGR +https://t.co/0MKPwljGac" +05/06/2018,Sports_celeb,@TigerWoods,"Having not played at the @WellsFargoGolf in six years, it really meant a lot to me to receive so much love and supp… https://t.co/F7Box8S1ga" +05/06/2018,Sports_celeb,@TigerWoods,"“I’m hitting the ball well enough to contend, to win this golf tournament,” said Woods, who tees off tomorrow at 11… https://t.co/JYX8zw4ZZs" +05/05/2018,Sports_celeb,@TigerWoods,"“I just need to make the adjustments,” Woods said in regards to the firm greens. With a birdie on the final hole, h… https://t.co/48JdUyW9dx" +05/04/2018,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: #MayThe4thBeWithYou https://t.co/DtEgDRHsno +05/04/2018,Sports_celeb,@TigerWoods,"Woods finishes the opening round with an even par. He will tee off tomorrow morning at 7:40 a.m. ET - TGR +https://t.co/g9OqXxNKRA" +05/02/2018,Sports_celeb,@TigerWoods,"Tiger arrives at the Wells Fargo Championship with new irons and high hopes for the weekend. - TGR +https://t.co/ROjYaLBuYk" +05/01/2018,Sports_celeb,@TigerWoods,Phase 1 of irons development with @TaylorMadeGolf is complete. Looking forward to teeing it up this week! https://t.co/Msgkyu4K0t +04/26/2018,Sports_celeb,@TigerWoods,Break over. Time to get back to work at @WellsFargoGolf and @THEPLAYERSChamp. See you out there. +04/25/2018,Sports_celeb,@TigerWoods,"RT @BluejackNation: Two years ago today, we celebrated the grand opening of @BluejackNation with @TigerWoods and @tgrdesignbytw. As we refl…" +04/24/2018,Sports_celeb,@TigerWoods,"Inspiring day working with my @TGRFound team and meeting Pratima Sherpa, an amazing young woman from Nepal. We can… https://t.co/xYcHSKQg6s" +04/17/2018,Sports_celeb,@TigerWoods,Had a great time with the kids at @GolfBigCedar's Junior Clinic this afternoon. Nice way to end the day. https://t.co/1bqtYZaqam +04/17/2018,Sports_celeb,@TigerWoods,Great to be back at Payne's Valley with my @tgrdesignbytw team and @GolfBigCedar. https://t.co/4Qd9vlppjc +04/09/2018,Sports_celeb,@TigerWoods,"Bittersweet ending for Tiger as he finished the last round at The Masters. - TGR +https://t.co/emtXFyum45" +04/09/2018,Sports_celeb,@TigerWoods,Congrats @PReedGolf! At worst you have assured yourself a captain’s pick for next year’s @PresidentsCup. +04/08/2018,Sports_celeb,@TigerWoods,"""I wish this weekend would have been a little bit better,"" Woods said, hopeful for a strong finish. - TGR +https://t.co/EhMpaEgkwK" +04/07/2018,Sports_celeb,@TigerWoods,"Tiger continuing into weekend thankful to be a part of it all. - TGR +https://t.co/LTXEwYSOao" +04/06/2018,Sports_celeb,@TigerWoods,"""There's a lot of holes left to be played,"" said Woods, who will tee off today at 1:27 p.m. ET. - TGR +https://t.co/fLzA64UKDP" +04/05/2018,Sports_celeb,@TigerWoods,"The wait is over. - TGR +https://t.co/7hwq04UfkY" +04/04/2018,Sports_celeb,@TigerWoods,"Tiger tees off Thursday at 10:42 a.m. ET, and we can hardly wait. - TGR +https://t.co/8Vl9t3WBSN" +03/30/2018,Sports_celeb,@TigerWoods,"Just a few more days until Augusta. I'm excited! +https://t.co/BzD70K3V5o" +03/26/2018,Sports_celeb,@TigerWoods,"Excited to be back in D.C. this summer and looking forward to playing in @TheNationalDC. + +https://t.co/NGkpoveZ8y" +03/19/2018,Sports_celeb,@TigerWoods,It was a great two weeks of being in contention again. I feel like I'm getting a little better. Great playing by Ro… https://t.co/5aljwJC54B +03/13/2018,Sports_celeb,@TigerWoods,The @PresidentsCup has always been special to me and I'm so excited for the opportunity to lead the U.S. Team in 20… https://t.co/M6nDOj0XFs +03/12/2018,Sports_celeb,@TigerWoods,"Wow, what an amazing week...people, atmosphere, adrenaline, back nine on Sunday, man I’ve missed this. Getting bett… https://t.co/EYk1wAtE22" +03/02/2018,Sports_celeb,@TigerWoods,After a good recovery week I’m committing to play in the @ValsparChamp and @APinv next two weeks. +02/25/2018,Sports_celeb,@TigerWoods,Happy 80th bday Phil. Thanks for believing in me and always being someone I could trust. +02/19/2018,Sports_celeb,@TigerWoods,"Thanks to @GenesisUSA, the fans, volunteers and my @TGRLiveEvents staff for an amazing @genesisopen week. https://t.co/Q1JXTQAj4z" +02/19/2018,Sports_celeb,@TigerWoods,Congrats @bubbawatson on winning the @genesisopen. Proud to add you once again to the impressive list of champions… https://t.co/3MenMORmp3 +02/15/2018,Sports_celeb,@TigerWoods,Frank likes his new bag. #GenesisOpen https://t.co/9IvLgJF3Re +02/15/2018,Sports_celeb,@TigerWoods,"Enjoyed the Pro-Am today at Riviera. Looking forward to round 1 of @genesisopen. + +https://t.co/G2GZuM4dKH" +02/14/2018,Sports_celeb,@TigerWoods,I had a great time getting to know one of #TGRFoundation's Earl Woods Scholars Andy Ho. Shout out to Western High f… https://t.co/XzpSW4j5zy +02/13/2018,Sports_celeb,@TigerWoods,"“Over the last 21 years, my foundation has grown to be bigger than just me and today I'm excited to announce the ne… https://t.co/haMv5sK7e5" +02/01/2018,Sports_celeb,@TigerWoods,Riviera has always been a special place for me. Looking forward to playing in the Genesis Open. https://t.co/bKDzF98TRS +01/29/2018,Sports_celeb,@TigerWoods,Can’t thank the San Diego fans enough. I scrambled my butt off but happy with my first event back. See you at Riv! +01/25/2018,Sports_celeb,@TigerWoods,Great session @TaylorMadeGolf. New M3 is dialed in and ready to go. #m3driver https://t.co/xkESziPm8l +01/23/2018,Sports_celeb,@TigerWoods,RT @genesisopen: We went 1-on-1 with @TigerWoods and asked all the hard hitting questions like 'what would your walk up song be?' Watch now… +01/18/2018,Sports_celeb,@TigerWoods,Welcome to the crew @Lexi https://t.co/2eWBpU7X37 +01/16/2018,Sports_celeb,@TigerWoods,Busy few weeks testing @TaylorMadeGolf’s #TwistFace technology. Really like what I’m seeing. Here’s why: https://t.co/AqUzpgHvOG +01/15/2018,Sports_celeb,@TigerWoods,Happy MLK Day everyone https://t.co/AFmU482Gfd +01/09/2018,Sports_celeb,@TigerWoods,He’s back! #RaiderNation https://t.co/cHvjXqqn5m +01/04/2018,Sports_celeb,@TigerWoods,Excited to start my season off in SoCal at @FarmersInsOpen and @genesisopen. https://t.co/TaX9wjAeFN +01/01/2018,Sports_celeb,@TigerWoods,Happy birthday to myself :) Nothing like shooting a cobia and an amberjack. https://t.co/fqff602bk3 +12/29/2017,Sports_celeb,@TigerWoods,"Reflecting on 2017, optimistic about 2018. https://t.co/hKxk8eluWR" +12/22/2017,Sports_celeb,@TigerWoods,By TW https://t.co/uudaN5hP31 +12/21/2017,Sports_celeb,@TigerWoods,RT @KidRock: #TBT Tiger Jam 2013 https://t.co/nq2LkSBKu4 +12/20/2017,Sports_celeb,@TigerWoods,There’s nothing better than working with great partners. Thanks @DiamanteCabo https://t.co/njJTwtRoq9 +12/18/2017,Sports_celeb,@TigerWoods,Proud to support @tgrdesignbytw friend Johnny Morris’s @WOWaquarium and his efforts on conservation.… https://t.co/Nr98F1KGek +12/16/2017,Sports_celeb,@TigerWoods,Thank you @KenJowdy and @DiamanteCabo members for a special few days. Excited about the #oceanclubcabo & our new… https://t.co/NSLaaKXctz +12/15/2017,Sports_celeb,@TigerWoods,"Great to be back @DiamanteCabo with @tgrdesignbytw - Busy, fun day ahead!" +12/14/2017,Sports_celeb,@TigerWoods,Pretty cool event @BluejackNation this week for a great cause. https://t.co/8wRnJeVDPW +12/06/2017,Sports_celeb,@TigerWoods,Great being with my team @BridgestoneGolf. Gearing up for an even better… stronger 2018. #DareToBeBetter https://t.co/R0tcOplyDH +12/05/2017,Sports_celeb,@TigerWoods,Excited to be back for our 20th year of #TigerJam https://t.co/Wf2JJoZyDH +12/03/2017,Sports_celeb,@TigerWoods,Congratulations to @RickieFowler on an unforgettable victory at the #heroworldchallenge! https://t.co/1OtqSopZeW +11/30/2017,Sports_celeb,@TigerWoods,Excited to be back and teeing it up with Bridgestone Golf’s TOUR B XS https://t.co/NYZI07uMti +11/30/2017,Sports_celeb,@TigerWoods,Time to go to work. #M2driver @TaylorMadeGolf https://t.co/esXjSZ28fP +11/29/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: “My dad and I had this idea of having this event and I just think that over these years that my dad would have been very… +11/28/2017,Sports_celeb,@TigerWoods,"RT @TWFoundation: We INSPIRE youth to THRIVE in school & beyond. TOGETHER, we can make the future shine bright! GIVE: https://t.co/KMt09uQv…" +11/28/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: Catch @TigerWoods live talking all things #heroworldchallenge on @GolfChannel during @GCMorningDrive at 8:30 a.m. ET htt… +11/27/2017,Sports_celeb,@TigerWoods,Looking forward to a great week at Albany for the #heroworldchallenge https://t.co/unFzOFIY3R +11/26/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: Welcome to the 2017 #heroworldchallenge | @TigerWoods https://t.co/p4MfWOyz32 +11/25/2017,Sports_celeb,@TigerWoods,Bryce Love is THE best player in college football. Period. Show some #HeismanLove for @Blovee_20. +11/11/2017,Sports_celeb,@TigerWoods,"Happy Veterans Day to the men & women, including my Pop, who selflessly served our great country and gave us our freedom. #VeteransDay" +11/06/2017,Sports_celeb,@TigerWoods,Another W. Just win baby!!!!!! +11/06/2017,Sports_celeb,@TigerWoods,"There’s only ONE Nation, #RaiderNation https://t.co/Nvy2vqy2OK" +11/03/2017,Sports_celeb,@TigerWoods,RT @GenoPodcast: Episode 2 featuring @TigerWoods is LIVE. Click the link to listen! https://t.co/M2iRy5MXBK +11/02/2017,Sports_celeb,@TigerWoods,Not the result we wanted after a great season. We will be back to the Series soon. Proud to be a Doyer fan. +11/01/2017,Sports_celeb,@TigerWoods,We own game 7. Go Doyers!!!! #WorldSeriesGame7 +10/31/2017,Sports_celeb,@TigerWoods,"RT @TGRLiveEvents: What is @tigerwoods favorite #Halloween costume? Well, he has TWO. + +#TGRLive #HappyHalloween https://t.co/g0MeFMYpdJ" +10/30/2017,Sports_celeb,@TigerWoods,I’d like to thank the committee of 1 for picking myself and Daniel Berger to play in this years #HeroWorldChallenge. https://t.co/z5tn5aARUY +10/26/2017,Sports_celeb,@TigerWoods,"I last went to the #WorldSeries with my Dad in 1988, also game 2. Amazing to be back almost 30 years later. Let’s g… https://t.co/HR3pF5vnZB" +10/23/2017,Sports_celeb,@TigerWoods,Return of the Stinger. #starwars https://t.co/R7srIDGXjl +10/19/2017,Sports_celeb,@TigerWoods,"What a dream night. All 3 of my teams are playing. Raider Nation, The Doyers and the Lake Show!!!!!!!!! Just win baby!" +10/15/2017,Sports_celeb,@TigerWoods,Making Progress https://t.co/I3MZhJ74kI +10/13/2017,Sports_celeb,@TigerWoods,What an amazing 3 days of golf at #TWInvitational. Thank you to @usli150 and everyone who supported @twfoundation a… https://t.co/L2OfRUPvKb +10/10/2017,Sports_celeb,@TigerWoods,A huge thank you to @kevin_chappell for joining me on the range for a fun exhibition with #TWInvitational guests… https://t.co/34PfvfugBU +10/10/2017,Sports_celeb,@TigerWoods,Both the @TWFoundation and I are thrilled to have Earl Woods Scholar Tony Armas join us at tonight’s… https://t.co/vuWWzwbwkL +10/07/2017,Sports_celeb,@TigerWoods,Smooth iron shots https://t.co/v9XLROZnfW +09/27/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Here’s a first look at The Playgrounds @jacksbayclub in the beautiful Bahamas. We’re excited about the golf & amazing lo… +09/22/2017,Sports_celeb,@TigerWoods,Looking forward to the @PresidentsCup in NYC next week. https://t.co/V0mZQ2KcOv +09/12/2017,Sports_celeb,@TigerWoods,Thinking about my friends and fellow Floridians throughout the state. I pray everyone is safe and your recovery is as quick as possible. +09/01/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: We're excited for the future & to be a part of the restoration at Jackson Park & South Shore golf courses - great articl… +08/31/2017,Sports_celeb,@TigerWoods,Dr. gave me the ok to start pitching https://t.co/tboq1L3Xdn +08/28/2017,Sports_celeb,@TigerWoods,Heartbreaking images from Houston and throughout TX. Thinking about the brave & resilient people there & my friends at @BluejackNation +08/26/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Great day working on Payne's Valley with @TigerWoods & Johnny Morris of @BassProShops followed by a fun night @BigCedarL… +08/25/2017,Sports_celeb,@TigerWoods,Great to be back @BigCedarLodge. Excited to see all the progress being made on Payne’s Valley. https://t.co/TRIhhdRGGJ +08/21/2017,Sports_celeb,@TigerWoods,My daughter Sam took a great pic from her phone while we were in Tennessee for the eclipse. #EclipseSolar2017 https://t.co/TVZ5IOUQWr +08/20/2017,Sports_celeb,@TigerWoods,What an amazing day for @Lexi and the @SolheimCupUSA team. That was some inspirational golf. Congrats on winning the Cup. +08/17/2017,Sports_celeb,@TigerWoods,"RT @TWFoundation: Want to see @TWFoundation at @SXSWedu? VOTE NOW to get our 6 sessions through! #TWFatSXSWedu #PanelPicker + +https://t.co/6…" +08/16/2017,Sports_celeb,@TigerWoods,"Good luck to everyone this week at #USAmateur at Riv, home of @TGRLiveEvents @GenesisOpen. -TGR" +08/15/2017,Sports_celeb,@TigerWoods,Got to have a great dinner with the PGA champion @JustinThomas34 and his family and friends. https://t.co/QwVo5aJ0bg +08/14/2017,Sports_celeb,@TigerWoods,A great honor for @StewartCink to be named this year's #PayneStewartAward winner pres. by @SouthernCompany. Well de… https://t.co/luOG0FSS6K +08/13/2017,Sports_celeb,@TigerWoods,Congrats JT!!!! Way to rise above the carnage and out execute everyone on that back nine. @JustinThomas34 +08/10/2017,Sports_celeb,@TigerWoods,"Contrary to the false Daily Mail article, Kristin Smith and I are no longer dating and haven’t since last year." +08/08/2017,Sports_celeb,@TigerWoods,Really like & support decision by PGA & the Tour. A big event every month and flexibility with schedule including the FedExCup. +08/04/2017,Sports_celeb,@TigerWoods,Nothing like free diving with the kids for lobster at Albany. https://t.co/QgdvrMYnPX +07/30/2017,Sports_celeb,@TigerWoods,Thank you to Messi and Suarez for meeting my kids and their best friends. #ElClasico https://t.co/9PqPQoR6Vb +07/23/2017,Sports_celeb,@TigerWoods,What an incredible way to comeback and win. Many congrats @JordanSpieth +07/21/2017,Sports_celeb,@TigerWoods,New cloth for the pool table. https://t.co/ARcsiGNmuH +07/04/2017,Sports_celeb,@TigerWoods,Happy Birthday America and thank you to all who defend it!! - By TW +07/03/2017,Sports_celeb,@TigerWoods,By TW https://t.co/AfHewS2uRL +07/03/2017,Sports_celeb,@TigerWoods,"Thank you @QuickenLoans & all the fans, players, volunteers, @TPCPotomac & @TGRLiveEvents staff for making this year’s @QLNational a success" +07/02/2017,Sports_celeb,@TigerWoods,Congratulations to @kylestanleygolf on your @QLNational win. Proud to call you our champion. - TW +06/19/2017,Sports_celeb,@TigerWoods,By TW https://t.co/AuX6PEgNQ1 +05/24/2017,Sports_celeb,@TigerWoods,Updates on Tiger Jam and my recovery. https://t.co/BFtv1y5v1J +05/21/2017,Sports_celeb,@TigerWoods,A huge thank you to my friend @dariusrucker for making #TigerJam 2017 an epic night to remember. -TW https://t.co/uDb9dfeS7T +05/21/2017,Sports_celeb,@TigerWoods,"So proud of Adrian Arias, our first #EarlWoodsScholar graduating with a law degree. These scholars are unrelenting.… https://t.co/OMcmzgVHz6" +05/20/2017,Sports_celeb,@TigerWoods,Thank you @KateUpton @phil_hellmuth & guests for playing poker at #TigerJam. Your support of the @TWFoundation is m… https://t.co/Y1zbgzMYgD +05/14/2017,Sports_celeb,@TigerWoods,"Thanks for the miles you drove, the courses you walked and the hugs we still share. Love you mom. -TW" +05/09/2017,Sports_celeb,@TigerWoods,"Hard to believe my first #FedExCup was almost 10 years ago now. What do you say, @vijaysinghgolf? https://t.co/1GhFGwM6um" +05/06/2017,Sports_celeb,@TigerWoods,"So close, this is why you aim for the impossible.-TW https://t.co/BTmcEh4AkF" +05/05/2017,Sports_celeb,@TigerWoods,"Proud to launch new sites for TGR, Tiger Woods Ventures. Check out what we're doing on and off the course. -TW… https://t.co/7xa6HofxfA" +04/25/2017,Sports_celeb,@TigerWoods,This was a very memorable day & milestone for me & TGR Design. Congrats to the team at Bluejack National & continue… https://t.co/hGHwaDqH1o +04/20/2017,Sports_celeb,@TigerWoods,https://t.co/tg8neDwNYt +04/18/2017,Sports_celeb,@TigerWoods,TGR Design & I are excited to partner with Johnny Morris on our first public golf course @BigCedarLodge. https://t.co/9rURWnUnKw +04/12/2017,Sports_celeb,@TigerWoods,"I’ve always wanted to design a public course, and I’m very happy that my TGR Design company will make a big announcement next week. -TW" +04/09/2017,Sports_celeb,@TigerWoods,Congrats @TheSergioGarcia. Well earned. +04/05/2017,Sports_celeb,@TigerWoods,Excellent night at the Champions dinner. Good friends and great memories. https://t.co/zEHpFq62i9 +04/03/2017,Sports_celeb,@TigerWoods,"Viewers at home should not be officials wearing stripes. Let's go @Lexi, win this thing anyway." +03/31/2017,Sports_celeb,@TigerWoods,"Champions dinner with friends Tuesday, but not tournament ready to play Augusta. https://t.co/ip14qY7sTM" +03/25/2017,Sports_celeb,@TigerWoods,"RT @nikegolf: It's going down on April 2. And you're invited. +Come play with us. #NikeGolfClub + +https://t.co/vygBECq98D https://t.co/HowVUF…" +03/23/2017,Sports_celeb,@TigerWoods,"Golfers often use the most played ball, rather than the superior one. Find your edge with @bridgestonegolf – TW… https://t.co/YGQd9LCn8T" +03/20/2017,Sports_celeb,@TigerWoods,"Great day in NYC & thankful to those who attended my book signing of The 1997 Masters, My Story.… https://t.co/O2gDuOWeDq" +03/15/2017,Sports_celeb,@TigerWoods,The most rewarding things you do in life are often the ones that look like they cannot be done – Arnold Palmer. Thi… https://t.co/6UTD93hdCt +03/14/2017,Sports_celeb,@TigerWoods,"TGR Design to design a short course at @jacksbayclub at Rock Sound on Eleuthera Island, Bahamas.… https://t.co/3oseLZGQ5b" +03/09/2017,Sports_celeb,@TigerWoods,Sadly missing the 2017 API. I really wanted to be there. My best wishes to the Palmer family & everyone at Bay Hill. https://t.co/xkbvfohcxA +03/08/2017,Sports_celeb,@TigerWoods,The 1997 Masters My Story is out in under 2 weeks (3/20). Fun reliving a very special tournament and time. https://t.co/NRDdTFzRCF +03/07/2017,Sports_celeb,@TigerWoods,Great to have @JimFuryk join @stevestricker as a Captain’s Assistant for #TeamUSA in the 2017 @PresidentsCup! +03/01/2017,Sports_celeb,@TigerWoods,Lots of thought & hard work by @USGA and @RandA to modernize our rules. Great work to benefit the game. +02/23/2017,Sports_celeb,@TigerWoods,Proud to call Billy our @qlnational champion. https://t.co/Mabj1CtBCU +02/22/2017,Sports_celeb,@TigerWoods,"Thanks to Genesis, Riviera, our TGR Live staff, amazing volunteers and the fans for making @genesisopen such a succ… https://t.co/R7cVvsY5qP" +02/12/2017,Sports_celeb,@TigerWoods,"IF WE CAN BE EQUALS IN SPORT, WE CAN BE EQUALS EVERYWHERE. https://t.co/NJCNn3nzcC" +02/10/2017,Sports_celeb,@TigerWoods,"Really looking forward to seeing everyone @genesisopen open next week, unfortunately I won't be able to play. https://t.co/DSGq6okmhu" +02/08/2017,Sports_celeb,@TigerWoods,Had a great talk on life and golf with my old friend Peter Dawson at Dubai’s Burj Al Arab. Watch the video! - TW… https://t.co/JP95ceMCjS +01/30/2017,Sports_celeb,@TigerWoods,Can you find me hitting off the Burj Al Arab’s helipad in 2004? Look for a video of me back again before Dubai Dese… https://t.co/GajIJxWbJN +01/26/2017,Sports_celeb,@TigerWoods,It’s round one of Tiger’s 2017 season. We know where we’ll be watching. #thewoodsjupiter https://t.co/KhYpx4EgM6 +01/25/2017,Sports_celeb,@TigerWoods,Can you guess Tiger's favorite memory at Torrey Pines? #SeeYouatTorrey https://t.co/x2jqdVoCS6 +01/25/2017,Sports_celeb,@TigerWoods,"After several months of testing and all brands to choose from, the choice is clearly @TaylorMadeGolf. Proud to join… https://t.co/kmq5mpVfYw" +01/25/2017,Sports_celeb,@TigerWoods,"RT @PGATOUR: 79 wins? That's crazy good. + +@TigerWoods, your thoughts? + +#HowGoodIsThat https://t.co/cpzow9yw9Q" +01/24/2017,Sports_celeb,@TigerWoods,Big decision made. Find out tomorrow. -TW https://t.co/7Ll6LUngIc +01/24/2017,Sports_celeb,@TigerWoods,What’s your favorite memory of Tiger at Torrey Pines? +01/23/2017,Sports_celeb,@TigerWoods,I’m so proud the #GenesisOpen offers the diversity exemption honoring my hero Charlie Sifford. – TW https://t.co/INM4t3LwSj +01/23/2017,Sports_celeb,@TigerWoods,We’re at The Riviera Country Club kicking off Tiger’s 2017 season with @GenesisOpen media day. https://t.co/s5MW2hGGID +01/21/2017,Sports_celeb,@TigerWoods,"Happy birthday to a living legend, @jacknicklaus" +01/20/2017,Sports_celeb,@TigerWoods,We like our options when it’s happy hour at The Woods. https://t.co/OitA2Z1JNk +01/19/2017,Sports_celeb,@TigerWoods,One week from today: the Boss is back in action! https://t.co/jfTeaNCOUA +01/18/2017,Sports_celeb,@TigerWoods,"New ventures, programs and partnerships. See what @TWFoundation has planned for 2017. https://t.co/Foc0WTYqjM https://t.co/VWkIg9RR7N" +01/17/2017,Sports_celeb,@TigerWoods,"RT @BluejackNation: @Golfweek praises @TigerWoods for @BluejackNation, a course that is ""an awful lot of fun"" and ""family-friendly"" https:/…" +01/16/2017,Sports_celeb,@TigerWoods,#MLKDAY #mondaymotivation https://t.co/2zTPh2BVg8 +01/13/2017,Sports_celeb,@TigerWoods,Behind the scenes from today's TGR photo shoot. #weareTGR https://t.co/vRBPZd322B +01/12/2017,Sports_celeb,@TigerWoods,Lots of action at The Woods today capturing picture-perfect cuisine. #thewoodsjupiter https://t.co/CdG9A3SdDn +01/09/2017,Sports_celeb,@TigerWoods,Thanks @discoveryed for helping us take the 1st step of our vision to reach millions of kids around the world.… https://t.co/aHAk9jbrn2 +01/07/2017,Sports_celeb,@TigerWoods,Scholars from around the country are at the TGR Learning Lab today. Work hard and pursue all your dreams guys! So p… https://t.co/duYLC01JXd +01/05/2017,Sports_celeb,@TigerWoods,"Read what has Tiger excited about 2017.#weareTGR +https://t.co/LSo2AtPClM https://t.co/yekRUP3tO7" +01/04/2017,Sports_celeb,@TigerWoods,We’re setting our intentions for 2017. What are you committing to? #weareTGR https://t.co/5IQ1kHxN3G +01/02/2017,Sports_celeb,@TigerWoods,Welcome to the Nike Golf Club @JDayGolf. - TW https://t.co/CyPjgtm1ao +12/31/2016,Sports_celeb,@TigerWoods,Thanks for the birthday wishes. Looking forward to a great 2017. -TW https://t.co/zH0Fa0DiD8 +12/30/2016,Sports_celeb,@TigerWoods,Hoping @StanfordFball gives me a win for my birthday. – TW #GoStanford https://t.co/2srmiOf7jT +12/27/2016,Sports_celeb,@TigerWoods,How many rounds will you get in over the holiday break? +12/24/2016,Sports_celeb,@TigerWoods,Hope you're all celebrating with loved ones this holiday season. Merry Christmas from the TGR family to yours. https://t.co/wGuAzEIBWX +12/22/2016,Sports_celeb,@TigerWoods,Xmas tradition that my kids love. Mac Daddy Santa is back! -TW https://t.co/pCWZNNKPRG +12/22/2016,Sports_celeb,@TigerWoods,"This was an awesome Christmas, plaid pants and all. – TW https://t.co/izaWXbE8hU" +12/20/2016,Sports_celeb,@TigerWoods,"RT @TWFoundation: We're certain Marcus' legacy will live on through all those he touched. #UnexpectedChampion + +https://t.co/aUcvr3XWUV" +06/30/2018,Sports_celeb,@OBJ_3,😂😂😂✊🏿 https://t.co/2uXKz96BYD +06/29/2018,Sports_celeb,@OBJ_3,Downloading.... +06/28/2018,Sports_celeb,@OBJ_3,I promise they not ready for that 🦂🦂🦂🦂 #sheeeesh +06/28/2018,Sports_celeb,@OBJ_3,I kno u kno la brudda ! https://t.co/MPTxDMjsHI +06/27/2018,Sports_celeb,@OBJ_3,"Harrell park , where u get murkkkked by the slidin boards! https://t.co/zdETZLksKu" +06/27/2018,Sports_celeb,@OBJ_3,Throw em up buss em up https://t.co/jZqLLkmiSp +06/24/2018,Sports_celeb,@OBJ_3,@famouslos32 Lol I seeeeen u +06/17/2018,Sports_celeb,@OBJ_3,Thank you to @pizzahut for supporting my annual youth @ProCamps. Congratulations to the Pizza Hut Supreme Effort aw… https://t.co/XwMXrWCS3p +06/17/2018,Sports_celeb,@OBJ_3,"RT @JosinaAnderson: @OBJ_3 posing with all his look-a-likes. If your hair is not the same, for this specific photo, you didn’t make the cut…" +06/17/2018,Sports_celeb,@OBJ_3,Thank you @CitiPrivatePass for your support on my 3rd annual Football @ProCamps #CloserToPro https://t.co/HT4oCDz929 +06/16/2018,Sports_celeb,@OBJ_3,@D1PRIMO1 Keep grindin young! +06/15/2018,Sports_celeb,@OBJ_3,@TiyahnnB 💯 +06/15/2018,Sports_celeb,@OBJ_3,RT @saquon: “I wanna see my brothers flourish to they… https://t.co/j8zBGEhR06 +06/15/2018,Sports_celeb,@OBJ_3,@calebwilson81 @iammsuzy We seeeeeesss you! +06/07/2018,Sports_celeb,@OBJ_3,Lol I really be playin round at the wrong time https://t.co/dssglzIxgR +06/07/2018,Sports_celeb,@OBJ_3,😂😂😂😂 https://t.co/oOfLthBNMH +06/04/2018,Sports_celeb,@OBJ_3,Happy bday shawtyyy! Enjoy ur day https://t.co/kbaBuML6gF +06/04/2018,Sports_celeb,@OBJ_3,Spots in my @CitiPrivatePass Youth 🏈 @ProCamps are filling up fast! Click 👇 for details and to register.… https://t.co/Yh9OLq86OM +06/01/2018,Sports_celeb,@OBJ_3,100... easy! God bless u! https://t.co/BYsZi2Eo4z +05/31/2018,Sports_celeb,@OBJ_3,"Lil bra , just let it happen 😂😂 https://t.co/H8lOGQ8vpv" +05/31/2018,Sports_celeb,@OBJ_3,"I believe , keep grinding ! https://t.co/Itf1GiZt2h" +05/31/2018,Sports_celeb,@OBJ_3,Lol exactly Saquads is sticking forever!! @saquon https://t.co/bPEhkWhiGc +05/30/2018,Sports_celeb,@OBJ_3,Much love my dude! And happy happy birthday !! https://t.co/VgvDe2KyHO +05/29/2018,Sports_celeb,@OBJ_3,RT @AYungManRick: My grad cap still the best out there @OBJ_3 @Drake https://t.co/z6htqMwtMv +05/26/2018,Sports_celeb,@OBJ_3,Bale’s goal was ridiculous. 👀 +05/19/2018,Sports_celeb,@OBJ_3,😂😂😂 thanks for havin me! https://t.co/7KDTSl4fuS +05/16/2018,Sports_celeb,@OBJ_3,RT @YvesJNK: immune to negativity...thanking the Lord for my serenity @OBJ_3 +05/13/2018,Sports_celeb,@OBJ_3,I just got off the phone with mine. #CallMom #ad https://t.co/1VrNrBigpC +05/04/2018,Sports_celeb,@OBJ_3,Tell me why I paid my postmates for 3 pizzas and my man here brought me 30 😂😂 Happy Cinco de Mayo tomorrow y’all! https://t.co/Z1IGijPBPJ +04/30/2018,Sports_celeb,@OBJ_3,Been supporting for a min! Much love https://t.co/CKOHqPA2YL +04/29/2018,Sports_celeb,@OBJ_3,😂😂😂 https://t.co/s2bI7lNzL6 +04/27/2018,Sports_celeb,@OBJ_3,"@SageRosenfels18 lol I kno u just wanted me to tweet u back!! Ur a hater bro, damn that’s crazy! I can’t even be ex… https://t.co/0PrGPcnkxr" +04/27/2018,Sports_celeb,@OBJ_3,"@Lj_era8 congrats brudda ! Im watching u for life, u remind me of my favorite player ever ... @MichaelVick" +04/27/2018,Sports_celeb,@OBJ_3,God is so good. @RyanShazier i love u brother +04/27/2018,Sports_celeb,@OBJ_3,A problem. LAWD! +04/27/2018,Sports_celeb,@OBJ_3,@Lj_era8 is one of the realest things I’ve ever seen. How has nobody taken him? +04/27/2018,Sports_celeb,@OBJ_3,Btw 26 in the big blue jersey WILLL be the number one sellin Jersey in America next year. Takin all bets!!!? @saquon can’t wait Lil brudda +04/27/2018,Sports_celeb,@OBJ_3,"Um , of course !!!!!!!" +04/26/2018,Sports_celeb,@OBJ_3,"My idol. @KingJames u are what I aspire to be like, in every way ! 1 closer! Let’s rock #HATECOMININ321go" +04/22/2018,Sports_celeb,@OBJ_3,ChArlo is difffferenttt !!! +04/22/2018,Sports_celeb,@OBJ_3,GERVONTAAAA 🦍🦍🦍🦍🦍🦍🦍🦍🦍 +04/22/2018,Sports_celeb,@OBJ_3,It feeels so good to be HOME... +04/20/2018,Sports_celeb,@OBJ_3,I’m on my GRINDDDD!!! #comebackSZN +04/14/2018,Sports_celeb,@OBJ_3,Happy bday https://t.co/tvqJEM48Vc +04/14/2018,Sports_celeb,@OBJ_3,"Bro I respect that , and this is part of the reason I do it, let’s be better together I do my best to not set a bad… https://t.co/b4I4bePkAN" +04/13/2018,Sports_celeb,@OBJ_3,My @CitiPrivatePass Youth 🏈 @ProCamps is back for Year 3! Make sure you sign up at https://t.co/3iFiqSfXpE before… https://t.co/eDMjbErF5b +04/10/2018,Sports_celeb,@OBJ_3,“U make friends wit mike n gotta A.I em for ur survival.....damn” https://t.co/T1Hsrq4TCj +04/09/2018,Sports_celeb,@OBJ_3,😭😭😭😭🙏🏽 “you straight” go for anything https://t.co/o0lmNHMmId +04/09/2018,Sports_celeb,@OBJ_3,U next kinfolk !! https://t.co/0DoAEnyMEt +04/06/2018,Sports_celeb,@OBJ_3,Keep workin yung! https://t.co/qI9Z0UlnTs +04/05/2018,Sports_celeb,@OBJ_3,@jalenramsey @Jaguars 😂😂😂😂 u a fooo...Lol brudda u the coldest! We gotta get this work in regardless the situation!… https://t.co/MyOLeeUraY +04/03/2018,Sports_celeb,@OBJ_3,"Lol Man U makin it tough when u ask this way!!! If I can’t make it , I just wanna let u kno in advance HAPPY birthd… https://t.co/EETxC6GnPn" +04/02/2018,Sports_celeb,@OBJ_3,"I just wanna thank y’all, I can feel it in my soul. This is part of my purpose , I don’t think I ever got those glo… https://t.co/FMrbpHn3FA" +04/02/2018,Sports_celeb,@OBJ_3,RT @J_Roz69: @OBJ_3 my 6 year old son wanted me to share his catch with you. We’re in Houston area. He’s trying to model his game after yo… +03/26/2018,Sports_celeb,@OBJ_3,@Jakebeast35 I’m wr https://t.co/WImTWkHoqi +03/26/2018,Sports_celeb,@OBJ_3,God bless u bro! https://t.co/aWG5SfVYUr +03/09/2018,Sports_celeb,@OBJ_3,Appreciate the love and support !! https://t.co/OrSVOOuNwR +03/09/2018,Sports_celeb,@OBJ_3,https://t.co/IqT1aUTuXk yalll check my bro out !!! +03/09/2018,Sports_celeb,@OBJ_3,Old news still makes a good story....I guess. #CatchUpWereIn18’ +03/03/2018,Sports_celeb,@OBJ_3,U showed me the way. I’m proud of u blood. Been strong thru it all when all they wanted was to see u fall! The next… https://t.co/jPH0QYZyzJ +03/01/2018,Sports_celeb,@OBJ_3,Let’s see how to make this happen https://t.co/aTkoWG90EN +03/01/2018,Sports_celeb,@OBJ_3,"Run like the world depends on it. Because it does. #ChooseGo +#Nike #TeamNike https://t.co/OdmeSa8wug" +02/28/2018,Sports_celeb,@OBJ_3,I'm on Von Miller's Studio 58 tonight on Facebook Watch!  Check out me and my brother LIVE @ 8pm EST /5pm PST.… https://t.co/lcutlLAAK2 +02/27/2018,Sports_celeb,@OBJ_3,RT @JZACMusic: Ima blow up in 2018 +02/26/2018,Sports_celeb,@OBJ_3,@salafox1 @kustoo @Heskicks @RealSethFowler @FinishLine @nikestore it's real. +02/24/2018,Sports_celeb,@OBJ_3,"That’s alll I wanna do. What if we lived in a world where we did nothin but encouraged others, kept it real at the… https://t.co/VZvVt5mgeh" +02/24/2018,Sports_celeb,@OBJ_3,Grow up. Please. I’m tryna do the same. +02/24/2018,Sports_celeb,@OBJ_3,"People take things a little too serious sometimes... quick to write a story , but hey anything for a couple of like… https://t.co/8q1QznKP5i" +02/24/2018,Sports_celeb,@OBJ_3,0 https://t.co/86lS0V2FFL +02/22/2018,Sports_celeb,@OBJ_3,"RT @AllenPopper: @OBJ_3 yesterday I ran into you while I was on crutches going to doc. You saw I had difficulty, asked for my camera, and a…" +02/19/2018,Sports_celeb,@OBJ_3,Working with @Nike on some custom #AF1’s at Room72 https://t.co/12Ho77dgu4 +02/19/2018,Sports_celeb,@OBJ_3,😂😂😂 no why I meant it for real Lowkey @KDTrey5 https://t.co/d8BvTYfBgM +02/18/2018,Sports_celeb,@OBJ_3,RT @MarlonWayans: This dude just happy as fuck at all times. @obj_3 aka THE ODBJ https://t.co/HiPeIuB96d +02/18/2018,Sports_celeb,@OBJ_3,"I believe with every ounce of my body ... that God has got me. Every step of the way, I just know in my soul that h… https://t.co/BNr0nQwfgR" +02/17/2018,Sports_celeb,@OBJ_3,On my life this is what makes me wake up everyday and deal wit chaos! Lol I’ll work on those gloves and cleats for… https://t.co/cKQL05sSo2 +02/17/2018,Sports_celeb,@OBJ_3,"RT @2chainz: Appreciate the support bru @obj_3 💪🏿 @ Los Angeles, California https://t.co/FNGEVOnBMS" +02/15/2018,Sports_celeb,@OBJ_3,New Vapor 🔥 #GetGone @USNikeFootball https://t.co/Wk1xewLBGo +02/15/2018,Sports_celeb,@OBJ_3,RT @thecheckdown: Manziel and @OBJ_3 workin like it’s #Comebackszn 👀 (via @JManziel2) https://t.co/2fyP5K9bd4 +02/14/2018,Sports_celeb,@OBJ_3,"Welcome to the @HeadShoulders fam, @GusKenworthy. Good luck at the Olympic Winter Games! #ShouldersofGreatness #ad https://t.co/a2pOsGRwzf" +02/13/2018,Sports_celeb,@OBJ_3,"Introducing @CampbellsChunky Maxx Smoked Turkey & Bacon Corn Chowder w/ Wild Rice soup. Go on, #FillUp! #ad https://t.co/2dYLHApMbb" +02/12/2018,Sports_celeb,@OBJ_3,"RT @famouslos32: We live y'all ✊🏾 + +Who Got Next ? Ep. 1 Ft. @Jxmmi !! + +WATCH HERE : https://t.co/pNustsis4z https://t.co/x0q9X71Hr3" +02/09/2018,Sports_celeb,@OBJ_3,RT @usnikefootball: 2.15 #GetGone 😏 https://t.co/WAYQUrlupj +02/07/2018,Sports_celeb,@OBJ_3,@kporzee prayin for u fam. NY comin back strong next year! +02/05/2018,Sports_celeb,@OBJ_3,I gottta have it... I swear +02/05/2018,Sports_celeb,@OBJ_3,This call will be detrimental for what is a “catch” or not a catch for the remainder of NFL history. +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/5DVtntGjoB +Much respect to the #WPMOY #NFLHonors" +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/fchXveOzPn +@DangeRussWilson intercepted at #NFLHonors. Great seeing you bro!" +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/J7JWJ2EMtA + +Taking over the @HeadShoulders 360 Hair Cam at the #NFLHonors Red Carpet, let’s see who’s… https://t.co/KnqyOslAhL" +02/04/2018,Sports_celeb,@OBJ_3,See what happens next during #SBLII https://t.co/m1nU8Bn7cN +02/03/2018,Sports_celeb,@OBJ_3,There’s still time to get the ingredients to make those @Welchs #GrapeJellyMeatballs ahead of the Big Game! I’ve g… https://t.co/ty8DMneVJc +02/03/2018,Sports_celeb,@OBJ_3,Fam! Much love https://t.co/QsAIDySsPS +02/03/2018,Sports_celeb,@OBJ_3,Legendary https://t.co/Ujifv37zWT +02/02/2018,Sports_celeb,@OBJ_3,My mom and I added some special hot sauce to our @Welch’s #GrapeJellyMeatballs recipe! Comment below with your favo… https://t.co/3ADFrFLncZ +02/01/2018,Sports_celeb,@OBJ_3,Soon as my ankle back to 100 it’s on!!! https://t.co/6c10Tll6gk +02/01/2018,Sports_celeb,@OBJ_3,Broo u NBA traveled!!! https://t.co/6c10Tll6gk +02/01/2018,Sports_celeb,@OBJ_3,Since the gig’em days brother. I support u for life. #ComebackSZN https://t.co/n56zxMniCC +01/31/2018,Sports_celeb,@OBJ_3,RT @NFL: Nothing and no one will stop @TheHumble_21 from having a good time. Tune into #SBLII to see what gets him dancing. https://t.co/te… +01/31/2018,Sports_celeb,@OBJ_3,#FillUp on @CampbellsChunky Maxx Grilled Sirloin Steak soup. It has 40% more meat so you can hustle 40% more of the… https://t.co/xfK1PUB95s +01/31/2018,Sports_celeb,@OBJ_3,Had fun making my @Welchs #GrapeJellyMeatballs recipe! Comment below with your favorite special ingredient. #ad https://t.co/KbxmrhXWb4 +01/31/2018,Sports_celeb,@OBJ_3,Got a big appetite for the big game? I’ve got you covered. Check out these @Welchs #GrapeJellyMeatballs I whipped… https://t.co/mycWejmy0R +01/29/2018,Sports_celeb,@OBJ_3,@JeremyHill33 hey whatd u say about playin for the giants !?!? #ReunitedNitfeelsSoGood😂😂 BRUDDDA BRUDDDA +01/29/2018,Sports_celeb,@OBJ_3,RT @JManziel2: All the hating only fuels me more. Nothing but positive vibes on this end +01/29/2018,Sports_celeb,@OBJ_3,2:19 🤣🤣🤣🤣🤣🤣🤣 https://t.co/YQP6wsdou8 +01/25/2018,Sports_celeb,@OBJ_3,U think there’s anything u could of done better on that route? https://t.co/RdBp2AoX1N +01/25/2018,Sports_celeb,@OBJ_3,Stopppp him! Why u do em like that! https://t.co/RdBp2AoX1N +01/24/2018,Sports_celeb,@OBJ_3,They on it already brudda @Drake https://t.co/aetiqHA5sw +01/24/2018,Sports_celeb,@OBJ_3,Lol y’all boys really stupid if believe this click bait. There is an appeal process that has been more than fair. U… https://t.co/DH8KehmPbW +01/23/2018,Sports_celeb,@OBJ_3,@AB84 😂 https://t.co/XjBane3Beg +01/20/2018,Sports_celeb,@OBJ_3,U can pick the route for me! That no safety help been dead lil brudda 😭😭 https://t.co/5EmrYeJO38 +01/20/2018,Sports_celeb,@OBJ_3,Good luck bro! https://t.co/7tqd0KmHeZ +01/19/2018,Sports_celeb,@OBJ_3,Introducing @CampbellsChunky Maxx Dark Meat Chicken & Spicy Andouille Sausage Gumbo. #FillUp with yours before the… https://t.co/msuryRFNnX +01/19/2018,Sports_celeb,@OBJ_3,@God_Son80 ayeeeee man!!! U already kno what we talked about +01/19/2018,Sports_celeb,@OBJ_3,RT @God_Son80: “Prayers drowning out Opinions” +01/18/2018,Sports_celeb,@OBJ_3,Congrats @NFLPA and @opendorse for extending your partnership. The platform lets me make moves off the field that m… https://t.co/1cnq04q3tI +01/18/2018,Sports_celeb,@OBJ_3,"“To all you artists out there, who don't wanna be on a record label where the executive producer's...all up in the… https://t.co/t1s4tgFY1c" +01/17/2018,Sports_celeb,@OBJ_3,@God_Son80 “if u don’t like ur... then come to death row” 🙂😂😂😂 https://t.co/6qbNhzWjnQ +01/16/2018,Sports_celeb,@OBJ_3,RT @TeamVic: I love the reminders in life that let you know what you’re doing and the decisions you’re making are absolutely correct. +01/16/2018,Sports_celeb,@OBJ_3,U kno how I’m comin!! @horseisbk https://t.co/jk7CwkoCqc +01/15/2018,Sports_celeb,@OBJ_3,God really works in mysterious ways....let the journey begin.... I’m geeeked https://t.co/3tbOTPcSl1 +01/15/2018,Sports_celeb,@OBJ_3,Wow +01/12/2018,Sports_celeb,@OBJ_3,RT @theshiggster: When You Beat A Football Player In Madden 😂😂😂😂 @OBJ_3 https://t.co/axNMZdanpC +01/11/2018,Sports_celeb,@OBJ_3,Mannnn I gotta make that up for the women out there who were ready for that. It was the day after surgery I still w… https://t.co/9wMzafCA0I +01/08/2018,Sports_celeb,@OBJ_3,@EliApple13 Love brudda ! Let’s get up this off season ! +01/08/2018,Sports_celeb,@OBJ_3,"@EliApple13 Just hear me out... it’s really not worth it. Please bro, this what they want.... back to the drawin board . Let’s get it !" +01/08/2018,Sports_celeb,@OBJ_3,"@EliApple13 Brooooo I kno it feels good to tell these ppl off , trust me I would love nothin more than to do the sa… https://t.co/cckFeXDpv5" +01/08/2018,Sports_celeb,@OBJ_3,@EliApple13 stopppp wasting ur energy on these ppl. Please bro. +01/06/2018,Sports_celeb,@OBJ_3,U kno u inspired me thru this whole process. How to be strong! I thank u bro. And bringgg it home for the LAND. I s… https://t.co/2yltbpkx8s +01/06/2018,Sports_celeb,@OBJ_3,Yooo I’m cryinnn 😭😭👌🏽 https://t.co/5o2eQJ547P +01/03/2018,Sports_celeb,@OBJ_3,Honest question...What Friday was the best ???? 😭 +01/01/2018,Sports_celeb,@OBJ_3,In 2018 I’m just prayin for the world to be more positive. Real shxt. We all have to make a consitant efffort to wa… https://t.co/V5hzooNMgX +12/28/2017,Sports_celeb,@OBJ_3,"@AB84 lol we not coo no mo big tymerrrr , check ur phone .. meanin text messages 🤬" +12/28/2017,Sports_celeb,@OBJ_3,Hip pocket* https://t.co/3xW11YnUa6 +12/28/2017,Sports_celeb,@OBJ_3,"Lol bruh back up, always tryna be on the hop. We tryna create separation Pat. Stay tuned, I’m there this offseason. https://t.co/3xW11YnUa6" +12/28/2017,Sports_celeb,@OBJ_3,Itssss a must !!! That’s the goal! Let’s get up this off season. And btw (I kno u wanted that balll to stickkkk in… https://t.co/EqP5QQAJwh +12/25/2017,Sports_celeb,@OBJ_3,RT @ccopeland81: I live in Seattle and love our @Seahawks but my 5 year old cried when he finally got the @OBJ_3 jersey he's been begging f… +12/25/2017,Sports_celeb,@OBJ_3,I had this one circled on the calendar. Smh +12/24/2017,Sports_celeb,@OBJ_3,"Dear Santa, I wish I could be playin in this game. That’s all. Thanks" +12/24/2017,Sports_celeb,@OBJ_3,Ur too late https://t.co/e4UZQGBjEG +12/24/2017,Sports_celeb,@OBJ_3,@OttoLewis_ 👀👀👀👀👀👀 merry Christmas !! Keep eatin #3ftIn no need for review +12/22/2017,Sports_celeb,@OBJ_3,RT @_serina_2: @OBJ_3 McCabe turns seven today and all he wanted was your jersey! His wish came true and he was on the moon! He’s your supe… +12/21/2017,Sports_celeb,@OBJ_3,Good morning. 😀 +12/21/2017,Sports_celeb,@OBJ_3,How many of us have sat on the toilet too long and ur leg felll asleeep ? 😂😂😂😂😂 +12/21/2017,Sports_celeb,@OBJ_3,RT @DhaSickest: ❤️ @OBJ_3 +12/21/2017,Sports_celeb,@OBJ_3,Been waitin since he wore 7. He’s that guy. Big bro been waitin to put the clamps on since LSU https://t.co/dQgy7umUcT +12/19/2017,Sports_celeb,@OBJ_3,Love brudda ! Never changin https://t.co/bMEaiDdDRD +12/18/2017,Sports_celeb,@OBJ_3,"Lil bro ! It’s only the beginning, everything we talked about . Grip strength , drills . Lol loookkk atcha much luv… https://t.co/84PkElKmA3" +12/17/2017,Sports_celeb,@OBJ_3,We neeeeed it! +12/17/2017,Sports_celeb,@OBJ_3,Make a play!! Leegooo ! We need it ! Get this W! +12/17/2017,Sports_celeb,@OBJ_3,Amen ! https://t.co/QTm0Jo8wT5 +12/14/2017,Sports_celeb,@OBJ_3,"RT @tylerwaltonc4: SEASON HIGHLIGHTS FINALLY HERE. IM HERE TO WAKE EVERYONE UP💍💍💍🎊🎊🎊🎊 +- https://t.co/YJkulu6Ybg" +12/12/2017,Sports_celeb,@OBJ_3,I tollddddd u today was the day !!!! @God_Son80 +12/12/2017,Sports_celeb,@OBJ_3,They don’tttt want that pressure 14....head down! Eattttt @God_Son80 +12/11/2017,Sports_celeb,@OBJ_3,I remember the conversation like it was yesterday .... keep pushing u right there ...@AB84 +12/11/2017,Sports_celeb,@OBJ_3,I loveeeee it!!!!!! @AB84 +12/11/2017,Sports_celeb,@OBJ_3,Neeeed them toe taps bruddda!!! Next time we in there !! @AB84 +12/08/2017,Sports_celeb,@OBJ_3,"@PapaBearRU34 For the kids bro, I’d do anything . We’ll figure it out" +12/08/2017,Sports_celeb,@OBJ_3,"Thank u for understanding. Personally I never understood why we, as a socieity, complicate things or confuse them f… https://t.co/OVKlMk8481" +12/08/2017,Sports_celeb,@OBJ_3,I CANNNNT waitt to be back in Met Life Sunday . It’s time to get this train back on the right track. 10.... leadddd… https://t.co/wHIbInqoTC +12/04/2017,Sports_celeb,@OBJ_3,"“Without a response from me, u really fail to exist...” @Drake" +12/04/2017,Sports_celeb,@OBJ_3,Stop wastin ur time tweetin me today. Negativity im blind to it. I can’t see that . The amount of time and energy s… https://t.co/S5fcXkA0F9 +12/04/2017,Sports_celeb,@OBJ_3,@Sean_Lyric God bless everybody! Today let’s make the world a better place!😀 +12/04/2017,Sports_celeb,@OBJ_3,Lol bro u have no idea what u started . Now u got all these critics with no credibility mentioning me to try to gai… https://t.co/dAWb2b6NeQ +12/04/2017,Sports_celeb,@OBJ_3,"I learned from him. This is the 🐐. So I’m following his lead, I just may not know how to express it the same way. B… https://t.co/7zHk2kJT3C" +12/04/2017,Sports_celeb,@OBJ_3,"Or ....immmaturity , or “needs to grow up” or “selfish” or... umm what else is it exactly that ‘they’ say.... or “u… https://t.co/CL2EuYLmK2" +12/04/2017,Sports_celeb,@OBJ_3,Listen when I say this is the craziest thing someone ever has tweeted or posted to me because I LITERALLY had this… https://t.co/hgln2Z8l0b +12/02/2017,Sports_celeb,@OBJ_3,"RT @BretJPriest: Yo, @OBJ_3 can your boy get a shoutout on his 24th birthday? 🙏🏼" +12/02/2017,Sports_celeb,@OBJ_3,RT @richardmasao: When your @OBJ_3 Air Force 1’s come in yesterday and run into him the next when you wear them. What is life. #OBJ https:/… +11/30/2017,Sports_celeb,@OBJ_3,@Ezekephyzeke_84 I’m not livin in the past*** +11/30/2017,Sports_celeb,@OBJ_3,"@Ezekephyzeke_84 Lol it’s a funny thing bro. I shouldn’t even tweet u back , I’ll prolly get in trouble or be the b… https://t.co/4cfWSnEyGa" +11/30/2017,Sports_celeb,@OBJ_3,RT @Ezekephyzeke_84: @Patricia_Traina Unfortunately this has become the narrative when things go bad with the team. People somehow look for… +11/27/2017,Sports_celeb,@OBJ_3,The greatest ! #ForeverLSU https://t.co/iX64uRkEkJ +11/25/2017,Sports_celeb,@OBJ_3,"RT @famouslos32: O like dat ! Use promo code 15LOS for 15% off the entire store ‼️ @OBJ_3 + +https://t.co/jIj9An63NQ https://t.co/Roxlnct3Yh" +11/24/2017,Sports_celeb,@OBJ_3,#hmmm... that is funny. But Lil bruh u kno we live in a world full of hypocrites.… https://t.co/pZ4xP3CJNK +11/24/2017,Sports_celeb,@OBJ_3,"I love it let’s go. Good ball movement, solid defense. This is what we do. Points points. Keep pushin! #Giants" +11/24/2017,Sports_celeb,@OBJ_3,"Thankful for it happy , happy thanksgiving https://t.co/GvX26vOGUn" +11/24/2017,Sports_celeb,@OBJ_3,"RT @footlocker: .@OBJ_3 stopped by the #Sneakeasy this week to debut his first lifestyle shoe the Nike SF Air Force 1 Mid ""OBJ"". Make sure…" +11/24/2017,Sports_celeb,@OBJ_3,RT @SNFonNBC: Happy 3rd birthday to @OBJ_3's one-handed catch! https://t.co/jrxkSEe24Y +11/23/2017,Sports_celeb,@OBJ_3,"RT @LSUfootball: Thanksgiving is about family. Odell remembers his in Purple and Gold! Forever LSU! + +@OBJ_3 x @Nike x #AF1 https://t.co/…" +11/22/2017,Sports_celeb,@OBJ_3,RT @TeamVic: Kings stand tall through everything. No matter how bleek things may seem. @obj_3 and I have… https://t.co/1QmfIqYI6m +11/21/2017,Sports_celeb,@OBJ_3,"RT @OttoLewis_: big brudda dem convos we have never go unnoticed... dream it, visualize it, live it... 🙏🏿 #GodSpeed https://t.co/5rR8H0okFz" +11/21/2017,Sports_celeb,@OBJ_3,"@David_Alaba I just cried bruh, loook how sickkkk these people are! Im in tears 😂😂😂 https://t.co/8tD0fPuxy1" +11/21/2017,Sports_celeb,@OBJ_3,"Some things are NY made. +Others were made for NY. +@Nike X OBJ X #AF1 https://t.co/E3X4UA0m90" +11/19/2017,Sports_celeb,@OBJ_3,@OttoLewis_ that’s how we delivery brudda !! Locked n loaded for next week. It’s that time Redd +11/18/2017,Sports_celeb,@OBJ_3,RT @RSherman_25: @OBJ_3 IR battle huh. Lmao I appreciate you bro we will get together for sure +11/16/2017,Sports_celeb,@OBJ_3,"NY simply cultivated what Louisiana raised. I am OBJ. Read the Label. +@nikesportswear X @footlocker #AF1 https://t.co/5rxUQF4Wvc" +11/15/2017,Sports_celeb,@OBJ_3,@RSherman_25 bruddda!! Wassup wit the 1 on 1s right now! I think I could get u a few times now 😂😂 real talk tho I’m… https://t.co/yyo9V6O6hW +11/09/2017,Sports_celeb,@OBJ_3,RT @OttoLewis_: today a young 🐐 was born happy birthday my brudda...always speaking real they jus caught this on camera @OBJ_3 #GodSpeed ht… +11/09/2017,Sports_celeb,@OBJ_3,"@jRenzy Love fam, I’m doin well. Ain’t nothin but a lil adversity , we been here before. God pulls me thru every time" +11/07/2017,Sports_celeb,@OBJ_3,Got to play @EAMaddenNFL on the new #XboxOneX last night! @Xbox even gave me one of the first ever custom NFL contr… https://t.co/Lru5bJhpnH +11/06/2017,Sports_celeb,@OBJ_3,Wilder vs Joshua would be......👀👀👀 +11/06/2017,Sports_celeb,@OBJ_3,Luv brotha. And helluva game https://t.co/ZIuqM3fMNw +11/05/2017,Sports_celeb,@OBJ_3,Thankful to see 25... I’m just countin the blessings. +11/02/2017,Sports_celeb,@OBJ_3,"RT @TeamVic: I️ can’t even front. I️ miss the game.. @obj_3 🙏🏾 @ Paterson, New Jersey https://t.co/mUkPEKrpiT" +11/02/2017,Sports_celeb,@OBJ_3,@KDN13_ Keep grinding! +11/02/2017,Sports_celeb,@OBJ_3,"RT @MikeQReports: Yo @OBJ_3, show my boy Jared some love & accept his dance challenge!! He says you’re one of his favorites despite the tra…" +10/31/2017,Sports_celeb,@OBJ_3,Last thing ... @NFL @God_Son80 make it happpen.... idc how. SuperTeamNBA SuperTeamNFL +10/31/2017,Sports_celeb,@OBJ_3,@k_obrand @SportsCenter @NFL @God_Son80 make it happen ... ok im done ! +10/31/2017,Sports_celeb,@OBJ_3,"https://t.co/LRkgW4xtVW now they got my reminiscing !!!! If it’s gods plans , it’ll happen !! SomeHow, somewayyyy! I believe @God_Son80" +07/02/2018,Sports_celeb,@Kaepernick7,"RT @NEAMedia: Congrats! Former San Francisco 49er quarterback @Kaepernick7 received NEA’s highest honor, the NEA President’s Award, for his…" +06/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Abilene Paradox +06/28/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/7FeacTTA6f +06/28/2018,Sports_celeb,@Kaepernick7,"RT @haymarketbooks: “Come celebrate with me that every day something has tried to kill me and has failed.” —Lucille Clifton, born June 27,…" +06/28/2018,Sports_celeb,@Kaepernick7,"RT @thecrisismag: ""Don't you run around here trying to make friends with somebody who's depriving you of your rights. They're not your frie…" +06/26/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “The rise of Western capitalism is rooted in the global seizing of the land, resources, and labor people of color by viol…" +06/26/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/op8JCbQR1n +06/25/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: My two-year-old is out here reppin’ for the culture: https://t.co/UoLgADPnov +06/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: What is also clear is that the NFL, Donald Trump, and all of the other random racists that have a problem with players pr…" +06/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: I’m guessing that the racist that took the time to paint “Boycott the NFL,” on the back of his pickup, fully decorated wi…" +06/23/2018,Sports_celeb,@Kaepernick7,RT @_ethiopiangold: So my little cousin was selling water and didn't have a permit so this lady decided to call the cops on an 8 year old.… +06/23/2018,Sports_celeb,@Kaepernick7,RT @lsarsour: #PermitPatty 🤦🏻‍♀️ https://t.co/3HjUtDqXlW +06/23/2018,Sports_celeb,@Kaepernick7,"RT @therealstylesp: https://t.co/oaMNDWELod . HIP HOP'S HEALTH STORE +Black seed oil +Oil of oregano +Cbd tincture/cbd vape juice +Healing so…" +06/21/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: What becomes important to take from this clip is its centering on white women and their investment in the maintenance of… +06/21/2018,Sports_celeb,@Kaepernick7,RT @Phil_Lewis_: Saw this on Facebook: 1964 news clip of white citizens reacting to the proposed civil rights bill. https://t.co/j8yM00hEgB +06/21/2018,Sports_celeb,@Kaepernick7,RT @WoodstockFarm: Did you hear the news @Kaepernick7? We named one of our newly rescued baby calves after you! For your social activism an… +06/19/2018,Sports_celeb,@Kaepernick7,RT @E_Reid35: There is something gravely wrong w/ the leadership of our country. This weekend I held my kids to celebrate father’s day & to… +06/19/2018,Sports_celeb,@Kaepernick7,"RT @ava: For those that want more background on the current tents and cages that Trump and friends are keeping kids in, this clip shares ba…" +06/19/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Children are being ripped from their parents at the border. These are their cries. (warning: distressing themes) https://t… +06/19/2018,Sports_celeb,@Kaepernick7,RT @ReutersWorld: U.S. to withdraw from U.N. human rights body: source https://t.co/QlvCByHxyk +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: Less than one year in and you’ve already nailed it! #happyfathersday @CFPetrella! Thank you for playing such a big role… +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: #HappyFathersDay to Queen Isa’s dad @oldmanebro 🤗💕 We love you guys so much!! #family https://t.co/psZkGqLgyD https://t… +06/17/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #HappyFathersDay to Lead Speaker of #KYRC, @LeftSentThis! Shoutout to footcandles for capturing these beautiful moments…" +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: Our brother @E_Reid35 with his wife (our sister and KYRC member) jaidybaby and their beautiful children 😍 #happyfathers… +06/17/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Black Fathers | Fathers Day: https://t.co/VvSISyqrwP +06/16/2018,Sports_celeb,@Kaepernick7,"#EidMubarak to all of the brothers and sisters, Muslim and non-Muslim, around the world who participated in the mon… https://t.co/IyhEhx2wtN" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Also, when these police propaganda pieces centered on police ride-alongs hit the airwaves, they’re ALWAYS one-sided, and…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Also, these entertainers/athletes participating in police ride-alongs, act as if the police are REALLY going to terrorize…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Entertainers (who are usually Black men) that go on ride-alongs with cops, and then report to the public that, “the polic…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “Merely by describing yourself as black you have started on a road towards emancipation, you have committed yourself to f…" +06/10/2018,Sports_celeb,@Kaepernick7,"The Queen! + +RP @nessnitty Thinking about releasing THE OFFICIAL #imwithkap jersey ...What y’all think???? @hot97… https://t.co/VHLNevijRI" +06/10/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Check out my latest piece on something that I think is being overshadowed by Kaepernick and Eric Reid’s protest against p… +06/09/2018,Sports_celeb,@Kaepernick7,"RT @common: ""People sometimes forget that love is at the root of our resistance. My love for my people serves as the fuel that fortifies my…" +06/06/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: The hijacking of the protest is not just taking place by Trump. +06/06/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Post reading the article that I just posted on Kaepernick and the power of Black silent protest, listen to him in his own…" +05/25/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Listen to Colin Kaepernick explain why he took a knee — and why it's essential that others like him have the right to chal… +05/25/2018,Sports_celeb,@Kaepernick7,RT @Wale: Run that back 🌙 https://t.co/p2HRTkNXIS +05/24/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Colin Kaepernick explained why he sacrificed his career in the NFL to stand against systemic racism as he received Amnesty… +05/24/2018,Sports_celeb,@Kaepernick7,RT @markgeragos: Winning! https://t.co/qTUh3LJNxR +05/23/2018,Sports_celeb,@Kaepernick7,RT @markgeragos: #nflcollusion https://t.co/R1c5Mdqqg6 +05/23/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Being inside of a system doesn’t necessarily change it, more often than not, you become absorbed in it until the system t…" +05/22/2018,Sports_celeb,@Kaepernick7,RT @CFPetrella: Finally out of the archives and proud to share the first words I've penned for *Crimes of this Guilty Land: Histories of Wh… +05/21/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: ‘Highly Offended’ White Teacher Kicked My 9-Year-Old Son Out of Class for Taking Knee During Pledge https://t.co/XbFgvRUf… +05/21/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: OUR FUTURE!! ✊🏾✊🏿✊🏽 #RP rugamcfly: For the people!!! Thank You Kaep!!! #imwithkaepernick #knowyourrights #GradSZN #gr… +05/20/2018,Sports_celeb,@Kaepernick7,"RT @haymarketbooks: Haitian revolutionary Toussaint L’Ouverture was born May 20, 1743. https://t.co/EH8UR2igZ1" +05/19/2018,Sports_celeb,@Kaepernick7,RT @marielaregal: Happy Birthday Malcolm! ✊🏾🎂Truly an honor to have given a college and career awareness workshop at the Audubon Ballroom n… +05/19/2018,Sports_celeb,@Kaepernick7,"Happy Birthday El-Hajj Malik El-Shabazz, your spirit lives on! #MalcolmX https://t.co/E3JDtwSpxh" +05/19/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: The cast of ""Rise"" is full of diversity, something @rosieperezbklyn has been longing for since she started acting. Catch @ne…" +05/15/2018,Sports_celeb,@Kaepernick7,RT @NBCSWarriors: .@chamillionaire is with @Kaepernick7 https://t.co/80vxsfrXBB +05/14/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: We are witnessing an abhorrent violation of international law & human rights in #Gaza. 38 confirmed dead, including 6 children…" +05/11/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Stop trying to reform institutions that should be abolished. +05/11/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: We had to share another one of @OzTheMentalist’s tricks with @nessnitty! Check him out this Saturday after SNL on @1stlookt… +05/11/2018,Sports_celeb,@Kaepernick7,RT @KWestSavali: My 9-year-old son was put out of class for taking a knee during the pledge. His teacher told him that she boycotted teams… +05/11/2018,Sports_celeb,@Kaepernick7,RT @NYDNVideo: “Colin Kaepernick took a knee for US!”: The invisible rage of mothers who lost children to police violence @chuckmodi1 https… +05/10/2018,Sports_celeb,@Kaepernick7,RT @ChuckModi1: Mothers whose children were killed by police have been fighting to get their stories heard have been sharing their ❤️ for… +05/10/2018,Sports_celeb,@Kaepernick7,"RT @ChuckModi1: “Kaepernick Took a Knee 4 US!” +Mothers whose children were killed by police have been fighting to get their stories heard…" +05/09/2018,Sports_celeb,@Kaepernick7,"“Love is at the root of our resistance!” +via @nytimes Opinion Section https://t.co/Isf6j56cet" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @nessnitty: I hope you feel motivated to make this world a better place. Thank you @Kaepernick7 for everything, Young King! Here’s a sni…" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: When @nessnitty sat down with superstar mentalist @OzTheMentalist, she wasn’t prepared to have the shock of her life. And yo…" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @CentralOhioIWOC: BREAKING - Work Stoppage at Largest Maximum Security Prison in the U.S. + +C-Block prisoners at Louisiana State Penitent…" +05/08/2018,Sports_celeb,@Kaepernick7,RT @nessaonair: ❤️😍 https://t.co/6kb2f5ntLp +05/08/2018,Sports_celeb,@Kaepernick7,RT @nessaonair: #RP @nessnitty: Some of the incredible children we met during our Know Your Rights Camp Amsterdam version. Thankful for @am… +05/07/2018,Sports_celeb,@Kaepernick7,"Catch #DearMamaVH1: A Love Letter To Moms TONIGHT 9/8c on @VH1! +📸: @KarlFergusonJr https://t.co/zoNb0YmQNW" +05/07/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: If you haven’t watched the video embedded in this article, WATCH NOW! Phenomenal job @nytimes https://t.co/rHBwLsfFJL" +05/07/2018,Sports_celeb,@Kaepernick7,"RT @mikefreemanNFL: If you haven’t seen this, it will be worth your time. https://t.co/cjTyGWOOUr" +05/06/2018,Sports_celeb,@Kaepernick7,RT @AmnestyThailand: Colin Kaepernick: ‘Love Is at the Root of Our Resistance’ https://t.co/U6MA4c5D2h via @nytimes #humanrights #Ambassado… +05/05/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: We are ignoring the haters with the help of @mariashriver! @nessnitty is sitting down with her and other inspirational women… +05/04/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: LOVE THIS!!! All true! @Kaepernick7 @E_Reid35 greatest brotherhood ❤️ https://t.co/sFeogN20a9 +05/04/2018,Sports_celeb,@Kaepernick7,"RT @TheAthleticSF: Loggins: The brotherhood of Colin Kaepernick and Eric Reid (this story is free) +https://t.co/9WJmGrfTh3" +05/04/2018,Sports_celeb,@Kaepernick7,RT @nytopinion: “How can you not be in a rage when you know that you are always at risk of death in the streets or enslavement in the priso… +05/04/2018,Sports_celeb,@Kaepernick7,"RT @aaaj_alc: “I’ve realized that our love, that sometimes manifests itself as Black rage, is a beautiful form of defiance against a system…" +05/04/2018,Sports_celeb,@Kaepernick7,RT @amnesty: Colin Kaepernick's (@Kaepernick7) Ambassador of Conscience acceptance speech in the @nytimes. https://t.co/vHx3WduIKO +05/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/IjU2bC3zYR +05/02/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Amazing time teaming w @amnesty to bring a version of our Know Your Rights Camp to Amsterdam! Empowering youth internationa… +05/02/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyKenya: We have said this before but to ensure any avoidance of doubt, @Kaepernick7 is one of the bravest people we are proud to…" +05/02/2018,Sports_celeb,@Kaepernick7,RT @ajplus: Eric Reid filed a grievance against the NFL. He charges them of colluding to keep him unsigned because he joined Colin Kaeperni… +05/02/2018,Sports_celeb,@Kaepernick7,"RT @SportsCenter: Former 49ers safety Eric Reid has filed a collusion grievance against the NFL over his employment status, a source told @…" +04/30/2018,Sports_celeb,@Kaepernick7,"RT @USA_Network: Your favorite @nbc stars stop by on this week's Talk Stoop! Tune in to see @nessnitty chat with @JoshRadnor, @rosieperezbk…" +04/26/2018,Sports_celeb,@Kaepernick7,“Our love is not an individualized love—it is a collective love. A collective love that is constantly combating col… https://t.co/I8qs8uUVo2 +04/26/2018,Sports_celeb,@Kaepernick7,"“As police officers continue to terrorize Black and brown communities, abusing their power, and then hiding behind… https://t.co/PBJzIPOPdC" +04/25/2018,Sports_celeb,@Kaepernick7,"“It was James Baldwin who said, to be Black in America, “and to be relatively conscious is to be in a rage almost a… https://t.co/amwj3gJ4GJ" +04/25/2018,Sports_celeb,@Kaepernick7,“That word courage is exactly the word I would use to describe https://t.co/4eG0XH78vP was a courageous act to begi… https://t.co/byFZTbCPKj +04/25/2018,Sports_celeb,@Kaepernick7,"“It’s ironic that the stand Colin&I took was not 2 stand at all,but it was 2 take a knee.Colin didn’t kneel in prot… https://t.co/NKrEvSM7gE" +04/25/2018,Sports_celeb,@Kaepernick7,I couldn’t ask for a better Brother @E_Reid35 to share this journey and @amnesty Ambassador of Conscious Award with… https://t.co/ax2g4yIGEZ +04/25/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/S1YONlFHGX +04/24/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #RP @E_Reid35: Thank you for all that you stand for and congratulations on receiving the @amnesty ‘s highest honor, The…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AztecaDeportes: ¡Gran trabajo de @Kaepernick7 en su lucha contra el racismo!😱👏 + +https://t.co/Avx8x3jglm" +04/23/2018,Sports_celeb,@Kaepernick7,"“Seeking the truth, finding the truth, telling the truth and living the truth has been, and always will be what gui… https://t.co/AHOL67jFtM" +04/23/2018,Sports_celeb,@Kaepernick7,RT @AmnestyKenya: @amnesty @irunguhoughton @Kaepernick7 Our @amnesty chairperson @MwikaliN and @Kaepernick7 Speak truth to power always! ht… +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: He confronted injustice. He inspired others. He took a knee, refusing to ignore or accept racial discrimination. Meet our new…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnestyusa: You refused to compromise. +You confronted injustice. +You inspired others. +Thank you, Colin Kaepernick https://t.co/pmZqsBH0…" +04/23/2018,Sports_celeb,@Kaepernick7,RT @GQMagazine: .@Kaepernick7 accepts Amnesty International's highest honor https://t.co/6oNVIrBzKV +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyThailand: Colin Kaepernick @Kaepernick7 is the latest recipient of the Ambassador of Conscience Award, joining Nelson Mandela an…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyUK: ICYMI: This weekend, we presented athlete and activist Colin Kaepernick (@Kaepernick7) with the Amnesty #AmbassadorOfConscie…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnestyPL: W sobotę przyznaliśmy nagrodę Ambasadora Sumienia Colinowi Kaepernickowi, b. zawodnikowi NFL, aktywiście, który przeciwstawi…" +04/22/2018,Sports_celeb,@Kaepernick7,"“I would like 2 thank Amnesty International 4 The Ambassador of Conscience Award.But in truth,this is an award that… https://t.co/Tg9p5x91Cn" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnestyusa: He confronted racial injustice. +He refused to compromise. +He inspired others. + +Colin Kaepernick is our #AmbassadorOfConscie…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: ""It is only fitting that I have the honor of Eric Reid (@E_Reid35) introducing me for this award. In many ways, my recognition…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: You confronted racial injustice. +You refused to compromise. +You inspired others. + +Thank you, @Kaepernick7, Ambassador of Consc…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: He confronted racial injustice. +He refused to compromise. +He inspired others. + +Athlete and activist Colin Kaepernick (@Kaepern…" +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnestyusa: We are honored to present this year’s #AmbassadorOfConscience Award to Colin Kaepernick (@Kaepernick7). Colin embodies the… +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnestyusa: We're thrilled to present athlete and activist Colin Kaepernick—who refused to ignore or accept racial discrimination—with… +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnesty: We're honored to present athlete and activist Colin Kaepernick (@Kaepernick7)—who refused to ignore or accept racial discrimin… +04/21/2018,Sports_celeb,@Kaepernick7,RT @AmnestySverige: Idrottsmannen och aktivisten Colin Kaepernick hedras med @amnesty Ambassador of Conscience Award 2018! Han riskerade al… +04/21/2018,Sports_celeb,@Kaepernick7,RT @AmnestyCIJ: Sometimes standing up for justice is kneeling against injustice @amnesty @amnestynl @nfl @Kaepernick7 https://t.co/L5QQNqoQ… +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty_de: Wir freuen uns sehr, den Sportler und Aktivisten Colin Kaepernick mit dem #AmbassadorOfConscience Award 2018 auszuzeichnen!…" +04/20/2018,Sports_celeb,@Kaepernick7,RT @JColeNC: ATM video. KOD https://t.co/VgVLu5GcSU +04/20/2018,Sports_celeb,@Kaepernick7,RT @JColeNC: KOD the album. https://t.co/XHTS0SnCNl +04/16/2018,Sports_celeb,@Kaepernick7,https://t.co/pg71tJl7z3 +04/14/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: .@RyanSerhant, we have some questions ... What's your skin care routine? And when is Ry-Glow hitting the shelves? See his sh…" +04/13/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Fashion designer @Zac_Posen is giving us life 🙌. Catch his full interview this weekend with @nessnitty. Check your local lis… +04/13/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: Is the romance gone between @FredrikEklundNY and his husband @derekkaplanart? Well, @Bethenny did warn him! See more of thes…" +04/12/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: This link between @GlennHowerton & @nessnitty is too funny! Catch @NBCAPBio tonight at 8:30/7:30c on @nbc. https://t.co/vj… +04/12/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: Sending thanks and appreciation for the support. I will continue to strive to be the best man of God, husband, father, and at…" +04/12/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: CARDI B!! She is everywhere right now and @nessnitty and @SteveMadden can't help but gush about her on the stoop! https://t.… +04/11/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: .@nessnitty and her partner @Kaepernick7 are working on their smize and they recruited @tyrabanks, the expert and host of @A…" +04/11/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: Source: Mike Brown questioned Eric Reid about anthem kneeling during his recent Bengals visit https://t.co/ivvRXO7BdS +04/11/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: Eric Reid never got a formal offer from 49ers; he'd sign a one-year deal for his 2017 salary there https://t.co/kY5UxZ… +04/11/2018,Sports_celeb,@Kaepernick7,"RT @Kaepernick7: My brother, @E_Reid35 continues to train like the Elite Probowl safety he is! Keep an eye on him, as he goes through free…" +04/11/2018,Sports_celeb,@Kaepernick7,"RT @CFPetrella: .@LeftSentThis & I wrote this for @washingtonpost: + +""Wherever one stands on the issue of gun ownership, one must recognize…" +04/10/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: WOW... via #nydailynews: +The sheriff of a California county with an outsized number of police shootings once said that…" +04/08/2018,Sports_celeb,@Kaepernick7,RT @lsarsour: Don’t turn a blind eye. https://t.co/wU1GaCbftF +04/07/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Let’s Go!!!! @TalkStoop https://t.co/6AdMXsBVM7 +04/07/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Catch @nessnitty's premiere tonight on #talkstoop! Check your local listings for her interviews with Hollywood legends @rosi… +04/06/2018,Sports_celeb,@Kaepernick7,RT @Mathieu_Era: E Reid & Kenny V still aren't signed... think about that !!! FRFR! They too good of men & players! +04/06/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: The creators of @NBCChampions are having a little fun with their actors! Star @AndyFavs tells @nessnitty how he stays on his… +04/06/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Chatting w THE LEGENDARY @rosieperezbklyn about @iamcardib ❤️ #InvasionOfPrivacy out now! Catch us on @TalkStoop NBC Station… +04/06/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: In this exclusive clip, @nessnitty and @ForestWhitaker chat about people's evolving perceptions of Africa, the setting of hi…" +04/06/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: Will there be an In Living Color reunion?!?! For more, watch @NBCRise's @rosieperezbklyn this weekend on Talk Stoop with @ne…" +04/05/2018,Sports_celeb,@Kaepernick7,RT @NBCUniversal: Nessa Diab Is Named Host of Popular Television Program @TalkStoop for 2018 Season https://t.co/fU2xBPMwQ0 https://t.co/Kc… +04/05/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Can @nessnitty get @WhosBenFeldman of @NBCSuperstore to crack and reveal some upcoming storylines? Have your mind blown toni… +04/05/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Free ALL of the political prisoners who literally put their lives on the line to protect the Black community from state s… +04/05/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: It took 27 seconds for four cops (three of which were in plainclothes) to hop out of an unmarked car, as one witness said…" +04/04/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: America decided to love Martin Luther King Jr. AFTER he was assassinated and no longer a threat to disrupting order and c… +04/04/2018,Sports_celeb,@Kaepernick7,"RT @Michael31Thomas: A God fearing man, a loving husband & father, and a great community leader. Not to mention a top 5 Safety in the NFL.…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/RYskdI2oT3 +04/03/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: This spring, @nessnitty will sit down with @tyrabanks, @erikajayne, @TheRitaMoreno, @rosieperezbklyn, Dennis Quaid, @marias…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: The book is stores today right? https://t.co/WlLdqPcsO2 +04/03/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: Pay attention! 👀 #Repost @kaepernick7 - My brother, @e_reid35 continues to train like the Elite Probowl safety he is! K…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @HOT97: HUGE Congratulations to our girl @nessnitty - the new host of NBCU’s ‘Talk Stoop’ 👏🏾 - https://t.co/aoljC0cklH https://t.co/A2TQ… +04/03/2018,Sports_celeb,@Kaepernick7,"My brother, @E_Reid35 continues to train like the Elite Probowl safety he is! Keep an eye on him, as he goes throug… https://t.co/wG2QawfJRP" +04/03/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Like Eric Reid, Kenny Vaccaro was aware of the fact that his support of Colin Kaepernick, and his own protesting of polic…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: I am hopeful that the NFL owners are not going to add Eric Reid and Kenny Vaccaro to their Kaepernick’d list (as in playe… +04/03/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Eric Reid and Kenny Vaccaro have four things in common: + +1. They’re two of the top safeties in the NFL + +2. Both are unsi…" +04/02/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: .@nessnitty let’s make this Dennis Quaid-@LilTunechi duet happen! https://t.co/yGfutQaUh1 +04/02/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/voy8eUodBr +04/02/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: You have to ask yourself why they hated Nelson Mandela when he was incarcerated, and celebrated him upon his release." +04/02/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Winnie Mandela was a revolutionary. +04/02/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: “All I wanna say is that they don’t really care about us” +You ain’t lying Michael" +04/02/2018,Sports_celeb,@Kaepernick7,RT @haymarketbooks: “Palestine under Israeli occupation is the worst possible example of a carceral society.” —Angela Davis https://t.co/tQ… +04/01/2018,Sports_celeb,@Kaepernick7,RT @ryan_s_clark: Here at Safeco Field where an elementary school sung the anthem and two students took a knee while performing. https://t.… +03/30/2018,Sports_celeb,@Kaepernick7,"More historical context on America’s “involvement” in Africa. +#KnowYourHistory + +BBC News - Four more ways the CIA h… https://t.co/K2L4a3i8Dv" +03/30/2018,Sports_celeb,@Kaepernick7,"From a historical perspective, the Ghanaian people have every reason to protest America's ""involvement"" in their co… https://t.co/pWlej2Gj5x" +03/30/2018,Sports_celeb,@Kaepernick7,"RT @Delo_Taylor: “Ghana First"": US Military deal erupts into mass protest, as citizens fear loss of sovereignty. #HandsOffAfrica #IntelGrou…" +03/30/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: If the government can get away with stealing $21 Trillion, without an uproar, God only knows how many miscellaneous milli…" +03/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/Bsvk1AOZim +03/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Watch how many of the same people celebrating their Parkland peers demonize or completely ignore the legitimacy of these… +03/28/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: ❤️❤️❤️ #Repost @janellacuyler - “I want to be like Colin Kaepernick because he stands up for people and for their right… +03/27/2018,Sports_celeb,@Kaepernick7,RT @E_Reid35: 🤬😢This cycle is WAY too old! My heart hurts for Alton’s family. https://t.co/8LhVg4ZJkI +03/27/2018,Sports_celeb,@Kaepernick7,State sanctioned lynching by means of gun violence! https://t.co/s9L7RZ5vuq +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: There are no publicly supported marches for Black folks, nationwide, that have been victims of, “state sanctioned lynchin…" +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Claude McKay penned this poem in 1919. https://t.co/IHF9fjG76h +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Free all political prisoners that put their lives on the line for the liberation of Black folks. +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Not only do the police LEGALLY have the right to kill US with impunity, but they do so while being paid, in a system that…" +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Y’all better stop letting your enemies decide who your heroes are. +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “Neighbors were surprised that a shooting would take place at such an expensive store.” + +https://t.co/pGQ61ZGl5c" +03/25/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: A leader cannot lead without those willing to follower, thus Kaepernick’s personal protest could only become a movement b…" +03/25/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #Repost @francismmaxwell - When a rifle has more rights than an unarmed black 22 year old, there is a problem. #blackli…" +03/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: It’s interesting which protest/gatherings become sanctioned by society, safe from police aggression and agitation." +03/23/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Bodycam footage shows the moments before cops fired 20 shots at unarmed 22-year-old Stephon Clark (warning: distressing im… +03/23/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: This is the Eric Reid that they want you to hate for protesting systemic oppression that allows the police to kill with i… +03/22/2018,Sports_celeb,@Kaepernick7,"“I am a feminist, & what that means to me is much the same as the meaning of the fact that I am Black; it means tha… https://t.co/gNuK5rFSzL" +03/22/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: ✊🏾 thank you!! #RP jaypoppins615: Just got my #ImWithKap hoodie I’m riding with @kaepernick7 no matter what ✊🏿 https://… +03/21/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: The 22-year-old black man fatally shot by Sacramento police in his own backyard Sunday night was carrying a cellphone,…" +03/20/2018,Sports_celeb,@Kaepernick7,"""I do want to create art beyond rage. Rage is a place to begin, but not end... I do want to devour my demons—despai… https://t.co/wc2u0Ju7rI" +03/17/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: When it comes to support, we’ve never had to doubt yours 🙌🏾 HAPPY BIRTHDAY @oldmanebro!!! https://t.co/RaVajjSsfM" +03/16/2018,Sports_celeb,@Kaepernick7,RT @TMZ_Sports: Colin Kaepernick All Smiles After Legal Showdown with Texans Owner https://t.co/kCPMHBCmQS +03/16/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: The silence on Eric Reid in free agency is deafening https://t.co/VEtGhClWcf +03/16/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: 600 students at this Atlanta school took a knee for 17 minutes yesterday to honor Parkland and say #ENOUGH https://t.co/k9… +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: GMs aren’t the hold up broski. It’s ownership. People who know football know who can play. People who know me, know my charac…" +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: Your assumption is false. After Navorro went to the Raiders, there was a LB shortage and I was asked to pick up the slack. No…" +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: The notion that I can be a great signing for your team for cheap, not because of my skill set but because I’ve protested syst…" +03/15/2018,Sports_celeb,@Kaepernick7,Let em know Queen! https://t.co/16DKlFbThQ +03/15/2018,Sports_celeb,@Kaepernick7,Turning up the heat!🔥🔥🔥 https://t.co/VI4CxdHPX3 +03/14/2018,Sports_celeb,@Kaepernick7,They did to @MeekMill what they've done to young black men and women and people of color forever. Read… https://t.co/U9cWW2vgzc +03/14/2018,Sports_celeb,@Kaepernick7,"RT @ladybrettgm: Student sign says: As a black boy, I hope one I day I have as many rights as a gun. #nationalschoolwalkout https://t.co/Pu…" +03/14/2018,Sports_celeb,@Kaepernick7,RT @JamilesLartey: Students at Booker T Washington High School in Atlanta talking a knee as part of the #NationalWalkoutDay protests. https… +03/14/2018,Sports_celeb,@Kaepernick7,"RT @ShaunKing: #DraylenMason. + +This is the brilliant 17 year old brother who was murdered yesterday by the package bomb brought to his home…" +03/13/2018,Sports_celeb,@Kaepernick7,"“Love is an expression of power. We can use it to transform our world.” - Ericka Huggins + +#KnowYourHistory… https://t.co/73EMlhZ62H" +03/13/2018,Sports_celeb,@Kaepernick7,RT @shondarhimes: Wow. “Black-ish Episode About Kneeling Athletes Will Never Be Aired” https://t.co/VocQoxRxDf +03/12/2018,Sports_celeb,@Kaepernick7,RT @Schultz_Report: Here's why Eric Reid is the most intriguing free agent on the market: https://t.co/v0enz3XiBa @E_Reid35 #49ers #FreeAge… +03/12/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: From 1940 until his death in 1966, Walt Disney served as a secret informer for the Los Angeles office of the Federal Bure…" +03/11/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/OG9kEKBSfg +03/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Blackish has covered everything from, ""Trump’s election, the N-word, postpartum depression, and police brutality,"" but wh…" +03/09/2018,Sports_celeb,@Kaepernick7,". @Ava showed out when she made A Wrinkle in Time. The shots, images and messaging are phenomenal. Take your loved… https://t.co/rjj0JNwxEA" +03/09/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “To be Black is not revolutionary. When you begin to stress culture without politics, people can become so hooked up in t…" +03/09/2018,Sports_celeb,@Kaepernick7,"RT @ShaunKing: I saw a list today of the top 200 free agents in the @NFL. + +Colin Kaepernick wasn't even on the list. + +I saw HORRIBLE QBs…" +03/09/2018,Sports_celeb,@Kaepernick7,RT @MindyBe: Terry Crews: 'I Still Have to Send a Check to My Molester' https://t.co/UYnceVHlRy +03/08/2018,Sports_celeb,@Kaepernick7,Thank you @ava for inviting me and @nessnitty to the premiere of your brilliant film A Wrinkle in Time! Continue to… https://t.co/baQxxBP8cS +03/08/2018,Sports_celeb,@Kaepernick7,"“Revolution is a serious thing, the most serious thing about a revolutionary’s life. When one commits oneself to th… https://t.co/gqIBxTKucT" +07/01/2018,Sports_celeb,@MariaSharapova,Ураааа!! Молодцы 👏🏻👊🏻#FifaWorldCup2018 https://t.co/UQcY2VaILJ +07/01/2018,Sports_celeb,@MariaSharapova,It’s almost... Day #1 of Wimbledon 🤗📸 by getty https://t.co/Ze1ou3xRJS +07/01/2018,Sports_celeb,@MariaSharapova,10am - 8pm ⏰ #12ChurchRoad #PovaPopUp https://t.co/pryF0A2bu8 +06/30/2018,Sports_celeb,@MariaSharapova,12 Church Road 🤓 https://t.co/TAMP15voaQ +06/30/2018,Sports_celeb,@MariaSharapova,"RT @WimbledonVil: Grabbing some candy at the pop-up shop @Sugarpova @MariaSharapova + +#Candy #Sugarpova #mariasharapova #WimbledonVillage #…" +06/29/2018,Sports_celeb,@MariaSharapova,Boomerang game at #PovaPopUp #12ChurchRoad @Sugarpova https://t.co/72sXzxMDVM +06/29/2018,Sports_celeb,@MariaSharapova,RT @Sarahwinterman: She did that 😻🍬 @MariaSharapova @Sugarpova #PovaPopUp https://t.co/7UFrlZ8imk +06/29/2018,Sports_celeb,@MariaSharapova,Thank you!! 🙋🏼‍♀️🍬 https://t.co/FKHIInCANM +06/29/2018,Sports_celeb,@MariaSharapova,RT @WimbledonFoodie: Where candy grows on trees... @Sugarpova in #Wimbledon Village. What a treat! #foodie #wimbledonfoodie https://t.co/N2… +06/28/2018,Sports_celeb,@MariaSharapova,Loving this suit dress by @31philliplim 📸🖤 https://t.co/a0XXjtXiVB +06/28/2018,Sports_celeb,@MariaSharapova,RT @BillieJeanKing: .@ejaf celebrated 25 years of helping to fight AIDS. Lovely to spend our first evening in the UK at the Argento Ball wi… +06/28/2018,Sports_celeb,@MariaSharapova,I ❤️ this place. #wimbledon https://t.co/WvEewzWWfW +06/28/2018,Sports_celeb,@MariaSharapova,With the incredible Marina Abramovic at last nights @ejaf evening 📸getty https://t.co/zFmhBJj3NN +06/27/2018,Sports_celeb,@MariaSharapova,I love this!! Thank you for visiting 🙋🏼‍♀️🍬 #PovaPopUp https://t.co/oTSU5JA2Mf +06/27/2018,Sports_celeb,@MariaSharapova,"RT @Sugarpova: We are open! #PovaPopUp @ 12 Church R, Wimbledon Village https://t.co/5vLXacp6Xq" +06/27/2018,Sports_celeb,@MariaSharapova,Thank you for a great #Wimbledon 🎾 warmup!! https://t.co/lKKC29rEkY +06/25/2018,Sports_celeb,@MariaSharapova,A little tour of #Wimbledon with Sidney Crosby 🎾🏒 https://t.co/l5vYazaTFl +06/25/2018,Sports_celeb,@MariaSharapova,🍫🍬🍭 #PovaPopUp #Sugarpova https://t.co/kk9DtbPoLI +06/24/2018,Sports_celeb,@MariaSharapova,Exceeded any expectations at the fair. And yes...we are #children 🎈🐻😊 https://t.co/ARG6Wp1GDN +06/24/2018,Sports_celeb,@MariaSharapova,"A little glimpse of @Sugarpova candy lounge under construction, getting ready for a Wednesday opening 🤗 #PovaPopUp… https://t.co/qGYHuZL2H9" +06/20/2018,Sports_celeb,@MariaSharapova,RT @the_ink_factory: Ink Factory is about to go next-level! We're honored to be accepted into the @NAWBONational + @MariaSharapova Women's… +06/20/2018,Sports_celeb,@MariaSharapova,I'm thrilled to announce the 7 finalists have been selected for my Women's Entrepreneur Program in partnership with… https://t.co/XKuBSp3MCi +06/19/2018,Sports_celeb,@MariaSharapova,Ed Ruscha at #NationalGallery #London https://t.co/nodHvsekpe +06/19/2018,Sports_celeb,@MariaSharapova,Can we please hire you?? 😍 https://t.co/drQhFbzEDh +06/18/2018,Sports_celeb,@MariaSharapova,As Seen In @HauteLivingMag https://t.co/WfO6OQVmyz +06/17/2018,Sports_celeb,@MariaSharapova,Thank you!! https://t.co/7YNVjs3A4x +06/11/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Make your home improvement project a little sweeter with our truffles. Available now at @Menards stores nationwide #truffle… +06/08/2018,Sports_celeb,@MariaSharapova,The scene made it in the movie?!🤓😎 going to the theater asap 🙃 #Oceans8 🎥 https://t.co/1UvMpvTdjI +06/08/2018,Sports_celeb,@MariaSharapova,"Unstoppable, Mon Autobiographie 🇫🇷 is now on shelves throughout France. It is now in over 20 different language t… https://t.co/KfNbi1v2jv" +06/02/2018,Sports_celeb,@MariaSharapova,Happy 📸😊 from today https://t.co/A4dVVCojlY +06/02/2018,Sports_celeb,@MariaSharapova,🤗 https://t.co/9WoaNzWFSt +06/01/2018,Sports_celeb,@MariaSharapova,"Special to be back here, Paris. Love playing in front of you ❤️ https://t.co/Kg5Q7W9NU6" +05/28/2018,Sports_celeb,@MariaSharapova,I made a guest appearance (along w @Sugarpova ) on SHOWTIME on #Billions alongside Damian Lewis &John Malkovich. W… https://t.co/fe42eJCDfy +05/25/2018,Sports_celeb,@MariaSharapova,Musée de Picasso https://t.co/Znsicm7b6c +05/24/2018,Sports_celeb,@MariaSharapova,RT @jen172334: @MariaSharapova @Nikecourt I got mine today from Tennis Warehouse. It’s beautiful!❤️🎾 https://t.co/TBClUpu7Xt +05/23/2018,Sports_celeb,@MariaSharapova,The 👗 for Paris 😍@Nikecourt https://t.co/BaNdcFTFx2 +05/23/2018,Sports_celeb,@MariaSharapova,"The @Sugarpova team is hard at work showing our latest and greatest (chocolate covered gummy lips, anyone?? 🙋🏼‍♀️)… https://t.co/Ya9yUARbOr" +05/23/2018,Sports_celeb,@MariaSharapova,Back at it 👊🏻 #Paris https://t.co/ek17QOgO6a +05/22/2018,Sports_celeb,@MariaSharapova,Bonjour 🤗 https://t.co/A7znfmoY07 +05/20/2018,Sports_celeb,@MariaSharapova,Just a few weeks left to get those applications in for the Women's Entrepreneur Program on which I've partnered wit… https://t.co/5hlKGBIBcZ +05/18/2018,Sports_celeb,@MariaSharapova,3.11hrs on court. Loved every bit of it. Thank you Roma for the ❤️ https://t.co/3d3UfK8PBy +05/15/2018,Sports_celeb,@MariaSharapova,"Unstoppable, in Italian debuts today🇮🇹 🤗 https://t.co/HV710KcrIy" +05/14/2018,Sports_celeb,@MariaSharapova,Two minutes on court with the GOAT 🐐 @RafaelNadal #BucketList Was so nervous 😱😬 https://t.co/mfUO2Xx79l +05/07/2018,Sports_celeb,@MariaSharapova,🤣 https://t.co/g8IY68saIA +05/06/2018,Sports_celeb,@MariaSharapova,"Hola, Madrid! 👋🏼 Loved playing in front of you today 👊🏻🇪🇸 https://t.co/JCGGTFtAfV" +05/05/2018,Sports_celeb,@MariaSharapova,RT @JJlovesTennis: .@MariaSharapova signs autographs at the @MutuaMadridOpen https://t.co/wjmWzDSpUH +05/04/2018,Sports_celeb,@MariaSharapova,Huh? 👀 https://t.co/qGXcOjycvU +05/01/2018,Sports_celeb,@MariaSharapova,Thank you!😊 https://t.co/bDKwT8rmO7 +04/30/2018,Sports_celeb,@MariaSharapova,Introducing @evianwater new Fruits & Plants plum lemongrass flavor. Another delivery that arrived minutes before my… https://t.co/0YZTy98uIy +04/21/2018,Sports_celeb,@MariaSharapova,Not sure what to think of this comment AussieGrit 🤔 https://t.co/uofupTeVHb +04/21/2018,Sports_celeb,@MariaSharapova,This is GOLD 🤣 @Porsche @AussieGrit https://t.co/YniKyuZhOV +04/21/2018,Sports_celeb,@MariaSharapova,RT @PorscheNewsroom: Fast laps on the #Porsche test track in Weissach: @AussieGrit negotiated the circuit with @MariaSharapova in a #911gt2… +04/21/2018,Sports_celeb,@MariaSharapova,RT @PorscheTennis: It´s shooting time for our brand ambassador @MariaSharapova! 📸 #porschetennis https://t.co/BnkfeP9J2D +04/20/2018,Sports_celeb,@MariaSharapova,One way to battlejet lag. A full throttle lap with Mark Webber in a @porsche GT2RS upon arrival. No biggie 🤷🏼‍♀️😵 https://t.co/pHaoND36eB +04/19/2018,Sports_celeb,@MariaSharapova,"Three cakes, 2.5 candles later. 😉Happpy puppy. Thank you for all the beautiful messages, wishes and ❤️ https://t.co/953jORLt3a" +04/18/2018,Sports_celeb,@MariaSharapova,Let’s make it to Stuttgart first 😂🤷🏼‍♀️ https://t.co/JAb7MgBY0w +04/17/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Delicious truffles are now available on https://t.co/GhBtUccrJz in time for #MothersDay ! Free shipping on orders of $75+ #… +04/17/2018,Sports_celeb,@MariaSharapova,Coming out of retirement @TommyHaas13 ? 🤷🏼‍♀️🤔 https://t.co/v7nNFrxxKf +04/16/2018,Sports_celeb,@MariaSharapova,RT @MubadalaSVC: We’re thrilled to announce that five-time Grand Slam champion @MariaSharapova has committed to play in San Jose this year.… +04/16/2018,Sports_celeb,@MariaSharapova,Third live show I’ve seen of Judah Friedlander. He’s a world champ and an athlete. Also a comedian. Watch him on Ne… https://t.co/VKPTbT4I7g +04/12/2018,Sports_celeb,@MariaSharapova,"RT @AmsterdAmik: Кто бы сомневался @MariaSharapova 😎😏🤙🏼 +#МосковскийДомКниги https://t.co/RKhBjxwJ5D" +04/11/2018,Sports_celeb,@MariaSharapova,🛫PDX Nike HQ’s https://t.co/Yz1HPFl26k +04/10/2018,Sports_celeb,@MariaSharapova,Sliding into...Tuesday 🤓 https://t.co/Y78jfKbwHu +04/09/2018,Sports_celeb,@MariaSharapova,RT @NAWBONational: APPLY TODAY: Attention all women business owners who are really ready to grow! Five-Time Grand Slam tennis champion and… +04/06/2018,Sports_celeb,@MariaSharapova,"Met this brilliant and wickedly humble lady, CJ Hendry who just happens to be an amazing artist, currently with a s… https://t.co/jRSRV0Fqce" +04/02/2018,Sports_celeb,@MariaSharapova,Nick told us this morning in 1957 he charged 3.75$ an hour. Today’s price was $900 but I wiggled a discount 🤷🏼‍♀️ https://t.co/rBphLhyU1d +04/01/2018,Sports_celeb,@MariaSharapova,Easter’s version of Happy Hour courtesy of Rum Cherry Truffles @Sugarpova 😉🍒🤷🏼‍♀️ https://t.co/n0n8Ebg8c6 +03/30/2018,Sports_celeb,@MariaSharapova,Prepping for an Easter Egg hunt 🐥 https://t.co/uWL1lOBjVa +03/30/2018,Sports_celeb,@MariaSharapova,"RT @darienlibrary: Borrow it: https://t.co/gTiS1TruTl + +@MariaSharapova https://t.co/balljunoLa" +03/30/2018,Sports_celeb,@MariaSharapova,RT @Dent29Dent: Enjoying reading #Unstoppable by @MariaSharapova whilst on holiday in #Mauritius 😎 https://t.co/HCG6n0V8J7 +03/29/2018,Sports_celeb,@MariaSharapova,RT @Asia_Burzynska: @MariaSharapova Finally got it in Poland! ❤ https://t.co/XYBGofkVkv +03/29/2018,Sports_celeb,@MariaSharapova,"RT @IMGAcademy: 👀 who we found at @imgacademy putting in the hard work before the clay court season begins! You got this, @MariaSharapova!…" +03/24/2018,Sports_celeb,@MariaSharapova,RT @NetJets: Ace! #NetJets Owners enjoyed a private clinic with tennis legend @MariaSharapova. #OnlyNetJets https://t.co/T0yISqnDBp +03/23/2018,Sports_celeb,@MariaSharapova,Thanks for making it so fun! 👊🏻 https://t.co/FgimNteBem +03/22/2018,Sports_celeb,@MariaSharapova,Incredible. 👊🏻🙌🏻 https://t.co/VYQ7omHYIU +03/20/2018,Sports_celeb,@MariaSharapova,"Oh yeah, Day 2. 👊🏻 https://t.co/wGomYY4Sbr" +03/20/2018,Sports_celeb,@MariaSharapova,@daniil_ndg https://t.co/46B2iGtYGR +03/20/2018,Sports_celeb,@MariaSharapova,"RT @team_sharapova: 2012 👶🏼 +2018 👧🏼 +#Godmother 🤗❤️ https://t.co/gY747CUUdL" +03/20/2018,Sports_celeb,@MariaSharapova,I like your style 😉 https://t.co/uMq4CuTqPq +03/08/2018,Sports_celeb,@MariaSharapova,As seen in @Forbes https://t.co/F1WJkPpz7T +03/08/2018,Sports_celeb,@MariaSharapova,"Happy #InternationalWomensDay! Thrilled to partner with @NAWBONational on a new program for female entrepreneurs, k… https://t.co/ufTh5E7TWu" +03/06/2018,Sports_celeb,@MariaSharapova,RT @WhoWhatWear: .@MariaSharapova told us how to style her elegant new @Nike sneakers in L.A. vs NY https://t.co/uIkxZgJ7FA https://t.co/Bo… +03/06/2018,Sports_celeb,@MariaSharapova,Shenanigans on set with @head_tennis and Zverev. New Instinct out in 2019 😳👏🏼 https://t.co/AcMuz0jjyh +03/04/2018,Sports_celeb,@MariaSharapova,"RT @NikeLA: ""The La Cortez has followed me around the world. From Abu Dhabi to Paris, back to LA. It's timeless."" + +@MariaSharapova joins Ni…" +03/03/2018,Sports_celeb,@MariaSharapova,"LA Cortez Launch at Nike Store, The Grove https://t.co/92LDdIvaCV" +03/03/2018,Sports_celeb,@MariaSharapova,RT @KarenCivil: Congratulations @MariaSharapova on the release of your @nikewomen’s “La Cortez” https://t.co/SntN9NFl14 +03/03/2018,Sports_celeb,@MariaSharapova,@daniklup @Nike @nikewomen @nikevault Thank you for hosting such a nice evening! 👏🏼 +03/02/2018,Sports_celeb,@MariaSharapova,Damien Hirst ‘The Veil’ at the Gagosian. https://t.co/Q23OfqHfvK +03/02/2018,Sports_celeb,@MariaSharapova,RT @SNKRDrops: .@MariaSharapova x Nike LA Cortez is now available on Nike SNKRS --> https://t.co/OBa72EPLpj https://t.co/vBDALDcFiw +03/02/2018,Sports_celeb,@MariaSharapova,"Los Angeles!! I’ll be at Nike @TheGroveLA TONIGHT to launch and talk +about the limited-edition LA Cortez X Maria Sh… https://t.co/R2oycAJ3j7" +03/02/2018,Sports_celeb,@MariaSharapova,"RT @daniklup: So excited to host an event alongside @MariaSharapova TOMORROW at the Grove with @nikewomen! 🎾👟 + +These “la Cortez x Maria” be…" +03/01/2018,Sports_celeb,@MariaSharapova,"RT @TheSoleWomens: Take a closer look at Nike x @MariaSharapova's effortlessly chic LA Cortez 💘 + +https://t.co/a4n7G7xIRB https://t.co/iEFS…" +03/01/2018,Sports_celeb,@MariaSharapova,"RT @SOLELINKS: .@MariaSharapova x Nike LA Cortez is now available via Nordstrom => https://t.co/8ZjYfX3bXH + +(releasing tomorrow on SNKRS) h…" +03/01/2018,Sports_celeb,@MariaSharapova,So excited to share the LA Cortez with you! The shoe captures everything I love most about this city. Available TOD… https://t.co/aQZ9qh7yFZ +02/28/2018,Sports_celeb,@MariaSharapova,"I got to design one of my favorite Nike classics, the Cortez. Ta dahhh...LA Cortez X Maria Sharapova. On March 2nd,… https://t.co/M3GDRcHKH4" +02/28/2018,Sports_celeb,@MariaSharapova,RT @SBDetroit: @MariaSharapova releasing her own Nike Cortez https://t.co/IL5JDm5PyE https://t.co/rV1kgWkT1j +02/28/2018,Sports_celeb,@MariaSharapova,"RT @hype_bae: .@Nike teams up with @MariaSharapova on a luxe LA Cortez. +https://t.co/vqMCzMvGhw https://t.co/xoWUA60XZ8" +02/28/2018,Sports_celeb,@MariaSharapova,"RT @Sneakerologue2: .@MariaSharapova x Nike Cortez ""LA"" +Inspiré de la sneaker préférée de Maria Sharapova et de sa ville préféré. +La Nike C…" +02/27/2018,Sports_celeb,@MariaSharapova,"RT @TheGroveLA: On March 2nd, join us for a special night with @Nike & @MariaSharapova to celebrate the new LA Cortez . RSVP at https://t.c…" +02/27/2018,Sports_celeb,@MariaSharapova,That’s really nice! Thank youuu 😊 https://t.co/lkNGvydZOH +02/24/2018,Sports_celeb,@MariaSharapova,That Friday feeling after the sand dunes... 🤸🏼‍♂️ https://t.co/mcLOZYhG9R +02/23/2018,Sports_celeb,@MariaSharapova,Thank you! https://t.co/g9OQyNeC2e +02/23/2018,Sports_celeb,@MariaSharapova,Ураааааааа 👏🏼👏🏼👏🏼 Zagitova 🥇 Medvedeva 🥈молодцы!!! #Olympics2018 +02/23/2018,Sports_celeb,@MariaSharapova,CookiesN Cream ➡️👩🏼‍🍳🍪🥛#myfave https://t.co/RO1B5MiuId +02/19/2018,Sports_celeb,@MariaSharapova,"Long days on the court require me to keep up my hydration throughout. With soft, smooth water of course 😉 #evian https://t.co/aBMI44CC0k" +02/16/2018,Sports_celeb,@MariaSharapova,Tom Wesselmann knew all about emojis before we ever did 💄🕶 #Gagosian https://t.co/IKqPFaU3lt +02/05/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Free Ground Shipping on https://t.co/r2cLs2PpHe guaranteed delivery by #ValentinesDay Last chance.! Use code VDSHIP at chec… +02/05/2018,Sports_celeb,@MariaSharapova,Alex’s 🦅’s loyalty became infectious this season and I somehow became an #Eagles cheerleader tonight 🤷🏼‍♀️… https://t.co/Jwu8DnO9jq +02/01/2018,Sports_celeb,@MariaSharapova,#Unstoppable spotted in Czech Republic 🇨🇿 https://t.co/Kq3c6SYFRu +02/01/2018,Sports_celeb,@MariaSharapova,"RT @BillieJeanKing: While I was in Australia, it was wonderful to catch up with @MonicaAce93 and hear about the ongoing efforts in Puerto R…" +01/31/2018,Sports_celeb,@MariaSharapova,BTS from today’s new cover shoot 📸 https://t.co/qJDkC7EPZp +01/29/2018,Sports_celeb,@MariaSharapova,Thank you! Funny 📸 https://t.co/IC4LvxpK4I +01/18/2018,Sports_celeb,@MariaSharapova,RT @head_tennis: .@MariaSharapova focused and determined as ever. See you in round three! #AusOpen https://t.co/DHden9EO0s +01/18/2018,Sports_celeb,@MariaSharapova,"RT @AustralianOpen: ""I love being in the city. I love Australia. I love the summertime...A lot of things to smile about."" + +-@MariaSharapova…" +01/16/2018,Sports_celeb,@MariaSharapova,Round 1 👊🏻 #AusOpen ❤️ This Dress https://t.co/d7MXpsE461 +01/16/2018,Sports_celeb,@MariaSharapova,"RT @AustralianOpen: Off to work. + +@MariaSharapova business like as she makes her way onto court. + +#AusOpen https://t.co/pee3k2lMAr" +01/15/2018,Sports_celeb,@MariaSharapova,"The Aussie summers get so warm, during which the body can lose over a liter of water an hour! Crazy, right?! Always… https://t.co/HwQyeBOG67" +01/13/2018,Sports_celeb,@MariaSharapova,#AusOpen just around the corner 🤗 https://t.co/PZRa6HlYhO +01/13/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Traveling in or out of @flyLAXairport this weekend? Don't forget to stop by Treat Me Sweet store in Tom Bradley Internationa… +01/11/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Sugarpova is now available in all @TennisPlaza locations! Stop by if you are in Florida #tennisshop https://t.co/QFy5bYvnav +01/10/2018,Sports_celeb,@MariaSharapova,RT @team_sharapova: #KeepGrinding 💁🏼💪🏻🎾🇦🇺 #AusOpen https://t.co/0M0blQFZXG +01/08/2018,Sports_celeb,@MariaSharapova,RT @AustralianOpen: A closer look at @MariaSharapova getting #AusOpen ready this morning 👀 https://t.co/UAHgRwZoIb +01/06/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Thank you @TennisPlaza 😍 https://t.co/4cFNDnsDmC +12/31/2017,Sports_celeb,@MariaSharapova,I spy...with my little 👁 #ShenzhenOpen https://t.co/uVmBTIvxOn +12/29/2017,Sports_celeb,@MariaSharapova,First practice in Shenzhen.... Hey #SharaFamilyChina 🙋🏼🇨🇳 https://t.co/dYZDwWVylL +12/28/2017,Sports_celeb,@MariaSharapova,Shenzhen arrivals 🇨🇳 https://t.co/ZGY8lXHrF7 +12/24/2017,Sports_celeb,@MariaSharapova,Spice Guuurl https://t.co/FHnqYunrMO +12/24/2017,Sports_celeb,@MariaSharapova,RT @LarissaBatta: In the middle of the Gulf of Mexico enjoying Unstoppable by @MariaSharapova Merry Christmas to you all! https://t.co/ru… +12/22/2017,Sports_celeb,@MariaSharapova,Time flies ❤️ https://t.co/d4dE0LyCDz +12/22/2017,Sports_celeb,@MariaSharapova,"RT @MadalynSklar: Love this quote from @MariaSharapova in @tferriss’ book #TribeOfMentors. + +""’Be original.’ It’s straightforward. It..."" fr…" +12/21/2017,Sports_celeb,@MariaSharapova,🤷🏼‍♀️ https://t.co/zhQVPQYdjm +12/17/2017,Sports_celeb,@MariaSharapova,Sunday's 📸 https://t.co/8AdBGCvg5C +12/17/2017,Sports_celeb,@MariaSharapova,"""Who eats it like that"" 😂Max not entirely happy with how I taste test new @Sugarpova truffles 🍬🍫🍭 https://t.co/bYoA7WdpLo" +12/15/2017,Sports_celeb,@MariaSharapova,RT @Sugarpova: Last minute gift shopping on Amazon? Don't forget to pick up a Sugarpova candy and chocolate. Now part of Prime offering on… +12/15/2017,Sports_celeb,@MariaSharapova,Personalized Air Force 1's at Nike Soho with art inspired lingo 👟 https://t.co/Rdiolze2DX +12/13/2017,Sports_celeb,@MariaSharapova,Getting in the golden Holiday spirit despite the heat wave in Cali! Thanks @evianwater and @KusmiTea for sending yo… https://t.co/3St6bkolfZ +12/08/2017,Sports_celeb,@MariaSharapova,Floyd 🙋🏼📸 https://t.co/uJJbgcs69W +12/07/2017,Sports_celeb,@MariaSharapova,📷 https://t.co/bpRTXvF9QT +12/07/2017,Sports_celeb,@MariaSharapova,Had so much fun designing the Limited Edition @evianwater X MariaSharapova bottle now exclusively sold on… https://t.co/Jub3cIrMdv +11/30/2017,Sports_celeb,@MariaSharapova,A fun afternoon with @PorscheNewsroom at the LA Auto Show. The new 718 Boxster GTS is 😍🚗 https://t.co/1IlhXaPhnD +11/29/2017,Sports_celeb,@MariaSharapova,Hey #LAAutoShow 🤗@Porsche https://t.co/cyaRcGisLN +11/27/2017,Sports_celeb,@MariaSharapova,Thank you 💝 https://t.co/DPY21K3zdb +11/27/2017,Sports_celeb,@MariaSharapova,"Congrats on a phenomenal season @lewishamilton. 🏆 @ Abu Dhabi, United Arab Emirates https://t.co/erX4nHJTA0" +11/26/2017,Sports_celeb,@MariaSharapova,So much fun!! ✌🏻 https://t.co/YYKfjuVzK7 +11/26/2017,Sports_celeb,@MariaSharapova,"24 hours ago in Abu Dhabi at a Cuban themed gala, tonight playing in front of 15,000 spectators in Istanbul. Such a… https://t.co/6PvOPGFDwJ" +11/26/2017,Sports_celeb,@MariaSharapova,😍 https://t.co/ViAL0TmCjj +11/26/2017,Sports_celeb,@MariaSharapova,Of course I don't know where to go... 🙈 https://t.co/PVrILZTSpi +11/25/2017,Sports_celeb,@MariaSharapova,First @F1 race experience ✔️ https://t.co/G9lMaXYsrK +11/25/2017,Sports_celeb,@MariaSharapova,Whoopsie doopsie 🤔 https://t.co/Hbv3a7yC98 +11/25/2017,Sports_celeb,@MariaSharapova,✌🏻 https://t.co/t7NIaD31XW +11/25/2017,Sports_celeb,@MariaSharapova,Look who's here at @F1!! @AussieGrit 🤗@Porsche 🚗 https://t.co/vDrqboALNt +11/25/2017,Sports_celeb,@MariaSharapova,Sticking to our original sports 🤔@nico_rosberg https://t.co/hLSuGoQS9i +11/24/2017,Sports_celeb,@MariaSharapova,💃 https://t.co/a6a8DBfaaJ +11/24/2017,Sports_celeb,@MariaSharapova,Abu Dhabi Louvre designed by Jean Nouvel https://t.co/Zf66WSiYPA +11/24/2017,Sports_celeb,@MariaSharapova,Yessss https://t.co/zrcZCxIAIX +11/23/2017,Sports_celeb,@MariaSharapova,"So excited to play in front of you this weekend, Istanbul. Just heard it is a 13,000 sold out stadium 😱 #SeeYouSoon… https://t.co/BCuN7kmkDc" +11/23/2017,Sports_celeb,@MariaSharapova,❤️ https://t.co/KDbdnkceUy +11/22/2017,Sports_celeb,@MariaSharapova,Up to 500m...how about you?😉 Give it a go here: https://t.co/gioEibqnaK #mountainquest #evian #oversize https://t.co/N5Bih7wWAE +11/21/2017,Sports_celeb,@MariaSharapova,With sleeve or no sleeve 🤔 https://t.co/ai3ETUWpFN +11/21/2017,Sports_celeb,@MariaSharapova,I signed thousands of copies of UNSTOPPABLE just in time for #BlackFriday. Head to @BNBuzz on Friday to get a hand-… https://t.co/1qbeVlCpvW +11/20/2017,Sports_celeb,@MariaSharapova,Toodles ✌🏻✈️ https://t.co/fDML64qtfO +11/18/2017,Sports_celeb,@MariaSharapova,I just ran 300m...can you beat me? 😉 Give it a go here: https://t.co/YG0kSM5f8c #mountainquest #evian #oversize https://t.co/LT14MRuokG +11/18/2017,Sports_celeb,@MariaSharapova,"I got you, Friday 👀 https://t.co/NP8AvicWta" +11/17/2017,Sports_celeb,@MariaSharapova,📸 https://t.co/eqSlNxgM6Q +11/16/2017,Sports_celeb,@MariaSharapova,RT @First1Break: Busy Lil 🐝🐝🐝 #Unstoppable #booksigning #mariasharapova 💙🎾 #first1break #inspired 🏁#thankyouthursday #letsgoplay #girlsdayo… +11/16/2017,Sports_celeb,@MariaSharapova,Started the day with these smiles 😊 https://t.co/d3SPVc0F5p +11/16/2017,Sports_celeb,@MariaSharapova,Thank you 😊 https://t.co/0v84T32XqP +11/15/2017,Sports_celeb,@MariaSharapova,"RT @Sugarpova: Say ""Thank You"" with something Sweet! Free Shipping on https://t.co/r2cLs2PpHe (orders of $30+) Plus all proceeds go direct…" +11/15/2017,Sports_celeb,@MariaSharapova,"Чёрное море, Сочи 😍❤️ https://t.co/9H8oh3qeMO" +11/14/2017,Sports_celeb,@MariaSharapova,🤷🏼‍♀️ https://t.co/KPPbjEITCi +11/14/2017,Sports_celeb,@MariaSharapova,"When you get tricked alongside @JessieJ, Jack Ma, and Nicole Kidman 😱 https://t.co/mQR2J2YhTP" +11/13/2017,Sports_celeb,@MariaSharapova,This is so sweet❤️ #bookclub https://t.co/3QYaTZhImr +11/10/2017,Sports_celeb,@MariaSharapova,RT @AlibabaGroup: Nicole Kidman and @MariaSharapova take the stage at the #Double11 gala! https://t.co/QsK20OYJdH +11/10/2017,Sports_celeb,@MariaSharapova,"About to go live in front of an 300MIL+ tv audience in 🇨🇳 for #Double11 @AlibabaGroup Tune in, I'm in a running co… https://t.co/8nhvuvjBJp" +11/10/2017,Sports_celeb,@MariaSharapova,An honor meeting Jack Ma at @AlibabaGroup #Double11 event today. Thank you for inviting me back to Shanghai! 🇨🇳 https://t.co/CaI8joukKy +11/10/2017,Sports_celeb,@MariaSharapova,Last night at rehearsals for Double 11 event in 🇨🇳...was napping 2 minutes prior to this 📸 so the fog makes sense..… https://t.co/YCPRNywthc +11/08/2017,Sports_celeb,@MariaSharapova,RT @Sugarpova: Back in stock!#sporty https://t.co/R0MHdW0B7E https://t.co/LDvPFzpHUy +11/08/2017,Sports_celeb,@MariaSharapova,"See you soon, Shanghai 🇨🇳 🤗@AlibabaGroup #Double11 https://t.co/RpuaZ1Kjge" +11/07/2017,Sports_celeb,@MariaSharapova,"RT @voguemagazine: ""This is a matter of life and death,"" says @MonicaAce93. https://t.co/pXOSGSVspp" +11/06/2017,Sports_celeb,@MariaSharapova,RT @AlibabaGroup: We're so excited to have @MariaSharapova at our #Double11 gala this year! The countdown to the biggest shopping day in th… +11/03/2017,Sports_celeb,@MariaSharapova,Just in time for the Oscars 🤷🏼‍♀️ https://t.co/0WOtSVR6sL +11/02/2017,Sports_celeb,@MariaSharapova,RT @SportByFort: One of the best brands in sport. Worth reading the @adage article about @MariaSharapova - https://t.co/Fn4TgBL76z https://… +11/02/2017,Sports_celeb,@MariaSharapova,🐢🌊 https://t.co/xgrYvXi6WA +10/31/2017,Sports_celeb,@MariaSharapova,RT @artnet: Is Nike the New Medici? Curator Neville Wakefield Says Brands Are Our 21st Century Patrons: https://t.co/0fAkHkXMkj https://t.c… +10/31/2017,Sports_celeb,@MariaSharapova,Congrats @LewisHowes on your book launch today! I know a few people that could use this book #MaskOfMasculinity 😜 https://t.co/K8XwCEkXe0 +10/31/2017,Sports_celeb,@MariaSharapova,In case you missed it - photos by Robert Trachtenberg from @adage shoot. Story here: https://t.co/2knQyRW4iH https://t.co/CTamKKujkR +10/31/2017,Sports_celeb,@MariaSharapova,When they say you can't do #2inarow for the 🎥...#HORSEchamp 🏆😏 https://t.co/7jrx7KCrqf +10/30/2017,Sports_celeb,@MariaSharapova,Take me there 🙃🙋🏼 https://t.co/6yUfYhI3Ph +10/30/2017,Sports_celeb,@MariaSharapova,RT @Meisarch: Announcing my new partnership with @MariaSharapova today. Very excited to be working with her! https://t.co/vajleFZMjm +10/30/2017,Sports_celeb,@MariaSharapova,"RT @adage: .@MariaSharapova returns to to winning, and building her brands https://t.co/Z9io5tOkk5 https://t.co/IsSlDeStFv" +10/29/2017,Sports_celeb,@MariaSharapova,Reunited #🍟 https://t.co/vDwlTAnH4s +10/27/2017,Sports_celeb,@MariaSharapova,"RT @PlayersTribune: Unidos por Puerto Rico 🇵🇷 + +This week @MariaSharapova and @MonicaAce93 helped distribute supplies in Puerto Rico: https:…" +10/27/2017,Sports_celeb,@MariaSharapova,RT @CNNEE: .@MonicaAce93 y @MariaSharapova apoyan a Puerto Rico tras huracán María https://t.co/xJJ2MvW4W5 https://t.co/45dFxH4zFN +10/26/2017,Sports_celeb,@MariaSharapova,"My @CFDA event diary, as seen in @voguemagazine https://t.co/T9EpbOCdTm" +10/26/2017,Sports_celeb,@MariaSharapova,CFDA Fashion Fund Show/Vogue wearing @DerekLamNYC https://t.co/wfjtVTgt3A +10/26/2017,Sports_celeb,@MariaSharapova,RT @TennisChannel: .@MariaSharapova and @MonicaAce93 lend a hand to Hurricane Maria victims: https://t.co/mPa4RPqwtf https://t.co/ikpiF1sXeg +10/25/2017,Sports_celeb,@MariaSharapova,Thank you! 🇵🇷 https://t.co/zEPAjjUHy5 +10/25/2017,Sports_celeb,@MariaSharapova,"RT @PlayersTribune: On Monday, @MariaSharapova and @MonicaAce93 helped distribute supplies to Hurricane Maria victims. + +How to help: https:…" +10/25/2017,Sports_celeb,@MariaSharapova,Ready for @adage 💃 https://t.co/AgT28YEzt9 +06/30/2018,Sports_celeb,@MiaHamm,"RT @NWSL: Look who's here! 👋 @HeatherOReilly catches up with @katemarkgraf before her new team takes the pitch. + +#ORLvNC | #NWSL https://t…" +06/30/2018,Sports_celeb,@MiaHamm,RT @slammersfc: National Champions 3 out of the last 4 seasons!!! https://t.co/hP4XMUiCQw +06/29/2018,Sports_celeb,@MiaHamm,RT @DrColleenHacker: https://t.co/3iiPJVgYIc +06/28/2018,Sports_celeb,@MiaHamm,"RT @PlayersTribune: We remember the life of the legendary Pat Summitt today. + +https://t.co/mpEnH5mDno" +06/24/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: Thank you to all the women of The 3252 and LAFC who help bring life to the beautiful game. + +#LAFC +#The3252 +#ShoulderToShould…" +06/24/2018,Sports_celeb,@MiaHamm,RT @caitlinbuckley2: Briana Scurry received a lifetime achievement award from the Black Soccer Membership Association at halftime +06/22/2018,Sports_celeb,@MiaHamm,RT @KristineLilly: So fun to be @Steward event in Salt lake w/ these two @beckysauerbrunn @KyleBeckerman https://t.co/O1lnh3rIQR +06/22/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: ARoooooooo!!!! https://t.co/jvI5Vy1Myn +06/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: WHAT A FINISH! + +On to the @opencup Quarterfinals to host @TimbersFC. https://t.co/goGkCVWKP6" +06/21/2018,Sports_celeb,@MiaHamm,"RT @openStadiums: Women/families finally entered to Azadi stadium after 37 years of ban, to watch #IRNESP on screen. https://t.co/oSBXHMWI…" +06/19/2018,Sports_celeb,@MiaHamm,RT @DrColleenHacker: The Eternal Light Of Tony DiCicco @PositiveCoachUS https://t.co/5lZ0RrUKQk +06/19/2018,Sports_celeb,@MiaHamm,"RT @Lcole22: Still feels like yesterday we lost this great man. An amazing father, coach, leader, my mentor and friend. Miss you everyday.…" +06/19/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: My Dad died a year ago. My brothers and I have spent the last 365 sharing the lessons of his life. As we work to incorpo… +06/19/2018,Sports_celeb,@MiaHamm,"RT @BeastModeSoccer: to me Tony personified a great coach. A phenomenal amount of knowledge, a winner, yet would sit down for a coffee with…" +06/18/2018,Sports_celeb,@MiaHamm,"Congratulations to you and the family , Alex. https://t.co/EtwZzN0yMQ" +06/18/2018,Sports_celeb,@MiaHamm,RT @ussoccer_mnt: Look back on the #USMNT's historic 1950 upset of England through the eyes of Walter Bahr » https://t.co/YXQee9Z3vH https:… +06/18/2018,Sports_celeb,@MiaHamm,RT @FIFAWWC: Wow what a hectic day! Just finished an interview with @EeshFerguson an Aussie International who played at 2 @FIFAWWC and 1 @O… +06/18/2018,Sports_celeb,@MiaHamm,"RT @RobStoneONFOX: Walter Bahr, thank you for all you did to kickstart US Soccer history. Your contributions will be felt for generations.…" +06/18/2018,Sports_celeb,@MiaHamm,RIP Mr Bahr. He was a true gentleman and ambassador of our game. He always took the time to say hello and ask how y… https://t.co/9zoVbQFoV0 +06/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Come support your Club & Country. + +Wear your Black & Gold gear tomorrow to @yeoldekingshead for the official #LAFC @FIFAWorldCup…" +06/17/2018,Sports_celeb,@MiaHamm,RT @LAFC: Happy #FathersDay from LAFC. https://t.co/tbUwTZVwC0 +06/17/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: And a special acknowledgement to my brother Alex, celebrating his First after he and Nicole welcomed Aiden earlier this…" +06/17/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Watch @11carlosV and @miseleccionmxEN take on Germany tomorrow at the official #LAFC @FIFAWorldCup Watch Party. + +📍 The Parlor +📆…" +06/16/2018,Sports_celeb,@MiaHamm,"Congratulations, Aly!! Leading the way. https://t.co/NdfAfOg4qf" +06/16/2018,Sports_celeb,@MiaHamm,RT @alywagner: You guys are the cutest! Thank you for the tears🙈 and thank you for supporting me in this. It is too much. 😘 https://t.co/AT… +06/16/2018,Sports_celeb,@MiaHamm,RT @alexmorgan13: I’d like to thank the soccer gods for blessing us with beautiful soccer for the last 90 minutes. #PORvESP +06/15/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: TeamFirst is heading to @BerkySoccer in 9. days. Very few spots are left, but if you are a female soccer player going into…" +06/15/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Wear your Black & Gold gear and come support your Club & Country. + +Join us at the #LAFC @FIFAWorldCup Watch Parties. + +💻 https://…" +06/15/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Immigrants Feed America +w @chefjoseandres https://t.co/AydEDGiDoF" +06/15/2018,Sports_celeb,@MiaHamm,What team plays this formation? https://t.co/qL56RhsAb4 +06/15/2018,Sports_celeb,@MiaHamm,"RT @Dodgers: Just announced: @LAFC Night at Dodger Stadium on August 20! + +Purchase a ticket pack at https://t.co/057G22NH4S to get this exc…" +06/15/2018,Sports_celeb,@MiaHamm,RT @MenInBlazers: Godspeed to @RobStoneONFOX and @AlexiLalas and all our colleagues at Fox. To broadcast a World Cup is both an honor and a… +06/13/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: I so love this. I second everything here @Catchin24. #pureclass https://t.co/GMtoe3OPGp +06/13/2018,Sports_celeb,@MiaHamm,RT @ussoccer_mnt: 1994 laid the foundation. 2026 will ignite the passion of a new generation. Welcoming the @FIFAWorldCup back to our home… +06/13/2018,Sports_celeb,@MiaHamm,"RT @united2026: Diego Lainez 🇲🇽 +Brianna Pinto 🇺🇸 +Alphonso Davies 🇨🇦 + +The future of our game knows no limits in North America. #United2026 h…" +06/13/2018,Sports_celeb,@MiaHamm,"RT @FOXSoccer: What a moment! + +@AlexiLalas and @RobStoneOnFOX give their immediate reaction to the USA-Mexico-Canada united bid winning th…" +06/13/2018,Sports_celeb,@MiaHamm,Congrats to the entire committee for your tireless work . https://t.co/siR6UhiMs2 +06/13/2018,Sports_celeb,@MiaHamm,"RT @ESPNFC: The moment Canada, Mexico and the U.S. discovered they would be hosting the 2026 World Cup. https://t.co/BNnAbF9EFh" +06/13/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: 👑s of @Concacaf! + +Introducing your undefeated 2018 #CU17W Champions! 🏆🎉 https://t.co/rqA97L9yDg" +06/12/2018,Sports_celeb,@MiaHamm,RT @EeshFerguson: Absolute magician and the reason I started supporting the Gunners. https://t.co/PLmcXJ0s5w +06/11/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: 🎶 We're going to the 'ship! 🎶 + +U-17 WWC berth clinched, now we play for the #CU17W 🏆 on Tuesday! https://t.co/AvebPTy0oZ" +06/11/2018,Sports_celeb,@MiaHamm,RT @Concacaf: Haiti 2 - 3 United States Highlights | @fhfhaiti @ussoccer #CU17W https://t.co/xVBuwOgFxm +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: INSANE! + +#The3252 +#LAFC +#ShoulderToShoulder https://t.co/uRn15msvcv" +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC: COMING HOME WITH 3 POINTS + +#SJvLAFC https://t.co/4GHOGXWoOB" +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC: 90+7’ | GOOOOOOOOOAAALLLL JOAO MOUTINHO!! + +MOUTINHO and LAFC have stolen 3 points in San Jose! + +#SJvLAFC 3-4 https://t.co/ouEsj…" +06/09/2018,Sports_celeb,@MiaHamm,RT @ChancellorFolt: Congratulations @DiamondHeels! What a game - onward to OMAHA! #GDTBATH https://t.co/D9oIaVQ92S +06/09/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Congratulations to @warriors and #LAFC owners Peter Guber, Kirk Lacob, Harry Tsao, Rick Welts, and Brandon Schneider on another @…" +06/08/2018,Sports_celeb,@MiaHamm,"RT @cnnbrk: Anthony Bourdain is dead. The chef, storyteller and Emmy-winning host of CNN's ""Parts Unknown"" is dead of suicide at age 61. ht…" +06/08/2018,Sports_celeb,@MiaHamm,"RT @CBSSports: He'll never forget it. Washington will never forget it. Hockey will never forget it. + +Ovi, finally, lifts the Cup. https://…" +06/07/2018,Sports_celeb,@MiaHamm,"RT @NWSL: 3️⃣6️⃣5️⃣ days to go until the first kick of #FIFAWWC! + +Everything you need to know ➡️ https://t.co/UvWoTsUSnt https://t.co/XqvIP…" +06/07/2018,Sports_celeb,@MiaHamm,"I miss my coach, I miss my friend. https://t.co/1ReR5I0WgL" +06/07/2018,Sports_celeb,@MiaHamm,"RT @ASRomaEN: A love that transcends time, a passion beyond measure. 💛❤️ + +Happy birthday #ASRoma, 91 years young! 🐺 https://t.co/PZsK0zLJFb" +06/07/2018,Sports_celeb,@MiaHamm,RT @KristineLilly: Thank you to my hometown for this wonderful honor and great to meet these young strong girls! #WiltonCt. #hometown https… +06/07/2018,Sports_celeb,@MiaHamm,RT @Ath4Hope: Wow! https://t.co/MYYEqHHzuw +06/04/2018,Sports_celeb,@MiaHamm,"RT @LAFC: It's official: @11carlosV and @omargaber are headed to the @FIFAWorldCup. + +🇲🇽🇪🇬 https://t.co/baifg9Sk8k https://t.co/w5AmHUagAn" +06/01/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: One week until #CU17W resumes in Florida! Three games stand between the U-17 #USWNT and the World Cup. + +https://t.co/vyyX…" +06/01/2018,Sports_celeb,@MiaHamm,"RT @anthonydicicco: Is there a soccer club (youth or adult) in Flint, Michigan? Who knows someone? Or knows someone who knows someone? I wa…" +05/31/2018,Sports_celeb,@MiaHamm,"RT @GrantWahl: Congrats to new National Soccer Hall of Fame members: Brad Friedel, Tiffeny Milbrett, Cindy Parlow Cone, Don Garber, Dr. Bob…" +05/31/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: MOOD! #USWNT #NSHOF18 https://t.co/06tZX1WB4m +05/31/2018,Sports_celeb,@MiaHamm,"Congrats, Millie. So skilled, so smooth, and so deserving of this honor. 👏🏼🇺🇸 https://t.co/rlTgm6gUUY" +05/31/2018,Sports_celeb,@MiaHamm,RT @katemarkgraf: I am so excited and honored to be inducted into… https://t.co/bXfls31jTW +05/31/2018,Sports_celeb,@MiaHamm,"RT @ncwomenssoccer: It's a great day to be a Tar Heel. Congratulations to 3-time National Player of the Year, 2-time NCAA champion and 2-t…" +05/31/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_wnt: The @soccerhof came calling! + +Congrats to World Cup Champ and two-time Olympic 🥇 medalist @cone_cindy on her #NSHOF18 ind…" +05/31/2018,Sports_celeb,@MiaHamm,RT @katemarkgraf: Honored to be part of class of @MSHOF 2018 https://t.co/Lwm9YD0F8q +05/30/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Amazing. https://t.co/MOdKcM54UG +05/30/2018,Sports_celeb,@MiaHamm,"RT @AbbieNews8: “I believe I can beat cancer, I believe in magic”- this brave princess Kalea has a rare form of Leukemia. Since she is mixe…" +05/30/2018,Sports_celeb,@MiaHamm,RT @RandyGyllenhaal: We are spending this morning with Sydney — a 17-year old suffering from Leukemia in Philly. She wants to go to nursing… +05/29/2018,Sports_celeb,@MiaHamm,"RT @AmericanOutlaws: Congrats to @cpulisic_10 our 2017 member-voted AO #USMNT Player of the Year! + +#HereForTheFuture #PuliSICK https://t.c…" +05/28/2018,Sports_celeb,@MiaHamm,RT @LeeNguyen24: Lesgoooo @thewalkerzim what a header! 🇺🇸🇺🇸 +05/28/2018,Sports_celeb,@MiaHamm,RT @RobStoneONFOX: One of my all time favorites when I covered the Mutiny https://t.co/L6JmurrSck +05/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Today and every day, we remember and honor those who gave their lives defending our country. + +#MemorialDay https://t.co/PombDQt2…" +05/27/2018,Sports_celeb,@MiaHamm,"RT @TRongen: While several very generous, loving people have stepped up to be tested for kidney donation, still NO MATCH has been found for…" +05/26/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Matchday 12. + +Gates Open - 5:30pm +Showtime - 6:45pm +Kick Off - 7pm + +#LAFCvDC https://t.co/8jBkPUFITd" +05/26/2018,Sports_celeb,@MiaHamm,RT @Dodgers: Sisters and Olympians @hannahbrandt16 and @marissabrandt22 are here tonight for the #Dodgers’ Sixth Annual Adoptee Night! http… +05/23/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: This just in: The Chef is catering the group date and joining us at the show 😋 +#MoreOfUs +https://t.co/pFmd0rCfKU https://t.…" +05/22/2018,Sports_celeb,@MiaHamm,"So excited to celebrate all the amazing student/athletes tonight in Jackson,MS for the Clarion Ledger Sports Awards." +05/22/2018,Sports_celeb,@MiaHamm,"RT @LAFC: See you tonight, @BVB. + +Catch #LAFCvBVB ⬇️ https://t.co/Zs1ZmwaH2l" +05/21/2018,Sports_celeb,@MiaHamm,"RT @ExtremeSRO: This is one of the most EPIC speeches I’ve ever heard. Thank you @AbbyWambach for reminding us that we are WOLVES, and for…" +05/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Tomorrow night. + +Don't miss #LAFC vs. @BVB at @BancStadium. + +🎟 https://t.co/aYdbx6ciPc + +(🎥 @COPA90US) https://t.co/sEvFRj7BAj" +05/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: 🇧🇪 Congrats, @LaurentCiman23! 🇧🇪 https://t.co/nqCY98fVEF" +05/21/2018,Sports_celeb,@MiaHamm,"RT @FCBarcelona: A legend departs and his legacy begins +#infinit8iniesta https://t.co/AEpefaJQVv" +05/21/2018,Sports_celeb,@MiaHamm,RT @sportsiren: Started crying when I saw this giant @MooreMaya billboard downtown Minneapolis. “No bird soars too high when she soars with… +05/20/2018,Sports_celeb,@MiaHamm,"This ride is for you,Tony! Miss you! @TourdePier 2018 https://t.co/Tf6M7WIYMc" +05/20/2018,Sports_celeb,@MiaHamm,I spy @RobStoneONFOX on stage of @TourdePier . Ride On. +05/20/2018,Sports_celeb,@MiaHamm,Mr @AlexiLalas doing his part @TourdePier https://t.co/wI9wJ65OlN +05/20/2018,Sports_celeb,@MiaHamm,Here in MB and @TourdePier kicking cancer's ass! https://t.co/sGYf9BS9Sm +05/20/2018,Sports_celeb,@MiaHamm,"RT @TourdePier: The big weekend is here!!! Tomorrow we ride to remember those we’ve lost, to celebrate those fighting cancer and to work to…" +05/19/2018,Sports_celeb,@MiaHamm,RT @uncwlax: FINAL FOUR BOUND! Carolina will make its 7th trip to the NCAA semifinals in 10 years. https://t.co/hUHABmUDG7 +05/18/2018,Sports_celeb,@MiaHamm,"RT @CNN: When doctors told him his blood has unique, disease-fighting antibodies, he started donating plasma every week. For 60 years. He’s…" +05/16/2018,Sports_celeb,@MiaHamm,I'm in! https://t.co/WeDJGCQaeV +05/15/2018,Sports_celeb,@MiaHamm,RT @BeTheMatch: Another #ProGolfer just swung into our life-saving mission and joined the registry! Thanks @JordanSpieth…we think you’re pr… +05/15/2018,Sports_celeb,@MiaHamm,"RT @LAFC: ""It's the best feeling in the world."" + +@MarcoUrenaCR on making the @FIFAWorldCup roster for @fedefutbolcrc. https://t.co/LFDawFRq…" +05/14/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: And January 26th, she became a Grandmother to Aiden and she’s incredible at that too! We’re blessed. https://t.co/Sli0TY…" +05/13/2018,Sports_celeb,@MiaHamm,"RT @NWSL: ""It just makes me appreciate what mothers are capable of doing and, I guess, how strong we are."" + +@lifetimetv x @sydneyleroux htt…" +05/11/2018,Sports_celeb,@MiaHamm,"RT @SeedsofPeace: ""With enough faith, time, and tending, the Seeds you all planted will grow, and our children and grandchildren will till…" +05/09/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: YES. YES. YES. The General is the ultimate pro and just so SILKY SMOOTH. Congrats Bob! https://t.co/AJJyq150MA +05/09/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: @thegoalkeeper Thanks for sharing Jonathan. Nice of the @sportsemmys to recognize him. Our family is grateful. +05/09/2018,Sports_celeb,@MiaHamm,"RT @mimiv42: Soccer legend Zhang Ouying is fighting serious illness, please spread the word in the soccer community. She has been devoted…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @BAWSI: In case you weren't able to join us at our event Friday, here is the video we premiered showcasing both our BAWSI Girls and BAWS…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @si_soccer: Along with Fox's Aly Wagner, Telemundo’s Viviana Vila is set to break a broadcast barrier for women by calling a men's World…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @LAFC: More ⚽️ in the Heart of Los Angeles. + +Thank you to everyone who helped build a brand new futsal court at Menlo Avenue Elementary…" +05/08/2018,Sports_celeb,@MiaHamm,RT @espn: This moment between Jrue Holiday and his daughter is everything 😍 https://t.co/cvu8nocYBb +05/06/2018,Sports_celeb,@MiaHamm,RT @ASRomaEN: Club president Jim Pallotta and all at #ASRoma are hoping and praying Sir Alex Ferguson makes a full and speedy recovery afte… +05/05/2018,Sports_celeb,@MiaHamm,RT @moyadodd: Another record broken.... 'cos nobody wants to watch women play football 😉⚽️❤️ #womensfootball https://t.co/BQLWfZ7B2i +05/05/2018,Sports_celeb,@MiaHamm,"RT @AimeeCho4: ""I'M JUST SO THANKFUL"": 19-year-old leukemia survivor Carly Nguyen meets Gerard Bao, the bone marrow donor who saved her lif…" +05/04/2018,Sports_celeb,@MiaHamm,"RT @TourdePier: 12-year-old, 2-time cancer fighter Marley & her family know that the Tour de Pier is more than just an event, it is an amaz…" +05/02/2018,Sports_celeb,@MiaHamm,Congrats!! https://t.co/6KDBpAOwKQ +05/02/2018,Sports_celeb,@MiaHamm,RT @LAFC: Skydive into our home-opener at @BancStadium with the @NavyLeapFrogs! https://t.co/VWLCLV7S23 +05/01/2018,Sports_celeb,@MiaHamm,RT @LAFC: #LAFC and @LAFC3252 do not support or condone the use of offensive language and inappropriate chants. We stand shoulder to should… +04/30/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: I was told Mia is the only female owner in @MLS when in fact there are 3 others (& hopefully that # keeps growing). Kay Raw… +04/30/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Los Angeles, we’re home. + +#LAFCComesHome https://t.co/Fkvu9ShVxM" +04/30/2018,Sports_celeb,@MiaHamm,"RT @BeastModeSoccer: Today we said goodbye, but we know you will always be with us. You made me a better person. Siempre mi hermano. #LoveT…" +04/30/2018,Sports_celeb,@MiaHamm,"RT @LAFC: #LAFCvSEA Player spotlight @LaurentCiman23 + +Presented by @McDonalds https://t.co/rJQ82EGtzP" +04/29/2018,Sports_celeb,@MiaHamm,Game day @LAFC and @BancStadium ! Can't wait to hear @LAFC3252 at our home. We are LAFC! +04/29/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Where to watch #LAFCvSEA + +📆 Today, 4/29 +⏰ 6 PM +📺 @FS1 (ENG) +📺 @FOXDeportes (SP) +📻 @ESPNLosAngeles 710 (ENG) +📻 @980lameramera (S…" +04/29/2018,Sports_celeb,@MiaHamm,RT @PeterGuber: our goal has been to make @LAFC a club that reflects the lifeblood of #LosAngeles … the creativity resilience energy and pa… +04/29/2018,Sports_celeb,@MiaHamm,RT @pkedit: Friday's Tigres-Monterrey game (Liga MX Femenil) set a modern record for the largest crowd at a domestic women's match. Seven o… +04/28/2018,Sports_celeb,@MiaHamm,"RT @socceramerica: Sarina Wiegman, former @ncwomenssoccer teammate of @MiaHamm of @KristineLilly, is steering Dutch women's team to new hei…" +04/28/2018,Sports_celeb,@MiaHamm,"RT @T3Aus: The legends are humble. And that’s why they’re greats of the game + +“When I was 13 years old, my father fled his salary for 3 mon…" +04/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: In loving memory of #23 Tommy Mark, an original member of the first @LAFCAcademy team in Club history. + +To donate to the Tommy M…" +04/27/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: This is the real stuff from @Jrue_Holiday11! When you know what matters and you infuse love into everything you do, you…" +04/27/2018,Sports_celeb,@MiaHamm,RT @NBCSports: .@usahockey's @HilaryKnight showed her grandma her gold medal and the reaction was ❤️❤️ https://t.co/HGON4jly51 +04/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: Thanks for the housewarming party @lafc, you haven’t seen anything yet. On Sunday, Los Angeles will never be the same. +#Shou…" +04/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Let's all have fun on Sunday. + +Please be safe and respectful and abide by the Fan Code of Conduct. + +📰 https://t.co/4OjyCSwQX2 + +#L…" +04/25/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: So grateful for moments like this one from February, 2017. My thoughts and prayers are with Dick’s family. His wife is o…" +04/25/2018,Sports_celeb,@MiaHamm,RT @11carlosV: Estoy listo para jugar con los @Dodgers ⚾️⚾️⚾️ ( no la llegue 🤣🤣🤣) https://t.co/s9djTY6CPD +04/25/2018,Sports_celeb,@MiaHamm,"RT @JulieFoudy: Yes indeed. And all for a great cause. Maybe even @brandichastain will re-enact Rose Bowl July 10, 1999. #justsayin https:/…" +04/23/2018,Sports_celeb,@MiaHamm,"RT @LAFC: What's in store at our home-opener this Sunday. + +The #LAFC Watch Party at @BancStadium, presented by @Delta and @Aeromexico https…" +04/22/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Shoulder to shoulder at @BancStadium + +#LAFC https://t.co/MB4p95X2JR" +04/22/2018,Sports_celeb,@MiaHamm,RT @BeastModeSoccer: Thank you @LAGalaxy for Tommys minute of applause. Respect 👊 https://t.co/WjESffJ4NW +04/22/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: When she played she didn’t talk much. But when she did, her teammates listened. Now, she doesn’t tweet much, but Joy is…" +04/21/2018,Sports_celeb,@MiaHamm,RT @frankmSounders: #OTD 1998 – FIFA announce that Seattle's Michelle Akers–still an active player who would win a 2nd WC a year later–to r… +04/21/2018,Sports_celeb,@MiaHamm,RT @LAFC: LAFC complete the comeback in Montreal to end a six-game road trip with four wins. https://t.co/s5FuvzTXkm +04/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Fulltime whistle. + +#MTLvLAFC 3-5 https://t.co/nudVKqSNsV" +04/21/2018,Sports_celeb,@MiaHamm,RT @WSUasa: Kelly Smith has Chance to Score and then Heads the ball to Raul to score the opening Goal in the Match for Solidarity featuring… +04/21/2018,Sports_celeb,@MiaHamm,RT @ussoccer_wnt: RT if this made you smile 😊 https://t.co/NbCvv20XBn +04/20/2018,Sports_celeb,@MiaHamm,RT @RobStoneONFOX: This hurts. Bad. https://t.co/4jHGNtvlD9 +04/20/2018,Sports_celeb,@MiaHamm,RT @LAFC3252: The time has finally arrived! Meet your fellow #LAFC supporters as The 3252 marches with chants and drums into our new home b… +04/20/2018,Sports_celeb,@MiaHamm,"RT @UEFA: Tomorrow, a galaxy of stars, both men and women, will line up in support of charity at the first ever #MatchForSolidarity in Gene…" +04/20/2018,Sports_celeb,@MiaHamm,RT @TomPennLAFC: The Banc getting louder and louder by the second! #LAFC #the3252 https://t.co/Iz9ezO3Ul6 +04/19/2018,Sports_celeb,@MiaHamm,RT @ussoccerfndn: ICYMI- #USWNT stars @lindsaytarpley and @LoriLindsey6 recently joined our team as ambassadors! Check out their bios: http… +04/18/2018,Sports_celeb,@MiaHamm,"RT @ExpoOriginals: We are heartbroken to hear of the passing of young Tommy Mark + +Tommy was an LAFC Academy original, responsible for some…" +04/18/2018,Sports_celeb,@MiaHamm,RT @MayorOfLA: L.A. is a global sports capital — and a city where teams find a home and put down roots. Congratulations @LAFC on opening yo… +04/18/2018,Sports_celeb,@MiaHamm,RT @LAFC: First training at @BancStadium 👌 https://t.co/IddtoXpwuA +04/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: We couldn't have done this without you, @MayorOfLA! https://t.co/TF1k2LBrcf" +04/18/2018,Sports_celeb,@MiaHamm,RT @MagicJohnson: .@LAFC @BancStadium https://t.co/HirIe51IDP +04/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Good to be home. + +#LAFC https://t.co/EqxAaeWinL" +04/18/2018,Sports_celeb,@MiaHamm,RT @BarackObama: Our statement on the passing of Former First Lady Barbara Bush: https://t.co/MhTVYCL9Nj +04/18/2018,Sports_celeb,@MiaHamm,RT @matthewamiller: This was such a moving tribute by @NicolleDWallace. https://t.co/HXAAfcGrLz +04/18/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: Tomorrow. Register for this one. Can't begin to tell you how much I've learned from @BeastModeSoccer over the past 5 yea… +04/17/2018,Sports_celeb,@MiaHamm,We will be cheering you on! Go USA! https://t.co/DjLWINEkeU +04/17/2018,Sports_celeb,@MiaHamm,"RT @AlyssaNaeher: Absolutely one of the best, love this! 🙌😊 https://t.co/De56GCsKdH" +04/17/2018,Sports_celeb,@MiaHamm,"RT @TeamUSA: In true @TatyanaMcFadden fashion, the Paralympic legend claims her 5️⃣TH #BostonMarathon win AND record-setting 22nd victory i…" +04/16/2018,Sports_celeb,@MiaHamm,"RT @NBCOlympics: .@TatyanaMcfadden wins her 5th #BostonMarathon push rim race! + +Catch all the action NOW on @NBCSN https://t.co/7X5j8UX9gM" +04/15/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: https://t.co/P6CthFCVJF +04/14/2018,Sports_celeb,@MiaHamm,RT @LAFC: Back on track. https://t.co/rpcahyYJ9K +04/12/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: Less than 4 weeks away from our camp in Knoxville, TN. Let's keep the momentum going from our great camp last weekend in H…" +04/12/2018,Sports_celeb,@MiaHamm,"RT @LAFC: One Club. One family. + +#LAFC https://t.co/9snowhXE4k" +04/11/2018,Sports_celeb,@MiaHamm,RT @Yael_Averbuch: Our game on May 5 in Portland is part of a fundraiser for the Crohn’s & Colitis Foundation! Nearly 1 in 200 Americans li… +04/11/2018,Sports_celeb,@MiaHamm,RT @sethmeyers: Just the best https://t.co/P2RU7UD2vj +04/11/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Talia!!!!!! https://t.co/dXxCoN1ptP +04/10/2018,Sports_celeb,@MiaHamm,"RT @ASRomaEN: 83' - GOOOOOOOAAAAAAAAAAALLLLLLLLLLLL!!!!!!!!!!!! KOOOOOOSTTAAAAASSSS!!!!!! YEEEEEEEEEEEEEESSSSSSSSS!!!!!!!!!!! + +#RomaBarca…" +04/10/2018,Sports_celeb,@MiaHamm,RT @LRUWSOC: Amazing experience having the @TeamFirstSA on LR's campus this weekend. 🐻⚽️ #teamfirst #gobears #soccerlegends @KristineLilly… +04/09/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: Thank you Hickory! What an awesome weekend of camp. Swipe➡️to see our campers of the day,… https://t.co/h1UEymt3Er" +04/08/2018,Sports_celeb,@MiaHamm,RT @ChancellorFolt: Today friends & family came together to celebrate & remember the remarkable life & legacy of the legendary Woody Durham… +04/08/2018,Sports_celeb,@MiaHamm,Congrats @CarliLloyd on 100. Amazing accomplishment. Go USA! +04/08/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: This is amazing. Coyner!!!! https://t.co/H8gB07nOQi +04/07/2018,Sports_celeb,@MiaHamm,"RT @MonAfterMasters: The Dye Club at Barefoot Resort is looking 💯 per usual! Getting ready for the MOST FUN DAY of the YEAR! +#MAM2018 https…" +04/07/2018,Sports_celeb,@MiaHamm,RT @JSB_TV: I used to live in Saskatchewan and cover the Humboldt Broncos. I always felt enveloped in the widespread love and support from… +04/06/2018,Sports_celeb,@MiaHamm,RT @moyadodd: Another historic moment in Jordan ... the Women's Asian Cup comes to West Asia #WAC2018 ⚽️❤️ https://t.co/dgUQjrVZI1 +04/05/2018,Sports_celeb,@MiaHamm,Here we go @ussoccer_wnt ! +04/05/2018,Sports_celeb,@MiaHamm,"RT @EPFinitiative: After a 90km football trek across Jordan to promote gender equality in sport, on April 5 we’ll play a match at the lowes…" +04/05/2018,Sports_celeb,@MiaHamm,"RT @NWSL: Raise your hand if you're ready for #USAvMEX tonight. + +⏰ 7:30 p.m. ET +🏟️ @EverBankField +📺 @FS1/UDN + +🇺🇸 roster: https://t.co/w…" +04/05/2018,Sports_celeb,@MiaHamm,RT @EPFinitiative: It’s game day! 🇺🇸: Tune into @SportsCenter at 745am ET/145pm Jordan time see our players right before we kickoff and set… +03/31/2018,Sports_celeb,@MiaHamm,RT @LAFC: .@LAFC3252 is ready 👌 https://t.co/2lSC0NlBt8 +03/31/2018,Sports_celeb,@MiaHamm,RT @NWSL: #NWSL ❌ 3️⃣ for you today. https://t.co/dxwAVJCdA2 +03/31/2018,Sports_celeb,@MiaHamm,RT @MyaMelody7: I really hope more people become familiar with @gracewebermusic.. her new track is heavenly. https://t.co/gSYpjF47Ov +03/31/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Have fun tomorrow. + +Be loud and be safe. ✌️ https://t.co/wOUM3zObe3" +03/28/2018,Sports_celeb,@MiaHamm,Legend! https://t.co/7m7PhNnyHn +03/28/2018,Sports_celeb,@MiaHamm,RT @MLS: Happy birthday to the one and only Matt Reis! 🎉 https://t.co/nbybB5gQjp +03/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Come by to grab some #LAFC gear and meet @Tymiller01, @thewalkerzim, @CMallace10, and @aokovar! https://t.co/4dgMYTl82q" +03/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC: .@AndreHorta8 is Black & Gold. + +@SLBenfica ➡️ #LAFC + +📰 https://t.co/SYO2IrENp1 https://t.co/HEaQUh5mKo" +03/27/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_mnt: Good morning from Cary! Settle in for 90 minutes tonight on @FS1, @UniMas & UDN. Match preview » https://t.co/nmrZl5qQ6t…" +03/27/2018,Sports_celeb,@MiaHamm,"RT @SoccerGrlProbs: #Repost @rubytex.soccer +・・・ +Who else is PUMPED for the new SGPxNIKE shirts?! 🙋🏼😍Go get yours at https://t.co/iwaPWut5j…" +03/26/2018,Sports_celeb,@MiaHamm,RT @RobinRoberts: Incredibly thankful to all those who register to be a bone marrow donor. Unfortunately almost half don't go through w/ th… +03/25/2018,Sports_celeb,@MiaHamm,"RT @SportsCenter: Not long after leading Butler to back-to-back NCAA title games, Andrew Smith lost his fight with cancer. Today his legacy…" +03/25/2018,Sports_celeb,@MiaHamm,RT @longlivekcx: I know for a fact coach feis would be so proud of all of us. https://t.co/xySzuB5tBW +03/24/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Good morning. +I’m really trying not to sing @BenSPLATT’s part today. +#MarchForOurLives #FoundTonight https://t.co/nScP5kDX…" +03/24/2018,Sports_celeb,@MiaHamm,RT @mariaCBS5: Meet Baby Bruno. He was born with a rare immunodeficiency condition that attacks the blood cells. Only a bone marrow transpl… +03/24/2018,Sports_celeb,@MiaHamm,RT @longlivekcx: happy birthday to this sweet angel. Today I march for you. #marchforourlives #neveragain https://t.co/fc6cfAFImh +03/23/2018,Sports_celeb,@MiaHamm,RT @NCFC_Youth: We're excited to welcome former @ussoccer_wnt team player and @NWSL coach @cone_cindy as the newest member of our #NCFCFam!… +03/23/2018,Sports_celeb,@MiaHamm,RT @alywagner: And so it begins. 🤩 https://t.co/XJLyaH5Ip7 +03/22/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_wnt: ⏰ 92nd minute +⚖️ Tie game +🤯 @laurenholiday12 + +#USAvMEX renews two weeks from tonight in Jacksonville » https://t.co/Tg55m…" +03/22/2018,Sports_celeb,@MiaHamm,RT @Lin_Manuel: Yeah we will. #MarchForOurLives https://t.co/wIm1YjjEHP +03/21/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Go get it sister! This is so great... congrats! https://t.co/eUsO6nqdkV +03/21/2018,Sports_celeb,@MiaHamm,RT @Austin_Police: APD is asking the public to remain vigilant and report anything suspicious. If you come across ANYTHING that looks suspi… +03/21/2018,Sports_celeb,@MiaHamm,RT @SportsCenter: He's waited his whole life for this moment! #SCtop10 https://t.co/rSIFefLNAC +03/21/2018,Sports_celeb,@MiaHamm,RT @mduggan10: 👏🏻👏🏻👏🏻👏🏻 https://t.co/q7iNUqv5Rd +03/20/2018,Sports_celeb,@MiaHamm,"RT @BeTheMatch: In 2016, Riley was diagnosed with Acute Lymphoblastic Leukemia (ALL) and is searching for her match. Riley is known for he…" +03/20/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Good morning 🌍! +Here's the music video for Found/Tonight, your March #Hamildrop! +#MarchForOurLives #FoundTonight +https://t…" +06/23/2018,Sports_celeb,@HollyHolm,Such a fun day!!!! Getting dunked with my peeps @JacksonWinkMMA for incredablemma . https://t.co/6GJ4iUJOkv +06/23/2018,Sports_celeb,@HollyHolm,Come join me now @JacksonWinkMMA !! Fundraiser for incredablemma ! I’ll be there til 2! I’m getting dunked in the d… https://t.co/287YDzcS2h +06/23/2018,Sports_celeb,@HollyHolm,⚔️ 🗡 🤷🏼‍♀️🤷🏼‍♀️ https://t.co/bINNy9UgbG +06/22/2018,Sports_celeb,@HollyHolm,My first time to do 3 muscle ups in a row and I was just kinda proud. Now time to work on 4.. 😁 #flexfriday teamtur… https://t.co/LTRbiEvTNx +06/22/2018,Sports_celeb,@HollyHolm,My first time to do 3 muscle ups in a row and I was just kinda proud. Now time to work on 4.. 😁 #flexfriday teamtur… https://t.co/tWQnPgfJSc +06/21/2018,Sports_celeb,@HollyHolm,I was told it was as #internationalselfieday… https://t.co/VB2b22H9PJ +06/21/2018,Sports_celeb,@HollyHolm,Suuuuuuper duuuuuper movie!!!! Got to watch… https://t.co/JPzNSWGKcx +06/19/2018,Sports_celeb,@HollyHolm,These Sandia mountains have the best trails. I… https://t.co/eqBxOtV8rN +06/19/2018,Sports_celeb,@HollyHolm,These Sandia mountains have the best trails. I… https://t.co/Kq1sy6mhn9 +06/17/2018,Sports_celeb,@HollyHolm,Happy Father’s Day:) I was blessed with the… https://t.co/z5EsFrputT +06/16/2018,Sports_celeb,@HollyHolm,POSTPONED!!!!!! incredablemma is having a… https://t.co/GMgMhTsqUV +06/15/2018,Sports_celeb,@HollyHolm,I’m getting dunked tomorrow at noon for Adaptive… https://t.co/mfnxwhg06A +06/13/2018,Sports_celeb,@HollyHolm,Feeling happy and enjoying my Wednesday. Wishing… https://t.co/3BeQuv2meo +06/11/2018,Sports_celeb,@HollyHolm,🚤 #sundayfunday https://t.co/Vru60H9lDO +06/10/2018,Sports_celeb,@HollyHolm,Too much love ❤️ https://t.co/Gncqm1weg5 +06/10/2018,Sports_celeb,@HollyHolm,Not enough words to express. I just love my… https://t.co/Wzg3ICHJZm +06/07/2018,Sports_celeb,@HollyHolm,Best open workout partner.....EVER!! #ufc225… https://t.co/VFWBeW0YKg +06/07/2018,Sports_celeb,@HollyHolm,Best open workout partner....... EVER!!!!… https://t.co/cAh3s4XbzL +06/05/2018,Sports_celeb,@HollyHolm,Leaving to Chicago with good feels 🤗 thank you… https://t.co/DuO1qz9ugz +06/02/2018,Sports_celeb,@HollyHolm,Best coach in the world. 👊🏼@mmacoachwink .. last… https://t.co/GwKfs96MRY +05/25/2018,Sports_celeb,@HollyHolm,My little lion 🦁 https://t.co/4OcjZypxdp +05/23/2018,Sports_celeb,@HollyHolm,Just finished a great run in the foothills in… https://t.co/j6BsGN5Sx7 +05/22/2018,Sports_celeb,@HollyHolm,Hope everyone is having a Great Monday! Hope you… https://t.co/ZzRrP8bjV5 +05/01/2018,Sports_celeb,@HollyHolm,“What do you do for strength training?” Is always a common question. I do a… https://t.co/GkXieQCJNt +04/25/2018,Sports_celeb,@HollyHolm,Can’t tell you how much I appreciate the gifts! I am ready to get to work! Here are some… https://t.co/t9TVjimmjE +04/24/2018,Sports_celeb,@HollyHolm,On my way to the local press conference to talk about my upcoming fight #ufc225 in Chicago June… https://t.co/82fb8pNlqA +04/17/2018,Sports_celeb,@HollyHolm,My bud. https://t.co/zLQOxvioHR +04/15/2018,Sports_celeb,@HollyHolm,We here! @jtimberlake #cantstopthefeeling https://t.co/M0mVVwexOR +04/13/2018,Sports_celeb,@HollyHolm,Thursday night looks a little like this 😜 I know I’ve said it a ton ...but... I’ll say it… https://t.co/d3p7A0d30F +04/11/2018,Sports_celeb,@HollyHolm,#happysiblingsday best friends since day one. I am blessed. 🙂they even loved me even when I had… https://t.co/VgqW2ZzUBA +04/04/2018,Sports_celeb,@HollyHolm,"I loved being part of @tiffanyandco and sharing what I feel is strength.. +Strength has many… https://t.co/ghG3qxJOb0" +03/30/2018,Sports_celeb,@HollyHolm,Such a tragedy. Our friends are looking for their son. They went to Fort Morgan for spring break… https://t.co/qkXSPtupUC +03/30/2018,Sports_celeb,@HollyHolm,Late night boxing rounds with the team. Love this team... this family 🙂 https://t.co/JBVPzaz5zM +03/29/2018,Sports_celeb,@HollyHolm,RT @IzzyStyle: Who wants to wrestle on new @DollamurWrestle mats? @HollyHolm @JonnyBones @Cowboycerrone @Showtimepettis @sergiopettis @FloW… +03/26/2018,Sports_celeb,@HollyHolm,My credit card got stolen yesterday and I totally forgot I cancelled it until I went to pay for… https://t.co/mfzLIKxxJt +03/23/2018,Sports_celeb,@HollyHolm,Friends for over 30 years. #blessed with these beautiful souls kaholden3 irishpacker13 https://t.co/H4oJH3D1vn +03/03/2018,Sports_celeb,@HollyHolm,#bootcamp #coaches teamturningpoint shandadiantonio eatfitabq 💪🏼👊🏼🏋️ https://t.co/e7rIxhfizD +02/25/2018,Sports_celeb,@HollyHolm,And just like that. State champions. So proud. @IzzyStyle @mikeb197 @reaIwoods @joeymelendez33… https://t.co/eymMseiGx5 +02/21/2018,Sports_celeb,@HollyHolm,@paulbuceta 📷 https://t.co/eL34u0eHSh +02/19/2018,Sports_celeb,@HollyHolm,My Monday challenge. My first time trying these. Give it a go sometime !:) #mondaymotivation https://t.co/fcj8JwCHHa +02/18/2018,Sports_celeb,@HollyHolm,Yes. Yes to all of this. 👊🏼 thinking of all my teammates tonight. @cowboycerrone @goutithibault… https://t.co/Krs9BvJWZt +02/13/2018,Sports_celeb,@HollyHolm,Feeling a little sluggish today but not every day feels great... no excuses. came in to get some… https://t.co/aVxC75f7m7 +02/12/2018,Sports_celeb,@HollyHolm,Monday 👊🏼 yanamma @JacksonWinkMMA https://t.co/YJysE7GYtc +02/12/2018,Sports_celeb,@HollyHolm,📝 Note to self..... don’t lay on the closet floor in the middle of putting laundry away. You… https://t.co/L1bBRMDCte +02/10/2018,Sports_celeb,@HollyHolm,Yum yum!! Homemade egg rolls for my Friday night!! Thank you Kim! I’m going home to cook these… https://t.co/Ap0L1upN0c +02/08/2018,Sports_celeb,@HollyHolm,Talk about a throwback... here’s my #tbt ... Ran out of time to share more but this is a great… https://t.co/GNPPlLkfdp +02/07/2018,Sports_celeb,@HollyHolm,My finisher for today. Give it a try sometime! 👊🏻 thank you teamturningpoint @alexgard51 https://t.co/vmnrbwJbEL +02/05/2018,Sports_celeb,@HollyHolm,Going to the @jtimberlake concert in Vegas and this halftime show got me wishing April was here… https://t.co/gywGiZiYJG +02/04/2018,Sports_celeb,@HollyHolm,My big brother. Looking out for me since day one. https://t.co/HH3S4UTfrN +02/04/2018,Sports_celeb,@HollyHolm,Meeting up with some of our roots from Iowa. https://t.co/i7BBxULEEe +02/03/2018,Sports_celeb,@HollyHolm,#saturdayvibes https://t.co/2e8iFrdQ3D +02/03/2018,Sports_celeb,@HollyHolm,Fans from the beginning. Brought memories of a pivotal fight in my boxing career. Thank you for… https://t.co/LkyGuWzt3l +02/02/2018,Sports_celeb,@HollyHolm,Come see me at bluecloverdistillery tomorrow and Saturday. (Feb 2nd and 3rd). If you come find… https://t.co/fcRFVvSnKX +01/31/2018,Sports_celeb,@HollyHolm,😁 https://t.co/jys0BRlVo1 +01/31/2018,Sports_celeb,@HollyHolm,Smiling but really we are hurting inside. 😜 love these faces https://t.co/2NyBGxddpS +01/28/2018,Sports_celeb,@HollyHolm,Sporting my hat for bluecloverdistillery Excited to go to scottsdale this weekend!!! Come join… https://t.co/6Erd3WGfW2 +01/27/2018,Sports_celeb,@HollyHolm,I absolutely love meeting new people. Especially when they are simply fabulous. 😊 I really did… https://t.co/FYdw2wlgMM +01/26/2018,Sports_celeb,@HollyHolm,Haven’t been here since my UfC debut. Memories .... https://t.co/w67aLmXqOe +01/23/2018,Sports_celeb,@HollyHolm,Frisbee with the team is about to go down. https://t.co/6OmcI5TH9q +01/23/2018,Sports_celeb,@HollyHolm,Looking forward to my workouts today👊🏻 #teamhitech hitechpharma https://t.co/urKeqBKYeA +01/21/2018,Sports_celeb,@HollyHolm,It’s a beanie and coffee kind of day. Well... every day is a coffee kind of day 😜 but it seems… https://t.co/24Kn3lBbs2 +01/20/2018,Sports_celeb,@HollyHolm,A throwback for treesa321 birthday from our epic trip to Cancun. Love you T! https://t.co/M7VtQwvTae +01/16/2018,Sports_celeb,@HollyHolm,My Monday night.... watching Ratatouille and eating ice cream sandwich...es. 😬😋 and yes....… https://t.co/bES3rZVUto +01/13/2018,Sports_celeb,@HollyHolm,#teamhitech hitechpharma https://t.co/ahKuC7jFOv +01/07/2018,Sports_celeb,@HollyHolm,Ice cream date with these special girls 😊 https://t.co/IIPmQFit24 +01/06/2018,Sports_celeb,@HollyHolm,Winks Gym on Paseo Del Norte and Wyoming! 9 am. Be there! Get a good workout in to start your… https://t.co/NZ0vm4pY1m +12/28/2017,Sports_celeb,@HollyHolm,Fight week #ufc219 @ufc https://t.co/mf1mPFrA8s +12/25/2017,Sports_celeb,@HollyHolm,Merry Christmas 🎄 🎁!! @JacksonWinkMMA https://t.co/PxXXIpqONW +12/25/2017,Sports_celeb,@HollyHolm,Love these girls and this time of year❤️ https://t.co/4cgjwWc3rW +12/24/2017,Sports_celeb,@HollyHolm,My team. My coaches. This is only a portion of who has helped me prepare. My whole team is the… https://t.co/p8myXgPc7W +12/22/2017,Sports_celeb,@HollyHolm,34 degrees and dark but I actually enjoyed my late night run. #teamhitech hitechpharma https://t.co/PUQ77MTSps +12/08/2017,Sports_celeb,@HollyHolm,A little core finisher work for #flexfriday. Try it sometime. 👊🏻 today’s finisher was 4 sets of… https://t.co/7m4z70yeWW +12/08/2017,Sports_celeb,@HollyHolm,A little core finisher work for #flexfriday. Try it sometime. 👊🏻 today’s finisher was 4 sets of… https://t.co/0nLMeqiT9l +12/02/2017,Sports_celeb,@HollyHolm,3 Manzano High graduates ! Sending love to the Monarchs in their championship football game… https://t.co/aZdULl9l2i +12/02/2017,Sports_celeb,@HollyHolm,I am surrounded by great people and I am always motivated by my team. Great night of fights at… https://t.co/kYs8oY6a2z +12/02/2017,Sports_celeb,@HollyHolm,"Did everyone else get the memo for nude heels, jeans and a taupe sweater? 🤔😉 swear it wasn’t… https://t.co/vAVX6n4LIX" +12/01/2017,Sports_celeb,@HollyHolm,JacksonWink fight night at Isleta tomorrow night! 7 pm. I promise you.... this fight card is… https://t.co/XDr5zW9x9q +12/01/2017,Sports_celeb,@HollyHolm,Quick 24 hour trip to Detroit. On my way back home to keep on the grind. Getting prepared for… https://t.co/CKYgI196rz +11/30/2017,Sports_celeb,@HollyHolm,"See you soon, Detroit. https://t.co/gTLoOulLww" +11/19/2017,Sports_celeb,@HollyHolm,Going live on Instagram tomorrow evening at 5:15 pm mountain time. check out how I got started… https://t.co/7KKbuXR6ad +11/13/2017,Sports_celeb,@HollyHolm,😎 😎😎 Finley styled my hair too 😉 https://t.co/xfjE3SP8fL +11/12/2017,Sports_celeb,@HollyHolm,When you're on your way to watch the fights and can't decide if it's warm or a little chilly...… https://t.co/PzYCFIa7QG +11/11/2017,Sports_celeb,@HollyHolm,I know it's super late I just wanted to post this picture from Mr. Olympia with the hitechpharma… https://t.co/ViATj6hNg7 +11/09/2017,Sports_celeb,@HollyHolm,I try to explain how great our team and coaches are. I always say they are my family. I say they… https://t.co/Kb1N9KQZmu +11/05/2017,Sports_celeb,@HollyHolm,Love to pester this guy at night. #goodthingheputsupwithme https://t.co/DeTYPzen2X +11/02/2017,Sports_celeb,@HollyHolm,I couldn't be more proud of you abreg_1 . Congratulations to you and the team. You have worked… https://t.co/4D3Dn1pvEd +10/27/2017,Sports_celeb,@HollyHolm,Great time getting to know @mjkeenan and watching him perform at Tingley Wednesday. Thank you… https://t.co/WjegN5AkPX +10/26/2017,Sports_celeb,@HollyHolm,#beforeandafter #sparring #teamhitech hitechpharma https://t.co/xAptApXpME +10/21/2017,Sports_celeb,@HollyHolm,Sending my love to Poland for my teammates tomorrow. I excited to see the hard work pay off. I… https://t.co/qX3foClspH +10/20/2017,Sports_celeb,@HollyHolm,"bluecloverdistillery .....Scottsdale, AZ. Getting closer and closer. I'll keep you updated on… https://t.co/xRUrtqGHc0" +10/20/2017,Sports_celeb,@HollyHolm,A little vacation workout. Gotta love humidity 😅 https://t.co/RcVbWIVlXO +10/18/2017,Sports_celeb,@HollyHolm,At Albuquerque Parq Central doing a podcast.... taking in the view of the sandias and loving… https://t.co/VHDpiFxAB1 +10/17/2017,Sports_celeb,@HollyHolm,When your mom comes over for dinner and brings more old photos. Yes I used to have a perm ;)… https://t.co/woSkZI7Ufr +10/11/2017,Sports_celeb,@HollyHolm,Wednesday wrestling practice 👊🏻 #jacksonwinkmma https://t.co/4ldmIz3ic8 +10/10/2017,Sports_celeb,@HollyHolm,A little down time between sparring and mitt work;) the most procrastinated project ever 😬 I… https://t.co/MH3gq6wE6v +10/06/2017,Sports_celeb,@HollyHolm,Some core work today #flexfriday hitechpharma #teamhitech 👊🏻 https://t.co/p11rQAZ5Rl +10/04/2017,Sports_celeb,@HollyHolm,My finishing set from my workout today. 30 second sprint… https://t.co/5YEMTojNQR +09/30/2017,Sports_celeb,@HollyHolm,It's Friday! 😁 Photo credit @paulbuceta MUA monicakalra https://t.co/nBmHXrmqqy +09/29/2017,Sports_celeb,@HollyHolm,It's Friday !!! 😁 photo credit @paulbuceta https://t.co/yp3u2MdlJP +09/29/2017,Sports_celeb,@HollyHolm,It's Friday!! 😁 photo credit @paulbuceta https://t.co/Zn1na2jbiP +09/25/2017,Sports_celeb,@HollyHolm,Finally got to trap @paulbuceta and get a photo shoot 😁 and awesome to meet @nicolemwilkins… https://t.co/fc77zND5om +09/25/2017,Sports_celeb,@HollyHolm,What a great weekend in Chicago @IzzyStyle grand reopening. It's always great to be here. Now… https://t.co/ulhJMXqrKK +09/16/2017,Sports_celeb,@HollyHolm,On my way to Mr Olympia! Come visit me at booth 512. I'll be there from 11-12:30 and 2-3:30. See… https://t.co/P8DeIflEy1 +09/14/2017,Sports_celeb,@HollyHolm,Going to be talking on JW Raw at noon mountain time today. Come join in on the Jackson Wink… https://t.co/eZnDek4f5B +09/14/2017,Sports_celeb,@HollyHolm,"I took 41 pictures of the kitties tonight.... don't worry, I'm only posting a handful. Hey… https://t.co/wFdN3xklEG" +09/07/2017,Sports_celeb,@HollyHolm,Doing a giveaway for the first person that can answer the question. I'll send the winner a… https://t.co/LfMe6GSr9x +09/06/2017,Sports_celeb,@HollyHolm,A little work from today. 👊🏻 https://t.co/rnh0vdaG4z +09/05/2017,Sports_celeb,@HollyHolm,My brothers are opening a restaurant/distillery and we are sporting our new bluecloverdistillery… https://t.co/Nxh31bzKBF +09/04/2017,Sports_celeb,@HollyHolm,Congratulations munzie03 and brandini26 😊 So blessed to be a part of your beautiful day. https://t.co/I6nZFiwUhz +09/01/2017,Sports_celeb,@HollyHolm,Congratulations yanamma 👊🏻👊🏻 all the hard work paid off. strong work team! @mmacoachwink… https://t.co/QIeVKNd5v3 +08/31/2017,Sports_celeb,@HollyHolm,I was recently given some tools from someone who knew I loved to do projects at home. Thought… https://t.co/KtrYN37WmN +08/30/2017,Sports_celeb,@HollyHolm,Great rounds this morning in wrestling. 👊🏻 https://t.co/Hjy9UtQPBw +08/29/2017,Sports_celeb,@HollyHolm,Doing some work with hitechpharma today. Hoping everybody is having a great Tuesday:) 👊🏻… https://t.co/pB3jECVHwY +08/29/2017,Sports_celeb,@HollyHolm,Getting some work in for hitechpharma today. Hope everyone is enjoying their Tuesday:)… https://t.co/ANI14JK7pj +08/26/2017,Sports_celeb,@HollyHolm,Some different variations of my ring workout today. Dips are getting a little weak at the end… https://t.co/M1vweUL8v3 +08/25/2017,Sports_celeb,@HollyHolm,I did this handstand drill on my story but wasn't long enough and some of you have asked for the… https://t.co/UrdmHtqFmp +08/16/2017,Sports_celeb,@HollyHolm,Good morning ☀️ I'll be going live on collide at 11:30 mountain time. Come join me. I'll be… https://t.co/rFTp44BWO9 +08/15/2017,Sports_celeb,@HollyHolm,Just finished some mitt work with @mmacoachwink at our gym here @JacksonWinkMMA and I'm excited… https://t.co/rjViaaEzkJ +08/15/2017,Sports_celeb,@HollyHolm,In between trainings. Enjoying my Tuesday and hoping everyone is enjoying their day as well.… https://t.co/QPgKU2e7Dt +08/07/2017,Sports_celeb,@HollyHolm,Just got done watching a private screening of The Hitman's Bodyguard with my friends and family.… https://t.co/RXzfuyKXKx +08/04/2017,Sports_celeb,@HollyHolm,👊🏻 https://t.co/p22hMxyrHq +08/04/2017,Sports_celeb,@HollyHolm,Come join me on collide today at 3 pm mountain time !👊🏻👊🏻 download the app and follow me:) https://t.co/hTv54Zh1rf +08/02/2017,Sports_celeb,@HollyHolm,Been doing busy work all day... now off to the gym. Ready to get some of my kind of work in 👊🏻… https://t.co/otQlUnfpsj +07/28/2017,Sports_celeb,@HollyHolm,Hey guys. I am here in Anaheim and Getting pumped for the weekend - be sure to download the… https://t.co/7vPG8ho1FD +07/13/2017,Sports_celeb,@HollyHolm,HAPPY BIRTHDAY gallegos.megan !!!!!!!!! 🎉 🎈 https://t.co/Aq7f47XngL +07/12/2017,Sports_celeb,@HollyHolm,I am extremely proud of @Wrestlingzlife . He has worked so hard and put so much passion into his… https://t.co/0eMnCknKXI +07/04/2017,Sports_celeb,@HollyHolm,Happy 4th everybody! 🇺🇸 I love this country. Have a blessed day. #america https://t.co/k7I9fNuRzn +07/01/2017,Sports_celeb,@HollyHolm,2 for 2.... even with that ugly swing😂 just doing a lil demo work for my brothers restaurant and… https://t.co/Uw3u2CScMu +06/28/2017,Sports_celeb,@HollyHolm,I'm back on the grind trying to be ready for whatever is next. Thank you for your constant… https://t.co/f3LTody1GW +06/24/2017,Sports_celeb,@HollyHolm,Home sweet home. Buster loves taking photos 😜 https://t.co/wfeLssFcil +06/18/2017,Sports_celeb,@HollyHolm,Some of the many beautiful views at the Marina Bay Sands in Singapore. I can't help but feel… https://t.co/s15YHgkjwx +06/15/2017,Sports_celeb,@HollyHolm,One last run around the bay. #ufc #singapore https://t.co/6q2J5RNB0k +06/15/2017,Sports_celeb,@HollyHolm,This guy. Always good to see my friend… https://t.co/gxndMuyud7 +06/13/2017,Sports_celeb,@HollyHolm,"#Repost @IzzyStyle (via @repostapp) +・・・ +Singapore 🇸🇬 #teamholm #izzystyle #barataplata https://t.co/S4yJGhc5IN" +06/12/2017,Sports_celeb,@HollyHolm,Lunch with my favorite ninja and an amazing view over Singapore ... izzystyle where are you ? https://t.co/gkv7eQUyAc +06/11/2017,Sports_celeb,@HollyHolm,Went for a little evening run here in Singapore and found myself running by an orchestra as I… https://t.co/eSNt5nj00M +06/05/2017,Sports_celeb,@HollyHolm,Working with the best coach in the world. @mmacoachwink and thanks for the photobomb… https://t.co/5LvIFfJhaR +06/03/2017,Sports_celeb,@HollyHolm,Happy Saturday from Buster and I 🐱 https://t.co/pcwfHWFxbI +05/19/2017,Sports_celeb,@HollyHolm,A little fuel before the afternoon workouts. #teamhitech hitechpharma https://t.co/A8fOqyuTjn +05/15/2017,Sports_celeb,@HollyHolm,Met my family for lunch..... and left with some old memories. Rocked some pretty awesome haircuts 😜 https://t.co/L3Fnti0DgO +05/14/2017,Sports_celeb,@HollyHolm,Riding to the fights in style. 9 #gangsters.... 1 golf cart. @cowboycerrone @IzzyStyle… https://t.co/5cU6uJRcij +05/10/2017,Sports_celeb,@HollyHolm,On my way to Sandia BMW to take care of some things. They're always taking care of me 😀 it's… https://t.co/W5vU9H4dbz +05/10/2017,Sports_celeb,@HollyHolm,"Middle of the week grind. 👊🏻 #Repost @celinehaga (via @repostapp) +・・・ +Wednesday is without a… https://t.co/ey3AqCX4q4" +05/05/2017,Sports_celeb,@HollyHolm,I'd say a little change in weather from Saturday... enjoying all that Albuquerque has to offer. https://t.co/rRnhjhMFrY +04/17/2017,Sports_celeb,@HollyHolm,Proud to wear my @karatehottiemma shirt. I admire the person she is and she definitely motivates… https://t.co/Tr8NXRxR6t +04/14/2017,Sports_celeb,@HollyHolm,All awesomeness in the picture #freckles #redhead #graciebarra #brazilpants #lululemon #pilates… https://t.co/2H04g8N1x6 +04/10/2017,Sports_celeb,@HollyHolm,Happy siblings day to the two that have supported me through thick and thin my entire life. Have… https://t.co/OJ4k02sy7A +04/08/2017,Sports_celeb,@HollyHolm,Team👊🏻 no excuses.... How can you not learn from this group? I love my @jacksonwinkmma and… https://t.co/fWesFsqEM3 +03/29/2017,Sports_celeb,@HollyHolm,Up to 80 degrees last week and this morning there is snow. Albuquerque spring is always… https://t.co/9nVFYmc4Km +03/28/2017,Sports_celeb,@HollyHolm,"A hot shower, ice cold water... and my Recovery Pump boots are just what the doctor ordered. Is… https://t.co/QIKeqK8YEx" +03/26/2017,Sports_celeb,@HollyHolm,My heart is happy. 😊 way to go @jodieesquibel !!! much love little sister. https://t.co/WH65PnJAvU +03/21/2017,Sports_celeb,@HollyHolm,This world is full of beautiful people and I really do love my homies with extra chromies ❤… https://t.co/sSyM5AP5YE +03/20/2017,Sports_celeb,@HollyHolm,Clowning around at the PBR. It wouldn't be the same without Flint. Always a good time. pbr #pbr https://t.co/BRjhiOU01K +03/20/2017,Sports_celeb,@HollyHolm,"Just finished a private screening for the movie ""Life"". Not only was the movie good but I got to… https://t.co/srLHqHRsXq" +03/18/2017,Sports_celeb,@HollyHolm,Happy St. Patty's Day everybody! Enjoy your night! ☘️🍀 #stoat ricksday #stpattysday #irish https://t.co/KiQm6tKAYG +03/17/2017,Sports_celeb,@HollyHolm,Who's ready for Friday? I'm sore and I am definitely feeling this week's training...... so I… https://t.co/KIwaa4pX9X +03/13/2017,Sports_celeb,@HollyHolm,Sandia BMW... still loving the 435. 🎶 https://t.co/5S1lb7ynU2 +03/08/2017,Sports_celeb,@HollyHolm,A little strength and conditioning for my afternoon👊🏻 thank you teamturningpoint https://t.co/TU8nnY3GZo +03/01/2017,Sports_celeb,@HollyHolm,Hanging out in my new @GrrrlClothing before I head to my next workout. When the weather can't… https://t.co/dOFi1RUrj2 +02/23/2017,Sports_celeb,@HollyHolm,#ninjaskills with eatfitabq and @jodieesquibel . 👊🏻👊🏻 https://t.co/HokqN2b90v +02/21/2017,Sports_celeb,@HollyHolm,A little of my strength and conditioning today. Getting back in the swing of things. https://t.co/KTYeEl2kX1 +02/21/2017,Sports_celeb,@HollyHolm,Back from Peru and excited for training tomorrow. I always look forward to coming back to the… https://t.co/XJeRUVvi18 +02/18/2017,Sports_celeb,@HollyHolm,Everybody keeps asking me if @ironladymma and I will rematch.......... I sure hope so. I know… https://t.co/bjnJX10cBX +02/10/2017,Sports_celeb,@HollyHolm,"I don't know if I should refer to him as my coach, my friend, or a legend.... but tell me he… https://t.co/eicmgia458" +02/08/2017,Sports_celeb,@HollyHolm,Super fun morning with some of my favorite people. Thank you @livekelly for having us! We had a… https://t.co/XXBTZOgPER +02/05/2017,Sports_celeb,@HollyHolm,"When you are trying to get ready and Buster thinks he's not getting enough attention.... ok,… https://t.co/p1a20pAVoJ" +02/05/2017,Sports_celeb,@HollyHolm,RT @mariashriver: Check out what my friend Trevor of @Moawad_Group says about the mind of a champion. Hint: its not just for athletes! http… +02/02/2017,Sports_celeb,@HollyHolm,hitechpharma thank you for a great year. I am excited for 2017! https://t.co/QxRuilBL8Q +01/20/2017,Sports_celeb,@HollyHolm,Still love this 435. https://t.co/Ufrg2CBKjv +01/14/2017,Sports_celeb,@HollyHolm,👊🏻 https://t.co/CF4hogysu8 +01/10/2017,Sports_celeb,@HollyHolm,Another day in the books. #teamhitech hitechpharma https://t.co/pdFO58wteV +01/04/2017,Sports_celeb,@HollyHolm,When your friends are your team and your team is going to do damage @jodieesquibel in invictafc… https://t.co/r1i8m7yoWu +01/04/2017,Sports_celeb,@HollyHolm,Tuesday night work with my ninjas 👊🏻👊🏻👊🏻 @baratafreitas @IzzyStyle @johndodsonmma https://t.co/eCeTE4Q83D +12/24/2016,Sports_celeb,@HollyHolm,Merry Christmas Eve from all of us at Winks gym!! 🎄☃️⛄️🎅🏻 https://t.co/h3rlhF05tO +12/22/2016,Sports_celeb,@HollyHolm,#ninjaskills with @thefranklester https://t.co/M0nhDRtquY +12/22/2016,Sports_celeb,@HollyHolm,Trying to learn from these badasses. Thank you for the rounds. @baratafreitas @jodieesquibel… https://t.co/jOMzCZpKqR +12/20/2016,Sports_celeb,@HollyHolm,I hope everyone is enjoying their Week leading up to Christmas. I wish you all a Merry Christmas… https://t.co/R2p6Go4FDK +12/18/2016,Sports_celeb,@HollyHolm,Had to take my own photos with the man himself. Everybody keeps coming up pumped to meet the man… https://t.co/8v6qeTUtv9 +12/08/2016,Sports_celeb,@HollyHolm,"hitechpharma is doing a giveaway if you would like to enter:) (via repostapp) +・・・ +GIVEAWAY: Win… https://t.co/OX4CPSh9jg" +12/03/2016,Sports_celeb,@HollyHolm,"Friday evening 👊🏻 graciebarranm @jacksonwinkmma (via repostapp) +・・・ +Friday night went like that… https://t.co/z5TfyKgftA" +12/01/2016,Sports_celeb,@HollyHolm,https://t.co/p4LuKCDBqD This inspires me.… https://t.co/EwkuSwSY5Y +11/28/2016,Sports_celeb,@HollyHolm,Have a sweet tooth? Make a protein milkshake instead of reaching for the candy bars. 👊🏻… https://t.co/lJBnaHvb9p +11/18/2016,Sports_celeb,@HollyHolm,Happy Friday everyone 👊🏻 @GrrrlClothing https://t.co/YYAcTnKtMX +11/14/2016,Sports_celeb,@HollyHolm,Monday afternoon Grrrind ... thanks @mmacoachwink for the mitt session. @GrrrlClothing https://t.co/4fkm7A0k1r +11/13/2016,Sports_celeb,@HollyHolm,Excited for this bantamweight fight and the rest of the card. Watching with family and friends.… https://t.co/zQJqdRkbL4 +11/12/2016,Sports_celeb,@HollyHolm,Just relaxing Friday night. #teamhitech #hitechpharma hitechpharma https://t.co/gTyrecqggs +11/10/2016,Sports_celeb,@HollyHolm,#ninjaskills with @tomfirekid #JCVD #tomfirekid https://t.co/cMbqkEsPhR +11/08/2016,Sports_celeb,@HollyHolm,My Monday motivation. Every Monday I get to work out with this amazing woman. She shows… https://t.co/K3etKKjF3R +11/07/2016,Sports_celeb,@HollyHolm,Congratulations to my brothers @baratafreitas and @DiegoSanchezUFC with their victories this… https://t.co/UW7fZ5BVKC +11/04/2016,Sports_celeb,@HollyHolm,And thanks for the new shorts @GrrrlClothing https://t.co/nIdPeSOm0z +11/04/2016,Sports_celeb,@HollyHolm,It's been a progress getting my strength back since surgery but it's almost there. Strict muscle… https://t.co/oqjWvVwTe1 +11/02/2016,Sports_celeb,@HollyHolm,"Our weather has been so nice for being November, but there's still that chill in the air during… https://t.co/rIHXl3Xwh5" +10/29/2016,Sports_celeb,@HollyHolm,Sometimes trying to get stuff done in the house is impossible because Buster keeps laying in… https://t.co/F1rVbOppUb +10/29/2016,Sports_celeb,@HollyHolm,What my Friday night party looks like.... no bake protein bars and a photobomb by Buster. Using… https://t.co/M1deMDBXlk +10/27/2016,Sports_celeb,@HollyHolm,Finished with some great training this morning 👊🏻 love my team. https://t.co/bwJ7CrE0UQ +10/19/2016,Sports_celeb,@HollyHolm,On my way to run. Thanks for the new gear @GrrrlClothing https://t.co/WeeajNAcUu +10/18/2016,Sports_celeb,@HollyHolm,#ninjaskills with @timkennedymma #koalified https://t.co/KVKufNHTGX +10/17/2016,Sports_celeb,@HollyHolm,My Monday motivation goes to Randy. He's been a friend of mine since childhood. He won several… https://t.co/4T7k29s0d2 +10/15/2016,Sports_celeb,@HollyHolm,Excited to share my video for @verabradley where I teach @RealTomHankz how to throw a punch and… https://t.co/8lzhaOQkVq +10/14/2016,Sports_celeb,@HollyHolm,#thursdaynightfootball bummer we didn't win. Looking forward to the next game. broncos https://t.co/tH3pGgDFfD +05/09/2018,Sports_celeb,@Sara_McMann,Photo shoot for Sports Illustrated 💪👊 I will posting these great… https://t.co/GUAFq3lFlw +04/15/2018,Sports_celeb,@Sara_McMann,Look at the life YOU live in based on the comments you leave online. Now there’s a thought.… https://t.co/4u5Lnwe1J2 +04/02/2018,Sports_celeb,@Sara_McMann,I am a terrible girlfriend. I’m also fully understand the war I’ve started. Worth it 😆😆😆… https://t.co/HjjWrvESzV +03/20/2018,Sports_celeb,@Sara_McMann,Testing at the UFC Performance Institute in Vegas! Little known fact: I have the densest bones… https://t.co/xeLfeJTQcG +02/12/2018,Sports_celeb,@Sara_McMann,Don’t fall for the guy who only buys you flowers and chocolate on Valentine’s Day. Fall for the… https://t.co/TNSQ3aU582 +02/08/2018,Sports_celeb,@Sara_McMann,😄😄😄 unfortunately I had BOTH of these terrible hairstyles 🤦🏻‍♀️🤷🏻‍♀️ https://t.co/LsOkOhO4Hk +02/02/2018,Sports_celeb,@Sara_McMann,Yay!! #EAUFC3 is out 👏👊💪 It’s always fun when people I know pick me in the game😄 https://t.co/Bnb3wdQOT7 +01/29/2018,Sports_celeb,@Sara_McMann,Happy birthday to this awesome guy that stole my heart ♥️ I hope I get to spend every one… https://t.co/hVfmQ1V2u5 +01/27/2018,Sports_celeb,@Sara_McMann,I GOT FILI!!! 👊💪 @touchyfili #teamalphamale #tamvseverybody #outcastsandunderdogs #koheadkick @… https://t.co/Fh1adk8eYn +01/17/2018,Sports_celeb,@Sara_McMann,"Four years old, kindergarten pictures. The best part is that I had the same mullet for like 10… https://t.co/0ulX5paez0" +01/12/2018,Sports_celeb,@Sara_McMann,FBF to Opening Ceremonies with telaodonnell in 2004 Olympics! This reminds me of living at the… https://t.co/q4kPwCuEi2 +01/12/2018,Sports_celeb,@Sara_McMann,Check out marcelogarciajiujitsu on Instagram!!! 👏👏👏🙌🙌🙌 One of the few people in the world I view… https://t.co/ZvWQSlTwFe +01/04/2018,Sports_celeb,@Sara_McMann,Excited to announce my next fight Feb. 24 in Orlando against Lana Kunitskaya 😃 #ufc… https://t.co/diIZAQkLeh +12/31/2017,Sports_celeb,@Sara_McMann,Wish @HollyHolm would have gotten the win. Great person and great fighter 👊💪 #ufc219 +12/28/2017,Sports_celeb,@Sara_McMann,One of the most amazing things about this life. I plan on reaching my goals and starting fresh… https://t.co/3ZDhPH4oIN +12/23/2017,Sports_celeb,@Sara_McMann,It appears that one of my “fans” really needs some attention. He posted this on a pic of my… https://t.co/jamGn20Nco +12/22/2017,Sports_celeb,@Sara_McMann,Bella reached her goal of being able to put both feet flat and raise her head. When she puts her… https://t.co/wQr9273CIj +12/18/2017,Sports_celeb,@Sara_McMann,Wicked artwork by chaotic_substance 👏🙌 Thank you 🙏 #ufc #fanart #badass #grateful https://t.co/0Uuu92fmMK +12/14/2017,Sports_celeb,@Sara_McMann,I bet this is the last time alexandermunoz55 shows me how to get more height on my single leg… https://t.co/8C9MS9Vl28 +12/10/2017,Sports_celeb,@Sara_McMann,"The smallest things make the biggest difference over time. Proper nutrition, hydration, good… https://t.co/5JWj5C6MeD" +12/10/2017,Sports_celeb,@Sara_McMann,WAR @savage_530 Benito Lopez 💪👊 @ufc debut and ready to dominate!!! #teamalphamale… https://t.co/Yf8fJiM3vS +12/06/2017,Sports_celeb,@Sara_McMann,WOMEN’S WEEK!! Pretty sweet to get a free week and watch some sick fighters 😁 #ufc #fightpass… https://t.co/ocqCSsYGwr +12/05/2017,Sports_celeb,@Sara_McMann,Miss these awesome coaches more than I can express!! I love bonding with my new team and coaches… https://t.co/Pxxgb0SOK6 +12/03/2017,Sports_celeb,@Sara_McMann,"Bad stuff out, good stuff in 😊 @teamusana #usana #healthpak #vitaminsandminerals #recovery @… https://t.co/krufvdOKnj" +11/22/2017,Sports_celeb,@Sara_McMann,"Awesome Gi class with this animal!! Don’t be fooled by his No Gi preference, this guy is super… https://t.co/UxqkolQJqx" +11/21/2017,Sports_celeb,@Sara_McMann,Why do I look like I’m possessed by the devil?!?! 😳😆 I hope to have something scheduled soon!… https://t.co/D9UNGKUUua +11/15/2017,Sports_celeb,@Sara_McMann,I have no shame at all being a fangirl for Jean Claude Van Damme 😍 I grew up watching Bloodsport… https://t.co/FrMymR94jT +11/12/2017,Sports_celeb,@Sara_McMann,"Cool coffee shops ☕️ , hard practices 🤼‍♂️ , and chasing galaxies 🌌 💗💕You’re my favorite person… https://t.co/Cps37VmyDz" +11/10/2017,Sports_celeb,@Sara_McMann,I love this feeling. Moments before competition is the most intense feeling of focus and… https://t.co/WmilvNhcdW +11/08/2017,Sports_celeb,@Sara_McMann,"Wrestling, MMA, and gymnastics. 3 of the toughest sports in the world🌎 We only climb the highest… https://t.co/N55rRC2oCQ" +11/07/2017,Sports_celeb,@Sara_McMann,"If you can abide by these 2 quotes, you are 90% on your way to having a much better life. https://t.co/8aqIZAhMfS" +11/04/2017,Sports_celeb,@Sara_McMann,WAR @cody_nolove @tylerd1amond @sanchez__145 👊💪☝️ my @TeamAlphaMale teammates are going to… https://t.co/SUjMgvz29z +11/04/2017,Sports_celeb,@Sara_McMann,Big thanks to @BetaAcademy for having me teach alongside Murilo Santana today at the… https://t.co/Jt0fRqPZPJ +11/02/2017,Sports_celeb,@Sara_McMann,Let’s go @lancepalmer 💪👊 #teamalphamale #wsof #champion #wrestling #usawrestling #fightday https://t.co/JoWxLh20wh +11/01/2017,Sports_celeb,@Sara_McMann,"LumberJane? LumberJill? Ax murderer? Who knows, just gimme the candy and no one gets hurt 😃 https://t.co/bOVV8niOLH" +10/20/2017,Sports_celeb,@Sara_McMann,I’m too lazy to look up some inspirational quote about life. But here’s me doing a handstand for… https://t.co/X090hFpRkN +10/18/2017,Sports_celeb,@Sara_McMann,Great work with my teammate alexandermunoz55 this morning! Working out sneaky set ups and our… https://t.co/RXhhlguvjM +10/12/2017,Sports_celeb,@Sara_McMann,Hope that these fires get contained soon. It's caused so much heart ache and damage already 😢 https://t.co/7zDsfbT0LC +10/11/2017,Sports_celeb,@Sara_McMann,The USADA lady gave me a cool towel when I was tested today 😁 I'm glad they don't only test when… https://t.co/2WxcRdSbN8 +10/06/2017,Sports_celeb,@Sara_McMann,"I really love this quote. I'm proud of where I have gotten in life, but I started far behind a… https://t.co/MtJ665u6KT" +10/05/2017,Sports_celeb,@Sara_McMann,Relaxing at Capitol Park with my favorites 💕 Wayne chasing squirrels while Bella climbs trees 🌲… https://t.co/Egn3c8t7DY +10/02/2017,Sports_celeb,@Sara_McMann,Awesome box of goodies from a great gal Chrystal at rebelliaclothing 💕 I can't wait to try out… https://t.co/LlZBua1anZ +10/01/2017,Sports_celeb,@Sara_McMann,Shout out to my good friend sobhanworld and all of the great work he is doing for @cssandover !… https://t.co/U3GjYDIbwv +09/25/2017,Sports_celeb,@Sara_McMann,Super excited to get my Sports Pak vitamins from USANA!! These have helped me compete at a high… https://t.co/GWT74W4HMc +09/24/2017,Sports_celeb,@Sara_McMann,Today's my birthday and I am happy to be alive and loving what I do. I have great friends &… https://t.co/9S1JR2f1yj +09/23/2017,Sports_celeb,@Sara_McMann,The royal treatment 👑 fo @brooke13_mayo before her fight for @bellatormma !!! @fabiopradobjj and… https://t.co/lpBt0q7RqG +09/23/2017,Sports_celeb,@Sara_McMann,WAR @teruto_ko !!!! @TeamAlphaMale is behind you!!! #beast #teamalphamale #tamvseverybody #ufc… https://t.co/3ErNeZYVhh +09/20/2017,Sports_celeb,@Sara_McMann,"I ALWAYS miss the pic at the end, so I made sure I didn't wander off this time 🤣 I'm loving my… https://t.co/bJlXNN3tm9" +09/16/2017,Sports_celeb,@Sara_McMann,Happy Friday!! Carpe Diem 😁😁😁 https://t.co/coFqAbbtOb +09/15/2017,Sports_celeb,@Sara_McMann,Come check out @urijahsuf tomorrow from 10-5pm!! I'll be there!! 😁 #urijahfabersultimatefitness… https://t.co/VufSjCT1iG +09/10/2017,Sports_celeb,@Sara_McMann,Last night didn't yield the outcome that I wanted. I gave the best of myself and came up short.… https://t.co/oCuDmfK9HK +09/09/2017,Sports_celeb,@Sara_McMann,Ready to leave it all in the cage and give every ounce of myself tonight!!! I love what I do!!… https://t.co/lbtXOaW8m2 +09/06/2017,Sports_celeb,@Sara_McMann,Awww @suzesuzeq did such an amazing job on my hair and makeup!!! She knows I don't like a… https://t.co/oxkVWGZ9JS +09/05/2017,Sports_celeb,@Sara_McMann,Riding with the man who's about to make history!! I've been a longtime fan of @MightyMouseUFC… https://t.co/9OdiMfXU8a +09/03/2017,Sports_celeb,@Sara_McMann,No make up and letting my crazy curls loose. It's a great day after my last hard work out for my… https://t.co/jVq3WHTeWg +09/02/2017,Sports_celeb,@Sara_McMann,"This is such a great quote because no matter what you've done in the past, the here and now is… https://t.co/XfMLDXslX9" +08/30/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/sgBWzYI78H +08/30/2017,Sports_celeb,@Sara_McMann,Got some great work in with this beast tonight! @cyn_calvillo #teamalphafemale #ufc215… https://t.co/GAYNbIwOvO +08/28/2017,Sports_celeb,@Sara_McMann,"Faster, stronger, better!!! Thank you @brooke13_mayo and Niko for the great drills 😁… https://t.co/UfFlF3PM50" +08/27/2017,Sports_celeb,@Sara_McMann,Cool down with some light shadow boxing and movement drills. Feeling relaxed and ready for the… https://t.co/9HA8iKIzGg +08/27/2017,Sports_celeb,@Sara_McMann,All respect to @TheNotoriousMMA for stepping into Floyd's arena and giving it is all. #UFC #boxing #allheart +08/26/2017,Sports_celeb,@Sara_McMann,I hope he goes in there and shocks the entire world. #mcgregorvsmayweather #ufc #boxing… https://t.co/EKVrXj3uAY +08/25/2017,Sports_celeb,@Sara_McMann,Super proud of @rafajj for getting silver medal at Master's Worlds in IBJJF! He had a tough call… https://t.co/4NJdedKaBX +08/24/2017,Sports_celeb,@Sara_McMann,"Coaches be like, ""Your opponent is taller, go with him to prepare"" 😂😂😂 Not to brag, but I almost… https://t.co/YcaVvtXiIc" +08/23/2017,Sports_celeb,@Sara_McMann,Awesome sparring day!! Thanks to @brooke13_mayo for the kicks that were on 🔥 and and… https://t.co/2l3QfaxytA +08/23/2017,Sports_celeb,@Sara_McMann,Got a visit from #usada today! I love that they take blood and urine samples. It's a huge… https://t.co/31QGdJYu7d +08/20/2017,Sports_celeb,@Sara_McMann,"Strawweight, flyweight, and bantamweight. We're comin for them all!! #murderersrow #ufc #bjj… https://t.co/XQrjYmEIlO" +08/17/2017,Sports_celeb,@Sara_McMann,Great sparring with @cyn_calvillo today!! #teamalphafemales #ufc215 @ Urijah Fabers Ultimate… https://t.co/qXmXFdMjXO +08/12/2017,Sports_celeb,@Sara_McMann,First day of practice in my new home @TeamAlphaMale and I'm surrounded by excellence!! I'm so… https://t.co/zJ8cvglGJk +08/02/2017,Sports_celeb,@Sara_McMann,"To gain strength, you have to break down and repair properly. Thanks @teamusana for giving my… https://t.co/QPnjWKkLbd" +08/01/2017,Sports_celeb,@Sara_McMann,"After two different date changes, I'm happy to announce that I'm fighting Ketlen Vieira on… https://t.co/CvR0WwOwoL" +08/01/2017,Sports_celeb,@Sara_McMann,You know who you are. #keyboardwarrior #cantloseifyounevertry #mommasbasement #bitchtits… https://t.co/X94jd7aRCW +07/30/2017,Sports_celeb,@Sara_McMann,"Amazing artist, check her out https://t.co/Np5bWz0NGX" +07/30/2017,Sports_celeb,@Sara_McMann,Just posted a photo @ Alliance Champions Training Center https://t.co/X7zxO7Kw06 +07/29/2017,Sports_celeb,@Sara_McMann,WAR JARRED!! @the_monkeygod #ufc #ufc214 https://t.co/xsiQapl0Cb +07/28/2017,Sports_celeb,@Sara_McMann,I've always loved this. I wouldn't be anything without all of the help I've received in sports… https://t.co/v1UD7BUJh0 +07/27/2017,Sports_celeb,@Sara_McMann,Ladder drills and footwork. I could do this stuff in my sleep 😴 #allianceofgreenville… https://t.co/xQNbGABU7K +07/26/2017,Sports_celeb,@Sara_McMann,Super sweet pic of Bella and I after her gymnastics practice 😁 Thank you tlsandys for this… https://t.co/RHNtwot403 +07/25/2017,Sports_celeb,@Sara_McMann,Another great pic from the article. @ Alliance Champions Training Center https://t.co/sG7CqQd42l +07/24/2017,Sports_celeb,@Sara_McMann,Awesome article in thewashingtonpost if anyone wants to check it out. Big thanks to romanstubbs_… https://t.co/qfLbRmOAMK +06/28/2017,Sports_celeb,@Sara_McMann,"@DiabloBlanco29 hey, what are you doing?" +06/24/2017,Sports_celeb,@Sara_McMann,Phil Nurse showing all the young guns how to throw down!! Speed and footwork on point 😁 @WATNYC… https://t.co/EcbcO9B6ek +06/14/2017,Sports_celeb,@Sara_McMann,Some of my lifts yesterday. Thanks to dan_scanlan94kg and @teamusana for all of the things that… https://t.co/Kwt58mHQoZ +06/13/2017,Sports_celeb,@Sara_McMann,Always sure to get my @teamusana Sports Pak in the morning and evening. I can't believe how much… https://t.co/GSSCCmG0Yr +06/11/2017,Sports_celeb,@Sara_McMann,Picture with a legend masterjacare since we are #alliancefamily ❤️ #bjj #atlanta #alliance #legend https://t.co/krJqwVnsZR +06/11/2017,Sports_celeb,@Sara_McMann,Beautiful cross choke from mount by @rafajj at the #fighttowinpro36 !! alliancechampions… https://t.co/X1sHQTtxs8 +06/11/2017,Sports_celeb,@Sara_McMann,Awesome kneebar by cbinghambjj at the #fighttowinpro36 !! alliancechampions #bjj #kneebar… https://t.co/MnGXQUrNpH +06/05/2017,Sports_celeb,@Sara_McMann,My new sponsor rejuvenate.wellness2400 did a new treatment called Skin Classic to treat skin… https://t.co/hpfAGlPZN6 +06/02/2017,Sports_celeb,@Sara_McMann,Special thank you to the woman responsible for keeping my body from falling apart 😂 tfisherlmt65… https://t.co/1hO5Qx9AD0 +06/02/2017,Sports_celeb,@Sara_McMann,"A) her back is not broken. B) this is not some form of medieval punishment. That's right, she is… https://t.co/CaIOSdqz9e" +06/01/2017,Sports_celeb,@Sara_McMann,"So, they announced my next fight!!! 😁😁😁 I am happiest when I'm preparing for a fight and as soon… https://t.co/zDAXgKjsZm" +05/29/2017,Sports_celeb,@Sara_McMann,Words fail to express the gratitude I have for the sacrifices that soldiers and families make to… https://t.co/gOm8gO8G6P +05/24/2017,Sports_celeb,@Sara_McMann,So excited to have my @teamusana supplements and vitamins arrive!! The best athletes need the… https://t.co/JOVZYs71Bn +05/22/2017,Sports_celeb,@Sara_McMann,Thank you @dominickcruz for letting me pick your brain about how to become a guest fighter (and… https://t.co/gEdrfB9Ued +05/21/2017,Sports_celeb,@Sara_McMann,A couple of the amazing things we saw at #ufcar17 in #lasvegas!! So honored to hear from… https://t.co/3eXdXgGnxJ +05/14/2017,Sports_celeb,@Sara_McMann,Happy for all of the great experiences I get to have with this sweet little girl. I've never… https://t.co/7FMQNV04VN +05/13/2017,Sports_celeb,@Sara_McMann,I don't even know how her back doesn't break! 😂 #handstand #gymnastics #diamondtheives… https://t.co/TMdTpx9fCZ +05/11/2017,Sports_celeb,@Sara_McMann,Giving a little bit back to my poor body after punishing it with 10 days without a day off 😳… https://t.co/QpjyClEppd +05/11/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/Z2eYgoMWcW +05/07/2017,Sports_celeb,@Sara_McMann,"Who's my next fight? I'd love to fight any one of these women, but my picks are A and C 😁 #ufc… https://t.co/GjI2R8F4JQ" +05/07/2017,Sports_celeb,@Sara_McMann,Super fun training with my girl cdbannie and maryska404 😁She should definitely be in invictafc… https://t.co/MLoC90Fy8L +05/01/2017,Sports_celeb,@Sara_McMann,Awesome drills with @JustinBuchholz at @TeamAlphaMale a couple of weeks ago! Can't wait until I… https://t.co/ZiISgLGT7P +04/26/2017,Sports_celeb,@Sara_McMann,This is my serious face 😈 Thanks for picking one of my favorite pics @teamusana #sharkeyes… https://t.co/vjFcqRaCiE +04/25/2017,Sports_celeb,@Sara_McMann,Super happy to have joined @usanainc team!! Can't wait to receive my first box of supplements 😁… https://t.co/OA9KkQSE6p +04/15/2017,Sports_celeb,@Sara_McMann,Love the training out here at @TeamAlphaMale with @cyn_calvillo #teamalphamale #ironsharpensiron… https://t.co/BGYZ6fj1E2 +04/14/2017,Sports_celeb,@Sara_McMann,Having a great time @TeamAlphaMale 😁 Super cool group of fighters who have fun pushing each… https://t.co/nz6BazJXhF +04/13/2017,Sports_celeb,@Sara_McMann,The internet kills me!! I saw so many good ones but this was irresistible… https://t.co/6rNxCo4Quu +04/10/2017,Sports_celeb,@Sara_McMann,Cool pic from this weekend! And thanks dklinedesign for posting it to @ibjjf 😁 I'm still… https://t.co/SSBxgM9xpX +04/09/2017,Sports_celeb,@Sara_McMann,I had a great time at my first @ibjjf competition!! Thanks to amandaleve_bjj for the awesome… https://t.co/yhjHh9nggt +04/07/2017,Sports_celeb,@Sara_McMann,Eeeekkk! I don't know if you can tell but I was so excited to learn some tips and tricks from… https://t.co/WBWdBigU8Y +04/04/2017,Sports_celeb,@Sara_McMann,When you secretly buy all of the @ryanhallbjj DVD's to use his own moves against him!!… https://t.co/Z5bswEtcEh +04/03/2017,Sports_celeb,@Sara_McMann,Thank you to adambenayoun and crock_stock for the goes earlier today. Super excited for more… https://t.co/1rHYW2TyIO +03/31/2017,Sports_celeb,@Sara_McMann,One of the cool pics @piperwarlick took for a feature in styleblueprintcharlotte !!! It was… https://t.co/c4F6rhexpX +03/27/2017,Sports_celeb,@Sara_McMann,It always surprises me how much I enjoy the Gi classes! Typically wrestlers aren't big fans of… https://t.co/ZwaWIaGkSR +03/26/2017,Sports_celeb,@Sara_McMann,"Huge thanks to a wonderful fan @jeepney6 for this coffee!!! I really can't wait to try it, it… https://t.co/fq3vY2q4hG" +03/24/2017,Sports_celeb,@Sara_McMann,I get the privilege of training with these killers almost every day 😁😁😁 @Parisi_Speed… https://t.co/hzK9r5msnq +03/20/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/UgsOTOdYXH +03/20/2017,Sports_celeb,@Sara_McMann,"RT @LeonardWheeler7: Worked out today with Sara ""The Beast"" McMann. I'm so proud of this young lady. Olympic Medalist, UFC & Great Friend!…" +03/19/2017,Sports_celeb,@Sara_McMann,Pushed to the max in my work out run by the one and only leonardwheeler7 😁 Thank you for making… https://t.co/vetFdBgJ0Y +03/19/2017,Sports_celeb,@Sara_McMann,If you aren't watching #ncaawrestlingchampionships what are you even doing with your life??… https://t.co/53pkPH7kZh +03/16/2017,Sports_celeb,@Sara_McMann,It's Wrestling Heroes Day for #wrestlingweek and my hero is the legendary John Smith. He's a 6X… https://t.co/u4p2w3dgTF +03/15/2017,Sports_celeb,@Sara_McMann,WRESTLE LIKE A GIRL DAY!! I started when I was 14 and have loved it every day since then! ❤️❤️❤️… https://t.co/rFMF9ZyXpp +03/14/2017,Sports_celeb,@Sara_McMann,Last training session with jwo51 before she goes back to being smart and saving lives 😁 Thanks… https://t.co/tAZZAUVNdM +03/13/2017,Sports_celeb,@Sara_McMann,Working on my explosive power!! You can't tell but in the barbell pic I'm actually off of the… https://t.co/kV5nRORHip +03/10/2017,Sports_celeb,@Sara_McMann,My sweet friend gave me some wicked work out pants ❤️❤️❤️ Thank you jwo51 for the thoughtful… https://t.co/KMMjz4qCBU +03/10/2017,Sports_celeb,@Sara_McMann,"There will never be a time that we aren't navigating our own set of challenges, but I believe we… https://t.co/2oIT5bO8kD" +03/09/2017,Sports_celeb,@Sara_McMann,Can't wait for this seminar!!! I love sharing knowledge with the young girls coming up!!… https://t.co/UrYWKOudiE +03/08/2017,Sports_celeb,@Sara_McMann,"""Here's to strong women. May be know them, may we be them, may we raise them.""… https://t.co/JgoMC5pR8C" +03/08/2017,Sports_celeb,@Sara_McMann,"Red for International Women's Day!! Even my coach, Jimmy Fowler, supports women today 😂😂😂… https://t.co/DIjn2M6WlW" +03/07/2017,Sports_celeb,@Sara_McMann,"No, I'm not actually pregnant here!! I'm on set for @SubmissionFilm and was having fun with the… https://t.co/ELd4bAoiiL" +03/06/2017,Sports_celeb,@Sara_McMann,Beautiful pics from #redrockcanyon with dan_scanlan94kg 😁I've been to Vegas over 20 times and… https://t.co/YUvMru3cXV +03/05/2017,Sports_celeb,@Sara_McMann,I had a great time catching up with @cody_nolove in between filming for @metropcs 😁… https://t.co/JgVnrY6TKN +03/05/2017,Sports_celeb,@Sara_McMann,Totally my favorite part of the night!!! Can't believe I met my favorite actress @charlizeafrica… https://t.co/XspHTgMVbJ +03/05/2017,Sports_celeb,@Sara_McMann,First time doing the @metropcs show before #ufc209 😁 thanks to @forrestgriffin @cody_nolove… https://t.co/55EtpfWvkl +03/05/2017,Sports_celeb,@Sara_McMann,"Comeback of the year!!!! Omg, @DarrenElkinsMMA is the epitome of ""never give up"" #UFC209" +03/04/2017,Sports_celeb,@Sara_McMann,"I had such a good time at the #mmaawards this year! Half of me likes dressing up, the other half… https://t.co/4hee7O27zy" +03/04/2017,Sports_celeb,@Sara_McMann,Had a great lift at @averagebroz 😁 had to pick this platform since it had the #2004olympics… https://t.co/xKa5GmYyih +03/04/2017,Sports_celeb,@Sara_McMann,Awesome seeing @bisping at the weigh ins for #ufc209 😁 #ufc #ufcchampion #reddress @ T-Mobile Arena https://t.co/GO51jZHdWX +03/03/2017,Sports_celeb,@Sara_McMann,Just arrived at the #mmaawards2017 and can't wait for the show to start! #venetian #lasvegas… https://t.co/YDKvuUurNF +02/27/2017,Sports_celeb,@Sara_McMann,Another great pic from #fallsparkonthereedy in #greenvillesc 😁😁😁 #besties #roots #beautifultrees… https://t.co/1BD0xE8Kh3 +02/26/2017,Sports_celeb,@Sara_McMann,Help @thugjitsumaster raise money for his mother's battle with cancer! https://t.co/9BnFMulocA +02/24/2017,Sports_celeb,@Sara_McMann,My other meditation tool ❤️ I still have to wait a little longer for all of the repairs to my… https://t.co/w0o3aE3lVo +02/23/2017,Sports_celeb,@Sara_McMann,Laughing and hiking with my bestie @DollFaceIFC115 at #fallsparkonthereedy in #greenvillesc ...… https://t.co/c9fMiImGNz +02/23/2017,Sports_celeb,@Sara_McMann,The secret to my success in sports? Mental and physical recovery! I have always been a hard… https://t.co/EXOFlJAHco +02/22/2017,Sports_celeb,@Sara_McMann,"This is one of my new favorite pics!! I respect every one of my opponents. Before I fight, I… https://t.co/wKnr9MUiQV" +02/20/2017,Sports_celeb,@Sara_McMann,Last night was surreal!! I had such a great weight cut and recovery. My warm up and preflight… https://t.co/SX1LDNgj0C +02/20/2017,Sports_celeb,@Sara_McMann,"Super happy in the back with my coach, Jimmy Fowler!! He's been with me thru my whole career and… https://t.co/6ovAk81hjE" +02/18/2017,Sports_celeb,@Sara_McMann,#UFC #halifax #destroytheopposition #breaktheirwill #pushthepace #getwhatyouveearned https://t.co/bpCgi7i88w +02/18/2017,Sports_celeb,@Sara_McMann,One step closer!! And now.... more coffee ☕️😍😁 and carbs #mynewbestfriend #justfortoday #UFC… https://t.co/q6HqqXn5vZ +02/18/2017,Sports_celeb,@Sara_McMann,Weigh in pic 🎉🎊I actually weighed 135 because the sauna was so awesome 😂 I've had so many carbs… https://t.co/pOe0i9uFcx +02/18/2017,Sports_celeb,@Sara_McMann,Made weight and feeling very good 😊 My opponent missed weight by 3.5 pounds but I'm not upset… https://t.co/DXMLGXA36r +02/12/2017,Sports_celeb,@Sara_McMann,One week out for my fight! Thanks Wanda Koch Photography! ❤️ #ufc #reebok #strongmindandbody https://t.co/cc4Nr8bJ8C +02/10/2017,Sports_celeb,@Sara_McMann,"I love boxing with my @hayabusafight gloves!!! ❤❤❤ They are comfortable and protect my hands,… https://t.co/sxQl0pKihc" +02/09/2017,Sports_celeb,@Sara_McMann,Thank you so much to wandakochphotography for the beautiful pics of Bella and I. We ❤ them!! https://t.co/RSFZv8gDq1 +02/07/2017,Sports_celeb,@Sara_McMann,"Omg, this was too funny thing my share https://t.co/S4TgmbxdP8" +02/03/2017,Sports_celeb,@Sara_McMann,My opponent has changed on short notice. Big thanks to Gina Mazany for accepting the fight so… https://t.co/8qEoUWRtmp +01/30/2017,Sports_celeb,@Sara_McMann,Thank you @hayabusafight for the fight swag! I think I've become 10% faster with my fresh new… https://t.co/1Oke5i3SaI +01/22/2017,Sports_celeb,@Sara_McMann,"This is how you raise a spider monkey 😂@pai_cpa says, ""oh no, don't fall Bella!"" And she giggles… https://t.co/UTS3KfugND" +12/23/2016,Sports_celeb,@Sara_McMann,TBT to my photo shoot with the @UFC when I was as lean as I can be (without dying 😂) and they… https://t.co/fQ7vvE3siK +10/19/2016,Sports_celeb,@Sara_McMann,Super excited for this fight!!! Dec. 3 TUF Finale https://t.co/s2mqKItjRm +09/30/2016,Sports_celeb,@Sara_McMann,Just finished watching The Hurt Business and it was awesome!!! +09/08/2016,Sports_celeb,@Sara_McMann,https://t.co/80mYzkbMwt +09/04/2016,Sports_celeb,@Sara_McMann,"Check out the float tank at @glowspanow in Mt. Pleasant, SC. The experience is surreal!! https://t.co/bXV28rJvY9" +08/26/2016,Sports_celeb,@Sara_McMann,A pic with my sweet❤️ https://t.co/so9h6OCt0D +08/24/2016,Sports_celeb,@Sara_McMann,Women's wrestling Olympic medalists https://t.co/1uG4PfCo7u +08/24/2016,Sports_celeb,@Sara_McMann,https://t.co/cJGnx9F0ww +08/22/2016,Sports_celeb,@Sara_McMann,Photo shoot a couple of yrs ago. Thank you FotoFlo https://t.co/d5sNDSW6gY +08/16/2016,Sports_celeb,@Sara_McMann,"Best of luck tomorrow to @hayaugello , @helen_maroulis @AdelineGray and @e_pirozhkova #rio2016 #usawrestling https://t.co/9f1cBIpyfy" +07/25/2016,Sports_celeb,@Sara_McMann,https://t.co/wG9mEhVX0s +07/23/2016,Sports_celeb,@Sara_McMann,Flex Competition with Ean and @gatorboyrb ... I think Ean has us beat!! @ufc #fightlikeean https://t.co/G6XPk669sp +07/22/2016,Sports_celeb,@Sara_McMann,This is my little hero!! https://t.co/avFe4VAI1x +07/18/2016,Sports_celeb,@Sara_McMann,This is pretty cool 😊 https://t.co/7BgnWqIj9s +07/15/2016,Sports_celeb,@Sara_McMann,Just finished my 1st table read ever!! Excited 2 Bart of this movie!! @SubmissionFilm @ufc @RevolutionMMASC https://t.co/dtHysVTCBD +07/13/2016,Sports_celeb,@Sara_McMann,@MieshaTate @BryanCaraway check your DM +07/13/2016,Sports_celeb,@Sara_McMann,RT @toppscards: A day after winning The Ultimate Fighter season 23 @ElDirteSanchez has fun with @Sara_McMann at the Topps UFC booth https:/… +07/11/2016,Sports_celeb,@Sara_McMann,The documentary I'm in is being released soon! Here is the trailer: https://t.co/S4lVNVSfSA https://t.co/mPlMTsBLdF +07/10/2016,Sports_celeb,@Sara_McMann,I want to fight @VenezuelanVixen @ufc make it happen!!! We will put on a great show!!! +07/09/2016,Sports_celeb,@Sara_McMann,Now time for my boy @ElDirteSanchez to finish his opponent!!! @ufc #TUFFinale +07/09/2016,Sports_celeb,@Sara_McMann,Beautiful d'arce choke @TSPMMA115 @ufc +07/09/2016,Sports_celeb,@Sara_McMann,Can't wait for @TSPMMA115 to win her rightful place in the UFC!!! WAR Tatiana!!! @ufc #wrestling #usawrestling #UFCVegas +07/09/2016,Sports_celeb,@Sara_McMann,Beautiful KO by @KoreanSuperBoy7 !!! Love it +07/06/2016,Sports_celeb,@Sara_McMann,Honored to be in the Collectors Edition of @people !! https://t.co/InQ6f55q56 +06/29/2016,Sports_celeb,@Sara_McMann,Yay! My shirts are in and ready to ship! Visit https://t.co/1RqVlCmMZX if you'd like to order them! https://t.co/HCCQvClTmq +06/22/2016,Sports_celeb,@Sara_McMann,"I'm already preparing for my next fight @ufc ! Give me another top 5fighter, I want to beat the best! #ufc #reebok https://t.co/oaMlVRsklc" +06/18/2016,Sports_celeb,@Sara_McMann,Great training at Fitness Edge MMA in Myrtle Beach! Thanks @derrickakadk https://t.co/1obLiAKWbI +06/16/2016,Sports_celeb,@Sara_McMann,RT @DarkMoon_MMA: Get your @Sara_McMann Tees here !! https://t.co/QblochEcOO https://t.co/khgRp1eZ6y +06/16/2016,Sports_celeb,@Sara_McMann,"https://t.co/r5CNa2ykcj completely lied about my coach, Blake Grice, and it needs to be exposed!!!https://t.co/RXDwGPFzWL" +06/05/2016,Sports_celeb,@Sara_McMann,Beautiful title fight! Non stop action from start to finish. Loved it @ufc +06/04/2016,Sports_celeb,@Sara_McMann,Awesome Grand Opening! Chris Bedenbaugh is the best chiropractor!! https://t.co/XC9Mt8T3MI +06/01/2016,Sports_celeb,@Sara_McMann,Thnx again @TheFightDocs 4 the awesome weight loss plan! Easiest weight cut and best recovery I've ever had!! https://t.co/30ylVjrxNz +05/31/2016,Sports_celeb,@Sara_McMann,Hope everyone had a safe Memorial Day. Much gratitude 2 those not present but always in our hearts ❤️ https://t.co/5yVBgkxs29 +05/30/2016,Sports_celeb,@Sara_McMann,My poor coaches 😕 https://t.co/J4bzmU7RNb +05/30/2016,Sports_celeb,@Sara_McMann,In the zone 😍😍😍 @ufc https://t.co/9ioAGhWfFG +05/27/2016,Sports_celeb,@Sara_McMann,Weight is on point! Thank you @TheFightDocs !!! https://t.co/LSV6MXtmRO +05/27/2016,Sports_celeb,@Sara_McMann,Shadow boxing for the UFC promo 😊@ufc https://t.co/LbExzHbm9D +05/26/2016,Sports_celeb,@Sara_McMann,More excited for this fight than I've been in a long time!! 😃😃😃 can't wait for Sunday!! https://t.co/VE8eBZIDse +05/14/2016,Sports_celeb,@Sara_McMann,Big thanks to @TheFightDocs for the supplements that help my work out intensity and recovery! https://t.co/6yRTqtasgj +05/12/2016,Sports_celeb,@Sara_McMann,Hard 8 min. goes with top level black belts! ❤️ bjj at Alliance in Geeenville! https://t.co/9YmLAgl04s +05/12/2016,Sports_celeb,@Sara_McMann,RT @HectorCastroESM: Gettin ready to watch @ElDirteSanchez to do his thing on @UltimateFighter & #TUFTalk tonight on @FS1 #TimeToGetDirte h… +05/10/2016,Sports_celeb,@Sara_McMann,I am officially a USADA peeing pro. Whole process done in less than 15 min. 😄 +06/27/2018,Sports_celeb,@Bharper3407,RT @BlindBarber: .@Bharper3407 Win a trip to the All-Star Game! Enter now https://t.co/WI276ya8Ro https://t.co/byvgaASjoz +06/13/2018,Sports_celeb,@Bharper3407,"Let’s support @LLSusa! + +$10/ticket helps fight cancer. Winner's charity gets a $5,000 grant! + +CODE: TeamBryce // https://t.co/FGqLL4m8VS" +06/08/2018,Sports_celeb,@Bharper3407,"I’m excited to partner with @TMobile in supporting our military & vets! Join me by tweeting with #HatsOff4Heroes,… https://t.co/qrTtseTDAl" +06/08/2018,Sports_celeb,@Bharper3407,#GoKnightsGo +06/08/2018,Sports_celeb,@Bharper3407,I think it would only be fitting for us the @Nationals to rock the red tmrw night in support of the @Capitals winni… https://t.co/sIP2uQilIL +06/08/2018,Sports_celeb,@Bharper3407,I’m so proud to be born and raised in Las Vegas and so proud to call the @GoldenKnights my team! To be able to root… https://t.co/JnvnGW4eQu +06/08/2018,Sports_celeb,@Bharper3407,"Congrats not only to the @Capitals and the players, but to the whole City of DC. What a year, what a series, and so… https://t.co/PF5jaKkuGU" +05/26/2018,Sports_celeb,@Bharper3407,The Harper 3 Low!🔥 #MemorialDayWeekend https://t.co/m8D7ITI3Rl +05/05/2018,Sports_celeb,@Bharper3407,"RT @Nationals: Bryce Harper: Dedicated + +Bryce Harper Field: Also dedicated https://t.co/U66z5yigsK" +05/03/2018,Sports_celeb,@Bharper3407,"RT @GoldenKnights: Thanks for the gifts @Bharper3407!! + +⚾️🏒 + +#VegasBorn https://t.co/MUwWviIp2p" +05/02/2018,Sports_celeb,@Bharper3407,Nobody believes in us more than this man right here!🙌🏻 #Habit #DM4 https://t.co/kUuaFCGVT6 +05/01/2018,Sports_celeb,@Bharper3407,Could you imagine a @GoldenKnights vs. @Capitals Stanley Cup?🙌🏻 #Epic +05/01/2018,Sports_celeb,@Bharper3407,Wild Bill!🙌🏻 #GoKnightsGo +04/29/2018,Sports_celeb,@Bharper3407,Another Vegas kid making his stamp on the game! Congrats to @NickKingham on an absolutey stellar debut! Happy for you big man🙌🏻 +04/29/2018,Sports_celeb,@Bharper3407,"RT @TMobileArena: This is what 18,000 @GoldenKnights fans sound like from #Vegas! #KnightUp https://t.co/hyMQ6GxjTc" +04/29/2018,Sports_celeb,@Bharper3407,Heck yea! The big 8 8 🙌🏻 #Vegasborn +04/28/2018,Sports_celeb,@Bharper3407,6 years ago today!🙌🏻 #19to25 https://t.co/cjt2C1cDzp +04/27/2018,Sports_celeb,@Bharper3407,Let’s go boys! Lay it on all night🙌🏻 #VegasBorn #VGK #GoKnightsGo +04/17/2018,Sports_celeb,@Bharper3407,RT @BlindBarber: @Bharper3407 put together his favorite Blind Barber products for his Bryce Harper Selects Gift Set. Pick up one today and… +04/16/2018,Sports_celeb,@Bharper3407,What a W!🔥 #VegasBorn +04/16/2018,Sports_celeb,@Bharper3407,Stud. Wild Bill. #VegasBorn +04/12/2018,Sports_celeb,@Bharper3407,I'm excited to announce that I am now a part of the @blindbarber family! We had a blast shooting this video! Stay t… https://t.co/bK7AB6VsCd +04/12/2018,Sports_celeb,@Bharper3407,"RT @BryanHarper45: Hey @Bharper3407, one hair dryer wasn't enough? 😂 https://t.co/l8hbpUWI7E" +04/12/2018,Sports_celeb,@Bharper3407,RT @darrenrovell: Unreal scene in Vegas tonight for @GoldenKnights first ever playoff game. https://t.co/CFPLJqutNm +04/12/2018,Sports_celeb,@Bharper3407,Best fans and atmosphere in sports!🙌🏻 #GoKnightsGo #VegasBorn https://t.co/EHeCX3s84t +04/12/2018,Sports_celeb,@Bharper3407,Let’s get this started! @NHLonNBCSports 🙌🏻 #GoKnightsGo #VegasBorn +04/02/2018,Sports_celeb,@Bharper3407,You can get FREE https://t.co/Uqg9f5Ez8g for the entire season thanks to @TMobile! Today is the last day to sign u… https://t.co/6G4FCph7pQ +03/31/2018,Sports_celeb,@Bharper3407,Live your best life. https://t.co/NEyhx0g903 +03/28/2018,Sports_celeb,@Bharper3407,"Can’t wait to get it started!🙌🏻 #OpeningDay +https://t.co/Vdor6PBXJs" +03/19/2018,Sports_celeb,@Bharper3407,What’s it’s all about!🐟 #BassForDays https://t.co/R1GLxBJ7VT +03/14/2018,Sports_celeb,@Bharper3407,Congrats again! That was one of the cooler things I’ve ever done🙌🏻 So happy for you! Heard Harper is a great name h… https://t.co/3xMDKjUMpQ +03/05/2018,Sports_celeb,@Bharper3407,@Gatorade Pumped to be partnering with @Gatorade and helping a great program! #GatoradePartner +02/27/2018,Sports_celeb,@Bharper3407,#VegasBorn https://t.co/qCY6GMgSCP +02/26/2018,Sports_celeb,@Bharper3407,RT @lvwildcats: LVHS alumni representing in MLB and other than being Wildcats they all have one more thing in common ... a great high schoo… +02/24/2018,Sports_celeb,@Bharper3407,Woke up to another @GoldenKnights win! Oops🙌🏻 #GoKnightsGo +02/22/2018,Sports_celeb,@Bharper3407,Waking up to the news that our US woman’s hockey team has won gold fires me up! So happy for you ladies..Congratula… https://t.co/gKc9TVJUP5 +02/22/2018,Sports_celeb,@Bharper3407,Baseball is back!😂 https://t.co/EsSxy4hq0j +02/19/2018,Sports_celeb,@Bharper3407,It’s a family game!🙌🏻 #Harperx2 https://t.co/Gvdqx7EVjl +02/18/2018,Sports_celeb,@Bharper3407,Congrats to my man @austindillon3 on the Daytona 500!🙌🏻 #DAYTONA500 +02/14/2018,Sports_celeb,@Bharper3407,Since pitchers and catchers report dates are tmrw...I thought I would throw it back! Big man @JTaillon19 throwing a… https://t.co/sS6DqmyY9W +02/14/2018,Sports_celeb,@Bharper3407,😮 #FlyingTomato +02/11/2018,Sports_celeb,@Bharper3407,RT @NewEraCap: Our lightest #MLB on-field product ever. Spring Training Low Profile PROLIGHT #59FIFTY. https://t.co/LM6kJDpml7 https://t.co… +02/11/2018,Sports_celeb,@Bharper3407,The Happiest place on earth with my own little Minnie!😍 https://t.co/xWmzl5tI6v +02/06/2018,Sports_celeb,@Bharper3407,Training just got a lot easier with the Spring Training PROLIGHT Low Profile #59FIFTY cap! Excited to start the spr… https://t.co/5aTrLYH8Y2 +02/05/2018,Sports_celeb,@Bharper3407,Baseball already? Well that was way too fast!🤦🏼‍♂️ +02/02/2018,Sports_celeb,@Bharper3407,What a game! Wow😮 @GoldenKnights #GoKnightsGo #VGK +01/31/2018,Sports_celeb,@Bharper3407,"Maybe I’m crazy, but how do you get rid of @KirkCousins8? Isn’t he good? Like really good? Just a thought! #DC https://t.co/lIY4ZeU0fT" +01/29/2018,Sports_celeb,@Bharper3407,Speechless. #1october #GRAMMYs +01/26/2018,Sports_celeb,@Bharper3407,"Everybody has a hero if that’s an athlete, artist, actor, or anybody you look up to, but this man right here… https://t.co/tGVqmJwSuQ" +01/24/2018,Sports_celeb,@Bharper3407,Congrats to the @WashWizards @JohnWall and @RealDealBeal23 on the All-Star nod! Much deserved fellas🔥 #DCfamily https://t.co/4hGPLsj1ac +01/21/2018,Sports_celeb,@Bharper3407,Did anybody ever doubt that was going to happen? Brady is the G.O.A.T🔥 #Patriots #TeamUA +01/18/2018,Sports_celeb,@Bharper3407,This years leather!🔥 #BHxPablo https://t.co/Jf23mS0ue5 +01/18/2018,Sports_celeb,@Bharper3407,What a group!🔥 #TeamUA https://t.co/acaiBuG1oI +01/18/2018,Sports_celeb,@Bharper3407,"RT @UnderArmour: .@MichaelPhelps, @JordanSpieth and @Bharper3407 are looking for a 4th. Must need a medal, major or MVP to join. 😉 #Spieth2…" +01/18/2018,Sports_celeb,@Bharper3407,RT @JordanSpieth: Waiting on the rest of the team here to break in their new #Spieth2's.... https://t.co/Tb4LxSNNEo +01/17/2018,Sports_celeb,@Bharper3407,"RT @BryanHarper45: Seeing what happen to Tyler Hilinski last night really hit home. I’ve had family and friends end their lives, and suicid…" +01/17/2018,Sports_celeb,@Bharper3407,"RT @TerpsBaseball: The #Harper2, Maryland style. + +@UABaseball x #DirtyTerps https://t.co/qKiQbByER8" +01/16/2018,Sports_celeb,@Bharper3407,"RT @LDSquotable: ""The best is yet to come."" - President Eyring" +01/09/2018,Sports_celeb,@Bharper3407,Wow..True freshman to True freshman to win the National Championship!🙌🏻 #RollTideRoll +01/05/2018,Sports_celeb,@Bharper3407,Pops was money today!🔥 #Soonish https://t.co/CYyrZz2r9M +01/04/2018,Sports_celeb,@Bharper3407,"Decided to bundle up, go to the mountains and take some photos in the snow! Enjoying this cold… https://t.co/6d6izKc4SF" +01/03/2018,Sports_celeb,@Bharper3407,"I grew up loving Gordon B. Hinkley, but was a little to young to understand what a prophet was… https://t.co/9tHNfI7zuA" +01/01/2018,Sports_celeb,@Bharper3407,Happy New Years from The Harpers!🎉🤟🏼 #2018 https://t.co/0crHouhBdB +12/31/2017,Sports_celeb,@Bharper3407,Who’s ready for New Years Eve Las Vegas style? The crew over @stitchedlife got me covered as always! ❌❌❌❌ #nye2017 https://t.co/T0GUMMe7yF +12/29/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Sorry bout it!! We are for real! #BoldInGold #GoKnightsGo +12/28/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: 50!!! Yeah 50!!! @GoldenKnights https://t.co/laeqjZ9SZz +12/28/2017,Sports_celeb,@Bharper3407,Way to go boys!🙌🏻 #GoKnightsGo +12/27/2017,Sports_celeb,@Bharper3407,Why don’t the @Nationals have a jersey that says The District across it like the @WashWizards jerseys? That new “ci… https://t.co/K247NQZk6F +12/25/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: Merry Christmas Everyone 🎄❤️ https://t.co/JIZ8rQ098I +12/25/2017,Sports_celeb,@Bharper3407,Merry Christmas to my amazing parents. They deserve the world! Want to give a huge shout out to @polarisorv for mak… https://t.co/sFqYEccEkK +12/25/2017,Sports_celeb,@Bharper3407,Merry Christmas y’all!🎄❄️☃️ https://t.co/r1wjjRDZRz +12/24/2017,Sports_celeb,@Bharper3407,“I need some pool toys!” Nate Schmidt #GoKnightsGo https://t.co/zk88DTDr5p +12/23/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Can’t wait for the @GoldenKnights game tonight!! Hope we can convert some of the @Nationals fans? #GoKnightsGo +12/23/2017,Sports_celeb,@Bharper3407,"RT @GoldenKnights: The tradition of Festivus begins with the airing of...a Golden Knights hockey game, presented by @Topgolf. https://t.co/…" +12/20/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Holy shit what a game!! What a team! What a league!! #VGK @GoldenKnights +12/20/2017,Sports_celeb,@Bharper3407,WOW!!!!!😮 @GoldenKnights +12/20/2017,Sports_celeb,@Bharper3407,Boom baby!!! Go Knights Go🙌🏻 #VegasHockey +12/16/2017,Sports_celeb,@Bharper3407,"One year ago today I married my best friend! Your smile, laugh, freckles, and appetite has stolen my heart each and… https://t.co/dFuGj7n75O" +12/16/2017,Sports_celeb,@Bharper3407,"RT @DuckFootball: ""This is so much more than a game to me,"" said Tyrell Crosby, who will wear No. 58 Saturday to honor the shooting victims…" +12/14/2017,Sports_celeb,@Bharper3407,Temple Square last night!🙌🏻🎄 #SLC https://t.co/lbQbJ2k8sA +12/14/2017,Sports_celeb,@Bharper3407,"RT @Nationals: Bryce Harper was one of the top trending @MLB players of 2017 according to #YearInSearch. + +🔗: https://t.co/oM0srJUPsP https:…" +12/08/2017,Sports_celeb,@Bharper3407,"RT @DanielPlatzman: That time @benamckee and I sang “Viva Las Vegas” with @Bharper3407 into @MrTeller ‘s mic +#vegasstrong https://t.co/AUyi…" +12/08/2017,Sports_celeb,@Bharper3407,And it has started. I couldn’t care less what anybody says! The @LasVegasNFR is the greatest event of the year!🐎🐃 #CowboyUp +12/06/2017,Sports_celeb,@Bharper3407,RT @NASCARONFOX: Kurt Busch and Bryce Harper are #VegasStrong. https://t.co/cs7lwG94C2 +12/06/2017,Sports_celeb,@Bharper3407,I see you @RealDealBeal23 with the 51!😱 #DCfamily +12/06/2017,Sports_celeb,@Bharper3407,RT @RyanShazier: Thank you for the prayers. Your support is uplifting to me and my family. #SHALIEVE +12/05/2017,Sports_celeb,@Bharper3407,RT @Nationals: Join @Bharper3407 in helping to keep #VegasStrong! https://t.co/f0XjwRYRWG +12/05/2017,Sports_celeb,@Bharper3407,Prayers out to @RyanShazier!🙏🏼 #THE +12/03/2017,Sports_celeb,@Bharper3407,Eric Harlow the hero we all need!🌰 #TurfForDays #THE +12/02/2017,Sports_celeb,@Bharper3407,#VegasStrong https://t.co/opk3uk8TLH +11/29/2017,Sports_celeb,@Bharper3407,Show your support for #Vegas with an evening of incredible entertainment at the #VegasStrong Benefit Concert at… https://t.co/Qo9TGu9eXh +11/26/2017,Sports_celeb,@Bharper3407,RT @brittharppete: Hi friends!!! Go vote today please! Today and everyday!!! She’s the best! https://t.co/8rOBD7xp7f +11/26/2017,Sports_celeb,@Bharper3407,Best thing I’ve seen in a long time! On top of that @ovi8 with the hat trick for him was icing on the cake🎂… https://t.co/NkqZ1LSO0m +11/25/2017,Sports_celeb,@Bharper3407,RT @DickieV: @Bharper3407 Ppl in basketball better keep a keen eye on @SharkTank702 @Bharper3407 is a big hoops fan / I just want to be Bry… +11/25/2017,Sports_celeb,@Bharper3407,Great win by the boys tonight..Vegas is turning gold!🙌🏻 #GoKnightsGo https://t.co/2au0RgdVTM +11/20/2017,Sports_celeb,@Bharper3407,#GoKnightsGo +11/19/2017,Sports_celeb,@Bharper3407,"RT @NASCAR: ""I wanna be a race car driver some day."" — @DaleJr + +#Appreci88ion https://t.co/IVL48O4aUz" +11/19/2017,Sports_celeb,@Bharper3407,"RT @momofsevenMOS: @Bharper3407 @Nationals @MLB @NASCAR Thank you so much Bryce, and thank you for all you do for the kids! Vote everyday u…" +11/19/2017,Sports_celeb,@Bharper3407,"Calling all @Nationals, @MLB, @NASCAR, and my fans please take 2 min to vote for my friend Tammy Richardson!… https://t.co/6jgEkUlv1A" +11/17/2017,Sports_celeb,@Bharper3407,RT @nationwide88: Throwing it back to when @DaleJr met @Bharper3407 at @DISupdates. #CelebrateThe88 https://t.co/EOBouYdWzE +11/16/2017,Sports_celeb,@Bharper3407,The @unlvrebelgirls need your vote. There are only two teams left in the competition! Head to… https://t.co/20ftkBUF8t +11/11/2017,Sports_celeb,@Bharper3407,"Congrats to @Holts170 for career win number 200. What an amazing accomplishment, but of course many more to come!🙌🏻 #Caps" +11/06/2017,Sports_celeb,@Bharper3407,Man @KirkCousins8 you’re a stud!🙌🏻 #DCfamily +11/01/2017,Sports_celeb,@Bharper3407,I gotta say that’s a pretty good flip🙌🏻😂 What a stud! https://t.co/KWBTRSDD94 +10/30/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: O-H https://t.co/WrRo7Ey66Y +10/28/2017,Sports_celeb,@Bharper3407,Big time win by @OhioStateFB and big time day by @JT_theQB4th!💯🌰 #OH +10/28/2017,Sports_celeb,@Bharper3407,Boom!!🔥 #OH +10/25/2017,Sports_celeb,@Bharper3407,Me and the wife (@kayyharper8) had a great time tonight at our first @GoldenKnights game! Thanks for having us🙌🏻… https://t.co/PRpboTiUrA +10/24/2017,Sports_celeb,@Bharper3407,Pops trippin man! #findjujusbike✌🏼 @TeamJuJu https://t.co/wAasAMCFOA +10/07/2017,Sports_celeb,@Bharper3407,"RT @Nationals: To offer support or make a donation, please visit https://t.co/iKCYv8FdOI. + +#VegasStrong https://t.co/o8Z90Cl4V7" +10/05/2017,Sports_celeb,@Bharper3407,Vegas this is for you!💯 #VegasStrong https://t.co/QujvvVOMc6 +10/05/2017,Sports_celeb,@Bharper3407,RT @masnNationals: #Nats @Bharper3407 in a #VegasStrong hoodie during today's workout. #IBackTheNats https://t.co/MeFz8SIc8a +10/04/2017,Sports_celeb,@Bharper3407,What a first inning!🔥 #YankeesTwins +10/03/2017,Sports_celeb,@Bharper3407,RT @bigleaguestew: Give credit where it's due -- that was @Bharper3407's idea for baseball. https://t.co/8sTPxw3iNS +10/03/2017,Sports_celeb,@Bharper3407,Yes the @NBA did!🤔 #HarperThoughts https://t.co/eCpNkHnYK3 +10/03/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: #PrayersForLasVegas #RT #GodBless https://t.co/8LKxDb3hFL +10/02/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Whole Foods on GVP a donation center right now. UHaul truck full of water and snacks. #PrayersForVegas +10/02/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: 7 hr wait at the United Blood Service in Henderson. Not turning away but recommending to come back tomorrow and rest of… +10/02/2017,Sports_celeb,@Bharper3407,RT @Rebeksy: Don't play politics w/ OUR city. Just HELP. Donate blood. Volunteer at a donation center. Watch someone's kid so they can dona… +10/02/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: https://t.co/oDvjYX0k2f +10/02/2017,Sports_celeb,@Bharper3407,...My thoughts and prayers go out to the families that have been affected by this and to all the people that have l… https://t.co/LXtXKdYGPv +10/02/2017,Sports_celeb,@Bharper3407,The pride of Vegas runs deep when you are born and raised in such a great town. I can't fathom the horrific event that has taken place! ... +09/19/2017,Sports_celeb,@Bharper3407,RT @SVogt1229: Anyone that can help please let me know!!! https://t.co/rkqVwy9Ht2 +09/18/2017,Sports_celeb,@Bharper3407,Oh how I've missed this feeling!🔥 #5oclockplayer https://t.co/2hwsLn2Jwe +09/17/2017,Sports_celeb,@Bharper3407,15 in a 30!🔥 https://t.co/VG7UutKwjI +09/16/2017,Sports_celeb,@Bharper3407,RT @UnderArmour: From one slugger to another. @Bharper3407 shows his support for @canelo in advance of tonight’s title bout. #TeamUA #IWILL… +09/14/2017,Sports_celeb,@Bharper3407,"RT @barstoolsports: Whoever runs the Vegas Golden Knights Twitter account is a savage +https://t.co/rw1equO2Js https://t.co/Yg2Lgn9d51" +09/12/2017,Sports_celeb,@Bharper3407,RT @carolmaloney4: A story I've wanted to bring to the screen for 3 years now.. coming up on NBC4 later tonight. @Bharper3407 https://t.co… +09/11/2017,Sports_celeb,@Bharper3407,RT @masnNationals: Watch @Bharper3407 chat in the clubhouse after the #Nats clinched the NL East title! https://t.co/TDUV2IhI07 #IBackTheNa… +09/10/2017,Sports_celeb,@Bharper3407,RT @Nationals: ARE YOU NOT ENTERTAINED?! https://t.co/3XQiLSe1R6 +09/10/2017,Sports_celeb,@Bharper3407,#WeDemBoyz +09/09/2017,Sports_celeb,@Bharper3407,Congrats to @SloaneStephens on her win at the @usopen! What an incredible job she did🙌🏻 #UAfamily +08/31/2017,Sports_celeb,@Bharper3407,RT @Brutus_Buckeye: @Bharper3407 I-O from your FAVORITE 🌰!!!! 😉 #GoBucks https://t.co/XCPf5zJh31 +08/31/2017,Sports_celeb,@Bharper3407,O-H😜 #BuckeyeNation +08/30/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: The UA #Harper2 “Silent Service” Edition. Built with every weapon to light it up. + +Light up your game: https://t.co/71sQCU…" +08/28/2017,Sports_celeb,@Bharper3407,RT @Nationals: Be like @Bharper3407. Show us a photo of you with your favorite Starting Lineup figure today! https://t.co/JXRGQQg3A4 https:… +08/27/2017,Sports_celeb,@Bharper3407,They are both rich. They are both insanely good at what they do. And Floyd is the best ever! What a fight💯 #MayweatherMcGregor +08/26/2017,Sports_celeb,@Bharper3407,Come on Big Kid!🙌🏻 #PlayersWeeked https://t.co/8I5sipQxfe +08/26/2017,Sports_celeb,@Bharper3407,Favorite Emoji's and the Lumber!🙌🏻🍑🔥😂 #PlayersWeekend https://t.co/riqIDCuqE1 +08/26/2017,Sports_celeb,@Bharper3407,Tie Dye!🌈 #PlayersWeeked https://t.co/1oLVnjMH3D +08/26/2017,Sports_celeb,@Bharper3407,Eye of the Tiger!🐯 #PlayersWeeked https://t.co/ToXTwrYAqE +08/25/2017,Sports_celeb,@Bharper3407,Just landed in DC! Great scheduling👍🏻 +08/24/2017,Sports_celeb,@Bharper3407,"RT @Nationals: The @Bharper3407 Starting Lineup commercial '90s kids never knew they've always wanted. + +🎟️: https://t.co/mivoNHSUD0 https:…" +08/24/2017,Sports_celeb,@Bharper3407,Where's Billy Chapel when you need him?😳 #YanksTigers +08/22/2017,Sports_celeb,@Bharper3407,Baseball I miss you! https://t.co/l0JZoaQFwF +08/18/2017,Sports_celeb,@Bharper3407,"RT @theknot: Exclusive! MLB player Bryce Harper and his wife, Kayla, tell us everything about their wedding. See the album: https://t.co/g0…" +08/09/2017,Sports_celeb,@Bharper3407,"RT @MLB: Your favorite stars, their favorite gear. + +Get to know @MLB stars even better on #PlayersWeekend. https://t.co/Ydk9bZHkOf https://…" +08/01/2017,Sports_celeb,@Bharper3407,The Harper 2's ready to light it up for you! Head to the link to pick yours up today🔥 https://t.co/bSo6Kcq23y https://t.co/aDDeTs09M9 +08/01/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: 8/1 is near, and @Bharper3407 wants to know if you’ve signed up to get the #Harper2. + +https://t.co/4zJ8BlG8yf https://t.co/…" +07/29/2017,Sports_celeb,@Bharper3407,So proud to have the UA All-Americans lacing up the Harper 2's tonight in Chicago! Go get em fellas #uaallamerica https://t.co/LnFB6F9Q0Q +07/27/2017,Sports_celeb,@Bharper3407,"RT @Logic301: @Bharper3407 fam, just go from 5AM to I am the greatest. Or ballin. Keep killin it!" +07/27/2017,Sports_celeb,@Bharper3407,USA USA USA!!!!🇺🇸 #GoldCup +07/26/2017,Sports_celeb,@Bharper3407,@SharkWeek YUP!!!👋🏻 +07/26/2017,Sports_celeb,@Bharper3407,Shark week!! So epic🙌🏻 https://t.co/foj7L85AJF +07/24/2017,Sports_celeb,@Bharper3407,RT @barrysvrluga: Bryce Harper was taken first overall. Bryan Harper was taken 907th. Two brothers. Two paths. Teammates some day? https://… +07/19/2017,Sports_celeb,@Bharper3407,"RT @Cut4: Yunel Escobar greeted former teammate @Bharper3407 with the ol' ""slide the hand off the bag"" trick: https://t.co/6didTytUGd https…" +07/15/2017,Sports_celeb,@Bharper3407,Doubles in tennis has got to be one of my favorite events in sports! Watch your face💥💯 #Wimbledon2017 +07/12/2017,Sports_celeb,@Bharper3407,"RT @nflnetwork: We see you, @Bharper3407! https://t.co/hLIJ4GpKFQ" +07/12/2017,Sports_celeb,@Bharper3407,RT @SInow: Yadi did the hair flip in front of Bryce Harper 😂 https://t.co/2hgVqlC3yl +07/11/2017,Sports_celeb,@Bharper3407,For you Nino!💯 #JDF https://t.co/jBWxNERwjs +07/11/2017,Sports_celeb,@Bharper3407,RT @MLB: #MiamiBryce and his wife looking stellar on the #ASGRedCarpet. https://t.co/qOdR3HJPWG +07/11/2017,Sports_celeb,@Bharper3407,I grew this facial hair for fun! #Miami https://t.co/MHbkDbhEw2 +07/11/2017,Sports_celeb,@Bharper3407,RT @UnderArmour: .@Bharper3407 knows how to throw a party. Introducing the Miami Bryce #Harper2. #ASG https://t.co/ZYKsQuI1Z9 +07/06/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: In 4 days, we flip the switch and unleash the all-new UA #Harper2. + +Sign up for updates now: https://t.co/sD9hsr2vbm https:…" +07/06/2017,Sports_celeb,@Bharper3407,"RT @Nationals: Only 3 hours left to #VoteRendon! + +We're so excited! We're so excited! We're so ... scared... https://t.co/9CUUuSWAd7" +07/06/2017,Sports_celeb,@Bharper3407,Last chance to get your votes in for Sleepy!💯 Let's get it #VoteRENDON https://t.co/CaZJrCmQCf +07/04/2017,Sports_celeb,@Bharper3407,What a Country! Happy 4th of July🇺🇸 #USAUSAUSA https://t.co/1EO3KO4J8W +07/03/2017,Sports_celeb,@Bharper3407,Let's go Nats fans! It's time to get to work💯🙌🏻 #VoteRendon #MLBAllStarGame +06/22/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: It’s official!! Welcome to the @GoldenKnights MARC-ANDRE FLEURY!!! +06/22/2017,Sports_celeb,@Bharper3407,@MLB take notes on the @NHL's award show..The way it should be done! Celebrate the players💯👌🏻 #AmericasPastime +06/18/2017,Sports_celeb,@Bharper3407,Happy #FathersDay!! Join @neweracap and I in celebrating all dads with the @mlb Father's Day Collection. 🙌🏻🔥 https://t.co/zp8hyGSnOI +06/17/2017,Sports_celeb,@Bharper3407,RT @ABC: This 5-year-old boy has had 3 heart surgeries in his short life. Watch his incredible reaction as he finds out he's leaving the ho… +06/14/2017,Sports_celeb,@Bharper3407,My thoughts & prayers are w/ the victims & their families effected by the senseless act of violence at the Congressional Baseball Practice! +06/14/2017,Sports_celeb,@Bharper3407,RT @Nationals: 💪 #HarpersHeroes https://t.co/2sOuOOSFLb +06/11/2017,Sports_celeb,@Bharper3407,Let's go USA!!!🇺🇸⚽️ +06/11/2017,Sports_celeb,@Bharper3407,Nationals Dream Gala! What an incredible night out👏🏻 #Table1 https://t.co/qdrNjI4BdA +05/29/2017,Sports_celeb,@Bharper3407,RT @SoConSports: When you realize there's four more games tomorrow #currentmood #SoConBB https://t.co/vM4WBaczcT +05/29/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: In order to honor those who have served, @Bharper3407 debuted the #Harper2 this weekend. + +Sign up & get details: https://t.…" +05/27/2017,Sports_celeb,@Bharper3407,The HARPER 2 coming at you! Memorial Day edition🙌🏻🔥 https://t.co/uGtpGMJNfL +05/27/2017,Sports_celeb,@Bharper3407,"RT @IngrahamAngle: Just now: @Bharper3407 to Little Leaguers: ""I don't care what they say. Winning is good...losing isn't fun. No participa…" +05/27/2017,Sports_celeb,@Bharper3407,This #MemorialDay weekend we honor those who have made the ultimate sacrifice for our freedom !! 🇺🇸 @NewEraCap https://t.co/HTefvPkUDQ +05/24/2017,Sports_celeb,@Bharper3407,Congrats and good luck to the CSN Coyotes baseball team on getting back to Grand Junction! Get you a title boys🙌🏻 #Yotes #JCWS +05/14/2017,Sports_celeb,@Bharper3407,"RT @espnW: ""You held my hand as a child but you will hold my heart forever."" + +@Bharper3407's letter to his mom: https://t.co/cGPFS00knl" +05/13/2017,Sports_celeb,@Bharper3407,"JWall you are an absolute stud! Talk about Clutch..Wow!🏀 On to the next #DCfamily ""I ain't going home"" -@JohnWall" +05/09/2017,Sports_celeb,@Bharper3407,"Dear Mom, I love you!👀❤️U + +https://t.co/i5RS3MIa95" +04/17/2017,Sports_celeb,@Bharper3407,"Baseball games ending in a tie? Sounds like a lot of lost excitement to me⚾️💥 +https://t.co/088Ek350hq" +04/01/2017,Sports_celeb,@Bharper3407,RT @BrodyLogan: Bryce Harper looking like Captain America https://t.co/Zy1xBbDK4T +04/01/2017,Sports_celeb,@Bharper3407,RT @Cut4: Real recognize real. https://t.co/Bl0FJSVwkA +04/01/2017,Sports_celeb,@Bharper3407,"RT @NavyAthletics: From the Brigade of Midshipman, thank you for showing off your talents today @Nationals @Bharper3407 #GoNavy https://t.c…" +04/01/2017,Sports_celeb,@Bharper3407,RT @MLB: .@Bharper3407 showing his support for the troops at the @NavalAcademy. 🇺🇸 https://t.co/5oi6QKtQz1 +04/01/2017,Sports_celeb,@Bharper3407,RT @TMobile: Don't want to miss a game? No problem ⚾ Download the #TMobileTuesdays app for a FREE subscription to @MLBTV Premium. https://t… +03/31/2017,Sports_celeb,@Bharper3407,It's as comfortable as it looks! #TMobileONEsie ! Thanks @JohnLegere and @TMobile! https://t.co/CFdRNa4VBq +03/29/2017,Sports_celeb,@Bharper3407,RT @wapodesign: Wednesday is a Bonus Day for The Post print subscribers. A few of the treats we're delivering – baseball section + extra Fo… +03/26/2017,Sports_celeb,@Bharper3407,Get your #CapsOn ! Head to your local @Lids and step up your cap game with @NewEraCap to get ready for Opening Day… https://t.co/Lv1RL6u3PX +03/21/2017,Sports_celeb,@Bharper3407,The Gramps @D_Ross3 absolutely killed it on his first dance tonight! I see ya👀 #DWTS +03/16/2017,Sports_celeb,@Bharper3407,Riding through last year’s Spring training like @JaguarUSA 💯 #JaguarXE #TBT https://t.co/6f6JffAlze +03/12/2017,Sports_celeb,@Bharper3407,@MStrooo6 you is a baaaaaaddd man!🇺🇸 #StruttinStroman +03/11/2017,Sports_celeb,@Bharper3407,I see you Jonesy!!! USA USA USA🇺🇸 #ForGlory +03/11/2017,Sports_celeb,@Bharper3407,Crawford is way to good! So smooth💯 #USA +03/10/2017,Sports_celeb,@Bharper3407,Good luck to the boys as they start in the @wbcbaseball today! Have some fun and represent The USA well🇺🇸… https://t.co/2OFuamPlL8 +05/22/2018,Sports_celeb,@TheJudge44,Practice makes perfect! 😂 https://t.co/43lokmrVuE +05/11/2018,Sports_celeb,@TheJudge44,RT @KoltenWong: Aloha everybody! Please join my Gofundme campaign in an effort to provide assistance for all those affected by the ongoing… +04/18/2018,Sports_celeb,@TheJudge44,Loving that follow through!! #HRswing 👊👊 https://t.co/6IsZPm8j5J +04/11/2018,Sports_celeb,@TheJudge44,Who loves opening @topps cards?  Did you get to pull this card yet?! #ToppsPartner https://t.co/2GYzc9twP0 +04/04/2018,Sports_celeb,@TheJudge44,@DidiG18 You got me...😂 https://t.co/8hRPyUc296 +04/04/2018,Sports_celeb,@TheJudge44,⚔️⚔️⚔️ https://t.co/UQ41zFdGKM +03/27/2018,Sports_celeb,@TheJudge44,Welcome to the takeover. Can’t wait to rock with @adidasbaseball & rep those 3 stripes! #teamadidas https://t.co/ql93HKKq5M +02/27/2018,Sports_celeb,@TheJudge44,Humbled to be playing with one of baseball's living legends. That doesn't mean I'm going easy on him in @MLBTheShow… https://t.co/DFCnqiubn0 +02/12/2018,Sports_celeb,@TheJudge44,@JakeCave8 Hahaha😂😂 +02/09/2018,Sports_celeb,@TheJudge44,@dbolasky6 @TrentonThunder 😂😂 +02/05/2018,Sports_celeb,@TheJudge44,@TorresGleyber Whoaaa....👨🏽‍⚖️👀 +01/19/2018,Sports_celeb,@TheJudge44,@c_coshow Just wait till spring brotha! 😂 +01/19/2018,Sports_celeb,@TheJudge44,Big shout out to my man @Teacherman1986 Thank you for all the hard work and dedication to transform my swing in 201… https://t.co/koa5ZkZBwn +01/09/2018,Sports_celeb,@TheJudge44,Wow... 👊 @Tuaamann_ +01/09/2018,Sports_celeb,@TheJudge44,@Brett_Phillips8 @PaulieViz Let’s do it!!👊👊 +12/09/2017,Sports_celeb,@TheJudge44,Hey @Giancarlo818....👊 https://t.co/0542MWBIpv +11/19/2017,Sports_celeb,@TheJudge44,"Aye, put a finger in the sky if you want it! #dreamville @JColeNC https://t.co/illsAl3Owc" +11/17/2017,Sports_celeb,@TheJudge44,M-V-P!!! Nobody more deserving than you!! Congrats on an unforgettable 2017!! @JoseAltuve27 https://t.co/tEMy9u8qGc +11/13/2017,Sports_celeb,@TheJudge44,"This week, I had the chance to surprise @Pepsi employees at their office. They gave me a warm welcome as I join the… https://t.co/xNiUNgiwIW" +11/07/2017,Sports_celeb,@TheJudge44,Honored to be on the cover for #TheShow18 @MLBTheShow #ad https://t.co/aNrXVA7k3I https://t.co/yXpvyO0cyN +10/24/2017,Sports_celeb,@TheJudge44,"I would like to thank the Yankees organization, my teammates and the greatest fans in the world for an unforgettabl… https://t.co/Tj3NxKUEjn" +10/04/2017,Sports_celeb,@TheJudge44,RT @DRob30: I've never felt another man's pain more 😂 https://t.co/DNHzXeLjaU +09/30/2017,Sports_celeb,@TheJudge44,@MStrooo6 Much respect @MStrooo6!! Love your fire and passion for this game!! Keep that chip on your shoulder!!👊👊 +09/29/2017,Sports_celeb,@TheJudge44,RT @derekcarrqb: Praying for you @tae15adams ! +09/27/2017,Sports_celeb,@TheJudge44,"RT @YESNetwork: RT if you can't watch this @AaronHicks31 grand slam-robbing catch enough. + +@Yankees #YANKSonYES https://t.co/HOPAw2q0wU" +09/24/2017,Sports_celeb,@TheJudge44,RT @Yankees: We'll give Didi a pass on his postgame tweet tonight. 😂 https://t.co/zTDsG8r5EI +09/24/2017,Sports_celeb,@TheJudge44,2017 postseason #notdoneyet 👎🍾 https://t.co/DJKvuZgzAr +09/20/2017,Sports_celeb,@TheJudge44,👎 https://t.co/iGsaGr4IpJ +09/15/2017,Sports_celeb,@TheJudge44,RT @_tylerwade: 😂😂😂 https://t.co/mQcPJ7oFyw +09/11/2017,Sports_celeb,@TheJudge44,"Best blanket in the game!! +https://t.co/Dq0wkJTjcr 👌 https://t.co/afY4Bio1zV" +08/15/2017,Sports_celeb,@TheJudge44,Hey guys I'm excited to announce I've teamed up with @fanatics as my exclusive memorabilia partner! Check them out!… https://t.co/RD0IRkhFst +07/28/2017,Sports_celeb,@TheJudge44,RT @Yankees: This Gardy Party is LIT. 💯 https://t.co/O9lM1HIcgl +07/22/2017,Sports_celeb,@TheJudge44,Had a great time at @bungie checking out @DestinytheGame 2. Thanks for having us! https://t.co/bRSESpTjwv +07/17/2017,Sports_celeb,@TheJudge44,@rchealy25 @JackieBradleyJr https://t.co/3UlTooRufs +07/06/2017,Sports_celeb,@TheJudge44,RT @Gumbynation34: Everyone vote and get @DidiG18 the the All Star game! #SirDidi4Sure +07/03/2017,Sports_celeb,@TheJudge44,@JakeCave8 Thanks Jake!!🌚👊 +07/03/2017,Sports_celeb,@TheJudge44,"RT @DidiG18: 🛩➡️🏝⚾️🏖??? 🤔 +#SirDidi4Sure" +07/03/2017,Sports_celeb,@TheJudge44,@_KendallColeman Appreciate the love Kendall!!👊 +07/03/2017,Sports_celeb,@TheJudge44,@LuisCessaMx Thanks brotha!👊 +06/28/2017,Sports_celeb,@TheJudge44,RT @_tylerwade: Extremely blessed to have had my dream come true yesterday. Couldn't be more excited for this journey. Thank you to everyon… +05/15/2017,Sports_celeb,@TheJudge44,@T1721Austin 🌚🙌 +05/14/2017,Sports_celeb,@TheJudge44,"RT @CC_Sabathia: Not just a teammate. Not just a friend. You are family. To me, to the Yankees organization, to all of the game of baseball…" +05/06/2017,Sports_celeb,@TheJudge44,😂😂👊 https://t.co/90tZTwGl85 +04/29/2017,Sports_celeb,@TheJudge44,What a game!! https://t.co/LiEfn2x2c5 +04/26/2017,Sports_celeb,@TheJudge44,"RT @PlayersTribune: Voting is LIVE for these three @Yankees. + +Bird: https://t.co/Lb6C8ZAOl8 + +Torreyes: https://t.co/9hQQlk7hlb + +Headley: ht…" +04/16/2017,Sports_celeb,@TheJudge44,Happy Easter everyone! He is Risen! ☀️ +03/27/2017,Sports_celeb,@TheJudge44,RT @LuisSeverino94: Having fun with the guys @DBetances68 @CC_Sabathia @starlincastro12 @TheJudge44 @AaronHicks31 https://t.co/EFoKSXN8vn +03/27/2017,Sports_celeb,@TheJudge44,It's going to be a fun year! #2k17 https://t.co/WwUw0pbKYy +03/19/2017,Sports_celeb,@TheJudge44,@C_Reed24 Please tell me you've listened to this....🔥🔥🔥 https://t.co/EsgrkQas3x +03/18/2017,Sports_celeb,@TheJudge44,Yes!! 🔥🔥🔥 https://t.co/I9488Q0t1t +03/02/2017,Sports_celeb,@TheJudge44,@NEEKSFSU 😂😂👊 +03/02/2017,Sports_celeb,@TheJudge44,@LA_Swiftness yes!!😂👊 +03/02/2017,Sports_celeb,@TheJudge44,RT @T1721Austin: It was a lifelong dream to have my own rookie card! Check it out with 2017 Topps Baseball! #ToppsPartner @Topps https://t.… +03/01/2017,Sports_celeb,@TheJudge44,RT @Topsheff42: Takin in knowledge from big brodie @CC_Sabathia https://t.co/cMgsBWuOX4 +02/26/2017,Sports_celeb,@TheJudge44,@rileyjones23 👊👊 hope all is well brotha! +02/13/2017,Sports_celeb,@TheJudge44,😂😂 love it!! https://t.co/gyxyk7yVCD +02/08/2017,Sports_celeb,@TheJudge44,That feeling you get when you know the boys are back in town!! #ST2K17 ⚾️ https://t.co/GIsTn1g8Kd +02/06/2017,Sports_celeb,@TheJudge44,Every kid dreams for a game like this!!! Wow.....And with that it's time for some baseball!! 👊👊 +02/06/2017,Sports_celeb,@TheJudge44,@thekillaj1986 tell me about it!!! https://t.co/72QezWL7el +02/06/2017,Sports_celeb,@TheJudge44,RT @LA_Swiftness: Brady 🐐 +02/06/2017,Sports_celeb,@TheJudge44,Wow!!😳 +02/06/2017,Sports_celeb,@TheJudge44,@_KendallColeman @MichaelONeill10 https://t.co/8RHnMqdhQz +01/06/2017,Sports_celeb,@TheJudge44,@AndreNichole Hope you enjoy the city! Make sure you check out a Broadway show! 🌃🗽 +01/06/2017,Sports_celeb,@TheJudge44,@Rob_Refsnyder @Khaynes30 Hammer Haynes and Rally Rob here to get you fired up for the 9th inning! +01/05/2017,Sports_celeb,@TheJudge44,@Rob_Refsnyder 🔥🔥 +12/31/2016,Sports_celeb,@TheJudge44,@JoshRogers13 @MichaelONeill10 https://t.co/hUUJpBe7SZ +12/25/2016,Sports_celeb,@TheJudge44,Going to bed knowing it's Christmas tomorrow! 🎄🎅🏼 #ChristmasEve https://t.co/7FnALipx48 +12/25/2016,Sports_celeb,@TheJudge44,@BlakeRuth2 It's a Wonderful Life... https://t.co/GVUa7RVYHf +12/20/2016,Sports_celeb,@TheJudge44,@_tylerwade congrats man! She's one lucky lady! 🌚👏🏽 +12/11/2016,Sports_celeb,@TheJudge44,@JakeCave8 100%🌚 +12/08/2016,Sports_celeb,@TheJudge44,@nciuffo14 😂👊 +12/06/2016,Sports_celeb,@TheJudge44,What a night! Great performance by the @Rockettes! #ChristmasInNewYork https://t.co/To5OifhlVb +11/25/2016,Sports_celeb,@TheJudge44,@24mljones @tai_walker do it!👌 #99 +11/17/2016,Sports_celeb,@TheJudge44,Always fun working on the craft! #arizonalivin https://t.co/y9KRBX9QgO +11/03/2016,Sports_celeb,@TheJudge44,"RT @swbrailriders: Congrats to RailRider Jake Cave, earning the #MiLBY for 2016's Top Home Run! https://t.co/7CenYjFFHF https://t.co/0Zfclz…" +11/01/2016,Sports_celeb,@TheJudge44,Every athlete young and old needs to read this!! Wow! https://t.co/CigCAFybM5 +10/30/2016,Sports_celeb,@TheJudge44,@T_Garrison11 👀👀 whoaaaaa!!! +10/29/2016,Sports_celeb,@TheJudge44,😂😂 https://t.co/9tpBiZBcqD +10/15/2016,Sports_celeb,@TheJudge44,"RT @steinersports: There's no better feeling than meeting your heroes on a beautiful Saturday afternoon. 💯 + +#BabyBombers™ making dreams com…" +10/05/2016,Sports_celeb,@TheJudge44,Thanks for all the amazing support during my @Esurance #CallUpWorthy season in the Bronx. Can’t wait for 2017! https://t.co/uud0Byz9Oz +09/21/2016,Sports_celeb,@TheJudge44,RT @swbrailriders: Torres FLIES TO RIGHT!!! YOUR RAILRIDERS ARE GILDAN TRIPLE-A NATIONAL CHAMPIONS! A 3-1 FINAL IN MEMPHIS! https://t.co/B3… +09/19/2016,Sports_celeb,@TheJudge44,Check out my latest timepiece! Thanks @boldrwatches #warhawk #beboldr https://t.co/rvQKZaPPiJ +09/15/2016,Sports_celeb,@TheJudge44,@theprestonb15 great meeting you yesterday! Good luck in the tourney!👊 +09/09/2016,Sports_celeb,@TheJudge44,Excited to support such a great cause! All proceeds go to the Kids Place in Tampa! https://t.co/GW0puDAlg2 https://t.co/G5foeZr54p +09/09/2016,Sports_celeb,@TheJudge44,RT @Its_all_Goody41: #TA. 👆🏽👆🏽 +08/27/2016,Sports_celeb,@TheJudge44,RT @BenHeller21: Thank you to everyone for the support tonight! Making my debut was even better than what I've always dreamed it of being!… +08/26/2016,Sports_celeb,@TheJudge44,Dreamed of playing ball at the highest level since I was a kid. Honored to be @esurance #CallUpWorthy in The Bronx! https://t.co/nopf4uUBqB +08/19/2016,Sports_celeb,@TheJudge44,No words to describe the moment when you are @esurance #CallUpWorthy Shout out to everyone for the support this week https://t.co/MNXZjg3oIM +08/17/2016,Sports_celeb,@TheJudge44,RT @MLBNetwork: One of the Baby Bombers! The @Yankees' @T1721Austin joins #MLBCentral right now https://t.co/qAA3i5GznI +08/04/2016,Sports_celeb,@TheJudge44,"RT @Its_all_Goody41: BIG CONGRATS to my brother @ElGarySanchez on his first hit! Couldn't be happier!! 2,999 to go #vamo" +08/02/2016,Sports_celeb,@TheJudge44,"Make a difference, Lord willing! https://t.co/oXzYwapR5Y" +07/29/2016,Sports_celeb,@TheJudge44,RT @JDiazZone: @NickSwisher thanks brother!! https://t.co/zMFcYwnf4N +07/04/2016,Sports_celeb,@TheJudge44,RT @ov_1: @TheJudge44 how fun was this night? We won that dinger derby! @CollegeHRDerby https://t.co/Lb0BPVeD5s +06/26/2016,Sports_celeb,@TheJudge44,"RT @MiLB: #Yankees catcher @the_higster has two homers, a career-high seven RBIs for @TrentonThunder. https://t.co/WtbatSqk6R https://t.co/…" +06/25/2016,Sports_celeb,@TheJudge44,What a night!!💪 @T1721Austin https://t.co/YF00wTMeSN +06/16/2016,Sports_celeb,@TheJudge44,RT @Cut4: .@Yankees prospect @JakeCave8 went yard yesterday … onto the roof of an apartment building: https://t.co/P0swXQkcmk https://t.co/… +06/10/2016,Sports_celeb,@TheJudge44,RT @JakeCave8: Some travelaid for this long bus trip @LifeAIDBevCo https://t.co/pnaR1BtXnk +06/09/2016,Sports_celeb,@TheJudge44,#tbt #MLBDraft https://t.co/P95TavuGdd +06/07/2016,Sports_celeb,@TheJudge44,"RT @MiLB: #Yankees No. 8 prospect Tyler Wade is learning second base, leading by example in Double-A https://t.co/OtKsFH95Tj https://t.co/D…" +06/05/2016,Sports_celeb,@TheJudge44,@JakeCave8 🌚... +05/29/2016,Sports_celeb,@TheJudge44,@LA_Swiftness 🤔 #SplashBrothers +05/17/2016,Sports_celeb,@TheJudge44,"RT @YESNetwork: The @Yankees don't just have one player making his MLB debut tonight... + +Introducing: Conor Mullee! #YANKSonYES https://t.c…" +05/12/2016,Sports_celeb,@TheJudge44,#Throwback https://t.co/3beQJpabzL +05/11/2016,Sports_celeb,@TheJudge44,RT @E_Jagielo: 500 retweets and I shave my head! +05/10/2016,Sports_celeb,@TheJudge44,RT @YESNetwork: Ben Gamel records his first career MLB base hit! Better hang onto that ball. #YANKSonYES https://t.co/dfC3IpwbsU +05/10/2016,Sports_celeb,@TheJudge44,Atta boy Benny!! #FirstKnock +05/01/2016,Sports_celeb,@TheJudge44,"RT @TYRadioGuy: T-Yanks @MarkPayton2 (3-for-4, R) recorded his 3rd 3-hit game of the season and is batting .329. #Yankees" +05/01/2016,Sports_celeb,@TheJudge44,RT @TYRadioGuy: T-Yanks @MichaelONeill10 (1-for-3) is now on a 6-game hitting streak and owns a .338 batting average. #Yankees +04/27/2016,Sports_celeb,@TheJudge44,There is nothing better then getting a win on your birthday! Thank you to everyone for the happy birthday wishes. +04/22/2016,Sports_celeb,@TheJudge44,"@TheDA53 anytime brother, glad I could help!" +04/21/2016,Sports_celeb,@TheJudge44,I met a lot of future Yankees tonight! #Railriders @swbrailriders https://t.co/N1DMgtKND6 +04/15/2016,Sports_celeb,@TheJudge44,RT @StevenOleksy: Thank you to the @swbrailriders I had a blast&met some true professionals @TheJudge44 @NickSwisher @heathcott_slade https… +04/15/2016,Sports_celeb,@TheJudge44,RT @the_higster: @TheJudge44 @A_Smitty38 @EvanRutckyj pretty stoked to get on @TheDivisionGame with you guys @Ubisoft https://t.co/h4KfqjtR… +04/14/2016,Sports_celeb,@TheJudge44,What a game! #MambaDay +04/12/2016,Sports_celeb,@TheJudge44,RT @PlayersTribune: The inside stories that define @kobebryant from those who know him best. https://t.co/8OKwBHaeHl https://t.co/tmaORIrE09 +04/10/2016,Sports_celeb,@TheJudge44,@Rob_Refsnyder and I are having a strong debate here and we need some help... +04/04/2016,Sports_celeb,@TheJudge44,@HOHLin1 @watCanBROWNdo4 Thanks Brady!! Hope all is well with you guys! #Pilots +04/04/2016,Sports_celeb,@TheJudge44,RT @swbrailriders: Look who's locker is ready to go....@TheJudge44 #MiLBisback https://t.co/Ko22r5iIYK +03/27/2016,Sports_celeb,@TheJudge44,He is Risen! +03/22/2016,Sports_celeb,@TheJudge44,RT @LoHudYankees: Meet Dan Fiorito: Your favorite prospect's favorite prospect https://t.co/uzcB1n4ZTJ +03/17/2016,Sports_celeb,@TheJudge44,@JakeCave8 we need to talk....🌚 https://t.co/jIU30FNEpW +03/13/2016,Sports_celeb,@TheJudge44,@Fresno_State is going dancing! #GoDogs +03/06/2016,Sports_celeb,@TheJudge44,Go Bolts!! @TBLightning https://t.co/oTekzsaDA4 +03/01/2016,Sports_celeb,@TheJudge44,Thank you @JamesKaprielian and @_tylerwade for locking me and @MichaelONeill10 into the #TheBachelor 🌹 +02/29/2016,Sports_celeb,@TheJudge44,RT @Brett_Phillips8: Oh goodness he's back 😑 that guy has an ugly laugh smh https://t.co/AH5w9xuWRg +02/25/2016,Sports_celeb,@TheJudge44,RT @_tylerwade: Best time of the year is back! #springtraining2016 who's ready ? https://t.co/CrRGxiuxjb +02/24/2016,Sports_celeb,@TheJudge44,@EddyRodriguezU hahaha😂 +02/14/2016,Sports_celeb,@TheJudge44,@SuaveCF1 hahaha stoppp😂 +02/12/2016,Sports_celeb,@TheJudge44,RT @StephenCurry30: Aiming for the back to back. Lacing up in the new #CurryTwo Energy. #PlayForMore. https://t.co/Gx2Wm2en7J +02/11/2016,Sports_celeb,@TheJudge44,RT @JamesKaprielian: Bryson Tiller live as usual @elijahsteen7 @kyleholder22 @TheJudge44 @_tylerwade +02/07/2016,Sports_celeb,@TheJudge44,Yesss!!😂 https://t.co/iKkt0vpVIR +02/07/2016,Sports_celeb,@TheJudge44,@JakeCave8 😢 +01/30/2016,Sports_celeb,@TheJudge44,"RT @TYRadioGuy: Happy #Gasparilla day, #TampaBay!" +01/30/2016,Sports_celeb,@TheJudge44,@jp_crawford I'll see you at Spring Training brother! 💪 +01/19/2016,Sports_celeb,@TheJudge44,@AaronHicks31 @JJRedick 🔥🔥🔥 +01/14/2016,Sports_celeb,@TheJudge44,@Mark_Gawenus @MLB 👌👌 +01/12/2016,Sports_celeb,@TheJudge44,@t_dugas1 🌚 #incredible +01/12/2016,Sports_celeb,@TheJudge44,RT @masonkatz58: Well dang. What a great game +01/12/2016,Sports_celeb,@TheJudge44,@Montanez_10 🤔 +01/12/2016,Sports_celeb,@TheJudge44,"RT @Mike_Anthony13: @TheJudge44 my family sends thanks for being 7foot11 and in yellow, made it easy for them to find me in this😂😂 https://…" +01/12/2016,Sports_celeb,@TheJudge44,@Mike_Anthony13 glad I could help!!😂 haha #bigbird +01/12/2016,Sports_celeb,@TheJudge44,@_tylerwade good call!😎 +01/11/2016,Sports_celeb,@TheJudge44,@t_dugas1 @CoachMurph35 I know you and @A_Smitty38 are #ALLIN too right? +01/11/2016,Sports_celeb,@TheJudge44,@CoachMurph35 🌚 #ALLIN +01/11/2016,Sports_celeb,@TheJudge44,#NationalChampionship  tonight who you guys going for you? #ALLIN  #RollTide +01/10/2016,Sports_celeb,@TheJudge44,RT @MiLB: Color this week's Podcast Red w/guests @E_Jagielo & dir. of player development Jeff Graupe. https://t.co/hl2up15u2x https://t.co/… +01/10/2016,Sports_celeb,@TheJudge44,RT @MLBPipeline: Tons of future stars at @MLB's Rookie Career Development Program. Who can you spot? Top 100: https://t.co/Z9gx7UiSxD https… +01/03/2016,Sports_celeb,@TheJudge44,What a half!! #alamobowl #LeaveItAllOnTheField +12/31/2015,Sports_celeb,@TheJudge44,What a time! #2015 https://t.co/mnPoRn3BYr +12/26/2015,Sports_celeb,@TheJudge44,@Joshuapoytress Merry Christmas poyt! +12/26/2015,Sports_celeb,@TheJudge44,Merry Christmas everyone! Remember the reason for the season and always count your blessings! #MerryChristmas +12/24/2015,Sports_celeb,@TheJudge44,@Stuivailala wrapping!! +12/23/2015,Sports_celeb,@TheJudge44,@jtfiles5 what have you been up to man!? +12/20/2015,Sports_celeb,@TheJudge44,@saigeypoo11 @JakeCave8 @SamBrack_ this is what happens when I get on the keys...🔥🔥🔥 https://t.co/ERpzgVZo89 +12/19/2015,Sports_celeb,@TheJudge44,@JakeCave8 @rutckyj_ the force is strong with this one! +12/19/2015,Sports_celeb,@TheJudge44,Time for #StarWarsTheForceAwakens @rutckyj_ have you seen it yet?!? +12/15/2015,Sports_celeb,@TheJudge44,RT @YESNetwork: #Yankees sign Hall of Famer & 12-time All-Star RF Dave Winfield on this day in 1980: https://t.co/jBy7U56KJq https://t.co/E… +12/15/2015,Sports_celeb,@TheJudge44,@_GBIRD33 @ReverandLorenz 🙌🙌 +12/13/2015,Sports_celeb,@TheJudge44,#monicagotrobbed https://t.co/79qN7yv2iv +12/12/2015,Sports_celeb,@TheJudge44,#monicagotrobbed https://t.co/Gne9YbWrYW +12/10/2015,Sports_celeb,@TheJudge44,Congrats to @JakeCave8 and @rutckyj_ ! Gonna miss ya guys but well deserved! #Reds #Braves +12/06/2015,Sports_celeb,@TheJudge44,@rutckyj_ @_GBIRD33 @RollerKyle @the_higster @EA @starwars already got it man!!! We need to play ASAP! +12/06/2015,Sports_celeb,@TheJudge44,"@Munz16 It's a Wonderful Life, come on man!!" +12/06/2015,Sports_celeb,@TheJudge44,Time for the best movie during the holidays!! 🙌 https://t.co/O7g1CCT7JB +12/06/2015,Sports_celeb,@TheJudge44,"@Meyer17A haha we might have to set up a game!! Hope all is well brotha, happy holidays to you as well!" +12/06/2015,Sports_celeb,@TheJudge44,"Getting the arm loose with a football today, where you at @heathcott_slade?! https://t.co/bZUlpJN1Uq" +12/03/2015,Sports_celeb,@TheJudge44,@_GBIRD33 finally!!! #Bird +12/01/2015,Sports_celeb,@TheJudge44,@chuckiefick better late than never!! 😂Hope all is well! +11/26/2015,Sports_celeb,@TheJudge44,RT @Yankees: We are thankful today and every day that we have the greatest fans. #PinstripePride https://t.co/eP0WpCVjJL +11/26/2015,Sports_celeb,@TheJudge44,"Happy Thanksgiving everyone!! Thankful for my family, friends and all of God's blessings! #HappyThanksgiving 🦃" +11/26/2015,Sports_celeb,@TheJudge44,@JakeCave8 how's the winter league been?? https://t.co/ecjoETroV5 +11/12/2015,Sports_celeb,@TheJudge44,@MurphsLaws hahaha I was just telling that story the other day!!😂 #Dangit +11/07/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder so you got jokes now...? +11/07/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder great!! Can't wait to stop by!! +10/13/2015,Sports_celeb,@TheJudge44,RT @MLBPipeline: The Great Gary! @Yankees' Sanchez hits 3-run bomb in opening inning of @MLBazFallLeague: http://t.co/0zkSawOOaF http://t.c… +10/06/2015,Sports_celeb,@TheJudge44,RT @Yankees: The #WildCard scene is set. #ChaseFor28 http://t.co/ax0lQKhIbc +10/03/2015,Sports_celeb,@TheJudge44,RT @SuaveCF1: 1st career at bat = 1st career hit #waaaayyyyup #BLESSED 🙏☝️ •… https://t.co/WWhg6ZvfjQ +09/26/2015,Sports_celeb,@TheJudge44,"My friend Lee is running half an IronMan to raise money for a little girl in need named Valeria, please check it out! http://t.co/VrqhHKLkEu" +09/15/2015,Sports_celeb,@TheJudge44,Slade!! #clutch #GreatMohawk +09/13/2015,Sports_celeb,@TheJudge44,@JakeyReed5 you watching this game?!? #UOvsMSU +09/12/2015,Sports_celeb,@TheJudge44,"RT @tylerbeede: ""What no eye has seen, what no ear has heard, and what no human mind has conceived"" — the things God has prepared for those…" +09/11/2015,Sports_celeb,@TheJudge44,RT @MLBNetwork: Never forget. http://t.co/CPZr06ztb2 +09/05/2015,Sports_celeb,@TheJudge44,@applextree thanks for the help tonight! +09/05/2015,Sports_celeb,@TheJudge44,RT @MiLB: Now on http://t.co/h5NSY7VuJN: Ben Gamel comes up with a diving catch for @swbrailriders. http://t.co/DszgWBi5ae +09/04/2015,Sports_celeb,@TheJudge44,RT @Its_all_Goody41: champagne showers @swbrailriders @GrantCagle2 @johnny_barbato @heathcott_slade @TheJudge44 @blail3 @SnapDragonMonty ht… +09/03/2015,Sports_celeb,@TheJudge44,RT @SuaveCF1: Thanks for making this road easier for me Brother #prepared #selfless #relentless https://t.co/9tTOEGcBnq +09/01/2015,Sports_celeb,@TheJudge44,"RT @YankeesPR: INF/OF Ackley, RHP Bailey, RHP Cotham, OF Noel, LHP Pazos, INF Pirela, INF Refsnyder & C Romine will be added to the active …" +08/31/2015,Sports_celeb,@TheJudge44,RT @TampaYankees: Congrats @MichaelONeill10 & @Gumbynation34 - The @FloridaStateLg Player & Pitcher of the Week! http://t.co/IFNbOWypb3 htt… +08/31/2015,Sports_celeb,@TheJudge44,RT @YankeesonDemand: Outfielder Ben Gamel has had a breakout season with the @swbrailriders: http://t.co/RA8tPlCDnM http://t.co/2V07YsPBDD +08/27/2015,Sports_celeb,@TheJudge44,@sean__ob great seeing you as well OB!! #BrewCrew +08/25/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder http://t.co/6QgG3Cb6L1 +08/24/2015,Sports_celeb,@TheJudge44,It's always great having a Yankee legend in town!! #MrOctober http://t.co/TZkg2yzikC +08/23/2015,Sports_celeb,@TheJudge44,"Thank you @Khaynes30 for showing me @getpopkey, if you don't have it yet you are missing out!! #gamechanger" +08/23/2015,Sports_celeb,@TheJudge44,RT @Justan_Mitchell: We'll stick to chocolate @DippinDots @TheJudge44 #Homer #Bombs +08/20/2015,Sports_celeb,@TheJudge44,RT @SportsNation: Yankees fans this morning #BirdIsTheWord https://t.co/lGxcT4zMMn +07/01/2018,Sports_celeb,@davidortiz,Grand Slam for my boy Rafael Devers and another great pitching performance by Chris Sale. Collect these great… https://t.co/ntdeiX2mZ3 +06/29/2018,Sports_celeb,@davidortiz,July 14th @ Fenway!! https://t.co/lOfHjT9lrk https://t.co/p8bXXYUw3h +06/28/2018,Sports_celeb,@davidortiz,JD Martinez continues to rakeee... no. 25 for my boy FLACO! Collect this great #TOPPSNOW moment for a limited time:… https://t.co/PjeI47FZXf +06/23/2018,Sports_celeb,@davidortiz,Hate 2 hear it...RIP 🙏🏿 https://t.co/SJOIt34DZF +06/23/2018,Sports_celeb,@davidortiz,Look out for Trout! He’s on his way to be one of the best. Check out these stats on this #TOPPSNOW card… https://t.co/NV3FIDGTAS +06/22/2018,Sports_celeb,@davidortiz,Summer. Baseball. Hanging with my boys. There are plenty of reasons to spark up the grill with @Kingsford. What’s y… https://t.co/QVUzMfLbID +06/21/2018,Sports_celeb,@davidortiz,Yesssir!! @toriihunter48 https://t.co/OwoRgHTbwJ +06/21/2018,Sports_celeb,@davidortiz,"RT @RedSox: A tribute to #NationalSelfieDay: + +First up, a 🐐 selfie... https://t.co/CNRniXAeyT" +06/15/2018,Sports_celeb,@davidortiz,This weekend only 😎 https://t.co/M6OCwbAaMe https://t.co/vaNX4sLZOV +06/15/2018,Sports_celeb,@davidortiz,Lookin forward 2 seeing the final product...check us out... https://t.co/CL56uEtfuc +06/14/2018,Sports_celeb,@davidortiz,Big news to share. I’m comin back to the game to work for @Topps. Check me out this season as the new lead scout fo… https://t.co/Ivy0M374ZN +06/13/2018,Sports_celeb,@davidortiz,My pleasure https://t.co/lZpLmLCzPa +06/13/2018,Sports_celeb,@davidortiz,LAST CHANCE! U & and guest are invited to golf with me @simplyaj10 n @joshwolfcomedy in the Dominican Republic. Thr… https://t.co/bx2rpNyWls +06/09/2018,Sports_celeb,@davidortiz,"Being a Father is not easy man 😂 but there is nothing better than getting to be a dad... + +make sure you show you da… https://t.co/xsZtrozDYv" +06/09/2018,Sports_celeb,@davidortiz,Love it when u call me big papi. Get the shirt n save lives: https://t.co/cdUaP5864D https://t.co/TJkswtG6Np +06/08/2018,Sports_celeb,@davidortiz,"RT @YankeeSpirits: Meet baseball legend, David ""Big Papi"" Ortiz! Just purchase one of 250 mixed cases of Arias Wine from the Yankee Spirits…" +06/07/2018,Sports_celeb,@davidortiz,I love golfing with my boys @joshwolfcomedy & @SimplyAJ10 but would RATHER hang with you this year. Enter an all-ex… https://t.co/IqEnbP4zRB +06/04/2018,Sports_celeb,@davidortiz,back home...en la casaaaa https://t.co/pPBe57hyz1 +06/02/2018,Sports_celeb,@davidortiz,Album drops Father’s Day 😂😂 Get the shirt + help raise $ for children in need: https://t.co/cdUaP5864D https://t.co/n8f0f0EfwE +06/01/2018,Sports_celeb,@davidortiz,Did u enter?? Win an all expenses paid trip for 2 to golf with me @SimplyAJ10 & @joshwolfcomedy in the Dominican Re… https://t.co/V80kgzDvZU +05/25/2018,Sports_celeb,@davidortiz,"20% ALL weekend! Use code: memorialday20 + +🇺🇸 https://t.co/zNMsaBLYqJ https://t.co/PGiJgoKlZ2" +05/22/2018,Sports_celeb,@davidortiz,Big news....Me n my boys @joshwolfcomedy & @SimplyAJ10 want you to win the #bestfathersdayever. Join us for an all… https://t.co/rztFZ9Dt6J +05/19/2018,Sports_celeb,@davidortiz,👉👉 https://t.co/HukDADNmOu 👈 👈 https://t.co/S373hv32uB +05/16/2018,Sports_celeb,@davidortiz,Lets get ittt ☘️☘️☘️ https://t.co/xteMOaGjBO +05/15/2018,Sports_celeb,@davidortiz,Back home... https://t.co/P23VnMM8NY +05/10/2018,Sports_celeb,@davidortiz,¿Quień me acompañará en la parrillada de @Kingsford antes de los partidos de béisbol esta semana? #Patrocinado https://t.co/dipzaYSNt4 +05/05/2018,Sports_celeb,@davidortiz,My brother super proud of calling my self your friend and being able to play and watch one of the best that ever pl… https://t.co/0tsN2ckEwh +05/02/2018,Sports_celeb,@davidortiz,Mookie....😳😳😳 +05/01/2018,Sports_celeb,@davidortiz,Check this out!!!! https://t.co/g7SzjcUAks +04/26/2018,Sports_celeb,@davidortiz,Life's good. #XLStyle https://t.co/KrKn9weqHW https://t.co/XA1KeQ6LDN +04/26/2018,Sports_celeb,@davidortiz,"RT @DavidOrtizFund: #Teampapi completed the @BostonMarathon collectively raising $145,957 for 29 ❤️ surgeries. Let’s push 1️⃣ more mile for…" +04/24/2018,Sports_celeb,@davidortiz,Feel like the environment is in the bottom of the 9th? Make sure green wins by voting to help 4 earth-friendly caus… https://t.co/3YO4pdmd7j +04/24/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: Day 2 of the #TheBigPapiStory jersey sweepstakes with @DavidOrtiz. + +Follow this link to enter: https://t.co/wTzrtcp7ZX…" +04/24/2018,Sports_celeb,@davidortiz,RT @Bachy5: Just got my @davidortiz gear and love it. Check it out and definitely make a purchase at https://t.co/1QMMpNPZwQ! #GR34TNESS #B… +04/23/2018,Sports_celeb,@davidortiz,PapiFit #XLStyle https://t.co/8KohrmPeFS +04/23/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: The curse was broken. @DavidOrtiz was a big reason why. + +Check out #TheBigPapiStory on @ApplePodcasts: https://t.co/5x…" +04/21/2018,Sports_celeb,@davidortiz,Uptown girl and a kid from the Dominican. Great time last nite @ #MLBfoodfest @SeaBrinkley proud partner… https://t.co/NONbxooAsP +04/20/2018,Sports_celeb,@davidortiz,@DougFlutie and I want to wish a happy 200th birthday to our friends at @easternbank ...celebrate with us and comme… https://t.co/GNIzXfudLF +04/20/2018,Sports_celeb,@davidortiz,"RT @RedSox: [Insert tweet about Mookie’s leadoff HR, Devers’ 3-hit night, E-Rod’s quality start, another sweep, the 16th win, etc.] https:/…" +04/19/2018,Sports_celeb,@davidortiz,"RT @SpotifyUSA: From growing up in the Dominican Republic to becoming a @RedSox legend, listen to the in-depth story of @davidortiz in #The…" +04/19/2018,Sports_celeb,@davidortiz,"Sharing some of my raw and unscripted thoughts on the marathon bombing, as we remember the victims and everyone sti… https://t.co/NZ9EVVfTz2" +04/19/2018,Sports_celeb,@davidortiz,Beautiful day at home cleaning my toys 🌞 https://t.co/E48JuETkf8 +04/18/2018,Sports_celeb,@davidortiz,Finally....style meets comfort. #XLStyle https://t.co/KrKn9weqHW https://t.co/qIscF9sH3t +04/18/2018,Sports_celeb,@davidortiz,My journey to #Fenway was not an easy one but I’m very thankful for my compadre @45PedroMartinez .. If it weren’t f… https://t.co/B4Sa6wVbPN +04/17/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: .@DavidOrtiz recalls how the #BostonMarathon bombing gave @RedSox motivation to ""kick ass"" that season. + +Subscribe now…" +04/17/2018,Sports_celeb,@davidortiz,I wanna see if this kid Ohtani is really thaaat good tonite against MY boys.... +04/17/2018,Sports_celeb,@davidortiz,"Coming to the U.S. meant more than just an education in baseball, it meant learning a whole new way of life. David… https://t.co/llkwRpLf1Q" +04/16/2018,Sports_celeb,@davidortiz,I was just a kid from Santo Domingo 🇩🇴 with a dream of playing #baseball. Let’s start at The Beginning. David Orti… https://t.co/SjvZLs2Eux +04/16/2018,Sports_celeb,@davidortiz,TeamPapi - @bostonmarathon - COMPLETE!!! Dayle Solomont Hillary Throckmorton n Roberta Ruiz bringing us home!!! ver… https://t.co/6zxVAMHSD7 +04/16/2018,Sports_celeb,@davidortiz,another wave of TeamPapi finishes the @bostonmarathon ...way to go Nick Jacoby Sergio Tortora Demetri Tsolakis Jill… https://t.co/XK8KKNXdxH +04/16/2018,Sports_celeb,@davidortiz,Team Papi starting 2 finish the @bostonmarathon ...congrats Daron Holloway Brian Reh n Craig Wilke. Job well done. #pinchrunforpapi +04/16/2018,Sports_celeb,@davidortiz,Proudly cheering my Pinch Runners in the Boston Marathon today. Stay safe n know Papi is behind u all the way. Get… https://t.co/bUzbK6j5LR +04/15/2018,Sports_celeb,@davidortiz,Go C’s 🍀 +04/15/2018,Sports_celeb,@davidortiz,5 years later IT’S STILL OUR F*ING CITY! Help @RobGronkowski and me raise money for the kids of Boston and get your… https://t.co/JRqheAvftB +04/13/2018,Sports_celeb,@davidortiz,"Coming soon: My journey, my story. David Ortiz: The Big Papi Story is out on #PatriotsDay. Subscribe now on… https://t.co/KVGE1rnfyT" +04/13/2018,Sports_celeb,@davidortiz,Proud to team up with one of Boston’s finest....my brother @RobGronkowski ...we created this t-shirt to raise $ for… https://t.co/Eb0n0lQn2U +04/13/2018,Sports_celeb,@davidortiz,10-2....keep it rollinnnn boys 😁😁 +04/12/2018,Sports_celeb,@davidortiz,This rite here gave me chills.. https://t.co/8PElVNh1Yo +04/12/2018,Sports_celeb,@davidortiz,Activo activooo. Feelin good this morning. Travis Scott I see u lil bro 👌🏿👌🏿 https://t.co/nW59A1iW9v +04/11/2018,Sports_celeb,@davidortiz,@SimplyAJ10 know how to have fun but know how to play the game.. giving u a chance to win tickets to the Sox vs Ori… https://t.co/JJ4OblNYs9 +04/10/2018,Sports_celeb,@davidortiz,My #pinchrun4papi campaign rasied over $100K so far and our auction ends today at 6pm EST. Proceeds go to #34 kids… https://t.co/yBLemFtyMv +04/10/2018,Sports_celeb,@davidortiz,"RT @DavidOrtizFund: 🚨 UPDATE Your efforts have helped us raise $101,371 so far. Visit our online auction to bid on exclusive packages inclu…" +04/09/2018,Sports_celeb,@davidortiz,A winning combination. #xlstyle https://t.co/bblsk5gr83 +04/07/2018,Sports_celeb,@davidortiz,Thats my guy!!! https://t.co/hJ9stuNNj3 +04/06/2018,Sports_celeb,@davidortiz,"Look good, feel good. #XLstyle https://t.co/KrKn9weqHW https://t.co/ptTP7uaqB0" +04/06/2018,Sports_celeb,@davidortiz,"Got a couple tickets to Red Sox vs Orioles Sunday, April 15th at Fenway. Go grab gear from my store and I might jus… https://t.co/4YEL29KVQG" +04/05/2018,Sports_celeb,@davidortiz,RT @MLB: Champions. 🏅🏆 https://t.co/fT00umKABQ +04/05/2018,Sports_celeb,@davidortiz,Submit ur little baseball stars best swing for a chance to win a big VIP weekend at the All-Star game with… https://t.co/oHQZfs14QD +04/04/2018,Sports_celeb,@davidortiz,"RT @bigpapiprod: Who's ready for the #SeasonFinale of Big Papi Needs a Job? Tonight, David channels his roots and learns how to salsa from…" +04/04/2018,Sports_celeb,@davidortiz,So happy I could join the kids from the Hurley School today 2 help kick off the season...these caps from @JetBlue n… https://t.co/UXa68ENUMD +04/02/2018,Sports_celeb,@davidortiz,My Style. #XLStyle https://t.co/KrKn9weqHW https://t.co/h71gRGxmvG +03/30/2018,Sports_celeb,@davidortiz,The best brands. Great Styles. Unrivaled fit. That’s DXL. #XLStyle https://t.co/KrKn9weqHW https://t.co/CZk5mnfdnC +03/29/2018,Sports_celeb,@davidortiz,Biggg day for baseball - #OpeningDayisBack! Get ur grills fired up and celebrate with @Kingsford https://t.co/3EYOMkh0oo #Sponsored +03/28/2018,Sports_celeb,@davidortiz,Big Papi the Trainer 😂💪🏿 https://t.co/SOW06LZHEW +03/28/2018,Sports_celeb,@davidortiz,Don’t get stuck in the office – I’ve signed your permission slip to take tomorrow afternoon off to grill and celebr… https://t.co/Yf897qPTg5 +03/26/2018,Sports_celeb,@davidortiz,"Important message from @DavidOrtizFund ...for a LIMITED time, your $150 donation to @DavidOrtizFund earns you a vou… https://t.co/h8EcEeQyeo" +03/23/2018,Sports_celeb,@davidortiz,"RT @FansAuthentic: RT to spread the word! @Fanatics & the @RizzoFoundation, along with our partners, have come together to help the familie…" +03/21/2018,Sports_celeb,@davidortiz,Walk slowly n don't panic they said....but man deconstructing a bomb ain’t that easy!! Thankfully I had the bomb sq… https://t.co/Ooi2D07niM +03/20/2018,Sports_celeb,@davidortiz,I gotta show luv for my boy Tewks...his book comes out today. will make u look at baseball totally different...Nine… https://t.co/NbIy6zKuPt +03/14/2018,Sports_celeb,@davidortiz,U may kno I have my own cigar line... but this week on @fusiontv I'm learning what it takes to actually make them..… https://t.co/tkmLLCUimY +03/14/2018,Sports_celeb,@davidortiz,"RT @RedSox: Chris Sale looking like Chris Sale. + +5.0 IP, 2 H, 0 R, 0 BB, 7 SO https://t.co/i2bdqan5f2" +03/14/2018,Sports_celeb,@davidortiz,Sorry 2 hear this....my prayers are with u and your fam https://t.co/HnxufDPuxO +03/14/2018,Sports_celeb,@davidortiz,#OpeningDayisBack! Check it out and get fired up! https://t.co/3EYOMkh0oo @Kingsford #Sponsored +03/10/2018,Sports_celeb,@davidortiz,spend $50 = FREE t-shirt! https://t.co/wGW4xlNOS9 https://t.co/Xy31elWTSg +03/07/2018,Sports_celeb,@davidortiz,Taste testing @SamuelAdamsBeer in the morning?? Thats my kinda job... #BigPapionFUSION returns tonite @ 8PM ET/PT o… https://t.co/HSsCCQmigw +03/07/2018,Sports_celeb,@davidortiz,Gym flow 💪🏿 https://t.co/BKJ1YZLrHu +03/07/2018,Sports_celeb,@davidortiz,RT @fusiontv: These Little Leaguers will have the coolest story to tell at practice thanks to @DavidOrtiz and his batting cage tips. #BigPa… +03/06/2018,Sports_celeb,@davidortiz,How bout 34 bonus points 😂😂 u better all pass!!!! Much luv https://t.co/7683esVPgK +03/05/2018,Sports_celeb,@davidortiz,Important......ALL proceeds will go to Stoneman Douglas victims. Bid today @Fanatics to win a 60 minute batting les… https://t.co/1Qgi1u7Xqr +03/04/2018,Sports_celeb,@davidortiz,He didn’t like the ‘Yankee’ part of the @TheYankeeCandle 😂😂 but each purchase raises $ for children that need heart… https://t.co/8qFt8P48Lc +03/02/2018,Sports_celeb,@davidortiz,😂😂😂 yall are funny...u def watched the show tho!!! https://t.co/qZQQUyiD4G +03/01/2018,Sports_celeb,@davidortiz,Hurry! Last chance to win tickets to Red Sox vs Yankees March 3rd at Jet Blue Park. Head over to the store while th… https://t.co/QIfn7sQIWn +03/01/2018,Sports_celeb,@davidortiz,It's never too late to support Heart Health Month. Get sum cool merch & help the kids https://t.co/WQawQIjH9q… https://t.co/9jzgsDnnPL +02/28/2018,Sports_celeb,@davidortiz,Running into burning buildings to save lives is one of the many reasons I admire @BostonFire .. I got big boots to… https://t.co/1injJinyIc +02/27/2018,Sports_celeb,@davidortiz,Who wants tickets?! March 3rd @ Jet Blue Park. All you gotta do is grab some gear and I might pick you🌴… https://t.co/JeJ8xbFEFO +02/27/2018,Sports_celeb,@davidortiz,Un día como hoy nuetra patria se convirtio en libre e independiente gracias a esos hombres de orgullo y mucho valor… https://t.co/Us2eghPHfT +02/27/2018,Sports_celeb,@davidortiz,"RT @fusiontv: Is @DavidOrtiz ready for his toughest opponent yet? + +Check out the jobs he'll be doing Wednesdays @ 8PM ET/PT. #BigPapionFUSI…" +02/22/2018,Sports_celeb,@davidortiz,Me and my boy rite here...these Capuchin monkeys are tougher than u think!! Watch my adventure as a zookeeper tonig… https://t.co/cxcGRWLZ78 +02/21/2018,Sports_celeb,@davidortiz,With my man gallo at elite athletes performance doing it + my brother placido polanco #retirenotexpire https://t.co/BGDuzm4oRE +02/17/2018,Sports_celeb,@davidortiz,Ready for the long weekend? Get 25% off everything on my site now thru Monday! #PresidentsDay #PapiApproved… https://t.co/xIQsgr8I8H +02/14/2018,Sports_celeb,@davidortiz,"""If you can’t stand the heat, get out of the kitchen.” Cooking is a hard job bro...check out what I mean on… https://t.co/9H4oXYb3is" +02/14/2018,Sports_celeb,@davidortiz,"RT @fusiontv: Big Papi: ""Man, I'm nervous."" +Customer: 'Whoah, that is not what I want to hear right now."" + +Will @DavidOrtiz make the cut?…" +02/07/2018,Sports_celeb,@davidortiz,Tonite 8pm on @fusiontv #BigPapiOnFusion https://t.co/IYCziUw8KR +02/04/2018,Sports_celeb,@davidortiz,"Who wore it best? Big Papi, the most trusted coach of all time, or the most trusted battery of all time? #notdone… https://t.co/MLwYvIERE8" +02/03/2018,Sports_celeb,@davidortiz,Yuppp @Duracell always does its job. Just like the most trusted coach of all time and my boys in red n blue #letsgo… https://t.co/WDLaamjCo0 +02/01/2018,Sports_celeb,@davidortiz,I see u Danielle!! sounds like the job is #NotDone yet. We ready for #SBLII #FootballFeelings @Bose https://t.co/sHSpTuJs0s +02/01/2018,Sports_celeb,@davidortiz,RT @fusiontv: More cowbell! Watch as #BigPapi @DavidOrtiz learns to play percussion after his @MLB retirement. Tonight is the premiere of #… +01/22/2018,Sports_celeb,@davidortiz,RT @RealBillRussell: Please support @davidortiz wonderful charity and buy a cookbook @ https://t.co/8t83P2n7Mh Lots of NE legends #redsox… +01/12/2018,Sports_celeb,@davidortiz,RT @fusiontv: .@DavidOrtiz is on the job hunt after his @MLB retirement. What job do you think he should pick up? Tweet at us using #BigPap… +01/04/2018,Sports_celeb,@davidortiz,"RT @fusiontv: .@DavidOrtiz officially retired from the baseball field in 2016, but now he's looking for a job #BigPapiOnFUSION https://t.co…" +01/02/2018,Sports_celeb,@davidortiz,RT @FansAuthentic: PUBLIC SIGNING ✍🏾 | #FanaticsExclusive athlete @DavidOrtiz will be appearing @SteinerSportsNY on Jan. 22. 📞(516) 739-058… +01/02/2018,Sports_celeb,@davidortiz,Thx 2 Tiziano De Stefano for the pic #NewProfilePic https://t.co/MkKyz4HQeQ +01/02/2018,Sports_celeb,@davidortiz,This is important!! NEED u all to help out my friend Andy...he needs to get this surgery ASAP. Im making a donation… https://t.co/1buXwxL5zv +12/22/2017,Sports_celeb,@davidortiz,"Cooking With The Pros book is out yall. All my boys involved too... @RobGronkowski, Troy Brown, The Allens,… https://t.co/rVJEg6Wrzf" +12/19/2017,Sports_celeb,@davidortiz,"RT @bigpapiprod: Tune in January 31st at 8pm for #BigPapionFUSION! Check your local listings here: https://t.co/H6atXgA3oV. + +@davidortiz @…" +12/18/2017,Sports_celeb,@davidortiz,Big congrats 2 my boy @kobebryant on the the jersey retirement tonite... well deserved Mamba!!! this video is a gr… https://t.co/yDmbadUffH +12/14/2017,Sports_celeb,@davidortiz,Help Give the Precious Gift of Health to Children in Need. Support the @DavidOrtizFund by purchasing this limited e… https://t.co/UZfqXrk5np +12/12/2017,Sports_celeb,@davidortiz,Perfect holiday gifts...bid on items donated by my boys @NKOTB @BusterPosey @PujolsFive #CarltonFisk n more...$$ go… https://t.co/v11XQF49h9 +12/10/2017,Sports_celeb,@davidortiz,My boy @garysheffield is all about #October2004 😂😂😂. Buy a shirt + save a life: https://t.co/7LQzDOZNuz https://t.co/AwsP0OLYec +12/05/2017,Sports_celeb,@davidortiz,Changing the conversation around mens #XLstyle...how do you XL? Follow @DestinationXL to see more of what we’re doi… https://t.co/CRZKu4pgIm +12/03/2017,Sports_celeb,@davidortiz,"#October2004 Game 7: 3/6, 2 HR, 6 RBI + +Aint no comeback w/out my boy @JohnnyDamon ... + +Save lives + buy an… https://t.co/NAFDrarl0T" +12/03/2017,Sports_celeb,@davidortiz,RT @MLB: The @davidortiz Celebrity Golf Classic = #SquadGoals https://t.co/U7qJyA7iYu +12/02/2017,Sports_celeb,@davidortiz,Only a couple hours left for the auction...help us out!!! 🙏🏿 https://t.co/oa798bZ06w +12/01/2017,Sports_celeb,@davidortiz,Luv u 2 bro...thx for helpin the @DavidOrtizFund https://t.co/dcto2xPnr0 +12/01/2017,Sports_celeb,@davidortiz,. @stoolpresidente @Jared_Carrabis @FeitsBarstool where you at?! Nothin but love for the @Patriots but u forget abo… https://t.co/U5dOVGC4A0 +11/30/2017,Sports_celeb,@davidortiz,Shouts 2 @JustinThomas34 for the auction items...much appreciated bro.. https://t.co/oa798bZ06w +11/30/2017,Sports_celeb,@davidortiz,U better make sure ur checkin https://t.co/oa798bZ06w ....we add new items every day. Just added a great US Open ex… https://t.co/7IovNS6QMY +11/28/2017,Sports_celeb,@davidortiz,I’m excited to help my friends @EasternBank for #GivingTuesday ...were looking for ideas to help Grow the Good in o… https://t.co/bKMXRqnomf +11/28/2017,Sports_celeb,@davidortiz,Its about that time!!! Help us out ... 🙏🏿 https://t.co/9xHePLIUlr? @DavidOrtizFund +11/25/2017,Sports_celeb,@davidortiz,I'm extending my #BlackFriday sales an extra day! Better hurry https://t.co/fNB7KAxVXj #PapiApproved https://t.co/33uojCvmxx +11/24/2017,Sports_celeb,@davidortiz,Happy #BlackFriday! Get FREE wristbands when you shop in my store today: https://t.co/oSUNJNSRg1 https://t.co/cZUneDqBqi +11/22/2017,Sports_celeb,@davidortiz,Hey @AROD ..u had it comin!! #Masterpass 😂😂 https://t.co/u1SuG2WQsI +11/22/2017,Sports_celeb,@davidortiz,It’s time to XL...had to snap the pic!! Check out @DestinationXL to see what we doin... #XLstyle https://t.co/2FPgih5fBJ +11/22/2017,Sports_celeb,@davidortiz,Get your holiday shopping done early! 🎁 https://t.co/VqtX6GXQsV #PapiApproved https://t.co/wi2T7VYWWN +11/17/2017,Sports_celeb,@davidortiz,"RT @ariaswines: You heard it here first, Pumpkin and Cranberry Arias Wine! Get yours while supplies last at https://t.co/8dkPRABeja https:/…" +11/16/2017,Sports_celeb,@davidortiz,"RT @ariaswines: Want insider info from Big Papi, special offers & a chance to win limited edition merch? Sign up for the wine club https://…" +11/16/2017,Sports_celeb,@davidortiz,"RT @isaiahthomas: Grindin all my life. The marathon continues. + +#BookOfIsaiah2, Chapter One: https://t.co/88pDuqiXkT +@NipseyHussle @TeeJa…" +11/16/2017,Sports_celeb,@davidortiz,"Join my official newsletter to get access to exclusive content and all my latest updates! + +Sign up today:… https://t.co/nQkBOQ2A9o" +11/12/2017,Sports_celeb,@davidortiz,‘Frozen ropes’ 😂😂😂😂 https://t.co/jZKovRnG7f +11/10/2017,Sports_celeb,@davidortiz,"RT @bigpapiprod: Some lucky Boston locals giving David ideas for #BigPapiNeedsAJob, airing this fall on @ThisIsFusion. @davidortiz @Matador…" +11/10/2017,Sports_celeb,@davidortiz,RT @SInow: Get ready for Red Sox-inspired hockey jerseys on David Ortiz Night with the AHL’s Thunderbirds https://t.co/3pQfPTnc1z +11/07/2017,Sports_celeb,@davidortiz,RT @ariaswines: Will you be joining us and legends @davidortiz and @RayBourque77 at @TrescaNorthEnd tomorrow? https://t.co/avB4AOnTrf +11/06/2017,Sports_celeb,@davidortiz,It is officially time to XL...u gotta follow them @DestinationXL to keep up with what we got goin on... #XLStyle https://t.co/wVH0F2A6Wv +11/02/2017,Sports_celeb,@davidortiz,H-TOWN EN LA CASA!! congrats to my boys on the win...very deserved ⚾️🏅 https://t.co/DCkU1MlIDi https://t.co/AZU5OG0HKw +11/01/2017,Sports_celeb,@davidortiz,Dodger blue en la casaaa +10/31/2017,Sports_celeb,@davidortiz,Thx for the love @BenReiter https://t.co/JALVWEkCVu +10/30/2017,Sports_celeb,@davidortiz,Boston #smallbiz owners its not easy calling the shots but NOW is ur chance! Enter ur biz @ https://t.co/eSyrdm4kdS #GrowYourBizContest #Ad +10/29/2017,Sports_celeb,@davidortiz,.@BillSimmons thinks I should have my own reality show? Wayy ahead of U man. BIG PAPI NEEDS A JOB premieres on Nov 29th @ 8:30 ET @fusiontv +10/28/2017,Sports_celeb,@davidortiz,"N’that house H town & LA haha... +En la casa H town & LA 😎 + +https://t.co/9htqiirvTg https://t.co/1EOqUXdjcM" +10/28/2017,Sports_celeb,@davidortiz,RT @ariaswines: Join us at @TrescaNorthEnd w/ @davidortiz & @RayBourque77 for a🍷 and cigar night benefiting @DavidOrtizFund & the Bourque F… +10/27/2017,Sports_celeb,@davidortiz,My boys may not be in it but Im still watching this crazy #WorldSeries on FOX with @YouTubeTV. You can 2 → https://t.co/x5WWhJzubt #ytspon +10/27/2017,Sports_celeb,@davidortiz,All smiles #OnThisDay in 2004 with my g unit hat 😆 read why winning in 04 was the most special to me ➡️… https://t.co/or5VIrpV9q +10/26/2017,Sports_celeb,@davidortiz,"RT @MagicJohnson: Hanging out on the FOX set during the World Series with baseball royalty @AROD, Big Papi @davidortiz, @TheBigHurt_35 and…" +10/25/2017,Sports_celeb,@davidortiz,RT @celtics: #GetWellGordon 💚 https://t.co/uKHeuGmfS6 +10/24/2017,Sports_celeb,@davidortiz,"RT @LasMayores: No se pueden olvidar que hoy es #LunesDeLeyenda. +¿Recuerdan el 1er HR del ""Big Papi"" en una #SerieMundial? +¡Qué momento! 😳😎…" +10/21/2017,Sports_celeb,@davidortiz,@kevinburkhardt @SueBnKB @Seratelli @AROD @TheBigHurt_35 Not at all😬...... 5hit haha ...... sorry my fault 🙌🏿 +10/20/2017,Sports_celeb,@davidortiz,It may seem farfetched but I just tried being a dog walker 😂. What should I do next as a #RetirementRookie with… https://t.co/rIxYdcSdjR +10/18/2017,Sports_celeb,@davidortiz,RT @DavidOrtizFund: We're partnering w/@cocacola for the 10th Annual @DavidOrtiz Celebrity Golf Classic Nov 30 - Dec 3. Register here https… +10/17/2017,Sports_celeb,@davidortiz,The list grows...tenemos otra!! join us - https://t.co/bOXSpuCS6Y https://t.co/qU0ASw5tET +10/17/2017,Sports_celeb,@davidortiz,"#OnThisDay in 2004, I had a game changing walk-off. lets see who remembers: https://t.co/GvR5NuBiwQ https://t.co/dwyDEH4xtW" +10/16/2017,Sports_celeb,@davidortiz,my boy Hanley comin....are u?? tix --> https://t.co/bOXSpuCS6Y https://t.co/EKaPhg7Tmc +10/14/2017,Sports_celeb,@davidortiz,"Please help my boy Jonny gomes to raise money for the crazy fires in north California. Every little bit helps. + +https://t.co/EQqjrAgUMD" +10/11/2017,Sports_celeb,@davidortiz,RT @BostonPoliceFnd: The 4th Annual Boston Police Foundation Gala is scheduled for November 8th at the Boston Marriott Copley Place.... htt… +10/07/2017,Sports_celeb,@davidortiz,Every connection counts on and off the field...celebrating relationships and teamwork... #CXDay w/ @DellTech #DellCX https://t.co/bUkX488Y3s +10/06/2017,Sports_celeb,@davidortiz,#FBF to when I announced that I’ve partnered with @easternbank for GOOD. Excited to give back to the community...… https://t.co/KGofqhmyDK +10/03/2017,Sports_celeb,@davidortiz,Yo @SHAQ where u at?? Thought u were comin to #DellCX day....@Dell https://t.co/cjtlVrff2V +10/02/2017,Sports_celeb,@davidortiz,"YA ESTAN A LA VENTA LOS BOLETOS PUERTO RICO SOMOS UNO EL CONCIERTO 19 DE OCTUBRE AMWAY CENTER ORLANDO FL. +https://t.co/AdAw968kdy?" +09/30/2017,Sports_celeb,@davidortiz,Congrats boys ☝🏾 +09/28/2017,Sports_celeb,@davidortiz,"RT @UNICEFUSA: 🎳 to help kids! THANKS Tiffany+@davidortiz, Shannon+#RayAllen for #TheProsBowl — fundraising for families affected by recent…" +09/28/2017,Sports_celeb,@davidortiz,Don't forget to grab one my Dominican Pride shirts to support hurricane relief & recovery efforts!… https://t.co/IBCcu0d5Cu +09/27/2017,Sports_celeb,@davidortiz,If you cant bowl w/ Ray Allen n me tonite @ #TheProsBowl in #Miami make sure to donate to help hurricane victims.. https://t.co/tQvvN1ZLlG +09/26/2017,Sports_celeb,@davidortiz,U coming to bowl with Ray Allen n me?? We’ll be raising $ for hurricane victims at #TheProsBowl @Kings_dine https://t.co/tQvvN1ZLlG +09/25/2017,Sports_celeb,@davidortiz,Woww I gotta show love. Big congrats to A Judge on homer #50....thats impressive stuff. My Sox still rolllin tho!! 😂😂 +09/25/2017,Sports_celeb,@davidortiz,"#MIAMI: On Wednesday, me and Ray Allen are raising $ for hurricane victims thru @UNICEF #TheProsBowl tix:… https://t.co/b0C6dlHRuw" +09/22/2017,Sports_celeb,@davidortiz,Challenging @max_domi @27BrettCecil to donate $5K 2 support those affected by #Irma & #Maria… https://t.co/YNwcEDKXsk +09/22/2017,Sports_celeb,@davidortiz,RT @MLBONFOX: “We were obsessed with the Red Sox.”- @AROD to @davidortiz on the Yankees. https://t.co/oN7TsLJmBm +09/20/2017,Sports_celeb,@davidortiz,RT @carlosbeltran15: Mi gente tomen las precauciones adecuadas. En la oración la unión y la acción está la fuerza.… https://t.co/MRBa3fn2AG +09/20/2017,Sports_celeb,@davidortiz,Praying for my home country🙏🏿 Portions of my Dominican pride shirts go straight to hurricane relief… https://t.co/zYJSiwGrx8 +09/16/2017,Sports_celeb,@davidortiz,RT @kevinburkhardt: It’s a Yankee/Red Sox flavor on #MLBWhiparound tonight. @arod & @davidortiz together! Top of the hour @FS1 +09/15/2017,Sports_celeb,@davidortiz,Thats what I'm talkin about New Hampshire!!! https://t.co/PGZUwgCyzt +09/15/2017,Sports_celeb,@davidortiz,RT @MLB: .@BigPapiProd will be co-producing the Ted Williams documentary in the @PBSAmerMasters series. https://t.co/WVTJly00sN @davidortiz… +09/14/2017,Sports_celeb,@davidortiz,Launching my production company has been a dream come true...and it's only right that we kick it off by honoring a… https://t.co/FiVHHueRKN +09/14/2017,Sports_celeb,@davidortiz,Donations for #Irma being matched up to $25K https://t.co/Yy6SZ0JorH. Thx @easternbank for kicking this off w/ an incredible $10K donation +09/12/2017,Sports_celeb,@davidortiz,"RT @easternbank: Excited to be the official #NewEngland bank of @davidortiz! Today, David will #JoinUsForGood & surprise customers as our 1…" +09/12/2017,Sports_celeb,@davidortiz,Boston!! I'm getting ready to do some GOOD...keep your eye out for a surprise announcement...u just might run into Papi today...👀 +09/09/2017,Sports_celeb,@davidortiz,RT @JackieBradleyJr: Always great getting to hang with big bro @davidortiz #HASBRO #HASCON https://t.co/7h5YVgZ5tM +09/08/2017,Sports_celeb,@davidortiz,Repping @ariaswines in Saratoga ...thx u @MagicofSPAC for having me https://t.co/mxcXy6SS2p +09/08/2017,Sports_celeb,@davidortiz,"Prayers up for everyone affected by #HurricaneIrma ... if you want to help, donate here ------->… https://t.co/Zk10kgZyHW" +09/08/2017,Sports_celeb,@davidortiz,My boy https://t.co/vsEw9icxc8 +09/07/2017,Sports_celeb,@davidortiz,My bro @RobGronkowski is the man to watch in Foxboro. Watch him earn that stink AND spike Tonight! @Tide… https://t.co/21Pj7Ak3ZE +09/06/2017,Sports_celeb,@davidortiz,Do u know why i was so excited #OnThisDay in 2005? 👉 https://t.co/rfdLO4ttIh https://t.co/0FTgLmdDnC +09/06/2017,Sports_celeb,@davidortiz,Wishing u luck lil bro...ill b watching https://t.co/mTTHryxCnn +09/04/2017,Sports_celeb,@davidortiz,Last chance #PapiNation 15% today only!! 👉🏾 https://t.co/lwjzlEcnZg https://t.co/wkOiFQqYc9 +09/01/2017,Sports_celeb,@davidortiz,RT @HasbroNews: ICYMI: @DavidOrtiz is coming to #HASCON! See him on 9/9 in @providenceRI! Tickets: https://t.co/iLKLrlUdek https://t.co/QAy… +08/31/2017,Sports_celeb,@davidortiz,Labor Day Sale is #PapiApproved https://t.co/HyI129a9Ec https://t.co/mxDzZVSNIx +08/30/2017,Sports_celeb,@davidortiz,a breakfast and a bike ride....and as always with my spy in the photo 👀🐩 https://t.co/uS0WyhnB6z +08/30/2017,Sports_celeb,@davidortiz,RT @KYouk_2036: So beautiful to see Americans supporting each other in a time of need. Let's never lose sight of this love & support for on… +08/28/2017,Sports_celeb,@davidortiz,Nuevos zapatos nueva hobby @SKECHERSUSA https://t.co/ABbpIHokvt +08/23/2017,Sports_celeb,@davidortiz,"“I live for today. Tomorrow belongs to God.” Sum wise words to live by...🙏🏿 😔 +https://t.co/nZdsYVDdoh https://t.co/GWBVTkEu1L" +08/21/2017,Sports_celeb,@davidortiz,RT @FansAuthentic: Who envisions @DavidOrtiz wearing these ski goggles to watch the #SolarEclipse today? #GOLDBOTTLES https://t.co/ibg5Wv9q… +06/29/2018,Sports_celeb,@JeterTurn2,Last night our New York #JetersLeaders celebrated the graduating seniors and welcomed the program's newest inductee… https://t.co/zkA4wAql2W +06/29/2018,Sports_celeb,@JeterTurn2,RT @CC_Sabathia: My team ready!!!! #CCSoftball https://t.co/iE7oKs6Kv8 +06/28/2018,Sports_celeb,@JeterTurn2,RT @PitCChInFdn: Here at @yankeestadium getting ready for game time! #CCSoftball is just a few hours away! 🎟: https://t.co/Vs4KBC38VU https… +06/28/2018,Sports_celeb,@JeterTurn2,".@sjeter2 shares her story behind #TheSTUFFMovement with @Kzoo_Gazette. +@StuffMovement @DrSampsonDavis @GalleryBooks https://t.co/GPwBEeecTr" +06/28/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 is on team @CC_Sabathia for tonight’s #CelebritySoftballGame at @yankeestadium, benefitti… https://t.co/WgzTwuRWGu" +06/27/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 sat down with @KirkMasonWWMT of @WWMTNews to discuss #TheSTUFFMovement, the… https://t.co/uIqRLguZz8" +06/26/2018,Sports_celeb,@JeterTurn2,RT @KirkMasonWWMT: Great to talk with ⁦@sjeter2⁩ The cancer survivor co-authored a book about battling adversity. The charity she runs that… +06/26/2018,Sports_celeb,@JeterTurn2,Today is International Day Against Drug Abuse and Illicit Trafficking. As a foundation rooted in motivating young p… https://t.co/S5AXOA7IId +06/26/2018,Sports_celeb,@JeterTurn2,Wishing a very #HappyBirthday to #Turn2 founder Derek Jeter! https://t.co/3Xg8bGlQqh +06/22/2018,Sports_celeb,@JeterTurn2,"We are excited to welcome our newest class of Kalamazoo #JetersLeaders, and we look forward to a great four years w… https://t.co/c7Ac8G3veu" +06/21/2018,Sports_celeb,@JeterTurn2,"#TBT to when the #JetersLeaders met young entrepreneur Spencer Zied, who co-founded @habits_365. Spencer spoke to t… https://t.co/iZ7BMbiCVF" +06/18/2018,Sports_celeb,@JeterTurn2,"On Saturday, our Kalamazoo #JetersLeaders attended a Youth Leadership Summit at the University of Michigan Detroit… https://t.co/0cs4K9nJUJ" +06/17/2018,Sports_celeb,@JeterTurn2,Happy #FathersDay to all fathers and father figures who serve as positive role models to young people. #Turn2 https://t.co/tnCClsHhYt +06/14/2018,Sports_celeb,@JeterTurn2,"#TBT to the 2018 Derek Jeter Celebrity Invitational, where @blaironeal shared important advice with young people.… https://t.co/ZM80oXirG3" +06/13/2018,Sports_celeb,@JeterTurn2,"Congrats to #JetersLeaders alumna & @jrfoundation scholarship recipient Chelsea Miller, who recently graduated from… https://t.co/jXPQixUI5h" +06/12/2018,Sports_celeb,@JeterTurn2,"Yesterday, members of our #Turn2 Us program wrapped up a successful baseball season with an exciting championship g… https://t.co/Zk6jQSydgy" +06/06/2018,Sports_celeb,@JeterTurn2,"""Seek the help you need to achieve greatness and reach your highest #goal."" -Alexi, #Kalamazoo #JetersLeader Class… https://t.co/NEKfYeJZxC" +05/30/2018,Sports_celeb,@JeterTurn2,"""Your biggest competition is yourself, not those around you."" - Michael, #NewYork #JetersLeaders Class of 2018… https://t.co/HYS51ypBPR" +05/28/2018,Sports_celeb,@JeterTurn2,Today we honor the men and women who devoted themselves to serving our country. #MemorialDay https://t.co/1IM3S8tewP +05/25/2018,Sports_celeb,@JeterTurn2,Yesterday our #Kalamazoo #JetersLeaders volunteered at the Girls on the Run 5K. The event #inspires girls to recogn… https://t.co/Wx5hJs6xl4 +05/22/2018,Sports_celeb,@JeterTurn2,"""Let's face it: none of us lives successfully on our own. We all receive help. And when we in turn help others, we'… https://t.co/rIRVMokLL7" +05/21/2018,Sports_celeb,@JeterTurn2,"""The greatest path to #success is not only being true to yourself, but also staying dedicated and having the same… https://t.co/K6YRhb0YZs" +05/17/2018,Sports_celeb,@JeterTurn2,"#tbt to last month, when our #NYC #JetersLeaders volunteered at the @nycparks 11th Annual Street Games, presented b… https://t.co/yEucnmuiWd" +05/17/2018,Sports_celeb,@JeterTurn2,"We’re proud to support @samhsagov's National Prevention Week, which focuses on the promotion of mental health and p… https://t.co/vmtlEF6F41" +05/16/2018,Sports_celeb,@JeterTurn2,#Turn2 president @sjeter2 and @DrSampsonDavis discuss the launch of @StuffMovement & tackling life’s biggest challe… https://t.co/4lfTLHWHyT +05/16/2018,Sports_celeb,@JeterTurn2,“Don’t let fear stop you from overcoming.” #Turn2 president @sjeter2 shares her journey & discusses @StuffMovement… https://t.co/Ph2WFgxg6q +05/15/2018,Sports_celeb,@JeterTurn2,"Exciting news! #TheSTUFF, a book co-authored by #Turn2 president @sjeter2 and @drsampsondavis, is officially out! B… https://t.co/zlaLvW9aHD" +05/15/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 discussed the inspiration behind her new book, @StuffMovement, with the @nypost. Read mor… https://t.co/ga7tmTCnn5" +05/13/2018,Sports_celeb,@JeterTurn2,To all of the strong women inspiring their children to make a difference in the world - Happy #MothersDay! https://t.co/bCAFiI9swo +05/12/2018,Sports_celeb,@JeterTurn2,"""I tell the kids, somebody's gotta win, somebody's gotta lose. Just don't fight about it. Just try to get better.""… https://t.co/Ucbyr8Q1kO" +05/10/2018,Sports_celeb,@JeterTurn2,"Today is National Children's Mental Health #AwarenessDay2018, which seeks to raise awareness about the importance o… https://t.co/KAmE7mmoCE" +05/08/2018,Sports_celeb,@JeterTurn2,"We’re so excited for the release of #TheStuff, co-authored by #Turn2 president @sjeter2 & @DrSampsonDavis. The book… https://t.co/bzp6TkaEyn" +05/07/2018,Sports_celeb,@JeterTurn2,It's senior #DraftDay for the #JetersLeaders! Check out our #InstagramStories at @jeterturn2 to see where these stu… https://t.co/M20s5OpbUu +05/03/2018,Sports_celeb,@JeterTurn2,"We joined @RBC in #NYC today for #rbctradeforthekids, which benefited more than 40 youth charities around the world… https://t.co/VtVsXhfS9T" +05/02/2018,Sports_celeb,@JeterTurn2,Looking forward to joining @RBC tomorrow for #rbctradeforthekids – a celebration of philanthropy and volunteerism a… https://t.co/NHcvBMb39l +05/01/2018,Sports_celeb,@JeterTurn2,"In celebration of #CollegeDecisionDay, we are so proud to recognize our senior #JetersLeaders for being accepted in… https://t.co/yzdRlG7G9P" +04/30/2018,Sports_celeb,@JeterTurn2,So many amazing applicants for the #JetersLeaders Class of 2022! We're so #inspired to see young people be passiona… https://t.co/s5H8geBXcE +04/25/2018,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: Whatever you do, do not look down. 😂 + +#DJCI #Turn2 @jeterturn2 @NBATVAhmad @RealWinkyWright @brandichastain @KMillar15…" +04/23/2018,Sports_celeb,@JeterTurn2,Another fantastic #DJCI in the books! This year’s event contributed $1M to #Turn2. Big thanks to our partners… https://t.co/RCyb9gs4Tt +04/22/2018,Sports_celeb,@JeterTurn2,RT @PlayersTribune: We brought a living statue to Derek Jeter's golf tournament and the reactions are priceless. #DJCI #Turn2 @JeterTurn2 @… +04/20/2018,Sports_celeb,@JeterTurn2,"Day two of #DJCI action is underway, as Derek Jeter tees off! #DJCI2018 #Turn2 https://t.co/U2pydO57S1" +04/20/2018,Sports_celeb,@JeterTurn2,"RT @TheJetGuy: Great day @JeterTurn2 ⛳️ +@BLAIRONEAL @GretzkySchool +#DerekJeterCelebrityInvitational #WheelsUp #ShadowCreek #LasVegas https…" +04/20/2018,Sports_celeb,@JeterTurn2,RT @JoeTorre: With Derek at his @JeterTurn2 celebrity invitational golf tournament in Las Vegas #DJCI #TURN2 #DJCI2018 https://t.co/NZo5w68… +04/20/2018,Sports_celeb,@JeterTurn2,"""For more than 21 years, Turn 2 has moved the needle, making a difference in communities nationwide...but what’s mo… https://t.co/ucHJX3Cp26" +04/19/2018,Sports_celeb,@JeterTurn2,Ready to kick off #DJCI2018 at #ShadowCreek this morning! We’re looking forward to an exciting day one of the Cele… https://t.co/Wh28PlCs2T +04/19/2018,Sports_celeb,@JeterTurn2,RT @BLAIRONEAL: Looking forward to playing in #DerekJeter golf tournament again & supporting @JeterTurn2 #foundation this week 🙌🏼 in Vegas… +04/19/2018,Sports_celeb,@JeterTurn2,The Derek Jeter Celebrity Invitational has begun! #DerekJeter & @sjeter2 have arrived on the red carpet at @AriaLV… https://t.co/apu0FidFl7 +04/15/2018,Sports_celeb,@JeterTurn2,"RT @JRFoundation: 71 years ago today, Jackie Robinson made his @MLB debut as a Brooklyn Dodger & became the first African American to play…" +04/12/2018,Sports_celeb,@JeterTurn2,"We are excited to announce that multi-platinum selling, global superstar @JasonDerulo will be performing at the Der… https://t.co/Zo1qZDMdEG" +04/11/2018,Sports_celeb,@JeterTurn2,"""Helping others is just as important as helping yourself."" #WednesdayWisdom #JetersLeaders #Turn2 https://t.co/tH9bihVtHv" +04/09/2018,Sports_celeb,@JeterTurn2,"RT @MiamiSup: Thank you Derek Jeter, @JeterTurn2, @jorgeposada_20 for donating furniture to the Redlands Migrant Camp, helping hundreds of…" +04/06/2018,Sports_celeb,@JeterTurn2,"During their trip to Miami this week, the #JetersLeaders also experienced a glimpse of college life during a specia… https://t.co/Z8NpWUHiyA" +04/05/2018,Sports_celeb,@JeterTurn2,"""Spread Kindness"" is just one of the many #inspirational murals that now fill @josediegoms in Miami, as #DerekJeter… https://t.co/EWsvQ1NurC" +04/04/2018,Sports_celeb,@JeterTurn2,"""The time is always right to do what is right.” – Martin Luther King Jr. Celebrating the legacy of Martin Luther Ki… https://t.co/1DQTeeyaLc" +04/04/2018,Sports_celeb,@JeterTurn2,Last night the #JetersLeaders had a blast watching the @marlins take on the #Boston @redsox! #Turn2 https://t.co/kqLnfHSbe4 +04/04/2018,Sports_celeb,@JeterTurn2,"Our #JetersLeaders are teaming up with #DerekJeter, #Turn2 president @sjeter2 and @GoldmanSachs Community TeamWorks… https://t.co/6QY2bCWNEd" +04/02/2018,Sports_celeb,@JeterTurn2,"""Goals not only give you something to look forward to and build on, but they give you a chance to make your dreams… https://t.co/OCD8nIrQdy" +03/29/2018,Sports_celeb,@JeterTurn2,"Exciting projects are in the works for our #JetersLeaders! Throughout the month, the New York Leaders worked togeth… https://t.co/GwZoeJ7WXs" +03/28/2018,Sports_celeb,@JeterTurn2,"""Being a #leader means you try your best, #inspire others, and show empathy."" #WednesdayWisdom #JetersLeaders #Turn2 https://t.co/yftFqwZ6II" +03/23/2018,Sports_celeb,@JeterTurn2,#Turn2 president @sjeter2 is proud to support the #MagicOfStorytelling initiative by @Disney and @FirstBook! For ev… https://t.co/ZdgiXt8o1T +03/21/2018,Sports_celeb,@JeterTurn2,"RT @garysheffield: It was such a great time out there talking to the kids at @JeterTurn2 baseball camp last week! + +If one kid can walk awa…" +03/19/2018,Sports_celeb,@JeterTurn2,"""Life is not about what happened yesterday, but what you are going to make happen in the future."" #MondayMotivation… https://t.co/vkDVuw4kuP" +03/16/2018,Sports_celeb,@JeterTurn2,That's a wrap on the 11th Annual #Turn2 Tampa Baseball Clinic! Special thanks to @GarySheffield for joining us as g… https://t.co/Sqz2MqT9Mi +03/15/2018,Sports_celeb,@JeterTurn2,Our thoughts and prayers are with @FIU and the entire community. +03/15/2018,Sports_celeb,@JeterTurn2,Special guest speaker @GarySheffield inspires participants to work hard to achieve their #goals at the #Turn2 Tampa… https://t.co/LTQxJrQYVN +03/14/2018,Sports_celeb,@JeterTurn2,"""#Communication is the key that unlocks many doors, no matter the combination."" #WednesdayWisdom #JetersLeaders… https://t.co/ecZJyeMFwe" +03/13/2018,Sports_celeb,@JeterTurn2,"#Tampa children are taking the field to learn #baseball fundamentals and important #lifelessons, as we kick off our… https://t.co/D0L6PesBif" +03/09/2018,Sports_celeb,@JeterTurn2,"RT @sjeter2: Feeling so inspired by all of you who came to samsung837!! My message for all women is: ""When… https://t.co/GeqP11Q53F" +03/08/2018,Sports_celeb,@JeterTurn2,Today we celebrate all women who #empower youth to create #positivechange and lead in their communities.… https://t.co/pzvH3j87LP +03/07/2018,Sports_celeb,@JeterTurn2,RT @sjeter2: Loved taking part in this event! https://t.co/8ThjFZ8tjh +03/06/2018,Sports_celeb,@JeterTurn2,RT @JeterPublishing: It's Launch Day for Double Play! Pick up your copy now! https://t.co/z6LiK8brsq #JeterPublishing @timgreenbooks https:… +03/04/2018,Sports_celeb,@JeterTurn2,RT @PosadaLifeCoach: Team Posada teamed up with @JeterTurn2 to donate hundreds of items to students Miami Dade College and @FIU who relocat… +03/02/2018,Sports_celeb,@JeterTurn2,#DerekJeter & #Turn2 president @SJeter2 teamed up w/ @jorgeposada_20 & @posadalifecoach to donate furniture to… https://t.co/uzYrQJYkaC +03/01/2018,Sports_celeb,@JeterTurn2,"Throughout the month of February, the Kalamazoo #JetersLeaders had the opportunity to #mentor local children at the… https://t.co/zBOGIyR8Dp" +02/26/2018,Sports_celeb,@JeterTurn2,"These students are #college ready! Over the weekend, the Kalamazoo #JetersLeaders toured @RooseveltU, @UChicago,… https://t.co/NvnUUiQ3jp" +02/22/2018,Sports_celeb,@JeterTurn2,"That's a wrap! The #Turn2 Mid-Winter #College Tour with #NYC #JetersLeaders capped off with visits to @HowardU,… https://t.co/6heMFeBmRU" +02/20/2018,Sports_celeb,@JeterTurn2,The #Turn2 Mid-Winter #College tour has begun! Our #NYC #JetersLeaders kicked off the week with visits to the @UNCF… https://t.co/CTOOJilLzg +02/19/2018,Sports_celeb,@JeterTurn2,Last weekend our Kalamazoo #JetersLeaders attended the Day of Radical Youth Development as part of the System of Ca… https://t.co/ZoDXYDk4DC +02/13/2018,Sports_celeb,@JeterTurn2,"We’re looking forward to returning to Las Vegas for the 2018 Derek Jeter Celebrity Invitational in April, in partne… https://t.co/2TXl2hhVtn" +02/07/2018,Sports_celeb,@JeterTurn2,"Today marks the 32nd Annual National Girls & Women in Sports Day. This past Saturday, our #NYC #JetersLeaders parti… https://t.co/xgw6T8EiiK" +02/05/2018,Sports_celeb,@JeterTurn2,"""Believe in yourself, because at the end of the day no one knows you like you know yourself."" - Jacky, Kalamazoo… https://t.co/feV9B72ofa" +02/02/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 discussed the growth of the Foundation, the #JetersLeaders & the importance of #mentoring… https://t.co/Nj2CVyViiq" +02/02/2018,Sports_celeb,@JeterTurn2,"RT @OWNTV: .@Luvvie, @VanJones68, @sjeter2 and more! Dream protectors who are walking the walk 👣 and talking the talk! 🗣 #DreamFearlessly h…" +02/01/2018,Sports_celeb,@JeterTurn2,"This month, we are celebrating all African American trailblazers who inspire us to serve as leaders and create posi… https://t.co/bCGelBv4QL" +01/29/2018,Sports_celeb,@JeterTurn2,"Last weekend, our New York #JetersLeaders participated in fun winter activities with children in @CentralParkNYC as… https://t.co/f8CNgal5Ki" +01/26/2018,Sports_celeb,@JeterTurn2,RT @JDCHospital: Backstage at the Joe DiMaggio American Icon Award with @_Derek_Jeter2 . The former Yankee captain and current Marlins CEO… +01/25/2018,Sports_celeb,@JeterTurn2,“My AP world history teacher has helped me see the world more vividly while motivating me to excel every day.” - Ha… https://t.co/jmEXZcUYca +01/25/2018,Sports_celeb,@JeterTurn2,"“My mother has had a tremendous impact on my life. Without her, I wouldn’t be where I am today. She has helped me r… https://t.co/Yt2EK3srPQ" +01/25/2018,Sports_celeb,@JeterTurn2,"""Mentoring has always been about helping those around your community. That's a powerful idea that needs to be sprea… https://t.co/gLimnXQTK1" +01/25/2018,Sports_celeb,@JeterTurn2,"“My grandpa is my mentor…he taught me that even on bad days, there's something positive happening.” - Ariel Brown,… https://t.co/T7HpyuAjkx" +01/25/2018,Sports_celeb,@JeterTurn2,“My mom is my biggest mentor. She's always been there to pick me up when I fall and make sure that I keep getting s… https://t.co/RVY9SxJbQ6 +01/25/2018,Sports_celeb,@JeterTurn2,"As part of #ThankYourMentor Day, our #JetersLeaders reflected on the mentors in their lives and how they've helped… https://t.co/lTEmLFuFTL" +01/24/2018,Sports_celeb,@JeterTurn2,"""In the end it won't matter what you did in your life, but how you chose to live it."" #JetersLeaders… https://t.co/FuCr5ODTy3" +01/22/2018,Sports_celeb,@JeterTurn2,"Our Kalamazoo #JetersLeaders recently attended STOMP, the Broadway musical that creates unique music with found obj… https://t.co/Iu8rJ8xxqD" +01/17/2018,Sports_celeb,@JeterTurn2,"""Mentoring is a critical component of a young person's life. When youth have reliable role models they can turn to… https://t.co/S00lGgpcia" +01/15/2018,Sports_celeb,@JeterTurn2,"In honor of MLK Day, our NY #JetersLeaders distributed sandwiches at a local church today with children at the Jack… https://t.co/EX5vRxTOeO" +01/15/2018,Sports_celeb,@JeterTurn2,Today we celebrate the legacy of Martin Luther King Jr. and his profound impact on our country. #MLKDay #MLK https://t.co/BezHwMvZ6M +01/10/2018,Sports_celeb,@JeterTurn2,"""Needing help doesn't make you weak; accepting help makes you strong."" #JetersLeaders #WednesdayWisdom #Turn2 https://t.co/4XzrhkCrpa" +01/03/2018,Sports_celeb,@JeterTurn2,"Learn more about our partnership with @EstatesACQ, @JORGEPOSADA_20 and @PosadaLifeCoach to help families affected b… https://t.co/u8s38CTadf" +01/03/2018,Sports_celeb,@JeterTurn2,"“Volunteering strengthens communities, and brings young people from different backgrounds together to make a differ… https://t.co/QZQtci0d1B" +01/02/2018,Sports_celeb,@JeterTurn2,Congratulations to @hodakotb on being named co-host of @TODAYshow! We wish you the best. https://t.co/23RT1ftifg +01/01/2018,Sports_celeb,@JeterTurn2,"Wishing everyone a #HappyNewYear! 2017 was a great year for us, and we look forward to an exciting and successful 2… https://t.co/Ce5nLWaCr0" +12/28/2017,Sports_celeb,@JeterTurn2,#TBT Our NY #JetersLeaders & program alumni gathered at the Jackie Robinson Recreation Center to celebrate the holi… https://t.co/dL1nV1LXnu +12/22/2017,Sports_celeb,@JeterTurn2,"As part of our partnership with @JorgePosada_20 & @PosadaLifeCoach, the furniture donated by @EstatesACQ arrived to… https://t.co/x7mSTVp3pu" +12/21/2017,Sports_celeb,@JeterTurn2,"#TBT to our Holiday Gift Wrapping Party earlier this month, where the NY #JetersLeaders assembled more than 1,100 g… https://t.co/KLDN0fNSKi" +12/20/2017,Sports_celeb,@JeterTurn2,"The Kalamazoo #JetersLeaders and program alumni celebrated the holidays earlier this week with bowling, arcade game… https://t.co/ZX42NrNI1J" +12/20/2017,Sports_celeb,@JeterTurn2,"“Being a leader doesn’t require a title, and having a title doesn’t make you one.” #WednesdayWisdom #JetersLeaders https://t.co/LtpOfosQM7" +12/19/2017,Sports_celeb,@JeterTurn2,#HappyHolidays from the #Turn2 Foundation family to yours! https://t.co/IqfxN9scu6 +12/18/2017,Sports_celeb,@JeterTurn2,“Don’t short-change yourself. Keep working to get better.” #MondayMotivation https://t.co/nM97VC3nKY +12/15/2017,Sports_celeb,@JeterTurn2,"The Kalamazoo #JetersLeaders spread holiday cheer yesterday at St. Augustine’s Eleanor House, where they shared gif… https://t.co/PsPGzIZq7j" +12/15/2017,Sports_celeb,@JeterTurn2,Learn more about #Turn2 and our Foundation’s work in the 2017 Turn 2 Magazine! https://t.co/OtdJ5j7wnf https://t.co/zpZFcPOkjP +12/14/2017,Sports_celeb,@JeterTurn2,Last week our #NY #JetersLeaders attended an exclusive performance of @WICKED_Musical as part of @Movado ’s Evening… https://t.co/3N8qfZfYy9 +12/13/2017,Sports_celeb,@JeterTurn2,Earlier this month children from the Turn 2 Us program kicked off the holiday season with a special annual celebrat… https://t.co/NK3XZNgpih +12/12/2017,Sports_celeb,@JeterTurn2,We're proud to partner with @EstatesACQ and Jorge Posada & @PosadaLifeCoach's Foundation for Puerto Rico to donate… https://t.co/GAThQOmHLd +12/08/2017,Sports_celeb,@JeterTurn2,"#Turn2 president Sharlee Jeter talks balancing work & family, and walks through her typical day with @Refinery29.… https://t.co/p5QJt6oUFA" +12/06/2017,Sports_celeb,@JeterTurn2,“Setting goals will put you on a path to living successful and healthy lifestyles.” #WednesdayWisdom #JetersLeaders https://t.co/FllaYT6TLU +12/05/2017,Sports_celeb,@JeterTurn2,"We’re excited to return to Shadow Creek for the 2018 #DerekJeter Celebrity Invitational with our partners, @JPSENET… https://t.co/43Ag4KeNQq" +12/04/2017,Sports_celeb,@JeterTurn2,“I’m not the one to sit around and be satisfied about something. I can always get better.” #MondayMotivation https://t.co/6pOUVBe2LT +12/02/2017,Sports_celeb,@JeterTurn2,Our #JetersLeaders & program alumni had a blast at the @threedoctors Foundation Holiday Health Basketball Benefit t… https://t.co/pEJLjhL67D +11/30/2017,Sports_celeb,@JeterTurn2,"Special thanks to our sponsors, @RookieUSA and @Yankees, for their generous donations! https://t.co/MAUkIWpdUx" +11/29/2017,Sports_celeb,@JeterTurn2,"Our NY #JetersLeaders worked together to assemble 1,100 gift bags that will make the holidays brighter for children… https://t.co/glIwOG5MbK" +11/29/2017,Sports_celeb,@JeterTurn2,“Goals are important because they give us both long- and short-term aspirations that will always better us.”… https://t.co/nWl1ymT4zO +11/28/2017,Sports_celeb,@JeterTurn2,"“When I think of the Jeter’s Leaders program, I think of opportunity.” By donating to our programs, you can help pr… https://t.co/AOXHaE0Po5" +11/27/2017,Sports_celeb,@JeterTurn2,"Meet Kendall, a Kalamazoo Jeter’s Leaders alumna. Kendall’s advice? “Don’t be afraid to put yourself out there.” By… https://t.co/pXFcxFDw5v" +11/23/2017,Sports_celeb,@JeterTurn2,"Happy #Thanksgiving, from the #Turn2 Foundation! https://t.co/1mkpVd1Hsc" +11/22/2017,Sports_celeb,@JeterTurn2,New York Jeter’s Leader alum Sharod plans to continue helping others in any way he can. Your support this… https://t.co/sqk1Rmw96R +11/22/2017,Sports_celeb,@JeterTurn2,“You don’t have to be famous to create change. Words and actions create change.” #WednesdayWisdom #JetersLeaders https://t.co/zdyfwvt9Cf +11/21/2017,Sports_celeb,@JeterTurn2,"Your support has allowed us to provide young people, like Chase, with the resources they need to reach their full p… https://t.co/QP0lYbHIyj" +11/20/2017,Sports_celeb,@JeterTurn2,“I don’t sit here every day and think about what I accomplished in the past…I’m always focusing on what I can do to… https://t.co/2I7Zn9GC1H +11/15/2017,Sports_celeb,@JeterTurn2,"""Challenge yourself and put all of your effort in everything you do."" #WednesdayWisdom https://t.co/nMp1kch3gp" +11/13/2017,Sports_celeb,@JeterTurn2,Happy #WorldKindnessDay! Celebrate by giving back to your community and helping others in need. #Turn2 https://t.co/TYsSRNBMze +11/13/2017,Sports_celeb,@JeterTurn2,RT @JoeTorre: At Rawlings Gold Glove dinner with Donnie baseball and Derek who was honored for his @JeterTurn2 Foundation. Great being with… +11/11/2017,Sports_celeb,@JeterTurn2,#DerekJeter will receive the Joe DiMaggio Icon Award by @JDCHospital in January for his contributions to society. https://t.co/E5DzzSFCbY +11/10/2017,Sports_celeb,@JeterTurn2,"Tonight, our KZ #JetersLeaders had the chance to see @WondertheMovie, an inspiring story reminding us to… https://t.co/ADSIS8yyIO" +11/09/2017,Sports_celeb,@JeterTurn2,A look back at our 21st Annual Dinner. Thanks to all attendees for helping us raise $1M to make a positive impact o… https://t.co/F3wUK2U3Cz +11/08/2017,Sports_celeb,@JeterTurn2,“Let people in and allow them to help you. You can’t do it alone.” #WednesdayWisdom #JetersLeaders https://t.co/Z7Q2OVnh58 +11/06/2017,Sports_celeb,@JeterTurn2,"“We have to be confident and secure enough to make the proper choices, regardless of what the people around us are… https://t.co/dPpHDjDAjL" +10/31/2017,Sports_celeb,@JeterTurn2,"On Saturday the #JetersLeaders heard from Cheryl Washington about her 20-yr career in news, effective communication… https://t.co/SPwLmJmD9g" +10/30/2017,Sports_celeb,@JeterTurn2,"""Don't focus on what the negatives might be...you can always find a positive in any situation."" #MondayMotivation https://t.co/kU6npj5dnL" +10/26/2017,Sports_celeb,@JeterTurn2,Today we celebrated 16 yrs of promoting #mentalwellness through our #Turn2 Us program in #WashingtonHeights with ou… https://t.co/9K0XkCL1bk +10/25/2017,Sports_celeb,@JeterTurn2,"“Nothing comes easily in life. If you want something, you have to work hard to achieve it.” #WednesdayWisdom… https://t.co/TAlJ2ioX9y" +10/23/2017,Sports_celeb,@JeterTurn2,"“Don’t let your past achievements, no matter how significant they may be, obscure the visions and goals you still h… https://t.co/urxsY6nYZh" +10/18/2017,Sports_celeb,@JeterTurn2,"“You eventually have to face your fear. Once you overcome it, life gets better. #WednesdayWisdom #JetersLeaders https://t.co/02GLrzqPxP" +10/16/2017,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: A look back at the 21st Annual #Turn2Gala, including a conversation on women in sports featuring @sportsiren, Derek Jet…" +10/16/2017,Sports_celeb,@JeterTurn2,"“We all make our own goals, so we all devise our own ceilings, too. If you feel that something is attainable, it is… https://t.co/KtxekVw8ab" +10/12/2017,Sports_celeb,@JeterTurn2,The 21st Annual #Turn2Gala raised $1 million to support our programs. Thanks to all who joined us & made this year’… https://t.co/O9II7tcB1z +10/12/2017,Sports_celeb,@JeterTurn2,Special thanks to the legendary @boyziimen for tonight’s unforgettable performance! #Turn2Gala https://t.co/U4ccN4jEWi +10/12/2017,Sports_celeb,@JeterTurn2,"Congratulations to our 2017 #Turn2 MVP, Chick Lee of ICON International! Thank you for your support. #Turn2Gala https://t.co/4gA037NBoO" +10/12/2017,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: When Derek Jeter was a rookie he created the @JeterTurn2 Foundation. + +Tonight we celebrate 21 years of giving back at t…" +10/12/2017,Sports_celeb,@JeterTurn2,"""Over the course of 21 years, Turn 2 has given back more than $27 million. That is astounding."" @hodakotb #Turn2Gala https://t.co/IBL5cHGjId" +10/12/2017,Sports_celeb,@JeterTurn2,"The 21st Annual #Turn2Gala has begun! We’re on the red carpet with Derek Jeter, Sharlee Jeter & the #JetersLeaders.… https://t.co/b7PI2Sjbdo" +10/11/2017,Sports_celeb,@JeterTurn2,"“People should set goals for themselves, and also motivate themselves to keep going when times get tough.”… https://t.co/kKOQcabCw1" +10/09/2017,Sports_celeb,@JeterTurn2,“...You can help yourself by taking an extra second to ponder how you should react to it.” #MondayMotivation https://t.co/7MlLR6vgIf +10/04/2017,Sports_celeb,@JeterTurn2,“Determination and dedication are the keys to success.” #WednesdayWisdom #JetersLeaders https://t.co/Vkl8a88Z3b +10/03/2017,Sports_celeb,@JeterTurn2,"New York #JetersLeaders grad Sharod is attending @Morehouse this fall, & has goals of becoming a district attorney.… https://t.co/ROG6m9JTSQ" +10/02/2017,Sports_celeb,@JeterTurn2,"""Don't dwell in the past. Don't feel that you've achieved something and now you can relax...” #MondayMotivation https://t.co/PzX5YtTXBL" +09/29/2017,Sports_celeb,@JeterTurn2,"NY #JetersLeaders grad Jordana is off to @syracuseu in the fall, where she will study TV, film & radio production.… https://t.co/EfQdsqP7SK" +09/28/2017,Sports_celeb,@JeterTurn2,#TBT to the NY #JetersLeaders retreat! They planned their 2017-18 program year at @Live_Unaddicted &later worked as… https://t.co/EYhvuRI3fj +09/27/2017,Sports_celeb,@JeterTurn2,“Be proud of the hard times that brought you to where you are today.” #WednesdayWisdom #JetersLeaders https://t.co/ElbsaTbCMU +09/26/2017,Sports_celeb,@JeterTurn2,"Congrats to New York #JetersLeader George! He is off to @StJohnsU to study biology, & strives to become a pharmacis… https://t.co/FWVxoimwNi" +09/25/2017,Sports_celeb,@JeterTurn2,"“Listen better and display more respect for people, and see how much smarter and gracious you become.”… https://t.co/Unye6T05QG" +09/22/2017,Sports_celeb,@JeterTurn2,NY #JetersLeaders grad Connor is off to @hofstraU this fall to study mechanical engineering & has goals to earn his… https://t.co/vdFJbqwcbz +09/21/2017,Sports_celeb,@JeterTurn2,"RT @Live_Unaddicted: Whether you are in recovery or you simply support people who want to get help, you’re important to the #LiveUnaddicted…" +09/20/2017,Sports_celeb,@JeterTurn2,Today the NY #JetersLeaders spoke at #WEDAY about service & how everyone can help after disasters like the recent h… https://t.co/SYPxfwQ5qA +09/20/2017,Sports_celeb,@JeterTurn2,"“You learn, you win & you lose. But you always get up."" #JetersLeaders #WednesdayWisdom https://t.co/HiQTgZQ80R" +09/19/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Darius! He is off to @FullSail to study film & has goals of becoming a su… https://t.co/EGSzm1kgOp +09/18/2017,Sports_celeb,@JeterTurn2,"“You’ve only got one life, so you should be proud of what you do.” #MondayMotivation https://t.co/4drE1ZrVYy" +09/13/2017,Sports_celeb,@JeterTurn2,Our hearts go out to those affected by Hurricane Irma. @usatoday has details on how you can help: https://t.co/CGicgNatd9 +09/13/2017,Sports_celeb,@JeterTurn2,“Young people should set goals for themselves so they can improve and discover new things.” #WednesdayWisdom… https://t.co/v0usoQsJlF +09/12/2017,Sports_celeb,@JeterTurn2,"Congrats to Kalamazoo #JetersLeaders grad Chase! He’ll attend @WesternMichU, & has goals of becoming an aerospace e… https://t.co/DoW8qMQjUh" +09/12/2017,Sports_celeb,@JeterTurn2,"Remembering those who lost their lives 16 years ago. #NeverForget +Photo credit: @646kb (via Instagram) https://t.co/zGr7fObF8g" +09/08/2017,Sports_celeb,@JeterTurn2,"RT @YESNetwork: The Captain shares his thoughts & condolences for the late Gene ""Stick"" Michael. https://t.co/e5SYLsiBZd" +09/06/2017,Sports_celeb,@JeterTurn2,"Proud to unveil new #JetersLeaders jerseys! Designed by @Jumpman23 + inspired by #RE2PECT line, they represent the… https://t.co/ejDAv23EyI" +09/06/2017,Sports_celeb,@JeterTurn2,"“Find your weakness, turn it into strength, and be sure to take risks.” #WednesdayWisdom #JetersLeaders https://t.co/lpxMc9HbBI" +09/04/2017,Sports_celeb,@JeterTurn2,“Don’t talk about doing something to help people. Just do it. We all have the ability to do things for others.”… https://t.co/ViOAYV8yQb +08/31/2017,Sports_celeb,@JeterTurn2,.@HoustonFoodBank is providing meals to displaced Houston residents. Every $1 = 3 meals. https://t.co/8d1K1oqKxF https://t.co/DqiDVpAvx8 +08/31/2017,Sports_celeb,@JeterTurn2,Congrats to New York #JetersLeader Marc on his graduation from @mckinneyssa! He has goals of becoming a nurse or do… https://t.co/11jjJ8PWus +08/31/2017,Sports_celeb,@JeterTurn2,.@HouUnitedWay established a Flood Relief Fund to help with recovery needs of those impacted. Donate here:… https://t.co/FUW1DrMDdu +08/30/2017,Sports_celeb,@JeterTurn2,.@TXDIAPERBANK will distribute emergency diaper kits to affected families. Donate here: https://t.co/4BsnVoCBsA https://t.co/DqiDVpAvx8 +08/30/2017,Sports_celeb,@JeterTurn2,So many incredible organizations across Texas that can use our support in this heroic rescue + recovery effort. Please give what you can! +08/30/2017,Sports_celeb,@JeterTurn2,“Setting goals will help you to fulfill your dreams.” #WednesdayWisdom #JetersLeaders https://t.co/8Ty8HUj7hd +08/29/2017,Sports_celeb,@JeterTurn2,"Our hearts are w/ Houston & those affected by devastation in Texas & Louisiana. Stay strong, take care of each other & #lookforthehelpers." +08/29/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Kendall! She will be attending @LifeAtPurdue in the fall to study food sc… https://t.co/2sp8TtvX2R +08/28/2017,Sports_celeb,@JeterTurn2,"“We should all want to continue learning, because no one knows all they need to know...” #MondayMotivation https://t.co/3JOO8Q454T" +08/24/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Ca’Jon! He’ll attend @WesternMichU & has goals of working in public relat… https://t.co/mkm3VJdbYJ +08/23/2017,Sports_celeb,@JeterTurn2,"“Stay positive, work hard, and you will have a bright future ahead of you.” #JetersLeaders #WednesdayWisdom https://t.co/i6gQzkOrSM" +08/22/2017,Sports_celeb,@JeterTurn2,"Congrats to New York #JetersLeaders grad Sata! She will attend @UnionCollegeNY in the fall, and has goals of travel… https://t.co/b0zHZilPzt" +08/21/2017,Sports_celeb,@JeterTurn2,"“It’s a nice feeling when the work you’ve been doing provides results before your eyes..."" #MondayMotivation https://t.co/iY47pq7Ekz" +08/19/2017,Sports_celeb,@JeterTurn2,Exciting projects are in the works with our #JetersLeaders and @WeMovement! Stay tuned. #Turn2 https://t.co/IuNdAV7V4M +08/17/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Ben! He's off to @michiganstateu & has goals of becoming a financial mana… https://t.co/ttVEBtx5qo +08/16/2017,Sports_celeb,@JeterTurn2,“You have the power to create positive change.” #WednesdayWisdom #JetersLeaders https://t.co/8vGy0ZdGzu +08/15/2017,Sports_celeb,@JeterTurn2,"RT @JRFoundation: ""What motivated me? Sisterhood. That turned into my non-profit, WEBelieve, Inc."" Chelsea Miller. @Columbia. Sponsor: @Jet…" +08/14/2017,Sports_celeb,@JeterTurn2,"“You have to accept the fact that there are going to be new challenges for you every day..."" #MondayMotivation https://t.co/z9Wuc2NPbq" +08/10/2017,Sports_celeb,@JeterTurn2,Get ready for the 21st Annual #Turn2Gala! @BoyzIIMen will perform & @HodaKotb will emcee. https://t.co/auZRFq4W3l f… https://t.co/81cm2of92a +08/09/2017,Sports_celeb,@JeterTurn2,"Today our #JetersLeaders visited @turner, where they learned about the interview process + #careers, and also toure… https://t.co/5iGL4wJszO" +08/07/2017,Sports_celeb,@JeterTurn2,"“Obviously, you’re known for what you do. But you still want to be known as a good person...” #MondayMotivation https://t.co/pX4vy4Wh8Z" +08/04/2017,Sports_celeb,@JeterTurn2,Thanks to the @RitzCarlton for hosting us for the #Turn2 #SocialChange Project in #NewOrleans! We are grateful for… https://t.co/7gDtglK8C7 +08/04/2017,Sports_celeb,@JeterTurn2,The #JetersLeaders had a great week at the 2017 #SocialChange Project. We are so proud of their commitment to makin… https://t.co/KsRh4Pv5NV +08/04/2017,Sports_celeb,@JeterTurn2,"The #JetersLeaders wrapped up the 2017 #SocialChange Project with #college visits to @TulaneNews, @du1869 +… https://t.co/foELthiw8w" +08/03/2017,Sports_celeb,@JeterTurn2,Our #JetersLeaders worked together to transform Einstein Charter School in #NewOrleans as part of the #SocialChange… https://t.co/9dNIIoo0V0 +07/02/2018,Sports_celeb,@AROD,RT @Buster_ESPN: We've got the Dodgers and the Angels on Sunday Night Baseball July 8. With that in mind: As Shohei Ohtani moves forward in… +07/02/2018,Sports_celeb,@AROD,@nybaby1981 @espn Thanks so much! +07/02/2018,Sports_celeb,@AROD,@kryptoniankal1 Thank you for the kind words. +07/02/2018,Sports_celeb,@AROD,"@corially @MLB Thanks, Cori! Love it! ⚾️ #MLB" +07/02/2018,Sports_celeb,@AROD,@yankee_rants Thanks man! +07/02/2018,Sports_celeb,@AROD,@NYKerri_ Thanks Kerri! 🌃⚾️ +07/02/2018,Sports_celeb,@AROD,@xSaraLynn23 Thank you Sara! +07/01/2018,Sports_celeb,@AROD,"On #SundayNightBaseball, Matt, Jessica, Buster and I had a lengthy discussion about Bryce Harper's at-bats, specifi… https://t.co/Aw6RWPoM6O" +07/01/2018,Sports_celeb,@AROD,"It’s finally here! Introducing my AROD GS25 bat feels like hitting my 697th home run, maybe even a little better. W… https://t.co/nNWHATzcHU" +06/29/2018,Sports_celeb,@AROD,Excited to be co-hosting @GetUpESPN see you at 8am @MichelleDBeadle @Espngreeny @JalenRose @SHAQ +06/29/2018,Sports_celeb,@AROD,RT @Yankees: Even Mo 💙’s J-Rod. https://t.co/v55l4hBnmt +06/27/2018,Sports_celeb,@AROD,RT @Ben_ESPN: .@AROD will co-host @GetUpESPN this Fri in studio from 8-10 a.m. ET to kick off a big weekend in New York which will culminat… +06/25/2018,Sports_celeb,@AROD,@Master_Raskul Thank you Scotty. Appreciate the compliment. +06/25/2018,Sports_celeb,@AROD,"@BenBinek @DaleMurphy3 @espn He was a phenomenal player, Ben. Thanks for your tweet." +06/25/2018,Sports_celeb,@AROD,@GableCR @SundayNightMLB Thank you for the nice compliment! +06/25/2018,Sports_celeb,@AROD,@FiascoShow Thank you for the compliment. +06/25/2018,Sports_celeb,@AROD,@TravisBevelaqua Thank you Travis. +06/25/2018,Sports_celeb,@AROD,@KHolman2012 Thank you Keith. +06/25/2018,Sports_celeb,@AROD,@wxmc @jessmendoza Thank you Mike. +06/25/2018,Sports_celeb,@AROD,@bopper33 Thank you for the compliment. +06/25/2018,Sports_celeb,@AROD,@JeffWirth2002 Thank you Jeff. +06/25/2018,Sports_celeb,@AROD,@Jay48240137 Appreciate the kind words. +06/25/2018,Sports_celeb,@AROD,@alexahnod @espn Thank you so much. +06/25/2018,Sports_celeb,@AROD,@pdotruck @tonyromo Thank you for the kind words. +06/25/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Red Sox vs. the Yankees on Sunday Night Baseball July 1. Recently, MLB's competition committee discussed pos…" +06/24/2018,Sports_celeb,@AROD,"Posse out — so long, Idaho. https://t.co/RBgdfhFSRU" +06/21/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: On Sunday Night Baseball June 24, we'll have the Phillies at the Nationals. With that in mind, what's the best of MLB's in…" +06/20/2018,Sports_celeb,@AROD,#WorldOfDance #Perfection @JLo @EGTisme https://t.co/aiAqGsYE2t +06/14/2018,Sports_celeb,@AROD,Rockin’ to some @rickspringfield on the way to see our girls’ recital. #JessiesGirl #80sNerd… https://t.co/x5xbRo5YGD +06/13/2018,Sports_celeb,@AROD,"What a great treat to hear one of my heroes, Hank Aaron. I could listen to him talk baseball all day. #legend @espn… https://t.co/bfaqvnU85O" +06/11/2018,Sports_celeb,@AROD,@darrenrovell @BarstoolBigCat @ronberk1 @RyanRuocco No. Just a 3 week time out. +06/10/2018,Sports_celeb,@AROD,"Tonight on SNB you will see the new & improved Severino. He has gone from the 1 pitch, cant miss prospect, to the 3… https://t.co/rnqrQouMmF" +06/10/2018,Sports_celeb,@AROD,Corp Quarterly Retreat. @BarstoolBigCat #ARodCorp https://t.co/V108xAcott +06/08/2018,Sports_celeb,@AROD,Many of you have been very gracious and complimentary about my analysis on @mlbonfox pregame shows. I guess it’s ti… https://t.co/5xUT652BoA +06/08/2018,Sports_celeb,@AROD,Tune into @GetUpESPN! I’ll be live in 5! https://t.co/i7sBNGyBsE +06/07/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Mets and Yankees on Sunday Night Baseball June 10. If MLB expands to 32 teams, with an equal number of teams…" +06/04/2018,Sports_celeb,@AROD,"When you spend a few years as a full-time DH and then a broadcaster, any chance you get to put on a glove ... you t… https://t.co/0PsuaRnGFr" +06/04/2018,Sports_celeb,@AROD,My little nephew...not so little as he gets ready for the #MLBDraft tomorrow! #proud @Nick__silva17 https://t.co/E4KX97CcXx +06/04/2018,Sports_celeb,@AROD,RT @Nick__silva17: Made it up to the booth! #SundayNightBaseball @AROD https://t.co/0X4Lqhw6T7 +06/03/2018,Sports_celeb,@AROD,Who’s ready for @espn #SundayNightBaseball? #bosvshou #letsgo #gettowork @barstoolbigcat https://t.co/p7H89Tqq0t +06/03/2018,Sports_celeb,@AROD,"RT @darrenrovell: The Brett Favre Draft Day photo gets all the love, but the @AROD Draft Day Photo, taken 25 years ago today when he was pi…" +05/30/2018,Sports_celeb,@AROD,Watch the Yankee game with me. I’m going to go live in a few on @instagram- get your questions ready! +05/28/2018,Sports_celeb,@AROD,".@BarstoolBigCat Thanks, Dan. Don’t forget- team meeting tomorrow, 8AM at HQ. Did you finish the financial model? https://t.co/R8Um6nMh2K" +05/28/2018,Sports_celeb,@AROD,".@BarstoolBigCat You may need earmuffs, kid https://t.co/WDxerIBSJB" +05/27/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Red Sox and the Astros on Sunday Night Baseball June 3, from Houston. With that in mind, here's this week's…" +05/20/2018,Sports_celeb,@AROD,#FeelingTheLove #GroupHug #FamilyTime https://t.co/ZY30yvteYm +05/15/2018,Sports_celeb,@AROD,"Join me July 13th in Anaheim, CA at Relentless 2018 hosted by @dannymorel! Purchase tix: https://t.co/MDpyeC902o https://t.co/unWNc9g9Th" +05/15/2018,Sports_celeb,@AROD,RT @ABCSharkTank: .@AROD will officially be coming back as a guest shark next season! https://t.co/ITHHeCqlGc +05/13/2018,Sports_celeb,@AROD,"Always great seeing my friend this week, the amazingly talented @jimmyfallon. Did you see us “face off” swinging th… https://t.co/uVxQZpYdWR" +05/12/2018,Sports_celeb,@AROD,"Speaking at the Wall Street Journal “The Future of Everything” Festival alongside @fanatics CEO, @MichaelGRubin.… https://t.co/FWFnNlEIyB" +05/10/2018,Sports_celeb,@AROD,"Wow. They really, really love this game. +#LifeNeedsSports + +https://t.co/r7shYCQkqv" +05/08/2018,Sports_celeb,@AROD,RT @Buster_ESPN: We've got the Nationals vs. the Diamondbacks for our Sunday Night Baseball broadcast May 13. With this in mind... poll que… +05/06/2018,Sports_celeb,@AROD,"RT @MLBPipeline: Joe Dunand, a power-hitting shortstop like Uncle @AROD, leads the FSL in total bases and hits and represents the #Marlins…" +05/03/2018,Sports_celeb,@AROD,"RT @GerryMatalon: “The game is like a great meal,” said Matalon, who runs the media training company Matalon Media. “Announcers are servers…" +05/02/2018,Sports_celeb,@AROD,"Me and @kevinolearytv at the Milken Conference #FacebookLive +https://t.co/gEkGKVx5Ys" +04/30/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: For Sunday Night Baseball May 6, we will have Cubs vs. Cardinals. Our poll question for that game is about Yadier Molina's…" +04/27/2018,Sports_celeb,@AROD,"#ElAnillo pa cuando...well I keep asking her! +#HailToTheQueen @JLo" +04/25/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: The Angels will host the Yankees in our next Sunday Night Baseball broadcast, on April 29th, in a game of stars. Among tho…" +04/24/2018,Sports_celeb,@AROD,@kevinmillar I forgot how good looking you used to be. 😉 https://t.co/hUzheaCkpi +04/12/2018,Sports_celeb,@AROD,RT @Inc: Publicist for Jay Z and A-Rod values creating relationships and building contacts @DarrenHeitner https://t.co/zR9Uqg6t4w +04/05/2018,Sports_celeb,@AROD,"RT @ForbesLife: Four years after being in baseball purgatory, Alex Rodriguez is finding redemption as one of the sport's most respected ana…" +04/01/2018,Sports_celeb,@AROD,Checking in on my boys @kevinburkhardt @DTrainMLB @TheBigHurt_35 ... great show guys! https://t.co/gLGP5UuU86 +03/30/2018,Sports_celeb,@AROD,Thank you guys. https://t.co/D46kwDIF3j +03/30/2018,Sports_celeb,@AROD,@TheOscGonzalez Thank you Oscar. +03/30/2018,Sports_celeb,@AROD,@yet_another_day @espn @Dodgers @SFGiants Thank you Larry. +03/30/2018,Sports_celeb,@AROD,Thanks Brian. https://t.co/Td77HOTQAZ +03/30/2018,Sports_celeb,@AROD,@reidrattlecage Thanks Tony. +03/30/2018,Sports_celeb,@AROD,@TheIanSolomon @espn Thank you Ian for the kind words. +03/30/2018,Sports_celeb,@AROD,@chrisdigerolamo @espn @SFGiants @Dodgers Thank you Chris. +03/30/2018,Sports_celeb,@AROD,@Ruinerof_Days @_jessicamendoza Thank you so much. +03/19/2018,Sports_celeb,@AROD,"We always strive to be the best, but it helps when you also can learn from the best. Tim McCarver is one of my base… https://t.co/vkQILu9VzB" +03/18/2018,Sports_celeb,@AROD,"Congrats @joedunand on your homer today. So great to watch you playing at a high level. Aim for the bushes, reach f… https://t.co/DO7YJTO448" +03/14/2018,Sports_celeb,@AROD,"Get back on your feet, get back to work, be stronger than your excuses. @cnbc #BackInTheGame #ARodCNBC" +03/13/2018,Sports_celeb,@AROD,"See if I can help former NBA star, @JoeBeast95, get back on his feet out in my new show, Back in the Game. + +Premie… https://t.co/RcnFXkfiJ5" +03/12/2018,Sports_celeb,@AROD,"Hey, #SXSW! I‘m talking baseball, business and redemption with @CNBC today at 9:30a CT. #ARodCNBC" +03/08/2018,Sports_celeb,@AROD,"Very proud of this project! #ProjectDestined + +https://t.co/E8CC3BqesG" +03/05/2018,Sports_celeb,@AROD,"Everyone loves an epic comeback story. + +See if I can help former NBA star, @JoeBeast95, get back on top. Watch my… https://t.co/Ne5Uft5ZDH" +03/04/2018,Sports_celeb,@AROD,"ICYMI: SNL “The Champions” + +https://t.co/ZU7W4iAsU3" +03/03/2018,Sports_celeb,@AROD,.@BarstoolBigCat No days off at #TheCorp https://t.co/kyycvniD4o +03/03/2018,Sports_celeb,@AROD,".@barstoolbigcat only 1,000 more to go. @barstoolsports https://t.co/jzzqQj2S07" +02/16/2018,Sports_celeb,@AROD,"RT @SportsCenter: The Cubs' Anthony Rizzo, a graduate of Marjory Stoneman Douglas High School, fought through tears as he delivered a heart…" +02/15/2018,Sports_celeb,@AROD,#HappyValentinesDay everyone!! ❤️❤️💕💕 https://t.co/PA40KpxEhq +02/07/2018,Sports_celeb,@AROD,RT @ElNidoFamily: Great advice!! “Shoot for the President; shoot for the CEO; don’t shoot for #2.” -@AROD https://t.co/XWL19AROsT +02/04/2018,Sports_celeb,@AROD,"Hmmm. Sounds good, Coach. Not sure about that logo though. I can’t place it exactly but I feel like I’ve seen it be… https://t.co/N2f4Y1Dkxn" +02/04/2018,Sports_celeb,@AROD,Just one more selfie. I just found out what the Superzoom does. https://t.co/sounGYtnlj +02/04/2018,Sports_celeb,@AROD,"“Dad, go stand behind the tree. You’re embarrassing us.” #SuperBowl #Minnesota #ella https://t.co/qCAF3ilc22" +02/03/2018,Sports_celeb,@AROD,"RT @CBBonFOX: ""You lived your dream of playing ball, I've been able to live my dream of coaching ball."" + +@DukeMBB's Coach K sits down with…" +02/03/2018,Sports_celeb,@AROD,Off to Minneapolis. ✈️ 🏈 https://t.co/vCkis3UQMz +02/02/2018,Sports_celeb,@AROD,"My 2018 ‘game plan’ for real estate investing. #CNBC #RealEstate #Investing @CNBC +https://t.co/h3jfZw55HF https://t.co/ETAAOFoOfT" +02/01/2018,Sports_celeb,@AROD,"RT @CBBonFOX: Coach K on this year's @DukeMBB team: ""They have so much to learn in a condensed period of time."" + +@AROD x Coach K... Saturda…" +02/01/2018,Sports_celeb,@AROD,"This is for every woman who works till 1am to get it right, who has the grit to get up when it’s not, and who shows… https://t.co/664uG7Ov44" +02/01/2018,Sports_celeb,@AROD,I had the honor of sitting down with Coach K. Catch the full interview Saturday on @CBBonFOX https://t.co/LgJepawxBA +01/31/2018,Sports_celeb,@AROD,"Happy birthday @barstoolbigcat. Here at the Corp we would usually give you the day off, but since it's a busy time… https://t.co/n8zg1qnxoV" +01/30/2018,Sports_celeb,@AROD,Quick break during rehearsals at @nbc @unistudios before we head to #Minneapolis for @jlo’s Super Bowl Saturday nig… https://t.co/xjJjGiEpA4 +01/29/2018,Sports_celeb,@AROD,Thanks for tuning in tonight to @ABCSharkTank! There’s another episode airing now! Do not go anywhere! +01/29/2018,Sports_celeb,@AROD,"Done deal! Congrats Martin! You’ve got, not 1, not 2, but 3 sharks backing @SnapClips! @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,Bet you didn’t see that coming… @MCuban is also in! Making that a 3-way offer of $150k for 30%. @SnapClips @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Surprise! I’m in on the deal with @LoriGreiner! @SnapClips +01/29/2018,Sports_celeb,@AROD,We have @LoriGreiner’s offer- $150k for 50% of @SnapClips. @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Quit school?! 😳 @SnapClips @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"$150,000 for 15% equity for @SnapClips. Who will make the deal? @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,Boom! @MCuban made the deal with Nick and Dan of #Changed! Congrats fellas! @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Now @MCuban is in for $250k for 25% of #Changed with no room for negotiation. @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Highway robbery @RobertHerjavec! $250k for 48%?! #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,No competitive advantage. I’m out. Best of luck to Nick and Dan. #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"2 brothers, raised by a single- mother who emigrated from Poland and worked 3 jobs to support her kids. #Inspiration #Changed @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,I’m always interested to see where people come from and hear their stories. @ABCSharkTank #Changed +01/29/2018,Sports_celeb,@AROD,Americans owe $1.3 trillion in student loan debt?! #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,$250k for 15% of #Changed. Which shark will get the deal done? @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"RT @BarbaraCorcoran: Who else loves @AROD’s definition of a PHD? Poor, Hungry and Driven! I do! I had PHD myself when I was starting out. #…" +01/29/2018,Sports_celeb,@AROD,"RT @TheSharkDaymond: “I love to work with entrepreneurs who have a PHD – Poor, hungry and driven.” - @Arod #SharkTank" +01/29/2018,Sports_celeb,@AROD,Best of luck to you guys. Never stop hustling. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"“You’re only as good as your team.” It’s okay if you’re the creative or visionary of your company, but always have… https://t.co/mFyqgPWfXi" +01/29/2018,Sports_celeb,@AROD,"Whoa, whoa, whoa.. let’s hear those numbers again. #KnowYourNumbers @ShowerPill @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Impressive resumes, fellas. @ShowerPill @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,“Shower to the people.” I like the sound of that. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,These look like my kind of guys. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"“Never take ‘no’ for an answer.” Congrats to @TheBouqsCo for your unconventional, yet inspiring @ABCSharkTank story! @robertherjavec" +01/29/2018,Sports_celeb,@AROD,"Congratulations @BarbaraCorcoran, Ondrea & Marquez on your deal! Best of luck! #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"What?! @LoriGreiner, you can’t do that to me! We’re sticking to 30%! #Partners #TheDoughBar" +01/29/2018,Sports_celeb,@AROD,Didn’t see that coming! @BarbaraCorcoran drops her offer to 25%! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"Let’s make a deal! $400,000 from me AND Lori for 30% of #TheDoughBar! @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"My turn! “I love to do business with people who have a PHD… Poor, Hungry, & Driven.” @ABCSharkTank #TheDoughBar" +01/29/2018,Sports_celeb,@AROD,"Next: @LoriGreiner’s offer- $300,000 for 20%.. Things are getting interesting… #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"First up: @BarbaraCorcoran is in with her offer- $300,000 for 30% #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"As entrepreneurs, you should always think about the EXIT. #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Marquez, I too grew up with a single parent. My mom inspired me to go for my dreams like your dad did for you! #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"$1.2M in sales since 2015?! 280,000 doughnuts sold?! Very impressive. #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Well said @RobertHerjavec, “sell us on the numbers.” #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,“Wow!” Is right.. they really were delicious! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,A doughnut with 11 grams of protein?! Now that’s something even I would eat! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Whoa! You want to give @BarbaraCorcoran a heart attack?! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,We have a great episode for you guys tonight!!! Tune in NOW! @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Who’s ready to step into the Tank with me? Tune in at 9ET for an all-new @abcsharktank! #SwimmingWithTheSharks https://t.co/XGfoQrGy5Q +01/28/2018,Sports_celeb,@AROD,RT @JLo: You don't want to miss @AROD on all NEW @ABCSharkTank TONIGHT on @ABCNetwork #SharkTank +01/28/2018,Sports_celeb,@AROD,Join me tonight at 9pm ET! I’ll be live tweeting during my episode of @ABCSharkTank. Who is tuning in? +01/27/2018,Sports_celeb,@AROD,"RT @GMA: ""It is important early on to set the standard for your kids... don't shoot for number 2."" @AROD talks family, @ABCSharkTank and mo…" +01/27/2018,Sports_celeb,@AROD,"RT @MLB: A hitting contest between @AROD and young prodigy Asher Willig on @FallonTonight. + +Who ya got? 🤔 🤔 https://t.co/nf74u8La3M https:/…" +01/27/2018,Sports_celeb,@AROD,"RT @Yankees: Cool things about this video ranked: + +1. Asher's adorableness (and skills) +2. @AROD batting lefty +3. Asher winning (spoiler al…" +01/26/2018,Sports_celeb,@AROD,RT @CNBCClosingBell: .@AROD is coming up in the next hour to talk about his latest investments. What do YOU want to ask him? Tweet us your… +01/26/2018,Sports_celeb,@AROD,Excited to be on @cnbcclosingbell today at 4:20pm! @_ARodCorp +01/24/2018,Sports_celeb,@AROD,Check out @fallontonight with @jimmyfallon right now! Hopefully I won’t have to smash eggs on my face tonight like… https://t.co/j3p0d3Owu8 +01/23/2018,Sports_celeb,@AROD,. @barstoolbigcat hope you learned your lesson. Week’s up. See you bright and early at The Corp. #BackToTheGrind +01/21/2018,Sports_celeb,@AROD,Dinero. Dinero. Dinero. #comingsoon #smash #Calibash @jlo https://t.co/TTlCcLK5hr +01/20/2018,Sports_celeb,@AROD,Game on @NRGgg!! https://t.co/jEglffK9wL +01/20/2018,Sports_celeb,@AROD,I’ll be on @fs1 tonight during #IndvsMSU soon! Great college basketball atmosphere here! +01/18/2018,Sports_celeb,@AROD,#wheelsup #10dayroadtrip #6cities #busy2018 #arodcorp @steph_mas in the back buried in emails #youcanthide #goteam https://t.co/XDQS9ADGiC +01/15/2018,Sports_celeb,@AROD,Fight for what you believe in. #MLKDay #CivilRights #ABetterAmerica @mlb https://t.co/6NlUs03trE +01/15/2018,Sports_celeb,@AROD,. @BarstoolBigCat I just told the team the news. I expect you to be back at the CORP next Monday #BigCatSuspended https://t.co/5j0wvuxFAl +01/15/2018,Sports_celeb,@AROD,@BarstoolBigCat NO EXCUSES. https://t.co/KCrA2IiYEM +01/15/2018,Sports_celeb,@AROD,RT @BarstoolBigCat: THIS IS MY NIGHTMARE https://t.co/SJIoMHX4eM +01/14/2018,Sports_celeb,@AROD,Saturday groove. #Tashi #DaddysGirl #GrowingUpSoFast https://t.co/GLFTHTu9mo +01/11/2018,Sports_celeb,@AROD,Looking forward to my keynote @AjamuGroupMulticulturalMedia Luncheon powered by @Toyota during @naias on Jan 18th… https://t.co/lz8Kdf5QjF +01/09/2018,Sports_celeb,@AROD,Still thinking about our day in Puerto Rico. Inspiration to last a lifetime. @boldworldwide @goodmorningamerica… https://t.co/3jA65ljkwP +01/06/2018,Sports_celeb,@AROD,Get after it. https://t.co/nFcZp18gxe +01/05/2018,Sports_celeb,@AROD,"Easy decision ... let’s get the 3Peat, boys! @NRGgg https://t.co/6b31aBs8A2" +01/03/2018,Sports_celeb,@AROD,Gym bound @TruFusion https://t.co/WvBX3xRDjb +12/31/2017,Sports_celeb,@AROD,2018👊🏽 https://t.co/wGNCO9v8Ek +12/31/2017,Sports_celeb,@AROD,"Hey @BarstoolBigCat. If @BadgerFootball wins, you get next week off at #ARodCorp. In other words, see you bright an… https://t.co/08CvETpoVB" +12/27/2017,Sports_celeb,@AROD,#DayAfterChristmas #WhatIsGoingOnHere https://t.co/V9UghfSsZI +12/27/2017,Sports_celeb,@AROD,Proud of the work my friend @marcuslemonis is doing to help and bring awareness to those in need in Puerto Rico. Ch… https://t.co/uTKdGnYIVI +12/25/2017,Sports_celeb,@AROD,So much for my attempted photobomb. #Blocked #Nametag #HiMyNameIsAlex #TrustMeIAmBackThere https://t.co/tmMIFxzLG4 +12/25/2017,Sports_celeb,@AROD,"To all of our family, friends, and amazing fans and supporters, have a happy, healthy and safe holiday. Merry Chri… https://t.co/SfHif0R2nj" +12/23/2017,Sports_celeb,@AROD,You can do anything. Wishing everyone a happy and healthy holiday season. #nolimits #yesyoucan #2018 #goforit… https://t.co/JR63tEj6vK +12/22/2017,Sports_celeb,@AROD,RIP Dick Enberg. True professional with a great voice and Iove of sports. Thank you for being so kind to me and my… https://t.co/uKu6S70f5G +12/21/2017,Sports_celeb,@AROD,"Here’s to two of my lifelong heroes, @imisiahthomas & @magicjohnson. Like so many, I loved watching them play baske… https://t.co/IFWkomhrcB" +12/20/2017,Sports_celeb,@AROD,Baseball / Business - 5 ways how they are alike https://t.co/YzuyEJFsN4 +12/19/2017,Sports_celeb,@AROD,You would think by now I might have a cordless phone in my office #Retro #Stuckin1990 #Mondays #OfficeLife https://t.co/LYIbGhcG5i +12/17/2017,Sports_celeb,@AROD,Gorgeous winter day in the mountains. Perfect for an outdoor hike. https://t.co/5IwTJioapm +12/17/2017,Sports_celeb,@AROD,"Talented group of guys who helped out today! + +Adell pick no. 10, for the Angels +Downs pick no. 37 for the Reds +Joe… https://t.co/Iq5q7EqUmC" +12/17/2017,Sports_celeb,@AROD,"Shoutout to head coach Melendez and his son MJ, for an incredible event for the kids, the community, and the Boys a… https://t.co/ooqZkJK7aT" +12/14/2017,Sports_celeb,@AROD,Yu Darvish is a great free-agent talent and huge value for whomever signs him. Once he figures out his World Series… https://t.co/qp3p2ARyMi +12/13/2017,Sports_celeb,@AROD,Wow! What an incredible journey conveyed through music and storytelling tonight from Bruce @Springsteen. He is one… https://t.co/lDP2FiVzf9 +12/13/2017,Sports_celeb,@AROD,"Nice prank, @davidortiz. Hats off to #Masterpass for the assist. 😂 #Sponsored https://t.co/YowWgCn6O0" +12/12/2017,Sports_celeb,@AROD,"Good times. Even better company. From our families to yours, have a safe and festive holiday season. https://t.co/KjEojq8wZC" +12/12/2017,Sports_celeb,@AROD,So much fun visiting the set of #SecondAct. Can’t wait to see this movie. @jlo @vanessahudgens #nyc #212… https://t.co/ZX9EUIMbPt +12/06/2017,Sports_celeb,@AROD,RT @barstoolsports: Another day at Barstool HQ. #ArodCorp https://t.co/lH0VqACcde https://t.co/rJ0uy7zFHy +11/29/2017,Sports_celeb,@AROD,https://t.co/koDRGL3BCH +11/29/2017,Sports_celeb,@AROD,Excited to announce that I have joined the @wmespeakers group! Looking forward to opportunities to speak with enthu… https://t.co/c4WsBLg5HW +11/28/2017,Sports_celeb,@AROD,"You got jokes, @davidortiz. But I'll get the last laugh with #Masterpass. #Sponsored https://t.co/EHeKY6ZP7z" +11/28/2017,Sports_celeb,@AROD,"Happy birthday Elaine. Incredibly passionate, loyal & loving human being. Lucky to call you a friend. @EGTisme https://t.co/nMUPr0kcz7" +11/27/2017,Sports_celeb,@AROD,Finally got some copies of the December @vanityfair cover. Signed a few for charity. What do you guys think? https://t.co/0NyNtMH4ri +11/25/2017,Sports_celeb,@AROD,Perfect day to take the girls for some ice cream #hamptons #holidayweekend https://t.co/TFbS6mfBYH +11/22/2017,Sports_celeb,@AROD,"For everyone who does their part to pay it forward for the next generation, thank you. I’m grateful for all of you.… https://t.co/kwAButhW5b" +11/22/2017,Sports_celeb,@AROD,Girls at work.  #secondact #nyc #tashi13 https://t.co/Xn7lLjXZQm +11/22/2017,Sports_celeb,@AROD,"You're not the only one with #Masterpass, @davidortiz. https://t.co/HxlcAr5RqI" +11/17/2017,Sports_celeb,@AROD,Going live on my #Instagram @AROD from the Dubai concert! +11/14/2017,Sports_celeb,@AROD,With the great Chef Nobu Matsuhisa in Dubai! https://t.co/x1Z5nTsY6D +11/14/2017,Sports_celeb,@AROD,RT @NRGgg: A birthday wish from @AROD and @JLo ?!?! Check that off the bucket list... https://t.co/Bukj0CZ0xk +11/14/2017,Sports_celeb,@AROD,I’m proud to support @caribu’s donation of their app to all currently serving military during this holiday season.… https://t.co/zKAI9tHpGa +11/12/2017,Sports_celeb,@AROD,The swagger is back! @miamihurricanes #ItsAllAboutTheU 🙌 @unclelukereal1 #TurnBackTheClock #305 #GoCanes https://t.co/E7CeXOVUhw +11/11/2017,Sports_celeb,@AROD,Thank you @DesmondHoward @ReceDavis @LeeCorso and @KirkHerbstreit for hosting me today on @collegegameday! #GoCanes… https://t.co/dSQq6sdJ85 +11/11/2017,Sports_celeb,@AROD,Miami vs Notre Dame. @collegegameday #GoCanes https://t.co/sZiamqI4em +11/10/2017,Sports_celeb,@AROD,Looking forward to the weekend like... #tgif https://t.co/cI5WByPiEW +11/10/2017,Sports_celeb,@AROD,There’s no place I’d rather be on Saturday morning than making some picks on @CollegeGameDay in my hometown of Miami! Tune in! #THEU 🙌 +11/10/2017,Sports_celeb,@AROD,Thanks to @Yankees & Jason Zillo for hosting the Q&A today at the @Harman store event. Great talking to so many fa… https://t.co/lUkIRVN19c +11/08/2017,Sports_celeb,@AROD,Sad to hear about the passing of Roy Halladay today. Tremendous competitor. Prayers go out to his family. https://t.co/qhAZeWaVyG +11/06/2017,Sports_celeb,@AROD,RT if you tuned in to @ABCSharkTank tonight! What was your favorite pitch? +11/06/2017,Sports_celeb,@AROD,"As a business scales, it gets a lot more challenging... @ABCSharkTank #SharkTank" +11/06/2017,Sports_celeb,@AROD,Never let your fear stand in the way of your dreams. @GloveStix @ABCSharkTank #SharkTank +07/07/2017,Sports_celeb,@AmericanRaceTNT,"The progress he sought wasn’t happening, so @AttorneyGriggs stepped up and led his community to create change.… https://t.co/AiwmDbcuFz" +07/07/2017,Sports_celeb,@AmericanRaceTNT,"When examining the racial issues of today, @wendycarrillo emphasizes the importance of historical context leading u… https://t.co/k50sRK8u2C" +07/06/2017,Sports_celeb,@AmericanRaceTNT,"“Hashtag revolution” isn’t much of an inspiring phrase, but as @amandaseales says, they are key to spreading awaren… https://t.co/6iNjBKJNUp" +07/06/2017,Sports_celeb,@AmericanRaceTNT,"Six states: California, Texas, Florida, New York, New Jersey, & Illinois account for 59% of undocumented immigrants… https://t.co/eNQtG53BHa" +06/30/2017,Sports_celeb,@AmericanRaceTNT,Does Hollywood have a whitewashing problem? @icecube & other entertainment professionals explore in episode 3 of #AmericanRaceTNT +06/30/2017,Sports_celeb,@AmericanRaceTNT,The conversation must persist beyond the last episode of #AmericanRaceTNT. We all have to do our part. https://t.co/FdLxufPFqS +06/30/2017,Sports_celeb,@AmericanRaceTNT,"1 in 7 US infants (14%) were multiracial in 2015, three times the amount from 1980. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"Exposure to other faiths is low but rising. 21% of US adults were raised in mixed religious homes, compared to 79% single. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"In the 2nd #AmericanRaceTNT Roundtable @hodakatebi, @PeterJaeNYLA, @julissaarce & @missandrealewis talk immigration: https://t.co/tPLHBGHTpy" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"57% of Americans favor same-sex marriage, while 39% oppose it. The rest have no strong opinions one way or the other. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"""Minorities are always trying their best to fit in, to belong. That’s where the patriotism comes from."" -… https://t.co/VyiAOF0ZQJ" +06/30/2017,Sports_celeb,@AmericanRaceTNT,5% of Americans in 1965 were foreign-born. Today it's 14%. How will this rising number of immigrants affect US iden… https://t.co/IPSFXYVaRb +06/30/2017,Sports_celeb,@AmericanRaceTNT,Rewatch #AmericanRaceTNT episodes 1 through 4 on the TNT app or on https://t.co/XrvB6lfS0a +06/29/2017,Sports_celeb,@AmericanRaceTNT,"ICYMI, the #AmericanRaceTNT Roundtables tackle immigration, Islam & representation. Check them out on Facebook: https://t.co/tPLHBGHTpy" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"In episode 1 of #AmericanRaceTNT, @byDVNLLN explains how the Baltimore Uprising inspired him. See it on https://t.co/XrvB6lfS0a" +06/29/2017,Sports_celeb,@AmericanRaceTNT,The best parts of the U.S. comes from the variety of cultures that inhabit it. To make it uniform is to make it ste… https://t.co/5Bhen2kTEw +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Since 2000, the immigrant population rose about 30% to a record 43.6 million in 2014. #AmericanRaceTNT" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Social media is a vital tool in activism, as supported by @amandaseales & @byDVNLLN in the 1st #AmericanRaceTNT Roundtable." +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Asian immigrants are projected to overtake Hispanic immigrants by 2065, becoming 38% of the foreign-born population… https://t.co/Jm1x3hcaeh" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"In the 2nd episode of #AmericanRaceTNT, attorney @WBillyMurphy airs out the sordid history of police brutality. https://t.co/wc6af3W6d2" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT episode 3 displays the harsh, limited reality of being a minority working in Hollywood. #whitewashing #diversity #poc" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"49% of Hispanics consider themselves a ""typical American."" 44% think they're ""very different."" The rest fall in-between. #AmericanRaceTNT" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"If you missed the conversation, you can still watch the four-part docu-series #AmericanRaceTNT on-demand. https://t.co/jgPOpprhyi" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"""What does it mean to say 'Muslim is the new Black?"" @hodakatebi & @missandrealewis answer this in the 2nd #AmericanRaceTNT Roundtable." +06/28/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT approaches the conversation without bias. See all 4 episodes at https://t.co/XrvB6lfS0a & on the TNT app. +06/28/2017,Sports_celeb,@AmericanRaceTNT,".@ShaunKing holds the idea that, for all the social media criticism, there are far more instances of its positive r… https://t.co/nV2pacBYZi" +06/28/2017,Sports_celeb,@AmericanRaceTNT,One of the largest issues surrounding undocumented residents in the U.S is the unfortunate effect it has on their k… https://t.co/wSqsMyX6Av +06/28/2017,Sports_celeb,@AmericanRaceTNT,68% of black social media users are likely to say that they see racial posts online. #AmericanRaceTNT +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Prof. #JodyArmour hosts two #AmericanRaceTNT Roundtables w/ panelists @ShaunKing, @amandaseales, @hodakatebi & more. https://t.co/4ivMNIxWha" +06/27/2017,Sports_celeb,@AmericanRaceTNT,All #AmericanRaceTNT episodes available for download with the TNT app. +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Islam is a divisive topic in Irving, Texas. The 2nd episode of #AmericanRaceTNT explores this divide from both sides." +06/27/2017,Sports_celeb,@AmericanRaceTNT,Let's continue the conversation. Surround yourself with diverse-minded people & strive for a better future.… https://t.co/oCckwZmJkd +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Minorities are the most likely to live in multi-generational homes, & at 27%, Asians are the largest of these groups. #AmericanRaceTNT" +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Episode 4 of #AmericanRaceTNT dives into immigration. If you missed it the first time around, find it on… https://t.co/RKKYC8WNBl" +06/27/2017,Sports_celeb,@AmericanRaceTNT,"In the 1st #AmericanRaceTNT Roundtable @ShaunKing, @amandaseales, @wendycarillo & @byDVNLLN discuss police brutality https://t.co/xHl6MrWTQZ" +06/27/2017,Sports_celeb,@AmericanRaceTNT,RT @NABJ: .@NABJSports welcomes Charles Barkley of @AmericanRaceTNT and @simone_manuel of @USASwimming to #NABJ17. See more: https://t.co/D… +06/27/2017,Sports_celeb,@AmericanRaceTNT,Episode 4 of #AmericanRaceTNT takes a deep dive into immigration and how it affects American citizens. Watch it at https://t.co/XrvB6lfS0a +06/26/2017,Sports_celeb,@AmericanRaceTNT,There’s few things more damaging to Muslim public image than the overwhelmingly negative portrayal in media.… https://t.co/7Y2Ywp5t0N +06/25/2017,Sports_celeb,@AmericanRaceTNT,President Trump’s consistent anti-Mexican rhetoric has naturally unsettled Latinos across the country to varying de… https://t.co/yiQDYRhvFy +06/24/2017,Sports_celeb,@AmericanRaceTNT,Conservative. Liberal. Everything in between or neither. #AmericanRaceTNT tackles the issues important to everyone. https://t.co/AfVEHlNDYV +06/24/2017,Sports_celeb,@AmericanRaceTNT,"For decades, Asians have witnessed the same tired stereotypes in fiction, and rapper @dumbfoundead refutes them as… https://t.co/I9lURTjja9" +06/23/2017,Sports_celeb,@AmericanRaceTNT,All episodes of #AmericanRaceTNT are ready to watch on-demand and on @tntdrama digital platforms. https://t.co/vesBNwVSey +06/23/2017,Sports_celeb,@AmericanRaceTNT,Get inspired and extend the conversation beyond the show. @PeterJaeNYLA lets you know how. #AmericanRaceTNT https://t.co/09ObgUIg8n +06/22/2017,Sports_celeb,@AmericanRaceTNT,Rewatch all 4 episodes of #AmericanRaceTNT on https://t.co/3VE9C7gwKQ and the TNT app +06/22/2017,Sports_celeb,@AmericanRaceTNT,"Diversity in Hollywood is a crucial topic to be breached, and @icecube explains what he sees as issues in the indus… https://t.co/QFgPH9EYDD" +06/22/2017,Sports_celeb,@AmericanRaceTNT,"The amount of anti-Muslim hate groups in the U.S. tripled in 2016, according to the @splcenter. #AmericanRaceTNT https://t.co/27MMtxGe3g" +06/22/2017,Sports_celeb,@AmericanRaceTNT,"Different communities may seek different things, but at the end of the day, progress is the singular goal.… https://t.co/D1nUxR91pJ" +06/21/2017,Sports_celeb,@AmericanRaceTNT,"An idealized America should not only accept, but celebrate, the variety of cultures that comprise it.… https://t.co/FBDHB9TxRh" +06/21/2017,Sports_celeb,@AmericanRaceTNT,Sometimes the conversation leads to understanding. Sometimes it just reveals how deep a divide this country has.… https://t.co/XKc0yaNZY5 +06/21/2017,Sports_celeb,@AmericanRaceTNT,"Activist and blogger @hodakatebi believes in a limit to free speech. Do you agree &, if so, where does the threshol… https://t.co/eH1OBYq9mR" +06/21/2017,Sports_celeb,@AmericanRaceTNT,Perception of journalistic integrity has eroded in recent times. Professor @trbhsk cites fake news as the source… https://t.co/7Wz3GgiCRY +06/20/2017,Sports_celeb,@AmericanRaceTNT,"Many Americans may go their entire lives without meeting certain minorities, leaving the media to properly represen… https://t.co/2YV3iioPQI" +06/19/2017,Sports_celeb,@AmericanRaceTNT,Sometimes the conversation leads to understanding. Sometimes it just reveals how deep a divide this country has.… https://t.co/JPBbpHt2VX +06/19/2017,Sports_celeb,@AmericanRaceTNT,RT @AttorneyGriggs: I want to thank #AmericanRaceTNT @americanracetnt for the lovely gift. #justicefighter https://t.co/r326XFYnYg +06/19/2017,Sports_celeb,@AmericanRaceTNT,"Religion's significance in the U.S. is waning, a trend that's projected to continue. Is this a cause for concern?… https://t.co/6UkVzlhfGS" +06/16/2017,Sports_celeb,@AmericanRaceTNT,Relive the #AmericanRaceTNT conversation on TNT digital platforms. https://t.co/NzKhKvktky +06/15/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT is on tonight at 11pm PST. Tune-in and continue the conversation about race, religion & stereotype… https://t.co/lDtWVcypqu" +06/14/2017,Sports_celeb,@AmericanRaceTNT,How likely are you to see a film if an actor's ethnicity is inconsistent with their character's? #AmericanRaceTNT https://t.co/4rH0Ywbven +06/14/2017,Sports_celeb,@AmericanRaceTNT,"Due to a large influx of Asian & Hispanic immigrants, Millennials are the most diverse generation in US history.… https://t.co/EJKgZFujzr" +06/14/2017,Sports_celeb,@AmericanRaceTNT,"The US prides itself on being a melting pot, yet minorities like @julissaarce are being told every day to shed thei… https://t.co/rUjXXiIOxt" +06/13/2017,Sports_celeb,@AmericanRaceTNT,"Dr. @darnell_hunt’s research illustrates major racial discrepancies in media, preventing diverse stories from being… https://t.co/mxC1dviskR" +06/11/2017,Sports_celeb,@AmericanRaceTNT,.@AttorneyGriggs boldly shares the Black American experience with white supremacist Richard Spencer in episode 4 of… https://t.co/0un7v3kwTO +06/10/2017,Sports_celeb,@AmericanRaceTNT,The conversation needs to start today for a richer America tomorrow. Rewatch #AmericanRaceTNT on the TNT app. +06/08/2017,Sports_celeb,@AmericanRaceTNT,".@pewresearch: Muslims are the youngest major US religious group with a median age of 24, as well as the quickest growing. #AmericanRaceTNT" +06/08/2017,Sports_celeb,@AmericanRaceTNT,All four episodes of #AmericanRaceTNT are waiting for you on TNT’s digital platforms on-demand. https://t.co/6YPye0sEpA +06/08/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT spans the country, spreading a long overdue conversation where it's needed most. Rewatch the action on the TNT app." +06/08/2017,Sports_celeb,@AmericanRaceTNT,"With #AmericanRaceTNT now on-demand, witness the conversation and the passion of the people across the country. https://t.co/BhmkZvFuPx" +06/08/2017,Sports_celeb,@AmericanRaceTNT,Racial tensions come to a head as representatives of two opposing communities discuss the state of race in America.… https://t.co/4HDCgMUcEc +06/07/2017,Sports_celeb,@AmericanRaceTNT,Necessary. Powerful. And a long time coming. #AmericanRaceTNT is all the talk online. Find the conversation at… https://t.co/QmxXCygKyh +06/07/2017,Sports_celeb,@AmericanRaceTNT,"If you missed the initial run of #AmericanRaceTNT, don't worry. Download the TNT app and can continue the conversation." +06/07/2017,Sports_celeb,@AmericanRaceTNT,One of the only things holding back the country socially is a lack of dialogue. Tune into #AmericanRaceTNT on-demand and see the change. +06/07/2017,Sports_celeb,@AmericanRaceTNT,The rise of a globally connected internet gives a platform to those who before had no way to speak their minds.… https://t.co/s6fLCGQM8K +06/06/2017,Sports_celeb,@AmericanRaceTNT,"One officer’s negative actions can put an entire police force in a negative light, but still officers strive to be… https://t.co/5HMDSpICIZ" +06/06/2017,Sports_celeb,@AmericanRaceTNT,Conventional movie wisdom maintains that white leads sell better than non-white leads overseas. New data shows othe… https://t.co/2sKCAcylTG +06/06/2017,Sports_celeb,@AmericanRaceTNT,@PamRdrqs Thank you for watching and being part of the conversation. This series is only the beginning. +06/04/2017,Sports_celeb,@AmericanRaceTNT,"Entertainer @amandaseales clarifies that Black Pride’s intent is to live on its own, not in opposition to whites.… https://t.co/VV5BahMSSO" +06/03/2017,Sports_celeb,@AmericanRaceTNT,"To compensate for a lack of Asian-American male role models, @dumbfoundead stepped up and became one himself. #AmericanRaceTNT" +06/02/2017,Sports_celeb,@AmericanRaceTNT,"When it comes to casting in Hollywood, too many minority roles still rely on tired stereotypes, frustrating many actors. #AmericanRaceTNT" +06/02/2017,Sports_celeb,@AmericanRaceTNT,"If you have the TNT app, you can continue the #AmericanRaceTNT conversation." +06/01/2017,Sports_celeb,@AmericanRaceTNT,An undocumented citizen in #AmericanRaceTNT risks a 10-year exile if she applies for US citizenship - a risk many refuse to take. +06/01/2017,Sports_celeb,@AmericanRaceTNT,"To ease the minds of her citizens, @IrvingMayor banned Sharia Law in the city. This in turn alienated the Muslim community. #AmericanRaceTNT" +06/01/2017,Sports_celeb,@AmericanRaceTNT,Rewatch the conversation and questions posed on-demand and on the TNT app. #AmericanRaceTNT +06/01/2017,Sports_celeb,@AmericanRaceTNT,"Every week, a vigil is held before Baltimore City Hall in honor of victims of police brutality. #AmericanRaceTNT" +05/31/2017,Sports_celeb,@AmericanRaceTNT,"62% of Americans get news from social media & these platforms often find themselves filled with fake news, deluding many. #AmericanRaceTNT" +05/31/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT is available to stream now on-demand at https://t.co/XrvB6lfS0a and the TNT app. +05/31/2017,Sports_celeb,@AmericanRaceTNT,Charles sits down with television legend @TheNormanLear to talk about his massive influence in promoting media diversity. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT has always been about learning and growing, for both viewers and Charles himself." +05/30/2017,Sports_celeb,@AmericanRaceTNT,A Baltimore town hall meeting illuminates the brutal reality many of its citizens live every day. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,Kindness is a trait gained by spending time with people unlike yourself. Talk to a stranger and make tomorrow better. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,@JamesPearson6 Catch up on #AmericanRaceTNT on-demand at https://t.co/XrvB6lfS0a or download the TNT app. +05/30/2017,Sports_celeb,@AmericanRaceTNT,Catch up on #AmericanRaceTNT on-demand at https://t.co/XrvB6lfS0a or download the TNT app. +05/29/2017,Sports_celeb,@AmericanRaceTNT,"Irving has one of the most diverse zip codes in the US, and #AmericanRaceTNT explores how diversity has brought tension to the city." +05/29/2017,Sports_celeb,@AmericanRaceTNT,"If those you speak to remain the same every day, month and year, your perspective won't grow. Join a wider conversation. #AmericanRaceTNT" +05/29/2017,Sports_celeb,@AmericanRaceTNT,Download the TNT app or head to https://t.co/XrvB6lfS0a to watch #AmericanRaceTNT and further the dialogue. +05/29/2017,Sports_celeb,@AmericanRaceTNT,Informal separation of cultures in society is one of the biggest obstacles in moving forward in America. #AmericanRaceTNT +05/28/2017,Sports_celeb,@AmericanRaceTNT,The conversation is vital to the progress of this country. Download the TNT app and watch #AmericanRaceTNT today. +05/27/2017,Sports_celeb,@AmericanRaceTNT,"Day in and day out, thousands of undocumented families live in fear of deportation. Episode 3 features one. #AmericanRaceTNT" +05/27/2017,Sports_celeb,@AmericanRaceTNT,"In episode one of #AmericanRaceTNT, Charles spends time with Baltimore PD to understand both sides of the conflict." +05/27/2017,Sports_celeb,@AmericanRaceTNT,RT @markchironna: Charles Barkley does a masterful job on the docu-series on TNT @AmericanRaceTNT - so needed and so well done - we all owe… +05/26/2017,Sports_celeb,@AmericanRaceTNT,"Being American means staying true to your faith, no matter what faith that is. #AmericanRaceTNT https://t.co/OolCIxeTNo" +05/25/2017,Sports_celeb,@AmericanRaceTNT,What happens when the thing you're promised never gets delivered? You may get irritated. @PeterJaeNYLA is.… https://t.co/6q1W6881JH +05/24/2017,Sports_celeb,@AmericanRaceTNT,Can humor stir discussions that may not happen otherwise? @MattBesser seems to think so. #AmericanRaceTNT https://t.co/OAXGy5oK69 +05/24/2017,Sports_celeb,@AmericanRaceTNT,"Radical Islam can take any form, not just the ones we’re familiar with. #AmericanRaceTNT https://t.co/PoIC1cxPKD" +05/24/2017,Sports_celeb,@AmericanRaceTNT,Episode 4 of #AmericanRaceTNT tackles the growing influence of fake news. See the conversation on-demand. +05/24/2017,Sports_celeb,@AmericanRaceTNT,"Breaking bread means breaking down walls, which allows true progress to happen. #AmericanRaceTNT https://t.co/UIwQZAoKVF" +05/24/2017,Sports_celeb,@AmericanRaceTNT,@FLSMagazine Thank you for doing your part to keep this important conversation going. +05/24/2017,Sports_celeb,@AmericanRaceTNT,RT @Dee_T_Knight: Norman Lear on @AmericanRaceTNT is everything...Made me tear up a little. 🙌🏾 +05/23/2017,Sports_celeb,@AmericanRaceTNT,"The US is projected to grow more colorful each day, yet no steps are taken to reflect this in Hollywood.… https://t.co/f9oT8cOBGQ" +05/23/2017,Sports_celeb,@AmericanRaceTNT,"RT @NPRCodeSwitch: In 'American Race,' Charles Barkley Is A True Believer In The Power Of Dialogue (by @GeeDee215) + +https://t.co/9pJFhvKU…" +05/23/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT poses a discussion that this country needs to have. Download the TNT app and watch the entire docu-series today. +05/22/2017,Sports_celeb,@AmericanRaceTNT,The conversation continues on-demand and on the TNT app. Check out all 4 episodes today. #AmericanRaceTNT +05/21/2017,Sports_celeb,@AmericanRaceTNT,The 3rd episode of #AmericanRaceTNT asks why minorities seem to be so misrepresented in the entertainment industry. +05/20/2017,Sports_celeb,@AmericanRaceTNT,"Whispered, spoken, or shouted, the conversation must happen. And it has to happen now. #AmericanRaceTNT https://t.co/KxPCXdQiG0" +05/20/2017,Sports_celeb,@AmericanRaceTNT,Hear the conversation. From all sides. #AmericanRaceTNT https://t.co/tuobeB3UyW +05/20/2017,Sports_celeb,@AmericanRaceTNT,Episodes one through four of #AmericanRaceTNT are available online at https://t.co/XrvB6lfS0a as well as the TNT app. Stream today. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Stream all 4 episodes of #AmericanRaceTNT at https://t.co/XrvB6lfS0a and on the TNT app. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Download the TNT app today to stream the entire #AmericanRaceTNT docu-series and get involved in the conversation. +05/19/2017,Sports_celeb,@AmericanRaceTNT,The Islamic Center of Irving alarmed many residents in #AmericanRaceTNT. Should it? See it for yourself in episode 3 on-demand. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Journalism professor Hank Klibanoff has noted the historical trend of leaders rousing people with hateful words.… https://t.co/NQ5e34hrjz +05/18/2017,Sports_celeb,@AmericanRaceTNT,"RT @TeamCornersLC: Corners was featured on TNT's American Race, episode +4, The Divided States of America. Watch it here https://t.co/IOw9C…" +05/18/2017,Sports_celeb,@AmericanRaceTNT,RT @doravldz: .@AmericanRaceTNT was really well done. Good job #CharlesBarkley! Everyone should watch. 👏🏼👏🏼 +05/17/2017,Sports_celeb,@AmericanRaceTNT,RT @LSahba: @CharlesBarkIey as player/entertainer you've been fun to watch. But @AmericanRaceTNT made u important to watch and listen to.… +05/16/2017,Sports_celeb,@AmericanRaceTNT,"When it comes to the diversity conversation in America, Asians often don’t feel like they have a voice.… https://t.co/rqanswrmwP" +05/15/2017,Sports_celeb,@AmericanRaceTNT,Starting the conversation today promises change tomorrow. #AmericanRaceTNT. https://t.co/DTPAnbo5Kh +05/15/2017,Sports_celeb,@AmericanRaceTNT,Continue the #AmericanRaceTNT conversation and let us know your thoughts: https://t.co/8fbVTH3T2U +05/14/2017,Sports_celeb,@AmericanRaceTNT,Starting the conversation today promises change tomorrow. #AmericanRaceTNT. https://t.co/DDRAeYaFqE +05/13/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT covered many stories and voices. Now it's your turn. Tell us your thoughts: https://t.co/sHX7vzugcU +05/13/2017,Sports_celeb,@AmericanRaceTNT,"If you missed out on #AmericanRaceTNT, you can catch up with all four episodes on-demand. It’s never too late to st… https://t.co/7gLT99dS0p" +05/13/2017,Sports_celeb,@AmericanRaceTNT,America fails to be a melting pot when even one of its communities is marginalized. #AmericanRaceTNT https://t.co/H1XabtpDsE +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @dumbfoundead: I'm TNT's @AmericanRaceTNT show go check it out. In Korea about to drop a new project in about a week! Yeeee enjoy! +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @garretdillahunt: Lemme rephrase--watch @AmericanRaceTNT +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @JohnnyGalante: @AmericanRaceTNT Well done. Appreciate that you show both sides of the issues. +05/13/2017,Sports_celeb,@AmericanRaceTNT,"RT @GrieserSteve: @CharlesBarkIey, thank you for hosting @AmericanRaceTNT. It's a must watch" +05/13/2017,Sports_celeb,@AmericanRaceTNT,Tonight we journey to Atlanta on the second-night of our national conversation on American Race. https://t.co/FYxqCr57Dd +05/12/2017,Sports_celeb,@AmericanRaceTNT,Professor Hank Klibanoff expresses his concerns about the unfortunate direction of news media in episode 4 of… https://t.co/IZ2btp6Ka6 +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @missandrealewis: Tune-in now to @AmericanRaceTNT Facebook Roundtable. We will be discussing immigration & whitewashing in Hollywood. ht… +05/12/2017,Sports_celeb,@AmericanRaceTNT,"The #AmericanRaceTNT FB Live panel with @PeterJaeNYLA, @hodakatebi, @julissaarce and @missandrealewis starts now: https://t.co/7rOTyxqT7I" +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @julissaarce: Tune in @ 10am PST for a conversation with @hodakatebi @missandrealewis for @AmericanRaceTNT https://t.co/uBGCpzG3b9 https… +05/12/2017,Sports_celeb,@AmericanRaceTNT,Actor @peternyla knows firsthand how Hollywood treats diverse roles. Meet him on the #AmericanRaceTNT FB Live 5/12… https://t.co/XPLkCo188N +05/12/2017,Sports_celeb,@AmericanRaceTNT,.@hodakatebi bridges American and Middle East experiences through fashion. Meet her on the #AmericanRaceTNT FB Live… https://t.co/TpIsqXzzGS +05/12/2017,Sports_celeb,@AmericanRaceTNT,"The conversation continues tonight as #AmericanRaceTNT journeys to Baltimore, MD and Irving, TX https://t.co/nczBvUsZOE" +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @BaltMediaBlog: #AmericanRaceTNT (@AmericanRaceTNT) will feature #BaltimoreRising TONIGHT at 9pm on @tntdrama https://t.co/RpX9GoykJK +05/12/2017,Sports_celeb,@AmericanRaceTNT,"RT @ThePostGame: Charles Barkley's @AmericanRaceTNT includes Ice Cube, Richard Spencer, Khizr & Ghazala Khan, CT Vivian, Norman Lear https:…" +05/11/2017,Sports_celeb,@AmericanRaceTNT,Should the security of all come at the expense of the few? A question #AmericanRaceTNT seeks to answer. https://t.co/5NLsFecGNq +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Hollywood’s approach to diversity is a controversial issue, and one that @icecube has a lot to say about.… https://t.co/GWRIcvPMRi" +05/11/2017,Sports_celeb,@AmericanRaceTNT,.@USC Professor Jody Armour studies the intersection of race and legal decision-making. Watch him on our FB Live 5/… https://t.co/yiNym4TmJQ +05/11/2017,Sports_celeb,@AmericanRaceTNT,.@julissaarce went from undocumented to Wall Street and fighting for immigrant rights. Meet her on our FB Live 5/12… https://t.co/HnMxOXl7xK +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Jonathan Park tackles longtime Asian-American issues as rapper @dumbfoundead, securing a place as an Asian role mod… https://t.co/eUNcgcKvrf" +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Before you tune-in tonight to the series premiere of #AmericanRaceTNT, watch Charles Barkley today on @CNN at 3pm ET/PT." +05/10/2017,Sports_celeb,@AmericanRaceTNT,".@icecube climbed his way to stardom from humble beginnings. In episode 3 of #AmericanRaceTNT, he and Charles talk… https://t.co/AiR6rX1DjU" +05/10/2017,Sports_celeb,@AmericanRaceTNT,"Tune-in on May 11, the dialogue begins, and arguments turn into conversations. #AmericanRaceTNT https://t.co/mYq3XBis2a" +05/09/2017,Sports_celeb,@AmericanRaceTNT,RT @AttorneyGriggs: Starting the conversation on Race is much needed in America! #AmericanRaceTNT @tntdrama May 11 and 12 @ 9 On Demand Now… +05/09/2017,Sports_celeb,@AmericanRaceTNT,"Many deemed the chaos left in the wake of Freddie Gray’s death a riot, @byDVNLLN considered it a necessary uprising… https://t.co/mK3EgzewIs" +05/08/2017,Sports_celeb,@AmericanRaceTNT,@davidbanner Let us know what you think: https://t.co/aVerPR2PWH +05/08/2017,Sports_celeb,@AmericanRaceTNT,"Tonight, Charles Barkley continues his journey, hungry for the answers this country needs. #AmericanRaceTNT https://t.co/GxzuCaFfca" +05/08/2017,Sports_celeb,@AmericanRaceTNT,RT @amandaseales: Watch me on @AmericanRaceTNT's live Facebook Roundtable it starts at 10amPST! https://t.co/knfDgG7Zja +05/08/2017,Sports_celeb,@AmericanRaceTNT,"The #AmericanRaceTNT FB Live panel with @ByDVNLLN, @WendyCarrillo, @ShaunKing and @AmandaSeales starts now: https://t.co/xHl6MseuIx" +05/08/2017,Sports_celeb,@AmericanRaceTNT,"You just saw #AmericanRaceTNT on-demand, now join us on FB Live as we unpack everything with our roundtable of experts and influencers." +05/07/2017,Sports_celeb,@AmericanRaceTNT,"Tune into our FB Live Roundtable, where we’ll dive deeper with the issues presented in the series. #AmericanRaceTNT https://t.co/tRObzePqHX" +05/07/2017,Sports_celeb,@AmericanRaceTNT,"For many, black lives have been reduced to social media sensations, but even more are fighting this image.… https://t.co/lL7hro6Z1v" +05/07/2017,Sports_celeb,@AmericanRaceTNT,"""I think, in America, we kind-of forgot how to be good neighbors."" - Charles Barkley #AmericanRaceTNT https://t.co/2NghqqFEyc" +05/07/2017,Sports_celeb,@AmericanRaceTNT,Witness the conversation tonight after @NBAonTNT before you continue the journey on #AmericanRaceTNT tomorrow. https://t.co/GfhZ2rHzTh +05/06/2017,Sports_celeb,@AmericanRaceTNT,One day left until #AmericanRaceTNT navigates the country’s biggest social and racial issues. https://t.co/fGPcp2aFy4 +05/06/2017,Sports_celeb,@AmericanRaceTNT,"On May 7th, don’t miss TNT’s exploration of race in America. #AmericanRaceTNT https://t.co/WSZo842Bdg" +05/05/2017,Sports_celeb,@AmericanRaceTNT,RT @CBSThisMorning: Charles Barkley gets real on race in America in new series: https://t.co/1G4Efgm62S +05/05/2017,Sports_celeb,@AmericanRaceTNT,"The US has a wealth of communities, but is more divided than ever. #AmericanRaceTNT aims to open a dialogue to clos… https://t.co/XKvpkhQbzJ" +05/05/2017,Sports_celeb,@AmericanRaceTNT,"Charles Barkley sparks the #AmericanRaceTNT conversation, tonight with @colbertlateshow https://t.co/YZHoh6lm5C" +05/04/2017,Sports_celeb,@AmericanRaceTNT,There’s only 3 days left until #AmericanRaceTNT starts the conversation. https://t.co/7ODDCvvFNs +05/04/2017,Sports_celeb,@AmericanRaceTNT,What role does Hollywood play in its portrayal of minorities and stereotypes? LA is the place to find out more. #AmericanRaceTNT +05/04/2017,Sports_celeb,@AmericanRaceTNT,There are few places more conflicted than Baltimore when it comes to police-community relations. #AmericanRaceTNT visits for a closer look. +05/04/2017,Sports_celeb,@AmericanRaceTNT,"Sharmina Zaidi is a mother, business owner, Muslim, and American. Meet her in episode 2 of American Race.… https://t.co/8FFKMS1OSO" +05/04/2017,Sports_celeb,@AmericanRaceTNT,"Baltimore erupted into chaos in 2015, and photographer @byDVNLLN captured the Uprisings' most harrowing moments. #AmericanRaceTNT" +05/04/2017,Sports_celeb,@AmericanRaceTNT,RT @corimurray: Current situation: @AmericanRaceTNT panel with #CharlesBarkley x @Bakari_Sellers #AmericanRaceTNT https://t.co/fSTy0sIt5X +05/04/2017,Sports_celeb,@AmericanRaceTNT,RT @Essence: Currently live at the #AmericanRaceTNT panel about race relations w/ #CharlesBarkley @Bakari_Sellers and local activists. Stay… +05/04/2017,Sports_celeb,@AmericanRaceTNT,"RT @colbertlateshow: TONIGHT on #LSSC: Charles Barkley of @AmericanRaceTNT, Debra Winger from @theloversmov, comedy from @stollemache, and…" +05/03/2017,Sports_celeb,@AmericanRaceTNT,Starting a conversation is one of the most vital components to moving past the racial issues plaguing the country.… https://t.co/c6R57cmeGM +05/03/2017,Sports_celeb,@AmericanRaceTNT,Racial divisions are fracturing America. #AmericanRaceTNT takes the first step towards healing by opening a dialogue in four key cities. +05/03/2017,Sports_celeb,@AmericanRaceTNT,Do you think comedy helps heal or divide? Episode 3 of #AmericanRaceTNT explores the question at @ucbtla +05/03/2017,Sports_celeb,@AmericanRaceTNT,"To better understand the racial issues splintering the country, #AmericanRaceTNT visits four key cities central to the conversation." +05/03/2017,Sports_celeb,@AmericanRaceTNT,.@byDVNLLN is a photographer/activist whose shots of the Baltimore Uprising galvanized the city. Meet him in episod… https://t.co/3ljkhknL9d +05/02/2017,Sports_celeb,@AmericanRaceTNT,The number of prisoners skyrockets each year. Join Charles Barkley as he explores the root of the issue.… https://t.co/FLXS68gPx9 +05/02/2017,Sports_celeb,@AmericanRaceTNT,"Catch a preview of #AmericanRaceTNT May 7th after the @NBA Playoffs and share your own experiences about race, religion and stereotypes" +05/02/2017,Sports_celeb,@AmericanRaceTNT,"Join the conversation on May 8, watch all four episodes of #AmericanRaceTNT on demand at @tntdrama.com" +05/02/2017,Sports_celeb,@AmericanRaceTNT,"With the country racially divided--conversation is more important than ever. On May 8, Watch all 4 episodes of #AmericanRaceTNT On Demand." +04/29/2017,Sports_celeb,@AmericanRaceTNT,"Baltimore. Irving. LA. Atlanta. On May 8, watch Charles Barkley explore the division in these cities in #AmericanRaceTNT on demand." +04/28/2017,Sports_celeb,@AmericanRaceTNT,There’s no right or wrong on these issues. Just two sides in need of dialogue. #AmericanRaceTNT https://t.co/cpHAHxo1Oo +04/27/2017,Sports_celeb,@AmericanRaceTNT,"If pictures are worth 1,000 words, then truly poignant art can open impactful dialogue. #AmericanRaceTNT https://t.co/0xL9uZsy2D" +04/27/2017,Sports_celeb,@AmericanRaceTNT,A harsh divide exists between police and the community in Baltimore. #AmericanRaceTNT looks to open a dialogue between the two sides. +04/27/2017,Sports_celeb,@AmericanRaceTNT,Follow Charles Barkley crossing the country to start a conversation about race. Catch the @TNTDrama sneak peek on May 7 #AmericanRaceTNT +04/26/2017,Sports_celeb,@AmericanRaceTNT,"America’s got something to say. On May 7th, it’s time to listen. #AmericanRaceTNT https://t.co/lmfL1kTH8o" +04/26/2017,Sports_celeb,@AmericanRaceTNT,.@TNTDrama American Race tackles hard-hitting questions about race in #America. Catch a preview of the conversation May 7 #AmericanRaceTNT +04/26/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT tackles hard-hitting questions about race in America. Catch a preview of the conversation May 7th… https://t.co/g6FLUcWq4L +04/24/2017,Sports_celeb,@AmericanRaceTNT,"On May 7th, voices will be heard and conversations will be had. #AmericanRaceTNT https://t.co/QxOLe98l33" +04/22/2017,Sports_celeb,@AmericanRaceTNT,Charles Barkley will take you across a troubled nation. #AmericanRaceTNT https://t.co/4Y1kwjTIX9 +04/21/2017,Sports_celeb,@AmericanRaceTNT,"Coming May 7, the things that divide us will be given a fresh perspective. #AmericanRaceTNT https://t.co/AB4TV6HZpv" +04/20/2017,Sports_celeb,@AmericanRaceTNT,"Don’t miss Charles Barkley’s four part docu-series about race, religion and stereotypes. #AmericanRaceTNT https://t.co/4ZqTnPfDLy" +06/28/2018,Sports_celeb,@MichaelPhelps,RT @poolsafely: Anyone who has watched @MichaelPhelps at the Olympics has seen him dominate the Individual Medley. Named after his signatur… +06/08/2018,Sports_celeb,@MichaelPhelps,Thankfully this story has a happy ending... please remember to always be water safe...esp during the summer months!… https://t.co/C4SAQb0Kw8 +05/22/2018,Sports_celeb,@MichaelPhelps,RT @cityofStCharles: Our town shined last night with @MichaelPhelps and @JDayGolf as headliners in @ALESolutionsInc second annual @GolfGive… +04/24/2018,Sports_celeb,@MichaelPhelps,"RT @CoachJim4UM: The @MichaelPhelps Swim Spa is still sturdy & working great after three years, Thanks @HotTubLeisure https://t.co/xzmyi2xr…" +04/24/2018,Sports_celeb,@MichaelPhelps,This is a pic I came across the other day and I had to share. It just made me lol🙈 #mattkuchar #rio https://t.co/ard1T15niB +04/12/2018,Sports_celeb,@MichaelPhelps,#TBT to taking over Times Square with an important message to save water on #WorldWaterDay. A lot of people have ac… https://t.co/M4DPnIcZok +04/10/2018,Sports_celeb,@MichaelPhelps,"#OMEGAGolf / #OMEGAmychoice +Great day on the links with my friends at @OMEGAwatches! The Road to St. Louis for the… https://t.co/QDdhUW1s7m" +04/05/2018,Sports_celeb,@MichaelPhelps,It’s here!!! #themasters2018 +03/22/2018,Sports_celeb,@MichaelPhelps,Did you know today is #WorldWaterDay? So make sure you remember that #EveryDropCounts. Joining @Colgate for the sec… https://t.co/3FwfuL1sZL +03/18/2018,Sports_celeb,@MichaelPhelps,All I gotta say is.... LETS GO BLUE!!! @umichbball #marchmadness +03/11/2018,Sports_celeb,@MichaelPhelps,Pumped for golf today.... @TigerWoods 1 shot back and in the Sunday red! +03/08/2018,Sports_celeb,@MichaelPhelps,"This is an important issue in every sport, and I encourage all adults to join me in completing this program. @Aly_Raisman" +03/08/2018,Sports_celeb,@MichaelPhelps,Thx Aly Raisman for making this program available and free!  Each of us needs to do our part to make all sports saf… https://t.co/qExoob8ITK +02/26/2018,Sports_celeb,@MichaelPhelps,Great article!! https://t.co/EKGpmRr7C9 +02/14/2018,Sports_celeb,@MichaelPhelps,Let’s go @shaunwhite !!! Way to go man!! Nothing like a good comeback right?? Redemption always feels great!! #usa #OlympicGames2018 +02/10/2018,Sports_celeb,@MichaelPhelps,"RT @medibio_limited: In our efforts to help break the stigma that surrounds the discussion of mental health, we applaud @MichaelPhelps comf…" +02/10/2018,Sports_celeb,@MichaelPhelps,RT @NBCSports: See why @shaunwhite sees parallels between himself and @MichaelPhelps. https://t.co/YBip7JCJzg https://t.co/dPCVvmzHdp +02/10/2018,Sports_celeb,@MichaelPhelps,So fun!! Way to go Greg! https://t.co/zPa8UDGUt5 +01/16/2018,Sports_celeb,@MichaelPhelps,Sorry for swimming into your story Greg!! Keep up the progress! Check out Greg’s @lovemysilk commercial. 🏊… https://t.co/ZIgqwjdmCl +01/11/2018,Sports_celeb,@MichaelPhelps,"#tbt to a fun day of golf with @KRAVEjerky, snacking on their Honey Habanero Chicken #KRAVEbetter in 2018! https://t.co/ONeTrk4g1Z" +01/08/2018,Sports_celeb,@MichaelPhelps,#ColgatePartner. I want to encourage everyone to make #2018 count by joining me & @Colgate to save water by turning… https://t.co/dCLpOl5hm9 +01/01/2018,Sports_celeb,@MichaelPhelps,Wow....I’m speechless ... #nextyear +12/23/2017,Sports_celeb,@MichaelPhelps,Love it dude!!! Happy holidays! https://t.co/ZEsX2C9DeT +12/23/2017,Sports_celeb,@MichaelPhelps,Can’t wait!!! See ya there!! https://t.co/6mNIY5jj3M +11/30/2017,Sports_celeb,@MichaelPhelps,Pumped to be watching @TigerWoods back out there!!! +11/28/2017,Sports_celeb,@MichaelPhelps,"As a #ColgatePartner, I’m encouraging everyone to save water by turning off the faucet when they brush.… https://t.co/BOyq6mmfDH" +11/16/2017,Sports_celeb,@MichaelPhelps,RT @leesasleep: Thanks to Leesa Sleep Ambassador @michaelphelps for joining us for our Night of Dreams Party to celebrate our launch of in… +11/01/2017,Sports_celeb,@MichaelPhelps,"I'm a #ColgatePartner. On #NationalBrushingDay, protect your teeth by brushing and the planet by turning off the fa… https://t.co/DtVNJMSWaq" +10/26/2017,Sports_celeb,@MichaelPhelps,"Nothing spooky about my fall treat, going all-natural with @KraveJerky #trickortreat #youhavetotryit #amazing https://t.co/gwE6jCCuuh" +10/21/2017,Sports_celeb,@MichaelPhelps,#ColgatePartner I went back to school to teach the next generation #EveryDropCounts. These kids are our newest… https://t.co/ewbstG8XFx +10/19/2017,Sports_celeb,@MichaelPhelps,RT @TODAYshow: WATCH: “It just hit way too close to home.” @MichaelPhelps talks about being at the Las Vegas concert the Friday before the… +10/19/2017,Sports_celeb,@MichaelPhelps,"RT @AM2DM: TODAY ON #AM2DM @MichaelPhelps will tell us why #EveryDropCounts and answer your best non-swimming q's live @ 10:30! +https://t.c…" +10/19/2017,Sports_celeb,@MichaelPhelps,RT @MegynTODAY: .@MichaelPhelps on struggle with anxiety: ‘I didn’t want to be alive anymore’ https://t.co/qTqDJhl9ag https://t.co/PKLqn4U7… +10/07/2017,Sports_celeb,@MichaelPhelps,Hope I make it over the plate!! https://t.co/7aRmWCFdaf +10/06/2017,Sports_celeb,@MichaelPhelps,The ANGST film has 1 goal: to start a conversation about anxiety.I know how much talking about it helps. https://t.co/t6N9nRU5tP #AngstMovie +10/05/2017,Sports_celeb,@MichaelPhelps,RT @people: See Michael Phelps Open Up About His Anxiety Battle in New Film: ‘I Just Didn’t Like Who I Was’ https://t.co/pE0M8NfuNQ +10/05/2017,Sports_celeb,@MichaelPhelps,RT @Therealfixer: Proud of our community. Over $9 million raised. Keep donating: https://t.co/pckDkGjz8o #vegasstrong +10/03/2017,Sports_celeb,@MichaelPhelps,Welcome to the fam !!! https://t.co/Re8pbruOwm +10/01/2017,Sports_celeb,@MichaelPhelps,@darrenrovell do you happen to know what the record is for most consecutive games for throwing a interception?? Is it #flacco @10? +10/01/2017,Sports_celeb,@MichaelPhelps,Well let's hope @Ravens have a better 2nd half ... +09/25/2017,Sports_celeb,@MichaelPhelps,Amazing memories.... how insane!! Thanks for the amazing read from @Paul_Casey https://t.co/ugku40SXLt +09/23/2017,Sports_celeb,@MichaelPhelps,Come on big blue!!!! #goblue +09/21/2017,Sports_celeb,@MichaelPhelps,Just amazing @bykaren !! https://t.co/EeZhkWmkTK +09/19/2017,Sports_celeb,@MichaelPhelps,"RT @NuloPetFood: “Their nutrition is our responsibility. We Decide.” - @MichaelPhelps 🐾 +Join our mission at: https://t.co/h2Q3QIZO3l https:…" +09/19/2017,Sports_celeb,@MichaelPhelps,Their nutrition is our responsibility. We Decide. Join our mission at https://t.co/aMhipzQdAu @nulopetfood https://t.co/OMuZFT4y2R +09/09/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! @UMichFootball +09/09/2017,Sports_celeb,@MichaelPhelps,"RT @MPMichaelPhelps: Briefs = RT 🔄 +Jammers = Like ❤️ + +#MPswim #JoinTheTeam https://t.co/klwxeh0mtZ" +08/30/2017,Sports_celeb,@MichaelPhelps,"RT @ScottMGleeson: When athletes (@MichaelPhelps @BMarshall @Highway_30) share mental health battles, it transcends https://t.co/RVEnlGPdRR…" +08/29/2017,Sports_celeb,@MichaelPhelps,All of this talk... Should we race as well?? @TheNotoriousMMA https://t.co/l3JoMgb1qT +08/27/2017,Sports_celeb,@MichaelPhelps,Hats off to @TheNotoriousMMA ...... amazing competitor and unreal athlete...congrats to @FloydMayweather 50-0 congrats! #legend +08/27/2017,Sports_celeb,@MichaelPhelps,50-0.....wow +08/13/2017,Sports_celeb,@MichaelPhelps,Big shout out to @JustinThomas34 !!! Congrats homie! Hell of a final round !#PGAChampionship2017 +08/10/2017,Sports_celeb,@MichaelPhelps,Big good luck to @JordanSpieth !! #gogetthat @underarmour https://t.co/YLL7o2bq6P +08/10/2017,Sports_celeb,@MichaelPhelps,RT @RickyBerens: Good day out on the course with this crew! Not even a FOREEEEE!!!! @MichaelPhelps @omegawatches https://t.co/GOdCrQwsSj +08/09/2017,Sports_celeb,@MichaelPhelps,Great day out there with the boys!! @pscpwm @rcberens @omega https://t.co/AQDSWHSNUY +08/08/2017,Sports_celeb,@MichaelPhelps,Flashback to one year ago! #goldmedal #usa @caelebdressel @Nathangadrian @heldilox https://t.co/0pkO1svNAi +08/06/2017,Sports_celeb,@MichaelPhelps,RT @Stephen_Logan: Great insight into the mindset of @MichaelPhelps via @matthewsyed in The Greatest. https://t.co/u3DlZJsDwf +08/06/2017,Sports_celeb,@MichaelPhelps,"@SHAQ I hear you want to race again??? Any truth to this? Def not coming outta retirement but I'll def give you a chance to ""try"" to win😁" +08/03/2017,Sports_celeb,@MichaelPhelps,#tbt with ‘Doc’ Dr. Samuel Gruber a legend of shark science @VIKTREsocial https://t.co/iDTChnqhNh +07/30/2017,Sports_celeb,@MichaelPhelps,So damn fun to watch buddy!!!!@caelebdressel https://t.co/5MjNEE0RFa +07/29/2017,Sports_celeb,@MichaelPhelps,@boomerrphelps @mrs.nicolephelps @arschmitty are watching and cheering like hell!! https://t.co/IduMgUuvYA +07/28/2017,Sports_celeb,@MichaelPhelps,"Had a great time talking leadership, mental health and water safety @SAP #mywinningmove https://t.co/xPEjTRNoBD" +07/26/2017,Sports_celeb,@MichaelPhelps,"Talking everything from Shark week, my swimming career, and booms! https://t.co/V8gXcMuSIB" +07/25/2017,Sports_celeb,@MichaelPhelps,Are sharks man eaters? Are we on the menu? https://t.co/icGIjpaM3K +07/24/2017,Sports_celeb,@MichaelPhelps,And course while filming I had to take a little break for some fun😁 #ringbubbles https://t.co/1ElUcQzhDF +07/24/2017,Sports_celeb,@MichaelPhelps,I would like to thank @tristanguttridge and @sharksneedlove in advance for their support https://t.co/fGy6sd4p6u +07/24/2017,Sports_celeb,@MichaelPhelps,@boomerrphelps helping us turn off the faucet when brushing #Colgate #EveryDropCounts https://t.co/kv7h3k4fk3 +07/24/2017,Sports_celeb,@MichaelPhelps,Rematch? Next time..warmer water. #SW30 @Discovery @SharkWeek +07/23/2017,Sports_celeb,@MichaelPhelps,RT @ABC4EXPLORE: Wooohooo!!! @SharkWeek 2017 with @MichaelPhelps is finally here and it's going to be epic!!! Tune-in tonight at 8pm to wat… +07/23/2017,Sports_celeb,@MichaelPhelps,RT @Discovery: Yes! This is happening. ReTweet if you're watching #PhelpsVsShark tonight at 8p! #SharkWeek https://t.co/tJP8AGWCKI +07/23/2017,Sports_celeb,@MichaelPhelps,Big congrats to @JordanSpieth !! Well done dude!! @UnderArmour +07/23/2017,Sports_celeb,@MichaelPhelps,It's important to get the next generation into the habit of turning off the faucet while brushing.@Colgate… https://t.co/HJyPlSgeZt +07/22/2017,Sports_celeb,@MichaelPhelps,Beach day with booms!!! https://t.co/smviz77Foi +07/21/2017,Sports_celeb,@MichaelPhelps,Pumped to be a part of #mywinningmove with @SAP on Monday! Make sure you tune in at 4pm PST https://t.co/tzdKptoIU6 https://t.co/iX0zsSL7ho +07/14/2017,Sports_celeb,@MichaelPhelps,Can't wait till we get to bring @boomerrphelps here in a couple years!! #kidschoicesports https://t.co/oeSz1Szjtv +07/13/2017,Sports_celeb,@MichaelPhelps,What a great way to celebrate all that has happen in the year of sports! Thanks to @ESPN and the espys for bringing us all together!!! +07/12/2017,Sports_celeb,@MichaelPhelps,Two days ago we celebrated our 10 year anniversary of meeting at the #espys #happybday https://t.co/YotGoB2ylw +07/12/2017,Sports_celeb,@MichaelPhelps,I’m proud to be a part of the @SpecialOlympics movement #EKS #ESPYS2017 #ChangeTheGame +07/12/2017,Sports_celeb,@MichaelPhelps,Eunice Kennedy Shriver was a true champion & pioneer of inclusion. There’s no 1 more deserving of this #ESPYS award. +07/11/2017,Sports_celeb,@MichaelPhelps,I wanna do it again!! https://t.co/Zy2ku8YvWp +07/10/2017,Sports_celeb,@MichaelPhelps,Last nights dinner @blueapron Pork chops spinach farro and goat cheese! #ad @VIKTREsocial https://t.co/cOORTXLmxv +07/08/2017,Sports_celeb,@MichaelPhelps,"RT @ABC: Massive whale shark takes fisherman's breath away after it swims leisurely next to boat off Ocean City, Maryland. https://t.co/O0p…" +07/08/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""All that we are is the result of what we have thought. The mind is everything. What we think we become."" - Buddha" +07/06/2017,Sports_celeb,@MichaelPhelps,#tbt in honor of July 4th! #family https://t.co/G9voYQCeal +07/02/2017,Sports_celeb,@MichaelPhelps,Family fun day on the boat!!! #familytime https://t.co/ehnaFPXHb4 +06/30/2017,Sports_celeb,@MichaelPhelps,So blessed to have these two amazing ppl with me to celebrate my 32 bday!!! #family https://t.co/vWrG8hTZjp +06/28/2017,Sports_celeb,@MichaelPhelps,Lunch is served!! @blueapron shrimp and pasta with some squash olives & parsley #ad https://t.co/szvZm7K7ac +06/27/2017,Sports_celeb,@MichaelPhelps,Dinner time! @mamaphelpsh20 sent us some amazing crabs for my early bday!! @jimmysseafood https://t.co/k0S8bvgZWb +06/26/2017,Sports_celeb,@MichaelPhelps,Family pool day! #familyisthebest https://t.co/oTKkq1vRR9 +06/26/2017,Sports_celeb,@MichaelPhelps,What a blast in the pool with #mpwinner Alex and his sister jasmine last month!! https://t.co/7nb4Ww2h2j +06/19/2017,Sports_celeb,@MichaelPhelps,Play time with booms in his new teepee ! Thanks @mamaphelpsh20 https://t.co/FTIBIeRSa4 +06/16/2017,Sports_celeb,@MichaelPhelps,Roasted beef and farro salad with sweet peppers summer squash and olives or... https://t.co/WyzF2mco6L +06/14/2017,Sports_celeb,@MichaelPhelps,One year ago I married my best friend. Love you!!! https://t.co/OugVo9sC72 +06/12/2017,Sports_celeb,@MichaelPhelps,Happy #nationaljerkyday from the road! Pumped to have my new Honey Habanero flavored chicken jerky from @kravejerky… https://t.co/RiTnzYBGMX +06/12/2017,Sports_celeb,@MichaelPhelps,Dream come true. Thanks y'all!!! https://t.co/N47eMJArv6 +06/11/2017,Sports_celeb,@MichaelPhelps,I was able to do something that I had always wanted to do! https://t.co/2CJplWMkMP +06/08/2017,Sports_celeb,@MichaelPhelps,Happy bday to my other other sister @arschmitty https://t.co/HwgH9nwIAY +06/08/2017,Sports_celeb,@MichaelPhelps,.@Colgate & I remind you turn off the faucet when you brush to save water. #ad #EveryDropCounts https://t.co/0JbU968VMX +06/05/2017,Sports_celeb,@MichaelPhelps,Summers here!!! #sunsoutgunsout https://t.co/LcvpMbrTNa +06/05/2017,Sports_celeb,@MichaelPhelps,Hmm... Can't wait to taste it!!! https://t.co/9rwoouqsYA +06/05/2017,Sports_celeb,@MichaelPhelps,Family workout day!! @mrs.nicolephelps @arschmitty @grant__hackett https://t.co/kJg82lHmhU +06/03/2017,Sports_celeb,@MichaelPhelps,RT @Huggies: .@MichaelPhelps is partnering with Huggies Little Swimmers to help babies everywhere become the best swimmers they can be. #Tr… +06/02/2017,Sports_celeb,@MichaelPhelps,@boomerphelps with his Steph Currys on!!@underarmour” #nbafinals https://t.co/xQzV6ZMtf2 +05/30/2017,Sports_celeb,@MichaelPhelps,Thank you to those who have lost their lives fighting #homeofthebrave #memorialday https://t.co/03K3p4Jclc +05/29/2017,Sports_celeb,@MichaelPhelps,Gotta love being with my best friend! https://t.co/VvdvQhSQ73 +05/25/2017,Sports_celeb,@MichaelPhelps,Father son time! https://t.co/l9lLklRnYt +05/23/2017,Sports_celeb,@MichaelPhelps,Why put a limit to anyhting? https://t.co/mDlbJZn7LT +05/22/2017,Sports_celeb,@MichaelPhelps,Its great to have friends @lukebryan ... amazing show! Thanks buddy! #mpswim @mpfoundation https://t.co/6CM4OMjY7X +05/21/2017,Sports_celeb,@MichaelPhelps,Take the pledge!! https://t.co/2YGw9V3mDl +05/21/2017,Sports_celeb,@MichaelPhelps,"A little rusty... nah, still got it! https://t.co/fIta3n3DHJ" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @bygbyrd8: My niece Georgia is in Houston fighting cancer and got a really cool visit. Thanks @MichaelPhelps https://t.co/gmS4o5THPh +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @poolsafely: While @MichaelPhelps teaches a swim lesson, @JoshsFoundation & @mrsnicolephelps teach more kids about water safety w/ Josh…" +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @joshsfoundation: Lifesaving mamas! Debbie Phelps, Nicole Phelps and Josh's Mom Kathy reading JTO!@joshsfoundation @MPFoundation @Michae…" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @SanchezBGCA: 16 year supporter of @BGCA_Clubs and G.O.A.T. @MichaelPhelps out supporting Clubs with swimming. Thanks for all you do to… +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @poolsafely: ""I’ve taken the Pledge, Olympian @katieledecky took it & I'd like to invite @MichaelPhelps to take it."" - @USCPSC Commissio…" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @CPRParty: #watersafetywarriors @mrsnicolephelps @MichaelPhelps @MamaPhelpsH20 U R leading this movement & saving lives w/every tweet &… +05/20/2017,Sports_celeb,@MichaelPhelps,RT @SpecialOChi: Thanks to @MichaelPhelps and @MPFoundation for visiting with us and sharing tips on water safety! #watersafetymonth https:… +05/16/2017,Sports_celeb,@MichaelPhelps,Pumped to be a member of Baywatch!! @therock put me through a bunch of tests and I passed!!! @baywatchmovie… https://t.co/2NXJSQaZ6o +05/16/2017,Sports_celeb,@MichaelPhelps,You are what you eat!! https://t.co/QYtHIUaEKM +05/16/2017,Sports_celeb,@MichaelPhelps,Home on the range! https://t.co/zTFxfyQVAZ +05/16/2017,Sports_celeb,@MichaelPhelps,She's got game!! https://t.co/U3tpPC3hcO +05/15/2017,Sports_celeb,@MichaelPhelps,Good luck tonight @Simone_Biles !!! Get your votes in!! https://t.co/3d6MDKj3I2 +05/10/2017,Sports_celeb,@MichaelPhelps,Watch out!!!! @mrs.nicolephelps is getting fitted now.... @pxg_xperience https://t.co/viRqZaWm8c +05/10/2017,Sports_celeb,@MichaelPhelps,First bday party for @boomerrphelps !!! What an amazing birthday cake!!!@heartsweetcakes” https://t.co/cHDXqyubLL +05/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Anyone who has never made a mistake has never tried anything new."" - Albert Einstein" +05/09/2017,Sports_celeb,@MichaelPhelps,#MyYoungerSelf Campaign Update! https://t.co/ivDVPpt3lX +05/07/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""You can't build a reputation on what you are going to do."" - Henry Ford" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""You can't build a reputation on what you are going to do."" - Henry Ford" +05/05/2017,Sports_celeb,@MichaelPhelps,RT @samhsagov: .@MichaelPhelps: “I'm so glad we both found the courage to ask for help.” #HeroesOfHope https://t.co/C7BE7QBP5s +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @samhsagov: ""I truly encourage everybody to ask for help or reach out to someone you trust just to talk."" -@MichaelPhelps #HeroesOfHope" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @StampStigma: ""I truly encourage everybody to ask for help or to reach out to someone you trust just to talk."" - @MichaelPhelps #HeroesO…" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @WashWizards: Awesome to have @MichaelPhelps and @arschmitty in the building for a #WizCeltics win! 🇺🇸 + +#DCFamily https://t.co/PhXf40ou6D" +05/04/2017,Sports_celeb,@MichaelPhelps,TONIGHT @ 7 p.m. EDT is @samhsagov’s “Awareness Day Live!” webcast. Join the convo using the hashtag #HeroesofHope. https://t.co/W3kjbeBzRy +05/01/2017,Sports_celeb,@MichaelPhelps,RT @UnderArmour: @agar_john @MichaelPhelps @JustinVerlander We’re all rooting for you johnny! Go #TeamAgar! +04/29/2017,Sports_celeb,@MichaelPhelps,Following your dreams starts with an amazing night’s sleep. @Leesasleep #leesa #sleepbetterfeelbetter #ad https://t.co/JlaT34KPO0 +04/28/2017,Sports_celeb,@MichaelPhelps,Welcome to Baltimore @marlon_humphrey !! +04/27/2017,Sports_celeb,@MichaelPhelps,Can't wait to see who the @Ravens pick tonight!!!! Who goes #1 ?? #letsgoravens +04/27/2017,Sports_celeb,@MichaelPhelps,Amazing!!! Enjoy!!! https://t.co/POZWP783ad +04/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""What is not started today is never finished tomorrow."" - Johann Wolfgang von Goethe" +04/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""If we are together nothing is impossible. If we are divided all will fail."" - Winston Churchill" +04/22/2017,Sports_celeb,@MichaelPhelps,AD Water is our most precious resource. This #EarthDay & every day pls turn off the faucet when brushing ur teeth… https://t.co/KD2KtMdLN9 +04/18/2017,Sports_celeb,@MichaelPhelps,Proud to partner w/ @Colgate to remind everyone to turn off the faucet when brushing your teeth; saves up to 4gallo… https://t.co/sjb7BiMQfI +04/09/2017,Sports_celeb,@MichaelPhelps,Pretty sweet way to finish @TheMasters .... congrats @TheSergioGarcia ... well deserved buddy!!! +04/09/2017,Sports_celeb,@MichaelPhelps,Masters Sunday!!! Who wins down the back stretch?? #masters +04/08/2017,Sports_celeb,@MichaelPhelps,RT @MamaPhelpsH20: An inspirational woman on the west coast who is a ray of sunshine. @AcbjEvents #confidencecodegirls https://t.co/07F17aK… +04/08/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Be not afraid of greatness: some are born great, some achieve greatness, and some have greatness thrust upon them."" -…" +04/05/2017,Sports_celeb,@MichaelPhelps,RT @agar_john: I had an awesome chat with @MichaelPhelps just a little while ago! He gave me a pep talk for my upcoming Florida 1/2 @IRONMA… +04/05/2017,Sports_celeb,@MichaelPhelps,"Anything is possible, the bigger you dream the further you get. Good luck this weekend Johnny I'm pulling for you!!! #konahereyoucome" +04/05/2017,Sports_celeb,@MichaelPhelps,Thank you Johnny for being such an inspiration to us all. Love your version of #RuleYourself. +04/01/2017,Sports_celeb,@MichaelPhelps,#aprilfools I'm not actually coming back😁 sorry for getting some of yalls hopes up🙊 https://t.co/GOp7osXCBF +04/01/2017,Sports_celeb,@MichaelPhelps,Some dreams/goals you just can't get rid of...been doing a lot of thinking n I've decided that I'm going 2 make another comeback! #tokyo2020 +04/01/2017,Sports_celeb,@MichaelPhelps,RT @SimplyAJ10: I've missed you so much. See ya soon sweetheart https://t.co/iBOMARK53B +03/29/2017,Sports_celeb,@MichaelPhelps,Epic night last night!!!! @ericchurch What an amazing show.... just awesome!! https://t.co/tf1pwF2Y5M +03/24/2017,Sports_celeb,@MichaelPhelps,Lunch is served!!! @blueapron #ad https://t.co/Avct5u4qQa +03/24/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! #goblue @boomerrphelps https://t.co/TroQPvAyqW +03/24/2017,Sports_celeb,@MichaelPhelps,"RT @MPMichaelPhelps: Have you joined the #team yet? #jointheteam #MPswim +Find out more: https://t.co/R1J82LBj2h https://t.co/emV1YtBT88" +03/21/2017,Sports_celeb,@MichaelPhelps,Amazing couple days buddy!!! Love hanging ... see ya next door #didwejustbecomebestfriends https://t.co/qGANMEjMAV +03/21/2017,Sports_celeb,@MichaelPhelps,Interesting names on our Starbucks cups today 😁🙊made us all laugh #hiltonvillage https://t.co/QaW4CFJ7Io +03/20/2017,Sports_celeb,@MichaelPhelps,So good to catch up!!!! https://t.co/baRy2LgZAc +03/18/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Destiny is not a matter of chance; but a matter of choice."" - William Jennings" +03/18/2017,Sports_celeb,@MichaelPhelps,RT @DanHicksNBC: Most important piece to the wardrobe today @apinv #theking https://t.co/pMmdmb2MOB https://t.co/oSwlZNV9g1 +03/18/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Efforts and courage are not enough without purpose and direction."" - John F. Kennedy" +03/17/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! #GoBlue +03/16/2017,Sports_celeb,@MichaelPhelps,This little man is just the best! https://t.co/kBBE8r2CCI +03/15/2017,Sports_celeb,@MichaelPhelps,RT @RickieFowler: Legends never die!! Honored to be here this week at the @apinv to celebrate a life well played!! To The King👍 https://t.c… +03/15/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""I've failed over and over and over again in my life and that is why I succeed."" - Michael Jordan" +03/15/2017,Sports_celeb,@MichaelPhelps,RT @KraveJerky: Which #KRAVEjerky Fit Your Flavor Fit Kit is for you? Enter to win a @MichaelPhelps @CarliLloyd or @runMeb kit: https://t.c… +03/13/2017,Sports_celeb,@MichaelPhelps,Booms and I got to watch our first spring training game together #buildingmemoriestogether https://t.co/kz6Bk2kFf2 +03/13/2017,Sports_celeb,@MichaelPhelps,Love these days!!! #sundayfunday https://t.co/HQFQcomt5k +03/12/2017,Sports_celeb,@MichaelPhelps,Big win for #bigblue today!! #goblue https://t.co/WKz7vaPTVW +03/12/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""The best way to cheer yourself up is to try to cheer somebody else up."" - Mark Twain" +03/12/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It's kind of fun to do the impossible."" - Walt Disney" +03/11/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Never, never, never give up."" - Winston Churchill" +03/10/2017,Sports_celeb,@MichaelPhelps,Visit https://t.co/rDuswbfyh0 or call 855-802-9842 for more info sponsorships or to register https://t.co/4LIMi5AE17 +03/10/2017,Sports_celeb,@MichaelPhelps,Thank you for clarifying @NBCSports .... you can tell how passionate I am about this topic !!! https://t.co/59vNYkyRPk +03/10/2017,Sports_celeb,@MichaelPhelps,Welcome to Baltimore!! https://t.co/ENtRSAWpc8 +03/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""At first dreams seem impossible, then improbable, then inevitable."" - Christopher Reeve" +03/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""No great man ever complains of want of opportunity."" - Ralph Waldo Emerson" +03/10/2017,Sports_celeb,@MichaelPhelps,Awesome! https://t.co/hI0wgTpZv9 +03/09/2017,Sports_celeb,@MichaelPhelps,Legend!! We lost #biggie 20 years ago.... #skyisthelimit #rip https://t.co/zLzsIgWKQi +03/06/2017,Sports_celeb,@MichaelPhelps,Boomer and me on the range today #amazing https://t.co/UzfaXm0ZXR +03/03/2017,Sports_celeb,@MichaelPhelps,Welcome!! https://t.co/a6rTLH4nzN +03/02/2017,Sports_celeb,@MichaelPhelps,Pre flight shenanigans with @boomerrphelps !!! #lovethisdude https://t.co/gvw33mQCjJ +03/02/2017,Sports_celeb,@MichaelPhelps,You can see I'm passionate about this subject!! #cleansport https://t.co/PH1tHGGGXg +02/28/2017,Sports_celeb,@MichaelPhelps,looks like someone needs a little 💤💤💤💤 https://t.co/5Yjs8BUgqc +02/27/2017,Sports_celeb,@MichaelPhelps,#msjuno and I were sleepy heads this am.... @mrsnicolephelps snuck a pic of us🙈 https://t.co/g3dgMtVoCD +02/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Change your thoughts and you change your world."" - Norman Vincent Peale" +02/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Yes, I sometimes fail, but at least I'm willing to experiment."" - Bono" +02/27/2017,Sports_celeb,@MichaelPhelps,Nice win today kid! @RickieFowler +02/26/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.""…" +02/25/2017,Sports_celeb,@MichaelPhelps,Checking in! https://t.co/GBQ4f3Obcd +02/24/2017,Sports_celeb,@MichaelPhelps,Listen up. Get the new #BeatsX from @BeatsByDre. #GotNoStrings https://t.co/qtdW6IqP6Z +02/24/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Success or failure is caused more by mental attitude than by mental capacity."" - Walter Scott" +02/24/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""The greatest achievement is to outperform yourself."" - Denis Waitley" +02/24/2017,Sports_celeb,@MichaelPhelps,RT @bgcmuncie: These young men graduated from #PassportToManhood last night! Please help us congratulate them! #GreatFutures https://t.co/D… +02/24/2017,Sports_celeb,@MichaelPhelps,We're having a race? When? Where? I'm in!! Haha https://t.co/LmGMQ0jJhg +02/23/2017,Sports_celeb,@MichaelPhelps,I'm not sure what else to say but just amazing..... #happiness https://t.co/0rL9Rj1kHi +02/22/2017,Sports_celeb,@MichaelPhelps,https://t.co/1YIKn8GtIT +02/22/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It's how you deal with failure that determines how you achieve success."" - David Feherty" +02/22/2017,Sports_celeb,@MichaelPhelps,Dinner is served!! @blueapron #ad https://t.co/I3xNFOClyt +06/30/2018,Sports_celeb,@gabrielledoug,@queenpam93 😂😘💛 +06/30/2018,Sports_celeb,@gabrielledoug,@_Ahreeahnah 😂🤗💛 +06/30/2018,Sports_celeb,@gabrielledoug,@earthXplorer 😂😂♥️♥️ +06/30/2018,Sports_celeb,@gabrielledoug,@JanieLanham8 ♥️♥️♥️♥️ +06/30/2018,Sports_celeb,@gabrielledoug,@Mommaforreal @RoxxyRocketfire 😂😘💛 +06/30/2018,Sports_celeb,@gabrielledoug,@RoxxyRocketfire 😂😂😂😘 +06/25/2018,Sports_celeb,@gabrielledoug,@MakeAWish @SkyspaceLA @makeawishla @MakeAWishNM Such a cutie +06/11/2018,Sports_celeb,@gabrielledoug,"RT @TellTruthABC: All @gabrielledoug does is win! +#ToTellTheTruth https://t.co/036yu7440Y" +06/11/2018,Sports_celeb,@gabrielledoug,RT @UrsTruly_Kierra: Watching @gabrielledoug on #ToTellTheTruth +06/11/2018,Sports_celeb,@gabrielledoug,TUNE IN TUNE IN!!! 💛💛 https://t.co/hp4Scc0HHA +06/11/2018,Sports_celeb,@gabrielledoug,🙈🙈😂😂😂 https://t.co/psjOtDTTT3 +06/10/2018,Sports_celeb,@gabrielledoug,"RT @Barbie: Gabby Douglas shows girls everywhere that with hard work and lots of self-confidence, #YouCanBeAnything! 🥇 #MoreRoleModels #Mon…" +05/30/2018,Sports_celeb,@gabrielledoug,@Mister_GQ lolol haha! 💛💛 +05/24/2018,Sports_celeb,@gabrielledoug,"RT @ABC_Publicity: New Release: Host @AnthonyAnderson and the beloved game show @TellTruthABC both return on Sunday, June 10, at 10|9c with…" +05/24/2018,Sports_celeb,@gabrielledoug,"RT @FMNATV: .@TellTruthABC returns on Sunday, June 10 at 10/9c on @ABCNetwork with celeb panelists @octaviaspencer, @gabrielledoug, @nikkig…" +05/14/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: An undercover @gabrielledoug gets emotional after a meaningful chat with super dad Ken at his workplace. https://t.co/I… +05/13/2018,Sports_celeb,@gabrielledoug,@SullivanNicole @undercover_cbs 😂😂😂😭😘 +05/13/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: Watch @gabrielledoug tumble into the lives of some very lucky young gymnasts on the premiere of #CelebrityBoss. Stream… +05/12/2018,Sports_celeb,@gabrielledoug,@PapaRandlicious @undercover_cbs thanks soo much! +05/12/2018,Sports_celeb,@gabrielledoug,@ReseeStevens @undercover_cbs 😭 thank you for this mesage. so sweet. +05/12/2018,Sports_celeb,@gabrielledoug,"How did you guys like my episode of #CelebrityUndercoverboss ? @undercover_cbs RT of Fav if you did! 💚 + +x" +05/12/2018,Sports_celeb,@gabrielledoug,♥️♥️♥️ this moment 😭 https://t.co/vYq2u2AWFA +05/12/2018,Sports_celeb,@gabrielledoug,😫😭😭 https://t.co/M3QMe8y12x +05/12/2018,Sports_celeb,@gabrielledoug,haha! ayeee https://t.co/ZqFcGsgWFb +05/12/2018,Sports_celeb,@gabrielledoug,@Racci13 @undercover_cbs haha! thanks!! +05/12/2018,Sports_celeb,@gabrielledoug,@Chris_Bigga 😂😂 +05/12/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: Would you be able to recognize @gabrielledoug beneath this #CelebrityBoss disguise? Tune in NOW to watch the season pre… +05/12/2018,Sports_celeb,@gabrielledoug,LOLOL https://t.co/3DSJsmwTcH +05/11/2018,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Tulum ,Mexico ❤️😍 https://t.co/aPjOor4qp5" +05/10/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: There's no doubt that @gabrielledoug can recognize strength when she sees it. Watch her go undercover on #CelebrityBoss… +05/08/2018,Sports_celeb,@gabrielledoug,"RT @etnow: .@gabrielledoug, @idinamenzel and more will star in the first-ever 'Undercover Boss: Celebrity Edition'! https://t.co/v1QCI5CkTV…" +05/01/2018,Sports_celeb,@gabrielledoug,@FunmiSomoye lolz +04/26/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: The first season of #CelebrityBoss will feature Olympic champion @gabrielledoug when it premieres on May 11 at 8/7c. Fi… +04/25/2018,Sports_celeb,@gabrielledoug,"feeling like a superhero 😎♥️ join the boing team #shox +x https://t.co/4iMNzRCLRp" +04/20/2018,Sports_celeb,@gabrielledoug,@peta 😍😍😍😍😍😍 can they come to la lol +03/30/2018,Sports_celeb,@gabrielledoug,@Makenziegandee cutie +03/30/2018,Sports_celeb,@gabrielledoug,"If you don’t like something, change it! In honor of Women’s History Month, let’s continue to inspire one another to… https://t.co/O26gPY1yyC" +03/30/2018,Sports_celeb,@gabrielledoug,😍😍😍♥️♥️ https://t.co/RELBVlYCZO +03/30/2018,Sports_celeb,@gabrielledoug,this is sooo cute 😍 all the best to you! so honored! x https://t.co/KqYtj096ia +03/19/2018,Sports_celeb,@gabrielledoug,On behalf of all the young girls around the world with big dreams I’m thrilled to support this statement from… https://t.co/UEmoxzor3p +03/09/2018,Sports_celeb,@gabrielledoug,@Lonnie175 😩🧡🧡 +03/07/2018,Sports_celeb,@gabrielledoug,@nikkimickey04 haha🧡 ily2 +03/06/2018,Sports_celeb,@gabrielledoug,@slotmoorerchine clever +03/06/2018,Sports_celeb,@gabrielledoug,@ohthatsjusdanny @KevinHart4real i legit cannot. 😂😂 +02/25/2018,Sports_celeb,@gabrielledoug,😂😂🙈🧡 https://t.co/o2NhkNAabS +02/25/2018,Sports_celeb,@gabrielledoug,RT @LOLNetwork: #RunItBack! @gabrielledoug and @KevinHart4Real hit the ice to roast each other 😂 Find out who wins in the full episode of #… +02/25/2018,Sports_celeb,@gabrielledoug,@ieathersoul i cannot 😂😂😂😂🙈 +02/02/2018,Sports_celeb,@gabrielledoug,RT @amfam: Kicking off #BlackHistoryMonthِ inspiring youth with @EuniqueJG @gabrielledoug @ajani_carr @lilicecreamdude @jdmccrary #dreamfea… +01/17/2018,Sports_celeb,@gabrielledoug,"RT! i❤️ to see other brave athletes chase their dreams-especially from my home state of VA! Polar Plunge, the bigge… https://t.co/VvgQxGgfkE" +01/17/2018,Sports_celeb,@gabrielledoug,@the_USO thank you so much for having me! x it was amazing +01/17/2018,Sports_celeb,@gabrielledoug,RT @the_USO: #BeTheForce with Olympic gold medalist @gabrielledoug who spent last week visiting service members and their families in Guam… +01/17/2018,Sports_celeb,@gabrielledoug,"RT @caafoundation: .@gabrielledoug started out the new year by visiting our troops, touring their bases & holding a gymnastics clinic for m…" +01/14/2018,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Amsterdam, Netherlands 🇳🇱 https://t.co/14lGi97Tev" +01/11/2018,Sports_celeb,@gabrielledoug,it was a natasha kinda day #tb @RPGshow @ShearPhysique ☀️✨💛 https://t.co/NujG5Dc2NU +01/11/2018,Sports_celeb,@gabrielledoug,"RT @the_USO: Welcome to Guam, @gabrielledoug! The Olympic gold medalist visited Andersen Air Force Base, where she toured the Andersen Secu…" +12/26/2017,Sports_celeb,@gabrielledoug,looking for a new look this season? check out my @RPGshow custom line #audrey #natasha #sasha 💁🏽 https://t.co/Dyo1MlExpM +12/26/2017,Sports_celeb,@gabrielledoug,@AuthorJoeMac ❤️❤️❤️ +11/30/2017,Sports_celeb,@gabrielledoug,@chizarachinelo 😍❤️ i love uuuu xx +11/22/2017,Sports_celeb,@gabrielledoug,"love you so much. so glad you know i would never attack you and that i support you too- because united we stand, di… https://t.co/dpEVWRRoW2" +11/18/2017,Sports_celeb,@gabrielledoug,i didn’t correctly word my reply & i am deeply sorry for coming off like i don’t stand alongside my teammates. reg… https://t.co/YW2PFdcO43 +11/17/2017,Sports_celeb,@gabrielledoug,@dwtsfishovskiy it goes both ways. +11/17/2017,Sports_celeb,@gabrielledoug,@dwtsfishovskiy u misunderstood me. not blaming the victim at all. no man should look at any woman that way. +11/17/2017,Sports_celeb,@gabrielledoug,@haterethaa ? girl what r u talking about ? +11/17/2017,Sports_celeb,@gabrielledoug,@DrArtmanSRU @slipperyrockU @SRUPB haha!!! thanks for having me ! xx +11/16/2017,Sports_celeb,@gabrielledoug,ayeee https://t.co/51mWkFNm6D +11/15/2017,Sports_celeb,@gabrielledoug,change nothing and nothing changes +11/15/2017,Sports_celeb,@gabrielledoug,"RT @GoodDoctorABC: Everything. +#TheGoodDoctor https://t.co/KNmAMN8Fn5" +11/12/2017,Sports_celeb,@gabrielledoug,RT @Essence: Shout out to @TiffanyHaddish for making history as the first black female commedienne to host #SNL! Keep shining boo. 😘 https:… +11/12/2017,Sports_celeb,@gabrielledoug,RT @GoodDoctorABC: Meet Dr. Murphy back in the OR tomorrow night for an all-new #TheGoodDoctor! https://t.co/vqULyCedwX +11/12/2017,Sports_celeb,@gabrielledoug,"kindness is free +sprinkle that stuff everywhere 💖" +11/10/2017,Sports_celeb,@gabrielledoug,change your life by changing your heart +11/10/2017,Sports_celeb,@gabrielledoug,"RT @beautybakerie: This is me with my daughter, Jasmyn. Different levels of melanin. Felt bad when I️ could find my shade at stores but not…" +11/08/2017,Sports_celeb,@gabrielledoug,RT @HomesteadMiami: THIS JUST IN: Multiple-gold winning Olympic gymnast and author @gabrielledoug will serve as the Honorary Starter at the… +11/08/2017,Sports_celeb,@gabrielledoug,"change is hard at first, messy in the middle, but gorgeous at the end." +11/03/2017,Sports_celeb,@gabrielledoug,"forget the mistake +remember the lesson" +11/02/2017,Sports_celeb,@gabrielledoug,@jordyn_wieber righttt +11/01/2017,Sports_celeb,@gabrielledoug,"good days give happiness +bad days give experience +worst days give lessons and +best days give memories ❤️" +10/31/2017,Sports_celeb,@gabrielledoug,ily. we should hang next time i'm in nyc xx https://t.co/TKNp5MGHK0 +10/31/2017,Sports_celeb,@gabrielledoug,RT @GoodDoctorABC: An all-new episode of this season’s #1 drama #TheGoodDoctor starts now. Please retweet if you’re watching. https://t.co/… +10/27/2017,Sports_celeb,@gabrielledoug,"RT @MVCC_UticaRome: Olympic gold medalist @gabrielledoug will be at our Utica Campus on Saturday, Nov. 4! Get your tickets at https://t.co/…" +10/26/2017,Sports_celeb,@gabrielledoug,@socialmagazine haha!!! no problem!!! i love it ! +10/26/2017,Sports_celeb,@gabrielledoug,@giftedkordei u so silly 😂😂 +10/25/2017,Sports_celeb,@gabrielledoug,i love this. generations inspire the next! xx https://t.co/tyxSfFcLJO +10/19/2017,Sports_celeb,@gabrielledoug,RT @NastiaLiukin: #WSFAnnualSalute @gabrielledoug @lzhernandez02 ✨❤️ https://t.co/UWqKLpmNIN +10/19/2017,Sports_celeb,@gabrielledoug,@ZayaTheProphet i can't +10/18/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: Just a beauty inside and out! Love our Gabby💕 https://t.co/syNZKUZHsG +10/18/2017,Sports_celeb,@gabrielledoug,@TheLemWiley @_kendallen haha +10/18/2017,Sports_celeb,@gabrielledoug,@_kendallen 😂😂😂😂😂😂😂 +10/18/2017,Sports_celeb,@gabrielledoug,"anyone up for a follow spree ? +rt" +10/18/2017,Sports_celeb,@gabrielledoug,RT @TheWorldStories: Fall in the alpine ❤️ https://t.co/bbxeyp4JqJ +10/18/2017,Sports_celeb,@gabrielledoug,@lydmarie95 rightttt. i love itttt tooo +10/18/2017,Sports_celeb,@gabrielledoug,@WilliamAdoasi @VitaeLondon would love one xx +10/17/2017,Sports_celeb,@gabrielledoug,RT @CW_TheFlash: #TheFlash is back and better than ever. Don't miss a new episode TONIGHT at 8/7c on The CW. https://t.co/baG9cZmWlQ +10/17/2017,Sports_celeb,@gabrielledoug,@AkilahObviously @geniuskitchen luhh uuuuu xx +10/17/2017,Sports_celeb,@gabrielledoug,RT @AkilahObviously: Did an Olympic medalist teach you how to stick the landing? Cause @gabrielledoug JUST TAUGHT ME!! 😍 @geniuskitchen htt… +10/16/2017,Sports_celeb,@gabrielledoug,@highlighthunnie @McJesse 🤓🤓🤓 +10/16/2017,Sports_celeb,@gabrielledoug,@McJesse LOLOLOLOLOL +10/16/2017,Sports_celeb,@gabrielledoug,@McJesse @highlighthunnie NOOO... I'm donneeee +10/16/2017,Sports_celeb,@gabrielledoug,@DualSpires i'm doneeee +10/16/2017,Sports_celeb,@gabrielledoug,RT @chadwickboseman: The revolution will be live. #BlackPanther https://t.co/gakhMRYHLT +10/13/2017,Sports_celeb,@gabrielledoug,RT @StephenAmell: It's been a long hiatus. Arrow is back. RIGHT NOW! +10/13/2017,Sports_celeb,@gabrielledoug,RT @EraseSoul: Gabrielle Union and Dwyane Wade are goals 😍 https://t.co/yqAf0XeBEZ +10/13/2017,Sports_celeb,@gabrielledoug,@musicfeign @beautybakerie YEP!! YEP !! YEP!! +10/11/2017,Sports_celeb,@gabrielledoug,RT @FLASHtvwriters: We're back!! #TheFlash +10/10/2017,Sports_celeb,@gabrielledoug,@TyBridg3 @CW_TheFlash rrllyyy 😂 +10/10/2017,Sports_celeb,@gabrielledoug,@TyBridg3 @CW_TheFlash i'm soooo done. +10/10/2017,Sports_celeb,@gabrielledoug,"RT FOR A FOLLOW 💛 + +also, who else is excited for @CW_TheFlash tonight ? + +x" +10/09/2017,Sports_celeb,@gabrielledoug,RT @MissTeenUSA: #MissTeenUSA and Olympic athlete @gabrielledoug guest speak at the largest global gathering of girls and influencers #GIRL… +10/09/2017,Sports_celeb,@gabrielledoug,RT @CW_TheFlash: The West family returns Tuesday at 8/7c on The CW! #TheFlash https://t.co/DymHzuv2ey +10/08/2017,Sports_celeb,@gabrielledoug,nope. THANK U SOO MUCH FOR HAVING ME. X https://t.co/KodlZLHoP1 +10/08/2017,Sports_celeb,@gabrielledoug,"RT @girlscouts: ""You can't please everyone. You have to be true to yourself."" 👑@gabrielledoug https://t.co/cmdE9b9Fkb" +10/02/2017,Sports_celeb,@gabrielledoug,"my prayers & sympathies are with all the victims and loved ones of this disgusting, hateful act. #stopthehate #VegasShooting" +09/28/2017,Sports_celeb,@gabrielledoug,RT @jacobsartorius: blowing out someone else's candle doesn't make yours shine any brighter. +09/28/2017,Sports_celeb,@gabrielledoug,"RT @RoyalCaribbean: Today Adventure of the Seas will dock in Puerto Rico, the first stop in a series of three to drop off relief supplies &…" +09/28/2017,Sports_celeb,@gabrielledoug,RT @ChloeGMoretz: Riverdale is back October 11th.. that’s all +09/24/2017,Sports_celeb,@gabrielledoug,@Havekiddoswill thankkk uu x +09/24/2017,Sports_celeb,@gabrielledoug,"RT @NFL: TOM BRADY. BRANDIN COOKS. + +WOWWWWWWWW. https://t.co/mYeno62uY4" +09/24/2017,Sports_celeb,@gabrielledoug,RT @Patriots: Tom. Brady. https://t.co/fVhqS9bpGy +09/24/2017,Sports_celeb,@gabrielledoug,and in the end we only regret the chances we didn't take. +09/24/2017,Sports_celeb,@gabrielledoug,"RT @younghollywood: In this episode of #BeyondtheAthlete, we hang with @gabrielledoug, @RobGronkowski and more, off the field! https://t.co…" +09/20/2017,Sports_celeb,@gabrielledoug,#goodvibes with a splash of triple berry mousse ! @beautybakerie x https://t.co/Jjdk0EjQdw +09/19/2017,Sports_celeb,@gabrielledoug,"😫 +mexico city, i'm praying for you + +x" +09/19/2017,Sports_celeb,@gabrielledoug,@bkitmedical @musicallyapp 😂😂😂😂 pls +09/18/2017,Sports_celeb,@gabrielledoug,"RT @musicallyapp: Same @gabrielledoug, same. 😂 https://t.co/XBiBPdqKTh" +09/18/2017,Sports_celeb,@gabrielledoug,😂😂 https://t.co/5KTiSpQHA4 +09/17/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: Single life! Now u can get @gabrielledoug set as singles! Smudge-free and comfy to wear! Shown: Hazelnut Swirl 🌰https://… +09/17/2017,Sports_celeb,@gabrielledoug,RT @OurMilitaryKids: Don't let gravity stop you from flying. Happy #NationalGymnasticsDay https://t.co/UzmQpB3YtK +09/14/2017,Sports_celeb,@gabrielledoug,@Imactuallybebs @drefromjerz @Iildevil LOLOLOL +09/14/2017,Sports_celeb,@gabrielledoug,@drefromjerz @sama_luv3 DONE +09/14/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: On the Menu: Triple Berry Mousse by Gabby Douglas x Beauty Bakerie: https://t.co/A0q7sIGkAP via @YouTube +09/13/2017,Sports_celeb,@gabrielledoug,RT @ChloeLukasiak: There are so many tv shows I wish I had never watched just so I could watch them for the first time again +09/13/2017,Sports_celeb,@gabrielledoug,ayee. u a G ! https://t.co/aNcPCvfnqz +09/12/2017,Sports_celeb,@gabrielledoug,if this isn't my dog .. https://t.co/Y3z0lkau4s +09/10/2017,Sports_celeb,@gabrielledoug,"RT @ThiruHR: Almost 700,000 animals died in Hurricane Katrina. Don't leave your animals behind, take them to safety with you. #HurricanIrma…" +09/10/2017,Sports_celeb,@gabrielledoug,congrats congrats congratzzzz ❤️ https://t.co/du2gO1hHsY +09/08/2017,Sports_celeb,@gabrielledoug,RT @BarackObama: Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/08/2017,Sports_celeb,@gabrielledoug,"i'm continuing to pray for everyone in the affected areas of TX & now Caribbean Islands, FL, GA, SC & Mexico! pls be safe!😢#Harvey #Irma" +09/08/2017,Sports_celeb,@gabrielledoug,RT @TIME: Gabby Douglas is the first American gymnast to win solo and team all-around gold at one Olympics #SheIsTheFirst https://t.co/pbIn… +09/06/2017,Sports_celeb,@gabrielledoug,"RT @espn: Venus ✅ +Serena ✅ +Sloane ✔️ https://t.co/SAQEhR67Z4" +09/04/2017,Sports_celeb,@gabrielledoug,"guys, treat your girls like queens" +09/04/2017,Sports_celeb,@gabrielledoug,i love this https://t.co/Go7UNl1Idw +09/04/2017,Sports_celeb,@gabrielledoug,WHAT..... https://t.co/AvBw5Oxnmt +09/01/2017,Sports_celeb,@gabrielledoug,"RT @PennStateIFC: With the current devastation in Houston, we are pledging $0.15 for every RT this gets! Please forward this along to help…" +08/30/2017,Sports_celeb,@gabrielledoug,@Deacon_Schiele 😂. how about john cena? +08/30/2017,Sports_celeb,@gabrielledoug,@evie_lution 😂😂😂 +08/30/2017,Sports_celeb,@gabrielledoug,"how many tickles does it take to make an octopus laugh? + +ten-tickles + +szxwkp🙊.. LOL get it" +08/29/2017,Sports_celeb,@gabrielledoug,"well, you reap what you sow" +08/29/2017,Sports_celeb,@gabrielledoug,@ItsDumbTweets 😂😂😂😂😂 +08/28/2017,Sports_celeb,@gabrielledoug,@ThtWavyGuy so done😂 +08/28/2017,Sports_celeb,@gabrielledoug,*fighting the urge to be petty +08/28/2017,Sports_celeb,@gabrielledoug,@MyImmatureMind https://t.co/j8Ohci1oGx +08/28/2017,Sports_celeb,@gabrielledoug,RT @lilpochaco: every day i catch her stealing fruits from the counter. pls stop https://t.co/0dlXsIAJW8 +08/27/2017,Sports_celeb,@gabrielledoug,@DakotaHonor @nicksaysgo 😂😂😂😂😂😂😂 +08/27/2017,Sports_celeb,@gabrielledoug,*starts training for boxing https://t.co/epGLUHszzT +08/27/2017,Sports_celeb,@gabrielledoug,RT @EchoK: #Arrow just got picked up for season 6! Woohoo!!! ☺😂😍🎊🎉👍🏾🙏🏾🔥💯 +08/25/2017,Sports_celeb,@gabrielledoug,"oh babe, u are so much more than they say" +08/25/2017,Sports_celeb,@gabrielledoug,@lovebscott 😛😛😛😛 +08/25/2017,Sports_celeb,@gabrielledoug,"it's not wether an upright man shows his true honesty in public, it's what he does when no one is watching." +08/24/2017,Sports_celeb,@gabrielledoug,RT @Mattel: @chizarachinelo @gabrielledoug @Barbie This is a Barbie Collector exclusive. Contact them for info on UK shipping: https://t.co… +08/24/2017,Sports_celeb,@gabrielledoug,😂😂 THERE'S AMAZON !!! https://t.co/bJgs3n8RkN +08/23/2017,Sports_celeb,@gabrielledoug,"RT @_teewrex: When the activities that you were about to find an excuse not to attend, gets cancelled. https://t.co/qcXZA7kaZk" +08/23/2017,Sports_celeb,@gabrielledoug,i never lose; i either win or learn +08/22/2017,Sports_celeb,@gabrielledoug,Confidence=beauty. The Cortez by A.L.C. is 4 all the ladies & the many dimensions that make up who we are. #cortez… https://t.co/g5uUEewU6Q +08/22/2017,Sports_celeb,@gabrielledoug,"RT @Power1051: Looks like @gabrielledoug wants to be Marvels new Superhero 🔥 +https://t.co/0GcMzb6e5p https://t.co/wfbaQrnsjF" +08/20/2017,Sports_celeb,@gabrielledoug,"@McKaylaMaroney LMBO +love ya babe 💛" +08/19/2017,Sports_celeb,@gabrielledoug,💛💛 https://t.co/fEkkJUfKji +08/16/2017,Sports_celeb,@gabrielledoug,"RT @peoplestyle: .@KaiaGerber is now a denim model for @HudsonJeans, @GabrielleDoug Is the face of @Nike, and more celebrity ads https://t.…" +08/15/2017,Sports_celeb,@gabrielledoug,RT @Postit: We had a blast w/ @gabrielledoug yesterday as she made the day for hundreds & showed them how she makes her goals stick with #P… +08/14/2017,Sports_celeb,@gabrielledoug,RT @KingJames: Our youth deserves better!! Flat out +08/14/2017,Sports_celeb,@gabrielledoug,praying for all the victims of this hate-filled attack. in the face of all this evil - let's all embrace love even… https://t.co/k5plYaTnoj +08/13/2017,Sports_celeb,@gabrielledoug,all this hate is disgusting. +08/13/2017,Sports_celeb,@gabrielledoug,banging https://t.co/qwF8UOJz1o +08/13/2017,Sports_celeb,@gabrielledoug,"be nice +because it's cool." +08/11/2017,Sports_celeb,@gabrielledoug,they suree aree 😂 thank you. 💛 https://t.co/oi0UHXYDUA +08/08/2017,Sports_celeb,@gabrielledoug,RT @ItsFoodPics: I need pumpkin flavored EVERYTHING https://t.co/ma5mI22mOu +08/07/2017,Sports_celeb,@gabrielledoug,RT @ItsFoodPics: WANT...WANT...WANT https://t.co/MNoP8MTgLI +08/07/2017,Sports_celeb,@gabrielledoug,😂😂😂😂 https://t.co/mr17elAPqo +08/07/2017,Sports_celeb,@gabrielledoug,RT @humbxrtoo17: Me shooting my shot https://t.co/TZqjQJqg4R +08/07/2017,Sports_celeb,@gabrielledoug,👏👏👏 https://t.co/BuQLSvI7MQ +08/06/2017,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Dolomites, Italy https://t.co/D1QHzVo1kD" +08/06/2017,Sports_celeb,@gabrielledoug,RT @Postit: Huge thanks to champion gymnast @gabrielledoug for sharing how she sets and achieves her goals at yesterday’s event in Cali. #M… +08/04/2017,Sports_celeb,@gabrielledoug,bruh. i'm 5'3 in a half https://t.co/zjF7nFTMBR +08/04/2017,Sports_celeb,@gabrielledoug,but.. can u handle 3 gabby's ? https://t.co/AHKTKXvMfR +08/03/2017,Sports_celeb,@gabrielledoug,"omg. 5 years ago i became the first african american to win the aa title in gymnastics. wow. time flies + +#honored" +08/03/2017,Sports_celeb,@gabrielledoug,@SpannyTampson cryin. thank u x +08/02/2017,Sports_celeb,@gabrielledoug,ayeee https://t.co/hjcVJajmlY +08/02/2017,Sports_celeb,@gabrielledoug,👀👀👀 https://t.co/MfPW7L8cfc +08/02/2017,Sports_celeb,@gabrielledoug,RT @Postit: Dreaming isn’t enough to become a champion. It takes serious planning. See how @gabrielledoug achieves her dreams. https://t.c… +08/02/2017,Sports_celeb,@gabrielledoug,RT @TheWorldStories: Coast of Croatia https://t.co/Z2R562oucZ +08/02/2017,Sports_celeb,@gabrielledoug,RT @em_shapiro13: oh hi gabby https://t.co/CmpYLT8a7n +08/01/2017,Sports_celeb,@gabrielledoug,hmmm. i'm diggin it. https://t.co/OwGzVAZsvA +08/01/2017,Sports_celeb,@gabrielledoug,RT @dmo1025: Audrey found @gabrielledoug at @Staples while we were school supply shopping.... https://t.co/qTJAYCbmPs +07/28/2017,Sports_celeb,@gabrielledoug,lolol. i can't with myself https://t.co/H2ZEMWVdYF +07/28/2017,Sports_celeb,@gabrielledoug,😂😂😂😂😂😂😂 https://t.co/D328PaeEKX +07/26/2017,Sports_celeb,@gabrielledoug,i look so rough. 😂 loveee uuuu x https://t.co/5yBtxg6c58 +07/25/2017,Sports_celeb,@gabrielledoug,omg. 😫🙌 https://t.co/6XwyxMrDfF +07/02/2018,Sports_celeb,@Simone_Biles,weekend at the river well spent 💋🌤 https://t.co/t9d3vlnzwJ +07/02/2018,Sports_celeb,@Simone_Biles,RT @marcusdoesurmom: When there's no days off @staceyervinjr @Simone_Biles https://t.co/lci1C5Qi9m +07/02/2018,Sports_celeb,@Simone_Biles,oh you sure got me !!!!!!!! https://t.co/pabJsX6y1T +07/01/2018,Sports_celeb,@Simone_Biles,baecation at the river 🤪 https://t.co/XkVafwkMHb +07/01/2018,Sports_celeb,@Simone_Biles,"RT @KimLavine: ""You got to train your mind to be stronger than your emotions or else you'll lose every time."" +@Simone_Biles + +#startup #Mon…" +06/30/2018,Sports_celeb,@Simone_Biles,road trip means drakin’ and drivin https://t.co/xicsU6p5k4 +06/30/2018,Sports_celeb,@Simone_Biles,RT @AndreaRussett: i’m willing to throw hands at anyone who doesn’t think my dog is cute +06/30/2018,Sports_celeb,@Simone_Biles,when you have a good hair day but you have to put it up for gym .... +06/30/2018,Sports_celeb,@Simone_Biles,cardi B typa morning +06/30/2018,Sports_celeb,@Simone_Biles,"I cannot wait to come to London for this huge new event next year, appearing alongside Max Whitlock and lots more g… https://t.co/t2zL9ZCcD0" +06/28/2018,Sports_celeb,@Simone_Biles,RT @lorsace: this how i look back at people that won't stop staring at me https://t.co/z1tsp2eO6g +06/27/2018,Sports_celeb,@Simone_Biles,RT @Amierrrrrr_: We get called mean https://t.co/qcbKYzFbry +06/27/2018,Sports_celeb,@Simone_Biles,I did a full floor routine yesterday for the first time - that’s a good start +06/25/2018,Sports_celeb,@Simone_Biles,RT @Colt3FIVE: My spirit animal is a sloth +06/25/2018,Sports_celeb,@Simone_Biles,my baby💛 https://t.co/roPRJ2v7nO +06/24/2018,Sports_celeb,@Simone_Biles,RT @jennhoww: if ur a 2 dating an 11 retweet dissss +06/24/2018,Sports_celeb,@Simone_Biles,🗣 https://t.co/bKiTpdMf3T +06/23/2018,Sports_celeb,@Simone_Biles,I lost ALL of my photos from the Olympics #OlympicDay +06/23/2018,Sports_celeb,@Simone_Biles,"RT @Indians: Nailed it, @Simone_Biles. https://t.co/Z6i987mvI2" +06/23/2018,Sports_celeb,@Simone_Biles,RT @yuneicyaguirre: Thank you @Simone_Biles for stopping by and taking a picture w/ my level 1/2 class 💕 https://t.co/ut41WmM4Li +06/23/2018,Sports_celeb,@Simone_Biles,just another problem to add to my list of problems +06/22/2018,Sports_celeb,@Simone_Biles,"RT @papermagazine: After taking a year off from competition, Olympic gold medal-winning gymnast @Simone_Biles is back in the gym! https:/…" +06/21/2018,Sports_celeb,@Simone_Biles,RT @imabackhaus: hit the boyfriend jackpot for sure +06/21/2018,Sports_celeb,@Simone_Biles,💭 https://t.co/7qRObg9QUK +06/21/2018,Sports_celeb,@Simone_Biles,actually no hahaha the twisties are the ABSOLUTE worse. I walked out of a practice for the first time in my career.… https://t.co/3uPs6heBj2 +06/21/2018,Sports_celeb,@Simone_Biles,RT @rachm528: missing my bff right about now 💋 https://t.co/cNqdZ8QzN7 +06/20/2018,Sports_celeb,@Simone_Biles,the last two weeks I’ve had a mental block on full twists and I wouldn’t go for any tumbling or skills bc I picture… https://t.co/Yx02fb6op8 +06/20/2018,Sports_celeb,@Simone_Biles,RT @DohaGym2018: 4 x Olympic and 10 x World Champion @Simone_Biles is making her come-back this year. Will she make the US team in Doha thi… +06/19/2018,Sports_celeb,@Simone_Biles,RT @Olympics: The only one that can do this. @Simone_Biles @gymnastics @TeamUSA https://t.co/VEp8U6d86h +06/17/2018,Sports_celeb,@Simone_Biles,"RT @GymCastic: If UH adds gymnastics, Simone Biles would consider coaching https://t.co/r2CYfQKPOA + +Do you need more incentive? https://t.c…" +06/17/2018,Sports_celeb,@Simone_Biles,RT @pxyonce: This is so asthectically pleasing. Like wow https://t.co/6RNaYw8RJA +06/16/2018,Sports_celeb,@Simone_Biles,RT @MollsRita: Come on @UHouston @UHCougars and @NCAA ! 😍 https://t.co/AiMBCdzgt8 +06/16/2018,Sports_celeb,@Simone_Biles,"if UofH (university of houston) gymnastics team got NCAA approved in the future, I’d consider coaching gymnastics after my career! 👀" +06/14/2018,Sports_celeb,@Simone_Biles,if you ever need a baby sitter in the near future hit me up @iamcardib +06/13/2018,Sports_celeb,@Simone_Biles,"Yes, I’m all good! It worked for me and no scars or anything https://t.co/TYwFdLLYz5" +06/13/2018,Sports_celeb,@Simone_Biles,laser hair removal is a lifesaver +06/13/2018,Sports_celeb,@Simone_Biles,@staceyervinjr me 😂❤️🎶 https://t.co/aQhLcjFK0a +06/13/2018,Sports_celeb,@Simone_Biles,"I’ve lost my boyfriend to fortnite. It’s fine, I’m fine" +06/12/2018,Sports_celeb,@Simone_Biles,"New clothes = new confidence. See how you can #Donate4FosterKids during @MattressFirm’s clothing drive. + +https://t.co/UUswrVQegZ" +06/12/2018,Sports_celeb,@Simone_Biles,RT @isaabel_tavarez: everytime I see my man: https://t.co/0JJoaMnSt0 +06/12/2018,Sports_celeb,@Simone_Biles,RT @lil_livkay: 5 beam routines is easier than 3 bar routines https://t.co/QYhfZ3b2h2 +06/10/2018,Sports_celeb,@Simone_Biles,talk to my boyfriend @staceyervinjr https://t.co/iudgJdVfhl +06/08/2018,Sports_celeb,@Simone_Biles,gonna start doing me more and caring less +06/07/2018,Sports_celeb,@Simone_Biles,"am I allowed to say + +that msu needs to just shut the hell up +y’all disgust me + +oops .... just did https://t.co/Osjoi6dNm2" +06/06/2018,Sports_celeb,@Simone_Biles,RT @shanAlise_: Hey please help us get an A ! @Simone_Biles 💗 https://t.co/ERRExzNFxp +06/05/2018,Sports_celeb,@Simone_Biles,kinda crazy to think that I compete next month +06/02/2018,Sports_celeb,@Simone_Biles,RT @staceyervinjr: I’ve got a theory that this is going to be legendary. 🌊 🤼‍♂️ https://t.co/mJo6D2fOJb +05/31/2018,Sports_celeb,@Simone_Biles,RT @jea_nte: @Simone_Biles has the best eye roll tho. 🙄 +05/31/2018,Sports_celeb,@Simone_Biles,I’m in disbelief that that’s actually GALVESTON in all of the pictures. Someone please confirm ... ?! True or not +05/29/2018,Sports_celeb,@Simone_Biles,I LOVE SLEEP +05/29/2018,Sports_celeb,@Simone_Biles,RT @pizzahut: 🍷+ 🍕+ 🌹= A good way to end a long weekend. +05/29/2018,Sports_celeb,@Simone_Biles,RT @staceyervinjr: Me too 😏💭 https://t.co/W3viq1E6ND +05/28/2018,Sports_celeb,@Simone_Biles,daydreaming about my future slim thick days +05/28/2018,Sports_celeb,@Simone_Biles,sunday funday ☀️ https://t.co/BDH2RjtxKa +05/26/2018,Sports_celeb,@Simone_Biles,RT @breatheevenIy: Me https://t.co/mxgjOF3MZh +05/26/2018,Sports_celeb,@Simone_Biles,"RT @nutellaANDpizza: ""Fix your attitude or leave."" +Me: https://t.co/EkaN0kkKjj" +05/26/2018,Sports_celeb,@Simone_Biles,RT @gritandddgrace: us or us?? 😂 @Simone_Biles https://t.co/LgBByMj2Zo +05/25/2018,Sports_celeb,@Simone_Biles,I’m honestly crying & I couldn’t breathe while reading these! THE TACOS RECIPE GOT ME - 😂 kids are my favorite wow!… https://t.co/xRLb1xEcSX +05/25/2018,Sports_celeb,@Simone_Biles,🖤🖤🖤🖤MISS YOU MORE https://t.co/4PlFgpzKi8 +05/23/2018,Sports_celeb,@Simone_Biles,another gym mirror selfie https://t.co/L15noVANHW +05/23/2018,Sports_celeb,@Simone_Biles,I woke up thinking it was Friday +05/22/2018,Sports_celeb,@Simone_Biles,"RT @BodyofBex: When I ask my friends to take a pic, I mean take THE pic. Take 15 photos, get on the floor, climb a tree, try flash and no f…" +05/22/2018,Sports_celeb,@Simone_Biles,RT @Colt3FIVE: I have a tendency to smile/laugh in serious moments +05/22/2018,Sports_celeb,@Simone_Biles,RT @Sal_Perez4: Bro I had to be the dumbest preschooler out there😐 https://t.co/0AGIk1tBa9 +05/22/2018,Sports_celeb,@Simone_Biles,@Lawmorgan10 us 💕 https://t.co/rxHzmMvCbK +05/22/2018,Sports_celeb,@Simone_Biles,"RT @alisonpool_: When someone has seen the worst parts of you & still decides to stay, that's when you know they’re worth keeping. Not ever…" +05/22/2018,Sports_celeb,@Simone_Biles,"VOTE @SashaFarber 💙 + +https://t.co/uFBb78Ztmr" +05/20/2018,Sports_celeb,@Simone_Biles,"physically, mentally, and emotionally drained" +05/19/2018,Sports_celeb,@Simone_Biles,big loss for usagym. you will be missed Scott ❤️ thank you for everything! showing a side of me that people don’t u… https://t.co/LFNeWPtH0f +05/19/2018,Sports_celeb,@Simone_Biles,RT @itshaleyo: This is me @Simone_Biles 😂 https://t.co/bdGaPLod3R +05/18/2018,Sports_celeb,@Simone_Biles,I need a chick flick movie night +05/18/2018,Sports_celeb,@Simone_Biles,RT @QuoteBeauties: Do you? https://t.co/IIdflC38J5 +05/17/2018,Sports_celeb,@Simone_Biles,RT @WCCentre2014: 💥THE NEWS IS OUT! 💥Registration is now OPEN! 🏆Pre-Registration forms are available on our website. Pre-Registration is re… +05/17/2018,Sports_celeb,@Simone_Biles,❤️love you babe https://t.co/tm6FGfXmox +05/17/2018,Sports_celeb,@Simone_Biles,RT @ItsFoodPorn: Chocolate Fudge Brownie Ice Cream. https://t.co/ABeb26BH3W +05/16/2018,Sports_celeb,@Simone_Biles,@gurlwithaccent @MIKOHSWIMWEAR +05/16/2018,Sports_celeb,@Simone_Biles,@kisseswdw YANNY +05/16/2018,Sports_celeb,@Simone_Biles,dog mom 🐾 https://t.co/O5lMGwp3zH +05/15/2018,Sports_celeb,@Simone_Biles,reggae music all day +05/15/2018,Sports_celeb,@Simone_Biles,RT @iatemuggles: this video is therapeutic https://t.co/SHB69kKVSn +05/14/2018,Sports_celeb,@Simone_Biles,"my eye has been twitching for days + +H E L P" +05/14/2018,Sports_celeb,@Simone_Biles,happy mother’s day momma biles🖤 https://t.co/D5JCNgsvBA +05/12/2018,Sports_celeb,@Simone_Biles,"Rise, then shine. ☀️ @MattressFirm #partner https://t.co/sDfkk401JX" +05/12/2018,Sports_celeb,@Simone_Biles,me today x13894947392 https://t.co/oQbOMqk1W3 +05/10/2018,Sports_celeb,@Simone_Biles,"RT @InsideGym: All in favor of putting Lilo on our cover, raise your hand 🙋🏼‍♀️🙋🏼‍♀️🙋🏼‍♀️ https://t.co/1JKeU2rEWZ" +05/09/2018,Sports_celeb,@Simone_Biles,"🙌🏾🙌🏾🙌🏾🔥🔥🔥 The best, I’m obsessed 🍕❤️🤪 https://t.co/CFAnp8xYpD" +05/07/2018,Sports_celeb,@Simone_Biles,G A L A ✨ https://t.co/De1rGiS5DR +05/06/2018,Sports_celeb,@Simone_Biles,every day I still choose you 💋 https://t.co/R6uto0GBPK +05/05/2018,Sports_celeb,@Simone_Biles,RT @omeezy_: when you waiting for bae to answer your facetime call https://t.co/3zWm8KwhwE +05/04/2018,Sports_celeb,@Simone_Biles,"RT @XPiel_Morena: Wow I Took My Daughter To A Photoshoot, Never Again 😭😭 https://t.co/YdS4jAlbMR" +05/03/2018,Sports_celeb,@Simone_Biles,"RT @MasAbukar: Me: Opens laptop and notebook + +My procrastination: + + https://t.co/Wou94gDBnE" +05/03/2018,Sports_celeb,@Simone_Biles,@caaitelizabeth alone 😭😭😭💔💔💔 +05/02/2018,Sports_celeb,@Simone_Biles,RT @TeamJuJu: It takes years to be an overnight success... +05/02/2018,Sports_celeb,@Simone_Biles,"RT @Adaripp: @Simone_Biles I’ve seen your boyfriend on Instagram, you’re good girl... but also, okay, let’s do it 💍" +05/01/2018,Sports_celeb,@Simone_Biles,the dancing with the stars elimination music still makes me so nervous +05/01/2018,Sports_celeb,@Simone_Biles,"VOTE FOR @SashaFarber +VOTE FOR @SashaFarber +VOTE FOR @SashaFarber +VOTE FOR @SashaFarber + +🖤🖤🖤 @DancingABC" +05/01/2018,Sports_celeb,@Simone_Biles,@bthouston11 @Adaripp ........ I KNOW....... +05/01/2018,Sports_celeb,@Simone_Biles,I WANNA MARRY @Adaripp 💛 +04/30/2018,Sports_celeb,@Simone_Biles,summer bod is here ☀️🍯💛 https://t.co/EW5h3uge8Q +04/28/2018,Sports_celeb,@Simone_Biles,@PeytonErnst THANK YOU PEYTON 💓 +04/27/2018,Sports_celeb,@Simone_Biles,RT @ashton_locklear: I need some life in my life... +04/27/2018,Sports_celeb,@Simone_Biles,"I am not to be labeled by Larry Nassars abuse. Nowhere in this video did I talk about it. Take this down. + +My sig… https://t.co/HdAiNDFjiR" +04/24/2018,Sports_celeb,@Simone_Biles,"oooohhhh lemme join 👑💕😍 +get it girls !!! https://t.co/hPJ6ZT4XBQ" +04/24/2018,Sports_celeb,@Simone_Biles,dude this is how my frenchie gets out too 🐾🤦🏾‍♀️ hahahaah! https://t.co/8CJsXHU081 +04/24/2018,Sports_celeb,@Simone_Biles,"RT @chrissyteigen: I don’t call out people I’ve had weird run-ins with because I have bad days, too. I’d be bummed if someone used one inte…" +04/23/2018,Sports_celeb,@Simone_Biles,"RT @Peter_Back: Always a pleasure, @Simone_Biles. Let @sbregman87 and I know when we can come back! https://t.co/NNIPpkINcs https://t.co/mT…" +04/23/2018,Sports_celeb,@Simone_Biles,M I N E.... smh https://t.co/wbzXcnqLoF +04/23/2018,Sports_celeb,@Simone_Biles,"RT @USAGym: .@Simone_Biles is back. + +Watch our update with the four-time Olympic champ who expects to return to competition this summer! ht…" +04/22/2018,Sports_celeb,@Simone_Biles,"they don’t need me, they’re absolutely killing it 💙 im so proud & happy for them!!! WAHOO GO UCLA BABYYYYY! https://t.co/hLDDIc5ind" +04/21/2018,Sports_celeb,@Simone_Biles,"happy pup in the pit 🐾 +(she jumped in herself) https://t.co/q33qufdOzY" +04/21/2018,Sports_celeb,@Simone_Biles,@gritandddgrace hahahaa this is so funny!!!! literally needed +04/21/2018,Sports_celeb,@Simone_Biles,so proud of my gymnastics babes @ NCAA’s 💙 +04/20/2018,Sports_celeb,@Simone_Biles,@iratre you riiiight +04/19/2018,Sports_celeb,@Simone_Biles,I almost had a mental breakdown but I had to reschedule it +04/19/2018,Sports_celeb,@Simone_Biles,RT @jamescharles: it’s so weird how our faces never change but some days we feel hideous and others we feel stunning & unstoppable +04/19/2018,Sports_celeb,@Simone_Biles,us 😂 @ashton_locklear https://t.co/PbYhJT2bPH +04/16/2018,Sports_celeb,@Simone_Biles,@loganjw23 confused... I haven’t been anywhere today. ? 🤨 +04/14/2018,Sports_celeb,@Simone_Biles,the “I hope” tweets under tristans insta photo are killllllling me 😂😂😂 +04/13/2018,Sports_celeb,@Simone_Biles,IM STOKED 😍😍😍😍🔥🔥🔥 GO @Adaripp https://t.co/09fee2qgdP +04/10/2018,Sports_celeb,@Simone_Biles,"I get it’s an ab/core event y’all! +all events require abs! +but hypothetically speaking https://t.co/k2J9Xocz72" +04/10/2018,Sports_celeb,@Simone_Biles,"@KatieDugger1989 yes yes, definitely. but all events require core and your abs so yes!!! but I mean like ^^^^ c’mon" +04/10/2018,Sports_celeb,@Simone_Biles,"for you gymnast out there +quick question 🖤 Is bars a ?" +04/09/2018,Sports_celeb,@Simone_Biles,National Unicorn Day 🦄 ft Lilo 🐾💓 https://t.co/OnU7K45qfg +04/09/2018,Sports_celeb,@Simone_Biles,"RT @HoustonChron: Five months into her return to full-time training and 19 months since her last competition at the 2016 Olympics, even Sim…" +04/08/2018,Sports_celeb,@Simone_Biles,@DearKenia_ @TheBrittDean I get that I’m a normal person that’s why I want to be treated like one... trust me I know . +04/08/2018,Sports_celeb,@Simone_Biles,everyone is always so quick to judge me +04/08/2018,Sports_celeb,@Simone_Biles,@DearKenia_ @TheBrittDean clearly you don’t understand how I feel EVERYDAY going out. my bad if I didn’t plead at y… https://t.co/7AKfAdQWfG +04/07/2018,Sports_celeb,@Simone_Biles,"RT @SamuelTeddy: Queen Biles is back! Damn I'm already excited for this year. +@Simone_Biles https://t.co/Jvh0023XZY" +04/07/2018,Sports_celeb,@Simone_Biles,"RT @Holli_Alexa: Three things that I loved in @USAG’s IG story on @Simone_Biles: + +• Her Frenchie got belly rubs while she practiced 🐶💕 + +•…" +04/07/2018,Sports_celeb,@Simone_Biles,RT @USAGym: Head over to our Instagram story (@usagym) for a look at Olympic champ @Simone_Biles’ training today! https://t.co/QoYNNORR1w +04/05/2018,Sports_celeb,@Simone_Biles,"@JulieRoyer3 it’s a bathing suit, I’m 21. Get over it." +04/05/2018,Sports_celeb,@Simone_Biles,having summer feels 🌼 https://t.co/WwMiJvpVOb +04/05/2018,Sports_celeb,@Simone_Biles,RT @saradesdinn: i'm a girlfriend and a bro all in one +04/05/2018,Sports_celeb,@Simone_Biles,RT @VanessaGrimaldi: Having one of those days!!!!!! Not sure whether to laugh or cry!!!! Ughh +04/02/2018,Sports_celeb,@Simone_Biles,Lilo & Stitch 🐾🌼💙 https://t.co/nxOVDDjrIb +04/01/2018,Sports_celeb,@Simone_Biles,happy easter 🌸💛 https://t.co/ly9n0ugGkg +03/30/2018,Sports_celeb,@Simone_Biles,obsessed with blush pink +03/29/2018,Sports_celeb,@Simone_Biles,💙 https://t.co/LS3EPplXHS +03/29/2018,Sports_celeb,@Simone_Biles,University of The People Live Q&A #AskUoPeople https://t.co/9MSpr6pXJf +03/29/2018,Sports_celeb,@Simone_Biles,"easy money, I got this 😈 https://t.co/cF6QAV6rex" +03/28/2018,Sports_celeb,@Simone_Biles,RT @auqeno: When yo makeup fire and you don’t know how to act. https://t.co/cu12tuSqpQ +03/28/2018,Sports_celeb,@Simone_Biles,Hey guys! I’m hosting a live Twitter Q&A video on Thursday with University of the People to talk about the Educatio… https://t.co/RpsfmHzD4V +03/27/2018,Sports_celeb,@Simone_Biles,"RT @saradesdinn: yellow is such a dope color, reminds me of sunshine and happiness and sunflowers and lemonade 🌼🍯💛🍋🌟🔆🐝☀️🌻🐣" +03/27/2018,Sports_celeb,@Simone_Biles,my one and only man crush https://t.co/tRRi4Uwxwu +03/26/2018,Sports_celeb,@Simone_Biles,SO HAPPY FOR YOU ❤️❤️❤️❤️❤️ GOODLUCK BABE https://t.co/uBh0BwlX1H +03/26/2018,Sports_celeb,@Simone_Biles,I HATE SPIDERS +03/26/2018,Sports_celeb,@Simone_Biles,the amount of times I’ve contemplated burning down the house bc of seeing a SPIDER is unreaaaaallllll +03/26/2018,Sports_celeb,@Simone_Biles,"aw, that’s so sweet of you. I went to Strack back in the day! 🙌🏾 +Go Cougars!! https://t.co/SRaqSIRYpm" +03/25/2018,Sports_celeb,@Simone_Biles,INBLOOM MUSIC FESTIVAL 🌸 https://t.co/dezB40hq1o +03/25/2018,Sports_celeb,@Simone_Biles,"I D E A S ! H E L P + +G O + +fun places to take photos at in houston?" +03/21/2018,Sports_celeb,@Simone_Biles,I forgot my locker combination at the gym and I’ve had & done it for 4 years.... that’s how my morning is going +03/19/2018,Sports_celeb,@Simone_Biles,RT @houstonzoo: Setting up a surprise sloth encounter as a birthday present for @Simone_Biles? You might think his shirt is made out of cot… +03/18/2018,Sports_celeb,@Simone_Biles,💗 https://t.co/FzqIyykiWg +03/17/2018,Sports_celeb,@Simone_Biles,Happy St.Patricks Day - I’m one lucky girl ☘️💚 https://t.co/R4CKG72gEK +03/17/2018,Sports_celeb,@Simone_Biles,☘️lucky to have a friend as sweet as you @caaitelizabeth https://t.co/jOMaiyfInm +03/16/2018,Sports_celeb,@Simone_Biles,Life is a party • Dress like it 🎉 https://t.co/zB3KkFEJDk +03/15/2018,Sports_celeb,@Simone_Biles,can’t wait to see what 21 brings 😈🎉 thanks for all the birthday wishes babes 💋 xoxo https://t.co/OyxGDujC8U +03/15/2018,Sports_celeb,@Simone_Biles,"happy birthday to all the +march 14th-ers 💗" +03/14/2018,Sports_celeb,@Simone_Biles,21 🎉 https://t.co/Zb2w41lwCM +03/12/2018,Sports_celeb,@Simone_Biles,my babes first rodeo experience : look how stinkin cute he is 😍🤪💗 https://t.co/wqjn0pRD4L +03/12/2018,Sports_celeb,@Simone_Biles,h o u s t o n r o d e o https://t.co/lWhhNqH3Oc +03/11/2018,Sports_celeb,@Simone_Biles,it’s 2018 why are heels still so painful +03/11/2018,Sports_celeb,@Simone_Biles,RT @SPlDEYSTYLES: the rock calling his daughter “my queen” and teaching her empowering words honestly warms my heart knowing he’s raising h… +03/10/2018,Sports_celeb,@Simone_Biles,im gonna need you to delete this tweet & your twitter 💔 https://t.co/oGUr0MNTyy +03/10/2018,Sports_celeb,@Simone_Biles,"I never have anything to tweet about anymore, I’m just here for the funny tweets and videos" +03/09/2018,Sports_celeb,@Simone_Biles,@KellyT1996 @staceyervinjr @WCCentre2014 @biles_nellie @adria_biles @biles aawwww our baby is gonna be famous 🐾🐶 +03/09/2018,Sports_celeb,@Simone_Biles,RT @KellyT1996: Stressed? We have the cure! @Simone_Biles @staceyervinjr @WCCentre2014 @biles_nellie @adria_biles @biles. https://t.co/FE8e… +03/09/2018,Sports_celeb,@Simone_Biles,RT @BleacherReport: #InternationalWomensDay💪🏾 https://t.co/rP9nt0nSDr +03/08/2018,Sports_celeb,@Simone_Biles,@caroliine69 @norah_flatley @lzhernandez02 @ashton_locklear @DennisNia I definitely never made or did Tops...... hmmmm awk +03/08/2018,Sports_celeb,@Simone_Biles,RT @beatsbydre: Share your strength and build others up. @Simone_Biles #InternationalWomensDay #PressForProgress https://t.co/NVPWmRPhTx +03/08/2018,Sports_celeb,@Simone_Biles,RT @rachm528: @Simone_Biles i cant believe you’ll be 21 in a week... where has the time gone!?😳💜 https://t.co/RoVPN778b7 +03/07/2018,Sports_celeb,@Simone_Biles,"Together with @UoPeople, we can get rid of the barriers that keep a college degree out of reach for those who truly… https://t.co/eexsJAXpsd" +03/07/2018,Sports_celeb,@Simone_Biles,"it’s national oreo day, so of course I had to go buy some 🤪🤤" +03/04/2018,Sports_celeb,@Simone_Biles,RT @khloekardashian: What happened to women fixing each other’s crowns instead of trying to knock the others crown off? +03/04/2018,Sports_celeb,@Simone_Biles,@YourFavR0Y you do realize I said yes to you asking for a photo... So I was doing the cashiers first and yall walke… https://t.co/hWhT1GEvAG +03/03/2018,Sports_celeb,@Simone_Biles,RT @WCCentre2014: How could this sweet girl not think she isn’t our gym baby! Most loved and spoiled pup around! With 2 rockstar parents to… +03/02/2018,Sports_celeb,@Simone_Biles,RT @USAGym: .@Simone_Biles has been added to the U.S. national team. https://t.co/41dZLn1Uwr +03/01/2018,Sports_celeb,@Simone_Biles,"RT @Nike: When your world stops, there's only one option. #ChooseGo #Nike https://t.co/8ggzKFsiar" +03/01/2018,Sports_celeb,@Simone_Biles,Lace up. Get out. #ChooseGo #TeamNike https://t.co/7eS301GbWt +02/27/2018,Sports_celeb,@Simone_Biles,"sorry loves, I thought my snapchat was public! 💗 it’s backkk! Don’t worry, I’ll do a little weekend recap for you guys 💋 XO" +02/25/2018,Sports_celeb,@Simone_Biles,"my man 🧡 so proud of you, can’t wait to see what the future holds 💋 https://t.co/npWvaAVJKL" +02/25/2018,Sports_celeb,@Simone_Biles,"RT @TheAdams_era: Some nights I wish I could go back in life. Not to change anything, just to feel a couple things twice." +02/24/2018,Sports_celeb,@Simone_Biles,"all fun, giggles & memories here at the first Biles Invitational ❤️ https://t.co/NK4m69MG6E" +02/23/2018,Sports_celeb,@Simone_Biles,RT @alejandraalan12: OMG this is so cute ❤️ @Simone_Biles https://t.co/Fk5TgZq1R7 +02/20/2018,Sports_celeb,@Simone_Biles,"RT @soieange: Dreaming of this wonderful floral bath at the Karsa Spa in Bali 🌺 wanting flower soaked baths, luxury facials using organic p…" +02/18/2018,Sports_celeb,@Simone_Biles,💛 just a girls night out https://t.co/CbNUk7Jwq7 +02/17/2018,Sports_celeb,@Simone_Biles,hey @Adaripp can I please borrow that top ?!!??!!! #NEEDIT +02/17/2018,Sports_celeb,@Simone_Biles,"keep your chin up @nathanwchen +I believe in you!!" +02/17/2018,Sports_celeb,@Simone_Biles,"RT @TexansCheer: @Simone_Biles Hold up! +Lilo swagged out X 1,000,000!💕" +02/16/2018,Sports_celeb,@Simone_Biles,okay I’m obsessed 🐾🐶 @TexansCheer https://t.co/u3x9SKLwf8 +02/14/2018,Sports_celeb,@Simone_Biles,"CAN’T WAIT ‼️‼️‼️‼️‼️‼️ +SEE YOU SOON https://t.co/WCs2HhYVzC" +02/13/2018,Sports_celeb,@Simone_Biles,RT @alejandraalan12: awww the cutest thing I've seen today ❤️ @Simone_Biles https://t.co/pgkhdi5Rm7 +02/12/2018,Sports_celeb,@Simone_Biles,✨ Give the gift of sweet dreams when you donate to @MattressFirm’s pajama drive. #Donate4FosterKids #partner https://t.co/xlMLy26cgb +02/12/2018,Sports_celeb,@Simone_Biles,meet Lilo 💗🐾 https://t.co/F3kCIzboXk +02/10/2018,Sports_celeb,@Simone_Biles,"aww Alicia, I’d be excited if it was you!! I remember the time I was excited to get your autograph😊 I still have it… https://t.co/FeesohAXCE" +02/09/2018,Sports_celeb,@Simone_Biles,"RT @SummerSanders_: #FlashbackFriday To last night with my fellow Olympians @Simone_Biles and @missyfranklin +Supporting our @CocaColaCo @T…" +02/09/2018,Sports_celeb,@Simone_Biles,"Who’s excited for the #WinterOlympics to begin tonight on @NBCOlympics?! + +Good Luck Nathan!!!! Can’t wait to watch… https://t.co/4JroJB3Xhi" +02/08/2018,Sports_celeb,@Simone_Biles,RT @AM2DM: Watch this 11-year-old gymnast meet her hero @Simone_Biles 😭 💕 https://t.co/iejwAfgKdB +06/24/2018,Sports_celeb,@MichelleWKwan,Today is Olympic Day - a nostalgic time as I think about my experiences and how the Olympic values positively impac… https://t.co/6ZPAlxLBeR +06/20/2018,Sports_celeb,@MichelleWKwan,Meeting my new bestie @jvn for the first time 💕… https://t.co/32bK3qNrMp +05/15/2018,Sports_celeb,@MichelleWKwan,In celebration of #AAPI month I wanted to share my @CAPEUSA story. What’s yours? https://t.co/JNUhlirRni +05/08/2018,Sports_celeb,@MichelleWKwan,"RT @maziehirono: @FDNY As a two-time Olympic medalist and a nine-time U.S. champion, @MichelleWKwan inspired generations of girls to become…" +05/08/2018,Sports_celeb,@MichelleWKwan,RT @vivekforca: I ran 500 miles across California – Sacramento to L.A. I'm not stopping. https://t.co/e9bOL2vKBW #RunwithVivek #500Milesfor… +03/19/2018,Sports_celeb,@MichelleWKwan,RT @MohamedBinZayed: It was a pleasure welcoming our friends from Special Olympics International back. The UAE welcomes all athletes to the… +03/09/2018,Sports_celeb,@MichelleWKwan,"Shout out to the one and only michelleobama on #internationalwomensday - mom, role model,… https://t.co/OdwniYhqmD" +03/07/2018,Sports_celeb,@MichelleWKwan,I love my @specialolympics family and today I wanted to ask all of you to pledge to stop using… https://t.co/qrNsGTbiFH +02/23/2018,Sports_celeb,@MichelleWKwan,"Cheering for teamusa @usfigureskating from home!! #letsdothis @ Los Angeles, California https://t.co/CQOekPNT48" +02/22/2018,Sports_celeb,@MichelleWKwan,"With mom's love, I overcame every obstacle in my skating career. #LoveOverBias #ad https://t.co/la9435MXPo" +02/22/2018,Sports_celeb,@MichelleWKwan,"RT @eamslider24: Strong women, unite! Here with @proctergamble to spread the #LoveOverBias message with these incredible women through the…" +02/19/2018,Sports_celeb,@MichelleWKwan,"Let’s go @mirai_nagasu 😘 #havefun +https://t.co/prlDzoRCAp" +02/19/2018,Sports_celeb,@MichelleWKwan,Remember this.... adrienneelrod jmpalmieri🤣 https://t.co/NQLnXZqhgT +02/18/2018,Sports_celeb,@MichelleWKwan,An overwhelming feeling of nostalgia being at pyeongchang2018. I still remember like it was… https://t.co/ZU2BTWUcXI +02/18/2018,Sports_celeb,@MichelleWKwan,Haha. Honored I’m a tab @lulu_cheng😆 https://t.co/1NxHx7nK2t +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @TuftsUniversity: Figure skating phenom and @FletcherSchool alum @MichelleWKwan discusses gender equality at the #WinterOlympics, sports…" +02/17/2018,Sports_celeb,@MichelleWKwan,RT @icenetwork: Yuzu is weeping with joy backstage. #PyeongChang2018 #Olympics https://t.co/q7ZFLDEzQ6 +02/17/2018,Sports_celeb,@MichelleWKwan,Congrats Yuzu! #twotimeolympicchampion 😱 +02/17/2018,Sports_celeb,@MichelleWKwan,@MaiaShibutani Unreal. I never thought I’d ever see so many quads! +02/17/2018,Sports_celeb,@MichelleWKwan,That was so beautiful @Adaripp - you’re flying like a bird! 😭 +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: WE AREN’T SCREAMING, YOU ARE! 😱 +@Adaripp is on the ice NEXT on @NBCSN! https://t.co/RSyQoC5JRn" +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: ALL. THE. FEELS. 😭 What an incredible #WinterOlympics debut for @govincentzhou. 👏 + +📸: Getty Images https://t.co/p9JXfL…" +02/17/2018,Sports_celeb,@MichelleWKwan,@kristiyamaguchi @govincentzhou So emotional! Exhausted from trying to skate with every 🇺🇸skater - it doesn’t help… https://t.co/yHGOmXStYt +02/17/2018,Sports_celeb,@MichelleWKwan,Way to go Vincent Zhou! 💪🏼🙌🏻👏🏼 +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: REDEMPTION FOR @nathanwchen. 👏 + +He earns a 215.08 points for his FS - a new personal best - and 297.35 total. He's in…" +02/17/2018,Sports_celeb,@MichelleWKwan,RT @MarissaCastelli: Wow. NATHAN CHEN IS A CHAMPION. I don’t care what the result are that was incredible. 👏🏼 #Olympics2018 #NathanChen +02/17/2018,Sports_celeb,@MichelleWKwan,HOLY QUADS @nathanwchen #champ #fighter #amazing +02/16/2018,Sports_celeb,@MichelleWKwan,Wishing the Winningest Alpine Skier Of All Time @lindseyvonn - and a woman who has the most… https://t.co/ofFZgXO9sc +02/16/2018,Sports_celeb,@MichelleWKwan,I’ve been staring at the Olympic rings my whole life - never gets old 😍 pyeongchang2018… https://t.co/bcGDNdMXF4 +02/16/2018,Sports_celeb,@MichelleWKwan,Amazing! @govincentzhou makes the impossible looks so easy. @usfigureskating. #goteamusa https://t.co/mI1k6okDrU +02/16/2018,Sports_celeb,@MichelleWKwan,RT @JayAndDan: Meagan Duhamel (@mhjd_85) and Eric Radford (@Rad85E) join #JayAndDan RIGHT NOW on TSN! https://t.co/l1czIeVPhq +02/16/2018,Sports_celeb,@MichelleWKwan,RT @yawning_shoma: Shoma was talking to press so Yuzuru got on his hands and knees and CRAWLED BEHIND SHOMA TO NOT DISTURB HIM LMAO https:/… +02/16/2018,Sports_celeb,@MichelleWKwan,"RT @M1K1_ANDO: 29. Javier FERNANDEZ 🇪🇸 +チャップリンの世界観を存分に味わえたのではないでしょうか。 ジャンプも本当に素晴らしい質の高いジャンプ。 特にサルコウはやはりピカイチです。 メダルへの強い気持ちが現れた演技でした。" +02/16/2018,Sports_celeb,@MichelleWKwan,💔 +02/16/2018,Sports_celeb,@MichelleWKwan,"RT @NickMcCarvel: Nathan Chen now set to skate after that Yuzuru Hanyu BRILLIANCE. Nathan on the skate order: ""[I'll] be prepared for the P…" +02/16/2018,Sports_celeb,@MichelleWKwan,Wow Yuzu Wow 😮 +02/16/2018,Sports_celeb,@MichelleWKwan,@J_Butt Bonus points for attitude and the look on Rafael’s face😉 +02/16/2018,Sports_celeb,@MichelleWKwan,Well said. https://t.co/SqixmJyQj4 +02/15/2018,Sports_celeb,@MichelleWKwan,"RT @FletcherSchool: #FletcherAlum @MichelleWKwan (F11) is the most award-winning US figure skater ever: a 2-time #Olympic medalist, 5-time…" +02/14/2018,Sports_celeb,@MichelleWKwan,Congrats! @shaunwhite GOAT 🏅🇺🇸🏅🇺🇸 +02/14/2018,Sports_celeb,@MichelleWKwan,RT @rockerskating: OMG @MichelleWKwan feels with Day in the Life from Ryom/Kim #PyeongChang2018 +02/14/2018,Sports_celeb,@MichelleWKwan,North Korean figure skaters are on the ice! https://t.co/dkuFHXRNQT +02/14/2018,Sports_celeb,@MichelleWKwan,Sorry this boomerang had to happen... working on my @usfigureskating teamusa cheerleading… https://t.co/1iFeITDOWj +02/09/2018,Sports_celeb,@MichelleWKwan,Excited to share another Olympic Games experience with Mama Kwan and proud to be partnering with… https://t.co/gRGoHjjIkL +02/09/2018,Sports_celeb,@MichelleWKwan,RT @arthurpbs: The #WinterOlympics have officially begun! Who’s tuning in? #OpeningCeremony #MichelleKwan #ArthurGuestStars @MichelleWKwan… +02/09/2018,Sports_celeb,@MichelleWKwan,So beautiful to see my friend @bamboogrovw light the pyeongchang2018 Olympic torch 😍🔥#fbf to… https://t.co/CmZnECSh5w +02/07/2018,Sports_celeb,@MichelleWKwan,"This empowering song @kealasettle reminds me of an Olympian’s journey to the Games - ”I am brave, I am bruised I am… https://t.co/LMFwIEWXUU" +02/04/2018,Sports_celeb,@MichelleWKwan,Pre-Super Bowl volleyball fun 🏐🏈🏐🏈 https://t.co/yzdzISxKIS +02/02/2018,Sports_celeb,@MichelleWKwan,"I ❤️ @ProcterGamble “thank you, mom” #loveOverBias campaign https://t.co/LB3UrEiUgL" +01/27/2018,Sports_celeb,@MichelleWKwan,So very cool! Hope everybody’s getting excited for pyeongchang2018 thanks @people 😍 https://t.co/SW3eYQu4S9 +01/25/2018,Sports_celeb,@MichelleWKwan,Part 3 (The End). @ East West Ice Palace https://t.co/A8zBknwFB2 +01/25/2018,Sports_celeb,@MichelleWKwan,@FANderWaalNews @GraceVanderWaal Eek typo! She does have a beautiful mind too;) +01/25/2018,Sports_celeb,@MichelleWKwan,"Part 2. + +“Beautiful Mind” @gracevanderwaal +Choreographer: karenkwanoppegard😍 @ East West Ice… https://t.co/SUMh9lpmSh" +01/20/2018,Sports_celeb,@MichelleWKwan,"RT @POPSUGARFitness: Seriously, @MichelleWKwan is fire on that ice rink! https://t.co/NzMrgt6SLf" +01/17/2018,Sports_celeb,@MichelleWKwan,Best desk neighbor and one of the smartest ppl I know! Go @vivekforca https://t.co/BiLYFyMhO9 looking forward to ru… https://t.co/jmonctl5qD +01/17/2018,Sports_celeb,@MichelleWKwan,My friend & fmr colleague @vivekforca is *literally* running for CA Treasurer!https://t.co/BiLYFyMhO9 #500MilesforCA https://t.co/CYA1Pz7LLA +01/14/2018,Sports_celeb,@MichelleWKwan,Epic siblings weekend. Pretending we’re @lindseyvonn @shaunwhite @hannahteter 👊🏻🇺🇸#gopro… https://t.co/u5V5jRl9lf +01/12/2018,Sports_celeb,@MichelleWKwan,RT @NBCOlympics: .@MichelleWKwan's still got it. #WinterOlympics https://t.co/HTtUzcCWeY +01/07/2018,Sports_celeb,@MichelleWKwan,Skating family unite! #Go nathanwchen @adaripp @Grant_Hochstein @rossminer @jasonbskates @ SAP… https://t.co/ePtV2aLe9e +01/06/2018,Sports_celeb,@MichelleWKwan,@NickMcCarvel @icenetwork So fun to chat with you! You’re the best. Xo +01/06/2018,Sports_celeb,@MichelleWKwan,RT @NickMcCarvel: Super special to have @MichelleWKwan join us on the Ice Desk yesterday on @icenetwork! Legendary human in every way #USCh… +01/06/2018,Sports_celeb,@MichelleWKwan,The gang hanging out @usfigureskating #uschamps18 to cheer on the ladies! #gousa🇺🇸 @evanlysacek… https://t.co/1AkjHhvEgS +01/04/2018,Sports_celeb,@MichelleWKwan,Skating buds 🙆🏻‍♂️🙆🏻‍♀️ @evanlysacek @ East West Ice Palace https://t.co/i6DgsFNiOp +01/02/2018,Sports_celeb,@MichelleWKwan,"See no evil, hear no evil and speak no evil in 2018 🙈🙉🙊#threewisemonkeys https://t.co/YDCmqFHmQp" +12/24/2017,Sports_celeb,@MichelleWKwan,Merry merry merry everyone!🎀 https://t.co/R8zOu2Mzf7 +12/22/2017,Sports_celeb,@MichelleWKwan,Split falling leaf into the weekend #merrychristmas #skatergirl 🤸🏻‍♀️ @ East West Ice Palace https://t.co/FV5jMWUP5u +12/18/2017,Sports_celeb,@MichelleWKwan,First inside outside spiral in over 10 years 😳 edsheeran #mondaymotivation @SkatingLesson still… https://t.co/CHyyRvGBBa +12/15/2017,Sports_celeb,@MichelleWKwan,"It’s Friday fun time! #spiral #skating +🌈☁️🌈☁️🌈☁️🌈☁️🌈☁️🌈 https://t.co/ecSW5zV1iD" +12/14/2017,Sports_celeb,@MichelleWKwan,With pyeongchang2018 right around the corner I️ thought it would be fun to get back on the ice.… https://t.co/eY28d5MTdF +12/11/2017,Sports_celeb,@MichelleWKwan,So fun talking ice skating w/ @icenetwork https://t.co/ERitvtXzuh +12/07/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: .@MichelleWKwan, Bob Costas & the #DreamTeam have just received some pretty big awards from the United States Olympic Endowmen…" +12/02/2017,Sports_celeb,@MichelleWKwan,Lovely to stop by to see my former boss hillaryclinton and hang with #HIllsquad #I️ttakesavillage https://t.co/Mltmg6EoPH +11/30/2017,Sports_celeb,@MichelleWKwan,"RT @arthurpuu: LA native Michelle Kwan on the 2028 LA Olympics: “I’m very excited for it to be back, especially here in my backyard. It’s s…" +11/30/2017,Sports_celeb,@MichelleWKwan,So wonderful to hang out w/ you @catcora Hope that I️ can exchange skating lessons for cooking lessons 🙏🏼 https://t.co/9BnUTyhD3S +11/27/2017,Sports_celeb,@MichelleWKwan,So excited to read @jwelter47 book. #Rockstar #girlpower 🙌🏻 https://t.co/yIfpbzJ3Sg +11/26/2017,Sports_celeb,@MichelleWKwan,Sunday funday with the fam bam. I️ asked my niece oliviaoppegard if she wanted to “walk” the… https://t.co/CHQO91ldth +11/25/2017,Sports_celeb,@MichelleWKwan,RT @SkateGuardBlog: A little trivia... the record for the most #SkateAmerica titles belongs to @MichelleWKwan (7). She won her first in 199… +11/25/2017,Sports_celeb,@MichelleWKwan,RT @UN_Women: You wont believe these facts! Watch until the end. https://t.co/msPVglSFLh #16days #orangetheworld +11/14/2017,Sports_celeb,@MichelleWKwan,RT @Want_PC: .@michellewkwan on why we need the Olympics now more than ever: https://t.co/NTAG5QzaO4 https://t.co/dqmHD1957l +11/14/2017,Sports_celeb,@MichelleWKwan,RT @TimShriver: Great to be with @SpecialOlympics International Board member @MichelleWKwan to meet the athletes and parents taking part in… +11/14/2017,Sports_celeb,@MichelleWKwan,Wonderful to bring my mom to the @specialolympics East Asia Unity Fundraising Gala in Hong Kong.… https://t.co/zryA90bf5V +11/08/2017,Sports_celeb,@MichelleWKwan,@jmpalmieri Don’t forget the pantsuit too! https://t.co/bHptBIUA5G +11/07/2017,Sports_celeb,@MichelleWKwan,Win a pair of skates signed by @VeraWangGang and me — and also support @FSinHarlem! https://t.co/xRLq1cNk6W #FSHwinskates +11/06/2017,Sports_celeb,@MichelleWKwan,"Wonderful to join Her Excellency @NouraAlKaabi & #MariaTeixidorJufresa on the panel, “Leadership… https://t.co/f5fKQctLEK" +11/05/2017,Sports_celeb,@MichelleWKwan,"After 17 hour flight + 8 hours at Heathrow, very little sleep, and a few meetings I’m finally… https://t.co/ykQ0w4WICE" +11/03/2017,Sports_celeb,@MichelleWKwan,"Always fun catching up with this champ @evanlysacek @ Beverly Hills, California https://t.co/8TmuC0OcBE" +11/02/2017,Sports_celeb,@MichelleWKwan,I couldn’t hold back the tears watching the new @ProcterGamble #PyeongChang2018 video. So powerful! Check out… https://t.co/dP2j2pS4ph +11/01/2017,Sports_celeb,@MichelleWKwan,"RT @wmag: .@MichelleWKwan discusses getting back on the ice, working with @VeraWangGang, and #ITonya: https://t.co/SZA3ynGkxK" +11/01/2017,Sports_celeb,@MichelleWKwan,It’s 100 days out from#pyeongchang2018 and I’m thrilled to be a part of @proctergamble… https://t.co/GlVdLKy78E +11/01/2017,Sports_celeb,@MichelleWKwan,RT @olyphil: Got to catch up with two of my favorite people while breaking bread in LA: @MichelleWKwan and @janetevans https://t.co/d21NFdA… +11/01/2017,Sports_celeb,@MichelleWKwan,RT @ICSW_AD: 6 days to go🙌! Which speaker are you most excited to see at the conference? Let us know in the replies https://t.co/2LnqigeYO9 +11/01/2017,Sports_celeb,@MichelleWKwan,@christina_gregg Great chatting with you! +10/20/2017,Sports_celeb,@MichelleWKwan,Catch me live on @newyorklivetv at 11:30 & @TheHubToday at 12:30 chatting with @sara_gore & @jacquereid about @WomensSportsFdn +10/18/2017,Sports_celeb,@MichelleWKwan,Thanks @MorganStanley for hosting #WSFALC17 @WomensSportsFdn Great to chat w/ athletes transitioning from sports to… https://t.co/9bX2JgBlKE +10/18/2017,Sports_celeb,@MichelleWKwan,For the first time ever you can #Livestream the @WomensSportsFdn #WSFAnnualSalute! Register for… https://t.co/k9VVyuyaG5 +10/18/2017,Sports_celeb,@MichelleWKwan,RT @ExcelleSports: Your fav female athletes will be there + so will we! Join us on 10.18 on FB as we go live - and take your questions - fr… +10/15/2017,Sports_celeb,@MichelleWKwan,"When at first you don't succeed, try again 🙄 + +1st attempt: Fail +2nd attempt: Success… https://t.co/8aZ0QL41E7" +10/06/2017,Sports_celeb,@MichelleWKwan,Congrats @DebraMessing for receiving a star on the Hollywood Walk of Fame! 😘 Love ya! https://t.co/bqjrTVzLSt +10/05/2017,Sports_celeb,@MichelleWKwan,Blades and body are still rusty from not jumping for 7 years but after 4 days of skating I'm… https://t.co/jK5UfIHKgK +10/01/2017,Sports_celeb,@MichelleWKwan,@mskristinawong Nope. Wonder who my doppelgänger is 😜 +09/20/2017,Sports_celeb,@MichelleWKwan,Just taking my zamboni for a spin around the block. @ East West Ice Palace https://t.co/3M4DjAggcQ +09/04/2017,Sports_celeb,@MichelleWKwan,Happy Labor Day 😘 @ Hanalei Bay https://t.co/sp8RcKCW21 +08/25/2017,Sports_celeb,@MichelleWKwan,RT @kobebryant: .@allysonfelix I challenge you to coach the sprinters for the upcoming Special Olympics #MambaMentality https://t.co/aaL6ei… +08/24/2017,Sports_celeb,@MichelleWKwan,Reconnecting with old friends ❤️#willandgrace nbcwillandgrace @ Universal Studios Hollywood https://t.co/FptODAXD4E +08/21/2017,Sports_celeb,@MichelleWKwan,"Feeling like complete totality 🌚 @ Westwood, Los Angeles https://t.co/YWbX9L3Pu3" +08/17/2017,Sports_celeb,@MichelleWKwan,@ItsKenton So nice meeting you!! ❤️ @PMJofficial #45mins😜 +08/09/2017,Sports_celeb,@MichelleWKwan,"RT @KPMGInspire: Resiliency is a must-have and it differs by situation. In figure skating, it means grace after mistakes, says @MichelleWK…" +07/19/2017,Sports_celeb,@MichelleWKwan,RT @SpecialOlympics: RT if you will honor the legacy of Eunice Kennedy Shriver this #EKSDay by taking our #ChooseToInclude pledge➡https://t… +07/16/2017,Sports_celeb,@MichelleWKwan,Go @PaulaAbdul go!!! We ❤️ you! @musical_wheels https://t.co/dVZWvxZMUK +07/16/2017,Sports_celeb,@MichelleWKwan,In absolute awe of @rogerfederer🏆 #Wimbledon #superstar #athlete +07/13/2017,Sports_celeb,@MichelleWKwan,"#JICYMI: @SpecialOlympics @TimShriver accepting the @ESPYS #ArthurAsheAward #MichelleObama +#ChooseToInclude https://t.co/fva6WvKnnA" +07/08/2017,Sports_celeb,@MichelleWKwan,"Thank you for all the amazing birthday wishes. #grateful #feelingloved + +I'm told I'm aging like… https://t.co/xESjdgqVJ7" +07/07/2017,Sports_celeb,@MichelleWKwan,RT @SpecialOlympics: Wishing a very Happy Birthday today to Global Ambassador & Board of Directors member @MichelleWKwan! We hope you have… +07/07/2017,Sports_celeb,@MichelleWKwan,@TheBoysWhoScore - awww. You guys are so sweet 😘 +07/07/2017,Sports_celeb,@MichelleWKwan,"RT @olyphil: Happy 37th, @MichelleWKwan My valedictories when she made her retirement official & when she withdrew from 06 Oly https://t.co…" +07/07/2017,Sports_celeb,@MichelleWKwan,RT @kwanette: The legendary Jim McKay on the legendary @MichelleWKwan https://t.co/L1AwAd6Esi +06/27/2017,Sports_celeb,@MichelleWKwan,"RT @ChantelMcCabeGC: I had done multiple book reports on @MichelleWKwan ...then today we're like ""who can't land a triple toe-triple toe co…" +06/27/2017,Sports_celeb,@MichelleWKwan,RT @KPMGUS_News: PHOTO DESK: @MichelleWKwan & @TheChristinaKim are all smiles after their round @KPMGWomensPGA #ProAm. Interview: https://t… +06/27/2017,Sports_celeb,@MichelleWKwan,RT @KPMGInspire: Michelle squared selfie 🤳🏼#InspireGreatness #KPMGWomensPGA https://t.co/BrgvBWKWcJ +06/27/2017,Sports_celeb,@MichelleWKwan,What fun it was to play in the Pro-Am kpmgwomenspga #workinprogress @ KPMG Women's PGA Championship https://t.co/Pw2zK7IOQQ +06/26/2017,Sports_celeb,@MichelleWKwan,RT @musical_wheels: Celebrating my amazing friend @MichelleWKwan as she is inducted into the #californiasportshalloffame. I am so proud of… +06/26/2017,Sports_celeb,@MichelleWKwan,RT @LizHabib: Congratulations to @MichelleWKwan 2017 California Sports Hall of Fame Inductee https://t.co/lsmVYJT8iI +06/26/2017,Sports_celeb,@MichelleWKwan,Honored to be inducted into the California Sports Hall of Fame ❤️ https://t.co/siFKmfCxS1 +06/25/2017,Sports_celeb,@MichelleWKwan,"RT @CALSPORTSHOF: 2017 California Sports Hall of Fame Inductees announced: Leigh Steinberg, James Lofton, Michelle Kwan, Byron Scott and Jo…" +06/24/2017,Sports_celeb,@MichelleWKwan,Excited to celebrate #OlympicDay with @LA2024 to help young athletes fall in ❤️with Olympic and Paralympic sports! #FollowTheSun +06/24/2017,Sports_celeb,@MichelleWKwan,.@MrDrewScott - so ready! Just picked up my golf clubs after not playing for 3 years 😝#gotthis +06/18/2017,Sports_celeb,@MichelleWKwan,Appreciative every day for having the best father anybody could wish for! Hope everybody has an… https://t.co/8NpoM9KPsL +06/18/2017,Sports_celeb,@MichelleWKwan,"RT @MichelleObama: Happy #FathersDay @BarackObama. Our daughters may be older and taller now, but they’ll always be your little girls. We l…" +06/16/2017,Sports_celeb,@MichelleWKwan,"RT @PhilipRucker: I just asked VP Pence about hiring a private lawyer and he said: ""It's very routine. Very routine.""" +06/16/2017,Sports_celeb,@MichelleWKwan,RT @edunkel: Girls Just Kwan to have fun #AthleteSongs @midnight @MichelleWKwan https://t.co/tWZGoMaoNv +06/11/2017,Sports_celeb,@MichelleWKwan,.@adrienneelrod @jmpalmieri - so bummed to have missed this! +06/06/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: Set an ⏰! @ApoloOhno & @MichelleWKwan are sharing the differences between @USFigureSkating & @USSpeedskating! + +9:30a https://t…" +06/06/2017,Sports_celeb,@MichelleWKwan,"We are a little excited for pyeongchang2018 @apoloohno teamusa +🇺🇸🇺🇸🇺🇸 @ United States Olympic… https://t.co/5zi54VD4Rz" +06/03/2017,Sports_celeb,@MichelleWKwan,.@MarissaAstor @ChloeGMoretz - good times!!! xoxoxo +05/29/2017,Sports_celeb,@MichelleWKwan,RT @Sport360: 2-time Olympic medalist @MichelleWKwan & Emirati Olympic hopeful Zahra Lari spent some time skating at @ZayedSportsCity. Must… +05/27/2017,Sports_celeb,@MichelleWKwan,So honored to meet His Highness Sheikh Mohammed bin Zayed - a champion of @SpecialOlympics… https://t.co/upZo0vv1s7 +05/21/2017,Sports_celeb,@MichelleWKwan,"RT @smithcollege: .@michellewkwan: The men and women I most admire, one quality they share is a willingness to work & sacrifice for great a…" +05/21/2017,Sports_celeb,@MichelleWKwan,With incredible company receiving an honorary doctorate degree @smithcollege @Oprah 😳 #Classof2017 https://t.co/IcnIo0EQ2l +05/21/2017,Sports_celeb,@MichelleWKwan,RT @Farah_Pandith: Great 2 see fellow @FletcherSchool grad + @StateDept pal on @smithcollege campus! Congrats @MichelleWKwan! Enjoy my alm… +05/20/2017,Sports_celeb,@MichelleWKwan,"RT @ATomorrow: .@KPMG announces third annual Women's Leadership Summit, ft. @CondoleezzaRice, @MichelleWKwan, and many more: https://t.co/x…" +05/19/2017,Sports_celeb,@MichelleWKwan,"RT @girlscouts: For #APAHM we're saluting G.I.R.L.s (Go-getter, Innovator, Risk-taker, Leader)™ we admire, including @MichelleWKwan! https:…" +05/16/2017,Sports_celeb,@MichelleWKwan,RT @LPGA: .@MichelleWKwan is all smiles after the announcement that she'll be an Olympian Panelist @ the KPMG Women's Leadership Summit @KP… +05/16/2017,Sports_celeb,@MichelleWKwan,"RT @KPMGInspire: .@KPMG_US is honored to have @MichelleWKwan, @AngelaRuggiero & @lindseyvonn at the 2017 KPMG Women's Leadership Summit! #I…" +04/23/2017,Sports_celeb,@MichelleWKwan,RT @danielleleah1: Yeah absolutely no fun had on the Hillary campaign (cc: @MichelleWKwan) https://t.co/hkqFz68ryd +03/29/2017,Sports_celeb,@MichelleWKwan,"Nice to talk about sports, empowering women and the @WomensSportsFdn w/ @MorganStanley during #WomensHistoryMonth https://t.co/4RQGuEchoI" +03/21/2017,Sports_celeb,@MichelleWKwan,"RT @M1K1_ANDO: With Queens❄️⛸❄️ +#austria2017 #specialolympics #specialolympics2017 #スペシャルオリンピックス #スペシャルオリンピックス冬季世界大会 https://t.co/ogwjf…" +03/20/2017,Sports_celeb,@MichelleWKwan,Thanks for letting me share my ❤️for @SpecialOlympics @adamslily @KNegandhiESPN @espn #austria2017 https://t.co/86EKXvlAcn +03/20/2017,Sports_celeb,@MichelleWKwan,.@SpecialOlympics having a splash at the World Games!! +03/20/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: Brrr! We were #freezinforareason at yesterday's Unified Polar Plunge, the Schladming Splash, at #austria2017 ➡ https:/…" +03/19/2017,Sports_celeb,@MichelleWKwan,.@M1K1_ANDO you're a champion both on and off the ice. Thanks for being an incredible ambassador for @SpecialOlympics +03/19/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: We see those dance moves @MichelleWKwan @hannahteter @devarona64 Bill Alford, Dr. Dykens, @drewpbaldwin #freezinforare…" +03/18/2017,Sports_celeb,@MichelleWKwan,"RT @mkfanpg: Yesterday on GMA, @Robinroberts said she ran into @MichelleWKwan in Austria & showed this picture ❤️ https://t.co/A3j9btyXgH" +03/18/2017,Sports_celeb,@MichelleWKwan,RT @specialolyUSA: Wow! @michellewkwan wished stopped by for a photo with the figure skaters! #Cheer4USA https://t.co/hGG4pz9q94 +03/18/2017,Sports_celeb,@MichelleWKwan,RT @NwkBoysChorus: #FBF to when the Newark Boys Chorus School performed for @CoryBooker https://t.co/X5O2cRuymJ #chorus #music #choir #Th… +03/18/2017,Sports_celeb,@MichelleWKwan,RT @M1K1_ANDO: Special Olympics 2017!!! 🇦🇹❄️ https://t.co/7z4jLGHriZ +03/18/2017,Sports_celeb,@MichelleWKwan,Cheering on @SpecialOlympics snowshoeing athletes and getting a few tips too! #austria2017 https://t.co/3At556Krkf +03/17/2017,Sports_celeb,@MichelleWKwan,RT @HillaryClinton: Things I learned today. https://t.co/lM2xAjIg3H +03/15/2017,Sports_celeb,@MichelleWKwan,Hundreds of incredible @SpecialOlympics athletes are heading to @2017Austria! Watch them LIVE on @espn &… https://t.co/hy7Wj7stLw +03/11/2017,Sports_celeb,@MichelleWKwan,Thankful for this awesome yogi 🙏🏼 https://t.co/sNqwD2IDuO +03/10/2017,Sports_celeb,@MichelleWKwan,RT @DougWilsonABC: https://t.co/G83r1ij9Sb +03/09/2017,Sports_celeb,@MichelleWKwan,RT @TimmyDavidNYC: Happy #InternationalWomensDay @MichelleWKwan #MichelleKwan https://t.co/h0RvO0Jgcm +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @ForbesLife: Michelle Kwan on her storied skating career, The Simpsons and International Women's Day. https://t.co/Nyck3ylYrG https://t.…" +03/08/2017,Sports_celeb,@MichelleWKwan,@LanceWeldy @bowtiebolden @BrianBoitano. Nice work! HBD Lance! +03/08/2017,Sports_celeb,@MichelleWKwan,RT @neeratanden: If you respected women you wouldn't brag about assaulting them. I'm celebrating IWD by protesting you at the WH at noon ht… +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: We only have time for #inclusion. Founded, led & driven by women. #InternationalWomensDay https://t.co/568VS15uO3" +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: ""..figure skaters fall all the time. It's the way you pick yourself back up and keep going."" -@MichelleWKwan #GetUp +h…" +03/08/2017,Sports_celeb,@MichelleWKwan,RT @MichaelaRP_13: @MichelleWKwan I did you for my wax museum. Although I didn't live up to your standards it was an honor impersonating yo… +03/04/2017,Sports_celeb,@MichelleWKwan,RT @brhodes: No President can order a wiretap. Those restrictions were put in place to protect citizens from people like you. https://t.co/… +03/02/2017,Sports_celeb,@MichelleWKwan,RT @BarackObama: Humbled to be recognized by a family with a legacy of service. Who's your #ProfileInCourage? Tell me about them: https://t… +03/02/2017,Sports_celeb,@MichelleWKwan,RT @MarkHalperin: NBC News: AG Sessions: 'I Will Recuse Myself' If Necessary https://t.co/X9E1DtbLSS +03/02/2017,Sports_celeb,@MichelleWKwan,RT @joshuaradin: Who's coming? Tag someone who you'd like to bring! https://t.co/RfMFxNN3WM +03/01/2017,Sports_celeb,@MichelleWKwan,Hi @MsMason2nd class! Thank you so much for all your Q's. I started skating at 5 yrs old. I practiced a few times a day/ 7 days a week! 💁🏻 +03/01/2017,Sports_celeb,@MichelleWKwan,Language affects attitude. Attitudes impact action. Make your pledge to choose respectful people first language https://t.co/5s8lmdA7Hq +02/28/2017,Sports_celeb,@MichelleWKwan,"RT @JesseLehrich: this would have serious consequences. + +also, that's $2B – doesn't exactly offset a $54B increase in defense spending htt…" +02/28/2017,Sports_celeb,@MichelleWKwan,"Admirals & generals push back on cutting @StateDept funding - it's ""critical to keeping America safe"" @stavridisj https://t.co/dM9ovuatOU" +02/25/2017,Sports_celeb,@MichelleWKwan,@JSB_TV @LauraOkmin @JayOnrait @fs1otoole @rsuter20 -- good times! #PyeongChang2018? Just saying...💁🏻 +02/23/2017,Sports_celeb,@MichelleWKwan,RT @smithcollege: Olympic medalist and world & U.S. champion figure skater @MichelleWKwan will receive a @SmithCollege honorary degree #Com… +02/22/2017,Sports_celeb,@MichelleWKwan,RT @TimmyDavidNYC: When you just finished work on Wednesdays #HumpDay | @MichelleWKwan #MichelleKwan https://t.co/0ktikQrSx7 +02/20/2017,Sports_celeb,@MichelleWKwan,"RT @ChadHGriffin: This Presidents' Day it's worth remembering the traits of our greatest presidents: Empathy, integrity, humility, honesty,…" +02/20/2017,Sports_celeb,@MichelleWKwan,RT @runforsomething: How to get more women to run for office: https://t.co/7MhamJP2ML +02/20/2017,Sports_celeb,@MichelleWKwan,Happy President's Day @GeorgeTakei 😐 +02/19/2017,Sports_celeb,@MichelleWKwan,"RT @MrsNguyenEbadi: Famous person speeches happened today. ""Guest speakers"" incl Sonia Sotomayor, Honest Abe, and @MichelleWKwan #usdlearns…" +02/19/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: 15 years ago, Flowers​ & Bakken made history! Vonetta Flowers was the first black person to win gold in the #WinterGames! +#Bla…" +02/16/2017,Sports_celeb,@MichelleWKwan,Go @ConstanceWu 👏🏻💃🏻🙋🏻 https://t.co/dxGhm6veRG +02/15/2017,Sports_celeb,@MichelleWKwan,@elinatuomiart @Zendaya @nlyonne @UncleRUSH @missmayim @womensmarch 🙋🏿🙋🏽🙋🏼🙋🏻 +02/15/2017,Sports_celeb,@MichelleWKwan,RT @susan_pola: Since #4ContsFigure begins day #TBT to a special moment - 2001 #GoodwillGames - when @MichelleWKwan skated #BrisbaneIce #… +02/15/2017,Sports_celeb,@MichelleWKwan,RT @shijiuru: AG Sessions: Would you argue that your four Asian-American grandchildren are any less American than your other six? https://… +02/14/2017,Sports_celeb,@MichelleWKwan,"RT @MickyWhiteNV: Planned Parenthood Just Got $1 Million From Billionaire Elaine Wynn. THANK YOU. THANK YOU. THANK YOU!!!! +https://t.co/rf3…" +02/14/2017,Sports_celeb,@MichelleWKwan,"Give love, be love & receive love. https://t.co/yFRHOJlOD0" +02/10/2017,Sports_celeb,@MichelleWKwan,"RT @MuhtarKent: Pleasure having Olympic legend @MichelleWKwan join us in celebrating ""one year out"" from the PyeongChang 2018 Olympic Winte…" +02/09/2017,Sports_celeb,@MichelleWKwan,It's one year out from the Winter @olympics in #pyeongchang2018 - who's excited to cheer on… https://t.co/rL9YMh6kdP +02/05/2017,Sports_celeb,@MichelleWKwan,Pre-Super Bowl fun 💥❄️💥 https://t.co/Leej0cvJiS +02/02/2017,Sports_celeb,@MichelleWKwan,Great to stop by la2024 HQ. I would ❤️️ to see the #cityofangels host the 2024 Olympics! 🙆🏻 @… https://t.co/5RdWYQJNQ1 +02/02/2017,Sports_celeb,@MichelleWKwan,"RT @LA2024: Work hard, be yourself & have fun! + +Thanks to Olympic legend @MichelleWKwan for visiting the #LA2024 office & sharing her #Wedn…" +02/01/2017,Sports_celeb,@MichelleWKwan,"We all fall, it’s how we get up that matters. Join us for National #GetUpDay February 1 and share your Get Up story… https://t.co/ZKPlxhzfG3" +02/01/2017,Sports_celeb,@MichelleWKwan,"RT @SkatingLesson: The amazing @michellewkwan in her @mkblades + +#figureskating #iceskating #lesmiserables #lesmis… https://t.co/Pb13xBqYHC" +01/31/2017,Sports_celeb,@MichelleWKwan,"Friends unite - epic 4 hour lunch 🍴#dinnertime +jeffskoll @musical_wheels @AmySmart26… https://t.co/ecAcCgSL7q" +01/31/2017,Sports_celeb,@MichelleWKwan,"RT @allinoleary: ""I was cleaning out my house & I know you love @MichelleWKwan"" I've trained my colleagues so well! #hmmsma #15years https:…" +01/29/2017,Sports_celeb,@MichelleWKwan,RT @HillaryClinton: I stand with the people gathered across the country tonight defending our values & our Constitution. This is not who we… +01/26/2017,Sports_celeb,@MichelleWKwan,RT @hellogiggles: Your fave figure skater from childhood @MichelleWKwan is a gorgeous yogi goddess now https://t.co/Mhnrgv0KXI https://t.co… +06/01/2018,Sports_celeb,@WayneGretzky,"RT @NHL: The one and only, @WayneGretzky, sits down with Jon Hamm in the latest episode of The Great One on One. + +Watch it here ➡️ https://…" +06/01/2018,Sports_celeb,@WayneGretzky,"RT @NHL: ICYMI: @WayneGretzky's new show, ""The Great One on One,"" debuted yesterday. Give it a watch: https://t.co/HY6s24yQAB https://t.co/…" +05/28/2018,Sports_celeb,@WayneGretzky,"RT @NHL: Taking a team photo on the ice after winning the #StanleyCup has become an annual tradition. + +Like many things hockey, it all star…" +04/08/2018,Sports_celeb,@WayneGretzky,Janet and I have struggled all day with the horrific accident in Saskatchewan. We are so sad for the… https://t.co/4pNp8e6ZbB +03/24/2018,Sports_celeb,@WayneGretzky,It's @CTJumpstart night at the @EdmontonOilers game. Join Jumpstart's #PlayFindsAWay movement & help kids of all ab… https://t.co/dvyDSLKU1E +03/01/2018,Sports_celeb,@WayneGretzky,Check out our new #TeamBioSteel spot and see what @BioSteelSports is to me! https://t.co/drV0SJsdVy +02/28/2018,Sports_celeb,@WayneGretzky,"What's @BioSteelSports to me? Stay tuned for the launch of our new #TeamBioSteel ""What's BioSteel To Me?"" spot! https://t.co/ejKxtdiuTc" +02/22/2018,Sports_celeb,@WayneGretzky,We all play for something greater than ourselves... #WeAllPlayForCanada! 🇨🇦@CanadianTire https://t.co/G38YH0v3HV +02/18/2018,Sports_celeb,@WayneGretzky,"Canadians play for WE, not for ME. It’s what makes me proud to be a part of this country. Good luck @TeamCanada #WeAllPlayForCanada" +02/09/2018,Sports_celeb,@WayneGretzky,I’ve been there before. The pressure can be immense. But the entire country is behind @TeamCanada. And so am I.… https://t.co/6omjKajKrj +01/31/2018,Sports_celeb,@WayneGretzky,Can’t wait to see this light up in all its 24 karat gold-plated glory. Check out these @budcanada limited edition W… https://t.co/VIzznnofx0 +01/19/2018,Sports_celeb,@WayneGretzky,"Had a great time alongside Paul Henderson, @Tessab25, @DaleHawerchuk10, @GHeaney91 and more hockey greats.… https://t.co/cvXTnBa9zz" +12/13/2017,Sports_celeb,@WayneGretzky,Ty's 2018 @GretzkySchool dates! https://t.co/ePCOJ2NTpV https://t.co/QJBm33uz4I +12/13/2017,Sports_celeb,@WayneGretzky,Really enjoying these Champion Shave Razors right now. My blades of choice @championshave #championshave #ad https://t.co/PkM20KtMkA +11/24/2017,Sports_celeb,@WayneGretzky,BioSteel is a standard in our home. https://t.co/XWVsCfpAHw #TeamBioSteel https://t.co/HU91dRJnNh +11/20/2017,Sports_celeb,@WayneGretzky,"RT @georgiaexo: A slice of @WayneGretzky toast a day, will hopefully lead to an NHL star one day. Thanks to @CanadianTire and @CTJumpstart…" +11/20/2017,Sports_celeb,@WayneGretzky,"The Great Toaster, it's probably the greatest toaster of all time. Order today and support @CanadianTire's… https://t.co/eSyG1bEozX" +11/16/2017,Sports_celeb,@WayneGretzky,Make breakfast legendary with The Great Toaster. #GiveAToast @CanadianTire https://t.co/KlljsVn6Rg https://t.co/YItKjKuNAS +11/13/2017,Sports_celeb,@WayneGretzky,Lookout for a legendary addition to breakfast coming soon from @CanadianTire in support of @CTJumpstart. #GiveAToast https://t.co/YqymoCZXlu +10/11/2017,Sports_celeb,@WayneGretzky,Great to see the kids having so much fun at Ty's hockey school this past summer! https://t.co/OS3gOUcFVi +10/04/2017,Sports_celeb,@WayneGretzky,Proud to be the Honorary Chair of the University Hosptial’s Brain Centre Campaign. #UHFBrainCentre https://t.co/HzkgGigVap +09/20/2017,Sports_celeb,@WayneGretzky,Really enjoyed celebrating the launch of @CTJumpstart's #PlayFindsAWay. Every kid should have the chance to play! https://t.co/LqKLx6KZ4R +07/01/2017,Sports_celeb,@WayneGretzky,Happy Canada Day! What a remarkable 150 year history our country has built! #Canada150 🇨🇦 +06/28/2017,Sports_celeb,@WayneGretzky,RT @CanadianTire: You’ve never shone brighter. Happy 150th Canada. #RedAndWhite https://t.co/YmoUpRw3Qu +06/09/2017,Sports_celeb,@WayneGretzky,RT @GretzkyWhisky: A wonderful Grand Opening at the Wayne Gretzky Estates Winery and Distillery in Niagara-on-the-Lake. https://t.co/3xdBiD… +06/09/2017,Sports_celeb,@WayneGretzky,Very proud and excited on the grand opening of the Wayne Gretzky Estates Winery and Distillery in Niagara-on-the-La… https://t.co/L4doSKHsNR +06/06/2017,Sports_celeb,@WayneGretzky,Great time at #StanleyCupFinals in Nashville with @bigandrich and @ChrisYoungMusic. Thanks @NHL https://t.co/mrMyPVTdoM +06/06/2017,Sports_celeb,@WayneGretzky,RT @carrieunderwood: And then this happened... #Smashville @OfficialGretzky https://t.co/uNuCsEBMtO +06/01/2017,Sports_celeb,@WayneGretzky,I support @CanadianTire #JumpstartMonth because every kid deserves a chance to play sports. https://t.co/4zvhOyuwnH +05/23/2017,Sports_celeb,@WayneGretzky,Want to spend your summer at one of the family hockey schools? Sign up today! https://t.co/ePCOJ2NTpV… https://t.co/Pvmo8d8TX7 +03/29/2017,Sports_celeb,@WayneGretzky,YOU'RE NOT ALONE! #DrinkThePink @cmcdavid97 @22wiggins @BrookeHenderson @tseguinofficial @denis_shapo… https://t.co/AuAvZ030Z6 +03/14/2017,Sports_celeb,@WayneGretzky,Proudly supporting #JumpstartNight at the @EdmontonOilers game as a @CTJumpstart ambassador because every kid deser… https://t.co/Dlxc2jxoVX +01/28/2017,Sports_celeb,@WayneGretzky,"RT @NHL: ""The three of us would have been pretty good at 3-on-3"". -@OfficialGretzky https://t.co/6hSQJouOPg" +12/14/2016,Sports_celeb,@WayneGretzky,"RT @EdmontonOilers: RIP to one of the great ones, Alan Thicke. https://t.co/LvlU13s23h" +12/14/2016,Sports_celeb,@WayneGretzky,"Janet & I are deeply saddened to hear of Alan's passing. He was a wonderful man,father,husband and friend.He will be missed by all. RIP Alan" +11/28/2016,Sports_celeb,@WayneGretzky,"RT @PlayersTribune: When did Wayne Gretzky know he'd make it to the NHL? + +It began at the @HC_WJC. #TPTStudioB https://t.co/tCkvZf4gfr" +11/18/2016,Sports_celeb,@WayneGretzky,"I got to present this custom-wrapped #HondaRidgeline for +@Honda. It’s going to the MVP of the #NHLAllStarGame. https://t.co/iUMUcqwpSK" +10/17/2016,Sports_celeb,@WayneGretzky,"Excited to announce the launch of my new book, 99: Stories of the Game! #99storiesofthegame #nhl https://t.co/HTUfkjgaZE" +10/13/2016,Sports_celeb,@WayneGretzky,"RT @EdmontonOilers: ""I'm proud to be back as an Oiler & hope to be part of another Stanley Cup."" Wayne Gretzky on joining #Oilers Entertain…" +10/12/2016,Sports_celeb,@WayneGretzky,Great to officially open my new Wine & Whisky Bar today at Edmonton Airport! https://t.co/yZDAtVQCSr +09/28/2016,Sports_celeb,@WayneGretzky,Thrilled to announce the NHL Centennial here in Toronto! #NHL100 https://t.co/5LeUpmxTu3 +09/27/2016,Sports_celeb,@WayneGretzky,Toronto! I have #WCH2016 tickets I want to personally hand to you. Follow @CanadianTire & #WheresWayne for details. https://t.co/afuEEAc4pe +09/26/2016,Sports_celeb,@WayneGretzky,Found this... Arnie was a special man https://t.co/97LDHR6MfJ +09/26/2016,Sports_celeb,@WayneGretzky,"We lost a great man yesterday. Remembering my friend and one of sports greatest ambassadors. Rest easy, Mr. Palmer. https://t.co/cKV9ABHAiQ" +09/23/2016,Sports_celeb,@WayneGretzky,Toronto! Follow @CanadianTire & #WheresWayne for the chance to meet me Sept 27 and celebrate the #WCH2016 finals! https://t.co/ebmsxaK6nb +08/12/2016,Sports_celeb,@WayneGretzky,RT @CBCOlympics: Sixteen year old @OleksiakPenny is our #StepUpStandTall moment of the day. https://t.co/SnxQaYiZyC @canadiantire https://t… +08/08/2016,Sports_celeb,@WayneGretzky,RT @CBCOlympics: Referees give Navia a 2nd chance in our #StepUpStandTall moment of the day. @CanadianTire https://t.co/PEYMIQovar https://… +08/08/2016,Sports_celeb,@WayneGretzky,RT the #StepUpStandTall Moment of the Day on @CBCOlympics and @CanadianTire will donate $1 to future Olympic stars! https://t.co/g4flTf5V71 +07/01/2016,Sports_celeb,@WayneGretzky,Happy #CanadaDay !! 🇨🇦 +07/01/2016,Sports_celeb,@WayneGretzky,Had a great time in Sydney. Thanks to the @SydneySwans for a crash course in Ausie Rules Football! #ilovesydney https://t.co/hSEmYMu7eW +06/24/2016,Sports_celeb,@WayneGretzky,"Sydney, will I see you at the Ice Hockey Classic on June 25? +For tickets, click here: https://t.co/y8TxSjqfWs https://t.co/F4iG97Ua65" +06/22/2016,Sports_celeb,@WayneGretzky,"Looking forward to visiting Sydney to host the Ice Hockey Classic on June 25! #ilovesydney +https://t.co/y8TxSjHQO0 https://t.co/AMk0l01ANx" +06/21/2016,Sports_celeb,@WayneGretzky,Excited to visit Sydney to host the Ice Hockey Classic USA v Canada on June 25! #ilovesydney https://t.co/y8TxSjHQO0 https://t.co/lRyS0Uk3oO +06/17/2016,Sports_celeb,@WayneGretzky,"To my first teammate, my first coach and a true great one- Happy Father's Day, Dad. +https://t.co/fc9Hs5bMdw" +06/10/2016,Sports_celeb,@WayneGretzky,"RT @TIME: Wayne Gretzky remembers Gordie Howe: ""He was the nicest man I've ever met"" https://t.co/49H03RYIWw" +06/10/2016,Sports_celeb,@WayneGretzky,Sending our thoughts and prayers to the Howe family and to the millions of hockey fans who like me loved Gordie Howe. RIP Mr. Hockey. (2/2) +06/10/2016,Sports_celeb,@WayneGretzky,"Unfortunately we lost the greatest hockey player ever today, but more importantly the nicest man I have ever met. (1/2)" +06/06/2016,Sports_celeb,@WayneGretzky,This Father's Day it's all about our great dads! Here's to the #greatones https://t.co/fc9Hs4UaOW +06/06/2016,Sports_celeb,@WayneGretzky,RT @PutnamBooks: Watching the #StanleyCupFinal? Preorder 99: STORIES OF THE GAME & look inside @OfficialGretzky's playoff experience: https… +06/05/2016,Sports_celeb,@WayneGretzky,The Greatest.... RIP https://t.co/Ya1pgTpDIe +04/07/2016,Sports_celeb,@WayneGretzky,"RT @ForTheWin: Exclusive: See the jacket for Wayne Gretzky's upcoming biography, '99: Stories of the Game' https://t.co/JUPy1r1b6s" +04/07/2016,Sports_celeb,@WayneGretzky,"RT @Globe_Sports: In October, Gretzky on hockey's greatest moments, #99Stories of the Game: cover & interview https://t.co/7D1W1CaJ5v https…" +03/29/2016,Sports_celeb,@WayneGretzky,Good Luck to @HC_Women and @wick_22 at the Women's World Hockey Championship in Kamloops. #HockeyIsHockey #WomensWorlds +03/26/2016,Sports_celeb,@WayneGretzky,Great night with @justinbieber in Vegas. Glad you liked the jersey! #thepurposetour #gretzkyfantasycamp2016 https://t.co/gQhGFgnTpb +02/26/2016,Sports_celeb,@WayneGretzky,I was the first Canadian to add my name to Canada's Goal Light. You can add your name at Budweiser.ca #lightthelamp https://t.co/4xYioCkfvX +02/25/2016,Sports_celeb,@WayneGretzky,See you tomorrow Canada's Goal Light and @OfficialWPHC. You can #lightthelamp too at Budweiser.ca https://t.co/wvoG0o019h +01/20/2016,Sports_celeb,@WayneGretzky,"Sat down w/@buck & shared my story on @undeniableshow. See it tonight @8pm +on @audiencenetwork https://t.co/CvjzOo8WOc" +12/07/2015,Sports_celeb,@WayneGretzky,"Thank you Hometown Hockey for coming to Brantford. To see our entire visit, please visit https://t.co/EWn1QOniLJ https://t.co/cy9p5Dg5gO" +12/03/2015,Sports_celeb,@WayneGretzky,"This is my office, behind the net. From here, I've always seen hockey's beauty #WeAllPlay @CanadianTire https://t.co/p3XqBGkE10" +11/20/2015,Sports_celeb,@WayneGretzky,"It’s not just me…@SethRogen doesn’t know any athletes! Enjoy #TheNightBefore, in theaters today. https://t.co/uMp96UdSgh" +11/17/2015,Sports_celeb,@WayneGretzky,And @Sethrogen calls himself a Canadian? #TheNightBefore https://t.co/EHp9mbL9H4 +09/25/2015,Sports_celeb,@WayneGretzky,RT @EdmontonOilers: Happy birthday to #Oilers icon Joey Moss! 🎂 http://t.co/81BIyCxovV +09/23/2015,Sports_celeb,@WayneGretzky,Not to worry @SpursOfficial It happens all the time! +09/19/2015,Sports_celeb,@WayneGretzky,I love surprising fans! @CanadianTire and I are teaming up to get Canadians active. #WannaPlay? https://t.co/mFvtCU3b7t +07/28/2015,Sports_celeb,@WayneGretzky,"@Canuckgirl462 in Las Vegas March 20-26, 2016" +07/28/2015,Sports_celeb,@WayneGretzky,Ever dreamed of being passed to by 99? Only a few spots remain for Gretzky Fantasy Camp 2016. https://t.co/mgn565kMIu +07/01/2015,Sports_celeb,@WayneGretzky,It’s an honor to be a Canadian. Happy Canada Day! https://t.co/4XGGuGHRV6 +07/01/2015,Sports_celeb,@WayneGretzky,"Thank you, @GretzkyFacts ! Happy Canada Day! https://t.co/a5rtsv4ry7" +04/07/2015,Sports_celeb,@WayneGretzky,"RT @TheJetGuy: On the way to Augusta with a great crew and The Great One @OfficialGretzky +#Masters http://t.co/AgUGvsU8wp" +03/25/2015,Sports_celeb,@WayneGretzky,"Gretzky Fantasy Camper Shaun Ayotte recaps his week in Vegas. Check it out! +http://t.co/UA6YZZxzEI" +03/23/2015,Sports_celeb,@WayneGretzky,#GretzkyCamp signed puck winners: @miniamy411 @chcarlson23 @Matt_Mack9 @edrisch @ovie08 @PfefferFeff @cjohnsonss. Check DMs to claim a puck. +03/23/2015,Sports_celeb,@WayneGretzky,RT this tweet for a chance to win a signed puck from #GretzkyCamp. Winners announced later today. Any takers? http://t.co/9vBBFa18y7 +03/19/2015,Sports_celeb,@WayneGretzky,"Wayne Gretzky Fantasy Camp alum, Brian Ehrenworth of Frameworth showcasing all 13 Fantasy Camp jerseys! http://t.co/nljn9LYZFh" +03/13/2015,Sports_celeb,@WayneGretzky,Another #GretzkyCamp done. Thank you to those who came and those worked to make it happen! Let's do it again soon. http://t.co/O8H6R5CvXF +03/13/2015,Sports_celeb,@WayneGretzky,"I sat down with @EJHradek_NHL to talk about #GretzkyCamp and my idol, Gordie Howe. http://t.co/uTOW2libCt" +03/12/2015,Sports_celeb,@WayneGretzky,RT @EdmontonOilers: @OfficialGretzky That coaching staff! 🙌 +03/12/2015,Sports_celeb,@WayneGretzky,The 2015 #GretzkyCamp champions! 🏆 http://t.co/H1JJefSSGg +03/12/2015,Sports_celeb,@WayneGretzky,RT @NHLNetwork: In the company of hockey greats today. More to come on NHL Live from #GretzkyCamp. http://t.co/UfjiXbzXCc +03/12/2015,Sports_celeb,@WayneGretzky,"Make sure you get my good side, @NHLNetwork! #GretzkyCamp http://t.co/kwg68I7ebo" +03/12/2015,Sports_celeb,@WayneGretzky,RT @NHLNetwork: Just getting @OfficialGretzky mic'ed up to talk #GretzkyCamp. Videos to come so enjoy these photos until then. http://t.co/… +03/11/2015,Sports_celeb,@WayneGretzky,Drop the puck! #GretzkyCamp http://t.co/JyMlfOAGD5 +03/11/2015,Sports_celeb,@WayneGretzky,"Hey, can I join this group photo? #GretzkyCamp http://t.co/p2iFg5HAdF" +03/11/2015,Sports_celeb,@WayneGretzky,"@stillvhfan Hope to see you at a future Camp, Corey. You can find details here: https://t.co/RSWDlt70lr" +03/11/2015,Sports_celeb,@WayneGretzky,"@Meowmixery Thanks Katja, glad you're such a fan!" +03/11/2015,Sports_celeb,@WayneGretzky,RT @NHL: #GretzkyCamp member Mark Rubin tells us what it's like to play with @OfficialGretzky & McSorley on ice next to him. http://t.co/1L… +03/10/2015,Sports_celeb,@WayneGretzky,Great practice with the camp attendees. Looking forward to playing with this group in tomorrow's games. #GretzkyCamp http://t.co/J0lOXM7E5O +03/10/2015,Sports_celeb,@WayneGretzky,In Las Vegas for the 2015 #GretzkyCamp this week. Ready to get back on the ice! http://t.co/jqCY15ehut +01/13/2015,Sports_celeb,@WayneGretzky,"Are you attending the 2015 Wayne Gretzky Fantasy Camp? If so, a special delivery is coming your way! http://t.co/g9IZZVPCWh" +12/01/2014,Sports_celeb,@WayneGretzky,"RT @TD_Canada: If you had 24 hours to #MakeTodayMatter, what would you do? What these people did is truly inspiring: http://t.co/OWJUwgdsym" +11/10/2014,Sports_celeb,@WayneGretzky,So proud of my son Ty who just opened up registration to his Gretzky Hockey School. Learn more http://t.co/JmxCWghC1Y http://t.co/lDNdqTLib8 +08/21/2014,Sports_celeb,@WayneGretzky,RT @NHL: .@OfficialGretzky hopes that 1984 crew can 'rub off' on current @EdmontonOilers group. Read: http://t.co/LLIQAVGKU0 http://t.co/Mp… +07/22/2014,Sports_celeb,@WayneGretzky,Team Gretzky is happy to announce registration for Fantasy Camp XIII is now open. Click here to register today: https://t.co/WzndN2R1GY +07/10/2014,Sports_celeb,@WayneGretzky,Still a few spots left for the Gretzky Hockey School July 27th - August 1st. Register at http://t.co/WDoJ1riuJK +06/19/2014,Sports_celeb,@WayneGretzky,"RT @GretzkySchool: Tune in to @NHLNetwork today at 5:30 pm EST, Ty and Wayne will be on to talk Gretzky Hockey School!!! http://t.co/nNrkM7…" +05/30/2014,Sports_celeb,@WayneGretzky,RT @GretzkySchool: Join us and have your kid learn from Mark Ciaccio at our school this summer. Register now at http://t.co/6C50BWVbR9 http… +05/22/2014,Sports_celeb,@WayneGretzky,Proud of my son Ty who launched the Gretzky Hockey School. Learn more: http://t.co/WDoJ1riuJK http://t.co/oy3IfFVqNq +05/20/2014,Sports_celeb,@WayneGretzky,"Space is very limited so don't miss out on this amazing experience! + +Register now at: +http://t.co/WDoJ1riuJK" +05/20/2014,Sports_celeb,@WayneGretzky,Welcome to the Gretzky Hockey School! We're excited to announce registration opens today! http://t.co/5eylWLqoem +03/12/2014,Sports_celeb,@WayneGretzky,RT @NHL: ICYMI - @OfficialGretzky answered some fan Q&A on our Vine earlier today from #GretzkyCamp. Highlights: http://t.co/Beg4TZDzrB +03/12/2014,Sports_celeb,@WayneGretzky,RT @NHL: Bobby Hull got to complete the one thing left to do on his hockey bucket list. Watch to see what it was: http://t.co/7VnHd8RFMn #G… +03/12/2014,Sports_celeb,@WayneGretzky,Now I get to watch my good friend @Cujo on @NHLNetwork. #GretzkyCamp http://t.co/Kv6NVVOjT4 +03/12/2014,Sports_celeb,@WayneGretzky,Thanks for your #GretzkyCamp questions everyone. I enjoyed answering them in 6 seconds on @nhl Vine. +03/12/2014,Sports_celeb,@WayneGretzky,"RT @NHL: Yesterday we tweeted asking what you would ask @OfficialGretzky if you had a chance to do so. Today, he has answers. http://t.co/G…" +03/12/2014,Sports_celeb,@WayneGretzky,Spending some time with @EJHradek_NHL and @NHLNetwork this morning. #GretzkyCamp http://t.co/FObM98z2NJ +03/11/2014,Sports_celeb,@WayneGretzky,First assist at #GretzkyCamp. Great group of guys this year. Looking forward to more games with everyone this week. http://t.co/xJeFXsbjCf +03/11/2014,Sports_celeb,@WayneGretzky,"RT @NHL: If you were a fantasy camper skating with @OfficialGretzky this week, what would you ask him? Tweet your question using #GretzkyCa…" +03/11/2014,Sports_celeb,@WayneGretzky,"RT @NHL: Sharpen those skates, put the 99 decals on helmets, @OfficialGretzky Camp is underway this week. https://t.co/6IFm5Mai9g #GretzkyC…" +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: RT @ejhradek_nhl: Another tough assignment. Headed out to Las Vegas 4 the #GretzkyCamp. Can't wait to get back into some nice weat… +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: SNEAK PEEK LOOK: One camper will be vlogging his #GretzkyCamp experience throughout the week with @NHLNetwork. http://t.co/4KsA9zY… +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: Getting scouted by Walter Gretzky (@OfficialGretzky's dad) is not a bad way to start off #GretzkyCamp. https://t.co/nsOt25D67X +03/05/2014,Sports_celeb,@WayneGretzky,Good Luck @adurkin7 and his Xaverian HS teammates tonight in the Massachusetts State Championship! +02/14/2014,Sports_celeb,@WayneGretzky,Getting ready for Fantasy Camp! Great day with @KidRock http://t.co/4oOv0QGswV +07/16/2013,Sports_celeb,@WayneGretzky,Register for Wayne Gretzky's Fantasy Camp by clicking here: http://t.co/i5lecoUImc +07/16/2013,Sports_celeb,@WayneGretzky,"Registration for the Wayne Gretzky Fantasy Camp XII is officially open! Camp will be taking place March 9-14, 2014 in Las Vegas." +03/05/2013,Sports_celeb,@WayneGretzky,@OfficialGretzky is excited to partner with @FrameworthSport for an upcoming Private Signing & Exclusive Evening! http://t.co/K2JqdH2uza +02/25/2013,Sports_celeb,@WayneGretzky,Great morning with the Greater New York City Ice Hockey League and @TDBank_US http://t.co/PpH3m7U0qD +02/25/2013,Sports_celeb,@WayneGretzky,RT @TDBank_US: Our good friend Wayne Gretzky is spending the morning playing hockey with kids who lost their equipment due to #Sandy htt ... +02/06/2013,Sports_celeb,@WayneGretzky,"RT @DJohnsonPGA: RT “@TaylorMadeGolf: Take it from @DJohnsonPGA and The Great One, who are teaming up this week @attproam. #onebucket ht ..." +01/28/2013,Sports_celeb,@WayneGretzky,Hey @Panger40 We are missing you at Fantasy Camp. This year we pay tribute to @StLouisBlues http://t.co/Y7Dlizys +01/27/2013,Sports_celeb,@WayneGretzky,Today is Wayne Gretzky's birthday. Tomorrow is the start of Fantasy Camp XI. Let's drop the puck! http://t.co/cqFwA0pi +01/22/2013,Sports_celeb,@WayneGretzky,"Mike Keenan has a brand new documentary coming out. Check out the doc on Fantasy Camp coach Iron Mike! +http://t.co/lX2MW2ui" +01/20/2013,Sports_celeb,@WayneGretzky,"Check out the new promo video for Wayne Gretzky's Fantasy Camp in Las Vegas +http://t.co/kevxiR7d" +01/18/2013,Sports_celeb,@WayneGretzky,Marty McSorley is coming back to Fantasy Camp XI. Come hang with Marty and friends in Vegas on http://t.co/dbc1K6XZ http://t.co/uB6HPFAr +01/17/2013,Sports_celeb,@WayneGretzky,Fantasy Camp goalie Don Ducasse returns to battle for the Gretzky Cup. Tune in at http://t.co/TQKhXPc2 http://t.co/8NzBdBp4 +01/15/2013,Sports_celeb,@WayneGretzky,Brett Hull is coming to Fantasy Camp XI. To find out who else is joining Wayne in Vegas visit http://t.co/dbc1K6XZ http://t.co/KKc0aYQI +01/14/2013,Sports_celeb,@WayneGretzky,Fantasy Camp XI is coming. Stay tuned for exciting announcements and all the news from Las Vegas. http://t.co/x41U6oZp +11/13/2012,Sports_celeb,@WayneGretzky,I’m ready to play #Kinect with a few lucky fans on 11/16 at the new @MicrosoftStore location in #Toronto! +10/17/2012,Sports_celeb,@WayneGretzky,I’m playing #Kinect with a few lucky fans at the new @MicrosoftStore opening in #Toronto on 11/16! See you there! +08/28/2012,Sports_celeb,@WayneGretzky,Celebrate the silver anniversary of when Canada won GOLD at 1987 Canada Cup at Wayne Gretzkys Toronto Weds August 29th from 2 p.m. - 7 p.m. +08/18/2012,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Calling all hockey fans! Relive the magic of the '87 & '91 Canada Cup August 29th 2-7pm at Wayne Gretzkys Toronto - ... +07/06/2012,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: Click here for a chance to bid on a foursome in the SOLD OUT Walter Gretzky CNIB Golf Classic (July 10th, 2012) - http:/ ..." +06/01/2012,Sports_celeb,@WayneGretzky,Want to watch game four of the Stanley Cup Finals at a private party with Wayne Gretzky in LA? Click here: http://t.co/mFZLsOFg +05/17/2012,Sports_celeb,@WayneGretzky,To get yours text DGWayne to 95323 (US only) or visit http://t.co/mUjMiGxf @digigraphme http://t.co/E0EoWp1A +05/17/2012,Sports_celeb,@WayneGretzky,99 is excited to announce his partnership with Digigraph.Me. http://t.co/x5mtcAX5 +05/05/2012,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Working alongside The Great One @OfficialGretzky at @WayneGretzkysTO #Toronto - http://t.co/3LJbFeu5 +04/14/2012,Sports_celeb,@WayneGretzky,"@stephgloria talks with Walter at the launch of Walter Gretzky Elementary School in Brantford, ON. http://t.co/qsVKj5eT" +04/12/2012,Sports_celeb,@WayneGretzky,@OrlaLawrie hosted @TSN1050Radio and @strombo at Wayne Gretzky's before the @BlueJays home opener. Check out the photos on facebook +04/12/2012,Sports_celeb,@WayneGretzky,TSN Radio live from Wayne Gretzky's photos up online now! http://t.co/lvxIgrM5 +04/05/2012,Sports_celeb,@WayneGretzky,"Join TSN 1050's Cybulski & Company LIVE from Wayne Gretzky's Restaurant Monday April 9, 2012 from 4p.m - 7 p.m! http://t.co/oLMiYnnK" +03/21/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky to host the 5th and final episode of Tennis Channel's 100 Greatest of All-Time March 23rd @ 7pm EST on Tennis Channel. +03/01/2012,Sports_celeb,@WayneGretzky,"RT @hnicradio: The great one @OfficialGretzky joined @GordStellick & @kellyhrudey on @hnicradio Sirius 157 for hockey talk & laughs +http ..." +02/29/2012,Sports_celeb,@WayneGretzky,RT @hockeynight: Wayne Gretzky joins Gord Stellick & Kelly Hrudey at 3:15 pm ET on HNIC Radio on Sirius 157 http://t.co/rLynRsNA #CBCSpo ... +02/25/2012,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: March 7th @AJSportsWorld will pick one lucky follower to win a personalized @28CGiroux 8x10 photo! Follow & RT @AJS ... +02/24/2012,Sports_celeb,@WayneGretzky,"RT @NHL_Oilers: 30 years ago today, #Oilers Wayne Gretzky scored his record-breaking 77th goal of the season and we've got the video > ..." +02/13/2012,Sports_celeb,@WayneGretzky,All the videos and pictures of Fantasy Camp X available on Gretzky's official facebook page http://t.co/Y7DpQ9zm +02/12/2012,Sports_celeb,@WayneGretzky,RT @NHL: Derek Mori has been attending Gretzky's Fantasy Camp since '06 & is back for a 7th straight year. Check out his blog: http://t. ... +02/11/2012,Sports_celeb,@WayneGretzky,Fantasy Camp X begins live streaming today at 1pmPST. Watch Wayne play against his son Ty at http://t.co/ZwKyPL8E +02/11/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky and Brett Hull wearing a @NHLBlackhawks jersey. More available on http://t.co/XT3UCcpm http://t.co/pgCVWm9h +02/10/2012,Sports_celeb,@WayneGretzky,"Wayne Gretzky, Rick Tocchet and Brett and Bobby Hull mingle with Fantasy Campers at the Bellagio in Las Vegas http://t.co/SP4vUY6H" +02/10/2012,Sports_celeb,@WayneGretzky,Live streaming Gretzky Fantasy Camp X at 3pmPST only at http://t.co/ZwKyPL8E http://t.co/6RDzMllA +02/10/2012,Sports_celeb,@WayneGretzky,RT @NHL: Gretzky likes what he sees in his former franchises. http://t.co/aRZU0Jys #Oilers #NYR #STLBlues #LAKings +02/09/2012,Sports_celeb,@WayneGretzky,Thanks as always to @Panger40 for all the retweets. We are missing you out here at Fantasy Camp X. Hope you're lovin' the Hawks unis +02/09/2012,Sports_celeb,@WayneGretzky,Use #gretzkycamp to drop comments during the broadcast and we'll read them on air +02/09/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky takes the ice at 12pmPST. Watch live at http://t.co/ZwKyPL8E +02/09/2012,Sports_celeb,@WayneGretzky,Fantasy Camp X teams have been posted! See where your favorite pros are playing. Visit http://t.co/XT3UCcpm for updates http://t.co/fCSYulsf +02/09/2012,Sports_celeb,@WayneGretzky,Live streaming of the Fantasy Camp X rosters at http://t.co/XT3UCcpm at 7pmPST 10pmEST +02/08/2012,Sports_celeb,@WayneGretzky,@31_cujo and @Jeremy_Roenick will be featured at Fantasy Camp X so visit http://t.co/XT3UCcpm for updates and interviews +02/06/2012,Sports_celeb,@WayneGretzky,Curtis Joseph and Jeremy Roenick will be at Fantasy Camp X in Vegas. Will you? Follow along at http://t.co/XT3UCcpm +02/03/2012,Sports_celeb,@WayneGretzky,@OrlaLawrie speaks with @Proteautype about his new book 'Fighting The Good Fight' only on http://t.co/XT3UCcpm +02/02/2012,Sports_celeb,@WayneGretzky,"Denis Savard and Rick Tocchet will join Marty McSorley, Brett Hull and Wayne Gretzky in Vegas. Who's next? Stay tuned http://t.co/XT3UCcpm" +01/23/2012,Sports_celeb,@WayneGretzky,Marty McSorley joins Wayne and Brett Hull on the Fantasy Camp X all-star team. Who would you like to see there? http://t.co/XT3UCcpm +01/13/2012,Sports_celeb,@WayneGretzky,Brett Hull going to Fantasy Camp X! Your last chance to sign up to skate with Wayne. Visit http://t.co/lX4MFlXW +12/20/2011,Sports_celeb,@WayneGretzky,@HumbleFredRadio and @OrlaLawrie will be live at Gretzky's December 21 from 6-8pm. Drop by or watch on http://t.co/CF6J4jAd. See you there. +12/20/2011,Sports_celeb,@WayneGretzky,RT @HumbleFredRadio: RT @HumHow: @sharcar19 There is a Z in Gretsky's and there will be a Humble and Fred in there as well on the 21st f ... +11/22/2011,Sports_celeb,@WayneGretzky,"@OrlaLawrie is talking with some hockey legends and writing up their interviews on http://t.co/SNITCJFi, please check it out!" +08/22/2011,Sports_celeb,@WayneGretzky,RT @AJSportsWorld: #ICanHonestlySay we love doing giveaways!...Only 1 week till we give away personalized @pksubban1 8x10 photo 2 one fo ... +08/18/2011,Sports_celeb,@WayneGretzky,WG Authentic and Pro Am Sports present a Wayne Gretzky private signing. Visit Gretzky.com for more details. +08/02/2011,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: #thereisalwaysthat1person that likes giving stuff away! Follow @ajsportsworld who's giving away a @joeybats19 autog ... +07/08/2011,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: also...check out my one on one interview with former Winnipeg Jets Goalie Joe Daley!! http://t.co/TNgCsSx #NHL #win ... +07/04/2011,Sports_celeb,@WayneGretzky,"There is still time to sign up for the 19th Annual Walter Gretzky CNIB Celbrity Golf Classic in Brantford, ON. http://t.co/al4xyED" +06/20/2011,Sports_celeb,@WayneGretzky,"Workout? Play golf? Just like to look good? Stay tuned 99 fans, exciting new apparel coming soon to gretzky.com!" +06/16/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: #Hurricanes (@nhl_canes) Jay Harrison coming up on the PP Show LIVE from #Gretzkys!! +06/16/2011,Sports_celeb,@WayneGretzky,"RT @LAKings: Today in #LAKings history, 1994: Wayne Gretzky won his TENTH Art Ross Trophy for leading the league in scoring http://ow.ly ..." +06/15/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: Brian Leetch, Bill Clement, Michael Buble and more coming up on today’s PP show LIVE from #Gretzkys (4-6pm) on @XMHomeIc ..." +06/13/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Senior VP/Director of Hockey Operations for the #Leafs and former #Canucks GM Dave Nonis will be at #Gretzkys tomorrow a ... +06/13/2011,Sports_celeb,@WayneGretzky,RT @NHLAlumni: (1979) Wayne Gretzky was claimed as a priority selection by the Oilers at the NHL Expansion Draft in MTL. #luccckkkyyyy # ... +06/13/2011,Sports_celeb,@WayneGretzky,http://t.co/15Kqf6l Groin injuries are among the most common injuries seen in hockey. 3D Lunge Stretch videos from HockeyOT.com can help +06/11/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: On todays LFWG radio show (4-6PM) TSN's Rod Black alongside Jeff Rimer.Guests include Kerry Fraser,Ed Olczyk,Pat Quinn,K ..." +06/07/2011,Sports_celeb,@WayneGretzky,RT @Panger40: Congrats to Trevor Gretzky- drafted by Chicago Cubs ! +06/07/2011,Sports_celeb,@WayneGretzky,Here is a great dryland training tip to improve your lateral agility provided by our friends @hockeyot http://www.facebook.com/gretzkydotcom +06/04/2011,Sports_celeb,@WayneGretzky,"RT @JoshRimerHockey: Great show 2day! On LFWG Hosts Rod Black & Rick Tocchet speak w/ Wayne Gretzky, @David_Boreanaz, Mark Chipman, @MCa ..." +06/04/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Now on the LFWG radio show Wayne Gretzky! Coming up #Canadiens Mike Cammalleri (@MCammalleri13) LIVE at #Gretzkys..... +06/04/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Stop by the Live from Wayne #Gretzkys radio show this Saturday between 4-6pm to meet former NHL'er Rick Tocchet! +06/03/2011,Sports_celeb,@WayneGretzky,"Visit http://www.facebook.com/gretzkydotcom and learn about Dr. Chad Moreau from HockeyOT.com or try +http://hockeyot.go2cloud.org/SHT" +06/01/2011,Sports_celeb,@WayneGretzky,"If you want to reach 100% of your potential, you need to train with HockeyOT.com. For more info visit http://hockeyot.go2cloud.org/SHR" +06/01/2011,Sports_celeb,@WayneGretzky,"Gretzky Digital is proud to partner with HockeyOT, the most comprehensive, personalized dry-land training program on the web." +05/28/2011,Sports_celeb,@WayneGretzky,RT @Badamsfan: @OfficialGretzky School in Wayne's hometown to be named for his father. http://brantfordexpositor.ca/ArticleDisplay.aspx ... +05/26/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: On today's PPS LIVE from #Gretzkys Scott Laughlin alongside @sportsnetbroph.Guests include #Islanders Kyle Okposo, Doug ..." +05/12/2011,Sports_celeb,@WayneGretzky,Great Ones Of Classical Music: Marvin Hamlisch interviews Placido Domingo live on Facebook. Friday 2pmET. http://on.fb.me/jW4pp1 +05/07/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Stop by the Live From#Gretzkys Radio Show before 6 today for your chance to win an autographed John Tavares World Junior ... +06/27/2018,Sports_celeb,@MartinBrodeur,Thank you everyone for the kind words! Honored to be joining the @HockeyHallFame! https://t.co/Uhium2dvxo +05/29/2018,Sports_celeb,@MartinBrodeur,RT @UOttawaMHockey: Best of luck to Gee-Gees goaltender Anthony Brodeur (@abrodeur30) and the @geegees_mgolf team as they open the 2018 Can… +05/02/2018,Sports_celeb,@MartinBrodeur,RT @SBurkie1: Great group to golf with on a day off in Riga Latvia @HC_Men @SAMMYSAYS2010 @MartinBrodeur @BobMartin6201 https://t.co/ASyu64… +04/07/2018,Sports_celeb,@MartinBrodeur,RT @SAMMYSAYS2010: Anyone who who has played or has a child that has chased their dreams while riding a bus in Jr Hockey shares in the deva… +03/15/2018,Sports_celeb,@MartinBrodeur,Happy 16th Birthday @AnabelleBrodeur! Love you! https://t.co/ahITPj5zc7 +02/27/2018,Sports_celeb,@MartinBrodeur,"RT @sjbarracuda: The #SJBarracuda have signed Goaltender @JBrodeur30 to a PTO from the @AllenAmericans. + +🗞: https://t.co/8PHwC3cz4Y https:/…" +02/25/2018,Sports_celeb,@MartinBrodeur,Congrats to my longtime teammate and friend @pelias on his jersey retirement night! Happy that 26 and 30 will alway… https://t.co/uPwjitKZ0m +02/24/2018,Sports_celeb,@MartinBrodeur,RT @HockeyCanada: Congratulations @HC_Men! Bring that bronze home.🥉#BelieveWeCAN https://t.co/3Hp088mWWE +02/01/2018,Sports_celeb,@MartinBrodeur,RT @AnabelleBrodeur: #oksroyals https://t.co/Rrkk2MlEEv +01/31/2018,Sports_celeb,@MartinBrodeur,#BellLetsTalk +11/02/2017,Sports_celeb,@MartinBrodeur,RT @AllenAmericans: BRODEUR SAYS NO x3! https://t.co/1GvaXogl6q +09/29/2017,Sports_celeb,@MartinBrodeur,"RT @Oshawa_Generals: Gens Fans! We have @JBrodeur30's 80th season game worn goalie pads up for auction! 🥅 + +Link below to place your bid ⬇ +h…" +06/01/2017,Sports_celeb,@MartinBrodeur,RT @Panger40: @MiuraGolfInc Holy Jumpin! This driver looks perfect! @Series1957 @MartinBrodeur @ScottieUpshall https://t.co/J9Ljg1HxLV +05/22/2017,Sports_celeb,@MartinBrodeur,"All the best to Ariel Gold @itsarielgold, your mother will always be with you in your heart. +https://t.co/UZh632F1Ln https://t.co/S4xG38kKFW" +05/09/2017,Sports_celeb,@MartinBrodeur,"RT @MiuraGolfInc: PP-9005 Genesis, 3 piece construction, soft carbon head, carpenter steel face, spin forged hosel. #DiscoverPerfection #Mi…" +04/28/2017,Sports_celeb,@MartinBrodeur,"RT @ToledoWalleye: We've added G Jeremy Brodeur, son of legendary goalie Martin Brodeur, on an ATO. He will backup Lerg this weekend: https…" +04/17/2017,Sports_celeb,@MartinBrodeur,Proud of you !!! https://t.co/eo1WBZiFGb +03/31/2017,Sports_celeb,@MartinBrodeur,Congratulations to my long time teammate and friend Patrik Elias on his Retirement. Can’t wait to see #26 joining 4… https://t.co/JG7OgLqN21 +03/21/2017,Sports_celeb,@MartinBrodeur,"RT @GoalieVoices: Posts, crossbars and perfect angles. No big deal, right @Panger40 and @BrianBoucher33 @KellyHrudey" +02/18/2017,Sports_celeb,@MartinBrodeur,"RT @GeneralsUpdates: In case you missed @JBrodeur30 going 14/14 in the shootout last night, here are all the #67s attempts in a row https:/…" +02/13/2017,Sports_celeb,@MartinBrodeur,RT @UOttawaMHockey: Here's an absolutely ridiculous save from #HorseHockey goaltender Anthony Brodeur (@abrodeur30) this weekend in Sudbury… +01/25/2017,Sports_celeb,@MartinBrodeur,#BellLetsTalk +12/25/2016,Sports_celeb,@MartinBrodeur,Merry xmas everyone!!!My daughter doesn't think I can get 1000 favorites. Help me out please!!!!! https://t.co/1aHtQ5M41n +10/07/2016,Sports_celeb,@MartinBrodeur,"RT @GeeGeesMHockey: Gameday | Coach Grandmaitre has announced Anthony Brodeur as tonight's starter. + +2015-16: 1.99, .931 w/@PentictonVees.…" +07/13/2016,Sports_celeb,@MartinBrodeur,RT @TheRealDpan: @BarDown what a clown +06/10/2016,Sports_celeb,@MartinBrodeur,"We lost a legend of the game today. Mr. Howe will be missed. Condolences to the Howe Family. +Photo: Denis Brodeur Sr https://t.co/Ojkf0jORkG" +06/08/2016,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30!! https://t.co/GjCCvsLvwl +05/05/2016,Sports_celeb,@MartinBrodeur,RT @GeeGeesMHockey: RECRUIT: uOttawa m-hockey is proud to announce the commitment of goalie Anthony Brodeur (@abrodeur30). #HorseHockey htt… +04/27/2016,Sports_celeb,@MartinBrodeur,"I'm excited to be new member of @eligoclub! +Thank you @pgamazz!" +03/14/2016,Sports_celeb,@MartinBrodeur,Happy Birthday to my favorite daughter @AnabelleBrodeur! https://t.co/0T8Naaw2gu +02/06/2016,Sports_celeb,@MartinBrodeur,Excited to be back in NJ for the week! +01/27/2016,Sports_celeb,@MartinBrodeur,#BellLetsTalk +11/23/2015,Sports_celeb,@MartinBrodeur,Happy Birthday Maxime!! https://t.co/UbLfy4VRnZ +10/06/2015,Sports_celeb,@MartinBrodeur,"Thank you to the @nhldevils organization and the fans for all of the support! I am very honored to join 3, 4, and 27!" +08/26/2015,Sports_celeb,@MartinBrodeur,Happy #NationalDogDay! http://t.co/r16Ji9HKEh +08/02/2015,Sports_celeb,@MartinBrodeur,RT @Panger40: And Why Wouldn't we? The Gateway to the West would be perfect host! https://t.co/fypwuQIb8s +07/17/2015,Sports_celeb,@MartinBrodeur,Having a great time on the golf course with Ozzie Smith and Andruw Jones at the 2015 @ACChampionship http://t.co/KAsEZlSlBR +07/03/2015,Sports_celeb,@MartinBrodeur,Congrats to @mstlouis_26 on a great career! +06/09/2015,Sports_celeb,@MartinBrodeur,RT @lindsayberra: @MartinBrodeur Please tweet to help us to 100K signatures for Gramp's Medal of Freedom petition! Deadline tonight! http:… +06/08/2015,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30!! http://t.co/9bGTz5zWiD +06/01/2015,Sports_celeb,@MartinBrodeur,Congrats to the @Oshawa_Generals on winning the #MemorialCup!!! +05/31/2015,Sports_celeb,@MartinBrodeur,Best of luck to the @Oshawa_Generals in the #MemorialCup +05/29/2015,Sports_celeb,@MartinBrodeur,Congrats to William on his graduation! @Ultimate_WillB http://t.co/wB59kuyS4S +05/20/2015,Sports_celeb,@MartinBrodeur,Congrats to David @Letterman on an amazing career! Photo on set from 2000. http://t.co/GbXvexM1FE +05/16/2015,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 and the @Oshawa_Generals on winning the #OHL Championship! Good luck in the Memorial Cup! http://t.co/97j36kdki8 +05/06/2015,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Happy birthday @MartinBrodeur ! Love you Dad! +05/05/2015,Sports_celeb,@MartinBrodeur,"Stanley & Vez are participating in #GiveSTLDay to support @A4A_org! +Help support by donating:http://t.co/4YI1ESNdOR http://t.co/Oq3hVUzGP4" +05/03/2015,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 and the @Oshawa_Generals on winning the Eastern Conference Finals! Good luck in the Finals! http://t.co/mXOusn18X0 +04/25/2015,Sports_celeb,@MartinBrodeur,RT @NJDevilsFWW: Hey @MartinBrodeur how about retweet 4 Oaklee. Today is his funeral and he was a huge Devils fan like mom. Thanks! http://… +04/16/2015,Sports_celeb,@MartinBrodeur,Enjoying my first @Cardinals game! http://t.co/5Czxspg5Mz +03/14/2015,Sports_celeb,@MartinBrodeur,Happy Birthday to my daughter Anabelle! http://t.co/gjSoad3TqH +03/11/2015,Sports_celeb,@MartinBrodeur,"Proud to join @dbackes42 and @A4A_org! +Make sure to support your local animal shelters! Nice visit today @APAofMO! http://t.co/CAVkiJ46AQ" +03/08/2015,Sports_celeb,@MartinBrodeur,Thanks to the @NHLDevils for a great weekend! Was great to see my old teammates and the fans! It was a lot of fun! #Devils95 +02/28/2015,Sports_celeb,@MartinBrodeur,Want to wish my friend David Clarkson good luck with the @BlueJacketsNHL! +02/19/2015,Sports_celeb,@MartinBrodeur,RT @Panger40: Well done Andrew. Congrats on your 1st @NHL victory. @andrewhammond30 @Sportsnet @Senators +02/07/2015,Sports_celeb,@MartinBrodeur,RT @CHLHockey: Built by the #CHL! Congrats @MartinBrodeur tremendous career that began with @QMJHL St Hyacinthe Lasers 1989-92 #tbt http://… +01/29/2015,Sports_celeb,@MartinBrodeur,Thank You for everything! http://t.co/IrxTmoIGSs +01/28/2015,Sports_celeb,@MartinBrodeur,#BellLetsTaIk +01/28/2015,Sports_celeb,@MartinBrodeur,"RT @ChrisKuc: Patrick Kane on Martin Brodeur: ""Hell of a career for a guy who did so much for our game."" #Blackhawks" +01/22/2015,Sports_celeb,@MartinBrodeur,Congratulations to @KidElls1 for making the 2015 @nhl All-Star team! #stlblues +01/18/2015,Sports_celeb,@MartinBrodeur,"RT @FlyingBluesman: 5 jours avant que la rondelle tombe....svp retweeter + @bruno_gervais27 bruno_gervais27 @Max25talbot @JiCLajoie @ http:/…" +01/04/2015,Sports_celeb,@MartinBrodeur,Congrats @JBrodeur30 on his first OHL shutout! +12/11/2014,Sports_celeb,@MartinBrodeur,RT @JillSaake: Thanks for the visit @MartinBrodeur @MODO_RAMAL at St Louis Childrens hospital @EJ_Saake's first smile of the week http://t.… +12/11/2014,Sports_celeb,@MartinBrodeur,"RT @LukeTaylor72: awesome to see a legend come to town and fit right in, thanks for visiting a hometown patient @MartinBrodeur & Jack http:…" +12/11/2014,Sports_celeb,@MartinBrodeur,RT @CardsNoteMizzou: My buddy's son received some special visitors today...you made his day @MartinBrodeur and Jax http://t.co/3yn2MhUzMl +12/09/2014,Sports_celeb,@MartinBrodeur,Thank you fans for an amazing welcome! @StLouisBlues +12/06/2014,Sports_celeb,@MartinBrodeur,Great first win as a Blue! @StLouisBlues +11/24/2014,Sports_celeb,@MartinBrodeur,Sad to hear the passing of Pat Quinn. He was a great coach. I had the privilege to play for him. You will be missed. +11/23/2014,Sports_celeb,@MartinBrodeur,Happy Birthday Maxime!! http://t.co/HJJOFx4oGQ +11/20/2014,Sports_celeb,@MartinBrodeur,RT @SunLifeQC: Tweetez ou RT #monactiondiabète et nous donnerons 1$ à la Fondation @DiabeteEnfants en partenariat avec @canadiensMTL http:/… +11/18/2014,Sports_celeb,@MartinBrodeur,Congrats to everyone inducted into the @HockeyHallFame. A special congrats to a great coach and a great friend! http://t.co/exAB8N6YzL +10/29/2014,Sports_celeb,@MartinBrodeur,Happy 18th Birthday @JBrodeur30 @WilliamBsTweets !!! http://t.co/ju0fjMv03G +10/25/2014,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 on his first OHL win!!! +10/22/2014,Sports_celeb,@MartinBrodeur,My thoughts and prayers are with the city of Ottawa. +10/12/2014,Sports_celeb,@MartinBrodeur,RT @Oshawa_Generals: The first period is underway in Ottawa. @JBrodeur30 will start in net for the Generals making this his second OHL star… +10/09/2014,Sports_celeb,@MartinBrodeur,RT @patrickwoodbury: C'était le dernier entraînement père-fils @MartinBrodeur @abrodeur30 à #Gatineau #hockey #lhjmq http://t.co/vsMvwth3bW +10/09/2014,Sports_celeb,@MartinBrodeur,RT @patrickwoodbury: Mise au jeu faite par @MartinBrodeur au #VieuxBob #LeDroit http://t.co/NCna1nNl0c +10/08/2014,Sports_celeb,@MartinBrodeur,http://t.co/skFUMXrV07 +10/06/2014,Sports_celeb,@MartinBrodeur,RT @LesOlympiques: Retweeter l'image et courez la chance de gagner vos billets pour la partie de mercredi! #GoOlympiquesGo http://t.co/78Sq… +10/06/2014,Sports_celeb,@MartinBrodeur,RT @MLalancetteTVA: Le centre d'attraction de cette séance d'entraînement à Guertin http://t.co/3KpWdr1ar8 +09/27/2014,Sports_celeb,@MartinBrodeur,RT @WarnerA93: Jeremy Brodeur's first @OHLHockey start for the @Oshawa_Generals vs. the @OHLSteelheads. @JBrodeur30 @MartinBrodeur http://t… +09/26/2014,Sports_celeb,@MartinBrodeur,Good luck tonight @JBrodeur30!! First OHL start! +09/25/2014,Sports_celeb,@MartinBrodeur,Congratulations to Derek Jeter on an amazing career! #RE2PECT +09/24/2014,Sports_celeb,@MartinBrodeur,Awesome job in goal today @abrodeur30! http://t.co/FGuDDbbVIK +09/07/2014,Sports_celeb,@MartinBrodeur,"RT @Oshawa_Generals: Brodeur is starting tonight, game is underway! http://t.co/2VrF6U0TYw" +08/26/2014,Sports_celeb,@MartinBrodeur,Happy #NationalDogDay! From Stanley and Vez! http://t.co/dp5kWDjFw4 +08/16/2014,Sports_celeb,@MartinBrodeur,Wishing team Canada good luck in their game later today! #LLWS @LittleLeague +07/15/2014,Sports_celeb,@MartinBrodeur,Battle of the Twins! @JBrodeur30 @Freewill_b http://t.co/XZPuW0EAFK +06/24/2014,Sports_celeb,@MartinBrodeur,Happy to see Pat Burns will be inducted into the @HockeyHallFame he was a great coach and a great friend! http://t.co/XkAqkotK1R +06/16/2014,Sports_celeb,@MartinBrodeur,"RT @abrodeur30: Happy fathers day to everyone, but most importantly, @MartinBrodeur love you dad, you're the best" +06/15/2014,Sports_celeb,@MartinBrodeur,Happy Father's Day to all of the Hockey Dads out there! Miss You Dad. Thanks for all that you have done for me! http://t.co/ZVU0KejQCQ +06/08/2014,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30! Love you http://t.co/zulcipCOqF +06/05/2014,Sports_celeb,@MartinBrodeur,Congratulations to @JBrodeur30 on joining the @Oshawa_Generals! Always proud of you! +05/11/2014,Sports_celeb,@MartinBrodeur,Love you Mom! Happy Mother's Day to all Moms ! http://t.co/CVLIXIvlQk +05/06/2014,Sports_celeb,@MartinBrodeur,Thank You Guys for all the Birthday Wishes!/Merci pour les voeux d'anniversaire! +05/06/2014,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Happy birthday Dad! Love you +04/20/2014,Sports_celeb,@MartinBrodeur,Happy Easter! http://t.co/Vz8uMkooQN +04/17/2014,Sports_celeb,@MartinBrodeur,Check out this guarantee from #markmessier and @officialspyder https://t.co/nh1ljcq1Vn +04/17/2014,Sports_celeb,@MartinBrodeur,Thank you guys for all the support. I really appreciate it! Good luck to all teams in the playoffs. +08/30/2013,Sports_celeb,@MartinBrodeur,RT @EASPORTSNHL: .@MartinBrodeur is giving away a copy of #NHL14 on his FB page! Enter here: http://t.co/IIB9XVTmAX @NHL @NHLPA +07/29/2013,Sports_celeb,@MartinBrodeur,The final piece of my new mask is on the back — I added an Old School Photography Film Strip as tribute to my Dad! http://t.co/Bt6LajdzO7 +07/29/2013,Sports_celeb,@MartinBrodeur,I have one more addition to the Mask! Check back at 2:30 to see it! +07/29/2013,Sports_celeb,@MartinBrodeur,Here is my New Mask for the 2013-2014 Season! http://t.co/2oUoZBqUAI +07/29/2013,Sports_celeb,@MartinBrodeur,"RT @KenDaneykoMSG: @MartinBrodeur ahh u don't have to out me on your mask pal, that's ok!" +07/29/2013,Sports_celeb,@MartinBrodeur,Tomorrow you will get to see my mask for the new season. I am adding two friends to my mask! Stay Tuned! +07/10/2013,Sports_celeb,@MartinBrodeur,Congrats to Nieder and Shanny to become Hall of famer!!!! +07/08/2013,Sports_celeb,@MartinBrodeur,RT @nhl: Thank you all for your questions. I had fun. Follow me @MartinBrodeur. ^MB +07/08/2013,Sports_celeb,@MartinBrodeur,RT @EASPORTSNHL: #NHL14 Cover Athlete @MartinBrodeur will be taking over the @NHL Twitter account at 2pm ET (11am PT). Ask questions using … +07/08/2013,Sports_celeb,@MartinBrodeur,Hey Guys! I am taking over the @NHL Twitter account at 2 p.m. today! Ask me questions using #AskBrodeur +07/01/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Extremely excited to be a part of the @NHLDevils !Been waiting for this moment for my whole life! Crazy feeling and thanks … +07/01/2013,Sports_celeb,@MartinBrodeur,Picture with @abrodeur30 after being Drafted http://t.co/mRGSdtUQat +07/01/2013,Sports_celeb,@MartinBrodeur,"RT @NHLDevils: Watch as our @MartinBrodeur announces his son, Anthony Brodeur, as the 208th #NHLDraft pick: http://t.co/4ckOnNXeuL" +07/01/2013,Sports_celeb,@MartinBrodeur,Congrats to my boy @abrodeur30 on getting drafted to the @NHLDevils ! Can't wait to see you on the ice! +06/30/2013,Sports_celeb,@MartinBrodeur,Good Luck to my son @abrodeur30 today at the @NHL Draft +06/28/2013,Sports_celeb,@MartinBrodeur,"Thanks to all voters!!!! +http://t.co/y0LmWVTkks" +06/18/2013,Sports_celeb,@MartinBrodeur,Congrats @abrodeur30 on joining the Gatineau Olympiques of the QMJHL! +06/16/2013,Sports_celeb,@MartinBrodeur,Happy Father's Day Dad! http://t.co/C5pktyegPQ +06/16/2013,Sports_celeb,@MartinBrodeur,"RT @abrodeur30: Happy fathers day to all the dads out there, but especially @MartinBrodeur #loveyou" +06/08/2013,Sports_celeb,@MartinBrodeur,"Hey guys check out My Brother Denis's Photography Page http://t.co/Z4Vyn3nLpB +Go check it out and give him a like!" +06/08/2013,Sports_celeb,@MartinBrodeur,Happy Birthday Anthony Love You Buddy!! @abrodeur30 +06/03/2013,Sports_celeb,@MartinBrodeur,Voting is now over! Thanks so much for all the support! You guys have done an awesome job! Lets hope that we made it! Stay Tuned! +06/03/2013,Sports_celeb,@MartinBrodeur,"1 Hour Left! Vote MB30! +http://t.co/vtGvDc8V55" +06/02/2013,Sports_celeb,@MartinBrodeur,"Voting is very close! Voting is Unlimited so make sure to get in as many as you can! Thanks guys! +Vote Here: http://t.co/vtGvDc8V55" +06/02/2013,Sports_celeb,@MartinBrodeur,"Vote for me for the #NHL14CoverVote +http://t.co/vtGvDc8V55 +Voting is Unlimited!" +06/02/2013,Sports_celeb,@MartinBrodeur,Today is the Last Day you can vote for me to be on the cover of NHL14! For votes to count go to http://t.co/vtGvDc8V55 Thank you guys! +06/02/2013,Sports_celeb,@MartinBrodeur,Congrats to @VoteBrodeur for winning the signed Mini Stick! Keep Voting today is the last day that you can vote! http://t.co/vtGvDc8V55 +05/31/2013,Sports_celeb,@MartinBrodeur,Thank you fans for all of the support today! For your votes to count vote at http://t.co/36sYc1QXeP +05/31/2013,Sports_celeb,@MartinBrodeur,RT If you Voted #NHL14Brodeur All Day +05/31/2013,Sports_celeb,@MartinBrodeur,15 Mins Left! Make them Count! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT 30 Mins Left! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Congrats to @abrodeur30 for graduating High School! Nice Job Buddy! +05/31/2013,Sports_celeb,@MartinBrodeur,Vez is waiting for you to vote #NHL14Brodeur http://t.co/5ZAx2xtpJd +05/31/2013,Sports_celeb,@MartinBrodeur,1 Hour Left! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Stanley is waiting for you to vote #NHL14Brodeur http://t.co/MFXunoo4CR +05/31/2013,Sports_celeb,@MartinBrodeur,RT this! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,I don't always vote for the NHL14 Cover but when I do I vote #NHL14Brodeur http://t.co/RGnQZB9vXe +05/31/2013,Sports_celeb,@MartinBrodeur,2 Hours Left to vote on twitter! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Hey @brucebeck4ny Thanks for the support! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT @nhldevils: RT this if you've been tweeting #NHL14Brodeur all day. +05/31/2013,Sports_celeb,@MartinBrodeur,"Who wants to win this? Tweet #NHL14Brodeur to enter! +http://t.co/xPUnNUlCY3" +05/31/2013,Sports_celeb,@MartinBrodeur,Keep Calm and Vote #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,"Vote! #NHL14Brodeur + http://t.co/NdKs66LMgh" +05/31/2013,Sports_celeb,@MartinBrodeur,"Put Your Game Face On! Vote Now! #NHL14Brodeur +Video: http://t.co/zrImmmLhVm" +05/31/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeu… +05/30/2013,Sports_celeb,@MartinBrodeur,Thanks for all of the Questions! Make sure to keep voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhlpa: Also, please help me get on the cover of EA NHL 14 by voting #NHL14Brodeur. Thank you!" +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhlpa: Fans, thanks for all your great questions, this has been a blast. Also thanks to @NHLPA for letting me 'takeover' this account." +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @NHLPA: Martin Brodeur is up next, he will be taking over the @NHLPA Twitter account at 6:30pm EST. Tweet questions to @NHLPA using #Ask…" +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: Almost time for @MartinBrodeur to take over the @NHLPA account. #AskBrodeur. #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,Keep using #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,I am jumping on the @NHLPA twitter account in 1 hour. Want me to answer your questions? Use #AskBrodeur to ask ?'s & #NHL14Brodeur to vote! +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @njdevil00: Just keep voting, voting, voting: #NHL14Brodeur." +05/30/2013,Sports_celeb,@MartinBrodeur,Do you know what time it is? #NHL14Brodeur time! +05/30/2013,Sports_celeb,@MartinBrodeur,RT @denisbrodeurjr: #NHL14Brodeur @MartinBrodeur Marty is the ironman of goalies http://t.co/CKHyJe5Ury +05/30/2013,Sports_celeb,@MartinBrodeur,Who wants to win a signed Mini Stick? Tweet #NHL14Brodeur to enter. +05/30/2013,Sports_celeb,@MartinBrodeur,"""Vote #NHL14Brodeur"" Hi I'm Martin Brodeur and I approve this message." +05/30/2013,Sports_celeb,@MartinBrodeur,"Help me complete my checklist! All you have to do is tweet #NHL14Brodeur + http://t.co/zuyyksTJlO" +05/30/2013,Sports_celeb,@MartinBrodeur,If you're happy and you know it Vote #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"Keep Voting for Me! + Video: http://t.co/jDA6BCfXq4 +#NHL14Brodeur" +05/30/2013,Sports_celeb,@MartinBrodeur,Tweet Brodeur Thursday! #TBT #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @nhlpa: Brodeur is taking over the @NHLPA Twitter account today at 6:30pm EST. Tweet questions to @NHLPA using #AskBrodeur #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @jeremy_roenick: @MartinBrodeur why wouldn't u vote for Marty. Best of all time +#NHL14Brodeur" +05/30/2013,Sports_celeb,@MartinBrodeur,"Hey @Jeremy_Roenick is voting #NHL14Brodeur +So you should too! + http://t.co/tQGjtEWfDH" +05/30/2013,Sports_celeb,@MartinBrodeur,RT @sherrydarlingnj: There are at least 669 reasons to vote for #NHL14Brodeur. +05/30/2013,Sports_celeb,@MartinBrodeur,RT @free_willy9: #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,I am taking over the @NHLPA twitter account at 6:30! Want me to answer your questions? Use #AskBrodeur to ask Questions #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: #NHL14Brodeur #NHL14Brodeur #retweet #NHL14Brodeur #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @jbrodeur30: #NHL14Brodeur #retweet #covervote +05/30/2013,Sports_celeb,@MartinBrodeur,RT @kendaneykomsg: #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,How many times have you tweeted #NHL14Brodeur today? +05/30/2013,Sports_celeb,@MartinBrodeur,Voting is Very close! keep voting #nhl14brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,My Buddy David Clarkson is voting #NHL14Brodeur http://t.co/EbAO5WUcfg +05/30/2013,Sports_celeb,@MartinBrodeur,What are you waiting for? Vote #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @nhl: It's the last day of #NHL14CoverVote Twitter Voting! Are you tweeting for #NHL14Brodeur or Bobrovsky? +05/30/2013,Sports_celeb,@MartinBrodeur,@ThatKevinSmith thanks for the support! Keep Voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLPA: #NHL14CoverVote finalists @MartinBrodeur & Sergei Bobrovsky will take over the @NHLPA account today at 5pm EST http://t.co/0cOVw… +05/30/2013,Sports_celeb,@MartinBrodeur,RT @ThatKevinSmith: Put a netminding legend on the cover of EA SPORTS NHL 14 by voting #NHL14Brodeur for #NHL14COVERVOTE! http://t.co/YIVhU… +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur Keep it Going! +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: #TBT: @MartinBrodeur broke the @NHL record for most career wins by a goalie on 3/17/09. Photo: http://t.co/YEKhUAMyPF. Vote:… +05/30/2013,Sports_celeb,@MartinBrodeur,Vote #NHL14Brodeur #BecauseItsTheCover +05/30/2013,Sports_celeb,@MartinBrodeur,Keep Tweeting! #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,@RobbieGould09 is voting #NHL14Brodeur from Chicago! Where are you voting from? http://t.co/zpN527sPrK +05/30/2013,Sports_celeb,@MartinBrodeur,"Vote #NHL14Brodeur All Day! +Check Out This Video + http://t.co/nbZeJ94oXh" +05/30/2013,Sports_celeb,@MartinBrodeur,RT if you're voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhldevils: It's the last Thursday of the #NHL14CoverVote competition, make it count #DevilsArmy. Tweet #NHL14Brodeur." +05/30/2013,Sports_celeb,@MartinBrodeur,Good Morning Everyone! Remember every time you use #NHL14Brodeur today it counts as two votes for me for the #NHL14CoverVote. Tweet away. +05/30/2013,Sports_celeb,@MartinBrodeur,"Hey guys we made it to the finals! Don't Stop Voting #NHL14Brodeur +Video:http://t.co/vfBySPX4Sx" +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,It's #TBT Tweet Brodeur Thursday! Use #NHL14Brodeur all day for a chance to win a signed mini stick! Put me on the Cover of NHL14! +05/29/2013,Sports_celeb,@MartinBrodeur,"How many times have you voted for me today for the #NHL14CoverVote ? +Vote for me at http://t.co/36sYc1QXeP" +05/29/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: Rock the vote #DevilsArmy! Support @MartinBrodeur for #NHL14Cover by voting here: http://t.co/oaYp65nSbs. Voting is unlimite… +05/28/2013,Sports_celeb,@MartinBrodeur,"You guys are doing great! +Make sure to Keep Voting for me! +Vote Here: http://t.co/36sYc1QXeP http://t.co/24iBOwe8mA" +05/27/2013,Sports_celeb,@MartinBrodeur,"RT @nhldevils: It's the final countdown! @MartinBrodeur is in the finals! Voting is live NOW, vote here: http://t.co/b05e6rzEXJ" +05/27/2013,Sports_celeb,@MartinBrodeur,"I made it to the Final Round of the #NHL14CoverVote! Keep Voting for me! +http://t.co/vtGvDc8V55 +Can't win without you guys!" +05/27/2013,Sports_celeb,@MartinBrodeur,"Send me to the Finals of the #NHL14CoverVote ! Get in your last votes for this round. +Vote Here: http://t.co/vtGvDc8V55" +05/25/2013,Sports_celeb,@MartinBrodeur,Congrats @P0ly95 you are the winner of the signed Mini Stick! Send Me A DM to claim your prize +07/02/2018,Sports_celeb,@ToreyKrug,"RT @NBCSBoston: Jerod Mayo is asking for the public's assistance in finding his bulldog that went missing. + +📝: https://t.co/SNmOnywj3T http…" +07/01/2018,Sports_celeb,@ToreyKrug,#DirtyWater +06/15/2018,Sports_celeb,@ToreyKrug,"RT @NHLBruins: .@ToreyKrug: not normally a goalie. + +RT if the blue liner's lunging stick stop in overtime against Montreal was your favorit…" +06/15/2018,Sports_celeb,@ToreyKrug,@NHLBruins Would love to get the pic of that! +06/15/2018,Sports_celeb,@ToreyKrug,@BLerg11 My goodness. He needs to meet my girl! +06/11/2018,Sports_celeb,@ToreyKrug,RT @NHL: https://t.co/H0HGORwg5d +06/10/2018,Sports_celeb,@ToreyKrug,"RT @Krug39: Had a great time celebrating Dad’s 60th tonight!!! + +He’s responsible for this whole crew! + +#ThanksDad #Coach #Papa https://t.co…" +06/01/2018,Sports_celeb,@ToreyKrug,Everyone hates @Money23Green when he’s not on their team. But when he is your teammate you love him to death... I p… https://t.co/TJq1YlAs8C +05/31/2018,Sports_celeb,@ToreyKrug,@Buccigross This pic is all-time! +05/24/2018,Sports_celeb,@ToreyKrug,RT @GreekGodOfHops: Twitter would never promote this but there needs to be a day for unplugging from twitter and all social media sites. So… +05/16/2018,Sports_celeb,@ToreyKrug,@Mmato27 Dude. Fly me some? +05/15/2018,Sports_celeb,@ToreyKrug,"@daleicious23 Could you imagine if that happened to me and my job, Dale? In your opinion, it would often!" +05/14/2018,Sports_celeb,@ToreyKrug,Thank you guys for all the support this season. We will be back! https://t.co/V724ySfc7J +12/22/2017,Sports_celeb,@ToreyKrug,Check it out! Would make for a nice gift 😉 https://t.co/iFKwhWv6JJ +12/21/2017,Sports_celeb,@ToreyKrug,I highly suggest watching @isaiahthomas ‘s #BookOfIsaiah2 ... #IT #respect +12/15/2017,Sports_celeb,@ToreyKrug,"A friend of mine reached out when his buddy’s child suddenly passed recently. If you’re up for it, please consider… https://t.co/J10PrNbwl4" +11/30/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: Strong work, @ToreyKrug. 👌 https://t.co/dz9ZFf3wDn" +10/31/2017,Sports_celeb,@ToreyKrug,"RT @TheSportsMuseum: #Bostonvs.Bullies has officially reached 50,000 kids! We're very ecstatic & proud w/ how far the program has come! #Le…" +10/09/2017,Sports_celeb,@ToreyKrug,👀 +10/08/2017,Sports_celeb,@ToreyKrug,Where's our trophy @stoolpresidente ?! +10/07/2017,Sports_celeb,@ToreyKrug,@scottzolak @Bruinsnumba1 Sup... Sparty on! +10/07/2017,Sports_celeb,@ToreyKrug,@NHL_AaronWard Not a peep out of you guys for last 8 years. Finally... +10/06/2017,Sports_celeb,@ToreyKrug,👀 you're gonna look good in Green and White https://t.co/NEXrOgpzbg +10/05/2017,Sports_celeb,@ToreyKrug,"#Boston, Let's Go!" +10/05/2017,Sports_celeb,@ToreyKrug,@stoolpresidente Hot 'n Sweaty +10/04/2017,Sports_celeb,@ToreyKrug,@K_Sodd Beauty! +10/02/2017,Sports_celeb,@ToreyKrug,@jettestephen Ha I gotta check on that! Poor guy +10/02/2017,Sports_celeb,@ToreyKrug,RT @CFBONFOX: .@MSU_Football did the Iowa wave yesterday while hosting the Hawkeyes and my god is it dusty in here https://t.co/keGsvm0iE1 +10/02/2017,Sports_celeb,@ToreyKrug,@_JimmyS_ @BNightengale Sit down and watch. +09/28/2017,Sports_celeb,@ToreyKrug,RT @JRandalWard42: Some thoughts...excuse the length! https://t.co/YUNMgjaAgn +09/26/2017,Sports_celeb,@ToreyKrug,"@matthewmacd4 Thanks man! Ya, I don't think right place, right time!" +09/26/2017,Sports_celeb,@ToreyKrug,@matthewmacd4 Clearly didn't know what I RT. Immediately removed. The way you phrased this tweet leads me to believ… https://t.co/VtIbQuFIIW +09/26/2017,Sports_celeb,@ToreyKrug,@kebuddle You're right. I don't even know if that's true or not. My bad. Do you know if it is or isn't though? +09/24/2017,Sports_celeb,@ToreyKrug,"Those that witnessed the end of the @Lions game, welcome to my childhood." +09/24/2017,Sports_celeb,@ToreyKrug,RT @SportsCentre: JUST IN: Stanley Cup champion Pittsburgh Penguins release Team statement regarding White House visit: https://t.co/zx0kYf… +09/24/2017,Sports_celeb,@ToreyKrug,RT @TSNHockey: JUST IN: Stanley Cup champion Pittsburgh Penguins release Team statement regarding White House visit: https://t.co/sm6qPJlfjA +09/23/2017,Sports_celeb,@ToreyKrug,Waiting for @Bmarch63 to log back on to @Twitter https://t.co/Fl5LGDaEvl +09/22/2017,Sports_celeb,@ToreyKrug,RT @denisleary: Join us for #ComicsComeHome23 @tdgarden Nov 18th. Here's why: Comics Come Home therapeutic for Neely https://t.co/O8P6rpK1X… +09/21/2017,Sports_celeb,@ToreyKrug,@Bmarch63 Can't wait to see your face off percentage +09/19/2017,Sports_celeb,@ToreyKrug,RT @SullivanTire: Guess who stopped by our Watertown location last week... Our favorite #Bruins player @ToreyKrug! #nhl #hockey #sullivanti… +09/18/2017,Sports_celeb,@ToreyKrug,"@Zvendi13 keep grinding away buddy. Keep your head up, put in the work and don't listen to the naysayers. Let them fuel the fire. Good luck!" +09/17/2017,Sports_celeb,@ToreyKrug,RT @Sam__OConnor: Everyone do yourself a favor and watch @ToreyKrug ig story +09/14/2017,Sports_celeb,@ToreyKrug,My boy 🍝 dinner on you bro @pastrnak96 +09/12/2017,Sports_celeb,@ToreyKrug,Congrats @KipMooreMusic on a great album. You guys kill it on #SLOWHEART +09/12/2017,Sports_celeb,@ToreyKrug,"@13Photography Ya... seriously, it's not. But hard to get upset at a #34 home run." +09/11/2017,Sports_celeb,@ToreyKrug,It was a pleasure meeting you. Anyone recognize this guy? https://t.co/m3bsEhohbB +09/11/2017,Sports_celeb,@ToreyKrug,RT @NHL: Craig Cunningham's transition from the ice to the stands has been a successful one. https://t.co/a2A4hHQ6Ky +09/10/2017,Sports_celeb,@ToreyKrug,I'll be @fenwaypark gates today with @NHLBruins teammates to collect donations for Hurricane Irma relief with @FlaPanthers @RedSox +09/03/2017,Sports_celeb,@ToreyKrug,RT @ChirpHard: This skit by Andrew Ference will always be hilarious https://t.co/96ipv73VMk +09/03/2017,Sports_celeb,@ToreyKrug,"RT @Pac12Network: This is anything but a regular PAT. + +Jake Olson, blind since age 12, just snapped for the first time in a live game. http…" +09/01/2017,Sports_celeb,@ToreyKrug,"RT @JustinVerlander: Thank you to Detroit for an incredible 13-seasons, a city that will always be important to me.… https://t.co/QNaPBVZuY5" +09/01/2017,Sports_celeb,@ToreyKrug,RT @celtics: *chills* https://t.co/9IQtQAjCXC +08/31/2017,Sports_celeb,@ToreyKrug,@fistbumpkid @KyleKrug1 See you soon buddy!!!!! +08/30/2017,Sports_celeb,@ToreyKrug,Thanks to everyone at @EASPORTSNHL for the scoop on my #NHL18Ratings and the nice slice of humble pie. Can't wait… https://t.co/Hk1BTCQPt8 +08/30/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: The boys were special guests down in Foxborough today. 🏒🏈 + +Thanks for having us, @Patriots! https://t.co/TQUGGtYaf9" +08/21/2017,Sports_celeb,@ToreyKrug,@Mmato27 Ya... @Buccigross knows what's good. Looking sharp bud. +08/20/2017,Sports_celeb,@ToreyKrug,Next time say hello!!! https://t.co/GcmAHvNMPv +08/19/2017,Sports_celeb,@ToreyKrug,Stay safe Boston +08/19/2017,Sports_celeb,@ToreyKrug,RT @theScoreNHL: Roadrunners to retire Cunningham's jersey number https://t.co/cTzGR3ZRej https://t.co/UfeU2nvme8 +08/08/2017,Sports_celeb,@ToreyKrug,RT @MiLB: BREAKING: #Tigers prospect Cam Gibson hits a two-run triple in the sixth to complete the cycle for @LkdFlyingTigers https://t.co/… +08/04/2017,Sports_celeb,@ToreyKrug,@NickCantalupo17 Happy Birthday Tony! +07/27/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: .@tuukkarask and @ToreyKrug showing the kids off-ice agility exercises 💪 🐻 + +#BruinsGlobal https://t.co/LDR6wML5C6" +07/23/2017,Sports_celeb,@ToreyKrug,"RT @Skillsy75: After years of slowing down the NHL, I'm excited to #growthegame in China with @ToreyKrug and @NHLBruins #BruinsGlobal" +07/23/2017,Sports_celeb,@ToreyKrug,RT @StephenCurry30: “Are you not entertained???” @JordanSpieth +07/23/2017,Sports_celeb,@ToreyKrug,"@JordanSpieth let's clean up this mess and continue this tomorrow... + +""No, I'll just beat him now"" -Happy Gilmore" +07/23/2017,Sports_celeb,@ToreyKrug,@DustinBrown88 Ignore the noise! Thanks for the support. +07/22/2017,Sports_celeb,@ToreyKrug,Hard to root against @JordanSpieth but it's pretty cool that every time Kuchar hits they yell my last name. #TheOpen https://t.co/ozNzPiDJUq +07/20/2017,Sports_celeb,@ToreyKrug,@FeitsBarstool @hoosierjm26 +07/16/2017,Sports_celeb,@ToreyKrug,@Marcus36Smart @Amanda_Pflugrad Go play video games and begging broads for follows. Goodnight bud. +07/15/2017,Sports_celeb,@ToreyKrug,That's seriously a terrible call @RedSox +07/15/2017,Sports_celeb,@ToreyKrug,@DanyAllStar15 @ACbulldoghockey my brothers team @Krug39 +07/13/2017,Sports_celeb,@ToreyKrug,RT @TheMDSC: We're happy to announce that the MDSC is partnering with the National Down Syndrome Society to host a celebrity... https://t.c… +07/13/2017,Sports_celeb,@ToreyKrug,@Jack_Eichel11 Hahahha this is great. @NickBonino what kind of rims did you put on it? +07/08/2017,Sports_celeb,@ToreyKrug,RT @BobbyRobinsPro: Me and @MKrug7 respectfully disagreeing from @ToledoWalleye Valentine's Day card back in the day. https://t.co/ImpkEFNl… +07/08/2017,Sports_celeb,@ToreyKrug,Should have came and said hello. Sorry I missed you. Happy birthday! https://t.co/GaBiGXMiES +07/07/2017,Sports_celeb,@ToreyKrug,RT @PatrickChung23: @OnlyInBOS @BostonCasting How good you gotta be? Lol +07/05/2017,Sports_celeb,@ToreyKrug,I wanted to chirp you so bad but this is a sick picture #stillgonna #sendit #babysitter https://t.co/IwvQvwmxSu +06/24/2017,Sports_celeb,@ToreyKrug,"RT @MiHockeyNow: And now, a reminder in regards to the #NHLDraft... + +These are just some of the guys who never heard their names called.…" +06/24/2017,Sports_celeb,@ToreyKrug,Welcome to all @NHLBruins picks but especially @JStudnicka23 bringing another MI and Belle Tire product to the best sports city in America! +06/24/2017,Sports_celeb,@ToreyKrug,RT @J_Danglefest2: So excited to be apart of the @DetroitRedWings organization! Thankful for everyone who has made this so special. #DreamC… +06/23/2017,Sports_celeb,@ToreyKrug,"RT @StoolChiclets: .@ToreyKrug was bitter he didn't get selected in the NHL draft, but it was the best thing that ever happened to him http…" +06/23/2017,Sports_celeb,@ToreyKrug,"RT @darrenrovell: Heard Draymond could recite the 34 players who were drafted before him, so I made him do it https://t.co/imhjbC2Dbn (H/T…" +06/22/2017,Sports_celeb,@ToreyKrug,"RT @espn: On this date in 1984, Daniel LaRusso defeated the Cobra Kai with Mr. Miyagi's help to win the Under-18 All-Valley Karate Tourname…" +06/21/2017,Sports_celeb,@ToreyKrug,Let's go Bergy!! #Selke +06/21/2017,Sports_celeb,@ToreyKrug,"RT @DarrenDreger: After a 34-goal, 70-pt season David Pastrnak was named the Czech Republic's best player today. He's the youngest ever to…" +06/18/2017,Sports_celeb,@ToreyKrug,So excited to see @KevinJames tonight. What a beauty! +06/13/2017,Sports_celeb,@ToreyKrug,RT @NHLBruins: #NHLBruins hire Kevin Dean as assistant coach: https://t.co/YKxa5GxJ4P +06/13/2017,Sports_celeb,@ToreyKrug,RT @rileynash20: I've teamed up with Like A Pro where I give a behind the scenes look at my life and my gear of choice. Check it out! https… +06/13/2017,Sports_celeb,@ToreyKrug,"RT @DanyAllStar15: #50in07's Players of the Year: +1. Adam McQuaid +2. Auston Matthews +3. Craig Anderson +4. Stevie McDavid +5. Erik Karldad…" +06/13/2017,Sports_celeb,@ToreyKrug,"RT @theScore: 3-1 series lead. The Warriors just need to keep their composure! + +#NBAFinals https://t.co/6KfMyoQcG4" +06/09/2017,Sports_celeb,@ToreyKrug,My boy Craig!! https://t.co/FnNYWPHuoG +06/08/2017,Sports_celeb,@ToreyKrug,"RT @MSU_Hockey: It’s time to take the home of Spartan hockey to the next level! +https://t.co/JiCxEtbL7B" +06/05/2017,Sports_celeb,@ToreyKrug,"RT @27MilanLucic: Summer workout partner💪🏼 +@Unbreakable @terrellowens https://t.co/Lcah4hzIwi" +06/05/2017,Sports_celeb,@ToreyKrug,@hoosierjm26 @pastrnak96 @NHLBruins I don't get any bonus points for the fact that we expect that on a nightly basi… https://t.co/BVDpENrTGS +06/05/2017,Sports_celeb,@ToreyKrug,RT @dbackes42: GBSTL! Congrats @GentleBarn on reaching your goal! I'll donate an extra $6k in honor of the #stlouissix if we can get 6k ret… +06/04/2017,Sports_celeb,@ToreyKrug,RT @KirkHerbstreit: As a multi sports fan I have to say that @NHL playoff hockey and especially the #StanleyCupFinal is as good as it gets!… +06/03/2017,Sports_celeb,@ToreyKrug,"RT @E60: Why did @Money23Green donate $3.1M to @michiganstateu - it's all about friendly competition in this @E60 extra. His story Sun, 9a…" +06/01/2017,Sports_celeb,@ToreyKrug,"RT @FlaPanthers: Shawn Thornton has joined our executive staff! 👊 + +Details » https://t.co/zdz0ck8AX5 https://t.co/YE48tSNKuY" +05/27/2017,Sports_celeb,@ToreyKrug,"RT @EuropeanTour: Aaron's dad emailed us to ask if we could do something for his 9th birthday 🎂 + +We decided to do something special. https:…" +05/25/2017,Sports_celeb,@ToreyKrug,My little Czech bro turning 21 today. @pastrnak96 #DP #Ahoj #pancakes #asterisk https://t.co/eDonJNpWX4 +05/24/2017,Sports_celeb,@ToreyKrug,RT @ArizonaCoyotes: OFFICIAL: #Coyotes Add Craig Cunningham as Pro Scout https://t.co/gPwZSaWuvg +05/23/2017,Sports_celeb,@ToreyKrug,@berschy24 @ToledoPolice How do you lose a car? +05/22/2017,Sports_celeb,@ToreyKrug,@TheFunnyVine @hoosierjm26 +05/22/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: Today, Brad takes on Torey in the Top Goal Showdown. Check out their goals and vote below! https://t.co/uMxoQ7KUoJ" +05/22/2017,Sports_celeb,@ToreyKrug,https://t.co/hd8FGNgbf6 +05/16/2017,Sports_celeb,@ToreyKrug,@ofctimallen Wow. What a disappointment +05/16/2017,Sports_celeb,@ToreyKrug,Hey O! @KellyOlynyk. +05/15/2017,Sports_celeb,@ToreyKrug,Let's go ☘️!!! +05/13/2017,Sports_celeb,@ToreyKrug,RT @hoosierjm26: @DanyAllStar15 Yes...great call +05/07/2017,Sports_celeb,@ToreyKrug,@jmwall24 Ya that was me. I was terrible +05/05/2017,Sports_celeb,@ToreyKrug,@BarstoolChief @michiganstateu @MSU_Hockey Not the doctor I should be +05/05/2017,Sports_celeb,@ToreyKrug,"It only took 7 years, but I finally graduated from @michiganstateu. #studentathlete @MSU_Hockey thank you to those that made it possible" +05/03/2017,Sports_celeb,@ToreyKrug,RT @mstlouis_26: @NHL Love this! All the OT games have been great but you can't fake this! #realemotions#coach https://t.co/N2hFRUZdCj +05/03/2017,Sports_celeb,@ToreyKrug,Wow @Isaiah_Thomas 👀 +04/11/2017,Sports_celeb,@ToreyKrug,RT @MSU_Hockey: Welcome back home Danton Cole! https://t.co/YeIBfxAZex https://t.co/5ajaRhtZHF +03/12/2017,Sports_celeb,@ToreyKrug,Best part of today's game was Stone Cold's entrance music in the 3rd period. Well done @tdgarden @steveaustinBSR https://t.co/z3wOXAZxbV +03/09/2017,Sports_celeb,@ToreyKrug,You're the man Craig https://t.co/cr4hq7evTS +03/08/2017,Sports_celeb,@ToreyKrug,"My buddy is up for the Senior Class Award for NCAA hockey, please vote for @Chuckdonald9 +https://t.co/P59r34rYQ6" +03/05/2017,Sports_celeb,@ToreyKrug,RT @NHL: Take advice wherever you can. https://t.co/KRScZsrAOY +03/05/2017,Sports_celeb,@ToreyKrug,@kelllliebyrne @NHLBruins @NHL congrats guys! Very happy for you. +03/05/2017,Sports_celeb,@ToreyKrug,@fistbumpkid gotta make my buddy happy! Thanks for the fist bump and the good luck! +03/04/2017,Sports_celeb,@ToreyKrug,RT @Robsmith210: Another big night for @BelleTire AAA alums as 2 members of 07 @usahockey National Champs face off against each other @To… +02/27/2017,Sports_celeb,@ToreyKrug,Posting this a couple days late. Make sure you get over there! https://t.co/WAfjX8iuFd +01/31/2017,Sports_celeb,@ToreyKrug,RT @SullivanTire: Stop by our Weymouth Ma. location on Washington St this Thursday 5:30-6:30pm & meet @ToreyKrug https://t.co/LqOtDKVF4u +01/31/2017,Sports_celeb,@ToreyKrug,Looking forward to it! See you there https://t.co/T9lkR0itDW +01/26/2017,Sports_celeb,@ToreyKrug,"RT @SullivanTire: Meet Boston Bruin Torey Krug 5:30-6:30PM on February 2 at our Weymouth, MA location on Washington Street! #Bruins https:/…" +01/25/2017,Sports_celeb,@ToreyKrug,"RT @BeII_LetsTaIk: For every retweet this gets, @Bell will donate 5¢ towards helping people with mental illness. Lets see how much we can…" +12/25/2016,Sports_celeb,@ToreyKrug,Merry Christmas buddy! https://t.co/MFSEqHeZJa +12/20/2016,Sports_celeb,@ToreyKrug,"RT @USHL: Forward of the Week: Jack Adams scores 5-point weekend, takes over USHL scoring lead https://t.co/XjYb0YO2Pd #WhosNext https://t.…" +12/16/2016,Sports_celeb,@ToreyKrug,Thanks @originalstix for the phone case! Great idea for hockey fans. #Sparty +11/22/2016,Sports_celeb,@ToreyKrug,"RT @AM34: Praying for you Craig, keep fighting. #cunnycan" +11/22/2016,Sports_celeb,@ToreyKrug,RT @BobbyRobinsPro: Cunny is one of the great ones. Been thinking about that toothless laugh of his! Talk about a heart of gold. Prayers yo… +11/22/2016,Sports_celeb,@ToreyKrug,#Cunnycan +11/17/2016,Sports_celeb,@ToreyKrug,Congrats @RickPorcello on the CY Young! #hotice https://t.co/s1oQBdbaTU +11/14/2016,Sports_celeb,@ToreyKrug,@NickBadgio glory days +11/13/2016,Sports_celeb,@ToreyKrug,@KyleKrug1 @ZGolski @Krug39 @zkrug19 @MKrug7 maroon shirt night for the fans? Congrats jack. +11/11/2016,Sports_celeb,@ToreyKrug,Great group to help out on Veterans Day... They make a big impact for military families! https://t.co/sDYX1Acl2z +11/11/2016,Sports_celeb,@ToreyKrug,@fistbumpkid thanks buddy!! +11/09/2016,Sports_celeb,@ToreyKrug,"RT @NHLBruins: #NHLBruins wives surprise moms-to-be at @MarchofDimes Military Baby Shower. + +Read more: https://t.co/cMExn8Wt2t https://t.co…" +10/18/2016,Sports_celeb,@ToreyKrug,RT @Krug39: First day of practice! #bagger https://t.co/gd2pZC8ySi +10/14/2016,Sports_celeb,@ToreyKrug,I'd prefer not to. Thanks for the follow https://t.co/kvNLL3ajFD +10/12/2016,Sports_celeb,@ToreyKrug,RT @NickFoligno: @BlueJacketsNHL @CBJfoundation @nationwidekids @BostonChildrens https://t.co/2ySnt1ZbFT +10/09/2016,Sports_celeb,@ToreyKrug,I feel I may be watching this at some point today... metaphorically speaking of course. https://t.co/YTjxbskBiP +10/07/2016,Sports_celeb,@ToreyKrug,@ACzarnik7 move on bro +10/06/2016,Sports_celeb,@ToreyKrug,RT @davidortiz: Locked in. Lets do this one last time Boston. +10/06/2016,Sports_celeb,@ToreyKrug,Congrats @mstlouis_26 https://t.co/YoeNaYutGs +10/03/2016,Sports_celeb,@ToreyKrug,RT @yoursportsstore: Public signing event #BostonBruins Patrice Bergeron & @ToreyKrug 11/6 1-2pm at Shriner Sports Show in Wilmington. Tick… +10/03/2016,Sports_celeb,@ToreyKrug,RT @stoolpresidente: He's back!!!! https://t.co/wQQJUToPBR. #BradyIsComing #brady +09/28/2016,Sports_celeb,@ToreyKrug,RT @mbartkowski12: Some lady just walked into lululemon and asked if they had organic cotton. https://t.co/ZmVjt7bpul +09/26/2016,Sports_celeb,@ToreyKrug,@DTrinidadM4 I got you bro! +09/22/2016,Sports_celeb,@ToreyKrug,RT @TyRandell64: Medicals and Fitness testing [✔️] Pumped to hit the ice tomorrow morning! +09/22/2016,Sports_celeb,@ToreyKrug,@Matt_Beleskey @freshii 👀 +09/21/2016,Sports_celeb,@ToreyKrug,@11hockeyzach I sure do bud! Hope you're doing well +09/21/2016,Sports_celeb,@ToreyKrug,Congrats on the win @Bmarch63 https://t.co/AaLNDIJgyq +09/21/2016,Sports_celeb,@ToreyKrug,@TwiterTouches I'll try harder next time just for you. +09/20/2016,Sports_celeb,@ToreyKrug,RT @DAVIDprice24: I haven't done my due diligence for my teammate and it's well over due...RICK PORCELLO for cy!! Last night should have so… +09/18/2016,Sports_celeb,@ToreyKrug,RT @SInow: The Lions lost to the Titans in the most Lions way possible (by @RohanNadkarni) https://t.co/uWmFdfBpDP https://t.co/8xlHFlbHQq +09/18/2016,Sports_celeb,@ToreyKrug,@Bryan_McGrath what's wrong? +09/18/2016,Sports_celeb,@ToreyKrug,@scottzolak #Zoknows +09/18/2016,Sports_celeb,@ToreyKrug,@BMahoney11 @MSU_Football @NDFootball fair enough. Good luck! +09/18/2016,Sports_celeb,@ToreyKrug,@BMahoney11 @MSU_Football you must be a Brady fan +09/17/2016,Sports_celeb,@ToreyKrug,Let's go @MSU_Football !!! +09/16/2016,Sports_celeb,@ToreyKrug,@zkrug19 https://t.co/I0t211CO9p +09/14/2016,Sports_celeb,@ToreyKrug,@JosephKellyJr can't wait! https://t.co/OXvvFxi5Uc +09/12/2016,Sports_celeb,@ToreyKrug,@stoolpresidente all part of the plan. Catanzaro was rattled as well. Well played! +09/11/2016,Sports_celeb,@ToreyKrug,"RT @BigTenNetwork: We asked you to vote for the best @B1Gfootball play in the past decade! +And the winner is... https://t.co/gFjMUYzdz5" +09/09/2016,Sports_celeb,@ToreyKrug,Bringing #TheD to Boston @KidRock https://t.co/IxVnpNubCx +09/09/2016,Sports_celeb,@ToreyKrug,RT @RedSox: We're joining forces w/ the @NHLBruins next Wed for Bruins Night at Fenway but you could win a shirt right now! ⚾️➕🏒 https://t.… +09/09/2016,Sports_celeb,@ToreyKrug,@ThomasRhett I'll swing by to grab those hats! +09/08/2016,Sports_celeb,@ToreyKrug,"RT @DanyAllStar15: . @ShawnMcKenzieSN yeah, over/under Adam McQuaid blocks a slap shot with his face 10 times. Love that guy. Savage" +09/07/2016,Sports_celeb,@ToreyKrug,"RT @IV_BOSTON: Boston Bruins 2017 +#Bruins https://t.co/rJk7nJTW1v" +09/05/2016,Sports_celeb,@ToreyKrug,@Buccigross where can you see this live? NBC showing delayed +08/31/2016,Sports_celeb,@ToreyKrug,Had fun yesterday at Fenway for the Jimmy Fund telethon @13Photography #kcancer https://t.co/QR5q6FZPwX +08/30/2016,Sports_celeb,@ToreyKrug,"RT @Buster_ESPN: Boston is 20-7 in games started by Rick Porcello, 53-51 in all others." +08/30/2016,Sports_celeb,@ToreyKrug,RT @TheJimmyFund: .@NHLBruins player @ToreyKrug is live on @NESN to help #KCANCER! https://t.co/DI4V4sBD6a https://t.co/JP2dnCC48z +08/28/2016,Sports_celeb,@ToreyKrug,RT @theScore: Dustin Pedroia learned of his historic hitting streak watchng TV during bathroom visit. https://t.co/MkACv5MgBD https://t.co/… +08/26/2016,Sports_celeb,@ToreyKrug,#Fenway https://t.co/2aakh8F43j +08/26/2016,Sports_celeb,@ToreyKrug,A former colleague of mine has begun his @twitter campaign. @mbartkowski12 +08/26/2016,Sports_celeb,@ToreyKrug,RT @mbartkowski12: Yes it's me +08/23/2016,Sports_celeb,@ToreyKrug,"RT @ECHLThunder: The Wolfe Returns! The #ADKThunder have resigned their top 2016 playoff scorer, @wolfe_greg! https://t.co/jiQoOOjthC https…" +08/20/2016,Sports_celeb,@ToreyKrug,Can anyone tell me what time @zacbrownband goes on stage tonight at Fenway? https://t.co/x5T5dZoJMA +08/19/2016,Sports_celeb,@ToreyKrug,@hoosierjm26 take a hint bro +08/19/2016,Sports_celeb,@ToreyKrug,@Peterson1989 check out @IV_BOSTON +08/18/2016,Sports_celeb,@ToreyKrug,@NHLBruins heavy feet John @hoosierjm26 +08/15/2016,Sports_celeb,@ToreyKrug,1 year ago today! https://t.co/yCpvU2ZiSd +08/14/2016,Sports_celeb,@ToreyKrug,I know someone like this... https://t.co/CBLlaieJLU +08/14/2016,Sports_celeb,@ToreyKrug,"@joey_partridge used to wear 44, wanted to stay in 40s. @RichPeverley had 49 which I liked so I took 47!" +08/13/2016,Sports_celeb,@ToreyKrug,@MattShumlas I remember that weekend! +08/13/2016,Sports_celeb,@ToreyKrug,@tuukkatimeRI definitely thinking.... +08/13/2016,Sports_celeb,@ToreyKrug,@MrChewy_ love wearing 47. #TK47 +08/11/2016,Sports_celeb,@ToreyKrug,Back in the day! https://t.co/lEgWPXDu6c +08/09/2016,Sports_celeb,@ToreyKrug,This suit 🔥🔥 https://t.co/UlbYUOB6cj +08/07/2016,Sports_celeb,@ToreyKrug,👀 @CMcAvoy44 +08/07/2016,Sports_celeb,@ToreyKrug,@NickBonino was it karma driven? +08/04/2016,Sports_celeb,@ToreyKrug,RT @NHLBruins: Bruins announce Trent Whitfield & Jay Leach have been named assistant coaches of @AHLBruins: https://t.co/qyNMIpxl8N https:/… +08/04/2016,Sports_celeb,@ToreyKrug,RT @lenaweenews: Adrian College is preparing to celebrate Arrington Ice Arena and what the building has brought to the #AdrianMI... https:/… +07/31/2016,Sports_celeb,@ToreyKrug,@Mmato27 I know @pastrnak96 would +07/24/2016,Sports_celeb,@ToreyKrug,RT @DantonioMark: https://t.co/cbZQmDykA1 +02/22/2018,Sports_celeb,@drose,RT @countermoveco: Office Vibes https://t.co/rEWDQLn5tm +07/28/2017,Sports_celeb,@drose,"Las Vegas, catch me and the rest of my @adidasHoops fam hanging at #LVL3 today. See you there. https://t.co/jmpV1oAtmU" +07/25/2017,Sports_celeb,@drose,📍Las Vegas. July 27-28. Come hang with me at #LVL3 with @adidasHoops https://t.co/QqqYueWv8K +06/30/2017,Sports_celeb,@drose,S/O to my adidas fam for the gear! #crazy #giftedbyadidas @adidasoriginals https://t.co/8NoFA0g4Lr +06/01/2017,Sports_celeb,@drose,Need all my followers to me a favor & vote for @midwestdream_ for the 2017 TBT tourney. Voting ends at 12pm tomorro… https://t.co/NgCYoKgqDj +12/06/2016,Sports_celeb,@drose,Me and my Rook! # Knicks https://t.co/QIOAXQbMSi +09/03/2016,Sports_celeb,@drose,Doing work in @CallofDuty Infinite Warfare. My man @MichaelPhelps is next up! Who wants to play? #CODXP2016 #ad https://t.co/teOemgQWUE +07/21/2016,Sports_celeb,@drose,Check me out today at the @adidashoops #LVL3 experience at Planet Hollywood. I’ll be there from 4:30PM – 6:30PM https://t.co/iz8nvDN656 +06/24/2016,Sports_celeb,@drose,I'm ready for New York. https://t.co/Ib1GA4qbdc https://t.co/BP0uWIJfQX +12/02/2015,Sports_celeb,@drose,RT @chicagobulls: When Derrick Rose surprises you with a shopping spree! #NBACares https://t.co/K4tjjI1Nyr +12/02/2015,Sports_celeb,@drose,"RT @chicagobulls: As part of #NBACares Season of Giving, @drose took teens from @AftrSchoolMttrs on a shopping spree to @adidasHoops! https…" +11/11/2015,Sports_celeb,@drose,Looking for the Yeezy 350 boost? Go check out adidas Style Chicago at 50 East Oak Street. Raffle sign up ends Thursday at 5pm. +11/06/2015,Sports_celeb,@drose,"Thanks for all the love on my PJ shirt, get yours at https://t.co/mDMQdEK9tH + +@richgirlcandy @ziptanks https://t.co/nHrxG53pw9" +04/23/2015,Sports_celeb,@drose,My guys #JoakimNoah and #PauGasol are finalists for the #NBACommunityAssist award. RT to cast your vote +09/12/2014,Sports_celeb,@drose,Thank you @luciamartinez1_ for the gift! Keep working hard http://t.co/XrNjiHgu01 +01/23/2014,Sports_celeb,@drose,Usually don't post pics but couldn't help it. Thanks @adidasHoops for the HARD work! It motivates me to keep GRINDING http://t.co/WIlRUE32Yc +01/12/2014,Sports_celeb,@drose,CDR I'm happy to see you back. You deserve it man +06/11/2013,Sports_celeb,@drose,In the gym working out listening to Born Sinner. @JColeNC you made me a believer. I appreciate yo music. I'll be supporting June 18th. +03/07/2013,Sports_celeb,@drose,"I'm just having a bad day and want u to know ""The Boy"", lol, does have down days but thinking about yall having my BACK makes me feel good." +03/07/2013,Sports_celeb,@drose,"Bren Bren lol, Wayne, Reg, Greedy and the rest of the Rose family I LOVE U." +03/07/2013,Sports_celeb,@drose,"What's the most important thing in life? To me, it's FAMILY...If you take away the fame & fortune they're the ones that will always be there" +01/13/2013,Sports_celeb,@drose,Anything is possible. #blessed http://t.co/H5x9eYag +11/27/2012,Sports_celeb,@drose,I'm all in for my fans RT @adidashoops: WORLD PREMIERE: #TheReturn of @drose Episode 6 - all in http://t.co/B7zVbokU +11/06/2012,Sports_celeb,@drose,My lil man PJ http://t.co/6dCsbhyT +11/06/2012,Sports_celeb,@drose,http://t.co/MPeEokAT +11/06/2012,Sports_celeb,@drose,http://t.co/fcY9VW95 +10/21/2012,Sports_celeb,@drose,because five year went pass and it seem like I just left there! Be safe and Gotti what's up! +10/21/2012,Sports_celeb,@drose,I just wanted to get that off my chest and let yall know that I miss everything about that city +10/21/2012,Sports_celeb,@drose,I know yall remember the good times we had and how we had to make a name for ourselves. +10/21/2012,Sports_celeb,@drose,had. Memphis will always be my second home no matter what! Yall showed me a lot of love and for that I will always stay loyal to you all. +10/21/2012,Sports_celeb,@drose,I was up early thinking about how time goes by. I miss the times I had at the University of Memphis with my teammates and how much fun we +10/19/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 5 - Drive http://t.co/ndar6ke4 +10/18/2012,Sports_celeb,@drose,S/o to Taj McWilliams- Franklin of the Minnesota Lynx for wearing the D. Rose 3 in the WNBA finals...Good Luck! +10/05/2012,Sports_celeb,@drose,The D Rose 3 launched today! Check them out and let me know what you think #TheReturn http://t.co/F6PYWn2t +10/04/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 4 - Push. http://t.co/QikltRcS +10/02/2012,Sports_celeb,@drose,"RT @chicagobulls: #Bulls Captains pose at #mediaday. @drose, @LuolDeng9, @JoakimNoah, @MisterCBooz @ Berto Center http://t.co/DPAgqcRb" +09/27/2012,Sports_celeb,@drose,Got in my first game of #NBA2K13 at the @2ksports launch party. Y'all gotta check this game out! http://t.co/3FNn7tz7 +09/25/2012,Sports_celeb,@drose,New @adidashoops commercial for my new shoe the #drose3. Tell me what you think #TheReturn http://t.co/gtqsC56I +09/20/2012,Sports_celeb,@drose,Best pizza in Chicago? That's easy... @giordanospizza +09/19/2012,Sports_celeb,@drose,"RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 3 – +Focus http://t.co/AzESfrbo" +09/13/2012,Sports_celeb,@drose,My new @adidashoops shoe the #drose3!! What do you all think? #TheReturn http://t.co/SRzk825M +09/13/2012,Sports_celeb,@drose,Just arrived at the @adidashoops event to launch my new shoe!! #TheReturn +09/12/2012,Sports_celeb,@drose,Chi town til I die! +09/12/2012,Sports_celeb,@drose,I pray everyday for US for real. I know I shouldn't be saying this because I hoop and it's not my lane but I feel like ppl should hear this. +09/12/2012,Sports_celeb,@drose,I don't like that fact that OUR kids are not in school and that's the only thing we have to SAVE these kids. +09/12/2012,Sports_celeb,@drose,I'm sitting here just thinking how sad it is that my city got to go through this. I love my city and everyone in it even my haters! +09/10/2012,Sports_celeb,@drose,Hope the CPS gets a deal done soon...we need our kids in school! #TheReturn +09/07/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIER: #TheReturn of @drose Episode 2- HOPE http://t.co/6wzZUUek +09/05/2012,Sports_celeb,@drose,Praying for my city man... #TheReturn +08/27/2012,Sports_celeb,@drose,Me and my Mom/Dad lol. Love her to death! #thereturn http://t.co/3gDo5KqF +08/24/2012,Sports_celeb,@drose,It’s crazy to see all of the love and support from you all. Thank you. I am blessed. So glad you like my video. #TheReturn +08/22/2012,Sports_celeb,@drose,Happy to share this with you all!! RT @adidashoops: WORLD PREMIERE: The Return of @drose Episode 1- BELIEF #TheReturn http://t.co/lLlAA7lQ +08/17/2012,Sports_celeb,@drose,Go follow my boys @BO_EE_TeamWinN and @callme_jd ASAP +08/17/2012,Sports_celeb,@drose,Blessed!!! Bowling with the FAM #TheReturn http://t.co/BIzCPShc +08/16/2012,Sports_celeb,@drose,Hard work isn't enough. You got to believe. #theReturn +08/15/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: The Return of D Rose. Every day @drose is getting stronger and faster. This is his story: http://t.co/r ... +08/15/2012,Sports_celeb,@drose,Feels good to be back in the gym... http://t.co/mrhU7FQk +08/14/2012,Sports_celeb,@drose,Thank you all for the love and support. I feel blessed to have such great fans. Good to be back in Chicago after training all summer in LA +08/12/2012,Sports_celeb,@drose,Congrats @USAbasketball for getting the gold! s/o to @russwest44 @kingjames @kevinlove @kdtrey5 @cp3 and everyone on #teamusa #olympics +08/12/2012,Sports_celeb,@drose,I want to wish everyone on @USAbasketball good luck today. Bring home the gold! Wish I could be out there with you all #teamusa #olympics +06/29/2018,Sports_celeb,@KyrieIrving,My bro @JayTatum0 and I are humbled by all of the support for our @ProCamps Youth Basketball Clinic. After hearing… https://t.co/DZP7Kuc9AY +06/21/2018,Sports_celeb,@KyrieIrving,"Dear Youngbloods, @Pepsi and @PlayersTribune are bringing you the fundamentals—it ain’t about getting famous, it’s… https://t.co/m437aNj9oO" +06/05/2018,Sports_celeb,@KyrieIrving,"Because, nothing works up your thirst for an ice cold @Pepsi like getting buckets #ad https://t.co/q4BzBFEAcw" +05/16/2018,Sports_celeb,@KyrieIrving,Looking forward to co-hosting my @ProCamps youth basketball clinic with @jaytatum0 this summer in Boston! Click for… https://t.co/pxamjockmY +03/17/2018,Sports_celeb,@KyrieIrving,Help @KevinHart4real find a Courtsidekick...enter for the #CourtSidekickContest at https://t.co/RXAavqClWx for a ch… https://t.co/FyUZSHDNjl +03/15/2018,Sports_celeb,@KyrieIrving,RT @Young_Athletes: Registration is now open for the 2018 Kyrie Irving/Rod Strickland Summer Basketball League. @KyrieIrving and @rod_stric… +02/12/2018,Sports_celeb,@KyrieIrving,The Legend is ready to ball on the big screen. Get ready to watch #UncleDrew in theaters June 29! #JustDrewIt… https://t.co/RGw88q9Urt +02/02/2018,Sports_celeb,@KyrieIrving,He gets buckets. He gets @Pepsi. He gets a #SBLII commercial. And the @uncledrewfilm is dropping soon. Check out Un… https://t.co/3Tcr5whUO8 +01/08/2018,Sports_celeb,@KyrieIrving,Jaylen Brown #NBAVote +01/08/2018,Sports_celeb,@KyrieIrving,Al Horford #NBAVote +01/08/2018,Sports_celeb,@KyrieIrving,Jayson Tatum #NBAVote +11/17/2017,Sports_celeb,@KyrieIrving,Proud to support @footlocker and their #GreatnessDoesGood campaign. Join me and go out and donate! #WeekofGreatness https://t.co/9tKziAEmWB +10/27/2017,Sports_celeb,@KyrieIrving,All love and good times when we are all chopping it up! Go check it out. +10/27/2017,Sports_celeb,@KyrieIrving,"Check out Coach Auriemma's @Genopodcast today, w/ myself and @suebird talking life, basketball, and more!! https://t.co/DxP2CjrkGZ" +09/10/2017,Sports_celeb,@KyrieIrving,#11 for Mr. Miagi aka my favorite player aka my best friend. Love you Dad. always https://t.co/gcH77Oj3dk +09/07/2017,Sports_celeb,@KyrieIrving,2K18 For the Culture https://t.co/MKEgW9Aqf3 +09/05/2017,Sports_celeb,@KyrieIrving,"RT @SportsCenter: Exclusive first look: Kyrie Irving and the cast of the upcoming @UncleDrewFilm. + +Can you name all the NBA stars? https://…" +08/10/2017,Sports_celeb,@KyrieIrving,RT @NBA2K: Introducing this year's #NBA2K18 cover athlete @KyrieIrving in his new @cavs uniform! #2KFirstLook https://t.co/WUE9uasQGA +07/21/2017,Sports_celeb,@KyrieIrving,"https://t.co/GpvHXiEng4 +Short Story Long with @dramadrama check it out." +07/06/2017,Sports_celeb,@KyrieIrving,"In case you missed it, I surprised my dad for #fathersday and remodeled his house on #MyHouzz. Check it out: https://t.co/OTml3rUAGI" +06/30/2017,Sports_celeb,@KyrieIrving,I'm adding another session to my Youth 🏀 @ProCamps presented by @NBA2K next week! Make sure you sign up soon. https://t.co/G6fWUgotvA +06/25/2017,Sports_celeb,@KyrieIrving,Love seeing my @nba and @wnba family participate in the #NYCPride March! All Love +04/06/2017,Sports_celeb,@KyrieIrving,RT @Young_Athletes: Registration is now open for the 2017 Kyrie Irving/Rod Strickland Summer Basketball League. @KyrieIrving and @rod_stric… +03/02/2017,Sports_celeb,@KyrieIrving,RT @skullcandy: Our search begins for a band to perform on the #Skullcandy stage @VansWarpedTour! Sign up now! #SKULLCANDYSHOWDOWN https://… +02/28/2017,Sports_celeb,@KyrieIrving,"Look good, play good! Best of luck to my Duke Blue Devils tonight as they rock the latest #KYRIE3 https://t.co/2nk99N1mBo" +02/20/2017,Sports_celeb,@KyrieIrving,Thank You New Orleans for the great hospitality for #NBAAllStar and the @NBA for putting on a great production. Thank you Fans!! +02/17/2017,Sports_celeb,@KyrieIrving,RT @NBA2K: https://t.co/pcG5znX59o +02/17/2017,Sports_celeb,@KyrieIrving,"RT @pepsi: ""The All Star game is not necessarily about the votes, it's about getting buckets."" - #UncleDrew https://t.co/TgSMMbidbb" +02/03/2017,Sports_celeb,@KyrieIrving,#TBT from the set with QuestLove https://t.co/ba2HOi297G https://t.co/JCGLvALWpx +01/15/2017,Sports_celeb,@KyrieIrving,Tristan Thompson #NBAVote +01/15/2017,Sports_celeb,@KyrieIrving,Kevin Love #NBAVote +01/12/2017,Sports_celeb,@KyrieIrving,Get after my @NikeTraining workout in the NTC App. #STOPEXERCISING #STARTTRAINING https://t.co/JOHjwbYDx6 +01/10/2017,Sports_celeb,@KyrieIrving,Yessir https://t.co/9eb3YKtpVk +12/30/2016,Sports_celeb,@KyrieIrving,Love using my Cavs in @NBA2K. Pick it up on sale and start your New Year right! +12/13/2016,Sports_celeb,@KyrieIrving,RT @NdotSmitty: It's TCA Tuesday! Text NOLAN to 20222 and $5 goes to help teens with cancer. Text & RT! #GiveTCATuesday #TeamNolan #TeenCan… +12/06/2016,Sports_celeb,@KyrieIrving,To all my young fans - you might have more in common with me than you think #GOBIG @KidsFootLocker https://t.co/2F6DmUSAmj +12/05/2016,Sports_celeb,@KyrieIrving,"Truly proud of all who stood and fought for #NoDALP Progress was made, but the fight is much bigger. Let's Keep pushing towards what is True" +11/28/2016,Sports_celeb,@KyrieIrving,Yessir! Thanks @Nike https://t.co/bXL1zbWNOw +11/22/2016,Sports_celeb,@KyrieIrving,"My prayers and thoughts are with everyone protesting at Standing Rock, I am with you all. #NoDAPL Defend the Sacred." +11/17/2016,Sports_celeb,@KyrieIrving,The #WeekofGreatness is back @footlocker and @kidsfootlocker starting this Saturday! Don’t miss it! https://t.co/o7mQ8Qpq5h +11/15/2016,Sports_celeb,@KyrieIrving,Appreciate the Love brother. @rickyrozay https://t.co/Y8D1rQa9zr +11/12/2016,Sports_celeb,@KyrieIrving,"""Obession is passion on curiosity steroids"" +Keep Pushing. Keep Learning. Keep Growing." +10/24/2016,Sports_celeb,@KyrieIrving,Just an inside look at life for me outside the game. Enjoy and I hope it can inspire you in some way. Thanks @SInow https://t.co/IC16PQ1VXY +10/20/2016,Sports_celeb,@KyrieIrving,"Yessir @KingJames, but don't forget about my game 5 fire. #whatsnext https://t.co/ft1I0sELch" +09/25/2016,Sports_celeb,@KyrieIrving,"Rest in Power Jose Fernandez. The world lost a great baseball player, but more importantly an even better person. Prayers up for his family." +09/16/2016,Sports_celeb,@KyrieIrving,Today's #2KDay. You already know the best day of my year. This is a close 2nd @NBA2K https://t.co/0RvBiFalks https://t.co/u1x7GiY6zW +09/16/2016,Sports_celeb,@KyrieIrving,Back to the #TheLand Sat 9/24 for @BestBuddiesOhio 1st Kyrie Friendship Walk & B-Ball Challenge. Sign up to support: https://t.co/6mRS0syV7e +09/09/2016,Sports_celeb,@KyrieIrving,I’ll get u next time on the tennis courts @Money23Green. It's #TimeToAssemble @NBA2K #NBAK17 https://t.co/0RvBiFalks https://t.co/veUuNU1VrS +07/24/2016,Sports_celeb,@KyrieIrving,This was hilarious! We surprised some fans along with @MarriottRewards. Watch the video! #FriendOfMR https://t.co/ysXFLUGsTI +07/12/2016,Sports_celeb,@KyrieIrving,Yessir! We are live on @CallofDuty.  Ready to watch? https://t.co/0CMdR5LXg8 #spon https://t.co/OAKfpXX5Hq +07/04/2016,Sports_celeb,@KyrieIrving,"RT @dukeblueplanet: Kyrie goes 1-on-1 with The GOAT + +🖥 WATCH: https://t.co/mmQsx6Im5b https://t.co/8da4CITBZI" +07/04/2016,Sports_celeb,@KyrieIrving,RT @WNBA: Tiffany Hayes does her best @KyrieIrving impression! #WNBATopPlays #WatchMeWork https://t.co/gTwFioPyzM +07/01/2016,Sports_celeb,@KyrieIrving,RT @nikebasketball: The Shot. Mission accomplished. #tbt #AlwaysBelieve https://t.co/PwFBvmHsr9 +07/01/2016,Sports_celeb,@KyrieIrving,Yessir @KingJames https://t.co/eDt2iFVlot +06/20/2016,Sports_celeb,@KyrieIrving,RT @KidsFootLocker: Thanks to @KyrieIrving #NBAFinals performance #KidsFootLocker will donate 190 Nike Kyries to @BGCA_Clubs Cleveland! htt… +05/17/2016,Sports_celeb,@KyrieIrving,"The Ky-Rispy Kreme, hot out the oven. Yessir! #Kyrie2. https://t.co/ZVP1gzAwhx" +05/10/2016,Sports_celeb,@KyrieIrving,'92 was a special year. #Kyrache https://t.co/Av3zyZvwdy +05/05/2016,Sports_celeb,@KyrieIrving,"Happy birthday brother @chrisbrown +#AllLove through whatever." +04/30/2016,Sports_celeb,@KyrieIrving,Watch highlights of me or watch me do my laundry. Or both. Only on @go90 +04/14/2016,Sports_celeb,@KyrieIrving,Great times last week with Marriott Rewards Premier Cardmembers and @jalenrose in Chicago #MarriottCard @chase https://t.co/fzPxolb40e +04/14/2016,Sports_celeb,@KyrieIrving,Mother Effin amazed!!!!!! Left the game on his terms and his way! Legend engraved in history forever!! +04/13/2016,Sports_celeb,@KyrieIrving,"Nothing but LOVE for Kobe, but I'll still break that old man's ankles… #LegendsLiveOn @NBA2K https://t.co/yCjCo8CiVy" +04/12/2016,Sports_celeb,@KyrieIrving,"Check it out!! +https://t.co/kHVnS1SQ64" +04/12/2016,Sports_celeb,@KyrieIrving,@skullcandy and I are taking it to another level. I'm happy to announce that I’m now an owner of the brand. +04/11/2016,Sports_celeb,@KyrieIrving,Prepare and play off Instinct. #mambaday https://t.co/zTNTFdG8E1 +04/11/2016,Sports_celeb,@KyrieIrving,"RT @cavs: Tomorrow, help us with an off-court assist to collect baby items for @DVCAC. #CavsCare INFO: https://t.co/7s727n1ME2 https://t.co…" +04/10/2016,Sports_celeb,@KyrieIrving,"RT @nikebasketball: History is written one word at a time. +Join us and tell Kobe your last word. #MambaDay https://t.co/ffrHhYEbBt +https://…" +04/07/2016,Sports_celeb,@KyrieIrving,IT’S A REVOLUTION. #NIKEFREE #JUSTDOIT https://t.co/0mrVqh6sLD +04/07/2016,Sports_celeb,@KyrieIrving,@stlindgren My brother Ryan Miller is an absolute Legend! And He's family so thats my guy. +03/30/2016,Sports_celeb,@KyrieIrving,Need y'all to Vote for my brother @Tsu_Surf to be the 2016 @XXL Freshmen 10th Spot! https://t.co/FuJGrgQPlx +03/15/2016,Sports_celeb,@KyrieIrving,Gotta have options!! https://t.co/D043UHSGP0 +03/14/2016,Sports_celeb,@KyrieIrving,"From my first bucket, to my Ky-reer High. None of this is possible without you, Dad. This is for you. #KYRIE2 https://t.co/wCn0Q0Gt7I" +03/07/2016,Sports_celeb,@KyrieIrving,"Control what you can control. Sounds so cliche, but its the bold truth. +Good Morning!!" +02/27/2016,Sports_celeb,@KyrieIrving,Funny song titles @BC24CLE @salma_PG24 @mattburroughs. Got me hyped to hit the studio! My @nikebasketball fam will hook you up. #KYRIE2 +02/27/2016,Sports_celeb,@KyrieIrving,RT @mattburroughs: @KyrieIrving KY-RAZY TRAIN (THE KILLA KROSSOVER KY-REMIX) do I get to pick it up court side or you need my address? #KYR… +02/27/2016,Sports_celeb,@KyrieIrving,RT @salma_PG24: @KyrieIrving You are my Ky-ryptonite #KYRIE2 +02/27/2016,Sports_celeb,@KyrieIrving,RT @BC24CLE: @KyrieIrving Ky of the Tiger #KYRIE2 +02/23/2016,Sports_celeb,@KyrieIrving,@KristineLeahy for sure!! +02/23/2016,Sports_celeb,@KyrieIrving,@KristineLeahy Ghost are definitely real and those bed bugs were staring me in my eyes when i woke up. nothing ghost about that one lol +02/23/2016,Sports_celeb,@KyrieIrving,LOL All of the above!!! +02/23/2016,Sports_celeb,@KyrieIrving,"Options on the day off, Start a new book, Go get some shots up, Swag on people in @NBA2K , or dominate in @CallofDuty .orr All of the above." +02/20/2016,Sports_celeb,@KyrieIrving,800 million copies sold lol. What should I name my next Kyrie-oke single? Best answer wins a signed album. #KYRIE2 https://t.co/mctHrqmKfB +02/20/2016,Sports_celeb,@KyrieIrving,Sheesh @Dame_Lillard +02/20/2016,Sports_celeb,@KyrieIrving,Through the good and bad you remained the same fierce competitive player. A true pleasure… https://t.co/pH5tQx1kpc +02/19/2016,Sports_celeb,@KyrieIrving,Hey @Usher you dig the vocals fam? #Kyrieoke #KYRIE2 https://t.co/A6opPUmtDP +02/18/2016,Sports_celeb,@KyrieIrving,Bout to have the whole R&B game shook. The Kyrie-oke has officially dropped #KYRIE2 https://t.co/W2xXv4rJWq +02/13/2016,Sports_celeb,@KyrieIrving,Imitated but never duplicated. Check it out! Yessir @nikebasketball @footlocker #Kyrie2 https://t.co/njHb1IYFQu +02/09/2016,Sports_celeb,@KyrieIrving,Behold! My latest trick. The @NIKEiD Ky-Razzle Dazzle. #KYRIE2 https://t.co/8fH1DcYtU6 +01/28/2016,Sports_celeb,@KyrieIrving,Fire! https://t.co/W3H13Xjmno +01/28/2016,Sports_celeb,@KyrieIrving,"""Obession is passion on curiosity steroids"" +#Cantstop +#wontstopworking" +01/28/2016,Sports_celeb,@KyrieIrving,enjoy them!! https://t.co/CwXWWweWVM +01/28/2016,Sports_celeb,@KyrieIrving,SWAG https://t.co/At6hiq7WhT +01/28/2016,Sports_celeb,@KyrieIrving,@bbreznick @kevinlove how could we fall from the top if their team is still winning games? +01/26/2016,Sports_celeb,@KyrieIrving,"RT @nikebasketball: Today @KyrieIrving is taking over. Stay tuned to go behind the scenes with Kyrie on Snapchat. + +👻NikeBasketball https://…" +01/17/2016,Sports_celeb,@KyrieIrving,Kevin Love #NBAVote +01/17/2016,Sports_celeb,@KyrieIrving,Lebron James #NBAVote +01/15/2016,Sports_celeb,@KyrieIrving,Thanks for the support @WojVerticalNBA https://t.co/m6pn5k8BeG +01/08/2016,Sports_celeb,@KyrieIrving,#THISYEARIWILL continue 2 be Hungry & Humble. Go to @skullcandy 2 find out how you could win XT Free Earbuds. https://t.co/783RN5qX3p +01/01/2016,Sports_celeb,@KyrieIrving,It's an INFERNO type of day. #Kyrie2 +01/01/2016,Sports_celeb,@KyrieIrving,"Left hand works the dribble, right hand gets the syrup. #BringYourGame Watch the full film: https://t.co/u5rFZvwVIn https://t.co/Yqo6ROuOXZ" +12/30/2015,Sports_celeb,@KyrieIrving,Fire coming soon. #Kyrie2 #Inferno https://t.co/EkgeACMOCX +12/30/2015,Sports_celeb,@KyrieIrving,Fire coming soon. #Kyrie2 #Inferno https://t.co/Q2z7rPEqQp +12/25/2015,Sports_celeb,@KyrieIrving,Where do you practice? #BringYourGame https://t.co/0uJXdijXVx +12/21/2015,Sports_celeb,@KyrieIrving,Work hard and continue to climb no matter the obstacles. I'm excited to be back and happy to share my story. https://t.co/tEorQppten +12/19/2015,Sports_celeb,@KyrieIrving,I'm back. +12/18/2015,Sports_celeb,@KyrieIrving,Got the W and my brother @chrisbrown 's album has uploded to my phone. #Greatnight +12/16/2015,Sports_celeb,@KyrieIrving,I had to make extra pancakes for some unexpected guests this morning #BringYourGame https://t.co/KwSveOltBM +12/16/2015,Sports_celeb,@KyrieIrving,"Sorry to dwindle the news, but I won't be returning tmrw. It was wrongfully reported. When I do come back you'll hear it directly from me." +12/15/2015,Sports_celeb,@KyrieIrving,Still a dream. https://t.co/W85Vik6XUK +12/11/2015,Sports_celeb,@KyrieIrving,Tomorrow! You think you can beat me in @NBA2K on XBOX One? I’ll send you a KYRIE 2 if you can. #2Kyrie2 https://t.co/jjF9gdPuL2 +12/10/2015,Sports_celeb,@KyrieIrving,This Saturday I am hosting a special event in @NBA2K. Be at MyPARK at 6PM EST sharp. #2Kyrie2 https://t.co/ewAIyHJDS0 +12/09/2015,Sports_celeb,@KyrieIrving,"https://t.co/3zSiQCVWeT +check it out!!" +12/06/2015,Sports_celeb,@KyrieIrving,nothing like good ol' Gaming talk. https://t.co/54UgILglF2 +12/03/2015,Sports_celeb,@KyrieIrving,"haha, I appreciate all that you all do for our world. https://t.co/bmgzpSuVtX" +12/01/2015,Sports_celeb,@KyrieIrving,Thank you for having me on!! #GivingTuesday https://t.co/yU4Z9qdqeY +12/01/2015,Sports_celeb,@KyrieIrving,Thank you for everything you all continue to do for our great world. https://t.co/XmSUVnIYNQ +11/25/2015,Sports_celeb,@KyrieIrving,"Azurie Elizabeth Irving 11/23/15 +35 hours of labor from her great mother and she came into the world… https://t.co/z1cBekk690" +11/23/2015,Sports_celeb,@KyrieIrving,i took a hiatus lol but i still appreciate the support of everyone for the game of basketball and myself. https://t.co/WvUmJoOU39 +11/23/2015,Sports_celeb,@KyrieIrving,line up crazy!! https://t.co/nHX67fHR2o +11/23/2015,Sports_celeb,@KyrieIrving,"@lexuswebb its my favorite part as well. I miss her, but i know she's watching me every second i breathe." +11/23/2015,Sports_celeb,@KyrieIrving,@damonhargejr #workworkwork lol +11/23/2015,Sports_celeb,@KyrieIrving,"@GusTrolly i like to describe my style as ""r&b skater"" lol" +11/23/2015,Sports_celeb,@KyrieIrving,@Barnette77 very soon! +11/23/2015,Sports_celeb,@KyrieIrving,@AnquanBoldin @pepsi Appreciate it brother +11/23/2015,Sports_celeb,@KyrieIrving,yessir. great design!! enjoy. https://t.co/v1FRIw8VgV +11/23/2015,Sports_celeb,@KyrieIrving,lol man epic TBT https://t.co/TfGFOsrlS1 +11/23/2015,Sports_celeb,@KyrieIrving,"RT @nicekicks: These guys...@KyrieIrving @imanshumpert. Cavs get the W! (h/t @ @Joseph_Talcott) + +https://t.co/nyEhhDDFk2" +11/14/2015,Sports_celeb,@KyrieIrving,"Prayers for the victims, families, and people of France affected by this horrible Tradgedy. #WeAreWithYouParis" +11/12/2015,Sports_celeb,@KyrieIrving,The wait is over! Uncle Drew brought his game to MIA and caught up with some old friends. #UncleDrew https://t.co/ki6pbr483B +11/09/2015,Sports_celeb,@KyrieIrving,"RT @pepsi: It’s been a long time coming, get ready for some new Uncle Drew on 11/12. #UncleDrew +https://t.co/W10QbwFZMS" +11/05/2015,Sports_celeb,@KyrieIrving,Thanks for the sick Zombies package @CallofDuty. Who's ready to play #BlackOps3? https://t.co/a5jOidSsum +10/25/2015,Sports_celeb,@KyrieIrving,Will be everlasting. #RestinPeace +10/25/2015,Sports_celeb,@KyrieIrving,"Rest in Paradise Coach Flip. I didn't personally know him, but the effect he had on the game and many players lives that have come before me" +10/11/2015,Sports_celeb,@KyrieIrving,start with one battle and end up watching like 15 lol past and new. nothing like some battle bars +10/11/2015,Sports_celeb,@KyrieIrving,"Watching this Roc vs Calicoe battle, sheeshh!!! #Toomanybars" +10/09/2015,Sports_celeb,@KyrieIrving,Congrats to my little brother @BryceAiken on his committment to Harvard. Couldn't be more proud. http://t.co/B7t5WNrNMB +10/05/2015,Sports_celeb,@KyrieIrving,#stilladream https://t.co/EkOSbZkiak +09/22/2015,Sports_celeb,@KyrieIrving,Facts. https://t.co/Td0zeR6mBB +09/21/2015,Sports_celeb,@KyrieIrving,Fletcher’s story will change how you drive. Eyes up. Phone down. #ItCanWait #ad http://t.co/0Q1MCoe00L http://t.co/U76Le6aMxs +09/16/2015,Sports_celeb,@KyrieIrving,"Thank you @AppleMusic +Yall have made my life 10x easier when listening to music. +#MyPlaylists is en fuego" +09/14/2015,Sports_celeb,@KyrieIrving,RT @jhairston15: Thank you Lord for waking me up this morning and starting me on my way #Blessed +09/14/2015,Sports_celeb,@KyrieIrving,Twas' a good day. +09/14/2015,Sports_celeb,@KyrieIrving,RT @nickemandjoey: Hey @matthewdelly @KyrieIrving @kevinlove How about a retweet for @DJNickAtKnight who is 3yrs cancer free today! https:/… +09/08/2015,Sports_celeb,@KyrieIrving,haha i need one of those. https://t.co/a61iVosM5b +09/08/2015,Sports_celeb,@KyrieIrving,Appreciate you. Keep working and find #YourWHY. https://t.co/hl9QeXdzuM +09/08/2015,Sports_celeb,@KyrieIrving,haha thats hilarous. 8th Grade Roosevelt Middle School Swag Champ lol https://t.co/UfwJhchpMX +09/08/2015,Sports_celeb,@KyrieIrving,Fire!! https://t.co/ymrcvFg87A +09/08/2015,Sports_celeb,@KyrieIrving,@joshgrant7725 I appreciate it. Dope color way +09/08/2015,Sports_celeb,@KyrieIrving,@ZayBriscoe Destroy this year. +09/08/2015,Sports_celeb,@KyrieIrving,Remember who you watched to get that in your game. Ill see ya soon. https://t.co/urT7QXaO5c +08/31/2015,Sports_celeb,@KyrieIrving,#VOTEFETTYWAP +08/30/2015,Sports_celeb,@KyrieIrving,Swag!! any jersey will due. https://t.co/thvCL6Wo5e +08/30/2015,Sports_celeb,@KyrieIrving,RT @champssports: Game inspired from all over the world. @PSDunderwear @KyrieIrving http://t.co/KiYQSsbXyu +08/28/2015,Sports_celeb,@KyrieIrving,Appreciate the Hospitality @callofduty Great to test out #BlackOpsIII as well. Can't wait for the drop. https://t.co/fx6gfTNMGT +08/21/2015,Sports_celeb,@KyrieIrving,"RT @SoleCollector: An on-foot look at the ""Australia"" Nike Kyrie 1: http://t.co/MG87G8FgyB http://t.co/IJwFwCf7A5" +08/21/2015,Sports_celeb,@KyrieIrving,Summer just got better. Loading up the PS4 for the @CallofDuty #BO3Beta now. Come play too... http://t.co/e4dmPGfJPM +08/19/2015,Sports_celeb,@KyrieIrving,Swag!! #Duke https://t.co/vPJegQcSjP +08/18/2015,Sports_celeb,@KyrieIrving,yessir bro. Keep killin! https://t.co/1yM4XQNYxw +08/18/2015,Sports_celeb,@KyrieIrving,RT @gseves: Jacob is on point for his first day or school in his @KyrieIrving gear! Can't wait for @cavs season! http://t.co/McCMFyzpEP +08/13/2015,Sports_celeb,@KyrieIrving,"Happy Birthday Mom. I miss you and I wish you could see me now, but I know you're up there prideful… https://t.co/9bhFb9fgPv" +08/06/2015,Sports_celeb,@KyrieIrving,RT @shegotgame: @sbird10 custom NikeID @nikebasketball Kyrie 1s she'll be wearing in today's @wnba All-Star game. 🔥🔥🔥 #WNBAAllStar http://t… +08/04/2015,Sports_celeb,@KyrieIrving,"""@GeeQJerry: Say yeah - http://t.co/2S3M9LULK0"" check it out!!" +08/02/2015,Sports_celeb,@KyrieIrving,#AndSTILL @RondaRousey +07/30/2015,Sports_celeb,@KyrieIrving,Yo bro @KDTrey5 im at @sonicdrivein what should i get? http://t.co/PKjrV9zvcB +07/27/2015,Sports_celeb,@KyrieIrving,"RT @cavs: Welcome back to #TheLand, mate! + +OFFICIAL RELEASE: http://t.co/J581gDaWA6 http://t.co/89GTwFCldB" +07/26/2015,Sports_celeb,@KyrieIrving,When you have flavors at your camp. #StillaDream https://t.co/Oq3Yi8HERt +07/26/2015,Sports_celeb,@KyrieIrving,#StillaDream https://t.co/bEWORMXlCw +07/16/2015,Sports_celeb,@KyrieIrving,Listen to The Really Big Show on @ESPNCleveland this morning to win a spot in my basketball @ProCamps +07/14/2015,Sports_celeb,@KyrieIrving,That was truly a show!! #HRDerby congrats to Todd Frazier +07/14/2015,Sports_celeb,@KyrieIrving,This derby is getting real... +07/14/2015,Sports_celeb,@KyrieIrving,Just nasty Albert Pujols...#HRDERBY +07/07/2015,Sports_celeb,@KyrieIrving,Never missed the game this much ever in my life. Can't take that feel of a basketball going through the net for granted. Ever. +06/05/2015,Sports_celeb,@KyrieIrving,I want to thank everyone for the well wishes. Saddened by the way I had to go out but it doesn't take… https://t.co/zXY3mtV2vg +04/07/2015,Sports_celeb,@KyrieIrving,RT @nikebasketball: Play for a legend. Win for the legacy. #justdoit http://t.co/0A02bpLeUv +04/07/2015,Sports_celeb,@KyrieIrving,Yessssiiiirrrrr!!!! Way to go DUKE!!!!!!!! +04/05/2015,Sports_celeb,@KyrieIrving,RT @nikebasketball: Final. Not finished. #ShockTheGame @dukeblueplanet http://t.co/dO3WZBqCRC +04/05/2015,Sports_celeb,@KyrieIrving,Yessir!! Way to go Duke!! ONE more. +02/13/2015,Sports_celeb,@KyrieIrving,I'll be at the Kids @footlocker Herald Square today at 6pm! Come stop by! +02/09/2015,Sports_celeb,@KyrieIrving,"RT @KingJames: By k1irving """"Grammy Night"" Drew and kingjames"" +#GrammyFamily #TheLand #StriveForGreatness http://t.co/vURFI7zgz5" +02/02/2015,Sports_celeb,@KyrieIrving,"Game for the ages, crazy!!!" +02/01/2015,Sports_celeb,@KyrieIrving,Huge Congrats #MVP @AaronRodgers12 +01/26/2015,Sports_celeb,@KyrieIrving,#Coach1K Congrats coach!! Legendary. +12/22/2014,Sports_celeb,@KyrieIrving,"Thank you @usabasketball for the award. Truly means alot to me, my family, and the city of Cleveland. Glad I could share it with them." +12/04/2014,Sports_celeb,@KyrieIrving,RT @nikebasketball: Deceptively quick. The #KYRIE1. Available December 23. http://t.co/fZ0ezJeUpU +11/06/2014,Sports_celeb,@KyrieIrving,Check it out. @skullcandy is giving away 4 major prizes!! http://t.co/CKf5R28NR7 +10/27/2014,Sports_celeb,@KyrieIrving,“@Tanman1771: Hey @KyrieIrving which jersey shall I wear on opening night?? http://t.co/36jlCJkGyi” all dope options!! +10/25/2014,Sports_celeb,@KyrieIrving,"“@eastinfection: Alright @cavs @KyrieIrving , which one do I go with for opening night? http://t.co/EICoUjATwG” great collection!! Any one!!" +10/24/2014,Sports_celeb,@KyrieIrving,Thank you to all the fans for coming out to the event...#GoCavs +10/23/2014,Sports_celeb,@KyrieIrving,RT @Ballislife: 9th Grade PG Damon Harge Is Next UP! Shows Off Crazy Quickness & Handles at Lucas Camp http://t.co/a6ZDFWcCYF http://t.co/3… +10/22/2014,Sports_celeb,@KyrieIrving,"“@DaLIzMoBeta21: @KyrieIrving What you know about him young man??” Lol just a lil bit, great music nonetheless" +10/22/2014,Sports_celeb,@KyrieIrving,🎶🎶 Kenny G +10/14/2014,Sports_celeb,@KyrieIrving,“@ComplexMag: Hoop Dreams was released on this day 20 years ago. http://t.co/yLDRhKtk0H http://t.co/IQqefK0c96” true motivation right there. +10/12/2014,Sports_celeb,@KyrieIrving,Beautiful Sunday in Cleveland +10/10/2014,Sports_celeb,@KyrieIrving,RT @cavs: .@KyrieIrving greets a few families from Best Buddies International after practice #NBAGlobalGames http://t.co/5xOEinY2l1 +10/09/2014,Sports_celeb,@KyrieIrving,RT @cavs: Smiles for days! We've added NEW behind-the-scenes photos to our #BSLS14 [GALLERY]: http://t.co/l5kUvJvDMo #TBT http://t.co/kApMC… +10/09/2014,Sports_celeb,@KyrieIrving,“@cavs: Kyrie knows it's going in... Walkoff https://t.co/iHQ65LvA0n” yessir +10/08/2014,Sports_celeb,@KyrieIrving,@WizKaharie haha +10/08/2014,Sports_celeb,@KyrieIrving,"Just a sprained ankle from practice, in a walking boot for precautionary reasons. Not that serious, I'm all good." +10/08/2014,Sports_celeb,@KyrieIrving,@Aceofhearts111 dream big +06/26/2018,Sports_celeb,@BenSimmons25,RT @rpjward: Nike isn't messing around after @BenSimmons25 won #NBA Rookie of the Year. This is corner of Flinders and Swanston Sts in down… +06/26/2018,Sports_celeb,@BenSimmons25,RT @espn: Rookie of the Year (noun) - Ben Simmons https://t.co/KFeZvB0LJM +06/22/2018,Sports_celeb,@BenSimmons25,RT @livvalice: #savvystrong 🖤💝 https://t.co/Epw1y1fAEP +06/15/2018,Sports_celeb,@BenSimmons25,RT @blakeney96: 🤫🤐 #AllWorkNoTalk +06/14/2018,Sports_celeb,@BenSimmons25,RT @brkicks: .@BenSimmons25 inspiring kids in China with @nikebasketball https://t.co/ClJni9rYeH +06/12/2018,Sports_celeb,@BenSimmons25,Day 1 in China 🇨🇳✌🏽️ https://t.co/XaEyX1yJiQ +05/27/2018,Sports_celeb,@BenSimmons25,#losangeles My Godfather @CoachDPatrick & my Brother @LTribeSimmons are running a camp this summer! Hit the link an… https://t.co/2LfH0HzOGB +04/13/2018,Sports_celeb,@BenSimmons25,@livvalice 😂😂😂😂 +04/12/2018,Sports_celeb,@BenSimmons25,RT @ESPNNBA: Ben Simmons may have more Magic in his game than anyone we've ever seen. https://t.co/JvbjQw7ALS +04/12/2018,Sports_celeb,@BenSimmons25,RT @NBA_305: Ben Simmons & Magic Johnson. Enjoy! 💛🏀 https://t.co/xG7uZFPisO +04/11/2018,Sports_celeb,@BenSimmons25,@darealjlaw 😂 +04/11/2018,Sports_celeb,@BenSimmons25,"RT @Dcorrigan50: ben simmons did not red shirt + +ben simmons broke his foot and literally couldn't play basketball for half a year + +in what…" +04/11/2018,Sports_celeb,@BenSimmons25,"RT @Lakers: After 384 games in the @nbagleague, Andre Ingram walks onto the court for the first time as an @NBA player. + +At 32 years, 4 mon…" +04/10/2018,Sports_celeb,@BenSimmons25,"RT @oh_sohilarious: Ben Simmons can't be an All-Star because he is a rookie. + +But also... + +Ben Simmons can't be the Rookie of the Year bec…" +04/05/2018,Sports_celeb,@BenSimmons25,@OpTic7Teen 👀 +04/05/2018,Sports_celeb,@BenSimmons25,"RT @shawngill27: Twitter fam, please help my group raise money for the Philadelphia Animal Welfare Society! Our goal is $1,250! Please retw…" +04/05/2018,Sports_celeb,@BenSimmons25,@L4fckop @CelticsIn2 @SportsCenter 😂 +04/04/2018,Sports_celeb,@BenSimmons25,"RT @SportsArePhilly: Voting time 😤 + +Retweet if you believe Ben Simmons is the NBA Rookie of the Year #KiaROY #sweepstakes #HereTheyCome ht…" +04/03/2018,Sports_celeb,@BenSimmons25,PUBG w/KAT https://t.co/fiWt3wQ7kl +04/03/2018,Sports_celeb,@BenSimmons25,@KarlTowns @FortniteGame lets go +04/02/2018,Sports_celeb,@BenSimmons25,RT @z0mgItsHutch: We are joined by @BenSimmons25 who's begrudgingly decided to give Fortnite another shot. https://t.co/IKxDXM1yIA +04/02/2018,Sports_celeb,@BenSimmons25,"RT @sixers: .@BenSimmons25 is the Rookie of the Year. #KiaROY + +VOTE » https://t.co/TOTYNNnpkl https://t.co/nUpYk2UV4Q" +04/02/2018,Sports_celeb,@BenSimmons25,Time for some pubg who’s down ? +04/02/2018,Sports_celeb,@BenSimmons25,@JoshOG 😂😂🤟🏽 +04/01/2018,Sports_celeb,@BenSimmons25,@JoshOG duos +03/31/2018,Sports_celeb,@BenSimmons25,All this money being made and they get a swag bag at the end of it. https://t.co/V6cYE7lGFL +03/31/2018,Sports_celeb,@BenSimmons25,"RT @SLAM_HS: Geico Nationals Champion ✅ +Undefeated season (35-0) ✅ +Next up, Duke. https://t.co/Y7jLWdcqyj" +03/31/2018,Sports_celeb,@BenSimmons25,"@Pamaj I’m going to give it another shot, let me know when we are playing 🤟🏽" +03/31/2018,Sports_celeb,@BenSimmons25,RT @DuceVasquez: @BenSimmons25 When you can't play PUBG but realize you're dating Tinashe https://t.co/OOEhrvy3Cn +03/31/2018,Sports_celeb,@BenSimmons25,When you on the road and can’t play pubg https://t.co/Vuptypr86Z +03/30/2018,Sports_celeb,@BenSimmons25,RT @Tinashe: ME SO BAD ft @Frenchmonta and @tydollasign out now 💕💦 https://t.co/ZXFej1B8gn https://t.co/INbnZlvVzJ +03/29/2018,Sports_celeb,@BenSimmons25,RT @Tinashe: Midnight🎾💓💦 album pre order + new song https://t.co/idVcj720WH +03/29/2018,Sports_celeb,@BenSimmons25,@LosPollosTV Pubg +03/29/2018,Sports_celeb,@BenSimmons25,@KarlTowns 👀 PUBG? +03/29/2018,Sports_celeb,@BenSimmons25,@Timberwolves @KarlTowns 😂😂 +03/26/2018,Sports_celeb,@BenSimmons25,RT @KarlTowns: Prayers out to Zeke Upshaw’s family 🙏🏽🙏🏽🙏🏽 +03/24/2018,Sports_celeb,@BenSimmons25,@JoelEmbiid #Facts +03/22/2018,Sports_celeb,@BenSimmons25,RT @brkicks: A detailed look at @BenSimmons25 in custom Hyperdunks by @ubiqlife 🔥 https://t.co/D8v9x834fz +03/22/2018,Sports_celeb,@BenSimmons25,@76ersArmageddon @ColinCowherd 😂 https://t.co/zf1KPhA2EV +03/20/2018,Sports_celeb,@BenSimmons25,@MightyMouseUFC let’s run duos on pubg +03/20/2018,Sports_celeb,@BenSimmons25,RT @SportsCenter: Ben Simmons is the first rookie in NBA history to drop 15 assists and 0 turnovers in a triple-double. #SCFacts https://t.… +03/19/2018,Sports_celeb,@BenSimmons25,@DennisChambers_ 😂😂😂😂 +03/19/2018,Sports_celeb,@BenSimmons25,@z0mgItsHutch @FortniteGame 😂alright I’ll give it a try +03/14/2018,Sports_celeb,@BenSimmons25,@MeekMill is featured in the latest issue of @RollingStone. Read about social injustice & more:… https://t.co/OHWASe2ONQ +03/11/2018,Sports_celeb,@BenSimmons25,RT @uninterrupted: @BenSimmons25 Shout out for reppin' the movement! #IAmMore +03/03/2018,Sports_celeb,@BenSimmons25,RT @MichaelSkolnik: They got video games in Australia. https://t.co/4YTuH7HAh9 +02/28/2018,Sports_celeb,@BenSimmons25,"RT @35_Fitz: Philly, I appreciate my short time with you guys, great fans and a great future." +02/23/2018,Sports_celeb,@BenSimmons25,What’s better ??? @Tinashe strongly believes one is clearly better and she is clearly wrong..🙄 +02/21/2018,Sports_celeb,@BenSimmons25,@OpTicH3CZ @DXRacer @z0mgItsHutch Just let me know so we can play. Thanks brother 💪🏽 +02/21/2018,Sports_celeb,@BenSimmons25,@OpTicH3CZ @DXRacer I also need help 😂 +02/21/2018,Sports_celeb,@BenSimmons25,RT @hdawwggg: Spotted on Chapel Street. @BenSimmons25 is that you bro? 🤔 https://t.co/vBu62Os8Xv +02/08/2018,Sports_celeb,@BenSimmons25,@darealjlaw https://t.co/xApxGCCgcF +02/08/2018,Sports_celeb,@BenSimmons25,Should I stream pubg? +02/06/2018,Sports_celeb,@BenSimmons25,RT @UNDEFEATEDinc: .@BenSimmons25 for Beats By Dre / UNDEFEATED. Available now at All Chapter Stores and https://t.co/rPhV7ZP2Fc https://t.… +02/05/2018,Sports_celeb,@BenSimmons25,Big shout out to the @Eagles ! That was a crazy game & to see the city celebrate like that was something else… https://t.co/TSvJDG422h +01/31/2018,Sports_celeb,@BenSimmons25,Best episode for sure 😂😂 https://t.co/fWz0xaxX5z +01/31/2018,Sports_celeb,@BenSimmons25,😂 +01/25/2018,Sports_celeb,@BenSimmons25,🤭 https://t.co/oJ4HwWKsJs +01/21/2018,Sports_celeb,@BenSimmons25,Bring it home today @Eagles #BirdGang 🦅 +01/21/2018,Sports_celeb,@BenSimmons25,@TheWorldof_AJ Do work today 🙌🏽 +01/16/2018,Sports_celeb,@BenSimmons25,@JackButland_One Thank you mate ✌🏽️ +01/15/2018,Sports_celeb,@BenSimmons25,It’s Go Time 😤 +01/15/2018,Sports_celeb,@BenSimmons25,“The time is always right to do what is right” - MLK #MartinLutherKingDay +01/15/2018,Sports_celeb,@BenSimmons25,"RT @sixers: ""Our city has preserved his presence as his legacy will never cease to inspire."" + +#MLK50 History with @JuliusErving https://t.c…" +01/15/2018,Sports_celeb,@BenSimmons25,@diplo Appreciate it 👍🏽 +01/15/2018,Sports_celeb,@BenSimmons25,It’s about that time again ⏰ https://t.co/WpKRX6CoPr +01/15/2018,Sports_celeb,@BenSimmons25,@DannyCipriani87 Appreciate it mate 👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@STEEZtheGREAT About to have you looking very pretty. https://t.co/jMo7KHPmpC +01/14/2018,Sports_celeb,@BenSimmons25,Let’s get this done though RT! @STEEZtheGREAT 😂😂😂 https://t.co/xDYsbFkzCR +01/14/2018,Sports_celeb,@BenSimmons25,@Dchristmas22 Appreciate it man 💪🏽 +01/14/2018,Sports_celeb,@BenSimmons25,I actually looked back smh 😒 https://t.co/xEdOf5BCyJ +01/14/2018,Sports_celeb,@BenSimmons25,🤷🏽‍♂️🎬📽😂 https://t.co/BDVkDjWLcr +01/14/2018,Sports_celeb,@BenSimmons25,RT @JusAnderson1: 🚨 #NBAVote @BenSimmons25 Retweet the Hell outta this... Thanks! +01/14/2018,Sports_celeb,@BenSimmons25,@JusAnderson1 🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,Tough @Jonahbolden43 💪🏽 https://t.co/wrvqoQ1bck +01/14/2018,Sports_celeb,@BenSimmons25,@kochie_online 😂 ok I’m gonna have to fact check that +01/14/2018,Sports_celeb,@BenSimmons25,1 Day Left of voting for the NBA All Star Game. The support from fans & the support I’ve seen coming out of Philly… https://t.co/1i7vqNuRWg +01/14/2018,Sports_celeb,@BenSimmons25,Thank you @kochie_online https://t.co/pkzrhsTouM +01/14/2018,Sports_celeb,@BenSimmons25,"@sunriseon7 This is dope 🙌🏽 Thank you Will Smith, need to get you to a game when you’re done enjoying my homeland… https://t.co/N1aByTSvJz" +01/14/2018,Sports_celeb,@BenSimmons25,@Strauchanie 😂 +01/14/2018,Sports_celeb,@BenSimmons25,@WJChambers4 @sixers 🙌🏽🙌🏽🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@markhunt1974 Thank you 💥🥊 +01/14/2018,Sports_celeb,@BenSimmons25,"RT @sixers: @Eagles #NBAVote @BenSimmons25 + +#FlyEaglesFly https://t.co/dxGrbVH5L1" +01/14/2018,Sports_celeb,@BenSimmons25,@swandane Thank you 👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@tyson_pedro_ 💥🥊 Thank you +01/14/2018,Sports_celeb,@BenSimmons25,@SP_10 @NBAAllStar Appreciate it✌🏽️ +01/14/2018,Sports_celeb,@BenSimmons25,Ok now for @LSUBasketball to get that W 😤 #GeauxTigers +01/14/2018,Sports_celeb,@BenSimmons25,@CollingwoodFC 👍🏽👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers Thank you! 🇦🇺 +01/14/2018,Sports_celeb,@BenSimmons25,#56 🙌🏽 https://t.co/G069Mc91R3 +01/14/2018,Sports_celeb,@BenSimmons25,@KingJames Appreciate it 🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,RT @JuliusErving: Send @BenSimmons25 to the all-star game! #NBAVote +01/14/2018,Sports_celeb,@BenSimmons25,@BobDaTruth713 @Eagles https://t.co/PyG3Q7cPaZ +01/13/2018,Sports_celeb,@BenSimmons25,#NBAVOTE @TheWorldof_AJ +01/13/2018,Sports_celeb,@BenSimmons25,@JuliusErving Humbled to have your support Dr Thank you 🙌🏽 +01/13/2018,Sports_celeb,@BenSimmons25,Let’s Go @Eagles 🦅🏈 +01/12/2018,Sports_celeb,@BenSimmons25,"RT @andrewbogut: Logistically, makes sense that Australia is too far for an NBA game. Wait, China, what? Thats $urprising! https://t.co/u4d…" +01/12/2018,Sports_celeb,@BenSimmons25,Laters London 🇬🇧 +01/12/2018,Sports_celeb,@BenSimmons25,"RT @NBL: If the country of Georgia can almost get Zaza to the #NBA all-star game, surely Australia can get @BenSimmons25 across the line.…" +01/11/2018,Sports_celeb,@BenSimmons25,@cj_wentz @JoelEmbiid Speedy recovery mate 🙌🏽 +01/11/2018,Sports_celeb,@BenSimmons25,RT @MNightShyamalan: #nbavote @BenSimmons25 Show the Londoners what a triple double is! (Should be paying attention to the film editor but… +01/11/2018,Sports_celeb,@BenSimmons25,@MNightShyamalan I’m not mad at it. Thanks 👍🏽 +01/10/2018,Sports_celeb,@BenSimmons25,Got shooters on deck in London @JJRedick 🇬🇧 https://t.co/qQO7yLFlpu +01/10/2018,Sports_celeb,@BenSimmons25,"RT @ScottONeil: #nbavote @BenSimmons25 #LondonBridgeIsn’tFallingDown +Retweet to Vote https://t.co/7qVFZqIPQm" +01/10/2018,Sports_celeb,@BenSimmons25,RT @AshBenzo: Fam retweet this as many times as possible and send my friend @BenSimmons25 to the All Star Game in LA #nbavote #greatamerica… +01/10/2018,Sports_celeb,@BenSimmons25,🙌🏽 amazing American https://t.co/0UqX6rzx2p +01/09/2018,Sports_celeb,@BenSimmons25,@ShelleyCronau @BasketballAus @AUSParalympics Thank you 🙌🏽 +01/09/2018,Sports_celeb,@BenSimmons25,@nspeitel1 @JoelEmbiid Looking like a $100 Bill 💵 +01/09/2018,Sports_celeb,@BenSimmons25,Appreciate it Coach #GeauxTigers https://t.co/ghLrM030de +01/09/2018,Sports_celeb,@BenSimmons25,@ScottONeil Thanks Scott 💪🏽 +01/09/2018,Sports_celeb,@BenSimmons25,😤PHILLY ✈️ LONDON💂🏼 https://t.co/n8EBFwpPZk +01/08/2018,Sports_celeb,@BenSimmons25,"RT @ESPNAusNZ: Ben Simmons #NBAVOTE + +Get retweeting NOW. https://t.co/QxGVWfloU5" +01/08/2018,Sports_celeb,@BenSimmons25,@marcmurphy3 Thank you✌🏽️ +01/08/2018,Sports_celeb,@BenSimmons25,🇬🇧💂🏽‍♀️🏀 +01/08/2018,Sports_celeb,@BenSimmons25,@TheWorldof_AJ Appreciate you 🙌🏽 Go get that W #eagles +01/07/2018,Sports_celeb,@BenSimmons25,@Strauchanie @pjhelliar @sixers Coincidence 🤔 +01/07/2018,Sports_celeb,@BenSimmons25,@Giovann1z Thanks ✌🏽️ +01/06/2018,Sports_celeb,@BenSimmons25,@HGrimmNBA https://t.co/8HB6yPRv0C +01/06/2018,Sports_celeb,@BenSimmons25,🥊 #OTTNO #NBAVOTE Ben Simmons https://t.co/vprbfO6rws +01/06/2018,Sports_celeb,@BenSimmons25,@DaveSholler Appreciate it Dave 👍🏽 +01/06/2018,Sports_celeb,@BenSimmons25,"RT @LSUBasketball: OH MY! Take a look at the highlights as LSU defeated No. 11 Texas A&M in College Station, marking the highest ranked tru…" +01/06/2018,Sports_celeb,@BenSimmons25,I see you @LSUBasketball 🔥 +01/06/2018,Sports_celeb,@BenSimmons25,😤 +01/05/2018,Sports_celeb,@BenSimmons25,"You guys knew this was coming right? Having a crazy season, I know enough about wine to know that some get better w… https://t.co/IDsZ4pFNK4" +01/05/2018,Sports_celeb,@BenSimmons25,@Holla_At_Rob33 @JoelEmbiid Let’s get that W🔥 +01/05/2018,Sports_celeb,@BenSimmons25,@LG_Blount Appreciate you man 🙌🏽 +01/05/2018,Sports_celeb,@BenSimmons25,🚀🤷🏽‍♂️👨🏽‍🚀 https://t.co/co63N4Jyev +01/05/2018,Sports_celeb,@BenSimmons25,@PuntKing23 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@lezew Chur✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@livvalice ❤️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @livvalice: At 4 he said he wanted to play NBA. +LETS MAKE HIM AN ALL STAR + +Ben Simmons #NBAVote https://t.co/DoT3SnkCQp" +01/05/2018,Sports_celeb,@BenSimmons25,@digiskunk Photoshop? +01/05/2018,Sports_celeb,@BenSimmons25,@Joao_machado00 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@Skillish Lol idk 🤷🏽‍♂️ Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@WriterLeader247 Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@danieljcarrr 🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,"RT @118Carter: @BenSimmons25 can I get a retweet for a fan from Darwin Australia 🇦🇺 + +#NBAVote Ben Simmons" +01/05/2018,Sports_celeb,@BenSimmons25,RT @TheKevinRice: #NBAVote Joel Embiid https://t.co/7mlbMQ04O0 +01/05/2018,Sports_celeb,@BenSimmons25,@Jj70981706Jj 🇯🇵✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @JoeHockey: C’mon Australia Ben needs our votes to get be the first Aussie into the NBA All Stars Game +So retweet + #NBAVote @BenSimmons…" +01/05/2018,Sports_celeb,@BenSimmons25,@JoeHockey Thanks Joe 👍🏽🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,@AdamandSymon #1 & #3 is true & #2 thank you +01/05/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers @Strauchanie https://t.co/LOf9HfVfP5 +01/05/2018,Sports_celeb,@BenSimmons25,@sixers @pjhelliar 😂 +01/05/2018,Sports_celeb,@BenSimmons25,"Ok ok I gotta eat 😂 Massive thanks to all the voters out there, really really appreciate it ✌🏽️" +01/05/2018,Sports_celeb,@BenSimmons25,@samjacobs24 Thanks mate +01/05/2018,Sports_celeb,@BenSimmons25,@MFC_clark 😂 +01/05/2018,Sports_celeb,@BenSimmons25,@HipJoeyD @CallofDuty https://t.co/XIeH9u4E5j +01/05/2018,Sports_celeb,@BenSimmons25,@philadelph_215 🤔 +01/05/2018,Sports_celeb,@BenSimmons25,@Eber7y HTTP 404 Not Found Error +01/05/2018,Sports_celeb,@BenSimmons25,@AtomicDrizz1e 🇦🇺✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@travyates Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@Tom_Thorp Looking forward to that trip 🇬🇧 +01/05/2018,Sports_celeb,@BenSimmons25,@matthewdelly Appreciate it man #NBAVOTE @matthewdelly 🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,@brianmburns10 Not sure it works like that but thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@TimHipsley Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@NBL Pops should have known it’s always game time 😤😂 +01/05/2018,Sports_celeb,@BenSimmons25,@josh_green6 Keep balling young man 👀 +01/05/2018,Sports_celeb,@BenSimmons25,@GovbergMarc Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@racheldiane96 Thanks for the vote! +01/05/2018,Sports_celeb,@BenSimmons25,@malcon___ Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@3rdDegreeBurns8 You’re welcome +01/05/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers Guys is #59 available? +01/05/2018,Sports_celeb,@BenSimmons25,@WillStangler Cajun Wings are nice though FR. Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@Sean_DeLancey Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@ChrisReive Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@lololololiver Straya 🤙🏽🤙🏽 +01/05/2018,Sports_celeb,@BenSimmons25,@19895530 👍🏽👍🏽 +01/05/2018,Sports_celeb,@BenSimmons25,@EdwinPavisic Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@brianmburns10 Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@matthillman10 20 ... Nah jokes probably around 1 Million 😂 +01/05/2018,Sports_celeb,@BenSimmons25,@Adrien_bdu 🇫🇷✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @BallersDU: From @BallersDU to another BALLER from down Under + +Make sure you RT to make your vote count!!! + +Let’s get some 🇦🇺 Representa…" +01/05/2018,Sports_celeb,@BenSimmons25,@LetEmKnoBigSean Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@kate_880 ... thank you too though +01/05/2018,Sports_celeb,@BenSimmons25,@Cake_Eater_ @JoelEmbiid @NBAAllStar 🤣 +01/05/2018,Sports_celeb,@BenSimmons25,"@mickyb273 Thanks, it’s very humbling." +01/05/2018,Sports_celeb,@BenSimmons25,@runningfades @JoelEmbiid Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@YumyumHsu Thank you very much. Looking forward to it. +01/05/2018,Sports_celeb,@BenSimmons25,"@krABBEY_patty_ Don’t die, thank you!" +01/05/2018,Sports_celeb,@BenSimmons25,@sixersforever76 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@acjr_20 Thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@jrabbott14 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@kurtwearshats #photographervote @kurtwearshats +01/05/2018,Sports_celeb,@BenSimmons25,@JoshJenkins24 Thanks 👍🏽 +01/05/2018,Sports_celeb,@BenSimmons25,"RT @FoxBasketball: 🚨 ATTENTION, AUSTRALIA! 🚨 + +Let’s get @BenSimmons25 into the #NBA All Star Game! + +#NBAVOTE https://t.co/nHoHvILvql" +01/05/2018,Sports_celeb,@BenSimmons25,@BradKelsey @JoelEmbiid ✅✅ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @kelianinho: Come on vote for the future of the NBA @BenSimmons25 ! + +#NBAVote +Retweet= Vote ✅ https://t.co/I375IKVTLM" +01/05/2018,Sports_celeb,@BenSimmons25,@daggles07 Nice pick up +01/05/2018,Sports_celeb,@BenSimmons25,@The_6God_ Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@Sann_chezzz @JoelEmbiid Thanks +01/05/2018,Sports_celeb,@BenSimmons25,RT @ziyadmerhebi: Best PUBG player in the league #NBAVOTE Ben Simmons @BenSimmons25 +01/05/2018,Sports_celeb,@BenSimmons25,@ziyadmerhebi 😂 Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@JustRae11 Hi 🇵🇭 +01/05/2018,Sports_celeb,@BenSimmons25,@SeanKlavans @JoelEmbiid ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@JTLuvGuru Thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@E_B_TParkes Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@isabeIIIa Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,"RT @sixers: It's up to you... send @JoelEmbiid & @BenSimmons25 to LA for the @NBAAllStar Game! + +2-FOR-1 #NBAVOTE » https://t.co/1Y7M23uEqQ…" +01/05/2018,Sports_celeb,@BenSimmons25,@KB7FIFA ✌🏽️ +06/28/2018,Sports_celeb,@RobGronkowski,"Here is the link to the shirt since many of you are asking +#AmericanMade +https://t.co/y6VCHOSFOO" +06/28/2018,Sports_celeb,@RobGronkowski,What a day at @JBLM_PAO outside Seattle. I got to hang out with a lot of true warriors that protect our Great count… https://t.co/6VgZgIz4P2 +06/28/2018,Sports_celeb,@RobGronkowski,Way more jacked! 😂 https://t.co/ykw6Kf3Nl5 +06/26/2018,Sports_celeb,@RobGronkowski,"Good times back home for a good cause. Who Thinks my shirt came off on the dance floor? + +Check it out:… https://t.co/kEPqV5NoyD" +06/20/2018,Sports_celeb,@RobGronkowski,"Thinking outside the BOX 😜 & diversifying my portfolio!📈 Healthy, easy and most importantly @snowteethwhiten works… https://t.co/Y50RDa5hOd" +06/20/2018,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: Want to feel on top of the world? Run for a cause. Run the @FalmouthRR @charityteams for @RobGronkowski @GronkNation Team… +06/19/2018,Sports_celeb,@RobGronkowski,Want game day tix to see me play? Want to meet me? How about some autographed merch!? You can have it all by enter… https://t.co/jjU1TATWa9 +06/15/2018,Sports_celeb,@RobGronkowski,"Happy Pre Fathers Day to the best one out there... The CREATOR. +#FathersDay +https://t.co/Li5xqrYA11" +06/14/2018,Sports_celeb,@RobGronkowski,"Nothing is more American than babes, burgers and Gronk Spikes on the 4th! 🇺🇲🇺🇲🇺🇲#Merica + +Get in on the action:… https://t.co/MEfpRmidxs" +06/11/2018,Sports_celeb,@RobGronkowski,Thanks @Shaws & @Star_Mrkt for giving these lucky winners an opportunity to hang out with me on the field! We had a… https://t.co/oMGGqoulXF +06/11/2018,Sports_celeb,@RobGronkowski,Another year down at the #GronkKidsCamp! 🏈 The energy at this camp was off the charts. 📈📈📈 Thanks to everybody tha… https://t.co/xyLRsPsqTd +06/10/2018,Sports_celeb,@RobGronkowski,"RT @WHR: ""He's big, strong, fast, beautiful, handsome - so yes, we have a lot in common"" - @RobGronkowski 😂 + +Gronk met Gronk at the @Belmon…" +06/10/2018,Sports_celeb,@RobGronkowski,Thank you @CitiPrivatePass for helping these campers get #CloserToPro and inside the huddle at my Annual @ProCamps!… https://t.co/PTpUCMkDr5 +06/06/2018,Sports_celeb,@RobGronkowski,"Back to Camp!🏈👍 +https://t.co/KSliUKmqZm" +06/04/2018,Sports_celeb,@RobGronkowski,"Fresh and Smooth +https://t.co/Nctw5a6DEv" +06/03/2018,Sports_celeb,@RobGronkowski,I’ll be so much faster now! Thanks @buzzforkids for the fresh new summer cut! Great day with the kids #7xbuzzee… https://t.co/EuDb4Wxjyd +06/03/2018,Sports_celeb,@RobGronkowski,Yes!!!! https://t.co/c1W0OZib1J +06/01/2018,Sports_celeb,@RobGronkowski,"Getting down and derby! Gronkowski the Horse 🐴 races next Saturday 6/9 at Belmont. 🐴🐴🐴 +Order this weekend to get o… https://t.co/ZsFNViFIrY" +05/31/2018,Sports_celeb,@RobGronkowski,NBA finals and NHL finals. A great week for sports! 🏒 🏀 Lots of history going down! +05/31/2018,Sports_celeb,@RobGronkowski,"Video Games while using my Snow Teeth Whitening Kit! Get yours now using code ""Gronk"" for 25% off! It's easy chee… https://t.co/IjF29uZu3v" +05/30/2018,Sports_celeb,@RobGronkowski,Be #GronkAwesome 💪. Hungry for gains? https://t.co/twianiIw9y #teammuscletech #sponsored https://t.co/mEqw41YuLf +05/26/2018,Sports_celeb,@RobGronkowski,RT @DJWhooKid: Me and @steveaoki bumping his new smash #Pretender on @Shade45 for my #MemorialDayWeekend mix 💥💥💥💥💥 #WhoosHouse #WhoolywoodS… +05/25/2018,Sports_celeb,@RobGronkowski,"What do people expect to happen on 6/9? - The official Gronk National Holiday + +https://t.co/sdqPzZ7fAB" +05/23/2018,Sports_celeb,@RobGronkowski,RT @SixStarPro: G R O N K S P I K E 🍉💀@RobGronkowski #gronkspike #PatsNation #summer2018 #gronk https://t.co/N2b6mP7jCE +05/23/2018,Sports_celeb,@RobGronkowski,He is so handsome! Hehe https://t.co/AwEujKd8BP +05/16/2018,Sports_celeb,@RobGronkowski,RT @charityteams: Join @RobGronkowski @GronkNation @FalmouthRR Team! Get guaranteed entry and run to support youth sports. Go to https://t.… +05/15/2018,Sports_celeb,@RobGronkowski,"Thanks for all the Birthday Wishes!!! 29 and feeling damn fine!😜 +https://t.co/QF8jbUc60v" +05/05/2018,Sports_celeb,@RobGronkowski,That was a great basketball game to watch. Nice win @celtics +04/30/2018,Sports_celeb,@RobGronkowski,"I present to you my first protein bar that I developed with my team @muscletech! Does it taste like a candy bar, ye… https://t.co/YK7c8KhVms" +04/27/2018,Sports_celeb,@RobGronkowski,"Off season means no hiding under a helmet. Let's get those teeth SMOOTH and WHITE! @snowteethwhiten +Who's with me?… https://t.co/m9GfPKFrfH" +04/26/2018,Sports_celeb,@RobGronkowski,Who remembers when the most hyped person ever got drafted? You should have all known I was going to be out of contr… https://t.co/LTJ0X8wO7w +04/26/2018,Sports_celeb,@RobGronkowski,"RT @uninterrupted: .@RobGronkowski is back! And he's super, super pliable. https://t.co/W69RpYzfWe" +04/26/2018,Sports_celeb,@RobGronkowski,"I’m back for another year, and so is my Youth 🏈 Clinic! Click 👇 for info on my @CitiPrivatePass Youth Football Clin… https://t.co/p8R5cSMEwW" +04/25/2018,Sports_celeb,@RobGronkowski,"I met with coach today and informed him I will be back for the 2018 season with the Pats. I have been working out,… https://t.co/jKzab4e3b1" +04/23/2018,Sports_celeb,@RobGronkowski,It’s unfortunate Gronkowski the horse will not be able to race in the upcoming Kentucky Derby due to an illness. I… https://t.co/dOvyCNYItO +04/23/2018,Sports_celeb,@RobGronkowski,JuSt taking it to levels that people have never seen before. That’s all. https://t.co/wsuU8mzziD +04/19/2018,Sports_celeb,@RobGronkowski,"RT @KentuckyDerby: Gronk now part owner of Gronk.👊🏽 + +@RobGronkowski buys stake in namesake #KyDerby horse: https://t.co/XUOVgCDNJF https://…" +04/18/2018,Sports_celeb,@RobGronkowski,"It's official, I am part of the Gronkowski Team! +GRONK ACQUIRES A STAKE IN GRONK ... THE KENTUCKY DERBY-BOUND RACEH… https://t.co/Gdps4CbXMX" +04/17/2018,Sports_celeb,@RobGronkowski,Give it up for the Gronk Nation Marathon team who bleasted it though the #Bostonmarathon yesterday and helped raise… https://t.co/Q8KNGEBOwo +04/17/2018,Sports_celeb,@RobGronkowski,"Shout out to some awesome kids I got to recently meet, Ben & Ryan. Stay Strong!!! #MSDStrong #ParklandStrong https://t.co/lfMd5EtNKa" +04/16/2018,Sports_celeb,@RobGronkowski,"That time @calliebundy threw a laser 😂. With the squad @sixstar + @gronkfitness +https://t.co/n9cjBJwInc #ad… https://t.co/a5b09ArxpQ" +04/16/2018,Sports_celeb,@RobGronkowski,"I’ll never forget those famous words. 5 years later, I’m proud to collab with my man @davidortiz on this Still Our… https://t.co/wMikx1vcH9" +04/15/2018,Sports_celeb,@RobGronkowski,5 years later IT’S STILL OUR CITY! Help me and Big Papi raise money for the kids of Boston and get your Still Our C… https://t.co/l0NNfe5NH9 +04/14/2018,Sports_celeb,@RobGronkowski,RT @DeionSanders: All athletes please understand this is a business 1st. Nothing comes b4 the business part of professional sports. You can… +04/14/2018,Sports_celeb,@RobGronkowski,RT @davidortiz: Proud to team up with one of Boston’s finest....my brother @RobGronkowski ...we created this t-shirt to raise $ for the Gro… +04/13/2018,Sports_celeb,@RobGronkowski,"It's #FlexFriday w/@GronkFitness +#BandsAmakeHerDance https://t.co/pdtVteKg9g" +04/12/2018,Sports_celeb,@RobGronkowski,Sox vs Yankees brawls/rivalry is back. The action I love to see! +04/11/2018,Sports_celeb,@RobGronkowski,"From Gronk's Showtime Comedy Special and my Gronk Cruise, my buddy @FinesseMitchell is shooting his 1hr comedy spec… https://t.co/y5kM5tZvAH" +04/06/2018,Sports_celeb,@RobGronkowski,RT @CallieBundy: Working hard orrr hardly working?? Well one of us was working hard thanks for the ride @RobGronkowski 😂 On-set with @SixSt… +04/05/2018,Sports_celeb,@RobGronkowski,"RT @SixStarPro: We’re now live with @robgronkowski, ask your questions! Be sure to tag @sixstarpro and use the hashtag #SixStarGronk to hav…" +04/03/2018,Sports_celeb,@RobGronkowski,"What an awesome time hanging with Lauren. #KeepFighting +https://t.co/3KtwcRWqxV" +04/02/2018,Sports_celeb,@RobGronkowski,Everyone needs a Goon! +03/30/2018,Sports_celeb,@RobGronkowski,Ooo Chan ❤️ Snapchat https://t.co/fWSaLYpoOD +03/30/2018,Sports_celeb,@RobGronkowski,Make sure you sign up for my @CitiPrivatePass Youth 🏈 Clinic in partnership with @Shaws & @Star_Mrkt! Gonna be a gr… https://t.co/XkIPbPyqwX +03/30/2018,Sports_celeb,@RobGronkowski,RT @DerbyMedia: Gronkowski - named for @Patriots star tight end @RobGronkowski – collected his 4 straight win in Friday's Burradon Stakes @… +03/30/2018,Sports_celeb,@RobGronkowski,Help @YourCommissary win a @ProCamps this summer. Vote at https://t.co/O4aa3bdWzI or text your base name to 1-201-7… https://t.co/lNyCJR5CeS +03/27/2018,Sports_celeb,@RobGronkowski,Just in case you missed the action- @SHAQ https://t.co/Dx0aADRnNC +03/22/2018,Sports_celeb,@RobGronkowski,@Edelman11 @MartysaurusRex Hey guys!! How are ya? +03/20/2018,Sports_celeb,@RobGronkowski,I love Band Camp! I love 🛏 Bed! Night! +03/18/2018,Sports_celeb,@RobGronkowski,Prepping starting back up now! Show down coming soon @Chrisgronkowski @OrlandoRVargas watch out folks. All I can sa… https://t.co/7UR6Hh6R5N +03/17/2018,Sports_celeb,@RobGronkowski,Watch me #GronkSpike this @Michaelsstores MAKE Off against @BusyPhilipps! https://t.co/cnORz1JbrR #ad +03/15/2018,Sports_celeb,@RobGronkowski,"It was a honor playing with ya @dannyamendola Stay lit, Be FREE, Be HAPPY. Your hard work, the way you play at your… https://t.co/6JdRQ7rCbi" +03/14/2018,Sports_celeb,@RobGronkowski,@KVN_03 Thank you. Just getting started!! +03/14/2018,Sports_celeb,@RobGronkowski,“Bands a make her dance” I repeat “Bands a make her dance” 💃🏼Aye Captain!!! +03/13/2018,Sports_celeb,@RobGronkowski,"Who are your top 4? #GronkMadness +Check out my picks +https://t.co/5xyhrem1Yh" +03/06/2018,Sports_celeb,@RobGronkowski,Registration for my 6th Annual @CitiPrivatePass Youth 🏈 Clinic in partnership with @shaws & @Star_Mrkt and @tide is… https://t.co/l39nwnSq0v +03/05/2018,Sports_celeb,@RobGronkowski,#UntilWeAllWin https://t.co/l97CusBAV1 +03/02/2018,Sports_celeb,@RobGronkowski,My marathon team is serious about training & they're going to look the best on Patriots Day thanks to @NikeBoston… https://t.co/F0OSIsf1OC +03/02/2018,Sports_celeb,@RobGronkowski,“ Bands a make her dance “ +03/02/2018,Sports_celeb,@RobGronkowski,I want YOU to head to my partner @DunkinBoston this month between 2pm-6pm to get a $2 Iced Coffee. #TBT https://t.co/cNxrKNQVAN +02/28/2018,Sports_celeb,@RobGronkowski,#clueless 🤷‍♂️ +02/27/2018,Sports_celeb,@RobGronkowski,It's a team effort with Family and Friends! @MojoRawleyWWE https://t.co/Av1AK5UBe2 +02/26/2018,Sports_celeb,@RobGronkowski,There are NO limits!!!!! +02/24/2018,Sports_celeb,@RobGronkowski,"Forseee your own future, control your own temptations, and your destiny will be not just be reached, it will just be starting." +02/22/2018,Sports_celeb,@RobGronkowski,"Boston showing up big time at the NBA All Star Game! +https://t.co/bm8gP1PpcS" +02/16/2018,Sports_celeb,@RobGronkowski,"Run the 2018 Boston Marathon for Team @GronkNation. Our team has the BIGGEST heart! Raise funds for youth sports,… https://t.co/isd94lEIpM" +02/15/2018,Sports_celeb,@RobGronkowski,Honored and blessed to present these checks to 3 amazing organizations who support amazing kids that need some extr… https://t.co/pyn9lQyaBo +02/14/2018,Sports_celeb,@RobGronkowski,"Happy Valentine's Day to all of you beautiful people! +https://t.co/qjXwVbpmyV" +02/03/2018,Sports_celeb,@RobGronkowski,"Congrats Timothy Bessette. Enjoy the game! +Thanks for everybody who participated. We raised a lot of money for Cha… https://t.co/HO68Susfd3" +02/03/2018,Sports_celeb,@RobGronkowski,Clock is ticking...last call to enter to WIN a TRIP to the BIG GAME! Go to https://t.co/ZQ1UcEoa06 while there's st… https://t.co/51yHiQC3RB +02/02/2018,Sports_celeb,@RobGronkowski,"It's go time. #SBLII +https://t.co/fOY9HId8R1" +02/01/2018,Sports_celeb,@RobGronkowski,"Hooking you guys up before the Big Game! Buy one, get one FREE all t-shirts - check it out now at… https://t.co/ZlhkhoClxq" +02/01/2018,Sports_celeb,@RobGronkowski,Ladies... this one's for you https://t.co/zQEHGnBuR3 https://t.co/Vj61PLjIIv +01/30/2018,Sports_celeb,@RobGronkowski,".@DavidKHarbour , don't drop the ball like @terrybradshaw. Spike it instead! #TideAd #SBLII #gronkspike https://t.co/xUXODrKHIG" +01/30/2018,Sports_celeb,@RobGronkowski,"RETWEET this post for a chance to win this FREE SIGNED jersey. Winner will be announced Saturday at 3pm PST. + +Plus-… https://t.co/4lUgmbK2fK" +01/30/2018,Sports_celeb,@RobGronkowski,"This is Great! +https://t.co/cIGHgSJFgf" +01/29/2018,Sports_celeb,@RobGronkowski,"Congrats on the big win! + +Want to win the BIG prize, two tickets to the SB? Grab gear now for your chance to win:… https://t.co/9jgSdhvEs5" +01/29/2018,Sports_celeb,@RobGronkowski,Can’t wait to go head to head against @lg_blount on #XboxLiveSessions #SuperBowl edition! Tune in 1/30 @ 5:30 p.m… https://t.co/nM0jsXoP0B +01/26/2018,Sports_celeb,@RobGronkowski,"This is what it's all about! #KeepFighting +https://t.co/hjy3RojMfM" +01/25/2018,Sports_celeb,@RobGronkowski,"RETWEET for your chance to win a FREE SIGNED Gronk ball or photo. Winner will be announced Monday at 3pm EST. + +Plu… https://t.co/k0hXRwzFBl" +01/23/2018,Sports_celeb,@RobGronkowski,A pleasure meeting you Robbie! #Goodtimes https://t.co/CgDEFmxnZp +01/20/2018,Sports_celeb,@RobGronkowski,Final Minutes to get in the https://t.co/kptIwmB9Oa. Get in the action and support a good cause! https://t.co/pu82rqa0ng +01/19/2018,Sports_celeb,@RobGronkowski,"Who agrees with me? Our amazing pats fans were going BAZOOKA crazy. +https://t.co/BFt25diAZV" +01/19/2018,Sports_celeb,@RobGronkowski,"TIME EXTENDED! +You can win tickets to the AFC Championship Game! +https://t.co/kptIwmB9Oa + +Funds raised go to:… https://t.co/L1FWrkUm1N" +01/19/2018,Sports_celeb,@RobGronkowski,RT @DJWhooKid: 😂😂 @Patriots taking it again this year 💀🏈🏈🏈🏈🏈💥💥 @RobGronkowski https://t.co/ZC5kEMiGMZ +01/18/2018,Sports_celeb,@RobGronkowski,"The https://t.co/kptIwmB9Oa ends tomorrow at noon EST. +YOU CAN'T WIN IF YOU ARE NOT IN! + +Additional 25 Prizes incl… https://t.co/xojbe39n9g" +01/17/2018,Sports_celeb,@RobGronkowski,"RETWEET this post to for your chance to WIN. +Winner will be picked Thursday at 12pm EST + +To win tickets to the AFC… https://t.co/lnZjXLiCa5" +01/17/2018,Sports_celeb,@RobGronkowski,"Congrats @BobDiMa1 you are the winner. The Gronk Team will hit you up shortly. + +For the rest of you check out th… https://t.co/ieC8Ceag8r" +01/16/2018,Sports_celeb,@RobGronkowski,"You can win tickets to the AFC Championship Game! +https://t.co/kptIwmB9Oa + +Retweet this video to support the cause!… https://t.co/o8Ql4teYdT" +01/16/2018,Sports_celeb,@RobGronkowski,"Check out the Video of Gronk making Danny Amendola disappear. #magic #GronkNews #teamwork +https://t.co/SFdBnUsnZL" +01/15/2018,Sports_celeb,@RobGronkowski,"RETWEET this post to for your chance to win a https://t.co/KDXhzPpJOz playoff bundle and a Signed Gronk Photo +Winne… https://t.co/rhTPNgonzm" +01/14/2018,Sports_celeb,@RobGronkowski,"https://t.co/kptIwmB9Oa +The Pats are going to the AFC Championship Game, AND SO CAN YOU! +We are giving 3 lucky win… https://t.co/RdM2kHtv6v" +01/13/2018,Sports_celeb,@RobGronkowski,"I’ve partnered with @Tide to make sure you know, Tide PODs are for doing laundry. Nothing else! https://t.co/Oo7n7ZZpbG" +01/12/2018,Sports_celeb,@RobGronkowski,@walmart is rolling back their prices on my fuel for a limited time. Get your own https://t.co/44J67UMJ0G #ad… https://t.co/nE2nkGyahr +01/11/2018,Sports_celeb,@RobGronkowski,"You can still make it to the game! Get in the action and Win Some Tickets. 🏈🏈 +#GronkNews + +https://t.co/oNGIKKn8tQ" +01/09/2018,Sports_celeb,@RobGronkowski,"The road has been set. It's go time. #GronkNews +https://t.co/rglQOiTGOJ" +01/05/2018,Sports_celeb,@RobGronkowski,Thank you voters! Hard work and working Smarter is paying off!!! +01/05/2018,Sports_celeb,@RobGronkowski,Givin' away 2 TICKETS + HOTEL to our first playoff game next Saturday! Grab gear now for a chance to win 👉… https://t.co/vjZn28DeDz +01/04/2018,Sports_celeb,@RobGronkowski,"You want to see some funny stuff? Check out ""Unsportsmanlike Comedy"" Friday night if you want the full Gronk. +Find… https://t.co/ZTKv40IMhT" +12/31/2017,Sports_celeb,@RobGronkowski,Haha you know it man!! Glad your back https://t.co/COhhmdDSw0 +12/29/2017,Sports_celeb,@RobGronkowski,An excellent role model on and off the field. Thank you Nate for being such a great teammate. Post the hashtag… https://t.co/yywrCCdbDF +12/29/2017,Sports_celeb,@RobGronkowski,Hey there! https://t.co/6YgfZjHmPB +12/26/2017,Sports_celeb,@RobGronkowski,"RT @uninterrupted: Ho ho ho! @RobGronkowski may have another big game this week but today, Santa Claus is in town. https://t.co/SutWRCm3Sz" +12/25/2017,Sports_celeb,@RobGronkowski,Merry Christmas 🎄🎁 !! Boxers and socks from Santa!! 😀 https://t.co/wRj38RqD8O +12/20/2017,Sports_celeb,@RobGronkowski,"It is always an honor to be selected to the pro bowl. Congrats to my other teammates and thanks fans!!! + +""GRONK SEL… https://t.co/RaTkTn68My" +12/20/2017,Sports_celeb,@RobGronkowski,Why be a regular santa when you can be a #DonutSanta? I’m hooking up all the boys with dozens of @DunkinBoston donu… https://t.co/o4MH1JRJA0 +12/18/2017,Sports_celeb,@RobGronkowski,"The emotions were out of control on that last drive, it was like a roller coaster! +https://t.co/0jNjgJ8CEf… https://t.co/eP35fQsBDr" +12/13/2017,Sports_celeb,@RobGronkowski,@walmart is rolling back their prices on my fuel. Get your own #ad #greatnessisearned https://t.co/i8a3FRIZql +11/28/2017,Sports_celeb,@RobGronkowski,I want to see the best TD dance with a GronkBall in your hand. Pick yours up from @Brookstone today.… https://t.co/JFIJWm3md0 +11/28/2017,Sports_celeb,@RobGronkowski,#lovecybering #cybermonday https://t.co/26p23tOA24 +11/27/2017,Sports_celeb,@RobGronkowski,"Check out the Gronk Bus getting some love at the end of the first quarter. +To get in the action check out… https://t.co/S98gFlCclB" +11/24/2017,Sports_celeb,@RobGronkowski,"Always good to get out in the community on Turkey Day. +Check out what I did: https://t.co/dY4ug12M9d https://t.co/pGxDpVFCiV" +11/18/2017,Sports_celeb,@RobGronkowski,Game day face! #letsgo https://t.co/kcyeX6mSv2 +11/16/2017,Sports_celeb,@RobGronkowski,"""Yo Soy Fiesta"" my friends! +https://t.co/PX6JKZqCFe" +11/14/2017,Sports_celeb,@RobGronkowski,Are you breaking a mental sweat? If you’re working hard this year don’t miss your chance to win $15K from Six Star… https://t.co/50zQos0QuS +11/13/2017,Sports_celeb,@RobGronkowski,Get to @Brookstone now and pick up your Gronk Ball. #GronkBall https://t.co/uKTPYWBfBM +11/09/2017,Sports_celeb,@RobGronkowski,Chilly chilly! 💨 https://t.co/ao00UmNRgu +11/08/2017,Sports_celeb,@RobGronkowski,Hit me for a pass deep! Make sure party rock is playing. 🤣 https://t.co/wETZ2AkOR1 +11/08/2017,Sports_celeb,@RobGronkowski,@Brookstone Hit me for a pass deep! Make sure party rock is playing. 🤣 +11/06/2017,Sports_celeb,@RobGronkowski,My Bro @GordieGronk and I showed fans what it takes to spike like us w/ our #partner @DunkinBoston. Thank you to ev… https://t.co/PwbHJr10HD +11/02/2017,Sports_celeb,@RobGronkowski,"#TBT rocking out!Now we gotta vote them into the Rock & Roll HOF! Vote at https://t.co/K0dPDpHbrx. #BonJoviRockHall + +https://t.co/2j1wlbbs20" +10/31/2017,Sports_celeb,@RobGronkowski,Happy 🎃 Halloween from Gronkenstein! https://t.co/Fln4FKZCIj +10/31/2017,Sports_celeb,@RobGronkowski,Oo she good! Fun times for sure! https://t.co/3wTECMMmVJ +10/26/2017,Sports_celeb,@RobGronkowski,#TBT to shooting with @SixStarPro #ad #greatnessisearned https://t.co/3cv7MywggH +10/26/2017,Sports_celeb,@RobGronkowski,Mark your 🗓 ! My 2018 @CitiPrivatePass Youth 🏈 Clinic is set! Citi cardmembers have presale now👇 #CloserToPro https://t.co/NVpes40QXP +10/25/2017,Sports_celeb,@RobGronkowski,She OBVS thinks I’m great-See more of what #UFC beauty @AirannyCeleste and I are up to on my new show #MVP here:… https://t.co/ACaBZwmGPm +10/23/2017,Sports_celeb,@RobGronkowski,"SWAT team takes down Gronkenstein! +Last chance to get your Gronkenstein tee in time for #Halloween.… https://t.co/u3JQfNzMFz" +10/21/2017,Sports_celeb,@RobGronkowski,"Not only do the ladies love the moves, so does coach. +https://t.co/oYNgsO9pSF" +10/20/2017,Sports_celeb,@RobGronkowski,RT @usnikefootball: Put the team on your back. Share a photo in your jersey using #WhoYouWith to show how you rep the squad. https://t.co/y… +10/18/2017,Sports_celeb,@RobGronkowski,"1. #Touchdown +2. #Dance +3. #Spike +Tips - Move out of the way while spiking is occurring Tom Brady +https://t.co/SXQHy46JiJ" +10/16/2017,Sports_celeb,@RobGronkowski,Nice job bro!!! #teamwork https://t.co/yXYarCNSLz +10/16/2017,Sports_celeb,@RobGronkowski,Congrats! #unreal https://t.co/zJH5QAlN0H +10/16/2017,Sports_celeb,@RobGronkowski,Solid team win on the road baby! Let's keep it going +10/09/2017,Sports_celeb,@RobGronkowski,Today’s the big launch for Season 2 of my show @mvp_show! Watch the show on #go90Zone - https://t.co/40FcJs61q7 Sha… https://t.co/S26vMvnQRK +10/04/2017,Sports_celeb,@RobGronkowski,ReTweet for a chance to win this signed photo! Check out the new https://t.co/Qm6JkX4qNl for a chance to win 2 tick… https://t.co/Az3OgTpqjb +09/26/2017,Sports_celeb,@RobGronkowski,Check out the new https://t.co/KDXhzPpJOz website - The official home of my bros and I. Phase 1 complete with a lot… https://t.co/0a8piwmIor +09/25/2017,Sports_celeb,@RobGronkowski,Kaboom!! #Gronkspike https://t.co/4ccTEDf6Zz +09/24/2017,Sports_celeb,@RobGronkowski,Wow what a game! Super Solid team win vs a really good team.That was some great football to watch fellows! +09/18/2017,Sports_celeb,@RobGronkowski,Thank you bro! 😂 https://t.co/Q9TJvcRALK +09/16/2017,Sports_celeb,@RobGronkowski,Nice work! https://t.co/rAV6aPSuOW +09/12/2017,Sports_celeb,@RobGronkowski,Ladies and Gentlemen some good action is coming soon! https://t.co/erPWyURbx2 +09/11/2017,Sports_celeb,@RobGronkowski,@liamallbright No chance it is. Fake for sure +09/11/2017,Sports_celeb,@RobGronkowski,RT @Patriots: 9.11.01 🇺🇸 #NeverForget https://t.co/Ufs6xWAMWI +09/09/2017,Sports_celeb,@RobGronkowski,Thank you very much! 😂 😂 https://t.co/RhYReJZ71a +09/09/2017,Sports_celeb,@RobGronkowski,"You guys are crazy, it's great lol 😂 https://t.co/thX2oKGk7z" +09/09/2017,Sports_celeb,@RobGronkowski,Very interesting. Do not mess with Mother Nature !! Everyone stay safe down there in FL! +09/09/2017,Sports_celeb,@RobGronkowski,Been following up on Hurricane Irma a lot the past few days. Did some research on hurricanes and been learning a lot bout Mother Nature. +09/09/2017,Sports_celeb,@RobGronkowski,Got a lot of work to do! Long season gotta keep on grinding hard! Watching some College football today looking for some good games. +09/07/2017,Sports_celeb,@RobGronkowski,"It’s been awhile, but I’ve practiced my spike with @Tide. Ready to leave it all on the field & earn the stink. GO P… https://t.co/1JTxPFmPnu" +09/05/2017,Sports_celeb,@RobGronkowski,Can you believe her? She’s worried about how I smell while Liz just posted a fire tweet 🔥🔥🔥 @Tide #Ad https://t.co/R8qc90osJV +09/02/2017,Sports_celeb,@RobGronkowski,RT @Chrisgronkowski: The Gronk ball might be the best baby toy ever. Just turn the lights on and play some music 🎶. #gronkball #gronknati… +08/26/2017,Sports_celeb,@RobGronkowski,Haha just chilling enjoying the view! https://t.co/If08340L2y +08/24/2017,Sports_celeb,@RobGronkowski,RT @Brookstone: Want to enter to win an autographed #GRONKBALL Speaker by @RobGronkowski?! See our pinned post on our FB page- https://t.c… +08/16/2017,Sports_celeb,@RobGronkowski,Who's hyped for football season?!? Celebrate with me @GilletteStadium at Fantasy Sports Fest Aug 20th. Buy tix:… https://t.co/lLAacJE2zu +08/14/2017,Sports_celeb,@RobGronkowski,Putting some work in during my shoot for @Tide Sport PODS. Might’ve even found a new teammate. 💪 #NoDaysOff #ad https://t.co/1qVWd0zORg +08/08/2017,Sports_celeb,@RobGronkowski,"RT @ZonaZooOfficial: September 2nd. Arizona Stadium. Gronk bobblehead giveaway. BE THERE. +Details: https://t.co/wEHYBxl1Jx +ZonaZoo Pass: h…" +08/08/2017,Sports_celeb,@RobGronkowski,Amazing!! #BearDown https://t.co/cBHHVKcGIt +08/04/2017,Sports_celeb,@RobGronkowski,Had a blast w/ the kids at my @Citibank @ProCamps! Relive it with the virtual reality experience on the @jauntvr app https://t.co/GaMbvAb65a +08/02/2017,Sports_celeb,@RobGronkowski,Join me at Fantasy Sports Fest on Aug 20 @GilletteStadium. Catch TDs on the field and hear from insiders! Buy tix:… https://t.co/IPJDzdoStH +08/02/2017,Sports_celeb,@RobGronkowski,That was a hot practice today 💦 😳 hydration all day to get ready for tomorrow +07/31/2017,Sports_celeb,@RobGronkowski,Thank you for letting me join again on stage. This time during camp from my room 😂! https://t.co/mIAkbGFxg4 +07/26/2017,Sports_celeb,@RobGronkowski,"What’s your go-to @DunkinBoston Iced Coffee Flavor? I’m sticking with S’mores right now, but man the Coconut Crème… https://t.co/NAxxsxFjuR" +07/21/2017,Sports_celeb,@RobGronkowski,Got you! 😂 https://t.co/kZowq2tPJA +07/20/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @RobGronkowski What do u have to do for autographed football & photo? Run 7 miles raise $ 4 kids w/ @GronkNation team Join… +07/15/2017,Sports_celeb,@RobGronkowski,Happy birthday @MojoRawleyWWE living it up @rehablv https://t.co/bhGICNRjtZ +07/12/2017,Sports_celeb,@RobGronkowski,RT @ddlovato: The Boston #SNSHouseParty was out of control!!! Thanks for rolling in with me like a champ @RobGronkowski 😜 @Kiss108 https://… +07/12/2017,Sports_celeb,@RobGronkowski,RT @Brookstone: Can we get #GronkBall trending for @RobGronkowski before his World Premiere on @HSN at midnight?! https://t.co/HlSfklisR4 +07/12/2017,Sports_celeb,@RobGronkowski,"I'm hosting an epic comedy show at @Showcase_Live on July 21st. Get tix, trust me! https://t.co/56h7uTUfA6. https://t.co/8AMArCAxFW" +07/12/2017,Sports_celeb,@RobGronkowski,Good times! #SNSHouseParty https://t.co/tUnhmCqhC0 +07/12/2017,Sports_celeb,@RobGronkowski,"Baby, I'm sorry (I'm not sorry) - @ddlovato love's my Gronk ball too!! Thx for the invite to the House Party!… https://t.co/uEKdNVu6Di" +07/11/2017,Sports_celeb,@RobGronkowski,BIG news! I’ll be on @HSN tonight with my @Brookstone Gronk Ball Speaker! Who’s excited for it?… https://t.co/ZqocPAGM4N +07/11/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @RobGronkowski @GronkNation Join the Gronk Nation Running Team @FalmouthRR -Run this summer! Go to https://t.co/yE7o1dpEr7… +07/11/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @charityteams Run for @GronkNation @RobGronkowski at this summers @FalmouthRR Be on Gronks Team! Go to https://t.co/yE7o1d… +07/02/2017,Sports_celeb,@RobGronkowski,12-0 in cornhole 🌽 !!!! +06/26/2017,Sports_celeb,@RobGronkowski,The grind feels so good!! +06/23/2017,Sports_celeb,@RobGronkowski,"Roasted the shit out of Big Papi tonight, but also got roasted bad myself 😂. Great times everybody. Congrats to Big Papi!" +06/20/2017,Sports_celeb,@RobGronkowski,Don't always believe what you read. This is where 100k + would go to before that. https://t.co/2nzSfBk8pV +06/16/2017,Sports_celeb,@RobGronkowski,"The Gronk Family Genes powering through with just boys! +Hanging with the fam in front of the NEW 87 @GronkPartyBus… https://t.co/zbzNsffOTX" +06/15/2017,Sports_celeb,@RobGronkowski,Weeehooooooo it's go time baby with @SixStarPro PreWorkout Explosion! #sponsored #greatnessisearned… https://t.co/0p9bN3Ghj9 +06/12/2017,Sports_celeb,@RobGronkowski,RT @ObertoBeefJerky: RT for a chance to win a signed @RobGronkowski Football 🏈 and Jerky. #JerkyTie Happy #NationalBeefJerkyDay https://t.c… +06/11/2017,Sports_celeb,@RobGronkowski,Congrats to all the @Shaws @Star_Mrkt @Tide sweeps winners. Great time at the ProTalk luncheon today! Great camp da… https://t.co/AAIk93YyYR +06/11/2017,Sports_celeb,@RobGronkowski,Thanks to @WelchsFruitSnck for sending these lucky campers to my @ProCamps #yummy https://t.co/hCP05OU0nh +06/11/2017,Sports_celeb,@RobGronkowski,Had a blast with my Sunny D Contest winners at my @ProCamps #letsgo https://t.co/njPAGbArZy +06/11/2017,Sports_celeb,@RobGronkowski,Camp is wild today! So much energy these kids got! 🏈 +06/11/2017,Sports_celeb,@RobGronkowski,The Gronk Monster Truck tonight was lit @MonsterJam !!! Great show and great performances. #vroomvroom… https://t.co/TjxViQOtLM +06/10/2017,Sports_celeb,@RobGronkowski,I'd give today's @ProCamps youth clinic 10 out of 10 Gronk Spikes! Thanks again to @CitiPrivatePass for supporting… https://t.co/MHun2wsVnb +06/09/2017,Sports_celeb,@RobGronkowski,That's truck is bad ass! https://t.co/6R4Tq14PbC +06/05/2017,Sports_celeb,@RobGronkowski,"Always a pleasure buzzing my head every summer. Great people, great kids, great cause and a super fresh cut of cour… https://t.co/a388o2KPUI" +06/03/2017,Sports_celeb,@RobGronkowski,Missed my flight mmmhmmmm 🤔 +07/01/2018,Sports_celeb,@Venuseswilliams,"Bringing @EleVenbyVenus to London, @Selfridges! “Status quo is a phrase that doesn’t exist in the EleVen vocabulary… https://t.co/VhGBFG7CAc" +07/01/2018,Sports_celeb,@Venuseswilliams,Look familiar right? It’s that time...tomorrow! #wimbledon2018 #tennis https://t.co/yaDDCbIf0P +06/29/2018,Sports_celeb,@Venuseswilliams,Ahead of Wimbledon I spoke to @britishvogue about the 5 things that shaped me https://t.co/Xfh7uPvG5a +06/29/2018,Sports_celeb,@Venuseswilliams,Londoners don’t forget to come join me today at 2pm at @Selfridges for the launch of the @EleVenbyVenus Atlanta col… https://t.co/4j4vDvK4qm +06/27/2018,Sports_celeb,@Venuseswilliams,Be the Eleven you are and get yourself to the @Selfridges launch party for the new Atlanta collection from… https://t.co/mbwCOxV0Go +06/25/2018,Sports_celeb,@Venuseswilliams,With Wimbledon coming up I can't help but look back on all the fond memories! This was in 2000 when @serenawilliams… https://t.co/rbG8urjlL9 +06/22/2018,Sports_celeb,@Venuseswilliams,Romancing from both ends expertly! One of my favorite interiors in Paris where I enjoy the design and the food!… https://t.co/dvQN03LAwr +06/18/2018,Sports_celeb,@Venuseswilliams,I’m excited to be in Des Moines this Saturday for the Des Moines Register Sports Awards. Let’s celebrate high schoo… https://t.co/riCYajVEnE +06/17/2018,Sports_celeb,@Venuseswilliams,Big news! I've teamed up with @Selfridges to launch the new Atlanta collection from @elevenbyvenus. RSVP for the la… https://t.co/Obtr9uAxYs +06/14/2018,Sports_celeb,@Venuseswilliams,"This is how I conference call. For real tho. No joke. (New phone, who dis?) #flawless https://t.co/IZQ8RoBbAJ" +06/13/2018,Sports_celeb,@Venuseswilliams,Back in action ;) pun intended. @EleVenbyVenus Sprint collection https://t.co/1zMftY6Qlg +06/07/2018,Sports_celeb,@Venuseswilliams,The good old days...are still going! @serenawilliams #tbt https://t.co/iZ9SWobiJJ +06/04/2018,Sports_celeb,@Venuseswilliams,C’est la vie! Deja vu and all that! Merci @PDG_Paris #LovePDG https://t.co/nXugYwdRyI +06/04/2018,Sports_celeb,@Venuseswilliams,"Go @serenawilliams (I'm a big fan!) I'm also a big fan of WS doubles, just warming up, stay tuned! https://t.co/Fhs1aYU6Ml" +06/02/2018,Sports_celeb,@Venuseswilliams,Getting inspired! This guy had talent! #rodin @MuseeRodinParis https://t.co/GaYMQ3umq3 +05/30/2018,Sports_celeb,@Venuseswilliams,The return of Team Williams...@serenawilliams @Venuseswilliams https://t.co/8mBHITF92B +05/30/2018,Sports_celeb,@Venuseswilliams,Maxing and relaxing with my lil man at @PDG_Paris #princedegallesparis #LovePDG https://t.co/Mf9boqChMD +05/26/2018,Sports_celeb,@Venuseswilliams,Thanks @people! Check out our latest collection https://t.co/3DmFK3FbcZ +05/26/2018,Sports_celeb,@Venuseswilliams,New @EleVenbyVenus Sprint Collection https://t.co/BbKl7004UR https://t.co/fDf2DvoEfB +05/25/2018,Sports_celeb,@Venuseswilliams,RT @people: Get Venus Williams’ Exact Pump-Up Workout Playlist – and Never Be Bored on Your Run Again https://t.co/IAFxBPYuWc +05/24/2018,Sports_celeb,@Venuseswilliams,"Goodbye Rome, so sad that the days of gelato are over...but I think the croissants in Paris should comfort this pro… https://t.co/B7F1XjofkG" +05/24/2018,Sports_celeb,@Venuseswilliams,"RT @EleVenbyVenus: Make bold news with the brand new Sprint Collection, available on https://t.co/6QaGtZRgU4 now! https://t.co/dCgOhyA1Dk" +05/24/2018,Sports_celeb,@Venuseswilliams,"Werk, werk, werk, werk, werk! The @EleVenbyVenus new Sprint collection is here! WERK! https://t.co/utGw4bwjTo" +05/23/2018,Sports_celeb,@Venuseswilliams,"The adventures of Harry and I, Rome edition. Coming to a city near you. We saved the day more than once! 😌😌😌❤️❤️❤️ https://t.co/IY7Vkod97u" +05/22/2018,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: We’re excited to announce our partnership with @diaandco... September cannot come soon enough! #FitToThrive https://t.co… +05/21/2018,Sports_celeb,@Venuseswilliams,"Oh it's just me again. My dog Harry thought this was fur, but I had to explain to him that is just a bathrobe...and… https://t.co/T3c3Jobb35" +05/16/2018,Sports_celeb,@Venuseswilliams,Swinging this racquet takes me all the places I ever wanted to go. I swing and I swing and I swing! https://t.co/6tDa9U33I0 +05/01/2018,Sports_celeb,@Venuseswilliams,"Playing here in Copenhagen after 16 years! The art, innovation and entrepreneurship here is inspiring. https://t.co/AmK353wneh" +04/18/2018,Sports_celeb,@Venuseswilliams,Honored to help the victims of the Stoneman Douglas tragedy by serving on the Stoneman Douglas Victims' Fund Commit… https://t.co/y7YT1yzwVJ +03/23/2018,Sports_celeb,@Venuseswilliams,I am Venus...my inner goddess unleashes er'day https://t.co/as9aNkZABO +03/22/2018,Sports_celeb,@Venuseswilliams,So excited to be back in #Copenhagen on April 30th playing @carowozniacki at #championsbattle2018 – and at the same… https://t.co/JoCZGg9tcY +03/04/2018,Sports_celeb,@Venuseswilliams,A real celebration of design. Nothing makes me happier than creating a space that people enjoy! @vstarrinteriors… https://t.co/zlQKlf19uN +03/01/2018,Sports_celeb,@Venuseswilliams,Can't wait to play @tiebreaktens in New York on Monday. Looking forward to meeting @elinasvitolina in the first rou… https://t.co/mosbuVeeHx +02/25/2018,Sports_celeb,@Venuseswilliams,Working! @LibertyFairs booth 726 come visit!! #libertyfairs @EleVenbyVenus https://t.co/lcseGDmZJk +02/14/2018,Sports_celeb,@Venuseswilliams,Shooting something cool today...stay tuned! https://t.co/wekRg8YmLq +02/12/2018,Sports_celeb,@Venuseswilliams,"My two loves, I'm so proud of you @serenawilliams and baby Olympia, both @FedCup go USA! https://t.co/rO32uLnZm4" +02/10/2018,Sports_celeb,@Venuseswilliams,Me and my boo @serenawilliams ❤️❤️ https://t.co/NlTcvCKoDL +02/07/2018,Sports_celeb,@Venuseswilliams,@RafaelNadal @tiebreaktens So cool! I can’t wait to be playing in the first ever @TieBreakTens tournament held in t… https://t.co/6Rd0zqbFve +01/28/2018,Sports_celeb,@Venuseswilliams,"I am exited to represent 🇺🇸 at @fedcup with my sister. Cheer us on as we take on the Netherlands - Feb 10-11 in Asheville, NC." +01/26/2018,Sports_celeb,@Venuseswilliams,Super excited that Tie Break Tens series is coming to the US for the first time! I’m in – and so is @serenawilliams… https://t.co/syxR0oTQJJ +12/06/2017,Sports_celeb,@Venuseswilliams,RT @MAKERSwomen: This weekend @serenawilliams and @Venuseswilliams took a stance against community violence 👊💥 alongside trailblazing activ… +11/21/2017,Sports_celeb,@Venuseswilliams,RT @serenawilliams: We love the new community inspired mural by Chelsea Wong at the Yetunde Price Resource Center! Thank you @OathforGood f… +09/12/2017,Sports_celeb,@Venuseswilliams,Looking forward to a great weekend at the @GreenbrierTennisClassic with @mhingis. https://t.co/4yxNkq7rua https://t.co/JNSr2sJzyj +09/11/2017,Sports_celeb,@Venuseswilliams,Thanks for a wonderful stay as always @lottenypalace #PalacePerks https://t.co/fRb952LGVV +08/22/2017,Sports_celeb,@Venuseswilliams,"I'm back at @The_Greenbrier for another fun, tennis-filled weekend. Come join me! https://t.co/4yxNkq7rua https://t.co/CQPnGhXgrP" +08/21/2017,Sports_celeb,@Venuseswilliams,When you wear your tennis dress to the office. @AmericanExpress #AmexTennis #AmexAmbassador #USOpen https://t.co/EOmYBXJqkV +08/20/2017,Sports_celeb,@Venuseswilliams,Put my racket down and picked up a pencil with @AmericanExpress #USOpen #AmexTennis #AmexAmbassador https://t.co/bdgBxTp6vu +07/24/2017,Sports_celeb,@Venuseswilliams,Can't wait to play for @WashKastles tonight in Philly (🎫 https://t.co/YbHCJ4a4yx) & tomorrow in DC (🎫https://t.co/57ktCY908l)! +06/23/2017,Sports_celeb,@Venuseswilliams,Honoured to have been a part of the AIA Vitality 4490 Summit #AIA4490 building a happier & healthier Australia… https://t.co/kngqIUYK9X +06/21/2017,Sports_celeb,@Venuseswilliams,Excited to be in Sydney at the AIA Vitality 4490 Summit #AIA4490 sharing what wellness means to me & championing… https://t.co/m4UqD9kULG +06/10/2017,Sports_celeb,@Venuseswilliams,Until next time Paris! @HCollectionneur merci! https://t.co/2x2n3povoQ +06/01/2017,Sports_celeb,@Venuseswilliams,"RT @PaulRabil: Suiting Up Episode 003, with @VenusesWilliams 🎙 https://t.co/BydM2y8RdH https://t.co/jlEw9KYAo3" +05/31/2017,Sports_celeb,@Venuseswilliams,These are to die for! @HCollectionneur https://t.co/EmpIZ6RGzm +05/28/2017,Sports_celeb,@Venuseswilliams,Kinda proud of this slide & these legs look like they want to do damage on the clay! @EleVenbyVenus https://t.co/MLNfKO9Lck +05/27/2017,Sports_celeb,@Venuseswilliams,I finally found a woman taller than me :) at the @HCollectionneur beautiful gardens https://t.co/tLHRp9kqit +05/21/2017,Sports_celeb,@Venuseswilliams,"My daily view at the @sofitelrome , my home away from home @internazionalibnlditalia #sofitel #tennis https://t.co/KCm67PWpdT" +05/18/2017,Sports_celeb,@Venuseswilliams,Sliding into the quarters. Guess what? I'd like to slide into the semis as well!@EleVenbyVenus https://t.co/18DigbAcve +04/23/2017,Sports_celeb,@Venuseswilliams,"Need something new to read! I like fantasy and adventure, just like my life! Send some suggestions my way please :)" +04/21/2017,Sports_celeb,@Venuseswilliams,"Showcasing Miami, @EleVenbyVenus and @VStarrDesign in Alexa by the New York Post! ❤ https://t.co/OlpSNQYJj6" +04/03/2017,Sports_celeb,@Venuseswilliams,Please vote for the freedom of interior designers like myself! ! Email the FL House Rep -VOTE 2 AMEND HB 7047! https://t.co/MxVcsn7WJb +04/03/2017,Sports_celeb,@Venuseswilliams,"I love this guy ❤. He made it all possible! He had a dream that I get to live on a daily basis, incredibly grateful https://t.co/IGBKZlu0hg" +03/30/2017,Sports_celeb,@Venuseswilliams,"I love this guy ❤. He made it all possible! He had a dream that I get to live on a daily basis, incredibly grateful https://t.co/7ooCZszNhN" +03/30/2017,Sports_celeb,@Venuseswilliams,@tennislala wow! Thank you for inspiring me!! God bless! +03/29/2017,Sports_celeb,@Venuseswilliams,Met a lot of awesome fans at the @MiamiOpen @EleVenbyVenus tent! I will be back! https://t.co/lnwAVGncq8 +03/27/2017,Sports_celeb,@Venuseswilliams,So it was all business yesterday. The plan? do it again today! https://t.co/Yh8vNH4WBD +03/24/2017,Sports_celeb,@Venuseswilliams,@TitussBurgess @KimmySchmidt it's a mutual love! I need season 3! Alight going to go play my match lol! +03/24/2017,Sports_celeb,@Venuseswilliams,Eleven by Venus Williams-Intrepid Excel Tank Top-8868724 https://t.co/3CKUD2gn5d @Zappos my winning look @BNPPARIBASOPEN +03/24/2017,Sports_celeb,@Venuseswilliams,@Ataraxis00 yes! Yes! Genius! +03/24/2017,Sports_celeb,@Venuseswilliams,"completely addicted 2 @KimmySchmidt only thing I've watch this year, @TitussBurgess is so fab, I've picked up a few of his mannerisms lol" +03/24/2017,Sports_celeb,@Venuseswilliams,Crushing it @BNPPARIBASOPEN in @EleVenbyVenus find us at @Zappos https://t.co/zkaY7YgcNv +03/24/2017,Sports_celeb,@Venuseswilliams,"Yes, that's right find @EleVenbyVenus at @Zappos ! https://t.co/L0cMQC8xCv" +03/23/2017,Sports_celeb,@Venuseswilliams,My baby! Harold! Happy #NationalPuppyDay puppiesday :) https://t.co/gocddGCSuB +03/23/2017,Sports_celeb,@Venuseswilliams,Taste of tennis :) @TasteofTennis mmmmmmmm!!! https://t.co/f0ypZzg8zE +03/19/2017,Sports_celeb,@Venuseswilliams,Can’t wait to DJ with this guy at @TasteofTennis on Monday Night … See you soon @djmadlinx https://t.co/yQJPabb5Mw +03/02/2017,Sports_celeb,@Venuseswilliams,"RT @PlayersTribune: She's grown the game of tennis while bringing change to her hometown. + +@VenusesWilliams has joined the #StandUp movemen…" +03/01/2017,Sports_celeb,@Venuseswilliams,Shout out to @serenawilliams featured in @Brawny #StrengthHasNoGender campaign during #WomensHistoryMonth https://t.co/9LxT0MNRMf +02/24/2017,Sports_celeb,@Venuseswilliams,7/10 girls don’t feel encouraged to play sports. Time to change that! @Always @Walmart Keep Playing #LikeAGirl #ad https://t.co/a0HgFmRiqD +02/20/2017,Sports_celeb,@Venuseswilliams,https://t.co/4wwZSRE0FX +02/06/2017,Sports_celeb,@Venuseswilliams,Thank you to @ArteriorsHome for helping @VStarrDesign with #DOADMIA. Great company for a great cause! https://t.co/WdWdKfMTcM +02/05/2017,Sports_celeb,@Venuseswilliams,"@housingworks Design on a Dime Miami with the team today, but proud of @vstarrinteriors beautiful space https://t.co/Gob3z4MExB" +01/20/2017,Sports_celeb,@Venuseswilliams,Check out my newest @EleVenbyVenus gear for my next @AustralianOpen match! https://t.co/7vmBqJZwbh +01/18/2017,Sports_celeb,@Venuseswilliams,Thrilled to bring my passion for @ElevenByVenus and VStarr Interiors to the cover of @Inc! #femaleentrepreneur… https://t.co/cTp55ayV1a +01/16/2017,Sports_celeb,@Venuseswilliams,Good morning from Australia! https://t.co/vn1V49618F +01/12/2017,Sports_celeb,@Venuseswilliams,Shenanigans #teamwilliams https://t.co/6mpTkyQehy +01/09/2017,Sports_celeb,@Venuseswilliams,New Zealand is gorgeous! https://t.co/knUZ75Spe2 +01/09/2017,Sports_celeb,@Venuseswilliams,One of my New Years resolutions? Sing more karaoke. No joke lol +01/06/2017,Sports_celeb,@Venuseswilliams,Sneak peak folks! @EleVenbyVenus #2017 https://t.co/DaWMZe8fBD +01/04/2017,Sports_celeb,@Venuseswilliams,Thank you to all my fans in New Zealand 4 yr ❤️and support! I ❤️ you all. sorry I couldn't win it for u this year. https://t.co/3B33f4Nj4X +01/02/2017,Sports_celeb,@Venuseswilliams,Official start to the season tomorrow! https://t.co/VHpUSTnxsa +12/30/2016,Sports_celeb,@Venuseswilliams,Tune into #UFC207 on PPV tonight @RondaRousey @Amanda_Leoa @DominickCruz @Cody_Nolove +12/30/2016,Sports_celeb,@Venuseswilliams,Fun facts about me and @EleVenbyVenus https://t.co/L4wIBIggUf +12/06/2016,Sports_celeb,@Venuseswilliams,Gearing up for a new season @EleVenbyVenus https://t.co/7WBlYMFeB2 +11/29/2016,Sports_celeb,@Venuseswilliams,I love south Florida https://t.co/Gz1gleon7k +11/19/2016,Sports_celeb,@Venuseswilliams,RT @orlyshani: When @Venuseswilliams has you model her new athletic clothing line... you do this weird leg kick thing 💃🏼@EleVenbyVenus #hom… +11/19/2016,Sports_celeb,@Venuseswilliams,RT @kymdouglas: Tmrw we could be joining the #tennis circuit w @Venuseswilliams or modeling her new line @EleVenbyVenus! @HomeandFamilyTV @… +11/12/2016,Sports_celeb,@Venuseswilliams,"RT @AjaLBrown: Let's go #Compton! Join me, @Venuseswilliams and @serenawilliams today at the @HealthyCompton Festival! See you there! #Hea…" +11/12/2016,Sports_celeb,@Venuseswilliams,RT @HealthyCompton: Excited to honor our #Compton champions @SerenaWilliams + @VenusesWilliams at the 2016 #HealthyCompton Festival Nov 12t… +11/12/2016,Sports_celeb,@Venuseswilliams,This is where we spent countless hours practicing growing up! https://t.co/MSnSqTBPW6 +11/12/2016,Sports_celeb,@Venuseswilliams,Court dedication at Luders park in Compton. #Compton #proud https://t.co/misrI6CBoG +11/10/2016,Sports_celeb,@Venuseswilliams,Thanks again to @RunwayDubai and to @SofitelDXBPalm for making all of this happen! #SofitelThePalm #SofitelWorld https://t.co/ZSEX2CRP9u +11/08/2016,Sports_celeb,@Venuseswilliams,The @EleVenbyVenus event with @RunwayDubai is underway! Thank you so much to The Sofitel Luxury Hotel The Palm! https://t.co/rCbA88Ky9t +11/05/2016,Sports_celeb,@Venuseswilliams,Diner #NYC https://t.co/NYymjJsVvn +11/05/2016,Sports_celeb,@Venuseswilliams,@Inc women's conference #newyorkcity #girlpower https://t.co/BIJAMiXwSa +10/31/2016,Sports_celeb,@Venuseswilliams,https://t.co/sNkzNnTFOe<https://t.co/sNkzNnTFOe> #BNPParibasShowdown +10/31/2016,Sports_celeb,@Venuseswilliams,"Looking forward to playing @worldtennisday @thegarden on 3/6. Use code WILLIAMS +to get the best seats before the public!" +10/28/2016,Sports_celeb,@Venuseswilliams,Breakfast @blindmonkwpb I ❤️ West Palm beach ❤️ https://t.co/00Cmq16DDb +10/19/2016,Sports_celeb,@Venuseswilliams,Excited to speak on the Design Panel w/ Kobi Karp tomorrow at The Real Deal’s South Florida Annual Real Estate Showcase & Forum! +10/19/2016,Sports_celeb,@Venuseswilliams,Good morning :) https://t.co/Ol3jSgTJGp +10/18/2016,Sports_celeb,@Venuseswilliams,RT @AjaLBrown: Excited to honor our #Compton champions @SerenaWilliams + @VenusesWilliams at the 2016 #HealthyCompton Festival Nov 12th! #V… +10/14/2016,Sports_celeb,@Venuseswilliams,Love this! 😂😂 https://t.co/uoweRIQV1w +10/11/2016,Sports_celeb,@Venuseswilliams,Yes that's the Great Wall of China folks. @elevenbyvenus https://t.co/eGRZlFXRd9 +09/08/2016,Sports_celeb,@Venuseswilliams,I've had a lot of great memories at the #USOpen! Use #AmexTennis to debate like a Pro https://t.co/ymGLc0HLMQ +09/07/2016,Sports_celeb,@Venuseswilliams,"The #USOpen is all about style, both on and off the court. Use #AmexTennis to debate like a Pro https://t.co/qLWjlABGhU" +09/04/2016,Sports_celeb,@Venuseswilliams,Who do you think is the best doubles team in #USOpen history? Use #AmexTennis to debate like a Pro https://t.co/bRZSoh4L3O +09/04/2016,Sports_celeb,@Venuseswilliams,Practice makes perfect :) @usopen @EleVenbyVenus https://t.co/m26lOnftKy +08/31/2016,Sports_celeb,@Venuseswilliams,My 18th first round win at the open. Wow! https://t.co/giNJCCVadf +08/30/2016,Sports_celeb,@Venuseswilliams,"RT @NYTStyles: .@Venuseswilliams, on and off the court https://t.co/hCvgtGckH4 https://t.co/e3fAxOFDyE" +08/29/2016,Sports_celeb,@Venuseswilliams,Which current player do you think is the coolest under pressure? Use #AmexTennis to debate like a Pro https://t.co/wYiBP3fj8V +08/28/2016,Sports_celeb,@Venuseswilliams,Pick up a copy of the Sunday NYT style section https://t.co/YXl8feGZqO +08/25/2016,Sports_celeb,@Venuseswilliams,The love of my life :) https://t.co/ZH5BhTeGEb +08/25/2016,Sports_celeb,@Venuseswilliams,RT @The_Greenbrier: Join us as we welcome @Venuseswilliams & @Madison_Keys to America's Resort this September! https://t.co/kHvmHsYvGR http… +08/16/2016,Sports_celeb,@Venuseswilliams,"RT @jk_rowling: As if we needed more reasons to worship @andy_murray: he just reminded John Inverdale that women are people, too. + +https:/…" +08/05/2016,Sports_celeb,@Venuseswilliams,Need I say more?! Playing tomorrow night and just can't wait! #olympics #dreams https://t.co/XMciaBvGHT +08/03/2016,Sports_celeb,@Venuseswilliams,First looks at rio https://t.co/9SWra9zmim +08/02/2016,Sports_celeb,@Venuseswilliams,On the way to With @serenawilliams Surreal! https://t.co/SdlTnJmrhJ +07/29/2016,Sports_celeb,@Venuseswilliams,In your face @serenawilliams https://t.co/BAlhvKKa9U +07/28/2016,Sports_celeb,@Venuseswilliams,I've got goodies for you! My Olympic Dress @EleVenbyVenus give away! https://t.co/4NRpbfAI6L +07/28/2016,Sports_celeb,@Venuseswilliams,Thought you all would enjoy hearing more about my life outside of tennis:) @jeff_haden https://t.co/BJk6agUElE via Inc +07/27/2016,Sports_celeb,@Venuseswilliams,Second round @CoupeRogers https://t.co/9J6PyJJfnc +07/27/2016,Sports_celeb,@Venuseswilliams,The @EleVenbyVenus launch in Canada! You can find us @Midtown_Mtl https://t.co/bkzpQaTsEd +07/26/2016,Sports_celeb,@Venuseswilliams,A day in my sweat life ;) https://t.co/NrqeIyMOqb +07/22/2016,Sports_celeb,@Venuseswilliams,RT @TigerWoods: .@Venuseswilliams put on a show all week and @serenawilliams has once again elevated tennis to another level. Very happy f… +07/22/2016,Sports_celeb,@Venuseswilliams,The warm up for tonight... https://t.co/ZPTF3HleyZ +07/22/2016,Sports_celeb,@Venuseswilliams,Should I? https://t.co/l8boUNyKu9 +07/21/2016,Sports_celeb,@Venuseswilliams,A few fun facts about me and @EleVenbyVenus :) https://t.co/BYIUbNEkU0 via fabfitfun +07/10/2016,Sports_celeb,@Venuseswilliams,I'm so proud of @Venuseswilliams seven #Wimbledon my hero! https://t.co/yAb29C2nJy +07/05/2016,Sports_celeb,@Venuseswilliams,I feel like an @EleVenbyVenus ! #iamaneleVen dream big! https://t.co/ZQLlz66Y29 +07/04/2016,Sports_celeb,@Venuseswilliams,Another day at the office...! https://t.co/Uj1A80RiDI +07/03/2016,Sports_celeb,@Venuseswilliams,Grass court tennis #nature https://t.co/6W9F9IlElD +07/03/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: https://t.co/5ujtcquQqi +07/02/2016,Sports_celeb,@Venuseswilliams,Why is it that the best sleep starts right before your alarm goes off?? +07/02/2016,Sports_celeb,@Venuseswilliams,Going to rest well tonight after a finish in overtime today. Doubles tomorrow with @serenawilliams Yeah! https://t.co/qndBzOCuNW +07/01/2016,Sports_celeb,@Venuseswilliams,Going to rest well tonight after a finish in overtime today. Doubles tomorrow with @serenawilliams Yeah! https://t.co/bPXSAoH8NI +06/30/2016,Sports_celeb,@Venuseswilliams,5 sets today. 2 of them with my favorite tennis player @serenawilliams #sucess #wimbeldon https://t.co/MWPw4ZPhlu +06/29/2016,Sports_celeb,@Venuseswilliams,"Rain? No prob, Grind fest indoors. Tomorrow? Singles and doubles with the lovely @serenawilliams https://t.co/MlnjGFhnsN" +06/28/2016,Sports_celeb,@Venuseswilliams,I just adore @serenawilliams #Wimbledon dress! ❤️❤️❤️ +06/26/2016,Sports_celeb,@Venuseswilliams,My dog goes crazy for this line of treats by my friend Barbara Clarke Ruiz! https://t.co/GVfXWAXLvF https://t.co/F4ddrWOwo2 +06/26/2016,Sports_celeb,@Venuseswilliams,Last practice before tomorrow match! #wimbeldon https://t.co/8lzTnCIeVn +06/23/2016,Sports_celeb,@Venuseswilliams,Invigorating and energizing to speak to all these powerful women this past March at the… https://t.co/yV1dgttgEG +06/22/2016,Sports_celeb,@Venuseswilliams,First day on the grass...!!!#wimbledon https://t.co/kkWfa2Rk6d +06/21/2016,Sports_celeb,@Venuseswilliams,So awesome to bring my loves together. Interior design and fashion design. VStarr interiors used… https://t.co/sOCr55V95H +06/21/2016,Sports_celeb,@Venuseswilliams,Fighting breast cancer with design. #hamptonsholidayhouse @elevenbyvenus @vstarrinteriors.com https://t.co/jjx4xhX9YG +06/20/2016,Sports_celeb,@Venuseswilliams,This mornings rain delay is good practice for #wimbledon https://t.co/ZeS4g1yel3 +06/19/2016,Sports_celeb,@Venuseswilliams,#Lookgoodplaywell @elevenbyvenus https://t.co/JoDVDu5syi +06/17/2016,Sports_celeb,@Venuseswilliams,#flashbackfridays Harry and his cousin Khan at the @elevenbyvenus NYC fashion week show 2013. My… https://t.co/nBjhoOByW0 +06/16/2016,Sports_celeb,@Venuseswilliams,#throwback Thursday. Back then...Compton..you know?? https://t.co/OmQuQBachz +06/16/2016,Sports_celeb,@Venuseswilliams,Sometimes you've got to laugh it off! https://t.co/qhJKdMXUlL +06/15/2016,Sports_celeb,@Venuseswilliams,"A few of my favorite things, the #olympics and Harold! This is our special edition… https://t.co/7KcHlYvNEf" +05/08/2016,Sports_celeb,@Venuseswilliams,"Enjoying the Italian Oceanside, after practice and gym of course! https://t.co/jpBEh2hKQW" +04/29/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: What a beautiful look! Check it out at https://t.co/zsCVQVt1PX! #lookgoodplaywell https://t.co/yW9pXLuzV3 +04/28/2016,Sports_celeb,@Venuseswilliams,"I'm going to miss playing in Madrid, but looking forward to Rome :)" +04/27/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: Geo Swirl is a stunning look on the courts and in the gym! #lookgoodplaywell #venuswilliams #BeAnEleVen https://t.co/G98… +04/21/2016,Sports_celeb,@Venuseswilliams,My color inspiration board for Fall Winter 17. @elevenbyvenus https://t.co/tJAEDKqrQe +04/11/2016,Sports_celeb,@Venuseswilliams,"RT @EleVenbyVenus: It's 4/11/16 #VenusonEleVen. Send #Eleven & I will answer your questions on sport, fashion and life, or whatever is on y…" +04/08/2016,Sports_celeb,@Venuseswilliams,What are your weekend plans? I'm back to practice tomorrow! +04/06/2016,Sports_celeb,@Venuseswilliams,"RT @VolvoCarOpen: 'It's like my second home.' + +Venus Williams declared her love for #Charleston following her win over Riske. #VCO2016 http…" +04/06/2016,Sports_celeb,@Venuseswilliams,"@LendaleJohnson yes! Thank, back on tomorrow :)" +04/06/2016,Sports_celeb,@Venuseswilliams,"@Vandee007 yes, good advice :)" +04/06/2016,Sports_celeb,@Venuseswilliams,@tylergerow thank you! Can't wait for tomorrow :) +04/06/2016,Sports_celeb,@Venuseswilliams,So nice to get a win! Can't wait to get back on the court tomorrow! +04/04/2016,Sports_celeb,@Venuseswilliams,"Today at practice @volvocarsopen I decided to mix collections and colors, our new apricot color… https://t.co/fi9NggKbT2" +04/04/2016,Sports_celeb,@Venuseswilliams,"Beautiful Charleston, South Carolina @volvocarsopen #beautiful #historic https://t.co/VXcIPCoHKm" +03/31/2016,Sports_celeb,@Venuseswilliams,Get all regular price collections with free shipping for a limited time only! https://t.co/Kju8zwVNJF +03/31/2016,Sports_celeb,@Venuseswilliams,Last day of the month and all of our regular price collections are available for free shipping!… https://t.co/DM0Uhw02Nk +03/13/2016,Sports_celeb,@Venuseswilliams,Had such a blast meeting so many fans at the @wilsontennis autograph signing! #grateful for all… https://t.co/1MXpbtDvmt +03/13/2016,Sports_celeb,@Venuseswilliams,I can't explain how happy I am to return to Indian Wells. I'm overwhelmed by the warm welcome.… https://t.co/nTy46rfnlL +03/10/2016,Sports_celeb,@Venuseswilliams,#VenusonEleVen tomorrow after my 1st round match. I'm answering all questions with #EleVenbyVenus tagged on @EleVenbyVenus account! +03/10/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: #BeAnEleVen https://t.co/GXYtMjlshP +03/10/2016,Sports_celeb,@Venuseswilliams,"RT @BNPPARIBASOPEN: Perhaps our favorite pic from Wednesday: Welcome back, #Venus #BNPPO16 https://t.co/3zyKInJ0BT" +03/10/2016,Sports_celeb,@Venuseswilliams,RT @GloriousAllianc: The incredible @Venuseswilliams and her gorgeous @EleVenbyVenus fashion lines! @palmspringslife https://t.co/OTTYQYes7a +03/10/2016,Sports_celeb,@Venuseswilliams,Don't our @elevenbyvenus models look amazing in our Camilla Rose? Thank you Pete Carslon's for… https://t.co/QwqvQiM77v +03/09/2016,Sports_celeb,@Venuseswilliams,Why it's good to be back in the desert https://t.co/iGybPPfmiz +03/07/2016,Sports_celeb,@Venuseswilliams,"Today I got to meet the beautiful, talented and inspirational @kverfuerth . She is a… https://t.co/bjSGT0Nm8d" +03/05/2016,Sports_celeb,@Venuseswilliams,Celebrating the life of Bud Collins today. Few know how much he did for the game of tennis. He… https://t.co/yoL5tr46x7 +03/05/2016,Sports_celeb,@Venuseswilliams,Harry's new bag :) awwwwwww! https://t.co/abrxD33Wja +03/02/2016,Sports_celeb,@Venuseswilliams,The ultimate cool down after practice! Harold didn't work very hard but needed a cool down too… https://t.co/SknxNN6vki +02/29/2016,Sports_celeb,@Venuseswilliams,"@serenawilliams is not the only one that's dances ;) +Vintage @elevenbyvenus oh&oh, so I have to… https://t.co/4t1Bi4qBdP" +02/25/2016,Sports_celeb,@Venuseswilliams,Cool brisk evening shoot with @elevenbyvenus Our spring collection is a breath of fresh Camilla… https://t.co/CKSl6NhFnW +02/14/2016,Sports_celeb,@Venuseswilliams,"https://t.co/s2d7nCVzeh My sister Lynn shares her views, and talks about her line Ember Lyn Designs" +02/14/2016,Sports_celeb,@Venuseswilliams,"First title of the year, Asia is very lucky for me! Thank you to all the fans and the Taiwan… https://t.co/8HhpIdzWI0" +01/27/2016,Sports_celeb,@Venuseswilliams,"I+got+""Very+Much+Venus""+on+""Which+Williams+Sister+Are+You?""+What+about+you? https://t.co/omj9iEqaGW" +01/27/2016,Sports_celeb,@Venuseswilliams,A view to the top at the Anglesea lighthouse on the great ocean road #nofilter https://t.co/Usv897iprx +01/02/2016,Sports_celeb,@Venuseswilliams,Rainbows of colors are such a design inspiration for me. This barrage of colorful Thai silk make… https://t.co/hjGMDvQn0W +01/02/2016,Sports_celeb,@Venuseswilliams,"Sunset in Thailand, one of my favorite countries in the world. Until next time... & here I come… https://t.co/FAwZXIWBmb" +01/01/2016,Sports_celeb,@Venuseswilliams,Playing with some of the best players in the world. That's how I am bringing in the new year. I… https://t.co/8NcgkoBAqL +01/01/2016,Sports_celeb,@Venuseswilliams,"Tennis with some of the best players in the world, that's how I am bringing in 2016! https://t.co/xEilEVS9r5" +12/31/2015,Sports_celeb,@Venuseswilliams,The texture of Thai silk is just luxurious https://t.co/XI1MMvborH +12/31/2015,Sports_celeb,@Venuseswilliams,Catching some design inspiration in Thailand. Thai silk is really one of a kind. https://t.co/UPGf1FJCjc +12/19/2015,Sports_celeb,@Venuseswilliams,Taking some time away from tennis this weekend can you believe it??! Visiting the construction… https://t.co/vB00BjuhQk +12/18/2015,Sports_celeb,@Venuseswilliams,Everyday I endeavor to be an #EleVen. It's about giving your best at all that you do… https://t.co/rhhTuBP7uX +06/29/2018,Sports_celeb,@AndreAgassi,"RT @Longines: Only 10 days left until the end of the ""Conquest V.H.P. Stefanie Graf & Andre Agassi Foundations"" timepieces online auction.…" +06/23/2018,Sports_celeb,@AndreAgassi,"A colleague but more importantly a friend... + +https://t.co/LzpfyZckPp https://t.co/Z6VkNt0qpB" +06/02/2018,Sports_celeb,@AndreAgassi,RT @Longines: Tonight #Longines marks its 10-year partnership with Stefanie Graf and Andre @AndreAgassi by launching an online auction of t… +05/20/2018,Sports_celeb,@AndreAgassi,👀 @GoldenKnights!! +05/19/2018,Sports_celeb,@AndreAgassi,#VEGAS!!! +04/29/2018,Sports_celeb,@AndreAgassi,@TeamUSA @usta Thank you! +04/29/2018,Sports_celeb,@AndreAgassi,@TennisHalloFame Thank you! +04/29/2018,Sports_celeb,@AndreAgassi,@usopen Thank you !! +04/29/2018,Sports_celeb,@AndreAgassi,KNIGHT TIME!!! #VegasBorn +04/27/2018,Sports_celeb,@AndreAgassi,@anirsinha I’ll give her a hello for you! +04/27/2018,Sports_celeb,@AndreAgassi,The only thing better than #KnightTime is Knight Time with my bride!! #lovelove https://t.co/EnmWsiKdvU +04/25/2018,Sports_celeb,@AndreAgassi,1 sleep to go... #VegasBorn +04/18/2018,Sports_celeb,@AndreAgassi,Solid midweek form!! https://t.co/Ii485wP1Lt +04/12/2018,Sports_celeb,@AndreAgassi,@CrpnterJe Don’t have marshmallow fights with a 16 year old baseball player.. words to live by!! +04/12/2018,Sports_celeb,@AndreAgassi,My inspired attempt to block like Marc-André Fleury!! #VegasBorn https://t.co/iJNhxQJ8je +04/10/2018,Sports_celeb,@AndreAgassi,"Always interesting & thoughtful, @ZibbyOwens!! #BestOfLuck + +https://t.co/t3WLqjKyVH" +03/08/2018,Sports_celeb,@AndreAgassi,"RT @AAFforE: #InternationalWomensDay. THANK YOU, #StefanieGraf! https://t.co/HRLbuCUUx9" +03/04/2018,Sports_celeb,@AndreAgassi,@DjokerNole 🤗 +03/02/2018,Sports_celeb,@AndreAgassi,"RT @DjokerNole: Vivaaaa Las Vegas, baby. Idemo🕺 https://t.co/QrGsHdHwTN" +02/16/2018,Sports_celeb,@AndreAgassi,"36 years 195 days... + +@RogerFederer continues to raise the bar in our sport. Congratulations on yet another remarkable achievement!!" +02/16/2018,Sports_celeb,@AndreAgassi,RT @darren_cahill: Enjoying my (highly likely) last day as the coach to the oldest ever No.1 on the ATP tour. Bloody Federer! Greedy mongre… +02/15/2018,Sports_celeb,@AndreAgassi,@darren_cahill Well deserved!!! +02/09/2018,Sports_celeb,@AndreAgassi,@helpsavemydad ♥️ +02/09/2018,Sports_celeb,@AndreAgassi,"RT @helpsavemydad: @AndreAgassi If you or someone you may know might be interested in donating please message me, Rileigh Hamilton on Faceb…" +02/09/2018,Sports_celeb,@AndreAgassi,A friend and a colleague... https://t.co/GJfypolGGn +01/30/2018,Sports_celeb,@AndreAgassi,@AjradiniMajda @hckratz @usopen Thank you +01/30/2018,Sports_celeb,@AndreAgassi,@usopen Bingo !! +01/16/2018,Sports_celeb,@AndreAgassi,@Al_x_andra @DjokerNole @AustralianOpen I still got it?? Haha +01/16/2018,Sports_celeb,@AndreAgassi,#quads 😂😂 https://t.co/RBjVEuJkK9 +01/13/2018,Sports_celeb,@AndreAgassi,@AugieAguilar @EquiiTheApp That would be..Antenna??! +01/12/2018,Sports_celeb,@AndreAgassi,Proud to announce partnership with a group of young #LasVegas entrepreneurs!! Congrats on the @equiitheapp launch!!… https://t.co/QZHFA3v73W +01/12/2018,Sports_celeb,@AndreAgassi,✈️ @AustralianOpen +01/10/2018,Sports_celeb,@AndreAgassi,RT @Ath4Hope: Join us for #PromiseChat to share your thoughts about mentoring and to brainstorm ways mentors can play a role in the lives o… +12/26/2017,Sports_celeb,@AndreAgassi,RT @WTCAdelaide: The legend @AndreAgassi + the rising star @FTiafoe + one of the most successful pairings in history @Bryanbrothers & @Brya… +12/24/2017,Sports_celeb,@AndreAgassi,@AndyS_Research @GoldenKnights #GoKnightsGo !! +12/24/2017,Sports_celeb,@AndreAgassi,Stefanie with a @GoldenKnights W!! #VEGAS https://t.co/tUbUAFU4BW +12/24/2017,Sports_celeb,@AndreAgassi,RT @lawanda50: @AndreAgassi @WTCAdelaide @FTiafoe @Bryanbros @Bryanbrothers Seemed like yesterday! 😀 +12/24/2017,Sports_celeb,@AndreAgassi,@WTCAdelaide 👋🏼👋🏼 +12/24/2017,Sports_celeb,@AndreAgassi,"It's been 20 years, @WTCAdelaide!!?? JANUARY IT IS: https://t.co/OBDCitFagR + + @Ftiafoe @bryanbros @bryanbrothers 🇺🇸… https://t.co/qjXV8noOFk" +12/18/2017,Sports_celeb,@AndreAgassi,👼🏼 https://t.co/1rcnbAb0IB +12/07/2017,Sports_celeb,@AndreAgassi,@nicekicks 👍🏼 +12/04/2017,Sports_celeb,@AndreAgassi,"RT @LavazzaUSA: This year we’re celebrating art and sustainability in our annual calendar, collaborating with @platon and 17 fans who are a…" +12/04/2017,Sports_celeb,@AndreAgassi,#2030whatareUdoing!!! @Lavazza https://t.co/dbSPI3EDkR +12/02/2017,Sports_celeb,@AndreAgassi,"RT @DjokerNole: Lots to be done, but we embrace it with lots of excitement 💪👌. Practice today with @andreagassi and @stepec78 https://t.co/…" +12/01/2017,Sports_celeb,@AndreAgassi,@EquiiTheApp @WmTJMiller Looking forward to the release!! +12/01/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: We are making our final touches on @EquiiTheApp 🙌 +12/01/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: Big news coming soon... +11/29/2017,Sports_celeb,@AndreAgassi,"RT @Lavazza: Il Calendario Lavazza 2018 si fa portavoce dei 17 obiettivi di sviluppo sostenibile dell'Onu, per la salvaguardia del pianeta…" +11/29/2017,Sports_celeb,@AndreAgassi,I aim to goal number 4: Quality Education. This is the reason why I set up a foundation dedicated to the transforma… https://t.co/HShMVEuxsX +11/28/2017,Sports_celeb,@AndreAgassi,RT @opportunity180: We're visiting @DPAgassiCampus at this morning's community open house to see them in action! https://t.co/0QdBdt68d3 +11/16/2017,Sports_celeb,@AndreAgassi,@AAFforE Hey !! +11/10/2017,Sports_celeb,@AndreAgassi,RT @jon_wertheim: This week's @SInow /@TennisChannel podcast is w/ the great Andre Agassi who expects big things in 2018 from @DjokerNole .… +11/06/2017,Sports_celeb,@AndreAgassi,"For every ‘yes' on something, you’ll get 25 ‘no’s’. But it’s crazy how much that ‘yes’ will give you hope..." +11/04/2017,Sports_celeb,@AndreAgassi,@AugieAguilar @GoldenKnights 👍🏼👍🏼👍🏼👍🏼 +11/03/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""No #ActOfKindness, no matter how small, is ever wasted. + +- #Aesop | https://t.co/ZIBtwi7mxi" +10/27/2017,Sports_celeb,@AndreAgassi,"RT @EquiiTheApp: It’s #spooky season + +#Halloween #Halloween2017 #scary #boo https://t.co/QC35PRAP8B" +10/27/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: Can you solve this Equii in 60 secs? 🤔 https://t.co/15cnxzhDA7 +10/27/2017,Sports_celeb,@AndreAgassi,"RT @EquiiTheApp: For all of our Las Vegas friends, tomorrow is Nevada Day! +#state #nevada #statehood #battleborn #lasvegas #vegasstrong ht…" +10/25/2017,Sports_celeb,@AndreAgassi,RT @UBS: From champion on the court to champion in the classroom: @AndreAgassi shares his inspiration for @AAFforE #UBSPhilaForum https://… +10/24/2017,Sports_celeb,@AndreAgassi,"RT @UNLVmedicine: These, are some of the lifesavers. #VegasStrong | @UMCSN https://t.co/60LF6BtOgn" +10/04/2017,Sports_celeb,@AndreAgassi,#VegasSTRONG... https://t.co/fetgJ53av7 +09/28/2017,Sports_celeb,@AndreAgassi,RT @jimmykimmel: @AndreAgassi Paw Patrol! +09/28/2017,Sports_celeb,@AndreAgassi,"No goal too big, no toy too high... https://t.co/5OiJKbUUPx" +09/15/2017,Sports_celeb,@AndreAgassi,"RT @SquarePanda: ""Oh, the places you'll go!"" #FridayFeeling ☀️ https://t.co/zkglquuDRz" +09/14/2017,Sports_celeb,@AndreAgassi,"RT @LA2028: It's official 🎉 + +The IOC just announced Los Angeles will be the host city of the 2028 Olympic & Paralympic Games! #FollowTheSun…" +09/01/2017,Sports_celeb,@AndreAgassi,@Dodgers @AugieAguilar @kikehndez @JonSooHooPics 👍🏼👍🏼 +08/28/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""All the good stuff is on the other side of tired."" - @AndreAgassi #USOPEN https://t.co/7zhlR7KKA9" +08/22/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: We put beliefs into practice! + +https://t.co/ZIBtwi7mxi | #EDUCATION" +08/16/2017,Sports_celeb,@AndreAgassi,"RT @darren_cahill: Welcome to the teens, Tahlia!😊 Hope you have a great day and a very Happy Birthday. Big hugs.… https://t.co/LBg6bCM0Qr" +08/16/2017,Sports_celeb,@AndreAgassi,"RT @LA2028: The spirit of the Games lives on in LA! Relive the magic of #LA84 with the ones that helped make it a reality, the volunteers a…" +08/15/2017,Sports_celeb,@AndreAgassi,...and I'm the worst athlete in the room 😂 https://t.co/AgYQu90vkR +08/06/2017,Sports_celeb,@AndreAgassi,@Angels @MikeTrout Appreciate that Mike!! Haha +07/06/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: 19__ @Wimbledon? #TBT #Wimbledon https://t.co/Vi1SfLSfV0 +07/06/2017,Sports_celeb,@AndreAgassi,RT @darren_cahill: Back together. @AndreAgassi (the coach) & the 2 guys that taught him everything he knows 🙊😂 ESPN interview to air Saturd… +06/23/2017,Sports_celeb,@AndreAgassi,@DerekFlexFelix Thanks !! What a place !! +06/23/2017,Sports_celeb,@AndreAgassi,"RT @LA2024: With over 2️⃣0️⃣2️⃣4️⃣ events across the country, the spirit of the Games is sweeping the nation as the 🇺🇸 celebrates #OlympicD…" +06/19/2017,Sports_celeb,@AndreAgassi,https://t.co/7RHjtVr9Z4 +06/07/2017,Sports_celeb,@AndreAgassi,"RT @TimSiegelTTU: This is the Team Luke Documentary. Please retweet as I am wanting to spread the word about The Team Luke Foundation. +http…" +06/01/2017,Sports_celeb,@AndreAgassi,RT @bagiuann: @AndreAgassi @rolandgarros look at Gil!! Wow!! +06/01/2017,Sports_celeb,@AndreAgassi,@bagiuann @rolandgarros Yup ! +06/01/2017,Sports_celeb,@AndreAgassi,1999 #FrenchOpen final day.. oh my!! https://t.co/g7aG5RZF7v +06/01/2017,Sports_celeb,@AndreAgassi,@ptballs @AgassiPrep Hangin in Paris ! +06/01/2017,Sports_celeb,@AndreAgassi,Always best to travel with friends. @AgassiPrep bringing the inspiration to PARIS!! https://t.co/xGAno4J59t +05/23/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: https://t.co/ZIBtwi7mxi is an educational organization dedicated to transforming U.S. #PublicEducation for underserved youth.… +05/18/2017,Sports_celeb,@AndreAgassi,@mandar2404 Yup +05/18/2017,Sports_celeb,@AndreAgassi,@Rapetti @bbaker @gvitt Bingo +05/18/2017,Sports_celeb,@AndreAgassi,"Another sample from my @Udemy course on how to improve your #TENNIS shot!! + +FULL COURSE: https://t.co/2gpfufheVS https://t.co/fK4Fl0cWXD" +05/15/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: “All the good stuff is on the other side of tired.” - #AndreAgassi + +https://t.co/ZIBtwi7mxi" +05/14/2017,Sports_celeb,@AndreAgassi,"Your guidance, your patience, your LOVE is beyond compare. + +Happy #MothersDay!!!" +05/12/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: #TBT | @AgassiPrep Graduates First Senior Class! + +Agassi Prep graduates its first class on June 12, 2009 with a 100% college a…" +05/09/2017,Sports_celeb,@AndreAgassi,"RT @johnnykats: #KATS! Athl. commish @CiscoAguilar, @Agassi #StefanieGraf counsel, headed for #Germany https://t.co/FfBMYGOuJo via @reviewj…" +05/03/2017,Sports_celeb,@AndreAgassi,@mrbalaguer BLUE +05/03/2017,Sports_celeb,@AndreAgassi,@Royce_A_S The big guy is taking over the house!! +05/03/2017,Sports_celeb,@AndreAgassi,🤔 https://t.co/DaOSlkp9rI +04/05/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""It always seems impossible until it's done."" - @NelsonMandela" +03/30/2017,Sports_celeb,@AndreAgassi,#KeepThePromise...@ThePromiseFilm https://t.co/0czA1DrRVU +03/20/2017,Sports_celeb,@AndreAgassi,RT @udemy: .@AndreAgassi shares his tennis psychology in his Udemy course. Read more in his interview with @guardian: https://t.co/MnwKMXul… +03/10/2017,Sports_celeb,@AndreAgassi,"A few special guests stopping by today, @AgassiPrep??!!" +03/07/2017,Sports_celeb,@AndreAgassi,Blue & friend. https://t.co/DOy8Q3GdJo +03/04/2017,Sports_celeb,@AndreAgassi,@BillyBarren Thank you!! +02/17/2017,Sports_celeb,@AndreAgassi,"RT @GovSandoval: Fantastic to be back on campus at @AgassiPrep as we welcome @DemocracyPrep to the #NVFamily +#AllNV #NVLeg https://t.co/9…" +02/17/2017,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @DemocracyPrep! #EDUCATION https://t.co/acFXRcGPSq" +02/17/2017,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @GovSandoval! #EDUCATION https://t.co/110Oeb4eB2" +02/17/2017,Sports_celeb,@AndreAgassi,RT @AgassiPrep: Help us welcome Governor @BrianSandoval and @DemocracyPrep to campus! +02/09/2017,Sports_celeb,@AndreAgassi,RT @udemy: Learn how to improve your tennis game with tennis pro @AndreAgassi: https://t.co/trIBOE7pgT https://t.co/uqrd3Sc59S +02/02/2017,Sports_celeb,@AndreAgassi,@vaishnavisngh THANK YOU for reading!! +02/02/2017,Sports_celeb,@AndreAgassi,RT @vaishnavisngh: I don't remember when a book moved me so much - thank you @AndreAgassi for #Open! +02/01/2017,Sports_celeb,@AndreAgassi,"RT @udemy: ""Tennis taught me to always be open to learning & growing through success & defeat.” @AndreAgassi's new course: https://t.co/w8I…" +01/31/2017,Sports_celeb,@AndreAgassi,RT @udemy: We're excited to announce that tennis pro @AndreAgassi just launched a course on tennis fundamentals! https://t.co/w8Iw6g95E0 ht… +01/12/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: #TBT to the @AustralianOpen | https://t.co/ZIBtwi7mxi https://t.co/dCluS6f4nN +01/12/2017,Sports_celeb,@AndreAgassi,RT @LavazzaAus: Coffee cup vs #AusOpen cup? ☕ or 🏆? Guess which one to win the ultimate @AustralianOpen experience: https://t.co/aQW9veFw4h… +01/11/2017,Sports_celeb,@AndreAgassi,@Borrisokane_Abu Glad you enjoyed!! +01/11/2017,Sports_celeb,@AndreAgassi,What difference can a detail make? Discover with @LavazzaAus to win tickets to the @AustralianOpen:… https://t.co/lsGWuorzc4 +01/09/2017,Sports_celeb,@AndreAgassi,☕ or 🏆? They have more in common than you think. Join @LavazzaAus to win the @AustralianOpen final:… https://t.co/ZXi80hRJWr +01/07/2017,Sports_celeb,@AndreAgassi,@AugieAguilar move those feet ! +01/05/2017,Sports_celeb,@AndreAgassi,Always time for a scholar!! #EDUCATION https://t.co/Eh38iBZDbI +12/26/2016,Sports_celeb,@AndreAgassi,HAPPY HOLIDAYS!! 🎄🎄 +12/14/2016,Sports_celeb,@AndreAgassi,@ChrisArcher22 appreciate it. Enjoy!! +12/14/2016,Sports_celeb,@AndreAgassi,RT @ChrisArcher22: Just started @AndreAgassi autobiography! It's amazing. Thanks for your honesty and insight. #OPEN +12/01/2016,Sports_celeb,@AndreAgassi,RT @TennisHalloFame: Throwing it back today with a #tbt of epic proportions! 9 year old @AndreAgassi meets his idol Bjorn Borg in Las Vegas… +11/30/2016,Sports_celeb,@AndreAgassi,"RT @AAFforE: Charitable Giving and Accountability/Transparency | WAYS TO GIVE: https://t.co/vX7IOx9zAc + +With Education, There is Hope! #ED…" +11/29/2016,Sports_celeb,@AndreAgassi,@hckratz @AAFforE and we thank you !! +11/29/2016,Sports_celeb,@AndreAgassi,RT @hckratz: Made my holiday donation to the @AAFforE. Thanks for inspiring me @AndreAgassi #GivingTuesday #GiveBack +11/17/2016,Sports_celeb,@AndreAgassi,RT @darren_cahill: Excited to see the finished product as @udemy shoots a coaching video with @AndreAgassi. AA revealing his tennis trainin… +11/11/2016,Sports_celeb,@AndreAgassi,🇺🇸 +11/02/2016,Sports_celeb,@AndreAgassi,All in for #EDUCATION. Thank you @SantanaCarlos!! @SquarePanda @AgassiPrep https://t.co/d5IME0DoyM +11/01/2016,Sports_celeb,@AndreAgassi,"RT @johnnykats: ""His greatest instrument is his heart."" @andreagassi says of #carlossantana l, seated with… https://t.co/uIPubn3zAI" +11/01/2016,Sports_celeb,@AndreAgassi,Visiting some very special friends today with @SantanaCarlos!! https://t.co/0F3WD5iCLL +11/01/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @SantanaCarlos and @SquarePanda!" +11/01/2016,Sports_celeb,@AndreAgassi,RT @usopen: @AndreAgassi you & #SteffiGraf take #Halloween next level 😍🎃💥 #USOpen +11/01/2016,Sports_celeb,@AndreAgassi,💪🏼 https://t.co/LVKJJllS0Z +10/23/2016,Sports_celeb,@AndreAgassi,PROUD UNCLE & AUNT. #CarterAgassi https://t.co/Y76DaOJcGy +10/11/2016,Sports_celeb,@AndreAgassi,RT @omaze: Don’t miss out on your chance to play doubles tennis with @AndreAgassi & Steffi Graf! Support 2 great causes & ENTER https://t.c… +10/09/2016,Sports_celeb,@AndreAgassi,@WorldTeamTennis @CaesarsPalace @BillieJeanKing @eltonofficial @Martina @andyroddick @MardyFish 👍🏼 +10/09/2016,Sports_celeb,@AndreAgassi,RT @WorldTeamTennis: A view of our court coming together at @CaesarsPalace for Monday's #WTTSmashHits. Buy tix: https://t.co/6QBVbrbPOD htt… +09/28/2016,Sports_celeb,@AndreAgassi,RT @queenhazarika: @AndreAgassi Love you both. Warm regards from India :) +09/28/2016,Sports_celeb,@AndreAgassi,"Listen here...TENNIS with you in Vegas, flights & hotel included !! WIN: https://t.co/NMNusFxagk https://t.co/tku7iPy6KF" +09/28/2016,Sports_celeb,@AndreAgassi,⛈⛈⛈ rolling into #VEGAS! +09/22/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: YOU can win a trip to #Vegas to play a game of doubles with @AndreAgassi & Steffi Graf! ENTER: https://t.co/r8tQ4cZVMS https:/… +09/22/2016,Sports_celeb,@AndreAgassi,RT @Martijn_Blanken: Truly impressive philanthropist and entrepreneur @AndreAgassi on stage in 2 hours at #Vantage16 https://t.co/Pbw1yZPja7 +09/16/2016,Sports_celeb,@AndreAgassi,RT @omaze: Would you choose Andre Agassi or Steff Graf as your partner for doubles tennis? Join & ENTER https://t.co/j9kQ2tZsIh https://t.c… +09/16/2016,Sports_celeb,@AndreAgassi,RT @darren_cahill: @redlinersonline @AndreAgassi the best! 👍 +09/15/2016,Sports_celeb,@AndreAgassi,You & me. Stef & your friend. DOUBLES??! https://t.co/adCMwArzc4 https://t.co/8jS3ErGurk +09/13/2016,Sports_celeb,@AndreAgassi,RT @Telstra_EntGovt: We're looking forward to the @AndreAgassi & @SirKenRobinson speaker sessions at #Vantage16 https://t.co/sgxfyLZXfk +09/11/2016,Sports_celeb,@AndreAgassi,🇺🇸 +09/08/2016,Sports_celeb,@AndreAgassi,@ssr99 don't get me in trouble +09/08/2016,Sports_celeb,@AndreAgassi,Doubles vs Stef & I in #Vegas?!! Support 2 great causes & ENTER: https://t.co/sT1siNeoIL https://t.co/OkTn9nCBZ2 +09/01/2016,Sports_celeb,@AndreAgassi,RT @Steve_Weissman: So cool to broadcast the first match @usopen with the roof closed @TennisChannel @justingimelstob 🎾🇺🇸 https://t.co/dLHH… +08/31/2016,Sports_celeb,@AndreAgassi,RT @LavazzaUSA: Taking over the High Line! #Imback #USOpen https://t.co/jVfrFj3gzo +08/31/2016,Sports_celeb,@AndreAgassi,@usopen my pleasure!!! +08/31/2016,Sports_celeb,@AndreAgassi,RT @usopen: Spotted: We were so happy to have our former champ @AndreAgassi in the house tonight! 🏆🏆 #usopen https://t.co/9VrlufubhI +08/30/2016,Sports_celeb,@AndreAgassi,@Dan_Fuller1 good book but no... +08/30/2016,Sports_celeb,@AndreAgassi,And where does this door lead??!! #USOPEN https://t.co/ncatcT5Jss +08/30/2016,Sports_celeb,@AndreAgassi,#USOPEN 💪🏼 https://t.co/FyzfesdPbZ +08/30/2016,Sports_celeb,@AndreAgassi,@LavazzaUSA Proud to be back with #Lavazza for an amazing project!! +08/30/2016,Sports_celeb,@AndreAgassi,RT @LavazzaUSA: Andre Agassi is back. Watch the video. #ImBack https://t.co/Q6pIJ6Z68x +08/30/2016,Sports_celeb,@AndreAgassi,#NYC!!! +08/25/2016,Sports_celeb,@AndreAgassi,@thepromisefilm Kirk would be proud!! +08/25/2016,Sports_celeb,@AndreAgassi,"RT @thepromisefilm: ""The Promise"" will premiere at #TIFF16 Sept 11. Individual tickets go on sale on Sept 4 https://t.co/07QNIWC6pn https:/…" +08/24/2016,Sports_celeb,@AndreAgassi,https://t.co/Vi1mpIrE2Z 👍🏼 https://t.co/Bkyq73AgNC +08/23/2016,Sports_celeb,@AndreAgassi,RT @cnnsport: Tennis legend @AndreAgassi opens up to @TheRealPatCash 🎾 Watch/read: https://t.co/ERMYzbtau7 #CNNOpenCourt https://t.co/G6Nvq… +08/22/2016,Sports_celeb,@AndreAgassi,RT @Telstra_news: We're excited to announce sports legend and entrepreneur @AndreAgassi as our headline speaker at #Vantage16 https://t.co/… +08/16/2016,Sports_celeb,@AndreAgassi,Buster standing under Blue... Blue is 8months old as of yesterday 😳 https://t.co/QIw8mPXEi9 +07/28/2016,Sports_celeb,@AndreAgassi,"You feel a sense of pride, responsibility & opportunity to do something that you're connected to but that’s much bigger than you #Olympics🇺🇸" +07/22/2016,Sports_celeb,@AndreAgassi,"My story began in Las Vegas, where we dare to dream. Now I'm grateful... @NIKE #JUSTDOIT https://t.co/J4rfiLgdJ5" +07/21/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: ""We inspire learning through academic rigor, shared responsibility and a culture of respect."" - @AAFforE #EDUCATION" +07/20/2016,Sports_celeb,@AndreAgassi,"RT @darren_cahill: My new best friend 😍 @AndreAgassi's little guy ""Blue"" 7 month old, 100 pound Great Dane. https://t.co/9VmyiEyt2m" +07/14/2016,Sports_celeb,@AndreAgassi,Welcome to Sutri... https://t.co/g6pvHYVPtJ +07/04/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: Happy #FourthofJuly 🇺🇸! +06/21/2016,Sports_celeb,@AndreAgassi,#BELIEVE EVERYDAY https://t.co/Vi1mpIrE2Z https://t.co/4wMfHFYnaL +06/02/2016,Sports_celeb,@AndreAgassi,Who has them??! https://t.co/m1kJnvtWFr +06/01/2016,Sports_celeb,@AndreAgassi,RT @SoleCollector: .@AndreAgassi's Nike Air Tech Challenge 3 goes gold for Wimbledon: https://t.co/a78gQqxF04 https://t.co/cRiqCUvoA3 +06/01/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: STAFF MEETING in 1 hour! #EDUCATION +05/24/2016,Sports_celeb,@AndreAgassi,"Signed, sealed and delivered...post your letter to @RafaelNadal at Nike Paris!! #VamosRafa @NikeCourt https://t.co/ZELyToNFab" +05/23/2016,Sports_celeb,@AndreAgassi,Closer look... https://t.co/XFI6E5lEPs +05/23/2016,Sports_celeb,@AndreAgassi,Ever been in love? https://t.co/9DCJ9HIhcV +05/20/2016,Sports_celeb,@AndreAgassi,RT @AgassiPrep: Nickelodeon #WORLDWIDEDAYOFPLAY! https://t.co/NDCzofio6B +05/19/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Thank you for the visit, GOV @BrianSandoval! #EDUCATION https://t.co/cwJDP0Q8rP" +05/18/2016,Sports_celeb,@AndreAgassi,📸 cred: John Russell https://t.co/p9ZnXSgcz5 +05/11/2016,Sports_celeb,@AndreAgassi,RT @SquarePanda: Meet the panelists who will join us to explore the #FutureofEdTech next week at Stanford University! https://t.co/f4B6yFjt… +05/05/2016,Sports_celeb,@AndreAgassi,"RT @ChampSeries10s: Here's a throwback photo of @andyroddick @JRBlake and @MardyFish .... ""U.S. Davis Cup Future"" https://t.co/FqMw6F5Fxj" +05/04/2016,Sports_celeb,@AndreAgassi,On 5/12 I'm a panelist at @SquarePanda's #FutureofEdTech event at STANFORD.. Join online to learn more !! https://t.co/JU2WFBlLQ3 +05/03/2016,Sports_celeb,@AndreAgassi,Proud to exhibit @AgassiAndReyes at UK's @ElevateArena trade show Wednesday/Thursday with @CFIHQ!!! #Elevate2016 +05/03/2016,Sports_celeb,@AndreAgassi,RT @SquarePanda: We're thrilled to announce #Tech & the Future of #Education: a symposium happening next week with @levarburton @AndreAgass… +04/28/2016,Sports_celeb,@AndreAgassi,RT @jimmykimmel: I’ve been replaced. #TakeYourKidToWorkDay https://t.co/wBjZW3b7iB +04/28/2016,Sports_celeb,@AndreAgassi,"Sit back and enjoy this one. Well done, PK!!! @Nike https://t.co/G140NVf9gU" +04/28/2016,Sports_celeb,@AndreAgassi,"With Education, There is Hope!!! @AAFforE https://t.co/oazbK6LWb8" +04/24/2016,Sports_celeb,@AndreAgassi,@KevinI he's growing...8weeks 20lbs. 12-- 40lbs-- 16now 66lbs +04/24/2016,Sports_celeb,@AndreAgassi,I'm in love ! https://t.co/9Snvqw28Vj +04/15/2016,Sports_celeb,@AndreAgassi,See it ? https://t.co/F2pPsCobTW +04/13/2016,Sports_celeb,@AndreAgassi,CONGRATS @opportunity180!!! Former NV edu official wins $10M state charter school contract: https://t.co/UulPOLwI08 https://t.co/IBdnIjFqbD +04/13/2016,Sports_celeb,@AndreAgassi,"RT @SquarePanda: Invest now, and watch your child's love of reading grow and shine forever. +https://t.co/krxjYUt98t https://t.co/eqKeUcjfTY" +04/10/2016,Sports_celeb,@AndreAgassi,RT @JRBlake: Thanks Andre. It helps that I'm sitting next to you right now. Just soaking up the knowledge. https://t.co/Z7fJIdl5FZ +04/10/2016,Sports_celeb,@AndreAgassi,Solid work tweeting sir @JRBlake !! +04/09/2016,Sports_celeb,@AndreAgassi,I see you CHARLESTON... @VolvoCarOpen https://t.co/AD2tutJsdG +04/09/2016,Sports_celeb,@AndreAgassi,"RT @VolvoCarOpen: Reunion between old friends. 😎 + +RT if you're excited to see these 4 legends of the game playing tonight! 🎾 #VCO2016 https…" +04/09/2016,Sports_celeb,@AndreAgassi,69ft putt?! @TheMasters #YIKES +04/09/2016,Sports_celeb,@AndreAgassi,#VCO2016...where's @MardyFish?! @ChampSeries10s https://t.co/XhMGPaAWwc +04/09/2016,Sports_celeb,@AndreAgassi,RT @paugasol: Great meeting you yesterday @andreagassi! I hope you enjoyed your visit to… https://t.co/zFzUMGM7NI +04/09/2016,Sports_celeb,@AndreAgassi,"RT @VolvoCarOpen: Men's tennis returns to Charleston w/ @ChampSeries10s, feat. #Agassi, #Roddick & more! Tix: https://t.co/JpNxdfkiBY https…" +07/02/2018,Sports_celeb,@OscarDeLaHoya,RT @Variety: .@Facebook to Live-Stream Boxing Matches From @oscardelahoya's @GoldenBoyBoxing https://t.co/QBUSg8GGuH +07/02/2018,Sports_celeb,@OscarDeLaHoya,Congratulations to @KingJames and all the Los Angeles @Lakers fans! Can’t wait to see you play @STAPLESCenter!!… https://t.co/DT4ovkD0Yp +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @BoxeoDCampeones: Así luce Lucas Matthysse a sólo dos semanas del pesaje en Kuala Lumpur, Malasia. #PacquiaoMatthysse #FightOfChampions…" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: IT’S TIME‼️ + +#CaneloGGG2 Social 🎟 Pre-sale starts NOW: https://t.co/ZskL3u0sBJ Use Code: MEXICO https://t.co/kyFwuvucYL" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: TOMORROW!!! + +#CaneloGGG2 Social 🎟 Pre-sale! + +⏰: 10amPT +Use Code: MEXICO +https://t.co/CmSMa8JcDc https://t.co/UfKHA4Xz…" +06/24/2018,Sports_celeb,@OscarDeLaHoya,RT @RondaRousey: Congrats to our onefightmanagement fighter luckyboyferd on his latest victory @goldenboyboxing 👏🏼👏🏼👏🏼👏🏼 https://t.co/lqgHm… +06/24/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Main event time!! 🔥 + +@VergilOrtiz enters the ring. #OrtizSalgado #GBPonESPN https://t.co/fjI31ZSjj8" +06/23/2018,Sports_celeb,@OscarDeLaHoya,Viva Mexico!!! https://t.co/CdZNuxyrAF +06/23/2018,Sports_celeb,@OscarDeLaHoya,"Vamos México! Si se pudo, si se pudo! 🇲🇽 #OrgulloMexicano #worldcup2018 ##MexicoVsSouthKorea https://t.co/6d45PT2PLt" +06/20/2018,Sports_celeb,@OscarDeLaHoya,"RT @danrafaelespn: Golden Boy Promotions and HBO are finalizing a tripleheader for July 21 at the Hard Rock Hotel & Casino in Las Vegas, th…" +06/18/2018,Sports_celeb,@OscarDeLaHoya,"@danrafaelespn @ShaneMosley_ Hahah, kids don’t know about this action." +06/17/2018,Sports_celeb,@OscarDeLaHoya,Viva México 🇲🇽 y el pan dulce!!! #sisepuede #mexico #futbol https://t.co/UbXwjUrgtj +06/15/2018,Sports_celeb,@OscarDeLaHoya,@SeFutbol gooooolllllll!!!!!! +06/15/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Mercito Gesta takes home the belt with a Majority Decision Victory #GBPonESPN #boxing https://t.co/eSxF4nF66P +06/14/2018,Sports_celeb,@OscarDeLaHoya,"RT @BleacherReport: Canelo-GGG rematch set for September 15, per @OscarDeLaHoya https://t.co/108XY1xEXm" +06/13/2018,Sports_celeb,@OscarDeLaHoya,"I’m happy to inform that we have a fight September 15!!!! #CaneloGGG2 +Feliz De informar que si tenemos pelea Septi… https://t.co/vFrHrA3I32" +06/13/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Log on to https://t.co/gEwz3LcyYG at 1 PM for the #GBPonESPN weigh in ft. @TheRealMGesta https://t.co/o26BYzNXDO +06/13/2018,Sports_celeb,@OscarDeLaHoya,Half hour to decide if the biggest fight in boxing will take place. #whereisggg +06/13/2018,Sports_celeb,@OscarDeLaHoya,t-minus two hours. Somehow I think @eddiehearn @frankwarren_tv and Al Haymon won't be as difficult to reach as @gggboxing #whereisggg +06/13/2018,Sports_celeb,@OscarDeLaHoya,"@canelo wants it, @goldenboyboxing wants it, the media want it, fans want it. Paging @gggboxing. #whereisggg" +06/13/2018,Sports_celeb,@OscarDeLaHoya,"Tic-Toc, Tic-Toc. If any fight freaks see @GGGBoxing in Russia, perhaps you can lend him a pen. #whereisGGG" +06/13/2018,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: It's down to this: @GoldenBoyBoxing & @Canelo issue @GGGBoxing & @TomLoeffler1 a deadline of noon PT on Wednesday to acc… +06/11/2018,Sports_celeb,@OscarDeLaHoya,"RT @touchumup: Good food, good times with @MrsEsterMarie and our son in NY after @DiegoDeLaHoya victory this past Friday. Next stop, @Fan…" +06/10/2018,Sports_celeb,@OscarDeLaHoya,Congratulations to @leosantacruz2 on a great fight and hats off to @abnermares for saying those kind words to Leo’s… https://t.co/TGA1f1ZWvG +06/09/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TONIGHT! @diegodelahoya vs Jose Salgado for the #NABF and #NABO Super Bantamweight Titles on @espn 9:30pm PT. #GBPonES… +06/08/2018,Sports_celeb,@OscarDeLaHoya,Excited to see the next installment of @SicarioMovie SICARIO: DAY OF THE SOLDADO out in theaters June 29!… https://t.co/YPqOKHaZgQ +06/05/2018,Sports_celeb,@OscarDeLaHoya,"RT @touchumup: It’s fight week for @DiegoDeLaHoya vs Jose sugar Salgado from @TurningStone @espn @NABFboxing @WorldBoxingOrg +And catch @of…" +06/01/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: 🥊🥊🥊 Tonight’s #LAFightClub is LIVE on @Roku via the #RingTV app. Download it today. 🥊🥊🥊 + +https://t.co/k203xsmL8d" +05/31/2018,Sports_celeb,@OscarDeLaHoya,Honored to have won 4 @tellyawards for @GoldenBoyBoxing #MediaEntertainment productions including #IAmBoxing… https://t.co/eBhAqFOqCq +05/29/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Tune in now #GoldenBoyLIVE #GoldenBoyRadio @JessRosales1 @DuranSports https://t.co/WBsQrdvzwC +05/28/2018,Sports_celeb,@OscarDeLaHoya,"@Canelo is moving on, the only possible way he fights @GGGBoxing in September is on same terms we agreed on after t… https://t.co/FkCKhJuSWc" +05/27/2018,Sports_celeb,@OscarDeLaHoya,RT @touchumup: With @officialvalerio at yesterday’s Newton Cadet Scholarship Fndn. car show. Catch #kidneza in action 6/14 @FantasySprings… +05/26/2018,Sports_celeb,@OscarDeLaHoya,@GGGBoxing good look with Sergiy Derevyanchenko who’s 11-0 and your IBF mandatory the train has moved on and going… https://t.co/c1trgFvzrn +05/25/2018,Sports_celeb,@OscarDeLaHoya,"RT @ringmagazine: BREAKING: Canelo-Golovkin rematch talks hit roadblock, @OscarDeLaHoya seeks new opponent for Alvarez https://t.co/6oXaiv1…" +05/20/2018,Sports_celeb,@OscarDeLaHoya,Why would I be disappointed when I’m the only promoter willing to make good fights win or loose for the fans. https://t.co/rT70kW8svY +05/20/2018,Sports_celeb,@OscarDeLaHoya,"What an amazing fight congratulations @mrgaryrusselljr and @JosephDiazJr + +In one week @GoldenBoyBoxing 4 world tit… https://t.co/IZFyOCfSGd" +05/18/2018,Sports_celeb,@OscarDeLaHoya,"Spence can be like my hero sugar ray Leonard, but he has no promoter to plan out and guide his career. #strategie… https://t.co/LVhvUfAAn5" +05/18/2018,Sports_celeb,@OscarDeLaHoya,RT @JosephDiazJr: 126lbs on the $! Tune in live on @showtimeboxing tomorrow night 10pmET! Who’s #TeamDiazJr?? First World Title shot babbbb… +05/16/2018,Sports_celeb,@OscarDeLaHoya,"RT @JosephDiazJr: Fighting for the WBC Featherweight Title this Sat, May 19th live on @showtimeboxing! @goldenboyboxing #StrapSeason #TheCo…" +05/15/2018,Sports_celeb,@OscarDeLaHoya,Canelo just signed contract to year round VADA testing. +05/13/2018,Sports_celeb,@OscarDeLaHoya,Tune-in to @HBOboxing for more great boxing! #AliMunguia #VargasHovhannisyan https://t.co/yVsyup5wYv +05/13/2018,Sports_celeb,@OscarDeLaHoya,Great fight to both warriors. Congratulations @VasylLomachenko +05/12/2018,Sports_celeb,@OscarDeLaHoya,RT @AlexMar61844168: @OscarDeLaHoya @GGGBoxing @Canelo GGG and his cheerleaders acting like the win on 5/5 was something to brag about... h… +05/12/2018,Sports_celeb,@OscarDeLaHoya,Canelo will return in September https://t.co/Jb0J3Z92XC +05/12/2018,Sports_celeb,@OscarDeLaHoya,Glad your one of 100 idiots https://t.co/3rnQpzASfJ +05/12/2018,Sports_celeb,@OscarDeLaHoya,Hahahaah please https://t.co/rabSktZowA +05/12/2018,Sports_celeb,@OscarDeLaHoya,In the mean time @GGGBoxing making 3million and @Canelo making 40 million without you. #sighnthecontract #scared #CaneloGGG2 #stopcrying +05/12/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: WE HAVE A FIGHT!!🔥 + +👑 vs. 🤖 + +Both fighters weigh-in at 134.6 lbs! It’s going DOWN tomorrow night on @espn #LinaresLoma…" +05/09/2018,Sports_celeb,@OscarDeLaHoya,Hahaahahah https://t.co/rJtlBvp6Lx +05/06/2018,Sports_celeb,@OscarDeLaHoya,@beINSPORTS Messi the Great!!!!! +05/06/2018,Sports_celeb,@OscarDeLaHoya,RT @BoxToffee: 23 years ago today @OscarDeLaHoya defeated Rafael Ruelas via 2nd round TKO to make a successful 4th defence of his WBO Light… +05/06/2018,Sports_celeb,@OscarDeLaHoya,@beINSPORTS Messi the great!!!! +05/05/2018,Sports_celeb,@OscarDeLaHoya,RT @spike_osullivan: It was an honour to fight in front of the Mexican people on @GoldenBoyBoxing card on #CincoDeMayoWeekend and also an h… +05/05/2018,Sports_celeb,@OscarDeLaHoya,MUST WATCH: @Ryankingry analyzes his unanimous decision victory over Velez. https://t.co/eJFlZsWZIc #GBPonESPN… https://t.co/WaFtErm43z +05/05/2018,Sports_celeb,@OscarDeLaHoya,espn2 https://t.co/w3xdgnflZc +05/05/2018,Sports_celeb,@OscarDeLaHoya,"If a 19 year old fighter named @Ryankingry was out selling me at the gate, i would be pissed." +05/05/2018,Sports_celeb,@OscarDeLaHoya,"It’s true, America loves a winner and success story but we will always have those who are miserable and jealous bec… https://t.co/OGMfnwkbR9" +05/05/2018,Sports_celeb,@OscarDeLaHoya,"RT @spike_osullivan: In four & a half hours I step in the ring @stubhub and i'll be putting on a show for all the Irish, Mexican, American…" +05/04/2018,Sports_celeb,@OscarDeLaHoya,Have a crazy safe Cinco de Mayo weekend! @Ryankingry tonight at 7pm on @espn will headline a fantastic card with a… https://t.co/BPN7wT3JNS +05/04/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: IT’S ON!!! 🔥 Things got heated between @Ryankingry and @jayson_velez at today’s #GBPonESPN weigh-in. Comment below who… +05/04/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Oscar de La Hoya starting Golden Boy MMA, eyes Chuck Liddell vs Tito Ortiz 3 https://t.co/qNTVe2HKHm via @mmamania" +05/03/2018,Sports_celeb,@OscarDeLaHoya,"RT @TMZ: Oscar De La Hoya Starting MMA Biz, Targeting Chuck Liddell https://t.co/XS2aRoJNUO" +05/03/2018,Sports_celeb,@OscarDeLaHoya,RT @Canelo: ❤️ https://t.co/0GnjDLSPFA +04/28/2018,Sports_celeb,@OscarDeLaHoya,RT @SupereeeGO: EGO THE CHOLO VS. THE FLASH (@RyanKingRY) WHO WILL WIN? https://t.co/ErII2PQ3U4 +04/26/2018,Sports_celeb,@OscarDeLaHoya,RT @Ryankingry: This video was sent to me and it’s too cute not to post. Love you and I’ll do my best to be a good role model to you and to… +04/26/2018,Sports_celeb,@OscarDeLaHoya,RT @_solisr: It’s sad not seeing anybody talk about this @KTLA @ABC lots of people tend to ignore what happens to Hispanics in general and… +04/22/2018,Sports_celeb,@OscarDeLaHoya,Good fights on @ShowtimeBoxing tonight!! +04/09/2018,Sports_celeb,@OscarDeLaHoya,RT @ShannaMoakler: My beautiful daughter @Atianadelahoya so proud of her @OscarDeLaHoya shot by Oscar picazo https://t.co/YpJfo2xwo8 +04/08/2018,Sports_celeb,@OscarDeLaHoya,"RT @SupereeeGO: EL NIÑO DE ORO +Aka @oscardelahoya +@goldenboyboxing @ East Los https://t.co/CN7hik9lkb" +04/07/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: LA Fight Club - April 6th - Marlen Esparza vs Laetizia Campana https://t.co/2BrhBLtU5M +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @richardgomez79: @OscarDeLaHoya People don’t like the TRUTH! +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @jaebadiah: @OscarDeLaHoya @anthonyfjoshua @BronzeBomber I feel like #thegoldenboy is right about this one. #legend +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @925raidernation: @OscarDeLaHoya this is off topic but thank you for signing my poster I sent out to my Tio. Meant a lot and really made… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MontagueKaris: @MovsumovAslan @OscarDeLaHoya I think as a WORLD champ you should fight over all continents.. The USA is not the be all… +04/05/2018,Sports_celeb,@OscarDeLaHoya,You know it https://t.co/I0XthO9E2X +04/05/2018,Sports_celeb,@OscarDeLaHoya,If I was promoting @BronzeBomber I would take him to the UK and fight him with @anthonyfjoshua then have a rematch… https://t.co/lMTKSjvT7B +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MovsumovAslan: @OscarDeLaHoya u are absolutelly correct about Anthony Joshua!he must conquer USA to be a true superstar!superstars are… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @jaymzdenning: @OscarDeLaHoya You seem to be getting a lot of stick on twitter tonight mate.. Very unfair considering your incredible ca… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MovsumovAslan: @Jonathangeldar1 @OscarDeLaHoya Well if u wanna conquer the world and want to be the most popular fighter in the world u… +04/05/2018,Sports_celeb,@OscarDeLaHoya,Idiot! I made 800 million in my career. https://t.co/0UqZdnL22F +04/05/2018,Sports_celeb,@OscarDeLaHoya,"Don’t even go there you idiot, I fought the very best. https://t.co/yYaXn58EXJ" +04/05/2018,Sports_celeb,@OscarDeLaHoya,If @anthonyfjoshua and @BronzeBomber want to become household names in the US of A and stop doing mediocre raiding… https://t.co/7uBVUK2dbD +04/02/2018,Sports_celeb,@OscarDeLaHoya,"Signed, sealed, and delivered: Proud to officially announce that WBA welterweight world champion +@MatthysseLucas w… https://t.co/50EiRLUute" +04/02/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: ""He was a tough kid and had never been stopped. I knew this was the perfect fight to come back and see where I'm at. I…" +03/23/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Wow 😮 + +@Ryankingry jaw dropping knockout win in the main event! #GBPonESPN @espn https://t.co/cyqkoB7D9R" +03/22/2018,Sports_celeb,@OscarDeLaHoya,Make sure you tune-in to @ESPN tonight for a great night of #boxing! @Ryankingry will not disappoint in the main ev… https://t.co/JPbU58wLUw +03/22/2018,Sports_celeb,@OscarDeLaHoya,RT @ringmagazine: . @Canelo sends @GGGBoxing a message through his his Instagram story. 😳😳😳 https://t.co/nNcIYzXuWp +03/20/2018,Sports_celeb,@OscarDeLaHoya,RT @LUPILLO8: Gracias a DIOS por la oportunidad de poder respaldar a un talento mexicano y futuro campeón JOUSCE GONZALEZ #UNIDOSApoyandoRA… +03/20/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Lineal Ring Magazine Middleweight Champion @Canelo 100% focused in training camp. 🇲🇽👊🏼 #CaneloGGG2 #TeamCanelo https:/… +03/19/2018,Sports_celeb,@OscarDeLaHoya,"LA! Make sure to tune-in to @GDLA tomorrow morning @FOXLA +@lauradiazanchor #MorningShow #GoodDayLA https://t.co/83Ik3Tqsn0" +03/15/2018,Sports_celeb,@OscarDeLaHoya,It’s going down!! #May5 #CaneloGGG2 #CincoDeMayo @hboboxing #PPV #NoJudges https://t.co/nuy4BgroF0 +03/12/2018,Sports_celeb,@OscarDeLaHoya,As excited as anyone that big fight between @JorgeLinares and @vasyllomachenko is getting close. But it's not done… https://t.co/R170h67MmR +03/10/2018,Sports_celeb,@OscarDeLaHoya,@mannypacquiao vs @MatthysseLucas would be a fight of the year candidate. +03/08/2018,Sports_celeb,@OscarDeLaHoya,"RT @MarioLopezExtra: Fun shoot with the homie @OscarDelaHoya today... +@CMTequila + +#CigarAndSpiritsMag #CasaMexico #Tequila https://t.co/w…" +03/08/2018,Sports_celeb,@OscarDeLaHoya,RT @ABC7: VIDEO: Meet the 19-year-old @OscarDeLaHoya says has the potential to be the next “mega-star” in the world of boxing https://t.co/… +03/05/2018,Sports_celeb,@OscarDeLaHoya,"@BronzeBomber congratulations on such a great accomplishment when everyone doubted you, hit me up when you wanna ma… https://t.co/8xkIU9LHRu" +03/01/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@Canelo and @gggboxing trainer @abelthesummit get into a heated exchange in last nights #CaneloGGG2 Fan Event. Watch… +02/27/2018,Sports_celeb,@OscarDeLaHoya,RT @FoxBusiness: Former world champion boxer @OscarDeLaHoya discusses the future of boxing and why he believes that the sport will make a c… +02/18/2018,Sports_celeb,@OscarDeLaHoya,RT @lauradiazanchor: @OscarDeLaHoya earned huge success in sports & business.But what achievement does this Olympic gold medal winner value… +02/15/2018,Sports_celeb,@OscarDeLaHoya,"6., So, @VasylLomachenko has three options. 1) Fight on May 12th on HBO 2) Fight on any other day on the calendar,… https://t.co/NFBcCUAsKo" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"5., HBO is willing to pay more for the fight than is currently being offered. And they would do it on May 12th." +02/15/2018,Sports_celeb,@OscarDeLaHoya,"4., While @JorgeLinares is happy to fight on any other date of the calendar, if @VasylLomachenko absolutely, positi… https://t.co/z1rSKdTcoL" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"3., We know of no bylaw, Ukranian holiday or ""magic day"" in the words of Bob Arum that mandates that… https://t.co/0pPvuP567g" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"2., @JorgeLinares wants this fight. @GoldenBoyBoxing wants this fight. Mr. Honda wants this fight. And collectively… https://t.co/REjUuASZop" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"1., Over the last days, there has been a lot of rumor and speculation about the potential fight between… https://t.co/zxzFzm0Bzf" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"RT @danrafaelespn: Since @Ryankingry's next fight was announced today, here's a look back at the 2017 prospect of the year story I did on h…" +02/04/2018,Sports_celeb,@OscarDeLaHoya,@BobArum @mannypacquiao vs @MatthysseLucas would be a barn burner. #fansfirst #war +02/02/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: This time, they won't leave it up to the judges... + +#CaneloGGG2 IS OFFICIAL!! #May5 https://t.co/WECEiw314u" +02/01/2018,Sports_celeb,@OscarDeLaHoya,@danrafaelespn @JorgeLinares @VasylLomachenko @trboxing @BobArum @GoldenBoyBoxing @KlimasBoxing @CarlMoretti No tal… https://t.co/kPdH6TFvtX +01/30/2018,Sports_celeb,@OscarDeLaHoya,"Check me out on @MikeTyson’s new podcast, @BiteTheMicShow. + +Click the link to listen: https://t.co/B7gk7S3iaV… https://t.co/32XKJDQywT" +01/29/2018,Sports_celeb,@OscarDeLaHoya,Boxing’s biggest event of 2018 is official! #CaneloGGG2 I expect we will see even more fireworks. #May5 https://t.co/r7KA6APlDl +01/28/2018,Sports_celeb,@OscarDeLaHoya,Kicking off @goldenboyboxing in 2018 with a bang!! Congratulations to the new WBA welterweight champion ‘La Máquina… https://t.co/GXV0Z6Ebsw +01/28/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Congratulations to the NEW WBA welterweight champion “La Máquina” 🇦🇷 Lucas Matthysse! #MatthysseKiram https://t.co/0vD… +01/26/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@OscarDeLaHoya is back on #GoldenBoyRadio tomorrow morning with Tattoo and The Crew! Only on @dash_radio #TuneIn http… +01/26/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: After a Breakout 2017, Golden Boy Heads Back Into the Ring for HBO Fight This Weekend https://t.co/Zu9Pb5Od9c" +01/14/2018,Sports_celeb,@OscarDeLaHoya,RT @LAKings: .@OscarDeLaHoya congratulates Bob Miller on his statue outside of STAPLES Center! 👏 https://t.co/6jc9uHGX9T +01/12/2018,Sports_celeb,@OscarDeLaHoya,@Canelo vs @GGGBoxing is not done and not close to being done considering reports. I promise all the fans it will g… https://t.co/e38QySTBnd +01/10/2018,Sports_celeb,@OscarDeLaHoya,RT @jay_quigley: @KevByrneBox @GoldenBoyBoxing @everlast @McElhinneys @VillaRoseHotel @JacksonsHotel1 @Irishboxingcom @chrismcnulty86 @Done… +01/10/2018,Sports_celeb,@OscarDeLaHoya,RT @jay_quigley: I’m still with the best in the business and staying with the best @GoldenBoyBoxing @makeawar @Micheladatime going to bring… +01/06/2018,Sports_celeb,@OscarDeLaHoya,RT @officialvalerio: Good morning USA! It’s the first weekend of the year!!! Share the joy of success and love! @touchumup @GoldenBoyBoxing… +12/29/2017,Sports_celeb,@OscarDeLaHoya,Want to send my congrats to @Ryankingry on being named the 2017 @ESPN prospect of the year and to @GoldenBoyBoxing… https://t.co/JxX6zlAItI +12/28/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: After Most Successful Year In Golden Boy Promotions History, @OscarDeLaHoya Aims For More In 2018 - @Forbes @peterkahn…" +12/26/2017,Sports_celeb,@OscarDeLaHoya,Let me take this opportunity to thank all the fans who support boxing and @GoldenBoyBoxing . 2018 will once again b… https://t.co/0cwUsEJ5uB +12/16/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Billy Joe Saunders vs David Lemieux - Undercards https://t.co/ehZbB9egrn +12/14/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #Bestof2017 🏆 + +Who is your pick for #GoldenBoy's Prospect of the Year? + +Here are the nominees: +@VergilOrtiz +@AlexisR…" +12/10/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Salido vs Roman - Undercards - Aaron Mckenna https://t.co/pHDi37nH4R +12/09/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/zpM5VAm20t +12/09/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: How many of you #boxing fans box? We're challenging you to a #10DaysOfBoxing Holiday Giveaway Challenge! Win #GoldenBo… +12/09/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Look at all these prizes we have for our 10 winners! 😍Join the #10DaysOfBoxing #GoldenBoy @titleboxing challenge and… +12/08/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW on #GoldenBoy Radio @dash_radio! Special Holiday in studio performance by @therealfrankieJ w/ @Tattootheone a… +12/07/2017,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: Orlando Salido promises action -- what else would you expect? -- in his fight vs. Miguel Roman on Saturday on @HBOboxing… +12/07/2017,Sports_celeb,@OscarDeLaHoya,Este sábado en @HBO Salido vs Roman será una guerra. @elbandido130 en acción desde el Mandalay Bay. @GoldenBoyBoxing @ZanferBox #HBO #War +12/07/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/4GLvgtzh34 via @youtube keep talking crap. +12/07/2017,Sports_celeb,@OscarDeLaHoya,Hey @FloydMayweather you wanna continue talking sh*t. Ok there you go. https://t.co/PImjvxUTWf +12/05/2017,Sports_celeb,@OscarDeLaHoya,RT @realworldkidali: Thank you to all the love and support i have been receiving. Last night i accomplished one of the biggest goals in my… +12/05/2017,Sports_celeb,@OscarDeLaHoya,RT @Ryankingry: Jab jab jab Canada immmmm coming in less then two weeks sooo excited https://t.co/rgN6lnj9dI +12/03/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: All smiles for #TheLastOne! + +Two legends 🙌🏼 @OscarDeLaHoya greets @RealMiguelCotto in his locker as he prepares for h…" +12/02/2017,Sports_celeb,@OscarDeLaHoya,"My boy @Tattootheone live on #goldenboyradio @dashradio exclusively w/ @realmiguelacotto @thegarden. + +Tonight, fin… https://t.co/oYnMajabLY" +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@TheGarden is ready for #CottoAli FIGHT NIGHT! Are you ready? #TheLastOne for @RealMiguelCotto tonight on @hboboxing… +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @totalfratmove: #CottoAli goes down tonight at 10pm ET on @HBOboxing. Retweet for a chance to win this glove signed by @RealMiguelCotto.… +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @dodo: This puppy couldn't stop crying out in pain when anyone came near him because he'd never felt a gentle touch. But then he met thi… +12/02/2017,Sports_celeb,@OscarDeLaHoya,Future Hall of Famer and a true Legend of Puerto Rico @RealMiguelCotto looks to go out as a champion and defend his… https://t.co/9XXmtM3R5R +12/01/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@Canelo sends his best wishes to the legendary @RealMiguelCotto ahead of his final fight Saturday night @TheGarden! #… +12/01/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Score tonight's #GBPonESPN main event on the @fightersnetwork app! Download now at https://t.co/90EfxuX0MX https://t.c… +11/26/2017,Sports_celeb,@OscarDeLaHoya,Good fight on hbo now. +11/25/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: (Cont.) Our thoughts and prayers are with Cesar's girlfriend who remains in critical condition and his entire family. +11/25/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Everyone at Golden Boy Promotions is heartbroken over the passing of Cesar Diaz over Thanksgiving weekend. As talented… +11/24/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #HappyThanksgiving! We're thankful for a successful year and your continued support! Most of all, for being able to gi…" +11/23/2017,Sports_celeb,@OscarDeLaHoya,Hahaha happy turkey day https://t.co/VxBUfcN4TJ +11/21/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Tonight! We'll be watching. Good Luck to the @HoustonDynamo in leg 1 of the Western Conference Championship! ⚽️ #Forev… +11/20/2017,Sports_celeb,@OscarDeLaHoya,RT @GreenDotSchools: Oscar De La Hoya Foundation Annual Turkey Giveaway supports the East Los Angeles community for the 21st year in a row!… +11/20/2017,Sports_celeb,@OscarDeLaHoya,Gracias @eastlaparade! Viva #EastLA! #ela #Christmasparade https://t.co/bm4cjWfY1X +11/19/2017,Sports_celeb,@OscarDeLaHoya,Here we go!!! Can't wait to see you all @eastlaparade #Hometown #EastLA @EASTLA_NEWS @goEastLos #ela https://t.co/I63eDJM04D +11/19/2017,Sports_celeb,@OscarDeLaHoya,"With the man, the myth, the legend @ArtLaboe #Orale #EastLA @eastlaparade #ela @EASTLA_NEWS https://t.co/gz2rk0sLtu" +11/19/2017,Sports_celeb,@OscarDeLaHoya,Kicking off the @eastlaparade with the ceremonial ribbon cutting. Here we go! #EastLA #ChristmasParade https://t.co/GLdkRPUYOQ +11/19/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW! 🎙Special guest @icecube joins @Tattootheone and The Crew on Golden Boy Radio! 🔥Download the @dash_radio app… +11/19/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: Tomorrow!! #elachristmasparade #eastla https://t.co/S59UQANv7q +11/18/2017,Sports_celeb,@OscarDeLaHoya,Don't forget to come out tomorrow for the annual @eastlaparade! 🎄🎅🏽 @EASTLA_NEWS @goEastLos #ela #eastlos… https://t.co/oe6aKSweYe +11/18/2017,Sports_celeb,@OscarDeLaHoya,Honored and privileged to #giveback to my community for 21 years! The #ODLHFoundation Annual Turkey giveaway in Eas… https://t.co/rP8zCkoRxW +11/17/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: MONDAY 🎙We got special guest @icecube on #GoldenBoy Radio w/ @Tattootheone and The Crew! 🔥Download the @dash_radio app… +11/17/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: We are ready to fill the streets with holiday spirit this Sunday! Are you ready? #eastla #elachristmasparade https://t.co… +11/17/2017,Sports_celeb,@OscarDeLaHoya,Honored to be apart of my hometowns annual @eastlaparade this Sunday! #ELA Hope to see you there! @EASTLA_NEWS… https://t.co/5QLIP4Ae6E +11/16/2017,Sports_celeb,@OscarDeLaHoya,Excited to welcome @Aaronmckenna99 and @maricelaladiva to the @GoldenBoyBoxing family. Congratulations! Now let's m… https://t.co/8gCYoqa8yv +11/15/2017,Sports_celeb,@OscarDeLaHoya,RT @maricelaladiva: Finally able 2 share this just signed w/ @GoldenBoyBoxing! I remember telling @OscarDeLaHoya U will sign me one day 6 y… +11/15/2017,Sports_celeb,@OscarDeLaHoya,Forever representing ELA #itsinmyname #raza https://t.co/Inqu6UhCHK +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Golden Boy on @dash_radio Tattoo & The Crew: 🎙@OscarDeLaHoya has been secretly training and says he only needs two rou… +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: The boss has arrived! 🙌🏼 @OscarDeLaHoya is live on Golden Boy Radio w/ Tattoo and The Crew @dash_radio https://t.co/3I… +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW #GoldenBoy radio premieres on @dash_radio w/ Tattoo & The Crew w/ special guest @OscarDeLaHoya 🏅Make sure to… +11/13/2017,Sports_celeb,@OscarDeLaHoya,🎙I'll be on live for the premiere of #GoldenBoy Radio on @dash_radio tomorrow w/ Tattoo & The Crew! 7am-10am PT. M… https://t.co/8pcG06mPdu +11/12/2017,Sports_celeb,@OscarDeLaHoya,"@katedelcastillo Only judgement is, it should be a #tecate :) buen domingo amiga" +11/12/2017,Sports_celeb,@OscarDeLaHoya,"Excited to be a part of this annual tradition in my home town. #ELAChristmasParade next Sunday, Nov 19. 12pm… https://t.co/djsW3SxFkD" +11/11/2017,Sports_celeb,@OscarDeLaHoya,"It is my absolute pleasure to give back and present boxing gear to the kids @gg_boxing in Garden Grove, CA… https://t.co/wKaFXnbWbA" +11/10/2017,Sports_celeb,@OscarDeLaHoya,"I️ promoted @BronzeBomber first 33 fights and made him a champion, if I️ was his promoter he would be a star and… https://t.co/1IhR5OGCk5" +11/04/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/RcnAdQQF6q my brother/ mi hermano working for what’s right for California. +11/03/2017,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: Promoter @OscarDeLaHoya details efforts to make @mikeygarcia vs. @JorgeLinares. My story: https://t.co/LjDBfcrkGP #boxin… +11/03/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: You do not want to miss #GBP's rising star @Ryankingry in tonight's co-main event. #GBPonESPN LIVE now! #KingRy https:… +11/03/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #BEAST 👊🏼 @Ryankingry strikes again with another stoppage on #GBPonESPN. Now 12-0, 11 KOs 🔥 https://t.co/nVTT7z0Zg0" +11/02/2017,Sports_celeb,@OscarDeLaHoya,Score tonight's #GBPonESPN fights on @fightersnetwork app and automatically be entered to win a signed #CaneloGGG 🥊… https://t.co/iceWh0vxSO +10/31/2017,Sports_celeb,@OscarDeLaHoya,"RT @WBABoxing: #Medellin se convirtió en la capital del boxeo mundial, con la ceremonia de inauguración de la #WBA96Convention https://t.co…" +10/30/2017,Sports_celeb,@OscarDeLaHoya,RT @ringmagazine: Watch #RXF28 Live on #RingTV @FiteTV tomorrow morning #livefights https://t.co/iTyc9qLssA +10/30/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: We are thrilled to announce OSCAR DE LA HOYA as this year’s 2017 East LA Christmas Parade Grand Marshal! @OscarDeLaHoya #… +10/27/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@OscarDeLaHoya at #FuerzaMéxico @CongaRoomLA to benefit #MexicoRises earthquake relief. #GoldenBoy will match funds r… +10/27/2017,Sports_celeb,@OscarDeLaHoya,RT @EugenioDerbez: Tonight #FuerzaMéxico @jesseyjoy @jesseavenue @solamentejoy @jaimecamil @OscarDeLaHoya. Para donar / to donate: https://… +10/26/2017,Sports_celeb,@OscarDeLaHoya,We'll get the next one @dodgers #gododgers #thisteam #blue #ela https://t.co/kFUsJ25sL2 +10/21/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: TONIGHT. @CorralesJezreel vs @xplosivomachado WBA Super Featherweight Title. Plus, #AndradeFox #BurnettZhakiyanov LIVE…" +10/21/2017,Sports_celeb,@OscarDeLaHoya,"Join us at the @CongaRoom Thursday, 10/26 for #FuerzaMexico to benefit #MexicoRises Earthquake Fund. Tickets here:… https://t.co/tN1OiRAesv" +10/20/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Dear, Las Vegas.. + +- @OscarDeLaHoya + +#VegasStrong +#GBPonESPN https://t.co/bQ29i9OM4Z" +10/17/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Miguel Cotto vs Sadam Ali - Press Conference https://t.co/PE0lRIaD9Z +10/06/2017,Sports_celeb,@OscarDeLaHoya,"#unitedfordreamers +We will fight together! https://t.co/u04F3T9o75" +10/05/2017,Sports_celeb,@OscarDeLaHoya,@jennajenovich @OOPalmilla @OOResorts A.B. And D. In that order topped off with a nice dinner +10/04/2017,Sports_celeb,@OscarDeLaHoya,RT @MrsEsterMarie: 🌴🌺ALOHA 🐟🐠 https://t.co/iEfaBdUGXH +09/27/2017,Sports_celeb,@OscarDeLaHoya,"RT @katedelcastillo: #prayformexico🇲🇽 #mexicounido #mexicounited #fuerzamexico🇲🇽 +・・・ +Moneros animados: Que la… https://t.co/OXEGLLLV5K" +09/25/2017,Sports_celeb,@OscarDeLaHoya,RT @MarcAnthony: Mr. President shut the fuck up about NFL. Do something about our people in need in #PuertoRico. We are American citizens t… +09/23/2017,Sports_celeb,@OscarDeLaHoya,Let’s all join this effort & help families in need of our support! #UnidosPorLosNuestros #TuneIn today @Univision 7… https://t.co/Z9x5IrK21S +09/23/2017,Sports_celeb,@OscarDeLaHoya,Ayudemos a las víctimas de los desastres naturales recientes. #UnidosPorLosNuestros Hoy 7pmET @Univision… https://t.co/TITkTeAtQl +09/23/2017,Sports_celeb,@OscarDeLaHoya,RT @carlosbeltran15: Puerto Rico Hurricane Relief Fund | Created by Carlos & Jessica Beltran https://t.co/H5jA8J7lhF +09/23/2017,Sports_celeb,@OscarDeLaHoya,RT @ricky_martin: WE NEED YOUR HELP. PLEASE DONATE. https://t.co/1vjiISj3af https://t.co/GXSZP7Gya7 +09/19/2017,Sports_celeb,@OscarDeLaHoya,"Let's help Mexico! Instead of building a wall, Trump should send more aid to help Mexico rebuild after today's earthquake #PrayForMéxico" +09/17/2017,Sports_celeb,@OscarDeLaHoya,A skillful execution of an explosive fight. I disagree with the decision. +09/16/2017,Sports_celeb,@OscarDeLaHoya,"RT @Adrian_ElTitan: Hoy es el día, con todo @Canelo #TeamCanelo 🇲🇽 #CaneloGGG https://t.co/b3YJKtxE7g" +07/02/2018,Sports_celeb,@Giannis_An34,I am honored to be the first international player featured on the cover of @NBA2K. Pre-orders are now available… https://t.co/S2YfX0hsoV +07/02/2018,Sports_celeb,@Giannis_An34,I am honored to be the first international player featured on the cover of @NBA2K. Pre-orders are now available… https://t.co/wVNWHlrmo2 +07/02/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “WE RISE BY LIFTING OTHERS” 🌻💛 +07/02/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: 👀 https://t.co/rMoqaDQQ19 +07/02/2018,Sports_celeb,@Giannis_An34,That’s all I needed for this summer thank you skip! #Motivation https://t.co/IVWcFRzd4f +07/02/2018,Sports_celeb,@Giannis_An34,"RT @FIBAWC: Mo' @Thanasis_ante43 Mo' Action ! @HellenicBF +#ThisIsMyHouse #FIBAWC https://t.co/3zxUbQa6pb" +07/01/2018,Sports_celeb,@Giannis_An34,RT @nik683: Always nice to see you @Giannis_An34 https://t.co/7qBRNldKrL +06/30/2018,Sports_celeb,@Giannis_An34,Had a great time today shooting in Halkidiki...!! Big thing coming! #FETA https://t.co/SJJHU9DynC +06/29/2018,Sports_celeb,@Giannis_An34,This is my country Greece 🇬🇷 https://t.co/7S0P203rzB +06/29/2018,Sports_celeb,@Giannis_An34,The new album of @Drake 🔥🔥🔥🔥 +06/28/2018,Sports_celeb,@Giannis_An34,You’re living lavish now kostas__ante13 🐎 https://t.co/zay3fU7TnW +06/28/2018,Sports_celeb,@Giannis_An34,Elevator 📸😤 https://t.co/oGxH5yHiRJ +06/28/2018,Sports_celeb,@Giannis_An34,"RT @dallasmavs: You're livin lavish now, @Kostas_ante13! 🔥 Welcome to Dallas! #MFFL https://t.co/D4FLyM3ToT" +06/28/2018,Sports_celeb,@Giannis_An34,RT @FUSD_Athletics: Mark your calendar for August 3. Time to Tee it up at the Goal 2 Golf Tournament for the Fresno Unified Scholarship Fu… +06/28/2018,Sports_celeb,@Giannis_An34,"😂😂😂 If I didn’t like you, I would roast you so bad @vanexel31 #GoPackers https://t.co/veIR6GLx48" +06/27/2018,Sports_celeb,@Giannis_An34,What are the top 2 things you would like to see in my signature shoe? #TheGreekFreak1 #StayFreaky #ShoeOfThePeople +06/23/2018,Sports_celeb,@Giannis_An34,Just wanted to clear things up because I enjoy sharing funny moments with my fans...Mo Bamba is a great player and… https://t.co/erZCRQlhXt +06/23/2018,Sports_celeb,@Giannis_An34,Let me brush my hair😂😂 https://t.co/Em1mx9PaKe +06/23/2018,Sports_celeb,@Giannis_An34,"RT @wojespn: Milwaukee Bucks assistant Sean Sweeney has agreed to a deal to become one of Detroit coach Dwane Casey’s new top assistants, l…" +06/23/2018,Sports_celeb,@Giannis_An34,"RT @SInow: Welcome to the 60 Club, @Kostas_ante13 https://t.co/gt1sXordJ9" +06/22/2018,Sports_celeb,@Giannis_An34,"RT @DXContent: 6-10 + 20 year old Kostas Atetokounmpo, the younger brother of @Giannis_An34, was picked up by the @dallasmavs + +Full Pro Da…" +06/22/2018,Sports_celeb,@Giannis_An34,"RT @BleacherReport: Kostas Antetokounmpo, Giannis’ little brother, goes No. 60 to the Mavericks (via Sixers) https://t.co/IzzSF9MrFJ" +06/18/2018,Sports_celeb,@Giannis_An34,On July 7th join me and my brothers @Thanasis_ante43 @Kostas_ante13 @Alex_ante29 for Antetokounbros 5K Run to suppo… https://t.co/P6M4hkq1rr +06/17/2018,Sports_celeb,@Giannis_An34,"RT @DXContent: We caught up with Kostas Antetokounmpo, little brother of #Milwaukee #Bucks star @Giannis_An34, for his pro day workout and…" +06/12/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You belong where you believe you belong.” 💛🌻 +06/11/2018,Sports_celeb,@Giannis_An34,Δεν πίστευα ποτέ ότι θα κυκλοφορώ στους δρόμους της Αθήνας και θα με φωνάζουν Θανάση!! 😂😂 +06/10/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You have to fight through the bad days in order to earn the best days.” 💛🌻 +06/10/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Legends never die,they live through their #Legacy" +06/09/2018,Sports_celeb,@Giannis_An34,This is my time! Thank you GOD for keep blessing me and my family.🙏🏾 +06/08/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: Lol just because big bro said the was fire 🔥🔥😋 @Giannis_An34 https://t.co/qVy3XxbvXo +06/08/2018,Sports_celeb,@Giannis_An34,Going to bed tonight thinking about what I’m going to try next! Tomorrow I’m on a mission to become a better player… https://t.co/UdWZrkUPRX +06/08/2018,Sports_celeb,@Giannis_An34,@pistonsfan215 @iamHectorDiaz Where can I get them? +06/07/2018,Sports_celeb,@Giannis_An34,"While having my first pedicure in two years, I tried my first bag of Funyuns. They where good but I’ll stick to Ame… https://t.co/QCdGsfEEen" +06/07/2018,Sports_celeb,@Giannis_An34,Follow my lil brother @alex_ante29 on Twitter! +06/07/2018,Sports_celeb,@Giannis_An34,"People keep telling me to try these, I’ll give them a try and let you guys know what I think👌🏾… https://t.co/8XggtXLM5x" +06/07/2018,Sports_celeb,@Giannis_An34,Just had my first sip of American Red Kool Aid while watching the game. It’s extremely tasty 🥤. America stay blesse… https://t.co/isAVWi0Pvp +06/06/2018,Sports_celeb,@Giannis_An34,"Just a kid from Sepolia,Athens Greece 🇬🇷 🇳🇬 🙏🏾 https://t.co/nf1LvnKhOr" +06/06/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: Lol @ZO2_ hook me up with BBB gear bro 😂 +06/05/2018,Sports_celeb,@Giannis_An34,Next step Kool Aid! I’ll tell y’all what I think when I try it lol 😂 +06/05/2018,Sports_celeb,@Giannis_An34,Just tried a corndog for the first time...Man God Bless America! 😂😂 #ForReaL https://t.co/k4RDp6nSnI +06/05/2018,Sports_celeb,@Giannis_An34,Ain’t nothing wrong with Forever 21 @ZO2_ 🤷🏾‍♂️ https://t.co/1PIJpIakm1 +06/03/2018,Sports_celeb,@Giannis_An34,RT @TCL_USA: TCL proudly congratulates our newest athlete partner @Giannis_An34 on his All-NBA Team selection for the second straight year.… +05/31/2018,Sports_celeb,@Giannis_An34,RT @DraftExpress: Kostas Antetokoumpo working out in front of his brother Giannis and the entire NBA at the Octagon Pro Day. Actually shot… +05/25/2018,Sports_celeb,@Giannis_An34,Nope☝🏾 https://t.co/7Ac45UWXe8 +05/25/2018,Sports_celeb,@Giannis_An34,Always supporting you brother! https://t.co/Xc8MZyjMvA +05/23/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: ""It's been my dream since I was little."" + +Closer look at NBA Draft Prospect - Kostas Antetokounmpo: https://t.co/xTyKWXEBUY" +05/23/2018,Sports_celeb,@Giannis_An34,RT @RangerBeech: @Giannis_An34 @Bucks @DICKS you made a little boys day. Little did you know that before he saw you there he was showing m… +05/23/2018,Sports_celeb,@Giannis_An34,RT @fox6blitz: #Bucks @Giannis_An34 surprises some kids with a shopping spree at Dick’s Sporting Goods. https://t.co/xWpHMSqb7p +05/22/2018,Sports_celeb,@Giannis_An34,Great day giving back to the kids from @bgcmilwaukee. Huge thanks to the City of Milwaukee for all the support you’… https://t.co/kTDFOGx80F +05/19/2018,Sports_celeb,@Giannis_An34,RT @brkicks: .@Kostas_ante13 brother of @Giannis_An34 at the NBA Combine wearing the Nike Kobe A.D. https://t.co/ANtTdpFw16 +05/17/2018,Sports_celeb,@Giannis_An34,"RT @DraftExpress: Kostas Antetokounmpo has work to do on his body, skill/feel, but he's shown impressive flashes defensively switching, sli…" +05/12/2018,Sports_celeb,@Giannis_An34,Who is your top 5 rappers of all time? @Wale https://t.co/Coyjr4MTJF +05/12/2018,Sports_celeb,@Giannis_An34,J cole all day @JColeNC https://t.co/agtJqGxSGw +05/12/2018,Sports_celeb,@Giannis_An34,"Late night thoughts, who is the best rapper of our generation?" +05/12/2018,Sports_celeb,@Giannis_An34,"RT @FVisionDotCom: 🎥| Kostas Antetokounmpo Dayton Freshmen Full Season Highlights Montage 2017-18 | 5.2 PPG, NBA READY! @Kostas_ante13 http…" +05/12/2018,Sports_celeb,@Giannis_An34,Sneak peek 👀 #GreekFreak’S1 https://t.co/f68bTh6CW9 +05/12/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Couldn’t be more proud of you baby girl! You’re truly one of a kind! Love you til infinity 💛🌻 https://t.co/q1hdFoVeDO +05/11/2018,Sports_celeb,@Giannis_An34,Who is excited for the Greek Freak’s 1👟? +05/11/2018,Sports_celeb,@Giannis_An34,@KingKMPH @_mayyyyaaaa @grizzlyathletes Maya for president +05/11/2018,Sports_celeb,@Giannis_An34,"Time out, who said the season being over means no more Bucks spirit? Show Team pride this offseason with the BMO Ha… https://t.co/OXbk5skJE4" +05/06/2018,Sports_celeb,@Giannis_An34,I’m switching to Samsung ✌🏾 +05/06/2018,Sports_celeb,@Giannis_An34,Apple has completely disappointed me @Apple +05/02/2018,Sports_celeb,@Giannis_An34,RT @Bucks: THIS Is Why We Play!! https://t.co/Xgjzq7F6Pf +05/02/2018,Sports_celeb,@Giannis_An34,I vote #JabariParker for the #NBACommunityAssist Award because it's cool to be a nerd!! +04/04/2018,Sports_celeb,@Giannis_An34,RT @Bucks: Congratulations to former head coach @RealJasonKidd on his selection to the @Hoophall!! https://t.co/teY0vFgxg5 +04/04/2018,Sports_celeb,@Giannis_An34,"RT @Khris22m: Hey Bucks fans, come meet me this Sunday 2 PM at Cermak Fresh Market at 1236 S. Barclary Street. I will be signing autographs…" +03/31/2018,Sports_celeb,@Giannis_An34,RT @kobebryant: From the Book of Antetokounmpo: The greatest gift is understanding HOW to use the gifts we’ve been given. #MuseCage #Giann… +03/31/2018,Sports_celeb,@Giannis_An34,"RT @espn: His frame changed. His game changed. And his fame changed. + +@kobebryant highlights @Giannis_An34's gifts, and how he's evolved in…" +03/27/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Hey Milwaukee! If you’re interested in meeting @Giannis_An34 but more importantly supporting an amazing cause, the Leuke…" +03/26/2018,Sports_celeb,@Giannis_An34,"RT @MyNBAUpdate: R.I.P, Zeke Upshaw. 🙏 + +G-League player who passed away after collapsing on the court during a game on Saturday. We send ou…" +03/26/2018,Sports_celeb,@Giannis_An34,"RT @CBSNewsPress: @60Minutes is on track to be @Nielsen #1 program, drawing est 22.06 m - most viewers in nearly 10 yrs. Watch @andersoncoo…" +03/26/2018,Sports_celeb,@Giannis_An34,RT @Bucks: Here’s the entire MUST WATCH feature from @60minutes on @Giannis_an34 https://t.co/0E0IhqpJbo +03/23/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: I have made the decision to start a new chapter in my life and basketball career. I want to thank The University of Dayt… +03/22/2018,Sports_celeb,@Giannis_An34,RT @60Minutes: Milwaukee Bucks superstar Giannis Antetokounmpo tells 60 Minutes about selling trinkets on Athens streets to help his family… +03/22/2018,Sports_celeb,@Giannis_An34,"RT @DraftExpress: Dayton freshman Kostas Antetokounmpo (Giannis' brother) will declare for the 2018 NBA Draft, according to a source close…" +03/22/2018,Sports_celeb,@Giannis_An34,"RT @EvanDaniels: Source: Kostas Antetokounmpo, the brother of Giannis, is declaring for the NBA Draft | Story: https://t.co/Fu5vbLOEqq http…" +03/18/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You should never have to apologize for the way you need to be loved.” 🌻 +03/18/2018,Sports_celeb,@Giannis_An34,Not my day today 🤷🏾‍♂️ @mariahdanae15 https://t.co/8SIDURqFbn +03/18/2018,Sports_celeb,@Giannis_An34,@OsheaJacksonJr @netflix @mariahdanae15 Tough life my brother lol By the way Straight Outta Compton is one of my al… https://t.co/BHOYDsOTpf +03/18/2018,Sports_celeb,@Giannis_An34,When @netflix is on the bell 🛎 don’t work. +03/18/2018,Sports_celeb,@Giannis_An34,When you girl loves @netflix more than you🤦🏾‍♂️🤦🏾‍♂️ @mariahdanae15 https://t.co/AzfGtfckWC +03/16/2018,Sports_celeb,@Giannis_An34,The #FreakyFriday video of @chrisbrown and @lildickytweets it’s hilarious 😂😂😂 +03/16/2018,Sports_celeb,@Giannis_An34,"RT @Nike: When our world gets stuck, there’s only one option - #ChooseGo. + +https://t.co/lpWAcMefEl https://t.co/0rAm25J37q" +03/16/2018,Sports_celeb,@Giannis_An34,"RT @Nike: In every step. With every breath. #airmovesyou + +Sound on. 🔈 https://t.co/O79rImWETh" +03/15/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Happy 23rd Birthday @JabariParker!! + +🎉🎊🎁🎂 https://t.co/Ab4UHBrMoC" +03/10/2018,Sports_celeb,@Giannis_An34,"RT @AirMagKnows: To celebrate Jaylen’s 8th Birthday, He got tickets to watch @Giannis_An34 @Bucks on March 27 vs @LAClippers. Safe to say,…" +03/09/2018,Sports_celeb,@Giannis_An34,"RT @WISN_Watson: I think this family has the whole basketball thing figured out. + +This is @AlexAnteto3, @Giannis_An34's baby brother. http…" +03/07/2018,Sports_celeb,@Giannis_An34,Hey guys I’m teaming up with @_mayyyyaaaa to auction off two tickets plus a meet and greet after the game to help r… https://t.co/URdcY4KctT +03/06/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: #mondaymotivation + +Drop dimes. +Rock rims. + +💯🔥👇👀 https://t.co/ubX39Pnyd9" +03/06/2018,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Regional Champions💪🏾🙏🏾🤫 https://t.co/9N4kjEUyaa +03/04/2018,Sports_celeb,@Giannis_An34,RT @olskool888: Greek Freak Freshman L’il Bro’ Kostas of Dayton looking eerily familiar to @Giannis_An34...YIKES! https://t.co/qYcTR8iu3J +03/04/2018,Sports_celeb,@Giannis_An34,RT @SeanKilpatrick: Milwaukee Thanks For The Hospitality! The Marathon Continues 🏁🏁🏁 #Undrafted #LetsGo https://t.co/Ry8zguopfx +03/04/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: The highlights! + +💯👊🔵🔴 #FlyerNation https://t.co/iQ1iRWUKwg" +03/04/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: 🆙🆙 & AWAY! 🎦 + +The dime from @Jalen_NoRose1 to @Kostas_ante13. + +🔴🔵🛩️🏀 + +L👀K out belowwwww! https://t.co/yC8n1d9Ku1" +03/02/2018,Sports_celeb,@Giannis_An34,My little sister is currently nominated as a candidate for the Leukemia and Lymphoma Student of the Year Series. Pl… https://t.co/dYCFrfY4dX +02/25/2018,Sports_celeb,@Giannis_An34,@Hoopmixtape @DdotJAY30 He could definitely win the NBA dunk contest with he’s eyes closed. +02/19/2018,Sports_celeb,@Giannis_An34,RT @RealBillRussell: My thoughts exactly Thank You @Giannis_An34 This is very dear to my heart. @ nba https://t.co/CAJbifDZXu +02/18/2018,Sports_celeb,@Giannis_An34,"RT @bellalukasdad: So proud of my girl and so thankful to all those who supported her cookie sales efforts. In her last year of selling, sh…" +02/18/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: No weakness!!! @Giannis_An34 https://t.co/gNsbXl756T +02/17/2018,Sports_celeb,@Giannis_An34,RT @famouslos32: Still cant say dat boy name right so I’m STILL calling him Giannis A-TIN-KA-PINK-KO 😂😂😂😂😂😂😂😂 @Giannis_An34 https://t.co/dv… +02/17/2018,Sports_celeb,@Giannis_An34,RT @Bucks: All smiles as @Giannis_An34 crushes the #NBAKicks game with the @kobebryant 1 Porto x @UNDEFEATEDinc tonight!! 🔥🔥🔥 https://t.co/… +02/17/2018,Sports_celeb,@Giannis_An34,RT @_mayyyyaaaa: I'm extremely honored and blessed to be a candidate for the Leukemia and Lymphoma Student of the Year Series. The seven we… +02/15/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: @LegionHoops Yeah let them know baby @Giannis_An34 😂😂😂😂 +02/14/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Dimitris’ dream day continues as he helps @giannis_an34 warm up before the game tonight!! + +#ThisIsWhyWePlay https://t.co/nLauSV…" +02/14/2018,Sports_celeb,@Giannis_An34,RT @JimZamanis: Best day of my life!! I wanna thank @Giannis_An34 @Bucks and @MakeAWishGreece for making my dream come true!! Hope one day… +02/11/2018,Sports_celeb,@Giannis_An34,Congratulations to my Brother @Thanasis_ante43 for being named 2017-18 Greek All Star MVP. https://t.co/wzvrwZFHeM +02/09/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: S.O.S!!! In desperate need of a stylist and personal trainer! 💛👗💪🏽 +02/09/2018,Sports_celeb,@Giannis_An34,@mariahdanae15 I can be your stylist! https://t.co/IwZOXZxuhO +02/08/2018,Sports_celeb,@Giannis_An34,@NBA you have to get my guy @Khris22m in the all star game cmon! +02/07/2018,Sports_celeb,@Giannis_An34,Sending prayers to a good friend and even greater competitor. Hoping for a speedy recovery KP! @kporzee +01/31/2018,Sports_celeb,@Giannis_An34,"RT @TheNBPA: The NBPA family is deeply saddened by the passing of our brother, Rasual Butler. Our thoughts and prayers are with the Butler…" +01/30/2018,Sports_celeb,@Giannis_An34,RT @Johnhenson31: They gotta eventually take a good look at @Khris22m right ? #AllStarSeason +01/27/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Happy Birthday Dad! We all love you more than you will ever know! Enjoy your year and keep believing! 😊🎉 @PRiddlesprigge… +01/26/2018,Sports_celeb,@Giannis_An34,RT @EuroLeague: ❌🏠 https://t.co/ifZgyMs2hG +01/25/2018,Sports_celeb,@Giannis_An34,"RT @tsevis: Giannis Antetokounmpo: +Made in the streets of Athens +A mosaic portrait of the Greek Freak @Giannis_An34 based on the actual map…" +01/25/2018,Sports_celeb,@Giannis_An34,RT @cf_gardner: @Matt_Velazquez Those are kind words indeed. It's good to know I am missed. Giannis is doing quite well without me! +01/24/2018,Sports_celeb,@Giannis_An34,"@LilTunechi “I got a Greek Freak, she call me Antetokounmpo” @LilTunechi 🔥🔥🔥" +01/21/2018,Sports_celeb,@Giannis_An34,"RT @SInow: The Greek Freak's younger brother Kostas doing work for Dayton +https://t.co/KrYVFeL9VL" +01/21/2018,Sports_celeb,@Giannis_An34,"RT @CBSSportsNet: The @DaytonMBB fans are HYPE. + +Antetokounmpo coast-to-coast for the layup. https://t.co/dpCpeshTjP" +01/20/2018,Sports_celeb,@Giannis_An34,Thank you too all my fans around the world for the continuous support and motivation!! 😃✌🏾 https://t.co/IgQ41N0muH +01/15/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: This was one of the proudest moments our family has lived through. It’s almost that time of the year again! This is go… +01/15/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Let’s go! +😱20+p/20+reb +Giannis Antetokounmpo #NBAVote https://t.co/DiSnIMMBnB" +01/15/2018,Sports_celeb,@Giannis_An34,"RT @morabancandorra: All right T! 👍😁 +Giannis Antetokounmpo +#NBAVote https://t.co/bygWm4pMMO" +01/15/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Let’s vote for this young fella! 👶🏽 +Giannis Antetokounmpo #NBAVOTE https://t.co/ejuZfOL6KY" +01/13/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Because All Stars are regular people too! 😂 + +Giannis Antetokounmpo #NBAVote https://t.co/TyNhLihIEo" +01/13/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Giannis Antetokounmpo #NBAVOTE +Everybody has to retweet this! +Today your vote counts double, let’s get it! https://t.…" +01/13/2018,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Giannis Antetokounmpo #NBAVOTE Retweet for A Vote😈💉🇬🇷 https://t.co/RxrdCnO1Ex +01/13/2018,Sports_celeb,@Giannis_An34,RT @EBled2: Giannis Antetokounmpo #nbavote @Giannis_An34 +01/13/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/11/2018,Sports_celeb,@Giannis_An34,Eric Bledsoe #NbaVote Retweet for a vote✅✅ @EBled2 +01/11/2018,Sports_celeb,@Giannis_An34,Khris Middleton #NbaVote @Khris22m Retweet for a vote✅✅ +01/11/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/11/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Because...popcorn 😂 + +@Giannis_An34 #NBAVote + +🍿 1 RT = 1 Vote 🍿 https://t.co/SozFBnaQav" +01/10/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Για αυτό σαγάπαει ο κόσμος!! Κοιτάξτε χαμόγελο! Χρόνια πολλά Σεξυ αγόρι 💛😘 + +Giannis Antetokounmpo #NBAVote https://t.…" +01/07/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/05/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: I️ can’t even express how proud i am that my brother Giannis Antetokounmpo is leading the All-Star fan voting,despite…" +12/28/2017,Sports_celeb,@Giannis_An34,RT @_mayyyyaaaa: Happy holidays from my family to yours💚 https://t.co/xESqGRe0Rk +12/25/2017,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Giannis Antetokounmpo #NBAVOTE +12/25/2017,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Merry Christmas from my favorite guy and I ❤️🎄 You got my vote on this holiday babbbeeee! Giannis Antetokounmpo #NBAVote… +12/25/2017,Sports_celeb,@Giannis_An34,My mom is new on Twitter @veronica_ante34 make sure you follow her and show her some ❤️ 🧡💙💚💛 Merry Christmas 🎄 +12/25/2017,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: Giannis Antetokounmpo #NBAVOTE +12/24/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: Giving back is great, whatever we can do for these families, it means a lot to us."" - @Giannis_An34 https://t.co/N8ZaYgvjXc" +12/24/2017,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: #ICYMI... @SportsCenter #SCtop10. @Jalen_NoRose1 to @Kostas_ante13. + +From 🇺🇸 to 🇬🇷 + +🔴🔵✈️🏀 + +👀 out belowwwww!! + +He even call…" +12/24/2017,Sports_celeb,@Giannis_An34,RT @Flyer_Faithful: I believe @Kostas_ante13 can fly ✈️✈️✈️ https://t.co/QPAM6C2FzR +12/20/2017,Sports_celeb,@Giannis_An34,RT @FOXSportsOH: He's the brother of NBA star Giannis Antetokounmpo. @Kostas_ante13 explains what he brings to the floor for @DaytonMBB.… +12/20/2017,Sports_celeb,@Giannis_An34,@FOXSportsOH @Kostas_ante13 @DaytonMBB Really @Kostas_ante13 ???😂😂 +12/18/2017,Sports_celeb,@Giannis_An34,Congratulations @KobeBryant on a monumental day & an amazing film! https://t.co/ztecx1WkJ4 #DearBasketball @go90sports +12/13/2017,Sports_celeb,@Giannis_An34,Does anyone know when is the next @WWE show in Milwaukee or Chicago? +12/08/2017,Sports_celeb,@Giannis_An34,RT @overtime: GREEK FREAK'S BRO got the range 🚨 @Giannis_An34 https://t.co/UvZwd9Rpur +12/08/2017,Sports_celeb,@Giannis_An34,"RT @overtime: Giannis came out to support his little bro Alex Antetokounmpo 💯 Full Highlights: +https://t.co/Gr8aC5BQFi +@Giannis_An34 @AlexA…" +12/08/2017,Sports_celeb,@Giannis_An34,RT @overtime: Greek Freak's bro Alex with the HUGE DUNK ⚡️ @Giannis_An34 https://t.co/WK3c6zj02J +12/07/2017,Sports_celeb,@Giannis_An34,RT @EBled2: Got my vote https://t.co/23H9aJ9TQX +12/07/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: Happy Birthday @Giannis_An34 from Greece with LOVE!! + +🇬🇷❤️ https://t.co/30izpwhmbE" +12/06/2017,Sports_celeb,@Giannis_An34,RT @mariahdanae15: | BLESSED | Happy Birthday Babbbbeeee 💛✌🏽 I love you @Giannis_An34 https://t.co/My08RaxGOa +12/05/2017,Sports_celeb,@Giannis_An34,"RT @kmeletislaw: @Matt_Velazquez @tdgarden @Giannis_An34 a few dozen ?? are you kiding?? the hol arena is in blue and in greek flags, men !…" +12/05/2017,Sports_celeb,@Giannis_An34,I want to thank the 2 thousand Greeks that showed up to the game tonight and supported me and my team! I counted li… https://t.co/RiSNmlXeLE +12/04/2017,Sports_celeb,@Giannis_An34,"RT @gazzetta_gr: Θανάσης Αντετοκούνμπο, ένας παίκτης παράδειγμα προς μίμηση για την προσπάθεια του να γίνει ΚΑΘΕ μέρα καλύτερος! 👏👏 https:/…" +12/01/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: THAT feeling 💯🇬🇷! #FIBAWC #ThisIsMyHouse + +👉 https://t.co/CFYRcvzSut https://t.co/FwhvIgcmwk" +12/01/2017,Sports_celeb,@Giannis_An34,RT @Ballislife: The other Greek Freak! @Thanasis_ante43 swatting shots and throwing down dunks at #FIBAWC https://t.co/rfZ4oyAcRu +11/28/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: .@Thanasis_ante43 YOU wanted a personal highlight reel? +Here YOU go 💯🔝🔥! #FIBAWC #ThisIsMyHouse + +@HellenicBF 🇬🇷 https://t.co/T…" +11/27/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: Hey, @giannis_an34 what do you think about THAT 🤔? #FIBAWC #ThisIsMyHouse + +@Thanasis_ante43 @HellenicBF 🇬🇷 + + 📺 https://t.co/D8R…" +11/27/2017,Sports_celeb,@Giannis_An34,@FIBAWC @Thanasis_ante43 @HellenicBF 👋🏾🏀😜 +11/27/2017,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: “How you make others feel about themselves, says a lot about you.” 💛🌻✌🏽" +11/21/2017,Sports_celeb,@Giannis_An34,"RT @Mike_Schmitz: Giannis' younger brother, Kostas, has made tremendous strides since the 2016 Nike Hoop Summit. Needs time but an intrigui…" +11/19/2017,Sports_celeb,@Giannis_An34,This is what life is all about! Travelling with people you love! Check out our latest adventure with Aegean  … https://t.co/qu8AMqmfAY +11/18/2017,Sports_celeb,@Giannis_An34,"RT @AllaireMatt: So, @Kostas_ante34 is going to be a big problem in the A-10 😳 https://t.co/NQr1EhJx07" +11/18/2017,Sports_celeb,@Giannis_An34,Stop running 🏃🏾‍♀️ away and come give your baby some sugar!! @mariahdanae15 😘👀 https://t.co/Y4nFfJEmq0 +11/17/2017,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Just a kid from Sepolia ,Greece, +@euroleague bound.Thanks ncalathes 🔝🔝🔝 https://t.co/AVaVlJIpqM" +11/17/2017,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Happiness is not out there, it’s in you. 🌻" +11/17/2017,Sports_celeb,@Giannis_An34,@mariahdanae15 🙄 +11/14/2017,Sports_celeb,@Giannis_An34,"RT @EuroLeague: Alley-oop time! @Nick_Calathes15 ↔️ @Thanasis_ante43 ☝️ + +#7DAYSMagicMoment https://t.co/qaQ53Ozlxk" +11/14/2017,Sports_celeb,@Giannis_An34,😤@Thanasis_ante43 @Kostas_ante34 @AlexAnteto3 +11/07/2017,Sports_celeb,@Giannis_An34,Family. Loyalty. Legacy. Excited to announce my long-term partnership with @NikeBasketball #FamilyOverEverything… https://t.co/7MhvUqkbwb +11/05/2017,Sports_celeb,@Giannis_An34,He’s back 😈😈😈😈😈 @Kostas_ante34 #OnAMission https://t.co/HTiJ7mY2TS +11/05/2017,Sports_celeb,@Giannis_An34,RT @Flyer_Faithful: .@tlanders_03 ⬆️ @Kostas_ante34 ⬇️ https://t.co/B1m62qPzc0 +11/02/2017,Sports_celeb,@Giannis_An34,Go put some work in the new season of #NBALIVEMobile and make that rating go ⬆! Your path to greatness now: https://t.co/tFlQRAUUkY +10/31/2017,Sports_celeb,@Giannis_An34,Videos and interviews like this keeps me motivated. https://t.co/rEWuhvJ2yo #CameALongWay #MyFamilyIsMylife #YoungGreekfreak😂😂 +10/30/2017,Sports_celeb,@Giannis_An34,RT @Ufc26: @Thanasis_ante43 @KittyKat_Rawr @Giannis_An34 https://t.co/xggHCpLCEA +10/24/2017,Sports_celeb,@Giannis_An34,RT @Johnhenson31: Finally got my handshake from @Teletovic33 https://t.co/TUclokeLN8 +10/19/2017,Sports_celeb,@Giannis_An34,It’s about that time! https://t.co/6l1Vcdzy8M +10/18/2017,Sports_celeb,@Giannis_An34,"RT @Midwest_Ballers: The youngest of the #antetokounbros, Alex Antetokounmpo, got some tips from big bro before balling in fall league acti…" +10/16/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: ""I see beauty in my scars. They tell my story."" - @JabariParker + +(via @SInow) https://t.co/rWuQKooJ5l" +10/04/2017,Sports_celeb,@Giannis_An34,I’m coming.. 🙏🏾 +09/30/2017,Sports_celeb,@Giannis_An34,"RT @matthewdelly: No child should go hungry, help support @BlessinBackpack ! https://t.co/iTrVrGlTyb" +09/20/2017,Sports_celeb,@Giannis_An34,RT @NBAspain: ⚽️⚽️⚽️ @Giannis_An34 #BucksDay https://t.co/9is2tW67wK +09/16/2017,Sports_celeb,@Giannis_An34,RT @nikebasketball: We gave @giannis_an34’s home court in Athens a new look last weekend with some help from local artist Same84. https://t… +09/10/2017,Sports_celeb,@Giannis_An34,👀👀👀 GARAGE SALE for CHARITY address will be announced within the hour... +09/09/2017,Sports_celeb,@Giannis_An34,@PRiddlesprigger Sure @PRiddlesprigger all bids are accepted!!😃 +09/09/2017,Sports_celeb,@Giannis_An34,@Double_HTown @packers What time is the @packers game? +09/09/2017,Sports_celeb,@Giannis_An34,👀 👀👀👀It's time to get rid of a few things! GARAGE SALE for CHARITY TOMORROW! Stay tuned for details... +09/09/2017,Sports_celeb,@Giannis_An34,RESPECT.. Hopefully one day I can be on the same stage and have my name next to yours. #HOF #GOAT @NickGalis6 https://t.co/RdTD5VCtHf +09/05/2017,Sports_celeb,@Giannis_An34,"RT @DXContent: 'I started playing basketball in '08... I like @magicjohnson + @KDTrey5' + +~ @Giannis_An34 has come a long way > https://t.co…" +09/03/2017,Sports_celeb,@Giannis_An34,"RT @FIBA: 🇬🇷 Who said they were no Antetokounmpo in FIBA #EuroBasket2017? @Thanasis_ante43 sparked his team with 12pts, 6reb & 2blk! https:…" +09/02/2017,Sports_celeb,@Giannis_An34,RT @Bucks: Join us in supporting the @RedCross and the #HurricaneHarvey relief effort. Visit https://t.co/6dOzwbj6dX or call 1-800-REDCROS… +09/01/2017,Sports_celeb,@Giannis_An34,RT @EauClairePD: Yesterday we were troubled to learn that many of the @Bucks players couldn't pronounce Eau Claire. Now it's our turn. #fea… +09/01/2017,Sports_celeb,@Giannis_An34,RT @gazzetta_gr: Πωρωμένος με την Εθνική Ελλάδας ο Θανάσης Αντετοκούνμπο! https://t.co/JlbSyKCU4D +08/31/2017,Sports_celeb,@Giannis_An34,RT @gazzetta_gr: Respect στον δημιουργό του https://t.co/e7x1vcDxqu +08/31/2017,Sports_celeb,@Giannis_An34,RT @FIBA: ☝️ Not in @Thanasis_Ante43's 🏡! You better watch out before driving to @HellenicBF 🇬🇷 basket! #EuroBasket2017 https://t.co/BRQe87… +08/28/2017,Sports_celeb,@Giannis_An34,Praying for the people in Houston 🙏🏾 +07/02/2018,Sports_celeb,@TheRock,"RT @beauflynn: Talk about nonstop. @therock’s wild and jam-packed schedule gets even more relentless… We leave set from Atlanta, fly 16 ho…" +07/02/2018,Sports_celeb,@TheRock,Just wrapped a phenomenal #SKYSCRAPER press conference in Beijing. Amazing energy from the press and fans. Event wa… https://t.co/jQ31AWwOe7 +07/02/2018,Sports_celeb,@TheRock,"DON’T LOOK DOWN. +Take a deep breath and enjoy our NEW and FINAL trailer for #SKYSCRAPER. +JULY 13th 🔥🌍Get tickets:… https://t.co/5UhJhlKMXj" +07/02/2018,Sports_celeb,@TheRock,RT @nerdist: .@TheRock pays tribute to @skyscrapermovie's great predecessors with a pair of retro posters: https://t.co/ANcPJEaza1 https:/… +07/02/2018,Sports_celeb,@TheRock,Bruce was a big influence on me. Die Hard (and Towering Inferno) were the inspirations for SKYSCRAPER. Paying homag… https://t.co/vcsMNmgD3a +07/02/2018,Sports_celeb,@TheRock,RT @TimothyDowling: Love movie posters and love these. Had that Die Hard poster on my wall as a kid. You guys need a take on the Fugitive o… +07/02/2018,Sports_celeb,@TheRock,RT @Michael_Stets: These are killer! Well done @TheRock 🙌🏻🙌🏻 https://t.co/JZ3ZZhAAsw +07/02/2018,Sports_celeb,@TheRock,RT @TheRyanParker: These posters are so freakin’ sweet‼️ https://t.co/g9rENpfg8G +07/02/2018,Sports_celeb,@TheRock,Fun promo. Let’s get it boys! @NASCAR #SKYSCRAPER https://t.co/LTFbzoqkRd +07/01/2018,Sports_celeb,@TheRock,I had these ultra cool vintage posters made paying homage to the two classic movies that inspired me and generation… https://t.co/hFV5fqmFW3 +07/01/2018,Sports_celeb,@TheRock,"Beijing bound 🇨🇳 +A pleasure to return back to China. +Can’t wait to see everyone. Let’s roll. +#WheelsUp… https://t.co/qJlp52USri" +07/01/2018,Sports_celeb,@TheRock,@robbieglover Thx man that’s a such a cool note. Appreciate you and keep on keepin on 🙏🏾👊🏾 +07/01/2018,Sports_celeb,@TheRock,@Amy__Bailey Haha 👏🏾👏🏾👊🏾 #swag +07/01/2018,Sports_celeb,@TheRock,"RT @averyhartmans: This morning, @TheRock introduced his first-ever wireless headphones, designed to help you ""crush your workouts"" 💪 https…" +07/01/2018,Sports_celeb,@TheRock,Here I go playing Willy Wonka again and surprised our lil’ baby Jazzy with this horse and carousel ride when she go… https://t.co/nx4kBditVZ +07/01/2018,Sports_celeb,@TheRock,"Off to a good start on tracking w/ a $30M U.S. number for our SKYSCRAPER debut. +Domestic box office is one piece o… https://t.co/jAC0F4ovkt" +06/30/2018,Sports_celeb,@TheRock,@gregwarhead @charliesimo @KevinHart4real @mattjwillis Haha never any shame in hustling to get your music heard dud… https://t.co/4Lxtj4PCVX +06/30/2018,Sports_celeb,@TheRock,@ollyog @MatRoff Enjoy! Pint? Nah it’s your birthday. Let’s go with a gallon +06/30/2018,Sports_celeb,@TheRock,@ollyog @MatRoff Raising a glass to you on your birthday buddy! Cheers 🍻 👊🏾 +06/30/2018,Sports_celeb,@TheRock,@charliesimo @gregwarhead @KevinHart4real @mattjwillis Haha I have a fun idea - how bout you watch it with us and t… https://t.co/FD9zsZuwMq +06/30/2018,Sports_celeb,@TheRock,@diverse_kcox Hah well tequila helps the ol’ memory 🤙🏾 +06/30/2018,Sports_celeb,@TheRock,@Sichz_ Thx dude very kind of you to say. Thx for diggin all my stuff 🙏🏾👊🏾 +06/29/2018,Sports_celeb,@TheRock,"DECEMBER 13th, 2019. +The game is not over... +And I get to slap @KevinHart4real’s lips into next week. The world is… https://t.co/LDWAxojudu" +06/29/2018,Sports_celeb,@TheRock,RT @DanyGarciaCo: SO HAPPY w/ the creative content & direction of this launch! @sevenbuckscr CRUSHED it & captured the magic of @therock an… +06/29/2018,Sports_celeb,@TheRock,Make sure you experience our VR Skyscraper leap off the crane. I tried it multiple times and failed lol. It’s an in… https://t.co/686wr7G4jg +06/29/2018,Sports_celeb,@TheRock,RT @SevenBucksDS: Who doesn’t love a good action movie (or five)? No better authorities to wax-poetic on the subject than @TheRock and Neve… +06/29/2018,Sports_celeb,@TheRock,"Boom 🎧 +One of the best, if not THE best over the ear headphones you’ll ever train in. Engineered for HARD CORE TRA… https://t.co/e0wBlzVZ0P" +06/29/2018,Sports_celeb,@TheRock,Yes sir. Get after it! Playlist personally created by me. Start with WE READY and let the destruction begin 💪🏾👊🏾… https://t.co/Zgw8FLLaKw +06/29/2018,Sports_celeb,@TheRock,"Haha thank ya for the huge SKYSCRAPER props. Very cool to see everyone loving the movie. And yes, drinking beer and… https://t.co/M1fIV7o8fQ" +06/28/2018,Sports_celeb,@TheRock,We smell it and smells like shi🤣. Thanks dude! Enjoy the training shoes! First drop sold out in 30min. We just drop… https://t.co/dynE2tHYwT +06/28/2018,Sports_celeb,@TheRock,"Enjoy the 🎧👟! +Great copps! Stay strong / train hard! +https://t.co/vYtBQVsMjX https://t.co/ZgZXy5WtfF" +06/28/2018,Sports_celeb,@TheRock,@redletterdave Great idea💡 but I’ll do it in multiple accents and ever so slightly drunk of tequila lol 👊🏾 +06/28/2018,Sports_celeb,@TheRock,"RT @redletterdave: These headphones sound great. + +Next version: An onboard AI like Siri, but with The Rock's voice, to motivate your candy…" +06/28/2018,Sports_celeb,@TheRock,"Thank you man. +I put a lot of effort into delivering high quality @UnderArmour products. +And please don’t go brok… https://t.co/UTYmSrWhaX" +06/28/2018,Sports_celeb,@TheRock,"Thank you man and enjoy the great. Those #ProjectRock1s training shoes sold out in less than 30min, four weeks ago,… https://t.co/TN59pN6qsV" +06/28/2018,Sports_celeb,@TheRock,@ollyog Happy early birthday to my BFF. I will never again equate an emoji face with masculinity 😂🤦🏽‍♂️ +06/28/2018,Sports_celeb,@TheRock,"Great review! +I also added new “talk thru technology” which allows us to keep our headphones ON and listen to peop… https://t.co/GPYKeEAm76" +06/28/2018,Sports_celeb,@TheRock,"@ChrisClarkNFL @UnderArmour Cool! Let me know how you like em dude. Again, if they suck, let me know and I’ll send… https://t.co/fu5dlHa5vU" +06/28/2018,Sports_celeb,@TheRock,"Enjoy @averyhartmans!! Crush it! +🎧 💪🏾 +https://t.co/vYtBQVsMjX https://t.co/LWmTIqGvXC" +06/28/2018,Sports_celeb,@TheRock,"Enjoy my man 🎧 +They’ll be one of the best, if not, the best over the ear headphones you’ve trained in. +And because… https://t.co/9P2lJ8YO2T" +06/28/2018,Sports_celeb,@TheRock,"It’s ON! +Our most anticipated @underarmour #ProjectRock drop - the CHASE GREATNESS COLLECTION is OUT NOW. +As alwa… https://t.co/8O8BLDoTye" +06/28/2018,Sports_celeb,@TheRock,"RT @ShannonCorbeil: So @TheRock is awesome, obviously, but Neve Campbell as a badass combat veteran stole my heart. + +#SkyscraperMovie is F…" +06/28/2018,Sports_celeb,@TheRock,See you at the top one day man. Keep puttin’ in that hard work. Glad you loved the movie. #SkyscraperMovie https://t.co/UFIeOqnlI1 +06/28/2018,Sports_celeb,@TheRock,"Billy’s right! +But for the sweet science record, asteroids are always a pain in the a** to stop. I can stop meteor… https://t.co/Ei1Vhxt2ub" +06/28/2018,Sports_celeb,@TheRock,"👏🏾👊🏾 Neve Campbell, who plays my wife, crushes in our movie. Proud of her! Our writer/director @RawsonThurber wrote… https://t.co/WOvCKnAQKH" +06/27/2018,Sports_celeb,@TheRock,@Reluctantly_pod @djdizzle82 @KathrynGironimi 🙏🏾 for tha luv!!;) +06/27/2018,Sports_celeb,@TheRock,Yessss! More @caityweaver love for writing one of the greatest profiles of all time. (of course she had a brilliant… https://t.co/PvxMhrmk93 +06/27/2018,Sports_celeb,@TheRock,"Very cool, significant and rare news for our SKYSCRAPER in CHINA. The country has awarded us a July 20th release da… https://t.co/RwOv4qyxQI" +06/27/2018,Sports_celeb,@TheRock,Dude always a pleasure working with you. Never an ego and always down to do whatever it took to entertain the fans.… https://t.co/1heOocEY3N +06/26/2018,Sports_celeb,@TheRock,"Reddit community time for some fun! +Tomorrow (Wed) join my SKYSCRAPER writer/director Rawson Thurber at 3pm PDT. +G… https://t.co/rRPKU5jAoG" +06/26/2018,Sports_celeb,@TheRock,"You know I love my contests & giving cool shit away! 🤙🏾 +Teamed up w/ @AtomTickets to make the SKYSCRAPER TICKET TO… https://t.co/f8CskZQOI1" +06/26/2018,Sports_celeb,@TheRock,RT @DanHevia: I never knew I needed @TheRock vs. @rustyrockets until now. @HBO this is why I subscribe. 🤙 https://t.co/gaK5zlatBV +06/26/2018,Sports_celeb,@TheRock,RT @AprilCPA1991: Yes!! One of my fav shows is coming back! Love #ballers and love the cast! Especially my fellow UM alum @TheRock ! 🙌🏼🙌🏼 h… +06/26/2018,Sports_celeb,@TheRock,RT @elaysiaamour: Yessss let’s gooo https://t.co/ZaHdBIjc5b +06/26/2018,Sports_celeb,@TheRock,RT @hhe_71: Lets goooo! Can’t fuckin’ wait! #ballers https://t.co/koxKmfNxQi +06/26/2018,Sports_celeb,@TheRock,"RT @LucasSteagall: Fun fact: A day acting on this show is my favorite day on set of all time, every time. Another fun fact @TheRock is a fr…" +06/26/2018,Sports_celeb,@TheRock,RT @scott_f_mack: Awesome to see the next season of #ballers is coming out this summer. Can’t wait to check it out 👀 https://t.co/08KVSEVW4o +06/26/2018,Sports_celeb,@TheRock,RT @akhilg06: Love this show #ballers https://t.co/lQTPn1rpeT +06/26/2018,Sports_celeb,@TheRock,RT @OilyMomHere: Woo hoo!!! So excited for this season to rock....thank you https://t.co/yRYYonOfqI +06/26/2018,Sports_celeb,@TheRock,RT @peterocksteady: Feel like I've been waiting forever big bro @TheRock I'm Ready! #Ballers https://t.co/CECRwP9Nrz +06/26/2018,Sports_celeb,@TheRock,"I’m blown away. Thank you CHINA 🇨🇳 +RAMPAGE crosses the rare $1Billion RMB mark & becomes my highest grossing film… https://t.co/SXVQHo99PV" +06/26/2018,Sports_celeb,@TheRock,Pleasure meeting my dude @nicksanto534. What a positive ray of light and “no excuses” perspective on approaching li… https://t.co/GsozXiF95f +06/25/2018,Sports_celeb,@TheRock,@kharypayton 😂 👏🏾👊🏾 fuckin classic (and true) +06/25/2018,Sports_celeb,@TheRock,"RT @SevenBucksProd: Different coast, same hustle. @BallersHBO is back in business August 12 on @HBO. #Ballers #HBO https://t.co/wFS63l0c76" +06/25/2018,Sports_celeb,@TheRock,NEW SEASON of @ballershbo & this may be our best yet. We’re @HBO’s #1 half hour show for years now & I’m very proud… https://t.co/7omCBgbM6I +06/24/2018,Sports_celeb,@TheRock,"I’d 💯 vote for him, because he’s King of the ‘Gram but I also heard he’s a real a**hole, so no vote for him.… https://t.co/btUaVX3TOv" +06/23/2018,Sports_celeb,@TheRock,"Starting off my Sat by reviewing new TV spots for SKYSCRAPER. +Note pad and pen at the ready and diggin’ in to my p… https://t.co/8zsNzVRX3G" +06/23/2018,Sports_celeb,@TheRock,Join us today at 415 EST on ⁦@FOX for NOSSA CHAPE. Took me a few takes to fight back tears and get thru my lines fo… https://t.co/ElvmQIUxvl +06/23/2018,Sports_celeb,@TheRock,Wow FIVE #TeenChoice2018 NODS. THANK Y’ALL so very much. Grateful to have the greatest fans on the planet. Vote now… https://t.co/1iWX47cIkF +06/22/2018,Sports_celeb,@TheRock,"3 week countdown is on. +Most anticipated “nail biting, terrorizing fun you’ll have three thousand feet in the sky”… https://t.co/HcSeDurKTQ" +06/22/2018,Sports_celeb,@TheRock,"Hey punk @JKCorden, you’re gonna need much more than a silly #EatShitTheRock hashtag to start a beef between me and… https://t.co/MtXBIv4NnO" +06/21/2018,Sports_celeb,@TheRock,"RT @skyscrapermovie: EXCLUSIVE: A family in danger, an impossible leap, heroes, villains... @TheRock and the #SkyscraperMovie filmmakers gi…" +06/21/2018,Sports_celeb,@TheRock,"Big #ChaseGreatnessCollection2 drops next THURSDAY 6/28. +Including my first signature shoe that, fortunately sold… https://t.co/PCYerDRk9z" +06/21/2018,Sports_celeb,@TheRock,You make us happy too El. And thanks for including Kev’s name in your tweet. He gets super jelly when he’s not ment… https://t.co/BwQFadIjwp +06/20/2018,Sports_celeb,@TheRock,@cebsilver I’m skeptical reading “former” gym rat which I assume means you don’t train anymore. These headphones may not be for you buddy +06/20/2018,Sports_celeb,@TheRock,"Hype is real 🎧! +Our new #ProjectRockWireless @UnderArmour @JBLaudio first ever HARDCORE TRAINING headphones drop ne… https://t.co/hY1zHTGVMs" +06/20/2018,Sports_celeb,@TheRock,"Cool SKYSCRAPER movie fact/ +We hired Adrian… https://t.co/DTIoJndovx" +06/20/2018,Sports_celeb,@TheRock,"They’re here 🎧 +Like you, my gym time is… https://t.co/BuqXovimEt" +06/19/2018,Sports_celeb,@TheRock,"As you know, #SKYSCRAPER is my homage to DIE… https://t.co/wt17KA6U92" +06/19/2018,Sports_celeb,@TheRock,"Always make it about consistency, not greatness. Greatness will come. Have a GREAT season boys. Big respect & suppo… https://t.co/uvB7JJVNGD" +06/18/2018,Sports_celeb,@TheRock,@ava Congratulations AD. Onward/Upward 🤙🏾 +06/18/2018,Sports_celeb,@TheRock,Kuz told me he wanted his best summer ever. Boy’s puttin’ in the work 👏🏾💪🏾 https://t.co/j4z2i1i6mX +06/18/2018,Sports_celeb,@TheRock,@RealPAULLOGAN Thank you PL!! Appreciate it brother 👊🏾 +06/18/2018,Sports_celeb,@TheRock,"Trust me, Mel - I only got on my knees to feed Lauren while she breastfed because I was told there was free waffles… https://t.co/BPYpDR8nFw" +06/18/2018,Sports_celeb,@TheRock,So humbling and GRATEFUL to see @MakeAWish wish granting come full circle in my family. Thank you to the entire Mak… https://t.co/CcxZGIThAg +06/18/2018,Sports_celeb,@TheRock,@Emilyvaughnx Thx you Em!!! 🙏🏾👊🏾❤️ +06/18/2018,Sports_celeb,@TheRock,Haha perfect. Congratulations my friend on #5. I got some work to do to catch up. I’ll stay practicing lol.… https://t.co/7eLJxUY2wL +06/18/2018,Sports_celeb,@TheRock,"Bitter sweat Sunday, but my baby girl’s made it… https://t.co/ee4yx9nPgG" +06/17/2018,Sports_celeb,@TheRock,"What are you so upset about brother. You told me last month you’re not their real father anyway. +Love ya buddy and… https://t.co/xixnJdD2Yp" +06/17/2018,Sports_celeb,@TheRock,Happy Father’s Day to this hardly ever smiling… https://t.co/hIV2tdkbXo +06/17/2018,Sports_celeb,@TheRock,Family 👊🏾 Congrats boys! 🇲🇽 Thank you to my… https://t.co/YHVaFki6hV +06/16/2018,Sports_celeb,@TheRock,"Close up the honky tonks and lock all the doors,… https://t.co/5w7Q09YJ4U" +06/16/2018,Sports_celeb,@TheRock,"Calm before the storm. +Shooting our big… https://t.co/ySFgMwFknp" +06/16/2018,Sports_celeb,@TheRock,"*swipe left +Day of reckoning. 108 degrees.… https://t.co/oYgIlW1uck" +06/16/2018,Sports_celeb,@TheRock,"Family 👊🏾 +Thank you to my boys @jona2santos… https://t.co/Pq5QBYW3FH" +06/16/2018,Sports_celeb,@TheRock,"Doing some great biz with Universal. Grateful to have started my career with them years ago (Scorpion King). +Good… https://t.co/5SFcATqY4t" +06/16/2018,Sports_celeb,@TheRock,"Ladies, gents and children of all ages.. The… https://t.co/c7kMjovDUx" +06/16/2018,Sports_celeb,@TheRock,"🙏🏾 Much mahalo for this crazy fun buzz. RED NOTICE was the pitch that created a huge bidding war, eventually becomi… https://t.co/oaZUFwOYbp" +06/16/2018,Sports_celeb,@TheRock,Cool to feel the early buzz about RED NOTICE - an international heist thriller with myself and my darlin’ friend… https://t.co/e7q9jCqH0J +06/16/2018,Sports_celeb,@TheRock,Dude on the left is pretty good at what he… https://t.co/SrS9QYP1OZ +06/16/2018,Sports_celeb,@TheRock,@greengoblin Def you!! 👊🏾 +06/15/2018,Sports_celeb,@TheRock,"SKYSCRAPER is my homage to DIE HARD & TOWERING INFERNO. A love letter to Willis, McQueen, Newman and Dunaway. +And… https://t.co/0IrtvrwtQm" +06/15/2018,Sports_celeb,@TheRock,"@preston316 Absolutely amigo. It’s inspired by Towering, Die Hard, The Fugitive.. films of the 70s & 80s genre. Ins… https://t.co/5hygFB0yj2" +06/15/2018,Sports_celeb,@TheRock,"@chriswelch Dammit Chris it’s daddy, not dad" +06/15/2018,Sports_celeb,@TheRock,"A father’s love is fierce. +Excited to deliver to you this summer’s most anticipated original action film.… https://t.co/Q3l4trW9y4" +06/15/2018,Sports_celeb,@TheRock,"@Fisher_DanaR Haha yes it is D. It’s secretly, Kevin Hart wearing a raccoon costume" +06/15/2018,Sports_celeb,@TheRock,😂👊🏾 “Hold my beer and watch this shit” #MPRRaccoon https://t.co/FNg7lfLeLL +06/14/2018,Sports_celeb,@TheRock,"Just three dudes. +Great chop session with this… https://t.co/42znOHlvkA" +06/14/2018,Sports_celeb,@TheRock,"@ChrisEvans Happy Birthday brotha! Halfway to 74! +🤣🤙🏾👊🏾" +06/13/2018,Sports_celeb,@TheRock,Thank ya dude. The movie is fantastic. Enjoy! And I AM TOUGH.. in my mind only 😂 #Skyscraper https://t.co/dpkTVdr70W +06/13/2018,Sports_celeb,@TheRock,"In ONE MONTH.. yup, it all goes wrong. +#SKYSCRAPER JULY 13th 🌎 https://t.co/73aA2E946g" +06/13/2018,Sports_celeb,@TheRock,"Found this gem 💎 +Check out 22yrs old and 280lbs… https://t.co/MsyIXpCrto" +06/13/2018,Sports_celeb,@TheRock,"*scroll left +I wrote Gal’s name down on my… https://t.co/L9890p0MZd" +06/12/2018,Sports_celeb,@TheRock,This one got me. Lil’ Carter here has children’s Alzheimer’s (Sanfilippo syndrome). Check out this vid and if you c… https://t.co/OR5H7ahpgc +06/12/2018,Sports_celeb,@TheRock,@a_lemay224 Perfect!! #swag +06/12/2018,Sports_celeb,@TheRock,"@KicKeePants Much much mahalo for the amazing warm and cozy’s. Unfortunately, none of it fits me, so I guess I’ll g… https://t.co/xaY62Bot0f" +06/11/2018,Sports_celeb,@TheRock,"Got my ass kicked today training legs. +3… https://t.co/Bwh3rlllbL" +06/10/2018,Sports_celeb,@TheRock,"Back of the jet is called, “DJ’s Think Tank”… https://t.co/jCcX7tps6N" +06/10/2018,Sports_celeb,@TheRock,"Wheels up / rockin’ out 🤟🏾 +#FlyingSilverEagle… https://t.co/Xkub5B3OUQ" +06/10/2018,Sports_celeb,@TheRock,"Meet Will Sawyer: +Father. Husband. Amputee. BAMF. +Don’t ever underestimate the power of a desperate man protectin… https://t.co/111rhg5N5m" +06/10/2018,Sports_celeb,@TheRock,@jimmykorderas Haha I always need your help man. Just like back in our ring days when I needed you to quick count every time I won lol +06/09/2018,Sports_celeb,@TheRock,Always ‘preciate you brotha. Keep doing great things and spreading the good word. #theotherside https://t.co/Xgkv98WoNp +06/07/2018,Sports_celeb,@TheRock,Still much to learn in the shoe and apparel… https://t.co/w8kFqKHfS1 +06/07/2018,Sports_celeb,@TheRock,@Stands And a very special goodnight to you too;) +06/07/2018,Sports_celeb,@TheRock,@OmarMiller’s a good man and I’m happy to help. Continued blessings to you guys and the mission center. https://t.co/XXvE2dxtiV +06/06/2018,Sports_celeb,@TheRock,@Chris_Ciaccia @UnderArmour Thanks for writing it my man. Reading fresh language about my biz helps me understand a… https://t.co/hE9T383oWu +06/06/2018,Sports_celeb,@TheRock,"Again, very nice measure and metrics to sell out so fast, but also gave me great clarity on where we can improve gr… https://t.co/rQvqIyO1Tc" +06/06/2018,Sports_celeb,@TheRock,"Market analytics ain’t sexy at all to tweet about, however nice to see our #ProjectRock footprint making an impact… https://t.co/CKz6pUwYrT" +06/06/2018,Sports_celeb,@TheRock,Great success with our launch. Sold out in 30min. Satisfied consumers but still lots of work to be done! Always loo… https://t.co/cFJAjxORIh +06/06/2018,Sports_celeb,@TheRock,@JamesGunn @karengillan @michaelrosenbum @jumanjimovie @Guardians @seangunn @jackblack @prattprattpratt… https://t.co/YVTxJKeUE4 +06/06/2018,Sports_celeb,@TheRock,"Hell, we’ll get therapy together brother lol. Keep kickin ass champ! 🤙🏾👊🏾 https://t.co/qC5MhaXUhX" +06/05/2018,Sports_celeb,@TheRock,@LegitJoeyBowie Boom 💥 🤙🏾👊🏾 +06/05/2018,Sports_celeb,@TheRock,These are called the “Hobbs Beef Piston Power… https://t.co/b6UthHycNu +06/04/2018,Sports_celeb,@TheRock,@mattdavella My all time fav pic. Thx for the love man! And that’s because you keep calling me from a pay phone...… https://t.co/1KiLcsvliw +06/04/2018,Sports_celeb,@TheRock,"Yes sir. We gotta have faith that the one thing we always wanted to happen, can often be the best thing that never… https://t.co/QmXueKgjLB" +06/04/2018,Sports_celeb,@TheRock,"Sunday shakas and scripts. +Reading our new Fast… https://t.co/i2UJacOjub" +06/04/2018,Sports_celeb,@TheRock,I have some great and productive conversations… https://t.co/EQU8fnWkqR +06/04/2018,Sports_celeb,@TheRock,"If you’re goin’ thru the struggle, hold on to… https://t.co/OPRXBNaEF7" +06/03/2018,Sports_celeb,@TheRock,Thank you man and have a great workout! Women’s ProjectRock shoes in development and delivering at the top of 2019.… https://t.co/jBnQ0Snozz +06/03/2018,Sports_celeb,@TheRock,"I got you @TiffanyHaddish! Yes, the secret password to our secret society MTV-inati, is “@KevinHart4real is shorter… https://t.co/Ktr7I4WhnV" +06/03/2018,Sports_celeb,@TheRock,Months and months of collaborating with @UnderArmour’s top designers. Thank you everyone who made our launch a huge… https://t.co/OfzCJ4ayHF +06/03/2018,Sports_celeb,@TheRock,"“Let It Go” + +You’re welcome. https://t.co/BPMS6gwpWQ" +06/03/2018,Sports_celeb,@TheRock,@Anna_Rothschild @SirDavidBBC @washingtonpost Aw thank ya for the love Anna! Flattered by the gesture 🤟🏾 for the re… https://t.co/K9qZbR8BDr +06/03/2018,Sports_celeb,@TheRock,"Hi Bob, which nickname are you referring to? Big Daddy? The Rock? Samoan Thor? Beef Piston? Or the inappropriate on… https://t.co/4dp4Wh8499" +06/03/2018,Sports_celeb,@TheRock,@KaylaBraxtonWWE Hah I’ll totes see ya there as per yoosh;) +06/03/2018,Sports_celeb,@TheRock,🙏🏾❤️ Aww thank ya Audra! Wishing everyone the best of luck for our #WarriorGames! Kick ass and have fun. And geeezu… https://t.co/vrr2EI8mdT +06/03/2018,Sports_celeb,@TheRock,"Very cool and flattering @DakotaKai_WWE. Thank you! Look forward to following your career. Work extremely hard, hav… https://t.co/Ts9C7AhYL9" +06/03/2018,Sports_celeb,@TheRock,You’re welcome cuz! Always proud of your success and hard work. Enjoy the Project Rock @UnderArmour gear and… https://t.co/lgSymLeOih +05/31/2018,Sports_celeb,@TheRock,@mikeavila @joemoscone77 Haha not at all! Flair over me is a smart move and I agree. He was one of my squared circl… https://t.co/5ZfqBjQr5v +05/31/2018,Sports_celeb,@TheRock,@AlexJamesFitz Some jerk asshole lol. We also have to add TOWERING INFERNO and THE FUGITIVE to the title +05/30/2018,Sports_celeb,@TheRock,RT @rampagethemovie: #RampageMovie is like nothing you’ve ever seen before. Don’t miss out on taking all the action with @TheRock home! Own… +05/29/2018,Sports_celeb,@TheRock,@KevinMcCarthyTV Thank you dude so much!! You’re gonna love the movie!! @RawsonThurber (writer director) did an ama… https://t.co/Y7gK6e3EQV +05/29/2018,Sports_celeb,@TheRock,Happy to see all the great reviews for my new signature training shoe @UnderArmour #ProjectRock1s. Spent a long ti… https://t.co/EDc6RKYDSI +05/29/2018,Sports_celeb,@TheRock,Thank you everyone for rockin’ with my new signature shoe - the #ProjectRock1s from @UnderArmour. In 30min they wer… https://t.co/U2NmkoraTF +05/29/2018,Sports_celeb,@TheRock,RT @johnkrasinski: Memorial Day. A day to honor and remember each and every one of the brave men and women who lay down their lives for ea… +05/29/2018,Sports_celeb,@TheRock,RT @prattprattpratt: I did my Murph yesterday because i’m in Shanghai where yesterday is already tomorrow? (or something like that) we’ve b… +05/29/2018,Sports_celeb,@TheRock,@Ron_Clements @buffa82 @UnderArmour Awful? 😂 Well I can promise you we’re not that my friend. Nice profile pic. Fuck off 💁🏾‍♂️🖕🏾 +05/29/2018,Sports_celeb,@TheRock,Incredible day for our first signature series @UnderArmour #ProjectRock1s - 100% sold out in 30min. It’s a smart tw… https://t.co/514lIwM45d +05/29/2018,Sports_celeb,@TheRock,"It’s Dwight you dickhead. Let’s get to work Jeff. + +Jokes aside, this one is truly going be an honor.… https://t.co/ONlPSKLofB" +05/28/2018,Sports_celeb,@TheRock,"Whoa. Blown away... +I got up at 4am (Hawaii time) today to launch my new signature series @UnderArmour… https://t.co/xFdLhHy1ng" +05/28/2018,Sports_celeb,@TheRock,"#ProjectRock1s AVAILABLE NOW 🔥 +My 1st signature series shoe from @underarmour. I’ve engineered & broken these down… https://t.co/72GR1N4B5a" +05/27/2018,Sports_celeb,@TheRock,Just when I thought I couldn’t be any more… https://t.co/fXdpUq5Vd2 +05/27/2018,Sports_celeb,@TheRock,@TheVenskus Papa? No. Daddy? Yes. Lol +05/27/2018,Sports_celeb,@TheRock,Just when I thought I couldn’t be any more… https://t.co/JbO0qQXCeZ +05/27/2018,Sports_celeb,@TheRock,@ChrisClarkNFL @UnderArmour You’ll dig these PR1’s for sure my man. The 15’s are large and wide. Not a narrow shoe… https://t.co/hWA1aCTPJl +05/27/2018,Sports_celeb,@TheRock,Leg day in my new @underarmour #ProjectRock1s… https://t.co/w5Mav66CJM +05/27/2018,Sports_celeb,@TheRock,Scroll left for the exclusive first look at my… https://t.co/YV6lUMi4Lk +05/27/2018,Sports_celeb,@TheRock,"We’re all in the same game, just different… https://t.co/923SoZjKmO" +05/26/2018,Sports_celeb,@TheRock,"Well I keep asking you out to join me for an amazing time eating dead cow and drinking tequila, but the “dead cow”… https://t.co/1PHMbgrAIz" +05/26/2018,Sports_celeb,@TheRock,"Love this. Have fun and tell the awesome birthday girl, Uncle Rock says “Have a blast on your birthday and go spend… https://t.co/N3HuNCuiYv" +05/26/2018,Sports_celeb,@TheRock,Here’s a breakdown of our 18month process on the development and engineering of my new signature sneaker. Pretty in… https://t.co/vpPZhox1oR +05/26/2018,Sports_celeb,@TheRock,"I’ve developed, trained in, broken down and refined this sneaker for over a year now. Highest of quality and durabi… https://t.co/wEZ9t96zOi" +05/26/2018,Sports_celeb,@TheRock,"This MONDAY we drop our new @UnderArmour #ProjectRock1s. +My first signature sneaker series from our CHASE GREATNES… https://t.co/Pa9aZsu8zO" +05/26/2018,Sports_celeb,@TheRock,"@johnreport @NatbyNature Your action figure looks way cooler, sexier & bad ass. Mine looks constipated and confused… https://t.co/svrXL9IQRH" +05/24/2018,Sports_celeb,@TheRock,Scroll left for the exclusive first look at my… https://t.co/mJD5DEIae9 +05/24/2018,Sports_celeb,@TheRock,And that’s saying A LOT cause your head is HUGE my friend @TheRossKing 😉🤙🏾. Always a good time chatting s you!… https://t.co/657lIG5hc2 +05/24/2018,Sports_celeb,@TheRock,Great time. Thank you for having me on your show! #Skyscraper https://t.co/z2Ap5sTmor +05/24/2018,Sports_celeb,@TheRock,"A lil’ taste of my new @UnderArmour PROJECT ROCK 1’s. +Been training in these and improving their quality for over… https://t.co/M0ZyfsnBh6" +05/24/2018,Sports_celeb,@TheRock,@toryshulman @skyscrapermovie @dailyblastlive Dude I wanted to cast you but what’s his name said no. Can’t remember… https://t.co/HMbtHGRgox +05/24/2018,Sports_celeb,@TheRock,"@HistoryofWrest Every Saturday night, I was at this show with my dad at the Portland Sports Arena. On Sunday’s the… https://t.co/bEnWyCuNTC" +05/23/2018,Sports_celeb,@TheRock,"I made a movie that pays homage to films that inspired me & a generation w/ grit, guts and heart - DIE HARD, THE TO… https://t.co/HI5Mku341r" +05/22/2018,Sports_celeb,@TheRock,"New full length SKYSCRAPER trailer drops tomorrow. +Most physical, emotional and intense role of my career. +I need… https://t.co/eKlQpsYeS1" +05/22/2018,Sports_celeb,@TheRock,"RT @EWagmeister: Another day, another piece of news coming from @TheRock’s world! + +DJ & his @SevenBucksProd business partner @DanyGarciaCo…" +05/22/2018,Sports_celeb,@TheRock,My main objective is to always make movies for the world to enjoy. And now that fun movie going experience extends… https://t.co/1AIdAdrwqI +05/22/2018,Sports_celeb,@TheRock,RT @Variety: Dwayne @TheRock Johnson and @DanyGarciaCo are bringing more high-wattage Hollywood electricity to Atom Tickets' advisory board… +05/21/2018,Sports_celeb,@TheRock,@JerryJarrett @TheJimCornette @HistoryofWrest I wish I did remember that Jerry! Dad always spoke highly of you and… https://t.co/WSDa0w7gUs +05/21/2018,Sports_celeb,@TheRock,A lil’ taste of my new SKYSCRAPER trailer debuting THIS WEDNESDAY! #SKYSCRAPER https://t.co/1UWy8lDVe5 +05/20/2018,Sports_celeb,@TheRock,@AdrianneCurry @TheMatthewRhode @jumanjimovie @skyscrapermovie Do it dude!! Thats the kind of deal where there are… https://t.co/C3fwz0vTlF +05/20/2018,Sports_celeb,@TheRock,"@robcorddry @hwinkler4real Dear Rob, I signed an autograph pic for Henry and it should be arriving this week into h… https://t.co/jxc3ld1nOY" +05/20/2018,Sports_celeb,@TheRock,"Saturday night doc viewing. +@thenotoriousmma… https://t.co/byQCyyIrSX" +05/20/2018,Sports_celeb,@TheRock,We’re gonna have times in our lives where we… https://t.co/YcF8eCjTiJ +05/20/2018,Sports_celeb,@TheRock,It’s a success philosophy thats worked very well… https://t.co/wr0ik4wlqn +05/20/2018,Sports_celeb,@TheRock,Thank you @lakers for having me speak to the… https://t.co/IXjvyhDV9K +05/20/2018,Sports_celeb,@TheRock,Just stopping in to show my appreciation and… https://t.co/bTS525qeB8 +05/20/2018,Sports_celeb,@TheRock,@chrissyteigen See baby you’re doing great!! @LaurenHashian 😉👍🏾 +05/20/2018,Sports_celeb,@TheRock,@Crockettfroggy @Goldust @Zelina_VegaWWE @JoeDiffieOnline Sheeeeyat am I a Joe Diffie fan? “If you want me to” is o… https://t.co/bU5gaNghgS +05/20/2018,Sports_celeb,@TheRock,@HistoryofWrest You can actual FEEL the tension and energy in the arenas across the country in the 70’s during matc… https://t.co/ZkaY20gGuw +05/20/2018,Sports_celeb,@TheRock,@Goldust @Zelina_VegaWWE Congrats brother. Proud of you (still remember us listening to ol’ Joe Diffie on the bus on the Germany tour;) +05/20/2018,Sports_celeb,@TheRock,@SMUheavyweight @OldWrestlingPic the original oooooh yeah! +07/08/2015,Sports_celeb,@kawhileonard,RT @GoAztecsFacOps: Had a special guest today at the @GoAztecs Jeff Jacobs #JAMCenter. Thanks for stopping by @kawhileonard ! #AztecMBB htt… +07/07/2015,Sports_celeb,@kawhileonard,Custom swag board #KL2 edition. Gear coming soon. http://t.co/Souo2K8Z7D +04/04/2015,Sports_celeb,@kawhileonard,You don’t have to be a golfer to have fun at @topgolfsat! #golf #SanAntonio #TopgolfVIP http://t.co/SoB4A54tpL +01/13/2015,Sports_celeb,@kawhileonard,One of my greatest experiences http://t.co/MiuGPv5Iin +06/26/2018,Sports_celeb,@StephenCurry30,First episode of my #5MinutesFromHome series is now live on YouTube. @RudyMancuso and I record a fire track in the… https://t.co/UKVzYUdt4h +06/26/2018,Sports_celeb,@StephenCurry30,RT @NickSwagyPYoung: Why y’all so mad enjoy life +06/24/2018,Sports_celeb,@StephenCurry30,"RT @sydelcurry: Tonight. 8/7C familyfeudabc @abcnetwork!! So excited for y’all to see it. So much funnnn! • +• +• +Seth was injured the weeken…" +06/24/2018,Sports_celeb,@StephenCurry30,@LeVelleMoton Woah I see you coach! It’s Officially golf season you know I’m ready whenever +06/24/2018,Sports_celeb,@StephenCurry30,It’s going down tonight on @FamilyFeudABC with my family. Thanks @IAmSteveHarvey for having us. Comes on 8/7C! https://t.co/SJodiLhPsO +06/21/2018,Sports_celeb,@StephenCurry30,@crgilbert @ayeshacurry @EatAtSmoke Wow! Who am I? 2 orders of that +06/21/2018,Sports_celeb,@StephenCurry30,Hey @ayeshacurry. Guess I’ll have @EatAtSmoke in Houston 2 Myself twice next year 🤷🏽‍♂️. More Ribs and Shellfish an… https://t.co/E04vutqbcr +06/20/2018,Sports_celeb,@StephenCurry30,6 days to go! #5MinutesFromHome dropping June 26. https://t.co/K9c4XJZ0L9 +06/20/2018,Sports_celeb,@StephenCurry30,@L_Smith_23 Louder than the silence - quieter than the noise bro! I don’t understand this nonsense. Sending supplie… https://t.co/ZGrkunzB4s +06/15/2018,Sports_celeb,@StephenCurry30,RT @DevonteeWOE: my first single #BLESS out everywhere now! LINK… https://t.co/FFykfp4a40 +04/19/2018,Sports_celeb,@StephenCurry30,"I can’t imagine what Coach Popovich is going through, but I am lifting up prayers you and your family. 🙏🏽 https://t.co/PMezvqWlcL" +04/14/2018,Sports_celeb,@StephenCurry30,That time again! . #dubnation https://t.co/j5AgmELk5c +04/13/2018,Sports_celeb,@StephenCurry30,🚨 Restock alert 🚨 https://t.co/jk45wzhKFU +04/13/2018,Sports_celeb,@StephenCurry30,"RT @stockx: Today is your last chance to enter! Don't miss out on your chance at game-worn, signed sneakers from @StephenCurry30 for just…" +04/11/2018,Sports_celeb,@StephenCurry30,I’m partnering with @StockX to give you all a shot at owning the 1-of-1 @MBK_Alliance Curry 4’s I wore against the… https://t.co/Pc3dhNO74m +04/11/2018,Sports_celeb,@StephenCurry30,RT @SportsCenter: From 10 years in the G League to 19 points and MVP chants as a Laker https://t.co/j1e8gv6B3H +04/04/2018,Sports_celeb,@StephenCurry30,😎 #DubNation +04/01/2018,Sports_celeb,@StephenCurry30,Please send up prayers thoughts love to my guy @PMcCaw0! God please heal his body and keep him strong! +03/27/2018,Sports_celeb,@StephenCurry30,Psalm 27:13-14 I remain confident of this: I will see the goodness of the LORD in the land of the living. Wait for… https://t.co/LBfkCr7aAS +03/24/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +03/23/2018,Sports_celeb,@StephenCurry30,Running drills and having fun tonight with @Chase customers during the 🏀 clinic @ULTFieldhouse! Thanks to my partne… https://t.co/TAnj5jkWHA +03/16/2018,Sports_celeb,@StephenCurry30,@babyboypoverty 😎 +03/16/2018,Sports_celeb,@StephenCurry30,@DavidDTSS I was in the mood too! https://t.co/Hmz70bH4Zz +03/16/2018,Sports_celeb,@StephenCurry30,@KAzubuike7 Boooooo that +03/16/2018,Sports_celeb,@StephenCurry30,Tough one down the stretch but that fight is what makes @DavidsonMBB special. Congrats to Coach McKillop on his 29t… https://t.co/Mv5vvBY61E +03/15/2018,Sports_celeb,@StephenCurry30,@Money23Green #ruiningthegame +03/15/2018,Sports_celeb,@StephenCurry30,The world is an incredible place. We blew past $30K so why not triple it? Can we hit $90K?! 👉🏼… https://t.co/wScXEN2nHK +03/15/2018,Sports_celeb,@StephenCurry30,It’s a big birthday so let’s make a big impact. Can we hit $30K for @nothingbutnets?! 👉🏼https://t.co/BdZXvomtnT👈🏼 https://t.co/zeTNKCrieI +03/10/2018,Sports_celeb,@StephenCurry30,#DubNation +03/08/2018,Sports_celeb,@StephenCurry30,You get uglier every year 😂😂😆. Happy birthday! Yannnnn! https://t.co/eallYrmfMa +03/03/2018,Sports_celeb,@StephenCurry30,It’s a Great Day to Be a Wildcat! https://t.co/4boShlYNp3 +03/01/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/27/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/26/2018,Sports_celeb,@StephenCurry30,@andrewbogut Can we start the #BogutBookClub?? What book is that? +02/26/2018,Sports_celeb,@StephenCurry30,He’s working on getting his Win % up to NBA average FG%. Congrats bro! https://t.co/a8eWNXCkcj +02/25/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/24/2018,Sports_celeb,@StephenCurry30,RT @VanJones68: TONIGHT!!! 7pm ET & 4pm PT west coast on @cnn. @NBA champion @StephenCurry30 on the #VanJonesShow ... SET YOUR DVR NOW! ...… +02/23/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/22/2018,Sports_celeb,@StephenCurry30,1/2 of @ayeshacurry is so mad right now that we just beat Canada on the ICE! 😂😂😂😂😂😂😂😂😂😂😂😂😂😂 +02/22/2018,Sports_celeb,@StephenCurry30,RT @JForsett: Let’s Go!!! #USA https://t.co/v0yZ5nuKxa +02/22/2018,Sports_celeb,@StephenCurry30,USA!! USA!!! 🇺🇸 🏒 +02/13/2018,Sports_celeb,@StephenCurry30,Get that gooseneck wrist pointed down and you got it! Need you to return the favor on the lacrosse field sometime https://t.co/gTX1IovreG +02/09/2018,Sports_celeb,@StephenCurry30,"RT @MuscleMilk: Enter our #YearOfYou Sweepstakes for a chance to win the gear you need to make your 2018 goals a reality. +https://t.co/2AZ…" +02/08/2018,Sports_celeb,@StephenCurry30,"Hey @MalcolmJenkins, they should have given you some glasses with that 🎤. I rep the @RedhawksAD. But appreciate the… https://t.co/N5E4Fko2NS" +02/03/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +01/30/2018,Sports_celeb,@StephenCurry30,RT @MichaelRapaport: New episode of PLC ep-8 with @JaValeMcGee @StephenCurry30 @imanitrishawn_ and some dope cameos! GO WATCH! https://t.co… +01/28/2018,Sports_celeb,@StephenCurry30,Stay strong @boogiecousins and Andre Roberson! Prayers your way for a strong recovery 🙏🏽 +01/25/2018,Sports_celeb,@StephenCurry30,Yeah I’d have to say that was legit! #nextyear https://t.co/fj4flo8lgq +01/25/2018,Sports_celeb,@StephenCurry30,"Today is something else. @TigerWoods is back on the course, @NBAAllStar draft with #30K @KingJames, and it’s a game… https://t.co/nsXyR4sHMw" +01/20/2018,Sports_celeb,@StephenCurry30,https://t.co/ZdMjRklkja +01/18/2018,Sports_celeb,@StephenCurry30,"Captain huh? Really Appreciate all the votes from the fans, media and players! Honored to be an All-Star. TGBTG! https://t.co/rOpLsUx47T" +01/18/2018,Sports_celeb,@StephenCurry30,@gavmanj Uhhh. 0.1 seconds on the clock. Pretty smart way to end the Quarter if you ask me. But what do I know? I’d… https://t.co/6JFrHrwZXp +01/16/2018,Sports_celeb,@StephenCurry30,Introducing a new segment called “Never Seen it!” https://t.co/OLhRk6C59q +01/08/2018,Sports_celeb,@StephenCurry30,Solid year fellas! Loved the fight. #KeepPounding forever +01/08/2018,Sports_celeb,@StephenCurry30,First time I’m like yo! He didn’t catch that interception. No give it back! +01/08/2018,Sports_celeb,@StephenCurry30,I can’t believe this +01/07/2018,Sports_celeb,@StephenCurry30,Season pretty much down to this possession. Need 7 right now If we got any chance today- Brees is scary +01/07/2018,Sports_celeb,@StephenCurry30,Cam is locked in right now. Need the hands to wake up though. +01/07/2018,Sports_celeb,@StephenCurry30,Lets go @Panthers #KeepPounding https://t.co/lwHQlnvJ9H +01/05/2018,Sports_celeb,@StephenCurry30,Filtering out water bottles and showing my man @rudymancuso the right way to start the New Year. Thanks to… https://t.co/1oYjeoguHl +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes + +🌟 Stephen Curry #NBAVote 🌟 https://t.co/1JzDHIDhsI" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes + +🌟 Draymond Green #NBAVote 🌟 https://t.co/saRBN0OxLY" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes 👐🏽 + +Kevin Durant ⭐️ #NBAVote https://t.co/ihUAwWJ01J" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes 👌🏽 + +Klay Thompson ⭐️ #NBAVote https://t.co/dSRZQQ05j7" +01/05/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +01/04/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +12/31/2017,Sports_celeb,@StephenCurry30,The NEW @UnderArmour #Curry4 Low benefits @nothingbutnets. Each pair sold sends a life-saving bed net. Don't miss i… https://t.co/WBDUXY2qLb +12/31/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +12/30/2017,Sports_celeb,@StephenCurry30,The comeback is always stronger than the setback.  S/o @DegreeMen #AD https://t.co/TzL16Tf7LR +12/27/2017,Sports_celeb,@StephenCurry30,"#WeAreTheOnes...Learn how to help young people fulfill their potential, regardless of circumstance at… https://t.co/MmZirdKziA" +12/24/2017,Sports_celeb,@StephenCurry30,Yeaahhhhhhhhhh Boy! Found a way today baby. We are going to be dangerous in the post season. And I’m all here for it! #KeepPounding +12/23/2017,Sports_celeb,@StephenCurry30,RT @warriors: Good to have you back on the court @money23green 💪🏽 #DubNation https://t.co/D9vxjq2nLE +12/21/2017,Sports_celeb,@StephenCurry30,Somebody is having a great game! https://t.co/0RiWEzgwyQ +12/19/2017,Sports_celeb,@StephenCurry30,End this......! +12/19/2017,Sports_celeb,@StephenCurry30,I️ concur https://t.co/RynrCCoTWK +12/19/2017,Sports_celeb,@StephenCurry30,Thanks @uograd66 https://t.co/ITBS8UHWuA +12/19/2017,Sports_celeb,@StephenCurry30,Wish I could be there tonight. Congrats @kobebryant. #Ko8e24 https://t.co/a98uiRpP8k +12/18/2017,Sports_celeb,@StephenCurry30,"RT @MySportsUpdate: Clay Matthews: It's that wheel route, it's that wheel route + +Cam Newton: You been watching film, huh? + +Matthews: Yeah…" +12/18/2017,Sports_celeb,@StephenCurry30,I️ want in! https://t.co/XvvC1vo7xI +12/15/2017,Sports_celeb,@StephenCurry30,Get buckets!!! 👌🏽 https://t.co/ho9uThnA6h +12/15/2017,Sports_celeb,@StephenCurry30,💪🏽💪🏽💪🏽 https://t.co/KQ6Nspjfv3 +12/15/2017,Sports_celeb,@StephenCurry30,Keep up the good work! 👏🏽👏🏽👏🏽 https://t.co/f78uS7xsq6 +12/14/2017,Sports_celeb,@StephenCurry30,🎄🏀 https://t.co/5e5o3c7SZR +12/11/2017,Sports_celeb,@StephenCurry30,Well said bro! Finding the purpose and plan in everything. All things work together...ROM 8:28 #respect https://t.co/dhCJVxzCEH +12/09/2017,Sports_celeb,@StephenCurry30,Trucking around the Bay looking for gyms to drop into. Got some goodies for #DubNation and looking to hear from you… https://t.co/h47EUq0IMi +12/09/2017,Sports_celeb,@StephenCurry30,These boys playing some basketball!!! Big Mo going to the 4th +12/09/2017,Sports_celeb,@StephenCurry30,👀 @KDTrey5 +12/08/2017,Sports_celeb,@StephenCurry30,Traveling back to the Bay haven’t been able to see the show yet but heard @ayeshacurry killed the… https://t.co/T5ZWx3BroO +12/03/2017,Sports_celeb,@StephenCurry30,This year I’m participating in the #HourOfCode challenge! Tweet your @codeorg creation and a class photo. Tag me &… https://t.co/z0p873kZXh +11/30/2017,Sports_celeb,@StephenCurry30,The wait is over. The wait is over. @TigerWoods +11/28/2017,Sports_celeb,@StephenCurry30,RT @sdotcurry: I appreciate all your support as you all motivate me to get back ASAP. I do want to do my part on (cont) https://t.co/thRCvK… +11/25/2017,Sports_celeb,@StephenCurry30,"Appreciate the #DubNation love from Florida. I’ve got something in store for you when you come to the game, can’t w… https://t.co/ta6WTSnXFb" +11/22/2017,Sports_celeb,@StephenCurry30,@JaValeMcGee34 Soon.....! https://t.co/cyfWQcXViu +11/21/2017,Sports_celeb,@StephenCurry30,"No days off with @DegreeMen Deordorant. The more you move, the more it works. #ad https://t.co/RqZtaxQgDT" +11/21/2017,Sports_celeb,@StephenCurry30,Appreciate the love tonight! @jimmyfallon vibez. Tune in! https://t.co/9WFZMp8e2h +11/21/2017,Sports_celeb,@StephenCurry30,#DubNation in NYC 🤓 https://t.co/lmMkErBdhW +11/12/2017,Sports_celeb,@StephenCurry30,RT @cloud_surferrr: When you were born and raised in the South and somebody says “oh you don’t have to say yes ma’am/no ma’am to me” https:… +11/11/2017,Sports_celeb,@StephenCurry30,"As we celebrate Veterans today, let us be louder than all of this silence — and quieter than all of this noise. + +https://t.co/xUMtcf8Tbm" +11/09/2017,Sports_celeb,@StephenCurry30,#SC30 x @Xbox collab alert! 🚨🚨 https://t.co/NXHWioFwwS +11/08/2017,Sports_celeb,@StephenCurry30,Let’s gooooooo https://t.co/ZnKAV6Aym2 +11/08/2017,Sports_celeb,@StephenCurry30,So much love!!!! https://t.co/0zQqgoq5AS +11/05/2017,Sports_celeb,@StephenCurry30,Cam out there dunking on people now? I’ll have to ask him what that feeling is like later #iplaybelowtherim +11/03/2017,Sports_celeb,@StephenCurry30,RT @ayeshacurry: Well! Here we go! international goes to Houston! coming 2018 https://t.co/AAUg0a4bZX +11/02/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +11/02/2017,Sports_celeb,@StephenCurry30,I wonder if Steve’s Bike shop is hiring... +10/31/2017,Sports_celeb,@StephenCurry30,Please help me understand this madness.... https://t.co/lds3DE9ujf +10/31/2017,Sports_celeb,@StephenCurry30,@juliephayer “Game Over” +10/30/2017,Sports_celeb,@StephenCurry30,RT @MarcJSpearsESPN: The story of how and why Warriors star @KlayThompson used his scoring to aid the Bay Area's firestorm victims. https:/… +10/30/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/29/2017,Sports_celeb,@StephenCurry30,"Hello, I want to play a game. #Jigsaw #DubNation https://t.co/cvl6F3cIQc" +10/28/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/27/2017,Sports_celeb,@StephenCurry30,Shoutout to my man #kortneumann on killing the design of the #Curry4. It was great collaborating with you my man. R… https://t.co/WG8x61c0LA +10/24/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/22/2017,Sports_celeb,@StephenCurry30,No excuse for that! Gotta remember who I am playing for... +10/21/2017,Sports_celeb,@StephenCurry30,@Richie_Lombardi @UAbasketball Yeah I might have to cut copy and paste those into my closet! 🔥 +10/21/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/19/2017,Sports_celeb,@StephenCurry30,@JOHNNYSWIM #INeedMeSomeHome https://t.co/fZxK61YWtG +10/18/2017,Sports_celeb,@StephenCurry30,At least the first part of the night we were smiling! 💍💍. On to the next! https://t.co/MXvepDxI29 +10/18/2017,Sports_celeb,@StephenCurry30,🙏🏽🙏🏽 For @gordonhayward. Come back stronger! +10/18/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation 💍 +10/17/2017,Sports_celeb,@StephenCurry30,Getting off to a FRESH start this season with @DegreeMen Deodorant #AD. https://t.co/8fduOcdEwo +10/16/2017,Sports_celeb,@StephenCurry30,Finally got to see the @Chase #GoldenVictoryBall in action today during the court refurb at Bushrod Park! Check it… https://t.co/PEqs235Mjz +10/10/2017,Sports_celeb,@StephenCurry30,There’s more to me than my numbers. It's why I choose @INFINITIUSA. Life's an experience not a stat sheet.… https://t.co/DSb3SyRRoo +10/09/2017,Sports_celeb,@StephenCurry30,My partners @Chase are sending the #GoldenVictoryBall your way tomorrow!! Stop by and take a pic. https://t.co/dbw1HFKxyj +10/08/2017,Sports_celeb,@StephenCurry30,I could get used to this! (📸 @cassyathena) https://t.co/z6O5Wos33v +10/07/2017,Sports_celeb,@StephenCurry30,RT @Essence: .@ayeshacurry's debut cookware line has arrived. Here's what we're buying from it: https://t.co/7jxh8SPycG https://t.co/ELr2cN… +10/01/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation 9️⃣ +09/26/2017,Sports_celeb,@StephenCurry30,"RT @30for30: He sacrificed his life to save others. + +Our latest ESPN Film, #24Strong - the story of Zaevion Dobson, airs Thurs. at 7:30 ET…" +09/25/2017,Sports_celeb,@StephenCurry30,RT @DavidDTSS: .@StephenCurry30 still repping. Go Season Some Food. Get familiar. https://t.co/Asq7xMH6BA https://t.co/g5pOjBirMx +09/24/2017,Sports_celeb,@StephenCurry30,@Lanny_Smith We should Keep a running scoreboard! Ones with Steven count as double +09/22/2017,Sports_celeb,@StephenCurry30,@DJRadar24 @ayeshacurry Louder +09/22/2017,Sports_celeb,@StephenCurry30,RT @lecrae: My new album 'All Things Work Together' is out now everywhere 🙏🏾 #ATWT https://t.co/gnWRS6pPFU https://t.co/pss5pKmwtV +09/21/2017,Sports_celeb,@StephenCurry30,Salute to @andreward on checking off everything he ever wanted to do in the ring. #missionaccomplished https://t.co/9W674kzRlu +09/20/2017,Sports_celeb,@StephenCurry30,@aef83 @UnderArmour That’s about the same face I make when I open my own pair! +09/19/2017,Sports_celeb,@StephenCurry30,That sunshine expensive #blessings +09/18/2017,Sports_celeb,@StephenCurry30,"RT @DavidDTSS: AND. WE. ARE. LIVE. + +https://t.co/aqzqrFUOgP" +09/17/2017,Sports_celeb,@StephenCurry30,RT @MrAnthonyMorrow: Our Defense is looking Top 1 or 2 in the league again the past two weeks @Panthers ✊🏾✊🏾🙌🏾🙌🏾 +09/17/2017,Sports_celeb,@StephenCurry30,I'm nice with the right foot though...thanks to @chelseafc for having me at Stamford Bridge today. ⚽️ https://t.co/BtIZTmt5Xz +09/12/2017,Sports_celeb,@StephenCurry30,The UA Family welcomes another champ 🏆 to the sqUAd. Congrats @SloaneStephens. It was a victory #UnlikeAny. #TeamUA https://t.co/UR1B14tGD4 +09/10/2017,Sports_celeb,@StephenCurry30,"This was fun! Me vs. My Daughter on the track. @infinitiusa Q50 for the win. +#RoadOfHerDreams #ad https://t.co/xBp7QFGwru" +09/05/2017,Sports_celeb,@StephenCurry30,RT @SoleCollector: See what @StephenCurry30 fans are creating on the UA Icon platform: https://t.co/s3gxl6e6KQ https://t.co/EDpw3gLYs3 +09/03/2017,Sports_celeb,@StephenCurry30,New vibez w/ @lawrencetheband thank me later! https://t.co/YmfJ2Upqq0 https://t.co/YmfJ2Upqq0 +08/28/2017,Sports_celeb,@StephenCurry30,RT @CNN: Here are a few ways you can help the people affected by Hurricane Harvey https://t.co/8A08k10kvN https://t.co/26cfSvjwdP +08/28/2017,Sports_celeb,@StephenCurry30,Prayers up for Houston! Many fam and friends living there. Don’t really know what to say in times like these but hope we can help somehow! +08/25/2017,Sports_celeb,@StephenCurry30,"Thanks to @PSG_inside for having me out to see the win! What a wild, crazy environment to be part of.… https://t.co/dVARZbEtAx" +08/19/2017,Sports_celeb,@StephenCurry30,@LetsGoWarriors DM me the group code! Let’s Go! +08/16/2017,Sports_celeb,@StephenCurry30,Work! https://t.co/0nNKU4qrqj +08/16/2017,Sports_celeb,@StephenCurry30,Hyped The Players Technology Summit is finally here - thanks to @Bloomberg and everyone that made it happen. https://t.co/sZJKaUAYKN +08/15/2017,Sports_celeb,@StephenCurry30,👏🏽👏🏽💪🏽✌🏽 +08/09/2017,Sports_celeb,@StephenCurry30,".@Dennis1SmithJr welcome to the sqUAd, bro. Let's get it!! #TeamUA https://t.co/ofc8YFw5Eb" +08/09/2017,Sports_celeb,@StephenCurry30,"RT @JordanMcCabe5: Special thanks to @stephencurry30 and @UAassociation for the great event this week, best experience so far. #SCSelect #B…" +08/09/2017,Sports_celeb,@StephenCurry30,@MaallyMall @UnderArmour These are 🔥 +08/08/2017,Sports_celeb,@StephenCurry30,#BayArea come 👀 the Top H.S. players in the 🌏at Kezar Pavilion tmrw at 6PM. The Showcase airs live @9PM EST #ESPNU.… https://t.co/9LsHxSPVon +08/04/2017,Sports_celeb,@StephenCurry30,@andre 75 BPM is da gawd! +08/04/2017,Sports_celeb,@StephenCurry30,@wheatiePGA @notthefakeSVP Hell hath frozen over 😂 +08/04/2017,Sports_celeb,@StephenCurry30,@24Bazemore We’ve all been doubted before ya heard me! #499 +08/04/2017,Sports_celeb,@StephenCurry30,@webbsimpson1 Thanks my man! You guys have an extremely tough day job. +08/04/2017,Sports_celeb,@StephenCurry30,RT @ayeshacurry: Word of the day! A person should never be subjected to being just one thing! #noceilings live your dreams! Believe in YOUR… +08/03/2017,Sports_celeb,@StephenCurry30,I remember 2011 in Winston playing with you! We both got wayyyy better https://t.co/ir0NVS7f4j +08/01/2017,Sports_celeb,@StephenCurry30,"Nothing quite like the sound of the ball on the asphalt, or the engine revving on the road ahead. S/O to #INFINITI… https://t.co/du670Xddzb" +07/27/2017,Sports_celeb,@StephenCurry30,"When you've got the range, you gotta have the right kicks. #SC30AsiaTour @uabasketball https://t.co/qQ1olgWeDq" +07/26/2017,Sports_celeb,@StephenCurry30,Chengdu sqUAd. #SC30AsiaTour https://t.co/xr4M7aa4Gb +07/24/2017,Sports_celeb,@StephenCurry30,"Made my ""acting"" debut on @BallersHBO Season 3. Check me out Sunday, July 23 at 10pm ET on @HBO. https://t.co/h88SQo8Jxz" +07/24/2017,Sports_celeb,@StephenCurry30,It's my first time in Chengdu and it's already an unforgettable experience. #SC30AsiaTour https://t.co/R7ID8H7Mq2 +07/23/2017,Sports_celeb,@StephenCurry30,Just putt it and turn around and walk to the next hole next time sheesh Jordan! +07/23/2017,Sports_celeb,@StephenCurry30,Issa Eagle!!!!! +07/23/2017,Sports_celeb,@StephenCurry30,Issa 🦅 +07/23/2017,Sports_celeb,@StephenCurry30,“Are you not entertained???” @JordanSpieth +07/22/2017,Sports_celeb,@StephenCurry30,No days off in Beijing. #SC30AsiaTour https://t.co/sGLSrYCYAL +07/20/2017,Sports_celeb,@StephenCurry30,"Getting shots up, even at my #INFINITI #Q50 commercial shoot! More to come. https://t.co/wtNl1ys5Hw" +07/16/2017,Sports_celeb,@StephenCurry30,🏌🏽in Tahoe! @jtimberlake @tonyromo 📷:: Jeff Bayer https://t.co/RNgvKMrrus +07/12/2017,Sports_celeb,@StephenCurry30,RT @NBASummerLeague: Wait for it... @1jordanbell!!! #NBASummer https://t.co/mBmfsepJlL +07/12/2017,Sports_celeb,@StephenCurry30,That time of year for @SDotcurry! https://t.co/x93DLgbybk https://t.co/dA1nYVqqNl +07/12/2017,Sports_celeb,@StephenCurry30,@CamGo_Ham @Cal_Baseball 👀 can do something about that! +07/07/2017,Sports_celeb,@StephenCurry30,Nothing easyyyyyyyyyy!!!! +07/04/2017,Sports_celeb,@StephenCurry30,Talk about him! Shakespeare says there’s sermons in stones @KDTrey5. +06/28/2017,Sports_celeb,@StephenCurry30,@bryantabarr @ACChampionship Yes We will have a performance review after Tahoe! Lights will be really bright gotta see how we respond +06/28/2017,Sports_celeb,@StephenCurry30,obviously want to play well & see how I handle tournament golf. No expectations except keep ball out of the gallery and not go Happy Gilmore +06/28/2017,Sports_celeb,@StephenCurry30,Supporting great cause & want all of the Bay Area comes out 2 watch these guys go low all week! @GSWfoundation does Great work for the Bay! +06/28/2017,Sports_celeb,@StephenCurry30,People asking why I’m playing. Unexpected invite & Always a dream 2 play golf w/ the pros. @WebDotComTour has so much talent it’s unreal. +06/28/2017,Sports_celeb,@StephenCurry30,"Honored to play in the @elliemaeclassic to support the +@gswfoundation! 1st experience inside the ropes! Come on out +@webdotcomtour +@pgatour" +06/27/2017,Sports_celeb,@StephenCurry30,Shout out to @Money23Green for that DPOY award! Well deserved bro! https://t.co/UUUGwu61dX +06/25/2017,Sports_celeb,@StephenCurry30,Game! Blouses! @JordanSpieth with the hole-out from the bunker to win it! Congrats bro +06/22/2017,Sports_celeb,@StephenCurry30,"Welcome to the @UABasketball family Josh! Excited to have you on the squad. You don't need it but, good luck tomorr… https://t.co/Ckvr05AnrE" +06/20/2017,Sports_celeb,@StephenCurry30,"""We gon be Shampionship!"" https://t.co/nHQgI4rfyP" +06/20/2017,Sports_celeb,@StephenCurry30,"Week old but man, still everything! #dubnation https://t.co/Gq926MMitx" +06/19/2017,Sports_celeb,@StephenCurry30,".@andre + I just announced the launch of the first The Players Technology Summit, presented by Bloomberg.… https://t.co/UXATnUWSCB" +06/19/2017,Sports_celeb,@StephenCurry30,Lost art! Don’t rush the development https://t.co/HIKWc6kArb +06/18/2017,Sports_celeb,@StephenCurry30,RT @bryantabarr: Mood. #WardKovalev2 #TeamSOG https://t.co/5c1HYk3l4P +06/15/2017,Sports_celeb,@StephenCurry30,And we Back! https://t.co/HQjjumvJb2 +06/14/2017,Sports_celeb,@StephenCurry30,#DubNation https://t.co/tY0eZODep5 +06/13/2017,Sports_celeb,@StephenCurry30,RT @andre: Shot out to P McCaw... man that ninja nice!!!! +06/13/2017,Sports_celeb,@StephenCurry30,Glory to God! https://t.co/5nlTXUObqp +06/13/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/10/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/08/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/05/2017,Sports_celeb,@StephenCurry30,"RT @scott_fowler: If you're @DavidsonWildcat fan, congrats -- you're having a heckuva moment/week/month! @dcbaseball_ @StephenCurry30 https…" +06/02/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +05/07/2017,Sports_celeb,@StephenCurry30,"Celebrating the Champ, congrats @anthonyfjoshua! #IWILL https://t.co/KtL1K6ASr5" +05/07/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/27/2018,Sports_celeb,@AntDavis23,NOLA! You're up next. Spots are going quickly for my camp July 30th and 31st. Sign up now at https://t.co/X61ECIXLHO https://t.co/kdBkzLFdIx +06/23/2018,Sports_celeb,@AntDavis23,It’s been 6 years since I heard my name called in the NBA Draft. So here’s 6 tips for all the rookies who just got… https://t.co/YJEDEbPVTB +06/23/2018,Sports_celeb,@AntDavis23,🏀☀️ #GoHoopDay https://t.co/6SNHvX50ao +06/21/2018,Sports_celeb,@AntDavis23,Shout out to all the draftees tonight. Enjoy the ride! #TBT #NBADraft https://t.co/FY4HcubfLN +06/19/2018,Sports_celeb,@AntDavis23,Felt great to be back in Kentucky last weekend. Can't wait to do it again in New Orleans next month! Sign up at… https://t.co/onUS6YIAZU +06/15/2018,Sports_celeb,@AntDavis23,@MiaPulliam @Floyds99 I did not get a cut there. Just checked out the mural. +06/12/2018,Sports_celeb,@AntDavis23,Had a great time with the kids in Chicago last weekend. Can’t wait to do it again at camp this weekend in Lexington… https://t.co/QOknAu0fX8 +06/08/2018,Sports_celeb,@AntDavis23,Lexington! We're one week away from camp. Have you signed up yet? https://t.co/X61ECIXLHO https://t.co/zbu1CbXkiW +06/06/2018,Sports_celeb,@AntDavis23,Got to check out @SuperflyMovie last night. Go see it June 13th! https://t.co/kAV1k7WRpR +06/05/2018,Sports_celeb,@AntDavis23,"I’m bring my A-game to camp, are you? Register at https://t.co/X61ECIXLHO https://t.co/tgtS6caeM0" +06/01/2018,Sports_celeb,@AntDavis23,RT @AntDavis23: LEXINGTON KENTUCKY!! Spots are going quick for my camp on June 15th-16th! Make sure you sign up soon at https://t.co/X61ECI… +05/24/2018,Sports_celeb,@AntDavis23,LEXINGTON KENTUCKY!! Spots are going quick for my camp on June 15th-16th! Make sure you sign up soon at… https://t.co/cNjmXZvGGI +05/22/2018,Sports_celeb,@AntDavis23,Congrats to my lil bro @romeo_weems_0 on rocking with DePaul and Tim Anderson. #family #Trendsetter +05/22/2018,Sports_celeb,@AntDavis23,Calling all kids in NOLA and Lexington!! Who wants to put in work with me? Happy to announce registration for my ca… https://t.co/w64bEvu4wT +05/14/2018,Sports_celeb,@AntDavis23,Me and @Mobil1 Annual Protection under your hood?! Now that is protection! #Go20K #Mobil1 https://t.co/dx0R83s44h +05/11/2018,Sports_celeb,@AntDavis23,Thank you @PelicansNBA fans for riding with us all year. We'll be back. https://t.co/2RHACbeP6u +04/22/2018,Sports_celeb,@AntDavis23,On to the next. #DoItBigger https://t.co/5jrtbgZmV1 +04/18/2018,Sports_celeb,@AntDavis23,Bringing it back home. https://t.co/69eXGYRscp +04/18/2018,Sports_celeb,@AntDavis23,Nice pass AD!!! Lol https://t.co/qwCCXNTaRk +04/11/2018,Sports_celeb,@AntDavis23,Game 82....Make em all count! #DoItBigger https://t.co/ec39gyqJm9 +04/03/2018,Sports_celeb,@AntDavis23,Pumped to be a new member of the @Mobil1 team! We’ve got some great stuff coming your way so stay tuned to see why… https://t.co/iW0V2Aky6H +04/01/2018,Sports_celeb,@AntDavis23,Come on y'all!! Y'all knew I wasn't cutting it lol. #AprilFools We got ya!! @redbull https://t.co/l4H63aOEAW +03/31/2018,Sports_celeb,@AntDavis23,"The people have spoken, time for a little change... https://t.co/i5GiGdMei9" +03/28/2018,Sports_celeb,@AntDavis23,Should I shave my brow? +03/21/2018,Sports_celeb,@AntDavis23,Some Wednesday Brow-ketology: Sorry Sister Jean… Kansas State.. and Nevada.. 8 championships > 0. See you in the Fi… https://t.co/CHi2IrSlGD +03/16/2018,Sports_celeb,@AntDavis23,Incredibly sad news yesterday to hear of the passing of Mr Benson. Mr Benson has meant so much to this city & to my… https://t.co/DU9gdOvW6w +03/15/2018,Sports_celeb,@AntDavis23,It's Tourney Time....#BBN 🔵 https://t.co/9wujPn7jP3 +03/14/2018,Sports_celeb,@AntDavis23,Let me teach yall a thing or two about cutting down those nets…Let’s goo @KentuckyMBB #BBN @redbull #GivesYouWings https://t.co/xnKvij2Y4J +03/06/2018,Sports_celeb,@AntDavis23,the WHOLE squad up in here 💯 #DoItBig https://t.co/eHQwNzi18X +02/28/2018,Sports_celeb,@AntDavis23,I probably should have noticed that the maintenance guy was 6'9... #gotme @redbull https://t.co/g64PuMaxNT +02/21/2018,Sports_celeb,@AntDavis23,"If you gonna get pranked, may as well be by a Hall of Famer! My man @TheDeliverer_32 still got it! Gonna have to ge… https://t.co/OtUxVWQL81" +02/20/2018,Sports_celeb,@AntDavis23,"Not every network can keep up. But this weekend, we played ball in 5G… and it actually worked. @Verizon did not dis… https://t.co/airUtbvIaz" +02/19/2018,Sports_celeb,@AntDavis23,RT @NBAAllStar: #AnthonyDavis on wearing #DeMarcusCouins #NBAAllStar uni! https://t.co/P0m5guCN4b +02/18/2018,Sports_celeb,@AntDavis23,"A little trip down memory lane....Looking forward to tonight! +@RedBull #Givesyouwings https://t.co/E7uplpygP9" +02/18/2018,Sports_celeb,@AntDavis23,.@marriottrewards is offering epic experiences to #NBAAllStar – check it out: https://t.co/J3hosOD20N #membersgetit… https://t.co/LKkVJ7ZnAt +02/17/2018,Sports_celeb,@AntDavis23,Y’all got room for one more tonight?? 😂 #givesyouwings https://t.co/VbyayWRHiK +02/16/2018,Sports_celeb,@AntDavis23,Out here with @nbacares at LA Food Bank! https://t.co/2LPtoztHVf +02/14/2018,Sports_celeb,@AntDavis23,Who needs relationship advice this #ValentinesDay? The Master of Rejection is here to assist you in the game of lov… https://t.co/Z2TtUKxKjc +02/13/2018,Sports_celeb,@AntDavis23,Create the position that can’t be defined. #MakersOfTheGame https://t.co/hXA1xQ5EqW +02/04/2018,Sports_celeb,@AntDavis23,Who you got?? #SBLII +01/31/2018,Sports_celeb,@AntDavis23,Looking forward to meeting some @spg members at #NBAAllStar Check it out https://t.co/alrJTUVYSL +01/27/2018,Sports_celeb,@AntDavis23,My dawg!! Tough to see bro but I know you gonna come back stronger than ever. We gone hold it down for you!! #Pels… https://t.co/gjpKTYz5iH +01/24/2018,Sports_celeb,@AntDavis23,I'm Batman 😂😂 @SLAMonline https://t.co/9SsYUrezP3 +01/24/2018,Sports_celeb,@AntDavis23,"RT @SLAMonline: ⚜️ SLAM 214 is coming live from NOLA ⚜️ + +AD and Boogie got that work: https://t.co/PeCB14aF03 https://t.co/KccWFtpipx" +01/23/2018,Sports_celeb,@AntDavis23,My dawg!!!! https://t.co/WWiLL20bQH +01/19/2018,Sports_celeb,@AntDavis23,Humbled and blessed! Appreciate all the votes and support. Can't wait to suit up with my guy @boogiecousins and re… https://t.co/7ZxlarV8Pc +01/17/2018,Sports_celeb,@AntDavis23,Welcome to Scandyland!! https://t.co/FrWboyxX1n +01/15/2018,Sports_celeb,@AntDavis23,RT @TheNBPA: I Have A Dream. #PlayersVoice #MLK50 https://t.co/qDqu7xTYUc +01/15/2018,Sports_celeb,@AntDavis23,After hours at Il Mulino...... https://t.co/BXu4gjDdHL +01/04/2018,Sports_celeb,@AntDavis23,🔥🔥🔥 https://t.co/xYNRFBlcyd +12/28/2017,Sports_celeb,@AntDavis23,#25 https://t.co/edbep6BT0Z +12/26/2017,Sports_celeb,@AntDavis23,Hey NOLA! Christmas isn’t over just yet! I have a pair of tix to our home game tomorrow night vs the Nets to gift t… https://t.co/kWjvUCrtrW +12/26/2017,Sports_celeb,@AntDavis23,Merry Christmas yall!! 🎄 +12/24/2017,Sports_celeb,@AntDavis23,Squad! 🤘🏽🤘🏽 https://t.co/kD5hG8WInp +12/23/2017,Sports_celeb,@AntDavis23,"Since @boogiecousins, @rajonrondo, @DMillerKY & I will be out of town, @KentuckyMBB and @UKCoachCalipari are gonna… https://t.co/0m8z5nfi0j" +12/20/2017,Sports_celeb,@AntDavis23,I wanna hear about the work you’re doing in your communities this holiday season! Reply to this post and tell me ho… https://t.co/ddsVCxXZCz +12/18/2017,Sports_celeb,@AntDavis23,"As a @JrNBA Leadership Council Member, I’m excited to see kids from around the world compete in the… https://t.co/Bwt6gySHcD" +12/13/2017,Sports_celeb,@AntDavis23,My 4th annual holiday shopping spree!!🎄🎁🎅🏾 #SeasonOfGiving #Blessed https://t.co/M1qqDJhgfF +12/12/2017,Sports_celeb,@AntDavis23,Amazing feeling to be able to share some blessings this #SeasonOfGiving https://t.co/ANTyOpFU02 +11/27/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: From the Southside of Chicago, to the University of Kentucky, to the NBA draft at 19, we find out what drives @AntDavis23.…" +11/26/2017,Sports_celeb,@AntDavis23,Proud to support @footlocker and their #GreatnessDoesGood campaign! Support the cause and make a shoe donation at y… https://t.co/e0mB37mYVN +11/23/2017,Sports_celeb,@AntDavis23,Thankful! 🙏🏾 +11/22/2017,Sports_celeb,@AntDavis23,Check out my episode of Tanked this Friday at 9PM on @AnimalPlanet! 🐟🐠 https://t.co/SwszHUgW9w +11/21/2017,Sports_celeb,@AntDavis23,"Here’s to big, easy buckets… #givesyouwings https://t.co/uHxIazasWA" +11/20/2017,Sports_celeb,@AntDavis23,Truly blessed to be able to host my 5th Annual Thanksgiving Dinner last night with my family at the @NOLAMission 🦃🙏🏾 https://t.co/5lEcsfcRPp +11/15/2017,Sports_celeb,@AntDavis23,Who's coming out to Superhero Night at @SmoothieKingCtr tonight?? Gotta #DoItBig https://t.co/WRdlPHKfBi +11/15/2017,Sports_celeb,@AntDavis23,Y'all already know!!! #BBN #UK #RoadTo9 https://t.co/SpXYRf8mQZ +11/11/2017,Sports_celeb,@AntDavis23,Salute! #VeteransDay https://t.co/8qIIpyg6kp +11/10/2017,Sports_celeb,@AntDavis23,@jmiketaylor @KentuckyMBB Seriously! Lol +11/10/2017,Sports_celeb,@AntDavis23,"My @KentuckyMBB ticket finally came in the mail😂😂😂 + +Let's get it fellas! #BBN https://t.co/Q4zZfz3K6g" +11/10/2017,Sports_celeb,@AntDavis23,Let's go @KentuckyMBB!! It all starts tonight #BBN +11/09/2017,Sports_celeb,@AntDavis23,Good times out here in Toronto at @saks! Thanks for having me 🙏🏾 https://t.co/y282C7oABP +11/03/2017,Sports_celeb,@AntDavis23,Good times seeing @DaddysHome. Check it out when it hits theaters Nov. 10th #DaddysHome2 https://t.co/l3QYenVehG +10/31/2017,Sports_celeb,@AntDavis23,Happy Halloween! @nikebasketball https://t.co/u7Gll2Xc6A +10/29/2017,Sports_celeb,@AntDavis23,Getting into the Halloween spirit. @nikebasketball https://t.co/4mtxLhsHHu +10/20/2017,Sports_celeb,@AntDavis23,Home opener tonight NOLA!! #DoItBig +10/19/2017,Sports_celeb,@AntDavis23,See you next year at the Anthony Davis Basketball Camp @nikebasketball https://t.co/OEBpsPg2oL +10/18/2017,Sports_celeb,@AntDavis23,Finally that game day mood #DoItBig https://t.co/b83KsxUhAD +10/18/2017,Sports_celeb,@AntDavis23,RT @AntDavis23: NOLA! Who's hyped for the season? Tweet a pic in your Pelicans gear & post using #ADsTix to enter to win THESE TIX to home… +10/18/2017,Sports_celeb,@AntDavis23,Prayers going out to Gordon Hayward!!! +10/17/2017,Sports_celeb,@AntDavis23,Ready to #DoItBig https://t.co/bSOZfEFyHG +10/17/2017,Sports_celeb,@AntDavis23,New Orleans has become my second home @nikebasketball https://t.co/E5wbVjGSQj +10/16/2017,Sports_celeb,@AntDavis23,NOLA! Who's hyped for the season? Tweet a pic in your Pelicans gear & post using #ADsTix to enter to win THESE TIX… https://t.co/uOQCE5xTLC +10/16/2017,Sports_celeb,@AntDavis23,Shout out to the #USWNT. Looking forward to seeing you play at the Superdome on Thursday https://t.co/QFPaJWQULv +10/13/2017,Sports_celeb,@AntDavis23,Sportsmanship. Respect. Teamwork. The core values of the @JrNBA! Learn more and get involved at… https://t.co/R5W69RRGXp +10/12/2017,Sports_celeb,@AntDavis23,"I always wanted to start my own camp, this year I got the chance @nikebasketball https://t.co/KtFn4ZWegP" +10/03/2017,Sports_celeb,@AntDavis23,"We been workin hard!! Ready for the first preseason game tonight, let's get it #DoItBig https://t.co/nVjBya5pd3" +09/29/2017,Sports_celeb,@AntDavis23,Soar over the opposition. Tap into the game. @nikebasketball https://t.co/SjpL0zMU8r +09/25/2017,Sports_celeb,@AntDavis23,👀 https://t.co/4GHKyJsJcV +09/25/2017,Sports_celeb,@AntDavis23,Back to work! #PelicansMediaDay +09/18/2017,Sports_celeb,@AntDavis23,T-1 month!! #DoItBig https://t.co/0V0IYA02RX +09/17/2017,Sports_celeb,@AntDavis23,@boogiecousins 😂😂😂😂😂 🤷🏽‍♂️ #round13 +09/15/2017,Sports_celeb,@AntDavis23,"Who else picked up Destiny 2? NOLA hit me up, I’m trying to put in some work. #Destiny2Partner" +09/10/2017,Sports_celeb,@AntDavis23,https://t.co/9Uhsa745Ur +09/08/2017,Sports_celeb,@AntDavis23,Who's hyped for the season to start!? We are. #DoItBig @PelicansNBA https://t.co/whIx31IG3C +08/27/2017,Sports_celeb,@AntDavis23,The main event! Who you got?? +08/26/2017,Sports_celeb,@AntDavis23,#NationalDogDay https://t.co/xIDydQo0xq +08/26/2017,Sports_celeb,@AntDavis23,Felt great to be back! #BBN https://t.co/rbCKDBxF9e +08/23/2017,Sports_celeb,@AntDavis23,Great time with the fellas man. Got some GREAT work in the past couple of days!!! Excited for the season to start.… https://t.co/2IJ0xJjqoA +08/22/2017,Sports_celeb,@AntDavis23,We still doing these #eclipse tweets? No easy buckets!! 😂😂😂 https://t.co/BUH78eMcTP +08/21/2017,Sports_celeb,@AntDavis23,Old stomping grounds!! @PelicansNBA @KentuckyMBB #DoItBig #BBN https://t.co/Fso3T7uedx +08/21/2017,Sports_celeb,@AntDavis23,#BBN https://t.co/79ODiTyBWw +08/21/2017,Sports_celeb,@AntDavis23,RT @kingtone_55: Good lil workout with the homie @AntDavis23 https://t.co/joFAm6jNCA +08/16/2017,Sports_celeb,@AntDavis23,Should I cut my hair back to the waves?? +08/14/2017,Sports_celeb,@AntDavis23,Counting down the days!! #DoItBig https://t.co/HeAkKx8HUp +08/10/2017,Sports_celeb,@AntDavis23,🔥 https://t.co/GA7NoPEalX +08/09/2017,Sports_celeb,@AntDavis23,Camp was a blast!! Thanks to everyone who helped make my first-ever camp a success! https://t.co/Hv3AyBLfos +08/05/2017,Sports_celeb,@AntDavis23,Today! https://t.co/sT32w40SkT +08/03/2017,Sports_celeb,@AntDavis23,"Come through to @dicks this Sat for camp registration day! Meet the camp coaches, register for my camp & receive a… https://t.co/0JYWRF3wJ2" +07/31/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Why not learn 🏀 from the best? + +Sign up for @AntDavis23 camp today! + +🔗: https://t.co/LwXg2fNY7k + +#ADAllDay https://t.co/No…" +07/27/2017,Sports_celeb,@AntDavis23,We have a love-hate relationship 😂😂😂 #Zues #MansBestFriend https://t.co/d5dYShR2wp +07/27/2017,Sports_celeb,@AntDavis23,NOLA! Sign up at https://t.co/X61ECIXLHO! https://t.co/Yi9inf6iS0 +07/26/2017,Sports_celeb,@AntDavis23,About to kill @QuincyPondexter in uno!! Who want some?? https://t.co/LCIKleYibi +07/23/2017,Sports_celeb,@AntDavis23,Fun night last night checking out @HitmanBodyguard before it hits theaters August 18th! https://t.co/faIYXneBwM +07/21/2017,Sports_celeb,@AntDavis23,Might not want to leave your hoops out..... we coming for em!! #DriveByDunkChallenge #GivesYouWings https://t.co/oeBoW4lzNs +07/17/2017,Sports_celeb,@AntDavis23,Sign up for my camp today! Spots are going fast...Register at https://t.co/X61ECIGaQg https://t.co/cdJ3sBybsQ +07/11/2017,Sports_celeb,@AntDavis23,Grind never stops! https://t.co/yqon76sE8m +07/10/2017,Sports_celeb,@AntDavis23,NOLA KIDS! Have you signed up for my camp yet? Hope to see you there August 7th and 8th! Register at… https://t.co/TVPDcclhec +07/07/2017,Sports_celeb,@AntDavis23,New Orleans it's finally here!!! Come get some work in with me August 7th and 8th. Register now!!! #BeGreat https://t.co/JRgm1TYw3P +07/04/2017,Sports_celeb,@AntDavis23,Happy Independence Day! 🎆🇺🇸 +06/22/2017,Sports_celeb,@AntDavis23,Can't believe it's been 5 years! Good luck to all the guys whose lives are about to change forever #NBADraft #TBT https://t.co/B5YiiIdMZ6 +06/21/2017,Sports_celeb,@AntDavis23,"Toss out that big board, the real draft prospect grades are in #BBN #NBADraft https://t.co/AzAmqXZb37" +06/21/2017,Sports_celeb,@AntDavis23,Checked out @BabyDriverMovie tonight before it hits theaters June 28th! Dope movie https://t.co/KPD4iptaBY +06/19/2017,Sports_celeb,@AntDavis23,RT @SInow: Going shopping with @AntDavis23 and picking up some of his fashion tips 👔 https://t.co/lvtC1kUBjp https://t.co/4EcPzXNChC +06/18/2017,Sports_celeb,@AntDavis23,Dad’s coming in hot on #fathersday @redbull #givesyouwings https://t.co/iYxctnlGsH +06/15/2017,Sports_celeb,@AntDavis23,"Food, movie and sleep!!! That's my day today! What are some good movies to watch!?" +06/08/2017,Sports_celeb,@AntDavis23,Looking good in that Pelicans jersey Jimmy! https://t.co/zibZo3TWhm +06/08/2017,Sports_celeb,@AntDavis23,Had a blast last night! Thanks for having me @JimmyKimmelLive https://t.co/93X3JZxRlX +06/08/2017,Sports_celeb,@AntDavis23,RT @JimmyKimmelLive: Backstage at #Kimmel with @AntDavis23 #Pelicans https://t.co/HfwiQsMDwj +06/08/2017,Sports_celeb,@AntDavis23,Check me out tonight on @JimmyKimmelLive! 💯 +05/29/2017,Sports_celeb,@AntDavis23,"RT @NBA: We remember our fallen heroes that gave the ultimate sacrifice 🇺🇸. + +Happy #MemorialDay https://t.co/VOmO8aBJCT" +05/28/2017,Sports_celeb,@AntDavis23,"Remember I said this. I, Anthony Davis, will beat @RandallTime in Madden 21-0 in the first quarter!!!" +05/19/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: #FlashbackFriday + +A look back at @AntDavis23's First-Team All @NBA season! #Pelicans https://t.co/wRemBLLYJV" +05/14/2017,Sports_celeb,@AntDavis23,Happy Mother's Day to all the moms out there!! +05/14/2017,Sports_celeb,@AntDavis23,RT @ghetto: A pool with a glass bottom. I wouldn't even think about stepping a foot in that https://t.co/qRrM4rIBVz +05/08/2017,Sports_celeb,@AntDavis23,RT @kg_ugk: @AntDavis23 Thanks for the kicks out here flying like you https://t.co/RvPnj49NF6 +05/05/2017,Sports_celeb,@AntDavis23,RT @SPACEdotcom: Happy #NationalSpaceDay from @AntDavis23 😝 https://t.co/jKKX2Pm3ex +04/25/2017,Sports_celeb,@AntDavis23,@JenBeauvais That's awesome!! Tell hi yes I'll play. +04/25/2017,Sports_celeb,@AntDavis23,RT @JenBeauvais: @AntDavis23 my son is a huge fan. He wants to know if you'll play him in basketball 🏀 https://t.co/HD37YtTdaE +04/10/2017,Sports_celeb,@AntDavis23,#NationalSiblingsDay https://t.co/VNtuOrOT19 +03/31/2017,Sports_celeb,@AntDavis23,I saw @GhostInShell tonight! Comes out tomorrow 💯 https://t.co/kmn2Jzr1ok +03/25/2017,Sports_celeb,@AntDavis23,Who said there's no perfect brackets left? https://t.co/MUTokJ6yvw +03/21/2017,Sports_celeb,@AntDavis23,#BBN for life!! https://t.co/QdqddNXAiH +03/17/2017,Sports_celeb,@AntDavis23,#FBF Let's start dancing tonight @KentuckyMBB #BBN #GoBigBlue https://t.co/AIphxBUSGG +03/17/2017,Sports_celeb,@AntDavis23,.@ThePowerRangers was dope! Go check it out March 24 #TogetherWeAreMore #PowerRangersMovie https://t.co/0blBzNb4ti +03/16/2017,Sports_celeb,@AntDavis23,My Kentucky Super Team is staaacked. Who would you have in your starting 5? https://t.co/dWNBpvGKo0 +03/16/2017,Sports_celeb,@AntDavis23,"Hey @PelicansNBA fans, come through! https://t.co/DPoD81WIAS" +03/14/2017,Sports_celeb,@AntDavis23,Checked out @LifeMovie tonight before it hits theaters March 24th! #LIFEmovie https://t.co/VCMlRandHd +03/13/2017,Sports_celeb,@AntDavis23,Perfect bracket https://t.co/0riPQRC2wc +03/12/2017,Sports_celeb,@AntDavis23,KENTUCKY! Go support #BBN in the tourney & use code BROW for $20 back on @SeatGeek tix -> https://t.co/K1sKmSlsjt #selectionsunday #sp +03/12/2017,Sports_celeb,@AntDavis23,#BBN +03/08/2017,Sports_celeb,@AntDavis23,That's a good looking bobblehead!!! lol https://t.co/rGLDK9WZ4S +02/28/2017,Sports_celeb,@AntDavis23,Happy Mardi Gras from your boys! https://t.co/GsIdfsfbVT +02/28/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Happy #MardiGras! + +@AntDavis23 #Pelicans https://t.co/bEKncq2a6y" +02/24/2017,Sports_celeb,@AntDavis23,Had fun meeting the fans over All Star Weekend! https://t.co/r80OXKPhSF +02/23/2017,Sports_celeb,@AntDavis23,Welcome my big brother @boogiecousins to NOLA #FireAndIce https://t.co/mlkB0hjoyy +02/21/2017,Sports_celeb,@AntDavis23,AllStar fashion game on point!! @GQMagazine @alexreside https://t.co/iTMWVpzX9B +02/20/2017,Sports_celeb,@AntDavis23,This is for NOLA https://t.co/e291PU5axI +02/19/2017,Sports_celeb,@AntDavis23,Who's ready?? #NBAAllStar Saturday night! +02/18/2017,Sports_celeb,@AntDavis23,🙏🏾 https://t.co/T53X6IBVv8 +02/17/2017,Sports_celeb,@AntDavis23,RT @russwest44: The Joy of helping #nbacares #whynot https://t.co/7JeUHJgtHl +02/17/2017,Sports_celeb,@AntDavis23,RT @PelicansNBA: .@AntDavis23 and @russwest44 working with @nbacares visiting locals impacted by the recent tornados https://t.co/4MoWQqhry1 +02/17/2017,Sports_celeb,@AntDavis23,Step up your emoji game #AnthonyDavis https://t.co/2gPRng8XAg +02/17/2017,Sports_celeb,@AntDavis23,Thanks for a great event and a good time New Orleans! #RedBullReign @redbull https://t.co/EXJsHN8UTh +02/16/2017,Sports_celeb,@AntDavis23,Come meet me at @DICKS today #NOLA @shopatlakeside at 7:30p! https://t.co/fpjoWGxqWK +02/16/2017,Sports_celeb,@AntDavis23,#NBAAllStar weekend has begun! https://t.co/lam6TMpFAs +02/16/2017,Sports_celeb,@AntDavis23,"New Orleans! It happens today, see everyone at Joe W. Brown Park for #RedBullReign @redbull https://t.co/MXC7kK9sAX" +02/15/2017,Sports_celeb,@AntDavis23,"RT @TheNBPA: .@AntDavis23: My NOLA + +The Host of All-Star Weekend on His Special Connection to the City, Now in His Fifth Year -- https://t.…" +02/14/2017,Sports_celeb,@AntDavis23,#Equality https://t.co/QkXrWuwqgC +02/11/2017,Sports_celeb,@AntDavis23,RT @Timfraz23: 4 hour flight<<<< +02/11/2017,Sports_celeb,@AntDavis23,"RT @Timfraz23: ""I wonder if Tim remembers that I still owe him money"" 😂😂😂 @AntDavis23 https://t.co/byptDSZth6" +02/10/2017,Sports_celeb,@AntDavis23,I got you! https://t.co/ff73PdDyEi +02/03/2017,Sports_celeb,@AntDavis23,Big men gonna get it again! #Back2Back https://t.co/ozus9xcs7y +01/30/2017,Sports_celeb,@AntDavis23,Had the chance to see @JohnWickMovie. It's in theaters February 10th! #JohnWick2 https://t.co/yoV9Rzub4E +01/27/2017,Sports_celeb,@AntDavis23,"RT @BleacherReport: We're taking you back in the day with the @NikeBasketball family. + +From Nike Basketball and B/R, this is #SmallBall. Ne…" +01/20/2017,Sports_celeb,@AntDavis23,Got to check out @xxxMovie a day early before it hits theaters tomorrow! https://t.co/ZaLlLigN9T +01/20/2017,Sports_celeb,@AntDavis23,THANK YOU to the voters! I'm truly honored and can't wait to represent the @PelicansNBA and the city of New Orleans at #NBAAllStar +01/19/2017,Sports_celeb,@AntDavis23,A little BTS from my last @redbull shoot #TBT https://t.co/aJeZELboLp +01/17/2017,Sports_celeb,@AntDavis23,RT @Timfraz23: @AntDavis23 #NBAVOTE +01/17/2017,Sports_celeb,@AntDavis23,@MrCraw4D never was a bears fan +01/16/2017,Sports_celeb,@AntDavis23,Nothing else to say! https://t.co/9JqhaCExtc +01/10/2017,Sports_celeb,@AntDavis23,Kick game strong 💪🏾 https://t.co/vB748Tr2e8 +01/10/2017,Sports_celeb,@AntDavis23,"@redbull lol, thanks fam!" +01/01/2017,Sports_celeb,@AntDavis23,Happy 2017! +12/25/2016,Sports_celeb,@AntDavis23,Merry Christmas! https://t.co/OLpWc8zLXd +12/23/2016,Sports_celeb,@AntDavis23,Blessed to be able to give back this holiday season! #NBACares https://t.co/DrgLrP0Dnf +12/16/2016,Sports_celeb,@AntDavis23,RIP Craig Sager! https://t.co/OfUcsdm3bT +12/14/2016,Sports_celeb,@AntDavis23,RT @redbull: So THAT'S how you go hard in the paint... @AntDavis23 https://t.co/tAibCJJyLu https://t.co/9CtHW0LbF6 +12/13/2016,Sports_celeb,@AntDavis23,"RT @PelicansNBA: .@AntDavis23's view when dunking! + +More @Spectacles snaps 👻: PelicansNBA #Pelicans https://t.co/6GnIfC9KOh" +12/12/2016,Sports_celeb,@AntDavis23,"Back in NOLA...Big game tomorrow night vs GSW, we need the whole city behind us. Retweet for a chance to win 2 tickets on me #WinTheNight" +11/30/2016,Sports_celeb,@AntDavis23,No days off #GivesYouWings https://t.co/3tSyHoef9q +11/24/2016,Sports_celeb,@AntDavis23,Happy Thanksgiving everyone! +11/22/2016,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Bros. +#WinTheNight https://t.co/PU3AjC6p4o" +11/21/2016,Sports_celeb,@AntDavis23,Thankful my family and I had the opportunity to serve Thanksgiving dinner last night at the New Orleans Mission! https://t.co/tERs9X3y4d +11/21/2016,Sports_celeb,@AntDavis23,RT @marciholstein: Another Pels win with a celebratory shot by @AntDavis23 !! @PelicansNBA #flockup #letsgopels https://t.co/VRepLe4rg0 +11/13/2016,Sports_celeb,@AntDavis23,Enjoyed seeing #BleedForThis the other night. Make sure you check it out next Friday! https://t.co/UfkalAyYK0 +11/11/2016,Sports_celeb,@AntDavis23,Thank you Veterans! Appreciate all you do for our country. https://t.co/hyuqW3zVIs +10/31/2016,Sports_celeb,@AntDavis23,RT @PelicansNBA: Do the Tony! @redbull https://t.co/8lgsnQ9v9w +10/28/2016,Sports_celeb,@AntDavis23,#Blocked @SportsCenter https://t.co/BY4yupg6HY +10/28/2016,Sports_celeb,@AntDavis23,"NOLA, we need y'all hyped tonight! If you want to come to the game, I got a pair of tix for you. Just RT for a chance to win. #WinTheNight" +07/01/2018,Sports_celeb,@KarlTowns,"RT @NBAItalia: Si chiude un super #NBACrossover che ha avuto il piacere di avere come stella e ospite d’onore @KarlTowns! + +🙏 Grazie mille a…" +06/30/2018,Sports_celeb,@KarlTowns,"RT @Lamborghini: .@NBPA stars attend @SDABocconi, learning about the iconic branding and super sports car design of Lamborghini. Among them…" +06/29/2018,Sports_celeb,@KarlTowns,@TreyLyles Stuck on emotionless. Like sheesh +06/28/2018,Sports_celeb,@KarlTowns,"RT @TheNBPA: Kids see KAT sometimes. + +#IBA2018 https://t.co/UPlcH47hVA" +06/27/2018,Sports_celeb,@KarlTowns,"Just for clarity, I won this golf tournament as well. @KyleRudolph82 can back this ⛳️🏌🏽‍♂️ https://t.co/hjLlUrSTCE" +06/25/2018,Sports_celeb,@KarlTowns,@Kawahine_ Could be worse I guess 🤷🏽‍♂️ +06/25/2018,Sports_celeb,@KarlTowns,RT @Kawahine_: My boyfriend is naked all over the internet.... welp. +06/25/2018,Sports_celeb,@KarlTowns,😳👀 +06/20/2018,Sports_celeb,@KarlTowns,RT @espn: The 10th annual Body Issue drops June 25 ... and we've got the full roster of athletes right here. https://t.co/1XyfnOBntk +06/20/2018,Sports_celeb,@KarlTowns,"@jojo_6290 I must say, I’m pretty pumped 😁" +06/19/2018,Sports_celeb,@KarlTowns,KENTUCKY also has Kevin Knox.....FYI. #BBN https://t.co/NUcO50E1v3 +06/18/2018,Sports_celeb,@KarlTowns,Senseless. +06/17/2018,Sports_celeb,@KarlTowns,"Happy Father’s Day to all the loving and involved fathers out there, especially mine!" +06/16/2018,Sports_celeb,@KarlTowns,@GopherWBB @Lindsay_13 @Lindsay_13 is special. @GopherWBB hit the lottery. +06/14/2018,Sports_celeb,@KarlTowns,"👀👀👀 @garyvee is up to something....again lol +https://t.co/N6Qt73KM8k" +06/10/2018,Sports_celeb,@KarlTowns,@FloTrack @GoSydGo 🐐🐐🐐 +06/08/2018,Sports_celeb,@KarlTowns,@StJoesMetuchen @Marq_Towne5 @StJoesMetBBall @Marq_Towne5 legend +06/07/2018,Sports_celeb,@KarlTowns,"Whatever the mind of man can conceive and believe, it can achieve." +06/07/2018,Sports_celeb,@KarlTowns,"RT @TheNBPA: (9 of 12). + +The NBPA Most Respected Award + +Respect the O.G. Congrats @mrvincecarter15!! + +@andrewtarcher pays homage to the v…" +06/06/2018,Sports_celeb,@KarlTowns,Never settle for normalcy. +06/06/2018,Sports_celeb,@KarlTowns,RT @MalcolmJenkins: #TheFightContinues https://t.co/QWDdvZgQNL +06/04/2018,Sports_celeb,@KarlTowns,Already spent 6 months in day school.. I for sure don’t want to be in night school!.. Thnx @KevinHart4real 🙄… https://t.co/iS2tiFNrJX +06/04/2018,Sports_celeb,@KarlTowns,RT @NightSchool: You ready for Finals? Meet the new Dream Team. #NightSchool stars @KevinHart4real and @TiffanyHaddish team up with @aldrid… +06/04/2018,Sports_celeb,@KarlTowns,RT @Scott_Charlton: Look at the love between two of my most talented sons. https://t.co/JPhQdS4jE5 +06/04/2018,Sports_celeb,@KarlTowns,RT @AlanGoldsher: The @KevinHart4real / @KarlTowns / @TiffanyHaddish / @DevinBook / @aldridge_12 commercial was arguably the best part of t… +06/01/2018,Sports_celeb,@KarlTowns,@THEwillieCS15 😂😂😂 +06/01/2018,Sports_celeb,@KarlTowns,What will you do to solidify your greatness today? +06/01/2018,Sports_celeb,@KarlTowns,🤔🤔🤔 +05/31/2018,Sports_celeb,@KarlTowns,All love since day 1 ting ✊🏽 https://t.co/6Qa9B1apDP +05/28/2018,Sports_celeb,@KarlTowns,Thank you to all the courageous men and women who provide us with the freedom to chase the American Dream. Thank yo… https://t.co/MvsJNZm1wK +05/28/2018,Sports_celeb,@KarlTowns,Psalm 119:4-5 🙏🏽 +05/27/2018,Sports_celeb,@KarlTowns,“The value of a man should be seen in what he gives and not in what he is able to receive” +05/26/2018,Sports_celeb,@KarlTowns,@DevinBook 🗣🗣🗣 +05/24/2018,Sports_celeb,@KarlTowns,RT @thatnegus_sb: https://t.co/sJqUMtUZIY +05/17/2018,Sports_celeb,@KarlTowns,"Hands on with #BlackOps4 and these MP maps are nice. @swipathefox and I held it down, but we know who is the best.… https://t.co/tGe7qpFv9m" +05/13/2018,Sports_celeb,@KarlTowns,"Happy Mother’s Day to all the beautiful women holding it down not just today, but every day!" +05/13/2018,Sports_celeb,@KarlTowns,Wowwwwww!!!!!! #LinaresLoma +05/13/2018,Sports_celeb,@KarlTowns,It’s go time! #LinaresLoma +05/12/2018,Sports_celeb,@KarlTowns,"Every bucket, every board, starts right here. #GatoradePartner https://t.co/F9MVnCJCg8" +05/11/2018,Sports_celeb,@KarlTowns,Thank you @casper for the gift https://t.co/qJROGBJAlx +05/09/2018,Sports_celeb,@KarlTowns,@NoahJ456 😂😂😂😂😂😂 +05/05/2018,Sports_celeb,@KarlTowns,"A Living Legend. Congrats to Dominican Republic’s Finest and my favorite baseball player @PujolsFive on 3,000 Hits.… https://t.co/DMHgXxcvXS" +05/05/2018,Sports_celeb,@KarlTowns,Looking forward to meeting some young @Timberwolves fans this July at my annual Youth 🏀 @ProCamps! Click 👇 for more… https://t.co/tCBywxPMWa +05/03/2018,Sports_celeb,@KarlTowns,"RT @Gatorade: The competition is over. #GStatus goes to @KarlTowns 👏. For his hustle and @jaytatum0’s in the NBA Playoffs, we’re donating $…" +04/30/2018,Sports_celeb,@KarlTowns,HBD Legend 💵💵💵 https://t.co/8rGdbsc0so +04/29/2018,Sports_celeb,@KarlTowns,"@STMAGBB @Timberwolves @JCrossover The man, the myth, the legend @JCrossover" +04/28/2018,Sports_celeb,@KarlTowns,@DrizoBeats @Bengals BIG TIME!!! +04/24/2018,Sports_celeb,@KarlTowns,Welcome home @MeekMill ✊🏽✊🏽✊🏽 +04/20/2018,Sports_celeb,@KarlTowns,@Kawahine_ You deserve it. Your 1/1 ❤️ +04/17/2018,Sports_celeb,@KarlTowns,"@Profgampo 🤫🤫🤫. They’re not ready for all that sauce yet. + +P.S. “No” and “Minneapolis” are my favorite tracks on #PookieBaby 👍🏽" +04/17/2018,Sports_celeb,@KarlTowns,"So @BodegaBAMZ and @jimjonescapo blessed us last week, and now @JColeNC wants to bless us this week. WHOLE LOTTA BLESSINGS GOING AROUND!" +04/15/2018,Sports_celeb,@KarlTowns,@RealJohnGray @OWNTV @Oprah @Grayceeme @Oprah @RealJohnGray @Grayceeme Time and Place! Free lessons for @OWNTV +04/14/2018,Sports_celeb,@KarlTowns,"✅ Positive Energy +❌ Negative Energy" +04/13/2018,Sports_celeb,@KarlTowns,"@Gatorade @jaytatum0 It’s on. This year I’m earning my #Gstatus #GatoradePartner +u!!" +04/12/2018,Sports_celeb,@KarlTowns,My road to the #NBAPlayoffs started on the court my dad built me by hand. Rewind it back with me. #GatoradePartner https://t.co/aylahMcAXK +04/12/2018,Sports_celeb,@KarlTowns,RT @JonKrawczynski: https://t.co/YC4XAT7Kka +04/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: WE BACK. + +PLAYOFFS. #AllEyesNorth https://t.co/2yY2uVRgTW" +04/12/2018,Sports_celeb,@KarlTowns,#AllEyesNorth +04/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: The lights get brighter. +The pressure gets tighter. + +We're back. #AllEyesNorth https://t.co/3Wq2XW4lFl" +04/09/2018,Sports_celeb,@KarlTowns,Spread Love ❤️ +04/09/2018,Sports_celeb,@KarlTowns,Amazing day streaming and playing @FortniteGame with you guys! Join me on discord at https://t.co/TOL6qn0DxJ and be part of the community 🦁 +04/09/2018,Sports_celeb,@KarlTowns,@Matty__W My bad fam 😂 +04/08/2018,Sports_celeb,@KarlTowns,L I V E ! https://t.co/iDk5mwrXUW +04/07/2018,Sports_celeb,@KarlTowns,@UKCoachCalipari I BEEN TELLING YOU THIS! 😂 +04/04/2018,Sports_celeb,@KarlTowns,@NoahJ456 .......... +04/04/2018,Sports_celeb,@KarlTowns,Sending my thoughts and prayers to everyone @YouTube 🙏🏽🙏🏽🙏🏽 +04/03/2018,Sports_celeb,@KarlTowns,Amazing stream tonight with @BenSimmons25 playing @PUBATTLEGROUNDS. Hope you guys enjoyed it and S/O to @OpTic7Teen… https://t.co/mjex7c9ZIP +04/03/2018,Sports_celeb,@KarlTowns,RT @DMiranda04: all i know is @KarlTowns would never leave me like @BenSimmons25 just did https://t.co/wOfQjHY0ZQ +04/03/2018,Sports_celeb,@KarlTowns,"@PUBATTLEGROUNDS, we need assistance!!!! Custom game needed for @BenSimmons25 and I. THE FANS WANT TO PLAY!!!" +04/03/2018,Sports_celeb,@KarlTowns,"About to stream some @FortniteGame on Twitch! Join the fun at https://t.co/MOjyzIhNzj and while you’re at it, join… https://t.co/a1GD5LcO8f" +04/01/2018,Sports_celeb,@KarlTowns,Happy Easter! Hope today is full of love and blessings for everyone. +04/01/2018,Sports_celeb,@KarlTowns,"An amazing effort and season by @RamblersMBB. To my brother @Marq_Towne5, you couldn’t have made me any prouder. Go… https://t.co/Fu5gRCFngk" +03/31/2018,Sports_celeb,@KarlTowns,LETSSSS GOOOOO @RamblersMBB!!! ONE MORE HALF! +03/31/2018,Sports_celeb,@KarlTowns,You know I’m rocking with @Marq_Towne5 and @RamblersMBB. LETS GET THIS W! +03/29/2018,Sports_celeb,@KarlTowns,Soooooo @Kawahine_ can I play PUBG??? +03/27/2018,Sports_celeb,@KarlTowns,Control Your Happiness. +03/26/2018,Sports_celeb,@KarlTowns,RT @The_Fourth_Wade: I don’t get these phrases/articles coming out that @Marq_Towne5 was overlooked. Y’all the ones that overlooked it! Y’a… +03/26/2018,Sports_celeb,@KarlTowns,Prayers out to Zeke Upshaw’s family 🙏🏽🙏🏽🙏🏽 +03/23/2018,Sports_celeb,@KarlTowns,"RT @ChrisRyan_NJ: Karl-Anthony Towns: 1st overall pick in 2015 NBA Draft +Wade Baldwin: 17th overall pick in 2016 +Marques Townes: Just put L…" +03/23/2018,Sports_celeb,@KarlTowns,@Marq_Towne5= LOYOLA LEGEND +03/22/2018,Sports_celeb,@KarlTowns,😂😂😂 @Kawahine_ https://t.co/GRNNUO5BJP +03/17/2018,Sports_celeb,@KarlTowns,@KentuckyMBB 🐇🐇🐇 +03/16/2018,Sports_celeb,@KarlTowns,Make each day your masterpiece. +03/15/2018,Sports_celeb,@KarlTowns,Let’s go @Marq_Towne5!!! +03/15/2018,Sports_celeb,@KarlTowns,Had some fun answering the questions you guys have been asking me. Part 2 coming soon https://t.co/xI9xU3DkTz +03/15/2018,Sports_celeb,@KarlTowns,Soooooooooo @Logic301......... 🤔 +03/15/2018,Sports_celeb,@KarlTowns,@trvisXX was straight comedy tonight 😂 +03/15/2018,Sports_celeb,@KarlTowns,@Ninja is just different at @FortniteGame than the rest of us. This is a fact 💯 +03/15/2018,Sports_celeb,@KarlTowns,@Ninja and @Drake really got the world in there hands right now 😂 +03/13/2018,Sports_celeb,@KarlTowns,So fresh and so clean w/ those #TidePods 👌 @KyleRudolph82 @Cubfoods https://t.co/8xnP1bIcF3 +03/12/2018,Sports_celeb,@KarlTowns,RT @beatsbydre: Rise to the occasion. @KarlTowns https://t.co/Rm6UZW4WTD +03/12/2018,Sports_celeb,@KarlTowns,😂😂😂 https://t.co/fDqPsXi5db +03/11/2018,Sports_celeb,@KarlTowns,The world is now right. @Kawahine_ has watched The Book of Eli. #SpreadTheWord +03/11/2018,Sports_celeb,@KarlTowns,The fact @Kawahine_ hasn’t seen The Book of Eli is troubling! This must be changed! +03/05/2018,Sports_celeb,@KarlTowns,Be Different! +03/05/2018,Sports_celeb,@KarlTowns,"RT @Nike: .@SerenaWilliams has proven time and time again, there’s no wrong way to be a woman. #UntilWeAllWin https://t.co/aAMZv9IjCW" +03/05/2018,Sports_celeb,@KarlTowns,“If you have only one smile in you give it to the people you love.” -Maya Angelou +03/04/2018,Sports_celeb,@KarlTowns,😱😱😱😱 #WilderOrtiz +02/28/2018,Sports_celeb,@KarlTowns,RT @DevinBook: Aye @UKCoachCalipari can I finally start tonight??? Lol #BBN https://t.co/lMOfwclbm6 +02/28/2018,Sports_celeb,@KarlTowns,@DevinBook @UKCoachCalipari 😂😂😂😂😂 +02/28/2018,Sports_celeb,@KarlTowns,"It’s been a long time coming my brothers, Senior Night is finally upon us 😂 #BBN https://t.co/h3bsoNeXBo" +02/24/2018,Sports_celeb,@KarlTowns,RT @G_Wade05: God’s Plan 🙏🏾‼️ https://t.co/DIp2pY6Z30 +02/23/2018,Sports_celeb,@KarlTowns,"Honestly, this doesn’t shock me at all about the @NCAA. https://t.co/TM2Jn9zIMz" +02/22/2018,Sports_celeb,@KarlTowns,@yung_gravy Woahhhh! (Gravy Voice) +02/22/2018,Sports_celeb,@KarlTowns,Need your guys help making this YouTube video! Send in your questions to have a chance to be part of my Q/A YouTube video. +02/21/2018,Sports_celeb,@KarlTowns,Really proud of my parents foundation. This is big time! https://t.co/JdJm8RDeFJ +02/21/2018,Sports_celeb,@KarlTowns,@yung_gravy Only the real ones are on the gravy train 🍯 +02/21/2018,Sports_celeb,@KarlTowns,RT @nbacares: .@Timberwolves @KarlTowns helps to unload a diaper truck for distribution to families in need at @baby2baby during #NBACares… +02/21/2018,Sports_celeb,@KarlTowns,"Still keeping it NICE @Cubfoods w/ @kylerudolph82 and Calvin 😂😂😂 #MinnesotaNice +https://t.co/hsLGJsgXP7" +02/19/2018,Sports_celeb,@KarlTowns,✌🏾LA. Had a great ASW riding in style with @Lyft and those #FlyWhips. Until next time. #FlyWhip #LyftLA #ad https://t.co/k2GWPaUkSX +02/18/2018,Sports_celeb,@KarlTowns,@JoelEmbiid 😏😏😏 +02/18/2018,Sports_celeb,@KarlTowns,"Told @DwyaneWade, my brotha @DevinBook is a KILLER!!!" +02/18/2018,Sports_celeb,@KarlTowns,Hey @spg members–Use your Starpoints to redeem experiences like bowling with me at #NBAAllStar. Check it out:… https://t.co/to2o86xsd7 +02/17/2018,Sports_celeb,@KarlTowns,I’m ridin’ in style all weekend. Hit @Lyft for a chance to ride in a #FlyWhip like me #ASW #LyftFlyWhip https://t.co/zhvWPdYs5F +02/16/2018,Sports_celeb,@KarlTowns,Don’t miss the chance to kick it with me during NBA All-Star 2018! I’ll be at the #KiaAllStarLoft at 1200 S. Hope Street on Saturday! +02/14/2018,Sports_celeb,@KarlTowns,My prayers go out to all the families affected by today's tragic Florida school shooting. How many more devastating… https://t.co/Mb9LhG6ANY +02/13/2018,Sports_celeb,@KarlTowns,Headed to LA this weekend? Enter to win a Ride Along with me in a @Lyft #FlyWhip during ASW #ad… https://t.co/PLf0Gv0kG4 +02/11/2018,Sports_celeb,@KarlTowns,@BdotAdot5 @DwyaneWade 😂😂😂😂 +02/09/2018,Sports_celeb,@KarlTowns,Check out my official custom @CallOfDuty emblem. #CODWWII #CallofDutyPartner https://t.co/sJgXEsTsgm +02/08/2018,Sports_celeb,@KarlTowns,"Everyone talking about how the Cavs are playing MyGM in real life with force trade on , but I’m here watching the… https://t.co/hiBtS7Jf3L" +02/07/2018,Sports_celeb,@KarlTowns,🦅🦅🦅 https://t.co/8nI4es8t2c +02/07/2018,Sports_celeb,@KarlTowns,"RT @PlayersTribune: ICYMI: Guest photographer @KarlTowns hit the sidelines for the @Eagles #SuperBowl LII win. + +For more of his photos: htt…" +02/07/2018,Sports_celeb,@KarlTowns,This is getting crazy! Prayers all the way up for my guy @kporzee. I know he’s going to come back better than ever. +02/06/2018,Sports_celeb,@KarlTowns,"Play for the front of the jersey, not the back @KentuckyMBB. #EmbraceSacrifice https://t.co/jicNey3fUZ" +02/06/2018,Sports_celeb,@KarlTowns,@GassyMexican Would be my honor to have you at the game @GassyMexican +02/05/2018,Sports_celeb,@KarlTowns,@JonKrawczynski I’m in his head @JonKrawczynski!!!! +02/05/2018,Sports_celeb,@KarlTowns,@JonKrawczynski HE KNOWSSSSSSSSS!!!!! 🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,🦅 talk +02/05/2018,Sports_celeb,@KarlTowns,I don’t think Thibs is ready to hear what I got to say 🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,Blood pressure it wayyyy too high right now +02/05/2018,Sports_celeb,@KarlTowns,On the sidelines for @PlayersTribune at the #superbowl. #FreeMeekMill https://t.co/T5iyy3JG0W +02/04/2018,Sports_celeb,@KarlTowns,RT @PlayersTribune: DON'T MISS OUR SIDELINE #SUPERBOWL PHOTOGRAPHER @KARLTOWNS'S PICS. HE'S TALLER THAN THE OTHER PHOTOGRAPHERS AND CAN GET… +02/03/2018,Sports_celeb,@KarlTowns,@Swiftor 😂😂😂 +02/02/2018,Sports_celeb,@KarlTowns,RT @SLAMonline: KAT goes Super Saiyan. https://t.co/gbc1mSXr1W +02/01/2018,Sports_celeb,@KarlTowns,RT @verizon: Our Explorer Lab landed at Franklin Middle School for an immersive learning experience and surprise visit from @KarlTowns & @T… +01/31/2018,Sports_celeb,@KarlTowns,"The basketball world lost a good one today. R.I.P. to Rasual Butler, one of the realest people I ever played with.… https://t.co/4l5RIT1RIw" +01/31/2018,Sports_celeb,@KarlTowns,Hey Minneapolis! I'll be @CubFoods Maple Grove on Friday 5-6pm helping fans prep for their SB parties. +01/27/2018,Sports_celeb,@KarlTowns,All prayers up for big fella @boogiecousins 🙏🏽🙏🏽🙏🏽 +01/26/2018,Sports_celeb,@KarlTowns,I see you cuz @The_Fourth_Wade 👀 #family https://t.co/dvIu6hmKSG +01/23/2018,Sports_celeb,@KarlTowns,Thoughts and prayers with everyone in Marshall County 🙏🏽 +01/22/2018,Sports_celeb,@KarlTowns,RT @kobebryant: Getting there wasn’t the goal @Eagles let’s finish the job #focus #superbowl +01/22/2018,Sports_celeb,@KarlTowns,"Congrats Vikings on a great season as well - much love, Minneapolis! But, I gotta go with the Birds, born and bred a fan #FlyEaglesFly 🦅" +01/22/2018,Sports_celeb,@KarlTowns,"Thibs: “Hello...” + +Foles: “Your Next.” https://t.co/ffs3j9PYr0" +01/19/2018,Sports_celeb,@KarlTowns,Helping Calvin keep his 🏈 party 💯 with wings @Cubfoods @KyleRudolph82 #MinnesotaNice https://t.co/8UUGs9I2xu +01/18/2018,Sports_celeb,@KarlTowns,I finally made a @YouTube channel! Check it out for all access to my life on & off the court & more. Subscribe & e… https://t.co/HzwlErqcn0 +01/16/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: RETWEET IF YOU LIKE BBQ CHICKEN! + +@KarlTowns #NBAVOTE https://t.co/Xb5Rfvs4Fx" +01/16/2018,Sports_celeb,@KarlTowns,RT @Teeqo: #NBAVOTE @karltowns +01/16/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Hey Canada, retweet this. 🇨🇦 + +Andrew Wiggins #NBAVote https://t.co/dlv3TPH3IO" +01/15/2018,Sports_celeb,@KarlTowns,"“We must learn to live together as brothers or perish together as fools.” + +Let this day be a reminder to have love… https://t.co/JOVY8VXGeR" +01/14/2018,Sports_celeb,@KarlTowns,RT @NBA2K: RETWEET TO VOTE FOR #TEAM2K'S Devin Booker! There's only 1 Day left to cast your votes! #NBAVote @DevinBook https://t.co/hpiMEzZ… +01/14/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Have you done your part to get the Wolves to the All-Star game today? + +Retweet this to cast an official #NBAVote for @…" +01/14/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Jimmy has some legit reasons to vote KAT into the All-Star Game 😂 + +RT to #NBAVOTE @KarlTowns! https://t.co/8HDbdiERWe" +01/14/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Only a few days left to #NBAVOTE Jimmy Butler! + +Help get him to the All-Star Game with a RETWEET! https://t.co/d9dDqnk7wY" +01/14/2018,Sports_celeb,@KarlTowns,🦅 +01/13/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Have you done your part to get the Wolves to the All-Star game today? + +Retweet this to cast an official #NBAVote for @…" +01/13/2018,Sports_celeb,@KarlTowns,Words cannot describe the relief my family and I feel that the alarm in Hawaii was false. My girlfriend was born an… https://t.co/FUTqyYCKeF +01/13/2018,Sports_celeb,@KarlTowns,@RyyGaming https://t.co/SM5kDMYB1u +01/13/2018,Sports_celeb,@KarlTowns,@RyyGaming 😂😂😂 +01/13/2018,Sports_celeb,@KarlTowns,@Mike_Mallory33 @Timberwolves You the man ✊🏽 +01/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: 500,000 RTS = 500,000 VOTES + +Help send @KarlTowns to the NBA All-Star Game! #NBAVOTE https://t.co/sIVnIwejWg" +01/12/2018,Sports_celeb,@KarlTowns,"RT @RichardBazil: All Dominicans 🇩🇴 want to see @KarlTowns in the NBA All-Star Game, now it's time to send him there. + +#NBAVote + +Today, eac…" +01/12/2018,Sports_celeb,@KarlTowns,RT @Rupp_Arena: RT to vote for @KarlTowns to go to @NBAAllStar! Votes count for DOUBLE today! #NBAVote #BBN https://t.co/hr7HbWGXeO +01/11/2018,Sports_celeb,@KarlTowns,RT @NBA2K: RETWEET TO VOTE FOR #TEAM2K's Karl-Anthony Towns! #NBAVote @KarlTowns https://t.co/ETmINkpnt7 +01/10/2018,Sports_celeb,@KarlTowns,RT @KentuckyMBB: Karl-Anthony Towns #NBAVote https://t.co/S9O651ZWag +01/10/2018,Sports_celeb,@KarlTowns,RT @Scott_Charlton: Offensive foul on Wenyen Gabriel. https://t.co/YIZnwkLoD6 +01/10/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: After last night's performance it's had to envision the All-Star game without @KarlTowns! + +Retweet this to cast an offic…" +01/09/2018,Sports_celeb,@KarlTowns,RT @Timberwolves: TYUS. JUST. DID. THAT. https://t.co/W9HwfLIgy1 +01/09/2018,Sports_celeb,@KarlTowns,@JustinPatton17 ✊🏽✊🏽✊🏽 +01/09/2018,Sports_celeb,@KarlTowns,RT @JustinPatton17: Big bro @KarlTowns has my #NBAvote go head boy!! 🐺 +01/09/2018,Sports_celeb,@KarlTowns,That man @1Tyus cut from a different cloth #AllEyesNorth +01/08/2018,Sports_celeb,@KarlTowns,RT @tweetdavebenz: Get ready for tonight’s Wolves-Cavs tilt by retweeting this to cast your official #NBAVote for @KarlTowns to be in the A… +01/08/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: If you don’t #NBAVOTE for @KarlTowns, you’re taking a big L ⤵️ https://t.co/rzWDZvhjdN" +01/08/2018,Sports_celeb,@KarlTowns,RT @tweetdavebenz: Make Sunday a fun day by retweeting this to cast an official #NBAVote to get @KarlTowns to the All Star game! +01/07/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️⭐️⭐️⭐️⭐️ + +If all our followers retweet this, Jimmy Butler will be in the lead to be the West All-Star Captain! #NBAVOTE…" +01/07/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RETWEET TO #NBAVOTE FOR KARL-ANTHONY TOWNS ⭐️ + +☑️ #1 Overall Draft Pick +☑️ NBA Rookie of the Year +☑️ League leader in…" +01/05/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ KARL-ANTHONY TOWNS #NBAVOTE ⭐️ + +IF YOU CAN READ THIS, RETWEET IT. https://t.co/NQiK7eTN3V" +01/04/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Don’t let this Thursday slip by without voting @KarlTowns to the All-Star game. + +Retweet this to cast an official #NBA…" +01/03/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: .@KarlTowns customized #NBAKicks throughout this season! Wonder what his All-Star kicks would look like? + +RT so we can f…" +01/02/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RT to vote for @KarlTowns ⭐️ + +#NBAVOTE https://t.co/SrBckQpqnc" +01/02/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RT to vote for @22wiggins ⭐️ + +#NBAVOTE https://t.co/gt6QXJMDUb" +01/01/2018,Sports_celeb,@KarlTowns,"Happy New Years to everyone! Hope 2018 brings everyone blessings, positivity, and success! God bless!" +01/01/2018,Sports_celeb,@KarlTowns,RT @Timberwolves: Only a few hours left in 2017 and to DOUBLE the vote for your favorite Wolves! 👇👇👇 https://t.co/ZMP2XpZxtC +01/01/2018,Sports_celeb,@KarlTowns,"RT @JCrossover: ""@HoopsYo: @JCrossover What do you think of Tyus' play recently?""--always great. Love him as a teammate! @1Tyus is my guy" +12/31/2017,Sports_celeb,@KarlTowns,"@Realjockwasher @Kickstradomis Lmao Clayton, GO HOME!!! 😂" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @KarlTowns #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/q1WGlOIwrm" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @22wiggins #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/BolNm97BeX" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @JimmyButler #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/iT1DwuyeDs" +12/31/2017,Sports_celeb,@KarlTowns,RT @tweetdavebenz: .@JimmyButler #NBAVote +12/30/2017,Sports_celeb,@KarlTowns,"RT @RanGuy7: @Timberwolves if I can get to 1000 RTs, we can help @KarlTowns become an All-Star and I’ll give him this painting! 1 Retweet =…" +12/30/2017,Sports_celeb,@KarlTowns,"RT @ThisIsMarlena: Used up my last sheet of paper on this watercolor painting of @KarlTowns center for the @Timberwolves #AllEyesNorth + +❄️…" +12/29/2017,Sports_celeb,@KarlTowns,@DevinBook 🔵⚪️ +12/29/2017,Sports_celeb,@KarlTowns,RT @Timberwolves: ⭐️ Retweet to send @KarlTowns to the All-Star Game! #NBAVOTE ⭐️ https://t.co/v9oCIXTdcT +12/28/2017,Sports_celeb,@KarlTowns,"RT @ktjoh: Get out and vote for your favorite @Timberwolves for the All Star Game!!! +Karl-Anthony Towns @KarlTowns #NBAVote #AllEyesNorth…" +12/28/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: 🚨 VOTE FOR YOUR WOLVES! 🚨 + +⭐️ Tweet/RT/Reply with player’s first & last name or Twitter handle, with the hashtag #NBAVote…" +12/27/2017,Sports_celeb,@KarlTowns,RT @BryGuy3597: We need to get this man in an all star game. RT to send @KarlTowns to the all star game #NBAVote https://t.co/9nMCgnb4LM +12/26/2017,Sports_celeb,@KarlTowns,Hope everyone had a blessed and love filled Christmas. +12/26/2017,Sports_celeb,@KarlTowns,RT @BUZZ1810: @KarlTowns can my lil man get a retweet from his favorite @NBA player on Christmas? He’s lives in NC but pulls for the @Timbe… +12/21/2017,Sports_celeb,@KarlTowns,"RT @SneadsbyRee: I’ve got #my5 @nba @NBAonTNT East and West All Stars! + +Did YOU vote?! https://t.co/esC7dFAzg4" +12/21/2017,Sports_celeb,@KarlTowns,RT @original_kmac: #NBAAllStar voting has started on https://t.co/JXygubat9u- time to start things off with @Timberwolves @KarlTowns leadin… +07/02/2018,Sports_celeb,@JohnWall,RT @BALLisLIFEeast: Patience but I agree 100% https://t.co/yIEeTXsoco +07/01/2018,Sports_celeb,@JohnWall,"RT @TyBigShots: Marquis Rice 2022 6’5 G Team Wall Elite @TeamWallElite @CoachK_Williams @JohnWall , Best Player In His Class By Far , Skill…" +06/30/2018,Sports_celeb,@JohnWall,RT @WashMystics: Thank you @JohnWall for hooking it up! #SummerOfSeparation #5Deep #WallWay #TogetherDC #DCFamily https://t.co/Iq6dDyyHrM +06/30/2018,Sports_celeb,@JohnWall,RT @TyBigShots: One of the nations hottest events rite before July 2018 Live Period #BIGSHOTS @TeamWallGR @TeamWallElite @JohnWall @CoachK… +06/30/2018,Sports_celeb,@JohnWall,My guy RT @UKDeWaynePeevy: Great hanging out and catching up with one of my boys today @JohnWall #lafamilia #weareuk https://t.co/CLbOfRg7P7 +06/25/2018,Sports_celeb,@JohnWall,RT @CoachK_Williams: Building the Brand.... https://t.co/bDVzJ9G8YJ +06/21/2018,Sports_celeb,@JohnWall,"RT @NBATV: Players that @CollinYoungBull compares his game to? + +@JohnWall, @russwest44 and @EBled2. + +More with @treykerby ahead of the 20…" +06/21/2018,Sports_celeb,@JohnWall,"RT @dzanderTraining: @johnwall +Summer of Separation! #nba #2018… https://t.co/tOeLa0ermJ" +06/19/2018,Sports_celeb,@JohnWall,"RT @UKCoachCalipari: Really happy for @AntDavis23, a Hall of Fame player and person. Loved seeing him this weekend and can't wait to celebr…" +06/18/2018,Sports_celeb,@JohnWall,RT @ItsNot_BRANDON: 💯💯💯 https://t.co/fkCPEXfKx0 +06/08/2018,Sports_celeb,@JohnWall,RT @SeTarheels: Yomide Jeje @JWFamFoundation https://t.co/g4WsZL5wFD +06/08/2018,Sports_celeb,@JohnWall,RT @kmmslions: Silent Dance Party for our scholars with PERFECT ATTENDANCE #attendancematters @MayorBowser @JWFamFoundation https://t.co/Dz… +06/08/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Photo boot fun with Principal Stafford and @kmmslions students! #JWFF https://t.co/hvTAADpHk0 +06/08/2018,Sports_celeb,@JohnWall,Congrats @Capitals Stanley Cup Champs‼️ #DCFAMILY #ALLCAPS https://t.co/aMHWbbRXGY +06/01/2018,Sports_celeb,@JohnWall,RT @russwest44: I am always inspired by you Brodie! The #WhyNot Zer0.1 “Masters” is dedicated to all the hard work you put in getting your… +05/24/2018,Sports_celeb,@JohnWall,Yessir‼️ #ALLCAPS Congrats #DCFAMILY https://t.co/lI8bIFSSV7 +05/24/2018,Sports_celeb,@JohnWall,Let’s Gooo Caps🏒 #ALLCAPS +05/22/2018,Sports_celeb,@JohnWall,RT @SB_FATSLUTTY: I remember ridding in dat maybach with @JohnWall vibing It was motivation made me grind harder +05/20/2018,Sports_celeb,@JohnWall,RT @herhoopstats: The @WashWizards superstar @JohnWall is in the house to watch the hometown @WashMystics play this afternoon....he's a big… +05/20/2018,Sports_celeb,@JohnWall,"RT @WashMystics: .@JohnWall with the shades out here reppin. ‘Preciate you #DCFamily. + +#TogetherDC https://t.co/8hurzeKKwL" +05/18/2018,Sports_celeb,@JohnWall,Tough !! RT @C20B: Graduating college with my role model @JohnWall on the grad cap 🎓🏀 #Wizkids #DCFamily https://t.co/vRNpggpzOc +05/17/2018,Sports_celeb,@JohnWall,"RT @WashWizards: #TBT to @JohnWall's pre-draft workout in 2010 👀 + +#WallStar #DCFamily https://t.co/WmdoJbKVpa" +05/16/2018,Sports_celeb,@JohnWall,@FrankieBOS @imNickNames Lol +05/16/2018,Sports_celeb,@JohnWall,@imNickNames Lol im gonna live my life regardless bra and u dnt know wen that pic was took...worry bout urself bra !! +05/13/2018,Sports_celeb,@JohnWall,Sending Happy Mother’s Day wishes to all the MOMS today and… https://t.co/6vUQWVrTSj +05/08/2018,Sports_celeb,@JohnWall,"RT @DMVFollowers: For the first time in decades, a D.C. sports team reaches a conference finals. GO CAPS! https://t.co/KFA9xqDXOB" +05/05/2018,Sports_celeb,@JohnWall,RT @NBCSWizards: Markieff Morris wants to play with the #Wizards for the rest of the career. https://t.co/ArN41fNak4 https://t.co/4WcEPdLeK2 +05/05/2018,Sports_celeb,@JohnWall,"RT @Redskins: ""I think you’ve got to give the kid some credit to say that from where he comes from and what he’s accomplished and what he’s…" +05/05/2018,Sports_celeb,@JohnWall,💯👌🏾RT @mrtonylewisjr: @JohnWall please share https://t.co/BySHMtk0Au +05/05/2018,Sports_celeb,@JohnWall,RT @JCrossover: Crazy part about Rondo is he KNEW he was still this player the last few years when people tried to write him off. He stayed… +05/03/2018,Sports_celeb,@JohnWall,RT @misstonic813: Shoutout to @mrtonylewisjr for his appearance on The Breakfast Club!! #dmv https://t.co/mIuT2E2RE1 +04/13/2018,Sports_celeb,@JohnWall,@SportsCenter my buddy +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Save it to your phones and mark your calendars! 🗓️ + +Our Round 1 Schedule 👀 + +#WizRaptors #DCFamily https://t.co/WlhoHg8x9f" +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: PODCAST: @JohnWall (11:30 mark) on heading into the playoffs, the team's x-factors, his motivation for this season, and mo…" +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: 1 RETWEET = 1 VOTE for #JRNBACOYWAS + +Vote for Jr. Wizards Coach of the Year Marcus Clark to win the Jr. NBA National Coach…" +04/11/2018,Sports_celeb,@JohnWall,RT @neimanmarcus: @JohnWall is gazing over the Potomac while looking good in this @Theory__ look. Photo by Keith E. Morrison for @GQMagazin… +04/09/2018,Sports_celeb,@JohnWall,RT @DMVFollowers: After 5 years of beef @ShyGlizzy and @FATTREL shared the same stage for the first time. #DMVHistory https://t.co/LtOyvYhg… +04/09/2018,Sports_celeb,@JohnWall,"RT @Ballislife: Derrick Rose was unbelievable in high school! + https://t.co/S2IwgNZcDY" +04/08/2018,Sports_celeb,@JohnWall,"RT @seanjohn: We partnered with @WashWizards point guard @JohnWall @JWFamFoundation & provided Sean John Tailored Suits, fragrance, watches…" +04/08/2018,Sports_celeb,@JohnWall,RT @PChenier45: The always gracious & thoughtful @JohnWall Thx buddy! https://t.co/oBUp6cWmzP +04/07/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: Ryan reacted to meeting @JohnWall just like you would 😱 + +His full Make-A-Wish experience: https://t.co/AUL9N9JZLf https://…" +04/02/2018,Sports_celeb,@JohnWall,RT @cmillsnbcs: My guy @JohnWall trying to take too much on the island 🌴 #DCFamily https://t.co/S1nPpTDlTy +03/30/2018,Sports_celeb,@JohnWall,"RT @brkicks: Just a kid from Raleigh + +“FIVE DEEP” pays tribute to @JohnWall and his four childhood friends from North Carolina https://t.co…" +03/30/2018,Sports_celeb,@JohnWall,RT @SoleCollector: #SoleWatch: @JohnWall's Adidas Crazy BYW X PE 🔥 https://t.co/RCNNgQw8qY +03/29/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: ""I'm not supposed to be here."" + +Kemba Walker gives emotional interview after becoming Hornets' all-time leading scorer http…" +03/28/2018,Sports_celeb,@JohnWall,RT @cmillsnbcs: Dear haters of @JohnWall the five time all star explains why you motivate him. https://t.co/t0sGAnI9IB +03/28/2018,Sports_celeb,@JohnWall,RT @YG: THE REAL LAST FOREVER. +03/27/2018,Sports_celeb,@JohnWall,"RT @neimanmarcus: Clean, fresh and crisp. Show them you mean business in this look from @JohnWall in @Moncler. Photo by Keith E. Morrison f…" +03/26/2018,Sports_celeb,@JohnWall,RT @MiltonAChavis: The killa @JohnWall is coming back soon.... on his Brazy J RR wave!! Scary sight! 😤😤 +03/25/2018,Sports_celeb,@JohnWall,RT @marybrown0416: After 12 hours I guess it’s worth it!! #1 #Champs #13u #12u #Deshawn #13 #Devaughn #2 #TeamWall #Grassroots #WallWay @Te… +03/24/2018,Sports_celeb,@JohnWall,"RT @glennconsor: We are all so excited to see @PChenier45 jersey raised to the rafters tonight. Well deserved, well done! @SteveBuckhantz @…" +03/24/2018,Sports_celeb,@JohnWall,👌🏾 https://t.co/bsk3UO1nBy +03/24/2018,Sports_celeb,@JohnWall,"RT @BoysInTheGood: Thanks @JohnWall! +• • • • • +@JWFamFoundation @WashWizards #JohnWall #BoysInTheGood https://t.co/uD78bOzDRR" +03/24/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Tonight’s warm-up shirts 4️⃣5️⃣ + +#Phil45 #DCFamily https://t.co/7ft7RIVDy7" +03/24/2018,Sports_celeb,@JohnWall,Congrats Legend!! https://t.co/QnMV3L7AGv +03/24/2018,Sports_celeb,@JohnWall,RT @WashWizards: Beautiful words from Phil Chenier's children as they congratulate him on being the 5th player in franchise history to have… +03/24/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Great having boysinthegood at tonight’s game! Glad you guys could make it! Keep up the good work! https://t.co/nxKeHlp… +03/24/2018,Sports_celeb,@JohnWall,Congratulations to The Legend Phil Chenier on your jersey retirement! #Phil45 #TheOnly45WeAcknowledgeInDC #DCFamily https://t.co/I0V06JpSc8 +03/24/2018,Sports_celeb,@JohnWall,RT @mikobee813: Thank you @JohnWall for your hospitality! The boys are having a ball and was very excited to meet you! @BaltCoPS @Randallst… +03/24/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Legend and #WallStar. + +@JohnWall congratulates @PChenier45! + +#Phil45 https://t.co/okT8yLOAXU" +03/23/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: DeMarcus Cousins offered to pay for Stephon Clark's funeral, reports @mr_jasonjones https://t.co/ySZYK2FIPY https://t.co/VF…" +03/21/2018,Sports_celeb,@JohnWall,👌🏾 https://t.co/t7nzO3qWvp +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Bid for a chance to meet @Keefmorris & support his FOE Foundation! Get more info & bid here: https://t.co/FMux2P89gW + +#DCF…" +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: @PChenier45 @realtuffjuice NBA Commissioner Adam Silver congratulates Phil, who he calls one of the greatest ambassadors o…" +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: @PChenier45 @realtuffjuice @nilslofgren Love from former Bullet/Wizard and fellow broadcaster @realchriswebber! + +#Phil45…" +03/13/2018,Sports_celeb,@JohnWall,"RT @DefJamRecords: .@YG's SUU WHOOP out now on @vevo! +https://t.co/vQN3MqUmc6 https://t.co/JjTWQsFNT2" +03/11/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: 🚨 Thank you for your submissions! We are no longer accepting submissions. We’ll be in touch! https://t.co/98moPL7Y9K +03/11/2018,Sports_celeb,@JohnWall,"RT @JWFamFoundation: Still time to apply for a prom experience with @seanjohn + #JWFF! #DMV + #Raleigh, NC ONLY! Know of a young man gradua…" +03/09/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/06/2018,Sports_celeb,@JohnWall,RT @SirMeexh: When @JohnWall hit you with this... whole arena be lit 🔥💪🏾 https://t.co/dnoH9n4U7N +03/05/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/04/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/03/2018,Sports_celeb,@JohnWall,RT @GTemp14: These young adults are AMAZING!!!! https://t.co/w2Y3KMfvBu +03/02/2018,Sports_celeb,@JohnWall,"RT @KentuckyMBB: Call to action, #BBN: + +🔵 Catch up on the first two episodes of Inside the Madness +🔵 Get your calendar out and mark the upc…" +03/02/2018,Sports_celeb,@JohnWall,@KentuckyMBB #BBN Lock in +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/02/2018,Sports_celeb,@JohnWall,Congrats! https://t.co/aIqA4JUO6a +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Congratulations to @LYSANDER102 for winning our 1st #JWFFGiveaway! Thanks to everyone that participated! This is just… +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: There is still time to enter our #JWFFGiveaway! Follow @JWFamFoundation & RT for your chance to win this @JohnWall aut… +03/01/2018,Sports_celeb,@JohnWall,"RT @SpecOlympics_DC: Spread the Word, to end the Word! On our Throwback Thursday we take it back a year ago from… https://t.co/N0s8LyCR8A" +03/01/2018,Sports_celeb,@JohnWall,Looking forward to tonight’s game with @specolympics_dc! See yah soon! #TBT to last year’s event. Always one of my… https://t.co/2m06eImkj2 +03/01/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: It’s our first #JWFFGiveaway! Follow @JWFamFoundation & RT for your chance to win this @JohnWall autographed @adidas s… +02/27/2018,Sports_celeb,@JohnWall,RT @SherreeBurruss: Hey! We know that guy! @JohnWall is the default picture for GQ Magazine's latest article on NBA style #WallwiththeShade… +02/27/2018,Sports_celeb,@JohnWall,RT @ZacharyLeonsis: Coolin’ 😎😎😎 @JohnWall https://t.co/LqkI24CKXR +02/27/2018,Sports_celeb,@JohnWall,"RT @DTLR: Hey DC! Come out & meet @neweracap ambassador @johnwall this Saturday, 3/3 at 4pm to launch the #JohnWall Collection – designed b…" +02/27/2018,Sports_celeb,@JohnWall,"Keep up the great work! 👍🏾 RT @BoysInTheGood: @JohnWall Hey, Mr. Wall! We are #BoysInTheGood and we are learning ab… https://t.co/UEhVZRQIzg" +02/26/2018,Sports_celeb,@JohnWall,RT @TrueHoop: Terrible Dan Fegan news. Behind the scenes with him at the 2010 @johnwall draft. https://t.co/a3V684JTQi Later told me that w… +02/25/2018,Sports_celeb,@JohnWall,RT @BigShotsNation: MVP Mom MVP Person. Always a pleasure having Mrs. Wall & the Wall Family at the HoopState Invitational Tournament. An a… +02/25/2018,Sports_celeb,@JohnWall,RT @BigShotsNation: Always a pleasure hosting the HoopState Invitational Tournament with @TeamWallGR @JohnWall program & family & having M… +02/25/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: South African Anglican Cleric. Theologian. Human Rights Activist. Desmond Tutu. #JWFF #BHM https://t.co/ieFmEc8zGg +02/22/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Actor. Director. Producer. Denzel Washington. #JWFF #BHM https://t.co/C1CqnpA4mj +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/UOH66WW91q +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/hfc289LpR3 +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/cVYUYgdUKs +02/18/2018,Sports_celeb,@JohnWall,"RT @HoopDistrictDC: #JohnWall on #LeBronJames and Laura Ingraham: ""We're more than athletes and stuff that is going on in our society and t…" +02/18/2018,Sports_celeb,@JohnWall,💯👌🏾RT @DaTrillStak5: Real ones. No 🧢. Got love for my lil bros. @antdavis23 @johnwall appreciate y’all as always.… https://t.co/521nVgUsVA +02/16/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Lawyer. Writer. Former First Lady of the United States. Michelle Obama. #JWFF #BHM https://t.co/IEMKUYvup1 +02/16/2018,Sports_celeb,@JohnWall,Yessir lil bro keep goin !!RT @taistrickland13: Blessed to receive an offer from Wisconsin! https://t.co/KCgYBgYXDH +02/15/2018,Sports_celeb,@JohnWall,@NipseyHussle https://t.co/6n4HJSFbmI +02/15/2018,Sports_celeb,@JohnWall,Next stop LA! #ASW @neweracap https://t.co/SiIv4YzMnj +02/14/2018,Sports_celeb,@JohnWall,"Facts 💯👌🏾 RT @DrewdotCash: i will, we gone be on the same court soon!!!!" +02/13/2018,Sports_celeb,@JohnWall,Keep fightin bra !!RT @DrewdotCash: How I wake up in the mornings. #LookAlive https://t.co/jbaXMt7JJt +02/12/2018,Sports_celeb,@JohnWall,"RT @abe_squad: ""you wasn't wit me in the gym, you wasn't @JohnWall"" 🔥 https://t.co/DU4u3caZsp" +02/08/2018,Sports_celeb,@JohnWall,"RT @Ballislife: @newsouthpodcast @JumpmanBowman @rod_bridgers @BALLisLIFEeast One of the ACC's best guards, @JumpmanBowman looks up to @joh…" +02/06/2018,Sports_celeb,@JohnWall,"RT @BALLisLIFEeast: So ready for #NoOffSeason vol 2 with @johnwall & the family, coming this summer.. 🔥🔥🔥 https://t.co/dpVhrMndjp" +02/06/2018,Sports_celeb,@JohnWall,"RT @Rachel__Nichols: 🚨DVR ALERT🚨 +@JohnWall is scheduled to pop onto #TheJump tomorrow. (@PaulPierce34 is on the show too, and you KNOW thos…" +02/06/2018,Sports_celeb,@JohnWall,Think you got handles??? Show em off and win a trip to NBA All-Star 2018 complements of @KumhoTireUSA! All you gott… https://t.co/CujRAfYPIu +02/06/2018,Sports_celeb,@JohnWall,Tough bra !! RT @Scott_lewis_23: Shoutout to my guy @JohnWall +02/03/2018,Sports_celeb,@JohnWall,Meet me at #747WarehouseSt. Get your tickets at https://t.co/YC8uovsR1m https://t.co/r5sqD9O1kF +02/02/2018,Sports_celeb,@JohnWall,@ThatPersianGuy lol sour u funny bra +02/02/2018,Sports_celeb,@JohnWall,@IanPierno happy belated bday my man +01/31/2018,Sports_celeb,@JohnWall,@BALLisLIFEeast need it +01/31/2018,Sports_celeb,@JohnWall,"I will always remember the time we shared together as teammates, you were the big brother. I appreciate the advice… https://t.co/o2PSrDqowS" +01/31/2018,Sports_celeb,@JohnWall,@JMCIII yessir for sure tell the lil homies wat up +01/31/2018,Sports_celeb,@JohnWall,Yessir lil bro RT @taistrickland13: Am I in your bag yet👀 @JohnWall +01/24/2018,Sports_celeb,@JohnWall,@JMCIII my guy +01/24/2018,Sports_celeb,@JohnWall,"RT @abe_squad: ""That was the bro before this."" + +Chopped it up with @AntDavis23 and @boogiecousins for @SLAMonline earlier this month. Cover…" +01/24/2018,Sports_celeb,@JohnWall,My guy RT @cmillsnbcs: This article shows all of Johns fans and haters what his journey is and was all about. It’s… https://t.co/YzMfsv1I0D +01/24/2018,Sports_celeb,@JohnWall,Thanks Legend‼️ https://t.co/UqSCERKwvS +01/24/2018,Sports_celeb,@JohnWall,Thanks! https://t.co/jGAydKyrJQ +01/24/2018,Sports_celeb,@JohnWall,Thnx appreciate ya! https://t.co/rSbNoOOXlV +01/24/2018,Sports_celeb,@JohnWall,Yessir RT @getmerecruited: Super 60 Showdown Allstar & SE All-Freshman coach Carisma Lynn had it going on all cylin… https://t.co/od1M6QDh3h +01/24/2018,Sports_celeb,@JohnWall,Yessir RT @DrewHanlen: YEAAAAHHHHH!!! My brother @RealDealBeal23 is an All-Star!!! Proud of you my dude!!… https://t.co/CWez71xjNk +01/24/2018,Sports_celeb,@JohnWall,Already 💯👌🏾RT @LeVelleMoton: U make us Proud nephew @JohnWall ...Luv u boy Keep repine +01/24/2018,Sports_celeb,@JohnWall,@BBROWNLAU my bro +01/24/2018,Sports_celeb,@JohnWall,"Grateful that a kid like me from Raleigh, NC is able to play the game I love each and every day. THANK YOU to my te… https://t.co/ePPBJDCwZD" +01/24/2018,Sports_celeb,@JohnWall,"Congrats to my guy @bradbeal3 on his #NBAAllStar debut! Much deserved and earned! #LA, here we come #BB3 #DCFamily… https://t.co/CDHCFtQ2jZ" +01/15/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Thank you Dr. King for showing us that our words alone won’t get the job done. There must be action. Thank you and yo… +01/15/2018,Sports_celeb,@JohnWall,"Lol my dawgs RT @WashWizards: 24 HOURS LEFT! + +VOTE NOW ✅ | +https://t.co/c1lUgWZpSv https://t.co/tIYQtMA6Vz" +01/14/2018,Sports_celeb,@JohnWall,RT @SLAMonline: We hit up the @JohnWallHoliday Invitational and took note of the tournament’s top stars ➡️ https://t.co/aA3R8IQShH https://… +01/14/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: Just a kid from Raleigh. 9️⃣1️⃣9️⃣ + +#WallWay https://t.co/96symDTmFe" +01/14/2018,Sports_celeb,@JohnWall,@rod_strickland lol my guy/OG !! +01/14/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: DAGGER 🔪 + +@JohnWall #NBAVote https://t.co/2jhKJfdcGT" +01/14/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Watch @JohnWall go for 30 points and 9 assists in a #WizMagic win! + +Then RETWEET to #NBAVote! + +#DCFamily https://t.co/az…" +01/14/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: .@JohnWall is an All-Timer 😎 + +#NBAVote https://t.co/lrlVQkV8dv" +01/08/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Help us send @JohnWall to All-Star in LA! Cast your #NBAVote by RTing! (1 RT = 1 Vote) https://t.co/COovSWCoRd +01/08/2018,Sports_celeb,@JohnWall,"RT @WizardsGWiz: ☝🏼 WEEK LEFT TO VOTE! + +@JohnWall #NBAVote + +1 RT = 1 vote! https://t.co/OFQFGSL3Hw" +01/08/2018,Sports_celeb,@JohnWall,"RT @WashWizards: The hero D.C. deserves. + +@JohnWall #NBAVote + +1 RT = 1 VOTE https://t.co/L1vIH2OWlr" +01/08/2018,Sports_celeb,@JohnWall,@Truth_About_It it’ll change long season buddy +01/07/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: RT = 1 Vote #NBAVote @JohnWall https://t.co/47v5HzVyeD +01/04/2018,Sports_celeb,@JohnWall,#TBT 2013 WH Easter Egg Roll wit @RealDealBeal23 and the OG Emeka #NBAVOTE https://t.co/WvymvE8nb9 +01/04/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Just a rookie from St. Louis. + +Bradley Beal #NBAVote + +#TBT #DCFamily https://t.co/AZDGRASKbK" +01/03/2018,Sports_celeb,@JohnWall,RT @Ballislife: 🔥NEW🔥The @JohnWallHoliday Invitational: OFFICIALLY the MOST LIT Atmosphere in high school 🏀🏀🏀 (MIXTAPE) https://t.co/raO25i… +01/01/2018,Sports_celeb,@JohnWall,"RT @WashWizards: 39 points. 9 assists. 9 rebounds. 🐼 + +Sounds like an All-Star to us. RETWEET to #NBAVote Bradley Beal! https://t.co/ut36Am0…" +12/30/2017,Sports_celeb,@JohnWall,"RT @CoachCRoth: Greatly appreciate the @JohnWall Family, Bill Sewell, all his staff & the volunteers at #TheJohnWall. This is a premiere ev…" +12/28/2017,Sports_celeb,@JohnWall,"RT @WashWizards: We couldn't even fit all of @JohnWall's 2017 highlights into one video. + +Retweet to #NBAVote for #WallStar! https://t.co/A…" +12/27/2017,Sports_celeb,@JohnWall,"RT @WashWizards: He's the youngest player ever to hit 700 3's. Send him to L.A. 🐼 + +RT to #NBAVote Bradley Beal! + +#DCFamily https://t.co/YeH…" +12/26/2017,Sports_celeb,@JohnWall,Wishing you and yours a Merry Christmas! https://t.co/t6WU3H0F9j +12/25/2017,Sports_celeb,@JohnWall,"RT @GMA: .@WashWizards point guard @JohnWall gifts family that has fallen on hard times $1,000 worth of groceries, tickets to a game and pa…" +12/25/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Tune in to @gma tmw morning between 8am and 9am and see how #JWFF shared the spirit of the… https://t.co/Vwqj4xRDvd +12/22/2017,Sports_celeb,@JohnWall,RT @DJQUICKSILVA: “Hey @johnwall look at them over there with the ice grill mad face 😂😂😂😂” https://t.co/8i1rEYYgm5 +12/22/2017,Sports_celeb,@JohnWall,@35_Fitz lol bet bro +12/21/2017,Sports_celeb,@JohnWall,RT @hollafashions: Leader on and off the court. @johnwall #TheWallWay… https://t.co/8c0a0Zzhla +12/21/2017,Sports_celeb,@JohnWall,💯👌🏾RT @JavonteSmart: I watch AI and John wall daily 🤷🏽‍♂️💯🔥#Respect @alleniverson @JohnWall +12/20/2017,Sports_celeb,@JohnWall,@KedowWalker done deal bro +12/20/2017,Sports_celeb,@JohnWall,RT @HoopDistrictDC: Hand drawn 🔥🔥🔥 https://t.co/ZsnXERYDVj +12/20/2017,Sports_celeb,@JohnWall,"Yessir !! RT @JohnWallHoliday: One week from day, the best high school 🏀 tournament in the country. 4 days, 25 game… https://t.co/7inH0WDHhp" +12/20/2017,Sports_celeb,@JohnWall,"RT @WashWizards: Wall with the Shades 😎 + +All fans in attendance for #WizRockets on 12/29 will get a pair of @JohnWall replica sunglasses!…" +12/17/2017,Sports_celeb,@JohnWall,Check out me and @cmillsnbcs talking some of my favorite sneakers tonight at 5:30 on Wizards Gametime #DCFamily… https://t.co/LQxzydokpJ +12/17/2017,Sports_celeb,@JohnWall,"RT @WashWizards: The monuments of our city live among us, not above us.  They are not giants,  but they help us walk tall. And each of us c…" +12/17/2017,Sports_celeb,@JohnWall,RT @WashWizards: #SeasonOfGiving continued today as @RealDealBeal23 played secret Santa at a local @Walmart and surprised families by purch… +12/16/2017,Sports_celeb,@JohnWall,RT @SLAMonline: Kentucky commit Immanuel Quickley (@IQ_GodSon) is the latest five-star PG slated to play for @UKCoachCalipari. https://t.co… +12/16/2017,Sports_celeb,@JohnWall,"RT @JohnWallHoliday: 1️⃣1️⃣ days until #TheJohnWall tips off. + +“Every time I go back into that gym, it’s surreal. I go back to where I go…" +12/15/2017,Sports_celeb,@JohnWall,Appreciate the continuous support 💯👌🏾 RT @KarenCivil: WallWay Pack drops the official video for ‘Beast Mode’:… https://t.co/LgZXvuIiGk +12/15/2017,Sports_celeb,@JohnWall,RT @NavyMemorial: We would like to thank @JohnWall and the @JWFamFoundation for making it possible for 200 kids in the #DC area to see @jum… +12/15/2017,Sports_celeb,@JohnWall,RT @iamsamsesay: Thanks @Johnwall and @JWFamFoundation for inviting @gameplanorg! The kids had an amazing time and enjoyed the movie! https… +12/15/2017,Sports_celeb,@JohnWall,Special thanks to @kevinhart4real for the surprise video message that kicked off the screening of Jumanji Welcome T… https://t.co/8cJg5Nl9tW +12/15/2017,Sports_celeb,@JohnWall,Happy Holidays to the @jwfamilyfoundation’s groups and families that came out last night! 📸 cred: @neddishman https://t.co/ml7i16tU55 +12/15/2017,Sports_celeb,@JohnWall,Last night @JWFamFoundation hosted an advance screening of Jumanji: Welcome To The Jungle for 200 middle/high schoo… https://t.co/w5ECNHlOmI +12/15/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Tonight #JWFF hosted an advance screening of Jumanji: Welcome To The Jungle for 200 middle/high… https://t.co/P5xQgwMj… +12/15/2017,Sports_celeb,@JohnWall,"RT @Alliedimdc: What’s up, DC? #jumanji @JohnWall https://t.co/iO3k3NOP6K" +12/15/2017,Sports_celeb,@JohnWall,"Appreciate that my man RT @TheRock: Yass!! All the candy, popcorn and soda you can eat kids!!! I’ll send the bill t… https://t.co/mG8oM0cClj" +12/14/2017,Sports_celeb,@JohnWall,Yessir !! RT @RealDealBeal23: Good to have my dawg @johnwall back !! #DCFamily https://t.co/WFOJayLS4b +12/14/2017,Sports_celeb,@JohnWall,😎‼️#TBT #WALLWAY https://t.co/zwb9uWXqs8 +12/13/2017,Sports_celeb,@JohnWall,RT @KristinMScott: Still one of my favorite pics. #madisonsquaregarden #webeatuconn #8yearsago @JohnWall https://t.co/733QSynJgt +12/13/2017,Sports_celeb,@JohnWall,"RT @KELLYOUBREJR: @JohnWall and Little Papi Kelly Elf both have GOALS. @johnwall we need an assist from you for the toy drive on Sunday, De…" +12/11/2017,Sports_celeb,@JohnWall,"RT @WashWizards: We've got a @RealDealBeal23 sighting at the @NBASTORE in NYC! + +#DCFamily https://t.co/b9Xor4Vesk" +12/10/2017,Sports_celeb,@JohnWall,RT @WashWizards: 👀 https://t.co/ERLVFyyonJ +12/09/2017,Sports_celeb,@JohnWall,RT @TeamWallElite: @CoachK_Williams @getmerecruited @JayJayUSATODAY @BALLisLIFEeast @stateofhoopsnc @rod_bridgers @JumpmanBowman @JohnWall… +12/08/2017,Sports_celeb,@JohnWall,RT @cmillsnbcs: The kids got a future in walkoff interviews. Well done @JohnWall #DCFamily #NBA #WizSuns https://t.co/GaTCdipCtm +12/08/2017,Sports_celeb,@JohnWall,RT @NBCSWizards: .@JohnWall is out here tryna take @cmillsNBCS' job 😂 https://t.co/8egn2OIi6P +12/07/2017,Sports_celeb,@JohnWall,RT @cmillsnbcs: A positive sign. Look who’s getting up shots after @WashWizards morning shootaround @JohnWall #DCFamily #WizSuns #NBA https… +12/07/2017,Sports_celeb,@JohnWall,RT @Ballislife: SHOW THIS EVENT SOME LOVE!! Let's help pack out the house for @JohnWall's high school basketball tournament!!🔥🔥🏀🔥🔥 https://… +12/07/2017,Sports_celeb,@JohnWall,Make sure y’all go wish my sis @lovelycee_xo a very HAPPY Birthday 🎂 today🎈Luv ya https://t.co/8XMEdRKL7g +12/07/2017,Sports_celeb,@JohnWall,RT @TeamLadyWall: C/O ‘19 PG Carisma Lynn drops 17pts & 3 assists last night for Middle Creek in tough loss against Panther Creek. This you… +12/07/2017,Sports_celeb,@JohnWall,"RT @HumaneRescue: 8-month-old Biscuit is what we in the animal welfare industry call a ""Very Good Boy."" He's gently, friendly, and he alrea…" +12/07/2017,Sports_celeb,@JohnWall,RT @BrightBeginDC: Join @JohnWall in supporting BBI! Every little bits helps the little ones we serve. https://t.co/er5Q8aSqsU Donate today… +12/07/2017,Sports_celeb,@JohnWall,RT @KELLYOUBREJR: Little Papi Kelly Elf hanging with my brother @RealDealBeal23 after his career high of 51 points. Let's keep the momentu… +12/04/2017,Sports_celeb,@JohnWall,Thank u sis RT @MonicaBrown: Thank you to My Bro @johnwall ‘s Family !! On more than one occasion this tour they co… https://t.co/KGPDtBNYde +12/03/2017,Sports_celeb,@JohnWall,"RT @BleacherReport: I have no words 😶 + +(via @AWProductions_) https://t.co/Mu5u4pS8nD" +12/02/2017,Sports_celeb,@JohnWall,"RT @cmillsnbcs: The next episode of One on One with Chris Miller features @johnwall. We talk hitting the biggest shot of his life, sneakers…" +12/01/2017,Sports_celeb,@JohnWall,@dgarrett_msmg my dawgs +11/28/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Today is #GivingTuesday! Join me in supporting DC’s only child and family development center for homeless children. Te… +11/22/2017,Sports_celeb,@JohnWall,RT @isaiahthomas: We never know how strong we are until being strong is the only choice we have!!! +11/20/2017,Sports_celeb,@JohnWall,"RT @KSTV_Sports: Thanks again @JohnWall!! + +The #BBN and @KentuckyVB has loved @KazBrown11! https://t.co/xT4ox1Sc8L" +11/18/2017,Sports_celeb,@JohnWall,RT @JWallCentral2x: https://t.co/6jqKXb6xCj @JohnWall pls comeback 😢 +11/18/2017,Sports_celeb,@JohnWall,"RT @JWFamFoundation: John Wall Family Foundation partnered with The Salvation Army of Raleigh, NC today to bring Thanksgiving Assist to the…" +11/18/2017,Sports_celeb,@JohnWall,RT @HCJames58: Its still surreal that the @JohnWall has his name on the @JohnWallHoliday. #Blessed https://t.co/7dNIK5VAVa +11/18/2017,Sports_celeb,@JohnWall,RT @sthomas_4: The John Wall Holiday Invitational is coming back once again to Raleigh highlighting the best high school basketball teams i… +11/16/2017,Sports_celeb,@JohnWall,Congrats @Max_Scherzer #3XCY #DCFamily https://t.co/je6VCh1OLK +06/24/2018,Sports_celeb,@KlayThompson,This is something that my family and I have been working on for some time and I’m proud to say we are announcing th… https://t.co/qBUrZOajfD +06/19/2018,Sports_celeb,@KlayThompson,"RT @stancehoops: Three Times Dope. + +Celebrate the @warriors Championship with this limited-edition sock. + +https://t.co/xy7y7UFRBX https:/…" +06/18/2018,Sports_celeb,@KlayThompson,Being a back to back champion comes with hard work and proper nutrition. I recover with @chocolate_milk for its nut… https://t.co/j7hTaYLUn5 +06/18/2018,Sports_celeb,@KlayThompson,Excited to announce that I'll be hosting my first basketball camp this summer in Southern California from August 6-… https://t.co/trEszFxCT3 +06/17/2018,Sports_celeb,@KlayThompson,Thanks for riding with us all the way #Dubnation! https://t.co/5eBbd5TSmP +06/15/2018,Sports_celeb,@KlayThompson,Dub Nation! The Water For Life Charity Softball Game is on June 23rd at the Oakland Coliseum. Support my teammate a… https://t.co/g2I5LEKFGG +06/14/2018,Sports_celeb,@KlayThompson,"RT @Fanatics: #DubNation, make sure your Dad is decked out with @warriors gear this #FathersDay! + +Check out #FanaticsExclusive @KlayThomps…" +03/23/2018,Sports_celeb,@KlayThompson,Want to meet me and have a drive on the BMW M Tracks? Here’s your chance – https://t.co/TNRFc6Ka6w #bmw #Mschool… https://t.co/LqqwOWS6hX +03/21/2018,Sports_celeb,@KlayThompson,RT @chocolate_milk: Her game is speed & power. Ours is recovery. An unstoppable combo. Proud to welcome @SloaneStephens to #TeamChocolateMi… +03/05/2018,Sports_celeb,@KlayThompson,"Excited to announce my new banking partner, @OpusBank. The #officialbank of the @ThompsonFamFoun, they have a team… https://t.co/Dem87TOMuq" +03/04/2018,Sports_celeb,@KlayThompson,Excited to meet everyone who purchased the limited edition KT3 Rocco! See you at 5PM! https://t.co/EXHZXuPAKJ +02/27/2018,Sports_celeb,@KlayThompson,"The Warriors, BMW, and I are going green on March 8, see how we’ve gone green through the years on https://t.co/Kdpdbd3cbW #gogreen #bmw #i8" +02/23/2018,Sports_celeb,@KlayThompson,"Behind every “W” is a whole lot of work. I train and recover hard with the real deal recovery drink, low-fat… https://t.co/kpWLnPweUk" +02/20/2018,Sports_celeb,@KlayThompson,"Thanks for having me @wojespn, and for everyone listening to the The Woj Pod. Check it out if you haven’t yet at… https://t.co/5iq7RLBr0u" +02/17/2018,Sports_celeb,@KlayThompson,Had a great time chatting with @wojespn on The Woj Pod. Check it out here: https://t.co/Zz2zwmw8J3​. Thank you to N… https://t.co/HyYf1apo3K +02/16/2018,Sports_celeb,@KlayThompson,Happy Chinese New Year from Me & Rocco! https://t.co/ienF9BYO5k +02/07/2018,Sports_celeb,@KlayThompson,How soon can we wrap? @AntaAmerica https://t.co/uZBYnYl2hO +01/25/2018,Sports_celeb,@KlayThompson,"RT @anthonyVslater: Klay Thompson jokes that he will ""request a trade"" if Steph Curry doesn't get him at the All-Star game and then says he…" +01/20/2018,Sports_celeb,@KlayThompson,Let's Do This! https://t.co/1jOVPRhCsj +01/15/2018,Sports_celeb,@KlayThompson,"Celebrating his legacy not just today, but every day. Honor him by continuing his work and standing up for those wh… https://t.co/4MPXNITlTU" +01/11/2018,Sports_celeb,@KlayThompson,So @JaValeMcGee thought he had a chance against me in @CallOfDuty 😂...Special edition Parking Lot Chronicles straig… https://t.co/Q36jh9WBFJ +01/11/2018,Sports_celeb,@KlayThompson,Congrats to my bro @KDTrey5 on 20k career points. It’s a privilege to witness greatness every night! +01/10/2018,Sports_celeb,@KlayThompson,"Can’t stop, won’t stop. Recovering with @chocolate_milk keeps me going practice after practice. #BuildIt #ad https://t.co/UeIRC9zKQ3" +01/05/2018,Sports_celeb,@KlayThompson,Happy New Year from me and Rocco https://t.co/RrhRhrdE9U +12/25/2017,Sports_celeb,@KlayThompson,"This Christmas, you’re in for a show. Watch @NBA on @ESPN, and see The #GreatestShowman🎩, now playing in theaters.… https://t.co/NWXU11g1S8" +12/24/2017,Sports_celeb,@KlayThompson,Rocco has been waiting by the tree all day! https://t.co/9lnqCG8d7T +12/24/2017,Sports_celeb,@KlayThompson,Whole family getting in the holiday spirit with the new #KT3 @AntaAmerica https://t.co/P7TwdeOGki +12/20/2017,Sports_celeb,@KlayThompson,Had a great time at the toy drive the other day! Thanks @JAKKStoys for coming out and donating all these toys for m… https://t.co/BkGd1f5Xix +12/19/2017,Sports_celeb,@KlayThompson,"#8 all the way!! Three Championships, Eight All-Star Games, Two Scoring Titles, One slam dunk contest championship,… https://t.co/I9upuLeNEx" +12/19/2017,Sports_celeb,@KlayThompson,RT @RyanWardLA: Kobe Bryant on Body Armor (@DrinkBODYARMOR) & Klay Thompson throwing a Gatorade bottle off a press table recently: “I thoug… +12/18/2017,Sports_celeb,@KlayThompson,S/O to @SHGames for hosting us this past weekend! #CallofDutyPartner https://t.co/aKfcN4zmks +12/09/2017,Sports_celeb,@KlayThompson,My workout isn’t complete until I’ve had my @chocolate_milk. #BuildIt #ad https://t.co/phbncP53MY +12/05/2017,Sports_celeb,@KlayThompson,"Support journalism and help fulfill the wishes of our neighbors in need. Subscribe to @eastbaytimes, @mercnews,… https://t.co/336H9IG51i" +11/30/2017,Sports_celeb,@KlayThompson,Shoutout to my boy Robbie Fuller for designing the #KT3 to keep me right on my game. Best shoe yet! https://t.co/nxDTMHeBbG +11/25/2017,Sports_celeb,@KlayThompson,"Great W @WSUMensHoops, keep it goin!" +11/24/2017,Sports_celeb,@KlayThompson,Had a great time donating turkeys from our turkey drive to the children and community of Acorn and West Oakland. Th… https://t.co/1L9AkK94G2 +11/10/2017,Sports_celeb,@KlayThompson,Getting the most out of each practice. That’s why I keep my @chocolate_milk recovery game on-point. #BuildIt #ad https://t.co/ze708Pn0vM +11/03/2017,Sports_celeb,@KlayThompson,Ever wonder what my pre-game ritual is? Find out here https://t.co/eFsBxBuhqH https://t.co/0wBsYMERzn @mercnews… https://t.co/laPRRDD3RL +11/02/2017,Sports_celeb,@KlayThompson,"Thanks to all the fans and partners that pledged alongside me for this campaign! Still much to be done, but happy w… https://t.co/Cab2lr18Qg" +10/29/2017,Sports_celeb,@KlayThompson,"Over 1,100 of us pledging for our friends in Nor Cal. 1 last game tonight to reach our goal, hope you'll join us!… https://t.co/4CNpA6Cp6D" +10/27/2017,Sports_celeb,@KlayThompson,#BayAreaUnite https://t.co/VI0xBEREp3 +10/27/2017,Sports_celeb,@KlayThompson,2 games left in my Points with Purpose campaign for fire relief. Help us reach our new goal and let’s get after it.… https://t.co/OIyDEW8Dad +10/27/2017,Sports_celeb,@KlayThompson,"934 people pledging w me, over $4000 per point for relief efforts. I'm blown away. 2 games left, let's keep this up! https://t.co/IRUXEdItDM" +10/25/2017,Sports_celeb,@KlayThompson,"Thx to the generosity of fans & partners, we're up to over $2700 per point scored this week! Let's keep growing tha… https://t.co/F45DUWNUHe" +10/24/2017,Sports_celeb,@KlayThompson,@FaZe_Rain Appreciate you bro! +10/23/2017,Sports_celeb,@KlayThompson,Thank you to everyone who has pledged to my Points With Purpose campaign! You can still donate by going to… https://t.co/QUgplByUeF +10/23/2017,Sports_celeb,@KlayThompson,"RT @Kimborania: I pledged $1 per point to ""Klay Thompson's Points with Purpose on https://t.co/mlEyQ55oc0! https://t.co/ni73HBW0jg via @ple…" +10/23/2017,Sports_celeb,@KlayThompson,"RT @breesespieces: I donated $40 to ""Klay Thompson's Points with Purpose on https://t.co/NEdMvjuWlE! https://t.co/Bg9gQEtxbU via @pledgeit" +10/21/2017,Sports_celeb,@KlayThompson,@rastaclat @pledgeit Thanks guys! +10/21/2017,Sports_celeb,@KlayThompson,@oitzray @pledgeit Thank you Raymond! +10/21/2017,Sports_celeb,@KlayThompson,@erin_rose80 Thank you Erin! +10/21/2017,Sports_celeb,@KlayThompson,"amazing, thank you!! https://t.co/46OMUGY2Nx" +10/20/2017,Sports_celeb,@KlayThompson,@catherinejoysf thank you!! +10/20/2017,Sports_celeb,@KlayThompson,@MeaCuppa @pledgeit thank you! +10/20/2017,Sports_celeb,@KlayThompson,"@GregYoungJr @pledgeit awesome, thanks!" +10/20/2017,Sports_celeb,@KlayThompson,@Murrow51 @pledgeit thank you! +10/20/2017,Sports_celeb,@KlayThompson,Thank you! Any amount helps! https://t.co/d1TvLMb7I6 +10/20/2017,Sports_celeb,@KlayThompson,"During our next 3 home games, I'm pledging $1000 per point to North Bay fire relief. Join me by pledging any amount… https://t.co/cO5hduvCNy" +10/13/2017,Sports_celeb,@KlayThompson,@rogerfederer Name the time and place. Game on! +10/08/2017,Sports_celeb,@KlayThompson,@ANTAsportswear surprised me with a new pair of KT3’s “Gold Blooded”. Check the next game. 🙌 https://t.co/L2HoARxbC4 +10/05/2017,Sports_celeb,@KlayThompson,Thanks Shanghai for the very early morning welcome! 😂 https://t.co/8GQpZd8TSp +09/26/2017,Sports_celeb,@KlayThompson,Just wanted to say thank you to all the firefighters and first responders working so hard to put this fire out. https://t.co/KRl4z4zTI4 +09/20/2017,Sports_celeb,@KlayThompson,Got Behind The Wheel of an Indy Car at #GoProGP. Experience the drive with me! https://t.co/xOS3rwFk8y https://t.co/6EjJ4moFaG +09/12/2017,Sports_celeb,@KlayThompson,"Hey #DubNation, Want to come kick with me and @DrinkBODYARMOR? Enter here by Friday: https://t.co/OzsdN9Ro9d CA ON… https://t.co/cWTALAPpi2" +09/08/2017,Sports_celeb,@KlayThompson,#tbt to the Klay Court Dedication at KIPP Bridge Academy. It's an honor to give back to the Oakland youth & communi… https://t.co/G0S23xCg6C +08/24/2017,Sports_celeb,@KlayThompson,Surprised some future pro 🏀 players on their home court. Check it out via @chocolate_milk + CBS Sports #BuildIt #ad https://t.co/TGWrK9zXe6 +08/01/2017,Sports_celeb,@KlayThompson,That was my sinker https://t.co/OTNeOYKUo5 +06/27/2017,Sports_celeb,@KlayThompson,You don’t become a champ without hard work & proper nutrition. @chocolate_milk has nutrients to refuel and protein… https://t.co/u70vV29pxc +06/23/2017,Sports_celeb,@KlayThompson,Dub Nation! Join my teammates at JaVale's Charity Softball Game at Oakland Coliseum this Saturday. For tickets visi… https://t.co/e75R69TVvM +06/05/2017,Sports_celeb,@KlayThompson,RT @mdbergin: #NBAFinals subplot: The #Warriors are 29-1 since @KlayThompson signed a toaster on March 13. Didn't play in the loss https://… +06/01/2017,Sports_celeb,@KlayThompson,"To be a pro athlete, you have to be a perfectionist. Take a look via @chocolate_milk + CBS Sports. https://t.co/TiupTy8TTs #BuildIt #ad" +06/01/2017,Sports_celeb,@KlayThompson,"RT @warriors: ""It's an honor to be here for the 3rd time. Dreamed of this this as a kid & still appreciate it now. I don't take it for gran…" +05/30/2017,Sports_celeb,@KlayThompson,Obsessed about bringing a title back to The Bay. #ObsessionIsNatural @DrinkBODYARMOR https://t.co/hW1J1a73Db +05/15/2017,Sports_celeb,@KlayThompson,#ObsessionIsNatural....ComingSoon. @DrinkBODYARMOR https://t.co/7fbVWhnreu +05/05/2017,Sports_celeb,@KlayThompson,Want a peek into my daily life & game day rituals? I gave @chocolate_milk & CBS Sports a look. https://t.co/c3zAUEuydX #BuildIt #ad +03/31/2017,Sports_celeb,@KlayThompson,Check out the behind the scenes from my @chocolate_milk shoot. #TBT 💪 https://t.co/f7KgEA9ZXj +03/23/2017,Sports_celeb,@KlayThompson,My new 🔥 @stancehoops socks collection just dropped! Check them out here: https://t.co/6yXOVWaSMk https://t.co/i9R9SXUDrP +03/12/2017,Sports_celeb,@KlayThompson,"Let's go #DubNation! Gear up for the playoffs. I'll be at Old Navy (801 Market St, SF) from 4-5pm today. Come out and show your pride." +03/09/2017,Sports_celeb,@KlayThompson,.@chocolate_milk is the right move after a tough workout. Strong recovery so I can do it again tomorrow. #BuildIt… https://t.co/fGWuEklyNP +02/28/2017,Sports_celeb,@KlayThompson,"RT @anthonyVslater: Klay Thompson, drilling out a slice of pizza, talks Warriors win in Philly and Kevin Hart being a ""non-factor"" https://…" +02/28/2017,Sports_celeb,@KlayThompson,Excited to announce I’m BUILT WITH @chocolate_milk! The right mix of protein & carbs makes it my go-to post-game.… https://t.co/eYc0TUqjoT +02/23/2017,Sports_celeb,@KlayThompson,Had a great time this weekend. Thanks to everyone that came out. #NBAAllStar #StateFarmSaturday https://t.co/zZK9ytIAbw +02/21/2017,Sports_celeb,@KlayThompson,Great night with @stancehoops. #stancespades #NBAAllStar https://t.co/FAzkERWOnH +02/20/2017,Sports_celeb,@KlayThompson,Shoutout to @k_obrand for collaborating with me and @antaamerica to make these custom shoes in honor of my grandfa… https://t.co/hWBIktdNEv +02/19/2017,Sports_celeb,@KlayThompson,Another #StateFarmSaturday in the books. Until next year #NBAAllStar +02/19/2017,Sports_celeb,@KlayThompson,Shoutout to @stancehoops for showing love and donating to the cause. 🙌 https://t.co/b1c7c9Rlr9 +02/19/2017,Sports_celeb,@KlayThompson,Thanks @DrinkBODYARMOR for keeping me hydrated this week while we did work this week with @nbacares. #NBAAllStar https://t.co/VEmkBCR8pY +02/19/2017,Sports_celeb,@KlayThompson,It's time! #StateFarmSaturday is underway on TNT. Tune in now! +02/18/2017,Sports_celeb,@KlayThompson,Tonight I'll be shooting for Ranfurly Homes for Children! #BucketsforKids https://t.co/4TGuRWiull +02/16/2017,Sports_celeb,@KlayThompson,Almost time for another #StateFarmSaturday. Who’s ready? Don’t forget to check it out on 2/18 at 8pm EST! +02/14/2017,Sports_celeb,@KlayThompson,Ready to bring it again for #StateFarmSaturday. Watch all the action on 2/18 at 8pm EST on TNT. Don't miss it! +01/03/2017,Sports_celeb,@KlayThompson,I see u @WSUMensHoops!! https://t.co/83cRrFMeGs +01/03/2017,Sports_celeb,@KlayThompson,Good win 2night startin off 2017 the right way. We appreciate u DubNation showing up and supporting us every night! +12/31/2016,Sports_celeb,@KlayThompson,U will be missed my friend +12/31/2016,Sports_celeb,@KlayThompson,RIP Walt Simon. I cherish the times u were in the gym grinding with us every summer. Those times molded me into the player I am 2day. +12/18/2016,Sports_celeb,@KlayThompson,Go Cougs https://t.co/aejhk7pKh4 +12/15/2016,Sports_celeb,@KlayThompson,RIP Craig. You will be missed greatly by every single hoops fan out there. Sending my condolences to his family #Legend #sagerstrong +12/10/2016,Sports_celeb,@KlayThompson,"Catch me at leftys on the 16th!! +For tix 📞 650-697-2274 https://t.co/qlAHtbFZZE" +12/07/2016,Sports_celeb,@KlayThompson,You wanna make it rain 👌🏽 https://t.co/wVXzMKx6On +12/07/2016,Sports_celeb,@KlayThompson,I appreciate @AntaAmerica for making a special edition KT2 to commemorate my 60 piece a couple nights ago. Get em now in the link above if +12/06/2016,Sports_celeb,@KlayThompson,S/O to my squad for setting me up 2night! I don't think I had to take more then 5 dribbles the whole game lol +11/28/2016,Sports_celeb,@KlayThompson,DubNation! Come join me and my @stancehoops fam tomorrow at @ShoePalace. Gonna be 🔥 https://t.co/f4wtgKicM7 +11/25/2016,Sports_celeb,@KlayThompson,"So this is what @champagnennuts view looks like at ""work""...pretty easy gig if u ask me!! https://t.co/EiLRSjjABL" +11/03/2016,Sports_celeb,@KlayThompson,Got Rocco on my new @stancehoops socks! 🔥🔥 https://t.co/wuJNwZdYnt https://t.co/6ELlqEfYDx +10/09/2016,Sports_celeb,@KlayThompson,So happy I'm witnessing my cougs ball out tonight. Let's go @WSUCougars +09/23/2016,Sports_celeb,@KlayThompson,RT @KMillar15: My man @klaythompson taking a few swings early before #VinScullyDay and I thought he had a tick… https://t.co/zgMtYZR3m8 +09/20/2016,Sports_celeb,@KlayThompson,Golden memories with the team! Watch all the videos from the journey to Rio on the @SamsungMobileUS #GearVR. #ad https://t.co/ilvO6WHgRt +09/15/2016,Sports_celeb,@KlayThompson,"Gloves up! Live from the Empower The Athlete Within event with @GQ, @INFINITIUSA and @Furthermore. #Q60" +09/15/2016,Sports_celeb,@KlayThompson,I'm celebrating the athlete within at Equinox San Mateo with the @INFINITIUSA @Furthermore @GQMagazine #Q60 Empower yourself! +08/23/2016,Sports_celeb,@KlayThompson,U-S-A! Feels good to bring home gold. Episode 2 of 'Chasing The Dream'. Watch on the @SamsungMobileUS #GearVR #ad https://t.co/5UnSP02n5d +08/18/2016,Sports_celeb,@KlayThompson,👀 Check out 'Chasing The Dream' & watch our journey to Rio. Shot with the @SamsungMobileUS #Gear360. https://t.co/C7PrAotQir #ad +08/16/2016,Sports_celeb,@KlayThompson,How Cuz playin with a coconut in his hand tho 🤔😂😂😂😂 @boogiecousins https://t.co/oJmIAJMMdX +08/07/2016,Sports_celeb,@KlayThompson,😂😂😂 let joc and roc live!! https://t.co/rcDp0w25fb +08/01/2016,Sports_celeb,@KlayThompson,G'd up from the 👣 up 🇺🇸 https://t.co/3NYZWi5xPQ +07/24/2016,Sports_celeb,@KlayThompson,My guy @RyanSheckler put on a show today and made it look easy. Congrats on the win fam!! 🏆 https://t.co/ntxgdQgrOv +06/30/2016,Sports_celeb,@KlayThompson,RT @getshottracker: @KlayThompson Virtual Basketball camp starts July 10th with a live hangout with the All-Star himself. #Playlikeklay htt… +06/27/2016,Sports_celeb,@KlayThompson,#UNITE https://t.co/F9pelG38a8 +05/30/2016,Sports_celeb,@KlayThompson,Happy Memorial Day to all those who have faithfully served to protect our freedoms. We appreciate you!! +05/11/2016,Sports_celeb,@KlayThompson,"RT @MLBONFOX: TRAYCE THOMPSON SPLASH! + +Thomspon WALK-OFF home run, @Dodgers defeat the Mets 3-2." +05/10/2016,Sports_celeb,@KlayThompson,Congrats to my brother @StephenCurry30 goin back to back! #Unanimous. Keep making history it's an honor to be a part of it!! +04/26/2016,Sports_celeb,@KlayThompson,“@getshottracker: Warriors set an NBA record with 21 💦💦🏀🏀🏀 from deep!!” Thx for the continued support @getshottracker +04/21/2016,Sports_celeb,@KlayThompson,Raspberry Beret on repeat all day. RIP to the Legend Prince!! +04/06/2016,Sports_celeb,@KlayThompson,#Dubnation - ditch artificial sports drinks & switch to the #1 natural sports drink @drinkbodyarmor #Switch2Natural https://t.co/uSpg28vMNt +03/28/2016,Sports_celeb,@KlayThompson,Practice. Repetition. Nothing great ever comes easy. https://t.co/mumu8iHRs1 @getShotTracker #everyshotcounts https://t.co/ilXQHc0bhS +03/19/2016,Sports_celeb,@KlayThompson,RT @MychelThompson: 😎 #doyers https://t.co/B2OSaKQGhJ +03/19/2016,Sports_celeb,@KlayThompson,RT @DrinkBODYARMOR: Team @DrinkBODYARMOR represent: @KlayThompson @DezBryant #WaddupTho https://t.co/KpoccKqPSk +03/10/2016,Sports_celeb,@KlayThompson,I'm hearing the @Broncos r in need of a QB. I know Mr. Buckets is still a free agent @Mospeights16 !!! +03/02/2016,Sports_celeb,@KlayThompson,🔥🔥🔥 @stancehoops https://t.co/3LxDup5MKN +02/13/2016,Sports_celeb,@KlayThompson,Taking over the @DrinkBODYARMOR Twitter handle in 10! Hit me with your questions there +02/13/2016,Sports_celeb,@KlayThompson,ASK ME ANYTHING! Tomorrow @ 2pm EST I’m taking over the @DrinkBODYARMOR handle. Submit Q’s starting now w/ #AskKlay https://t.co/ajMeZ4Dj8R +02/11/2016,Sports_celeb,@KlayThompson,Look forward to meeting everyone tomorrow at 6pm! I'll be at @Kia MVP Court at #NBACentreCourt! #NBAAllStarTO +02/08/2016,Sports_celeb,@KlayThompson,"Bay Area, meet me tonight @LeftysSports w/ @FansAuthentic. #DubNation #FAexclusive https://t.co/rKxQQ4WCjo" +01/22/2016,Sports_celeb,@KlayThompson,.@DrinkBODYARMOR & I giving u the chance to fly to LA & watch us take on @KobeBryant. Check info within pic! https://t.co/mGE1xqXzy9 +01/18/2016,Sports_celeb,@KlayThompson,One of the first paintings I ever bought and one of my favorites. His legacy and message is timeless. Happy MLK day https://t.co/L4h6EOesL2 +01/17/2016,Sports_celeb,@KlayThompson,@MychelThompson https://t.co/WmfGlkZu04 +01/17/2016,Sports_celeb,@KlayThompson,Kookslams/kookoftheday IG is the 🐐 +01/06/2016,Sports_celeb,@KlayThompson,Nice work @getshottracker on your new multi-player tech. #CES2016 #everyshotcounts +12/23/2015,Sports_celeb,@KlayThompson,The Juntao cameo was the best part of Star Wars #spoileralert +11/23/2015,Sports_celeb,@KlayThompson,.@Money23Green- yes sir! Dope action on #SiegeDay. Watch: https://t.co/a00yi2XjE4 #ad +11/23/2015,Sports_celeb,@KlayThompson,RT @hbarnes: 15! #DubNation +11/20/2015,Sports_celeb,@KlayThompson,"It takes a team to win, right @Money23Green? just like in @Rainbow6Game. Lets get it done #DubNation" +11/15/2015,Sports_celeb,@KlayThompson,Dubs win and the cougs win couldn't ask for a better night +11/15/2015,Sports_celeb,@KlayThompson,Gaaaaaaaaaaaabe! Let's go +11/09/2015,Sports_celeb,@KlayThompson,RT @bucketsworth: 35 mins till I'm live with @getshottracker get your questions ready +11/02/2015,Sports_celeb,@KlayThompson,Come hang with me live on @getshottracker https://t.co/UFGZh5MY9V +11/01/2015,Sports_celeb,@KlayThompson,RT @MychelThompson: #ForzaVarese https://t.co/MIuf6lqqrT +11/01/2015,Sports_celeb,@KlayThompson,RT @Mbezz13: 😔 +10/28/2015,Sports_celeb,@KlayThompson,It's not about the numbers or the individual accolades. It's about these moments u share with your… https://t.co/ssG2AXHVxH +10/26/2015,Sports_celeb,@KlayThompson,The NBA family lost a great guy today. RIP Flip. Sending my condolences to his team and family https://t.co/tu07ZXCjTA +10/22/2015,Sports_celeb,@KlayThompson,Blessed and thankful for the opportunity!! https://t.co/OuNdACMcd9 +10/19/2015,Sports_celeb,@KlayThompson,A tough weekend for the Thompson fam. But also a great weekend of celebration for Paul and Patty who… https://t.co/sVnse88YQW +10/17/2015,Sports_celeb,@KlayThompson,"RT @JayBilas: Almost fell for the bait, almost fell for the hate. And, I'm the same one that let all y'all eat off my plate. I gotta go to …" +10/16/2015,Sports_celeb,@KlayThompson,Happy birthday @brockm12. Too many good times on the Palouse and around the world with my guy! #duplex #boyz #bjornstadstwin +10/15/2015,Sports_celeb,@KlayThompson,Great day to be a warrior https://t.co/ssSFB081an +10/14/2015,Sports_celeb,@KlayThompson,RT @warriors: Watch out SF - @KlayThompson & @Money23Green have the key to the city! 🔑 http://t.co/CsGSQFcaLP +10/12/2015,Sports_celeb,@KlayThompson,RT @Be_LikeIKE: #SKYBLUE ⛅️ +10/12/2015,Sports_celeb,@KlayThompson,Rocco's new spot Fort Funtson #SF http://t.co/ayxcxAK2H7 +10/11/2015,Sports_celeb,@KlayThompson,RT @getshottracker: Primetime is nearing. Get ready w/ @KlayThompson & our experts +70 new drills. The KT3000 starts 11/1. You in? http://t… +10/11/2015,Sports_celeb,@KlayThompson,Let's go cougs!!! Woooo!!! Too hyped right now +10/10/2015,Sports_celeb,@KlayThompson,Maya Moore cold blooded +10/06/2015,Sports_celeb,@KlayThompson,Thanks for the amazing reception San Jose!! Dubs fans are the best in the world!! #DubNation #TheBaysTeam +10/04/2015,Sports_celeb,@KlayThompson,I would pay a lot of money for an original ABA ball +10/02/2015,Sports_celeb,@KlayThompson,Still can't believe what happened in Roseburg. Sending my thoughts and prayers to the families affected by this unimaginable act of violence +10/01/2015,Sports_celeb,@KlayThompson,DubNation please wish our leader @SteveKerr a speedy recovery. His presence on the floor will be greatly missed during his time off +09/27/2015,Sports_celeb,@KlayThompson,RT @taliqdavis11: Went to go meet klay Thompson http://t.co/K40THKIMvF +09/26/2015,Sports_celeb,@KlayThompson,"RT @Athletics: One pitch, three points! Nice throw @KlayThompson. #GreenCollar 🎥 http://t.co/WudKNx4mY6" +09/15/2015,Sports_celeb,@KlayThompson,"RT @brodiebrazilCSN: Yep, @KlayThompson's bro just went #Splash against the #Athletics. http://t.co/xZkGJyqvH9" +09/13/2015,Sports_celeb,@KlayThompson,RT @bward09wsu: @klaythompson go titans. +09/13/2015,Sports_celeb,@KlayThompson,The better team came to play today sorry bro https://t.co/WfcvA55h5J +09/04/2015,Sports_celeb,@KlayThompson,Simply put this video is just amazing. Gets me so hyped to play in front of the best fans in the world this season https://t.co/BQmJQ1twnz +09/03/2015,Sports_celeb,@KlayThompson,Join me in the Crimzone w/ the O’Brien Trophy this Sat. Let’s pack this place Cougs! @zzucru @wsucougfb @CougarAthFund @WSUCougars #GoCougs +09/03/2015,Sports_celeb,@KlayThompson,Check out the new @DrinkBODYARMOR vehicle #UpgradeYourSportsDrink http://t.co/xVeGeKH0UX +08/31/2015,Sports_celeb,@KlayThompson,😂😂😂😂😂 https://t.co/ZGdjYpPlZK +08/26/2015,Sports_celeb,@KlayThompson,My job takes me around the world and I am very grateful for it. Thanks for the fun interview @TravelLeisure! https://t.co/YrwzTH9ZX9 +08/26/2015,Sports_celeb,@KlayThompson,RT @BDA_Sports: Happy #NationalDogDay from @KlayThompson & Rocco! http://t.co/8LTeliXNdn +08/26/2015,Sports_celeb,@KlayThompson,@espnSteveLevy @BBTN that's big time Steve ✊ +08/26/2015,Sports_celeb,@KlayThompson,I hate to admit it but Trayce might be the best overall athlete in the fam lol +08/26/2015,Sports_celeb,@KlayThompson,RT @whitesox: Recap: Trayce provides clutch hitting in @WhiteSox victory. http://t.co/hhY0lkiygM http://t.co/5Qu9xXzQQ8 +08/26/2015,Sports_celeb,@KlayThompson,"RT @whitesox: Have a night, Trayce. 3-4, 3 RBI's, now batting .522 on the season! http://t.co/UuWklh1Dks" +08/26/2015,Sports_celeb,@KlayThompson,"RT @whitesox: #SOXWIN Final: #WhiteSox 5, Red Sox 4. http://t.co/8A4sU1HYR4" +08/23/2015,Sports_celeb,@KlayThompson,Day 1s @hbarnes https://t.co/jPaH8e570J +08/23/2015,Sports_celeb,@KlayThompson,@brockm12 😈...congrats @andrewbogut ...ur 🍍 game still weak lol https://t.co/ancdAm5qsq +08/23/2015,Sports_celeb,@KlayThompson,RT @whitesox: Trayce didn't waste any time getting the #WhiteSox on the board in the 2nd. http://t.co/gi7XIU4Obx http://t.co/ULVbQDSvtd +08/12/2015,Sports_celeb,@KlayThompson,😂😂😂😂 welcome to the show rookie https://t.co/lU7WcSmcLc +08/12/2015,Sports_celeb,@KlayThompson,Lets goooooooooo!!! I see u trizzy! https://t.co/i1as5hsV6C +08/05/2015,Sports_celeb,@KlayThompson,RT @MychelThompson: The big 3 https://t.co/Jvl2L98MMl +08/05/2015,Sports_celeb,@KlayThompson,RT @joemclean15: In the Show. Trayce Thompson #perseverance https://t.co/RGHHrD3LC1 +08/04/2015,Sports_celeb,@KlayThompson,RT @Dj_E5QUIRE: Spent this last Sunday giving back to the kids of the #SpecialOlympics with @klaythompson! Always fun… https://t.co/ZdxQu7P… +08/02/2015,Sports_celeb,@KlayThompson,Yessir makes me proud to see all the hard work u put in payin off T https://t.co/EGexSF8HjK +07/30/2015,Sports_celeb,@KlayThompson,Amen https://t.co/HQPXVEhAvu +07/19/2015,Sports_celeb,@KlayThompson,Mick fanning a beast for that +07/17/2015,Sports_celeb,@KlayThompson,"RT @MychelThompson: Blessed for the opportunity, this game can take u all over the world...excited to be joining… https://t.co/XAG3885LME" +07/09/2015,Sports_celeb,@KlayThompson,Proud of @JustHolla7 for signing with the Hawks. One of the hardest workers I've been around congrats my man! +07/07/2015,Sports_celeb,@KlayThompson,"It's tough to see my big bro D Lee go, Boston gotta great player and true pro. A true vet who looked… https://t.co/D1msdyV6n8" +07/02/2015,Sports_celeb,@KlayThompson,Excited to be nominated for an @ESPYS award for Best Record Breaking Performance! http://t.co/5EXvqshXhk +06/27/2015,Sports_celeb,@KlayThompson,DONE @getshottracker! Now for some R&R. #KlayCamp see you Sun 5:00 PDT for live awards. http://t.co/H4UTWJfqPl http://t.co/6TlGWCD1Jy +06/26/2015,Sports_celeb,@KlayThompson,5 down 1 to go @getshottracker. Live feed awards Sun 5:00 pm PDT. Join here. http://t.co/H4UTWJfqPl #KlayCamp http://t.co/NPS0VEx1IT +06/26/2015,Sports_celeb,@KlayThompson,Thanks @mophie for helping me stay charged http://t.co/tdah30QxcZ +06/25/2015,Sports_celeb,@KlayThompson,"@getShotTracker Matthew5 up top at 90%, but no Day 4 yet. JordanTreyBoyd on it early today w/92%. #KlayCamp http://t.co/pKsiU2fzps" +06/28/2018,Sports_celeb,@WWERomanReigns,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/26/2018,Sports_celeb,@WWERomanReigns,"West coast vest!!! Ahhhh yessir, My close friends @KotulskiGear are a constant staple for me felling good, looking… https://t.co/a70CV9LMxW" +06/26/2018,Sports_celeb,@WWERomanReigns,"Take your eyes off the prize, you may lose it. I know where I’m going, I know what I want. #MyYard #Raw #B2R" +06/24/2018,Sports_celeb,@WWERomanReigns,"This isn’t a college mat or an octagon. This is the squared circle, aka My Yard. So do yourself a favor Bob, don’… https://t.co/yXFCWQF5vh" +06/23/2018,Sports_celeb,@WWERomanReigns,RT @StephMcMahon: #Emmys MEET #RAW25. At over 1300 episodes #RAW is the longest running weekly episodic television show in U.S. history. R… +06/20/2018,Sports_celeb,@WWERomanReigns,"Don’t get attached to it, cuz I’m not! 🤣 https://t.co/wqg26LbHPQ" +06/19/2018,Sports_celeb,@WWERomanReigns,"I mean it when I say it, this is #MyYard. Doesn’t matter how many you put in the match at #ExtremeRules, I’m only f… https://t.co/QLYyQm1fh8" +06/19/2018,Sports_celeb,@WWERomanReigns,"RT @DOMTIBERI: .@WWERomanReigns please share. + +We do not want to see any other child become a statistic. Please support Maria's Ride & help…" +06/18/2018,Sports_celeb,@WWERomanReigns,"Match-by-match, city-by-city. That’s what’s built the #RomanEmpire. Every time I walk in the ring, it’s an opportun… https://t.co/znQmkqAy3b" +06/17/2018,Sports_celeb,@WWERomanReigns,"Everyone wants to make a name. +They better be ready to fight for it. Because I always am. +#MyYard #B2R #MITB" +06/16/2018,Sports_celeb,@WWERomanReigns,"RT @WWE: .@WWERomanReigns looks to make Melbourne Australia's @MCG his yard on Saturday, October 6. Believe that. #WWESSD https://t.co/4eqm…" +06/09/2018,Sports_celeb,@WWERomanReigns,Big words from a scared man. You want to make a challenge? Get ready for the biggest fight of your career. Just ano… https://t.co/i8Nt07VkkQ +06/07/2018,Sports_celeb,@WWERomanReigns,RT @WWE: #TheBigDog @WWERomanReigns walks the red carpet at #WWEFYC! https://t.co/n2sublAPsn +06/07/2018,Sports_celeb,@WWERomanReigns,"Proud to take part in the first #WWEFYC. @WWE and its Superstars have created so many memories over the years, it w… https://t.co/JvJlimHuTX" +06/04/2018,Sports_celeb,@WWERomanReigns,Yes ma’am. Best days are always ahead. Keep working at it. #YouCanYouWill #Progression https://t.co/oBK1LH1tss +06/02/2018,Sports_celeb,@WWERomanReigns,"RT @WWEShop: Unleash the #BigDog! New @WWERomanReigns tee now available at #WWEShop. #WWE #RomanReigns +https://t.co/xHhn7mdzvo https://t.co…" +05/28/2018,Sports_celeb,@WWERomanReigns,"In honor of Memorial Day, Monday #WWE will donate 10% of all #WWEShop proceeds to @HireHeroesUSA. Gear up and suppo… https://t.co/AGXYW1ZOvF" +05/27/2018,Sports_celeb,@WWERomanReigns,"First of all, it was a grown man that approached me while I was feeding my sons breakfast and talking to my daughte… https://t.co/q8TxUEYtfz" +05/26/2018,Sports_celeb,@WWERomanReigns,My heart and prayers go out to you and your family. Stay strong and continue spreading the word. A difference can… https://t.co/jyuzgHZBy6 +05/22/2018,Sports_celeb,@WWERomanReigns,He took his shot last night. He’ll see what it’s like to step out of line in #MyYard at #MITB. #B2R https://t.co/envvqrHlv1 +05/19/2018,Sports_celeb,@WWERomanReigns,#WWEParis was great!!! Headed to see the Eiffel Tower for the first time ever!!! #WWE +05/17/2018,Sports_celeb,@WWERomanReigns,"Today is NF awareness day! Help spread awareness! + +Neurofibromatosis (NF) is an incurable genetic condition that c… https://t.co/GCari7s98N" +05/15/2018,Sports_celeb,@WWERomanReigns,"Last week you stepped up. +This week you got knocked down. +Be smart. Stay there. #B2R #Raw" +05/13/2018,Sports_celeb,@WWERomanReigns,"Might have made a name for yourself elsewhere, but I wouldn’t plan on making it off mine. This is #Raw and it’s… https://t.co/XXTm6X7149" +05/07/2018,Sports_celeb,@WWERomanReigns,"If the briefcase is the only way to get back what is rightfully mine, so be it.... +#MITB is my golden ticket. #Raw https://t.co/ySHU1kcWEF" +05/07/2018,Sports_celeb,@WWERomanReigns,"It’s not always about titles...it’s about respect and proving who runs the yard. +Another night. Another point made. #B2R #WWEBacklash" +05/02/2018,Sports_celeb,@WWERomanReigns,It’s important to support young female athletes in every sport because one day...it’ll be #TheirYard. #SheIs https://t.co/UJ7RoBhXBd +05/02/2018,Sports_celeb,@WWERomanReigns,"Selfie videos on #Raw, all over Brock’s jock on #SDLive....busy week for Samoa Joe. + +.. Lots of talk for a man who’… https://t.co/D0aKQpxMsA" +04/27/2018,Sports_celeb,@WWERomanReigns,"Nothing in @WWE has ever been “given” to someone. You have to take every inch, especially from an athlete like Broc… https://t.co/kAouIoeLpQ" +04/26/2018,Sports_celeb,@WWERomanReigns,"RT @Turki_alalshikh: أعظم حدث في تاريخ WWE 💪🏼 + +هنا في السعودية 🇸🇦 + + #أعظم_رويال_رامبل https://t.co/mQ7Zg0H5De" +04/25/2018,Sports_celeb,@WWERomanReigns,Huge thanks to all the @Redskins staff and players for sharing their great facility with @TitusONeilWWE and myself.… https://t.co/RZvS8nJb1Z +04/24/2018,Sports_celeb,@WWERomanReigns,"Been wheels up for two weeks. +South Africa, St. Louis, now Saudi Arabia for #WWEGRR. Luggage is gonna be a little… https://t.co/3AAxZfvPBT" +04/18/2018,Sports_celeb,@WWERomanReigns,Long way to go to get your ass whooped... #WWECapeTown https://t.co/HAjpyCAXfV +04/17/2018,Sports_celeb,@WWERomanReigns,I miss my Brother so much. He will be forever loved and never forgotten. #RIPMatt +04/10/2018,Sports_celeb,@WWERomanReigns,"Any show. +Any city. +Any country. +Any opponent. + +I’ll fight. #B2R https://t.co/Skgobxjkva" +04/08/2018,Sports_celeb,@WWERomanReigns,"One match at a time. +Every night on the road, every mile traveled, every day away from home leads here. + +To the m… https://t.co/qU20F3oL7r" +04/07/2018,Sports_celeb,@WWERomanReigns,The Empire WILL bring the fight to The Beast tomorrow! So get this shirt today at the WrestleMania SuperStore at A… https://t.co/fnpoJpZaEH +04/07/2018,Sports_celeb,@WWERomanReigns,"That’s why I don’t sell the negativity, I have the most loyal supportive fans in the world! Don’t worry tho... It… https://t.co/ihVjj2V7VK" +04/07/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@Jarrius lit up the room as he accepted the #WarriorAward at the 2018 #WWEHOF! https://t.co/voexZ1QrlY https://t.co/ARqgZF1dKH +04/07/2018,Sports_celeb,@WWERomanReigns,"I always got your back @Jarrius ...thanks for always having mine! +Congratulations on your #WWEHOF induction my man! https://t.co/oNkjSS4qLk" +04/06/2018,Sports_celeb,@WWERomanReigns,RT @JimmyTraina: So @WWERomanReigns was nice enough to come on my podcast. I asked him about being 42 years old. He's 32 years old. So much… +04/04/2018,Sports_celeb,@WWERomanReigns,RT @NBCSports: .@HeymanHustle: Working with @WWERomanReigns would be an absolute career defining moment for me https://t.co/HMwuZRok5N http… +03/27/2018,Sports_celeb,@WWERomanReigns,Creepy. https://t.co/kKXalXvtSX +03/06/2018,Sports_celeb,@WWERomanReigns,You'll always know where I stand. Because you know where I stand. Every week. #Raw +02/26/2018,Sports_celeb,@WWERomanReigns,"3 years in the making. +4 times in a row. +The Main Event. +@WrestleMania #ReignsvsLesnar" +02/25/2018,Sports_celeb,@WWERomanReigns,"Old saying: What’s old, +is new. Learn from the past, and create something new. When in doubt just do you.… https://t.co/TD8E5Dfabt" +02/20/2018,Sports_celeb,@WWERomanReigns,You live to fight another day. Respect to @WWERollins for going over an hour in the ring on #Raw...but at… https://t.co/XyA3fqvdip +02/20/2018,Sports_celeb,@WWERomanReigns,"No. A Samoan is “basically” a Samoan, and we are extremely proud of our culture. But if u did any research at all,… https://t.co/sNWZmIaof5" +02/18/2018,Sports_celeb,@WWERomanReigns,"Sunday.... +Monday... +Any day of the week. It's always #OneVersusAll. +#WWEChamber #GauntletMatch https://t.co/aS6H8iLxPt" +02/13/2018,Sports_celeb,@WWERomanReigns,"At #WWEChamber 7 men may enter, but only one is going to the main event of #WrestleMania... me. +#WitnessMe #4x" +02/09/2018,Sports_celeb,@WWERomanReigns,".@WWEUK, the Big Dog is coming back in May... https://t.co/erlSdskXbl https://t.co/MYC13X2xRu" +02/09/2018,Sports_celeb,@WWERomanReigns,RT @WWECommunity: #WWE celebrates #BlackHistoryMonth - Memphis Sanitation Strike @NCRMuseum https://t.co/J5KImo1sI1 +02/06/2018,Sports_celeb,@WWERomanReigns,Head down. Clear path. I’m going to #WrestleMania. #4x #WWEChamber #WitnessMe https://t.co/shuvJ3n17I +02/04/2018,Sports_celeb,@WWERomanReigns,"The road to #WrestleMania is clear. I’m running through every roadblock put in my way. #Raw, #WWEChamber, and then… https://t.co/uvIRW27jzx" +01/30/2018,Sports_celeb,@WWERomanReigns,RT @Haloti_Ngata92: You the man @WWERomanReigns Much respect brother. https://t.co/ccvkaBqvtR +01/29/2018,Sports_celeb,@WWERomanReigns,A lot of excitement around last night’s #RoyalRumble but don’t think I’ve forgotten about Miz. I’m taking back what… https://t.co/5b3bbodzGM +01/27/2018,Sports_celeb,@WWERomanReigns,"Trip, you’re going to @WWE @WrestleMania! Thanks to @MakeAWish and @JimmysSeafood for helping bring his wish to rea… https://t.co/4cTQIcaozl" +01/23/2018,Sports_celeb,@WWERomanReigns,#Raw25 was a special night for @WWE and Brooklyn didn’t disappoint. Not the outcome I was expecting but every day i… https://t.co/FME0aKnj8e +01/22/2018,Sports_celeb,@WWERomanReigns,"A busy day in NYC and we’re just getting started. Thanks to @NYSE and my new buddy Abraham. + +Time to go to work, r… https://t.co/yPSzqCHf5E" +01/22/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns had another successful night at #WWEBinghamton. Now it’s on to #RAW25! #BelieveThat https://t.co/nycvhgjoL6 +01/16/2018,Sports_celeb,@WWERomanReigns,"RT @WWEShop: Say ""This is My Yard"" with the new @WWERomanReigns authentic t-shirt at #WWEShop. #WWE #RomanReigns +https://t.co/sNuOWm3R2u ht…" +01/16/2018,Sports_celeb,@WWERomanReigns,I’m representing myself AND my family... #RawOGs #TheBloodline https://t.co/JvP0vnTcwo +01/14/2018,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Only 20 hours left to Vote https://t.co/H80OMnmwCk for Gulf Islands National Seashore so help your #850Boyz @WWERomanR… +01/12/2018,Sports_celeb,@WWERomanReigns,So your saying my punch is fit for the Big screen...🤔. Thanks!! 👍🏽But you might want to go back and check those GT… https://t.co/yNXot5Rdze +01/12/2018,Sports_celeb,@WWERomanReigns,"Miz’s workout consist of wearing 20lbs(Btw don’t go to heavy now!), walking around and making videos. 😂 #Raw is go… https://t.co/GiEqmEW2fH" +01/09/2018,Sports_celeb,@WWERomanReigns,Miz will get his rematch for the #ICTitle at #Raw25....only if he makes it out of #Raw next week. #WitnessMe +01/09/2018,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Help out your #PENSACOLABOYZ and vote GULF ISLANDS NATIONAL SEASHORE at https://t.co/H80OMnmwCk @WWERomanReigns @WWEUso… +01/08/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@SashaBanksWWE and @WWERomanReigns listen to the iconic words of #MLK at @NCRMuseum in #Memphis. https://t.co/APhhzFPXCF +01/08/2018,Sports_celeb,@WWERomanReigns,"Surrounded by history in the @NCRMuseum in #Memphis. Treat each other right, respect the struggles of the past, cre… https://t.co/6djq4zafBE" +01/02/2018,Sports_celeb,@WWERomanReigns,Help @Haloti_Ngata92 and his family continue their amazing generational service. Watch this and you’ll understand.… https://t.co/Wijd3mvTLK +01/02/2018,Sports_celeb,@WWERomanReigns,"No rules, house rules... no matter what: I reign. +#WitnessMe #AndStill #Raw" +12/30/2017,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns comments on the stipulation that he will LOSE the #ICTitle Championship if he is Disqualified against @SamoaJoe t… +12/26/2017,Sports_celeb,@WWERomanReigns,"Worth every penny. +No time to worry... +Tonight I’m in NYC at #WWEMSG #WitnessMe https://t.co/sfdiCpsV5u" +12/26/2017,Sports_celeb,@WWERomanReigns,"I’m a man of my word. +If you hurt my brother, I WILL hurt you. +Just ask @SamoaJoe. +#WitnessMe #Raw" +12/23/2017,Sports_celeb,@WWERomanReigns,"RT @WWEArmstrong: Hey Charles, your a good man!THIS is why we do WHAT WE DO!!Merry Christmas!!! @TripleH @WWERoadDogg @ScrapDaddyAP @ringfo…" +12/21/2017,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Ok guys help out the #850 and please vote GULF ISLANDS NATIONAL SEASHORE! @WWERomanReigns @WWERoadDogg @WWEUsos @MichaelP… +12/21/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: 👨🏽‍🍳 The Stage Is Set! 📺TOMORROW NIGHT! Chef Tony takes on @bflay on #BeatBobbyFlay! Coincidentally, the episode is titl…" +12/12/2017,Sports_celeb,@WWERomanReigns,RT @Haloti_Ngata92: Help me win this year’s charity challenge by tweeting #WPMOYChallenge  + Ngata. $25K could go to my foundation! Please… +12/12/2017,Sports_celeb,@WWERomanReigns,Good luck Uso!! #WPMOYChallenge + Ngata 🤙🏽 https://t.co/i9rUJeVW5p +12/12/2017,Sports_celeb,@WWERomanReigns,"Say what you want about @WWECesaro but the man is one of a kind in the ring. +Mad respect for the fight he brought… https://t.co/q1lZYycuOD" +12/10/2017,Sports_celeb,@WWERomanReigns,"Defended the #ICTitle in front of some of the best crowds in #WWEAbuDhabi and @WWEIndia. +Next stop is #Raw. +Next… https://t.co/Ow2kfjcrmu" +12/09/2017,Sports_celeb,@WWERomanReigns,...and sometimes you wanna see if you can still play the game. #AndStill #NextStopNewDelhi https://t.co/pjibscCIuk +12/05/2017,Sports_celeb,@WWERomanReigns,It’s an open challenge to anyone. Anyone named Samoa Joe. #Raw https://t.co/gECSqGSA9h +12/03/2017,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: ALWAYS the 1st and BEST ornament on the 🌲! #PensacolaBeachSIGN #850 @WWEUsos @WWERomanReigns @MichaelPSHayes1 @WWERoadDog… +11/29/2017,Sports_celeb,@WWERomanReigns,RT @WWERollins: ...Time to call up the Lunatic. #TheShield is about to have alllll the titles. #BreakTheBar #BelieveThat #Raw +11/21/2017,Sports_celeb,@WWERomanReigns,"Wherever I am, consider it My Yard. +So if you want my title... +...all you have to do is step up. #Raw https://t.co/jjJaklC5fF" +11/20/2017,Sports_celeb,@WWERomanReigns,Roll with #TheBigDog. Protect the yard. Only available in the WWE Slam Crate. Use code BIGDOG15 for 15% off:… https://t.co/C4bRlqoniG +11/20/2017,Sports_celeb,@WWERomanReigns,"Nobody leads #TeamRed like #TheShield. + +Red - 1 +Blue - NAAAAAAAHHTING! + +#SurvivorSeries" +11/16/2017,Sports_celeb,@WWERomanReigns,"We’re both repping #Raw at #SurvivorSeries but... +Dec 8th in #WWEAbuDhabi + +The Big Dog vs The Game. +THE MAIN EVENT… https://t.co/KKvvP0lUzu" +11/15/2017,Sports_celeb,@WWERomanReigns,RT @MCWWrestling: Sign up for @WWEMercury’s Finishing Class TODAY & learn from the man that was recently referred to as the 4th member of #… +11/15/2017,Sports_celeb,@WWERomanReigns,"It’s been a wild 24 hours, but there is no doubt....the Big Dog is back. +#JustAskSmackdown" +11/14/2017,Sports_celeb,@WWERomanReigns,RT @WWE: EXCLUSIVE: If we've established one thing... It's that #TheShield likes to FIGHT! #RAW https://t.co/SRaH2e5zPM +11/14/2017,Sports_celeb,@WWERomanReigns,Good to be Home! And.... A great win against VT!!! Looks like the real Tech showed up on Saturday! #OurYard https://t.co/eUvz8ttyCN +11/14/2017,Sports_celeb,@WWERomanReigns,Glad yall could check me out tonight. Always a blessing to catch up with the Brothers you went to battle with on t… https://t.co/WcRUCOkbEw +11/08/2017,Sports_celeb,@WWERomanReigns,Actually I’m closer to 275. I’m also 6 inches taller than “Big” but not that “Tall” E. 😱 https://t.co/YTa2GpPNt5 +11/01/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: Sit down with The #HoundsOfJustice on#TableFor3, immediately after #RAW on @WWENetwork! @WWERollins @TheDeanAmbrose @WWERomanReign…" +10/19/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: For the first time in three years, it was once again time for @WWERomanReigns @WWERollins and @TheDeanAmbrose to make that walk...…" +10/18/2017,Sports_celeb,@WWERomanReigns,Rotten. 🤢 https://t.co/AvnvJlulYD +10/17/2017,Sports_celeb,@WWERomanReigns,Rough night but these little angels made it all worth it!!! So grateful. #Family #Raw https://t.co/3arsgYmu6L +10/17/2017,Sports_celeb,@WWERomanReigns,RT @SashaBanksWWE: @TitusONeilWWE @WWERomanReigns @WWE Loved her! She is so adorable +10/17/2017,Sports_celeb,@WWERomanReigns,Inspiration! Love you Kit Kat! https://t.co/nLHnWxhn6R +10/15/2017,Sports_celeb,@WWERomanReigns,"Before we burn down #WWETLC, The Shield will own #Raw and claim Portland, OR as OUR Yard. #Workhorses https://t.co/PtIGFXNJVz" +10/15/2017,Sports_celeb,@WWERomanReigns,I don’t even need to click the link and watch it. If that house didn’t draw over 100K. He’s just talking silly.… https://t.co/8THJFGi3EZ +10/15/2017,Sports_celeb,@WWERomanReigns,"If you didn’t completely screw this tweet up. It would have been great!That’s their mountain, I’m here to build my… https://t.co/S9obn8cbTt" +10/14/2017,Sports_celeb,@WWERomanReigns,Me and my boys beat the DX! No need to celebrate them. #TheRealestGeneration is what I celebrate and represent. https://t.co/fQpLu42ZnP +10/13/2017,Sports_celeb,@WWERomanReigns,RT @WWEIndia: Tickets for #WWELive in #India are now open! Book them here: https://t.co/r7RdyuQVEp https://t.co/LKpy3rFCKq +10/11/2017,Sports_celeb,@WWERomanReigns,RT @WWE: Don't miss @WWERomanReigns and @BraunStrowman collide inside a #SteelCage LIVE NEXT MONDAY on #RAW at 8/7c on @USA_Network! https:… +10/04/2017,Sports_celeb,@WWERomanReigns,RT @WWE: We stand with Las Vegas. #VegasStrong https://t.co/3koBr5poCV +10/03/2017,Sports_celeb,@WWERomanReigns,Sons & daughters. Brothers & sisters. All innocent. God bless those affected & prayers for a future w/o this violence. #PrayForLasVegas +09/30/2017,Sports_celeb,@WWERomanReigns,RT @BookerT5x: Only 1 hour left on @WWERomanReigns gloves! https://t.co/4WqBlUDmkr @eBay +09/30/2017,Sports_celeb,@WWERomanReigns,Guest!!!!???? 😂 Ima produce the damn thing!!! https://t.co/o5AcRWFgWP +09/30/2017,Sports_celeb,@WWERomanReigns,"Strong win at home for Georgia Tech. +So happy I caught the 2nd half! Go Tech!! #UNCvsGT #OurYard" +09/27/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: Two HUGE main event matches await you next week on #RAW, LIVE on @USA_Network! https://t.co/J937HR8vtN" +09/26/2017,Sports_celeb,@WWERomanReigns,RT @JimmysSeafood: Roman Reigns proudly sporting our latest @UnderArmour sleeveless hoodie before his match with John Cena. #RomanEmpire #T… +09/25/2017,Sports_celeb,@WWERomanReigns,... but make no mistake. I'm still the #TopDog in this yard. +09/25/2017,Sports_celeb,@WWERomanReigns,"Whether u exchange harsh words or harsh blows, u don't leave a fight w/o respect for a warrior +Respect for past, present & hopefully future." +09/24/2017,Sports_celeb,@WWERomanReigns,"I don't come up with catchy slogans. +My life isn't a corny catchphrase. +I was born to reign. + +Tonight, you'll see why. #WWENoMercy" +09/21/2017,Sports_celeb,@WWERomanReigns,"RT @BookerT5x: Here are @WWERomanReigns’ signed gloves! Please bid, all money going to hurricane victims. https://t.co/4WqBlUDmkr https://t…" +09/20/2017,Sports_celeb,@WWERomanReigns,"RT @BCampbellCBS: #InThisCorner podcast: WWE + +@WWERomanReigns talks Cena feud, his 'big dog' moment & when wrestling made him cry + +https://…" +09/19/2017,Sports_celeb,@WWERomanReigns,"RT @TheKostos: .@BCampbellCBS and I just sat down for 25 minutes with @WWERomanReigns. + +It was awesome. + +It will post on this week's #InTh…" +09/17/2017,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns gives a special thank you to the @WWEUniverse after a successful tour of Australia and New Zealand! #WWELive http… +09/17/2017,Sports_celeb,@WWERomanReigns,Excellent tour to New Zealand and Australia!!! Proud of the #RedCrew . Headed back to ✈️ San Jose for #Raw . #FinishStrong #GoHomeBabe +09/11/2017,Sports_celeb,@WWERomanReigns,"#NeverForget the ones we lost on 9/11. +#NeverForget our armed service men & women. +#NeverForget the freedom we enjoy. +Remember. Honor. Them." +09/10/2017,Sports_celeb,@WWERomanReigns,"Faithless fool. When your time on earth is done, enjoy nothing. https://t.co/gUyNMSZNDU" +09/09/2017,Sports_celeb,@WWERomanReigns,My prayers go out to everyone dealing with Hurricane Irma. May God bless and protect all those in its path. #BeSafe +09/08/2017,Sports_celeb,@WWERomanReigns,You must be asking people on twitter for insults 😂😂 and aren't you a bit old to smack talk online??? See me at #Raw… https://t.co/g0tBlIS6dR +09/08/2017,Sports_celeb,@WWERomanReigns,"Bad things happen when you try to think John. No worries, just have someone film you power cleaning for the 5000th… https://t.co/3xlO5Bnr0A" +09/07/2017,Sports_celeb,@WWERomanReigns,"Looking forward to seeing the #RomanEmpire in Nashville.. +Get your VIP tix to see me @WizardWorld this Sunday, 9/10 +https://t.co/ghOztNdaL2" +09/05/2017,Sports_celeb,@WWERomanReigns,"RESPECT isn't earned with words. +It's earned by action. +He does the talking and I'll do the walking. #WWENoMercy" +08/30/2017,Sports_celeb,@WWERomanReigns,Doing the most important job on Earth: loving on my kids! 😍 https://t.co/ghfvmPebtW +08/29/2017,Sports_celeb,@WWERomanReigns,"Thank you to all the emergency workers in #Houston. It's important to take care of one another. +https://t.co/NM1rInwz0R" +08/26/2017,Sports_celeb,@WWERomanReigns,RT @NEPWildcatsFB: NEP Wildcats getting a big TD run from nephew of @WWERomanReigns. Great run by Iliyas Fuavai! Go Wildcats! https://t.co/… +08/24/2017,Sports_celeb,@WWERomanReigns,Such a Good Brother! Thank you for being so generous and kind. God bless you! 🙏🏽🤙🏽 #JimmysSeafood #RomanEmpire https://t.co/calBAfiEDK +08/23/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: For every ""like"" this tweet receives by noon Thursday (8/24), we will donate $1 to @MakeAWish! #TeamworkMakesTheDreamWor…" +08/23/2017,Sports_celeb,@WWERomanReigns,"The simple question here is to the Kids. Would you rather grow up and be like me, OR the guys from this video!??😂 https://t.co/45OtF2x1Fq" +08/22/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: A war-torn @WWERomanReigns went on @SportsCenter to discuss an INCREDIBLE @SummerSlam! +https://t.co/T1Qv2HxHE8" +08/21/2017,Sports_celeb,@WWERomanReigns,Always a pleasure! Thank u for having me. 🤙🏽 https://t.co/qfy25fqjOX +08/21/2017,Sports_celeb,@WWERomanReigns,This is what really went down! I took what I thought was MY biscuit but @RonKillings def took that Apple Pie. 👀… https://t.co/UV895YEp5M +08/18/2017,Sports_celeb,@WWERomanReigns,That's a lot of hungry babies!! My family definitely isn't scared of reproducing.😂 Thank God 🙌🏽for the work!!🤼‍♂️🤙🏽… https://t.co/0BNRNgeWYJ +08/17/2017,Sports_celeb,@WWERomanReigns,"RT @JimmyTraina: ""I had thousands of people doing exactly what I wanted."" -- @WWERomanReigns to me on his famous post-Mania promo. https://…" +08/17/2017,Sports_celeb,@WWERomanReigns,"RT @JimmyTraina: My Off The Board podcast w @WWERomanReigns is up. Match vs @JohnCena, post-Mania promo, the boos & hate all covered: https…" +08/14/2017,Sports_celeb,@WWERomanReigns,Sorry my man!! @GameOfThrones is my main show right now!! But I'll def check it out. Thanks for another good tal… https://t.co/1tAlRLl3OK +08/01/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: The Big Dog @WWERomanReigns is featured on our new 4K FamousVision screens, installed in time for #SummerSlam, #Mayweath…" +08/01/2017,Sports_celeb,@WWERomanReigns,"I don't like to list my resume... +That's why I go to the ring and explain through my actions. +#SummerSlam #NeverLied #B2R" +07/24/2017,Sports_celeb,@WWERomanReigns,"Real tough guy on Twitter. If u want it, you know the way to MY Yard. #Raw https://t.co/UUSRaQnMVB" +07/24/2017,Sports_celeb,@WWERomanReigns,"Told yall I'm The Big Fight. Heard Philly was a little quiet tonight, better bring their best when we return!!… https://t.co/NZENv8Tfuq" +07/17/2017,Sports_celeb,@WWERomanReigns,The main event is where I belong and where I'll be at #SummerSlam. #TheGuy #MyYard #Raw +07/16/2017,Sports_celeb,@WWERomanReigns,Hope this helps out Rami Bluuuuuuht!!!! It's nice to be nice! Help if u can or spread the word! #SamiForSyria! https://t.co/bn7NZza3Dz +07/16/2017,Sports_celeb,@WWERomanReigns,I'll match that. 10K it is! Now we need to talk about scheduling....🤔 Hit me Monday my Good Brother! https://t.co/vLd05xEgmf +07/15/2017,Sports_celeb,@WWERomanReigns,Charity tournament? Lil bit of fun and a good cause... Thousand $ buy in?... or should we up the Anti... https://t.co/CABpFjLnX8 +07/14/2017,Sports_celeb,@WWERomanReigns,Hey @WWEShop send me a pack of these please! #QuietBeers https://t.co/ogLY8xZ0NE +07/10/2017,Sports_celeb,@WWERomanReigns,I repeat. #WWEGBOF https://t.co/JzNvJUIRs3 +07/09/2017,Sports_celeb,@WWERomanReigns,I've left Dallas with the @WWE World Heavyweight Championship before. Tonight I'm leaving @BraunStrowman in an ambulance. #MyYard #WWEGBOF +07/08/2017,Sports_celeb,@WWERomanReigns,Never met a hater in real life folks! Thanks #WWEMSG !!! https://t.co/ggrAqE0GWZ +06/29/2017,Sports_celeb,@WWERomanReigns,Great to be back!!! 🤙🏽🇯🇵 #Blessed https://t.co/gXWXErsTJP +06/19/2017,Sports_celeb,@WWERomanReigns,RT @USA_Network: Don't miss @WWERomanReigns make his big Summer Slam announcement on an all-new @WWE #Raw TONIGHT at 8/7c https://t.co/gZ03… +06/19/2017,Sports_celeb,@WWERomanReigns,We held them to 49 yards total offense that game. In their own house! #OurYard https://t.co/xiSTEoAm6U +06/18/2017,Sports_celeb,@WWERomanReigns,Happy Father's Day to my Dad and all the others out there. Wish i was home with the Wife and Kids but I'm def missi… https://t.co/ofUBxxUZRc +06/15/2017,Sports_celeb,@WWERomanReigns,RT @JoeVilla_ME: Good people. Check out the link below and help this young lady if you can. Her dad is one of the best people I know https:… +06/15/2017,Sports_celeb,@WWERomanReigns,"Not everyone is going to like what I say, but you don't want to miss it. +My Yard. My Rules. +#Raw #BornToReign https://t.co/r3T1h5Ofpq" +06/13/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: Updated Free Crabcakes For Life List... + +1) @WWERomanReigns +2) @jmac___19 +3) @CrushD19 +4) Manny Machado +5) @JJacks_44…" +06/13/2017,Sports_celeb,@WWERomanReigns,"Oh yea, 🙄I forgot they are ""jobbing"" for free! 😂Clueless #DumbAssMark. BTW all our schedules and responsibilities… https://t.co/bhRH6o5NOw" +06/13/2017,Sports_celeb,@WWERomanReigns,Yea I guess working my butt off 5 days a week while being away from my wife and kids for the last 7 years is being… https://t.co/eKbI6x73Ns +06/12/2017,Sports_celeb,@WWERomanReigns,Let ME give you a tip amateur. @WWE is the Top of the Mountain in Pro Wrestling. A view you'll never deserve or g… https://t.co/lmhHBZcqLU +06/12/2017,Sports_celeb,@WWERomanReigns,Watching my lil girl swim and ride the water slide. Huge thanks to Red Lerille's gym for all the hospitality!! Gre… https://t.co/iSq61VM6ZV +06/06/2017,Sports_celeb,@WWERomanReigns,RT @WWEShop: https://t.co/ubJvWreGR0 https://t.co/7eyIs7aW4y +06/06/2017,Sports_celeb,@WWERomanReigns,Ahhhh yessir!!!! Florida boys out there wrecking it!!! #850 🤙🏽 https://t.co/ow1HS96y2F +06/06/2017,Sports_celeb,@WWERomanReigns,Would love to get some batting practice in some day. See if the old Dog still has it!!! #ChicksDigTheLongBall AKA… https://t.co/9vT2XLyouZ +06/06/2017,Sports_celeb,@WWERomanReigns,"If they wanna keep getting up... +I got no problem knocking em down. #SupermanPunch #BornToReign #IronFistofWWE… https://t.co/7ntqHxIKSp" +06/05/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: 🎂 Belated birthday celebrations with the family. Always exciting catching up with Big Uce, @WWERomanReigns! 🤙🏾 https://t…" +06/04/2017,Sports_celeb,@WWERomanReigns,"Tonight I may bend, but the other 4 guys will break. I am The Big Fight! #MyYard #BornToReign #ExtremeRules" +05/31/2017,Sports_celeb,@WWERomanReigns,RT @lukeowensEFC: @WWERomanReigns. Roman celebrating my 30th birthday today. Any chance of a birthday RT from the big dog https://t.co/uas8… +05/30/2017,Sports_celeb,@WWERomanReigns,"As I said tonight, no one OWNS me. #ReignsVsRollins #Raw #BornToReign" +05/29/2017,Sports_celeb,@WWERomanReigns,Whether I stand with or against @WWERollins...#Raw is and will always be #MyYard! #ReignsVsRollins +05/28/2017,Sports_celeb,@WWERomanReigns,"Sorry about the bad week. Just remember, as long as we wake up. Life is good. Oh yea! HBD by the way. 😉 https://t.co/NWs7D142bK" +05/26/2017,Sports_celeb,@WWERomanReigns,RT @Jarrius: Happy birthday to one of the my favorite wrestler @WWERomanReigns your the best and thank you for everything you do for me😎😎😎… +05/23/2017,Sports_celeb,@WWERomanReigns,"I know it took awhile, but I'm proud to present the coolest tee I think I've ever had! Get em while you can!… https://t.co/8XNBIQO17l" +05/17/2017,Sports_celeb,@WWERomanReigns,"You can help save a life today. Knowledge is power, spread the word and help us #EndNF 🙏🏽 https://t.co/Y1i1XCFt1e" +05/17/2017,Sports_celeb,@WWERomanReigns,"Learn from these good brothers!!! I did, look at me now!! #Future https://t.co/r23Yl9AoXn" +05/11/2017,Sports_celeb,@WWERomanReigns,Ahhhhhh yessir!!! https://t.co/yXnsH52q78 +05/09/2017,Sports_celeb,@WWERomanReigns,"#WWELille Thank you for tonight!! It's been a tough few weeks, but tonight really lifted my spirits. #Thankful 🙏🏽" +05/07/2017,Sports_celeb,@WWERomanReigns,"Big yard, big clean! As expected. #Respect for repping @GTAthletics. But i know you'd rather be on #WWEUKLive rig… https://t.co/eECqtqhwB6" +04/30/2017,Sports_celeb,@WWERomanReigns,"Tonight it's ONLY about payback... + +#WWEPayback #MyYard" +04/08/2017,Sports_celeb,@WWERomanReigns,"Must be hard being a grown man, that tweets another grown man cartoons. https://t.co/za0vpR532B" +04/07/2017,Sports_celeb,@WWERomanReigns,5-2!!! Where's your brother at!?!? @WWEUsos 😂😂 I'll whoop em both!!! #TwinLife +04/07/2017,Sports_celeb,@WWERomanReigns,4-2!!!!!! Yesssssssir! +04/07/2017,Sports_celeb,@WWERomanReigns,"As of now, I'm leading the series 3-2. So technically @WWEUsos is gettin ""dis work""!!!🤔😂🤙🏽 #AhhhYessir https://t.co/g0yx8PajJh" +04/06/2017,Sports_celeb,@WWERomanReigns,Can't wait to do it again!!! Thanks for a great conversation and a chance to tell SOME of my story. 😉… https://t.co/LOXapR7k2w +04/04/2017,Sports_celeb,@WWERomanReigns,Loudest seg of the show. Maybe the loudest of the past 2 decades. And I could of stood there for another 15 min.… https://t.co/BpWOlvSxMD +04/03/2017,Sports_celeb,@WWERomanReigns,"I did what I had to at #WrestleMania  but it doesn't change the fact Deadman held the yard down for years. +For that..#ThankYouTaker #Respect" +04/02/2017,Sports_celeb,@WWERomanReigns,"Today, I make history @WrestleMania. #WitnessMe" +04/02/2017,Sports_celeb,@WWERomanReigns,Good look lil monster!! 🤙🏽 #TourMVP 😂 https://t.co/CuZXsKl0St +03/31/2017,Sports_celeb,@WWERomanReigns,"RT @IAmJericho: NOW on @TalkIsJericho, @WWERomanReigns talks #GameOfThrones, CFL, #BrockLesnar, #TheUndertaker, moving furniture & #BackOfT…" +03/31/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: A mishap with @WWERomanReigns' suits for @WrestleMania weekend? Luckily, he has the ""best tailor in the world""... #WrestleMania ht…" +03/28/2017,Sports_celeb,@WWERomanReigns,"RT @IAmJericho: It's #WrestlemaniaWeek week on @TalkIsJericho: +Wed- @BigCassWWE +Fri- By popular demand.... @WWERomanReigns! +https://t.co/i…" +03/28/2017,Sports_celeb,@WWERomanReigns,"In 6 days @WrestleMania, I end the legacy of The Deadman." +03/27/2017,Sports_celeb,@WWERomanReigns,My man is ready!! Happy Birthday Jarrius!!! Hope I see you in Orlando!! 🤙🏽 https://t.co/RWdNSn9hO8 +03/23/2017,Sports_celeb,@WWERomanReigns,You must of been sleep somewhere for the past couple years! #CustomMade https://t.co/1pZOKzcqCI +03/23/2017,Sports_celeb,@WWERomanReigns,"Chris did it again!! Wait til yall see the ""After"" pic!!! https://t.co/Bfx1Jb68ZW" +03/22/2017,Sports_celeb,@WWERomanReigns,If your trying to eat clean and get big. Look up https://t.co/s0wo69Sb87. What a great crew to work with! Huge Th… https://t.co/7dMB9fPv1I +06/28/2018,Sports_celeb,@M_Ryan02,"RT @sryan03: Before you have kids, ask yourself if you’re prepared to spend 90% of your day making a compleeeeete ass of yourself for even…" +06/27/2018,Sports_celeb,@M_Ryan02,"WOW! Nothing is given, gotta earn your way in this #WorldCup #KORGER." +06/11/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: HOOOOOP there it is! + +#MattyIceMonday https://t.co/fQOvHHUABL" +05/29/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Happy birthday to the man who never ages, @Matt_Bryant3! + +RT to show #MoneyMatt💰 some birthday love. https://t.co/eKFmp…" +05/22/2018,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: The ❄️man. https://t.co/PxN33pEWZo +05/17/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Make that birthday wish, #MattyIce❄️! https://t.co/BbFD7mrUBw" +05/17/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: That's our QB! Happy Birthday #MattyIce❄️ + +#ThrowbackThursday https://t.co/ctQVNyYbdp" +05/04/2018,Sports_celeb,@M_Ryan02,"#MayTheFourthBeWithYou + +Happy #StarWarsDay + +#InBrotherhood https://t.co/3IU76AdLDI" +04/27/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: The moment he joined the Brotherhood. + +@CalvinRidley1 officially got the call from Thomas Dimitroff, Dan Quinn and Art…" +04/24/2018,Sports_celeb,@M_Ryan02,"Let’s get to work, Atlanta! Big things ahead! #10YearsOf2 https://t.co/5J5cqvX262" +04/24/2018,Sports_celeb,@M_Ryan02,I’ve waited for this day my entire life. Can’t wait to see where I’m drafted. #10YearsOf2 https://t.co/z79WbJbZ9t +04/24/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Time to turn back the clock! ⏰ + +Draft Day, 2008. Tune in throughout the day to relive the 2008 NFL Draft. It all begins…" +04/08/2018,Sports_celeb,@M_Ryan02,#TheMasters Sunday is one of the most exciting days of the year for golf fans. Where will you be watching?… https://t.co/0ByrIVA2eT +04/08/2018,Sports_celeb,@M_Ryan02,Welcome our boys Marshall and Johnny. #Family #DadLife https://t.co/Euo9AuQdsR +04/07/2018,Sports_celeb,@M_Ryan02,It's moving day at #TheMasters! I've selected my favorite players in My Moments on the Masters app. Check it out.… https://t.co/MxFfVmfggL +04/06/2018,Sports_celeb,@M_Ryan02,I’m all tuned into the action with #TheMasters app. Definitely check it out. #IBMAthlete #IBMsports https://t.co/iDnAsgCp4a +04/06/2018,Sports_celeb,@M_Ryan02,Nothing like winning my first plaid jacket during the Matt-sters. Loved my set of #TommyArmour 845s back in the day… https://t.co/wGvO2jWlaR +04/04/2018,Sports_celeb,@M_Ryan02,I'll be at #TheMasters with @IBMSports on Thursday from 12-1PM EST answering your questions. Tweet them using… https://t.co/yFgrvJqw7i +04/03/2018,Sports_celeb,@M_Ryan02,"#TheMasters is finally here. Download the app, sit back and tune in. Thanks for the rundown @briantong! … https://t.co/IPAcYi2he8" +02/28/2018,Sports_celeb,@M_Ryan02,Good luck to all the guys participating in the #NFLCombine2018 #throwback https://t.co/qoXJnq9Ek3 +02/28/2018,Sports_celeb,@M_Ryan02,I see you @PizzaHut. +02/09/2018,Sports_celeb,@M_Ryan02,"RT @MBUSA: This Mercedes-AMG C 43 is heading to New Hampshire to meet its owner, and Last Fan Standing winner, Joshua D. https://t.co/Fhhzr…" +01/25/2018,Sports_celeb,@M_Ryan02,"Congrats to my good friend @RealCJ10. He was one of the greatest competitors I’ve ever seen, and did it all with cl… https://t.co/C308Df1BRk" +01/16/2018,Sports_celeb,@M_Ryan02,I want to take a minute to thank all of the fans for the continued support all season long. We came up short to an… https://t.co/Uw8Qizwv9Z +01/07/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Next up: the Eagles. + +📝 See how we stack up - https://t.co/eOGq2VxwP9 https://t.co/rVgZbsZtKh" +01/07/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""We're not here just to get here."" + +That's our QB. https://t.co/A3oOkBqm1I" +01/01/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""Now we've got more work to do..."" - #MattyIce❄️ https://t.co/esT8qg0oPr" +12/27/2017,Sports_celeb,@M_Ryan02,"Style game strong. Shop my @BananaRepublic picks, including my favorite Rapid Movement Chinos:… https://t.co/i8yc6L8Q3j" +12/22/2017,Sports_celeb,@M_Ryan02,"At @BostonCollege I played in the @IDPotatoBowl, a highlight of my career. Who’s watching it with me this year?… https://t.co/h7sjwj6Rxa" +12/19/2017,Sports_celeb,@M_Ryan02,"So chill in my @BananaRepublic suit. Shop my top picks for the season online now: + https://t.co/CfyewP0Fy9 #BRMens https://t.co/UHI4Pv2mDS" +12/19/2017,Sports_celeb,@M_Ryan02,I hit the juke button like Devonta last night too. #Graceful #InBrotherhood https://t.co/BYfOa6H0DY +12/19/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""Devonta is a special player. He really is"" - #MattyIce❄️ spitting facts. https://t.co/DoyCo6qqX0" +12/09/2017,Sports_celeb,@M_Ryan02,All-time favorites from @bananarepublic. Find your fit: https://t.co/Bq29epOWF1 #BRMens https://t.co/Ba9UCfG64Z +11/27/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 2 newborn babies +2 TD +2 game balls + +#MattyIce❄️ was nothing but smiles talking about @Teco_Raww's big day. https://t.c…" +11/25/2017,Sports_celeb,@M_Ryan02,Had an awesome time going undercover with @Fanatics as an employee inside their @MBStadium Falcons store and surpri… https://t.co/tOz9fJr9bG +11/25/2017,Sports_celeb,@M_Ryan02,"RT @MBUSA: Who won the first ever Mercedes-Benz Stadium Games, @M_Ryan02 or @RickieFowler? You tell us. https://t.co/iFJ5E1bl4z" +11/24/2017,Sports_celeb,@M_Ryan02,"RT @MBUSA: Pro Golfer @RickieFowler took a tour of our brand new stadium, but no one could expect who was waiting for him behind the last d…" +11/21/2017,Sports_celeb,@M_Ryan02,Happy to announce that we're having twins! https://t.co/ZH8RCzrOzN +11/16/2017,Sports_celeb,@M_Ryan02,Feels like home. Wearing my favorite pieces from @bananarepublic. https://t.co/3LcKli5dat #BRMens https://t.co/WFDnbI3Jf9 +11/16/2017,Sports_celeb,@M_Ryan02,When you give a rookie directions to the secret stash of lemon pepper #wings. #ATL #riseup #InBrotherhood https://t.co/tBwCo4BmPZ +11/08/2017,Sports_celeb,@M_Ryan02,My picks for this season? Find them @bananarepublic: https://t.co/3LcKli5dat #BRMens https://t.co/yI2fwmWSyX +11/06/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 8 games into the season, we've played average football. + +#MattyIce❄️ believes we can still improve. https://t.co/oymmH…" +10/31/2017,Sports_celeb,@M_Ryan02,#HappyHalloween2017 https://t.co/uD2UwtuZsf +10/23/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""We got a long way to go. But we've got the right mindset, the right guys that are willing to work..."" - Matt Ryan http…" +10/09/2017,Sports_celeb,@M_Ryan02,"RT @SouthernCompany: Matt Ryan, a leader on the field; Southern Company, a leader in energy. https://t.co/QUUlktCxmT" +10/03/2017,Sports_celeb,@M_Ryan02,Great piece on my friend Pete Frates! Part 1: https://t.co/y1AQC2W8vr Part 2: https://t.co/qFvTgTCgBF His book:… https://t.co/QsOfGDLx2E +10/02/2017,Sports_celeb,@M_Ryan02,My sincerest condolences for all the families and victims affected in Las Vegas. #PrayForVegas +10/02/2017,Sports_celeb,@M_Ryan02,Tough loss yesterday against a very good Buffalo team. We’re going to use this bye week to recharge and refocus. #InBrotherhood #RiseUp +09/26/2017,Sports_celeb,@M_Ryan02,"Classic & smooth, #BTS with @BananaRepublic https://t.co/dlo1HdNpjy" +09/22/2017,Sports_celeb,@M_Ryan02,Fall's begun… Ice is coming #RiseUp https://t.co/nvpUgG4XVQ +09/19/2017,Sports_celeb,@M_Ryan02,Had a great time today with the kids at Tuskegee Airmen Global Academy! #ATLHometownHuddle https://t.co/BPEG9UYdFu +09/14/2017,Sports_celeb,@M_Ryan02,Can’t wait to welcome the @PGATOUR’s 30 best players to Atlanta next week for the @PlayoffFinale! #FedExCup +09/11/2017,Sports_celeb,@M_Ryan02,"Today we honor and +remember the victims of 9/11. We stand united today and always +#NeverForget https://t.co/0GXgmvQSst" +09/11/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""There's no quit from our guys."" - #MattyIce❄️ https://t.co/OoA4LDK8p4" +09/07/2017,Sports_celeb,@M_Ryan02,"RT @PlayersTribune: What’s done is done. + +@M_Ryan02 on what’s next: https://t.co/1so0IfidmY https://t.co/Fs0Paw9HZU" +08/31/2017,Sports_celeb,@M_Ryan02,Get your copy of The Ice Bucket Challenge. A story about my friend @petefrates3 & his fight against ALS https://t.co/RASJRCw6hh #inspiration +08/30/2017,Sports_celeb,@M_Ryan02,#RiseUp #InBrotherhood https://t.co/X4yQW1mO5A +08/28/2017,Sports_celeb,@M_Ryan02,Excited to be part of this great city. #MBAmbassador https://t.co/ZTEOwMDomJ +08/16/2017,Sports_celeb,@M_Ryan02,Fan photoshop art at its best (via Brandon Conn) #RiseUp https://t.co/KpAcIETG5U +08/14/2017,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: #MattyIce❄️ https://t.co/X4ieCmp9Iv +08/10/2017,Sports_celeb,@M_Ryan02,#TBT to my @wpcsports days. #LetsPlayFootball https://t.co/QtX4v8RqBJ +08/10/2017,Sports_celeb,@M_Ryan02,Excited for our first game #MBStadium. Are you? Enter to win a #MercedesBenz at halftime on 9/17!… https://t.co/M6Qx2tr7A8 +08/08/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ***whispers*** + +""Yeah, i'm mic'd. I'm back. I'm mic'd."" + +The MVP, @M_Ryan02, was wired for Military Day! https://t.co/S…" +08/04/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: #MattyIce❄️ is ready. + +📸 Gallery - https://t.co/a6xMKAjkKV https://t.co/Y2sJoydEPC" +08/04/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: You have 2️⃣ more chances to see us work at AT&T Training Camp. + +DETAILS - https://t.co/Q1skOMI8RS https://t.co/5V3XTl…" +08/03/2017,Sports_celeb,@M_Ryan02,Rapid Movement Chinos @bananarepublic… the perfect amount of stretch so they don’t bag out on you. Sold.… https://t.co/vdoiMswzVv +07/31/2017,Sports_celeb,@M_Ryan02,Wishing good luck tomorrow in the final four @TMchallengeALS @petefrates3 https://t.co/rnO9vn42Hh +07/28/2017,Sports_celeb,@M_Ryan02,Jokes and smiles at camp #RiseUp https://t.co/EfFSM1gMk0 +07/27/2017,Sports_celeb,@M_Ryan02,Thanks again to all who came out to @bananarepublic and helped support the launch of Rapid Movement Chinos! #BRMens https://t.co/bh3aUwWS6N +07/26/2017,Sports_celeb,@M_Ryan02,#Mood #InBrotherhood https://t.co/2T6K50p0mc +07/25/2017,Sports_celeb,@M_Ryan02,You're welcome! #RiseUp https://t.co/SvsHzu2r1o +07/25/2017,Sports_celeb,@M_Ryan02,Awesome to meet you today! #RiseUp https://t.co/5glt1Tj0eN +07/25/2017,Sports_celeb,@M_Ryan02,Launching the new Rapid Movement Chinos with @bananarepublic – Ultimate comfort. https://t.co/B957KDLgBK https://t.co/o0Tjj8ScSG +07/19/2017,Sports_celeb,@M_Ryan02,Be sure to tune into @CallawayGolf Live now. https://t.co/jB711zhFG7 https://t.co/ZVEmo1dCoV +07/18/2017,Sports_celeb,@M_Ryan02,Thanks for the ride @mbusa. #MBambassador https://t.co/pFKLw6BPNX +07/18/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: #MattyIce❄️ took his first look of @MBStadium stadium this morning. + +Needless to say, he's amazed. https://t.co/XKsfFR…" +07/13/2017,Sports_celeb,@M_Ryan02,RT @MBUSA: Proud to be a part of a community that refuses to settle for anything but the best. Greatness lives here. https://t.co/iYDxwzKQWw +07/03/2017,Sports_celeb,@M_Ryan02,@petefrates3 keep fighting! We're thinking of you. Cheers to the toughest guy I know https://t.co/Cb9cbdVA3H +06/27/2017,Sports_celeb,@M_Ryan02,You can let defeat destroy you or let it fuel you. #MakeDefeatYourFuel #WinFromWithin @Gatorade #ad https://t.co/iXaYtY4nh3 +06/13/2017,Sports_celeb,@M_Ryan02,Wishing the best to Mike and Roddy. Learned a lot from both of you. Congratulations to 2 great Falcons https://t.co/9aTDHj3Rdu +05/30/2017,Sports_celeb,@M_Ryan02,@juliojones_11 We ran the annexation of Puerto Rico. +05/29/2017,Sports_celeb,@M_Ryan02,Today we remember the men & women who paid the ultimate sacrifice. Thank u to all who've served & continue to serve our country #MemorialDay +05/29/2017,Sports_celeb,@M_Ryan02,With a couple days left to vote we need everyone to VOTE 👇🏼👇🏼 for @TMchallengeALS to raise funds to #StrikeOutALS… https://t.co/49j94E2LDr +05/20/2017,Sports_celeb,@M_Ryan02,Raise your hand if you've voted for @teamchallengeALS https://t.co/ZfnvMX4BoV +05/17/2017,Sports_celeb,@M_Ryan02,Thank you for all the birthday wishes. https://t.co/8QMzu0QqnW +05/09/2017,Sports_celeb,@M_Ryan02,"With less than 30 days to go please help @TMchallengeALS finish 1st out west in @thetournament #StrikeOutALS #ALS +https://t.co/bTttwr7ORd" +05/02/2017,Sports_celeb,@M_Ryan02,The route was sharp but I'm sure she'd get fined for the celebration #RiseUp https://t.co/JurVMmyVBM +04/28/2017,Sports_celeb,@M_Ryan02,Welcome to the @AtlantaFalcons @Takk! Happy to have you #InBrotherhood. https://t.co/gPj1HQmwDA +04/27/2017,Sports_celeb,@M_Ryan02,Thank you everyone for voting. @tmchallengeALS @thetournament https://t.co/hy7BwQCzGL +04/25/2017,Sports_celeb,@M_Ryan02,"This Saturday, I'll be appearing @GTSportsMkt Autograph Event @GSEC courtesy of @Fanatics & @FansAuthentic ! #RiseUp https://t.co/1g00vbbCGj" +04/21/2017,Sports_celeb,@M_Ryan02,"I want to congratulate and welcome to the BC family, athletic director Martin Jarmond. https://t.co/J9WVZXH5cF" +04/17/2017,Sports_celeb,@M_Ryan02,Go vote for @tmchallengeALS in @thetournament 🏀 this summer. Help them raise awareness/funds for ALS. https://t.co/Kv1YIgD7KI +04/04/2017,Sports_celeb,@M_Ryan02,#404Day https://t.co/lZ4ypklF51 +04/03/2017,Sports_celeb,@M_Ryan02,Help raise awareness for ALS. Vote for @TMchallengeALS. @alsassociation @thetournament https://t.co/D8z3hvoBa9 +03/08/2017,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: We can't do what we do without the amazing women in our lives who inspire us. #InternationalWomensDay https://t.co/X3jA… +02/09/2017,Sports_celeb,@M_Ryan02,Thank you fans #RiseUp https://t.co/8fgJlNgo1P +02/06/2017,Sports_celeb,@M_Ryan02,We came up short last night and my heart hurts for you Atlanta. Hats off to New England they… https://t.co/mIX4Tca7ni +01/23/2017,Sports_celeb,@M_Ryan02,Super Bowl LI bound! #RiseUp #InBrotherhood https://t.co/Zki8VBo9PA +01/23/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: This is for YOU, Atlanta. + +#RiseUp https://t.co/1nhP4jCsT1" +01/11/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Let's unite #InBrotherhood. + +Change your Twitter avatar to officially join our Brotherhood. https://t.co/vcOnzBAYQU" +12/25/2016,Sports_celeb,@M_Ryan02,Merry #Christmas! #RiseUp https://t.co/wl4zbRTn4i +12/22/2016,Sports_celeb,@M_Ryan02,When you open that first gift and it’s socks… #HappyHolidays #RiseUp https://t.co/PxZVbHF1rP +12/15/2016,Sports_celeb,@M_Ryan02,Extending my deepest condolences to the family and friends of Craig Sager. May he rest in peace #SagerStrong +12/15/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Matt Ryan is the Falcons Walter Payton Man of The Year nominee. + +RT to help him win a donation for @childrensatl. + +#R…" +12/12/2016,Sports_celeb,@M_Ryan02,"Honored to be a Walter Payton Man of the Year award nominee. Help us win the @nationwide charity challenge, tweet… https://t.co/JynTxNEU0c" +12/07/2016,Sports_celeb,@M_Ryan02,"Honored to be nominated for this prestigious award, #WPMOY #ThankYou #RiseUp https://t.co/s4PaKW7bCg" +11/29/2016,Sports_celeb,@M_Ryan02,I’m committed to making all kids better today and healthier tomorrow. #MyCauseMyCleats @childrensatl https://t.co/FDLrNxyzV9 +11/27/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Corporal Corey Tanner earned a Purple Heart but never met his son. Matt Ryan will wear his initials on Sunday. + +#Salut…" +11/24/2016,Sports_celeb,@M_Ryan02,Happy #Thanksgiving https://t.co/nHrsPthDSu +11/11/2016,Sports_celeb,@M_Ryan02,"On this Veteran's Day, I’d like to thank all members of service, both past and present. Thank you #VeteransDay https://t.co/5qcCOCIltP" +10/28/2016,Sports_celeb,@M_Ryan02,#frankensteinfriday with #Mattenstein #RiseUp https://t.co/DEfPwhVFys +10/26/2016,Sports_celeb,@M_Ryan02,Hurry! Pick up #Danimals for your chance to find a #GoldenBongo and win a field day w/ @FUTP60 four your entire sch… https://t.co/3YHaIRfbF6 +10/24/2016,Sports_celeb,@M_Ryan02,"Tough loss yesterday. It’s disappointing not to get the outcome we wanted. We will bounce back, let’s prepare to win the week #RiseUp." +10/21/2016,Sports_celeb,@M_Ryan02,"This Oct, Dannon is partnering w/ the @NFL & @AmericanCancer to fight breast cancer. #NFLPink… https://t.co/4NNCPPTECh" +10/21/2016,Sports_celeb,@M_Ryan02,When you realize the next @AtlantaFalcons game is TWO days away. #RiseUp https://t.co/efbWcrAIqi +10/13/2016,Sports_celeb,@M_Ryan02,Danimals helps kids stay healthy. Find a #GoldenBongo and you could win a field day w/ @FUTP60 for your school!… https://t.co/FKgWHEgKEI +10/10/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: We improved to 4-1 today! Relive the victory. + +GAME HIGHLIGHTS: https://t.co/oMwI8y5ZbJ https://t.co/VAcAlEcXCb" +10/03/2016,Sports_celeb,@M_Ryan02,Great team win yesterday against a tough divisional opponent. Now it's time to prepare for the next task at hand! #RiseUp +09/30/2016,Sports_celeb,@M_Ryan02,RT @GeorgiaPower: Join @M_Ryan02 and help support your community! @GeorgiaPower has for over 100 years #football #NFL #Falcons https://t.co… +09/21/2016,Sports_celeb,@M_Ryan02,Thunder buddies for life! @juliojones_11 #RiseUp #Humpday https://t.co/NSzJ0PR8zJ +09/19/2016,Sports_celeb,@M_Ryan02,#RiseUp https://t.co/v7jNPYokWe +09/13/2016,Sports_celeb,@M_Ryan02,Be sure to check out the @mbusa #Mbsweepstakes for a chance to see the #RyderCup in person. https://t.co/Edm69tcOlC +09/12/2016,Sports_celeb,@M_Ryan02,We’ve got to get back to work & find a way to be better this week. I know everyone in our building will work really hard to do that. #RiseUp +09/09/2016,Sports_celeb,@M_Ryan02,RT @MootePoints: Today on @TheBertShow we talked with my fellow BC grad @sryan03 about @M_Ryan02 & the @AtlantaFalcons game #RiseUp https:/… +09/07/2016,Sports_celeb,@M_Ryan02,RT @MBUSA: Quote tweet with #MBsweepstakes for a chance to see the #RyderCup in person. Rules: https://t.co/LgeoQED7fO. https://t.co/cAcUfJ… +07/27/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 🚗🚗🚚 IMPORTANT traffic news if you're coming to #FalconsCamp! 🚗🚗🚚 + +READ: https://t.co/qzO3g64HMi #RiseUp https://t.co/Gw…" +07/23/2016,Sports_celeb,@M_Ryan02,"My story began in Exton,Pa. Where I dreamed of flying, who would have thought I'd be doing it #JustDoIt @Nike https://t.co/IxSuDnwbn5" +07/20/2016,Sports_celeb,@M_Ryan02,Here's a friendly reminder in case you were wondering. #RiseUP #countdown https://t.co/DTDGguHeGk +07/13/2016,Sports_celeb,@M_Ryan02,When #PokemonGO begins to take over your life https://t.co/cam2nRU5Ec +07/06/2016,Sports_celeb,@M_Ryan02,Great to be back @BostonCollege. Thx to all the former players and friends who came. This is an incredible honor. https://t.co/0Yl9CKCoCD +07/04/2016,Sports_celeb,@M_Ryan02,Wishing everyone a safe and happy Independence Day! #RiseUp https://t.co/ZBOOFSR2EH +06/24/2016,Sports_celeb,@M_Ryan02,When the season is two months away but you’re anxious and ready #RiseUp https://t.co/xIis4LVLdG +06/24/2016,Sports_celeb,@M_Ryan02,WHO!? #RiseUp https://t.co/hWasUXvmbf +06/21/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Another month of progress shows at @MBStadium! #RiseUp #MBStadium +https://t.co/fet4yi269a" +06/17/2016,Sports_celeb,@M_Ryan02,When mom told me to eat veggies as a kid #NationalEatYourVegetablesDay https://t.co/o4M6Y8maGE +06/14/2016,Sports_celeb,@M_Ryan02,Here we go #Falcons! #RISEup https://t.co/xHao4el0km +06/14/2016,Sports_celeb,@M_Ryan02,"#Warriors OR #Cavs, who takes game five?" +06/10/2016,Sports_celeb,@M_Ryan02,Let's go @BCBirdBall! https://t.co/AdZZoYLYva +06/10/2016,Sports_celeb,@M_Ryan02,Caption this... https://t.co/tIjF835C5D +06/09/2016,Sports_celeb,@M_Ryan02,Who's ready for some football?! #RISEUP #Countdown https://t.co/Z0EpA24Zos +06/04/2016,Sports_celeb,@M_Ryan02,RIP to the champ #GOAT https://t.co/16mgq8Z4O0 +06/04/2016,Sports_celeb,@M_Ryan02,"RT @bcinterruption: Boston College defeats Tulane, 7-2 to open NCAA Tournament play https://t.co/895c5L3z1L https://t.co/IZuchbtwU6" +06/03/2016,Sports_celeb,@M_Ryan02,Happy Friday y'all! #FlashbackFriday to the days of #TGIF... I think I might just watch this all day https://t.co/0VcLFmVrO4 +05/30/2016,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: 🇺🇸 https://t.co/DPRfGk3PHG +05/29/2016,Sports_celeb,@M_Ryan02,"RT @BCSportsNews: Thoughts & prayers for family, friends & players of former #BCEagles football assistant Don Horton, who has passed away." +05/24/2016,Sports_celeb,@M_Ryan02,What Julio sees when I throw him a go route #RiseUp https://t.co/qzKid2A8Zo +05/20/2016,Sports_celeb,@M_Ryan02,"Feeling nostalgic, here's my draft call! #FlashbackFriday #MattyIce #RiseUp https://t.co/ipYsUfLQZw" +05/19/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: After morning lifts, @M_Ryan02 spots video producer @brianbocek as he squats an impressive 65 lbs. 🎥: @PatDiMarco42 htt…" +05/19/2016,Sports_celeb,@M_Ryan02,"RT @JaredDudley619: Vote for my former @BostonCollege teammates in this years TBT basketball tournament & help strike out ALS. +https://t.c…" +05/17/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Our captain, our leader, our QB. Happy birthday, @M_Ryan02! #RiseUp +https://t.co/p4zeNAsyGw" +05/12/2016,Sports_celeb,@M_Ryan02,When your friend has something on his mouth and you help him discretely 😂 https://t.co/wFjvy2v0pM +05/09/2016,Sports_celeb,@M_Ryan02,My brother to my left. My brother to my right. Together we stand. Together we fight #RiseUp #mondaymotivation https://t.co/OWGh3WUvdw +05/08/2016,Sports_celeb,@M_Ryan02,Happy #MothersDay https://t.co/n9PBpPyzij +05/06/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Download our Mother's Day sheet, fill it out, and tweet us your pic with #ILoveMyFalconsMom! https://t.co/OlGk2vKXve ht…" +05/05/2016,Sports_celeb,@M_Ryan02,I don’t always celebrate #CincoDeMayo but when I do I make a video 😂 https://t.co/arqyeN1Ojd +05/04/2016,Sports_celeb,@M_Ryan02,#StarWars done right 😂! #MayThe4thBeWithYou https://t.co/zDaDpxR6s2 +04/28/2016,Sports_celeb,@M_Ryan02,"My draft memory still gives me chills, welcome to the league fellas! #ThrowbackThursday #NFLDraft https://t.co/B5tUJt3B1V" +04/28/2016,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: It's almost time! #ATLDraft https://t.co/e2NT8MbAZY +04/28/2016,Sports_celeb,@M_Ryan02,#NationalSuperheroDay squad #RiseUp @AtlantaFalcons https://t.co/4rVezCXFJq +04/27/2016,Sports_celeb,@M_Ryan02,Great catching up with bceaglesfootball legend Barry Gallup. Missed that Boston accent! https://t.co/4iI6lrrMlR +04/24/2016,Sports_celeb,@M_Ryan02,Saddened to hear about the passing of friend and former teammate Ron Brace. His smile was contagious. Thoughts and prayers to his family. +04/12/2016,Sports_celeb,@M_Ryan02,Go follow and vote for @TBT_TEAM_BC for the @thetournament #WeAreBC https://t.co/lSYjchmtZV +04/10/2016,Sports_celeb,@M_Ryan02,Best hole in 1 I've ever seen! +04/10/2016,Sports_celeb,@M_Ryan02,RIP will smith. Thoughts and prayers with him and his family. https://t.co/lpWdaDclBL +04/04/2016,Sports_celeb,@M_Ryan02,"53 of us. 5 million of you. We've got a really big team, let's get some really big rings #RiseUp https://t.co/51hlXkp4qw" +04/01/2016,Sports_celeb,@M_Ryan02,Happy anniversary to @sryan03. I hit the bullseye 5 years a good today! https://t.co/ZAUHnmxKi5 +03/31/2016,Sports_celeb,@M_Ryan02,Great few days working with the guys. Thanks to everyone in the Miami area for taking care of… https://t.co/1N5iBUaVdO +03/06/2016,Sports_celeb,@M_Ryan02,Congratulations to Peyton Manning on an amazing career. Start tailoring the gold jacket! https://t.co/dvbLdTvzHD +03/03/2016,Sports_celeb,@M_Ryan02,"An all pro receiver, teammate and leader...an even better friend and person. Will miss having… https://t.co/QbsFcZ5GuS" +02/27/2016,Sports_celeb,@M_Ryan02,"Happy birthday to the 🐐, @tonygonzalez88 https://t.co/AefcoInuuD" +02/26/2016,Sports_celeb,@M_Ryan02,#riseupfriday https://t.co/RCBcdDf3fH +02/11/2016,Sports_celeb,@M_Ryan02,Clear my schedule https://t.co/IblP8msYDp +02/09/2016,Sports_celeb,@M_Ryan02,Thoughts and prayers with AMB https://t.co/6LcBUNDy1W +02/06/2016,Sports_celeb,@M_Ryan02,Fun morning for @SNICKERS enjoyed being out on the field with you. @TonyGonzalez88 I couldn't find the retired 44 ? https://t.co/N5r0Uz88Bg +02/05/2016,Sports_celeb,@M_Ryan02,Thanks @Pepsi for sending me this awesome commemorative bottle! Now I can't wait to see the #PepsiHalftime Show! https://t.co/GvFs3YnqPB +02/04/2016,Sports_celeb,@M_Ryan02,Teaming up w/sponsor @Gillette for #SB50 to celebrate shielding. The O-Liners in this video = epic. #ProShield https://t.co/gVu94V0Jp4 +02/03/2016,Sports_celeb,@M_Ryan02,On the ground working #SuperBowl50 w/ @Gillette #ProShield celebrating shielding on and off the field! #CARvsDEN https://t.co/jSrtb3O09M +01/26/2016,Sports_celeb,@M_Ryan02,"So good…get your combo of 2L #Pepsi, Pizza and Jet’s Bread! #Pepsi #pizza #jetsbread #combo #delicious #jetspizza https://t.co/CC9IIyRsfj" +11/24/2015,Sports_celeb,@M_Ryan02,Clock is ticking to find the @Danimals Golden Bongo for a chance to win big! @FUTP60 #ad https://t.co/jvNfYGJpxu +11/18/2015,Sports_celeb,@M_Ryan02,#UncleDrew is back! Check out chapter 4 to see what he's been up to in Miami... https://t.co/SukSbdsyGv +10/27/2015,Sports_celeb,@M_Ryan02,Don’t miss a chance to Play 60 w/ NFL pros! Visit https://t.co/gUkGnT2GUq for more info. No purchase necessary #ad #sweepstakes +10/06/2015,Sports_celeb,@M_Ryan02,Visit http://t.co/gUkGnT2GUq to learn how u could Play 60 w/ NFL pros! No purchase necessary. #ad #sweepstakes http://t.co/kOjZA252mj +10/05/2015,Sports_celeb,@M_Ryan02,This code’s on me! Use bonus code RYAN to unlock more NFL prizes. Enter at http://t.co/IMdbTrIHUy Ends 11/6 http://t.co/XqJVI29lq6 +09/08/2015,Sports_celeb,@M_Ryan02,@AleBedoya17 Hahah...I'll do everything I can to help out ur fantasy squad! We'll be watching--play well +09/08/2015,Sports_celeb,@M_Ryan02,Good luck @AleBedoya17 and @ussoccer tonight against Brazil! 🇺🇸 +09/08/2015,Sports_celeb,@M_Ryan02,Look in specially-marked packs of Danimals 4 a chance to Play 60 w NFL pros! No purchase necessary #ad #fueluptowin http://t.co/mrkTxFS5Lj +08/30/2015,Sports_celeb,@M_Ryan02,Teammates for life! Congrats to @juliojones_11 on the new contract! Big things ahead #RiseUp https://t.co/VKZtEebcxa +08/15/2015,Sports_celeb,@M_Ryan02,Had fun making Odell go long in my new ad! Check it out: https://t.co/nf6yHZbUlu #ad #fueluptowin #danimals #FUTP60 @OBJ_3 +08/07/2015,Sports_celeb,@M_Ryan02,#fbf Had a great time teaming up with obj_3 on set. Look out for our new ad next week! #fuelup2win… https://t.co/vp0liLVcvN +07/30/2015,Sports_celeb,@M_Ryan02,Ready for camp #workboots #riseup https://t.co/tFTNy3SN2g +07/23/2015,Sports_celeb,@M_Ryan02,Happy birthday to my wingman and best friend! Hope your 30's are filled with lots of happiness and… https://t.co/503IRdU4qF +07/23/2015,Sports_celeb,@M_Ryan02,"Actually alvin did a great job today and I took care of him.""Disappointing"" when u don't know what ur talking about https://t.co/pOtmWZh1W5" +05/10/2015,Sports_celeb,@M_Ryan02,Damn!! #bronbron +04/30/2015,Sports_celeb,@M_Ryan02,Tbt to the 2008 draft. Good luck to all the guys tonight. #riseup https://t.co/6lwTBA4G6X +04/19/2015,Sports_celeb,@M_Ryan02,Best of luck @ATLHawks! The city will be red tonight #TrueToAtlanta +04/10/2015,Sports_celeb,@M_Ryan02,"Decisions, decisions! #AppleWatch https://t.co/xaFqk715ue" +04/01/2015,Sports_celeb,@M_Ryan02,Excited for the masters next week. Good luck @McIlroyRory @bose . #BetterNeverQuits #teambose http://t.co/rgRFlHYx1z +03/26/2015,Sports_celeb,@M_Ryan02,I'll miss John Imlay. He was one of the all time great people. So kind and generous. I am fortunate to have called him a friend! +03/19/2015,Sports_celeb,@M_Ryan02,Congrats to @GeorgiaStateU on their big win over Baylor! RJ Hunter was clutch. Good luck on Saturday +02/12/2015,Sports_celeb,@M_Ryan02,Braving the winter with my #wcw http://t.co/WFGtJrnyh0 +07/02/2018,Sports_celeb,@NiaJaxWWE,RT @RealGlampireWWE: #FriendshipGoals @RealPaigeWWE @NiaJaxWWE @zahrainchains ❤️ https://t.co/dT4WpZ7gbn +07/02/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #TotalDivas… +07/02/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 😍👑❤ #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #TotalDivas… +07/02/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #TotalDivas… +07/02/2018,Sports_celeb,@NiaJaxWWE,RT @DonutKingKC: The wait is over! @WWEJustNicholas will be here at @DonutKingKC later TODAY. 4- 8pm! Hope to see you then! https://t.co/jM… +07/01/2018,Sports_celeb,@NiaJaxWWE,Happy birthday @robschamberger !!! https://t.co/ZkiycvpFZx +07/01/2018,Sports_celeb,@NiaJaxWWE,Awww what a sweetheart 😍💗 https://t.co/lazLr73tfO +06/30/2018,Sports_celeb,@NiaJaxWWE,Isn’t she just perfect 😍🙌🏽 @RealPaigeWWE love herrrrrrr https://t.co/hRbcqpj67x +06/30/2018,Sports_celeb,@NiaJaxWWE,🙌🏽😘 https://t.co/e6XJaPC7yz +06/30/2018,Sports_celeb,@NiaJaxWWE,Living my best life and having so much fun!! 😍🙌🏽 +06/30/2018,Sports_celeb,@NiaJaxWWE,RT @IndiaTainaJ1756: @NiaJaxWWE Gorgeous Queens!! #NotLikeMostMoms #NotLikeMostGirls https://t.co/YKaUfuFMF2 +06/30/2018,Sports_celeb,@NiaJaxWWE,RT @IndiaTainaJ1756: My Gorgeous Queen @NiaJaxWWE And Her Gorgeous Mom. #NotLikeMostGirls #NotLikeMostMoms https://t.co/TQtsPHCflK +06/30/2018,Sports_celeb,@NiaJaxWWE,"RT @LukeGallowsWWE: Ryogoku Sumo Hall Tokyo, Japan #WWETokyo The bbbbbbbooooys are back in town @KarlAndersonWWE https://t.co/e6azarY1bl" +06/29/2018,Sports_celeb,@NiaJaxWWE,"RT @nessasilva46: This is so cute 😍😍😍😍 +@NatbyNature +@NiaJaxWWE @LanaWWE +@BellaTwins @RealPaigeWWE @NaomiWWE #TotalDivas https://t.co/jUSzN…" +06/29/2018,Sports_celeb,@NiaJaxWWE,Happy birthday 😘💜💗 https://t.co/PkP4QYPidz +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @sarahloves69: FINALLY!!!!!! 🙌🏻 @NiaJaxWWE #imnotlikemostgirls #irresistibleforcee https://t.co/mNhvGBm2jb +06/29/2018,Sports_celeb,@NiaJaxWWE,Aw love it! 😍🙌🏽😘 https://t.co/kB8ezlf0Br +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photos via Nia Jax's Instagram https://t.co/8PVWNaHqjl +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @Goldust: I will announce the winner of the @wildbangarang #goldust leggings at 6:00 pm ET IN JUST 40 minutes. All are wonderful dreams +06/29/2018,Sports_celeb,@NiaJaxWWE,I 💗 country music 🎶 +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #RAW ❤❤❤ ht… +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #RAW #RawSa… +06/28/2018,Sports_celeb,@NiaJaxWWE,RT @suh_ellenb: The Queens 👑 @NiaJaxWWE @NatbyNature https://t.co/DqRICfSFL3 +06/28/2018,Sports_celeb,@NiaJaxWWE,"RT @MsCharlotteWWE: Checkout today’s article by @AllisonGlock for the @espn #BodyIssue @espnW +I am humbled to be among such strong women i…" +06/28/2018,Sports_celeb,@NiaJaxWWE,RT @VinceMcMahon: The ultimate beauty of body and soul. Congratulations @MsCharlotteWWE for being featured in @ESPN Magazine’s Body issue. +06/28/2018,Sports_celeb,@NiaJaxWWE,"RT @Misha_Mayhem: I love when @HarleyPlays wears his ""I'm Not Like Most Girls"" @NiaJaxWWE shirt in videos. 😁😍👊" +06/27/2018,Sports_celeb,@NiaJaxWWE,"RT @Horeya_Ahmed_88: Edit for @NiaJaxWWE I hope you love it Nia .❤❤❤ + #WWEFanArt https://t.co/XZNmSfCoWI" +06/27/2018,Sports_celeb,@NiaJaxWWE,"RT @IndiaTainaJ1756: My Queen @NiaJaxWWE +Being inspiration for these young people as it has been in my life. That's why I love her and admi…" +06/27/2018,Sports_celeb,@NiaJaxWWE,RT @ToTheTopEagles: A true champion @niajaxwwe came by today and broke us down. So thankful. #tccfootball #tothetop https://t.co/HSDRezd78r +06/27/2018,Sports_celeb,@NiaJaxWWE,Had so much fun with awesome kids today! Thank you so much for having me 🙏🏽🏈🙌🏽 good luck on your season guys! Keep… https://t.co/DPp2vFUEue +06/27/2018,Sports_celeb,@NiaJaxWWE,RT @ToTheTopEagles: TCC Football @MondayNightRaw tonight . So excited to stand in the corner for @NiaJaxWWE . #tothetop https://t.co/gANH… +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: “I am all athlete. It's important that my looks have nothing to do with what I do in the @WWE .” - @MsCharlotteWWE as told to @e… +06/26/2018,Sports_celeb,@NiaJaxWWE,Damn @WWEShop https://t.co/ypL5WPYbBu +06/26/2018,Sports_celeb,@NiaJaxWWE,😍😘😘😘 https://t.co/Ax7VSN84sf +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: @NiaJaxWWE I think we can call it a glow up even if you already looked great back then 🔥 https://t.co/YQj8LywAn4 +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photo via Nia Jax's Instagram story https://t.co/fOmM6dB6DU +06/26/2018,Sports_celeb,@NiaJaxWWE,Thank you so much Brandon! It was my pleasure 🙏🏽 https://t.co/XjWpg2e1oc +06/26/2018,Sports_celeb,@NiaJaxWWE,💜💜💜😘😘😘 https://t.co/mqP7mQBJvO +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @sethsgaIIavich: @NatbyNature it was great seeing you and @NiaJaxWWE ! 💖💖💖 https://t.co/DiL7R2wIhP +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Catch up on @NiaJaxWWE appearance on Good Morning San Diego where talks her championship win at WrestleMania and more: https… +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @TheLegitBoss15: My two favorite wwe women wrestlers ever. @NatbyNature and @NiaJaxWWE #QueenOfHearts #NotLikeMostGirls #Queens👑#WWE #R… +06/26/2018,Sports_celeb,@NiaJaxWWE,Walking into #RAWSanDiego FRESH off our Tahoe vacay 😍 killing it 🙌🏽😜👑 THANK YOU San Diego for the amazing homecomin… https://t.co/FTpx1oivSz +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @nessasilva46: 😍😍😍 @NatbyNature @NiaJaxWWE https://t.co/K68QrUVgVi +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @zavala_alex1983: Daddy/Daughter date #MondayNightRaw she’s excited to show off her sign to @NiaJaxWWE https://t.co/ODpCymuku0 +06/25/2018,Sports_celeb,@NiaJaxWWE,This woman is beautiful inside and out! Beyond proud to call her my friend! You look absolutely stunning in these p… https://t.co/fmCuUN4j4e +06/25/2018,Sports_celeb,@NiaJaxWWE,Aww sorry!!! 💜 https://t.co/JUSyum5nG2 +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @AndrewDavidCox: Currently being blown away by @RondaRousey vs. @NiaJaxWWE. This woman is a rookie! And Nia has come so far she can't se… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Jenisabug8: Look who I met ❤ @NiaJaxWWE https://t.co/iVBLemURKq +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @TheShow1053: Don’t miss WWE’s @niajaxwwe IN STUDIO at 8:00 this morning! #wwe https://t.co/VQXeCrZKon +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @TheShow1053: We loved having @niajaxwwe in studio this morning! #wwe #niajax https://t.co/E9dul4wmjJ +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @ChelleBL: I really hope @NiaJaxWWE will be at #wwefargo. Even at 38 having someone remind you that you don’t have to be like most is re… +06/25/2018,Sports_celeb,@NiaJaxWWE,"RT @ChrisRiddle: “My destiny’s a force of greatness.” + +@123Pins @NiaJaxWWE @bullnakanokeiko @MeanQueenK + +#NotLikeMostGirls https://t.co/te…" +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Jamn957: Thanks to @NiaJaxWWE for stopping by and leaving us FLOOR SEATS for tonight's @WWERawTour!! @TatiOnYourRadio hooking you up NE… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @KramerAndGeena: We had the AMAZING #SanDiegoNative @NiaJaxWWE in the @Channel933 studio this morning!! You can see her tonight at @WWE… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Ms_Minga: We out here trying to catch a glimpse of @NiaJaxWWE. #Kusi9Studios +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Dagdagan5: Watching the Queen @NiaJaxWWE on the news this morning. Then seeing her at Raw tonight!!!!! https://t.co/4J2IT0hhOw +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @DanSileoShow: WHAT AN INTERVIEW!!! Thank you @NiaJaxWWE so much for coming IN-STUDIO to talk with the show. Can’t wait for #RawSanDiego… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @StephMcMahon: Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue. Charl… +06/25/2018,Sports_celeb,@NiaJaxWWE,"RT @hogan415: @RealPaigeWWE @NatbyNature @LanaWWE @NaomiWWE @NiaJaxWWE @BellaTwins @TotalDivas So happy to meet +Total Divas superstars…" +06/24/2018,Sports_celeb,@NiaJaxWWE,Queens 👑 #Sisterhood #TotalDivas https://t.co/HcFeE6WstE +06/24/2018,Sports_celeb,@NiaJaxWWE,RT @AmbroseGirl2013: I want friends like this ❤️ @NiaJaxWWE @LanaWWE @NatbyNature @BellaTwins @RealPaigeWWE @NaomiWWE #WomensEvolution #bes… +06/24/2018,Sports_celeb,@NiaJaxWWE,"RT @MissFoxi3: Omg my queens ❤❤❤ +@RealPaigeWWE @NiaJaxWWE https://t.co/xuf48yigEB" +06/24/2018,Sports_celeb,@NiaJaxWWE,Lake Tahoe has been absolutely magical 😍🙌🏽 #TotalDivas https://t.co/WoHwy1dC1Y +06/24/2018,Sports_celeb,@NiaJaxWWE,"RT @973TheFanSD: Exciting stuff going on IN-STUDIO with the @DanSileoShow + +#WWE Superstar @NiaJaxWWE will be in-studio Monday at 7:45am + +F…" +06/23/2018,Sports_celeb,@NiaJaxWWE,RT @feeltheglown: look at @NiaJaxWWE and trin holding hands. we love a couple ughh 😍 https://t.co/kTQu98QFKe +06/23/2018,Sports_celeb,@NiaJaxWWE,@TinaJAnd @RealPaigeWWE @NatbyNature @SonyaDevilleWWE Happy birthday!! +06/23/2018,Sports_celeb,@NiaJaxWWE,My SIS 😍💜💜💜💜 @NaomiWWE https://t.co/5zZOXzh6Wp +06/23/2018,Sports_celeb,@NiaJaxWWE,Happy HAPPY BIRTHDAY to the gorgeous and #IIConic @BillieKayWWE 😛😛😛👈🏽 you know what those mean 😉😘! Love you girl 💜 have the best day! +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @Mohammed_Y2J_: I like this woman’s you so beautiful 😍 @LanaWWE @NiaJaxWWE +Lana is the best Lana number one ☝🏻 +Nia is the best Nia num…" +06/23/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: @NiaJaxWWE you really got them all pressedT sis I love you for that😭💀 https://t.co/81NlM2B1YI +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: The girls living the best life, that's what matters 🙌🏼😉 @RealPaigeWWE @NiaJaxWWE https://t.co/L9lYIefnYR" +06/23/2018,Sports_celeb,@NiaJaxWWE,@ASOS https://t.co/zzUgPIQhKJ +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @BStoneKUSI: She's not like most girls, I'm not like most sportscasters, and on Monday @KUSINews won't be like most TV stations! We'll h…" +06/23/2018,Sports_celeb,@NiaJaxWWE,Living my BEST LIFE!!! #LakeTahoe #TotalDivas https://t.co/Gffy6KNlo2 +06/22/2018,Sports_celeb,@NiaJaxWWE,#TotalDivas 😍 https://t.co/r24GyVWEGn +06/22/2018,Sports_celeb,@NiaJaxWWE,"RT @RealGlampireWWE: #TotalDivas +@RealPaigeWWE @NatbyNature @BellaTwins @NiaJaxWWE @LanaWWE ❤ https://t.co/l23ByoNvmB" +06/22/2018,Sports_celeb,@NiaJaxWWE,RT @IStanWrestling: I LOVE A FRIENDSHIP ❤ @NiaJaxWWE @RealPaigeWWE @LanaWWE https://t.co/3kMVljCtFm +06/22/2018,Sports_celeb,@NiaJaxWWE,😍😍😍 https://t.co/xlhTbXZd6q +06/22/2018,Sports_celeb,@NiaJaxWWE,For someone that doesn’t care what anyone thinks it’s weird they have to go out and get a tattoo that says they’re enough 🤔 +06/22/2018,Sports_celeb,@NiaJaxWWE,RT @rampaiger_93: @RealPaigeWWE @NiaJaxWWE ☀️ https://t.co/lHOAlejJX8 +06/22/2018,Sports_celeb,@NiaJaxWWE,Total divas Season 8 cast....waiting on @NaomiWWE to arrive 😍🙌🏽😘 https://t.co/saRnUIiWSj +06/22/2018,Sports_celeb,@NiaJaxWWE,My crazy crew 😜😘 @RealPaigeWWE @LanaWWE #LakeTahoe https://t.co/U31Qc41Mtc +06/21/2018,Sports_celeb,@NiaJaxWWE,RT @MsCharlotteWWE: My naked butt will be in the @ESPN #Body10 Issue...still insecure but proud of who I am and what I look like. Never let… +06/20/2018,Sports_celeb,@NiaJaxWWE,Why are you so stunning sis 😍💜💜💜😩🙌🏽 https://t.co/rpN70XRHK8 +06/20/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: wheww a cute duo🖤 @LanaWWE @NiaJaxWWE https://t.co/9lyhqXRJZb +06/20/2018,Sports_celeb,@NiaJaxWWE,RT @RealGlampireWWE: #FriendshipGoals Da Cutest Friendship Ever #Queens @RealPaigeWWE and @NiaJaxWWE ❤👑 https://t.co/UHhhD0WiWA +06/20/2018,Sports_celeb,@NiaJaxWWE,Rest In Peace Vader🙏🏽 https://t.co/oEDRknKVoW +06/20/2018,Sports_celeb,@NiaJaxWWE,🍵🍵🍵🍵 https://t.co/bvgcpCEX7V +06/20/2018,Sports_celeb,@NiaJaxWWE,No https://t.co/rrP1JAqsEy +06/19/2018,Sports_celeb,@NiaJaxWWE,Pure beauty!!! 😍🙌🏽💜 https://t.co/9zcduYImQk +06/19/2018,Sports_celeb,@NiaJaxWWE,Lol!! That’s a joke. https://t.co/j7UeDgRg3l +06/19/2018,Sports_celeb,@NiaJaxWWE,I welcome that as well https://t.co/zK7cK39BkF +06/19/2018,Sports_celeb,@NiaJaxWWE,Like I said...title or not...she will get beat up 😈 https://t.co/Hbtqp2fe03 +06/19/2018,Sports_celeb,@NiaJaxWWE,Haha that’s is the truth 😂😂 https://t.co/lEod17otb8 +06/19/2018,Sports_celeb,@NiaJaxWWE,She’s a crappy human...she deserves a good butt kicking https://t.co/PC8R8kPY6o +06/19/2018,Sports_celeb,@NiaJaxWWE,Sure do https://t.co/SYqQdOda9f +06/19/2018,Sports_celeb,@NiaJaxWWE,RT @LukeGallowsWWE: Toledo....The bbbbbbbbbooooys are coming up live on ABC News! +06/19/2018,Sports_celeb,@NiaJaxWWE,Title or not...I just want to beat the piss out of her https://t.co/0hd5T1v0G1 +06/19/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: Current mood + +@NiaJaxWWE https://t.co/oT7c8rN21V" +06/19/2018,Sports_celeb,@NiaJaxWWE,RT @JJRiot88: @NiaJaxWWE Watching @RondaRousey Beat Up @AlexaBliss_WWE #Raw https://t.co/xRZXmsp8wd +06/19/2018,Sports_celeb,@NiaJaxWWE,Bahahahahaha!!!! Literally can’t stop watching this 😂😂😂 got what you deserved #FakeAzzB https://t.co/c7LI0yJ648 +06/19/2018,Sports_celeb,@NiaJaxWWE,"@muchoawesomeo Let’s unpack that Billy....I am from Cali, but since moving to Florida, my tides have been changing toward FL" +06/19/2018,Sports_celeb,@NiaJaxWWE,💜💜💜 https://t.co/d4TL5kTajL +06/19/2018,Sports_celeb,@NiaJaxWWE,Hahaha! Well...just wait for season 8. https://t.co/t04SEa3dST +06/19/2018,Sports_celeb,@NiaJaxWWE,Nope https://t.co/oyG1zAjuNE +06/19/2018,Sports_celeb,@NiaJaxWWE,🍿😜 go AWWWFFFFFF girl https://t.co/B7dJZ4mgmH +06/19/2018,Sports_celeb,@NiaJaxWWE,Hahahaha!!! YESSSSS! Well deserved 👍🏼. https://t.co/EPGSmkUB4Y +06/19/2018,Sports_celeb,@NiaJaxWWE,🤮 https://t.co/LtjSaUG2VU +06/18/2018,Sports_celeb,@NiaJaxWWE,Get it Zack!!!! #ZQ https://t.co/TlZpDbdV4Y +06/18/2018,Sports_celeb,@NiaJaxWWE,"RT @rowdylikeronda: @NiaJaxWWE Ain't that the truth. Did Alexa even fight during her #MITB match, or did I blink and miss her?" +06/18/2018,Sports_celeb,@NiaJaxWWE,"A match between two power houses! Toe to toe, bringing the pain! Setting the standard. #RondaVsNia ruined by a COWA… https://t.co/VEF9FT9VRO" +06/18/2018,Sports_celeb,@NiaJaxWWE,Thank you love! @KotulskiGear https://t.co/fBxdvAFkTG +06/18/2018,Sports_celeb,@NiaJaxWWE,Me? 😍 so I can be near you!!!! https://t.co/zRNgnOC26J +06/18/2018,Sports_celeb,@NiaJaxWWE,Haha billy!! You’re my number one! 🙌🏽 https://t.co/9URjucOmNj +06/18/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Money In The Bank 2018 screen captures have been added to the gallery: https://t.co/C179UXkGQ0 https://t.co/1HsTHf6Az0 +06/18/2018,Sports_celeb,@NiaJaxWWE,If it wasn’t for this insanely stunning #AntiDiva coming on the scene showing the world that being your perfectly c… https://t.co/byEUYwnXSb +06/18/2018,Sports_celeb,@NiaJaxWWE,RT @RyanLoco: Nia v @RondaRousey #WWEMITB https://t.co/AzgCY9EkkK +06/18/2018,Sports_celeb,@NiaJaxWWE,"RT @playwrightwoman: And with that, we finish #MITB. Really solid card all the way down. And dear fellow smarks, can we all agree to lay o…" +06/18/2018,Sports_celeb,@NiaJaxWWE,"Not the ending I was hoping for, but can’t help but be proud of what @RondaRousey & I accomplished tonight. She is the REAL DEAL! #MITB" +06/17/2018,Sports_celeb,@NiaJaxWWE,Thanks DA!! https://t.co/VZDUygoxTG +06/16/2018,Sports_celeb,@NiaJaxWWE,She is perfection 😍😘💜 https://t.co/xITrMHYN59 +06/16/2018,Sports_celeb,@NiaJaxWWE,"RT @VinceMcMahon: Proud to be making history in Australia with WWE Super Show-Down on Saturday, Oct. 6, at the iconic @MCG. https://t.co/na…" +06/16/2018,Sports_celeb,@NiaJaxWWE,"You can’t squash them, their eggs can be released and then you have an epidemic on your hands https://t.co/pX2HuE0BDV" +06/16/2018,Sports_celeb,@NiaJaxWWE,This was me!! Lol! It adopted an attack pose and hissed at me! GAME OVER! I was ready to leave all my belongings be… https://t.co/LN05tnQu7d +06/16/2018,Sports_celeb,@NiaJaxWWE,Tomorrow 🙌🏽 June 17 on the @WWENetwork let’s see if @RondaRousey is ready for her first ever singles championship m… https://t.co/PgNKJxkqA2 +06/16/2018,Sports_celeb,@NiaJaxWWE,"RT @WWE: BREAKING: As first reported by the @theheraldsun, @WWE will return to Australia for @WWE Super Show-Down, a historic event taking…" +06/16/2018,Sports_celeb,@NiaJaxWWE,Thanks Billy 🙌🏽 https://t.co/I7BDXVRFPU +06/16/2018,Sports_celeb,@NiaJaxWWE,I almost bought a new house because I was trying to kill a roach with bug spray and it didn’t die for a solid 5 min… https://t.co/l5l2qTS68q +06/15/2018,Sports_celeb,@NiaJaxWWE,WEERRRKKK hunny 💃🏼 https://t.co/Xs1oLYzxwv +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @JaxEmpireGang: Gorgeous Queen!! @NiaJaxWWE +😍👑❤🔥😈 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleFo…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Such a freaken babe 🔥🔥🔥 https://t.co/oAxeQeBX3v +06/15/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Video via Nia Jax's Instagram https://t.co/zr04V6wkon +06/15/2018,Sports_celeb,@NiaJaxWWE,Big!!!! https://t.co/HecGLGlZqA +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: ""Everyone is asking ‘Oh my God, is she heel or is she face?’ Nia Jax is Nia Jax.That’s something that I have been trying to…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Gorgeous https://t.co/5sYbFVvr6r +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @XTheShieldGirlX: I did a documentary yesterday about how girls are viewed in the media and society. In my speech, I spoke about how gir…" +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @FLAIRSNIA: “Yes, we are athletic. Yes, we can go just as hard as the men, but women come in all different shapes and sizes. We all have…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Can’t wait!!!! It will feel so good to finally be home https://t.co/JQCLaImLjH +06/15/2018,Sports_celeb,@NiaJaxWWE,💜💜 https://t.co/igrH7IrlKG +06/15/2018,Sports_celeb,@NiaJaxWWE,💜💜💜🤗🤗thank you!!! https://t.co/60S8SjuAfC +06/15/2018,Sports_celeb,@NiaJaxWWE,Love you Brit!!! https://t.co/S4Fil157hv +06/14/2018,Sports_celeb,@NiaJaxWWE,Inside Nia Jax's meteoric rise to the top of WWE's women's division https://t.co/4sDKt7ecJe +06/14/2018,Sports_celeb,@NiaJaxWWE,"RT @AntSulla: Over the past six months, @NiaJaxWWE has become arguably the most important female figure in @WWE. Here's a look at her remar…" +06/14/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: .@YahooSports goes Inside @NiaJaxWWE meteoric rise to the top of @WWE's women's division! By @AntSulla https://t.co/vzYrxJLmFq +06/14/2018,Sports_celeb,@NiaJaxWWE,💜🙏🏽 sending you so much love Mick https://t.co/CarlLqhUsr +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Total Divas has been nominated for a @TeenChoiceFOX award for #ChoiceRealityTVShow! Voting starts today and ends next Tuesda… +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: You can vote for Total Divas just by tweeting #ChoiceRealityTVShow and tag @TotalDivas 🙌🏻 https://t.co/T4rBjySChw +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Our #TeenChoice nominee for #ChoiceRealityTVShow is @TotalDivas +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @Hotspur29043068: My #WWESuperCard free tier pull she's not like most girls.@NiaJaxWWE https://t.co/dagEGtYUgR +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @BellaTwins: So beyond excited for @TotalDivas being nominated for a @TeenChoiceFOX for Choice Reality TV show! Bella Army please make s… +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @BadNewsSmitty: Congrats to all of the @TotalDivas. Not only are the women of the @WWE making waves in the pro wrestling business, they…" +06/13/2018,Sports_celeb,@NiaJaxWWE,I miss her soooo much it hurts 😩😩😩 https://t.co/TlaD5QeqkQ +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NatbyNature: So happy to see #TotalDivas has been nominated for a Teen Choice Awards in the category of Choice Reality TV Show!!! + +Vot…" +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @smFISHMAN: Congrats to the #TotalDivas folks on another #TeenChoiceAward nomination. The show has helped draw new fans to #WWE over the… +06/13/2018,Sports_celeb,@NiaJaxWWE,https://t.co/jNhmDRxsRJ https://t.co/dCBDvpYMvQ +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @RealPaigeWWE: If you’re in the Memphis area don’t EVER stay at the @SheratonMemphis it’s literally the worst. Things stolen, bad custom…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NiaJaxCom: Be sure to get your ""I'm Not Like Most"" T-shirt on #WWEShop and uniquely customize your very own like Nia Jax! https://t.co/…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @CNCOMixer26: Wednesday ain't Wednesday without a Wednesday women's dose of the RAW Women's Champion, #TheIrresistibleForce @NiaJaxWWE #…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NiaJaxCom: ""A queen on her throne is a woman who grows beyond boundaries knowing that the power within her is sufficient to meet every…" +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NERDSClothingCo: Want to see these on the WWE Shop? Let your voices be heard! @WWEShop and let them know which one(s) you'd like up on… +06/12/2018,Sports_celeb,@NiaJaxWWE,5 days away from #MITB and you showed me what you got...Take the small victory now because it won’t come this Sunda… https://t.co/WsKeTYLKeR +06/12/2018,Sports_celeb,@NiaJaxWWE,RT @MATTHARDYBRAND: GIMME AN OL’ RE-TWEET if you WATCH this & get AROUSED for the most EPIC #WWE24 documentary of all time.. The Hardys #WO… +06/12/2018,Sports_celeb,@NiaJaxWWE,RT @rampaiger_93: Irresistible force 😍❤️ @NiaJaxWWE #Raw #entrance https://t.co/oMVjV42pSp +06/11/2018,Sports_celeb,@NiaJaxWWE,"RT @MikaRotunda: This Saturday, I’ll be taking the Gelatin Plunge for the Children’s Cancer Center of Tampa Bay! + +Please help me in reachi…" +06/11/2018,Sports_celeb,@NiaJaxWWE,Click on this link and help 🙌🏽😘😘 https://t.co/EBficpFqP5 +06/10/2018,Sports_celeb,@NiaJaxWWE,"All competition aside, I’m honored to step in the ring with this incredible woman! @RondaRousey but I’m still gonna… https://t.co/0A47dYM41q" +06/10/2018,Sports_celeb,@NiaJaxWWE,This is who is coming to #MITB. This is your #Raw Women’s Champion. This is who I am. Try to prepare for it.… https://t.co/1uGeQyyii8 +06/10/2018,Sports_celeb,@NiaJaxWWE,"RT @WWEArmstrong: Good Sunday morning from Bossier City, Louisiana the host of today’s @WWE RAW Live Event ...5:00 belltime! See SuperStars…" +06/10/2018,Sports_celeb,@NiaJaxWWE,You talking about me again?! 😜 except it’ll be 135 to 285 https://t.co/Ij1iUl6Qv7 +06/10/2018,Sports_celeb,@NiaJaxWWE,RT @RevRedneck: @NiaJaxWWE my daughter got a high 5 from you after her match and would not sleep in nothing less than this shirt!! Thanks f… +06/10/2018,Sports_celeb,@NiaJaxWWE,💜💜💜💜 https://t.co/IrnQgQrHLH +06/09/2018,Sports_celeb,@NiaJaxWWE,Love her @BiancaBelairWWE 🙌🏽 https://t.co/nygjOdduLV +06/09/2018,Sports_celeb,@NiaJaxWWE,RT @Poohbaby925: This is my favorite photo of @NiaJaxWWE it was taken at #NXTTakeoverTheEnd when she was going after the NXT Woman's Champi… +06/09/2018,Sports_celeb,@NiaJaxWWE,Thanks girl!!! Xoxo https://t.co/fvfKGmjk6e +06/09/2018,Sports_celeb,@NiaJaxWWE,RT @WWE: .@NiaJaxWWE is a force that can't be stopped... what will happen at #MITB when the #RAW Women's Champion comes face-to-face with @… +06/09/2018,Sports_celeb,@NiaJaxWWE,"Flying into the weekend like 🙌🏽👊🏼✈️🏆 +•••• +Sat 6/9 Monroe, LA +Sun 6/10 Bossier City, LA +RAW is WAR 6/11 Little Rock… https://t.co/zp8tnVLcNq" +06/09/2018,Sports_celeb,@NiaJaxWWE,Thank you Billy 😘 https://t.co/Q3uwH5esTW +06/09/2018,Sports_celeb,@NiaJaxWWE,"The Irresistible Force Meets the Baddest Woman on the Planet June 17, 2018 at #MoneyInTheBank in Chicago.… https://t.co/0gQTaZtllL" +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Witness the power of @NiaJaxWWE before her face-to-face with Ronda Rousey #GreatnessIsHerDestiny https://t.co/SxPsrm79gk +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Nia Jax officially has her own foot wear! You can get a pair of these stylish socks available at Rock'em apparel https://t.c… +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photo via Honeybeileen's Instagram https://t.co/tg7QmrsSab +06/07/2018,Sports_celeb,@NiaJaxWWE,RT @StephMcMahon: So proud to have held @WWE’s first For Your Consideration event last night for the TV Academy. Thank you to the incredibl… +06/07/2018,Sports_celeb,@NiaJaxWWE,You are enough. You are beautiful. You are perfect. Live your best life. Love others. Never settle. Don’t be ordina… https://t.co/jd2w8uwMZR +06/07/2018,Sports_celeb,@NiaJaxWWE,Couple goals AF!! 🔥🔥🔥🙌🏽🙌🏽🙌🏽 https://t.co/WSRdXfhlgU +06/07/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: #WWEFYC @MsCharlotteWWE @NiaJaxWWE https://t.co/kgsW5MnMv6 +06/07/2018,Sports_celeb,@NiaJaxWWE,"RT @LehrBreanna: Anyone who is body shaming @NiaJaxWWE I’d love to see you make it to the wwe, and be as dominant as she is. For crying out…" +06/07/2018,Sports_celeb,@NiaJaxWWE,"RT @LoveAlexaBliss: @NiaJaxWWE + +Go 👏🏼Awf👏🏼Sis👏🏼 + +You look freaking amazing 👏🏼🔥🙌🏼 https://t.co/gF6rCvqtLZ" +06/07/2018,Sports_celeb,@NiaJaxWWE,Love you sister!!!! 💜💜💜💜 https://t.co/Lxjq8IffM8 +06/06/2018,Sports_celeb,@NiaJaxWWE,Come hang with me sister 🙌🏽 https://t.co/eKAEfHDU28 +06/06/2018,Sports_celeb,@NiaJaxWWE,RT @nessasilva46: So beautiful @NatbyNature @NiaJaxWWE 😍😍😍 https://t.co/wur6ETfpLa +06/06/2018,Sports_celeb,@NiaJaxWWE,Happy birthday!!!!! https://t.co/dJIHkzGy4b +06/05/2018,Sports_celeb,@NiaJaxWWE,RT @lole9000: @NiaJaxWWE Yes girl🤘 https://t.co/KlP3DIKnI0 +06/05/2018,Sports_celeb,@NiaJaxWWE,Had quite the special day yesterday! Was able to spend time with amazingly gifted athletes @SpecialOlympics & some… https://t.co/aFcztkVr8f +06/05/2018,Sports_celeb,@NiaJaxWWE,There are few women who I respect as much as @NatbyNature ...and she knows this is a physical business. As Supersta… https://t.co/nWnX25Pybx +06/05/2018,Sports_celeb,@NiaJaxWWE,"Nothing beats Cali weather 😍 + +Cali-for-NIA 🙌🏽💜" +06/05/2018,Sports_celeb,@NiaJaxWWE,"RT @JamesHands777: @NiaJaxWWE & @RealPaigeWWE I wanted to make these for you two. +#FanArt https://t.co/awk5WK7YLx" +06/05/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photos of Nia Jax from the Be A Star rally in Houston https://t.co/IvZyQ7mEG1 +06/05/2018,Sports_celeb,@NiaJaxWWE,🙌🏽 https://t.co/20YwTPjBad +06/04/2018,Sports_celeb,@NiaJaxWWE,Awww happy birthday little man!!! 💜🎉🎂 https://t.co/zdoeaFpNSm +06/04/2018,Sports_celeb,@NiaJaxWWE,"RT @SabatiniAmelie: Ok now @NiaJaxWWE and @IAmEliasWWE are my new #FriendshipGoals !🙌🏼😻 +They are so cute!🙌🏼😹😻 + +Happy Monday guys!🤗💛 +#Monday…" +07/02/2018,Sports_celeb,@titoortiz,Let the Punishment begin!!!! https://t.co/43M19cWPyF +07/02/2018,Sports_celeb,@titoortiz,🤗 happy dance +07/02/2018,Sports_celeb,@titoortiz,#MMAAwards2018 on @FoxSports Tuesday night watch the best get awarded for their accomplishments. Great cast of pres… https://t.co/FAzW9pe9Ej +07/01/2018,Sports_celeb,@titoortiz,Ben is on a mission! #UFC @Primetime360ESM https://t.co/RVH55RVQ3P +06/28/2018,Sports_celeb,@titoortiz,"#SILENCER: Chaos is King in the Official Trailer for the Action-Thriller Starring @jmessner05 , @officialDannyT ,… https://t.co/nx75jPfJmw" +06/28/2018,Sports_celeb,@titoortiz,"🙏🏼 #Repost samantha_r_bonilla with get_repost +・・・ +Today is the anniversary of #OperationRedWings 🇺🇸 Please take the… https://t.co/n5FyggKyax" +06/28/2018,Sports_celeb,@titoortiz,"RT @IlbayDeniz: So what’s the deal on the +@titoortiz VS @ChuckLiddell 3 Fight? My big bro Tito started training camp and is ready, @OscarDe…" +06/28/2018,Sports_celeb,@titoortiz,"RT @SubmissionAus: Submission Radio #162 OUT NOW featuring @JakeMatthewsUFC, @danthehangman, @stylebender, @akajav, @titoortiz and @marc_ra…" +06/28/2018,Sports_celeb,@titoortiz,"RT @DrinaMohacsi: FightersOnly @FOawards 10th Annual World MMA Awards TUESDAY, JULY 3 @Palms #LasVegas #PearlConcertTheatre FOX Sports Netw…" +06/27/2018,Sports_celeb,@titoortiz,Building a castle one brick at a time. #Silencer is the 2nd of the 3rd films I shot in a year. @MadeaHalloween firs… https://t.co/MgHPvtZ6C1 +06/27/2018,Sports_celeb,@titoortiz,Repost: @AmberNicholeM1 This movie 🎥 on so many levels brings savagery!! @titoortiz and I throughly enjoyed every s… https://t.co/zDgLf8FRz0 +06/27/2018,Sports_celeb,@titoortiz,@SicarioMovie This is a must see film! WOW!!!! #Eyeopener +06/27/2018,Sports_celeb,@titoortiz,@SicarioMovie WOW!!!!! Please watch this film! #eyeopener 👍🏼👍🏼 +06/27/2018,Sports_celeb,@titoortiz,sicariomovie the first movie was great. Now we are here for the second! #sicaro2soldado 🇲🇽🇺🇸 @ Regency Village and… https://t.co/HoKXgAvLlU +06/27/2018,Sports_celeb,@titoortiz,What the FK @ChuckLiddell ? You’re stepping over dollars to pick up pennies! #GoldenBoyMMA #TitovsChuck3 +06/26/2018,Sports_celeb,@titoortiz,#Motivation @ UFC GYM https://t.co/8vYgXrckMN +06/26/2018,Sports_celeb,@titoortiz,"When you know things are going good! 😊 @ Huntington Beach, California https://t.co/t0JHy0tOkL" +06/26/2018,Sports_celeb,@titoortiz,"Always getting better! @Criscyborg @gabijiu +Wrestling and mma ✅ +Learning is priceless! +Tks @titoortiz for teachin… https://t.co/judS0Nx9Pt" +06/25/2018,Sports_celeb,@titoortiz,"#Make17Monday +We started #MAKE17 to Inspire, Spread Love and Acceptance. We wanted our boys to make 17 new friends… https://t.co/AKoq90D5oL" +06/23/2018,Sports_celeb,@titoortiz,"These guys have some driving skills. Congrats Mexico Soccer ⚽️ 🇲🇽roushsupercharged with get_repost +・・・ +#pacificblvd… https://t.co/RkfB0yttsH" +06/22/2018,Sports_celeb,@titoortiz,"First day hitting pads with @razorob lots of work to do. +・・・ +Padding @ufc Hall of Fame & 5x LHW Champion… https://t.co/BckAbwTAxD" +06/22/2018,Sports_celeb,@titoortiz,"Week 1 @razorob with get_repost +・・・ +Look who’s back training... solid work today with the homie @titoortiz… https://t.co/va6jSmzVSF" +06/21/2018,Sports_celeb,@titoortiz,#TBT That one time in Thailand. Thailand didn’t… https://t.co/epqPsEijYS +06/20/2018,Sports_celeb,@titoortiz,@redbird45 Sell out to who??? You don’t want a better country? +06/20/2018,Sports_celeb,@titoortiz,The partnership of @RockwellTime and @titoortiz.… https://t.co/Frl8RTSjsu +06/20/2018,Sports_celeb,@titoortiz,@kenhass I have his hats and it says made in USA. 🤔 +06/20/2018,Sports_celeb,@titoortiz,RT @OliverMcGee: Wow. Throwback to when Senator Barack Obama agreed with @realDonaldTrump on immigration! RT this so your friends see this!… +06/20/2018,Sports_celeb,@titoortiz,"RT @OliverMcGee: Video footage surfaces from 2014 showing that under Obama, family separations and holding centers were EXACTLY the same.…" +06/19/2018,Sports_celeb,@titoortiz,"@hollywoodsports with get_repost +・・・ +UFC legend… https://t.co/GmHH7IwYr2" +06/19/2018,Sports_celeb,@titoortiz,5 mins x 5 rounds #groundandpound… https://t.co/zePq5aWmyg +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu @CptBozoJabroni Stop breaking the law. +06/19/2018,Sports_celeb,@titoortiz,@theubergirl It will. +06/19/2018,Sports_celeb,@titoortiz,@Hairball911 No we are not!!!! This will change. @realDonaldTrump will not go down that easy. +06/19/2018,Sports_celeb,@titoortiz,@Chris_Ledezma That’s stupid. +06/19/2018,Sports_celeb,@titoortiz,@Hairball911 I wish more people would speak up. Because it going to get worse. +06/19/2018,Sports_celeb,@titoortiz,@theubergirl It’s like a revolution. It will get fixed soon. +06/19/2018,Sports_celeb,@titoortiz,@dazzaDS Why dont they take their kids with them? +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu I would of never been born. Key words 4 generation! +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu 150 years ago. +06/19/2018,Sports_celeb,@titoortiz,So let’s get this straight we want this to be… https://t.co/B706Qj5sES +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu Shit I’ve done it all my own! Not one family member has help me besides my brother and he’s white. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu No I’m America with MexiCan decent. But still do you want America like Mexico? +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni @manolo_jiujitsu That’s been a long time and Ive payed my time. +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni The parents are choosing to abandon their kids. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu https://t.co/Kvehdk1rTy +06/19/2018,Sports_celeb,@titoortiz,@dazzaDS Yes look a history. +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni No because I would do any thing to stay with them. Not abandon them. Don’t let the media brainwash you. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu No I’m giving MexiCan/America’s the dream that hard work pays off. By obeying the laws. I had to d… https://t.co/Qi31ulryJV +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu Im a 4th generation MexiCan/America that wants safety for my kids. Do you want America like Mexico… https://t.co/Pcps3j9bg6 +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu They are not ripped. The parents choose to abandon them. Obama did it more an all presidents put together. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu We live by laws. Why do people want to live In the USA? +06/19/2018,Sports_celeb,@titoortiz,It’s crazy how many people don’t like to hear the truth. Is it to hard to face? +06/18/2018,Sports_celeb,@titoortiz,#Make17Monday scottcarrgbcm with… https://t.co/b61sDvGKGK +06/18/2018,Sports_celeb,@titoortiz,RT @Punishment99: Happy Monday. Who else is determined to put in the work this week? https://t.co/bUFQFkMYKo +06/18/2018,Sports_celeb,@titoortiz,Great Father’s Day with the family. #fishing @… https://t.co/gOabYuAXhW +06/17/2018,Sports_celeb,@titoortiz,Saturday Ortiz family battle. Parents vs kids… https://t.co/0tYEfCLxtJ +06/16/2018,Sports_celeb,@titoortiz,@Primetime360ESM @BenMoa4 ready to go 8-0 on June 29th. This heavyweight is ready to prove himself. https://t.co/20IW5YnK0r +06/16/2018,Sports_celeb,@titoortiz,RT @AmberNicholeM1: Tito Ortiz and Amber Nichole Miller 2018 Puig Poker Tournament Red Carpet https://t.co/2cy3Kb9GVB @titoortiz @YasielPui… +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all captains… https://t.co/KSdSOoZ2wK +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all captains… https://t.co/0bzYrWev25 +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all capitals… https://t.co/fgz47EQ8Y9 +06/14/2018,Sports_celeb,@titoortiz,Happy Birthday Mr. President @RealDonaldTrump… https://t.co/kAMUq5gSPt +06/14/2018,Sports_celeb,@titoortiz,The beginning of something great. #wrestling… https://t.co/dUbIPFCsnk +06/14/2018,Sports_celeb,@titoortiz,RT @sweetyhigh: TEAM WORK makes the DREAM WORK! 💙 @EmilyOsment @HaleyJoelOsment @annewinters @georgelopez @ArsenioHall @AmberNicholeM1 @tit… +06/12/2018,Sports_celeb,@titoortiz,@YazmanianDVL08 great cause to support last… https://t.co/rrC6glVt3P +06/12/2018,Sports_celeb,@titoortiz,"RT @fightnet: See the best performances from @titoortiz on ""UFC in 60"" at 5 p.m. ET on @fightnet! https://t.co/kp7prWm9lb" +06/12/2018,Sports_celeb,@titoortiz,"RT @fightnet: See the top performances from @titoortiz on ""UFC in 60"" at 5 p.m. ET on @fightnet! https://t.co/5lSMt2IW7c" +06/12/2018,Sports_celeb,@titoortiz,In 70 years U.S. couldn’t make this happen… https://t.co/PoTmxxm6RT +06/12/2018,Sports_celeb,@titoortiz,I found someone with a head bigger than mine. Go… https://t.co/c15uLY6Rrm +06/11/2018,Sports_celeb,@titoortiz,RT @34Dodgers: The #HuntingtonBeachBadBoy @titoortiz https://t.co/OBQNr7uDOS +06/11/2018,Sports_celeb,@titoortiz,@martinmcneil @JayTWarsh @OfficialSaschaK @BrownsGuru13 @ChuckLiddell @TMZ @danawhite Will to take that chance. I t… https://t.co/3ygOm8a3Gh +06/11/2018,Sports_celeb,@titoortiz,@martinmcneil @JayTWarsh @OfficialSaschaK @BrownsGuru13 @ChuckLiddell @TMZ @danawhite 100% he is asking for it. I want redemption. +06/11/2018,Sports_celeb,@titoortiz,Looking forward to the event! https://t.co/FBz7iJ2UUC +06/11/2018,Sports_celeb,@titoortiz,Happy Birthday parilloboxing you have made my… https://t.co/mEYDuU186O +06/11/2018,Sports_celeb,@titoortiz,Thanks for having s on the show! @tattoolovesla… https://t.co/7wiXthcdKY +06/11/2018,Sports_celeb,@titoortiz,"RT @fightnet: FAN VOTE! We're featuring UFC Hall of Famers in episode of ""UFC in 60"" for International Fight Week! + +Which ""EARLY LEGEND"" wo…" +06/11/2018,Sports_celeb,@titoortiz,#Make17Monday foxnews with… https://t.co/U95pWAnwqh +06/11/2018,Sports_celeb,@titoortiz,"@Noel3881 @JayTWarsh @ChuckLiddell No your boy chuck called me out. Third time will be my charm. Try,try and try again." +06/11/2018,Sports_celeb,@titoortiz,@WickedTuna Sunday’s are great. Get my fix of fishing from television can really happen. #fishingbug @TJHOTTUNA +06/10/2018,Sports_celeb,@titoortiz,RT @_LES_: @ChuckLiddell Never thought I'd see u dodge @titoortiz +06/10/2018,Sports_celeb,@titoortiz,@ChuckLiddell Why isn’t this fight signed yet? 🤔 Oh yeah we are wait on you! Let’s gets this done! Come on chucky p… https://t.co/x37goYyxJz +06/10/2018,Sports_celeb,@titoortiz,This was my last fight last year. You must of forgot! I want #Redemption on The Iceman. https://t.co/Mi25RBD8pk +06/10/2018,Sports_celeb,@titoortiz,.@ChuckLiddell please don’t tell me it was all talk on @TMZ? You say I’m an easy fight? You are the Iceman but are… https://t.co/bmYv9fFpDb +06/10/2018,Sports_celeb,@titoortiz,@RobWhittakermma has a huge heart. 👏🏼 Respect #ufc225 +06/10/2018,Sports_celeb,@titoortiz,Great fight! +06/10/2018,Sports_celeb,@titoortiz,They are gassed. #ufc225 +06/10/2018,Sports_celeb,@titoortiz,@toycars1980 You can see it on my Instagram +06/10/2018,Sports_celeb,@titoortiz,@toycars1980 Sorry I was to busy fishing. +06/10/2018,Sports_celeb,@titoortiz,Wait @YoelRomeroMMA didn’t make weight? Crazy! #ufc225 +06/09/2018,Sports_celeb,@titoortiz,Great day on the water. Went 5-12 on yellowtail… https://t.co/Q6maKjsg2b +06/09/2018,Sports_celeb,@titoortiz,@SugaRashadEvans Reapect!✊🏼 https://t.co/sT1oXikxJ4 +06/08/2018,Sports_celeb,@titoortiz,"@Bloodydecks with get_repost +・・・ +Monster calico… https://t.co/QebZ4QmHn7" +06/07/2018,Sports_celeb,@titoortiz,@Brouskie Come train with me. Just one session of the three I do 6 day a week. +06/07/2018,Sports_celeb,@titoortiz,🙏🏼 #Redemption https://t.co/7o3gIN2rHK +06/07/2018,Sports_celeb,@titoortiz,@bradcooney1 The hell with it I’m doing it with or without him. I’m on week 4 of training and I still have it. +06/07/2018,Sports_celeb,@titoortiz,https://t.co/uPjInI7a5M thank you for the new mouth piece. Since 2005 you guys have produced the best mouth pieces.… https://t.co/yfKTa99X1M +06/06/2018,Sports_celeb,@titoortiz,"RT @HispanicallyUrs: MOVIES: @Cinedigm acquires North American distribution rights to @titoortiz's ""#Silencer."" https://t.co/xhbU8LKA7s" +06/05/2018,Sports_celeb,@titoortiz,@quicorafa I will be there that weekend. +06/05/2018,Sports_celeb,@titoortiz,Great news coming soon. #GoldenBoyMMA +06/04/2018,Sports_celeb,@titoortiz,.@ChuckLiddell walks away from a multimillion dollar fight? I can’t wait anymore. #GoldenBoyMMA +06/02/2018,Sports_celeb,@titoortiz,@AlanMurphyMMA @ChuckLiddell Waiting on @ChuckLiddell +06/01/2018,Sports_celeb,@titoortiz,Happy 16th Birthday Son @Jakeort58726870 You… https://t.co/TwXq2SWVU5 +05/31/2018,Sports_celeb,@titoortiz,@mjBrolin @ChuckLiddell @GoldenBoyBoxing Ppl don’t like the truth. You know the history. 👍🏼 +05/31/2018,Sports_celeb,@titoortiz,"RT @CollinAStewart: @ZachJLindquist @titoortiz @ChuckLiddell @GoldenBoyBoxing To be fair, Chuck called him out first." +05/31/2018,Sports_celeb,@titoortiz,.@ChuckLiddell good thing I’m not holding my breath. Let’s give the fans this fight! We have a chance to change the… https://t.co/KtXE05vtRr +05/31/2018,Sports_celeb,@titoortiz,RT @iamKokoD: @MMAjunkie Don’t think so. @titoortiz steamrolled @ChaelSonnen who’s still fighting at a decent level. He’ll smash chuck this… +05/30/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: May30.1997 + +21 years ago today, + +Tito Ortiz made his professional MMA debut, & def. Wes Albritton by TKO https://t.co/…" +05/29/2018,Sports_celeb,@titoortiz,"RT @fightnet: Tune in to #Retrospective with @patrick_cote at 9:30 p.m. ET speaking on facing @titoortiz, plus much more. https://t.co/uwSc…" +05/29/2018,Sports_celeb,@titoortiz,.@ChuckLiddell Let’s get this signed! @GoldenBoyBoxing #GoldenBoyMMA https://t.co/Qmg45NMmH7 +05/26/2018,Sports_celeb,@titoortiz,"RT @punisherpride: @Punishment99 @titoortiz Tito, great clothing line but missing bigger sizes always,need 2X - 3X and some jersey tanks...…" +05/25/2018,Sports_celeb,@titoortiz,"RT @Punishment99: We've got some amazing deals for you this Memorial Day weekend. Today through Tuesday, save 20% off of your entire order…" +05/25/2018,Sports_celeb,@titoortiz,"RT @Punishment99: And we have yet another incredible deal for you on this Memorial Day Weekend! +When you spend $25 we’ll send you one of th…" +05/24/2018,Sports_celeb,@titoortiz,#keepfighting https://t.co/D8QnafTeoT +05/24/2018,Sports_celeb,@titoortiz,RT @MMAWriter_Greg: @JayTWarsh exclaims @titoortiz motive in regards to the Liddell / Ortiz Trilogy. #MMANews #MMA https://t.co/8jYUabSFFA +05/24/2018,Sports_celeb,@titoortiz,👌🏼 https://t.co/88pVb1QgQJ +05/23/2018,Sports_celeb,@titoortiz,@bradcooney1 @USPS @bradcooney1 Let me see what I can do for you guys. 👌🏼 +05/22/2018,Sports_celeb,@titoortiz,RT @MikeTyson: Check out my new podcast episode with former UFC champion and UFC Hall of Famer @TitoOrtiz. We talk about whether I ever tho… +05/22/2018,Sports_celeb,@titoortiz,@MMAWriter_Greg @JayTWarsh @ChuckLiddell My brother from another mother. +05/22/2018,Sports_celeb,@titoortiz,“I started this gangster shit and this is the mother fucking thanks I get”- @IceCube Bellator 170 Recap: Tito Ortiz… https://t.co/Us1Kgb4OEl +05/22/2018,Sports_celeb,@titoortiz,".@ChuckLiddell what’s taking so long? You said,” you like punching me in the head and it’s an easy fight for you!”… https://t.co/inD4TzWeTP" +05/19/2018,Sports_celeb,@titoortiz,RT @TMZ_Sports: Tito Ortiz Says Fight With Chuck Liddell Will be Hugest In MMA History https://t.co/80EA6ev6M7 +05/19/2018,Sports_celeb,@titoortiz,RT @criscyborg: Tito Ortiz favored over Chuck Liddell in 3rd fight https://t.co/6TaPiqbd1k +05/19/2018,Sports_celeb,@titoortiz,"RT @TheTylt: .@ufc legends @titoortiz and @ChuckLiddell could be squaring off for their third fight. Who would win? + +Tweet #TeamOrtiz or #…" +05/19/2018,Sports_celeb,@titoortiz,@KnicktheWolf @TMZ_Sports Yes 2.2 million views and tapped out Chael in the first round. 🤔 +05/19/2018,Sports_celeb,@titoortiz,@GinaHerndon7 @Poison @cheaptrick I had to train. +05/19/2018,Sports_celeb,@titoortiz,@GirlyDuckGirl I hope you enjoy the show. https://t.co/MRegFz6R3G +05/19/2018,Sports_celeb,@titoortiz,@gabijiu Yes Monday. Call @CrisCyborg for time. +05/19/2018,Sports_celeb,@titoortiz,@GirlyDuckGirl Yes +05/18/2018,Sports_celeb,@titoortiz,The first person to see me at Cleber Luciano BJJ & MMA in Huntington Beach can have them. I will be there at 5pm. +05/18/2018,Sports_celeb,@titoortiz,@MmaDonald What part of free don’t u get? +05/18/2018,Sports_celeb,@titoortiz,"Who wants two free tickets to @Poison and @CheapTrick for tonight’s show in Irvine,CA 7pm?" +05/18/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: May17.2014 + +Tito Ortiz makes his Bellator debut, + +& puts Alexander Shlemenko to sleep with an arm triangle choke https…" +05/16/2018,Sports_celeb,@titoortiz,@UFC5150 @Punishment99 It’s strong. It feels like new. +05/16/2018,Sports_celeb,@titoortiz,Thank you! https://t.co/9Goa7oTK6G +05/15/2018,Sports_celeb,@titoortiz,"RT @OfficialSaschaK: @titoortiz out of retirement✅ +@ChuckLiddell out of retirement✅ +@OscarDeLaHoya as a promoter✅ +All we need is a DATE & P…" +05/15/2018,Sports_celeb,@titoortiz,Happy Birthday to @AlonzoLAPD ones of my biggest fans and supporters… https://t.co/g5WaQTjzCd +05/14/2018,Sports_celeb,@titoortiz,@JonnyBones 🤫Let me get redemption this time around. +05/14/2018,Sports_celeb,@titoortiz,#TitovsChuck3 soon to come! Let’s Go!!’ +05/14/2018,Sports_celeb,@titoortiz,"Step two done ✅ +Breaking News: Chuck Liddell officially out of… https://t.co/vsCPuI1v52" +05/14/2018,Sports_celeb,@titoortiz,Welcome mercedesbenzsd and shaneboyd13 to @TOautogroup a match made… https://t.co/mGzvHnEcHL +05/14/2018,Sports_celeb,@titoortiz,RT @OnPointMMA: .@ChuckLiddell says he’s talking to @OscarDeLaHoya about partnering with @GoldenBoyBoxing and putting together an #MMA figh… +05/14/2018,Sports_celeb,@titoortiz,"#Make17Monday #Repost scottcarrgbcm +My friend @titoortiz started… https://t.co/VyojIBeDFA" +05/14/2018,Sports_celeb,@titoortiz,"My brothers and me with Mom. #Mothersday @ Huntington Beach, California https://t.co/cBxHcb5tXp" +05/13/2018,Sports_celeb,@titoortiz,Happy Mother’s Day Mom joycejohnson398 I love you. ❤️ @ Huntington… https://t.co/gBLO0KcKO0 +05/13/2018,Sports_celeb,@titoortiz,Video: Aaron Pico vs. Justin Linn https://t.co/4kfycP0Qjg via @MMAFighting +05/13/2018,Sports_celeb,@titoortiz,Ready to go! @ufc https://t.co/MtCVEh93OZ +05/13/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: UFC 61 took place 10 years ago today + +It set a UFC PPV buyrate record at an estimated 775,000+ buys https://t.co/dNA2g…" +05/13/2018,Sports_celeb,@titoortiz,I see a challenge for @CrisCyborg #ufc224 +05/13/2018,Sports_celeb,@titoortiz,"@RyanBader finishes King Mo +in 15 SECONDS!! @ RVCA https://t.co/lHQxz3gG1U" +05/13/2018,Sports_celeb,@titoortiz,Good fight #ufc224 +05/13/2018,Sports_celeb,@titoortiz,"Congrats brother @WinbackUSA +・・・ +Need a caption?  1st round TKO https://t.co/qt5stC34HN" +05/13/2018,Sports_celeb,@titoortiz,WOW! Great fight! @espn +05/13/2018,Sports_celeb,@titoortiz,#Lomachenko is fast as hell. @espn +05/13/2018,Sports_celeb,@titoortiz,"Straight right hand! Says ,@OscarDeLaHoya" +05/13/2018,Sports_celeb,@titoortiz,@TheGarden looks packed on @ESPN +05/13/2018,Sports_celeb,@titoortiz,@NickHeinMMA kickass! @Punishment99 #UFC224 +05/12/2018,Sports_celeb,@titoortiz,Lucky to live in paradise. #HardWorkPaysOff 🙏🏼 #HuntingtonBeach 🇺🇸 @… https://t.co/mK65orhc7e +05/12/2018,Sports_celeb,@titoortiz,TONIGHT! Free on espn #LinaresLoma #AndStill 👑 @jorgelinares… https://t.co/GXZfCkRV2K +05/12/2018,Sports_celeb,@titoortiz,@AntonioSabatoJr @POTUS @realDonaldTrump Mine too !🙏🏼🇺🇸 +05/12/2018,Sports_celeb,@titoortiz,"RT @Punishment99: So you forgot tomorrow is Mother's Day? Not to worry. Use code ""MOM"" through tomorrow and save thirty percent on your ent…" +05/11/2018,Sports_celeb,@titoortiz,What if #MMA fighters got paid like boxers? Instead of subcontractors. We would be partners. I’m going to change th… https://t.co/E0vRWr1ceN +05/11/2018,Sports_celeb,@titoortiz,I want to give the fans the fight they have been waiting for… https://t.co/w9B6xHi4xB +05/11/2018,Sports_celeb,@titoortiz,Introducing the partnership of @RockwellTime and @titoortiz.… https://t.co/1EEVTm1XRy +05/11/2018,Sports_celeb,@titoortiz,#TBT goes to @gtjokes Happy Birthday today homie. #captionthis @… https://t.co/rMquaddHSS +05/09/2018,Sports_celeb,@titoortiz,"One step closer. #TitovsChuck3 @ Huntington Beach, California https://t.co/Wg1RxQ4GUU" +05/09/2018,Sports_celeb,@titoortiz,@lapane21 Go to https://t.co/tZkfaahu1H +05/08/2018,Sports_celeb,@titoortiz,".@RealDonaldTrump +Making Moves in Historic Portions ! United States… https://t.co/YXPaLxlU7t" +05/08/2018,Sports_celeb,@titoortiz,"#Repost brown__eyed_girl__ with get_repost +・・・ +Tristen, Mom Misty… https://t.co/zia9xqTGDh" +05/08/2018,Sports_celeb,@titoortiz,I wish more did. https://t.co/fbTv2guzau +05/07/2018,Sports_celeb,@titoortiz,"#Make17Monday +We started #MAKE17 to Inspire, Spread Love and Acceptance. We… https://t.co/mxZrwDYjaU" +05/06/2018,Sports_celeb,@titoortiz,#AmericaFirst @ Caesars Palace https://t.co/dZDYTm8kcZ +05/05/2018,Sports_celeb,@titoortiz,This is how we walk into #CincoDeMayo weekend l. Let’s go!!! 🇲🇽 #MexiCan @… https://t.co/orocielbZ4 +05/05/2018,Sports_celeb,@titoortiz,The best for the job! @GrapplersRus -… https://t.co/bZUYk9UkqD +05/05/2018,Sports_celeb,@titoortiz,"This is the new breed of boxing. Speed for days. Wow. @OscarDeLaHoya - +Great… https://t.co/Vq0qOs7bDd" +05/05/2018,Sports_celeb,@titoortiz,@RockwellTime time to enjoy #CincoDeMayo 🇲🇽#LasVegas weekend. Thank you… https://t.co/N09XjBSrSX +05/04/2018,Sports_celeb,@titoortiz,"#TBT So the story can still be finished. #TitovsChuck3 @ Huntington Beach,… https://t.co/rprIKE8Cqp" +05/03/2018,Sports_celeb,@titoortiz,The fight that didn’t happen #TitovsChuck3 just might happen!… https://t.co/0QsTAhKEPV +05/03/2018,Sports_celeb,@titoortiz,#TBT My first fight and it was for free in the @UFC I fought twice that… https://t.co/I9VldcHVdg +05/03/2018,Sports_celeb,@titoortiz,#hardworkpaysoff +05/02/2018,Sports_celeb,@titoortiz,.@TheRock Happy Birthday I hope you have a great one. Thank for being a great… https://t.co/Xm1aL8IJGm +05/02/2018,Sports_celeb,@titoortiz,"RT @Punishment99: A @Punishment99 addiction from OAKVILLE, Ontario 🇨🇦 https://t.co/bW5yDrdKHo" +05/01/2018,Sports_celeb,@titoortiz,@billykorhummel Yes it was. +05/01/2018,Sports_celeb,@titoortiz,Middle of my Monday session with parilloboxing take a break and then train… https://t.co/QlIeZde20W +04/30/2018,Sports_celeb,@titoortiz,Nice to have a partnership with @ManheimSoCal and @TOAutoGroup Our cars are bringing all the… https://t.co/hnNU6QTvN6 +04/30/2018,Sports_celeb,@titoortiz,"#Make17Monday +Shirts now Available on @Punishment99 We started #MAKE17 to Inspire, Spread Love… https://t.co/CLVC6eDY4O" +04/30/2018,Sports_celeb,@titoortiz,"We set them up you knock them down. @Primetime360esm @UFC +Believe me. On the 27th you wanna see… https://t.co/dXo52eA4xv" +04/29/2018,Sports_celeb,@titoortiz,My first fight and it was for free in the @UFC I fought twice that night. The only UFC fighter… https://t.co/I8xybFAemK +04/28/2018,Sports_celeb,@titoortiz,"#itstartsathome #Make17 @ Huntington Beach, California https://t.co/a1hlqnb5Ts" +04/27/2018,Sports_celeb,@titoortiz,"Join us tomorrow, Saturday 4/28 @ 10am to support The Youth Center! They do so much for our… https://t.co/2qsN1R5haj" +04/27/2018,Sports_celeb,@titoortiz,@RockwellTime #HallofFamer #TitoOrtiz watches soon to come! #MMA #timetotakeover #limitededition… https://t.co/DeVNAZfOS3 +04/27/2018,Sports_celeb,@titoortiz,RT @MikeTyson: Check out my interview with @TitoOrtiz where we talk about what would happen if Conor McGregor and Floyd Mayweather ever fou… +04/26/2018,Sports_celeb,@titoortiz,Thank you ufcgirlie helping us do something positive for our kids future. #itstartsathome… https://t.co/lO2JH5c3Pr +04/25/2018,Sports_celeb,@titoortiz,".miketyson with get_repost +・・・ +Link in bio. Talking to former UFC champion Tito Ortiz on the… https://t.co/ChmH6P159n" +04/24/2018,Sports_celeb,@titoortiz,"#Repost @tattoolovesla with get_repost +・・・ +So excited to be a part of bitethemic miketyson check… https://t.co/xfpCB1AV02" +04/22/2018,Sports_celeb,@titoortiz,@rywall615 For @MakeAWish +04/22/2018,Sports_celeb,@titoortiz,#Nashville is off the hook. +04/22/2018,Sports_celeb,@titoortiz,"This man is on a mission. @ufconfox +・・・ +Siyar Bahadurzada with the crippling body shot KO… https://t.co/4u8aNuwMJH" +04/22/2018,Sports_celeb,@titoortiz,@CraigWoolley12 @MakeAWish +04/22/2018,Sports_celeb,@titoortiz,"@PrimeTime360esm +Fighter @Siyarized congrats awesome KO!!! @UFC @alistairovereem #MMA @ Atlantic… https://t.co/xWuqtadQ6A" +04/21/2018,Sports_celeb,@titoortiz,RT @DonaldJTrumpJr: This is a really big deal for everyone! Well done @realDonaldTrump https://t.co/aVEmPF7hSu +06/14/2018,Sports_celeb,@SpiderAnderson,RT @justcause: #justcause4 #E32018 @SpiderAnderson is HERE https://t.co/KimFrBUgNm https://t.co/ZVJ4MXTh5f +06/08/2018,Sports_celeb,@SpiderAnderson,Mais um dia! Mais um treino obrigado! @coachfabiomelo https://t.co/ZMaBsoXTMN +06/04/2018,Sports_celeb,@SpiderAnderson,"Mais um dia. Quase acabando meu povo . +#rcview +#cinematogapher #filmmakerslife +#cinematography #filmmaking… https://t.co/GuSEWIrE0G" +05/22/2018,Sports_celeb,@SpiderAnderson,"Fala meu povo!!! +Ajude você também! Para o pessoal do Rio de Janeiro! Compareça, participe, faça seu cadastro nest… https://t.co/hBRLzU7MvY" +05/17/2018,Sports_celeb,@SpiderAnderson,"Check out the Ultimate Beastwear for kids + +Confira o Ultimate Beastwear para crianças https://t.co/6xJc2bQc07" +05/10/2018,Sports_celeb,@SpiderAnderson,Step into the Octagon as the 🕷️ 🇧🇷 Get up to 40% off for a limited time 👉 https://t.co/mFqcbo9euI https://t.co/JnoeUS4H34 +04/16/2018,Sports_celeb,@SpiderAnderson,O melhor dessa vida é o momento em que você olha para trás e conta da forma mais divertida todas as coisas que vivi… https://t.co/jRhr0S0zKV +04/06/2018,Sports_celeb,@SpiderAnderson,"Coming soon! 🐉 Em breve! +🎥 The Invincible Dragon https://t.co/foLYLGTdsY" +04/05/2018,Sports_celeb,@SpiderAnderson,Fala meu povo! Corre lá no perfil do Instagram da SpiderKick para participar do sorteio e faturar esse boné maneiro… https://t.co/IrNT4aaO59 +04/04/2018,Sports_celeb,@SpiderAnderson,Coming soon ! https://t.co/kUuAl04yt6 +03/23/2018,Sports_celeb,@SpiderAnderson,🎮 It's time for the 🕷 to #BeatTheBoss #EAUFC3 👊🏾 Buy now and save 35% 👉 https://t.co/mFqcboqPTi https://t.co/tDABzscw9C +03/01/2018,Sports_celeb,@SpiderAnderson,A Besta voltou e eu serei o host do Time Brasil. Não percam #UltimateBeastmaster Terceira temporada está chegando e… https://t.co/lU19znbZSz +02/28/2018,Sports_celeb,@SpiderAnderson,My people! Good news! I would like to thank the watch brand Ritmo Mundo (@ritmo_mundo) for the invitation to be amb… https://t.co/oQqWk5jAmb +02/26/2018,Sports_celeb,@SpiderAnderson,"Hey guys! On March 9 and 10 I'll be at @KillerBees_Fl (Melbourne, Florida, USA) for a technical seminar. (321) 541-… https://t.co/F5vEmcCARd" +02/23/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/eIA7FiduPA +02/19/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/PfAFfAGDzg +02/14/2018,Sports_celeb,@SpiderAnderson,"My friends (Dave Broome @davebroome88 e Shakim Compere), thank you for the time with you. Putting into practice all… https://t.co/Up3MOEMKWx" +02/02/2018,Sports_celeb,@SpiderAnderson,"Time to play some Knockout Mode 👊 💥 ! +@EASPORTSUFC 3 is out now! 👉 https://t.co/EFwopwULvT https://t.co/QrBNG29BP8" +02/01/2018,Sports_celeb,@SpiderAnderson,My teacher and I 🤓! #YourYear #BerlizUS #SpeakwithConfidence https://t.co/YenTpLuBmM +01/30/2018,Sports_celeb,@SpiderAnderson,"O filme é incrível! A mensagem que este incrível filme da @marvelstudios passa, é fantástica! The movie is incredib… https://t.co/niVQl8KGrX" +01/23/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/MxVxWC5x5X +01/22/2018,Sports_celeb,@SpiderAnderson,"Todos sabem do meu sonho, com todo respeito ao grande @RealRoyJonesJr , espero que possamos fazer este espetáculo.… https://t.co/opjeB23uFI" +01/21/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/YhcV9RRQhD +01/16/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/iiuu4H0oNk +01/14/2018,Sports_celeb,@SpiderAnderson,Quem já ouviu a nova música do @officialkalyl ? https://t.co/lZ8H2GgXKl +01/12/2018,Sports_celeb,@SpiderAnderson,"Galera, estamos trabalhando para trazer novidades pra vocês com a minha marca, a Spider Kick! +. +Hey guys, we are wo… https://t.co/NASZYjyKuW" +01/10/2018,Sports_celeb,@SpiderAnderson,The new song of Kalyl Silva - Nova música do Kalyl Silva - https://t.co/4YSd6mFNwG +01/02/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/Q8oWjrejCE +12/28/2017,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕸🕷 https://t.co/QxOUyth0C4 +12/27/2017,Sports_celeb,@SpiderAnderson,🕸🕷🙏🏾👊🏾 https://t.co/M5pZR6E1Fv +12/26/2017,Sports_celeb,@SpiderAnderson,🕷👊🏾🙏🏾🕸 https://t.co/oWECsQubxL +12/20/2017,Sports_celeb,@SpiderAnderson,🕸👊🏾🕷🙏🏾 https://t.co/HXcdG7ZWVA +12/19/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/ipMLGNq638 +12/19/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/qqds6WeOj5 +12/17/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/zZlXw3L5yj +12/15/2017,Sports_celeb,@SpiderAnderson,🕷👊🏾👊🏾🙏🏾🙏🏾🕸🕸 https://t.co/X1GSRyVKxw +12/13/2017,Sports_celeb,@SpiderAnderson,"LEVANTE-SE e enfrente o desafio 15 de dezembro, todos os novos episódios de #ultimatebeastmaster no #netflix Ganhe… https://t.co/I391RlD1vf" +12/13/2017,Sports_celeb,@SpiderAnderson,"RISE UP and face the challenge on Dec 15, binge all-new episodes of #ultimatebeastmaster on #netflix Take 10% off a… https://t.co/86Vselv1Py" +12/13/2017,Sports_celeb,@SpiderAnderson,🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/Pt6vCrUh0r +12/11/2017,Sports_celeb,@SpiderAnderson,https://t.co/FoAJIOXPfq +12/11/2017,Sports_celeb,@SpiderAnderson,👊🏾🕷🙏🏾 https://t.co/7rAFNgvoOm +12/08/2017,Sports_celeb,@SpiderAnderson,#lastnight #gqmenoftheyearawards @GQMagazine @GQBrasil https://t.co/B1QF4dDMbn +12/01/2017,Sports_celeb,@SpiderAnderson,#spiderkick #nevergiveup https://t.co/eSEbONm46a +11/30/2017,Sports_celeb,@SpiderAnderson,#nevergiveup #spiderkick #boxing #knockout #sport #motivation #ufc #workout #training #mma #champion #jiujitsu… https://t.co/46qhlhtPba +11/24/2017,Sports_celeb,@SpiderAnderson,#nevergiveup #spiderkick https://t.co/7K12qB6AvP +11/24/2017,Sports_celeb,@SpiderAnderson,My partners @rootsoffight are having their legendary #BlackFriday sale and it’s on NOW! Take some inspiration from… https://t.co/Zz4bfL50B0 +11/16/2017,Sports_celeb,@SpiderAnderson,🙏🏾👊🏾🕷 https://t.co/a0iTUEdloa +11/16/2017,Sports_celeb,@SpiderAnderson,🙏🏾👊🏾🕷 https://t.co/4oaO2Pt2IB +11/15/2017,Sports_celeb,@SpiderAnderson,Thanks for all your support! A big kiss for everyone and see you soon. https://t.co/nvoZTJkwct +11/15/2017,Sports_celeb,@SpiderAnderson,Obrigado por todo o apoio! Um grande beijo pra todos e nos vemos em breve. https://t.co/jWMQSsUuLu +11/10/2017,Sports_celeb,@SpiderAnderson,"UFC Xangai - 25 de novembro! . UFC Shangai - november 25 ! + 🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/OCTN9ABR1I" +11/08/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾👊🏾👊🏾🕷🕷🕷 #SpiderKick https://t.co/vGUYp2zfSM +11/07/2017,Sports_celeb,@SpiderAnderson,"My friend @terrycrews , Thank you very much for everything! I am happy to be able to learn more and more. https://t.co/iZE5ji8XZv" +11/05/2017,Sports_celeb,@SpiderAnderson,"RT @ufc: The greatest fighter of his generation, @SpiderAnderson returns Nov. 25 exclusively on @UFCFIGHTPASS + +https://t.co/UDtt4ysli2 http…" +11/04/2017,Sports_celeb,@SpiderAnderson,"Cadastre-se e concorra a uma viagem pra China! Venha assistir minha luta, acesse https://t.co/YAMUIR1ypW https://t.co/tJnvcG3XWL" +11/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/lsKF8fpbJ3 +10/31/2017,Sports_celeb,@SpiderAnderson,ANDERSON SILVA - STRONG LIFE - EP06 - RESPEITO / RESPECT https://t.co/7XfVkEC3iI +10/25/2017,Sports_celeb,@SpiderAnderson,#UFC90 - Patric Côté . Chicago - 9 years ago / 9 anos atrás. https://t.co/naqwwmzPxV +10/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/m5AVOL4Myx +10/24/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/rtxjSw4LAt +10/23/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/PTDtflspjH +10/22/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/saJJIZcICD +10/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/myhrsRiwNU +10/20/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gLwyFskBwQ +10/19/2017,Sports_celeb,@SpiderAnderson,No dia 28 de outubro acontece em São Paulo no Ginásio do Ibirapura o UFC Fight Nigh São Paulo. Mais informações em… https://t.co/XVGc69oDes +10/19/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Mmzx6xzLlw +10/17/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/jA9oo2WcFa +10/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/P6aeBR0jx9 +10/16/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Neste final de semana fez 11 anos que @SpiderAnderson conquistou o cinturão peso médio, no UFC 64. Nosso total respeito a e…" +10/15/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/BMqYPNMnRe +10/14/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/UZTgmvHYWC +10/07/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/ur6Qbbj8w4 +10/06/2017,Sports_celeb,@SpiderAnderson,ANDERSON SILVA - STRONG LIFE - #EP05 - COMPROMETIMENTO / COMMITMENT - #stronglife #spidersilva #andersonsilva… https://t.co/ZNKnT07aF1 +10/04/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/WzsmRVKq4D +10/03/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/rXza2YQwy4 +10/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/6RejseUEG0 +09/29/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/aTDobUxGGq +09/29/2017,Sports_celeb,@SpiderAnderson,"Como não ser feliz com uma sobrinha fofa e linda como esta? Pietra linda, te amo ❤️ https://t.co/cUpGdxicHX" +09/28/2017,Sports_celeb,@SpiderAnderson,STRONG LIFE - EP04 - O QUE MOVE VOCÊ? / WHAT MOVES YOU? #StrongLIfe #VidaForte https://t.co/OJzQY34Fik +09/28/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gw0RjtRlfD +09/27/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/VdfQufU9O7 +09/26/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/smjVPbp8Fk +09/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Zmq5wMW2mf +09/22/2017,Sports_celeb,@SpiderAnderson,STRONG LIFE - EP03 - SANGUE E SUOR / BLOOD AND SWEAT - #stronglife #fight #andersonsilva #spidersilva #inspire… https://t.co/DBzonZ0fJn +09/22/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/LI0Ojn3YiM +09/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Q758QrEWZc +09/21/2017,Sports_celeb,@SpiderAnderson,@kobebryant @RealJayWilliams ! 👊🏾👊🏾🙏🏾🙏🏾 https://t.co/gt0ATXqvwZ +09/16/2017,Sports_celeb,@SpiderAnderson,"Um grande comunicador, um homem admirável, amigo e companheiro. Obrigado por tudo. Vá com DEUS, professor. https://t.co/jYTLupC9dp" +09/15/2017,Sports_celeb,@SpiderAnderson,Strong Life - #EP02 - MELHOR QUE ONTEM / BETTER THAN YESTERDAY https://t.co/tcZi8Day63 +09/13/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/cqiPK1BGDI +09/12/2017,Sports_celeb,@SpiderAnderson,"Guys, I'm not the only Spider-Man fan! My teacher here at @Berlitz_US is too! #BerlitzUS #Andersonbelieves… https://t.co/uJTADUNKZv" +09/12/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/K7ifsGD7WC +09/11/2017,Sports_celeb,@SpiderAnderson,"Canal Oficial do ""Spider"" Anderson Silva. Official channel of ""The Spider"" Anderson Silva: https://t.co/4UHFxf3h6e via @YouTube" +09/11/2017,Sports_celeb,@SpiderAnderson,Strong Life - #EP01 - VONTADE DE VENCER / WILL TO WIN #stronglife #spidersilva #andersonsilva #fight #inspiration… https://t.co/Lc2kbDoTuE +09/07/2017,Sports_celeb,@SpiderAnderson,RESPECT. The New: Kalyl Silva (@officialkalyl )- https://t.co/aIgyDSFKsE https://t.co/LoLrRhkUBh +09/07/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/3LEKXQFK9o +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/eNuCgPrTde +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/XzuTiqIkFX +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/u0RGn4xi51 +09/04/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/bzZPsfJF2j +08/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/R9oF3S3nCa +08/23/2017,Sports_celeb,@SpiderAnderson,"Galera,o importante é estar feliz com você mesmo no seu dia a dia.Guys, what matters is that you are happy with you… https://t.co/RPzAkJJIEi" +08/21/2017,Sports_celeb,@SpiderAnderson,Disciplina é aprender a ter capacidade de observar e absorver. / Discipline is learning to be able to observe and a… https://t.co/j3JJD4xE9D +08/20/2017,Sports_celeb,@SpiderAnderson,"This week I had the honor of meeting Jacob Meir, an Israeli artist with a Brazilian heart! Thanks for the affection… https://t.co/O5fr9yrkVZ" +08/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/HecM8WhFNg +08/15/2017,Sports_celeb,@SpiderAnderson,"In this new journey, I am dedicating myself to study english with @BerlitzUS #BerlitzUS #Andersonbelieves… https://t.co/rAdhmxn4cU" +08/14/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/cqcYRvAuj2 +08/13/2017,Sports_celeb,@SpiderAnderson,Ser pai é abrir mão da perfeição e ser capaz de aprender com os filhos e com Deus a ser pai e ser um bom filho. Fel… https://t.co/WJnQZdLZkR +08/12/2017,Sports_celeb,@SpiderAnderson,Anderson Silva X José Barreto - Mecca: World Vale Tudo 2 - Curitiba - Brasil - 08.2000 #mecca #valetudo… https://t.co/L4fVVpJFit +08/10/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gCrRU0bTFQ +08/09/2017,Sports_celeb,@SpiderAnderson,@canalCombate Parabéns pelos 15 anos! Desejo a todos muitas felicidades. https://t.co/iMlpyvl1Lr +08/08/2017,Sports_celeb,@SpiderAnderson,"UFC 101: Silva vs Griffin - 8 de agosto de 2009 / August 8, 2009 - This fight won the ""Beatdown of the Year"" award… https://t.co/iJ4MBSKVDZ" +08/08/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/ETNDPgw0yZ +08/06/2017,Sports_celeb,@SpiderAnderson,"Ginásio Antonio Balbino, Salvador, Bahia, Brazil, 5.AGO.2005 + / Minotauro Fights II - Anderson Silva vs Julio Cesar… https://t.co/H8NOper9Sm" +08/05/2017,Sports_celeb,@SpiderAnderson,Guys! I'm here at the Los Angeles Memorial Coliseum to support Children's Hospital Los Angeles. #PlayLa https://t.co/GdLKJ3rGRs +08/04/2017,Sports_celeb,@SpiderAnderson,"Join me and @ChildrensLA on Aug 5 for the first ever #PlayLA! Family festival, w/ special musical guests. Details:… https://t.co/E8vLVYq8OG" +08/02/2017,Sports_celeb,@SpiderAnderson,Go to my instagram and follow my live training / Treino ao vivo no meu instagram https://t.co/iew5GT08Mk https://t.co/0bcObBu5RM +08/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/JZ54hDgqbc +07/31/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/PR59HCykYn +07/29/2017,Sports_celeb,@SpiderAnderson,Happy Birthday @terrycrews . May God always enlighten your walk.Thanks for everything. I wish you health and wisdom… https://t.co/riyzUz5Iho +07/29/2017,Sports_celeb,@SpiderAnderson,Go to my instagram and follow my live training / Treino ao vivo no meu instagram https://t.co/DyVmnUWzL9 +07/28/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/GM1UfruLVI +07/28/2017,Sports_celeb,@SpiderAnderson,I am doing a live training at my instagram! Treino ao vivo no meu instagram! https://t.co/DyVmnUWzL9 +07/27/2017,Sports_celeb,@SpiderAnderson,"👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 +🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 https://t.co/tMU5jTljkH" +07/25/2017,Sports_celeb,@SpiderAnderson,Galera! 1 de Outubro vi rolar o Prime Esportes - Jiu Jitsu Experience. Incrições pelo site https://t.co/yLtmLktIFu https://t.co/pAhpwdX4UM +07/25/2017,Sports_celeb,@SpiderAnderson,@prolastboxing @profightshop #fightshop #prolast #promma #mmafightshop #procombat #profightshop #hollywoodfightshop… https://t.co/deg7ry5Siv +07/22/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/0oEjxUE8NF +07/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🙏🏾🙏🏾🙏🏾🕸🕸🕸 https://t.co/zb7lAZ1lFR +07/20/2017,Sports_celeb,@SpiderAnderson,This week the Heard Podcast release my interview with Benjamin Mathes.It was a nice conversation!I hope you like it… https://t.co/Hsmo06vrIq +07/18/2017,Sports_celeb,@SpiderAnderson,"Fun festival, musical guests & sports session + more! Join @childrensla on Aug 5 for #PlayLA! More:… https://t.co/wzwi6xdlMZ" +07/18/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🙏🏾🙏🏾🙏🏾🕸🕸🕸 https://t.co/iXDDKpiJml +07/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾🕸🕸🕸🕷🕷🕷 https://t.co/iNLfzse4l4 +07/12/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾🕸🕸🕸🕷🕷 https://t.co/yDWe4MXkxJ +07/03/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/CmNaC6rufw +06/30/2017,Sports_celeb,@SpiderAnderson,"#Jiujitsu #BJJ Bom fim de semana galera! Have a great weekend, everybody! https://t.co/Z8KYZF5jml" +06/30/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/RWV9QHAlm5 +06/28/2017,Sports_celeb,@SpiderAnderson,11 anos atrás eu estava fazendo o que mais amo na vida. 11 years ago I was doing what I love most in life.… https://t.co/E2Lxl8ctEf +06/28/2017,Sports_celeb,@SpiderAnderson,One more day of work! Mission accomplished! Thanks to my guardian angel @lizburnette🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾 https://t.co/DEfQCvqfDN +06/28/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/rfnBxVueYI +06/28/2017,Sports_celeb,@SpiderAnderson,#StrongLife #VidaForte https://t.co/gJPfdZTorG +06/17/2017,Sports_celeb,@SpiderAnderson,Celebrate with me and my @RootsofFight family during their #FathersDay sale! Visit https://t.co/LmmEFGhl2T https://t.co/QrbJoPrCBO +06/13/2017,Sports_celeb,@SpiderAnderson,In California with my friends and brothers! Using my new @rootsoffight t-shirt! Who wants one just visit the site… https://t.co/8SrWoTNIvP +06/09/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 @FairtexMuayThai https://t.co/qNkd77Rlm5 +06/08/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 #jiujitsu #delariva https://t.co/OPamFbnMCb +06/07/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 https://t.co/cPazD7jJ96 +06/06/2017,Sports_celeb,@SpiderAnderson,L https://t.co/fIGHJjnpT5 +06/05/2017,Sports_celeb,@SpiderAnderson,I’m excited to announce my new collaboration with @RootsofFight & honored to join the ROF pantheon. Available now… https://t.co/bugP7LcdWD +05/30/2017,Sports_celeb,@SpiderAnderson,Thanks @espn And all my fans/Obrigado @ESPNBrasil_ e todos os meus fãs. #worldfame100 https://t.co/006Oh9txmo +05/29/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/DdWVdFodtW +05/25/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/faf5fVWfUx +05/23/2017,Sports_celeb,@SpiderAnderson,🕷🕷🕷🕷👊🏾👊🏾👊🏾👊🏾👊🏾👀👀👀👀 https://t.co/g43i8BiAeS +05/23/2017,Sports_celeb,@SpiderAnderson,RT @esportefera: >@SpiderAnderson mostra talento ao bater faltas em desafio promovido por Zico. Será que tem vaga no seu time? https://t.co… +05/23/2017,Sports_celeb,@SpiderAnderson,🕷🕷🕷👊🏾👊🏾👊🏾👊🏾 https://t.co/7j2dEdGSSS +05/23/2017,Sports_celeb,@SpiderAnderson,"Galera! No próximo dia 27 de maio, farei um seminário de técnica na Tropa Thai -Rio de Janeiro, para informações li… https://t.co/PUVFlLGnmM" +05/01/2017,Sports_celeb,@SpiderAnderson,I will be live in 10 minutes at The MMA Hour Live https://t.co/pXXOHOVrk3 +04/21/2017,Sports_celeb,@SpiderAnderson,https://t.co/CmSKQMNY9u https://t.co/gPYm3Beiqv +04/19/2017,Sports_celeb,@SpiderAnderson,Aproveitando o meu #MomentoPronoKal no fim do treino. Valeu @PronokalBR ! 💪🏾👊🏾 https://t.co/KQvNB2mMAW +04/15/2017,Sports_celeb,@SpiderAnderson,Obrigado Esporte Interativo pela homenagem! https://t.co/51LEKn6wmH +04/15/2017,Sports_celeb,@SpiderAnderson,#UFC212 #UFCRio https://t.co/SvdSf2LDWI +04/14/2017,Sports_celeb,@SpiderAnderson,RT @canalCombate: De volta às origens: @SpiderAnderson reforça preparação com seu primeiro treinador | https://t.co/vV6wx7tnE1 https://t.co… +04/11/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Podemos chamar isso de encarada, @SpiderAnderson!? 😂😂 Ele estará no #UFC212, ainda sem adversário confirmado > https://t.co…" +04/11/2017,Sports_celeb,@SpiderAnderson,#Nocharity #Onlymeritocracy #GOAT 🐐 https://t.co/vfRkZ03tKU +04/06/2017,Sports_celeb,@SpiderAnderson,"Comunicado do UFC sobre Kelvin Gastelum. - https://t.co/fXjcTE1xjk + | UFC Statement on Kelvin Gastelum. - https://t.co/WWSnsKVU7M" +03/28/2017,Sports_celeb,@SpiderAnderson,Treino / Training @Silva_MTC https://t.co/SfsODJGQbi +03/23/2017,Sports_celeb,@SpiderAnderson,E M B R E V E . C O M I N G S O O N https://t.co/GkFv6RJU9e +03/22/2017,Sports_celeb,@SpiderAnderson,"Voltando pra casa! I'm coming home. #UFCRio #UFC212, no Rio de Janeiro! 3 de Junho galera! #UFC212 at Rio de Janeir… https://t.co/RIoTsnsHek" +03/21/2017,Sports_celeb,@SpiderAnderson,KildareHasHad an accidentAndNeedsSurgery to recover. Ele sofreu um acidente e precisa de cirurgia para se recuperar… https://t.co/EflIvgwZON +03/20/2017,Sports_celeb,@SpiderAnderson,@NeilMagny Let's do it! +03/18/2017,Sports_celeb,@SpiderAnderson,Ready for a game of paintball at @hollywoodsports with @Beardegidio https://t.co/WDLlXbeWJD +03/17/2017,Sports_celeb,@SpiderAnderson,Maior reinado em defesas de cinturão na história do UFC : 2457 dias / Longest Single Title Reigns in UFC History: 2… https://t.co/N88UAYJPIX +03/16/2017,Sports_celeb,@SpiderAnderson,"Pride 25 - 03.2003 - 14 anos atrás/years ago - Yokohama, Japão #SpiderLegacy #ValeTudo #TBT #MMA #ThrowbackThursday… https://t.co/NEyFfS7iUU" +03/15/2017,Sports_celeb,@SpiderAnderson,Contrato para o #UFC212 assinado. Rio de Janeiro! 3 de Junho galera! Contract for #UFC212 signed. Rio de Janeiro! J… https://t.co/pdhGjrWh9z +03/15/2017,Sports_celeb,@SpiderAnderson,Silva VS Gastelum! 3 de junho no Rio de Janeiro! June 3 at Rio de Janeiro https://t.co/Fmv3qNHIjD +03/09/2017,Sports_celeb,@SpiderAnderson,Set of #UltimateBeastMaster! Good times! Get ready to join the gang. All episodes are now available on #Netflix… https://t.co/cDSlrP16Mc +03/06/2017,Sports_celeb,@SpiderAnderson,Meeting at the ICMPartners with the GreatChampion @RealRoyJonesJr-The legend! Encontro na ICMPartners com o GrandeC… https://t.co/m9r36kZaFe +03/06/2017,Sports_celeb,@SpiderAnderson,RT @RealRoyJonesJr: There is a legendary photo. My man. The one and only. https://t.co/uDpN4m0hrS +03/02/2017,Sports_celeb,@SpiderAnderson,"16 years ago on March 2, 2001, I made my first international fight/16 anos atrás, 2 de março de 2001, fiz minha pri… https://t.co/FH9SEqTbUs" +03/02/2017,Sports_celeb,@SpiderAnderson,"9 years ago, on March 1, 2008, at UFC 82. I unified the middleweight belt against Dan Henderson, the Pride champion… https://t.co/NgMSzywUzB" +03/01/2017,Sports_celeb,@SpiderAnderson,This is the #UltimateBeastMaster Brazilian team! Watch #Netflix and see the Brazilians performance trying to domina… https://t.co/HA9l43vwIk +03/01/2017,Sports_celeb,@SpiderAnderson,Esse é o time brasileiro do #UltimateBeastMaster ! Assista no #Netflix e veja como os brasileiros se saíram tentand… https://t.co/V80rPHArtT +02/28/2017,Sports_celeb,@SpiderAnderson,RT @broome88: Maybe it's me but I feel I could win this fight. @terrycrews @SpiderAnderson #ultimatebeastmaster #Netflix https://t.co/e0xr2… +02/25/2017,Sports_celeb,@SpiderAnderson,Thanks @the_USO @NetflixBrasil @broome88 @TheSlyStallone.Very happy to be part of this project. Thanks @terrycrews… https://t.co/PZUCdjRLlM +02/25/2017,Sports_celeb,@SpiderAnderson,Obrigado @the_USO @NetflixBrasil @broome88 @TheSlyStallone.Muito feliz por fazer parte desse projeto. Obrigado… https://t.co/y43apLJKZQ +02/24/2017,Sports_celeb,@SpiderAnderson,@MoneyLynch 🕷> Beast Mode +02/24/2017,Sports_celeb,@SpiderAnderson,"RT @NetflixBrasil: Os atletas escalam, pulam, flexionam e se equilibram. E você maratona. Ultimate Beastmaster Brasil chegou! https://t.co/…" +02/24/2017,Sports_celeb,@SpiderAnderson,"Very happy to be part of the #UltimateBeastmaster with this great human being. Thank you, my friend! @terrycrews https://t.co/67bznlhnAr" +02/23/2017,Sports_celeb,@SpiderAnderson,"I am training now at my instagram! Estou treinando ao vivo, agora no meu instagram! https://t.co/afjqTexTTd" +02/23/2017,Sports_celeb,@SpiderAnderson,Tudo o que um sonho precisa para ser realizado é alguém que acredite nele. #JonesJrVSSilva #SilvaVSJonesJr @RealRoyJonesJr +02/23/2017,Sports_celeb,@SpiderAnderson,All a dream needs to be accomplished is someone who believes that it can be done. #JonesJrVSSilva #SilvaVSJonesJr @RealRoyJonesJr +02/23/2017,Sports_celeb,@SpiderAnderson,Going to support my friend @Beardegidio at @hollywoodsports for one of the best paintball events @GiantTactical thi… https://t.co/PJV9Ghyk4R +02/21/2017,Sports_celeb,@SpiderAnderson,Great day @hollywoodsports with my friends today! Can't wait to be back again next week! Thank you @Beardegidio… https://t.co/91pu3u1Y5Y +02/20/2017,Sports_celeb,@SpiderAnderson,Paintball with my friend @Beardegidio & the guys at @hollywoodsports today! https://t.co/oQXK0SD7E9 +02/17/2017,Sports_celeb,@SpiderAnderson,"I felt like a king when shooting the #ThatFeelingWhen campaign for #ThroneKingdomAtWar. I also look like one, don’t… https://t.co/u68OtArMO2" +02/14/2017,Sports_celeb,@SpiderAnderson,"RT @NetflixBrasil: Quem vai dominar a Besta? A partir de 24 de fevereiro, tem sangue, suor e tombos no Ultimate Beastmaster Brasil. https:/…" +02/13/2017,Sports_celeb,@SpiderAnderson,RT @ufc_brasil: . @SpiderAnderson agradece fãs em post nas redes sociais. Confira > https://t.co/XTqHDe3WwX https://t.co/B3qEXdgn4o +02/12/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Ainda emocionado, @spideranderson​ falou sobre a vitória no #UFC208, família e legado. Veja a entrevista completa > https:/…" +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc_brasil: Olha a recepção do @SpiderAnderson na chegada ao hotel depois da luta. Rolou até uma conversa com a @criscyborg > https://t… +02/12/2017,Sports_celeb,@SpiderAnderson,RT @AnaHissa: 🕸🕷 Generations 🕸🕷 #badboys @spiderandersonsilva @kalylsilva @gabrielrmnl #ufc #mma #ufcnocombate #spidernocombate #trcombate… +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc: SPIDER!!!! #UFC208 https://t.co/w94rGz9HTy +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc: Dreams Come True #UFC208 https://t.co/qHdFVLi4m8 +06/30/2018,Sports_celeb,@TyrodTaylor,@power_starz Season 5 Premiere last night was definitely a Vibe! Thank you @givenchyofficial for the fit.… https://t.co/MsPYGgGGkH +06/29/2018,Sports_celeb,@TyrodTaylor,"Haha, it was great meeting you. https://t.co/iSnl0XZw11" +06/29/2018,Sports_celeb,@TyrodTaylor,I’m T’d up... 📷: @JaySpinks12 https://t.co/Pm33LR4Mus +06/28/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: Don’t let ANYTHING distract you from God’s vision. +06/24/2018,Sports_celeb,@TyrodTaylor,📍Made the Paris streets my runway #PFW https://t.co/ntxiHmMXsz +06/24/2018,Sports_celeb,@TyrodTaylor,"Thank you @ThomBrowneNY for having me at your show today. Truly inspired by your work! #PFW + +cc: @TeamVic https://t.co/BZqarcdNrF" +06/23/2018,Sports_celeb,@TyrodTaylor,My people! https://t.co/RF28s0cixA +06/23/2018,Sports_celeb,@TyrodTaylor,"‘Life is amazing, it is what it should be’. #PFW https://t.co/bF96CGlEJp" +06/22/2018,Sports_celeb,@TyrodTaylor,Just a kid from 757. Big Dreaming! #PFW https://t.co/R58dptp5J0 +06/22/2018,Sports_celeb,@TyrodTaylor,In. Living. Color https://t.co/Hv3hh9xIbI +06/21/2018,Sports_celeb,@TyrodTaylor,RT @adriancmills: All the Stars came out for Paris Fashion Week SS19 wearing Valentino in Paris @Nas @carmeloanthony @TyrodTaylor #pjtucker… +06/21/2018,Sports_celeb,@TyrodTaylor,I like the view from here... 🇫🇷 #PFW SS19 @cmmn_swdn show https://t.co/uQhLdX6Om3 +06/15/2018,Sports_celeb,@TyrodTaylor,RT @elguapo: God makes no mistakes +06/15/2018,Sports_celeb,@TyrodTaylor,OTA’s ✔️ #Keep5triving https://t.co/psj9sJ93IM +06/14/2018,Sports_celeb,@TyrodTaylor,📶 https://t.co/iQGSQGDIZB +06/14/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: ""Very talented team on both sides of the ball."" + +@TyrodTaylor talks about his transition to the @Browns and competition at…" +06/12/2018,Sports_celeb,@TyrodTaylor,Gotta put them on notice brother ✊🏾 https://t.co/74pM8tljeH +06/12/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🔥🔥🔥 + +@TyrodTaylor https://t.co/dU8PfMSVF3" +06/12/2018,Sports_celeb,@TyrodTaylor,5... https://t.co/cH0rURklHX +06/12/2018,Sports_celeb,@TyrodTaylor,Real strong! 📶 https://t.co/ukcGJkBVey +06/08/2018,Sports_celeb,@TyrodTaylor,Go Cavs! https://t.co/m2MBYAUOTR +06/08/2018,Sports_celeb,@TyrodTaylor,"RT @uninterrupted: Shout to @Kirko58 for stylin' on 'em with his crew @j_collins91, @God_Son80, @TyrodTaylor & @DukeJohnson_8 at his Fashio…" +06/08/2018,Sports_celeb,@TyrodTaylor,📸 19 x Eight-O https://t.co/j4AcfdBh3f +06/08/2018,Sports_celeb,@TyrodTaylor,No place like Blacksburg. #ThisisHome https://t.co/WtQGDVTDTF +06/08/2018,Sports_celeb,@TyrodTaylor,Happy Birthday brother @alleniverson. I appreciate the love and guidance since day 1. Thanks for showing every kid… https://t.co/kSciOBrQsJ +06/08/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/JXjbi2QBAS +06/07/2018,Sports_celeb,@TyrodTaylor,RT @Browns: 🔥🔥 @TyrodTaylor https://t.co/4V2Xvz8rD6 +06/07/2018,Sports_celeb,@TyrodTaylor,#Mood 😃 https://t.co/VTAPLvt4IT +06/07/2018,Sports_celeb,@TyrodTaylor,Welcome to the Family brother! @VT_Football https://t.co/Oloz6PTUyK +06/07/2018,Sports_celeb,@TyrodTaylor,My dawg!!! https://t.co/BkE6jawvf5 +06/07/2018,Sports_celeb,@TyrodTaylor,Absolutely! One of my favorite scriptures 🙏🏾 https://t.co/A6cjwsjw5d +06/07/2018,Sports_celeb,@TyrodTaylor,#NBAFinals Game 3. https://t.co/kBESMgVhST +06/07/2018,Sports_celeb,@TyrodTaylor,"RT @NBA: Ready for the 4th quarter in Cleveland... + +@CutonDime25 x @TyrodTaylor. https://t.co/YQPKClOO4C" +06/05/2018,Sports_celeb,@TyrodTaylor,"VA!!!!! July 21st.. + +I’m excited to launch the Tyrod Taylor Foundation this summer with a FREE and fun event for t… https://t.co/SthzmKTn4k" +06/04/2018,Sports_celeb,@TyrodTaylor,WiFi connection strong! https://t.co/gkYmHgJeQ0 +06/04/2018,Sports_celeb,@TyrodTaylor,RT @BrownsGiveBack: All of our partners are here volunteering by building rocking chairs to help encourage reading in early childhood class… +06/04/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🎯 + +@TyrodTaylor https://t.co/UDSRuEjjtX" +06/01/2018,Sports_celeb,@TyrodTaylor,Let’s go @cavs #NBAFinals https://t.co/vG6BORzTQT +05/31/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: 😬😬😬😬 lol https://t.co/IXxIcww816 +05/30/2018,Sports_celeb,@TyrodTaylor,"Praying for you guys! Be encouraged, keep fighting! 🙏🏾 https://t.co/Bz73hLJuQy" +05/29/2018,Sports_celeb,@TyrodTaylor,"Let’s tackle sickle cell TOGETHER guys! cc: @LanoTheDon + +https://t.co/YxHMYs3xac + +T2 @Browns Jersey GIVEAWAY!!! +H… https://t.co/N0gCj5cM1x" +05/29/2018,Sports_celeb,@TyrodTaylor,Yo juice! WiFi Connection Eight-0 https://t.co/jgCZWJfOFu +05/29/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: #️⃣5️⃣ + +@TyrodTaylor https://t.co/rALDlpP73M" +05/29/2018,Sports_celeb,@TyrodTaylor,RT @Browns: Putting in work 🤫 https://t.co/futJtpvhUZ +05/29/2018,Sports_celeb,@TyrodTaylor,🙋🏾‍♂️ need mine!! This is for Cleveland!! https://t.co/ROkiCs66FX +05/28/2018,Sports_celeb,@TyrodTaylor,Let’s go Cavs!!!!!!!! +05/23/2018,Sports_celeb,@TyrodTaylor,Be the blessing.. #Keep5triving https://t.co/kRvMdc6G0x +05/23/2018,Sports_celeb,@TyrodTaylor,"My brother, Congrats! Well deserved. Always love. Now...See you week 2. 😡 https://t.co/ytttujvYq3" +05/21/2018,Sports_celeb,@TyrodTaylor,Running into Monday like... Let’s have a great week people! 😃 https://t.co/jbVg9XTIHT +05/21/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: Students of schools benefitted by the Browns Foundation are here to play games with some of our players! + +@TyrodTaylor #give10…" +05/21/2018,Sports_celeb,@TyrodTaylor,#MOOD https://t.co/9j4v0eXPyS +05/18/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: God Gon See You Through... +05/17/2018,Sports_celeb,@TyrodTaylor,I see you Torrey! #Clean ✔️ https://t.co/qFfxELXNdP +05/16/2018,Sports_celeb,@TyrodTaylor,Anytime it was great to meet her. https://t.co/1PJFUZhaMR +05/06/2018,Sports_celeb,@TyrodTaylor,@KingJames does it again!!!!!!!! +05/05/2018,Sports_celeb,@TyrodTaylor,"RT @TheOpening: Fastest Man in Ohio, crowned by @TyrodTaylor. + +@usnikefootball @NFLPlayFootball https://t.co/3ZdFwDK2j6" +05/04/2018,Sports_celeb,@TyrodTaylor,"Meet me at Dicks Sporting Goods in Canton, Ohio at 1:30pm on Saturday 5/5 to hang and customize your Vapor Untoucha… https://t.co/71oAtlvkiJ" +05/02/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: Fall down 7 times. Get up 8. +05/01/2018,Sports_celeb,@TyrodTaylor,Happy MAY Everyone!!! Let’s go be great. +04/27/2018,Sports_celeb,@TyrodTaylor,@bakermayfield @denzelward welcome to the FAMILY!! #DawgPound +04/27/2018,Sports_celeb,@TyrodTaylor,VT Boyz!! Congrats #Hokies https://t.co/tXszPoYrL1 +04/27/2018,Sports_celeb,@TyrodTaylor,🔥🔥🔥 https://t.co/SVgVMJ1SsI +04/25/2018,Sports_celeb,@TyrodTaylor,Haha dope!! https://t.co/wPohdniwxQ +04/25/2018,Sports_celeb,@TyrodTaylor,"Cleveland, We just getting started.. https://t.co/181pxx5jhM" +04/19/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: QB Tyrod Taylor already turning heads with leadership and work ethic + +📰 » https://t.co/dXQfFQEroZ https://t.co/rO9jT6pjLL" +04/17/2018,Sports_celeb,@TyrodTaylor,No better feeling. #T2Foundation https://t.co/djy4o5hsb5 +04/17/2018,Sports_celeb,@TyrodTaylor,4.16 #NeVerforgeT https://t.co/hZX1MAAbGt +04/16/2018,Sports_celeb,@TyrodTaylor,"A lot of hard work, prayer & patience. Those are characteristics you can’t measure. https://t.co/CfcYB4EUQt" +04/16/2018,Sports_celeb,@TyrodTaylor,Where can I get that shirt ? https://t.co/tNWtFPDMUX +04/16/2018,Sports_celeb,@TyrodTaylor,Forever LOVE... Thank you #HokieNation for a great spring weekend! https://t.co/dadInuNleq +04/15/2018,Sports_celeb,@TyrodTaylor,Heading to my first @cavs game. If you see me show some luv! Let’s go CLEVELAND!!!! #NBAPlayoffs +04/15/2018,Sports_celeb,@TyrodTaylor,My brother. #Hokies you’ve got a great one. @CoachReamon ✊🏾 https://t.co/V8XT41WiUE +04/15/2018,Sports_celeb,@TyrodTaylor,Thanks for having me guys! Truly my pleasure to be amongst you all for a great cause. https://t.co/ulTEcEMnk8 +04/15/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: “Work like everything depends on you. Pray like everything depends on God.” +04/15/2018,Sports_celeb,@TyrodTaylor,Yessir. Keep pushing forward brother. #Hokies https://t.co/erz7ZHZAhQ +04/15/2018,Sports_celeb,@TyrodTaylor,@nolimitquis Lol you know i got you brother +04/15/2018,Sports_celeb,@TyrodTaylor,"RT @espn: On This Date: 71 years ago, Jackie Robinson broke down the color barrier, becoming the first African-American to play in MLB. #Ja…" +04/15/2018,Sports_celeb,@TyrodTaylor,I had just as much fun as the kids. It was my pleasure. Nothing like giving back to the next generation. https://t.co/ukz8DN4QDE +04/15/2018,Sports_celeb,@TyrodTaylor,RT @raylewis: What comes easy doesn’t always last. What comes through difficulties & effort leaves a legacy. +04/15/2018,Sports_celeb,@TyrodTaylor,Yessir let the ink dry 80 https://t.co/RSI47hN6XZ +04/15/2018,Sports_celeb,@TyrodTaylor,🔥 I need to sign that. https://t.co/pieBQnDhfF +04/13/2018,Sports_celeb,@TyrodTaylor,What up Blacksburg?? I’m HOME!! #Hokies https://t.co/XPRKEo0DBq +04/10/2018,Sports_celeb,@TyrodTaylor,Vibez 🖖🏾 https://t.co/j73O6uSy8z +04/08/2018,Sports_celeb,@TyrodTaylor,"Put the work in, everything is possible & inspire the youth to do the same! +📸: @JaySpinks12 https://t.co/tl6l5KPHUe" +04/03/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Gotta maintain stay focused... +04/03/2018,Sports_celeb,@TyrodTaylor,RT @CoachReamon: Value opportunity.. +04/02/2018,Sports_celeb,@TyrodTaylor,Great work brother! https://t.co/JRShTJanaZ +04/02/2018,Sports_celeb,@TyrodTaylor,Love all the cool fan art you guys shared. Keep them coming and I’ll be sure to post and s/o all you great artist. #Cleveland #Browns +04/02/2018,Sports_celeb,@TyrodTaylor,@Teh_Genius please DM me so I can get your info and send you some signed cleats! Thanks for the great work! +04/02/2018,Sports_celeb,@TyrodTaylor,Thanks everyone for your submissions. Fan Banner Design contest Winner!!!! Artist: @Teh_Genius https://t.co/216YaBxftO +04/01/2018,Sports_celeb,@TyrodTaylor,He has RISEN!! Happy Resurrection Sunday! 🙏🏾 +04/01/2018,Sports_celeb,@TyrodTaylor,Thanks guys for all the profile banner submissions so far.. announcing the winner tomorrow at 1pm. T2 +03/29/2018,Sports_celeb,@TyrodTaylor,Who wants to design me a new profile banner? May have some signed cleats for the winner 👀 +03/28/2018,Sports_celeb,@TyrodTaylor,Gotta trust his plan! https://t.co/2guLR4j7o2 +03/25/2018,Sports_celeb,@TyrodTaylor,‘Overly focused it’s far from the time to rest now’ #DAWGS https://t.co/TV8ZZoZu66 +03/24/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Mentality @Browns @machinegunkelly #CleveLand https://t.co/h13nKeWFLv +03/23/2018,Sports_celeb,@TyrodTaylor,"Always great times for a great cause with my VA brother @TorreySmithWR. #TSFFHoops +🎥: @JaySpinks12 https://t.co/4LmQWX89dH" +03/23/2018,Sports_celeb,@TyrodTaylor,RT @Browns: A few of our new Browns have picked their numbers 👇 https://t.co/aEVtzDFQo8 +03/23/2018,Sports_celeb,@TyrodTaylor,Let’s show them ✊🏾 https://t.co/Lbi2nIzAIV +03/22/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: God can do it. +03/22/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/D9SLhTrWNb +03/22/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Now or Never.... +03/22/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: That Eight-O TurnUP AGAIN @Browns #DAWG https://t.co/9zJZxYMnxt +03/22/2018,Sports_celeb,@TyrodTaylor,.....T2 https://t.co/SbrkgZjcc7 +03/21/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: They Gon Realize https://t.co/duM0wzs8Dn +03/21/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: ""Is 5 available? I'm asking for a friend ... "" 😂 + +@TyrodTaylor @God_Son80 https://t.co/wHiI5Pj3Ys" +03/20/2018,Sports_celeb,@TyrodTaylor,"RT @God_Son80: “Nothing can hold you back..” +What you want is already yours. NOW, WORK!!!" +03/18/2018,Sports_celeb,@TyrodTaylor,"RT @TheUndefeated: ""Coach Hue is going to do his best to make me a better player, and I’m going to do my best to help us win."" - @TyrodTayl…" +03/18/2018,Sports_celeb,@TyrodTaylor,RT @DCSuperSid: My son with @TyrodTaylor QB of the @Browns tonight at the @TorreySmithWR charity game in Baltimore #DawgPound https://t.co/… +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @AKinkhabwala: A few hours in, @God_Son80 and @TyrodTaylor had a pretty good read on each other. #Browns https://t.co/DKEYCZcLXA" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: .@TyrodTaylor, @RandallTime and @God_Son80 in the building ✊ https://t.co/kK8izhPrJe" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @AKinkhabwala: .@Browns GM John Dorsey: “When guys walk into a building, you feel a certain energy... (these) guys are really excited to…" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🖋➡️📃 + +Welcome to Cleveland, Chris Smith! https://t.co/6uCl8mLwhY" +03/16/2018,Sports_celeb,@TyrodTaylor,C L E V E L A N D.... let’s get to it. https://t.co/mSGMeXqRMb +03/14/2018,Sports_celeb,@TyrodTaylor,Say hello to my little man Ghost! https://t.co/JjfCet1BXg +03/14/2018,Sports_celeb,@TyrodTaylor,Thanks guys! https://t.co/YLq0AYTIQx +03/12/2018,Sports_celeb,@TyrodTaylor,🙏🏾 Appreciate that. https://t.co/FurLE0ACMw +03/12/2018,Sports_celeb,@TyrodTaylor,Congrats fellas! Let’s leave our mark. #Hokies https://t.co/o06bwXYn9g +03/12/2018,Sports_celeb,@TyrodTaylor,Jesus calling. 🙏🏾 https://t.co/T33UwGTNOy +03/12/2018,Sports_celeb,@TyrodTaylor,"You! Yeah you, let’s be great this week. #HappyMonday https://t.co/FpWwzKsq1Z" +03/12/2018,Sports_celeb,@TyrodTaylor,"RT @lecrae: “Don’t even trip, I got it under control.” - God" +03/12/2018,Sports_celeb,@TyrodTaylor,🔥 https://t.co/5nft5wLi4j +03/12/2018,Sports_celeb,@TyrodTaylor,Thanks for the love UN family https://t.co/h7cyjJaWTa +03/12/2018,Sports_celeb,@TyrodTaylor,Truly my pleasure to work with you all and bless so many lives! https://t.co/pDQYMv1IrJ +03/10/2018,Sports_celeb,@TyrodTaylor,Thank you Buffalo! God's Plan. The marathon continues 🏁 https://t.co/CUhTzZKvqU +03/01/2018,Sports_celeb,@TyrodTaylor,Dream it. Work for it. Go take it. #TBT Combine Week. https://t.co/D7ozKh2j1z +02/27/2018,Sports_celeb,@TyrodTaylor,RT @k_obrand: I’ve been working.... meet you at the top. +02/27/2018,Sports_celeb,@TyrodTaylor,RT @Kam_Chancellor: Sorry Duke.. #GoHokies +02/27/2018,Sports_celeb,@TyrodTaylor,How about my Hokies!!! Big-time win @HokiesMBB. +02/22/2018,Sports_celeb,@TyrodTaylor,https://t.co/Luwp8cDgnt 👌🏾 https://t.co/qwF3pve3S6 +02/22/2018,Sports_celeb,@TyrodTaylor,In love with the process 🎥: @JaySpinks12 https://t.co/pIzXutO7GI +02/22/2018,Sports_celeb,@TyrodTaylor,RT @TheSportsEntGrp: Happy Birthday @DEverett22! +02/22/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Believe ... and it’ll happen +02/21/2018,Sports_celeb,@TyrodTaylor,It’s Just the beginning https://t.co/hdUHTVdsE3 +02/21/2018,Sports_celeb,@TyrodTaylor,@zayjones11 🙏🏾 https://t.co/Adx5zIGdQQ +02/21/2018,Sports_celeb,@TyrodTaylor,Can’t go wrong with that boss haha! https://t.co/IJ9NqbTOGW +02/21/2018,Sports_celeb,@TyrodTaylor,My brother ✊🏾 https://t.co/lXFDhvYIQh +02/18/2018,Sports_celeb,@TyrodTaylor,https://t.co/9jxIVm6qDk +02/17/2018,Sports_celeb,@TyrodTaylor,To whom much is given much is required... https://t.co/ApsQqwr9fb +02/15/2018,Sports_celeb,@TyrodTaylor,My dawgs ✊🏾 https://t.co/DlH4gc2Y9i +02/11/2018,Sports_celeb,@TyrodTaylor,Va is STILL VA Tech land.. Congrats to my #Hokies @HokiesMBB ... 👌🏾 +02/11/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: I got a pure soul... I don’t do the hate +02/11/2018,Sports_celeb,@TyrodTaylor,Appreciate the love.. enjoy the frames 👓 https://t.co/U66na1ZRcs +02/11/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/F3kEAscNdJ +02/09/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Put my trust in God... +02/07/2018,Sports_celeb,@TyrodTaylor,You gotta dream like you never seen obstacles.. 11 years later. No place like HOME! #NationalSigningDay @HokiesFB https://t.co/3Y8HbqadI7 +02/04/2018,Sports_celeb,@TyrodTaylor,"RT @Framegenie: Thanks for celebrating the launch of T2, @TyrodTaylor's new frame collection! Did you take some pics? Share them in the com…" +02/04/2018,Sports_celeb,@TyrodTaylor,Congrats big bro @raylewis well deserved. Thanks for all you brought to the game and all you taught me along the wa… https://t.co/0bkDDe5vLy +02/03/2018,Sports_celeb,@TyrodTaylor,#T2Frames pop-up. Join me today 1-3pm @ Le Meridian Hotel to grab a pair of my 👓 and win cool prizes! 901 Hennepin… https://t.co/hNihJ9GX52 +02/03/2018,Sports_celeb,@TyrodTaylor,#T2SuitSeries Super Bowl LII Edition. https://t.co/ose6q8KaI8 +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: “As of right now I’m still a Bill. + +I’m going to continue to control the things I know I can.” + +How the biggest lesson of @…" +02/03/2018,Sports_celeb,@TyrodTaylor,RT @raylewis: Remember - diamonds are created under pressure. +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @gmfb: ""The naysayers are always going to be out there and I'll continue to prove them wrong."" -@TyrodTaylor when @RealMikeRob asked how…" +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @gmfb: Huge thanks to @TyrodTaylor and @IsaacBruce80 for dropping by our #SuperBowl set this morning! Three more hours rolling on! +➡️ @…" +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: “I love playing in Buffalo. We have a special locker room. I’d love to be back with those guys.” + +@TyrodTaylor on his futur…" +02/03/2018,Sports_celeb,@TyrodTaylor,Minnesota come meet me tomorrow 2/3 from 1-3pm and grab a pair of my newly launched #T2Frames. #T2xFrameGenie. Purc… https://t.co/a929FBNEcc +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @Framegenie: If you can't be there, make sure to check out the T2 collection online: https://t.co/IcKssqOeyq https://t.co/vyZQSOmD87" +02/03/2018,Sports_celeb,@TyrodTaylor,RT @nflnetwork: Coming up next on #SBLive: @TyrodTaylor! ➡️📺 https://t.co/odQvjRi5up +02/03/2018,Sports_celeb,@TyrodTaylor,Anytime my man!! https://t.co/Y3Qb22jp84 +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLTotalAccess: .@TyrodTaylor lets us know how it felt to get the @buffalobills in the playoffs and what's in store for next season. ht… +02/03/2018,Sports_celeb,@TyrodTaylor,https://t.co/I0TcpJK1RV grab a pair 👓 https://t.co/pSH7FXKkus +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLTotalAccess: .@TyrodTaylor joins the guys NEXT on @nflnetwork!!! https://t.co/NOx0WI7WX2 +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: We got @TyrodTaylor in the 🏠! + +The @buffalobills QB checking in with @MJD. #SBLive https://t.co/eUKK5qTvOa" +02/03/2018,Sports_celeb,@TyrodTaylor,Anytime. Great to meet you! https://t.co/71T8DbPXVe +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLGameDay: .@TyrodTaylor talks about his time on the @Ravens and learning what it takes to win a Super Bowl 👇👇👇 https://t.co/Rdc1sBIuiy +02/03/2018,Sports_celeb,@TyrodTaylor,My man! Great to see you again. https://t.co/FBipIctaXO +02/03/2018,Sports_celeb,@TyrodTaylor,RT @VT_Football: Any #Hokies 🦃 heading to #SBLII - here's your chance to hang w T2! https://t.co/ysqnHAinqy +02/03/2018,Sports_celeb,@TyrodTaylor,Had a blast celebrating #SuperBowlLII with the @NFLPA. https://t.co/8bpaiAjWMF +02/02/2018,Sports_celeb,@TyrodTaylor,Had an awesome day with @Hyundai and the fans celebrating Super Bowl LII! #Ad https://t.co/cQp0owvPQX +02/01/2018,Sports_celeb,@TyrodTaylor,"RT @buffalobills: Thank you, @EWood70. + +Our locker room won't be the same without you. https://t.co/9Qa7J2565e" +02/01/2018,Sports_celeb,@TyrodTaylor,"Come meet me in Minneapolis! Le Meridian Hotel Saturday, Feb 3rd from 1-3pm. Get a chance to win my #T2Frames, auto… https://t.co/PKSKPPYdUI" +01/31/2018,Sports_celeb,@TyrodTaylor,👓 #SuperBowlLII #T2Frames https://t.co/zr0FahFddU +01/26/2018,Sports_celeb,@TyrodTaylor,"You got this, @MrDavidWise and the @usskiteam! #TeamBose #OneTeam #BoseAmbassador https://t.co/yNegH6otKU" +01/19/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Glory to God.. +01/19/2018,Sports_celeb,@TyrodTaylor,You need to grab those. T2 👓 https://t.co/fDLyPv7V0K +01/19/2018,Sports_celeb,@TyrodTaylor,RT @DexRob: On Demand 📈| @TyrodTaylor https://t.co/2sUpl0WA7w +01/15/2018,Sports_celeb,@TyrodTaylor,That’s Big Time Diggs.. yessir +01/12/2018,Sports_celeb,@TyrodTaylor,"RT @MensFitness: Need an extra boost in the gym? Here's how @DangeRussWilson, @cj_wentz, @LarryFitzgerald, @Edelman11, and @TyrodTaylor get…" +01/11/2018,Sports_celeb,@TyrodTaylor,Thats Love. Appreciate it! https://t.co/XT0NSCILvd +01/11/2018,Sports_celeb,@TyrodTaylor,Always love in the 6 with my bro @CutonDime25 #WeTheNorth https://t.co/5yGy15umiK +01/10/2018,Sports_celeb,@TyrodTaylor,"RT @NBACanada: The @buffalobills very own, Tyrod Taylor & LeSean McCoy, came to visit the @raptors tonight! 🏈x🏀 + +#WeTheNorth https://t.co/5…" +01/07/2018,Sports_celeb,@TyrodTaylor,Post season looks. Check. Week 18. #T2SuitSeries https://t.co/JaxHegmkzb +01/07/2018,Sports_celeb,@TyrodTaylor,😄 https://t.co/gl9vWytOkP +01/05/2018,Sports_celeb,@TyrodTaylor,Been working some years for this. https://t.co/uWV5yS2FVa +01/05/2018,Sports_celeb,@TyrodTaylor,RT @OlmstedCenter: @TyrodTaylor has supported @OlmstedCenter for 2 years and in response to his support we have had some amazing fans donat… +01/05/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Follow God. That’s always the right direction... +01/02/2018,Sports_celeb,@TyrodTaylor,This is an Instant Classic.. UGA/Oklahoma kids played their hearts out. #RoseBowl +01/02/2018,Sports_celeb,@TyrodTaylor,RT @SportsCenter: The wait is over. The Bills are in the postseason. https://t.co/d62HjPFiw7 +01/02/2018,Sports_celeb,@TyrodTaylor,BILL-LIEVE ... https://t.co/5Jj2HCkuo3 +01/02/2018,Sports_celeb,@TyrodTaylor,Sunday’s best. Week 17. #T2SuitSeries https://t.co/acU8b9lX8Q +12/26/2017,Sports_celeb,@TyrodTaylor,No place like Blacksburg! #Hokie4Life https://t.co/qNhmxZcfET +12/24/2017,Sports_celeb,@TyrodTaylor,Suits that weather the storm. Business trip. Week 16. #T2SuitSeries https://t.co/0qRtbb3E7q +12/22/2017,Sports_celeb,@TyrodTaylor,What’s it like to be an #NFL player? Step into the game at the NEW @NFLExperience to find out - you can even borrow… https://t.co/8v6kkBgfIk +12/22/2017,Sports_celeb,@TyrodTaylor,Thank you @UnitedWay for allowing me to be a blessing to these families. This is what it’s all about. https://t.co/cvmyqEb9dP +12/20/2017,Sports_celeb,@TyrodTaylor,Congrats to my brothers @CutonDime25 @68INCOGNITO & @micah_hyde on being selected to the #ProBowl. Represent the fa… https://t.co/fc1hsI66Jc +12/20/2017,Sports_celeb,@TyrodTaylor,"RT @buffalobills: The winner of this week's @BlueRockEnergy Player of the Week? + +Tyrod Taylor! #GoBills https://t.co/0bLWjifMjx" +12/19/2017,Sports_celeb,@TyrodTaylor,Great time hanging out @StantonOptical1 tonight with the fans of Buffalo launching my new T2 Frames! Go visit your… https://t.co/rkYPNInLPR +12/19/2017,Sports_celeb,@TyrodTaylor,"BUFFALO!!!! Join me today @StantonOptical1 from 5-6pm as I sign autos, take pics & launch my new T2 Frames. It’s FR… https://t.co/dtnhbzNkBZ" +12/19/2017,Sports_celeb,@TyrodTaylor,RT @ToddJClausen: We should never question the heart of @TyrodTaylor. Truly a class act. #BillsMafia https://t.co/Y7dIkTFD0z +12/19/2017,Sports_celeb,@TyrodTaylor,All of Buffalo join me tomorrow. Let’s hangout and try some new frames! T2 https://t.co/1CfLCuh7Vg +05/31/2018,Sports_celeb,@tonyromo,Kicking back in @SKECHERSUSA #ad https://t.co/y59TNZBxIs +05/08/2018,Sports_celeb,@tonyromo,The standard that every future cowboy will have to live up to. Thank you Jason Witten. You will be missed bro. https://t.co/d9a4RI6N9T +03/29/2018,Sports_celeb,@tonyromo,Behind the scenes with @SKECHERSUSA #skechers 🎬 https://t.co/vrG6dzd5si +12/28/2017,Sports_celeb,@tonyromo,@Rizzuti09 You stay strong Rachel. They come and they go. You have special qualities that many people can see eve… https://t.co/nZpApiJfKA +12/25/2017,Sports_celeb,@tonyromo,Merry Xmas everyone. Hawk and Riv are having a great day! “That’s what I️ wanted!” https://t.co/RUGi0aKBEf +10/14/2017,Sports_celeb,@tonyromo,@Rizzuti09 I think we can make that happen. ;) +10/11/2017,Sports_celeb,@tonyromo,Sunday was a good day to hang out and watch football with the boys. Rivers is the “crazy guy” Hawk is talking about… https://t.co/H0bJ25dzMd +09/29/2017,Sports_celeb,@tonyromo,@ZacEfron @ZacEfron thanks bud. Having a blast over here +09/25/2017,Sports_celeb,@tonyromo,I think I like this broadcasting thing. 😎 https://t.co/LaFKaYOT7u +09/07/2017,Sports_celeb,@tonyromo,Never going a day without #comfort now that I’ve joined #TeamSkechers! Thanks for welcoming me @SkechersUSA! https://t.co/Gxv3iTnVe0 +08/23/2017,Sports_celeb,@tonyromo,Welcomed our third boy Jones Mccoy Romo into the world today! Ten fingers and ten toes. All healthy. Almost have… https://t.co/2VqgtSiDBs +08/05/2017,Sports_celeb,@tonyromo,At Jerry's Hall of Fame party. This napkin says it all. I've heard more Jerry-ism's than anyone. I love 'em. Che… https://t.co/EdhHDC0qno +04/11/2017,Sports_celeb,@tonyromo,"@swish41 If I shoot an air ball in warmups I give u permission to send me to the showers. But if I don't, u get me a corner three in the 4th" +04/08/2017,Sports_celeb,@tonyromo,You made football a lot easier for me because of your greatness...but you also made my life better by being in it.… https://t.co/4PZuxRkd6b +04/08/2017,Sports_celeb,@tonyromo,@JasonWitten You made football a lot easier for me because of your greatness...but you also made my life better by… https://t.co/ysoPeOQ1Gq +04/06/2017,Sports_celeb,@tonyromo,@JJWatt I could hear you breathing as u we're closing in. Gotta work on those quiet feet as well. ;) Your the best in the game brother +04/06/2017,Sports_celeb,@tonyromo,@TCrawford98 Don't worry. I'm still gonna be around to yell at you for something. ;) +04/04/2017,Sports_celeb,@tonyromo,I guess it's time to start dressing up. #CBS https://t.co/GseSRiyNOo +03/09/2017,Sports_celeb,@tonyromo,Thanks for all the support everyone. https://t.co/RlRS3KAqwb +07/08/2016,Sports_celeb,@tonyromo,My heart can't shake the sadness that the Sterling and Castile families are enduring as well right now. Horrible 72 hrs for America +07/08/2016,Sports_celeb,@tonyromo,Our community is stunned this morning. My thoughts and prayers go out to the fallen police officers and their loved ones. +06/16/2016,Sports_celeb,@tonyromo,I had so much fun helping @Target shoppers pick out Father's Day gifts in Dallas tonight! #TargetPartner https://t.co/EELEEmeeza +04/29/2016,Sports_celeb,@tonyromo,"Welcome to Dallas Ezekiel. Nothing better than your draft day! Or in my case, nothing better than teams fighting for you after it's over :)" +03/31/2016,Sports_celeb,@tonyromo,3 Days. 2 Stages. 1 FREE Music Festival. @FinalFour March Madness Music Festival - Apr 1-3. https://t.co/BpffXlyVTv +03/31/2016,Sports_celeb,@tonyromo,My surgery has healed up nicely. Looking forward to OTA's and a full offseason. Let's go! +11/17/2015,Sports_celeb,@tonyromo,;) https://t.co/KPy56DQMTz +09/21/2015,Sports_celeb,@tonyromo,Thank you for all your prayers and support. No surgery needed. We're just getting started cowboys nation. See you soon +08/26/2015,Sports_celeb,@tonyromo,Sending prayers out to Orlando Scandrick...Fear he has a torn acl. Your the best bud. +08/23/2015,Sports_celeb,@tonyromo,"My bad. Feeling. Aggressive, I like it. :)" +08/23/2015,Sports_celeb,@tonyromo,Cowboys vs Niners.... I have a funny felling you might see me out there tonight. Let's go cowboy nation +08/21/2015,Sports_celeb,@tonyromo,http://t.co/R3010HN4ap check this out. Our d lineman Jeremy Mincey made this. Pretty cool. Good job Mincey +08/01/2015,Sports_celeb,@tonyromo,You just wish u could play this game forever. Greatest game there is. #firstdayofpads http://t.co/GCQ6nOXvKi +07/25/2015,Sports_celeb,@tonyromo,I wanna thank @DIRECTV for allowing me to show off my true self. ;) embarrassing is an understatement http://t.co/F0NniFESlL +07/20/2015,Sports_celeb,@tonyromo,I wonder if @JordanSpieth understands the emotional roller coaster he's given us this year. It was amazing. Thank you for making it fun bro +07/15/2015,Sports_celeb,@tonyromo,Couldn't be happier for my guy @DezBryant . Nobody deserves it more... just make sure you don't forget your wallet at the next dinner 88. +07/08/2015,Sports_celeb,@tonyromo,DeAndre Jordan.....you are not allowed to take your talents to LA. See you Monday 🏈🏀🏈🏀🏈🏀🏁🏁🏁🏆🏆 http://t.co/7N2YcfWvOT +07/04/2015,Sports_celeb,@tonyromo,Enjoy your family and friends today. To the lives that have been lost fighting for American lives.....thank you. Truly humbled +06/11/2015,Sports_celeb,@tonyromo,"RT @dallascowboys: ""The responsibility is yours to make your life GREAT."" - @tonyromo to local student-athletes. #CowboysU http://t.co/m04W…" +06/06/2015,Sports_celeb,@tonyromo,NFL has canceled our fantasy football convention this year in Vegas and that is disappointing. I'm sad for the fans and players. +06/02/2015,Sports_celeb,@tonyromo,I guess I'm the third most athletic in the family. I'm cool with it. :) http://t.co/PKocqGVL5G +05/20/2015,Sports_celeb,@tonyromo,Where have u gone Joe DiMaggio. http://t.co/9d5aElp13d +05/15/2015,Sports_celeb,@tonyromo,Looking back on it...it was a catch :) http://t.co/jq29XpkGAn +05/15/2015,Sports_celeb,@tonyromo,9 +07/02/2018,Sports_celeb,@bengreenfield,Caffeine’s effect on endurance exercise performance may depend on the genes you wear: https://t.co/fxQQFsq7Iz +07/02/2018,Sports_celeb,@bengreenfield,@gutch03 I think it's pretty sound advice actually. +07/01/2018,Sports_celeb,@bengreenfield,@UncleWilliamMMA It's all in this article: https://t.co/g4PHEoVp8K +07/01/2018,Sports_celeb,@bengreenfield,@thef00ch It's complicated and depends on what you want to get out of your fast. Check out my fasting podcast with… https://t.co/WiSZ2eVQnw +07/01/2018,Sports_celeb,@bengreenfield,"@suncard19 @mvmt It's not recommended, but I do and haven't had any issues." +07/01/2018,Sports_celeb,@bengreenfield,"**DO NOT COMMENT ON THIS POST TO ENTER!!**⁣ +⁣ +If you are interested in winning the Christian Gratitude Journal for… https://t.co/gqcG2Qygva" +07/01/2018,Sports_celeb,@bengreenfield,@gmoore131 Sure is tempting! +07/01/2018,Sports_celeb,@bengreenfield,@CarleAldrete I go over some of the benefits (and drawbacks) in this podcast: https://t.co/y2sFKQtMYs +06/30/2018,Sports_celeb,@bengreenfield,@UncleWilliamMMA @tferriss I go into cupping on this podcast: https://t.co/AwcHIBc2NL +06/30/2018,Sports_celeb,@bengreenfield,"@bobpzero Nope, read more here: https://t.co/bHliB74uCi" +06/30/2018,Sports_celeb,@bengreenfield,@waywarduncle @thorne_research https://t.co/Zuv3TJIC8r +06/30/2018,Sports_celeb,@bengreenfield,"@HeroSquirellBoy Check the link, I answer this in the article." +06/30/2018,Sports_celeb,@bengreenfield,@Karrisspeaks Just mono...This is the stuff I use: https://t.co/0dScTtjNzm +06/30/2018,Sports_celeb,@bengreenfield,@4nomad @foundmyfitness @robbwolf https://t.co/3ygUHfbczG +06/30/2018,Sports_celeb,@bengreenfield,"@Cain_Luca I talk about it here as a better alternative to, or a way to wean yourself off of, tobacco containing ci… https://t.co/o7sjhGLPbm" +06/30/2018,Sports_celeb,@bengreenfield,@GFunk_Error @DZederman Check out this recent article on https://t.co/YR7B65x4tq: https://t.co/9oRmYPatzq +06/30/2018,Sports_celeb,@bengreenfield,@firehaas I wouldn't consider that cold water. +06/30/2018,Sports_celeb,@bengreenfield,@ANorrby https://t.co/zA7rC48fyg +06/30/2018,Sports_celeb,@bengreenfield,"@LuisE_Lemus @truniagen Not in production yet, but sign up for my newsletter at https://t.co/PJPuWBve6p to be notified when they're ready!" +06/30/2018,Sports_celeb,@bengreenfield,@ondroad2royalty That could buy a lot. Every single product/device/procedure I've ever mentioned at… https://t.co/d4IN2Dgai4 +06/30/2018,Sports_celeb,@bengreenfield,@AeroLance @livingwmonsters @younglivingeo https://t.co/bIDbWx1Ykj +06/30/2018,Sports_celeb,@bengreenfield,"@suncard19 @mvmt Sometimes, depends on the type of training." +06/30/2018,Sports_celeb,@bengreenfield,@codypriest92 @JREpodcast Here's an article I wrote on MK 677: https://t.co/Qf7Dkwz3IX +06/30/2018,Sports_celeb,@bengreenfield,"My seafood kick continues here in #Estonia... I got this amazing oven-baked baby trout with fresh greens, avocado c… https://t.co/oWxrHZTEtX" +06/30/2018,Sports_celeb,@bengreenfield,Yale graduate and “social cognitive & affective neural science” author Ryan Keller is a guest on Obstacle Dominator… https://t.co/bjcFq7iNLJ +06/30/2018,Sports_celeb,@bengreenfield,"My guest on today's podcast, @drdanpompa is one of my favorite guys to hang with! He is considered to be an icon in… https://t.co/AWMMOi80sO" +06/30/2018,Sports_celeb,@bengreenfield,"Everything you may have missed this week– health and fitness news, tips, discounts and more! +https://t.co/D1llw3iPeU" +06/30/2018,Sports_celeb,@bengreenfield,Spartan Race just put up $1 million for the athlete who wins 1st place at all three @SpartanRace World Championshi… https://t.co/KTqi7BUGv9 +06/30/2018,Sports_celeb,@bengreenfield,"@the1hatter Similar effect...but for athletes, very lean people, etc. the whole ""fasting"" to fix every issue approach can backfire..." +06/29/2018,Sports_celeb,@bengreenfield,"#Creatine increases #cognition, even in #healthy people: https://t.co/7IQU1ucssC" +06/29/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #22: Super Smart Things and S… https://t.co/GdyzInXKmv +06/28/2018,Sports_celeb,@bengreenfield,"I travel a lot, but it’s hands-down the BEST when I get to travel with my family. From the Boise @spartanrace to at… https://t.co/5TWjCO9FyM" +06/28/2018,Sports_celeb,@bengreenfield,"RT @DZederman: Hey now, The Armchair Nutritionist is back! I talked with @bengreenfield a nutritionist, biohacker & longevity consultant.…" +06/28/2018,Sports_celeb,@bengreenfield,Calling all you high achieving athletes who struggle to find time to to train! Today's new podcast is for you. In i… https://t.co/jUjyJAXnGf +06/28/2018,Sports_celeb,@bengreenfield,Did you know Rutaecarpine is an herb speeds up #caffeine #metabolism. So if you accidentally drank regular #coffee… https://t.co/28kICLdCc0 +06/28/2018,Sports_celeb,@bengreenfield,"This year I used a special protocol that is technically called “extracorporeal shock wave therapy,” also known as “… https://t.co/tMbPva8zCs" +06/28/2018,Sports_celeb,@bengreenfield,The Best Workout Tips for Ectomorphs and Hardgainers https://t.co/5qpTaYb4r6 +06/27/2018,Sports_celeb,@bengreenfield,"Everyone is talking about the outstanding #longevity benefits of #NAD but it's actually #NR, its precursor which is… https://t.co/Q6xgO4w4wx" +06/27/2018,Sports_celeb,@bengreenfield,"Caffeine's effect on #endurance exercise #performance may depend on #genes, shocking facts about honey, caffeinated… https://t.co/YsU6EllJos" +06/27/2018,Sports_celeb,@bengreenfield,Latest study on red meat shows that (despite what epidemiologists say) if it's unprocessed and somewhat lean in Med… https://t.co/Ci5PUdfYKQ +06/27/2018,Sports_celeb,@bengreenfield,"@the1hatter Yes, I did. Will be addressing in a podcast soon." +06/26/2018,Sports_celeb,@bengreenfield,"@Vican123ZA No it doesn't. Enrollment has ended, but you are welcome to apply next year!" +06/26/2018,Sports_celeb,@bengreenfield,@CeeJayWeaber @BigStrongFast I felt it pretty quickly. +06/26/2018,Sports_celeb,@bengreenfield,@JaffaSumo @PeterAttiaMD @tferriss @ChrisMasterjohn @chriskresser @bulletproofexec Have you tried a humidifier? https://t.co/QM4JLhF3Rl +06/26/2018,Sports_celeb,@bengreenfield,How To Prepare for a Ragnar Relay https://t.co/Q6YAlpzn7l +06/25/2018,Sports_celeb,@bengreenfield,@suncard19 Usually @mvmt https://t.co/Xo9Oykiuqv +06/25/2018,Sports_celeb,@bengreenfield,@kystyleguy There are many counterpoints to that. I would have her read this: https://t.co/xry6g8Azpo and any of my… https://t.co/gOBBu6pas7 +06/25/2018,Sports_celeb,@bengreenfield,@johntracey_ @JasonFerruggia Yes +06/25/2018,Sports_celeb,@bengreenfield,@howellsmike @WholeFoods I'm not much of a calorie counter tbh. +06/25/2018,Sports_celeb,@bengreenfield,@mn_fats75 Sure! https://t.co/MPdbeDhLJM +06/25/2018,Sports_celeb,@bengreenfield,@savoie0515 Not familiar with that one. All of my water filtration recommendations can be found in this article: https://t.co/NsbTdChNP0 +06/25/2018,Sports_celeb,@bengreenfield,"The deadline to apply for Kion U is today: https://t.co/3XIAsDKndR (link in bio)⁣⁣ +⁣⁣ +This is a 21-week intensive p… https://t.co/89U5uNj0x3" +06/25/2018,Sports_celeb,@bengreenfield,@WholeFoods Let me know if you ever want to collaborate on promo ideas. Just DM me. +06/25/2018,Sports_celeb,@bengreenfield,"For 4 full days while we are in Estonia next week, my wife and I are taking this Lifebook course with @mindvalley -… https://t.co/rVskqN7JLf" +06/24/2018,Sports_celeb,@bengreenfield,"My go-to lunch spot while traveling is the @wholefoods salad bar. Today I got some salmon, (admittedly not wild-cau… https://t.co/VCMeLjh67W" +06/24/2018,Sports_celeb,@bengreenfield,River and Terran Greenfield of the world famous gogreenfieldsshow did their first ever 2 mile long competitive… https://t.co/IxQYo9zklq +06/23/2018,Sports_celeb,@bengreenfield,@BuxBucks This is great. Where is it from? +06/23/2018,Sports_celeb,@bengreenfield,"Real men eat their #glutenfree #vegan #icecream sandwiches pinkies out. I’m at @ilovethestil in Boise, Idaho. Post… https://t.co/NI9Z07r5gB" +06/23/2018,Sports_celeb,@bengreenfield,@joerogan I am sitting here in Boise after racing a Spartan and your face is all over. Tip: get the most amazing gl… https://t.co/dFuWQFo7J6 +06/23/2018,Sports_celeb,@bengreenfield,"@Urban_Tribe_Adv @RayCronise @RayCronise has been on the podcast, check it out here: https://t.co/vxWazlnaED" +06/23/2018,Sports_celeb,@bengreenfield,@justinwilcox Check out the Alchemist's Kitchen @alchemists_k and @HuKitchen. +06/23/2018,Sports_celeb,@bengreenfield,@quijotedv @joerogan A cycle leading into a major competition or race. +06/23/2018,Sports_celeb,@bengreenfield,@Optix_Melt Yep or carbs in general +06/23/2018,Sports_celeb,@bengreenfield,@Hightower915 @joerogan Just carbs. +06/23/2018,Sports_celeb,@bengreenfield,"My guest on today's podcast is experienced in a wide variety of #therapeutic modalities as a #LMT, and his educatio… https://t.co/2eZhdJskcJ" +06/22/2018,Sports_celeb,@bengreenfield,@HeatherOdehkw @drcateshanahan Awesome! +06/22/2018,Sports_celeb,@bengreenfield,@the1hatter Here you go! https://t.co/9syX1PQ9Q9 +06/22/2018,Sports_celeb,@bengreenfield,"@savoie0515 Hmm, I'll have to try it and let you know!" +06/22/2018,Sports_celeb,@bengreenfield,"@msted6 @joerogan Carbohydrate, they tell you in the first mention." +06/22/2018,Sports_celeb,@bengreenfield,@_buenavictoria Depends on your definition of cheat meal. Check out: https://t.co/Lbb0I4u9GL +06/22/2018,Sports_celeb,@bengreenfield,@stamper_hank Yes. +06/22/2018,Sports_celeb,@bengreenfield,"@cmoss23 @GetFitGuy Consistently, through your lift, doing a workout similar to that once a week is a very good idea, IMO." +06/22/2018,Sports_celeb,@bengreenfield,"I'm packing for @Spartan Boise. Who will be out there to crush the course with me this Saturday? + +Shout out to all… https://t.co/Uelw985vun" +06/22/2018,Sports_celeb,@bengreenfield,Can Simply Sitting in a Hot Tub Improve Your Health? https://t.co/jPRj6LzS1o +06/22/2018,Sports_celeb,@bengreenfield,@grim_magnus @Mindpump That's because they get me all liquored up. +06/22/2018,Sports_celeb,@bengreenfield,@tiffanyngibson @bulletproofexec @MariaEmmerich The Keto Bible! https://t.co/84ns0JuctN +06/22/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #21: Power Hour with Matthew… https://t.co/UBXR6WB9cx +06/22/2018,Sports_celeb,@bengreenfield,"How To Use Your Mind To Heal Your Body, Imagination For Healing, Defying Death, Embracing Immortality & Much More W… https://t.co/37Uld0iUZa" +06/22/2018,Sports_celeb,@bengreenfield,"@DevinRhode2 Yes, @joerogan wears lobster bib-esque vomit aprons when we podcast." +06/21/2018,Sports_celeb,@bengreenfield,@huntthesheriff is in tha’ hood. https://t.co/ojNuQ0AFro +06/21/2018,Sports_celeb,@bengreenfield,"@huntthesheriff is in the hood. @ Spokane,… https://t.co/5NAeXCliAb" +06/21/2018,Sports_celeb,@bengreenfield,"Gerald Epstein, M.D., has been a pioneer in the use of mental imagery for treating physical and emotional problems.… https://t.co/jnE5rdBi9h" +06/21/2018,Sports_celeb,@bengreenfield,Which episode of my podcast is hands down your favorite / you have recommended the most? +06/21/2018,Sports_celeb,@bengreenfield,@normcarbnormfat @johnortberg Soul Keeping. +06/21/2018,Sports_celeb,@bengreenfield,The author @johnortberg has been blowing my mind recently. I'd recommend you read all his books in the next year of… https://t.co/JI5R035Yt9 +06/20/2018,Sports_celeb,@bengreenfield,@KyleShuberg @amazon @ransomedheart @johneldredge Have not read either of them! +06/20/2018,Sports_celeb,@bengreenfield,"How exactly does #neurofeedback / AKA ""central nervous system biofeedback” work to train the #brain? Find out how i… https://t.co/Hemjzhud3D" +06/20/2018,Sports_celeb,@bengreenfield,@BarryVanOver Not yet. ;) +06/20/2018,Sports_celeb,@bengreenfield,Good one: Overview of the potential effects of #protein ingestion on supporting the #recovery from endurance-based… https://t.co/DYUa658m4E +06/19/2018,Sports_celeb,@bengreenfield,"""12 Practical & Proven Ways To Heal Your Body From The Inside-Out."" https://t.co/Lbd23XckhB" +06/19/2018,Sports_celeb,@bengreenfield,@the1hatter Thanks for sharing! +06/19/2018,Sports_celeb,@bengreenfield,"@fithouses Yep, in this podcast: https://t.co/tacbjoIWQo" +06/19/2018,Sports_celeb,@bengreenfield,"@HeatherOdehkw @drcateshanahan Not sure about a cracked tooth, but I go into detail about remineralizing your teeth… https://t.co/KwQiNgt8hF" +06/19/2018,Sports_celeb,@bengreenfield,@caholden7 I have a bunch of resources in this podcast: https://t.co/rDBRbhH9Yu ...and these articles:… https://t.co/ogW7dlHLPI +06/19/2018,Sports_celeb,@bengreenfield,@SEOphilippiness I would send an email to support: support@greenfieldfitnesssystems.com +06/19/2018,Sports_celeb,@bengreenfield,@Formwell I go over a few good natural remedies in this podcast: https://t.co/OLdCVkNze6 +06/19/2018,Sports_celeb,@bengreenfield,There is a hard deadline for applications for my brand new coaching program. Submit your application before the end… https://t.co/Angb9sQPsh +06/19/2018,Sports_celeb,@bengreenfield,"Weightlifting for your penis? @Kingsbu @joerogan - been there, done that: https://t.co/rDQcgS2Juw" +06/19/2018,Sports_celeb,@bengreenfield,Experts say #algae is the food of the future. Here’s why: https://t.co/Ruqd6ZIW4J +06/19/2018,Sports_celeb,@bengreenfield,Why Cross-Training Is Essential (and Improves Your DNA) https://t.co/MrhJeyHyKu +06/19/2018,Sports_celeb,@bengreenfield,"@thedr_com - when it comes to lipid raft cytosis, any data out there on how this would affect folks who switch from… https://t.co/mP3awdF00Y" +06/18/2018,Sports_celeb,@bengreenfield,"@brianfreel You probably saw it here, https://t.co/Jt9QZWFzSA but stay tuned for an upcoming @onnit podcast." +06/18/2018,Sports_celeb,@bengreenfield,@the1hatter 1-2tsp! +06/18/2018,Sports_celeb,@bengreenfield,I visited @PeakBrainLA for an advanced brain scan and I was shocked at what they discovered in my #brain. Read mo… https://t.co/OC8RH0kg8D +06/18/2018,Sports_celeb,@bengreenfield,@hfce354 Along with neurotoxic and gut destroying artificial sweeteners. Yay! +06/18/2018,Sports_celeb,@bengreenfield,"Enroll now in ""KionU"" my brand new health and fitness coaching program. It is designed with an emphasis on business… https://t.co/PZ3sthVSIs" +06/18/2018,Sports_celeb,@bengreenfield,The only supplement that comes at least close to carbs in terms of the amount and quality of research is caffeine a… https://t.co/4dFgN4Zl4k +06/18/2018,Sports_celeb,@bengreenfield,RT @mindbodygreen: Talk about early to rise -- we set out for a 6 am hike this morning led by @bengreenfield + fueled by @EPICbar 😋⛰ #mbgre… +06/17/2018,Sports_celeb,@bengreenfield,@New49 Thank you. +06/17/2018,Sports_celeb,@bengreenfield,@Greghenderson1 It was a relatively intense effort… Like a bicycle time trial type of effort. +06/17/2018,Sports_celeb,@bengreenfield,@bubstron Correct. +06/17/2018,Sports_celeb,@bengreenfield,@Ryan_Bevans Yep. If your goal is to enhance endurance. +06/17/2018,Sports_celeb,@bengreenfield,90-year-old woman deadlifts 185 lbs. Can’t wait to see what the trolls think of her form: https://t.co/XbnRNSe8Ib +06/16/2018,Sports_celeb,@bengreenfield,Hike with champs! @maxlugavere @foursigmaric Tero and @seedhealth Raja at #mbgrevitalize https://t.co/0hLK4acNeS +06/16/2018,Sports_celeb,@bengreenfield,Hike with champs! @maxlugavere @foursigmaric Tero and @seedhealth Raja - https://t.co/PRIYclcRg4 https://t.co/U4LQg3eiE4 +06/16/2018,Sports_celeb,@bengreenfield,@jsfaq Hopefully the cost will come down in the future! +06/16/2018,Sports_celeb,@bengreenfield,"@SEOphilippiness Yes, you can stream the video or download the audio." +06/16/2018,Sports_celeb,@bengreenfield,This is the best computer monitor for your eyes. https://t.co/bH728GMWRK +06/16/2018,Sports_celeb,@bengreenfield,Me and @maxlugavere crushing gym time at #mbgrevitalize in Tucson! https://t.co/2fxn99ab4S +06/16/2018,Sports_celeb,@bengreenfield,"If you want to learn how to harness the healing power of nature — even indoors, clean up your environment, grow you… https://t.co/EihUmPvDvt" +06/16/2018,Sports_celeb,@bengreenfield,"@UncladLad Seems slightly unsafe, I would make sure someone knows you're doing it, and definitely not while driving… https://t.co/8V8v9ye6ws" +06/16/2018,Sports_celeb,@bengreenfield,@gerabrr I have instructions here as well: https://t.co/5u9UbD2pp5 +06/16/2018,Sports_celeb,@bengreenfield,@hopsanonymous Read more here: https://t.co/MA3oLgJs9I +06/16/2018,Sports_celeb,@bengreenfield,@MemeGalt Don't knock it til you've tried it ;) +06/15/2018,Sports_celeb,@bengreenfield,@thestevehallock Depends! Read this: https://t.co/Mtwavbb4zL +06/15/2018,Sports_celeb,@bengreenfield,"""Sleeping Low"" (not reloading glycogen stores after evening workouts) can lead to game-changing performance gains w… https://t.co/qEbtLS5WGV" +06/15/2018,Sports_celeb,@bengreenfield,"Everything you may have missed this week including a mouth-watering #steak recipe, upcoming events including… https://t.co/mOP97gLRFd" +06/15/2018,Sports_celeb,@bengreenfield,@HotSauceHoltzy @joerogan @DrinkFITAID There’s some in my fridge. It’s pretty tasty. Especially with vodka. +06/15/2018,Sports_celeb,@bengreenfield,Here are my top 10 ways to hack your office environment so you can more done and get out of pain: https://t.co/nqagFaa0lU +06/15/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #20: Genius Nutrition For Stu… https://t.co/WReO20VPCc +06/15/2018,Sports_celeb,@bengreenfield,I visited @PeakBrainLA for an advanced brain scan and to use a brain mapping system called a quantified electroenc… https://t.co/TuEFNZ2Knu +06/14/2018,Sports_celeb,@bengreenfield,"Today's new listener Q&A podcast episode is a doozy. We cover #HIIT, how sprints can massively boost endurance, T,… https://t.co/dIOS7Sa9i7" +06/14/2018,Sports_celeb,@bengreenfield,I'm in Tucson for the @mindbodygreen Revitalize conference! My job? “Official Sunrise Morning #Hike Leader.” Tough… https://t.co/B1OUliVdo4 +06/14/2018,Sports_celeb,@bengreenfield,https://t.co/v0Xq5BWmd9 +06/14/2018,Sports_celeb,@bengreenfield,"How Your Computer Monitor Is Slowly Killing Your Eyes, And What You Can Do About It. https://t.co/XMGSUbSmqO" +06/13/2018,Sports_celeb,@bengreenfield,New to Lifting Weights? How to Start the Smart Way https://t.co/VnLcRykmFZ +06/13/2018,Sports_celeb,@bengreenfield,URGENT MSG FOR #HEMP AND #CBD USERS: @ChuckGrassley just filed an amendment to the #FarmBill that would devastate t… https://t.co/LJuFthfSES +06/13/2018,Sports_celeb,@bengreenfield,"Instantly Upgrade Your Head With This Brain Optimizing Gear! + +@DrPawluk @PeakBrainLA @AndrewHillPhD @VielightInc… https://t.co/lDaNNNYq4o" +06/13/2018,Sports_celeb,@bengreenfield,"How To Hack Your Workplace For Enhanced Productivity, Less Muscle Pain, Better Focus & More. https://t.co/rLmSwCbOiY" +06/13/2018,Sports_celeb,@bengreenfield,@Matt_Belair @Cisco722 email my team: support@bengreenfieldfitness.com with screenshot of this convo and let's do it. +06/13/2018,Sports_celeb,@bengreenfield,Pasta lovers rejoice! You actually CAN lose weight while eating pasta (please note the quantity in this study was 1… https://t.co/FACenCLJBd +06/13/2018,Sports_celeb,@bengreenfield,Headed to @cityoftucson tomorrow for @mindbodygreen Revitalize conference! My job? “Official Sunrise Morning Hike L… https://t.co/C9F09ruZVg +06/13/2018,Sports_celeb,@bengreenfield,@Charlesab40 Just wait till you see my new book. It is currently 700 pages long. Everything one needs to know about… https://t.co/itJVtCgYie +06/13/2018,Sports_celeb,@bengreenfield,Doing a coffee enema tutorial right now at https://t.co/ljIqlSV90A - no joke. One of the most effective cleansing t… https://t.co/Z3hPE5XlJZ +06/12/2018,Sports_celeb,@bengreenfield,@candycatalanoto Can't say I'm aware of any... +06/12/2018,Sports_celeb,@bengreenfield,@CODYCHAPMAN I have a recommendation in this article: https://t.co/xg4cnVPQPt +06/12/2018,Sports_celeb,@bengreenfield,@the1hatter https://t.co/jvXll4rg7A +06/12/2018,Sports_celeb,@bengreenfield,Learn how to completely rid your home of mold and environmental toxins that are deleterious to your health! The Tox… https://t.co/VEhAJF6gSn +06/12/2018,Sports_celeb,@bengreenfield,@michaelpollan - I finished your book. DM me if you want to podcast. +06/12/2018,Sports_celeb,@bengreenfield,"How to fix your desk-bound human body to increase #productivity & reduce #lowbackpain, carpal tunnel syndrome and e… https://t.co/x2pARhD47H" +06/12/2018,Sports_celeb,@bengreenfield,What Is Green Exercise? https://t.co/9aVQGaozTH +06/12/2018,Sports_celeb,@bengreenfield,"#Stevia for fighting obesity, diabetes, hypertension, and dyslipidemia? Looks promising: https://t.co/kqv0vdPyml" +06/12/2018,Sports_celeb,@bengreenfield,Here’s a very scheduling tip to get more “deep work” done: https://t.co/jPz1uOX8LH +06/12/2018,Sports_celeb,@bengreenfield,"In about 15 minutes I am going to film for you the most epic, insane meal I've prepared in awhile. Slightly abnorma… https://t.co/eBI9zA06QA" +06/12/2018,Sports_celeb,@bengreenfield,"@tompapa @joerogan - my wife's sourdough bread is second to none. If you find yourself near Spokane, venture to my… https://t.co/QmDLgBssEg" +06/11/2018,Sports_celeb,@bengreenfield,"I'm looking for a list of practical activities (meditation, yoga, gratitude, prayer, etc.) that allow one to achiev… https://t.co/7tg2OXH6Ac" +06/11/2018,Sports_celeb,@bengreenfield,"@hallydally Here are a few resources that should help you out: https://t.co/g6NKG8uW6e, https://t.co/C3X6VgUKeh...… https://t.co/wNwLX34Ofy" +06/11/2018,Sports_celeb,@bengreenfield,@the1hatter I personally do the clay mask 1-2x/week combined with the Kion skin serum every day! 20% code for… https://t.co/UbSvaPRbaL +06/10/2018,Sports_celeb,@bengreenfield,Physical activity combined with learning seems to be an amazing tool for schoolchildren in Finland - meaning actual… https://t.co/pguXcRyPLh +06/10/2018,Sports_celeb,@bengreenfield,"@kahnba I have a bunch of SARMS articles on https://t.co/YR7B65x4tq: https://t.co/K4IbTwivI0,… https://t.co/Mz4B9crKpv" +06/10/2018,Sports_celeb,@bengreenfield,"@bmontgome I haven't gotten any colds recently, so no." +06/10/2018,Sports_celeb,@bengreenfield,"Unlock the secrets of ""Movement Longevity"" with expert @Doctor_Legs: https://t.co/7UKgtHjs0Q" +06/09/2018,Sports_celeb,@bengreenfield,@ironblood247 Thanks man. +06/09/2018,Sports_celeb,@bengreenfield,"@pluc61 Sorry bout that! It wasn't intentional, there was some sort of glitch that caused hundreds of my videos to… https://t.co/nveKAoSvCJ" +06/09/2018,Sports_celeb,@bengreenfield,@bigdaddy__Jason @Roodywasoffside @whoop Apples and oranges. I would check out this article on @ouraring and their… https://t.co/UbY4a7xSQL +06/09/2018,Sports_celeb,@bengreenfield,@love2laugh11 Check out this podcast for some tips: https://t.co/iY2lXFAYhF ...and this article: https://t.co/JXMFUSASEU +06/09/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 This is a good question to call into the podcast! https://t.co/s0hCj6wwIb +06/09/2018,Sports_celeb,@bengreenfield,"@havefunwiththe1 @tb12 Probably don't have the time to manage this one man. Sorry, but cool idea though!" +06/09/2018,Sports_celeb,@bengreenfield,"@dillybear92 Yes, the goal however is to avoid any long ice baths or excessive cold exposure post-workout. Night an… https://t.co/vcmIMeG6Zi" +06/09/2018,Sports_celeb,@bengreenfield,@HeatherOdehkw This will be a forever debate between supplement manufacturers who make NR and physicians who do NAD… https://t.co/LPXGCcYUM1 +06/09/2018,Sports_celeb,@bengreenfield,Have you heard about my brand new #coaching certification? I've been working tirelessly to overhaul the Superhuman… https://t.co/VccFo6992p +06/09/2018,Sports_celeb,@bengreenfield,Looks like intermittent fasting does not cause caloric overcompensation later on - could backfire though if you’re… https://t.co/oec3gQVqVC +06/09/2018,Sports_celeb,@bengreenfield,Good food porn tonight (and why I order acorn squash at restaurants) at https://t.co/jII7jxddzy https://t.co/5M4wF1bm8c +06/09/2018,Sports_celeb,@bengreenfield,"Great new ""Bible learnin'"" podcast from Christ Church, Moscow, ID with @douglaswils - called Kirkers Read." +06/09/2018,Sports_celeb,@bengreenfield,Live downtown Spokane tomfoolery happening rightnow at https://t.co/CsMD2ZqxjF +06/09/2018,Sports_celeb,@bengreenfield,@jonwolfeb Thanks. Would up here @volstead_act +06/09/2018,Sports_celeb,@bengreenfield,"Are you a health and fitness professional? Do you want me to teach you everything I've learned about #fitness,… https://t.co/msNb6kptM3" +06/08/2018,Sports_celeb,@bengreenfield,Thinking of heading downtown Spokane tonight to grab dinner. Any new hotspots I should know of? +06/08/2018,Sports_celeb,@bengreenfield,"In this week's roundup, @kion's brand spankin' new coaching certification, DiGize essential oil blend from… https://t.co/ans8DKmHjA" +06/08/2018,Sports_celeb,@bengreenfield,Barefoot Strong: Unlock the Secrets to Movement Longevity with @Doctor_Legs - all new episode for all the barefoot… https://t.co/74YjliSlDu +06/08/2018,Sports_celeb,@bengreenfield,"@LianneLlw Looks interesting, but haven't tried it... thanks for sharing!" +06/08/2018,Sports_celeb,@bengreenfield,@ironblood247 https://t.co/zpv2OdCNyn Can you call this into the podcast? Thanks man! +06/08/2018,Sports_celeb,@bengreenfield,Go here to sign up for more info or reserve a spot for European Detox Retreat @Robyn_Openshaw and I are planning! https://t.co/ZPBIJ8wuNl +06/08/2018,Sports_celeb,@bengreenfield,@Roodywasoffside Check out the @whoop: https://t.co/zm95jLYHs6 +06/08/2018,Sports_celeb,@bengreenfield,"@DrunkinYogi @tb12 It is somewhat close to that, yes! Similar idea of ""red light at night"", with some added detox b… https://t.co/QQ3iqamSst" +06/08/2018,Sports_celeb,@bengreenfield,"@ironblood247 Hey there, this is a great question for the podcast! Would you mind calling it in? https://t.co/ijk3kIITfE" +06/08/2018,Sports_celeb,@bengreenfield,Two Things the Apple Watch Gets Wrong https://t.co/6Ng1cZWaHh +06/08/2018,Sports_celeb,@bengreenfield,"Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #19: Faye Stenning, Spartan P… https://t.co/siX60dm6Sz" +06/08/2018,Sports_celeb,@bengreenfield,I just posted the full recipe for this wild caught salmon with crispy skin to https://t.co/jII7jxddzy https://t.co/eaulufJlPb +06/07/2018,Sports_celeb,@bengreenfield,"@Mindpump @spartanwim I'm like a little blue pill for your ears, I guess." +06/07/2018,Sports_celeb,@bengreenfield,"Nitrate supplementation how-to, the misunderstood noodle, eggcellent eggs and more! Brand new https://t.co/eGdjPMjkde" +06/07/2018,Sports_celeb,@bengreenfield,Be Barefoot Strong and Unlock the Secrets to Movement Longevity with @Doctor_Legs - new today on the podcast. https://t.co/7UKgtHB2So +06/07/2018,Sports_celeb,@bengreenfield,RT @Doctor_Legs: Listen to Dr Emily on Ben Greenfield's Podcast https://t.co/RSNwe0W1AV +06/07/2018,Sports_celeb,@bengreenfield,"Submit your Qs about health coaching- whether you want to be one, want to be a better one, or want to find one. I'l… https://t.co/GJPeGFh0eT" +06/07/2018,Sports_celeb,@bengreenfield,Submit ANY of your Qs about health & fitness coaching for me to answer on my upcoming Q&A episode- whether you want… https://t.co/5g8ETJZZjA +06/05/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 ...Telomeres are found at the ends of linear chromosomes in most organisms and their main ro… https://t.co/fuykO7jcev +06/05/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 From TeloYears: Mitochondria have circular genomes (like bacteria) and do not have telomeric… https://t.co/gPedEizXh9 +06/05/2018,Sports_celeb,@bengreenfield,"@CwCoady @joerogan 100-200g, all at night. Lower side of that on less active days." +06/05/2018,Sports_celeb,@bengreenfield,@RBaindourov Try posting in the Kion community. https://t.co/OeI9ZM5lZy +06/05/2018,Sports_celeb,@bengreenfield,@Jcumpian Check out @XeroShoes: https://t.co/Jl3Ao8WXb9 +06/29/2018,Sports_celeb,@lancearmstrong,And a suitcase full of Z Cavariccis! https://t.co/pbKQL4bAOf +06/29/2018,Sports_celeb,@lancearmstrong,@Ronan_McGowan @jbhager @LeTour THEMOVE! +06/29/2018,Sports_celeb,@lancearmstrong,Going to be a long 3 weeks for them https://t.co/cT4IRFNrwR +06/29/2018,Sports_celeb,@lancearmstrong,"Happy birthday @ghincapie! My brother, it’s been a long and winding road since I first pulled the IROC-Z (aka White… https://t.co/oj77cujOFD" +06/27/2018,Sports_celeb,@lancearmstrong,One leaves and two come back! It’s been a whirlwind coupla days - started out early yesterday morning outta Austin… https://t.co/2yCp1kibZa +06/27/2018,Sports_celeb,@lancearmstrong,One leaves and two come back! It’s been a whirlwind coupla days - started out early yesterday morning outta Austin… https://t.co/rJpQdeTjcY +06/25/2018,Sports_celeb,@lancearmstrong,So great to finally connect with this absolute animal @chambers__mike. Dude hammers!! The fact that this connection… https://t.co/g9Y8K0qhKi +06/18/2018,Sports_celeb,@lancearmstrong,Post marathon last Saturday. The madman… https://t.co/JHsQNHEbl5 +06/16/2018,Sports_celeb,@lancearmstrong,Well that hurt like hell! Months ago the madman… https://t.co/GJlZrUEnMC +06/13/2018,Sports_celeb,@lancearmstrong,Called an audible on my morning ride and took… https://t.co/VZJFx8fiQx +06/13/2018,Sports_celeb,@lancearmstrong,Heading up to Leadville this weekend to support @byrnes22 as he leads the Go-Hards at the Leadville Marathon. More… https://t.co/MKSnzsF6p3 +06/12/2018,Sports_celeb,@lancearmstrong,Happy for my friend Coach Tommy Harmon being front and center enjoying the recent success @TexasBaseball. He helped… https://t.co/A2uj9Jj0sa +06/08/2018,Sports_celeb,@lancearmstrong,Always fun sūffering with this crazy… https://t.co/7Qsi6YGGTW +06/05/2018,Sports_celeb,@lancearmstrong,"Wait, where’d the years go? This little man… https://t.co/zkjGrRWyrb" +05/26/2018,Sports_celeb,@lancearmstrong,On ✈️ & following @giroditalia via live reports. Why is it “sad” when one of the favorites gets dropped? It’s not s… https://t.co/OwxumgAqIB +05/25/2018,Sports_celeb,@lancearmstrong,Banged out a quick THEMOVE podcast to discuss all from Stage 19 at the @giroditalia https://t.co/1uh1rT27wk https://t.co/Eky70RHt9H +05/24/2018,Sports_celeb,@lancearmstrong,Just got the awful news that my friend Shay Rishoni passed from ALS. He fought a brave fight and will be sorely mis… https://t.co/XyV4W8fTIX +05/10/2018,Sports_celeb,@lancearmstrong,"Well well, look who turns 10 today.. Happy 10th @mellowjohnnys and… https://t.co/vdLItyutXz" +05/10/2018,Sports_celeb,@lancearmstrong,Todd Sadow and his entire crew @Epicrides continue the great work. Just added @OzTrailsNWA. Can’t wait! https://t.co/4ZtmBFh4D1 +05/09/2018,Sports_celeb,@lancearmstrong,So I’m heading up to @oztrailsnwa this weekend to ride in the… https://t.co/8C7xk4GMuU +05/08/2018,Sports_celeb,@lancearmstrong,Back in Aūstin and back on the bike. We often talk about “road… https://t.co/eqtTDCYYw1 +05/07/2018,Sports_celeb,@lancearmstrong,That's a wrap from Israel and the @giroditalia THEMOVE is up now. https://t.co/Ut2b8SK8o6 https://t.co/VRSCWb2neR +05/05/2018,Sports_celeb,@lancearmstrong,Not sure @jbhager is impressed but the latest THEMOVE Giro podcast is up https://t.co/tqVoIS0cgQ https://t.co/gRcWgsD5yQ +04/28/2018,Sports_celeb,@lancearmstrong,Thanks grace.armstrongg for inviting me to ride with you this morning!! Love ya G!… https://t.co/q3onDxCXRW +04/28/2018,Sports_celeb,@lancearmstrong,No need. Anything for @Luke_armstrong7 and anything for @RiceUniversity/@RiceFootball https://t.co/HNVbVY4b8S +04/23/2018,Sports_celeb,@lancearmstrong,We close out the Classics with a @LiegeBastogneL Stages Podcast. We talk about the effort by @BobJungels my settlem… https://t.co/ap3lCKuLTM +04/21/2018,Sports_celeb,@lancearmstrong,"Ok but hang on a minute. I take this shit very seriously so I need to point out 2 very serious issues. One, the spe… https://t.co/nU3Gnn6gke" +04/21/2018,Sports_celeb,@lancearmstrong,In Houston for the riceowlsfootball Blue/Gray game with the big man luke_armstrong65 and his mom… https://t.co/Ho7Qe5JHz8 +04/19/2018,Sports_celeb,@lancearmstrong,FORWARD https://t.co/3iL7WAdSPY +04/16/2018,Sports_celeb,@lancearmstrong,"New Stages for Amstel Gold is up. We talk about my history with the race including 98 World Championships, the dyn… https://t.co/mZ9pmEmcuy" +04/15/2018,Sports_celeb,@lancearmstrong,Thanks to everyone who came out and braved the wind at the WEDŪ Texas HŪNDRED! Including this… https://t.co/XadylsYJUb +04/14/2018,Sports_celeb,@lancearmstrong,RT @Andylanger: The just-posted new edition of @TexasMonthly’s National Podcast Of Texas features my interview w/ @lancearmstrong. We talk… +04/12/2018,Sports_celeb,@lancearmstrong,"Had a great jam session last night with the EO chapter here in Austin. Talked about the past,… https://t.co/Ah0KlNPr0W" +04/11/2018,Sports_celeb,@lancearmstrong,"Woot woot! Hey riceuniversity, here comes your next student/athlete luke_armstrong65 ! So… https://t.co/mxnw99Axv0" +04/10/2018,Sports_celeb,@lancearmstrong,Truly loved my time in Adelaide. Great piece about a great city! https://t.co/nFkxAlHEZy +04/08/2018,Sports_celeb,@lancearmstrong,"Truly awful news. Words can’t express my deepest condolences to Michael Goolaerts’ family, teammates, and friends.… https://t.co/rfU4r1igbc" +04/08/2018,Sports_celeb,@lancearmstrong,Took Stages on the road to @hoteldomestique to talk Paris-Roubaix with @ghincapie download here… https://t.co/Mc9KNUuV7U +04/08/2018,Sports_celeb,@lancearmstrong,Paris Roubaix viewing party @hoteldomestique. Recording an episode of STAGES with @ghincapie and… https://t.co/i0xK7Zf9eg +04/07/2018,Sports_celeb,@lancearmstrong,One week to go til the @wedusport Texas HŪNDRED! Come join @ghincapie and I for the prettiest… https://t.co/67hBPioznG +04/05/2018,Sports_celeb,@lancearmstrong,"If you can't fly then run, if you can't run then walk, if you can't walk then crawl, but… https://t.co/uhz46fLB6b" +04/04/2018,Sports_celeb,@lancearmstrong,It’s actually now really OFFICIAL. Look who’s gonna be a riceowlsfootball !! Congrats… https://t.co/r5InVUuKaY +04/01/2018,Sports_celeb,@lancearmstrong,Watching rondevanvlaanderenofficial with @jbhager - 70k to go. Looking forward to an exciting… https://t.co/wFR7Io76cI +03/29/2018,Sports_celeb,@lancearmstrong,@theamandabatty TMI homey +03/29/2018,Sports_celeb,@lancearmstrong,The lastest Forward is up w @michaelshermer I had to do my homework for this one. Shermer was in town to promote hi… https://t.co/ci22FfAuTy +03/28/2018,Sports_celeb,@lancearmstrong,My old friend @garynewkirk is digitizing his entire catalogue and sent me along some of these… https://t.co/LAxVxxZGpB +03/26/2018,Sports_celeb,@lancearmstrong,Thanks pgatour for having us down to the dellmatchplay! Inspiring watching these guys play in… https://t.co/yWiKyuGWIG +03/19/2018,Sports_celeb,@lancearmstrong,"RT @MayorAdler: Be aware of your surroundings. Pay close attention to any suspicious items whether it be a package, a bag, a backpack, or a…" +03/19/2018,Sports_celeb,@lancearmstrong,The YUM alert just went off! Back in #ATX to find the new @honeystinger snack bar has arrived!… https://t.co/ZLx3IFibCA +03/17/2018,Sports_celeb,@lancearmstrong,"Solid 2018 Spring Break crew keeping us young and laughing... @ San José del Cabo, Baja… https://t.co/siLOudIfvq" +03/14/2018,Sports_celeb,@lancearmstrong,"Morning jog crew. @ New York, New York https://t.co/Txcw5jYpGJ" +03/13/2018,Sports_celeb,@lancearmstrong,"Spring Break 2018! Having the best time with these crazy Armstrong kids. And while I got ya, THE… https://t.co/EC9jHcLfhb" +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus My objection was that Schumi was exclusive to our team. He wasn’t. +03/12/2018,Sports_celeb,@lancearmstrong,"@TedNordhaus I would know. And you wouldn’t is all I’m saying but you’re stating something as fact. One tidbit, pre… https://t.co/XFZ3QPxoYl" +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus Also not true. Not sure what you’re going on about wrt cycling but before preaching too much I might do some fact checking +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus High 40’s? You sure about that? +03/08/2018,Sports_celeb,@lancearmstrong,"With my man Lucca Hincapie, future World Champ, aka ‘il iridato’. Hence the tee. For those who… https://t.co/3kjg5iOGpl" +03/08/2018,Sports_celeb,@lancearmstrong,@fcancer Cc @ScottRogowsky +03/08/2018,Sports_celeb,@lancearmstrong,Last day of riding (for me at least) at another successful @hoteldomestique “training camp”.… https://t.co/FlWaWtvD1K +03/06/2018,Sports_celeb,@lancearmstrong,We did a live Stages podcast back in 24 Hour town. We will post full show tomorrow. Sneak peek of the episode with… https://t.co/OVPAbOszEZ +03/05/2018,Sports_celeb,@lancearmstrong,"Latest Forward is up with @IDEAschools Founder Tom Torkelson. We talk education, hiring teachers and IDEA's 100% co… https://t.co/sUGA8POaP0" +03/02/2018,Sports_celeb,@lancearmstrong,"Great to hang with my old buddy steveaoki last night. This was our second Aoki jump and damn, I… https://t.co/bNLAKb32Uh" +03/01/2018,Sports_celeb,@lancearmstrong,"I know, I know. I look a lot better in the new @wedusport kit but let’s throw @ghincapie some love. This is a LIMIT… https://t.co/qFOwshAoli" +03/01/2018,Sports_celeb,@lancearmstrong,Incredible jam session @onnit today. My body has been feeling a little beat up lately (tons of… https://t.co/52LHwCv7t2 +02/28/2018,Sports_celeb,@lancearmstrong,New Stages is live with the 2018 season preview. @jbhager and I discuss what races we will be covering this year.… https://t.co/FXKrbDBuzv +02/28/2018,Sports_celeb,@lancearmstrong,Congrats to my friend and the uber talented @RyanHoliday on his new book CONSPIRACY. Great book reviews are hard to… https://t.co/d2MW4OHQ9J +02/28/2018,Sports_celeb,@lancearmstrong,.@jbhager and I return with a new Stages tomorrow. We preview the 2018 cycling season and some races we will cover. https://t.co/zrxb68wM0v +02/27/2018,Sports_celeb,@lancearmstrong,Our 24 Hours in the Old Pueblo kit is up for sale. @hincapiesports kit in both men's and women's. It will be for sa… https://t.co/sfmBLJsyuQ +02/26/2018,Sports_celeb,@lancearmstrong,New Forward is up with @miakhalifa Thank you for agreeing to discuss parts of your life that you have never done pu… https://t.co/cpJv2DEhjK +02/23/2018,Sports_celeb,@lancearmstrong,New Forward with @miakhalifa premieres on Monday. Here's a clip: https://t.co/bm4Xqi5lyE +02/23/2018,Sports_celeb,@lancearmstrong,Don’t usually tweet out press I’ve done but I thoroughly enjoyed jamming with Steve and Joe from @TheOuterLine. Sma… https://t.co/BgH0vqHTe7 +02/22/2018,Sports_celeb,@lancearmstrong,Hey y’all - Happy Margarita Day!! I get asked almost daily on how to make the world famous… https://t.co/HDUJqL9sv7 +02/20/2018,Sports_celeb,@lancearmstrong,@Unseendoc Just watched UNSEEN on plane to nyc. Speechless. Well done. +02/20/2018,Sports_celeb,@lancearmstrong,Special opportunity to tour San Quentin and talk with the guys from @TLM We taped a Forward after the tour. We talk… https://t.co/5XCNLg74Fl +02/20/2018,Sports_celeb,@lancearmstrong,"ATTENTION ALL MY FELLOW CYCLISTS 🚴‍♂️ . +••• +The sport we are so passionate about, dedicating… https://t.co/W5PXVgzUCl" +02/18/2018,Sports_celeb,@lancearmstrong,Love breaking it down with @dylancasey and @ghincapie ! @ 24 Hour Town https://t.co/zORIbIsBel +02/17/2018,Sports_celeb,@lancearmstrong,Here we go again for another @epicrides #24hop! So the pre ride was probably not the best idea… https://t.co/J434ydKxsh +02/16/2018,Sports_celeb,@lancearmstrong,"Well, after promising ourselves we’d NEVER do it again, here we go again for another @epicrides… https://t.co/gee8Rq7MB6" +02/16/2018,Sports_celeb,@lancearmstrong,A few weeks ago I was fortunate to get a tour of San Quentin prison and talk to the guys at @TLM After the tour I t… https://t.co/cENBkT4dvy +02/13/2018,Sports_celeb,@lancearmstrong,Watching the @NBCOlympics and hearing @MillerBode call the alpine skiing. He told me here ⬇️ he was gonna call it a… https://t.co/i15qysg2MU +02/12/2018,Sports_celeb,@lancearmstrong,"The Forward is up with @vanessagrigor Topical discussion about MeToo, her new book Blurred Lines and sexual consent… https://t.co/7djJCNQRDT" +02/12/2018,Sports_celeb,@lancearmstrong,In the past 10 years I’ve seen @mellowjohnnys schwag in lots of interesting places. The hits keep comin’.. https://t.co/rDBnXlV9dr +02/12/2018,Sports_celeb,@lancearmstrong,Happy birthday to the best mom ever!! Spent the weekend up in my ol’ stomping grounds.… https://t.co/wdpj9xOumh +02/09/2018,Sports_celeb,@lancearmstrong,"Coming Monday on The Forward @vanessagrigor We talk about her new book Blurred Lines: Rethinking Sex, Power & Conse… https://t.co/3JVWcVRJTv" +02/05/2018,Sports_celeb,@lancearmstrong,"A new Forward is up with @perryfarrell We talk about the time Clear Channel killed a @lollapalooza comeback, his tr… https://t.co/O2RiKn6nmm" +02/03/2018,Sports_celeb,@lancearmstrong,Coming soon a collab between @mellowjohnnys and @rapha. #Raphacustom https://t.co/GlKJigJwQ9 +02/03/2018,Sports_celeb,@lancearmstrong,Ditto! He was one of the most influential figures in American cycling. Heart of gold and will be sorely missed. RIP… https://t.co/9bHpKISy7i +02/02/2018,Sports_celeb,@lancearmstrong,Up next on The Forward is @perryfarrell Full episode comes out Monday. Thanks Perry. #theforward https://t.co/Fx3Vm5DiD9 +02/02/2018,Sports_celeb,@lancearmstrong,"Got absolutely destroyed by @john_wolf in the gym yesterday. Shoulda slept in. Nah, hell no.… https://t.co/mnhugBT5e2" +01/30/2018,Sports_celeb,@lancearmstrong,"Indeed we did! And hey, at least @WillieNelson picked up! https://t.co/zodpHYe2IA" +01/30/2018,Sports_celeb,@lancearmstrong,😂😂 https://t.co/1V0a4qZLWc +01/30/2018,Sports_celeb,@lancearmstrong,RT @PhilKeoghan: By @The_Demand_Film #Awardwinning #documentary #LeRide is back in #US theaters @CityofSaratoga #SanJose #CA #Denver @highl… +01/30/2018,Sports_celeb,@lancearmstrong,"Part two with @bryanfogel is up. We talk about China's ability to skirt the doping testing in Beijing, WADA's respo… https://t.co/10Upj4Cm2r" +01/29/2018,Sports_celeb,@lancearmstrong,"Part one of my Forward chat with @bryanfogel is up. We chat about his Oscar nominated film @IcarusNetflix, how he g… https://t.co/6QGE9R6f3L" +01/29/2018,Sports_celeb,@lancearmstrong,For those of y’all who think golf is stuffy and boring. Check this shit out - they are about to televise a LIVE threesome on @GolfChannel! +01/28/2018,Sports_celeb,@lancearmstrong,None taken AB! https://t.co/iS0ofaF4Pj +01/28/2018,Sports_celeb,@lancearmstrong,Thanks for stopping by! https://t.co/FufiSm4vSh +01/27/2018,Sports_celeb,@lancearmstrong,.@IcarusNetflix director @bryanfogel joins me Monday on The Forward. Fascinating story that we had to break into tw… https://t.co/aBYJKh35vQ +01/26/2018,Sports_celeb,@lancearmstrong,Thx @joerogan for having us. That shit was hilarious! @ Bass Concert Hall https://t.co/A5b0Ckgr3Y +01/24/2018,Sports_celeb,@lancearmstrong,RT @washingtonpost: Perspective: Cut the nonsense. Roger Clemens and Barry Bonds should be in the Hall of Fame. https://t.co/jFjkp73vfL +01/22/2018,Sports_celeb,@lancearmstrong,"My conversation with @aspenartmuseum CEO @heidizuckerman is up. We talk access to the arts, their decision to stic… https://t.co/vHi44WJrHb" +01/20/2018,Sports_celeb,@lancearmstrong,Incredible news! One of the best races of the year just got better. https://t.co/wFDn16Hz3O +01/20/2018,Sports_celeb,@lancearmstrong,@dylancasey 👍🏻👍🏻 +01/18/2018,Sports_celeb,@lancearmstrong,Classy gesture by @CoachBeardTTU and Tech. https://t.co/8xfqJ6dOvz +01/17/2018,Sports_celeb,@lancearmstrong,Hell to the Yeah. You’re a good dude JR. Pointers - no short socks and no social posts making other dudes looking b… https://t.co/2JpGvwX6F4 +01/17/2018,Sports_celeb,@lancearmstrong,RT @PETMpodcast: For y’all who are suffering from #NASCAR #NOD there’s content out there. Dale Jr was on @lancearmstrong podcast “The Forwa… +01/17/2018,Sports_celeb,@lancearmstrong,Thx J! We had fun doing the show. This is to be continued! https://t.co/JedzwXO9W1 +01/16/2018,Sports_celeb,@lancearmstrong,Lots of requests for this one. Happy to finally get @DaleJr on The Forward. We talk going from the car to the tv bo… https://t.co/OKgaYGLB0Y +01/14/2018,Sports_celeb,@lancearmstrong,Thanks Mary! https://t.co/JFW3hOzmHF +01/13/2018,Sports_celeb,@lancearmstrong,Thanks @DaleJr for coming on The Forward. Full episode on Monday. https://t.co/Elc1B8XQIB +01/10/2018,Sports_celeb,@lancearmstrong,The plan for 2018 is to video all the Forward and Stages podcasts. Here is our episode with @MillerBode https://t.co/uy5AQaGIhi +01/09/2018,Sports_celeb,@lancearmstrong,"Luke, so proud of you! I love you buddy! https://t.co/W6O2gM9cym" +01/09/2018,Sports_celeb,@lancearmstrong,Absolutely. There will be a 2 part series that’s my conversation with @bryanfogel. It will post on the STAGES chann… https://t.co/QclpG6iJ4Y +01/08/2018,Sports_celeb,@lancearmstrong,The Forward is back for 2018 and we are kicking it off with 6x Olympic medalist @MillerBode Bode was in Aspen over… https://t.co/0DHIz4VAFf +01/08/2018,Sports_celeb,@lancearmstrong,"To Isabelle, Grace, and Olivia - please watch this one thing. Love, Dad. https://t.co/cdUSx2cD5I" +01/06/2018,Sports_celeb,@lancearmstrong,Great piece Michael! And thanks Carolyn & Les for helping to create one of Austin’s crown jewels! https://t.co/ZuwNwmDofW +01/06/2018,Sports_celeb,@lancearmstrong,So there was this one night when @janesaddiction was sound checking (and covering @tompetty) in… https://t.co/TOP59WVg5T +01/06/2018,Sports_celeb,@lancearmstrong,"Tomorrow, I will be hosting a special reception and screening for the documentary @IcarusNetflix at @1Hotels in Bro… https://t.co/G1wQO2FeVy" +01/05/2018,Sports_celeb,@lancearmstrong,Thanks @jbhager and thanks to all that tuned in. Looking Forward to 2018 https://t.co/uAj8xdW4Pz +01/03/2018,Sports_celeb,@lancearmstrong,RT @THR: Exclusive: Lance Armstrong will host a reception for doping doc 'Icarus' https://t.co/XTh3NAj42s https://t.co/ePTMpgHDbE +01/02/2018,Sports_celeb,@lancearmstrong,"Dude, you ok? https://t.co/YEtfp9Fr9V" +12/27/2017,Sports_celeb,@lancearmstrong,Good jam session with @aubreymarcus today @onnit. Post Xmas and great to be back in gym. It’s… https://t.co/0mELMh9U0f +12/26/2017,Sports_celeb,@lancearmstrong,"After being asked roughly a 1000 times if I’ve seen @IcarusNetflix yet, I finally sat down to check it out. Holy he… https://t.co/1KVg6jrYdU" +12/25/2017,Sports_celeb,@lancearmstrong,Merry Christmas and Happy Holidays from all of us to all of you! Looking FORWARD to 2018! https://t.co/ncmCgbf1A6 +12/24/2017,Sports_celeb,@lancearmstrong,.@jbhager and I brought back a long time Austin tradition called Bikes for Kids. We were out yesterday distributing… https://t.co/7Jvv3e1mAB +12/22/2017,Sports_celeb,@lancearmstrong,Thanks Jeff! I’m looking forward to what 2018 brings to the show. https://t.co/Vp2Skk0whl +12/21/2017,Sports_celeb,@lancearmstrong,Research! https://t.co/FMflpox7QR +12/21/2017,Sports_celeb,@lancearmstrong,@SecondCaptains @ejwejw Meanwhile you fucking idiots have no idea what it’s like in the trenches do ya? +12/20/2017,Sports_celeb,@lancearmstrong,"RT @bethgmckenzie: Wow- huge change to the @ironmantri pro qualification for Kona in 2019. Specifically addresses equality, longevity, inj…" +12/20/2017,Sports_celeb,@lancearmstrong,"Since the Chris Froome news broke, I have heard from numerous media outlets requesting a comment. @wedusport CEO… https://t.co/XfafJPhftV" +12/20/2017,Sports_celeb,@lancearmstrong,@chontheroad @Livestrong4BAD Yep +12/20/2017,Sports_celeb,@lancearmstrong,Congrats Braden! https://t.co/EswDy9YPSl +12/20/2017,Sports_celeb,@lancearmstrong,Congrats @nakiawatson04 ! https://t.co/CPoQid2S28 +12/20/2017,Sports_celeb,@lancearmstrong,@jess @tdrobbo Congrats!! +12/20/2017,Sports_celeb,@lancearmstrong,We have a few bikes left for the Bikes for Kids drive. Nominate someone in the Austin area. Link here https://t.co/O6GysHbKtJ +12/20/2017,Sports_celeb,@lancearmstrong,I can’t wait to be 63 years old and give moronic interviews like this. Not. I also can’t wait for dipshit outlets l… https://t.co/05nriJOuQe +12/20/2017,Sports_celeb,@lancearmstrong,Our @wedusport gift guide picks for bike tires and a bike rack from @continentaltire & @SeaSucker full video… https://t.co/bz5jvKkliC +12/20/2017,Sports_celeb,@lancearmstrong,Yes. Did an episode of STAGES with @dylancasey on this. Will post ASAP. https://t.co/8HdnWKto68 +12/19/2017,Sports_celeb,@lancearmstrong,@matthewcbeaudin @TheNational @kexp Had them down for one and done but they just keep getting better. And better. And better. +12/18/2017,Sports_celeb,@lancearmstrong,Gift guide from @wedusport with our apparel picks from @hincapiesports @GORETEXna & @GiordanaCycling… https://t.co/kfbOoNWK9e +12/18/2017,Sports_celeb,@lancearmstrong,Great news! https://t.co/7L3EWaGrEL +12/18/2017,Sports_celeb,@lancearmstrong,"Hilarious conversation with comedian @natebargatze for the latest #Forward episode. We talked about Matt Lauer, Jay… https://t.co/MN4aaHLGHC" +12/17/2017,Sports_celeb,@lancearmstrong,A little sneak peek of tomorrow's Forward. My guest is comedian @natebargatze. He shares his thoughts on Vanderbilt… https://t.co/dxNQNcbszv +12/17/2017,Sports_celeb,@lancearmstrong,We put together some Holiday gift guide videos of products we are digging. Here's the first one about gadgets from… https://t.co/yfzFCcLfIQ +12/17/2017,Sports_celeb,@lancearmstrong,Well the @Westlake_Nation run has come to an end. Our Chaps lost 14 - 6 to Cy Fair @NRGParkFan… https://t.co/QGdZsrZGNU +12/16/2017,Sports_celeb,@lancearmstrong,DaveSTRONG!! https://t.co/fNBjMlXR24 +12/16/2017,Sports_celeb,@lancearmstrong,Thanks @jrart for hooking us up with your killer collab with @osgemeos and @pharrell. So dope.… https://t.co/YCI3DPVxU0 +12/15/2017,Sports_celeb,@lancearmstrong,Hey Austin @jbhager and I are bringing back Bikes for Kids this year. @scottsports has donated 20 bikes for us to d… https://t.co/wt1vWiGFE1 +12/14/2017,Sports_celeb,@lancearmstrong,"RT @sporza_koers: .@lancearmstrong komt als gast naar de Ronde van Vlaanderen + +https://t.co/r9oOPmjORP https://t.co/cXgN5KXtgu" +12/14/2017,Sports_celeb,@lancearmstrong,President Biden! https://t.co/ApitT2Oqp0 +12/13/2017,Sports_celeb,@lancearmstrong,Way to go Alabama! Let’s @BoBikesBama !! +12/11/2017,Sports_celeb,@lancearmstrong,Had a fascinating conversation with @Dakota_Meyer for the latest Forward episode. We talked about his @USMC servic… https://t.co/Zdp9zjhcgL +12/10/2017,Sports_celeb,@lancearmstrong,RT @LAontheRoad: Video homework for tomorrow's @lancearmstrong Forward episode https://t.co/QTecHBOGlF +12/10/2017,Sports_celeb,@lancearmstrong,En route to the Alamodome to watch @westlakenation vs Cibolo Steele - gonna be a great game! Doing some studying on… https://t.co/Q7BsybVEcy +12/08/2017,Sports_celeb,@lancearmstrong,I’ve been lovin’ getting back in the gym and wanted to especially thank @john_wolf and the whole… https://t.co/aufYc0Z32J +12/07/2017,Sports_celeb,@lancearmstrong,WTF?! Is it really snowing here in Austin? +12/07/2017,Sports_celeb,@lancearmstrong,Thanks to Eric over carved for sending over these cool WEDŪ and THE FORWARD PODCAST cases for my… https://t.co/paC98ZKUcm +12/06/2017,Sports_celeb,@lancearmstrong,Thanks on all fronts! See you in April. #WEDŪ https://t.co/lNO8Qsezf2 +12/06/2017,Sports_celeb,@lancearmstrong,RT @LizKreutz: Team #WEDŪ meeting at the HQ with @lancearmstrong @dylancasey @LAontheRoad @davebolch and in the computer @jbhager and @Nick… +12/05/2017,Sports_celeb,@lancearmstrong,Bi-weekly team meeting here wedusport HQ. Discussing an upcoming STAGES holiday gift guide… https://t.co/OA15XRYxKD +12/05/2017,Sports_celeb,@lancearmstrong,@Laura_Weislo @mrconde I don’t “workout” so I guess that’s the main difference +12/04/2017,Sports_celeb,@lancearmstrong,"Back with a new Forward with entrepreneur @noahkagan We talk about his employment at @facebook, starting his own co… https://t.co/NcCcMcaA30" +12/04/2017,Sports_celeb,@lancearmstrong,@mrconde I was a bit skeptical when they were first announced but the Apple Watch is incredible +12/04/2017,Sports_celeb,@lancearmstrong,"LMFAO! 😂😂 @ Old Enfield, Austin https://t.co/NGhFxOYNov" +12/04/2017,Sports_celeb,@lancearmstrong,We buy our Christmas 🎄 every year at the same spot. It’s just around the corner from our home… https://t.co/vcNX92Pq6q +12/04/2017,Sports_celeb,@lancearmstrong,We buy our Christmas 🎄 every year at the same spot. It’s just around the corner from our home… https://t.co/DDX1F0IW0V +12/02/2017,Sports_celeb,@lancearmstrong,"Immensely proud of my son Luke. What a fine young man he’s turned in to! Give it a listen, I think y’all will agree! https://t.co/YojQo8ZsPA" +12/02/2017,Sports_celeb,@lancearmstrong,Came down to South Texas to watch @luke_armstrong65 and his @westlakenation teammates win another playoff game. 70-… https://t.co/3FEz5fvdER +12/02/2017,Sports_celeb,@lancearmstrong,"""Twitter is the playground for fucking idiots"". And just like that, Noel Gallagher goes straight to the top of my w… https://t.co/oRm4zxs7qk" +12/01/2017,Sports_celeb,@lancearmstrong,Congrats Chief although Austin misses you! https://t.co/lJNDewPwKR +11/30/2017,Sports_celeb,@lancearmstrong,Morning run. Never forget. @ 9/11 Tribute Museum https://t.co/KX4syiORC3 +11/28/2017,Sports_celeb,@lancearmstrong,@eskinner @DavidWalshST Pay for journalists like this? https://t.co/lgdncuLdLq +11/27/2017,Sports_celeb,@lancearmstrong,@tobynunn @Onnit @AubreyMarcus So Dope Yo +11/24/2017,Sports_celeb,@lancearmstrong,Woot woot!! @Westlake_Nation on to the next round after beating Smithson Valley 51-31!! Go… https://t.co/HGbL3hJlRZ +11/23/2017,Sports_celeb,@lancearmstrong,"RT @TRS_tri: ""If we git that $150 million from @lancearmstrong, we all getting' a raise!"" https://t.co/r02ebLxjbf" +11/22/2017,Sports_celeb,@lancearmstrong,@mryerson I’m partial the ones @ZTejas. Eaten em for 25 yrs. +11/21/2017,Sports_celeb,@lancearmstrong,New @wedusport gloves by @jtracingusa Register for the HUNDRED by Friday to be eligible to win. Check out the video https://t.co/sQmF0Qm3Bz +11/20/2017,Sports_celeb,@lancearmstrong,RT @LAontheRoad: New feature starts on The Forward tomorrow. Send us your Survivor Stories and we will highlight a story of the week on eac… +11/20/2017,Sports_celeb,@lancearmstrong,Our girls are all grown up! Happy sweet 16 to isabelle.armstrong and grace.armstrongg! I’m so… https://t.co/JcvaG94Mgt +11/20/2017,Sports_celeb,@lancearmstrong,"Have @JoeNickPatoski on The Forward this week. Talk Dallas Cowboys, Selena, Stevie Ray Vaughan and Public Radio.… https://t.co/W1eCymgXHx" +11/16/2017,Sports_celeb,@lancearmstrong,2018 is looking to be an exciting year for WEDŪ. Thanks for blowing us up on just what the hell… https://t.co/SusW2V4i5X +11/14/2017,Sports_celeb,@lancearmstrong,"@HurleyG @UCI_cycling @DLappartient just fyi, he'd be ineligible too. Just sayin'." +11/14/2017,Sports_celeb,@lancearmstrong,"URGENT - cycling is going to need a shitload of people ASAP to manage teams, coach riders, drive in the caravan, ma… https://t.co/speLjMITVy" +11/13/2017,Sports_celeb,@lancearmstrong,"New Forward is up w @turkpipkin We talk @NobelityProject, opening for Rodney Dangerfield and his Book of the every… https://t.co/vNgpZkNKja" +11/11/2017,Sports_celeb,@lancearmstrong,So proud of my son @Luke_armstrong7 and the entire Westlake team. Undefeated! Bring on the playoffs and Go Chaps! https://t.co/zShnDyn1nx +11/11/2017,Sports_celeb,@lancearmstrong,"@Vincent_Nortier 2 thoughts - it’s depressing, and quite frankly pitiful, to watch someone be so desperate for atte… https://t.co/W0IFKnk11R" +11/10/2017,Sports_celeb,@lancearmstrong,"I️ never did like driving my car out to ride my bike... @ Bentonville, Arkansas https://t.co/XE07cs0J0d" +11/08/2017,Sports_celeb,@lancearmstrong,Sat down with my good buddy @AubreyMarcus for HIS podcast. Fantastic conversation that I think you will enjoy… https://t.co/MWq9Wplxjn +11/06/2017,Sports_celeb,@lancearmstrong,Forward is up w @PhilKeoghan of @AmazingRaceCBS We talk his film Le Ride. screening on 11/9 https://t.co/Lc8NbekAWC… https://t.co/S50JqWhSoh +11/04/2017,Sports_celeb,@lancearmstrong,"Jumped on the other side of the mic with @WheelerWalkerJr Talked music, Cancer, Willie and Merle.… https://t.co/XLVNgAMpRd" +11/02/2017,Sports_celeb,@lancearmstrong,The @mellowjohnnys Cycling Club enrollment is now open. Details here https://t.co/JKs47HZSCb +11/02/2017,Sports_celeb,@lancearmstrong,Saturday I’m heading to Nashville for the Brown Brothers Charity ride in honor of Chad William… https://t.co/SpgT7IDIek +10/30/2017,Sports_celeb,@lancearmstrong,"Co-founder of @GSDM @royspence is my Forward guest this week. We talk ads, lessons learned and Promised Land Projec… https://t.co/pxRgWaWX0k" +10/28/2017,Sports_celeb,@lancearmstrong,@maximus_hoggus I’m sure Chad Evans is a “fine man” +10/27/2017,Sports_celeb,@lancearmstrong,Going to screen the documentary Le Ride with @PhilKeoghan on 11/1 at @drafthouse Q&A with Phil after the film… https://t.co/p6VH8YrTlX +10/26/2017,Sports_celeb,@lancearmstrong,I’m in for a grand! https://t.co/xgxB8g3Wql +10/23/2017,Sports_celeb,@lancearmstrong,Latest Forward is up with @Larissa_Connors We talked about her being a bad ass mtn biker & a full time math teacher… https://t.co/XabmRTugwQ +10/22/2017,Sports_celeb,@lancearmstrong,@saundem Cc @jbhager - this is his biggest passion in life! +10/22/2017,Sports_celeb,@lancearmstrong,@antiraceradio2 @kristenworley @anthonyroberts Financial crimes? +10/20/2017,Sports_celeb,@lancearmstrong,Wassup Greenville?! Excited to be here for the @gfhincapie. Look forward to supporting the best… https://t.co/zkR3IdZ8jc +10/18/2017,Sports_celeb,@lancearmstrong,"@dylancasey @lan @ChristianVDV @ghincapie Y’all take the night shifts, I’ll handle the Le Mans start. Deal?" +07/02/2018,Sports_celeb,@tonyhawk,"RT @SInow: “Oh he got old. No, I was already old!” + +@Tonyhawk turned 50 this year, but he’s not slowing down: https://t.co/mCKD8yZGJ3 https…" +07/02/2018,Sports_celeb,@tonyhawk,"Where am I now? +@JacobFeldman4 spent a day with me to answer that question for @SInow. Spoiler alert: raising kids… https://t.co/cuxvGPBbiF" +06/29/2018,Sports_celeb,@tonyhawk,@CiaranDunbar @jayfrankparnell Yes +06/28/2018,Sports_celeb,@tonyhawk,Spent our day visiting a film set (rhymes with Shame Of Drones) & checking out Belfast skatepark. I sometimes get a… https://t.co/Zkdf9tYhA2 +06/26/2018,Sports_celeb,@tonyhawk,It's available on demand via @SIRIUSXM app https://t.co/B8uTISrcVQ +06/26/2018,Sports_celeb,@tonyhawk,"Thanks for the pic @ScobeyMK +(at @RAWcycles yesterday) https://t.co/yVrUOz2kC9" +06/25/2018,Sports_celeb,@tonyhawk,"RT @PBSSoCal: Legendary skateboard, and Southern California native @tonyhawk recently turned 50. To celebrate? 50 tricks that put him, and…" +06/25/2018,Sports_celeb,@tonyhawk,"Practicing my lines for Tokyo 2020 with Gav Coughlan & John O'Connor +Thanks to @RAWcycles for hosting us 🇮🇪🍀 +🎶: Wa… https://t.co/HxxI5jh2Hu" +06/22/2018,Sports_celeb,@tonyhawk,@Niall070115 You did +06/22/2018,Sports_celeb,@tonyhawk,Happy #goskateboarding [to your gate] day. You never saw this btw. https://t.co/Msw2BJxnGL +06/21/2018,Sports_celeb,@tonyhawk,@MichaelRapaport Confirmed +06/21/2018,Sports_celeb,@tonyhawk,"To clarify: my legal name is Anthony + +TSA agent checks my ID, looks at me, looks at ID, looks back at me quizzicall… https://t.co/a0pZ8HQ5GE" +06/20/2018,Sports_celeb,@tonyhawk,"Tour the new, expansive Linda Vista skatepark through the shredding of @andymacdonald: https://t.co/qy6vlI7X20 (via @RideChannel)" +06/18/2018,Sports_celeb,@tonyhawk,"""Hey dad, I ran into the gate with my car by accident. You should come out and look at it."" +Happy Dad-ambush day. https://t.co/5TJ6Poowhd" +06/16/2018,Sports_celeb,@tonyhawk,I just learned that nearly half of the US adult population has high blood pressure. Talking to your doctor & increa… https://t.co/bx37H7B3LK +06/15/2018,Sports_celeb,@tonyhawk,"Vertical pairs dancing with Shawn Hale for #birdhousesaturdays +#bladesofglory https://t.co/z8D2cvcSFM" +06/14/2018,Sports_celeb,@tonyhawk,@eddytheaxe @MonicaLewinsky I stand corrected +06/13/2018,Sports_celeb,@tonyhawk,@jeremyburge Yes! I mean... how do I see it? +06/13/2018,Sports_celeb,@tonyhawk,@airbender106 Anytime! We can plan something or apparently you can just call the airlines and ask them where I'm going next 🤨 +06/12/2018,Sports_celeb,@tonyhawk,"@BodMonAtkinson No hard feelings, I enjoyed our brief time together!" +06/12/2018,Sports_celeb,@tonyhawk,@MonicaLewinsky I haven't had that one (yet)! +06/12/2018,Sports_celeb,@tonyhawk,@BTHerman Love that place! +06/12/2018,Sports_celeb,@tonyhawk,"guy on escalator: Hey are you Tony Hawk? +me: yes +him: you still skate? +me: yes, quite often +him: but you're not tha… https://t.co/Lj1IsegSXO" +06/12/2018,Sports_celeb,@tonyhawk,"Montreal! We're coming to @jackalopefest with my vert ramp and the legendary Matt Hoffman. Info / tix: +https://t.co/3mySkPUjt3" +06/12/2018,Sports_celeb,@tonyhawk,"Thanks @colinmkennedy for digging up this clip of 6-year-old @rileyhawk666 's first kickflip +(from 411VM, Nov 1999) https://t.co/Dg2beq6DVU" +06/11/2018,Sports_celeb,@tonyhawk,"I was honored to be the 100th guest of @thenineclubshow! +Watch all 146 minutes of our deep dive interview if you da… https://t.co/pRxcaqaqa8" +06/11/2018,Sports_celeb,@tonyhawk,Detroit! I just hid my used skateboard behind the trash can in the lower right of this photo. Go now and reply with… https://t.co/gzjZ8ezq2z +06/09/2018,Sports_celeb,@tonyhawk,"Favorite moment of our Detroit demo today: Dan Mancina's warmup 50/50 (yes, he's blind) https://t.co/zzk64zQGu8" +06/08/2018,Sports_celeb,@tonyhawk,"Thank you Anthony Bourdain for your spirit of adventure, your appreciation of diverse cultures, your sense of value… https://t.co/rdJ1afCpQn" +06/07/2018,Sports_celeb,@tonyhawk,July 18 in Minneapolis: a red carpet event & benefit for the children of bmx icons Dave Mirra & Kevin Robinson. Auc… https://t.co/I7h6Qw48cl +06/06/2018,Sports_celeb,@tonyhawk,"It's so rad in The D +(@rileyhawk666 @aaronjawshomoki @SamarriaBrevard & Clive Dixon will be there too) https://t.co/mOR6haFRe4" +06/05/2018,Sports_celeb,@tonyhawk,"My brief career in ""park"" competition: Coastal Carnage, 2011 +McTwist The Shark is the new Jump The Shark https://t.co/kEfZbWFOhB" +06/03/2018,Sports_celeb,@tonyhawk,"Just left Birdseye Kitchen and I realized it might be the only place to get authentic Thai, Lao & Vietnamese cuisin… https://t.co/F3kGjqlTNF" +06/03/2018,Sports_celeb,@tonyhawk,@thephysicsgirl @rodneymullen You did great! Would love to have you explain vert skating in scientific terms... +06/03/2018,Sports_celeb,@tonyhawk,Watch @rodneymullen break down the science of an Impossible with help from @thephysicsgirl : https://t.co/7WFmrCKHhU +06/03/2018,Sports_celeb,@tonyhawk,It's a challenge raising boys in an era when @realjknoxville does his own stunts- and breaks his eye socket - for… https://t.co/vwkWYdjDxq +06/01/2018,Sports_celeb,@tonyhawk,"Happy 50th to the incomparable Mark Gonzales, a true pioneer of modern skating. Here we are a couple days ago in NY… https://t.co/dDvQhE8bUz" +06/01/2018,Sports_celeb,@tonyhawk,Detroit! Come watch this crew rip on June 9 while I attempt to rekindle my street skills. Thanks to Library Street… https://t.co/qd0KwgNxhG +05/31/2018,Sports_celeb,@tonyhawk,"Caught up with @nealthompson to share stories about the challenges of raising ""free-thinking"" boys who love skating… https://t.co/UCcP24c59e" +05/30/2018,Sports_celeb,@tonyhawk,@MaddieMaeDavis @RagebertVargas I was also joking. I'm old and I embrace it. But how much you wanna make a bet I ca… https://t.co/XJroKvlc6p +05/30/2018,Sports_celeb,@tonyhawk,"But... these ARE my glory days! +(I am a middle-aged dad though) https://t.co/Jb3sQ8KqSd" +05/30/2018,Sports_celeb,@tonyhawk,"I forgot how much fun it is to skate with #markgonzales. Here we are at Chelsea Piers this morning... +Our combined… https://t.co/iRQbFpJ90k" +05/24/2018,Sports_celeb,@tonyhawk,Special guest #JonHamm joins us for Demolition Radio this Saturday (5/26) 12p ET / 9a PT on @SiriusXM channel 103 -… https://t.co/Tpvl4OGg8G +05/24/2018,Sports_celeb,@tonyhawk,One hour left to bid on my skateboard used in the #50tricksat50 video: https://t.co/M0Gt1v5zeP +05/24/2018,Sports_celeb,@tonyhawk,"I got Funko Pop'd! +More info: https://t.co/FJdsMHqjBJ https://t.co/hLPQKwO96q" +05/23/2018,Sports_celeb,@tonyhawk,"June 2009: I went to the White House for Father's Day event & skated around a bit. Some pundits got upset, saying i… https://t.co/F8QPJqmx6z" +05/21/2018,Sports_celeb,@tonyhawk,"My board from #50tricksat50 is still available, portion of proceeds go to @THF . You can probably feel my exhaustio… https://t.co/AUbqcyba3q" +05/19/2018,Sports_celeb,@tonyhawk,The @rileyhawk666 x @myMotorhead collab by @LakaiLTD is now available at https://t.co/3LiS5TUaDy ♠ https://t.co/Dl7M0ONHtT +05/18/2018,Sports_celeb,@tonyhawk,"We got a sneak preview of @knottsberryfarm's new ""Hangtime"" coaster last night. It was like dropping in on over-ver… https://t.co/iy28je9MZ9" +05/18/2018,Sports_celeb,@tonyhawk,"Spoiler alert: my #50tricksat50 video was not shot all in one day... +I'm auctioning one of the two skateboards I us… https://t.co/S8dpcVZGsL" +05/17/2018,Sports_celeb,@tonyhawk,Getting so(rta) pitted at #wslsurfranch alongside Eddie Vedder @kellyslater & @shaunwhite. Thanks to @wsl &… https://t.co/eoNj61MrQU +05/17/2018,Sports_celeb,@tonyhawk,"Showing off my new teeth in 1982 +(they didn't last long) https://t.co/eeL1vYVL2w" +05/17/2018,Sports_celeb,@tonyhawk,I still think this all might have been a dream... https://t.co/cl2ylXTRGw +05/15/2018,Sports_celeb,@tonyhawk,"Thanks to @_TWDY_ for this 10th anniversary show to benefit @THF! +Details: @BellyUpMusic, June 18. +GA tickets sta… https://t.co/tw2UfSW524" +05/14/2018,Sports_celeb,@tonyhawk,"It was indeed, and your cake was the icing on the... er, you know what I mean. https://t.co/GswIa7d1Ed" +05/14/2018,Sports_celeb,@tonyhawk,"Thanks to @skateistan and and the kids at their Johannesburg school for this sweet message, and congratulations on… https://t.co/H7eLLZmGMx" +05/14/2018,Sports_celeb,@tonyhawk,"If you watched my #50tricksat50 video and noticed the 720 mishap, here's what [literally] went down that day. You'd… https://t.co/HRnJ9ajMkk" +05/13/2018,Sports_celeb,@tonyhawk,My mom taught me to believe in myself & the value of perseverance. She was a teacher for decades & received her doc… https://t.co/2hNDTkDTYM +05/12/2018,Sports_celeb,@tonyhawk,Thanks for documenting this once-in-a-lifetime experience yesterday @toddglaser! Getting my first backside barrel w… https://t.co/Fx4kgzW0ca +05/12/2018,Sports_celeb,@tonyhawk,"Here’s that #50tricksat50 video thing I promised. Thanks for all of the support over the decades, but I’m not done… https://t.co/JcAe2mPfoB" +05/12/2018,Sports_celeb,@tonyhawk,@withwhatever @RideChannel You know it +05/12/2018,Sports_celeb,@tonyhawk,My early birthday gift: getting #sopitted with this crew. ⚙💦🏄 @kswaveco @wsl #evenflow 🎂 https://t.co/ukcJQWei0f +05/11/2018,Sports_celeb,@tonyhawk,"I'm almost 50. I never imagined being able to skate at this age, or that anyone would still care if I do. To celebr… https://t.co/hNEHoCqcb3" +05/10/2018,Sports_celeb,@tonyhawk,And to think I was YOUR stunt double... Why didn't you ever teach me this? https://t.co/otoudr3yrV +05/10/2018,Sports_celeb,@tonyhawk,@jazzblasterr @plastcfl0wers Happy Birthday! Sorry for the delay; I wasn't on Twitter yesterday (for shame) +05/10/2018,Sports_celeb,@tonyhawk,"RT @TimMarcin: I talked with @tonyhawk about turning 50, his career in skating and being on The Simpsons. (Oh, and also fans wanting to sha…" +05/08/2018,Sports_celeb,@tonyhawk,@that1_shyguy This would be me Tweeting at you +05/06/2018,Sports_celeb,@tonyhawk,"@angeInews Yes, as long as you proofread it." +05/06/2018,Sports_celeb,@tonyhawk,"@skrongmeat_ HAPPY BIRTHDAY! 🎈🎉🎂 +(I expect the same next weekend)" +05/05/2018,Sports_celeb,@tonyhawk,"Here’s a trick that I was unable to recreate in my upcoming #50tricksat50 video: fast-plant McTwist. +Edit: here’s… https://t.co/0Q2HtJkDJe" +05/04/2018,Sports_celeb,@tonyhawk,Not sure how we got all these A-Listers to come on Demolition Radio recently but I’m not complaining. Hear our inte… https://t.co/rlbgWJhG2S +05/03/2018,Sports_celeb,@tonyhawk,I’ve been busy lately documenting 50 tricks that I’ve developed over the years for a new video. It’s been exhaustin… https://t.co/B2nyT6PcnG +04/30/2018,Sports_celeb,@tonyhawk,Today we brought supporters of @THF to Hilltop Skatepark to show them one of the 588 parks that we've helped create… https://t.co/DmgpvJtENu +04/28/2018,Sports_celeb,@tonyhawk,"Took this headshot in 1986 and never felt the need to update it. +📷: @jgrantbrittain https://t.co/bZjMx8XZmd" +04/27/2018,Sports_celeb,@tonyhawk,Hear my Demolition Radio interview with masterful chef @MVoltaggio now: @SIRIUSXM channel 103 (on demand)… https://t.co/Qr6C2Mdrel +04/27/2018,Sports_celeb,@tonyhawk,RT @VG247: We spoke to @tonyhawk and Neversoft about the fascinating story behind the creation of Tony Hawk's Pro Skater. https://t.co/eYVw… +04/26/2018,Sports_celeb,@tonyhawk,kinda jealous of my son's collab... https://t.co/J6A6IAXAYX +04/26/2018,Sports_celeb,@tonyhawk,There is really nobody more qualified... https://t.co/y0rvZw6LDV +04/26/2018,Sports_celeb,@tonyhawk,"When @WayneBrady says kickflip, you better kickflip. +Primo anxiety level: 📈 +(from @cwwhoseline) https://t.co/hXJWBv8XHz" +04/25/2018,Sports_celeb,@tonyhawk,This is one of the best films of 2018. Go see it ASAP. https://t.co/6ADZSudREF +04/25/2018,Sports_celeb,@tonyhawk,This version of @Millencolin’s “No Cigar” by @AdamFrenchUK is the acoustic cover that THPS fans needed in 2018: https://t.co/C24X5ovHEg +04/25/2018,Sports_celeb,@tonyhawk,Hear a new Demolition Radio this Saturday April 28th at Noon ET / 9am PT featuring the prolific @JuddApatow on FACT… https://t.co/2neDRbDG8B +04/24/2018,Sports_celeb,@tonyhawk,The moving documentary @MindingGapFilm about three skaters from Illinois escaping their volatile families is playin… https://t.co/y3LvsTGvQ3 +04/24/2018,Sports_celeb,@tonyhawk,"RT @LagunaBeachUSD: Check out this video @tonyhawk and our friends at @LagunaBeachPD put together to launch the anti-bullying campaign, It…" +04/23/2018,Sports_celeb,@tonyhawk,"I sat down with @ArianFoster recently for his ""Now What"" Podcast and we had a blast: +https://t.co/vzonxIVmPi +Thanks for including me!" +04/21/2018,Sports_celeb,@tonyhawk,"Thanks for all the laughs, generosity and heartfelt support, @VerneTroyer; I will always be a big fan, and it was a… https://t.co/20PPhPUhv6" +04/21/2018,Sports_celeb,@tonyhawk,June 18 at @BellyUpMusic! https://t.co/Jtv1xvTN4N +04/21/2018,Sports_celeb,@tonyhawk,"Nearly 30 years after the original #HELLofaParadise miniramp event in Hawaii, @thrashermag has rebuilt the ramp on… https://t.co/XUQLgw0hlq" +04/20/2018,Sports_celeb,@tonyhawk,"Hear @Lizziearmanto muse about the Olympics, being a reluctant role model and teaching girls in India to skate on t… https://t.co/Rq4TyAZXlO" +04/20/2018,Sports_celeb,@tonyhawk,Alison Moyet killing the mistaken identity game: https://t.co/2bDxNoAt1i +04/20/2018,Sports_celeb,@tonyhawk,"Pizzey Park, Gold Coast, 1989 #straya +📷:? https://t.co/Q3M4Na4MFm" +04/18/2018,Sports_celeb,@tonyhawk,Thanks for the unforgettable dinner last night @bflay @gatonyc1 https://t.co/mMG9oWy952 +04/17/2018,Sports_celeb,@tonyhawk,Update: I was found 10 mins later (check Insta story) +04/17/2018,Sports_celeb,@tonyhawk,I'm currently skating the streets of NYC on my way to a meeting. First person to see me and ask for my skateboard c… https://t.co/H5Wb7k9lle +04/17/2018,Sports_celeb,@tonyhawk,"My television debut: as ""Skateboard Johnny"" on Captain Kangaroo (1981) +This song still haunts me btw https://t.co/G3rvnqLazo" +04/16/2018,Sports_celeb,@tonyhawk,A clean-ish 900 (at @WoodwardCamp during ESPN Gigantic Skatepark Tour) with moral support from @buckylasek &… https://t.co/9nByB8gn2W +04/16/2018,Sports_celeb,@tonyhawk,"Woman on plane retrieving her luggage in the overhead: +""Who's skateboard is this? It's blocking my bag"" +me: that's… https://t.co/C0D92hPJVh" +04/15/2018,Sports_celeb,@tonyhawk,Thanks @MotoAmerica1 for hosting our synchronized skating today. https://t.co/zetMFv8oWK +04/14/2018,Sports_celeb,@tonyhawk,"Just experienced 160mph on a motorcycle thanks to @ChrisUlrich18 & @MotoAmerica1... +best rollercoaster ride ever.… https://t.co/iToCoIYcpZ" +04/13/2018,Sports_celeb,@tonyhawk,See you soon ATL! We are coming with an epic vert crew. https://t.co/DkfwrE05gb +04/13/2018,Sports_celeb,@tonyhawk,I have seen the devastating effects of dementia on my mom so I cannot stress enough the importance of supporting… https://t.co/inAVcbGjwv +04/12/2018,Sports_celeb,@tonyhawk,"me: polo, anyone? +horse: nah https://t.co/Sn5bMdXAsx" +04/12/2018,Sports_celeb,@tonyhawk,Happy 10th anniversary @skateistan! Thank you for empowering youth in the most challenged areas through skateboardi… https://t.co/d2i1L088YL +04/10/2018,Sports_celeb,@tonyhawk,"Jump ramping on 53rd Street for +The Late Show with David Letterman (2003) https://t.co/vFBBh1vMK4" +04/10/2018,Sports_celeb,@tonyhawk,ATL on Sat! https://t.co/3QI7K7vwEg +04/09/2018,Sports_celeb,@tonyhawk,A short profile on [then] 7-year-old @rileyhawk666 from ESPN Gigantic Skatepark Tour 2000 feat. @buckylasek… https://t.co/SuPJhqd7Hr +04/09/2018,Sports_celeb,@tonyhawk,"We won! (according to @nytimes) +https://t.co/eYfNg4EsIv +...but I still think we need more skateparks across the globe." +04/06/2018,Sports_celeb,@tonyhawk,"Highly recommended if you're into good, live music... https://t.co/wmdhsHgVqX" +04/06/2018,Sports_celeb,@tonyhawk,Back when Tommy Carroll taught me Roast Beef axle stalls and then he removed his eyes so I could get a closer look.… https://t.co/EmvjX8ElwR +04/06/2018,Sports_celeb,@tonyhawk,RT @MotoAmerica1: What's up #Atlanta?! @tonyhawk will be joining us next week for the @suzukicycles Championship at @RoadAtlanta. He'll per… +04/06/2018,Sports_celeb,@tonyhawk,"I am beyond thrilled to bring this legendary crew: @andymacdonald Elliot Sloan, Kevin Staab, @jordynbarratt & bmx i… https://t.co/hZj7vx3C5o" +04/05/2018,Sports_celeb,@tonyhawk,We found the perfect date night movie (depending on your date). #aquietplace is SO good btw. Congrats… https://t.co/OqOGJxTRje +04/04/2018,Sports_celeb,@tonyhawk,@briamgilbert Thanks! +04/04/2018,Sports_celeb,@tonyhawk,Quick session at Street Dome with @corbinharris Clint Walker & @MikeEscamilla on our way through Denmark during… https://t.co/9JvvJUDZQh +04/01/2018,Sports_celeb,@tonyhawk,RT @Beats1: Mike D welcomes skate legend @tonyhawk to the Echo Chamber to talk about music that has influenced his life. This is a must lis… +04/01/2018,Sports_celeb,@tonyhawk,"Some pics from our recent adventures in Iceland +(my kids took the best ones) https://t.co/C0qV3frzUY" +04/01/2018,Sports_celeb,@tonyhawk,"@niallstaines That’s my “international” collection area. Right above are decks from Australia, South Africa and Mexico. Thanks again" +03/31/2018,Sports_celeb,@tonyhawk,"I'll be on The Echo Chamber with Mike D (Beats 1 Radio) today at noon pacific, 3pm Eastern. Hear us [literally] wax… https://t.co/0CQprwDtxv" +03/29/2018,Sports_celeb,@tonyhawk,"Here's a 25% discount code at https://t.co/3LiS5TUaDy (good now through 3/31): use the code ""Rileysdad18"" when chec… https://t.co/a4ULqoTECy" +03/26/2018,Sports_celeb,@tonyhawk,"Yesterday we said goodbye to our dear friend Jen, who left behind a legacy of love and light in the form of three b… https://t.co/yuhyd5798p" +03/23/2018,Sports_celeb,@tonyhawk,"At my gate, waiting for a flight: +Guy with 8x10's & pen approaches, asks me to sign them +Me: How did you get past s… https://t.co/zN5l9MvgKQ" +03/23/2018,Sports_celeb,@tonyhawk,"Cool story... I mean, my story was actually cool but you missed it. https://t.co/TlGOrqTp5i" +03/23/2018,Sports_celeb,@tonyhawk,"Feel good flight of the summer +(with @latestQOTSA) https://t.co/O7PXN3WLoW" +03/23/2018,Sports_celeb,@tonyhawk,There was a time in skateboarding when making eye contact with a photographer was a thing. I'm guessing this was ta… https://t.co/wTmpBMIL0q +03/21/2018,Sports_celeb,@tonyhawk,This was the scariest - and most challenging - doubles trick @andymacdonald & I have done. And I never want to do i… https://t.co/zg2iJll6UJ +03/19/2018,Sports_celeb,@tonyhawk,"Calling my dad for a ride home from DMSR skatepark in 1982. +He probably wasn't home from the look on my face. This… https://t.co/swqCHmY5vo" +03/16/2018,Sports_celeb,@tonyhawk,"Thanks for the invite @MailChimp! +Best (literal) board room ever... https://t.co/if5HK1cMVV" +03/15/2018,Sports_celeb,@tonyhawk,"Hey now, wooo look at that... Thomas Middleditch of @SiliconHBO +will be on Demolition Radio this Saturday -… https://t.co/nzNeCREeW3" +03/12/2018,Sports_celeb,@tonyhawk,"Lien air, Palmdale, 1981 +Pretty sure I was trying to make eye contact with Neil but the face was probably unintenti… https://t.co/V5VTY1qOFS" +03/12/2018,Sports_celeb,@tonyhawk,Please consider voting for Sky Brown as #LaureusSportingMoment of the Month. She already has my vote for obvious re… https://t.co/61qVzsK2K1 +03/12/2018,Sports_celeb,@tonyhawk,"If we can get bungee jumping back in X Games, the cycle will be complete. https://t.co/N9jYk8mLpn" +03/11/2018,Sports_celeb,@tonyhawk,"I was, and it was excellent. +Believe the hype. https://t.co/hrTqbH3x2j" +03/09/2018,Sports_celeb,@tonyhawk,"This is the ultimate example on how NOT to drop in on vert, shown in glorious 4k slow mo. Kudos to Dan. https://t.co/fz02FgFpRJ" +03/08/2018,Sports_celeb,@tonyhawk,Thanks Summer! https://t.co/d63BrRLEpl +03/08/2018,Sports_celeb,@tonyhawk,Tonight's demo playlist (so you can be there with us in spirit): https://t.co/tQFGK7wdgQ +03/08/2018,Sports_celeb,@tonyhawk,I came to #X4Summit18 in hopes of getting a pic with @Lin_Manuel... and I was not throwing away my shot. https://t.co/spfVS3Xbf4 +03/08/2018,Sports_celeb,@tonyhawk,"Congratulations to Monica Acedo from Mexico City, winner of the @AdobeStudents #board4better contest! +Thanks for c… https://t.co/BjA2TCdOCg" +03/03/2018,Sports_celeb,@tonyhawk,"This was taken last week... or 30 years ago; I can’t remember any more, but I’m guessing 1988. +Of note: Stubbies, C… https://t.co/yQuRc2dGXf" +03/02/2018,Sports_celeb,@tonyhawk,Seeing @lizziearmanto & Atita Verghese teaching girls to skate in India is what it’s all about. https://t.co/coXBHtfacK +03/02/2018,Sports_celeb,@tonyhawk,Hear my interview with the talented & prolific Alison Mosshart of @TheKills on Demolition Radio this Saturday at No… https://t.co/dpDq9THZhc +03/01/2018,Sports_celeb,@tonyhawk,"Great Falls MT 2006 +(Secret Skatepark Tour) --> Hollywood, CA 2018 +(Adaptation x Maxfield) +photos:… https://t.co/HaWr9QNDgQ" +02/28/2018,Sports_celeb,@tonyhawk,"Intel commercial from 2005 @JohnCleese and @Seal. If you think it's weird that we're all sitting in laps, it was ev… https://t.co/dU6vyawwMZ" +02/28/2018,Sports_celeb,@tonyhawk,I don't normally ask for such things but our dear friends are going through the hardest time imaginable. Their swee… https://t.co/3wzfX14iuf +02/28/2018,Sports_celeb,@tonyhawk,To clear up a few things about THPS: I worked closely with Neversoft on our series to provide ideas & authenticity… https://t.co/1hBFhszliy +02/27/2018,Sports_celeb,@tonyhawk,@littleseizurez You have no idea... +02/26/2018,Sports_celeb,@tonyhawk,@Dan_Brenkert @BlakeOhBeKay I agree; it was glorious +02/26/2018,Sports_celeb,@tonyhawk,"To anyone asking me to 'remaster"" old games, or complaining about THPS servers being down: Activision owns the THPS… https://t.co/ONRSAk4pA5" +02/26/2018,Sports_celeb,@tonyhawk,"When things get hot, cool is all you got... 1985 Mountain Dew ad feat. #rayunderhill and me doing it Country Cool.… https://t.co/1aNk8qfRnx" +02/26/2018,Sports_celeb,@tonyhawk,Me at the end of the weekend https://t.co/PnzcssvtAc +02/24/2018,Sports_celeb,@tonyhawk,"@NathanLazarus3 @THF You saved the day! Glad to see you're doing so well. +FYI - I actually made it to Estonia a fe… https://t.co/9EKIBEV7Sg" +02/24/2018,Sports_celeb,@tonyhawk,"Back when @NathanLazarus3 helped win $175k for @THF on Are You Smarter Than a Fifth Grader? +...and then we named a… https://t.co/NicmiSbDn9" +02/24/2018,Sports_celeb,@tonyhawk,"@klbs88 Very cool, thank you!" +02/23/2018,Sports_celeb,@tonyhawk,"My stint as Lionel @damustacheman in the Loiter Squad Brigade +(feat. @tylerthecreator @ChrisPontius Taco Jasper &… https://t.co/dI3lOz3h0I" +02/20/2018,Sports_celeb,@tonyhawk,The skateboard I used at Bondi #bowlarama last weekend is now on @eBay if anyone is interested. Warning: the trucks… https://t.co/BdeqezS8ZO +02/20/2018,Sports_celeb,@tonyhawk,"I don’t want accolades; I just want to join this crew if they'll accept me + https://t.co/immzPDc7nM +(via @TimeOutLondon)" +02/20/2018,Sports_celeb,@tonyhawk,I just got back from Oz but @rileyhawk666 is heading there tomorrow for a short PETYR tour. Catch them at one of th… https://t.co/iJaTdosfCP +02/19/2018,Sports_celeb,@tonyhawk,"New and improved skateboard emoji. I sent @jeremyburge & @mindfad a photo of my actual board, so I'll take the blam… https://t.co/bVfKCBYpLO" +02/19/2018,Sports_celeb,@tonyhawk,The future is now: some clips of the other three winners of Bondi @bowl_a_rama: Tate Carew (juniors) @sabrenorris (… https://t.co/FAkBBqXjpt +02/17/2018,Sports_celeb,@tonyhawk,Bondi @BOWL_A_RAMA finals are today... so these stands will look very different this afternoon. You can watch live… https://t.co/3TdVxL8gaR +02/17/2018,Sports_celeb,@tonyhawk,Thanks for the aquatic hospitality! #ilovesydney https://t.co/695IrsHVBH +02/16/2018,Sports_celeb,@tonyhawk,The early bird gets the Madonna. Here I am warming up this morning for @BOWL_A_RAMA on Sunday. I promise to do more… https://t.co/LgaRk98uVP +02/14/2018,Sports_celeb,@tonyhawk,"How I made my 2nd million: +sitting for hours on end. +Thanks @united https://t.co/mkKVN1VQF8" +02/13/2018,Sports_celeb,@tonyhawk,Everything you wanted to know about a (the?) skateboard emoji but were too self-conscious to ask: https://t.co/Xycvy8941e +02/13/2018,Sports_celeb,@tonyhawk,"Frontside air over Jaws' crailslide earlier today. In other words: +I jumped the shark. GET IT?!?! #skaterdadjoke https://t.co/hABtjn4Xss" +02/13/2018,Sports_celeb,@tonyhawk,Skateboard terminology in #Tokyo2020 might have to be censored... https://t.co/Hza3SDGCZy +02/12/2018,Sports_celeb,@tonyhawk,One minute of goodies from my #birdhousesaturdays segment. Some of these tricks took 2-3 days of torment just to ma… https://t.co/nlF3nBCybQ +02/12/2018,Sports_celeb,@tonyhawk,"If you are watching Olympics without @Lesdoggg's commentary, then you're missing out on the true spirit of the games." +02/11/2018,Sports_celeb,@tonyhawk,My episode of Impact Theory with @TomBilyeu: https://t.co/8iAJM6zESz +02/11/2018,Sports_celeb,@tonyhawk,I have the sickest combos in this. https://t.co/UASmJTIEsF +02/10/2018,Sports_celeb,@tonyhawk,"The vert crew came out of the [literal] woodwork tonight for a screening of #EARLYMAN. +If you're a fan of Wallace… https://t.co/s5RPjSy4Kr" +02/09/2018,Sports_celeb,@tonyhawk,"Good to catch up with this crew last night. Congrats Bam & Nikki! +📷: @ryanhalub https://t.co/YeqI6Y2JEa" +02/09/2018,Sports_celeb,@tonyhawk,"My brief stint on Million Dollar Password (2008). I almost got Lynn to 50k but blew it on clues for ""Drugstore"" https://t.co/6rFzxehTKg" +02/08/2018,Sports_celeb,@tonyhawk,Hoping to help bring the skateboard emoji closer to 2018 than 1985... https://t.co/TIWWbGk1i2 +02/08/2018,Sports_celeb,@tonyhawk,"This was a blast, even though it took a few more tries than I anticipated. https://t.co/Gq6kC78hw8" +02/07/2018,Sports_celeb,@tonyhawk,This was only true in December. https://t.co/5cVqldKzZB +02/07/2018,Sports_celeb,@tonyhawk,"Bucky @buckylasek: “hey Jordyn, if Tony & I make Mctwists, then you gotta make that back lip you’ve been trying.”… https://t.co/ZU7MEKyftS" +02/05/2018,Sports_celeb,@tonyhawk,"NSA San Jose Miniramp Jam, 1991 +Squatting on a mini was my true crossover talent. #ponyhawk https://t.co/YuYRLjqrQE" +02/05/2018,Sports_celeb,@tonyhawk,"Thank you Scott Oster for the totally tubular session today. This was my version of a touchdown, btw. https://t.co/e1j4GBeufC" +02/03/2018,Sports_celeb,@tonyhawk,Bondi Brigade (as we prepare for @BOWL_A_RAMA): me @MikeMcGill_ Staab & @buckylasek yesterday https://t.co/XNzv5tD82I +02/02/2018,Sports_celeb,@tonyhawk,I'll be speaking at @Qualtrics #X4summit18 in Salt Lake City on March 8 followed by a vert demo that night. Join us… https://t.co/6LFiecr2ym +02/02/2018,Sports_celeb,@tonyhawk,"Focusing a board with my skull thanks to @CharlieOconnel & @MrJerryOC (The New Guy, 2002) https://t.co/Pp8CiNF7OF" +01/30/2018,Sports_celeb,@tonyhawk,"Oasis, 1979: ""ollie to hang-up"" which is now more appropriately known as a Disaster. +Also: Mr. Bill shirt https://t.co/YiK0dm5rKI" +01/28/2018,Sports_celeb,@tonyhawk,@realfriendsband I live in San Diego but hit me up if you're in the area +01/28/2018,Sports_celeb,@tonyhawk,"It was a blast hanging out with families from San Diego’s Ronald McDonald House. Having seen their work many times,… https://t.co/bed6FExbkS" +01/28/2018,Sports_celeb,@tonyhawk,@chrislivingstn Thanks for filling up my Gravel bags! +01/27/2018,Sports_celeb,@tonyhawk,"Happy Birthday @Lizziearmanto !!! +You can always count on our full support +📷: @sammullerpics https://t.co/HmaZYixPmS" +01/26/2018,Sports_celeb,@tonyhawk,"Just when I thought I might get the job commentating #Tokyo2020, this guy comes along and nails it. +(via… https://t.co/Pu9Ej8e7r2" +01/24/2018,Sports_celeb,@tonyhawk,A clip from back when I lost millions in endorsements for my Homie https://t.co/sr5rPwyk6P +01/23/2018,Sports_celeb,@tonyhawk,RT @ChineseTheatres: .@OriginalFunko founder Mike Becker and @TonyHawk at tonight’s Making Fun premiere. https://t.co/QDQIqsIJqm +01/22/2018,Sports_celeb,@tonyhawk,"My collaboration ""Hugman"" with @NathanSawaya is now on display in DTLA (if you can find it). Available for auction… https://t.co/CirdYowA1z" +01/21/2018,Sports_celeb,@tonyhawk,Going with the Flow(rider). This feels like skimming... until you fall & go through the rinse cycle https://t.co/9CtWFvymT5 +01/18/2018,Sports_celeb,@tonyhawk,"New year, new trick, same me https://t.co/A8QxaLlZ5x" +01/17/2018,Sports_celeb,@tonyhawk,Bird Men? https://t.co/wDNbcz6SS7 +01/17/2018,Sports_celeb,@tonyhawk,"It's great - and validating - to see these action sports stars nominated for @LaureusSport Awards among all the ""ma… https://t.co/1sVrk7A9tj" +01/16/2018,Sports_celeb,@tonyhawk,"RT @tunein: Skateboarding legend @TonyHawk opens up about his rise to stardom, building his business @Birdhouse and finding success in the…" +01/16/2018,Sports_celeb,@tonyhawk,"The 2018 Bondi @BOWL_A_RAMA is only one month away. +As The Dude says: ""I'll be there, man"" +Get tickets now so you c… https://t.co/TVLp8Fxb4i" +01/15/2018,Sports_celeb,@tonyhawk,"Current mood: shredding gnar +@MammothMountain https://t.co/B80mXi7FTR" +01/13/2018,Sports_celeb,@tonyhawk,New fav skater: Ruan Silva https://t.co/ED0ZoHpyjk +01/10/2018,Sports_celeb,@tonyhawk,"1997 Munster World Championships, Germany. Looking back now, this is probably the best I ever skated in competition… https://t.co/IIkMM7jE6U" +01/10/2018,Sports_celeb,@tonyhawk,"We got a brand new rose in town! +This homage of Ben, Clive, Lizzie & Jaws was originally shot for a @birdhouse ad,… https://t.co/KnNhaRDIyh" +06/29/2018,Sports_celeb,@RyanSheckler,💥 https://t.co/jEx6mVG8lZ +06/28/2018,Sports_celeb,@RyanSheckler,"RT @etnies: The Marana +NEW Summer colorways have arrived! +https://t.co/yWyd9bN66s https://t.co/WgyH4PQwrr" +06/27/2018,Sports_celeb,@RyanSheckler,Stoked how these turned out! New @ethika & @PlanBofficial decks available now on https://t.co/5u1SFV9I0y. https://t.co/8f5pHm9rt8 +06/22/2018,Sports_celeb,@RyanSheckler,"Beyond hyped to be skating again, still a long road but the progress is daily! The park is 👌🏻 @scsandlot 🎥… https://t.co/eCkFUX2b47" +06/21/2018,Sports_celeb,@RyanSheckler,"A little late on this today, but since it's the longest day of the year you still have time. Get out there & go SKA… https://t.co/L9TWLwqjC1" +06/18/2018,Sports_celeb,@RyanSheckler,👊 https://t.co/U0mjKBOyvm +06/17/2018,Sports_celeb,@RyanSheckler,Happy Father's Day @Poppa_Shecks ❤️ I love you dad and I am so thankful and blessed to have you! https://t.co/kwTl5RWFXp +06/14/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung @Fgustavoskt doubles at the @scsandlot 📽 @RyanSheckler #skateboarding #felipegustavo #trevormcclung #Pla… +06/12/2018,Sports_celeb,@RyanSheckler,This was a fun one! #etniesALBULM https://t.co/oW0V9qIIRY +06/11/2018,Sports_celeb,@RyanSheckler,Thank you to my boys! Had an incredible 26 hours at the @Palms 👌🏻 I love the new look and feel so much! We will be… https://t.co/61gW1ttHkv +06/09/2018,Sports_celeb,@RyanSheckler,Proud of this kid! 👊 https://t.co/A0UR1bPikq +06/07/2018,Sports_celeb,@RyanSheckler,#etniesALBUM https://t.co/32PW7sDVZA +06/05/2018,Sports_celeb,@RyanSheckler,Last call! 3 hours left #etniesalbum live https://t.co/rSmDHx4IwN https://t.co/IFogWv8rU9 +06/04/2018,Sports_celeb,@RyanSheckler,💥#etniesalbum video part available worldwide till midnight PST - Live 👉 https://t.co/rSmDHx4IwN https://t.co/dQJ6aw9EpA +06/04/2018,Sports_celeb,@RyanSheckler,Live till midnight tonight! #etniesalbum my full part with David Reyes. 👉 https://t.co/7MENQUnTmu https://t.co/Xb0s6GfoTP +06/04/2018,Sports_celeb,@RyanSheckler,#etniesalbum full video part with my dude @DavidReyes303 watch till midnight tonight! —> https://t.co/7MENQUnTmu https://t.co/1nsi25cc04 +06/04/2018,Sports_celeb,@RyanSheckler,What a great day! https://t.co/21FxUPwaEC +06/01/2018,Sports_celeb,@RyanSheckler,#FBF with @TheRock! 👍 https://t.co/cfI14WlgqE +05/31/2018,Sports_celeb,@RyanSheckler,That feeling of achievement shared by all. @K_grom_06's11ft drop in at the @Etnies Skatepark brought inspiration an… https://t.co/y4EU38I6z4 +05/30/2018,Sports_celeb,@RyanSheckler,Fun day training with the boss! @KenRoczen94 https://t.co/hBbDxDDtXw +05/28/2018,Sports_celeb,@RyanSheckler,Thankful for all the men and women who have served and are serving to protect our country. Today we honor you. 🇺🇸… https://t.co/Gz1QUfh9LP +05/25/2018,Sports_celeb,@RyanSheckler,This is the entire US @redbullskate crew - stoked to be part of it! ✌️ https://t.co/I8JzNN7qaz +05/18/2018,Sports_celeb,@RyanSheckler,Fun times filming for the #etniesalbum! Get the full video - available now on ITunes & DVD -https://t.co/e4LfB1Lt5f… https://t.co/77TxpZzN3S +05/17/2018,Sports_celeb,@RyanSheckler,Throwing it back to 2003! Who remembers Slam City Jam? Took home 1st place that year. https://t.co/r4rvGW2jxV +05/14/2018,Sports_celeb,@RyanSheckler,"RT @etnies: Broken board, no problem #ALBUMouttakes +@chrisjoslin_ in Japan a few years back... #etniesALBUM Available Now on DVD & Digital…" +05/11/2018,Sports_celeb,@RyanSheckler,Life is good. Making an impact in each others lives - that's what it's about. @SheckFoundation @oakley… https://t.co/1Uc27CoIXE +05/10/2018,Sports_celeb,@RyanSheckler,"This Saturday join me for @PlanBofficial Skate Day in Carlsbad, CA. #alganorteskatepak See you there! 12-4pm. https://t.co/MTrLn7UiUu" +05/07/2018,Sports_celeb,@RyanSheckler,"Still hyped on this weekend's Skate For A Cause event! A HUGE Thank you to everyone who came out from sponsors, ath… https://t.co/XVcmhor9MP" +05/07/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: Thank you @SheckFoundation for another amazing year. @chrisjoslin_ @williamseansheffey @trevormcclung #SkateForACause #B… +05/06/2018,Sports_celeb,@RyanSheckler,This photo sums up how epic yesterday was! @k_grom_06 this inspired me and thousands more!! Way to step up and cha… https://t.co/JVCt2O5b0c +05/05/2018,Sports_celeb,@RyanSheckler,Hope to see you out today! #SkateForACause #CincoDeMayo Bring the entire family for our carnival village & watch yo… https://t.co/VFQovUUxfV +05/04/2018,Sports_celeb,@RyanSheckler,Tomorrow calls for sunny skies! Join us at @EtniesSkatepark for the 9th Annual #SkateForACause! 10am-5pm Hope to se… https://t.co/wTo2NjhMob +05/02/2018,Sports_celeb,@RyanSheckler,I had a great time with @MrBojanglesFilm & @RockinKumaka on @fox5sandiego News this morning! #SkateForACause THIS S… https://t.co/WNGVrPZhJH +05/02/2018,Sports_celeb,@RyanSheckler,"Tune in this morning to catch me, @oskervoid and @k_grom_06 on @Fox5SanDiego! We will be going live around 8:15am P… https://t.co/Dn0LSusZhN" +05/01/2018,Sports_celeb,@RyanSheckler,Happy Birthday to the craziest mofo I know! I love you Shane Sheckler 💯🤘🏻 so proud of you my man! https://t.co/grRokxAF1s +04/30/2018,Sports_celeb,@RyanSheckler,"Join me this Saturday for #SkateForACause. See your favorite skaters compete & enjoy the carnival village w/ games,… https://t.co/zEGg7SvhqT" +04/30/2018,Sports_celeb,@RyanSheckler,Thanks to the city of Dallas & @allianceskatepark for having the @redbullskate crew out. Good times were had! https://t.co/1gvz3FSwhg +04/28/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: The @tillys Stairs, Hubbas & Rails Contest NEVER disappoints! VIP tickets get you this close to the action! Tag a frie…" +04/27/2018,Sports_celeb,@RyanSheckler,Here are a few of the fans that came out to some stops of the Drop In Tour! So stoked for the support. Thank you! https://t.co/MAjnci7dVg +04/25/2018,Sports_celeb,@RyanSheckler,@gonzojune21 @redbullskate @redbull https://t.co/GKGMFUOetF +04/25/2018,Sports_celeb,@RyanSheckler,"@gonzojune21 @redbullskate @redbull Hart Lines is not returning after a great 3-year run in Detroit, but you’ll be… https://t.co/pMAR9ssbFE" +04/25/2018,Sports_celeb,@RyanSheckler,I'm with them. It's OK... In the name of obsession. #OneObsession @oakley https://t.co/W1VS6x0lod +04/25/2018,Sports_celeb,@RyanSheckler,Atlanta & New Orleans thanks for having us! Good times on the road with the @redbullskate crew. Hitting up Dallas t… https://t.co/Xl4P2RA9Kw +04/23/2018,Sports_celeb,@RyanSheckler,@AlexaaRaeee Hart Lines is not returning after a great 3-year run in Detroit but hoping to get back out there sometime this year. +04/22/2018,Sports_celeb,@RyanSheckler,Happy Earth 🌏 Day! This is an easy way to contribute to our planet. 🙏🏽 https://t.co/EGGZ8lwMqI +04/21/2018,Sports_celeb,@RyanSheckler,"In order to help @etnies reach their goal of 2 MILLION trees planted across the globe, they have made it easier for… https://t.co/5oNZ5qUiIn" +04/20/2018,Sports_celeb,@RyanSheckler,Special thanks to @oakley for having me out at their HQ this week! Had a great time being part of this year’s sales… https://t.co/Q9XFUvqpdb +04/20/2018,Sports_celeb,@RyanSheckler,RT @CowtownSkate: Desert West Skateboard Plaza April 29th @ 11am for the @redbullskate Drop-In Tour. With @RyanSheckler @ToreyPudwill @Fgus… +04/18/2018,Sports_celeb,@RyanSheckler,"Pretty hyped on Walter's first board graphic. Thanks again, Shane! https://t.co/qGY3jCp3of" +04/17/2018,Sports_celeb,@RyanSheckler,.@ShecklerFoundation and I are stoked to announce our first ever @nitrocircus WCMX Best Trick Contest &… https://t.co/CrE1TC3pYF +04/16/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: #Throwbacks to hangin' with the pro skaters INSIDE the skatepark with VIP tickets at #SkateForACause in 2012! Yes, YOU…" +04/13/2018,Sports_celeb,@RyanSheckler,"Kicking things off for #StompSessions in SoCal. Check out the Stomp app to book sessions to ride with pros, summer… https://t.co/ICWDHCtU0Y" +04/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Join us May 5th for #SkateForACause to see your favorite skaters compete & play games in our carnival village! Food, p…" +04/12/2018,Sports_celeb,@RyanSheckler,"RT @SPoTTampa: Come check out the premiere of Etnies' newest video ""Album"" here at #SPoTTampa before it drops worldwide! +- Friday, 4/20 - F…" +04/11/2018,Sports_celeb,@RyanSheckler,Really enjoy this spot! Thanks for the 🎥@CustodioPhoto https://t.co/Wi7mHUHJRj +04/10/2018,Sports_celeb,@RyanSheckler,Fun piece for this fine Tuesday! 🎥 @CustodioPhoto https://t.co/gLpw9wyuEd +04/09/2018,Sports_celeb,@RyanSheckler,".@redbullskate team is hitting the road! Be sure to catch us at one of 5 cities. 1st stop, Atlanta. @AmbushBoardCo https://t.co/6jBgxo897H" +04/06/2018,Sports_celeb,@RyanSheckler,"Sent @Shaq some skateboards a ""few"" years back and he kindly sent me these as a thank you. #flashbackfriday #shaq https://t.co/Tak8jWI8mL" +04/05/2018,Sports_celeb,@RyanSheckler,2011 with @PlanBofficial #TBT https://t.co/C5QKgc1qYs +04/04/2018,Sports_celeb,@RyanSheckler,#SkateForACause is almost a month away! Who is coming out? https://t.co/Ley2g3kF4i +04/02/2018,Sports_celeb,@RyanSheckler,Fun times at the @etnies skateboarding premiere this weekend. Thankful for the fans and the constant support!… https://t.co/4y0NoI7UT9 +04/01/2018,Sports_celeb,@RyanSheckler,Spent Good Friday with the @etnies crew giving out shoes and meals to the homeless. This is their 21st year working… https://t.co/GNf3h4Nr5R +03/30/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung Congrats PlanB’s newest pro. 📷 @paulomacedoo #trevorispro #skateboarding #planbskateboards https://t.co/… +03/29/2018,Sports_celeb,@RyanSheckler,"Happy birthday, mom! Thanks for everything you do. I love you. https://t.co/D3ELqApGRY" +03/28/2018,Sports_celeb,@RyanSheckler,"RT @etnies: For EVERY shoe purchased from today until Good Friday (March 30th), etnies will donate a pair of shoes to the homeless at the L…" +03/26/2018,Sports_celeb,@RyanSheckler,Thursday baby! #etniesALBUM Skateboard Premiere starts in LA. For ALL tour dates and tickets to Thursdays LA show 👉… https://t.co/UF6usk5Uwb +03/25/2018,Sports_celeb,@RyanSheckler,#etniesALBUM Global Premiere kicks off starting with Los Angeles this week. Go get your tickets NOW! 👉… https://t.co/lEIPDJGW1Y +03/24/2018,Sports_celeb,@RyanSheckler,Fun times last night with @ATTILAga ! Shane Sheckler looks like he is in the band👌🏻 📸 @devans812 https://t.co/BAtPbFVpaM +03/23/2018,Sports_celeb,@RyanSheckler,Friday’s call for... Fun times with @marquecox #FlashbackFriday https://t.co/N1H1gMUi9i +03/22/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: #SFskateBOARDmember @Mannyslaysall jumped the LA River yesterday, amazing. #MannySantiago #ShecklerFoundation https://…" +03/20/2018,Sports_celeb,@RyanSheckler,Agree! Where's everyone headed? #firstdayofspring https://t.co/FO8rlCEjr9 +03/19/2018,Sports_celeb,@RyanSheckler,🙌 https://t.co/TyUrYtgeqD +03/19/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@shecks back 3 #onlock 🤙🏼🎥 @marquecox #redbull #planbskateboards https://t.co/GABFmorQyp +03/17/2018,Sports_celeb,@RyanSheckler,Great times celebrating the 10th Annual with this legend. #FBF @KlayThompson @SheckFoundation https://t.co/t76O9bgent +03/15/2018,Sports_celeb,@RyanSheckler,Love this video from our #BeTheChange recipient @teamlillyfoundation . Keep spreading the love! https://t.co/WXKfgQj7hQ +03/14/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@RyanSheckler 🎯🎯📷 @CustodioPhoto #redbull #planbskateboards https://t.co/C81hVt44J0 +03/13/2018,Sports_celeb,@RyanSheckler,"Last day to vote & share. Let's show these causes we care. +Click here 👉: https://t.co/5w3qBRORcZ… https://t.co/Mtn4pTMGpl" +03/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Watch #BetheChange finalist Team Lilly Foundation inc, a 501(c)3 non-profit assisting families battling pediatric canc…" +03/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Please take a moment to WATCH this video about ""Be the Change"" finalist Team Lilly Foundation inc.! Team Lilly... htt…" +03/11/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: WATCH this video from #BeTheChange finalist @skateforchange . Started by Mike Smith, #SkateforChange is a nonprofit pr…" +03/10/2018,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Please take a moment to WATCH this video from #BetheChange finalist A Safe Play-Space for Ryan! 5 year old Ryan has a… +03/10/2018,Sports_celeb,@RyanSheckler,Watch Vote Share #BeTheChange finalist #AllThingsMadeNew @atmnirving https://t.co/Z6R8hMuJpK +03/10/2018,Sports_celeb,@RyanSheckler,@iPositiveVibess 🙌 +03/09/2018,Sports_celeb,@RyanSheckler,Congrats to our finalist! You can support by spreading the word. #BeTheChange Watch. Vote. Share here:… https://t.co/HMstdVTGmx +03/07/2018,Sports_celeb,@RyanSheckler,RT @ethika: RGB 2 is out now! We have 19 new tracks and signature designs from all the artists up now on https://t.co/J5AEYqP4I1 . #ethika… +03/06/2018,Sports_celeb,@RyanSheckler,"New track from Lil Wayne, ""Vizine."" 🙌 @LilTunechi @ethika https://t.co/16vVSad1zZ https://t.co/sgxL1bPbOc" +03/05/2018,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Today is the last day to enter this #BeTheChange round. Good luck! https://t.co/gQVPEDbonF https://t.co/tMAf5F1Gcx +03/03/2018,Sports_celeb,@RyanSheckler,"RT @StreetLeague: 👉🏼 Tampa Pro Qualifiers go down today! Watch the live free stream on the ETN app starting at 12:00pm ET / 9:00am PT. + +@To…" +03/02/2018,Sports_celeb,@RyanSheckler,Sheckler Sessions 2015 - Front blunt transfer #FBF 📸@redbull https://t.co/Ry30vAkNUP +03/01/2018,Sports_celeb,@RyanSheckler,@SkateGirlAndrea @BONESWHEELS @thrashermag @johnhilltube @worldindustries @TransWorldSKATE @GirlsShred… https://t.co/DAYxl3aan5 +03/01/2018,Sports_celeb,@RyanSheckler,Through voice & action anyone can Be The Change. @SheckFoundation has contributed to various causes and individuals… https://t.co/yWhEZY1gnl +02/27/2018,Sports_celeb,@RyanSheckler,It's all in the details. Mandala Masterpiece by Brad Reis​ Tattoo. 🎥 @CustodioPhoto #SCSandlot https://t.co/URnDfBJvQo +02/26/2018,Sports_celeb,@RyanSheckler,Late night house visit by #BradReis_Tattoo. 3 hours down... 📸@CustodioPhoto #tattoo https://t.co/nr6nmJ1NYm +02/21/2018,Sports_celeb,@RyanSheckler,@ARocket9 @etnies The Michelin Marana! 👉 https://t.co/s0pdz9uuvK +02/21/2018,Sports_celeb,@RyanSheckler,Here’s a closer look at my latest signature Cyprus SC - my in-between sessions shoe. Color-way & details are 🔥 If y… https://t.co/DC7n27YLPv +02/20/2018,Sports_celeb,@RyanSheckler,"After busting my ankles, I’m currently healing and look forward to getting back into these kicks real soon. 🙏 Check… https://t.co/t8egreuUhy" +02/16/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: “Stained Series” boards feat. @RyanSheckler 8.12” @Fgustavoskt 8” @ToreyPudwill 8.25” Available NOW! Check your local re… +02/15/2018,Sports_celeb,@RyanSheckler,Missing this! Couple more weeks and I’ll be back! https://t.co/dklPcqmnkj +02/14/2018,Sports_celeb,@RyanSheckler,Happy Valentine's Day babay! Thank you for making me feel happy like this all the time! ❤️ https://t.co/6pj6sXU5in +02/13/2018,Sports_celeb,@RyanSheckler,🐻 @grizzlygriptape https://t.co/yaQRdvS9qj +02/12/2018,Sports_celeb,@RyanSheckler,RT @chasehawk: #TBT session at the LA courthouse with @RyanSheckler & the @etnies skateboarding​ crew. My Sig. #JamesonSL is available now!… +02/09/2018,Sports_celeb,@RyanSheckler,#TBT #SkateForACause SAVE THE DATE! Our 9th Annual on May 5th. Hope to see you there! https://t.co/pWFz5W3ek8 +02/08/2018,Sports_celeb,@RyanSheckler,They're baaack! 👉 https://t.co/xlmkS75Hvy https://t.co/qhNFkCL4kz +02/06/2018,Sports_celeb,@RyanSheckler,My favorite @etnies Marana color-way is back! Whose in favor? Check them out here 👉 https://t.co/QVCwPzQbIM https://t.co/mR3HwpMD9n +02/01/2018,Sports_celeb,@RyanSheckler,"Dew tour #tbt w/ the boss @prod84 🙌🏻 my Gs a multitasking business man & has taught me a lot about God, life, and s… https://t.co/AItRLQoRJn" +01/28/2018,Sports_celeb,@RyanSheckler,Back to the fun in no time! 🎥 @CustodioPhoto https://t.co/WNshwBOgcA +01/26/2018,Sports_celeb,@RyanSheckler,🇺🇸 📸 @redbullskate #hartlines #FBF https://t.co/WmOY2gy33t +01/25/2018,Sports_celeb,@RyanSheckler,How's this #tbt!!! I love you Shane Sheckler 😜 https://t.co/kxckw5rS4K +01/23/2018,Sports_celeb,@RyanSheckler,🙌 @AaronWheelz https://t.co/rP0oZtw3RV +01/21/2018,Sports_celeb,@RyanSheckler,See you Sunday! https://t.co/GZctw6LGF5 +01/18/2018,Sports_celeb,@RyanSheckler,SAVE THE DATE! https://t.co/1rutxVtXzZ +01/17/2018,Sports_celeb,@RyanSheckler,San Clemente Skate Park fun! https://t.co/7CSv7VlKL5 +01/17/2018,Sports_celeb,@RyanSheckler,Stoked to see the skate park we helped build last March in Costa Rica being used & thriving. Thanks for sharing… https://t.co/Tiffj15vXG +01/16/2018,Sports_celeb,@RyanSheckler,@JonahBonner @SheckFoundation 🙌So stoked! Thanks for sharing. +01/15/2018,Sports_celeb,@RyanSheckler,Happy birthday @Poppa_Shecks! Thanks for always steering me in the right direction👊🏻 enjoy your day big dog! I lov… https://t.co/3UPCmLzAfo +01/13/2018,Sports_celeb,@RyanSheckler,Friday find. #FBF https://t.co/Dfr0ppiTNt +01/11/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@chrisjoslin_ had an amazing year. Do the right thing and vote for him #populist2017 award #berrics https://t.co/PRd5uV… +01/09/2018,Sports_celeb,@RyanSheckler,Monday night fun at the SCSandlot! 🎥 @CustodioPhoto https://t.co/P3dOU6jADA +01/07/2018,Sports_celeb,@RyanSheckler,Fun battle today! @etnies #etniesalbum https://t.co/9ICKOnEhpT +01/04/2018,Sports_celeb,@RyanSheckler,"RT @etnies: Cyprus SC +Get 'em here 👉 https://t.co/cuOw0iLAwX https://t.co/eznqkzIsqB" +01/03/2018,Sports_celeb,@RyanSheckler,"New year, new perspectives. 2018, lets do this! #CantStop https://t.co/APc8TzPeA9" +01/03/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: What better way to start off the year than congratulating @LeticiaBufoni with her welcome video https://t.co/f0A0lh1DK8… +01/02/2018,Sports_celeb,@RyanSheckler,Aust-RAIL-ia! Fun clip by @redbullskate --> https://t.co/jvKqecHB0B https://t.co/YG1swby5ja +01/02/2018,Sports_celeb,@RyanSheckler,Happy New Year! What a great trip! https://t.co/FwQxPzBDjT +01/01/2018,Sports_celeb,@RyanSheckler,Thanks to everyone for the birthday wishes. Feeling very blessed. Have a safe & Happy New Year! +12/30/2017,Sports_celeb,@RyanSheckler,❤️ https://t.co/PASHqwL0EJ +12/29/2017,Sports_celeb,@RyanSheckler,Reflecting on the year and skateboarding continues to take me to some pretty epic locations. One of my favorites fr… https://t.co/XB96xHmskZ +12/26/2017,Sports_celeb,@RyanSheckler,https://t.co/XyBvbNFx4Q +12/25/2017,Sports_celeb,@RyanSheckler,Merry Christmas everybody! Happy birthday JESUS! 🎉 https://t.co/AM2BaqQ37n +12/24/2017,Sports_celeb,@RyanSheckler,Saturday's at the Sandlot. 🎥 @CustodioPhoto https://t.co/KeHXR04Ucy +12/22/2017,Sports_celeb,@RyanSheckler,It’s been a good year. Fun times in Nica! #FBF https://t.co/gwcAqxgPOc +12/21/2017,Sports_celeb,@RyanSheckler,Scoping out lines with Mr. Claus. #TBT to @etnies Skate Park 10 year Anniversary Holiday Festival. https://t.co/VNWq4EfxgB +12/18/2017,Sports_celeb,@RyanSheckler,"Work hard, stay hungry and have FUN! 🎥 @CustodioPhoto https://t.co/MYCjPhXENH" +12/15/2017,Sports_celeb,@RyanSheckler,Looking back at such an epic trip to Costa Rica earlier this year. This was our day off after helping build a skate… https://t.co/TFtyMmxXDQ +12/14/2017,Sports_celeb,@RyanSheckler,💥📷: Paulo Macedoo https://t.co/iK5VWGlcUY +12/13/2017,Sports_celeb,@RyanSheckler,I was getting my morning coffee and bumped into @tonyhawk. Good to see you boss! https://t.co/03OIwndvZr +12/13/2017,Sports_celeb,@RyanSheckler,Hangs with @chrisjoslin_ is. Always a good time buddy. #SCSandlot 🎥 @CustodioPhoto https://t.co/lKaD4a0HyH +12/11/2017,Sports_celeb,@RyanSheckler,Good troop. https://t.co/Worw4e4Tk9 +12/08/2017,Sports_celeb,@RyanSheckler,Amped on this 👟! https://t.co/oevphOCUIw https://t.co/NYfcgUsLCc +12/07/2017,Sports_celeb,@RyanSheckler,#tbt fun times 🎉 🎥 @CustodioPhoto https://t.co/clEACtjYdb +12/06/2017,Sports_celeb,@RyanSheckler,"Great night last night! Amped on the last trick, been working on it for a bit now 🎉 🎥 @CustodioPhoto https://t.co/49UlTxZjuc" +12/05/2017,Sports_celeb,@RyanSheckler,"For those with no itinerary, here is some unscripted versatility. @etnies latest release: the #etniescyprussc ! Che… https://t.co/pQVmu0TPFJ" +12/01/2017,Sports_celeb,@RyanSheckler,Stomp Sessions is now live in SoCal! Check out the @StompSessions app to see locations and book your skateboard ses… https://t.co/0nprX1OyHR +11/28/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Today is #GivingTuesday! Click the link below to make a tax deductible donation & join our efforts to BE THE CHANGE we… +11/27/2017,Sports_celeb,@RyanSheckler,".@ethika is having their biggest sale of the year, TODAY ONLY! Head over to https://t.co/iuH184obye. #ethika… https://t.co/gJ0b4nXpIu" +11/27/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: That's Right!! #cybermonday is here. Buy a deck free grip and free ship.#holidaygifts https://t.co/jtaWGxj0Nb #planbskat… +11/23/2017,Sports_celeb,@RyanSheckler,Reminder - Ends tonight! Exclusive @etnies deal TODAY ONLY! 2-for-1 ANY Marana - Use coupon code: 241MARANA 👉… https://t.co/7qojdV1ZCu +11/22/2017,Sports_celeb,@RyanSheckler,"You asked, you shall receive. Exclusive @etnies deal TODAY ONLY! 2-for-1 ANY Marana - Use coupon code: 241MARANA 👉… https://t.co/vPW4pcX6t6" +11/21/2017,Sports_celeb,@RyanSheckler,Exclusive deal for you all! TODAY ONLY! 2-for-1 ALL Scouts - Use coupon code: 241SCOUT 👉 https://t.co/YQUWgxBEh0 En… https://t.co/V09DiAciWW +11/17/2017,Sports_celeb,@RyanSheckler,Congrats my friend! https://t.co/bIiYOF4xsk +11/15/2017,Sports_celeb,@RyanSheckler,Keeping at it. Fun times at the #SCSandlot 🎥 @CustodioPhoto https://t.co/dQf5POzPzT +11/14/2017,Sports_celeb,@RyanSheckler,"So amped on how this turned out! Check out Skaters in Cars and get the latest scoop from me on skate spots, family… https://t.co/lwTScBFWyw" +11/13/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: #MondayMotivation We all have a story to tell that will help encourage someone else going through their struggle. Keep… +11/10/2017,Sports_celeb,@RyanSheckler,#FBF to this time last year with #BeTheChange recipients Parisite Skate Park. What an epic day with amazing people… https://t.co/HryBkdDx96 +11/09/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung part is live for those who haven't seen it yet.🤙🏼📸 @paulomacedoo 🎥 @Pedrodylon 🎼@JCBrooksBand https://t.… +11/08/2017,Sports_celeb,@RyanSheckler,Working on the crooks #thankyouskateboarding @etnies @PlanBofficial @oakley @redbull 🎥 @CustodioPhoto https://t.co/KsOjOcQuu7 +11/07/2017,Sports_celeb,@RyanSheckler,Definitely don't do this alone. Thanks to all those who have supported us along the way! @SheckFoundation https://t.co/IrJE9S5hwa +10/30/2017,Sports_celeb,@RyanSheckler,From water to mini ramp. 🇳🇮 https://t.co/V4fIYufkDQ +10/30/2017,Sports_celeb,@RyanSheckler,Nicaraguan sunset 👌! https://t.co/t9PuZp7BlC +10/29/2017,Sports_celeb,@RyanSheckler,Fun times! @NicaTimeSurf https://t.co/MImGZddSBB +10/27/2017,Sports_celeb,@RyanSheckler,#FBF https://t.co/R7m4OnI29f +10/27/2017,Sports_celeb,@RyanSheckler,@Elise1821 @SFAngelique 🙏 +10/26/2017,Sports_celeb,@RyanSheckler,"Thanks to our loyal supporters all over the world, here are a few things we've done over the past year.… https://t.co/P3TgcBY5wW" +10/26/2017,Sports_celeb,@RyanSheckler,I do love it out here in Nica❤️ 📸 @nicatime https://t.co/bedAam85hv +10/25/2017,Sports_celeb,@RyanSheckler,"Stoked to see my friend giving back! Please join in if you can. @KlayThompson , we'll be watching & keeping score!… https://t.co/eUuB9eqkvI" +10/24/2017,Sports_celeb,@RyanSheckler,🦅 https://t.co/EXCwV7zpZn +10/23/2017,Sports_celeb,@RyanSheckler,Happy to have been part of The Wasserman Serve day at Jefferson Elementary. @WassermanFDN Thanks for all you do!… https://t.co/6qO6oOvBjl +10/23/2017,Sports_celeb,@RyanSheckler,Played outside today... it was a fun one! @etnies #etniesalbum 🎥: @CustodioPhoto https://t.co/uuk3cGhwKN +10/18/2017,Sports_celeb,@RyanSheckler,"Through skateboarding I've seen so many places in this world, but I can never beat the view from my hometown.… https://t.co/mxqHiE2vzn" +10/17/2017,Sports_celeb,@RyanSheckler,Sunday night’s fun at the Sandlot! 🎥 @CustodioPhoto https://t.co/DphlMW1hLx +10/15/2017,Sports_celeb,@RyanSheckler,Great day of skating yesterday with the @etnies crew! 👊 https://t.co/jWburvvKlV +10/12/2017,Sports_celeb,@RyanSheckler,"180 kick flip | @redbull Hart Lines 📍 Detroit, Michigan #TBT https://t.co/fFTsDtZOrZ" +10/10/2017,Sports_celeb,@RyanSheckler,"Well, great day to stop by and get the new #teamwass gear. Thanks @caseywasserman https://t.co/L0B34IlWzd" +10/09/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@dannyway @RyanSheckler @jaggereaton @jetteaton @chrisjoslin_ @AlphonzoRawls @trevormcclung @seanwilliamsheffey #Poods… +10/06/2017,Sports_celeb,@RyanSheckler,Good day indeed! #TBT https://t.co/tJ2ORNYnl0 +10/04/2017,Sports_celeb,@RyanSheckler,"Preparation starts here || Signature Michelin Marana colorway. +https://t.co/YQUWgxBEh0 @etnies https://t.co/5gFGPR0edY" +10/03/2017,Sports_celeb,@RyanSheckler,@tanwiththebeans @etnies @ethika Congrats! +09/29/2017,Sports_celeb,@RyanSheckler,Kicking off the weekend with the @oakley fam at #IrvineSpectrum today from 5-7 pm. Come hang out & say hi.… https://t.co/XVmZJcVcqO +09/28/2017,Sports_celeb,@RyanSheckler,"Frontside air Sydney, Australia - 2007. On the road w/ @PlanBofficial @etnies @redbullskate @oakley 📷:… https://t.co/3ABckzDRol" +09/28/2017,Sports_celeb,@RyanSheckler,🙌 https://t.co/1zancwXiyt +09/26/2017,Sports_celeb,@RyanSheckler,Last chance to enter! https://t.co/4CyAOtxeSo +09/25/2017,Sports_celeb,@RyanSheckler,🚨 WIN this exact skate deck as well as other gear from @etnies @oakley @redbull @melin & @ethi Good luck! Enter ->… https://t.co/14ovubes5g +09/22/2017,Sports_celeb,@RyanSheckler,"Me and my skateboard, It's pure, it's everything. #CantStop Check the new @oakley #Frogskins Lite Collection ->… https://t.co/CpAaQc67WE" +09/21/2017,Sports_celeb,@RyanSheckler,"Not a bad crew! @machinegunkelly JJ, Andre & Rook at our 10th Annual Golf Tourney #TBT #10years @SheckFoundation https://t.co/YQl4CvBDNY" +09/20/2017,Sports_celeb,@RyanSheckler,G I V E A W A Y! All this could be yours! Enter to win 👉https://t.co/vMspH8lWLI https://t.co/6TBvl3wOJF +09/19/2017,Sports_celeb,@RyanSheckler,Everything changed and I almost quit. My love for skateboarding is real and I’m passionate about it now more than e… https://t.co/Fsfsns3Azc +09/18/2017,Sports_celeb,@RyanSheckler,Epic times with the best crew! 🤘Thanks @KAABOODELMAR https://t.co/7X96obyVMU +09/18/2017,Sports_celeb,@RyanSheckler,👊#MondayMotivation https://t.co/nhvEy3Buvu +09/15/2017,Sports_celeb,@RyanSheckler,Good fun! ⚡️ https://t.co/zoY3WNDNW5 +09/14/2017,Sports_celeb,@RyanSheckler,All time #tbt 😂😂 @thepeopleloveit #alfalphanspanky https://t.co/6O5FsFdROp +09/14/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: #repost @SalMasekela #GolfingWithShecks & @wienerschnitzel https://t.co/MNsNvwXKxP +09/11/2017,Sports_celeb,@RyanSheckler,RT @ethika: Weekend moves with @Steellafferty and @RyanSheckler #ethikafamilie https://t.co/2BEdce75Dr +09/11/2017,Sports_celeb,@RyanSheckler,The winner of the @findyourgrind Helicopter Ball Drop! @SheckFoundation https://t.co/TTc17VErcS +09/08/2017,Sports_celeb,@RyanSheckler,Nights at the Sandlot. 🎥 @CustodioPhoto https://t.co/CxgDh0Pt0f +09/08/2017,Sports_celeb,@RyanSheckler,Last day to enter! https://t.co/fVFpt2LIop +09/07/2017,Sports_celeb,@RyanSheckler,🤘 https://t.co/ibqdV9Goda +09/05/2017,Sports_celeb,@RyanSheckler,The @Sheckfoundation will be donating 100% of proceeds to help the victims of #HurricaineHarvey. Click to donate --… https://t.co/Gzo3aJmjvZ +09/01/2017,Sports_celeb,@RyanSheckler,Have a great Labor Day weekend everyone! https://t.co/lCh8DO875C +08/31/2017,Sports_celeb,@RyanSheckler,"Summer is out! Celebrating Back to School with an @Etnies Sale for the nuggets, parents and their educators! ->… https://t.co/LKa6UDs1VJ" +08/30/2017,Sports_celeb,@RyanSheckler,"We just donated 14,000 pairs of @ethika to Houston for hurricane victims. Along with the product we are sending lov… https://t.co/Q8aJAbyv5O" +06/30/2018,Sports_celeb,@prod84,"RT @Complex: ""I used to skate the loading dock behind Albertsons every day when I was a kid. It's how I learned all my tricks."" —@prod84 ex…" +06/30/2018,Sports_celeb,@prod84,"RT @ComplexSneakers: ""Shoutout to ASAP Rocky for showing the shoe some love."" —@prod84 on seeing @asvpxrocky wearing the ""Futura"" P-Rod 1.…" +06/30/2018,Sports_celeb,@prod84,"RT @Complex: ""Shoutout to A$AP Rocky for showing the shoe some love."" —@prod84 on seeing @asvpxrocky wearing the Futura x P-Rod 1. + +FULL EP…" +06/29/2018,Sports_celeb,@prod84,"RT @ComplexSneakers: ""This is probably the most precious memorabilia I have."" —@prod84 on his Michael Jordan-signed V-Rod exclusives. + +See…" +06/29/2018,Sports_celeb,@prod84,RT @berrics: .@prod84 shows off his collection of 300+ pairs of Nike SB's https://t.co/tFBTsBVUjx https://t.co/pNL7LY4UWB +06/29/2018,Sports_celeb,@prod84,Restocked https://t.co/UriKrjTu29. @primitiveskate https://t.co/ScIABN0pHh +06/29/2018,Sports_celeb,@prod84,RT @KicksDeals: 👀 @Complex / @JLaPuma come through with an all-NEW episode of 'Complex Closets' featuring pro skater & Nike SB signature at… +06/29/2018,Sports_celeb,@prod84,Honored to have @Complex come by and shoot this video 🙏🏽 https://t.co/b08aXZBHGr +06/29/2018,Sports_celeb,@prod84,RT @primitiveskate: Exclusive #dragonballz box available to Primitive Reserve members. Sign up and this will be your first box (while suppl… +06/27/2018,Sports_celeb,@prod84,"RT @137pm: .@prod84 came on #Face2FaceTime to talk about how gratitude is 🔑 + +""If you can't be grateful for what you have in life or where y…" +06/27/2018,Sports_celeb,@prod84,Didn’t know what I was missing out on @gillette. Simple changes to my shave routine = gamechanger #GillettePartner… https://t.co/8GkYDlJaB3 +06/24/2018,Sports_celeb,@prod84,Had a great time being a part of #Face2Facetime by @garyvee’s new company @137pm ! https://t.co/9Ou49JDFFk +06/18/2018,Sports_celeb,@prod84,"Paul Rodriguez ""Never"" Unmastered: https://t.co/B1nBfUubo6 via @YouTube" +06/17/2018,Sports_celeb,@prod84,Just want to wish all the Fathers out there a happy Father’s Day. Many Blessings to you all and your families 🙏🏽🙏🏽🙏🏽 https://t.co/UPdtqQgBtn +06/17/2018,Sports_celeb,@prod84,Hyped on these! #DragonBallZ https://t.co/DUAoKTwEXC https://t.co/qJ9XmfeLk2 +06/16/2018,Sports_celeb,@prod84,"@primitiveskate “Never” +#neversaynever https://t.co/M8grJFGxBa" +06/12/2018,Sports_celeb,@prod84,Super excited to connect with you all one on one on @BookCameo ! If you want a birthday message or any video messag… https://t.co/2djcdyhhpJ +06/11/2018,Sports_celeb,@prod84,“Never” @primitiveskate https://t.co/8UjESOV6is +06/09/2018,Sports_celeb,@prod84,. @RickandMorty x @primitiveskate pre order available now! https://t.co/Y4aDA5KNne https://t.co/rHLBFxxtSi +06/08/2018,Sports_celeb,@prod84,RT @primitiveskate: We Are Excited To Announce The Rick and Morty x Primitive Skateboarding Official Collaboration Dropping July 1st Limite… +05/25/2018,Sports_celeb,@prod84,"Courthouse 2 Piece +📷: @SpanishMikeTV https://t.co/mgVRdhSsDf" +05/21/2018,Sports_celeb,@prod84,New @Gillette video up on my YouTube channel! See how I always find time to stay fresh with the right razor -- no m… https://t.co/wem3AD2i56 +05/21/2018,Sports_celeb,@prod84,Had a great time. Hope you enjoy the @nikesb #Prod10’s! https://t.co/cEuldG6w0s +05/17/2018,Sports_celeb,@prod84,Enter at https://t.co/Z0vLGyj29p for a chance to skate with me and my friends! https://t.co/QfvldNRTim +05/17/2018,Sports_celeb,@prod84,RT @primitiveskate: Updates regarding #dragonballz orders. Thank you guys so much for your patience! 🙏 🐉 #primitiveskate @prod84 https://t.… +05/11/2018,Sports_celeb,@prod84,"Which pill are you taking 🔴🔵? + +See what happens next... https://t.co/8E65nNIONL https://t.co/g9NXJVZ9A9" +05/03/2018,Sports_celeb,@prod84,I’m giving away a pair of my new frames from @glassyeyewear just follow @glassyeyewear and retweet this post for yo… https://t.co/8AetGWWned +05/03/2018,Sports_celeb,@prod84,#dbz @primitiveskate https://t.co/e4NDZz1mog https://t.co/stePHuYxZE +05/01/2018,Sports_celeb,@prod84,So excited about this!! https://t.co/r3wKRLmXoC +05/01/2018,Sports_celeb,@prod84,RT @GrantCardone: I asked pro skateboarder & successful entrepreneur Paul Rodriquez @prod84 why… https://t.co/7H6Bb68dmK +04/30/2018,Sports_celeb,@prod84,"RT @primitiveskate: Our #dragonballz collaboration drops tonight at midnight eastern time, 9:00PM Pacific time on https://t.co/TH4m7sh0BE.…" +04/29/2018,Sports_celeb,@prod84,RT @PRIMITIVE_LA: May 1 #dragonballz x #primitiveskate https://t.co/aE51jObJzz 🐉 https://t.co/WNxjfps6YF +04/26/2018,Sports_celeb,@prod84,"🌪 +🎥 @brandonbiebel https://t.co/Lcq0J4J1iW" +04/26/2018,Sports_celeb,@prod84,RT @Speffman: Just arrived and it’s sick. #dbz @primitiveskate https://t.co/s5QV9aBGhT +04/21/2018,Sports_celeb,@prod84,Had a blast playing with you man! https://t.co/v5iXQZTcS1 +04/13/2018,Sports_celeb,@prod84,.@primitiveskate x #pauljacksonlives restocked: https://t.co/JirIvnbStO https://t.co/QvKHK9cUyl +04/12/2018,Sports_celeb,@prod84,"Cleaning your kicks twice a day keeps Dr. Sole away, right @Nike? #shoetherapy https://t.co/eYbvCZCzyB" +04/11/2018,Sports_celeb,@prod84,"This was a fun shoot to be a part of thanks @nike 🙏🏽 Cleaning your kicks twice a day keeps Dr. Sole away, right?… https://t.co/sZbrJPpNY4" +04/11/2018,Sports_celeb,@prod84,@GrantSchubert @primitiveskate @alan_hannon Thanks for all the hard work you two have put in over the past couple of days 👊🏼 +04/11/2018,Sports_celeb,@prod84,@SenjuRicardo 🙏🏼 +04/08/2018,Sports_celeb,@prod84,"@Hoooooesinheels Sorry, can’t part with them" +04/08/2018,Sports_celeb,@prod84,@SDSkateCo @whitesox @loswhitesox @Jumpman23 🙏🏼 +04/08/2018,Sports_celeb,@prod84,@andyr0ck🙏🏼 +04/08/2018,Sports_celeb,@prod84,@Hoooooesinheels Sorry but all I have is a couple of pair I’m saving for my collection +04/08/2018,Sports_celeb,@prod84,@dragonballzarmy My man 🙏🏼 +04/08/2018,Sports_celeb,@prod84,@colinmecrazy @SeanSchemmel @toei @primitiveskate Which board did you get? +04/08/2018,Sports_celeb,@prod84,@323chillax 🙏🏼👊🏼 +04/08/2018,Sports_celeb,@prod84,@Mark_Shadows looks like they will be available 5/7/18 +04/03/2018,Sports_celeb,@prod84,Doing a live Q and A now! https://t.co/SgRAJ8445a +04/03/2018,Sports_celeb,@prod84,"Feels like a Netflix night gonna watch +""ON MY BLOCK. "" + +@jeremyhaft1 +@onmyblocktv +#onmyblock +#representationmatters +#netflix" +03/26/2018,Sports_celeb,@prod84,Happy @Nike #airmaxday I’ll be rocking the Air Max 270s all day. Which are your favorites? https://t.co/TxFrZhqWls +03/23/2018,Sports_celeb,@prod84,"It's been fun sharing my A•Reels with you guys and now I want to see yours!! +Download the @areelsports app and… https://t.co/HowyefDUKr" +03/23/2018,Sports_celeb,@prod84,RT @primitiveskate: Restocked! https://t.co/AYPlOqy5RS https://t.co/F8SY0HHgNs +03/21/2018,Sports_celeb,@prod84,Loving this months #primitivereserve box!! Brian Peacock 🔥. Subscribe now: https://t.co/DplPitS7Ka. https://t.co/ERz61vXG6c +03/16/2018,Sports_celeb,@prod84,"Now you can easily shoot, edit, and share your own amazing vids and be a part of a community of elite athletes and… https://t.co/NkwSdxtCtF" +03/16/2018,Sports_celeb,@prod84,RT @primitiveskate: #primitiveskate x #dragonballz full collection coming soon but pre-orders available now https://t.co/FSXO5OQ2uj🤫 https:… +03/14/2018,Sports_celeb,@prod84,Partnered up with my friends over at @Gillette! #unboxing video on my channel to see what they sent. You guys get s… https://t.co/gJhMkRh1nR +03/14/2018,Sports_celeb,@prod84,Paul Rodriguez | Gillette Unboxing: https://t.co/8FEU4Zvoaz via @YouTube +03/11/2018,Sports_celeb,@prod84,The sun is coming back out. My signature @glassysunhaters will keep your eyes happy 😎 Get %10 off by clicking here:… https://t.co/PuTMNHACIb +03/08/2018,Sports_celeb,@prod84,"Check out my latest highlight reel on the @areelsports app where you can watch, create, and promote sports highligh… https://t.co/fYlcjN7x95" +03/06/2018,Sports_celeb,@prod84,"RT @primitiveskate: Primitive x @sixthave Demo in Nashville, TN: https://t.co/wYV3sp0Iq1 https://t.co/k0obXkQyjR" +02/23/2018,Sports_celeb,@prod84,Hitting the streets with my signature @glassysunhaters Grab yours and 10% off this weekend. Hit the link to get yo… https://t.co/yVzZwk6AFH +02/23/2018,Sports_celeb,@prod84,RT @shanejoneill: Rob’s new part is amazing 🚰 https://t.co/CCqR6K54ij +02/23/2018,Sports_celeb,@prod84,That new @salabanziB deck is 🔥. Available in the Reserve box: https://t.co/DplPitS7Ka https://t.co/D0JF4DVWfj +02/17/2018,Sports_celeb,@prod84,Back in stock! @primitiveskate x Paul Jackson: https://t.co/JBV2cEsMjL https://t.co/BeuL2m7u0W +02/12/2018,Sports_celeb,@prod84,😎 https://t.co/3wLoldxZ2Q +02/08/2018,Sports_celeb,@prod84,RT @primitiveskate: New subscribers can get this Devine Calloway exclusive deck: https://t.co/z1msxuRbxE https://t.co/TmsPJfV06E +02/07/2018,Sports_celeb,@prod84,.@primitiveskate x @majidjordan collab: https://t.co/HIVv1J1p4L https://t.co/tLHCNhlyWw +02/07/2018,Sports_celeb,@prod84,Heartbreakers Collection. Available in shops and at https://t.co/UriKrjBSDz. 💔 https://t.co/eSOdcEew6q +02/03/2018,Sports_celeb,@prod84,#skatelife film by @SpanishMikeTV https://t.co/45RzzJZtgp +01/19/2018,Sports_celeb,@prod84,Sw front heel from the other day. 📷 Oliver Barton https://t.co/Vj94uF2LUm +01/07/2018,Sports_celeb,@prod84,New ones!! 👌🏽 @primitiveskate x @pauljacksonlives. @shanejoneill @nicktucker https://t.co/UriKrjBSDz https://t.co/E05Q8ZmvCO +12/26/2017,Sports_celeb,@prod84,Another blessed Christmas Day session with my guy @shanejoneill! Hope everyone had a blessed one🙏🏽 #dedication6 🎥… https://t.co/XyZ1jYuQBP +12/07/2017,Sports_celeb,@prod84,Sw hard flip 📸 @atibaphoto https://t.co/KeKOZmaF0x +11/29/2017,Sports_celeb,@prod84,RT @primitiveskate: Final hours to save! https://t.co/qoKEswryUc https://t.co/Y1BL3CkEni +11/25/2017,Sports_celeb,@prod84,Grab your @glassysunhaters during the ⚫️Black Friday⚫️ sale going on through Monday. Get up to 35% off here:… https://t.co/Zg8FV2DcaU +11/24/2017,Sports_celeb,@prod84,Black Friday Sale going down now! https://t.co/UriKrjBSDz. @primitiveskate https://t.co/RdxVKNI18J +11/23/2017,Sports_celeb,@prod84,RT @primitiveskate: Roman Lisivka “Stalinista”: https://t.co/5gOjjGoGTQ https://t.co/jBr07iweDG +11/20/2017,Sports_celeb,@prod84,Throwback clip at the old park. 🎥 @spanishmiketv @primitiveskate https://t.co/gUIt5NPNFJ +11/18/2017,Sports_celeb,@prod84,2fers are back! https://t.co/YDP3EKPXZu. @primitiveskate https://t.co/K0TwPmkZjs +11/16/2017,Sports_celeb,@prod84,#tbt switch bs nose blunt slide. 📸 Oliver Barton https://t.co/96tGhUus4i +11/14/2017,Sports_celeb,@prod84,Black Pack ‘17. https://t.co/A5rdeYFs0H. @primitiveskate https://t.co/7Iirm39Z8Z +11/03/2017,Sports_celeb,@prod84,Grab a pair of my signature shades from @glassysunhaters and get 10% off. Click here: https://t.co/wekwlyDWWL https://t.co/hGFjwFJa3X +11/02/2017,Sports_celeb,@prod84,RT @primitiveskate: https://t.co/srNhvle5jX https://t.co/gZ53kKuKI3 +10/21/2017,Sports_celeb,@prod84,RT @primitiveskate: New #LA Colorway. Available now https://t.co/TH4m7sh0BE https://t.co/z090zoShhe +10/21/2017,Sports_celeb,@prod84,.@primitiveskate in #Texas vid: https://t.co/Gt5FC0Ydsi https://t.co/YoGZwyTTLy +10/19/2017,Sports_celeb,@prod84,New ones! @primitiveskate https://t.co/UriKrjBSDz https://t.co/wvaqhKs8xL +10/14/2017,Sports_celeb,@prod84,"RT @StreetLeague: .@prod84 @KellyHart taking 'Trick of the Year' to the next level! + +Watch the 24 hour freeview of Episode 1 today on ETN.…" +10/13/2017,Sports_celeb,@prod84,Happy birthday Kevin Perez. Keep getting those wins! 📸 @oliverbarton https://t.co/iVVaj07tir +10/11/2017,Sports_celeb,@prod84,A line from earlier this year filmed by @SpanishMikeTV @primitiveskate https://t.co/GoxE91DJnu +10/10/2017,Sports_celeb,@prod84,💰💰 💰 https://t.co/DplPitS7Ka https://t.co/X3QahYpkr4 +10/09/2017,Sports_celeb,@prod84,Join me and the @primitiveskate squad this Saturday! https://t.co/z3XPfR4Ysz +10/06/2017,Sports_celeb,@prod84,RT @primitiveskate: .@pendledon Zoo (Unmastered) is up now 👉🏽 https://t.co/mX0KjLXAV3 #primitiveskate https://t.co/0uktF4Nr62 +09/29/2017,Sports_celeb,@prod84,Ready for the season with the new #lakernation jersey designed by @nike. What team you got this season?? https://t.co/IkVoCMNqkG +09/28/2017,Sports_celeb,@prod84,"Join me and the squad this Saturday in Austin, TX! @nocomplyatx @primitiveskate https://t.co/tEud5qCCZI" +09/26/2017,Sports_celeb,@prod84,Enjoying the new park https://t.co/KircAjIfX2 +09/23/2017,Sports_celeb,@prod84,Grab a pair of my signature @glassysunhaters and hate the ☀️ this weekend. Click the link for 10% off.… https://t.co/R4JjSumcIB +09/19/2017,Sports_celeb,@prod84,Join us this Wednesday at @blackhwood! @trentmcclung @primitiveskate https://t.co/M5EGPpIgoe +09/17/2017,Sports_celeb,@prod84,Setting up a fresh one. @nicktucker @primitiveskate 📸 Oliver Barton https://t.co/rk6M6Qc2v7 +09/15/2017,Sports_celeb,@prod84,"#fbf to 2013 when @seanmalto, @erickoston and I visited Camp Nou in Barcelona. 📸 @heathmoe https://t.co/mHxVAAj8VS" +09/12/2017,Sports_celeb,@prod84,.@primitiveskate x @grizzlygriptape collection. 🙌🏽 https://t.co/UriKrjBSDz https://t.co/4IBoOFgjH5 +09/09/2017,Sports_celeb,@prod84,#Fbf 🎥 @Heathmoe https://t.co/cH75b9IvzW +09/08/2017,Sports_celeb,@prod84,Hit the streets and hate the ☀️ this weekend in some @glassysunhaters Click the link for 10% off.… https://t.co/bPd2UVQ1il +09/05/2017,Sports_celeb,@prod84,Thank you everyone for the amazing support!! https://t.co/oiQc7DGhPK +09/02/2017,Sports_celeb,@prod84,.@primitiveskate x @grizzlygriptape available now. https://t.co/A5rdeYFs0H 📱 Kevin Perez https://t.co/RwNbWaDbxv +08/29/2017,Sports_celeb,@prod84,😍 @primitiveskate https://t.co/UriKrjBSDz https://t.co/v4DmEcmtL1 +08/25/2017,Sports_celeb,@prod84,RT @primitiveskate: #PrimitiveSkate x @gangsterdoodles @prod84 Flip Phone Deck is available now exclusively at https://t.co/TH4m7sh0BE! htt… +08/22/2017,Sports_celeb,@prod84,A few #throwback clips 🎥: @heathmoe https://t.co/0nX3zxyPEX +08/21/2017,Sports_celeb,@prod84,Weekend fun with the boys. @primitiveskate https://t.co/CBHkLA72RL +08/20/2017,Sports_celeb,@prod84,Loving this Diego Najera Deck! Ships next month to Primitive Reserve subscribers. Sign up @ https://t.co/DplPitS7Ka. https://t.co/8HNbSRbQ9d +08/18/2017,Sports_celeb,@prod84,"Get out in the ☀️ this weekend in some @glassysunhaters Hit the link for 10% off: +https://t.co/l2p1jKpIfz https://t.co/g769ZoEMwD" +08/11/2017,Sports_celeb,@prod84,Grab your @glassysunhaters 😎this weekend and get 25% off. https://t.co/upIIOHjhN5 https://t.co/g33XeI1J6F +08/09/2017,Sports_celeb,@prod84,"Want this exclusive @shanejoneill ""Vison Test"" @primitiveskate colorway? It's only available at… https://t.co/c17bxb3qLN" +08/04/2017,Sports_celeb,@prod84,"The @primitiveskate team is having a signing at Boarders tomorrow August 5th from 1-3 Come by and say what's up, if… https://t.co/snpoNWVfp5" +07/24/2017,Sports_celeb,@prod84,RT @primitiveskate: 🤔 https://t.co/0WIWxSbQmf +07/22/2017,Sports_celeb,@prod84,"Available in 7.75, 8, 8.125, 8.38 and 8.5. Subscribe @ https://t.co/DplPitS7Ka https://t.co/su9l4fI5kl" +07/19/2017,Sports_celeb,@prod84,The Primitive Reserve Subscription: https://t.co/f77RWCu5ic via @YouTube +07/15/2017,Sports_celeb,@prod84,Come by the @AgendaShow @primitiveskate booth P3 tomorrow from 1-3 and see the team if your in the area. https://t.co/H8hnKaoMXy +07/12/2017,Sports_celeb,@prod84,Jumping fences with @primitiveskate live tomorrow only on ETN. Get ETN here: https://t.co/5ezC0AlrEY https://t.co/56Vhm7Fkfs +07/07/2017,Sports_celeb,@prod84,Check out the new @primitiveskate Pendleton Zoo edit here: https://t.co/oEYdqygVYb https://t.co/xAMIxhISpe +07/06/2017,Sports_celeb,@prod84,SWITCH IT UP. FRONTSIDE FLIP IN MY #PROD10 https://t.co/kx32tgZdDf https://t.co/X7xagqNbIh +07/03/2017,Sports_celeb,@prod84,Grab your @glassysunhaters for the long weekend here: https://t.co/Jsx0FxVhA1 https://t.co/6PmBnBHE3s +07/03/2017,Sports_celeb,@prod84,NEW WEEK. LET'S GET IT. @nikesb #PROD10 https://t.co/kx32tgZdDf https://t.co/7karYSzpXp +07/01/2017,Sports_celeb,@prod84,BLESSED 🙏🏻 THANK YOU @NIKESB. NEVER IMAGINED THIS. #PROD10 https://t.co/kx32tgZdDf https://t.co/9vWwuMu27h +06/29/2017,Sports_celeb,@prod84,RT @primitiveskate: Primitive Paul Rodriguez Eagle 🦅 Veneer Deck Now Available Exclusively on https://t.co/z1msxuRbxE @prod84 https://t.co/… +06/28/2017,Sports_celeb,@prod84,My new signature @glassysunhaters from the ♠️♥️High Roller collection♣️♦️are back in stock. Get 10% off here:… https://t.co/DOftXsANLx +06/27/2017,Sports_celeb,@prod84,The @primitiveskate Reserve Subscription is available now! https://t.co/DplPitS7Ka https://t.co/AvgTgUKHji +06/26/2017,Sports_celeb,@prod84,I’m still recovering from this workout with lacrosse pro @KyleHarrison18 ! Watch #CanIHang only on @go90Zone… https://t.co/b8Gecrjbnx +06/26/2017,Sports_celeb,@prod84,The Primitive Reserve Monthly Subscription: https://t.co/rz07N5u2y6 via @YouTube +06/25/2017,Sports_celeb,@prod84,New Rosay board @primitiveskate https://t.co/UriKrjBSDz https://t.co/2f0kw8ndQp +06/20/2017,Sports_celeb,@prod84,Paul Rodriguez | 2pac x Primitive Skate: https://t.co/99tXuIBft0 via @YouTube +06/19/2017,Sports_celeb,@prod84,RT @primitiveskate: .@2pac Back in stock: https://t.co/oZXxzMUaIj https://t.co/w4iHi442Q0 +06/19/2017,Sports_celeb,@prod84,.@MightyMouseUFC is a beast! This is one session I won’t forget. Watch #CanIHang on @go90Zone Full episode here:… https://t.co/uiSizOLm5N +06/17/2017,Sports_celeb,@prod84,🙏🏻 @primitiveskate X @2pac 🙏🏻 available now. Pick yours up here: https://t.co/LuSpquTX1U https://t.co/IuBfm1ZbbE +06/16/2017,Sports_celeb,@prod84,Hyped these have been re-released on https://t.co/UriKrjBSDz. @2pac @primitiveskate 🙌🏽 https://t.co/QGIWPUUdRb +06/15/2017,Sports_celeb,@prod84,Vision Test series 💪🏽 https://t.co/UriKrjBSDz. @primitiveskate https://t.co/t1V9TVpf2w +06/13/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84's Jungle Cat board is available now in shops and online at https://t.co/TH4m7sh0BE. https://t.co/EPmDLcVb7w +06/13/2017,Sports_celeb,@prod84,What an achievement. Ten is Rafa. #VamosRafa #justdoit #nike https://t.co/4wkQjFoM9G +06/12/2017,Sports_celeb,@prod84,.@tonyfinaugolf I am counting on you to get me @PGATOUR ready! Watch #CanIHang on @go90 https://t.co/eVDOtcbSvd https://t.co/BlOvzpyn5J +06/09/2017,Sports_celeb,@prod84,The @primitiveskate crew and I will be at @Warningsk8shop tomorrow 1-3 for a team signing. If you're in the area st… https://t.co/TMvLL13btt +06/09/2017,Sports_celeb,@prod84,Get out in the ☀️ this weekend in some @glassysunhaters Hit the link for 10% off: https://t.co/l2p1jKpIfz https://t.co/z3vnaYj7d9 +06/09/2017,Sports_celeb,@prod84,"Setting up the new @primitiveskate ""Jungle Cat"" 📷 @ParrisWalker_ https://t.co/7AsHClhBcn" +06/05/2017,Sports_celeb,@prod84,I may never recover from @kohara19 soccer drills. Watch me sweat this week on #CanIHang only on @go90Zone… https://t.co/6FZqyy7wH8 +06/03/2017,Sports_celeb,@prod84,Get out this weekend in the ☀️ with my signature shades from @glassysunhaters Grab yours here:… https://t.co/sQZLrDncqG +06/02/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84's Jungle Cat deck is available now at finer shops and online at https://t.co/TH4m7sh0BE. https://t.co/DVv5ppKP… +05/30/2017,Sports_celeb,@prod84,Never thought I would try Cyrotherapy – things got chilly with @bonner_bolton ! Watch #CanIHang only on @go90Zone… https://t.co/odUCWAxn4v +05/28/2017,Sports_celeb,@prod84,Shop and save all weekend at https://t.co/UriKrjBSDz 👌 https://t.co/VaHmddIlwM +05/24/2017,Sports_celeb,@prod84,RT @theotisbeasley: My new @nikesb video part is now live on https://t.co/UP8LhUkR9K. Watch it at https://t.co/r268ZOGTIz. @transworldskate… +05/22/2017,Sports_celeb,@prod84,Dodger legend @yungjoc650 taught me some things about my bat flip. Watch #CanIHang & see if I mastered it @go90Zone… https://t.co/C5aMzLm3Gf +05/22/2017,Sports_celeb,@prod84,. @CarlosRibeirol @primitiveskate #macbalife https://t.co/4GFHnzuj7V +05/18/2017,Sports_celeb,@prod84,Hyped on Diego Najera's new @primitiveskate deck. Available now in shops & https://t.co/UriKrjBSDz. https://t.co/14nghpMs3z +05/16/2017,Sports_celeb,@prod84,PAUL RODRIGUEZ I TRUE FORM: https://t.co/UPc0tuxPSa via @YouTube +05/15/2017,Sports_celeb,@prod84,Who do you think has a better jump shot – me or @realtuffjuice ? Find out on this week’s #CanIHang only on… https://t.co/DDaf6FIAJR +05/15/2017,Sports_celeb,@prod84,"RT @primitiveskate: 36-24-36. Carlos Ribeiro ""Little in the Middle"" deck available in finer shops and at https://t.co/TH4m7sh0BE. #primitiv…" +05/12/2017,Sports_celeb,@prod84,"Check out the new @primitiveskate Vision Test East coast promo, all filmed in 2 weeks 😳 Full edit here:… https://t.co/azMqT4Evm6" +05/12/2017,Sports_celeb,@prod84,"RT @instantdotme: YOOOO, @Prod84 is taking over our Snapchat today! Be sure to follow along here on our account. Add us here👻 https://t.co/…" +05/11/2017,Sports_celeb,@prod84,That new new @primitiveskate. https://t.co/A5rdeYFs0H. https://t.co/Dk9dK9K5Zn +05/08/2017,Sports_celeb,@prod84,Think I can hang with an Olympic Athlete? Watch me “train” w/ @allysonfelix on #CanIHang now on @go90Zone… https://t.co/ez4Hb6yKwe +05/05/2017,Sports_celeb,@prod84,My new signature @glassysunhaters from the ♠️♥️High Roller collection♣️♦️are now available. ☑️Get yours here:… https://t.co/ecpLS3ylxf +05/04/2017,Sports_celeb,@prod84,#TBT 📷 @blabacphoto https://t.co/PNkIZnpxZ8 +05/04/2017,Sports_celeb,@prod84,Went head to head with my boy @Mikey_Tay1or on @TransWorldSKATE newest episode of Skate Nerd. Who do you think won?… https://t.co/Qf9fZXogMN +05/03/2017,Sports_celeb,@prod84,"Note to self: Don’t drop the ball! Thanks for the lesson, @JabrillPeppers Check out #CanIHang now on @go90… https://t.co/Mvtvd2bRNW" +05/01/2017,Sports_celeb,@prod84,Super excited to share a sneak peek of my new show #CanIHang Check out the premiere episode only on @go90… https://t.co/G5zfbC2LaW +04/29/2017,Sports_celeb,@prod84,"Carlos Ribeiro Fruit Party deck, available now: https://t.co/oH5TVppRm9 https://t.co/QAyB3fYSPI" +04/28/2017,Sports_celeb,@prod84,Welcome to the squad @laceybaker @nikesb https://t.co/26rq3GByWc +04/27/2017,Sports_celeb,@prod84,"As you know I love a good cigar. See why on the latest episode of ""Obsessed"" from @go90 at https://t.co/s8QsDjEI21… https://t.co/CdMGJSNd1i" +04/27/2017,Sports_celeb,@prod84,😍 @primitiveskate https://t.co/QsKH18zfqx +04/25/2017,Sports_celeb,@prod84,Need help with nollie late flips? @CarlosRibeirol has you covered. Check his trick tip. @nikesb https://t.co/wd3jWTBMAa +04/21/2017,Sports_celeb,@prod84,"Devine Calloway ""Doves"" @primitiveskate board available now at your local shop and https://t.co/UriKrjBSDz https://t.co/uOcShKWLB8" +04/21/2017,Sports_celeb,@prod84,Get out and enjoy the ☀️ this weekend with @glassysunhaters Grab 10% off here: https://t.co/mGPq7KyGfu https://t.co/YaT3j1rTSo +04/14/2017,Sports_celeb,@prod84,"New @primitiveskate ""Vision Test"" decks available in shops and at https://t.co/UriKrjBSDz. https://t.co/iqEfTWCsn5" +04/09/2017,Sports_celeb,@prod84,RT @primitiveskate: Vision Test series available now at https://t.co/TH4m7sh0BE. Free shipping and grip in the US. https://t.co/UEGo2rgabR +04/08/2017,Sports_celeb,@prod84,"RT @primitiveskate: .@prod84 ""Late Fee"" board, available now online and in shops. https://t.co/asr3XgYfSl 🍿 #primitiveskate https://t.co/UH…" +04/05/2017,Sports_celeb,@prod84,"Looking forward to Saturday, who's coming through? @primitiveskate https://t.co/LcloGmX5Mg" +04/04/2017,Sports_celeb,@prod84,.@primitiveskate available at https://t.co/00S3yU4Y8R https://t.co/Xk9TnesyI9 +03/30/2017,Sports_celeb,@prod84,RT @primitiveskate: New Mexico April 8th! Who's rolling through? #primitiveskate https://t.co/QqB4M84B6c +03/28/2017,Sports_celeb,@prod84,Watch me fool a fan on @realchriswebber #FullCourtPranks TONIGHT 10/9C @truTV https://t.co/PJVnJhlXyp +03/21/2017,Sports_celeb,@prod84,"Catch me sweeping some steps and more this year during the 2017 @StreetLeague @nikesb World Tour +Tickets go on sale… https://t.co/uzUrvso4he" +03/20/2017,Sports_celeb,@prod84,This is not the new @shanejoneill part is 🔥 Watch it here: https://t.co/AarXCtWVPo https://t.co/ug79xaLYkH +03/17/2017,Sports_celeb,@prod84,"Keep it classy this St. Patty's ☘️with @glassysunhaters ☘️ +https://t.co/l2p1jKpIfz https://t.co/NXIvXWaXgn" +03/17/2017,Sports_celeb,@prod84,Gearing up for the weekend. Where are you guys hitting up for the weekend sesh? @primitiveskate https://t.co/VqBp6cP38M +03/16/2017,Sports_celeb,@prod84,Setup a fresh @primitiveskate @nicktucker deck. The old one has allot of life left so I gave it to a kid that could… https://t.co/18VoCDTssr +03/15/2017,Sports_celeb,@prod84,"Foooour Wheels Live! Episode #5 Me vs. @jeremerogers premieres tonight at 6pm pst only on ETN +Download in the App… https://t.co/4hVFXrJtP3" +03/14/2017,Sports_celeb,@prod84,Sammy Perales from our @primitiveskate warehouse just dropped a part 📹 by: Kyle Steneide Full part here:… https://t.co/7DvtndrLoZ +03/14/2017,Sports_celeb,@prod84,"Sam Perales ""Look Ahead "" Part: https://t.co/Vfc7bNTlbo via @YouTube" +03/11/2017,Sports_celeb,@prod84,Get out in the ☀️ this weekend with @glassysunhaters 😎. Get 10% off here: https://t.co/l2p1jKpIfz https://t.co/Gj9CwLNBLc +03/09/2017,Sports_celeb,@prod84,"The @nikesb Dunk, 15 years & still going strong. ☑️ the @VICE documentary on the dunks history at… https://t.co/DoOGqY3vfU" +03/03/2017,Sports_celeb,@prod84,"Check out the new @SDiegoNajera ""Homecoming"" video and watch Diego's journey to becoming @primitiveskate newest pro… https://t.co/CEBWMEYbXQ" +03/01/2017,Sports_celeb,@prod84,"RT @nikesb: Back in classic form, @Sean_Malto kicks off the Elite Squad video series. + +Watch https://t.co/fHmWMreNqm https://t.co/UihrwcOmXw" +03/01/2017,Sports_celeb,@prod84,"RT @primitiveskate: .@prod84's new ""Late Fee"" deck is available now at https://t.co/HdFELfGlZK https://t.co/4b8gUITkEQ" +03/01/2017,Sports_celeb,@prod84,"My new @primitiveskate ""Late Fee"" board is available now. Check it and the other new Spring drops.… https://t.co/6x7vhwQOjV" +02/27/2017,Sports_celeb,@prod84,RT @primitiveskate: Happy Birthday to our CEO and #PrimitiveSkate founder @heathmoe seen here smith grinding in Toronto on our Canada tour… +02/26/2017,Sports_celeb,@prod84,"RT @nikesb: From an icon to a young gun. Introducing the Nike SB Dunk Elite x @sean_malto. +Learn more https://t.co/T6qz4pQKSN https://t.co…" +02/25/2017,Sports_celeb,@prod84,It's essential to make sure the photographer's camera is always ✨📷✨ https://t.co/JH5HiTNSGf +02/25/2017,Sports_celeb,@prod84,"RT @nikesb: Classic silhouette. Remixed for 2017. +The Nike SB Dunk Elite. Designed by @sean_malto. +Learn more https://t.co/T6qz4pQKSN https…" +02/25/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84 drizzling the crunchiest of run ups with the polyester resin we know and love as Bondo 📷 Oliver Barton #Primit… +02/24/2017,Sports_celeb,@prod84,#tbt stair hopping 📹 Kyle Steneide @primitiveskate https://t.co/v9NalEwa95 +02/24/2017,Sports_celeb,@prod84,"RT @VentureTrucks: Hit the link below to see everything new from the Venture squad for Spring 👑 + +https://t.co/QYjxns8SFw https://t.co/VlLuo…" +02/23/2017,Sports_celeb,@prod84,"RT @nikesb: The Nike SB Dunk OG HI. + +🌎🌍🌏 https://t.co/SgiCMCrNfk +🇺🇸 (7AM PST) https://t.co/DKcNO0h7BH" +02/23/2017,Sports_celeb,@prod84,A Lil something from yesterday....🎥 Alan Hannon @primitiveskate https://t.co/61l4lapXT0 +09/13/2016,Sports_celeb,@BAM_MARGERA,Enter to win a new iPhone 7 https://t.co/sbW6wq7exP #win #apple #iphone7 #winiphone7 #giveaway +11/03/2015,Sports_celeb,@BAM_MARGERA,Support my friend's new project by liking her page! #anaanamusic #shylove #berlin https://t.co/3vgxkbkKv7 https://t.co/TTv7RiBaEM +08/19/2015,Sports_celeb,@BAM_MARGERA,If you like dark electro pop – this is the account to follow: @AnaAnaMusic /BM +08/19/2015,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: I've heard of the junk in the trunk but had never imagined the flip side of that.😳🐘 http://t.co/98KO7TfK3u +08/19/2015,Sports_celeb,@BAM_MARGERA,"RT @30SECONDSTOMARS: I would've kept you forever, but we had to sever. ✖️ http://t.co/iW7LnBjwSF #ATTACK #MARSX #ABeautifulLie" +08/19/2015,Sports_celeb,@BAM_MARGERA,"Hey check out my friend's new music project ANA ANA: https://t.co/LUvq0WEWNS +https://t.co/Y2RG6rDkDl /Cheers, BM" +03/10/2014,Sports_celeb,@BAM_MARGERA,Wow much Miley. http://t.co/Qf9HVpcABm +12/23/2013,Sports_celeb,@BAM_MARGERA,RT @jeremysaffer: the @metalinsider top shoots of 13 @AWhiteGluz @twbd @bam_margera @chrismotionless @montepittman @PiggyD @MissScabbia htt… +10/16/2012,Sports_celeb,@BAM_MARGERA,RT @thekatvond: Fear is so damn frustrating. +10/12/2012,Sports_celeb,@BAM_MARGERA,RT @deadmau5: FUCK YEAH HALLOWEEN!!!!! http://t.co/3g7Jv4oR +10/11/2012,Sports_celeb,@BAM_MARGERA,"RT @RyanSeacrest: So much ending this year…The Office, Jersey Shore, Twilight, Gossip Girl, LMFAO. Maybe the Mayans are right." +10/11/2012,Sports_celeb,@BAM_MARGERA,RT @thekatvond: ...too romantic for my own good... +10/10/2012,Sports_celeb,@BAM_MARGERA,"RT @hollymadison: Goodnight, Friends! http://t.co/WQYtRlSg" +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: forever inked... RT @NIKKY3TEARS: Dunn tribute tat! #tattoo http://t.co/xFDwbzaN +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: RT @dickhouseworld: cute product alert: @LyRokz wrist bands http://t.co/Qkh5ROcv +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: I see this all over town too much! #NYC really needs to work on this issue!!! http://t.co/BuEgV5Ok +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @katyperry: Something's brewing... http://t.co/aiIWC8jZ +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @deadmau5: every try pumpkin butter? yeah me neither. +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: The 30 Worst Dressed Celebs From The 2012 Awards Season! http://t.co/7FU2DSGp +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @CNN: Skydiver aims for supersonic jump from the edge of space: http://t.co/E5NyaB11 +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: RT @dickhouseworld: new episode of @ridiculousness tonite on @mtv 10/9C.—guest stars @NikkiBellaWWE and @WWE_BrieBella ... +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: what the man under the rainbow said! RT @dickhouseworld: happy birthday to @TravisPastrana! http://t.co/KVbyFmRU +10/09/2012,Sports_celeb,@BAM_MARGERA,"RT @matdevineslife: ""Death in the Afternoon"": absinthe and champagne" +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: The cold air reminds me of my family up north. I feel at peace right now. Love the night. It's when I feel most ali ... +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @NiallOfficial: Just got home and look what @new_era_caps have sent me! Thank you soo much ! #iloveasnapback http://t.co/6wWFCksl +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @JimCampbellTFR: DOG NEWS: Dog opens newly delivered iPhone 5. Dog thinks dog has helped http://t.co/Mw8iXyNA +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @MamBargera: We all need more Bam Margera in our lives. The world would be a better place. +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @batiekear: I liked a @YouTube video from @honeaa http://t.co/5Sb2Ml1I Bam Margera reads Fifty Shades of Grey +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @thesulk: I watch old tv shows because it keeps me connected to the me who no longer exists. +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: i have testicles—two testicles. RT @julioguaramata: @jackassworld I met and my best gift would be that i followed and ... +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @realjknoxville: Much love and respect to Frank Ocean. A brave thing to do, and the right thing to do. Sincerely, Knoxville" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: I'm on SpongeBob this Saturday the 21st at 800pm Eastern. Here's a pic of my character. I play stuntman Johnny Krill ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @PaulCastronovo: @SteveO @PaulandYoungRon The legend Steve o on our show now #jackass +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: My friend @JohnHannafin is having an art show! Open Studio TONIGHT 6-9 during West Chester GalleryWalk!! 19S.Church ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @matdevineslife: Start your Friday smiling to a nice little Mel Gibson rant tape http://t.co/buvIn0l9 +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @SkateboardMag: Free Fabes Lost Part http://t.co/Xxu7lT4c +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Sisqo305: @steveo tattooing at the show.. http://t.co/OtrPVyDu +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @nicolerichie: ""I had my 15 minutes of fame"" - Laser Discs" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: Chris Brown's Ex Karrueche Tran Is Broken Up & Blames Rihanna For Split! http://t.co/lUV7WPiJ +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @dickhouseworld: photo of the day with @iamweeman, @PrestonLacy and @rickkosick ... oompa loompas are for the birds! http://t.co/7GEFWoCl" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: peeping wee wee man... RT @PrestonLacy: This is why you should always look both ways before peeing. http://t.co/DQ96sUbK +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @matdevineslife: ""When you think that in this cold, violent universe that Paris exists- There's nothing happening on Jupiter or Neptu ..." +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @tonyhawk: If anyone wants to buy cool prints of my IG photos: http://t.co/ZO7d7kEn or just print them yourself; I've http://t.co/ku ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: Learning to skydive. Somewhere over lake perris california. http://t.co/rlFvAOZ2 +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: “@NicolO_idiot: bueno ahora me voy eschando buen rock !! a @hellocleve como me encanta la voz de @Ryan__cleveland ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @30SECONDSTOMARS: The Latest from THE LAB - http://t.co/Z7mt7dti +09/07/2012,Sports_celeb,@BAM_MARGERA,"Hey, vote for my buddy CHRISTOPH GROMER http://t.co/mH26Fzxa LOVE. BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"Hey, please vote for my buddy CHRISTOPH GROMER: http://t.co/mH26Fzxa +Love BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"I need YOUR help! Vote for CHRISTOPH GROMER http://t.co/mH26Fzxa + +<3 BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"show me some follower power and vote for CHRISTOPH GROMER http://t.co/mH26Fzxa +<3 BM" +09/04/2012,Sports_celeb,@BAM_MARGERA,"heeey, please vote for my buddy CHRISTOPH GROMER http://t.co/mH26Fzxa + +love, BM" +09/14/2011,Sports_celeb,@BAM_MARGERA,@jackassworld please RT and help my friend Andre by voting here: http://t.co/kWd22iT BM +12/13/2016,Sports_celeb,@TravisPastrana,Check out what our @ObertoBeefJerky contest winners got to do when they visited Pastranaland! Always a good time!… https://t.co/eoH9CBFGJ6 +11/30/2015,Sports_celeb,@TravisPastrana,Don't miss out on the @ethika Cyber Monday sale starting tomorrow at https://t.co/ScCKJDKHdv!! https://t.co/AHuoOffWHp +10/21/2015,Sports_celeb,@TravisPastrana,RT @R2Rfoundation: Join us & the @NitroCircus crew Nov. 5th from 7-10pm at @k1speed in Torrance! https://t.co/PnG7qJva21 #RaceforRoner http… +10/09/2015,Sports_celeb,@TravisPastrana,#trustfall #lifeONtour @NitroCircus @sheenyfmx Filming credit to @Toddmeyn http://t.co/MTVdZkHQxK +09/26/2015,Sports_celeb,@TravisPastrana,Watch @JDayGolf’s crazy journey to the top of the golf world in #NeverSayDie https://t.co/TXso4c8efk +09/26/2015,Sports_celeb,@TravisPastrana,Happy birthday! https://t.co/NNeXhXqyNn +09/26/2015,Sports_celeb,@TravisPastrana,"RT @MikeAdamOnAir: .@TravisPastrana (from @NitroCircus) talks fears, family, and MORE! Watch: http://t.co/JNsxP6i5pu #TravisPastrana http:/…" +06/18/2015,Sports_celeb,@TravisPastrana,RT @redbull: #TBT to a sick @TravisPastrana backflip (at the 1:00 mark): http://t.co/xGQKviTFtB http://t.co/Xqx1ZA7fRm +06/07/2015,Sports_celeb,@TravisPastrana,"RT @FruitOfTheLoom: Travis got bucked, but stayed tucked. Check out his unbelievaBull #XGames performance. #TuckTest http://t.co/0UMvlb0PSL" +06/06/2015,Sports_celeb,@TravisPastrana,RT @FruitOfTheLoom: LIVE on #Periscope: @TravisPastrana rides our @FruitoftheLoom mechanical bull #TuckTest @XGames! #xgames https://t.co/x… +06/06/2015,Sports_celeb,@TravisPastrana,I’m about to ride a mechanical bull @XGames with @FruitoftheLoom. Watch live on #Periscope! #TuckTest #XGames +06/05/2015,Sports_celeb,@TravisPastrana,#XGames Correction: I’m riding the mechanical bull at the @FruitoftheLoom #TuckTest tent 3-5PM Sat. Pics + autographs too. See u there. +06/05/2015,Sports_celeb,@TravisPastrana,Hey all. I’ll be riding the mechanical bull @FruitoftheLoom’s #TuckTest event tomorrow at the #XGames from 5-7PM. Who’s in?! +06/03/2015,Sports_celeb,@TravisPastrana,"#Truth, I’m in the new @SkylandersGame SuperChargers trailer! #Skylanders http://t.co/Qof7Zy7egZ http://t.co/zxi35A64kP" +04/03/2015,Sports_celeb,@TravisPastrana,You can support @R2Rfoundation & win an exclusive VIP package to this year’s @MotoGP at @circuitamericas here http://t.co/AQc90sb6qs +04/02/2015,Sports_celeb,@TravisPastrana,"Looks like @mattwhyattrides and I have a different way to get ready for @nitrocircus.. 👍 @redbull +https://t.co/uMdlXrZXle" +03/30/2015,Sports_celeb,@TravisPastrana,Forgot about the steering wheel being on the right side of the car here in Australia.. http://t.co/vCltdBkmGw +03/26/2015,Sports_celeb,@TravisPastrana,"Having some fun in Australia with @wcmx4life +https://t.co/KQKVN6hRT2" +03/05/2015,Sports_celeb,@TravisPastrana,RT @KMCWheels: The #Mint400 Pit Crew Challenge presented by #KMCwheels is just over a week away. Here's a sneak peek at the... http://t.co… +02/17/2015,Sports_celeb,@TravisPastrana,"""On Any Sunday, The Next Chapter"" is now available and it's epic. Check out http://t.co/uBmDTGBfIy to watch it now. +https://t.co/a9W4Bs15I0" +01/29/2015,Sports_celeb,@TravisPastrana,Epic day w/ the @nitrocircus crew. @jedmildon knows how to build a roll in! His bmx jumps are bigger than fmx jumps http://t.co/cGeGh16UDr +01/27/2015,Sports_celeb,@TravisPastrana,"Here's to the next one billion views @redbull 👍👍 + +https://t.co/nQ1w9WJXaY" +01/18/2015,Sports_celeb,@TravisPastrana,Epic Sx lites race @minicoop175 impressive never giving up/riding his ass off @tbowers911 wins interview of year! rest of season will be fun +01/16/2015,Sports_celeb,@TravisPastrana,"Still pumped on the @redbull @PolarisRZR Camp Ride in Glamis with @BryceMenzies7, @rendawgfmx & @Levi_LaVallee https://t.co/LN863JtDeI" +12/18/2014,Sports_celeb,@TravisPastrana,Went to Abu Dhabi for a @nitrocircus show & stayed and filmed for the tv show. Epic adventures with the crew. http://t.co/rY71lGIjM2 +10/17/2014,Sports_celeb,@TravisPastrana,Great work as always by @redbull http://t.co/5vyW7urLD0 #artOfRacing #RedBullGRC +10/16/2014,Sports_celeb,@TravisPastrana,@NitroCircus @StreetBikeTommy @Erikroner @chadkagy @Special_Greg @raedrianalynne won my signed helmet - she tweeted through the pain! +10/16/2014,Sports_celeb,@TravisPastrana,"@raedrianalynne @NitroCircus we love working through the pain, so you're the winner of my signed helmet! send a DM to @NitroCircus to get it" +10/16/2014,Sports_celeb,@TravisPastrana,"@EpicSmurf_tw early 2016, we loved Glasgow and can't wait to get back" +10/16/2014,Sports_celeb,@TravisPastrana,@ChaseThomas_27 @NitroCircus what's up! #NitroCircusLive +10/16/2014,Sports_celeb,@TravisPastrana,@lawlessmatt3 get ready for the 2015 schedule announcement soon! +10/16/2014,Sports_celeb,@TravisPastrana,@shawnmacgregor @NitroCircus get ready for the announcement of new tour dates....... I think you are going to be pumped! #NitroCircusLive +10/16/2014,Sports_celeb,@TravisPastrana,"@chasegravens31 @NitroCircus they are specially built, but I am trying to get someone to make more of them, they are awesome" +10/16/2014,Sports_celeb,@TravisPastrana,"@KyleRamsey64 straight rhythm was awesome! 500cc 2 stroke, are you kidding #nitrocircuslive" +10/16/2014,Sports_celeb,@TravisPastrana,"@julia_a__ i didn't, but we coming back to Canada next year, so I want to!" +10/16/2014,Sports_celeb,@TravisPastrana,"@CassiFinkbeiner @StreetBikeTommy @Special_Greg @chadkagy @Erikroner The front flip is scary, but all the bicycle tricks scare me most" +10/16/2014,Sports_celeb,@TravisPastrana,@alexyess596 traveling the World with all your best friends is amazing! #nitrocircuslive +10/16/2014,Sports_celeb,@TravisPastrana,Is everybody ready for #nitrocircuslive on @MTV2 I've got a prize for someone at the end of the episode! +10/09/2014,Sports_celeb,@TravisPastrana,@NitroCircus @Rav_413 +10/09/2014,Sports_celeb,@TravisPastrana,@NitroCircus Rad Ravi got the helmet and signed poster! +10/09/2014,Sports_celeb,@TravisPastrana,"@Rav_413 well Rad Ravi.. Hopefully I'll get to meet you one day but until then, have fun and be safe! You r the winner of a new AGV helmet!" +10/09/2014,Sports_celeb,@TravisPastrana,@julia_a__ @StreetBikeTommy @chadkagy @Special_Greg @Erikroner @BilkoFMX Thanks for watching and being a part of it! +10/09/2014,Sports_celeb,@TravisPastrana,@BilkoFMX @kaelagonzalez16 @NitroCircus negative ghost rider! haha. I've done those and I hate them! but it's fun watching bilko! +10/09/2014,Sports_celeb,@TravisPastrana,@iluvracing42 @NitroCircus Not yet! just getting her on the strider! +10/09/2014,Sports_celeb,@TravisPastrana,@Hthomas80 @StreetBikeTommy @chadkagy @BilkoFMX @Special_Greg @Erikroner my parents. It's what we did as a family on the weekends growing up +10/09/2014,Sports_celeb,@TravisPastrana,@JoyLSvoboda @NitroCircus @StreetBikeTommy @BilkoFMX @Erikroner @Special_Greg The guys are good at crashing. surprisingly few injuries.. +10/09/2014,Sports_celeb,@TravisPastrana,@MelCross18 @NitroCircus we are always testing new ramps and landings. #ActionFiguresTheMovie will highlight a lot of what we hope to bring +10/09/2014,Sports_celeb,@TravisPastrana,@cjstrong34 @NitroCircus @Erikroner @StreetBikeTommy @chadkagy @Special_Greg @BilkoFMX Everyone sends it but @Madd_RWilly is ridiculous +10/09/2014,Sports_celeb,@TravisPastrana,@729IGH @lynzskate I need handlebars! haha. I'm so uncoordinated on boards. love to watch my wife on hers though. +10/09/2014,Sports_celeb,@TravisPastrana,@scotty33fleming @NitroCircus @Erikroner @StreetBikeTommy @chadkagy @Special_Greg @BilkoFMX The catering is amazing! I agree with erik! +10/09/2014,Sports_celeb,@TravisPastrana,@bfresh2424 Thanks! +10/09/2014,Sports_celeb,@TravisPastrana,@ABC4StormChaser it was pretty harsh. my head was only a few inches from the top of the truck so there wasn't much suspension upside down! +10/09/2014,Sports_celeb,@TravisPastrana,@ParadiseXxLostX @BilkoFMX @StreetBikeTommy @Special_Greg @chadkagy Getting to travel with friends + family and challenge yourself everyday +10/09/2014,Sports_celeb,@TravisPastrana,"@julia_a__ no sleep and trying to push yourself night after night when your tired. when one person gets sick on tour, everyone gets sick." +10/09/2014,Sports_celeb,@TravisPastrana,@HunterDillon19 it feels like every new stunt is the craziest! I think anytime you don't know what's going to happen feels equally bad! +10/09/2014,Sports_celeb,@TravisPastrana,@TinaThomsen4 @NitroCircus @Erikroner @StreetBikeTommy @BilkoFMX Nice Bilko. I do it because i get to be around my family and awesome people +10/09/2014,Sports_celeb,@TravisPastrana,@Bianca_X23 @StreetBikeTommy surprises a lot of people with his trampoline and drift skills.. but i was shocked he didn't roll the car! +10/09/2014,Sports_celeb,@TravisPastrana,@BALLER__15 @NitroCircus anyone passionate about their sport who's pushing the limits of what's been done in their sport will catch our eye. +10/09/2014,Sports_celeb,@TravisPastrana,@sparks99_1 @nitrocircuslive careful what you ask for! haha. been a lot of fun but scary! lots of new ramps and tricks with mixed results +10/09/2014,Sports_celeb,@TravisPastrana,@HulaSandia @t_yates1 @StreetBikeTommy @NitroCircus yeehaa! thanks for watching. +10/09/2014,Sports_celeb,@TravisPastrana,@OSnapItzAshley1 we never expected there would be so many people like us in the world. It's been an amazing ride and it keeps getting better +10/09/2014,Sports_celeb,@TravisPastrana,tweeting during World premiere of @NitroCircus Live Season4 on MTV2 @ 11pm ET. Use my @ & #nitrocircuslive 2 ask ? 1 will win an agv helmet +09/17/2014,Sports_celeb,@TravisPastrana,Wow #BJBaldwin really getting creative in his trophy truck! #recoilTWO http://t.co/YOTeVPPD1X +09/11/2014,Sports_celeb,@TravisPastrana,RT @redbull: .@TravisPastrana is in for Red Bull Straight Rhythm http://t.co/Ul7PdRucPp http://t.co/0F3M8o6ul2 +09/11/2014,Sports_celeb,@TravisPastrana,"Officially throwing my leg over the 500 RM-Zilla for @redbull #straightrhythm! http://t.co/3tGcIoV81V +https://t.co/kxVvk0hLOw" +08/21/2014,Sports_celeb,@TravisPastrana,Happy birthday @BryceMenzies7! http://t.co/C1ytEP3KoQ +08/21/2014,Sports_celeb,@TravisPastrana,RT @redbull: How long can you hold your breath? #RBHighPerformance takes athletes to new depths in Hawaii http://t.co/2aUdiuXUz6 http://t.c… +08/20/2014,Sports_celeb,@TravisPastrana,The ocean floor was over 100 feet down & 1/2 of us made the trip! #RBHighPerformance http://t.co/NUAQVWWPuM http://t.co/7F9q6GI3Ry +08/16/2014,Sports_celeb,@TravisPastrana,Stoked to see the @roushfenway #60 car in Victory Lane today at the #NCH200!! Congrats @Chris_Buescher! http://t.co/b8wYdMw94f +08/13/2014,Sports_celeb,@TravisPastrana,Submit your best off road pic using #PlayGroundEarthApproved & you could win a trip for 2 to the Vegas @LOORRS race http://t.co/u94rAdhGQF +08/05/2014,Sports_celeb,@TravisPastrana,First day of the #rbhighperformance free diving class. In the 4minute breath hold club with these guys! http://t.co/rSDUBsWnin +07/29/2014,Sports_celeb,@TravisPastrana,Thanks to @BFGoodrichTires for putting together this video from my #LOORRS debut http://t.co/3lnyzpLv9r #BFGRacing #BFGoodrich #BFGPlay +07/06/2014,Sports_celeb,@TravisPastrana,"RT @redbull: Tune in NOW as @RBSigSeries continues the action for #TheMint400onNBC! http://t.co/chUSLWFeKq +https://t.co/dNVnxgh271" +06/24/2014,Sports_celeb,@TravisPastrana,RT @BryceMenzies7: Make sure you tune into @nbc July 6th at 11am PST to watch @travispastrana & myself take on @themint400 @RBSigSeries htt… +06/16/2014,Sports_celeb,@TravisPastrana,RT @RBSigSeries: Watch @TravisPastrana kick up dirt with the best of them in #TheMint400onNBC July 6. http://t.co/4JeYbKxr35 +06/10/2014,Sports_celeb,@TravisPastrana,"In the 4 qualifying rounds I took 1st, 2nd, 3rd, & 4th in the semis. Thx to @srtusa for the epic car & all the work. http://t.co/xqfmAR8Kle" +06/06/2014,Sports_celeb,@TravisPastrana,Won my first heat race here at @XGames #Austin. My @redbull @srtusa #subaru is on point. Happy to be back in the hunt http://t.co/rXVY9qimv0 +06/05/2014,Sports_celeb,@TravisPastrana,I'm giving away 4 signed @kmcwheels that I'm running at @xgames this weekend. Click here for your chance to win http://t.co/PLSL9e6gR3 +05/21/2014,Sports_celeb,@TravisPastrana,Check out the @dcshoes DEFYCONVENTION \ 20 YEARS OF DC IN PHOTOGRAPHS book at: http://t.co/f4HTcMBZhn http://t.co/B9RHppuWMi +04/26/2014,Sports_celeb,@TravisPastrana,Almost time to go racing at @LOORRS with @MenziesRacing! Thanks for the tips @BryceMenzies7 and @therickyjohnson http://t.co/HhsZkd1FRf +04/25/2014,Sports_celeb,@TravisPastrana,RT @LOORRS: travispastrana - Getting some tech done. @menziesracing http://t.co/ZsZQs6d95a +04/24/2014,Sports_celeb,@TravisPastrana,"Hello #GKCfest! @trevorjacob93 invited us up for the shenanigans! Mx, bmx,ladder bridge road gaps for mtn bikes http://t.co/XkcaJfjQiP" +04/17/2014,Sports_celeb,@TravisPastrana,"RT @runnersworld: WATCH: @JSpithill, skipper of the yacht that won the America's Cup, shares his training regimen: http://t.co/jCpKMKgAaB #…" +04/17/2014,Sports_celeb,@TravisPastrana,RT @caseywasserman: I’m supporting the #RBCGolf4Kids Challenge. Who are you backing? http://t.co/bsSqjyvXeW I’m backing #RBCAmes #RBCMahan … +04/17/2014,Sports_celeb,@TravisPastrana,"My mom is the best.. ""Gram"" went all out for Addy's first Easter celebration! http://t.co/10G5mT5ic9" +04/02/2014,Sports_celeb,@TravisPastrana,What is your ultimate playground? Your best shots tagged with #UltimatePlayground could get you some great prizes http://t.co/NQFn4BCKdQ +03/21/2014,Sports_celeb,@TravisPastrana,RT @redbull: Who picked Kansas to take it to the house? This guy! Here's @TravisPastrana's #RedBullBracket http://t.co/NtCpz11pEt http://t.… +03/15/2014,Sports_celeb,@TravisPastrana,Almost time at the #mint400 @redbull http://t.co/9QgerM7c6n +03/14/2014,Sports_celeb,@TravisPastrana,RT @Swellboardshop: Now open Saturday March 15th in Mooresville off exit 31 and Hwy 77 at Langtree at the Lake. Stop by… http://t.co/mkedAo… +03/13/2014,Sports_celeb,@TravisPastrana,RT @redbull: Wings for Life #WorldRun: Barney’s everyday story: http://t.co/pYioSE9lO6 http://t.co/uq16AGDT85 +03/12/2014,Sports_celeb,@TravisPastrana,Want to win a signed piece of the truck I'm racing at @TheMint400Race? Enter here: http://t.co/4JFPRZ2Nxp +03/11/2014,Sports_celeb,@TravisPastrana,RT @redbull: Ever wondered how @TravisPastrana and @NitroCircus come up with their gnarly tricks? #WhatIf http://t.co/le8sVxTS1p http://t.c… +02/24/2014,Sports_celeb,@TravisPastrana,Can't wait to race my @MenziesRacing prepped TT at the #Mint400 with @BryceMenzies7 http://t.co/eoOfy6OWmo +01/26/2014,Sports_celeb,@TravisPastrana,RT @BryceMenzies7: Had such a sick time at @NitroCircus last night! http://t.co/DXdEqZSwCu +12/23/2013,Sports_celeb,@TravisPastrana,@T_Davidson543 happy birthday buddy +12/18/2013,Sports_celeb,@TravisPastrana,"BTW, don't know when @MTV2 is going to announce this, but we filmed 2 bonus eps in Russia - they'll be ready in early 2014! #nitrocircuslive" +12/18/2013,Sports_celeb,@TravisPastrana,Wasn't that the greatest episode of #nitrocircuslive on @MTV2 ? I can't wait for the next Pastranland fun! +12/18/2013,Sports_celeb,@TravisPastrana,@pfelgner #nitrocircuslive sure will be! You? +12/18/2013,Sports_celeb,@TravisPastrana,@sparks99_1 You bet I will! I wouldn't miss the North America tour! I'll be at all the tour stops! #nitrocircuslive +12/18/2013,Sports_celeb,@TravisPastrana,@jacobdover1 #nitrocircuslive thanks Jacob. Nitro Circus 3D was amazing - do you think we should film another one??!! +12/18/2013,Sports_celeb,@TravisPastrana,@Brian_McGuire77 #nitrocircuslive too many! +12/18/2013,Sports_celeb,@TravisPastrana,@iSlayTweeets #nitrocircuslive this was the week of the biggest tricks we've ever tried. Need to perfect them now - few too many crashes! +12/18/2013,Sports_celeb,@TravisPastrana,@sam_mangine @NitroCircus #nitrocircuslive we are all so excited to be touring the USA - we have been waiting years for this! +12/18/2013,Sports_celeb,@TravisPastrana,@dhaniaa27 #nitrocircuslive because I am the slowest typer and get easily distracted watching TV! +12/18/2013,Sports_celeb,@TravisPastrana,@AgAmbergray17 @MTV2 @nitrocircuslive #NitroCircusLive it's going to get really crazy in this episode! +12/18/2013,Sports_celeb,@TravisPastrana,"@jenkinscaleb45 @NitroCircus #NitroCircusLIve It's a great place - I love being home, but especially love being home with all my friends!" +12/18/2013,Sports_celeb,@TravisPastrana,"Looking forward to actually being able to watch #NitroCircusLive on @MTV2 tonight! Happy to be back home, and tonight's ep is Pastranaland!" +12/11/2013,Sports_celeb,@TravisPastrana,Hope everyone liked that episode - next week's Tuesday @MTV2 show is a week of fun at my house - Pastranaland #NitroCircusLive +12/11/2013,Sports_celeb,@TravisPastrana,@julia_a__ @nitrocircuslive #NitroCircusLive we are a pretty well behaved bunch overall +12/11/2013,Sports_celeb,@TravisPastrana,"@Lucas_H38 @NitroCircus #NitroCircusLIve you'd love it, we all do" +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive It's about 55ft high - it is a long way down from up there +12/11/2013,Sports_celeb,@TravisPastrana,@JohnMcL25 @NitroCircus #NitriCircusLive Evel Knievel was an amazing inspiration +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive VIPs at the show get to ask me questions after practice is finished. It's really a fun time +12/11/2013,Sports_celeb,@TravisPastrana,@AndrewTHampson @NitroCircus #NitroCircusLive NO WAY! I have the greatest job in the WORLD! +12/11/2013,Sports_celeb,@TravisPastrana,@EmilC2012 #NitroCircusLive we are progressing all the time - double back is on our list - Dusty?! +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @NitroCircus #NitroCircusLive not know what is going to happen next - every day is amazing +12/11/2013,Sports_celeb,@TravisPastrana,"@minihorsey one day, one day! #NitroCircusLive" +12/11/2013,Sports_celeb,@TravisPastrana,@emilykateTJK @nitrocircuslive @NitroCircus #NitroCircusLive looking forward to see you in Cleveland too! +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive my favorite tour is coming right up! Our first tour of North America +12/11/2013,Sports_celeb,@TravisPastrana,"@julia_a__ @NitroCircus #NitroCircusLive I think the most inspirational is Wheelz, bravest are all the Godfrey Clan - so crazy!" +12/11/2013,Sports_celeb,@TravisPastrana,"@julia_a__ @NitroCircus I love to ride dirt bikes, play Big Buck Hunter and have fun with my friends! That's my job too!" +12/11/2013,Sports_celeb,@TravisPastrana,#NitroCircusLive Australia and New Zealand on the World Tour! @MTV2 +12/10/2013,Sports_celeb,@TravisPastrana,"Don't forget #NitroCircusLive MTV2 show at 11pm EST tonight. That'll be early for me - Showtime in Lille, France now! http://t.co/Csjr4iWLpR" +12/10/2013,Sports_celeb,@TravisPastrana,#nitrocircuslive time on MTV2 tomorrow night! I'll be here to answer all your questions. http://t.co/4CX54LOf3W +12/04/2013,Sports_celeb,@TravisPastrana,"Hope everyone enjoyed the @MTV2 shows tonight! See you again next week - same time, same place! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,@crashbobx pretty early in January - see you in Cleveland #nitrocircuslive +12/04/2013,Sports_celeb,@TravisPastrana,congrats to @jenn_salmon on winning a pair of tickets! DM @NitroCircus to get them sorted. Hope to see you at the show! +12/04/2013,Sports_celeb,@TravisPastrana,"@AMBERrLLOYD it's our first US tour, so all of them! We are all so pumped to be able to bring the shows home #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@Temulentus yes, we are stoked to be coming - Europe, then North America, Mexico and then South Africa! So much fun in the next 2 months" +12/04/2013,Sports_celeb,@TravisPastrana,"@nitrogirl199 @jolenevanvugt63 Bilko, Bilko and Bilko! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@AmberL_87 travel is amazing - we've been in Sweden, Norway, Germany, UK, Holland all in the last 10 days! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@QueenMargaret99 We love Drop Kick Murphys - I've been to see them in concert, they're awesome live #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@AMBERrLLOYD not embarrassed, but we get determined to land them next time #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@FossBrian I'm going to be at Nitro City, but I know that Dusty is going and Haffey I think #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,@MikeGosnell314 grab VIP tickets to the North America shows and we will meet up. Watch out for episode 6 - all Pastranaland! +12/04/2013,Sports_celeb,@TravisPastrana,@Ghenneberry47 I think that everytime Wheelz lands his flip is my favorite part of the show #NitroCircusLive +12/04/2013,Sports_celeb,@TravisPastrana,"@MydoLeS #nitrocircuslive you missed 4 amazing shows in the UK, but we will be back for sure" +12/04/2013,Sports_celeb,@TravisPastrana,"@michellemitchh that's awesome, you will have the best time! #nitrocircuslive MSG show is going to rock!" +12/04/2013,Sports_celeb,@TravisPastrana,@ferrisMueller14 @Ghenneberry47 responding! #NitroCircusLive +12/04/2013,Sports_celeb,@TravisPastrana,@AMBERrLLOYD #nitrocircuslive I love traveling around the World! I have the best job ever - all my friends are with me too! +12/04/2013,Sports_celeb,@TravisPastrana,"@MydoLeS too many painful injuries, but I'm feeling great on tour now" +12/04/2013,Sports_celeb,@TravisPastrana,@larrysdildo_ @NitroCircus #nitrocircuslive sweet! Merry Christmas everybody! +12/04/2013,Sports_celeb,@TravisPastrana,@bigdogsk84life1 #nitrocircuslive you just need to be one of the most amazing action sports athletes in the World - or Tommy - or Crum +12/04/2013,Sports_celeb,@TravisPastrana,"@Brannddonnn Awesome, see you there" +12/04/2013,Sports_celeb,@TravisPastrana,@BecsterD @jolenevanvugt63 @NitroCircus #nitrocircuslive you are so right! I just texted her! +12/04/2013,Sports_celeb,@TravisPastrana,@Brannddonnn I am so looking forward to the MSG show! Can you imagine how pumped we are going to be??? Nitro Circus in MSG!!! +12/04/2013,Sports_celeb,@TravisPastrana,@julia_a__ @jolenevanvugt63 @NitroCircus We get the best food from our excellent caterers - they follow us on tour +12/04/2013,Sports_celeb,@TravisPastrana,"wake up, #nitrocircuslive time!!!!" +12/04/2013,Sports_celeb,@TravisPastrana,RT to WIN a pair of #NitroCircusLive tickets & tune in to back 2 back episodes of #NitroCircusLive 2nite on @MTV2 at 11/10c. +12/03/2013,Sports_celeb,@TravisPastrana,"I dont know what is better, Tommy being a Panda or new #NitroCircusLive episodes 2nite. I guess U get both 2nite! http://t.co/EI6eVkswTC" +12/03/2013,Sports_celeb,@TravisPastrana,I almost forgot to mention we will be giving away a pair of #NitroCircusLive tix as well as some Nitro and @EVSsports gear! Talk 2 U 2Nite! +12/03/2013,Sports_celeb,@TravisPastrana,I will be on here 2nite answering Q’s during the #NitroCircusLive episodes on @MTV2. 11/10c don’t forget to join in & watch the show! +12/03/2013,Sports_celeb,@TravisPastrana,"Just for you, we are doing another week of back2back #NitroCircusLive episodes. Tomorrow 11/10c on @MTV2 - Tweet me Q's during the show." +12/03/2013,Sports_celeb,@TravisPastrana,The #NitroCircisLive crew gets wild for the first time in Hong Kong! New episode tomorrow on @MTV2 at 11/10c. http://t.co/UvqBV055yj +11/30/2013,Sports_celeb,@TravisPastrana,RT @DirtFishRally: Book a 1/2 day class or longer at http://t.co/O8vbtR0PaJ and get the @TravisPastrana 199 pack http://t.co/zr2bZKSk1u htt… +11/27/2013,Sports_celeb,@TravisPastrana,"I'm going back to bed now! See you guys next week @mtv2 or #nitrocircuslive in Birmingham, UK on Thursday!!! Hope you enjoyed the show" +11/27/2013,Sports_celeb,@TravisPastrana,@Billydrski I can't wait to bring #nitrocircuslive home to North America in January!!!! +11/27/2013,Sports_celeb,@TravisPastrana,@Matts_Insanity Yes I am! Manchester show was off the hook last night! It's way too early now #nitrocircuslive touring life! Love it! +11/27/2013,Sports_celeb,@TravisPastrana,I know the #1 epic win! #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@vancoller23 @NitroCircus @jolenevanvugt63 @nitrocircuslive @MTV2 Yes! South Africa after North America in early 2014. #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,"@recklessrick514 @nitrocircuslive #nitrocircuslive we will be in MD in 2015, don't worry!" +11/27/2013,Sports_celeb,@TravisPastrana,@Bianca_X23 That trick is never easy and always scary +11/27/2013,Sports_celeb,@TravisPastrana,@bram_smith69 I'm so pumped to be riding my dirt bike again in #nitrocircuslive Europe tour - can't wait for North America in January!! +11/27/2013,Sports_celeb,@TravisPastrana,@julia_a__ Tune into episode 6 from my house - double flips and more! +11/27/2013,Sports_celeb,@TravisPastrana,"@Bianca_X23 Fail or win, as long as it is epic!" +11/27/2013,Sports_celeb,@TravisPastrana,@AMBERrLLOYD @NitroCircus @jolenevanvugt63 The #nitrocircuslive crew are the greatest - we have more fun together than should be allowed! +11/27/2013,Sports_celeb,@TravisPastrana,@77pedro77 I don't think I'll ever be a golfer! Maybe we can race golf carts like in New Zealand on #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@Himmself245 Yes you do! #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,"@mattportugal @Himmself245 Well, stay up and watch! It's 4.20am in the UK, and I'm hanging!" +11/27/2013,Sports_celeb,@TravisPastrana,@LowDogg1978 @nitrocircuslive We'll be coming to the south in 2015 +11/27/2013,Sports_celeb,@TravisPastrana,"@77pedro77 After a day in the foam pit, the ice bath is needed - never nice, but needed! #nitrocircuslive" +11/27/2013,Sports_celeb,@TravisPastrana,@facu_moy We are planning to come to Argentina soon #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@michellemitchh I am so pumped to be coming home with #nitrocircus in january 2014 +11/27/2013,Sports_celeb,@TravisPastrana,It's #nitrocircuslive time! +11/27/2013,Sports_celeb,@TravisPastrana,RT to Win a pair of #NitroCircusLive tickets & tune in to the #NitroCircusLive Season 3 Premiere 2nite on @MTV2 at 11/10c. +11/14/2013,Sports_celeb,@TravisPastrana,Congrats Bryce! RT @BryceMenzies7 I’ll be first off the line when the green flag drops on Friday for the #Baja1000 http://t.co/h05Sv3EaQ5 +11/11/2013,Sports_celeb,@TravisPastrana,My official statement concerning my future in @NASCAR https://t.co/j3IzXMOnR3 +11/08/2013,Sports_celeb,@TravisPastrana,Awesome hanging with Lucas this morning drawing pictures 2 be auctioned off 2 benefit kids like him who have Alpha-1 http://t.co/pfzAqcUWcw +11/08/2013,Sports_celeb,@TravisPastrana,RT @DirtFishRally: Stoked to see @TravisPastrana move onto the @GlobalRallyX main event here in Vegas +11/07/2013,Sports_celeb,@TravisPastrana,Stoked to announce #Nitrocircuslive Season 3 is hitting US TV Screens on @MTV2 from November 26th! Going to be the craziest season yet! +11/05/2013,Sports_celeb,@TravisPastrana,"Fun day with my girls @lynzskate, #AddyPastrana, and brother from another country @simontabron. #MrMom http://t.co/scrtLXJNVD" +11/01/2013,Sports_celeb,@TravisPastrana,Thanks to everyone at @KMCWheels for all the support this year! Car looks good for texas! http://t.co/DNXQrw4SqA +10/25/2013,Sports_celeb,@TravisPastrana,Going to be a good day! http://t.co/fRzKKa3BOa +10/22/2013,Sports_celeb,@TravisPastrana,. @EvsSports hooked up the #Pastranaland helmet collection! Thanks for keeping the @nitrocircus crew safe! http://t.co/LU1TWHojIL +10/18/2013,Sports_celeb,@TravisPastrana,So many of my hero's in 1 place! Great times last night at @alpinestars 50th anniversary party. Proud 2 b part of it http://t.co/Dp40DNWtHz +10/15/2013,Sports_celeb,@TravisPastrana,B.A.S.E jumping in Twin Rivers and two stroke week at @CRtwotwo's house in FL in the season finale of On Pace https://t.co/HU2d8VluKt +10/10/2013,Sports_celeb,@TravisPastrana,Proud of my wife @lynzskate. She qualified 1st 4 the #betterhalfdash. It's tonight at 530pm est. u can listen live on http://t.co/Rj3SyedhIl +10/09/2013,Sports_celeb,@TravisPastrana,I have the best mom! 30 years old and she's still making me car cakes! Guess I never really grew up. http://t.co/2gRX0LgxKv +10/07/2013,Sports_celeb,@TravisPastrana,New photos are up from this weekend at @kansasspeedway https://t.co/VIUuw7DmHY +10/02/2013,Sports_celeb,@TravisPastrana,"My buddy Knoxville & @dickhouseworld really hit a home run with this film. If u need a laugh, check out the trailer. http://t.co/uRXCmB76Av" +10/01/2013,Sports_celeb,@TravisPastrana,#BetterHalfDash practice last night. @lynzskate was quickest but all ladies within a half second! Excited 4 the race http://t.co/flrwBfLpUX +09/26/2013,Sports_celeb,@TravisPastrana,"Thanks to all my awesome sponsors 4 their support with Addy. Bottles, blankets, & bibs from @OGIO #SponsoredAtBirth http://t.co/Ild56ruyHW" +09/25/2013,Sports_celeb,@TravisPastrana,Congrats to my @redbull teammate @OracleTeamUSA Skipper @JSpithill on winning the @americascup today! http://t.co/ALZEoHym9L +09/24/2013,Sports_celeb,@TravisPastrana,"I'm helping @ClaireBLang & @SiriusXMNASCAR raise money for @The_USO Friday, 7- 9p ET @MonsterMile! Join us? Details: http://t.co/0m26pDO8TT" +09/20/2013,Sports_celeb,@TravisPastrana,First flight as a family. glad Addy likes planes. Just landed in Kentucky 4 NASCAR. Racing GRC Sunday in Charlotte. http://t.co/inqyF1gCIm +09/19/2013,Sports_celeb,@TravisPastrana,The guys installed a @redbull refrigerator next to my locker in the @Dodge #dart hauler! Awesome team! Thanks guys. http://t.co/xbclibOUr6 +09/18/2013,Sports_celeb,@TravisPastrana,The @Dodge #dart is almost ready 4 the @GlobalRallyX race at @CLTMotorSpdwy Sunday. Thanks 2 @DrivePetty 4 the help! http://t.co/z9Uzoqqi16 +09/17/2013,Sports_celeb,@TravisPastrana,"A @NASCAR_NNS race, @Dhdsjim's wedding, our baby shower and some pit bikes make for a crazy weekend - http://t.co/H7rEnWT7jX" +07/02/2018,Sports_celeb,@derekhough,🌅 https://t.co/ioBvr8vSMG +07/01/2018,Sports_celeb,@derekhough,This ladies brought the heat to our @NBCWorldofDance stage! 🔥https://t.co/Y84OdgDuOo +06/30/2018,Sports_celeb,@derekhough,"You won't believe this dancer's age! #WorldofDance +https://t.co/3UlsQRgRcu" +06/30/2018,Sports_celeb,@derekhough,"Eye on the prize +In a world filled with distractions, stay focused on your goals and dreams. Be relentless! Be reso… https://t.co/g7tNDFYawh" +06/29/2018,Sports_celeb,@derekhough,RISE https://t.co/CRqZiuUzS0 +06/28/2018,Sports_celeb,@derekhough,"THE TOUR +I’m coming to your city. +Get your tickets now! +LINK IN BIO ☝🏼 @ Everywhere https://t.co/CPsPlX6rjt" +06/28/2018,Sports_celeb,@derekhough,"“Listen closely and you will hear whisperings. +Follow them, and eventually you will discover +a voice so distinct in… https://t.co/eKlV1jiNBs" +06/27/2018,Sports_celeb,@derekhough,"Driving back from the beach and Celine decided to make an encore on the playlist. I was like “ Oh dang, Celine sang… https://t.co/zdXaqZ1uqR" +06/27/2018,Sports_celeb,@derekhough,Checking out the most viral dance videos on the internet with @SELFmagazine https://t.co/lfzO3EyLhM +06/27/2018,Sports_celeb,@derekhough,Thanks @charlesthorp! Check it out 👇 @MensJournal https://t.co/RYzaHQc27i +06/27/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Time travel is REAL. Don’t @ us. #WorldofDance https://t.co/XTxlw3iZLZ +06/27/2018,Sports_celeb,@derekhough,RT @adriana_salico: Setting the stage on fire!! 🔥🔥 @NBCWorldofDance https://t.co/RCNy1Lpm1y +06/27/2018,Sports_celeb,@derekhough,"RT @NBCWorldofDance: First things first, @EmbodimentTHEco is owning the #WorldofDance stage dancing to “Believer” by @Imaginedragons! +htt…" +06/27/2018,Sports_celeb,@derekhough,"RT @NBCWorldofDance: Talk about a comeback kid!!! Against all odds, @royalfluxdance is dancing their way into Duels! Who else is inspired?…" +06/27/2018,Sports_celeb,@derekhough,Another amazing episode of @NBCWorldofDance tonight !!!! Who was your favorite ? +06/26/2018,Sports_celeb,@derekhough,Just wait until you see what's next! #WorldofDance https://t.co/MC8hRUVDpO +06/26/2018,Sports_celeb,@derekhough,"🔥 Don’t forget to watch TONIGHT +@nbc 10/9C nbcworldofdance @ Los Angeles, California https://t.co/CezJ7WyMly" +06/26/2018,Sports_celeb,@derekhough,What do you all think of tonight’s episode of #runningwild with @BearGrylls ? https://t.co/7CKqOtb8if +06/26/2018,Sports_celeb,@derekhough,"About to go live on @peopletv’s #chatter to talk @NBCWorldOfDance, my tour, and more! Check it out here: https://t.co/lJFB2D6cDB" +06/25/2018,Sports_celeb,@derekhough,"“We’re really doing this” #runningwild +8/7c @NBC https://t.co/Mgn1JGIuZi" +06/25/2018,Sports_celeb,@derekhough,Natures cold plunge ❄️ #runningwild tonight on @nbc 8/9C @BearGrylls https://t.co/ADkM969qIO +06/24/2018,Sports_celeb,@derekhough,Tomorrow on @nbc 8/9c check out my epic adventure with @BearGrylls https://t.co/iIHnpFYKKd +06/24/2018,Sports_celeb,@derekhough,Thank you to everyone supporting the tour! All info at https://t.co/EZiF20Peuo https://t.co/fP1xzHIQnk +06/24/2018,Sports_celeb,@derekhough,Wow ! Such a brilliant and creative project. The first ever novel that incorporates dance within the book to move t… https://t.co/BJXJyiF3eP +06/23/2018,Sports_celeb,@derekhough,"This Monday don’t forget to catch me in the wilderness with my man @beargrylls ! nbcrunningwild @nbc @ Los Angeles,… https://t.co/tXbAslgS2I" +06/23/2018,Sports_celeb,@derekhough,Every performance is more shocking than the last! Don't miss @nbcworldofdance Tuesday. https://t.co/wSCmueJ0Ge +06/23/2018,Sports_celeb,@derekhough,"Thank you for the nomination my beautiful peeps! Love all my fans 🤟🏼#choicedancer @teenchoicefox +Link in bio to vo… https://t.co/Z49HLMnBpC" +06/22/2018,Sports_celeb,@derekhough,"This @nbcworldofdance performance made my heart soar! + https://t.co/6Pm0P5y5Ia" +06/21/2018,Sports_celeb,@derekhough,I tried to change the music but Hayley slapped… https://t.co/BpTzGCbaL5 +06/21/2018,Sports_celeb,@derekhough,Are you ready?! Because you know I am! Life in Motion is officially here and I couldn’t be more excited to share an… https://t.co/ilSqwCbtCV +06/21/2018,Sports_celeb,@derekhough,🔵Thursday advanced looking into the distance… https://t.co/Mm7T8Lagoy +06/20/2018,Sports_celeb,@derekhough,"Be still my beating ❤️ +@ShaniaTwain @NicoleScherzy @lipsyncbattle https://t.co/ifj6Wp7KTj" +06/20/2018,Sports_celeb,@derekhough,Constantly thinking of new ways to create and entertain for this new tour. If you haven't got your tickets or VIP p… https://t.co/4PoYkJpfpo +06/20/2018,Sports_celeb,@derekhough,ITS ON!!! @lsb nicolescherzinger shaniatwain @… https://t.co/Uzhmhs94dn +06/20/2018,Sports_celeb,@derekhough,Who was your favorite from tonight’s episode ? +06/20/2018,Sports_celeb,@derekhough,Your Move https://t.co/IsckwI0fpg +06/20/2018,Sports_celeb,@derekhough,Absolute BEAST ! https://t.co/2hxrn3anRt +06/20/2018,Sports_celeb,@derekhough,I’m flattered :) https://t.co/QDSwJ0kyOM +06/20/2018,Sports_celeb,@derekhough,Nailed it ! https://t.co/Imt5ausEPm +06/20/2018,Sports_celeb,@derekhough,Who’s watching @worldofdance right now ?? It’s mind blowing https://t.co/fNN2aME36L +06/20/2018,Sports_celeb,@derekhough,RT @JLo: Y’all ready for @evaigo?? #worldofdance +06/19/2018,Sports_celeb,@derekhough,Who's watching with me? #WorldofDance +06/19/2018,Sports_celeb,@derekhough,Look who's back! We're turning up the heat tonight! Don't miss @NBCWorldofDance at 10/9c. 🔥 https://t.co/uXSqLeYZp9 +06/19/2018,Sports_celeb,@derekhough,When you see the waiter bringing your food… https://t.co/jSYTcgUHLv +06/19/2018,Sports_celeb,@derekhough,"TOMORROW +This show elevates dance to another… https://t.co/MjC3ujEd1V" +06/18/2018,Sports_celeb,@derekhough,"RT @ShaniaTwain: Had a blast on @LSB with @derekhough, @NicoleScherzy, @llcoolj & @chrissyteigen! Tune in Thursday 10:30/9:30c on @Paramoun…" +06/18/2018,Sports_celeb,@derekhough,Monday Morning Stretch with the boy @ Los… https://t.co/eF7RKCasHh +06/17/2018,Sports_celeb,@derekhough,Who grabbed tickets already? https://t.co/urPiiDG2HS +06/17/2018,Sports_celeb,@derekhough,I’m so thankful to have such a great father to… https://t.co/PhNXulDk5v +06/16/2018,Sports_celeb,@derekhough,"“Had to cut a man down to get where I am” +(The… https://t.co/nlV7mhlvqP" +06/15/2018,Sports_celeb,@derekhough,"All tickets are onsale now! Go to https://t.co/EZiF216PlW for all tour dates, ticket & VIP information! https://t.co/411t1R4g3D" +06/14/2018,Sports_celeb,@derekhough,"My new show, Life in Motion, premieres June 21! I'm bringing you my best tips on how to infuse energy into every a… https://t.co/gMDmTfKiei" +06/14/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Our resident #WorldofDance bae @derekhough is nominated for a #TeenChoice award! #Retweet to vote for him for #ChoiceT… +06/13/2018,Sports_celeb,@derekhough,Exclusive pre-sale tickets for the Derek Hough Live Tour are available now! Sign up on my website to get access! https://t.co/KLQU0sFyBn +06/13/2018,Sports_celeb,@derekhough,RT @klgandhoda: Here's how @derekhough motivates himself when he's feeling too tired to move https://t.co/TpQQkFXeQ7 +06/13/2018,Sports_celeb,@derekhough,"Stop and smell the roses @ New York, New York https://t.co/Y7Bu95QJXB" +06/13/2018,Sports_celeb,@derekhough,My man @jimmyfallon rockin an off the cuff pretzel move ! #untucked https://t.co/jpUy4o0Pxu +06/13/2018,Sports_celeb,@derekhough,"Go check it out at +https://t.co/mapK8rugoA https://t.co/l6HxRw4mDt" +06/13/2018,Sports_celeb,@derekhough,If you wanna learn the foundation and… https://t.co/zAc4zwhczv +06/12/2018,Sports_celeb,@derekhough,We're ready. Are YOU??? #WorldofDance https://t.co/qSF0SQwoFM +06/12/2018,Sports_celeb,@derekhough,Stanky performances tonight on nbcworldofdance… https://t.co/8qzrMn9gUc +06/12/2018,Sports_celeb,@derekhough,Tonight. Is. The. Night! @NBCWorldofDance at 10/9c. Let's do this! 🙌 https://t.co/cji0peqhbT +06/11/2018,Sports_celeb,@derekhough,RT @etnow: .@derekhough is heading out on his first-ever solo tour! ET has the exclusive details. https://t.co/rTPzHoMtA3 +06/11/2018,Sports_celeb,@derekhough,"RT @KristynBurtt: This tour is a big deal. For a solo dancer to headline a 60-city tour is no joke. + +I am going to guess the last time the…" +06/11/2018,Sports_celeb,@derekhough,"It’s official ladies and gentlemen!!! +I’m… https://t.co/uTFyqi2Qwu" +06/10/2018,Sports_celeb,@derekhough,"We've got dancers from all over the world! See you TUESDAY for @NBCWorldofDance. 💃 +https://t.co/at3dlWewLt" +06/10/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Helping your friend hang a picture frame like. 😂 #WorldofDance https://t.co/K5vj24Rco6 +06/10/2018,Sports_celeb,@derekhough,"#mood @ Los Angeles, California https://t.co/pbwkrMQF20" +06/09/2018,Sports_celeb,@derekhough,"These guys are bringing some flavor.🔥 +https://t.co/Y4esowZwJS" +06/09/2018,Sports_celeb,@derekhough,"Monday June 11th +BIG ANNOUNCEMENT my friends!!!… https://t.co/IPd5xz0yw1" +06/08/2018,Sports_celeb,@derekhough,"So smoooooth. #WorldofDance +https://t.co/WIFcfCRyVp" +06/07/2018,Sports_celeb,@derekhough,"Check it out! + +https://t.co/pfYw1KpziN" +06/07/2018,Sports_celeb,@derekhough,Can I have this dance? I’ll teach you… https://t.co/tMnJs6VxhC +06/07/2018,Sports_celeb,@derekhough,"BIG NEWS COMING UP MY FRIENDS! +Sign up to be… https://t.co/urRAkEsSaG" +06/07/2018,Sports_celeb,@derekhough,@deaconblade @NBCWorldofDance thank you my man!!!! 👊🏼🕺🏼 +06/06/2018,Sports_celeb,@derekhough,Here we go !!!! https://t.co/1tp0nTxPw2 +06/06/2018,Sports_celeb,@derekhough,Tonight’s show was off the Charts!!!! West coast y’all can’t miss it! @NBCWorldofDance +06/06/2018,Sports_celeb,@derekhough,"Also, any one catch @JLo calling me ‘baby’ ? I love you too J money:))) ❤️🕺🏼" +06/06/2018,Sports_celeb,@derekhough,"Fabulous Sisters !!!!! Dramatic, magical, clean, strong...holy moly!!! Loooooved it!!!" +06/06/2018,Sports_celeb,@derekhough,"@BDashSK @Konkrete510 Slick!! Loved it fellas! Strong, clean, innovative and loved that hat choreo!" +06/06/2018,Sports_celeb,@derekhough,@BDashSK @Konkrete510 lets go!! +06/06/2018,Sports_celeb,@derekhough,I'm with yah👍🏼😮 https://t.co/t6UqOAzBh0 +06/06/2018,Sports_celeb,@derekhough,@CharityandAndr1 you 2 are exceptional !!!! Stunning. Wow!!! I loved it https://t.co/wAQCQuRvga +06/06/2018,Sports_celeb,@derekhough,"Stop wishing for it ! +Start working for it ! +@NBCWorldofDance @CharityandAndr1" +06/06/2018,Sports_celeb,@derekhough,We got sparkly cups !!! Haha thanks @JLo https://t.co/XXfvUE5yKi +06/06/2018,Sports_celeb,@derekhough,Yo his face killed me during the whole routine! Haha . Love the music breakdowns. Very clean @connectioncrew_ https://t.co/lsC4fscDIv +06/06/2018,Sports_celeb,@derekhough,@connectioncrew_ let’s go fellas! +06/06/2018,Sports_celeb,@derekhough,@pashapashkov86 @DKaragach I’m looking forward to seeing what else these two have in store. Beautiful quality of movement. +06/06/2018,Sports_celeb,@derekhough,@InTheLab247 INCREDIBLE !!!! What I love about this competition is that you can come back and come back even stron… https://t.co/ErOvupaZAw +06/06/2018,Sports_celeb,@derekhough,Pumped!!! @NBCWorldofDance https://t.co/dgGOYSb4o7 +06/06/2018,Sports_celeb,@derekhough,Gonna be Live tweeting!!!! Right NOW ! +06/05/2018,Sports_celeb,@derekhough,Come hang out with the fellas ! https://t.co/07Drd6Xk1c +06/05/2018,Sports_celeb,@derekhough,Head over to my Instagram at 9pm ET/6pm PT - I'm going LIVE with @NeYoCompound ahead of tonight's all new… https://t.co/5jXZJNCavq +06/04/2018,Sports_celeb,@derekhough,"Check out the latest LEAK from @NBCWorldofDance - new episode tomorrow at 10/9c on NBC! +https://t.co/IrCEzVLg9I" +06/02/2018,Sports_celeb,@derekhough,RT @JLo: ❤️❤️❤️ https://t.co/7BiqP3wKiA +05/30/2018,Sports_celeb,@derekhough,West Coast !!! Tune in to NBC now!!! Don’t miss… https://t.co/Agrai6Vw01 +05/30/2018,Sports_celeb,@derekhough,What an amazing premiere! This season is going to be EPIC! @NBCWorldofDance @JLo @NeYoCompound @jennadewan #WorldofDance +05/30/2018,Sports_celeb,@derekhough,Karen y Ricardo had me out of my seat!!! This spins! 🔥🔥 #WorldofDance +05/30/2018,Sports_celeb,@derekhough,I’m having a think there https://t.co/C2gS6ddsJU +05/30/2018,Sports_celeb,@derekhough,The emotion... Powerful! #WorldofDance +05/30/2018,Sports_celeb,@derekhough,All these dancers are crushing it! Who’s been your favorite so far? #WorldOfDance +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Hiiiii @DerekHough! RETWEET if you’ve missed this face. 😍 #WorldofDance https://t.co/Nh9pW82lTY +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: When someone asks if you’re loving the #WorldofDance Premiere! 😏 https://t.co/ooEkjRPORd +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: THIS IS A MOOD. ☝️ #WorldofDance https://t.co/TECXBU68vC +05/30/2018,Sports_celeb,@derekhough,Way to start off the @NBCWorldofDance @OffDesiHoppers #nailedit +05/30/2018,Sports_celeb,@derekhough,HERE WE GO!! @NBCWorldofDance @JLo @NeYoCompound @jennadewan #WorldofDance +05/30/2018,Sports_celeb,@derekhough,Who’s ready for the season 2 premiere of @NBCWorldofDance tonight?! #WorldofDance +05/29/2018,Sports_celeb,@derekhough,Tonight’s the night! Tune in to NBC at 10/9c for Season 2 of @NBCWorldofDance!! https://t.co/IH5nTyNKe4 +05/29/2018,Sports_celeb,@derekhough,Typical #WOD photo shoot with the crew. @jlo… https://t.co/pWbksDXeIG +05/29/2018,Sports_celeb,@derekhough,Scoping out the new and improved set for… https://t.co/8Pe2WDpPry +05/28/2018,Sports_celeb,@derekhough,Thankful for all the hero’s and their families… https://t.co/TBObREEBeC +05/26/2018,Sports_celeb,@derekhough,Lost footage of me as a kid 😂 https://t.co/8rAkZX9EWd +05/24/2018,Sports_celeb,@derekhough,Happy Birthday to my brotha @markballas !!!!… https://t.co/Iq4qBLcLvg +05/24/2018,Sports_celeb,@derekhough,Tune in tonight on @nbc to help raise money for… https://t.co/Y6sWPa4IHl +05/24/2018,Sports_celeb,@derekhough,Check out this leaked @NBCWorldofDance performance - season 2 is 5 days away! https://t.co/3JN8XAnOQU +05/24/2018,Sports_celeb,@derekhough,"ENTHUSIASM IS THE SACRED FIRE +The goal can be… https://t.co/zzNAXquQaM" +05/22/2018,Sports_celeb,@derekhough,We are not playin around for season 2 of @NBCWorldofDance! https://t.co/GufbYsg6yc +05/22/2018,Sports_celeb,@derekhough,"Legend!!! +Sir Andrew Loyd Webber ladies and… https://t.co/erS2plErQs" +05/22/2018,Sports_celeb,@derekhough,Blue https://t.co/Cb1zYKMD8q +05/21/2018,Sports_celeb,@derekhough,My lil man littlehankwilliam showing me how to… https://t.co/JXJ2K2SBpn +05/21/2018,Sports_celeb,@derekhough,"The performance you've all been waiting for - tomorrow! +https://t.co/Y1dPjbzErY" +05/21/2018,Sports_celeb,@derekhough,"Absolutely smashed it! Love my girl J, she Never disappoints. #dinero @jlo #bbmas https://t.co/V2lEN7JI1Z" +05/20/2018,Sports_celeb,@derekhough,Fun flight with these fine people. On our way… https://t.co/paC9eCP4BY +05/18/2018,Sports_celeb,@derekhough,"Check out the @NBCWorldofDance performance that made @JLo cry +https://t.co/XiUZTBC3rp" +05/18/2018,Sports_celeb,@derekhough,She’s a beauty ❤️ https://t.co/Z7WuVAewf0 +05/17/2018,Sports_celeb,@derekhough,Immediately after taking this photo I caught a… https://t.co/oCznGoTylB +05/16/2018,Sports_celeb,@derekhough,Sat on the tarmac for 3 hours yesterday waiting… https://t.co/A9CoZs21u6 +05/15/2018,Sports_celeb,@derekhough,nbcworldofdance just launched our #wodchallenge !!! Send us in your… https://t.co/RcV4lmnTLN +05/14/2018,Sports_celeb,@derekhough,💐World Of Flowers💐 @ Radio City Music Hall https://t.co/LLCDwVxiBi +05/14/2018,Sports_celeb,@derekhough,"Put me in coach 🏀 @ New York, New York https://t.co/eFswVPCLff" +05/13/2018,Sports_celeb,@derekhough,"#happymothersday +I love you always forever +Near and far closer… https://t.co/Yhcma8DQq7" +05/13/2018,Sports_celeb,@derekhough,I gotcha Grandma 😂 https://t.co/YzHmvGYQBF +05/12/2018,Sports_celeb,@derekhough,"Morning Jog. +My favorite way to see a city and it’s hidden places @… https://t.co/jnJ5CDIIeB" +05/11/2018,Sports_celeb,@derekhough,#fbf One of my favorite photos of all time. Taken by the legend… https://t.co/e4uwPWRQdU +05/10/2018,Sports_celeb,@derekhough,Join me this spring at #GradBash at @UniStudios in Hollywood! Come celebrate as I host your graduation event! https://t.co/75YWsPkQSC +05/10/2018,Sports_celeb,@derekhough,Making sounds. Practice makes perfect. https://t.co/VkAL4pei3M +05/09/2018,Sports_celeb,@derekhough,"MAY 29th!!! It’s gonna be HUGE +#WOD #worldofdance @ Sunset Plaza,… https://t.co/o61xfcXOww" +05/08/2018,Sports_celeb,@derekhough,"In any given moment, a man’s growth is optimized if he leans just… https://t.co/JTY4GB4PYJ" +05/07/2018,Sports_celeb,@derekhough,We're back on May 29! Check out the first look: https://t.co/WEP5Bw8CfH +05/06/2018,Sports_celeb,@derekhough,"Just finished this piece. #mymeditation #art @ Los Angeles, California https://t.co/i12zP5YZR6" +05/04/2018,Sports_celeb,@derekhough,"My birthday month it is. +#maythe4thbewithyou #yoda @ Galaxy far far away https://t.co/bSzifUgSE5" +05/03/2018,Sports_celeb,@derekhough,#tbt I didn’t have my 2 front teeth for years. I knocked them out on a… https://t.co/HeOsP1bOI8 +05/02/2018,Sports_celeb,@derekhough,"I made these pants out of my grandmas curtains. 🌸🌻🌼 +#realmenwearflowers @… https://t.co/PzhV0hcOPq" +05/02/2018,Sports_celeb,@derekhough,Check out the nbcworldofdance fam on theellenshow today !!! @ Ellen DeGeneres… https://t.co/0b4giO6rEk +05/02/2018,Sports_celeb,@derekhough,Check out the nbcworldofdance fam on theellenshow today. @ Ellen DeGeneres Show https://t.co/6jaiOEkw2L +05/01/2018,Sports_celeb,@derekhough,@harleydavidson https://t.co/PQcjUusgBY +05/01/2018,Sports_celeb,@derekhough,If you’ve read my book I’m curious about what your favorite part was. Write… https://t.co/Cwo6dAITGx +05/01/2018,Sports_celeb,@derekhough,"RISE and shine @ Los Angeles, California https://t.co/oYhESdDqW0" +04/30/2018,Sports_celeb,@derekhough,"Here we go!!!! 1 Month away. +Let the countdown begin. SEASON 2 is going to be 🔥 +May 29th @ The… https://t.co/Fj6VGLucUU" +04/29/2018,Sports_celeb,@derekhough,"Part 2 +Had an absolute blast pushing myself at the beargryllssurvivalchallenge yesterday. +My… https://t.co/wGUvYQulx5" +04/29/2018,Sports_celeb,@derekhough,"Had an absolute blast pushing myself at the beargryllssurvivalchallenge yesterday. +My team… https://t.co/iBeyK8an9j" +04/28/2018,Sports_celeb,@derekhough,Comin in hot to the finish line!!!! @ Bear Grylls Survival Challenge https://t.co/rWFKzaGlOo +04/27/2018,Sports_celeb,@derekhough,"Almost ran into this guy the other day. 🐊 +I explained to him I knew +@BindiIrwin and he was chill. https://t.co/maVPvI0GXC" +04/26/2018,Sports_celeb,@derekhough,"🐢neck’s +#tbt @ Homemade Almond Milk https://t.co/wReYxJZcEf" +04/24/2018,Sports_celeb,@derekhough,Guess where I’ll be this May and June? Hosting #GradBash at @UniStudios in Hollywood! Can’t wait to celebrate with… https://t.co/kngeleaO3q +04/22/2018,Sports_celeb,@derekhough,I have always felt close to nature but the past few years I have become obsessed with her… https://t.co/8aSzNDM5D4 +04/20/2018,Sports_celeb,@derekhough,Love this man. And I cherish our adventures #fbf #fatherson #adventure @brucehough https://t.co/nB6JjDiMRu +04/17/2018,Sports_celeb,@derekhough,#mood https://t.co/UZobMx545T +04/15/2018,Sports_celeb,@derekhough,“Spirituality is recognizing and celebrating that we are all inextricably connected to one… https://t.co/6wbnrjI8qp +04/12/2018,Sports_celeb,@derekhough,I’m hosting #gradbash at @Unistudios Hollywood this Spring! Come spend a night of fun and excitement with all your… https://t.co/T426KovoPu +04/12/2018,Sports_celeb,@derekhough,#TBT trying to get warm using the hot pavement with my little niece. Just came across this photo… https://t.co/lFwVMu1aQn +04/11/2018,Sports_celeb,@derekhough,"sometimes deeper mental clarity is preceded by great internal storms - yung pueblo +📸:… https://t.co/fjE9qEvZFZ" +04/09/2018,Sports_celeb,@derekhough,I’m thrilled to invite you to something near and dear to my heart: Move Experience: The Retreat!… https://t.co/3AVx8jnnEz +04/06/2018,Sports_celeb,@derekhough,Happy 200th Anniversary @BrooksBrothers! #BrooksBrothers200 https://t.co/rRrViI2PRp +04/05/2018,Sports_celeb,@derekhough,"Don’t run away from heavy emotions +. +Honor the anger,give pain the space it needs to breathe +.… https://t.co/l3Xq2CQ6di" +04/03/2018,Sports_celeb,@derekhough,"I love the ocean, something about the mystery and depth truly humbles me. Whether I’m diving… https://t.co/53sNa0Zozh" +03/27/2018,Sports_celeb,@derekhough,Behind every mask there is a face and behind that there is a story https://t.co/0OUDO1LwQY +03/24/2018,Sports_celeb,@derekhough,One of the most important things when it comes to achieving your dreams is to stay Hungry! #move… https://t.co/Lln1IAgHmj +03/23/2018,Sports_celeb,@derekhough,"#nationalpuppyday +Link in bio☝🏼 +The love is real https://t.co/a6h6aBENg5" +03/22/2018,Sports_celeb,@derekhough,#tbt Chains ⛓ https://t.co/NNzbhUuVux +03/21/2018,Sports_celeb,@derekhough,NOW https://t.co/2qoaZv77mL +03/20/2018,Sports_celeb,@derekhough,When you’ve been unwell for a over a week and cabin fever starts setting in. 🤪 https://t.co/CuF20oiOd9 +03/19/2018,Sports_celeb,@derekhough,"Encourage, uplift, grow and love. We are social beings, connecting to each other is a primal and… https://t.co/As428NNvws" +03/17/2018,Sports_celeb,@derekhough,"If you’re happy and you know it 👏🏼 @ Los Angeles, California https://t.co/303TU3GxDJ" +03/17/2018,Sports_celeb,@derekhough,"The harder you work, the luckier you get! +Happy St.Patricks day!!! ☘️🍀 @ Ireland (country) https://t.co/raQgpot3BC" +03/16/2018,Sports_celeb,@derekhough,"“In any given moment, a man’s growth is optimized if he leans just beyond his edge, his… https://t.co/G6VAddrJFu" +03/15/2018,Sports_celeb,@derekhough,Bed Fashion https://t.co/exBr6JMhjl +03/13/2018,Sports_celeb,@derekhough,"Pretty much sums up my dressing room anywhere. +Also I don’t know words to any song. #fact https://t.co/mSzp1cONwy" +03/12/2018,Sports_celeb,@derekhough,Last day of mentoring with these insanely talented human beings! #nbc #wod #backlot @ Universal… https://t.co/37J3tz9eHA +03/12/2018,Sports_celeb,@derekhough,Seize the day @ Planet Mars https://t.co/iyxVPPG4F5 +03/10/2018,Sports_celeb,@derekhough,"Poster for our new Sitcom. @mistyonpointe +What’s it about? https://t.co/yxzJdffeVO" +03/09/2018,Sports_celeb,@derekhough,"Cooking something up for Season 2 of nbcworldofdance +Ask and you shall receive! #disruption @… https://t.co/puV8ICeJCh" +03/09/2018,Sports_celeb,@derekhough,@NBCWorldofDance returns for Season 2 on May 29! @jlo @neyocompound @jennadewan https://t.co/BZtA0Zm9vY +03/08/2018,Sports_celeb,@derekhough,"I’m lucky to have so many women in my life that everyday is #internationalwomensday +My… https://t.co/UHJbybni70" +03/08/2018,Sports_celeb,@derekhough,Lil Cha-Cha to start the day. #warmup https://t.co/Rdz1zaBr1s +03/07/2018,Sports_celeb,@derekhough,"It’s OFFICIAL!!! May 29th!!! nbcworldofdance @ Los Angeles, California https://t.co/g7IuLZ74i3" +03/06/2018,Sports_celeb,@derekhough,"Here we go!!!! Season 2 Premiere Date! May 29th +#nbc nbcworldofdance https://t.co/lYAORHwxMp" +03/05/2018,Sports_celeb,@derekhough,"Failure hurts, but it’s only growing pains for greatness. Failure isn’t the end of the road,… https://t.co/MIoZCmlcWW" +03/04/2018,Sports_celeb,@derekhough,"Yep 🔥 +@Dance10Hayley https://t.co/mRwn0cvKZq" +03/03/2018,Sports_celeb,@derekhough,Training https://t.co/m6TD4kjNKI +03/01/2018,Sports_celeb,@derekhough,"Can’t wait for Summer 🌊 +#GoPro #malibuboats #lakelife https://t.co/f12HJdNuwX" +02/28/2018,Sports_celeb,@derekhough,"S O L I T U D E + +“Without solitude, Love will not stay long by your side. +Because Love needs to… https://t.co/FcFw5l7JEm" +02/28/2018,Sports_celeb,@derekhough,"S O L I T U D E + +“Without solitude, Love will not stay long by your side. +Because Love needs to… https://t.co/ZjUz5AMd42" +02/28/2018,Sports_celeb,@derekhough,"My girlfriend is a rebel ❤️🤘🏼 +#❤️ #D+H @ Lovers https://t.co/fvzymOT0Bu" +02/27/2018,Sports_celeb,@derekhough,"🏄🏼‍♂️ @ Los Angeles, California https://t.co/ZCadXKgt5w" +02/26/2018,Sports_celeb,@derekhough,"“Everybody cut, everybody cut.(Boom Boom)Everybody cut, everybody cut.(Boom Boom) Everybody cut… https://t.co/DHjBZQBJ63" +02/26/2018,Sports_celeb,@derekhough,"“Hatred is wasted energy.” +Let us Create not Destroy +#ClearHorizon #motivationmonday https://t.co/gCmdRdSnYm" +02/25/2018,Sports_celeb,@derekhough,Thank you @l_a_ballet for the wonderful honor. And to my brother @markballas for his awesome… https://t.co/yldLAt6vJ2 +02/24/2018,Sports_celeb,@derekhough,"This dude sat next to me in the movie theater last night. +Trying to figure out how I can bring… https://t.co/yNsr1ZhKvh" +02/23/2018,Sports_celeb,@derekhough,Don’t wait to be “Ready”. Start where you stand and the tools will reveal themselves as you go! https://t.co/m8XbtqZXZa +06/30/2018,Sports_celeb,@juliannehough,"Missing this little angel baby today #Avery 👶🏼💕 +📷: @tjdrechselphoto @ Las Vegas, Nevada https://t.co/N6IZV32Fnc" +06/26/2018,Sports_celeb,@juliannehough,"“Joy to the 🌍 all the boys and girls, Joy to the 🐟’s in the deep blue sea, Joy to YOU and ME” 🎶 + +Feeling very joyfu… https://t.co/DTawWOcxO9" +06/23/2018,Sports_celeb,@juliannehough,"Nailed my 360 🤪 +Day 2 wake Surfing in Lake Powell with my ❤️ for his 35th #birthdayweekend #nailedit #goingpro @ La… https://t.co/fCJIKrOcf1" +06/23/2018,Sports_celeb,@juliannehough,"Happy Birthday to my husband, my lover and my best friend! +I am so grateful that we get to adventure through life… https://t.co/jLU87PMT13" +06/17/2018,Sports_celeb,@juliannehough,Happy Fathers Day to my incredible Papa… https://t.co/HOoR7ojanS +06/14/2018,Sports_celeb,@juliannehough,If there's one thing @brookslaich and I love it's GAME NIGHT! We're throwing the ULTIMATE couples game night to sup… https://t.co/Qgnmp6ftmV +06/02/2018,Sports_celeb,@juliannehough,"Feelin’ cheeky today 😉 + +-Who else is having an… https://t.co/akcAtJcbnF" +06/02/2018,Sports_celeb,@juliannehough,It’s June 1st!! HAPPY PRIDE MONTH! #loveislove… https://t.co/6TrjucS4Xf +06/02/2018,Sports_celeb,@juliannehough,It’s June 1st!!!! HAPPY PRIDE MONTH!… https://t.co/V6OBrbt2ov +05/13/2018,Sports_celeb,@juliannehough,There is nothing like a mothers love! I’ll always be your baby and… https://t.co/Kl62lO7AKs +05/13/2018,Sports_celeb,@juliannehough,"Roaring 20’s Date Night ❤️ +#gatsbystyle @ Los Angeles, California https://t.co/NILWWbjaid" +05/08/2018,Sports_celeb,@juliannehough,"Met Ball memories +2011 ➡️ 2012 ➡️ 2013 +#burberry #carolinaherrera… https://t.co/RCBFYFR2Lh" +05/07/2018,Sports_celeb,@juliannehough,This last week I shared an Instagram story right after a day full of… https://t.co/r0mz2ewayP +05/06/2018,Sports_celeb,@juliannehough,Feelin’ fancy with my ❤️ on our Sunday morning stroll! @ Rodeo Drive https://t.co/9lBw2DXUju +05/03/2018,Sports_celeb,@juliannehough,Happy Birthday to this dynamite soul! 💥✨🙌🏼 So grateful for our many years of… https://t.co/ali2ZLk1Fi +05/02/2018,Sports_celeb,@juliannehough,"The best time for new beginnings is now. Remember, all you need is within… https://t.co/gS9hM1aSgJ" +05/01/2018,Sports_celeb,@juliannehough,"Twinning Tuesday 💙💙 @ Los Angeles, California https://t.co/Udual1iL76" +04/23/2018,Sports_celeb,@juliannehough,"I feel so lucky I get to create my life with you and that we love all parts of each other from,… https://t.co/ShWs2x9aHK" +04/21/2018,Sports_celeb,@juliannehough,"My husband is so special ❤️❤️❤️...... and freaking hot AF! 🔥🔥🔥🔥 #husbandappreciationday @ Paris,… https://t.co/0zWpBoDfOp" +04/16/2018,Sports_celeb,@juliannehough,"Momma 💕 @ Lake Tahoe, NV https://t.co/uqvOqfewZl" +04/16/2018,Sports_celeb,@juliannehough,Such a beautiful weekend in Lake Tahoe with my incredible mother @HoughNelson ❤️learning and… https://t.co/okHpi8rvwO +04/07/2018,Sports_celeb,@juliannehough,"On Thursday I challenged you to throw a song on and dance and sing/scream your heart out… +I… https://t.co/EZrFSfP7IC" +04/06/2018,Sports_celeb,@juliannehough,"#FBF 🤣🤣🤣🤣🤣 +To my private obnoxious performance for #lexi 🐶 back in 2014 at the beacon theatre… https://t.co/qZ722veoWY" +04/05/2018,Sports_celeb,@juliannehough,"#tbt to 1yr ago today rehearsing for MOVE:BEYOND @juliannehough ❤️ + +• There is something about… https://t.co/9muS2pO9TR" +04/01/2018,Sports_celeb,@juliannehough,"Happy Easter! 🥚🌷🌼🐇🐣...... +#egghunt #Imayhaveoverdoneit #duh @ Los Angeles, California https://t.co/DezV726WiI" +03/19/2018,Sports_celeb,@juliannehough,"💚💚💚 @ Los Angeles, California https://t.co/Fzng4vy8UO" +03/17/2018,Sports_celeb,@juliannehough,"I love #AliciaVikander so much!!! She is a prime example of a strong and feminine, talented and hard working woman! You go girl! #tombraider" +03/14/2018,Sports_celeb,@juliannehough,"We LOVE you soooooo much lorraineschwartz +CONGRATULATIONS on your New Collection… https://t.co/r3m6ayMhe6" +03/13/2018,Sports_celeb,@juliannehough,"How simple yet profound! 🙏🏼 +Having this awareness has been one of the greatest gifts in my life.… https://t.co/h8ucpbuspx" +02/19/2018,Sports_celeb,@juliannehough,"Haha 🤣🤣🤣#Repost @brookslaich +・・・ +In this family, we roll environmentally friendly, and in… https://t.co/XBbravqU4d" +02/18/2018,Sports_celeb,@juliannehough,🐶🌺🐼 #heaven @ Fryman Canyon Trailhead https://t.co/wVPlAnMOBZ +02/15/2018,Sports_celeb,@juliannehough,"❤️👏🏼🧚🏼‍♀️ +#matchingeyebrowsnow @ Los Angeles, California https://t.co/3OVbq64FJA" +02/14/2018,Sports_celeb,@juliannehough,"Steeling 💋 all over the 🌎from my Forever Valentine ❤️ @ Paris, France https://t.co/sBtF3QUSgR" +02/13/2018,Sports_celeb,@juliannehough,"Happy Birthday @kristysowin 🙏🏼❤️🙌🏼👸🏻 +There are no words to describe my absolute love,… https://t.co/w4hLSVmn3h" +02/08/2018,Sports_celeb,@juliannehough,"Let’s get Crazy 🌎❤️ +Share some “crazy” ways we can all start changing our world today and tag… https://t.co/YFDahrW6Vo" +02/08/2018,Sports_celeb,@juliannehough,"Let's get crazy! ❤️🌍 +Let’s get Crazy 🌎❤️ +Share some “crazy” ways we can all start changing our… https://t.co/rSbNeOyiOD" +02/07/2018,Sports_celeb,@juliannehough,"❤️❤️❤️ @ Paris, France https://t.co/i1cPyrT5jy" +02/06/2018,Sports_celeb,@juliannehough,"My soul sister, my best friend and so much more... 💫 +You are the bright soul that everyone… https://t.co/bxVPNsZ3wS" +02/04/2018,Sports_celeb,@juliannehough,"🌹 +Sneak peak at some of the incredible shots by sarahfalugostyle in Paris xoxo 💋 @ Paris, France https://t.co/eAWnngx89A" +02/04/2018,Sports_celeb,@juliannehough,"This Trip has been absolutely magical! ❤️ +How did it all begin?! Well, let me tell you! +For… https://t.co/EOsQV2o8mL" +02/03/2018,Sports_celeb,@juliannehough,"💋 +#selfiegameonpoint #paris @ Hôtel Costes https://t.co/dp7JfAUs3e" +02/02/2018,Sports_celeb,@juliannehough,"Ooh La La 💋 +#Paris @ Paris, France https://t.co/EDZVcNPxUA" +01/23/2018,Sports_celeb,@juliannehough,Congratulations @pasekandpaul on the Oscar Nomination for the #GreatestShowman masterpiece “This… https://t.co/dVTL3T9ZSS +01/22/2018,Sports_celeb,@juliannehough,"Starting Monday off with a smooch💋 +What is your love language? https://t.co/PiTtEmorBR" +01/21/2018,Sports_celeb,@juliannehough,"Feeling on top of the world today 🌍 +Thank you @tonyrobbins Sage, and all my fellow… https://t.co/5SYmTxvaGe" +01/20/2018,Sports_celeb,@juliannehough,"We are the RAINMAKERS! 💦 +While at @tonyrobbins #businessmastery this week, we got ourselves in… https://t.co/9Th99Ay0Z8" +01/20/2018,Sports_celeb,@juliannehough,Thank you John for Donating to @juliannehough and being a part of our mission to help build… https://t.co/JGtRazGNFh +01/19/2018,Sports_celeb,@juliannehough,#fbf to walking hand in hand with my love in the Seychelles ☀️👙💙 and flash forward to walking… https://t.co/tZ6Zcd1wfC +01/18/2018,Sports_celeb,@juliannehough,Having the most mind blowing experience at Tony Robbins #businessmastery seminar with these… https://t.co/i6Ol26jjC3 +01/18/2018,Sports_celeb,@juliannehough,#businessmastery https://t.co/DImGOH9N6J +01/18/2018,Sports_celeb,@juliannehough,RT @dmscott: I’m so psyched to be with the enthusiastic GLADIATORS talking New Marketing Mastery at @TonyRobbins #BusinessMastery https://t… +01/12/2018,Sports_celeb,@juliannehough,"During your next hydrating face mask, give your hands a little love too with this awesome DIY nourishing treatment… https://t.co/SlMgrUVs2D" +01/12/2018,Sports_celeb,@juliannehough,#FBF to when I had my first laparoscopy for my Endometriosis back in 2008 when my angel baby… https://t.co/Mp0oo4KSjX +01/11/2018,Sports_celeb,@juliannehough,"Ok everybody, today is 1/11 and as you all know, 11 is my absolute most favorite magical number… https://t.co/BnghNb9B6z" +01/10/2018,Sports_celeb,@juliannehough,"Me: hey Nina help me with your birthday caption! +Nina: what?! +Me: never mind... +Happy… https://t.co/x61mHyVIPX" +01/08/2018,Sports_celeb,@juliannehough,Wait for it..... 👯‍♀️ #goldenglobes2018 #instyle #instyleglobes https://t.co/ahnwtj9KjW +01/01/2018,Sports_celeb,@juliannehough,Oh... it’s ON my love!!! Let’s do this 2018!!! 💕💕💕🙏🏼 https://t.co/R7YkkSfPL3 +01/01/2018,Sports_celeb,@juliannehough,"Couldn’t be happier to ring in the new year and share such a happy 2017 year together! Marriage,… https://t.co/ys0jDCq87l" +12/28/2017,Sports_celeb,@juliannehough,"Missing my beautiful sisters this morning! 🙏🏼💞 +Whether they are your blood, your best friends or… https://t.co/2p2MJGDW1z" +12/25/2017,Sports_celeb,@juliannehough,Merry Christmas to everyone! (PS we should live with the kind of joy and kindness that naturally… https://t.co/50OmCRq6t3 +12/25/2017,Sports_celeb,@juliannehough,"Merry Christmas!!🎅🏽🤶🏼❤️ +🎄🎁⛄️💫❄️🐶🐼🐻 @ Los Angeles, California https://t.co/Yj3BBvLO1O" +12/25/2017,Sports_celeb,@juliannehough,Merry Christmas!!!!! 🎅🏽🤶🏼🎄🎁❄️💫 @ Hollywood Hills https://t.co/5cm3TxWMav +12/23/2017,Sports_celeb,@juliannehough,"Whatever you do, PLEASE wait until the end with SOUND ON‼️ +So for the last 4 days I’ve been in… https://t.co/QSHGHdIXdJ" +12/22/2017,Sports_celeb,@juliannehough,This holiday season get toasty with these sweet and delicious Gluten-Free Gingerbread Waffles made with @SueBeeUSA… https://t.co/ufAEIxc75g +12/21/2017,Sports_celeb,@juliannehough,Warm your heart and your belly with Gluten-Free Gingerbread Waffles made with @SueBeeUSA Honey 🍯🎄#ShareSweetness… https://t.co/Yilql8INkI +12/18/2017,Sports_celeb,@juliannehough,This weekend @brookslaich and I went to see ELF at the #VWHolidayDriveIn “Watch out for the… https://t.co/K35fxlJoHX +12/04/2017,Sports_celeb,@juliannehough,"Last night at #TrevorLive 🏳️‍🌈 +It’s so important to let our LGBTQ+ Youth know that you are… https://t.co/zQusPzMKpu" +12/04/2017,Sports_celeb,@juliannehough,❤️ Always & Forever 👯‍♀️ https://t.co/DlJYWFsJkB +12/03/2017,Sports_celeb,@juliannehough,"Sunday Morning Workout Buddies! ☀️🏋🏻‍♂️🐻 +Feeling very grateful for the amazing men in my life.… https://t.co/US5dizIqtD" +11/30/2017,Sports_celeb,@juliannehough,Disney’s Magical Holiday Celebration airs tonight! Tune in to ABC and get ready to feel the… https://t.co/JgbNtLBv2t +11/30/2017,Sports_celeb,@juliannehough,BEFORE (Swipe 👉🏼 for AFTER) 💦💦💦💦 dance cardio class with these awesome ladies!!!!! @ Millennium… https://t.co/wjyLql7449 +11/29/2017,Sports_celeb,@juliannehough,Me and my girl Minnie! Only 1 more day until the Disney Magical Holiday Celebration! Get ready… https://t.co/BFVp5FdIuS +11/29/2017,Sports_celeb,@juliannehough,"In honor of #GivingTuesday, our friends at gatesfoundation are matching donations on Facebook.… https://t.co/xNGAwhPNk6" +11/28/2017,Sports_celeb,@juliannehough,In the Spirit of #GivingTuesday @brookslaich and I are excited to announce the launch of our… https://t.co/MiOXKlqZHO +11/27/2017,Sports_celeb,@juliannehough,"One week ago today, I had the chance of a lifetime to help bring my friend Marinda’s story to… https://t.co/k1G77BPtwt" +11/24/2017,Sports_celeb,@juliannehough,"At the end of a crazy busy fall season, it feels so good to come home to my favorite dance… https://t.co/pW5j80J4kg" +11/20/2017,Sports_celeb,@juliannehough,"Tonight’s The Night 📺💃🏽⭐️ +So much beautiful work has gone in to creating this important and… https://t.co/mHh4be9x4X" +11/17/2017,Sports_celeb,@juliannehough,"SWIPE 👉🏼 to find out the SURPRISE ‼️ + +There are certain moments in my career that have made what… https://t.co/3IEfUORQMD" +11/16/2017,Sports_celeb,@juliannehough,"I am soooo freakin’ excited!!! +💕💕💕💕 +This team of creative and dynamic people are so exceptional… https://t.co/xzX5axiKvs" +11/16/2017,Sports_celeb,@juliannehough,Start your ovens and get ready for this amazing recipe for Honey-Glazed Carrots w/ @SueBeeUSA honey!… https://t.co/WzpkjZZFsS +11/16/2017,Sports_celeb,@juliannehough,"I’ve always been taught, “never show up to a party empty handed”! 🥕Thanksgiving is coming up,… https://t.co/HfHlIJkaoZ" +11/14/2017,Sports_celeb,@juliannehough,"So i know I’m a day late, but you can never be too late to be KIND! Yesterday was… https://t.co/DZ3vJX8k7y" +11/13/2017,Sports_celeb,@juliannehough,Where my #DWTS fans at?! Get ready...We’re getting the band back together again! I'm coming back… https://t.co/yTFjHvekBR +11/12/2017,Sports_celeb,@juliannehough,Mmm...dreaming about this ice cream today🍦Which is better: 🍦🍨or 🍭🍫? Vote in the comments! I’m… https://t.co/vALY3wbRny +11/11/2017,Sports_celeb,@juliannehough,"FINALLY it feels like FALL!!! 🍁🍂🍂 +I️t was super hot, high 80’s and sunny, when I first got to… https://t.co/Okn7IQNPd4" +11/10/2017,Sports_celeb,@juliannehough,❤️❤️❤️ #fbf to a little impromptu photoshoot after I jumped in the pool with a full face of… https://t.co/QJ2YFbtR8V +11/09/2017,Sports_celeb,@juliannehough,"#TBT ⚡️ to when I played Bongos and Chimes in my family band “White Lightning”. +You could hear… https://t.co/18tLHOMLGe" +11/08/2017,Sports_celeb,@juliannehough,All smiles as I’m back in Alabama to finish filming biggerthemovie 😁@kristysowin and I had a… https://t.co/X5MCw3ifj1 +11/08/2017,Sports_celeb,@juliannehough,"Must Haves: +Red Dress ✔️ +Sassy Red Lip ✔️ +The happiest place on earth✔️ +-and last but… https://t.co/BASElRlGty" +11/06/2017,Sports_celeb,@juliannehough,"Swipe 👉🏼 to better understand the dynamic of our relationship! 🤷🏼‍♀️ +Tag your favorite person… https://t.co/jGosSOOcG4" +11/04/2017,Sports_celeb,@juliannehough,✌🏼throwing it up for the weekend✌🏼 Check my last post to see what I’m working on! It’s an… https://t.co/dClGIDFuCG +11/03/2017,Sports_celeb,@juliannehough,#fbf to strolling around in the Seychelles with my brand new husband @brookslaich ❤️ We had some… https://t.co/4D63oQa6A6 +11/02/2017,Sports_celeb,@juliannehough,"Betty Brosmer 💕 +circa 1957 @ Birmingham, Alabama https://t.co/Uud9PnQXVm" +11/01/2017,Sports_celeb,@juliannehough,So incredibly proud of my brother @derekhough for using his gifts and talents to create… https://t.co/W3kHiBwol5 +11/01/2017,Sports_celeb,@juliannehough,"Pinch Punch, it’s the first day of the month! 👌🏼👊🏼 + Alright let’s get real about working out.… https://t.co/lEKVGY7q6q" +10/31/2017,Sports_celeb,@juliannehough,Ghosts of Halloween Past- Check out that last pic 😂 tag your forever costume partners! 👻 @ ALL… https://t.co/PrBhtiK6w8 +10/30/2017,Sports_celeb,@juliannehough,"🔥 It’s a new week- time to fire up those goals, let’s get to it! Also, how did everyone’s… https://t.co/hVGYmNZI8h" +10/27/2017,Sports_celeb,@juliannehough,"Life is an adventure! It’s up to you to make it amazing! Think about it. +What is holding you… https://t.co/qTjuqFxACT" +10/26/2017,Sports_celeb,@juliannehough,Sitting here in Alabama missing my angels and thinking about Lovin’ on my Lexi 🐶Raise your hands… https://t.co/jzgBElIV7F +10/25/2017,Sports_celeb,@juliannehough,One of my biggest and most important “happiness” practices is taking time to be grateful. The… https://t.co/OsyifvNnDT +10/24/2017,Sports_celeb,@juliannehough,"Wrapped for now and it’s just day 2, yet the clouds are out and the sky is still blue! -Kristy… https://t.co/sjz96KjVTj" +10/24/2017,Sports_celeb,@juliannehough,"WOW! I can’t believe I just recreated this iconic photo of #BettyBrosmer 💋 +I can’t wait for you… https://t.co/8xudKf2JjC" +10/23/2017,Sports_celeb,@juliannehough,Gearing up for Monday like 🎧😎 Let’s do this thing boss babes! I’m on set filming “Bigger” today… https://t.co/R2fTQk0HqL +10/21/2017,Sports_celeb,@juliannehough,Getting ready to start a new adventure 💪🏼 Heading to Alabama to start filming BIGGER with the… https://t.co/lZT0WnkPgP +10/21/2017,Sports_celeb,@juliannehough,Getting ready to start a new adventure 💪🏼 Heading to Alabama to start filming BIGGER with the… https://t.co/C4nML3L8fE +10/20/2017,Sports_celeb,@juliannehough,"#FBF to the most amazing outdoor experience with my @KindCampaign family. 💕 +Read more about our… https://t.co/Pdg0uTwMkM" +10/18/2017,Sports_celeb,@juliannehough,"My #wcw goes to my incredibly gifted bff, hair extraordinaire and all around amazing human being… https://t.co/mdXcxBut4v" +10/16/2017,Sports_celeb,@juliannehough,"MISSING DOG ALERT ‼️ +We found this male dog on the side of the road on Woodrow Wilson near… https://t.co/Shomh2YB3F" +10/16/2017,Sports_celeb,@juliannehough,"#MondayMuse 💋 +One more week until the transformation begins. I’m so excited to celebrate Betty… https://t.co/TAbHQIiKKv" +10/16/2017,Sports_celeb,@juliannehough,This is so perfect!!!! Haha ❤️ https://t.co/rqnxs2fi59 +10/15/2017,Sports_celeb,@juliannehough,"I wholeheartedly agree with everything @brookslaich said. @joesmithla your presence, words, and… https://t.co/6ML3EjIgD6" +10/13/2017,Sports_celeb,@juliannehough,You are the strongest and most resilient man I know! You're dedication and passion is… https://t.co/VDQ8S81iYH +10/12/2017,Sports_celeb,@juliannehough,"If you haven't heard @imaginedragons new album EVOLVE, I highly suggest you get it ASAP!! +I… https://t.co/GKFq8xzP73" +10/11/2017,Sports_celeb,@juliannehough,"Happy Birthday to my #wcw @Dance10Hayley 👑 +So grateful for your beautiful friendship, your… https://t.co/svdanqb4kx" +10/10/2017,Sports_celeb,@juliannehough,Thank you @goodhealth making me this months cover girl! I had an absolute blast 💋I also can't… https://t.co/bMWh6XlgMy +10/08/2017,Sports_celeb,@juliannehough,So excited to announce that I’m taking over @fitbit’s Instagram page tomorrow! Follow along to… https://t.co/k27f2Zgajf +10/04/2017,Sports_celeb,@juliannehough,"Mom, you are my #wcw everyday! The moment you zipped me in to my wedding dress is a moment I… https://t.co/QOTgDBfsGr" +10/02/2017,Sports_celeb,@juliannehough,"#prayforvegas and pray for humanity! +The victims, the families, the Las Vegas community, the… https://t.co/8d7wUOVX2n" +10/01/2017,Sports_celeb,@juliannehough,"Soul Sister Sunday✌🏼#liveyouradventure 🌎#kindcampaign 💕 +📷: @THECoryTran @ Canadian Rockies https://t.co/Byv6Qt6JJo" +09/29/2017,Sports_celeb,@juliannehough,"Spending the next few days reconnecting with nature, recharging my soul and fostering… https://t.co/H7OglUYYVT" +09/28/2017,Sports_celeb,@juliannehough,"Happy 13th Birthday to this stud nephew of mine! +Remember when you were a kid growing up, and… https://t.co/cMd0IR3yu7" +09/27/2017,Sports_celeb,@juliannehough,"Brooks and I wanted our wedding to feel just as warm and inviting as our home, so of course I… https://t.co/iuMMusof5D" +09/27/2017,Sports_celeb,@juliannehough,So proud of my love @brookslaich way to keep pushing and betting on yourself babe! 💋 https://t.co/kJQHdPHuCn +09/27/2017,Sports_celeb,@juliannehough,Happy Birthday Arielle! You are heaven on earth. You light up any room you walk in to. You have… https://t.co/RvZT9mCRER +09/26/2017,Sports_celeb,@juliannehough,"Excited to announce that I'll be joining the film ""Bigger"", the amazing story behind Joe and Ben… https://t.co/X5lcFgbFQE" +09/26/2017,Sports_celeb,@juliannehough,RT @DEADLINE: Julianne Hough To Play First Lady Of Fitness Betty Weider In George Gallo’s ‘Bigger’ https://t.co/mL1zL2fI0q https://t.co/sKN… +09/25/2017,Sports_celeb,@juliannehough,I'll never forget the moment I turned the corner and locked eyes with you. I knew that my future… https://t.co/TYoSJPu6EO +09/25/2017,Sports_celeb,@juliannehough,Love my @MosaicLA family! #welcomehome #youbelonghere @ Mosaic https://t.co/ptnTovkxze +09/24/2017,Sports_celeb,@juliannehough,"Easy like Sunday morning! +🕶👒 +📷: sarahfalugostyle @ Coeur d'Alene, Idaho https://t.co/W7kaksTv5L" +09/23/2017,Sports_celeb,@juliannehough,"It's all ☀️shine, 🌈's and 🦄's +#pjsfromnina #ofcourse #happysaturday https://t.co/fgnamd8OtR" +09/22/2017,Sports_celeb,@juliannehough,"#fbf to our wedding weekend! ☀️💦 +One of our biggest joys about the weekend was being able to… https://t.co/DW1BrBxPW1" +09/22/2017,Sports_celeb,@juliannehough,"#fbf to our wedding weekend! ☀️💦 +One of our biggest joys about the weekend was being able to… https://t.co/86RsbTGdGz" +09/20/2017,Sports_celeb,@juliannehough,"Hey guys, it's been a minute since I've posted about my website and the fun tips and tricks I… https://t.co/PE4UnJUz4y" +09/19/2017,Sports_celeb,@juliannehough,Such a fun shoot with these two beautiful souls today 🙏🏼 @serenakarnagy @hudsontaylor89 https://t.co/MtCEyuy5TK +09/19/2017,Sports_celeb,@juliannehough,#takemebacktuesday I'm so grateful that we were able to visit and experience the beauty and… https://t.co/UAphZuTyWb +09/18/2017,Sports_celeb,@juliannehough,Where it all began 3 years ago... 🖤...can't wait to see what we do together in all the years to… https://t.co/IVJyII1rV7 +09/18/2017,Sports_celeb,@juliannehough,"After party quick change! +💛🖤Came home, changed my dress, gave my husband a kiss good night, and… https://t.co/8kwV4mZwoE" +09/18/2017,Sports_celeb,@juliannehough,RT @fitbit: Celebrate your next birthday by bringing fitness to the party. Fitbit Ambassador @juliannehough shows how: https://t.co/4z4BUUl… +09/18/2017,Sports_celeb,@juliannehough,And of course my ultimate glam squad and best friends for always making me feel confidant and… https://t.co/M6OKsqaIcG +09/18/2017,Sports_celeb,@juliannehough,💕🌸 #emmys2017 https://t.co/FNLNQ4GBau +09/18/2017,Sports_celeb,@juliannehough,One of my all time favorite looks #emmys2017 💕🌸 #marchesa https://t.co/BTRAuQv3qy +09/17/2017,Sports_celeb,@juliannehough,Final touches for this beautiful #emmys2017 red carpet look! 💕🌸 https://t.co/RieE1ZYsqO +09/17/2017,Sports_celeb,@juliannehough,Last one 💃🏼 ... for the glam squad 💄💇🏼👛 https://t.co/iIfYmZ88xI +09/17/2017,Sports_celeb,@juliannehough,My goodness do I love these beautiful friends of mine! They give you air in a crowded room!… https://t.co/5a902xW162 +09/17/2017,Sports_celeb,@juliannehough,Date night with Ariel and Rusty! We've come along way from Bomont.... #bff #footlooseforever… https://t.co/SvGDZ6u6xf +09/17/2017,Sports_celeb,@juliannehough,"#happybeauday miss @morganbeau when @THECoryTran and I think of you living your best life, this… https://t.co/sTDY1kciKm" +09/17/2017,Sports_celeb,@juliannehough,"#happybeauday miss @morganbeau when @THECoryTran and I think of you living your best life, this… https://t.co/PxJ7c3pgQb" +09/16/2017,Sports_celeb,@juliannehough,"Last night we were going for the ""ice queen badass boss in an effortlessly chic pantsuit with… https://t.co/G6r3VEc593" +09/16/2017,Sports_celeb,@juliannehough,Charlie's Angels at its finest! 💁🏻🙋🏼🙅🏻 #mbusa #varietywomeninfilm #charliesangels @ Gracias Madre https://t.co/Ehp6ycBj2w +09/15/2017,Sports_celeb,@juliannehough,"Diving in to the weekend with Lexi 🐶, Romy 🐻 and my one piece unitard by @mpgsport #mpgbyjules… https://t.co/JYDthYh7ZQ" +09/14/2017,Sports_celeb,@juliannehough,"Since today is known around the world as social media's #tbt , I thought I would tell a little… https://t.co/2Yif3yJL1S" +09/14/2017,Sports_celeb,@juliannehough,"This little ""demanding of treats diva"" is the absolute Love of my life! 🐼 #Harley https://t.co/AlsNq0Zlkw" +09/14/2017,Sports_celeb,@juliannehough,"Have to repost this... haha! +Who wants to caption this?? Best caption gets a follow 👍🏼 +#Repost… https://t.co/4Z3uw1zppK" +09/13/2017,Sports_celeb,@juliannehough,"#wcw my ride or die @kristysowin ! +This amazing woman always surprises me, yet doesn't surprise… https://t.co/GvSPkxrylP" +09/13/2017,Sports_celeb,@juliannehough,#handinhand please call 1-800-258-6000 or text GIVE to 80077 to donate! All in the name of… https://t.co/7P8hlYfgQV +09/12/2017,Sports_celeb,@juliannehough,"So excited for my love to start his first day of Camp with the @lakings 🏒 +I've never met anyone… https://t.co/jD8HdeGT6r" +09/11/2017,Sports_celeb,@juliannehough,"Happy Birthday to this 🔥momma! I've never met a woman so strong, talented, commanding of a room,… https://t.co/iA3RGjtjeO" +09/11/2017,Sports_celeb,@juliannehough,Motivation Monday!! Starting the week off by sweatin the weekend out! I woke up late for my… https://t.co/bZRsUHBEvF +09/10/2017,Sports_celeb,@juliannehough,"Holy hot damn, my man is beyond my wildest dreams! 🌸🌸🌸 +#mylove #datenight #creativeartsemmys @… https://t.co/ZG2aJbHjho" +09/09/2017,Sports_celeb,@juliannehough,"All dressed up with somewhere to go! +🤵👛 #creativeartsemmys #outstandingchoreography… https://t.co/9SjPiBKSBb" +09/09/2017,Sports_celeb,@juliannehough,2 years ago today I was able to share this Emmy with my brother @derekhough and friend… https://t.co/PInXf9GXOL +09/08/2017,Sports_celeb,@juliannehough,"This dress 😍😍😍 +Dress: @lela_rose +Shoes: @stuartweitzman +Styling: @anitapatrickson +Hair:… https://t.co/b17mqmoGpJ" +09/07/2017,Sports_celeb,@juliannehough,"#BTS at my photo shoot with @goodhealth! I'm talking about working out, healthy living and… https://t.co/MM9yveJQq0" +09/06/2017,Sports_celeb,@juliannehough,My website got a total makeover over the weekend and I've been dying to share it with you all.… https://t.co/2lXPxX9hXk +09/06/2017,Sports_celeb,@juliannehough,#wcw goes out to my mother-in law @janelaich 💕 not only did Jane raise such a beautiful soul and… https://t.co/v0HijELStm +09/05/2017,Sports_celeb,@juliannehough,Going in to a new work week after a long holiday weekend like..... #flyingintoNYC… https://t.co/00xxlhO5vG +09/03/2017,Sports_celeb,@juliannehough,"Not only is today #sundayfunday , but I get to do it all again tomorrow!! 👙🕶🌊 +What are your… https://t.co/WIrDbchoTB" +08/31/2017,Sports_celeb,@juliannehough,"#tbt to our incredible honeymoon! As amazing as it was (take me back), I feel so lucky that our… https://t.co/pH138OlEDR" +08/31/2017,Sports_celeb,@juliannehough,"Donate, Donate Donate!!!! Sending prayers and love to everyone in Houston! 💕#hurricaneharvey https://t.co/QlgpX8UJJK" +08/29/2017,Sports_celeb,@juliannehough,"💦💜🖤 @mpgsport +*Sweating it out in my +*Audition 2.0 Capri leggings +*AMA light support strapped… https://t.co/hB4CYyb2n4" +08/29/2017,Sports_celeb,@juliannehough,Sweating it out in my new fall collection for @mpgsport with my sassy matching soul sister… https://t.co/hn55UIHlzV +08/28/2017,Sports_celeb,@juliannehough,"So pumped.... 4M 💋 +📷: @samanthamarq @ Home https://t.co/YdhaVUc2NX" +08/28/2017,Sports_celeb,@juliannehough,"Sometimes after a long day, I don't always feel like making dinner. Which is why I love these ""no-cook"" recipes fro… https://t.co/cc7Y9pimwt" +08/28/2017,Sports_celeb,@juliannehough,Holy 4 Million followers!! ❤️❤️❤️ You guys are the BEST! Thank you for your continued love and… https://t.co/7vS7CAdZVG +08/28/2017,Sports_celeb,@juliannehough,"@Pink has been a voice, a talent and a true pioneer that I've looked up to since I was 12! After all these years, she still blows my mind!" +08/28/2017,Sports_celeb,@juliannehough,Ummmm @taylorswift13 just 8 mile'd tgat shit!!! Yo... that video was freakin awesome! 🔥🔥🔥 +08/26/2017,Sports_celeb,@juliannehough,My absolute whole ❤️ #Lexi 🐶 #Harley 🐼 #nationaldogsday https://t.co/2zsJaK3Fny +08/25/2017,Sports_celeb,@juliannehough,"Calling all my Utah friends, family and followers!!! I will be joining @imaginedragons along… https://t.co/7qxXFaXhAA" +08/25/2017,Sports_celeb,@juliannehough,I'm so inspired by all the hard work my friend and fellow dancer @KimGingras has put into her… https://t.co/eULypSlGmu +08/25/2017,Sports_celeb,@juliannehough,I'm obviously obsessed with anything related to chasing your dreams.... and I just got the… https://t.co/nyUkqo7fKk +08/24/2017,Sports_celeb,@juliannehough,#mpgsport #mpgbyjules https://t.co/VkmBJQBopQ +08/24/2017,Sports_celeb,@juliannehough,A good sports bra is a total must have when you’re working out. This one’s called the Pacesetter… https://t.co/AFBDx5W9hn +08/24/2017,Sports_celeb,@juliannehough,"Retro touches, because who doesn't love a little throwback style?! https://t.co/78XPpl2IqW" +08/24/2017,Sports_celeb,@juliannehough,Gorgeous new fall colors like rose & port https://t.co/D8L1dQjyyQ +08/24/2017,Sports_celeb,@juliannehough,Things I ❤ this season: https://t.co/wayuyax3Q7 +08/24/2017,Sports_celeb,@juliannehough,My Fall ’17 Collection with @mpgsport has landed! https://t.co/cCugBKNs92 +08/24/2017,Sports_celeb,@juliannehough,Here.... https://t.co/ecHhrQTi7t +08/24/2017,Sports_celeb,@juliannehough,Finally...... https://t.co/U0bE8o8MqZ +08/24/2017,Sports_celeb,@juliannehough,It's.... https://t.co/X0Qmke2FeV +08/23/2017,Sports_celeb,@juliannehough,Universal ❤️ @ Rosaliné https://t.co/UsTxnIa6UJ +08/20/2017,Sports_celeb,@juliannehough,Training for my next role 🥊 #firsttimeboxing #trainthebrain #holycardio #loveit https://t.co/PN89fMKCiD +08/20/2017,Sports_celeb,@juliannehough,"Unlike Lexi 🐶 and Harley 🐼, Romy 🐻 is totally pumped about his new Alaskan PJ's!!! #mom https://t.co/Sir8ma5djV" +08/18/2017,Sports_celeb,@juliannehough,"#FBF Fun fact: @BrooksLaich and I honeymooned to a few different spots, but one in particular… https://t.co/l39Sak3YQu" +08/17/2017,Sports_celeb,@juliannehough,"When you think you're a professional photographer.... you gotta have a good stance! +📷:… https://t.co/K0reIETGwq" +08/16/2017,Sports_celeb,@juliannehough,Caption please... 🔥🎽❤️💦🚣🏼 #fishinwithmyishes #11yearsinthemaking #allforward #riley 📷:… https://t.co/pvCpSxHluD +08/14/2017,Sports_celeb,@juliannehough,"#BetchaKanCatchaKrabInKetchikan 🦀 @ Ketchikan, Alaska https://t.co/yxCkmq3ZIz" +08/14/2017,Sports_celeb,@juliannehough,Thank you @celebritycruise 🚢 for the gift of this gorgeous Alaskan cruise with some of my best… https://t.co/9eBjwBQ5aa +08/14/2017,Sports_celeb,@juliannehough,"Ketchikan, Alaska 🏔🐻🚢🦀 https://t.co/GM44eRoe0j" +08/13/2017,Sports_celeb,@juliannehough,"Last night in the library... 📖 +Before the silent disco 💙❤️💚 @ British Columbia https://t.co/l5whq76gK8" +08/13/2017,Sports_celeb,@juliannehough,"RT @IMKristenBell: This thread brought me to tears. Thank you, sister Helen. I really needed to read this today. https://t.co/Ig5onMOVPP" +06/30/2018,Sports_celeb,@JeffGordonWeb,Wishing the @NASCARonNBC team all the best @ChicagolndSpdwy as they carry @NASCAR Cup & Xfinity races the remainder… https://t.co/bVJh20ykoh +06/28/2018,Sports_celeb,@JeffGordonWeb,🏎😎 https://t.co/BvqpBZzZ6m +06/27/2018,Sports_celeb,@JeffGordonWeb,"The stage 1 winner is... + +Chris Price from Caldwell, Texas won the first $5,000 drawing for @JeffGordon4Cure's… https://t.co/cyMA0rJrRB" +06/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: From Daytona to Sonoma. What a ride. + +@MikeJoy500, @AllWaltrip and @JeffGordonWeb share their favorite moments from the 20…" +06/26/2018,Sports_celeb,@JeffGordonWeb,"Meeting Grandma Pat was special. + +⬇️⬇️ + +https://t.co/Din9mw9Bhn + +@NASCARONFOX +@PoconoRaceway +@MichaelStrahan + +#TeamJG" +06/25/2018,Sports_celeb,@JeffGordonWeb,Congrats! That’s awesome! Glad you conquered the peak and didn’t see any “blue sky”😁 https://t.co/qZ0j0YdFIQ +06/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@AllWaltrip, @JeffGordonWeb and @MikeJoy500 take you around Sonoma. https://t.co/qgKVNfVkBk" +06/24/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FS1 or https://t.co/DKghQFsqRs at 1:30pm ET for @NASCARONFOX from Sonoma! + +📷:… https://t.co/n01xfTkpdJ" +06/24/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: Could you see yourself driving this? + +Get your ticket for the chance to win this special #Corvette & up to $10,000 whil…" +06/23/2018,Sports_celeb,@JeffGordonWeb,"Could you see yourself driving this? + +Get your ticket for the chance to win this special #Corvette & up to $10,000… https://t.co/0n7jl8VhcF" +06/21/2018,Sports_celeb,@JeffGordonWeb,Enjoyed spending time with these #JeffGordon24EverVIP fans and @WilliamByron in Michigan. Great group that traveled… https://t.co/AGdBgMbBNO +06/20/2018,Sports_celeb,@JeffGordonWeb,There’s no other choice than the Birthday Cake Milkshake for the birthday girl at @BlackTapNYC 😊🎂. https://t.co/rtZKw8WsNf +06/18/2018,Sports_celeb,@JeffGordonWeb,Feeling very lucky this Father’s Day! https://t.co/PMhbYb6NVL +06/17/2018,Sports_celeb,@JeffGordonWeb,"Nothing beats a classic like a Slip ‘N Slide, especially in slow-mo. #FathersDay2018 https://t.co/tWeMJLZFEX" +06/17/2018,Sports_celeb,@JeffGordonWeb,Enjoyed the amazing weather at @usopengolf & @rooknox cult fan following. Thanks @FOXSports! https://t.co/9xP2RdfMqF +06/15/2018,Sports_celeb,@JeffGordonWeb,"Last chance! Stage 1 ends today for the chance to win Corvette, up to $15,000 & support @JeffGordon4Cure in helping… https://t.co/4NBM1RQdrI" +06/13/2018,Sports_celeb,@JeffGordonWeb,"🎵 +@U2 +@ApolloTheater +@SIRIUSXM https://t.co/H3dNCnA1nb" +06/13/2018,Sports_celeb,@JeffGordonWeb,New Release: @RayEvernham Dual Autographed 1998 @AMSUpdates Win Die Cast. Limited edition available exclusively at… https://t.co/1A7UVsjozD +06/12/2018,Sports_celeb,@JeffGordonWeb,"There’s no other experience in the world like hearing, smelling and feeling race cars flying by at 200+mph! @NASCAR https://t.co/vh0cSX91CC" +06/12/2018,Sports_celeb,@JeffGordonWeb,Unforgettable night with @U2 at @ApolloTheater thanks to @SIRIUSXM. https://t.co/evMkH3mBcy +06/10/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@JeffGordonWeb sits down with the great-grandson of Henry Ford, Edsel Ford, to discuss the Ford's rich racing history at…" +06/10/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FOXTV or https://t.co/vrddf6SJWT at 1:30pm ET for @NASCARONFOX from @MISpeedway! + +📷:… https://t.co/jyBDQiMVcc" +06/09/2018,Sports_celeb,@JeffGordonWeb,Enjoyed meeting @beyetteracing97 today at @MISpeedway & autographing his signature edition Monte Carlo. Awesome to… https://t.co/HsZaCa36qJ +06/08/2018,Sports_celeb,@JeffGordonWeb,Well any luck?😎 https://t.co/8wGMSjwGmS +06/08/2018,Sports_celeb,@JeffGordonWeb,"So cool for me to be able to meet Grandma Pat last week & help her check something off her bucket list! + +Big thanks… https://t.co/2xn7PzgLBP" +06/08/2018,Sports_celeb,@JeffGordonWeb,Special evening with Ella to see Harry Potter on Broadway last night. She’s still smiling! https://t.co/kxKRE2VD6A +06/06/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARHall: Stop by the Hall & gaze in awe at @JeffGordonWeb's 60th Anniversary Chevy Corvette! Get your ticket to win this #CorvetteFo… +06/05/2018,Sports_celeb,@JeffGordonWeb,"RT @BMSupdates: You could win @JeffGordonWeb’s personal @chevrolet Corvette and up to $15,000 cash & support kids fighting cancer through t…" +06/03/2018,Sports_celeb,@JeffGordonWeb,RT @ClintBowyer: Thanks @JeffGordonWeb. Cash has been burnin’ laps all day. 👌 https://t.co/8zMPH7atQX +06/03/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FS1 or https://t.co/vrddf6SJWT at 12:30pm ET for @NASCARONFOX from Pocono! + +📷:… https://t.co/0fIVieYvNH" +06/03/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: You could win my personal #Corvette, up to $15,000 cash & support @JeffGordon4Cure in helping kids that are battling can…" +06/01/2018,Sports_celeb,@JeffGordonWeb,"You could win my personal #Corvette, up to $15,000 cash & support @JeffGordon4Cure in helping kids that are battlin… https://t.co/bHDCqHfJbe" +06/01/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Charlotte. Awesome group that trav… https://t.co/zcFNgH4n97 +06/01/2018,Sports_celeb,@JeffGordonWeb,New Release: Dual Autographed @WilliamByron 2018 #24 @AxaltaRacing Rainbow @TooToughToTame Throwback ELITE 1:24 Sc… https://t.co/qExEgzOQ2V +05/28/2018,Sports_celeb,@JeffGordonWeb,https://t.co/czpv8A0Tkf +05/27/2018,Sports_celeb,@JeffGordonWeb,Are you ready for the 600? Tune to @FS1 at 4:30pm ET for @NASCAR #RaceDay from Charlotte then @NASCARONFOX at 5:30p… https://t.co/lzllqnjMPk +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: “Thanks for sending in your #AskJG questions. This was fun! Don’t miss tomorrow’s race from Charlotte on FOX.”- @JeffGordo… +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Anterga 3️⃣🏁 #AskJG https://t.co/T4fXlDl5Oq +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Incredicast “@Bobby_Labonte deserves to be in the @NASCARHall.”- @JeffGordonWeb #AskJG https://t.co/vXzvydvhPZ +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@thecon24 “It feels like a championship!”- @JeffGordonWeb #AskJG https://t.co/VO9NvbkL23 +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@racrboi90 #AskJG https://t.co/O6Oym5F5Il +05/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@JaydenTroutman You in, @AllWaltrip? @MartinsvilleSwy #AskJG https://t.co/MYuZNiIRVL" +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@CriswellZ71 #AskJG https://t.co/iKuOdz80bj +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Hail4Breakfast #AskJG https://t.co/s3fZsGtMhG +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@kevinpearman #AskJG https://t.co/DmHkS0dfsm +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@24gordongirlfan #AskJG https://t.co/ZHRmRH4DjE +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@JeffGordonWeb is here to answer your #AskJG questions from Charlotte! What do you want to know? https://t.co/cG7fGWzAaF +05/24/2018,Sports_celeb,@JeffGordonWeb,"You were 25?! What was I thinking?😂 Seriously, It was a pleasure working with you Steve. A lot of great years toget… https://t.co/MV0PWiyjcK" +05/24/2018,Sports_celeb,@JeffGordonWeb,Call off the search! I’m in and proud as....you know what! 96% is good enough for me😃 https://t.co/lMANskDL9Q +05/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Get ready for a Twitter video Q&A with a NASCAR legend! What have you always wanted to ask Jeff Gordon? + +Reply to this twe…" +05/23/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Tonight’s NASCAR #RaceHub is all about Jeff Gordon. We’ll talk with the Hall of Famer himself, along with a prominent list…" +05/23/2018,Sports_celeb,@JeffGordonWeb,Extremely honored to be part of the 2019 @NASCARHall of Fame Class. I’m grateful to so many people that played a ro… https://t.co/35JzXmybXo +05/20/2018,Sports_celeb,@JeffGordonWeb,A lot of exciting moments in last night’s All Star race @CLTMotorSpdwy. Good chance we’ll see a updated version of… https://t.co/eWST90QW0d +05/19/2018,Sports_celeb,@JeffGordonWeb,"Ready for the #AllStarRace? Tune in to @NASCARonFOX from Charlotte on @FS1 or https://t.co/vrddf6SJWT! + +📷:… https://t.co/C5rSYcCygY" +05/19/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: TONIGHT. $1M is up for grabs. + +Don't miss the 2018 #AllStarRace. Coverage begins at 5p ET on FS1. + +https://t.co/sGhMOjNT1O" +05/18/2018,Sports_celeb,@JeffGordonWeb,".@WilliamByron to Drive Throwback Rainbow #24 at @TooToughToTame + +🌈🌈🌈🌈 +@AxaltaRacing +@TeamHendrick + +https://t.co/rpPohkaXzA + +#TeamJG" +05/18/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: Getting ready for an exciting announcement with @WilliamByron and @JeffGordonWeb. + +Watch it live on @AxaltaRacing’s Inst…" +05/18/2018,Sports_celeb,@JeffGordonWeb,The cover comes off of @WilliamByron’s No. 24 Chevy Camaro for @TooToughToTame today. Head over to @AxaltaRacing’s… https://t.co/mfwV4yoD7r +05/18/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Jeff Gordon remembers the very wet 2001 NASCAR #AllStarRace, when he went to Victory Lane in a backup car. #RaceHub https:…" +05/16/2018,Sports_celeb,@JeffGordonWeb,That’s a great collectible! And signed by all 4 drivers👍🏻 https://t.co/TGCTqrRWNC +05/16/2018,Sports_celeb,@JeffGordonWeb,👍🏻😁 https://t.co/Mh4HZPqDm0 +05/16/2018,Sports_celeb,@JeffGordonWeb,I sure do! Had a blast racing that kart. That’s at the small dirt track outside the old Baylands track where they u… https://t.co/kl9dK5Hhym +05/15/2018,Sports_celeb,@JeffGordonWeb,Enjoyed hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Kansas. Great group that traveled fro… https://t.co/gknVFNeYzO +05/15/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Saturday night. $1M is up for grabs. + +Don't miss the 2018 #AllStarRace on FS1. https://t.co/ZMYq0MCWGI" +05/13/2018,Sports_celeb,@JeffGordonWeb,"Happy Mother’s Day to, @ivandebosch, my wonderful wife & amazing mom to Ella & Leo! https://t.co/kfbUVZi1JZ" +05/12/2018,Sports_celeb,@JeffGordonWeb,Who’s ready for racing? It’s almost go time. Tune in to @NASCARonFOX from Kansas at 7pm ET on @FS1 or… https://t.co/BnCYZz4v9A +05/12/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: New family photos. + +⬇️⬇️⬇️ + +https://t.co/4Nt1Ii92pu + +#TeamJG https://t.co/3HYiVbJi3E" +05/12/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: Racing Rewards is a new app where you can play games, answer trivia, get the latest racing news & more to earn reward po…" +05/12/2018,Sports_celeb,@JeffGordonWeb,"New family photos. + +⬇️⬇️⬇️ + +https://t.co/4Nt1Ii92pu + +#TeamJG https://t.co/3HYiVbJi3E" +05/11/2018,Sports_celeb,@JeffGordonWeb,I’m pretty sure I was telling you about my goal to perfect the mullet!😂. Had a lot of great battles together over t… https://t.co/Tsa8A2PIhh +05/11/2018,Sports_celeb,@JeffGordonWeb,"Thank you to everyone who attended A Night In Napa supporting @JeffGordon4Cure. Because of you, we raised over $75,… https://t.co/RAO22Pdm0Z" +05/10/2018,Sports_celeb,@JeffGordonWeb,"Racing Rewards is a new app where you can play games, answer trivia, get the latest racing news & more to earn rewa… https://t.co/vp3cUA3JBB" +05/06/2018,Sports_celeb,@JeffGordonWeb,"Who’s ready for racing? Tune in to @NASCARonFOX from Dover at 2pm ET on @FS1 or https://t.co/vrddf6SJWT! + +📷:… https://t.co/MFv7sdiUy4" +05/05/2018,Sports_celeb,@JeffGordonWeb,What an honor! Thank you! https://t.co/6uGxB7kiyb +05/03/2018,Sports_celeb,@JeffGordonWeb,This was fun! Great to spend time with these #JeffGordon24EverVIP fans & @WilliamByron at Talladega. Awesome group… https://t.co/STaN24Cv1q +05/03/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonSales: #GuessingGame 🐎 How many horses do you think @JeffGordonWeb's #Chevy dealer can fit on its main showroom floor? 🤔 + +Re…" +05/03/2018,Sports_celeb,@JeffGordonWeb,New family photos -> https://t.co/4Nt1Ii92pu. #TeamJG https://t.co/FD3HWcsiTQ +05/01/2018,Sports_celeb,@JeffGordonWeb,It’s finally here! The 1:18 scale @WayneTaylorRcng 24 Hours of Daytona car looks amazing! Shipping soon from… https://t.co/vtxLzaBI0v +04/30/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron a couple weeks ago in Bristol. Awesom… https://t.co/OvCEnsmHFM +04/30/2018,Sports_celeb,@JeffGordonWeb,RT @jordan10taylor: Great time at Talladega this weekend! Thanks for the hospitality @TalladegaSuperS and @TeamHendrick. #WalkItLikeITalkIt… +04/30/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Man, these autograph chasers are EVERYWHERE at Talladega. 😂 https://t.co/QSE2PMgons" +04/29/2018,Sports_celeb,@JeffGordonWeb,"Who’s ready for racing? Tune to @NASCARonFOX or https://t.co/vrddf6SJWT from Talladega at 1:30pm ET on @FOXTV! + +📷:… https://t.co/ZGGL1RMRln" +04/29/2018,Sports_celeb,@JeffGordonWeb,So cool for me to be able to assist @CodyCutrer24 with his proposal to @Shay_49 yesterday at the… https://t.co/11F8bCd1xI +04/28/2018,Sports_celeb,@JeffGordonWeb,"You can help @JeffGordon4Cure support children battling cancer when you bid on these unique items. + +➡️… https://t.co/F3WAFnABhi" +04/28/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: It's #DriversOnly Saturday in Talladega! Coverage starts today with @NASCAR_Xfinity qualifying at 11a ET on FS1. + +Coverage…" +04/26/2018,Sports_celeb,@JeffGordonWeb,RT @TeamHendrick: #TBT to @JeffGordonWeb’s 2007 win @TalladegaSuperS. https://t.co/ktJsLk2L29 +04/26/2018,Sports_celeb,@JeffGordonWeb,RT @kansasspeedway: Just 4 days left to enter for your chance to meet @JeffGordonWeb as part of a VIP experience right here at Kansas Speed… +04/25/2018,Sports_celeb,@JeffGordonWeb,New Release: @RayEvernham Dual Autographed 1998 @TooToughToTame Win Die Cast available exclusively at… https://t.co/T3vXfQ6Gi2 +04/25/2018,Sports_celeb,@JeffGordonWeb,"Had a great time visiting @LevineChildrens yesterday & being interviewed by @jordin_donahue, daughter of former #24… https://t.co/ZPFchBM2Ya" +04/25/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: After watching our new friend Alexander meet his favorite drivers, we had smiles on our faces, too.😁 https://t.co/MeDgrJM…" +04/23/2018,Sports_celeb,@JeffGordonWeb,Looks like I need to stop by Kennesaw next time I’m in GA! https://t.co/AERsPVkMeB +04/21/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: The Ultimate At-Track Experience Contest! + +You could win: +- (4) Hot Passes +- Meet & Greet +- (4) Grandstand Tickets +- $20…" +04/21/2018,Sports_celeb,@JeffGordonWeb,So proud of Leo today in his 1st USAC.25 race. Started at the back & was moving forward. Went for a late pass into… https://t.co/OreV3RGbUJ +04/21/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 3pm ET on @FS1, then @NASCARonFOX from Richmond at 6pm ET on @FOXTV! Who’s ready for ra… https://t.co/vlqrDpWfqa" +04/21/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Get ready for tonight’s race in Richmond with NASCAR #RaceDay. 3p ET on FS1 and https://t.co/2Jj71pkLEW! https://t.co/kMLH… +04/19/2018,Sports_celeb,@JeffGordonWeb,RT @ivandebosch: The @BCRFcure #HotPinkParty is less than 1 month away! Looking forward to seeing @MaryJBlige take the stage to support bre… +04/16/2018,Sports_celeb,@JeffGordonWeb,"The Ultimate At-Track Experience Contest! + +You could win: +- (4) Hot Passes +- Meet & Greet +- (4) Grandstand Tickets… https://t.co/ySMCyJ7GwZ" +04/16/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: So, if you need to leave work or school within the next hour ... these may help. 😉 https://t.co/uOD9eXDOVK" +04/16/2018,Sports_celeb,@JeffGordonWeb,It is at Bristol! https://t.co/gst6YlUBeX +04/16/2018,Sports_celeb,@JeffGordonWeb,The 30 degree drop in temp today @BMSupdates is going to keep the intensity high(& grip on the steering wheel even… https://t.co/kvn1Or3ULf +04/16/2018,Sports_celeb,@JeffGordonWeb,"Neither, catching up on recorded Supercross on @FS1 from last night. Watching Homeland & Billions after that to fin… https://t.co/ESUDWpYdFs" +04/15/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Need an excuse to miss work and watch racing from Bristol tomorrow? We've got you covered. 👊😎🏁 https://t.co/YYuvKO9u17 +04/15/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: OFFICIAL: The rest of today's action in Bristol has been postponed. We will resume racing tomorrow at 1p ET on FOX. https:… +04/15/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 11:30am ET on @FS1, then @NASCARonFOX from Bristol at 12:30pm ET on @FOXTV! Who’s ready… https://t.co/UBqlcodBye" +04/14/2018,Sports_celeb,@JeffGordonWeb,Watching the @NASCAR Xfinity race and it reminds me of “old school Bristol”. Pretty cool! Wondering though if… https://t.co/jQUmotGCzG +04/13/2018,Sports_celeb,@JeffGordonWeb,Learn anything about that last pit road timing segment leaving #1 pit stall? 🤔 https://t.co/AkR1xYlvAo +04/13/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordonWeb: @CopaCavanna Hi Alan! 😁 https://t.co/mkkqOwtG3o +04/13/2018,Sports_celeb,@JeffGordonWeb,@CopaCavanna Hi Alan! 😁 https://t.co/mkkqOwtG3o +04/12/2018,Sports_celeb,@JeffGordonWeb,A yr traveling & racing through Europe🤔👍🏻Is @MattieceHansen a part of the deal?😆 https://t.co/mY54AX3X1e +04/11/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Texas. Awesome group that traveled… https://t.co/xqtgKJ71DK +04/08/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 12:30pm ET, then @NASCARonFOX from Texas at 2pm ET both on @FS1! Who’s ready for racing… https://t.co/PsDPQdYKtX" +04/07/2018,Sports_celeb,@JeffGordonWeb,“Whew... for a second there I thought I was going to miss my exit”😂 https://t.co/oHxqOF75wJ +04/06/2018,Sports_celeb,@JeffGordonWeb,I’ll give @NASCAR & @NASCARONFOX a lot of credit for cancelling qual today. It just started pouring down rain! Not… https://t.co/ulodvt1mRc +04/06/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: Look who we found roaming the garage. 👋 https://t.co/zrMuNinHk0 +04/02/2018,Sports_celeb,@JeffGordonWeb,Dinner & stargazing with the family. Perfect night (and a blue moon!). https://t.co/RFnTvEDZzu +04/01/2018,Sports_celeb,@JeffGordonWeb,https://t.co/rCzDBybWMG +04/01/2018,Sports_celeb,@JeffGordonWeb,Happy Easter https://t.co/mYFJjWeoFs +04/01/2018,Sports_celeb,@JeffGordonWeb,"If you’ve never seen zip-lining in Costa Rica then you’ve probably not seen the Superman Zip-line. Insane! And no,… https://t.co/aCX8xnN2p3" +03/30/2018,Sports_celeb,@JeffGordonWeb,Woke up to monkeys having their breakfast in the treetops outside our room. https://t.co/SYDVpjZbTg +03/30/2018,Sports_celeb,@JeffGordonWeb,@ClintBowyer No race car driver(or person) cooler than @MarioAndretti! But don’t let the awesome meter get in the w… https://t.co/iNz5GATVbz +03/30/2018,Sports_celeb,@JeffGordonWeb,https://t.co/0oMFrYngjk +03/29/2018,Sports_celeb,@JeffGordonWeb,"In an interview with @MediaPlanetUSA for a special feature that was in yesterday's @USATODAY, discussed the road ah… https://t.co/2IUw5xRjFw" +03/29/2018,Sports_celeb,@JeffGordonWeb,Zip line Costa Rica! https://t.co/yUSRxiPvSy +03/29/2018,Sports_celeb,@JeffGordonWeb,Fun & adventurous day in Costa Rica. https://t.co/wx3s8gfjph +03/27/2018,Sports_celeb,@JeffGordonWeb,"Recently, @ivandebosch visited her family in Belgium to celebrate her Mom’s 85th birthday. 🎂 + +You can check out 📷 &… https://t.co/u1V6UlTVyQ" +03/26/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT for @NASCARonFOX from Martinsville at 2pm ET! Snow postponed yesterday’s ra… https://t.co/5HYo5ZTmqj +03/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: NASCAR Truck Series: ✓ +NASCAR Cup Series: NEXT! + +#RaceHub gets you ready for today's main event in Martinsville NOW on FS1…" +03/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Snow has postponed all activity at @MartinsvilleSwy until Monday. + +Tomorrow on @FS1: +- @NASCAR_Trucks at 11a ET +- Cup Ser…" +03/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: @NASCAR_Trucks NASCAR #RaceDay - 12:30p ET + +Cup Series Racing - 2p ET + +Truck Series Racing - Immediately following the Cup…" +03/24/2018,Sports_celeb,@JeffGordonWeb,I’m not the only one in the family who loves coming to @MartinsvilleSwy. Thank you @JamieLittleTV for letting Ella… https://t.co/DBMuVm5MEE +03/23/2018,Sports_celeb,@JeffGordonWeb,"RT @ivandebosch: This is what a real Belgian Waffle looks like, hot Chocolat sauce and Ice cream onthe side! For a 4pm snack une https://t.…" +03/23/2018,Sports_celeb,@JeffGordonWeb,RT @AxaltaRacing: #BreakingNews -- @AxaltaRacing is thrilled to announce our extension with @TeamHendrick through 2022! #WePaintWinners htt… +03/23/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Martinsville. Sunday on FS1. https://t.co/bB0xH6Eh43 +03/22/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: The Martinsville hour is close at hand. https://t.co/HmG01QruxY +03/21/2018,Sports_celeb,@JeffGordonWeb,"Ingredients to a great day. + +Leo: ”Dad what is Star Wars about?” + +Me: ”In a galaxy far away....good vs evil....Luk… https://t.co/XvY9r6Mm38" +03/19/2018,Sports_celeb,@JeffGordonWeb,"Really enjoyed spending time with these #JeffGordon24EverVIP fans at Fontana. Great group that traveled from AZ, CA… https://t.co/ikdbMTnhAN" +03/18/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Fon… https://t.co/0czmNUfr8i +03/18/2018,Sports_celeb,@JeffGordonWeb,Wow what a clutch shot! That was a scream out loud “WHAT!!!” moment. https://t.co/pesZKmtXia +03/17/2018,Sports_celeb,@JeffGordonWeb,"RT @DaleJr: That time I went to get highlights but was sick of the pain of getting my hair pulled through the cap. Ouch. +Lesson: no pain n…" +03/17/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordonWeb: @DaleJr I see retirement is treating you to the same amount of relaxation as it is for me. I’m not sure how to describe… +03/17/2018,Sports_celeb,@JeffGordonWeb,@DaleJr I see retirement is treating you to the same amount of relaxation as it is for me. I’m not sure how to desc… https://t.co/3cZbNt4uCI +03/17/2018,Sports_celeb,@JeffGordonWeb,LOL! When do u plan to get back to the race track this year? You have too much time on your hands!😂 https://t.co/ZPmly4y0kT +03/17/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Spend your St. Patrick's Day with #NASCARonFS1! Monster Energy Series practice is at 12:30p ET. + +Here's your full Saturday…" +03/17/2018,Sports_celeb,@JeffGordonWeb,"Wow! NASCAR-“I’ll see your $50.....& raise you $1,000” https://t.co/gdRn5Xva5m" +03/16/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: California dreamin' on Fast Friday. https://t.co/EMuynFnX3r +03/15/2018,Sports_celeb,@JeffGordonWeb,RT @JonEdwards24: Be sure to catch @JeffGordonWeb @ShannonSpake @LarryMac28 and @adam1alexander on Race Hub tonight at 7 pm ET. https://t.c… +03/14/2018,Sports_celeb,@JeffGordonWeb,Well said Eddie! Couldn’t agree more. https://t.co/sCvGbuuOH2 +03/14/2018,Sports_celeb,@JeffGordonWeb,"RT @ajsuriano_: Hey @JeffGordonWeb guess what, your biggest fan, Fan 151 (@driveforfive) gave birth to Baby Franks today.... at 3:24... htt…" +03/14/2018,Sports_celeb,@JeffGordonWeb,Haha talk about a cool experience! Room full of racing legends and solving world problems with the greatest of them… https://t.co/Di5gu6yb7h +03/14/2018,Sports_celeb,@JeffGordonWeb,"👟🔥👀 + +@MACHE275 created custom kicks. + +⬇️⬇️⬇️ + +https://t.co/JGpfU3Ty9t + +#TeamJG https://t.co/Q4lgbSWRCz" +03/14/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: A well-deserved honor! + +Congratulations, @JeffGordonWeb on your induction into the @MotorsportsHOF. 🎉 https://t.co/dQS0iy…" +03/13/2018,Sports_celeb,@JeffGordonWeb,😂😂😂U go Larry Mac! #crewchiefofbelair https://t.co/jzozCepYGc +03/12/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordon4Cure: Checked out our eBay store recently? There are 600+ listings for purchase to help support our fight against childhood… +03/12/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: #RaceHubGoesWest: 6p ET on FS1. https://t.co/8kVqTajpDC +03/12/2018,Sports_celeb,@JeffGordonWeb,“The entire #JeffGordon24EverVIP Experience was amazing from start to finish. This was a surprise graduation presen… https://t.co/RDXuKnciuI +03/11/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Pho… https://t.co/Rndr1vT8pG +03/10/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Your NASCAR Saturday is less than one hour away! It all kicks off on FS1 at 12p ET. https://t.co/7Wh3uDV01E +03/09/2018,Sports_celeb,@JeffGordonWeb,Exactly. Teams were using exotic materials such as Nitinol(Nickel Titanium). Only aluminum is allowed now. https://t.co/BYmyAWMs5v +03/09/2018,Sports_celeb,@JeffGordonWeb,The side skirts are made of plastic(except the tailpipe area). The only material allowed on the right side surround… https://t.co/EmGka5WfXW +03/09/2018,Sports_celeb,@JeffGordonWeb,New Release: Autographed @RayEvernham 2018 @NASCARHall Of Fame 1:24 Scale ARC Fantasy Die Cast! Exclusively at… https://t.co/EQKsHlc9uv +03/08/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: .@ISMRaceway sure holds a special place in @JeffGordonWeb's heart. 3️⃣ https://t.co/3tvjRdLgrd +03/07/2018,Sports_celeb,@JeffGordonWeb,What a pleasure it was to drive & win a race for the Wilke Family. Hard to believe that was 27yrs ago! https://t.co/qYJm1pZ8H0 +03/06/2018,Sports_celeb,@JeffGordonWeb,I’m so honored and thrilled to be one of the 20 nominees for the 2019 @NASCARHall of Fame class. Such a special con… https://t.co/dd9wFUIZXm +03/06/2018,Sports_celeb,@JeffGordonWeb,"New things for @TeamHendrick. In case you missed the @NASCARONFOX interview - talking with @JimmieJohnson,… https://t.co/9x3V57p8G8" +03/05/2018,Sports_celeb,@JeffGordonWeb,🤔𗀡😂 https://t.co/OhELcz44Pf +03/05/2018,Sports_celeb,@JeffGordonWeb,"😍😍 + +📸 ➡️ https://t.co/4Nt1Ii92pu. + +#TeamJG https://t.co/TvJyjPv8AW" +03/05/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWine: Our 2014 Carneros Chard, autographed by Jeff, & our 94-point 2009 Napa Cab from the library...what a pair! Secure yours…" +03/04/2018,Sports_celeb,@JeffGordonWeb,"Tune to @FS1 at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Las Vegas Motor Speedway. + +📷:… https://t.co/xoHp0C8E8J" +03/04/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Soon ... (2p ET on FS1, to be exact) https://t.co/B7sMo32UXc" +03/03/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Your NASCAR Saturday starts ... NOW! + +All of today's action is on FS1. Stream it with https://t.co/2Jj71pkLEW. https://t.…" +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Fast Friday from Las Vegas. https://t.co/dDkxQcM7Zy +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Fiiiiiiiiiiiiiiiiiiiiiiiiiiiight. We all remember these. #TBT #RaceHub https://t.co/3sls0GrYma +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: BREAKING NEWS. #RaceHub had a lot of fun this week ... as usual. https://t.co/KqcdP05EsP +03/01/2018,Sports_celeb,@JeffGordonWeb,Very cool! Great to see @MattieceHansen behind the wheel. You are a good man for doing that @AnthonyKumpen. Hope th… https://t.co/OJbtDSTnkr +03/01/2018,Sports_celeb,@JeffGordonWeb,"Talked life, racing, work & a few other things with @NateRyan on the @NASCARonNBC podcast. You can listen here ->… https://t.co/OttdP4Px9D" +02/28/2018,Sports_celeb,@JeffGordonWeb,"Recently joined @NateRyan for @NASCARonNBC podcast. Covered a lot of things. Think you'll enjoy it. + +– Past, presen… https://t.co/56QS1MuBBs" +02/28/2018,Sports_celeb,@JeffGordonWeb,RT @24ChevyLover: Wow! Time goes @NASCAR fast! It was 4 years ago on this date that I met @JeffGordonWeb for my first #JeffGordon24EverVIP… +02/28/2018,Sports_celeb,@JeffGordonWeb,"RT @nateryan: Among the topics of @JeffGordonWeb's visit to the @NASCARonNBC podcast: +--His thoughts on his upcoming @NASCARHall candidacy;…" +02/28/2018,Sports_celeb,@JeffGordonWeb,"RT @nateryan: New @NASCARonNBC podcast is a wide-ranging convo with guest @JeffGordonWeb of @NASCARONFOX. #nascar +@art19co: https://t.co/y6…" +02/28/2018,Sports_celeb,@JeffGordonWeb,Happy Birthday to the legend @MarioAndretti. +02/27/2018,Sports_celeb,@JeffGordonWeb,New family photos -> https://t.co/4Nt1Ii92pu. #TeamJG https://t.co/f81bc8Lp7x +02/26/2018,Sports_celeb,@JeffGordonWeb,"Leo is officially ready to race! + +📷 -> https://t.co/4Nt1Ii92pu. https://t.co/oTtY8WZClj" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: WE. ARE. GREEN! + +Ryan Newman leads lap 1 of 325 in Atlanta. https://t.co/RvXjz3V69s" +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Retweet to spread the news! Looks like we're going racing in Atlanta. Coverage continues NOW on FOX and https://t.co/2Jj71… +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Mike Joy and Larry Mac are optimistic. https://t.co/9CRH5FPUvE +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: When dad tells you to shape up on national television. https://t.co/FvW2PWf0gr +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@BubbaWallace reflects on his 2nd-place finish in the Daytona 500. https://t.co/XgBhhnjVwg +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: ""You just can't lift. If I lift, I'm probably getting wrecked out the back.""- @AustinDillon3 watches the 2018 Daytona 500…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Seeing that No. 9 with an Elliott on the door is definitely ... Awesome. + + Racing is a family affair. Bill and @ChaseEllio…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: ""Do as I say, not as I do.""- Tony Stewart to Aric Almirola before Daytona 500 post-race interview. https://t.co/WTehPbUGu0" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Want proof that it’s not raining right now in Atlanta? We’re LIVE on pit road. 😎 + +#FoHQT500 https://t.co/UqTrXaHGZT" +02/25/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 at 12pm ET for @NASCAR #RaceDay & @FOXTV at 12:30pm ET for @NASCARonFOX from @AMSUpdates. #NASCAR… https://t.co/nHwtqrBERL +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Welp. It's raining in Atlanta. Hoping to send out the Air Titans soon. + +Get the latest on the AMS weather during NASCAR #R…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: LET'S DO THIS! Welcome to Atlanta. + +NASCAR #RaceDay - 12p ET - FS1 +Race coverage - 12:30p ET - FOX https://t.co/Moc5i6nAng" +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: “Thanks for sending in your questions! Don’t miss the Atlanta race tomorrow. Coverage begins at 12:30p ET on FOX!” https:/… +02/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@jsbatella Hey, @BubbaWallace and @WilliamByron ... #AskJG https://t.co/I6co4BqzbE" +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@brandon73999679 2️⃣4️⃣🏁 #AskJG https://t.co/VloJHguSun +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Monte241 #AskJG https://t.co/wNLEQ2odkF +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@bebe24488805 #AskJG https://t.co/oaZeWH36Eu +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@barkeep1347 #AskJG https://t.co/q11FPSR38c +06/30/2018,Sports_celeb,@JimmyJohnson,"RT @Dolfin55: June 4, 1984: @JimmyJohnson is officially introduced to the media as the new head football coach at the University of Miami.…" +06/28/2018,Sports_celeb,@JimmyJohnson,Cocktails on Lady S (Dan Snyder’s yacht in Cannes France..great time! https://t.co/4dLEPaveLO +06/17/2018,Sports_celeb,@JimmyJohnson,Class individuals! https://t.co/Z68IgkqdLv +06/14/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: How gorgeous is @JimmyJohnson's 2019 #JJFishweek Crest? Official tournament artist Dennis Friel blows it out of the water.… +06/07/2018,Sports_celeb,@JimmyJohnson,Now I know who was on that boat! https://t.co/ywdZopg193 +06/07/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: .@JimmyJohnson + @HardRockHolly = one hell of a kickoff party! #TBT to #JJFishweek's premier Gifting Suite Experience & all… +06/06/2018,Sports_celeb,@JimmyJohnson,True! https://t.co/qPXSgoFYsn +06/06/2018,Sports_celeb,@JimmyJohnson,Exciting Day! https://t.co/fucuA1wCnE +06/04/2018,Sports_celeb,@JimmyJohnson,Yes disappointing ..only in playoffs 3 straight years winning couple https://t.co/iyGiErQksK +05/22/2018,Sports_celeb,@JimmyJohnson,"RT @DarrinDonnelly: “Treat a person as he is, and he will remain as he is. Treat a person as if he was what he could be and should be, and…" +05/22/2018,Sports_celeb,@JimmyJohnson,"RT @damonwest7: So excited I get to share my story with @CanesFootball on June 26th. Just finalized the deal. +This was my team growing up,…" +05/22/2018,Sports_celeb,@JimmyJohnson,RT @CoachPeten: @JimmyJohnson as a fellow coach I hope that you soon will get the credit you deserve from the NFL. You deserve the HOF! Yo… +05/22/2018,Sports_celeb,@JimmyJohnson,RT @DHGHealthcare: Our final day of Symposium wrapped with a Keynote from Coach Jimmy Johnson and a Q&A with Pam Oliver! Thank you to our a… +05/21/2018,Sports_celeb,@JimmyJohnson,"Peter, I always trusted you would be fair, but I did mean it! Ha https://t.co/uVaPhL4IP5" +05/21/2018,Sports_celeb,@JimmyJohnson,"RT @RDubThree: .@theMMQB says 'Thank You' to former #Cowboys HC @JimmyJohnson, and the coach's secret for drafting great players : https://…" +05/17/2018,Sports_celeb,@JimmyJohnson,@OriginBank @drakemills ...congrats great organization! https://t.co/COAaNxvgQp +05/15/2018,Sports_celeb,@JimmyJohnson,"RT @crupicrupicrupi: Why does it matter that Fox Sports owns the fall? Because in the 20 weeks of the football season, consumers spend abou…" +05/13/2018,Sports_celeb,@JimmyJohnson,"RT @RichardDelToro: On the eve of Mother’s Day, I just finished watching @JimmyJohnson “A Football Life”, and the discussion about being pr…" +05/09/2018,Sports_celeb,@JimmyJohnson,RT @warriorgames: Thanks for the shout out! We could always use an extra coach! #WarriorGames https://t.co/WLNPrvBR54 +05/09/2018,Sports_celeb,@JimmyJohnson,Great event! https://t.co/hT2K6Y03tN +05/03/2018,Sports_celeb,@JimmyJohnson,Excited to see our wounded warriors at this yrs #2018 Warrior Games at Air Force Academy +05/01/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: What a finale! @JimmyJohnson revealed his secrets on building a winning team and that's a wrap for #PMMIELC! Much gratitude to… +05/01/2018,Sports_celeb,@JimmyJohnson,"RT @realrobertdunn: @PMMIorg @AFFLINK @JimmyJohnson His hair really is perfect! Leadership is simple... eliminate the wrong people, bring i…" +05/01/2018,Sports_celeb,@JimmyJohnson,"RT @PMMIorg: @JimmyJohnson is gearing up to deliver the final #PMMIELC business session - ""Teams That Win: Fundamentals for Success""! PMMI'…" +05/01/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: Who is ready for the last day of #PMMIELC?! Our #packaging and #processing executives kicked off today with a 5K Fun Run/Walk!… +04/29/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: You were AMAZING!! Great stuff!👍🏼 https://t.co/utN2YSBBw5 +04/27/2018,Sports_celeb,@JimmyJohnson,RT @DarrinDonnelly: “Do you want to play it safe and be good or do you want to take a chance and be great?” – Jimmy Johnson https://t.co/2m… +04/26/2018,Sports_celeb,@JimmyJohnson,Fun town! https://t.co/OuiE1U0buM +04/25/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: @JimmyJohnson is coming to #PMMELC! The former NFL coach will reveal his secrets on building a winning organization: https://t… +04/23/2018,Sports_celeb,@JimmyJohnson,Lure in rt hand https://t.co/C9QdjYxx77 +04/23/2018,Sports_celeb,@JimmyJohnson,tamerproducts @bellsouth.net https://t.co/pMqWJF7qb6 +04/21/2018,Sports_celeb,@JimmyJohnson,Like 30 other teams IWISH we had drafted @RandyMoss ! +04/21/2018,Sports_celeb,@JimmyJohnson,"Even though Moss was picked Before our pick, I DID miss on AT least 2 or 3 other great players! Ha!" +04/18/2018,Sports_celeb,@JimmyJohnson,Actually 10 HOF players counting couple in college https://t.co/iATGu3hhGG +04/18/2018,Sports_celeb,@JimmyJohnson,Key Largo MM 104 https://t.co/ZyvErd5jQ2 +04/18/2018,Sports_celeb,@JimmyJohnson,A little advice for NFL teams getting ready for the draft..Ask yourself “ What do I want out of this draft?”work the picks to achieve +04/18/2018,Sports_celeb,@JimmyJohnson,Had great time with Dave & Jan Wannstedt at the “Chill” ...great to reminisce with good people.. https://t.co/LKecThRs1f +04/18/2018,Sports_celeb,@JimmyJohnson,RT @MyPlaceHotels: We thank our many friends at @AAHOA for arranging the meeting and photo opportunity between Coach @JimmyJohnson and My P… +04/17/2018,Sports_celeb,@JimmyJohnson,Congrats Pam! https://t.co/1DrQsWkeOG +04/12/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: This is what Overall 2nd Place at #JJFishweek looks like. All smiles for Captain Scott and his team from Irvine, Tx on Catc…" +04/07/2018,Sports_celeb,@JimmyJohnson,RT @bikerchris417: That time I went to @JimmyJohnson BigChill in fisherman’s cove and ran into the legend himself!!! #FlashbackFridays #flo… +03/28/2018,Sports_celeb,@JimmyJohnson,"RT @AAHOA: ""Create an atmosphere where people can be the best they can be."" - American football coach Jimmy Johnson on leadership. #AAHOACO…" +03/27/2018,Sports_celeb,@JimmyJohnson,RT @AAHOA: Former @dallascowboys and @MiamiDolphins coach @JimmyJohnson will be joining us on the main stage on March 28 at #AAHOACON18! Ch… +03/24/2018,Sports_celeb,@JimmyJohnson,Nice #Garmin watch! https://t.co/LSO2UoD3Hf +03/23/2018,Sports_celeb,@JimmyJohnson,"A great man, one of the nicest individuals I have ever known, Wayne Huizenga passed away. RIP" +03/20/2018,Sports_celeb,@JimmyJohnson,"RT @TodayInSports3: Today in 1989, Jimmy Johnson on the cover of Sports Illustrated. The long climb would pay off 3 years later, winning S…" +03/18/2018,Sports_celeb,@JimmyJohnson,RT @PhinsChris: How @JimmyJohnson identified guys like Zach Thomas and Larry Izzo. #Dolphins https://t.co/ERcux3J4UC +03/11/2018,Sports_celeb,@JimmyJohnson,"Congratulations Sandman! Great time, money for charity #Tranquil Shores and over 2.1 million $$ given out! https://t.co/KT4oyhEXqu" +03/11/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: The Unofficial Newest Member of @JimmyJohnson’s Ring of Honor with 13 releases goes to @sandmanfishing! See you at #BigChil… +03/10/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Unofficial Update Day 2: Noon! And just like that we have a new leader. Catch-22 chartered by Anglers out of the great stat… +03/10/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Day 1 done! Unofficial Leaders: Native Son / Weighted Leader: Chop It Up/Blue Moon Fish Co! Tomorrow we see how things fini… +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Unofficial Update: Day One 3PM Leaderboard - With 83 releases so far and an hour to go, @nativesonfishing is at number 1! K…" +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Unofficial Update: Day One Noon Leaderboard - With 63 releases so far, Hillbilly Deluxe is out in front going after that $1…" +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Congrats Worldwide Wes, former Toronto Blue Jays player Alex Gonzalez team Rally Cap! Benefiting University of Miami Athlet…" +03/09/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Awesome day at @JimmyJohnson’s Celeb Pro Am! @JonVilma51 @DjWilliam55 @TwanRussell @ripcityhamilton #JJFishweek https://t.c… +03/08/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: We had a great time kicking of tomorrow’s Celeb Pro Am with @JimmyJohnson and his friends tonight at the Big Chill in Key L… +03/07/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Doors are open and we are ready for all our teams at #BigChill. The 2018 #JJFishweek is officially underway and @JimmyJohns… +03/07/2018,Sports_celeb,@JimmyJohnson,RT @YamahaOutboards: Setting up for @jjfishweek https://t.co/xLFv6fyydF +03/05/2018,Sports_celeb,@JimmyJohnson,RT @mike_beedles: Looking forward to supporting @JimmyJohnson on his 7th annual event!!! Always a great time and partner on this incredible… +03/05/2018,Sports_celeb,@JimmyJohnson,Thanks for the comments! https://t.co/JKFvYnPNZp +03/04/2018,Sports_celeb,@JimmyJohnson,RT @HardRockHolly: A few words from coaching legend @JimmyJohnson 🎣 #HardRockHotel #JJFishWeek https://t.co/OiEVT5m1AK +03/04/2018,Sports_celeb,@JimmyJohnson,#jjfishweek! Hard Rock!! https://t.co/PeS74CsJYW +03/04/2018,Sports_celeb,@JimmyJohnson,We have mermaids at jjfishweek! https://t.co/mDO2UKbREa +03/03/2018,Sports_celeb,@JimmyJohnson,We have dancing girls at our tournament! https://t.co/XpMWi18VuH +03/03/2018,Sports_celeb,@JimmyJohnson,Nick and I at biggest fishing tournament in the USA..1 1/2 million dollar purse! jjfishweek! https://t.co/UYdzp1ulGv +03/02/2018,Sports_celeb,@JimmyJohnson,RT @YamahaOutboards: Head over to our Instagram page as coach @JimmyJohnson 's @jjfishweek takes over today in preperation for next week's… +03/01/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Check your mailbox! @JimmyJohnson is the Cover Story for @LifestyleMagFL's March issue! Be sure to read his story ""Reel Tim…" +02/28/2018,Sports_celeb,@JimmyJohnson,RT @BrandCuda: Bags on bags for the @jimmyjohnson event at the @HardRock @BrandCuda https://t.co/tRMMZFT228 +02/27/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: The Happy Hookers are bringing their talents to @JimmyJohnson's Fishing Tournament in Key Largo! +This #NewYork team set t…" +02/22/2018,Sports_celeb,@JimmyJohnson,"RT @FOXSportsSW: When it comes to evaluating talent, take a page out of @JimmyJohnson's playbook! #CowboysNation | #ThursdayThoughts https:…" +02/20/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Are you serious about competing for $1.5 MILLION - the richest guaranteed purse in tournament history? + +There are ONLY 8 S…" +02/16/2018,Sports_celeb,@JimmyJohnson,"RT @FOCUSEDdocs: Relax with @JimmyJohnson, who now resides in the region he first rose to true national prominence. + +Catch @FOCUSEDdocs o…" +02/15/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: We're feeling the love! With over 90 boats registered for #JJFishweek on March 7-10th! No one throws a tournament like Coac… +02/14/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Chartering Captain Matt and the AbsolutJoy Sportfishing team from Palm Beach have $1.5 MILLION reasons to hit the waters of… +02/13/2018,Sports_celeb,@JimmyJohnson,RT @DarrinDonnelly: “The only thing worse than a coach or CEO who doesn’t care about his people is one who pretends to care. People can spo… +02/10/2018,Sports_celeb,@JimmyJohnson,1 of my favorite scouts..great man https://t.co/Ll3JTCWzjF +02/10/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: Jim Garrett was a great man in every way #rip https://t.co/2nioFHFph6 +02/08/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: .@JimmyJohnson's Fishing Championship has a GUARANTEED $1.5M PURSE! @OceanReefTweets's Marina is going to be the place to… +01/31/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: A great day in Cowboys history 24 years ago today...little did we know at that moment that this would be @JimmyJohnson last… +01/30/2018,Sports_celeb,@JimmyJohnson,"RT @NFLonFOX: On this date in 1994, the Bills fell to the Cowboys in Super Bowl XXVIII. + +It was Buffalo's 4th Super Bowl loss in 4 seasons.…" +01/30/2018,Sports_celeb,@JimmyJohnson,@nycDolphinsFan Audibles not signals.. +01/26/2018,Sports_celeb,@JimmyJohnson,"RT @JClarkNBCS: Nick Foles is leading #Eagles to #SuperBowl + +And Cowboys owner Jerry Jones doesnt know his name 🤷‍♂️ +Kolb? Folk? Costanza?…" +01/22/2018,Sports_celeb,@JimmyJohnson,"RT @jawsespn: Coach has been converted! 😉 +#FlyEaglesFly +@JimmyJohnson @NFLonFOX https://t.co/0F6tvkvZTL" +01/20/2018,Sports_celeb,@JimmyJohnson,RT @D_Stro: This picture by @curtmenefee ... 💯#xoxoPhilly https://t.co/dlw6fMk6lA +01/20/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: @JimmyJohnson's Big Chill in #KeyLargo is our official host venue of #JJFishWeek (March 7-10th). Compete for the $1.5M gua… +01/18/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Welcome back @dennisfriel, the official artist of our history making #JJFishWeek! + +Anglers: Join the quest for our $1.5 Mi…" +01/16/2018,Sports_celeb,@JimmyJohnson,"RT @TSFdtn: Thanks so much to our 2017 donors. Because of your generosity, the Tranquil Shores Foundation was able to provide a significant…" +01/12/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Captain Justin ""Tiny"" Walcott & his team fishing on Bad Daddy are locked in across the board for #JJFishweek March 7-10th i…" +01/03/2018,Sports_celeb,@JimmyJohnson,@alonzohighsmith congratulations on your position with Cleveland Browns you’ll be great in helping turn that team around +01/02/2018,Sports_celeb,@JimmyJohnson,Remember “27” well https://t.co/kagNnlfdqF +01/02/2018,Sports_celeb,@JimmyJohnson,With Buckshot Underwood and Harvey Reeves! https://t.co/Sx2F6FCLDO +12/31/2017,Sports_celeb,@JimmyJohnson,"RT @kevin_miley: On Fox NFL Sunday, @JimmyJohnson gave the coach of the year award to Sean McVay. Another graduate from @miamiuniversity. #…" +12/25/2017,Sports_celeb,@JimmyJohnson,RT @jamesxxcc: MERRY CHRISTMAS! @NFLonFOX @curtmenefee @michaelstrahan #HowieLong @JimmyJohnson @terrybradshaw 🎄🏈 https://t.co/7h9dGEHHEX +12/23/2017,Sports_celeb,@JimmyJohnson,Great time entertaining troops! https://t.co/5gKpZlkYgi +12/23/2017,Sports_celeb,@JimmyJohnson,RT @FreddyRoD5: @jimmyjohns @JimmyJohnson If @JimmyJohnson approves then I’ll be having lunch at @jimmyjohns tomorrow for the first time! +12/22/2017,Sports_celeb,@JimmyJohnson,RT @jimmyjohns: I thought you’d never ask 😏 👉 https://t.co/qGjnvbCWHX https://t.co/Jpo0Jrqhvu +12/22/2017,Sports_celeb,@JimmyJohnson,Yes it was! https://t.co/khk9X3YFrv +12/22/2017,Sports_celeb,@JimmyJohnson,I’m rethinking this ‘not my restaurant’ thing @jimmyjohns .... https://t.co/ihNeNGVGNt +12/21/2017,Sports_celeb,@JimmyJohnson,"Great day on water..83 degrees, pond slick water, caught some tuna now back to Irma cleanup! https://t.co/D8AUopzri4" +12/20/2017,Sports_celeb,@JimmyJohnson,Jimmy Johns is not my restaurant https://t.co/beffDBVtMq +12/17/2017,Sports_celeb,@JimmyJohnson,RT @JanineStanwood: Pizza date at the Chill. Bet @JimmyJohnson is excited to get back to the Keys! https://t.co/N7nJOKE7On +12/14/2017,Sports_celeb,@JimmyJohnson,Rather have Nachos with lots of jalapeños https://t.co/TJNx27yzey +12/13/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Team Utopia is ready to get after it as sailfish season kicks off! They're coming for @JimmyJohnson and @HardRockHolly's $… +11/30/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Grab your room and slip for #JJFishweek at Ocean Reef, Marriot or Mariner! Join @JimmyJohnson in Key Largo Mar 7-10: https:…" +11/25/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Only a few days left for #JJFishweek 2017 early registration specials! Join @JimmyJohnson in Key Largo Mar 7-10: https://t.… +11/23/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: A special thanks to the #JJFishweek family & our incredible anglers! https://t.co/kuJaN7EkcK | @HardRockHolly @JimmyJohnson… +11/19/2017,Sports_celeb,@JimmyJohnson,RT @mfr234: How ‘bout those Canes?! @JimmyJohnson @gregolsen88 @CanesFootball https://t.co/gGz1lbmjMq +11/19/2017,Sports_celeb,@JimmyJohnson,RT @OmarKelly: The legendary @JimmyJohnson is now sporting the turnover chain. https://t.co/5yEeUjloo0 +11/18/2017,Sports_celeb,@JimmyJohnson,RT @postalcowboy24: .@JimmyJohnson Enjoying the sunset watching some football at The Big Chill. https://t.co/ByotIgYHwL +11/18/2017,Sports_celeb,@JimmyJohnson,"RT @MrStrauchII: @JimmyJohnson Hi Coach...just enjoyed watching you again on TV's ""Coach""! So much fun! https://t.co/m4JSVAxmDp" +11/17/2017,Sports_celeb,@JimmyJohnson,RT @Hil_Pill: My first time in the Keys! Where else would I go but to @JimmyJohnson’s #JJBigChill!! Glad it’s reopened! +11/14/2017,Sports_celeb,@JimmyJohnson,RT @HotelScallywag: Little known fact: #PresidentReagan started the #TurnoverChain when @JimmyJohnson brought the legendary 87 Canes to th… +11/12/2017,Sports_celeb,@JimmyJohnson,RT @TX2NY1016: Shoutout to @FOXSports Every year they do a phenomenal Pre Game show around #veteransday supporting our troops @JayGlazer @m… +11/12/2017,Sports_celeb,@JimmyJohnson,RT @michaelstrahan: Took a ride in the chopper with the Navy ahead of tomorrow’s show for @NFLonFOX. Filming tomorrow’s show on the base fo… +11/12/2017,Sports_celeb,@JimmyJohnson,Proud to be #MiamiHurricanes fan..Mark Richt and his staff had this team well prepared and ready to play. Go Canes! +11/12/2017,Sports_celeb,@JimmyJohnson,🙌🙌🙌Miami!!! Yes!!! +11/11/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Join us + @JimmyJohnson in wishing #CoachRicht and @canesfootball best of luck tonight! At #JJFishWeek, it's about #TheU 🙌🏻…" +11/10/2017,Sports_celeb,@JimmyJohnson,"RT @ShalashMuh: @JimmyJohnson said it best: +""I told you! If you go to Notre Dame, you can't leave it in the officials' hands."" +#TheU #ItsAl…" +11/09/2017,Sports_celeb,@JimmyJohnson,Looking forward to talking to the troops! https://t.co/MtV9n7JaUy +11/06/2017,Sports_celeb,@JimmyJohnson,RT @themik1: Profound words from @JimmyJohnson that resonate through the ages! #Canes #TheU #NDvsMiami 🙌🏈💪 https://t.co/cUtkLcdd1g +11/06/2017,Sports_celeb,@JimmyJohnson,RT @scott_hickox: The SuperBowl commercials already A+ given the performances of @JimmyJohnson and @terrybradshaw in the @GEICO commercials… +11/05/2017,Sports_celeb,@JimmyJohnson,Loved it better than a hamburger! Check out @BeyondMeat https://t.co/SywXNrxGk0 +11/05/2017,Sports_celeb,@JimmyJohnson,RT @DJNYC1: BWAHAHAHAHAHAHA! 😂😂😂 @JimmyJohnson https://t.co/z3invnRFtz +11/04/2017,Sports_celeb,@JimmyJohnson,"RT @1JohnnyDangle: Just wanna thank @PaulCastronovo, @JimmyJohnson and the whole @CastronovoShow crew for an awesome few days in Key Largo.…" +11/03/2017,Sports_celeb,@JimmyJohnson,RT @PaulCastronovo: About the coolest guy ever. Living the dream @JimmyJohnson https://t.co/4SG5bmDajk +11/01/2017,Sports_celeb,@JimmyJohnson,Rich&Dylan getting ready for Trick or Treat! https://t.co/EbMfXtaB1s +11/01/2017,Sports_celeb,@JimmyJohnson,"RT @agoody1: @JimmyJohnson Can't make the Re-Opening, but rest assured, we will be back for more of this!! #JJBigChill #FloridaKeys #Family…" +10/31/2017,Sports_celeb,@JimmyJohnson,Open for Business! https://t.co/rAbu36Gt3Z +10/29/2017,Sports_celeb,@JimmyJohnson,"RT @NFLonFOX: Game show time with @RamsNFL coach Sean McVay in the studio. + +FOX NFL Sunday starts now! https://t.co/7F5lrPkWt6" +10/29/2017,Sports_celeb,@JimmyJohnson,"RT @RamsNFL: Ready for a fun day with @NFLonFOX! + +Follow behind-the-scenes on Snapchat 👻 » SnapTheRams https://t.co/KFC7WYtyoi" +10/24/2017,Sports_celeb,@JimmyJohnson,RT @finatic1972: @JimmyJohnson throwing up the 🙌🏾 during #NFL halftime show on Fox #awesomeness #ItsAllAboutTheU https://t.co/3RusAVDBHF +10/21/2017,Sports_celeb,@JimmyJohnson,RT @UMSHoF: The @UMSHoF was honored to present @JimmyJohnson a new UMSHoF induction plaque after original destroyed in Hurricane Irma ! @Ca… +10/21/2017,Sports_celeb,@JimmyJohnson,RT @leonsearcy72: So I'm at the 30th anniversary of the 1987 National Championship team meeting when @JimmyJohnson talks and he made me wan… +10/21/2017,Sports_celeb,@JimmyJohnson,"RT @hXcFuller: @JimmyJohnson on #TheShield. I thought for sure it was him and sure enough. +#TerrysTheOne https://t.co/LSLLlLpjsd" +10/21/2017,Sports_celeb,@JimmyJohnson,RT @canesvoice: Enjoying the the 30 year reunion of the 1987 National Champs with the @JimmyJohnson https://t.co/1EEMG2Q6yQ +10/15/2017,Sports_celeb,@JimmyJohnson,RT @Chris_In_TX: Learning from the best @terrybradshaw @michaelstrahan @curtmenefee @JimmyJohnson @NFLonFOX https://t.co/Stp2MNKHGD +10/10/2017,Sports_celeb,@JimmyJohnson,RT @DDdebrule: https://t.co/cSFV5IvyZx. @JimmyJohnson @terrybradshaw +10/10/2017,Sports_celeb,@JimmyJohnson,Putting up the U! https://t.co/Y0EwdluI8D +10/09/2017,Sports_celeb,@JimmyJohnson,RT @Hurricane_Paul: Coach knows whats up. #TheU #Canes #UFam https://t.co/OnCv1qbuus +10/09/2017,Sports_celeb,@JimmyJohnson,Larry David on set today..funny guy! https://t.co/E0FYmiaSJX +10/06/2017,Sports_celeb,@JimmyJohnson,RT @IGexperiences: Great start to Nerve with keynote speaker @JimmyJohnson ! https://t.co/BIGEuICQyD +10/06/2017,Sports_celeb,@JimmyJohnson,Great time! https://t.co/Cc8kObDZIX +10/06/2017,Sports_celeb,@JimmyJohnson,Thx! https://t.co/BkjBcQRfbE +10/06/2017,Sports_celeb,@JimmyJohnson,"RT @AccountingDept: CEOs: +Get rid of the wrong people +Hire the right people at all cost and retain. +Create an atmosphere so they are their…" +10/06/2017,Sports_celeb,@JimmyJohnson,RT @AccountingDept: Ladies and gentlemen -- it's the legendary @JimmyJohnson !! #EO30 #EONerve2017 https://t.co/UgnD4w5Smt +10/01/2017,Sports_celeb,@JimmyJohnson,RT @LKBlandford: Loved that @JimmyJohnson just picks the @MiamiDolphins to upset the @Saints. Especially after last week's disgusting loss.… +10/01/2017,Sports_celeb,@JimmyJohnson,"RT @jacobu: It's a special FOX NFL Sunday as @criscarter80 joins Curt, Terry and Jimmy leading into the Saints vs Dolphins from London - no…" +09/28/2017,Sports_celeb,@JimmyJohnson,"RT @EnriqueSiu: @Gil_Brandt Any chance you can spot yourself in the pic, Mr. Brandt? Maybe by @JimmyJohnson's side...? https://t.co/sjlhJad…" +09/23/2017,Sports_celeb,@JimmyJohnson,RT @JimmyJohnson: Snack on game day the Razorbacks way with @CheezIt & @Pringles. Tweet #BestSeatsEntry for your chance to WIN cash for the… +09/23/2017,Sports_celeb,@JimmyJohnson,Snack on game day the Razorbacks way with @CheezIt & @Pringles. Tweet #BestSeatsEntry for your chance to WIN cash f… https://t.co/SJqWChBtvP +09/23/2017,Sports_celeb,@JimmyJohnson,RT @dbalerio: Great job @JimmyJohnson very inspiring talk. My 3 teenage boys took a lot away tonight. #howboutdemcowboys https://t.co/R1EkT… +09/22/2017,Sports_celeb,@JimmyJohnson,RT @GinoTorretta: On the wall of my bedroom in Cali. Oh how right @JimmyJohnson was. https://t.co/t05jCa1ByI +09/21/2017,Sports_celeb,@JimmyJohnson,"RT @DiBarcenaMete: @JimmyJohnson Address 58901 Overseas Hwy., Grassy Key, FL 33050. We have a truck full of water,BBQ food,clothing,diapers…" +09/21/2017,Sports_celeb,@JimmyJohnson,RT @DiBarcenaMete: @JimmyJohnson We're hosting relief effort tomorrow 9/22 at 11AM at Dolphin Rescue Center (parking lot). Help get the wor… +09/21/2017,Sports_celeb,@JimmyJohnson,@DDdebrule enjoy your 1935 Ford! https://t.co/jdVI1gasEZ +09/21/2017,Sports_celeb,@JimmyJohnson,@DDdebrule you and Upper Keys marine have been great for my boats and dock..nice to have good friends! +09/18/2017,Sports_celeb,@JimmyJohnson,Power is on!!!Air Conditioning!! Thank you 1st responders and Florida Power & Light!! https://t.co/AebArpF75W +09/17/2017,Sports_celeb,@JimmyJohnson,RT @HunterMRobbins: Watch the fox pregame. It's waaaayyy better. @terrybradshaw @JimmyJohnson @michaelstrahan Howie and Curt kill it every… +09/17/2017,Sports_celeb,@JimmyJohnson,RT @bhorn55: Thinking of @JimmyJohnson today as he is skipping work to take care of his life. #HurricaneIrma +09/17/2017,Sports_celeb,@JimmyJohnson,RT @NFLonFOX: It's the best way to start your Sunday. FOX NFL Kickoff is on your TV. https://t.co/oR2LwIPna3 +09/16/2017,Sports_celeb,@JimmyJohnson,Thx..we'll be fine! https://t.co/K6em1y9tcu +09/16/2017,Sports_celeb,@JimmyJohnson,RT @bergerhere: we're all thinking of you JJ. You and Rhonda stay safe. https://t.co/AeWLHLHEjk +09/16/2017,Sports_celeb,@JimmyJohnson,Neighbors boat...going to miss my guys Fox NFL Sunday..got electrician and air conditioning hopefully get it going https://t.co/KCzl40BYq0 +09/15/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: A Key Largo update from @JimmyJohnson : Our Host venue @JimmyJsBigChill at MM104 is up and running. 1st responders: take no… +09/15/2017,Sports_celeb,@JimmyJohnson,"RT @KEYSCANE: @JimmyJohnson Since I can't send you a message coach, I took a picture. Good luck down there and we are here to help once ou…" +09/15/2017,Sports_celeb,@JimmyJohnson,RT @coachdelrio: 👍👍 https://t.co/lt7Y08gOVQ +09/15/2017,Sports_celeb,@JimmyJohnson,Free pizza and I'll buy the beer for whoever can give me power and air conditioning!! https://t.co/FgOU8AXaJR +09/15/2017,Sports_celeb,@JimmyJohnson,Rhonda's making pizza for 1st responders! https://t.co/KZrDUupQVk +09/15/2017,Sports_celeb,@JimmyJohnson,Big Chill opening tonight 5:00...FREE PIZZA for all 1st responders who are doing such a GREAT Job! https://t.co/38ptRih5oj +09/15/2017,Sports_celeb,@JimmyJohnson,RT @DanMarino: Join my friends @soflaford and help get our Floridians back on the road to recovery! #IrmaRelief https://t.co/WEXIiiQ30e +09/14/2017,Sports_celeb,@JimmyJohnson,"RT @McBlondeLand: My favorite NFL football coach, @JimmyJohnson, on his home in the Keys: https://t.co/TATew2Su0w" +09/13/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: #JJFishweek and @JimmyJohnson are working with Hurricane Irma Relief for the FL Keys. Contact us at info@jjfishweek.com for… +09/11/2017,Sports_celeb,@JimmyJohnson,RT @maddieboz: Loved hanging with @PositiveCoachUS & the @FOXSportsU team creating a very special PSA w @terrybradshaw & @JimmyJohnson #fox… +09/11/2017,Sports_celeb,@JimmyJohnson,RT @PositiveCoachUS: Spoiler 🚨! A new PCA PSA donated by @FOXSports will soon be coming to a TV near you! 📺 #FOXSportsSupports https://t.co… +09/11/2017,Sports_celeb,@JimmyJohnson,Docks are damaged..flooding lower level https://t.co/1bIOIUWdZT +09/10/2017,Sports_celeb,@JimmyJohnson,RT @michaelstrahan: So happy to have the gang back together! Good luck to all the teams this season and a big wish of health to all the pla… +09/10/2017,Sports_celeb,@JimmyJohnson,RT @robfletcherANGT: You can see and feel the emotion behind their words.Powerful stuff @JimmyJohnson @michaelstrahan @jjwat @FOXSports #Ha… +09/10/2017,Sports_celeb,@JimmyJohnson,RT @katb1107: @Wxpadawan71 @JayGlazer @NFLonFOX @FOXSports @curtmenefee @terrybradshaw @michaelstrahan @JimmyJohnson https://t.co/UO1fCVOj… +09/06/2017,Sports_celeb,@JimmyJohnson,"RT @PatrickOchs: Thx to some help, we found photos & stories from @JimmyJohnson's time at Picayune (and in Biloxi). Check 'em out! https://…" +09/06/2017,Sports_celeb,@JimmyJohnson,"Armed with Charissa Thompson, Fox takes aim at ESPN's revamped 'Sunday NFL Countdown' - Sporting News https://t.co/Oci2kMCcvE" +09/06/2017,Sports_celeb,@JimmyJohnson,RT @dusclinton: @JimmyJohnson I found this and thought you & Coach Switzer would like to see this. https://t.co/AtFnhMdrz7 +09/05/2017,Sports_celeb,@JimmyJohnson,RT @collin_walker: @EdwerderRFA remember how I told you about @JimmyJohnson 's hometown? This is a great way ppl can help. @jcharles25 is a… +09/04/2017,Sports_celeb,@JimmyJohnson,Harvey devastation... https://t.co/snQftY9pq0 +09/04/2017,Sports_celeb,@JimmyJohnson,Give away 75% https://t.co/5rFe2mEi0O +09/04/2017,Sports_celeb,@JimmyJohnson,Thoughts and prayers going to all suffering from Harvey and hoping Irma misses us in The Keys +09/03/2017,Sports_celeb,@JimmyJohnson,Best fishing in last 10 years https://t.co/wLxBinkm7K +09/03/2017,Sports_celeb,@JimmyJohnson,Give to friends and people that work on the property.. https://t.co/8ymPq4CMjA +09/03/2017,Sports_celeb,@JimmyJohnson,Mahi and wahoo https://t.co/1MCpTbnxjO +09/03/2017,Sports_celeb,@JimmyJohnson,Went out for couple hours today by myself to relax and look what I ran into! https://t.co/BNOwbv7oVu +09/03/2017,Sports_celeb,@JimmyJohnson,Lovely!! https://t.co/PHMvBmdOFn +09/02/2017,Sports_celeb,@JimmyJohnson,2nd coaching job..Picayune Mississippi 1966...few years ago https://t.co/3MA7tayLOE +09/02/2017,Sports_celeb,@JimmyJohnson,"RT @AQHAJournal: In weanling fillies, @terrybradshaw gets reserve world champion with FG A Pretty Heiress @ #AdequanSelectWorld. @aqha #Get…" +09/02/2017,Sports_celeb,@JimmyJohnson,RT @PGH_Sports_Date: 40 years ago (9/2/77): @JimmyJohnson prepares revamped @Pitt_FB defense for Notre Dame opener. #H2P https://t.co/VDXih… +09/01/2017,Sports_celeb,@JimmyJohnson,RT @TheDriveOnKNEA: ICYMI: @JimmyJohnson will join The Drive next week as we get set for A-State/Miami. Stay tuned for day/time details. +08/31/2017,Sports_celeb,@JimmyJohnson,"RT @michaelstrahan: Hey @larsapippen & @ScottiePippen, good genes LOL! Check out my boy Justin killing it in MSX boys. Definitely school re…" +08/31/2017,Sports_celeb,@JimmyJohnson,RT @TSFdtn: Dining to Donate Campaign to be held at Burger-Fi in Seminole on 9/14/17 and California Pizza Kitchen in Tampa on 9/12/2017. @J… +08/31/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: 2nd place & $265k is great, but #Hellreyzer wants 1st place & @JimmyJohnson's Ring of Honor in '18! Do you? Join us: https:…" +07/01/2018,Sports_celeb,@JohnCena,"Blame, to assign responsibility for a wrong. This can be a very dangerous word. We want so badly, many times, to sh… https://t.co/750SbAggIK" +06/30/2018,Sports_celeb,@JohnCena,"The next time you want to say “I can’t”, change it and say “I can’t just yet” instead #NeverGiveUp" +06/29/2018,Sports_celeb,@JohnCena,"Very tough day today. Physically, mentally, emotionally. We all have them and should face them. Ignoring these days… https://t.co/gGLzLykFqP" +06/29/2018,Sports_celeb,@JohnCena,"Training everyday, twice a day at @EyeOfJackieChan center. Excited for #ProjectX but greatly miss @WWE Thinking of… https://t.co/D3OGlkAQH6" +06/28/2018,Sports_celeb,@JohnCena,"“Life is a gift. You enrich it the best you can, then give it back” Emily Levine" +06/28/2018,Sports_celeb,@JohnCena,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/27/2018,Sports_celeb,@JohnCena,Quick lunch break at @EyeOfJackieChan #JCStuntTeam center! #HardNocksZhongGuo 260kg https://t.co/2LU6EDnkIf +06/26/2018,Sports_celeb,@JohnCena,Character is who you are when the lights are off. +06/24/2018,Sports_celeb,@JohnCena,“You must trust and believe in people or life becomes impossible.” Anton Chekhov +06/22/2018,Sports_celeb,@JohnCena,"In the first 1-10 hours of learning something new, you will want to give up more than once a minute. Hang in there!… https://t.co/3lLRCD1skz" +06/21/2018,Sports_celeb,@JohnCena,"Embrace the uncomfortable. This is where knowledge and wisdom hibernate, waiting for you to courageously discover them." +06/19/2018,Sports_celeb,@JohnCena,Always an honor to be included in such a fine group of athletes who use their station in life to help others. https://t.co/NlWPp3NN8B +06/19/2018,Sports_celeb,@JohnCena,"Practice makes perfect, Dads. Work those humor muscles. #BlockersMovie is now available on Digital with Outrageous… https://t.co/BOA2Th5pJA" +06/18/2018,Sports_celeb,@JohnCena,"To the masses of people for over 16 years now, shouting at the top of your lungs “John Cena Socks” .. you have been… https://t.co/Yl6zzpGihg" +06/17/2018,Sports_celeb,@JohnCena,A massive event on a global scale. @WWE continues to raise the bar ... everywhere. Excited to return “home” to be a… https://t.co/RQD1ovkUNJ +06/17/2018,Sports_celeb,@JohnCena,"To all the father's out there, when approaching a dresser drawer, please proceed with caution. #HappyFathersDay!… https://t.co/DRlZ37vGG1" +06/16/2018,Sports_celeb,@JohnCena,"Waking up on the other side of the world can help with perspective. Be grateful for life, rise, and #EarnTheDay… https://t.co/5qUPHsu940" +06/16/2018,Sports_celeb,@JohnCena,"RT @theheraldsun: EXCLUSIVE | @WWE IS COMING TO THE @MCG + +@JohnCena, @RondaRousey, @WWETheBigShow & @ShawnMichaels will be there, and @Trip…" +06/15/2018,Sports_celeb,@JohnCena,Thought this was very interesting. How do you feel about the word “deserve”? Are we owed anything? @RealJohnCMartin… https://t.co/g6gp7tdBou +06/14/2018,Sports_celeb,@JohnCena,"You get out of it, what you put into it." +06/12/2018,Sports_celeb,@JohnCena,"If you love someone, tell them. Say the words. Doesn’t make you ‘weak’ ‘soft’ or ‘inferior’. It makes you stronger… https://t.co/ZtIooESeWb" +06/11/2018,Sports_celeb,@JohnCena,"625lbs a little more left, but don’t know how much. Thanks @BRCF840 and @MogyApp and... @WWERollins for the soundtr… https://t.co/VjiZlV39XV" +06/11/2018,Sports_celeb,@JohnCena,“Love is a collaborative work of art” George Lakoff + Mark Johnson. Really like the sound of that 😊 +06/09/2018,Sports_celeb,@JohnCena,One of the toughest yet most helpful things about life can be asking ourselves the question ‘why?’ This one word op… https://t.co/60AufwUyoF +06/08/2018,Sports_celeb,@JohnCena,“A man will become better when you show him what he is like” Anton Chekhov #NeverGiveUp #EarnTheDay +06/07/2018,Sports_celeb,@JohnCena,"Congratulations to a very inspiring woman @pam_kaufman12 I’m honored to be able to present, create, and learn from… https://t.co/UoYoVN2yTX" +06/06/2018,Sports_celeb,@JohnCena,"The chilling, daring, and honest photography of Robert Capa. Forever grateful to all those who made tremendous sacr… https://t.co/QuLTjWk7SX" +06/05/2018,Sports_celeb,@JohnCena,"There is so much excitement around the set of @bumblebeemovie, it’s even better when I get to spend a few moments w… https://t.co/5gF2NqZbOj" +06/05/2018,Sports_celeb,@JohnCena,Being able to play a part in the overall history & legend of #Transformers has been an amazing experience. I hope y… https://t.co/QidpFBGHyv +06/04/2018,Sports_celeb,@JohnCena,"RT @bumblebeemovie: The adventure is about to begin. Don’t miss @JohnCena in the new trailer for Bumblebee, debuting TOMORROW! #BumblebeeMo…" +06/03/2018,Sports_celeb,@JohnCena,The @FloElite squad and @MogyApp got me working on being a #Deadhead 555x5 thank you @BRCF840 for an AWESOME gym! F… https://t.co/WHaFXuqrkD +06/02/2018,Sports_celeb,@JohnCena,#Respect 👌 https://t.co/8kFhXKufSy +06/01/2018,Sports_celeb,@JohnCena,Being accountable is a great way to face who you are. We often speak of aspiration and quickly point out the faults… https://t.co/a1OgOUdavF +06/01/2018,Sports_celeb,@JohnCena,Well done young man. Well done indeed. 💵 #OneDollarBet #EarnTheDay #NeverGiveUp https://t.co/gWUrraXyYa +05/31/2018,Sports_celeb,@JohnCena,"10,000 excuses will keep you right where you are. 10,000 reps, puts you where you want to be. BOTH happen 1 at a ti… https://t.co/oC7tswZPsT" +05/30/2018,Sports_celeb,@JohnCena,Dallas and Robo in the house! So excited for you all to be able to watch my new @YouTube series #DallasandRobo with… https://t.co/9TCsB83Zz5 +05/29/2018,Sports_celeb,@JohnCena,"What do you do when your best friend drinks you under table? You ask to study their liver, duh. Only one more day u… https://t.co/9sTFIDP6VL" +05/29/2018,Sports_celeb,@JohnCena,A fitting tribute to the men and women of our armed forces. Today and every day it is these mostly unknown sacrific… https://t.co/enMAQ9m3dm +05/28/2018,Sports_celeb,@JohnCena,"Let’s stop messing around, and start messing around." +05/27/2018,Sports_celeb,@JohnCena,"The good ol’ USA has definitely had its growing pains, but above all let’s remember the heroes who’ve made the ulti… https://t.co/5beyefdrDy" +05/25/2018,Sports_celeb,@JohnCena,"Adventure. Fun. Robots. Space Travel. +#DallasandRobo premieres on @YouTube on May 30th! https://t.co/HhXiZE09mb" +05/24/2018,Sports_celeb,@JohnCena,"I'm charged up for the premiere of #DallasandRobo on @YouTube May 30th. Literally. +Excited for everyone to come on… https://t.co/aLQH0Kcw61" +05/23/2018,Sports_celeb,@JohnCena,"Never try to change someone. They have every right to live their lives how they want. Instead, look inward and work… https://t.co/rqDgzWVlbA" +05/21/2018,Sports_celeb,@JohnCena,Congrats to the global phenomenon that is @BTS_twt your journey and success are inspiring and impressive! #BBAMs… https://t.co/mRyRnv3iLF +05/20/2018,Sports_celeb,@JohnCena,"We tend to have long lists of why we “shouldn’t” do something. I am a fan of logic, but fortune favors the bold😊 It… https://t.co/o7HmyoMgsF" +05/20/2018,Sports_celeb,@JohnCena,Robo kicks @$$! Want to see what we have in common? Check out the brand new @YouTube Red series #DallasAndRobo! Pre… https://t.co/GChf6L1juw +05/18/2018,Sports_celeb,@JohnCena,"Please @BTS_twt forgive my inexperience with the language, but here is my answer https://t.co/YFeO6TqyLG https://t.co/07IztsuBvc" +05/18/2018,Sports_celeb,@JohnCena,We all have an internal voice. Listening to IT instead of the many voices around us can be a path to happiness. Lis… https://t.co/AE6moH6cwW +05/17/2018,Sports_celeb,@JohnCena,"Lack of communication is many times what causes people to drift apart, lack of forgiveness is many times what causes people to stay apart." +05/16/2018,Sports_celeb,@JohnCena,"If at first you don’t succeed, try try again #IVoteBTSBBMAs #NeverGiveUp" +05/16/2018,Sports_celeb,@JohnCena,Better late than never!!#iVoteBTSBBMAs️ https://t.co/091lZ3AjlD +05/15/2018,Sports_celeb,@JohnCena,So.. my #TuesdayThoughts .. to 🍷 or not to 🍷? Boozeday Tuesday on @klgandhoda @TODAYshow ! +05/14/2018,Sports_celeb,@JohnCena,Very happy to join @klgandhoda on @TODAYshow this morn! Could use a bit of 🍷 to take the edge off 🤫😉 +05/13/2018,Sports_celeb,@JohnCena,"Thank you Mom, for always caring, worrying, protecting, teaching, and loving me. I love you #HappyMothersDay" +05/12/2018,Sports_celeb,@JohnCena,"Try never to make a decision when you are tired, hungry, or angry." +05/11/2018,Sports_celeb,@JohnCena,"We all have a story and we all want to be heard, but it’s amazing what can be learned if you take a moment and listen to those around you." +05/09/2018,Sports_celeb,@JohnCena,"Some of us long for things until we get them, then feel still unsatisfied. Being driven is great. Not knowing thyself, not so great." +05/07/2018,Sports_celeb,@JohnCena,"Action has consequence. An extra second of thought can help you see the action, and consequence. “A game of chess i… https://t.co/JXFjy2Ghkb" +05/06/2018,Sports_celeb,@JohnCena,Learn from your mistakes. A life of regret is a life unfulfilled. +05/05/2018,Sports_celeb,@JohnCena,What is that you say? Yearning for an animated buddy-comedy with cowboy hats in OUTER SPACE? Very excited to bring… https://t.co/JoePHfmRU5 +05/05/2018,Sports_celeb,@JohnCena,"If you choose to keep moving, no matter how low the road takes you, it will eventually begin to climb back up. #NeverGiveUp" +05/04/2018,Sports_celeb,@JohnCena,240kg pause. #MayThe4th #MayThe4thBeWithYou @starwars https://t.co/qOjjED8KUc +05/03/2018,Sports_celeb,@JohnCena,"The @FloElite guys fired me up, so here’s a 600lb “clean grip” deadlift. Wanna hear more about my training w… https://t.co/CPYNudjxQu" +05/02/2018,Sports_celeb,@JohnCena,"Happy birthday to the standard bearer, the hardest working person in the room, an inspiration to myself and many ar… https://t.co/Vp29sMQpaC" +05/01/2018,Sports_celeb,@JohnCena,"RT @TheRock: Found my star! Been a long time coming and congrats to my good bud @JohnCena on landing the lead role for our film, THE JANSON…" +05/01/2018,Sports_celeb,@JohnCena,"RT @TheRock: Thanks for the exclusive story @krolljvar. The Robert Ludlum Universe is a cool, bad ass and fun one to dive into. Excited for…" +04/30/2018,Sports_celeb,@JohnCena,"Humbled and HONORED for this incredible opportunity! The hard work starts..NOW! Thank you @TheRock, @SevenBucksProd… https://t.co/SyUFifXuK0" +04/29/2018,Sports_celeb,@JohnCena,Never be afraid to give your all to something with worries it will fail. The fear should be that you never give your all to something. +04/27/2018,Sports_celeb,@JohnCena,"No matter how far the destination, how long and hard the journey, it’s passion that will always drive you forward.… https://t.co/ocIabqOtGS" +04/26/2018,Sports_celeb,@JohnCena,Thank you Las Vegas and #CinemaCon hope you liked @Transformers #Bumblebee got 60 minutes in London before heading… https://t.co/3XKQZuoXrp +04/26/2018,Sports_celeb,@JohnCena,"RT @Turki_alalshikh: أعظم حدث في تاريخ WWE 💪🏼 + +هنا في السعودية 🇸🇦 + + #أعظم_رويال_رامبل https://t.co/mQ7Zg0H5De" +04/24/2018,Sports_celeb,@JohnCena,41 years old. 500lbs x3 “clean grip” deadlift. #EarnTheDay #NeverGiveUp #RAW https://t.co/U9b4q1KioI +04/23/2018,Sports_celeb,@JohnCena,41 years old. 160kg. NEVER let age define effort. #EarnTheDay #NeverGiveUp #RAW https://t.co/jhXOQTnxxk +04/17/2018,Sports_celeb,@JohnCena,Sometimes we must bare the burden of shame and judgement to protect and give to the ones we love. #RiseAboveHate +04/16/2018,Sports_celeb,@JohnCena,"Hardship, loss, and humility are extremely difficult waters to navigate, but perseverance thru them builds a streng… https://t.co/uShhq2wHqp" +04/15/2018,Sports_celeb,@JohnCena,RT @BlockersMovie: Watching @JohnCena read thirsty tweets is 😂💪💦 Don’t miss #BlockersMovie NOW PLAYING in theaters. https://t.co/tqlEsMFYHx… +04/15/2018,Sports_celeb,@JohnCena,"Anybody feeling down, check out #WaltWhitman has always been a helpful voice in times of crisis. Beautifully wild t… https://t.co/PFDcGHCWV1" +04/14/2018,Sports_celeb,@JohnCena,"The response to @BlockersMovie has been incredible. So happy to hear you've all enjoyed. You laughed, you cried, yo… https://t.co/4ODAyjER1F" +04/14/2018,Sports_celeb,@JohnCena,"We all have good and bad days. No one is perfect, but if you happen to do something to make someone feel bad, TAKE… https://t.co/ljD7WD64RQ" +04/13/2018,Sports_celeb,@JohnCena,"Spring is upon us, love is in the air. Nothing is more romantic than prom night...right? @BlockersMovie… https://t.co/e3PrOe83NS" +04/12/2018,Sports_celeb,@JohnCena,"Life is funny sometimes. One minute it’s kissing and hugging on you, the next it’s kicking ya square in the nugget… https://t.co/KOtw57Kupz" +04/12/2018,Sports_celeb,@JohnCena,"👨‍👩‍👧‍👦🚫C🤦🏼‍♂️🤼‍♂️🧟‍♂️ +🍑 +👫👭👬C🤦🏼‍♂️👉🐔🚫📽 + +⬇️ +https://t.co/0IKPu5maJV https://t.co/tgv0ESVJSl" +04/11/2018,Sports_celeb,@JohnCena,"This past weekend was FULL of really exciting moments. Everything happens so fast, but I wanted to say THANK YOU to… https://t.co/RpsQVghRcu" +04/09/2018,Sports_celeb,@JohnCena,https://t.co/cJocoqPhtQ +04/08/2018,Sports_celeb,@JohnCena,"On #WrestleMania day, I'm throwing down a challenge. The @MakeAWish #ArmWrestleChallenge. Wishes make muscle. You'r… https://t.co/Uof3VuY9NU" +04/07/2018,Sports_celeb,@JohnCena,"Sporting many looks this weekend, but one thing remains the same: I get to be a fan. +Yesterday, I watched… https://t.co/TiSabfPCT8" +04/07/2018,Sports_celeb,@JohnCena,Any woman who can say that after seeing what my body goes thru in #BlockersMovie is definitely a keeper! I love you… https://t.co/71kfFlmw1j +04/06/2018,Sports_celeb,@JohnCena,"The day is here. @BlockersMovie is in theaters TODAY! This was a project I loved being a part of, proud to share it… https://t.co/O1cTaIWSlo" +04/05/2018,Sports_celeb,@JohnCena,"So much to say about @BlockersMovie, glad I could make an appearance on @JimmyKimmelLive...can you see my excitemen… https://t.co/VKlPTmjll7" +04/04/2018,Sports_celeb,@JohnCena,Entertainment in its most purest form is the same...everywhere. Thanks to @Hardwick for letting me talk the magic o… https://t.co/NzYl2Ec25D +04/03/2018,Sports_celeb,@JohnCena,"The Spyker C8 Laviolette, this car is fly. Literally, figuratively, physically, and emotionally. You don't drive a… https://t.co/OiWHnlEbo8" +04/03/2018,Sports_celeb,@JohnCena,"A lot of people have questions...and I’m ready to answer them! Get a chance to see @BlockersMovie in New Orleans, L… https://t.co/Oi5Iw8kP0l" +04/03/2018,Sports_celeb,@JohnCena,"RT @WWE: This #WorldWishDay, join @JohnCena and @MakeAWish to help make every life-changing wish come true! To get involved visit https://t…" +04/02/2018,Sports_celeb,@JohnCena,"Paint + Teamwork + Cash = #KeepItSpotless! Catch the very fun, VERY messy show on @Nickelodeon all this week at 7:3… https://t.co/7GAM7zPjYB" +04/02/2018,Sports_celeb,@JohnCena,"Can I say “I do” now? @BellaTwins thank you. For being understanding, caring, and lifting me up when I needed it. B… https://t.co/M5p58g0Nfl" +04/02/2018,Sports_celeb,@JohnCena,There are many who ask “how can I?” instead of “how will I?” Make time for the people and the things you care about… https://t.co/qWdDU95QuO +04/02/2018,Sports_celeb,@JohnCena,"Big night 2nite! @WWE #RAW and I’m MORE than ready if Phenom decides to #DoSomething .. if not, also PUMPED 2 B… https://t.co/DpH3rGy333" +04/01/2018,Sports_celeb,@JohnCena,Woke up and phone alerted that I had a #WrestleMania answer from The Phenom! My phone’s been doing this for 3 hour… https://t.co/vJhTrweENF +03/31/2018,Sports_celeb,@JohnCena,"Still silence from the Phenom, so I continue MY quest to #DoSomething and be @WWE #WrestleMania strongest fan! 220k… https://t.co/kaUNJQVq8u" +03/30/2018,Sports_celeb,@JohnCena,"RT @Fandango: Even when it's father-daughter, game recognizes game in this #BlockersMovie clip. @JohnCena gives his daughter a @WWE intro f…" +03/30/2018,Sports_celeb,@JohnCena,This is what I do. 1) be invisible (for the convenience of humor+ @WWE victory) and 2) 🚫🐔s ! See more #2 (get it?)… https://t.co/2aamE7TFDT +03/29/2018,Sports_celeb,@JohnCena,"RT @TheDailyShow: What is butt chugging? @ronnychieng investigates the latest drinking craze with the help of the star of @BlockersMovie, @…" +03/29/2018,Sports_celeb,@JohnCena,"RT @WWE: Join @JohnCena in flexing some muscle for our friends at @MakeAWish, and help them be recognized as the world’s largest wish-grant…" +03/29/2018,Sports_celeb,@JohnCena,Don’t think Undertaker will #DoSomething so making sure I’m one of the strongest fans at #WrestleMania 145kg… https://t.co/htDjEiVsVZ +03/29/2018,Sports_celeb,@JohnCena,RT @Metro_Ents: We've got a nice little exclusive from @JohnCena's new movie Blockers - have a look https://t.co/95CqXvhBOD +03/29/2018,Sports_celeb,@JohnCena,See #BlockersMovie before everyone else at #BlockersSpringFling FREE screenings next Wednesday 4/4. Find a screenin… https://t.co/e70xbUnVXV +03/29/2018,Sports_celeb,@JohnCena,Watch the @TODAYshow tomorrow to learn how @MakeAWish gives kids more muscle to fight their illnesses. https://t.co/DUYeDZjbPB +03/27/2018,Sports_celeb,@JohnCena,"Dear Doctor Dolittle: + +Because I’m a polar bear, does that mean I’m finally cool? Doubt it! +I can BEARly wait to… https://t.co/QBhWaS8nzx" +03/27/2018,Sports_celeb,@JohnCena,The newest edition of #AutoGeek delves deep into one of the most prolific automobile explorations: The Reggie Jacks… https://t.co/iyaVJnosPa +03/27/2018,Sports_celeb,@JohnCena,#DoSomething +03/27/2018,Sports_celeb,@JohnCena,"Thank you for the gift @TheEllenShow and thank you for always promoting the message. +This towel is ready for the m… https://t.co/nnbYvRDhOl" +03/26/2018,Sports_celeb,@JohnCena,".@CollegeHumor and @BlockersMovie create an app that helps block terrible, terrible situations. It also features a… https://t.co/J2b22tx357" +03/25/2018,Sports_celeb,@JohnCena,"1 final thanks @Nickelodeon AND @BTS_twt @bts_bighit gotta rep my boy JHope!Namjoon, all in good fun, all ❤️ for RM… https://t.co/QQ9T5OKPrd" +03/25/2018,Sports_celeb,@JohnCena,The @Nickelodeon #KCA was a blast. Thank you so much to everyone for letting me have fun. Now it’s time to change o… https://t.co/iIC54xxbGX +03/24/2018,Sports_celeb,@JohnCena,RT @Nickelodeon: COWABUNGA! 🐢 Our turtle-y awesome host @johncena made his grand appearance on the #KCA #OrangeCarpet! 🧡 https://t.co/2DU2U… +03/24/2018,Sports_celeb,@JohnCena,Making final preparations before #KCA. Tonight is going to be AWESOME! @Nickelodeon https://t.co/kBAVpbECsD +03/24/2018,Sports_celeb,@JohnCena,"Today is about celebrating young men and women around the world, their ability to use the voice and affect change f… https://t.co/3Di8AzT972" +03/24/2018,Sports_celeb,@JohnCena,"Rehearsals before #KCA2018 have been super fun, but meeting these young folks is always the best part of my day. Th… https://t.co/pX7FNfRj2H" +03/23/2018,Sports_celeb,@JohnCena,Have you ever seen so many blimps?! See these AND MORE tomorrow on @Nickelodeon Kids Choice Awards! #KCA2018 https://t.co/X3DPdgk5Gx +03/23/2018,Sports_celeb,@JohnCena,"RT @TheEllenShow: .@JohnCena didn’t get to go to prom... that is, until today. https://t.co/ge1wwG8ceA" +03/23/2018,Sports_celeb,@JohnCena,A HUGE thank you to @TheEllenShow for always being so generous. Aside from a time-machine to prom with the perfect… https://t.co/T3PXSzQVBW +03/23/2018,Sports_celeb,@JohnCena,We enjoy the concept of “Friday” because we know it’s only a little bit longer until we can relax. It’s the reward… https://t.co/676XQSC3uB +03/23/2018,Sports_celeb,@JohnCena,It’s good to support those who do good things. Even better when it makes you laugh. @Sethrogen’s… https://t.co/4nCdmutZKx +03/22/2018,Sports_celeb,@JohnCena,"Sometimes the hardest thing to do is look within yourself. @RealJohnCMartin helps myself and 1,000s of others do ju… https://t.co/WSV4fNpffG" +03/21/2018,Sports_celeb,@JohnCena,"Amazing story from Australia. In the fight to save someone's life, they created a hero. Here's to you, Alex and fam… https://t.co/SfC5amKtzb" +03/21/2018,Sports_celeb,@JohnCena,"#BlockersMovie: A Film. 🐔🚫 + +👱🏼‍♀️👩🏽👩🏻 🤳🏽 +👨🏽‍💼🚗🍾 +🙋🏼‍♂️🙋🏼‍♀️ 👸🏼🤵🏽 🤔🤔 🤦🏼‍♂️🤦🏼‍♀️ + +And then somehow... + +🍑🍻🍻 + +See… https://t.co/HqlMv06OAj" +03/20/2018,Sports_celeb,@JohnCena,The Corvette ZR-1. The American Supercar famous on race tracks and envied on street corners. See it now on… https://t.co/rvDe2SdUP0 +03/20/2018,Sports_celeb,@JohnCena,You can tell the entire family is getting ready for the #KCA and I think Nana Cena is a little more excited than th… https://t.co/NUqRSpXd8W +03/20/2018,Sports_celeb,@JohnCena,"Very close friend is going thru a bit of a health battle right now, needs all the help he can get. Just hope you ca… https://t.co/8Vpu25tOYU" +03/18/2018,Sports_celeb,@JohnCena,.@BlockersMovie is at it's core a story of three young women discovering who they are. It is also INCREDIBLY funny.… https://t.co/IGZc5aGCel +03/17/2018,Sports_celeb,@JohnCena,Get the first look a new show I’m very proud to say I helped create. #KeepItSpotless will be good “clean” fun!… https://t.co/Pnh3rpp7SK +03/17/2018,Sports_celeb,@JohnCena,"We all get overwhelmed with ‘to do’ lists. Take one thing at a time, try your best to be present in what you are do… https://t.co/Qj8LzxZfac" +03/16/2018,Sports_celeb,@JohnCena,"Throughout my entire career and for so many reasons, @WrestleMania has meant...everything. Can't wait to help @WWE… https://t.co/rWd6SZJtx9" +03/15/2018,Sports_celeb,@JohnCena,Thank you London! Got to talk #BlockersMovie pledge to the @BTS_twt @bts_bighit @BTS_ARMY and now headed to… https://t.co/NAmbcSzHBg +03/14/2018,Sports_celeb,@JohnCena,Just landed in London to talk #BlockersMovie! Only on the ground long enough for a spot of tea and and a good time… https://t.co/Zma61p2gLv +03/13/2018,Sports_celeb,@JohnCena,The #AutoGeek has returned! It may be chilly outside but the 2016 @McLarenAuto 675 LT makes you feel warm all over.… https://t.co/NQA07NQ1vV +03/13/2018,Sports_celeb,@JohnCena,RT @FerdinandMovie: And. We. Have. Liftoff! 🤣 #Ferdinand is out on DVD & Blu-ray TODAY! https://t.co/dxQp0InNOX https://t.co/qeQLNl4eJB +03/13/2018,Sports_celeb,@JohnCena,#OneMoreMatch +03/11/2018,Sports_celeb,@JohnCena,"Switched the suit in Austin to a ball cap and jean shorts in Columbus, OH. + +A 6-pack challenge for the @WWE Champi… https://t.co/4AtByovZ4V" +03/11/2018,Sports_celeb,@JohnCena,Still 👍 from 😍 date night w/ @BellaTwins. Honored to share #SXSW 🎞 of #BlockersMovie w/ such an amazing group of 💪🏽… https://t.co/AY80qHcn55 +03/11/2018,Sports_celeb,@JohnCena,I'm glad I got to experience the premiere of @BlockersMovie last night with the crowd at #SXSW. It's fun to be a fa… https://t.co/U5DOFbao24 +03/11/2018,Sports_celeb,@JohnCena,At #SXSW for the WORLD PREMIERE of @BlockersMovie. It’s a Saturday night at the movies for Nicole and I... cannot w… https://t.co/GeeXFo58oo +03/09/2018,Sports_celeb,@JohnCena,We all have days where everything just goes wrong. It’s inspiring to see how my bride to be @BellaTwins keeps her c… https://t.co/lAW1G7SgRc +03/07/2018,Sports_celeb,@JohnCena,"We find inspiration everywhere. Everyday is a chance to LEARN and LIVE, don't waste it. My close friend for over 20… https://t.co/WFrNX8kzhG" +03/07/2018,Sports_celeb,@JohnCena,"A new challenge in a historic franchise. Excited to get to work, it's time for the Turtles to Baron Draxum! #TMNT https://t.co/CAgq4do4LG" +03/06/2018,Sports_celeb,@JohnCena,"Had the privilege of enjoying Hannah's company before #Raw in Milwaukee, WI. She IS #NeverGiveUp...vibrant, beautif… https://t.co/MOunQzymyG" +03/05/2018,Sports_celeb,@JohnCena,"Honesty is often met with adversity and criticism, because it is many times saying the things most are afraid to say. #NeverGiveUp" +03/04/2018,Sports_celeb,@JohnCena,"We all enjoy our “routine”, but continuously doing things we know, is a tough way to learn. Don’t be afraid of tryi… https://t.co/BjzErJJubI" +03/03/2018,Sports_celeb,@JohnCena,This guy might have been onto something.... shall we discuss ?? (Roll on snare. Cymbal crash.) https://t.co/nDpbECmnn2 +03/01/2018,Sports_celeb,@JohnCena,"Just finishing up an extraordinary day with an amazing group of people. An astronaut, mermaid, superhero, @WWE supe… https://t.co/IIJv6klivI" +02/28/2018,Sports_celeb,@JohnCena,Adapt. Overcome. #EarnTheDay #NeverGiveUp #SDLive +02/27/2018,Sports_celeb,@JohnCena,"Not every road to #WrestleMania is paved in gold. I'm not wasting any time, because TONIGHT mine goes through… https://t.co/V63Nu8NXm8" +02/27/2018,Sports_celeb,@JohnCena,"Join the herd! @FerdinandMovie is available on Digital TODAY! +https://t.co/ihxvxiE0U4 https://t.co/oLL657NHSk" +02/27/2018,Sports_celeb,@JohnCena,I had the pleasure of presenting @Jarrius with a special award at the #ESPYS but I can't wait to welcome him into t… https://t.co/ma4vOIHlwP +02/26/2018,Sports_celeb,@JohnCena,Adapt. Overcome. #NeverGiveUp +02/24/2018,Sports_celeb,@JohnCena,🥌🥇#usacurling #MiracurlOnIce +02/23/2018,Sports_celeb,@JohnCena,"When u feel u ""deserve"" something is when u become hateful of other's accomplishments. Be thankful for what u have,… https://t.co/7pLwafLpgX" +02/21/2018,Sports_celeb,@JohnCena,"We all build emotional walls in our lives, just remember, if there is no wall, you never have to choose which side to stand on." +02/20/2018,Sports_celeb,@JohnCena,"Side by side? Expensive “toy?” Descendant of a pre-historic animal with short arms and a fast engine? +The Campagna… https://t.co/WTOEsdXNTy" +02/19/2018,Sports_celeb,@JohnCena,"A tough week ahead. Run the gauntlet tonight on #Raw and the #WWEChamber awaits on Sunday. Like anything, take one… https://t.co/qEXKC7fKcL" +02/18/2018,Sports_celeb,@JohnCena,Also happy birthday #JHOPE just 175 more years and you’ll catch #WestNewbury #HappyJHOPEDay @BTS_twt @bts_bighit +02/18/2018,Sports_celeb,@JohnCena,Happy 199th birthday #WestNewbury Massachusetts +02/16/2018,Sports_celeb,@JohnCena,"RT @klgandhoda: .@JohnCena has a message for you... he wants to crash your school dance! + +Details are here: https://t.co/b7SaHTICY4 https:/…" +02/15/2018,Sports_celeb,@JohnCena,Never underestimate the #PowerOfAWish. @MakeAWish https://t.co/k7dQ5eKnOn +02/15/2018,Sports_celeb,@JohnCena,"Dear @Nespresso not only do you have an outstanding product, but your customer service is THE BEST I’ve ever experienced. Thank You ☕️" +02/14/2018,Sports_celeb,@JohnCena,"There have been highs AND lows on our journey, and they will continue. Whether it’s #ValentinesDay or not I’m looki… https://t.co/HXUQsTfKLm" +02/13/2018,Sports_celeb,@JohnCena,"The stats are ridiculous, the curb appeal is unparalleled, but the ride is...one of a kind. My favorite car, the… https://t.co/moUnvOXP1F" +02/12/2018,Sports_celeb,@JohnCena,Today a friend did what friends do. Confronted me about my shortcomings and gave me an opportunity to #EarnTheDay… https://t.co/fN2g3VEPrn +02/12/2018,Sports_celeb,@JohnCena,Fun for the whole Cena family! We’re making our #KCA debut on March 24...and we are ready for slime! https://t.co/XxGKgQPDuA +02/11/2018,Sports_celeb,@JohnCena,I’m bringing the whole fam to #KCA this year! Watch the first official trailer on the @Nickelodeon social accounts… https://t.co/NirxIlOvyY +02/10/2018,Sports_celeb,@JohnCena,"Not the best I’ve ever done, but certainly the best I’ll do today! #NeverGiveUp @HardNocksSouth #SquatSaturday 240kg https://t.co/fBXCAL0pgB" +02/07/2018,Sports_celeb,@JohnCena,RT @klgandhoda: That moment when you hear @JohnCena could stop by your high school's dance 🕺💃! Find out how to enter to win here: https://t… +02/06/2018,Sports_celeb,@JohnCena,"Big dreams can be scary, but that's okay. Never be afraid to put in the work...sometimes all it takes is a little… https://t.co/DJRdpgvQkf" +02/06/2018,Sports_celeb,@JohnCena,"A #LaFerrari engine is not exactly ""easy"" to access. But once you do...you know. #AutoGeek @BellaTwins… https://t.co/HB2NTtWSXI" +02/06/2018,Sports_celeb,@JohnCena,How does a @WWE Superstar pave their road to #WrestleMania? Simple. They need to have a plan. #Raw https://t.co/z8yapXlQFB +02/05/2018,Sports_celeb,@JohnCena,A well deserved congrats to @Eagles @nfl #SuperBowlLll champions! David has slain Goliath indeed. #NeverGiveUp +02/04/2018,Sports_celeb,@JohnCena,"If this does not make your heart race, not matter WHO you follow, you may need to check your @NFL pulse #SuperBowl… https://t.co/TnZiglOP9D" +02/02/2018,Sports_celeb,@JohnCena,Best performance ever is a rare moment we all strive for. To reach #BestEver many days we must do our #BestToday !… https://t.co/7fXB8N0Sx0 +02/01/2018,Sports_celeb,@JohnCena,What an AMAZING show of support for ALL those who follow @BellaTwins @belleradiciwine !! This is just incredible!… https://t.co/Y2dRW5LyOe +01/31/2018,Sports_celeb,@JohnCena,"I’ve sat by the campfire with this amazing individual. No matter who you are, I HIGHLY recommend this!! https://t.co/gPybSw7Xn1" +01/30/2018,Sports_celeb,@JohnCena,"A @grouplotusplc Evora...and a minivan. Not exactly two vehicles you think would be mentioned in the same sentence,… https://t.co/8PMeb62Wv1" +01/30/2018,Sports_celeb,@JohnCena,With chance comes the unknown. With dedication comes sacrifice. With performance comes critique. With achievement c… https://t.co/hs8m5IBASM +01/29/2018,Sports_celeb,@JohnCena,"Congrats to @ShinsukeN, but look who showed up late to the #RoyalRumble, @getcrackin. https://t.co/elVc2AUQD5" +01/29/2018,Sports_celeb,@JohnCena,Such an honor to witness @WWE history tonight. Congratulations to ALL involved in the first ever Women’s #RoyalRumble +01/28/2018,Sports_celeb,@JohnCena,Battle plan for #royalrumble2018 STAY LOW! @WWE @WWEUniverse #NeverGiveUp https://t.co/FWuGUJ1inN +01/27/2018,Sports_celeb,@JohnCena,The excitement for #RoyalRumble is palpable but I’m also ready for a different return ... the return of #AutoGeek T… https://t.co/zbQlMRGc5B +01/26/2018,Sports_celeb,@JohnCena,"I know I’m almost towards the end of the day in India, but wanted to wish all a #HappyRepublicDay" +01/25/2018,Sports_celeb,@JohnCena,RT @xfl2020: This is football reimagined. This is the XFL. Watch the official announcement — LIVE NOW! #XFL2020 https://t.co/KFX5oLmkHw +01/23/2018,Sports_celeb,@JohnCena,"So happy @FerdinandMovie was nominated for Best Animated Feature Film. The cast, crew, directors, producers, and mo… https://t.co/o8DRsZnJUZ" +01/22/2018,Sports_celeb,@JohnCena,An early start to a great day! Heading to NYC for @TODAYshow then to @MakeAWish event then.. #RAW25 what a historic event for @WWE AND TV! +01/21/2018,Sports_celeb,@JohnCena,"Congrats to @Patriots and #TomBrady on another trip to #SuperBowl 40yrs old, and at the top of his game indeed… https://t.co/vsUiUj3gnp" +01/20/2018,Sports_celeb,@JohnCena,"Life is never perfect. Embrace the lows, enjoy the highs, and always do your best to move forward and be stronger i… https://t.co/hfx72wfwvf" +01/19/2018,Sports_celeb,@JohnCena,"Difficult few days, but as Walt Whitman wrote ‘The powerful play goes on, and you get to contribute a verse’ ! #NeverGiveUp" +01/15/2018,Sports_celeb,@JohnCena,"The importance of honesty in any relationship should never be overlooked. Hiding ones feeling, or behavior, can lea… https://t.co/VnbDGqwY7d" +01/15/2018,Sports_celeb,@JohnCena,#LoveHasNoLabels Happy #MLKDay +01/14/2018,Sports_celeb,@JohnCena,"Such a wonderful, meaningful, emotional day yesterday with the woman of my dreams and both of our families. I love… https://t.co/FCV8fjN7O0" +01/11/2018,Sports_celeb,@JohnCena,Humbled to work on so many projects with an amazing partner like @Nickelodeon. Ready to bring energy to a celebrate… https://t.co/IR9M43099X +01/11/2018,Sports_celeb,@JohnCena,"The excitement can NOT be contained! + +It’s official: It’s slime season and I’m back to host the @Nickelodeon Kids’… https://t.co/0vmd680Uqv" +01/10/2018,Sports_celeb,@JohnCena,"Attention everyone....I have an important announcement! + +...TOMORROW! https://t.co/OJkmOEWXfC" +01/08/2018,Sports_celeb,@JohnCena,RT @BlockersMovie: Parents can be such 🐔 @BlockersMovie. Watch the #BlockersMovie trailer now! https://t.co/rC6yq2Kooa +06/28/2018,Sports_celeb,@DanicaPatrick,Saving time with dat airplane makeup! More time to workout at home😆. Headed to a @somniumwine dinner that was aucti… https://t.co/oOOqUWy185 +06/28/2018,Sports_celeb,@DanicaPatrick,"Ella and I are about to tear it up in the gym, she has her ball and I have, a lot of @roguefitness equipment. 😆 hav… https://t.co/uzkhtDcgjH" +06/27/2018,Sports_celeb,@DanicaPatrick,I put the link to the @entrepreneur cover story in my bio. 💥 https://t.co/HegSAjdl1Y +06/27/2018,Sports_celeb,@DanicaPatrick,Here’s the article! https://t.co/WalE6T0vBa +06/27/2018,Sports_celeb,@DanicaPatrick,Covers are always cool but to be on a cover to talk about @somniumwine @prettyintensebydanica and @warriorbydanica… https://t.co/CYiMquhvfj +06/26/2018,Sports_celeb,@DanicaPatrick,"Check this out. Such a fun interview with @davidmeltzer for @Entrepreneur. + +https://t.co/zuYNPnqLY9" +06/26/2018,Sports_celeb,@DanicaPatrick,All interviews should be this fun!!!! Awesome conversation with @DMeltzer on how to live your #bestlife. We discuss… https://t.co/bCUaslYAbD +06/25/2018,Sports_celeb,@DanicaPatrick,"RT @espn: Want to join the stars at the 2018 @ESPYS? + +Win a chance to be @DanicaPatrick's guest by entering the ESPYS Sweepstakes with a do…" +06/22/2018,Sports_celeb,@DanicaPatrick,Namaste! @PIsupplements #EatClean #Organic #PlantPower #Sponsored https://t.co/tpEr71Xn2i +06/21/2018,Sports_celeb,@DanicaPatrick,"Oh, I wish I could of been there! Glad you had fun though, wine helps. 😆 thank you! https://t.co/1ijO320fW6" +06/17/2018,Sports_celeb,@DanicaPatrick,Happy Father’s Day pops! We have done a hell of… https://t.co/lQa1mTZYPx +06/17/2018,Sports_celeb,@DanicaPatrick,Someone has a 3rd birthday today.... and someone… https://t.co/TpXpVVotfW +06/10/2018,Sports_celeb,@DanicaPatrick,You can’t see!!!! Working on the #espys!… https://t.co/tY3o8hr7l0 +06/07/2018,Sports_celeb,@DanicaPatrick,Let’s #tbt to my surprise retirement party 11… https://t.co/H3gXSNWpOr +06/06/2018,Sports_celeb,@DanicaPatrick,"Air kisses with my shadow, Ella. ❤️ I got up… https://t.co/5zf7WFSbv3" +06/04/2018,Sports_celeb,@DanicaPatrick,Amazing night! Yes that’s me in the white dress! 😜 @SomniumWine https://t.co/SZ1ckseEYA +06/03/2018,Sports_celeb,@DanicaPatrick,Feeling pretty grateful today on my hike. Napa… https://t.co/t9lAMmXqpg +06/02/2018,Sports_celeb,@DanicaPatrick,Such a cool moment for me to finally be able to… https://t.co/ZLJ5FOHEYs +06/02/2018,Sports_celeb,@DanicaPatrick,Here at auctionnapa!!!! We are live lot 28… https://t.co/FHe5I8Cqr1 +06/01/2018,Sports_celeb,@DanicaPatrick,Thank you @LoganHjewelry for my “Danica”… https://t.co/RDG1hvBS1O +06/01/2018,Sports_celeb,@DanicaPatrick,Friday morning.....before… https://t.co/Qx22KEUGMb +05/27/2018,Sports_celeb,@DanicaPatrick,This is just a chapter in the book. Today feels… https://t.co/NuiAtY0Flx +05/26/2018,Sports_celeb,@DanicaPatrick,Flash back to the opposite scenario when I won… https://t.co/euus2qwINM +05/26/2018,Sports_celeb,@DanicaPatrick,"First, I observed that we might be the oldest… https://t.co/JNaqwkL6qi" +05/24/2018,Sports_celeb,@DanicaPatrick,For sure! So many things coming full circle! I am just one of SO many who miss Dan. https://t.co/NWRYyPHQkh +05/24/2018,Sports_celeb,@DanicaPatrick,Happy birthday mommie. It was nice to get out… https://t.co/PYzrpbKcS5 +05/23/2018,Sports_celeb,@DanicaPatrick,"RT @DanicaRacing: Check out photos of @DanicaPatrick from yesterday's #Indy500MediaTour at @SINow 📸➡️https://t.co/I3LeaHXKhO + +(Credit - @S…" +05/23/2018,Sports_celeb,@DanicaPatrick,I promise I didn’t make his picture black and… https://t.co/AA19kTGbsv +05/23/2018,Sports_celeb,@DanicaPatrick,"This is NOT savasana!!!! 🤣😩 +10 min- +10 hang… https://t.co/mHE6WrntuG" +05/23/2018,Sports_celeb,@DanicaPatrick,"This is the news!!! +. +. +Not any of the crazy… https://t.co/oISeAQZO2P" +05/23/2018,Sports_celeb,@DanicaPatrick,Let’s throw an awesome party to celebrate sports!!!!!! Thanks for believing in my girl! ☺️ https://t.co/kbK8hURbt6 +05/23/2018,Sports_celeb,@DanicaPatrick,"30,000ft dinner tonight. Long day of media in… https://t.co/g7Ex1SRzR3" +05/22/2018,Sports_celeb,@DanicaPatrick,RT @SomniumWine: Only 5 days left until @AuctionNapa E-Auction opens: 5/27 at 12 pm & closes on 6/3. To view our E-Lot: https://t.co/4wnJDw… +05/22/2018,Sports_celeb,@DanicaPatrick,Tune into @jimmyfallon tonight if you want to… https://t.co/m3h7OzJ43C +05/22/2018,Sports_celeb,@DanicaPatrick,Life size @LEGO_Group statue of me. 💥🙌🏼 I had… https://t.co/x8J5Qc9enQ +05/22/2018,Sports_celeb,@DanicaPatrick,It was my pleasure. Kids are at the top of the priority list to take care of! https://t.co/bLMAnJ4iQK +05/21/2018,Sports_celeb,@DanicaPatrick,Qualifying at Indy is a thing. It’s special.… https://t.co/pwdUpBZxBK +05/20/2018,Sports_celeb,@DanicaPatrick,WE it into the “fast 9” yesterday. Team effort.… https://t.co/Ox4qJnrWQd +05/20/2018,Sports_celeb,@DanicaPatrick,Never say never when it comes to Indy! Feelin for Hinch. https://t.co/fCtZ7IwZJs +05/19/2018,Sports_celeb,@DanicaPatrick,With all this rain when I was about to go out and qual for the 500-I said to my mom “icing the kicker”. She looked at my foot. 🤦🏻‍♀️ +05/19/2018,Sports_celeb,@DanicaPatrick,Weather... always a part of the Indy story. https://t.co/TXNSGEx3PQ +05/19/2018,Sports_celeb,@DanicaPatrick,"Qualifying for the 500 tomorrow. +@jonferrey… https://t.co/TCjpsEHipr" +05/16/2018,Sports_celeb,@DanicaPatrick,No problem! Feel free to chime in next time. 😜 https://t.co/pPspxvoHNT +05/14/2018,Sports_celeb,@DanicaPatrick,💥 lucky number 13!!!!!!! https://t.co/x5UayS1Qks +05/13/2018,Sports_celeb,@DanicaPatrick,My favorite mommies and their babies! bevpatrick brooke_selman… https://t.co/ol2Zth06Px +05/12/2018,Sports_celeb,@DanicaPatrick,Yummm! I made it with chocolate chips yesterday. 😬😜 @PrettyIntense https://t.co/sZa9wUfiaX +05/08/2018,Sports_celeb,@DanicaPatrick,Good night with my ladies @haleymoore02 and @SomniumWine at the… https://t.co/mBidpfT6sE +05/08/2018,Sports_celeb,@DanicaPatrick,That was fun!!! And way more comfy! https://t.co/NM25Tl8HOs +05/07/2018,Sports_celeb,@DanicaPatrick,"As I was trying to take a “cute” selfie (bad lighting, maaaaany tries), I… https://t.co/dCq2qRwEvY" +05/07/2018,Sports_celeb,@DanicaPatrick,I'm presenting at the James Beard Awards which will be LIVE on Twitter tonight! Watch the #jbfa action: https://t.co/ELECF3scCj +05/07/2018,Sports_celeb,@DanicaPatrick,Morning yoga vibes & plant power w/ my partner @PIsupplements #EatClean #Organic #partner https://t.co/PeILQmb32v +05/04/2018,Sports_celeb,@DanicaPatrick,"Always!!!!! Great to see you! + +We also did a documentary called Danica if you want to check that out on @EpixHD https://t.co/wH1RMSKnwi" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Now that you mention engineering meetings, I like where you're going with this...it has potential" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown I love motivational quotes and sayings, but I'm not sure how I feel about robots...maybe an app instead?" +05/04/2018,Sports_celeb,@DanicaPatrick,@Hinchtown Sure! What are you thinking? +05/04/2018,Sports_celeb,@DanicaPatrick,@Hinchtown Don't believe everything you see in movies 😉 +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Everyone likes ice cream, but the pit crews might be busy during the race." +05/04/2018,Sports_celeb,@DanicaPatrick,"Hmmm...decisions, decisions 🤔 https://t.co/FlBsJyBx9P" +05/04/2018,Sports_celeb,@DanicaPatrick,I like it! We could include copies of @PrettyIntense so folks have my recipes too https://t.co/ifTeCLuEjN +05/04/2018,Sports_celeb,@DanicaPatrick,Wow! Now that’s some fast customer service @GoDaddy https://t.co/vCy0hPdT0S +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Ya, I can't say I've ever had that problem before. 🤣 That's for sure a unique idea though. I guess they'… https://t.co/7AGEHLemUj" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Absolutely! Let me know where to send the check. 😉 If your other ideas are anything like Swifty Scoop, I… https://t.co/WsT5SY4mqt" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown That’s an awesome idea! I ❤️ my Dallas and Ella, but picking up after them is definitely not great. An a… https://t.co/JGh3Lkkbvm" +05/04/2018,Sports_celeb,@DanicaPatrick,Totally @Hinchtown—what do you got? https://t.co/QSu7eX7zyR +05/03/2018,Sports_celeb,@DanicaPatrick,Thank you. https://t.co/lcP1lkAsdK +05/02/2018,Sports_celeb,@DanicaPatrick,"RT @ECRIndy: Our three #Indy500 drivers... +#TeamAmerica, Circa 2018 🇺🇸🏁 https://t.co/u63NBSVtH5" +05/02/2018,Sports_celeb,@DanicaPatrick,"I’ll enjoy the quiet walks while I can... +. +. +#danicadouble @godaddy @ecrindy… https://t.co/7fD17A0Qw0" +05/02/2018,Sports_celeb,@DanicaPatrick,"With your help, thank you! https://t.co/wZySwBmxXR" +05/02/2018,Sports_celeb,@DanicaPatrick,Oh how he memories fled back in with this view from my rookie orientation in… https://t.co/7l6w3hHHTC +04/20/2018,Sports_celeb,@DanicaPatrick,"😩 yo, 100 chest to bar pull ups is a little detrimental to the skin on my hands. +. +4 rounds- +25… https://t.co/Z4hCfJEzxq" +04/18/2018,Sports_celeb,@DanicaPatrick,Duke (adopatable) and I at #rachelrayshow to talk about my last race and side hustles coming… https://t.co/NRb8VFFpSN +04/18/2018,Sports_celeb,@DanicaPatrick,"RT @IndyCar: 👀👀👀 +#Indy500 // #INDYCAR // @DanicaPatrick https://t.co/yfa9AG9c7N" +04/18/2018,Sports_celeb,@DanicaPatrick,"RT @SomniumWine: Wine Dogs California 3 is the definitive guide to dogs living & working in the vineyard & wineries. Dogs, Lucy & Lily belo…" +04/18/2018,Sports_celeb,@DanicaPatrick,Doing media in nyc today! First up megyntoday! @godaddy @IMS https://t.co/Mwfnuil0Ul +04/18/2018,Sports_celeb,@DanicaPatrick,Amazing experience. 🙌🏼 https://t.co/NVa5rfQSbo +04/17/2018,Sports_celeb,@DanicaPatrick,Hey students! My team @SixStarPro are giving away $15k. Enter here: https://t.co/7gfjyaz1fu #whynot… https://t.co/UsKRgJwEHg +04/16/2018,Sports_celeb,@DanicaPatrick,How cool! Hope you had fun! https://t.co/0XNworNtL1 +04/05/2018,Sports_celeb,@DanicaPatrick,"Which way to the gym?! 😆😆😆 .... please, I always know where the nearest gym is. 💪🏼 +. +....omg The… https://t.co/OJKeCzYU1d" +03/30/2018,Sports_celeb,@DanicaPatrick,"Figure out what works for you when it comes to fitness. Community, solo, hiking, lifting,… https://t.co/Q4kZdBiYQO" +03/29/2018,Sports_celeb,@DanicaPatrick,"And part 2.... well technically part 4 of the workout, but wod part b. +10 min amrap- +10 pull… https://t.co/ErxvT1d9b5" +03/29/2018,Sports_celeb,@DanicaPatrick,"I’m so excited to have my home gym loaded with all the good stuff! @roguefitness +Last round of… https://t.co/6f69XYqCz7" +03/28/2018,Sports_celeb,@DanicaPatrick,"In the words of my first win....... it’s been a long time coming. + +It will be here before we know it. And it will… https://t.co/F9kGpgMRTO" +03/28/2018,Sports_celeb,@DanicaPatrick,🏁 https://t.co/kpEVMKU2e8 +03/28/2018,Sports_celeb,@DanicaPatrick,🙌🏻 LOVE that my side hustles are on my #IndyCar for the #Indy500 with @GoDaddy! https://t.co/3ihMbuWzYh +03/27/2018,Sports_celeb,@DanicaPatrick,My favorite item from my @fabfitfun spring #editorsbox!!!!!! Mother’s Day is right around the… https://t.co/G1omyqEOTU +03/27/2018,Sports_celeb,@DanicaPatrick,F ya. It’s a hybrid of my first helmet design and my last. And I used @bellracingusa until I… https://t.co/YUbuNnMO4s +03/27/2018,Sports_celeb,@DanicaPatrick,Finally got my #pitribe @PrettyIntense sweatshirt! I am so proud of the community that formed… https://t.co/efwpKLtXIP +03/26/2018,Sports_celeb,@DanicaPatrick,"I love getting older!!!!!!!!!!! Super grateful for all the love around me in my life! People,… https://t.co/SYbWQ4tnQ8" +03/26/2018,Sports_celeb,@DanicaPatrick,"Landed.......Baaack home agaaaain, in Indiana! 🎶 🏎🏁.....it’s cold here and there is snow on the… https://t.co/mmyUfgW99z" +03/26/2018,Sports_celeb,@DanicaPatrick,"“No I will not make out with you.” 😆 +-Billy Madison +. +. +And by the way, can I have my seat… https://t.co/b5uhLgHU3i" +03/24/2018,Sports_celeb,@DanicaPatrick,Car coming....sit! Good girls. My angels! I would jump in front of a car to save them.… https://t.co/wGJYxJtMyf +03/21/2018,Sports_celeb,@DanicaPatrick,Shooting a few episodes of Elevator Pitch for @entrepreneur that airs in May!!!!!! @godaddy is… https://t.co/q3pnWWtHRS +03/20/2018,Sports_celeb,@DanicaPatrick,So cool!!!! Cheers! 🍷 https://t.co/ZS64JZmYYp +03/19/2018,Sports_celeb,@DanicaPatrick,"“We are travelers on a cosmic journey, stardust swirling and dancing in the eddies and… https://t.co/2Waju8szEj" +03/16/2018,Sports_celeb,@DanicaPatrick,🙌🏻 cheers to the weekend! @PIsupplements #partner https://t.co/MuDVve9ClB +03/14/2018,Sports_celeb,@DanicaPatrick,Ready set go. Man......IndyCar seats are so comfy. Like a lazy boy. That goes 240mph. @godaddy… https://t.co/BbOCLMJgQu +03/13/2018,Sports_celeb,@DanicaPatrick,"What? + +Just a normal day hanging out in my normal work look. 😆 @godaddy @ecrindy https://t.co/6jRBMKePM5" +03/10/2018,Sports_celeb,@DanicaPatrick,"Happy birthday to my badass sister brooke_selman. Not only are you my best friend(oracle☺️), but… https://t.co/jcL2EqENBQ" +03/08/2018,Sports_celeb,@DanicaPatrick,In honor of #internationalwomensday! I am lucky enough to say this is only some of my… https://t.co/lG9sSxDCeH +03/08/2018,Sports_celeb,@DanicaPatrick,"Summer is on its way, and my rose is here just in time! 💗 it’s made from my estate red, but… https://t.co/Ws2buLUr0A" +03/07/2018,Sports_celeb,@DanicaPatrick,🙌🏻 It’s official...I’m racing for @ECRIndy in the #Indy500! ☺️ And I’ve got a new lucky number for the @GoDaddy Che… https://t.co/6EL6L8irwo +03/06/2018,Sports_celeb,@DanicaPatrick,Thank you old friend. https://t.co/Fjm0suGSVu +03/02/2018,Sports_celeb,@DanicaPatrick,In the spirit of the @crossfit open going on......(I am watching 18.2 on my computer)I got to… https://t.co/YkOssugc7S +03/01/2018,Sports_celeb,@DanicaPatrick,I bought the book the alchemist last year....but didn’t read it. It just didn’t happen. I am… https://t.co/Z6BFBTwerw +02/23/2018,Sports_celeb,@DanicaPatrick,🌅🧘🏻‍♀️🕉 https://t.co/IuYCOv9ERK +02/21/2018,Sports_celeb,@DanicaPatrick,"RT @PlayersTribune: A pioneer and a role model. + +Looking back at @DanicaPatrick's final #Daytona500 in 0:60 seconds. https://t.co/sQuCzFSe…" +02/19/2018,Sports_celeb,@DanicaPatrick,These are the things I will remember and cherish. Thank you. 🙌🏼 https://t.co/ajFktWxxb2 +02/19/2018,Sports_celeb,@DanicaPatrick,"Goodbye race track, until May. Thank you for the memories Nascar and Daytona. 💚 +. +. +@jonferrey 📸… https://t.co/bg2mUjgCLP" +02/18/2018,Sports_celeb,@DanicaPatrick,Ready to go!!!!!! 💚 https://t.co/7uYs6Sdfbm +02/18/2018,Sports_celeb,@DanicaPatrick,Going to have to keep my eyes wide open today in the race. These cars and guys are going to do… https://t.co/sANp0FV5eu +02/18/2018,Sports_celeb,@DanicaPatrick,"Doing Daytona with all the people that mean the most to me. 💚 +. +. +@jonferrey 📸 follow… https://t.co/54M0sVD8DY" +02/18/2018,Sports_celeb,@DanicaPatrick,"Last practice day, in my stock car career. 😌 +. +. +@jonferrey 📸 follow playerstribune and… https://t.co/szIwK33MhB" +02/17/2018,Sports_celeb,@DanicaPatrick,I have always been very grateful for my fans. Thank you. ......things I will miss.… https://t.co/MFtGdnEwDn +02/16/2018,Sports_celeb,@DanicaPatrick,"Duels in the books and still in the primary car. Mission accomplished, but of course-I always… https://t.co/qXtQxJ1cwZ" +02/15/2018,Sports_celeb,@DanicaPatrick,Great job girl! ❤️ https://t.co/7JYQlPF4rq +02/15/2018,Sports_celeb,@DanicaPatrick,"Book signing barnesandnoble. +. +. +@jonferrey 📸 follow playerstribune for more pics. @godaddy https://t.co/Muo8AglQ7i" +02/15/2018,Sports_celeb,@DanicaPatrick,Hope to see you there... 👇🏻 https://t.co/DnMdhoTHrM +02/14/2018,Sports_celeb,@DanicaPatrick,How I feel about media day. 😆🤥 @disupdates #danicadouble https://t.co/1QUamTAyJh +02/14/2018,Sports_celeb,@DanicaPatrick,"Happy Valentine’s Day! +. +. +Such a lovely, man made day to either feel amazing or horrible😜,… https://t.co/QReDpgfw5B" +02/13/2018,Sports_celeb,@DanicaPatrick,"Rose all day!!!!!!!! Hell ya! Made from our estate cab franc and petit verdot! Limited amount,… https://t.co/efmBVEgvbf" +02/13/2018,Sports_celeb,@DanicaPatrick,"Morning fog in NC made for some cool moody shots. Def wasn’t Florida sunshine! +. +. +@jonferrey 📸… https://t.co/kUEYHrtWTG" +02/13/2018,Sports_celeb,@DanicaPatrick,"On my way to work today. You all know, I love looking out the window and… https://t.co/QTIfZ1BwrW" +02/13/2018,Sports_celeb,@DanicaPatrick,RT @SixStarPro: If you've ever seen @danicapatrick train you know she's pretty intense! Retweet for the chance to win a signed copy of her… +02/12/2018,Sports_celeb,@DanicaPatrick,Racing down Daytona beach. 😜 https://t.co/kf4tcT1vPb +02/12/2018,Sports_celeb,@DanicaPatrick,"Check out my new @GoDaddy TV ad. #Daytona500 #DanicaDouble +https://t.co/WBpQLgEGXC" +02/12/2018,Sports_celeb,@DanicaPatrick,Aftermath...... sweat angels as @jonferrey called them! 😜 😇 https://t.co/9hqMTgnFop +02/12/2018,Sports_celeb,@DanicaPatrick,"RT @JennaFryer: New commercial: @DanicaPatrick +and @GoDaddy have a 22nd commercial. This one to debut in Daytona 500: +https://t.co/RwPmMoX…" +02/12/2018,Sports_celeb,@DanicaPatrick,"Whoa. That was a tough one!!! One could say it was @PrettyIntense, hahahah! +. +. +5 rounds- +30… https://t.co/haJ14655zD" +02/11/2018,Sports_celeb,@DanicaPatrick,"Next up, duels on Thursday. +. +. +@jonferrey 📸 follow the playerstribune for more pics. @godaddy… https://t.co/iRhlImWt67" +02/11/2018,Sports_celeb,@DanicaPatrick,"Pre-Qualifying. +. +. +📸 @jonferrey also follow the playerstribune. @godaddy #danicadouble https://t.co/Ny266bc06A" +02/11/2018,Sports_celeb,@DanicaPatrick,Cool to see people with my book that I poured so much literal sweat and energy into. ☺️ thank… https://t.co/AmKk4M0zFa +02/10/2018,Sports_celeb,@DanicaPatrick,Good first day in the car. Thought we were going to end up P1 Until a big pack went out at the… https://t.co/GjZI5UfdcX +02/10/2018,Sports_celeb,@DanicaPatrick,"Headed to work. +. +. +Follow here and check out playerstribune for more exclusive… https://t.co/lAC2dGGf9F" +02/09/2018,Sports_celeb,@DanicaPatrick,I have @jonferrey taking all access pics this week for the first race of the #DanicaDouble.… https://t.co/0ziXIvqtTb +02/09/2018,Sports_celeb,@DanicaPatrick,RT @DISupdates: The #DanicaDouble starts with the #DAYTONA500! 🤘 https://t.co/fECOuy8vhA +02/09/2018,Sports_celeb,@DanicaPatrick,"RT @PlayersTribune: ""There couldn’t be a better place for my @NASCAR journey to end."" + +@DanicaPatrick discusses her evolving feelings on re…" +02/08/2018,Sports_celeb,@DanicaPatrick,🙌🏼🙌🏼🙌🏼 https://t.co/uDvQ1x9zpA +02/07/2018,Sports_celeb,@DanicaPatrick,The results come when you put the work in day in and day out @sixstarpro #greatnessisearned #partner https://t.co/h2QMdBETyX +02/06/2018,Sports_celeb,@DanicaPatrick,I posted a before and after pic a while back that showed the difference between a stylized pic… https://t.co/t6A2Rmacfz +02/05/2018,Sports_celeb,@DanicaPatrick,"Such a lovely day hiking, girl time supporting any and every issue/joy, workout, cooking, and a… https://t.co/QmCWEIbwkW" +02/05/2018,Sports_celeb,@DanicaPatrick,.@DavidKHarbour Have I been in a #TideAd this whole time? #SBII #SB52 @Tide https://t.co/CWA5Byp3F7 +02/03/2018,Sports_celeb,@DanicaPatrick,Thanks guys....can’t wait for May! https://t.co/DgwoPyWorm +02/02/2018,Sports_celeb,@DanicaPatrick,🙌🏼 @godaddy @disupdates .....racing in 16 days. https://t.co/68s0LIMJeV +02/02/2018,Sports_celeb,@DanicaPatrick,RT @GoDaddy: Number 7 is turning heads with @DanicaPatrick behind the wheel. #DanicaDouble #RacingAndBeyond https://t.co/DxCZyZGQNp +02/02/2018,Sports_celeb,@DanicaPatrick,Feels good to be back in the #GoDaddy green! https://t.co/x4t5GAiCjQ +02/02/2018,Sports_celeb,@DanicaPatrick,Ta da! 🙌🏻 here’s my No 7 @GoDaddy Chevy wrapped and ready for Daytona! Love the #DanicaDouble! https://t.co/xJaJlVVeMO +02/01/2018,Sports_celeb,@DanicaPatrick,Love it!!!! Good job!!! https://t.co/QSKQgeFdaI +01/31/2018,Sports_celeb,@DanicaPatrick,"Omg. The worst. I try and enforce a 90min or less rule, I don’t always win. https://t.co/K1vJmuYIxd" +01/31/2018,Sports_celeb,@DanicaPatrick,"Loving the new leggings and this wrap from the Jan collection! On @hsn at 7, 11, and 3 est… https://t.co/11NyFw6iY1" +01/31/2018,Sports_celeb,@DanicaPatrick,RT @SomniumWine: Create a romantic dinner at home this Valentines Day with @snakeriverfarms & @SomniumWine A special bonus included: An Aut… +01/30/2018,Sports_celeb,@DanicaPatrick,Headed to Tampa today for another collection of @warriorbydanica on @hsn! On air tomorrow! 🎥 I… https://t.co/7LvRUNW39l +01/29/2018,Sports_celeb,@DanicaPatrick,RT @HorsesToHarleys: Great article about why @DanicaPatrick and GoDaddy make so much sense together. https://t.co/9iZIqhrGuN +01/29/2018,Sports_celeb,@DanicaPatrick,"RT @Avery_Books: ""The journey is to find your truth and really know who you are."" +Catch @DanicaPatrick​ on @RichRoll​'s podcast here! + +http…" +01/29/2018,Sports_celeb,@DanicaPatrick,This is true. 😆 https://t.co/5ROuTC53Fp +01/26/2018,Sports_celeb,@DanicaPatrick,My shoot today was with some old friends😁..... 💚 @godaddy https://t.co/cAOM13VyRv +01/25/2018,Sports_celeb,@DanicaPatrick,"Killing time during a shoot.... and I read someone say I don’t post enough personal photos, so… https://t.co/8bJoboSPlH" +01/25/2018,Sports_celeb,@DanicaPatrick,Fun to look at my pics in @PrettyIntense and see what hard work does..... been up at 6am hitting… https://t.co/dyipzkQmHP +01/24/2018,Sports_celeb,@DanicaPatrick,Excited to talk with @cheddar about my racing career and reuniting with @GoDaddy for my next step: being an entrepr… https://t.co/GSN6UBa9Iw +01/24/2018,Sports_celeb,@DanicaPatrick,❤️ It’s a @PrettyIntense photo. 😆 https://t.co/f0TbHf7sDb +01/24/2018,Sports_celeb,@DanicaPatrick,Next week @warriorbydanica is back😜 on @hsn! https://t.co/o2Dq0pQMg0 +01/23/2018,Sports_celeb,@DanicaPatrick,Let’s do this!!!!! Lucky number 7! https://t.co/9cgI5vJesy +01/19/2018,Sports_celeb,@DanicaPatrick,RT @SiriusXMNASCAR: GUEST ALERT: #DIALEDIN with @ClaireBLang welcomes on @GoDaddy CMO @HorsesToHarleys right now to talk @DanicaPatrick! #D… +01/18/2018,Sports_celeb,@DanicaPatrick,This is awesome and I’m your biggest fan as well Bob!!!! https://t.co/LsngsuDpdC +01/18/2018,Sports_celeb,@DanicaPatrick,"RT @FSUDJn3: @DanicaRacing @DanicaPatrick @GoDaddy Awesome News, Good Luck @DanicaPatrick & #GoDaddy You 2 just go together. Looking forwar…" +01/18/2018,Sports_celeb,@DanicaPatrick,Back together in @godaddy green.....and it feels so good! https://t.co/qvvyE8inpx +01/18/2018,Sports_celeb,@DanicaPatrick,RT @DanicaRacing: 🚨📝@GoDaddy & @DanicaPatrick reunite for #DanicaDouble and life after racing ➡️https://t.co/0AkQiQcsR6 #NASCAR #IndyCar ht… +01/18/2018,Sports_celeb,@DanicaPatrick,How perfect is this?!?!!!!!! I’m so excited! @GoDaddy https://t.co/EeaxuEneRP +01/18/2018,Sports_celeb,@DanicaPatrick,Great day shooting with @scottmcdermott_ for @warriorbydanica. He shot the cover and all the… https://t.co/fAg4vDV6z0 +01/18/2018,Sports_celeb,@DanicaPatrick,Amazing day!!!!!! https://t.co/2d6xnmtiKR +01/17/2018,Sports_celeb,@DanicaPatrick,That was a fun one!!! Thanks Dan! https://t.co/Hfw13Ekxwa +01/17/2018,Sports_celeb,@DanicaPatrick,RT @PrettyIntense: .@DanicaPatrick is in deep discussion with @richroll on his podcast. Be sure to check it out! Definitely some thought pr… +01/17/2018,Sports_celeb,@DanicaPatrick,He pleasure was all mine. Thanks for taking the time to talk to me! https://t.co/CKRQvTywgV +01/16/2018,Sports_celeb,@DanicaPatrick,RT @richroll: Excited to podcast with @DanicaPatrick today - what do you want to know? +01/16/2018,Sports_celeb,@DanicaPatrick,Thank you! It was fun! https://t.co/vJqdrQsO4j +01/15/2018,Sports_celeb,@DanicaPatrick,Hearing about all my friends getting their family and friends copies because the book resonates… https://t.co/JiRQrMODJk +01/12/2018,Sports_celeb,@DanicaPatrick,"My friends @SixStarPro are giving you a chance to win a $15,000 scholarship. Enter now https://t.co/8Vt8FDGGcu… https://t.co/c1gnSlF8OJ" +01/11/2018,Sports_celeb,@DanicaPatrick,RT @DanSchawbel: Danica Patrick’s 5 secrets to living a successful and happy life https://t.co/7hBPp75Fb1 @DanicaPatrick +01/11/2018,Sports_celeb,@DanicaPatrick,"😆😆😆 love it! Just so you know, I say that to myself too! Good work! https://t.co/lxLqSRHH6M" +01/09/2018,Sports_celeb,@DanicaPatrick,"RT @DanicaRacing: .@DanicaPatrick shifts careers, back to work after a short offseason. https://t.co/B6k37w8jGU https://t.co/I4QpMCKzag" +01/08/2018,Sports_celeb,@DanicaPatrick,@RachelleDarling @Reality_Check11 @FlaniganVarina @PrettyIntense So proud of you guys!!!!! +01/08/2018,Sports_celeb,@DanicaPatrick,That’s awesome! Thank you and keep it up! https://t.co/SZwtkNRCgv +01/06/2018,Sports_celeb,@DanicaPatrick,We had a @PrettyIntense workout today with our friend @aaronbrockett! Feels good to run a little… https://t.co/RIEYhWP0Gq +01/06/2018,Sports_celeb,@DanicaPatrick,"@AaronPott @patty_bretz @PrettyIntense Thanks Aaron(my winemaker)! Speaking of perfection, I need to get to napa ag… https://t.co/hoBasmpQhx" +01/06/2018,Sports_celeb,@DanicaPatrick,😆 it will happen many times over the course of 12 weeks. 😬 https://t.co/2049ER1aAf +01/06/2018,Sports_celeb,@DanicaPatrick,Thanks for making the drive! https://t.co/Azn6R78YPn +01/06/2018,Sports_celeb,@DanicaPatrick,Proud of you! I will be on the lookout for your progress! https://t.co/EMKPVjsp4I +01/06/2018,Sports_celeb,@DanicaPatrick,RT @DanicaRacing: .@DanicaPatrick’s New Career Track - the #NASCAR driver looks ahead to her post-racing life https://t.co/AbjNyiBnb5 https… +01/05/2018,Sports_celeb,@DanicaPatrick,First book signing tonight. I had a good time and it was awesome to see the #pitribe (they did… https://t.co/vUjLd9aRha +01/04/2018,Sports_celeb,@DanicaPatrick,Thank you so much! I’m proud of you! https://t.co/09SHYAOwjB +01/03/2018,Sports_celeb,@DanicaPatrick,Thanks! You know how much I love to cook! https://t.co/aeSWbaCQAG +01/03/2018,Sports_celeb,@DanicaPatrick,Oh you’re so sweet!!! ☺️ https://t.co/73l2jWSWWT +01/03/2018,Sports_celeb,@DanicaPatrick,Watch @thechew today!!!! Made my cast-iron skillet apple crumble! 😋 @PrettyIntense https://t.co/4f4HjiN4vK +01/02/2018,Sports_celeb,@DanicaPatrick,"RT @GMA: .@DanicaPatrick demonstrates some workout moves from her new book ""PRETTY INTENSE"" and shares secrets for a healthier new year! ht…" +01/01/2018,Sports_celeb,@DanicaPatrick,"As you look into the white space of 2018, ask yourself...what do I want? You are a creator. And… https://t.co/g0ymexznCC" +12/31/2017,Sports_celeb,@DanicaPatrick,Walkin into 2018 like...let’s do this. Don’t forget to drink some heart healthy red wine tonight… https://t.co/GMqYxixr3s +12/29/2017,Sports_celeb,@DanicaPatrick,Getting excited about my book tour in NYC next week! It’s going to be fun to do different things… https://t.co/61TAdOe2n6 +12/27/2017,Sports_celeb,@DanicaPatrick,"Holy moly it’s on shelves!!!!!!!!! 🙌🏼 it isn’t just a workout book. It focuses on the mind, then… https://t.co/82LgNNQeym" +12/25/2017,Sports_celeb,@DanicaPatrick,Merry Christmas!!!!!!🎁🎄 https://t.co/14sDmAvUSk +12/24/2017,Sports_celeb,@DanicaPatrick,"This is how we do it, nah nah nah nah nah. 😆🎶 annual tradition on Christmas. And yes, we love… https://t.co/eF38xkweq9" +12/24/2017,Sports_celeb,@DanicaPatrick,....And this article for my wine @somniumwine!!!! So exciting to see things that have been in… https://t.co/fvRd2mR8ts +06/29/2018,Sports_celeb,@nickdiaz209,@tocayaorganica #organic #floradaboy 🥊 https://t.co/SLeupmHvSf +06/29/2018,Sports_celeb,@nickdiaz209,#tbt #vegas @DjShiftLV @spartan_sano kriskehl1 @Rudyvegas tommyvegas1007 https://t.co/CcE45Cd0U4 +06/28/2018,Sports_celeb,@nickdiaz209,@spartan_sano and me @NickDiazAcademy #mma https://t.co/B9QrPjFpCd +06/22/2018,Sports_celeb,@nickdiaz209,@spartan_sano #ebc #vegas #spartansano @NickDiazAcademy @ufc @bellatormma ✊🏽 https://t.co/nihK0fjgle +06/22/2018,Sports_celeb,@nickdiaz209,#yeeee @felonyisme https://t.co/HkmyjtSkzd +06/22/2018,Sports_celeb,@nickdiaz209,@ProFightLeague @jakeshieldsajj ✊🏽 #nickdiazacademy #graciefighter #scrappack @elninotraining @cesargraciebjj… https://t.co/Ccj6Im05pf +06/21/2018,Sports_celeb,@nickdiaz209,Happy birthday elfrogito #ajtapout #ajstrong… https://t.co/4lgMGePN9H +06/19/2018,Sports_celeb,@nickdiaz209,wildcardboxingclub @thefloridaboy #boxing @ufc… https://t.co/R0yPW13ctN +06/18/2018,Sports_celeb,@nickdiaz209,Picked up a @jawzrsize 💯 Get yours using my code… https://t.co/rKo91DpRZw +06/18/2018,Sports_celeb,@nickdiaz209,#ShannonBriggs 💪🏽 🥊 https://t.co/dwCKxlfINN +06/17/2018,Sports_celeb,@nickdiaz209,"#dayoneshit @drzdah #drdah @ West Hollywood,… https://t.co/5O9to9jXYd" +05/21/2018,Sports_celeb,@nickdiaz209,@TeamSantos925 @cesargraciebjj 🥋 https://t.co/i6nXPLWPNo +05/19/2018,Sports_celeb,@nickdiaz209,Old school #blackbeltmagazine cover photo used… https://t.co/gHG29Czdyc +05/19/2018,Sports_celeb,@nickdiaz209,#mrpushup unclejimmystrong #strong #pushup… https://t.co/AgTUWRnbrk +05/16/2018,Sports_celeb,@nickdiaz209,Ran into my boy Jeremy Lappen #elitexc promoter… https://t.co/aN7N9sp7X7 +05/14/2018,Sports_celeb,@nickdiaz209,lilsdinh nat_marie7 carlitonation bmetcalf76 @ Liaison Restaurant +… https://t.co/sv13AtFKOJ +05/11/2018,Sports_celeb,@nickdiaz209,"RT @ufc: #OnThisDay in 2012... + +@NateDiaz209 once again left us speechless. #UFC25Years https://t.co/mCoYXBEdc2" +05/11/2018,Sports_celeb,@nickdiaz209,RT @NateDiaz209: 👊🏼 https://t.co/xbcve5XZsl +05/10/2018,Sports_celeb,@nickdiaz209,"RT @TheFloridaBoy: PICK +ya +POISON https://t.co/ZZZzu50CrC" +05/09/2018,Sports_celeb,@nickdiaz209,Me and @mariolopezextra wildcardboxingclub we had to jump this fool… https://t.co/5O8Kem0Kst +05/04/2018,Sports_celeb,@nickdiaz209,Great training day thanks to jeanjacquesmachado for having us and… https://t.co/afPbEsXUxZ +05/04/2018,Sports_celeb,@nickdiaz209,"RT @TheFloridaBoy: Got pretty... +High + +Today.... https://t.co/0Mv5g4fqtj" +05/04/2018,Sports_celeb,@nickdiaz209,"RT @50cent: I’m busy working on something, that’s gonna blow your mind. #thebag💰 https://t.co/F9zhIQH7uQ" +05/02/2018,Sports_celeb,@nickdiaz209,Come smoke 💨 highrollerzbjj mightymatt @biglonn412 #june10 #buytix @ Nexus… https://t.co/ZW6WfYeMEN +04/29/2018,Sports_celeb,@nickdiaz209,@NickDiazAcademy @joseaguayo100 #ganggang https://t.co/3tJtKsWorA +04/27/2018,Sports_celeb,@nickdiaz209,tommyvegas1007 @hwood_roosevelt @uncleJimmystrong kathleenmacel https://t.co/1wPuHhK8hL +04/27/2018,Sports_celeb,@nickdiaz209,#ganggang #dallas #squad #bottledblonde @desman06 @dennydamier elfrogito bottledblondedtx https://t.co/vBZTB6tbpg +04/27/2018,Sports_celeb,@nickdiaz209,"@jasonmanly #comeatmebro ✊🏽🙏🏽 +@NickDiazAcademy @musclepharm https://t.co/06DciV9z0Q" +04/21/2018,Sports_celeb,@nickdiaz209,@hemp2o @Hemp2oOfficial https://t.co/yYa3Mlacdw +04/16/2018,Sports_celeb,@nickdiaz209,Happy birthday to my little brother @natediaz209 ✊🏽 https://t.co/AyaWA8QBq3 +04/12/2018,Sports_celeb,@nickdiaz209,Happy birthday to my boy @gilbertmelendez @elninotraining @woodenmanmt 🙏🏽 https://t.co/ylVUzsMrPX +04/12/2018,Sports_celeb,@nickdiaz209,ralphgracie @✊🏽💪🏽👌🏾🙏🏽 https://t.co/8pg7bHJ4TS +04/11/2018,Sports_celeb,@nickdiaz209,"Back where we left off👊🏽 😡😡😡😵😵😵😵😵🙂☹️🤕 @ Dallas, Texas https://t.co/vc3U0laIrO" +04/06/2018,Sports_celeb,@nickdiaz209,#Dallas @desman06 @dennydamier @ Citizen https://t.co/dIEpJ3eiYq +03/28/2018,Sports_celeb,@nickdiaz209,"@whotel come at me #👊🏽 +@hommefemmela @ W Dallas - Victory Hotel & Residences https://t.co/VMhMf6MMeA" +03/27/2018,Sports_celeb,@nickdiaz209,Thanks Ernest for taking us out for dinner had a great time #dallas https://t.co/UZ3EvyipiP +03/22/2018,Sports_celeb,@nickdiaz209,drosol ionlywantedeverything clayryanflyn_ @ W Dallas - Victory Hotel & Residences https://t.co/LPiMFAOCvb +03/20/2018,Sports_celeb,@nickdiaz209,Back in Dallas with @Belluhhh @dannyleal_a themodernmodel @jacobtuygun @wuaniiiii #dallas https://t.co/8rjp0g1vBl +03/19/2018,Sports_celeb,@nickdiaz209,@akafights @ShreveportMAA #mma #jits https://t.co/R0D4rAroUe +03/18/2018,Sports_celeb,@nickdiaz209,@akafights @ShreveportMAA #jiujitsu #mma https://t.co/fRnydORsPV +03/16/2018,Sports_celeb,@nickdiaz209,@hemp2o @Hemp2oOfficial @NickDiazAcademy #hemp2o #hemp2zero https://t.co/BPpB9tlbzY +03/16/2018,Sports_celeb,@nickdiaz209,@marqueelv with @StefanStruve and badiesel1 wit @darthvinh #vegas #casmopolitan #marqueenightclub https://t.co/kDHsggdOAF +03/15/2018,Sports_celeb,@nickdiaz209,Good times out here knudsenjitsu thanks to everyone for coming had a great time🙏🏼 https://t.co/rgGddv7BoZ +03/10/2018,Sports_celeb,@nickdiaz209,#Ifc #steveheath #vs #chuckliddell #fresno #tablemountaincasino @cesargraciebjj @NickDiazAcademy https://t.co/q0IViEpnA5 +03/10/2018,Sports_celeb,@nickdiaz209,#Ifc #warriorschallenge #paulsmith #bumfuckmountain #chagefighting #mma https://t.co/eYWdS2idpW +03/10/2018,Sports_celeb,@nickdiaz209,@akafights https://t.co/A3w5xIPLiT +03/09/2018,Sports_celeb,@nickdiaz209,#steveheath 🙏🏼💪🏽✊🏽 #Mma #Ifc #Ufc #shooto #pancrase #japan #jiujitsu #cesargraciejiujitsu… https://t.co/JOMuVJvrYc +03/05/2018,Sports_celeb,@nickdiaz209,Come have a training day #jiujitsu @akafights https://t.co/W41lbYrgce +02/24/2018,Sports_celeb,@nickdiaz209,#209 @NickDiazAcademy #diaz https://t.co/R5QyDDREts +02/23/2018,Sports_celeb,@nickdiaz209,@Belluhhh teaching me how to watch out for the hot ones 🔥👊🏽 #throwwwback #dallas themodernmodel https://t.co/VR1jGo1lMt +02/20/2018,Sports_celeb,@nickdiaz209,@Hemp2oOfficial @nickdiaz209 @hemp2o @NickDiazAcademy https://t.co/AzwcGRFI9V +02/14/2018,Sports_celeb,@nickdiaz209,@Ufc @spartan_sano 💪🏽👊🏽 https://t.co/jEVLrZwwyD +02/14/2018,Sports_celeb,@nickdiaz209,#👊🏽 #someart https://t.co/jHLl5FjI5R +02/14/2018,Sports_celeb,@nickdiaz209,@ghostfacekillah cosmopolitan_lv 💪🏽✊🏽 https://t.co/jc8CdJGaJu +02/07/2018,Sports_celeb,@nickdiaz209,Please try my drink great for cutting weight @hemp2o @Drink_Hemp2o #mma #hydration #hemp2zero… https://t.co/hSPOdoV8bP +02/01/2018,Sports_celeb,@nickdiaz209,@xaviervigney & @spartan_sano #Hitters 💯 https://t.co/DSPRIRw6m3 +12/21/2017,Sports_celeb,@nickdiaz209,😓🤛🏽🤕 #mood https://t.co/9fMXsfELey +11/08/2017,Sports_celeb,@nickdiaz209,@aboveandbeyond @mgmgrand https://t.co/xsMy1WeMrG +11/02/2017,Sports_celeb,@nickdiaz209,#throwback cesargraciebjj @NickDiazAcademy @santarosamma https://t.co/tsmmjwnPG1 +11/01/2017,Sports_celeb,@nickdiaz209,#Halloween #flicks #man #what @OmniaLasVegas https://t.co/OS4mBM7bXs +11/01/2017,Sports_celeb,@nickdiaz209,#nickdiazacademy #stockton #ca #ceasargracie https://t.co/EDnTWxFMvV +10/31/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @spartan_sano jerryb300 #nickdiazacademy https://t.co/0nu9gWZass +10/21/2017,Sports_celeb,@nickdiaz209,#photocredit : @firethecanon hooterscasinolv with all The Hooters 🦉😎 @ Hooters Casino Hotel https://t.co/nMElqskCmj +10/09/2017,Sports_celeb,@nickdiaz209,cjduffs #vegas @ Las Vegas Strip https://t.co/KBIDb5QSJh +10/09/2017,Sports_celeb,@nickdiaz209,angelinagervasi @NickDiazAcademy #yoga #nickdiazacademy https://t.co/oOJiCY5dHu +10/06/2017,Sports_celeb,@nickdiaz209,@spartan_sano check out yo boy 💯 https://t.co/rMs9rMymbd +09/27/2017,Sports_celeb,@nickdiaz209,"This is how we deal with #madmat aka mightymatt when he wants turn in to mad mat +#easywork… https://t.co/dY0kKWNyzA" +09/21/2017,Sports_celeb,@nickdiaz209,Happy birthday to yo boy @thevipliaison #choke @natediaz209 #vegas https://t.co/dXfNDqJqpV +09/20/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @rcsspence @hemp2o @Drink_Hemp2o https://t.co/2SrOSsWiRx +09/19/2017,Sports_celeb,@nickdiaz209,@DjShiftLV @djturbulence @natediaz209 https://t.co/HQUegU6TJJ +09/16/2017,Sports_celeb,@nickdiaz209,#mood cesargraciebjj 🤖😠👊🏽😡 https://t.co/2gzzUiR6qw +09/15/2017,Sports_celeb,@nickdiaz209,🍒 @ Palms Place Luxury Suite Rentals https://t.co/zWn7ADtGjm +09/11/2017,Sports_celeb,@nickdiaz209,@mgmgrand miketyson @ymedeiros @spartan_sano mightymatt https://t.co/Cl4CfVOZpX +09/10/2017,Sports_celeb,@nickdiaz209,Just posted a photo @ The Venetian Las Vegas https://t.co/hnQcoV20vy +08/30/2017,Sports_celeb,@nickdiaz209,Congrats to @rondarousey one of my best friends ever and her ole man @travisbrownemma #💪🏽 #👊🏽… https://t.co/xAoxpYPasj +08/28/2017,Sports_celeb,@nickdiaz209,#blackandwhitetvdays cesargraciebjj #fml #knowyourworth #knowwhereyoucamefrom https://t.co/iD0p1lzSZf +08/28/2017,Sports_celeb,@nickdiaz209,joerogan's photo https://t.co/oyc2gSJlrd +08/28/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/CN1XbJEG7u https://t.co/vk0eDmvBJr +08/27/2017,Sports_celeb,@nickdiaz209,Congrats to @floydmayweather and #tmt #50and0 best in the biz #respect https://t.co/3RpKrco3KX +08/27/2017,Sports_celeb,@nickdiaz209,@oldgoodstuffnyc #noig 🤔 #oldgoodstuff 🥊🌇 #nycity #ktown https://t.co/pf24viCPvp +08/27/2017,Sports_celeb,@nickdiaz209,#photocredit : @firethecanon thank you for getting me some rooms @nycdoubletree had a great stay… https://t.co/8xFqNzXuRU +08/27/2017,Sports_celeb,@nickdiaz209,@hemp2o @Drink_Hemp2o @NickDiazAcademy #nickdiazacademy #weightcutting #cutweight #lowcarb https://t.co/AnDpBintbN +08/27/2017,Sports_celeb,@nickdiaz209,People ask me I just say I know it will go more than 3 rounds 👁👊🏽 +08/26/2017,Sports_celeb,@nickdiaz209,@hemp2o @Drink_Hemp2o @NickDiazAcademy #nickdiazacademy #weightcutting #cutweight #lowcarb https://t.co/AnDpBintbN +08/25/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #mma #jiu- Jitsu #boxing https://t.co/PkdV1xAYIH +08/21/2017,Sports_celeb,@nickdiaz209,@nycdoubletree @ 👊🏽 🍜 https://t.co/znQqKkQnTc +08/21/2017,Sports_celeb,@nickdiaz209,@nycdoubletree https://t.co/tWizGUGFIu +08/18/2017,Sports_celeb,@nickdiaz209,@NYCDoubleTree #nyc https://t.co/HlyCqbJP1B +08/02/2017,Sports_celeb,@nickdiaz209,@wynnlasvegas https://t.co/chSqFEYEBp +08/02/2017,Sports_celeb,@nickdiaz209,@AJMMASignatures @NickDiazAcademy @ Wall Street https://t.co/ae4A5x0lLQ +07/30/2017,Sports_celeb,@nickdiaz209,@korn #korn https://t.co/Bck77uXkks +07/20/2017,Sports_celeb,@nickdiaz209,@marketeson @OmniaLasVegas #vegas #vegasnightlife #vegasdj https://t.co/SgUZvMxmYF +07/20/2017,Sports_celeb,@nickdiaz209,@chrisavila209 @NickDiazAcademy #nickdiazacademy https://t.co/vrFiM6xI6i +07/18/2017,Sports_celeb,@nickdiaz209,RT @jakeshieldsajj: Charlize Theron shows her talent with martial arts https://t.co/ginwY0SUpK +07/17/2017,Sports_celeb,@nickdiaz209,@rivolis https://t.co/k2JpKJSu8Z +07/05/2017,Sports_celeb,@nickdiaz209,@flavrx #canabis #cbd #mma #fitness #enrgy #recovery #livestrong #livefree #diehard https://t.co/ov1aMZwutg +06/28/2017,Sports_celeb,@nickdiaz209,@spartan_sano @CocoGrazi1 @OmniaLasVegas @nervomusic @DjShiftLV https://t.co/aMfoQfuHvP +06/28/2017,Sports_celeb,@nickdiaz209,Wadup New Jersey...I'm coming to watch UFC fight #213 and have some great food with Tony at his… https://t.co/Z8bxitlyBa +06/28/2017,Sports_celeb,@nickdiaz209,@hemp2o #hemp20 #hemp https://t.co/nqjWyaKQgx +06/27/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy 🤛🏽👊🏽🤜🏽 https://t.co/wS2eQHfc1w +06/24/2017,Sports_celeb,@nickdiaz209,@frankshamrock https://t.co/0pamVsVR9A +06/09/2017,Sports_celeb,@nickdiaz209,wetrepublic @DjShiftLV https://t.co/eIIRP2HbkF +05/23/2017,Sports_celeb,@nickdiaz209,@penniepainter and @gagegaubert 💯 #dallas 😎#goodmusic #livemusic https://t.co/iOvgfZSdEs +05/23/2017,Sports_celeb,@nickdiaz209,😑🤛🏽👊🏽🤜🏽 #doyouevenlift 💪🏽🏊 https://t.co/VkglnCWg2Z +05/22/2017,Sports_celeb,@nickdiaz209,One of the first pros I put in work with #RJCarson R.I.P https://t.co/kAegNbnoyJ +05/20/2017,Sports_celeb,@nickdiaz209,"🙋🏻‍♂️yoga bitch 😑#photocredit : drosol @ Dallas, Texas https://t.co/nAnmjW8Esz" +05/19/2017,Sports_celeb,@nickdiaz209,"cesargraciebjj @renzograciebjj @santarosamma ncfamma ralphgracie @NickDiazAcademy +Remember… https://t.co/a37HKymXqO" +05/19/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy graciearmy209kids @Stockton_CA @natediaz209 @rcsspence luke_1er @chrisavila209… https://t.co/X4bA4eW42P +05/19/2017,Sports_celeb,@nickdiaz209,Rough day #chriscornell #rip https://t.co/BeWcTjxRlP +05/17/2017,Sports_celeb,@nickdiaz209,One of my hardest working students but I still have to keep him because he taps out allot… https://t.co/yzYAdDjoQX +05/17/2017,Sports_celeb,@nickdiaz209,"If you be know this movie your not hard Bro +#lionhart #bloodsport @jcvd #vandamme #vandamage… https://t.co/SZ3ACp53S1" +05/16/2017,Sports_celeb,@nickdiaz209,@DOPE_Magazine @natediaz209 #dope🔥 #dope https://t.co/Otk165ftoS +05/16/2017,Sports_celeb,@nickdiaz209,bhadbhabie #catchmeoutsidehowboutdat https://t.co/3T9pMNcm1C +05/16/2017,Sports_celeb,@nickdiaz209,tanman2222 c_thomas_21 #209 merced_speedway @NickDiazAcademy #🏁 https://t.co/mi21qMmUsK +05/16/2017,Sports_celeb,@nickdiaz209,Wow thanks for your support #pro #cannabis #negativity #motivation #turmoil #pitofdespair #drama… https://t.co/YR0cmHlCiJ +05/16/2017,Sports_celeb,@nickdiaz209,UFC Fighter's DRUGS Ban for WEED: Nate Diaz Marijuana https://t.co/UTV2YxKbPS +05/16/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @Stockton_CA @visitlodi @natediaz209 @rcsspence graciearmy209kids #jiujitsu… https://t.co/MJjy0NaPf6 +05/16/2017,Sports_celeb,@nickdiaz209,#NinamomNate ninameg209 @natediaz209 😘 https://t.co/waLWrQALNt +05/16/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/dhGn6BBrau +05/16/2017,Sports_celeb,@nickdiaz209,@flavrx 👊🏽🙏🏼 #canabis #💪🏽 @ Opening Bell Coffee https://t.co/dgb5Kz5M4T +05/16/2017,Sports_celeb,@nickdiaz209,Beto's restaurant 💯 +05/16/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/dV53mwYLRn https://t.co/oT23FjKMkF +05/15/2017,Sports_celeb,@nickdiaz209,#fortworthwatergardens #fortworth @ Fort Worth Water Gardens https://t.co/xUE0NWtS6p +05/15/2017,Sports_celeb,@nickdiaz209,"I like old coke better than new cuz it's old and so am I 🤔 +#coke #cokehead #cokewhore #cocaine… https://t.co/SmPQOwljvr" +05/15/2017,Sports_celeb,@nickdiaz209,"@lucaspinheirojj 🙏🏼👊🏽 @ Reservoir-Bar, Patio & Kitchen https://t.co/BamBOHtNt8" +05/15/2017,Sports_celeb,@nickdiaz209,Yeah bitches 🙋🏻‍♂️👊🏽@jakesheldas #gang https://t.co/YxVUJsnUvx +05/14/2017,Sports_celeb,@nickdiaz209,#happymothersday 🌹 https://t.co/VmkfKgwADY +05/14/2017,Sports_celeb,@nickdiaz209,At @ufc you lose money because of your lack of understanding for the sport and by the way thanks for the tickets to the fight bitch! +05/13/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/NWkw2ihVOS +05/10/2017,Sports_celeb,@nickdiaz209,tanman2222 @NickDiazAcademy merced_speedway https://t.co/KzZCyqRi5c +05/10/2017,Sports_celeb,@nickdiaz209,Rip big Homi @bigblack https://t.co/L1T0lKHskq +05/10/2017,Sports_celeb,@nickdiaz209,@wizkhalifa welcome to White belt 💯 https://t.co/mW4QXLcOkg +05/10/2017,Sports_celeb,@nickdiaz209,Lilianna Wilde - Grind Me Down https://t.co/kzaZRon29Y +05/09/2017,Sports_celeb,@nickdiaz209,#hardbro @jcchavezjr1 @natediaz209 @mgmgrand https://t.co/SvAtYGC6XH +05/09/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/dV53mxgmIV https://t.co/Rc7Xzadm7M +05/04/2017,Sports_celeb,@nickdiaz209,randyspence1's photo https://t.co/AkhZqY6alh +05/03/2017,Sports_celeb,@nickdiaz209,@cher 💯💯💯💯😍 @streetleague lasvegas #vegas #sls @ SLS Las Vegas Hotel & Casino https://t.co/I1TYuz5IvB +05/03/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #nda209 @torque1net #dbsh #gang #gang 👊🏽 https://t.co/aUhr7Dmsxd +05/03/2017,Sports_celeb,@nickdiaz209,@iamwill @VignetteLounge #blackeyedpeas #💯 https://t.co/qsHpKDJe23 +05/01/2017,Sports_celeb,@nickdiaz209,RT @rcsspence: Vato loco shirt from Tijuana. https://t.co/X5gVi5dZHu +04/30/2017,Sports_celeb,@nickdiaz209,@teamblackmma congrats to mattbakerusa #🤛🏽 #👊🏽 #🤜🏽 https://t.co/yzFfU5muiY +04/29/2017,Sports_celeb,@nickdiaz209,@Bourdain on Sunday https://t.co/4aVFOEIO1m +04/28/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #stockton #209 @representltd https://t.co/F4DKQpcUP4 +04/26/2017,Sports_celeb,@nickdiaz209,oneacegroup tocamaderala https://t.co/IWfsmdamwM +04/24/2017,Sports_celeb,@nickdiaz209,RT @Spartan_Sano: I liked a @YouTube video https://t.co/dW4LePsQ5S MMA Star Martin Sano Calls Out Dillon Danis Close Friend Of Conor McGreg… +04/24/2017,Sports_celeb,@nickdiaz209,RT @artvega76: @ScottCoker please match up @Spartan_Sano vs. @dillondanis so I can watch Martin Sano Knockout Dillon Danis!!!! +04/22/2017,Sports_celeb,@nickdiaz209,@spartan_sano @Drake @hwood_roosevelt https://t.co/rwUBnOcQGi +04/22/2017,Sports_celeb,@nickdiaz209,brendandowie @jaimeramirez kingofrum https://t.co/wlgoPFWMt6 +04/22/2017,Sports_celeb,@nickdiaz209,c_thomas_21 tanman2222 @NickDiazAcademy merced_speedway #🏁 https://t.co/D1g3XOzdxD +04/22/2017,Sports_celeb,@nickdiaz209,#😡 #🤛🏽👊🏽🤜🏽 https://t.co/sr0Y0f4YMX +04/21/2017,Sports_celeb,@nickdiaz209,#aboveandbeyond 🤧🤛🏽🙄🤙🏽💏 https://t.co/4zOv1nWx81 +04/19/2017,Sports_celeb,@nickdiaz209,My boy mattbakerusa @teamblackmma @NickDiazAcademy #kickboxing #mtc3 #🤛🏽👊🏽🤜🏽 https://t.co/WT287Ohf27 +04/19/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/3DoYLKhS3v https://t.co/HKQz7vZ5m6 +04/17/2017,Sports_celeb,@nickdiaz209,Hope everyone had a happy Easter #🐇 @ Coachella Valley https://t.co/pSW9t2lZ1N +04/16/2017,Sports_celeb,@nickdiaz209,Happy birthday @natediaz209 🤛🏽👊🏽🤜🏽 https://t.co/Xy1CM6l4Q9 +04/14/2017,Sports_celeb,@nickdiaz209,hairbyjessicaybarra's photo https://t.co/50UYz52pN8 +04/14/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #nickdiazacademy https://t.co/y8CWmsV8fw +04/14/2017,Sports_celeb,@nickdiaz209,Nick Diaz Highlights https://t.co/ajP15VhbmV +04/14/2017,Sports_celeb,@nickdiaz209,@natediaz209 #pat #itspat #noig @drzdah #ericdah #sd #life https://t.co/xsNQlkRFWk +04/13/2017,Sports_celeb,@nickdiaz209,buckleupforchi #oneloveforchi #deftones #chicheng https://t.co/4gc1fPh9fx +04/13/2017,Sports_celeb,@nickdiaz209,@lindsay_phenix I was looking for you 👀 +04/12/2017,Sports_celeb,@nickdiaz209,#NextWeekend #420Life #FlavRX #WeedMaps #hightimescannabiscup #hightimes https://t.co/4ZZ8gZQoz9 +04/11/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/GxFwvsw8B9 https://t.co/MmyDgfGwtJ +04/09/2017,Sports_celeb,@nickdiaz209,@parqsd @mattgerold brendandowie #sd https://t.co/eDvQiwSNP7 +04/09/2017,Sports_celeb,@nickdiaz209,@natediaz209 #pat #itspat #noig @drzdah #ericdah #sd https://t.co/BpQ7vPu3l6 +04/07/2017,Sports_celeb,@nickdiaz209,c_thomas_21 #209car #209 #nickdiazcar #racing🏁 #racing merced_speedway 💯 https://t.co/835aOKqisj +04/06/2017,Sports_celeb,@nickdiaz209,#cantkillmewhenimalreadydead #nickdiaz #deadthough #🖐🏼#💪🏽 #thatdeadnessthough 🍜🌮🍤👁🚬✊🏼😟😖😣😞☹️🙃 https://t.co/W1DjN85zs8 +04/05/2017,Sports_celeb,@nickdiaz209,#giraffe #mickegrovezoo #lodi @mickegrovezoo @ Micke Grove Zoo https://t.co/oTR2R7Kwfr +04/05/2017,Sports_celeb,@nickdiaz209,Congrats to califitxo Took first place in her bikini competition #1st #💪🏽#lodi @ Ollie's Pub https://t.co/SEAD7icwK3 +04/05/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy graciearmy209kids #nickdiazacademy #stockton @Stockton_Cali @Stockton_CA https://t.co/jyuoL1omET +04/05/2017,Sports_celeb,@nickdiaz209,@flavrx #420 #FlavRX #CBD #THC 💯#😎 https://t.co/5PI84N1FF4 +04/02/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy tanman2222 #209car #209 #nickdiazacademy https://t.co/Ye4Jtr8r4E +04/02/2017,Sports_celeb,@nickdiaz209,Don't get #caughtslippin 👊🏽 https://t.co/ZsJ8mDvAsk +03/30/2017,Sports_celeb,@nickdiaz209,@realroyce brendandowie @natediaz209 #vegas #ufc https://t.co/jcwL4ep3aI +03/30/2017,Sports_celeb,@nickdiaz209,@hemp2o @spartan_sano @SamuraiJuice716 #sf https://t.co/dKlIEguGEv +03/30/2017,Sports_celeb,@nickdiaz209,Nick Diaz Beats Jean Pascal Says Trainer Who Was There When Diaz Won Pro... https://t.co/RiRlqAcIoF +03/29/2017,Sports_celeb,@nickdiaz209,#onsomeweed in this pic 😎 https://t.co/Qdl71k0t0Y +03/29/2017,Sports_celeb,@nickdiaz209,"Win 2 Tickets to #Hightimes Cannabis Cup April 21st-23rd in San Bernardino, CA! Meet us at the… https://t.co/IO9aLW23ID" +03/28/2017,Sports_celeb,@nickdiaz209,GSP 0.9 LB ALLOWANCE IN TITLE FIGHT AGAINST NICK DIAZ https://t.co/ZLFWT7T2MI +03/28/2017,Sports_celeb,@nickdiaz209,Nick Diaz tapes Canadian AC give GSP extra pound allowance https://t.co/3aNxKWduU6 +03/27/2017,Sports_celeb,@nickdiaz209,https://t.co/83IcxBS4R9 +03/26/2017,Sports_celeb,@nickdiaz209,Aha just me and my boy snoopdogg you feel me #snoopdogg #ggn https://t.co/iiYvnXgqTx +03/26/2017,Sports_celeb,@nickdiaz209,Me and my boy Skip #lodi #stuckinlodi @drdabber https://t.co/KEqA9bZNWT +03/26/2017,Sports_celeb,@nickdiaz209,michaeldavidwinery @deltavelo iamspecialized_tri @tbfmultisport @rokasports @damianxp… https://t.co/es8lmMFU4T +03/26/2017,Sports_celeb,@nickdiaz209,cosmopolitan_lv #photocredit robweiss https://t.co/6QhNUsHrK5 +03/26/2017,Sports_celeb,@nickdiaz209,@rokasports @tbfmultisport iamspecialized_tri @deltavelo michaeldavidwinery #triathlon #xterra https://t.co/JPeoHxJ5m0 +03/25/2017,Sports_celeb,@nickdiaz209,farrenjanel's photo https://t.co/Mx8ocYvcUr +03/25/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/pBOI2wD4tO +03/25/2017,Sports_celeb,@nickdiaz209,@torque1net @tbfmultisport michaeldavidwinery @spartan_sano riokid krongracie #xterrareal… https://t.co/bX96NyHDNq +03/25/2017,Sports_celeb,@nickdiaz209,iamspecialized_tri iamspecialized @ TBF Racing https://t.co/d90LZ8T5u4 +03/25/2017,Sports_celeb,@nickdiaz209,#xterrareal today @tbfmultisport michaeldavidwinery @deltavelo @mdwsports @NickDiazAcademy… https://t.co/NdYwO2kuBU +03/24/2017,Sports_celeb,@nickdiaz209,robweiss frankcesena cosmopolitan_lv #ballers #😎 https://t.co/KPiXeNhpR5 +03/22/2017,Sports_celeb,@nickdiaz209,"#plpcc #plpatientconsumercoop +#sandiego #sweetlifeoftheknopfs #surfrootsradio #wmsurfing… https://t.co/WiZOi36x61" +03/18/2017,Sports_celeb,@nickdiaz209,#runningback https://t.co/LJX6m7w92k +03/17/2017,Sports_celeb,@nickdiaz209,W Tommy @spartan_sano cosmopolitan_lv #Nascar #Renegade @xslasvegas @ The Cosmopolitan of Las Vegas https://t.co/LrAdYhjLMr +03/16/2017,Sports_celeb,@nickdiaz209,#someart https://t.co/KjFg2bvaUw +03/11/2017,Sports_celeb,@nickdiaz209,@SamuraiJuice716 @spartan_sano @torque1net anchorsocial https://t.co/a2uuaaiWUf +03/11/2017,Sports_celeb,@nickdiaz209,@natediaz209 #youseeit @Gfighterlodi @hydebellagio https://t.co/itWYbWy7wL +03/11/2017,Sports_celeb,@nickdiaz209,#nickdiazacademy @Gfighterlodi graciearmy209kids #stockton @Stockton_CA https://t.co/MFI6hPSHjV +03/06/2017,Sports_celeb,@nickdiaz209,alexgrey 💯🙏🏼✊🏼👊🏽 https://t.co/NduOCLvPiH +07/02/2018,Sports_celeb,@DaleJr,Took Isla to get those dreaded shots today. She cried only for a moment. #Eeeeaaarrnhardt +07/02/2018,Sports_celeb,@DaleJr,Haha hilarious 😂 https://t.co/3weVnfM4Aq +07/02/2018,Sports_celeb,@DaleJr,When I got home @ 9pm Isla was asleep. Been waiting for 4 days to hold her. So I waited and listened to her laugh t… https://t.co/Ml2ucHuSOi +07/01/2018,Sports_celeb,@DaleJr,Post broadcast broadcast https://t.co/mKwed7k5w5 +07/01/2018,Sports_celeb,@DaleJr,It is so hot here @ChicagolndSpdwy that the ACs can’t even keep up. Was 85ish in there yesterday. Still way better… https://t.co/aGOGpU08HA +07/01/2018,Sports_celeb,@DaleJr,@BubbaWallace 😂 +07/01/2018,Sports_celeb,@DaleJr,"@BrannenBroome @NASCARonNBC Obviously you watch the 78,4,18 “big 3” +But outside of that I’m gonna stick with 22, 9 to run well today also." +07/01/2018,Sports_celeb,@DaleJr,"@CampbellLeslie3 @JRMotorsports I don’t sponsor anyone. Can’t afford that. 😀 +The late model team is a 2 car operati… https://t.co/nn3j62nwhr" +07/01/2018,Sports_celeb,@DaleJr,Going to join some friends and broadcast my first race with @NASCARonNBC today. I have been a driver for 20 years b… https://t.co/9RyaMJcdh9 +07/01/2018,Sports_celeb,@DaleJr,Jagger Jones drove for @JRMotorsports late model team last night and got the W. https://t.co/BDT4bhBxcs +07/01/2018,Sports_celeb,@DaleJr,Haha this was fun to do. https://t.co/EeyIqiNjKp +06/30/2018,Sports_celeb,@DaleJr,RT @scottblodgett15: @WingedNation dont see this every day @bestdirttrack https://t.co/SbVYdsvdBQ +06/30/2018,Sports_celeb,@DaleJr,First T-shirt also. Let’s hope that becomes a trend. 😀👍🏼 https://t.co/BqFjA5iIYr +06/30/2018,Sports_celeb,@DaleJr,RT @Wrangler: #DaleYeah he's ready for race day. Here's how @DaleJr has been perfecting his commentary craft before his @NASCARonNBC announ… +06/30/2018,Sports_celeb,@DaleJr,@VannoyLaura @NASCAR @ChicagolndSpdwy I ushered in some casual +06/30/2018,Sports_celeb,@DaleJr,@NASCARonNBC @AllWaltrip @LarryMac28 @RickAllenracing @NBCSN https://t.co/8vpjLcjVY0 +06/30/2018,Sports_celeb,@DaleJr,@TylerReddick @J_Allgaier The sensor is low in the car +06/30/2018,Sports_celeb,@DaleJr,Total laps averaged for @XfinityRacing final practice. Series regular @ColeCuster_ looks impressive to have ran as… https://t.co/oLD9HbZFTB +06/30/2018,Sports_celeb,@DaleJr,"Drum Raceway, Allentown, NY. Shut down in 1980 after someone broke into the track and injured themselves running la… https://t.co/06g4Etmzgt" +06/30/2018,Sports_celeb,@DaleJr,"RT @DirtyMoMedia: The single greatest ad read of all-time? +Yeah, this is how you read an ad #DirtyMo style 🤣 +@ZipRecruiter #DJD https://t.…" +06/29/2018,Sports_celeb,@DaleJr,New job update. https://t.co/RrLKGBa7lM +06/29/2018,Sports_celeb,@DaleJr,"Tough race for Shirley. But, there can only be one winner. https://t.co/sRmqUZwjIY" +06/28/2018,Sports_celeb,@DaleJr,Tune in @NBCSN now 👍🏼 https://t.co/ATRv18NgKs +06/28/2018,Sports_celeb,@DaleJr,#Fred @Wrangler https://t.co/ZfJD4p9u1l +06/28/2018,Sports_celeb,@DaleJr,"RT @Wrangler: Finding any opportunity to practice for his @NASCARonNBC announcing debut, @DaleJr delivers colorful commentary while his nei…" +06/28/2018,Sports_celeb,@DaleJr,@kylepetty @NASCARonNBC Thanks bud! https://t.co/L7SbB6dyZx +06/28/2018,Sports_celeb,@DaleJr,RT @EarnhardtKelley: Everyone keeps asking if my workload is lighter now since @dalejr has retired from the race car. Read this! The answer… +06/28/2018,Sports_celeb,@DaleJr,@ShawnPhillips24 @Blaney eBay +06/28/2018,Sports_celeb,@DaleJr,"RT @nateryan: ICYMI ... Besides joining the @NASCARonNBC booth, what else is happening with @DaleJr in his post-#nascar driving life? + +A l…" +06/27/2018,Sports_celeb,@DaleJr,Awesome throwback T-shirt on deck for @FallonTonight #Eeaaaarrrnhardt +06/27/2018,Sports_celeb,@DaleJr,"RT @dennyhamlin: Thanks to @DirtyMoMedia , @MikeDavis88 and @DaleJr for having me on this weeks podcast. Had a good time talking about top…" +06/27/2018,Sports_celeb,@DaleJr,@budweiserusa Waaaaaaazzzzzzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhh😝😝😝 +06/27/2018,Sports_celeb,@DaleJr,@NASCARonReddit Looks legit +06/27/2018,Sports_celeb,@DaleJr,@budweiserusa Hello??📱 +06/27/2018,Sports_celeb,@DaleJr,Follow @DirtyMoMedia to see what all we are doing in NYC today. https://t.co/xLUxEqf30U +06/27/2018,Sports_celeb,@DaleJr,RT @Jrod323488: I can't say enough how much the @DaleJr download has changed my perspective of several drivers I used to watch the races on… +06/27/2018,Sports_celeb,@DaleJr,RT @budweiserusa: @BurgerKing aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa… +06/27/2018,Sports_celeb,@DaleJr,@RickAllenracing @NASCARonNBC https://t.co/mUJkIXlOqT +06/27/2018,Sports_celeb,@DaleJr,Air drummer looking for an air guitarist 👋🏼 @RickAllenracing https://t.co/PuMOMYjt5B +06/27/2018,Sports_celeb,@DaleJr,@CopaCavanna @MikeDavis88 😂 +06/27/2018,Sports_celeb,@DaleJr,@GeoffWSYX6 @MikeDavis88 eBay! +06/27/2018,Sports_celeb,@DaleJr,Hopped in a car service to NYC from the airport. The driver has on collision detection. So the car vibrates when an… https://t.co/onPexgagqT +06/27/2018,Sports_celeb,@DaleJr,"🤦🏼‍♂️ We are either: +A: never getting another sponsor again. +B: going to have more official sponsors than Nascar https://t.co/RhHL0Lopuj" +06/27/2018,Sports_celeb,@DaleJr,@AnnetteMZ Sadly. +06/27/2018,Sports_celeb,@DaleJr,@bobbloxsom Gotta spread the word that Nascar is coming to NBC! 😀 +06/27/2018,Sports_celeb,@DaleJr,@hollykbegley @DirtyMoMedia @dennyhamlin @MatthewDillner @NBCSN @MikeDavis88 We do sponsor ads right at DMR 😂 +06/27/2018,Sports_celeb,@DaleJr,RT @dpshow: Join us WED with NYC in studio guests @DaleJr and Michael Douglas. We’ll also speak with Michael Porter Jr @nuggets @NASCAR @An… +06/27/2018,Sports_celeb,@DaleJr,"RT @FallonTonight: On our next show: @icecube & @DaleJr! Plus, @intanetz performs! #FallonTonight" +06/27/2018,Sports_celeb,@DaleJr,"Headed to NYC this morning to promote @NASCARonNBC. + +Look for me on @TODAYshow, @dpshow, @FallonTonight, @BravoWWHL… https://t.co/DWXMZ3FNi8" +06/27/2018,Sports_celeb,@DaleJr,New podcast is up!! https://t.co/m5G9bOmlsR +06/26/2018,Sports_celeb,@DaleJr,"RT @zwriter: #NASCAR 's Most Popular Driver, @DaleJr will be very busy tomorrow: in New York for @NBC 's Media Day. @jimmyfallon @megynke…" +06/26/2018,Sports_celeb,@DaleJr,@Kenny_Wallace I need to borrow the Balough book. Thanks +06/26/2018,Sports_celeb,@DaleJr,@kimmiecoon @HashtagSports Holy crap! #HTTR +06/26/2018,Sports_celeb,@DaleJr,@DaveFultonWrang @carfifteen Motor is a v6 +06/26/2018,Sports_celeb,@DaleJr,https://t.co/7K9qBpNFyE +06/26/2018,Sports_celeb,@DaleJr,This weeks “Dale Jr Download” podcast is in the books. @dennyhamlin was our excellent guest. We covered a lot of gr… https://t.co/4cr4ooVFJ2 +06/26/2018,Sports_celeb,@DaleJr,@VinceKMcNugget I lived with it. That was enough for me. +06/26/2018,Sports_celeb,@DaleJr,Daytona. July. 1981. Pissed after a wreck on the front stretch. He’s sitting behind pitwall as the crew repair the… https://t.co/grShasH6tY +06/26/2018,Sports_celeb,@DaleJr,@iamjamieq @wcnc Maybe it’s the pickle juice brine?? 🤷🏼‍♂️ +06/26/2018,Sports_celeb,@DaleJr,.@NASCARonNBC asked me to create a playlist of some of my favorite jams. It’s a little bit of the old mixed with th… https://t.co/FgFKWhkM7t +06/26/2018,Sports_celeb,@DaleJr,RT @dangeroussummer: Thanks to @DaleJr and @NASCARonNBC for adding so many of our songs to the “Gameday: NASCAR Weekend Playlist” on @Spoti… +06/25/2018,Sports_celeb,@DaleJr,Steve shares his side of our experiences together and what an enjoyable trip down memory lane it is. 👍🏼 https://t.co/dE1a9Y2jgW +06/25/2018,Sports_celeb,@DaleJr,"RT @NASCARonNBC: #NASCAR: @steveletarte reveals ""biggest meltdown"" with @DaleJr & what happened next in this excerpt of Steve's new book: h…" +06/25/2018,Sports_celeb,@DaleJr,@nascarman_rr @ESPNMcGee +06/25/2018,Sports_celeb,@DaleJr,@TessQuinlan @Spotify Someone added 20 or so songs to it after I sent in my initial 40 songs. +06/25/2018,Sports_celeb,@DaleJr,Here’s some crappy footage of the end result. I did the same thing one season with @SteveLetarte after taking an ex… https://t.co/fVmMQACWtI +06/25/2018,Sports_celeb,@DaleJr,"1980 Virginia 500. On the initial start, Sr pulls low before the S/F line. Can you guess what happens next? https://t.co/ZjiD87SxWp" +06/25/2018,Sports_celeb,@DaleJr,@SteveLetarte https://t.co/54cKCD6JS3 +06/25/2018,Sports_celeb,@DaleJr,@TheCincyBuckeye @A_S12 @NBCSports @NASCARonNBC @NBCSportsPR @leighdiffey @RaceSonoma @SteveLetarte @MikeDavis88 @DirtyMoMedia @pepsi 😂 +06/25/2018,Sports_celeb,@DaleJr,@Ky1eLong Heck ya. Thanks dude +06/25/2018,Sports_celeb,@DaleJr,@FreeThrowEmo Hope to catch a show one day. Till then. 🤘🏼 +06/25/2018,Sports_celeb,@DaleJr,@AustinPetty45 Enjoyed seeing the piece on Adam. Good job @MattYocum @AustinPetty45 +06/24/2018,Sports_celeb,@DaleJr,How fast is @colepearn tapping his foot right now on that pit box?? https://t.co/OsRs0lUqhf +06/24/2018,Sports_celeb,@DaleJr,"When a racer loses his life, the world of motorsports across all disciplines takes notice and pays its respects. My… https://t.co/I4KARE5eUw" +06/24/2018,Sports_celeb,@DaleJr,Missed our Key West renovation show? I see it’s available on iTunes. https://t.co/yXHeSevS0t https://t.co/35LlXCOt79 +06/24/2018,Sports_celeb,@DaleJr,@RodneyChilders4 Building some incredible hotrods Rodney +06/24/2018,Sports_celeb,@DaleJr,@PRNlive @WendyVenturini @WendyVenturini rest up and get well! +06/24/2018,Sports_celeb,@DaleJr,@jim_utter Sorry for your loss Jim. Hope to see you soon. +06/23/2018,Sports_celeb,@DaleJr,The final episode of our renovation show is tonight at 9pm! Watch all 4 episodes starting at 7:30pm. Tune in to… https://t.co/heFHURpGsa +06/23/2018,Sports_celeb,@DaleJr,@ClaireBLang @MikeDavis88 I been tellin him this 🙄😀 +06/22/2018,Sports_celeb,@DaleJr,@iRacingMyers @iRacing Lotta stuff goes on behind the scenes with these real world racers like @scottspeed to make the simulation better. +06/21/2018,Sports_celeb,@DaleJr,@racrboi90 @NASCAR_Xfinity @DaleEarnhardSr I do. Relief drove for Buddy Baker who was hurt +06/21/2018,Sports_celeb,@DaleJr,@nateryan Let’s go @hornets fans! https://t.co/S9pjwrkZlo +06/21/2018,Sports_celeb,@DaleJr,I couldn’t remember because it hadn’t come in the mail yet. It came today and it’s unique. I will bring it to the s… https://t.co/FL5zpoNBKK +06/21/2018,Sports_celeb,@DaleJr,Hope everyone enjoyed the premiere of “The Dale Jr Download” podcast on @NBCSN today. I can’t believe they let us h… https://t.co/6UpzW5YSwO +06/21/2018,Sports_celeb,@DaleJr,RT @NASCARonNBC: Did you like the @DaleJr Download TV premiere? #DJD +06/21/2018,Sports_celeb,@DaleJr,@MatthewDillner @DirtyMoMedia @MikeDavis88 You really don’t want me to do that. #gotitpaused +06/21/2018,Sports_celeb,@DaleJr,"“The Dale Jr Download” is coming on @NBCSN in 10 minutes! Even if you’re currently not watching your TV, maybe just… https://t.co/0PTR9vEwVI" +06/21/2018,Sports_celeb,@DaleJr,RT @AmyEarnhardt: Would love to know y’alls favorite elements of the house so far! Episode 4 has a few that I am excited for everyone to se… +06/21/2018,Sports_celeb,@DaleJr,@markmartin Haha @markmartin +06/21/2018,Sports_celeb,@DaleJr,@RhondaFultz88 @MikeDavis88 @MatthewDillner @DirtyMoMedia When I was racing I was grumpy and didn’t wanna do nothin. 😆 +06/21/2018,Sports_celeb,@DaleJr,It’s your mother. Her experience gets her the nod. https://t.co/RURNwhuAmS +06/21/2018,Sports_celeb,@DaleJr,@Carey88K @MikeDavis88 @MatthewDillner @DirtyMoMedia I saw it advertised on Instagram and swiped up to purchase +06/21/2018,Sports_celeb,@DaleJr,Posted this on other social accounts so forgive the repetitiveness. But this is something myself @MikeDavis88… https://t.co/3OxcOB1mmk +06/21/2018,Sports_celeb,@DaleJr,@dcufan @NASCARonNBC @NBCSN Well 💩 +06/21/2018,Sports_celeb,@DaleJr,"RT @odsteve: Behind the scenes was all about doing it right for 2019, no mention of anything fizzling. Complete opposite. A reminder that…" +06/21/2018,Sports_celeb,@DaleJr,RT @dustinlong: NEWS: #NASCAR will NOT run All-Star aero package again this season in Cup. https://t.co/78BSyW4DJ5 +06/21/2018,Sports_celeb,@DaleJr,@jeff_gluck Bad time to ask you your thoughts on the two day/enhanced schedule in Chicago? +06/21/2018,Sports_celeb,@DaleJr,I thought I heard Norm Macdonald’s voice in my living room but it was Christian Slater on @TODAYshow. +06/21/2018,Sports_celeb,@DaleJr,@lindsleeees @AmyEarnhardt 😊 +06/21/2018,Sports_celeb,@DaleJr,@keselowski @fbme4 Even made a shirt to commemorate it. https://t.co/AFnl8YLDhf +06/21/2018,Sports_celeb,@DaleJr,@dennyhamlin https://t.co/JG2hskfMxB +06/21/2018,Sports_celeb,@DaleJr,That first time you text someone that you got a sitter lined up for dinner this weekend https://t.co/LxtdRYllhL +06/20/2018,Sports_celeb,@DaleJr,@NASCAR @RaceSonoma ☺️😢 +06/20/2018,Sports_celeb,@DaleJr,"RT @DirtyMoMedia: The story behind ""Do-Rag Dale"" is told in great (and scary) detail by @DaleJr on this week's #DJD! + +HOW TO FIND IT: +Websi…" +06/20/2018,Sports_celeb,@DaleJr,@jeff_gluck Is this really the hill you want to die on Jeff? +06/19/2018,Sports_celeb,@DaleJr,New podcast is up for download! 👇🏼👇🏼👇🏼 https://t.co/76BkRNldLQ +06/19/2018,Sports_celeb,@DaleJr,We need a final destination on your luggage. My money is on Albuquerque. https://t.co/tefnUdPTAm +06/19/2018,Sports_celeb,@DaleJr,👀 https://t.co/OY1tRG4bnI +06/19/2018,Sports_celeb,@DaleJr,While teams/manufacturers have multi million dollar simulators that provide much of the same. What they don’t emula… https://t.co/Xl4I6KWJI8 +06/19/2018,Sports_celeb,@DaleJr,This is in my opinion @iRacing greatest value. It provides an ability to learn road course disciplines and techniqu… https://t.co/DY4exIHnGB +06/19/2018,Sports_celeb,@DaleJr,A refresher for drivers headed to @RaceSonoma https://t.co/9x15C7yCIK +06/19/2018,Sports_celeb,@DaleJr,That @chipgaines book is pretty darn good. But it also serves many useful household purposes. Such as: If your litt… https://t.co/hTqguoLvvI +06/19/2018,Sports_celeb,@DaleJr,@MartySmithESPN Everything I do +06/19/2018,Sports_celeb,@DaleJr,@nealhendrix @KenSchrader @BelleClairSpdwy 😂🤷🏼‍♂️ +06/19/2018,Sports_celeb,@DaleJr,@LilRedDave @DocPunchESPN The deerhead shop +06/19/2018,Sports_celeb,@DaleJr,@Kenny_Wallace https://t.co/U1Fz5K49Ze +06/19/2018,Sports_celeb,@DaleJr,This was a stop on a week long trip dirt racing with @KenSchrader. I was 16. @BelleClairSpdwy was insane. Met a ton… https://t.co/WEKBHOSZII +06/19/2018,Sports_celeb,@DaleJr,@KyleLarsonRacin @RyanLitt07 @wcsohio https://t.co/1K0XDSzSXK +06/18/2018,Sports_celeb,@DaleJr,My friend TMack was living his dream of being a crew chief in the Cup series till this week. It’s a shame we will n… https://t.co/Z6PQcEjHs4 +06/18/2018,Sports_celeb,@DaleJr,All of our listeners have been asking for us this. It’s happening. 👍🏼👇🏼 https://t.co/De8dEv7mI1 +06/18/2018,Sports_celeb,@DaleJr,@RMinENC @KerryDEarnhardt Yep +06/18/2018,Sports_celeb,@DaleJr,To race online you had to call Massachusetts. I’d race all night. I shared a double-wide trailer with my brother… https://t.co/tM32hPK1Jo +06/18/2018,Sports_celeb,@DaleJr,RT @JRMotorsports: .@J_Allgaier's win today @iowaspeedway marks the 40th victory for JRM in @XfinityRacing competition. https://t.co/j4s1Qy… +06/17/2018,Sports_celeb,@DaleJr,".@J_Allgaier is a wheelman. Drove every lap @ 10/10ths. +@CBellRacing was a tough customer today. Gave us all we cou… https://t.co/IFI3SeWl7O" +06/17/2018,Sports_celeb,@DaleJr,@coleswindell Absolutely right brother. +06/17/2018,Sports_celeb,@DaleJr,Happy Fathers Day to all the dads in the twitterverse. Feels pretty cool to be part of the club. 😎 +06/16/2018,Sports_celeb,@DaleJr,"New episode tonight! It’s a good one. + +If you missed episodes one and two, check them out beforehand at 8|7c. https://t.co/0ofYqBfEIC" +06/14/2018,Sports_celeb,@DaleJr,https://t.co/66gKHzCSnh +06/14/2018,Sports_celeb,@DaleJr,@Ykp23 @QALORing @spyoptic @Wrangler https://t.co/66gKHzCSnh +06/14/2018,Sports_celeb,@DaleJr,RT @BobbyAllison12: This is Bonnie. I came across this while looking for something else. Thought I would share one of the more littler mome… +06/14/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: We couldn't agree more, @AmyEarnhardt! ❤️💕 + +#DaleAndAmysReno continues Saturday at 9|8c. @DaleJr https://t.co/d29QJROP9u" +06/14/2018,Sports_celeb,@DaleJr,My partners @QALORing @spyoptic and @Wrangler teamed up to create an ultimate Father’s Day Gift Pack for all the da… https://t.co/uA5H5sFxoL +06/12/2018,Sports_celeb,@DaleJr,@John_Andretti That makes more sense. +06/12/2018,Sports_celeb,@DaleJr,@TSSKevin Honestly. Making my own +06/12/2018,Sports_celeb,@DaleJr,@jeff_gluck @NASCAR Feeling some type of way #nostalgia +06/12/2018,Sports_celeb,@DaleJr,@Scottie_B_ @NASCAR Just being nostalgic +06/12/2018,Sports_celeb,@DaleJr,@EmarKnowsBest @NASCAR Just appreciate the man +06/12/2018,Sports_celeb,@DaleJr,.@NASCAR Bill France Jr. told everyone how it was gonna be. He ran the show. “Nascar was here way before you and wi… https://t.co/dPSHsjuJHl +06/12/2018,Sports_celeb,@DaleJr,@BBarker88 @ReganSmith @Wendys French Toast Fries 🍟 +06/12/2018,Sports_celeb,@DaleJr,"@ReganSmith @Wendys Let’s all be chill. +I hate confrontation 😂" +06/12/2018,Sports_celeb,@DaleJr,Every win could be your last. Might wanna raise hell when they occur. https://t.co/iUUCTKlRh5 +06/12/2018,Sports_celeb,@DaleJr,What a ride @ClintBowyer has been on the past decade. Takes character to navigate through all that. +06/12/2018,Sports_celeb,@DaleJr,I got out and told my CC the car was effed up. John ran a few laps and wrecked it. Come to find out the sway bar wa… https://t.co/DDtRKzFDwX +06/12/2018,Sports_celeb,@DaleJr,@Kirt_Achenbach Everyone musta bought a car from DiGard +06/10/2018,Sports_celeb,@DaleJr,"9pm ET @DIYNetwork tonight +Episode 2 of Key West renovation show. #DaleAndAmysReno" +06/10/2018,Sports_celeb,@DaleJr,@KarsynElledge3 @jelledge81 Badass @jelledge81 +06/10/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: We love that @DaleJr & @AmyEarnhardt honor this home's history by giving new purpose to old things. + +#DaleAndAmysReno conti…" +06/09/2018,Sports_celeb,@DaleJr,"RT @LilRedDave: In '71 & '72, Cale Yarborough, in pursuit of an open wheel life, ran the 500 with Ray Fox and sponsor Woolco who would stru…" +06/09/2018,Sports_celeb,@DaleJr,"RT @AmyEarnhardt: Episode 2 of our Key West Renovation Realities airs tonight! 9/8c on @DIYNetwork ! If you missed Epsiode 1, you can catch…" +06/09/2018,Sports_celeb,@DaleJr,The second episode of our Key West renovation show comes on at 9pmET tonight on @DIYNetwork. If you missed the 1st… https://t.co/hzK5ypqU2J +06/09/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: ICYMI-last week's premiere with @DaleJr & @AmyEarnhardt! + +#DaleAndAmysReno continues tomorrow (Saturday) 9|8c. https://t.co…" +06/09/2018,Sports_celeb,@DaleJr,@poconoraceway @kevin_teel @thewonderyears @NASCAR https://t.co/wn6KM7Fher +06/09/2018,Sports_celeb,@DaleJr,@poconoraceway @kevin_teel @thewonderyears @NASCAR Holy crap +06/08/2018,Sports_celeb,@DaleJr,@MartySmithESPN @BelmontStakes https://t.co/UPbXlmhFKB +06/08/2018,Sports_celeb,@DaleJr,@CLTMotorSpdwy @USLegendCars @Bojangles1977 @EarnhardtKelley @austindillon3 @tydillon @DanielHemric @TeamHendrick… https://t.co/0Ms4mvhse3 +06/08/2018,Sports_celeb,@DaleJr,@AaronClayBurns @SLFMotion So smooth +06/08/2018,Sports_celeb,@DaleJr,First ride with the new Hyper Speed System from @SLFMotion today. #happycustomer #smoothasglass https://t.co/hv4PCLJK3K +06/08/2018,Sports_celeb,@DaleJr,Saddened about #AnthonyBourdain. Depression and mental illness can affect anybody. Someone you know could be strugg… https://t.co/p8PaLumTeT +06/08/2018,Sports_celeb,@DaleJr,"Vandiver, would deliberately spin his car on lap 223, on Darlington's backstretch. This caused a caution, and in a… https://t.co/bhP6T8oUfe" +06/08/2018,Sports_celeb,@DaleJr,"Driver Neil Castles had been in Wallace's office at the time, overheard this conversation, and informed Vandiver be… https://t.co/loXuXgdjVJ" +06/08/2018,Sports_celeb,@DaleJr,Two Greenville County sheriff's deputies arrived at Darlington on race day. In Darlington Raceway president Barney… https://t.co/9ouLeHVjdj +06/08/2018,Sports_celeb,@DaleJr,"The judge at the hearing did not consider this grounds for absence, and found Vandiver in contempt of court. An arrest warrant was issued." +06/08/2018,Sports_celeb,@DaleJr,"From the 1973 Southern 500 Wikipedia + +Jim Vandiver (dealing with a child custody case with his first wife) was to a… https://t.co/6aNEkXDWH3" +06/08/2018,Sports_celeb,@DaleJr,Congrats @Capitals #StanleyCup +06/08/2018,Sports_celeb,@DaleJr,RT @Capitals: THE MOMENT WE'VE ALL BEEN WAITING FOR! WE GOT THE CUP! #ALLCAPS #STANLEYCUP https://t.co/TEur4PnhMD +06/07/2018,Sports_celeb,@DaleJr,@DontreGraves I biked 32 miles this morning... https://t.co/fKD97sbyId +06/07/2018,Sports_celeb,@DaleJr,Working with @ReganSmith was a lot of fun. 👍🏼 https://t.co/a9me2GzNkF +06/07/2018,Sports_celeb,@DaleJr,RT @DontreGraves: This is the most T.O. thing ever https://t.co/XqgmH79yMD +06/07/2018,Sports_celeb,@DaleJr,This is great https://t.co/OnoHGOw5gV +06/07/2018,Sports_celeb,@DaleJr,Thank you @JoSwindell @KevinSwindell. Isla’s gonna be stylin’ https://t.co/5riJwkdQEq +06/07/2018,Sports_celeb,@DaleJr,RT @wcnc: Caught on camera: Baby thrown from burning apartment in SC https://t.co/yMY8pxKS5j https://t.co/WOpjnGfMyd +06/07/2018,Sports_celeb,@DaleJr,"Through the years after my dads death many drivers and industry folk were incredibly supportive, and that certainly… https://t.co/Ymont8ocKD" +06/07/2018,Sports_celeb,@DaleJr,Dad stops to examine the hat after signing it because of the color and logo. The UPS branding was an unfamiliar sig… https://t.co/t8Ts5GnyIH +06/07/2018,Sports_celeb,@DaleJr,Dad is hurriedly signing items handed to him by the group as he talks. DJ worked his way through the group up to da… https://t.co/2K4LX4BpCU +06/07/2018,Sports_celeb,@DaleJr,In 2001 at the Daytona 500 hours before the race DJ was getting ready to do his hospitality for his new sponsor UPS… https://t.co/bS0yv7jSGK +06/07/2018,Sports_celeb,@DaleJr,I see @DaleJarrett at the studio for our show tonight. And he says he has something for me. I wonder what could it… https://t.co/NTIQ0uWgd1 +06/06/2018,Sports_celeb,@DaleJr,Fun to be back. I enjoyed the show and hope you did too. This new job kicks ass. +06/06/2018,Sports_celeb,@DaleJr,"I’m on TV with @RutledgeWood, @DaleJarrett for the #WednesDale edition of #NASCARAmerica. Watch it or record it or… https://t.co/8yKlFJlggl" +06/06/2018,Sports_celeb,@DaleJr,"RT @Kenny_Mayne: We had our 501C-3 deal...now we have a bank account..Next week a website & an announcement.. + +Then we can start appealing…" +06/06/2018,Sports_celeb,@DaleJr,What a find! https://t.co/ncPjFbIbOJ +06/06/2018,Sports_celeb,@DaleJr,One of my best buddies is getting his big acting break! Check out twitterless Brad Burroughs (he’s the one towing t… https://t.co/7SBIGO69ta +06/05/2018,Sports_celeb,@DaleJr,"RT @TheSceneVault: Dale Earnhardt takes six-year-old @DaleJr and eight-year-old @EarnhardtKelley swimming on the lake, and Kelley begins he…" +06/05/2018,Sports_celeb,@DaleJr,@SHOWTIME6676 😂👍🏼👍🏼 +06/05/2018,Sports_celeb,@DaleJr,@BroBible @DontreGraves +06/05/2018,Sports_celeb,@DaleJr,@KyleLarsonRacin @DCSolar https://t.co/lWY59fEX4t +06/05/2018,Sports_celeb,@DaleJr,@ClintBowyer Let’s ride 20 +06/05/2018,Sports_celeb,@DaleJr,@marietk28 My boss was telling me about that. The away game parties at home arenas. That’s a great idea. +06/05/2018,Sports_celeb,@DaleJr,@Gingeronastick A @mnwild game many many years ago thanks to @budweiserusa +06/05/2018,Sports_celeb,@DaleJr,@jeff_gluck Cars aflame 😂 +06/05/2018,Sports_celeb,@DaleJr,One cool part of last nights #NHLFinal was when the monitors showed the large crowd partying in the streets outside… https://t.co/FHLG04LyDV +06/05/2018,Sports_celeb,@DaleJr,This is fantastic. Pretty cool that kids still connect with my father. Dad would get such a kick out of this. Aweso… https://t.co/SsPBMMCQ7H +06/05/2018,Sports_celeb,@DaleJr,"#StanleyCup +#StanleyCupFinal #StanleyCupFinal2018" +06/05/2018,Sports_celeb,@DaleJr,#Final #TheFinal #NHLFinal +06/05/2018,Sports_celeb,@DaleJr,I feel lucky to have witnessed a home team score at an @NHL finals game. The energy and noise from the crowd was contagious. +06/05/2018,Sports_celeb,@DaleJr,"RT @miketirico: Hanging with Jr and JR + +@StanleyCup Final +@NHLonNBCSports +@NBCSports + +@DaleJr +@Jeremy_Roenick https://t.co/BllWMqASoq" +06/05/2018,Sports_celeb,@DaleJr,@KeithOlbermann @NBCSports https://t.co/D1BDru0LrV +06/05/2018,Sports_celeb,@DaleJr,@renewabelle @fak3r @KeithOlbermann @NBCSports I was +06/05/2018,Sports_celeb,@DaleJr,Need all the practice I can get!! Ready to get to @ChicagolndSpdwy and get things started. #Rookie https://t.co/SrJhsbr1MV +06/04/2018,Sports_celeb,@DaleJr,@CopaCavanna “Let’s see. K...Y...L?” +06/26/2018,Sports_celeb,@CameronHanes,160 yards just fun...I’m loving my new @hoytbowhunting Ultra. Straight from the gym wrapping up today’s… https://t.co/HhCvqcRPXT +06/25/2018,Sports_celeb,@CameronHanes,Yellow balloon on far target...140 yards with @wayneendicott1354 on the play-by-play and @dylancroll on the 🎥. Who… https://t.co/o3RCPMfYBW +06/15/2018,Sports_celeb,@CameronHanes,"Can’t wait for this.... First 200 get the new tropical punch flavored Keep Hammering BCAA. 👈👈👈 +For registration go… https://t.co/6Ch6ZohAc1" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/BkxMGjOThQ" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/nex0pavsyt" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/QrjoyrLnTD" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/vQrwUOvfhX" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/Up817TQH72" +05/23/2018,Sports_celeb,@CameronHanes,"In low light, average bears look huge. Such was the case with this decent bear. Despite his good head and nice hide… https://t.co/HoRXclWA9m" +05/17/2018,Sports_celeb,@CameronHanes,"And, to top it off, @maxthieriot also wore one of my Keep Hammering shirts for the “surprise his girl” crunch time… https://t.co/AH3anJWTuE" +05/17/2018,Sports_celeb,@CameronHanes,"@maxthieriot rockin’ one of my #nobodycaresworkharder shirts tonight on @sealteamcbs. So sweet! +Appreciate you brot… https://t.co/Fn2wHItyFB" +05/17/2018,Sports_celeb,@CameronHanes,Keep Hammering defined...with a shoutout to @jockowillink’s Good! @maxthieriot on @sealteamcbs and running is fun! https://t.co/93TYfsfROp +05/12/2018,Sports_celeb,@CameronHanes,"Man, it is incredible how many nice/positive comments I seen on the video I posted yesterday of me and… https://t.co/LCHN7gqNsJ" +05/09/2018,Sports_celeb,@CameronHanes,"#trainhuntprovidehonor +Repost from @powerfuljoerogan +@cameronrhanes beautifully breaks down why he trains so hard… https://t.co/zlSK20QOPh" +05/09/2018,Sports_celeb,@CameronHanes,"Thank you God for one more summit! 🙌 +Who hit the trail today? https://t.co/P5RwcVHJNM" +05/03/2018,Sports_celeb,@CameronHanes,Life is good.... https://t.co/NZKPOVwC2X +05/02/2018,Sports_celeb,@CameronHanes,Thank you for inviting me to Lanai @bennyob301 and @yeti. I feel very grateful to hunt and pull meat out of country… https://t.co/bHCC9nF7WL +04/18/2018,Sports_celeb,@CameronHanes,"🙏❤️🙌 +Text HOME to 741741 from anywhere in the United States, anytime, about any type of crisis. + +When you’ve reache… https://t.co/bPguBTyiFj" +04/12/2018,Sports_celeb,@CameronHanes,"Last elk season here at home we battled hot weather and smoke from burns in the not too far off distance, as the su… https://t.co/0Ld6ilyaLT" +04/01/2018,Sports_celeb,@CameronHanes,"FYI... +💪💪💪💪 +#Repost @powerfuljoerogan with @get_repost +・・・ +Joe goes on epic @garyvee type rant about negative peopl… https://t.co/9BJznbLWMr" +04/01/2018,Sports_celeb,@CameronHanes,Running makes me 😃 and my ❤️ sing. 🙏 https://t.co/KoUeTdEUdl +04/01/2018,Sports_celeb,@CameronHanes,"Love these guys and their winning spirit!!! +💪💪💪 +#Repost @mikechandlermma with @get_repost +・・・ +#throwbackthursday -… https://t.co/k44GrHKxUn" +03/24/2018,Sports_celeb,@CameronHanes,Good stuff @willsmith and my last 5 text @nickthetrainerdude @joerogan @evashockey @outlaw_strength and… https://t.co/bJgbaWgcrU +03/24/2018,Sports_celeb,@CameronHanes,Droke's Antler Art thank you so much! I very much appreciate your thoughtfulness Craig Droke. Check them out at… https://t.co/tZQaFzzbh1 +03/18/2018,Sports_celeb,@CameronHanes,Thoughts from the trail....❤️ for all. I learn something from each person and their perspective. Thank you! https://t.co/6XmTz9DSnf +03/18/2018,Sports_celeb,@CameronHanes,"Good to be back from D.C...but figured I'd share a few of my favorite moments. You might notice a theme? 🏹 +Me... https://t.co/Aa7IrkCuZz" +03/18/2018,Sports_celeb,@CameronHanes,"Good to be back from D.C...but figured I'd share a few of my favorite moments. You might notice a theme? 🏹 +Not... https://t.co/FNGinlIS4r" +03/17/2018,Sports_celeb,@CameronHanes,"Not exactly. Just not the ""right"" conservation groups. And we've done a good job of explaining conservation to... https://t.co/3zxM0ssF5O" +03/15/2018,Sports_celeb,@CameronHanes,"The draw to the wilderness for me...I never saw anyone back there. +I didn't have the advantage of money to open... https://t.co/jaOQnS0yHb" +03/15/2018,Sports_celeb,@CameronHanes,To tell you the truth not that long ago I couldn't tell you who the previous Secretary of Interior was before... https://t.co/lXQWQGERto +03/15/2018,Sports_celeb,@CameronHanes,Brought up Bears Ears a few times just so I was clear on where it stood regarding mineral extraction? Like... https://t.co/eklyO5bczn +03/13/2018,Sports_celeb,@CameronHanes,#venicebeach is always fun! @isiahhilt killing it with #hops https://t.co/Q1VQ0N9Mt0 +03/08/2018,Sports_celeb,@CameronHanes,"Weak @nbcsnl. +How about you show respect to hard working, self-sufficient Americans instead of taking potshots... https://t.co/klV6ecT55g" +02/26/2018,Sports_celeb,@CameronHanes,"Check out this sweet bowhunting tribute @ialeman76 sent me this morning. Thanks brother, I love it. +Isaac and I... https://t.co/0FHfYzBYCU" +02/16/2018,Sports_celeb,@CameronHanes,@13pacificwaves hitting the mountain! I'm happy! https://t.co/VhuiiwRMtd +02/15/2018,Sports_celeb,@CameronHanes,"It's mandatory on Valentine's Day to pick your daughter up from school, listen to @taylorswift and hit a filter... https://t.co/cIfx7vLCYO" +02/11/2018,Sports_celeb,@CameronHanes,"I live for experiences like this. Thank you all!!! +#keephammering5k +#keephammering +@mtnops https://t.co/oSC3nrOKxQ" +02/10/2018,Sports_celeb,@CameronHanes,Baby ❤️at @huntexpo. See you guys at 4 in the @mtnops booth! 📸 @adam.greentree https://t.co/VnpAxKWpvx +02/08/2018,Sports_celeb,@CameronHanes,I don't care what happens the entire rest of the day...nothing will change how happy this makes me. Your success... https://t.co/G3JBLappFH +02/08/2018,Sports_celeb,@CameronHanes,I'm assuming @joerogan made a good shot just prior to this? Haha. Who watched us shoot Techno-Hunt live... https://t.co/UBmYYshneI +01/28/2018,Sports_celeb,@CameronHanes,"❤️️❤️️❤️️❤️️ 🏹🏹🏹🏹 +Who shot their bow today? https://t.co/CQv2wzT9oB" +01/26/2018,Sports_celeb,@CameronHanes,"PSA for being a steward of public land. This is your land, treat it that way. @mypubliclands @repryanzinke https://t.co/ER9zdQHEvC" +01/25/2018,Sports_celeb,@CameronHanes,@evashockey basically killing it. #keephammering @shotshow https://t.co/lfyKlYPspw +01/24/2018,Sports_celeb,@CameronHanes,Exactly! Wisconsin has the right mindset. What you've accomplished in the past means nothing. What you did... https://t.co/NCzby88Kbk +01/20/2018,Sports_celeb,@CameronHanes,"Two things... +Marathon today. +SHOT show 5k. +#trainhuntprovidehonor https://t.co/6sPWBmVuQC" +01/15/2018,Sports_celeb,@CameronHanes,I'm sooooo pumped for this!!! Who's joining me in the 2nd annual @cameronrhanes #KeepHammering5K in Salt Lake... https://t.co/aj8AkbKLHp +01/14/2018,Sports_celeb,@CameronHanes,"How do you not love @drewbrees? Good post @todddurkin #wintheday +• +Posted @withrepost • @todddurkin Win the DAY!!... https://t.co/dRCPYyOXGS" +01/14/2018,Sports_celeb,@CameronHanes,Thank you WOS! https://t.co/9UwgzHfX2b +01/14/2018,Sports_celeb,@CameronHanes,"My mom said I can come over and play @joerogan. +• +Posted @withrepost • @joerogan I got a Techno Hunt video... https://t.co/ZgLm3c5IEn" +01/13/2018,Sports_celeb,@CameronHanes,"That's what friends are for. Haha +Posted @withrepost • @outbackarcheryjoplin I had him !! @cameronrhanes... https://t.co/TVO3jE0GGA" +01/12/2018,Sports_celeb,@CameronHanes,Sweet video @brandedbills! The launch of the Cameron Hanes hunting series hats has been amazing!!! Thank you... https://t.co/lwJSJfX9cr +01/12/2018,Sports_celeb,@CameronHanes,"What an amazing day! +Posted @withrepost • @atatradeshow A little impromptu discussion on conversation at the... https://t.co/zbJdOU8sjv" +01/06/2018,Sports_celeb,@CameronHanes,New toys... https://t.co/qgSPl3KQJW +01/02/2018,Sports_celeb,@CameronHanes,Happy New Year! https://t.co/0NGt2Z73WJ +01/01/2018,Sports_celeb,@CameronHanes,Have a great New Year's Eve. What's the plan anyone getting in a run at midnight to ring in the new year? https://t.co/r9rh4xJR46 +01/01/2018,Sports_celeb,@CameronHanes,"Whhooaa bow and arrows a little to hunty killy don't you think? +• +• +Ixna on the #dreamcatcher •Haha +• +Posted... https://t.co/fNTEcYekFL" +12/28/2017,Sports_celeb,@CameronHanes,"Meanwhile to bookend (see previous post) the relatively quick and painless death of elk in the wild by a hunter,... https://t.co/WEDmq9K81k" +12/28/2017,Sports_celeb,@CameronHanes,"This bull, aged at 11-years old, is the exact animal I'm after when bowhunting. Past his breeding prime (6-9... https://t.co/ah2ymbSKgc" +12/24/2017,Sports_celeb,@CameronHanes,The Keep Hammering 5K in Salt Lake City. Easily one of my best memories from this year. Thank you all so much!!!... https://t.co/vzWmJlmraV +12/19/2017,Sports_celeb,@CameronHanes,I have a lot to be thankful for but near the top of that list is having the ability and opportunity to be a... https://t.co/dezOA3FPQq +12/19/2017,Sports_celeb,@CameronHanes,"It's all fun and games until the 👑 shows up. There is nothing quite like Africa. +Video by @o.baa https://t.co/Oi76lCVhom" +12/19/2017,Sports_celeb,@CameronHanes,Ended the night with a bunch of dips. 4 or 5 sets of 25 the last 5 slow then the last set of 30. Trying to build... https://t.co/jZay08dVM4 +12/15/2017,Sports_celeb,@CameronHanes,"Morning update recap... +• It's summer +• @brandedbills 🙏 +• #keephammering family 💪 +• @thebowrack tomorrow +Have a... https://t.co/SflDEmmGON" +12/14/2017,Sports_celeb,@CameronHanes,I'm here to help with fashion. https://t.co/CWsWfFrcTF +12/05/2017,Sports_celeb,@CameronHanes,"Good morning!!! +What are your thoughts regarding @realdonaldtrump's announcement yesterday in Utah? https://t.co/GBa4b2IMMY" +12/04/2017,Sports_celeb,@CameronHanes,How amazing is this? Talent like @joelpilch's is so special...turning a hunting image into art...awesome! Thank... https://t.co/X5tgnjpYC4 +12/04/2017,Sports_celeb,@CameronHanes,"What he said! +Sounds to me like the story of a successful hunt, which means meat on the ground. And, that's... https://t.co/0DHuf6PlXL" +12/02/2017,Sports_celeb,@CameronHanes,"Roy's Room +#legendsneverdie #riproyroth https://t.co/ODnm47Y7AW" +12/01/2017,Sports_celeb,@CameronHanes,#throwbackthursday Dall sheep with the legend Roy Roth. #roytough #riproyroth https://t.co/Z7H37tSpym +11/30/2017,Sports_celeb,@CameronHanes,"Jeffery Davidson from Vancouver, Washington you won yourself a Keep Hammering RX-1 compliments of @mtnops.... https://t.co/eVFuKzTdiy" +11/24/2017,Sports_celeb,@CameronHanes,Hmmm CNN suprised me... https://t.co/Jii70SB1kJ +11/24/2017,Sports_celeb,@CameronHanes,"Some non-hunters say they support hunting but not ""trophy hunting"". Just an FYI, those two aren't mutually... https://t.co/SJexiZzalT" +11/22/2017,Sports_celeb,@CameronHanes,Still waiting on the @realdonaldtrump decision regarding the ban...thought I'd share a few quick thoughts about my.… https://t.co/70OmVliv8G +11/22/2017,Sports_celeb,@CameronHanes,I am not one to argue with science... https://t.co/hqJgSh2KWL +11/21/2017,Sports_celeb,@CameronHanes,At this time I was irritated and confused with the meaning of @realdonaldtrump's tweet regarding trophy hunting... https://t.co/uTMlbtFDFb +11/21/2017,Sports_celeb,@CameronHanes,Biceps tonight. Going for max reps in a minute with bad form because we don't want to get too big. Haha. Just... https://t.co/66cMJeZWhx +11/21/2017,Sports_celeb,@CameronHanes,"Hopefully, it's just a poorly worded tweet? We will find out. https://t.co/nY7uvxjF5t" +11/20/2017,Sports_celeb,@CameronHanes,Thanks for the perspective. Nothing but ❤️. #keephammering https://t.co/RlID849NQi +11/19/2017,Sports_celeb,@CameronHanes,"Every year Brit. Who else gets all emotional when it comes to big bucks? +Courtesy of @pa_whitetail https://t.co/HMLRW3fFps" +11/18/2017,Sports_celeb,@CameronHanes,All seems right in m little world today. Nothing I'd rather be doing. 🙏 #sunrise #oregonblacktail https://t.co/OgeY1wRKRp +11/17/2017,Sports_celeb,@CameronHanes,What do normal people talk about or share? Maybe I need to expand my horizons? #lunchrun https://t.co/NQ88XzGG0V +11/14/2017,Sports_celeb,@CameronHanes,"Packing elk meat on a rainy Oregon evening...nothing I'd rather be doing. +Who's in agreement? +@evashockey... https://t.co/YiDLaw7kcV" +11/13/2017,Sports_celeb,@CameronHanes,Want to get started in archery/bowhunting? Take that first step by finding your local archery pro-shop or call... https://t.co/X0pWFIosRs +11/13/2017,Sports_celeb,@CameronHanes,Here's some good advice from one of my life coaches (he doesn't know I exist BTW haha who cares) @garyvee. Gary... https://t.co/cup4bvS07S +11/11/2017,Sports_celeb,@CameronHanes,"Did I paint a good picture? +Thank you all for inspiring me to give my very best everyday. #keephammering https://t.co/aQdiD8IY9N" +11/11/2017,Sports_celeb,@CameronHanes,"Agreed @whiskeyriff....just letting it loop. + +Posted @withrepost • @whiskeyriff 1990 George Strait @budlight... https://t.co/3hvUeGpqmX" +11/11/2017,Sports_celeb,@CameronHanes,🙌 so much to be thankful for. https://t.co/k61GIOncRB +11/11/2017,Sports_celeb,@CameronHanes,Thank you @manucarrasco33. You're amazing! https://t.co/rBrBbXnKf5 +11/10/2017,Sports_celeb,@CameronHanes,Thanks for the memories @underarmour! Classic #throwbackthursday https://t.co/39sBq7ENmS +11/09/2017,Sports_celeb,@CameronHanes,I've really been enjoying this @bornandraisedoutdoors YouTube series that they are currently updating with a new... https://t.co/XwvRI8I4ST +11/08/2017,Sports_celeb,@CameronHanes,You know the words... https://t.co/NiWBQ3p2oF +11/07/2017,Sports_celeb,@CameronHanes,"Thanks for the advice @joerogan. #keephammering +Watch for this new hunting film coming soon on @uahunt. It's a... https://t.co/vnL67VfK9l" +11/07/2017,Sports_celeb,@CameronHanes,"I surely don't know what the solution is, but I do know we are in this together. What are your thoughts? Cam https://t.co/IzGOEGbbsn" +11/07/2017,Sports_celeb,@CameronHanes,"I will never be able to explain how bowhunting seems muted at times for me since Roy died in 2015, but maybe... https://t.co/59wpR0jqCP" +11/06/2017,Sports_celeb,@CameronHanes,A rising tide lifts all boats. https://t.co/XUxnvsh70z +11/04/2017,Sports_celeb,@CameronHanes,Thoughts... https://t.co/42GToWIgcy +11/03/2017,Sports_celeb,@CameronHanes,You know you're a bowhunter when your regular clothes are pretty much full camo. But I digress. Shooting the new... https://t.co/5P4IMLyuNs +11/03/2017,Sports_celeb,@CameronHanes,Come bowhunting with us!!! https://t.co/tzdVPjwm7z +11/03/2017,Sports_celeb,@CameronHanes,Send it! https://t.co/cguF9yEvv8 +11/03/2017,Sports_celeb,@CameronHanes,In honor of our @uahunt take over I see @adam.greentree posted a throwback video of him hating on my full set of... https://t.co/epZi3Wn6Qs +11/03/2017,Sports_celeb,@CameronHanes,Chest circuit with @colbycovmma and his dad...it's a fun one! We did 4 rounds of this (20-30 reps of everything)... https://t.co/XilPs7zZVZ +11/02/2017,Sports_celeb,@CameronHanes,https://t.co/FnEO8A7BcA +11/02/2017,Sports_celeb,@CameronHanes,Where you are today is simply a starting point...something to build on. #keephammering https://t.co/IJYVpoKcM3 +11/02/2017,Sports_celeb,@CameronHanes,"Friday!!!! Posted @withrepost • @uahunt ""We're going to have to do 110% right, and the buck 10% wrong."" ​Here's... https://t.co/IZVJssE55J" +11/02/2017,Sports_celeb,@CameronHanes,"#ufc217 fight predictions with @colbycovmma... +GSP vs @mikebisping✅ + +@gamebredfighter✅ vs @wonderboymma... https://t.co/xBYQ55tSLD" +11/01/2017,Sports_celeb,@CameronHanes,I prefer dirt over asphalt/concrete but any run is a good run. Who's gonna hammer out some miles today! https://t.co/yyTvTNn6Hn +10/31/2017,Sports_celeb,@CameronHanes,"""We can die now."" +Not really because if I'd died after killing this buffalo I would have missed this past elk... https://t.co/oNiTiI4DEG" +10/31/2017,Sports_celeb,@CameronHanes,I live for moments like this...passing on the passion! Alex and people like Alex inspire to give my best... https://t.co/Y4EZ5FMJjZ +10/31/2017,Sports_celeb,@CameronHanes,"Granted I'm weak, but generally not as weak as I look here. Last set of a long workout and failure is always the... https://t.co/IsNXeHlvQr" +10/30/2017,Sports_celeb,@CameronHanes,Mindset https://t.co/347foAecLU +10/28/2017,Sports_celeb,@CameronHanes,Courtney Dauwalter Sets the Bar at Moab 200- 238 miles in 57 HOURS !!! | Trail Runner Nation https://t.co/KuyDUCf7xY +10/27/2017,Sports_celeb,@CameronHanes,"Ship it! +@hoytbowhunting is so backed up with Keep Hammering bow orders they said I needed to come help get... https://t.co/7z4gr2iupS" +10/25/2017,Sports_celeb,@CameronHanes,Thanks Rated Red https://t.co/YRkmmKEQTU +10/24/2017,Sports_celeb,@CameronHanes,What a day! First day and 1st time shooting the new Keep Hammering signature @hoytbowhunting at 100 yards. Such a... https://t.co/mttRt3pVGr +10/21/2017,Sports_celeb,@CameronHanes,"And better than me finishing the #moab240 was watching my younger brother, @tspike2, get his hard-earned finish.... https://t.co/tiPex5sYRi" +10/21/2017,Sports_celeb,@CameronHanes,"My finish of the #moab240...238.3 miles, 79 hours 19 minutes, 13th place of 140 starters (98 finishers). Such an... https://t.co/KHQDGFWOWC" +10/20/2017,Sports_celeb,@CameronHanes,"Made it to mile 166 by pushing hard thru the night. Now it's time for a big climb...over 5,000 vertical feet to... https://t.co/DVu2ZXccPC" +10/20/2017,Sports_celeb,@CameronHanes,135 miles down...it's cold! Headed to the 166 aid station. @destinationtrailraces @uaoutdoor 📸 @sub7studios https://t.co/BCXtDe6U9i +10/20/2017,Sports_celeb,@CameronHanes,A big part of the challenge in long ultras is keeping your feet in tact. My feet actually are in really good... https://t.co/qJwgBLbrkw +10/20/2017,Sports_celeb,@CameronHanes,Big night planned here as the sun heads towards horizon. I want to get from 123 to mile 166 by 9:00 a.m. Gonna be... https://t.co/cIRNI0Emsk +10/20/2017,Sports_celeb,@CameronHanes,"Day 1...55 miles down in about 12 hours. We were happy with this effort, but just getting started at #moab240.... https://t.co/TMyW4lOA5v" +10/19/2017,Sports_celeb,@CameronHanes,Lets get this party started! #moab240 start line excitement and anxious energy which we rode to the first aid... https://t.co/xkfNfF9f2y +10/18/2017,Sports_celeb,@CameronHanes,#moab240 at the @destinationtrailraces start line. I'm so happy to share all the cool footage from this event... https://t.co/uMKVvhBrR5 +10/17/2017,Sports_celeb,@CameronHanes,"Great idea on the before/after! What a difference 3 days, 240 miles on foot and 2 hours of sleep makes. I need to... https://t.co/pnkoyjxLUb" +10/11/2017,Sports_celeb,@CameronHanes,"Aim small, miss small. https://t.co/1vg6MqjzHa" +10/10/2017,Sports_celeb,@CameronHanes,https://t.co/WX2ChVKs4Q +10/09/2017,Sports_celeb,@CameronHanes,"Great work Natalie! Love the shirt. 🔨🔨🔨💪💪 +#Reposting @natalieott with @instarepost_app -- Today's workout was... https://t.co/bIedG3SOxz" +10/08/2017,Sports_celeb,@CameronHanes,"At least to get me through those long 11 months until next September, I'll be eating well. #ieatelk #quartershanging https://t.co/FJ2DmvR8ps" +10/07/2017,Sports_celeb,@CameronHanes,"Curls to get ready a 240 mile footrace? Yep, because like @marksmellybell says, ""Strength is never a weakness.""... https://t.co/axyQMTyv5n" +10/05/2017,Sports_celeb,@CameronHanes,"Back up! +Still at it! +Thank you Jesus. +@jstlbby https://t.co/DIDbznagFI" +10/05/2017,Sports_celeb,@CameronHanes,"Who's cleaning this mess up? +#Reposting @realratedred with @instarepost_app -- Trick shots with Cam Hanes: Silly... https://t.co/JdMLRJQhMS" +10/04/2017,Sports_celeb,@CameronHanes,"#moab240 prep....nice and easy. Who else ran today? +@underarmour @lekiusa @trailrunnernation @destinationtrailraces https://t.co/bzgm4quwsq" +10/04/2017,Sports_celeb,@CameronHanes,"#moab240 prep....nice and easy. Who else ran today? +@underarmour @lekiusa @trailrunnernation @destinationtrailraces https://t.co/HwKBeSH9Ik" +10/03/2017,Sports_celeb,@CameronHanes,10 days..... https://t.co/pVCwY7z6GS +10/02/2017,Sports_celeb,@CameronHanes,Thanks for all the ❤️. You all inspire me give my very best everyday. #keephammering https://t.co/UXYhESKCiN +09/30/2017,Sports_celeb,@CameronHanes,Cameron Hanes Aims for 240 Miles | Trail Runner Nation https://t.co/aCKeY34ejW +09/29/2017,Sports_celeb,@CameronHanes,Bows and arrows! https://t.co/5JjslJqXhl +09/29/2017,Sports_celeb,@CameronHanes,"( turn sound up ☝️) I love losing. Good opening line 😊 +How about this custom music video made for me exclusively... https://t.co/6qQ8HqThIh" +09/26/2017,Sports_celeb,@CameronHanes,Good times! https://t.co/tnRvGj2maH +09/22/2017,Sports_celeb,@CameronHanes,More bugling bulls. Sound 👆. This 6x5 was a young bull looking for love. @uahunt https://t.co/22TnA275EU +09/21/2017,Sports_celeb,@CameronHanes,"Been out of service for awhile but I'm back!!! You know how I know it was a good day? +With @joerogan... https://t.co/xc7wRLbMmO" +09/13/2017,Sports_celeb,@CameronHanes,"Somehow I got a cold during hunting season, which is good! Makes hammering harder which will make it easier when... https://t.co/OWHzHCDf0I" +09/06/2017,Sports_celeb,@CameronHanes,"This young 6x6 came in to 10 yards, spooked then stopped at 46. He was fully convinced there was a cow there.... https://t.co/uwJ99TwuUQ" +09/06/2017,Sports_celeb,@CameronHanes,Killed fighting another bull or could be a lion kill too I guess? FYI: we saw two mountain lions this morning at... https://t.co/vukNrjYagN +09/05/2017,Sports_celeb,@CameronHanes,I like 29 yard shots... https://t.co/N8sllChnbN +09/04/2017,Sports_celeb,@CameronHanes,I'm convinced. I'm done with meat and buying a cow to ride to work. P.S. I've watched this 10x and it makes me... https://t.co/TC7W2yPcNr +09/01/2017,Sports_celeb,@CameronHanes,It's September and September means bugling bulls!!! His was four years ago but I remember it like yesterday. Full... https://t.co/X7GQ7kpjH9 +09/01/2017,Sports_celeb,@CameronHanes,"Way to #keephammering and make a difference my friend! +#Reposting @heavydsparks with @instarepost_app -- It's... https://t.co/zLyw3GvdY7" +09/01/2017,Sports_celeb,@CameronHanes,"Way to go brother! And, I'm loving that #keephammering trail run shirt! @mtnops +#Reposting @the.muscle with... https://t.co/7sxbJKW2DC" +08/31/2017,Sports_celeb,@CameronHanes,"Colorado countdown! +@hoytbowhunting @eastonarchery @spothoggarchery https://t.co/faVRuUg536" +08/30/2017,Sports_celeb,@CameronHanes,I posted a new video to Facebook https://t.co/vTFQich5fE +08/30/2017,Sports_celeb,@CameronHanes,Please help if you can. Cam https://t.co/xATWBcO504 +08/30/2017,Sports_celeb,@CameronHanes,Sometimes we go to the movies sometimes we cut off antlers. https://t.co/XedF3KqUqY +08/28/2017,Sports_celeb,@CameronHanes,After we got the bull broke down I went back to find my arrow. It passed thru the bull and was laying here on the... https://t.co/aDoGfnQWJy +08/28/2017,Sports_celeb,@CameronHanes,After we got the bull broke down I went back to find my arrow. It passed thru the bull and was laying here on the... https://t.co/aFu2GaFVQV +08/27/2017,Sports_celeb,@CameronHanes,Doesn't get any better! #ieatelk @uahunt @yeti https://t.co/VaxKTKPHg6 +08/22/2017,Sports_celeb,@CameronHanes,"Protect, serve and bowhunt....we are 4 days away from elk season here in Oregon. I'm trying to get leaner and... https://t.co/7HjlU8r16e" +08/20/2017,Sports_celeb,@CameronHanes,"When @realratedred says, ""Hey wanna come to SLC and make archery videos?"" I say, What time you need me there?... https://t.co/ot7kY03RVh" +08/20/2017,Sports_celeb,@CameronHanes,I was watching this video today on @ufcuncensored and was surprised to see myself in the background with... https://t.co/P8IlAmXzjq +08/19/2017,Sports_celeb,@CameronHanes,Psshhht it's just a Phantom. Haha what's the worst that can happen? @realratedred @eastonarchery #$240k https://t.co/dp27MTA7Kv +08/18/2017,Sports_celeb,@CameronHanes,"Some days you rule the run, some days the run rules you. One thing about it, the mountains, the elk and pretty... https://t.co/BMZiKh5wrd" +08/15/2017,Sports_celeb,@CameronHanes,Anyone else gets some reps in today? #liftrunshoot https://t.co/te1p2t6Cow +08/15/2017,Sports_celeb,@CameronHanes,Bosu Ball push-up sequence...5 sets super sets with tricep extensions. @outlaw_strength https://t.co/2eM0EdOoBW +08/10/2017,Sports_celeb,@CameronHanes,Lots of back/chest reps within a number of movements cumulating with this superset. Go until you land on your... https://t.co/8MSkq1PYv8 +08/09/2017,Sports_celeb,@CameronHanes,"Please know, I'm not an expert and I don't have the blueprint, all I know is what works for me. I don't know what... https://t.co/gtZyclWIdn" +08/05/2017,Sports_celeb,@CameronHanes,"Find your talent and pay your dues! +Note: 5 hours of sleep gives you one more hour to 🔨🔨🔨. Thanks for breaking it... https://t.co/xTdMic77v3" +08/02/2017,Sports_celeb,@CameronHanes,"Hope for the best, prepare for the worst. Wasn't sure if I should end the video with #keephammering #itsallmental... https://t.co/jE8LdbE5xb" +08/01/2017,Sports_celeb,@CameronHanes,"Thanks for the support @outlaw_strength and haha yep, maybe @therock? 500 reps tonight. What did you all lift today? https://t.co/VyjY8Ua1aY" +07/30/2017,Sports_celeb,@CameronHanes,"This has it all...Keep Hammering, the classic cut shirt and the creativity. @livingcountryinthecity is becoming... https://t.co/FMrkaseZCv" +07/28/2017,Sports_celeb,@CameronHanes,"Run ✅ +Shoot ✅ +Lift +With @hunter_j8 https://t.co/2XkXPrHX0u" +07/28/2017,Sports_celeb,@CameronHanes,"Run ✅ +Shoot +Lift +With @hunter_j8 https://t.co/Gu7rPlDoqA" +07/28/2017,Sports_celeb,@CameronHanes,Thanks to both of you!!!! Keep hammering! https://t.co/WBB9o58pLq +07/26/2017,Sports_celeb,@CameronHanes,I think we need to film an updated version...I'll need a few volunteers. 😊🎬🎯 @historic https://t.co/EwDNd5N0wo +07/26/2017,Sports_celeb,@CameronHanes,It was such an awesome night on the mountain! Hope you all had a great day and earned a chance to hammer.... https://t.co/dJieZTtOuz +07/26/2017,Sports_celeb,@CameronHanes,What hunt are you most looking forward to this year? Colorado elk is always near the top of my list! https://t.co/iGln0hR0Wi +07/26/2017,Sports_celeb,@CameronHanes,"This is especially true in today's social media world. Keep in mind, weak/insecure people criticize whereas... https://t.co/gl7nVqVNnX" +07/24/2017,Sports_celeb,@CameronHanes,Hunter found dead after 'suicide' following threats from activists https://t.co/BcptIPKprC +07/24/2017,Sports_celeb,@CameronHanes,"One of the hardest, but most important things to do when preparing for 100 or 200-mile races, is getting in your... https://t.co/PUgEkX2Tqw" +07/24/2017,Sports_celeb,@CameronHanes,"Mentally, yes yesterday had nothing to do with today but physically, I was a mess (calves/hamstrings) and at this... https://t.co/2v3Tor7oht" +07/23/2017,Sports_celeb,@CameronHanes,"Had plans of doing better today, but alas, it wasn't meant to be. This was my slowest 50K in years but I'm still... https://t.co/ItHRc7xl6O" +07/23/2017,Sports_celeb,@CameronHanes,"Best part of the day...meeting, visiting and taking photos with social media followers after the race. You all... https://t.co/MvOK1DFN7q" +07/23/2017,Sports_celeb,@CameronHanes,My other squad...bowhunting edition. Eric Park and Kevin Akers ready to hammer Bachelor this morning. #keephammering https://t.co/lxowYtkvuR +07/23/2017,Sports_celeb,@CameronHanes,Post @uamtnrunning 50K race photo with @uaoutdoor athletes @codyreeeed and @ywangruns who are both amazing... https://t.co/rCaaV4yaSn +07/23/2017,Sports_celeb,@CameronHanes,Thanks for the shoutout @uaoutdoor. In the chute at @uamtnrunning with @not.quite.lost and @theriverswild getting... https://t.co/YSJo3VOVGB +07/22/2017,Sports_celeb,@CameronHanes,New arrows coming compliments of @eastonarchery and @thebowrack. Speaking of The Bow Rack. One thing I noticed at... https://t.co/lfSRce2Jby +07/20/2017,Sports_celeb,@CameronHanes,Now this is the definition of Keep Hammering! Great job guys. Thanks so much for reppin' my Keep Hammering shirt!... https://t.co/Jt5WelJUjv +07/20/2017,Sports_celeb,@CameronHanes,"Train! +Awesome evening on the mountain. #keephammering https://t.co/JV0MezW5kV" +07/20/2017,Sports_celeb,@CameronHanes,"Cool little video from @uahunt. Who's joining us at @totalarcherychallenge next year? +FYI my 140-yard shot from... https://t.co/tvD8wojqhc" +07/19/2017,Sports_celeb,@CameronHanes,No one will run with me at lunch so I have to make friends on the mountain. #lunchrun https://t.co/LcrbRcKLVS +07/19/2017,Sports_celeb,@CameronHanes,"Don't miss. +@eastonarchery loves the @totalarcherychallenge +#arroweater +📸 @jedlarkin11 https://t.co/VmlDPQCCgr" +07/19/2017,Sports_celeb,@CameronHanes,"Question: is it possible to post too many photos from the @totalarcherychallenge? + +Answer: no + +#sendit with... https://t.co/HxNoBsuAo8" +07/19/2017,Sports_celeb,@CameronHanes,"I made a long, precise bow shot on this big 6x6 Wyoming wilderness bull while hunting amongst the wolves and... https://t.co/I7I3VE4dYv" +07/19/2017,Sports_celeb,@CameronHanes,"I'd like a show of hands from everyone who loves @adam.greentree 🙋‍♂️ +#Reposting @adam.greentree with... https://t.co/gHEg8F6EoZ" +07/18/2017,Sports_celeb,@CameronHanes,@joerogan and @bennyob301 had my ears burning. Haha. Great podcasts guys! #bearseverywhere #ilovemy7to5 https://t.co/ipLHFoMp2o +07/17/2017,Sports_celeb,@CameronHanes,"My favorite Jordan from @mtnops? Don't make me pick haha. Just kidding...it's a tie! Love em' both. +#Reposting... https://t.co/TJwkeLuMu0" +07/17/2017,Sports_celeb,@CameronHanes,I love seeing IG stories like this! @scotteastwood #dialedin https://t.co/ZIWniW9b9o +07/17/2017,Sports_celeb,@CameronHanes,"It was an epic couple of days in SLC!!! Thank you all. I so very much appreciate all the handshakes, hugs, kind... https://t.co/9wqz2o1kmM" +07/17/2017,Sports_celeb,@CameronHanes,"Send it! +....... +@totalarcherychallenge 📸 @jedlarkin11 https://t.co/gKL6zMCKqJ" +07/16/2017,Sports_celeb,@CameronHanes,CrossFit superfreak @cspealler jumped right into it taking on the @totalarcherychallenge for his first ever 3-D... https://t.co/JiVYXyg3WR +07/16/2017,Sports_celeb,@CameronHanes,Pull em'! @totalarcherychallenge 📸 @jedlarkin11 https://t.co/xAm5BobuBs +07/01/2018,Sports_celeb,@shaunwhite,Jet skiing all day. ✌️ https://t.co/ZiTs87s9Pc +06/30/2018,Sports_celeb,@shaunwhite,RT @airandstyle: Didn't grab enough at the merch table this year? We got you covered :) https://t.co/XV0ZUXueaJ https://t.co/8IiImWmDL7 +06/30/2018,Sports_celeb,@shaunwhite,I’m so stoked to be nominated for Best Olympic Moment and Best Male Olympian at the @ESPYS! Make sure you vote for… https://t.co/1MVE1oex3a +06/30/2018,Sports_celeb,@shaunwhite,. @BigBoi where are we going!? #Seabiscuit #lost #jamaica https://t.co/jm54pytZYA +06/30/2018,Sports_celeb,@shaunwhite,Jamaica living 🇯🇲 https://t.co/yt0SHOgicC +06/29/2018,Sports_celeb,@shaunwhite,This is a SERIOUS throwback! #TBT with the Biebz at the #KCAs in 2010. #allofthehair https://t.co/DTEdnEa3Jy +06/28/2018,Sports_celeb,@shaunwhite,Flower daze. 🌼 https://t.co/NMA6NmAXaw +06/25/2018,Sports_celeb,@shaunwhite,There is no better feeling... https://t.co/bC5KTxjdQX +06/25/2018,Sports_celeb,@shaunwhite,Sunset vibes. 🌊 https://t.co/kk7dI3h3aB +06/23/2018,Sports_celeb,@shaunwhite,It’s a Venice kinda skate day. ☀️ https://t.co/pFEltnxuSz +06/23/2018,Sports_celeb,@shaunwhite,Happy #TakeYourDogtoWorkDay from me and Leroy! #bringyourdogtoworkday https://t.co/QrTOAdil6Q +06/23/2018,Sports_celeb,@shaunwhite,🏄🏄 https://t.co/Hbr6XSaXgN +06/21/2018,Sports_celeb,@shaunwhite,Happy #GoSkateboardingDay! Where are you skating at?! 🏄 https://t.co/xyFy4THQ0n +06/20/2018,Sports_celeb,@shaunwhite,So stoked to be nominated for Choice Male Athlete at this year’s @kcsawards! Head to https://t.co/VQIDnI6GqP to vot… https://t.co/oL75OjCHH8 +06/19/2018,Sports_celeb,@shaunwhite,"I’ve begun to make some @Spotify playlists. Here's my current skate mix! I’m on a disco kick... don’t ask. 😂 +https://t.co/pM6StACl7m" +06/17/2018,Sports_celeb,@shaunwhite,😎✌️ https://t.co/M1UY2UDET6 +06/17/2018,Sports_celeb,@shaunwhite,I’m so glad we’re not like those father son duos who get overly emotional...Thank you for always being there.… https://t.co/Uhmx9QUumX +06/17/2018,Sports_celeb,@shaunwhite,🐾 🌴 https://t.co/AnMdFagDxP +06/16/2018,Sports_celeb,@shaunwhite,Saturday feels. https://t.co/E0EwlzUVRL +06/15/2018,Sports_celeb,@shaunwhite,"RT @TeenChoiceFOX: Are you ready to stomp this competition, @shaunwhite fans? Retweet to show us what you've got! #ChoiceMaleAthlete #TeenC…" +06/15/2018,Sports_celeb,@shaunwhite,Caption this 🦈 https://t.co/eqJS8lAXSp +06/06/2018,Sports_celeb,@shaunwhite,Hitting the vert ramp again! Bringing back some great memories 😍 📷 Gabe L’Heureux https://t.co/HAy7Hj89Le +05/31/2018,Sports_celeb,@shaunwhite,@slowtideco Thanks for the towels! Dig 'em +05/29/2018,Sports_celeb,@shaunwhite,". @Buck and I recount my journey from my childhood to today, TONIGHT at 8PM on #UndeniableShow. Catch the action on… https://t.co/dILoVcRUsA" +05/25/2018,Sports_celeb,@shaunwhite,"man, it seems like yesterday that I was making those long car rides to the mountains to get my first taste of snowb… https://t.co/WHTg75t2H9" +05/24/2018,Sports_celeb,@shaunwhite,"Phoenix, Az https://t.co/ctuHTTNauL" +05/24/2018,Sports_celeb,@shaunwhite,"RT @Phantogram: Hi Friends, + +We're really excited to share new music with you today. https://t.co/H6RjPVRtxI + +We started work on “Someday”…" +05/24/2018,Sports_celeb,@shaunwhite,RT @joejonas: Some Australia fashion week newbies @shaunwhite https://t.co/E3C48biZkk +05/16/2018,Sports_celeb,@shaunwhite,"I'm bringing @airandstyle to Sydney, Australia!!! August 3rd, 4th & 5th. https://t.co/tSEus7TGfL" +05/16/2018,Sports_celeb,@shaunwhite,sooo fun https://t.co/LFzqjcCLoD +05/11/2018,Sports_celeb,@shaunwhite,🤯🤯 what a day at the ranch w/ these legends. Thanks so much @kellyslater for having me! https://t.co/3yjoEH9ROr +05/10/2018,Sports_celeb,@shaunwhite,#TBT https://t.co/u7WcGGyPtW +05/09/2018,Sports_celeb,@shaunwhite,"they really need a skateboard emoji .. +📷 @iamfoursided https://t.co/FVZ56EYUl3" +05/08/2018,Sports_celeb,@shaunwhite,#MetGala 2018 👑 @voguemagazine @EtroOfficial 📷: @BFA https://t.co/Qk2gpCONeg +05/01/2018,Sports_celeb,@shaunwhite,My Mom holding back the tears as I walk her down the aisle at my sisters wedding! Kari and Ryan I’m so happy for th… https://t.co/nKd0xIKjqD +04/19/2018,Sports_celeb,@shaunwhite,@GovHerbert Thank you so much for having me! +04/17/2018,Sports_celeb,@shaunwhite,Watch the dog... 😂 https://t.co/dtDvCoO4gi +04/10/2018,Sports_celeb,@shaunwhite,"Had a great time sharing my Olympic and life experiences @UTAustin last night. Thanks for having me!🤠🤟🏼 +📷… https://t.co/GGVjkzX0Lm" +04/06/2018,Sports_celeb,@shaunwhite,Venice park 🌴 📹 Jordan Lovelis https://t.co/gqSGviZcw7 +04/04/2018,Sports_celeb,@shaunwhite,Warming up some old tricks! 3rd day on the board yesterday and it’s all starting to come back🤫 https://t.co/VVax0I8NWX +03/26/2018,Sports_celeb,@shaunwhite,@ryandiem Nice one!! +03/26/2018,Sports_celeb,@shaunwhite,That moment I told @postmalone his song was playing when I won my 3rd Olympic gold medal🙌🏻 #rockstar #posty https://t.co/96llwisneI +03/23/2018,Sports_celeb,@shaunwhite,missing my festival whip 😂🚘shoutout to @lyft for sponsoring our moves at @airandstyle on and off the festival groun… https://t.co/0Wxzfh4uzN +03/23/2018,Sports_celeb,@shaunwhite,"Great interview with @zanelowe on beats1 radio! +And yes I’m still wearing the medal 😂🇺🇸!! https://t.co/Z02yz0RGHT" +03/22/2018,Sports_celeb,@shaunwhite,"It was great to meet some of the @PaulMitchellUS family, Nate and Ollie. Thank you for supporting @airandstyle! https://t.co/UqqTqwwOb5" +03/22/2018,Sports_celeb,@shaunwhite,RT @airandstyle: TODAY tune in to @NBCSN at 11am PST to relive both skate and snow competitions at #AirandStyle during our one hour special… +03/21/2018,Sports_celeb,@shaunwhite,"It’s nice to get time at home after such an amazing winter. Looking forward to next season, but until then i’m exci… https://t.co/wmDrrlCZd6" +03/16/2018,Sports_celeb,@shaunwhite,Thanks for hanging with me at @airandstyle @MaiaShibutani & @AlexShibutani ! So cool to meet you guys. https://t.co/WLWkCIuixx +03/12/2018,Sports_celeb,@shaunwhite,Backstage with legend @jonbonjovi for @iheartradio awards! Blaze of Glory🤘🏻 https://t.co/apfKJj8se4 +03/09/2018,Sports_celeb,@shaunwhite,Thanks for hanging at @airandstyle @RollingStone ! https://t.co/48wvU80uXw +03/07/2018,Sports_celeb,@shaunwhite,RT @airandstyle: Anyone still thinking about last weekend? We know we are. #AirAndStyle https://t.co/xko2LmCU8V +03/05/2018,Sports_celeb,@shaunwhite,this is awesome!! @DylanTateA https://t.co/dK03gW9v5B +03/04/2018,Sports_celeb,@shaunwhite,"RT @airandstyle: Day 2 - We're coming in BIG! Don't miss out on today's action-packed lineup with @gucci1017, @wearephoenix, @phantogram, @…" +02/17/2018,Sports_celeb,@shaunwhite,"These course designs are getting me so excited ! Can't wait to be back in LA for @airandstyle ! 😍✨ + +You guys comin… https://t.co/qqtD3iLewh" +02/15/2018,Sports_celeb,@shaunwhite,@MichaelPhelps You said it! Really enjoying this moment. Thanks for the love🙏🏼 +02/15/2018,Sports_celeb,@shaunwhite,RT @MichaelPhelps: Let’s go @shaunwhite !!! Way to go man!! Nothing like a good comeback right?? Redemption always feels great!! #usa #Olym… +02/14/2018,Sports_celeb,@shaunwhite,WE DID IT🇺🇸🥇 #OLYMPICS https://t.co/JQ4xhz4H9p +02/13/2018,Sports_celeb,@shaunwhite,Couldn’t be happier to qualify first today! Tomorrow is the moment I’ve been looking forward to for 4 years... Let’… https://t.co/1Ck2jZOZZF +02/13/2018,Sports_celeb,@shaunwhite,"RT @NBCOlympics: The night is young. Settle in and watch @shaunwhite drop in. #WinterOlympics #BestOfUS + +He's coming up live on @nbc and st…" +02/12/2018,Sports_celeb,@shaunwhite,"RT @NBCNews: Does Olympic snowboarder Shaun White have any fear? Here's what he told @GadiNBC in #PyeongChang. + +Watch more on ""Stay Tuned"":…" +02/12/2018,Sports_celeb,@shaunwhite,"RT @NBCOlympics: Tonight in primetime, @shaunwhite returns to halfpipe while @chloekimsnow goes for GOLD! #WinterOlympics https://t.co/85Dp…" +02/12/2018,Sports_celeb,@shaunwhite,Slope Semi Finals tomorrow! Let’s do this💪🏼 #Olympics https://t.co/vWqyG4mJpV +02/09/2018,Sports_celeb,@shaunwhite,"First day of practice ✔️ +Opening Ceremonies tonight! #Olympics https://t.co/uX8ATJz2bg" +02/09/2018,Sports_celeb,@shaunwhite,@KyRenee12 ⭐️💯 thank you Karter!! +02/07/2018,Sports_celeb,@shaunwhite,WOW... My fourth Olympics! #Honored 📷@TheTobyMiller https://t.co/2alPkcYrBp +02/06/2018,Sports_celeb,@shaunwhite,🤘🤘 https://t.co/e7hX7on870 +02/06/2018,Sports_celeb,@shaunwhite,En Route to PyeongChang🇰🇷 https://t.co/7lsO8QOG8n +02/04/2018,Sports_celeb,@shaunwhite,"South Korea, here we come! #PyeongChang2018 #Olympics https://t.co/PpjV5aC3se" +01/31/2018,Sports_celeb,@shaunwhite,Preparing for South Korea and looking back at how I got here... check out the new episode of #SnowPack on… https://t.co/KeFjwd0eBY +01/27/2018,Sports_celeb,@shaunwhite,Excited to announce my new mobile game @DownhillDash is available now on the @AppStore & @GooglePlay !!… https://t.co/06cw4RNRGi +01/27/2018,Sports_celeb,@shaunwhite,RT @RobbReport: #EXCLUSIVE: @ShaunWhite gets real about his impeccable sense of style. Find out how the pro snowboarder is hitting his fash… +01/25/2018,Sports_celeb,@shaunwhite,"Can't wait to hear ""Off Top"" from these videos live @lophiile 🙌" +01/25/2018,Sports_celeb,@shaunwhite,"See you Sunday, March 4 👀✨ @airandstyle @wearephoenix @gucci1017 @Griz @Phantogram @Tinashe @realwashedout… https://t.co/5F4YhNB87L" +01/25/2018,Sports_celeb,@shaunwhite,"See you Saturday, March 3 🕺⚡️ @airandstyle @Zedd @CASHMERECAT @cutcopy @BIGBABYDRAM @mura_masa_ @AlejandroChal… https://t.co/QFlYxT2ZYT" +01/25/2018,Sports_celeb,@shaunwhite,"RT @RachelAxon: In the four years since his fourth-place finish in Sochi, @shaunwhite has gained a balance and perspective that has rekindl…" +01/25/2018,Sports_celeb,@shaunwhite,🙌🙌🙌 https://t.co/PCeFuYSxou +01/25/2018,Sports_celeb,@shaunwhite,"RT @XGames: Our World of #XGames BEING series features @ShaunWhite! + +The show airs TODAY, Jan. 20 at 2 pm ET / 11 am PT on ABC. https://t.c…" +01/22/2018,Sports_celeb,@shaunwhite,"RT @olympicchannel: .@shaunwhite is back. 🏂 + +Discover where he's been and what's driven his inspiration. 💪 + +Only on #LegendsLiveOn ▶️ https…" +01/18/2018,Sports_celeb,@shaunwhite,After my fall in October I was eager to get back out and ride. Check out my trip to Austria in Ep. 3 of #SnowPack o… https://t.co/Oph67ea8z7 +01/17/2018,Sports_celeb,@shaunwhite,"I️ am feeling stronger, focused, and more determined than ever! @beatsbydre #AboveTheNoise #Olympics https://t.co/topfOZbatl" +01/15/2018,Sports_celeb,@shaunwhite,Catch me on #HenryDanger tonight at 7p/6c on @Nickelodeon! https://t.co/5pvBVC0UIe +01/15/2018,Sports_celeb,@shaunwhite,When u photo bomb the Japanese snowboard team .... https://t.co/Dc7hEPKGlH +01/14/2018,Sports_celeb,@shaunwhite,We’re going to Korea!!!! #Olympics #Thankful https://t.co/71SnrQKUh7 +01/13/2018,Sports_celeb,@shaunwhite,Finals going down tomorrow🤘🏼 https://t.co/ox9OQzgYtq +01/13/2018,Sports_celeb,@shaunwhite,Overwhelmed by the amount of support from last week’s episode of #SnowPack about my fall in October 💙 Ep. 2 is up o… https://t.co/Cz6zTYtypB +01/12/2018,Sports_celeb,@shaunwhite,"Qualified in 1st place today 💪🏼! +Stoked for finals on Saturday. Tune into NBC sports to watch." +01/11/2018,Sports_celeb,@shaunwhite,Had such a blast you guys! 😂 https://t.co/4qlN18mpuI +01/10/2018,Sports_celeb,@shaunwhite,Went shopping in Aspen..... 🤠 https://t.co/2f6BVm6RSM +01/10/2018,Sports_celeb,@shaunwhite,Heading into the 3rd Olympic qualifier this coming weekend! Wish me luck. #Olympics +01/09/2018,Sports_celeb,@shaunwhite,"RT @RachelAxon: While @shaunwhite works on qualifying for his fourth Olympics, he’s getting ready for an LA Air + Style that will include s…" +01/09/2018,Sports_celeb,@shaunwhite,Had a chat with @WebMD about my health and training leading up to the Olympics https://t.co/NApprHBC8p https://t.co/HGmu3YJTN3 +01/09/2018,Sports_celeb,@shaunwhite,"RT @billboarddance: .@Zedd, @gucci1017, @BIGBABYDRAM, @Phantogram & others top 2018 lineup for @shaunwhite's 2018 Air + Style Festival http…" +01/09/2018,Sports_celeb,@shaunwhite,🎉🙌 @gucci1017 https://t.co/xfLl1HBIQb +01/08/2018,Sports_celeb,@shaunwhite,!!!!!!! 😱 @nbcolympics https://t.co/MFZnppfaOH +01/08/2018,Sports_celeb,@shaunwhite,"Looking back at this Saturday in @BigBearMtResort , getting stoked for @airandstyle March 3 + 4 in LA!! https://t.co/D9L5v9Saxo" +01/07/2018,Sports_celeb,@shaunwhite,Had a blast at the @airandstyle Qualifier yesterday up at @BigBearMtResort . Thank you to everyone that made it pos… https://t.co/DHHzCJDXM0 +01/06/2018,Sports_celeb,@shaunwhite,First time I’ve attempted this trick since it put me in the hospital in New Zealand. Words can’t describe how good… https://t.co/SKz4TQHKeO +01/05/2018,Sports_celeb,@shaunwhite,RT @dangerjr: Flying @AlaskaAir this month? Check out my profile on @shaunwhite in Alaska Airlines Beyond magazine. #Olympics https://t.co/… +01/05/2018,Sports_celeb,@shaunwhite,Our @airandstyle qualifier comp is tomorrow at @BigBearMtResort 🎉Registration + Practice at 10am / Qualifiers at 12… https://t.co/2Xbrspj3Ql +01/05/2018,Sports_celeb,@shaunwhite,RT @LAmag: Get your snowboarding fix with @shaunwhite this weekend. https://t.co/gGRWMDTgRN +01/04/2018,Sports_celeb,@shaunwhite,"In Oct of 2017 I took a bad fall. It was tough, but it brought me into the new year feeling strong, focused, and de… https://t.co/41LX9hvGjD" +12/19/2017,Sports_celeb,@shaunwhite,Had a great time doing the Dew! Wish we had some better weather on quals day but still had a blast. 📷: @markclavin https://t.co/R7wtb8HWNK +12/14/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Our 2018 A+S LA lineup playlist is here. 🎉🎧https://t.co/lpQcbTIPMz #NowPlaying #AirandStyle #LosAngeles +12/11/2017,Sports_celeb,@shaunwhite,"RT @NBCOlympics: .@shaunwhite's final run from today. 😮😮😮🔥🔥🔥 + +Get ready! Sign up for NBC Olympics newsletters here: https://t.co/4LF2c6A2RL…" +12/11/2017,Sports_celeb,@shaunwhite,Getting ready for another @DewTour #dewtour https://t.co/YGjLTgoeS4 +12/09/2017,Sports_celeb,@shaunwhite,"First contest of the year went great! +Full video👉🏻 https://t.co/oYeDRH5Dri https://t.co/pvs3Z5bXgN" +12/09/2017,Sports_celeb,@shaunwhite,RT @usskiteam: The @Toyota U.S. Grand Prix snowboard halfpipe finals are going off TODAY at @CopperMtn. Watch 'em at 4pm ET on @nbc. 🇺🇸🇺🇸🇺🇸… +12/09/2017,Sports_celeb,@shaunwhite,First Olympic qualifier going down now! Tune in on https://t.co/IzqwdgYuHw 💪🏼 https://t.co/fXtZ00p4XM +12/08/2017,Sports_celeb,@shaunwhite,"RT @usskiteam: And the men's halfpipe qualifier results are unreal. Out of the 10 finals spots, SEVEN U.S. men qualified. 💪 + +@shaunwhite…" +12/07/2017,Sports_celeb,@shaunwhite,Getting ready for the first competition of the season - let’s do this! @CopperMtn https://t.co/jY4AnQ285n +12/05/2017,Sports_celeb,@shaunwhite,#BlessUp 🙏👆 https://t.co/wguyhAySkK https://t.co/t1ERioe2Bb +12/05/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Stoked for our first ever Streetstyle snowboard competition. The world's best urban shreds will turn up the volume on a sn… +12/04/2017,Sports_celeb,@shaunwhite,RT @airandstyle: NEW for 2018! Excited to announce that A+S will be serving up BOTH snowboarding AND skateboarding at the Los Angeles event… +12/01/2017,Sports_celeb,@shaunwhite,"Thanks for having me, @RobbReport !! https://t.co/vK9VVEWt8X" +11/30/2017,Sports_celeb,@shaunwhite,Powder Day In Austria! https://t.co/dAFEM2YA8u +11/28/2017,Sports_celeb,@shaunwhite,It’s here!!!!!! Tix: https://t.co/sFkvY548qv https://t.co/LcUzt9s40c +11/26/2017,Sports_celeb,@shaunwhite,Doing some fun things on instagram!https://t.co/oYeDRH5Dri https://t.co/YQexyYthTU +11/26/2017,Sports_celeb,@shaunwhite,Congrats to @markmcmorris and Anna Gasser for taking 1st place at @airandstyle Beijing !!! https://t.co/IFPaNkIwDi +11/25/2017,Sports_celeb,@shaunwhite,#thankful 🙌🏽 https://t.co/6ie0ObWu1w +11/16/2017,Sports_celeb,@shaunwhite,"#TBT What.a.view! +📸 Gabe L'Heureux https://t.co/tBfq99StxA" +11/15/2017,Sports_celeb,@shaunwhite,"Gliding thru the week... +📸 Gabe L'Heureux https://t.co/VDsOw2ka6W" +11/09/2017,Sports_celeb,@shaunwhite,#MammothsOpen stoked to get back up there @mammothmountain !! photo: Cameron Strand https://t.co/HqSER1WDIW +11/09/2017,Sports_celeb,@shaunwhite,#TBT to the @burtonsnowboard US Open 📷 Gabe L'Heureux https://t.co/KAwQQNGaZ2 +11/08/2017,Sports_celeb,@shaunwhite,Neighborhood watch.. 😂 #leroythegoodboy https://t.co/UkW9yJZZ5D https://t.co/5DhfJLOLbw +11/07/2017,Sports_celeb,@shaunwhite,our final episode of Turning Point is up on @go90 and it’s all about @airandstyle !! https://t.co/eB4mOvyOUk https://t.co/BiEs2F91al +11/03/2017,Sports_celeb,@shaunwhite,thank you to everyone for the support and well wishes ❤️ @TODAYshow @NBCOlympics @thelinehotel https://t.co/ewnspSgWqk +11/03/2017,Sports_celeb,@shaunwhite,Happy Friday! Tickets are now on sale for @airandstyle LA! #airandstyle #losangeles https://t.co/5rPIoPaPm4 +11/02/2017,Sports_celeb,@shaunwhite,RT @airandstyle: General tickets and Layaway plans go on sale tomorrow Nov. 3rd at 10AM PST (https://t.co/MuhmaRIFBb). Loyalty Presale Fam… +11/01/2017,Sports_celeb,@shaunwhite,Big things in 2018! Can't wait @airandstyle @wearephoenix @Zedd @griz @Phantogram #airandstyle #losangeles https://t.co/98WsxvF5c3 +11/01/2017,Sports_celeb,@shaunwhite,@TeamUSA 💙😏 +11/01/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: We are 100 days out from the #WinterOlympics! https://t.co/DMo6mf4k42 +11/01/2017,Sports_celeb,@shaunwhite,Wish i could've been there - see you guys soon! #100DaysOut https://t.co/ewnspSgWqk +11/01/2017,Sports_celeb,@shaunwhite,RT @airandstyle: We are VERY excited to announce we are taking this party to the southern hemisphere!! Air + Style Sydney will be taking pl… +11/01/2017,Sports_celeb,@shaunwhite,"So happy to announce that August 3-5, 2018 we'll be hosting Air + Style Sydney 🇦🇺! More info at https://t.co/pvYBmQNJFV #airandstylesydney" +10/31/2017,Sports_celeb,@shaunwhite,💙 https://t.co/HyRUBRYj6D +10/31/2017,Sports_celeb,@shaunwhite,"so proud of the last 3 years, can’t wait for you guys to see what we’ve got for @airandstyle 2018! https://t.co/5cU1WIxEZ3" +10/27/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Coming soon... https://t.co/ClMGGN5n9U +10/19/2017,Sports_celeb,@shaunwhite,#tbt air + style LA 2017 😍 https://t.co/b9xxDOczQm +10/19/2017,Sports_celeb,@shaunwhite,👀 new episode of Turning Point up on @go90 https://t.co/kbdllA7g3Q +10/16/2017,Sports_celeb,@shaunwhite,that was some coooooold water 💦❄️ https://t.co/dxeTsQBDhk +10/11/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: Catch “Legends Live On” featuring @shaunwhite on @olympicchannel: Home of Team USA at 5pm ET. https://t.co/wIFNKYzvAV +10/10/2017,Sports_celeb,@shaunwhite,Been working on some fun stuff... 😏 https://t.co/4ILfOTV8Ix +10/10/2017,Sports_celeb,@shaunwhite,back in new zealand 🌲🕴🏻🌲 https://t.co/gGNlhRcHc1 +10/06/2017,Sports_celeb,@shaunwhite,thanks for hangin' today @MensHealthMag https://t.co/GtHjXJ4QL3 +10/04/2017,Sports_celeb,@shaunwhite,goooooooood times https://t.co/NIZKxzPw4u +10/02/2017,Sports_celeb,@shaunwhite,RT @CityOfLasVegas: How to help and find loved ones. Please share #PrayforLasVegas https://t.co/v0xaV3SAIm +10/02/2017,Sports_celeb,@shaunwhite,"RT @airandstyle: The goal of a music festival is to bring people from all backgrounds together in order to create a place of wonder, joy, a…" +09/26/2017,Sports_celeb,@shaunwhite,hey what's up hello 😎 https://t.co/PgyBxGEFW0 +09/22/2017,Sports_celeb,@shaunwhite,happy friday! #SharetheLaughter 😜 https://t.co/09avL2X2jy +09/22/2017,Sports_celeb,@shaunwhite,RT @airandstyle: There was nothing else like The @Berrics when it was formed in 2007... Catch this new episode of Turning Point on @go90 ht… +09/21/2017,Sports_celeb,@shaunwhite,👀 @airandstyle https://t.co/OFH9Joubyt +09/13/2017,Sports_celeb,@shaunwhite,woooo! #LA2028 https://t.co/tiAlgBURnI +09/11/2017,Sports_celeb,@shaunwhite,happy to be back in LA healing up! @thelinehotel https://t.co/ewIpdU5Lvh +09/09/2017,Sports_celeb,@shaunwhite,those affected by #HurricaneHarvey and #HurricaneIrma are in my thoughts. please stay strong and safe! ❤️🙏 +09/08/2017,Sports_celeb,@shaunwhite,RT @airandstyle: last week our staff joined @shaunwhite and @TreePeople_org for some volunteering. get outside this weekend and enjoy some… +09/05/2017,Sports_celeb,@shaunwhite,"Life's going to knock you down.. get up, learn from your mistakes, and you'll be better for it!… https://t.co/i9If6PyJcC" +09/05/2017,Sports_celeb,@shaunwhite,wanted to give a big THANK YOU for all the birthday wishes 🙂❤️ hope everyone had an awesome long weekend! +08/31/2017,Sports_celeb,@shaunwhite,big thanks to @TreePeople_org and @clifgreennotes for having the @airandstyle staff and me as volunteers today! got… https://t.co/w2C0VndyXD +08/29/2017,Sports_celeb,@shaunwhite,did a little 20 questions with @go90 at #OutsideLands this year... https://t.co/eDCzjwHK7M +08/28/2017,Sports_celeb,@shaunwhite,INSANE. 👏 @JaredLeto https://t.co/0DTegWHS1B +08/23/2017,Sports_celeb,@shaunwhite,😱🙌🤟 https://t.co/BdvmVmnxZH +08/22/2017,Sports_celeb,@shaunwhite,New episode of Turning Point today where we talk about my run at the 2012 Winter X-Games! Check it out on @go90… https://t.co/YI6Sz4NXV3 +08/21/2017,Sports_celeb,@shaunwhite,so sick ! https://t.co/fUrSbeHEVP +08/17/2017,Sports_celeb,@shaunwhite,🙌 good to see you back at it @markmcmorris https://t.co/4Z7dA92XW8 +08/16/2017,Sports_celeb,@shaunwhite,RT @HALFPOPS: Happy National Tell a Joke Day! Give us your best joke in the comments and we'll pick our favorites to get a free bag of Half… +08/16/2017,Sports_celeb,@shaunwhite,gotta love the 'bu https://t.co/NogB2cPyMv +08/10/2017,Sports_celeb,@shaunwhite,loved having you guys at @airandstyle 😂 Can't wait for episode 2 tonite #WWDD https://t.co/vFNvjE4p0N +08/08/2017,Sports_celeb,@shaunwhite,@Yourgirlken you too! 😎 +08/08/2017,Sports_celeb,@shaunwhite,😱😱😱 @NBCOlympics https://t.co/GrBlJdraP0 +08/07/2017,Sports_celeb,@shaunwhite,@ScrippsHealth thanks for having us and thank you Dr. Fronek for everything! +07/27/2017,Sports_celeb,@shaunwhite,thanks for hangin' @WSJLife 😎 https://t.co/LJoqIEAMmM +07/25/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: SOON. #winterolympics https://t.co/dxiC9GpfnG +07/20/2017,Sports_celeb,@shaunwhite,RT @airandstyle: We got some big plans… #AdventureInStyle #AirAndStyle https://t.co/wkb5C0SJ8g +07/18/2017,Sports_celeb,@shaunwhite,thank you so much @SInow for including me in the #Fashionable50 !! 🎉😎 https://t.co/7V16jXMKYi +07/15/2017,Sports_celeb,@shaunwhite,@burtonsnowboard ❤️❤️🏔️🏔️ +07/15/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: Olympic Channel: Home of Team USA is LIVE. Find Olympic Channel on your provider by going here: https://t.co/AzMVkDZcy0 ht… +07/14/2017,Sports_celeb,@shaunwhite,"RT @TeamUSA: Can’t get enough of watching Team USA athletes on and off the field of play? +Have we got a network for you! 😉 +➡️ https://t.co…" +07/13/2017,Sports_celeb,@shaunwhite,@simonpagenaud @IndyCar 🏎️🏎️ good to see you @simonpagenaud ! +07/10/2017,Sports_celeb,@shaunwhite,🙌🙌 https://t.co/XdPjbG00gR +06/29/2017,Sports_celeb,@shaunwhite,RT @EW: Breaking Big: Raucous Kentucky rockers Dan Luke & the Raid make good on their musical pedigree https://t.co/hxz4MkIn4R +06/10/2017,Sports_celeb,@shaunwhite,"RT @HALFPOPS: Unlike your brain by Friday afternoon, Halfpops are never fried. Here's to kicking off the weekend a little early! #TGIF http…" +06/03/2017,Sports_celeb,@shaunwhite,Bags https://t.co/3K4Oe6BK42 +06/02/2017,Sports_celeb,@shaunwhite,@LeeGWeinstein Awesome 🙌 +06/02/2017,Sports_celeb,@shaunwhite,VIEWS https://t.co/FARO4i7Fb6 +06/02/2017,Sports_celeb,@shaunwhite,ARCHIVES #tbt https://t.co/kgMzGcWAPD +06/01/2017,Sports_celeb,@shaunwhite,RT @airandstyle: 😍😍😍 @airandstyleibk https://t.co/GUGkc8VRDL +05/30/2017,Sports_celeb,@shaunwhite,Back at it with @TheTobyMiller @MammothMountain https://t.co/4PVFwgFmE9 +05/29/2017,Sports_celeb,@shaunwhite,@threatne 🙏 +05/29/2017,Sports_celeb,@shaunwhite,🇺🇸 Thank you to all who have served to protect our freedom... #MemorialDay https://t.co/cZQL6dC2My +05/28/2017,Sports_celeb,@shaunwhite,Chairlifts. @steveaoki and Jake Burton https://t.co/LPFRcDdTjs +05/27/2017,Sports_celeb,@shaunwhite,"RT @HALFPOPS: We’re busting into the weekend with a brand-new dance move. Ladies and gentlemen, meet the Black Truffle (& Sea Salt) Shuffle…" +05/25/2017,Sports_celeb,@shaunwhite,My Point of View #tbt https://t.co/bVlv8WuTn2 +05/25/2017,Sports_celeb,@shaunwhite,With Jake Burton @burtonsnowboard https://t.co/esNcdcN41b +05/23/2017,Sports_celeb,@shaunwhite,Heartbreaking. My prayers go out to the victims and their families. #manchester +05/23/2017,Sports_celeb,@shaunwhite,Damn! Fred Plocque-Santos... @yeahleyeah on IG https://t.co/9LBc5PylgU +05/23/2017,Sports_celeb,@shaunwhite,#Mondays https://t.co/i6yL7h6QDs +05/22/2017,Sports_celeb,@shaunwhite,Amazing night with @Phantogram in support of the @LynchFoundation https://t.co/1CbuVmG1K0 +05/21/2017,Sports_celeb,@shaunwhite,RT @airandstyle: .@marcuskleveland kicking off the tour right in Beijing https://t.co/wly8mM1Ctj +05/20/2017,Sports_celeb,@shaunwhite,Thanks @THRIVEmkt 🙌 https://t.co/5C29t9Gokj +05/20/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Top skate photographer @atibaphoto has an absolute obsession with all things music. Check it out now on @go90 https://t.co… +06/29/2018,Sports_celeb,@DjokerNole,@LaverCup 💪💪 +06/28/2018,Sports_celeb,@DjokerNole,Back to @Wimbledon business 🌱🎾 #wimbledon https://t.co/jVlMSbtgUZ +06/27/2018,Sports_celeb,@DjokerNole,@novakfoundation @JelenaRisticNDF @WebitCongress 👏👏👏 +06/26/2018,Sports_celeb,@DjokerNole,It was a humbling feeling to celebrate 800 with Stephen Farrow and everyone at @QueensTennis. A career milestone I… https://t.co/AjaKeP6j4A +06/24/2018,Sports_celeb,@DjokerNole,"@QueensTennis, it was a pleasure being back and congratulations to @cilic_marin. A tough loss for me today, but the… https://t.co/n8oLyZZART" +06/23/2018,Sports_celeb,@DjokerNole,800 and counting 🙏 https://t.co/m9XokbYbqd +06/21/2018,Sports_celeb,@DjokerNole,#WorldCup2018 fever got me like... https://t.co/FuUObTbHGe +06/20/2018,Sports_celeb,@DjokerNole,I forgot how much I missed the smell of freshly cut grass… 😉💪 #airborne #fevertreechampionships @QueensTennis https://t.co/TP1gR7ZtIC +06/20/2018,Sports_celeb,@DjokerNole,@QueensTennis @WeAreTennis 💪💪💪 +06/19/2018,Sports_celeb,@DjokerNole,"RT @ATPWorldTour: Did you know that the @novakfoundation supports a fellowship @Harvard? 🤔 + +One '18-'19 Djokovic Science & Innovation Fello…" +06/17/2018,Sports_celeb,@DjokerNole,RT @JelenaRisticNDF: Join my @novakfoundation birthday fundraiser and help us support the professional development of teachers in Serbia! E… +06/17/2018,Sports_celeb,@DjokerNole,https://t.co/k3lZof6sOT @JelenaRisticNDF +06/15/2018,Sports_celeb,@DjokerNole,"Back at Queens tournament, first time since 2010. Happy to be here. One of the most beautiful Centre courts in the… https://t.co/OBGodQbN8F" +06/12/2018,Sports_celeb,@DjokerNole,"Feels like a good time for grass season, let’s GOOO.. 🎾💪 #fevertreechampionships #queenstennis https://t.co/zZQnfn9MuA" +06/06/2018,Sports_celeb,@DjokerNole,"Congratulations to Marco on his strong performance. Thank you Paris, thank you @rolandgarros 🙏❤ https://t.co/LAVNSHzjN0" +06/01/2018,Sports_celeb,@DjokerNole,Post match celebration 😆 @daddy_yankee https://t.co/DQpWjMaZR5 +06/01/2018,Sports_celeb,@DjokerNole,"R4, see you Sunday 🤙 #RG18 https://t.co/C6VYtJO4FS" +06/01/2018,Sports_celeb,@DjokerNole,Running with #RG18 ball boys and girls before the stadium opened today. Very special tradition in my heart 😄🏃‍♀️🏃‍♂️ https://t.co/cz3lldVIKy +05/31/2018,Sports_celeb,@DjokerNole,Celebrating 85th Anniversary of @LACOSTE 🐊 #TeamLacoste #Lacoste85th https://t.co/0RXzHCA6H4 +05/30/2018,Sports_celeb,@DjokerNole,@rolandgarros Let’s gooooo 💪 +05/29/2018,Sports_celeb,@DjokerNole,My real job. On rainy days. Shout out to all the grounds people who are working hard to make sure we have the best… https://t.co/vB7UI2bQ0r +05/27/2018,Sports_celeb,@DjokerNole,The world on your wrist. #SeikoAstron #SeikoFam @seikowatches https://t.co/hG3Viumk2F +05/26/2018,Sports_celeb,@DjokerNole,"Future champion!! Welcome back to your strong and fearless mom, @serenawilliams 💪👏👊 https://t.co/8FgygpwAWE" +05/26/2018,Sports_celeb,@DjokerNole,#Rafole or #Nolafa? Haha @RafaelNadal https://t.co/WPYHd5uyjz +05/26/2018,Sports_celeb,@DjokerNole,Serbian fans in Paris. Idemooo 🇷🇸 https://t.co/5Foykbr5nI +05/26/2018,Sports_celeb,@DjokerNole,@rolandgarros I’m always watching 👀♻️ +05/26/2018,Sports_celeb,@DjokerNole,These kids were too good 😂😂😂 #RG18 https://t.co/14dXvZmTaz +05/26/2018,Sports_celeb,@DjokerNole,I have a passion for tennis and I want to pass this on to aspiring athletes all over the world. #IMoveMe… https://t.co/HFhsk9WXsa +05/26/2018,Sports_celeb,@DjokerNole,The #RolandGarros version of my #GELResolutionNovak is available now - providing ultimate stability on court.… https://t.co/Ubn56CnoIu +05/26/2018,Sports_celeb,@DjokerNole,See you there today 👍😁 #RG18 https://t.co/rrAmgDkGqj +05/26/2018,Sports_celeb,@DjokerNole,"@usopen @BasiaID 🙏🙌 So grateful for the well wishes - thank you, US Open!" +05/26/2018,Sports_celeb,@DjokerNole,"@Olympics @BasiaID @OKSrbije Great memories. Thank you, guys!" +05/26/2018,Sports_celeb,@DjokerNole,"@rolandgarros @BasiaID Merci, RG! There was a lot of gluten-free 🍰🤙" +05/26/2018,Sports_celeb,@DjokerNole,"@gugakuerten @BasiaID Thank you, Guga!!" +05/26/2018,Sports_celeb,@DjokerNole,"@LACOSTE Thank you, @LACOSTE! 🐊🐊🐊" +05/25/2018,Sports_celeb,@DjokerNole,👍👏🎉 @novakfoundation #BelieveinTheirDreams https://t.co/BEaprIfcTv +05/25/2018,Sports_celeb,@DjokerNole,We reached our $31k goal today! 🙌 I want to share my love and appreciation for everyone’s support and trust in the… https://t.co/PMOIihuG3p +05/25/2018,Sports_celeb,@DjokerNole,Live on @facebook! Come say hi 👍 +05/25/2018,Sports_celeb,@DjokerNole,The most rewarding part of my day.. #bestfriendswithnature #familytime #paris https://t.co/mgI2Eb48Gw +05/25/2018,Sports_celeb,@DjokerNole,Humble beginnings. #ASICSTennis #IMoveMe @ASICSTennis #RG18 https://t.co/mmrze8xu6q +05/24/2018,Sports_celeb,@DjokerNole,Radujem se što je knjiga od Karol dostupna u mojoj zemlji na srpskom jeziku 👍 https://t.co/YUGx6uYtst +05/24/2018,Sports_celeb,@DjokerNole,#TeamDjokovic practice 🤟 #RG18 @rolandgarros https://t.co/3iOsF0OZHX +05/23/2018,Sports_celeb,@DjokerNole,Beautiful day on Champs-Élysées with my HEAD family. Proud to continue working with Johan. Thanks to their team for… https://t.co/GVXLLlrgRo +05/22/2018,Sports_celeb,@DjokerNole,My birthday present to myself. Uphill sprints. @rolandgarros see you soon 💪 #RG18 #training #birthday #fun https://t.co/w3eAj5eWJI +05/22/2018,Sports_celeb,@DjokerNole,Today is the big 3-1! This year I’m dedicating my birthday to the @novakfoundation and #earlychildhood education. H… https://t.co/D46JTBOHyS +05/19/2018,Sports_celeb,@DjokerNole,"Roma, I‘ll keep coming back every year to this special place. Your energy will carry me to the next challenge. Than… https://t.co/0WfPo8ndqx" +05/19/2018,Sports_celeb,@DjokerNole,Plenty of progress and passion to take with me to RG. Thanks everyone for your continued support. See you back on c… https://t.co/rx1ZyUz3Hc +05/19/2018,Sports_celeb,@DjokerNole,This guy! Srdjan Novakovic was my opponent in my first match ever at Belgrade Tennis Club in 1995. So nice to recon… https://t.co/gnm1mRSdEP +05/18/2018,Sports_celeb,@DjokerNole,FORZAAA #semifinals #idemo #grazie #ibi18 @InteBNLdItalia https://t.co/YGw2jT1pzO +05/18/2018,Sports_celeb,@DjokerNole,"RT @head_tennis: Grande @DjokerNole 💪 semis, here we come! #ibi18 https://t.co/HcMd9n5Jwr" +05/18/2018,Sports_celeb,@DjokerNole,🏃‍♂️ https://t.co/FjmjFTYYlE +05/18/2018,Sports_celeb,@DjokerNole,"RT @LACOSTE: Greatness awaits. +Every inch of the court under control to reach his first semi-final of 2018. +#TeamLacoste #BeautifulTennis…" +05/18/2018,Sports_celeb,@DjokerNole,#NoleFam!!!! Incredibili! Grazie a tutti 🙏😆💪#ibi18 @InteBNLdItalia https://t.co/AQLlKPKF69 +05/17/2018,Sports_celeb,@DjokerNole,#KidsDay in Rome was 🔥... https://t.co/0td7NxmJfm +05/16/2018,Sports_celeb,@DjokerNole,❤️❤️❤️ https://t.co/9fAh7gSCe9 +05/16/2018,Sports_celeb,@DjokerNole,"💪💪 Roma, ti amo ❤️ #ibi18 https://t.co/hxurGaUD0h" +05/16/2018,Sports_celeb,@DjokerNole,Thank you for the continued love and support #NoleFam. So grateful to play on clay here at @internazionalibnlditali… https://t.co/DOVHf7pUEi +05/11/2018,Sports_celeb,@DjokerNole,Game face 🇮🇹🏋️‍♂️ #ibi18 @InteBNLdItalia https://t.co/KXbmbnkJoE +05/11/2018,Sports_celeb,@DjokerNole,Back home making new friends 😆👍👍 #NoleFam https://t.co/dbNkhKbSID +05/09/2018,Sports_celeb,@DjokerNole,@ASICSTennis @MutuaMadridOpen @GettySport Let’s go! +05/09/2018,Sports_celeb,@DjokerNole,My friends that make it all happen! Thanks for letting me get a pic 😁✌️@ATPWorldTour @MutuaMadridOpen #MMOPEN https://t.co/y4ZYeCss8f +05/08/2018,Sports_celeb,@DjokerNole,"You’re welcome, man! Thanks for the support 🤟 #NoleFam https://t.co/cf5bV7AiMN" +05/08/2018,Sports_celeb,@DjokerNole,@fabsantoro72 @TheRealPatCash @ATPWorldTour Haha challenge accepted bro! +05/08/2018,Sports_celeb,@DjokerNole,@MilosTeodosic4 #Teo4 stižem. Da ponesem reket? 😂 za one palačinke zbog kojih smo svi počeli da se bavimo sportom! 😃👌 +05/08/2018,Sports_celeb,@DjokerNole,".@MilosTeodosic4, @LeaderOfHorde, @JokicNikola15 what do you guys think? #TeamDjokovic is ready for some street bas… https://t.co/Os7ZITHH5z" +05/07/2018,Sports_celeb,@DjokerNole,💪💪 #MMOPEN https://t.co/ycIYASmyJU +05/07/2018,Sports_celeb,@DjokerNole,"Seguro es el más especial. Gracias, Manolo 🙏 https://t.co/MiP7kr4Q0F" +05/05/2018,Sports_celeb,@DjokerNole,"Good to be here, @MutuaMadridOpen. Let’s play some tennis 🤙🎾 #MMOPEN https://t.co/qfxMqSkliq" +05/05/2018,Sports_celeb,@DjokerNole,Sometimes you gotta use your feet 🤷‍♂️💃⚽️ #MMOPEN https://t.co/BvNfKO4tft +05/04/2018,Sports_celeb,@DjokerNole,Come on @andy_murray. We can’t let them speak about our matches as “a long time ago” 😂🤣🎥 May the Force be with you… https://t.co/cKgNuhE4pU +05/03/2018,Sports_celeb,@DjokerNole,A little time at home before Madrid 😁 #familyreunion https://t.co/s7QKY5I2kg +05/03/2018,Sports_celeb,@DjokerNole,Uphill biking 🚵‍♂️... https://t.co/abWLzUF4O0 +05/02/2018,Sports_celeb,@DjokerNole,Taking these down the line 🔝➖✅☄️ https://t.co/CRPrQ5I37z +05/01/2018,Sports_celeb,@DjokerNole,Stretch partner (yesterday) @MihailoTopic 👍 https://t.co/IIbZMqWDgb +04/29/2018,Sports_celeb,@DjokerNole,Today's training challenge with Marko was... https://t.co/wvvmWgS2u2 +04/27/2018,Sports_celeb,@DjokerNole,April u Beogradu. Lep uvek a najlepši na proleće. Zahvalan sam što provodim kvalitetno vreme sa braćom. / Spring ma… https://t.co/zj0bH92lwR +04/25/2018,Sports_celeb,@DjokerNole,Happy 5th anniversary #NoleFam 🙌❤️ Thank you for the unwavering support year round.. sending lots of love and well… https://t.co/7jzHjoMmbz +04/22/2018,Sports_celeb,@DjokerNole,#EarthDay reminds me that some of my most favorite memories are... https://t.co/ZW30lNzGC5 +04/21/2018,Sports_celeb,@DjokerNole,Today’s practice squad 👌☄️ #montecarlocountryclub #atp #bcnopenbs https://t.co/0JQEbsPycM +04/20/2018,Sports_celeb,@DjokerNole,🙋‍♂️🎾💪 It’s been a while Barcelona... see you soon! #bcnopenbs https://t.co/ha1enL8oiX +04/18/2018,Sports_celeb,@DjokerNole,Keeping the energy high and my mind in the game 💪🎾 We can do this #TeamDjokovic https://t.co/PwImacl5pc +04/16/2018,Sports_celeb,@DjokerNole,Feeling good 🙏💪 Thank you for the love #NoleFam https://t.co/BKdOt1Nxsn +04/15/2018,Sports_celeb,@DjokerNole,Great day yesterday at the #PrinceAlbertFoundation charity exhibition 👍🎾😎 Tomorrow it’s our turn to play #NoleFam.… https://t.co/Krmbu6uvbi +04/12/2018,Sports_celeb,@DjokerNole,"I wanted to share something simple I always try to remember. No matter how good you are at something, there is alwa… https://t.co/bPsk27dLrs" +04/09/2018,Sports_celeb,@DjokerNole,Tough business today 😂🏋‍♂ #whenthegoinggetstough #trainhard #mondaymotivation #ithappens https://t.co/QbFagaDaQg +04/08/2018,Sports_celeb,@DjokerNole,"Hristos Vaskrse, srećan Uskrs svima koji ga slave! Želim vam radost i toplinu familijarne atmosfere. Kada je cela p… https://t.co/hR8vnGjHxw" +04/07/2018,Sports_celeb,@DjokerNole,Back on clay! Let’s get dirty! 😂😜 https://t.co/nybinxIDzJ +04/06/2018,Sports_celeb,@DjokerNole,"Happy International Day of Sport, guys! 💪🤸‍♀️🎾 Don’t you think sport has the incredible power to change our 🌎? I’m… https://t.co/MGkqaSUWHn" +04/04/2018,Sports_celeb,@DjokerNole,https://t.co/Yxgw4Xky8m +04/01/2018,Sports_celeb,@DjokerNole,Happy Easter weekend everybody! Hope you are enjoying with your loved ones ❤ https://t.co/T4koq20xmm +03/22/2018,Sports_celeb,@DjokerNole,Happy to meet nice guys and great football players from Croatian National team. Srećno momci @HNS_CFF https://t.co/vXp7JQIwbg +03/20/2018,Sports_celeb,@DjokerNole,"Great seeing you today, my friend @FerVerdasco 🤙🏼 @MiamiOpen https://t.co/z1lYlg9C8S" +03/20/2018,Sports_celeb,@DjokerNole,The world should have more places like @MiChiMu. I took Stefan with me today and had a wonderful chance to read Pet… https://t.co/hd3IOBoiIh +03/18/2018,Sports_celeb,@DjokerNole,Miami! Good to be back 🎾👌 https://t.co/Bfz0cGpAy6 +03/11/2018,Sports_celeb,@DjokerNole,IDEMOOOOOO #BNPP018 #TeamDjokovic 👏 https://t.co/KfT2S1ez2Z +03/11/2018,Sports_celeb,@DjokerNole,Who else is ON FIRE this weekend? @D_Copperfield I know your trick and I have more up my sleeve. Coming to steal yo… https://t.co/iGmZ1R5AgX +03/11/2018,Sports_celeb,@DjokerNole,Your guy is BACK (and more flexible than ever). Tomorrow. Let’s get it 👊🎾 #NoleFam #TennisParadise #FullBloom https://t.co/wVDWueoZUH +03/08/2018,Sports_celeb,@DjokerNole,"Celebrating all of the wonderful women in my life today. Admiring their strength, persistance, passion, love, kindn… https://t.co/DuZi88ZoT2" +03/07/2018,Sports_celeb,@DjokerNole,What a humbling place to visit and recharge before practice ⛰☀️👌 #grandcanyon #indianwells https://t.co/RJtP1VQ7k4 +03/06/2018,Sports_celeb,@DjokerNole,Back in the office with @filipkrajinovic #TeamLacoste 🤙🐊🎾 https://t.co/MS9mKYfH3t +03/03/2018,Sports_celeb,@DjokerNole,Always nice talking to you @carole_bouchard. Glad I can make you laugh too 😂🎾 #djokeralways #livelaughlove https://t.co/8AtiGUKM71 +03/03/2018,Sports_celeb,@DjokerNole,Here you can support Carol’s work and read exclusive interview we did while I was stretching on the airport 🤣🤸‍♂🥁✈️ https://t.co/aUl6eLIATB +03/03/2018,Sports_celeb,@DjokerNole,Feels good to be outdoors in the sun and hitting the ball again. Day by day... #nevergiveup ☀️ https://t.co/ccIqyKTm8v +03/02/2018,Sports_celeb,@DjokerNole,"Vivaaaa Las Vegas, baby. Idemo🕺 https://t.co/QrGsHdHwTN" +03/01/2018,Sports_celeb,@DjokerNole,Making the most of every situation and space 😂✈️🚌 #stretching #travel https://t.co/cGVYdwGYXH +02/27/2018,Sports_celeb,@DjokerNole,Great to have a day on court with you guys! https://t.co/Fk65YNOl02 +02/27/2018,Sports_celeb,@DjokerNole,"WOW, snowed all day in #monaco yesterday ❄️😛#anythingispossible https://t.co/YgO7imT7I9" +02/17/2018,Sports_celeb,@DjokerNole,😂 @pierre_vaultier let’s make it happen. See you at RG! And congratulations on your Olympic medal(s)! https://t.co/m7HSoda6Vu +01/22/2018,Sports_celeb,@DjokerNole,That was an incredible performance #Chung! Keep up great work. You’ve got this! 👏 #AusOpen https://t.co/GjCwmnhXOd +01/22/2018,Sports_celeb,@DjokerNole,"At the end of the day, these are the moments that mean the most #DreamBig #AusOpen @Eurosport https://t.co/6QLy8uLdOi" +01/21/2018,Sports_celeb,@DjokerNole,And here’s my favorite part of my training session #DreamBig https://t.co/PMBt6I8zm9 +01/18/2018,Sports_celeb,@DjokerNole,Another hot day ☀️😵💦♨️. Good luck to everyone playing today! https://t.co/kxtlrPv5kF +01/18/2018,Sports_celeb,@DjokerNole,It's like he wrote... a hot day at the office. 😵 https://t.co/DH2S1wdq7h +01/17/2018,Sports_celeb,@DjokerNole,RT @ASICSTennis: Back with a bang! Novak Djokovic is up and running at the #AusOpen and looking sharp! Nice new shoes too 😉 #IMoveMe #AusOp… +01/16/2018,Sports_celeb,@DjokerNole,"Back after six months, it feels so great. And no better place to be than here in Australia 😁 #AusOpen (Photo credit… https://t.co/Q21zWZBwGd" +01/15/2018,Sports_celeb,@DjokerNole,Very happy to be back on the blue court and with the full support of a great coaching team. https://t.co/Vxio50sdAY +01/09/2018,Sports_celeb,@DjokerNole,Really looking forward to #TieBreakTens Melbourne Jan 10. Excited to try out this new fast paced format. It’s a gre… https://t.co/gWxPCrmtjZ +01/08/2018,Sports_celeb,@DjokerNole,RT @tiebreaktens: Just 4 days to go! We've got a few remaining tickets left. Don't miss out on the first #TBTens Melbourne. With players li… +01/07/2018,Sports_celeb,@DjokerNole,Finally back in the land down under. I feel ready! Idemo!! #AusOpen https://t.co/HFvpn3U5I1 +01/03/2018,Sports_celeb,@DjokerNole,An update here from my team: https://t.co/VJKakhY3bq +12/30/2017,Sports_celeb,@DjokerNole,Unfortunately the situation with the elbow has not changed for better since yesterday. I still feel the pain. There… https://t.co/FsbNV8Atez +12/29/2017,Sports_celeb,@DjokerNole,I am terribly disappointed that I am forced to withdraw from the Mubadala World Tennis Classic. Thank you all for y… https://t.co/nThfQalkft +12/25/2017,Sports_celeb,@DjokerNole,Merry Christmas 🤶 ❤️ 🎉😗 https://t.co/jUoPe7USS6 +12/24/2017,Sports_celeb,@DjokerNole,Great practice today with Thomas Fabbiano 👍👊😁 Idemoooo #NoleFam https://t.co/SsJcWKUHM9 +12/20/2017,Sports_celeb,@DjokerNole,Congratulations on your jersey retirement @kobebryant. One of my favorites. #Ko8e24 🏀 https://t.co/pxPp29GFlq +12/13/2017,Sports_celeb,@DjokerNole,A #czech sandwich 🥪 style practice with @tomasberdych and @stepec78.. 😂 https://t.co/5wktDFoXOm +12/07/2017,Sports_celeb,@DjokerNole,Can you beat the machine 🤖? We killed it playing this game meant for enhancing eye-hand coordination. #Zverev https://t.co/VhlQivXhkJ +12/02/2017,Sports_celeb,@DjokerNole,"Lots to be done, but we embrace it with lots of excitement 💪👌. Practice today with @andreagassi and @stepec78 https://t.co/skcyuZKXxT" +11/30/2017,Sports_celeb,@DjokerNole,We have a new official member of the #TeamDjokovic guys. #NoleFam please welcome Radek Stepanek to our team 👏 https://t.co/jQR46FQyvV +11/30/2017,Sports_celeb,@DjokerNole,Who wants to Instagram live 🤨? Join me there in 30 min everyone ☺️ +11/20/2017,Sports_celeb,@DjokerNole,"Our children. +Our future. +This #WorldChildrensDay, my @novakfoundation and I are joining @UNICEF to make children’s… https://t.co/kE8PEB6hoX" +11/20/2017,Sports_celeb,@DjokerNole,"For us, kids mean HOPE, a promise for a better tomorrow! We celebrate our children not just today, but #everyday… https://t.co/u8ktDfF1PK" +11/10/2017,Sports_celeb,@DjokerNole,Almost hit @jkcorden’s head! 😬 Here’s me doing 🎾 target practice on the #latelateshow https://t.co/vAPKeJNDK7 +11/08/2017,Sports_celeb,@DjokerNole,On the @latelateshow with @jkcorden tonight! Turn on your tv 📺 for some funny moments with these guys. 😆… https://t.co/0YQ15YvJLq +11/08/2017,Sports_celeb,@DjokerNole,RT @ScottiePippen: Ran into a tennis GOAT and a favorite of mine at lunch yesterday @DjokerNole https://t.co/voiAHPFjL2 +10/29/2017,Sports_celeb,@DjokerNole,Stopped by to say hello to the amazing @RolexPMasters crew! 👏🏼😁 Great to see u guys!! https://t.co/2yAjqF1lYL +10/24/2017,Sports_celeb,@DjokerNole,"China 🇨🇳, forever one of my fave places to play. See this video from @TennisTV: https://t.co/QHPHNJdic4" +10/17/2017,Sports_celeb,@DjokerNole,"Girafficus, good job for coming in the jeans to the gym 👌😂👏👍 https://t.co/3mhQsI88Iw" +10/03/2017,Sports_celeb,@DjokerNole,The people of the Caribbean need our help - watch this emotional #helphopehurricanes video and support the cause 🙏 https://t.co/afSYQArqS4 +10/02/2017,Sports_celeb,@DjokerNole,"Wow, we have come far on our #MeetNoleFam tour! 🌎👏❤️ Now for the final interview, we return to China 🇨🇳: https://t.co/q4tAoiaoV4" +09/27/2017,Sports_celeb,@DjokerNole,Taking a break in Paris to check out the #LacosteSS18 🐊🐊🐊 runway collection! https://t.co/7UOifKJTTW +09/21/2017,Sports_celeb,@DjokerNole,"I wish I was with these amazing kids on #FriendshipGames2017 right now! They're having so much fun! :) Great work,… https://t.co/5VfLev4s3B" +09/20/2017,Sports_celeb,@DjokerNole,"A living legend, an inspiration and a #sport father to us all, Dušan Duda Ivković! Hvala Ti! #ThankYouDuda 👏🏆 https://t.co/S95kiAYsYh" +09/13/2017,Sports_celeb,@DjokerNole,Idemoooo momci!! Forza fratelli di Serbia e d' Italia #TimSrbija🇷🇸 #EuroBasket2017 https://t.co/60vGyDbXAM +09/09/2017,Sports_celeb,@DjokerNole,I love this baby crocodelle!! Thank you @LACOSTE for supporting me and celebrating this new life with us! 🤗🐊👨‍👩‍👧‍👦🎊 https://t.co/EVGQ6ULUtJ +09/09/2017,Sports_celeb,@DjokerNole,"@UNICEF Thank you! We all should be their champions and role models, believing in their beautiful dreams 🤗" +09/09/2017,Sports_celeb,@DjokerNole,@head_tennis Thank you #HEADfamily 🙏🎉 +09/09/2017,Sports_celeb,@DjokerNole,@usopen @JelenaRisticNDF Thank you #USOpen She is lovely ❤️🙏 +09/09/2017,Sports_celeb,@DjokerNole,Thank you for all your messages & love for Tara 🙏  We love you all ❤️👨‍👩‍👧‍👦😍 #NoleFam https://t.co/MGgdUy2vUk +09/04/2017,Sports_celeb,@DjokerNole,Idemoooooo 🙏👏🏻 #EuroBasket2017 https://t.co/JXE1ydYbLA +09/04/2017,Sports_celeb,@DjokerNole,"Thanks for being an inspiration and make me who I am today. Even in more difficult times, I reflect & realize how l… https://t.co/cvwc1LJcLL" +08/30/2017,Sports_celeb,@DjokerNole,It is my favorite part of the month again! Time to #MeetNoleFam and learn more about @NoleSwedenFan ❤ https://t.co/DX0Lm44WOS +08/29/2017,Sports_celeb,@DjokerNole,I know you can! Just put a smile on your face 😁⛳️👐 #NovakChallenge https://t.co/7WZdvI8aVj +08/25/2017,Sports_celeb,@DjokerNole,"Love is such a powerful force and emotion. Having Jelena in my life, & her love, has made me a better man ❤️ So, wh… https://t.co/OZKWHYAMyu" +08/23/2017,Sports_celeb,@DjokerNole,I am so excited!! My new website & mobile apps are live! 😁 👏 Hope you'll like it #NoleFam 🙏 https://t.co/mKz48IxRLM +08/23/2017,Sports_celeb,@DjokerNole,Love that I feel for my brother is unconditional! I will always feel inseparable to him 🙏🏻 ❤️ Who makes you my… https://t.co/dM3aNJ3WPL +07/31/2017,Sports_celeb,@DjokerNole,It's that time of the month again! Time to #MeetNoleFam 🙏🏼❤ Follow the link to meet Priyanka from @NovakIndiaFans https://t.co/vBBKYXlcrd +07/28/2017,Sports_celeb,@DjokerNole,@Wimbledon Thank you 🙏 +07/28/2017,Sports_celeb,@DjokerNole,Thank you. I'll be back soon! 🎾 https://t.co/KU99n9g08E +07/28/2017,Sports_celeb,@DjokerNole,@AustralianOpen Thank you and see you soon! +07/28/2017,Sports_celeb,@DjokerNole,@rolandgarros Merci beaucoup mes amis! +07/28/2017,Sports_celeb,@DjokerNole,@usopen Thank you <3 +07/28/2017,Sports_celeb,@DjokerNole,Crocodile never gives up 🐊 Thank you #grateful https://t.co/qL6yTr8gVz +07/26/2017,Sports_celeb,@DjokerNole,I took time to make a decision about my recovery. Sorry for keeping you in the dark these days. Read more here https://t.co/tCSw46TOL2 +07/26/2017,Sports_celeb,@DjokerNole,Thank you all for patiently waiting for the news about my recovery. Join me on FB live at around 14:15 CEST to hear more about it #NoleFam +07/07/2017,Sports_celeb,@DjokerNole,I feel for u and wish u fast recovery @BMATTEK So sorry that you are going through so much pain. Glad to see many people sending u love ❤ +07/05/2017,Sports_celeb,@DjokerNole,Happy to meet my friend @PKSubban1 and have him watch my match at Wimbledon 😃👌 https://t.co/3ZZESdKbfk +07/03/2017,Sports_celeb,@DjokerNole,Sometimes seeing is more effective... #gameanalysis #gettingready #wimbledon https://t.co/mOoaTtxKPx +06/28/2017,Sports_celeb,@DjokerNole,The time has come to #MeetNoleFam👏🏼 Join me on my virtual trip to 🇨🇳 and meet Alex Zeng who manages Fan Club China https://t.co/rQDHPhajuO +06/24/2017,Sports_celeb,@DjokerNole,"The first practice had to wait today due to rain ☔️. But you know what they say... No rain, no gain. Or was it some… https://t.co/kKEoGQMaif" +06/21/2017,Sports_celeb,@DjokerNole,See you in a few days Eastbourne! https://t.co/EZ92rGRyR7 +06/20/2017,Sports_celeb,@DjokerNole,Great #DayAtWork guys! Had a lot of fun and amazing practice today! How was your day #nolefam? 😤😁💪🏼 https://t.co/M0cz9oDcrr +06/08/2017,Sports_celeb,@DjokerNole,My Belgrade from the sky. Warms my heart and soul each time. https://t.co/BFpWBGAWJr +06/03/2017,Sports_celeb,@DjokerNole,Wow sounds amazing! Thank you #NoleFam I'd love to see your #NoleRG17 videos 👌🏼😃🎬 https://t.co/Ybd9v38HwM +05/30/2017,Sports_celeb,@DjokerNole,I'm so excited! 🙌The 2nd #MeetNoleFam interview is live. Thank you my #NoleFam from the Balkans. 💪🤛 You are amazing! https://t.co/6I53FL20Wa +05/26/2017,Sports_celeb,@DjokerNole,2 vs 1 and I and I am still standing tall. Anyone want's to try? 💪😜 https://t.co/pYz1mGFqYK +05/25/2017,Sports_celeb,@DjokerNole,"New gear, new coach, new start. How exciting! #NoleFam please welcome our new member @AndreAgassi 👏🙌👍 https://t.co/aE53GeEw98" +05/23/2017,Sports_celeb,@DjokerNole,Had so much fun with the @LACOSTE team. 🐊😀And you know me... I like to keep up the good spirit.🙌 #NewCroc2017 https://t.co/qOB6H45ai0 +05/22/2017,Sports_celeb,@DjokerNole,@UNICEF Thank you!! 🙏❤️ +05/22/2017,Sports_celeb,@DjokerNole,"Yes, madam, already! 😊🤗 Thank you so much! https://t.co/nD0xz7qzyV" +05/22/2017,Sports_celeb,@DjokerNole,Thank you!!! 🎉🎊 https://t.co/Z3m2hQ7kyM +05/22/2017,Sports_celeb,@DjokerNole,Thank you! https://t.co/1H3dMbRajU +05/22/2017,Sports_celeb,@DjokerNole,"Wow! This is amazing 🤗 Thank you for this, I am speechless 🙏 #NoleFam https://t.co/RXOGwBZADm" +05/22/2017,Sports_celeb,@DjokerNole,🙏 Thank you #NoleFam https://t.co/kBwDAw8y9a +05/22/2017,Sports_celeb,@DjokerNole,@Oliviahsiao0418 @JelenaRisticNDF @NovakFanClub Hehe love you back <3 Thank you! +05/22/2017,Sports_celeb,@DjokerNole,"Proud to be part of this revolutionary @LACOSTE story, that still lasts till this day. I'm proud to be the new Croc… https://t.co/Zr0o5uMe5v" +05/17/2017,Sports_celeb,@DjokerNole,#tb to @rolandgarros 2016. What a journey! I will never forget it. Thx for these series of videos🙏Tune in 🔛… https://t.co/cpURGFTU7L +05/15/2017,Sports_celeb,@DjokerNole,Look who stopped by to join me and the boys for a training session in Roma! @OfficialGoran 🎾 https://t.co/zypFNRJOoo +05/12/2017,Sports_celeb,@DjokerNole,Not an easy decision @keinishikori but health is priority. Wishing you fast recovery and hope to see you in Rome! +05/06/2017,Sports_celeb,@DjokerNole,Always good practice with Stan the man @stanwawrinka! 👏🏼💪🏻 Who looks more tired? 😂 https://t.co/8hq0eBshB0 +05/05/2017,Sports_celeb,@DjokerNole,It's great to be back! Hello Madrid 😃 #FirstPractice at @MutuaMadridOpen https://t.co/7wI1D3AYPQ +05/05/2017,Sports_celeb,@DjokerNole,I have news that I'd like to share with you. https://t.co/ffMD5LZi5V +05/04/2017,Sports_celeb,@DjokerNole,I'm so proud of the @novakfoundation's partnership with @HarvardCenter! Let's wish the 4 #DjokovicFellows all the l… https://t.co/g7wt7CmCiE +05/01/2017,Sports_celeb,@DjokerNole,Working hard on international workers' day 😂👌🏼 https://t.co/5a4mG0Hvmr +04/28/2017,Sports_celeb,@DjokerNole,We had so much fun on that day with @head_tennis! Hope you enjoy this “behind the scenes“ video #nolefam as much as… https://t.co/CezfLqhclE +04/27/2017,Sports_celeb,@DjokerNole,The 1st #MeetNoleFam interview is live! I'm sooo excited to unite @NovakFanClub for the 1st time in a photo 😃👌… https://t.co/bBF8Zs4Sf6 +04/22/2017,Sports_celeb,@DjokerNole,THANK YOU my #NoleFam! I want to share with the whole world how amazing you are!! #MeetNoleFam #NoleFamDay <3 https://t.co/5VeLTHuyLV +04/22/2017,Sports_celeb,@DjokerNole,@KK_Ainrye Thank you 🙏🏻 +04/19/2017,Sports_celeb,@DjokerNole,Best way to warm up for work 😂🚲 https://t.co/JkCDXStH1y +04/19/2017,Sports_celeb,@DjokerNole,Wanted some @EqvitaRes refreshments and got a triple surprise! 💚Join @novakfoundation 's #Sportin1Word campaign!… https://t.co/TnmLhrePag +07/02/2018,Sports_celeb,@steveaustinBSR,RT @LilianGarcia: I just revealed on my instagram instastory who my guest will be for my relaunch of #ChasingGlory… https://t.co/1WpVqvtWLX +07/02/2018,Sports_celeb,@steveaustinBSR,RT @LilianGarcia: My #ChasingGlory podcast is back and my good friend & amazing @WWE Hall ... https://t.co/rWFMlbXRb4 +07/02/2018,Sports_celeb,@steveaustinBSR,RT @midblue17: So happy that Chasing Glory is back @LilianGarcia ! @steveaustinBSR being on it is a plus! This is my favorite podcast to li… +07/02/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: https://t.co/mH4VmYXrC8 Oh Hell Yeah! #ChasingGlory is back and @LilianGarcia's 1st guest is @steveaustinBSR chatting lo… +07/02/2018,Sports_celeb,@steveaustinBSR,RT @i_love_Lilian: HELL YEAH!!! Listening to my two favorites @steveaustinBSR & @LilianGarcia on #ChasingGlory ! So happy #ChasingGlory is… +06/30/2018,Sports_celeb,@steveaustinBSR,@Showtorious Careful. 17 is high. +06/29/2018,Sports_celeb,@steveaustinBSR,RT @OGkevingill: This is so great!! I got to do a double episode with @GregoryIron and it’s one of the best Episodes I’ve ever released.… +06/29/2018,Sports_celeb,@steveaustinBSR,"Great talkin’ w you!RT @GregoryIron: Just spent the afternoon recording a few hours of audio whoop-ass with ""Stone… https://t.co/tNNGkCwduU" +06/29/2018,Sports_celeb,@steveaustinBSR,RT @madhouseincfam: Celebrating #payday with #madhouseincfam style #wrestlingislife #wrestling #wwe #wwf #raw #wwenetwork #steveaustin @ste… +06/29/2018,Sports_celeb,@steveaustinBSR,@Mick_Bailey Cheers! +06/29/2018,Sports_celeb,@steveaustinBSR,"RT @Mick_Bailey: After years of trying to get at least 1 bottle of this beer into the UK, a client at ... https://t.co/TAxSgqMQHu" +06/29/2018,Sports_celeb,@steveaustinBSR,Good talking w you!RT @SBakerMD: Had a great time talking with Stone Cold @steveaustinBSR today- looks like he’s g… https://t.co/O7fBsfbGx2 +06/28/2018,Sports_celeb,@steveaustinBSR,"RT @LODRoadWarriors: Throwback! Oh hell yeah! 🍺 +@HeymanHustle @steveaustinBSR https://t.co/uOK705y4VU Good times." +06/28/2018,Sports_celeb,@steveaustinBSR,"@JaredLee264 @IAmJericho Yes, indeed. WM17 from Houston. I watched it back on @WWENetwork. One of the best all time… https://t.co/ke0apdBFJT" +06/28/2018,Sports_celeb,@steveaustinBSR,I’ll have a steak and a stunner on standby...RT @SBakerMD: Tomorrow I meet with @steveaustinbsr! Can I convince the… https://t.co/pRNO9msTz9 +06/27/2018,Sports_celeb,@steveaustinBSR,RT @FamousBouncers: #WhenWeWereBouncers alumni @steveaustinBSR and @IAmJericho talk all kinda awesome stuff on the latest @TalkIsJericho!!!… +06/27/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!!!RT @IAmJonathan30: NOW @TalkIsJericho, @steveaustinBSR talks rock n roll, getting puked on at… https://t.co/EQTyXGs0q1" +06/26/2018,Sports_celeb,@steveaustinBSR,@palstheman Glad you’re enjoying your ATV. I dig my Brute Force. +06/26/2018,Sports_celeb,@steveaustinBSR,"Good times, for sure. RT @BookerT5x: Haha! @steveaustinBSR" +06/25/2018,Sports_celeb,@steveaustinBSR,@SteveEJ That’s a badass sharp knife. Enjoy it! @Coldsteelknives +06/25/2018,Sports_celeb,@steveaustinBSR,"@bobgallop Catch you next time... +Swig of beer!" +06/25/2018,Sports_celeb,@steveaustinBSR,@Weellll_YouKnow Damn right. Cheers! +06/25/2018,Sports_celeb,@steveaustinBSR,@LesterBarberena 😂 +06/24/2018,Sports_celeb,@steveaustinBSR,RT @matthewv316: Always reppin’ @steveaustinBSR even if I get with with a Diamond Cutter from @RealDDP https://t.co/3fbIlNbil1 +06/23/2018,Sports_celeb,@steveaustinBSR,"And that’s the bottom line. RT @espn: On This Date: In 1996, Austin 3:16 was born. https://t.co/ZzYJiajPAG" +06/23/2018,Sports_celeb,@steveaustinBSR,"@Fgbrisco Sorry about that Gerry. Just trying to protect the business.. 😂 +Don’t forget the time in Kuwait where you… https://t.co/OS21x9V1t7" +06/23/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @KevinMichie: Finally got a chance to try @steveaustinBSR’s beer while in Los Angle-eez. The Broken Skull… https://t.co/yuJmbxEOSr +06/22/2018,Sports_celeb,@steveaustinBSR,@TheC00LRob Swig of beer! +06/22/2018,Sports_celeb,@steveaustinBSR,@Clurrrrrrrrr Cheers! +06/22/2018,Sports_celeb,@steveaustinBSR,@Richard83448755 At the time I only had one bad knee.. +06/21/2018,Sports_celeb,@steveaustinBSR,@JonnyCatalina Yes. Stay tuned. +06/21/2018,Sports_celeb,@steveaustinBSR,@TheTimBanks1 Hell Yeah! Cheers. +06/20/2018,Sports_celeb,@steveaustinBSR,"RT @pepperdoc111: @steveaustinBSR +Big Van Vader +giving +Stone Cold Steve Austin +1 gun salute +RIP +#Vader https://t.co/dZRTxJVofm" +06/20/2018,Sports_celeb,@steveaustinBSR,@MrJdubya1216 Oh Hell Yeah! +06/20/2018,Sports_celeb,@steveaustinBSR,@stnecldcollctr 👍👍 +06/20/2018,Sports_celeb,@steveaustinBSR,@missdiss_lexia And that’s the bottom line. +06/19/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: Nothing beats two guys enjoying a conversation about wrestling and enjoying some beer as with @mexwarrior on @steveausti… +06/17/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!!! #ChicagoRT @cooperdog31: @steveaustinBSR Ready for Money in the Bank Chicago with my brothers, got… https://t.co/KOvM4RVQvG" +06/16/2018,Sports_celeb,@steveaustinBSR,@Drew0531 Hell Yeah! +06/16/2018,Sports_celeb,@steveaustinBSR,@justgivverbud Oh Heck Yeah!! +06/16/2018,Sports_celeb,@steveaustinBSR,@MattWaters1995 Citizen dive watch. Spent about 200-250 bucks on it. Lotta money for the early 90’s. Good watch. +06/15/2018,Sports_celeb,@steveaustinBSR,@sardonic_wrath Oh Hell Yeah!!! +06/15/2018,Sports_celeb,@steveaustinBSR,@myermania We tried to make chicken salad out of chicken shit. We failed. +06/15/2018,Sports_celeb,@steveaustinBSR,@jasonettinger Very cool. +06/15/2018,Sports_celeb,@steveaustinBSR,"RT @WWENetwork: On this day 20 YEARS AGO, @steveaustinbsr & The #Undertaker battled @KaneWWE & @RealMickFoley inside HELL IN A CELL on #RAW…" +06/14/2018,Sports_celeb,@steveaustinBSR,"@Kmitch66394669 @KawasakiUSA +Nice setup. https://t.co/UxO8LV0ZBR" +06/13/2018,Sports_celeb,@steveaustinBSR,"@Puetzer1 @KawasakiUSA Got one, myself. The name fits. Awesome power. Good looking dog." +06/13/2018,Sports_celeb,@steveaustinBSR,Had an awesome time w the cool folks from @KawasakiUSA filming a commercial for the new MULE PRO-MX side by side.… https://t.co/JWbH83nhfr +06/13/2018,Sports_celeb,@steveaustinBSR,"RT @mayer1111: @steveaustinBSR I was listening to your podcast and I’d never heard of this guy so I paused and YouTubed. + +I’m now pissing…" +06/13/2018,Sports_celeb,@steveaustinBSR,"RT @sambanks2: The super hilarious @craiggasscomedy on the super masculine @steveaustinBSR’s show. 😂 + +Craig Gass has a great life story. If…" +06/13/2018,Sports_celeb,@steveaustinBSR,RT @crimsonmask49: @steveaustinBSR We don’t need to bring ink and paper into this... https://t.co/5J1aXQIq8p +06/13/2018,Sports_celeb,@steveaustinBSR,RT @BlueMeanieBWO: My day started getting my George Carlin box set in the mail. Then I get to hear @craiggasscomedy on the @steveaustinBSR… +06/12/2018,Sports_celeb,@steveaustinBSR,RT @KawasakiUSA: Introducing the all-new mid-size 2019 MULE PRO-MX to our latest generation of #KawasakiSTRONG fami… https://t.co/z71KG1SGTB +06/12/2018,Sports_celeb,@steveaustinBSR,RT @Maddaveinc: @steveaustinBSR Great #SteveAustinShow with @craiggasscomedy talking about his career in #standupcomedy #MitchHedberg #Geor… +06/12/2018,Sports_celeb,@steveaustinBSR,RT @TheHoldsworth: Traveled all the way from Toronto Canada to checkout @steveaustinBSR own Broken Scull IPA @ESBCBrews. This IPA kicks ass… +06/12/2018,Sports_celeb,@steveaustinBSR,"RT @TripleH: I see the celebration is underway...like @SteveAustinBSR says “hell yeah!!!” + +Enjoy your parade and congratulations! #ALLCAPS…" +06/12/2018,Sports_celeb,@steveaustinBSR,@justinwhite83 @DDROSE83 Cheers and congratulations. +06/12/2018,Sports_celeb,@steveaustinBSR,@omega_apex128 Been there. Done that. I hate it when that happens. +06/11/2018,Sports_celeb,@steveaustinBSR,@jimbojangles21 That’s a big ass tree! +06/10/2018,Sports_celeb,@steveaustinBSR,RT @WWFATTITUDE316: Probably my favorite @steveaustinBSR moment #AttitudeEra https://t.co/4afRmqKASA +06/09/2018,Sports_celeb,@steveaustinBSR,@TwinkieThinky @Coldsteelknives It is def a badass knife no matter what color you get. Enjoy it! +06/09/2018,Sports_celeb,@steveaustinBSR,"RT @DDPYoga: Do your DDPY and that's the bottom line because @SteveAustinBSR said so! Steve Austin just finished his first DDPY workout, he…" +06/08/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @TheHoldsworth: Traveled all the way from Toronto Canada to checkout @steveaustinBSR own Broken Scull IPA… https://t.co/ffxfbRFAev +06/08/2018,Sports_celeb,@steveaustinBSR,Oh Hell Yeah!!!RT @RealDDP: Last weekend me and Steve Austin did a workout that has been 16 years in the making. I'… https://t.co/AoXAfpd6zt +06/08/2018,Sports_celeb,@steveaustinBSR,@Jamie_iovine Looks like I’m doing another j.o.b... +06/08/2018,Sports_celeb,@steveaustinBSR,@cuse1 @Michigan_Dipper @iohc_ That’s the one. +06/07/2018,Sports_celeb,@steveaustinBSR,"RT @The_Rod: Incredible episode of ⁦@steveaustinBSR⁩ show with the man who forever changed my life, ⁦@RealDDP⁩ Great discussion about lots…" +06/07/2018,Sports_celeb,@steveaustinBSR,@fanboySTWW @BigStrongFast Damn that’s a lot of steaks. Let me know how it works for you. +06/06/2018,Sports_celeb,@steveaustinBSR,"RT @RealIvelisse: #WaybackWednesday +My 1st & only time in the bottom 3. A heartbreaking goodbye from @wwe #ToughEnough 5 +It was so DIFFICU…" +06/06/2018,Sports_celeb,@steveaustinBSR,"RT @jhagg719: Man, today’s @steveaustinBSR #steveaustinshow #podcast @PodcastOne is a MUST listen to with Chris bell. Very informative, rea…" +06/05/2018,Sports_celeb,@steveaustinBSR,@IvMathers Could have been.. +06/03/2018,Sports_celeb,@steveaustinBSR,"RT @WWENetwork: Today in 1997, @steveaustinbsr & @ShawnMichaels went toe-to-toe with The #LegionOfDoom on #RAW! https://t.co/7m6YSZ1VBo htt…" +06/02/2018,Sports_celeb,@steveaustinBSR,"AKA The Professor. PHD, etc etc. RT @bohnes: getting taught how to drink beer by Mr. 3:16. Stone Cold… https://t.co/a0F8lZu3j3" +06/01/2018,Sports_celeb,@steveaustinBSR,@FrankLevesque09 Thanks for the heads up. 👍 +05/31/2018,Sports_celeb,@steveaustinBSR,"RT @Coldsteelknives: It’s #NationalSmileDay... so have a knife and a smile, like @steveaustinBSR (or is that a smirk? 🤔) with his #coldstee…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @BroJBrody: WE’RE LIVE, BRO! I’m on today’s new #SteveAustinShow podcast! + +@steveaustinBSR & I cover my recent knee surgery, @WWEToughEn…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @AJKirsch: WE’RE LIVE, PAL! I’m on today’s new #SteveAustinShow podcast! + +@steveaustinBSR and I cover my recent surgery, @WWEToughEnough…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @BroJBrody: I just heard a little scuttlebutt that me-in-real-life (@AJKirsch) just talked with @steveaustinBSR for, like, 90min, and th…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @AJKirsch: What a blast to catch up with @steveaustinBSR. + +We covered my recent knee surgery, our time on @WWEToughEnough, my experience…" +05/28/2018,Sports_celeb,@steveaustinBSR,@JUSTOSLICE Enjoy! +05/28/2018,Sports_celeb,@steveaustinBSR,RT @BulletClubItal: #OnThisDay 22 years ago: #InYourHouse8 Beware of Dog 2: #SavioVega defeated @steveaustinBSR in a Caribbean Strap match… +05/28/2018,Sports_celeb,@steveaustinBSR,RT @LilianGarcia: Happy #MemorialDay! 15 years ago on @WWE #Raw I had the distinct pleasure of singing #AmericaTheBeautiful w @steveaustinB… +05/28/2018,Sports_celeb,@steveaustinBSR,@BrianWorldChamp LTZ Z71 +05/26/2018,Sports_celeb,@steveaustinBSR,@themadman316 Running my old John Deere now. +05/26/2018,Sports_celeb,@steveaustinBSR,"Have a great weekend! +#BSRmargaritatime +@Coldsteelknives +#workingman https://t.co/5BBVDaI7Bi" +05/25/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @Rfelt3: TGIF @steveaustinBSR much needed long weekend!! https://t.co/6uMB3IJC4R +05/25/2018,Sports_celeb,@steveaustinBSR,RT @RobertA54611889: @steveaustinBSR @BowlerScow33 Have a great weekend. https://t.co/pCJQ99YZo3 +05/25/2018,Sports_celeb,@steveaustinBSR,@iAmFlair519 Hell Yeah! +05/25/2018,Sports_celeb,@steveaustinBSR,@BowlerScow33 Hell Yeah! +05/25/2018,Sports_celeb,@steveaustinBSR,@Sixxstringthing Dummies is being very nice... +05/25/2018,Sports_celeb,@steveaustinBSR,@TroubleDVJ Mango?? +05/25/2018,Sports_celeb,@steveaustinBSR,@Jess615 Hell Yeah! @Coldsteelknives +05/24/2018,Sports_celeb,@steveaustinBSR,@DelmarHaase I went Milwaukee on drills. +05/22/2018,Sports_celeb,@steveaustinBSR,@wswehr81 $$ +05/22/2018,Sports_celeb,@steveaustinBSR,@CynicalCid79 Looks just like me. Awesome job! +05/20/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!RT @WWE: As attitudes change, sometimes the themes do as well... https://t.co/WzrS7YyEPY" +05/20/2018,Sports_celeb,@steveaustinBSR,@OneJeffEdwards Enjoy. Cheers! +05/19/2018,Sports_celeb,@steveaustinBSR,"@YahielO @SavioVega Savio was awesome. Great worker. Never blows up. #oldschool +#goodtimes" +05/19/2018,Sports_celeb,@steveaustinBSR,@DSMAaronRNO Thanks for the help. I’ll bring a list next time... +05/17/2018,Sports_celeb,@steveaustinBSR,@BenCrawford1992 Yes that is a real life picture. Dropped him on that stack of dimes he calls a neck.. +05/15/2018,Sports_celeb,@steveaustinBSR,"@stnecldcollctr Thanks, Christine." +05/15/2018,Sports_celeb,@steveaustinBSR,"@theMimicHawkins Its normally a lot more organized than that. I had just brought in all of those plates, etc. hadn’t had time to rack them." +05/15/2018,Sports_celeb,@steveaustinBSR,@Coombsie77 Cool dog. +05/14/2018,Sports_celeb,@steveaustinBSR,Shooting the breeze w @WWETheBigShow tomorrow. Got a question send it to questions@steveaustinshow.com. +05/14/2018,Sports_celeb,@steveaustinBSR,RT @RossMcApples: Stopped by @ESBCBrews on my honeymoon from the UK to finally get a taste of @steveaustinBSR 's broken skull IPA. Did not… +05/14/2018,Sports_celeb,@steveaustinBSR,@RossMcApples @ESBCBrews Cheers! +05/12/2018,Sports_celeb,@steveaustinBSR,@big_takes Cheers! +05/12/2018,Sports_celeb,@steveaustinBSR,"RT @thewadekeller: If you haven't yet, check out my #WWE #Backlash PPV analysis with @steveaustinBSR in the latest Steve Austin Show on @po…" +05/11/2018,Sports_celeb,@steveaustinBSR,RT @PWTorch: Check out today's new Steve Austin Show on @PodcastOne w/@steveaustinBSR & @thewadekeller talking #WWEBacklash for 90 minutes!… +05/10/2018,Sports_celeb,@steveaustinBSR,"RT @Lanejohnson65: If y'all want to hear this interview, give me a Hell Yeah! ☠️☠️ #staytuned https://t.co/nuUshYmW6E +Oh Hell Yeah!" +05/10/2018,Sports_celeb,@steveaustinBSR,"RT @thewadekeller: On tomorrow's @steveaustinBSR podcast on @PodcastOne, Steve and I talk in depth for 90 minutes about #WWE Backlash and t…" +05/09/2018,Sports_celeb,@steveaustinBSR,@TheBobHolly @WesternWench Same here. Bob and I have always gotten along and had great times in the ring. +05/08/2018,Sports_celeb,@steveaustinBSR,@ToddyDWrestling Hell Yeah!! +05/06/2018,Sports_celeb,@steveaustinBSR,RT @MikeOHearn: Great news ! At 2:30 this morning @CTFletcherISYMF came out of heart surgery and is Good and is off to recovery #Love #Fam… +05/05/2018,Sports_celeb,@steveaustinBSR,@sethphelps @ESBCBrews Cheers! +05/01/2018,Sports_celeb,@steveaustinBSR,"RT @JRsBBQ: Check out the @steveaustinBSR podcast that dropped today as I join the Texas Rattlesnake for a fun piece of business. + +#Slobbe…" +05/01/2018,Sports_celeb,@steveaustinBSR,"@CorbinRadul Bold move. Looks great. +Hell Yeah!" +04/30/2018,Sports_celeb,@steveaustinBSR,@Mikepasc8 Excellent. Congrats. +04/30/2018,Sports_celeb,@steveaustinBSR,Doing a Q and A for Thursday Steve Austin Show. Send Q’s here or to questions@steveaustinshow.com. +04/30/2018,Sports_celeb,@steveaustinBSR,"RT @JRsBBQ: Jumped on the phone today with my old friend @steveaustinBSR for his podcast that drops Tuesday. + +The Jim Ross Report podcast…" +04/30/2018,Sports_celeb,@steveaustinBSR,@CardilloUSA Damn right I remember it! +04/29/2018,Sports_celeb,@steveaustinBSR,"RT @MDoggMattCross: Heading to @steveaustinBSR country, Victoria, Texas, to face the wild man @martincasaus for the first time ever + +From T…" +04/28/2018,Sports_celeb,@steveaustinBSR,@sgraziano7 Hell Yeah! +04/28/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @CIO_HATE: Finally got my hands on this tasty beverage since we don’t have it in NJ @steveaustinBSR… https://t.co/cMr1S4l9uB +04/27/2018,Sports_celeb,@steveaustinBSR,"@hillbillyhank43 Agreed. The kick to the back of the knee was nice, though." +04/27/2018,Sports_celeb,@steveaustinBSR,Shinsuke so much better as a heel. AJ is off the charts good. #WGRR +04/26/2018,Sports_celeb,@steveaustinBSR,RT @FlyinBrianJr: Ask and ye shall receive! I FINALLY got to sit down with @steveaustinbsr and deliver the podcast… https://t.co/kJNrj58DnZ +04/26/2018,Sports_celeb,@steveaustinBSR,"RT @FlyinBrianJr: Join me and Steve as we talk about my early footsteps into the business, his relationship with my father, and more!! http…" +04/26/2018,Sports_celeb,@steveaustinBSR,RT @LiamORourke86: A big thank you to @steveaustinBSR and @FlyinBrianJr for talking about 'Crazy Like A Fox' - my biography on the life of… +04/25/2018,Sports_celeb,@steveaustinBSR,Good times!!RT @BulletClubItal: #OnThisDay 19 years ago: #WWEBacklash @steveaustinBSR defeated @TheRock in a No Hol… https://t.co/stOwow3I6p +04/25/2018,Sports_celeb,@steveaustinBSR,@MaxCastellano15 Hell Yeah +04/24/2018,Sports_celeb,@steveaustinBSR,RT @courtbauer: A few people have been hitting me up since @steveaustinBSR Show came out asking how they can watch @MLW on @beINSPORTSUSA.… +04/24/2018,Sports_celeb,@steveaustinBSR,"RT @courtbauer: Fire up the podcast gimmick and listen to today’s @steveaustinBSR Show as Steve and I take you behind the scenes of @MLW, t…" +04/24/2018,Sports_celeb,@steveaustinBSR,@WhittonAl HELL YEAH!!! +04/24/2018,Sports_celeb,@steveaustinBSR,"Damn what a ride. RT @CatchThePinfall: If @steveaustinBSR hadn't seen this, imagine... + +@WCCWMemories + +https://t.co/5eUMG7FPbH" +04/24/2018,Sports_celeb,@steveaustinBSR,@CatchThePinfall @WCCWMemories Thanks for sending that. I have not seen that commercial in many years. That commerc… https://t.co/FVJwM1UenA +04/24/2018,Sports_celeb,@steveaustinBSR,RT @withxtrasarcasm: @everytimeidie @steveaustinBSR @BraxtonSutter @AllieImpact @andycomplains That was absolutely hilarious! 😂🤣 ‘You can t… +04/24/2018,Sports_celeb,@steveaustinBSR,RT @courtbauer: I’ll be on @steveaustinBSR Show in the AM where we will talk shop about #WWEGRR and I’ll reveal details on this Friday’s #M… +04/24/2018,Sports_celeb,@steveaustinBSR,@xSt4y_r3ady_C3D @BrooksFarris I dig it. Very cool. +04/21/2018,Sports_celeb,@steveaustinBSR,RT @everytimeidie: The one and only @steveaustinBSR sat down with @braxtonsutter @allieimpact and our very own @andycomplains for what coul… +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: Part 2 of @andycomplains , @AllieImpact and myself on @steveaustinBSR ‘s podcast released today! Check out this audio w…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @TheKevinBennett: As the producer of @KickinAssPod , I am proud to say that my homies @BraxtonSutter @andycomplains and @AllieImpact KIC…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @AllieImpact: Guyssssss part 2 of our interview on @steveaustinBSR podcast is up!!! + +This was such a cool moment for all three of us.…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: This week on @KickinAssPod me, @andycomplains and LDG @AllieImpact recap our recent trip to LA! We had a kick ass day on…" +04/19/2018,Sports_celeb,@steveaustinBSR,@LoveableMew Real +04/18/2018,Sports_celeb,@steveaustinBSR,@Dakota_Bennett1 Yep. +04/18/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: Check out the craziest day of our lives! @andycomplains , @AllieImpact and myself on Ol’ Stone Cold @steveaustinBSR ‘s p…" +04/17/2018,Sports_celeb,@steveaustinBSR,RT @IMPACTWRESTLING: .@AllieImpact and @BraxtonSutter appeared on the latest episode of the @steveaustinBSR Show along with @andycomplains!… +04/17/2018,Sports_celeb,@steveaustinBSR,"RT @andycomplains: Welp, this is insane! Go listen to @BraxtonSutter @AllieImpact and i try not to mark to hard when @steveaustinBSR interv…" +04/15/2018,Sports_celeb,@steveaustinBSR,@teamstihl Hell Yeah! +04/13/2018,Sports_celeb,@steveaustinBSR,@TektheGeek That’s what I said... +04/13/2018,Sports_celeb,@steveaustinBSR,RT @Brodyxking: Got to meet the fuckin man today @steveaustinBSR thanks for letting me hang! https://t.co/ZgxaifrR46 +04/13/2018,Sports_celeb,@steveaustinBSR,@Brodyxking Nice meeting you! +04/13/2018,Sports_celeb,@steveaustinBSR,RT @KickinAssPod: The Butcher @andycomplains The Blade @BraxtonSutter and The Bunny @AllieImpact podcasted with @steveaustinBSR today! Stre… +04/13/2018,Sports_celeb,@steveaustinBSR,RT @andycomplains: Today is an insane day. @BarWrestling here we come! @steveaustinBSR has to rain check tonight though. Sorry guys. https:… +04/12/2018,Sports_celeb,@steveaustinBSR,"RT @TheFranchiseSD: Aargh, you guys beat me to the punch! Yes! I had the pleasure ot talk w @steveaustinBSR yday. Saw him at WrestleCon (1s…" +04/12/2018,Sports_celeb,@steveaustinBSR,@RiceFootball @53kobasko @WWENetwork @JRsBBQ Correct. +04/12/2018,Sports_celeb,@steveaustinBSR,@53kobasko That’s a fact. +04/11/2018,Sports_celeb,@steveaustinBSR,@Musicnation_101 @Gooner2954 @ShaneHelmsCom @courtbauer @H2HEmpress @realboogey Correct. +04/11/2018,Sports_celeb,@steveaustinBSR,@ShaneHelmsCom @courtbauer @H2HEmpress @realboogey I’m blaming all of you mugs... +04/11/2018,Sports_celeb,@steveaustinBSR,@Gortiz96 @ESBCBrews Sorry bout that. +04/10/2018,Sports_celeb,@steveaustinBSR,@matthewqnanes @TylerQinUtah More like being dead dog tired after 3 days of Mania festivities... +04/10/2018,Sports_celeb,@steveaustinBSR,@realbrianmorse It’s on the close of the show. Yep. We missed it on the podcast. My mistake. +04/10/2018,Sports_celeb,@steveaustinBSR,RT @MLW: Head over to 316 Gimmick Street as @steveaustinBSR talks with @courtbauer about #wrestlemania and #MLWFUSION TV series coming to @… +04/10/2018,Sports_celeb,@steveaustinBSR,RT @ppwpodcast: So I’m pretty sure @steveaustinBSR loved this item we brought the most out of anything @wrestlecon @Highspots https://t.co/… +04/09/2018,Sports_celeb,@steveaustinBSR,"RT @ReyFenixMx: Thank you so much @steveaustinbsr for unforgettable experience. +Thanks to all the team, great… https://t.co/3xOT1GWGgd" +04/08/2018,Sports_celeb,@steveaustinBSR,"RT @RealMickFoley: Just a tremendous action photo of the Texas Rattlesnake & The Hardcore Legend in mid-hug! +@steveaustinBSR https://t.co/U…" +04/08/2018,Sports_celeb,@steveaustinBSR,@Jarrius Awesome job last night. I enjoyed your speech and your story is incredible. Definitely tougher than me. A… https://t.co/er4dweLZa7 +04/08/2018,Sports_celeb,@steveaustinBSR,Awesome to see the GOAT today! #NatureBoy #woooooo!RT @RicFlairNatrBoy: Steve Austin In The House! WOOOOO!… https://t.co/IOyx4CtEi9 +04/07/2018,Sports_celeb,@steveaustinBSR,RT @therealtristin: My favorite photo! #WrestleCon @steveaustinBSR https://t.co/x0fIOn0yDp +04/07/2018,Sports_celeb,@steveaustinBSR,RT @billyviscuso: 15 years later. Legendary. #familyreunion @steveaustinBSR https://t.co/oLQglGnYp5 +04/07/2018,Sports_celeb,@steveaustinBSR,Gotcha! Remember New Orleans...RT @BulletClubItal: #OnThisDay 21 years ago: #RAW @steveaustinBSR defeated… https://t.co/PWMdR2J9NL +04/06/2018,Sports_celeb,@steveaustinBSR,@realchaseowens Nice meeting you! +04/06/2018,Sports_celeb,@steveaustinBSR,Made a stop by one of my favorite places in New Orleans for lunch. Been coming to this place for damn near 20 years… https://t.co/4jVQySWO2r +04/06/2018,Sports_celeb,@steveaustinBSR,RT @Kevy316: @steveaustinBSR getting ready for #WrestleManiaWeekend in style #oldskool https://t.co/RAgCYxPp4h +04/06/2018,Sports_celeb,@steveaustinBSR,@tpalzet Tell him I said hello and to stay strong. And that’s the bottom line. +04/06/2018,Sports_celeb,@steveaustinBSR,@Yorkshirelad110 That’s a nice ride. +04/06/2018,Sports_celeb,@steveaustinBSR,"Headed out to New Orleans, Louisiana for @wrestlecon appearance on Saturday and Sunday. See you there. #BYOB https://t.co/79DH6OTw71" +04/05/2018,Sports_celeb,@steveaustinBSR,"@crazylenny Thanks! Hell, I knew that..." +04/04/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: Don Jamieson https://t.co/EhtJbEMMAS Awesome podcast @steveaustinBSR @realdonjamieson +04/04/2018,Sports_celeb,@steveaustinBSR,@FauthGuitars Thanks! +04/02/2018,Sports_celeb,@steveaustinBSR,Tomorrow on SAS. Stand up comedian and That Metal Show cohost @realdonjamieson shooting the breeze. RT… https://t.co/bEYmSljhRV +04/01/2018,Sports_celeb,@steveaustinBSR,"@ZICCARDI151 That man had a family, dammit!!" +04/01/2018,Sports_celeb,@steveaustinBSR,"RT @neale8: My daughter just did there @steveaustinBSR egg! +The toughest hard boiled egg on Easter https://t.co/3sh7vFQ1au" +03/31/2018,Sports_celeb,@steveaustinBSR,@LOOKINIKOOL Thanks for the heads up. +03/31/2018,Sports_celeb,@steveaustinBSR,@omega_apex128 Damn. That ain’t good. Sorry to hear it. +03/29/2018,Sports_celeb,@steveaustinBSR,RT @WWE: Was @steveaustinBSR happy with the match he had against @ShawnMichaels 20 YEARS AGO today to win his first @WWE Championship at @W… +03/29/2018,Sports_celeb,@steveaustinBSR,@MrKhakbaz Good eye. Yes. The 2 shoes looked very similar and I did not realize it till I got home after the shoot… https://t.co/8Yc5Fve9ve +03/28/2018,Sports_celeb,@steveaustinBSR,@mellabellaboy20 Nice work. +03/27/2018,Sports_celeb,@steveaustinBSR,OH HELL YEAH!!! https://t.co/JuhMqBvs5t +03/27/2018,Sports_celeb,@steveaustinBSR,@thecharlieguz Enjoy it! Happy Birthday. +03/26/2018,Sports_celeb,@steveaustinBSR,@ArtByErle Awesome work! I had saved the picture. Sorry to not give you the credit for it. Very cool image. +03/25/2018,Sports_celeb,@steveaustinBSR,RT @Kai_Roberts6: @EandCPod one of the best podcasts of all time. Fascinating listening to @BretHart & @steveaustinBSR talking about their… +03/25/2018,Sports_celeb,@steveaustinBSR,@GregoryIron Hell Yeah +03/25/2018,Sports_celeb,@steveaustinBSR,"RT @DrawingHeat: Nearly 37 years old and yet still cannot look at my watch at 3.16 and not think ""your ass belongs to Stone Cold"" @steveaus…" +03/24/2018,Sports_celeb,@steveaustinBSR,"RT @NatbyNature: 21 years ago today. +One of my favorite #WrestleMania matches of all time. The storytelling was just incredible. So much w…" +03/23/2018,Sports_celeb,@steveaustinBSR,"@EdgeRatedR @BretHart @EandCPod @Christian4Peeps Don’t be so hard on yourself... +#DONTLOOKATME" +03/23/2018,Sports_celeb,@steveaustinBSR,RT @EdgeRatedR: So when we first put together the idea of doing Anatomy of a Match with @BretHart & @steveaustinBSR for @EandCPod that woul… +03/23/2018,Sports_celeb,@steveaustinBSR,@1PhenomenalFan I had some horrible ring gear back in the day.. +03/23/2018,Sports_celeb,@steveaustinBSR,@dkeithtaylor Swig of water for the working man. +07/01/2018,Sports_celeb,@UKCoachCalipari,It’s my son-in-law @mcotton88's birthday. He’s been a great husband to @MeganteCalipari and son to Ellen and me. +06/30/2018,Sports_celeb,@UKCoachCalipari,Wayne County deputies Cody Neal and Joe Horne and Monticello police officer Gordon Stephens. https://t.co/38ua3oPJri +06/30/2018,Sports_celeb,@UKCoachCalipari,Coach Rodney Woods played with Bernie & Ernie (Bernard King and Ernie Grunfel). Ray Mears coached him. Was just ind… https://t.co/U8s1XcbeHA +06/30/2018,Sports_celeb,@UKCoachCalipari,Ray Mills at our Wayne County High School Satellite Camp! Ray played for Coach Rupp from 1954-57. https://t.co/Udj2CHaW1u +06/30/2018,Sports_celeb,@UKCoachCalipari,Weeks like this week are what get me up in the morning. Love being on that court with young people and that basketb… https://t.co/y2u9C4a8SY +06/29/2018,Sports_celeb,@UKCoachCalipari,"Shout out to Jodi Black on her birthday today!! Have a great day!! You too, Hank!!" +06/28/2018,Sports_celeb,@UKCoachCalipari,"GK, you are on my daily prayer list, my friend. Miss you!" +06/28/2018,Sports_celeb,@UKCoachCalipari,Just got off the phone with a dear friend George Klein from Memphis. Most know GK as part of Elvis Presley’s Memphi… https://t.co/up1vH0YCXn +06/28/2018,Sports_celeb,@UKCoachCalipari,"Our staff also had a chance to spend time with Tom Arington, founder and chairman of @PrascoAGs. Great man and a bi… https://t.co/cYFP5pYYT7" +06/28/2018,Sports_celeb,@UKCoachCalipari,"They tell me their pro, @Anewell28, is pretty good!" +06/28/2018,Sports_celeb,@UKCoachCalipari,My coaching staff supporting the @PrascoAG’s Charity Championship today in its pro-am event! https://t.co/gq3ZPDMKcS +06/28/2018,Sports_celeb,@UKCoachCalipari,Rising star! DeWayne has earned everything he has coming for him. Happy to call him a friend. https://t.co/fb7eBNZAmP +06/28/2018,Sports_celeb,@UKCoachCalipari,"Sitting here thinking about just having 30 dogs run through my office. Please, no one say I hate elephants." +06/28/2018,Sports_celeb,@UKCoachCalipari,"Seriously though, if you know my family, you know we love animals. I'm proud to be a supporter of @lexingtonhumane… https://t.co/dlgVUfmN0j" +06/28/2018,Sports_celeb,@UKCoachCalipari,"You see what happens when McGruff and Palmer get mad at me? I had visitors waiting for me in my office today! + +Tha… https://t.co/polh5kydc6" +06/28/2018,Sports_celeb,@UKCoachCalipari,Had a really great first practice with the team today. I've challenged them to be like the 2014-15 team and not ha… https://t.co/6zcmSHIjUh +06/27/2018,Sports_celeb,@UKCoachCalipari,"Just finished our first practice of the year with our team. We have a long way to go, but we have an unbelievable… https://t.co/6gFOfvsgPl" +06/27/2018,Sports_celeb,@UKCoachCalipari,"Just talked to one of the toughest and most competitive players I’ve ever coached, @ZayBriscoe! He is with the Orl… https://t.co/wQ5XBTwYrP" +06/27/2018,Sports_celeb,@UKCoachCalipari,"Did I hear it's @Dhawk_25's birthday? #BBN, join me in wishing him a happy one. Dom had a great start to his profes… https://t.co/FrTbM59Gf1" +06/27/2018,Sports_celeb,@UKCoachCalipari,Just stopped in my office. @Q_Green1 was working out in a full sweat. And this shows up from @BravoTopChef Nice!! https://t.co/yFsRYBH5Mk +06/26/2018,Sports_celeb,@UKCoachCalipari,"And if you didn't know, Rick is one of the best in our business. He's won nearly 800 games as a head coach!" +06/26/2018,Sports_celeb,@UKCoachCalipari,"10 years ago today, I had the privilege of sitting in the green room as @drose was taken #1 overall in the NBA Draf… https://t.co/OB7CeO94T8" +06/26/2018,Sports_celeb,@UKCoachCalipari,"Spent some time with @BelmontMBB head coach Rick Byrd and his assistant, @THolloway4, talking movement, spacing and… https://t.co/o7jVKbMO1G" +06/26/2018,Sports_celeb,@UKCoachCalipari,We're coming to Wayne County High School on Saturday for our Satellite Camp. This is the final opportunity of the c… https://t.co/xoBZHI8E6W +06/26/2018,Sports_celeb,@UKCoachCalipari,Nothing a Louisville fan has EVER said to me has ever bothered me but this one got to me a little bit. McGruff and… https://t.co/pGS4cDdwue +06/25/2018,Sports_celeb,@UKCoachCalipari,I’m so proud of @AntDavis23. Only 25 years old and a finalist for the league’s best player. Incredible. I can remem… https://t.co/6fV2XfMNDv +06/25/2018,Sports_celeb,@UKCoachCalipari,RT @KentuckyMBB: This time yesterday we were getting ready to pull up to Midway for an unbelievable turnout from the #BBN. A look back at o… +06/25/2018,Sports_celeb,@UKCoachCalipari,"I was so happy to see two of Rick Corman’s daughters yesterday, April and Shawna." +06/25/2018,Sports_celeb,@UKCoachCalipari,"I want to thank Ed Quinn, president and CEO of R. J. Corman, once again for helping make it happen. Thank you to Br… https://t.co/p32pvutN3w" +06/25/2018,Sports_celeb,@UKCoachCalipari,"Woke up this morning blown away by the support we had from the #BBN. I’m sure folks will get upset when I say this,… https://t.co/gVXMEoAuLu" +06/25/2018,Sports_celeb,@UKCoachCalipari,"I want to thank this group of officers for their help at Midway and Lexington. And of course, a huge thank you to e… https://t.co/lkEoBj7hMr" +06/25/2018,Sports_celeb,@UKCoachCalipari,You know what I love most? Most of the people who waited in line for 2-3 hours don’t get a chance to get in… https://t.co/RtyvXA3PXa +06/25/2018,Sports_celeb,@UKCoachCalipari,"What a day. The turnout for the #BigBlueCaravan was unbelievable. More than 500 people in Frankfort, Midway (maybe… https://t.co/yQfj64khsU" +06/24/2018,Sports_celeb,@UKCoachCalipari,We just got done with our Satellite Camp in Frankfort in front of about 500 people when you include all the parents… https://t.co/rbuDztIrPb +06/24/2018,Sports_celeb,@UKCoachCalipari,"I want to thank Ed Quinn, president and CEO of R. J. Corman, for making today’s #BigBlueCaravan happen. Happy to ta… https://t.co/GqtvU55eLO" +06/24/2018,Sports_celeb,@UKCoachCalipari,We’re headed off for Frankfort for our Satellite Camp! Looking forward to seeing the #BBN on our way back.… https://t.co/JvToC3MobO +06/24/2018,Sports_celeb,@UKCoachCalipari,Getting ready to hop aboard our #BigBlueCaravan ride for the day. Can’t thank R. J. Corman enough for making this h… https://t.co/yxEI92SgwA +06/24/2018,Sports_celeb,@UKCoachCalipari,"RT @KentuckyMBB: Don't forget, we'll be meeting fans in Midway (5:30 p.m.) and Lexington (7 p.m.) to take pictures and sign autographs on t…" +06/23/2018,Sports_celeb,@UKCoachCalipari,Can’t wait to see the #BBN tomorrow! https://t.co/USelMOti3X +06/23/2018,Sports_celeb,@UKCoachCalipari,Congratulations to @HoopsWeiss!!! Well deserved. One of the best! https://t.co/NJEPzL0tTD +06/23/2018,Sports_celeb,@UKCoachCalipari,"#BBN, we'll be going rain or shine! Hope to see you in Midway and Lexington tomorrow for autographs and pictures. https://t.co/L9t7N8ioLg" +06/23/2018,Sports_celeb,@UKCoachCalipari,"Want to wish @tjbeisner, our new editor of @CoachCalDotCom, a happy birthday. TJ has done an unbelievable job in th… https://t.co/J4uULvgbzf" +06/23/2018,Sports_celeb,@UKCoachCalipari,RT @KentuckyMBB: We do what we do to win championships. But it's also about nights like these. Take a few minutes and watch this and see wh… +06/23/2018,Sports_celeb,@UKCoachCalipari,Few moments as special for me then hugging each kid and their mom and dad. Happy for all of our guys. https://t.co/BpXjUQPOCA +06/23/2018,Sports_celeb,@UKCoachCalipari,"We'll be out there to greet fans, sign autographs and take pictures at both spots. Complimentary posters will also… https://t.co/LyAwSNXKN6" +06/23/2018,Sports_celeb,@UKCoachCalipari,"We'll be coming back on an R. J. Corman train and will make a stop in Midway (Darlin Jean's, 2014 N. Gratz St.) at… https://t.co/ZXCf0stbnW" +06/23/2018,Sports_celeb,@UKCoachCalipari,"#BBN, I want to invite all of our fans to meet our team on Sunday as make a couple of pit-stops on the way back fro… https://t.co/WIYkI2j2vy" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Dajuan Wagner, my first 20-point scorer and first player to go in the draft after one year and be a lottery pick! H… https://t.co/MvCAIu2SNu" +06/22/2018,Sports_celeb,@UKCoachCalipari,Could you imagine if we could keep kids for three years what this program would look like? Oh my gosh! But I’m alwa… https://t.co/KqMKqyAZ0m +06/22/2018,Sports_celeb,@UKCoachCalipari,"Now my work begins on next year’s team. With the added hours, I’m going to spend more time in the summer than I nor… https://t.co/2fWJLAMMOv" +06/22/2018,Sports_celeb,@UKCoachCalipari,I can look back at @Dreliggs34 and @DrewRoc5 and know that the draft doesn’t define your dreams. Everybody’s path is different. +06/22/2018,Sports_celeb,@UKCoachCalipari,"I’m disappointed @WenyenGabriel's work to get on a team is not done yet, but I always tell every player that I coac… https://t.co/CQQFwgbRau" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Graduation day is over. Last night was both exciting and disappointing, as it always is. I’m excited for the four p… https://t.co/GKDh4GlR6b" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Congratulations, @hamidoudiallo! I know you are going to give it everything you have! https://t.co/RamB2xpeL6" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Happy for you, @JVando. Can't wait for everyone to see what you're capable of doing. https://t.co/HleucQ0l3G" +06/22/2018,Sports_celeb,@UKCoachCalipari,"So happy for you and your family, @shaiglalex. https://t.co/7rvEqUJp6n" +06/22/2018,Sports_celeb,@UKCoachCalipari,Congratulations @KevKnox! Proud of you! https://t.co/wInjgrlzqY +06/21/2018,Sports_celeb,@UKCoachCalipari,"Had a chance to see legendary and longtime Dodgers manager Tommy Lasorda, Cowboys coach Jason Garrett, and my good… https://t.co/vIKcVryzHX" +06/21/2018,Sports_celeb,@UKCoachCalipari,You know I had to stop by the @Yankees game before tonight’s #NBADraft. Former @UKBaseball pitcher James Paxton is… https://t.co/3Z5ZLCvvfQ +06/21/2018,Sports_celeb,@UKCoachCalipari,"Great time yesterday speaking to WinFieldUnited, a wholly owned subsidiary of Land O’ Lakes. Spent some time /their… https://t.co/VkERHdSwBF" +06/21/2018,Sports_celeb,@UKCoachCalipari,I always love rubbing up against the coach that won the national title. Hopefully it rubs off on us! Had a great ti… https://t.co/Qs3fnY8BUn +06/21/2018,Sports_celeb,@UKCoachCalipari,I lit five candles this morning at St. Patrick’s Cathedral. Who do you think they were for? https://t.co/YaH6BeogsR +06/20/2018,Sports_celeb,@UKCoachCalipari,"Our fans know when it comes to talent and experience, I’m always picking talent, but Reid gives us both. And what a… https://t.co/pvMYvzmPYW" +06/20/2018,Sports_celeb,@UKCoachCalipari,You’re talking about a two-time all-conference player who could have very well entered the NBA Draft with what he’s… https://t.co/jt4c9HiPXW +06/20/2018,Sports_celeb,@UKCoachCalipari,"I felt good about where we stood with next year’s team, but when I found out how much @2ReidTravis2 wanted to be he… https://t.co/sczVvdWRid" +06/19/2018,Sports_celeb,@UKCoachCalipari,My good friend Pace Cooper came to campus and brought his friend Gaines Sturdivant. Had a great time reminiscing an… https://t.co/tZKzdwRpZF +06/19/2018,Sports_celeb,@UKCoachCalipari,"If you all remember “Jersey Red” Ford from the 90s, this is Greg Ford, his son, and his family. Red’s grandson Etha… https://t.co/LlITJaWGTF" +06/19/2018,Sports_celeb,@UKCoachCalipari,"Really happy for @AntDavis23, a Hall of Fame player and person. Loved seeing him this weekend and can't wait to cel… https://t.co/Xo8Q5HfeiC" +06/19/2018,Sports_celeb,@UKCoachCalipari,"Had a chance this morning be in every gym and watching stations, games and the college practice of the older guys a… https://t.co/qujnrmKyvM" +06/18/2018,Sports_celeb,@UKCoachCalipari,"Had a chance to meet Teresa, Brian and Maddox Cope while on the #BigBlueCaravan tour today at Marshall County HS. T… https://t.co/SbDLEGtevW" +06/18/2018,Sports_celeb,@UKCoachCalipari,Having a blast with camp season both home and away. Our final two satellite camps will be June 24 in Franklin and M… https://t.co/SKvbzYlJlY +06/18/2018,Sports_celeb,@UKCoachCalipari,"I love how involved our players have been. Everyone, including @H23Ash, who just got to campus today, was really working." +06/18/2018,Sports_celeb,@UKCoachCalipari,Really good first day of Overnight Camp today. The Anthony Davis NBA group went through a college-like practice and… https://t.co/WBcmldsQRG +06/17/2018,Sports_celeb,@UKCoachCalipari,"He can do a little bit of everything, but what separates him from his peers is his playmaking ability and leadershi… https://t.co/zf5aPbYikH" +06/17/2018,Sports_celeb,@UKCoachCalipari,Ashton wanted this so much that he worked extremely hard in the classroom these last few months to finish up his hi… https://t.co/OTYo0zHATI +06/17/2018,Sports_celeb,@UKCoachCalipari,.@H23Ash wanted to be at Kentucky all along. When I found out how badly he wanted this and had a chance to see him… https://t.co/TVrHlGDVn6 +06/17/2018,Sports_celeb,@UKCoachCalipari,"The best thing Dad did for me and my sisters was take care of Mom when she got sick. It was a 24-7 job. Love you,… https://t.co/HgUhwiIRuz" +06/17/2018,Sports_celeb,@UKCoachCalipari,My own father worked 2-3 shifts to make our lives as comfortable as possible. He was an absolute grinder and taugh… https://t.co/F7NCxh1OYx +06/17/2018,Sports_celeb,@UKCoachCalipari,Happy Father's Day to all of the fathers out there who have made their lives about their family! +06/17/2018,Sports_celeb,@UKCoachCalipari,Happy birthday to @IQ_GodSon! Getting his first batch of Mrs. Cal’s birthday brownies today. They’re on the way! https://t.co/vf4Q3buXsp +06/16/2018,Sports_celeb,@UKCoachCalipari,Had to make a pit stop at the U.S. Embassy while on the road! I was greeted at the front by Joe and Kelly Craft! https://t.co/INVN3U7993 +06/16/2018,Sports_celeb,@UKCoachCalipari,Also had a chance to visit downtown and I ran into some fans from my UMass days! They were on campus when… https://t.co/MsLpQWlAR9 +06/16/2018,Sports_celeb,@UKCoachCalipari,"I found the presidential suite, where presidents stay when they visit. You know I had to put my toes up. Just neede… https://t.co/jRchwhGkjb" +06/16/2018,Sports_celeb,@UKCoachCalipari,How about this? EJ Montgomery grew up looking up to Anthony Davis and got to sit down and ask him for advice today… https://t.co/3BNiUXJALr +06/16/2018,Sports_celeb,@UKCoachCalipari,"Darius Miller was a joy to coach and I'm so proud of what he's accomplished as a basketball player, but this gives… https://t.co/fgx3lcvNSN" +06/15/2018,Sports_celeb,@UKCoachCalipari,Can’t wait to see the #BBN there! https://t.co/ziVjtNFflk +06/15/2018,Sports_celeb,@UKCoachCalipari,Had a great time with @AntDavis23 and his family and friends. Anthony was and continues to be the ultimate team pl… https://t.co/gtMGEXBv1z +06/15/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday to @UKDeWaynePeevy, who has been by my side since I got to Lexington. We've been through a lot toget… https://t.co/f9vdmHpBxE" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Two things always happen when I get with our players: One, they embellish, and two, they ask to see Mrs. Cal so they can get brownies. LOL" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Had to take @AntDavis23 past Royce Pulliam’s new barbershop, @Floyds99, to show him this. Glad I got to spend time… https://t.co/CysUTTKrFz" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Look who is in town! @AntDavis23, Big Anthony, Garrett Partman, Sherman Mussatto, Marvell Scott and Ayden Scott swu… https://t.co/52JnVUFC1C" +06/15/2018,Sports_celeb,@UKCoachCalipari,I have the greatest family. So great to read these from Megan and Erin this week. https://t.co/s5pL8iUT8u +06/14/2018,Sports_celeb,@UKCoachCalipari,Boyle County's own @JacobTamme at our Satellite Camp today. Jacob was one of @UKcoachbrooks’ first recruits at UK.… https://t.co/bDj6H5y16e +06/14/2018,Sports_celeb,@UKCoachCalipari,"Just got back from C.M. Newton's funeral. Unbelievably moving and touching to see all the friends, former players a… https://t.co/vAI2d8ukY9" +06/14/2018,Sports_celeb,@UKCoachCalipari,"I've really enjoyed our Father's Day series this week, but reading this from @TheErinCalipari today was a real joy.… https://t.co/BQQY20J6zk" +06/13/2018,Sports_celeb,@UKCoachCalipari,"When you talk about being around greatness, this guy is around it every day. Eduardo G Luna groomed both American P… https://t.co/qfH58CeTM7" +06/13/2018,Sports_celeb,@UKCoachCalipari,Thank you to Elliott Walden and his wife Rebecca of @WinStarFarm for allowing our team to spend time with a Triple… https://t.co/DrOOHMyTiV +06/13/2018,Sports_celeb,@UKCoachCalipari,"Was a celebrity judge on @BravoTopChef with Ed Lee, a great guy who helped me feel comfortable. Has great restuaran… https://t.co/Ueowa3gKBH" +06/13/2018,Sports_celeb,@UKCoachCalipari,"My good friend from Memphis Herb O’Mell passed away today. I never saw him without a smile on his face. Praying for him and his wife, Laura." +06/12/2018,Sports_celeb,@UKCoachCalipari,"Had a lot of fun with @tomcolicchio, @grahamelliot, @chefedwardlee and @notesfromacook today at Rupp. You guys are… https://t.co/b51n3lABrS" +06/12/2018,Sports_celeb,@UKCoachCalipari,It was great meeting @PadmaLakshmi and spending time with the @BravoTopChef crew today. I finally learned there's… https://t.co/denoX2blSn +06/12/2018,Sports_celeb,@UKCoachCalipari,I wanted to make sure we everyone got a chance to come to this camp. We've had such a positive response to it that… https://t.co/OeXtBCaQrZ +06/12/2018,Sports_celeb,@UKCoachCalipari,Looking back through some old photos and saw this today. Happened about a year ago at this time. Still just as prou… https://t.co/jVIgAizwtE +06/12/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday, @jemarlbakerjr! Birthday brownies coming right up! https://t.co/bplr9pNU6Q" +06/12/2018,Sports_celeb,@UKCoachCalipari,Julius Mays is a great young man and I am so proud of how committed he is to his family. I hope the Father's Day s… https://t.co/ZU007mnwvJ +06/11/2018,Sports_celeb,@UKCoachCalipari,"Staley Cates, George Cates and pastor John Bryson from Memphis stopped in today. Great friends! https://t.co/gCUPOeFWJ0" +06/10/2018,Sports_celeb,@UKCoachCalipari,"With Father's Day coming up, we are going to celebrate fatherhood all week on @CoachCalDotCom. I think #BBN is real… https://t.co/UfK5nJ45x5" +06/10/2018,Sports_celeb,@UKCoachCalipari,More than one big race going on today! Heard @KentuckyTrack’s @GoSydGo and @JCamachoQuinn won NCAA titles tonight. What a day! #FloKnows +06/10/2018,Sports_celeb,@UKCoachCalipari,.@TheRealJeffRuby!!! https://t.co/yxpGPq7w0E +06/10/2018,Sports_celeb,@UKCoachCalipari,We even ran into @tomleachKY at the track. Tom knows his @KentuckyMBB but he may know even more about horse racing.… https://t.co/5rABhewZFp +06/10/2018,Sports_celeb,@UKCoachCalipari,At the finish with @bradcalipari. #TripleCrown https://t.co/Rz93OFNqI8 +06/10/2018,Sports_celeb,@UKCoachCalipari,"Congratulations to Justify and everyone with @WinStarFarm! Unbelievable day, unbelievable team and unbelievable hor… https://t.co/nVpa4d4QRx" +06/10/2018,Sports_celeb,@UKCoachCalipari,"Look who we ran into at the track: @J30_RANDLE and his wife, @KendraRandle_. https://t.co/qLjwWyZKxy" +06/09/2018,Sports_celeb,@UKCoachCalipari,Got to meet the grandson of former UK president Frank Dickey at the Belmont! https://t.co/skssfCjZwn +06/09/2018,Sports_celeb,@UKCoachCalipari,Belmont. Triple crown. GoJustify! https://t.co/nPMsqVTcgl +06/09/2018,Sports_celeb,@UKCoachCalipari,At the Belmont hanging with Hall of Fame trainer Bob Baffert and Winstar Farms owner Kenny Troutt and his wife Lisa. https://t.co/a9sTAl9wv5 +06/09/2018,Sports_celeb,@UKCoachCalipari,"I’m not sure who is having more fun at our #FatherSon Camp, the kids or their dads. https://t.co/TUBlpk60UP" +06/09/2018,Sports_celeb,@UKCoachCalipari,"My nephew Chad Geary and his son, Conner, are at our #FatherSon Camp. Conner went nuts when his dad made a shot! https://t.co/cMjmtdhKS4" +06/09/2018,Sports_celeb,@UKCoachCalipari,"We will end up having more than 2,000 participants over our three Father/Son Camps over the next three weekends. Lo… https://t.co/heUeJQeOYz" +06/09/2018,Sports_celeb,@UKCoachCalipari,Our #FatherSon Camps are always one of my favorite things we do. To see the kids learning from our staff and player… https://t.co/S6U79zO2xt +06/08/2018,Sports_celeb,@UKCoachCalipari,Our guys have been having as much fun as the kids this week. I hope #BBN has enjoyed getting to know our team at t… https://t.co/j4yuUmTxkb +06/08/2018,Sports_celeb,@UKCoachCalipari,Still have a few roster spots open in my seventh annual Fantasy Experience! This year’s charitable event is in the… https://t.co/0q6Sz2mevP +06/08/2018,Sports_celeb,@UKCoachCalipari,"Hey #BBN, don't miss @UKOperaTheatre’s It's a Grand Night for Singing! You'll love the show by @emccorvey. It opens… https://t.co/aZZFyKjuC4" +06/07/2018,Sports_celeb,@UKCoachCalipari,.@bradcalipari and I looking for jackets at Crittenden! Looking forward to his trunk show on June 14-15 at both the… https://t.co/EuJW4nBT4O +06/06/2018,Sports_celeb,@UKCoachCalipari,The @MarkKrebsJr Factor and his son at our Satellite Camp in Louisville!! Another sign that I’m getting old! https://t.co/vnOc0GZFGw +06/06/2018,Sports_celeb,@UKCoachCalipari,The Nutters with Ohio congressman Rick Perales. https://t.co/LbfOYWHPhB +06/06/2018,Sports_celeb,@UKCoachCalipari,Spent time with @athletesinaction staff along with @UKAthletics supporters and philanthropists Bob and Mary Nutter.… https://t.co/3l49rcsgHg +06/06/2018,Sports_celeb,@UKCoachCalipari,I was asked to speak to the @usafootball team before the team goes to China to compete for gold. The camp was held… https://t.co/uCUzdJmDys +06/06/2018,Sports_celeb,@UKCoachCalipari,Today is my mother- and father-in-law’s 65th wedding anniversary! Sue and Ray have made it look easy. I wish them m… https://t.co/rD1aZLXnGX +06/05/2018,Sports_celeb,@UKCoachCalipari,Good luck to Coach Flo and @KentuckyTrack at this week’s #NCAATF Championships! https://t.co/nppu9n6qJL +06/05/2018,Sports_celeb,@UKCoachCalipari,Makes me happy when I’m pulling in my office at 10 p.m. and the facility lights are on. Guys are working!l already!… https://t.co/F02FNqrj4B +06/05/2018,Sports_celeb,@UKCoachCalipari,I wrote some thoughts about my friend last week. He taught me so much and made me a part of his family. I’ll miss h… https://t.co/XyMeS5hK4r +06/05/2018,Sports_celeb,@UKCoachCalipari,"An hour or so ago, C.M. Newton passed away. Please keep him and his family in your prayers. During one of the most… https://t.co/8vDVPjAGdy" +06/04/2018,Sports_celeb,@UKCoachCalipari,Stopped at the Barton 1792 Distillery on the way out of Bardstown to congratulate Steve Hill on his retirement. St… https://t.co/c8kSBdeg8t +06/04/2018,Sports_celeb,@UKCoachCalipari,Our satellite camp in Bardstown was outstanding as usual and it gave me a chance to visit one of the great cathedra… https://t.co/1coV4GYKAQ +06/02/2018,Sports_celeb,@UKCoachCalipari,Had a break in Colorado Springs. Lunch in the mountains! https://t.co/JL19R0wNH7 +06/02/2018,Sports_celeb,@UKCoachCalipari,My boys just opened up a new gym in Lexington: @ebf_kentucky. Unbelievable spot! Rock Oliver tells me EBF is the be… https://t.co/z19a3nNTWV +06/01/2018,Sports_celeb,@UKCoachCalipari,With two great Italians: soccer great @vieri_bobo and Hollywood star @danny_abeckaser! https://t.co/ApHQxrkUmx +06/01/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday to @2willbarton3! Exciting time for Will, who is getting married in a month and will play a big part… https://t.co/hNlXcQFRHJ" +06/01/2018,Sports_celeb,@UKCoachCalipari,"It's almost time for our camp season to kick off and I can't wait to see everyone at our camps. + +If you haven't sig… https://t.co/rSfvq75xKc" +05/31/2018,Sports_celeb,@UKCoachCalipari,I'm excited for what PJ can do for himself and our team this year and I support Wenyen and Jarred as they pursue th… https://t.co/559eb6MWfB +05/31/2018,Sports_celeb,@UKCoachCalipari,"#BBN, I am asking that you please keep my dear friend C.M. Newton in your prayers. + +https://t.co/ZwDgjbciQl" +05/31/2018,Sports_celeb,@UKCoachCalipari,"As I said before, we've only seen a small part of Jarred's game because of the adversity he faced this season, but… https://t.co/BvnVT6eXwr" +05/31/2018,Sports_celeb,@UKCoachCalipari,"On the other hand, he's seen how quickly this can be taken away. I completely understand and support his decision t… https://t.co/p0ta2yrT4g" +05/31/2018,Sports_celeb,@UKCoachCalipari,.@JVando had a difficult decision to make. I know he has been pulled in two different directions. On one hand he wa… https://t.co/JUhEfuo42g +05/31/2018,Sports_celeb,@UKCoachCalipari,"#BBN, let's show him our support. @JVando went through a lot this season and can't wait to see what he is going to… https://t.co/eoYbtNbEx7" +05/30/2018,Sports_celeb,@UKCoachCalipari,"This greeted me in my office on returning from the #SECSpringMeetings. A good man and a good woman. We miss you, Co… https://t.co/DhLDv1EZPr" +05/30/2018,Sports_celeb,@UKCoachCalipari,"Wenyen grew so much from his freshman season to his sophomore year. If he continues to make those same strides, he’… https://t.co/sYWgJgaeFi" +05/30/2018,Sports_celeb,@UKCoachCalipari,".@WenyenGabriel's game is where the league continues to trend towards. He’s a position-less big man who can shoot,… https://t.co/JrrRcPforg" +05/30/2018,Sports_celeb,@UKCoachCalipari,Go do your thing! You've got our full support. https://t.co/sMcVqeRNIV +05/30/2018,Sports_celeb,@UKCoachCalipari,"What I love most about this decision is why PJ is doing it. He told me he wants to come back to be a leader, to gro… https://t.co/B98kiY7yyG" +05/30/2018,Sports_celeb,@UKCoachCalipari,"I know how good of a player he is and think he showed it at times last season, but I’m looking forward to seeing him grow and build on it." +05/30/2018,Sports_celeb,@UKCoachCalipari,"Whatever PJ decided we were going to support, but I’m really happy with the decision he’s come to because I really… https://t.co/gpOE1MJDRI" +05/30/2018,Sports_celeb,@UKCoachCalipari,This is what the NBA Draft rules are in place for. @PJWashington was able to test the waters and get all the inform… https://t.co/DULKjfhOkT +05/30/2018,Sports_celeb,@UKCoachCalipari,"Happy for you, kid. Let's go chase something special. https://t.co/33D0gVIbLM" +05/30/2018,Sports_celeb,@UKCoachCalipari,"Catching up with my old athletic director, R.C. Johnson, and his wife, Melba, in Destin for the #SECmeetings. https://t.co/Ofws6ohP9o" +05/29/2018,Sports_celeb,@UKCoachCalipari,Another big game for @bradcalipari overseas. Went for 17 points and six assists in his final game today! Looking fo… https://t.co/DS0WrK2lPO +05/29/2018,Sports_celeb,@UKCoachCalipari,"Another big game for @bradcalipari! He scored 14 points, had eight assists and was 4 of 5 from 3. Proud of him." +05/28/2018,Sports_celeb,@UKCoachCalipari,"True servant leaders care more for their brothers, their teammates and their units more than themselves. Today, on… https://t.co/MvY7yjNR2E" +05/28/2018,Sports_celeb,@UKCoachCalipari,I saw an older veteran being interviewed today about the fear of going into battle and his comment struck me. He sa… https://t.co/5tGzWAnG28 +05/28/2018,Sports_celeb,@UKCoachCalipari,"As I’m watching war movies today, from Patton to Casualties of War and others, I’m reminded of how blessed we are t… https://t.co/l0hbMnuxyl" +05/27/2018,Sports_celeb,@UKCoachCalipari,.@bradcalipari is overseas this week playing on a basketball tour with Global Sports Academy. He had 17 points and… https://t.co/lNpQBNduNm +05/25/2018,Sports_celeb,@UKCoachCalipari,Every player is on their own path. When you think about what Isaiah accomplished in two years here and Dom accompli… https://t.co/WOqqGJFP3L +05/25/2018,Sports_celeb,@UKCoachCalipari,Couldn’t be more proud of @AntDavis23 being the third-leading vote-getter behind @KingJames and @JHarden13. He just… https://t.co/LFNPKKhEkx +05/25/2018,Sports_celeb,@UKCoachCalipari,Happy to see @ZayBriscoe and @Dhawk_25 enjoying success overseas. I know those two will grind to make their dreams… https://t.co/mcfgRKrbcp +05/25/2018,Sports_celeb,@UKCoachCalipari,I think our fans are really going to enjoy these upgrades. @Rupp_Arena has long been the gold standard in college b… https://t.co/wJeJHN0aiQ +05/22/2018,Sports_celeb,@UKCoachCalipari,How about @TwanyBeckham11? Happy for him! https://t.co/BKmTfP88a5 +05/21/2018,Sports_celeb,@UKCoachCalipari,One of the most gratifying times of my coaching career has been watching Brad grow and develop to the man he is tod… https://t.co/eVJTgIODD6 +05/21/2018,Sports_celeb,@UKCoachCalipari,"Like his dad, he's got a fighter's mentality and there is no doubt in my mind he's going to scratch and claw his wa… https://t.co/X7pvDghAMX" +05/21/2018,Sports_celeb,@UKCoachCalipari,"We've always been an option for him, but we wanted Zan to make this decision on his own. I'm so happy he's decided… https://t.co/hvtsxSvBfZ" +05/21/2018,Sports_celeb,@UKCoachCalipari,Every conversation Kenny and I have had about @young_payne2321 has been about what's best for Zan. I wanted Kenny t… https://t.co/LKa1CstxYe +05/21/2018,Sports_celeb,@UKCoachCalipari,"#BBN, we've added a stop to our Satellite Camp tour, which begins in just a couple weeks. We'll be headed to Boyle… https://t.co/5Kp0SPDLIK" +05/20/2018,Sports_celeb,@UKCoachCalipari,Congratulations to @UKCoachLawson and @UKsoftball! https://t.co/gxBcdooQPr +05/20/2018,Sports_celeb,@UKCoachCalipari,"Yes, that’s @KarlTowns. LOL. How old do you think he is in this pic? https://t.co/2JCRf5JAqr" +05/20/2018,Sports_celeb,@UKCoachCalipari,"John Maxwell, one of my mentors. https://t.co/tpxsL4TG1Z" +05/20/2018,Sports_celeb,@UKCoachCalipari,Two great leaders! https://t.co/Jztqgb9b1h +05/20/2018,Sports_celeb,@UKCoachCalipari,"Dinner with great friends tonight in Newport Beach: Robert Lara, @KarlTowns, @J30_RANDLE and Billy Bayno. John Maxw… https://t.co/Eh2DGeFJMy" +05/20/2018,Sports_celeb,@UKCoachCalipari,Did Justify win again?!? What?!? Love it for my friends at @WinStarFarm! +05/19/2018,Sports_celeb,@UKCoachCalipari,"By the way, no golf for me. Still recuperating. Back to resting for 10 days after this trip." +05/19/2018,Sports_celeb,@UKCoachCalipari,"We’ve got a winner! Chris, check your direct messages in a few minutes and we will get your contact info to get you… https://t.co/6Eta90FQWr" +05/19/2018,Sports_celeb,@UKCoachCalipari,"Any guesses where I'm at exactly, by the way? First correct response will get one of my Hall of Fame coins. https://t.co/9H6235C0MD" +05/19/2018,Sports_celeb,@UKCoachCalipari,"Speaking out west after being in Chicago with @PJWashington, @shaiglalex and @hamidoudiallo last night for the… https://t.co/Yy7A12YmY9" +05/19/2018,Sports_celeb,@UKCoachCalipari,I’m happy @taiwynyard decided on Santa Clara. Coach Herb Sendek is a friend from Pittsburgh. He was an assistant at… https://t.co/SyL7StRvmx +05/18/2018,Sports_celeb,@UKCoachCalipari,"Sad to hear that Bret Bearup passed away suddenly. A former Kentucky player for Coach Hall, I’ve known Bret since m… https://t.co/IhrdiYa6UE" +05/17/2018,Sports_celeb,@UKCoachCalipari,Good luck to @UKCoachLawson and the @UKsoftball team tomorrow. Incredible job that Coach Lawson does every year. Th… https://t.co/wlzFvXITj1 +05/17/2018,Sports_celeb,@UKCoachCalipari,"Utah gives us a great opponent for our fans at home next season, & then in 2019, our fans can spend a week with us… https://t.co/dK8dHjfy6e" +05/17/2018,Sports_celeb,@UKCoachCalipari,I promised you some schedule news. One of the things I hear most about from our fans is they enjoy traveling w/us &… https://t.co/fV4oLlOgfE +05/17/2018,Sports_celeb,@UKCoachCalipari,Wow! Congrats to Coach Craig and the guys. Looks like I know who to call to help me with my game. https://t.co/kYecgQ1Gkv +05/16/2018,Sports_celeb,@UKCoachCalipari,"I am devastated tonight over the passing of my friend and mentor, Mike Slive. I knew Mike was not feeling great an… https://t.co/Z0z3w5AkZD" +05/16/2018,Sports_celeb,@UKCoachCalipari,"If they decide to pursue their genius and play professional basketball, they know they have lifetime scholarships s… https://t.co/gbEYiDl8JS" +05/16/2018,Sports_celeb,@UKCoachCalipari,Our kids are committed to learning and take care of business in the classroom. We teach growth in all areas. It's w… https://t.co/l1jIo6BKuJ +05/16/2018,Sports_celeb,@UKCoachCalipari,For some kids that's playing professionally. For others it's outside of basketball. Whatever they decide to do – wh… https://t.co/RQ69WG5XcN +05/16/2018,Sports_celeb,@UKCoachCalipari,"Proud of this and happy for our guys, @UKMichaelStone and our CATS staff. Our whole mindset is preparing our kids f… https://t.co/sxwvJwGLZj" +05/16/2018,Sports_celeb,@UKCoachCalipari,"The first time I heard it I thought I heard five star. The second time I listened to it, it without question says L… https://t.co/u2vhBlwLem" +05/15/2018,Sports_celeb,@UKCoachCalipari,"A great kid headed to play for a great coach, a great program and a great school. I wish @SKJ all the best. https://t.co/lNsWgfUZlx" +05/14/2018,Sports_celeb,@UKCoachCalipari,"What I love about him is he models his game after @AntDavis23, one of the best we’ve ever had, but wants to be his… https://t.co/sTJJhG1O9v" +05/14/2018,Sports_celeb,@UKCoachCalipari,EJ is the type of position-less player the game is moving towards. He can play just about anywhere and make plays o… https://t.co/i00klmjBi7 +05/14/2018,Sports_celeb,@UKCoachCalipari,I hope our fans understand just how good @E_Montomery is and how excited we are to have him. You’re talking about a… https://t.co/bAJsA3b8Q4 +05/14/2018,Sports_celeb,@UKCoachCalipari,"Been out it recovering but just got caught up on a great weekend. Heard @GoSydGo & @JCamachoQuinn got gold at SECs,… https://t.co/YGVhCJjnUW" +05/14/2018,Sports_celeb,@UKCoachCalipari,"I want to congratulate @JustMarcusLee on graduating this weekend. Even though Marcus didn’t finish with us, I’m jus… https://t.co/7LlB7l6xBT" +07/02/2018,Sports_celeb,@RSherman_25,RT @AaronWilson_NFL: Giants safety Michael Thomas (Aldine Nimitz) awards scholarship at camp https://t.co/Mc1B2AHI7L via @HoustonChron +07/02/2018,Sports_celeb,@RSherman_25,@prichiejr Hahahaha better late than never my brother +07/02/2018,Sports_celeb,@RSherman_25,@BJack9TTU @derekcarrqb @Lakers 😂🤣 +07/02/2018,Sports_celeb,@RSherman_25,@GeorgeFant74 We got room. It’s gonna be hard to argue now +07/02/2018,Sports_celeb,@RSherman_25,@Bwagz I know. We need more though +07/01/2018,Sports_celeb,@RSherman_25,"RT @IntThings: Don't let anyone tell you there's something you can't do. If you have a dream, protect it. If you want something, go get it" +06/30/2018,Sports_celeb,@RSherman_25,@byrneskramstad Not at all. Same size. Same width. I have changed teams since I was in youth football. I worry… https://t.co/hNGWgrH6Gm +06/30/2018,Sports_celeb,@RSherman_25,Let’s get it @TigerWoods https://t.co/Nz3vs5BSrs +06/30/2018,Sports_celeb,@RSherman_25,@MikeDavisRB Smh all these kids talking about getting “physical” +06/30/2018,Sports_celeb,@RSherman_25,@MikeDavisRB Mike you gotta get them boys right! +06/29/2018,Sports_celeb,@RSherman_25,@thewiz0915 We have different ears +06/29/2018,Sports_celeb,@RSherman_25,@DDDGURU @ButcherBoy415 They may hate the truth +06/29/2018,Sports_celeb,@RSherman_25,Drake is speaking that honest on this new album. Just callin it how it is. +06/29/2018,Sports_celeb,@RSherman_25,@TheAdamsEra @AdrianColbert27 Big truth. +06/28/2018,Sports_celeb,@RSherman_25,RT @TFordFSP: .@RSherman_25 the GOAT was back in the lab grinding today! The comeback season is REAL! #CantCheatTheGrind #NFLOffSeasonGrind… +06/28/2018,Sports_celeb,@RSherman_25,"I love 🇺🇸 pride, don't you? You can still grab this tee in time for July 4th! + +Order here 👉🏿 https://t.co/SKhNwbd2rb https://t.co/N8Ohobrb7O" +06/28/2018,Sports_celeb,@RSherman_25,RT @wyche89: Good morning. @NFL Players keep walking the walk when it comes to community service and good deeds. Well done ⁦@marcelldareus⁩… +06/28/2018,Sports_celeb,@RSherman_25,@AdrianLaurel1 @footwork_king1 Thank you +06/27/2018,Sports_celeb,@RSherman_25,@whytewunder55 @footwork_king1 Thank you +06/27/2018,Sports_celeb,@RSherman_25,"RT @NoChillDe3zY: Now live, support is always appreciated 😎 https://t.co/LsL2XVXS8f https://t.co/mkDqqgZpec" +06/27/2018,Sports_celeb,@RSherman_25,RT @footwork_king1: @RSherman_25 out here getting this work in with me today. We got better today Sherm 💯 https://t.co/olBqlqj7mc +06/27/2018,Sports_celeb,@RSherman_25,Got some good work in with some of the best out there. @AqibTalib21 @_bigplayslay23 @XavierRhodes29_ @ahkello ...… https://t.co/xyuzgcMVmB +06/27/2018,Sports_celeb,@RSherman_25,"He knew I was a fan, so I got the first copy of @CrashBandicoot on Xbox One. Thank you Crash!!… https://t.co/8QLO8tI4C2" +06/26/2018,Sports_celeb,@RSherman_25,"RT @footwork_king1: I put my boys Richard Sherman, Aqib Talib, Xavier Rhodes and Darius Slay through some solid work today! We are right ba…" +06/23/2018,Sports_celeb,@RSherman_25,RT @JaValeMcGee: June 23rd https://t.co/o0NZky3qXM +06/23/2018,Sports_celeb,@RSherman_25,@_ericdavis_ You can give some people all the ingredients and they still can’t make a cake lol. The coordinator is who you study. +06/22/2018,Sports_celeb,@RSherman_25,"RT @geescottjr: The environment in the doors of @gofordsports is the BEST OF THE BEST! +@RSherman_25 and I talking some different release te…" +06/22/2018,Sports_celeb,@RSherman_25,@derekcarrqb Hopefully he falls to the Lakers +06/21/2018,Sports_celeb,@RSherman_25,"I've been working tirelessly with my design team this off-season, and we've come up with some great new gear for y'… https://t.co/FfWkclmE0v" +06/21/2018,Sports_celeb,@RSherman_25,"RT @49ers: Let's gooooo! 🔊 + +Sound up for @RSherman_25's first time mic'd up as a member of the 49ers https://t.co/wu07zr0XhB" +06/21/2018,Sports_celeb,@RSherman_25,"RT @SInow: If you’re ever in the Bay Area and need a place to crash, maybe you should check out which hotels Richard Sherman likes — he's s…" +06/20/2018,Sports_celeb,@RSherman_25,RT @NoChillDe3zY: 🚨New video alert🚨 Click here to see the whole video https://t.co/9U33csC1c7. here’s a quick snippet from our Extreme spic… +06/19/2018,Sports_celeb,@RSherman_25,@WillBlackmon 😡😡😡😡 +06/18/2018,Sports_celeb,@RSherman_25,@Teresa4ever12 Thank you +06/17/2018,Sports_celeb,@RSherman_25,RT @TFordFSP: My young bull is @BroncoSportsFB camp looking and playing like a created player! No questions to why he is considered one of… +06/17/2018,Sports_celeb,@RSherman_25,@JOKER23445 Thank you +06/17/2018,Sports_celeb,@RSherman_25,@terryhollimon Preciate you brother!! +06/17/2018,Sports_celeb,@RSherman_25,@Bwagz @UniversalORL 👏🏾👏🏾🙌🏾🙌🏾🙌🏾👏🏾 see that’s what I’m talking about!! Get ya wizarding bars up +06/17/2018,Sports_celeb,@RSherman_25,@SoooDonna Thank you +06/17/2018,Sports_celeb,@RSherman_25,@Bwagz @UniversalORL So you gonna just go with the jail house pose lol +06/17/2018,Sports_celeb,@RSherman_25,Happy Father’s Day to all the amazing Men out there setting an example for their kids and the men out there being f… https://t.co/2RQSYQYP6O +06/16/2018,Sports_celeb,@RSherman_25,RT @Michael31Thomas: Honored to serve the players https://t.co/4RrWCv089k +06/16/2018,Sports_celeb,@RSherman_25,@LossyP All good bro +06/16/2018,Sports_celeb,@RSherman_25,Opposite Day https://t.co/iD2mgX5sHU +06/16/2018,Sports_celeb,@RSherman_25,Great discussion at the @NFLPA offices today. Working to serve our players better. https://t.co/vbIoiMYKgN +06/16/2018,Sports_celeb,@RSherman_25,RT @ericwinston: Proud of the members of the EC here at the @nflpa offices speaking about the business of football. #pastpresentfuture http… +06/15/2018,Sports_celeb,@RSherman_25,They are gonna see ya light soon! https://t.co/6gotkjWJoK +06/15/2018,Sports_celeb,@RSherman_25,My brand new gear is hype😍 I'll even throw you free wristbands w/code JUNEGIFT18😏 . Just make sure you add them to… https://t.co/lmXMXAidbE +06/14/2018,Sports_celeb,@RSherman_25,@WatchJRoss They don’t lol. If anyone brought him they kids they are sick +06/14/2018,Sports_celeb,@RSherman_25,@WatchJRoss I’m done lmao 🤣😂 +06/14/2018,Sports_celeb,@RSherman_25,🤷🏾‍♂️ it’s life.... play hard ruffle some feathers ..... https://t.co/1i3ZbrvRvn +06/14/2018,Sports_celeb,@RSherman_25,😂🤣😂🤣 https://t.co/UPol1lC5Ia +06/13/2018,Sports_celeb,@RSherman_25,RT @MaioccoNBCS: Richard Sherman going through individual drills and helping Ahkello Witherspoon on final day of #49ers offseason program.… +06/13/2018,Sports_celeb,@RSherman_25,@Heisenberg415 Idk lol team issued +06/11/2018,Sports_celeb,@RSherman_25,It's not too late. You can still get Dad the perfect gift with expedited shipping👉🏿 https://t.co/CNKspogR5B https://t.co/zPuyRk15bz +06/11/2018,Sports_celeb,@RSherman_25,About to stream on @mixer with my boy @NoChillDe3zY @MikeDavisRB and @jay_ii_times https://t.co/7yNGXaqAeW +06/10/2018,Sports_celeb,@RSherman_25,@haha_cd6 I wish it was that easy for them to see. That a man has played at a certain level and deserves to be com… https://t.co/FiRftrxAvZ +06/10/2018,Sports_celeb,@RSherman_25,@realJayCarswell @haha_cd6 Obviously you don’t think winning is part of this business. The chances of winning go d… https://t.co/qHLmgQikBy +06/10/2018,Sports_celeb,@RSherman_25,@haha_cd6 No one does. If they can’t understand it they are just ignorant which wouldn’t be surprising +06/10/2018,Sports_celeb,@RSherman_25,"RT @DjCobreezy: July 1st At Thibodaux High School In Thibodaux,La @TrovonReed Presents His 1st Annual Celebrity Basketball Game Just Named…" +06/08/2018,Sports_celeb,@RSherman_25,"Celebrate the 4th Of July with my limited edition tee. Grab yours, only here👉🏿 https://t.co/S8IlWlV6sn 🎆🇺🇸 https://t.co/hXgwrQhHIa" +06/08/2018,Sports_celeb,@RSherman_25,@WaltThurm3 Right. Didn’t look right to them then 🤷🏾‍♂️ +06/07/2018,Sports_celeb,@RSherman_25,RT @BleacherReport: Malcolm Jenkins responds to Eagles being uninvited to White House solely using signs (via @SheilKapadia) https://t.co/z… +06/07/2018,Sports_celeb,@RSherman_25,@justjanr I appreciate tote service! +06/05/2018,Sports_celeb,@RSherman_25,@chrisyanke Thank you so much! +06/05/2018,Sports_celeb,@RSherman_25,It’s called Propaganda. It’s been used before but hey.... “those who forget history are doomed to repeat it” https://t.co/I5hcrmKafx +06/04/2018,Sports_celeb,@RSherman_25,@chrisyanke Preciate you!! +06/03/2018,Sports_celeb,@RSherman_25,RT @DrinkBODYARMOR: Own the octagon with #SuperiorHydration. Our newest flavor Knockout Punch is in stores now! 💪@ufc #ObsessedWithBetter h… +06/03/2018,Sports_celeb,@RSherman_25,RT @Team_Penske: 2nd pole of 2018 for @Blaney. #Pocono400 https://t.co/XcqgtAIuCO +06/03/2018,Sports_celeb,@RSherman_25,"RT @DrinkBODYARMOR: 🚨BREAKING🚨BODYARMOR now available at your local @7eleven! Orange Mango, Knockout Punch, Blackout Berry and Strawberry B…" +06/01/2018,Sports_celeb,@RSherman_25,@JuiceCheck44 @Quaski29 I think he got it out of your locker Juice. +05/31/2018,Sports_celeb,@RSherman_25,@Trent5Taylor @AdrianColbert27 🙄🙄🙄 +05/31/2018,Sports_celeb,@RSherman_25,@ithinkitwasCJ3 Sounds like your the problem 🤷🏾‍♂️ +05/30/2018,Sports_celeb,@RSherman_25,@AdrianColbert27 🤔🤔🤔🤔.....🧐🧐🧐......🤷🏾‍♂️🤷🏾‍♂️🤷🏾‍♂️....👌🏾👌🏾👌🏾 +05/30/2018,Sports_celeb,@RSherman_25,@RachelAmaryah Thank you +05/29/2018,Sports_celeb,@RSherman_25,Man they were goin! https://t.co/HCI84RcyFi +05/28/2018,Sports_celeb,@RSherman_25,@JCB_511 @jenniferleechan Done +05/28/2018,Sports_celeb,@RSherman_25,@AB_EMS05 @jenniferleechan @NinersNation Thank you +05/28/2018,Sports_celeb,@RSherman_25,@BygMan85 @jenniferleechan Thank you +05/28/2018,Sports_celeb,@RSherman_25,@RaytronHarris @highitsjesss @JulioXCI_LGND Lol Preciate that heads up but I’m in a forgiving mood +05/28/2018,Sports_celeb,@RSherman_25,@TylerNoble1 @ZachDiele12 Done +05/28/2018,Sports_celeb,@RSherman_25,@CeeJGomez @andrewb3 Done and congrats +05/28/2018,Sports_celeb,@RSherman_25,Final hours ⏰. Save on my gear while you can👉🏿 https://t.co/AR1NUErU3u https://t.co/63Id4nYvQE +05/28/2018,Sports_celeb,@RSherman_25,@averagejaypapi Much appreciated +05/28/2018,Sports_celeb,@RSherman_25,@leftymo @jenniferleechan Lmao good luck with that +05/28/2018,Sports_celeb,@RSherman_25,@breezyy77 It’s gonna be fun +05/28/2018,Sports_celeb,@RSherman_25,@EnreekayCampos @49ers It’s gonna be a fun ride +05/28/2018,Sports_celeb,@RSherman_25,@Hawk_Talk_ Thank you +05/28/2018,Sports_celeb,@RSherman_25,@betsyannfay Thank you I appreciate you guys still. +05/28/2018,Sports_celeb,@RSherman_25,@dperret2020 @GottaGetIt81 Was wondering how many you made? https://t.co/xMTcToQm87 +05/28/2018,Sports_celeb,@RSherman_25,@JazLail Well I don’t control his twitter lol only mine +05/28/2018,Sports_celeb,@RSherman_25,@AlecMarcus16 Pay them!!! +05/28/2018,Sports_celeb,@RSherman_25,@_ericdavis_ 🤷🏾‍♂️ +05/28/2018,Sports_celeb,@RSherman_25,@ShawnLeeMinor Just doing what I can +05/28/2018,Sports_celeb,@RSherman_25,@realsmoovelike @TroyLLF Respect +05/28/2018,Sports_celeb,@RSherman_25,@MikeDavisRB @FortniteGame I’m about to hop on +05/28/2018,Sports_celeb,@RSherman_25,@Hip_Arriaga Lol Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@IM_Stretch @SneakerWhorez Not blocked +05/28/2018,Sports_celeb,@RSherman_25,@Tlock20 @FlyingOrr Done +05/28/2018,Sports_celeb,@RSherman_25,@VI_MOBB @iBurnCookiez Done +05/28/2018,Sports_celeb,@RSherman_25,@adam_gronberg https://t.co/CUWpZVeggM +05/28/2018,Sports_celeb,@RSherman_25,@Chavez4L @Ferndoggy831 Done +05/28/2018,Sports_celeb,@RSherman_25,@VMascoe Thank you +05/28/2018,Sports_celeb,@RSherman_25,@JSiAirborne @therealSethI Done +05/28/2018,Sports_celeb,@RSherman_25,@chrisroth408 @cbrown2727 Done +05/28/2018,Sports_celeb,@RSherman_25,@GaetaJason @Its_Papas Done +05/28/2018,Sports_celeb,@RSherman_25,@rjmadrid @Chazperin Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@Ericwgreene1977 Thank you +05/28/2018,Sports_celeb,@RSherman_25,@TucsonFan4 @maiyahall Done +05/28/2018,Sports_celeb,@RSherman_25,@Ericwgreene1977 Hahaha prob because they cut me.... may want to talk to them +05/28/2018,Sports_celeb,@RSherman_25,@jtof49 @EnreekayCampos Done +05/28/2018,Sports_celeb,@RSherman_25,@realmarshall73 Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@2nQue @mikeybadaluco Done +05/28/2018,Sports_celeb,@RSherman_25,@_ericdavis_ Lol just a bit of a misunderstanding +05/28/2018,Sports_celeb,@RSherman_25,@Goat_Tom_Brady Wasn’t invited +05/28/2018,Sports_celeb,@RSherman_25,@TheDudeSisco @AlePlaysWStars Done +05/28/2018,Sports_celeb,@RSherman_25,@cougski I appreciate that. But they fired me. +05/28/2018,Sports_celeb,@RSherman_25,@McMahonProject Thank you +05/28/2018,Sports_celeb,@RSherman_25,@k_welk @JulioXCI_LGND No block +05/28/2018,Sports_celeb,@RSherman_25,@HoneyBadger49er @Mbone49ers Done +05/28/2018,Sports_celeb,@RSherman_25,@808Ace49 @MylesInSF Done +05/28/2018,Sports_celeb,@RSherman_25,@RoachTheSecond @NickCaroccia Done +05/28/2018,Sports_celeb,@RSherman_25,@Yoni_T @Raph4real Done +05/28/2018,Sports_celeb,@RSherman_25,@Hondo1731 Ur not blocked +05/28/2018,Sports_celeb,@RSherman_25,@travissouders Thank you +05/28/2018,Sports_celeb,@RSherman_25,@SeahawkScout Lmao I’m just keeping it 💯 +05/28/2018,Sports_celeb,@RSherman_25,@al3eexiisss You are kinda part of it +05/28/2018,Sports_celeb,@RSherman_25,@RANBOY_D_Go 🤷🏾‍♂️ +05/28/2018,Sports_celeb,@RSherman_25,@davidson_caleb Lol man I’m real +05/28/2018,Sports_celeb,@RSherman_25,I’m trying to find a way to unlock these niner fans. So if you have a friend that I have blocked tag them so I can… https://t.co/YEFF85Pcbi +05/28/2018,Sports_celeb,@RSherman_25,@GottaGetIt81 Greatness usually wins more than 40% of the finals they play in but hey. I guess there is someone for everyone +05/28/2018,Sports_celeb,@RSherman_25,@al3eexiisss If you are a marvel universe fan then shame on you! +05/28/2018,Sports_celeb,@RSherman_25,@Saulururur I was thinking that. It breaks so many rules.. +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss @JulioXCI_LGND See you then +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss @JulioXCI_LGND Done +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss Yea no one has sent me a list lol +05/28/2018,Sports_celeb,@RSherman_25,@DrJasonJohnson What are movies without special effects tho? +05/28/2018,Sports_celeb,@RSherman_25,@TheAceOfSpades3 I can’t say will Wheaton without thinking of Stevie on family guy saying it. +05/28/2018,Sports_celeb,@RSherman_25,@Jennster83 What did you think? +05/28/2018,Sports_celeb,@RSherman_25,@TheAceOfSpades3 Yea they have to put that cinematic touch on it. +05/28/2018,Sports_celeb,@RSherman_25,@samvalenti1 How?!?!?!? +05/28/2018,Sports_celeb,@RSherman_25,@dcalltheway88 I saw it! Really liked it +05/28/2018,Sports_celeb,@RSherman_25,@S0UL42 I’m going to read the book after. +05/28/2018,Sports_celeb,@RSherman_25,@ConnorHawks12 I really liked it. My wife didn’t. They tied together some loose ends +05/28/2018,Sports_celeb,@RSherman_25,@samvalenti1 Which one? +05/28/2018,Sports_celeb,@RSherman_25,@2KEEMdomCome Gonna have to check it out! +05/28/2018,Sports_celeb,@RSherman_25,At least Deadpool 2 was good. Still need to see Ready player 1 even though most say it’s nothing like the book. +05/28/2018,Sports_celeb,@RSherman_25,@TravisWeyand And got how many more calls? +05/28/2018,Sports_celeb,@RSherman_25,@notBryBry The fact that Boston has won every single game in this series at home by double digits is not a fact. T… https://t.co/2gI6uq6SAE +05/28/2018,Sports_celeb,@RSherman_25,@MarvinP253 U don’t need to. Just need to make the right calls at the right time. Back players off so they don’t… https://t.co/T7y2WRExtx +05/28/2018,Sports_celeb,@RSherman_25,@MurcBlu @vtmobilewash Correct. Just like to point it out +05/28/2018,Sports_celeb,@RSherman_25,@amolsachdev They have literally have won every game in Boston by double digits but all of a sudden Cleveland witho… https://t.co/fBnEFmYBlT +05/28/2018,Sports_celeb,@RSherman_25,So predictable.... +05/28/2018,Sports_celeb,@RSherman_25,@Tosscarli Nope just the non calls and over calls on certain ppl that dictate how hard you can play on defense but… https://t.co/PwfRiR7oJC +05/28/2018,Sports_celeb,@RSherman_25,And here it comes.... +05/28/2018,Sports_celeb,@RSherman_25,Hopefully the fourth is filled with “Let’em play” +05/28/2018,Sports_celeb,@RSherman_25,This game looks controlled 🙄.... the things that makes sports fun is the unpredictable nature.... this is predictab… https://t.co/gsL1U1cmUj +05/27/2018,Sports_celeb,@RSherman_25,@EliHarold_ Told you +05/27/2018,Sports_celeb,@RSherman_25,@1Tyvis 🤷🏾‍♂️ just wasting time +05/26/2018,Sports_celeb,@RSherman_25,@sonicsman Lmao let me know how that works out +05/26/2018,Sports_celeb,@RSherman_25,@JamesDockery31 Truth... +05/26/2018,Sports_celeb,@RSherman_25,@_bigplayslay23 Just wasting our time +05/26/2018,Sports_celeb,@RSherman_25,@EliHarold_ Graciously. They prob took him to get something to eat too +05/26/2018,Sports_celeb,@RSherman_25,@EliHarold_ Let me guess now. Hou vs. GS goes to 7. The NBA already knows it so why make us watch it. Let’s just… https://t.co/v87LumqKaS +05/26/2018,Sports_celeb,@RSherman_25,@qdiggs6 @AdrianColbert27 @cavs Just real. I don’t have a team In it but love seeing good basketball. They litera… https://t.co/lSy8IF0wp5 +05/26/2018,Sports_celeb,@RSherman_25,@LebadiahLonghrn @King_Guttah Lmao haha you have no idea +05/26/2018,Sports_celeb,@RSherman_25,@King_Guttah https://t.co/ZiMCvkMGLw +05/26/2018,Sports_celeb,@RSherman_25,@King_Guttah https://t.co/03ch5JJgJ1 +05/26/2018,Sports_celeb,@RSherman_25,It’s not fun to watch these NBA games when the game is called one sided. It’s so obvious. If they just wanted a g… https://t.co/YmncWN8E60 +05/26/2018,Sports_celeb,@RSherman_25,@RonboSports Yea it was it was good read +05/25/2018,Sports_celeb,@RSherman_25,@BournePoly11 You been going for it BR! Lmao +05/25/2018,Sports_celeb,@RSherman_25,@Jerky_Rice Going to check it out +05/25/2018,Sports_celeb,@RSherman_25,@Jordanalmeida_7 Read it multiple times +05/25/2018,Sports_celeb,@RSherman_25,@BayBCakes1101 Big sci-fi fan so I will check them out +05/25/2018,Sports_celeb,@RSherman_25,@ZOliverson Thank you!!! We will make you proud +05/25/2018,Sports_celeb,@RSherman_25,@tayloreigsti 👏🏾👏🏾👏🏾 +05/25/2018,Sports_celeb,@RSherman_25,Thank you so much for the suggestions!!! Gonna have some good reading! +05/25/2018,Sports_celeb,@RSherman_25,@NinersNation Thank you +05/25/2018,Sports_celeb,@RSherman_25,@JJFinesser Gonna check it out +05/25/2018,Sports_celeb,@RSherman_25,In need of a good novel to read on this flight. Any suggestions? +05/25/2018,Sports_celeb,@RSherman_25,@roofe39 @49ers 🙌🏾🙌🏾🙌🏾🙌🏾 +05/24/2018,Sports_celeb,@RSherman_25,@nancyholder Thank you!!! +05/24/2018,Sports_celeb,@RSherman_25,REWTEET if you're ready for a 3-day weekend!! 🙌🏾 Don't forget to shop my MDW Sale now https://t.co/ZXj0oi6G6O 🇺🇸 https://t.co/WvWC7yfXV5 +05/24/2018,Sports_celeb,@RSherman_25,@49ersSportsTalk Thank you +05/24/2018,Sports_celeb,@RSherman_25,Throwbacks! https://t.co/dTeaGD4Oep +05/24/2018,Sports_celeb,@RSherman_25,@Dimesbasketball 🤔🤔🤔 I like what you did there +05/24/2018,Sports_celeb,@RSherman_25,@1Tyvis @ahkello Yea he would be better off getting rid of an arm or leg than getting rid of her.... she’s like his better 2/3 +05/23/2018,Sports_celeb,@RSherman_25,@MaioccoNBCS https://t.co/srSCehyNo5 +05/22/2018,Sports_celeb,@RSherman_25,@Bwagz Preciate you brother +05/22/2018,Sports_celeb,@RSherman_25,Enjoying my time https://t.co/lZzLV5t28U +05/22/2018,Sports_celeb,@RSherman_25,"Some people hear Laurel, some people hear Yanny, have you heard about this giveaway👂 ? Enter now to win a signed ha… https://t.co/7J6sO4pnlY" +05/17/2018,Sports_celeb,@RSherman_25,Funny how people rush to judgement so quickly they can’t accept when the truth comes out so they sensationalize a l… https://t.co/owxOl6QGRu +05/15/2018,Sports_celeb,@RSherman_25,RT @DeionSanders: ATTENTION ALL HIGHSCHOOL ATHLETES please stop CHASING offers and chase GREATNESS! Chase a 3.5gpa or better. Chase good ma… +05/14/2018,Sports_celeb,@RSherman_25,RT @JimTrotter_NFL: Thanks to @DougBaldwinJr @RSherman_25 @MalcolmJenkins and @j_bademosi24 for allowing me to chronicle their push for cr… +05/14/2018,Sports_celeb,@RSherman_25,RT @DrinkBODYARMOR: #SuperiorHydration https://t.co/kjD2UniDPf +05/14/2018,Sports_celeb,@RSherman_25,@cchoatedvm 🙌🏾🙌🏾🙌🏾 +05/13/2018,Sports_celeb,@RSherman_25,@Official_tylerg @49ers @NFL @sfgov @49ersCommunity Looks great brother +05/13/2018,Sports_celeb,@RSherman_25,🙌🏾 https://t.co/Obczh5WhzA +05/13/2018,Sports_celeb,@RSherman_25,"RT @vSundblade: COME THROUGH TO THE #NOCHILLZONE AND DROP A FOLLOW FOR @NoChillDe3zY + +https://t.co/z5LNEQkGAk" +05/12/2018,Sports_celeb,@RSherman_25,"RT @NoChillDe3zY: Now live on @WatchMixer https://t.co/LsL2XVXS8f, come say what’s up" +07/01/2018,Sports_celeb,@CP3,UNFINISHED BUSINESS...RUN IT BACK 🤘🏾🚀 https://t.co/KwWcsp6lx6 +06/30/2018,Sports_celeb,@CP3,Took the kids to see #UncleDrew tonite!! Great movie and a great job by the entire cast! #CamrynLovedBigFella #LilChrisLovedUncleDrew +06/26/2018,Sports_celeb,@CP3,MVP!!!!!! ✊🏾🤘🏾 https://t.co/IO0StRAsNV +06/26/2018,Sports_celeb,@CP3,MVP!!!!!! ✊🏾🤘🏾 https://t.co/QyocWYFBl9 +06/24/2018,Sports_celeb,@CP3,Man we had so much fun playing @FamilyFeudABC! Thank you to @IAmSteveHarvey & team for having us!! Excited for you… https://t.co/U8CLHOx0x8 +06/23/2018,Sports_celeb,@CP3,"RT @WTRMLNWTR: Hoop Hard, Drink Clean. Proud of our partner @CP3 and his ""Go Hoop"" initiative, celebrate national basketball awareness day!…" +06/23/2018,Sports_celeb,@CP3,"RT @CoachDManning: “Basketball isn’t just about the bright lights, packed arenas, and highlight reels. Basketball is a way of life.” + +#goh…" +06/23/2018,Sports_celeb,@CP3,RT @CoachDManning: @gohoopday is a global basketball holiday. Participation is simple -- go play basketball and represent your game via so… +06/23/2018,Sports_celeb,@CP3,"RT @NBA: Up next, @CP3 stops by his old high school West Forsyth! #GoHoopDay https://t.co/IaEFXTl6hN" +06/23/2018,Sports_celeb,@CP3,RT @StateFarm: @CP3 @gohoopday Anyone can get involved in #gohoopday... even @CP3's State Farm agent. Find out how at https://t.co/zex18m11… +06/23/2018,Sports_celeb,@CP3,RT @Spalding: True believers ball together. The first ever global basketball holiday is going down tomorrow. Get out and hoop with @CP3 and… +06/23/2018,Sports_celeb,@CP3,RT @WakeMBB: Happy #GoHoopDay https://t.co/42PjCGwkoq +06/22/2018,Sports_celeb,@CP3,Congrats to my guys @WendellCarterJr @CollinYoungBull @CallMe_NonStop on turning your dreams to reality! Enjoy the… https://t.co/ilu4fiz9fp +06/21/2018,Sports_celeb,@CP3,Hosting the first ever @statefarm Showdown with my guy @AaronRodgers12 at the beautiful @MoheganSun next week!! Vis… https://t.co/7e21t8GfoX +06/20/2018,Sports_celeb,@CP3,"Can't imagine how I'm going to talk to my kids about this... To all parents reading this, please slow down and take… https://t.co/oRIjPRYrOK" +06/18/2018,Sports_celeb,@CP3,"Give the @gohoopday hotline a call to hear why I love the game. After the beep, tell me why you do, too! #GoHoopDay https://t.co/Nuj4MMrQ2D" +06/17/2018,Sports_celeb,@CP3,"To the OG of all OGs who has had my back from the very beginning, HAPPY FATHER’S DAY!! https://t.co/EkUoq3QmUH" +06/15/2018,Sports_celeb,@CP3,"On June 23rd, I’m launching @gohoopday, basketball’s first global holiday, as a way to celebrate the greatest game… https://t.co/ZGZqsCBQTn" +06/15/2018,Sports_celeb,@CP3,Bounce back. https://t.co/BKXKOkqftd +05/18/2018,Sports_celeb,@CP3,Prayers to the kids and families affected by today's tragedy. We need to do better by our children.… https://t.co/HJXbDNnNJZ +04/13/2018,Sports_celeb,@CP3,Stay The Course #RedNation 🤘🏾 https://t.co/Omu7DHM16L +04/11/2018,Sports_celeb,@CP3,@rhsmooth03 Right!! That’s where it all started ✊🏾 +04/11/2018,Sports_celeb,@CP3,Nobody left a mark on me like my grandfather. Thank you to @PlayersTribune and @Sharpie for the opportunity to shar… https://t.co/c322FmOzCL +04/11/2018,Sports_celeb,@CP3,The power of focus and persistence is real!! Congrats Andre Ingram on your NBA debut. Well deserved! https://t.co/U1MY9F1LOI +04/11/2018,Sports_celeb,@CP3,National Sibling Day! https://t.co/Eg7RAf9XtL +04/08/2018,Sports_celeb,@CP3,.@TheMasters Champ!!! Congrats @PReedGolf! https://t.co/U6PTEcKzHR +04/08/2018,Sports_celeb,@CP3,Roadtrip ready. Thank you @HOOKandALBERT 🙏🏾 https://t.co/vIeyOptomZ +04/08/2018,Sports_celeb,@CP3,Family Business https://t.co/UNifqYbv1U +04/06/2018,Sports_celeb,@CP3,Back like we’re in '07🤘🏾 https://t.co/Bx9qW5YZ4d +04/05/2018,Sports_celeb,@CP3,"RT @NickDePaula: Inside the delayed timeline and process of designing Chris Paul’s newest Jordan sneaker, the CP3.11. + +@CP3 becomes just th…" +04/05/2018,Sports_celeb,@CP3,My dream is that all kids have access to the same resources and grow up in a world full of opportunities.… https://t.co/p03Xtg0IK3 +04/04/2018,Sports_celeb,@CP3,"RT @WWPubRelations: As we commemorate #MLK50, please check out ""We Sing For Martin Luther King"", a beautiful tribute to Dr. King by Holly P…" +04/02/2018,Sports_celeb,@CP3,Rest In Power Queen. Your impact will forever be remembered and appreciated. https://t.co/nEObqp4dif +04/01/2018,Sports_celeb,@CP3,Not a bad way for me and my guy to do our first Final Four together!! Big Thank You to the Brunson family and way t… https://t.co/0TD0nT0hnu +03/31/2018,Sports_celeb,@CP3,#ad Had a blast with the students of C.E. King Middle School at the opening of their new library. In partnership wi… https://t.co/qkZzJEywVy +03/30/2018,Sports_celeb,@CP3,Dope!! Let me know how you like them @The_Raheel https://t.co/NyBTEpkJDd +03/30/2018,Sports_celeb,@CP3,Well deserved @jalenbrunson1!! Keep going 💪🏾 https://t.co/NSFC3mgyf6 +03/27/2018,Sports_celeb,@CP3,Congratulations are in order @MRobertsNBPA!! Thank you for everything- your leadership and guidance allow us to be… https://t.co/Tobluh3Nw6 +03/27/2018,Sports_celeb,@CP3,Am I the only one who plays HQ religiously??? #HQ #Trivia +03/27/2018,Sports_celeb,@CP3,Trey Burke and Kemba out here gettin at it!!!!!! #NBALeaguePass +03/24/2018,Sports_celeb,@CP3,Humbled and proud of this generation taking the lead. Their time is now. #MarchForOurLives https://t.co/6WpG7AxMKK +03/21/2018,Sports_celeb,@CP3,"RT @TheCrossover: Exclusive: For the first time, Chris Paul is playing in the new Jordan CP3.XI tonight at Portland (by @_JarrelHarris) htt…" +03/18/2018,Sports_celeb,@CP3,Blessed for the opportunity to hoop every day. Always humbling to be mentioned with all-time greats. 🙏🏾 https://t.co/JAxIduBeT0 +03/16/2018,Sports_celeb,@CP3,Congrats to @HerdMBB and Coach D’Antoni on the win... but leave us out of it!!! 😂😂 https://t.co/mDibBlsk7z +03/13/2018,Sports_celeb,@CP3,#ad The only people who get me like this are my teammates. https://t.co/gKxyT7wAPE +03/10/2018,Sports_celeb,@CP3,Count me in @DwyaneWade @carmeloanthony!! Will personally make sure Winston-Salem kids are in DC on the 24th and ne… https://t.co/176l1fs6gf +03/10/2018,Sports_celeb,@CP3,RT @carmeloanthony: .@DwyaneWade and I on the same page... Standing with the students of MSD - both of us come from hometowns where the vio… +03/10/2018,Sports_celeb,@CP3,RT @DwyaneWade: Spoke to my brother @carmeloanthony & we're standing w/ students from MSD. We both come from communities where gun violence… +03/07/2018,Sports_celeb,@CP3,What an amazing career for Team CP3 alumni @Gary11_Clark. Congrats on your great accomplishments. #POY #DPOY… https://t.co/s02bmQ600H +03/07/2018,Sports_celeb,@CP3,Congrats @GrWill2 on winning SEC Player Of The Year. Well deserved. #TeamCP3 #POY https://t.co/JMdcIgPrLV +03/07/2018,Sports_celeb,@CP3,❄️❄️❄️ https://t.co/QmPxghC2cj +03/06/2018,Sports_celeb,@CP3,From one set of parents to another.. thank you @anthonyanderson @TraceeEllisRoss definitely put a smile on Mama's f… https://t.co/p8roeLHHJe +03/05/2018,Sports_celeb,@CP3,Congrats Bean!!! Great accomplishment #BiggerThanBasketball https://t.co/cHFTteBmDF +03/05/2018,Sports_celeb,@CP3,Happy Birthday Mama!!! https://t.co/AwtIxQri3U +03/03/2018,Sports_celeb,@CP3,Prayers up for my bro @RickRoss 💪🏾 +03/02/2018,Sports_celeb,@CP3,W A K A N D A • F O R E V E R https://t.co/wttg6lqsz2 +03/02/2018,Sports_celeb,@CP3,👀 @fivefour https://t.co/844yUV1gi4 +03/01/2018,Sports_celeb,@CP3,4 Young Kings!!! 👑 #TheFutureIsBright https://t.co/S4T1DDVqEi +03/01/2018,Sports_celeb,@CP3,RT @spidadmitchell: Crazy how life changes @CP3 😂😂 https://t.co/Wz0VlJUAQT +02/28/2018,Sports_celeb,@CP3,"Grateful to have had the opportunity to sit down for a conversation with @united's @rhapsodymag @inkglobal! +Photo b… https://t.co/5h5S5iszTP" +02/27/2018,Sports_celeb,@CP3,C'mon @jharden13...get ya moms!! 🤦🏾‍♂️😂🤷🏾‍♂️ https://t.co/wroWn3bLKg +02/24/2018,Sports_celeb,@CP3,#ad My new @StateFarm agent and I are on another level. Rematch @JHarden13??? https://t.co/63Mjp9AFsj +02/24/2018,Sports_celeb,@CP3,Runs in the family!! 😂🤘🏾#GoTexanDay https://t.co/DXvYoyYnRh +02/23/2018,Sports_celeb,@CP3,Thank you @steinersports and @NetSuite for a great conversation tonight! https://t.co/Agg5ha6Al9 +02/22/2018,Sports_celeb,@CP3,RT @ALSTDI: @CP3 takes the #ALSPepperChallenge to support research at @ALSTDI! 🌶🔥❤️🙌 https://t.co/FURDSFRKlA https://t.co/aDFyzF5ZIp +02/20/2018,Sports_celeb,@CP3,"RT @RobertIger: The world has embraced Black Panther, which has obliterated expectations, broken records & shattered myths. Powerful storyt…" +02/18/2018,Sports_celeb,@CP3,Dope set up at the @Xbox barbershop at #OneCourt! Had a great time playing #XboxOneX against @KarlTowns for charity… https://t.co/ScGrJocVhs +02/17/2018,Sports_celeb,@CP3,Productive day at work yesterday! Congrats and more importantly THANK YOU to @MRobertsNBPA and the entire @TheNBPA… https://t.co/sneguBN6hM +02/17/2018,Sports_celeb,@CP3,"Happy Birthday my love!! My only hope is that I can make you smile as much as you make me, the kids and everyone el… https://t.co/xvCoxsg2dG" +02/16/2018,Sports_celeb,@CP3,I’m talking basketball and culture at #SpaldingBackcourt tomorrow. Stop by or follow @Spalding on Facebook to watch… https://t.co/2ZI37SOzog +02/15/2018,Sports_celeb,@CP3,"We’re bringing you the second annual CP3 Classic for teams 12U, 14U, 15U and 17U! Head over to… https://t.co/r89SiNdVCG" +02/15/2018,Sports_celeb,@CP3,RT @BarackObama: We are grieving with Parkland. But we are not powerless. Caring for our kids is our first job. And until we can honestly s… +02/14/2018,Sports_celeb,@CP3,Happy 35th to my big brother @cjpaul14 !! Side by side since 85’.... https://t.co/f9rOE2wU91 +02/12/2018,Sports_celeb,@CP3,Get Top on the phone! @TopDawgEnt https://t.co/Dl0gqq46SN +02/11/2018,Sports_celeb,@CP3,Love you my brother!! RIP🙏🏾 #SualBop https://t.co/id6ZKPyIKK +02/08/2018,Sports_celeb,@CP3,W A Y N E S W O R L D 🤷🏾‍♂️ https://t.co/AIr8HjcYSn +02/06/2018,Sports_celeb,@CP3,Congratulations on an inspiring career my brother 🙏🏾 @realtuffjuice https://t.co/kgAfTfwzEq +02/04/2018,Sports_celeb,@CP3,Y’all already know 🤘🏾 https://t.co/6xfK4YWPpk +02/01/2018,Sports_celeb,@CP3,This Sunday!! Tune in at 2PM EST to catch our @StateFarm @PBATour Celebrity Invitational on @espn! 🎳 https://t.co/iE5qyhYGyw +01/31/2018,Sports_celeb,@CP3,History!!! 🤘🏾@JHarden13 https://t.co/NWwD4zYJqk +01/30/2018,Sports_celeb,@CP3,Can’t wait to see this movie!!! https://t.co/lcdSSEFVnP +01/30/2018,Sports_celeb,@CP3,The annual #CP3Classic is BACK!! Make sure to visit https://t.co/CtVP47EwnV to get your team registered! +01/28/2018,Sports_celeb,@CP3,Really like watchin Terry Rozier hoop...plays hard on both sides! +01/28/2018,Sports_celeb,@CP3,Congrats on 25K my brother!!!! #Brotherhood #STAYME7O https://t.co/DDThWYkMaH +01/27/2018,Sports_celeb,@CP3,PARENTS X DENIM 🤷🏾‍♂️ #NOLA https://t.co/KXnUzI3PrS +01/25/2018,Sports_celeb,@CP3,BIG TIME future ahead!! #CarolinaBoyz https://t.co/HdiNsk8OqZ +01/24/2018,Sports_celeb,@CP3,Let’s WORK!! https://t.co/q3DfSx2xlQ +01/24/2018,Sports_celeb,@CP3,30K!!! That’s a lot of buckets!!! Congrats my brother! #Brotherhood https://t.co/Ijmnv7ml7n +01/23/2018,Sports_celeb,@CP3,🚀 https://t.co/uQp17lfBfQ +01/21/2018,Sports_celeb,@CP3,"Not everything that is faced can be changed, but nothing can be changed until it is faced. - James Baldwin💡 https://t.co/X9dnKMosQx" +01/19/2018,Sports_celeb,@CP3,Teammates for a few years but FAMILY for life! #WeTalkHoopALLDay #Mr6thMan #WhatsUpFam @JCrossover https://t.co/4PuUvyeXFx +01/18/2018,Sports_celeb,@CP3,Happy birthday to a real one ✊🏾 https://t.co/AibuzSuLTM +01/16/2018,Sports_celeb,@CP3,FACTS my brother @willpowerpacker 🙌🏾 https://t.co/jCTpQRHgz8 +01/15/2018,Sports_celeb,@CP3,"Proud of our work with the W.K. Kellogg Foundation. Tune in tmw at +6:30pm CST to celebrate our common humanity.. an… https://t.co/uYPQz8iuin" +01/15/2018,Sports_celeb,@CP3,Injustice anywhere is a threat to justice everywhere - MLK +01/13/2018,Sports_celeb,@CP3,Always nice catching up with friends on the road! @MichaelPhelps @mrsnicolephelps https://t.co/pcXn3mwtNK +01/12/2018,Sports_celeb,@CP3,.@TheofficialEG10 #NBAVote +01/12/2018,Sports_celeb,@CP3,.@CapelaClint #NBAVote +01/12/2018,Sports_celeb,@CP3,.@JHarden13 #NBAVote +01/12/2018,Sports_celeb,@CP3,.@carmeloanthony #NBAVote +01/12/2018,Sports_celeb,@CP3,.@DwyaneWade #NBAVote +01/12/2018,Sports_celeb,@CP3,.@KingJames #NBAVote +01/11/2018,Sports_celeb,@CP3,🙏🏾🙏🏾🙏🏾 #16K https://t.co/5lS1a3H7lf +01/09/2018,Sports_celeb,@CP3,Congrats to Sophia Santangelo on setting a school record with 9 three pointers!! @s_santangelo3 @franksantange11 https://t.co/YUD61TSzNY +01/09/2018,Sports_celeb,@CP3,"RT @MensFitness: Chris Paul has the @HoustonRockets thinking big this #NBA season. + +@NBA star @CP3 talks his key training method for stayin…" +01/08/2018,Sports_celeb,@CP3,"Great piece from my brother @QRich. Incredibly powerful. + +https://t.co/JSWh5EdMWy" +01/04/2018,Sports_celeb,@CP3,Crazy!!! Not every day you see a quadruple-double! 👌🏾 https://t.co/ScVxD1XUdD +01/01/2018,Sports_celeb,@CP3,Stepping into the new year the right way!! 🤘🏾#HappyNewYear https://t.co/G5s6ZmNYYF +12/30/2017,Sports_celeb,@CP3,Happiest of birthdays my brother 🙏🏾🙏🏾 #Brotherhood #BiggerThanBasketball https://t.co/IyWSpJFG8X +12/30/2017,Sports_celeb,@CP3,😉 https://t.co/9cyyccmNXz +12/27/2017,Sports_celeb,@CP3,#ad @StateFarm just dropped one of the greatest karaoke videos of all time. https://t.co/kivpF6ylMH +12/26/2017,Sports_celeb,@CP3,"#ad Now that y’all know how I get down, I’m putting the rest out there. Open to suggestions. I’d tell you to share… https://t.co/e6PuPyLgKk" +12/24/2017,Sports_celeb,@CP3,Nothing like the Holiday Spirit 😂🚀🤘🏾 https://t.co/bagYCtIEMu +12/24/2017,Sports_celeb,@CP3,"#ad If my new @StateFarm agent gives you a ride, you AT LEAST sing along to the chorus. Looking at you @JHarden13 👀 https://t.co/sby0CGNnfM" +12/23/2017,Sports_celeb,@CP3,RT @Gamevice: Hope you're feeling festive! We’re giving away 9 MEGA Holiday bundles just in time for the season. Enter for your chance to w… +12/23/2017,Sports_celeb,@CP3,Happy Holidays #FromThePlayers!! https://t.co/8x26RcQYtN +12/19/2017,Sports_celeb,@CP3,'Tis the season for buckets! #SweaterBall @Spalding https://t.co/TPhraiIiMR +12/19/2017,Sports_celeb,@CP3,Congrats Bean on a career that will be remembered for generations!! #Mamba #Ko8e24 https://t.co/ZkVWNdDx6C +12/19/2017,Sports_celeb,@CP3,Walking into 14 straight like.... https://t.co/5zRVkTb3Iv +12/17/2017,Sports_celeb,@CP3,Always an honor and a blessing to be mentioned with the greats 🙏🏾 https://t.co/jtr7BkfWoZ +12/17/2017,Sports_celeb,@CP3,Post Game #13🤘🏾🚀 https://t.co/tqSVOwcjjn +12/17/2017,Sports_celeb,@CP3,@coachdinogaudio Preciate that Coach! +12/16/2017,Sports_celeb,@CP3,🤷🏾‍♂️ @KingJames @TrevorAriza @aardodson https://t.co/lwgJ6oKSxE +12/13/2017,Sports_celeb,@CP3,Ending 2017 as one of the top @NBA players searched on @Google for the year. Thanks for the support! #YearInSearch… https://t.co/ZJ2OLIluWn +12/11/2017,Sports_celeb,@CP3,Mannnn it feels so good seeing my guy @VicOladipo playing the way he is! #AllStar +12/10/2017,Sports_celeb,@CP3,"RT @HoustonRockets: Red Nation representing all the way from Italy 🇮🇹! @CP3 hooked this fan up with his shoes. 🔥 + +#ThisIsWhyWePlay https://…" +12/08/2017,Sports_celeb,@CP3,Pull up N Wreck. https://t.co/iHJzm7dlrF +12/08/2017,Sports_celeb,@CP3,"RT @WakeForest: It’s @CP3 day! Free doughnuts & hot chocolate on Manchester Plaza, today from 11-2. #GoDeacs https://t.co/qE0LgqdIDj" +12/06/2017,Sports_celeb,@CP3,TEAMWORK 🚀 🤘🏾 https://t.co/kpPzztvPx1 +12/04/2017,Sports_celeb,@CP3,Dec 4 👑 🙏🏾 https://t.co/YtLtltU1Or +11/30/2017,Sports_celeb,@CP3,Different colors. Different Colleges. ONE family. #TeamCP3 #CP3XAE https://t.co/zxQDq0VPAN +11/29/2017,Sports_celeb,@CP3,"All winners have been chosen, but tickets for the @PBATour @StateFarm Celebrity Invitational are still available at… https://t.co/BXRUINGrbR" +11/29/2017,Sports_celeb,@CP3,Would be my pleasure to have you 3 attend! https://t.co/E4591grca6 +11/29/2017,Sports_celeb,@CP3,Going to have to pick one out of the four... https://t.co/2kHBqjHMkn +11/29/2017,Sports_celeb,@CP3,Only if you convince your boss on your own lol https://t.co/2ebxdOzlDq +11/29/2017,Sports_celeb,@CP3,Hope you enjoy it live! https://t.co/2f528Ib3Xb +11/29/2017,Sports_celeb,@CP3,Fair enough lol. See you Thursday! https://t.co/HFNAET7Un5 +11/28/2017,Sports_celeb,@CP3,"Alright folks, I'm giving away 5 pairs of tickets to Thursday's @PBATour @StateFarm Celebrity Invitational in Houst… https://t.co/WGKlrZWqhv" +11/23/2017,Sports_celeb,@CP3,All is well 🤘🏾 https://t.co/bCXFtWMqAF +11/23/2017,Sports_celeb,@CP3,That feeling when you make HISTORY!! Congrats @mbahamoute 🔥🤘🏾 https://t.co/8v1gzvx916 +11/21/2017,Sports_celeb,@CP3,🙏🏾 Papa Chilly #61 https://t.co/jeZnRIV0q6 +11/20/2017,Sports_celeb,@CP3,#WWE https://t.co/2ucTTIMqXV +11/19/2017,Sports_celeb,@CP3,RT @EvelynsKitchen: You should order thanksgiving from us. Because your thanksgiving will be good AF if you so.… https://t.co/yXaYzJm3Go +11/17/2017,Sports_celeb,@CP3,"It started off so innocent, had a vibe and I really started diggin it... 🚀🤘🏾🚀 https://t.co/h68X1jU0ga" +11/14/2017,Sports_celeb,@CP3,Great meeting tonite with the NBPA Foundation! @sergeibaka great to see you and excited about the work to be done! +11/13/2017,Sports_celeb,@CP3,I was thinking – how do I raise some money for Houston? And then it hit me. Moving sale. On @ebay. With @StateFarm.… https://t.co/a7wYJh41zn +11/12/2017,Sports_celeb,@CP3,GAME WINNER for my lil guy earlier!!!!! #SoccerSaturdays https://t.co/CM1lUVv6F9 +11/11/2017,Sports_celeb,@CP3,"""You can't look at it as a black and white issue, you have to look at it as a human issue"". + +Make sure to sign the… https://t.co/zpHizZ0zFW" +11/08/2017,Sports_celeb,@CP3,"Gotta be honest. I was a little worried about leaving @CliffPaul, but I should’ve known he’d come through with anot… https://t.co/TTsvlRBTRQ" +11/08/2017,Sports_celeb,@CP3,Porzingis sheeeeeeeesh +11/08/2017,Sports_celeb,@CP3,Came together with @StateFarm @NBACares @Jharden13 this weekend to say thanks & support Null and King Middle School… https://t.co/EqqECkB2l8 +11/06/2017,Sports_celeb,@CP3,RT @TheWNBPA: Today marks the beginning of our 20th YEAR as the FIRST female sports union #ThePowerOfTheW #WNBPA https://t.co/RWukZFlw18 +11/06/2017,Sports_celeb,@CP3,A lite 56 tho 🔥🔥 https://t.co/N4bmnNFASu +11/06/2017,Sports_celeb,@CP3,That’s not a flagrant 2... +11/04/2017,Sports_celeb,@CP3,#GoDEACS 🎩 https://t.co/7grTX44IGX +11/02/2017,Sports_celeb,@CP3,Having breakfast in atl this morning and ran into the legend herself @AllDecade14!! Use to love watching her as a kid! #RaiseTheRoof 🤘🏾 +11/02/2017,Sports_celeb,@CP3,Houston is as resilient as they come!! Congrats @astros on making history!! 🤘🏾 https://t.co/QXAVLC1Kvm +10/31/2017,Sports_celeb,@CP3,#TrueBelievers know being clutch doesn’t just happen. @spalding https://t.co/NWJ6TPGmct +10/30/2017,Sports_celeb,@CP3,This game is craaaaazzzzzyy!!!!! #WorldSeries2017 +10/29/2017,Sports_celeb,@CP3,Join me & @StateFarm in helping rebuild Houston school libraries with a book drive on 11/4. #ad Learn more:… https://t.co/rlnV9FBAao +10/26/2017,Sports_celeb,@CP3,Join me & @StateFarm in helping Houston. #ad Check out https://t.co/3navXk2F30 to find out how you can get involved… https://t.co/hWHixLwr0n +10/22/2017,Sports_celeb,@CP3,Trying to put them on to game!! 😆 https://t.co/BLG8Ci7DS4 +10/18/2017,Sports_celeb,@CP3,I've said it before and I'll say it again - basketball is my life! Proud to be able to give u guys a glimpse of fre… https://t.co/2OJhSIk5Ti +10/17/2017,Sports_celeb,@CP3,"It begins tonight. #Chapter3 + +https://t.co/6ClYbaqq0I" +10/14/2017,Sports_celeb,@CP3,Keep going @Astros!! +10/12/2017,Sports_celeb,@CP3,He kills me 😂😂 @gamevice https://t.co/75hQeKOkBc +10/05/2017,Sports_celeb,@CP3,Big Shot @MooreMaya!! +10/05/2017,Sports_celeb,@CP3,This WNBA Finals game is sooooo good!!!! +10/03/2017,Sports_celeb,@CP3,HAPPY BIRTHDAY to the one who really made BALLisLIFE for me and big bro @cjpaul14! Love You Pops!!! #CP1… https://t.co/WlxeVRpRbv +10/03/2017,Sports_celeb,@CP3,Can't get enough of these bags!! https://t.co/KfWhwxjXrc if you're trying to get yours before we're out.… https://t.co/XjqYhI5Wka +10/02/2017,Sports_celeb,@CP3,My thoughts and prayers are with all those affected by this horrific incident. #PrayForVegas https://t.co/OXxvjxfseR +10/02/2017,Sports_celeb,@CP3,Appreciate y'all!! Talk again soon. +10/02/2017,Sports_celeb,@CP3,CP3.VI’s https://t.co/zrzphdumoJ +10/02/2017,Sports_celeb,@CP3,to time travel for sure https://t.co/E2CStuL3WA +10/02/2017,Sports_celeb,@CP3,don't let being young be an excuse. https://t.co/1bIkbY9MJ2 +10/02/2017,Sports_celeb,@CP3,"Jay, Wayne, .... https://t.co/BP08iHiADh" +10/02/2017,Sports_celeb,@CP3,Games of Thrones & Power https://t.co/F3AMLaE5gN +10/02/2017,Sports_celeb,@CP3,her big ol' head 😂😂😉 https://t.co/f0jUPiYr5t +10/02/2017,Sports_celeb,@CP3,yessir! been a fan since the Clemson days https://t.co/hE60NQZLQe +10/02/2017,Sports_celeb,@CP3,Harlem Nights! https://t.co/aPBbwUwIiH +10/02/2017,Sports_celeb,@CP3,I absolutely do. bout to be 1-3 after this week #smh https://t.co/jgctBNxdJG +10/02/2017,Sports_celeb,@CP3,it varies... but usually gospel https://t.co/4F2INDqasX +10/02/2017,Sports_celeb,@CP3,BOJANGLES #Tre4 https://t.co/VqSYOTPCLk +10/02/2017,Sports_celeb,@CP3,Of course https://t.co/QsUhddrxr8 +10/02/2017,Sports_celeb,@CP3,the food is BOMB! but I gotta be careful cuz I got that fat gene.... https://t.co/3DuR0kIiUS +10/02/2017,Sports_celeb,@CP3,Yesirrrr if they lower the goal! 🤷🏾‍♂️ https://t.co/qrIUHsFC5Z +10/02/2017,Sports_celeb,@CP3,“I can’t wait to get home and watch SportsCenter” https://t.co/FDsbBJprhi +10/02/2017,Sports_celeb,@CP3,the FANS!! but I'll let you know once I link up with the homie @paulwallbaby and get my grill🤘🏾 https://t.co/BZveMWULFY +10/02/2017,Sports_celeb,@CP3,Just getting back on the court. Ain’t nothin like COMPETING! https://t.co/wA546EAp4r +10/02/2017,Sports_celeb,@CP3,I’m well! Preseason is here so I’m stuck to the tv all night....hope ur good boss https://t.co/jz9HVPIZf4 +10/02/2017,Sports_celeb,@CP3,Damn autocorrect!! Meant to say Lynx vs Sparks.* +10/02/2017,Sports_celeb,@CP3,Man these girls be hoopin'! Lynx vs Parks #WNBAFinals #WatchMeWork +10/02/2017,Sports_celeb,@CP3,Happy 24th birthday young king 👑 #Ajax https://t.co/M8GOOTdWUp +09/28/2017,Sports_celeb,@CP3,Where Style meets Function. Shop my new capsule collection now at https://t.co/KfWhwxjXrc. #HookAndAlbertxCP3 https://t.co/gKSmG8PFhJ +09/28/2017,Sports_celeb,@CP3,Respect! https://t.co/RXLYY448tO +09/25/2017,Sports_celeb,@CP3,C H A P T E R 3 🙏🏾🤘🏾✊🏾🔥 https://t.co/jcIRE9PUNK +09/23/2017,Sports_celeb,@CP3,And I doubt he's man enough to call any of those players a son of a bitch to their face... +09/23/2017,Sports_celeb,@CP3,"With everything that's going on in our country, why are YOU focused on who's kneeling and visiting the White House??? #StayInYoLane" +09/22/2017,Sports_celeb,@CP3,Please support my brother @carmeloanthony as he helps the people of Puerto Rico with their hurricane relief efforts… https://t.co/QUSzCXFi8k +09/22/2017,Sports_celeb,@CP3,Hope they got an A!! https://t.co/08yTF84EZq +07/02/2018,Sports_celeb,@CaroWozniacki,Excited to be back @Wimbledon and get a victory in round 1! 🎾💪🌱 thx @timeandleisure @chantershaines https://t.co/8jOooFAUAD +07/01/2018,Sports_celeb,@CaroWozniacki,That was so tense and nerve wrecking! Hats off to @kschmeichel1 for being great this World Cup! Proud of the guys f… https://t.co/iETh24xEu1 +07/01/2018,Sports_celeb,@CaroWozniacki,I screamed so loud I think the whole neighborhood heard me! I’m so nervous! Let’s go Danmark!🙏 +07/01/2018,Sports_celeb,@CaroWozniacki,Omg!!!!! My nerves!!!!! +07/01/2018,Sports_celeb,@CaroWozniacki,Rollercoaster of emotions right now... +07/01/2018,Sports_celeb,@CaroWozniacki,Yesssssss!!!!! +06/30/2018,Sports_celeb,@CaroWozniacki,Title #29 !! Thank you Eastbourne for a great week!! Next stop @wimbledon https://t.co/EQGhz6W9Yg +06/29/2018,Sports_celeb,@CaroWozniacki,Flying in to the finals here in Eastbourne!🌱💪🏻 https://t.co/iCAjW26lHL +06/28/2018,Sports_celeb,@CaroWozniacki,Happy to be thru to another semifinal here at Eastbourne ! https://t.co/TSDPpH3i2m +06/28/2018,Sports_celeb,@CaroWozniacki,Sad to be missing @WTA #TennisontheThames in London but there’s still work to be done in Eastbourne #tbt to past ev… https://t.co/F61GtdqOB0 +06/19/2018,Sports_celeb,@CaroWozniacki,I am thrilled to welcome Denmarks best formula one driver of all time @kevinmagnussen in our @statedrinks family!… https://t.co/JqHNB8nofW +06/18/2018,Sports_celeb,@CaroWozniacki,@Dlee042 Hahaha!! I love you! +06/18/2018,Sports_celeb,@CaroWozniacki,Life 😍🙏 https://t.co/LhXcLaSHyO +06/17/2018,Sports_celeb,@CaroWozniacki,Brought the whites out @wimbledon 🌱 #timhenman https://t.co/QOAnTbqtwF +06/16/2018,Sports_celeb,@CaroWozniacki,RT @TSorensen1: That's how we celebrate our first goal at the @FIFAWorldCup 🇩🇰🇩🇰😍 https://t.co/0sk9syzPRT +06/16/2018,Sports_celeb,@CaroWozniacki,Let’s gooooooo Danmark!!! +06/15/2018,Sports_celeb,@CaroWozniacki,I see you 👀😊 @CosmopolitanTR https://t.co/SxOz3Gmdmw +06/12/2018,Sports_celeb,@CaroWozniacki,Put my hiking shoes on 👟🏃🏼‍♀️ https://t.co/aXOF4acqGd +06/11/2018,Sports_celeb,@CaroWozniacki,"@caro_woz @AndersHaahr Maybe, just maybe, it had something to do with me wanting to keep it small 😉😊" +06/11/2018,Sports_celeb,@CaroWozniacki,Proud to continue my role as a @DubaiDutyFree ambassador for the 7th year! Looking forward to more adventures with… https://t.co/j3PisJzIf5 +06/09/2018,Sports_celeb,@CaroWozniacki,Bike ride thru Tuscany on #globalwellnessday 🚴🏼‍♀️🍝 #friends #lovinglife https://t.co/JUP4bHgc4q +06/06/2018,Sports_celeb,@CaroWozniacki,Create the answer. @adidas #HeretoCreate #createdwithadidas https://t.co/ftKtYVsY4x +06/04/2018,Sports_celeb,@CaroWozniacki,"Not the way I wanted the tournament to end, but always a pleasure playing in Paris! See you next time!! + +Au revoir,… https://t.co/oJl4t9CbKJ" +06/03/2018,Sports_celeb,@CaroWozniacki,"Smiling because it’s Sunday and I am still alive at the French Open. Back fighting tomorrow! @rolandgarros +.… https://t.co/KBmsHpQY9M" +06/02/2018,Sports_celeb,@CaroWozniacki,More 📸 from @Prestige_HK https://t.co/HVkjMhdKlN +06/02/2018,Sports_celeb,@CaroWozniacki,June @Prestige_HK cover! https://t.co/FC0DgjuBPa +06/01/2018,Sports_celeb,@CaroWozniacki,@Clijsterskim Where is this?? Looks amazing!! +05/31/2018,Sports_celeb,@CaroWozniacki,Very excited about my @CosmopolitanTR cover! Really enjoyed my time in Istanbul! https://t.co/VfuPJx7Fl4 +05/29/2018,Sports_celeb,@CaroWozniacki,How are non of the french channels showing Serena play right now?? +05/26/2018,Sports_celeb,@CaroWozniacki,Ok... Let’s regroup and come out firing in the second half. #YNWA +05/26/2018,Sports_celeb,@CaroWozniacki,Look through the #LympoChallenge hashtag! It’s mind-blowing to see all these people sweating and working so hard to… https://t.co/6PYCrbACIg +05/24/2018,Sports_celeb,@CaroWozniacki,Loved spending time with this little love bug today @OlympiaOhanian !! I think she liked my @ovvooptics sunglasses… https://t.co/3Phu0nrNBd +05/23/2018,Sports_celeb,@CaroWozniacki,Yoga in Paris! https://t.co/m7aVJbkxYa +05/21/2018,Sports_celeb,@CaroWozniacki,"So honored to be featured on the cover of @espn alongside the top athletes in the world! #WorldFame +. +. +. + +Hair… https://t.co/acc5BB8uZb" +05/14/2018,Sports_celeb,@CaroWozniacki,Exploring this beautiful city!😍 https://t.co/QqTaj7mMA4 +05/12/2018,Sports_celeb,@CaroWozniacki,Enjoyed exploring Saint Paul de Vence today with this one 😍❤️ @dlee042 https://t.co/fedMbWOkKQ +05/11/2018,Sports_celeb,@CaroWozniacki,@serenawilliams @HBO So pretty!! +05/07/2018,Sports_celeb,@CaroWozniacki,"Such an incredible honor to receive the Damehood of the Dannebrog order today! 🇩🇰 + +Stolt af at få ridderkorset af D… https://t.co/SnHsgDzlU0" +05/02/2018,Sports_celeb,@CaroWozniacki,Aww love you!❤️ https://t.co/YVGkKr7pVt +05/02/2018,Sports_celeb,@CaroWozniacki,Made sure to bring my fuel with me to Madrid! #statedrinks 💪🏻 https://t.co/sgrvtBmaJ0 +05/01/2018,Sports_celeb,@CaroWozniacki,https://t.co/TGSbvHXQi8 +05/01/2018,Sports_celeb,@CaroWozniacki,"It was a dream come true, thanks to everyone who came out to support! #championsbattle2018 https://t.co/7QqC30oq5C" +05/01/2018,Sports_celeb,@CaroWozniacki,16 years ago I had the honor of meeting @venuswilliams in Copenhagen and hit some tennis balls with her. Last night… https://t.co/UoucBR9QBe +04/29/2018,Sports_celeb,@CaroWozniacki,Happy birthday baby!! I’m so lucky to be able to call you my best friend! You always have my back and you make my l… https://t.co/WMurNhJvgx +04/24/2018,Sports_celeb,@CaroWozniacki,I meant at half time 😬 https://t.co/4h664Afnpg +04/24/2018,Sports_celeb,@CaroWozniacki,Sallllllaaaaaaaahhhhh!!!!!! +04/24/2018,Sports_celeb,@CaroWozniacki,First clay court match of the year in the books💪🏻 just in time to get back and watch Liverpool tonight!! 💪🏻 @LFC… https://t.co/nrbEZw9pk3 +04/21/2018,Sports_celeb,@CaroWozniacki,Positive vibes today at practice😎 #clay #iloveclay #mccc https://t.co/rVVt3Xon6h +04/20/2018,Sports_celeb,@CaroWozniacki,My dinner date is so cute ❤️ #nephew https://t.co/xPubO4nAqr +04/19/2018,Sports_celeb,@CaroWozniacki,Can’t believe it’s been 16 years since this pic was taken!Really excited @Venuseswilliams is coming back to Copenha… https://t.co/pdynjW3VzP +04/18/2018,Sports_celeb,@CaroWozniacki,"RT @WTA: ""I hate to lose. I love to win"" + +@CaroWozniacki takes us through her journey to Australian Open success--> https://t.co/7pwQQH2HDW…" +04/18/2018,Sports_celeb,@CaroWozniacki,I am delighted to announce a new partnership with Lympo.❤ Together we WILL change the world of sports and wellness!… https://t.co/LaxQhGzh07 +04/14/2018,Sports_celeb,@CaroWozniacki,Dress up time💃🏼 https://t.co/ncQNFmyutn +04/12/2018,Sports_celeb,@CaroWozniacki,Day at the beach!☀️🌊🔥 https://t.co/otkp6WdkqY +04/10/2018,Sports_celeb,@CaroWozniacki,Wish i was with all the supporters at the game today! +04/10/2018,Sports_celeb,@CaroWozniacki,What a great day to be a Liverpool supporter!! @LFC #gameday #ChampionsLeague #reds 💪🏻💪🏻 +04/09/2018,Sports_celeb,@CaroWozniacki,Day of shooting complete ✅ https://t.co/Dzo1UvOT7X +04/06/2018,Sports_celeb,@CaroWozniacki,Tennis reimagined on Seven Mile Beach! 🎾😎 #caymanislands https://t.co/riZUXLdD3x +04/05/2018,Sports_celeb,@CaroWozniacki,Yes it was awesome!! 💪🏻👌🏻 https://t.co/pgD6vQrCk2 +04/05/2018,Sports_celeb,@CaroWozniacki,Putting #AlphaBOUNCE BEYOND to the test. Discover it for yourself. https://t.co/AnrK9FEwot #CREATEDWITHADIDAS… https://t.co/5XvCjv655M +04/03/2018,Sports_celeb,@CaroWozniacki,Enjoying my home away from home @ResatSeafire #resatseafire @ovvooptics https://t.co/6VubGh8cOu +04/01/2018,Sports_celeb,@CaroWozniacki,My fiancé put on an Easter egg hunt for me this morning and I couldn’t have asked for a better way to start my day! #yesimabigkid #dontjudge +03/31/2018,Sports_celeb,@CaroWozniacki,#Alphabounce Beyond X @adidasrunning #createdwithadidas https://t.co/XifRdinK3x +03/30/2018,Sports_celeb,@CaroWozniacki,Wow. Thank you @Forbes for naming me the 8th most influential woman in sports and 1st athlete! What an honor! https://t.co/yjdAtZSSWk +03/28/2018,Sports_celeb,@CaroWozniacki,Don’t play games. Run them. The #AlphaBOUNCE BEYOND by @ADIDASRUNNING. #CREATEDWITHADIDAS https://t.co/mqeTjQrWq0 +03/27/2018,Sports_celeb,@CaroWozniacki,"RT @PlayersTribune: Day 27, @CaroWozniacki: 2018 @AustralianOpen Champion, 28 Career @WTA Singles Titles, Current WTA World No. 1 Player.…" +03/27/2018,Sports_celeb,@CaroWozniacki,"RT @adidasrunning: When the stakes are high, they create on the fly. +When their opponents tire, they bring the fire. +Alpha athletes don’t…" +03/26/2018,Sports_celeb,@CaroWozniacki,😎🎾👶🏼 https://t.co/FZoFcKZdk5 +03/25/2018,Sports_celeb,@CaroWozniacki,Family time☺️❤️🎾 https://t.co/sh95X8nq32 +03/24/2018,Sports_celeb,@CaroWozniacki,https://t.co/yd10mvxuMJ +03/23/2018,Sports_celeb,@CaroWozniacki,RT @Venuseswilliams: So excited to be back in #Copenhagen on April 30th playing @carowozniacki at #championsbattle2018 – and at the same ve… +03/21/2018,Sports_celeb,@CaroWozniacki,"💇🏼‍♀️ yes, no, maybe? https://t.co/ifnYWshd0Y" +03/19/2018,Sports_celeb,@CaroWozniacki,My girls holding court💪🏻🔥 #fisherisland @JennaGreen @faraleff https://t.co/QUGC5jyZh6 +03/15/2018,Sports_celeb,@CaroWozniacki,Wheels up to Miami!✈️ https://t.co/ZIMcjsnuRt +03/11/2018,Sports_celeb,@CaroWozniacki,Hanging with my son!🐶@indianwellstennisgarden @OVVOoptics https://t.co/Ct9ojse4uh +03/07/2018,Sports_celeb,@CaroWozniacki,Adding to my glam with these cool glasses! @OVVOoptics https://t.co/9cLDMb6zir +03/06/2018,Sports_celeb,@CaroWozniacki,Put on my best smile #VFOscars https://t.co/j5bO3gf1Jq +03/05/2018,Sports_celeb,@CaroWozniacki,Excited to announce my very first eye wear collection!! Check out the 11 new styles I designed in partnership with… https://t.co/M21ysGfwDf +03/05/2018,Sports_celeb,@CaroWozniacki,"Last night @vanityfair Oscars party! @dlee042 + +Dress: Honor +Jewelry: Chopard https://t.co/GkB5l7bSIO" +03/01/2018,Sports_celeb,@CaroWozniacki,Thanks @usanainc for continuing to help me feel my best by providing me with such quality products! #ad @teamusana… https://t.co/JY2srieVnk +02/25/2018,Sports_celeb,@CaroWozniacki,Had fun with my superstar hubby tonight at the @warriors game! @dlee042 https://t.co/J3wBtq6N7x +02/23/2018,Sports_celeb,@CaroWozniacki,Always focused https://t.co/22WIDkWhZO +02/21/2018,Sports_celeb,@CaroWozniacki,@lindseyvonn Good luck @lindseyvonn !! +02/14/2018,Sports_celeb,@CaroWozniacki,Happy Valentine’s Day my love! Thank you for making every day feels like Valentine’s Day! I love you ❤️👫 @Dlee042 https://t.co/nbuGSxwjNJ +02/12/2018,Sports_celeb,@CaroWozniacki,Girls night in Doha with @AngeliqueKerber https://t.co/BqSXXWREcp +02/07/2018,Sports_celeb,@CaroWozniacki,Hiking in the mountains with my ❤️ today @dlee042 #monaco https://t.co/LhlmRLg5hj +02/05/2018,Sports_celeb,@CaroWozniacki,Thank you @rolex for putting this special video together for me! https://t.co/WQGlgNsBsy +02/04/2018,Sports_celeb,@CaroWozniacki,"#repost from #troyzan + +My first ever @si_swimsuit shoot back in Captiva Island! https://t.co/NFwzB9Apkw" +02/03/2018,Sports_celeb,@CaroWozniacki,Proud to be able to represent my new sponsor @seafireresidences these past couple of weeks @australianopen. Obvious… https://t.co/onImPQlKnP +02/01/2018,Sports_celeb,@CaroWozniacki,"Excited to announce my partner @panzerglass , They’ll protect my phone and privacy wherever I go and create customi… https://t.co/NGoBnePbAn" +01/30/2018,Sports_celeb,@CaroWozniacki,https://t.co/WPNMe7TxCf +01/28/2018,Sports_celeb,@CaroWozniacki,Celebration day today🏆🍾 https://t.co/O3Uekp82No +01/27/2018,Sports_celeb,@CaroWozniacki,A dream come true!! @australianopen champion and new world #1 😘🏆 https://t.co/aA5pcOqDcy +01/25/2018,Sports_celeb,@CaroWozniacki,That finals feeling! @australianopen https://t.co/LuCTpt9gZI +01/21/2018,Sports_celeb,@CaroWozniacki,RT @AustralianOpen: Caroline Tweener-acki... #AusOpen https://t.co/Z4jLBR1zAu +01/17/2018,Sports_celeb,@CaroWozniacki,Still alive!💪🏻 +01/17/2018,Sports_celeb,@CaroWozniacki,"RT @AustralianOpen: Simply unbelievable. + +@CaroWozniacki claws her way back from 1-5 down in the final set to d #Fett 3-6 6-2 7-5. + +#AusO…" +01/14/2018,Sports_celeb,@CaroWozniacki,Hair trouble 😂 https://t.co/ih8YxyVFga +01/14/2018,Sports_celeb,@CaroWozniacki,It’s all smiles! The @australianopen is starting tomorrow💪🏻🎾 https://t.co/ye43QVkWOM +01/13/2018,Sports_celeb,@CaroWozniacki,One of the fellas today!😎@australianopen kids day! https://t.co/voI1alDneZ +01/11/2018,Sports_celeb,@CaroWozniacki,"My ride or die💙 @Dlee042 +#tbt https://t.co/dNAIHfIAnR" +01/09/2018,Sports_celeb,@CaroWozniacki,Great day at the office today! Back to #2 in the world and first hit at the @australianopen 💪🏻🎾 https://t.co/FWJSkF5dEn +12/31/2017,Sports_celeb,@CaroWozniacki,"Happy New Year from New Zealand! May the new year bring you all lots of love, laughter and happiness! ❤️ #hello2018 https://t.co/NeowNwh5jv" +12/30/2017,Sports_celeb,@CaroWozniacki,Stepping into summer for #AusOpen See more at @adidastennis #createdwithadidas https://t.co/WiGKPKw46w +12/29/2017,Sports_celeb,@CaroWozniacki,RT @tjevans252: Caroline Wozniacki arrived in Auckland this morning and headed straight to @ASB_Classic centre court for some practice. htt… +12/27/2017,Sports_celeb,@CaroWozniacki,Preparing for the new season with my favourite energy drink STATE. Drink to improve! #ad https://t.co/r4CaAksqMI +12/27/2017,Sports_celeb,@CaroWozniacki,"RT @adidastennis: Light fabrics for ⚡quick movement. +Introducing the Melbourne collection. #AusOpen https://t.co/rswhcDffPy" +12/25/2017,Sports_celeb,@CaroWozniacki,Merry Christmas and happy holidays from our family to yours🎄🤶🏻🎅🏻🐶 #christmassweatersonpoint https://t.co/AjtLBpvbf1 +12/25/2017,Sports_celeb,@CaroWozniacki,RT @JeremyGreenMD: Another fantastic Christmas party at Chapman Partnership for the Homeless thanks to my amazing sister @JennaGreen 🙏🏻🎄🙌🏻… +12/22/2017,Sports_celeb,@CaroWozniacki,Shopping spree today to help the families at @chapmanpartnership for the homeless in Miami. Looking forward to volu… https://t.co/DXu2DiZ7F3 +12/21/2017,Sports_celeb,@CaroWozniacki,3 million followers!! Thank you for all of your support!! 🎉🎊 https://t.co/rt9HcwkgTJ +12/20/2017,Sports_celeb,@CaroWozniacki,Made a friend in the Cayman Islands #stingraycity https://t.co/gXlelASLPW +12/18/2017,Sports_celeb,@CaroWozniacki,"RT @7tennis: It's been a MASSIVE year for @carowozniacki since we last saw her in 🇦🇺! + +3⃣ In the @WTA rankings +2⃣ Titles +1⃣ Engagement to @…" +12/16/2017,Sports_celeb,@CaroWozniacki,Target practice!🎾👊🏻 https://t.co/U9thKFuOam +12/14/2017,Sports_celeb,@CaroWozniacki,A ray of sunshine ☀️ https://t.co/UH8o78R8zY +12/11/2017,Sports_celeb,@CaroWozniacki,Beach day💁🏼‍♀️ #nofilter https://t.co/tXNnOY3qfT +12/11/2017,Sports_celeb,@CaroWozniacki,@AppleSupport my new iPhone X keeps restarting over and over.. I tried hard reset on my phone and reset all setting… https://t.co/t9HfUeWvVr +12/10/2017,Sports_celeb,@CaroWozniacki,Museum of ice cream date today!! #extrasprinkles https://t.co/QpK85MsLzQ +12/06/2017,Sports_celeb,@CaroWozniacki,Excited to be back on court training for the upcoming season! Thank you @usanainc for keeping me energized and heal… https://t.co/U06iPmPQD3 +12/05/2017,Sports_celeb,@CaroWozniacki,Proud to be the godmother of my little nephew! He is so adorable 😍❤️ https://t.co/mfXj8PxsaS +12/03/2017,Sports_celeb,@CaroWozniacki,We had an amazing time celebrating at our dear friends @ansomelskens and @madsstabergmadsen wedding! You guys are p… https://t.co/Ka8repRZmm +11/26/2017,Sports_celeb,@CaroWozniacki,Ps not our wedding! Photo booth fun! It'll take us a little longer than a couple of weeks to plan our wedding 😜 +11/26/2017,Sports_celeb,@CaroWozniacki,#Thankful https://t.co/yrN1ReJtz3 +11/24/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: Flashback to @CaroWozniacki's first shoot for #SISwim... https://t.co/147NlE7Nee https://t.co/G2mmtbDpAC +11/19/2017,Sports_celeb,@CaroWozniacki,"RT @iamisiahthomas: @Dlee042 congratulations on a great career and job well done, you made us all proud! #Champion on and off the court! Se…" +11/12/2017,Sports_celeb,@CaroWozniacki,Sunday funday! Go #Rams !! @dlee042 https://t.co/HsHqhvzkkc +11/12/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: .@CaroWozniacki had her biggest career win in Singapore, and that's why you voted her as the WTA's Player of the Month for October…" +11/09/2017,Sports_celeb,@CaroWozniacki,Safe to say it has been the most incredible couple of weeks in my life! So thankful! https://t.co/2OaiY4eshq +11/06/2017,Sports_celeb,@CaroWozniacki,"RT @TennisChannel: ""That's what I dreamed of when I was a kid..."" @CaroWozniacki always knew tennis was in her future. +This is her story. +@…" +11/03/2017,Sports_celeb,@CaroWozniacki,RT @Dlee042: She said yes!!! So thrilled to be engaged to my soulmate!!! ❤️💍 https://t.co/8Xltz5GeJc +11/03/2017,Sports_celeb,@CaroWozniacki,Happiest day of my life yesterday saying yes to my soulmate❤️💍 @Dlee042 https://t.co/TwDPJjoabA +11/02/2017,Sports_celeb,@CaroWozniacki,No filter needed! https://t.co/IfiCD59oBZ +10/30/2017,Sports_celeb,@CaroWozniacki,😘🏆 https://t.co/SUSqJlqBwS +10/29/2017,Sports_celeb,@CaroWozniacki,No better way to end the season than to win the Year End Championship!Thanks to my team and everyone who supported… https://t.co/peOmJOjlpk +10/22/2017,Sports_celeb,@CaroWozniacki,"RT @pamela_ho: On target! 🎯 @CaroWozniacki practising her serve ahead of her first match tomorrow. 🎾 @WTAFinalsSG + +#wtafinalssg #carolinew…" +10/21/2017,Sports_celeb,@CaroWozniacki,To say I was excited is an understatement!! @backstreetboys are back!! Amazing performance!! Loved it! See you in V… https://t.co/hx5JDcZdev +10/21/2017,Sports_celeb,@CaroWozniacki,RT @adidastennis: Consistency defined. @CaroWozniacki @wta #MyGame #wtafinals https://t.co/dFLUYUoqrr +10/20/2017,Sports_celeb,@CaroWozniacki,In love with this body suit!! https://t.co/3JzXqvE5TW +10/20/2017,Sports_celeb,@CaroWozniacki,Today's red carpet in Singapore! https://t.co/kwLddIjOyB +10/20/2017,Sports_celeb,@CaroWozniacki,"Judge me all you want, but I am SUPER pumped to see the @backstreetboys tomorrow in Singapore!!!! 😃💃🏼" +10/18/2017,Sports_celeb,@CaroWozniacki,Night session 🎾😎 https://t.co/Pe87usuF63 +10/18/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: Seven singles finals! +Joint most Top 10 wins on tour! + +@CaroWozniacki​'s Season Highs! @SAPSports​ #WTAFinals https://t.co/kJHUJqn…" +10/16/2017,Sports_celeb,@CaroWozniacki,Started off my day right here in Thailand! #namaste https://t.co/s8R9pY4RTO +10/10/2017,Sports_celeb,@CaroWozniacki,In action today in Hong Kong 🎾 https://t.co/MaBJlRmYTH +10/07/2017,Sports_celeb,@CaroWozniacki,Sightseeing in Hong Kong with dad !😎☺️ https://t.co/Iaob6G2Hhe +10/02/2017,Sports_celeb,@CaroWozniacki,"RT @LVMPD: For families looking to locate missing loved ones, please call 1-866-535-5654." +10/02/2017,Sports_celeb,@CaroWozniacki,Heartbreaking what happened in Las Vegas! My thoughts and prayers go out to everyone affected! +10/01/2017,Sports_celeb,@CaroWozniacki,Proud and excited to have qualified for the WTA finals in Singapore!! See you there 😃 https://t.co/dpvoodfxrJ +09/28/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: Two @DubaiDutyFree ambassadors, two titles! 🏆 + +Congrats @CaroWozniacki and @ZhangShuai121! 👏🎉 https://t.co/LekrGYxIS7" +09/24/2017,Sports_celeb,@CaroWozniacki,Keeping the streak alive! 10th year in a row with at least one title! 🏆 https://t.co/7whksjotzk +09/24/2017,Sports_celeb,@CaroWozniacki,Flying high! China bound! ✈️🎾 https://t.co/cb86Ca1nM2 +09/24/2017,Sports_celeb,@CaroWozniacki,That winning smile!! 😃😁 26th career title!! Woohoo!! 🍾🏆 #7thtimelucky https://t.co/a4qjfiUj3Q +09/23/2017,Sports_celeb,@CaroWozniacki,"No matter where I am or what I eat, I know @usanainc is helping me stay on top of my nutritional needs. #ad… https://t.co/gSx1animW6" +09/23/2017,Sports_celeb,@CaroWozniacki,Is there only 10 episodes of the @Suits_USA season 7?? +09/22/2017,Sports_celeb,@CaroWozniacki,Can someone explain to me exactly what the Laver Cup is and the rules? Looks interesting ! +09/19/2017,Sports_celeb,@CaroWozniacki,"Love the shopping in Tokyo – it’s my second favorite place to shop… after @DubaiDutyFree, of course! https://t.co/1MBVYzJXyF" +09/17/2017,Sports_celeb,@CaroWozniacki,I can't believe it's been exactly a year since we shot these! 👙😊❤️ @SI_Swimsuit #family https://t.co/auNOnBslwc +09/16/2017,Sports_celeb,@CaroWozniacki,NYC days https://t.co/wjN6KjVOOb +09/14/2017,Sports_celeb,@CaroWozniacki,Exploring NYC today Danish style on the 🚴🏻 https://t.co/Qhf2e0OlVk +09/13/2017,Sports_celeb,@CaroWozniacki,Yess lets goo!! @LFC #ynwa +09/13/2017,Sports_celeb,@CaroWozniacki,First that goal and now no foul or penalty?! +09/08/2017,Sports_celeb,@CaroWozniacki,Photobomb 🙄😁❤️ https://t.co/gxIm5fe20B +09/08/2017,Sports_celeb,@CaroWozniacki,"RT @hannahbjeter: People in The Virgin Islands are running out of fuel, water and food. People are dying!!! People… https://t.co/fNqm5qafsV" +09/04/2017,Sports_celeb,@CaroWozniacki,The big 🍎! 👀🚁 https://t.co/xo3V4qMrr7 +08/31/2017,Sports_celeb,@CaroWozniacki,"THANK you NYC for always showing me so much love!! Not the result that I wanted, but I'll work hard and come back e… https://t.co/dZCnssPtTa" +08/29/2017,Sports_celeb,@CaroWozniacki,I must have said something funny😜😁 Arthur Ashe stadium is a cool place to hang😎 @usopen https://t.co/RyrtOD97iF +08/26/2017,Sports_celeb,@CaroWozniacki,"RT @usopen: ""I was six years old, first time in New York, and I loved it here."" 🗽 -@CaroWozniacki + +We ❤️ you too, Caro! https://t.co/mTM3Fy…" +08/24/2017,Sports_celeb,@CaroWozniacki,Had fun on the @TODAYshow this morning! #NBC #NYC https://t.co/H9iEZiAZmU +08/23/2017,Sports_celeb,@CaroWozniacki,RT @VogueRunway: Tennis star @CaroWozniacki knows how to stand out on the court. https://t.co/59HQFDK2tN +08/22/2017,Sports_celeb,@CaroWozniacki,"RT @AMarshallSport: No. 5 seed @CaroWozniacki is the first player to hit inside the temporary Louis Armstrong Stadium. Welcome back to NYC,…" +08/21/2017,Sports_celeb,@CaroWozniacki,Watching the solar eclipse and bike riding in NYC with my love😎🚴🏻 @dlee042 https://t.co/NpnedxYl2n +08/18/2017,Sports_celeb,@CaroWozniacki,"RT @CincyTennis: Hmmm what should we do during this rain delay?... + +How about have @CaroWozniacki serenade us with some @charlieputh?! 😍 ht…" +08/15/2017,Sports_celeb,@CaroWozniacki,Love my new Z.N.E pulse hoodie!! #giftedbyadidas #THEPULSEOF tennis @adidas https://t.co/65fzFBbbdW +08/15/2017,Sports_celeb,@CaroWozniacki,Admiring my shot 😎😁🏀 https://t.co/aiynzWJX8Y +08/09/2017,Sports_celeb,@CaroWozniacki,Flying in Toronto 🙃 https://t.co/G0wCGKl0T5 +08/07/2017,Sports_celeb,@CaroWozniacki,US Open 2017 @adidas @StellaMcCartney 🔥🎾 https://t.co/zfLXrWK8sY +08/06/2017,Sports_celeb,@CaroWozniacki,"My outfit for the @usopen will be bright, and I love it! 😍☺️ @adidas @stellamccartney https://t.co/N7uJ7biEDY" +08/05/2017,Sports_celeb,@CaroWozniacki,A moment and day that I will never forget and forever be truly grateful for! Last years opening ceremony at the Rio… https://t.co/tbtoVHXQ03 +08/03/2017,Sports_celeb,@CaroWozniacki,Amazing!! Congratulations 😍😍😍 https://t.co/NRu3bA8sFW +07/29/2017,Sports_celeb,@CaroWozniacki,5th finals of the year tomorrow!! Let's gooo!! #båstad https://t.co/gEDe61xI7X +07/27/2017,Sports_celeb,@CaroWozniacki,"RT @WTA_insider: No player has won more matches since the US Open than @CaroWozniacki. + +How Caro got her groove back: +https://t.co/A5M3XPZf…" +07/26/2017,Sports_celeb,@CaroWozniacki,Holiday over. Time to get back to business. #SponsoredAthlete #TeamUSANA #USANAlifestyle @usanainc https://t.co/wJJeacw4Kx +07/25/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: We can't get enough of @CaroWozniacki's #SISwim 2017 photos! https://t.co/TEbeIm8rL2 https://t.co/2sAWiO2bOt +07/23/2017,Sports_celeb,@CaroWozniacki,😊👰🏽💍☀️💒❤️ https://t.co/1uRZoVJACH +07/23/2017,Sports_celeb,@CaroWozniacki,"When one of your dearest and oldest friends gets married, it's time to celebrate!What an amazing and beautiful coup… https://t.co/Ho0mE0wR85" +07/18/2017,Sports_celeb,@CaroWozniacki,Portofino was beautiful😍❤️ https://t.co/pNjmdFzl9S +07/14/2017,Sports_celeb,@CaroWozniacki,We got there..... Eventually 😂 @Dlee042 https://t.co/h5FTDlkdLV +07/12/2017,Sports_celeb,@CaroWozniacki,Truly proud and excited that i am now partnering with my absolute favourite energy drink STATE! @statedrinks… https://t.co/f66VF1kuqz +07/11/2017,Sports_celeb,@CaroWozniacki,Thank you for all your sweet birthday wishes! Had a great day!! #27 https://t.co/vmKMihDUqr +07/08/2017,Sports_celeb,@CaroWozniacki,"Tough battle today, moving on to week 2! @Wimbledon https://t.co/W1TiQgxZ3I" +07/05/2017,Sports_celeb,@CaroWozniacki,2017 @ESPN #Bodyissue https://t.co/d6bAzIG9D9 +07/04/2017,Sports_celeb,@CaroWozniacki,Loved the support out there on Centre court today and adore my new @adidas by @stellamccartney outfit 😍👗 https://t.co/a5eogaeH6e +07/03/2017,Sports_celeb,@CaroWozniacki,Beliebing😎 @dlee042 https://t.co/kIv76HM7Xn +06/30/2017,Sports_celeb,@CaroWozniacki,4th finals of the year tomorrow!!💪🏻💪🏻🌱 https://t.co/wtHQnKzawE +06/27/2017,Sports_celeb,@CaroWozniacki,Proud and excited for this one! Thank you #ESPNBody for the cover!! https://t.co/M3e3thYfoR +06/26/2017,Sports_celeb,@CaroWozniacki,Preparing🌱🍀😃💪🏻 https://t.co/Tls6D3ya92 +06/20/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: June 20, 2009 📆 + +@CaroWozniacki wins 5th #WTA title at #AegonInternational Eastbourne! https://t.co/vgUHhMFwLb" +06/19/2017,Sports_celeb,@CaroWozniacki,Happy 25th anniversary @usanainc !! #teamusana https://t.co/6EI14dmhmp +06/15/2017,Sports_celeb,@CaroWozniacki,"Good day at the ""office"" today! Working off that extra vacation weight 💪🏻🎾😛 https://t.co/JoCt0b4GBd" +06/13/2017,Sports_celeb,@CaroWozniacki,"Sad to leave paradise, but feeling recharged and ready to get back to work 💪🏻 https://t.co/366aQKVHj8" +06/28/2018,Sports_celeb,@RondaRousey,Strap in for the action thrill ride of the summer. Watch the new restricted trailer for #Mile22 – in theaters Augus… https://t.co/qNdjkZ0LUr +06/28/2018,Sports_celeb,@RondaRousey,"RT @WWEUniverse: #MoustacheMountain's opponents have just learned the meaning of #ShockTheSystem! + +@KORcombat @AdamColePro @roderickstrong…" +06/27/2018,Sports_celeb,@RondaRousey,The definition of a war zone is an interesting thing. Don’t miss the new #Mile22 trailer TOMORROW. https://t.co/Wumu5jyXfO +06/26/2018,Sports_celeb,@RondaRousey,My #mcm the #goatfather @travisbrownemma 😍🐐 https://t.co/smLjMRYYjU +06/24/2018,Sports_celeb,@RondaRousey,Meet the newest additions to #BrowseyAcres: Totes and Rio! #TotesMyGoats https://t.co/2UPbWOQUcK +06/24/2018,Sports_celeb,@RondaRousey,Always a student 🙇🏼‍♀️🙏🏼 ajstylesvwwe #MemoriesInTheBank #mitb https://t.co/lqpuFYuQHJ +06/24/2018,Sports_celeb,@RondaRousey,Congrats to our onefightmanagement fighter luckyboyferd on his latest victory @goldenboyboxing 👏🏼👏🏼👏🏼👏🏼 https://t.co/lqgHmBcl4G +06/23/2018,Sports_celeb,@RondaRousey,25 days @AlexaBliss_WWE https://t.co/nItoF7DdCz +06/22/2018,Sports_celeb,@RondaRousey,26 days @AlexaBliss_WWE https://t.co/zshrPsEas1 +06/21/2018,Sports_celeb,@RondaRousey,27 days @AlexaBliss_WWE https://t.co/z4RdrXULLf +06/20/2018,Sports_celeb,@RondaRousey,28 days @AlexaBliss_WWE https://t.co/yywZZyC7DX +06/19/2018,Sports_celeb,@RondaRousey,29 days @AlexaBliss_WWE https://t.co/rcHVNqkavn +06/19/2018,Sports_celeb,@RondaRousey,@RealKurtAngle I sincerely apologize for my… https://t.co/bfUov5uHRf +06/18/2018,Sports_celeb,@RondaRousey,Apparently cheaters DO prosper in the @wwe - not… https://t.co/72UQxxpJug +06/18/2018,Sports_celeb,@RondaRousey,About last night.... I know I had @niajaxwwe… https://t.co/wTsGulN36K +06/17/2018,Sports_celeb,@RondaRousey,Today’s the day!!!! #MoneyintheBank is… https://t.co/5tsIXm2cgX +06/17/2018,Sports_celeb,@RondaRousey,Competing with @WWE around the world is the best part of my “job!” So excited to return to Australia for WWE Super… https://t.co/S8Zvihgg9v +06/15/2018,Sports_celeb,@RondaRousey,#moneyinthebank is just around the corner!!!… https://t.co/TikGewUGVC +06/12/2018,Sports_celeb,@RondaRousey,"@niajaxwwe unlike you, trying to challenge me… https://t.co/GlkMFbYUxf" +06/11/2018,Sports_celeb,@RondaRousey,#quotephase https://t.co/dcGrwaMhEG +06/10/2018,Sports_celeb,@RondaRousey,"This is an immense honor, to not only take part… https://t.co/RRSlbYkhBD" +06/05/2018,Sports_celeb,@RondaRousey,@natbynature Hoping you’re feeling okay after… https://t.co/R48GhroivG +06/03/2018,Sports_celeb,@RondaRousey,https://t.co/DfbuflAiH1 +06/02/2018,Sports_celeb,@RondaRousey,Sharks are friends 🦈 get ready to celebrate the… https://t.co/IF0HkB2EEP +06/01/2018,Sports_celeb,@RondaRousey,June 17th... #MITB #MoneyInTheBank #NiavsRonda https://t.co/5GMJOjuhYC +06/01/2018,Sports_celeb,@RondaRousey,RT @roderickstrong: Please follow the link and bid! The money I receive from this I will be donating to https://t.co/gvg023oF63 in honor of… +05/29/2018,Sports_celeb,@RondaRousey,"I know what @wwe stands for .... +#WalkWithElias https://t.co/hq2xkIzd75" +05/29/2018,Sports_celeb,@RondaRousey,"Thanks for the lesson @niajaxwwe, be ready to… https://t.co/yXBr8P0mPM" +05/28/2018,Sports_celeb,@RondaRousey,"Anyone looking to adopt a doggie? + +https://t.co/FSXKJXdkmQ" +05/27/2018,Sports_celeb,@RondaRousey,"Richmond Virginia.... Jesus be a raindrop ☔️ cause it is HOT today! +https://t.co/M7vKIhkxIM" +05/27/2018,Sports_celeb,@RondaRousey,Making shark friends.... yes that’s me in the… https://t.co/JEJKexu4vc +05/27/2018,Sports_celeb,@RondaRousey,I officially want a Chilean Horse after this… https://t.co/MhI3Wa0eNJ +05/26/2018,Sports_celeb,@RondaRousey,"#SlurpingisSexy #nostrawplease + +The Death of the Plastic Straw - National Geographichttps://apple.news/Ae4v297LgSkuoCi9qT0kxIQ" +05/22/2018,Sports_celeb,@RondaRousey,Funny thing is we could have been great friends… https://t.co/w3EQGxO1EL +05/20/2018,Sports_celeb,@RondaRousey,"Love this poster by kris_artz +Can’t wait for… https://t.co/fML8Jcnt8r" +05/20/2018,Sports_celeb,@RondaRousey,I get by with a little help from my friends… https://t.co/hrAviP9N6M +05/20/2018,Sports_celeb,@RondaRousey,What an incredible week! Merci Paris for the… https://t.co/nXZfj7emti +05/19/2018,Sports_celeb,@RondaRousey,Thank you Turin for all the warmth and hospitality!!🙏🏼❤️🇮🇹 https://t.co/yT754lPNTv +05/18/2018,Sports_celeb,@RondaRousey,Holy Moly we had fun in Vienna!!! Huge thank… https://t.co/8vxOu2iXl8 +05/17/2018,Sports_celeb,@RondaRousey,Geneva 🇨🇭 was and absolute blast! It was so fun… https://t.co/ZpXvjO0A8Q +05/16/2018,Sports_celeb,@RondaRousey,"RT @WWE: .@RondaRousey will make her U.K. in-ring debut in London's @TheO2 on Wednesday, Aug. 29, as part of a special, one-night-only @WWE…" +05/15/2018,Sports_celeb,@RondaRousey,Great to be in the company of these women and… https://t.co/tbVusRcSlk +05/15/2018,Sports_celeb,@RondaRousey,Thank you to the pit crew who made me look… https://t.co/XupSalMq6m +05/15/2018,Sports_celeb,@RondaRousey,"There’s always another option… Check out the trailer for #Mile22 - coming soon to theaters. +https://t.co/DKMp4ilgrq" +05/14/2018,Sports_celeb,@RondaRousey,This challenge came earlier than expected... but I was born… https://t.co/HRawoH0kx8 +05/14/2018,Sports_celeb,@RondaRousey,"This challenge came earlier than expected... but I was born ready...I’ll see you at #MITB, @NiaJaxWWE. https://t.co/DPy0sY5hPG" +05/14/2018,Sports_celeb,@RondaRousey,Loving this NYC weather!!! At Radio City with the ladies @niajaxwwe… https://t.co/I5dzMqhbMp +05/14/2018,Sports_celeb,@RondaRousey,At the #NBCUupfront with @wwe !! https://t.co/Iwdwe8t2iS +05/14/2018,Sports_celeb,@RondaRousey,I don’t use filters often.... but when I do... I #DoItWithFlair… https://t.co/OlxSkorBuv +05/13/2018,Sports_celeb,@RondaRousey,Airport bubble gum blowing contest vs @LoveLeeJ #whatsthisgamecalled… https://t.co/Ms0r71wjbJ +05/13/2018,Sports_celeb,@RondaRousey,"Happy Mother’s Day to the most impressive, loving, hardworking,… https://t.co/7L5Dh3YMD1" +05/11/2018,Sports_celeb,@RondaRousey,#TIL #TodayILearned your beneficial bacteria make up 85% of your… https://t.co/xp6JTW7yMj +05/11/2018,Sports_celeb,@RondaRousey,Big congrats to my Sweat Sisters signing with @wwe!!!… https://t.co/nFfsdlkL5o +05/04/2018,Sports_celeb,@RondaRousey,Me and @LoveLeeJ ecstatic to be on location filming for #SharkWeek this… https://t.co/u1B9T3OOwt +05/04/2018,Sports_celeb,@RondaRousey,"Still can’t believe the first show I’ve ever produced, #WhyWeFight, is… https://t.co/3UHNsyDpJv" +05/01/2018,Sports_celeb,@RondaRousey,Honored to get the support of our champ @niajaxwwe 🙏🏼🥋❤️ https://t.co/156NepGKhj +04/29/2018,Sports_celeb,@RondaRousey,#oldheadshotday https://t.co/UTliMRAWzP +04/27/2018,Sports_celeb,@RondaRousey,Proudly supporting @TitusONeilWWE and Millions around the world for #Payitforwardday On April 28… https://t.co/2C3gdGvMGX +04/25/2018,Sports_celeb,@RondaRousey,"#Mile22 red carpet at #cinemacon - +Look for it’s release August 3rd! +Hair @thisisbabe1 +Makeup… https://t.co/iBXt9KhByH" +04/25/2018,Sports_celeb,@RondaRousey,"Hittin the red carpet with my dudes! @mark_wahlberg @iko_uwais pberg44 +Big thanks to the pit… https://t.co/qRtF6i6CkU" +04/25/2018,Sports_celeb,@RondaRousey,So fun getting the gang back together again!!! Seems like just yesterday I was sneaking away… https://t.co/IIoowE0J1c +04/25/2018,Sports_celeb,@RondaRousey,Always an honor and privilege to share a stage with the lovely @laurencohan especially to… https://t.co/zzfXpicUaS +04/24/2018,Sports_celeb,@RondaRousey,"@mark_wahlberg is always director Peter Berg's first option, but in #Mile22 he's the… https://t.co/Z6RcbykvZT" +04/24/2018,Sports_celeb,@RondaRousey,RT @Fandango: Find out more about #Mile22: https://t.co/KcFBRiRMAk https://t.co/pXKjYWEBju +04/24/2018,Sports_celeb,@RondaRousey,"RT @Fandango: .@markwahlberg is always director Peter Berg's first option, but in #Mile22 he's the government's strong-armed third option.…" +04/24/2018,Sports_celeb,@RondaRousey,Denying the crimes of the past only shed more light on what was lost. The Armenian Genocide will… https://t.co/BPyA9H86Ys +04/24/2018,Sports_celeb,@RondaRousey,#RowdyHart 🥋❤️ https://t.co/WUCZhRrxiE +04/19/2018,Sports_celeb,@RondaRousey,@natbynature showing me how to do the sharpshooter at santino_bros - back when I was still… https://t.co/VSI7pue3cm +04/18/2018,Sports_celeb,@RondaRousey,Proud of our #OneFightManagement fighter @vanesboxing stepping up to fight our friend @gggboxing on 3 weeks notice… https://t.co/E4ry8WBob2 +04/17/2018,Sports_celeb,@RondaRousey,Kosoto Gari #judo https://t.co/EAoNH00rsm +04/17/2018,Sports_celeb,@RondaRousey,"Some folks are wise and some are otherwise. + +-Tobias Smollett https://t.co/kNAJQHwDmY" +04/17/2018,Sports_celeb,@RondaRousey,#quotephase https://t.co/yGNZpxTkZ8 +04/17/2018,Sports_celeb,@RondaRousey,Congratulations on an impressive victory your first night back on #Raw @natbynature!… https://t.co/HEXvrVdQD6 +04/17/2018,Sports_celeb,@RondaRousey,A friend in need is a friend indeed ... welcome to #Raw @natbynature https://t.co/nRmts7xBrO +04/13/2018,Sports_celeb,@RondaRousey,"Thank you @BellaTwins and @NatbyNature for being so cool and cheering me on!! #girlpower + +https://t.co/kEaiqxhAIt" +04/13/2018,Sports_celeb,@RondaRousey,Try walking into the Mercedes Benz Superdome the first time to a sight like that and not tear up https://t.co/Chhseg4J5x +04/13/2018,Sports_celeb,@RondaRousey,"#WrestleMania was just the beginning. It's time to get #RowdyInEurope with @WWE! +#WWEGeneva 5/16 +#WWEVienna 5/17… https://t.co/3T1z1Tx27z" +04/12/2018,Sports_celeb,@RondaRousey,The you langlitzleathers @iammikaze and @AlejandroStyles @nazoboxing and @gfcdiamond for… https://t.co/r6p1PL16IW +04/10/2018,Sports_celeb,@RondaRousey,Hope I made you proud Hot Rod... https://t.co/nWiPD7XzIl +04/10/2018,Sports_celeb,@RondaRousey,I have many strengths.... but forgiveness isn’t one of them #SorryNotSorry #DontMessWithRowdy #Raw https://t.co/BC1ACGG1cD +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 🙏🏼 https://t.co/jQC1XAn2oQ +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 🤯😆🤩 https://t.co/zXQSABOLiG +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 was amazing.... not sure what repercussions are waiting for @RealKurtAngle and I… https://t.co/VaH8x7CfKo +04/09/2018,Sports_celeb,@RondaRousey,Thanks @RealKurtAngle for being the best partner and teammate I could ever have for my @wwe… https://t.co/yaf2oXDpFA +04/09/2018,Sports_celeb,@RondaRousey,Wow...thank you @RealKurtAngle the @wwe universe and New Orleans for an unforgettable night… https://t.co/RyaZ8q5I5r +04/08/2018,Sports_celeb,@RondaRousey,So proud of @joannamma and @rosenamajunas fighting their hearts out and representing all women and all fighters ton… https://t.co/Bm49tFTU45 +04/08/2018,Sports_celeb,@RondaRousey,Congrats to the new @wwenxt champion @qosbaszler!!!!! #4horsewomen #andthenew https://t.co/9NcwPmQQ4T +04/07/2018,Sports_celeb,@RondaRousey,My❤️ https://t.co/dnfHQZN8Z6 +04/07/2018,Sports_celeb,@RondaRousey,"RT @7GenGames: In New Orleans this weekend?Come hang out with us at @7gengames meetup - Saturday, noon - 2 pm. @RondaRousey won’t be there,…" +04/07/2018,Sports_celeb,@RondaRousey,"#WWEHOF +Thanks @Stello_Official for my custom dress. +Jewelry: kukkajewelry +Styling:… https://t.co/x949HhDiOC" +04/07/2018,Sports_celeb,@RondaRousey,ricflairnatureboy WOOOOOO!!!!!!! https://t.co/uBHiyoSE2J +04/03/2018,Sports_celeb,@RondaRousey,“Your pain is the breaking of the shell that encloses your understanding.” Khalil… https://t.co/boXmAqCKB2 +04/03/2018,Sports_celeb,@RondaRousey,#TrustFundTough https://t.co/5ZUAzX2G4p +04/03/2018,Sports_celeb,@RondaRousey,"Take all the cheap shots you want @StephMcMahon - +I can take it. +Along with your left 💪🏼 +See… https://t.co/gcBFO4HUDh" +04/03/2018,Sports_celeb,@RondaRousey,"Only the dead have seen the end of war. + +-George Santayana https://t.co/XEvunyQz1P" +04/03/2018,Sports_celeb,@RondaRousey,Atlanta 🍑❤️🙏🏼 already can’t wait to come back!! Thank you guys for the warm southern welcome!!! https://t.co/NxUvYyk4Fx +04/03/2018,Sports_celeb,@RondaRousey,I met another Rousey last night!! https://t.co/qnCQfx0ZHg +04/01/2018,Sports_celeb,@RondaRousey,@muhammadali 🙌🏼 https://t.co/axDjrxhdU3 +03/30/2018,Sports_celeb,@RondaRousey,#prune @AlejandroStyles @thisisbabe1 rietsunku https://t.co/WfQpmnoXO1 +03/29/2018,Sports_celeb,@RondaRousey,maxeffortmuscle #TodayILearned You have more bacteria cells than human cells in your body! https://t.co/mAmwPde73Q +03/27/2018,Sports_celeb,@RondaRousey,Thank you @thisisbabe1 rietsunku and @AlejandroStyles for getting me all prettied up for my… https://t.co/uAIDUJ73CE +03/27/2018,Sports_celeb,@RondaRousey,Thank you Cleveland 🙏🏼❤️ https://t.co/ZbjeYp7A4n +03/27/2018,Sports_celeb,@RondaRousey,"Apparently warm welcomes come few and far between in the @wwe +#absolution #raw @realpaigewwe… https://t.co/IoMXjCLo4N" +03/26/2018,Sports_celeb,@RondaRousey,@Jarrius happy 16th birthday!!!!! 🎂 looking forward to meeting you at #wrestlemania !! +03/26/2018,Sports_celeb,@RondaRousey,#roadtowrestlemania continues #april8th #NOLA https://t.co/io66EmrHKn +03/26/2018,Sports_celeb,@RondaRousey,Always a student 🙏🏼 #roadtowrestlemania https://t.co/HjugIdC4QE +03/22/2018,Sports_celeb,@RondaRousey,My Ev-er-y-THANG 😍 https://t.co/41OZyhdAnn +03/20/2018,Sports_celeb,@RondaRousey,Thank you @DanaBrookeWWE’s for the warm welcome and #wrestlemania34 warm up last night 😉… https://t.co/8mgPDfXhnc +03/20/2018,Sports_celeb,@RondaRousey,Holy Moly Dallas was fun last night!! 🙏🏼❤️ #dontmesswithtexas https://t.co/D2UhW8opzh +03/18/2018,Sports_celeb,@RondaRousey,I know got a lot of catching up to do. But I’m not afraid of hard work. I got the very best in… https://t.co/5L8s7SjXur +03/18/2018,Sports_celeb,@RondaRousey,"Safety first, then #teamwork #roadtowrestlemania https://t.co/0imafk4MkJ" +03/17/2018,Sports_celeb,@RondaRousey,"Rise & Game & Grind +Got some WoW time in with my Hubby @travisbrownemma before heading to… https://t.co/gMS5IUHaoh" +03/17/2018,Sports_celeb,@RondaRousey,Everything happens for a reason https://t.co/pRfb6ECwKV +03/16/2018,Sports_celeb,@RondaRousey,#NewDayRocks @xavierwoodsphd wwebige @TrueKofi https://t.co/1a37U7oR4u +03/15/2018,Sports_celeb,@RondaRousey,Congrats our #OneFightManagement fighter luckyboyferd getting signed to @goldenboyboxing !!!! https://t.co/2Sc6U8SRFb +03/13/2018,Sports_celeb,@RondaRousey,"heeezooo and @thisisbabe1 conducting their own style of symphony for theellenshow +Jewelry:… https://t.co/WHOuKeb98c" +03/13/2018,Sports_celeb,@RondaRousey,"Always fun getting the #rontourage back together - especially for theellenshow !! +Hair… https://t.co/bnef2B2GJf" +03/13/2018,Sports_celeb,@RondaRousey,She is just amazing - thank you theellenshow for having me back on today! https://t.co/jk6DUn6vIV +03/12/2018,Sports_celeb,@RondaRousey,"RT @WWE: The moment you never thought would happen... + +@RondaRousey & @RealKurtAngle battle @StephMcMahon & @TripleH at @WrestleMania, stre…" +03/10/2018,Sports_celeb,@RondaRousey,#TotesMyGoat eating a rope #ClaytheGoat https://t.co/vGq6VwdPsd +03/10/2018,Sports_celeb,@RondaRousey,Finally!! #bluedrake #wow https://t.co/Vt6VETdZAS +03/09/2018,Sports_celeb,@RondaRousey,That’s totes my goat #eatingwood #hesagenius #paxthegoat https://t.co/TScJmH5EFi +03/09/2018,Sports_celeb,@RondaRousey,#internationalwomensday https://t.co/VQOouYkE5s +03/08/2018,Sports_celeb,@RondaRousey,"My @maxeffortmuscle supplement line is here! +I'm giving away ⬇️ +FREE T-Shirt + +FREE Product of Choice +to everyone w… https://t.co/Y9xQC6HG98" +03/06/2018,Sports_celeb,@RondaRousey,Standing reverse kata guruma #judo https://t.co/Bpy2Nz4rhK https://t.co/xeKpnRInLL +03/06/2018,Sports_celeb,@RondaRousey,Ura Nage #judo https://t.co/jOa0MI1PCj https://t.co/UrRGAejCcY +03/06/2018,Sports_celeb,@RondaRousey,Thank you for all the love tonight Milwaukee 🙏🏼❤️ https://t.co/KCtbqkT7nX +03/06/2018,Sports_celeb,@RondaRousey,Respect your olympians. Or we’ll make you respect us. See you at #WrestleMania34 https://t.co/ujjVDVJw14 +03/06/2018,Sports_celeb,@RondaRousey,RT @cainmma: Thanks to @rondarousey and @travisbrownemma for the shirt. My daughter will love it until I get my own “El Toro” @WWE shirt. G… +03/04/2018,Sports_celeb,@RondaRousey,😍 #TeamBrowsey https://t.co/XRDPHxJwSS +03/04/2018,Sports_celeb,@RondaRousey,It was an honor getting inducted into the International Sports Hall of Fame today alongside my… https://t.co/GSiLckcDSS +03/01/2018,Sports_celeb,@RondaRousey,When you #NoSell surprise @travisbrownemma #marriedlife https://t.co/ROoQv5DzPG +02/27/2018,Sports_celeb,@RondaRousey,"1st day on the job... @stephaniemcmahon slaps me... +2nd day on the job... my fellow Olympian @therealkurtangle, an… https://t.co/dFS7rSzYWz" +02/26/2018,Sports_celeb,@RondaRousey,Apparently I have some “explaining to do” - Tune in to #Raw tonight to hear it @wwe https://t.co/ZP2TMIKYDA +02/26/2018,Sports_celeb,@RondaRousey,"Hell yeah @braunstowmanwwe!!!! 👊🏼💪🏼 +And that’s MY husband!! @travisbrownemma… https://t.co/a7qdUq2Yrd" +02/26/2018,Sports_celeb,@RondaRousey,"Hell yeah @braunstowmanwwe!!!! 👊🏼💪🏼 +And that’s MY husband!! @travisbrownemma… https://t.co/v7p9L0RDdn" +02/26/2018,Sports_celeb,@RondaRousey,Thank you Las Vegas for the passion and support last night... 🙏🏼 https://t.co/zwmWYI19fd +02/26/2018,Sports_celeb,@RondaRousey,Finally signed to @WWE ... the night definitely could have gone smoother though.... https://t.co/lyu2oGLBFb +02/25/2018,Sports_celeb,@RondaRousey,Love this edit by venomous_designs for #eliminationchamber tonight https://t.co/1s5Y71zR0X +02/25/2018,Sports_celeb,@RondaRousey,Ready for #eliminationchamber tonight!??!! I’m excited to finally sign my @WWE contract!!!! https://t.co/UM47zBOtJS +02/25/2018,Sports_celeb,@RondaRousey,Congrats to @nxtdrval @reggiego10 on their wedding! I’m honored I could have been a part of it… https://t.co/UkbDfceW9R +02/24/2018,Sports_celeb,@RondaRousey,"Favorite picture of my judo career, en route to winning my first World Cup at 19 - pic by David… https://t.co/8hBlWhlCD9" +02/21/2018,Sports_celeb,@RondaRousey,everything the light touches is our kingdom https://t.co/i1DaIUme4S +02/01/2018,Sports_celeb,@RondaRousey,I can’t tell you how much I appreciate all the birthday wishes 🙏🏼I was honestly expecting to… https://t.co/jOj4lUbQ38 +02/01/2018,Sports_celeb,@RondaRousey,"Thank you @MarinaShafir for this good morning pep talk 😂 #bfff + +https://t.co/2Haw3yyx3Z" +01/31/2018,Sports_celeb,@RondaRousey,My family in a nutshell 🥜😂 https://t.co/pcAXCFFfWZ +01/31/2018,Sports_celeb,@RondaRousey,#trafficjammin https://t.co/7BIDrnDvfX +01/29/2018,Sports_celeb,@RondaRousey,🤯😁😎 https://t.co/P5eCN36cs4 +01/29/2018,Sports_celeb,@RondaRousey,Just posted a photo https://t.co/fK1aLIUd4z +01/29/2018,Sports_celeb,@RondaRousey,My road to #wrestlemania begins https://t.co/ECrftMfF8T +01/29/2018,Sports_celeb,@RondaRousey,Gettin’ #Rowdy at #royalrumble https://t.co/A6a2n06TXG +01/29/2018,Sports_celeb,@RondaRousey,My favorite part of tonight - surprising my boys ❤️❤️❤️ @travisbrownemma https://t.co/nWFatvlTBn +01/27/2018,Sports_celeb,@RondaRousey,Enjoying some #Colombia cuisine with the #mile22 crew 🍵 #ajiaco https://t.co/BBAIP4efg3 +01/26/2018,Sports_celeb,@RondaRousey,Back on set #Mile22 #Bogota #Columbia https://t.co/ix0rFJrBr4 +01/25/2018,Sports_celeb,@RondaRousey,¡Hola Bogota! #mile22 https://t.co/9vvqFjDGV2 +01/18/2018,Sports_celeb,@RondaRousey,If you can’t tell my Roosters are super excited about me giving away a year’s supply of… https://t.co/dQaNfboRnA +12/31/2017,Sports_celeb,@RondaRousey,Watch #WhyWeFight on @go90Sports : https://t.co/4wdjSfCYVU +12/31/2017,Sports_celeb,@RondaRousey,https://t.co/Xadojai8Wl +12/12/2017,Sports_celeb,@RondaRousey,@kcstunts promising me my hair won't get set on fire 🙅🏼🔥 #NormalDayAtWork #2ndUnit #mile22 https://t.co/8u4ssHlDKy +12/01/2017,Sports_celeb,@RondaRousey,Our launch date is getting closer every day! Here's the latest preview for https://t.co/PsLSibFNz9… https://t.co/j55xWWZ5WI +11/30/2017,Sports_celeb,@RondaRousey,"""You sleepin' Ranger?"" barbellberserker #mile22 https://t.co/K0sDdnmqee" +11/24/2017,Sports_celeb,@RondaRousey,"Max Effort’s Black Friday is here!!  +Receive 50% off STORE WIDE! This will be an automatic… https://t.co/pup9C0bPSH" +11/10/2017,Sports_celeb,@RondaRousey,My amazing husband @travisbrownemma built #browseyacres gym in a matter of days 😍 thank you… https://t.co/dZQrrPqarr +11/09/2017,Sports_celeb,@RondaRousey,Thank you Abby and Asia for making my day!! ❤️🙏🏼 https://t.co/GMrWAOmc0a +11/09/2017,Sports_celeb,@RondaRousey,Thank you Charlie and Kathy Michael for this beautiful note 🙏🏼 https://t.co/kI3iwjvJZF +11/07/2017,Sports_celeb,@RondaRousey,That face you make before you realize there's a rewind button 😱#forza #4k #xboxonex https://t.co/Ib5woAuQNI +11/06/2017,Sports_celeb,@RondaRousey,Can’t wait to see all the excited fans at the @Microsoft store in NYC tonight @ 9pm to celebrate the launch of the #XboxOneX! +11/04/2017,Sports_celeb,@RondaRousey,We got to Demo the new #battleforazeroth expansion at #blizzcon - can't wait!!! https://t.co/YcAMDSPDLf +11/04/2017,Sports_celeb,@RondaRousey,I have since learned who techno Viking is 😂 #blizzcon #technodeathknight https://t.co/CT42U8vu1b +11/04/2017,Sports_celeb,@RondaRousey,Darkmoon Faire!!!! #BrowseyBlizzCon https://t.co/aLYqfIcP5d +11/04/2017,Sports_celeb,@RondaRousey,#blizzcon was a blast yesterday!!! #DeathKnights #WoW https://t.co/kQYPPPwlh4 +10/31/2017,Sports_celeb,@RondaRousey,You gotta get your hands on #AssassinsCreed and the new Xbox One X! Thank you @Xbox @rukizzel #XboxLiveSessions https://t.co/d1SiPEr1MO +10/28/2017,Sports_celeb,@RondaRousey,Just another day at #Browsey Ranch https://t.co/bJJEG6PLZ6 +10/25/2017,Sports_celeb,@RondaRousey,Check me out on 10/26 as I partner with @Xbox to feel true power & play #AssassinsCreed on Xbox One X… https://t.co/QVzmendhwR +10/24/2017,Sports_celeb,@RondaRousey,With Troy Boy and @marinashafir aka the most gorgeous and graceful mother you'll ever see https://t.co/BUsZcnmS01 +10/18/2017,Sports_celeb,@RondaRousey,https://t.co/TcuQQHDay0 +10/09/2017,Sports_celeb,@RondaRousey,My judo coach @JFloresPro isn't just a martial artist but a DOPE illustrative one too! Buy original art of his here… https://t.co/QQckr8aPLB +10/03/2017,Sports_celeb,@RondaRousey,Excited2announce Im partnering w/ @maxeffortmuscle A new fast growing line of nutritional supplements that I'll be… https://t.co/B3TG5e9XS0 +05/05/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/9IAzTh4cLV +05/04/2017,Sports_celeb,@RondaRousey,"Who is @roderickstrong ? part 2 + +https://t.co/CGXzneQOso" +05/03/2017,Sports_celeb,@RondaRousey,Hey guys I'm taking over the @nbc account today till my guest appearance on nbcblindspot tonight… https://t.co/pqa47IT2kN +05/02/2017,Sports_celeb,@RondaRousey,"Don't miss my nbcblindspot guest appearance airing this Wednesday, May 3rd at 8pm/7c on @NBC https://t.co/nZFv5zbXdB" +04/27/2017,Sports_celeb,@RondaRousey,"Quick promo for my @nbcblindspot guest appearance airing this Wednesday, May 3rd at 8pm/7c on @NBC https://t.co/PkSiDoceHN" +04/27/2017,Sports_celeb,@RondaRousey,"Who is @roderickstrong ? + +https://t.co/ihU2myR2Wa" +04/25/2017,Sports_celeb,@RondaRousey,102 year ago today was the beginning of the #armeniangenocide - 1.5 million men women and… https://t.co/uyUCmD69O1 +04/22/2017,Sports_celeb,@RondaRousey,💍😍❤️ @travisbrownemma https://t.co/zj2hI25Vxq +04/07/2017,Sports_celeb,@RondaRousey,#TakeaMomentNotaSelfie https://t.co/rGgJ6UYtEE +04/04/2017,Sports_celeb,@RondaRousey,#NextGenJudo teaching themaxston ashi waza https://t.co/72Hc9gVzcu +03/31/2017,Sports_celeb,@RondaRousey,Thank you punkmetender_art for the kind words and incorporating me into your art - and thanks… https://t.co/0oiJkRA1ZA +03/22/2017,Sports_celeb,@RondaRousey,Good luck to all fighters on golden boy card tom at fantasy springs casino. Watch Thursday on… https://t.co/isU7hq0mmT +03/09/2017,Sports_celeb,@RondaRousey,#iheartstreetart pic by @littlebropics art by @solusstreetart in NYC https://t.co/oEX3ahmMpZ +03/08/2017,Sports_celeb,@RondaRousey,#DayWithoutaWoman #resist https://t.co/r5DuMNxBVY +03/07/2017,Sports_celeb,@RondaRousey,#resist https://t.co/LB4sftaJHM +03/01/2017,Sports_celeb,@RondaRousey,Had fun filming with audreyesparza for nbcblindspot today😁check out season 2 of #blindspot (I… https://t.co/jAaeTaY1vs +02/26/2017,Sports_celeb,@RondaRousey,#trafficjamin https://t.co/jmsKgbhWY3 +02/26/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/Oy6I48CvG2 +02/12/2017,Sports_celeb,@RondaRousey,To the girl I just met at the grocery store - thank you 🙏🏼❤️ +02/10/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/QSjGs0it3S +01/29/2017,Sports_celeb,@RondaRousey,"The plaque at the base of the Statue of Liberty reads: ""Give me your tired, your poor, your… https://t.co/Yeti7Y8Ypg" +12/30/2016,Sports_celeb,@RondaRousey,"#FearTheReturn #FridayDec30 #rouseyvsnunes #ufc207 +Pic by hansgutknecht https://t.co/TudhKPQrN4" +07/02/2018,Sports_celeb,@SkyDigg4,"RT @Coach_Blake_: Keep speaking your truth @_ajawilson22 @SkyDigg4 @ecambage @kaymac_2123 and everyone else. + +We. Support. You. https://t.c…" +07/02/2018,Sports_celeb,@SkyDigg4,"A little bit louder now!! +But get yo money black man https://t.co/ShzS0ZLJdD" +07/02/2018,Sports_celeb,@SkyDigg4,"RT @RachGall: Young players... watch @SkyDigg4 and the intensity and energy she plays with, especially on the defensive end of the floor. T…" +07/02/2018,Sports_celeb,@SkyDigg4,RT @LaChinaRobinson: Kayla Thornton just has such a great momentum and energy to her game. Good things happen to her because she never chea… +07/01/2018,Sports_celeb,@SkyDigg4,Everybody good! Could’ve been worse if I didn’t slam on the brakes! +07/01/2018,Sports_celeb,@SkyDigg4,"Old lady just pulled out into traffic, switched three lanes without signaling, and hit my car! Talking about she co… https://t.co/jxEpO2TCbv" +06/30/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: A good omen for the game tomorrow: one of my @SkyDigg4 jerseys FINALLY came after waiting for over a month! 😍🔥 +Still waiti…" +06/30/2018,Sports_celeb,@SkyDigg4,Falafel 🙌🏽 +06/29/2018,Sports_celeb,@SkyDigg4,RT @K104FM: Get tickets to the July 1st @DallasWings Game w/ @SkyDigg4 at https://t.co/EdemuR88Rq! #dallaswings #k104 https://t.co/bmOgvI1M… +06/29/2018,Sports_celeb,@SkyDigg4,RT @RocNation: Be sure to vote for @SkyDigg4 as Best #WNBA player at this year’s #ESPYS 🗳https://t.co/w7IqBDDEyJ https://t.co/ktKmKcwNvc +06/29/2018,Sports_celeb,@SkyDigg4,RT @RocNation: 🙌 RT to get @SkyDigg4 to the #WNBAAllstar game!! #WNBAvote https://t.co/gGrDtDDLXM +06/29/2018,Sports_celeb,@SkyDigg4,"RT @SLAMonline: .@SkyDigg4 activated point god mode last night, dropping a clutch 29 points and 8 assists. (via @wnba) https://t.co/G5wP2S9…" +06/28/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: She ready!!! That was such a great game and performance 🙌🏾 https://t.co/QMtyXDf3ZC +06/28/2018,Sports_celeb,@SkyDigg4,"RT @2nd1stchance: @WNBA @SkyDigg4 @DallasWings Shows tht on any level, Hard wrk, HEART PASSION DETERMINATION & GOD takes U a long way. Thx…" +06/28/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: See @SkyDigg4, it worked out like I said! 😂 +Back end of a back-to-back, yet u played ALL 40 minutes, put up 29pts & 8ast o…" +06/28/2018,Sports_celeb,@SkyDigg4,"RT @OGBSP: Retweeted WNBA (@WNBA): + +What a night for @SkyDigg4! + +Diggins-Smith posts 29 PTS & 8 AST, comes up CLUTCH in a @DallasWings vict…" +06/28/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: A HUUUUUUGE final 2 minutes from @ecambage and @SkyDigg4 to seal the win for the Wings! #VivaLasWings https://t.co/xz0qTyf… +06/27/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: Watching the game tonight wearing my new @SkyDigg4 player jersey shirt. 💯🔥💪 +#LetsFLy https://t.co/bfidF4Oc0i" +06/26/2018,Sports_celeb,@SkyDigg4,"What shall we then say to these things? If God if for us, who can be against us?" +06/26/2018,Sports_celeb,@SkyDigg4,RT @RocNation: #WNBAAllStar voting is in full swing! Want to see @SkyDigg4 in Minneapolis?! RT to vote! 🏀 #WNBAvote https://t.co/Znx8tukl0M +06/25/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVote @SkyDigg4 #SkylarDigginsSmith +06/25/2018,Sports_celeb,@SkyDigg4,@thejaylonsmith Indiana made 🙌🏽 +06/24/2018,Sports_celeb,@SkyDigg4,"Time to step it up period +W/ me or against me" +06/23/2018,Sports_celeb,@SkyDigg4,"Great team win tonight! The atmosphere was electric! Thanks to everyone that showed up tonight, it was LIT!" +06/22/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: @SkyDigg4 AKA ""Chef Sky"" is ALWAYS giving back to the community!💯👏🙌 +#BoysAndGirlsClub https://t.co/NQi0mNsmPu" +06/21/2018,Sports_celeb,@SkyDigg4,RT @RocNation: RT to vote for @skydigg4!! 💎🙌#WNBAVOTE https://t.co/xdTdVRttDv +06/21/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVOTE @SkyDigg4 https://t.co/9M4d6yu3sJ +06/21/2018,Sports_celeb,@SkyDigg4,RT @_Kayraa4: Skylar Diggins-Smith @SkyDigg4 #WNBAvote +06/21/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: In case you didn’t know... +@KaelaD3 +@SkyDigg4 +@KBT_5Blessed +@ecambage +@LeticiaRomero95 +@Graytness_15 +@aerial_powers…" +06/21/2018,Sports_celeb,@SkyDigg4,My friends are some real ones!! Thanks Tiff! https://t.co/DVrgbPIFkU +06/21/2018,Sports_celeb,@SkyDigg4,https://t.co/dQei77Pohg +06/21/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: More ESPYS nominations 🙌🏾... @SkyDigg4 is up for Best WNBA player! Make sure you go vote for both Sky and @ndwbb and @A… +06/21/2018,Sports_celeb,@SkyDigg4,Thanks Shug!!! https://t.co/uBQF7OYRu2 +06/20/2018,Sports_celeb,@SkyDigg4,RT @RocNation: Congrats #RocNationSports @SkyDigg4 & @TG3II on being nominated for an #ESPY. Be sure to vote now at https://t.co/w7IqBDDEyJ… +06/20/2018,Sports_celeb,@SkyDigg4,RT @Aholmes_15: Skylar Diggins-Smith #WNBAVOTE @SkyDigg4 +06/20/2018,Sports_celeb,@SkyDigg4,RT @asher_kasher014: Skylar Diggins -Smith @SkyDigg4 #WNBAAllStar +06/20/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVOTE @SkyDigg4 #SkylarDigginsSmith +06/20/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Get you a friend that has your back like @ecambage has @SkyDigg4's 💪💪 #RiseTOGETHER https://t.co/PY4gIffKgT +06/20/2018,Sports_celeb,@SkyDigg4,RT @ShaunKing: This is Rachel Maddow upon getting the breaking news that Trump has established detention centers for babies who've been for… +06/20/2018,Sports_celeb,@SkyDigg4,RT @RimaC13: Vote for @SkyDigg4 for WNBA AllStar!! +06/19/2018,Sports_celeb,@SkyDigg4,RT @rmontscott: Skylar Diggins-Smith @SkyDigg4 #WNBAVote +06/19/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: #WNBAAllStar voting is LIVE! + +Which ⭐️⭐️⭐️ do you want to see in action in Minneapolis on July 28? + +Cast your votes right here on…" +06/19/2018,Sports_celeb,@SkyDigg4,RT @jrnba: Congrats to Kyla Oldacre (@SkyDigg4 Soldiers) & Emoni Bates & Kareem Rozier (Bates Fundamentals) for receiving the Midwest Regio… +06/19/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: We're back in Minnesota for round ✌️ vs. the @minnesotalynx! Tip off is at 7pm. Don't miss it! 🏀 + +📍 Target Center +💻 Leagu…" +06/19/2018,Sports_celeb,@SkyDigg4,You couldn’t walk a mile! Stfu https://t.co/CAZWY7l7Yc +06/19/2018,Sports_celeb,@SkyDigg4,The NBA gets 50% of the revenue they bring in. We don’t even get 1/2 (<25%) of the revenue WE bring in! Let’s start… https://t.co/wMSPIssWUj +06/19/2018,Sports_celeb,@SkyDigg4,Hmmm.... https://t.co/D1FZ9JfELx +06/19/2018,Sports_celeb,@SkyDigg4,Happy #Juneteenth! ✊🏽 https://t.co/AQfcuzAESP +06/19/2018,Sports_celeb,@SkyDigg4,Wrong! But welcome to the family! https://t.co/ORXb2rbhry +06/18/2018,Sports_celeb,@SkyDigg4,Thanks Shaun! We need more guys like you leaning in and supporting women sports! https://t.co/c6f4l8lOA0 +06/18/2018,Sports_celeb,@SkyDigg4,Don’t get me started! https://t.co/9NJG6wpciI +06/18/2018,Sports_celeb,@SkyDigg4,"Woman in airport: “You guys don’t have a private jet???” + +Me: 😒“HA!” + +No....no we don’t. Even on back-to-backs...." +06/18/2018,Sports_celeb,@SkyDigg4,"RT @keithboykin: According to NASA, The Milky Way is ""so big that even at the speed of light, it would take 100,000 years to travel across…" +06/18/2018,Sports_celeb,@SkyDigg4,"RT @CoryBooker: Read this powerful op-ed by @LaurawBush then take 2 actions: + +Call on Trump to end his despicable policy of separating fami…" +06/17/2018,Sports_celeb,@SkyDigg4,"Love these two! Been coaching for years, helping dozens get to the collegiate level and beyond, and always giving b… https://t.co/Er6p4HtZkd" +06/17/2018,Sports_celeb,@SkyDigg4,RT @jrnba: Go-ahead bucket by Amaya Asher... the @SkyDigg4 Soldiers win the girls Midwest Regional in a fantastic finish! #JrNBAWorldChampi… +06/17/2018,Sports_celeb,@SkyDigg4,"Ayyyyyye!!! We lit!!! So proud of you girls! Milk house, here we come! https://t.co/S4tMPI5yCN" +06/17/2018,Sports_celeb,@SkyDigg4,RT @LBI_Steve: It’s not sexy but this is how @SkyDigg4 14U became the 1st ever @jrNBA champs. @LBInsider https://t.co/9kp1Vj0iP1 +06/17/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: “We gotta keep playing together so we can go to Orlando.” + +Amaya Asher (11 PTS) after Team @SkyDigg4 Semifinals W! #JrNBAWorldCh…" +06/17/2018,Sports_celeb,@SkyDigg4,Champions!! So proud of my girls! https://t.co/4OycCQtwhY +06/16/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Our very own @SkyDigg4 and @Graytness_15 have been nominated for Kid’s Choice Sports Awards and they need YOUR help! Go to… +06/16/2018,Sports_celeb,@SkyDigg4,RT @gayhefner: me & my best friend wilding out at our son’s basketball game in the future https://t.co/xFTC3OV3P2 +06/16/2018,Sports_celeb,@SkyDigg4,RT @asher_kasher014: Sky Digg Soldiers 2-0 in pool play ! Keep it going ladies 💙💚@SkyDigg4 https://t.co/XSPcCtfCqL +06/16/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: .@SkyDigg4 with the scoop AND the score 🙌 + +She leads the Wings with 15 PTS so far tonight! #RiseTogether https://t.co/TQk5…" +06/16/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: Team @SkyDigg4 is off to the races in the Midwest with the steal & three! #JrNBAWorldChampionship + +🖥: @ElevenSportsUSA https://…" +06/15/2018,Sports_celeb,@SkyDigg4,"RT @AmeenaRasheed: As much as I love sports media, I really loved reading about @SkyDigg4 in Refinery 29 and Complex before the season kick…" +06/15/2018,Sports_celeb,@SkyDigg4,RT @DorothyJGentry: Nothing but respect for @SkyDigg4 as she stops and high-fives every single fan who stayed after the game. #respect #Cla… +06/15/2018,Sports_celeb,@SkyDigg4,"RT @shannonrwatts: Sarah Sanders: “It is very Biblical to enforce the law.” + +Bible: “Woe to those who make unjust laws, to those who issue…" +06/14/2018,Sports_celeb,@SkyDigg4,Smh lol https://t.co/8LzfoQo35o +06/14/2018,Sports_celeb,@SkyDigg4,RIP Anne Donovan +06/13/2018,Sports_celeb,@SkyDigg4,Everybody think they a damn coach! +06/13/2018,Sports_celeb,@SkyDigg4,RT @AdamGrosbard: .@BGCA_Clubs Hall of Famer @SkyDigg4 and the Wings working with kids today at Boys & Girls Club of Greater Dallas https:/… +06/13/2018,Sports_celeb,@SkyDigg4,RT @WNBALOVE: DT on @SkyDigg4 “There is a real fight in her that I love. She is not out there to make friends or anything like that. That i… +06/13/2018,Sports_celeb,@SkyDigg4,"I’m pissed off for greatness! Bc when you’re pissed off for greatness, you’re not settling for mediocrity!" +06/09/2018,Sports_celeb,@SkyDigg4,"RT @WSUWBasketball: We then decided to go see some WNBA action! We went to see the Indiana Fever vs Dallas Wings. Afterwards, @SkyDigg4 was…" +06/09/2018,Sports_celeb,@SkyDigg4,RT @DrinkBODYARMOR: 👀🏀💥 Career-high 35 pts & the comeback W for BODYARMOR’s @SkyDigg4 & Dallas... #ObsessedWithBetter https://t.co/xL54QYeN… +06/09/2018,Sports_celeb,@SkyDigg4,Thanks for always supporting me!! #family 🍀❤️ https://t.co/uuN3SNoqM4 +06/09/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: So happy to see my girls @SkyDigg4 @NatAchon ! So proud of you both! #NDfam 🍀💚 #ForeverIrish https://t.co/L8O9aUkvKu +06/09/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: A night to remember for @SkyDigg4! + +In her home state, Diggins-Smith posts CAREER-HIGH 35 PTS as @DallasWings come back to win! #…" +06/08/2018,Sports_celeb,@SkyDigg4,So dope coming from you!! Takes one to know one! https://t.co/2IkoEoSneY +06/07/2018,Sports_celeb,@SkyDigg4,"No’s aside, I think I have this Equalizer thing in the bag. 🤷🏽‍♀️ See it all play out during the #NBAFinals and mak… https://t.co/0mfdKt3APG" +06/06/2018,Sports_celeb,@SkyDigg4,RT @angela_rye: They are on PAID LEAVE. “Oh say can you see..” yet? https://t.co/5TRpcUzsFe +06/06/2018,Sports_celeb,@SkyDigg4,RT @WNBA: The @MinnesotaLynx will commemorate winning their fourth #WNBA championship on Wednesday in Washington D.C. with an event at Payn… +06/06/2018,Sports_celeb,@SkyDigg4,"RT @SheilKapadia: Instead of speaking, Malcolm Jenkins holds up signs at his locker to get his message across. https://t.co/mg9JdhFgYZ" +06/06/2018,Sports_celeb,@SkyDigg4,"RT @benbloomsport: Men = 100/100 +Women = 0/100 + +For the first time ever since Forbes started compiling the world's 100 highest paid sportsp…" +06/06/2018,Sports_celeb,@SkyDigg4,Born individuals....but too many die copycats...#youdoyou +06/05/2018,Sports_celeb,@SkyDigg4,https://t.co/ZtJUudsb00 +06/05/2018,Sports_celeb,@SkyDigg4,RT @ayesharascoe: . @AprilDRyan bringing up the issue that actually spurred the protests by the NFL players. Didn't really get an answer ht… +06/05/2018,Sports_celeb,@SkyDigg4,"RT @CillizzaCNN: Sarah Sanders says the media is ""trying to tear her down."" + +No. + +Asking her to acknowledge that she didn't tell the truth…" +06/05/2018,Sports_celeb,@SkyDigg4,"RT @AStepUpFHA: Happy Birthday, @GoIrishCoachO! 🎁🎉 https://t.co/FMx0UeRDtv" +06/03/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: .@ecambage having a MONSTER 4th quarter!!! She has 17 POINTS in this quarter alone. 😳 #RiseTogether https://t.co/UHYuRioxfG +06/03/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: .@SkyDigg4 put on a show tonight, finishing with 27 PTS, 7 AST & 3 STL in a @DallasWings W! #WatchMeWork https://t.co/p8IWynuNel" +06/01/2018,Sports_celeb,@SkyDigg4,RT @Dame_Lillard: I thought the only way you can change a charge call was if someone was in or out of the charge circle +06/01/2018,Sports_celeb,@SkyDigg4,What???? +06/01/2018,Sports_celeb,@SkyDigg4,"RT @SportsCenter: 11 years after his first Finals, LeBron's back for his 8th in a row. https://t.co/fKgFKtr8mY" +05/31/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: #NBAFIT behind-the-scenes workout with @SkyDigg4! + +Learn More: https://t.co/xKC8LWZk6w https://t.co/jQSeCywWUr" +05/30/2018,Sports_celeb,@SkyDigg4,@utopiafalls02 You already know Shug! +05/30/2018,Sports_celeb,@SkyDigg4,"RT @GetUpESPN: What would @SkyDigg4 be doing if she wasn't in the @WNBA? + +The @DallasWings star reveals that and more in this edition of F…" +05/30/2018,Sports_celeb,@SkyDigg4,"RT @VanJones68: I checked. And Ambien does NOT make you racist. ..... Nice try, though, @therealroseanne. #Roseanne" +05/30/2018,Sports_celeb,@SkyDigg4,RT @essencecasey: went to the Dallas vs New York game last night & i gotta say that @SkyDigg4 is one of the best players i’ve ever seen. sh… +05/30/2018,Sports_celeb,@SkyDigg4,Gotta step my game up. No excuses +05/28/2018,Sports_celeb,@SkyDigg4,"RT @LaChinaRobinson: I am always proud and impressed by the way the women of the WNBA take on the responsibility of educating, discussing,…" +05/28/2018,Sports_celeb,@SkyDigg4,Made it on the wall at new @espn offices in downtown NY! 1 of 10 pics posted so far 🙌🏽 https://t.co/5oGDceFzKA +05/28/2018,Sports_celeb,@SkyDigg4,"RT @DorothyJGentry: @DallasWings @SkyDigg4 on the set of @GetUpESPN discussing the Wings, #WNBA growth of the league and pay disparity vs…" +05/28/2018,Sports_celeb,@SkyDigg4,"RT @murrminks: “It’s the highest level of talent. If you love basketball, you love the WNBA.” + +🗣 speak on it, @SkyDigg4 https://t.co/SnPt3Z…" +05/28/2018,Sports_celeb,@SkyDigg4,RT @MzLuckylefty: 😩😩😩😩lord thank you for giving this woman this platform today to spread the word about @wnba ! Dedicate the resources and… +05/28/2018,Sports_celeb,@SkyDigg4,RT @nlawsonMBA: Trying to help change this with orgs like the @seattlestorm and @WNBA through fantasy & engagement. Great message by @SkyD… +05/28/2018,Sports_celeb,@SkyDigg4,RT @TheRyanHollins: @SkyDigg4 @GetUpESPN @JalenRose Digg’s I got you 💯 I know the grind💯 https://t.co/HW0YywHciO +05/28/2018,Sports_celeb,@SkyDigg4,"Had a great time on @GetUpESPN this morning! Got to talk NBA and WNBA! If you missed it, check it out now https://t.co/itcudJLKXj" +05/28/2018,Sports_celeb,@SkyDigg4,@TheRyanHollins @GetUpESPN @JalenRose At least somebody is! +05/28/2018,Sports_celeb,@SkyDigg4,"RT @GetUpESPN: “It’s unfortunate.” + +-@SkyDigg4 gives her thoughts on the WNBA-NBA wage gap https://t.co/unpYgUsfcg" +05/28/2018,Sports_celeb,@SkyDigg4,"RT @StacyGSG: Jalen. Greeny. Beadle. Diggins-Smith. +#GetUp #ESPN +@SkyDigg4 https://t.co/GwLVqlOG8T" +05/28/2018,Sports_celeb,@SkyDigg4,RT @bballfan_folife: @SkyDigg4 needs to be on @espn more!! Her #NBA commentary is 🔥! +05/28/2018,Sports_celeb,@SkyDigg4,RT @cheese309: @SkyDigg4 I think you would make a great analyst one day +05/28/2018,Sports_celeb,@SkyDigg4,RT @Damien_Butler8: @SkyDigg4 definitely has a career in media ahead of her!! Not just on a sports platform either!! +05/28/2018,Sports_celeb,@SkyDigg4,"RT @ant757: @SkyDigg4 thank you for bringing your beauty, elegance, and poise to @espn @ESPNNBA this am!!!! @WNBA" +05/28/2018,Sports_celeb,@SkyDigg4,RT @DunnReggie2: @SkyDigg4 great job this morning on @GetUpESPN #growwomenshoops +05/28/2018,Sports_celeb,@SkyDigg4,"RT @HeyChrisByrd: @SkyDigg4 Great work on ""Get Up!"" this morning, loved your takes on the CLE/BOS game and continued growth of the WNBA." +05/27/2018,Sports_celeb,@SkyDigg4,RT @WNBA: Great ball movement from the @DallasWings leads to @SkyDigg4's big three! #WatchMeWork https://t.co/kE1YXvmiYG +05/27/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: How about this 4th quarter from @ecambage?! 🤩 #RiseTogether https://t.co/R1GkNHBU5Q +05/27/2018,Sports_celeb,@SkyDigg4,This made my day! https://t.co/ZpIMQ5TLAP +05/26/2018,Sports_celeb,@SkyDigg4,RT @lookinuge: Girls getting ready to go see @SkyDigg4 tommorow! #WNBALive #WatchMeWork https://t.co/kVr9S8gjGA +05/26/2018,Sports_celeb,@SkyDigg4,RT @everybodyluhke: That one time i used @SkyDigg4 as aspiration for my senior photo shoot 😂🤩 https://t.co/F6RyaeLYFz +05/26/2018,Sports_celeb,@SkyDigg4,RT @MoeScott4: Greatful to receive the opportunity to continue to play the game I love. #levels @TrineThunderMBB https://t.co/hwTtyCY615 +05/24/2018,Sports_celeb,@SkyDigg4,"Don’t get mad, get better" +05/23/2018,Sports_celeb,@SkyDigg4,RT @ShaunKing: Will the @NFL still effectively ban Colin Kaepernick & Eric Reid from the league now that they have banned taking a knee?… +05/22/2018,Sports_celeb,@SkyDigg4,@aerial_powers23 I got you!! +05/21/2018,Sports_celeb,@SkyDigg4,RT @Slyxra: Self-defence techniques for women... Kindly share https://t.co/eiRv7Mlyw3 +05/21/2018,Sports_celeb,@SkyDigg4,RT @carvellwallace: two weeks ago today a white woman tried to call the police on about 8 black folks barbecuing. Today in that same spot t… +05/21/2018,Sports_celeb,@SkyDigg4,RT @SLAMonline: Skylar Diggins-Smith was about #thatwork today. She went off for an easy 25 points. (via @wnba) https://t.co/KBm6NUnXLa +05/21/2018,Sports_celeb,@SkyDigg4,Love this! #teamLeo https://t.co/ePTqscfEzY +05/21/2018,Sports_celeb,@SkyDigg4,Thanks for coming out! Good to have the Irish family in the house! https://t.co/GiJHJl6GFD +05/21/2018,Sports_celeb,@SkyDigg4,"Great team win for opening night! The crowd was super lit! +So glad to have my favorite people at the game, too! Lo… https://t.co/PibWpGp8eJ" +05/21/2018,Sports_celeb,@SkyDigg4,RT @WNBA: .@SkyDigg4 goes off for 25 PTS as @DallasWings earn their first W of the season! #WNBAAllDay https://t.co/lCjwRzvTlk +05/20/2018,Sports_celeb,@SkyDigg4,"RT @FOXSportsSW: ""It was the total team effort tonight, including the 6th man we had in the crowd."" - @SkyDigg4 + +@DallasWings | #WingsOpeni…" +05/20/2018,Sports_celeb,@SkyDigg4,RT @thejaylonsmith: @DallasWings !!!! Came to see da realist! @SkyDigg4 ☘️ gonna be a great year for the WINGS team looking amazing on the… +05/20/2018,Sports_celeb,@SkyDigg4,RT @darcangel21: So smooth. @SkyDigg4 with the floater. #WNBAAllDay https://t.co/07D9CTO0mP +05/20/2018,Sports_celeb,@SkyDigg4,"RT @jessicawluther: I recently went bowling with @DallasWings's point guard @SkyDigg4. And the answer to your question is YES, she is alway…" +05/20/2018,Sports_celeb,@SkyDigg4,RT @NickVanExit: Street Ball @SkyDigg4 out here 🔥🔥🔥 https://t.co/12dOGrQozJ +05/18/2018,Sports_celeb,@SkyDigg4,Takes one to know one. Love you Slim!! https://t.co/KsbueMm8WA +05/18/2018,Sports_celeb,@SkyDigg4,"RT @CoachNess45: Reason 1,000,000 why I love & respect her so much. This is all facts! @SkyDigg4 really did change the game for females in…" +05/18/2018,Sports_celeb,@SkyDigg4,"RT @kaitlynromero10: “You can be a feminine woman and a beast on the court. You don’t have to choose.” 🏀👏🏽 +-@SkyDigg4" +05/18/2018,Sports_celeb,@SkyDigg4,RT @RocNation: LET’S GO @SkyDigg4 👏👏👏👏👏 Tonight is @DallasWings #WNBA season opener! Be sure to catch the game at 9pm CT on @NBATV. #watchm… +05/18/2018,Sports_celeb,@SkyDigg4,@ChanelePatton Love you Nelle Nel! +05/18/2018,Sports_celeb,@SkyDigg4,Emphasize https://t.co/i64XNxGCQr +05/18/2018,Sports_celeb,@SkyDigg4,"RT @AmeenaRasheed: Skylar Diggins-Smith (@SkyDigg4) of the @DallasWings talks about her love for basketball, bouncing back from a 2015 ACL…" +05/18/2018,Sports_celeb,@SkyDigg4,"RT @ndwbb: Watch Her Work! @SkyDigg4 kicks off the @WNBA season tonight at 10 pm ET. #GoIrish☘️ #IrishintheWNBA + +https://t.co/XhgbQgqmU9" +05/18/2018,Sports_celeb,@SkyDigg4,RT @tulsadoug: Great player profile of @SkyDigg4 by @jessicawluther. I love stories about players!! https://t.co/li6AP73rd1 https://t.co/XH… +05/18/2018,Sports_celeb,@SkyDigg4,RT @lookinuge: Awesome stuff.. @SkyDigg4 is amazing.. My girls love her and when they are working on their game it's always Skylar Diggins… +05/17/2018,Sports_celeb,@SkyDigg4,"RT @jessicawluther: .@SkyDigg4 has an encyclopedic knowledge of basketball, a deep love of the game, and an All-Star talent. And she wants…" +05/17/2018,Sports_celeb,@SkyDigg4,RT @Jessie_Stailey: @emmaleyden3 @SkyDigg4 @jessicawluther I loved everything about this. @SkyDigg4 is such a strong presence +05/17/2018,Sports_celeb,@SkyDigg4,"RT @MelissaSulewski: ""You can’t be what you can’t see. We need more images of our women playing so our girls can see these images.” @SkyDig…" +05/17/2018,Sports_celeb,@SkyDigg4,"RT @MzLuckylefty: “We ain’t trying to be in them one and done games, I can’t stand it.” + +... +😂 @SkyDigg4" +05/17/2018,Sports_celeb,@SkyDigg4,RT @emmaleyden3: Excellent article from @jessicawluther. I’ve met @SkyDigg4 before and this is a completely accurate description of her com… +05/17/2018,Sports_celeb,@SkyDigg4,"@jessicawluther Thank you for putting this together, Jess!" +05/17/2018,Sports_celeb,@SkyDigg4,"RT @Complex: 3x WNBA All-Star @SkyDigg4 is not messing around 💪 + +We talked with the star of the Dallas Wings about how much she hates losin…" +05/16/2018,Sports_celeb,@SkyDigg4,RT @CraigSJ: 2018 is really working wonders for my latent worry that simply existing in certain neighborhoods post-election will not go wel… +05/16/2018,Sports_celeb,@SkyDigg4,RT @brucelee: How AWESOME is it that Bruce’s life example and philosophy continues to this day to influence top athletes in a such a wide r… +05/15/2018,Sports_celeb,@SkyDigg4,RT @angela_rye: This is seriously too much. https://t.co/EHu0AjahBM +05/14/2018,Sports_celeb,@SkyDigg4,RT @Candace_Parker: Facts only. https://t.co/RbWT9tRoRf +05/13/2018,Sports_celeb,@SkyDigg4,Good finish to the preseason! Great seeing everybody that came out to fly w us today! Should be a fun year 🙌🏽 +05/13/2018,Sports_celeb,@SkyDigg4,RT @mel_bradley: @SkyDigg4 thanks for making these girls feel special! @LDN_NikeTopping #WNBA https://t.co/L6lhzRFRQJ +05/13/2018,Sports_celeb,@SkyDigg4,See! 😩😂 https://t.co/0BfZnjB266 +05/12/2018,Sports_celeb,@SkyDigg4,@arneduncan 🙌🏽💪🏽What a pass! Congrats! +05/12/2018,Sports_celeb,@SkyDigg4,RT @arneduncan: Hard to find a better teammate and winner than @SkyDigg4 ! https://t.co/aOBVt2MFfh +05/09/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: 🗣 ""LET'S GO!"" + +How badly does @SkyDigg4 want to raise her game in her 6th season? Get a glimpse inside the gym with the @DallasWi…" +05/09/2018,Sports_celeb,@SkyDigg4,All we need is a little time 🤷🏽‍♀️ +05/09/2018,Sports_celeb,@SkyDigg4,"RT @FightingIrish: 👀 We've seen that shot once or twice in Purcell, @SkyDigg4! + +Catch the @ndwbb alumna as she takes the court for the @Dal…" +05/09/2018,Sports_celeb,@SkyDigg4,RT @ndwbb: Your 2018 National Champions! ☘️ https://t.co/hAI3Bu1fF3 +05/05/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: Are you ready for this @DallasWings duo? 😯 + +@ecambage and @SkyDigg4 are ready to work! #watchmework https://t.co/6vadTA8ypG" +05/04/2018,Sports_celeb,@SkyDigg4,RT @4thFlCreative: That’s a wrap in Dallas! Thanks to our friends at the @DallasWings & @drapermedia for having us. Awesome shoot today!! #… +05/03/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: We went behind the scenes with @SkyDigg4 for her #WatchMeWork shoot. It's time to officially watch her work on the court! + +Our l…" +05/03/2018,Sports_celeb,@SkyDigg4,"The bigger the dream, the harder the grind" +05/02/2018,Sports_celeb,@SkyDigg4,🙌🏽 Go baby girl! https://t.co/F38cYXfd4U +05/02/2018,Sports_celeb,@SkyDigg4,😍 https://t.co/RtM10EGZ1n +05/01/2018,Sports_celeb,@SkyDigg4,"@jamesfraschilla @DallasWings Thanks, James! I didn’t know you could shoot it like that 💪🏽 +I still got a foul to give, though 😂" +05/01/2018,Sports_celeb,@SkyDigg4,"RT @jamesfraschilla: Finishing up a quick trip home, and got to spend the last 2 days watching WNBA’s @DallasWings practice. @SkyDigg4 coul…" +05/01/2018,Sports_celeb,@SkyDigg4,"RT @DrinkBODYARMOR: ICYMI: Thanks @Gatorade, we’ll take it from here. @SkyDigg4 #ObsessedWithBetter #Switch2BODYARMOR https://t.co/1rYwXRhX…" +05/01/2018,Sports_celeb,@SkyDigg4,🙌🏽 Sarah! Let’s gooooo https://t.co/asJvim5SOO +05/01/2018,Sports_celeb,@SkyDigg4,Vote for @Arike_O on #DWTS! 💃🏽 https://t.co/NKudibBe3a +04/30/2018,Sports_celeb,@SkyDigg4,"RT @ShaneBoyd7: Best wishes to the the amazing women of the @WNBA who started training camp today⛹🏽‍♀️ The journey begins to the 🏆 & win, l…" +04/29/2018,Sports_celeb,@SkyDigg4,Good first day with the squad. Thanks to all the @DallasWings fans who came out to support! Can’t wait for the games 🙌🏽 +04/29/2018,Sports_celeb,@SkyDigg4,This! Good luck baby girl! https://t.co/JT2qwnw0UH +04/29/2018,Sports_celeb,@SkyDigg4,RT @YellaBoyDiggins: @SkyDigg4 fam the new #WNBA commercial. Yes! +04/28/2018,Sports_celeb,@SkyDigg4,New beginnings +04/28/2018,Sports_celeb,@SkyDigg4,RT @ava: So many things to say about this abhorrent videotaped assault. But too upset to express myself well right now. So I’ll remind folk… +04/27/2018,Sports_celeb,@SkyDigg4,@DrinkBODYARMOR @Gatorade @IndraNooyi 👀 +04/26/2018,Sports_celeb,@SkyDigg4,"RT @usabasketball: A special moment to close shootaround today. Two and a half year old Jesiah, diagnosed with high risk acute lymphoblasti…" +04/26/2018,Sports_celeb,@SkyDigg4,@YourCallFB 8 or 8:30? +04/25/2018,Sports_celeb,@SkyDigg4,RT @HistDodgertown: TONIGHT!! @YourCallFB scrimmage at Historic Dodgertown — all are welcome! Parking and entrance are free! The game runs… +04/25/2018,Sports_celeb,@SkyDigg4,@EuroLeagueWomen @kaymac_2123 @YDU_Melekleri @WNBA @LVAces TUH! +04/25/2018,Sports_celeb,@SkyDigg4,"RT @YourCallFB: Tonight: one last chance to dial in your play-calling skills before you compete for cash prizes on May 3, 10 and 17! + +Tune…" +04/25/2018,Sports_celeb,@SkyDigg4,RT @Mr_Blodgett2: Shoutout to @SkyDigg4 for putting me on @DrinkBODYARMOR 🤤💯 +04/25/2018,Sports_celeb,@SkyDigg4,RT @YourCallFB: We will be streaming our final test scrimmage in real-time tonight at 8:30 PM EDT. Test your play-calling skills one last t… +04/25/2018,Sports_celeb,@SkyDigg4,"RT @DrinkBODYARMOR: .@SkyDigg4 wouldn’t use outdated workout techniques, so why would she use an outdated sports drink? SHE WOULDN’T. +#Obse…" +04/24/2018,Sports_celeb,@SkyDigg4,I’m just tryna make my momma proud! +04/23/2018,Sports_celeb,@SkyDigg4,"RT @FCDallas: From @SkyDigg4's scarfing the Lamar Hunt statue to the celebrations on the pitch. See the best photos from #FCDvPHI. + +📷 https…" +04/22/2018,Sports_celeb,@SkyDigg4,RT @A_Phoenix_Born: As coaches we must encourage young women to be students of the game! That includes exposing them to the WNBA and the pl… +04/22/2018,Sports_celeb,@SkyDigg4,RT @DrinkBODYARMOR: BODYARMOR Sports Drinks are now available in 6-PACKS! Click here to save $2 on your next purchase: https://t.co/DBAYFbs… +04/22/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Honored to have our own @SkyDigg4 scarf the Lamar Hunt trophy tonight! @FCDallas https://t.co/9bSP2aiFNg +07/01/2018,Sports_celeb,@Candace_Parker,@KaelaD3 Apple is amazing 🙌🏾 +07/01/2018,Sports_celeb,@Candace_Parker,@KaelaD3 I only know Macklemore +07/01/2018,Sports_celeb,@Candace_Parker,Sick and tired of being sick and tired 😂🤣😉🤗 so I’m not gona be sick and tired anymore. 👍🏾👍🏾 +07/01/2018,Sports_celeb,@Candace_Parker,Who is Drake 😂😂😂 https://t.co/YNuqRPIFke +06/29/2018,Sports_celeb,@Candace_Parker,I don’t know what’s worse... kids at Disney or old people in Vegas.....😂😂😂 this woman sitting next to me on the pla… https://t.co/GpqGRzCeUu +06/29/2018,Sports_celeb,@Candace_Parker,I know everyone is anxiously awaiting where Lebron is going to go.... but I know I am not alone in feeling that I h… https://t.co/52Q76EXeWa +06/28/2018,Sports_celeb,@Candace_Parker,RT @LA_Sparks: Let's throw it back to 2008 when @Candace_Parker became the 2nd player ever to dunk in the @WNBA after @LisaLeslie was the f… +06/26/2018,Sports_celeb,@Candace_Parker,RT @NBA: .@Candace_Parker is out here in LA! #NBAAwards #NBATwitter https://t.co/m7qwhrS7bu +06/26/2018,Sports_celeb,@Candace_Parker,🔜 #NBAAwards https://t.co/8Ajvk5PGjq +06/23/2018,Sports_celeb,@Candace_Parker,"It’s amazing there’s the same exact “thing” but people process, problem solve, and react COMPLETELY different." +06/22/2018,Sports_celeb,@Candace_Parker,Jalen Brunson🙌🏾🙌🏾🙌🏾🙌🏾 +06/21/2018,Sports_celeb,@Candace_Parker,Jackson JR. And Mo Bamba are my other two.... don’t sleep on! I’m so excited for the draft! Lol.... can you tell? #FanFoSho +06/21/2018,Sports_celeb,@Candace_Parker,Top Impact draftee that no one is talking about... Zhaire Smith! Legit an athletic freak! Hard worker and a tonnnn of upside! +06/21/2018,Sports_celeb,@Candace_Parker,That’s what we’re doing..... ok ok https://t.co/XDjVhfQ8Ps +06/21/2018,Sports_celeb,@Candace_Parker,RT @LA_Sparks: Get Candace Parker (@Candace_Parker) to the 2018 All-Star Game!🏀🙌 @LA_Sparks #WNBAVOTE https://t.co/bBsaU8LgDj +06/21/2018,Sports_celeb,@Candace_Parker,RT @MikeFlynn826: @BlueStarMedia1 @pierrepiotr_ @Bluestareurope @basketmedia365 I remember when @Candace_Parker was a Soph in HS and she wa… +06/21/2018,Sports_celeb,@Candace_Parker,"With the 21st pick in the 1997 Draft, New Jersey Nets select ANTHONY PARKER! I was the 1st to hug you & I remember… https://t.co/oHVJtTXZ9B" +06/20/2018,Sports_celeb,@Candace_Parker,Lead. Work. Injuries. Life. Adversity. This is my story #greatnessisearned #ad @SixStarPro https://t.co/0OQib62RwD +06/16/2018,Sports_celeb,@Candace_Parker,Grew up watchin LaTicha do it 😂🤷🏽‍♀️ https://t.co/VaBdkGqvw7 +06/16/2018,Sports_celeb,@Candace_Parker,🤹🏾‍♀️😂 https://t.co/VlEE4moZMM +06/15/2018,Sports_celeb,@Candace_Parker,Keepin’ it fly on the court and at the movies! This awesome movie is in theaters now. Check it out! #Superfly https://t.co/rEeRkxX1QH +06/14/2018,Sports_celeb,@Candace_Parker,"You have guided me and will continue to guide me EVERY SINGLE DAY! Your legacy IS impactful, your value PRICELESS,… https://t.co/9xvGSPSAz8" +06/10/2018,Sports_celeb,@Candace_Parker,Had a blast with the crew seeing #Superfly! Go see it with your crew this Wednesday June 13th🍿 https://t.co/baBVz7bo6U +06/09/2018,Sports_celeb,@Candace_Parker,Let #ChinaKlay BEGIN again!!!!!!!!! #ISeriouslyLoveHim #HesMySpiritAnimal #CoolestDudeEver +06/09/2018,Sports_celeb,@Candace_Parker,Congrats GSW! Back to back champs and 3 in 4 years.... Crazy... did it with ease..... +06/08/2018,Sports_celeb,@Candace_Parker,We go through this world wanting gain. But the feelings of loss are far greater than the joy of gain....I’d rather… https://t.co/lrGFO3hIAt +06/07/2018,Sports_celeb,@Candace_Parker,👀👀👀👀 https://t.co/FZJ68UuF0M +06/07/2018,Sports_celeb,@Candace_Parker,"Same people that were in the Houston series sayin “move the ball KD bad shot” are like “man, KD today.....carried e… https://t.co/KKR8C5vEyO" +06/07/2018,Sports_celeb,@Candace_Parker,This dude.......... +06/07/2018,Sports_celeb,@Candace_Parker,KD cookin 👀 +06/06/2018,Sports_celeb,@Candace_Parker,RT @BreMoorer: Captured this adorable moment at the @LA_Sparks game between @Candace_Parker and Lai walking it like she talks it 💃🏾 and @DJ… +06/05/2018,Sports_celeb,@Candace_Parker,Shout out to all my peeps who are putting in the work. My team @sixstarpro keeps me going https://t.co/CCEUk4QA4p… https://t.co/uVO68aK5Fn +06/05/2018,Sports_celeb,@Candace_Parker,RT @Justine_Brown: My little rider. #GoSparks https://t.co/0l3O8PLGlC +06/04/2018,Sports_celeb,@Candace_Parker,@Justine_Brown My baby cakes +06/02/2018,Sports_celeb,@Candace_Parker,RT @candicewiggins: Righteous. #20042008 https://t.co/W63jNMibAW +06/01/2018,Sports_celeb,@Candace_Parker,"June is Alzheimer’s & Brain Awareness Month, and I go purple for Coach Pat. Join me and the @alzassociation in the… https://t.co/iDsZTe9b5R" +06/01/2018,Sports_celeb,@Candace_Parker,"It’s #JrWNBAWeek, so I’m throwing it back to my @JrNBA Days! https://t.co/Rwv4qakZk2" +06/01/2018,Sports_celeb,@Candace_Parker,Bron Bron 👀 +05/31/2018,Sports_celeb,@Candace_Parker,"RT @LA_Sparks: @jlav42: “So what have y’all been doing since I’ve been gone?” +@Candace_Parker & @Alanabeard20: “Winning” +If you can’t tell.…" +05/31/2018,Sports_celeb,@Candace_Parker,RT @iamjamiefoxx: I’m having a house party for the premiere!!! Everybody’s coming through...@BeatShazamFOX’s biggest fan just stopped by...… +05/31/2018,Sports_celeb,@Candace_Parker,Last night this really happened : we were trying to pick a movie to watch and no one could agree. Lailaa says... “… https://t.co/l6iENtbk7e +05/28/2018,Sports_celeb,@Candace_Parker,Happy Memorial Day. So powerful to be surrounded by those that served so that we could have freedom. I take joy in… https://t.co/Vx1oZ5py3t +05/27/2018,Sports_celeb,@Candace_Parker,Had a blast at Sparks Night at the @Dodgers game in celebration of women in sports! So cool to meet Maybelle and Sh… https://t.co/YUy85dSlIk +05/27/2018,Sports_celeb,@Candace_Parker,"Basketball Gods..... THANK YOU! All I ask, is for the most amount of NBA basketball to be played. (I don’t care who… https://t.co/PePLATLfHU" +05/26/2018,Sports_celeb,@Candace_Parker,"Home opener Tomorrow! See all y’all there, 2pm vs Mercury. #Sparks #AllForLA https://t.co/0WWuopBPGc" +05/26/2018,Sports_celeb,@Candace_Parker,"Comparisons aside.... can we just agree we are witnessing GREATNESS... and JUST appreciate it. He had 46,11,9......… https://t.co/9eNeUrYoVX" +05/25/2018,Sports_celeb,@Candace_Parker,@IAmKendraDavis @KaelaD3 Nope😂😂🤗🤗🤗🤗 +05/25/2018,Sports_celeb,@Candace_Parker,https://t.co/obwFNNSs2l +05/25/2018,Sports_celeb,@Candace_Parker,@KaelaD3 Shots fired Blocka blocka +05/25/2018,Sports_celeb,@Candace_Parker,Legit.... I almost didn’t go high when they went low Twitter..... but my conscience said... “Candace.... CHILL” 😂 +05/24/2018,Sports_celeb,@Candace_Parker,Working my ass off to get back 🙌🏾 https://t.co/CCBRlkDH3G +05/24/2018,Sports_celeb,@Candace_Parker,We live in a world of “what have you done for me lately...?” People are wowed less and less.. Evidence… https://t.co/TbVBY2FaBe +05/24/2018,Sports_celeb,@Candace_Parker,#TBT ME! Part of the BABYHAIR club since ‘86. From the womb to the tomb I rep. #TakingApplications… https://t.co/GlURaQW1eF +05/23/2018,Sports_celeb,@Candace_Parker,Game... set.... match.... lol #WarriorsAreAMachine +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmm X 3🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmm once again 🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmmm🤔🤔🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Come onnnn LA!!! Come onnnnnnnnn +05/20/2018,Sports_celeb,@Candace_Parker,Game plan for the Cavs... get other guys going early? It’s so evident😂😂😂😂 Lebron is spacing the floor +05/20/2018,Sports_celeb,@Candace_Parker,Semi impossible to argue best organization this year.... Celtics could win coach of the year and general manager of… https://t.co/qz0MNK8A0l +05/19/2018,Sports_celeb,@Candace_Parker,"“Your greatest challenge during your time here will be faithfully keeping your focus on the process, while surrende… https://t.co/hbVy7yDuE6" +05/18/2018,Sports_celeb,@Candace_Parker,Time flies 😵 https://t.co/mLHR6mTlxE +05/17/2018,Sports_celeb,@Candace_Parker,RT @DougFeinberg: I appreciate you five joining us today @Da20one @Candace_Parker @Chiney321 @NatAchon and @jewellloyd. Good luck this seas… +05/17/2018,Sports_celeb,@Candace_Parker,Basketball is your job... there’s worse things in the world... how lucky are we we get to do what we love for a liv… https://t.co/ALPsjnSKU3 +05/17/2018,Sports_celeb,@Candace_Parker,Anytime you can step outside yourself and see the game from a different point of view it’s.l a great experience!!!… https://t.co/BUDO5HvAky +05/17/2018,Sports_celeb,@Candace_Parker,We desire all fans to respect our hustle and our abilities https://t.co/I2Ei50VerM +05/17/2018,Sports_celeb,@Candace_Parker,I’m old... I didn’t know how it worked 😂😂😂😂😂😂😂 https://t.co/FVPrlYWlxP +05/17/2018,Sports_celeb,@Candace_Parker,I believe a rivalry and something for fans to get excited about does help. People can identify and look forward to… https://t.co/Zgq2zjaIqe +05/17/2018,Sports_celeb,@Candace_Parker,Jayyyyyy https://t.co/Gaf8jX7BlJ +05/17/2018,Sports_celeb,@Candace_Parker,Hello everyone #apwnba +05/17/2018,Sports_celeb,@Candace_Parker,RT @DougFeinberg: Welcome @Candace_Parker; thanks for joining us! #APWNBA +05/17/2018,Sports_celeb,@Candace_Parker,We suffer more in imagination than in reality +05/16/2018,Sports_celeb,@Candace_Parker,"Photographer was like, “stand back to back.” We were like nah.... “we want senior picture vibes” Then... we created… https://t.co/dsJ8ocqo0w" +05/13/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: Superstar player, superstar mom! + +@Candace_Parker #MothersDay https://t.co/1VwP4agft5" +05/12/2018,Sports_celeb,@Candace_Parker,ICYMI you still have time to enter my 2nd annual #CPNomAMom contest! Celebrate all the moms out there by sharing a… https://t.co/5EYG73TIMr +05/12/2018,Sports_celeb,@Candace_Parker,Facts only. https://t.co/RbWT9tRoRf +05/11/2018,Sports_celeb,@Candace_Parker,If Dwayne Casey gets Coach of the year....... how do you handle it? Like press conference.... wow +05/10/2018,Sports_celeb,@Candace_Parker,Uh oh... Chuck picked Golden State.... @NBAonTNT GSW is like...DON’T GUARANTEE! https://t.co/2sIuzjNKj0 +05/10/2018,Sports_celeb,@Candace_Parker,Interesting Bos/Cavs face each other with little if any evidence of “the trade” alive...... crayyyyy +05/10/2018,Sports_celeb,@Candace_Parker,This isn’t happening to the 6ers +05/10/2018,Sports_celeb,@Candace_Parker,I know I’ve shouted out KG numerous times.... but well done Area21 and Sarah Spain!! https://t.co/QuV3yRKjHU +05/09/2018,Sports_celeb,@Candace_Parker,It’s Mother’s Day this Sunday and I am so excited to launch my 2nd annual #CPNomAMom contest! Honor a mom in your l… https://t.co/ESyxitFv9f +05/08/2018,Sports_celeb,@Candace_Parker,Spoil HER with experiences! #CaliLivin #MyPersonalityTwin #NahlaAce #BehindTheLENS #BiggestFan #LailaasMom… https://t.co/K92E3t2BMp +05/06/2018,Sports_celeb,@Candace_Parker,"I have a lot of basketball vomit moments... (‘08 Sofia Young’s fadeaway bank shot with 1.5 seconds in WCF, BGriners… https://t.co/xoSc6xMZDC" +05/06/2018,Sports_celeb,@Candace_Parker,Dude.... #Toronto https://t.co/CbTa82eAXe +05/06/2018,Sports_celeb,@Candace_Parker,I feel so terrible for them +05/06/2018,Sports_celeb,@Candace_Parker,I want this so bad for Toronto... please win!!!!! #ButBronBoutToHitAFadeAway +05/05/2018,Sports_celeb,@Candace_Parker,Two entertaining NBA playoff games tonight...... NOT 🙄 +05/04/2018,Sports_celeb,@Candace_Parker,Fridayyyy +05/03/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: If you want to package @Candace_Parker in the deal, I understand. #PortillosAmbassadors" +05/02/2018,Sports_celeb,@Candace_Parker,For all those that are mad coming off the bench..... steph curry came off the bench..... smdh not enough credit....… https://t.co/jJPVZlYjyk +04/28/2018,Sports_celeb,@Candace_Parker,Hmmmmm🤔🤔🤔🤔🤔🤔🤔 respectfully disagree😬😬😬😬😬 https://t.co/IulAzc86O9 +04/28/2018,Sports_celeb,@Candace_Parker,Doing Lais social Studies homework today. She has to memorize the “GettysBurg address” delivered by Abraham Lincoln… https://t.co/3HGsjnX4RN +04/28/2018,Sports_celeb,@Candace_Parker,Why https://t.co/ubhCO3Q2Ya +04/28/2018,Sports_celeb,@Candace_Parker,Does Donovan Mitchell sweat? Mannnnnnn what a baller...... +04/27/2018,Sports_celeb,@Candace_Parker,Come on Chicago Bears...... do something GREAT wit EIGHT..... let’s goooooo +04/26/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: When your office is the Staples Center court... #TakeYourChildToWorkDay featuring @Candace_Parker & Lailaa! + +#WatchMeWork https:/…" +04/26/2018,Sports_celeb,@Candace_Parker,❤️❤️❤️ https://t.co/mv6cdCQgsw +04/26/2018,Sports_celeb,@Candace_Parker,"Real talk, I appreciate you @KGArea21 for your passion for BASKETBALL. I didn’t say NBA or WNBA I said...basketball… https://t.co/g0K3BQdKHz" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @KGArea21: ""That's why I think people underestimate how valuable Steph Curry is."" + +KG, @Candace_Parker and Gary Payton talk how unique…" +04/26/2018,Sports_celeb,@Candace_Parker,"YOU can help @webackpat win $12,500 and help defeat Alzheimer’s. It takes just a few seconds. Please vote every day… https://t.co/OLQM0u3FP0" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: #KGArea21 SQUAD! + +@Candace_Parker back in her element 😎 + +📷: @KGArea21 https://t.co/kApzNoLVKA" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: In EP 02, @Candace_Parker talked about her championship with the @LA_Sparks & spoke for the first time about whether or…" +04/26/2018,Sports_celeb,@Candace_Parker,Crazy comeback by the Thunder..... Russ man.... his heart is bigger than all the doubt and hate y’all throw at him… https://t.co/rMoF5PGPtV +04/25/2018,Sports_celeb,@Candace_Parker,RT @GWU_WBK: .@GWU_WBK would like to welcome new head coach @apsimms2 to the family! https://t.co/LLA9oHAiKK +04/25/2018,Sports_celeb,@Candace_Parker,Is my up and under a travel? 🤔 +04/25/2018,Sports_celeb,@Candace_Parker,This is my sixth time on @KGArea21..... same debate! Settle it once and for all! My up and under is a travel? Need… https://t.co/NE3jK6YpVZ +04/25/2018,Sports_celeb,@Candace_Parker,RT @KGArea21: LIVE in @KGArea21 with @Candace_Parker & Gary Payton! https://t.co/rFPmmKK1wB +04/24/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: EP 02 of @SMYFPodcast is up with my ride or die @Candace_Parker! Talking the growth of our friendship, Coach Summitt, Ro…" +04/20/2018,Sports_celeb,@Candace_Parker,Been down since day1 https://t.co/ZOhYNMiaef +04/20/2018,Sports_celeb,@Candace_Parker,Sums up our relationship lol 😂😂😂😂😂 thanx kg see u soon!!!! https://t.co/arN2KNX66z +04/20/2018,Sports_celeb,@Candace_Parker,RT @brian_agler: @Candace_Parker Still a pup.... https://t.co/g6ub539tf6 +04/20/2018,Sports_celeb,@Candace_Parker,@LyssiB Jerk +04/20/2018,Sports_celeb,@Candace_Parker,Thanx holly ❤️❤️❤️ https://t.co/Djj9L8ST1G +04/19/2018,Sports_celeb,@Candace_Parker,RT @KaelaD3: Back to 9. Happy Birthday big bead. Love you! 😂🙌🏾 @Candace_Parker +04/19/2018,Sports_celeb,@Candace_Parker,Everyone is trying to make me emotional today..... Thanx y’all! #ThugsDontCry +04/19/2018,Sports_celeb,@Candace_Parker,RT @SLAMonline: Shout out Candace Parker. Happy birthday to one of the best to do it. https://t.co/CDd95q385C +04/19/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: The @LA_Sparks Point Forward! + +On her birthday, relive the BEST ASSISTS of @Candace_Parker's career! #WNBABDAY #WatchMeWork https…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @LA_Sparks: Join us in wishing a VERY happy birthday to our very own @Candace_Parker! We hope your day is full of sunshine, love, and ha…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @SIGSports: To one of the best to ever do it, wishing you the HAPPIEST of birthdays @Candace_Parker!! +#SIGFam https://t.co/15C8KcYPIE" +04/19/2018,Sports_celeb,@Candace_Parker,❤️❤️❤️😘😘😘😘🤗🤗🤗🤗 we cute https://t.co/Gi0ESuJBsj +04/19/2018,Sports_celeb,@Candace_Parker,32.... yikessssssss https://t.co/tgzDDVLzt5 +04/19/2018,Sports_celeb,@Candace_Parker,"RT @adidasUS: Calling All Creators. + +We’re honored to welcome members of our #teamadidas family to the adidas America Headquarters. https:/…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @SMYFPodcast: I’ll share the early line-up. Sneak peek for the six of you already following. 😐🙌🏼 #gottastartsomewhere + +EP 01: @jesspucci…" +04/18/2018,Sports_celeb,@Candace_Parker,"Had a blast at the WNBA Summit in Portland! Repped the three stripes w/ these amazing ladies! Designed some shoes,… https://t.co/KrMp03fH3C" +04/18/2018,Sports_celeb,@Candace_Parker,RT @SwinCash: Dang @Candace_Parker you out here with double doubles lol for those who haven’t checked out the ladies on NBA Live check them… +04/17/2018,Sports_celeb,@Candace_Parker,"Crazy how others share how I inspired them & in turn, end up inspiring me! Thank you Jill Hub for the jersey & the… https://t.co/FSJbPf7r7c" +04/17/2018,Sports_celeb,@Candace_Parker,RT @Chiney321: sista from anotha mista 🤜🏽✨🤛🏿 https://t.co/Umip8ji6zr +04/17/2018,Sports_celeb,@Candace_Parker,"RT @mmcornelius: Let's fill the service with flowers for #LVFL Daedra Charles-Furlow. Send to: +McFall Brothers Funeral Home +9419 Dexter Blv…" +04/16/2018,Sports_celeb,@Candace_Parker,Last week on set with @alzassociation for Coach! I’m proud to support the fight to end Alzheimer’s in her honor.… https://t.co/ZWckGvmpPA +04/16/2018,Sports_celeb,@Candace_Parker,"So sad to hear about the passing of a legend on AND off the court. Daedra Charles was a friend, mentor and amazing… https://t.co/So5tBt800o" +04/16/2018,Sports_celeb,@Candace_Parker,RT @LadyVol_Hoops: Our Lady Vol family is heartbroken to learn of the passing of Tennessee legend Daedra Charles. Head coach Holly Warlick… +04/16/2018,Sports_celeb,@Candace_Parker,Playoff P🤔🤔🤔 DAMNNNNNNNNN +04/15/2018,Sports_celeb,@Candace_Parker,Defense through 3 and a half quarters in this game... since... BETTER OFFENSE 🔥🔥🔥🔥🔥🔥 +04/15/2018,Sports_celeb,@Candace_Parker,If y’all aren’t watching this bos/ Milwaukee game 👀👀👀👀😳😳😳 CRAZY OVERTIME!!! BIG PLAY AFTER BIG PLAY. #FavoriteTimeOfYear +04/12/2018,Sports_celeb,@Candace_Parker,#WNBADraft Day! Good luck to all the young women on this exciting day! Can’t believe it’s been 10 years since I was… https://t.co/PV07OKSlf5 +04/11/2018,Sports_celeb,@Candace_Parker,I wish there was an easy button for hard work. Like... you only get like five pushes (I’m reasonable) but legit i w… https://t.co/SdIPdExIk1 +04/11/2018,Sports_celeb,@Candace_Parker,My third big bro! https://t.co/GAIm0SJHe7 +04/11/2018,Sports_celeb,@Candace_Parker,"RT @_AnthonyParker: @Candace_Parker Love ya lil sis! Yours truly, Candace Parker’s Brother 😘😜" +04/11/2018,Sports_celeb,@Candace_Parker,"Couldn’t pick 2 better role models than you guys.... quite big shoes to fill and follow, but lil sis looks up to yo… https://t.co/FFHQGNysfv" +04/09/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: A college athlete turned professional in less than 24hrs! + +2008 No. 1 pick @Candace_Parker looks back ahead of this year's Draft…" +04/09/2018,Sports_celeb,@Candace_Parker,"Super proud of my bestie @Justine_Brown for her podcast “Show Me Your Friends”!You always are smiling, supportive,… https://t.co/cS8vxHrvLt" +04/03/2018,Sports_celeb,@Candace_Parker,Thanx for the love and support Jussy. You always show me love I really appreciate it. From day 1 https://t.co/ZUJK0qVRlK +04/03/2018,Sports_celeb,@Candace_Parker,It’s over. Nova bout to go on a run. Last time it’s tied. +04/03/2018,Sports_celeb,@Candace_Parker,Join us tonight for the #FinalFour Watch Party! @danajacobson @bwood_33 @Smoove2you_ https://t.co/wh91Zwvwkm +04/02/2018,Sports_celeb,@Candace_Parker,Hey y’all! Join me on #MarchMadness Watch party tonight as @umichbball and @NovaMBB play for the #NCAA National Ch… https://t.co/Fbxe2SeOVF +04/02/2018,Sports_celeb,@Candace_Parker,Crazy! Well women’s basketball fans.... this has been a remarkable final four... couldn’t ask for a better one! Con… https://t.co/eUyOvpVGp3 +04/01/2018,Sports_celeb,@Candace_Parker,Tierra Mccowen is KILLIN! +04/01/2018,Sports_celeb,@Candace_Parker,@BernardPT 😂 good game I love “Mo Buckets” +03/31/2018,Sports_celeb,@Candace_Parker,This Michigan/Loyola game.... insane! +03/31/2018,Sports_celeb,@Candace_Parker,But my Mama taught me better than that🎼 +03/31/2018,Sports_celeb,@Candace_Parker,"Yea, boxing Tierra Mccowen out is no easy feat! Lol" +03/30/2018,Sports_celeb,@Candace_Parker,Crazy how different basketball is in the NCAA tournament when teams force you to do what you don’t want to do and t… https://t.co/PUFNyczOyt +03/30/2018,Sports_celeb,@Candace_Parker,I think Mississippi State goes on a run here.... led by Vivian’s +03/30/2018,Sports_celeb,@Candace_Parker,Louisville winning every 50/50 ball and have punched first vs. Miss St. Most aggressive team wins... right @brian_agler ? +03/30/2018,Sports_celeb,@Candace_Parker,"Had the pleasure to chat with @BenSimmons25 yesterday! I’m in awe of his talent on the court, but talking with him,… https://t.co/MgzFlhN3FD" +03/29/2018,Sports_celeb,@Candace_Parker,Back to WORK! Check me out tonight on @NBAonTNT! https://t.co/GzDBTSNWa3 +03/29/2018,Sports_celeb,@Candace_Parker,SpringBreak was a success!!!❤️🤗 #Fam #WeDoKindaLookAlike #Parkerzzzzzzz #QualityTime #Cuzzins… https://t.co/2UudtY7Mpp +03/24/2018,Sports_celeb,@Candace_Parker,"RT @dg_riff: Forget your politics. Forget your ""position."" How many of us can truly say that we live/have lived with this much passion or c…" +03/24/2018,Sports_celeb,@Candace_Parker,"So wait, I had this dream I was a rookie again. My teammates were @TurnerSportsEJ @SethDavisHoops Brenden Haywood &… https://t.co/qZkIcFoDCP" +03/23/2018,Sports_celeb,@Candace_Parker,"#HappyNationalPuppyDay Ace and Nahla have big shoes to fill, but they are doing ok so far! #alldogsgotoheaven🐾… https://t.co/EFxWWxgJP0" +03/23/2018,Sports_celeb,@Candace_Parker,Wow +03/23/2018,Sports_celeb,@Candace_Parker,RT @LaChinaRobinson: Yes @Candace_Parker is in studio slaying as we speak but earlier today she dropped by #AroundTheRim & as usual kept it… +03/22/2018,Sports_celeb,@Candace_Parker,RT @TichaPenicheiro: BIG S/O to @Candace_Parker and @SwinCash in the studio giving their insight on the #NCAA men’s tournament!! you guys r… +03/22/2018,Sports_celeb,@Candace_Parker,RT @ESPN_WomenHoop: .@UBwomenshoops coach Felisha Legette-Jack and @CMUWBBall coach Sue Guevara discuss their Sweet 16 runs with @LaChinaRo… +03/19/2018,Sports_celeb,@Candace_Parker,🙏🏾Namaste legit had a blast with you all! Learned so much and laughed in the process. https://t.co/HRyxZMKSPp +03/18/2018,Sports_celeb,@Candace_Parker,RT @DelishaMJones: @Candace_Parker your ugly orange wearing Vols and my pretty orange wearing Gators both had rough days today. I empathize… +03/18/2018,Sports_celeb,@Candace_Parker,Thanx..... i wiped my tears https://t.co/fX4hs8s92S +03/18/2018,Sports_celeb,@Candace_Parker,Just got a lovely call from @swiesebaby24 ..... #LearnHowToWinGraciously #SoreWinner #RespectForTheGame #SkipTheNCAATourney 🙄 +03/18/2018,Sports_celeb,@Candace_Parker,✌🏾 March madness..... I don’t like it. I’m sick.... no horse in the race on either side now 🙄 +03/18/2018,Sports_celeb,@Candace_Parker,Lady Vols! Let’s go!!!!!!! I’ll be watching and cheering you on from afar! P.s. please be easy on my heart! 😂 +03/18/2018,Sports_celeb,@Candace_Parker,#Respect :) https://t.co/9rkzGczAj1 +03/18/2018,Sports_celeb,@Candace_Parker,I still bleed orange.... this one stung but we will be back! #Vols4Life #SisterJeanGotUs #ButSheWonMeOver #Love… https://t.co/B2JAhmHYwx +03/18/2018,Sports_celeb,@Candace_Parker,"I honor bets lol! I’m from Naperville, IL my bracket is busted.... 🤷🏽‍♀️ https://t.co/rAwLxJjnvg" +03/18/2018,Sports_celeb,@Candace_Parker,Can’t believe you bet against me.... we were teammates https://t.co/ZsWOgcXbza +03/18/2018,Sports_celeb,@Candace_Parker,Sick https://t.co/DD9FeU2Bkr +03/18/2018,Sports_celeb,@Candace_Parker,That’s what’s we are doing Ros “BET” ..... I hope Stanford...... oh wait 🤔😂😂😂 kidding! I’m a believer in Sister Jea… https://t.co/ZHvTsLve9o +03/17/2018,Sports_celeb,@Candace_Parker,Turn out the lights..... history! Wow... 16 seed beats #1 seed! Happy on the ladies side now the record stands at 135-1 +03/16/2018,Sports_celeb,@Candace_Parker,Cut me and I GUARANTEE the blood that pours out will be ORANGE 🍊 #TournamentTime #LadyVols #YallKnowWhatItIs… https://t.co/2iDSkQQ5TV +03/16/2018,Sports_celeb,@Candace_Parker,Tune in! #MarchMadness @MarchMadnessTV https://t.co/UTyG5AS1fz +03/16/2018,Sports_celeb,@Candace_Parker,I don’t know why I fill out a bracket every year..... bracket BUSTED! Arizona.... forealz +03/15/2018,Sports_celeb,@Candace_Parker,Yessss @Vol_Hoops!!! #MarchMadness https://t.co/ggkMH7Eh8z +03/14/2018,Sports_celeb,@Candace_Parker,My little Black Panther! <3 This movie gave Lailaa a new perspective on what superheroes can look like. And… https://t.co/4lFdOBvKKn +03/14/2018,Sports_celeb,@Candace_Parker,I have some amazing #MarchMadness memories and I am so lucky I get to create new ones broadcasting in studio for th… https://t.co/VXJyFCndPZ +03/14/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: Hi, @Candace_Parker! Catch her covering #FirstFour action on @truTV! https://t.co/4zsZkx18VQ" +03/09/2018,Sports_celeb,@Candace_Parker,If you’re looking for an answer it’s usually hard work and patience. https://t.co/5tSb8ejtEY #ad #greatnessisearned… https://t.co/lTUejNnItH +03/09/2018,Sports_celeb,@Candace_Parker,We are all better when we empower women! Thank you @LAClippers and @bumble for recognizing that we are all… https://t.co/sH3ecp9T6Q +03/08/2018,Sports_celeb,@Candace_Parker,"Happy International Women’s day! May we know them, grow them, raise them, honor them, respect them, challenge them,… https://t.co/avcJctRf76" +03/06/2018,Sports_celeb,@Candace_Parker,Recognize athletes for what matters most: Creativity. #HereToCreate @adidas https://t.co/ntYMX9GqTm +03/05/2018,Sports_celeb,@Candace_Parker,< Retired @kobebryant 🙌🏾🙌🏾🙌🏾🙌🏾 +03/04/2018,Sports_celeb,@Candace_Parker,Kyrie literally can’t miss 😂💀 +03/03/2018,Sports_celeb,@Candace_Parker,March is here.... my favorite time of the year. Only right to post this picture with it being conference tournament… https://t.co/smvXtBuhdp +03/02/2018,Sports_celeb,@Candace_Parker,Andddddd I had a blast! Thanks @NBAonTNT #Blast #DreamAReality #PinchMe #CaseyAndIsaiahAreGreatTeammates… https://t.co/aogThHWo1r +03/02/2018,Sports_celeb,@Candace_Parker,The BANK IS OPEN!!!!!! #LadyVolsAdvance +03/01/2018,Sports_celeb,@Candace_Parker,Catch me on @NBAonTNT tonight! https://t.co/G0lQO9MNCw +02/26/2018,Sports_celeb,@Candace_Parker,Found this on the counter. Sometimes you get reminders & motivation of your true PURPOSE! While I know art is proba… https://t.co/W9t3hWW4et +02/22/2018,Sports_celeb,@Candace_Parker,#ThreeStripeLife #AdidasFam @adidas https://t.co/fQegk8eSY6 +02/21/2018,Sports_celeb,@Candace_Parker,Ever wondered who my all-time favorite athlete is? Find out here #ad #greatnessisearned @sixstarpro https://t.co/jC308f2NuP +02/20/2018,Sports_celeb,@Candace_Parker,This UCLA/Oregon game 🙌🏾🙌🏾🙌🏾🙌🏾 man.... great game. +02/19/2018,Sports_celeb,@Candace_Parker,RT @jemelehill: Draymond is all of us 😂😂😂😂😂 https://t.co/ClWCmY4tfh +07/02/2018,Sports_celeb,@criscyborg,RT @kbadenhausen: Golden Boy Promotions signs deal to air 5 fights on Facebook Watch. First bout is Aug 11 featuring Jesus Rojas vs Joseph… +07/02/2018,Sports_celeb,@criscyborg,"RT @criscyborg: One of my favorite mma promotions @bravemmaf it reminds me of the old PRIDE FC how hard the athletes fight! + +https://t.co/…" +07/02/2018,Sports_celeb,@criscyborg,RT @bravemmaf: Happy to hear from the champion such a supportive statement. Thank you @criscyborg! #BraveCF #CyborgNation https://t.co/Jwhs… +07/02/2018,Sports_celeb,@criscyborg,Brazzzzziiilllll! @neymarjr 👏👏🇧🇷 https://t.co/Ewu9nYP3t9 +07/02/2018,Sports_celeb,@criscyborg,Big congrats to @titoortiz and @ChuckLiddell! They are changing the game and the way fighters get paid in MMA forev… https://t.co/7N1WLosAJo +07/02/2018,Sports_celeb,@criscyborg,"One of my favorite mma promotions @bravemmaf it reminds me of the old PRIDE FC how hard the athletes fight! + +https://t.co/ryWp2XqEON" +07/02/2018,Sports_celeb,@criscyborg,RT @CrisCyborgGym: Hello Twitter! #CyborgNation #CyborgFitness +07/02/2018,Sports_celeb,@criscyborg,News coming soon! Follow @criscyborggym https://t.co/Gs4C3c40KN +07/02/2018,Sports_celeb,@criscyborg,#CyborgNation #Blissfits #momentofbliss https://t.co/wSICKI57fq +07/02/2018,Sports_celeb,@criscyborg,Women’s boxing on @trboxing and @espn + is gaining speed! Congrats @MikaelaMayer1 on a great win https://t.co/ti4nPBgx1g +07/02/2018,Sports_celeb,@criscyborg,Welcome to LA @KingJames let me know if you need any security @Lakers @MagicJohnson 😂 🏀 +07/01/2018,Sports_celeb,@criscyborg,RT @RealFunnyMMA: I’m absolutely excited over the fact that I might get to see @criscyborg in Las Vegas next week! All the readers know how… +07/01/2018,Sports_celeb,@criscyborg,RT @rivolis: August 4 come meet the GOAT Cris Cyborg @rivolis. A VERY RARE appearance from the champ with the belt call 732-202-8927 @crisc… +07/01/2018,Sports_celeb,@criscyborg,RT @trboxing: Round of the year? #SaucedoZappavigna https://t.co/bs4CRZ9xOy +07/01/2018,Sports_celeb,@criscyborg,Thank you @RMW0204 🙏❤️ https://t.co/ttbmFSZ0ol +07/01/2018,Sports_celeb,@criscyborg,RT @wouldn_t: #loveyourgearz#cyborg https://t.co/oqeub72Fsb +07/01/2018,Sports_celeb,@criscyborg,RT @JoanTrimble: @criscyborg Oss! 🙏🏻 https://t.co/vOsUfcSQQ7 +07/01/2018,Sports_celeb,@criscyborg,RT @MyMMANews: Did you see @criscyborg 's interview with @jimrome ? Watch the #UFC champ talk about #RondaRousey here: https://t.co/14Adrp… +06/30/2018,Sports_celeb,@criscyborg,RT @CaptainnMarvell: I need to go https://t.co/XXmxMRvErl +06/30/2018,Sports_celeb,@criscyborg,I hope all the athletes competing in Seattle for the @SpecialOlympics have an amazing time competing! +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: @JohnMcCarthyMMA You can follow me so I can DM you? +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: Women empowering one another is what @girls_pinkbelt is all about! Only 8 spaces remain for my women’s Only retreat July 14… +06/30/2018,Sports_celeb,@criscyborg,"RT @CobrinhaCharles: Saturday class with the champion @criscyborg +• +• +• +• +Treino de sábado com a presença da campeã @criscyborg @ Cobrinha…" +06/30/2018,Sports_celeb,@criscyborg,Heeeeeey! https://t.co/NfHHpHgtxq +06/30/2018,Sports_celeb,@criscyborg,"Amazing Saturday with Alliance Family. +@gabbyjustino loved her first class with Professor @cobrinhacharles +Thank… https://t.co/YYFvTzyBoS" +06/30/2018,Sports_celeb,@criscyborg,@4Foxtrot @Coldsteelknives Thank you for your service. +06/30/2018,Sports_celeb,@criscyborg,@William23569623 @DancingABC @PaigeVanzantUFC @dancingbrasil +06/30/2018,Sports_celeb,@criscyborg,"nós estamos prontos @recordtvoficial @xuxameneghel @gabijiu kkkkk @dancingbrasil + +https://t.co/gxbRuaZ8oc" +06/30/2018,Sports_celeb,@criscyborg,@GeibSage Take a vacation down south! +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: Ladies only! Train the entire day with me in beautiful Costa Mesa California with @girls_pinkbelt and @UFCGymCostaMesa call… +06/30/2018,Sports_celeb,@criscyborg,Who’s watching #LFA44 on @AXSTVFights @axs right now? @patmiletich calling the action! +06/30/2018,Sports_celeb,@criscyborg,"RT @trboxing: WEIGHTS from Oklahoma City: @MikaelaMayer1 131.2 lbs. vs. Sheena Kaine 130.8 lbs. + +See it tomorrow on @espn+! https://t.co/TG…" +06/30/2018,Sports_celeb,@criscyborg,This looks like fun! https://t.co/VMmZ7Cjf6U +06/30/2018,Sports_celeb,@criscyborg,#Cyborgnation let @DancingABC know we want @PaigeVanzantUFC back! https://t.co/fg2lZKwOwu +06/30/2018,Sports_celeb,@criscyborg,Boxing @GGGBoxing @Canelo ticket prices https://t.co/VsexpChXbK +06/30/2018,Sports_celeb,@criscyborg,My favorite part about making dinner is deciding which @Coldsteelknives to use! https://t.co/B9W3ZepjaT +06/30/2018,Sports_celeb,@criscyborg,RT @EpicTideWetsuit: We are stoked. Take a peek! #ericisamodel #epiceric #meetericatepictide #singlesurfer #singlesurferdude #hydration #su… +06/29/2018,Sports_celeb,@criscyborg,"RT @TerezOwens: Cris Cyborg: I Never Fought Ronda Rousey Because She Was Afraid Of Me + https://t.co/fH0USyFSUT" +06/29/2018,Sports_celeb,@criscyborg,RT @UPROXXSports: Cris Cyborg claims she always knew Ronda Rousey was too scared to fight her #WWE #UFC https://t.co/QtXvy0k4Hg https://t.c… +06/29/2018,Sports_celeb,@criscyborg,@JohnMcCarthyMMA You can follow me so I can DM you? +06/28/2018,Sports_celeb,@criscyborg,RT @Everlast_: Happy birthday @ShakurStevenson! https://t.co/2NuLubJTU8 +06/28/2018,Sports_celeb,@criscyborg,"@PatRezzardi @CatrinaGuruarez @sherdogdotcom @jimrome I did two fights 140 + +https://t.co/JVMzLT4eOh" +06/28/2018,Sports_celeb,@criscyborg,RT @Jrayino: @criscyborg @jimrome @CBSSportsRadio @CBSSportsNet Great interview! Happy to see people see the real you and you gain new fans… +06/28/2018,Sports_celeb,@criscyborg,@NARDDAWG_JG @sherdogdotcom @jimrome @AlexaBliss_WWE #Blissfits +06/28/2018,Sports_celeb,@criscyborg,"RT @CarBombBoom13: “I don't want somebody else to be in this position, you know? + +You have a lot more years to live after professional spor…" +06/28/2018,Sports_celeb,@criscyborg,RT @sherdogdotcom: Cris Cyborg: I never fought Ronda Rousey because she was afraid of me https://t.co/dBsrwdh2UH via @jimrome https://t.co/… +06/28/2018,Sports_celeb,@criscyborg,"RT @MyMMANews: #UFC featherweight champ @criscyborg tells @jimrome that #RondaRousey was afraid of her. #CrisCyborg #JimRome +https://t.co/…" +06/28/2018,Sports_celeb,@criscyborg,"RT @RadiospazC: 3-5pm pst Another great day in the jungle! Former Bill Eric Wood in studio, then NHLer Daniel Carcillo, UFC Champ Cris Cybo…" +06/28/2018,Sports_celeb,@criscyborg,"RT @jimrome: Today’s daily podcast features @EWood70, @CarBombBoom13, and @criscyborg. Subscribe: https://t.co/rO6G6PmUTt" +06/28/2018,Sports_celeb,@criscyborg,RT @4Foxtrot: @criscyborg Im now following you after seeing the Jim Rome interview. You did great. Really impressed and inspired. +06/28/2018,Sports_celeb,@criscyborg,RT @prairiedog18: @criscyborg Enjoying your interview with @jimrome +06/28/2018,Sports_celeb,@criscyborg,RT @GM_Greatest: Great interview. Great person. Can’t wait to see @criscyborg fight. New fan here. https://t.co/jx3ttont1z +06/28/2018,Sports_celeb,@criscyborg,"RT @GCooks: @jimrome what a great interview w/ @criscyborg Even better watching on tv. What and incredibly engaging, charming, competitive…" +06/28/2018,Sports_celeb,@criscyborg,"RT @luvmy2girls4evr: @jimrome @criscyborg @CBSSportsRadio @CBSSportsNet Jim, which ""female"" athlete was more intimidating, Cyborg or Chyna?…" +06/28/2018,Sports_celeb,@criscyborg,"RT @Daniel_Wheatley: @jimrome I was not previously a fan of @criscyborg. But, after listening to your conversation w/ her, looking forward…" +06/28/2018,Sports_celeb,@criscyborg,RT @og_tisal: @criscyborg great interview on Rome! Looks forward to the next fight. +06/28/2018,Sports_celeb,@criscyborg,RT @METLOVER73: @jimrome @criscyborg @CBSSportsRadio @CBSSportsNet Not a hardcore UFC fan. Always heard nothing but negatives of @criscybor… +06/28/2018,Sports_celeb,@criscyborg,RT @Jimonealwoodart: Saturday Aug. 4th @criscyborg will be appearing at @rivolis and so will my statue of her. Can't wait to meet her and h… +06/28/2018,Sports_celeb,@criscyborg,It was a pleasure going In The Jungle today with @jimrome go listen @CBSSportsRadio or watch only on @CBSSportsNet… https://t.co/tPPDp7lia9 +06/28/2018,Sports_celeb,@criscyborg,RT @jimrome: .@criscyborg in studio right now on @CBSSportsRadio and @CBSSportsNet https://t.co/gwDyE4x76X +06/28/2018,Sports_celeb,@criscyborg,Live! Watch now @CBSSportsNet #CyborgNation @jimrome @CBSSportsRadio https://t.co/2UQgv6GS9y +06/28/2018,Sports_celeb,@criscyborg,Going live with @jimrome in the jungle next with @CBSSportsRadio don’t miss me on @CBSSportsNet starting now! +06/28/2018,Sports_celeb,@criscyborg,RT @CelebVM: Get an awesome personal video message from Cris Cyborg at https://t.co/TFJCK4GuWN #CelebVM @criscyborg #GiftIdea @criscyborg… +06/28/2018,Sports_celeb,@criscyborg,#CyborgNation join me inside The Jungle with @jimrome today 11:05 west coast time! @CBSSportsNet @CBSSportsRadio so… https://t.co/B49geSJ2gV +06/28/2018,Sports_celeb,@criscyborg,RT @MMAPARA: Nação Cyborg aposta em talentos locais para lotar ginásio em Campo Largo (PR) para segunda edição do evento https://t.co/kV3EM… +06/28/2018,Sports_celeb,@criscyborg,RT @rivolis: Meet the champ August 4 @rivolis @criscyborg #goat #criscyborg #ufc227 https://t.co/gtJJGsOjjV +06/27/2018,Sports_celeb,@criscyborg,"RT @gokhantherebel: 10 days left. I will plant the Turkish Flag in the Octagon. Turkish Tyson is back. 🇹🇷🇹🇷🇹🇷🇹🇷 + +10 gün kaldı. Türk Bayrağı…" +06/27/2018,Sports_celeb,@criscyborg,Don’t disrespect @BeckyLynchWWE by calling her Action Figure a Barbie Doll! https://t.co/2Dfsuutlrn +06/27/2018,Sports_celeb,@criscyborg,@LowClassGlamour @girls_pinkbelt @UFCGymCostaMesa Call 714-894-2399 spots are limited and only 8 spaces remaining t… https://t.co/yoku4OP23T +06/27/2018,Sports_celeb,@criscyborg,"RT @ZantzKiri: @criscyborg @AlexaBliss_WWE We have your Back, @AlexaBliss_WWE The Cyborg Nation is here! #CyborgNation" +06/27/2018,Sports_celeb,@criscyborg,Women empowering one another is what @girls_pinkbelt is all about! Only 8 spaces remain for my women’s Only retreat… https://t.co/cu8HePLCsu +06/27/2018,Sports_celeb,@criscyborg,*WARNING* if you are a woman and wanting to spend the day training with me and my friends during my July 14th… https://t.co/YOtVvCG8er +06/27/2018,Sports_celeb,@criscyborg,Congrats to @Claressashields who’s @ShowtimeBoxing fight last weekend against Gabriels became the most watched figh… https://t.co/6SU0Ctabn3 +06/26/2018,Sports_celeb,@criscyborg,Check out @criscyborg rocking the #TeamEverlast in camp with boxing coach Jason Parillo @Everlast_ +06/26/2018,Sports_celeb,@criscyborg,I can’t wait to meet all of #CyborgNation coming to @ufc #internationalfightweek #4thofJuly weekend! @ufc_brasil https://t.co/Cl0p7kzZ78 +06/26/2018,Sports_celeb,@criscyborg,https://t.co/LctpQUXs2V +06/26/2018,Sports_celeb,@criscyborg,@DrShalomim @AlexaBliss_WWE #Blissful thinking +06/26/2018,Sports_celeb,@criscyborg,"RT @arielhelwani: The Mousasi-MacDonald card on Sept. 29, which features Rampage-Silva 4, will air exclusively on DAZN in the US. They are…" +06/26/2018,Sports_celeb,@criscyborg,@EddieHearn @CallumTheOne @ABeterbiev The American takeover continues! +06/26/2018,Sports_celeb,@criscyborg,RT @criscyborg: You can’t go to war alone @AlexaBliss_WWE! You need #CyborgNation to have your back https://t.co/h0yYWvtrzG +06/26/2018,Sports_celeb,@criscyborg,"RT @gabijiu: Wrestling and mma ✅ +Learning is priceless! +Tks @titoortiz for teaching us. +@criscyborg khali.benjamin @GrapplersRus @ricardod…" +06/26/2018,Sports_celeb,@criscyborg,@MsCharlotteWWE @espnW Só awesome! Congrats +06/26/2018,Sports_celeb,@criscyborg,You can’t go to war alone @AlexaBliss_WWE! You need #CyborgNation to have your back https://t.co/h0yYWvtrzG +06/26/2018,Sports_celeb,@criscyborg,RT @MarkTaffetMedia: Kudos to young ⁦@Claressashields⁩ ! #FlintFutureFund #FlintWaterCrisis https://t.co/KGOzK0pyZh +06/26/2018,Sports_celeb,@criscyborg,"RT @BronzeBomber: Its Simple👑 +Champions are BORN, +Not MADE‼️ +KING, 2yrs Old +#BombZquad https://t.co/809AYU9Vkt" +06/26/2018,Sports_celeb,@criscyborg,@StephMcMahon @MsCharlotteWWE @WWE @espn Heeeey!!! 👊 +06/26/2018,Sports_celeb,@criscyborg,RT @StephMcMahon: Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue. Charl… +06/26/2018,Sports_celeb,@criscyborg,RT @criscyborg: #MomentOfBliss https://t.co/k2FM1StGoh +06/26/2018,Sports_celeb,@criscyborg,@TaraLaRosa @XANTHOS_77 @JackPosobiec Yes important follow rules! +06/26/2018,Sports_celeb,@criscyborg,"RT @TaraLaRosa: @XANTHOS_77 @JackPosobiec I consider @criscyborg a friend, and she is here LEGALLY! Cris is an amazing example of foreign t…" +06/26/2018,Sports_celeb,@criscyborg,"RT @MiaStJohnBoxer: This is the #ART piece that inspired the T-Shirt 🙌🏽The copies sold for 2k, the original was never for sale & remains wi…" +06/25/2018,Sports_celeb,@criscyborg,RT @Michelletraver6: @criscyborg #cyborgnation plus #Blissfits =a match made in heaven. +06/25/2018,Sports_celeb,@criscyborg,RT @rivolis: We can't wait #ufc227 #cyborgnation #cyborggoat #bringthestrap https://t.co/GI7e1fhKeg +06/25/2018,Sports_celeb,@criscyborg,@AlexaBliss_WWE Heeeeey! +06/24/2018,Sports_celeb,@criscyborg,RT @criscyborg: Forget @Barbie! I’m giving @BeckyLynchWWE dolls for Xmas presents 🎁 this year! https://t.co/LrL3u6mrAT +06/24/2018,Sports_celeb,@criscyborg,#Flintstone https://t.co/pMZtJlMve3 +06/24/2018,Sports_celeb,@criscyborg,I just ordered healthy meal deliveries with @dacikfit_foods in Orange County by calling 714-910-1531 +06/24/2018,Sports_celeb,@criscyborg,RT @MarkTaffetMedia: Big heart + Lots Courage + 2 Champions = GREAT FIGHT! Claressa Shields wins Middleweight Title! @Claressashields @Sho… +06/24/2018,Sports_celeb,@criscyborg,International Shipping available on all @criscyborg apparel purchased below! https://t.co/MiCj0MSCN9 +06/24/2018,Sports_celeb,@criscyborg,Get this exclusive shirt only from my online shop! https://t.co/UpAXjQDjsM +06/24/2018,Sports_celeb,@criscyborg,I loved the @boltwrestling camp! I hope he learned as many tricks as I did! https://t.co/iDwd9O25l9 +06/24/2018,Sports_celeb,@criscyborg,@LandoPan I love #CyborgNation +06/24/2018,Sports_celeb,@criscyborg,@CharmCity25 Hope you’re on #CyborgNation too! +06/24/2018,Sports_celeb,@criscyborg,RT @wolfsburgfl: @criscyborg @AlexaBliss_WWE Even if it's just Alexa spending an afternoon working out with Cyborg... that's gold. And I w… +06/24/2018,Sports_celeb,@criscyborg,"RT @NickBaldwinMMA: Great to see @EdKappMMA (finally) on Twitter. One of the best PR guys in the biz. Give him a follow, will ya?" +06/24/2018,Sports_celeb,@criscyborg,@AboutHerOFCL 👏👏👏👊 +06/24/2018,Sports_celeb,@criscyborg,RT @NerdyMisfit138: @criscyborg let's make it happen! +06/24/2018,Sports_celeb,@criscyborg,#CyborgNation and the #Blissfits?! https://t.co/aiqhYjEFJV +06/24/2018,Sports_celeb,@criscyborg,RT @Mhussein9911: @criscyborg Good to see the Champ Making some New Friends +06/24/2018,Sports_celeb,@criscyborg,I heard @MichaelRapaport practiced his @ufc and saved an entire ✈️ plane!🥋 Cobra Kai +06/24/2018,Sports_celeb,@criscyborg,I love the @ONEChampionship fights in the ring! @YODCHATRI @victoronefc very exciting https://t.co/jLRqGqgbMO +06/23/2018,Sports_celeb,@criscyborg,"@juliachoward @girls_pinkbelt This day is about more than fitness and fighting, it’s about goal setting, friendship… https://t.co/qp5rmBnmDb" +06/23/2018,Sports_celeb,@criscyborg,#MomentOfBliss https://t.co/k2FM1StGoh +06/23/2018,Sports_celeb,@criscyborg,@gokhantherebel @ufc @UFCEurope Alhamdullah +06/23/2018,Sports_celeb,@criscyborg,RT @criscyborg: #InternationalFightWeek @ufc is coming to Las Vegas 4th of July weekend! I can’t wait to meet all my fans coming for the ev… +06/23/2018,Sports_celeb,@criscyborg,"O sucesso é apenas uma consequência da sua determinação. + +#wrestling #cyborgnation #criscyborg + +Success is only a… https://t.co/ZFcN33Ua43" +06/23/2018,Sports_celeb,@criscyborg,@missjessyjess @arielhelwani @jessicaevileye You will come back better! +06/23/2018,Sports_celeb,@criscyborg,RT @BeckyLynchWWE: Ha! Deadly! https://t.co/S7gSni52Hx +06/23/2018,Sports_celeb,@criscyborg,@MMAjunkieJohn @ufc Old school! 🤙 +06/23/2018,Sports_celeb,@criscyborg,Forget @Barbie! I’m giving @BeckyLynchWWE dolls for Xmas presents 🎁 this year! https://t.co/LrL3u6mrAT +06/23/2018,Sports_celeb,@criscyborg,@MarkTaffetMedia @Claressashields @ShowtimeBoxing Great job guys! +06/23/2018,Sports_celeb,@criscyborg,#InternationalFightWeek @ufc is coming to Las Vegas 4th of July weekend! I can’t wait to meet all my fans coming for the events! +06/23/2018,Sports_celeb,@criscyborg,#CyborgNation Aug 4th I will be in New Jersey! Follow me on IG @criscyborg to find out where tomorrow! +06/23/2018,Sports_celeb,@criscyborg,#CyborgNation don’t forget tonight 130am pst @ProteinHouse1 athlete @missjessyjess fight @ufc #UFCSingapore on… https://t.co/BBlnSrUmup +06/23/2018,Sports_celeb,@criscyborg,@RMout29 👊 +06/23/2018,Sports_celeb,@criscyborg,Ladies only! Train the entire day with me in beautiful Costa Mesa California with @girls_pinkbelt and… https://t.co/JnRlJc0DzV +06/23/2018,Sports_celeb,@criscyborg,@rosieperezbklyn @ShowtimeBoxing Get her @Claressashields +06/23/2018,Sports_celeb,@criscyborg,Get the #CyborgNation sports bra only from @PhuketTopTeam https://t.co/xbCgjyUYuk +06/23/2018,Sports_celeb,@criscyborg,Amazing fight @Claressashields! @ShowtimeBoxing has a star +06/23/2018,Sports_celeb,@criscyborg,RT @AlexaBliss_WWE: @criscyborg Thanks ! I’ll let you know #ChampsHelpingChamps +06/23/2018,Sports_celeb,@criscyborg,"RT @ianbutlermma: Amazing sparring today with these legends. +📸 antmurataya +🦍🦍🦍🦍 +@bjpenndotcom +@criscyborg +@gulomoore +parilloboxing +@p…" +06/22/2018,Sports_celeb,@criscyborg,@LowKick_MMA 🤼‍♂️ @TripleH @TheCoachrules +06/22/2018,Sports_celeb,@criscyborg,RT @mmamania: .@CrisCyborg conspiring with #WWE star @AlexaBliss_WWE to help take down @RondaRousey https://t.co/3X6TBv7ErG https://t.co/M0… +06/21/2018,Sports_celeb,@criscyborg,RT @criscyborg: I’m so excited for my July 14th women’s Only @girls_pinkbelt camp! Don’t wait to reserve your space call 714-894-2399 today… +06/21/2018,Sports_celeb,@criscyborg,RT @criscyborg: Let me know # @AlexaBliss_WWE if you need help training Judo takedown and armbar defense! +06/21/2018,Sports_celeb,@criscyborg,"RT @TerezOwens: UFC Champion @CrisCyborg Offers To Train Ronda Rouseys Next Opponent +https://t.co/x49ERhZHJP" +06/21/2018,Sports_celeb,@criscyborg,RT @DynamiteTaylor1: To be the best you have to train with the best! Thanks for the wrestling today Kenny its always a pleasure to train wi… +06/21/2018,Sports_celeb,@criscyborg,"A juventude não é uma época da vida, +é um estado de espírito. +**** +****** +******* + +pratiquei todos os esportes poss… https://t.co/f97cTdNJ2B" +06/21/2018,Sports_celeb,@criscyborg,@marc_raimondi @SugarRaySefo The real game isn’t who punches harder. The fun part is learning who can take a punch… https://t.co/znlDAOx4g3 +06/20/2018,Sports_celeb,@criscyborg,@_ajawilson22 👊 @LVAces +06/20/2018,Sports_celeb,@criscyborg,#CyborgNation Who is ready for #UFC227 @rivolis?! +06/20/2018,Sports_celeb,@criscyborg,"RT @GeorgeForeman: If I could stand on the highest peek and scream 3 words ( the world could hear ) before I pass, I’d say “I Love You.” So…" +06/20/2018,Sports_celeb,@criscyborg,@BeckyLynchWWE @SpecialOlympics 💜 +06/20/2018,Sports_celeb,@criscyborg,"RT @BeckyLynchWWE: As a current California resider, I want to wish the @SpecialOlympics athletes out that way the best of luck in the up co…" +06/20/2018,Sports_celeb,@criscyborg,Let me know # @AlexaBliss_WWE if you need help training Judo takedown and armbar defense! +06/20/2018,Sports_celeb,@criscyborg,I’m so excited for my July 14th women’s Only @girls_pinkbelt camp! Don’t wait to reserve your space call 714-894-23… https://t.co/TMRPNJPxQF +06/17/2018,Sports_celeb,@criscyborg,RT @ErrolSpenceJr: Sold my own merchandise at the venue 🙃🙃 +06/17/2018,Sports_celeb,@criscyborg,"RT @LEllerbe: Very nice promo of @Claressashields @SHOsports, on point💯" +06/16/2018,Sports_celeb,@criscyborg,@JRsBBQ @rootsoffight I love that shirt! +06/16/2018,Sports_celeb,@criscyborg,@RyannVonDoom @TaraLaRosa @kellykobold 5 minutos +06/16/2018,Sports_celeb,@criscyborg,@TaraLaRosa @kellykobold We have been working on one. Hopefully soon +06/16/2018,Sports_celeb,@criscyborg,RT @criscyborg: July 28th my Combat Sports event Nacao Cyborg returns to Colombo Brazil for another exciting night of promoting professiona… +06/16/2018,Sports_celeb,@criscyborg,RT @criscyborg: 14 signups yesterday for my July 14th women’s Only Pinkbelt fitness camp. This one will reach capacity! Don’t wait to reser… +06/16/2018,Sports_celeb,@criscyborg,I think first 5 min wmma fight in North America was @TaraLaRosa V @kellykobold https://t.co/9hZkozRHDv +06/16/2018,Sports_celeb,@criscyborg,RT @fightnet: Relive UFC 222: @criscyborg vs. Kunitskaya at 3 p.m. ET on @fightnet! https://t.co/OsVfYxKQkX +06/16/2018,Sports_celeb,@criscyborg,@hannibalburess @InvictaFights Hahaha this is awesome! +06/15/2018,Sports_celeb,@criscyborg,RT @SugarRayLeonard: .@rootsoffight have launched their #FathersDaySale! Save 17% across the entire store & free mainland US shipping on or… +06/15/2018,Sports_celeb,@criscyborg,RT @criscyborg: Wishing everyone celebrating EID MUBARAK! +06/15/2018,Sports_celeb,@criscyborg,July 28th my combat sports promotion Nacao Cyborg returns for a night of promoting Pro Fights live from Colombo Brazil +06/15/2018,Sports_celeb,@criscyborg,@LVAces @DallasWings I need to see a game next time I’m in Vegas! +06/15/2018,Sports_celeb,@criscyborg,RT @EpicTideWetsuit: Don't forget that as we grow we bring the community up with us! https://t.co/T27b5qBUgG +06/15/2018,Sports_celeb,@criscyborg,RT @MMAPRO_LEAGUE: Are YOU ready for the new era of MMA? At the NEW @HardRockHCAC https://t.co/k6N69QGipw +06/15/2018,Sports_celeb,@criscyborg,RT @ltsport1: Press conference today. https://t.co/NCWzOE7Mee +06/15/2018,Sports_celeb,@criscyborg,Wishing everyone celebrating EID MUBARAK! +06/15/2018,Sports_celeb,@criscyborg,RT @criscyborg: I’m getting excited to meet all my fans at @ufc international fight week in Vegas next month! #CyborgNation +06/14/2018,Sports_celeb,@criscyborg,I’m getting excited to meet all my fans at @ufc international fight week in Vegas next month! #CyborgNation +06/13/2018,Sports_celeb,@criscyborg,"RT @WNBA: Vegas has itself an ACE in @_ajawilson22! #WatchMeWork + +Highlights from her historic effort in the @LVAces' OT win over Indiana:…" +06/13/2018,Sports_celeb,@criscyborg,RT @KatieTaylor: Excited to be back in the ring. July 28th at @TheO2. #AllTheBelts #WhyteParker https://t.co/O1B2gP3KLd +06/13/2018,Sports_celeb,@criscyborg,RT @marciodovalle: Um prazer trabalhar novamente neste evento. Vem aí o Nação Cyborg 2 https://t.co/QBtpweHbW9 +06/13/2018,Sports_celeb,@criscyborg,Feliz Aniversário @HannahStormESPN thank you for inspiring so many women to reach for more! https://t.co/LaL2CxA8ig +06/13/2018,Sports_celeb,@criscyborg,July 28th my Combat Sports event Nacao Cyborg returns to Colombo Brazil for another exciting night of promoting pro… https://t.co/TtavN3B9W3 +06/13/2018,Sports_celeb,@criscyborg,14 signups yesterday for my July 14th women’s Only Pinkbelt fitness camp. This one will reach capacity! Don’t wait… https://t.co/LOBQF405BU +06/13/2018,Sports_celeb,@criscyborg,RT @criscyborg: Cyborg joining forces with @UFCGYM to bring her #WomensOnly @girls_pinkbelt retreat to Costa Mesa CA July 14th @UFCGymCosta… +06/12/2018,Sports_celeb,@criscyborg,Amazing watching @EddieHearn work! https://t.co/PFVrz6qlNA +06/12/2018,Sports_celeb,@criscyborg,Congratulations @badassboz on the new role with Endeavor! I’m excited to get a chance to work together. +06/12/2018,Sports_celeb,@criscyborg,@sueluvsmma @junkpuppet69 @JustSinda #CyborgNation! Thanks for the support +06/12/2018,Sports_celeb,@criscyborg,@WNBA @Niacoff @LVAces Happy bday! +06/12/2018,Sports_celeb,@criscyborg,@dc_mma @TeamCoco 🤙 +06/12/2018,Sports_celeb,@criscyborg,"RT @AlBernstein: Not unreasonable to think that 2018 will still have #CharloHurd, #JoshuaWilder and #SantaCruzRussell & #CaneloGolovkin plu…" +06/12/2018,Sports_celeb,@criscyborg,"RT @latimespugmire: The @anthonyfjoshua @BronzeBomber fight is not done, but it will be interesting to see (and will say a lot) if Joshua t…" +06/12/2018,Sports_celeb,@criscyborg,Ladies come train with me @UFCGYM July 14th in Costa Mesa @UFCGymCostaMesa #womenonly https://t.co/MrbXvtmeya +06/12/2018,Sports_celeb,@criscyborg,RT @DandoisCindy: @pops_grm @WMMARankings @ufc @criscyborg @UFC_TUF I think I should be in the TUF -house. +06/11/2018,Sports_celeb,@criscyborg,"RT @criscyborg: vote @criscyborg as @FightersOnly Female Fighter Of The Year below! + +https://t.co/9SmYaRRCtF https://t.co/7VkpuEefJZ" +06/11/2018,Sports_celeb,@criscyborg,Cyborg joining forces with @UFCGYM to bring her #WomensOnly @girls_pinkbelt retreat to Costa Mesa CA July 14th… https://t.co/RuVrH8I7AZ +06/11/2018,Sports_celeb,@criscyborg,Cris Cyborg UFC visits Rex Fight while in Brazil! https://t.co/vFSsVw1Y5X +06/11/2018,Sports_celeb,@criscyborg,"vote @criscyborg as @FightersOnly Female Fighter Of The Year below! + +https://t.co/9SmYaRRCtF https://t.co/7VkpuEefJZ" +06/10/2018,Sports_celeb,@criscyborg,"Nunca é tarde demais para ser aquilo que sempre desejou ser. #vidaDeMae +=========================== +It's never too… https://t.co/hXULK5lKRi" +06/10/2018,Sports_celeb,@criscyborg,"🙌 we can do all possible plans for yourself or for others, But the final word who gives is God !!!! Have a blessed… https://t.co/Od16jNFFGG" +06/10/2018,Sports_celeb,@criscyborg,Dana is right! I’m no matchmaker Im not an employee but 10-99 that’s why Ronda never fought me GSP fights for a MW… https://t.co/q7aCfIaCiP +06/10/2018,Sports_celeb,@criscyborg,RT @PhilMcGeoghan: When you get your chin checked by the champ it’s a hell of a night! @criscyborg https://t.co/0KCDGGXN5X +06/10/2018,Sports_celeb,@criscyborg,RT @criscyborg: Both these girls beat @RondaRousey. I want to know who wins against each other and can fight the winner of @Amanda_Leoa V @… +06/10/2018,Sports_celeb,@criscyborg,@Amanda_Leoa @HollyHolm Im glad the leg is better. I been wondering why I wasn’t fighting #ufc226 https://t.co/mIVo8NKhtw +06/10/2018,Sports_celeb,@criscyborg,Both these girls beat @RondaRousey. I want to know who wins against each other and can fight the winner of… https://t.co/zOIvLqlKfo +06/10/2018,Sports_celeb,@criscyborg,@trboxing @ShakurStevenson Nice! +06/10/2018,Sports_celeb,@criscyborg,Come watch #ufc225 with me in #HB #TheOC https://t.co/hLdV4ybJ2H +06/10/2018,Sports_celeb,@criscyborg,@arielhelwani Morning! 🙌 +06/09/2018,Sports_celeb,@criscyborg,@LEllerbe Thanks for the support! +06/09/2018,Sports_celeb,@criscyborg,Glad to see @Tyson_Fury get the win! +06/09/2018,Sports_celeb,@criscyborg,"RT @NYFights: Heather Hardy Leads Battle Vs Stigma In Mental Health Matters, Post Bourdain Suicide - NY FIGHTS https://t.co/rpuRD0Djb8" +07/01/2018,Sports_celeb,@Amanda_Leoa,@LanasEggWhites @ufc @KingMoFH Awesome I will 👊🏼 +07/01/2018,Sports_celeb,@Amanda_Leoa,@RiosSolberg @ufc 😚😚😚😚😚😚😚😚 graciasssss +06/30/2018,Sports_celeb,@Amanda_Leoa,@Dynamite4Life @ufc Thank u 🙌🏼 +06/30/2018,Sports_celeb,@Amanda_Leoa,#ufc25years @ufc https://t.co/hnsaQJX75B +06/29/2018,Sports_celeb,@Amanda_Leoa,Meu são joao acabou 😭 mas ano que vem estarei de volta 🙏🏼 e viverei cada momento intensamente.🙌🏼 My são Joao is ove… https://t.co/g0JLeGPhcH +06/27/2018,Sports_celeb,@Amanda_Leoa,And u is my ❤️ https://t.co/0MS2vUyyzg +06/25/2018,Sports_celeb,@Amanda_Leoa,Awesome time with my friends 🤣 nunca esquecerei esse #SaoJoao amigos 😘 #monteiro #paraiba https://t.co/YPKfDZ972Q +06/24/2018,Sports_celeb,@Amanda_Leoa,Só lama #saojoao #monteiro #paraiba Awesome night with my friends. https://t.co/KUYoIuOyeW +06/24/2018,Sports_celeb,@Amanda_Leoa,Minha prefeita @annalorenanobrega #monteiro #Paraíba melhor #saojoao do mundo.🇧🇷 https://t.co/IVFV6eL810 +06/23/2018,Sports_celeb,@Amanda_Leoa,@SimoneeSimaria 😂😂😂😂 https://t.co/rKj3FLhyMF +06/22/2018,Sports_celeb,@Amanda_Leoa,🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷😘 estamos juntos https://t.co/xP3eAfwhYP +06/22/2018,Sports_celeb,@Amanda_Leoa,Minha vida meu amor 🇧🇷 https://t.co/Cw3OCbgZzW +06/22/2018,Sports_celeb,@Amanda_Leoa,@Phil_Coutinho @neymarjr https://t.co/nKcgm5oFfZ +06/22/2018,Sports_celeb,@Amanda_Leoa,Vamos lá 3 x 0 Brasil 🇧🇷 let’s go primeiro gol do @Phil_Coutinho #leoa #Believe #acreditar #sempre ⚽️ https://t.co/05LORyJvVx +06/20/2018,Sports_celeb,@Amanda_Leoa,🛫 https://t.co/pv0dLgX5k4 +06/19/2018,Sports_celeb,@Amanda_Leoa,@PorterUFCnews @espn Agree 😂😂😂👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 +06/19/2018,Sports_celeb,@Amanda_Leoa,6 weeks out @NinaAnsaroff https://t.co/5ILTDSw0gt +06/19/2018,Sports_celeb,@Amanda_Leoa,6 weeks out @NinaAnsaroff https://t.co/bPmYULEnEF +06/19/2018,Sports_celeb,@Amanda_Leoa,"🎶Let's get away from this place baby! +Let's run away +I'm tired of waiting +May you carry me 🎶 Vamos fugir deste luga… https://t.co/CA3QWG2zQS" +06/18/2018,Sports_celeb,@Amanda_Leoa,@_eulolaa Danadinhos d + 🙄😂😂😂😂 +06/17/2018,Sports_celeb,@Amanda_Leoa,@GentryAdvance Was awesome 👏🏼 thank you!!!! +06/17/2018,Sports_celeb,@Amanda_Leoa,@_eulolaa Simba 😁 +06/17/2018,Sports_celeb,@Amanda_Leoa,🐶🇧🇷 https://t.co/8RoP57ehxZ +06/17/2018,Sports_celeb,@Amanda_Leoa,🐶🇧🇷 https://t.co/lOiVj61ZrV +06/17/2018,Sports_celeb,@Amanda_Leoa,Let’s go 🇧🇷 vamos lá Brasil @AdrianaLima https://t.co/tkk160VA3g +06/17/2018,Sports_celeb,@Amanda_Leoa,#gaypride https://t.co/IAvXDo3xcL +06/15/2018,Sports_celeb,@Amanda_Leoa,🦁👀👴🏻👀 we know #Papa @ConanSilveira https://t.co/Bb6LDzwvN3 +06/15/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff https://t.co/QpvqjEVSvR +06/14/2018,Sports_celeb,@Amanda_Leoa,🦁 https://t.co/413g3dixyx +06/12/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😉 https://t.co/cDhD7ujGD1 +06/10/2018,Sports_celeb,@Amanda_Leoa,Let’s do it @HollyHolm +06/10/2018,Sports_celeb,@Amanda_Leoa,@CoreyA_MMA 😂😂😂😂😂😂😂😂 +06/09/2018,Sports_celeb,@Amanda_Leoa,RT @wolverine6523: #UFC25YEARS https://t.co/22EqkPOmPt +06/09/2018,Sports_celeb,@Amanda_Leoa,Obrigadaaaaa thank you @DRPROTETOR https://t.co/18Kfmg1pFV +06/09/2018,Sports_celeb,@Amanda_Leoa,I found my favorite rag 😂 #kambiz https://t.co/5RJPupJ3Nu +06/09/2018,Sports_celeb,@Amanda_Leoa,A lot of respect for you!!!🙏🏼 Respeito é muito importante!!! @RockyPMMA https://t.co/IJ6c5B6Ifw +06/08/2018,Sports_celeb,@Amanda_Leoa,home Sweet Home 🏡🇺🇸 https://t.co/LmU39V4uqc +06/08/2018,Sports_celeb,@Amanda_Leoa,See u tomorrow 🇺🇸 🙌🏼🙏🏼 +06/01/2018,Sports_celeb,@Amanda_Leoa,https://t.co/B6GKl5uJpF +05/29/2018,Sports_celeb,@Amanda_Leoa,RT @InvictaFights: RT to wish President @shanknapp a very Happy Birthday! 🎂 https://t.co/MJHdBkBMvC +05/29/2018,Sports_celeb,@Amanda_Leoa,😘😂👵🏼 https://t.co/JTpv9cDJPs +05/29/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😂😂😂😂 cute +05/29/2018,Sports_celeb,@Amanda_Leoa,I miss you my love 😘 but this is my blanket? 😡😡😡👇🏼😖 I miss my beautiful blanket also 😖😖😖😡😡😡 @NinaAnsaroff https://t.co/sIWmMVQANd +05/26/2018,Sports_celeb,@Amanda_Leoa,@junior_cigano 😂😂😂😋😋😋 https://t.co/5nWlbe9clo +05/26/2018,Sports_celeb,@Amanda_Leoa,@TeciaTorres Beautiful TT +05/26/2018,Sports_celeb,@Amanda_Leoa,"RT @Jon_Anik: So much respect and appreciation for @Amanda_Leoa, @RockyPMMA, @NinaAnsaroff, + @TeciaTorres and all they represent as fighte…" +05/26/2018,Sports_celeb,@Amanda_Leoa,@Jon_Anik @NinaAnsaroff @RockyPMMA @TeciaTorres 🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼 thank you very much I appreciate +05/26/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️🤣🤣🤣🤣 it’s my pet +05/24/2018,Sports_celeb,@Amanda_Leoa,"Mainha, Mamá coco, Eu e Menina 🐶😂 https://t.co/MrTRf9fOfE" +05/21/2018,Sports_celeb,@Amanda_Leoa,Vovó e o Gritinho do @pabllovittar grandma 👵🏼😂😂😂 https://t.co/F06zOlcKbs +05/19/2018,Sports_celeb,@Amanda_Leoa,My sister Neu 🙌🏼 Minha irmã @vanessa.nunes.946954 #loveyou 😘 https://t.co/q0Ns1eZK0H +05/18/2018,Sports_celeb,@Amanda_Leoa,🏹 and 🦁 @NinaAnsaroff https://t.co/3C07A5VBJ6 +05/18/2018,Sports_celeb,@Amanda_Leoa,🙏🏼😘 @TeciaTorres @NinaAnsaroff @RockyPMMA https://t.co/EJZhM8QEpV +05/16/2018,Sports_celeb,@Amanda_Leoa,Grandma 👵🏼 https://t.co/1QIFQ6559j +05/16/2018,Sports_celeb,@Amanda_Leoa,Congrats @PerfectingA 🙌🏼 https://t.co/b6Cq5cqb8s +05/16/2018,Sports_celeb,@Amanda_Leoa,🤭🤭🤭🤭🤭🤭🤭🤭🤭🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 https://t.co/yiT03SFNCK +05/16/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😒🤬🤬🤬🤬🤬😂😂😂😂😂😂 +05/16/2018,Sports_celeb,@Amanda_Leoa,Foi ótima nossa conversa @pedrobial é hoje em @conversacombial 🦁 https://t.co/SKICm6QknI +05/14/2018,Sports_celeb,@Amanda_Leoa,"E assim finalizamos mais uma jornada de muito treinamento e dedicação, a torcida positiva dos verdadeiros fãs preva… https://t.co/HpUB0oP2ZV" +05/14/2018,Sports_celeb,@Amanda_Leoa,RT @ufc_brasil: Levante a mão quem acordou nessa segunda se sentindo uma campeã! @Amanda_Leoa https://t.co/gYrJVgmiez +05/14/2018,Sports_celeb,@Amanda_Leoa,@thebigticket205 Thank you my friend 🙏🏼👊🏼🙌🏼 +05/13/2018,Sports_celeb,@Amanda_Leoa,Mission Accomplished 🦁 missão cumprida #ufc224 #AndStill https://t.co/EJAb7MKnqB +05/13/2018,Sports_celeb,@Amanda_Leoa,#ubuntu #andstill Obrigada a todos 🦁 thank you so much everyone 🙏🏼 https://t.co/0eeq5hr9Mp +05/12/2018,Sports_celeb,@Amanda_Leoa,Amanhã 🦁 tomorrow #AndStill https://t.co/RWvgkxSgFq +05/12/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The queen of the jungle has arrived. + +@Amanda_Leoa #UFC224 https://t.co/h31fChcWAb" +05/11/2018,Sports_celeb,@Amanda_Leoa,😂😂😂😂😂😂💩 @NinaAnsaroff https://t.co/j9C1L9sX0k +05/11/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄 @NinaAnsaroff https://t.co/SxAFXWuuQg +05/10/2018,Sports_celeb,@Amanda_Leoa,😉 my girlfriend 😘Minha namoradinha @NinaAnsaroff https://t.co/tsFR1N5kHB +05/10/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄 https://t.co/oMscWwzWZl +05/08/2018,Sports_celeb,@Amanda_Leoa,Nós crescemos juntas como irmãs 🙌🏼 we grew up together like sisters. https://t.co/jPq1FwqRlD +05/07/2018,Sports_celeb,@Amanda_Leoa,The good moments are always waybetter than the bad. Os melhores momentos serão sempre os melhores. Um simples deta… https://t.co/p76i2hmY8n +05/07/2018,Sports_celeb,@Amanda_Leoa,#Ufc224 #riobrasil https://t.co/6BrGcyBBof +05/06/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄🤮🤮🤮🤢🤢🤢🤢🤢🤢🤢🤢🤮🤮 https://t.co/j4PmT6IyVD +05/04/2018,Sports_celeb,@Amanda_Leoa,Tonight @InvictaFights 👇🏼 https://t.co/lIkk8rXvxq +05/04/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The champ is ready for anything. + +@Amanda_Leoa #UFC224 https://t.co/VPhliQCiEO" +05/04/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Em 12 de maio, 🇧🇷@Amanda_Leoa defenderá pela terceira vez o cinturão do peso-pena feminino contra 🇺🇸@RockyPMMA na luta pri…" +05/03/2018,Sports_celeb,@Amanda_Leoa,Juntos para mais uma missão 🦁 Together for another mission #andstill #ufc224 https://t.co/0cgZtdP8LI +05/02/2018,Sports_celeb,@Amanda_Leoa,Chip and Dale 😁 https://t.co/GEZP3DAgFh +05/01/2018,Sports_celeb,@Amanda_Leoa,👇🏼🏆 https://t.co/itF7n9P6jt +05/01/2018,Sports_celeb,@Amanda_Leoa,Home 🏡🙌🏼👏🏼👏🏼👏🏼👏🏼 +04/30/2018,Sports_celeb,@Amanda_Leoa,#andstill https://t.co/0H6FQgRqiO +04/30/2018,Sports_celeb,@Amanda_Leoa,🙌🏼 @FCBarcelona 🏆 https://t.co/cR90VAeplo +04/30/2018,Sports_celeb,@Amanda_Leoa,👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 https://t.co/a708Lo53j0 +04/30/2018,Sports_celeb,@Amanda_Leoa,INSIDE VIEW: The celebration of the title at Riazor https://t.co/7l7FgwbdWl +04/29/2018,Sports_celeb,@Amanda_Leoa,@ufc We are less than 2 week for 224 😁✌🏼 +04/29/2018,Sports_celeb,@Amanda_Leoa,"Less than 2 weeks before my fight, when I’m tying together all the ends of this camp. I have to go to New York for a Media Day. 👏🏼👏🏼🙌🏼" +04/28/2018,Sports_celeb,@Amanda_Leoa,💙❤️ https://t.co/vJuZmQqg8Y +04/28/2018,Sports_celeb,@Amanda_Leoa,"@DIRECTVService @NinaAnsaroff @DIRECTV One question.... How come, when it is raining, the reception never works? 😖😖" +04/28/2018,Sports_celeb,@Amanda_Leoa,🤬🤬🤬🤬🤬🤬🤬🤬 @DIRECTV https://t.co/Ra3Td5xvaP +04/28/2018,Sports_celeb,@Amanda_Leoa,🤬🤬🤬🤬🤬🤬🤬🤬 @DIRECTV https://t.co/OtgjNOSc9b +04/28/2018,Sports_celeb,@Amanda_Leoa,😩😩😩😩 https://t.co/MNi8YeIwWx +04/28/2018,Sports_celeb,@Amanda_Leoa,@adrianomkmoraes @evertonVVxtreme Adriano Martins https://t.co/nWc5TMp4EY +04/27/2018,Sports_celeb,@Amanda_Leoa,Here we go https://t.co/eCIj1yxi0W +04/25/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Em 12 de maio, @Amanda_Leoa retorna a cidade do Rio de Janeiro, palco de sua estreia no octógono. Mas agora a história será…" +04/25/2018,Sports_celeb,@Amanda_Leoa,This is my water 💧 Essa é minha água @tenwater thank you 🙏🏼 https://t.co/BUMeZoh6Lm +04/25/2018,Sports_celeb,@Amanda_Leoa,@hiimash2 @ufc Awesome! make sure you watch them too 🙌🏼 +04/24/2018,Sports_celeb,@Amanda_Leoa,@ufc 👊🏼💪🏼 +04/24/2018,Sports_celeb,@Amanda_Leoa,@davi85291393 @ufc Eu sou gatinha tbm 😂😂😂😂😂😂 thanks +04/24/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The Lioness takes the Octagon in less than three weeks .. + +@Amanda_Leoa #UFC224 https://t.co/kH7UocBzCU" +04/24/2018,Sports_celeb,@Amanda_Leoa,Our Mate is back @alexchambersmma 🙌🏼 https://t.co/qlegfvrHpk +04/23/2018,Sports_celeb,@Amanda_Leoa,👇🏼 https://t.co/1oFtgbvGnx +04/23/2018,Sports_celeb,@Amanda_Leoa,"RT @UFC_CA: The Octagon returns May 12 for #UFC224! + +@Amanda_Leoa vs. @RockyPMMA for the WBW championship. Who takes it? https://t.co/eIq5X…" +04/23/2018,Sports_celeb,@Amanda_Leoa,RT @caradesapatojr: A verdade sempre prevalece!! Quem te conhece sabe q vc jamais trapacearia. 🇧🇷—🇺🇸 The true always… https://t.co/XMm8Geax… +04/23/2018,Sports_celeb,@Amanda_Leoa,@junior_cigano 🙌🏼🙌🏼 https://t.co/MPefhs88IR +04/23/2018,Sports_celeb,@Amanda_Leoa,@ichbindaswalros @NinaAnsaroff 🥘 😂😂😂 +04/23/2018,Sports_celeb,@Amanda_Leoa,@benjogami1 @NinaAnsaroff My food 🥘 😂😂😂 +04/23/2018,Sports_celeb,@Amanda_Leoa,@EllieLynnbooks @NinaAnsaroff she does on purpose 😁😁😁😁 don’t like when she call me that +04/23/2018,Sports_celeb,@Amanda_Leoa,@PamBam_Sorenson @NinaAnsaroff She knows I don’t like being called a princess but she does on purpose. 😁😁😁 +04/23/2018,Sports_celeb,@Amanda_Leoa,😉😁 https://t.co/no5bJuIJiE +04/23/2018,Sports_celeb,@Amanda_Leoa,Princess 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 @NinaAnsaroff https://t.co/f9AxeePtc6 +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @UFCFightPass: Welcome to the @UFC Hall of Fame @MattSerraUFC! Re-live Matt's best in his Hall of Fame collection on #UFCFIGHTPASS 👉 htt… +04/22/2018,Sports_celeb,@Amanda_Leoa,Heavy weights 👊🏼 https://t.co/l8v2aOU4ep +04/22/2018,Sports_celeb,@Amanda_Leoa,@Rockup30 👊🏼💪🏼 +04/22/2018,Sports_celeb,@Amanda_Leoa,@BFORTHEV @ufc https://t.co/nL6EtSNq7a +04/22/2018,Sports_celeb,@Amanda_Leoa,@anacaro90574749 💪🏼👊🏼valeu +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @BigfootSilva: I’m with @EdsonBarbozaJR 👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼 https://t.co/xtTIHu7Z8s +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @danawhite: #UFCAC Fight Pass prelims start NOW!!! https://t.co/BYOSCpcBkO +04/22/2018,Sports_celeb,@Amanda_Leoa,Good decision https://t.co/6SDfgAYUFU +04/22/2018,Sports_celeb,@Amanda_Leoa,Congrats @FCBarcelona 👏🏼👏🏼👏🏼👏🏼👏🏼 +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @FCBarcelona: ⚽ 69: GOOAAAALLLL! Coutinho from the penalty spot after handball by Lenglet! #CopaBarça (0-5) https://t.co/GTpMjjEnNe +04/21/2018,Sports_celeb,@Amanda_Leoa,@AddeAbra 😂😂😂😂 +04/21/2018,Sports_celeb,@Amanda_Leoa,@lschi1 🙏🏼🙌🏼 +04/21/2018,Sports_celeb,@Amanda_Leoa,@BADDESTMMA 😂😂😂😂😂😂😂 +04/21/2018,Sports_celeb,@Amanda_Leoa,My coffee ☕️ Meu café 😂😂😂😂😂 https://t.co/UHDeGLDWJc +04/21/2018,Sports_celeb,@Amanda_Leoa,Good morning 🌞 https://t.co/ZBPhFV0Pac +04/21/2018,Sports_celeb,@Amanda_Leoa,"RT @InvictaFights: Who do you think will be crowned the new bantamweight champion? + +Experience #InvictaFC29: @mmasarah vs @klwmma LIVE from…" +04/20/2018,Sports_celeb,@Amanda_Leoa,Good morning 😃 https://t.co/BuwG5Pcl9x +04/20/2018,Sports_celeb,@Amanda_Leoa,Harm up https://t.co/spv9CqJXaA +04/20/2018,Sports_celeb,@Amanda_Leoa,@benjamin8213 🙏🏼 https://t.co/49746hPUwV +04/20/2018,Sports_celeb,@Amanda_Leoa,@jerald_ridgway Lol...I was hoping for 29 https://t.co/c2mOqhl0jz +04/20/2018,Sports_celeb,@Amanda_Leoa,@m_tbeck https://t.co/F61iZuBWKG +04/20/2018,Sports_celeb,@Amanda_Leoa,@ErkDennis @ufc https://t.co/SAYVGNsynr +04/20/2018,Sports_celeb,@Amanda_Leoa,@valleygems413 👊🏼💪🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@ErkDennis @ufc I will still be making some 💰😉 +04/20/2018,Sports_celeb,@Amanda_Leoa,@jajamour01 Valeu 🙏🏼🙌🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@Playachampion 🙌🏼🙏🏼💪🏼👊🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@Mev_96 @ufc https://t.co/zAwax1rO1o +04/20/2018,Sports_celeb,@Amanda_Leoa,@erika_leer @m_tbeck 🙌🏼💪🏼👊🏼🤝 thank you!!!! +04/20/2018,Sports_celeb,@Amanda_Leoa,@m_tbeck @erika_leer 😂😂😂😂😂😂😂😂😂😂 https://t.co/A8fUqbsVS1 +04/19/2018,Sports_celeb,@Amanda_Leoa,#UFC224 https://t.co/UDP8RKZKwo +04/19/2018,Sports_celeb,@Amanda_Leoa,Thank you @PerfectingA https://t.co/kFwVcdpQcV +04/19/2018,Sports_celeb,@Amanda_Leoa,Salt life https://t.co/Anss26T543 +04/19/2018,Sports_celeb,@Amanda_Leoa,@Bfr_Sabrina Thank you ☺️ +04/19/2018,Sports_celeb,@Amanda_Leoa,😩 https://t.co/G75NxJ20xH +04/19/2018,Sports_celeb,@Amanda_Leoa,https://t.co/guWEGiH4Mb +04/19/2018,Sports_celeb,@Amanda_Leoa,@mightjuschilll Thank you 🙏🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,@Playachampion 🙌🏼💪🏼👊🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,@RolandSchultz8 Let’s go 🙏🏼🙌🏼💪🏼👊🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,I miss u Gunner 👶🏼😩 saudade do meu branquelo Gunner. https://t.co/VkCRuf8WqG +04/18/2018,Sports_celeb,@Amanda_Leoa,@juniolivasco @ufc Amém 🙏🏼 Obrigada +04/18/2018,Sports_celeb,@Amanda_Leoa,#ufc224 #riobrasil https://t.co/LYDQpWPrNI +04/18/2018,Sports_celeb,@Amanda_Leoa,Boom 💥👇🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 https://t.co/Y2VODLOr1B +04/18/2018,Sports_celeb,@Amanda_Leoa,@RedWhite_Gooner @ufc 💪🏼👊🏼🙌🏼🙏🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@vikingjason @ufc @RockyPMMA Thank you!!! 🙌🏼👊🏼💪🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@EnigmaFights @ufc 👊🏼💪🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,RT @MMAWrestle_Chat: Apart from the random strawweight fight this card looks like it could have some great fights on it:@Amanda_Leoa vs @Ro… +04/18/2018,Sports_celeb,@Amanda_Leoa,@Onlynate247 @ufc May 12 💪🏼👊🏼😊 #ufc224 +04/18/2018,Sports_celeb,@Amanda_Leoa,@NKCheo @ufc 😂😂😂😂😂😂😂😂😂😂😂 +04/18/2018,Sports_celeb,@Amanda_Leoa,@TMLsince1994 @ufc 😎 +04/18/2018,Sports_celeb,@Amanda_Leoa,@UnRayao @ufc 👏🏼👏🏼👏🏼👏🏼👏🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@GmChn9R @ufc 🤓 +04/18/2018,Sports_celeb,@Amanda_Leoa,@jim782_greg @ufc Boom 💥 thank you!🙏🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@apex47sa @ufc 🤣🤣🤣🤣🤣🤣🤣🤣 +04/18/2018,Sports_celeb,@Amanda_Leoa,@RedWhite_Gooner @ufc 😎😄 +04/18/2018,Sports_celeb,@Amanda_Leoa,@MightyArsenal19 @ufc Lol +04/18/2018,Sports_celeb,@Amanda_Leoa,@UnRayao @ufc 🤪🤪🤪🤪🤪🤪 +04/18/2018,Sports_celeb,@Amanda_Leoa,@MattWalters3 @ufc 😂😂😂😂😂😂😂😂 +04/18/2018,Sports_celeb,@Amanda_Leoa,@ufc What about #ufc224? 🧐 +04/18/2018,Sports_celeb,@Amanda_Leoa,she listens to👂 her owners voice 😊 Falei felicidade quando 👂 a dona chegar 😂😂😂😂😂 https://t.co/L1DXxl6ho8 +04/18/2018,Sports_celeb,@Amanda_Leoa,@10natoo 😂😂😂😂😂 é +04/17/2018,Sports_celeb,@Amanda_Leoa,I needed some skills to record this. https://t.co/1P211jmKlu +04/17/2018,Sports_celeb,@Amanda_Leoa,Feliz aniversário Mãe 🎂 que a vida nos permita comemorar essa data por muitos e muitos anos 🙏🏼obrigada por tudo TE… https://t.co/4cAhdr3jqO +04/16/2018,Sports_celeb,@Amanda_Leoa,Baby Gunner 😴 https://t.co/DeeAZ9wKNF +04/16/2018,Sports_celeb,@Amanda_Leoa,Ready to go 🦁 Tudo pronto @judokayla @conansilveira @mikebrownmma @dyah_ali @parrumpaatt @stevemocco #ufc224… https://t.co/GDoWJOtycv +04/16/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Assim foi a primeira encarada entre a campeã @Amanda_Leoa e @RockyPMMA. Elas lutam no #UFC224, dia 12 de maio, no Rio de Ja…" +04/16/2018,Sports_celeb,@Amanda_Leoa,RT @ufc_brasil: Já são cinco vitórias seguidas no octógono! Quem deve ser o próximo adversário de @caradesapatojr no #UFC? https://t.co/ka9… +04/16/2018,Sports_celeb,@Amanda_Leoa,Good morning!! Guess who helped me fall asleep last night!? 👶🏼 Bom dia! Olha quem me ajudou a ter uma noite de paz… https://t.co/zkByOzJXJV +04/15/2018,Sports_celeb,@Amanda_Leoa,Sunday 👶🏼 day https://t.co/bn6cwUIjMq +04/15/2018,Sports_celeb,@Amanda_Leoa,RT @ConanSilveira: UBUNTU🙏🏻🙏🏻🙏🏻 @amanda_leoa @ninaansaroff @valdirenenunes1 @katelkubis @americantopteam https://t.co/4xKigyWSZZ +04/15/2018,Sports_celeb,@Amanda_Leoa,Fuck Awesome @DustinPoirier congrats +04/15/2018,Sports_celeb,@Amanda_Leoa,#ubuntu @ConanSilveira @NinaAnsaroff 🙌🏼 https://t.co/GVlH3y6yKY +04/14/2018,Sports_celeb,@Amanda_Leoa,Let’s go Sapatinho @caradesapatojr https://t.co/qO2LasuxfA +04/12/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: O octógono retorna ao Rio de Janeiro no dia 12 de maio com @Amanda_Leoa, @JacareMMA, @VitorBelfort, @LyotoMachidafw e muito…" +04/10/2018,Sports_celeb,@Amanda_Leoa,"RT @FCBarcelona: 🔊 Valverde: ""We are sorry for the fans. Now we have to carry on and focus on what's left for us"" #RomaBarça https://t.co/Z…" +04/10/2018,Sports_celeb,@Amanda_Leoa,@MikeMeehan2016 @FCBarcelona 🙏🏼💪🏼👊🏼 thank you! +04/10/2018,Sports_celeb,@Amanda_Leoa,@Pinzon804 @FCBarcelona 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 +04/10/2018,Sports_celeb,@Amanda_Leoa,@MikeMeehan2016 @FCBarcelona 😂😂😂😂😂😂😂😂 +04/10/2018,Sports_celeb,@Amanda_Leoa,3 goal I can’t believe that 🙈🙈🙈🙈🙈🙈🙈🙈 @FCBarcelona 😭😭😭😭😭😭😭😭😭😭😭😭😭😭 q porraaa viu +04/10/2018,Sports_celeb,@Amanda_Leoa,😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖Omg omg @FCBarcelona 🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈 +04/10/2018,Sports_celeb,@Amanda_Leoa,Let’s go Barca please @FCBarcelona 😵😖😖😖😖😖 +04/10/2018,Sports_celeb,@Amanda_Leoa,No no no no Omg 😭😭😭😭😭😭😭😭😭😭😭😭 @FCBarcelona +04/10/2018,Sports_celeb,@Amanda_Leoa,This game 😳🔥 Barca vs Roma Omg @FCBarcelona +04/10/2018,Sports_celeb,@Amanda_Leoa,https://t.co/knOmqqprOS +04/10/2018,Sports_celeb,@Amanda_Leoa,https://t.co/GpePaWBJWN +04/08/2018,Sports_celeb,@Amanda_Leoa,@MoicanoRenato 👉🏼🏆 https://t.co/jl36FZNgdJ +04/08/2018,Sports_celeb,@Amanda_Leoa,RT @ussoccer_wnt: .@alexmorgan13's last 13 #USWNT games: ⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️ https://t.co/MHqawI0cSD +04/08/2018,Sports_celeb,@Amanda_Leoa,Pic of the night @chilipeppers foto da noite #ufc223 https://t.co/x9lWYxiNaf +04/07/2018,Sports_celeb,@Amanda_Leoa,Awesome push today 🦁 O treino hj foi massa. #conditioning #preparacaofisica #newyork #dogpound #ufc223 @AdrianaLima… https://t.co/e3iSyM0kmA +04/07/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: Nunes vs Pennington in Rio for the belt! + +@Amanda_Leoa vs @RockyPMMA #UFC224 https://t.co/s6VNGviK5B" +04/07/2018,Sports_celeb,@Amanda_Leoa,@SpeedwayStores my go to destination for @DrinkBODYARMOR #SuperiorHydration #UFC223 https://t.co/UB73qqydXn +06/19/2018,Sports_celeb,@MieshaTate,The best feeling ever https://t.co/VxYsVwZdJr +06/19/2018,Sports_celeb,@MieshaTate,@mrducati813 @AJukwildcats @ufc 😂 I don’t know why this was so funny to me but I laughed out loud for real +06/19/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: I want to wish my boss @campbellcombate a Very Happy & Healthy Birthday. He’s next to me in this Photo Alongside the re… +06/18/2018,Sports_celeb,@MieshaTate,Thank you! https://t.co/n4Ac5aF7Kk +06/18/2018,Sports_celeb,@MieshaTate,I should be there in some capacity I just haven’t figured out when and where! Will post when I get my schedule figu… https://t.co/BPbdIr8eQ8 +06/10/2018,Sports_celeb,@MieshaTate,"It was actually 71 hours total from start to finish, a really rough 3 days but she’s so worth it! She outlasted me… https://t.co/1OoMzudZV6" +06/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: ICYMI: @TheTruthJackson spoke with @MieshaTate and @realOCsports about his upcoming fight with CM Punk at #UFC225 last n… +06/01/2018,Sports_celeb,@MieshaTate,Happy Belated Bday! https://t.co/ANbTeyQhvu +05/31/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""Neither one of us belong here"" - @TheTruthJackson tells @realOCsports & @MieshaTate that while he is seizing an opportu…" +05/30/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Simple question: Does #PunkvsJackson belong on the main card of #UFC225? Call and let @MieshaTate & @realOCsports at 84… +05/30/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @realOCsports and @MieshaTate! + +Joined by @TheTruthJackson at 6:30p ET plus @Forre…" +05/30/2018,Sports_celeb,@MieshaTate,Thank you!! https://t.co/5X6uFuCbGQ +05/26/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: Love it Thank You ❤️ https://t.co/gAb00gRusB +05/26/2018,Sports_celeb,@MieshaTate,https://t.co/kVvCFDikJp +05/25/2018,Sports_celeb,@MieshaTate,RT @DandoisCindy: Well... let’s hope that by this way we can finally have our division and that one day I can acclompish my dream to fight… +05/25/2018,Sports_celeb,@MieshaTate,"RT @DandoisCindy: Dream big... a 145lbs @UFC_TUF , a division ready to grow and real featherweights to face @criscyborg in the future... I…" +05/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@Ealvarezfight to @MieshaTate and @realOCsports: For my own legacy, I want to defeat Khabib, then redeem my loss agains…" +05/25/2018,Sports_celeb,@MieshaTate,RT @MMAjunkie: Miesha Tate: Raquel Pennington would've felt 'lifetime of regret' for quitting at UFC 224 https://t.co/hKCtVYkrHy +05/14/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: ICYMI: @MieshaTate told @realOCsports and @Michael_Stets that she had no issue with Raquel Pennington's corner sending h… +05/14/2018,Sports_celeb,@MieshaTate,"Yea but it’s called fighting for a reason, am I right or am I right? https://t.co/3SDOhgU3C8" +05/14/2018,Sports_celeb,@MieshaTate,"RT @MMAjunkie: New edition of @MMAjunkieRadio with guests Miesha Tate (@MieshaTate), Dan Henderson (@danhendo) and Mauro Ranallo (@mauroran…" +05/14/2018,Sports_celeb,@MieshaTate,No that’s not what happened I said I was done with fighting all together AFTER the fight. I knew I was done competi… https://t.co/FHUGAxgP3o +05/13/2018,Sports_celeb,@MieshaTate,Happy Mother’s Day to my one and only Mama. Nobody will know the sacrifices she made to help me be the woman I am t… https://t.co/nsieZv1erg +05/13/2018,Sports_celeb,@MieshaTate,"Correction, I never said I quit I said I realized I didn’t want to fight anymore as in retire, I didn’t feel at hom… https://t.co/kIadIC5e0j" +05/13/2018,Sports_celeb,@MieshaTate,"RT @LaurenMurphyMMA: Yes @MieshaTate +Physical injuries heal. Quitting is a pain that lasts forever. We don’t get these moments back. I wou…" +05/13/2018,Sports_celeb,@MieshaTate,@WMMANews Thanks for the audio clip +05/13/2018,Sports_celeb,@MieshaTate,"Correction, I said I was done with fighting after the fight concluded not during the fight or between rounds. https://t.co/DiMLyW02ku" +05/13/2018,Sports_celeb,@MieshaTate,Is that what she said? I couldn’t hear the audio?? https://t.co/DWdHXQy2UJ +05/13/2018,Sports_celeb,@MieshaTate,What a great fight so far ladies!! @RockyPMMA vs @Amanda_Leoa #ufc224 @ufc +05/13/2018,Sports_celeb,@MieshaTate,Great start to #ufc224 oooowee!! @ufc #knockouts +05/13/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""7 pounds over as a professional in the UFC? That's like me showing up with no material for 45 minutes."" -- @madflavor…" +05/12/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Want #UFC224 coverage? We've got your preshow from 6-8p ET on @siriusxm RUSH 93 with @MieshaTate and @RyanMcKinnell plu… +05/12/2018,Sports_celeb,@MieshaTate,We Rollin!!!!! @MMAonSiriusXM https://t.co/E56vF4qWTL +05/09/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/XHYu0oAKf4 +05/07/2018,Sports_celeb,@MieshaTate,"RT @fightnet: Our Women's Week kicks off for ""UFC in 60!"" See the best of @MieshaTate on at 6 p.m. ET on @fightnet! https://t.co/6xoNGA3OUJ" +05/05/2018,Sports_celeb,@MieshaTate,Aw thank you it was an honor to speak in front of all of you! https://t.co/4PodTqYmqt +05/05/2018,Sports_celeb,@MieshaTate,RT @peta: @MieshaTate BREAKING: #MexicoCity officially banned dolphinariums today 💙🐬 RT if you want ALL cities to ban them! https://t.co/8I… +05/05/2018,Sports_celeb,@MieshaTate,Thank you!! 🤗 https://t.co/0dIcHUwwT2 +05/03/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about week 35 of her 3rd trimester! Find out what kind of people are getting on her nerves, why she's con…" +05/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""I'm turning my focus to Nate ... I think the Khabib fight is the right one to make but the Nate fight is out there to b…" +05/02/2018,Sports_celeb,@MieshaTate,This poor guy lol 😳😳😳 https://t.co/QkGU2IHbi7 +05/02/2018,Sports_celeb,@MieshaTate,Well tell us how you really feel @francis_ngannou!! 😂👌 https://t.co/Dgn1czzyGj +05/02/2018,Sports_celeb,@MieshaTate,This weather got me like.... #VegasWeather https://t.co/syfcLeKbZ1 +04/29/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@LeslieSmith_GF tells @MieshaTate & @RyanMcKinnell that the UFC gave her a discretionary bonus immediately after she ad… +04/25/2018,Sports_celeb,@MieshaTate,That was a great interview thank you @francis_ngannou!! https://t.co/5KVbwR9aAL +04/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@thefrankmir tells @RyanMcKinnell & @MieshaTate he is a fan of the tournament style in @BellatorMMA, how he fights at h…" +04/22/2018,Sports_celeb,@MieshaTate,"RT @MMAWeeklycom: #KevinLee Brutalizes Edson Barboza by TKO, Calls for #KhabibNurmagomedov Next https://t.co/Qrwhi4V3Y6 #UFCAtlanticCity" +04/22/2018,Sports_celeb,@MieshaTate,I signed these gloves for charity! There’s these plus lots of other great auction items for the Nevada #SPCA https://t.co/zbHQ2pghUD +04/19/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET on @siriusxm RUSH 93 with @RJcliffordMMA & @MieshaTate plus guest @RickySimonUFC at 7:3… +04/19/2018,Sports_celeb,@MieshaTate,I really have no idea is the right answer?? Anybody have ideas? https://t.co/OxA8BB0QUI +04/19/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about her 3rd trimester! Find out how she deals with the sweet cravings, what her birth plan is, and see…" +04/19/2018,Sports_celeb,@MieshaTate,Had a lot of fun! https://t.co/AWGcrle2Ba +04/15/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: I’m ok with my Draw. I fought hard won the first two but lost the third. My opponent fought tuff and well. Back in the… +04/14/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: Wrapped up and ready. Waiting on my turn. Tune in to @Univision & @univisiondeportes LET’S GET IT!! @combateamericas @C… +04/12/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about her 2nd trimester! What do you think she says her best pregnancy hack was? 😉 Also, find out what sh…" +04/12/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""I think this is the most humble comment I've ever heard come out of Ronda Rousey's mouth ... this is probably the best…" +04/12/2018,Sports_celeb,@MieshaTate,Aww! You need to get one or two more though! They are very social they need other chicks 🐥 https://t.co/QDJqtz4gjJ +04/12/2018,Sports_celeb,@MieshaTate,Inspired by the dark line on my tummy from pregnancy their names are Linea and Negra 😂🤗 https://t.co/Vk2D9tgx8V +04/11/2018,Sports_celeb,@MieshaTate,Happy #NationalPetDay!! 🐤 https://t.co/zsrzP02jp0 +04/09/2018,Sports_celeb,@MieshaTate,RT @notsleeeping: @MMAonSiriusXM @MieshaTate @RyanMcKinnell @SIRIUSXM Big week for Miesha! She manages @Serranosisters who fights next we… +04/07/2018,Sports_celeb,@MieshaTate,No but I will be tomorrow for the pre fight show https://t.co/ekNQwDQOlT +04/05/2018,Sports_celeb,@MieshaTate,Aww thank you Mike 🙏💜 https://t.co/CHGGR3g7ne +03/24/2018,Sports_celeb,@MieshaTate,RT @Dynamitedan808: Time to go to WAR again! Let’s do this June 9th Chicago 👊🏽 @ufc #ufc225 https://t.co/MZMT8TsS1t +03/24/2018,Sports_celeb,@MieshaTate,RT @WADBODCROSSFIT: Join us with @mieshatate at musclemaker_lasvegas today!!! We will be there from 12PM-4PM! https://t.co/zTW6Huvrvw +03/24/2018,Sports_celeb,@MieshaTate,😍 https://t.co/HZV0wF0NaB +03/22/2018,Sports_celeb,@MieshaTate,#ThursdayThoughts https://t.co/To3fo4UaKy +03/22/2018,Sports_celeb,@MieshaTate,RT @juicyj_erosa: An awesome day. The #ao8team teamed up to help feed the homeless. Thankful to have been apart of this. #AO8 https://t.co/… +03/22/2018,Sports_celeb,@MieshaTate,RT @bland24: Cooking with former Champ @MieshaTate and her awesome team today! They cooked some amazimg food and showed our homeless frien… +03/22/2018,Sports_celeb,@MieshaTate,Wow!! I’m honored! https://t.co/JesFpz9aU9 +03/19/2018,Sports_celeb,@MieshaTate,"RT @DocEdwards5: Awesome time at the pre screening of @tombraidermovie w @mieshatate and @francis_ngannou @francisngannou_mmapage +#tombraid…" +03/19/2018,Sports_celeb,@MieshaTate,RT @KevinHarvick: Disappointed in myself for a bone head move 2 years in a row @ACSupdates. Proud of my team for another fast car and we mo… +03/18/2018,Sports_celeb,@MieshaTate,RT @KHIManagement: Set your alarms!! @KevinHarvick will be on @SportsCenter at 9:30 a.m. ET tomorrow morning. Starting race day early!! +03/18/2018,Sports_celeb,@MieshaTate,Pretty sure it’s MieshaTateUFC https://t.co/GO7cfWpTe9 +03/17/2018,Sports_celeb,@MieshaTate,Happy St Patty’s Day everyone!! #happystpatricksday https://t.co/2N4VfNH2mk +03/17/2018,Sports_celeb,@MieshaTate,@TombRaiderMovie opens today! I watched last night with some friends and it was action packed #TombRaiderMovie https://t.co/viwI0McjrA +03/16/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@SugaRashadEvans says his career on the line at UFC 225. + +Here is @lionheartsmith's response, speaking to @realOCsports…" +03/16/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@lionheartsmith: I went up to Light Heavyweight for ""100% safety"". + +Anthony explains to @realOCsports & @MieshaTate why…" +03/16/2018,Sports_celeb,@MieshaTate,"Such kind words, really touched my 💜 thank you!! https://t.co/GMYLWJVWhy" +03/14/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: With Cynthia Calvillo receiving a 9 month suspension and a fine due to Marijuana use, do you think it's time to rewrite…" +03/14/2018,Sports_celeb,@MieshaTate,Thank you so much!! 💓 fans like you! https://t.co/RedzGnGuFi +03/14/2018,Sports_celeb,@MieshaTate,😂 https://t.co/3xONRobd0o +03/12/2018,Sports_celeb,@MieshaTate,I went to @DessertGallery!! Very good! https://t.co/jmADJ34j8m +03/11/2018,Sports_celeb,@MieshaTate,RT @DirtySouthTV: @andrewAXSTV @AXSTVFights @CheyWarPrincess @MieshaTate @SugarRaySefo Cheyanne fought a VERY game opponent that would have… +03/11/2018,Sports_celeb,@MieshaTate,When are people gonna learn not every photo was taken right when it’s posted... this is an old photo clearly https://t.co/4qYeVcwNCZ +03/11/2018,Sports_celeb,@MieshaTate,Aww that’s awesome https://t.co/U0uaLaoMNj +03/11/2018,Sports_celeb,@MieshaTate,I don’t think we disappointed! Thanks for having @CheyWarPrincess on the card! https://t.co/XN0RWuDSVX +03/10/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: YES! Congratulations to my Girl @CheyWarPrincess on her 3rd rd TKO Win Just now. Winning her MMA Pro Debut. That’s the… +03/10/2018,Sports_celeb,@MieshaTate,Aw thanks Mike! https://t.co/tMqAumP8wi +03/09/2018,Sports_celeb,@MieshaTate,So I’m in Houston cornering @CheyWarPrincess tonight and I’m wondering where the best cupcakery might be? Any suggestions?! +03/08/2018,Sports_celeb,@MieshaTate,RT @camposgrappling: #UNLV Wrestling is at Nationals now! 👊🏽👊🏽👊🏽 https://t.co/NGxUDFdMnp +03/08/2018,Sports_celeb,@MieshaTate,Good to know! Thanks https://t.co/ywmoYsdqgo +03/07/2018,Sports_celeb,@MieshaTate,"RT @marcsavard: @officialhammer Was working w/ @BryanCaraway again. He was ready. Pressured, had a good fight, thought he won Rd 1 and 3.…" +03/07/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET on @siriusxm RUSH 93 w/ @realOCsports & @MieshaTate! + +Guests: + +@MoTownPhenom 6:30p ET…" +03/07/2018,Sports_celeb,@MieshaTate,"So I’m thinking about starting a pregnancy blog, guys I’m sure you could care less lol but ladies what are your tho… https://t.co/MukfaPQdI8" +03/06/2018,Sports_celeb,@MieshaTate,"Two years ago, life is a crazy ride! https://t.co/sWJiv4wwzP" +03/05/2018,Sports_celeb,@MieshaTate,"I don’t think @BryanCaraway lost, he won rounds 1 & 3 IMO. The judging was consistently terrible for #UFC222. https://t.co/71DbNY08wg" +03/05/2018,Sports_celeb,@MieshaTate,Really appreciate that! https://t.co/E0flJ62a3c +03/05/2018,Sports_celeb,@MieshaTate,Aw thank you! https://t.co/ziIVuiSdWF +03/04/2018,Sports_celeb,@MieshaTate,"Hey #UFC222 fighters, don’t let it go to a decision! 🙄" +03/04/2018,Sports_celeb,@MieshaTate,All these Split decisions are BS shows the poor consistency in judging!!! +03/04/2018,Sports_celeb,@MieshaTate,FIRST bump in the road 😂😂😂 obviously you didn’t follow my fight career. Probably the most ignorant comment I’ve hea… https://t.co/fHkvwP8Mdl +03/03/2018,Sports_celeb,@MieshaTate,Curious where you guys stand? https://t.co/ejxCbv6XXC +03/03/2018,Sports_celeb,@MieshaTate,I’m not being negative @JonnyBones just honest. I hope you can respect that. I think you’re an amazing fighter and… https://t.co/1CJch50kI9 +03/03/2018,Sports_celeb,@MieshaTate,"@JonnyBones I’m really not trying to be negative Jon, just honest. I think you’re a great fighter and as a person I… https://t.co/17mIt6WU2a" +03/03/2018,Sports_celeb,@MieshaTate,Hello @AbsintheVegas!! https://t.co/yGpLWssTQ7 +03/02/2018,Sports_celeb,@MieshaTate,"@jonnybones u make things tougher 4 urself, I hope u can figure it out this time but I’m not holding my breath. Sup… https://t.co/6UkM65fO6U" +03/02/2018,Sports_celeb,@MieshaTate,Hey Las Vegas!! I’ll be on the @FOX5Vegas promoting the new UNLV wrestling team we have started again! Check it out… https://t.co/bLa6kAhkr8 +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAFighting: Miesha Tate: ‘The faith that I have in Jon Jones has been lost’ https://t.co/mM1D4JBAQO https://t.co/J5WWw5X0jJ +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Who fights again in the UFC first? Call and vote! 844-796-7874 @MieshaTate @realOCsports +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Do you believe Jon Jones as Andy Foster does? https://t.co/dhnhPyyp94 @MieshaTate @realOCsports +02/27/2018,Sports_celeb,@MieshaTate,.@HeatherHardyBox says Bellator is not to blame for the quality of her fight with @anajulaton at #Bellator194 and i… https://t.co/czSTJwDG4P +02/24/2018,Sports_celeb,@MieshaTate,Thank you!! https://t.co/D9G8e3MLDp +02/24/2018,Sports_celeb,@MieshaTate,Sharing my first #BabyBump pic 🤗🤰🏻 https://t.co/TfS1s19rxo +02/24/2018,Sports_celeb,@MieshaTate,Thank you I appreciate that https://t.co/OEaUlvELaP +02/23/2018,Sports_celeb,@MieshaTate,"RT @bt13strikeforce: @MieshaTate-""I am pushed by those who believe in me but motivated by those who don't"" #ThrowbackThursday #StrikeforceC…" +02/23/2018,Sports_celeb,@MieshaTate,@windmi11s Yea I’ve done my research and I don’t feel my homemade kombucha will be harmful. I’ve been drinking it w… https://t.co/LKF6Ikhucj +02/23/2018,Sports_celeb,@MieshaTate,That was so fun!! Thank you @GoldenKnights!! https://t.co/JsnevRyRaI +02/23/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Does Ronda Rousey deserve to be inducted into the International Sports Hall of Fame? @MieshaTate weighs in and says the… +02/21/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: If you could pick one of the below to have fought in the #UFC in their prime, who would it be? Call and vote! 844-796-…" +02/21/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Which current MMA stars would YOU like to see head to the UFC who haven't yet fought in the promotion? Dial away at 844… +02/17/2018,Sports_celeb,@MieshaTate,@karlmillward Lol I can’t promise but that is a pretty damn good choice for a ringtone 😂 +02/17/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: So what are the chances @UrijahFaber returns to the octagon for another fight? He gives @MieshaTate and @realOCsports t… +02/14/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: After seeing the punishment Yoel Romero (for missing weight) and Li Jianliang (for eye-gouging) received at #UFC221, wou…" +02/08/2018,Sports_celeb,@MieshaTate,😍🙌🏼 https://t.co/XIFUW0J8Rs +02/08/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@MeansTim tells @MieshaTate & @realOCsports that Dana White agreed that he beat Sergio Moraes & that fighting in Brazil… +02/08/2018,Sports_celeb,@MieshaTate,"I wanna see a more challenging fight for #Cyborg, I’m not convinced her opponent has what it takes to fill main eve… https://t.co/NwVOj9rlxm" +02/08/2018,Sports_celeb,@MieshaTate,Remember it’s $65 now https://t.co/3tnslVX8P4 +02/08/2018,Sports_celeb,@MieshaTate,That’s what I think https://t.co/Dnxi8sM5fi +02/07/2018,Sports_celeb,@MieshaTate,😮 https://t.co/zMlKKwxbNn +02/07/2018,Sports_celeb,@MieshaTate,"Call in, let us know we wanna hear your thoughts https://t.co/bgXWlYZEms" +02/07/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: +@Cowboycerrone 6:30p ET…" +02/07/2018,Sports_celeb,@MieshaTate,Personally I like #MJ1 https://t.co/wSisDoG1zr +02/04/2018,Sports_celeb,@MieshaTate,Aww thank you! I have all the faith in the world in you! https://t.co/Ikecba8bMO +02/03/2018,Sports_celeb,@MieshaTate,I wonder if I’ll look less angry in this one?! #EAUFC3 https://t.co/gi9VzBEkC5 +02/02/2018,Sports_celeb,@MieshaTate,"RT @RJcliffordMMA: For those who missed MMA Tonight yesterday: + +Hosted by @MieshaTate +Interview w/ @MikeMav22 +Surprise call from @BrianSt…" +02/02/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@BrianStann says despite the new fad of defending fighters who fail drug tests, the bottom line is fighters who use PED…" +02/02/2018,Sports_celeb,@MieshaTate,"It’s not sad it’s called news, which is what we cover on our radio show 🙄 https://t.co/nzUznYuh56" +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: MMA Tonight is LIVE with @MieshaTate & @RJcliffordMMA from 6-8p ET on @siriusxm RUSH 93. @MikeMav22 joins us at 7:30p E… +02/01/2018,Sports_celeb,@MieshaTate,That was epic! @BrianStann thanks for the call! https://t.co/kJ34OpSIpH +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Would @MieshaTate be open to a @WWE run? Would she work with Ronda Rousey in the world of pro-wrestling? Miesha tells… +02/01/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/Z4UAokf4HW +02/01/2018,Sports_celeb,@MieshaTate,😬😊 https://t.co/GyrGXtZAyE +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@MieshaTate tells @realOCsports that the biggest advantage DC will have over Stipe is cardio. #UFC226 https://t.co/8Yr… +02/01/2018,Sports_celeb,@MieshaTate,😳 https://t.co/9R6WEaoIlJ +01/31/2018,Sports_celeb,@MieshaTate,Looking forward to it! https://t.co/4YWBkP5WKy +01/31/2018,Sports_celeb,@MieshaTate,"Well I know what I think, you guys? https://t.co/a5cW735LU5" +01/30/2018,Sports_celeb,@MieshaTate,Thanks! I had fun! https://t.co/6YMUGq1hL6 +01/28/2018,Sports_celeb,@MieshaTate,"Guess who’s gonna be on @sharktankabc tonight!!! Yep, this girl! Checkout the episode I did with @showerpill 9pm ES… https://t.co/Eoh9VBvlL1" +01/27/2018,Sports_celeb,@MieshaTate,RT @ShowerPill: Spoiler alert: our girl @MieshaTate former UFC Champion will be making a cameo during ShowerPill’s epic Shark Tank appearan… +01/27/2018,Sports_celeb,@MieshaTate,RT @ranjori1: @ufc RT @ShowerPill: Spoiler alert: our girl @MieshaTate former UFC Champion will be making a cameo during ShowerPill’s epic… +01/26/2018,Sports_celeb,@MieshaTate,RT @ekohmusic: Huge THANK YOU to @MMAonSiriusXM & @MieshaTate for playing my song on the show! ❤️❤️❤️ https://t.co/bnhR19KfQB +01/25/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Did you like the music that we just came back from break with? Check out Ekoh's other music here and support! https://… +01/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@MieshaTate explains to @realOCsports why a Cyborg-Nunes matchup is all risk, low reward for Cris Cyborg, at least when…" +01/25/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Does a Stipe Miocic vs. Daniel Cormier superfight make sense? @MieshaTate tells @realOCsports that she thinks so! https… +01/24/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/sy1uDAhvmS +01/24/2018,Sports_celeb,@MieshaTate,I just Love all the @Cirque shows next time you gotta check out #Ka or #MJone https://t.co/tEnm3NEGvc +01/24/2018,Sports_celeb,@MieshaTate,Warrior https://t.co/vqQENcoEso +01/21/2018,Sports_celeb,@MieshaTate,Now THAT’s a day to celebrate! https://t.co/7fwAdcksUe +01/20/2018,Sports_celeb,@MieshaTate,RT @Gustavo11Lopez: Blessed to have these two in my life @ao8management. @mieshatate @robalob. we have a bright future ahead of us. #mma #w… +01/17/2018,Sports_celeb,@MieshaTate,"Tell us on the poll, how much 💰 will you fork out? https://t.co/THZO8iQLCj" +01/17/2018,Sports_celeb,@MieshaTate,Honest opinions? How much 💰are you willing to fork out? https://t.co/THZO8iQLCj +01/17/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET w/ @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: + +@Jon_Anik at 7:30p ET + +Y…" +01/17/2018,Sports_celeb,@MieshaTate,😍 https://t.co/hyxNjuXcVa +01/13/2018,Sports_celeb,@MieshaTate,"So meet my @MMAonSiriusXM producer Josh, he has decided to take my 30 day BYOC fitness challenge and here is his fi… https://t.co/QPsRZLMvBT" +01/11/2018,Sports_celeb,@MieshaTate,"I don’t think anybody is really ready for Cyborg but she needs contenders, it’s either @DandoisCindy or… https://t.co/udA9FFYhYg" +01/11/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@MieshaTate explains to @realOCsports why she's in favor of a Cyborg-Nunes fight: ""If Holly could hurt Cyborg, I think…" +01/11/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@teameganmma tells @MieshaTate & @realOCsports that he's definitely not finished with #MMA & wants to get back in being… +01/11/2018,Sports_celeb,@MieshaTate,RT @Country_girljj: @MieshaTate I also honestly believe Cindy would fare very well against cris. She's beaten some well named people at 145… +01/11/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""The more you sweat in training, the less you bleed in war."" -- @HurricaneShaneB #UFC220 https://t.co/Ho9MQ2Bm3c" +01/11/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Want to get in shape as our own @MieshaTate guides you along? Check out her fitness program here! @realOCsports will b… +01/10/2018,Sports_celeb,@MieshaTate,Thank you 😊 https://t.co/41SG0mQrYq +01/10/2018,Sports_celeb,@MieshaTate,To say a black belt doesn’t mean anything makes you sound ignorant. It’s not everything but it’s something. No one… https://t.co/JWwuosCxP4 +01/10/2018,Sports_celeb,@MieshaTate,It’s simple Correia had been winning and Holly had been losing https://t.co/6ctDwB78RG +01/06/2018,Sports_celeb,@MieshaTate,I think because a belt is good for promotion? I don’t really know but think about it they have never had another 14… https://t.co/yG3Xa4PG7d +01/06/2018,Sports_celeb,@MieshaTate,That’s because the ufc hasn’t officially opened the 145lb division yet. They tried with Holly vs Germaine but that… https://t.co/8hjpgDFLCB +01/06/2018,Sports_celeb,@MieshaTate,Shots fired https://t.co/CSKptaJT5c +01/06/2018,Sports_celeb,@MieshaTate,Yes!!!! Great work!! https://t.co/Knm9BEXzEo +01/06/2018,Sports_celeb,@MieshaTate,"RT @WMMARankings: Miesha Tate says Megan Anderson isn’t ready for Cris Cyborg: “She’s a bit green at this point, not experienced enough yet…" +01/05/2018,Sports_celeb,@MieshaTate,"RT @DanFromOR: #UFC222 4 w145lb Tournament + +19-1 Cyborg vs 15-4 Nunes +7-2 Anderson vs 10-3 Dandois + +#ChampVsChamp & #Rematch https://t.co/…" +01/04/2018,Sports_celeb,@MieshaTate,"RT @WMMARankings: Cindy Dandois: “I really appreciate RIZIN, I will fight anyone including Gabi Garcia” https://t.co/QsmzBCWVUa https://t.c…" +01/04/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@DandoisCindy tells @MieshaTate & @realOCsports that she deserves a fight with @criscyborg more than @MeganA_mma becaus… +01/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""A bear is dumb as hell!"" -- @MoTownPhenom to @MieshaTate & @realOCsports on why he's not impressed with Khabib wrestlin…" +01/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: +@MoTownPhenom 6:30p ET…" +01/03/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Who do YOU want to see Cris Cyborg fight next after #UFC219? Call and vote! 844-796-7874 @MieshaTate @realOCsports +01/01/2018,Sports_celeb,@MieshaTate,Happy New Year! https://t.co/PPabxcyIPI +01/01/2018,Sports_celeb,@MieshaTate,@HollyHolm doesn’t duck fights she’s literally fought all the best never backed down from a fight. If she didn’t fi… https://t.co/mXiYkoLqRS +01/01/2018,Sports_celeb,@MieshaTate,Yes and it was a CLOSE loss to a top 10 UFC bantam weight! https://t.co/lT99D7Rsw9 +01/01/2018,Sports_celeb,@MieshaTate,"Well I think I would have like to see her throw more push kicks to the body and to the legs, up her strike count an… https://t.co/9cEa1YqjYo" +12/31/2017,Sports_celeb,@MieshaTate,Same https://t.co/3taPtbj813 +12/31/2017,Sports_celeb,@MieshaTate,I love this #cupofnoodle https://t.co/a9RgkjTQIV +12/31/2017,Sports_celeb,@MieshaTate,RT @DandoisCindy: Congrats To @criscyborg! How About the number one 155er vs the number one 145er next???.... or Cris could fight @MeganA_m… +12/31/2017,Sports_celeb,@MieshaTate,I don’t care the results even Holly is my Hero +12/31/2017,Sports_celeb,@MieshaTate,@HollyHolm the first woman to win a round against #cyborg?? #ufc219 @ufc +12/31/2017,Sports_celeb,@MieshaTate,I’m really excited for #CyborgvsHolm I like them both but pulling for the underdog here. #AndNew +12/31/2017,Sports_celeb,@MieshaTate,Agreed! Thank you! https://t.co/P58mmtho5W +12/30/2017,Sports_celeb,@MieshaTate,"RT @WMMARankings: Miesha Tate on Cindy Dandois: “She’s constantly underestimated and criticized, but she’s the most game fighter I ever met…" +12/29/2017,Sports_celeb,@MieshaTate,RT @WMMARankings: Miesha Tate set to corner Cindy Dandois for her lightweight debut at Friday’s RIZIN event https://t.co/FWLwSPTdLg https:/… +12/27/2017,Sports_celeb,@MieshaTate,RT @InvictaFights: We're kicking off the new year with an incredible card! Don't miss #InvictaFC27 this January 13th LIVE on @UFCFightPass!… +12/25/2017,Sports_celeb,@MieshaTate,😂😂😂 https://t.co/8sgim0rLgW +12/22/2017,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@AriannyCeleste to @MieshaTate & @realOCsports on the biggest misconception some people might have about Dana White: ""I…" +07/02/2018,Sports_celeb,@JoelEmbiid,MOOD #TheProcess https://t.co/uwsCLVCSth +06/30/2018,Sports_celeb,@JoelEmbiid,The Lakers are FOREVER gonna be Kobe’s and Magic’s team.... Process that +06/30/2018,Sports_celeb,@JoelEmbiid,Lmao ok https://t.co/AnzzVKiDeS +06/30/2018,Sports_celeb,@JoelEmbiid,Real Madrid needs to go get my Cameroonian buddy Mbappe... He’s a beast #HalaMadrid +06/30/2018,Sports_celeb,@JoelEmbiid,ALLEZ LES BLEUS +06/27/2018,Sports_celeb,@JoelEmbiid,THIS IS NUTS!!!!!! WOW GERMANY +06/26/2018,Sports_celeb,@JoelEmbiid,Excited to finally reveal that I’m on the cover of @easportsnba #NbaLive19 https://t.co/q1yWwBH1gc +06/23/2018,Sports_celeb,@JoelEmbiid,OMG TONY KROOS!!!! WHAT A GOAL #HalaMadrid +06/23/2018,Sports_celeb,@JoelEmbiid,This is such a great game but Germany being almost out is nuts +06/22/2018,Sports_celeb,@JoelEmbiid,#StriveforGreatness https://t.co/2EYenrqeDy +06/22/2018,Sports_celeb,@JoelEmbiid,Don’t compare Ayton to me either... I play DEFENSE +06/22/2018,Sports_celeb,@JoelEmbiid,Keep my name out of this lol +06/21/2018,Sports_celeb,@JoelEmbiid,Cash considerations +06/21/2018,Sports_celeb,@JoelEmbiid,Au moins la France a gagné aujourd'hui #AllezLesBleus +06/21/2018,Sports_celeb,@JoelEmbiid,Diego Maradona and Leo Messi don’t deserve this #HalaMadrid +06/21/2018,Sports_celeb,@JoelEmbiid,I’m deadass about to cry 😭😭😭 +06/21/2018,Sports_celeb,@JoelEmbiid,I feel bad for Messi 😢😢 +06/17/2018,Sports_celeb,@JoelEmbiid,Wow Germany losing is nuts +06/09/2018,Sports_celeb,@JoelEmbiid,Trust The Process!!!! Find a new slant @KingJames +06/07/2018,Sports_celeb,@JoelEmbiid,KD IS NOT NICE +06/07/2018,Sports_celeb,@JoelEmbiid,SIPS......... +06/01/2018,Sports_celeb,@JoelEmbiid,He’s really tryna take that Shaqtin A fool MVP from me lmao +06/01/2018,Sports_celeb,@JoelEmbiid,Jr is on that henny lol https://t.co/0GBhgXjVyt +05/30/2018,Sports_celeb,@JoelEmbiid,Fun night on Twitter lmao.. All jokes asides I don’t believe the story. That would just be insane +05/30/2018,Sports_celeb,@JoelEmbiid,Lmao CJ.. you just gotta trust it https://t.co/Igl0MZouzQ +05/30/2018,Sports_celeb,@JoelEmbiid,I’m upset @drake +05/30/2018,Sports_celeb,@JoelEmbiid,Joel told me that @samhinkie IS BETTER AND SMARTER THAN YOU @AlVic40117560 #BurnerAccount +05/30/2018,Sports_celeb,@JoelEmbiid,BRUH https://t.co/hv59PDxlgY +05/28/2018,Sports_celeb,@JoelEmbiid,Now we’re on the same couch lol +05/28/2018,Sports_celeb,@JoelEmbiid,Amazing what Bron has been able to do... That’s tough +05/28/2018,Sports_celeb,@JoelEmbiid,"RT @DrewHanlen: If @JoelEmbiid got all the calls that LeBron gets, he’d average 40 PPG!" +05/28/2018,Sports_celeb,@JoelEmbiid,JAYSON TATUM 👀👀👀 +05/26/2018,Sports_celeb,@JoelEmbiid,Real Madrid better not sell Bale this summer.. he’s a beast and we all knew it #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Man bun had one of the sickest goals ever #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Omg Holy shit!!! That was one of the best goals I’ve ever seen OMG #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,What a goal haha @realmadrid #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Pusha T couldn’t #DrakeIsTheGOAT https://t.co/UWtSkGsi9j +05/26/2018,Sports_celeb,@JoelEmbiid,I do HATE my couch right now +05/26/2018,Sports_celeb,@JoelEmbiid,I was gonna tweet about ponytail but y’all are gonna ask me about my lovely couch lmao😂😂😂 +05/22/2018,Sports_celeb,@JoelEmbiid,Man bun is in NBA just to get dunked on +05/10/2018,Sports_celeb,@JoelEmbiid,Not the way I wanted it to end but Hell of a series... Much respect to Boston and those fans.. y’all made it fun… https://t.co/iBhZvhy49I +04/14/2018,Sports_celeb,@JoelEmbiid,It’s about that time!!! #Playoffs #PhantomofTheProcess https://t.co/zq8dPrgk0F +04/12/2018,Sports_celeb,@JoelEmbiid,“No one cared who I was until I put on the mask”.... The Phantom of The Process https://t.co/JOkQxCAxYA +04/11/2018,Sports_celeb,@JoelEmbiid,On the way to winning another Champions league... Keep it going @realmadrid #HalaMadrid +04/11/2018,Sports_celeb,@JoelEmbiid,LETS F****** GO #HalaMadrid +04/11/2018,Sports_celeb,@JoelEmbiid,These champions league games have been insane... come on Madrid #HalaMadrid +04/07/2018,Sports_celeb,@JoelEmbiid,What a game!!!! #TheProcess +04/05/2018,Sports_celeb,@JoelEmbiid,Yes sir... Always gotta #TrustTheProcess @Phillies https://t.co/cAvW5GqSPt +04/01/2018,Sports_celeb,@JoelEmbiid,“Process” stop... I thought you were an ALL STAR https://t.co/MyZk9Lv5wg +04/01/2018,Sports_celeb,@JoelEmbiid,Babe are you single or nah? @rihanna +04/01/2018,Sports_celeb,@JoelEmbiid,Man am I high or these dudes are so hot from 3? Come on +04/01/2018,Sports_celeb,@JoelEmbiid,Sitting here high and watching the game like https://t.co/aTeHLdDaq9 +04/01/2018,Sports_celeb,@JoelEmbiid,THIS IS BRUTAL.... I’m literally trying to take my mind off this pain but Kansas is not helping #RockChalk +03/30/2018,Sports_celeb,@JoelEmbiid,I guess I gotta trust “The Process” that I’ve been preaching... Unfortunate freak accident but I’ll be more than fi… https://t.co/pAofaydSGs +03/28/2018,Sports_celeb,@JoelEmbiid,Baby bounce 💪🏽💪🏽 #NbaVote2017 #TheProcess https://t.co/LPpfzYrhZX +03/27/2018,Sports_celeb,@JoelEmbiid,So happy and proud of my brother... Great having you back!!! The future is bright #TheProcess https://t.co/O9ch4cvy3e +03/26/2018,Sports_celeb,@JoelEmbiid,@MarkelleF https://t.co/0XBZKhhj95 +03/26/2018,Sports_celeb,@JoelEmbiid,On a mission😤😤😤 #TheProcess https://t.co/vutmXUxd3q +03/25/2018,Sports_celeb,@JoelEmbiid,GAME OVER>>> ROCKCHALK JAYHAWK!!! What a game huh @JJRedick +03/25/2018,Sports_celeb,@JoelEmbiid,KANSAS BALL +03/25/2018,Sports_celeb,@JoelEmbiid,Come on KU #DukevsKansas +03/25/2018,Sports_celeb,@JoelEmbiid,This game was the talk of both towns tonight.. NOTHING TO SEE HERE. GOODNIGHT #TheProcess https://t.co/YqFPnaV0H6 +03/23/2018,Sports_celeb,@JoelEmbiid,🧐🧐EMBIID CURRY???? Btw 2 wins away for you #TheProcess https://t.co/euPtfRTmHn +03/23/2018,Sports_celeb,@JoelEmbiid,MOOD #TheProcess https://t.co/PcIHXYLulC +03/22/2018,Sports_celeb,@JoelEmbiid,COLIN COWARD.... Coach deserves a lot of credit #40wins #TheProcess https://t.co/HDFUdh3mKE +03/20/2018,Sports_celeb,@JoelEmbiid,Processing these TOs #TheProcess https://t.co/c7oMHIVJtT +03/19/2018,Sports_celeb,@JoelEmbiid,Helping my man @KevinHart4Real find a CourtSidekick so he can have someone other than me to talk to during the game… https://t.co/OzpcLdrEu7 +03/19/2018,Sports_celeb,@JoelEmbiid,This Nevada Cincinnati game is insane #MarchMadness +03/17/2018,Sports_celeb,@JoelEmbiid,Thanks for all the birthday wishes.. I love y’all... Great win tonight #TheProcess https://t.co/9buVyqz0Dk +03/11/2018,Sports_celeb,@JoelEmbiid,Aye that's my guy so looks like I might have to switch sports @CameronNewton you need a wide receiver? 👀👀👀 https://t.co/NWioDQooZh +03/11/2018,Sports_celeb,@JoelEmbiid,🔥🔥🔥🔥 https://t.co/wRWBDtcCM5 +03/07/2018,Sports_celeb,@JoelEmbiid,No bounce #TheProcess https://t.co/PzqzNaOZVp +03/06/2018,Sports_celeb,@JoelEmbiid,HALA MADRID #IciCEstPasPARIS +03/06/2018,Sports_celeb,@JoelEmbiid,Just build a new one https://t.co/SfzDWjNDn8 +03/05/2018,Sports_celeb,@JoelEmbiid,Man Sixers fans are the best.. Really appreciate y’all.. The love and the passion that y’all have is kinda insane b… https://t.co/dtb8VEng7t +03/03/2018,Sports_celeb,@JoelEmbiid,Great comeback win tonight #TheProcess https://t.co/Cb9gHTsbP8 +03/02/2018,Sports_celeb,@JoelEmbiid,It’s not what y’all think lol +03/02/2018,Sports_celeb,@JoelEmbiid,Trust The Process??? Always a great time playing against one of the best to ever play the game #summer2018goals https://t.co/4bY941yyRO +02/25/2018,Sports_celeb,@JoelEmbiid,🔥🔥🔥🔥🔥🔥🔥 #TheProcess https://t.co/An8dkMmJ5X +02/23/2018,Sports_celeb,@JoelEmbiid,No weakness!!!! What an ending out in Chi-Town #TheProcess https://t.co/PXeJ9PWBDy +02/22/2018,Sports_celeb,@JoelEmbiid,Let's get it!!! @HyperX ✖ #TheProcess #ad 🎮 https://t.co/V9Npptv1lY https://t.co/26J8BnyKB1 +02/19/2018,Sports_celeb,@JoelEmbiid,First All Star game and it was an amazing experience!! Learned a lot and decided not to troll tonight #TheProcess https://t.co/JT03oqGjNc +02/18/2018,Sports_celeb,@JoelEmbiid,How can you make a pass if all three balls are gone? https://t.co/o7Eunz0lBW +02/18/2018,Sports_celeb,@JoelEmbiid,"It’s not cheating, it’s called being smart lol https://t.co/FIVWSncFWV" +02/14/2018,Sports_celeb,@JoelEmbiid,"Désolé les français, ici c’est pas Paris #HalaMadrid" +02/14/2018,Sports_celeb,@JoelEmbiid,Haha Our season is not over #HalaMadrid +02/14/2018,Sports_celeb,@JoelEmbiid,Let’s go!!!!! CR7⚽️⚽️ HalaMadrid #GoalGoalGoal +02/14/2018,Sports_celeb,@JoelEmbiid,Hala Madrid +02/14/2018,Sports_celeb,@JoelEmbiid,Time to get back on track @realmadrid #HalaMadrid +02/13/2018,Sports_celeb,@JoelEmbiid,The GOAT @TJMcConnell #TheProcess https://t.co/usJMRri0Os +02/11/2018,Sports_celeb,@JoelEmbiid,Windmill shawtyyyy #TheProcess https://t.co/VMRr0r2fa2 +02/08/2018,Sports_celeb,@JoelEmbiid,Wow this is crazy lol.... The NBA is amazing +02/05/2018,Sports_celeb,@JoelEmbiid,Congrats to the Eagles on the Super Bowl #FlyEaglesFly +02/05/2018,Sports_celeb,@JoelEmbiid,OMG!!!!!! HOLY SHIT +02/05/2018,Sports_celeb,@JoelEmbiid,Wow big play!!!! +02/03/2018,Sports_celeb,@JoelEmbiid,Arsenal is cooking #Gunners +02/02/2018,Sports_celeb,@JoelEmbiid,What a game!!!! +01/29/2018,Sports_celeb,@JoelEmbiid,Tough loss #TheProcess https://t.co/OFBvSyGJX1 +01/27/2018,Sports_celeb,@JoelEmbiid,Another one #0Turnovers #TheProcess https://t.co/fYyv7K6z9s +01/26/2018,Sports_celeb,@JoelEmbiid,Excited to join the #DEWxNBA team with @kylekuzma and @Dennis1SmithJr for #MtnDewKickstart Rising Stars! Let’s get it! #TheProcess +01/22/2018,Sports_celeb,@JoelEmbiid,One more half to go #FlyEaglesFly +01/21/2018,Sports_celeb,@JoelEmbiid,Getting it done #TheResults https://t.co/QSpOXPOpm5 +01/19/2018,Sports_celeb,@JoelEmbiid,Fantastic day!!!! We got a great win and I became an ALL STAR.... I wanna thank all of you guys out there and the o… https://t.co/qQhJldg0xm +01/16/2018,Sports_celeb,@JoelEmbiid,The GOAT in front of Joel hyping up the crowd #BurnerAccount #TheProcess https://t.co/DWPB6KI4CJ +01/16/2018,Sports_celeb,@JoelEmbiid,RT @thibautcourtois: @JoelEmbiid #NBAVOTE +01/15/2018,Sports_celeb,@JoelEmbiid,"Last day, RT THIS FOR ONE LAST TIME. Appreciate the support. TRUST IT!!!! + +Joel Embiid #NBAVote" +01/15/2018,Sports_celeb,@JoelEmbiid,My guys @thibautcourtois @hazardeden10 #TheProcess #TheBlues https://t.co/LGJIhnSjIf +01/15/2018,Sports_celeb,@JoelEmbiid,RT @JusAnderson1: 🚨 #NBAVote @JoelEmbiid Retweet the Hell outta this... Thanks! 🚨 +01/15/2018,Sports_celeb,@JoelEmbiid,RT @paulpogba: One more day to go! RT to cast your #NBAVOTE for @JoelEmbiid +01/14/2018,Sports_celeb,@JoelEmbiid,RT @JuliusErving: Retweet to help send @joelembiid to the all-star game! #NBAVote +01/14/2018,Sports_celeb,@JoelEmbiid,FLY EAGLES FLY #PhillyVsEverybody https://t.co/FYlVGT8xEz +01/14/2018,Sports_celeb,@JoelEmbiid,#FlyEaglesFly On to the next one +01/11/2018,Sports_celeb,@JoelEmbiid,"RT @DidTheSixersWin: Star Wars ✖️ The Process + +#NBAVote @JoelEmbiid https://t.co/qOuA5oxH5j" +01/08/2018,Sports_celeb,@JoelEmbiid,RT @JoshShapiroPA: I’m hoping that day comes at the #NBAAllStar2018 game. @JoelEmbiid #NBAVote #sixers https://t.co/H3tiMj9l8n +01/06/2018,Sports_celeb,@JoelEmbiid,Glad we didn’t blow another lead.. Joel Embiid #NBAVote https://t.co/Iuwfz4AKz6 +01/05/2018,Sports_celeb,@JoelEmbiid,"RT @sixers: It's up to you... send @JoelEmbiid & @BenSimmons25 to LA for the @NBAAllStar Game! + +2-FOR-1 #NBAVOTE » https://t.co/1Y7M23uEqQ…" +01/05/2018,Sports_celeb,@JoelEmbiid,Joel Embiid #NBAVote https://t.co/GCgVwnQRDR +01/04/2018,Sports_celeb,@JoelEmbiid,Starting 2018 the right way #TheProcess https://t.co/Z2rfmFE4jA +12/29/2017,Sports_celeb,@JoelEmbiid,"RT @AndreDrummond: Everyone retweet this + + #NBAVote Andre Drummond" +12/29/2017,Sports_celeb,@JoelEmbiid,"RT @sixers: 🚨 1 RETWEET = 1 VOTE 🚨 + +#NBAVOTE @JoelEmbiid https://t.co/qQ7EeNXTA8" +12/29/2017,Sports_celeb,@JoelEmbiid,RT @MarkelleF: #NBAVote @JoelEmbiid @BenSimmons25 +12/28/2017,Sports_celeb,@JoelEmbiid,#NBAVote @BenSimmons25 +12/28/2017,Sports_celeb,@JoelEmbiid,Catching up with my brother @antogriezmann 🤙🏽🤙🏽🤙🏽 #Grizi https://t.co/snoBM7Mpnm +12/25/2017,Sports_celeb,@JoelEmbiid,Great first Christmas game and we got the win.. Merry Christmas #TheProcess https://t.co/PEL8MhODEe +12/18/2017,Sports_celeb,@JoelEmbiid,Steelers definitely got screwed.. Those rules don’t make sense +12/18/2017,Sports_celeb,@JoelEmbiid,Wowww What a game!!!! #NEvsPIT +12/16/2017,Sports_celeb,@JoelEmbiid,Tough loss but what an atmosphere.. I loved it #TheProcess https://t.co/iqGZECGcVw +12/14/2017,Sports_celeb,@JoelEmbiid,Euro stepping our way through Minnesota and we ended up raising the cat last night #TheProcess https://t.co/3E90Ux47GG +12/11/2017,Sports_celeb,@JoelEmbiid,Prayers up to the brother @cj_wentz #GOD #AO1 +12/08/2017,Sports_celeb,@JoelEmbiid,Tough loss but met LaVar and he’s definitely fun and full of energy #TheProcess https://t.co/UiYHP8XLNA +12/07/2017,Sports_celeb,@JoelEmbiid,I thought I was gonna be around a bunch @sportsillustrated models but this is not a bad group to be with ha… https://t.co/jffLECbmvn +12/03/2017,Sports_celeb,@JoelEmbiid,Exciting and fun game tonight... Great battle against the big fella #TheProcess https://t.co/mffqKID9Mh +12/02/2017,Sports_celeb,@JoelEmbiid,JUICY LIPS #TheProcess https://t.co/ROtEZxgtS1 +11/30/2017,Sports_celeb,@JoelEmbiid,"My City, my rules. @champssports @torylanez @adidasoriginals #WeKnowGame https://t.co/rJNCifORym" +11/30/2017,Sports_celeb,@JoelEmbiid,We blew the lead but still got it done #TheProcess https://t.co/cJYsTdpuWH +11/29/2017,Sports_celeb,@JoelEmbiid,Moments like these are why I love playing the game... Shane’s reaction and face is priceless ❤️❤️❤️ #ThisWhyWePlay https://t.co/E5DbCAWovV +11/26/2017,Sports_celeb,@JoelEmbiid,Great team effort tonight.... We’re rolling #TheProcess https://t.co/DMVxp3peMI +11/23/2017,Sports_celeb,@JoelEmbiid,The love in this city is different.... Special connection we have... I really appreciate it #TheProcess https://t.co/fBEzzwu1GO +11/22/2017,Sports_celeb,@JoelEmbiid,@torylanez and I are up to something with @champssports @adidasoriginals https://t.co/BbcinwB46a +11/22/2017,Sports_celeb,@JoelEmbiid,"I see you #Phila fans, trusting #TheProcess. Top 10 on the @DICKS #JerseyReport  https://t.co/Vr3NnPpyjv. Blessed f… https://t.co/YLVMgIadnT" +11/21/2017,Sports_celeb,@JoelEmbiid,On to the next one!! #TheProcess https://t.co/Qset7vnvsv +11/19/2017,Sports_celeb,@JoelEmbiid,Dead Ass why is everyone making fun of my tweet? I was reflecting on what happened last night #TrustIt +11/19/2017,Sports_celeb,@JoelEmbiid,Gotta play for 48 mins... The warriors are amazing though #TheProcess +11/19/2017,Sports_celeb,@JoelEmbiid,Now we know what it feels like to blow a big lead.. Gotta stay focused to get the job done. Great learning lesson a… https://t.co/V9cC28xUwv +11/18/2017,Sports_celeb,@JoelEmbiid,"I see you #Phila fans, trusting #TheProcess. Top 10 on the @DICKS #JerseyReport  https://t.co/Vr3NnPpyjv. Blessed f… https://t.co/v99JRyzSFf" +11/17/2017,Sports_celeb,@JoelEmbiid,We had a great couple days in LA...... 👑👑 of LA #Jokes #NotThatSerious https://t.co/H1ODeIs21t +11/16/2017,Sports_celeb,@JoelEmbiid,I like Lonzo’s game... no shots towards him #TrustIt +11/16/2017,Sports_celeb,@JoelEmbiid,WHAT A NIGHT #TheProcess https://t.co/92q82Zzvzb +11/15/2017,Sports_celeb,@JoelEmbiid,Who’s mans is this? https://t.co/egq6Q2iaWi +11/11/2017,Sports_celeb,@JoelEmbiid,T #TTP https://t.co/C94SBVDPKv +11/11/2017,Sports_celeb,@JoelEmbiid,U https://t.co/3o0t5DJYye +11/03/2017,Sports_celeb,@JoelEmbiid,RT @Original_Turner: Time Flies @JoelEmbiid https://t.co/sjTsHykjwd +11/03/2017,Sports_celeb,@JoelEmbiid,“You know what time it is”..... That step back of course was coming +11/02/2017,Sports_celeb,@JoelEmbiid,Trust The Process #HeDiedForOurSins https://t.co/WZF9dXpdZ6 +11/02/2017,Sports_celeb,@JoelEmbiid,Rolling #TheProcess https://t.co/9jtM1NoN5s +10/30/2017,Sports_celeb,@JoelEmbiid,I think we as “The Dodgers” got game 6.. it’s definitely gonna be fun #WorldSeries +10/30/2017,Sports_celeb,@JoelEmbiid,I guess that was an amazing game.. +10/30/2017,Sports_celeb,@JoelEmbiid,Hell yea... what a game!!!!! #WorldSeries https://t.co/OLExipUfXW +10/30/2017,Sports_celeb,@JoelEmbiid,Let’s go ASTROS #WorldSeries #TheProcess https://t.co/mq0IoTdNPH +10/29/2017,Sports_celeb,@JoelEmbiid,In the house with Commissioner Manfred and company #WorldSeries #TheProcess https://t.co/bOExbUOwiA +10/27/2017,Sports_celeb,@JoelEmbiid,Ranking keeps rising on @DICKS #JerseyReport. Our fans are the best! Much love! https://t.co/I84L7bnzTo #TheProcess… https://t.co/VM8kZ2IA6J +10/26/2017,Sports_celeb,@JoelEmbiid,I’m nice 🔥🔥🔥 +10/26/2017,Sports_celeb,@JoelEmbiid,Markelle is 💩 at 2k +10/26/2017,Sports_celeb,@JoelEmbiid,💩 +10/26/2017,Sports_celeb,@JoelEmbiid,🔥 +10/24/2017,Sports_celeb,@JoelEmbiid,Great win tonight.. gotta keep on getting better #TheProcess https://t.co/CNPMCiHjTV +10/23/2017,Sports_celeb,@JoelEmbiid,"Met some @sixers fans with @DraftKings. When I needed some help, they all had my back. #BestFans +https://t.co/zMlGTrEHj6" +10/19/2017,Sports_celeb,@JoelEmbiid,And That was 32 career games.... Felt great out there #TheProcess https://t.co/RodTdUCHhq +10/14/2017,Sports_celeb,@JoelEmbiid,RT @andre: Da kid @JoelEmbiid is a God!!! +10/14/2017,Sports_celeb,@JoelEmbiid,Great way to end preseason with a win.It’s about to get real now.Thanks for all the love in Kansas. My location is… https://t.co/AG2in11yN1 +10/14/2017,Sports_celeb,@JoelEmbiid,RT @JoelEmbiid: Hassan Whiteside #NBAVote https://t.co/4dBXNZ2hUU +10/14/2017,Sports_celeb,@JoelEmbiid,"My bad y’all , I thought I was using my burner account #TheProcess" +10/14/2017,Sports_celeb,@JoelEmbiid,And keep caring about stats and not your team success..... your +/- was ass @youngwhiteside #Softy +10/14/2017,Sports_celeb,@JoelEmbiid,"Dude they had to take your ass out or you would’ve fouled out in 5 min... And we’re talking about Preseason, not re… https://t.co/GbAhzjHBYJ" +10/13/2017,Sports_celeb,@JoelEmbiid,There’s no place like home... So happy to be back where it all started. Hope to see everyone tomorrow night… https://t.co/hfrin8WQ1I +10/12/2017,Sports_celeb,@JoelEmbiid,Felt great to get back out there and get a win... The future is bright #TheProcess https://t.co/tuvREulpyR +10/10/2017,Sports_celeb,@JoelEmbiid,The Process to be continued...... I LOVE YOU PHILADELPHIA #5MoreYears https://t.co/Xop96EhRPA +10/08/2017,Sports_celeb,@JoelEmbiid,Omg Aaron Rodgers is the freaking GOAT... He did it again 🐐🐐🐐#GoPackGo +10/08/2017,Sports_celeb,@JoelEmbiid,Go Pack Go #LetsGoPackers +10/06/2017,Sports_celeb,@JoelEmbiid,I’m on a basketball court doing things lmao.... I’m back #TheProcess https://t.co/qN0WEzqFyQ +09/28/2017,Sports_celeb,@JoelEmbiid,Trust The Process https://t.co/7qHHiDomjz +09/27/2017,Sports_celeb,@JoelEmbiid,Year 2 or year 4 .... Another chance at Rookie Of The Year. Should be fun #TheProcess https://t.co/SJaJTUrYaC +09/26/2017,Sports_celeb,@JoelEmbiid,What A Time!!!! #TheProcess https://t.co/TTrOhT4tIY +09/25/2017,Sports_celeb,@JoelEmbiid,What a great game it was today for the eagles!!!!The city is on the rise. THANKS FOR ALL THE LOVE TOO #TheProcess… https://t.co/BRzo5GLkHj +09/24/2017,Sports_celeb,@JoelEmbiid,That was wild #FlyEaglesFly +09/24/2017,Sports_celeb,@JoelEmbiid,Eagles are rolling #FlyEaglesFly +09/18/2017,Sports_celeb,@JoelEmbiid,JOEL EMBIID IS BETTER THAN MJ EVER WAS @QuireSultan #FACTS #BurnerTwitter +09/17/2017,Sports_celeb,@JoelEmbiid,Damn YoungHoe definitely ain't Koo no more😩 +09/16/2017,Sports_celeb,@JoelEmbiid,I'm excited to play in the new Statement jersey this season. #TheProcess https://t.co/0WxL8FosEd +09/14/2017,Sports_celeb,@JoelEmbiid,TRUST IT https://t.co/Yiqz3oYRqF +09/14/2017,Sports_celeb,@JoelEmbiid,It's almost that time of the year... can't wait to shut these bums up and the Process never ends. JUST TRUST IT… https://t.co/Ccdm3b04kF +09/07/2017,Sports_celeb,@JoelEmbiid,#RunTheNeighborhood & activate my scene so I can talk to myself @NBA2K https://t.co/GVsUhhjVou https://t.co/E7JToUIoHT +08/27/2017,Sports_celeb,@JoelEmbiid,FLOYD MONEY MAYWEATHER!!!!!! That was super fun +07/18/2017,Sports_celeb,@JoelEmbiid,My Durability rating must've not allowed my 2k rating to be at least 95🤔🤔!!!! Gotta work on that #TheProcess +07/15/2017,Sports_celeb,@JoelEmbiid,My brother @paulpogba #TheProcess #LaLegende https://t.co/l2bYBC0CUj +07/11/2017,Sports_celeb,@JoelEmbiid,These kids were all trusting the Process at the baseball home run derby #TheProcessLovesTheKids https://t.co/EVz0xD7y7o +07/11/2017,Sports_celeb,@JoelEmbiid,Aaron Judge is a beast #HomeRunDerby2017 +07/11/2017,Sports_celeb,@JoelEmbiid,And I keep on collecting Balls... #HomeRunDerby https://t.co/7v0DG0drJO +07/11/2017,Sports_celeb,@JoelEmbiid,And I got a ball #HomeRunDerby2017 https://t.co/0kRHS7zLVp +07/11/2017,Sports_celeb,@JoelEmbiid,I killed a lion with my bare hands so I'm great lmao #TheProcess +07/02/2018,Sports_celeb,@ApoloOhno,"Three very different career’s but one field of play today. Humbled and gratitude to all who volunteered, participat… https://t.co/H1UuQpxZ35" +07/02/2018,Sports_celeb,@ApoloOhno,Looks like someone learned a thing or two while on @dancingabc haha @juliannehough @specialolympics #Unification… https://t.co/1KRZG42k5f +07/01/2018,Sports_celeb,@ApoloOhno,I just made my pledge for inclusion @SpecialOlympics. Join @ESPN to help end discrimination against people with Int… https://t.co/VLCHJEAn8z +07/01/2018,Sports_celeb,@ApoloOhno,Let the @specialolympics games begin :-) espn @marshmellomusic @SO_Washington #fun #SpecialOlympics #team #espn… https://t.co/Owh6yh7QJf +07/01/2018,Sports_celeb,@ApoloOhno,RT @BigWalt71: PS. @ApoloOhno - the highlight of my day so far! https://t.co/EDEZw5C7B3 +07/01/2018,Sports_celeb,@ApoloOhno,"RT @SONorthAmerica: A little behind the scenes action at @2018USAGames Opening Ceremony with @ApoloOhno & @SO_Washington, reading an origin…" +07/01/2018,Sports_celeb,@ApoloOhno,Opening ceremonies about to begin!!! @specialolympics #specialOlympics #seattle #huskystadium #washington @ Univers… https://t.co/RNTWoxVYsK +07/01/2018,Sports_celeb,@ApoloOhno,Heading home for @specialolympics in Seattle!! #Inclusion #Specialolympics #Seattle #washington #home #sport #play… https://t.co/xqwz1Inida +06/30/2018,Sports_celeb,@ApoloOhno,"Big dreams, big plans, big vision! Reach higher :-) #Office #build #Asia #expansion #HQ #Focus #win https://t.co/QI2fLxob6e" +06/29/2018,Sports_celeb,@ApoloOhno,Back on the domestic grid #LA @ Los Angeles International Airport https://t.co/zn0c5HWmw1 +06/28/2018,Sports_celeb,@ApoloOhno,Digital nomad @ Ninoy Aquino International Airport https://t.co/DbIbopwPgc +06/27/2018,Sports_celeb,@ApoloOhno,Manila house #Manila #Fort #Philippines #Art @ Manila House Private Members Club https://t.co/Llb0JR6Svx +06/26/2018,Sports_celeb,@ApoloOhno,"Eyes ahead. Chin up. Focused and enjoying the journey :-) pic: Ironman Training run - 100+F, 100% humidity, no musi… https://t.co/7d4em8Trix" +06/25/2018,Sports_celeb,@ApoloOhno,All the way up :-) #Manila #Philippines #tech #Happy #Asia #fintech https://t.co/qBn2I8O1vO +06/24/2018,Sports_celeb,@ApoloOhno,RT @MichelleWKwan: Today is Olympic Day - a nostalgic time as I think about my experiences and how the Olympic values positively impacted m… +06/24/2018,Sports_celeb,@ApoloOhno,"Happy Olympic Day! #Olympic #Gold @ Mandarin Oriental, Taipei 台北文華東方酒店 https://t.co/fSR9igyVJa" +06/23/2018,Sports_celeb,@ApoloOhno,Pick your poison. #tpe #food #taipei https://t.co/vYTSYLJXmD +06/23/2018,Sports_celeb,@ApoloOhno,🤗🤗 https://t.co/XNGa5WljIb +06/22/2018,Sports_celeb,@ApoloOhno,Hot pot. Thanks Mr. Chen on your 39th location/restaurant! Amazing. https://t.co/aBqb6kSb1V +06/22/2018,Sports_celeb,@ApoloOhno,Welcome to Taipei 🤯❤️🔥🔥🔥🔥 #Mala #huoGuo #taiwan #taipei #hotpot #Happy https://t.co/g6594vX7Ei +06/21/2018,Sports_celeb,@ApoloOhno,RT @IVYconnect: IVY members in LA entered the world of cryptocurrency & blockchain this week with 8X Olympic medalist @ApoloOhno and Tether… +06/19/2018,Sports_celeb,@ApoloOhno,Thanks for having us tonight! Fun night speaking… https://t.co/CyGHURSYy3 +06/17/2018,Sports_celeb,@ApoloOhno,Happy Father’s Day! One of my favorite things to… https://t.co/vBRONMIdS5 +06/16/2018,Sports_celeb,@ApoloOhno,When will blockchain technology be integrated into Olympic city bidding processes and capital spend? #blockchain #Transparency #truths +06/15/2018,Sports_celeb,@ApoloOhno,Almost birthday time for my godson. The boss… https://t.co/AzXpY0gykC +06/15/2018,Sports_celeb,@ApoloOhno,@msantoriESQ Thanks @msantoriESQ keep these regular 21 tweet+ coming!!! +06/15/2018,Sports_celeb,@ApoloOhno,Summer is here :-) #CA #LA #64 #Cadillac @ Los… https://t.co/rTzaXgn6sV +06/13/2018,Sports_celeb,@ApoloOhno,Go further https://t.co/6qNuTH5IQz +06/13/2018,Sports_celeb,@ApoloOhno,A city within a city. One of the largest… https://t.co/ZfEeeH00wx +06/11/2018,Sports_celeb,@ApoloOhno,Just posted a photo https://t.co/sPkBwxDNGr +06/08/2018,Sports_celeb,@ApoloOhno,"Flashback to this magical place - Santorini,… https://t.co/8kzfkvjGvJ" +06/07/2018,Sports_celeb,@ApoloOhno,Out of a movie https://t.co/GRPMk78URX +06/04/2018,Sports_celeb,@ApoloOhno,Colorado Springs Olympic Training Center. https://t.co/WCJZV58UQE +05/28/2018,Sports_celeb,@ApoloOhno,Perfect workday. #Focused #Happy #Healthy… https://t.co/bqfz2hGSvP +05/26/2018,Sports_celeb,@ApoloOhno,Family is #1 :-) #manhattanassociates… https://t.co/CY07haXphx +05/23/2018,Sports_celeb,@ApoloOhno,Thank you for all the kind messages on this birthday :-) +05/22/2018,Sports_celeb,@ApoloOhno,"Mood! Birthday week. Gemini, year of the dog. 36… https://t.co/6ncw3mR1t2" +05/13/2018,Sports_celeb,@ApoloOhno,Happy Mother’s Day to my Obachan! And all the mommas out there! @… https://t.co/W2W613ioIe +05/13/2018,Sports_celeb,@ApoloOhno,Huo Guo adventures https://t.co/yVhQbBcw4N +05/11/2018,Sports_celeb,@ApoloOhno,@killabit ETF anyone? +05/09/2018,Sports_celeb,@ApoloOhno,Chicago - I’ve arrived :-) https://t.co/ImqpxL28lb +05/09/2018,Sports_celeb,@ApoloOhno,En route to Chicago! It’s been a minute! https://t.co/TJ2bqlB5Yz +05/09/2018,Sports_celeb,@ApoloOhno,Super throwback! https://t.co/obnFM47Y2X +05/07/2018,Sports_celeb,@ApoloOhno,@IamNomad @BillGates https://t.co/AwJVtXD0P9 +05/07/2018,Sports_celeb,@ApoloOhno,This was an incredibly memorable experience. See you soon NYC #FreedomTower… https://t.co/8R9uPxkGPw +05/06/2018,Sports_celeb,@ApoloOhno,"Sundaze @ Beverly Hills, California https://t.co/WT4R0HlOWS" +05/06/2018,Sports_celeb,@ApoloOhno,@ozsultan Just listened to one of the recent @badcrypto podcasts. Nice work OZ! Always spitting knowledge ! See you soon 💪💪💪🙌🏽🙌🏽🙌🏽 +05/05/2018,Sports_celeb,@ApoloOhno,"One of my fav streets in LA #LA #Trees #Breathe @ Beverly Hills, California https://t.co/GGVXwTZE9l" +05/04/2018,Sports_celeb,@ApoloOhno,😂😬 https://t.co/GcIcey5AN2 +05/04/2018,Sports_celeb,@ApoloOhno,Matrix https://t.co/gwfUmCzU8N +05/03/2018,Sports_celeb,@ApoloOhno,Operation optimize performance. Testing new products from The guys up north… https://t.co/WGXbk3pkDF +05/01/2018,Sports_celeb,@ApoloOhno,Congrats my fellow Asians who’ve impacted our community with the #A100 for the 50th Anniversary of Asian Americans! https://t.co/ls3v5ZItOT +05/01/2018,Sports_celeb,@ApoloOhno,"Milano! @ Mandarin Oriental, Milan https://t.co/bMXTd8mwXQ" +04/30/2018,Sports_celeb,@ApoloOhno,The crew eating seafood southern Italy :-) https://t.co/2vEjxSsgn5 +04/29/2018,Sports_celeb,@ApoloOhno,One...more...carb.... https://t.co/z0UpXl7pvm +04/29/2018,Sports_celeb,@ApoloOhno,"Always!!! @ Beverly Hills, California https://t.co/clvFbGLhY1" +04/28/2018,Sports_celeb,@ApoloOhno,"Barcelona calm... @ Barcelona, Spain https://t.co/STr4CQNxAB" +04/27/2018,Sports_celeb,@ApoloOhno,“Don’t gain the world and lose your soul. Wisdom is better than silver and gold” Zion train @… https://t.co/gULHDoJs2y +04/25/2018,Sports_celeb,@ApoloOhno,When in Rome.... https://t.co/EflN1CNSF1 +04/25/2018,Sports_celeb,@ApoloOhno,And of course the food 🤗 #Italy #CinqueTerre @ Cinque Terre Riviera https://t.co/mQLR7Z3sSg +04/24/2018,Sports_celeb,@ApoloOhno,:-) @ Cinque Terre https://t.co/cbn8u13t8I +04/23/2018,Sports_celeb,@ApoloOhno,"Marseille, France @ Marseille, France https://t.co/aCOTIrdaUq" +04/23/2018,Sports_celeb,@ApoloOhno,Just posted a photo @ Hôtel Le Pigonnet https://t.co/B3cV3evakd +04/22/2018,Sports_celeb,@ApoloOhno,@IamNomad 👍👍 +04/22/2018,Sports_celeb,@ApoloOhno,"Palma De Mallorca! @ Palma De Mallorca, Spain https://t.co/8y8KG5haHO" +04/20/2018,Sports_celeb,@ApoloOhno,More UAE https://t.co/5kTt2d4rm4 +04/20/2018,Sports_celeb,@ApoloOhno,🙌🏽🙌🏽🙌🏽🙌🏽 #abudhabi https://t.co/jAvW0wXubA +04/20/2018,Sports_celeb,@ApoloOhno,Absolutely incredible. The interior of the Sheikh Zayed Mosque in Abu Dhabi was breathtaking...… https://t.co/rIgyLEvhQ8 +04/18/2018,Sports_celeb,@ApoloOhno,"#dubai @ Dubai, United Arab Emirates https://t.co/TQJF21Mrxz" +04/18/2018,Sports_celeb,@ApoloOhno,"From sand.... @ Dubai, United Arab Emirates https://t.co/1XW9Eyi1FC" +04/15/2018,Sports_celeb,@ApoloOhno,"Post hummus, baba ganouj, kebab, fattoush, lebne, coma... @ Em Sherif Dubai https://t.co/VBo7RXWHAy" +04/14/2018,Sports_celeb,@ApoloOhno,Stunning!! @ Burj Khalifa https://t.co/HiNZDShAUa +04/12/2018,Sports_celeb,@ApoloOhno,@carlquintanilla @jbillinson And we are back!!! +04/11/2018,Sports_celeb,@ApoloOhno,Beautiful and strong! #nyc @ Freedom Tower https://t.co/tUzcoHGJxe +04/04/2018,Sports_celeb,@ApoloOhno,Please Join me and become a member of the USA Games 2018 Club. You’ll support the Special Olympics athletes competi… https://t.co/bDS5hCw7Uk +03/29/2018,Sports_celeb,@ApoloOhno,"@kalamarides @AAOsAwesomeFans @Prudential Thank you! We are all in this process together. Growing, learning, becomi… https://t.co/rssF7NFxzi" +03/28/2018,Sports_celeb,@ApoloOhno,Great to spend time today with @Kalamarides and the team @Prudential learning about how they're working to put… https://t.co/BqRehmwpn9 +03/27/2018,Sports_celeb,@ApoloOhno,@forexposure_txt @IamNomad 😩😅😂🤣🤣🤣🤣 +03/24/2018,Sports_celeb,@ApoloOhno,I love this city! #nyc #ny https://t.co/DRldYEW2jK +03/21/2018,Sports_celeb,@ApoloOhno,Ventured out for a meal in Chinatown. Owner/Chef of “Hwa Yuan” Chen Lieh Tang was quite the… https://t.co/20lryUluk5 +03/20/2018,Sports_celeb,@ApoloOhno,"Back in one of the greatest cities in the world. NYC! Busy week ahead, filled with reflection and gratitude from th… https://t.co/nli9oiJfGI" +03/19/2018,Sports_celeb,@ApoloOhno,"Charity concert to benefit the Puerto Rico! Thank you Matt and team! #PR #puertorico @ San Juan,… https://t.co/PEW3kP7zbD" +03/18/2018,Sports_celeb,@ApoloOhno,Rings of strength and unity here in PR #Global #Olympic https://t.co/5BY5Fh9zWf +03/16/2018,Sports_celeb,@ApoloOhno,"Magical!! #pr #puertorico @ San Juan, Puerto Rico https://t.co/S5N3pflioC" +03/12/2018,Sports_celeb,@ApoloOhno,Thanks for the nice chat Matt! Always fun to give perspective on the various challenges of this sphere. https://t.co/u9MY4UbpUe +03/09/2018,Sports_celeb,@ApoloOhno,Better late than never....happy Chinese New Year of the dog! #hkg #cny https://t.co/MYU4RgKXBM +03/07/2018,Sports_celeb,@ApoloOhno,The secret to winning Gold? You gotta visualize it! #HersheysGold #TastetheGold @Hersheys #ad https://t.co/RePOHJPFA9 +03/04/2018,Sports_celeb,@ApoloOhno,The never ending city #HK #2ndHome https://t.co/xFMvRQOz2h +02/27/2018,Sports_celeb,@ApoloOhno,"RT @NBCLatino: “The island was devastated to a degree that surprised everyone,” says Winter Olympian @ApoloOhno as he joins efforts to brin…" +02/26/2018,Sports_celeb,@ApoloOhno,"#Repost @wsjphotos +・・・ +Two-time Olympic speed skating gold medalist, Apolo Ohno reveals the… https://t.co/ASFF4b9guT" +02/25/2018,Sports_celeb,@ApoloOhno,Congratulations @AryFonta such an amazing career! #olympic #shorttrack #Olympic #speedskating… https://t.co/GsU1RKPGDp +02/24/2018,Sports_celeb,@ApoloOhno,Ice this pavement and we have a new sport inside the Olympic Park! #korea #pyeongchang2018… https://t.co/0dXZLinPSN +02/23/2018,Sports_celeb,@ApoloOhno,So happy for the women’s hockey team. Showed incredible resolve and strength. 20 years in the… https://t.co/EuchopUuUs +02/23/2018,Sports_celeb,@ApoloOhno,RT @NBCSportsPR: “This is just like #NASCAR on ice.” – @DaleJr joins @tedjrobinson & @ApoloOhno in the #shorttrack booth #WinterOlympics ht… +02/22/2018,Sports_celeb,@ApoloOhno,Congrats @TeamUSA on your gold medal in Women's Ice Hockey! No one deserves Gold more than you! #HersheysGold… https://t.co/TPXvGy0y1g +02/22/2018,Sports_celeb,@ApoloOhno,Look who joins us in the madhouse tonight!! dalejr hope you enjoyed short track :-) @nascar on… https://t.co/dWWZu3HKf2 +02/21/2018,Sports_celeb,@ApoloOhno,I wanted to provide some clarity for the confused viewers out there (like me). For all of the… https://t.co/aKBt9z6ZgZ +02/21/2018,Sports_celeb,@ApoloOhno,RT @tedjrobinson: Asked many smart people about SKorea skater fall that took out Canada. Told it’s not a foul as Kim had already pushed off… +02/20/2018,Sports_celeb,@ApoloOhno,This makes me happy :-) #Olympic #Life #pyeongchang2018 https://t.co/stRmMTQDcI +02/20/2018,Sports_celeb,@ApoloOhno,"30% of Puerto Rico is #StillInTheDark. I’m the #VIKTREChallenge captain of Team Olympics, and I challenge fellow Ol… https://t.co/zR1EGhbu5Q" +02/18/2018,Sports_celeb,@ApoloOhno,"The mountains are calling and I must go. - John Muir + +#pyeongchang2018 @olympics #Olympic… https://t.co/xv4efkH1mt" +02/17/2018,Sports_celeb,@ApoloOhno,@CryptoMClive Yes! That’s us :-) +02/17/2018,Sports_celeb,@ApoloOhno,Exploring this amazing place! Traditional Gangneung style Korean food + hallways full of markets… https://t.co/1CrzMf5YyG +02/16/2018,Sports_celeb,@ApoloOhno,"Celebrating #WinterOlympics @Todayshow and anticipating Gold, and I’m not just talking about medals! #HersheysGold… https://t.co/ZnrVWaIQMq" +02/15/2018,Sports_celeb,@ApoloOhno,High-Tech Skate. #Olympics #Skate #korea @ Gangneung Olympic Park https://t.co/DsAhQ8eHpG +02/15/2018,Sports_celeb,@ApoloOhno,The love for the Olympics and Speedskating has no borders! The Dutch showing some skillfully… https://t.co/K4HvMlC6Nc +02/13/2018,Sports_celeb,@ApoloOhno,The best place to be :-) Short Track Gangneung Ice Arena women’s 500m final +Mens’s 5000m relay.… https://t.co/qZwfyfGYNQ +02/13/2018,Sports_celeb,@ApoloOhno,Long Track Speedskating. A beautiful venue filled with fans from all over the world...cheering… https://t.co/7XGmdUeF0v +02/13/2018,Sports_celeb,@ApoloOhno,@bennyluo My man! See you soon +02/11/2018,Sports_celeb,@ApoloOhno,@RedmondGerard just took Gold everybody! I’m celebrating Red’s incredible performance with #HersheysGold… https://t.co/bIbd3JxnnI +02/11/2018,Sports_celeb,@ApoloOhno,"Just watched the mens Long Track 5,000m. Incredible. Don't want to spoil - but check it out. Mastery!!!… https://t.co/Hawsfwgrjm" +02/09/2018,Sports_celeb,@ApoloOhno,@danylemay_ @FLTremblay @USSpeedskating @PatinVitesseQc @SSC_PVC Man..our hair 😂😂😂😂😂🤯 +02/09/2018,Sports_celeb,@ApoloOhno,The Trophy Case is where I keep all my most treasured possessions. Check out the newest #ad I made for… https://t.co/7bbfgnrjzo +02/09/2018,Sports_celeb,@ApoloOhno,An epic moment tonight :-) #pyeongchang2018 @olympics #openingceremony #2018 #southkorea… https://t.co/zbsLS3PgLm +02/09/2018,Sports_celeb,@ApoloOhno,RT @tedjrobinson: North Korean short track skater Jong Kwang-Bom not only practiced alongside the South Korean team but talked with skaters… +02/08/2018,Sports_celeb,@ApoloOhno,Home :-) https://t.co/KXssg3z1FS +02/08/2018,Sports_celeb,@ApoloOhno,RT @VIKTRESocial: Puerto Rico was hit hard by Hurricane Maria. But a group of pro-athletes and the Foundation for Puerto Rico are crowdfund… +02/08/2018,Sports_celeb,@ApoloOhno,RT @Hersheys: Am I a little obsessed with Gold? Oh Yes. #HersheysGold #TasteTheGold https://t.co/alpW1xwNKL +02/08/2018,Sports_celeb,@ApoloOhno,RT @GivingCompass: Puerto Rico isn't being forgotten. U.S. #Olympic legend @ApoloOhno and other athletes are chipping in to help bring sola… +02/07/2018,Sports_celeb,@ApoloOhno,6am run. Cold as hell. Perfect :-) #pyeongchang2018 @olympics @ Gangneung https://t.co/MCP5y293Y9 +02/06/2018,Sports_celeb,@ApoloOhno,Seaside for the Winter Games :-) #pyeongchang2018 @nbcolympics #olympics @ PyeongChang https://t.co/tSFa6cBDbd +02/04/2018,Sports_celeb,@ApoloOhno,Thank you thank you thank you to these amazing men and women here at Osan Air Base. We came down… https://t.co/yb2TqfpE7v +02/03/2018,Sports_celeb,@ApoloOhno,Landed in S. Korea :-) the energy in this country has always been so unique and special. This… https://t.co/tBKuhYV7eG +02/01/2018,Sports_celeb,@ApoloOhno,From city to sea. LA LA land #la https://t.co/N2HczyXBgZ +02/01/2018,Sports_celeb,@ApoloOhno,RT @FastCompany: These pro athletes are raising money to bring solar power to Puerto Rico https://t.co/jaFDyYSmgU https://t.co/TOxMUfCJq5 +02/01/2018,Sports_celeb,@ApoloOhno,"Team we are making big impact where it's needed! @VIKTRESocial +#puertoRico #power #Team +https://t.co/0mz0bWxyqI" +01/30/2018,Sports_celeb,@ApoloOhno,Olympics are here! pyeongchang2018 https://t.co/rxY7pMlMe7 +01/27/2018,Sports_celeb,@ApoloOhno,"SF you’ve always made me smile in my heart, belly, and eyes. I love this place! #sf #minds… https://t.co/wuMJs1RM9T" +01/26/2018,Sports_celeb,@ApoloOhno,Fresh off the plane into meetings and now @stanford my dream alumni :-) I’m instantly inspired… https://t.co/Uww6EguaIA +01/24/2018,Sports_celeb,@ApoloOhno,Planning. SF I’ll see you tomorrow! https://t.co/bBpUgB2Wbr +01/24/2018,Sports_celeb,@ApoloOhno,@AAOsAwesomeFans True. +01/22/2018,Sports_celeb,@ApoloOhno,Today’s the day - the official launch of #VIKTREChallenge - Power for Puerto Rico! Half of… https://t.co/aqlNSDp3hy +01/18/2018,Sports_celeb,@ApoloOhno,2018...don’t lose sight of the goals you’ve set. Hold the line. Be strong. Focused. Get it!!!… https://t.co/qo0preuKw9 +01/18/2018,Sports_celeb,@ApoloOhno,Well done Matt!!! #miami #digital #blockchain @ James L Knight Center https://t.co/PKthHGtzag +01/16/2018,Sports_celeb,@ApoloOhno,RT @SMMadagency: The Hershey Company has said that it will tweet a link to a Hershey’s Gold coupon every time Team USA wins a gold medal du… +01/15/2018,Sports_celeb,@ApoloOhno,@crypto_bobby Reach out to Reeve - he can shed light on some really amazing partnerships and 1/2nd quarter plans for BlockV. +01/15/2018,Sports_celeb,@ApoloOhno,"Family is everything. #Family #la #Pops biancawstam @ Mastro's Restaurants - Steakhouse, Beverly… https://t.co/L0vHNUF30Z" +01/15/2018,Sports_celeb,@ApoloOhno,@Disruptepreneur Great video @Disruptepreneur - This is how you should always be captured and displayed imo. +01/15/2018,Sports_celeb,@ApoloOhno,@Echelon1969 LOVE it. +01/13/2018,Sports_celeb,@ApoloOhno,Throwback! Nothing quite like competing on the world stage at the pinnacle of all sport. The… https://t.co/XnPGPzT0GX +01/12/2018,Sports_celeb,@ApoloOhno,"Is this real life? #puppy #puppies #ride #foolery #friday @ Bel Air, Los Angeles https://t.co/2ZL1dER7XC" +01/12/2018,Sports_celeb,@ApoloOhno,"RT @ahhnalin: .@ApoloOhno stars in TV, social ads for #HersheysGold launch #TastetheGold https://t.co/9CCUMhjJ0J @KLmarketdaily" +01/12/2018,Sports_celeb,@ApoloOhno,"RT @zaoyang: Courage, conviction, grit are the scarcest resources in the world. Scarcer than IQ, brilliance, and money." +01/11/2018,Sports_celeb,@ApoloOhno,"RT @adage: .@ApoloOhno talks social media's influence on competitive sports and why blockchain is ""the greatest invention since the interne…" +01/09/2018,Sports_celeb,@ApoloOhno,"We know who wears the pants around here. 😫🐒 #puppy #love #animals #happy #LA @ Los Angeles,… https://t.co/NHpVb29MiB" +01/08/2018,Sports_celeb,@ApoloOhno,"RT @NBCOlympics: The #WinterOlympics are coming to @nbc in only ONE. MORE. MONTH. #BestOfUS + +Get ready! Sign up for NBC Olympics newsletter…" +01/07/2018,Sports_celeb,@ApoloOhno,Taking it back! Hometown Seattle love here! Had an incredible partnership with Alaska airlines… https://t.co/fj1efzeP9r +01/05/2018,Sports_celeb,@ApoloOhno,@davidmeltzer 🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽 +01/05/2018,Sports_celeb,@ApoloOhno,"RT @davidmeltzer: Check out Top Moments from #ThePlaybook in 2017. Including All-Pro athletes, broadcasters, Olympians, and sports executiv…" +01/05/2018,Sports_celeb,@ApoloOhno,"RT @Disruptepreneur: Mark Zuckerberg’s 2018 personal challenge is to fix his company... and learn more about decentralization, cryptocurren…" +01/05/2018,Sports_celeb,@ApoloOhno,@IamNomad Haha +01/02/2018,Sports_celeb,@ApoloOhno,@PeterLBrandt 100% 🙌🏽🙏 +12/31/2017,Sports_celeb,@ApoloOhno,RT @Hersheys: Ring in the new year by experiencing an entirely new flavor. #HersheysGold #TasteTheGold https://t.co/EClh7BBXuv +12/30/2017,Sports_celeb,@ApoloOhno,😫😭😭😭😭😭 so cute https://t.co/WdxlxNcK0I +12/29/2017,Sports_celeb,@ApoloOhno,@IamNomad @MikelGiustinian ha! +12/27/2017,Sports_celeb,@ApoloOhno,@ManorMolly Domestic vs int racing is much different +12/25/2017,Sports_celeb,@ApoloOhno,Merry Christmas from the Ohno family! Haha started out hyping up my incredible world famous… https://t.co/EgGfjywqVK +12/25/2017,Sports_celeb,@ApoloOhno,Happy Holidays :-) spending the week with my pop and loved ones :-) +12/23/2017,Sports_celeb,@ApoloOhno,@kevinrose 🙌🙌🙌🙌 +12/23/2017,Sports_celeb,@ApoloOhno,@kevinrose Very well said. Thank you! +12/23/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur Sweet moses +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Dream exchange? Can you list what you'd like to see vs what is currently available... +12/20/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @mrbrockvond I do too. +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Stay focused. Eyes on the prize. +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Any response from Brian directly? +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Strong move sir. Strong move. +12/20/2017,Sports_celeb,@ApoloOhno,"RT @TeamUSA: Born of South Korean heritage, qualifying for the #WinterOlympics has a special meaning for Thomas Hong. This February, he’ll…" +12/19/2017,Sports_celeb,@ApoloOhno,@TeamApolo Happy Birthday! Thank you for all the support. Enjoy your special day! +12/19/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @AugurProject Congratulations brother! +12/19/2017,Sports_celeb,@ApoloOhno,@officialmcafee Strong. +12/18/2017,Sports_celeb,@ApoloOhno,@scottwalker99 Preach Scotty! +12/18/2017,Sports_celeb,@ApoloOhno,"Congratulations to this team! A weekend filled with ups and downs, but perseverance, strength,… https://t.co/KDxKTf7kG8" +12/17/2017,Sports_celeb,@ApoloOhno,Final day of the Short Track Olympic Trials. Leave it all out on the ice. Zero regrets. @ Utah… https://t.co/MLkoEvCdf0 +12/15/2017,Sports_celeb,@ApoloOhno,We are back!!! Live on @nbc @nbcolympics tonight covering the Olympic Trials for Short Track… https://t.co/JPxak4AXjo +12/14/2017,Sports_celeb,@ApoloOhno,Reliving the golden days & getting ready to cheer on @TeamUSA at the #WinterOlympics with @Hersheys #HERSHEYSGOLD… https://t.co/kmEyX0FCS1 +12/13/2017,Sports_celeb,@ApoloOhno,@FoxBusiness @tylerwinklevoss Strong brother. Very strong. Cheering you guys on while participating at the same time :-) +12/12/2017,Sports_celeb,@ApoloOhno,@Shutterstock need some serious help in the customer service department. +12/11/2017,Sports_celeb,@ApoloOhno,A room of power players! Thanks and happy birthday to @bingchen - #Gold #celebrate @ GRAMMY Museum https://t.co/5YKpnqSjZ3 +12/08/2017,Sports_celeb,@ApoloOhno,Shot this commercial yesterday w/ partner hersheys haha can’t wait until you guys see it! https://t.co/ydrKSf85yb +11/27/2017,Sports_celeb,@ApoloOhno,"Wow! What an incredible culinary treasure with chefjameswon in Malaysia. One of a kind. Design,… https://t.co/kNux8hCEVt" +11/27/2017,Sports_celeb,@ApoloOhno,@RudiPermana I agree! Working on it +11/25/2017,Sports_celeb,@ApoloOhno,"Couldn’t squeeze much more into this energy packed room full of beautiful, amazing, and… https://t.co/gyS7wsEzxY" +11/25/2017,Sports_celeb,@ApoloOhno,@IamNomad Do you trade solo? Institutionalized firm? full time? Most used exchange? +11/24/2017,Sports_celeb,@ApoloOhno,Touched down in Taipei - hit this famous chicken soup restaurant immediately. Happy… https://t.co/sVEhpuguRM +11/22/2017,Sports_celeb,@ApoloOhno,Was a true throwback being on set yesterday of @dancingabc for the finals show! Saw many old… https://t.co/ElTfICPHH6 +11/19/2017,Sports_celeb,@ApoloOhno,@PeterAttiaMD Water fast? +11/16/2017,Sports_celeb,@ApoloOhno,Nothing makes me happy than to see my dad looking younger and fresher than ever!! #healthy… https://t.co/kwqAp5Pbv1 +11/15/2017,Sports_celeb,@ApoloOhno,"How’s your paso? #dwts 🚀#throwback @juliannehough #dance #finals #fun @dancingabc @ Los Angeles,… https://t.co/vcMnOh7iSa" +11/15/2017,Sports_celeb,@ApoloOhno,@jsamulaitis shoot me a dm. I've a team in Vancouver. +11/15/2017,Sports_celeb,@ApoloOhno,@jsamulaitis @IamNomad I do. I've seen large scale mining in China & small operations in Vegas. Where are you loc… https://t.co/RbsBTWbvI5 +11/14/2017,Sports_celeb,@ApoloOhno,@DancingABC @frankiemuniz @WitneyCarson @juliannehough CRUSHED IT!!!!!! FINALS! +11/14/2017,Sports_celeb,@ApoloOhno,"RT @abc7george: For their #DWTS  Iconic Dance on Monday, @frankiemuniz & @WitneyCarson will paso doble to ""Carnival De Paris” by Dario G. I…" +11/13/2017,Sports_celeb,@ApoloOhno,Congratulations to this young team! That is FAST!!! WR! https://t.co/ijeLvTneOD +11/12/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @zacksomeone Pain. +11/12/2017,Sports_celeb,@ApoloOhno,@IamNomad @jsamulaitis Cost associated w/ having the strength to balance over asia? +11/12/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur The true definition of “it just doesn’t matter...I’ll have that $9 water and $8 Choco bar” haha +11/12/2017,Sports_celeb,@ApoloOhno,Double selfie w/ my partner in crime @nickgismondi covering Short Track World Cup in Shanghai!… https://t.co/rMvVoMA3T4 +11/09/2017,Sports_celeb,@ApoloOhno,Thank you @elisk25 for having me today! @olympics Day was amazing and you guys and girls made me… https://t.co/nksh19BpiR +11/09/2017,Sports_celeb,@ApoloOhno,Somebody hit a remix pls... oh oh oh noooooo op op opoloooooo https://t.co/8atUttsJQN +11/06/2017,Sports_celeb,@ApoloOhno,Central Park walks are mesmerizing :-) #nyc #centralpark @ Central Park Manhatan https://t.co/VAhAjgCmJT +06/29/2018,Sports_celeb,@usainbolt,Hey bro you just broke my daring celebration game 😂. You deserve some huge bottle of Champagne for sure !!🍾… https://t.co/reML4Wo5nt +06/28/2018,Sports_celeb,@usainbolt,"RT @UBTandR: THROWBACK to the LEGEND book signing here at UBTR Kingston ⚡ +Fist bumping @usainbolt? Wouldn’t you love to be this guy? 😂 + +#TB…" +06/28/2018,Sports_celeb,@usainbolt,History Will Remember The Country Boy @ Planet Earth https://t.co/CcW5B62EpE +06/28/2018,Sports_celeb,@usainbolt,History Will Remember Me 🙏🏾 https://t.co/PRI9k05DN4 +06/27/2018,Sports_celeb,@usainbolt,Great being back in Bermuda where I ran my first world record as a junior in 2004. I Can never forget that 200m at… https://t.co/SDL3YBjSqG +06/27/2018,Sports_celeb,@usainbolt,"RT @TheRoyalGazette: Photos of Usain Bolt's whirlwind tour of Bermuda + +Photo gallery: https://t.co/e5WTxfVXHr https://t.co/hqbY1cXpc6" +06/27/2018,Sports_celeb,@usainbolt,"RT @DigicelBermuda: Photo of the day? When Elias met @usainbolt (shame he took off the shades, Elias that is) https://t.co/GBd0LLP65B" +06/27/2018,Sports_celeb,@usainbolt,RT @BermudaPremier: Students from the Hamilton Community Centre served as #Bermuda ambassadors as we welcomed #Olympic Gold Medallist and w… +06/26/2018,Sports_celeb,@usainbolt,"RT @DigicelBermuda: Warren Bean brough his Jamaican flag with Bolt's 2004 signature. Now it has his 2018 signature! +#bermuda #usainbolt htt…" +06/26/2018,Sports_celeb,@usainbolt,RT @BernewsSports: Selected students from various schools are having the opportunity to meet @usainbolt this morning thanks to @DigicelBerm… +06/26/2018,Sports_celeb,@usainbolt,Good morning world https://t.co/TV5V90IpfF +06/22/2018,Sports_celeb,@usainbolt,Friday lunch with #CoachMills #NJ https://t.co/sMjaKP7rUf +06/21/2018,Sports_celeb,@usainbolt,Wow wow wow #Worldcup2018Russia +06/21/2018,Sports_celeb,@usainbolt,"Some people have jobs, others have careers but… https://t.co/5bhEdwNcET" +06/21/2018,Sports_celeb,@usainbolt,TBT https://t.co/uCDh1AI1aK +06/20/2018,Sports_celeb,@usainbolt,RT @COPA90: Timbsy takes on @usainbolt at the ‘@piresrobert7 Lay-off Challenge’... 👀🎯 https://t.co/hrCBUpLgax +06/20/2018,Sports_celeb,@usainbolt,Teamed up with @gatorade & @piresrobert7 to take… https://t.co/5PCSn2ALj6 +06/19/2018,Sports_celeb,@usainbolt,Mood https://t.co/OyZFHffr4F +06/18/2018,Sports_celeb,@usainbolt,"Join the competition! This summer, celebrate goals in your most daring way. To win a🍾, post your video tagging… https://t.co/nhnoTp9RK6" +06/17/2018,Sports_celeb,@usainbolt,A Father Figure like no other #CoachMills https://t.co/hWfEzGVH8R +06/17/2018,Sports_celeb,@usainbolt,Happy Father’s Day Pops. You taught me… https://t.co/HFUnfOpq3G +06/13/2018,Sports_celeb,@usainbolt,My G’s @SimmsRicky #NJ https://t.co/Z51rtY4xqM +06/13/2018,Sports_celeb,@usainbolt,"Family Is The Greatest Currency @ Paris, France https://t.co/uVKlw7THM5" +06/13/2018,Sports_celeb,@usainbolt,Last couple days been epic 🙌🏽🙌🏽 https://t.co/n3yPRMQOeG +06/11/2018,Sports_celeb,@usainbolt,"RT @themichaelowen: Well done to everyone involved with @socceraid yesterday especially @usainbolt. Captain, Man Of the Match and winner of…" +06/10/2018,Sports_celeb,@usainbolt,Man of the match @socceraid @Hublot 🙌🏽🙌🏽 https://t.co/iSv9LrzrfH +06/10/2018,Sports_celeb,@usainbolt,A lot of fun today @socceraid match 🙌🏽🙌🏽 https://t.co/DBok1WDdwz +06/10/2018,Sports_celeb,@usainbolt,Captain 🙌🏽🙌🏽 https://t.co/dt4PzP163b +06/10/2018,Sports_celeb,@usainbolt,Sunday Mood https://t.co/F2og6ZNkTs +06/10/2018,Sports_celeb,@usainbolt,Sunday Mood 🤔🤔 https://t.co/PxT6hLINOR +06/10/2018,Sports_celeb,@usainbolt,Game Day @socceraid https://t.co/g2I7BnV91v +06/09/2018,Sports_celeb,@usainbolt,Who got skills @Mo_Farah @socceraid 😂😂😂😂😂 https://t.co/Ouv1BR4zqy +06/08/2018,Sports_celeb,@usainbolt,Slowed down a minute for the #GrahamNorton show… https://t.co/5bmpJG1efo +06/08/2018,Sports_celeb,@usainbolt,Catch me tonight on #GrahamNorton show https://t.co/wi2h9LP1RM +06/08/2018,Sports_celeb,@usainbolt,"Racers Grand Prix +June 9, 2018 +National Stadium @6pm + +Tickets available @ Pegasus Hotel and Selected JN Bank +HWT… https://t.co/mxKPkPV9FT" +06/07/2018,Sports_celeb,@usainbolt,My brother @Mo_Farah 🎮🎮 https://t.co/AyrByUfJDB +06/07/2018,Sports_celeb,@usainbolt,"Super Bolt socceraid @ London, United Kingdom https://t.co/kUIb88tYGz" +06/07/2018,Sports_celeb,@usainbolt,Super Bolt @socceraid https://t.co/x78ablRf6z +06/06/2018,Sports_celeb,@usainbolt,RT @socceraid: Celebrating the partnership between #SoccerAid for @UNICEF_uk and the governments aid match scheme #downingstreet https://t.… +06/06/2018,Sports_celeb,@usainbolt,Last few tickets for @socceraid available at https://t.co/NM0BUFFgzj https://t.co/nyIMFXHZSF +06/04/2018,Sports_celeb,@usainbolt,The Queen Is Back!!!! #RacersGrandPrix https://t.co/Kfc293Tkwl +06/02/2018,Sports_celeb,@usainbolt,Running into the weekend https://t.co/hft0br0pSv +06/01/2018,Sports_celeb,@usainbolt,"RT @DIGICELJamaica: Catch @yohanblake, @KemarBaileyCole and @Julian_Forte on the track at #RacersGrandPrix on Saturday June 9th at the Nati…" +06/01/2018,Sports_celeb,@usainbolt,Pow! 💥 watch me make the #SwitchToSuper with a one-of-a-kind fitting. @virginmedia https://t.co/XsORD0BERl +05/31/2018,Sports_celeb,@usainbolt,"The rules are the rules but at the end of the day the joy of winning that relay gold +Medal in Beijing 2008 with my… https://t.co/A6fJZcfObD" +05/31/2018,Sports_celeb,@usainbolt,The rules are the rules but at the end of the… https://t.co/iaTS7syD4w +05/31/2018,Sports_celeb,@usainbolt,Memories Last Forever #ThisDayInHistory 31.05.08 https://t.co/T1D1bQrZcO +05/31/2018,Sports_celeb,@usainbolt,Memories Last Forever #ThisDayInHistory 31.05.08 https://t.co/nnluVu7OaE +05/31/2018,Sports_celeb,@usainbolt,This day in History 31.05.08 https://t.co/AW0eK7nPER +05/30/2018,Sports_celeb,@usainbolt,No Limit https://t.co/UVdwFcbv1N +05/30/2018,Sports_celeb,@usainbolt,Chasing the Dream @strmsgodset @puma… https://t.co/f2SJzw2jKS +05/30/2018,Sports_celeb,@usainbolt,Chasing the Dream @strmsgodset @puma… https://t.co/Tujnxj3V6J +05/30/2018,Sports_celeb,@usainbolt,RT @strmsgodset: Godset TV did an exclusive interview with @usainbolt after his first training session with Strømsgodset. You can see it he… +05/30/2018,Sports_celeb,@usainbolt,"RT @strmsgodset: The worlds fastest man is training with Strømsgodset the next week. Doing his first session today. +@usainbolt https://t.co…" +05/30/2018,Sports_celeb,@usainbolt,"RT @strmsgodset: Usain Bolt er i gang ute på Gamle gress. Hvor absurd er ikke den setningen! +@usainbolt +📸 @brre_eirik https://t.co/nslZaBJ…" +05/29/2018,Sports_celeb,@usainbolt,"Racers Grand Prix extends Online tickets sales for 48 hours! +https://t.co/Hc0pGrVqn1" +05/29/2018,Sports_celeb,@usainbolt,RT @racerstrack: Extension of online ticket sales for the Racers Grand Prix 2018 .48 hours only! Midnight tonight (Monday) until Wednesday… +05/28/2018,Sports_celeb,@usainbolt,🤫🤔 https://t.co/BKgnX3YYE3 +05/28/2018,Sports_celeb,@usainbolt,🤫 https://t.co/YjI3d5i3dd +05/26/2018,Sports_celeb,@usainbolt,Seriously.. like seriously #ChampionsLeague2018 +05/26/2018,Sports_celeb,@usainbolt,Brilliant goal #ChampionsLeagueFinal2018 +05/26/2018,Sports_celeb,@usainbolt,Strangest Goal ever #ChampionsLeagueFinal2018 +05/25/2018,Sports_celeb,@usainbolt,"RT @UBTandR: Come on in after work! +UBTR Montego Bay is now LIVE on the HIP STRIP ⚡ +Mobay peeps! Now you can #tasteREALJamaicanvibes here a…" +05/22/2018,Sports_celeb,@usainbolt,"Racers Grand Prix!!!!!!!! +June 9,2018 +National Stadium +Kingston + +Be There!!!!!!!!!! https://t.co/a2xar7Zadz" +05/22/2018,Sports_celeb,@usainbolt,Time @Hublot https://t.co/3IDk3m1rFK +05/21/2018,Sports_celeb,@usainbolt,Travel swag https://t.co/QX1aBf7Pnj +05/21/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/RSx3D4OSD0 +05/21/2018,Sports_celeb,@usainbolt,G.O.A.T on Bolts https://t.co/GbiDBEFsT1 +05/21/2018,Sports_celeb,@usainbolt,Master Piece https://t.co/fLg5FpFcqU +05/20/2018,Sports_celeb,@usainbolt,"RT @socceraid: Just 3️⃣ weeks to go until @robbiewilliams’ England take on @usainbolt’s World XI 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽️🌎 + +🎟 Don’t miss a game like no ot…" +05/19/2018,Sports_celeb,@usainbolt,🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬 +05/19/2018,Sports_celeb,@usainbolt,"To become a champion, it just takes hard work, dedication and a lot of sacrifice. You must focus on your dream and… https://t.co/E6IyMn5wxm" +05/18/2018,Sports_celeb,@usainbolt,Boom! You’re now LIT with Digicel LTE in more places than ever before! Speed over to @digicelJamaica for more deets… https://t.co/uteB72z18A +05/17/2018,Sports_celeb,@usainbolt,Try nuh blink… cause yuh might miss it! #getset https://t.co/1NyPUowjdb +05/17/2018,Sports_celeb,@usainbolt,It’s a official @UBTandR Montego Bay https://t.co/WWsKQbtaPY +05/17/2018,Sports_celeb,@usainbolt,"Official opening of @UBTandR in Montego Bay, Jamaica 🇯🇲 https://t.co/VWTUJFLquP" +05/16/2018,Sports_celeb,@usainbolt,#GetReady https://t.co/hEEYgXru29 +05/16/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/RSEOdzTE6w +05/14/2018,Sports_celeb,@usainbolt,"RT @UBTandR: The mother of the man himself ⚡️ + +Happy Mother’s Day to all our moms! + +Celebrate your special day with us here at Tracks and R…" +05/13/2018,Sports_celeb,@usainbolt,"Happy Mother’s Day to my rock. You are the strongest, most patient,… https://t.co/1jbe4GnuX3" +05/12/2018,Sports_celeb,@usainbolt,"RT @UBTandR: The big man himself invites you to Usain Bolt’s Tracks & Records this Sunday for your Mother’s Day celebration! 🎉 +You know you…" +05/11/2018,Sports_celeb,@usainbolt,"RT @socceraid: THE KING IS BACK! 👑 + +Eric Cantona joins #TeamUsain and will return to Old Trafford on Sunday 10th June! 🏟 + +Don’t miss what…" +05/11/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/QADysmCec4 +05/10/2018,Sports_celeb,@usainbolt,RT @youridjorkaeff: Great game with Great Champions @piresrobert7 @usainbolt ⚡️🏅🏆 https://t.co/jhI4Qpz6Nr +05/09/2018,Sports_celeb,@usainbolt,"RT @DIGICELJamaica: Happy Teachers' Day!! + +Today we celebrate the hardworking men and women who shape the minds of the nation's students. Y…" +05/06/2018,Sports_celeb,@usainbolt,"Prayers be Sir Alex @ Manchester, United Kingdom https://t.co/CoRNohrQNJ" +05/01/2018,Sports_celeb,@usainbolt,Sauce 🔥🔥🌶🌶🇯🇲🇯🇲💯💯🙌🏿🙌🏿 https://t.co/7A28cv57x6 +05/01/2018,Sports_celeb,@usainbolt,Sauce 🔥🔥🌶🌶🇯🇲🇯🇲💯💯🙌🏿🙌🏿 @ Australia https://t.co/AG3wGGln9K +05/01/2018,Sports_celeb,@usainbolt,"Get your Racers Grand Prix tickets online starting today +https://t.co/Hc0pGrVqn1" +04/30/2018,Sports_celeb,@usainbolt,Running into the week like Bolt🤗 https://t.co/BOFkzhdUlQ +04/26/2018,Sports_celeb,@usainbolt,Getting ready for @xbox Game Pass Challenge today. 🇯🇲🙏🏾🔥Don’t miss it @aarongreenberg https://t.co/n8AlTyf2yv +04/26/2018,Sports_celeb,@usainbolt,Hyped for @Xbox Game Pass Challenge. 🇯🇲🙏🏾🔥 Tune in tomorrow 🙌🏽 @XboxP3 @aarongreenberg https://t.co/5dRZw8smWr +04/26/2018,Sports_celeb,@usainbolt,Hyped for @xbox Game Pass Challenge. 🇯🇲🙏🏾🔥 Tune in tomorrow 🙌🏽 @aarongreenberg https://t.co/vnS5E5XMOG +04/26/2018,Sports_celeb,@usainbolt,https://t.co/1DUNZsD1tP +04/25/2018,Sports_celeb,@usainbolt,Which lane i am in? https://t.co/VikoDEeat3 +04/24/2018,Sports_celeb,@usainbolt,"Montego Bay @ubtandr is here. Enjoy 🙌🏽🙌🏽 @ Montego Bay, Jamaica https://t.co/pNSAD41PuX" +04/24/2018,Sports_celeb,@usainbolt,It’s good look Mobay @UBTandR #Mobay https://t.co/M7HqcgLNcs +04/24/2018,Sports_celeb,@usainbolt,Montego Bay @UBTandR is here 🙌🏽 https://t.co/9aEAZivcHE +04/22/2018,Sports_celeb,@usainbolt,"Everything @ Kingston, Jamaica https://t.co/D9Qq8snhL5" +04/20/2018,Sports_celeb,@usainbolt,"Happy birthday to my godson 🎂🎉🎊🎁🎈#NJJ #Love&LoveAlone @ Kingston, Jamaica https://t.co/rRpj5RHeGi" +04/20/2018,Sports_celeb,@usainbolt,"Racers Grand Prix!!! +Save the Date!!! +June 9, 2018 +National Stadium +Kingston https://t.co/ivkMkrC2FV" +04/20/2018,Sports_celeb,@usainbolt,G https://t.co/xXa0gXYI3u +04/17/2018,Sports_celeb,@usainbolt,🌶🌶🌶🌶🔥🔥🔥🔥🇯🇲🇯🇲🇯🇲🇯🇲 https://t.co/Vn1FBP3zKH +04/17/2018,Sports_celeb,@usainbolt,Hot Hot Hot🌶🌶🌶🌶 My 🇯🇲Insane Hot Sauce here in Australia. Get it colessupermarkets🔥🔥🔥 @ Gold… https://t.co/gLvUkUKQ6C +04/16/2018,Sports_celeb,@usainbolt,My 🇯🇲Insane Hot Sauce challenge. Get it @Coles #GoldCoast2018 🔥🔥🔥🔥🔥🔥 https://t.co/RjNctrbHvT +04/16/2018,Sports_celeb,@usainbolt,My 🇯🇲Insane Hot Sauce here in Australia #GoldCoast2018 🔥🔥🔥 https://t.co/ByolrMciQz +04/15/2018,Sports_celeb,@usainbolt,Mr Dj #GoldCoast2018 #CommonwealthGames #ClosingCeremony https://t.co/1JgSXSaOOP +04/15/2018,Sports_celeb,@usainbolt,"RT @7CommGames: No your eyes do not deceive you, @usainbolt is on the decks at the #GC2018 Closing Ceremony. + +#7CommGames #ShareTheDream ht…" +04/15/2018,Sports_celeb,@usainbolt,##BeyChella +04/14/2018,Sports_celeb,@usainbolt,Proud of our #SunshineGirls #TeamJamaica #GoldCoast2018 #CommonwealthGames https://t.co/d6hErVgEZG +04/14/2018,Sports_celeb,@usainbolt,Let’s Go Girls #SunshineGirls #GoldCoast2018 #CommonwealthGames2018 https://t.co/MRXlG2awQg +04/14/2018,Sports_celeb,@usainbolt,Supporting our Netball Girls #TeamJamaica #PresidentMollyRhone https://t.co/9flPqSJuDR +04/14/2018,Sports_celeb,@usainbolt,Watching the relay just now made me ask myself a few questions. Anyhow #TeamJamaica all day everyday #GoldCoast2018 #CommonwealthGames +04/14/2018,Sports_celeb,@usainbolt,Did I retire too soon? Hmmm +04/13/2018,Sports_celeb,@usainbolt,All Black Everything @JohnSteffensen #GoldCoast2018 https://t.co/8JlgqI2Oq1 +04/13/2018,Sports_celeb,@usainbolt,Please follow & support @able2uk today as the disabled awareness organisation celebrates its 17th anniversary #able2uk +04/12/2018,Sports_celeb,@usainbolt,New Levels ##GoldCoast2018 #CommonwealthGames https://t.co/8cJQqXEKtM +04/12/2018,Sports_celeb,@usainbolt,RT @DIGICELJamaica: Sherika Jackson was presented with her #GC2018 Commonwealth Games silver medal by #ChiefSpeedOfficer @UsainBolt. 🥈😊 ht… +04/12/2018,Sports_celeb,@usainbolt,RT @DIGICELJamaica: #ChiefSpeedOfficer @usainbolt during a press conference on day 8 of the Gold Coast 2018 Commonwealth Games at #GC2018 C… +04/12/2018,Sports_celeb,@usainbolt,"The god of Thunder & Lightning Bolt. + +Thunder & Bolt + +Real Thor & Real Flash + +@chrishemsworth @Avengers #Thor… https://t.co/5LnwpmmgJJ" +04/12/2018,Sports_celeb,@usainbolt,Infinity War @chrishemsworth #Thor @avengers #GoldCoast #commonwealthgames2018 🙌🏽 https://t.co/3YQjH1DsAz +04/12/2018,Sports_celeb,@usainbolt,Infinity War @chrishemsworth #Thor avengers #GoldCoast #commonwealthgames2018 🙌🏽 @ Carrara Stadium https://t.co/o60a0NRZFr +04/12/2018,Sports_celeb,@usainbolt,RT @7CommGames: The big names are in the house! @usainbolt AND @chrishemsworth are ready for a big night of aths at #GC2018 https://t.co/eG… +04/12/2018,Sports_celeb,@usainbolt,Congrats mi G @jaheelstella #TeamJamaica 🇯🇲 #GoldCoast2018 #CommonwealthGames2018 https://t.co/88N0paYiGE +04/12/2018,Sports_celeb,@usainbolt,Gold for Jamaica 🇯🇲 in Female hurdles https://t.co/EcqeIWMm54 +04/12/2018,Sports_celeb,@usainbolt,“There is no Wealth without Health” @SimmsRicky rickysimms rickysimms #NJ #GoldCoast2018… https://t.co/9h8RQ6ZvUh +04/12/2018,Sports_celeb,@usainbolt,"RT @thecgf: COMMONWEALTH CHAMP USAIN BOLT +“The Commonwealths are very, very important. Very important to the athletes and to the world. The…" +04/12/2018,Sports_celeb,@usainbolt,Press conference #GoldCoast2018 #CommonwealthGames https://t.co/9mnaD0bB80 +04/12/2018,Sports_celeb,@usainbolt,😂😂😂😂 https://t.co/6VeJQMhL3n +04/12/2018,Sports_celeb,@usainbolt,5G means HD Gaming on the go @Optus #GoldCoast2018 #CommonwealthGames https://t.co/jFtbpGe0lW +04/12/2018,Sports_celeb,@usainbolt,My team always working @SimmsRicky #NJ #GoldCoast2018 #CommonwealthGames https://t.co/ta7Rpd0WBX +04/11/2018,Sports_celeb,@usainbolt,RT @7NewsMelbourne: .@usainbolt has arrived on the Gold Coast as an official Games ambassador. Bolt will spend the week watching his fellow… +04/10/2018,Sports_celeb,@usainbolt,"RT @sunriseon7: Breaking news: Usain Bolt has arrived on the Gold Coast for #GC2018 + +@MarkBeretta will be chatting to him this week! https:…" +04/10/2018,Sports_celeb,@usainbolt,Commonwealth Games #GoldCoast https://t.co/DeP6P0iUoK +04/10/2018,Sports_celeb,@usainbolt,"RT @borobi2018: What's cooler than cool? Welcoming the world's fastest man, and my new mate, @usainbolt to the Gold Coast! ⚡⚡⚡ #BOROBI #SHA…" +04/10/2018,Sports_celeb,@usainbolt,Game time https://t.co/3OPCiGHI1P +04/09/2018,Sports_celeb,@usainbolt,"Well done @YohanBlake +Keep putting in the work. You know your journey 🙌🏽🙌🏽" +04/09/2018,Sports_celeb,@usainbolt,Congrats @AkaniSimbine #Gold +04/07/2018,Sports_celeb,@usainbolt,Great win my team @ManUtd 🙌🏽🙌🏽 +04/07/2018,Sports_celeb,@usainbolt,Come on mi team @ManUtd +04/07/2018,Sports_celeb,@usainbolt,Brilliant save me keeper @ManUtd +04/07/2018,Sports_celeb,@usainbolt,Goaall @paulpogba @ManUtd 🙌🏽🙌🏽 +04/06/2018,Sports_celeb,@usainbolt,"RT @toniterp: This is a description of an Olympic race with @usainbolt such a good representation. JSL is so beautiful 😍, the visual repre…" +04/05/2018,Sports_celeb,@usainbolt,🙌🏽🙌🏽🙌🏽🔥 https://t.co/AMETY01Yjg +04/01/2018,Sports_celeb,@usainbolt,The Party is @FunlandJamaica this Easter from 10 am- 7pm April 1-April2nd #funland #Funlandjamaica #familyplayground https://t.co/FEeCU1dBC3 +03/31/2018,Sports_celeb,@usainbolt,My type of Saturday https://t.co/RBTD6hz7hu +03/29/2018,Sports_celeb,@usainbolt,Too quick for me 😂😂 https://t.co/nxRHmBzyfW +03/29/2018,Sports_celeb,@usainbolt,"Bro for life #Repost @princespearmon +・・・ +Who needs enemies when you have friends like these lol.… https://t.co/S7ASRdynQI" +03/29/2018,Sports_celeb,@usainbolt,Breeze @hdcutzuk #fresh #NewLevels https://t.co/16UowWQWV4 +03/29/2018,Sports_celeb,@usainbolt,The Story Teller 🙌🏽🙌🏽 https://t.co/K1wLHrAqKI +03/29/2018,Sports_celeb,@usainbolt,"#Repost ateamlifestyle +・・・ +CANDY COATED X A TEAM +🇹🇹 x 🇯🇲 +. +YUH WAH SPEED?! +. +Carnival Thursday… https://t.co/T67rY3Vx9J" +03/29/2018,Sports_celeb,@usainbolt,Prepping 🙌🏽 https://t.co/wsx30Cgp8h +03/28/2018,Sports_celeb,@usainbolt,Check out @FunlandJamaica post GSAT party on March 30th!! Funland is open March 30th-April 2nd. Are you ready to ha… https://t.co/o2rmtjDqAG +03/28/2018,Sports_celeb,@usainbolt,Always bringing a little of home with me when I’m on the road. I have to bring the good stuff 🔥🔥🔥🔥 https://t.co/yTuJiDvp4n +03/28/2018,Sports_celeb,@usainbolt,Too often we let people tell us we can’t. Well I can and I Will 🙏🏾🙏🏾#DontThinkLimits… https://t.co/oKbp9CK8D7 +03/26/2018,Sports_celeb,@usainbolt,"Level up your personal and business branding with our dynamic marketing services. + +#88elevate +#GetElevated… https://t.co/4uQ1GMI95C" +03/26/2018,Sports_celeb,@usainbolt,#TeamUsain is taking shape @GordonRamsay @piresrobert7 #ClarenceSeedorf .... more big names coming soon! Who you go… https://t.co/5kFJFkvBQz +03/24/2018,Sports_celeb,@usainbolt,"RT @Enertor: ENERTOR Performance Insoles are designed by leading Podiatrists and made with D3O impact protection technology. + +https://t.co…" +03/24/2018,Sports_celeb,@usainbolt,RT @KjeldNuis: Got it 🍾🙏🏻 @usainbolt https://t.co/Us01aO37ry +03/23/2018,Sports_celeb,@usainbolt,New Levels @leonbailey 🇯🇲🇯🇲 https://t.co/dlt1E4lq4k +03/23/2018,Sports_celeb,@usainbolt,Yard man link up @leonbailey #NewLevels 🇯🇲🇯🇲 @ Dortmund https://t.co/FrRBhmYVYN +03/23/2018,Sports_celeb,@usainbolt,New Levels #NextJourney https://t.co/aeOilbnSq9 +03/23/2018,Sports_celeb,@usainbolt,New Levels @pumafootball @bvb 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/UtfJzxdimj +03/23/2018,Sports_celeb,@usainbolt,RT @PACESportsMgmt: Video of Usain’s headed goal at @BVB training https://t.co/YtDeojGpsq +03/23/2018,Sports_celeb,@usainbolt,https://t.co/MfHiGFCicM +03/23/2018,Sports_celeb,@usainbolt,New Levels https://t.co/Y9x86iQrMt +03/23/2018,Sports_celeb,@usainbolt,"RT @BVB: 🗯 @usainbolt: ""It was good! I had fun with the guys, they were very welcoming."" #BVBolt https://t.co/FTkdDyOw7e" +03/23/2018,Sports_celeb,@usainbolt,RT @BVB: ⚽️🏃‍♂️ @usainbolt from the spot 😉 #BVBolt https://t.co/ZyHr9FThjL +03/22/2018,Sports_celeb,@usainbolt,Training day one ✅ @BVB @pumafootball #NewLevels https://t.co/OLfbI2wcwS +03/22/2018,Sports_celeb,@usainbolt,First day of training #BVBOLT #NewLevels @bvb @pumafootball @ Dortmund https://t.co/dN6LvLHcx3 +03/22/2018,Sports_celeb,@usainbolt,First day of training #BVBOLT #NewLevels @bvb09 @pumafootball https://t.co/OmXuhFGf4e +03/22/2018,Sports_celeb,@usainbolt,RT @BVB: 🏃‍♂️ @usainbolt getting ready to train with Borussia Dortmund. #BVBolt https://t.co/KiOlARt5Pv +03/22/2018,Sports_celeb,@usainbolt,New Levels #BVBOLT https://t.co/Uew4euNxYq +03/22/2018,Sports_celeb,@usainbolt,"RT @pumafootball: They said it wouldn’t happen. 👀⚡️ +@UsainBolt @BVB @officialpes +#NewLevels #PUMAFuture https://t.co/WpjE16CHrE" +03/22/2018,Sports_celeb,@usainbolt,"BVB, get ready for Friday. #BVBOLT #NewLevels @bvb @pumafootball https://t.co/jHpaYskkMP" +03/21/2018,Sports_celeb,@usainbolt,New Levels 🙌🏽🙌🏽⚽️⚽️ https://t.co/lXpL5zb5HF +03/21/2018,Sports_celeb,@usainbolt,New Levels 🙌🏽🙌🏽 https://t.co/8LVot1plBJ +03/21/2018,Sports_celeb,@usainbolt,"Great day @hublot match of friendship in Basel 🙌🏽🙌🏽⚽️⚽️ @ Basel, Switzerland https://t.co/gfxaYC0PQo" +03/21/2018,Sports_celeb,@usainbolt,https://t.co/FCSt1bBYQc +03/21/2018,Sports_celeb,@usainbolt,"Great day @Hublot match of friendship in Basel, Switzerland https://t.co/XAnFe393dI" +03/21/2018,Sports_celeb,@usainbolt,"BVB, get ready for Friday. #BVBOLT #NewLevels @bvb09 @pumafootball https://t.co/rO1jNPLtrA" +03/21/2018,Sports_celeb,@usainbolt,"There are moments in football that are eternal, and @Hublot is writing one. #HublotLovesFootball #Baselworld… https://t.co/RJwC56ozAA" +03/21/2018,Sports_celeb,@usainbolt,"There are moments in football that are eternal, and @hublot is writing one. #HublotLovesFootball… https://t.co/hkP4PaB5s4" +03/21/2018,Sports_celeb,@usainbolt,A wonder what we discussing ⚽️josemourinho @hublot https://t.co/zq7l4pSyLJ +03/21/2018,Sports_celeb,@usainbolt,You can image what we discussing #JoseMourinho https://t.co/g1jD8c6iRs +03/21/2018,Sports_celeb,@usainbolt,Left foot specialist ⚽️ https://t.co/Y7xH7Xy3mB +03/21/2018,Sports_celeb,@usainbolt,Football tips from the great #DiegoMaradona https://t.co/FeqS8mie3Y +03/21/2018,Sports_celeb,@usainbolt,Football tips from the great maradona ⚽️🙌🏽 https://t.co/EiwoHs9jj8 +03/21/2018,Sports_celeb,@usainbolt,"March 21, 2018 in Zurich ❄️❄️ https://t.co/vWne8CadE4" +03/20/2018,Sports_celeb,@usainbolt,Australia see you in a few weeks. #TeamJamaica we ready. Are you? #GC2018 https://t.co/YtUWJ8abUR +03/20/2018,Sports_celeb,@usainbolt,From day one they have always been telling me I can’t. #LetsGo #TeamBolt #AnythingIsPossible #DontThinkLimits https://t.co/bQ3sB7XRCo +03/20/2018,Sports_celeb,@usainbolt,From day one they have always been telling me I can’t. #LetsGo #TeamBolt #AnythingIsPossible… https://t.co/0UQ3noZi8g +03/20/2018,Sports_celeb,@usainbolt,🔥🔥🔥🔥 https://t.co/6nTdM2mfjb +03/20/2018,Sports_celeb,@usainbolt,Ready!!!!!! 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/isD8jCUdxC +03/20/2018,Sports_celeb,@usainbolt,1 day to go until #HublotBaselworld 2018! Follow me for an historic match with a line-up that football has never se… https://t.co/wTipzGCoZq +03/18/2018,Sports_celeb,@usainbolt,RT @anneliesvgeest: Hey @usainbolt see this at the @Paralympics ? @jeroenn99 won a gold medale and did your move on medale plaza. https://t… +03/17/2018,Sports_celeb,@usainbolt,Saturday Vibe 🙌🏽🙌🏽 https://t.co/768ApkL8hc +03/16/2018,Sports_celeb,@usainbolt,"Welcome to the @socceraid World XI Gordon. Stay fit, we need you! 🙌 #SoccerAid #TeamUsain https://t.co/2ZWJXlLxwg" +03/16/2018,Sports_celeb,@usainbolt,Sports Day with my godson 🙌🏽🙌🏽 https://t.co/4s0q7ExuzS +06/18/2018,Sports_celeb,@blakegriffin23,@FronQB9 @PardonMyTake i can’t believe i forgot that one +06/17/2018,Sports_celeb,@blakegriffin23,@zerkusberkus haha my apologies. there’s always next time +05/31/2018,Sports_celeb,@blakegriffin23,"RT @TwitterSports: Relationship status: + +⚪️ Single + +⚪️ Taken + +⚪️ It's complicated + +🔘 Shooting my shot on #NBATwitter https://t.co/k2lMp…" +05/09/2018,Sports_celeb,@blakegriffin23,RT @johnlevenstein: Tomorrow at midnight my podcast with @MaryKoCo will finally “drop” and @MindyFurano was kind enough to cut together a p… +04/28/2018,Sports_celeb,@blakegriffin23,and are we positive that’s not me?? https://t.co/QZNwF2Gls1 +04/13/2018,Sports_celeb,@blakegriffin23,congrats @_ajawilson22 !!!! aces got a great one https://t.co/eTcHqhvY8w +04/11/2018,Sports_celeb,@blakegriffin23,bro it was like 8 years ago.... ohhhhh i get it https://t.co/b3quTj2JvJ +04/08/2018,Sports_celeb,@blakegriffin23,man steven adams is so underrated +04/03/2018,Sports_celeb,@blakegriffin23,divincenzo holding it down for the reddish heads. i see you +04/02/2018,Sports_celeb,@blakegriffin23,@YourOldDroog my bad G. i owe you +03/16/2018,Sports_celeb,@blakegriffin23,@haileybaldwin thank you my sweet!! +03/01/2018,Sports_celeb,@blakegriffin23,https://t.co/aHM33Z6TXK https://t.co/vARb01bpkF +02/27/2018,Sports_celeb,@blakegriffin23,"ready to blast off. +3.1.18 https://t.co/FB7tO2zL3H" +02/12/2018,Sports_celeb,@blakegriffin23,good luck to the MACU men’s hoops team tonight!!!! https://t.co/aSZeNpXoEY +02/04/2018,Sports_celeb,@blakegriffin23,👀 unreal @AndreDrummond https://t.co/ZoGOfyb7eS +02/02/2018,Sports_celeb,@blakegriffin23,"thanks, fam! https://t.co/I0GBaSDW11" +02/01/2018,Sports_celeb,@blakegriffin23,"my guy, thank you. glad to be here #detroitbasketball https://t.co/BUb4pOG2TW" +01/31/2018,Sports_celeb,@blakegriffin23,you were a great teammate and an even better person. rest in peace my friend https://t.co/kjUapQXw5W +01/31/2018,Sports_celeb,@blakegriffin23,"congrats, @AndreDrummond well deserved!!! https://t.co/QxS7lwqOCF" +01/30/2018,Sports_celeb,@blakegriffin23,https://t.co/xVoNx2dW83 +01/30/2018,Sports_celeb,@blakegriffin23,https://t.co/1uoIZ0Sxcc +01/27/2018,Sports_celeb,@blakegriffin23,.@NBA don’t make the same mistake twice. my guy @TeamLou23 deserves to be in that all star game. numbers don’t lie. #gotolou +01/27/2018,Sports_celeb,@blakegriffin23,prayers up to @boogiecousins. hate to see that happen. come back stronger and better. +01/17/2018,Sports_celeb,@blakegriffin23,"Extremely proud to tip-off this partnership between the LA Clippers Foundation, Steve Ballmer, and @visiontolearn y… https://t.co/6ati2gcE4k" +01/17/2018,Sports_celeb,@blakegriffin23,@dekker yikes what? +01/16/2018,Sports_celeb,@blakegriffin23,https://t.co/BNAcs1Hfjh +01/12/2018,Sports_celeb,@blakegriffin23,"check out the trailer for this new movie i happen to be in, #TheFemaleBrain, in select theaters February 9th. https://t.co/jkko9Pfd4T" +01/11/2018,Sports_celeb,@blakegriffin23,#nbavote the man in the middle. @DeAndre walking double double +01/11/2018,Sports_celeb,@blakegriffin23,#nbavote sweet louuuuuu @teamlou23 #50ballll +12/16/2017,Sports_celeb,@blakegriffin23,These fires are affecting all of us. The Team Griffin Foundation and I are proud to support @EIFoundation SOCAL Fir… https://t.co/vnDiGXOBwf +12/14/2017,Sports_celeb,@blakegriffin23,moooooooooooooood https://t.co/hbV3XWo4P7 +12/09/2017,Sports_celeb,@blakegriffin23,what an awesome night. thank you to everyone who came to comedy. by blake and supported the Team… https://t.co/jrEnijYgST +12/09/2017,Sports_celeb,@blakegriffin23,comedy. by blake https://t.co/fOhW4tVtnP +12/02/2017,Sports_celeb,@blakegriffin23,RT @OBBPictures: We're. Back. Season 2 of #The5thQuarter is live with three new episodes now. Watch @blakegriffin32 @Kenny_Mayne @FunnyAsia… +12/01/2017,Sports_celeb,@blakegriffin23,"King vs. Kong... a rivalry for the ages and @OBBPictures was there to document. + +Season 2 of the #5thQuarter now o… https://t.co/rYy25bvVqe" +11/19/2017,Sports_celeb,@blakegriffin23,"RT @tcrock23: My boy @j_cowens just put this boy in a casket, my god.. check my reaction on the bench, I’m going nuts lol https://t.co/Ztv…" +11/17/2017,Sports_celeb,@blakegriffin23,Want to get on the scoreboard at the Staples Center? Upload your 15-second #superfan video at… https://t.co/BS8WJVpUq6 +11/09/2017,Sports_celeb,@blakegriffin23,is it pronounced a-kai or a-sigh-ee? https://t.co/neHxtQDBCh +10/25/2017,Sports_celeb,@blakegriffin23,game. clippers. https://t.co/NmmMkzIV15 +10/02/2017,Sports_celeb,@blakegriffin23,RT @patbev21: My boy @MilosTeodosic4 drops dimes. Told y'all!!!! +08/11/2017,Sports_celeb,@blakegriffin23,"New Wave uniform, ready to go Clipper Nation https://t.co/KICrRbAHch" +08/03/2017,Sports_celeb,@blakegriffin23,@rejectedjokes *mute +08/03/2017,Sports_celeb,@blakegriffin23,been dunkin' since the playground days https://t.co/QXWUm10NOe +07/31/2017,Sports_celeb,@blakegriffin23,"honestly, we should do away with championships too. seems dumb to me. participation trophies for everybody. don't @… https://t.co/p78VTsNGZg" +07/27/2017,Sports_celeb,@blakegriffin23,@ChandlerParsons @GoodmanESPN @TeamCP25 parsons from the top rope. my goodness +07/27/2017,Sports_celeb,@blakegriffin23,my #bestfriend @JoeMande has a new special on @netflix and it is truly special. please go watch and enjoy joe's hil… https://t.co/o7UpIRSjUZ +07/20/2017,Sports_celeb,@blakegriffin23,@rejectedjokes thanks for your #support if anybody knows about the #content game it's you. #contentking #nodaysoff +07/11/2017,Sports_celeb,@blakegriffin23,@rejectedjokes he's back!! +07/11/2017,Sports_celeb,@blakegriffin23,"well he did just ""knock that performance out of the park"" so uhhhh yeah maybe get off his back #haters #dale https://t.co/YJf9fi097d" +07/08/2017,Sports_celeb,@blakegriffin23,🙏🏼 +06/20/2017,Sports_celeb,@blakegriffin23,@ChrisF3105 i wish you could see the red mark on my forehead in that picture +06/07/2017,Sports_celeb,@blakegriffin23,congrats @ou_softball!!!! back to back +06/06/2017,Sports_celeb,@blakegriffin23,who is your least favorite friend/acquaintance? please @ them https://t.co/55NlSv6uGQ +06/06/2017,Sports_celeb,@blakegriffin23,fun to watch @ou_softball compete like that. one more but maybe less innings next time +06/02/2017,Sports_celeb,@blakegriffin23,".@edgarwright's new film ""Baby Driver"" is absolutely incredible. such a wild and fun ride. please watch and enjoy https://t.co/NhyC8U7wPS" +05/20/2017,Sports_celeb,@blakegriffin23,"nice try, guy who just got fired from a shampoo company https://t.co/KnHVegZMDF" +05/19/2017,Sports_celeb,@blakegriffin23,"@Joeingles7 no, duh" +05/10/2017,Sports_celeb,@blakegriffin23,@CoachJGamblin go to sleep +04/12/2017,Sports_celeb,@blakegriffin23,Only a few more days to bid on Justice’s one-of-a-kind shoe! I'll match the highest donation for @ChildrensLA https://t.co/euZ25Jd7Nj +04/09/2017,Sports_celeb,@blakegriffin23,wow russ. give that man the mvp. +04/05/2017,Sports_celeb,@blakegriffin23,@_ajawilson22 @LAClippers i got you!!! +03/30/2017,Sports_celeb,@blakegriffin23,"RT @LAClippers: .@blakegriffin32 presents Justice with his own pair of ""Just 5's"" before today's game! (cc: @childrensla) https://t.co/j86L…" +03/29/2017,Sports_celeb,@blakegriffin23,"My guy Justice from CHLA & I teamed up & are proud to present our @Jumpman23 creation tonight- The “Just 5"" -… https://t.co/UGlZzvI7N0" +03/17/2017,Sports_celeb,@blakegriffin23,@JoeMande HBD bestie. it's time people know +03/17/2017,Sports_celeb,@blakegriffin23,@eriklogan_elo thanks E i appreciate it! +03/17/2017,Sports_celeb,@blakegriffin23,@MaalikWayns2 thanks young bul preciate it. keep grinding. +03/17/2017,Sports_celeb,@blakegriffin23,@tommychong @NBA thanks tommy!! +03/17/2017,Sports_celeb,@blakegriffin23,@bosnianbeast27 thanks homie. i appreciate it!! +03/06/2017,Sports_celeb,@blakegriffin23,@jordangretchen happy bdayyyyyy +03/01/2017,Sports_celeb,@blakegriffin23,@youngfollowill spider. anymore brain busters?! +02/10/2017,Sports_celeb,@blakegriffin23,"this is funny, smart, bold and sincere. please watch this and learn something. https://t.co/lsrIFcHWE3" +02/10/2017,Sports_celeb,@blakegriffin23,@lex_love12 hellooooooo +01/30/2017,Sports_celeb,@blakegriffin23,"Sometimes you need help stepping out of ur comfort zone, thanks for helping me see my potential. Be a #MentorIRL… https://t.co/RBUz62ugl3" +01/25/2017,Sports_celeb,@blakegriffin23,an incredible story from @jeffcapel who has been a mentor on and off the court. great coach and an even better pers… https://t.co/wbyX0dLehK +01/16/2017,Sports_celeb,@blakegriffin23,.@JCrossover #NBAVote +01/16/2017,Sports_celeb,@blakegriffin23,.@deandrejordan6 #NBAVote +01/08/2017,Sports_celeb,@blakegriffin23,@sydjohnson32 hiiiiiiii +01/08/2017,Sports_celeb,@blakegriffin23,@maknoj thanks man. it's a safety protocol +01/06/2017,Sports_celeb,@blakegriffin23,great stuff https://t.co/P8lTB0tfTL +01/05/2017,Sports_celeb,@blakegriffin23,🧀 https://t.co/W8dlL7CP79 +01/02/2017,Sports_celeb,@blakegriffin23,RT @LAClippers: RETWEET to vote for @deandrejordan6. #NBAVote ✅🗳 https://t.co/6WsNGzLQBc +01/01/2017,Sports_celeb,@blakegriffin23,"RT @kibblesmith: Population of Twitter: + +1. People making jokes +2. People reporting news +3. People taking all jokes literally and all news…" +12/25/2016,Sports_celeb,@blakegriffin23,@RickGlassman thanks g-ma glass +12/23/2016,Sports_celeb,@blakegriffin23,@JensenClan88 thank you sir +12/23/2016,Sports_celeb,@blakegriffin23,"what I learned from my friend, Wilson https://t.co/yU5ExDnfve" +12/23/2016,Sports_celeb,@blakegriffin23,great team win. 2nd unit was huuuuuge. let's keep it rolling! +12/15/2016,Sports_celeb,@blakegriffin23,the sports world lost a legend today. rest in peace Mr. Craig Sager +12/03/2016,Sports_celeb,@blakegriffin23,"squad. +@jumpman23 https://t.co/QceSIq1cK4" +12/03/2016,Sports_celeb,@blakegriffin23,boomer sooner x big 12 champs +12/02/2016,Sports_celeb,@blakegriffin23,"These guys again 🙄 +Time to take back our courts, @Jumpman23 https://t.co/dW1vyBLlCu" +12/01/2016,Sports_celeb,@blakegriffin23,@morgan_murphy ugh +12/01/2016,Sports_celeb,@blakegriffin23,"@morgan_murphy sorry for the mix up, it all makes sense now. showing the full arsenal with the mid range and finishing at the rim. bravo." +11/30/2016,Sports_celeb,@blakegriffin23,@morgan_murphy @nickthune very happy for you and the spice girls. do we have video evidence of highly contested? +11/29/2016,Sports_celeb,@blakegriffin23,@danlevy @morgan_murphy @nickthune why does that look like harry potter and john c reilly's love child? +11/29/2016,Sports_celeb,@blakegriffin23,"no prob broski. posted to my myspace page + added you to my ""top 8"" i'll dm you venmo account info. cc:… https://t.co/zKNY48Xk9I" +11/24/2016,Sports_celeb,@blakegriffin23,"RT @NFL: .@blakegriffin32 can sling it! 👀 + +@LAClippers are in the house for #WASvsDAL! https://t.co/qCi5ql45Qv" +11/17/2016,Sports_celeb,@blakegriffin23,"me and @deandrejordan6 helping Ketchup and Mustard work through a couples quarrel... +introduction from @google… https://t.co/GOaRmMsEnF" +11/16/2016,Sports_celeb,@blakegriffin23,they're alive!! it'll all make sense tomorrow when @google drops a new film #BeADuo #ad https://t.co/XT08WCnNAx +11/14/2016,Sports_celeb,@blakegriffin23,"C’mon @deandrejordan6, you know you see me! #BeADuo #ad https://t.co/xCNH2gGlVc" +11/14/2016,Sports_celeb,@blakegriffin23,"@danlevy you, me. me, you.. does it even matter?" +11/13/2016,Sports_celeb,@blakegriffin23,here's a sweet pic of me doing the #mannequinchallenge midgame. sorry i can't find the video but… https://t.co/nSdKKrm28s +10/28/2016,Sports_celeb,@blakegriffin23,@SachaKljestan thanks brother i appreciate it. see you soon +10/25/2016,Sports_celeb,@blakegriffin23,the best ever https://t.co/0GiT9HEVyK +10/25/2016,Sports_celeb,@blakegriffin23,cool how you reminded us casually. happy bday bro!! RT @ChandlerParsons: NBA back and my birthday?? Doesn't get much better! +10/24/2016,Sports_celeb,@blakegriffin23,"@DominicannBoyy it's called a ""penalty shootout"" thanks for trying though" +10/24/2016,Sports_celeb,@blakegriffin23,they should have just had both kickers do a soccer-style shootout for the win +10/24/2016,Sports_celeb,@blakegriffin23,@WhitneyCummings @kevingchristy ugh +10/17/2016,Sports_celeb,@blakegriffin23,@snerko do it. i dare you... +10/17/2016,Sports_celeb,@blakegriffin23,@bigcheefjoseph sounds pretty enticing but a little vague on the #deets +10/16/2016,Sports_celeb,@blakegriffin23,@nickthune hahahaha shipping and HANDLING. i get it. +10/12/2016,Sports_celeb,@blakegriffin23,@treykerby @NBATV @TheStarters oh it's on like donkey kong #cballin +10/10/2016,Sports_celeb,@blakegriffin23,@_brendaliliana sorry for the confusion +10/10/2016,Sports_celeb,@blakegriffin23,@katienolan but wait if there's a halftime they would go to their locker rooms right?? +10/10/2016,Sports_celeb,@blakegriffin23,All this heavy breathing seems more locker room-esque than anything #debate +09/25/2016,Sports_celeb,@blakegriffin23,I guess it's easy to assume you made the list of experts. congrats on being right though! https://t.co/SKKhQSazHV https://t.co/LU9KSco3cS +09/23/2016,Sports_celeb,@blakegriffin23,@chrissyteigen thank you. i've never gotten 3 thumbs up before! +09/23/2016,Sports_celeb,@blakegriffin23,To Clippers Fans https://t.co/Z40kQBck1p +09/22/2016,Sports_celeb,@blakegriffin23,@WhitneyCummings ugh i know right?! +09/22/2016,Sports_celeb,@blakegriffin23,@DanWoikeSports thanks homie +09/22/2016,Sports_celeb,@blakegriffin23,"oh you know, just a couple of buddies hangin' out @google Duo https://t.co/ziwSNJ2AYd" +09/22/2016,Sports_celeb,@blakegriffin23,@GabGuerriero_ happy birthday!!! +09/20/2016,Sports_celeb,@blakegriffin23,i watched a documentary on tony robbins and read a bunch of ghandi quotes and then this… https://t.co/4GAAoeaqMC +09/20/2016,Sports_celeb,@blakegriffin23,30 Days in LA. Let me be your guide. @RBSoundSelect https://t.co/GKAItCe6Ec +09/14/2016,Sports_celeb,@blakegriffin23,"@JennyJohnsonHi5 but but but how else are we gonna tell them apart, Jenny?!?!" +09/08/2016,Sports_celeb,@blakegriffin23,@NightChanges125 @ayyditullio I'm not on a flight..... +09/06/2016,Sports_celeb,@blakegriffin23,The perfect combo ...Enjoyed the collab with @jamesroperart to bring my game and #SuperFly5 to life https://t.co/8rP4YIcgaX +08/30/2016,Sports_celeb,@blakegriffin23,@BahamasMusic @JJRedick count me in +08/29/2016,Sports_celeb,@blakegriffin23,@juice_916 @JJRedick that's one I wish I would have said. such a great set. +08/29/2016,Sports_celeb,@blakegriffin23,had the pleasure of being a guest on the multi-talented @JJRedick podcast. listen to us talk about things here https://t.co/0qlJ0tZ4aQ +08/29/2016,Sports_celeb,@blakegriffin23,@representclipps @KevinHart4real he definitely is but picking 4 isn't easy. gotta pay respects to the older guys who paved the way too. +08/28/2016,Sports_celeb,@blakegriffin23,"RT @OU_MBBall: 2 Players Of The Years can create quite the autograph line. + +Great turnout from #SoonerNation today https://t.co/tj5ngBxwD8" +08/28/2016,Sports_celeb,@blakegriffin23,RT @OU_MBBall: Pregame handshake between the coaches. https://t.co/gbRXg0sl86 +08/23/2016,Sports_celeb,@blakegriffin23,@PeterMehlman @Barryathree it's cool @JCrossover is my favorite clipper too +08/16/2016,Sports_celeb,@blakegriffin23,@thesulk I don't do business with kubo anymore. dude gave me a 1 star rating on eBay. and that was BEFORE he was a Hollywood star +08/12/2016,Sports_celeb,@blakegriffin23,"everybody check out my guy @GodfreyComedian special on showtime. he told me to say ""it's really really good"" https://t.co/X8xlpDXWDM" +08/08/2016,Sports_celeb,@blakegriffin23,"RT @JoeMande: Very excited to release my latest music video for @LifeOfDesiigner new 23-second song, ""Tea, Meat, Turnip."" https://t.co/PKV5…" +08/07/2016,Sports_celeb,@blakegriffin23,@rrivero I wish. I still think about it too. +08/03/2016,Sports_celeb,@blakegriffin23,"@SurelyYouJester BEHIND ME, bruh!" +08/03/2016,Sports_celeb,@blakegriffin23,the 80 year old lady paying w/ exact change and coupons behind me in line is pissed bc the credit card chip reader is taking too long +08/02/2016,Sports_celeb,@blakegriffin23,sources gonna source. #sources https://t.co/hKQ3SBR4FY +07/17/2016,Sports_celeb,@blakegriffin23,"RT @davidjonesusa: A recent post from Officer Montrell Jackson, who was shot & killed today in #BatonRouge... I'm in tears man. Jesus. http…" +07/16/2016,Sports_celeb,@blakegriffin23,"@rejectedjokes it's way less messy, man. #try it before you #knock it" +07/16/2016,Sports_celeb,@blakegriffin23,@DanWoikeSports congrats man. didn't you know you had a girlfriend. +07/15/2016,Sports_celeb,@blakegriffin23,@dekker @PardonMyTake #blessed #soreloser #nice +07/11/2016,Sports_celeb,@blakegriffin23,Congrats to the best power forward to ever play the game. It was truly an honor. Winner above all else. #thankyouTD https://t.co/cXAxvKk8z4 +07/11/2016,Sports_celeb,@blakegriffin23,@chrisdelia @nealbrennan never doubted you for a second +07/02/2016,Sports_celeb,@blakegriffin23,"RT @Rachel__Nichols: Guys. +ESPN/TNT just paid the NBA $24 BILLION. Either the owners keep nearly All of it, or half goes to the players. +T…" +07/01/2016,Sports_celeb,@blakegriffin23,"the fact that nobody has legally changed their name to ""sources"" and taken credit for every breaking sports story is insane." +06/30/2016,Sports_celeb,@blakegriffin23,@GabeIkard Jumpman +06/29/2016,Sports_celeb,@blakegriffin23,@jordanzhu @MrSilverScott @MrDrewScott geat show +06/29/2016,Sports_celeb,@blakegriffin23,"@GabeIkard @dekker they say ""don't meet your heroes"" but I'll make an exception" +06/29/2016,Sports_celeb,@blakegriffin23,"sorry, Sam. just letting you know my stance on hgtv's lineup. https://t.co/OJR2Ihtewu" +06/29/2016,Sports_celeb,@blakegriffin23,@dekker fixer upper > flip or flop +06/24/2016,Sports_celeb,@blakegriffin23,Congrats to @buddyhield the Pelicans got a good one. +06/23/2016,Sports_celeb,@blakegriffin23,@dougmcd3 @Joeingles7 a kid named Ben Simmons... not many people know about him but I think he's gonna be good. +06/23/2016,Sports_celeb,@blakegriffin23,@Joeingles7 me +06/22/2016,Sports_celeb,@blakegriffin23,"RT @HYPEBEAST: .@Jumpman23 introduces @blakegriffin32's SuperFly 5s in a trio of colorways. +https://t.co/6VJ5m8v5wJ https://t.co/D1PLhz8gdQ" +06/22/2016,Sports_celeb,@blakegriffin23,"RT @Jumpman23: High flyer. + +Introducing the Jordan #SuperFly5, inspired by @BlakeGriffin32's versatile skill set. +https://t.co/VUqWdZyeMq" +06/20/2016,Sports_celeb,@blakegriffin23,"unbelievable series to watch, congrats to cleveland. very well deserved. lebron and kyrie were next level good." +06/13/2016,Sports_celeb,@blakegriffin23,big thank you @Zegna for a great evening to benefit #TeamGriffin @TeamGriffinEYBL https://t.co/pqKuGPMZMJ +06/13/2016,Sports_celeb,@blakegriffin23,@RonFunches hello Ron! +06/09/2016,Sports_celeb,@blakegriffin23,"@SavedbytheBelzz @PardonMyTake @BarstoolBigCat it's still a long series, my friend" +06/07/2016,Sports_celeb,@blakegriffin23,@JakobeWayne real recognize real +05/31/2016,Sports_celeb,@blakegriffin23,everybody please vote for my guy @dfranks24 team.. https://t.co/sc89kpeZDZ +05/30/2016,Sports_celeb,@blakegriffin23,@marquisgodwin_ good luck to you bro. keep hoopin. +05/29/2016,Sports_celeb,@blakegriffin23,@GabeIkard team pup n suds > team x-bladz +05/29/2016,Sports_celeb,@blakegriffin23,big fan of zelda. even bigger fan of hamilton now. https://t.co/pZBVFzqMFV +05/26/2016,Sports_celeb,@blakegriffin23,"The #RedNoseDay Special is LIVE Tonight at 9/8c on @NBC. Wear your red nose, tune in, & donate! https://t.co/y5afJaxrHJ" +05/24/2016,Sports_celeb,@blakegriffin23,@jordancameron @connerRvernon yeah I do... Colby +05/24/2016,Sports_celeb,@blakegriffin23,@connerRvernon @jordancameron sounds like he's gettin beat like he stole somethin #embarrassing +05/24/2016,Sports_celeb,@blakegriffin23,@connerRvernon @jordancameron ya can't pull ya can't play #tonk +04/19/2016,Sports_celeb,@blakegriffin23,if you’re into apps and like the Earth support #AppsforEarth w/ @World_Wildlife & @AppStore. Go here: https://t.co/FIwIeuyXlI +04/19/2016,Sports_celeb,@blakegriffin23,@rejectedjokes oh that's awkward +04/19/2016,Sports_celeb,@blakegriffin23,forgot to tag you @JCrossover - congrats my man well deserved. #thejamalcrawfordaward https://t.co/3ir3yC93LK +04/18/2016,Sports_celeb,@blakegriffin23,3rd times a charm... +04/16/2016,Sports_celeb,@blakegriffin23,"@danlevy just start talking about ""eating clean"" and they'll accept you as one of their own." +04/16/2016,Sports_celeb,@blakegriffin23,@MintzPlasse Paul Pierce or Chris Paul? I just tell both of them you're in love with them. Thanks man. +04/14/2016,Sports_celeb,@blakegriffin23,"thank you for a lifetime of memories, motivation and inspiration. #mambaday https://t.co/bnZd5auLz3" +04/12/2016,Sports_celeb,@blakegriffin23,@GabGuerriero_ sorry I didn't see it in time! +04/09/2016,Sports_celeb,@blakegriffin23,wow great team win!! if @JCrossover isn't 6th man of the year I don't know who is! +04/06/2016,Sports_celeb,@blakegriffin23,my guy @MaalikWayns2 and @superNOVAtbt need your votes. go to https://t.co/k37wKNumJn and vote for #supernovatbt #supernova +04/04/2016,Sports_celeb,@blakegriffin23,@Atencio thanks man! I was pumped to be back out there. +04/03/2016,Sports_celeb,@blakegriffin23,"Still very very proud of this @OU_MBBall team. Had an amazing year and were so much fun to watch. Hats off to Nova, they're a great team." +04/03/2016,Sports_celeb,@blakegriffin23,@MaalikWayns2 haha I knew that tweet was coming. +03/31/2016,Sports_celeb,@blakegriffin23,thank you so much for having me. had a blast. Keep killing it!! cc: @ilazer https://t.co/iemxQt6X2H +03/26/2016,Sports_celeb,@blakegriffin23,"Let's go, boys. ⭕️🙌🏽." +03/24/2016,Sports_celeb,@blakegriffin23,@kellyoxford that's what you get for having morals. Keep it up and this followers leaving too. +03/24/2016,Sports_celeb,@blakegriffin23,@kumailn Twitter. Twitter is how we got to that point. +03/23/2016,Sports_celeb,@blakegriffin23,"""your whole appearance is a lie and it could never be true and if you really loved yourself then you would try and be you.” rip phife dawg" +03/22/2016,Sports_celeb,@blakegriffin23,Good luck to my guy @CoachJGamblin and his @MACUathletics team tonight in the naia national championship game. +03/21/2016,Sports_celeb,@blakegriffin23,@FSKPart3 @spencerhawes00 hahaha. sweet apartment spence #blessed #nbalife +03/21/2016,Sports_celeb,@blakegriffin23,@JoeMande who else? People wanna know +03/18/2016,Sports_celeb,@blakegriffin23,⭕️🙌🏽 https://t.co/QpBKlcEvUW +03/17/2016,Sports_celeb,@blakegriffin23,@CameronMoulene thanks man! +03/17/2016,Sports_celeb,@blakegriffin23,@JoeMande @nealbrennan joint bar mitzvah? Neal we can accommodate your schedule. Maybe do it at 3 Mics show after party? +03/17/2016,Sports_celeb,@blakegriffin23,@JoeMande is today your birthday? +03/17/2016,Sports_celeb,@blakegriffin23,@clipperdarrell thanks D!! +03/17/2016,Sports_celeb,@blakegriffin23,@tonyjefferson1 thanks brooo +03/17/2016,Sports_celeb,@blakegriffin23,@BarstoolNate these kids don't know how good they have it. thank you sir +03/17/2016,Sports_celeb,@blakegriffin23,Thanks for all the bday wishes everybody!! #latetwenties +06/08/2018,Sports_celeb,@kevinlove,Devastating. Prayers to all of his loved ones. So incredibly sad. https://t.co/4tmqtyjw4X +05/07/2018,Sports_celeb,@kevinlove,"RT @MensHealthMag: Introducing our #HowIGotHelp campaign for #MentalHealthMonth + +""The machismo attitude of stuffing your feelings down, or…" +05/06/2018,Sports_celeb,@kevinlove,Just posted a photo https://t.co/j1HRRTWwsn +04/30/2018,Sports_celeb,@kevinlove,The best thing I did for myself was to admit that I needed help. Know that your mental wellness matters just as muc… https://t.co/GriCzw2deB +04/13/2018,Sports_celeb,@kevinlove,Love what you’re doing my friend!!! You are helping so many 💪🏻💪🏻 https://t.co/LAtD7jAynC +04/12/2018,Sports_celeb,@kevinlove,"There’s so much power in articulating what you’re going through to another person, especially a professional. I wan… https://t.co/oT08tW6G8X" +04/02/2018,Sports_celeb,@kevinlove,@TheRock this is extremely powerful. Thank you. https://t.co/Po0vJIFJXU +04/02/2018,Sports_celeb,@kevinlove,Hahaha!!! Gotta give the people what they want. https://t.co/ap9c4uVVAy +03/31/2018,Sports_celeb,@kevinlove,So much respect and admiration for these 4 right here. Congrats on the HOF nods. https://t.co/givtajlLIg +03/30/2018,Sports_celeb,@kevinlove,@mcten Hell of an angle Dave. 🙌🏻🙌🏻 +03/28/2018,Sports_celeb,@kevinlove,"”Man, you are one pathetic loser!” -I’m Lloyd Christmas bro........new mood. https://t.co/c75EgRPOuF" +03/28/2018,Sports_celeb,@kevinlove,"Man, I appreciate you @ShockDoctor ...could have been so much worse if I wasn’t protected with your mouthguard. Tha… https://t.co/6rIsc0Deyo" +03/23/2018,Sports_celeb,@kevinlove,Everyone is going through something. Sat down with @Channing_Frye to talk about continuing the conversation around… https://t.co/FZNwkllMZd +03/22/2018,Sports_celeb,@kevinlove,"1,000 career 3’s tonight. It’s only right the pass came from @kingjames...on a night where he… https://t.co/EZ4y2s0O5s" +03/22/2018,Sports_celeb,@kevinlove,@KingJames 35pts 17dimes and 0 to’s...sheesh. +03/22/2018,Sports_celeb,@kevinlove,Congrats to @DwightHoward the new Mr. 30/30. Hell of a night!!! +03/21/2018,Sports_celeb,@kevinlove,"Looking forward to following The Rookie: Brendon Hartley. +https://t.co/XMa4IqAZWS" +03/20/2018,Sports_celeb,@kevinlove,Air Bud I f*cking respect you for this... https://t.co/yFHh5enbji +03/20/2018,Sports_celeb,@kevinlove,"Happy to be sharing the court with my brothers again!! Been too long. + +Never easy to get a W… https://t.co/ZuSSwrvQ9U" +03/18/2018,Sports_celeb,@kevinlove,RT @JmCalderon: Maybe the more difficult 1 to get after 12 days on the road but did it!Great effort tonight.After all the injuries it was a… +03/17/2018,Sports_celeb,@kevinlove,"Congrats to Coach K for notching the all time wins (1,099) in Division-1 history. Passed the… https://t.co/R0XJqvKzcc" +03/14/2018,Sports_celeb,@kevinlove,Congrats @JmCalderon on 5K assists. Only 9 active players to do so!! VAMOS!!!! +03/09/2018,Sports_celeb,@kevinlove,Just saw the play...prayers to Jalen Brown. 🙏🏻🙏🏻🙏🏻 +03/08/2018,Sports_celeb,@kevinlove,Strength via @bananarepublic #internationalwomensday 💪🏻💪🏻💪🏻 https://t.co/7nxRfqeOLY +03/08/2018,Sports_celeb,@kevinlove,"Man, @KingJames was on another level tonight!!! Sheesh." +03/08/2018,Sports_celeb,@kevinlove,"#EveryoneIsGoingThroughSomething +https://t.co/355HcQesfI https://t.co/EbPVlIRTw1" +03/07/2018,Sports_celeb,@kevinlove,And Women!!! 💪🏻💪🏻 https://t.co/tt7bTtQPhs +03/07/2018,Sports_celeb,@kevinlove,Grandma!!! 🙌🏻🙌🏻🙌🏻 https://t.co/LW3Wb0H43w +03/07/2018,Sports_celeb,@kevinlove,"Man, love and respect for opening that door for me. You’ve helped more people than you know!! https://t.co/cFjTsUHbIx" +03/07/2018,Sports_celeb,@kevinlove,"This one goes out to Grandma Carol, the star of the day. It’s funny how many of you wrote to me… https://t.co/MkJDQM9CJw" +03/06/2018,Sports_celeb,@kevinlove,"Wow...I can't even describe how grateful I am for the love and support. More than anything, it's been amazing to se… https://t.co/MbjK2LVq0y" +03/06/2018,Sports_celeb,@kevinlove,"RT @PlayersTribune: Earlier this season, @KevinLove had a panic attack. + +Now he wants to talk about it. https://t.co/U5TeITdUb3" +03/06/2018,Sports_celeb,@kevinlove,I’ve never been comfortable sharing much about myself. I thought about mental health as someone else’s problem. I’v… https://t.co/8M1NSb8G3A +03/05/2018,Sports_celeb,@kevinlove,Give me an Oscar nominated film from this year and why I must watch??? Have seen so few... +03/05/2018,Sports_celeb,@kevinlove,Spot on** https://t.co/B6WoS9XbGv +03/05/2018,Sports_celeb,@kevinlove,"Hey man, looks like you spent 2hrs shading in the upper lip. Got my left ear spot...well done. https://t.co/TzPfofdNIi" +03/05/2018,Sports_celeb,@kevinlove,The Shape of Water. Well done. #oscars +03/05/2018,Sports_celeb,@kevinlove,Frances McDormand. Straight passion. Just the best. Love. +03/05/2018,Sports_celeb,@kevinlove,Gary Oldman as Sir Winston Churchill. Darkest Hour. Just great...congrats!! #oscars +03/05/2018,Sports_celeb,@kevinlove,RT @JordanPeele: I just won an Oscar. WTF?!? +03/05/2018,Sports_celeb,@kevinlove,Kobe. #oscars +03/05/2018,Sports_celeb,@kevinlove,"Happy for Allison Janney she was brilliant in I, TONYA!!! #oscars" +03/01/2018,Sports_celeb,@kevinlove,RT @SInow: Kevin Love makes his own contribution to the home of champions https://t.co/JU8NCe09Sp +02/28/2018,Sports_celeb,@kevinlove,@KingJames Only player ever with +30K points +8K assists +8K rebounds ...ONLY PLAYER EVER. 👏🏼👏🏼👏🏼 +02/28/2018,Sports_celeb,@kevinlove,Shareef O’Neal to UCLA!!??? Oh it’s on now!!! 🔥🔥🔥 +02/25/2018,Sports_celeb,@kevinlove,As long as I can remember Phil Knight has always been someone I have idolized. Being a fellow… https://t.co/qrzpwEn9FG +02/24/2018,Sports_celeb,@kevinlove,@barstoolsports Still trying my best to fit in??? Check out this Primo 📦. Once again...jokes on you @barstoolsports https://t.co/uZiMQaDDfu +02/24/2018,Sports_celeb,@kevinlove,"The kids at St Jude have always given me inspiration and perspective. + +Oh, and “sports hate” is healthy...all good… https://t.co/zw4DaT34MT" +02/24/2018,Sports_celeb,@kevinlove,@StJude Strong!!! 💪🏻💪🏻💪🏻 https://t.co/uk26MBNJke +02/19/2018,Sports_celeb,@kevinlove,@GQMagazine Portrait from All-Star Saturday. 💪🏻💪🏻💪🏻 https://t.co/IiuwcnqX4o +02/19/2018,Sports_celeb,@kevinlove,"RT @cavs: From @kevinlove giving back during @NBACares All-Star Day of Service, to @Larrydn22’s incredible #VerizonDunk performance, and @K…" +02/19/2018,Sports_celeb,@kevinlove,The replay on that was 🔥🔥!! @Larrydn22 is gonna have the Q going crazy https://t.co/6KacDHZqFe +02/19/2018,Sports_celeb,@kevinlove,Me too...I appreciate you. Happy and healing. https://t.co/f4QhfcrCIc +02/19/2018,Sports_celeb,@kevinlove,An unbelievable @NBAAllStar weekend capped off with a #teamlebron win and another ASG MVP for @KingJames 😳😳😳 I see… https://t.co/2ROJwqDxXD +02/18/2018,Sports_celeb,@kevinlove,OT Thriller. What a finish on Senior Night for @UCLAMBB!! +02/18/2018,Sports_celeb,@kevinlove,"RT @UCLAAthletics: Great having @kevinlove back in Westwood. + +#GoBruins https://t.co/AJOfU0a3sU" +02/18/2018,Sports_celeb,@kevinlove,Forever a BRUIN. 10 years removed. https://t.co/XTwCkCZQl4 +02/17/2018,Sports_celeb,@kevinlove,"RT @SoleCollector: #SoleWatch: @KevinLove is healing up, but still rocked these Nike React Hyperdunk PEs during All-Star practice. https://…" +02/17/2018,Sports_celeb,@kevinlove,LA! I’ll be at @mountaindew’s Courtside Studios today! Come through to the corner of Pico and Figueroa at 145p to c… https://t.co/F6iq5zDjb1 +02/16/2018,Sports_celeb,@kevinlove,Got to hang out with @marriottrewards members at #NBAAllStar thanks to Marriott Rewards Moments. What experience wo… https://t.co/IPYFEOQutd +02/16/2018,Sports_celeb,@kevinlove,Last Night. Excel. All Smiles. 😬😬😬 https://t.co/S1trniiUy3 +02/16/2018,Sports_celeb,@kevinlove,"RT @NikeLA: ATTN MAKERS: Special appearance by @kevinlove at Nike the Grove. + +Join him today for a special customization experience at the…" +02/16/2018,Sports_celeb,@kevinlove,"Man, can’t wait to see you all!!!! https://t.co/Qsa5Vy9ThT" +02/16/2018,Sports_celeb,@kevinlove,👍🏻👍🏻💪🏻💪🏻 https://t.co/2WUzbUKXP2 +02/15/2018,Sports_celeb,@kevinlove,Sounds like a hell of a look https://t.co/9ZH4m3qM3H +02/15/2018,Sports_celeb,@kevinlove,Unacceptable...on it https://t.co/j9jq6hgsus +02/15/2018,Sports_celeb,@kevinlove,"Yes, I’m hiding it for the Gram/Twitter https://t.co/QjC7kt8qbz" +02/15/2018,Sports_celeb,@kevinlove,Excited to celebrate my upcoming collection BR/K.Love-18. Come see me today from 5-6 p.m. at @bananarepublic at The… https://t.co/DuGv15KZmU +02/14/2018,Sports_celeb,@kevinlove,Prayers to everyone in Parkland Florida 🙏🏻🙏🏻🙏🏻 +02/14/2018,Sports_celeb,@kevinlove,MINE!!! Happy Valentines Day @katebock. Thanks for always having my back!!! ❤️🦒 https://t.co/fpuMAJ3WLq +02/14/2018,Sports_celeb,@kevinlove,RT @esquire: .@kevinlove tells us how his new capsule collection with @BananaRepublic came together https://t.co/8h5wbqF0AH +02/14/2018,Sports_celeb,@kevinlove,Had to get it right lol 💪🏻💪🏻 https://t.co/SWC43xRPYF +02/14/2018,Sports_celeb,@kevinlove,"Yes, and be sure try online for taller sizes... https://t.co/T7yXbBkzki" +02/14/2018,Sports_celeb,@kevinlove,Get in on the action. BR/K.Love-18: The new collection I designed exclusively for @BananaRepublic . Dropping 9-18-2… https://t.co/9uDHCZA5fl +02/14/2018,Sports_celeb,@kevinlove,"Man, hell of a win heading into the All-Star break!! Can’t wait to be back on the floor with these boys!! 💪🏻💪🏻" +02/12/2018,Sports_celeb,@kevinlove,RT @dg_riff: Dan & Jennifer Gilbert have been leading the fight for @ChildrensTumor for years. Nick is the survivors’ survivor. He’ll beat… +02/12/2018,Sports_celeb,@kevinlove,"RT @cediosman: Great teamwork, big win! The Land is on 🔥 #AllForOne" +02/12/2018,Sports_celeb,@kevinlove,"RT @cavs: The new guys showed out tonight on #NBAonABC! +@JordanClarksons: 17 pts, 3 reb, 3-4 3PM, 2 stl +@rodneyhood: 15 pts, 3 reb, 3-6 3PM…" +02/10/2018,Sports_celeb,@kevinlove,"RT @UCLAAthletics: Vote UCLA for Best College for Sports Fans! + +🔗: https://t.co/lciilqqkoW + +#GoBruins https://t.co/vZRpNXtoXv" +02/08/2018,Sports_celeb,@kevinlove,I love and respect the Adelman family so much and am incredibly sad to hear about the passing of RJ. Prayers and co… https://t.co/v6fsLjMCpY +02/07/2018,Sports_celeb,@kevinlove,Hope @kporzee 🦄 is good. Just seeing the replay. Prayers 🙏🏻🙏🏻🙏🏻 +02/06/2018,Sports_celeb,@kevinlove,💪🏻💪🏻💪🏻 https://t.co/h3ldCJErxW +02/01/2018,Sports_celeb,@kevinlove,Starting the rehab process and making sure my foods are locked in with @g_plans. Appreciate you… https://t.co/XsJr4exlhD +02/01/2018,Sports_celeb,@kevinlove,Just saw the Isaiah Canaan news. Prayers for a speedy recovery. Been a tough time in the NBA for injuries. 🙏🏻🙏🏻🙏🏻 +01/31/2018,Sports_celeb,@kevinlove,Incredibly sad news to hear about Rasual Butler and his wife Leah. Prayers to both of their families through this tough time. +01/30/2018,Sports_celeb,@kevinlove,Happy Birthday @katebock!!! You are truly an amazing person. You bring light into so many… https://t.co/EttQPuXPI5 +01/29/2018,Sports_celeb,@kevinlove,"Congrats to @Channing_Frye on his 1,000 career 3’s!!!! 👌🏼👌🏼👌🏼" +01/28/2018,Sports_celeb,@kevinlove,"RT @Nike: Outplay yourself. + +@rogerfederer, Melbourne's defending champion and holder of 19 major titles, just beat his own record, by winn…" +01/27/2018,Sports_celeb,@kevinlove,Prayers to Andre Roberson!!! 🙏🏻🙏🏻 +01/27/2018,Sports_celeb,@kevinlove,@carmeloanthony 25K points. That’s a lot of buckets!!! 💪🏻💪🏻 +01/27/2018,Sports_celeb,@kevinlove,@Channing_Frye Cedi mortified 😂😂😂 +01/27/2018,Sports_celeb,@kevinlove,@unclejeffgreen 😡😡😡 https://t.co/gFdLxfnzpJ +01/27/2018,Sports_celeb,@kevinlove,Hope big fella @boogiecousins is ok!!! Prayers 👏🏼 +01/26/2018,Sports_celeb,@kevinlove,Bench Mob. #TeamLebron #NBAAllStar https://t.co/PqQdGVnahv +01/26/2018,Sports_celeb,@kevinlove,#TeamLebron 🔥🔥🔥 +01/25/2018,Sports_celeb,@kevinlove,Appreciate it @DwyaneWade 🙌🏼🙌🏼 https://t.co/3GxzDCw7sT +01/24/2018,Sports_celeb,@kevinlove,Honored to be selected to my 5th NBA All-Star game and be a part of this elite group headed to… https://t.co/9GZaO3z0tn +01/24/2018,Sports_celeb,@kevinlove,Appreciate it brother 🙌🏼🙌🏼 https://t.co/KHEZkiITAo +01/24/2018,Sports_celeb,@kevinlove,Would be special to end up on the same All-Star team as @KlayThompson ...our families have been friends for a long… https://t.co/IbLV3NrNno +01/24/2018,Sports_celeb,@kevinlove,#rp @nba @kingjames Rarefied Air. 30K and it doesn’t stop there. Crazy to be a part of history… https://t.co/NfRkWut0qj +01/18/2018,Sports_celeb,@kevinlove,Congrats Captain @kingjames!!!!! https://t.co/RAkfon5bAL +01/17/2018,Sports_celeb,@kevinlove,🙌🏼🙌🏼 https://t.co/jubWKHKs5z +01/15/2018,Sports_celeb,@kevinlove,Just posted a photo https://t.co/1kPzgrxJJh +01/11/2018,Sports_celeb,@kevinlove,RT @DwyaneWade: Kevin Love #NBAvote +01/11/2018,Sports_celeb,@kevinlove,RT @DwyaneWade: Lebron James #NBAVote +01/08/2018,Sports_celeb,@kevinlove,@DwyaneWade #nbavote +01/08/2018,Sports_celeb,@kevinlove,RT @isaiahthomas: LeBron James #NBAvote +01/08/2018,Sports_celeb,@kevinlove,RT @cavs: RETWEET to help send @IsaiahThomas to @NBAAllStar! #NBAVOTE https://t.co/NRROupIdRl +01/07/2018,Sports_celeb,@kevinlove,#NBAVote @DwyaneWade +01/07/2018,Sports_celeb,@kevinlove,#NBAVote @KingJames Appreciate the help boiiiiiiii 😳 https://t.co/R8WbUyTRxD +01/07/2018,Sports_celeb,@kevinlove,"#NBAVote @isaiahthomas just ordered 2 pairs of the Mighty IT PE’s!!! + +RT if you’re getting a pair." +01/07/2018,Sports_celeb,@kevinlove,Appreciate it brother!!! https://t.co/yqKVJVJ5pN +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: Isaiah Thomas #NBAVote https://t.co/SlGJIQd5El +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: LeBron James #NBAVote 😏 https://t.co/KbdE037Dml +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: Dwyane Wade #NBAVote https://t.co/mb7XZrjFew +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: Kevin Love || #NBAVote +🚨 RETWEET 🚨 https://t.co/N8ZznSIqyX" +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: LeBron James || #NBAVote +🚨 RETWEET 🚨 https://t.co/dnSrf97DR4" +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: Before you tackle your workout tonight, RETWEET to send @kevinlove to @NBAAllStar! + +BONUS: submit an #NBAVote here → https://t.co…" +12/22/2017,Sports_celeb,@kevinlove,Thanks to everyone at @JohnnieWalkerUS for helping me spread holiday cheer with personalized bottles of Johnnie Wal… https://t.co/M6tugVIJCb +12/13/2017,Sports_celeb,@kevinlove,"RT @cavs: These kids are an inspiration. + +#CavsCare https://t.co/p167QbhjDv" +12/06/2017,Sports_celeb,@kevinlove,Playing the blues with @bananarepublic  https://t.co/qtMRQ2Hwh6 #BRMens https://t.co/5x0o11wB4D +12/01/2017,Sports_celeb,@kevinlove,TPT DDP!! https://t.co/fx8pkfJJ63 +11/26/2017,Sports_celeb,@kevinlove,"Quality, fits and fabrics to power forward. @bananarepublic https://t.co/HRL6I7HZjz https://t.co/Br2sIB0MAj" +11/23/2017,Sports_celeb,@kevinlove,Just gonna leave this right here...Happy Thanksgiving everyone!!! #thanksgiving #thankful https://t.co/5bhqE3IC6G +11/08/2017,Sports_celeb,@kevinlove,Unparalleled craftsmanship and comfort. Suit up in the latest from @bananarepublic. https://t.co/HRL6I7qnUZ https://t.co/IvlxkI55P4 +11/01/2017,Sports_celeb,@kevinlove,Halloween Havoc. 🦂🎃💀🕸🔪💉#wolfpacsting #hollywoodhulkhogan #nwo https://t.co/08ALBb9mIu +10/25/2017,Sports_celeb,@kevinlove,"""We don't have a handshake yet......."" -Me https://t.co/5hJFRR7IuW" +10/19/2017,Sports_celeb,@kevinlove,RT @PlayersTribune: Another incredible night at the Big Shots and Little Stars fundraiser to benefit @flashesofhope and the @ChildrensTumor… +10/18/2017,Sports_celeb,@kevinlove,Opening Night. 10/17/17. 👌🏼👌🏼👌🏼 https://t.co/NHXLznb5dq +10/18/2017,Sports_celeb,@kevinlove,"RT @dg_riff: Please be part of this historic recovery process...#SonomaStrong...where the ""Love in the air is thicker than the smoke."" http…" +10/14/2017,Sports_celeb,@kevinlove,The Triangle will never be the same!!! 📐 So much can be said about RJ...but the truth is we… https://t.co/Zt4eb0NSl6 +10/08/2017,Sports_celeb,@kevinlove,"Connie Hawkins was the reason I chose to wear ""42"" as a young kid in Portland, Oregon. My father… https://t.co/PPpfW6CaN9" +10/05/2017,Sports_celeb,@kevinlove,"RT @PlayersTribune: On a Thursday night a few weeks ago in Cleveland, @a_miller48 realized something important about this @Indians team. ht…" +10/02/2017,Sports_celeb,@kevinlove,"RT @imanshumpert: Goodmorning, continue to keep love in our hearts. Spread love always. My heart out to all those affected by Vegas shootin…" +10/02/2017,Sports_celeb,@kevinlove,RT @KingJames: Pray for Vegas!! 🤦🏾‍♂️. What the hell is going on people!?!? My prayers sent to the heavens above for all the families 🙏🏾 ht… +09/28/2017,Sports_celeb,@kevinlove,A great dinner calls for the perfect suit @bananarepublic https://t.co/0BnO8jpqpD #BRMens https://t.co/ueV2086otk +09/26/2017,Sports_celeb,@kevinlove,Season X. Look forward to this journey!!! #backatit #cavs #season10 #brotherhood https://t.co/mOCQCA4vQ1 +09/23/2017,Sports_celeb,@kevinlove,RT @CP3: Please support my brother @carmeloanthony as he helps the people of Puerto Rico with their hurricane relief efforts #BiggerThanBas… +09/22/2017,Sports_celeb,@kevinlove,"Funny thing is-cause his friends are so dope, that kid will get plenty of primo 📦 as he gets older. Trust me. Jokes… https://t.co/owCLzTQ8aL" +09/21/2017,Sports_celeb,@kevinlove,9.21.17 @ UCSB - UC Santa Barbara https://t.co/fv933Z8Qlq +09/21/2017,Sports_celeb,@kevinlove,"From my good friend @jjbareapr +https://t.co/ax0hJ5ToV9" +09/11/2017,Sports_celeb,@kevinlove,Warmup w/ the Champ @rafaelnadal ...Congrats on the US Open win. 🏆X16 https://t.co/AuKzrJIx7Z +09/11/2017,Sports_celeb,@kevinlove,RT @PlayersTribune: Tim Duncan is asking for your help for the people of the U.S. Virgin Islands to steadily rebuild their lives: https://t… +09/09/2017,Sports_celeb,@kevinlove,HBD to @TheRealJRSmith my brother and all time favorite. He has become family thanks to CLE and is one of the best dudes I've ever met!! +09/08/2017,Sports_celeb,@kevinlove,Better late than never...appreciate all the birthday love and wishes yesterday!!! Truly appreciated and special. +09/06/2017,Sports_celeb,@kevinlove,Switched up the game...still got ugly on both sides 🃏🃏🃏 https://t.co/HO2kfDRdkM +09/06/2017,Sports_celeb,@kevinlove,United Salad/Portland Legends PG...only IT will understand. 🙌🏼🙌🏼 https://t.co/3QLq0A2vLT +09/06/2017,Sports_celeb,@kevinlove,Thought this was pretty spot on...thoughts??? 😎😎 #virgoseason #Sep7 https://t.co/TEZ4pKzoo9 +09/05/2017,Sports_celeb,@kevinlove,Nothing beats a perfectly tailored suit https://t.co/oe62Dr4wIc @bananarepublic #BRMens #BRxKevinLove https://t.co/mJa9gyzYRr +09/04/2017,Sports_celeb,@kevinlove,"Quick getaway to Napa now back to work!!! Man, that was a serious heat wave up… https://t.co/Wk0Wm1AZda" +09/04/2017,Sports_celeb,@kevinlove,Man Josh Rosen is a problem!!!!What a win...🔥🔥🔥 @UCLAFootball +08/28/2017,Sports_celeb,@kevinlove,The end of that #GameOfThonesfinale tho.........................👀👀👀 +08/28/2017,Sports_celeb,@kevinlove,RT @KingJames: #Pray4Houston🙏🏾 +08/27/2017,Sports_celeb,@kevinlove,When Conor talks way too fast>>>>> +08/27/2017,Sports_celeb,@kevinlove,#composure +08/27/2017,Sports_celeb,@kevinlove,Man a lot of heart!!! But 50-0....sheesh!! Respect for both of these guys. History. +08/27/2017,Sports_celeb,@kevinlove,I think Floyd won that round??? +08/27/2017,Sports_celeb,@kevinlove,Gives me chills just thinking about it...😂😂😂💀💀💀 https://t.co/XgdHkYKEDw +08/25/2017,Sports_celeb,@kevinlove,"#rp @katebock as they say in GOTs...""I wish you good fortune in the wars to come"". +Thank you… https://t.co/IuvFsbr6nN" +08/24/2017,Sports_celeb,@kevinlove,"Got to rally w/ world #1 tonight... +🇪🇸 vs 🇺🇸 🎾🎾🎾 @ New York, New York https://t.co/4prF6ho4pq" +08/10/2017,Sports_celeb,@kevinlove,My good friend Rob Mac!! https://t.co/Dq66nhYuoy +07/25/2017,Sports_celeb,@kevinlove,"RT @BananaRepublic: Pro athletes @kevinlove, @CJMcCollum, @DidiG18 & @M_Ryan02 showing you how they wear the new Rapid Movement Chino. http…" +07/25/2017,Sports_celeb,@kevinlove,The new Rapid Movement Chinos from @BananaRepublic are ready for anything and always keep their fit… https://t.co/xhYvLCsZYH +07/21/2017,Sports_celeb,@kevinlove,Life is amazing. No complaints. Things are a little peculiar. But no complaints. Now go kick some rocks 🙌🏼 https://t.co/Tz62YyGeYt +07/20/2017,Sports_celeb,@kevinlove,NBA Champion X3. 7 straight Finals. Came to work and proved his worth every day. A mentor to me.… https://t.co/qSncE50Ujc +07/17/2017,Sports_celeb,@kevinlove,I wish Oberyn Martell were still alive #GameOfThrones +07/16/2017,Sports_celeb,@kevinlove,THE MAN DIDN'T DROP A SET 🐐 +07/16/2017,Sports_celeb,@kevinlove,🏆X19 +07/16/2017,Sports_celeb,@kevinlove,☝🏼 more game +07/16/2017,Sports_celeb,@kevinlove,One set from #8 at #wimbledon +07/16/2017,Sports_celeb,@kevinlove,Rogggggggerrrrrrr 🙌🏼🙌🏼 +07/14/2017,Sports_celeb,@kevinlove,11th Wimbledon Final appearance!!! +07/14/2017,Sports_celeb,@kevinlove,Roger 🐐 +07/14/2017,Sports_celeb,@kevinlove,Tiebreak 2. Same result. 2 sets Fed. +07/14/2017,Sports_celeb,@kevinlove,How do you hit that shot??? Federer. Sheesh. #Wimbledon +07/13/2017,Sports_celeb,@kevinlove,"2007 + 📷: @slamonline https://t.co/2lz3E8U8Jd" +07/10/2017,Sports_celeb,@kevinlove,Incredible match. Hell of a battle. So much respect for Rafa. So much fight. Gotta be a great feeling for Muller. Composed the whole time. +07/10/2017,Sports_celeb,@kevinlove,Next level. 28 straight service holds hahaha https://t.co/B8UnbHM95a +07/10/2017,Sports_celeb,@kevinlove,EVERYTHING https://t.co/bf9TK2vlkb +07/10/2017,Sports_celeb,@kevinlove,Fed since day 1. But hard not to be a fan of this... https://t.co/Dui4J6zkte +07/10/2017,Sports_celeb,@kevinlove,Crazy..I would have done the same https://t.co/H4W7yUtSqd +07/10/2017,Sports_celeb,@kevinlove,Haha crowd has to stand to try and rid the reflection. 4hrs 19min and counting. +07/10/2017,Sports_celeb,@kevinlove,This Nadal vs Muller match has been incredible. Wow. +07/09/2017,Sports_celeb,@kevinlove,"Stay cool. #freetomove #saxxunderwear +😎🔥🔥🔥 https://t.co/Xgbj6bYQlP" +06/27/2017,Sports_celeb,@kevinlove,Congrats to @russwest44 for finishing his historic+unforgettable season with the #NBAMVP. Unbelievable what you've accomplished brother. +05/30/2017,Sports_celeb,@kevinlove,Just posted a photo https://t.co/zrxUeJIyvQ +05/26/2017,Sports_celeb,@kevinlove,"Still work to be done but last night was a good one. #defendtheland +(📷: jdg7873 + @cavs) https://t.co/gmyry6Fk6h" +05/26/2017,Sports_celeb,@kevinlove,Podium squad with the All Time Post Season Scoring Leader. Eastern Conference Champs X3!!! @ TD… https://t.co/mPps4yXvju +05/16/2017,Sports_celeb,@kevinlove,"RT @ShockDoctor: Good Luck in the Eastern Conference Finals @kevinlove 🔥 +#DefendtheLand #GuardYours https://t.co/JMZqmyU1DK" +05/10/2017,Sports_celeb,@kevinlove,Hangin' in a classic summer suit. Performance fiber & great tailoring-a perfect combo https://t.co/DDfTmyZjkj… https://t.co/a8cgA8gLzI +05/09/2017,Sports_celeb,@kevinlove,Need this framed. Just a great pic from Round 2!!! 👌🏼👌🏼👌🏼 https://t.co/dnlqWc89eq +04/25/2017,Sports_celeb,@kevinlove,A shirt that has non-iron technology and is 100% stretch cotton? perfect. https://t.co/KeotrwxoTF @BananaRepublic… https://t.co/zLpySjWRuE +04/14/2017,Sports_celeb,@kevinlove,"RT @PlayersTribune: During the toughest year of his life, @Channing_Frye found comfort in a familiar place. + +His @Cavs family: https://t.co…" +04/12/2017,Sports_celeb,@kevinlove,"Inspired by the Pacific NW, Clint Eastwood, & Americana launching my new collab w @saxxunderwear… https://t.co/brqvJSqZlM" +04/09/2017,Sports_celeb,@kevinlove,History made @russwest44!! Unbelievable season so far brother. 42 triple doubles...AND THE GAME WINNER HAHA!!! Wow. #WhyNot #42 #Day1 #Ern +04/03/2017,Sports_celeb,@kevinlove,Want to win some mouth guards? Just RT & Follow @ShockDoctor to win! #GuardYours https://t.co/lGAWtofs21 +04/01/2017,Sports_celeb,@kevinlove,Final Four selection: Oregon. Dad played there from 68-71. Nothing but great memories of taking… https://t.co/C6FuLBdKmm +03/25/2017,Sports_celeb,@kevinlove,"Wait...70!!! 👀👀👀👀👀👀 +SHEESH" +03/23/2017,Sports_celeb,@kevinlove,Happy Birthday to my brother @KyrieIrving ...can't wait to see what's next. Keep being you!! +03/21/2017,Sports_celeb,@kevinlove,On the move in clothes that work as hard as I do https://t.co/3fz2oj2fJj @BananaRepublic #BRxKevinLove https://t.co/ypHwwQd4yv +07/01/2018,Sports_celeb,@mistyonpointe,ktwil14 catehurlin @zhongjingfang Get ready for an incredible change and the start to a beautiful new chapter!… https://t.co/HWkuTPiKSV +06/30/2018,Sports_celeb,@mistyonpointe,RT @wkamaubell: Whoah! #PrivateSchoolNegro on @NetflixIsAJoke is Revolutionary Ballet Dancer Approved! #RBDA https://t.co/GfTzFLDWrR +06/30/2018,Sports_celeb,@mistyonpointe,Yasssss @wkamaubell Good stuff here. Loving the real and hilarious talk bout the mixed kid experience in USA in thi… https://t.co/IddBR8uJGN +06/30/2018,Sports_celeb,@mistyonpointe,"Yaaasssss girls! Congratulations on your promotions. Strength, perseverance, patience and sheer hard work, got thes… https://t.co/Hl58NydDoL" +06/30/2018,Sports_celeb,@mistyonpointe,"RT @UAnews: .@UnderArmour hosted workouts in LA this week and, boy, can our clothing really survive the heat. + +This @MistyonPointe Signatu…" +06/29/2018,Sports_celeb,@mistyonpointe,https://t.co/LvANJ2AZYr +06/28/2018,Sports_celeb,@mistyonpointe,"#Repost raphaelaneihausen +・・・ +Curtain call of Don Quixote, danced sublimely by mistyonpointe and @jeffreycirio. If… https://t.co/oNqVXvIfry" +06/27/2018,Sports_celeb,@mistyonpointe,"❤️❤️❤️ love you #Repost enriqueanayaofficial +・・・ +STORY TIME!! I remember when I first got to New York, the first pe… https://t.co/F5PO5ClhjA" +06/24/2018,Sports_celeb,@mistyonpointe,I love you and @courtneybvance like fam! @ImAngelaBassett thank you for coming out to support us!! @ABTBallet… https://t.co/2xsJh3u4i7 +06/24/2018,Sports_celeb,@mistyonpointe,🎉🎉🎉 #warriors #DubNation Ballerina Misty Copeland is a bigger Golden State Warriors fan than you https://t.co/p37FET0QJC +06/24/2018,Sports_celeb,@mistyonpointe,Misty Copeland lights up Met stage during ABT’s season: https://t.co/QzWQIiNLRi +06/21/2018,Sports_celeb,@mistyonpointe,RT @FrankieStokes20: Thank you @mistyonpointe for taking the time to greet us after the show! It was truly an experience I will never forge… +06/17/2018,Sports_celeb,@mistyonpointe,❤️❤️❤️ #RomeoAndJuliet @RobertoBolle https://t.co/uNRbyJQy8v +06/17/2018,Sports_celeb,@mistyonpointe,My Romeo’s!!❤️❤️❤️ Thank you @herman_cornejo and… https://t.co/BbKvCDf3hT +06/16/2018,Sports_celeb,@mistyonpointe,"RT @daniil: Photo: About to embark, again, on a 3-act rite of passage also known as Romeo in McMillan‘s “Romeo & Juliet” alongside my lumin…" +06/15/2018,Sports_celeb,@mistyonpointe,"Love this #Repost @mistyonpointe +・・・ +The most… https://t.co/NJzVzLKt7h" +06/15/2018,Sports_celeb,@mistyonpointe,Yes my love! @erica_lall Is Ready to Take Center Stage https://t.co/bvl7ErS8vO via @ELLEmagazine +06/14/2018,Sports_celeb,@mistyonpointe,https://t.co/mXROXXCrQh +06/14/2018,Sports_celeb,@mistyonpointe,"RT @Artsykc: Another finished painting. I've been completely captivated and inspired by @mistyonpointe so I just had to paint her. +#digital…" +06/13/2018,Sports_celeb,@mistyonpointe,"RT @BeccaLee22: last night i saw abt’s romeo and juliet, at the met, and the three principals were an african american, an argentinian, and…" +06/11/2018,Sports_celeb,@mistyonpointe,"⁦@HenryLeutwyler⁩ 📸.#Repost @artbytee.exe +・・・ +“Caught” . +. +. +#processing #blackart #blackartists #java… https://t.co/ABJQRk3oGX" +06/09/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: Design details on pointe. Our #UAMistySignature Collection features feminine cuts and premium fabrics for women to feel co… +06/09/2018,Sports_celeb,@mistyonpointe,"RT @warriors: What's it feel like to be a back-to-back NBA Champion? + +Hear Steve Kerr's immediate reactions postgame 🗣️ https://t.co/24NBju…" +06/09/2018,Sports_celeb,@mistyonpointe,"RT @warriors: How you livin', @StephenCurry30 ? #StrengthInNumbers 🏆🏆 https://t.co/OyGRO0PYtq" +06/09/2018,Sports_celeb,@mistyonpointe,RT @LaurenceScott: Warriors Sound LIVE in Cleveland -- LISTEN NOW to Postgame Celebration: https://t.co/T7xX5Xm27w https://t.co/elt2466LnN +06/09/2018,Sports_celeb,@mistyonpointe,Roberto Bolle and Misty Copeland - Romeo and Juliet https://t.co/SPnwlQjxOE via @YouTube Fave role hands down!!! 😭😭… https://t.co/U4gs1rUFVp +06/08/2018,Sports_celeb,@mistyonpointe,"RT @mistyonpointe: Snack game on pointe with @nakedjuice’s new Fruit, Nut & Veggie Bars – a powerful mix of high-quality ingredients that h…" +06/08/2018,Sports_celeb,@mistyonpointe,Thank you for posting this @GildaSquire ❤️❤️❤️ I… https://t.co/dRBpWbbhXQ +06/08/2018,Sports_celeb,@mistyonpointe,Never old. Wise. https://t.co/h9m1g8bsmC +06/08/2018,Sports_celeb,@mistyonpointe,"RT @Becauseofthem: In honor of what would have been Prince's 60th birthday today, here's the music icon performing his classic ""The Beautif…" +06/08/2018,Sports_celeb,@mistyonpointe,RT @DrPenK: Happy Birthday! Prince will forever be my favorite artist & @mistyonpointe my favorite dancer! #icons @keithlewis890 @TaylorKan… +06/06/2018,Sports_celeb,@mistyonpointe,Hey everyone! Next for the @ABTBallet spring… https://t.co/UoLZ9ksDNy +06/05/2018,Sports_celeb,@mistyonpointe,RT @mistyonpointe: @ballet_conrad I want to thank you for taking the time to do this. I did not understand the totality of what you meant n… +06/05/2018,Sports_celeb,@mistyonpointe,"I wholeheartedly agree with your assessment. It’s an issue that does need to be addressed, and I hope I can be a pa… https://t.co/WErQiuwLbK" +06/05/2018,Sports_celeb,@mistyonpointe,@ballet_conrad I want to thank you for taking the time to do this. I did not understand the totality of what you me… https://t.co/1P9bG40aNn +06/04/2018,Sports_celeb,@mistyonpointe,Always Awesome Misty Copeland Paganini will love it Dance open https://t.co/faffOxhpsD via @YouTube +06/03/2018,Sports_celeb,@mistyonpointe,RT @Cosmopolitan: .@mistyonpointe is so freakin' inspiring—read about her rise to ballerina fame here: https://t.co/w9GLwA15te https://t.co… +06/01/2018,Sports_celeb,@mistyonpointe,Love this girly with all my heart. @isabellaabt… https://t.co/s4FpjrFat8 +06/01/2018,Sports_celeb,@mistyonpointe,"RT @mistyonpointe: @nycarts NYC-ARTS Full Episode: May 31, 2018 https://t.co/H9GRdEdYFF @ABTBallet #IrinaKolpakovo ❤️❤️❤️❤️🙌🏾🙌🏾🙌🏾" +06/01/2018,Sports_celeb,@mistyonpointe,"@nycarts NYC-ARTS Full Episode: May 31, 2018 https://t.co/H9GRdEdYFF @ABTBallet #IrinaKolpakovo ❤️❤️❤️❤️🙌🏾🙌🏾🙌🏾" +06/01/2018,Sports_celeb,@mistyonpointe,"RT @warriors: FORGOT +ABOUT +DRAY https://t.co/atGS9NqP2V" +06/01/2018,Sports_celeb,@mistyonpointe,"RT @warriors: HUGE #SPLASH 💦 from @KlayThompson. #NBAFinals #StrengthInNumbers +📺 #NBAonABC https://t.co/BBWAANhSys" +06/01/2018,Sports_celeb,@mistyonpointe,RT @micahGjordan: @ariaEjordan @mistyonpointe Proud brother! https://t.co/Fuf6Wnj2tg +05/30/2018,Sports_celeb,@mistyonpointe,"I don’t always. Lol. But it’s so important. When people don’t believe it actually happens, I want to give examples… https://t.co/Ik7jon15cS" +05/30/2018,Sports_celeb,@mistyonpointe,"I don’t do this to engage or give these people a voice, but to inform people and ignite the conversation of racism… https://t.co/e906TieG9n" +05/30/2018,Sports_celeb,@mistyonpointe,It’s important to me that the world see’s the very real resistance dancers of color experience in ballet. It’s not… https://t.co/teWmEX8TuV +05/29/2018,Sports_celeb,@mistyonpointe,Love you😘 https://t.co/ctfLpoMVSS +05/29/2018,Sports_celeb,@mistyonpointe,@stanverrett Thank you 🙏🏾🙌🏾 +05/29/2018,Sports_celeb,@mistyonpointe,RT @stanverrett: @mistyonpointe brought 15 family members to see you in “Firebird” Saturday night for my mom’s birthday. First time at a ba… +05/28/2018,Sports_celeb,@mistyonpointe,It’s not about who can afford what. It’s representation. It’s about young black girls seeing a black woman with a b… https://t.co/B7hoX6YML1 +05/28/2018,Sports_celeb,@mistyonpointe,RT @CNN: Misty Copeland is the first female African-American principal dancer in the American Ballet Theatre. She says partnering with bran… +05/28/2018,Sports_celeb,@mistyonpointe,I will forever fight the good fight! ❤️❤️ https://t.co/pUmlTZ97tc +05/27/2018,Sports_celeb,@mistyonpointe,#Firebird Representation is necessary and… https://t.co/f1rAEYOZ5l +05/27/2018,Sports_celeb,@mistyonpointe,Bye #firebird A role that changed my career and… https://t.co/iK4SZ2kjIl +05/26/2018,Sports_celeb,@mistyonpointe,RT @TheRealDWalker: They are all so excited to see @mistyonpointe. Wow what an inspiration @mistyonpointe must be to so many little girls!… +05/26/2018,Sports_celeb,@mistyonpointe,😭😭 We love you waynemcgregor #Repost… https://t.co/zit8PG8M3r +05/26/2018,Sports_celeb,@mistyonpointe,Last chance to catch #Firebird tonight… https://t.co/zdq5spAYy8 +05/26/2018,Sports_celeb,@mistyonpointe,RT @The_Real_IMAN: #imandaily @mistyonpointe #MistyCopeland https://t.co/WgVt6i1klA +05/26/2018,Sports_celeb,@mistyonpointe,RT @BlueRose2008: @mistyonpointe and @CalvinRoyalIII watching you two dance together tonight I couldn’t help but smile! #BlackExcellence +05/25/2018,Sports_celeb,@mistyonpointe,"RT @Moments30: ""It was an opportunity for these little brown girls and boys to be able to look at me and see themselves and see a future fo…" +05/25/2018,Sports_celeb,@mistyonpointe,RT @cnnpodcasts: Legendary ballerina Misty Copeland says her purpose today is so much bigger than ballet. On the latest #BossFiles #podcast… +05/24/2018,Sports_celeb,@mistyonpointe,"Snack game on pointe with @nakedjuice’s new Fruit, Nut & Veggie Bars – a powerful mix of high-quality ingredients t… https://t.co/Az6gfd1yfT" +05/24/2018,Sports_celeb,@mistyonpointe,❤️😘 https://t.co/SEzCbLhJy7 +05/24/2018,Sports_celeb,@mistyonpointe,Absolutely in love with this gown!! Ugh… https://t.co/pxK6T5HUQr +05/23/2018,Sports_celeb,@mistyonpointe,RT @warriors: Dubs up! https://t.co/2I00vGsma4 +05/23/2018,Sports_celeb,@mistyonpointe,"RT @NBA: 5⃣ TRIPLES in the 3rd for Steph Curry! 🎯🎯🎯🎯🎯 + +#DubNation @NBAonTNT https://t.co/WZ5bot9TBs" +05/21/2018,Sports_celeb,@mistyonpointe,"Ha! Nice one...Take a listen, maybe you’ll learn something about someone else’s experiences https://t.co/DUDkUxeqTO" +05/21/2018,Sports_celeb,@mistyonpointe,"RT @PoppyHarlowCNN: ""The ballet world doesn't really celebrate or have women of color"" @mistyonpointe tells me in a new #BossFiles episode…" +05/19/2018,Sports_celeb,@mistyonpointe,"RT @PatKidsday: @mistyonpointe What an honor to have our Kidsday reporters meet Misty Copeland,Female Principal Dancer for American Ballet…" +05/13/2018,Sports_celeb,@mistyonpointe,"RT @TheRoot: Misty Copeland (@mistyonpointe) is a legit fan of @Drake's. + +Here's how she got charmed into being in Drake's ""Nice for What""…" +05/12/2018,Sports_celeb,@mistyonpointe,"RT @TheRoot: Misty Copeland (@mistyonpointe) is a big @Drake fan. + +She charmed the world as the American Ballet Theatre's first female Afr…" +05/07/2018,Sports_celeb,@mistyonpointe,"RT @PoppyHarlowCNN: Still smiling from this amazing hour I spent today with @mistyonpointe who told me ""my purpose is to make people feel t…" +05/06/2018,Sports_celeb,@mistyonpointe,"RT @UnderArmour: .@mistyonpointe has inspired a generation of young women to be fearless. Together, we have created a collection that bridg…" +05/04/2018,Sports_celeb,@mistyonpointe,Misty Copeland on How a Devastating Injury Almost Derailed Her Career https://t.co/fjHcX2oSR9 via @Cosmopolitan +05/03/2018,Sports_celeb,@mistyonpointe,RT @POPSUGARFitness: We need everything! @mistyonpointe @underarmour https://t.co/xxz0hjmyON +05/03/2018,Sports_celeb,@mistyonpointe,RT @Dance_Magazine: Misty Copeland @mistyonpointe is totally owning her title as a multi-hyphenated artist. https://t.co/hrVwtaLqTo +05/03/2018,Sports_celeb,@mistyonpointe,RT @pointe_magazine: @mistyonpointe Designed Her Own Collection With @UnderArmour (& Her Fellow @ABTBallet Dancers Helped Debut It) https:/… +05/03/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: We collaborated with @mistyonpointe to bring you fire and femininity. Shop the Misty Copeland Collection now. https://t.co… +05/02/2018,Sports_celeb,@mistyonpointe,It’s Launch Day! My Misty Signature Line is live and ready to shop. Check it out: https://t.co/e2n6rFV0pd +05/02/2018,Sports_celeb,@mistyonpointe,RT @UAWomen: Did you know...it's just one day until we launch the Misty Copeland Signature Collection!? Check out these beautiful sneak pee… +05/01/2018,Sports_celeb,@mistyonpointe,Important update: There’s been a cast change for May 23. I’ve just learned I’m dancing in the 2PM Firebird performa… https://t.co/Nu9bqVNmwa +04/29/2018,Sports_celeb,@mistyonpointe,RT @sampanda24: happy #InternationalDanceDay @mistyonpointe https://t.co/2ouKT5iVIr +04/28/2018,Sports_celeb,@mistyonpointe,"Innovative. Fresh, inspiring and out of this world. Bravo @CAcostaOfficial and the entire company. ❤️❤️❤️ https://t.co/RS2OYYH5Bd" +04/28/2018,Sports_celeb,@mistyonpointe,"#Repost @vmwills +・・・ +Sliding in ballet slippers tho? Well, she's freaking… https://t.co/EEtZgi4DiP" +04/25/2018,Sports_celeb,@mistyonpointe,"RT @andmel123: Poise with a pointe😍😍inspired by you Misty, all the way from South Africa @mistyonpointe https://t.co/jYGQcaLB4X" +04/24/2018,Sports_celeb,@mistyonpointe,"What’s in this ballerina’s bag? @nakedjuice’s new Fruit, Nut & Veggie Bars. They’re packed with high-quality ingred… https://t.co/DLHlwabUpg" +04/24/2018,Sports_celeb,@mistyonpointe,RT @GloZell: Happy Monday from your favorite ballerina! Watch out @mistyonpointe xoxoxo GloZell & O’Zell https://t.co/5QUSgT0Jd3 +04/24/2018,Sports_celeb,@mistyonpointe,"RT @RenYouthCenter: Watch Misty Copeland (@mistyonpointe) and @RobinRoberts talk about meeting Jessica from our choir, and how huge #repres…" +04/20/2018,Sports_celeb,@mistyonpointe,"RT @SaulWilliams: To shape the form of possibility... + +💃🏿@mistyonpointe +✂️@ceskyest https://t.co/2B0ZS1R8Ug" +04/17/2018,Sports_celeb,@mistyonpointe,https://t.co/tmpgZhQo3k via @youtube +04/16/2018,Sports_celeb,@mistyonpointe,RT @cristina_hinze: @mistyonpointe I was thrilled to be the lucky silent auction winner of these precious items at The Steffi Nossen Dance… +04/16/2018,Sports_celeb,@mistyonpointe,RT @codycalhoun: . @mistyonpointe this little girl has a hero presentation in the morning and she is so excited! Thank you Misty for being… +04/14/2018,Sports_celeb,@mistyonpointe,My hearts melting 😘😍 https://t.co/GnO8xoerHY +04/14/2018,Sports_celeb,@mistyonpointe,"RT @ILoveLibraries: Thank you to 2018 #NationalLibraryWeek Honorary Chair, +@mistyonpointe! https://t.co/x9Nh4Kck1m" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @RenYouthCenter: What an amazing and deeply inspiring day at @WomenintheWorld. Our choir got to meet some real heroes, like @mistyonpoin…" +04/14/2018,Sports_celeb,@mistyonpointe,Love you Leona. You sang so beautifully! https://t.co/8yIOywUoxW +04/14/2018,Sports_celeb,@mistyonpointe,"RT @InStyle: .@MistyOnPointe, Supreme Court justice #SoniaSotomayor, and more come together for the #DVFAwards. https://t.co/GWjpyjuoTE" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @graceorsomethin: Watching the NICE FOR WHAT music video. I'm late to the game, but wowwww I could recognize @mistyonpointe's silhoutte…" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @DVF: “Own who you are and accept everything that’s different about you, because to me, that’s what beauty is. Find support around you a…" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @StyleWriterNYC: . @BrookeBCNN, @DVF and @MistyOnPointe on the red carpet at tonight’s #DVFAwards at the @UN ... https://t.co/oizLf7fafs" +04/14/2018,Sports_celeb,@mistyonpointe,RT @StyleWriterNYC: A very emotional Misty Copeland accepting her Inspiration Award at tonight’s @DVF Awards ... #DVFAwards https://t.co/xe… +04/14/2018,Sports_celeb,@mistyonpointe,RT @tdufu: Let's keep building each other up as women.-@mistyonpointe accepting the Inspiration Award at #DVFAwards @DVF #INCHARGE https:/… +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: “Lets keep building each other up as women. Let’s keep staying strong. Let’s inspire each other as leaders.” 👊👊🏻👊🏼👊🏽👊🏾👊🏿 @mistyonp… +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: Inspired and humbled by the incredible women who were honored with #DVFAwards tonight. https://t.co/A8S3614tLz +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: So inspired by your speech! Thank you for all you do to empower women. https://t.co/q7xIipqD54 +04/14/2018,Sports_celeb,@mistyonpointe,Such an honor to receive @DVF’s Inspiration Award during tonight’s #DVFAwards. Follow the… https://t.co/3Yj5hynNNc +04/14/2018,Sports_celeb,@mistyonpointe,Such an honor to receive @DVF’s Inspiration Award during tonight’s #DVFAwards! @DVF will be streaming LIVE on their… https://t.co/RI3PybWHdP +04/13/2018,Sports_celeb,@mistyonpointe,I wrote Firebird to encourage kids of all backgrounds to pursue their dreams. Libraries help young people find book… https://t.co/1xxNh6z8Ez +04/12/2018,Sports_celeb,@mistyonpointe,Libraries help people of all backgrounds access the resources and services they need to achieve their dreams. Suppo… https://t.co/oRQOjh4E4f +04/11/2018,Sports_celeb,@mistyonpointe,"RT @cbcradioq: Did you know Drake's new video #NiceForWhat features incredibly inspiring women including @mistyonpointe, @iamrashidajones,…" +04/10/2018,Sports_celeb,@mistyonpointe,Today is National Library Workers Day! Stop by your local library to show some love to the awesome librarians and s… https://t.co/KD1asEAost +04/10/2018,Sports_celeb,@mistyonpointe,❤️ https://t.co/YJVQzjs9WM +04/10/2018,Sports_celeb,@mistyonpointe,RT @LACountyLibrary: Many libraries are having special @mistyonpointe Firebird storytimes for #NationalLibraryWeek! Come to Norwalk Library… +04/10/2018,Sports_celeb,@mistyonpointe,"RT @sarasotaBGC: It was such an honor to meet @mistyonpointe, @BGCA_Clubs alumna and principal dancer with @ABTBallet, on Saturday thanks t…" +04/09/2018,Sports_celeb,@mistyonpointe,Happy #NationalLibraryWeek! I’m so excited to serve as Honorary Chair of this year’s celebrations.… https://t.co/RSsl5l3PBu +04/09/2018,Sports_celeb,@mistyonpointe,"Thank you #sarasotaballet and my love @marcelogomes47 for an amazing evening!!! Marcy, I love… https://t.co/yQZe6U46jU" +04/08/2018,Sports_celeb,@mistyonpointe,Thank you @karenaevans @champagnepapi #niceforwhat🔥🔥🔥 and all the incredible women I share in this power anthem wit… https://t.co/HC71scSpnv +04/08/2018,Sports_celeb,@mistyonpointe,RT @Natashalexis_: Thank you @Drake for blessing us with so many beautiful examples of badass women in the #niceforwhat video 🙏🏽 I legit sc… +04/08/2018,Sports_celeb,@mistyonpointe,"RT @GildaSquire: @Drake Thank you, Fuliane and Karena for an empowering, uplifting visual of extraordinary women, including @mistyonpointe.…" +04/08/2018,Sports_celeb,@mistyonpointe,RT @Drake: https://t.co/rWaJm2hHNB +04/07/2018,Sports_celeb,@mistyonpointe,"RT @GlobalGrind: #NiceForWhat +@mistyonpointe https://t.co/Hd1oEGpSz5" +04/07/2018,Sports_celeb,@mistyonpointe,I’m black https://t.co/M4OwbCYroD +04/07/2018,Sports_celeb,@mistyonpointe,So crazy it’s funny https://t.co/B7Sdm97z9u +04/07/2018,Sports_celeb,@mistyonpointe,🤷🏽‍♀️ https://t.co/sWbzQVUT9x +04/06/2018,Sports_celeb,@mistyonpointe,RT @cnnasiapr: #MistyCopeland on #TalkAsia: Why this #ballet superstar is fighting for diversity. https://t.co/AVpa4YlJo2 @jmsit @ABTBallet… +04/05/2018,Sports_celeb,@mistyonpointe,Misty Copeland: Why this ballet superstar is fighting for diversity @CNN https://t.co/voFq7C1iNf +04/05/2018,Sports_celeb,@mistyonpointe,"RT @BGCA_Clubs: Thank you, alumni @mistyonpointe for sharing your experience with @MNWBGC Club members! #greatfutures https://t.co/SNkFvOSL…" +04/05/2018,Sports_celeb,@mistyonpointe,"The incredible Clifford, @cliffordnewyork showing me how to properly dance Dwight Rhoden’s choreography ❤️❤️❤️ As y… https://t.co/oBm05byHNd" +04/05/2018,Sports_celeb,@mistyonpointe,"The incredible Clifford, @cliffordnewyork showing me how to properly dance Dwight Rhoden’s choreography ❤️❤️❤️ As y… https://t.co/mQGKQcGazD" +04/03/2018,Sports_celeb,@mistyonpointe,"Lol. Y’all, no weird hidden messages here. The person I was referring to is a trump supporter. I wasn’t assuming or… https://t.co/uStHeknYr6" +04/03/2018,Sports_celeb,@mistyonpointe,lol The person I was talking to is a trump supporter. Simple as that. Night. https://t.co/m4gMkgEMRb +04/02/2018,Sports_celeb,@mistyonpointe,"RT @corystieg: I asked @mistyonpointe about that viral fouetté video, how she copes with haters, and what she does to prioritize mental hea…" +04/02/2018,Sports_celeb,@mistyonpointe,"I had very smart teachers and I’m proud of my training, though limited as I only trained for 4 years before I joine… https://t.co/nu8bpQ5dD9" +04/02/2018,Sports_celeb,@mistyonpointe,We have no idea what injuries dancers had back then. Didn’t have any or very limited PT. Also didn’t train as we do… https://t.co/HEgpwlVCVd +04/02/2018,Sports_celeb,@mistyonpointe,"We can be overworked, dance in bad conditions, not a sprung floor or its too hard. SO many variables. https://t.co/XHywJHJn7S" +04/02/2018,Sports_celeb,@mistyonpointe,"EVERY dancer experiences some form of injury in their careers. They fall, break or sprain. Maybe don’t listen to th… https://t.co/8ucsEiCjKT" +04/02/2018,Sports_celeb,@mistyonpointe,"RT @LilyCrue: @mistyonpointe Being that affirmative action was started over 50 years ago, if ballerinas were promoted based on that, there…" +04/02/2018,Sports_celeb,@mistyonpointe,Gotta keep peeps abreast to the very real facts of what black dancers experience. https://t.co/BX08SHPPG1 +04/02/2018,Sports_celeb,@mistyonpointe,RT @trueladymd: @mistyonpointe It’s a shame you have to respond to the liars and haters. You are the definition of talent and grace!! +04/02/2018,Sports_celeb,@mistyonpointe,#SMH https://t.co/R6pVRq4Ixx +04/02/2018,Sports_celeb,@mistyonpointe,"???? Well, I’m Misty and that is absolutely untrue.... since when has affirmative action worked in ballet? https://t.co/jOJGT4a4pQ" +03/31/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: .@mistyonpointe broke down barriers when she became the first African American woman to be named principal dancer in the 7… +03/31/2018,Sports_celeb,@mistyonpointe,❤️ https://t.co/gMCV7UQQnC +03/31/2018,Sports_celeb,@mistyonpointe,You will never get it. Our message isn’t for you. Go to the ballet and enjoy who you like. Support your president a… https://t.co/A0BCCFgP8K +03/28/2018,Sports_celeb,@mistyonpointe,https://t.co/PtG1akwmHv +03/27/2018,Sports_celeb,@mistyonpointe,RT @emilyWbrown: @mistyonpointe my 7yo daughter chose you for her biography project. She asked me to send you this photo. You’re a huge ins… +03/23/2018,Sports_celeb,@mistyonpointe,"RT @playing4change: The arts have the power to improve our schools and build more compassionate, connected communities! #ArtsForChange + @Yo…" +03/21/2018,Sports_celeb,@mistyonpointe,"RT @MalissaShriver: Just finished reading Misty Copeland’s book “Life in Motion”@mistyonpointe with my daughter Rosemary, made me cry #insp…" +03/20/2018,Sports_celeb,@mistyonpointe,"RT @samuelmurai: @ELLEmagazine Misty Copeland @mistyonpointe is still my THE absolute favorite, but there are some more incredible ballerin…" +03/16/2018,Sports_celeb,@mistyonpointe,"RT @NationalDance: #tbt @mistyonpointe and NDI dancers at #NDIgala in 2015. +#ThrowbackThursday Photo: @chiossone https://t.co/5JJUfVbmcz" +03/15/2018,Sports_celeb,@mistyonpointe,https://t.co/qO0ZIi9niQ via @youtube +03/13/2018,Sports_celeb,@mistyonpointe,"Thank you for having me! Good luck on your tour!!! #Repost singaporedancetheatre +・・・ +Misty… https://t.co/I1KIpiy6qp" +03/11/2018,Sports_celeb,@mistyonpointe,RT @sstewart1775: @mistyonpointe Inspired to be a Ballerina...just by watching one of the greats. https://t.co/nzZuhR5Dzl +03/07/2018,Sports_celeb,@mistyonpointe,"RT @blackenterprise: .@mistyonpointe's Secret Weapon Is a Woman of Power, Too https://t.co/kTC0APPNLO https://t.co/5jU8l77o0g" +03/07/2018,Sports_celeb,@mistyonpointe,RT @kamh7: @mistyonpointe when your daughter is given M.C. for her class presentation #shelovesballet https://t.co/4mgkm2nZTo +03/06/2018,Sports_celeb,@mistyonpointe,"Excited that @Barbie is celebrating #InternationalWomensDay by honoring global role models, because you can't be wh… https://t.co/HzoRi75Zkf" +03/05/2018,Sports_celeb,@mistyonpointe,"RT @VeeSparkle15: Courageous women @mistyonpointe @reshmasaujani breaking barriers, educating & inspiring #women, girls on #Herstory Day @…" +03/03/2018,Sports_celeb,@mistyonpointe,What Misty Copeland Eats to Feel Empowered https://t.co/088bwBTfX1 via @My_Recipes +03/02/2018,Sports_celeb,@mistyonpointe,"RT @UAnews: .@MistyonPointe, @AlisonMDesir, @natashahastings, @JESSIEgraffPWR, @lindseyvonn, @YusraMardini, and so many more… We are honore…" +03/01/2018,Sports_celeb,@mistyonpointe,RT @FSherrillNWE: @mistyonpointe My student was so excited to portray you at our Black History Museum!! #wearewayne @BrittonWayneNWE https:… +03/01/2018,Sports_celeb,@mistyonpointe,RT @chinnerssbcsd: And that’s a wrap... so proud of my first graders for sharing their final projects to communicate their findings from th… +02/25/2018,Sports_celeb,@mistyonpointe,RT @candicewjohnson: My sunshine has NO clue that the whole reason we are in the Chi is to see the beautiful young lady on her shirt! Her i… +02/24/2018,Sports_celeb,@mistyonpointe,Yes sir! https://t.co/kagE93i1CX +02/24/2018,Sports_celeb,@mistyonpointe,"RT @NorthStarGrpPR: ""One of the biggest lessons I have learned is to believe in the process. When you put in the hours, and you've got good…" +02/23/2018,Sports_celeb,@mistyonpointe,RT @Plummer_ESDC: @mistyonpointe Thank u for creating a path for dreams! Our scholars are on their way to achieving their dreams! #positive… +02/23/2018,Sports_celeb,@mistyonpointe,"""My two summers spent at ABT’s Summer Intensive were the most informative of my training. It is… https://t.co/9ACASyUAF7" +02/23/2018,Sports_celeb,@mistyonpointe,"RT @ClassicalMvmts: While @slso, @ABTBallet's performances @LiedCenter saw neither blizzards nor mudslides for CM's travel pros, with @mist…" +02/22/2018,Sports_celeb,@mistyonpointe,"RT @MichelleObama: I’m in total awe of the extraordinary students in Florida. Like every movement for progress in our history, gun reform w…" +02/21/2018,Sports_celeb,@mistyonpointe,Misty Copeland Shines Light on Diversity in Ballet World and Beyond https://t.co/Wzg7MyqEQ8 +02/21/2018,Sports_celeb,@mistyonpointe,"RT @ClassicalMvmts: Today's #TravelTuesday takes CM back to this weekend's two, sold-out performances @LiedCenter in #Lincoln, #Nebraska, s…" +02/21/2018,Sports_celeb,@mistyonpointe,RT @DRAdance: Meet 10 up-and-coming black ballerinas carrying on @mistyonpointe's message of diversity and inclusivity in this article on @… +02/21/2018,Sports_celeb,@mistyonpointe,"RT @BrandisFriedman: Attention #ballet lovers! @mistyonpointe is on #chicagotonight! We talk abt making history, cooking in the kitchen and…" +02/21/2018,Sports_celeb,@mistyonpointe,"RT @artintercepts: “Bringing diversity into the theater is going to keep ballet thriving and relevant and alive. To me, that’s so critical…" +02/21/2018,Sports_celeb,@mistyonpointe,RT @AnerkeFilms: 10 Black Ballerinas carrying on @mistyonpointe's legacy: https://t.co/v6bFXsENTZ +02/21/2018,Sports_celeb,@mistyonpointe,RT @ChrisJonesTrib: A Chat with @mistyonpointe https://t.co/pPn6ubeIEI +02/20/2018,Sports_celeb,@mistyonpointe,"RT @MichelleObama: Congrats to the entire #blackpanther team! Because of you, young people will finally see superheroes that look like them…" +02/20/2018,Sports_celeb,@mistyonpointe,RT @bishopprolive: @TBishopL @bishopprolive @Perri Small @mistyonpointe #BishopPromotesYou https://t.co/Nj5PapmGOr +02/20/2018,Sports_celeb,@mistyonpointe,RT @bishopprolive: @TBishopL @bishopprolive @mistyonpointe #Chicago @WVON1690 Misty Copeland Awesome! #BishopPromotesYou https://t.co/Ti565… +02/19/2018,Sports_celeb,@mistyonpointe,I wish I could have met her. https://t.co/wb8m6MaiHU +02/18/2018,Sports_celeb,@mistyonpointe,"RT @92Y: ""I get up early in the morning to write because I'm very smart early in the morning."" Happy birthday to one of the greatest Ameri…" +02/17/2018,Sports_celeb,@mistyonpointe,RT @Winceycomusic: Using the power of the book #Firebird 2 show kids they can be anything they want 2b! #DreamBig @NJPAC @mistyonpointe ht… +02/17/2018,Sports_celeb,@mistyonpointe,"#Repost abtofficial +・・・ +This one is for you, Jaime 🧡 We honor your life in tonight’s… https://t.co/Lqu8cN3jBH" +02/16/2018,Sports_celeb,@mistyonpointe,@EdLGordon @bouncetv Can’t wait to see it. Important conversation! +02/16/2018,Sports_celeb,@mistyonpointe,RT @EdLGordon: Thanks @mistyonpointe 4being on my special AM I Black Enough? Premieres on @bouncetv Feb 17 at noon EST or now on the Brown… +02/16/2018,Sports_celeb,@mistyonpointe,RT @GildaSquire: Ballerina Raven Wilkinson On Dealing With Racism In Her Storied Career And Mentoring Misty Copeland https://t.co/fq3rgf8pq… +02/16/2018,Sports_celeb,@mistyonpointe,RT @slso: SLSO musicians with the one and only @mistyonpointe #slsotour @ABTBallet @LiedCenter https://t.co/eQFJXOgpGX +02/16/2018,Sports_celeb,@mistyonpointe,RT @BeccaLee22: best. night. ever. 🙌🏼 thank you @mistyonpointe!!! #mistycopeland #firebird #dreambigsweetgirl ❤️ https://t.co/gMPJwIkCox +02/15/2018,Sports_celeb,@mistyonpointe,"RT @mesonjixx: Had the honor of going and listening to @mistyonpointe speak about her life in #ballet as a black woman, wife, artist, lover…" +02/14/2018,Sports_celeb,@mistyonpointe,"RT @Emorly: So glad @mistyonpointe brought up the gender associations within ballet in the US. + +I watched my brother, who loved both balle…" +02/14/2018,Sports_celeb,@mistyonpointe,RT @TylerAThomas: “The Arts are Uniting” powerful words from @mistyonpointe at her #ENThompsonForum presentation tonight. #UNL https://t.co… +02/13/2018,Sports_celeb,@mistyonpointe,https://t.co/jsgnG9PHCT via +02/12/2018,Sports_celeb,@mistyonpointe,"RT @ABTBallet: Thanks, Detroit! We hope to dance for you again soon. +""Misty Copeland and ABT are riveting in Detroit Opera House performanc…" +02/11/2018,Sports_celeb,@mistyonpointe,My doc A Ballerinas Tale https://t.co/PU7UXCnwNO +02/11/2018,Sports_celeb,@mistyonpointe,https://t.co/CDYBFUwOX3 via +02/09/2018,Sports_celeb,@mistyonpointe,"RT @alisaaslanova: Misty 😍 in Moscow +@mistyonpointe https://t.co/6KI55lF8Nr" +02/09/2018,Sports_celeb,@mistyonpointe,"RT @GrandCentralPub: Read @mistyonpointe's interview with @amlibraries! This #BallerinaBody author shares how she prepares for a new role,…" +02/09/2018,Sports_celeb,@mistyonpointe,RT @warriors: Dubs defense turns up and Steph shows off his QB 🏈 skills. (NBCSBA) https://t.co/9iZ0Y2xB3Q +02/08/2018,Sports_celeb,@mistyonpointe,"#Repost @umsnews +・・・ +Tomorrow @mistyonpointe takes the stage in Detroit for our co-presentation… https://t.co/bmolNSLLvE" +02/07/2018,Sports_celeb,@mistyonpointe,RT @BeccaLee22: i asked how she was feeling after a rough night at dance and she said “better because we read @mistyonpointe’s book!” means… +02/06/2018,Sports_celeb,@mistyonpointe,"RT @BrownSugarApp: .@Mistyonpointe discusses systematic racism in this clip from the upcoming #EdGordon special: 'Am I Black Enough?’. + +S…" +06/28/2018,Sports_celeb,@MikeTyson,Round 2 of Rise Up campaign to help children. Please join me & my friend #AndreaJaeger Donate $5 text 20222. A lit… https://t.co/FEuXGbWpva +06/22/2018,Sports_celeb,@MikeTyson,Awesome to see the legends back on court 4 2nites #BIG3Basketball Season 2 opener live on Facebook 6:30ET & 7:30 on… https://t.co/YDyMGkJ3oB +06/17/2018,Sports_celeb,@MikeTyson,Happy Father's Day to fathers that are Dads to their kids and the mentors that make a difference. https://t.co/o57J6lJIH3 +06/16/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/J4LwoGA5tK +06/14/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this Saturday, June 16th & get my autograph at @TristarVegas and @FODCaesars! Info:… https://t.co/UIvmCmQOYQ" +06/10/2018,Sports_celeb,@MikeTyson,I'm back in #Canastoga #InternationalBoxingHallofFame to honor #2018inductees https://t.co/rczY6aELdL +06/08/2018,Sports_celeb,@MikeTyson,I think it’s about time my friend @angiemartinez gets into Radio Hall Of Fame! #VOTE4Angie. Text 300 to 96000 https://t.co/AlxhYeL7xE +06/01/2018,Sports_celeb,@MikeTyson,“Everybody thinks this is a tough man’s sport. This is not a tough man’s sport. This is a thinking man’s sport. A t… https://t.co/hPiZVUXsaH +05/28/2018,Sports_celeb,@MikeTyson,"Just a kid from #Brownsville with a dream. By 1989, that dream was a reality. Check out the official #MikeTyson col… https://t.co/OK0ZoaUISZ" +05/26/2018,Sports_celeb,@MikeTyson,Help me and @littlestarfndtn #AndreaJaeger knockout kids suffering. Donate $5 today text STAR to 20222… https://t.co/lfhWcXGOPf +05/13/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/BoImGe8mQ4 +05/12/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/LJaiHHgTlG +05/11/2018,Sports_celeb,@MikeTyson,"#LasVegas: Come see me this weekend & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/BTRrMIut7y" +04/26/2018,Sports_celeb,@MikeTyson,Check out my interview with @TitoOrtiz where we talk about what would happen if Conor McGregor and Floyd Mayweather… https://t.co/tMBMxZBdev +04/24/2018,Sports_celeb,@MikeTyson,Check out my new podcast episode with former UFC champion and UFC Hall of Famer @TitoOrtiz. We talk about whether I… https://t.co/D9F4soBKvj +04/21/2018,Sports_celeb,@MikeTyson,Save up to 50% @RootsofFight Tyson apparel. #SpringCleaningSale event Sale runs until 12pm PT Monday 23rd. Don’t mi… https://t.co/OcNu4pOsUl +04/21/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: New podcast episode is up. +Click ► https://t.co/ANwFX8HpS1 +@BiteTheMicShow +・・・ +@RosenbergRadio #BiteTheMic #MikeTyson #…" +04/19/2018,Sports_celeb,@MikeTyson,"I talk about about friends, interviews, and memories from back in the day on the podcast. +► https://t.co/d8clyaegGk… https://t.co/m4ML5iEQAw" +04/17/2018,Sports_celeb,@MikeTyson,"New podcast episode. Talking about working out with my son Miguel. +► https://t.co/d8clyaegGk +Follow @BiteTheMicShow… https://t.co/lVmwx4Qxuq" +04/16/2018,Sports_celeb,@MikeTyson,RT @bitethemicshow: Don’t miss Part 2 of the interview with @DanaWhite. Did you know that Dana was at the infamous “Bite Fight” between @Mi… +04/14/2018,Sports_celeb,@MikeTyson,“Everyone that you fight is not your enemy and everyone who helps you is not your friend.” New @rootsoffight… https://t.co/MsoWGUBjS8 +04/14/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/T0tH7vdVfI +04/13/2018,Sports_celeb,@MikeTyson,"Part 2 of the interview with @DanaWhite on the podcast is up. We talk about Dana at “The Bite Fight,”… https://t.co/Etvu9krdRB" +04/13/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/VibOKwHHMP +04/11/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/JfWuaPinRG" +04/11/2018,Sports_celeb,@MikeTyson,"► https://t.co/d8clyaegGk @DanaWhite is back on the podcast. We talk about Conor McGregor, @FloydMayweather in MMA… https://t.co/KzJolekrl8" +04/08/2018,Sports_celeb,@MikeTyson,Gonna watch for @TeamKhabib title fight tonight. #UFC223 #barclayscenter https://t.co/07ivQ21rrW +04/07/2018,Sports_celeb,@MikeTyson,"From #WrestleMania 14. Don’t miss #WrestleMania34 on Sunday, April 8th. #TeamRousey + +And don’t forget to catch th… https://t.co/wQvtTEzan0" +04/07/2018,Sports_celeb,@MikeTyson,"#TeamRousey all the way #WWE #WrestleMania. @RondaRousey +And don’t forget to catch the podcast, @BiteTheMicShow.… https://t.co/Y5kR7hFhGe" +04/07/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/HqR8s4VUcD +04/06/2018,Sports_celeb,@MikeTyson,20 years ago from #WrestleMania 14. As a @WWE Hall of Fame inductee and a fan I’ll be watching @RondaRousey vs… https://t.co/uLOqC78bqk +04/06/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70OJ86s https://t.co/XF7Yy6RkZ3 +04/05/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/VNBSXLzwMT" +03/30/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Click the link for the full episode. +➡️https://t.co/modxKXtdEG +・・・ +#MikeTyson #MMA #Boxing #Podcast #Comedy #BiteTheMic…" +03/20/2018,Sports_celeb,@MikeTyson,"Listen to the whole interview where I talk about when @MichaelJackson played a prank on me. +➡️… https://t.co/A9d8rcvdw8" +03/15/2018,Sports_celeb,@MikeTyson,"Listen to me talk about my tigers and much more. +➡️https://t.co/DUxIpQMcDR +Follow @BiteTheMicShow for more. +・・・… https://t.co/TIBrop2q9A" +03/14/2018,Sports_celeb,@MikeTyson,New Release from @rootsoffight. Black on Black Brooklyn Tee. Get yours now. #KnowYourRoots #AllBlackEverything… https://t.co/aI651PiwM7 +03/13/2018,Sports_celeb,@MikeTyson,Sorry to hear Craig Mack is no longer with us. #RIPCraigMack. Gonna listen to #FlavaInYourEar right now. Man 47 too young. +03/13/2018,Sports_celeb,@MikeTyson,"My fists are flying in #KickboxerRetaliation, now available on DVD and Blu-ray Combo! Get your copy today:… https://t.co/8FjOTlOGFP" +03/11/2018,Sports_celeb,@MikeTyson,@DjokerNole you are the realest. Thanks for hitting with my daughter #milantyson. You are her tennis idol.… https://t.co/pJI83jC96S +03/05/2018,Sports_celeb,@MikeTyson,"Agreed. This is a great time to be a boxing fan, but in my prime I felt like I could beat anyone in the world just… https://t.co/BkdaGdXDm1" +03/03/2018,Sports_celeb,@MikeTyson,Expedient recovery to Hip Hop legend @RickRoss. Praying for you brother. +03/02/2018,Sports_celeb,@MikeTyson,.@rootsoffight has new pieces! 🔥 Check out this new T & my full #RootsofFight collection here... #KnowYourRoots… https://t.co/x9xINVpuSB +02/27/2018,Sports_celeb,@MikeTyson,Listen to me interview the man who has interviewed me dozens of times. New episode with the best broadcaster in all… https://t.co/R5mBZmxfQf +02/24/2018,Sports_celeb,@MikeTyson,I don't think Wilder would have beat me in my prime. I've said it before and I'm saying it again. Listen to my podc… https://t.co/r3iMc1wsrr +02/24/2018,Sports_celeb,@MikeTyson,I don't think Wilder would have beat me in my prime. I've said it before and I'm saying it again. Listen to my podc… https://t.co/8zt9SQmITL +02/23/2018,Sports_celeb,@MikeTyson,RT @bitethemicshow: CLICK->https://t.co/Qb7jObX039 Nothing like an @MikeTyson stare down. Check out part 2 of the interview with @BigBoy f… +02/22/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Thank you for all the support for the podcast, much appreicated. +Click to listen ➡️https://t.co/modxKXtdEG +・・・ +#MikeTys…" +02/22/2018,Sports_celeb,@MikeTyson,"@AndyDick, I'm just busting your chops. +Click to listen to the full interview with @AdamCarolla. +➡️… https://t.co/86tBOaZSGq" +02/20/2018,Sports_celeb,@MikeTyson,"Listen to me talk about the heavyweight division with @AdamCarolla +➡️https://t.co/DUxIpQMcDR +・・・ +#MikeTyson #MMA… https://t.co/QrJJghhDG5" +02/16/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Get @MikeTyson's thoughts on comedy vs. fighting. +Click ➡️ https://t.co/modxKXtdEG +Part 2 with @BrendanSchaub and @Brya…" +02/16/2018,Sports_celeb,@MikeTyson,"#Throwback Thank you for all the support for the podcast. +Click to listen ➡️https://t.co/ERSRuqPUue https://t.co/d9wlv61QxE" +02/16/2018,Sports_celeb,@MikeTyson,.@BronzeBomber trash talk is cool. Everyone has a plan until they get punched in the mouth. There is a Tyson that… https://t.co/6aIK3bsjkL +02/15/2018,Sports_celeb,@MikeTyson,#Respect @LennoxLewis https://t.co/Tcj9OGTvup +02/14/2018,Sports_celeb,@MikeTyson,Another school shooting. Sad. Prayers to the families #ParklandShooting +02/13/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Curious who @MikeTyson thinks is the pound for pound best boxer in the world? +Click the link to find out -> https://t.c…" +02/13/2018,Sports_celeb,@MikeTyson,"What would you do with a billion dollars? #TigerKing +Click the link for the full interview ->… https://t.co/4dp8w1Uhdb" +02/10/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See yo… https://t.co/3LGsDCKbMC +02/09/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Listen to @MikeTyson talk about Eddie Murphy on the podcast. +CLICK->https://t.co/modxKXKOwe +・・・ +#MikeTyson #MMA #Box…" +02/09/2018,Sports_celeb,@MikeTyson,88' was a big year for me. Started with win over future Hall of Famer #LarryHolmes and ended with the Lineal HW t… https://t.co/yTkFIbFKBu +02/09/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70OJ86s https://t.co/FWPrCnHQmP +02/09/2018,Sports_celeb,@MikeTyson,".@TheRock thank you, brother. Great movie too. My kids loved it. #Jumanji +#RIPRoger 🤨 #NewSmolderingIntensityKing… https://t.co/ZLufHa7FhT" +02/09/2018,Sports_celeb,@MikeTyson,"@TheRock Thank you, brother. Great movie too. My kids loved it. #Jumanji +#RIPRoger 🤨 #NewSmolderingIntensityKing… https://t.co/Lvbxn4641e" +02/08/2018,Sports_celeb,@MikeTyson,I just heard that @Tyson_Fury said that I would KO him in the first round if we fought. What are your thoughts?… https://t.co/uzqXiaPScZ +02/08/2018,Sports_celeb,@MikeTyson,"Hey @TheRock and @RogerFederer, how's my ""Smoldering Intensity"" look? 👊🏾 #PodcastKing #HardAtWorkInTheStudio… https://t.co/4S8k18Qod9" +02/08/2018,Sports_celeb,@MikeTyson,"Great stuff with Martin Lawrence. +Click to listen: https://t.co/DUxIpQMcDR +@realmartymar +・・・ +#Bitethemic https://t.co/6AyceeY2ki" +02/07/2018,Sports_celeb,@MikeTyson,Don't understand the fuss about the big rocket launch because I was the first to launch in one of @ElonMusk’s rocke… https://t.co/kUPb5RkBtZ +02/07/2018,Sports_celeb,@MikeTyson,"VEGAS: Come meet me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/V1wEhuQzKr" +02/07/2018,Sports_celeb,@MikeTyson,#Heavyweightchamp turned into #tennisballboy. Typical #Monday now https://t.co/E9cNU7khcY https://t.co/hUrAZAs5vZ +02/06/2018,Sports_celeb,@MikeTyson,Congrats to Elon Musk for a successful launch #SpaceX #FalconHeavy #ElonMusk #MikeTyson +02/06/2018,Sports_celeb,@MikeTyson,"Can't believe he is already 7. https://t.co/j8GwhjpGmn +・・・ +Birthday video 😂 https://t.co/05JBZsaNdc" +02/06/2018,Sports_celeb,@MikeTyson,Getting ready for liftoff..do you think the test will pass or fail? #SpaceX #spacexlaunch #FalconHeavy #FalconHeavyLaunch #MikeTyson +02/06/2018,Sports_celeb,@MikeTyson,Listen to my convo with @RealAJBenza about Trump and much more on my podcast. Thanks AJ Benza for an awesome interv… https://t.co/dcU3YRaVV2 +02/05/2018,Sports_celeb,@MikeTyson,"Martin Lawrence and me talk about day jobs. +https://t.co/DUxIpQMcDR +・・・ +#BiteTheMic #MikeTyson #HipHop #MMA #Boxing… https://t.co/icQGG7kQ1o" +02/05/2018,Sports_celeb,@MikeTyson,#TennisDad https://t.co/0fVuOBvLMu +02/04/2018,Sports_celeb,@MikeTyson,"WrestleMania crew in 2010 with my +son Amir. @TripleH and @wwehornswoggle +https://t.co/eNe0bfxXib https://t.co/QHSBvYCmkV" +02/03/2018,Sports_celeb,@MikeTyson,"Super Bowl throwback commercial with son https://t.co/eNe0bfxXib. 😂 #Repost +・・・ +""Throwback to when i Shot this sup… https://t.co/LOmUTldxFO" +02/03/2018,Sports_celeb,@MikeTyson,"Listen to me and @OscarDeLaHoya discuss @Canelo vs. @GGGBoxing 2. +CLICK->https://t.co/DUxIpQMcDR +#BiteTheMic… https://t.co/S96c2hcnOX" +02/03/2018,Sports_celeb,@MikeTyson,"With the family. +#Repost https://t.co/OVeiepKroo +・・・ +Us Tyson triplets 😄🤣 family night out 💋💋❤️ @sugarfactorylv… https://t.co/zxGrevy55m" +02/02/2018,Sports_celeb,@MikeTyson,"Listen to me talk about when Will Smith used to be wild. https://t.co/DUxIpQMcDR +#MikeTyson #Podcast #WillSmith… https://t.co/coXp16TVga" +02/02/2018,Sports_celeb,@MikeTyson,A well rounded kid is a good kid. Have your kid try all kinds of activities. https://t.co/aIuoKCVcrE #Repost https://t.co/WQJib3SOWS +02/02/2018,Sports_celeb,@MikeTyson,Statistics show that kids are more successful in whatever path they decide to take in life when parents are more in… https://t.co/LdlK2WOvKu +02/01/2018,Sports_celeb,@MikeTyson,"Martin Lawrence podcast episode is up! Follow @BitTheMicShow for more! https://t.co/DUxIpQMcDR + +@realmartymar… https://t.co/7Qr3dgRD9V" +02/01/2018,Sports_celeb,@MikeTyson,Who do you got? #Canelo or #GGG? https://t.co/crRYLvtSwI +01/31/2018,Sports_celeb,@MikeTyson,Hanging with my mini-me #tennis #fatherandson send me a 👊🏽 if you are hanging with your kids this weekend… https://t.co/C7qIuu1QVv +01/31/2018,Sports_celeb,@MikeTyson,"CLICK->https://t.co/DUxIpQMcDR +Listen to @OscarDeLaHoya and me talk about @MannyPacquiao vs. @TheNotoriousMMA on… https://t.co/eD5hfQOUWx" +01/30/2018,Sports_celeb,@MikeTyson,"Amir is #teampatriots who you got to win? #Patriots or #Eagles #SuperBowl2018 #Repost https://t.co/mvouMV8OM1 +・・・… https://t.co/GkeJ2iWGWO" +01/30/2018,Sports_celeb,@MikeTyson,"CLICK->https://t.co/DUxIpQMcDR to listen to my interview with @OscarDeLaHoya on my podcast, @BiteTheMicShow. Follow… https://t.co/8maUJD3WV0" +01/30/2018,Sports_celeb,@MikeTyson,CLICK ->https://t.co/DUxIpQMcDR and listen about the first time I met @MichaelJackson. Follow @BiteTheMicShow for… https://t.co/DriUywhifS +01/30/2018,Sports_celeb,@MikeTyson,He just started. Not trying to box just trying to stay fit. #FamilyWorkoutSession #Repost @miguelltyson on Instagra… https://t.co/7dLxf0m4y5 +01/28/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See yo… https://t.co/LB1gFSRzym +01/27/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/sfEz0uuVyg +01/26/2018,Sports_celeb,@MikeTyson,"It’s my fists against @JCVD and @AlainMoussi in #KICKBOXERRETALIATION, available today on demand! Get it on iTunes:… https://t.co/ryimoPo7Nf" +01/26/2018,Sports_celeb,@MikeTyson,Check out my podcast... ->https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more! #BiteTheMic #MikeTyson… https://t.co/5JRuenJ2an +01/25/2018,Sports_celeb,@MikeTyson,Listen to me talk about my amazing pigeons on part 2 of my interview with @BigBoy ⟶https://t.co/DUxIpQMcDR Follow… https://t.co/W5Ud0GH1pW +01/24/2018,Sports_celeb,@MikeTyson,New hilarious episode of the podcast with @BigBoy → https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more.… https://t.co/lB0JXyMnAs +01/23/2018,Sports_celeb,@MikeTyson,New episode of the podcast with @BigBoy >https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more. #BiteTheMic… https://t.co/yN9qvix7eP +01/22/2018,Sports_celeb,@MikeTyson,Watching podcast partner @rosenbergradio on the kickoff for #Raw25 !! Congrats on 25 years @WWE and here’s to 25 more! +01/22/2018,Sports_celeb,@MikeTyson,Brooklyn Born. Brooklyn Strong. #Brooklyn roots. #KnowYourRoots @rootsoffight https://t.co/Mzg0Jr7pyh https://t.co/kFcIc0MYt1 +01/12/2018,Sports_celeb,@MikeTyson,"Coming to Hawaii on Jan 20th is the critically acclaimed One Man Show ""Undisputed Truth Round 2"". Live appearance a… https://t.co/WemQNAxccL" +01/11/2018,Sports_celeb,@MikeTyson,"VEGAS: Signing autographs this week at @TristarVegas, @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See… https://t.co/TIlmT6BNb1" +12/26/2017,Sports_celeb,@MikeTyson,"LAS VEGAS: Signing autographs this week at @TristarVegas (Friday and Sunday), @FODCaesars (Friday through Monday) &… https://t.co/cb3ZRtdbfR" +12/24/2017,Sports_celeb,@MikeTyson,Never thought you would see Iron Mike on @usta #NationalCampus #tenniscourt! Anything for daughter Milan (… https://t.co/Cgf1oY72su +12/24/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you there! https://t.co/pk5T14MuQB +12/23/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @FODVenetian and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you soon! https://t.co/EvGkd0z0k4 +12/22/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you there! https://t.co/PkLVej5zs6 +12/20/2017,Sports_celeb,@MikeTyson,.@superjudah is getting back in the ring. Make sure you are tuned in. Jan. 27th #dekadafightnight… https://t.co/jCoZZ2fcQM +12/19/2017,Sports_celeb,@MikeTyson,"LAS VEGAS: Signing autographs this week at @TristarVegas, @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2… https://t.co/871gHWI316" +12/08/2017,Sports_celeb,@MikeTyson,This new #KidDynamite melton bomber jacket from @rootsoffight brings back a lot of great memories of early years! I… https://t.co/M13SAyE0Tz +11/27/2017,Sports_celeb,@MikeTyson,"#ICYMI Hey #IronMike fans, last chance to grab #KidDynamite collection for #CyberMonday #KnowyourRoots… https://t.co/tKNGsv8U9W" +11/24/2017,Sports_celeb,@MikeTyson,.@rootsoffight doing Chi style throw back to '86. Entire collection live #BlackFriday #RootsOfFight #KnowYourRoots… https://t.co/XLwbVaBniB +11/24/2017,Sports_celeb,@MikeTyson,Meet TODAY and get autographs in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/MTJmhkbJuB +11/23/2017,Sports_celeb,@MikeTyson,"@rootsoffight having #BlackFriday sale on now. Entire #IronMike collection now live, check it out #KnowyourRoots… https://t.co/8TON58tgLp" +11/22/2017,Sports_celeb,@MikeTyson,VEGAS: Come this Friday & get autographs at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you th… https://t.co/TXvXiagvED +11/20/2017,Sports_celeb,@MikeTyson,Tonight's your last chance to see Undisputed Truth Round 2 @MGMGrand in Las Vegas! Call 866.740.7711 to get your ti… https://t.co/JsTZyfmWCG +11/15/2017,Sports_celeb,@MikeTyson,Come see Undisputed Truth Round 2 @MGMGrand Las Vegas before it's gone! Get your tickets 👉https://t.co/KOUeBrdDzz https://t.co/ITu35LY3zw +11/15/2017,Sports_celeb,@MikeTyson,"Guess who is a part of this years Synergy Global Forum speaking at the forum on November 28. Forum in Moscow, Nove… https://t.co/F4AmlKDe01" +11/13/2017,Sports_celeb,@MikeTyson,There are only 8 shows left of Undisputed Truth Round 2 @MGMGrand! Call 866.740.7711 for tickets. https://t.co/IOndXaiiJF +11/11/2017,Sports_celeb,@MikeTyson,RT @BoxingHall: Boxing Hall of Fame fall silent auction ends tomorrow (November 11th) at 3 pm. (EST). See photos and complete auction detai… +11/08/2017,Sports_celeb,@MikeTyson,There are only a few Undisputed Truth Round 2 shows left @MGMGrand Las Vegas. Get your tickets 👉… https://t.co/aqusdMMTAG +11/07/2017,Sports_celeb,@MikeTyson,"Check out who came to Undisputed Truth Round 2 @MGMGrand this past weekend... Actor & Comedian, Deon Cole. For tick… https://t.co/LExZ7LdosI" +11/07/2017,Sports_celeb,@MikeTyson,Let’s lead with kindness #PrayersforTexas #LoveNotHate https://t.co/JkmGHRHdZV +11/06/2017,Sports_celeb,@MikeTyson,Be kind to one another #PrayForTexas https://t.co/idgZRkLYZD +11/06/2017,Sports_celeb,@MikeTyson,Life has a lot of distractions. Get back to basics. #familyfirst #lovenothate #PrayersforTexas https://t.co/jN1V94QiCS +11/06/2017,Sports_celeb,@MikeTyson,Tonight I'm @MGMGrand in Las Vegas for Undisputed Truth Round 2! Get ready to laugh hard. Tickets👉… https://t.co/wCtb7z4wAm +11/04/2017,Sports_celeb,@MikeTyson,Hanging with my mini me #saturday #tennis #fatherandson send me a 👊🏽 if you are hanging with your kids this weekend https://t.co/5frmw0RfUl +11/04/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/Twgd4Z7Fyl +11/04/2017,Sports_celeb,@MikeTyson,My new hoody from @rootsoffight is here #CatskillBoxingClub is out now #RootsofFight #KnowYourRoots… https://t.co/kgWLgDgnQg +11/01/2017,Sports_celeb,@MikeTyson,There are only a few Undisputed Truth Round 2 shows left @MGMGrand in Las Vegas! Call 866.740.7711 for tickets. https://t.co/maTorSGay7 +10/31/2017,Sports_celeb,@MikeTyson,"#Vegas: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/j2DEKvqQWF" +10/30/2017,Sports_celeb,@MikeTyson,@rootsoffight just released #CatskillBoxingClub hood. This gym was the start of it all. Get yours #RootsofFight… https://t.co/pTWOZlO7Ui +10/30/2017,Sports_celeb,@MikeTyson,Meet me at Undisputed Truth Round 2 tonight @MGMGrand in Las Vegas. Click the link for tickets👉… https://t.co/pXNh3YB2w2 +10/25/2017,Sports_celeb,@MikeTyson,"My new @rootsoffight stadium jacket just dropped, get yours now! #RootsofFight #KnowYourRoots… https://t.co/nEtHa537eX" +10/25/2017,Sports_celeb,@MikeTyson,Who's ready to see me in Undisputed Truth Round 2 @MGMGrand in Vegas this weekend? Call 866.740.7711 for tickets. https://t.co/J9zNRCcGy0 +10/23/2017,Sports_celeb,@MikeTyson,Check out who visited Undisputed Truth @MGMGrand ...former NBA player @MettaWorldPeace NBA player CJ Watson &… https://t.co/P4IPdBtVpc +10/21/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See… https://t.co/MBzmbtIBfE +10/20/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars and @FODVenetian! Info: https://t.co/5Nk70P0Jv2 https://t.co/y7APSkmbvk +10/18/2017,Sports_celeb,@MikeTyson,"Welcome to the @Rootsoffight Family, @robertoduranbox. The long wait is finally over. #KnowYourRoots… https://t.co/JeRhv29iss" +10/17/2017,Sports_celeb,@MikeTyson,Jim Norton visited me at Undisputed Truth Round 2 this past weekend. Have you seen my show yet? Call (866) 740-7711… https://t.co/lrrwn9sNl1 +10/17/2017,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/Wj1BJ2F4ge" +10/12/2017,Sports_celeb,@MikeTyson,"In case you missed it, click the link to hear me talk about my first late night interview with @Joan_Rivers. ►… https://t.co/PtUslZMO87" +10/11/2017,Sports_celeb,@MikeTyson,Did you know you can meet me after the show? Click the link to learn more about Meet & Greet tickets.… https://t.co/2XOXH9Sdqt +10/10/2017,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/mj0HnYZ3Ov" +10/10/2017,Sports_celeb,@MikeTyson,"Check out who came to see Undisputed Truth Round 2 @MGMGrand this weekend, Jarrod & Brandi from Storage Wars. Ticke… https://t.co/320ShDObmE" +10/02/2017,Sports_celeb,@MikeTyson,LAS VEGAS VICTIMS' FUND https://t.co/xPc38CW1ij +10/02/2017,Sports_celeb,@MikeTyson,Sad day. Love and prayers #lasvegas. Let's not let hate win. Be kind to one another. #FightHatewithLove +09/29/2017,Sports_celeb,@MikeTyson,"Check out who came to visit my show last night... UFC fighter, @roynelsonmma aka Big Country. https://t.co/QtSH6W7YmM" +09/29/2017,Sports_celeb,@MikeTyson,Come see me TODAY in #LasVegas. I'm signing autographs at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/nLfQm2vjEP +09/28/2017,Sports_celeb,@MikeTyson,Have you bought your tickets to Undisputed Truth Round 2 @MGMGrand in Las Vegas? Tickets👉https://t.co/KOUeBrdDzz https://t.co/SMSsJDF89l +09/26/2017,Sports_celeb,@MikeTyson,"#LasVegas: Excited to meet everyone this week at @TristarVegas Fri. 1:30-3, at @FODCaesars Fri. & Sat. 3:30-5 & at… https://t.co/i4YjXIau0s" +09/26/2017,Sports_celeb,@MikeTyson,"Start with small investment, finish big; start with @tradeonetwo! #MikeTysonForTrade12 #MikeTyson +Trade12 Website:… https://t.co/8PShKg1f9R" +09/25/2017,Sports_celeb,@MikeTyson,"Undisputed Truth Round 2 is a no-holds-barred, one-man show. Don’t miss it! Call 866.740.7711 for tickets. https://t.co/4TnJ5sRMd6" +09/20/2017,Sports_celeb,@MikeTyson,In case you missed it. Click the link and listen to the WWE episode. ► https://t.co/MArlE0cdFE Full source video is… https://t.co/6GNPHm1qDc +09/20/2017,Sports_celeb,@MikeTyson,Round 2 of Undisputed Truth is now @MGMGrand Las Vegas! Call (866) 740-7711 to book your tickets. https://t.co/O0KO4Y5jXH +09/19/2017,Sports_celeb,@MikeTyson,.@MarlonWayans visited me at Undisputed Truth Round 2 this past weekend. Have you seen me at @MGMGrand Las Vegas? T… https://t.co/gM6aB8ydXK +09/19/2017,Sports_celeb,@MikeTyson,"Hey Houston I'll be there this Wed 9/20 @fitermansports, portion of proceeds donated to hurricane victims. Get Info… https://t.co/yUpSW8QXv0" +09/18/2017,Sports_celeb,@MikeTyson,Look who magically appeared at my sold out show #undisputedtruthround2 last night... David Copperfield… https://t.co/Jw989FgixO +09/18/2017,Sports_celeb,@MikeTyson,Check out my latest Q&A with @LasVegasWeekly where I discuss Round 2 of Undisputed Truth @MGMGrand Las Vegas.… https://t.co/WEXaxTPILW +09/16/2017,Sports_celeb,@MikeTyson,Get my thoughts on the fight in the Mayweather/McGregor episode/boxing episode. Be sure to buy it on PPV.… https://t.co/3rRCMXr6yI +09/16/2017,Sports_celeb,@MikeTyson,Come see me TODAY and get my autograph in #LasVegas at @FODVenetian and @FODCaesars! Info: https://t.co/5Nk70P0Jv2… https://t.co/UcTjssWmK8 +09/16/2017,Sports_celeb,@MikeTyson,Excited to meet everyone TODAY in #LasVegas! I'm signing autographs at @TristarVegas and @FODCaesars. Info:… https://t.co/CknPW5zN9v +09/16/2017,Sports_celeb,@MikeTyson,Get my thoughts on the fight in the Mayweather/McGregor episode/boxing episode. Be sure to buy it on PPV.… https://t.co/aN6UJlJAkG +09/15/2017,Sports_celeb,@MikeTyson,"If you don't know, now you know. Grab your @rootsoffight T while it's still in stock. #RootsofFight #BMOTP… https://t.co/xV0MAz2R89" +09/13/2017,Sports_celeb,@MikeTyson,Listen to me talk about my hall of fame career in the WWE like you have never heard before! ►… https://t.co/SBB6IIQ7lq +09/13/2017,Sports_celeb,@MikeTyson,"VEGAS: Meet me this week & get my autograph at @FODCaesars, @FODVenetian & @TristarVegas! Info:… https://t.co/2uQ8pcZ6CO" +09/13/2017,Sports_celeb,@MikeTyson,Check out all upcoming Undisputed Truth Round 2 show dates @MGMGrand on our Facebook Events page.… https://t.co/S8HzTLyvw3 +09/12/2017,Sports_celeb,@MikeTyson,Check out who came through last night #RHOBH Dorit & PK Kemsley & UFC's @ymedeiros after the show. You too can meet… https://t.co/MHsWJf23wr +09/11/2017,Sports_celeb,@MikeTyson,Click the link for the full recap of the Mayweather/McGregor fight. ► https://t.co/MArlE0cdFE @Rosenbergradio… https://t.co/npjlduOMVh +09/11/2017,Sports_celeb,@MikeTyson,"Tomorrow, Sept. 12 is your last chance to cast your vote for me in @TheBestOfLV Awards! Click the link to vote:… https://t.co/iVsn0sQqz4" +09/10/2017,Sports_celeb,@MikeTyson,Congratulations to @sloanestephens for an awesome comeback win. You are an inspiration to girls everywhere includin… https://t.co/wR4YoOp5wv +09/09/2017,Sports_celeb,@MikeTyson,Tune into me all day on @eminem's @shade45 wilding out with @djwhookid #WhoolywoodShuffle #undisputedtruthround2 💥 https://t.co/ZYMB1gOCTa +09/09/2017,Sports_celeb,@MikeTyson,Click the link for the full recap of the Mayweather/McGregor fight. ► https://t.co/MArlE0cdFE @Rosenbergradio… https://t.co/99xDQjf479 +09/07/2017,Sports_celeb,@MikeTyson,Watch me on @JimmyKimmel – Tonight on ABC! #KIMMEL https://t.co/zCGbZtx5Hg +09/06/2017,Sports_celeb,@MikeTyson,Undisputed Truth Round 2 opens tomorrow night @MGMGrand in Las Vegas! Get your tickets👉https://t.co/KOUeBrdDzz https://t.co/FbSeocTqkE +09/05/2017,Sports_celeb,@MikeTyson,New episode of my podcast is up. Be sure to listen and get my take on the McGregor/Mayweather fight… https://t.co/aLfkv3x0QI +09/05/2017,Sports_celeb,@MikeTyson,Remember to vote for me as Best Resident Performer/Headliner in @TheBestofLV Awards! Cast your vote here:… https://t.co/veNXYs0CJm +09/04/2017,Sports_celeb,@MikeTyson,Click the link to listen to the full interview ► https://t.co/s3aloLUPR1 @Rosenbergradio #Boxing #HipHop #MikeTyson… https://t.co/2VRqQB3oZH +09/04/2017,Sports_celeb,@MikeTyson,Mike Tyson Undisputed Truth Round 2 starts in a few days! Who's ready for another knock out performance?😉 https://t.co/dJPfeT4Ysi +09/02/2017,Sports_celeb,@MikeTyson,Click the link to listen to the full interview ► https://t.co/f6uDtxm5H2 @Rosenbergradio #Boxing #HipHop #MikeTyson https://t.co/W26Zd6oBPJ +09/01/2017,Sports_celeb,@MikeTyson,The @rootsoffight End of Summer #Sale is officially on! Head to https://t.co/Il5Ka9Q1uS to check out my #IronMike g… https://t.co/KdCRGr37n3 +08/31/2017,Sports_celeb,@MikeTyson,Click the link to listen ► https://t.co/sfhmMOrC3C @Rosenbergradio #Boxing #HipHop #MikeTyson #MichaelJackson https://t.co/sO28JLpr8G +08/30/2017,Sports_celeb,@MikeTyson,Round 2 of my Undisputed Truth @MGMGrand starts September 7th! Call (866) 740-7711 to book your tickets.… https://t.co/oXOg1NvK5f +08/30/2017,Sports_celeb,@MikeTyson,Every little counts for #HurricaneHarvey. I donated. Visit https://t.co/XbKW5UHBZj or call 1-800-RED CROSS to dona… https://t.co/QwdGtfEsqP +08/29/2017,Sports_celeb,@MikeTyson,Click the link to listen ► https://t.co/tVmlYTGgjn @Rosenbergradio #Boxing https://t.co/6LRpCmaaYk +08/29/2017,Sports_celeb,@MikeTyson,Vote for Mike Tyson Undisputed Truth Round 2 as Best Resident Performer in the @TheBestOfLV Awards! Click to vote:… https://t.co/q9aBkgwrCK +08/28/2017,Sports_celeb,@MikeTyson,Are you ready for Undisputed Truth Round 2? I'm back on stage @MGMGrand Las Vegas on Sept. 7th! Tickets:… https://t.co/QD2dtnnKFL +08/26/2017,Sports_celeb,@MikeTyson,Only my super fans will know who Teddy Atlas is. Listen to the most recent podcast to find out! ►… https://t.co/ygqmJgcgQs +08/26/2017,Sports_celeb,@MikeTyson,TODAY in #LasVegas: Meet me and my autograph at @FODVenetian & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 +08/25/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you soon! +08/24/2017,Sports_celeb,@MikeTyson,Listen to my podcast as we do a deep dive on my relationship with Cus like you have never heard before! ►… https://t.co/C8cSJWyMMk +08/24/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODVenetian & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 +08/24/2017,Sports_celeb,@MikeTyson,"VEGAS: Meet me this week & get my autograph at @FODCaesars, @FODVenetian & @TristarVegas! Info: https://t.co/5Nk70P0Jv2 See you there!" +08/23/2017,Sports_celeb,@MikeTyson,Mike Tyson Undisputed Truth Round 2 is @MGMGrand Las Vegas for a limited time! Call 866.740.7711 to get your ticket… https://t.co/1iYKl8RU2H +08/22/2017,Sports_celeb,@MikeTyson,"Still recovering from back surgery, interview with @JRsBBQ and @Rosenbergradio as they discuss my WWE career… https://t.co/MSXL3YVGJ3" +08/21/2017,Sports_celeb,@MikeTyson,"https://t.co/LrlPV1USH8 +Build your investment with @tradeonetwo! #MikeTysonforTrade12 #Trade12 +Trade12 Website:… https://t.co/9XZqNyViX1" +08/21/2017,Sports_celeb,@MikeTyson,"Mike Tyson Undisputed Truth Round 2 starts Thursday, September 7th @MGMGrand Las Vegas! Get your tickets👉… https://t.co/Lkn74N37ts" +08/20/2017,Sports_celeb,@MikeTyson,Learn how I pulled from pro wrestling & movies to come up with some of my most ruthless phrases Part 1/2▶… https://t.co/TN00DWWoi8 +08/18/2017,Sports_celeb,@MikeTyson,"I’m back @MGMGrand in Las Vegas for Undisputed Truth Round 2 starting Thursday, September 7th! Get your tickets👉… https://t.co/mGQ1AXXWi5" +08/18/2017,Sports_celeb,@MikeTyson,"While I recover from back surgery enjoy this early interview with my co-host, @Rosenbergradio. Part 1/2▶… https://t.co/iAHPqfcuVK" +08/17/2017,Sports_celeb,@MikeTyson,"While I recover from back surgery enjoy this early interview with my co-host, @Rosenbergradio and me. Part 2▶… https://t.co/AheErZvdAR" +07/02/2018,Sports_celeb,@GeorgeForeman,The ax put the snap in the shoulder; punchers need snap https://t.co/akV4lffJSI +07/02/2018,Sports_celeb,@GeorgeForeman,RT @atomic2011: @GeorgeForeman Amen +07/02/2018,Sports_celeb,@GeorgeForeman,RT @Willowzack: @GeorgeForeman AMEN +07/02/2018,Sports_celeb,@GeorgeForeman,RT @UntouchableVick: @GeorgeForeman Amen Big George! From RayPop's basement! #Help +07/02/2018,Sports_celeb,@GeorgeForeman,RT @KeefFan: @GeorgeForeman AMEN champ! +07/01/2018,Sports_celeb,@GeorgeForeman,They were the Cowboys of the old days Roy Rogers #1 https://t.co/EaF6uWUEpY +07/01/2018,Sports_celeb,@GeorgeForeman,RT @Ojoold: @GeorgeForeman Amen BiG George #from Nigeria +07/01/2018,Sports_celeb,@GeorgeForeman,"RT @JorgeH_Madrid: @GeorgeForeman Amen George! God bless you and your family. +Greets from Spain." +07/01/2018,Sports_celeb,@GeorgeForeman,RT @Carlitos7154: @GeorgeForeman Amen big George +07/01/2018,Sports_celeb,@GeorgeForeman,"RT @edtaussig: @GeorgeForeman Amen from Thailand! +Keep the faith George!" +07/01/2018,Sports_celeb,@GeorgeForeman,RT @haloumi35: @GeorgeForeman Amen from Australia champ 👊🏻👊🏻 +07/01/2018,Sports_celeb,@GeorgeForeman,"My Gift; Abe Lincoln, Washington, Kennedy. Wright Bros the Great name s come up; no mention of my name. But Ali he… https://t.co/ZoQUjqGtwC" +07/01/2018,Sports_celeb,@GeorgeForeman,RT @How_2PlayGuitar: @GeorgeForeman Amen George still the #champ +06/30/2018,Sports_celeb,@GeorgeForeman,Off till tomorrow! Love you guys “Fly your flags for the 4 of July I will. Don’t allow anyone to make you ashamed o… https://t.co/UKM2q8IIcG +06/30/2018,Sports_celeb,@GeorgeForeman,I was gone either way! https://t.co/9xJnRAYdLO +06/30/2018,Sports_celeb,@GeorgeForeman,"Sure was special to me: Louis Over Scheming, Ali I’ve Foreman, Frazier I’ve Ali (1) were so much bigger https://t.co/oIHvq0TDmb" +06/30/2018,Sports_celeb,@GeorgeForeman,I do hope Tyson Fury make it all the way back. Doesn’t matter how we fall it getting back up that make us Hero’s https://t.co/pnDoluZKE3 +06/30/2018,Sports_celeb,@GeorgeForeman,It fighting all over again; my strength was management! https://t.co/BepZMTlEI8 +06/30/2018,Sports_celeb,@GeorgeForeman,In his early years Ali had so much fun. Fun loving was a gift I wish I’d stolen from him ( as a young boxer) https://t.co/7VqUDDQzsI +06/30/2018,Sports_celeb,@GeorgeForeman,"BLTN was so much fun; but had our last season. So much travel, we will mis each other it made is special oh the lov… https://t.co/XIowWDTVWv" +06/30/2018,Sports_celeb,@GeorgeForeman,The best fighters today could have the best at anytime; Wilder & Joshua https://t.co/jpRXG5BgYv +06/30/2018,Sports_celeb,@GeorgeForeman,RT @ExceedingA: @GeorgeForeman Amen!!! +06/30/2018,Sports_celeb,@GeorgeForeman,Liston was a mountain like no other; him beating Cleveland William cemented his greatness against all Big punchers… https://t.co/9nmJXlcRGv +06/30/2018,Sports_celeb,@GeorgeForeman,Both are big Talents https://t.co/cDwYCAy9ns +06/30/2018,Sports_celeb,@GeorgeForeman,Naw! I had too much of too many https://t.co/TUVdZgr93b +06/30/2018,Sports_celeb,@GeorgeForeman,I became a Minister; knowing what others thought about it! Went against everything knew and believed. Facing family… https://t.co/g3FX21NY33 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @apajr2: @GeorgeForeman Amen!! https://t.co/nAHE8JdqWD +06/30/2018,Sports_celeb,@GeorgeForeman,RT @amagicmonkfish: @GeorgeForeman Amen! Good sir +06/30/2018,Sports_celeb,@GeorgeForeman,That’s not weight! https://t.co/nZBmHQVmVR +06/30/2018,Sports_celeb,@GeorgeForeman,Your dad and I both; we just didn’t know the Champ’s heart. But I miss the dude everyday https://t.co/SurSnoAFU1 +06/30/2018,Sports_celeb,@GeorgeForeman,Best wishes to all the men & women who love the USA and proudly ware the colors in battle. All my Love https://t.co/Tpo4xlU2Yd +06/30/2018,Sports_celeb,@GeorgeForeman,Back at you my friend https://t.co/MoCDs9JXpE +06/30/2018,Sports_celeb,@GeorgeForeman,RT @KamizonoCopen: @GeorgeForeman Amen!! +06/30/2018,Sports_celeb,@GeorgeForeman,That Shavers could hit! https://t.co/0OOqUepYff +06/30/2018,Sports_celeb,@GeorgeForeman,Agreed https://t.co/U6KxSTw43s +06/30/2018,Sports_celeb,@GeorgeForeman,RT @xarph: Seriously @GeorgeForeman Twitter is a beacon of light in these dark times. It's like the post Thanksgiving dinner living room wi… +06/30/2018,Sports_celeb,@GeorgeForeman,Can’t truly argue that! Tyson was all that and more https://t.co/1uTwPnbooO +06/30/2018,Sports_celeb,@GeorgeForeman,The comeback featured weightlifting it helped with injuries https://t.co/NkXdUS0HWq +06/30/2018,Sports_celeb,@GeorgeForeman,RT @jppower48: @GeorgeForeman Amen 🙏🇬🇧 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @Dataro39Dave: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,I think you did a fair job yourself; Liston/ Tyson interchangeable https://t.co/ccxX0hbD6y +06/30/2018,Sports_celeb,@GeorgeForeman,I was thinking while lying on the floor “what excuse can I come up with this time?Better get up till I think of som… https://t.co/3nr16B8uWP +06/30/2018,Sports_celeb,@GeorgeForeman,RT @wetbulldog: AMEN and God bless!! https://t.co/7EoMqdsFnm +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @LucaSalvarani11: @GeorgeForeman Amen, real warrior, true hero!" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @lgreglarue: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RPopBox: @GeorgeForeman Amen Champ!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @Petedaly321: @GeorgeForeman Amen George!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @EnnioBossi: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @matthewhollie: Amen, Big George. https://t.co/z6LfBkSVG7" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @julesnohrenberg: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @barchyman: @GeorgeForeman From one second-career pastor to another: AMEN! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @DanSchulz_: @GeorgeForeman AMEN George. +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @bdeyal1: @GeorgeForeman Amen Big George! + +And now in its original language Hebrew: + +אמן!" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @ajc725: @GeorgeForeman Amen from Chicago, champ!" +06/30/2018,Sports_celeb,@GeorgeForeman,I think Ali was https://t.co/CSsIqYBHBH +06/30/2018,Sports_celeb,@GeorgeForeman,RT @momridethewip: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,"So funny, 3-1 Foreman ( with honey ) https://t.co/8hvzuNDUsS" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @vampirejesse23: @griff0767 @GeorgeForeman Amen From Glasgow, Scotland!!!" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @shehryarali: @GeorgeForeman Amen, Champ. Amen." +06/30/2018,Sports_celeb,@GeorgeForeman,Fried chicken Bar. Match wing for wing https://t.co/oy7j3UA14f +06/30/2018,Sports_celeb,@GeorgeForeman,RT @halfpint_SRC: @maindoka @GeorgeForeman Amen!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @PaddyBrooks: Amen https://t.co/GfXyBiTwiV +06/30/2018,Sports_celeb,@GeorgeForeman,RT @CDCI85: @GeorgeForeman Amen George +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @joseantoniogall: Amen from Spain , champ! https://t.co/ZqKamqbSXA" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JimP3737: Amen https://t.co/x5rh7zmh0Y +06/30/2018,Sports_celeb,@GeorgeForeman,RT @gary_murrieta: @GeorgeForeman AMEN!!!! +06/30/2018,Sports_celeb,@GeorgeForeman,Don’t think so. He had my number https://t.co/5vC9pLzkHd +06/30/2018,Sports_celeb,@GeorgeForeman,RT @QhaweMadonko: @GeorgeForeman amen brother +06/30/2018,Sports_celeb,@GeorgeForeman,RT @WilfySafc: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @Thomas77321627: @GeorgeForeman Amen from Manitoba, Canada" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @PaulBachmann1: @GeorgeForeman Amen my friend. Always good to see you. +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @davesportsgod: @GeorgeForeman ""Amen!""" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @isawesome_life: @GeorgeForeman Amen, my dear Brother!" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JohnDCoville1: @GeorgeForeman Amen Champ!...you look to be in fighting shape. 👍 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @griff0767: Amen! https://t.co/d6pTyqp19t +06/30/2018,Sports_celeb,@GeorgeForeman,RT @casewinedrinker: @GeorgeForeman Amen Big George +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RGoodman46805: @GeorgeForeman A big Amen comin' at ya! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @CuboidCYBORG: @GeorgeForeman Amen brother George +06/30/2018,Sports_celeb,@GeorgeForeman,RT @7Cookies4me: @GeorgeForeman Amen Champ! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @maindoka: Amen https://t.co/6ZndBavvNs +06/30/2018,Sports_celeb,@GeorgeForeman,RT @SteelergalMiche: @GeorgeForeman Amen George!! From California! ✌❤ +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @lsjeff: @GeorgeForeman George, i have my own thoughts on religion, but when a guy of 6.4 built like you says can i get an amen... I say…" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @will2survive71: @GeorgeForeman AMEN!!!!!!!!!!!😃 +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @JohnStarr4: @GeorgeForeman Amen, and pass the smelling salt." +06/30/2018,Sports_celeb,@GeorgeForeman,RT @okko1976: @GeorgeForeman Amen big George all the way from New Zealand!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JayhawkLuvr: @GeorgeForeman Amen! MAGA🇺🇸 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RJersey_devil: @GeorgeForeman 50th Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @swrazer1: @GeorgeForeman Amen! Happy 4th Champ https://t.co/Sodzkdw43S +06/30/2018,Sports_celeb,@GeorgeForeman,RT @tincup2442: Amen https://t.co/ZJ1TylK7ig +06/30/2018,Sports_celeb,@GeorgeForeman,RT @kingman99: Amen https://t.co/ZyK60D13wu +06/30/2018,Sports_celeb,@GeorgeForeman,RT @130kali: Amen https://t.co/FxLNbIsad5 +06/29/2018,Sports_celeb,@GeorgeForeman,"Alright I said “Amen,” can I get an Amen, Gimme an Amen! +USA Big day is coming https://t.co/1oLTIfPums" +06/29/2018,Sports_celeb,@GeorgeForeman,RT @ATRboxinguk: 10 years since he retired but Joe Calzaghe still got those fast hands! 🔥 https://t.co/53qIQHas5W +06/29/2018,Sports_celeb,@GeorgeForeman,Larry’s name will out last a lot of Champs In The future. His time will come when praise will hep on his head. https://t.co/W87XvgI6jf +06/27/2018,Sports_celeb,@GeorgeForeman,Louis was a lot younger than I was when I fought Moore. He was a babe when he fought Marciano ( I been there ) https://t.co/lodGSdVRzI +06/27/2018,Sports_celeb,@GeorgeForeman,"He actually dropped Liston with quick right, ( clipped me with it ) +Listion could have gotten up though. +He just di… https://t.co/I8Wa1dcGqM" +06/27/2018,Sports_celeb,@GeorgeForeman,Upfront money has to be big. No one is talking the right pay. If they can make the payday with others why not? https://t.co/XdfHf5loXp +06/27/2018,Sports_celeb,@GeorgeForeman,"Upfront gotta be big That’s all. +G https://t.co/XdfHf5loXp" +06/26/2018,Sports_celeb,@GeorgeForeman,Liston was a great Athlete; he had such big hands that I saw him do great feats of strength with ( out of the ri… https://t.co/qGAHpa218f +06/26/2018,Sports_celeb,@GeorgeForeman,No one really said ( to me ) but this guy was special & boxing wasn’t even half of what he really did with his life… https://t.co/yOkvzqvUd7 +06/26/2018,Sports_celeb,@GeorgeForeman,The Champ could take a shot! https://t.co/hn3PKar2jp +06/26/2018,Sports_celeb,@GeorgeForeman,"This is true, I was so in the ring with both Liston & Cleavland William ( sparing ) https://t.co/Tk9SFshEHG" +06/24/2018,Sports_celeb,@GeorgeForeman,Charlie Shipes; my favorite ( personal) Boxer. I hired Dick Sadler. Because I wanted to learn Shipes style. https://t.co/U7B0esGFgn +06/24/2018,Sports_celeb,@GeorgeForeman,"Can’t go wrong there, he learned from Blackburn https://t.co/fvMBIEN9kO" +06/24/2018,Sports_celeb,@GeorgeForeman,"Not very well, against Louis/ didn’t do well against Ali for sure. https://t.co/4adnOB3py8" +06/24/2018,Sports_celeb,@GeorgeForeman,"No one punched like Joe Louis. +Phenomenal delivery https://t.co/0JUaW6G66S" +06/24/2018,Sports_celeb,@GeorgeForeman,You got it right Chuvalo & Ali Chins of steel No one else. https://t.co/G5Qdi2yDv3 +06/24/2018,Sports_celeb,@GeorgeForeman,Jack Blackburn ( Joe Louis ) and a few others he trained to be Champs Angelo Dundee; greatest cornerman ever. What… https://t.co/8NzuCmddyS +06/24/2018,Sports_celeb,@GeorgeForeman,Morrison was a very Skillful Boxer/puncher. Miss him https://t.co/TrUBFjIsSy +06/23/2018,Sports_celeb,@GeorgeForeman,"@midastouch1971 PO Box 1404 Huffman Tx 77336 +Bgfuzzy2@aol.com" +06/23/2018,Sports_celeb,@GeorgeForeman,They may have been made to order for me; but no way I’d said “may I have Tyson/ Marciano on my plate. killers to go… https://t.co/8M614VKwbY +06/23/2018,Sports_celeb,@GeorgeForeman,Spent many hours with Emile so fun fun loving. Always a smile and kind greeting; made boxing class https://t.co/gqF3Q9OWDF +06/23/2018,Sports_celeb,@GeorgeForeman,"Well, the names you mentioned after are no less than great, happy you put me in the mix; but let’s face it Ray Robe… https://t.co/1tXnA8hI0l" +06/23/2018,Sports_celeb,@GeorgeForeman,"UK Boxing fans are ranked #1 in my book. +Along with Las Vegas https://t.co/6JZRFbEwp3" +06/23/2018,Sports_celeb,@GeorgeForeman,Yeah indeed https://t.co/jeigud5s8z +06/21/2018,Sports_celeb,@GeorgeForeman,"Great things still happen in sports NY,NY https://t.co/1Nqa47QZE3" +06/21/2018,Sports_celeb,@GeorgeForeman,It’s about being healthy for the seventh inning stretch https://t.co/RZY6Ei711z +06/20/2018,Sports_celeb,@GeorgeForeman,Easy to forget how important each person is. Every stone we throw seems to ricochet back at us; with 10 kids I keep… https://t.co/kWbjPyKQsu +06/20/2018,Sports_celeb,@GeorgeForeman,"If I could stand on the highest peek and scream 3 words ( the world could hear ) before I pass, I’d say “I Love You… https://t.co/oqWXUNADvP" +06/19/2018,Sports_celeb,@GeorgeForeman,https://t.co/h35DPBDF4T +06/18/2018,Sports_celeb,@GeorgeForeman,Clay Hodges beat me twice! Another one who had my number ( amateurs ) https://t.co/n9C6wznRhT +06/17/2018,Sports_celeb,@GeorgeForeman,Have you heard of “Rope a dope” well here I am “The Dope.” Happy Father’s Day https://t.co/BhN6SWlIYD +06/15/2018,Sports_celeb,@GeorgeForeman,"Just very scary in the first fight, Frazier had beaten them all, Big & small. Dropped Ali who had a chin iron https://t.co/T3maZa5Dsh" +06/15/2018,Sports_celeb,@GeorgeForeman,"RT @andrewakang: I'll be sporting my new favorite tank top all summer. One of my heroes, @GeorgeForeman. Maybe I'll wash it a few times at…" +06/15/2018,Sports_celeb,@GeorgeForeman,RT @Kevo3632: @KT_BOXING Crude but effective 👊 +06/15/2018,Sports_celeb,@GeorgeForeman,"A photo with a real friend,! Scott https://t.co/oDIHXrNA1l" +06/15/2018,Sports_celeb,@GeorgeForeman,RT @CaRedzfan: @GeorgeForeman My daughter said you were a great motivational speaker. Thank you for talking to her group at @pepperdine tod… +06/15/2018,Sports_celeb,@GeorgeForeman,RT @TheTorreiran: @BoxingNewsED @GeorgeForeman I was a kid maybe 10 and I loved Frazier because he was a gentleman and he didn’t taunt peop… +06/13/2018,Sports_celeb,@GeorgeForeman,RT @BoxingPost: @GeorgeForeman The momentum you had plus the improvements you'd made going in to 1977 would have probably made you a favour… +06/13/2018,Sports_celeb,@GeorgeForeman,"RT @gary536714: @GeorgeForeman Hi Big George, Ali would beat you in your fiction book too! He would buy all the books so no one could read…" +06/13/2018,Sports_celeb,@GeorgeForeman,"RT @AnimlSalvideos: @GeorgeForeman GREATEST thing about Foreman is in his books, preface he states ""I will not refer to people based on the…" +06/13/2018,Sports_celeb,@GeorgeForeman,I met Cleveland William at (12) he came by home courting my cousin; ‘Big nice man’.mom gave him advice I just stare… https://t.co/rmtOm0CgxN +06/11/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali, at the same time ( 74) was too much of a Boxer for me. He had the height and jab to out point me. I w… https://t.co/RhF6MjPa11" +06/11/2018,Sports_celeb,@GeorgeForeman,"Love you Dude, always will; let’s keep talking “Fight.”’it’s all we have https://t.co/QUzJl2ZIai" +06/11/2018,Sports_celeb,@GeorgeForeman,"Love this Ali it was to really inspire such a quote. And the people so loved him, sure miss him today https://t.co/a7oKHu1dOT" +06/11/2018,Sports_celeb,@GeorgeForeman,Wow what writing! Thanks https://t.co/8gDWiLz8zG +06/11/2018,Sports_celeb,@GeorgeForeman,Lovely! https://t.co/3Qmqr7XUa3 +06/11/2018,Sports_celeb,@GeorgeForeman,Sonny Liston was a bit frightening; William can after so I was prepared a bit https://t.co/PUtzdAEFsA +06/11/2018,Sports_celeb,@GeorgeForeman,RT @RJersey_devil: @GeorgeForeman Why not keep it non fiction but include a George Foreman dream sequence where u dream that u beat Ali? Id… +06/11/2018,Sports_celeb,@GeorgeForeman,I’d have to check the movie scrip? https://t.co/aRMXk8kC5F +06/11/2018,Sports_celeb,@GeorgeForeman,"If I did a movie about my life, it’d have to be Fiction; cause I would have to win the Ali fight Africa “in my own… https://t.co/3WN0YHDDzK" +06/11/2018,Sports_celeb,@GeorgeForeman,"imagine Telling the story of WWII, with the glory of (D-Day ) and omitting all the Atrocities That occurred there… https://t.co/NycS6g3z6P" +06/11/2018,Sports_celeb,@GeorgeForeman,Before the match was made Ali and I were pretty close. https://t.co/j2jsXDKgIQ +06/11/2018,Sports_celeb,@GeorgeForeman,The last month with a cut over my eye. For days I couldn’t sweat; then no sparring. Challenges I over came. I was… https://t.co/IsrWsTt0eO +06/11/2018,Sports_celeb,@GeorgeForeman,"No way Ali had anything to do with it. +When I was falling all over everything ( before the punch) he almost asked m… https://t.co/B1EnGO9j1z" +06/11/2018,Sports_celeb,@GeorgeForeman,"His punch ( Ali ) sure had me hearing Bells. +That’s all I have to say about that. https://t.co/e9T3IggCnL" +06/11/2018,Sports_celeb,@GeorgeForeman,RT @yasinshah: @BruceCantrell9 @DRubberfist @PcLalalalalal @GueziBadreddine @GeorgeForeman Don't try to take away from Ali. He knocked out… +06/10/2018,Sports_celeb,@GeorgeForeman,"Hermann Niedergassel; I lost a friend and a True Legend. I got the news today, Germany is great for him and his lov… https://t.co/Z7Z3c34nC5" +06/10/2018,Sports_celeb,@GeorgeForeman,"Otis Redding ""The Glory of Love"" https://t.co/j0QqEhr1Kq via @YouTube" +06/10/2018,Sports_celeb,@GeorgeForeman,It’s a good day to stand for for something. Can’t KO a cause. No matter how you punch it stands. https://t.co/YkKVbQdY5E +06/10/2018,Sports_celeb,@GeorgeForeman,Glad to know you love our USA! https://t.co/AuqK7sJAFS +06/10/2018,Sports_celeb,@GeorgeForeman,About 3 years for me to say “Ali-Ali” https://t.co/3XTq5DDTJw +06/10/2018,Sports_celeb,@GeorgeForeman,RT @GeorgeForeman: My first ( US ) public signing; proof I did it ( fist time in 24 years I signed Everlast ) something you can pass on wi… +06/10/2018,Sports_celeb,@GeorgeForeman,“Muhammad Ali” He earned his name. Love you Bruce https://t.co/ZdaNCwbBhy +06/09/2018,Sports_celeb,@GeorgeForeman,"RT @DavidMa84365336: @GeorgeForeman @FitermanSports Nice ‘graph there, champ. Sure better than the chicken scratch that today’s athletes pa…" +06/09/2018,Sports_celeb,@GeorgeForeman,My first ( US ) public signing; proof I did it ( fist time in 24 years I signed Everlast ) something you can pass… https://t.co/ZLC01yWE1U +06/08/2018,Sports_celeb,@GeorgeForeman,"So true, I’m ever grateful https://t.co/rRtMepX8AL" +06/08/2018,Sports_celeb,@GeorgeForeman,"“Right uppercut” if I got you with it bang, Ali was smart never bend his head https://t.co/a1tNHNoIOF" +06/08/2018,Sports_celeb,@GeorgeForeman,"Ali said to me “If you take Sadler back you get the rematch” I said No, “well you’ll never get the rematch.” I neve… https://t.co/ZoClTgtmmf" +06/07/2018,Sports_celeb,@GeorgeForeman,"Wrote about in 94, BY George my autobiography. Told of it in 84, Sport Illistration. Old story it is. https://t.co/HLKV4520Bx" +06/07/2018,Sports_celeb,@GeorgeForeman,"The hardest thing was leaving family; ten years of at home dad taking kids to school, cooking & games together Hard… https://t.co/oP5Hm8w2DK" +06/07/2018,Sports_celeb,@GeorgeForeman,You can Say That again! https://t.co/fXSKIAT88t +06/07/2018,Sports_celeb,@GeorgeForeman,"RT @RTDNA: @JMMeszaros @wusf @DavidPierceUI7 @Illinois_Alma @HopkinsMedicine Our $6,000 @GeorgeForeman Scholarship for @UTAustin students g…" +06/07/2018,Sports_celeb,@GeorgeForeman,Amen Brother been there! No bee sting though more like sting “like Mule kick.” https://t.co/jwSNxOyBrT +06/07/2018,Sports_celeb,@GeorgeForeman,"I’m just happy to be alive still, the people who put drugs in my water weren’t Pharmacist; just uneducated bums.los… https://t.co/VK8zk0wLZm" +06/07/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali didn’t need any help; his style would beat Liston & me any day of the week. Too fast, took boxing to a… https://t.co/8OVrIzsewy" +06/07/2018,Sports_celeb,@GeorgeForeman,"RT @32Red: @32Red 's new best friend, ""Big George"" Foreman give's his exclusive insights on Fury's return this weekend as well as talking a…" +06/07/2018,Sports_celeb,@GeorgeForeman,I hear you friend; “to the victor goes the spoils;” defeat is lonely and the truth is the Light. https://t.co/3qWYP6K14l +06/07/2018,Sports_celeb,@GeorgeForeman,RT @IvanTheK: @GeorgeForeman My theory: That punch is responsible for you coming up with the idea for The George Foreman Lean Mean Fat-Redu… +06/07/2018,Sports_celeb,@GeorgeForeman,I’d fought them all with success; but Ali had a better plan that most https://t.co/BvbK9BO8E0 +06/07/2018,Sports_celeb,@GeorgeForeman,Makes me so happy. So Thankful https://t.co/IkObGwyhsD +06/06/2018,Sports_celeb,@GeorgeForeman,"I was drugged, but if that fast punch of Ali would have stayed put; it never would worked. So fast I didn’t see it… https://t.co/IOTPbqxuyS" +06/05/2018,Sports_celeb,@GeorgeForeman,Hope we meet again! Best wishes G https://t.co/OESsNLcze1 +06/05/2018,Sports_celeb,@GeorgeForeman,The only animals who’s guilty of abusing Humanity walked on 2 legs & eat with knife & fork. ( I too have repented) https://t.co/OpcymNOJS7 +06/05/2018,Sports_celeb,@GeorgeForeman,You can’t “we;” friend it’s you! I love Hollywood but it’s not my sores of education. ( When we were King ) go to A… https://t.co/ZjvNUBTFF1 +06/05/2018,Sports_celeb,@GeorgeForeman,When I was younger; I spoke whatever language Cinderella demanded. Married now it’s only “Yes nam- o Mam! https://t.co/v8YtqzvMsJ +06/05/2018,Sports_celeb,@GeorgeForeman,"You must travel these places. Talk to the people; ( who by the way ask me to bring Digo, my Dog ) most speak 3-5 la… https://t.co/FOftp6UMNB" +06/05/2018,Sports_celeb,@GeorgeForeman,"Africans aren’t small minded people they’re well educated. Not afraid dolls, voodoo, dogs, nor Tarzan you were miss… https://t.co/zWK8okrWzz" +06/05/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali Loved Boxing, he loved people more that he was loved ( that’s a lot ) dang I miss him https://t.co/rvj2pVaxVH" +06/05/2018,Sports_celeb,@GeorgeForeman,RT @ClydeFraziersWD: We had some #knicks fans in the crowd for game 2 of the #nbafinals. Make plans to join was on Wednesday for game @Wal… +06/02/2018,Sports_celeb,@GeorgeForeman,Everyday I wake up-put my feet on the floor and see that same “Fork in the middle of the road” first thing first..… https://t.co/o0yYIQ5gCn +06/02/2018,Sports_celeb,@GeorgeForeman,"Yes,”Never get too far from Earth that we forget we’re human beings.” Saying & doing things to others we said we’d… https://t.co/lHd5wcPmLI" +06/02/2018,Sports_celeb,@GeorgeForeman,Never been to India. I still have goals https://t.co/VeZ6ibSfXM +06/02/2018,Sports_celeb,@GeorgeForeman,RT @Magicrican: @mikeygarcia @GeorgeForeman 100% with the Champ Mr. Foreman. Mikey is the best. Many Blessings from your fans Puerto Rico. +06/02/2018,Sports_celeb,@GeorgeForeman,I was there working a couple of out yesterday. Still kicking https://t.co/l79oCQkbtX +06/01/2018,Sports_celeb,@GeorgeForeman,"Salmon steak; salt, pepper & garlic Marinade. The most dreamy thing I’ve done on the GF Grill https://t.co/QH90dgnqAe" +06/01/2018,Sports_celeb,@GeorgeForeman,"Archie Moore never mention my age: as we trained worked me as he would a kid. Encouragement enough, always felt lik… https://t.co/nYuTnATm7J" +06/01/2018,Sports_celeb,@GeorgeForeman,"Mikey Garcia, is my favorite boxer today. https://t.co/GnQ0RveKDD" +06/01/2018,Sports_celeb,@GeorgeForeman,That’s not true whatsoever! Not any part of it; We never rode together “until after Africa” Gave him a ride to LA a… https://t.co/Xu3cUYZKXU +06/01/2018,Sports_celeb,@GeorgeForeman,For a change a man record speaks for itself. I heavyweight has ever done this in a sport. 3 Gold https://t.co/TpUDkDuZ3Y +06/01/2018,Sports_celeb,@GeorgeForeman,All the above. https://t.co/AoGDHPqyhy +06/01/2018,Sports_celeb,@GeorgeForeman,That’s a lot of question; Liston in sparring made me back up; Italy in the Olympic The man sent an alarm off in my… https://t.co/GhDTbE5Du0 +06/01/2018,Sports_celeb,@GeorgeForeman,"I was too busy trying to cover up from his 50-60 shots he threw at me, to figure which 1, shot I hit him with? https://t.co/aF7z0pPdzc" +05/30/2018,Sports_celeb,@GeorgeForeman,"RT @KT_BOXING: @GeorgeForeman With Moorer, you put yourself in the line of fire to bait him in and make him confident he could take you out…" +05/30/2018,Sports_celeb,@GeorgeForeman,"I love meats; caviar, escargot and bugs while in China https://t.co/Jt7CcJInWg" +05/29/2018,Sports_celeb,@GeorgeForeman,RT @casualboxingfan: @GeorgeForeman 😂Classic reply from big George. Still sharp despite all those blows! +05/29/2018,Sports_celeb,@GeorgeForeman,None of the above! https://t.co/W9EuGViJha +05/29/2018,Sports_celeb,@GeorgeForeman,"RT @AKhan4200: @kenshiroshah @ColmMagan @McTierArt @GeorgeForeman that is not called a jab, if you are standing orthodox, ur right hand sho…" +05/29/2018,Sports_celeb,@GeorgeForeman,I would taken it; not sure if things would have been that much different? That Boy just had my number https://t.co/hQOVbc5wIo +07/02/2018,Sports_celeb,@StephMcMahon,“It’s kind of fun to do the impossible.” -Walt Disney #motivationmonday #morningmotivation https://t.co/dXhUHLqUYs +07/02/2018,Sports_celeb,@StephMcMahon,What an honor to be a part of @2018USAGames Opening Ceremonies & @espn’s Unified Sports Challenge! I’m so inspired… https://t.co/4T2eXr80fi +07/01/2018,Sports_celeb,@StephMcMahon,"RT @SOCTconnecticut: Team Connecticut-led by @WWE's @StephMcMahon, Honorary Chair of the Team, SOCT President Beau Doherty & SOCT Board Mem…" +07/01/2018,Sports_celeb,@StephMcMahon,Ready to compete in the @espn Unified Sports Challenge on #TeamWWE! #RiseWithWWE 💪 https://t.co/fxOpum0PQU +07/01/2018,Sports_celeb,@StephMcMahon,Me & my mini-me ready to walk out with @SpecialOlympics Team Connecticut at the @2018USAGames #RiseWithWWE https://t.co/xhlY1bDLKM +07/01/2018,Sports_celeb,@StephMcMahon,"RT @2018USAGames: .@TheMarkHenry is joined by @MsCharlotteWWE to tell the athletes to perform this week with some FLAIR!! + +Thank you @WWE…" +07/01/2018,Sports_celeb,@StephMcMahon,"RT @SpecialOlympics: We go LIVE in Seattle for the @2018USAGames Opening Ceremony at 3:30 pm ET TODAY! + +Be sure to tune-in to @ABCNetwork…" +06/30/2018,Sports_celeb,@StephMcMahon,#RIPMattCappotelli You showed everyone what it means to never give up and to always stay positive. It was a honor t… https://t.co/PrAVI9VifI +06/29/2018,Sports_celeb,@StephMcMahon,RT @ShaniaTwain: What a surprise at my Montreal show... THE @FightOwensFight! @WWE https://t.co/xXHTEfl6wM +06/29/2018,Sports_celeb,@StephMcMahon,"How COOL is this?!? I’m so proud to be included as a @Mattel WWE Superstar fashion figure with these dynamic, stron… https://t.co/1az7Vi9hp2" +06/28/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@WWE Chairman & CEO @VinceMcMahon announces the historic #WWESSD at the Melbourne Cricket Ground on October 6th! https://t.co/KCq… +06/28/2018,Sports_celeb,@StephMcMahon,"RT @WWEPR: For @WWE Superstar @MsCharlotteWWE , one of the stars of @espn The Magazine's 2018 #BodyIssue , wrestling is more than just turn…" +06/28/2018,Sports_celeb,@StephMcMahon,Thank you @KentsisResearch! I suppose this tweet is the formal announcement of the #PediatricCancerActionCouncil! W… https://t.co/iJZERhoc2p +06/28/2018,Sports_celeb,@StephMcMahon,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/26/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@USA_Network and @WWE announce a five-year extension for Monday Night #Raw! https://t.co/dSB5WNGrse +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Beginning Friday, October 4, 2019, @FOXTV will air @WWE’s flagship program #SDLive as part of a new five-year agreement with @FOXS…" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWEUKCT: We're baaaaack! + +#WWEUKCT continues RIGHT NOW with the #NXTUK special, streaming only on @WWENetwork! #NXTUKCT https://t.co/tZ…" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @MsCharlotteWWE: #BODY10 with Flair! +Hits newsstands June 29th https://t.co/P6JBfHk9J5" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Starting this Sunday, @SpecialOlympics will arrive in Seattle for a celebration of hard work, talent, and triumph, and @MojoRawley…" +06/25/2018,Sports_celeb,@StephMcMahon,"RT @espn: .@MsCharlotteWWE is in ESPN the Magazine's BODY10 Issue, and she knows what it's like to strike a balance between old and new. ht…" +06/25/2018,Sports_celeb,@StephMcMahon,RT @WWEUKCT: #WWEUKCT takes center stage at London's @RoyalAlbertHall... RIGHT NOW on @WWENetwork! https://t.co/sp546EEfDF +06/25/2018,Sports_celeb,@StephMcMahon,Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue.… https://t.co/EfOYZC0WK4 +06/25/2018,Sports_celeb,@StephMcMahon,“There’s no excuse for anyone to work harder than you do.” -Derek Jeter #motivationmonday #morningmotivation https://t.co/4ROnqbeRaR +06/23/2018,Sports_celeb,@StephMcMahon,RT @TripleH: See the MUST SEE @WWEUKCT matches and the brand new #NXTUK division everyone is on talking about all from the historic @RoyalA… +06/23/2018,Sports_celeb,@StephMcMahon,The #WomensEvolution is here! Support your favorite female Superstars and RT! #WWE24 #Empowered for #Emmys. @WWE https://t.co/JbEgNgIplQ +06/23/2018,Sports_celeb,@StephMcMahon,#Emmys MEET #RAW25. At over 1300 episodes #RAW is the longest running weekly episodic television show in U.S. histo… https://t.co/wSbffl2skC +06/23/2018,Sports_celeb,@StephMcMahon,.@WWE's Facebook Watch show #WWEMMC is up for your consideration at the #Emmys. RT to help support. Voting closes t… https://t.co/shozBX4IPr +06/22/2018,Sports_celeb,@StephMcMahon,RT @WWE: Get ready for the conclusion of the 2018 @WWEUKCT with a marathon of the first round action! #WWEUKCT https://t.co/00oFuAxuSP +06/21/2018,Sports_celeb,@StephMcMahon,"RT @WWEUKCT: We're bringing ALL the First-Round #WWEUKCT action directly to you on @facebook, @Twitter, and @YouTube tomorrow at noon ET! h…" +06/21/2018,Sports_celeb,@StephMcMahon,"Thank you @scullather! I agree, what a privilege to be alongside these incredible brands and people! https://t.co/fijDYWPsB9" +06/21/2018,Sports_celeb,@StephMcMahon,Agreed! Thanks again @cnbcKaren! https://t.co/b5XPGgJmaG +06/21/2018,Sports_celeb,@StephMcMahon,The feeling is mutual @weareTFQ!!! https://t.co/XzWjLJfOPn +06/21/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Are you ready? @WWE @MaeYoungClassic 2018 will be held on Wednesday, Aug. 8 & Thursday, Aug. 9 at @FullSail, and YOU can secure yo…" +06/20/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Chicago... +#NXTTakeover and #MITB +London... +@RoyalAlbertHall, #NXTUK, #WWEUKCT +Cannes, France... +#CannesLion +Off to Orlando...…" +06/20/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Leon White entertained (and intimidated) audiences all over the world with his size, strength, and agility. Saddened to hear o…" +06/20/2018,Sports_celeb,@StephMcMahon,So grateful to have this #Bawse as a friend and an inspiration! I love you @IISuperwomanII!!! #Sisterhood #GirlLove… https://t.co/9vKNBIjpcr +06/20/2018,Sports_celeb,@StephMcMahon,So cool driving around with this hot mama @cnbcKaren in a McLaren 570S around #CannesLions for #WhatDrivesYou https://t.co/3xzZ3wReZf +06/20/2018,Sports_celeb,@StephMcMahon,RT @WWE: It will ALWAYS be Vader Time. #RIPVader https://t.co/Zg50TuP5v2 +06/20/2018,Sports_celeb,@StephMcMahon,"RT @MsCharlotteWWE: No designer clothes, no makeup, no filters. +Nothing to hide. Everything to be proud of. +Every woman is a queen, never f…" +06/19/2018,Sports_celeb,@StephMcMahon,RT @WWE: Meet one-of-a-kind soul and @SpecialOlympics athlete Joshua Oakley! #WWEHero #SpecialOlympicsUSAGames https://t.co/4kAXoZFpAp +06/19/2018,Sports_celeb,@StephMcMahon,RT @WWE: Congratulations to @JohnCena on being named a finalist for @ESPN's Muhammad Ali Sports Humanitarian Award! https://t.co/umn7UfWEAB +06/19/2018,Sports_celeb,@StephMcMahon,RT @cnbcipr: .@WWE Chief Brand Officer @StephMcMahon with @cnbcKaren before taking a spin in the @CNBCi @McLarenAuto #WhatDrivesYou #Cannes… +06/19/2018,Sports_celeb,@StephMcMahon,"RT @WWE: An honor fit for a Queen. Congratulations to @MsCharlotteWWE who will be featured in @espn The Magazine’s #Body10 on Friday, June…" +06/19/2018,Sports_celeb,@StephMcMahon,RT @weareTFQ: Influence and impact: give back with generosity and use your platform for change! @ShelleyZalis @StephMcMahon @badassboz @IIS… +06/19/2018,Sports_celeb,@StephMcMahon,"Excited to be back at #CannesLions, ready to speak about taking risks and building brands with these two incredible… https://t.co/yA9hxY7ZcU" +06/19/2018,Sports_celeb,@StephMcMahon,RT @TripleH: Thank you @GMB for having me this morning to discuss our historic return to @RoyalAlbertHall and the announcement of #NXTUK. h… +06/19/2018,Sports_celeb,@StephMcMahon,"Go “Green Machine”! I’m so proud of you Max, you are a Champion for kids and adults everywhere! #WalkForChildrens i… https://t.co/xuPuzNRZAj" +06/18/2018,Sports_celeb,@StephMcMahon,"RT @WWE: BREAKING NEWS: A new brand, #NXTUK is coming to @WWEUK. @TripleH and GM Johnny Saint announced the news this evening @RoyalAlbertH…" +06/18/2018,Sports_celeb,@StephMcMahon,"“If you obey all the rules, you miss all the fun.” -Katharine Hepburn #motivationmonday #morningmotivation https://t.co/NKyDPRAuI4" +06/18/2018,Sports_celeb,@StephMcMahon,Enjoyed meeting w @LK @laurafrofro @wellskatie @kaymadati talking shop w @Twitter. Especially enjoyed seeing this g… https://t.co/HmkXkW3xsx +06/18/2018,Sports_celeb,@StephMcMahon,RT @WWE: UP NEXT: Who will become the next Ms. (or Mrs.) Money in the Bank? We're about to find out on @WWENetwork! #MITB https://t.co/6zpM… +06/17/2018,Sports_celeb,@StephMcMahon,"Dad, thank you for always making me feel loved, every moment of my life. I am truly blessed and forever grateful. I… https://t.co/DepeHihvJI" +06/17/2018,Sports_celeb,@StephMcMahon,#HappyFathersDay to the most incredible father… https://t.co/4W61m4wF6Z +06/17/2018,Sports_celeb,@StephMcMahon,#HappyFathersDay to the most incredible father in the world!!! Your daughters adore you and so do I! https://t.co/pLsW27OveX +06/17/2018,Sports_celeb,@StephMcMahon,RT @TripleH: We are underway in Chicago. #WeAreNXT #NXTTakeOver https://t.co/SQ0mGymFLZ +06/16/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Every #NXTTakeOver is an opportunity to make a mark...to change the course of @WWENXT... +#NXTTakeOver: Chicago is LIVE tonight…" +06/16/2018,Sports_celeb,@StephMcMahon,"RT @VinceMcMahon: Proud to be making history in Australia with WWE Super Show-Down on Saturday, Oct. 6, at the iconic @MCG. https://t.co/na…" +06/16/2018,Sports_celeb,@StephMcMahon,RT @undercover_cbs: Watch @StephMcMahon go undercover on #CelebrityBoss to discover future @WWE talent. Stream the latest episode now befor… +06/16/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: On Saturday, October 6th, @WWE brings the Super Show-Down to the @MCG in Melbourne, Australia ... the largest live event. EVER…" +06/16/2018,Sports_celeb,@StephMcMahon,RT @WWE: Just because @StephMcMahon is comfortable on the set of this action-packed photo shoot doesn't mean that her @undercover_cbs chara… +06/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: While disguised as ""Sam"" on @undercover_cbs, @StephMcMahon talks to gymnastics coach and aspiring @WWE Superstar Kenny about the i…" +06/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Be a part of history when @WWE heads to @MCG for @WWE Super Show-Down on Saturday, October 6! Tickets are available Thursday, June…" +06/16/2018,Sports_celeb,@StephMcMahon,Thank you to everyone who tuned in tonight to watch my episode of @Undercover_CBS! The experience of going undercov… https://t.co/KJ1UzqbbwQ +06/16/2018,Sports_celeb,@StephMcMahon,"RT @undercover_cbs: Watch @StephMcMahon go undercover as ""Samantha Miles"" NOW on #CelebrityBoss.✨ https://t.co/gfjFJHDMf0" +06/15/2018,Sports_celeb,@StephMcMahon,"It was so cool being able to go undercover and surprise some of our @WWE fans, I still can’t believe I was able to… https://t.co/DcTT68SzDI" +06/15/2018,Sports_celeb,@StephMcMahon,RT @WWE: We are right on 🎯 for an ALL-NEW episode of @undercover_cbs starring the one and only @StephMcMahon TONIGHT at 8/7c! #CelebrityBos… +06/15/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: #NXTTakeOver: Chicago TOMORROW NIGHT: + +@WWEAleister v @LarsSWWE #NXTChampionship +@QoSBaszler v @NikkiCrossWWE #NXTWomensChampi…" +06/15/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ""I decided to go undercover because I will have the chance to meet some of my fellow @WWE fans...so that I can give back to them i…" +06/15/2018,Sports_celeb,@StephMcMahon,...Do you think I had anyone fooled? @Undercover_CBS #CelebrityBoss https://t.co/ggRFXt5Cjd +06/15/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout w/ @defrancosgym @tripleh… https://t.co/WQqlPhP47N +06/15/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: See the exclusive interview with @catherinekelley immediately following #NXTTakeOver: Chicago on my official Facebook page. +h…" +06/15/2018,Sports_celeb,@StephMcMahon,Samantha Miles makes her big TV debut tomorrow night on @Undercover_CBS. I can’t wait for you guys to see this epis… https://t.co/l80sicmqBv +06/14/2018,Sports_celeb,@StephMcMahon,"RT @WWE: TOMORROW NIGHT at 8/7c: @StephMcMahon meets some talented, young athletes on @undercover_cbs! #CelebrityBoss https://t.co/5nmayz0K…" +06/14/2018,Sports_celeb,@StephMcMahon,RT @ChildrensPgh: We need your help to beat last year's #WalkforChildrens total! Donate or register today at https://t.co/7TmHP5aaQZ to get… +06/14/2018,Sports_celeb,@StephMcMahon,RT @WWE: Where and when can YOU check out the first round matches of the @WWEUK Championship Tournament?! ALL the details are right here...… +06/14/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout w @defrancosgym @tripleh &… https://t.co/laLV28yQaX +06/14/2018,Sports_celeb,@StephMcMahon,"RT @WWE: The first-ever @FortniteGame Pro-Am Tournament resulted in @XavierWoodsPhD winning $10,000 for @ConnorsCure! https://t.co/plqjz5rU…" +06/13/2018,Sports_celeb,@StephMcMahon,RT @BellaTwins: So beyond excited for @TotalDivas being nominated for a @TeenChoiceFOX for Choice Reality TV show! Bella Army please make s… +06/13/2018,Sports_celeb,@StephMcMahon,"RT @undercover_cbs: The ""Queen of the Ring"" @StephMcMahon is pumped to go undercover this Friday on #CelebrityBoss! https://t.co/kZA4i8Hx1C" +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@StephMcMahon will step behind the camera this Friday at 8/7c on @CBS! #CelebrityBoss @undercover_cbs https://t.co/QXff8BgMOS +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Putting an end to bullying today! Thank you Ira Samelson Boys & Girls of Memphis for hosting us today. Always remember do… +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: Watch as @StephMcMahon transforms into #SamanthaMiles in a sneak peek of this Friday's @undercover_cbs: Celebrity Edition! #Underc… +06/12/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: I see the celebration is underway...like @SteveAustinBSR says “hell yeah!!!” + +Enjoy your parade and congratulations! #ALLCAPS…" +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: Catch @StephMcMahon on @undercover_cbs THIS FRIDAY at 8/7c! #UndercoverBoss https://t.co/aBs9AmGmHY +06/12/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Meet one of the incredible powerlifters competing in this year's @SpecialOlympics, Katie Millar! #SpecialOlympicsUSAGames #WWEHero…" +06/11/2018,Sports_celeb,@StephMcMahon,Watch me transform into Samantha Miles for @Undercover_CBS on Friday! Here is the entire 3 hour makeup process in a… https://t.co/kOd5fM7qui +06/11/2018,Sports_celeb,@StephMcMahon,RT @WWE: You don't want to miss the BIG SHOW when @StephMcMahon goes undercover on @undercover_cbs this Friday at 8/7c! #CelebrityBoss http… +06/11/2018,Sports_celeb,@StephMcMahon,Congratulations @RondaRousey for continuing to blaze a trail for girls & women everywhere! You were the first-ever… https://t.co/TpZfuXsMC5 +06/11/2018,Sports_celeb,@StephMcMahon,"RT @TheWrap: Exclusive Video: 'Undercover Boss: Celebrity Edition' (@undercover_cbs) - Yes, That's Really @WWE Executive Stephanie McMahon…" +06/11/2018,Sports_celeb,@StephMcMahon,RT @espn: Ronda Rousey is thrilled to become the first woman in the UFC Hall of Fame. https://t.co/4EnuwCxcYr +06/11/2018,Sports_celeb,@StephMcMahon,"RT @ufc: Champion. Pioneer. Legend. + +@RondaRousey enters the Modern Wing of the #UFCHoF July 5! https://t.co/ExQslOwW84" +06/11/2018,Sports_celeb,@StephMcMahon,“Be so good they can’t ignore you.” -Steve Martin #motivationmonday #morningmotivation https://t.co/y1jMI2fJfz +06/10/2018,Sports_celeb,@StephMcMahon,RT @DropTheMicTBS: These ladies know how to handle themselves in the ring 💪 Don't miss the @GlowNetflix vs @WWE Superstars battle TONIGHT o… +06/10/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Awesome weekend supporting @SOCTconnecticut during their #SOCTSummerGames. We had a blast!! Thank you for hosting us. See… +06/10/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: A worthy honor for @RondaRousey... + +but her legacy is just getting started and will reach far beyond sport or entertainment. #…" +06/10/2018,Sports_celeb,@StephMcMahon,RT @WWE: What happens when @StephMcMahon goes undercover at the @WWEPerformCtr? Find out THIS FRIDAY on @undercover_cbs at 8/7c! #Celebrity… +06/09/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: #WWE Superstar @ZackRyder help cheer on the athletes during the #SOCTSummerGames @SOCTconnecticut @SpecialOlympics #WWEHe… +06/09/2018,Sports_celeb,@StephMcMahon,RT @TripleH: Three @NBA Championships out of the last four years. Congratulations to the @warriors and the entire Bay Area on a dominating… +06/09/2018,Sports_celeb,@StephMcMahon,"RT @WWE: This Friday at 8/7c, the ""Queen of the Ring"" is going undercover as @StephMcMahon disguises herself as a photographer on @undercov…" +06/08/2018,Sports_celeb,@StephMcMahon,#NationalBestFriendsDay 🐾 #ILoveMyMastiffs https://t.co/BWJoElGY9z +06/08/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: #WWE employees kicked off morning cheering on local law enforcement during the @SOCTconnecticut Torch Run! #SOCTSummerGam… +06/07/2018,Sports_celeb,@StephMcMahon,So proud to have held @WWE’s first For Your Consideration event last night for the TV Academy. Thank you to the inc… https://t.co/icRGgSa1Eu +06/07/2018,Sports_celeb,@StephMcMahon,RT @MsCharlotteWWE: There is strength in sisterhood. #WWEFYC 🌟 https://t.co/hHmHX90Zxs +06/07/2018,Sports_celeb,@StephMcMahon,RT @AlexaBliss_WWE: https://t.co/DEqg0lLJwl +06/07/2018,Sports_celeb,@StephMcMahon,"RT @WWERomanReigns: Proud to take part in the first #WWEFYC. @WWE and its Superstars have created so many memories over the years, it was a…" +06/07/2018,Sports_celeb,@StephMcMahon,RT @BraunStrowman: Tonight in LA was great. Reunited Team Little Big @AlexaBliss_WWE to talk about the success of #WWEMMC at @WWE’s first e… +06/07/2018,Sports_celeb,@StephMcMahon,RT @WWE: “I remember hearing @VinceMcMahon say ‘the only thing I can guarantee...is an opportunity’” - @ShawnMichaels on the first episode… +06/06/2018,Sports_celeb,@StephMcMahon,"RT @EdMylett: Humbling to be called “Fastest Growing Business Man In Social Media History “ + +Click link + +https://t.co/5j12NIomwM + +#maxout" +06/06/2018,Sports_celeb,@StephMcMahon,"RT @USOMetroDC: ""The eyes of the world are upon you. The hopes and prayers of liberty loving people everywhere march with you."" General Dwi…" +06/06/2018,Sports_celeb,@StephMcMahon,RT @NaomiWWE: “A perfect marriage is just two imperfect people refusing to give up on each other” winning in the the ring and in life @WWEU… +06/06/2018,Sports_celeb,@StephMcMahon,RT @StBaldricks: BREAKING NEWS! The Childhood Cancer #STARAct was signed into law! The legislation authorizes $30 MILLION annually from 201… +06/05/2018,Sports_celeb,@StephMcMahon,RT @2018USAGames: ICYMI: @WWE Monday Night #RAW had some very special guests appearances! #2018USAGames and a few of our athletes went onst… +06/05/2018,Sports_celeb,@StephMcMahon,"RT @ChristianLN0821: As someone who plays an unapologetic #LGBTQ character on TV, I’ve seen first hand the incredible love and kindness tha…" +06/05/2018,Sports_celeb,@StephMcMahon,Way to go @madonnabadger! Hope to see you at #CannesLions! https://t.co/0jrkAtrBVT +06/05/2018,Sports_celeb,@StephMcMahon,RT @shadiabseiso: I’m so happy to be featured on @wweperformctr official website!! I love working with and learning from all our great coac… +06/05/2018,Sports_celeb,@StephMcMahon,RT @FinnBalor: What a privilege! Thank you to all my Team Texas friends for helping me make an entrance in Houston @SpecialOlympics @SOTex… +06/05/2018,Sports_celeb,@StephMcMahon,RT @2018USAGames: What a cool moment @WWETheBigShow! #RiseWithUs https://t.co/AysHettuAS +06/05/2018,Sports_celeb,@StephMcMahon,"RT @SpecialOlympics: We've got a BIG announcement happening tonight & it involves our friend @WWETheBigShow, so you know its going to be go…" +06/04/2018,Sports_celeb,@StephMcMahon,Sooooo excited! It was an incredible experience to go undercover and hear our fans share their passion without know… https://t.co/8iPcqYhd7A +06/04/2018,Sports_celeb,@StephMcMahon,"Meet “Samantha Miles”, my blonde, blogging alter ego next Friday, June 15th on @undercover_cbs! It was a privilege… https://t.co/O1vHUBLQKA" +06/04/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: What an amazing day speaking to club members @bgcghouston about bullying and emotional intelligence. Thank you for hostin… +06/04/2018,Sports_celeb,@StephMcMahon,RT @SInow: WWE has launched a recruiting website for its Performance Center to find the next global wrestling star https://t.co/h8flFpuRMy +06/04/2018,Sports_celeb,@StephMcMahon,"RT @WWE: The future is NOW with the OFFICIAL LAUNCH of the @WWEPerformCtr recruitment website! To visit the new site, go to https://t.co/zw…" +06/02/2018,Sports_celeb,@StephMcMahon,Proud of @WWE’s @NatbyNature for joining @mariashriver for her #MoveforMinds event today at @Equinox. Two incredibl… https://t.co/rxF8GlPckz +06/02/2018,Sports_celeb,@StephMcMahon,"RT @2018USAGames: We are officially only 30 DAYS away from the #2018USAGames! + +@mikethemiz and our partners @WWE are helping us spread the…" +06/02/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Watch as @StephMcMahon takes on a new role during @undercover_cbs when the episode airs Friday, June 15, at 8/7 C on CBS! #Celebri…" +06/01/2018,Sports_celeb,@StephMcMahon,.@WWE is excited to partner with @NestleWatersNA to encourage a healthier lifestyle! We want to know why you… https://t.co/YwtSknNnfJ +06/01/2018,Sports_celeb,@StephMcMahon,#midnightworkout w @defrancosgym & @tripleh -… https://t.co/C0qn4Ff0Bx +05/31/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: That moment when going out for groceries turns into an upcoming episode of @CarpoolKaraoke with @StephMcMahon. Btw, I sound mu…" +05/31/2018,Sports_celeb,@StephMcMahon,"RT @AdamMGrant: This is how you encourage girls to dream big with their career ambitions. +#YouCantBeWhatYouCantSee https://t.co/JO7qHQfZET" +05/31/2018,Sports_celeb,@StephMcMahon,#BTS with @TripleH at our shoot for @WWE’s episode of @CarpoolKaraoke. We had a blast! Can’t wait to see our episod… https://t.co/L37kAtMhXb +05/30/2018,Sports_celeb,@StephMcMahon,RT @WWE: Is the world ready for a ROBOT @JohnCena? It's time to find out because the FIRST episode of #DallasAndRobo is on @YouTube! @Offic… +05/30/2018,Sports_celeb,@StephMcMahon,RT @ChildrensPgh: Have you signed up for #WalkforChildrens yet? There is still time to register at https://t.co/7TmHP5aaQZ! Our presenting… +05/28/2018,Sports_celeb,@StephMcMahon,“It is foolish and wrong to mourn the men who died. Rather we should thank God that such men lived.” -George S. Pat… https://t.co/dRrPFZOrUY +05/28/2018,Sports_celeb,@StephMcMahon,RT @WWEPR: Today @WWE is donating 10% of sales from @WWEShop to support @HireHeroesUSA https://t.co/wkvd3ifz2r @WWECommunity #MemorialDay… +05/27/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ""Don't let anyone ever tell you that you can't do anything... you're beautiful inside and out and please do not let anyone determi…" +05/25/2018,Sports_celeb,@StephMcMahon,RT @TripleH: .@mauroranallo has lent his passion and voice to some of the biggest @WWENXT moments in history. So proud that he’s using them… +05/25/2018,Sports_celeb,@StephMcMahon,"RT @HireHeroesUSA: This Memorial Day, @WWE is donating 10% of sales from @WWEShop to support our mission: https://t.co/AJG7vxq7MO @WWECommu…" +05/25/2018,Sports_celeb,@StephMcMahon,"RT @_KnowYourGirls: We'll do anything to protect our girls, but what about our other ""girls?"" Discover all the ways you can look out for yo…" +05/25/2018,Sports_celeb,@StephMcMahon,Way to go Leah! #LeahStrong! https://t.co/HoHKjNn3X0 +05/24/2018,Sports_celeb,@StephMcMahon,Happy #RedNoseDay! Throw on your red nose and help end child poverty around the world. Learn more about… https://t.co/2sGa0CRjPQ +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWE: In recognition of #MemorialDay, WWE and its Superstars thank and remember the heroes who made the ultimate sacrifice for freedom.…" +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWECommunity: .@WWE is proud to support @SpecialOlympics & excited for the @2018USAGames in Seattle! Even better, our own @StephMcMahon…" +05/23/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: .@WWE is proud to support @_KnowYourGirls! Why is it so important to #KnowYourGirls? Because early detection of breast ca… +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWE: It is OFFICIAL: @mikethemiz & @MaryseMizanin star in #MizAndMrs on @USA_Network, and it premieres JULY 24 at 10/9c! https://t.co/3…" +05/22/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Take a closer look at the Season 3 premiere of #TotalBellas, and catch new episodes every Sunday at 9/8c on @e_entertainment! @Bel…" +05/22/2018,Sports_celeb,@StephMcMahon,RT @TripleH: This year's #UKCT is filled with the best of the best. Incredible athletes giving their heart and soul for the opportunity to… +05/21/2018,Sports_celeb,@StephMcMahon,“The earth has music for those who listen.” -William Shakespeare #MotivationMonday #MorningMotivation https://t.co/oFttzVrAJC +05/20/2018,Sports_celeb,@StephMcMahon,Happy belated bday @nick_pass!! https://t.co/2x6wPYe1Av +05/18/2018,Sports_celeb,@StephMcMahon,"RT @RedNoseDayUSA: #NikkiBella- Total #RedNoseDay American Ninja Warrior. Tune in to @nbc Thursday, May 24 to watch her take on the @ninjaw…" +05/18/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout finisher w @defrancosgym and… https://t.co/DTrw2fCkYy +05/17/2018,Sports_celeb,@StephMcMahon,"Next Thursday, May 24th is #RedNoseDay. Let’s come together to help end child poverty, one nose at a time. To learn… https://t.co/SFLpNRNcKP" +05/17/2018,Sports_celeb,@StephMcMahon,RT @TripleH: The UK Championship Tournament was a highlight for @WWE in 2017....now meet 8 of the competitors who will take it to a whole n… +05/17/2018,Sports_celeb,@StephMcMahon,#midnightworkout w @defrancosgym and @tripleh -… https://t.co/RueExWBZff +05/17/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Here's @catherinekelley to reveal the first EIGHT participants competing in next month's #WWEUKCT! + +@ZackGibson01 @Joe_Coffey @Gen…" +05/16/2018,Sports_celeb,@StephMcMahon,RT @WebSummit: We're delighted to announce that @WWE's @StephMcMahon will be joining us at this year's #WebSummit in #Lisbon this November… +05/16/2018,Sports_celeb,@StephMcMahon,Excited to be speaking at #WebSummit this November in #Lisbon! https://t.co/BKiC7RLzBo +05/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ✔️Climb the ladder +✔️Grab the briefcase +✔️Cash in +✔️Become champion + +#MITB streams LIVE Sunday, June 17 on @WWENetwork! #SDLive…" +05/14/2018,Sports_celeb,@StephMcMahon,Proud to represent @WWE and the #WomensEvolution with these amazing trailblazers @NiaJaxWWE @MsCharlotteWWE &… https://t.co/0TlO0cUFiR +05/13/2018,Sports_celeb,@StephMcMahon,RT @VinceMcMahon: Happiest of Mother’s Days to my incredible 97-year-old mom! #MothersDay +05/13/2018,Sports_celeb,@StephMcMahon,"#HappyMothersDay to all the amazing moms around the world! May you be blessed with macaroni necklaces, plants that… https://t.co/m2poGBEVCY" +05/12/2018,Sports_celeb,@StephMcMahon,RT @TheVFoundation: Cancer survivor and @WWE Superfan Enzo Grande has the title AND the briefcase! Unbeatable! #DontEverGiveUp https://t.co… +05/11/2018,Sports_celeb,@StephMcMahon,"RT @the_USO: Military spouses’ service to the country is vital to ensuring the readiness and morale of our nation’s troops. Today, we salut…" +05/11/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Kicking off the night at the @USOMetroDC 36th Annual Awards Dinner honoring our military spouses! @TheMarkHenry @DanaWarr… +05/10/2018,Sports_celeb,@StephMcMahon,"This year @thevfoundation raised over $475,000 for pediatric cancer research at their annual #VirginiaVine gala. I… https://t.co/D1wH6FZMxs" +05/10/2018,Sports_celeb,@StephMcMahon,"RT @TheVFoundation: We're so thrilled to announce that our Virginia Vine event raised more than $475,000 for cancer research! +Recap from @…" +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @MsCharlotteWWE https://t.co/eAb… +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @NiaJaxWWE... https://t.co/HwWXj… +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @AlexaBliss_WWE... https://t.co/… +05/07/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: It’s time for @WWENXT to make history and TAKE OVER Brooklyn...again. + +#NXTTakeOver: Brooklyn is LIVE from the @barclayscenter…" +05/07/2018,Sports_celeb,@StephMcMahon,"Believe in yourself, have courage in your convictions. #MotivationMonday #MorningMotivation https://t.co/UkGGXYbat5" +05/07/2018,Sports_celeb,@StephMcMahon,"RT @WWENetwork: We are LIVE on @WWENetwork in Newark, New Jersey... + +WELCOME to #WWEBacklash! https://t.co/YJruuwDTWl" +05/06/2018,Sports_celeb,@StephMcMahon,"RT @WWE: There is PLENTY to enjoy on the award-winning @WWENetwork, and we're just getting started! https://t.co/nIRPmBwpgk" +05/06/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Most consecutive wins in a season. Fastest team to score 100 goals in a season. +Winners of the @PremierLeague title. + +From @…" +05/04/2018,Sports_celeb,@StephMcMahon,RT @DanaWarriorWWE: Warriors! Tune in tonight 8pm ET for the debut of @DanaWarriorWWE #TotalWarriors! https://t.co/LFzF8hzD33 @wwe #wwe +05/04/2018,Sports_celeb,@StephMcMahon,RT @TitusONeilWWE: Let’s show the world how powerful women are!I proudly stand with #SheIS to empower female athletes everywhere. Join us i… +05/04/2018,Sports_celeb,@StephMcMahon,"RT @Zelina_VegaWWE: I was always told “you’re too small, too skinny.. just a woman.” JUST a woman? Well! Let’s show the world how powerful…" +05/04/2018,Sports_celeb,@StephMcMahon,"RT @LaceyEvansWWE: Playing sports made me the confident, motivated woman I am today. Amateur Wrestling...Military and a mother, I know the…" +05/04/2018,Sports_celeb,@StephMcMahon,This Mother’s Day @WWE is supporting @SusanGKomen in honoring ALL mothers! You can support thousands of moms everyw… https://t.co/SQq5UTPKGU +05/03/2018,Sports_celeb,@StephMcMahon,"RT @roderickstrong: I am surrounded by a strong and beautiful woman who is a passionate about being a partner,mother and athlete!I proudly…" +05/03/2018,Sports_celeb,@StephMcMahon,RT @MickieJames: Who run the world? Girls!! #Girls who played sports! Studies show that girls who are athletes are more likely to grow up t… +05/03/2018,Sports_celeb,@StephMcMahon,RT @WWE_MandyRose: I proudly stand with #SheIs to empower female athletes all over the world! Growing up I always played sports and I truly… +05/03/2018,Sports_celeb,@StephMcMahon,"RT @sarahloganwwe: All my life I've lived with the realization that I'll never be ""normal"". SheIs to masculine +SheIs to weird +SheIs to am…" +05/03/2018,Sports_celeb,@StephMcMahon,"RT @NatbyNature: Growing up, my mom encouraged my sisters and I to participate in as many different sports as we could! I love being able t…" +05/03/2018,Sports_celeb,@StephMcMahon,RT @SonyaDevilleWWE: I’m blessed to be a female athlete in 2018 .. I’ve played sports almost my entire life and it has been the greatest gi… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @WWEEmberMoon: It's all about empowering the past, present, and future!! Join me in supporting @TeamSheIs https://t.co/LC5KJfhf5H as we…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @itsBayleyWWE: Studies show that girls who are athletes are more likely to grow up to be business leaders. I proudly stand with #SheIs t… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @RealMikeBennett: Dream Big Freddie, you can play any sport that you want, and I will be the proudest dad cheering you on. Help support…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @CarmellaWWE: I proudly stand with #SheIS to empower female athletes everywhere. Let’s show these boys who the REAL champs are! https://… +05/02/2018,Sports_celeb,@StephMcMahon,RT @SashaBanksWWE: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us… +05/02/2018,Sports_celeb,@StephMcMahon,RT @BillieKayWWE: I’m excited to join this movement! I grew up playing sports and truly believe it teaches young females life skills they w… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @mikethemiz: Up to 70% of girls stop playing sports by the age of 13. @TeamSheIs is working to provide resources, encouragement, and rol…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @AlexaBliss_WWE: I proudly stand with #SheIS to empower female athletes everywhere. Join us in this movement and support the next genera… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @VinceMcMahon: Happy birthday to the hardest working man in show business, @TheRock. https://t.co/7OHbqYFp1s" +05/02/2018,Sports_celeb,@StephMcMahon,RT @MustafaAliWWE: My wife told me she didn't receive encouragement to do sports when she was younger. We aren't letting that happen with o… +05/02/2018,Sports_celeb,@StephMcMahon,RT @MsCharlotteWWE: Who run the world? Girls who played sports! Studies show that girls who are athletes are more likely to grow up to be b… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @NatbyNature: Very proud to support @TeamSheIs and women around the world to participate in sports, build confidence for a lifetime and…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @WWERomanReigns: It’s important to support young female athletes in every sport because one day...it’ll be #TheirYard. #SheIs https://t.… +05/02/2018,Sports_celeb,@StephMcMahon,RT @NiaJaxWWE: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us in t… +05/02/2018,Sports_celeb,@StephMcMahon,RT @REALBobbyRoode: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us… +06/27/2018,Sports_celeb,@rolopez42,Do people really want a Space Jam sequel?? @QuincyPondexter Tell me what is going on with the world +05/06/2018,Sports_celeb,@rolopez42,@KamBrothers You didn't like the work he did on The Flinstones?!? +05/06/2018,Sports_celeb,@rolopez42,RT @22ndtimeout: @rolopez42 Only 30 Jesus and 2000 Shaq peaked higher +05/06/2018,Sports_celeb,@rolopez42,So LeBron is starting to rival 1905 Einstein right? According to my calculations he just passed 1972 Stevie Wonder… https://t.co/mW4or0IgWU +04/24/2018,Sports_celeb,@rolopez42,"RT @BPortistime: Rondo a for sure HOFer, right?" +04/09/2018,Sports_celeb,@rolopez42,"RT @harikondabolu: If you want my response to the Simpsons episode addressing “The Problem with Apu,” you can infer it from actually watchi…" +04/09/2018,Sports_celeb,@rolopez42,"RT @harikondabolu: Wow. “Politically Incorrect?” That’s the takeaway from my movie & the discussion it sparked? Man, I really loved this sh…" +03/31/2018,Sports_celeb,@rolopez42,Somebody needs to sync this one up to a Denzel speech from Remember the Titans #OrMaybePelicanBrief?… https://t.co/0yC1meYfn0 +03/29/2018,Sports_celeb,@rolopez42,"@ZachLowe_NBA I'm guessing w/the cushy but ultimately meaningless job, G-Wiz is the relative of a politician, most… https://t.co/e5MzC1jSP8" +03/29/2018,Sports_celeb,@rolopez42,T.S. Eliot certainly had a way with words https://t.co/3QzdGQdO5a +03/27/2018,Sports_celeb,@rolopez42,RT @TomKMorris: Wouldn’t you love to know what the script for the canal boats was at this time? https://t.co/7ypG47Vx5b +03/22/2018,Sports_celeb,@rolopez42,RT @TomKMorris: Someone asked me why Chinese lanterns in the Blue Bayou; I replied it was in vogue in the mid-1800’s & would've been shown… +03/16/2018,Sports_celeb,@rolopez42,@BPortistime we made it!!! https://t.co/A34sjSaZom +03/12/2018,Sports_celeb,@rolopez42,RT @chicagobulls: Coming this afternoon...the most dramatic season yet. Starring @rolopez42. #TheBullchelor #BullchelorNation https://t.co/… +03/09/2018,Sports_celeb,@rolopez42,Back to business I guess #NiceEasyWelcomeBackSmackdown #WorkingMyWayUpToClutch https://t.co/vBER13Iy5l +03/05/2018,Sports_celeb,@rolopez42,"RT @TomKMorris: His name is Charles Nichols, in case you ever wondered. https://t.co/UehR1iH7cj" +02/27/2018,Sports_celeb,@rolopez42,RT @NickFriedell: Robin has a Britney Spears picture in his locker. Didn’t realize he was a Mariah fan too. https://t.co/XS6nB0R3xN +02/18/2018,Sports_celeb,@rolopez42,"RT @satosan1118mm: 1996年9月1日「キャプテンEO」クローズ。当時のTDLガイド・マップ裏表紙を飾ったファイナル告知はマイコーファンとしては悲しき思い出(><) +でもまさかこの約14年後に復活するとは夢にも思わなかった。4年間という短期間の再演だったけど奇…" +01/30/2018,Sports_celeb,@rolopez42,@bennythebull But how will I tell who the robots are...and who @bennythebull is?!?! +01/26/2018,Sports_celeb,@rolopez42,"RT @threekola: Good morning!!! It's game day +#LifeisBeautiful #enjoylife #bepositive #itsabouttime #miroticway☦ https://t.co/SwEfJ34IgI" +01/22/2018,Sports_celeb,@rolopez42,"@PierreTPelican @PelicansNBA Fresh Pelican blood + +...and I'm all out" +01/22/2018,Sports_celeb,@rolopez42,@PierreTPelican @PelicansNBA You can expect a lot more where that came from #TuneInTonight… https://t.co/RacU7NExDp +01/11/2018,Sports_celeb,@rolopez42,RT @jashin_mizuho: そして、ブルックと共に西武ライオンズの試合を満喫した双子の兄弟ロビン・ロペス(写真手前)にも投票お願いします! @rolopez42 Robin Lopez #NBAVOTE @lions_official #nbajp https://t… +12/19/2017,Sports_celeb,@rolopez42,RT @QuincyPondexter: Ummm is that 6 Wins in a row?!? I think yes @chicagobulls! We live #BullsNation https://t.co/9CzbDk01yp +12/15/2017,Sports_celeb,@rolopez42,RT @jashin_mizuho: 来日時にブルック・ロペスが「自分をスラムダンクのキャラに例えるなら流川」と言ってたので、じゃあロビンは桜木かなぁと思って描いてみました。結構イメージと合ってる。 https://t.co/rVxngqLsKV +11/23/2017,Sports_celeb,@rolopez42,Great getting the band back together #NoWeDidNotWinState #ButMaybeTheStateChampionshipWasInsideUsAllAlong… https://t.co/N64emti1Ip +10/31/2017,Sports_celeb,@rolopez42,Today's Special: Sideshow Dog Burger (Rolos on the side) #ItsAStretchIKnow #IsAHotDogABurger?… https://t.co/0r8NxSTgTx +10/30/2017,Sports_celeb,@rolopez42,Had a great time bonding with the young fellas from #BAM AT the practice facility! These my guys from Dunbar High!!… https://t.co/VZOCWcelHl +10/28/2017,Sports_celeb,@rolopez42,"Thank you brother! Love your work, especially that Batman run!!! https://t.co/ostvNhUhVh" +10/27/2017,Sports_celeb,@rolopez42,Britney will always be looking out for us guys #IMustConfessIStillBelieve https://t.co/zR06gC2p5A +10/21/2017,Sports_celeb,@rolopez42,Presenting the #SideshowRobs for opening night at the #UnitedCenter #ItsGermanForTheBartThe #SeeRed #CheckBennyB… https://t.co/bCihOfEgAy +09/23/2017,Sports_celeb,@rolopez42,"It's ok @warriors, in a few months @realDonaldTrump probably won't be able to visit the White House either" +09/23/2017,Sports_celeb,@rolopez42,"RT @CP3: With everything that's going on in our country, why are YOU focused on who's kneeling and visiting the White House??? #StayInYoLane" +09/23/2017,Sports_celeb,@rolopez42,RT @KingJames: U bum @StephenCurry30 already said he ain't going! So therefore ain't no invite. Going to White House was a great honor unti… +09/23/2017,Sports_celeb,@rolopez42,RT @natborchers: Had fun supporting @ACPORTLAND with @RossSmith_20 and @rolopez42 last night. Big thanks to @adidassoccer for their generou… +08/14/2017,Sports_celeb,@rolopez42,Red Carpet at the Final Showing of #TheGreatMovieRide #WeNeedAGreatMovieRideMovie #AndThenAGreatMovieRideMovieRide… https://t.co/HUcFrjb3VV +08/14/2017,Sports_celeb,@rolopez42,RT @CavsMoondog: @rolopez42 @TheEllenShow @BillNye @WaltDisneyWorld Sorry the airlines lost your grown-up shoes and made you look like a cl… +08/13/2017,Sports_celeb,@rolopez42,Paying Respects @theellenshow @billnye at #EllensEnergyAdventure #StupidJudy #ThatsOurFinalAnswer #UniverseOfEnergy… https://t.co/ZTmenwEEEq +08/13/2017,Sports_celeb,@rolopez42,RT @colbycockrell: @RealBrookLopez Did I just see you with your bro wearing a Joey Cora jersey? +08/10/2017,Sports_celeb,@rolopez42,@bennythebull Can't the three of us be happy together?!? @MarinerMoose @bennythebull #CoMascotGOATs #WeCanGetAHouseInMalibuAndBeHappy +08/09/2017,Sports_celeb,@rolopez42,RT @Cut4: @rolopez42 @MLB @James_Paxton @NBA @Mariners What could have been ... https://t.co/23Nm6hs14H +08/09/2017,Sports_celeb,@rolopez42,Would also put all NBA mascots in their place #BowDownBeforeTheMascotGOAT https://t.co/V5cSoydg0C +08/09/2017,Sports_celeb,@rolopez42,I'm super jealous of @James_Paxton and @MLB guys where's my Sideshow Rob uni @NBA @nikebasketball #WheresMyElephant… https://t.co/AlXJ0OAF6F +07/17/2017,Sports_celeb,@rolopez42,"RT @JohnStamos: In an hour and a half, I'll be jumping on stage at #D23expo Arena to celebrate the LEGENDS of Imagineering. Come check it o…" +06/23/2017,Sports_celeb,@rolopez42,https://t.co/iq3ERcao9b +06/08/2017,Sports_celeb,@rolopez42,RT @EpcotLegacy: @Imagineer2017 Color Corrected :) https://t.co/CCoTQ5w0a4 +04/29/2017,Sports_celeb,@rolopez42,Muppet got to meet his hero @bennythebull today! Thanks for your support this year Chitown! #SeeRed Thanks to my gu… https://t.co/t38rf9lOzR +04/04/2017,Sports_celeb,@rolopez42,RT @Mariners: @threekola @rolopez42 #GoMariners +04/04/2017,Sports_celeb,@rolopez42,RT @threekola: Gameday at The Garden with @rolopez42! #bullsnation #miroticway☦ https://t.co/pgPdfJp9x7 +03/27/2017,Sports_celeb,@rolopez42,RT @Dame_Lillard: Mark Davis got the Lloyd Christmas haircut... Whatever bro +02/17/2017,Sports_celeb,@rolopez42,https://t.co/I59KhdrA2D +01/24/2017,Sports_celeb,@rolopez42,RT @MulliganJimmy: @rolopez42 @TDRogerson #guysnightout #disney #wdw #beachclub https://t.co/bQ9gxEDMaC +01/16/2017,Sports_celeb,@rolopez42,Basketball is in danger of growing stale. I'm taking it strange new places.… https://t.co/yOCbUGk2Iv +01/16/2017,Sports_celeb,@rolopez42,RT @hobbledegaagaa: Anyone can make a no look pass but can you make a no hands assist? @rolopez42 can. https://t.co/EfchWj4V7Y +12/06/2016,Sports_celeb,@rolopez42,RT @WDFMuseum: @rolopez42 Looking good! A birthday greeting worthy of Walt himself! +12/06/2016,Sports_celeb,@rolopez42,Happy Birthday Walt Disney! Took this outside Walt's birth home here in Chi #HappyBirthdayWalt #MickeyMouse… https://t.co/hp27ZN1V9f +12/04/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: He was pretty excited to see his idols today! @JimmyButler, @RajonRondo, & @rolopez42 are passing gifts out to the kids f…" +11/28/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: Earlier today, Dante from @WishIllinois, came to join the #Bulls for practice. We can't wait to have him at Wednesday's g…" +11/26/2016,Sports_celeb,@rolopez42,"I know I'm late to the party, but we need a Sixers Ben Franklin 90's alternate a la the Raptors/Bucks ASAP #LadiesManBenFranklin @UniWatch" +11/20/2016,Sports_celeb,@rolopez42,"RT @NBAcom: Look out below! @blakegriffin32 throws down emphatic dunk over @rolopez42 + +WATCH: https://t.co/gr4fbnFE9g https://t.co/mokTantv…" +11/02/2016,Sports_celeb,@rolopez42,RT @StanfordMBB: Brotherly Love! #GoStanford https://t.co/8CxuMpM8dG +10/31/2016,Sports_celeb,@rolopez42,My guy from back home @hexagonstaff17 whipped this Halloween masterpiece up for tonight! #IDigTheKicks… https://t.co/0qkxOt8Qvg +10/31/2016,Sports_celeb,@rolopez42,But if I'm over there...@treykerby must be in the Barclay's Center locker room right now... :o #AudibleGasp https://t.co/cUOIBZtFfQ +10/31/2016,Sports_celeb,@rolopez42,Time to get loud #BullsNation! Surprise for my team thanks to my friends @JBLaudio #TeamJBL https://t.co/n5gIM0Qz6H +10/31/2016,Sports_celeb,@rolopez42,RT @AminESPN: @rolopez42 the look of complete shock that a picture is being taken despite you being the one holding the phone is a nice tou… +10/30/2016,Sports_celeb,@rolopez42,@pezwardisking has been immortalized upon my sandals!!! Thanks @dwyanewade and @islideusa!!! #BelatedNationalCatDay… https://t.co/8FNZr4XnWA +10/30/2016,Sports_celeb,@rolopez42,This sweater is relevant to both this series & the time I double parked in front of the lady @ the occult bookstore… https://t.co/bOIPZbKYzZ +10/30/2016,Sports_celeb,@rolopez42,@chicagobulls @AminESPN The secret jam of Dan Majerle too btdubs +10/30/2016,Sports_celeb,@rolopez42,"And here I was, worried this moment would be lost in the ether of time #IShouldaPutMyHandsUp #TheyWerePlayingMySong https://t.co/qZPksR42Eg" +10/13/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: ""You have your Zack Morris, A.C. Slater..I’m the Screech Powers.” See what @rolopez42 is talking about! #BullsNation +http…" +10/12/2016,Sports_celeb,@rolopez42,RT @chicagobulls: Not quite sure @Simone_Biles and @rolopez42 are the same shoe size...😂😱 https://t.co/og4vb4fXhy +10/07/2016,Sports_celeb,@rolopez42,"See what went down in training camp! I promise there's a Saved By The Bell metaphor in there somewhere #BullsNation + +https://t.co/Ftnng2EU6e" +09/26/2016,Sports_celeb,@rolopez42,Beef Smashed #PoorChoiceOfWords #ThanksRevFarrakhan #SeeRed @bennythebull https://t.co/SMCBEgpj7L +09/26/2016,Sports_celeb,@rolopez42,RT @chicagobulls: SQUAD. https://t.co/oYaUJedElI +09/18/2016,Sports_celeb,@rolopez42,Han Rolo and Mubacca #LetTheDoodleWin #HarrisonFordFace #HanSolo #Chewbacca #StarWars#LetTheDoodleWin https://t.co/mqbOpvZdNO +09/12/2016,Sports_celeb,@rolopez42,The 1 pic where I'm not a nervous fangirl 💁 #BestMomentOfMyLife #ColdplaysNext #BestGetThemHandsReady @MariahCarey https://t.co/ZFa45JChS9 +09/06/2016,Sports_celeb,@rolopez42,RT @BarriHoopsHype: Chewbacca has been waiting 39 years... The Lopez brothers made it possible! #StarWars #ChewbaccaWithMedal https://t.co/… +09/05/2016,Sports_celeb,@rolopez42,HEY GUYS IT'S OK CHEWIE FINALLY GOT HIS MEDAL #WookieCousins #CoolPointsForRolo #StarWars #Disneyland https://t.co/D5y4EZmRrx +08/26/2016,Sports_celeb,@rolopez42,RT @PierreTPelican: Hey @rolopez42 @fullerhouse is full enough #FullestHouseWithRobinWillNeverHappen https://t.co/8kfhMEOosK +08/26/2016,Sports_celeb,@rolopez42,They need another set of twins dagnabit! I'll even stay in the garage! #WordToDJ #DoTheJessman #DontBeJealous https://t.co/UgqoH3BjFJ +08/26/2016,Sports_celeb,@rolopez42,RT @MDC10000: Pretty sure I just saw @rolopez42 on the streets of Vienna. Who else is 7ft tall with sideshow bob's haircut and yogi bear's… +08/26/2016,Sports_celeb,@rolopez42,@MDC10000 it's clearly bullwinkle you jerk +08/07/2016,Sports_celeb,@rolopez42,Made the trek to Safeco to see the Kid get his number in the rafters #TheKid #Mariners #FavoriteAthleteEver #24Ever https://t.co/h0xR5srGkY +07/28/2016,Sports_celeb,@rolopez42,At #Ghibli Museum! #HawaiinIndy #ItAllBelongedInAMuseum #Totoro #Gigi #NotTheMovieTheCat #IStillLoveYouLeslieCaron https://t.co/4sd10M41nm +07/24/2016,Sports_celeb,@rolopez42,Who knew it'd feel so good to buy awards with your friends & hand them out to each other?? #Kirkies2016 https://t.co/KQu6L9yAYO +07/23/2016,Sports_celeb,@rolopez42,The 2016 Kirkies Ceremony is tonite @ 8 p.m. PST! Who'll win the KPCup?? #ManOfTheSummer #Kirkies2016 #SponsoredByGQ https://t.co/TxLxIucS7A +07/17/2016,Sports_celeb,@rolopez42,2016 #Kirkies Award Season has begun! #OutfitOfTheDays have gone to @jkjohnnyp @tyjruiz & yours truly #Kirkies2016 https://t.co/0I5OlGzBpO +06/25/2016,Sports_celeb,@rolopez42,"She was so excited to see Tron's Game Grid, but it got super awkward once she was derezzed. #EndOfLine #Tron #Disney https://t.co/1mezz815iu" +06/25/2016,Sports_celeb,@rolopez42,That's why you're my guy!!! #TruffleShuffle #NeverSayDie ##RoloEat https://t.co/KTB7v5Me0g +06/12/2016,Sports_celeb,@rolopez42,Off to #ShanghaiDisneyland for the Grand Opening! Excited & grateful for the experience! #Disney #PeopleMover https://t.co/gkVBHJINkm +06/06/2016,Sports_celeb,@rolopez42,Hanging out at #Stanford in the offsets on with the Card Colored headphones! #HandModeling @JBLAudio #TeamJBL https://t.co/RGOZeHquhi +05/28/2016,Sports_celeb,@rolopez42,"@MettaWorldPeace I appriciate the love, thank you!" +05/25/2016,Sports_celeb,@rolopez42,@DCComics @geoffjohns @Williamson_Josh @ChinaJoeFlynn I will now that we have both Wallys. TV Flash strike has officially ended. +05/25/2016,Sports_celeb,@rolopez42,"@DCComics @geoffjohns @Williamson_Josh I hope not. If he's the genesis, it loses its mystique & permanently elevates barry above others." +05/25/2016,Sports_celeb,@rolopez42,RT @van_jensen: In the @WSJ: I cowrote a piece on the preponderance of familial relationships in the @NBA -- 48.8% of players! https://t.co… +05/25/2016,Sports_celeb,@rolopez42,So did Barry Allen still create the speed force? Or is it all mysterious again @DCComics @geoffjohns @Williamson_Josh will we find out soon? +05/10/2016,Sports_celeb,@rolopez42,"Ran into Indiana Jones cosplayers in Dubai. They look terrible, amiright? #So20YearsAgo… https://t.co/RN2yeGCMHY" +05/10/2016,Sports_celeb,@rolopez42,"Ok, this is something that has to happen @van_jensen! https://t.co/x0C1UXeoJR" +05/09/2016,Sports_celeb,@rolopez42,Sideshows Bob and Rob with the big guy who pays our checks (When not using them to bet on the… https://t.co/4mBvKjPkpJ +05/09/2016,Sports_celeb,@rolopez42,"@ZachLowe_NBA believe it or not, I'm at Universal Florida. Found it in the Kwik-E-Mart!" +05/09/2016,Sports_celeb,@rolopez42,They're not out of Bort plates guys. All is well. #MySonIsAlsoNamedBort #Bort #TheSimpsons https://t.co/uLSX4GuUYQ +05/09/2016,Sports_celeb,@rolopez42,"Just watching the sun move across the sky. When it gets to here, I can drink again! #TheSimpsons… https://t.co/mqK3KJiPJD" +04/28/2016,Sports_celeb,@rolopez42,So much fun! Gotta meet up again this trip and stateside for sure! #HesGotThatHookShotToo https://t.co/aOV65fSBw7 +04/25/2016,Sports_celeb,@rolopez42,On to Mumbai in my trusty Indy Brand Adventurer's hat! #IWannaBeInIndy5 #ItsMeOrMutt #NBAIndiaTour #IndianaJones https://t.co/reHso0ORx3 +04/25/2016,Sports_celeb,@rolopez42,@NBAIndia @nyknicks @SacramentoKings @sdotcurry Dazzle with fundamental box outs!!! +04/22/2016,Sports_celeb,@rolopez42,"@rockthecasbahh we didn't do ""diss tracks"". We were all about the love. #ThatWasTheNameOfOurSecondAlbum" +04/22/2016,Sports_celeb,@rolopez42,#FlashbackFri to when I was atop the charts for 7 wks in '03 w/the jam #GambleOnMyLove ft. my guys #TheBacksyncBoyz https://t.co/tHyswoQwZA +04/21/2016,Sports_celeb,@rolopez42,RT @nyknicks: Happy #NationalHighFiveDay from the #Knicks! https://t.co/mWku7MCypN +04/21/2016,Sports_celeb,@rolopez42,RT @LangGalloway10: Glad to catch up with the guys before the off-season starts up. Summer16 https://t.co/E2MtwzeoYh +04/20/2016,Sports_celeb,@rolopez42,"@ATLHarryTheHawk Good deal, though you should keep the cup on #JustSayin #IFightCleanTho #WhatILearnedInLittleLeague #TheyPutMeInRightField" +04/20/2016,Sports_celeb,@rolopez42,"RT @ATLHarryTheHawk: @rolopez42 So ur gonna kick a bird while he's down huh? Ok, I guess the gloves are off now." +04/20/2016,Sports_celeb,@rolopez42,@ATLHarryTheHawk If you can't take the heat... #StayOffaNationalTV #MascotFail #ThatsAnOxymoronHuh? https://t.co/5X7ZEOGGVa +04/20/2016,Sports_celeb,@rolopez42,It's here it's here it's really here!!! #NextComesTheMiniSeries #ThanksGuys #Flash50 #FastestManAlive https://t.co/fkMcaS0tAs +04/18/2016,Sports_celeb,@rolopez42,"""Art of Walt Disney"" book w/ Mickey Mouse sketch by some moop named Oalt Gisnet?!? #WaltDisney #MickeyMouse #Disney https://t.co/auOfxXWhvk" +04/15/2016,Sports_celeb,@rolopez42,Everyone's favorite #Disney statues in Cali #ExceptUGeppetto #NobodyLuvsYou #JustKiddingIDo #ONoRoloNowYoureMarried! https://t.co/18T8ln6v1u +04/15/2016,Sports_celeb,@rolopez42,"RT @van_jensen: @rolopez42 @DCComics Between this and the Swamp Dragons jersey, a good week for stoking Brook's jealousy, right?" +04/15/2016,Sports_celeb,@rolopez42,@van_jensen @DCComics in my mind I Have No Twin in this universe. #ImMyOwnMan #TearsOfJoy #ThisIsCrazy!!! +04/15/2016,Sports_celeb,@rolopez42,My 1st comics appearance is Flash #50! Someone get me Zatanna's # & an entry in Who's Who!!! @van_jensen @DCComics https://t.co/xCWOYN0ByL +04/09/2016,Sports_celeb,@rolopez42,I can honestly tell you Brook could not be more jealous right now #AndThatCouldntMakeMeHappier #HeWantsThoseUnis https://t.co/vIVvDRz0yn +04/08/2016,Sports_celeb,@rolopez42,We at least need jerseys...we as Americans deserve that much. https://t.co/r4BFStCPRm +04/08/2016,Sports_celeb,@rolopez42,"RT @BleacherReport: Just some light rookie hazing for @kporzee and @JerianGrant on @rolopez42's birthday (via @kslife) +https://t.co/Mleaaia…" +04/05/2016,Sports_celeb,@rolopez42,Further proof my ideal life is that of a second grader #HotDogsAndCarouselHorses #LGG5 https://t.co/MehMQXxZz4 +04/01/2016,Sports_celeb,@rolopez42,"In honor of my birthday, Brook and I have some exciting news: we are starring in our first movie!!! Thanks @bycycle! https://t.co/GLmiW58uQg" +03/28/2016,Sports_celeb,@rolopez42,I only hope I can articulate the country's feelings for you adequately enough with my fists. #ALongTimeComing https://t.co/wvc3kPKtcQ +03/27/2016,Sports_celeb,@rolopez42,@DCComics @geoffjohns when is Wally West going to be old enough to hang out with the real Titans? #IMissDickGraysonsBestFriend +03/27/2016,Sports_celeb,@rolopez42,RT @ValiantComics: The Valiant Car has arrived at the Fallout Shelter comic shop in NJ! #NCBD https://t.co/baCa5o8n99 +03/23/2016,Sports_celeb,@rolopez42,#NuevaYork #TheOcho #AlmostASport https://t.co/YnOaDLg1UA +03/18/2016,Sports_celeb,@rolopez42,Took my new dog Muppet to visit @Nikilster at the @downtolunch HQ! Congrats on your success bro! Check out the app! https://t.co/oSiN5FSP9v +03/18/2016,Sports_celeb,@rolopez42,"RT @Nikilster: The one thing that can make us take a break leave DTL HQ: The Return of the Robin 🙌 + +#Room… https://t.co/DaeINFSzyX https://…" +03/15/2016,Sports_celeb,@rolopez42,The best part of #MarchMadness is really #MarchMagic Even tho I would give these teams buckets (or box outs) #Disney https://t.co/WbZhVEimoO +03/15/2016,Sports_celeb,@rolopez42,@gswarrior10 I can't wait to see the little #TKitten!!! +03/15/2016,Sports_celeb,@rolopez42,RT @gswarrior10: Thank you uncle robin!! I'll see you in the offseason- Isaiah Oliver @rolopez42 https://t.co/wmQRXR6yTI +03/13/2016,Sports_celeb,@rolopez42,Godspeed my friend! #VoteRory #HeWantsToBeABobblehead @RoryDoesPhonics https://t.co/yV0Zhyf2mT +03/07/2016,Sports_celeb,@rolopez42,"New #DuckTales on the way, can't wait til 2017, hope Launchpad appears tho... #WooHoo #Disney #CarlBarks https://t.co/adIrUAbCc3" +03/03/2016,Sports_celeb,@rolopez42,"RT @DisneyD23: JUST ANNOUNCED! Disney pledges $250,000 to the Walt Disney Birthplace project: https://t.co/NdDwewQWoo https://t.co/B08SDQpP…" +03/02/2016,Sports_celeb,@rolopez42,RT @ZachLowe_NBA: Robin Lopez suggestion for Clips mascot: a sea dog wearing a sailor's cap. +02/26/2016,Sports_celeb,@rolopez42,RT @RoryDoesPhonics: Which of you are popular enough to be on this bracket? Make a case. Already have some (@mikeoz @MayorSwearengin @Henry… +02/22/2016,Sports_celeb,@rolopez42,Congrats to @jevonpepper on winning 2 tickets to Disneyland! Pirates of the Caribbean has always… https://t.co/WwQAydh6V1 +02/22/2016,Sports_celeb,@rolopez42,"Finally found my 2nd favorite Disneyland attraction ever! Miss the #Peoplemover! Btw, whoever… https://t.co/fAKTkWCNDV" +02/21/2016,Sports_celeb,@rolopez42,Thanks brother. See you soon! https://t.co/MdU0vNlnq9 +02/21/2016,Sports_celeb,@rolopez42,"RT @kevin_seraphin: Great win,solid team work @nyknicks! Now back home for another battle on monday. #Knicks #Kslife #WeAreOne #Teamwork ht…" +02/21/2016,Sports_celeb,@rolopez42,"Always have been, always will be! #SeeYouThisSummer #Aug6thForSure @MarinerMoose https://t.co/iMesJTU5id" +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs That was such a great little nod in the backlot +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs always wanted to go on Horizons. World of Motion is a close second. +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs Same boat. #ThankGodForYoutube +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs you got it ;) +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs you should be able to guess based of your handle!!! #HintItsNotHorizons +02/19/2016,Sports_celeb,@rolopez42,The 2 nicest whips I own #DidISayWhipRight? #MrToad #SpaceMountain #GoldenHorseshoe #Disney #Disneyland #DisneyWorld https://t.co/0VRGNO9lub +02/19/2016,Sports_celeb,@rolopez42,The two nicest whips I own #YouKeepTheMaybachs #DidISayWhipsRight? #MrToad #SpaceMountain… https://t.co/arE9flHk6r +02/14/2016,Sports_celeb,@rolopez42,VDay in Morocco with #Aladdin inspired evening wear! #EPCOT #WaltDisneyWorld #Disney #HappyValentinesDay https://t.co/dlDqTb7rrv +02/14/2016,Sports_celeb,@rolopez42,Can't beat VDay with christine_vargas in #Aladdin & #Jasmine inspired evening wear in… https://t.co/Ima80PvpRL +02/03/2016,Sports_celeb,@rolopez42,"RT @ROSGO21: Pregame w Kirk Lacob @klacobprime & Robin Lopez @rolopez42 at Madison Square Garden +#StanfordFam #NerdNation 🌲🙌🏽💪🏽🏀🌲 +https://t…" +01/31/2016,Sports_celeb,@rolopez42,"Yeah, you two monstrosities should have fun hanging out together. He can be the new King Cake Baby. https://t.co/8gIOWIGKKe" +01/30/2016,Sports_celeb,@rolopez42,Movie Night! #TokyoStory and #RioBravo #PrettySureThisIsTheBasisForToyStory #JohnWayne #DeanMartin #YasujiroOzu https://t.co/eeY9mV8Nql +01/25/2016,Sports_celeb,@rolopez42,"Brook and I are stopping by at @Tissot Times Square in #NYC Today, Monday 1/25 at 5pm! Meet us there! #Tissot #NBA" +01/21/2016,Sports_celeb,@rolopez42,RT @kporzee: Great team W! S/O to big bro @carmeloanthony for passing L.Bird on the all time scoring list and also great game by @rolopez42… +01/20/2016,Sports_celeb,@rolopez42,@mikepriceinla I'm there! +01/20/2016,Sports_celeb,@rolopez42,"Probably the closest I'll ever come to being on the show, not counting Robert Terwilliger. #DammitKP #IKidNY https://t.co/kl4uB5nsQg" +01/13/2016,Sports_celeb,@rolopez42,That one was for my right shoe #AndTheChildren #ForRolosShoe #ImSorryIThrewYou #Knickstape +01/11/2016,Sports_celeb,@rolopez42,"RT @kevin_seraphin: Another win, another great night in this fantastic @TheGarden! Thanks @nyknicks nation for the love and support! https:…" +01/11/2016,Sports_celeb,@rolopez42,I look like too much of a moron not to post this. Helluva team win tonight #CoolRunnings #GoJohnCandyGo #Knickstape https://t.co/dKtrJoAAy2 +01/07/2016,Sports_celeb,@rolopez42,RT @colinmeloy: @rolopez42 Don't make me start in on Knicks erotic fanfic... +01/07/2016,Sports_celeb,@rolopez42,This clearly isn't your first time behind the erotic fanfic keyboard https://t.co/c7qVcFbVyu +01/07/2016,Sports_celeb,@rolopez42,RT @MLB: Welcome to immortality. The 2016 #HOF electees: Ken Griffey Jr. and Mike Piazza. https://t.co/P7MKb3YvT7 +01/07/2016,Sports_celeb,@rolopez42,RT @jerryferrara: Great win tonight for my @nyknicks ! That's 3 in a row. 4 out of 5. Let's go! @rolopez42 @kporzee @LangGalloway10 @DWXXII… +01/06/2016,Sports_celeb,@rolopez42,RT @jerryferrara: That's 2 in a row! Let's go @nyknicks @rolopez42 @kporzee @carmeloanthony @LangGalloway10 @Kyle_OQuinn +01/01/2016,Sports_celeb,@rolopez42,Here's to a 2016 with even more Grand Adventures and zany hats. Especially the hats.… https://t.co/PIAhlUHPP4 +01/01/2016,Sports_celeb,@rolopez42,RT @hobbledegaagaa: Happy New Year to @rolopez42 and the @nyknicks +01/01/2016,Sports_celeb,@rolopez42,RT @whatwouldDOOdo: @thatbilloakley @realBobWoodward @rolopez42 @coleswindell @michaeldrich @RoyPrice happy new year! https://t.co/eIDyB3Ym… +12/27/2015,Sports_celeb,@rolopez42,Today I was visited by three Spirits & learned the true meaning of #BoxingDay #TipYourPostman #HappyBoxingDayAmerica https://t.co/OIQS4jalZ7 +12/26/2015,Sports_celeb,@rolopez42,RT @SixersFranklin: Pretty sure @rolopez42 got coal and coal only today....I hope he got coal only. https://t.co/Cx1p5wHdKR +12/21/2015,Sports_celeb,@rolopez42,RT @nyknicks: .@rolopez42 and @gardenofdreams spreading holiday cheer with the gift of a new @Kia for #SeasonOfGiving! https://t.co/ItNXrZW… +12/18/2015,Sports_celeb,@rolopez42,"Something I'd like to see in the box. Think Gwyneth Paltrow, if she was a giant blue dog who didn't know her place. https://t.co/hv0mXhCK54" +12/15/2015,Sports_celeb,@rolopez42,And that was what exactly...? https://t.co/2DYJPBHBJA +12/14/2015,Sports_celeb,@rolopez42,Looks like those clowns in congress have done it again. What A Bunch Of Clowns. +12/13/2015,Sports_celeb,@rolopez42,"RT @JmCalderon3: Great W to finish the road trip! Big game from @carmeloanthony @Kyle_OQuinn @rolopez42 Aaron , @DWXXIII @LangGalloway10 La…" +12/12/2015,Sports_celeb,@rolopez42,RT @CHold: . @rolopez42 texting Edward from the road https://t.co/VPkysaeUcI +12/11/2015,Sports_celeb,@rolopez42,RT @SlamsonTheLion: More with @rolopez42 mistletoe cam from last night #halitosis https://t.co/yq6vYPLw2q +12/11/2015,Sports_celeb,@rolopez42,@PierreTPelican @the_real_Gwiz The memories are all we have in the end. And the physical and emotional scars. But mostly the memories. +12/11/2015,Sports_celeb,@rolopez42,RT @PierreTPelican: .@the_real_Gwiz just remember what happens when you trash talk. Right @rolopez42? https://t.co/tmjGjzbWaT +12/09/2015,Sports_celeb,@rolopez42,"#Mondaze amiright?! + +Follow me for more hilarious insight into this crazy 9 to 5 we call Life! https://t.co/oXxDH3IIZW" +12/07/2015,Sports_celeb,@rolopez42,Prince Edward is proud of @TimbersFC for winning the cup today! Congrats to them Bad Boys & @christine_vargas #RCTID https://t.co/vckVufLgFn +12/06/2015,Sports_celeb,@rolopez42,RT @RoseHarding: @rolopez42 @GavinCuneo @ValiantComics Did they send you a REAL CAT?! Amazing. +12/06/2015,Sports_celeb,@rolopez42,Just got an awesome package from @GavinCuneo @ValiantComics! Been digging their stuff forever thanks! #ValiantComics https://t.co/X1DFjCPKUY +12/06/2015,Sports_celeb,@rolopez42,RT @BucksBango: @rolopez42 I will be training. Next year you're mine. https://t.co/0D9uvdjgdt +12/05/2015,Sports_celeb,@rolopez42,"#HappyBirthdayWaltDisney, who I love & admire to no end. Even if he once held up a coach of kids. #WeLoveYouMrDisney https://t.co/CyQpQ98BaA" +12/05/2015,Sports_celeb,@rolopez42,"I guess everybody's the hero in their own story...but, hey, flattered by the Vader comparison anyway #Knicks https://t.co/blr8FP7tud" +12/05/2015,Sports_celeb,@rolopez42,"RT @Animation_Cels: A fond and loving farewell to Elfego Baca. #Disney #WonderfulWorldofColor +RIP https://t.co/J94LKXheb5" +12/05/2015,Sports_celeb,@rolopez42,During the game @pezwardisking apparently learned how to take selfies. #GoodKitty #ForTheGloryOfEdward #Knicks https://t.co/V2AQ8rptqi +12/04/2015,Sports_celeb,@rolopez42,"RT @nyknicks: .@rolopez42 vs. Brook and former #Knicks return to @TheGarden on @MSGNetworks! #NYKvsBKN + +https://t.co/toxF61rmO4 https://t.c…" +12/04/2015,Sports_celeb,@rolopez42,"RT @ZachLowe_NBA: Lowe Post podcast: @rolopez42 + @adampally live in studio to talk mascot abuse, NBA lifestyle, Kristaps mania, more https…" +12/04/2015,Sports_celeb,@rolopez42,@CavsMoondog @Melody22B He's right. I'm always #clowning this fool +12/03/2015,Sports_celeb,@rolopez42,"Jedi Kill Bill over here #Lolz #YouLikeTheTracksuit #IHaveTheHighGround #ShutUpObiThatDoesntMakeSense +#StarWars https://t.co/vU4q4Quyk6" +11/29/2015,Sports_celeb,@rolopez42,RT @BrooklynNets: A tale of two brothers and their #catprobs: https://t.co/KOYKknJ6FX #Nets https://t.co/aQanni9TwI +11/29/2015,Sports_celeb,@rolopez42,Heading to the Garden with @JBLaudio check em out at https://t.co/FMyNTHREAQ #ThatsGoodStuff https://t.co/8JQvLSTxmY +11/29/2015,Sports_celeb,@rolopez42,"Had a great time last night at @Aladdin! Loved meeting @AdamJacobsNYC and jamesmiglehart, just as… https://t.co/P56cHDbgZz" +11/29/2015,Sports_celeb,@rolopez42,@jamesmiglehart I love that whole film top to bottom...always wanted to do that to a professor in college haha! +11/29/2015,Sports_celeb,@rolopez42,RT @jamesmiglehart: I feel a little small next to the awesome Center @rolopez42 aka @rolopez42! https://t.co/1duxQLQSYU +11/29/2015,Sports_celeb,@rolopez42,RT @AdamJacobsNYC: Likewise bro! Come back to Agrabah anytime :) I'll lend you the magic carpet to treat your Jasmine... #NYKnicks #8 http… +11/29/2015,Sports_celeb,@rolopez42,@AminESPN no elephants but they made me proud. You know how high my vocals standards are..... +07/02/2018,Sports_celeb,@DwyaneWade,🇪🇸 3️⃣ #wadesworldtour2018 https://t.co/Ace4KSk9KJ +07/02/2018,Sports_celeb,@DwyaneWade,When in Barcelona!!! Thanks to the good people at FCB for opening up your doors and allowing me to knock some paint… https://t.co/yhlIl1caaF +07/02/2018,Sports_celeb,@DwyaneWade,Prayers up and much respect! https://t.co/fahDNtQUbS +07/01/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: Flash forever https://t.co/mazB7CvAJG +07/01/2018,Sports_celeb,@DwyaneWade,"“My world is different like Dwayne Wayne” #YoureWelcome @ Barcelona, Spain https://t.co/a4VHCf6gBI" +07/01/2018,Sports_celeb,@DwyaneWade,Freak of nature! https://t.co/9IYplT3XBu +06/30/2018,Sports_celeb,@DwyaneWade,"✌🏾 #barcelonanights #TheWades #wadesworldtour2018 @ Barcelona, Spain https://t.co/HI6iv7TgwY" +06/30/2018,Sports_celeb,@DwyaneWade,"When you think your fresh asf!!! #BarcelonaNights #wadeworldtour2018 @ Barcelona, Spain https://t.co/aBer7scJEp" +06/30/2018,Sports_celeb,@DwyaneWade,Your LAUGH will forever be! RIP Willie May Morris! You shaped my thoughts as early as 5 years old to make something… https://t.co/5tMaJCHywm +06/30/2018,Sports_celeb,@DwyaneWade,Perfectly said https://t.co/WcRgDxgmvP +06/30/2018,Sports_celeb,@DwyaneWade,RT @KrickettwithaK: Anyone still have this #mubb @MarquetteMBB @DwyaneWade classic?! I do! https://t.co/5vmEqE4fny +06/29/2018,Sports_celeb,@DwyaneWade,"🕺🏾 @ Barcelona, Spain https://t.co/yfPAHQHhjm" +06/29/2018,Sports_celeb,@DwyaneWade,Great convo with my guy @Yg_Trece about his upcoming free agency! I appreciate you sitting down with me to talk abo… https://t.co/WQ1tmrEsLk +06/29/2018,Sports_celeb,@DwyaneWade,RT @SneakerReporter: Dope 1 on 1 conversation with @DwyaneWade and @Yg_Trece on My Journey Part 2. https://t.co/e09aLCjjSL +06/29/2018,Sports_celeb,@DwyaneWade,"RT @r0bato: Next is Paul George talking with Dwyane Wade + +1. PG says he could come to LA to play for the home team but he wants to win a ti…" +06/28/2018,Sports_celeb,@DwyaneWade,RT @utahjazz: Grayson tried to model his game after @DwyaneWade & @manuginobili growing up as a kid. D-Wade was the reason he wore number 3. +06/27/2018,Sports_celeb,@DwyaneWade,"Go behind the scenes of my shoot with @away and find out how I ""Talent!"" Make sure to hit that subscribe button!… https://t.co/hXbZpuKHa8" +06/27/2018,Sports_celeb,@DwyaneWade,"🇪🇸 Vacation Crew Vibez!!! @ Ibiza, Spain https://t.co/e7Q5qFSEaG" +06/26/2018,Sports_celeb,@DwyaneWade,RT @HarvardHBS: Learn more about @DwyaneWade's new role teaching rising college seniors as an Executive Fellow. SVMP is a one-week resident… +06/26/2018,Sports_celeb,@DwyaneWade,Ambition travels with me... My new collection with @away is available now! Check it out! https://t.co/4KvjnCQiRU https://t.co/Jhu1awM7Rr +06/26/2018,Sports_celeb,@DwyaneWade,"🇪🇸 ⛳️ #wadeworldtour2018 @ Ibiza, Spain https://t.co/5r8oHqeWcG" +06/25/2018,Sports_celeb,@DwyaneWade,"We’re BROTHERS, were HAPPY and we’re singing and we’re Colored!!! Vacation Vibes with my brother ud40 #Outthebox… https://t.co/fC9CmqVJbt" +06/25/2018,Sports_celeb,@DwyaneWade,🗣🗣🗣 https://t.co/QsufE5wzpz +06/25/2018,Sports_celeb,@DwyaneWade,It’s two kinda people in this 🌍. The ones who LIVE and the ones who watch others LIVE!!! Which one are you!?!?!… https://t.co/plYoqSk0w2 +06/25/2018,Sports_celeb,@DwyaneWade,The face you make when someone says you can’t do something!?!?! #Harvard #Executivefellow https://t.co/9u8xCgiZ32 +06/25/2018,Sports_celeb,@DwyaneWade,When you’re sitting between these two women @anitaelberse @itsgabrielleu you better bring your A game!👊🏾🙏🏾🙌🏾♥️… https://t.co/woDaJrSH3E +06/25/2018,Sports_celeb,@DwyaneWade,I’m just trying to be like you. Hi @karliekloss https://t.co/bDq0KB10EE +06/24/2018,Sports_celeb,@DwyaneWade,Seattle is a great city and has some of the most passionate basketball fans out there. It would be cool to see this… https://t.co/ieDiN9NBnm +06/24/2018,Sports_celeb,@DwyaneWade,🤦🏾‍♂️ https://t.co/p8vifjGWau +06/23/2018,Sports_celeb,@DwyaneWade,TheWades take NYC💧 https://t.co/bno1pxRNt8 +06/23/2018,Sports_celeb,@DwyaneWade,"TheWades take NYC💧 @ New York, New York https://t.co/XBv1zp51UR" +06/22/2018,Sports_celeb,@DwyaneWade,Good morning world! Focus on today as it’s preparing you for tomorrow and the rest of your life! Go be GREAT! +06/21/2018,Sports_celeb,@DwyaneWade,💯 #ChicagoMade @marsreel https://t.co/cywJlSOqyF +06/20/2018,Sports_celeb,@DwyaneWade,RIP good Sir! https://t.co/xlwM0o9xLs +06/20/2018,Sports_celeb,@DwyaneWade,💧 https://t.co/vhq6Vf0JR9 +06/19/2018,Sports_celeb,@DwyaneWade,You know me.. no limits. No rest for the ambitious wanderer. My new collab with @away is coming soon!… https://t.co/EDJTvdA41k +06/19/2018,Sports_celeb,@DwyaneWade,The Glove 🧤 #HOF #2006NBAChampion https://t.co/sdwXEvzHpr +06/17/2018,Sports_celeb,@DwyaneWade,Happy Fathers Day Hank!!! I love you and I’m… https://t.co/SUUkqUcixO +06/17/2018,Sports_celeb,@DwyaneWade,😂😂😂 oh fo sho. Sweet Butter is the jam tho!!! https://t.co/FeG7EhfsnR +06/15/2018,Sports_celeb,@DwyaneWade,"Man, if it wasn’t for the male role models in my life, I wouldn’t be here today. Shoutout to all the fathers and fa… https://t.co/eJRuarXQaD" +06/15/2018,Sports_celeb,@DwyaneWade,Simply a Master Piece! https://t.co/fWjaAAB76g +06/15/2018,Sports_celeb,@DwyaneWade,2012: Hey Punk. Catch. 2018: Hey Sir. Excuse me you dropped your shoe🤷🏾‍♂️ https://t.co/Ij5aoHn3jK +06/15/2018,Sports_celeb,@DwyaneWade,He’s a winner people! https://t.co/DUliOBpY8j +06/14/2018,Sports_celeb,@DwyaneWade,It feels good being back with the family @TheCollectionFL!! I couldn’t ride through this city without all the suppo… https://t.co/2lvjXeMOlk +06/11/2018,Sports_celeb,@DwyaneWade,Let’s let the record show.. I don’t have any inside information whatsoever about his decision! https://t.co/qgm6znLWzk +06/11/2018,Sports_celeb,@DwyaneWade,If you find them can you pls let the whole world know. Fathers always get the left over gifts https://t.co/qrXhVQ1Ca4 +06/11/2018,Sports_celeb,@DwyaneWade,RT @cheddahcheese7: I love what the NBA is doing with mental health! @MRobertsNBPA @ChrysaChin @TheNBPA I would love to see my guy @shansme… +06/09/2018,Sports_celeb,@DwyaneWade,"It’s #NationalRoséDay so it’s only right that I’m celebrating with my brand new Three by Wade Rosé, available now a… https://t.co/sPdAP0WXHV" +06/08/2018,Sports_celeb,@DwyaneWade,"0️⃣6️⃣🏆 @ Miami Beach, Florida https://t.co/VebXdrGtPG" +06/08/2018,Sports_celeb,@DwyaneWade,Oh yeah! I can see this pairing oh-so-well with my new @dwadecellars Rosé. I’ll let @Chefrli tell you a little bit… https://t.co/A1CGdnm3jR +06/08/2018,Sports_celeb,@DwyaneWade,😂😂😂😂😂💯 https://t.co/qgx0rLdAcs +06/07/2018,Sports_celeb,@DwyaneWade,“My goodness”( Jeff van gundy voice) +06/06/2018,Sports_celeb,@DwyaneWade,Chef tried to pull a fast one on me with my own wine but I know my stuff! Episode 2 of #WadesKitchenConvos is out n… https://t.co/RGKARUCFev +06/05/2018,Sports_celeb,@DwyaneWade,👀 https://t.co/9KXMuxyRRQ +06/05/2018,Sports_celeb,@DwyaneWade,This brought me joy to watch!!! @heydb Doris Burke high school highlights https://t.co/UDueGjhKqx via @YouTube +06/03/2018,Sports_celeb,@DwyaneWade,Thanks @BallerTV for creating a platform for the parents that can’t be there but wanna watch their kids play.… https://t.co/8Zos3KVxvP +06/03/2018,Sports_celeb,@DwyaneWade,I like that sweater kid! https://t.co/SkSyh6OhOl +06/01/2018,Sports_celeb,@DwyaneWade,I’ll take each game just like this one. Wire to wire. +05/31/2018,Sports_celeb,@DwyaneWade,https://t.co/CDaW9lo7dp +05/30/2018,Sports_celeb,@DwyaneWade,RT @RobinRoberts: It was a show-stopping performance by @SerenaWilliams in her first major tournament since returning from maternity leave.… +05/30/2018,Sports_celeb,@DwyaneWade,I guess all black people do look alike 🤷🏾‍♂️ because @itsgabrielleu wasn’t at the Olympic in 08. Clearly Eric Jr li… https://t.co/YJ0huPaV08 +05/29/2018,Sports_celeb,@DwyaneWade,Happy Anniversary to you both!!! https://t.co/uMGuE7YJ0N +05/28/2018,Sports_celeb,@DwyaneWade,"RT @BleacherReport: Jeff Green had open-heart surgery in 2012. Now he's competing in the NBA Finals 🙏 + +(via @NBA) +https://t.co/afu9fbLoeu" +05/28/2018,Sports_celeb,@DwyaneWade,RT @kobebryant: #Annie #Oscar #Emmy safe to say I’m focused on another mountain but I’m guessing it’s hard to fathom athletes supporting ot… +05/28/2018,Sports_celeb,@DwyaneWade,RT @kobebryant: We can enjoy one without tearing down one. I love what he’s doing. Don’t debate what can’t be definitively won by anyone #e… +05/28/2018,Sports_celeb,@DwyaneWade,That’s a bad man. Congrts bro on your 8th straight FINALS! DAMN! @KingJames https://t.co/SqFtD0qfVE +05/28/2018,Sports_celeb,@DwyaneWade,"RT @Channing_Frye: Who in the world can hate now lord have mercy, teammate, friend or not this is ridiculous" +05/27/2018,Sports_celeb,@DwyaneWade,Prayers up to his family🙏🏾🙏🏾🙏🏾. Rest easy young hooper! https://t.co/PEQSr26Unm +05/27/2018,Sports_celeb,@DwyaneWade,And to think at one point I wasn’t even the most popular person in my biology class. #Nolabpartner https://t.co/L9RmYjrFw5 +05/27/2018,Sports_celeb,@DwyaneWade,YnG DNA! https://t.co/NMZkEVA0rA +05/27/2018,Sports_celeb,@DwyaneWade,Atleast he’s a champion🤷🏾‍♂️ https://t.co/6iUr5YclUb +05/27/2018,Sports_celeb,@DwyaneWade,RT @HoopersOnIy: Kids these days won’t know how good D Wade actually was 😳 https://t.co/sdkukhuu52 +05/27/2018,Sports_celeb,@DwyaneWade,👇🏾 https://t.co/Ugaczq1T3T +05/26/2018,Sports_celeb,@DwyaneWade,"RT @Wade_Elite: Wade Elite - 67 +East Coast United - 66 + +@enew_5 - 22p 6a 5r +@cloading8 - 17p 10r 2s 2a +@G_Urbonavicius - 14p 10r +Seven Fer…" +05/25/2018,Sports_celeb,@DwyaneWade,"Join me this summer for my basketball & cheer camps! + +Miami: July 7 & 8 +Chicago: August 4 & 5 (register by… https://t.co/0jqQaDnCR4" +05/24/2018,Sports_celeb,@DwyaneWade,Fit on point ✅ Swag on infinity ✅ Co-pilot on Wookiee ✅ Let’s roll. #ad https://t.co/5M4AGquxGi +05/24/2018,Sports_celeb,@DwyaneWade,@J_Rich1 i know the feeling. Nothing against my friend Kobe who was a helluva defender forget the numbers but the v… https://t.co/0wehb3y6SU +05/24/2018,Sports_celeb,@DwyaneWade,This was 6 years ago 🤦🏾‍♂️. Time really does fly. I remember this game like it was last night. https://t.co/jQpP6lOzWq +05/24/2018,Sports_celeb,@DwyaneWade,Thank you @bookingyeah for helping me surprise… https://t.co/MBIrHfPCPW +05/23/2018,Sports_celeb,@DwyaneWade,😂😂😂😂😂 https://t.co/d7qACW26TF +05/23/2018,Sports_celeb,@DwyaneWade,RT @Bucks: Statement From Sterling Brown: https://t.co/mkcM0Dbklr +05/23/2018,Sports_celeb,@DwyaneWade,Hungry yet? We got #WadesKitchenConvos Episode #1 out the oven for you! @Chefrli and I talk about @itsgabrielleu's… https://t.co/EkpSyGJ0mw +05/23/2018,Sports_celeb,@DwyaneWade,RT @isaiahthomas: We need a @NBA team in Seattle!!!!! +05/23/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: “The city has been through a tough time with the things in Santa Fe ... hopefully basketball can be a way people can come a… +05/22/2018,Sports_celeb,@DwyaneWade,😂😂😂😂 busted! https://t.co/3M8mw62sEU +05/22/2018,Sports_celeb,@DwyaneWade,RT @BUBrianWardle: Proud of our players and their commitment to the big picture! https://t.co/U4CfjKllKo +05/22/2018,Sports_celeb,@DwyaneWade,It’s getting real in the kitchen with @Chefrli. We’re taking things to another level with my “Kitchen Convos” serie… https://t.co/cmHHKkA53R +05/22/2018,Sports_celeb,@DwyaneWade,I Definitely seen this reaction out of you at my spades event https://t.co/IF3aixfeTu +05/22/2018,Sports_celeb,@DwyaneWade,"My brother @JamesShawJr9 is doing the work! +https://t.co/pgFyOfKycy" +05/22/2018,Sports_celeb,@DwyaneWade,He’s a BUCKET! https://t.co/zV91pWsGvR +05/22/2018,Sports_celeb,@DwyaneWade,A thing of beauty! https://t.co/IsxcHnKzCE +05/21/2018,Sports_celeb,@DwyaneWade,Dope! https://t.co/yH0jvPnYNy +05/21/2018,Sports_celeb,@DwyaneWade,💭 https://t.co/CIFrghTnD0 +05/21/2018,Sports_celeb,@DwyaneWade,I want Zaire to be the best Zaire he can be. https://t.co/yXHUHNONrD +05/21/2018,Sports_celeb,@DwyaneWade,Haters are people who wanna be you. “Imitation is the sincerest form of flattery” https://t.co/zUG0nCXMeW +05/21/2018,Sports_celeb,@DwyaneWade,Channing is da real MVP! https://t.co/V8yO8mrwfs +05/21/2018,Sports_celeb,@DwyaneWade,It’s whatever the team who has the number 1 pick needs but this class of guys are very talented! https://t.co/63gmxDvplG +05/21/2018,Sports_celeb,@DwyaneWade,It’s an exciting time for you I’m sure. Congrts on the day your baby is born🙏🏾 https://t.co/MsaJYqFAlf +05/21/2018,Sports_celeb,@DwyaneWade,"The 3 finalist that was picked by the NBA were the same 3 I had. In NO certain order people. LeBron, Harden, AD! https://t.co/izsxmCjtDw" +05/21/2018,Sports_celeb,@DwyaneWade,💡 https://t.co/NIJBw1rFUh +05/21/2018,Sports_celeb,@DwyaneWade,"Win,lose or draw. This is what it’s all about!!! https://t.co/UVm4LdYi0n" +05/21/2018,Sports_celeb,@DwyaneWade,It’s a beautiful thing https://t.co/0W14gxtpkn +05/21/2018,Sports_celeb,@DwyaneWade,Possibly the coolest person to ever rock HEAT on their chest. https://t.co/ou9sWgNXnO +05/21/2018,Sports_celeb,@DwyaneWade,🗣 https://t.co/rF8cQaLwtG +05/21/2018,Sports_celeb,@DwyaneWade,Strong word* https://t.co/I720cDsXXM +05/21/2018,Sports_celeb,@DwyaneWade,Sweet https://t.co/EvkX2Ffrlb +05/21/2018,Sports_celeb,@DwyaneWade,😂😂😂 hate is a strong wrong. https://t.co/RukDegB3C9 +05/20/2018,Sports_celeb,@DwyaneWade,"RT @RealBillRussell: Thank you everyone for the kind thoughts, yes I was taken to the hospital last night & as my wife likes to remind me I…" +05/19/2018,Sports_celeb,@DwyaneWade,RT @LakePoint_Hoops: It was great to have @DwyaneWade and @itsgabrielleu in the house at @LakePointIndoor last weekend for the @NikeEYB! Wa… +05/19/2018,Sports_celeb,@DwyaneWade,RT @CBN_BBall: The Fathers and men of Professional Basketball Players Conference had a great time and Wendell P. William. @Quietstorm_32 @… +05/18/2018,Sports_celeb,@DwyaneWade,"RT @cameron_kasky: At least 8 students have been shot and killed at Santa Fe High School. + +Prepare to watch the NRA boast about getting hig…" +05/17/2018,Sports_celeb,@DwyaneWade,You want it for yourself but you want it for your kids even more. This one’s for Z. Wade. https://t.co/PVFIZDGvWO https://t.co/ZbwwYXz86Y +05/17/2018,Sports_celeb,@DwyaneWade,He better have averaged 43 points and that’s with sitting out the entire 4th 😂😂😂 https://t.co/sHMYaY3j06 +05/16/2018,Sports_celeb,@DwyaneWade,Wait...So we gotta wait until Saturday for game 3??? 🤷🏾‍♂️🙅🏾‍♂️. Come on @NBA +05/16/2018,Sports_celeb,@DwyaneWade,🙅🏾‍♂️ https://t.co/XZ9UBLmKLd +05/16/2018,Sports_celeb,@DwyaneWade,I like what you did there https://t.co/PwBhmXCWhv +05/16/2018,Sports_celeb,@DwyaneWade,Co-ROY https://t.co/tQX6aw1lgI +05/16/2018,Sports_celeb,@DwyaneWade,🔥 🔥 🔥 https://t.co/lCJ1p4qvPu +05/16/2018,Sports_celeb,@DwyaneWade,My prediction is I’m home on the couch watching and wishing i was playing. Like every other NBA player that’s not i… https://t.co/g9yCL7nghV +05/16/2018,Sports_celeb,@DwyaneWade,Yea i know. That’s the lil bro https://t.co/RCUOqv2o3c +05/16/2018,Sports_celeb,@DwyaneWade,Bron is gonna have to go Bron https://t.co/k651R8BdBl +05/16/2018,Sports_celeb,@DwyaneWade,It’s a cool thing to sit back and watch the Lil bro Scary Terry grow!!! +05/16/2018,Sports_celeb,@DwyaneWade,Kind of the only threes i do shoot https://t.co/pYBxB9O34s +05/16/2018,Sports_celeb,@DwyaneWade,Alil rusty. It’s been a while🤷🏾‍♂️. I had so much fun shooting these spots for Star Wars tho. https://t.co/DBMOaYyrCC +05/16/2018,Sports_celeb,@DwyaneWade,✊🏾 https://t.co/WmktUn6zAg +05/16/2018,Sports_celeb,@DwyaneWade,RT @Channing_Frye: It might be a long night for whoever is Guarding Lebron just FYI! +05/16/2018,Sports_celeb,@DwyaneWade,😂😂😡 https://t.co/gDgwCNSlwx +05/16/2018,Sports_celeb,@DwyaneWade,This! 🙌🏾 https://t.co/TcrMrrHoq1 +05/15/2018,Sports_celeb,@DwyaneWade,That’s his IG. So not really🤷🏾‍♂️ https://t.co/IPETjQzBW0 +05/15/2018,Sports_celeb,@DwyaneWade,Love! https://t.co/R7wb2NWHiW +05/15/2018,Sports_celeb,@DwyaneWade,A lot of work to do over these next few years but proud parents we are of @zmane2 https://t.co/f9ts1wx8yy +05/15/2018,Sports_celeb,@DwyaneWade,👏🏾👏🏾 Yea my brother @TajGibson22 got me good. But you left out the most important fact. Heat won the series 4-1🤷🏾‍♂️ https://t.co/A1eNXOUIGN +05/15/2018,Sports_celeb,@DwyaneWade,"RT @ESPNNBA: Should Dwyane Wade retire? + +Chewie has some … thoughts? #HanSolo https://t.co/m9sMjUUavh" +05/15/2018,Sports_celeb,@DwyaneWade,Yes. Pls! https://t.co/ZxbJh2sBgr +05/15/2018,Sports_celeb,@DwyaneWade,Thanks for finding it for me my brother. Love https://t.co/GadCW10xKu +05/15/2018,Sports_celeb,@DwyaneWade,Fam you got a connect i don’t know about. That jersey is 🔥 🔥 🔥 https://t.co/s7nGJndJPu +05/15/2018,Sports_celeb,@DwyaneWade,😂😂😂 good one. https://t.co/jSDIfVuxyF +05/15/2018,Sports_celeb,@DwyaneWade,Tell em why you mad son. Obviously not you. Thanks for the extra publicity tho https://t.co/HwturDWnIB +05/14/2018,Sports_celeb,@DwyaneWade,WOY = Wookie of the Year #ad https://t.co/BytxG0Pihs +05/14/2018,Sports_celeb,@DwyaneWade,WOY = Wookie of the Year #ad https://t.co/0qE7KReGZN +05/14/2018,Sports_celeb,@DwyaneWade,RT @overtime: Zaire Wade making his OWN NAME 🏆 @DwyaneWade @reale1t1 https://t.co/LjlmZzbAEx +05/14/2018,Sports_celeb,@DwyaneWade,You seen the way he got his but kicked. No no no https://t.co/eTcFiKI42u +05/14/2018,Sports_celeb,@DwyaneWade,I haven’t seen it. Where the pics at? https://t.co/uba0s3gUxo +05/14/2018,Sports_celeb,@DwyaneWade,RT @Amy_ESPNPR: .@DwyaneWade has a new co-pilot in this @ESPN commercial for Solo: A Star Wars Story. @StarWars @NBA #NBAPlayoffs https://t… +05/14/2018,Sports_celeb,@DwyaneWade,"RT @carmeloanthony: Happy Mother’s Day to the strongest and bravest woman I know!!! Thanks for being our rock @lala +#STAYME7O https://t.co…" +05/14/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: Stylin & profilin in @nyandcompany with my girl @xoxofaithhaslem #HeatNation https://t.co/kDU9SoIZYY +05/14/2018,Sports_celeb,@DwyaneWade,Don’t mess with me. I got friends! https://t.co/PlMjJX4nfk +05/14/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: #BreakingInMovie against all odds (tiny budget & far fewer screens) still made almost 3x our budget opening weekend! htt… +05/13/2018,Sports_celeb,@DwyaneWade,"RT @TomCrean: If your practices or workouts are lacking energy or have boredom kicking in, that is on us as coaches. Not the players. We ha…" +05/13/2018,Sports_celeb,@DwyaneWade,Yes you did. It was a pretty cool experience! https://t.co/51ovIbCNV9 +05/13/2018,Sports_celeb,@DwyaneWade,I’m sure it’s plenty but thank you for that https://t.co/x1HzFzmOcW +05/13/2018,Sports_celeb,@DwyaneWade,I agree https://t.co/dejKNRJftp +05/13/2018,Sports_celeb,@DwyaneWade,"RT @lisjoseph: She made me a mommy first 💗. She’s so attached to me, looks to me for approval, guidance, love and to be present. glad I was…" +05/13/2018,Sports_celeb,@DwyaneWade,Thank y’all!!!! Enjoy!!! https://t.co/UA6xf76adg +05/13/2018,Sports_celeb,@DwyaneWade,🙏🏾 https://t.co/GgjMZXAYv4 +05/13/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: My friend @LewisHamilton is crushing it!!! Only black man in F1, if you aren't familiar here in the states... hes pretty…" +05/13/2018,Sports_celeb,@DwyaneWade,"Happy Mother's Day Miami!!! 🥂 💛🧡💚💜💙 +As a special gift to Miami we… https://t.co/IhaRoRwfvu" +05/13/2018,Sports_celeb,@DwyaneWade,I’ll be looking for my case in the mail from you kinda sir. https://t.co/OuhOcnGcYD +05/13/2018,Sports_celeb,@DwyaneWade,"RT @natasha_sen: ✨The women that made us 💫 And now the both of us have 2 moms and they are besties. 👯‍♂️ +#HappyMothersDay https://t.co/3uk3…" +05/13/2018,Sports_celeb,@DwyaneWade,RT @essencesays: Berry Lips + or - 20 years 😊 #iamjustbeginning https://t.co/eeBvq887L9 +05/12/2018,Sports_celeb,@DwyaneWade,The sweatsuit 🔥 tho https://t.co/BcQWlQ3Vdw +05/12/2018,Sports_celeb,@DwyaneWade,Nothing but Class! https://t.co/fTR70pXsGb +05/12/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: Cue the tears, THANK YOU @KevinHart4real!! This is huge! #BreakingInMovie https://t.co/VOmUNCMCyT" +05/12/2018,Sports_celeb,@DwyaneWade,Now that’s an announcement🙌🏾 https://t.co/kwpdpK73Cp +05/12/2018,Sports_celeb,@DwyaneWade,👀 Dime! https://t.co/ZHSBv9Rwqf +05/12/2018,Sports_celeb,@DwyaneWade,Love it! https://t.co/z1I5xKVuw6 +05/12/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: This CP3 pickup game in 2011 was too 🔥🔥 https://t.co/MFxwoqqaeg +05/12/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: Pay it forward 🤗 #BreakingInMovie fun with @DwyaneWade in Georgia during a break between AAU games https://t.co/jn39jsk4… +05/12/2018,Sports_celeb,@DwyaneWade,"A Movie Star, A Young Bull, A guy will a curly bush that looks like… https://t.co/kmut6lbmeR" +05/12/2018,Sports_celeb,@DwyaneWade,RT @ThisIsUD: I'm feeling @MiamiHerald's list of Miami/South Florida’s Top 25 sports figures. #og https://t.co/zb4du1WDqc https://t.co/t3aU… +05/12/2018,Sports_celeb,@DwyaneWade,Happy birthday bald guy! https://t.co/1xhAnz2I7I +05/12/2018,Sports_celeb,@DwyaneWade,3️⃣ https://t.co/e4D8xJ5vUk +05/12/2018,Sports_celeb,@DwyaneWade,Tru!!!! https://t.co/isuAOfRc78 +05/12/2018,Sports_celeb,@DwyaneWade,RT @Goran_Dragic: The best captain ever !!! @ThisIsUD #Mr305 #OG https://t.co/MFSIncjnAk +05/12/2018,Sports_celeb,@DwyaneWade,Congrts Lloyd. ATL y’all got it right https://t.co/9cXGuxVCXP +05/11/2018,Sports_celeb,@DwyaneWade,Layups! https://t.co/4QKaFxCEaP +05/11/2018,Sports_celeb,@DwyaneWade,The future https://t.co/3TsKo3okzo +05/11/2018,Sports_celeb,@DwyaneWade,You’re an impressive WOMAN!!! Everyone go check out my wife… https://t.co/1W16dT3iCD +05/11/2018,Sports_celeb,@DwyaneWade,🤔🤷🏾‍♂️ https://t.co/Tr757oXpqx +05/11/2018,Sports_celeb,@DwyaneWade,Y’all will not be disappointed!!! https://t.co/c7NBbrMe3E +05/11/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: Man I'm in tears on this plane seeing all the support for #BreakingInMovie I am grateful, humbled and so happy! Who knew…" +05/11/2018,Sports_celeb,@DwyaneWade,🙌🏾🙌🏾🙌🏾 https://t.co/qn7wxzF3mr +05/11/2018,Sports_celeb,@DwyaneWade,🙏🏾🙏🏾🙏🏾 https://t.co/8hPQaWDMc1 +05/11/2018,Sports_celeb,@DwyaneWade,Much Love✊🏾 https://t.co/nIf8omtEZW +05/11/2018,Sports_celeb,@DwyaneWade,RT @jrnba: #JrNBAWorldChampionship Global Ambassador @DwyaneWade on how youth basketball brings out key values of the game & life! #ThisIsW… +05/11/2018,Sports_celeb,@DwyaneWade,Talk that talk! https://t.co/RmlBV3ORiB +05/11/2018,Sports_celeb,@DwyaneWade,RT @D1Circuit: 2020 American Heritage (FL) G Zaire Wade will run with E1T1 United (FL) for the remainder of the 2018 NIKE EYBL @reale1t1 @D… +05/10/2018,Sports_celeb,@DwyaneWade,😂 🗣 https://t.co/67Oxgw0Z08 +05/09/2018,Sports_celeb,@DwyaneWade,I can’t wait to watch @spidadmitchell growth from year to year. What a season my brother! +05/09/2018,Sports_celeb,@DwyaneWade,Oh yeah....we stylish!! And now you can shop our looks. Check out some pieces from our personal collections on sale… https://t.co/tstHvHIn81 +05/08/2018,Sports_celeb,@DwyaneWade,Three by Wade Rose’ 🌹 coming very soon!!!! It’s gonna be a good… https://t.co/ndpyM8qVPp +05/08/2018,Sports_celeb,@DwyaneWade,Don’t mind if i do https://t.co/5fzhkDNzC5 +05/08/2018,Sports_celeb,@DwyaneWade,That’s my Dawg! That’s my dawg!( Chris tucker voice) https://t.co/ypLuFJubto +05/08/2018,Sports_celeb,@DwyaneWade,The one person in life i wish i had a chance to have a conversation… https://t.co/IOpHprfR6k +05/08/2018,Sports_celeb,@DwyaneWade,"RT @paulocoelho: Haters don't really hate you. +They hate themselves, because you're a reflection of what they wish to be" +05/08/2018,Sports_celeb,@DwyaneWade,@itsgabrielleu Dayyyuuummmmm!!!! https://t.co/TspGt9IZCE +05/07/2018,Sports_celeb,@DwyaneWade,@DWRIGHTWAY1 is that you👀 https://t.co/1yCMlgBC9n +05/07/2018,Sports_celeb,@DwyaneWade,I agree! https://t.co/GiRRBkC4uC +05/07/2018,Sports_celeb,@DwyaneWade,https://t.co/hJlfHHeRNn https://t.co/Pz2D5DF92R +05/07/2018,Sports_celeb,@DwyaneWade,🙌🏾 https://t.co/aY2QY4wU2H +07/01/2018,Sports_celeb,@BizNasty2point0,@sherm_3 No that’s me advertising a podcast that pays me based on the number of listeners you dummy. +07/01/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: ""This is where I want to be. I signed with the Coyotes because I believe in our team, I believe in our fans and I belie…" +06/30/2018,Sports_celeb,@BizNasty2point0,RT @BizNasty2point0: Huge thanks to Keith Yandle and @KevinPHayes12 for hopping on @spittinchiclets last night. What a fun episode with the… +06/30/2018,Sports_celeb,@BizNasty2point0,@Heavy__C @spittinchiclets @BBoeser16 @ryanwhitney6 Advanced status. Guys a stud. Great kid too. Humble and funny. Canucks got a good one. +06/29/2018,Sports_celeb,@BizNasty2point0,@TENcentHands @spittinchiclets @91Tavares Hahahaha. Accurate. +06/29/2018,Sports_celeb,@BizNasty2point0,Huge thanks to Keith Yandle and @KevinPHayes12 for hopping on @spittinchiclets last night. What a fun episode with… https://t.co/4AfQvn9Lht +06/29/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 96 - Featuring @KevinPHayes12 + Keith Yandle. + +The boys talk Tavares, free agency, man rockets, and Biz joined…" +06/29/2018,Sports_celeb,@BizNasty2point0,Tomorrow morning we’re dropping a double guest @spittinchiclets with a couple of Boston boys. @KevinPHayes12 and Ke… https://t.co/1SqVcPuSAh +06/28/2018,Sports_celeb,@BizNasty2point0,@Fallstothewall @Skillsy75 @spittinchiclets @cmace30 Same with @cmace30. Maybe do a double guest episode. +06/28/2018,Sports_celeb,@BizNasty2point0,@Fallstothewall @Skillsy75 @spittinchiclets @cmace30 Skillsy can come on whenever he wants. Guys a legend and has stories for days. +06/28/2018,Sports_celeb,@BizNasty2point0,I tried to keep this a secret as long as possible. The reason @spittinchiclets has gone down to 1 episode a week la… https://t.co/xNIDdzjyaD +06/27/2018,Sports_celeb,@BizNasty2point0,@DA2four The Local. Ask for Zinger. +06/27/2018,Sports_celeb,@BizNasty2point0,@Tbukey @RearAdBsBlog @ryanwhitney6 I’ll make you a deal. I’ll leave the podcast but you have to tweet out all your… https://t.co/vgRHIW3ud4 +06/27/2018,Sports_celeb,@BizNasty2point0,@ssullivan_88 @cmcdavid97 @spittinchiclets @ryanwhitney6 We’d consider having him on. +06/27/2018,Sports_celeb,@BizNasty2point0,@cmcdavid97 Connor making a strong bid early for #BoyfriendOfTheYear. Long way to go but you can tell he’s focused. +06/26/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: Willie O'Ree Is Finally Heading To The Hockey Hall Of Fame https://t.co/fDuPw8zSAK https://t.co/Qk5MJyWpML +06/26/2018,Sports_celeb,@BizNasty2point0,@joe_pieniazek @spittinchiclets @MikeGrinnell_ 1 a week till mid August. Thanks for checking in. +06/23/2018,Sports_celeb,@BizNasty2point0,Welcome to the @ArizonaCoyotes organization Barrett. https://t.co/BX0yXAyHVY +06/23/2018,Sports_celeb,@BizNasty2point0,"RT @FOXSPORTSAZ: .@BizNasty2point0 likes the #Yotes first-round draft pick, the team's recent trade and the new third jersey, he tells @Jod…" +06/22/2018,Sports_celeb,@BizNasty2point0,The greatest goal that’s never been talked about was discussed on the new episode of @spittinchiclets with the lege… https://t.co/mPMPDNvfmx +06/22/2018,Sports_celeb,@BizNasty2point0,RT @freedarko: Today was totally worth it https://t.co/0hCMttTvvW +06/21/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: We have hockey dad & 500 goal scorer Keith Tkachuk on the podcast tomorrow live from the draft as he prepares his son… +06/21/2018,Sports_celeb,@BizNasty2point0,Amazing week at the #NHLAwards filming with @Sportsnet. We filmed a ton of fun content with a lot of players. We ev… https://t.co/TAzMsdjMiP +06/21/2018,Sports_celeb,@BizNasty2point0,Got the late night text from @JonathanQuick32 begging me to interview him on the red carpet at the #NHLAwards. Such… https://t.co/FL26JyTjb6 +06/20/2018,Sports_celeb,@BizNasty2point0,"RT @Sportsnet: Can we expect @Mackinnon9 and @BizNasty2point0 to headline in Las Vegas anytime soon? + +@caroline_szwed joined them @TheAbsin…" +06/20/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: 📹 @BizNasty2point0 catches up with Calder nominee @ClaytonKeller37 in Las Vegas to discuss his new wheels, his summer t…" +06/19/2018,Sports_celeb,@BizNasty2point0,@dradziszewski27 @ryanwhitney6 @RearAdBsBlog @MikeGrinnell_ @spittinchiclets We’re really not that big on statistic… https://t.co/JmHyr9uZq3 +06/19/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 94: Featuring King Clancy Memorial Trophy Nominee and @mnwild forward @Jason_Zucker16 + +https://t.co/LQzDCibdC…" +06/19/2018,Sports_celeb,@BizNasty2point0,"RT @Sportsnet: Bet you never thought you'd see @BizNasty2point0 'turtle' in a hockey fight. + +That, plus @strombone1 stops by to make some s…" +06/19/2018,Sports_celeb,@BizNasty2point0,Just interviewed @terryfator in Las Vegas for @Sportsnet. What an awesome guy and he was even nice enough to record… https://t.co/COUEV9vMaT +06/18/2018,Sports_celeb,@BizNasty2point0,RT @caroline_szwed: hey... hang out with us on @Sportsnet social media channels while we’re in Vegas! DO IT. https://t.co/tEFBlOKDBW +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Todays guest ⬇️⬇️ + +https://t.co/ONu9AU3OX1 https://t.co/ZBkYMmvCGD" +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here featuring Nello Ferrara + the guys address the shit storm going on in Ottawa right now. + +Listen/Su…" +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @biznastydoesbc: We've had a lot of people asking, so we put together a Spotify playlist of all the music that was originally in the sho…" +06/14/2018,Sports_celeb,@BizNasty2point0,@YoungPageviews @RearAdBsBlog I’ve heard rumblings. Not confirmed. +06/14/2018,Sports_celeb,@BizNasty2point0,@RearAdBsBlog I’m just the radio guy. I have no clue. +06/14/2018,Sports_celeb,@BizNasty2point0,@Oceanstormprint @spittinchiclets @Isuckatpicking It’s from the movie Step Brothers. +06/14/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: In honor of todays 20% off sale, we dropped some new shirts. + +Thank us later. + +https://t.co/TDJ0VEtSeu https://t.co/…" +06/14/2018,Sports_celeb,@BizNasty2point0,"@1496Gukes @TheAHL @TorontoMarlies @TexasStars Regular season MVP, Playoff MVP, Regular season champs, eastern conf… https://t.co/mcKTg2nf6Y" +06/13/2018,Sports_celeb,@BizNasty2point0,Time flies. Also reminder to Hockey fans game 7 of @TheAHL Calder Cup final takes place tomorrow night in Toronto.… https://t.co/LvapXND5zO +06/12/2018,Sports_celeb,@BizNasty2point0,@AnaheimDucks @kbieksa3 Congrats guys. Little jealous but it’ll force us to work harder. +06/12/2018,Sports_celeb,@BizNasty2point0,@kbieksa3 It’s like a superman punch right to my junk. Congrats though. Well deserved. +06/12/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 92 featuring Stanley Cup Champion @tom_wilso, @PFTCommenter and @BarstoolNate is live. + +Listen/Subscribe—> ht…" +06/12/2018,Sports_celeb,@BizNasty2point0,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/12/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: One of these guys is a guest on the podcast this week and it isn’t Tiesto... #ManRocket https://t.co/IV3Cpxz3h6 +06/11/2018,Sports_celeb,@BizNasty2point0,When other guys are trying to slide into your girls DM’s but you’re both happy and in a good place in the relations… https://t.co/MIgA2jAVoH +06/09/2018,Sports_celeb,@BizNasty2point0,@NHL @kbieksa3. +06/09/2018,Sports_celeb,@BizNasty2point0,Had a blast chatting with an awesome guy yesterday on @spittinchiclets. Big thanks to @SSouray for coming on.… https://t.co/XiAFrGVO6w +06/08/2018,Sports_celeb,@BizNasty2point0,Unreal behind the scenes stuff. Great job Scott. Thanks to you and the crew. https://t.co/SurSuyfIDM +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @KathrynTappen: Washington @Capitals forward Jay Beagle is the first player in hockey history to win the Kelly Cup (ECHL), Calder Cup (A…" +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @CillizzaCNN: The suicides of Anthony Bourdain and Kate Spade this week are a reminder: No matter how successful, wealthy or seemingly h…" +06/08/2018,Sports_celeb,@BizNasty2point0,@BFG93 @ryanwhitney6 @spittinchiclets I know I started to say it and then I wanted to keep it consistent so kept sa… https://t.co/9KPUF7emqh +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @wilkinebrutus: Anthony Bourdain on humanity: +""Meals make the society, hold the fabric together in lots of ways that were charming and i…" +06/08/2018,Sports_celeb,@BizNasty2point0,Anthony Bourdain was special. What a sad day. https://t.co/pkFylBgUvU +06/08/2018,Sports_celeb,@BizNasty2point0,And when I say “guys” I mean everyone. Guys and girls. Just to clarify. +06/08/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @Capitals on a magical run. So many amazing story lines to go along with it as well. Can’t f… https://t.co/WtQnsKQoAK +06/08/2018,Sports_celeb,@BizNasty2point0,What an unbelievable NHL season. Hockey is in a wonderful place. Thanks to all the media who covered the Stanley Cu… https://t.co/61Qzluuq0O +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @bruce_arthur: TJ Oshie said of his dad, who is in the crowd, ""He has Alzheimer's, and he forgets a lot of things, but you bet your ass…" +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @NHL: 1,124 games +668 goals +571 assists +1,239 points +7 Rocket Richard Trophies + +One #StanleyCup https://t.co/bINP2Jcb05" +06/08/2018,Sports_celeb,@BizNasty2point0,@walsha Sign him. +06/07/2018,Sports_celeb,@BizNasty2point0,"RT @AARM_org: We are so grateful to the @ArizonaCoyotes's @mattycoyotestv for helping us make this IMPORTANT SHELTER ANNOUNCEMENT. + +**SPON…" +06/07/2018,Sports_celeb,@BizNasty2point0,Love it @mattycoyotestv. Great work by everyone involved. https://t.co/kqN0hTKBpN +06/06/2018,Sports_celeb,@BizNasty2point0,@commie22 Hire an intern to do your job. Or most of it. +06/05/2018,Sports_celeb,@BizNasty2point0,@KirkwoodAlly @tstone_44 @ryanwhitney6 @MikeGrinnell_ I mentioned it on the podcast. Wasn’t sure how Vegas did afte… https://t.co/4DJBQyxHpp +06/05/2018,Sports_celeb,@BizNasty2point0,@lukejnickels @tstone_44 @ryanwhitney6 @MikeGrinnell_ Well I will if you send me the receipt. I wouldn’t bet the fa… https://t.co/Oe8zAs4oEq +06/05/2018,Sports_celeb,@BizNasty2point0,@SkylerBusa @ArizonaCoyotes @BachelorABC @ariejr Thanks pal. +06/05/2018,Sports_celeb,@BizNasty2point0,@ahronCo21 @ArizonaCoyotes @BachelorABC You were the cherry on top Ahron. Kind of like Will Ferrell in Wedding Crashers. Bravo. +06/05/2018,Sports_celeb,@BizNasty2point0,@lukejnickels @tstone_44 @ryanwhitney6 @MikeGrinnell_ Put a bunch of money on it and send me the receipt then. +06/05/2018,Sports_celeb,@BizNasty2point0,Episode 90 of @spittinchiclets is out now. Big thanks to @commie22 for coming on. This one gets heated. https://t.co/br29A8BQKL +06/05/2018,Sports_celeb,@BizNasty2point0,@tstone_44 @ryanwhitney6 @MikeGrinnell_ Thanks. Was wondering that. Appreciate the message. +06/04/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: Did you love our recaps of The @BachelorABC this season as much as @ariejr did? 🌹 + +We're nominated for the Top Team Vid…" +06/04/2018,Sports_celeb,@BizNasty2point0,Nice of you to show up for that bike ride @Jackeichel15. https://t.co/wQBIWOObEn +06/04/2018,Sports_celeb,@BizNasty2point0,The 1st annual #NHLFanChoice Awards are here. Don’t be shy to vote for the @ArizonaCoyotes on “Top Team Video” for… https://t.co/X6tGAKX6nA +06/04/2018,Sports_celeb,@BizNasty2point0,"RT @NHL: Introducing the NHL Fan Choice Awards! + +Vote for your favorite social moments of the season in categories like Best Chirper, Best…" +06/04/2018,Sports_celeb,@BizNasty2point0,@LGRed @JulieBrowman1 @tysonbarrie @Altitude950 @JayAndDan Thanks Lauren. Tyson was awesome. Jay and Dan stole the show as usual. +06/04/2018,Sports_celeb,@BizNasty2point0,@MikeGrinnell_ @ryanwhitney6 I would have picked up your appetizer. Just saying. +06/03/2018,Sports_celeb,@BizNasty2point0,RT @hkygivesblood: One of the greats! Shane Doan has been involved and donated blood as Captain for the @ArizonaCoyotes. Follow his lead an… +06/03/2018,Sports_celeb,@BizNasty2point0,@FlyingZee10 @myeagleenergy Pasha doesn’t work for @myeagleenergy. Pasha’s my right hand man and helped make my sil… https://t.co/eIHdsJvOAz +06/03/2018,Sports_celeb,@BizNasty2point0,@HockeyRockBeer Hahahaha +06/03/2018,Sports_celeb,@BizNasty2point0,@BombulieTrib Someone sent me this the other day. The good old days. https://t.co/ISHsVqEgoK +06/03/2018,Sports_celeb,@BizNasty2point0,@kerdy19 @processboy Same boat. I’m softer than baby shit when it comes to the father/daughter stuff. +06/03/2018,Sports_celeb,@BizNasty2point0,@justinteleven You do you bud. I hear ya. +06/03/2018,Sports_celeb,@BizNasty2point0,@justinteleven Haha k +06/03/2018,Sports_celeb,@BizNasty2point0,I never knew that. Thanks for sharing. Like it even more now. https://t.co/cDsnSumi78 +06/03/2018,Sports_celeb,@BizNasty2point0,"RT @SiriusXMNHL: Washington Capitalizes on a 2-on-1! Kuznetsov's 11th of the post-season + +Cue the celebration! #StanleyCup + +https://t.co/H…" +06/03/2018,Sports_celeb,@BizNasty2point0,I’m usually not a big fan of scripted celebrations but the Kuznetsov one is silky. Being that good at hockey would be a blast. +06/03/2018,Sports_celeb,@BizNasty2point0,@simmonssteve High risk high reward. Riverboat gambler. +06/02/2018,Sports_celeb,@BizNasty2point0,RT @seandoconnor: Please help. We were out of town for our 10 year anniversary and our two dogs were taken from our friends house. Girl Yor… +06/01/2018,Sports_celeb,@BizNasty2point0,@Andy_Miele @spittinchiclets @Vincent_LoVerde It was all Vinny. Scumbag move by him. Anytime you’d like to come tra… https://t.co/NnE9mz7F7M +06/01/2018,Sports_celeb,@BizNasty2point0,I was nice enough to invite 2 of my former teammates I won a Calder Cup for a few years ago in Manchester (you’re w… https://t.co/uO9fhKxUdn +06/01/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: New episode is here featuring current Calder Cup finalists and former teammates of @BizNasty2point0.. @Vincent_LoVerd… +06/01/2018,Sports_celeb,@BizNasty2point0,RT @JimmyTraina: Instant replay of JR Smith and LeBron in the closing seconds of regulation. https://t.co/8qYCv7mBQf +06/01/2018,Sports_celeb,@BizNasty2point0,Geno’s got Russian guys dressed as Crosby playing roller hockey for a kids birthday party on his Instagram story. https://t.co/7soJVQmZV3 +06/01/2018,Sports_celeb,@BizNasty2point0,Big @spittinchiclets epi coming tomorrow. Talking game 2 of Stanley Cup finals. We also have 2 of my former teammat… https://t.co/ON7Gm5uvjb +05/31/2018,Sports_celeb,@BizNasty2point0,@jack_johnsrud @Chiggs7 In some cases because of contracts and salary cap issues. In other situations they had more… https://t.co/g2nrdAeIFR +05/31/2018,Sports_celeb,@BizNasty2point0,@NickSThomas313 @spittinchiclets @RearAdBsBlog @ryanwhitney6 No. Fleury won game 1. +05/31/2018,Sports_celeb,@BizNasty2point0,RT @JayAndDan: Former NHLer and host of “BizNasty Does BC” Paul @BizNasty2point0 Bissonnette joins the #JayAndDan Podcast presented by @coo… +05/31/2018,Sports_celeb,@BizNasty2point0,@acroy59 Hahahaha. Was it random? +05/30/2018,Sports_celeb,@BizNasty2point0,Great chatting with @craigsmorgan about jumping into a new career after playing hockey my whole life. https://t.co/4d6yHpBNPe +05/30/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat https://t.co/ESAJME4oZ9 +05/30/2018,Sports_celeb,@BizNasty2point0,@KFCBarstool Doesn’t belong at headquarters. Surprised you even let him in the joint. 7’s max. No man rockets allowed. +05/30/2018,Sports_celeb,@BizNasty2point0,@ShawnMcKenzieSN Hahaha same. I’ve never studied this hard. +05/30/2018,Sports_celeb,@BizNasty2point0,@katecoyne Why. What was the beef? +05/30/2018,Sports_celeb,@BizNasty2point0,@dradziszewski27 Um kind of like how Pusha T just did... he just dropped an album as well. They all kick up dust around album time. +05/30/2018,Sports_celeb,@BizNasty2point0,Has a country artist ever wrote a diss track on another country artist? +05/30/2018,Sports_celeb,@BizNasty2point0,These rap feuds are my guilty pleasure. That Pusha T diss was an absolute punch to the nut sack on Drake. Can’t wait for the reply. +05/29/2018,Sports_celeb,@BizNasty2point0,Great player and teammate. Congrats on an awesome career Radim. #CzechMafia https://t.co/pP2qwp6bxA +05/29/2018,Sports_celeb,@BizNasty2point0,@mikebrandon90 @lukegazdic No it’s up. Should be working. +05/29/2018,Sports_celeb,@BizNasty2point0,Great having @lukegazdic on last night. Subscribe and listen to episode 88 to find out how Luke is better than Mari… https://t.co/lbtIeQh5VT +05/29/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here featuring @lukegazdic & a Game 1 recap. + +Listen—> https://t.co/t0xYV2FGK1 https://t.co/KKYKjywOVg" +05/29/2018,Sports_celeb,@BizNasty2point0,@ArchadiaNJ Bud you protected your account faster than I could blink. You want to be a wrestler? You get a little p… https://t.co/LruNIHjXcz +05/29/2018,Sports_celeb,@BizNasty2point0,@bobbybender3 @biznastydoesbc Glad you enjoyed it man. Appreciate the message. +05/29/2018,Sports_celeb,@BizNasty2point0,@realPOSULLIVAN I figured if I used my actual name no one would notice. Just trying to survive the summer man. I miss the NHL paycheques. +05/28/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Listen to Marc-Andre Fleury aka Jean Girard on the latest episode of Spittin’ Chiclets + +https://t.co/KC0Bq5sslq https:…" +05/28/2018,Sports_celeb,@BizNasty2point0,RT @pitbull: Today we remember those who made the ultimate sacrifice for America #MemorialDay https://t.co/yrnGIdB2St +05/28/2018,Sports_celeb,@BizNasty2point0,@hashcannon666 @spittinchiclets @ryanwhitney6 @MikeGrinnell_ @RearAdBsBlog Thanks bud. Appreciate the message. +05/28/2018,Sports_celeb,@BizNasty2point0,@schaefpuff @WarriorHockey Glad you liked it man. +05/28/2018,Sports_celeb,@BizNasty2point0,@fridge29 Thanks pal. Appreciate it. +05/27/2018,Sports_celeb,@BizNasty2point0,@iowaendo @barstoolsports 😂 +05/27/2018,Sports_celeb,@BizNasty2point0,@Cdn_Crippler @WarriorHockey They’re up. On that website. +05/27/2018,Sports_celeb,@BizNasty2point0,@ander764 @WarriorHockey It’s not for everyone. Thanks for checking it out though. +05/27/2018,Sports_celeb,@BizNasty2point0,@GuineyPete All 5 episodes are out. You can watch them all. +05/27/2018,Sports_celeb,@BizNasty2point0,@svedberg_victor @WarriorHockey Shit. Hope all of your followers don’t see this review. +05/27/2018,Sports_celeb,@BizNasty2point0,@mirtle @WarriorHockey Muskoka. +05/27/2018,Sports_celeb,@BizNasty2point0,@daviesbrettys @WarriorHockey 😬 +05/27/2018,Sports_celeb,@BizNasty2point0,@belvjoe @WarriorHockey They’re trying to restock it. I’ll keep you posted. +05/27/2018,Sports_celeb,@BizNasty2point0,@mirtle @WarriorHockey Shane Doan to the rescue. +05/27/2018,Sports_celeb,@BizNasty2point0,Hey everyone. Not sure if you heard but I did a 5 part doc series sponsored by @WarriorHockey about British Columbi… https://t.co/Y8kjVMD4pm +05/26/2018,Sports_celeb,@BizNasty2point0,@JimmyEdwardsjr1 @GoldenKnights @ryanwhitney6 @spittinchiclets If you’re happy we’re happy. Can’t forget… https://t.co/VQjKsVjrzE +05/26/2018,Sports_celeb,@BizNasty2point0,Uhhh. Ya think. https://t.co/dPTGLpgEDr +05/26/2018,Sports_celeb,@BizNasty2point0,If you eat a bag of popcorn 1 kernel at a time till it’s finished you are a psychopath. +05/26/2018,Sports_celeb,@BizNasty2point0,@MitchBerg47 Thanks pal. 👊🏻 +05/26/2018,Sports_celeb,@BizNasty2point0,@Rsloan33 4 iron. Needed slight loft and club length. +05/25/2018,Sports_celeb,@BizNasty2point0,@Skillsy75 Care to discuss it on @spittinchiclets? +05/25/2018,Sports_celeb,@BizNasty2point0,@pressXtocelly22 @LaMichaelMango @myeagleenergy Thanks fella +05/25/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here with a loaded lineup to take you into the weekend. + +GUESTS🎙🎙: + +-Marc-Andre Fleury + +-Michael Latta…" +05/25/2018,Sports_celeb,@BizNasty2point0,@phyllisdiller69 @LaMichaelMango @myeagleenergy Bud you’ve been living under a rock if you don’t know promo code BI… https://t.co/LiOyepiw2g +05/25/2018,Sports_celeb,@BizNasty2point0,@NBowinsHockey @spittinchiclets @Latta17 @Cmeys18 Throws both ways. Loves his beers. All around great guy. +05/25/2018,Sports_celeb,@BizNasty2point0,@LaMichaelMango @myeagleenergy A little promo code never hurt anyone. +05/25/2018,Sports_celeb,@BizNasty2point0,@DrewGebs @ClaytonKeller37 @ArizonaCoyotes @Johnwaynee90 If I’m around for sure +05/25/2018,Sports_celeb,@BizNasty2point0,@rorymarshall29 Thanks Rory. Couldn’t have done it without @myeagleenergy. +05/25/2018,Sports_celeb,@BizNasty2point0,@ajboyer24 @Pappy_Hour @spittinchiclets If you’re happy I’m happy. +05/25/2018,Sports_celeb,@BizNasty2point0,@Pappy_Hour @spittinchiclets @Cmeys18’s put the cherry on top. @RearAdBsBlog @MikeGrinnell_ @ryanwhitney6 and mysel… https://t.co/LASJFl14jx +05/25/2018,Sports_celeb,@BizNasty2point0,This will never get old. https://t.co/LzlkkKgM9P +05/25/2018,Sports_celeb,@BizNasty2point0,@IamGEMington Thanks for the support. +05/25/2018,Sports_celeb,@BizNasty2point0,@BOvi_Chris @MikeGrinnell_ Definitely @RearAdBsBlog. +05/25/2018,Sports_celeb,@BizNasty2point0,@DavefromNC1982 @spittinchiclets My bad man. +05/25/2018,Sports_celeb,@BizNasty2point0,@alfy021 @spittinchiclets 😔 +05/25/2018,Sports_celeb,@BizNasty2point0,@JesseMcClain13 @spittinchiclets Hahahaha that was my best one. +05/25/2018,Sports_celeb,@BizNasty2point0,@bryantwing @myeagleenergy 🙌🏼 +05/25/2018,Sports_celeb,@BizNasty2point0,@ryerk17 @myeagleenergy 💅🏼 +05/25/2018,Sports_celeb,@BizNasty2point0,What a fun episode of @spittinchiclets to kick off the Stanley Cup finals. Although I wanted Bark-André Furry on we… https://t.co/WGrCTHp2Bh +05/24/2018,Sports_celeb,@BizNasty2point0,Is that good? https://t.co/yczXDwNVO2 +05/24/2018,Sports_celeb,@BizNasty2point0,@ShawnHunterShow @ryanwhitney6 @spittinchiclets @RearAdBsBlog Even better +05/24/2018,Sports_celeb,@BizNasty2point0,@RandyOdgers @spittinchiclets @EagleEnergy https://t.co/3nL4NUGf3K +05/24/2018,Sports_celeb,@BizNasty2point0,@jaymcarth @spittinchiclets Damn straight it is. +05/24/2018,Sports_celeb,@BizNasty2point0,@kyle_zedaker @ryanwhitney6 @spittinchiclets @RearAdBsBlog @MikeGrinnell_ Or you can wait till tomorrow when we dro… https://t.co/kodhyMcrdu +05/24/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @Capitals on winning the Eastern conference and advancing to the Stanley Cup final. +05/24/2018,Sports_celeb,@BizNasty2point0,@MattORourke @spittinchiclets There is one. +05/24/2018,Sports_celeb,@BizNasty2point0,@TonyDaMimbo @BarstoolBigCat @PFTCommenter Boys being boys. Love it. +05/24/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter @ryanwhitney6 That’s @BarstoolBigCat’s screen saver. Tell him if he wants an autograph I can get him… https://t.co/Inf26wKoDd +05/24/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter @ryanwhitney6 Me and my girlfriend just broke up you asshole. More like Insensitive Commenter. Amirit… https://t.co/pYkFKMEAyu +05/24/2018,Sports_celeb,@BizNasty2point0,@_MsAnaDee @spittinchiclets @RearAdBsBlog @ryanwhitney6 @barstoolsports Love it. We’re gonna launch something in Au… https://t.co/egrhOaHJC6 +05/24/2018,Sports_celeb,@BizNasty2point0,@Cmeys18 Can we get you on @spittinchiclets tomorrow? +05/23/2018,Sports_celeb,@BizNasty2point0,@justinkelly13 Listen to @spittinchiclets a few episodes back. We talk all about it. +05/23/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter Put it behind you PFT. Today’s a new day and potentially the continuation of #CapsYear +05/23/2018,Sports_celeb,@BizNasty2point0,@justinkelly13 @Sportsnet650 @DanRiccio650 No they did. We talked about it. I like chatting hockey too. I had a blast. +05/23/2018,Sports_celeb,@BizNasty2point0,@TankTopTom69 @myeagleenergy @spittinchiclets 😂 good tweet. +05/23/2018,Sports_celeb,@BizNasty2point0,@gjmann77 Little May Two Four package for the kid eh? @myeagleenergy +05/23/2018,Sports_celeb,@BizNasty2point0,@RealLocke Thanks pal. Ya we’re gonna start plotting the next one soon. +05/23/2018,Sports_celeb,@BizNasty2point0,@catpyyc @ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog @myeagleenergy @commie22 Oh ya. A few times. 😮 +05/23/2018,Sports_celeb,@BizNasty2point0,@ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog @myeagleenergy Yep. And you get entered in a contest to… https://t.co/yOAOQSD4kZ +05/22/2018,Sports_celeb,@BizNasty2point0,@ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog I was buzzing on my @myeagleenergy read last night. Str… https://t.co/ZKD3xP1wNp +05/22/2018,Sports_celeb,@BizNasty2point0,@EricMoser @ryanadams_23 @spittinchiclets @barstoolsports Sorry buds. Thanks for the support. Tough to message ever… https://t.co/6Wy0VIBUWh +05/22/2018,Sports_celeb,@BizNasty2point0,@ryanadams_23 @spittinchiclets @barstoolsports Thanks pal. Much appreciated. +05/22/2018,Sports_celeb,@BizNasty2point0,RT @BizNasty2point0: New episode of @spittinchiclets. We talk about people having poopy pants over Vegas’ run and also the fact that the Ca… +05/22/2018,Sports_celeb,@BizNasty2point0,@Rypatanto @spittinchiclets Love? Their playing like dogs. I like their team but haven’t played well this round. Th… https://t.co/Ye7qoFJ3oG +05/22/2018,Sports_celeb,@BizNasty2point0,@Kcamps4 Hope you enjoy. +05/22/2018,Sports_celeb,@BizNasty2point0,@joe_pieniazek Thanks Joseph. I went about it with that kill or be killed mindset. +05/22/2018,Sports_celeb,@BizNasty2point0,@KMFB0578 @spittinchiclets Thanks Ken. Glad we can help. +05/22/2018,Sports_celeb,@BizNasty2point0,New episode of @spittinchiclets. We talk about people having poopy pants over Vegas’ run and also the fact that the… https://t.co/FKFQadoW29 +05/22/2018,Sports_celeb,@BizNasty2point0,@tsnotoole Remember the time you did me a favour and then I snubbed you on your podcast? 😬 +05/22/2018,Sports_celeb,@BizNasty2point0,@PeteBlackburn Hahahaha +05/21/2018,Sports_celeb,@BizNasty2point0,@TweetsByDM They’re tasty. I love em. +05/21/2018,Sports_celeb,@BizNasty2point0,@27arruda @biznastydoesbc Thanks pal +05/21/2018,Sports_celeb,@BizNasty2point0,That beat down was brought to you by @WarriorHockey and @newbalance. https://t.co/ERk7YCvBIr +05/21/2018,Sports_celeb,@BizNasty2point0,RT @PersianRose1: Branch manager and assistant branch manager https://t.co/BlbwKqidAF +05/21/2018,Sports_celeb,@BizNasty2point0,@DiscoKingULL @barstoolsports Haha thanks pal. +05/20/2018,Sports_celeb,@BizNasty2point0,@w1therspoon @notwest_ @ArizonaCoyotes @OEL23 You’re a peasant is what you are. +05/20/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @GoldenKnights on winning the Western Conference and advancing to the Stanley Cup final. +05/20/2018,Sports_celeb,@BizNasty2point0,The internet can be exhausting sometimes. https://t.co/yAsBSSlxVW +05/20/2018,Sports_celeb,@BizNasty2point0,Congratulations to @ArizonaCoyotes defenceman @OEL23 on his gold medal at the mens world ice hockey championships with team Sweden. +05/19/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat When’s Grits Week? +05/19/2018,Sports_celeb,@BizNasty2point0,@hen_ease @JManziel2 @barstoolsports @PardonMyTake @spittinchiclets @MikeGrinnell_ @ryanwhitney6 @KayceSmith Oh and… https://t.co/xrEZpvjcnK +05/19/2018,Sports_celeb,@BizNasty2point0,@hen_ease @JManziel2 @barstoolsports @PardonMyTake @spittinchiclets @MikeGrinnell_ @ryanwhitney6 @KayceSmith Boys are buzzin. +05/19/2018,Sports_celeb,@BizNasty2point0,@KristenKeogh We grew up so fast. +05/18/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat @SportsOnlyNoBS Not so fun when people bully you now is it BigCat? +05/18/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat @barstoolsports @biznastydoesbc Gonna miss you Dan. +05/18/2018,Sports_celeb,@BizNasty2point0,Also a huge thank you to our sponsors that made this possible. This project was made because of trust from… https://t.co/fMkeMngNzB +05/18/2018,Sports_celeb,@BizNasty2point0,Just wanted to thank everyone at @barstoolsports for an awesome week in NYC for the launch of @biznastydoesbc. Hope… https://t.co/Xig2iIdybv +11/16/2015,Sports_celeb,@gracie_kron,"RT @mmaquote: Even when defeat surprises you, in reality, it's just another step. +—@RenzoGracieBJJ +http://t.co/ri37tHq6SY http://t.co/kUV…" +11/16/2015,Sports_celeb,@gracie_kron,"RT @NateDiaz209: I'll fight both of them +TODAY!!! https://t.co/SCuvZRlVJ8" +08/11/2015,Sports_celeb,@gracie_kron,http://t.co/lwBj0LbfMC +08/08/2015,Sports_celeb,@gracie_kron,RT @RenzoGracieBJJ: Enough said 😜😜😜😜 http://t.co/1IgCQbEG4q +08/04/2015,Sports_celeb,@gracie_kron,"RT @marc_raimondi: WSOF strips Rousimar Palhares of title, suspends him indefinitely http://t.co/faUtShKasX" +08/03/2015,Sports_celeb,@gracie_kron,RT @NateDiaz209: @nickdiaz209 riokid @ifightordie #riders https://t.co/hLw9R31OZA +07/30/2015,Sports_celeb,@gracie_kron,RT @NateDiaz209: #riders #stockton #theteam #danblack 💪👊 https://t.co/32wFQ6oBbB http://t.co/GJwqTCtx7V +07/02/2018,Sports_celeb,@GarbiMuguruza,"Let's do this! +Vamos a allá! + +#evianRoommates #LiveYoung #Wimbledon https://t.co/B13h6JTJQy" +07/01/2018,Sports_celeb,@GarbiMuguruza,"¡Gracias @Mujerhoy por esta segunda portada! + +📸 🗞️: ""O ganas o no importas nada"" - https://t.co/SA7koGZ6XB https://t.co/dWHm3krp6R" +06/30/2018,Sports_celeb,@GarbiMuguruza,"Almost ready for Wimbledon... +Casi preparada para Wimbledon... +#evianRoommates #LiveYoung #Wimbledon https://t.co/CftjsGFoSM" +06/30/2018,Sports_celeb,@GarbiMuguruza,"RT @caser: Y seguimos entrenandooooo!! + +Hoy @GarbiMuguruza de blanco completo como marcan las reglas del All England Club. + +#GarbiñeyCaser…" +06/30/2018,Sports_celeb,@GarbiMuguruza,You have to be strong and keep fighting for what you want. Play without fear and just give it all… when you do that… https://t.co/u5pRPyKypW +06/29/2018,Sports_celeb,@GarbiMuguruza,Just stopped by the adidas house to pick-up my Palace x adidas gear. So excited to wear it on court on Tuesday ! 🎾🌿… https://t.co/hpFdw0wZ7U +06/29/2018,Sports_celeb,@GarbiMuguruza,"#007 by @HUGOBOSS + +#TennisOnTheThames + +@Wimbledon @WTA https://t.co/dAk3xr1o4b" +06/25/2018,Sports_celeb,@GarbiMuguruza,Desde @Wimbledon mandándo fuerza a los chicos! Sending strength from Wimbledon! @SeFutbol #WorldCup 🌱🌱 https://t.co/fkM65r77Su +06/25/2018,Sports_celeb,@GarbiMuguruza,"It was all a dream! Todo fue un sueño! 😀 + +@PALACELONDON @adidasoriginals @adidastennis https://t.co/ajmqvKvQ4I" +06/24/2018,Sports_celeb,@GarbiMuguruza,"@MuseeLouvre in Paris ✔️ + +@NHM_London 🦖✔️ + +#GirlsEducation 💪 https://t.co/FZNUOUMreZ" +06/21/2018,Sports_celeb,@GarbiMuguruza,"RT @johnwoodRTR: Winning #Wimbledon? + +Impressive! + +Hitting fund-raising goal for new @RoomtoRead library in #Cambodia? + +Priceless! + +Congr…" +06/20/2018,Sports_celeb,@GarbiMuguruza,@RevistaRITMO @anneigartiburu_ @herascasado Me encantan los pendientes! +06/19/2018,Sports_celeb,@GarbiMuguruza,"Wanna join? + +😇 📚 👧 ➡️ https://t.co/yJplNysH90 + +@RoomtoRead #Cambodia 💪 https://t.co/ZVXvC9Yi67" +06/19/2018,Sports_celeb,@GarbiMuguruza,"¿Te apuntas? + +😇 📚 👧 ➡️ https://t.co/yJplNysH90 + +@RoomtoRead #Cambodia 💪 https://t.co/DQJO0LO2ig" +06/15/2018,Sports_celeb,@GarbiMuguruza,"Yo ya estoy lista!!!!!! 💪💪 +I am ready!!!!! 👌👌 + +#VamosEspaña 🇪🇸 #WorldCup https://t.co/pmeZNVulgM" +06/10/2018,Sports_celeb,@GarbiMuguruza,"Que grande eres @RafaelNadal!!! + +#NOL1M1TS 🇪🇸 #ElMejorEjemplo https://t.co/1BPLgHN1Yl" +06/08/2018,Sports_celeb,@GarbiMuguruza,Vierness buen humorrr!! Friday felling!!! Walk it like I talk it!! 💥💥 https://t.co/lBCzzemJ3w +06/08/2018,Sports_celeb,@GarbiMuguruza,"Merci Paris! Merci @rolandgarros! +Thanks @FSParis for making me feel like home. +Nos vemos el año que viene! 😍 https://t.co/GEWuMqdR25" +06/06/2018,Sports_celeb,@GarbiMuguruza,Happy to be back in semis @rolandgarros. It was a good match today! Looking forward tomorrow's match against Halep.… https://t.co/D5xFXaRe7j +06/05/2018,Sports_celeb,@GarbiMuguruza,"Healthy breakfast @FSParis for a ☔️ day in Paris! 😉😍 + +Desayuno sano en el @FSParis para un dia ☔️ en París! 😉😍… https://t.co/SbsDdScwJ4" +06/04/2018,Sports_celeb,@GarbiMuguruza,1/4 #rg18 https://t.co/QdCHMxaFrO +06/03/2018,Sports_celeb,@GarbiMuguruza,"We live for this. +#PlayToBeWild @babolat @rolandgarros https://t.co/Lw1pp7UMSJ" +06/02/2018,Sports_celeb,@GarbiMuguruza,"J'adore ce court et ce public! +Me encanta esta pista y este público! +Love this court and this crowd! +#SecondWeek… https://t.co/2H3iRs5NZ5" +06/01/2018,Sports_celeb,@GarbiMuguruza,"Mañana otra oportunidad. + +Tomorrow another chance. + +11am vs Stosur @ Chatrier #rg18 https://t.co/6GpHhfl6qM" +05/31/2018,Sports_celeb,@GarbiMuguruza,¿Sabías que los estudiantes de 2º grado de las escuelas con el apoyo de @RoomtoRead en #Cambodia leen 2 veces más r… https://t.co/GK2ezDJWNG +05/31/2018,Sports_celeb,@GarbiMuguruza,Did you know grade 2 students in schools supported by @RoomtoRead in #Cambodia read more than 2x as fast as other s… https://t.co/NMHivVYBWQ +05/31/2018,Sports_celeb,@GarbiMuguruza,"👁 🎾 + #Focus #RG18 https://t.co/76KGwB6rUD" +05/30/2018,Sports_celeb,@GarbiMuguruza,"¡Sed de tenis! +Thirst for tennis! +#RG18 🎾😋 https://t.co/O20stELctX" +05/29/2018,Sports_celeb,@GarbiMuguruza,"Special treat after my first match win today! Hand made icream cones! 😍 + +Un pequeño premio por mi primera victoria!… https://t.co/uJKbYOyqDq" +05/28/2018,Sports_celeb,@GarbiMuguruza,"Yesterday @MuseeLouvre + +#Art #Conocimiento https://t.co/upoqBESltE" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Afternoon read... + +@lequipe @WTA @rolandgarros https://t.co/OYDwNPUlTk" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Boom! ☄️ + +#Slowmo #RG2018 https://t.co/wx3m6QeNSO" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Bon jour! ☀️🇫🇷 + +#RG18 @rolandgarros https://t.co/XlnALeHHtp" +05/25/2018,Sports_celeb,@GarbiMuguruza,"@rolandgarros = 🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾 + +#RG18 @WTA https://t.co/hBBYczNtwx" +05/24/2018,Sports_celeb,@GarbiMuguruza,"Se sentir déjà comme chez soi! À demain Paris!! 🇫🇷😘 + +Sintiéndome como en casa!Hasta mañana a todos! 😘 + +Feeling alre… https://t.co/ABgNEcYnsK" +05/24/2018,Sports_celeb,@GarbiMuguruza,"👩‍🏭🔨 🎾 + +#RG18 @rolandgarros @WTA https://t.co/sJY7q5DTOM" +05/24/2018,Sports_celeb,@GarbiMuguruza,"Y esto es lo que te pasa cuando bebes @evianwater Me encanta mi baby yo!! 😘👶 + +And this is what happens when your dr… https://t.co/ELWRVX9d8I" +05/23/2018,Sports_celeb,@GarbiMuguruza,Roland Garros y esta pista tan especial! Roland Garros and this special court! #PhilippeChatrier 🇫🇷 ❤️ https://t.co/y0nihwpWmT +05/23/2018,Sports_celeb,@GarbiMuguruza,"Muy contenta de unirme a @evianwater +So excited to join @evianwater 😋😀😍 + +#evian #Liveyoung https://t.co/HELr2rd1Z3" +05/22/2018,Sports_celeb,@GarbiMuguruza,👋👋👋 https://t.co/whG6oFPRqw +05/22/2018,Sports_celeb,@GarbiMuguruza,"Entrena con la misma intensidad con la que piensas jugar 🔥🔥🔥 + +Train the way you intend to play 🔥🔥🔥 + +#HereToCreate… https://t.co/VB8l0Mbcbi" +05/18/2018,Sports_celeb,@GarbiMuguruza,"Últimas horas para disfrutar de Italia antes de entrar en #ModoRolandGarros + +Last hours to enjoy Italy before geeti… https://t.co/BzpwtV4tne" +05/13/2018,Sports_celeb,@GarbiMuguruza,"Kids Day!! 😘🎾👼 + +@WTA @InteBNLdItalia https://t.co/bEQxEnHKnK" +05/12/2018,Sports_celeb,@GarbiMuguruza,"Prima practica a Roma 🇮🇹 + +Ya estamos entrenando en Roma 😃 + +First practice in Roma ☀️ + +@WTA https://t.co/pbugfxIJut" +05/11/2018,Sports_celeb,@GarbiMuguruza,Ciao Roma!! 🇮🇹 https://t.co/MJ2whF55GK +05/09/2018,Sports_celeb,@GarbiMuguruza,"Buenas noches Madrid, mañana más! + +Good night Madrid, more to come tomorrow! + +@WTA https://t.co/NvyPjrBFVi" +05/06/2018,Sports_celeb,@GarbiMuguruza,"Domingo en Madrid 🇪🇸 + +Sunday in Madrid 🇪🇸 https://t.co/Y2Np6cGthK" +05/05/2018,Sports_celeb,@GarbiMuguruza,Dame Motas dame Motas... 🤪 https://t.co/lzS2ckUkP5 +05/05/2018,Sports_celeb,@GarbiMuguruza,@JoseMotatv Dame Motas dame Motas... 🤪 +05/04/2018,Sports_celeb,@GarbiMuguruza,"@OfficialMauiJim family!! + +☀️😎😘 https://t.co/eLBoBmRRuZ" +05/04/2018,Sports_celeb,@GarbiMuguruza,¡¡¡A seguir trabajando duro chicas!!! 💪💪💪 https://t.co/rj08h4LSmA +05/03/2018,Sports_celeb,@GarbiMuguruza,"Heroínas del Deporte, un libro para todas. Reconocimiento a todas las mujeres deportistas de antes y de ahora, por… https://t.co/aQv4irGX3q" +05/03/2018,Sports_celeb,@GarbiMuguruza,"Menuda paliza me has dado, menos mal que nadie lo va a ver @manucarreno 🤭 @DeportesCuatro @caser https://t.co/lfGxXswzQQ" +05/02/2018,Sports_celeb,@GarbiMuguruza,¿Sabías que en #Camboya casi el 50% de las chicas son trabajadoras en lugar de estudiantes? Trabajo con @RoomtoRead… https://t.co/rqNsNcvObG +05/02/2018,Sports_celeb,@GarbiMuguruza,Did you know in #Cambodia nearly 50% of girls are laborers instead of students? I'm teaming up with @RoomtoRead to… https://t.co/O3QXAOievj +04/30/2018,Sports_celeb,@GarbiMuguruza,"""I’m a tennis player, and that’s my priority. I like fashion but I would never want to be a model. I don’t want to… https://t.co/3erRz6PJ8E" +04/29/2018,Sports_celeb,@GarbiMuguruza,"Y se acabó... Domingo! + +It's a rap...Sunday! + +@VogueSpain https://t.co/W6vmUBFNcd" +04/29/2018,Sports_celeb,@GarbiMuguruza,"Hoy toca blanco.. + +Today is all white + +@VogueSpain https://t.co/61nqHF607l" +04/28/2018,Sports_celeb,@GarbiMuguruza,"Pink! +@VogueSpain https://t.co/47kGyr5bM1" +04/27/2018,Sports_celeb,@GarbiMuguruza,"RT @VogueSpain: De sueños que se heredan DE MADRES A HIJAS. Es jueves, también en los #7días7Looks de @GarbiMuguruza. +https://t.co/v6Fty1It…" +04/25/2018,Sports_celeb,@GarbiMuguruza,"Miércoles... +Wednesday +#MyFashionWeek @VogueSpain @WTA https://t.co/RLwC4YW0C1" +04/25/2018,Sports_celeb,@GarbiMuguruza,"👋🏼 #Stuttgart + +@WTA https://t.co/GYJVdpbU6v" +04/24/2018,Sports_celeb,@GarbiMuguruza,"Martes.... +Tuesday... +@VogueSpain https://t.co/ziUntStcFN" +04/22/2018,Sports_celeb,@GarbiMuguruza,"RT @caser: .@GarbiMuguruza fue clave en la victoria del equipo español de la #FedCup. +Sin duda la mejor líder que puede tener el tenis espa…" +04/22/2018,Sports_celeb,@GarbiMuguruza,Gracias a todos los que vinisteis a apoyarnos y a los que nos seguís en la distancia. Se acaba la Fed Cup y sin tie… https://t.co/pLQBk2FMBU +04/22/2018,Sports_celeb,@GarbiMuguruza,Victoria! Vamooossss!!!! Grande chicas y grande equipo!!! ❤️❤️❤️❤️❤️🔥 https://t.co/hB0Y7YqBnT +04/22/2018,Sports_celeb,@GarbiMuguruza,RT @FedCup_es: #ESPPAR ¡Victoria de España! @GarbiMuguruza finalmente venció 76 60 a Cepede Royg y las locales se aseguraron un puesto en e… +04/22/2018,Sports_celeb,@GarbiMuguruza,@chang_ariana Hola! Where is this?? +04/21/2018,Sports_celeb,@GarbiMuguruza,"Hacía un poco de viento hoy.... 🌪 + +It was a little windy today... 🌪 + +#ESPPAR 2-0 Vamos! 🇪🇸 👊 + +📸 @FedCup https://t.co/0OKsD04cVQ" +04/20/2018,Sports_celeb,@GarbiMuguruza,"¡De camino al fin de semana de @FedCup_es con las chicas! + +Heading to the @FedCup weekend with the girls like 👠… https://t.co/tRSqzGoJb0" +04/19/2018,Sports_celeb,@GarbiMuguruza,@HERFDEZ76 🙈 +04/19/2018,Sports_celeb,@GarbiMuguruza,@biologosan 🙈 +04/19/2018,Sports_celeb,@GarbiMuguruza,Conocí a la maravillosa Paula y a la mejor fan almoada! Met the wonderful Paula and the best fan pillow! 💕 #FedCup… https://t.co/K2FZCpqXSv +04/19/2018,Sports_celeb,@GarbiMuguruza,"Stella style for the courts of Paris + +Estilo Stella para las pistas de París. + +@adidastennis by @StellaMcCartney f… https://t.co/UjjH6dopC1" +04/18/2018,Sports_celeb,@GarbiMuguruza,"A pleasure to have attended the state dinner offered by Their Majesties the Kings to the President of Portugal, Mar… https://t.co/9iRpUxugrh" +04/18/2018,Sports_celeb,@GarbiMuguruza,"Un placer haber asistido a la cena de estado ofrecida por Sus Majestades los Reyes al Presidente de Portugal, Marce… https://t.co/Xw9Nkt1epk" +04/18/2018,Sports_celeb,@GarbiMuguruza,Me senté con @BBCSport para hablar sobre la alfabetización y por qué me he asociado con @RoomtoRead. Mi objetivo es… https://t.co/FfuCqjitAh +04/18/2018,Sports_celeb,@GarbiMuguruza,I sat down with @BBCSport to share why literacy & #girlsed are so important to me & why I've teamed up with… https://t.co/CXeYp0pNS3 +04/18/2018,Sports_celeb,@GarbiMuguruza,@Paulaperezcam16 Un placer Paula!! Gracias por venir a vernos! +04/15/2018,Sports_celeb,@GarbiMuguruza,Sunday brunch! 🥐🥓🍳🍩☕️🍓🌿🌿🌿 https://t.co/oJQuEjwj9T +04/15/2018,Sports_celeb,@GarbiMuguruza,@AndujarPablo que bien!!!!! merecido trofeo!! 🏆🏆 +04/14/2018,Sports_celeb,@GarbiMuguruza,Sábado día de entreno y de vuelta a la tierra roja! Saturday training day and back to clay court! ❤️🐞☄️🔥 https://t.co/iqLRmKgjjl +04/13/2018,Sports_celeb,@GarbiMuguruza,"¡Llega la temporada de tierra! + +Clay court season is here!! + +Fed Cup 🇪🇸 + Stuttgart + Madrid + Roma + Paris + +@WTA… https://t.co/JXbfwaWoQh" +04/10/2018,Sports_celeb,@GarbiMuguruza,Esperando al atardecer! Waiting for the sunset! 🌅🕶💛☕️🇨🇭 #jetlag #pijamas #bestview https://t.co/Fn4th1bBNc +04/09/2018,Sports_celeb,@GarbiMuguruza,La mejor sensación! The best feeling! 🏆🏆🏆🌶🌶🌶 #Mexico https://t.co/gAysrpkKGJ +04/09/2018,Sports_celeb,@GarbiMuguruza,"Muy feliz por la victoria, ha sido una semana dura pero con recompensa. + +Muchas gracias a todos por el apoyo... os… https://t.co/oBxaNRLQSu" +04/09/2018,Sports_celeb,@GarbiMuguruza,Muchas felicidades @DavidFerrer87 y a todo el equipo!!! Gran victoria!!! https://t.co/hUhkaCxBqy +04/09/2018,Sports_celeb,@GarbiMuguruza,"😀 .....🏆!!! + + I❤️ 🇲🇽 https://t.co/2IUoxztn7X" +04/07/2018,Sports_celeb,@GarbiMuguruza,"'ESE' sentimiento de estar en una final de nuevo. Vamos!! + +'THE' feeling of being in a final again. Vamos!! + +@WTA… https://t.co/5u4qtzJ5E6" +04/07/2018,Sports_celeb,@GarbiMuguruza,"Findeee!!! 😀....seguimos!!! + +Weekend baby!!! + +@WTA @Abierto_GNP https://t.co/gncn32LP1C" +04/06/2018,Sports_celeb,@GarbiMuguruza,"Un paso más!! Cuartos!! + +One step forward!! Quarters!! + +@WTA @Abierto_GNP https://t.co/kUbJ3Eu7XG" +04/04/2018,Sports_celeb,@GarbiMuguruza,"RT @Abierto_GNP: #RunGirlRun @GarbiMuguruza 🙌🙌🙌 +. +. +. +@wta #AbiertoGNPSeguros #EstadioGNP #Viviresincreíble @TurismoNL #Monterrey https://t…" +04/04/2018,Sports_celeb,@GarbiMuguruza,¡Órale...vamos! https://t.co/pe96iiVBH8 +04/01/2018,Sports_celeb,@GarbiMuguruza,"Entreno tempranero! 🎾 + +Sunday early practice! 🎾 + +@WTA @Abierto_GNP https://t.co/gh3Dy6wCUT" +03/31/2018,Sports_celeb,@GarbiMuguruza,"Fuerza a todas las mujeres de Monterrey.... y 🌎! + +#womenpower https://t.co/uJh0DWCfb4" +03/30/2018,Sports_celeb,@GarbiMuguruza,"@DidiDieva @Migos @gucci1017 Bueno bueno Migos, Gucci, Kendrick... también" +03/29/2018,Sports_celeb,@GarbiMuguruza,"🎾🎾🎾🎾🎾🎾🎾...... + +@WTA @Abierto_GNP https://t.co/noEJGjQJgM" +03/29/2018,Sports_celeb,@GarbiMuguruza,"Empapándome de #Monterrey!! + +Soacking me with Monterrey + +@WTA @Abierto_GNP https://t.co/m4xrdIQlWn" +03/28/2018,Sports_celeb,@GarbiMuguruza,"Hola 🇲🇽!!! +Visita en helicóptero de Monterrey +#PrimeraVez🚁 + +Hi 🇲🇽!! +Air tour over Monterrey +#1stTime🚁 + +@WTA… https://t.co/XeBY1ytgTO" +03/25/2018,Sports_celeb,@GarbiMuguruza,"💥.... Mi domingo en Cayo Vizcaíno! +Como va el vuestro? + +💥.... Sunday at Key Bicayne! +How is your day going? + +@WTA… https://t.co/dMp65tp6I4" +03/25/2018,Sports_celeb,@GarbiMuguruza,"Buenas noche Miami. + +Good night Miami + +(4th round) @MiamiOpen @WTA https://t.co/NkrDKSfREN" +03/25/2018,Sports_celeb,@GarbiMuguruza,"I am #MSDStrong +Great to meet you all. Thanks for coming out. + +@WTA @MiamiOpen https://t.co/JBZWrcrAlM" +03/23/2018,Sports_celeb,@GarbiMuguruza,"Sólo en Miami! #Manatí + +Only in Miami! #FloridaManatee 🐄🐠 + +☀️ @MiamiOpen @WTA https://t.co/4OBiiYnrV6" +03/22/2018,Sports_celeb,@GarbiMuguruza,"¡Me lo pasé en grande ayer en la fiesta del hotel @JWMM_Miami ! + +Great fun at @JWMM_Miami Hotel party last night!!… https://t.co/fkXKWiR78B" +03/21/2018,Sports_celeb,@GarbiMuguruza,"Nunca es fácil lidiar con una lesión. Le deseo a @AnisimovaAmanda una pronta recuperación. + +Never easy to deal with… https://t.co/CRq82L6m9y" +03/21/2018,Sports_celeb,@GarbiMuguruza,@CincyTennis 😱😱😱 this is not what I remember +03/20/2018,Sports_celeb,@GarbiMuguruza,RT @UnivisionSports: @GarbiMuguruza @WTA @MiamiOpen No te pierdas este jueves en @UDContacto a las 12AM ET una divertida entrevista con la… +03/20/2018,Sports_celeb,@GarbiMuguruza,"Cuando vengo a Miami y me vengo y como Cocosete, pirulín, tequeño, cachito, Malta, 🧀guayanés, tajada!!! 🤤🤤✌🏻✌🏻" +03/20/2018,Sports_celeb,@GarbiMuguruza,"🎾 & ☀️ + +@WTA @MiamiOpen https://t.co/Cgx1aMvv5s" +03/20/2018,Sports_celeb,@GarbiMuguruza,"Pronto en @UnivisionSports ..... + +Soon in @UnivisionSports ..... + +@WTA @MiamiOpen https://t.co/9DZny2pXOd" +03/19/2018,Sports_celeb,@GarbiMuguruza,Me encanta esta portada! Loving this cover 💚💛 @GlamourSpain https://t.co/BYdyt9efpm +03/19/2018,Sports_celeb,@GarbiMuguruza,"Hola @MiamiOpen!!! ... donde siempre me siento como en casa!! 😘 + +Hi @MiamiOpen!! ... where I always feel at home! 😍… https://t.co/KaijVT88FD" +03/19/2018,Sports_celeb,@GarbiMuguruza,"@AnaIvanovic @BSchweinsteiger Congratulations, @AnaIvanovic & @BSchweinsteiger! 💙 😀👏👏👏" +03/17/2018,Sports_celeb,@GarbiMuguruza,"Ultimo día de entrenamiento en la @IMGAcademy antes de partir hacia @MiamiOpen + +Last day of practice at… https://t.co/IqVPpknSPm" +03/14/2018,Sports_celeb,@GarbiMuguruza,Met an amazing lady today @garbaeslays ✌🏻#bestfan #teamugu https://t.co/jlq3I7NWzM +03/14/2018,Sports_celeb,@GarbiMuguruza,@garbaeslays Looks like someone is in IMG too +03/09/2018,Sports_celeb,@GarbiMuguruza,"💪 😉 + +@BNPPARIBASOPEN @WTA https://t.co/nNnHmUGqcs" +03/07/2018,Sports_celeb,@GarbiMuguruza,"🎾.... volea! + +@BNPPARIBASOPEN @WTA https://t.co/EkyxdeJIvg" +03/06/2018,Sports_celeb,@GarbiMuguruza,"Hello @BNPPARIBASOPEN!!! + +1st 🎾 practice + +😃😎☀️ + +@WTA https://t.co/cy7nqtPujE" +03/05/2018,Sports_celeb,@GarbiMuguruza,Oscars Vanity Fair 🖤🖤 https://t.co/bxFYLHuReR +03/05/2018,Sports_celeb,@GarbiMuguruza,"What a night!! + +#Oscars + +@rolex +@Hannibal_Laguna +Lorraine Schwartz https://t.co/ygwSZYxzn4" +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @Lindonk: @Wimbledon champ meets @Lakers star.....uhhh....mean @Oscars_2018live winner @kobebryant #DamnItsHeavy https://t.co/kuC7GOM2eJ +03/05/2018,Sports_celeb,@GarbiMuguruza,"Look who I ran in to!! ⛹🏾 + +@kobebryant #Oscars https://t.co/pzElBsAf3c" +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @VanityFairSpain: Segunda española de la noche: flamante @GarbiMuguruza. #Oscars https://t.co/YNzGw0T8g5 +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @holavzla: #AlfombraRoja La tenista venezolana @GarbiMuguruza dijo presente en los #Oscars https://t.co/IGx8LMMXkk +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @GlamourSpain: ¡Otra española que lo peta en la alfombra roja de los #Oscars! ¡Guapísima, Garbiñe! https://t.co/245FJgsjka" +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @VogueSpain: Si querías saber cómo iba a ser el @Hannibal_Laguna de Garbiñe Muguruza en los #Oscars, estas son las fotos que tienes que…" +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @elle_es: La tenista ha elegido un vestido de diseñador español, ¿adivinas cuál es? https://t.co/dJw6YiJFBZ #garbiñemuguruza #oscars" +03/04/2018,Sports_celeb,@GarbiMuguruza,Night out in LA https://t.co/r9plIrwr6G +03/03/2018,Sports_celeb,@GarbiMuguruza,"PRE OSCARS MOVES + +🕺💃🎬 + +@ma_silvestre https://t.co/YtBanOpo8r" +03/03/2018,Sports_celeb,@GarbiMuguruza,RT @BillieJeanKing: Pre-gaming at the @WME party. #preoscarparty #EmmaStone https://t.co/NrdypylLyf +03/02/2018,Sports_celeb,@GarbiMuguruza,"☔️ but .... 😀 morning!! + +☔️ pero .... 😀 día!! + +Venice Beach 🇺🇸 + +@WTA @BNPPARIBASOPEN @MiamiOpen https://t.co/J8HpC8z1aE" +02/27/2018,Sports_celeb,@GarbiMuguruza,"¡Qué placer haberte conocido y contar contigo para este Super vestido este domingoooo! + +What a pleasure to get to… https://t.co/NhHiL9IxTA" +02/26/2018,Sports_celeb,@GarbiMuguruza,@MiamiOpen Favourite tournament!!!! 💞 +02/26/2018,Sports_celeb,@GarbiMuguruza,@CarlaSuarezNava @highpronutritio Pelito largoooo!!! +02/26/2018,Sports_celeb,@GarbiMuguruza,"After two great weeks in the Middle East.... 🐪 +Hello America! 🤟 Hi Cali! ☀️🇺🇸 + +Después de dos buenas semanas en el… https://t.co/2Shhd8zhWr" +02/21/2018,Sports_celeb,@GarbiMuguruza,"Acabando el tratamiento y a descansar... (🕒3 am...) 😘 Vamos! + +#TodosLosPartidosCuentan + +Finishing treatment and ab… https://t.co/ets9VmPLCM" +02/17/2018,Sports_celeb,@GarbiMuguruza,"Enhorabuena @javierfernandez!! + + 💪💪💪 🥉@COE_es https://t.co/dzSb2rZ5JG" +02/15/2018,Sports_celeb,@GarbiMuguruza,😊 #Vamos https://t.co/kIJBjajXUV +02/10/2018,Sports_celeb,@GarbiMuguruza,"Descubriendo rincones nuevos de Doha⚱️🏺 + +Discovering new places in Doha 🏺⚱️ + +@WTA https://t.co/2ih1GShYE6" +02/09/2018,Sports_celeb,@GarbiMuguruza,Look who's joining my team for next tournaments! @conchitamartinz 👋🏼👋🏼💪🏼💪🏼👯 @SamSumyk we are waiting for you! #Doha https://t.co/OUj3JEnaBe +02/09/2018,Sports_celeb,@GarbiMuguruza,Mirad quién se añade a mi equipo para los próximos torneos! @conchitamartinz 👋🏼👋🏼💪🏼💪🏼 👯@SamSumyk te estamos esperan… https://t.co/hnWVXnhNpx +02/06/2018,Sports_celeb,@GarbiMuguruza,"Best athletes of 2017! +mejores atletas del 2017 + +Gracias @mundodeportivo https://t.co/vE2mfKjpA7" +02/05/2018,Sports_celeb,@GarbiMuguruza,#Women #Power https://t.co/YGu096O3Pc +02/05/2018,Sports_celeb,@GarbiMuguruza,"Noche para disfrutar! + +An evening to enjoy! + +@mundodeportivo #Barcelona + +@pronovias @rabatjewels @rolex 😊 https://t.co/LRoKY0RL5X" +02/04/2018,Sports_celeb,@GarbiMuguruza,"😋😋😋😋😋 🍖 + +¡¡Demasiado bueno!! + +Way too good! + +#JamonIberico https://t.co/Ps3cYqBZcM" +01/29/2018,Sports_celeb,@GarbiMuguruza,"🏃‍♀️🎾🏃‍♀️🎾🏃‍♀️🎾🏃‍♀️🎾 + +#MondayMotivation + +#ActitudDeLunes https://t.co/yDYammZHmz" +01/28/2018,Sports_celeb,@GarbiMuguruza,"¡Buenos días lago Leman! + +Good morning lake Leman!! + +❄️❄️❄️ #BestView #GoodSunday https://t.co/vgCPbGuKDX" +01/27/2018,Sports_celeb,@GarbiMuguruza,@garbaeslays I love it too!!! +01/24/2018,Sports_celeb,@GarbiMuguruza,"Back to 5 degrees!! + +¡¡De vuelta a los 5 grados!! + +🤧❄️🇨🇭 https://t.co/wyeRm4nJAf" +01/20/2018,Sports_celeb,@GarbiMuguruza,"Muchas felicidades ....... + +@javierfernandez por su 6º Europeo 🥇 🇪🇺 + +@CSainz_oficial y @LucasCruz74 por su triunf… https://t.co/g7hyQle9aJ" +01/17/2018,Sports_celeb,@GarbiMuguruza,"RT @LaureusSport: Congratulations @GarbiMuguruza, @allysonfelix, @caster800m, @serenawilliams, @katieledecky and @MikaelaShiffrin! + +#Laureu…" +01/14/2018,Sports_celeb,@GarbiMuguruza,"Feliz domingo. Happy Sunday 🌏 + +@AustralianOpen @WTA https://t.co/2s2GqeBtud" +01/14/2018,Sports_celeb,@GarbiMuguruza,Washhpoppin!? 🤘🏼🇦🇺💋 https://t.co/nqChH6j24w +01/13/2018,Sports_celeb,@GarbiMuguruza,"RT @babolat: What’s your tribe? +#PureAero #PureDrive #PureStrike https://t.co/2YOeR7ZRYs" +01/13/2018,Sports_celeb,@GarbiMuguruza,"Practice today at Hisense Stadium. First match on Tuesday. + +Entreno hoy en el Estadio Hisense. Primer partido el m… https://t.co/1hxDoKDBUZ" +01/12/2018,Sports_celeb,@GarbiMuguruza,"Feliz de entrar a formar parte de la familia @Caser +Happy to become a new member of the @Caser family. +#superacion https://t.co/1NhMEVLmTc" +01/11/2018,Sports_celeb,@GarbiMuguruza,"Sunshine + @stellamccartney 🙌 +@adidastennis +--- +#tennis #createdwithadidas #AusOpen https://t.co/GM2KQi9aL5" +01/07/2018,Sports_celeb,@GarbiMuguruza,Cocodrilo Dundee I am available! Estoy disponible! 🐊🐊🐊✌🏻@SydneyTennis https://t.co/NL9ygjSw7d +01/05/2018,Sports_celeb,@GarbiMuguruza,P Sherman calle Wallaby 42 Sydney 🐠 https://t.co/fMiquLOyC5 +01/03/2018,Sports_celeb,@GarbiMuguruza,"📢 Nuevos planes ✈️ ..... nos vamos a @SydneyTennis +... +📢 New plans ✈️... we are going to @SydneyTennis" +01/03/2018,Sports_celeb,@GarbiMuguruza,"RT @rtve: ""Contra el machismo, tolerancia cero"". El aplaudido sketch de Garbiñe Muguruza en el especial de José Mota https://t.co/H9djOmE8q…" +12/31/2017,Sports_celeb,@GarbiMuguruza,"¡Feliz año nuevo a todos! Que este 2018 nos brinde más momentos de emoción y felicidad por qué eso al final, ¡es lo… https://t.co/frTtTDefO2" +12/31/2017,Sports_celeb,@GarbiMuguruza,"It was time for Kids Day today at @BrisbaneTennis #Fun +Hoy tocaba el día de los niños en #BrisbaneTENnis #Diversion https://t.co/KnOhQh6Xlw" +12/30/2017,Sports_celeb,@GarbiMuguruza,"2nd day of practice in @BrisbaneTennis. Playing doubles w/ @CarlaSuarezNava 👌😀 +2º día de entreno en #BrisbaneTENnis… https://t.co/XhMTJpSElA" +12/29/2017,Sports_celeb,@GarbiMuguruza,Garbiñe nos cuenta como vio la temporada 2017. https://t.co/YXR1jtRIp7 +12/29/2017,Sports_celeb,@GarbiMuguruza,Hola Australia!!! Ya estoy de vuelta. Hello Australia!! I am back 💙💙🇦🇺🇦🇺🌀🌀🕶🕶🕶 https://t.co/Isal7gldu2 +12/27/2017,Sports_celeb,@GarbiMuguruza,@Highflyermel Yes!! I was in this flight 😤 +12/25/2017,Sports_celeb,@GarbiMuguruza,25th ☀️♥️ https://t.co/2S0gBSpjSB +12/25/2017,Sports_celeb,@GarbiMuguruza,Feliz navidad!!! Merry Christmas!!!!🎄🎁💋❤️💋❤️💋❤️💋❤️🎊🎉 https://t.co/WmfNzDIj50 +12/22/2017,Sports_celeb,@GarbiMuguruza,"No matter the sport, creativity brings us together +#HereToCreate @adidas https://t.co/LNGRiPbExM" +12/22/2017,Sports_celeb,@GarbiMuguruza,"¡¡No queda nada para Navidad!!! +Christmas is around the corner!! +🎅 🎁😃 https://t.co/3ECbzucFoo" +12/20/2017,Sports_celeb,@GarbiMuguruza,Love change! #HereToCreate https://t.co/2iMNb61hpd +12/20/2017,Sports_celeb,@GarbiMuguruza,😘 https://t.co/G6odqFeC4G +12/18/2017,Sports_celeb,@GarbiMuguruza,"Last Monday...Last week of practice....I am ready for you! +Último lunes...Última semana de entrenos.... ¡Vamos a p… https://t.co/LgygcWk8fJ" +12/18/2017,Sports_celeb,@GarbiMuguruza,Team Muguruza!!!! #SurfingUSA 🏄🏻‍♀️🏄🏻‍♂️🏄🏻‍♂️🌅🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼 https://t.co/BPaLalHqGQ +12/14/2017,Sports_celeb,@GarbiMuguruza,"#TBT +Singapore 2017 💄💋👗 https://t.co/3ubkoLbA40" +12/13/2017,Sports_celeb,@GarbiMuguruza,"Calendario enero-julio 2018 +Calendar January - July 2018 +@WTA @AustralianOpen @rolandgarros @Wimbledon https://t.co/ch5TNsA7ux" +12/13/2017,Sports_celeb,@GarbiMuguruza,"""I want to keep playing big finals, and fighting for the No.1. There’s nothing to be afraid of, and nothing to hide… https://t.co/xt46OHx0WW" +12/11/2017,Sports_celeb,@GarbiMuguruza,Buenos días!! 🌞 show me some beauty!! 🌅 💛💛💛💛 #SUNRISE https://t.co/DwVl55jWBv +12/09/2017,Sports_celeb,@GarbiMuguruza,"RT @CincyTennis: 3...2...1...GROUP HUG 🤗 + +@GarbiMuguruza https://t.co/4WQWzaBLZS" +12/09/2017,Sports_celeb,@GarbiMuguruza,@CarlaSuarezNava @dirtydancing_es @LetsGoCompany Yo lo quiero ver!!! 💃🏼💃🏼💃🏼 +12/08/2017,Sports_celeb,@GarbiMuguruza,@ITF_Tennis @RafaelNadal ❤️❤️❤️❤️ thank you!!!! +12/08/2017,Sports_celeb,@GarbiMuguruza,"RT @ITF_Tennis: Spain's @GarbiMuguruza has been named ITF World Champion for the first time along with three-time winner @RafaelNadal. + +It…" +12/07/2017,Sports_celeb,@GarbiMuguruza,"#TBT +Septiembre... Sesión de fotos y entrevista para @elpaissemanal +September...Photoshoot and interview for El P… https://t.co/p7NyfGbcvZ" +12/06/2017,Sports_celeb,@GarbiMuguruza,RT @JoseMotatv: .@GarbiMuguruza nos cuenta algunas cosas de su paso por la grabación de ‘Bienvenido Mister Wan-Da’ ¡Muchas gracias y buena… +12/06/2017,Sports_celeb,@GarbiMuguruza,De vuelta a mi segunda casa! Back to my second home! #LosAngeles ☀️💛💛💛💛🐠 https://t.co/S83ZNqEq7d +12/05/2017,Sports_celeb,@GarbiMuguruza,LA here we come! ✈️ 😀 🎾 💪 https://t.co/dnuPSwQRzq +11/30/2017,Sports_celeb,@GarbiMuguruza,"#TBT +@adidastennis photo shoot in Indian Wells with @Wimbledon outfit +Sesión de fotos de adidas en Indian Wells con… https://t.co/qxVLr7LTiH" +11/29/2017,Sports_celeb,@GarbiMuguruza,👏👏👏 La educación... ¡lo primero! https://t.co/TQSzEVCF7H +11/28/2017,Sports_celeb,@GarbiMuguruza,"Feliz martes a todos!! +Have a great Tuesday everyone! +😇💪🎾 https://t.co/p3VfGn3975" +11/24/2017,Sports_celeb,@GarbiMuguruza,"Buenas noticias!!! @teledeporte seguirá transmitiendo los @WTA premiers en 2018. 💪👍👏🎾 + +Great news...WTA premiers on… https://t.co/yFK8kbncup" +11/24/2017,Sports_celeb,@GarbiMuguruza,"RT @adidas: Calling all creators: the game changers, the difference makers, the boundary breakers. +It's a new day, create something. +#HereT…" +11/22/2017,Sports_celeb,@GarbiMuguruza,Incredible night having chosen me Personality of the year! Increíble noche siendo elegida Personaje del año!Mil gra… https://t.co/8a72q27hvQ +11/22/2017,Sports_celeb,@GarbiMuguruza,BEAUTIFUL @VanityFairSpain gala!! PRECIOSA gala de @VanityFairSpain #Gucci #JuliusBaer #Rolex #VF 👠💄👗💋 https://t.co/kAMEJW7akB +11/21/2017,Sports_celeb,@GarbiMuguruza,No sé cuantas veces me habré reído contigo y hoy también! Especial nochevieja @JoseMotatv 🍾✌🏻 https://t.co/P6qgCfa3Zh +11/20/2017,Sports_celeb,@GarbiMuguruza,Y seguimos en @ellarguero ... #Madrid https://t.co/5eYDufpHGV +11/20/2017,Sports_celeb,@GarbiMuguruza,"Empezamos la noche en @El_Hormiguero..... +@antena3com https://t.co/bnfNFm9oXs" +11/20/2017,Sports_celeb,@GarbiMuguruza,"Today is #UniversalChildrensDay +👧🏽👦🏼👧🏾👦🏽👧🏼👦🏻👧🏻👦🏿 +They are the future. And education is key for them. @RoomtoRead +https://t.co/VrWH9gvmgJ" +11/20/2017,Sports_celeb,@GarbiMuguruza,"Hoy es el #DíaMundialdelosNiños + 👧🏽👦🏼👧🏾👦🏽👧🏼👦🏻👧🏻👦🏿 +Ellos son el futuro. Y la educación es clave para su desarrollo.… https://t.co/hrFwqQbTYj" +07/02/2018,Sports_celeb,@alexmorgan13,@BATii20 @FootyHeroUSA @NWSL Shittttttttt +06/30/2018,Sports_celeb,@alexmorgan13,They gone done it again. 👏🏽 https://t.co/k0iebn1pUS +06/30/2018,Sports_celeb,@alexmorgan13,Watch us today at 3:30p ET on @lifetimetv! #NoExcuses https://t.co/j231Tzj2Jh +06/30/2018,Sports_celeb,@alexmorgan13,What were you doing at 19?????? Take a bow Kylian Mbappe. +06/30/2018,Sports_celeb,@alexmorgan13,Who predicted this game would have 4 goals in less than 60 mins? Go to Vegas right now. #WorldCup2018 does not disappoint. +06/30/2018,Sports_celeb,@alexmorgan13,Di Maria for Prez +06/30/2018,Sports_celeb,@alexmorgan13,I want to see more Mbappe v Marcos Rojo. Is that cruel. +06/28/2018,Sports_celeb,@alexmorgan13,#TBT to my early days on the field just like Reagan! You can own #AlexAndMe with an exclusive headband and locker p… https://t.co/EcHCFOCi0M +06/27/2018,Sports_celeb,@alexmorgan13,"See you tonight, Orlando! https://t.co/M39IJ9s48y" +06/27/2018,Sports_celeb,@alexmorgan13,"RT @chachaspillane: Wife of billionaire ditches dogs that are near death and inbred +⁦@uhaul⁩ ⁦@UHaul_Cares⁩ #SylviaShoen is a disgusting wa…" +06/27/2018,Sports_celeb,@alexmorgan13,Best. World. Cup. Yet. Heartbreaking for Germany but excited to see Mexico moving. Every 3rd game has been insanity. My Stress levels ⬆️⬆️⬆️ +06/26/2018,Sports_celeb,@alexmorgan13,Wow. It’s like 9 lives with Argentina. The World Cup does not disappoint. And a nice friendly cameo from Maradona a… https://t.co/34kzHEqaOG +06/26/2018,Sports_celeb,@alexmorgan13,"RT @JordanCulver: Orlando Pride goalkeeper Ashlyn Harris was asked about attendance at Pride games this season, and in typical Ashlyn Harri…" +06/25/2018,Sports_celeb,@alexmorgan13,I vote (obv) for @AlannaKennedy of the @ORLPride for @NWSL Goal of the Week! Vote #KennedyGOW +06/24/2018,Sports_celeb,@alexmorgan13,Assists like this are just as good as goals. Class. https://t.co/nAG0cv8P0r +06/23/2018,Sports_celeb,@alexmorgan13,It’s gameday! 👀 Watch us today at 7:00pm ET on ESPNews @ORLPride https://t.co/pAz8I6x2gl +06/23/2018,Sports_celeb,@alexmorgan13,@sydneyleroux This coffee is going to taste sooooo sweet. +06/23/2018,Sports_celeb,@alexmorgan13,Nooooooooo waaaaaaaaaay. CLUTCH CLUTCH CLUTCH KLUTCH KRUTCH KROOCH KROOS KROOS KROOS +06/22/2018,Sports_celeb,@alexmorgan13,"Heartbreaker for Iceland, they turned me a big fan. Loved both goals from Nigeria though... and bonus points for the jerseys obv." +06/20/2018,Sports_celeb,@alexmorgan13,RT @SergioRamos: They are the ones who won tonight. Hopefully the first of many. https://t.co/ftnMwegZjz +06/20/2018,Sports_celeb,@alexmorgan13,"As fans around the world come together for the #WorldCup, a reminder from @UNICEFUSA on the healing power of play f… https://t.co/hschpywt6P" +06/19/2018,Sports_celeb,@alexmorgan13,#AlexAndMe is out on DVD and Blu-ray today! 🙌🏼 https://t.co/2rlA6Sovkp https://t.co/CmkbDj5TMN +06/17/2018,Sports_celeb,@alexmorgan13,@jimdklock @yumdonut 😂 love it +06/17/2018,Sports_celeb,@alexmorgan13,#GERMEX #GERMEX #GERMEX what a fast tempo game this is so far. I feel goals. +06/16/2018,Sports_celeb,@alexmorgan13,Game day at home! 7:30pm ET vs NJ. Let’s goooo 💪🏼 @ORLPride https://t.co/IRDB547edH +06/16/2018,Sports_celeb,@alexmorgan13,This game can’t end. Not yet it’s just too exciting. +06/16/2018,Sports_celeb,@alexmorgan13,I want Argentina to show well this World Cup but it’s honestly so damn hard to root against Iceland. They have so m… https://t.co/CTuP0uqJcb +06/16/2018,Sports_celeb,@alexmorgan13,Messi walks. Messi helps create a penalty. Messi walks. Please Messi just score and you can walk all you want. +06/15/2018,Sports_celeb,@alexmorgan13,@ALLIE_LONG Dare me +06/15/2018,Sports_celeb,@alexmorgan13,I’d like to thank the soccer gods for blessing us with beautiful soccer for the last 90 minutes. #PORvESP +06/15/2018,Sports_celeb,@alexmorgan13,Waking up to mo World Cup games means motivation to go to sleep earlier. Mo Salah comin upppp. +06/14/2018,Sports_celeb,@alexmorgan13,"Thank you Fatemeh for sharing your story. Of what importance is soccer to a man? Think, then answer in your head. N… https://t.co/5kyJczYmkC" +06/14/2018,Sports_celeb,@alexmorgan13,#WorldCup started with a goal fest today ⚽️ #Ready for more games and excitement! https://t.co/QIzppu1Ywu +06/13/2018,Sports_celeb,@alexmorgan13,Finally home after 3 weeks on the road and nothing better than walking in the door to my pup. It’s not fair how much I love him 😭 +06/13/2018,Sports_celeb,@alexmorgan13,So happy waking up to this news! The World Cup is coming home 🇺🇸 #United2026 https://t.co/qaq0eAoxif +06/12/2018,Sports_celeb,@alexmorgan13,@ddepressedffan @iTunes Hope you enjoy it! +06/12/2018,Sports_celeb,@alexmorgan13,You can finally own #AlexandMe on @iTunes now! Watch me train Reagan to become the MVP of her soccer team… https://t.co/71R1xxWhG7 +06/12/2018,Sports_celeb,@alexmorgan13,@advisor86 I’ll be there💜 +06/12/2018,Sports_celeb,@alexmorgan13,Cleveland we can’t wait to play for you tomorrow!!! USA v China at 7pm at FirstEnergy Stadium. +06/11/2018,Sports_celeb,@alexmorgan13,So excited for #AlexandMe!! https://t.co/aGdw8Dn5Ls +06/11/2018,Sports_celeb,@alexmorgan13,Back to the roots! https://t.co/FPlxTuuaAk +06/10/2018,Sports_celeb,@alexmorgan13,But that assist tho..... 👀🤙🏼 https://t.co/SzIdftvhDr +06/07/2018,Sports_celeb,@alexmorgan13,We’re back! 🇺🇸 Watch us tonight at 9pm ET on @FS1 #USWNT https://t.co/2pPkvb3FCk +06/07/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: Can you believe! 🏳️‍🌈 + +The stars of the #USWNT celebrate equality, diversity, and inclusivity. https://t.co/uqRO4G0VFD" +06/05/2018,Sports_celeb,@alexmorgan13,@Toni_Deion That is my worst nightmare. I’m so sorry. +06/05/2018,Sports_celeb,@alexmorgan13,"RT @benbloomsport: Men = 100/100 +Women = 0/100 + +For the first time ever since Forbes started compiling the world's 100 highest paid sportsp…" +06/05/2018,Sports_celeb,@alexmorgan13,"@FanyVeraPR Not sure of July 21, but should be there August 5!" +06/04/2018,Sports_celeb,@alexmorgan13,We will take that point in Seattle! https://t.co/R0gHJNGGS0 +06/03/2018,Sports_celeb,@alexmorgan13,@MLS @JosefMartinez17 Beast +06/02/2018,Sports_celeb,@alexmorgan13,Oops sorry guys... it’s June 7 in SLC. 🤦🏼‍♀️ https://t.co/abdkULFLTB +06/02/2018,Sports_celeb,@alexmorgan13,So excited to hear we will be repping the rainbow numbers in our upcoming games in honor of #PrideMonth! #USWNT fir… https://t.co/BIZx2qYuCS +06/02/2018,Sports_celeb,@alexmorgan13,Anddddd @LAGalaxy playing some entertaining soccer these first 20 Mins. Always a good environment in Portland. #ESPN2 +06/01/2018,Sports_celeb,@alexmorgan13,I had so much fun at the #AlexAndMe premiere last night! I can’t wait to share it with all of you! Own #AlexAndMe o… https://t.co/3fyWz0rl2X +06/01/2018,Sports_celeb,@alexmorgan13,The #AlexandMe fam! Premiere a success tonight and movie officially out June 12th. ❤️ https://t.co/rVZRz13MkF +05/31/2018,Sports_celeb,@alexmorgan13,So excited to be part of @maroon5’s new #GirlsLikeYou music video with so many incredible women! 🙌🏼 Watch the full… https://t.co/o8ByAGhJpM +05/28/2018,Sports_celeb,@alexmorgan13,Let’s go guys!!! #USAvBOL +05/27/2018,Sports_celeb,@alexmorgan13,@PlayersSayings Never said this. +05/27/2018,Sports_celeb,@alexmorgan13,@FOXSports @heathermitts I will. Brilliant. +05/27/2018,Sports_celeb,@alexmorgan13,We had ourself a game today! (No not the CL final for those who didn’t tune into @lifetimetv) Proud of this team @ORLPride +05/26/2018,Sports_celeb,@alexmorgan13,Gameday! 3:30pm ET on @lifetimetv https://t.co/HwARhfiYAW +05/24/2018,Sports_celeb,@alexmorgan13,Congratulations @OLfeminin on your incredible win!! Another perfect season. #ChampionsLeagueFinal +05/23/2018,Sports_celeb,@alexmorgan13,Back at HOME!! 💜 7:30pm ET tonight from Orlando City Stadium #ORLvNC @ORLPride https://t.co/wGoPIyqgTe +05/22/2018,Sports_celeb,@alexmorgan13,Are you ready?! #WorldCup https://t.co/UurQMeH0yq +05/22/2018,Sports_celeb,@alexmorgan13,@mmarlow13 That’s a great class presentation!! See you in a few weeks 😊 +05/19/2018,Sports_celeb,@alexmorgan13,Been watching every #RoyalWedding show possible on tv since 7am I can’t help myself 😩 +05/16/2018,Sports_celeb,@alexmorgan13,@rgottlieb1 Yes! What a great WC promo. Ready for it to start already! +05/16/2018,Sports_celeb,@alexmorgan13,Is this a joke? It’s Yanny (or Yammy) every time. Without fail. +05/13/2018,Sports_celeb,@alexmorgan13,@kylekrieger I’m about to curse I should@just stop tweeting )$!#%^*+1?! +05/13/2018,Sports_celeb,@alexmorgan13,@ussoccer_wnt @mPinoe Ohhhh whaaaaaaaat. She don’t miss a step. +05/12/2018,Sports_celeb,@alexmorgan13,"So incredibly proud of this team and soooooo happy to end this tough road trip on a win. 💜💜💜💜 Few days off,… https://t.co/b3TqfkvWgD" +05/12/2018,Sports_celeb,@alexmorgan13,Watch us take on Portland today at 3:30pm ET on @lifetimetv! @ORLPride https://t.co/UxAn6z5X42 +05/09/2018,Sports_celeb,@alexmorgan13,That gameday feeling 🙌🏼 🙌🏼@ORLPride vs Utah today at 9pm ET https://t.co/r0vopGBWvu +05/08/2018,Sports_celeb,@alexmorgan13,@jimemaud @jmaynard_21 I love this thread 😩 Jack and Jim at their best. +05/08/2018,Sports_celeb,@alexmorgan13,"@champnella @SienaAgudong @jimdklock When you try to go easy on your director by shooting with your right foot, by… https://t.co/1YjjUewm1c" +05/07/2018,Sports_celeb,@alexmorgan13,"I love this movement! I've teamed up with @UNICEFKidPower, @Sharpie and @PlayersTribune to inspire kids to get acti… https://t.co/TSOqN8Uzzm" +05/03/2018,Sports_celeb,@alexmorgan13,Yesssss climbing on up!! https://t.co/KfeQBL0mxX +05/02/2018,Sports_celeb,@alexmorgan13,Gameday in Chicago! 7:30pm ET 💪🏼 @ORLPride https://t.co/ddZf2qMEA2 +05/01/2018,Sports_celeb,@alexmorgan13,Always thankful for @FIFPro and the support it gives female and male players around the world. https://t.co/tQcMJdBLmv +04/28/2018,Sports_celeb,@alexmorgan13,Gameday! Taking on Seattle tonight at 7:30pm ET at HOME 🙌🏼 @ORLPride https://t.co/hWkuPTmqRS +04/26/2018,Sports_celeb,@alexmorgan13,@zchy3013 @CocaCola @Walgreens New fave(but more of a dessert): mango Diet Coke 😋 +04/26/2018,Sports_celeb,@alexmorgan13,Had fun shooting with @CocaCola and @Walgreens. Summer is almost here! #cokefamily https://t.co/CE0a8ceujq +04/22/2018,Sports_celeb,@alexmorgan13,"No better feeling than a game day at HOME!!! Tonight, 5pmET at Orlando City Stadium. See you soon!" +04/22/2018,Sports_celeb,@alexmorgan13,@AlannaKennedy @Em_surf @ORLPride Yea yea yea yea +04/21/2018,Sports_celeb,@alexmorgan13,Check out @KarlieKloss’s hysterical video with @Chegg for @KodeWithKlossy and then tell every teen girl in the coun… https://t.co/8CbflyrHoi +04/15/2018,Sports_celeb,@alexmorgan13,It’s almost game time! Great day for some footy in the rain. #PORvORL +04/14/2018,Sports_celeb,@alexmorgan13,Family of @UtahRoyalsFC flown out for this sold out home opener. Respect. #NWSLonLifetime +04/13/2018,Sports_celeb,@alexmorgan13,@ASPCA When will they be up for adoption? +04/13/2018,Sports_celeb,@alexmorgan13,Happy Friday the 13th! +04/11/2018,Sports_celeb,@alexmorgan13,"Sport is so incredibly cruel sometimes. Gotta feel for Buffon, a player that has played longer than anyone else on… https://t.co/k18AR4QuMn" +04/11/2018,Sports_celeb,@alexmorgan13,@btsportfootball 🙌🏼🙌🏼🙌🏼 +04/11/2018,Sports_celeb,@alexmorgan13,This week’s champions league is unreal. Harry Kane’s bicycle kick just wiped off the board with Juve’s goals. +04/10/2018,Sports_celeb,@alexmorgan13,"@arlowhite Well, it’s all about the Ref today isn’t it? 🤦🏼‍♀️" +04/09/2018,Sports_celeb,@alexmorgan13,@r0bs3lf This is incredible 👆🏼🙌🏼 +04/08/2018,Sports_celeb,@alexmorgan13,RT @ussoccer_wnt: No need to check your local listings. #USAvMEX gets the @FOXTV treatment at 1:30 pm ET. 📰 » https://t.co/q5DRxgQfTX https… +04/06/2018,Sports_celeb,@alexmorgan13,Get those outfits ready!! https://t.co/RQlWPOtVMC +04/06/2018,Sports_celeb,@alexmorgan13,@Toni_Deion @daniweatherholt I meannnn what can’t you do ⚽️📸👩‍🍳 +04/06/2018,Sports_celeb,@alexmorgan13,Thanks Jax for a fun night! Love you.Mean it. +04/05/2018,Sports_celeb,@alexmorgan13,@lsesselmann Thanks!! +04/05/2018,Sports_celeb,@alexmorgan13,She’s got the moooooves 😂🙈 #gamedaydance https://t.co/FY05gYUqJI +04/05/2018,Sports_celeb,@alexmorgan13,"@ASPCA Done ✅ +Help these animals!!" +04/05/2018,Sports_celeb,@alexmorgan13,I'm so excited to share the #AlexandMe trailer with you all! #AlexandMe will be available digitally starting June 1… https://t.co/D59rJdNdQ2 +04/05/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: #USAvMEX coverage begins at 7 pm ET on @FS1 and @UnivisionSports. + +What to watch for » https://t.co/lZKsPwK1gl https://t.…" +04/04/2018,Sports_celeb,@alexmorgan13,So excited! 🎥 https://t.co/Qk2iv4cW4c +04/03/2018,Sports_celeb,@alexmorgan13,@FOXSoccer Daaaaaaaang. Take a bow is right. +04/01/2018,Sports_celeb,@alexmorgan13,@kochfamily4 I hope so too! Hi Kendall 👋🏼 +03/31/2018,Sports_celeb,@alexmorgan13,Let’s gooooooo @ORLPride somebody get me a goal 🙏🏼 @sydneyleroux @ChiAlreadyKnow @r_hill3 +03/31/2018,Sports_celeb,@alexmorgan13,@nymeca @ORLPride It’s half time. Smiley face back. +03/31/2018,Sports_celeb,@alexmorgan13,What a game. #ElTrafico you have not disappointed. +03/31/2018,Sports_celeb,@alexmorgan13,I love that so much. Thank you #zLAtan +03/31/2018,Sports_celeb,@alexmorgan13,Good luck today ladies! Bring home the win. Watch on @lifetimetv at 3:30p ET @ORLPride https://t.co/T7hanVXmvP +03/28/2018,Sports_celeb,@alexmorgan13,"@stuholden I have to choose a team, can’t I just choose a player? 😂" +03/28/2018,Sports_celeb,@alexmorgan13,The most fitting name for a rivalry match👇🏼🙌🏼 https://t.co/s7jeuKNcEP +03/28/2018,Sports_celeb,@alexmorgan13,@GriffWhalen Is there such thing as Cuban vegan food??? I know Miami has to have that.... +03/28/2018,Sports_celeb,@alexmorgan13,@WillDishong Way more energy now! Don’t need as much sleep or coffee. +03/28/2018,Sports_celeb,@alexmorgan13,"Some of my orlando go-to’s: Sanctum, Ethos Vegan Kitchen, anything from @Toni_Deion’s kitchen, Market on South,… https://t.co/7FpmhQ8eLK" +03/28/2018,Sports_celeb,@alexmorgan13,"3 months eating vegan and now asking for help from my orlando peeps. Send me your fave Vegan fiends spots! Yu share yours, I’ll share mine!" +03/28/2018,Sports_celeb,@alexmorgan13,"Animals should ALWAYS be a part of the family ❤️ My rescue pup, Blue, and I teamed up with @peta to share a glimpse… https://t.co/0KcVCvnAXP" +03/27/2018,Sports_celeb,@alexmorgan13,RT @peta: Soccer champ @alexmorgan13 doesn't just have an #Olympic gold medal — she has a heart made of gold 💛 Watch her and adopted dog Bl… +03/26/2018,Sports_celeb,@alexmorgan13,Happy #AirMaxDay! 👟 https://t.co/KBFByji0zu +03/24/2018,Sports_celeb,@alexmorgan13,@glory243matondo @Emma4Change Yolanda King was something special. I have never seen a more fearless 9 year old. She… https://t.co/iDGnVANxfI +03/24/2018,Sports_celeb,@alexmorgan13,"Incredibly powerful speeches from all the speakers and singers at #MarchForOurLives in DC, especially @Emma4Change. Speechless." +03/24/2018,Sports_celeb,@alexmorgan13,Game day! Kicking off the season tonight at home 💪🏼 See you there! @orlpride https://t.co/L7zlb9RCMw +03/23/2018,Sports_celeb,@alexmorgan13,@bavacado2 @NWSL That would be a dream 🤩 +03/23/2018,Sports_celeb,@alexmorgan13,@JeremyPalenik @NWSL Love it! See you there! +03/23/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer Had to make your cross look good! +03/23/2018,Sports_celeb,@alexmorgan13,Finally the @NWSL season is back! My Orlando peeps who’s coming out tomorrow??? 👀👀👀 730pmET at Orlando City stadium 💜💜💜💜💜 +03/23/2018,Sports_celeb,@alexmorgan13,Loving our new kits!!! https://t.co/a1l5OvdNG5 +03/22/2018,Sports_celeb,@alexmorgan13,"If we fix the Water Burden, we can empower girls to change the world. Take action for #WorldWaterDay with… https://t.co/B4lDYp7Ado" +03/22/2018,Sports_celeb,@alexmorgan13,RT @ManUtd: #MUFC has submitted an application to the @FA to establish a professional women’s team in the second tier of the Women’s Super… +03/21/2018,Sports_celeb,@alexmorgan13,@Toni_Deion Lol yes whatchu got +03/21/2018,Sports_celeb,@alexmorgan13,@johnstons08 They look pretty clean. +03/21/2018,Sports_celeb,@alexmorgan13,"Now that hubby isn’t in Orlando anymore, I have soooooo much time for new shows. Please share good ones!! 🙏🏼" +03/20/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer So it’s not enough for them to live in cages? No let’s parade them around the city chained too. +03/19/2018,Sports_celeb,@alexmorgan13,RT @FIFPro: Finland 🇫🇮is investigating if the national football association is discriminating against the women’s national team. https://t.… +03/18/2018,Sports_celeb,@alexmorgan13,"RT @ORLPride: You have to be at Orlando City Stadium this Saturday. + +Tickets: https://t.co/qcC5XdSCrB https://t.co/bALJK0ezP0" +03/15/2018,Sports_celeb,@alexmorgan13,@LVEtech Awesome! Great job girls +03/09/2018,Sports_celeb,@alexmorgan13,It’s great to see two organizations with strong female leadership come together to support gender equality @Bumble… https://t.co/Uku91RnWF3 +03/09/2018,Sports_celeb,@alexmorgan13,"My dog has officially peed on a fire hydrant. Very proud mom. Yes, apparently dogs actually pee on fire hydrants." +03/09/2018,Sports_celeb,@alexmorgan13,RT @beatsbydre: Know your worth and don’t settle for less. @AlexMorgan13 #InternationalWomensDay #PressForProgress https://t.co/4rYxQ4vlkB +03/08/2018,Sports_celeb,@alexmorgan13,Honored to be named among the best in women’s football for 2017! A great way to start off… https://t.co/2FwD5LTaMo +03/07/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: The only words you need to hear this morning: IT'S MATCHDAY! 🇺🇸 + +Win and we lift the 🏆 » https://t.co/T8ekOiKMLu https://…" +03/06/2018,Sports_celeb,@alexmorgan13,@heyOchao Hey girls!! Good luck have fun! +03/05/2018,Sports_celeb,@alexmorgan13,@ELS_9_FRANCE @equipedefrance Congratulations Eugenie! +03/05/2018,Sports_celeb,@alexmorgan13,"Serena Williams has proven time and time again, there’s no wrong way to be a woman. #UntilWeAllWin https://t.co/tZih7485cg" +03/05/2018,Sports_celeb,@alexmorgan13,Yesterday was fun celebrating these Olympic Champions!🥇#TeamUSA #USWNTSUNITED https://t.co/YkkN4Sqbfx +03/05/2018,Sports_celeb,@alexmorgan13,@LAGalaxy Yesssssssuh. +03/05/2018,Sports_celeb,@alexmorgan13,@believethatwe Sassy worms @kelleymohara +03/04/2018,Sports_celeb,@alexmorgan13,@thebriandineen Thanks!! +03/03/2018,Sports_celeb,@alexmorgan13,RT @FIFPro: Congratulations @AlexMorgan13! 👏 You've been nominated for the #WomensWorldXI. Read more 👉 https://t.co/heaqoPdGLu https://t.co… +03/02/2018,Sports_celeb,@alexmorgan13,Never felt more relieved than when our plane touched down just now. North East why you gotta bring the bad weather now???? +03/02/2018,Sports_celeb,@alexmorgan13,@NairnChristine @Cars_Pickett16 Amazon that shhhht. +03/02/2018,Sports_celeb,@alexmorgan13,"RT @heathermitts: March 23rd, Congress will decide to allows the BLM to destroy healthy wild horses and burros, and the Senate version, whi…" +03/02/2018,Sports_celeb,@alexmorgan13,@zchy3013 Different... could feel my toes/feet but couldn’t feel my face/neck/legs. Wind made my body ache!! +03/02/2018,Sports_celeb,@alexmorgan13,"Columbus. I can’t believe all 15,000 of you stayed out in that weather tonight. So much respect. First win and onto… https://t.co/rjhOnRFKSp" +03/01/2018,Sports_celeb,@alexmorgan13,The #SheBelievesCup kicks off today! Watch us take on Germany tonight at 7pm ET on ESPN2 🇺🇸 https://t.co/UtiKDZLFfw +03/01/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer @Toni_Deion 3 vegans and 3 watchless wrists. SMH +02/28/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: TOMORROW. +TOMORROW. +WE LOVE YA TOMORROW. + +You guys, #SheBelievesCup 2018 is so soon. Be there » https://t.co/jVlbijw9re…" +02/28/2018,Sports_celeb,@alexmorgan13,RT @ACLU: No. https://t.co/Qzx36gsIG7 +02/25/2018,Sports_celeb,@alexmorgan13,"@jamiemorris03 I think it’s important you are there as well. You are also her family, and the soccer community help… https://t.co/mvko2cvm5O" +02/25/2018,Sports_celeb,@alexmorgan13,@jamiemorris03 @ussoccer_wnt @ussoccer @PrincipalMSD @NeverAgainMSD @MSDSOCCER1 @MSD_Soccer @Emma4Change We would a… https://t.co/NZCDpe4bAy +02/25/2018,Sports_celeb,@alexmorgan13,RT @ussoccer_wnt: Thank you so much to everyone who helped @jamiemorris03's tweet spread and make its way to us. We got in touch with Alyss… +02/24/2018,Sports_celeb,@alexmorgan13,"@AnnOdong Formiga is the OG. So much respect, she can still hold her own on the intl level in sure of that." +02/23/2018,Sports_celeb,@alexmorgan13,What a game! Congrats on Gold!! #TeamUSA https://t.co/X2SUlOmPkL +02/22/2018,Sports_celeb,@alexmorgan13,Oh. My. God. This is so extremely infuriating!!! https://t.co/CXqYDei2ya +02/22/2018,Sports_celeb,@alexmorgan13,"RT @NWSL: Prepare to be amazed and astonished. The #NWSL is back on March 24. + +🗓️ full schedule | https://t.co/7OJvYkJ364 +📺 on @lifetimetv…" +02/22/2018,Sports_celeb,@alexmorgan13,RT @TeamUSA: #USA is on the board with a goal by @HilaryKnight! LET THEM HEAR YOU #TeamUSA fans! 🗣 https://t.co/5SYoijnIKa +02/22/2018,Sports_celeb,@alexmorgan13,"To the students of Stoneman Douglas High School: Your bravery and courage is inspiring. No teenager, no human shoul… https://t.co/Cm4gMKmVUA" +02/22/2018,Sports_celeb,@alexmorgan13,Let’s go @usahockey!!!!!!! Get that 🥇 I’ll be cheering loud for you all! https://t.co/uce9KWbVPV +02/22/2018,Sports_celeb,@alexmorgan13,@LilyMaeSilver Awww they are so sweet ❤️ +02/21/2018,Sports_celeb,@alexmorgan13,#LoveYourPetDay #Diva #BlueShaquilleOneal https://t.co/CQEvQ1RaU1 +02/21/2018,Sports_celeb,@alexmorgan13,Shoutout to the biggest diva there is. #LoveYourPetDay even though I love my boy Blue everyday. https://t.co/VmchiuHqUc +02/20/2018,Sports_celeb,@alexmorgan13,@ussoccer_wnt @kohara19 @Jaguars @EverBankField Wormmmmmms 🐛 +02/19/2018,Sports_celeb,@alexmorgan13,@ChiAlreadyKnow Howwwww is this my first time seeing this. Too good!! 🤣 +02/17/2018,Sports_celeb,@alexmorgan13,@Toni_Deion @StellaMcCartney @AngelaandRoi 😍🤩😍 +02/17/2018,Sports_celeb,@alexmorgan13,🛬 Orlando 💜💜💜 +02/17/2018,Sports_celeb,@alexmorgan13,"Had a blast at this #EarlyMan screening! Make sure to go see it, in theaters today! https://t.co/kzRiq63Usi" +02/15/2018,Sports_celeb,@alexmorgan13,RT @MichaelDavSmith: Police confirm an AR-15 rifle was used in today's school shooting. AR-15 style rifles were used in the Texas church sh… +02/14/2018,Sports_celeb,@alexmorgan13,@kohara19 X is the best. +02/14/2018,Sports_celeb,@alexmorgan13,PRESALE for #USAvMEX ends 2/14 at 8am CT! Get your tickets now with code: C1MATCH at https://t.co/2WfzNpxQlL https://t.co/U0rtswFlhk +02/12/2018,Sports_celeb,@alexmorgan13,"RT @USWNTPlayers: Congratulations, #USSFPresident @CACSoccer. The @USWNTPlayers look forward to productive and respectful relationship with…" +02/11/2018,Sports_celeb,@alexmorgan13,@jordangeli @TeamUSA Yessssss thank you for this 🤣🙌🏼 +02/11/2018,Sports_celeb,@alexmorgan13,RT @TheHumaneLeague: Did someone say vegan donuts!? RT if you'd devour any of these 😍🍩 https://t.co/TICOXcb8CV +02/11/2018,Sports_celeb,@alexmorgan13,@stuholden Appreciate what you do for us athletes Stu. +02/10/2018,Sports_celeb,@alexmorgan13,@CACSoccer @ussoccer Congratulations Carlos! +02/09/2018,Sports_celeb,@alexmorgan13,Great two weeks of training with @BeastModeSoccer... I think 500 shots a week warrants a weekend off! https://t.co/r1NAVmcmEU +02/09/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer Why don’t we compile the videos of netball from the last 2 weeks... +02/09/2018,Sports_celeb,@alexmorgan13,@NBCOlympics @SchildMorgan My knees ache so bad watching this. +02/09/2018,Sports_celeb,@alexmorgan13,Good luck to all the #TEAMUSA athletes competing in the Winter Olympics!! #Olympics2018 +02/08/2018,Sports_celeb,@alexmorgan13,"RT @FIFAWWC: OFFICIAL! +Opening match in Paris, semi-finals and final in Lyon. +All you want to know is in the #FIFAWWC🇫🇷 schedule. + +Le cale…" +02/07/2018,Sports_celeb,@alexmorgan13,Celebrating today is important but don't forget to celebrate girls & women in sport every day #NGWSD https://t.co/a4HgUD1VJg +02/07/2018,Sports_celeb,@alexmorgan13,@DiCiccoMethod @MichelleAkers10 ❤️❤️❤️❤️ +02/06/2018,Sports_celeb,@alexmorgan13,Sounds simple enough to me 🤔👌🏼 https://t.co/Y6DSmrkkCP +02/05/2018,Sports_celeb,@alexmorgan13,Congrats @Eagles on winning the Super Bowl! #Champions +02/05/2018,Sports_celeb,@alexmorgan13,@FARMUSA @FloydMayweather F*ck this. Makes me so mad. +02/05/2018,Sports_celeb,@alexmorgan13,Zach!!! 2 minutes left let’s hold the lead!!! #SuperBowlLII +02/03/2018,Sports_celeb,@alexmorgan13,Back together baby!!! 🔥 🔥 🔥 https://t.co/SaNyMXfw65 +01/26/2018,Sports_celeb,@alexmorgan13,"Lights, camera, action 🎥 https://t.co/8MraNW2oKh" +01/26/2018,Sports_celeb,@alexmorgan13,@SilverMikeA @janinebeckie4 @BrookeLB93 I’ll be around for another week if we can make it happen! +01/25/2018,Sports_celeb,@alexmorgan13,His training skills are mediocre but his photography skills on the other hand.... @BeastModeSoccer always bringing… https://t.co/vAeglf3I21 +01/24/2018,Sports_celeb,@alexmorgan13,"We must work everyday, until we all win. #EQUALITY https://t.co/aPjqOD9rIa" +06/28/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Loved following along with our #ShowdownNY athletes? Get these NIKE tees and gear now and keep summer with you all year r… +06/28/2018,Sports_celeb,@SteveNash,👀👀👀👀👀👀👀 https://t.co/NBEMraG4M2 +06/28/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: This humanitarian crisis is happening here, to children and families in our country, by our government. Groups like @CHIR…" +06/27/2018,Sports_celeb,@SteveNash,"RT @CHIRLA: Thousands of Angelinos are +​set to hit​ the streets of LA this ​Saturday, ​June 30th to ​speak up for family unity​. ​Will you…" +06/27/2018,Sports_celeb,@SteveNash,Harsh but fair https://t.co/KsVtP8FRMF +06/25/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Proud to know the wonderful people @HRC, working so inclusively to bring equality to our communities. #athletesforequalit…" +06/24/2018,Sports_celeb,@SteveNash,@GuinnessUS @SteveNashFdn @brfootball @Cipriani @CalenCarr @lilypadwastaken @LanceFresh Thank you! +06/24/2018,Sports_celeb,@SteveNash,Kane +06/23/2018,Sports_celeb,@SteveNash,Sonny!!! +06/23/2018,Sports_celeb,@SteveNash,Shin-charito +06/21/2018,Sports_celeb,@SteveNash,I think sampaoli owns a string of nightclubs in Miami. +06/21/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Missed the Merch? Get your 2018 #ShowdownNY tees today! Note: it may have been raining when we took this shot - dry t-shi… +06/21/2018,Sports_celeb,@SteveNash,"More soon, but what a day and night that was - a big thanks to @GuinnessUS for hosting us at Cipriani’s last night… https://t.co/0KpITOB2nC" +06/20/2018,Sports_celeb,@SteveNash,You’ll be missed bro! Although @CharlieDavies9 says they’ll forget all about you after his debut tonight. https://t.co/xSVXrdBQlZ +06/20/2018,Sports_celeb,@SteveNash,The answers to so few of life’s questions are ever black and white . . . unless you’re at the @brfootball x… https://t.co/moBRfCP1QW +06/20/2018,Sports_celeb,@SteveNash,SHOWDOWN DAY!! Get to and from #ShowdownNY and our #free FanFest on the Lower East Side with @Lyft! Enter code Show… https://t.co/wqtvLeqecy +06/20/2018,Sports_celeb,@SteveNash,@graemelesaux14 Anyone have a ronaldinho wig? +06/20/2018,Sports_celeb,@SteveNash,@kylemartino I’ll talk to the sporting director... +06/20/2018,Sports_celeb,@SteveNash,Big thanks to @brkicks x @Kickstradomis for the collab! My touch better be on point in these. Can’t wait to see eve… https://t.co/dZrNbVd1z0 +06/18/2018,Sports_celeb,@SteveNash,Kane +06/16/2018,Sports_celeb,@SteveNash,@ToddWuschnig #ToddWuschnig #BigBusiness https://t.co/0lvziHrN88 +06/15/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Love this @USATODAY @usatodaysports piece on @SteveNash, @KlayThompson and #ShowdownNY (and echo the hope of getting @Ste…" +06/15/2018,Sports_celeb,@SteveNash,Ginga irmão! Joga bonito! https://t.co/X7Hbc2K7Dd +06/14/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Us every year: ""We don't release player names before the match."" +Steve every year: https://t.co/K0V4182hFB" +06/14/2018,Sports_celeb,@SteveNash,Solid #ShowdownNY debut from @JoakimNoah! https://t.co/SMBahkL7a8 +06/14/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: More #ShowdownNY #trivia! For a ticket to the @stevenash Foundation #ShowdownNY (remember you must be following @stevenas… +06/14/2018,Sports_celeb,@SteveNash,But your lips aren’t moving? https://t.co/o3G0jhOI1U +06/14/2018,Sports_celeb,@SteveNash,FIFA....oh dear 🤦🏻‍♂️ +06/14/2018,Sports_celeb,@SteveNash,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Sports_celeb,@SteveNash,"RT @MikeQuarino: Less than 24 hours until the #WorldCup, and exactly one week until the @SteveNashFdn #ShowdownNY. What a great time for s…" +06/13/2018,Sports_celeb,@SteveNash,"If you win and are coming to #ShowdownNY, I’ll sign the tee (unless you like clean clothing) . . . . Tickets:… https://t.co/4uaCi1UuJL" +06/13/2018,Sports_celeb,@SteveNash,@chicagospurs Correct +06/13/2018,Sports_celeb,@SteveNash,"1st #ShowdownNY! @ClaudioReyna took the lead. @Robbie9Fowler, Steve Mcmanaman came from Liverpool. @BaronDavis, J K… https://t.co/8GiqzOwvnD" +06/12/2018,Sports_celeb,@SteveNash,You know what? I just don’t need this abuse in my life... https://t.co/CtHxO7atEf +06/10/2018,Sports_celeb,@SteveNash,Who wants to mark this teenager @AlphonsoDavies ?? 👂🏼🤞🏽✌🏾👷🏼‍♂️💩 https://t.co/G0ZpooGu6j +06/10/2018,Sports_celeb,@SteveNash,💪🏽⚽️❤️ https://t.co/0eWaKOLVsh +06/08/2018,Sports_celeb,@SteveNash,"11th annual @brfootball x @SteveNashFdn Showdown, June 20th NYC. Get your tix here and get involved!… https://t.co/07VfUpGhlN" +06/08/2018,Sports_celeb,@SteveNash,Always amazed at the skills of some of #ShowdownNY’s bigs - @bismackbiyombo has feet! Don’t miss this year:… https://t.co/Z8mYYBBZ37 +06/02/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: We’re proud to welcome @MLSWORKS to #ShowdownNY on June 20th, and to be a part of the @MLS community, where everyone is w…" +06/01/2018,Sports_celeb,@SteveNash,🤔🧐 https://t.co/dvrDl2aSqU +05/31/2018,Sports_celeb,@SteveNash,"So much fun with @landondonovan and Ted Lasso - can’t wait to bring #ShowdownNY back! Get there, people:… https://t.co/GqK23FQ0qa" +05/29/2018,Sports_celeb,@SteveNash,"Started working last year when we were relegated.. learned from our mistakes, made a plan, got a ton of discipline… https://t.co/lSfiKGuU8r" +05/28/2018,Sports_celeb,@SteveNash,"Gracias, Rafa!! https://t.co/lLnuxdvCZ9" +05/28/2018,Sports_celeb,@SteveNash,"RT @kylemartino: What going from 3rd to 2nd division looks like in 🇪🇸 btw. + +❤️&⚽️ https://t.co/PjgSTzfUr5" +05/28/2018,Sports_celeb,@SteveNash,RT @stuholden: Vamos @RCD_Mallorca - scenes from Promotion parade in Palma via @manoloreina28 https://t.co/zvaMkRyNuY +05/27/2018,Sports_celeb,@SteveNash,Gracias Marco y felicidades por tu champions! https://t.co/gmiZeICnvQ +05/27/2018,Sports_celeb,@SteveNash,"Hire slow, fire fast. We’ll see how you do the rest of the trip. https://t.co/3sYa48o2iA" +05/25/2018,Sports_celeb,@SteveNash,I’m down! https://t.co/VWdUqBsciJ +05/24/2018,Sports_celeb,@SteveNash,. @lufthansa incredibly dissapointing. This will be our lasts flight together. +05/24/2018,Sports_celeb,@SteveNash,We talking bout practice???? https://t.co/i4ZuDMacp9 +05/21/2018,Sports_celeb,@SteveNash,Enjoying the last few minutes of Andres Iniesta‘s historic @FCBarcelona career. One of my all time favorites. Gra… https://t.co/9wQGjEWTIC +05/20/2018,Sports_celeb,@SteveNash,Our fans were incredible today! @RCD_Mallorca https://t.co/CREs3m9mgw +05/20/2018,Sports_celeb,@SteveNash,"@Jokowashere Good to know, thank you. See you in Miranda de Ebro!" +05/20/2018,Sports_celeb,@SteveNash,One more game for promotion! Proud of everyone who’s worked hard to put our club in this position. See you next wee… https://t.co/RtwpXDWeIY +05/20/2018,Sports_celeb,@SteveNash,Vamos! https://t.co/M8HeR94oJK +05/20/2018,Sports_celeb,@SteveNash,Well done fellas!! https://t.co/eOyqxY4JN4 +05/19/2018,Sports_celeb,@SteveNash,"RT @MarcHilberer: the number of school shootings that have happened since the year 2000 around the world: + +ENGLAND: 0 +GREECE: 1 +NETHERLAN…" +05/19/2018,Sports_celeb,@SteveNash,RT @SteveKerr: Over 75% of school shootings start with kids having access to unsecured and/or unsupervised guns at home. Gun owners have a… +05/17/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Love being #sponsoredbyLyft - thanks, @Lyft, for all you do! #greatassist https://t.co/Lk0ovfXRyQ" +05/17/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: We’re #springcleaning and making room in the locker room: all #ShowdownNY tees in our Make An Assist store now available… +05/16/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Coaches Ted Lasso and Beard couldn’t have been prouder of Steve and team at our 2016 Showdown - or could they? As we cou… +05/14/2018,Sports_celeb,@SteveNash,Dibs on a 2010? #assist #ShowdownNY https://t.co/IjhppDSFmF +05/13/2018,Sports_celeb,@SteveNash,@txbi_1 Zero guarantees any manager can win trophies especially when you consider spurs have a net spend of 400k pe… https://t.co/xxfPMqxoXE +05/13/2018,Sports_celeb,@SteveNash,Wouldn’t trade Pochettino for anyone... https://t.co/0EfoXkcsWI +05/13/2018,Sports_celeb,@SteveNash,👏👏🏽👏🏿 https://t.co/CkY0h8nrJg +05/13/2018,Sports_celeb,@SteveNash,Yes. #COYS +05/12/2018,Sports_celeb,@SteveNash,Felicidades! Excited for the playoff! https://t.co/wj31ce02C1 +05/10/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Alright, #CA - your turn! Register to vote today : @votedotorg (https://t.co/rtBb0zgzGo) has everything you need to get…" +05/10/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: With 6 wks to go til @BleacherReport presents #ShowdownNY, we’re counting down our top 6 #goal celebrations! This ‘10 mom…" +05/09/2018,Sports_celeb,@SteveNash,Had a mild stroke watching @SpursOfficial seal their champions league place today. Proud of my boys. #COYS ⚽️🏋🏿‍♂️💪🏽 +05/09/2018,Sports_celeb,@SteveNash,Our @SteveNashFdn #ShowdownNY is my El Classico + Wimbledon rolled into one - very excited to have the team… https://t.co/QXMWjB4Xo9 +05/09/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: It’s true! Excited to welcome @BleacherReport to #ShowdownNY! Tickets and info at https://t.co/dw39DlTYV1 - be there Ju… +05/06/2018,Sports_celeb,@SteveNash,Congratulations to all at our club for their efforts this season winning the league. Good luck preparing for the pr… https://t.co/aNGemdJFiO +05/03/2018,Sports_celeb,@SteveNash,Yes!! Go suns! https://t.co/1RSRTc5mqq +05/02/2018,Sports_celeb,@SteveNash,"Thank you, @Socceroof (and the team of Jonathan, JD, and @MearyJerome), for hosting our @stevenashfdn… https://t.co/MblJpk03a1" +05/01/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Just put a few of our leftover #CharityShield jerseys up for donation in the Make An Assist store - get yours today and g… +04/30/2018,Sports_celeb,@SteveNash,Get it Cap!!! https://t.co/cPlxiz3Mr2 +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: A big thank you to @thegemsaloonnyc @tableauwater @GuinnessUS @DrinkBODYARMOR @hotshotdrinks @greensplus and @HaloTopCrea… +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: So happy to have @NYCFC with us at the #CharityShield today @Socceroof! https://t.co/NcEId2h6ol +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Team Saanich with an opening match defeat by Rocinha but all is buzzing at the #CharityShield here at @socceroof! Thanks… +04/29/2018,Sports_celeb,@SteveNash,Quite a night last night - thank you to Guinness for hosting #CharityShield owners and players @thegemsaloonnyc and… https://t.co/fVlDhPbTWu +04/27/2018,Sports_celeb,@SteveNash,"Loved it! Luca, too. https://t.co/fGpmduAHIJ" +04/27/2018,Sports_celeb,@SteveNash,Kicking off a great weekend for soccer in the city tonight with the #CharityShield - keep it going: head to Yankee… https://t.co/kXax7aBB3G +04/27/2018,Sports_celeb,@SteveNash,I support @azedunited and these educators deserve proper support and funding from the AZ state legislature! https://t.co/Rv2x3MhiAI +04/26/2018,Sports_celeb,@SteveNash,Our kits are looking goooooood! Thanks to @Nike and @GuinnessUS for bringing three of my favourite things together… https://t.co/UL4g6u7X1X +04/25/2018,Sports_celeb,@SteveNash,"Come play soccer with me, @CharlieDavies9 @stuholden in NYC this Saturday April 28th. Sign up at… https://t.co/mMyjyc00Ut" +04/21/2018,Sports_celeb,@SteveNash,"Thanks to @thegemsaloonnyc for this! Looking forward to meeting the owners, and competing in our second… https://t.co/HvbxLV9xa4" +04/20/2018,Sports_celeb,@SteveNash,Can’t. Wait. Who’s on my team? https://t.co/6VTOcOPusx #CharityShield https://t.co/0ke3xMh2xI +04/19/2018,Sports_celeb,@SteveNash,I got a photo with the legend Ozzie! Watched him in awe as a little boy https://t.co/ICsANWAYBx +04/19/2018,Sports_celeb,@SteveNash,"Knowing Pop, it’s fair to assume Erin Popovich was an absolute legend. My deepest sympathies to Pop and his daughters." +04/13/2018,Sports_celeb,@SteveNash,"RT @SteveNash: My favourite pub for many reasons, including this one ⬇️: register to be there with us for the @SteveNashFdn #CharityShield…" +04/12/2018,Sports_celeb,@SteveNash,"My favourite pub for many reasons, including this one ⬇️: register to be there with us for the @SteveNashFdn… https://t.co/Xryi2LJTyj" +04/08/2018,Sports_celeb,@SteveNash,Vamos @RCD_Mallorca !! 3-1 https://t.co/PAOgCjzUcg +04/08/2018,Sports_celeb,@SteveNash,Sending all our love to these families and their community. So so sorry. https://t.co/NbjDbGoIVT +04/03/2018,Sports_celeb,@SteveNash,Congratulations to Hank and Danny Sedin on their historic careers. Thank you for being incredible role models to a… https://t.co/zT0oaZqECu +04/01/2018,Sports_celeb,@SteveNash,How good is Christian Eriksen?! +04/01/2018,Sports_celeb,@SteveNash,"Wow, thank you Mr Prime Minister! Oh Canada! 🇨🇦 https://t.co/5rul5309kg" +03/28/2018,Sports_celeb,@SteveNash,One month to go - let's do this! Sign up to have dinner with us and play some soccer in the city. . . .… https://t.co/LrEgrlOW31 +03/26/2018,Sports_celeb,@SteveNash,Can't wait. . . . https://t.co/l59yhVWxdZ +03/26/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Hey #AZ! Today is the last day to register to vote in the April 24th general election in #AZ08 - do it, and make your vo…" +03/25/2018,Sports_celeb,@SteveNash,"RT @Everytown: From Anchorage to Atlanta, yesterday millions of Americans marched for common-sense gun safety laws. In a few months, we'll…" +03/25/2018,Sports_celeb,@SteveNash,@TiagoEstv Obrigado! +03/24/2018,Sports_celeb,@SteveNash,@jasonlee1972a @pyle27 There is no sound argument to not wanting common sense gun laws. And there’s no common groun… https://t.co/uR1QnQdSzs +03/24/2018,Sports_celeb,@SteveNash,"@freemen_14 Yes, I’m pro choice. I don’t believe in mass shootings with semi automatic weapons." +03/24/2018,Sports_celeb,@SteveNash,"Watch Full Ep: https://t.co/PhZV7DOpwQ + +When shooting the basketball... something that is often overlooked, but pa… https://t.co/aPTZNbS0Hj" +03/24/2018,Sports_celeb,@SteveNash,I see you’ve really thought this through... https://t.co/LXUu1UqdCW +03/24/2018,Sports_celeb,@SteveNash,Already have and will again. https://t.co/Hsgaz3tMLF +03/24/2018,Sports_celeb,@SteveNash,. @marchforourlives @everytown Manhattan —> Hermosa Common sense gun laws #neveragain https://t.co/DYSFtowaOn +03/24/2018,Sports_celeb,@SteveNash,RT @kylemartino: Off to the train station to head down to DC & take a stand. Joining all the amazing people at #MarchForOurLives. #NeverAga… +03/24/2018,Sports_celeb,@SteveNash,RT @Dionsmusica: Heading to Washington D.C for the #MarchForOurLives with a group of students! Holla! #EnoughIsEnough #ChicagoStandUp #Stud… +03/24/2018,Sports_celeb,@SteveNash,RT @Everytown: NYC is getting ready to #MarchForOurLives. 💪 https://t.co/JHFxhkuR3J +03/24/2018,Sports_celeb,@SteveNash,I’m marching in LA today. Please find your nearest march and support this life and death matter. #NeverAgain https://t.co/CFMviwgUPu +03/22/2018,Sports_celeb,@SteveNash,👀 https://t.co/1p7BlGej37 +03/21/2018,Sports_celeb,@SteveNash,"Hyped for the 2nd annual @SteveNashFdn Charity Shield NYC April 27/28. Come play w/ me, @stuholden & win some doug… https://t.co/hDxHOnx212" +03/21/2018,Sports_celeb,@SteveNash,Can't wait: https://t.co/wU1q9rufiM +03/17/2018,Sports_celeb,@SteveNash,Had the honor of taking the post game selfie with our @RCD_Mallorca U18’s after their 2-1 win vs @RCDEspanyol VAM… https://t.co/Yk8BwOLRka +03/17/2018,Sports_celeb,@SteveNash,Can't wait for round 2! #CharityShield https://t.co/y87ZcIzBOn +03/16/2018,Sports_celeb,@SteveNash,❤️🖤 https://t.co/B5svvhObuU +03/16/2018,Sports_celeb,@SteveNash,Still buzzing from a great day at Hotspur way! Thank you @SpursOfficial #COYS https://t.co/l2fRSxQEQy +03/15/2018,Sports_celeb,@SteveNash,I mentioned that to him today https://t.co/ApanXwOh8f +03/15/2018,Sports_celeb,@SteveNash,Great time shooting this morning with my buddy @Robbie9Fowler. Not just a Liverpool legend but a fantastic fella! https://t.co/rSTD160A2d +03/14/2018,Sports_celeb,@SteveNash,Amazing day! https://t.co/mFJtKbGFza +03/14/2018,Sports_celeb,@SteveNash,Merci à toi! 💪🏼⚽️ https://t.co/RXZh2g9t08 +03/14/2018,Sports_celeb,@SteveNash,"Watch Full Ep 06: https://t.co/cvaTq7US9b + +We worked on creating space in order to take charge and put opponents i… https://t.co/jHFzHYr2Fo" +03/11/2018,Sports_celeb,@SteveNash,Amazing. I cried too.. https://t.co/q6FAxU9O0Q +03/11/2018,Sports_celeb,@SteveNash,Love me some Sonny! #COYS +03/11/2018,Sports_celeb,@SteveNash,"@hillimpact @SpursOfficial @Arsenal Your answer is even better than mine. My mum, Dad, grandparents, aunts, uncles,… https://t.co/Mlv5nckMLm" +03/11/2018,Sports_celeb,@SteveNash,Shin-Min Son!! +03/09/2018,Sports_celeb,@SteveNash,"@russbengtson @SteveFranchise3 What, travel? Sometimes." +03/09/2018,Sports_celeb,@SteveNash,@russbengtson @SteveFranchise3 May be hard to believe but he was a little more explosive than me +03/09/2018,Sports_celeb,@SteveNash,"So much bigger than basketball. Poverty, race, violence, addiction, loss. Amazing @SteveFranchise3 is still here a… https://t.co/CPMMZPAeAu" +03/08/2018,Sports_celeb,@SteveNash,@Cnyari @brfootball Thank you! +03/08/2018,Sports_celeb,@SteveNash,@HowardBeck Thanks! Gluten free? +03/08/2018,Sports_celeb,@SteveNash,@Nakerman Cheers! +03/08/2018,Sports_celeb,@SteveNash,@kylemartino Though I don’t have your touch and will never have your hair. Possible shift to radio? +03/08/2018,Sports_celeb,@SteveNash,RT @kylemartino: So pumped for my man @SteveNash. The man knows footy and boy can he play it too! Congrats brother. https://t.co/VclpoO12Uw +03/07/2018,Sports_celeb,@SteveNash,@gianluigibuffon .@gianluigibuffon grande Gigi. Buona Fortuna +03/07/2018,Sports_celeb,@SteveNash,@Jeongavic He scored off his shin though +03/07/2018,Sports_celeb,@SteveNash,Shin-Ming Son!!!!!!!!!!!!!!! #COYS +03/07/2018,Sports_celeb,@SteveNash,This is amazing! Except the let down part! Good luck Gigi. I hope Harry Kane shows you around London! https://t.co/YaL8zGIo3A +03/06/2018,Sports_celeb,@SteveNash,I signed the #MarchForOurLives petition. So proud and inspired by all these young people fighting for what they bel… https://t.co/NUS2XmAdwe +03/05/2018,Sports_celeb,@SteveNash,Had a blast on @PaulRabil ‘s podcast Suiting Up. Not only an incredible athlete but love his approach to media. Als… https://t.co/RFIjgzu4qi +03/05/2018,Sports_celeb,@SteveNash,Go Caps Go! Good start to the season with a 2-1 win over Montreal. 27k out to support. @WhitecapsFC +03/04/2018,Sports_celeb,@SteveNash,"Looking forward to today's @MLS @WhitecapsFC home opener at 3 o’clock PT, with our largest home opener crowd ever.… https://t.co/iig0g0i7gX" +03/03/2018,Sports_celeb,@SteveNash,Didn’t need my influence bro. #class #coys https://t.co/ISqoEWchBY +03/01/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: EPISODE 15: Link for the full conversation: https://t.co/CqSsj9qgBt + +This week we talk about @NBA All Star Weekend, basket…" +02/28/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Very excited to see @DICKS take such positive, powerful, accountable action. Thank you for helping to protect kids!" +02/28/2018,Sports_celeb,@SteveNash,RT @dannykanell: Pretty cool thing happened to me today... https://t.co/2cUDt04BwG +02/27/2018,Sports_celeb,@SteveNash,RT @DwyaneWade: This is Joaquin Oliver. He was one of the 17 young lives that were lost tragically at Douglas HighSchool in Parkland. Joaqu… +02/25/2018,Sports_celeb,@SteveNash,Kane #COYS +02/25/2018,Sports_celeb,@SteveNash,RT @Delta: Delta is reaching out to the NRA to let them know we will be ending their contract for discounted rates through our group travel… +02/25/2018,Sports_celeb,@SteveNash,You made us look good. Thanks @dmorey for having me. https://t.co/CWJdl5JMhg +02/23/2018,Sports_celeb,@SteveNash,"Vlog 7: https://t.co/DDQyfZQ4ZF + +My cousin Ezra is running the 2018 LA and Chicago Marathons for individuals with… https://t.co/Va1MbtOJD9" +02/23/2018,Sports_celeb,@SteveNash,"RT @KDTrey5: The Durant Center has been a dream of mine for a long time, excited to announce it's finally happening in Prince George's Coun…" +02/23/2018,Sports_celeb,@SteveNash,Love this guy. Keep fighting Bobby! https://t.co/rHUI6hvJ9d +02/22/2018,Sports_celeb,@SteveNash,I'm so inspired by the young people in America standing up for their future. I really believe it's our best chance… https://t.co/UbYmVmzESX +02/18/2018,Sports_celeb,@SteveNash,When the North London Derby comes to all star weekend https://t.co/TGPz7tfjBd +02/17/2018,Sports_celeb,@SteveNash,"For what, a week, a month, a year? Gun deaths in the uk are unheard of compared to our country. Saved countless li… https://t.co/0xE5qKs6TH" +02/17/2018,Sports_celeb,@SteveNash,@KingJames has changed the world for the better hundreds of times over. He’s a giver and a visionary who’s impactin… https://t.co/EmCW3snSbt +02/17/2018,Sports_celeb,@SteveNash,@KingJames has changed the world for the better hundreds of times over. He’s a giver and a visionary doing things e… https://t.co/XI6KtVjzDi +02/15/2018,Sports_celeb,@SteveNash,Stick to sports I know. Why not emulate the success of many countries limiting access to guns and save thousands of… https://t.co/t2q47TMzIl +02/15/2018,Sports_celeb,@SteveNash,"This is a brilliant argument. ‘You’re rich, so you’re wrong’. The probability of a good outcome when people have g… https://t.co/wsYKBwedzd" +02/15/2018,Sports_celeb,@SteveNash,The constitution is constantly being refined and changed. The gun lobby love to preach the good ‘ol constitution (v… https://t.co/XLDjpLDNCm +02/15/2018,Sports_celeb,@SteveNash,Good luck to you with that. The numbers say it’s more probable that something disastrous happens in your home then… https://t.co/v8b6nxro4c +02/15/2018,Sports_celeb,@SteveNash,Still waiting on a compelling argument for guns in America. Not one holds water. The brainwashing by those making m… https://t.co/mvot7MRkL3 +02/15/2018,Sports_celeb,@SteveNash,"Again, completely wrong. The rest of the world is having overwhelming success. What ‘innocent people’ people will… https://t.co/dS0FTQtLOk" +02/15/2018,Sports_celeb,@SteveNash,It is. It will save lives. When’s the last time someone had a gun in their home and it saved lives. I’ll wait... https://t.co/YUiZ5RzpLP +02/15/2018,Sports_celeb,@SteveNash,You’re kidding. Those numbers aren’t even in the neighborhood of American gun violence. https://t.co/Iu7zoZsQjc +02/15/2018,Sports_celeb,@SteveNash,RT @JasonKander: The leadership of the @NRA has an agenda and it ain’t got a damn thing to do with gun rights. It’s 100% about gun sales. T… +02/15/2018,Sports_celeb,@SteveNash,@caseyadamson These are not the facts. Someone please step in with real facts and stop the lies. +02/15/2018,Sports_celeb,@SteveNash,@udonomefoo @theekid13 Exactly. There’s also a culture that develops and grows with possibility and probability. Th… https://t.co/JrrhYArhEg +02/15/2018,Sports_celeb,@SteveNash,"But they’re not in other countries. Proof is in the numbers. Night and day, not even close. https://t.co/PG2f7w1jhU" +02/15/2018,Sports_celeb,@SteveNash,@citizensnip92 @Trojangabe92 Thank you. Mental illness is not an American problem it’s a human problem. Everywhere +02/15/2018,Sports_celeb,@SteveNash,RT @1adamm1: @SteveNash In Australia we had a buy back and a big tightening of laws. Has worked pretty well. Hard sell in the US unfortunat… +02/15/2018,Sports_celeb,@SteveNash,"@_Mementos_ @arrozcarlo @van_animals Let’s add hand guns, semi automatic, automatic etc etc" +02/15/2018,Sports_celeb,@SteveNash,@arrozcarlo @van_animals @_Mementos_ Come on +02/15/2018,Sports_celeb,@SteveNash,@van_animals @_Mementos_ And correct. Why create a new argument when the common sense one is plenty? +02/15/2018,Sports_celeb,@SteveNash,"@_Mementos_ Yes, tons. Let’s not compare issues. They’re not mutually exclusive. Both are wrong and terrible." +02/15/2018,Sports_celeb,@SteveNash,The rest of the world is having success prohibiting access to guns. I don’t see what the debate is about. It’s not… https://t.co/TByYy9w8e4 +02/14/2018,Sports_celeb,@SteveNash,My wife’s not on twitter so can I get away with asking mousa dembèlè to be my valentine? Pen pals may be more appropriate. #COYS +02/13/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Why we love supporting #KidsMove, #ProPlay and our other science-based programs to foster healthy, forward-facing athlete…" +02/12/2018,Sports_celeb,@SteveNash,I would appreciate it much more if they weren’t above @SpursOfficial in the table https://t.co/9zcISnRiqC +02/10/2018,Sports_celeb,@SteveNash,Ohh Mousa Dembèlè #COYS +02/08/2018,Sports_celeb,@SteveNash,Appreciate the love! Keep working https://t.co/F7PMksGfN1 +02/08/2018,Sports_celeb,@SteveNash,"Always fascinated by experienced, coaching lifers. Bob was great. https://t.co/Cl3XoJX0XK" +02/08/2018,Sports_celeb,@SteveNash,Thanks for all the love on my birfday! +02/08/2018,Sports_celeb,@SteveNash,44 👀 +02/07/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: Full conversation with Bob: https://t.co/LxH0YrW4CF + +Bob's currently the head coach of the @LAFC in the @MLS after coachin…" +02/05/2018,Sports_celeb,@SteveNash,"Full vid: https://t.co/eF9pdQmoMY + +A good shooter = technique + repetition + passion! https://t.co/oyMTHQDJII" +02/04/2018,Sports_celeb,@SteveNash,I need a drink. #COYS +02/01/2018,Sports_celeb,@SteveNash,"🎬https://t.co/7rFrpSDoEm + +A little message to be grateful for what we have & to have awareness of the #Mentalhealth… https://t.co/CrEWhc3eav" +01/31/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: It's #BellLetsTalk  day, people - share this @Bell_LetsTalk video and take time to share your compassion with those strug…" +01/30/2018,Sports_celeb,@SteveNash,Great screen by dirty kirty (Kurt Thomas). He’s too tough for Twitter btw https://t.co/GQ6iBVxXth +01/30/2018,Sports_celeb,@SteveNash,Its in the genes! https://t.co/oHsJLACT2R +01/28/2018,Sports_celeb,@SteveNash,"RT @FeRRanGiner: Que llueve, que hace viento , que es un campo complicado....pues este equipo se pone el mono de trabajo y lucha y compite…" +01/28/2018,Sports_celeb,@SteveNash,3 Big Points! Vamos! https://t.co/3Ueejl6dlK +01/26/2018,Sports_celeb,@SteveNash,"Watch full vid: https://t.co/jmoH174fHd + +Introducing @ChelseyGipson to #giveandgo, a talented player from #LMU with… https://t.co/Xt2RxC5R7s" +01/25/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: EPISODE 13: Full vid 👉🏻 https://t.co/34aBOgXoVZ + +We decided not to go live this one. We made it shorter and we hand picke…" +01/24/2018,Sports_celeb,@SteveNash,"EPISODE 5: In the gym... +https://t.co/SHNcshoCJk + +Staying in shape is crucial for me. The kid in me needs to play… https://t.co/FlyjD6maHc" +07/02/2018,Sports_celeb,@J_No24,"My Brotha there will Never be another Bam💥BAmKam! #1,000Salute!👊🏽 https://t.co/woZCINwrDu" +07/01/2018,Sports_celeb,@J_No24,@VTOSPORTS @ijt_d Nice&Smooth transition 😎 +07/01/2018,Sports_celeb,@J_No24,"@hamp_big It’s sad that you only see the World through 1 microscopic lens, but 🤷🏽‍♂️ that’s ur issue. If I was to a… https://t.co/dTgEafRjPD" +07/01/2018,Sports_celeb,@J_No24,RT @DhaSickest: When they say video gaming is a huge distraction 😂🤷🏾‍♂️🤦🏾‍♂️ #fuckcancer https://t.co/OI04rC52pP +07/01/2018,Sports_celeb,@J_No24,"RT @EmilyGiangreco: Love having a guy like @DhaSickest in #DC + +The #NFL rookie raised over $21K for the Mary Bird Perkins Cancer Center in…" +06/30/2018,Sports_celeb,@J_No24,"RT @CCUChiefofStaff: Thank you, @J_No24. You make us proud! https://t.co/EPE9RDRpwC" +06/29/2018,Sports_celeb,@J_No24,Look who pop out of the blue 👀@SharnaBurgess 👀going LiVe on Sharna ig +06/29/2018,Sports_celeb,@J_No24,RT @DhaSickest: And again... if you beat my score you win $200🤷🏾‍♂️ https://t.co/8uQEVcjQQn +06/29/2018,Sports_celeb,@J_No24,RT @nrarmour: “It really doesn’t take a lot to be a good human.” I love everything about @ByMikeJones’ story on @J_No24 and @demario__davi… +06/28/2018,Sports_celeb,@J_No24,"RT @RAICESTEXAS: ”If you see wrong, you stand up and do something about it.” @demario__davis + +@J_No24 and @demario__davis are doing the wo…" +06/28/2018,Sports_celeb,@J_No24,RT @SNFonNBC: .@J_No24 & @demario__davis made a huge impact for kids in need this week. 🙌 https://t.co/1FZZZFFBF2 +06/28/2018,Sports_celeb,@J_No24,"@demario__davis What a grand day! Her spirit was on 1,000! ❤️her https://t.co/4owBwOvjk3" +06/28/2018,Sports_celeb,@J_No24,I did not start this. But I will help to end this. #livewell.dowell.by.others https://t.co/7sMGf8gwOU +06/28/2018,Sports_celeb,@J_No24,@barbagger Everyone matters.. would you like to help share your time an $ to the efforts of everyone you just named sir? +06/28/2018,Sports_celeb,@J_No24,RT @WillBlackmon: @CallinOutBullS Me and @J_No24 are homies! https://t.co/YmWtCqO4fa +06/27/2018,Sports_celeb,@J_No24,"RT @ByKimberleyA: Worlds colliding... + +#Redskins CB @J_No24 teamed up with former #Jets LB @demario__davis to make a 3a Walmart run in San…" +06/27/2018,Sports_celeb,@J_No24,RT @TishCarmona: @J_No24 is one of the best humans I know and it isn’t even close. He spent last night buying items for @RAICESTEXAS to hel… +06/27/2018,Sports_celeb,@J_No24,RT @SocialNetCynic: @RAICESTEXAS @demario__davis @J_No24 Those guys are doing the Lord's work! ❤️❤️❤️❤️ +06/27/2018,Sports_celeb,@J_No24,RT @httr1982: @J_No24 and another player I think just bought a whole damn kids section at Walmart and took care of a lot of needy Americans… +06/27/2018,Sports_celeb,@J_No24,"RT @demario__davis: I don’t care how much the world hates, i will always choose love. #BorderChildren https://t.co/JSWr37Nyhe" +06/27/2018,Sports_celeb,@J_No24,RT @RAICESTEXAS: We are so thrilled to have Pro Football Player @J_No24 volunteering with us today! We already put him to work assembling b… +06/26/2018,Sports_celeb,@J_No24,"RT @lucymatz: .@J_No24 is a natural interviewer! Really loving all of his on-point, entertaining, burning questions for @Blaney that are in…" +06/26/2018,Sports_celeb,@J_No24,MesSi ThE 🦁 That’s all gotta say abt that Haters Going to hate regardless. Best In The World. +06/24/2018,Sports_celeb,@J_No24,RT @KamChancellor: #ART https://t.co/xHrwuwD00a +06/23/2018,Sports_celeb,@J_No24,OMYGOSH😱 TOnYfreakKroOs!!!! WORLDCLASS ⚽️GOAL 😨😨 +06/23/2018,Sports_celeb,@J_No24,RT @SherrodMartin23: Everything Superb with @J_No24 #SherrodTheBarber at @SuperbGrooming https://t.co/snoRKNGEGZ +06/22/2018,Sports_celeb,@J_No24,🤣 dat da-blam Wilksy! 🤪😂 https://t.co/uWovOwH4dt +06/22/2018,Sports_celeb,@J_No24,"In Hott🔥Atlanta, what you think is abt to happen 👀 +A. Fresh cut +B. Shape up https://t.co/ZRowIAZyjQ" +06/19/2018,Sports_celeb,@J_No24,"E.N.T.R.E.P.R.E.N.E.U.R +Someone who's willing to sacrifice sleep, sanity, and savings to grow an idea, a dreamer ,… https://t.co/xUeYsicTIL" +06/18/2018,Sports_celeb,@J_No24,3 of the BEST!!! LuKAKu!!!⚽️⚽️⚽️ +06/18/2018,Sports_celeb,@J_No24,DE Bruyne what a Pass 😷 Sick!!! +06/17/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/AERH1ogmZV +06/16/2018,Sports_celeb,@J_No24,@TyeSmithCB How many L’sssss +06/16/2018,Sports_celeb,@J_No24,"I guess this IHOP* didn’t get the memo😒 +it’s #IHOB😡 +😂 https://t.co/fKEDo0qnMp" +06/15/2018,Sports_celeb,@J_No24,Filthy!!!!! +06/15/2018,Sports_celeb,@J_No24,That was Nasty!!!! Ronaldo Ronaldo Ronaldo!!! 3* of the BEST!!! Goallllll⚽️⚽️⚽️ +06/14/2018,Sports_celeb,@J_No24,I am honored to accept the 2018 Champion of Youth Award tonight from @BGCA_Clubs! There are so many ways you can he… https://t.co/OSTFIPSuUo +06/12/2018,Sports_celeb,@J_No24,I can think of a lot of B words to describe this but all I really want to know is... does this mean no more strawbe… https://t.co/n6CvMJ0e2Z +06/09/2018,Sports_celeb,@J_No24,Ok @DhaSickest Run it back Cavs in7!! 😆 +06/09/2018,Sports_celeb,@J_No24,Ok @iammsuzy run it back Cavs in 7!! 😂 +06/09/2018,Sports_celeb,@J_No24,https://t.co/rS3O4LJbv7 +06/09/2018,Sports_celeb,@J_No24,Right now these Warriors on #THANOS💪🏽Level. . GAWD! https://t.co/qtpOpq0ANN +06/08/2018,Sports_celeb,@J_No24,"The days may be long or challenging, but you gotta push forward and work towards your goals. Love what you do and s… https://t.co/8k461YdiBa" +06/08/2018,Sports_celeb,@J_No24,So AGAIN I say who’s going to the Caps parade!??? 😆 Darn one heck of a Job! Capitals 💯NHL🏆 +06/08/2018,Sports_celeb,@J_No24,RT @CO_MacGyver: The doctor is IN! @J_No24 https://t.co/wCZsDLaydF +06/07/2018,Sports_celeb,@J_No24,"Treasures of Sea 🌊 +Doctor👨🏽‍⚕️Norman is in Effect! @CCUChanticleers https://t.co/QxvlB5mfTK" +06/07/2018,Sports_celeb,@J_No24,RT @DhaSickest: Congrats brother @J_No24 💯💪🏾 +06/07/2018,Sports_celeb,@J_No24,Daurantchalla The 🧙🏾‍♂️Grim Reaper!!! +06/05/2018,Sports_celeb,@J_No24,"@Tparks98 @RapSheet 🤣😂 That is true, Nevermind 🤦🏽‍♂️" +06/05/2018,Sports_celeb,@J_No24,Who’s going to the parade for the Caps tho 👀 the way they played tonight.. #Electricfying⚡️⚡️ +06/05/2018,Sports_celeb,@J_No24,@RapSheet Why is this impeachment taking so Damn Long 😒 +06/05/2018,Sports_celeb,@J_No24,🦇🦇🦇 https://t.co/TI2kNhRSLf +06/04/2018,Sports_celeb,@J_No24,Thank you to everyone who came out for our @Redskins 5th annual White Attire Charity Party to benefit #BGCGW and… https://t.co/MS0q02oNjH +06/04/2018,Sports_celeb,@J_No24,StephCurRy = *Shooter of the Century* +06/04/2018,Sports_celeb,@J_No24,Game.Set.Match! +06/03/2018,Sports_celeb,@J_No24,RT @mzkellymac: Good seeing my SC peeps today in the #QueenCity HEY @J_No24 we miss U babe! https://t.co/WbR1wH14dk +06/02/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/kGcOT75orW +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA Somebody sounds Salty +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA I had 🕰 TODAY! Hah +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA Get off Twitter 💀😂 +06/01/2018,Sports_celeb,@J_No24,JR tho 🌾👀🌾 +05/31/2018,Sports_celeb,@J_No24,You talking about a #STICKSAVE!!! 😨😱🤯 +05/30/2018,Sports_celeb,@J_No24,@VernonDavis85 and I are bringing back the #WhiteParty this Sat to raise money for @Starz24org and #BGCGW at… https://t.co/mLhzPFUpxM +05/26/2018,Sports_celeb,@J_No24,First weekend in over a month.. #mood https://t.co/0wEPTXnXp0 +05/26/2018,Sports_celeb,@J_No24,"RT @30SECONDSTOMARS: Major props to @J_No24 + @SharnaBurgess for their incredible freestyle to #WalkOnWater on @DancingABC! 💃 🕺 #DWTS + +htt…" +05/25/2018,Sports_celeb,@J_No24,Catch me on @LenosGarage tonight at 10pm on CNBC. Spoiler alert 🚨 he doesn’t kill me. 🚘 https://t.co/CN0aF9b3Rj +05/24/2018,Sports_celeb,@J_No24,"RT @LenosGarage: The 1968 Shelby Mustang KR is NFL cornerback, @J_No24's dream car. + +Don't miss an all new episode of #JayLenosGarage TOMOR…" +05/23/2018,Sports_celeb,@J_No24,The last dance. Grateful for this experience and everything I learned from it. Thank you @SharnaBurgess @DancingABC… https://t.co/XFtdg1nPTV +05/22/2018,Sports_celeb,@J_No24,"Man, what a Night! That was fella’s and at the end of the day, it’s HTTR💯 #☝🏽 https://t.co/lalPxNuG0M" +05/22/2018,Sports_celeb,@J_No24,RT @Tspoon90: So glad we got to support our bro @J_No24 !!!! https://t.co/o3FERcH767 +05/22/2018,Sports_celeb,@J_No24,Confirmed 😜 https://t.co/A93O2iZFi6 +05/21/2018,Sports_celeb,@J_No24,There's only a 5 minute voting window tonight during he live show so make sure you tune in! @DancingABC… https://t.co/93i6TJn1bn +05/21/2018,Sports_celeb,@J_No24,There's only one chance to vote during tonight's finale so make sure you tune in and go to https://t.co/hC99xHx204… https://t.co/qyqchWmuDK +05/21/2018,Sports_celeb,@J_No24,THIS IS IT #GameTime @dancingabc @SharnaBurgess https://t.co/56vDOs5j74 +05/20/2018,Sports_celeb,@J_No24,Tomorrow! We're putting in work on this final dance. Hope you all tune in. #TeamBackThatPassUp @DancingABC https://t.co/pPi1xVOohz +05/19/2018,Sports_celeb,@J_No24,"I know you guys have been asking so going to give you a sneak peak of me and @SharnaBurgess , LIVE from my IG right now @Jno24" +05/18/2018,Sports_celeb,@J_No24,We got this @SharnaBurgess https://t.co/889SUvdWB8 +05/16/2018,Sports_celeb,@J_No24,"RT @httroundup: From @DancingABC to @EAMaddenNFL, @J_No24 can do it all! https://t.co/nLIPZIpwN2" +05/15/2018,Sports_celeb,@J_No24,😂👍🏽RT @QueenShar17: @annaoverload1 @SharnaBurgess @J_No24 Is that awful I’m paying people to vote?! Lol +05/15/2018,Sports_celeb,@J_No24,RT @QueenShar17: 558 votes plus two co-workers voting all afternoon (they get to leave an hour early for their trouble) for @SharnaBurgess… +05/15/2018,Sports_celeb,@J_No24,RT @merritt_4245: The #SharnaSquad voting for Josh and Sharna 😂❤️ Let's help them take home that mirrorball!… https://t.co/8DS0X1KSwR +05/15/2018,Sports_celeb,@J_No24,RT @SharnaSquad95: There's still time to vote for @SharnaBurgess and @J_No24! Please let's help get them that mirrorball! Here's the link t… +05/15/2018,Sports_celeb,@J_No24,We are so grateful to be in the finals. 🙏 Thank you to everyone who voted. The journey continues! If you haven’t vo… https://t.co/h3ek16tsdj +05/15/2018,Sports_celeb,@J_No24,👌🏾 https://t.co/zG1yV8cOHQ +05/15/2018,Sports_celeb,@J_No24,We made it to the finals but we still need your votes to take home the mirror ball! You can vote online until 8pm E… https://t.co/M3NxdsL0ns +05/15/2018,Sports_celeb,@J_No24,RT @DeAngeloHall23: To everyone who sent their love and wishes thank you but I haven’t retired. However I do think I’ve played my last foot… +05/15/2018,Sports_celeb,@J_No24,"RT @DancingABC: Our final Ballroom Battle: Salsa with @mazdzer and @WitneyCarson taking on @J_No24 and @SharnaBurgess! 🔥 + +https://t.co/Zw5l…" +05/15/2018,Sports_celeb,@J_No24,Voting is open https://t.co/XJDFRQPm56 #TeamBackThatPassUp 🙏🏾 Let's do this thing @DancingABC https://t.co/s5ViCee6kc +05/14/2018,Sports_celeb,@J_No24,There's going to be a LIVE vote during tonight's show. You'll have to watch to find out when! Use this link… https://t.co/7jWlfb0pyB +05/14/2018,Sports_celeb,@J_No24,Team back that pASS up @SharnaBurgess https://t.co/3UBdgDjYT2 +05/14/2018,Sports_celeb,@J_No24,@BGCA_Clubs @DancingABC 🙏🏾 +05/14/2018,Sports_celeb,@J_No24,Going live on @SharnaBurgess Instagram right now +05/14/2018,Sports_celeb,@J_No24,Tonight is going to be intense 😬 8pm on @DancingABC #TeamBackThatPassUp https://t.co/JPbRm5p7I6 +05/12/2018,Sports_celeb,@J_No24,well if shirtless is what it takes to Win the mirror ball then 🤷🏽‍♂️ shirtless is what you give the people. 😂… https://t.co/PZBQjBO2Pg +05/12/2018,Sports_celeb,@J_No24,"RT @ShaunOHara60: Fun show today @NFLTotalAccess +LBL with the #MicDrop!!! (Or IFB😱) +Thankful @J_No24 found his shirt😂 #WheresTheSmoke? h…" +05/12/2018,Sports_celeb,@J_No24,😊 https://t.co/QDPreCsrmj +05/11/2018,Sports_celeb,@J_No24,Recently my life has been about 2 things... football and dancing. Catch us tonight talking about both on NFL Total… https://t.co/R9jpwmstam +05/09/2018,Sports_celeb,@J_No24,"RT @ChaunceyCCU: Keep voting for my guy @J_No24!! I bet @SharnaBurgess is happy I taught him all those moves. + +https://t.co/a83aaIDqpV http…" +05/08/2018,Sports_celeb,@J_No24,There's still time to vote to help keep us in for the finale! https://t.co/AUvkFVLG88 #TeamBackThatPassUp https://t.co/LtUWWIUxEY +05/08/2018,Sports_celeb,@J_No24,Voting is open https://t.co/XJDFRR6XtG 🙏🏾 https://t.co/tsryTvaGQA +05/08/2018,Sports_celeb,@J_No24,RT @Redskins: Voting is now OPEN for Dancing with the Stars! Let's make sure @J_No24 & @SharnaBurgess keep dancing! #HTTR #BackThatPassUp… +05/08/2018,Sports_celeb,@J_No24,"RT @Redskins: You heard him, #Redskins Nation! Go tune in to @DancingABC and vote for #TeamBackThatPassUp! + +Vote: https://t.co/xXOqJL7mY9 h…" +05/08/2018,Sports_celeb,@J_No24,RT @Redskins: Behind the scenes at @DancingABC practice with @J_No24 & @SharnaBurgess! Visit https://t.co/xXOqJL7mY9 at 8pm to vote for the… +05/07/2018,Sports_celeb,@J_No24,Listen to my boy @ChuckLiddell. Vote for #TeamBackThatPassUp @DancingABC 🤛 https://t.co/GGjXGUWr5q +05/07/2018,Sports_celeb,@J_No24,"RT @WendyTStone: @J_No24 Hey Josh, can I get a shout out. I’m a teacher! I teach 6-8 grade PE! I’m also a big Skins fan! #HTTR" +05/03/2018,Sports_celeb,@J_No24,Hey @SharnaBurgess should we try a dance move like this? https://t.co/mUkPa5IiJn +05/02/2018,Sports_celeb,@J_No24,Going LIVE Now on @SharnaBurgess InstaG.!! You don’t wanna miss this.. +05/01/2018,Sports_celeb,@J_No24,RT @paul_chris27: Guess we ain’t taking off🙅🏼‍♂️✈️ @J_No24 https://t.co/EYkuKJO0xU +05/01/2018,Sports_celeb,@J_No24,"RT @Jeanine_Juliano: Words don’t even explain how PROUD I am! @J_No24 you never seize to amaze me, almost 3 years of working with you and I…" +05/01/2018,Sports_celeb,@J_No24,RT @KapriBibbs: I just voted for #TeamBackThatPassUp @J_No24 & @SharnaBurgess on @DancingABC! Vote for your favorites now! #DWTS https://t.… +05/01/2018,Sports_celeb,@J_No24,"RT @ElectrfyingNOW: Congratulations, to the gorgeous @SharnaBurgess & the styling @J_No24 on #DWTS (@DancingABC) preforming a SUPERIOR Cha…" +05/01/2018,Sports_celeb,@J_No24,"RT @DancingABC: A very fluid Cha Cha courtesy of @J_No24 and @SharnaBurgess! #TeamBackThatPassUp bring the finesse! +#DWTS: Athletes https:…" +05/01/2018,Sports_celeb,@J_No24,👊🏽 https://t.co/jbruoM61aG +05/01/2018,Sports_celeb,@J_No24,👊🏽 https://t.co/o1sWHoCKrn +05/01/2018,Sports_celeb,@J_No24,RT @TUoffTOz: Hahahaha the bro killed it @J_No24 y’all gotta go vote +05/01/2018,Sports_celeb,@J_No24,🤙🏽 https://t.co/3F4ez8cI4K +05/01/2018,Sports_celeb,@J_No24,RT @GMA: Just 100% finessed that ballroom floor! WOW! @sharnaburgess & Pro Bowl Cornerback @J_No24! @DancingABC #DWTS @NFL @RedSkins https:… +05/01/2018,Sports_celeb,@J_No24,"RT @HinchGalloway: Vote!!!!! #TeamBackThatPassUp @DancingABC @J_No24 +@SharnaBurgess +https://t.co/dFw6CKcklr" +05/01/2018,Sports_celeb,@J_No24,All these performances are INCREDIBLE competition is real #dwts +05/01/2018,Sports_celeb,@J_No24,"RT @Redskins: Get your @DancingABC vote in for @J_No24 & @SharnaBurgess AKA ""Team Back That Pass Up""! + +Vote: https://t.co/gEmLR58J5j https:…" +05/01/2018,Sports_celeb,@J_No24,The live voting link is now open. This determines who goes home tonight! #TeamBackThatPassUp… https://t.co/jaJ6hYafSC +04/30/2018,Sports_celeb,@J_No24,There’s Jonny!! LIVE in 5.. https://t.co/9e5bxKPdZK +04/30/2018,Sports_celeb,@J_No24,GAME TIME! Don't forget to vote! https://t.co/XJDFRQPm56 or call 1-800-868-3407 #TeamBackThatPassUp @DancingABC… https://t.co/RSIxzWvrux +04/30/2018,Sports_celeb,@J_No24,"RT @CoastalFootball: Support Josh Norman and Sharna Burgess on Dancing with the Stars Athletes, which premiers tonight (April 30) at 8 pm (…" +04/30/2018,Sports_celeb,@J_No24,Tonight's the night! 🕺🏽💃🏻 8pm @DancingABC #TeamBackThatPassUp @SharnaBurgess https://t.co/8iGukb6Hrm +04/28/2018,Sports_celeb,@J_No24,"@DhaSickest Welcome, young Gun. This is #HTTR Land! Looking forward to you helping us-@Redskins get Better💯" +04/27/2018,Sports_celeb,@J_No24,@jasonrmcintyre 🤦🏽‍♂️ how does your key card to @FS1 work everyday... 🤷🏽‍♂️ u cant make this up +04/27/2018,Sports_celeb,@J_No24,RT @Mason_Foster: “Take a donkey & a hoss to make a mule” @Anderson_365 we on now +04/27/2018,Sports_celeb,@J_No24,"Welcome, Welcome Big fella, #DaRonPayne! +Guess we got Roll-Dam🐘Tide all in D.C!" +04/27/2018,Sports_celeb,@J_No24,@Redskins 😬 +04/27/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/XbHsZzVfMS +04/27/2018,Sports_celeb,@J_No24,RT @ShaqThompson_7: Congrats @gregolsen88 https://t.co/fpyKLQ41mA +04/27/2018,Sports_celeb,@J_No24,RT @iammsuzy: Why we never jump on the people that wait til day of the draft to pull skeletons out the closet ? Yal real cowards for that.… +04/26/2018,Sports_celeb,@J_No24,#VintageLeBronJamesSalute` +04/25/2018,Sports_celeb,@J_No24,Who needs weights when you have @SharnaBurgess 💪🏾 https://t.co/MJpjWTFRBf +04/24/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: “The fight is won or lost far away from witnesses - behind the lines, in the gym, and out there on the road, long before…" +04/23/2018,Sports_celeb,@J_No24,RT @Redskins: .@J_No24 says 2018 is looking bright & promising as #Redskins defense focuses on discipline and attention to details. #HTTR h… +04/23/2018,Sports_celeb,@J_No24,WWW🤙🏽😜 https://t.co/rc2VBLy7bF +04/23/2018,Sports_celeb,@J_No24,RT @mgo_24: 2 years ago on this day the @Redskins made the bessssttt move of their entire organization in history and signed the best Corne… +04/23/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: Front row at the game, see if you can spot us ;) https://t.co/IzNBIeG4Vt" +04/23/2018,Sports_celeb,@J_No24,@WashWizards Let’s Go!!! It’s CrunchTime.. +04/23/2018,Sports_celeb,@J_No24,This Game is really Exciting!!! 😆 +04/21/2018,Sports_celeb,@J_No24,@ShaqThompson_7 Happy Bday Buddy! +04/21/2018,Sports_celeb,@J_No24,RT @CJLaBoy: Wishing @Panthers stud LB @ShaqThompson_7 a very Happy Birthday. https://t.co/18Bmz1H3iW +04/21/2018,Sports_celeb,@J_No24,Going LIVE on @SharnaBurgess iG in 20mins 7:30pm! Check us out! +04/21/2018,Sports_celeb,@J_No24,"https://t.co/CQIFgemM25 +“Rise & ☀️ which one are you Today!” +Hunter or Hunted" +04/20/2018,Sports_celeb,@J_No24,"🤣😭😭 YeA papi got me!🤦🏽‍♂️ + Next time it’s on!😆 https://t.co/bfTYzHpva4" +04/20/2018,Sports_celeb,@J_No24,😂🤣😭😭 got me again 🤦🏽‍♂️😂 https://t.co/GhHRqKBOs3 +04/20/2018,Sports_celeb,@J_No24,I 😍 this @SharnaBurgess https://t.co/MjMEjOjmJg +04/20/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: Girl you looks good, won't you back that pass up? 🏈💃🏻🕺🏾😆 + +You guys voted and the decisions made!!! You’re lookin at #Tea…" +04/20/2018,Sports_celeb,@J_No24,"https://t.co/hcRt6krz3V +Please tweet out “Way to take the lead @NYGovCuomo. Florida needs to follow suit” + -… https://t.co/B8B9odBDke" +04/18/2018,Sports_celeb,@J_No24,That side eye tho 👀 @SharnaBurgess https://t.co/kAeYPWbxoZ +04/18/2018,Sports_celeb,@J_No24,"Madden Bowl, who you got?! D.C. native @YoungDrini is my pick … Complete and submit a bracket for a chance to earn… https://t.co/yXUAkywjVl" +04/15/2018,Sports_celeb,@J_No24,"RT @TG3II: Gurley M.A.D.E was a Success. Thank you so much to everyone for making this possible. @ Tarboro,… https://t.co/V2FGvsZDUQ" +04/15/2018,Sports_celeb,@J_No24,"RT @stephen_alsop: @SharnaBurgess @J_No24 is the best , I met him in Charlotte, NC. I am rooting for you guys! https://t.co/4UPcVIIdyT" +04/15/2018,Sports_celeb,@J_No24,"RT @merritt_4245: So excited for this team! They're totally winning this mirrorball😍 + +I made up the #TeamTangosAndTouchdowns name and idk…" +04/15/2018,Sports_celeb,@J_No24,RT @sharnasquadxx: Wow oh wow I love my team so much 💞💞🤧💥 @SharnaBurgess @J_No24 https://t.co/B1Tu7PYpcy +04/15/2018,Sports_celeb,@J_No24,RT @AussieSharna21: @SharnaBurgess got it in slo mo😂😂 @J_No24 https://t.co/PJ5aqbOe7f +04/15/2018,Sports_celeb,@J_No24,@AussieSharna21 @SharnaBurgess 😂😂 +04/15/2018,Sports_celeb,@J_No24,@neilreynoldsnfl 🤨 +04/14/2018,Sports_celeb,@J_No24,Going LIVE! From @SharnaBurgess instaG! Right Now! +04/14/2018,Sports_celeb,@J_No24,"RT @Redskins: Get ready to see @J_No24 on @DancingABC this summer! + +📚: https://t.co/NW263d64Q9 https://t.co/apLbPLsrlp" +04/13/2018,Sports_celeb,@J_No24,https://t.co/H0S3G3zQZO ToooooO 😆😆@SharnaBurgess let’s get em 🐆Rawr!! Hahaha.. +04/13/2018,Sports_celeb,@J_No24,That’s my Partnah! Jaguar 🐆Rawrr!! 😆 https://t.co/hEHXUjYf7p +04/13/2018,Sports_celeb,@J_No24,"RT @merritt_4245: Welcome to the #SharnaSquad, Josh! @J_No24 + +We're always here to support you guys, and we'll be voting for you! + +Also j…" +04/13/2018,Sports_celeb,@J_No24,RT @dwtsem: Okay @SharnaBurgess i agree the reason @J_No24 is doing the show is everything 😭😭😭😭 #doitforthekids ❤️ +04/13/2018,Sports_celeb,@J_No24,RT @dee22ann: OMG 😂 @J_No24 !! ⛷ https://t.co/ztZuwCiCgD +04/13/2018,Sports_celeb,@J_No24,We are about to go LIVE!!! on @SharnaBurgess Instagram Right Now! +04/13/2018,Sports_celeb,@J_No24,ICE❄️COLD https://t.co/nASr3DoX9N +04/11/2018,Sports_celeb,@J_No24,"RT @MichaelGaskinSC: Had the great honor of meeting Josh Norman (@J_No24), athlete extraordinaire, at Saturday's annual #Starz24 celebrity…" +04/10/2018,Sports_celeb,@J_No24,RT @SpikesC2: James and I caught two shirts at @Norman_Starz24 basketball game Saturday. We decided to give them to two students who did th… +04/10/2018,Sports_celeb,@J_No24,"Thank you to @On_Decker and all of the sponsors, especially our presenting sponsor @MerrillEdge , all of the player… https://t.co/5QGMaq0Hon" +04/10/2018,Sports_celeb,@J_No24,"RT @Redskins: This past weekend @J_No24 hosted his annual @Norman_Starz24 basketball game back home in Greenwood, S.C. + +📚: https://t.co/a4h…" +04/09/2018,Sports_celeb,@J_No24,1000🔥🔥🔥 https://t.co/7JpE1tgcXy +04/08/2018,Sports_celeb,@J_No24,"RT @J_No24: Huge thank you to @MerrillEdge for being the title sponsor for my 6th annual celebrity basketball game! +#starz24 #merrilledge…" +04/07/2018,Sports_celeb,@J_No24,"Huge thank you to @MerrillEdge for being the title sponsor for my 6th annual celebrity basketball game! +#starz24… https://t.co/kgQCQ8C5GL" +04/07/2018,Sports_celeb,@J_No24,Caption this HA! 😎 @kk_mr93 https://t.co/UEntjwSQFh +04/06/2018,Sports_celeb,@J_No24,Hey 👀 out @Redskins fans! I’m coming to you live today on @NFLNetwork with @WillieMcGinest & @LindsayRhodes on… https://t.co/8E83t6v0jr +04/06/2018,Sports_celeb,@J_No24,"RT @BGCA_Clubs: Thank you, @J_No24 for your support and commitment to Puerto Rico and Club kids! #greatfutures https://t.co/l8HDA1nPtB" +04/05/2018,Sports_celeb,@J_No24,"RT @ToniKombucha: @undisputed @J_No24 J No as smooth as he is on the field deflecting balls and catching interceptions, he's even smoother…" +04/03/2018,Sports_celeb,@J_No24,@_willcompton hey buddy seemed like just yesterday we spoke about all this An look what end up coming your way.. go… https://t.co/YRI3hsE9Au +04/03/2018,Sports_celeb,@J_No24,"RT @_willcompton: #TitanUp 🍻 + +Can’t wait to get to work w my new teammates and coaches 🤙🏼 https://t.co/1n9TxCbTeA" +04/03/2018,Sports_celeb,@J_No24,💪🏽👊🏽 https://t.co/VmBzSgokBS +04/03/2018,Sports_celeb,@J_No24,RT @NFL: Former Redskins LB @_willcompton signing with @Titans: https://t.co/xAiD9QKt2D https://t.co/yMbkfoqjLv +04/02/2018,Sports_celeb,@J_No24,"Everybody Got going to the Redskins jokes today I see, how bout make them realistic😎and NOT #FAKE" +04/02/2018,Sports_celeb,@J_No24,😂😂 mines still was better! https://t.co/tHQtm99eUu +03/29/2018,Sports_celeb,@J_No24,@J_No24 its actually a track & Football field behind the gate ☠️ +03/29/2018,Sports_celeb,@J_No24,Working in the Darkness makes you Stronger💪🏽 when you step into the Light💯 https://t.co/sRc2UAZfil +03/28/2018,Sports_celeb,@J_No24,"@iammsuzy wateva I just saw your video put a shirt on an stop acting light skin. Oops my bad you are 🤷🏽‍♂️ +😂" +03/28/2018,Sports_celeb,@J_No24,"@iammsuzy Goodluck buddy, make the best of every opportunity you get now! Sucks we won’t get to strap up with one a… https://t.co/NuJWW4HO6F" +03/28/2018,Sports_celeb,@J_No24,"RT @NFL: 🚨 TRADE ALERT! 🚨 + +Su'a Cravens is heading to Denver: https://t.co/jH7nhQFp3x https://t.co/W5pSGNlkIn" +03/28/2018,Sports_celeb,@J_No24,"@Papi_snoop 5pm FIU track! +Nothin else needs be said." +03/28/2018,Sports_celeb,@J_No24,"@Papi_snoop 😏 are you in Miami, young gun.." +03/27/2018,Sports_celeb,@J_No24,🤘🏽 https://t.co/Kt5na2lOSk +03/26/2018,Sports_celeb,@J_No24,😆😆 boy you know a trip🤣🤣 https://t.co/dJdkXY0LXA +03/26/2018,Sports_celeb,@J_No24,@tlowry77 @D_BPhotography #facts +03/26/2018,Sports_celeb,@J_No24,@TG3II side bet we get the W +03/26/2018,Sports_celeb,@J_No24,@TG3II you ain’t got skills like that bo 😆 +03/23/2018,Sports_celeb,@J_No24,@c_mar23505 @JoeBiden @roughnrowdy @BarstoolBigCat @stoolpresidente it would be +03/23/2018,Sports_celeb,@J_No24,@mattdibu @JoeBiden ha ikr I wanna 👀it +06/29/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Special, special thanks to @UtahGymnastics’ Tom Farden and @MSkinner2016 for chatting with me about @USAGym’s big meet bei…" +06/29/2018,Sports_celeb,@MSkinner2016,RT @OrianneW: Like you Mykayla ❤️❤️😍 @MSkinner2016 https://t.co/5NF1JjR37y +06/20/2018,Sports_celeb,@MSkinner2016,@alleelowe In Utah!! Wish I was there!😭 +06/15/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: I love that MyKayla’s bringing back the Ray! https://t.co/gyJZ4kU2FQ +06/07/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: Love the new video 😍😍😍 this is my favorite part @PengPengCLee // @MagsGotSwag12 @kyla_ross96 @MSkinner2016 @katelyn_oh… +05/28/2018,Sports_celeb,@MSkinner2016,RT @alleelowe: Like to switch it up every couple of months... this is the new one today 😍 whatta queen @MSkinner2016 https://t.co/qqWzngCWnQ +05/26/2018,Sports_celeb,@MSkinner2016,RT @CallisJustine: I will definitely never try this again but this was fun 🤷🏻‍♀️ https://t.co/qnPINdshCg +05/26/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Read all about our 2018 award winners that were announced at our team BBQ! #GoUtes https://t.co/q1mQ9pDobv +05/21/2018,Sports_celeb,@MSkinner2016,@PaytonDeNai0105 You are so welcome!! Glad you are okay! Love and miss you too❤️💋 +05/21/2018,Sports_celeb,@MSkinner2016,RT @PaytonDeNai0105: I miss and love @MSkinner2016 so so much!! Made my heart happy getting to chat with you earlier a little bit!! Hope t… +04/24/2018,Sports_celeb,@MSkinner2016,RT @MSkinner2016: Get ready to put your 🙌🏻 up cause tomorrow is 1st day of Nationals! https://t.co/dviOtqsfs7 +04/23/2018,Sports_celeb,@MSkinner2016,"RT @espnW: Sophomore Mykayla Skinner, second in all-around Friday, runs through her double-double somersault on the floor exercise as @Utah…" +04/23/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: Just have to casually remind everyone that this incredible gymnast has hit 110 out of 110 routines in her NCAA career! https… +04/22/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: @nicoleee_veee @foxybirdlady @MSkinner2016 She totally is!! I don’t know anyone nicer or more humble about her success. +04/22/2018,Sports_celeb,@MSkinner2016,"RT @elaynewharmer: @Holli_Alexa @MSkinner2016 She has super-human balance and grace. One of the commentators yesterday said, “MyKayla Skinn…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @marquy: @Holli_Alexa @UtahMarz @MSkinner2016 I think it’s amazing she’s done this 2 years straight and hasn’t missed it. https://t.co/e… +04/22/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: Let’s please acknowledge that @MSkinner2016 made it through another season without being close to falling. She’s believed… +04/22/2018,Sports_celeb,@MSkinner2016,RT @LauraMRutledge: These young women have made the little girls they once were proud. Tune in right now to @ESPNU to watch them compete fo… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: 🙌 Light the U 🙌 + +@UtahGymnastics' MyKayla Skinner scored a 9.9375 on vault, earning her a national title! https://t.co/WE…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The dreamers of the day are dangerous women... Let’s make it possible Red Rocks!!! #goutes https://t.co/2MfmjkeIAH +04/22/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: IT. ALL. COMES. DOWN. TO. THIS. MOMENT. The final countdown... #goutes https://t.co/5AVIpSg0e1 +04/22/2018,Sports_celeb,@MSkinner2016,RT @Pay1John: @MSkinner2016 Congratulations on being vault champion!! Proud of you Mykayla!! #GoUtes ❤️❤️❤️ +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Lindsey2593: Great Job @MSkinner2016 +So happy for you! https://t.co/OnKAG3NCzv" +04/22/2018,Sports_celeb,@MSkinner2016,RT @Lindsey2593: I love watching @MSkinner2016 gymnastics routines. Especially loved watching your floor routine! +04/22/2018,Sports_celeb,@MSkinner2016,RT @Carli379: Class act right there!!! @MSkinner2016 @UtahGymnastics https://t.co/tsPbzjJbhy +04/22/2018,Sports_celeb,@MSkinner2016,RT @sltribsports: Utah’s MyKayla Skinner discusses the team’s fifth-place finish at the Super Six finals in St. Louis. https://t.co/Yy7dyzJ… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Utah finishes the Super Six with 196.90, led by @MSkinner2016's 39.625 in the all-around." +04/22/2018,Sports_celeb,@MSkinner2016,RT @thom59020084: @MSkinner2016 showing tremendous grit on beam crushing the toughest dismount with her 9.925to keep @UtahGymnastics in 1st… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @VegasUte: Like so may others, I have run out of words to describe @MSkinner2016 as a competitor... What a warrior... so many times she…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @usamso: Nice 9.925 for @MSkinner2016 on beam to end @UtahGymnastics night. #NCAAGym +04/22/2018,Sports_celeb,@MSkinner2016,RT @trentdwood: The Red Rocks came out of the bye a completely different team and looked comfortable for the first time tonight. @MSkinner2… +04/22/2018,Sports_celeb,@MSkinner2016,RT @nicoleee_veee: Y’all @MSkinner2016 has totally surprised me. Her NCAA gymnastics is beyond what I expected & she seems like she’s growi… +04/22/2018,Sports_celeb,@MSkinner2016,RT @Nugget48: @MSkinner2016 A-M-A-Z-I-N-G floor routine! Great job! 🇺🇸 +04/22/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: After a slow start, @UtahGymnastics finished strong on floor thanks to @MSkinner2016's 9.925. Final team score on floor was…" +04/22/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: Sophomore @MSkinner2016 is Utah’s fourth national champion on vault, joining Elaine Alfano (1982, 1983, 1985), Megan Mc…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UUtah: Congrats, @MSkinner2016! She’s the first @UtahGymnastics vault NCAA champion since 1992! #GoUtes! https://t.co/xTC6TolN2y" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: By winning the NCAA vault title, @MSkinner2016 became the 1st Ute to win multiple individual national championships sin…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: Congrats to @MSkinner2016, who became Utah’s first national champion on vault since Kristen Kenoyer in 1992. #GoUtes #N…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to our 2018 NCAA All-Americans!!! Freshman @Sydney_soloski is All-American on the floor @Missypaigee in… +04/21/2018,Sports_celeb,@MSkinner2016,RT @Tater2Stock: .@MSkinner2016 is our Rock Star! https://t.co/j1Ly7p3Tww +04/21/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: And don’t forget AA runner-up! https://t.co/FuhvuC1wpa +04/21/2018,Sports_celeb,@MSkinner2016,RT @CanadianKen: @MSkinner2016 Congrats on your Vault title and placing second in the AA at Nationals! Sensational job!🥇🥈🙌Good luck to you… +04/21/2018,Sports_celeb,@MSkinner2016,RT @deimeke03: @UtahGymnastics @MSkinner2016 Congrats @MSkinner2016 on being an #NCAAGym All-Around runner up and vault National Champion!!… +04/21/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Celebrate with Utah's newest NCAA vault champion MyKayla Skinner! #goutes https://t.co/dIpTIT39cU +04/21/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Tonight Dreams Become Reality. Watch @UtahGymnastics compete in the National Championships this weekend on ESPNU #goutes… +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: That double twist, tho! + +@UtahGymnastics' MyKayla Skinner went all out on vault at the NCAA Gymnastics Championships. A…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: The Red Rocks advance to the Super-Six!!! Competing tomorrow will be Utah, Florida, Oklahoma, LSU, UCLA and Nebraska at…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: Utah’s MyKayla Skinner, now the co-national champ on vault, on her team advancing to the Super Six final Saturday night i…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: LIVE with @UtahGymnastics after advancing to the #SuperSix. + +Along with @StanfordWGym’s Elizabeth Price, who scored a 10…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @hostage2feeling: You and the girls rocked it tonight... can't wait to see you compete tomorrow! Congrats on winning the vault title and… +04/21/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: Led by @MSkinner2016, the Red Rocks rallied from a nervous start to clinch their 21st appearance in the Super Six on Satu…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: MEET DAY!!! +📆 NCAA Championships, Semifinal 2 +⌚️5️⃣pm MT +📍Chaifetz Arena, St. Louis, MO +📺 @ESPNU +🎥 5 camera free live…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @Flipz4daze: @MSkinner2016 good luck in the AA at nationals. #kicksomebutt +04/21/2018,Sports_celeb,@MSkinner2016,RT @Nugget48: @MSkinner2016 Amazing vault! Simply amazing! 👏👏👏 +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 flies high and sticks it to lead the Red Rocks to a 49.225 in the first rotation. + +VAULT +Missy Reinstadtle…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: ALLLLLL THE SCREAMS FOR @MSkinner2016 VAULT. 🔥👏🏻😍🔥👏🏻😍🔥👏🏻😍 +04/21/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: @MSkinner2016 just nailed a 9.9375 to finish the Utes vault rotation. Best vault by any gymnast on any team so far, morning…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Once again, @MSkinner2016 leads Utah to reel in a 49.3375 in its second event. + +BARS +Tiffani Lewis 9.85 🎯 +MaKenna Merrel…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: .@MSkinner2016 getting a 9.925 on bars. #slay #ncaagym MIND BLOWN what a great bar set. +04/21/2018,Sports_celeb,@MSkinner2016,RT @CarlaSueNeal: @MSkinner2016’s celebration is the best. So genuine and so happy! So fun to root for her! +04/21/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: @MSkinner2016 does it again, scores a 9.925 to rescue beam rotation. Red Rocks with a 49.1125 score. #NCAAGym" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: My fav part 😍 and how can you just not love her excitement. @MSkinner2016 🔥🔥 #ncaagym https://t.co/OnCpg18e0X +04/21/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: Your 2018 NCAA co-champion on vault is @MSkinner2016! https://t.co/Akahenuwmf +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 finished second in the all-around, tying her 💥 season-high of 39.725! 💥 + +1️⃣ Maggie Nichols 39.8125 +2️⃣ My…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @stk2mln: Congratulations @MSkinner2016 on an amazing AA performance and do your thing tomorrow! Go Fight Win!!!! +04/21/2018,Sports_celeb,@MSkinner2016,RT @jdartute: @MSkinner2016 co-wins the vault national title #UtahGymnastics https://t.co/awo3nwwm9n +04/21/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Congratulations @MSkinner2016 on a tremendous effort,39.7250 all-around,tied for the vault title,you never cease to ama…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to @MSkinner2016 for winning the silver medal in the all-around and for becoming a national champion on… +04/20/2018,Sports_celeb,@MSkinner2016,RT @GymSassy: Good luck this weekend @MSkinner2016! Thank you for being an inspiration to all us young gymnasts. You have become an amazing… +04/20/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @MSkinner2016 Go Myk! +04/20/2018,Sports_celeb,@MSkinner2016,RT @_brookieepoo_1: @MSkinner2016 you’re so freaking beautiful it’s not fair!!!😍😍 +04/20/2018,Sports_celeb,@MSkinner2016,RT @InsideGym: Hiii @MSkinner2016... the defending FX champ is in the hunt for gold in the all-around after earning silver last season. Sh… +04/20/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Hanging with @espn, nbd 🤷🏼‍♀️ https://t.co/88Ev6F7wDY" +04/20/2018,Sports_celeb,@MSkinner2016,RT @robr0013: #GoUtes https://t.co/NpyDy20Qvx +04/20/2018,Sports_celeb,@MSkinner2016,RT @801_Ute: Let’s gooooooooooo https://t.co/kSs44DRRSt +04/20/2018,Sports_celeb,@MSkinner2016,Get ready to put your 🙌🏻 up cause tomorrow is 1st day of Nationals! https://t.co/dviOtqsfs7 +04/20/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: “She’s honestly not human.” +“She’s just automatic.” +She is @UtahGymnastics star @MSkinner2016. +https://t.co/Gs6u7CWS6w ht…" +04/20/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: ✋ #NationalHighFiveDay brought to you by @MSkinner2016 and MaKenna Merrell-Giles ✋ https://t.co/BFVdMoDFfN +04/19/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: @MSkinner2016 is the one to watch at #NCAAGym this weekend! You won’t see a better floor routine anywhere. https://t.co/… +04/19/2018,Sports_celeb,@MSkinner2016,"RT @BrooksAD: #NCAAGym is going to be EPIC. + +In addition to @bartconner, @kathyjohnsongym & @LauraMRutledge calling the action on ESPN2 and…" +04/19/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Don’t miss @MSkinner2016 floor routine packed with difficulty and sass! +https://t.co/Zsaz4hfoMq" +04/19/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 made the list of ESPN’s top ✋ floor routines to watch at this weekend’s nationals. https://t.co/YozycfZa0P +04/19/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Fly in style and arrive at the NCAA Awards banquet in style... #goutes https://t.co/QneqDCAalX +04/17/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Our new @UUtah President @RuthVWatkins stopped by practice today to wish the Red Rocks good luck on their 43rd consecut… +04/16/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @AcademicsUtah @MSkinner2016 @UtahGymnastics So proud of you Myk! +04/15/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: I love new @MSkinner2016 hair 😍😍 is so perfect 😍😍😍 +04/14/2018,Sports_celeb,@MSkinner2016,RT @AcademicsUtah: Her grades are just as good as her flips! An all around champion gymnast and an all around champion student makes @MSkin… +04/10/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to Regional Bar Champion MyKayla Skinner for tying for first place on bars with a 9.9!!! She now has 33… +04/10/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to the Regional Floor Champions MyKayla Skinner & MaKenna Merrell-Giles for being part of a three-way t… +04/09/2018,Sports_celeb,@MSkinner2016,RT @UtahGymHistory: Sophomore @MSkinner2016 is the first Ute to win at least three events at an NCAA Regional in consecutive years since As… +04/08/2018,Sports_celeb,@MSkinner2016,"RT @alicialambert: Another impressive and amazing performance by @MSkinner2016 and @UtahGymnastics. 👏👏 Congratulations MyKayla, 1st AA and…" +04/08/2018,Sports_celeb,@MSkinner2016,Thank you!!! ❤️❤️❤️ https://t.co/G52RuwLWjT +04/08/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Just a casual 9.95 from MyKayla Skinner to end the @UtahGymnastics floor rotation! #goutes https://t.co/jDM3LKV4eI +04/08/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: The intensity is ramping up! One more rotation to go for @UtahGymnastics! #goutes #NCAAGym https://t.co/AZyMamDxR9 +04/08/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: Congrats and best of luck to our DLG alums competing in NCAA Regionals tomorrow 💜💜💜💜💜💜 https://t.co/8RQmOg3K70 +04/08/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The Red Rocks win Regionals and advance to the National Championship for the 43rd consecutive time with a score of 197.… +04/08/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner wins the Regional All-Around with a 39.65 and MaKenna Merrell-Giles places third with a 39.55!!! Congra… +04/08/2018,Sports_celeb,@MSkinner2016,RT @KylerJ56: Congrats Red Rocks for advancing to the NCAA Championships! And to @MSkinner2016! 😍😍😍 https://t.co/qAxXhePsY1 +04/08/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 swung her way to become the SLC regional bars co-champion. https://t.co/eutdtzlHrp +04/08/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 secures another all-around win (39.65)! https://t.co/obHFYCeC7z +04/08/2018,Sports_celeb,@MSkinner2016,RT @Lindsey2593: Congratulations to Utah and @MSkinner2016 for advancing to the NCAA semifinals! +04/08/2018,Sports_celeb,@MSkinner2016,"RT @BradfatherSpeak: and @Mskinner2016 is the @utahGymnastics' Red Rocks most prestigious star, amassing 39.650 individual points, en route…" +04/08/2018,Sports_celeb,@MSkinner2016,RT @JaneMarquardt: Way to go @MSkinner2016! 39.650 in the all around at NCAA Regionals! @UUtah #GoUtes +04/08/2018,Sports_celeb,@MSkinner2016,RT @GymSassy: Good luck @MSkinner2016 and the rest of @UtahGymnastics at regionals today!!! https://t.co/j0r83ycEva +04/06/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: You heard it first from @abc4utah but the Red Rocks are ready to rock Regionals! #GoUtes https://t.co/6kBkrRc6YL +04/06/2018,Sports_celeb,@MSkinner2016,RT @flashgurl: @UtahGymnastics @MSkinner2016 I love how everyone is a Mykayla Skinner fan now that she is making an impact at Utah. I have… +04/05/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: ""...then there is a rare kind of athlete, those whose impact behind the scenes is the equal of their incredible perform…" +04/05/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: This girl is amazing. @MSkinner2016 @foxybirdlady https://t.co/8QKjxI0M2C +04/04/2018,Sports_celeb,@MSkinner2016,RT @CatDaddy61015: @MSkinner2016 seeing you live is on my bucket list. Who needs Beyoncé when you have a double double like that 💁🏼‍♀️ +04/04/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: 👏👏👏 +@MSkinner2016 +🥇 https://t.co/CCdb6WJMEp" +04/04/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Congratulations to Kim Tessen, MaKenna Merrell-Giles, @MSkinner2016 and Missy Reinstadtler for making the 2018 All-Pac-…" +04/04/2018,Sports_celeb,@MSkinner2016,RT @CaraT_3: @sportsiren @UtahGymnastics @MSkinner2016 Outstanding Athlete who keeps showing how strong/talented she is!From an alternate i… +04/03/2018,Sports_celeb,@MSkinner2016,RT @NickForrester13: I interviewed @MSkinner2016 last year and was taken aback by her professionalism on and off the floor. Congrats on ano… +04/03/2018,Sports_celeb,@MSkinner2016,RT @tsquared314: So much fun to watch. Thanks for all your hard work! #redrocks @MSkinner2016 https://t.co/LxEZAKmfBP +04/03/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 leads Utah with 5️⃣ first-team All-Pac-12 awards. She’s the only gymnast in the conference to win first-tea… +04/03/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: DYK: MyKayla Skinner enters regionals competition as nation's No. 2 ranked all-arounder. She is one of only two gymnasts… +04/03/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: @MSkinner2016 congratulations !!! You're amazing https://t.co/Lapt0FoKf7 +04/03/2018,Sports_celeb,@MSkinner2016,"RT @deimeke03: @UtahGymnastics @MSkinner2016 Congrats @MSkinner2016 on your 2018 First Team All-Around, Vault, Floor, Beam and Bars All-PAC…" +04/03/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @UtahGymnastics @MSkinner2016 Congratulations MyKayla! +04/03/2018,Sports_celeb,@MSkinner2016,"RT @cadrzz: Yes! @MSkinner2016 is amazing! Thank you, Holly. https://t.co/cnd3odDrDl" +04/03/2018,Sports_celeb,@MSkinner2016,RT @sportsiren: This is the real Wonder Woman. Only athlete named 1st-team All-Pac 12 in EVERY single category including All-Around. What a… +03/30/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Congratulations to the Red Rocks that made the 2018 @pac12 Gymnastics All-Academic teams! Shannon, Maddy & MyKayla mad…" +03/28/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 and MaKenna Merrell-Giles for becoming 2018 regular season All-Americans!!! #GoUtes https… +03/28/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 and MaKenna Merrell-Giles have been honored as regular season All-Americans by the National Association of… +03/26/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The Red Rocks come in ranked #4 for the final regular season ranking of 2018! #GoUtes https://t.co/Vj14jss2kM +03/25/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Another unreal performance Myk @MSkinner2016 so clutch,everyone sees how much you want it and we love you for that,cong…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @Pay1John: @MSkinner2016 You were awesome last night!! Love your routines it was amazing!! You are my favorite gymnast for Utah Gymnasti… +03/25/2018,Sports_celeb,@MSkinner2016,RT @deimeke03: @UtahGymnastics Congrats @MSkinner2016 on your PAC-12 Championship All-Around and Floor titles!!! +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 defended her all-around and floor titles as Utah placed second in the Pac-12 championship. + +Recap and high…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Ute Gymnasts Take Second at Pac-12 Championship-MyKayla Skinner wins all-around and floor, Makenna Merrell-Giles wins v…" +03/25/2018,Sports_celeb,@MSkinner2016,@samanthapeszek @UtahGymnastics Thanks Sam!! You are so sweet! Love ya❤️ +03/25/2018,Sports_celeb,@MSkinner2016,RT @samanthapeszek: Thank you @UtahGymnastics for continually pushing our conference to be better. The stuck bar dismounts are to die for &… +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner closes the 2nd rotation on beam with a solid 9.9! #GoUtes #Pac12gym https://t.co/du4hsA1aSI +03/25/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Last up on bars, Mykayla Skinner hits a beautiful 9.925 to finish the first rotation! #GoUtes #Pac12gym https://t.co/Fk…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @utahathletics: MyKayla Skinner wins her 2nd Pac-12 all-around title, tying for first, and Utah places second at Pac-12 Championship. Sc…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Competition was fierce tonight at the Pac-12 Championship!!! The Red Rocks rallied at the end but it wasn’t enough to d… +03/25/2018,Sports_celeb,@MSkinner2016,RT @BrookeMThayer: Congratulations @MSkinner2016 it looks like you’ve had an incredible season!❤️ https://t.co/r0x0cfOOTo +03/25/2018,Sports_celeb,@MSkinner2016,RT @crosbygustafson: Queen 👑🔥 @MSkinner2016 https://t.co/Zek1eoo3we +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Sydney_Mieko: GET IT GURRRLLL!!! Every meet I’ve watched @MSkinner2016 I think... damn she’s good... like crazy, super-human good... ho…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner wraps up competition with a 9.9 on vault! #GoUtes #pac12gym https://t.co/iCrORLMcTW +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Pac-12 all-around champion ✅ +Pac-12 floor champion ✅ + +@MSkinner2016 ties for first in the all-around (39.675) and on flo…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @caraleones54: @UtahGymnastics @MSkinner2016 https://t.co/gZtfgVp3yt +03/25/2018,Sports_celeb,@MSkinner2016,RT @Pac12Network: An individual event title wasn't enough -- @MSkinner2016 also ties for the #Pac12Gym All-Around title. 🤸‍♀️ https://t.co/… +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 on tying for 1st place in the All-Around with a 39.675 and tying for 1st place on floor w… +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: None like her. 👑 + +@MSkinner2016's 9.950 ties for the highest score from today's #Pac12Gym Champs floor competition. https…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @fitzscott: Great vault from @MSkinner2016 - whoo! #GoUtes #RedRocksRule @UtahGymnastics +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Skinner is unstoppable on floor!!! #GoUtes #Pac12gym https://t.co/G0ZaG2zyvn +03/25/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: @MSkinner2016 +👇 +👏👏👏 https://t.co/sQhVdqG7WG" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: We’re halfway through the meet and @MSkinner2016 leads Utah to first place! + +Standings after rotation 2: + +1️⃣ Utah 98.55…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @JoyGaeraths: Three reasons why I drove to Tucson today: #3 - @MSkinner2016 and @UtahGymnastics, #2 - Elise Ray coaching @UWGymnastics,…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @Sydney_Mieko: Me after EVERY SINGLE ROUTINE by @MSkinner2016! Counting down the minutes to watch @UtahGymnastics put on a show in Sessi… +03/24/2018,Sports_celeb,@MSkinner2016,RT @Tater2Stock: Pac12 Gymnastics Championship meet today! Kick some butt #RedRocks and @MSkinner2016 ! +03/24/2018,Sports_celeb,@MSkinner2016,"RT @SpiniLisa: My collage addition to my previous tweet! Go Jos, Myk, Jess and Justine! Best of luck at PAC 12’s💜 https://t.co/IXTTRj0gZG" +03/24/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Practice Day #WIL https://t.co/p1SVShB0YO +03/23/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: The fun is just getting started as @UtahGymnastics enters postseason 🤸‍♀️🏆 + +In my latest, I dive into the Red Rocks’ minds…" +03/23/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “Throw us anywhere, and we are going to be fine, but we love starting on bars.” https://t.co/RXmRVGEShu" +03/22/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “Staying near the top is another goal that the Red Rocks are itching to keep. For now, they’ll try to achieve it by roc…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @RoundOffBlog: Our #NCAAGym Routines of the Week for Week 11! + +Vault - @MagsGotSwag12 +Bars - @sfinnegan37 +Beam - @MSkinner2016 +Floor…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @crosbygustafson: Lucky to have a friend like you, who loves what they do, works so hard, absolutely kills it, and is an incredible pers…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @Matthews_bay: you amaze me so much, i miss you❤️@MSkinner2016 https://t.co/UUfhvXhBi2" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @cynthia_cronin: @MSkinner2016 Love you so much, you were meant to do great things❤️❤️❤️" +03/21/2018,Sports_celeb,@MSkinner2016,Couldn’t have gotten this far without u! Love u Lisa!❤️ https://t.co/T7paji79cV +03/21/2018,Sports_celeb,@MSkinner2016,RT @O10Courtney: @MSkinner2016 is a great collegiate gymnast. She is tearing up the NCAA right now. She’s on fire 🔥 +03/21/2018,Sports_celeb,@MSkinner2016,"RT @cynthia_cronin: Crazy how this cute girl who sat by me in choir who was like my little buddy would become this great, you’re a beast @M…" +03/21/2018,Sports_celeb,@MSkinner2016,You’re the sweetest!! I miss u so much❤️😭 Thanks for always believing in me Cynthia! https://t.co/yPrfNXafad +03/21/2018,Sports_celeb,@MSkinner2016,RT @frankeyyyj: r u even real 🤔😍🙈 @MSkinner2016 https://t.co/6EzGC0JMhT +03/21/2018,Sports_celeb,@MSkinner2016,I hope so!!😂😘 https://t.co/Wa3DcvDOa7 +03/21/2018,Sports_celeb,@MSkinner2016,"RT @_jacobminer: when you show up to sophomore year NCAAs with double doubles, full-ins, double twisting yurchekos, and a beam double back…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: Week after week MyKayla Skinner makes it look easy! + +She is once again your #Pac12Gym Gymnast of the Week: https://t.co/1…" +03/21/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: So happy for you!!! 😍💖 @MSkinner2016 https://t.co/GIukSlZwtH +03/20/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 for finishing the regular season the same way you started it—as the @pac12 Gymnast of the… +03/20/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: For the fifth time this season and 12th time in her career, @MSkinner2016 is the Pac-12 Gymnast of the Week 🤸‍♀️ + +It’s the…" +03/19/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: U know who finished the regular season as the country’s No. 2 gymnast in the all-around? + +Hint: She’s also the Pac-12’s to…" +03/19/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: I'm in love with @MSkinner2016 skills 😍😍 she's one of the best gymnast 💖 +03/18/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “That was exactly what the doctor ordered,” Utah co-head coach Tom Farden said.” https://t.co/LgQFZVqQPG" +03/17/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: When you (or rather MaKenna Merrell-Giles and @MSkinner2016) both swing 9.925s to tie for first on bars. https://t.co/70Nm… +03/17/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner’s performance last night was a triple winner!!! She captured the all-around (39.725) and beam (9.95) an… +03/17/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Another brilliant all-around performance Myk congratulations and on thr team reaching 198,you guys have each others bac…" +03/17/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016’s 39.725 all-around win against Georgia is her 19th career all-around victory, moving her into sole possess…" +03/17/2018,Sports_celeb,@MSkinner2016,"RT @Carli379: I guess it took me finally getting there to cheer them on in person to hit that 198. Great job ladies, so much fun to watch!!…" +03/17/2018,Sports_celeb,@MSkinner2016,RT @JaneMarquardt: Another all-around win for @MSkinner2016! Have we told you lately how glad we are you chose @UUtah? #GoUtes https://t.c… +03/17/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “They all have something different that they bring to the team and their personalities bonded us, brought us closer tog…" +03/17/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: An emotional @MSkinner2016 is taking time to thank the seniors as Tiffani and Maddy are tearing up in the presser. +03/17/2018,Sports_celeb,@MSkinner2016,RT @BraedenRoss: @MSkinner2016 is the gymnastics GOAT😱 +03/17/2018,Sports_celeb,@MSkinner2016,RT @INK12: First time watching @MSkinner2016 on @ESPNU tonight. Amazing! #powerful +03/17/2018,Sports_celeb,@MSkinner2016,RT @Sydney_Mieko: @UtahGymnastics... Holy Sticks Batman!!! @MSkinner2016 is so BOSS tonight sticking EVERY SINGLE FREAKING LANDING!!! She’s… +03/17/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: BOOM. MyKayla Skinner closes the beam rotation with a 9.95! Live coverage of tonight's @UtahGymnastics meet continues on… +03/17/2018,Sports_celeb,@MSkinner2016,RT @thom59020084: Best beam routine ever for @MSkinner2016 tonight at the Huntsman. Just a beautiful performance. Standing O was sweet for… +03/15/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: The drum and feather leotard is a team favorite saved for senior night. @MSkinner2016 shared on Instagram that @UtahGymnas… +03/14/2018,Sports_celeb,@MSkinner2016,"RT @DeafITT08: Wow, that’s awesome landing, @MSkinner2016! https://t.co/r08zFm6m3E" +03/13/2018,Sports_celeb,@MSkinner2016,"RT @utahathletics: Live for the pressure. +This Friday, two of the top programs all-time in college gymnastics face off. You'll want to be t…" +03/12/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: If you haven’t been to a gymnastics meet, THIS IS THE ONE. Be there for the final home meet of the season Friday night…" +03/12/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 leaps 🆙 to the No. 3 all-around (39.665) spot in the nation. https://t.co/tAN6zNmSCv +03/11/2018,Sports_celeb,@MSkinner2016,"RT @bergs_bees: @MSkinner2016 was at the same stake conference I was at today and I was a little star struck, even from across the giant ro…" +03/11/2018,Sports_celeb,@MSkinner2016,You should’ve said hi!!!!❤️❤️❤️ https://t.co/sC8bm98LhE +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner hits a 9.9 bar routine bringing the Red Rocks score to a 49.325 after the first rotation leading the Wo… +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Mykayla Skinner’s 39.700 all-around score wasn’t enough to pull the Utes to victory. The #4 Red Rocks fall to the #7 Mi… +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner puts an exclamation point on it by NAILING her beam dismount scoring a 9.925! #GoUtes https://t.co/y8Jb… +03/11/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: ❤️❤️❤️ +@MSkinner2016 https://t.co/FjNs1GEPW8" +07/01/2018,Sports_celeb,@ShawnJohnson,"💩GROSS💩WHAT""S IN THE BOX CHALLENGE (LIVE ANIMALS) WITH REBECCA ZAMOLO AND MATT SLAYS|Shawn + Andrew: https://t.co/JseLEefQ87 via" +06/30/2018,Sports_celeb,@ShawnJohnson,"I have the sexiest, sweetest, and most thoughtful hubby in the world! It’s a week of celebration with the launch of… https://t.co/bb0T0DxICJ" +06/30/2018,Sports_celeb,@ShawnJohnson,RT @bobgoff: God often waits until we're out of ideas before He lets us know His plans. +06/29/2018,Sports_celeb,@ShawnJohnson,Hubby and I are back at it! On the road headed to South Dakota! CHALLENGE: Can you comment down below what state yo… https://t.co/67s5QHdoMj +06/28/2018,Sports_celeb,@ShawnJohnson,OUR EPISODE OF FAMILY FEUD! REACTION | Shawn Johnson: https://t.co/0gINSrRj7N via @YouTube +06/28/2018,Sports_celeb,@ShawnJohnson,It's a Postmates and La Scala kind of night 😎 #YassQueen +06/27/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeud: Olympic gold medalists @ShawnJohnson and @lzhernandez02 go head-to-head at the podium! Question is... What does @IAmSteveHa… +06/27/2018,Sports_celeb,@ShawnJohnson,💃🏼 channeling my inner emoji ❤️ comment down below the emoji that matches you today! #summer #instabeach #ootd https://t.co/0pTREe2TzU +06/25/2018,Sports_celeb,@ShawnJohnson,Soaking up some sun today with the hubs! HAPPY MONDAY! Comment down below where in the world you are today!… https://t.co/jBwbvqDzxd +06/24/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeudABC: Beaming with excitement for tonight's #CelebrityFamilyFeud! https://t.co/8BFl7MQXFy +06/24/2018,Sports_celeb,@ShawnJohnson,"RT @DancingABC: It's the battle of the #DWTS champions tonight! +@lzhernandez02 faces off against @ShawnJohnson on @FamilyFeudABC tonight…" +06/24/2018,Sports_celeb,@ShawnJohnson,RT @Chat0_wow: I can't wait to see @FamilyFeudABC tonight at 8pm #DWTS @ShawnJohnson @lzhernandez02 +06/24/2018,Sports_celeb,@ShawnJohnson,FAMILY FEUD FAILS REACTION | Shawn + Andrew: https://t.co/0tMCKV1ei8 via @YouTube +06/23/2018,Sports_celeb,@ShawnJohnson,Day 2 of the @reggiebush Champions For Kids Charity weekend! Let’s golf baby! Hahaha comment down below... do you l… https://t.co/x3nbBXJFeV +06/23/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeudABC: Basketball stars @StephenCurry30 & @CP3 and Gymnastic gold medalists @lzhernandez02 & @ShawnJohnson go head-to-head on S… +06/23/2018,Sports_celeb,@ShawnJohnson,RT @NastiaLiukin: #OlympicDay 💕❤️ one of my favorite moments from Beijing... @ShawnJohnson https://t.co/x0HFijAa7f +06/23/2018,Sports_celeb,@ShawnJohnson,Charity Gala with this hunk for @reggiebush @thebirthdaypartyproject #charity #championsforkids (P.S. thanks for ch… https://t.co/zyUcuXY93L +06/22/2018,Sports_celeb,@ShawnJohnson,"RT @USAGym: #OnThisDate ten years ago, @shawnjohnson and @nastialiukin became the first two members named to the 2008 Olympic Team! https:/…" +06/22/2018,Sports_celeb,@ShawnJohnson,"RT @iamsecond: Coming soon: Second Edition feat. Shawn Johnson East + +We caught up with @ShawnJohnson and her husband Andrew! Stay tuned!…" +06/22/2018,Sports_celeb,@ShawnJohnson,RT @s_bzak: So obsessed with @ShawnJohnson and her hubby!!!😭😭😭 Hope to have what they got someday cause it’s something real special☺️🧡🧡 htt… +06/22/2018,Sports_celeb,@ShawnJohnson,Ummm.... guess whose episode of @familyfeudabc airs this Sunday 👀 Comment down below who you think we went up again… https://t.co/hWuUWMYyDS +06/21/2018,Sports_celeb,@ShawnJohnson,When your husband puts you through the @nfl @jaguars conditioning test... 😭😵🤢 It also ends in a fire red freckle co… https://t.co/rwGfuizsc6 +06/21/2018,Sports_celeb,@ShawnJohnson,BEST FAILS OF THE YEAR REACTION! | Shawn + Andrew: https://t.co/qlmslBn5PG via @YouTube +06/20/2018,Sports_celeb,@ShawnJohnson,RT @thelukerodgers: @AndrewDEast @ShawnJohnson #HUNK ALERT. +06/20/2018,Sports_celeb,@ShawnJohnson,Hahahah when the beast gets a little too excited... caption this! Best captions will get a shoutout!… https://t.co/QW9fGaqLz7 +06/20/2018,Sports_celeb,@ShawnJohnson,😎+☀️=🤗 comment down below your favorite emoji for a perfect summer day! #couplegoals #summer #beach https://t.co/Q0WvxNP5ZH +06/18/2018,Sports_celeb,@ShawnJohnson,Fun day at the beach with the hubs and the beast 🐶👫 Double tap if you like the beach and comment down below what’s… https://t.co/Uh8FwDWI3u +06/18/2018,Sports_celeb,@ShawnJohnson,RT @HORPTyler: @lzhernandez02 and @ShawnJohnson on #CelebrityFamilyFeud next week. Is it bad that I want both of them to win?!?! +06/17/2018,Sports_celeb,@ShawnJohnson,MEET MY PARENTS!!! | Shawn Johnson: https://t.co/qv2hBRa6g9 via @YouTube +06/14/2018,Sports_celeb,@ShawnJohnson,GETTING A NEW DOG VLOG | Shawn + Andrew: https://t.co/ASEsUKwoTN via @YouTube +06/14/2018,Sports_celeb,@ShawnJohnson,RT @madddymcgowan: I love how skinny you feel first thing in the morning before you eat & then you eat a cheerio and it’s like helllllllloo… +06/14/2018,Sports_celeb,@ShawnJohnson,RT @jmattjmattjmatt: There is power in the name of Jesus +06/14/2018,Sports_celeb,@ShawnJohnson,RT @MoyaEthan: I need to find prince a new home since im moving and my dad wont keep him for me. It breaks my heart that i cant take him wi… +06/14/2018,Sports_celeb,@ShawnJohnson,RT @EmHum_: currently binge watching @ShawnJohnson and @AndrewDEast videos at 1:00 in the morning. greatest decision ever👍🏻❤️ https://t.co/… +06/13/2018,Sports_celeb,@ShawnJohnson,RT @rsmittay: @NastiaLiukin @ShawnJohnson @chuckwicksmusic @matt_lombardi @AndrewDEast Matt and Andrew look like they’re about to drop the… +06/12/2018,Sports_celeb,@ShawnJohnson,"RT @ABC_Publicity: New Release: NBA All-Stars @CP3 and @StephenCurry30 Compete Again, But This Time With Their Families; And Olympic Gymnas…" +06/12/2018,Sports_celeb,@ShawnJohnson,"RT @bobgoff: The more beauty we find in someone else's journey, the less we'll want to compare it to our own. +#EverybodyAlways" +06/12/2018,Sports_celeb,@ShawnJohnson,RT @kaleycraft: @NastiaLiukin @ShawnJohnson @chuckwicksmusic @matt_lombardi @AndrewDEast Y’all look like you’re about to drop the hottest a… +06/12/2018,Sports_celeb,@ShawnJohnson,Friend goals 😍 CHALLENGE who can comment FRIENDS letter by letter down below without getting interrupted?… https://t.co/ttYD1vm04M +06/11/2018,Sports_celeb,@ShawnJohnson,"RT @NastiaLiukin: I don’t think this picture quite captures the amount of fun, laughs, and just truly good times this weekend consisted of…" +06/11/2018,Sports_celeb,@ShawnJohnson,RT @anthemdirection: @ShawnJohnson @AndrewDEast your episode of cupcake wars came on lol https://t.co/7A8jbSUNdG +06/10/2018,Sports_celeb,@ShawnJohnson,proposalreaction: https://t.co/2A24azws1Z via @YouTube +06/10/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: First date weekend with @shawnjohnson , first time we danced and the last time I was rocking hair this wild #fiveyears #an…" +06/08/2018,Sports_celeb,@ShawnJohnson,5 years ago today this hot nerd swept me off my feet at the #CMAFest while on our first date hahah now he’s stuck w… https://t.co/9b5daziNS0 +06/08/2018,Sports_celeb,@ShawnJohnson,RT @Mattieemonday: @AndrewDEast @ShawnJohnson The booty call had me like https://t.co/x9CxPU4cS8 +06/07/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS SAVES REACTIONS! | Shawn Johnson: https://t.co/V7NKH1nh7O via @YouTube +06/07/2018,Sports_celeb,@ShawnJohnson,Just wow. How many survivors does it take to make people “believe”. Like WTF. Simone... agreed. amen. https://t.co/4pnPkBfHCT +06/07/2018,Sports_celeb,@ShawnJohnson,Let’s do this summer! https://t.co/ckMIRZemF7 +06/07/2018,Sports_celeb,@ShawnJohnson,RT @Carleen1991: Okay I have fallen in love with watching @ShawnJohnson & @AndrewDEast Videos on youtube... they are so adorable!!! +06/07/2018,Sports_celeb,@ShawnJohnson,RT @JRMediaStar: @AndrewDEast & @ShawnJohnson crack me up on their Instagram stories watching #TheBacheloretteِ 😂 #icanthandlethisrightnow +06/07/2018,Sports_celeb,@ShawnJohnson,RT @JenSwirsky: Guys. I cried. It’s @ShawnJohnson. Goodbye world. My job here is done. https://t.co/6YHus7Icrv +06/06/2018,Sports_celeb,@ShawnJohnson,"About last night.... ya, that was pretty cool 😎 haha double tap if you like country music and comment down below wh… https://t.co/eUv7diQIfg" +06/06/2018,Sports_celeb,@ShawnJohnson,Here at Backroads Country Music Event with @pandora and @kingsford ! So freaking excited can’t wait to interview th… https://t.co/cpl3L1nn9s +06/05/2018,Sports_celeb,@ShawnJohnson,It’s summertime.... bring on the freckles! #summertime #pool #beach #nomakeup #freckles https://t.co/ouRmtUBSCp +06/04/2018,Sports_celeb,@ShawnJohnson,I’ve got exclusive access to the @PandoraMusic Backroads event and I can’t wait to share it with you!!! I’ll be sha… https://t.co/ScHa9oSLNV +06/04/2018,Sports_celeb,@ShawnJohnson,One happy family 👙🐶☀️ #summertime #couplegoals #puppies https://t.co/zuZ4QEnzjZ +06/04/2018,Sports_celeb,@ShawnJohnson,RT @sliebers12: 6 years ago today @ShawnJohnson announced her retirement from gymnastics. #blessed she’s still the best role model ever +06/03/2018,Sports_celeb,@ShawnJohnson,GIANT GUMMY VS. REAL FOOD CHALLENGE | Shawn + Andrew: https://t.co/j6jyz1Jmn4 via @YouTube +06/01/2018,Sports_celeb,@ShawnJohnson,EPIC WAFFLE CHALLENGE! | Shawn + Andrew: https://t.co/LYv1oISvMk via @YouTube +05/31/2018,Sports_celeb,@ShawnJohnson,MOOD! I freaking love thursdays! Comment down below where in the world you are today! I’m in TENNESSEE! #thursday… https://t.co/SbGIwIG2AQ +05/31/2018,Sports_celeb,@ShawnJohnson,"RT @bobgoff: Live your life like you're exactly who God says you are. +You're His beloved. +Quit acting like you've got to earn it. +#Everyb…" +05/31/2018,Sports_celeb,@ShawnJohnson,RT @Simone_Biles: I LOVE SLEEP +05/28/2018,Sports_celeb,@ShawnJohnson,RT @VanderbiltU: Remembering our nation's fallen heroes and their families on this #MemorialDay. https://t.co/0BYqr4wjLg +05/28/2018,Sports_celeb,@ShawnJohnson,RT @ACLrecoveryCLUB: I disagree...my knee always reminds me that it’s raining outside! https://t.co/v2FSkUiZf8 +05/28/2018,Sports_celeb,@ShawnJohnson,RT @NastiaLiukin: Hahahaha. This is legit me and you @ShawnJohnson... pretty much all apply 😂😂 https://t.co/BnlVEiCsan +05/28/2018,Sports_celeb,@ShawnJohnson,Murphy... I feel ya. That 4am alarm is hitting me hard. I think I might just go to bed now. #strugglebus https://t.co/2lp0ctI5ca +05/27/2018,Sports_celeb,@ShawnJohnson,"RT @kenzie_gora: LADIES imagine: +It’s 15 years from now. Youve been planning this dinner for 2 months. Your husband asks where his supersui…" +05/27/2018,Sports_celeb,@ShawnJohnson,CALLING ALL GYMNASTS... this one is for you! I have been getting a lot of requests lately for nutrition tips that a… https://t.co/AwKSrdt8WQ +05/27/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS HEALTH TIPS WITH Dr. Axe | Shawn Johnson: https://t.co/QaYthIGfr4 via @YouTube +05/27/2018,Sports_celeb,@ShawnJohnson,Hey @andrewdeast I think you is supa cute #thathandplacementthough #couplegoals #marriage #missyou TAG your crush b… https://t.co/jfKnrxtVO3 +05/26/2018,Sports_celeb,@ShawnJohnson,The embarrassment you feel when you get a pedicure and you still haven’t excepted that it’s shorts weather and you… https://t.co/pvzA6iRMbS +05/25/2018,Sports_celeb,@ShawnJohnson,RT @samanthapeszek: I’d like to hear more about this “athlete task force” that @KerryJPerry talked about today at the congressional hearing… +05/24/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS FAILS REACTIONS | Shawn Johnson: https://t.co/eqd8ff5HVl via @YouTube +05/22/2018,Sports_celeb,@ShawnJohnson,Need new YouTube video ideas! What should we do! +05/19/2018,Sports_celeb,@ShawnJohnson,I’ll admit... sometimes we fall short with our priorities and put too much weight on work while everything else fal… https://t.co/6IhMFXvgTh +05/19/2018,Sports_celeb,@ShawnJohnson,Ok... who else is tuning in today to the #royalwedding on @goodmorningamerica 👀 I may or may not be GEEKING OUT! Th… https://t.co/NisuHBvfX0 +05/19/2018,Sports_celeb,@ShawnJohnson,ROYAL WEDDING ADVICE | Shawn and Andrew: https://t.co/XEOAt5ogUp via @YouTube +05/18/2018,Sports_celeb,@ShawnJohnson,#Datenight with my best friend @andrewdeast #couplegoals #marriage https://t.co/lU9876f2LQ +05/17/2018,Sports_celeb,@ShawnJohnson,GET TO KNOW REBECCA ZAMOLO + MATT SLAYS | Shawn Johnson: https://t.co/B11pZc8QzP via @YouTube +05/16/2018,Sports_celeb,@ShawnJohnson,Oh hey cutie 😎🤓 comment down below your favorite summer time emoji for a like! #summer #couplegoals #stagecoach https://t.co/LeD68KThFW +05/13/2018,Sports_celeb,@ShawnJohnson,#happymothersday to the strongest woman I know! I love you to the moon and back! 💕 https://t.co/gIBg3lgWoP +05/11/2018,Sports_celeb,@ShawnJohnson,#TBT to our sexy slash awkward slash giggle fest engagement shoot #sosensual #marriage #couplegoals #weweird 📸… https://t.co/vUXNuuPX4h +05/10/2018,Sports_celeb,@ShawnJohnson,SUMMER FESTIVAL GET READY WITH ME | Shawn Johnson: https://t.co/dpF4eqflzv via @YouTube +05/10/2018,Sports_celeb,@ShawnJohnson,A true #tbt 🤷🏼‍♀️🤓😊 hahah baby me tag me in a picture of you as a kid!!! https://t.co/GQy2EZxfHI +05/09/2018,Sports_celeb,@ShawnJohnson,RT @dangjasminee: Its been TWO full weeks 😭 here’s a video edit of what Playlist is like!!! ft some clips of @ShawnJohnson @99_goonsquad @A… +05/08/2018,Sports_celeb,@ShawnJohnson,To all of my fellow short peeps out there... Happy Tuesday! Comment down below how tall you are! Me? I’m 4’11 🤓and… https://t.co/LV9E53HfCN +05/06/2018,Sports_celeb,@ShawnJohnson,RT @Ginge1129: @ShawnJohnson - I can’t WAIT to see #fyt come to fruition for you! 😍 #findyourtruth +05/06/2018,Sports_celeb,@ShawnJohnson,RT @AmandaKBorden: The outtakes are always the best 😂😂😂 Take number 27.... @samanthapeszek @ShawnJohnson https://t.co/QjBxIlDYOj +05/06/2018,Sports_celeb,@ShawnJohnson,Happy Sunday! Comment down below where in the world you are today! #marriage #couplegoals https://t.co/RYdKf5uwbx +05/05/2018,Sports_celeb,@ShawnJohnson,OUR FIRST MEET UP! | Shawn + Andrew: https://t.co/xXZHPVRDiV via @YouTube +05/03/2018,Sports_celeb,@ShawnJohnson,STAGECOACH SUMMER FESTIVAL! | Shawn and Andrew: https://t.co/jUwyT5Dwet via @YouTube +05/01/2018,Sports_celeb,@ShawnJohnson,I love you ladies! So freaking much! @annieleblanc @rebeccazamolo #playlistlive 📸 @dawnkingston https://t.co/fEBdVkOhB7 +04/30/2018,Sports_celeb,@ShawnJohnson,Yep... we were that couple that chose to be nerds and match #denimjacket #denimduo #couplegoals https://t.co/PpsqK1EdRM +04/29/2018,Sports_celeb,@ShawnJohnson,From @stagecoach to @playlistlive 🤓😊We made it baby! Let’s do this! #playlist #stagecoach #playlistlive COMMENT dow… https://t.co/stmaTTHxDp +04/29/2018,Sports_celeb,@ShawnJohnson,Crazy awesome experience these last two days with @esteelauder and @stagecoach and thank you cheesus for… https://t.co/cAQqpLJ5b4 +04/28/2018,Sports_celeb,@ShawnJohnson,Come hang out with me and @AndrewDEast at the Estee Lauder tent of you're at #Stagecoach2018 ! +04/28/2018,Sports_celeb,@ShawnJohnson,WE TRAINED LIKE BODYBUILDERS FOR 30 DAYS | Shawn and Andrew: https://t.co/90iemFLy9D via @YouTube +04/28/2018,Sports_celeb,@ShawnJohnson,CRAZY AWESOME first day with @esteelauder at @stagecoach I’m in country two stepping heaven #esteepartner… https://t.co/X4GjRFML3l +04/27/2018,Sports_celeb,@ShawnJohnson,Getting all glammed up and ready to rock the boots with @esteelauder at #Stagecoach this weekend! Got the long hair… https://t.co/dzbY5ZSiWG +04/27/2018,Sports_celeb,@ShawnJohnson,"RT @iclasspro: We are inspired by our friend, @ShawnJohnson. iClassPro - Made by pros, for pros, just like you. https://t.co/OWt05wBNfk" +04/27/2018,Sports_celeb,@ShawnJohnson,RT @KENTSIMMONS: @ShawnJohnson you brighten my day at Hyvee while I get my sushi for dinner! https://t.co/YFCDTw3nMw +04/27/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: There are four things to take note of in this picture: 1) how awesome this mural is 2) how beautiful @shawnjohnson is 3) h… +04/27/2018,Sports_celeb,@ShawnJohnson,Yup.... lens cap still on 🤦🏼‍♀️ I’m obviously a great photographer 😂 thanks babe for the heads up @andrewdeast… https://t.co/1AHILWFPsu +04/26/2018,Sports_celeb,@ShawnJohnson,Got to visit the coolest mural today on Melrose with #windex and play around like a professional graffiti artist 😜… https://t.co/pfMbT4y5aH +04/26/2018,Sports_celeb,@ShawnJohnson,Third Wheeling with Country Music Star Chuck Wicks! | Shawn + Andrew: https://t.co/SLf16Q7Gpj via @YouTube +04/25/2018,Sports_celeb,@ShawnJohnson,"RT @StephCatalioto: Omg @ShawnJohnson liked my photo , she has been my idol since I was a little baby in gymnastics, I am screaming with jo…" +04/25/2018,Sports_celeb,@ShawnJohnson,Cheese ball city but I can’t help it 🤓😜😘😊 Tag me in a picture of you with your bestie or favorite person for a foll… https://t.co/7yiUionSRh +04/24/2018,Sports_celeb,@ShawnJohnson,Fricken love NYC 🍎 have you guys ever been?! #nyc #couplegoals #bigapple https://t.co/B5WqL2I0Cf +04/24/2018,Sports_celeb,@ShawnJohnson,"✌🏻It’s an early morning, early workout, day full of work kind of day in the big 🍏!! Duh... I got my ☕️ 😜… https://t.co/IyMVQCxAQi" +04/23/2018,Sports_celeb,@ShawnJohnson,New profile pic posted! Happy Monday! See if you can comment M•O•N•D•A•Y letter by letter without being interrupted… https://t.co/NGoGzV0d0E +04/22/2018,Sports_celeb,@ShawnJohnson,We have a CRAZY announcement for you guys! #BostonMarathon https://t.co/ses5vC0AZ0 +04/22/2018,Sports_celeb,@ShawnJohnson,Sunday Funday 🤓 #sundayfunday #couplegoals #marriage comment down below what you’re doing today! https://t.co/vx2W1KWGRE +04/21/2018,Sports_celeb,@ShawnJohnson,get a roommmmm haha 🤷🏼‍♀️🤓🤦🏼‍♀️ #couplegoals https://t.co/Ar1cUB4o5z +04/20/2018,Sports_celeb,@ShawnJohnson,Friday feels 🤓❤️😘 #friyay #fridaynight #ootd https://t.co/xnEXGrHfId +04/19/2018,Sports_celeb,@ShawnJohnson,#TBT to where it all began 2013 🤓 #firstdate #cmafest #couplegoals @andrewdeast https://t.co/srHzThSE4j +04/18/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: Did you catch @shawnjohnson and I on @picklerandben this morning?! If not you can check it out online! #firstshow #cbs htt… +04/17/2018,Sports_celeb,@ShawnJohnson,So ladies and gents... thanks to the greatest partner ever @clifbar I guess the hubs and I will be running the… https://t.co/6WZd0vt6vJ +04/16/2018,Sports_celeb,@ShawnJohnson,Yep😂 https://t.co/KxTcDVseE0 +04/16/2018,Sports_celeb,@ShawnJohnson,RT @lindsayb489: Happy 2nd Anniversary @ShawnJohnson and @AndrewDEast! Thank you for making me laugh. Hope you guys have a beautiful day.💗… +04/16/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: I want everyone to meet you. You’re my favorite person of all time @shawnjohnson . Happy 2 year #anniversary https://t.co/… +04/16/2018,Sports_celeb,@ShawnJohnson,2 years already?! I can’t believe how fast it’s flown but it’s seriously brent he greatest two years of my life!… https://t.co/5N5rlie42R +04/15/2018,Sports_celeb,@ShawnJohnson,Mood #sunday https://t.co/zai26WN7Oz +04/14/2018,Sports_celeb,@ShawnJohnson,Who needs Coachella when you can run a 5k in BOSTON 😂🤓❤️ @nastialiukin @clifbar @bostonmarathon #bostonmarathon… https://t.co/Rx3WBeln5v +04/12/2018,Sports_celeb,@ShawnJohnson,One of the greatest joys I get is being able to share my story with you all and answer the burning questions and cu… https://t.co/5PsgKGCwuU +04/11/2018,Sports_celeb,@ShawnJohnson,"I ALMOST MISSED IT! Happy #nationalsiblingsday to this new, crazy, big family of mine :) and all the doggies too. L… https://t.co/XZQneKg4Rj" +04/09/2018,Sports_celeb,@ShawnJohnson,Well this picture wasn’t taken on a Monday 😴😜💀 #mondayblues #monday #meh https://t.co/Qiam5THWTO +04/08/2018,Sports_celeb,@ShawnJohnson,Sunday feels. Don’t ever move. Bring me some waffles. 🤓🤫😴 #cuddles #weekendvibes #sunday https://t.co/u98Q7hQciP +04/07/2018,Sports_celeb,@ShawnJohnson,Saturday’s are for experimenting with makeup 🤷🏼‍♀️🤓💁🏼‍♀️ Tag me in pictures of looks you want me to try and I’ll po… https://t.co/QulHbRHrQA +04/06/2018,Sports_celeb,@ShawnJohnson,RT @x3jennyfur: This goes out to @shawnjohnson and her hubby @andrewdeast 😆🙃 Thanks for the #aroundtheworld… https://t.co/xRfVGYouhr +04/05/2018,Sports_celeb,@ShawnJohnson,RT @madisonfrost: Also @ShawnJohnson and her husband are the cutest 😍 +04/05/2018,Sports_celeb,@ShawnJohnson,RT @a_schroed14: I asked for one magazine and my friend brought me an entire case 😅 @ShawnJohnson https://t.co/0COq68eGOt +04/05/2018,Sports_celeb,@ShawnJohnson,"RT @jntatmhn: @ShawnJohnson @AndrewDEast ""Tea"" ☕️ + Singas 🍕 = the ""Key"" 🔑 to my ""Heart"" ❤️" +04/05/2018,Sports_celeb,@ShawnJohnson,RT @jess_sloane: @mberlovine @kaitsexton @ShawnJohnson I’m fangirling for y’all 😆😆😆🌟😍 +04/04/2018,Sports_celeb,@ShawnJohnson,☕️ + @andrewdeast = the 🔑 to my ❤️ comment down below you favorite drink! #humpday #couplegoals #wifelife https://t.co/PJ56vNrb4w +04/03/2018,Sports_celeb,@ShawnJohnson,Finally got my husband back! @andrewdeast I missed yo face. Comment down below any fun plans for the week!… https://t.co/JCyES4BWmm +04/02/2018,Sports_celeb,@ShawnJohnson,Holy hotness @andrewdeast You’re my #MCM every Monday. Now get your butt back home so I can creepishly stare at you… https://t.co/2xoyYBgw9m +04/01/2018,Sports_celeb,@ShawnJohnson,HAPPY EASTER!! #easter https://t.co/c2MpgENAXy +03/31/2018,Sports_celeb,@ShawnJohnson,E A S T E R 🌸 W E E K E N D ! Comment below what your plans are! Hubs and I are on speerate sides of the continent… https://t.co/USRtZ3Iu6f +03/30/2018,Sports_celeb,@ShawnJohnson,FRIYAY! #friyay #fridayvibes #weekend https://t.co/C1zgY3AqNJ +03/30/2018,Sports_celeb,@ShawnJohnson,"RT @OSUspeakers: Rise and shine, Cowboys! +Remember to join us TODAY at 11:30 a.m. at Chi-O Clock for our first FREE t-shirt giveaway!! #Sh…" +03/28/2018,Sports_celeb,@ShawnJohnson,When yo 🍑 too big to fit on the window sill hahaha #humpday #embraceit #hottmess #squats #booty🍑 https://t.co/9Z2TD5PcD1 +03/28/2018,Sports_celeb,@ShawnJohnson,Shexy date night with my hunk and ol’ Johnny #datenight #marriage #wifelife #livingthatlacelife #dreamdate comment… https://t.co/lnS9tNmxWh +03/27/2018,Sports_celeb,@ShawnJohnson,It’s from a HyVee commercial shot in 2011! Should be on YouTube! https://t.co/iQACq1MulT +03/27/2018,Sports_celeb,@ShawnJohnson,I 🍩 wanna 🌮 bout it. It’s a problem. #donutsarelife #cheatday #foodie https://t.co/qb6Ex6e4CY +03/26/2018,Sports_celeb,@ShawnJohnson,RT @LilDavis09: @ShawnJohnson hey look it’s you!! Maybe you should plan a trip to Des Moines in April :) https://t.co/PvvMcmbqLD +03/26/2018,Sports_celeb,@ShawnJohnson,Myobdays 😂🤷🏼‍♀️🤦🏼‍♀️ #mondaymood 🤦🏼‍♀️#mcm #travel who can comment MONDAY letter by letter uninterrupted?! https://t.co/cK8HY2XbSC +03/26/2018,Sports_celeb,@ShawnJohnson,@TeniPanosian I don’t even know what any of this means!!! Hahahaha +03/26/2018,Sports_celeb,@ShawnJohnson,Yo @warriors I meannnnnnnn I’m kind of freaking out. @kevindurant and @stephencurry30 #RESPECT 👏🏻💪🏻👍🏻 #sportsnerd… https://t.co/KKufPCoYCi +03/25/2018,Sports_celeb,@ShawnJohnson,ITS THE FREAKIN WEEKEND YALL! Comment down below what your weekend plans are!! Us?! We are going to the WARRIORS GA… https://t.co/oADBrAHX9U +03/24/2018,Sports_celeb,@ShawnJohnson,I d🍩nut know what I’d do without you 🤓 #mood #donuts #marriage #love #dontletmytrainerseethis @andrewdeast… https://t.co/FQvgiivluT +03/23/2018,Sports_celeb,@ShawnJohnson,Happy #nationalpuppyday 😍 https://t.co/hZ1F6WpLIX +03/23/2018,Sports_celeb,@ShawnJohnson,Photobomb of the year goes to the best little bro haha #FBF @andrewdeast @geasty57 #eastboys #family #mylove https://t.co/e6qDJsvrSQ +03/22/2018,Sports_celeb,@ShawnJohnson,"Nobody tells you +it is ok to call yourself beautiful +it is okay to smile at mirrors +and it is perfectly fine +to sa… https://t.co/bWdqTKwZAP" +03/21/2018,Sports_celeb,@ShawnJohnson,Workday Wednesday! Comment your dream job down below! #dreamjob #wednesday #humpday #workmode #picklerandben https://t.co/IhSiHZvu6g +03/19/2018,Sports_celeb,@ShawnJohnson,I’ve got a serious case of the mondays #mood #monday #meh #husbandsclothes What are your plans today?! Comment belo… https://t.co/kUutOQGtDv +03/19/2018,Sports_celeb,@ShawnJohnson,Happy S U N D A Y 🤓 #mrandmrs #easts #sundayfunday #freckles Who can comment SUNDAY letter by letter unbroken?! https://t.co/IfzmLaVUHJ +03/16/2018,Sports_celeb,@ShawnJohnson,Hey hunk... I love sharing life you with 🤓 #FBF @andrewdeast #marriage #dreamwedding #husband #wife https://t.co/w783bCEeoY +03/14/2018,Sports_celeb,@ShawnJohnson,HAPPY 🐪 DAY #humpday #marriage #mancrusheveryday @andrewdeast https://t.co/oZz54bmZLS +03/13/2018,Sports_celeb,@ShawnJohnson,My spirit animal 🦒 🤓 #onesiegymnastics #youtube #gymnastics #dork Comment your spirit animal down below! https://t.co/DrqJy2sikG +03/12/2018,Sports_celeb,@ShawnJohnson,Had THE GREATEST double date night with @markballas and @bcjean 😍☺️🤗 If you could go on a double date with anyone w… https://t.co/JOOKEvkgQK +03/11/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: Three incredibly creative, inspiring people. And then theres @markballas . So much fun with @shawnjohnson @bcjean @markbal…" +03/11/2018,Sports_celeb,@ShawnJohnson,What makes comfy clothes even better... when they are trendy and cute! Hahahahah I LIVE for these pieces and litera… https://t.co/1OWVbWZq8s +03/11/2018,Sports_celeb,@ShawnJohnson,RT @kt_cat16: @ShawnJohnson LOVE LOVE LOVE your most recent video w/ @AndrewDEast commentating your makeup routine! TOO FUNNY!!! 😂👌 +03/10/2018,Sports_celeb,@ShawnJohnson,"It’s the freakin weekend!! Now, what to do with it 🤨🤔🤷🏼‍♀️ what are YOUR weekend plans?! Comment down below!!… https://t.co/Qt4leeYu4M" +03/09/2018,Sports_celeb,@ShawnJohnson,FRIDAY FEELS!!!!! Try to comment “FRIYAY” letter by letter uninterrupted below 🤓😜🤣 #friday #fridaymood #friyay 📸:… https://t.co/bZYwRcc0O4 +03/09/2018,Sports_celeb,@ShawnJohnson,RT @LIVESTRONG_COM: Celebrating #IWD2018 with a look back at our STRONGER WOMEN interview with @ShawnJohnson 💖https://t.co/lLgUGSGzTN https… +03/08/2018,Sports_celeb,@ShawnJohnson,Just posted on YouTube! Don’t miss it! https://t.co/LPnsg9T9L6 https://t.co/I2P0nJayP2 +03/08/2018,Sports_celeb,@ShawnJohnson,"To these stunningly beautiful, confident, crazy smart, and insanely strong women.... I love you and am so grateful… https://t.co/GqsKcwoVFT" +03/06/2018,Sports_celeb,@ShawnJohnson,Wishing we were back in the fairytale land of castles 😍☺️🤓 @andrewdeast comment down below your favorite place you’… https://t.co/22Cud1DsBE +03/05/2018,Sports_celeb,@ShawnJohnson,"Man, I just love Monday’s...... 😜🤦🏼‍♀️😩🤨 #badcaseofthemondays #monday #bleh #meh Anyone have a cure for the Monday’… https://t.co/DGyCbnloyw" +03/05/2018,Sports_celeb,@ShawnJohnson,Great job @madi_brent96 ! https://t.co/q2ytbXQyel +03/03/2018,Sports_celeb,@ShawnJohnson,He’s 2 feet taller and I can wear shirts as dresses 😂🤓🤷🏼‍♀️ Comment down below your plans for this beautiful weeken… https://t.co/oStNqYLkJs +03/02/2018,Sports_celeb,@ShawnJohnson,Happy Friday y’all 🤓 comment down below... what emoji best describes you?! #emoji #happyfriday https://t.co/gdzE7xubMY +03/01/2018,Sports_celeb,@ShawnJohnson,How about a sappy one for this #TBT Best day of my life 🤗🤓☺️ #wedding #cheesy #marriage #love #fairytale… https://t.co/WrCs2gU63B +02/26/2018,Sports_celeb,@ShawnJohnson,"Ran into this beauty today!!! Man, @lauriehernandez_ I missed your face!!! #friends #gymnastics #weirdos https://t.co/npTxbH0riB" +02/24/2018,Sports_celeb,@ShawnJohnson,"Our bellies, hearts, and love has grown fuller these past 3 weeks. Sad to see this all come to an end but it’s time… https://t.co/9LQKHdjFYI" +02/23/2018,Sports_celeb,@ShawnJohnson,There is no better way to end this incredible trip than with the Vatican. Holy wow. Any last recommendations for Ro… https://t.co/NK0PghNgpZ +02/22/2018,Sports_celeb,@ShawnJohnson,Marriage summed up in a picture @andrewdeast #marriage #likevslove #grrr #stupidarguments #truelove https://t.co/jy4gC8qvMw +02/22/2018,Sports_celeb,@ShawnJohnson,Florence... it’s been real but it’s time to head to our last stop of this incredible journey 🤓 #loveofmylife… https://t.co/lIOUa85mTR +02/21/2018,Sports_celeb,@ShawnJohnson,461 steps later.... hello Florence 😍 #ouch #quadburn #marriage #vloglife https://t.co/c8JCoNOtEG +02/20/2018,Sports_celeb,@ShawnJohnson,Florence got me like... 😂🤷🏼‍♀️🤦🏼‍♀️ #worldtravels #europetrip #vloglife #marriage #florence https://t.co/PMtiUo6NGL +02/19/2018,Sports_celeb,@ShawnJohnson,Nothing quite like an Italian cappuccino 😍 and thanks baby for the coat #suchagentlemen #slashistoleit #coffee… https://t.co/zef58BoOko +02/19/2018,Sports_celeb,@ShawnJohnson,Ciao Venice! Onto the next! #worldtravels #vloglife #italy #marriage @andrewdeast https://t.co/QC05UJKwDf +02/18/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: You asked, @ShawnJohnson delivered. This video is special for me. https://t.co/J7bs4fHFxh" +02/18/2018,Sports_celeb,@ShawnJohnson,Don’t mess with this 26 year old and her teddy bears 😂🤷🏼‍♀️🤦🏼‍♀️ a Valentines gift from the hubs. We went with the… https://t.co/pk078lmhJw +02/17/2018,Sports_celeb,@ShawnJohnson,Ice skating in Vienna... it was seriously magical 🌟... time to find the hidden magic in VENICE though!!… https://t.co/n6FbQ0LhOM +02/17/2018,Sports_celeb,@ShawnJohnson,Vienna... you’ve been too good to us. Time to head south. Can anyone guess?!!! #travel #vloglife #marriage… https://t.co/DORXJVFeWz +02/16/2018,Sports_celeb,@ShawnJohnson,Vienna... I love you so freaking much. #vienna #worldtravels #vloglife #marriage https://t.co/5aFjPEuqRf +02/15/2018,Sports_celeb,@ShawnJohnson,Kiss me you fool #marriage #lotsofslobber #eww #pda #love @andrewdeast https://t.co/fKh60L4MgB +02/14/2018,Sports_celeb,@ShawnJohnson,I know I’m a hott disastrous mess but you somehow pick up my pieces and make my heart feel so incredibly full. You… https://t.co/gI9xVnmdGH +02/14/2018,Sports_celeb,@ShawnJohnson,Starting my day off right in P R A G U E ☕️ #coffee #vloglife #worldtravels #marriage #love https://t.co/5VxwICDBeI +02/13/2018,Sports_celeb,@ShawnJohnson,#ad I LOVE PUPPERS! So glad I got to volunteer and help these cuties out a few weeks back. Thanks to @statefarm for… https://t.co/lPdhlhW2LH +02/13/2018,Sports_celeb,@ShawnJohnson,My hunk and I saying goodbye to London and hello to........... 😜 #whereswaldo #marriage #travel #europetrip… https://t.co/J1itmJfT6g +02/13/2018,Sports_celeb,@ShawnJohnson,B E R L I N W A L L 😎 where are we headed now 🤷🏼‍♀️ #train #nextstop #vloglife #adventures #history #europetrip… https://t.co/yY00WBwM5T +02/12/2018,Sports_celeb,@ShawnJohnson,RT @_josiesteele_: @ShawnJohnson yelling “I see dogs!” And running off camera to go pet the dogs is literally the most relatable thing I’ve… +02/11/2018,Sports_celeb,@ShawnJohnson,Cutest coffee shop in Amsterdam #COFFEE #COFFEE #COFFEE https://t.co/fSLO88qOVE +02/11/2018,Sports_celeb,@ShawnJohnson,RT @KeelievKruse: My cat and I LOVE watching you vlogs. @ShawnJohnson @AndrewDEast https://t.co/VaT4FAwCql +02/10/2018,Sports_celeb,@ShawnJohnson,P A R I S ... I like you 😎 #travel #worldtravels #vloglife #youtube #europetrip #eiffeltower #paris https://t.co/wrjkk7ykAY +02/09/2018,Sports_celeb,@ShawnJohnson,Nothing like some morning espresso at the most gorgeous hotel ever @fsparis thank you for the most magical stay but… https://t.co/vVoGtGYxyU +07/02/2018,Sports_celeb,@kristiyamaguchi,"My sister, Lori and her friends are raising money for suicide prevention. +If you or your family have been personall… https://t.co/d0DAoSyCsA" +06/22/2018,Sports_celeb,@kristiyamaguchi,A special package arrived today from my choreographer #sandrabezic ...the original Jef Billings sketches of a few o… https://t.co/LYfchZ7ja0 +06/21/2018,Sports_celeb,@kristiyamaguchi,Excited to play for this great cause but Ha I apologize to my teammates already! Skating prowess does not translate… https://t.co/2mb2hbuYnb +06/20/2018,Sports_celeb,@kristiyamaguchi,Some more of paradise...and goofballs. 🌅🤪… https://t.co/97YWoypYNK +06/17/2018,Sports_celeb,@kristiyamaguchi,Wishing all of you daddys a happy Father's Day!!! +06/17/2018,Sports_celeb,@kristiyamaguchi,Happy Father’s Day @brethedican ...hoisting a… https://t.co/n2j88FoxHp +06/11/2018,Sports_celeb,@kristiyamaguchi,Thank you so much Raj for always being so generous with your time and supporting our work. You’re the best! Xo https://t.co/5n5UXGOgtl +06/10/2018,Sports_celeb,@kristiyamaguchi,Big thank you to these awesome Olympians for coming out and supporting @alwaysdream . You’re my heroes in so many w… https://t.co/fbrGkDp2Cb +06/09/2018,Sports_celeb,@kristiyamaguchi,Congratulations @warriors !!! Battled through a lot this year. #champs #DubNation wooooooooohoooooooo!!!!!!!🎉🙌🏻 https://t.co/S2cxotdVjk +06/08/2018,Sports_celeb,@kristiyamaguchi,Lets go @warriors !!! #DubNation 💛💙 +06/08/2018,Sports_celeb,@kristiyamaguchi,And the Stanley Cup ceremony takes a Vegas turn! 😱 #whathappensinvegasthehockeyworldsees 👀 +06/08/2018,Sports_celeb,@kristiyamaguchi,Big Congrats to @Capitals #stanleycup Champs!!! 🎉🙌🏻🎊. +06/07/2018,Sports_celeb,@kristiyamaguchi,Good luck @MichaelWeiss2 🧢 ! #stanleycup https://t.co/gSqZbhIe3V +06/06/2018,Sports_celeb,@kristiyamaguchi,Which one? #LoveMe #StayWild #LetsGetWeird https://t.co/RlOrqF1hQg +06/04/2018,Sports_celeb,@kristiyamaguchi,Yesssssssss #DubNation +05/29/2018,Sports_celeb,@kristiyamaguchi,"RT @warriors: Steph splash to take the lead! 💦 + +📺 @NBAonTNT https://t.co/5WYbtum2J9" +05/29/2018,Sports_celeb,@kristiyamaguchi,Why is it a shooting foul on a rebound foul? +05/28/2018,Sports_celeb,@kristiyamaguchi,"Game 7 @warriors , game 1 #StanleyCup Finals 😱😱😱 #DubNation #GoCaps" +05/28/2018,Sports_celeb,@kristiyamaguchi,Always grateful for the ultimate sacrifice for our liberties and freedom. Remembering today and everyday. #HappyMemorialDay ♥️🇺🇸💙 +05/27/2018,Sports_celeb,@kristiyamaguchi,Let’s go #Dubs !!! https://t.co/ivLme7hV0l +05/23/2018,Sports_celeb,@kristiyamaguchi,Wasting away at CA DMV office. #3hrsandcounting 🤬 +05/23/2018,Sports_celeb,@kristiyamaguchi,@USFigureSkating Tank!!! ❤️❤️❤️ +05/22/2018,Sports_celeb,@kristiyamaguchi,"Buy one, Give one! + +You can be part of my @AlwaysdreamFDN mission to ensure low-income students have access to hig… https://t.co/ZaTHo613qH" +05/21/2018,Sports_celeb,@kristiyamaguchi,Give the gift of reading to a child in need.Thanks to my Publisher @sourcebooks starting today for every book purch… https://t.co/5NX3iDcxK1 +05/20/2018,Sports_celeb,@kristiyamaguchi,Breaks my heart when our 14 yr old daughter has to ask this. We all feel broken for the victims and their families.… https://t.co/K90m5zRbYv +05/17/2018,Sports_celeb,@kristiyamaguchi,Anyone ever use Rover? Thoughts? +05/16/2018,Sports_celeb,@kristiyamaguchi,Raising age to 18 would be so detrimental to our sport. It’s exceptional for a lady to increase revolutions in the… https://t.co/j1bccA6PDo +05/14/2018,Sports_celeb,@kristiyamaguchi,I adore these 2 and they deserve your votes! Woohoo @mirai_nagasu and @Adaripp !!! #dwts and Yay @Meryl_Davis ! +05/13/2018,Sports_celeb,@kristiyamaguchi,To all you mom’s- one day off a year but the greatest privilege in the world. Happy Mother’s Day! 💐💖 https://t.co/eA6o8xj2nn +05/07/2018,Sports_celeb,@kristiyamaguchi,Lets go @SanJoseSharks !!!!! Get it going! 👏🏼👏🏼👏🏼 +05/05/2018,Sports_celeb,@kristiyamaguchi,So happy to be here at @hawaiibookmusic again with ADF board President @kealaorona and ED @loriyamaguchi ! 1 readin… https://t.co/WUYtabLeqA +05/05/2018,Sports_celeb,@kristiyamaguchi,😩 +05/03/2018,Sports_celeb,@kristiyamaguchi,Let’s go sharks!!! 🦈😋⚔️ https://t.co/BWOJ5836BK +05/02/2018,Sports_celeb,@kristiyamaguchi,Hawaii friends! Visit My Keiki Reading Corner @hawaiibookmusic #HBMF2018 I’m reading Sat@ 10AM & 1PM and Sun@ 10AM… https://t.co/SN52Ej6xxQ +05/01/2018,Sports_celeb,@kristiyamaguchi,"It was so great to meet you, I am a fan of yours and inspired by all you do. Congratulations on all of your success… https://t.co/rYkHWsKLxf" +05/01/2018,Sports_celeb,@kristiyamaguchi,"Omgoodness when it rains it pours, our poor house- plumber, AC, attic, door, grill. Calgon take me away...🛁" +05/01/2018,Sports_celeb,@kristiyamaguchi,OT again 🤪😱🦈 +05/01/2018,Sports_celeb,@kristiyamaguchi,Niners!!! ❤️💛 https://t.co/zCuIvvJxoc +04/30/2018,Sports_celeb,@kristiyamaguchi,"Honor was mine, thank you @SarahHughesNY . Fun to see ya! ❌⭕️ https://t.co/caV6Smdv6q" +04/29/2018,Sports_celeb,@kristiyamaguchi,Sharrrrkkkkssssss!!!!!!!!!🤜🤜🤜👏🏼👏🏼👏🏼#BecauseItsTheCup +04/29/2018,Sports_celeb,@kristiyamaguchi,😱😵👀 +04/28/2018,Sports_celeb,@kristiyamaguchi,Let’s go Sharks! Game 2 #stanleycup https://t.co/DID2rMg4th +04/28/2018,Sports_celeb,@kristiyamaguchi,@BretHedican thank you 😊😘 +04/27/2018,Sports_celeb,@kristiyamaguchi,On to game 2 🦈 https://t.co/EEV8xIMhMJ +04/26/2018,Sports_celeb,@kristiyamaguchi,Excited about the celebration of these awesome athletes tonight! #teamUSA 🇺🇸 https://t.co/BhiNeKaAzN +04/24/2018,Sports_celeb,@kristiyamaguchi,Come on Bay Area and @nbcbayarea and local media. Get behind this team that has been in the playoffs 19 x’s in the… https://t.co/fS7xXgfL1X +04/21/2018,Sports_celeb,@kristiyamaguchi,People ask what my favorite skating routine was. Because of @SandraBezic I can never pick just one. Creating with y… https://t.co/OpfcdLeXj3 +04/21/2018,Sports_celeb,@kristiyamaguchi,@jahawtin @isabrasseur @TheHSF Nice article @isabrasseur ❤️ Can Gabi teach Keara how to cook too? :) +04/19/2018,Sports_celeb,@kristiyamaguchi,So completely honored. Especially because of its namesake and all that Jesse Owens represents. I humbly thank you… https://t.co/xdAVnpMmpw +04/19/2018,Sports_celeb,@kristiyamaguchi,SHARKSSS!!!!!!!!!!!!!! Movin' on #round2 #sweep #stanleycup 🦈@SanJoseSharks +04/18/2018,Sports_celeb,@kristiyamaguchi,Hey Bay Area tweeps- come out and support this event! 100% of the proceeds will go towards athletes with disabiliti… https://t.co/A13EwKg6pz +04/16/2018,Sports_celeb,@kristiyamaguchi,Its no wonder that he’s captured our hearts. 🖤🐾🐶 #Tank https://t.co/Z9JQ2JjSpM +04/15/2018,Sports_celeb,@kristiyamaguchi,👏🏼👏🏼👏🏼 https://t.co/wA5wqa27fC +04/15/2018,Sports_celeb,@kristiyamaguchi,This is gonna be ugly 🦈👅🦆 +04/14/2018,Sports_celeb,@kristiyamaguchi,Dubs...Sharks...positive vibes for the Bay today!!! #NBAPlayoffs #StanleyCup 💙💛🦈 +04/13/2018,Sports_celeb,@kristiyamaguchi,Kane!!!!!!!!!!!! #BecauseItsTheCup 🦈 +04/13/2018,Sports_celeb,@kristiyamaguchi,Can’t decide if I like your gold lamé pants or @pswylie ‘s leopard tank top better! 🤩 https://t.co/Oj7T25tez1 +04/12/2018,Sports_celeb,@kristiyamaguchi,Most wonderful time of the year!!! #LetsGoSharks 🦈😋🦆 #StanleyCupPlayoffs https://t.co/H4sI7KzVzI +04/08/2018,Sports_celeb,@kristiyamaguchi,"RT @SanJoseSharks: The #DuckHunt begins on Thursday. + +Full playoff schedule: https://t.co/ALxVglLIU2 https://t.co/xewaQrh6QY" +04/06/2018,Sports_celeb,@kristiyamaguchi,Happy Opening night 2018 @starsonice ! See ya in SJ. @Meryl_Davis @CharlieaWhite @AshWagner2010 @MadiHubbell… https://t.co/Nqt4BhfkWj +04/04/2018,Sports_celeb,@kristiyamaguchi,Fur babies meet. 🐾 #Hunter #Tank https://t.co/lNg3cLOOuh +04/01/2018,Sports_celeb,@kristiyamaguchi,Happy Easter 🐣🐇 🌷 +03/31/2018,Sports_celeb,@kristiyamaguchi,Thank you @Cirque #Crystal ! I loved the show and was in complete awe which is the norm with all of your shows. Bra… https://t.co/OTmgz03tHc +03/24/2018,Sports_celeb,@kristiyamaguchi,Yay congratulations @MadiHubbell @ZachTDonohue !!! 🎉 https://t.co/7VjnDqXqfK +03/24/2018,Sports_celeb,@kristiyamaguchi,Congratulations @nathanwchen ! https://t.co/N51G5ASx5m +03/21/2018,Sports_celeb,@kristiyamaguchi,@kristamarieyu @wheeler_forrest @TheIanChen @HudsonDYang @parkrandall 😘@kristamarieyu +03/21/2018,Sports_celeb,@kristiyamaguchi,@brettyamaguchi @HudsonDYang @TheIanChen 90’s Hair baby!!! Couldn’t find my scunchie 🤣 +03/20/2018,Sports_celeb,@kristiyamaguchi,Haha! This is tonight...reliving the ‘90’s 😆#FreshOffTheBoat ABC #firstladyhuang https://t.co/lBLiuben3y +03/17/2018,Sports_celeb,@kristiyamaguchi,@NickE408S @SanJoseSharks @evanderkane_9 Channel 780 NBCS +03/17/2018,Sports_celeb,@kristiyamaguchi,Yaaaayyyy 🎩trick for @evanderkane_9 !!! @SanJoseSharks 🦈 +03/16/2018,Sports_celeb,@kristiyamaguchi,TGIF...whatcha all up to? +03/15/2018,Sports_celeb,@kristiyamaguchi,"RT @AlexShibutani: .@MaiaShibutani and I are honored to be semifinalists for the 88th AAU James E. Sullivan Award. +We need your help! +Vot…" +03/14/2018,Sports_celeb,@kristiyamaguchi,So proud of our daughters and all the students across the country honoring Parkland and taking a stand. Let’s hope… https://t.co/oJSfdc3i0N +03/14/2018,Sports_celeb,@kristiyamaguchi,@ScottHamilton84 😘 honored and right back at you @ScottHamilton84 +03/11/2018,Sports_celeb,@kristiyamaguchi,"Omgoodness 🤣😂🤣 My life...RT if you can identify. +Slime After Slime / Time After Time Parody https://t.co/thjq9asdKL via @YouTube" +03/08/2018,Sports_celeb,@kristiyamaguchi,@CJVosters @ESPN1009 @greatlakesloons Big congrats to you @CJVosters ! +03/06/2018,Sports_celeb,@kristiyamaguchi,I’m so excited to be featured on @booknook - a great platform that helps students achieve their dreams through smal… https://t.co/SO5dMgDULU +03/06/2018,Sports_celeb,@kristiyamaguchi,So fun to make an appearance on @FreshOffABC ! Thank you for this experience. Hope you can catch it! https://t.co/HR4etJXyxg +03/02/2018,Sports_celeb,@kristiyamaguchi,Veteran. U.S. Paralympic Gold Medalist. Father. @RicoSled23 is an inspirational part of Team Milk… https://t.co/Eji4RcpQyU +03/01/2018,Sports_celeb,@kristiyamaguchi,That oh so blissful first sip. #simplepleasures #matchalatte https://t.co/p0fLYgMbeL +02/27/2018,Sports_celeb,@kristiyamaguchi,@USFigureSkating @nathanwchen Awwww with Tank and Dozer! +02/26/2018,Sports_celeb,@kristiyamaguchi,"Whether you’re hitting the ice or just trying to keep up with your kids, a good start is key. #BuiltNotBorn #ad… https://t.co/LM96o59sQ2" +02/25/2018,Sports_celeb,@kristiyamaguchi,"RT @nerdist: ICYMI, we asked @kristiyamaguchi if The Cutting Edge is realistic at all: https://t.co/YP6tZqDjBN (Spoiler alert: maybe not?)…" +02/23/2018,Sports_celeb,@kristiyamaguchi,"As a mom, it’s important I give my kids (and everyone) the support they need to succeed on and off the ice.… https://t.co/T7kYgS6a5s" +02/23/2018,Sports_celeb,@kristiyamaguchi,@NickMcCarvel @NBCOlympics @kristavoda @Ben_Agosto @CharlieaWhite It was always a highlight chatting with you. Was… https://t.co/A3qA4BXaKK +02/23/2018,Sports_celeb,@kristiyamaguchi,"US Ladies, you fought a good fight and know that no matter what we’re proud of you. @Karebearsk8 @mirai_nagasu @bradie_tennell" +02/23/2018,Sports_celeb,@kristiyamaguchi,"That was an insane close to Olympic #figureskating . The Russian rivalry, the greatest 4th place finish program eve… https://t.co/MObZ9Ahz7b" +02/23/2018,Sports_celeb,@kristiyamaguchi,Cheering you all on @Karebearsk8 @bradie_tennell @mirai_nagasu !!! Kill it! 🇺🇸⛸#teamusa +02/23/2018,Sports_celeb,@kristiyamaguchi,@JedHopkins @CharlieaWhite @CJVosters @ItsKrystleT @CJVosters you deserve a gold medal putting up with @CharlieaWhite for 2 weeks! +02/22/2018,Sports_celeb,@kristiyamaguchi,Thank you @FareedNBCS for graciously having me on @NBCSN with you. See ya back in the Bay Area! #olympics https://t.co/lWYQ1GLLI0 +02/22/2018,Sports_celeb,@kristiyamaguchi,RT @FromTheBoards: This is the LAST NIGHT for the late edition of #nbcolympicIce! What burning questions do you have for @Ben_Agosto @Charl… +02/22/2018,Sports_celeb,@kristiyamaguchi,"Seriously?! Wouldn’t believe it if I didn’t see it, so mind blowing. Amazing More triples in one pass than we may s… https://t.co/yYcYfQFy3m" +02/22/2018,Sports_celeb,@kristiyamaguchi,#tbt but not really...anyone remember the original 20yrs ago? Here’s a behind the scenes from my #milklife shoot.… https://t.co/RXy0ysTY8K +02/22/2018,Sports_celeb,@kristiyamaguchi,@pswylie @TeamUSA Me too! They played outta their minds. Yay! Miss you xoxoxo +02/22/2018,Sports_celeb,@kristiyamaguchi,Yeeessssssss!!! Congratulations @TeamUSA #womenshockey on GOLD!!! 🇺🇸🥇 https://t.co/O5QW6PlrLI +02/22/2018,Sports_celeb,@kristiyamaguchi,Omgoodness this game! 🇺🇸#womenshockey 😱 +02/21/2018,Sports_celeb,@kristiyamaguchi,@FareedNBCS No I’ve finally made it onto your show! Thanks for having me @FareedNBCS +02/21/2018,Sports_celeb,@kristiyamaguchi,Sending my best wishes and lots of luck to @mirai_nagasu @bradie_tennell @Karebearsk8 🇺🇸 bring it ladies! 💪🏼👊🏼⛸ +02/20/2018,Sports_celeb,@kristiyamaguchi,@taiskates @GettyImages You were (and are) such an inspiration to me. That earring meant so much to me-for the most… https://t.co/2K094ob9to +02/20/2018,Sports_celeb,@kristiyamaguchi,Happy anniversary @BrianBoitano ! You showed me what it took to accomplish a dream. No better mentor and now dear f… https://t.co/nsRBIQpbo8 +02/20/2018,Sports_celeb,@kristiyamaguchi,A dance event with roller coaster emotions. Congratulations to Virtue/Moir on awe inspiring skates and history made… https://t.co/3m6ZPA20hP +02/20/2018,Sports_celeb,@kristiyamaguchi,. @ShibSibs !!! Congratulations on your Olympic 🥉 👏🏼🎉 Performances of a life at the Olympics! +02/20/2018,Sports_celeb,@kristiyamaguchi,Listening to Olympic coach (legendary already) #brianorser on Olympic Ice. So agree w/ his philosophy on preparing… https://t.co/5wRDzh4Por +02/18/2018,Sports_celeb,@kristiyamaguchi,Best of luck to the ice dancers today! @MaiaShibutani @AlexShibutani @MadiHubbell @ZachTDonohue @chockolate02… https://t.co/PEsmGfEQXr +02/18/2018,Sports_celeb,@kristiyamaguchi,@NancyinHI @kristavoda @Ben_Agosto @CharlieaWhite @NBCOlympics Try downloading the NBC Sports app... +02/18/2018,Sports_celeb,@kristiyamaguchi,Want a recap on the skating competition so far? Go to https://t.co/L4yWb2gDrB for our #NBCOlympicIce POST show. Sen… https://t.co/sKjodOXBKi +02/17/2018,Sports_celeb,@kristiyamaguchi,RT @YukiSNYC: Holy shit @nathanwchen. We never stopped believing in you. What a fighter. You showed everyone out there to never stop believ… +02/17/2018,Sports_celeb,@kristiyamaguchi,"Happy 34th anniversary my friend, my hero. You won gold in ‘84 but the impact you’ve had in figure skating and in l… https://t.co/p1BMD39WiQ" +02/17/2018,Sports_celeb,@kristiyamaguchi,Perfection. Happy 4th anniversary @Meryl_Davis @CharlieaWhite @TeamUSA 🥇 https://t.co/BBFmHQpdH7 +02/17/2018,Sports_celeb,@kristiyamaguchi,@Ben_Agosto @CharlieaWhite Ummmmmm where’s the pic @Ben_Agosto ? 🤣 +02/17/2018,Sports_celeb,@kristiyamaguchi,"Early morning shenanigans. Our Game of Thrones...King Slayer🗡, King of the North 🐺, Khalisti Yama 🐉 https://t.co/SI0JHzxi9d" +02/17/2018,Sports_celeb,@kristiyamaguchi,"So amazed at these men. History made. Love Shoma, so happy for Javi and Spain, @Adaripp @govincentzhou @nathanwchen… https://t.co/gqWbKHVGze" +02/17/2018,Sports_celeb,@kristiyamaguchi,Congratulations Hanyu on history- 1st repeat gold medalist since the great @PushDicksButton . 👏🏼👏🏼👏🏼🇯🇵 +02/17/2018,Sports_celeb,@kristiyamaguchi,"Ok...these Olympic moments are so emotional. @govincentzhou good for you, that was freakin’ awesome😎" +02/17/2018,Sports_celeb,@kristiyamaguchi,"@nathanwchen K, I’m still shaking from that. Nathan with the Mao Asada comeback. So happy for him. #superhuman #olympics" +02/17/2018,Sports_celeb,@kristiyamaguchi,What?!?!?! Completely inhuman display of ridiculousness!!! 6 quads...beautiful skating. Guys beyond. Congratulation… https://t.co/AfUuS7bnyO +02/16/2018,Sports_celeb,@kristiyamaguchi,".@maddiebowman, you inspire me with your incredible grace and skill under pressure. We’re all cheering you on from… https://t.co/5IFp1wZWQX" +02/16/2018,Sports_celeb,@kristiyamaguchi,"Stunning men’s short event on both ends of the spectrum. Wow Hanyu, composed, in command, veteran. Great to see Fer… https://t.co/4HZnjceEfi" +02/16/2018,Sports_celeb,@kristiyamaguchi,Good luck @nathanwchen and @Adaripp tonight for your SP! #olympics #Pyeonchang2018 🇺🇸 +02/16/2018,Sports_celeb,@kristiyamaguchi,Go @govincentzhou !!! 🇺🇸#teamusa +02/15/2018,Sports_celeb,@kristiyamaguchi,So many thoughts and prayers go out to Parkland FL. It’s well beyond the time to do something when our children don… https://t.co/1AG5dIUoAq +02/14/2018,Sports_celeb,@kristiyamaguchi,Simply agree... :) https://t.co/kGVJ0YYnWC +02/14/2018,Sports_celeb,@kristiyamaguchi,Happy Valentine’s Day!!! ❤️💘💋 +02/13/2018,Sports_celeb,@kristiyamaguchi,Thank you Lea! Feel free to come join us in studio if you feel like chatting about skating! See you soon! https://t.co/Ka1Q7iFk5x +02/13/2018,Sports_celeb,@kristiyamaguchi,😄👏🏼@MarkBallas is AMAZING! https://t.co/IjLY6axdQk +02/13/2018,Sports_celeb,@kristiyamaguchi,@CharlieaWhite I totally agree @CharlieaWhite ! https://t.co/sUKocYMBfj +02/12/2018,Sports_celeb,@kristiyamaguchi,"Skating is pure magic, so whether you’re trying a new move or taking that 1st step on the ice, be fearless.… https://t.co/dPexblY5aw" +02/12/2018,Sports_celeb,@kristiyamaguchi,We’ll be watching you! Good luck @BOBSLEDR ! #pyeongchang2018 https://t.co/IPv3He01eP +02/12/2018,Sports_celeb,@kristiyamaguchi,So into the #Olympics ...but yay @SanJoseSharks too! 🦈 🏒 #SOwin +02/12/2018,Sports_celeb,@kristiyamaguchi,You rocked it @NickMcCarvel ! Thank you so much for bringing us such great insight from Pyeongchang! Talk to ya soo… https://t.co/ieon6t78GI +02/12/2018,Sports_celeb,@kristiyamaguchi,Let’s go @ShibSibs !!! 🇺🇸coming up now! +02/12/2018,Sports_celeb,@kristiyamaguchi,Wow @mirai_nagasu !!! Congratulations...tears of joy for you again! #1stAmerican3axel #hero 👑 +02/12/2018,Sports_celeb,@kristiyamaguchi,@Adaripp 💪🏼👏🏼👏🏼awesome!!! +02/11/2018,Sports_celeb,@kristiyamaguchi,I LOVE this! You two are the best and I hope to see more demos on the glice. Great job! #sendinghugs… https://t.co/qCtUR9DuE8 +02/11/2018,Sports_celeb,@kristiyamaguchi,Yay can’t wait to watch @mirai_nagasu and @Adaripp grace Olympic ice! Good luck in the team event tonight (this mor… https://t.co/wQVxRZuOpe +02/11/2018,Sports_celeb,@kristiyamaguchi,“Called” correct but was it judged correct? #GOE https://t.co/87JB9MoKIt +02/11/2018,Sports_celeb,@kristiyamaguchi,Go get ‘Em @MaiaShibutani and @AlexShibutani !!! Good luck In the team event tonight! #olympics #figureskating +02/11/2018,Sports_celeb,@kristiyamaguchi,Good luck @bradie_tennell as you begin your #Olympics experience!!! Enjoy and go @TeamUSA ! #PyeongChang #figureskating +02/10/2018,Sports_celeb,@kristiyamaguchi,RT @SInow: Even @hqtrivia got in the Olympic spirit tonight with a cameo from 1992 Olympic gold medalist Kristi Yamaguchi https://t.co/T4f2… +02/08/2018,Sports_celeb,@kristiyamaguchi,Who’s so pumped?!?! Good luck to you @TeamUSA ! #BestOfUS #olympics ⛸ https://t.co/9lwGgEXNw2 +02/08/2018,Sports_celeb,@kristiyamaguchi,Figure skating starts tonight!!! Catch me @CharlieaWhite @Ben_Agosto @kristavoda on #OlympicIce right after primeti… https://t.co/ijh4ZnDWn0 +02/08/2018,Sports_celeb,@kristiyamaguchi,Thank you @VICE ! #letsdoitladies 💪🏼 https://t.co/9DvJHdMX5A @bonnieblair #cathyturner #donnaweinbrecht +02/07/2018,Sports_celeb,@kristiyamaguchi,Team Milk is ready for the Olympic Winter Games PyeongChang 2018. Cheers! #BuiltNotBorn #ad #MilkLife #TeamUSA… https://t.co/77xajbLpRC +02/06/2018,Sports_celeb,@kristiyamaguchi,"Tank says- +“I wanna wish my skating friends good luck at the Olympics!!! Wish I could be there to cheer you on!” 🐶… https://t.co/Sb49DECzeD" +02/06/2018,Sports_celeb,@kristiyamaguchi,Coming up at 8:30am West Coast 😃Thank you for coming out to reminisce @NMoralesNBC 💕 https://t.co/eRc1mKjli7 +02/05/2018,Sports_celeb,@kristiyamaguchi,🎉Happy Danville mom #LisaErtz (and pretty good soccer player Julie Johnston;)… https://t.co/SWtvny7ehY +02/05/2018,Sports_celeb,@kristiyamaguchi,Loved this to my favorite song!!! So pumped 👏🏼👏🏼👏🏼 #TeamUSA https://t.co/WCAvYqRwWP +02/05/2018,Sports_celeb,@kristiyamaguchi,Just watched a hover board show...yes my daughters choreograph routines on it. #laughtilyoucry 🤣😂🤣 +02/04/2018,Sports_celeb,@kristiyamaguchi,@CharlieaWhite Awww TY ☺️ +02/02/2018,Sports_celeb,@kristiyamaguchi,"@TIME Thank you @TIME ! We know who the big guns are, but I want to “meet” the other faces to watch for at the Olympics. 👍🏼" +02/02/2018,Sports_celeb,@kristiyamaguchi,I love mentoring the next generation of athletes. I’m sure Elliot will be out there nailing triple axels in no time… https://t.co/l3r3v14IYF +02/01/2018,Sports_celeb,@kristiyamaguchi,"We all fall, it’s how #WeGetUp that matters. Join us for National Get Up Day, Feb. 1 and share your story.… https://t.co/FIZEAP4L9J" +01/31/2018,Sports_celeb,@kristiyamaguchi,"Chasing my tail like @TeamUSA athletes are chasing their dreams! #Tank Make a gif to show how your dog is more, h… https://t.co/M0kjR0rsmw" +01/30/2018,Sports_celeb,@kristiyamaguchi,Always lovely to hang and chat with you @NMoralesNBC ! https://t.co/gQkIWCLHCe +01/24/2018,Sports_celeb,@kristiyamaguchi,"When people ask what it takes to become a U.S. Olympian, I always say the same thing: practice, practice, practice.… https://t.co/wranmHCr3N" +01/24/2018,Sports_celeb,@kristiyamaguchi,Congratulations @DanRusanowsky on #2000 games!!! @SanJoseSharks https://t.co/orGei924Ps +01/17/2018,Sports_celeb,@kristiyamaguchi,"My kids know when I put my mind to something, I give it 100%. I want them to see when you #milklife, great things h… https://t.co/wjtt65BL3Q" +01/17/2018,Sports_celeb,@kristiyamaguchi,Excited to join the @NBCOlympics digital team! https://t.co/Y9nic2QUuD +01/12/2018,Sports_celeb,@kristiyamaguchi,"Take it from me, dreams don’t come true at the drop of a hat. It takes time and hard work to achieve your goals.… https://t.co/ZdkdkNgY6B" +01/11/2018,Sports_celeb,@kristiyamaguchi,https://t.co/OVaTTLecQT #activewear #sale https://t.co/281fCahvdm +01/08/2018,Sports_celeb,@kristiyamaguchi,"As a mom, I know the importance of good nutrition. I want to make sure everyone gets nutrients they need to do thei… https://t.co/q5UT0Ui69p" +01/07/2018,Sports_celeb,@kristiyamaguchi,Congratulations @govincentzhou @rossminer @nathanwchen on a spectacular display of athleticism and artistry! 🥇🥈🥉 +01/07/2018,Sports_celeb,@kristiyamaguchi,But this...I can watch it all day. @jasonbskates https://t.co/e2zQUc96JJ +01/07/2018,Sports_celeb,@kristiyamaguchi,@rockerskating Too harsh +01/07/2018,Sports_celeb,@kristiyamaguchi,Ok- that was exciting TSTL. Great skate @govincentzhou https://t.co/aqcfocv8nN +01/06/2018,Sports_celeb,@kristiyamaguchi,@mirai_nagasu you amaze and inspire. TY for showing how never giving up on a dream is the only way it can become re… https://t.co/EtHyMkjk72 +01/06/2018,Sports_celeb,@kristiyamaguchi,"A Fremont girl at the Olympics again!!! Congratulations Karen, I know you will represent @TeamUSA 🇺🇸 with pride! https://t.co/6GvMXEKMBd" +01/06/2018,Sports_celeb,@kristiyamaguchi,"That #uschamps18 ladies event was 😱😁😭🙌🏻👏🏼👍🏼🔥!!!!!!! So happy for all the women, they skated so awesome! 🥇Bradie 🥈… https://t.co/6XhNNOr8QL" +01/06/2018,Sports_celeb,@kristiyamaguchi,Strong gutsy skate by @AshWagner2010 ! Nice! 👏🏼👏🏼👏🏼 +01/05/2018,Sports_celeb,@kristiyamaguchi,What an event at ice dance...so fun to watch them bring it! @chockolate02 @Evan_Bates @MaddieHubbell @ZachTDonohue @ShibSibs 🙌🏻 +01/05/2018,Sports_celeb,@kristiyamaguchi,Weeeeee! That short dance though @MaiaShibutani and @AlexShibutani 🔥🔥🔥 Yay 👏🏼👏🏼👏🏼 +01/04/2018,Sports_celeb,@kristiyamaguchi,Running up a wall? Front flips? All in a day’s work for Elliot. He introduced me to the world of parkour & showed m… https://t.co/RtRzx6T9lN +01/04/2018,Sports_celeb,@kristiyamaguchi,Whoa felt that 😳#earthquake +01/04/2018,Sports_celeb,@kristiyamaguchi,Yay @Karebearsk8 ! Beautifully done! #USChamps18 +01/04/2018,Sports_celeb,@kristiyamaguchi,Thank you @nicole_soojung !!!😘 https://t.co/ubFwem2RPr +01/04/2018,Sports_celeb,@kristiyamaguchi,Thrilling week ahead at the @USFigureSkating Championships. Good luck to the competitors! Some will be on the 2018 Olympic team !!! ⛸ +01/04/2018,Sports_celeb,@kristiyamaguchi,Great SP @PolinaEdmunds !!! Hometown girl doesn’t disappoint. 👍🏼👏🏼👏🏼 +01/01/2018,Sports_celeb,@kristiyamaguchi,"Wishing everyone a very Happy New Year filled with blessings, good health and prosperity. 🎊🎆💋" +01/01/2018,Sports_celeb,@kristiyamaguchi,Happy happy birthday @Meryl_Davis ! There’s no one else I’d go 🍌s with! 🎂🎊💖 https://t.co/N0Zy3v0Tuh +12/31/2017,Sports_celeb,@kristiyamaguchi,Loved skating with these amazing ladies! A special night with @starsonice back in Lake Placid. Thx for the pic… https://t.co/XaWGPbCWbX +12/16/2017,Sports_celeb,@kristiyamaguchi,@MrDrewScott Hey Drew yes! Welcome!!! +12/10/2017,Sports_celeb,@kristiyamaguchi,So proud of Emma and her team mates! Congratulations trivalleysoccerclub Fury 05 and Coach Lou!… https://t.co/3NeFJAgTnY +12/05/2017,Sports_celeb,@kristiyamaguchi,"RT @NBCOlympics: Russia banned from 2018 #WinterOlympics, but Russian athletes can compete as neutrals: https://t.co/jsIOAxOixM https://t.c…" +12/05/2017,Sports_celeb,@kristiyamaguchi,"Milk is one of the most requested, yet least donated items at food banks. See how you can help kids in need:… https://t.co/UWhVt9jY8I" +12/04/2017,Sports_celeb,@kristiyamaguchi,Come on out and skate on the rooftop with me tonight! 7-9pm @TheCosmpolitan #treelighting https://t.co/sPfvzFOJl5 +12/03/2017,Sports_celeb,@kristiyamaguchi,Woohoo! Congrats to Emma and her @trivalleysc2 team for the big win today! On to State Cup finals!!! #05 +12/02/2017,Sports_celeb,@kristiyamaguchi,Looking forward to kicking off this holiday season with you! https://t.co/zXGNXFRtT9 +12/01/2017,Sports_celeb,@kristiyamaguchi,Curled up with a good read! Congratulations @karebearsk8 on Finding the Edge. And I was honored to write the forewo… https://t.co/XLAETJA7ks +11/29/2017,Sports_celeb,@kristiyamaguchi,"RT @555CATreeLight: Tonight's the night! Come down to #555california and join Karen and @RonnieLottHOF, @JoeMontana, @kristiyamaguchi, @raj…" +11/29/2017,Sports_celeb,@kristiyamaguchi,"Nearly 13M American kids struggle w/ hunger. This holiday, help The Great American #MilkDrivelend a hand:… https://t.co/CqHLr3TjTY" +11/23/2017,Sports_celeb,@kristiyamaguchi,Happy turkey day everyone! I'm thankful for so much especially my family and friends. How about you? #HappyThanksgiving #grateful 🦃🍗🍰🍽💛 +11/22/2017,Sports_celeb,@kristiyamaguchi,"Hey #TeamStark @LindseyStirling -you have so much heart and brought so much joy, creativity, class and awesomeness… https://t.co/B95rwm5pNF" +11/22/2017,Sports_celeb,@kristiyamaguchi,@Jordan_Fisher @lindsayarnold Big congratulations to you @Jordan_Fisher !!! An incredible star on stage but off sta… https://t.co/HuZAweTmM2 +11/21/2017,Sports_celeb,@kristiyamaguchi,"As a mom of 2, I’m proud to support The Great American #MilkDriveto help kids get nutrients they need. Visit… https://t.co/6hnqJE1B9Y" +11/21/2017,Sports_celeb,@kristiyamaguchi,What?!?!? Those freestyles were so awesome tonight!!! Just so fun to watch 👏🏼👏🏼👏🏼🙌🏻 @DancingABC #dwts +11/19/2017,Sports_celeb,@kristiyamaguchi,Have an amazing show tonight @ScottHamilton84 @TeamScottCARES !!! Always inspired by your commitment to… https://t.co/sxilDNlWrj +11/14/2017,Sports_celeb,@kristiyamaguchi,This really hit home for me. See how U.S. Olympian @MaddieBowman finds the support she needs to succeed with a litt… https://t.co/FgayMLAf4r +11/14/2017,Sports_celeb,@kristiyamaguchi,#teamstark y’all!!!!! Get you’re votes in @DancingABC #dwts finale 1-800-868-3407 +11/13/2017,Sports_celeb,@kristiyamaguchi,Yay a win! 😬 #goniners +11/11/2017,Sports_celeb,@kristiyamaguchi,Thank you veterans 🇺🇸 💙❤️ +07/01/2018,Sports_celeb,@McIlroyRory,Thanks @NiallOfficial 👍 It’s going to be a special @DDFIrishOpen week at @Ballyliffin ⛳️🌞 https://t.co/WOTatVt1Cd +06/29/2018,Sports_celeb,@McIlroyRory,Love this video!! Looking forward to seeing everyone next week at @ballyliffin for the @DDFIrishOpen. Let's hope th… https://t.co/33DGBBXla6 +06/26/2018,Sports_celeb,@McIlroyRory,...golfers from the UK and Ireland can enter here: https://t.co/XHFWeyFzUK ⛳️🏌️‍♀️🏌🏻‍♂️ https://t.co/3P1XUYfjoi +06/26/2018,Sports_celeb,@McIlroyRory,"Want to tee off with me @royalportrush in Northern Ireland, home of @TheOpen in 2019, using the latest gear from… https://t.co/m1whwTivol" +06/25/2018,Sports_celeb,@McIlroyRory,Thank you @travelerschamp for another special week. One of the best stops on tour. https://t.co/hr1mRwdWNi +06/20/2018,Sports_celeb,@McIlroyRory,RT @TravelersChamp: Hope you got your swings in. The golf counts tomorrow. #TravelersChamp https://t.co/IjttCyaozA +06/20/2018,Sports_celeb,@McIlroyRory,When you hit the island green @TravelersChamp you get a wee perk! Thanks @BirdiesForBrave https://t.co/UcQQEDoxgm +06/19/2018,Sports_celeb,@McIlroyRory,Well done @c_pats on winning my signed #USOpen custom-made @TaylorMadeGolf bag! Thanks everyone for participating… https://t.co/EU0gAi2jMA +06/05/2018,Sports_celeb,@McIlroyRory,Excited for Shinnecock Hills and @usopengolf! An outstanding course which will be a great championship test! Like m… https://t.co/yUXILV28hY +05/29/2018,Sports_celeb,@McIlroyRory,Thank you @jacknicklaus! Love being back at the @MemorialGolf ⛳️👌🏻 https://t.co/ezH1qjiP6f +05/15/2018,Sports_celeb,@McIlroyRory,Yesterday I returned to Congressional Country Club for the first time since winning the 2011 @usopengolf. It brough… https://t.co/iTYvnrglHB +05/07/2018,Sports_celeb,@McIlroyRory,Looking forward to this week @THEPLAYERSChamp! ⛳️ https://t.co/v3Xf8Vo7r1 +05/07/2018,Sports_celeb,@McIlroyRory,Another enjoyable week in Charlotte at the @WellsFargoGolf. Thanks for all the support and birthday wishes!🎂 Next s… https://t.co/eDLCfP2I2J +05/01/2018,Sports_celeb,@McIlroyRory,It’s @WellsFargoGolf week! https://t.co/u7fvNs8Pts +04/25/2018,Sports_celeb,@McIlroyRory,Long Drive competition next time @padraig_h #AdareManor #JPProAm2020 https://t.co/Cgvzvf4svC +04/21/2018,Sports_celeb,@McIlroyRory,😁 https://t.co/K0AFncjlf7 +04/20/2018,Sports_celeb,@McIlroyRory,Such a pleasure to play @TheAdareManor today. The golf course is parkland perfection. The exhibition match finished… https://t.co/kZ1iHnj9Ta +04/20/2018,Sports_celeb,@McIlroyRory,"RT @JPProAm: Tickets are now on sale for the 2020 JP McManus Pro-Am at Adare Manor! #JPProAm2020 + +https://t.co/YsjhGzkJHw https://t.co/A3V…" +04/19/2018,Sports_celeb,@McIlroyRory,A spectacular new golf course with an incredible backdrop of the historic Adare Manor. Looking forward to the exhib… https://t.co/lIGgZLBO6E +04/15/2018,Sports_celeb,@McIlroyRory,RT @OGOLead: On Part 2 of our podcast @McIlroyRory describes how he stays hungry and his views on inspirational leadership. https://t.co/az… +04/01/2018,Sports_celeb,@McIlroyRory,Really fun event to kick off Masters week at Augusta National. Check out @DriveChipPutt on @GolfChannel and watch t… https://t.co/k9LY9HaDzV +03/29/2018,Sports_celeb,@McIlroyRory,Thanks @DavidNovakOGO and @OGOLead. I enjoyed our conversation. https://t.co/RhqnkMta4C +03/28/2018,Sports_celeb,@McIlroyRory,.@PGAjrLeague allows kids to learn to play golf in a social team environment! All skill levels are welcome. Find yo… https://t.co/b7piupnAYm +03/28/2018,Sports_celeb,@McIlroyRory,Looking forward to going back to Wentworth for the @BMWPGA https://t.co/G1uc17GIub +03/27/2018,Sports_celeb,@McIlroyRory,"RT @THEPLAYERSChamp: After a big win @APinv, @McIlroyRory commits to #THEPLAYERS in search of his first title at the tournament. https://t.…" +03/24/2018,Sports_celeb,@McIlroyRory,Always fun spending time with you @MartySmithESPN https://t.co/po2dy5iqYv +03/21/2018,Sports_celeb,@McIlroyRory,Congratulations @burle_eric on winning the @APinv signed flag. Direct message me your details and my team will ship it to you. +03/21/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Blue = Rory +Gray = Field + +#M3driver #TwistFace https://t.co/1tbiSlfvrg" +03/20/2018,Sports_celeb,@McIlroyRory,"To celebrate my victory yesterday at Bay Hill, I’m giving away this signed @APinv flag. Simply RETWEET or FAVOURITE… https://t.co/h3D1C7ekSB" +03/19/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: With his new #TPcollection Black Copper (Soto) putter in the bag, Rory lead the field in strokes gained putting and too…" +03/19/2018,Sports_celeb,@McIlroyRory,"RT @PGATOUR: The big drives. ✅ +Laser-like irons. ✅ +Clutch putts. ✅ + +@McIlroyRory caught everyone's attention on Sunday. https://t.co/fW…" +03/19/2018,Sports_celeb,@McIlroyRory,539 days but worth the wait! So proud to win the 2018 @APinv https://t.co/I09vDrerKM +03/15/2018,Sports_celeb,@McIlroyRory,Had a blast @DriveShackUSA in Orlando today. Great food and a real fun experience. #PlayOn #DriveShack https://t.co/CByUTMNwlJ +03/07/2018,Sports_celeb,@McIlroyRory,Enjoying my first visit to @Innisbrook and so impressed with the course. Thanks @ValsparChamp for looking after us… https://t.co/O3gg1Jjbmq +02/17/2018,Sports_celeb,@McIlroyRory,Congrats on reclaiming #1 https://t.co/6242sEyhzn +02/15/2018,Sports_celeb,@McIlroyRory,Visited @TaylorMadeGolf campus this week and was completely blown away. Extremely passionate employees and literal… https://t.co/huMvTiv2qS +02/13/2018,Sports_celeb,@McIlroyRory,@TaylorMadeGolf My first day as Social Media Manager @TaylorMadeGolf! #TwistFace https://t.co/Yh8lucSC2Y +02/13/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: The result of analyzing hundreds of thousands of swings from real golfers, #TwistFace reshapes the club face to give ev…" +02/09/2018,Sports_celeb,@McIlroyRory,👀 #LDNR https://t.co/snHadgFTgo +02/07/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: #TwistFace. +#M3driver. +Available 16th of Feb. https://t.co/VRaiL9sR7W" +01/31/2018,Sports_celeb,@McIlroyRory,Excited to return to Connecticut for the @TravelersChamp on the @PGATOUR this summer! #TravelersChamp ⛳️🏌🏻‍♂️ https://t.co/GlLQTibG1C +01/30/2018,Sports_celeb,@McIlroyRory,Well done Saoirse Lambe and thank you @OMEGAGolfDubai & @omegawatches for looking after us so well last week.… https://t.co/8IP4w2MWFs +01/26/2018,Sports_celeb,@McIlroyRory,"Live at the Omega Constellation Clinic now! For all the action, visit: https://t.co/UAUZp3pC2i" +01/26/2018,Sports_celeb,@McIlroyRory,I will be helping one lucky winner improve their swing at the Omega Constellation Clinic after play today here in D… https://t.co/KQLFEveXnA +01/24/2018,Sports_celeb,@McIlroyRory,It’s ProAm day @OMEGAGolfDubai with team @omegawatches & @NiallOfficial 🏌If you didn't get the chance to enter to m… https://t.co/epN5ttCIBM +01/23/2018,Sports_celeb,@McIlroyRory,Perfect morning for some range work @OMEGAGolfDubai https://t.co/47RRNHD263 +01/18/2018,Sports_celeb,@McIlroyRory,Oscar Murphy 👏 A star of the future 🏌🏻‍♂️⛳️ https://t.co/0GSSbYZJ6n +01/16/2018,Sports_celeb,@McIlroyRory,Numbers are looking great on my end as well. 👍 Going to be a fun week with #TwistFace at the #ADGolfChamps ⛳️ https://t.co/gNIE1ikTZj +01/16/2018,Sports_celeb,@McIlroyRory,Excited to be back...with this guy 🦅...at the @ADGolfChamps ⛳️ https://t.co/QvD7TNQnOu +01/13/2018,Sports_celeb,@McIlroyRory,Cool view up high in Dubai https://t.co/8rki2XFam7 +01/11/2018,Sports_celeb,@McIlroyRory,Fancy a golf lesson with me? Buy a ticket for the #ODDC18 & you can enter to WIN the opportunity to be a part of th… https://t.co/56yLCfQ4d1 +01/05/2018,Sports_celeb,@McIlroyRory,Want to golf with myself and @NiallOfficial in Dubai on Jan 24th? Download the @voxgolf app & enter your 9-hole sco… https://t.co/Jt7xYFMQCI +01/03/2018,Sports_celeb,@McIlroyRory,Excited for a busy 2018 season with this in my bag. #TwistFace #TeamTaylorMade #Ad https://t.co/X9M2wD1UyO +01/03/2018,Sports_celeb,@McIlroyRory,Want to play 9 holes with me and @DJohnsonPGA in the ProAm #inAbuDhabi on Jan 17th? Enter this amazing competition… https://t.co/d3WsLrqS6l +12/27/2017,Sports_celeb,@McIlroyRory,Excited to share this video from @TaylorMadeGolf. This might be the most logical innovation in golf. Follow… https://t.co/WclNmt5bNG +12/08/2017,Sports_celeb,@McIlroyRory,Looking forward to a busy start to my 2018 season. Some great new events on my schedule https://t.co/LeFJyFUFf5 +12/05/2017,Sports_celeb,@McIlroyRory,Watchmakers are true master craftsmen. Thanks for the factory tour @omegawatches 👍⌚️ https://t.co/FVfN6Ur5kU +12/05/2017,Sports_celeb,@McIlroyRory,What a special day with @omegawatches. Looking forward to many more years ahead. #HappyBirthday @zekiayan 🎂 https://t.co/ImXM3mhzQa +11/27/2017,Sports_celeb,@McIlroyRory,Fancy playing golf with me and @NiallOfficial at the @OMEGAGolfDubai next January? All you have to do is download t… https://t.co/go8c31LutI +11/27/2017,Sports_celeb,@McIlroyRory,Delighted to be teeing it up at the @OMEGAGolfDubai in January and later today have an exciting competition to shar… https://t.co/EqHU2wYWvK +11/25/2017,Sports_celeb,@McIlroyRory,@EuropeanTour Great effort guys! #ShotsRecreated +11/17/2017,Sports_celeb,@McIlroyRory,Best of luck to the 80 @PGAjrLeague golfers playing in the National Championship this weekend! https://t.co/wVWQoEF3mv +11/16/2017,Sports_celeb,@McIlroyRory,Wish I was playing the @DPWTC this morning but it's come a week too early for me to compete with the boys at… https://t.co/IfXKXmpQFh +10/24/2017,Sports_celeb,@McIlroyRory,Great read @JFeinsteinBooks. Made me feel like I was in BOTH team rooms! 🇪🇺🇺🇸🏆 #RyderCup https://t.co/RqLCLyOre9 +10/01/2017,Sports_celeb,@McIlroyRory,RT @Chrell83: @McIlroyRory giving Henry his ball leaving the 15th @CloseHouseGolf #BritishMasters - made our day!!!! https://t.co/pSL499Nuug +09/27/2017,Sports_celeb,@McIlroyRory,When in Newcastle with @alanshearer! ⚽️⛳️ https://t.co/uURH8u8g7f +09/14/2017,Sports_celeb,@McIlroyRory,RT @BMWUSA: @McIlroyRory delivered the #UltimateRush — a M760i — at the 2017 BMW Championship. https://t.co/LmU7j0QlzL +09/07/2017,Sports_celeb,@McIlroyRory,Great memories playing in the @WalkerCup back in 2007. Good luck to Team GB&I this weekend in LA⛳️🏆 https://t.co/xGefDZLTzd +09/06/2017,Sports_celeb,@McIlroyRory,@BMWchamps @rorymcilroy Congratulations Preston. See you next week @BMWchamps +08/28/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Retweet & Follow for a chance to win one of the first sets of #P790 irons +ft. breakthrough #SpeedFoam Technology. + +Rule…" +08/25/2017,Sports_celeb,@McIlroyRory,#MambaMentality https://t.co/Q8A0LfcuF0 +08/23/2017,Sports_celeb,@McIlroyRory,"RT @Yankees: .@McIlroyRory, @FedEx and cancer survivor Mary Browder turned Yankee Stadium into a Par 3 to announce a donation to @StJudeRes…" +08/23/2017,Sports_celeb,@McIlroyRory,"RT @CBSThisMorning: .@NorahODonnell caught up with @PGATOUR star @McIlroyRory to talk golf, @TigerWoods, @POTUS and @StJude. WATCH Wednesda…" +08/22/2017,Sports_celeb,@McIlroyRory,Honoured to be a part of @fedex's @stjude donation announcement today with the @PGATOUR! Perfect way to start the… https://t.co/MLS4VabT8D +08/22/2017,Sports_celeb,@McIlroyRory,All set up to hit some home runs today with the @Yankees. #FedExCares @PGATOUR @TaylorMadeGolf https://t.co/Wedu4M3HLN +08/18/2017,Sports_celeb,@McIlroyRory,Don’t miss your chance to play 18 holes with me next month @bmwchamps. Enter the https://t.co/eXUAeb207c Sweepstake… https://t.co/ogMuet6Cpn +08/10/2017,Sports_celeb,@McIlroyRory,Proud to share Traden Karch's story airing on @GolfChannel. Amazing young @PGAjrleaguegolf star defying the odds… https://t.co/Dhxd3zdjJv +08/08/2017,Sports_celeb,@McIlroyRory,Moon 🌙 Golf! ⛳️🏌️@omegawatches https://t.co/scVkgJsnS8 +08/07/2017,Sports_celeb,@McIlroyRory,Loved seeing all the @PGAjrleaguegolf jerseys today! Great spending time with all the future stars of the game at t… https://t.co/Dl7ehoqRcP +08/07/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Retweet & Follow for a chance to win a dozen balls each from Rory, DJ, Jason, Sergio, Rahm, and Rose. #TP5/#TP5x https:…" +07/30/2017,Sports_celeb,@McIlroyRory,Want to join me in the @BMWchamps Pro-Am! Enter the #TeamRorySweepstakes from @golfnow @TaylorMadeGolf & @voxgolf… https://t.co/Ca4RbrYBBg +07/25/2017,Sports_celeb,@McIlroyRory,Want to walk inside the ropes with me at the 2017 #BMWChampionship at Conway Farms? Enter now for your chance to wi… https://t.co/dDsBeGfPB5 +07/16/2017,Sports_celeb,@McIlroyRory,#RO8ER #JustDoIt https://t.co/FB5HCeW4V5 +07/09/2017,Sports_celeb,@McIlroyRory,Congratulations @JonRahmpga on winning the #DDFIrishOpen and a huge thanks to all the fans who came out to support… https://t.co/pFp9hGDTma +06/30/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: More of the same this year, @McIlroyRory? 🎯🏆 + +🎟️ Don't miss out on tickets: https://t.co/WomugAJHxh https://t.co/6OqyxP3D…" +06/30/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: 6⃣ DAYS. TO. GO. + +🎟️ Tickets selling fast: https://t.co/iPLYnvOwU9 https://t.co/OtUpklTDwq" +06/29/2017,Sports_celeb,@McIlroyRory,"Thanks for all the great entries in our #RoarforRory @DDFIrishOpen comp. + +Congrats to winners George & St Ita's Pri… https://t.co/NftK6dKjjn" +06/27/2017,Sports_celeb,@McIlroyRory,RT @GolfChannel: Tonight at 9pm ET 'Chronicles of a Champion Golfer' continues with @McIlroyRory. Watch a sneak preview here: https://t.co/… +06/22/2017,Sports_celeb,@McIlroyRory,"Yesterday I met this special lady, Noreen Murnane who sadly 6 years ago suffered a stroke. I was honoured to make h… https://t.co/1rG4qoU965" +06/19/2017,Sports_celeb,@McIlroyRory,Massive congrats to @BKoepka on yesterday's win! Awesome to watch down the stretch. Welcome to the club! 🏆🇺🇸➖1️⃣6️⃣ +06/17/2017,Sports_celeb,@McIlroyRory,@elkpga That's why jack designed 100's of golf courses... and it's knew... mustn't have taught grammar in the 50's.... +06/17/2017,Sports_celeb,@McIlroyRory,"@elkpga More like 200mil... not bad for a ""bored"" 28 year old... plenty more where that came from. https://t.co/R2nigEaee7" +06/13/2017,Sports_celeb,@McIlroyRory,RT @roryfoundation: #PepGuardiola will be joining @McIlroyRory & #JamesNesbitt at @BelWaterfront on July 4th for #EveningwithRory - just 3… +06/11/2017,Sports_celeb,@McIlroyRory,🏆🏆🏆🏆🏆🏆🏆🏆🏆🏆 #VamosRafa https://t.co/DcVvqr6iPq +06/10/2017,Sports_celeb,@McIlroyRory,I'm sure I hit every fairway today... 🤔😂 https://t.co/pgcIXgPjGN +06/08/2017,Sports_celeb,@McIlroyRory,"Pleased to announce Hideki is joining us at the @DDFIrishOpen! + +Get tickets: https://t.co/pBtz5uYMrJ https://t.co/DT22ftWmIW" +06/07/2017,Sports_celeb,@McIlroyRory,RT @roryfoundation: We're giving one lucky golfer a chance to play in the Pro Am at the @DDFIrishOpen. Here's @McIlroyRory on what to do to… +06/05/2017,Sports_celeb,@McIlroyRory,Good progress made over the past 2 weeks in @Quinta_do_Lago Portugal. Excited for the US Open. https://t.co/2Zqi0dvRlo +06/02/2017,Sports_celeb,@McIlroyRory,"Want to walk inside the ropes with me at the @DDFIrishOpen? + +Go to https://t.co/UuD0yUYiR8 for more details. https://t.co/j34uAMRfmd" +05/27/2017,Sports_celeb,@McIlroyRory,"RT @EuropeanTour: Aaron's dad emailed us to ask if we could do something for his 9th birthday 🎂 + +We decided to do something special. https:…" +05/26/2017,Sports_celeb,@McIlroyRory,"Wentworth looks mint this week. Gutted not to be there, but well done to everyone involved getting the course back to where it should be!" +05/24/2017,Sports_celeb,@McIlroyRory,"RT @Chris3Wood: I'm auctioning my @RyderCupEurope bag signed by every 🇪🇺player for @CHSW. Please bid to help this incredible cause + +https:/…" +05/23/2017,Sports_celeb,@McIlroyRory,This makes me so angry and sad at the same time. Thoughts and prayers with everyone in Manchester at this horrific time +05/21/2017,Sports_celeb,@McIlroyRory,@JustinThomas34 You'll try anything trying to save double bogey 😂 +05/20/2017,Sports_celeb,@McIlroyRory,Didn't know I had a wrist injury too 😳 https://t.co/IkeEBgXTX4 +05/09/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Time to show the world what you’re really made of. + +Welcome to the family, Rory. #TeamTaylorMade https://t.co/akofFlZI1X" +05/09/2017,Sports_celeb,@McIlroyRory,Proud to join the @TaylorMadeGolf family. New Bag. New Clubs. New Ball. #ThePlayers https://t.co/rAWiqGKJXW https://t.co/J2w7haZPZP +05/09/2017,Sports_celeb,@McIlroyRory,Final tweaks are made. #ThePlayers https://t.co/BtbD8FQXYH +05/09/2017,Sports_celeb,@McIlroyRory,"Don't worry boys, I’ve been keeping a close eye on the #FedExCup. Long way to go @DJohnsonPGA!! 🏆💪😉 https://t.co/0dNGu98qGZ" +05/07/2017,Sports_celeb,@McIlroyRory,Back on the range and ready for next week's @THEPLAYERSChamp https://t.co/mMHPMggrir +05/04/2017,Sports_celeb,@McIlroyRory,Thank you for all the birthday wishes! It's been an incredible few weeks. Exciting times ahead! +04/11/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: Fancy an evening with @McIlroyRory? + +Tickets available now: https://t.co/en9mC7gQIU https://t.co/sbFPYc6fwr" +04/09/2017,Sports_celeb,@McIlroyRory,"2 unbelievable players and 2 great friends, but I couldn't be happier for @TheSergioGarcia. You deserve it all amigo!!" +04/09/2017,Sports_celeb,@McIlroyRory,Let him have one.... VAMOS!!! +04/02/2017,Sports_celeb,@McIlroyRory,"Looking forward to the next 10+ years as a @nike athlete! +https://t.co/m4abneH1yQ" +04/02/2017,Sports_celeb,@McIlroyRory,Enjoyed spending time with you @MartySmithESPN https://t.co/BxOQXPdPXg +03/28/2017,Sports_celeb,@McIlroyRory,RT @rioferdy5: My documentary Being Mum and Dad will be on @BBCOne tonight at 9pm… Thanks for all your messages & unconditional support! ht… +03/27/2017,Sports_celeb,@McIlroyRory,Check out my 2017 summer schedule on my new website https://t.co/LeFJyFUFf5. Hope you like it! https://t.co/2B46XSDTVP +03/20/2017,Sports_celeb,@McIlroyRory,Thank you to everyone at Bay Hill for a great week. Tried to play like AP would've wanted me to down the stretch. Taking the positives 🙌 +03/19/2017,Sports_celeb,@McIlroyRory,RT @IanJamesPoulter: The last time @McIlroyRory sat in that passenger seat it was at Medinah @RyderCupEurope 2012 being driven at speed to… +03/14/2017,Sports_celeb,@McIlroyRory,A letter from AP after my first major. Great words of wisdom as always. Can't wait to play @APinv this week and cel… https://t.co/h0bMaBkGYU +03/06/2017,Sports_celeb,@McIlroyRory,@Skratch @NoLayingUp https://t.co/JZkLFcPvsi +03/06/2017,Sports_celeb,@McIlroyRory,😂😂😂 https://t.co/9382qrX1QN +03/05/2017,Sports_celeb,@McIlroyRory,.@JustinThomas34 it was so on plane though... should be proud of that! https://t.co/CwKoIEpIXF +02/26/2017,Sports_celeb,@McIlroyRory,Johnny still not impressed 😳 https://t.co/t6yMltdgqs +02/24/2017,Sports_celeb,@McIlroyRory,https://t.co/T4N0cFyoaY +02/13/2017,Sports_celeb,@McIlroyRory,RT @KylePorterCBS: https://t.co/2eHYv5yyY6 +02/10/2017,Sports_celeb,@McIlroyRory,Enjoyed this little back and forth with one of my favourite golf writers over the past few days. Take a look if you… https://t.co/Uoiz2cgDR3 +02/05/2017,Sports_celeb,@McIlroyRory,Congrats @TheSergioGarcia! Impressive stuff all week 👏👍👌🏆 +02/02/2017,Sports_celeb,@McIlroyRory,RT @DarrenClarke60: How many Claret Jugs have you won??? 🛎end! https://t.co/ugWK7Dff6C +02/01/2017,Sports_celeb,@McIlroyRory,RT @PGAjrleaguegolf: Join the fun! Register for PGA Junior League Golf today: https://t.co/J5BYgYDKhR https://t.co/lGVIjLG1ye +02/01/2017,Sports_celeb,@McIlroyRory,"Sorry to disappoint, but it's only me again.... bored, injured golfer with too much time on his hands! https://t.co/a7NGb1phhW" +01/29/2017,Sports_celeb,@McIlroyRory,🐐🐐🐐🐐🐐🐐🐐 +01/29/2017,Sports_celeb,@McIlroyRory,2 incredible warriors @RealCFrampton and @leosantacruz2. We're all so proud of you Carl. Let's get it on again in Belfast!! #trilogy +01/24/2017,Sports_celeb,@McIlroyRory,I was ridiculously flattering myself with the Federer comparison. He's the 🐐 and I'm obviously not. I just have a t… https://t.co/5hxBR7fuKl +01/21/2017,Sports_celeb,@McIlroyRory,A bit late on this one... another great bit of content from the @EuropeanTour guys 😂😂 https://t.co/kRN3qdYSSB +01/21/2017,Sports_celeb,@McIlroyRory,"RT @ManUtd: Record-breaker and history-maker. + +What an incredible achievement. #ROONEY250 https://t.co/xbN4w9TOzZ" +01/19/2017,Sports_celeb,@McIlroyRory,@chambleebrandel Last thing I'll say on this... my hands are ahead at impact and I'm at least 3 degrees up with my… https://t.co/giWroHDEtG +01/18/2017,Sports_celeb,@McIlroyRory,Pretty sure hitting up with your driver works @chambleebrandel 😉 https://t.co/OLU3ZO815C +01/18/2017,Sports_celeb,@McIlroyRory,@chambleebrandel @flightscopePhD It's 2017 and Jordan is hitting a 3 wood in that photo. To get the most out of mod… https://t.co/os9Po4cujG +01/15/2017,Sports_celeb,@McIlroyRory,"RT @PaulKimmage: The Essential Rory: Part Two +https://t.co/XPiM2Tctn1" +01/15/2017,Sports_celeb,@McIlroyRory,Great playing @stormygraeme! What a great story after last year. Thanks to @TheBig_Easy and everyone in SA for making this week so special. +01/11/2017,Sports_celeb,@McIlroyRory,Want to play 9 holes with me in the ProAm #InAbuDhabi next week? Enter this amazing competition from @AbuDhabiSC an… https://t.co/XbQOwpzukS +01/09/2017,Sports_celeb,@McIlroyRory,We've had a trip of a lifetime to @londolozi over the last few days. This big guy came to say hello last night!! https://t.co/VrjsTGjEum +12/27/2016,Sports_celeb,@McIlroyRory,I've a pea head and the hats were way too big for me! https://t.co/YrOZs4qi8C +12/22/2016,Sports_celeb,@McIlroyRory,Wake me up when it's 2017. https://t.co/6qrFNXyC46 +12/12/2016,Sports_celeb,@McIlroyRory,"RT @playofffinale: The vintage Coca-Cola vending machine has departed 🚚 + +Next stop: 2016 #FedExCup winner's house 😎 https://t.co/t2KLAyVn1F" +12/03/2016,Sports_celeb,@McIlroyRory,RT @rte: When you meet your hero. The look on his face! Charlie Smyth (9) from Cavan & his idol @McIlroyRory #LateLateToyShow https://t.co/… +11/30/2016,Sports_celeb,@McIlroyRory,Pleasure to meet you. Hope the recovery goes well! https://t.co/7qTSwI2DbG +11/24/2016,Sports_celeb,@McIlroyRory,Early morning walk to prepare for copious amounts of turkey.... Happy Thanksgiving!! 🦃🍽🏈😴 https://t.co/UIKqsDGq1R +11/23/2016,Sports_celeb,@McIlroyRory,My hero 😂😂😂 https://t.co/WhDGYuzuX4 +11/21/2016,Sports_celeb,@McIlroyRory,RT @EuropeanTour: RT this episode to be in a chance of winning @McIlroyRory's socks. Behind the scenes with Billy & @MattFitz94 wins big in… +11/18/2016,Sports_celeb,@McIlroyRory,"RT @EuropeanTour: When Billy met Rory + +@JumeirahGolfEst https://t.co/jazYXtE1iU" +11/16/2016,Sports_celeb,@McIlroyRory,RT @IrishRugby: Ready For The World. Liam Neeson narrates Ireland's bid to host Rugby World Cup 2023 #Ireland2023 https://t.co/zcZGBqsnO0 +11/16/2016,Sports_celeb,@McIlroyRory,Caught up with Billy today. Maybe the funniest interview I've ever done. Look out for the full video tomorrow. 😂  https://t.co/629qhYeNsw +11/15/2016,Sports_celeb,@McIlroyRory,Good luck to @eboudreaux12 and @DartmouthMBK in their home opener against Fairfield tonight! #GoBigGreen 👍🏀 https://t.co/jXl6sSY8eD +11/05/2016,Sports_celeb,@McIlroyRory,Xjdjdosjnajshehebdbshsjdhchxnslapehdvzjsjdjskwkdhsjsks!!!!!!!!!!!!!!!!!!! +11/01/2016,Sports_celeb,@McIlroyRory,"RT @NoLayingUp: NLU Podcast, Episode 56: @McIlroyRory talks Ryder Cup, Augusta, major championships, and life: https://t.co/BSRY94uHQp" +10/01/2016,Sports_celeb,@McIlroyRory,"RT @RyderCupEurope: Finishing your match Rory McIlroy-style. + +#TeamEurope https://t.co/hpUCT227Ja" +09/30/2016,Sports_celeb,@McIlroyRory,Come on Rosey!!! #TeamEurope https://t.co/Pa2iXqdxW4 +09/29/2016,Sports_celeb,@McIlroyRory,Has the @rydercup started already??🇪🇺🇺🇸 https://t.co/s6EImcbnZv +09/29/2016,Sports_celeb,@McIlroyRory,RT @Fooch1993: @McIlroyRory ...... .... 👍👍👍🇪🇺#MiddleWicket https://t.co/3Xg9IZaSUK +09/28/2016,Sports_celeb,@McIlroyRory,RT @RyderCupEurope: Rory's #TeamEurope kicks. https://t.co/5RzESRw3gq +09/27/2016,Sports_celeb,@McIlroyRory,#TeamEurope https://t.co/h5iZCmVZ3B +09/27/2016,Sports_celeb,@McIlroyRory,"Before this weekend, I remember the 2012 @RyderCup and the best prematch speech I’ve ever heard.… https://t.co/iQ7ix9Q2ZO" +09/26/2016,Sports_celeb,@McIlroyRory,Remembering the special times I spent with Mr Palmer at Bay Hill. A true pioneer for our sport. Forever remembered. https://t.co/qJQBpDWTWv +09/06/2016,Sports_celeb,@McIlroyRory,RT @RickieFowler: I've always been a big fan of @McIlroyRory haha glad we were both able to do something special for Brady last week!! http… +09/04/2016,Sports_celeb,@McIlroyRory,Thanks @lionsgatemovies @mark_wahlberg for the advance screening of #DeepwaterHorizonMovie. Out Sept 30th. Amazing! https://t.co/RgZ86aQ7E8 +08/26/2016,Sports_celeb,@McIlroyRory,Brilliant @thomasbjorngolf 😂😂 https://t.co/QIpCSYKLv8 +08/21/2016,Sports_celeb,@McIlroyRory,RT @ufc: #ConorMcGregor gets it done!!!!!!! #UFC202 https://t.co/23sGogQDqx +08/20/2016,Sports_celeb,@McIlroyRory,Good luck in the US am final tomorrow @DalkeKong. Hopefully it's a gun show and a stripe show 💪💪 +08/20/2016,Sports_celeb,@McIlroyRory,"RT @RyderCupEurope: Welcome to #TeamEurope 🇪🇺 + +https://t.co/p1vBDU4o8X https://t.co/i9Eh7hmlKn" +08/16/2016,Sports_celeb,@McIlroyRory,"RT @roryfoundation: We are absolutely delighted to have raised €951,000 for @Barretstown @JackandJill1997 @LauraLynnHouse https://t.co/Kqq…" +08/10/2016,Sports_celeb,@McIlroyRory,"RT @FirstTeeChicago: Be sure to purchase your tickets for the Taste of The First Tee with @LukeDonald and @McIlroyRory @MedinahCC +https://…" +08/07/2016,Sports_celeb,@McIlroyRory,.@paddyb_ireland @mickconlan11 good luck lads! If your boxing is as good as your tweeting it should be 2 guaranteed golds!! 😂🏅🏅👏🏼 +08/04/2016,Sports_celeb,@McIlroyRory,Sad for @nikegolf employees that worked so hard and made genuinely great golf equipment. Your support will always be appreciated #TeamNike +07/27/2016,Sports_celeb,@McIlroyRory,Wee bit slow there @TheSergioGarcia #PGAChamp @omegawatches #OMEGAmychoice https://t.co/1MfBb1lpX0 +07/26/2016,Sports_celeb,@McIlroyRory,RT @DDFIrishOpen: The 2017 Dubai Duty Free Irish Open is going to @PortstewartGC and we are very excited. #DDFIrishOpen2017 https://t.co/5U… +07/26/2016,Sports_celeb,@McIlroyRory,"RT @PGAChampionship: #PGAChamp @McIlroyRory has arrived! +Follow #RoryAllAccess to go behind-the-scenes during his Practice Round. https://t…" +07/23/2016,Sports_celeb,@McIlroyRory,Nice visit to Quail Hollow today. New changes for '17 PGA look great! Always good to get some inspiration too 😉 https://t.co/lI6n53wuT9 +07/22/2016,Sports_celeb,@McIlroyRory,"My story began in Holywood, NI, where I learned to love golf & dreamed of becoming a Major champion. @Nike #JustDoIt https://t.co/vQv59ah8Yp" +07/18/2016,Sports_celeb,@McIlroyRory,RT @TheSergioGarcia: Awesome to have so many good friends showing up for my charity event in Switzerland! Thanks guys! #sergioandfriends ht… +07/14/2016,Sports_celeb,@McIlroyRory,RT @SkySportsGolf: LIVE on #Periscope: Rory McIlroy takes on Henni's word association game! https://t.co/IByJKwqwZ4 +07/12/2016,Sports_celeb,@McIlroyRory,"Enjoyed meeting the fans at #TheOpen Autograph Zone today +https://t.co/76fj5pWzVY" +07/12/2016,Sports_celeb,@McIlroyRory,Had a great time visiting the Autograph Zone at #TheOpen today! #KidsGoFree https://t.co/v7zLMBi9Fa +07/01/2016,Sports_celeb,@McIlroyRory,"RT @nikefootball: It's not where you start. It's what you start: https://t.co/6ru3o8yTCP + +#SparkBrilliance +https://t.co/GCeD9YhOFH" +06/25/2016,Sports_celeb,@McIlroyRory,"You did us all proud @NorthernIreland. It's only the beginning, let's get to the World Cup in 2018 #GAWA" +06/25/2016,Sports_celeb,@McIlroyRory,Landed in London to see the big man @anthonyfjoshua in action tonight. Gonna be a great night of boxing on Sky Sports Box Office. #andstill +06/25/2016,Sports_celeb,@McIlroyRory,Come on the #GAWA #DareToDream +06/21/2016,Sports_celeb,@McIlroyRory,RT @RealCFrampton: Straight out to celebrate with a kebab and a shave #Tur #NIR +06/21/2016,Sports_celeb,@McIlroyRory,Last 16!!! #GAWA +06/21/2016,Sports_celeb,@McIlroyRory,See ya soon Paris!! #NIR #GAWA https://t.co/17yDMu6Y34 +06/20/2016,Sports_celeb,@McIlroyRory,Massive congrats @DJohnsonPGA! The wait is over! Feel for @ShaneLowryGolf but he'll come back stronger from this experience. +06/19/2016,Sports_celeb,@McIlroyRory,Take that @usga +06/19/2016,Sports_celeb,@McIlroyRory,Did he mention common sense? https://t.co/TWcVVmVvAb +06/19/2016,Sports_celeb,@McIlroyRory,It's obviously affecting Shane too https://t.co/KZyyka32Fh +06/19/2016,Sports_celeb,@McIlroyRory,This isn't right for anyone on that golf course. If it was me I wouldn't hit another shot until this farce was rectified. +06/19/2016,Sports_celeb,@McIlroyRory,This is ridiculous... No penalty whatsoever for DJ. Let the guy play without this crap in his head. Amateur hour from @USGA +06/19/2016,Sports_celeb,@McIlroyRory,Best of luck to @ShaneLowryGolf today... Bring that trophy back to these shores and give Brendan the best Father's Day gift of all! ☘🏆 +06/19/2016,Sports_celeb,@McIlroyRory,That 2nd pin looks really fair 🤔 https://t.co/LbG8qz7coV +07/01/2018,Sports_celeb,@LewisHamilton,"Happy Sunday people!! God Bless you. Have an amazing day wherever you are. Where are you watching from? Remember, e… https://t.co/UQVqxo1Buh" +06/30/2018,Sports_celeb,@LewisHamilton,"Congrats to Valtteri, he produced a fantastic lap. A great result for the Team today. Sights are on the race tomorr… https://t.co/hQrD52ngrx" +06/30/2018,Sports_celeb,@LewisHamilton,Starting the day like... 🏍️💨🔥 #MVAgusta @mvagustamotor @MercedesAMGF1 #AustrianGP #F1 https://t.co/Xc1jmXuhHZ +06/29/2018,Sports_celeb,@LewisHamilton,You could ride shotgun with me in a Mercedes-AMG GT R before the US Grand Prix & score exclusive paddock access!⚡🔥… https://t.co/LIxt5Yj76j +06/28/2018,Sports_celeb,@LewisHamilton,"3 races in a row, it's an intense moment in the season. My favourite tunes and the best noise-cancelling keeps me f… https://t.co/NmVEQUGE8E" +06/28/2018,Sports_celeb,@LewisHamilton,Truly honoured to be nominated for the Best Driver Award in the 2018 @espn ESPYS Awards 🙏🏾. Thank you so much to my… https://t.co/zdyo2mHutt +06/26/2018,Sports_celeb,@LewisHamilton,The inspiring forces in my life. Who inspires you to rise? 🙌🏾#StillIRise #WhatsYourDrive @TommyHilfiger… https://t.co/zHcErqcHLa +06/25/2018,Sports_celeb,@LewisHamilton,Brotherly love 🙏🏾. Check back here tomorrow for something new... #StillIRise #WhatsYourDrive @nicolashamilton https://t.co/8f09zXmmWO +06/24/2018,Sports_celeb,@LewisHamilton,🍾😀🇫🇷 📷 @Spacesuit_Media @MercedesAMGF1 https://t.co/ehr66gEXwb +06/24/2018,Sports_celeb,@LewisHamilton,Magnifique!! 🇫🇷 It’s an amazing feeling winning here. I feel very grateful for a solid weekend. Huge thanks to ever… https://t.co/uhS0eNROxY +06/23/2018,Sports_celeb,@LewisHamilton,✌🏾🇫🇷 @MercedesAMGF1 https://t.co/KU7yTCwUpG +06/23/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: That’s how it’s done! 👊 An incredible 75th @F1 pole for @LewisHamilton! And his first ever at the #FrenchGP 🇫🇷 + +https:/…" +06/23/2018,Sports_celeb,@LewisHamilton,Trained hard with my @PUMA family in Marseille as we launched Mantra 🔥. The training shoe is super dope and will be… https://t.co/CnRul4APIG +06/22/2018,Sports_celeb,@LewisHamilton,Huge thanks to the Team for their hard work today as always. Looking forward to getting back out on the track tomor… https://t.co/ZCg5LCZzfa +06/22/2018,Sports_celeb,@LewisHamilton,Bonjour 🇫🇷 📷 @latimages https://t.co/jJ0aT4FCCy +06/21/2018,Sports_celeb,@LewisHamilton,"Wanna ride shotgun with me? I think the best way to warm up for the US Grand Prix is taking a lap with YOU! +ENTER… https://t.co/KEtEOS3w5O" +06/19/2018,Sports_celeb,@LewisHamilton,Now is your chance to compete in the 2018 FIA-certified @thegranturismo Championships in 'Sport Mode'! 🏁 I’ll be ke… https://t.co/nWg1SuyNFb +06/19/2018,Sports_celeb,@LewisHamilton,"Excited for my @papermagazine feature +👉🏾 https://t.co/2w2riqnujJ https://t.co/BBBSmdZ0mw" +06/19/2018,Sports_celeb,@LewisHamilton,RT @England: @LewisHamilton 👊 +06/18/2018,Sports_celeb,@LewisHamilton,Wishing our boys all the best for their first match in the World Cup! Let’s go! #WorldCup 🙌🏾 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽ 📷 @HKane https://t.co/Jikza3IPqM +06/17/2018,Sports_celeb,@LewisHamilton,Happy Father's Day to the World's best Dad. I am so grateful for everything 🙏🏾 #fathersday https://t.co/4Fmv9PfB2E +06/12/2018,Sports_celeb,@LewisHamilton,I want this car!!!!! #maybach6 @mercedesamg https://t.co/pnpbVNI6vt +06/10/2018,Sports_celeb,@LewisHamilton,We will come back stronger for the next race. It’s how you get back up that matters the most. We win and lose toget… https://t.co/e6gpYqV0c8 +06/10/2018,Sports_celeb,@LewisHamilton,Huge congratulations to this incredible athlete @RafaelNadal super happy for you dude. God Bless🙌🏾🙏🏾 #frenchopen… https://t.co/NhntS1un5g +06/10/2018,Sports_celeb,@LewisHamilton,Race day. Sending you all positive energy today. Let’s go!! #CanadianGP @MercedesAMGF1 https://t.co/FjMrnww0Bz +06/09/2018,Sports_celeb,@LewisHamilton,"My first ever Formula 1 win in my rookie year. I remember it like yesterday, my heart racing towards the final laps… https://t.co/rMAxGOk0Ry" +06/08/2018,Sports_celeb,@LewisHamilton,"Thank you for your continued support over all these years, you guys are amazing. I feel your energy each time I'm o… https://t.co/WWtLWu2WEl" +06/08/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: These guys have been coming to the #CanadianGP to support @LewisHamilton for a decade. + +We thought it was about time th…" +06/08/2018,Sports_celeb,@LewisHamilton,"Canada, what’s new? 🇨🇦🔥 #TommyHilfiger https://t.co/JCz7I48z7p" +06/07/2018,Sports_celeb,@LewisHamilton,This is the exact moment I won my first ever F1 race 11 years ago. A moment when a dream became a reality and it fe… https://t.co/fMLsZNXYzf +06/05/2018,Sports_celeb,@LewisHamilton,NYC 🔥 #cfdaawards #tommyhilfiger https://t.co/wqyn7zFgpM +06/05/2018,Sports_celeb,@LewisHamilton,RT @Team_LH: Who wants to be in a #WhatsYourDrive video with @LewisHamilton? 😱😄 Now's your chance #TeamLH!!🤞🏾 Just DM us @Team_LH and we'll… +06/04/2018,Sports_celeb,@LewisHamilton,When your girl ain’t hit you back 🤣 #roscoelovescoco #bestsunday #mood https://t.co/K28bS0lzTW +05/30/2018,Sports_celeb,@LewisHamilton,Throwback: meeting the Queen in 2008 was an honour I never thought would be possible when growing up. Just a kid fr… https://t.co/ADgki7O5ma +05/29/2018,Sports_celeb,@LewisHamilton,"It’s the hard times that help you grow. It’s how you get back up that matters the most. Never stop learning, never… https://t.co/qDvgGRboVp" +05/28/2018,Sports_celeb,@LewisHamilton,"I don't fear failure, I fear not living up to my potential. I take that passion with me and never stop learning. Ch… https://t.co/cSMTtfn7TH" +05/27/2018,Sports_celeb,@LewisHamilton,"RT @F1: Lewis: You need to do a belly flop +Danny: Hold my beer + +#MonacoGP #F1 https://t.co/6V4GRkGIaA" +05/27/2018,Sports_celeb,@LewisHamilton,Listened to my current favourite tunes to help me get in the zone before the race. Check out my Monaco playlist her… https://t.co/arMPIzE7VU +05/27/2018,Sports_celeb,@LewisHamilton,Big congrats to Daniel this weekend. Thank you to the team for your hard work all weekend as always. We’re looking… https://t.co/y1iLNlMp80 +05/27/2018,Sports_celeb,@LewisHamilton,Squad 🔥🙌🏾 https://t.co/7TiDJ4XMRm +05/26/2018,Sports_celeb,@LewisHamilton,"Congrats to Daniel today, he did a great job. We’re looking forward to the challenge tomorrow. Are you excited?… https://t.co/0hnsJE4Pyb" +05/25/2018,Sports_celeb,@LewisHamilton,🏍️💨 https://t.co/Wi0Rkc9N3T +05/24/2018,Sports_celeb,@LewisHamilton,"Monaco, we out for today 🔥🏍️💨 @MercedesAMGF1 https://t.co/EyHfclIrgK" +05/24/2018,Sports_celeb,@LewisHamilton,Full throttle on the streets ⚡ Are you looking forward to the race weekend? #MonacoGP 📷 Vid Vorsic @MercedesAMGF1 https://t.co/SfYxsma4cM +05/24/2018,Sports_celeb,@LewisHamilton,Diamonds dancin - top off 🔥 @MercedesAMGF1 https://t.co/HZb0OX5SXv +05/23/2018,Sports_celeb,@LewisHamilton,Pulling up to the track like... 🏍️💨🔥 #MonacoGP #puma @mvagustamotor https://t.co/WELL526XA0 +05/22/2018,Sports_celeb,@LewisHamilton,"2008 my second year of F1 and first Monaco GP win. What a race it was, one that continues to remind me to never giv… https://t.co/BrbovTXUAG" +05/21/2018,Sports_celeb,@LewisHamilton,The story of my tattoos 🙏🏾 @GQMagazine #tommyhilfiger #tattoo #ink https://t.co/9Tf7zrMcJg +05/20/2018,Sports_celeb,@LewisHamilton,Thank you to my bro @neymarjr for this dope jersey that he made with Café Pilão 🙌🏾. I’m going to sign and send it b… https://t.co/llLP63dxCF +05/19/2018,Sports_celeb,@LewisHamilton,Wishing Meghan and Harry all the best today! 🙌🏾🇬🇧 #royalwedding https://t.co/SYweMFJA8H +05/15/2018,Sports_celeb,@LewisHamilton,My Dad gave up everything for me. It was his support that made me feel I could do anything. This is how it all bega… https://t.co/udWpKVSlgs +05/14/2018,Sports_celeb,@LewisHamilton,I look back when I was a kid and remember the hunger I had to want to be in Formula 1. I never lost sight of that d… https://t.co/ngWh2tZohT +05/13/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: Yes Team! Back in business in Barcelona! + +Celebrating a #SpanishGP 1-2 trackside! 👊🇪🇸 https://t.co/6lNqdR83WV" +05/13/2018,Sports_celeb,@LewisHamilton,"What a feeling. It’s been an awesome weekend, the car felt incredible! I can’t thank the team enough for the hard w… https://t.co/7CwX0PNn3P" +05/12/2018,Sports_celeb,@LewisHamilton,💨 https://t.co/caz2n7paJI +05/12/2018,Sports_celeb,@LewisHamilton,Just love 🙏🏾 https://t.co/UCrT0dpEfB https://t.co/BMWO62ig9H +05/12/2018,Sports_celeb,@LewisHamilton,Pole position ⚡ skir skirr 💥 @MercedesAMGF1 https://t.co/9ZNYtZxsI9 +05/12/2018,Sports_celeb,@LewisHamilton,@F1Tricky @MercedesAMGF1 @Circuitcat_eng @F1 Thank you Marc 🙏🏾 +05/12/2018,Sports_celeb,@LewisHamilton,I'll never forget my roots 🙏🏾. Sending you all positive energy today #SpanishGP #F1 🇪🇸 @MercedesAMGF1 https://t.co/6rB1IAOPAx +05/11/2018,Sports_celeb,@LewisHamilton,Friday Practice - Done 👊🏾 @MercedesAMGF1 https://t.co/ZZzE740Wti +05/10/2018,Sports_celeb,@LewisHamilton,Brothers in white. I grew up watching and listening to my man puff. To stand here today as brothers is a honour and… https://t.co/3ok8ZIoG2f +05/08/2018,Sports_celeb,@LewisHamilton,Came thru drippin #MetGala2018 #TommyHilfiger https://t.co/F2Hx6B5sSo +05/04/2018,Sports_celeb,@LewisHamilton,Friday feeling... 🕺🏾#fbf 📷 @latimages https://t.co/1GJy8P7oby +05/03/2018,Sports_celeb,@LewisHamilton,Surround yourself with people who project positivity and inspire you 🔥#WhatsYourDrive @TommyHilfiger https://t.co/CXdrr4F52D +05/01/2018,Sports_celeb,@LewisHamilton,If my journey can inspire just one person to rise up and chase their dreams then it’s worth the world to me. See a… https://t.co/57AYKohrvP +04/30/2018,Sports_celeb,@LewisHamilton,"Don't let other people define who you are and what you stand for. There's a burning passion, a drive in all of us t… https://t.co/A3rfZyR4YY" +04/29/2018,Sports_celeb,@LewisHamilton,Today was a reminder of my dad’s advice he said to me as a kid of never giving up. Thank you to the team for workin… https://t.co/5UvPvDEYWT +04/29/2018,Sports_celeb,@LewisHamilton,Looking forward to this 🙌🏾 #proud https://t.co/RBzlXFcj35 +04/28/2018,Sports_celeb,@LewisHamilton,Super close today. The team did a great job overnight and we are a step forward. Looking forward to race day tomorr… https://t.co/5xFrWJQhWH +04/28/2018,Sports_celeb,@LewisHamilton,I am wishing you all an amazing weekend where ever you are in the world. Shine bright and live your best life!! God… https://t.co/wjwfGTRafY +04/27/2018,Sports_celeb,@LewisHamilton,Lots of information gathered today. We look forward to fighting tomorrow... 💥 #F1 #AzerbaijanGP @MercedesAMGF1 https://t.co/wjsSjcaS0K +04/26/2018,Sports_celeb,@LewisHamilton,Feels good to be back in Baku 🔥 #F1 📷 by @latimages @MercedesAMGF1 https://t.co/lmykvTYnpU +04/25/2018,Sports_celeb,@LewisHamilton,"As we approach the Azerbaijan GP weekend, our Team are fully focused on the immediate job at hand. I am always in a… https://t.co/nIbZJO59ud" +04/23/2018,Sports_celeb,@LewisHamilton,When Gigi took me for a spin...💥💥💥💥 #WhatsYourDrive @GiGiHadid @TommyHilfiger https://t.co/iLwPudWR1x +04/19/2018,Sports_celeb,@LewisHamilton,A kid with a dream. Never let go of your dream #tbt #youcan #believe 📷x @latimages https://t.co/m5v5hwgeS4 +04/19/2018,Sports_celeb,@LewisHamilton,💥 @MonsterEnergy https://t.co/v0WmdGFmID +04/18/2018,Sports_celeb,@LewisHamilton,"Surround yourself with positivity and drop the negativity that weighs you down. It’s not how you fall, but how you… https://t.co/M4mFW3OUJk" +04/18/2018,Sports_celeb,@LewisHamilton,RT @TommyHilfiger: We couldn’t be more thrilled to announce our new TommyXLewis collaborative collection with @LewisHamilton . Coming to a… +04/15/2018,Sports_celeb,@LewisHamilton,"Lots of learnings from this weekend. I am so grateful to the fans for their incredible support out here,… https://t.co/dsX2QC0zwC" +04/14/2018,Sports_celeb,@LewisHamilton,Awesome launching the new @Bose #SoundWear Companion in China this week. It's a portable speaker that sits comforta… https://t.co/DVFpO28Bh5 +04/14/2018,Sports_celeb,@LewisHamilton,"Thank you so much to the awesome fans here in China, I feel your immense energy! I will do everything to fight for… https://t.co/zAsWVWcAvP" +04/13/2018,Sports_celeb,@LewisHamilton,A good day. It always feels great to be back out on the track in Shanghai. We face strong competition this weekend… https://t.co/VwcvDkgbau +04/13/2018,Sports_celeb,@LewisHamilton,🔴🔴🔴 #ChineseGP #F1 @TommyHilfiger @MercedesAMGF1 https://t.co/8x0svRQDTw +04/12/2018,Sports_celeb,@LewisHamilton,"Ready to fight this weekend. #TeamLH, are you ready? 🇨🇳 #24Seven @PUMA #PUMAPerformance #PUMAPartner https://t.co/jl1RmvzLa3" +04/11/2018,Sports_celeb,@LewisHamilton,What a day. It’s such a dream come true to be collaborating with @TommyHilfiger to channel my creativity and love f… https://t.co/Y74A4LMv5K +04/10/2018,Sports_celeb,@LewisHamilton,"Every new day is a chance to be great, at whatever it is you are doing. A chance to grow, to fall and get back up,… https://t.co/gECy8iGbTD" +04/08/2018,Sports_celeb,@LewisHamilton,💥 https://t.co/nwPc5WxBvF +04/08/2018,Sports_celeb,@LewisHamilton,"Dope win, congrats @calcrutchlow 🔥🔥🔥 https://t.co/ApI5W6sDbH" +04/08/2018,Sports_celeb,@LewisHamilton,"9th to 3rd is a good result for damage limitation this weekend, thank you to the fans and the team for your hard wo… https://t.co/mXl6jdAiLe" +04/08/2018,Sports_celeb,@LewisHamilton,RT @MercedesAMGF1: 100 @MercedesAMGF1 races not out! See @LewisHamilton and Toto's full chat here 👇 https://t.co/D2Ap2nCVlj +04/07/2018,Sports_celeb,@LewisHamilton,Always up for a challenge. Looking forward to the race tomorrow #BahrainGP #F1 @MercedesAMGF1 https://t.co/XISX8jZ3CS +04/06/2018,Sports_celeb,@LewisHamilton,"Always good catching up 🔥 #BahrainGP #F1 +📷 Evgeniy Safronov https://t.co/tUfhSRFlZC" +04/04/2018,Sports_celeb,@LewisHamilton,"Eyes on the next 🏆 +@PUMA IGNITE Flash. #24Seven #PUMAPartner https://t.co/tw2QFcfxPu" +04/02/2018,Sports_celeb,@LewisHamilton,There's a drive in all of us. A dream we once had and countless actions that followed to make that dream exist in i… https://t.co/Nb0ss2SjQp +03/25/2018,Sports_celeb,@LewisHamilton,"Overall, this weekend has been positive. Congrats to Seb and the guys in red, today they did the better job and we… https://t.co/XlxsI87kUA" +03/24/2018,Sports_celeb,@LewisHamilton,"I have the best fans in the world. #TeamLH, thank you for the support and this video 🙌🏾 #StillWeRise https://t.co/tp7xKMlrxu" +03/24/2018,Sports_celeb,@LewisHamilton,"About today... 💥 +#F1 #AusGP #Pole @MercedesAMGF1 https://t.co/D9qAiMjLhI" +03/24/2018,Sports_celeb,@LewisHamilton,"Wow, it feels so good kicking off 2018 with Pole Position! Thank you to the Team for your continued hard work. Sigh… https://t.co/hGp7kzoNxW" +03/23/2018,Sports_celeb,@LewisHamilton,"For us to defeat dementia, we first need people to understand it. You can help by simply watching and sharing this… https://t.co/BrxjfcjxkZ" +03/23/2018,Sports_celeb,@LewisHamilton,"Guys, I’ve got 20 of these awesome noise-cancelling Bose​ QC35 II headphones to giveaway. Head to my Instagram acco… https://t.co/QBa7tFMa8c" +03/22/2018,Sports_celeb,@LewisHamilton,Anticipation before a race weekend ahead. I've missed this feeling… 🔥 #F1 #AusGP @MercedesAMGF1 https://t.co/EJArzoWvqd +03/22/2018,Sports_celeb,@LewisHamilton,Swapped out the F1 car for a scooter today in Melbourne. Throwback to my younger roots 🛴 https://t.co/BEhgRCLgjt +03/18/2018,Sports_celeb,@LewisHamilton,Who’s excited for the first race of the season next week?.. #F1 @MercedesAMGF1 https://t.co/lXqbKfHzHq +03/18/2018,Sports_celeb,@LewisHamilton,"Great to meet you, Lewis. Thank you for the card buddy 🙏🏾 https://t.co/988DTnI1mT" +03/15/2018,Sports_celeb,@LewisHamilton,BTS ⚡@TommyHilfiger #WhatsYourDrive https://t.co/iV5xQaUpXp +03/15/2018,Sports_celeb,@LewisHamilton,"RT @TommyHilfiger: Where speed and style collide. Introducing our new menswear ambassador, @LewisHamilton @MercedesAMGF1 +PS. Shop @LewisH…" +03/15/2018,Sports_celeb,@LewisHamilton,"Wow, I’m so excited to be menswear ambassador for @TommyHilfiger. It’s an honour to be a part of the family and I c… https://t.co/MqnMRM654Q" +03/14/2018,Sports_celeb,@LewisHamilton,"RT @TommyHilfiger: What drives a winning team? One word: Teamwork +@LewisHamilton @MercedesAMGF1 #WhatsYourDrive #DrivenByEachOther #Merce…" +03/12/2018,Sports_celeb,@LewisHamilton,Cruising sideways at NASA 👀🚀 https://t.co/vj4JbUi661 +03/09/2018,Sports_celeb,@LewisHamilton,"Testing, done. Let's get to racing... 🔥 +@MercedesAMGF1 #F1 https://t.co/zW8eD2t88h" +03/07/2018,Sports_celeb,@LewisHamilton,"Preparing for 200mph straights, 6G braking and 6G corners. @PUMA Mantra - coming summer 2018 #PUMAPartner #24Seven https://t.co/mmrFcG1uvC" +03/06/2018,Sports_celeb,@LewisHamilton,"This photo was taken before the 2017 season started. Before the battles, the wins, the defeats, the lows and the hi… https://t.co/1OcZTin0bX" +03/05/2018,Sports_celeb,@LewisHamilton,London is one of my favourite places to train. Awesome working out with some of @PUMA ’s finest in the IGNITE Flash… https://t.co/1fwNBUVzZG +03/01/2018,Sports_celeb,@LewisHamilton,"Testing. A time when all of the theory, research and hard work over winter are put to the test. After the weather w… https://t.co/JzPC217urZ" +03/01/2018,Sports_celeb,@LewisHamilton,RT @TommyHilfiger: Putting the champ to work 🔧🤓 Check out @LewisHamilton taking the F1 Pitstop Challenge #TOMMYNOW #MFW @MercedesAMGF1 htt… +02/27/2018,Sports_celeb,@LewisHamilton,"So proud of our team winning @LaureusSport's World Team of the Year. 1,500 people all with a shared vision. Honoure… https://t.co/74MxJ7hb2Y" +02/27/2018,Sports_celeb,@LewisHamilton,Dope that my 44 energy drink has now hit the shelves across Australia. I'll pick one up when I'm there next month f… https://t.co/dxbV3dVmnG +02/26/2018,Sports_celeb,@LewisHamilton,✈️ @TommyHilfiger https://t.co/1paRdQoBTc +02/22/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: And we're LIVE with @LewisHamilton! + +Follow along and join the conversation using #DrivenByEachOther + +https://t.co/dZ7mg…" +02/22/2018,Sports_celeb,@LewisHamilton,"In complete awe. The amount of focus, determination and expertise into every ounce of this car is astounding. I can… https://t.co/EL7jRYLe3z" +02/22/2018,Sports_celeb,@LewisHamilton,Are you guys ready to see the new car?.. ⚡⚡⚡⚡ @MercedesAMGF1 https://t.co/3g1pMDOEmC +02/21/2018,Sports_celeb,@LewisHamilton,Is MotoGP ready for me? Had an amazing track day with @calcrutchlow​ 🔥🔥🔥🔥 @MonsterEnergy 🎥X @thejonnyhynes 🎵X… https://t.co/RwNulxfGkW +02/20/2018,Sports_celeb,@LewisHamilton,Riding a motorcycle is an art form. I have nothing but respect for those competing at the top of their game in this… https://t.co/YTTZjwfXT2 +02/19/2018,Sports_celeb,@LewisHamilton,Awesome training with @HectorBellerin in LDN. @PUMA IGNITE FLASH ⚡ #PUMAPartner #24Seven https://t.co/Mp4z8g0htm +02/18/2018,Sports_celeb,@LewisHamilton,Hey @BubbaWallace! Wishing you the absolute best today in your race. Smash it!! 🙌🏽 🏁 +02/15/2018,Sports_celeb,@LewisHamilton,"To all those celebrating, I'd like wish you a happy Chinese New Year. Every time I visit China I learn something ne… https://t.co/TTQJsCwdIT" +02/09/2018,Sports_celeb,@LewisHamilton,Shredding into the weekend like... 🙌🏾 #MonsterEnergy #SkiDoo https://t.co/Z32HJujq22 +02/07/2018,Sports_celeb,@LewisHamilton,Proud of you Billy! 🙌🏾 https://t.co/bzZrim7hRD +02/05/2018,Sports_celeb,@LewisHamilton,The moment when a thousand years worth of working hours are put to the test. This is the moment that starts everyth… https://t.co/BmGI2482qQ +01/26/2018,Sports_celeb,@LewisHamilton,RT @MonsterEnergy: On track or on the mountain… @LewisHamilton likes to live on the edge! See more as he linked up with some of Monster Ene… +01/18/2018,Sports_celeb,@LewisHamilton,RT @MercedesAMGF1: 😱 We’re offering one lucky winner - AND a guest - the chance to be the FIRST fans to see the brand new 2018 Silver Arrow… +11/20/2015,Sports_celeb,@LewisHamilton,"RT @UncleRUSH: If you were in danger, would you do something about it? The answer might surprise you: #IWillNotWait #ActOnClimate https://t…" +12/28/2011,Sports_celeb,@LewisHamilton,RT @ItsMasuma_x: @LewisHamilton Yo Lewis! Any chance of a tweet? #TeamHamilton! +07/02/2018,Sports_celeb,@neymarjr,Para ti toda honra e toda Glória Deus 🙌🏽🙏🏽 https://t.co/w7TKYTkDrM +07/02/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 https://t.co/6WdZmQ5Zax +07/01/2018,Sports_celeb,@neymarjr,"Always believe. 🤙 @nikefootball Believe. +#justdoit #brasileiragem https://t.co/ExMqcGDcmf" +06/30/2018,Sports_celeb,@neymarjr,Neymar Jr. - Seleção Brasileira - 30/06/2018: https://t.co/aRCebnuvWg via @YouTube +06/29/2018,Sports_celeb,@neymarjr,Rabisca filhote 🖊 https://t.co/jf9TqGdNSo +06/28/2018,Sports_celeb,@neymarjr,My little boy 🕶❤️ https://t.co/jaaTTCK8Da +06/28/2018,Sports_celeb,@neymarjr,Assista o nosso 'Making Of' e confira um pouco do que aconteceu durante as gravações das campanhas da... https://t.co/gjCJqEeFHy +06/28/2018,Sports_celeb,@neymarjr,Varios Paranauê 😂🤣 https://t.co/wXNN9yR1ij +06/28/2018,Sports_celeb,@neymarjr,"Time, equipe, companheiros, família, ou chame como quiser, unidos e focados em um único objetivo 🇧🇷💚 https://t.co/3ZcmEkQu0g" +06/27/2018,Sports_celeb,@neymarjr,"Primeiro objetivo conquistado, parabéns rapaziada. +Vamos Brasil 🇧🇷💚 https://t.co/kgOa5VB399" +06/26/2018,Sports_celeb,@neymarjr,Ready 😆⚽️ https://t.co/NxCiKViql9 +06/25/2018,Sports_celeb,@neymarjr,Alegria 🤣😂 @Phil_Coutinho https://t.co/eIHGQxCVRs +06/25/2018,Sports_celeb,@neymarjr,Neymar Jr. - Treino da Seleção Brasileira - 24/06/2018: https://t.co/C9sKsAYp9X via @YouTube +06/22/2018,Sports_celeb,@neymarjr,Brasil 2x0 Costa Rica no Instituto Neymar Jr: https://t.co/iMA3KUOyNJ via @YouTube +06/22/2018,Sports_celeb,@neymarjr,"Nem todos sabem o q passei pra chegar até aqui,falar até papagaio fala, agora fazer...O choro é de alegria, de supe… https://t.co/vvY3s31bZu" +06/22/2018,Sports_celeb,@neymarjr,#givesyouwings https://t.co/fqByPHq8tH +06/22/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 +. +. +. +📷Ricardo Nogueira https://t.co/yeWHobF7Z4" +06/21/2018,Sports_celeb,@neymarjr,Neymar Jr. - O Apoio da Torcida: https://t.co/4rAkZS5f3F via @YouTube +06/21/2018,Sports_celeb,@neymarjr,Preparados né não @marquinhos_m5 🤘🏽😝 https://t.co/epKnmicQ8J +06/21/2018,Sports_celeb,@neymarjr,"I got here because of my football. @nikefootball Believe. +. +Cheguei até aqui por causa do meu futebol.… https://t.co/wr9l1IY4Xo" +06/20/2018,Sports_celeb,@neymarjr,Focus. https://t.co/wrvGCQPRSB +06/20/2018,Sports_celeb,@neymarjr,Neymar Jr. - Making of Gagà Milano - Jan/18: https://t.co/zuORKk0DUD via @YouTube +06/19/2018,Sports_celeb,@neymarjr,Neymar Jr - Seleção Brasileira - Treino 19/06/2018: https://t.co/y8rrghocvs via @YouTube +06/17/2018,Sports_celeb,@neymarjr,Estréia da Copa do Mundo 2018: https://t.co/MfRTWpyeKB via @YouTube +06/17/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 https://t.co/oB21y8AdW5 +06/16/2018,Sports_celeb,@neymarjr,"Carlos Alberto Parreira - Boa Sorte, Neymar Jr!: https://t.co/HVZpMTt2Hj via @YouTube" +06/16/2018,Sports_celeb,@neymarjr,Carlos Alberto Parreira: https://t.co/FvRmdUTHyB via @YouTube +06/15/2018,Sports_celeb,@neymarjr,"Obrigado pela mensagem, Serginho Chulapa! https://t.co/YbzUNmCdiJ" +06/15/2018,Sports_celeb,@neymarjr,"Serginho Chulapa - Boa sorte, Neymar Jr!: https://t.co/VAnULYnAxC via @YouTube" +06/15/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Torcida: https://t.co/xxJwNTprLI via @YouTube +06/14/2018,Sports_celeb,@neymarjr,"RT @InstitutoNJr: Boa Sorte Brasil!!! Estamos na torcida 🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 +@neymarjr +@CBF_Futebol https://t.co/WV4PUE9tMW" +06/14/2018,Sports_celeb,@neymarjr,"É ruim de bola mas é meu parça. 😂 Hoje lança meu app, o NJRXP. E toda semana tem um super desafio. O @GilCebola zer… https://t.co/kr4FXdfGzr" +06/14/2018,Sports_celeb,@neymarjr,"Vagner Mancini - Boa sorte, Neymar Jr!: https://t.co/hCrTZohMkp via @YouTube" +06/14/2018,Sports_celeb,@neymarjr,Vagner Mancini: https://t.co/q57xsHHUTp via @YouTube +06/14/2018,Sports_celeb,@neymarjr,"RT @AppStore: And now an announcement from @NeymarJr about his new training app ⚽️ + +Coming soon, very soon 😉 https://t.co/WqRNPFhIoP" +06/13/2018,Sports_celeb,@neymarjr,❤️😍❤️ https://t.co/YeI0Br39Ph +06/13/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Treino 13/06/2018: https://t.co/4N9WMuo5Zk via @YouTube +06/13/2018,Sports_celeb,@neymarjr,Dorival Júnior: https://t.co/Lx8SHZN1RJ via @YouTube +06/13/2018,Sports_celeb,@neymarjr,"Dorival Júnior - Boa Sorte, Neymar Jr!: https://t.co/pGNwfnSb0I via @YouTube" +06/12/2018,Sports_celeb,@neymarjr,Aquela paradinha ⚽️ https://t.co/LgqsVDQRpj +06/12/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Treino 12/06/2018: https://t.co/E3mwJwrD1L via @YouTube +06/12/2018,Sports_celeb,@neymarjr,Luxemburgo: https://t.co/FPvdjUyT5B via @YouTube +06/12/2018,Sports_celeb,@neymarjr,"Luxemburgo - Boa Sorte, Neymar Jr!: https://t.co/2FpAkA3lSM via @YouTube" +06/12/2018,Sports_celeb,@neymarjr,"If you have some free time this summer, @WishShopping can help you find a new hobby +Se você tem algum tempo livre n… https://t.co/wNIBNYRBWH" +06/12/2018,Sports_celeb,@neymarjr,Feliz dia dos namorados MA LOVE ❤️🙏🏽 Te amo @BruMarquezine https://t.co/9DuSAtgHu3 +06/11/2018,Sports_celeb,@neymarjr,Adilson Batista: https://t.co/tMYSJg6mm8 via @YouTube +06/11/2018,Sports_celeb,@neymarjr,Adilson Batista - Boa Sorte Neymar Jr!: https://t.co/Tb8oykSQmQ via @YouTube +06/11/2018,Sports_celeb,@neymarjr,Brasil x Áustria: https://t.co/qjVqdlC2HW via @YouTube +06/10/2018,Sports_celeb,@neymarjr,"Partiu Rússia, partiu buscar o nosso sonho! ✈️🇷🇺 https://t.co/yVm1MMPmWF" +06/10/2018,Sports_celeb,@neymarjr,Lima: https://t.co/Fzxl6o2OdQ via @YouTube +06/10/2018,Sports_celeb,@neymarjr,Lima - Boa Sorte Neymar Jr.: https://t.co/cWRXoAeQMU via @YouTube +06/10/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️ https://t.co/LzaZqS5ad5 +06/09/2018,Sports_celeb,@neymarjr,Mano Menezes - Boa Sorte Neymar Jr!: https://t.co/Uok57FoPGB via @YouTube +06/09/2018,Sports_celeb,@neymarjr,Mano Menezes: https://t.co/M1IEkcDhBx via @YouTube +06/09/2018,Sports_celeb,@neymarjr,#FIFA19. I'm ready. @EASPORTSFIFA https://t.co/lDHE9fyjN3 https://t.co/r5dge95toe +06/09/2018,Sports_celeb,@neymarjr,Ser feliz sem motivo é a mais autêntica forma de felicidade. https://t.co/yqVsrGKdqj +06/08/2018,Sports_celeb,@neymarjr,Betinho - Boa Sorte Neymar JR!: https://t.co/mF4AzrqJZy via @YouTube +06/08/2018,Sports_celeb,@neymarjr,Betinho: https://t.co/vFKqR7bgTX via @YouTube +06/08/2018,Sports_celeb,@neymarjr,"Just what I needed....thanks @WishShopping +Exatamente o que eu precisava .... obrigado @WishShopping… https://t.co/pclGPJLbNS" +06/08/2018,Sports_celeb,@neymarjr,Narciso: https://t.co/bIyPJ7BvRm via @YouTube +06/08/2018,Sports_celeb,@neymarjr,"Narciso - Boa Sorte, Neymar Jr!: https://t.co/Nid9fu6TKs via @YouTube" +06/07/2018,Sports_celeb,@neymarjr,di menó @Phil_Coutinho #Craque https://t.co/RpATAy8A8l +06/07/2018,Sports_celeb,@neymarjr,"Dunga - Boa sorte, Neymar Jr!: https://t.co/WzuwscN5H7 via @YouTube" +06/07/2018,Sports_celeb,@neymarjr,Dunga: https://t.co/DK4OsGS6J5 via @YouTube +06/07/2018,Sports_celeb,@neymarjr,"Back and ready to shine 🇧🇷⚽ + +Check out my personal store for the latest #Mercurial at https://t.co/4s8czEJ3kd… https://t.co/QYqmyCP9gJ" +06/06/2018,Sports_celeb,@neymarjr,Treino Seleção Brasileira - 06/06/2018: https://t.co/dFr9KdUcKM via @YouTube +06/06/2018,Sports_celeb,@neymarjr,Muricy Ramalho: https://t.co/qAVvVF06Jy via @YouTube +06/06/2018,Sports_celeb,@neymarjr,Muricy Ramalho - Boa Sorte Neymar Jr!: https://t.co/SERfGn2poW via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Dia 16 - Treino Seleção Brasileira - Neymar Jr - 05/06/2018: https://t.co/F9lqhKJvrK via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/azymDbDAL8 16 - Treino Seleção Brasileira - Neymar Jr - 05/06/2018 +06/05/2018,Sports_celeb,@neymarjr,Rogério Micale: https://t.co/vjmvqd52DM via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Rogério Micale - Boa sorte Neymar Jr!: https://t.co/RtP6khz1Rl via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/rawFgU96ISério Micale - Boa sorte Neymar Jr! +06/05/2018,Sports_celeb,@neymarjr,Neymar Jr. - Treinos em Liverpool: https://t.co/H4oZP1TZsa via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Brasil x Croácia: https://t.co/Emj3a4VuUt via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/RIutyVTEFN x Croácia +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/ycigN2UCmR Jr. - Treinos em Liverpool +06/04/2018,Sports_celeb,@neymarjr,@TeamJuJu @PaniniAmerica ⚽ for 🏈? Hey @teamjuju yeah I have some of my @PaniniAmerica #FIFAWorldCup Stickers I’ll m… https://t.co/vsY3K31GzI +06/04/2018,Sports_celeb,@neymarjr,Ney Franco - Boa sorte Neymar Jr!: https://t.co/IyYaIfLbjE via @YouTube +06/04/2018,Sports_celeb,@neymarjr,Ney Franco: https://t.co/mpJbWBxKKD via @YouTube +06/04/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/Pt99uKuU7j Franco +06/04/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/1CJ8ExRXQr Franco - Boa sorte Neymar Jr! +06/03/2018,Sports_celeb,@neymarjr,Marcelo Martelotte: https://t.co/ES4kk17EMp via @YouTube +06/03/2018,Sports_celeb,@neymarjr,Marcelo Martelotte - Boa Sorte Neymar Jr!: https://t.co/o7JP5TNA9Z via @YouTube +06/03/2018,Sports_celeb,@neymarjr,"Para ti toda honra e toda glória meu Deus, Obrigado 🙏🏽❤️ +. +📸 @mowasports https://t.co/1pgELUabts" +06/02/2018,Sports_celeb,@neymarjr,Marcio Fernandes: https://t.co/0uyppRlrbC via @YouTube +06/02/2018,Sports_celeb,@neymarjr,Marcio Fernandes - Boa Sorte Neymar Jr!: https://t.co/EvmSzM0yjW via @YouTube +06/01/2018,Sports_celeb,@neymarjr,Nenê Belarmino - Boa Sorte Neymar Jr!: https://t.co/3GzUk6r0tl via @YouTube +06/01/2018,Sports_celeb,@neymarjr,Nene Belarmino: https://t.co/yGs5ZqP6Ph via @YouTube +05/31/2018,Sports_celeb,@neymarjr,Lucho Nizzo - Boa Sorte Neymar Jr!: https://t.co/rosPhWVY27 via @YouTube +05/31/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/kFuNcJ0JFP Nizzo - Boa Sorte Neymar Jr! +05/31/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/aPOyrT3cXB - Lucho Nizzo +05/30/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/x8VMVCxllL - Técnicos +05/30/2018,Sports_celeb,@neymarjr,Teaser - Técnicos: https://t.co/4KaCKksqyp via @YouTube +05/30/2018,Sports_celeb,@neymarjr,https://t.co/k5aWTFQJ8A +05/29/2018,Sports_celeb,@neymarjr,⚽️🇧🇷 https://t.co/0ynsETOC9W +05/26/2018,Sports_celeb,@neymarjr,"Minha família sempre me incentivou a sonhar. +“Instituto Projeto Neymar Jr. auxiliando na conquista de sonhos e +prep… https://t.co/dc9PrglHTp" +05/25/2018,Sports_celeb,@neymarjr,"Parabéns Professor Tite. Uma grande honra aprender a cada dia com você, que Deus te abençoe sempre. https://t.co/t4Fr1MGlC8" +05/25/2018,Sports_celeb,@neymarjr,"Se tem um cara que é vencedor é esse .. Mestre Zagallo, que honra receber sua visita. “Vocês vão ter me engolir” 😂🤣… https://t.co/qtlKKHanzK" +05/24/2018,Sports_celeb,@neymarjr,Thanks to my friends @wishshopping. I love @ZO2_ from @lakers. I will see you in LA soon. https://t.co/0v0fAVHv4J +05/23/2018,Sports_celeb,@neymarjr,⚽️🇧🇷 https://t.co/UZAekzo5Zr +05/22/2018,Sports_celeb,@neymarjr,Entrei pro Time da Rico e já me colocaram no banco. Mas foi por um bom motivo. Dá o play pra descobrir porquê. 😎… https://t.co/kYFRzIWU2S +05/20/2018,Sports_celeb,@neymarjr,Mesa de Sinuca do Neymar jr - BLACKBALL: https://t.co/FQhTzu3n7K via @YouTube +05/18/2018,Sports_celeb,@neymarjr,"Stop seeing life in black & white I Dare your time with color +@GaGaMilanoWorld #gagamilano #gagamilanoworld… https://t.co/t9SEG84mnd" +05/17/2018,Sports_celeb,@neymarjr,O número 18 é muito marcante: minha estreia como profissional ! Colecione a minha história. Participe da Promoção C… https://t.co/0uxSEiAvfD +05/15/2018,Sports_celeb,@neymarjr,"É amanhã, galera! Quer saber o que eu faço para superar os desafios que surgem na minha vida e carreira diariamente… https://t.co/PSHvBk4wRQ" +05/15/2018,Sports_celeb,@neymarjr,"Life is a great big canvas; throw all the paint you can on it +@gagamilanoworld #gagamilanoworld #gagamilano https://t.co/JBtcPgCi48" +05/14/2018,Sports_celeb,@neymarjr,"Obrigado Deus... muito feliz de ter mais uma oportunidade de representar a minha nação! +Partiu, Rússia !!!! 🇧🇷 https://t.co/YNCStoMW7N" +05/14/2018,Sports_celeb,@neymarjr,Quer saber o que eu faço para superar os desafios que surgem na minha vida e carreira diariamente?? Mande sua pergu… https://t.co/5VvfJInl6s +05/13/2018,Sports_celeb,@neymarjr,Muito feliz pelo prêmio. Obrigado a todos os meus companheiros e o staff técnico sem vocês não seria possível 🙏🏽👏🏽… https://t.co/qsmql6IyYA +05/13/2018,Sports_celeb,@neymarjr,"Parabéns pelo dia que você exerce tão bem, feliz dia das mães. Te amo ❤️ +@nadineinjr https://t.co/Zdaa42VoNG" +05/13/2018,Sports_celeb,@neymarjr,Merci Thiago Motta 🙏🏽 https://t.co/jkf3B4yksg +05/13/2018,Sports_celeb,@neymarjr,"Ligue 1 🏆⚽️👏🏽 +@PSG_inside https://t.co/gAH8kISHnz" +05/13/2018,Sports_celeb,@neymarjr,Ligue 1 🏆⚽️👏🏽 https://t.co/A7N8w1SbP6 +05/12/2018,Sports_celeb,@neymarjr,"Proud to wear the new jersey and to continue giving you joy +Orgulhoso de usar a nova camisa e continuar dando alegr… https://t.co/yjkZr6M0h7" +05/10/2018,Sports_celeb,@neymarjr,"The fun makes your time 💥🌈🙌🏻 +@gagamilanoworld #gagamilano https://t.co/xAoIazVNEO" +05/08/2018,Sports_celeb,@neymarjr,"Champions !!!! +@PSG_inside https://t.co/wyWmpDF7SU" +05/06/2018,Sports_celeb,@neymarjr,"THE FUN MAKES YOUR TIME ! +with @GaGaMilanoWorld #GAGAMILANO https://t.co/6hhkhUDD0l" +05/06/2018,Sports_celeb,@neymarjr,"Assista AO VIVO a maior corrida de rua do mundo e que não tem linha de chegada! 🏃🏽‍♂🏃🏻‍♀🚐 +#WorldRun #WingsForLife +https://t.co/0OjoMY6Rkx" +05/05/2018,Sports_celeb,@neymarjr,💪🏿🏋🏿‍♀️⚽️😀👊🏿 https://t.co/O6EWjr5j13 +04/24/2018,Sports_celeb,@neymarjr,"• We Are GaGà • +@gagamilanoworld +#gagamilano #watch https://t.co/K76a7VeswQ" +04/19/2018,Sports_celeb,@neymarjr,"Colors & Friends for the new @gagamilanoworld adv campaign! + +#comingsoon #staytuned #gagamilano +#crisguedes… https://t.co/JgVf6vVQJU" +04/17/2018,Sports_celeb,@neymarjr,It was a great honor to be present in the TCL & NEYMAR JR Global Press Conference. Thx for the gift from China and… https://t.co/8sJSn1YNtn +04/16/2018,Sports_celeb,@neymarjr,"Aprendi a sorrir em meio as dificuldades,a acreditar nos meus sonhos por mais que eles sejam praticamente impossíve… https://t.co/WNN5VBdeDV" +04/13/2018,Sports_celeb,@neymarjr,Honrado por fazer parte desta noite extraordinária para apoiar a luta da @amfAR contra a AIDS. Junte-se à causa: tu… https://t.co/2JP6gGYHnR +04/13/2018,Sports_celeb,@neymarjr,🤨🤙🏽 https://t.co/Y1fAYFDK0b +04/11/2018,Sports_celeb,@neymarjr,"Visite o site da Mastercard, faça uma doação, grave um vídeo +comemorando como a gente e compartilhe com… https://t.co/upLYuoqhnn" +04/11/2018,Sports_celeb,@neymarjr,"It’s time to be warrior +@GaGaMilanoWorld #GagàMilano https://t.co/snK16dMy7W" +04/08/2018,Sports_celeb,@neymarjr,Quando eu e meu amigo #LeoMessi nos unimos grandes coisas acontecem! Já já conto mais para vcs! Fiquem ligados! https://t.co/y22nDbWkOR +04/06/2018,Sports_celeb,@neymarjr,"Zoom in... the making of #gagamilano shooting with NJR +Staytuned for more updates +@GaGaMilanoWorld https://t.co/xHB2G93b4Q" +04/02/2018,Sports_celeb,@neymarjr,https://t.co/awBF3CrpJy +03/29/2018,Sports_celeb,@neymarjr,"LIFE IS A JOKE THAT'S JUST BEGUN ! +@gagamilanoworld +#gagamilano #watches https://t.co/uqobqyFP7M" +03/24/2018,Sports_celeb,@neymarjr,"❤️ +@Rafaella_ https://t.co/15CmTRGgQp" +03/22/2018,Sports_celeb,@neymarjr,@GaGaMilanoWorld 👊🏾 +03/21/2018,Sports_celeb,@neymarjr,"Brasileiragem has a new uniform ! And it's dope. Can’t wait to go back and have the honor to wear it. + +A Brasileira… https://t.co/6ZV3olqrpX" +03/21/2018,Sports_celeb,@neymarjr,"The Fun Makes Your Time! +Longing to see the new amazing advertising campaign of @gagamilanoworld at #Baselworld2018… https://t.co/KOa0mGHixQ" +03/21/2018,Sports_celeb,@neymarjr,@Rafaella_ Te amo ❤️ +03/16/2018,Sports_celeb,@neymarjr,A watch for every lifestyle. Stay tuned for the new video campaign of @GaGaMilanoWorld ! #GaGaMilano #luxurywatches https://t.co/IrjgA1JmcE +03/14/2018,Sports_celeb,@neymarjr,"Você tem que ter uma atitude positiva e tirar o melhor da situação na qual se encontra. + +Stephen Hawking https://t.co/JE2MtyuT6b" +03/13/2018,Sports_celeb,@neymarjr,"Behind the scenes +Unveiling the new advertising campaign of Gagà Milano! #comingsoon #GagaMilano @GaGaMilanoWorld https://t.co/eucigAv8bQ" +03/06/2018,Sports_celeb,@neymarjr,"Estou triste pela derrota, muito mais triste por não estar em campo ajudando meus companheiros!! O que me deixa org… https://t.co/hTINRqdX4R" +03/06/2018,Sports_celeb,@neymarjr,ALLEZ PARIS @psg_inside 🔴🔵 https://t.co/JGlaswbl9e +02/21/2018,Sports_celeb,@neymarjr,"UNLEASH YOUR PERSONALITY +@GaGaMilanoWorld +#GAGAMILANO https://t.co/ihykjx1RSa" +02/18/2018,Sports_celeb,@neymarjr,"BEHIND THE SCENE +@GaGaMilanoWorld +#GAGAMILANO #SHOOTING https://t.co/4XkyCg4R1T" +02/16/2018,Sports_celeb,@neymarjr,"Obrigado meu Deus por todos os momentos que tenho no futebol, principalmente os mais difíceis! 🙏🏽 +“Nunca te disse q… https://t.co/dHfZaRBLR1" +02/14/2018,Sports_celeb,@neymarjr,"Que Deus abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us us 🙏🏽⚽️ https://t.co/IRHEj6SqIv" +02/14/2018,Sports_celeb,@neymarjr,⚽️ @PSG_inside 🙏🏻 https://t.co/EauyhYFNhS +02/12/2018,Sports_celeb,@neymarjr,"@mariotestino +Mario Testino Towel Series no.150 https://t.co/L0j0Cm6vVK" +02/12/2018,Sports_celeb,@neymarjr,"CAN YOU DO THAT? + +#backstage +#gagamilano #watches + +@GaGaMilanoWorld https://t.co/KUvp7bcvC6" +02/10/2018,Sports_celeb,@neymarjr,"Galera! Tá rolando a final do campeonato digital de surf feminino, o #SEAFLOWERSDIGITAL, realizado pela @ma_werneck… https://t.co/6ct0YOvpPn" +02/10/2018,Sports_celeb,@neymarjr,"#Repost @neymarjr with @Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ +. +. +. +📷 #nogueirafoto https://t.co/u05Yq8PWCW" +02/09/2018,Sports_celeb,@neymarjr,"fast. Fierce. fearless. +Introducing the mercurial vapor 360. Available February 14 at +https://t.co/3XHhRSyBUE… https://t.co/IQWYLnl7ft" +02/09/2018,Sports_celeb,@neymarjr,🎄❄️☃️ https://t.co/FStoJmCZxh +02/08/2018,Sports_celeb,@neymarjr,"Color Fight #Backstage #GaGaMilano #Watch +@GaGaMilanoWorld https://t.co/Zd2V2ROkCG" +02/08/2018,Sports_celeb,@neymarjr,"Um dos melhores presentes que recebi no meu aniversário... +Obrigado @redbull e @playerunknown 👊 +@redbullgames… https://t.co/DKLqrQJ0ro" +02/08/2018,Sports_celeb,@neymarjr,B O R N M E R C U R I A L 🧡 https://t.co/pMFEDd3DvB +02/07/2018,Sports_celeb,@neymarjr,"Obrigado a todos pelas mensagens!! +Obrigado @redbull e @beatsbydre https://t.co/SNoOwjlEKt" +02/06/2018,Sports_celeb,@neymarjr,#bornmercurial https://t.co/8c3aHEkLG7 +02/05/2018,Sports_celeb,@neymarjr,@TclCorporation Am thrilled to partner with TCL. An easy decision as we share similar values - constant pursuit of… https://t.co/yHBh9vKeZh +02/03/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ +. +📷 Ricardo Nogueira https://t.co/2IFbFRu1sM" +02/02/2018,Sports_celeb,@neymarjr,"@REPLAY +#replayjeans +📸Thierry Le Gouès https://t.co/zXGzP9PdVS" +01/29/2018,Sports_celeb,@neymarjr,"DISTINCTIVE PERSONALITY +@GaGaMilanoWorld #GAGAMILANO #MANUALE48 https://t.co/UTdB14j6iZ" +01/29/2018,Sports_celeb,@neymarjr,"Cada um com a sua sorte(benção), eles são a minha ❤️ +. +. +. +By: #raul https://t.co/06F6S5fwRr" +01/27/2018,Sports_celeb,@neymarjr,"Grande vitória hoje, parabéns a todos e parabéns Edi pelo recorde, que siga assim metendo muitos gols !! +. +. +. +📸… https://t.co/OnNA2x8MzS" +01/25/2018,Sports_celeb,@neymarjr,"Meu ídolo, o cara que praticamente me inspirou a jogar futebol ... que Deus abençoe a sua vida irmão, muitas felici… https://t.co/NOGozvF4Mg" +01/19/2018,Sports_celeb,@neymarjr,"GREATEST OF ALL TIME +@GaGaMilanoWorld #GAGAMILANO https://t.co/dexgPNsqnZ" +01/19/2018,Sports_celeb,@neymarjr,Good see u legend ✌🏽 #davidbeckham https://t.co/BTNsTyfeh9 +01/18/2018,Sports_celeb,@neymarjr,Where is my custom server ? 😂🤣 https://t.co/Jkjzw0H3Qp +01/18/2018,Sports_celeb,@neymarjr,Toda honra e toda glória pra ti Deus 🙏🏽 https://t.co/Av4q2DRWh5 +01/17/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/a1mT4SwNT0" +01/17/2018,Sports_celeb,@neymarjr,❤️ @InstitutoNJr ❤️ https://t.co/Y5I8r3QhFO +01/16/2018,Sports_celeb,@neymarjr,"My global five-a-side football tournament is back, #neymarjrsfive ! More than 60 countries will battle it out to be… https://t.co/tnXAsJ4GQp" +01/15/2018,Sports_celeb,@neymarjr,"Hoje foi dia 🖊🤣😂 +@LucasMoura7 https://t.co/zxWi4VaE2s" +01/15/2018,Sports_celeb,@neymarjr,⚽️🤷🏽‍♂️🤣 https://t.co/cEj9VZ0c5Q +01/15/2018,Sports_celeb,@neymarjr,"Já escreveu sua carta ?? +https://t.co/euzWRTf8L7" +01/15/2018,Sports_celeb,@neymarjr,Go and vote for @money23green for NBA All-Star! Tweet his name with #NBAVOTE Last day to vote let’s gooo +01/12/2018,Sports_celeb,@neymarjr,"❤️ +@davilucca99 https://t.co/JqlJJU0U5f" +01/12/2018,Sports_celeb,@neymarjr,"EVERYDAY ADVENTURES + +@GaGaMilanoWorld #GAGAMILANO #WATCHES #CARBON48 https://t.co/BZ3s6MNjWw" +01/12/2018,Sports_celeb,@neymarjr,"Até música pro clube do chula... viciei ! 😂😂 +E aí Aloísio, esse clube é do tipo que você me convida ou eu te convid… https://t.co/V5QmVsMGfr" +01/10/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/TyYAjF0ion" +01/09/2018,Sports_celeb,@neymarjr,"E o programa ""Neymarzinho Responde"" já chegou no 12º episódio !! +Já assistiu ? +Não esquece, é toda quinta !! +https://t.co/M5NqMArEmh" +01/09/2018,Sports_celeb,@neymarjr,hey @playerunknown can i have a custom server? Please :) +01/08/2018,Sports_celeb,@neymarjr,"STAY FOCUSED + +@GaGaMilanoWorld #GAGAMILANO https://t.co/52lqg9znCG" +01/07/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/BkZwPeSneU" +01/04/2018,Sports_celeb,@neymarjr,"🙂 +@RedBullBR https://t.co/Ndh1JDjCAC" +01/04/2018,Sports_celeb,@neymarjr,"2018 ❤️🙏🏽 @ +@BruMarquezine @davilucca99 https://t.co/ihy88200HD" +01/03/2018,Sports_celeb,@neymarjr,"🤘🏿 +@Gillette https://t.co/TbHuCl7vSs" +12/31/2017,Sports_celeb,@neymarjr,"Galera, já estou aqui me preparando pra virada do ano. Confiante por um 2018 ainda melhor! https://t.co/4TgemeQKzz" +12/27/2017,Sports_celeb,@neymarjr,"YOU ARE THE POWER + +@GaGaMilanoWorld #GAGAMILANO https://t.co/VDzKrZBj7R" +12/22/2017,Sports_celeb,@neymarjr,"@neymarjr in Qatar +@PSG_inside https://t.co/oU8qNH5svZ" +12/22/2017,Sports_celeb,@neymarjr,"BEYOND MEASURE +@GaGaMilanoWorld +#GAGAMILANO https://t.co/VjY2Eblb99" +12/21/2017,Sports_celeb,@neymarjr,"Njr puro fenómeno #mercurial vapor 👊 + +👉 https://t.co/lVCYe2M7ke https://t.co/iFIKWScOsE" +12/21/2017,Sports_celeb,@neymarjr,"👊🏿 +https://t.co/jjITzl8W8W" +12/21/2017,Sports_celeb,@neymarjr,"AMIGO OCULTO DOS PARÇAS! +Vc é meu convidado para assistir @LuisSuarez9, @phganso, @Phil_Coutinho, @gabrieljesus33,… https://t.co/LoJmeUPcvl" +12/18/2017,Sports_celeb,@neymarjr,"Chegou a hora de revelar o segredo! Eu reuni alguns amigos meus, alguns craques, para um Amigo Secreto em prol do… https://t.co/H0usy9tlYd" +12/15/2017,Sports_celeb,@neymarjr,"Courage, Strength, Liberty +@GaGaMilanoWorld #gagamilano https://t.co/vjdUO7frVh" +12/14/2017,Sports_celeb,@neymarjr,"Frio em Paris, só um café quente pra me aquecer... https://t.co/7IUWCxK9BL" +12/12/2017,Sports_celeb,@neymarjr,"Every Second is a new Challange +@GaGaMilanoWorld #gagamilano https://t.co/NJupSCukgA" +12/11/2017,Sports_celeb,@neymarjr,"Vocês todos estão acompanhando o programa ""Neymarzinho Responde"" ? +O 9º episódio já tá no ar 😉 +https://t.co/mxSwNzfBTT" +12/11/2017,Sports_celeb,@neymarjr,"Foco, força e fé pra celebrar mais um dia !! https://t.co/WzQ8fiGDPU" +06/29/2018,Sports_celeb,@RafaelNadal,Great news before we start playing @Wimbledon Check out the video... 😀 #vamos https://t.co/iw1eS2TobT +06/29/2018,Sports_celeb,@RafaelNadal,On my way to practice @wimbledon then off to the beautiful club #Hurlingham to play my last match @Tennis_Classic… https://t.co/MsuFRHeR8a +06/27/2018,Sports_celeb,@RafaelNadal,Here we are @Wimbledon ! Aquí estamos! 💪🏻😉👇🏻 https://t.co/pkRpmBHDCK +06/25/2018,Sports_celeb,@RafaelNadal,Happy to announce that I’ll be back at @AspallTennisClassic as part of my @wimbledon warm up! 😀💪🏻👇🏻 https://t.co/cqJudXgfo0 +06/23/2018,Sports_celeb,@RafaelNadal,"Mañana acaba la etapa de #Alicante del #RafaNadalTourbyMapfre, el circuito de #tenis a beneficio de mi fundación… https://t.co/1gegmChvu1" +06/16/2018,Sports_celeb,@RafaelNadal,Día espectacular y por una buena causa. Gracias a @Richard_Mille y @24hoursoflemans por la invitación y el honor https://t.co/WO7Psc3aAR +06/15/2018,Sports_celeb,@RafaelNadal,"With @Babolat, I’m giving away one of the 11 Limited Edition #UNDECIMA packs. +Enter by posting your own “11” celebr… https://t.co/jHFuF92oBU" +06/14/2018,Sports_celeb,@RafaelNadal,RT @movistar_es: Porque no hay mayor triunfo que tener el apoyo de una afición incondicional. Ahora más que nunca todos con la @SeFutbol. ¡… +06/13/2018,Sports_celeb,@RafaelNadal,Very sorry to announce this withdrawal but I have to take some rest according to my doctor after q long clay court… https://t.co/SE8d8GacrB +06/12/2018,Sports_celeb,@RafaelNadal,Facing a new opponent. You might just recognise him… @NintendoEurope #MarioTennis https://t.co/CHK9Aied9l https://t.co/bGtmxTRuBy +06/11/2018,Sports_celeb,@RafaelNadal,Hello everybody. You can imagine the happiness today. Now back at home in Mallorca and will post later some picture… https://t.co/2UaeOagiqd +06/10/2018,Sports_celeb,@RafaelNadal,Gracias @rnadalacademy!!!! #NOL1M1TS https://t.co/bJWNYyvzkk +06/09/2018,Sports_celeb,@RafaelNadal,Bonjour Paris! Desayuno y vamos para el entrenamiento! Breakfast and let’s go to practice! 💪🏻😉💯 +06/08/2018,Sports_celeb,@RafaelNadal,"Love this court, the most important in my career, these are amazing moments. Many thanks to all. Another final in P… https://t.co/srb9m9d3Zv" +06/07/2018,Sports_celeb,@RafaelNadal,Ready !!!! #vamos @rolandgarros https://t.co/mQ2ArPxOHM +06/06/2018,Sports_celeb,@RafaelNadal,"Rain ☔️ in Paris, match postponed. Back at the hotel and time to regroup a bit for tomorrow #weknewitwastough + +De v… https://t.co/7KOidDG2Tf" +06/06/2018,Sports_celeb,@RafaelNadal,"Good morning, on my way to the tournament for my pre match warm up I send you this link to help the Victims of volc… https://t.co/Ig4ZRnuLox" +06/06/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos. Camino ya del torneo para el calentamiento, os envío esta dirección para que ayudemos a los af… https://t.co/ZENmgYfC6V" +06/05/2018,Sports_celeb,@RafaelNadal,"Día lluvioso hoy en Paris, de mucha espera para poder entrenar. Así que algo de gym ahora y después esperemos que d… https://t.co/VIEUHrcpSu" +06/05/2018,Sports_celeb,@RafaelNadal,"Buenos días, Bonjour, rainy day here in Paris... lot of waiting today for practice... so a bit of gym at the C.N.E.… https://t.co/2y3Eth4hi2" +06/04/2018,Sports_celeb,@RafaelNadal,"Jumping to quarter finals! Very happy with the match and deep into the second week! + +Un salto a la siguiente ronda… https://t.co/GX34799RxV" +06/04/2018,Sports_celeb,@RafaelNadal,Muchas gracias!!!!!!!! https://t.co/X2fmYG0rkA +06/03/2018,Sports_celeb,@RafaelNadal,😀😘 https://t.co/v8agR8vEIW +06/03/2018,Sports_celeb,@RafaelNadal,"Time to go to practice.... Thanks for all your birthday messages :) + +Hora para ir a entrenar 💪🏻 y gracias por todos… https://t.co/yOMC9nCNs9" +06/03/2018,Sports_celeb,@RafaelNadal,"Good morning to all. +Buenos días a todos +Bonjour +Este fue un momento también especial ayer tras la victoria. Grac… https://t.co/Ai4AI1PcLg" +05/31/2018,Sports_celeb,@RafaelNadal,"Contento por el partido de hoy! El sábado siguiente ronda contra un buen amigo! +Happy with today’s match! Saturday… https://t.co/nBNwbhTnk5" +05/31/2018,Sports_celeb,@RafaelNadal,"Bueno días a todos! Good morning all! Bonjour ! +On my way soon to @rolandgarros to my warm up and getting ready for… https://t.co/imyTHtLDz2" +05/27/2018,Sports_celeb,@RafaelNadal,"Enhorabuena al Real Madrid por los títulos. Champions y Euroliga en un mismo año, increíble. ¡A disfrutar este mome… https://t.co/8AhyygR5Fl" +05/27/2018,Sports_celeb,@RafaelNadal,Enhorabona! A disfrutar d’aquest moment tan important! Estic molt content! L’any que ve a primera!💪🏻 https://t.co/59lowcuG2e +05/27/2018,Sports_celeb,@RafaelNadal,"All smiles and getting ready. Tomorrow first round, looking forward to my first match @rolandgarros 2018 + +Mañana pr… https://t.co/2buhJPzjWH" +05/25/2018,Sports_celeb,@RafaelNadal,"Pero... ahora de nuevo a las 5, entrenamos por la tarde. 💪🏻😀 and back to practice at 5pm today https://t.co/OmosI7bOWs" +05/24/2018,Sports_celeb,@RafaelNadal,"Primer entrenamiento en @rolandgarros con un buen amigo, @PabloCuevas22 #tennis #paris #tenis https://t.co/RxCnZcDtwZ" +05/23/2018,Sports_celeb,@RafaelNadal,"De camino a Paris... nos vemos allí? +Paris, j’arrive! On se voit là :) (je essaye en Français cette année) 😉👋🏻 #vamos @rolandgarros" +05/22/2018,Sports_celeb,@RafaelNadal,"This is how I celebrate winning a big point. What about you? +Show me your celebration using #TheDecima for a chance… https://t.co/AxEF1LDv8M" +05/21/2018,Sports_celeb,@RafaelNadal,Grazie 😊 https://t.co/4l8QS2llhs +05/21/2018,Sports_celeb,@RafaelNadal,Grazie della intervista. Si è fatta prima del torneo ed e andato tutto bene. Gracias por la entrevista! https://t.co/QwtF9LtRgd +05/20/2018,Sports_celeb,@RafaelNadal,Couldn't be happier traveling back home now with this trophy in my hands... Took this picture at the locker room fo… https://t.co/kCLNZdQfJV +05/19/2018,Sports_celeb,@RafaelNadal,Molto molto felice di ritornare a giocare una finale qui a #Roma #Grazie #Italia #tennis #tenis #gracias #Vamos +05/18/2018,Sports_celeb,@RafaelNadal,"Great crowds today playing the local hero. Many thanks Rome for an amazing sportsmanship and respect for both. +Gra… https://t.co/RB2GcOBz8M" +05/15/2018,Sports_celeb,@RafaelNadal,¿Y a vosotros qué es lo que más os gusta de España? @spain #SpainIn10Sec #VisitSpain #Challenge… https://t.co/4SwikNrdUc +05/15/2018,Sports_celeb,@RafaelNadal,¿Sabéis qué hacemos los días como hoy que llueve mientras nos dan una pista de entrenamiento en #Roma ? Yo lo tengo claro 😬☔️🤔 +05/14/2018,Sports_celeb,@RafaelNadal,@MariaSharapova Thanks Maria! It’s been a pleasure hitting with the you a few balls 👍🏻😊👏🏻 +05/13/2018,Sports_celeb,@RafaelNadal,Ciao a tutti !!! vi aspetto a Roma! 😉😜😘 https://t.co/DKuYPQc1P5 +05/12/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos, Good morning to all! Lástima por la derrota de ayer, pero #dominicthiem jugó mejor y mereció g… https://t.co/cppMjiQ6Wk" +05/09/2018,Sports_celeb,@RafaelNadal,Good start to the tournament. Thanks all for the support. Great to play at home with this amazing crowds. https://t.co/N7B2G2GiDH +05/08/2018,Sports_celeb,@RafaelNadal,"¿Cómo será el deporte dentro de unos años gracias a IoT? +Cambiarán muchas cosas, pero seguro que seguiremos hacien… https://t.co/5JG8yywyEb" +05/07/2018,Sports_celeb,@RafaelNadal,Check out my Instagram account and see if you’ve done this before. The question is: 3 minutes or just 1 at -196 Cel… https://t.co/9EE2WaAkbz +05/06/2018,Sports_celeb,@RafaelNadal,Cena entretenida con equipo y amigos. Mañana a seguir preparando el inicio del torneo aquí en Madrid. Buenas noches… https://t.co/7nG9DyOdvz +05/06/2018,Sports_celeb,@RafaelNadal,Last chance to win a trip to Paris & meet me in person with one of your friends! You still have one last chance to… https://t.co/WkI1fegYIk +05/05/2018,Sports_celeb,@RafaelNadal,"My @babolat rackets are a big part of #TheDecima story. +What about your story? +Share a pic with your racket using… https://t.co/DmRZ23tC7u" +05/04/2018,Sports_celeb,@RafaelNadal,Interesante participar en este foro de tecnología y deporte #Madrid #España #telefonica https://t.co/jkHKYouBam +05/04/2018,Sports_celeb,@RafaelNadal,Así fue el pasado torneo del #RafaNadalTourbyMapfre. Me gusta ver como disfrutáis jugando a tenis y entrenando valo… https://t.co/6xWaChUiay +05/02/2018,Sports_celeb,@RafaelNadal,"Mañana jueves, a partir de las 19:00, estaré respondiendo preguntas en directo a través de un Facebook Live organiz… https://t.co/hqqO4l3DSf" +05/02/2018,Sports_celeb,@RafaelNadal,Don’t forget to donate $10 to @Onedrop and @frnadal and get a chance to win a trip to Paris to meet me in person- w… https://t.co/lcPuCljZj8 +05/01/2018,Sports_celeb,@RafaelNadal,Tengo una pregunta para vosotros… 😉 #SabadellFuturos https://t.co/P46tk5k6sE +04/29/2018,Sports_celeb,@RafaelNadal,Gracias a todos y en particular a mi equipo aquí en #barcelona #bcnopenbs #vamos #undecima https://t.co/d1ZhHZbsJR +04/25/2018,Sports_celeb,@RafaelNadal,"Contento de mi debut en #Barcelona +Ahora toca descansar, cenar bien y prepararse para el partido de mañana +#vamos… https://t.co/j6i73fooPB" +04/24/2018,Sports_celeb,@RafaelNadal,Ya en #Barcelona para saltar mañana a la tierra batida del #BCNOpenBS. Con ganas de compartir más tenis con los ami… https://t.co/XFWzDyjFmJ +04/23/2018,Sports_celeb,@RafaelNadal,Gracias siempre a los niños que nos ayudan en cada torneo! Qué momento tan especial! https://t.co/BppUMWMfQn +04/22/2018,Sports_celeb,@RafaelNadal,Ya en Barcelona !!!! Gracias a todos por los mensajes. Fue una semana especial!!! #feliz . Thanks to all for your m… https://t.co/lXodBaH56N +04/21/2018,Sports_celeb,@RafaelNadal,Otra final en #Monaco muy contento! Another final in #Monaco and very happy! https://t.co/cvNQ2i7bAO +04/20/2018,Sports_celeb,@RafaelNadal,"Gracias por el apoyo. Merci pour le soutien. Thanks for the support! +Gran partido hoy! Muy contento de estar en se… https://t.co/muAFklgWEg" +04/18/2018,Sports_celeb,@RafaelNadal,"Enhorabuena @RICARDODEDIEGO te lo mereces !!!! Congrats, you really deserve this award!!! https://t.co/BAbUNMgw4c" +04/18/2018,Sports_celeb,@RafaelNadal,"For only a $10 donation to @Onedrop and @frnadal, get a chance to win a trip to Paris and to meet me with one of yo… https://t.co/WxJX1FtG0K" +04/17/2018,Sports_celeb,@RafaelNadal,"#TheDecima began at Tennis Club Manacor. +Where does your story start? +Share your tennis court with #TheDecima for a… https://t.co/w8ks7duTHg" +04/15/2018,Sports_celeb,@RafaelNadal,Bonjour Monaco. Toujours bien cette tournoi ! :-) #vamos https://t.co/wgx0kJXvk3 +04/05/2018,Sports_celeb,@RafaelNadal,VAMOS! New @babolat #PureAeroDecima. I’m ready to challenge #MyDecima at @rolandgarros. https://t.co/jzzitaqHh1 +04/03/2018,Sports_celeb,@RafaelNadal,"Cuando te los pasas bien en una entrevista con chicos, esta tarde, con el equipo de España @CopaDavis :-) https://t.co/m3f0BSYzGw" +03/25/2018,Sports_celeb,@RafaelNadal,"Hoy día en familia... Aquí en #Mallorca, Sa Punta 🙂 https://t.co/iHNTWZzwl2" +03/23/2018,Sports_celeb,@RafaelNadal,Un abrazo grande desde Mallorca y muchos ánimos en estos momentos tan duros @santicanizares https://t.co/tdALwF0B0w +03/23/2018,Sports_celeb,@RafaelNadal,"Hoy ha empezado en Valldoreix, Barcelona, una nueva etapa del #RafaNadalTour. 10 días por delante para dar lo mejor… https://t.co/g5G3lCs7WU" +03/21/2018,Sports_celeb,@RafaelNadal,"Hoy en Barcelona, visita al Dr. Ruiz-Cotorro para ver la evolución de la lesión 👌👍 https://t.co/vwxEzWQ1Uw" +03/19/2018,Sports_celeb,@RafaelNadal,"Hi all, I'm happy to introduce the new Official Online Store of #RafaNadalAcademybyMovistar You can also collabora… https://t.co/99wzFcylUW" +03/19/2018,Sports_celeb,@RafaelNadal,"¡Hola a todos! +Os presento la nueva Tienda Online Oficial de #RafaNadalAcademybyMovistar, donde además podrás cola… https://t.co/4OQkZ9nza2" +03/02/2018,Sports_celeb,@RafaelNadal,"Hola a todos. Lamentablemente me veo obligado a escribiros esto.../ Unfortunately, the injury I suffered in Acapulc… https://t.co/ZAyvCsFC9I" +02/25/2018,Sports_celeb,@RafaelNadal,Os presento a Aura #HelloAura. Impresionante cómo la inteligencia artificial de @Telefonica me ayuda a disfrutar co… https://t.co/bgqla9v2zv +02/21/2018,Sports_celeb,@RafaelNadal,@paugasol Qué intriga Pau... ya nos dirás! 😉 +02/20/2018,Sports_celeb,@RafaelNadal,En juego la etapa de Sevilla del #RafaNadalTour. Este es el 5º año del circuito y no deja de sorprender el buen niv… https://t.co/yVsarM1US0 +02/15/2018,Sports_celeb,@RafaelNadal,"Amazed by @PostcodeLoterij social commitment. It's an honour to be an ambassador for this organisation, which I tha… https://t.co/eXftJ04eGT" +02/15/2018,Sports_celeb,@RafaelNadal,"Impresionado con el fuerte compromiso social que tiene @PostcodeLoterij. Es un honor ser embajador de esta entidad,… https://t.co/YKig3wWWnT" +02/09/2018,Sports_celeb,@RafaelNadal,"Querida Debora, por favor dale las gracias de mi parte a tu bisabuela por esta emotiva carta y su contenido que lle… https://t.co/Bf3Se7EKlz" +02/08/2018,Sports_celeb,@RafaelNadal,Es increíble todo lo que pasa en internet mientras estoy jugando al tenis #MovistarLikesRafa https://t.co/Vf9nZeckii +02/07/2018,Sports_celeb,@RafaelNadal,Excited to be playing here again... https://t.co/BOZdPA7Vk1 +02/06/2018,Sports_celeb,@RafaelNadal,"Nothing to do with yesterday’s event or tomorrow, but I played it in Melbourne and was great.… https://t.co/Nk2lzcykS2" +02/06/2018,Sports_celeb,@RafaelNadal,"RT @ClinicaTenis: Momento en el que iniciamos una nueva aventura con @MAPFRE + +👌🏻Todo el equipo estamos muy ilusionados con este proyecto q…" +02/03/2018,Sports_celeb,@RafaelNadal,Vamossssss! Siguiendo la eliminatoria desde casa en @rnadalacademy #DavisCup #España https://t.co/QsAEn37Qqy +01/31/2018,Sports_celeb,@RafaelNadal,RT @BancoSabadell: Nuestro embajador @RafaelNadal estará con nosotros el miércoles a partir de las 17:30h. Síguelo #endirecto 🔴 con @inform… +01/29/2018,Sports_celeb,@RafaelNadal,"RT @babolat: What’s your tribe? +#PureAero #PureDrive #PureStrike https://t.co/2YOeR7ZRYs" +01/26/2018,Sports_celeb,@RafaelNadal,@cilic_marin Thanks Marin and congrats on your match! You played unbelievable! +01/26/2018,Sports_celeb,@RafaelNadal,@paugasol Gracias Pau!!!!! Eres un fenómeno. Un abrazo amigo! +01/23/2018,Sports_celeb,@RafaelNadal,Sadly leaving the #ausopen tonight. I’ll get an MRI tomorrow morning to see what is the injury. Thanks for the supp… https://t.co/3pPXYxskpq +01/22/2018,Sports_celeb,@RafaelNadal,"Txs @AustralianOpen for making this nice piece on my Academy, exciting project that is already fully active and wor… https://t.co/tsiqBxLeH1" +01/21/2018,Sports_celeb,@RafaelNadal,Tough match to go into the QF! Vamosssssssssssssss! https://t.co/WNeJlNP73c +01/20/2018,Sports_celeb,@RafaelNadal,"Hey all, tomorrow 3rd on RLA, looking forward to that. In the mean time, today, we had lunch at the beach. #team… https://t.co/KxSPzmK4ju" +01/19/2018,Sports_celeb,@RafaelNadal,RT @FundacionEcomar: RECORDATORIO #ConciertoSolidario Invitación Concierto Homenaje a Deportistas Españoles 26-01-18 @OCRTVE. Organiza: @de… +01/18/2018,Sports_celeb,@RafaelNadal,"RT @AustralianOpen: Wow... a @RafaelNadal special! + +#AusOpen https://t.co/aR2QBQfKHA" +01/18/2018,Sports_celeb,@RafaelNadal,"RT @AustralianOpen: No. 1 seed. +No. 1 smile. +@RafaelNadal +#AusOpen https://t.co/SYNQglkfKF" +01/18/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos, good morning!!! Hoy (today) a las @ 7 en (on) #margaretcourtarena aquí en el (here)… https://t.co/SCPr9LlY01" +01/16/2018,Sports_celeb,@RafaelNadal,UNTIL WE ALL WIN #EQUALITY https://t.co/eaVKpeQ4zk +01/15/2018,Sports_celeb,@RafaelNadal,"RT @kiamotorsiberia: Todos juntos somos uno, preparados para crear una gran #sorpresa. Preparados para el espectáculo. ¡Vuelve el @Australi…" +01/13/2018,Sports_celeb,@RafaelNadal,Monday start @AustralianOpen getting ready. #vamos https://t.co/02zv7g5Opv +01/10/2018,Sports_celeb,@RafaelNadal,RT @RICARDODEDIEGO: Australian Open VIK Ceremony with Rafa Nadal and Lleyton Hewitt & KIA Stinger @RafaelNadal Special Edition 😍 @Australia… +01/09/2018,Sports_celeb,@RafaelNadal,Thank you Iain for always taking care of us during the @AustralianOpen and for your hospitality. It was lovely to s… https://t.co/gExWmYUhAo +01/08/2018,Sports_celeb,@RafaelNadal,Draw came out and I’ll be playing @la_pouille . Really looking forward to stepping onto the #margaretcourtarena to… https://t.co/3bSyJadoU3 +01/05/2018,Sports_celeb,@RafaelNadal,Already in Melbourne! Practiced today @RodLaverArena and also excited for the @tiebreaktens coming up on Wednesday… https://t.co/vYgETDiU8a +01/03/2018,Sports_celeb,@RafaelNadal,On my way to Melbourne @AustralianOpen and will be playing the #tiebreaktens on Wednesday 10th looking forward to s… https://t.co/YjbEeFzKHs +12/27/2017,Sports_celeb,@RafaelNadal,I will be seeing my Aussie fans when I land on the 4th in Melbourne and start there my preparation for the Australian Open. +12/27/2017,Sports_celeb,@RafaelNadal,I am sorry to announce I won’t be coming to Brisbane this year. My intention was to play but I am still not ready a… https://t.co/0rqR9uVXyA +12/24/2017,Sports_celeb,@RafaelNadal,Os deseo una Feliz Navidad a todos los que la celebréis. Que tengáis un buen día con vuestros seres mas queridos. ¡… https://t.co/1eqJFYkYth +12/21/2017,Sports_celeb,@RafaelNadal,RT @babolat: HAPPY HOLIDAYS! #PlayToBeWild https://t.co/hvYxjS0dul +12/19/2017,Sports_celeb,@RafaelNadal,Gran clase de #spinning en #RafaNadalSportCentre!! Buen trabajo a todos! @RNadalAcademy #somsporttime 👏👏🎅 https://t.co/GyvsNJgH7S +12/18/2017,Sports_celeb,@RafaelNadal,Ya no queda nada para la 5ª edición del #RafaNadalTour! En este circuito los chic@s juegan y aprenden valores y los… https://t.co/G13S8Bw4HE +12/17/2017,Sports_celeb,@RafaelNadal,Excited to be on the cover of the new @AustralianOpen video game. See you soon #AOTennis https://t.co/f2cnU9apho +12/14/2017,Sports_celeb,@RafaelNadal,Gracias @AirEuropa!👏 https://t.co/s7KMlfYim0 +12/11/2017,Sports_celeb,@RafaelNadal,Muy agradecido al Conde de Godó y al @bcnopenbs por la entrega de la segunda réplica. #gracias https://t.co/8Ql17RIobg +12/06/2017,Sports_celeb,@RafaelNadal,"RT @CasaReal: Los Reyes entregan los ""Premios As del Deporte"" #As50Años @diarioas @miss_belmont @RafaelNadal @Ruthypeich https://t.co/AmYfA…" +12/04/2017,Sports_celeb,@RafaelNadal,"Muy afortunado de conocer a los pilotos que nos llevan de vuelta a casa, tras estos días de vacaciones. Gracias… https://t.co/judjqKNaEw" +12/02/2017,Sports_celeb,@RafaelNadal,La semana que viene en @Telefonica Flagship Store Madrid podrás ver los trofeos del #RafaNadalMuseumXperience y jug… https://t.co/hfUM3y1Qzo +12/01/2017,Sports_celeb,@RafaelNadal,"Disfrutando de estos días con mis amigos y familia... Adivináis dónde estamos? 😉 +Enjoying some days of holidays wit… https://t.co/ItYpAqIjQt" +11/24/2017,Sports_celeb,@RafaelNadal,RT @MAPFRE_ES: 7.000 millas después nuestros #Valientos ya están en Ciudad del Cabo tras una gran segunda etapa ¡Enhorabuena equipo! 🙌🏼#Vam… +11/23/2017,Sports_celeb,@RafaelNadal,"RT @GranRecogidaMad: ¡Ya puedes apuntarte a la @GranRecogidaMad ! ➡ 1, 2 y 3 de Diciembre. Necesitamos 22.000 voluntarios ¿Nos ayudas? http…" +11/21/2017,Sports_celeb,@RafaelNadal,Check out how you can join the surprise at Australian Open 2018! Thanks for the great opportunity! @Kia_Motors https://t.co/7f92lqpLg0 +11/21/2017,Sports_celeb,@RafaelNadal,RT @bcnopenbs: Cuatro campeones del @bcnopenbs coinciden en la pista del @rctb1899 https://t.co/5MJMtUTff0 +11/16/2017,Sports_celeb,@RafaelNadal,"As you can see in the media, today is a happy day for me, my team and my fans. The French justice... https://t.co/Pt4bnwQQU0" +11/16/2017,Sports_celeb,@RafaelNadal,"Como podréis ver en los medios de comunicación, hoy es un día feliz para mí, mi equipo y mis fans. La justicia fran… https://t.co/lb5txI01XZ" +11/15/2017,Sports_celeb,@RafaelNadal,RT @MAPFRE_ES: ¿Qué le pasa a @RafaelNadal? ¡Haz clic y entérate! Porque ni los deportistas profesionales pueden controlarlo todo.. https:/… +11/10/2017,Sports_celeb,@RafaelNadal,RT @Kia_Motors: We believe in the power to surprise. See how #Kia’s special visit to Keon Park Tennis Club made everyone smile - the #AusOp… +11/09/2017,Sports_celeb,@RafaelNadal,Having a great night out at the #ATP gala! https://t.co/YWgcWBvkk9 +11/03/2017,Sports_celeb,@RafaelNadal,Ya camino a casa después de una dolorosa decisión... // Leaving Paris now after a painful decision... https://t.co/sV8zNKyARE +11/02/2017,Sports_celeb,@RafaelNadal,Calentando para el partido de esta noche en el gimnasio del hotel #DCmoments. @Plaza_Athenee @DC_LuxuryHotels https://t.co/LO7jjDwGsg +11/01/2017,Sports_celeb,@RafaelNadal,A message to thank you for all your support. #Vamos https://t.co/mk9cfcIRRu +11/01/2017,Sports_celeb,@RafaelNadal,Un mensaje para agradeceros todo el cariño y apoyo. Muy contento por este logro... #Vamossss https://t.co/BqQYAl9nq2 +10/24/2017,Sports_celeb,@RafaelNadal,¿Sabes cuántas horas juego al tenis al año? #RNMovistar https://t.co/twYsGAU9nk +10/22/2017,Sports_celeb,@RafaelNadal,RT @RCD_Mallorca: 👉#SomelMallorca 🔴⚫️ https://t.co/26jLmeTLU5 +10/19/2017,Sports_celeb,@RafaelNadal,"This morning we'll be posting some special videos for all of you on @rnadalacademy... stay tuned, you'll love them!" +10/19/2017,Sports_celeb,@RafaelNadal,Esta mañana desde @rnadalacademy publicaremos un par de videos especiales para todos vosotros... Estad atentos 😉 Os encantarán... +10/18/2017,Sports_celeb,@RafaelNadal,Espectacular el nuevo Kia Stinger que me han entregado en la #RafaNadalAcademy! Gracias @RICARDODEDIEGO https://t.co/xmuvmgaf9J +10/17/2017,Sports_celeb,@RafaelNadal,"I sadly announce that I have to pull out of the Swiss Indoors Basel, after... https://t.co/hXuflDRZLJ" +10/17/2017,Sports_celeb,@RafaelNadal,Tristemente tengo que deciros que no participaré en el torneo de Basilea tras ver... https://t.co/hXuflDRZLJ +10/16/2017,Sports_celeb,@RafaelNadal,"Lamentando lo ocurrido en Galicia, Asturias y Portugal... Horror e impotencia...Todo mi apoyo a los familiares de los fallecidos." +10/15/2017,Sports_celeb,@RafaelNadal,"Great tour in China, with the title in Beijing and the final in Shanghai! This isn't over, let's keep going!" +10/15/2017,Sports_celeb,@RafaelNadal,"Gran gira en China, con título en Beijing y final aquí en Shanghai! Esto no ha acabado, seguimos!" +10/13/2017,Sports_celeb,@RafaelNadal,Outdoor play today here in Shanghai. Vamos! https://t.co/ZAdxTAT9aq +10/10/2017,Sports_celeb,@RafaelNadal,On my way to practice. Court 5 #shanghai #tennis #practice pics on my IG account later :-) +10/08/2017,Sports_celeb,@RafaelNadal,"Gracias a todos y en particular a mi equipo esta semana aquí en Beijing! Vamoss + +Thanks to everyone and to my team… https://t.co/uKshnzYBUD" +09/25/2017,Sports_celeb,@RafaelNadal,Resting at home after these intense days in #Prague. Very happy for yesterday's victory and for such an exciting… https://t.co/zkQdpDjU0O +09/25/2017,Sports_celeb,@RafaelNadal,En casa descansando tras estos días intensos en #Praga Muy contento por la victoria de ayer y por una @LaverCup tan… https://t.co/ebSiXgqJsi +09/23/2017,Sports_celeb,@RafaelNadal,📸 con mi compañero de dobles @RogerFederer👌Muy contento de haber jugado con Roger @LaverCup #TeamEurope https://t.co/lVtfVE0WPC +09/23/2017,Sports_celeb,@RafaelNadal,📸 with my doubles partner @RogerFederer! Happy to have played with Roger for a change😉 @LaverCup #TeamEurope https://t.co/uHqXAN9Pk6 +09/23/2017,Sports_celeb,@RafaelNadal,"An hour ago, in the dressing room talking tactics. Today I'm so lucky to have @rogerfederer next to me on the court… https://t.co/299XK7xn8e" +09/23/2017,Sports_celeb,@RafaelNadal,Hace una hora hablando de táctica en el vestuario. Hoy tengo la suerte de tener a @RogerFederer a mi lado de la pis… https://t.co/jooz3zOMVn +09/23/2017,Sports_celeb,@RafaelNadal,"RT @LaverCup: They've played against each other 37 times at tour level. +Now they play together for the first time. +Introducing #FedalUtd +#…" +09/23/2017,Sports_celeb,@RafaelNadal,"RT @rodlaver: Great tennis from @RafaelNadal and @rogerfederer today. Like everyone else, I am looking forward to seeing them play doubles…" +09/23/2017,Sports_celeb,@RafaelNadal,RT @TheSergioGarcia: History will be made today @LaverCup with @rogerfederer & @RafaelNadal playing doubles together for the 1st time vs @S… +09/21/2017,Sports_celeb,@RafaelNadal,Empieza el master del #RafaNadalTour en @rnadalacademy Desde Praga deseo mucha suerte a los 32 clasificados!Los ben… https://t.co/vb5QKhzwFH +09/19/2017,Sports_celeb,@RafaelNadal,Terribles noticias de Mexico. Todo mi apoyo a los afectados y a los familiares de las víctimas. +09/19/2017,Sports_celeb,@RafaelNadal,Hoy a las 17:30h hablaré con @marclopeztarres y @lolaochoaribes en el evento de @BancoSabadell!! #RafaNadalEnMálaga https://t.co/gFs3SYStKD +09/18/2017,Sports_celeb,@RafaelNadal,Enhorabuena @PauGasol por otro torneo fantástico y llegar de nuevo al mejor 5º del #Eurobasket2017. Eres enorme!!! https://t.co/lbMu60b9cH +09/17/2017,Sports_celeb,@RafaelNadal,Enhorabuena a @Carlossainz55 🇪🇸por su primer 4º lugar en la #F1 #gpsingapore🇸🇬 https://t.co/wH4UdUlwLe +09/13/2017,Sports_celeb,@RafaelNadal,Acabo de darme cuenta de que terceras personas han entrado en mi perfil haciendo un uso inaceptable.Ya la he recuperado.Lamento lo sucedido. +09/13/2017,Sports_celeb,@RafaelNadal,Dos dias de descanso antes de hacer un breve viaje... ya os diré algo... +09/12/2017,Sports_celeb,@RafaelNadal,RT @babolat: #PlayToBeWild @RafaelNadal https://t.co/jihSKyQoZh +09/12/2017,Sports_celeb,@RafaelNadal,"RT @usopen: 2010. +2013. +2017. + +#usopen https://t.co/oJsuvzQTKG" +09/12/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Oh hey there Champ 🏆 + +@RafaelNadal #usopen https://t.co/ZMOGb9niP8" +09/11/2017,Sports_celeb,@RafaelNadal,"Leaving NY shortly. My last moments of work was with these guys, Spain's media reps. @NewYorkPalace thanks for a gr… https://t.co/N8nZOmsLR9" +09/11/2017,Sports_celeb,@RafaelNadal,".@Nike has put this poster in the big city!! It looks amazing, don’t you think? Thanks @nike for your support #NY https://t.co/70JXK6N4hf" +09/11/2017,Sports_celeb,@RafaelNadal,Mensajito para agradeceros el apoyo. Ahora toca celebrar #usopen 17 https://t.co/lByqdBNBN7 +09/11/2017,Sports_celeb,@RafaelNadal,Vamossssssss thanks and celebration time #usopen 17 https://t.co/O0k0lhHtvT +09/11/2017,Sports_celeb,@RafaelNadal,".@RNadalAcademy has made this video for me!! Thanks to all the students, players, coaches and staff!! #Vamosss https://t.co/XieNlcBpMC" +09/09/2017,Sports_celeb,@RafaelNadal,Match point. Always a special feeling and a tough one! #USOpen https://t.co/UpGRCTf9hD +09/09/2017,Sports_celeb,@RafaelNadal,"Very happy for this win, and ... I'll go live on my Facebook page live in around 15-20 minutes ;-) @RafaelNadal" +09/07/2017,Sports_celeb,@RafaelNadal,"Great win today, back in the SF @usopen special moments again here #USOpen 17 | Muy contento por la victoria de hoy… https://t.co/qKafshkvLv" +09/04/2017,Sports_celeb,@RafaelNadal,Vamossss!!! Thanks NY!!!! https://t.co/C1fbuMP46V +09/03/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Out of this world for most... + +Standard for @RafaelNadal... + +#USOpen https://t.co/rtOKwXtY7h" +09/03/2017,Sports_celeb,@RafaelNadal,Into the second week of the @usopen !!! #vamos #ESPN https://t.co/iO4tpMGC68 +09/01/2017,Sports_celeb,@RafaelNadal,Congrats Serena!!! So much joy for you!!! https://t.co/u4edTrqIbB +09/01/2017,Sports_celeb,@RafaelNadal,Order of play out and tomorrow day 3rd on Ashe #USOpen Looking forward to this new challenge! Mañana 3 de la central del @usopen. Vamos! +08/31/2017,Sports_celeb,@RafaelNadal,"2nd round tonight, warm up now & getting ready for the match. Looking forward to an exciting & electric night session @usopen #USOpen 2017" +08/31/2017,Sports_celeb,@RafaelNadal,RT @ClinicaTenis: Would you like to have the official towel of @usopen ? RT and follow us to participate!Good luck🎾😉 https://t.co/uWJMIHSS4u +08/30/2017,Sports_celeb,@RafaelNadal,@misterjonesmtl @usopen 😳 +08/30/2017,Sports_celeb,@RafaelNadal,"Guess what, had a good practice today, went out for lunch and now back at the hotel waiting for the OOP @usopen for tomorrow. Guess when" +08/29/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Rafa rolls through his R1 match vs Lajovic, 7-6, 6-2, 6-2! + +#USOpen https://t.co/SXuB3nLXt0 … https://t.co/JRYspcORyj" +08/28/2017,Sports_celeb,@RafaelNadal,. @usopen here we go! Getting ready for tomorrow. 3rd on Ashe day match! #vamos https://t.co/gSjh4gPHpE +08/27/2017,Sports_celeb,@RafaelNadal,Hoy es el cumpleaños de alguien del equipo.... Feliz cumpleaños @Charlymoya https://t.co/lOSYCmfN3B +08/27/2017,Sports_celeb,@RafaelNadal,RT @babolat: 🗽#PlayToBeWild https://t.co/irjw7m5S5i +08/26/2017,Sports_celeb,@RafaelNadal,Had great fun at the “Lotte New York Palace Invitational” @newyorkpalace #PalacePerks https://t.co/v6BTuzT80N +08/26/2017,Sports_celeb,@RafaelNadal,"@newyorkpalaceny, #PalacePerks, had great fun at the Lotte New York Palace Invitational @ Lotte… https://t.co/jrNktx7D1R" +08/26/2017,Sports_celeb,@RafaelNadal,Gettin' ready on Armstrong court. Thanks guys for coming! Big crowds #aakd #usopentennis https://t.co/HQFZ5XoXG4 +08/23/2017,Sports_celeb,@RafaelNadal,Thank you very much for 10 years of support. https://t.co/UVimx01c7N +08/21/2017,Sports_celeb,@RafaelNadal,https://t.co/H2DOia3n6r +08/21/2017,Sports_celeb,@RafaelNadal,https://t.co/klr2YRB9gi +08/17/2017,Sports_celeb,@RafaelNadal,Destrozado por lo que ha ocurrido en Barcelona! Todo mi apoyo a las familias afectadas y a la ciudad. +08/12/2017,Sports_celeb,@RafaelNadal,Entrenando en #Cincinnati! Practicing in Cincinnati! https://t.co/b7BMY4hfpo +08/03/2017,Sports_celeb,@RafaelNadal,Muchos días de alegría en el deporte español y hoy uno de los peores y más tristes para nuestro país. D.E.P. Angel… https://t.co/3cqoneoaY2 +08/03/2017,Sports_celeb,@RafaelNadal,Happy to have practiced at @rnadalacademy these days 😉👌 https://t.co/psRawiZ1N7 +07/31/2017,Sports_celeb,@RafaelNadal,Muchas felicidades @miss_belmont por tus 3 medallas en este Mundial! Enorme!! https://t.co/jcNDinHPHp +07/27/2017,Sports_celeb,@RafaelNadal,Thank you @Kia_Motors for giving me this present for #LaDecima. Really appreciate your support! https://t.co/fyYi91QlxX +07/26/2017,Sports_celeb,@RafaelNadal,Mucha fuerza Angel Nieto. Estamos todos contigo. Ánimos +07/24/2017,Sports_celeb,@RafaelNadal,Great practice today with @GrigorDimitrov at @RNadalAcademy https://t.co/sVHEr4ofTi +07/21/2017,Sports_celeb,@RafaelNadal,RT @babolat: We are @babolat. #PlayToBeWild https://t.co/EXTY1R3LdS +06/22/2018,Sports_celeb,@GarethBale11,🙌🏻 @edsheeran https://t.co/M0Li9rWh3H +06/21/2018,Sports_celeb,@GarethBale11,Great food as always at @ElevensBarGrill with the big man @taulupe 👌🏼🍔🍕 https://t.co/RbjcqTy7QZ +06/21/2018,Sports_celeb,@GarethBale11,@WishShopping keeping us occupied on our summer's off! #Wish #timeonyourhands https://t.co/MxFcTHMjNk +06/17/2018,Sports_celeb,@GarethBale11,Great few days of golf. Thanks Celtic Manor https://t.co/onG0OrrSrL +06/14/2018,Sports_celeb,@GarethBale11,Always a privilege to play a round at the #THEPLAYERS iconic Stadium Course @TPCSawgrass. Thanks to @PGATOUR for th… https://t.co/SXzEux28CN +06/14/2018,Sports_celeb,@GarethBale11,@TyrrellHatton @TPCSawgrass Sorry @TyrrellHatton 🤣 but all good on the 17th 👌🏼 Good luck at Shinnecock! https://t.co/6DE3x7vVK9 +06/14/2018,Sports_celeb,@GarethBale11,@LukeDonald @TPCSawgrass @LukeDonald was just happy to hit that green and make par! 😅 https://t.co/RunRhrr0mK +06/13/2018,Sports_celeb,@GarethBale11,@jackwhitehall @YouTube I’m ready 😂 #TrainingDays https://t.co/pxS9ohJqQj +06/12/2018,Sports_celeb,@GarethBale11,"I had some time on my hands, so picked up a new hobby. Thanks @WishShopping #timeonyourhands https://t.co/mXepTKgFvG" +06/08/2018,Sports_celeb,@GarethBale11,Got myself a new summer job. Thanks @WishShopping ! https://t.co/vS7HzE2nf2 +06/06/2018,Sports_celeb,@GarethBale11,"The Hustle and Grind off the pitch was finally executed in the second half. Always fit, always scoring with my… https://t.co/iZDV2MMCXv" +06/05/2018,Sports_celeb,@GarethBale11,Thanks to Wentworth for a great day playing the West course this afternoon. https://t.co/o17inUisgf +06/02/2018,Sports_celeb,@GarethBale11,"One week later and I’m still buzzing about those #X18 goals! 💥🎯 +An unforgettable night and the best debut I’ve had… https://t.co/U9ECH4Joha" +05/31/2018,Sports_celeb,@GarethBale11,Google Translate ist eine wunderbare Sache 🤣🤣 https://t.co/V3Pq8hx7K0 +05/31/2018,Sports_celeb,@GarethBale11,Muchas Felicidades Lucas 👶🏻 https://t.co/Tzz8boXaBc +05/29/2018,Sports_celeb,@GarethBale11,New @adidasfootball kits for 2018/19. Inspired to keep creating @realmadrid history! #HereToCreate… https://t.co/CJis1E5rcr +05/27/2018,Sports_celeb,@GarethBale11,"Right height, perfect angle, it all happened in a split-second. #InnovateYourGame https://t.co/DYji9sEvzl" +05/27/2018,Sports_celeb,@GarethBale11,Proud to create history with this great club @realmadrid ! 🏆 That goal last night was one of my best ever.… https://t.co/v0HQ8NSIrh +05/27/2018,Sports_celeb,@GarethBale11,Last night ⚽👌🏼 https://t.co/3FZQyL74VV +05/26/2018,Sports_celeb,@GarethBale11,🏆🏆🏆🏆 in 5⃣ #HalaMadrid https://t.co/YENvZ5DH1R +05/24/2018,Sports_celeb,@GarethBale11,Few days before the #UCLFinal show in Kyiv … Throwback on some of the greatest goals of the season. Enjoy! https://t.co/ZPnWgEcTKP +05/24/2018,Sports_celeb,@GarethBale11,My 4th Champions League Final with @adidasfootball and @realmadrid. Ready for the big stage with #X18!… https://t.co/RvpcMPBfXY +05/19/2018,Sports_celeb,@GarethBale11,Not the result we wanted to finish La Liga. One more game to go now .. ⚽ https://t.co/pss1CI8Iy7 +05/12/2018,Sports_celeb,@GarethBale11,⚽️⚽️ https://t.co/XmdCSY85Gj +05/11/2018,Sports_celeb,@GarethBale11,"The purest test in golf!! the famous island green – #theplayers Championship is under way, I took the PGA Tour chal… https://t.co/ePrwvIJcru" +05/10/2018,Sports_celeb,@GarethBale11,I've teamed up with the @PGATOUR to take on the Mug Challenge ahead of #ThePlayers Championship this week. Follow a… https://t.co/whG0nG9xLS +05/10/2018,Sports_celeb,@GarethBale11,"At least they recognised me @jackwhitehall 😂 +Out now: https://t.co/mnkIDLxdji #TrainingDays https://t.co/Tnk3wi0Gz5" +05/08/2018,Sports_celeb,@GarethBale11,We are delighted to welcome a baby boy into our family this morning. Axel Charles Bale 08.05.18 👶🏻💙 https://t.co/dFbHNdFwnH +05/06/2018,Sports_celeb,@GarethBale11,Tough point away from home tonight! Got to keep pushing on ⚽ https://t.co/wrCDi2BafY +05/01/2018,Sports_celeb,@GarethBale11,We are off to Kyivvv!!!! ✈️🏆 https://t.co/5vwFEu13xo +04/28/2018,Sports_celeb,@GarethBale11,3 points 👌🏼⚽ https://t.co/vaKMkfzVA9 +04/13/2018,Sports_celeb,@GarethBale11,Everyday is a challenge. Make your day count. @AltitudeMask #altitudemask #areyouawinner https://t.co/7TM7fQ2rgN +04/08/2018,Sports_celeb,@GarethBale11,"Not the result we are after today, but looking forward to Wednesday #HalaMadrid https://t.co/Yogdkp7IO7" +04/05/2018,Sports_celeb,@GarethBale11,Another level!! Watch me run the game in #AlphaBOUNCE BEYOND #CREATEDWITHADIDAS @adidasrunning #ad https://t.co/cyRbvUkb0Z +03/31/2018,Sports_celeb,@GarethBale11,Great win away from home! All focus now to the Champions League ⚽⚽ https://t.co/3TxGMmoIMY +03/29/2018,Sports_celeb,@GarethBale11,Putting the #AlphaBOUNCE BEYOND to the test! Check it out for yourself!! https://t.co/cRIY3Nljh5 #CREATEDWITHADIDAS… https://t.co/FVQMwgD5u6 +03/22/2018,Sports_celeb,@GarethBale11,Unbelievable reception here in China and to see so many Welsh Fans make the trip. Very proud to break Ian’s record… https://t.co/OrBVhnsbV9 +03/21/2018,Sports_celeb,@GarethBale11,"Check out my incredible Southwest Greens®️ 3 Hole Course, built for me by @SWGConstruction and @SWGreensUK, designe… https://t.co/EH9Sg4Jl9V" +03/18/2018,Sports_celeb,@GarethBale11,Good win again tonight!! Vamos equipo ⚽ https://t.co/beo9FbZqgZ +03/09/2018,Sports_celeb,@GarethBale11,Baby number 3 coming soon 👶🏻🍼 https://t.co/PftWCLVy2B +03/08/2018,Sports_celeb,@GarethBale11,"Supporting International Women’s Day today. Something very important to me personally, raising 2 amazing daughters… https://t.co/D49qt47n1F" +03/07/2018,Sports_celeb,@GarethBale11,"Good win last night, had to get the job done! Looking forward now to the next round 🙌🏻 https://t.co/UpkRqk7ZIt" +03/01/2018,Sports_celeb,@GarethBale11,"Alba’s representing over here in Madrid! Happy St David’s day everyone. Dydd Gŵyl Dewi Sant Hapus +#welshandproud https://t.co/HQkKl3UmJ4" +02/24/2018,Sports_celeb,@GarethBale11,+3 💪🏻 #halamadrid https://t.co/MgHFLCDz5a +02/20/2018,Sports_celeb,@GarethBale11,"Good session today at training, ready for tomorrow 💪🏻 https://t.co/94AM7zqt4l" +02/19/2018,Sports_celeb,@GarethBale11,What a game last night! 3-5 💪🏼 #HalaMadrid https://t.co/eYgCbPUI7H +02/14/2018,Sports_celeb,@GarethBale11,Great win in front of the home fans! Still a lot of work to be done but onto the second leg to finish the job 💪🏻⚽ https://t.co/ubZe5M0xPX +02/13/2018,Sports_celeb,@GarethBale11,"Best wishes @RyanMason! Good luck for the future, it was a pleasure to play along side you! https://t.co/PvoD4YDNyI" +02/05/2018,Sports_celeb,@GarethBale11,Happy Birthday @Cristiano 🎉 https://t.co/TGNFTQwAW5 +01/30/2018,Sports_celeb,@GarethBale11,"Stamina is key to my game, +@AltitudeMask always ensures my fitness level and endurance is at its best.… https://t.co/IZV9CNpM09" +01/27/2018,Sports_celeb,@GarethBale11,Good win away from home. Vamos equipo!! 💪🏼 https://t.co/bvapgs8aZM +01/21/2018,Sports_celeb,@GarethBale11,Great performance today! We need to work on this and keep improving ⚽⚽ #HalaMadrid https://t.co/qX47s8csdI +01/18/2018,Sports_celeb,@GarethBale11,Great win at the end away to Leganes 🙌🏻 Still a lot of work to do in the second leg #HalaMadrid https://t.co/ov08cdGCrS +01/15/2018,Sports_celeb,@GarethBale11,"Tragic news about Cyrille Regis. Helped me alot when i was younger and was a great man! +My thought are with his fam… https://t.co/5hHaWFq13U" +01/07/2018,Sports_celeb,@GarethBale11,Not the result we were after tonight! Good to be back helping the team but need to keep working and keep improving https://t.co/Sz8tjhVKOd +01/07/2018,Sports_celeb,@GarethBale11,Preparations done ✅ Vigo tonight💪🏻⚽ #HalaMadrid https://t.co/BerslRFPMj +01/04/2018,Sports_celeb,@GarethBale11,Very happy to kick 2018 off with the win! ⚽ #HalaMadrid https://t.co/sh4V0H890s +12/19/2017,Sports_celeb,@GarethBale11,Happy Birthday @Benzema ! What a few years it’s been 🏆🎉 https://t.co/VCwzYxXCcj +12/16/2017,Sports_celeb,@GarethBale11,🏆 #Champions #ClubWC https://t.co/KHfHYIdzOk +12/13/2017,Sports_celeb,@GarethBale11,"Loved being back on the pitch tonight, tough win but always good to grab a goal ⚽ https://t.co/w9dxTsUKah" +12/11/2017,Sports_celeb,@GarethBale11,No easy draw in the @ChampionsLeague last 16. Looking forward to getting out there and more moments like these 🏆⚽ https://t.co/wsheVPOXXX +12/09/2017,Sports_celeb,@GarethBale11,What a game!! Fantastic result in front of the home fans 👌🏻⚽ #HalaMadrid https://t.co/Wb7ShxAgVD +12/08/2017,Sports_celeb,@GarethBale11,🏆🏆🏆🏆🏆Congratulations @Cristiano https://t.co/u3QbKk0UZ7 +11/28/2017,Sports_celeb,@GarethBale11,"Really enjoyed being back out there, and even better to get through to the next round 🙌🏻#HalaMadrid https://t.co/qzvvm9bg1U" +11/28/2017,Sports_celeb,@GarethBale11,"RT @realmadrid: 👍🚌 ¡Concentrados para el partido contra el @CFuenlabradaSAD! + +#RMCopa | #HalaMadrid https://t.co/aIYsqxrKI9" +11/27/2017,Sports_celeb,@GarethBale11,"Great to be back in training with the guys, been a tough month but working hard to get back out there 🔋🎯⚽… https://t.co/J8cykB8vR2" +11/22/2017,Sports_celeb,@GarethBale11,"RT @UNICEF: Thank YOU... + +🔵 For saving children’s lives. + +🔵 For defending children’s rights. + +🔵 For helping children fulfill their potentia…" +11/21/2017,Sports_celeb,@GarethBale11,Great win away from home and sees us through to the next round 👌🏼 #HalaMadrid https://t.co/eqs2h0Vwhs +11/18/2017,Sports_celeb,@GarethBale11,#DiolchChris An amazing manager and a top guy! Just want to say good luck for your future and a big thank you for t… https://t.co/BGq2fTd1Tl +11/12/2017,Sports_celeb,@GarethBale11,Lest we Forget #RemembranceSunday https://t.co/5WMzzOB7lN +11/01/2017,Sports_celeb,@GarethBale11,"Good sessions this week 🏃 Good luck to the boys tonight, gutted to not be playing at Wembley but working hard to ge… https://t.co/QpTjL9fg39" +10/22/2017,Sports_celeb,@GarethBale11,Great 3 points and performance from the team tonight 💪🏻 #HalaMadrid https://t.co/oESkxDx1A3 +10/22/2017,Sports_celeb,@GarethBale11,🏃🏻⚽ https://t.co/BaC3lk4CT0 +10/17/2017,Sports_celeb,@GarethBale11,"What an atmosphere tonight! Important point, can't wait for the game in Wembley ⚽ #HalaMadrid https://t.co/R8TJ41sqm0" +10/14/2017,Sports_celeb,@GarethBale11,Straight back to winning ways after the international break! 👏🏼⚽ https://t.co/jrbKkGKCyt +10/12/2017,Sports_celeb,@GarethBale11,Homemade sushi 🍣👌🏼 https://t.co/15JgkfIhUR +10/10/2017,Sports_celeb,@GarethBale11,"Hard loss to take last night, but couldn’t be more proud of the team, we leave with our heads held high 🐉… https://t.co/YR4U9ggrMf" +10/06/2017,Sports_celeb,@GarethBale11,"Hard fought victory for the boys, 1 more game! 🐲⚽🔴 https://t.co/AWYtjrA6Hi" +10/04/2017,Sports_celeb,@GarethBale11,"Gutted I’m not in Georgia with the team, let’s bring home another win like this one boys @FAWales 🐉… https://t.co/GHf8yA2tfs" +09/29/2017,Sports_celeb,@GarethBale11,"I need the fastest boots in the game, always. Love this new colour! 🔥👌🏼@adidasfootball #HereToCreate #X17 https://t.co/UsH7Qjt9ul" +09/28/2017,Sports_celeb,@GarethBale11,"RT @Dugout: WIN: a pair of boots signed by @realmadrid's @GarethBale11! ⚽️🔥 + +Enter ➡️ https://t.co/h2x9pEB4XW + +#HalaMadrid https://t.co/eJZ…" +09/27/2017,Sports_celeb,@GarethBale11,Comida increible en mi nuevo favorito restaurante en Majadahonda - Maduk! Enhorabuena mi amigo 👌🏼 https://t.co/OCCL9fDogs +09/26/2017,Sports_celeb,@GarethBale11,Great performance from the team tonight 💪🏻 happy to get on the scoresheet too ⚽#HalaMadrid #UCL https://t.co/FxVoVGmB24 +09/25/2017,Sports_celeb,@GarethBale11,All focus on tomorrow night ⚽ #UCL #HalaMadrid https://t.co/TI8XgWcut0 +09/23/2017,Sports_celeb,@GarethBale11,Good 3 points and congrats @isco_alarcon 2⃣0⃣0⃣ #halamadrid https://t.co/yroNfCqJJD +09/20/2017,Sports_celeb,@GarethBale11,Matchday #HalaMadrid 🙌🏻⚽ https://t.co/sPVGCix8Ru +09/17/2017,Sports_celeb,@GarethBale11,@aarbeloa17 VAMOS 💪🏻💪🏻💪🏻 +09/17/2017,Sports_celeb,@GarethBale11,Big win at a tricky ground ⚽👌🏼😛 https://t.co/EoFNSjr3Xn +09/15/2017,Sports_celeb,@GarethBale11,Great to meet the fans today in Madrid! #ThePulseofRealMadrid https://t.co/M0xg8ZNNyu +09/13/2017,Sports_celeb,@GarethBale11,Solid 3 points to start the #UCL campaign 👌🏼 https://t.co/ekZNzC7lsR +09/12/2017,Sports_celeb,@GarethBale11,"In Football, we stand together #EqualGame #Respect +Can't wait to kick off our @realmadrid @ChampionsLeague campaign… https://t.co/zYbUBv0qAj" +09/11/2017,Sports_celeb,@GarethBale11,WATCH me surprise youngsters in Madrid and show them how to score a @ChampionsLeague winning goal #UCL #HalaMadrid https://t.co/xUdwukKYiK +09/08/2017,Sports_celeb,@GarethBale11,"Training done, looking forward to tomorrow's game ⚽ #HalaMadrid https://t.co/XBvDcVRMIS" +09/05/2017,Sports_celeb,@GarethBale11,One step closer 🐉 https://t.co/e0f78ZOibj +09/04/2017,Sports_celeb,@GarethBale11,"Can't wait to get back out there tomorrow. Huge game, only the win will do! 🐉 https://t.co/w6dHWYFC7i" +09/02/2017,Sports_celeb,@GarethBale11,Massive 3 points! Come on boys!! 🐉 https://t.co/rbIEEIflAU +09/01/2017,Sports_celeb,@GarethBale11,RT @WayneHennessey1: Love & Support from @FAWales to the Bigman @Carl_Ikeme ❤️#teamkemes #TogetherStronger https://t.co/8COmSbSAl8 +08/30/2017,Sports_celeb,@GarethBale11,Really good to meet the fans at training yesterday. Hope you all had a great day! 😃👍🏻 https://t.co/0Sf2Z35zky +08/24/2017,Sports_celeb,@GarethBale11,Always winning with my @AltitudeMask #altitudemask #areyouawinner https://t.co/YDvWeGrV3l https://t.co/DHw6Hmm1AN +08/24/2017,Sports_celeb,@GarethBale11,#TooExcitedTo wait for the UCL draw? Let me know who you think we will be drawn against? https://t.co/HNFLinjOZr https://t.co/do7flklwiX +08/23/2017,Sports_celeb,@GarethBale11,Great to be back in front of the Bernabeu crowd and to lift the Santiago Bernabeu trophy 🏆🙌🏻 https://t.co/a1kK6FRpH3 +08/20/2017,Sports_celeb,@GarethBale11,Great to start the season with 3 points away from home! ⚽ #HalaMadrid https://t.co/aYdwV5brBY +08/17/2017,Sports_celeb,@GarethBale11,Thoughts are with everyone in Barcelona tonight 🙏🏼 +08/17/2017,Sports_celeb,@GarethBale11,Great night last night 🏆🙌🏻 Now all focus shifts towards La Liga ⚽ https://t.co/64L2WTTTM7 +08/16/2017,Sports_celeb,@GarethBale11,Vaamoosss!! Second trophy of the season and what a performance to win it with 🏆🏆#SupercopadeEspana https://t.co/wORhWXDMHu +08/14/2017,Sports_celeb,@GarethBale11,"Congratulations @JustinThomas34 Great back 9, what a way to win your first major ⛳🏆" +08/13/2017,Sports_celeb,@GarethBale11,Great team performance tonight!! Can't wait for the second leg now on Wednesday ⚽#halamadrid https://t.co/L75lqtLuvB +08/09/2017,Sports_celeb,@GarethBale11,🏆😃#halamadrid https://t.co/EAf5I4O8Ia +08/08/2017,Sports_celeb,@GarethBale11,Super Cup x 3 🏆🏆🏆👌🏼 https://t.co/hbasQtMo7r +08/08/2017,Sports_celeb,@GarethBale11,The @btsport #HardestHits..Round One.... @mrjakehumphrey 👀😂 sorry! https://t.co/jTCOWGiz2M +08/07/2017,Sports_celeb,@GarethBale11,Super Cup time 🙌🏻⚽⏱ #HalaMadrid https://t.co/76uxPR2SP6 +08/06/2017,Sports_celeb,@GarethBale11,"RT @SouthamptonFC: #OnThisDay in 2006, a 17-year-old @GarethBale11 netted his first senior goal for #SaintsFC against #DCFC! 👏 https://t.co…" +08/06/2017,Sports_celeb,@GarethBale11,Watched @usainbolt for over a decade ignite the world!! #goat #respect https://t.co/fWPyB43ECS +08/05/2017,Sports_celeb,@GarethBale11,😀💪🏻 ready for #uefasupercup https://t.co/rjlOgzkxFa +08/03/2017,Sports_celeb,@GarethBale11,Put through the ringer there @Dele_Alli 😂😂. Watch @btsport #beingdele now! https://t.co/Ngn4RMSpF5 +08/03/2017,Sports_celeb,@GarethBale11,Great fun watching @Dele_Alli in the ring. Thanks for the invite @mrjakehumphrey & watch @btsport #BeingDele from 8… https://t.co/VNRdqhr9FD +08/02/2017,Sports_celeb,@GarethBale11,My next @adidasfootball partner. Ocean Storm is here ! 🌊👟#HereToCreate #X17 https://t.co/L5rrXcmNzG +07/28/2017,Sports_celeb,@GarethBale11,"Fitness is a lifestyle, taking my @AltitudeMask wherever I go, maintaining my conditioning in all environments… https://t.co/oPU7CJBVBg" +07/27/2017,Sports_celeb,@GarethBale11,"Great to see so many fans over the past couple of weeks in LA, support has been amazing 🙌🏻 next stop Miami! https://t.co/j4hYf0gRIp" +07/25/2017,Sports_celeb,@GarethBale11,Great to see this legend in LA 🇺🇸 https://t.co/gIW3R1pZfV +07/23/2017,Sports_celeb,@GarethBale11,"First game back, all about the preparation at this stage. Good run out in front of an amazing crowd 👏🏼 #HalaMadrid https://t.co/m2P6dtk5Sm" +07/21/2017,Sports_celeb,@GarethBale11,Blue meets Blue 👀👕 Our new @adidasfootball third kit ! @realmadrid #HalaMadrid #HereToCreate https://t.co/9whfhmsG4t +07/19/2017,Sports_celeb,@GarethBale11,Training continues 👌🏼🏋🏻 https://t.co/9K5wyXac7C +07/16/2017,Sports_celeb,@GarethBale11,Enjoyed the birthday session today ⚽ Thanks to everyone for all the well wishes 🙌🏻 https://t.co/4hw3V9bgua +07/14/2017,Sports_celeb,@GarethBale11,My fifth season has begun with this great club. Can't wait to be back out there again! #HereToCreate #X17… https://t.co/7Uy3c32cLf +07/13/2017,Sports_celeb,@GarethBale11,"Good start to pre season, great to be back in LA 🇺🇸🌞⚽ https://t.co/ab38PHGwFS" +07/11/2017,Sports_celeb,@GarethBale11,Great to be back with the boys 👍🏻 LA bound ✈️⚽ https://t.co/VzOEBovW45 +07/07/2017,Sports_celeb,@GarethBale11,👍🏻🏌⛳ @TheCelticManor https://t.co/1tHmprejAR +07/04/2017,Sports_celeb,@GarethBale11,"Great to head into @elevensbargrill tonight, heres a glimpse in to what went in to making it ..… https://t.co/QLtm3vlXZa" +07/04/2017,Sports_celeb,@GarethBale11,Another great year at the #CelebCup. Shame about the Welsh result 😂 But an unbelievable event and all for a great c… https://t.co/2gxB8t8Mup +07/03/2017,Sports_celeb,@GarethBale11,"Make sure you pick up a copy of Don’t Take Me Home, on shelves today. Relive our unmissable summer… https://t.co/t112G2oock" +06/30/2017,Sports_celeb,@GarethBale11,Back again #celebcup 🏌 https://t.co/j9jZolfrmZ +06/27/2017,Sports_celeb,@GarethBale11,An #SB2K inspired tour to @BakersBay. What a day! @RickieFowler @JustinThomas34 @JordanSpieth @SmylieKaufman10 https://t.co/9ACZ2acYbZ +06/24/2017,Sports_celeb,@GarethBale11,Wentworth 🌞⛳ https://t.co/up59GjBcO0 +06/23/2017,Sports_celeb,@GarethBale11,"Training with my @AltitudeMask ahead of preseason. Huge year for club and country, find out more at… https://t.co/KTvVT9ywpR" +06/15/2017,Sports_celeb,@GarethBale11,What a night in Cardiff for the #UCLFinal. Glad @NissanEurope managed to get it there on time! #TooExcitedToo https://t.co/Pb1fjxO0rs +06/14/2017,Sports_celeb,@GarethBale11,"And to end the day, here’s our new @adidasfootball away shirt. 🙌🏽 Can’t wait for the new season with @realmadrid !… https://t.co/FSIPwZ4dia" +06/14/2017,Sports_celeb,@GarethBale11,At home we create in white. Our 2017/18 @adidasfootball home shirt. 👌🏽💪🏼 @realmadrid #HereToCreate #HalaMadrid https://t.co/qOPebv2swz +06/14/2017,Sports_celeb,@GarethBale11,At @realmadrid we play to create history. Let’s do the same with our new @adidasfootball kits! #HereToCreate… https://t.co/iH9YaOYpAQ +06/11/2017,Sports_celeb,@GarethBale11,"Solid point away from home, boys played well and keeps us in the running! #TogetherStronger" +06/08/2017,Sports_celeb,@GarethBale11,"Made some incredible memories this season! But sad to see the last @SpursOfficial game at WHL, will always be a spe… https://t.co/K94pNGCXjm" +06/07/2017,Sports_celeb,@GarethBale11,Can't wait to compete in the @TheCelticManor #CelebCup again! Hopefully we can bring it home for Wales 🏆🐉 https://t.co/38BoLAINvp +06/05/2017,Sports_celeb,@GarethBale11,"Awful news, so sorry to hear about Cheick Tioté, my thoughts are with his family and friends" +06/05/2017,Sports_celeb,@GarethBale11,"3 🏆 in 4 years, what a team to be part of! Thank you to all of the fans for their support this year 👏🏻🙌🏻 #HalaMadrid https://t.co/Tf1PcYYMJA" +06/04/2017,Sports_celeb,@GarethBale11,Incredible scenes at the Bernabéu 🙌🏻 Gracias Madridistas 🎉🎉🎉 https://t.co/uz4ESN3ikx +06/04/2017,Sports_celeb,@GarethBale11,🏆🏆🎉💯 https://t.co/BRxTbFCIJH +06/04/2017,Sports_celeb,@GarethBale11,🙌🏻🙌🏻🙌🏻🙌🏻 #halamadrid https://t.co/oNMe77vEzc +06/04/2017,Sports_celeb,@GarethBale11,"2014 🏆2016 🏆2017🏆 +Proud to create @realmadrid history again, always with @adidasfootball 👟 +I'm just getting started… https://t.co/5WsVGcpbAC" +06/03/2017,Sports_celeb,@GarethBale11,🏆🏆🏆 https://t.co/mBV72PqvWa +06/03/2017,Sports_celeb,@GarethBale11,"Thank you for the incredible welcome, fans are amazing 🙌🏻 Gracias, Diolch, 🐉🇪🇸 #HalaMadrid #APorLa12 🏆 https://t.co/Ru2ULLhmAJ" +06/03/2017,Sports_celeb,@GarethBale11,#TooExcitedTo wait for the #UCLFinal? Watch the trophy go through Cardiff live today via @NissanEurope at 3pm https://t.co/22od6A3e91 +06/02/2017,Sports_celeb,@GarethBale11,"Behind the scenes @Dugout for @btsport #SportInFocus, watch tonight on BT Sport 2 at 20.30. Full BTS… https://t.co/e3ksTLyHTE" +06/02/2017,Sports_celeb,@GarethBale11,Cardiff here we come! 🐉⚽ #HalaMadrid #APorLa12 🏆 https://t.co/Q4mPtiSIb3 +06/01/2017,Sports_celeb,@GarethBale11,"The #UCL final awaits. +The ultimate game. +The ultimate record. +I am #HeretoCreate it. +#X17 https://t.co/LoDux4o82u" +06/01/2017,Sports_celeb,@GarethBale11,Stepping things up in training. 2 more days #UCLFinal https://t.co/HK6bhASQV7 +05/31/2017,Sports_celeb,@GarethBale11,Controlling my breathing is key to maximise the work out and increase endurance threshold. @AltitudeMask https://t.co/OM3I9Vljvv +05/31/2017,Sports_celeb,@GarethBale11,3 days #UCLFinal https://t.co/ovZ44piMRH +05/30/2017,Sports_celeb,@GarethBale11,"Congratulations @danleydon ,winner of @btsport #ChampionsDraw and for retaining the crown!! https://t.co/mVoaqMFtoE" +05/27/2017,Sports_celeb,@GarethBale11,⚽️☀️ https://t.co/cLpNx2Iruf +05/26/2017,Sports_celeb,@GarethBale11,You might be wondering how I’m floating? It’s not meditation … it’s the power of the perfect sleep on a SIMBA mattr… https://t.co/fMIQMQeuJx +05/26/2017,Sports_celeb,@GarethBale11,"Back in training with the boys, all focus towards Cardiff ⚽ https://t.co/hJl82sg9Qx" +05/25/2017,Sports_celeb,@GarethBale11,"Follow @sportconvo for a chance to win this signed cap by me. +Terms and conditions on https://t.co/fFtOI8SkSs https://t.co/xTueyprdNp" +05/24/2017,Sports_celeb,@GarethBale11,Fully focused on my fitness and recovery with my @AltitudeMask #altitudemask #areyouawinner https://t.co/YPGNpz1bwO +05/23/2017,Sports_celeb,@GarethBale11,Truly awful news to wake up too!! Thoughts are with all affected in Manchester 🙏🏻 https://t.co/6HStCC7Pc0 +05/22/2017,Sports_celeb,@GarethBale11,Incredible turn out at today's parade! 👏🏻🙌🏻😀🎉🏆 https://t.co/eLBtGQC9AR +05/22/2017,Sports_celeb,@GarethBale11,What an amazing night! Thank you to all the Madridistas #33 #Champions 🙌🏻👏🏻🎉 https://t.co/LG6uhExRMs +05/21/2017,Sports_celeb,@GarethBale11,🇪🇸🏆 La Liga Champions! #Halamadrid https://t.co/Ijqozx9mS2 +05/17/2017,Sports_celeb,@GarethBale11,"Great result!! One step closer, vaaaamos 💪🏼 https://t.co/pKyxdPgs4x" +05/14/2017,Sports_celeb,@GarethBale11,One step closer to our goal! Fans were incredible tonight 🙌🏻 #vamos https://t.co/9B8Y95fRmd +05/12/2017,Sports_celeb,@GarethBale11,Happy Birthday my friend!! @MarceloM12 👍🎂 https://t.co/EUtAVEGTXi +05/11/2017,Sports_celeb,@GarethBale11,So proud of the team last night and now continuing my recovery to get back out on the pitch! #HalaMadrid https://t.co/1YrhGuitrT +05/10/2017,Sports_celeb,@GarethBale11,Cardiff here we come!! #HALAMADRID https://t.co/QqetlUOnwC +05/10/2017,Sports_celeb,@GarethBale11,Goaaalllllll #halamadrid +05/10/2017,Sports_celeb,@GarethBale11,Let's finish the job tonight. Come on boys!! #HalaMadrid +05/09/2017,Sports_celeb,@GarethBale11,"RT @adidasUK: 🏆 is coming to town. +Stay tuned to get involved. 👀 https://t.co/ZAFX5unQaF" +05/06/2017,Sports_celeb,@GarethBale11,Great first half and good win away from home 👌🏼@realmadrid #halamadrid https://t.co/H0x7npZKBe +05/06/2017,Sports_celeb,@GarethBale11,"Good luck to the boys tonight, gutted not to be on the pitch but working hard on recovery #halamadrid" +05/02/2017,Sports_celeb,@GarethBale11,What an all round performance! And that man again @Cristiano ⚽⚽⚽ #HalaMadrid https://t.co/hlAjXS0o3M +04/29/2017,Sports_celeb,@GarethBale11,What a fight! Congratulations @anthonyfjoshua and huge respect to @Klitschko 🥊 https://t.co/sbu6EpNdWF +04/29/2017,Sports_celeb,@GarethBale11,Great character shown again from the boys!! 💪🏼 #HalaMadrid https://t.co/JxHGwRcqGM +04/28/2017,Sports_celeb,@GarethBale11,Looking forward to tomorrow night's fight. Good luck @anthonyfjoshua #keepmoving @AltitudeMask #areyouawinner 💪🏼🥊 https://t.co/mTCWxqrcbp +04/25/2017,Sports_celeb,@GarethBale11,No matter what the conditions are I'm always putting in the work and recovering with my @AltitudeMask #altitudemask… https://t.co/fom0Jrr9sS +04/22/2017,Sports_celeb,@GarethBale11,💪🏼 #ElClasico https://t.co/uWQoh9GB4K +04/18/2017,Sports_celeb,@GarethBale11,Vaamosss 💪🏻💪🏻What a performance! Semi finals!! 🙌🏻🙌🏻🙌🏻 #halamadrid https://t.co/mLfw3lK4DD +04/17/2017,Sports_celeb,@GarethBale11,"Proud to be an ambassador for @SimbaSleep , who've developed the most advanced airline seat 😴😴… https://t.co/Zp7WyVtG3t" +04/15/2017,Sports_celeb,@GarethBale11,Kept going until the end again and never gave up! #halamadrid https://t.co/w8Z1dmGbUn +04/14/2017,Sports_celeb,@GarethBale11,"Watch the world premiere of Nissan’s new TV ads where my substitute, Ana, played alongside @aguerosergiokun https://t.co/xIi2DmzoEk" +04/11/2017,Sports_celeb,@GarethBale11,✈️👍🏻🇩🇪 #UCL https://t.co/dA5xMY0xCk +04/10/2017,Sports_celeb,@GarethBale11,Watch to find out how I got on as I attempted to re-create my @ChampionsLeague free kick for @btsport's… https://t.co/3uzqtoMvxc +04/10/2017,Sports_celeb,@GarethBale11,What a #Masters!! Huge congratulations to my friend @TheSergioGarcia unbelievable stuff! ⛳🙌🏻 https://t.co/GVezsDkGov +04/09/2017,Sports_celeb,@GarethBale11,Great evening relaxing with #masters before champions league this week!! Good luck @TheSergioGarcia @JustinRose99 ⛳😂 https://t.co/Q5D1AMJBaZ +04/08/2017,Sports_celeb,@GarethBale11,"Disappointing to concede so late on, boys played well! #halamadrid https://t.co/DYGjRqhraT" +04/07/2017,Sports_celeb,@GarethBale11,Good luck guys! 👍🏻 https://t.co/utD7cyiJjO +04/07/2017,Sports_celeb,@GarethBale11,Delighted to announce my partnership with @AltitudeMask the world leading resistance mask brand #areyouawinner… https://t.co/AcP9tUh7WQ +04/06/2017,Sports_celeb,@GarethBale11,This #X16 boot is all about SPEED! Can’t wait to get out there! #NeverFollow @adidasfootball https://t.co/Kfc7oUfjNL +04/05/2017,Sports_celeb,@GarethBale11,3 points away from home 👌🏼 #HalaMadrid https://t.co/Qx7OoJNblD +04/02/2017,Sports_celeb,@GarethBale11,Really good win against a tough Alaves team! Looking forward to the midweek game now 💪🏼#HalaMadrid https://t.co/SKjxXodv2D +03/30/2017,Sports_celeb,@GarethBale11,Special memories with a great captain. Happy Birthday @SergioRamos! #ElCapitán https://t.co/1pWvTfq6hn +03/18/2017,Sports_celeb,@GarethBale11,Tough 3 points away in Bilbao 💪🏼Now time to focus on the international break! ✈️ #halamadrid https://t.co/zArffasSwP +03/17/2017,Sports_celeb,@GarethBale11,A deadly famine has been declared in parts of East Africa. Visit @unicef_uk appeal and help us in saving lives -… https://t.co/AF5axvQ9LQ +07/02/2018,Sports_celeb,@MoSalah,@LFC https://t.co/GsNxSQtD0V +07/01/2018,Sports_celeb,@MoSalah,Some might think it’s over but it isn’t over. There needs to be change. +06/20/2018,Sports_celeb,@MoSalah,الجميع في منتخب مصر متكاتف ولا يوجد أي خلاف على الإطلاق بيننا.. نحترم بعضنا البعض والعلاقة على أفضل وجه. +06/18/2018,Sports_celeb,@MoSalah,"Ready for tomorrow. +100 million strong.🇪🇬🇪🇬🇪🇬 @adidasfootball #HereToCreate https://t.co/03BI9CQbgI" +06/15/2018,Sports_celeb,@MoSalah,كل عام والجميع بخير وعيد سعيد علينا جميعًا... +06/12/2018,Sports_celeb,@MoSalah,I wear these for 100 million Egyptians.@adidasfootball https://t.co/lpbW4b04Mh +06/10/2018,Sports_celeb,@MoSalah,Russia here we are😅 https://t.co/d82COl9vzP +06/08/2018,Sports_celeb,@MoSalah,🕺🏽🕺🏽 https://t.co/D3OjzbzsOK +06/08/2018,Sports_celeb,@MoSalah,"RT @lequipe: Mohamed Salah : «Le statut de héros, je dois le gérer depuis longtemps» + +Devenu phénomène mondial, il raconte son parcours et…" +06/07/2018,Sports_celeb,@MoSalah,🧢🧢 https://t.co/bC4tXnFvzR +06/06/2018,Sports_celeb,@MoSalah,🌊🌊 https://t.co/KztZQ0Hnim +06/03/2018,Sports_celeb,@MoSalah,Good feelings... https://t.co/Jhyd2kYVKI +05/29/2018,Sports_celeb,@MoSalah,"@brfootball +#NewYork #TimesSquare https://t.co/cij7zorbh4" +05/27/2018,Sports_celeb,@MoSalah,"It was a very tough night, but I'm a fighter. Despite the odds, I'm confident that I'll be in Russia to make you al… https://t.co/8dEez837V7" +05/24/2018,Sports_celeb,@MoSalah,#HereToCreate https://t.co/Ij7rBgvziZ +05/20/2018,Sports_celeb,@MoSalah,🧐🧐 https://t.co/REESq5bg2t +05/19/2018,Sports_celeb,@MoSalah,@ElHadary اكونت الحضري ولا تريزيجيه ده 🤷🏽‍♂️دا مرض وانتشر ربنا يحفظنا 🤣 +05/19/2018,Sports_celeb,@MoSalah,https://t.co/YjEJ21yxuB. Good luck tomorrow guys! +05/19/2018,Sports_celeb,@MoSalah,🤪🤪🤪 @Uber_Egypt https://t.co/mIyU0XLnqX +05/18/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬 https://t.co/fBBXSL9WjY +05/18/2018,Sports_celeb,@MoSalah,🙋🏻‍♂️🙋🏻‍♂️ https://t.co/EAu0F7KsLu +05/17/2018,Sports_celeb,@MoSalah,@theritzlondon 😀 https://t.co/0WkQM9bwbA +05/16/2018,Sports_celeb,@MoSalah,كل عام وأنتم بخير ورمضان كريم ربنا يعيده علينا بالخير والسعادة علينا جميعًا... +05/16/2018,Sports_celeb,@MoSalah,🙄🙄 https://t.co/LcUIy7gwSn +05/14/2018,Sports_celeb,@MoSalah,😀😀 https://t.co/CWGO5EuU6J +05/14/2018,Sports_celeb,@MoSalah,@ElShenawy كل سنة وانت طيب يا أعز الناس 🤗 +05/13/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬🇪🇬 https://t.co/KYOs14wMTG +05/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: Amazing @MoSalah! + +A new record for #PL goals in a 38-match season https://t.co/VeMk03Lumg" +05/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: 📸 Mo Salah - #PL record breaker + +👏👏👏 https://t.co/UncKNGp2B3" +05/13/2018,Sports_celeb,@MoSalah,"RT @OfficialFPL: 303pts - SALAH (17/18) +295pts - Suarez (13/14) +284pts - Lampard (09/10) +283pts - Ronaldo (07/08) + +@MoSalah sets a new rec…" +05/13/2018,Sports_celeb,@MoSalah,Golden Boot? Come here to daddy 😂 https://t.co/GasYbIerEm +05/13/2018,Sports_celeb,@MoSalah,@GaryLineker @Cristiano @alanshearer @LuisSuarez9 I told you I would 😀 +05/12/2018,Sports_celeb,@MoSalah,@AhmedLSaadany @nabilelhalfawy لا انا هطلع من تويتر قبل متقولي خده صلحه يا صلاح 🙄😀 +05/12/2018,Sports_celeb,@MoSalah,@AhmedLSaadany @nabilelhalfawy اه بس أكيد الموتسيكل ده مبيمشيش علي الأرض زي الموتسيكلات العادية🤣😘 +05/12/2018,Sports_celeb,@MoSalah,🙄⚽️ https://t.co/obIxK3Al6v +05/11/2018,Sports_celeb,@MoSalah,🕴🕴 https://t.co/mfUrSYPBvv +05/10/2018,Sports_celeb,@MoSalah,Brace! Still time for a hatrick tonight? 🙃 https://t.co/G7xmEzEU66 +05/10/2018,Sports_celeb,@MoSalah,🙋🏻‍♂️🙋🏻‍♂️ https://t.co/oP9H87W9IU +05/05/2018,Sports_celeb,@MoSalah,❤️❤️😍🤣 https://t.co/IGWXwb1t3o +05/04/2018,Sports_celeb,@MoSalah,Happy birthday bro...@OfficialRadja https://t.co/VeBMk6RJ0r +04/30/2018,Sports_celeb,@MoSalah,Very fortunate to be adding another award in my first season playing with this great group of players! Lovren did y… https://t.co/f7ETjdNotg +04/29/2018,Sports_celeb,@MoSalah,انا بس صعبان علّيا الهاشتاج 😢🤣 +04/29/2018,Sports_celeb,@MoSalah,أنا بشكر كل الناس على دعمكم الكبير النهاردة .. في الحقيقة رد الفعل كان غير طبيعي وأسعدني جدًا تفاعلكم.. احنا أخدنا… https://t.co/d02c0VEWnD +04/29/2018,Sports_celeb,@MoSalah,بكل أسف طريقة التعامل فيها إهانة كبيرة جدًا.. كنت أتمنى التعامل يكون أرقى من كدا... +04/27/2018,Sports_celeb,@MoSalah,@Yallakoranow 🙏🏼😉 +04/27/2018,Sports_celeb,@MoSalah,https://t.co/JecshaAU6F +04/27/2018,Sports_celeb,@MoSalah,@Yallakoranow مش باين... +04/26/2018,Sports_celeb,@MoSalah,So proud of how far this project has reached #SayNoToDrugs https://t.co/CDKYtsX4MK +04/25/2018,Sports_celeb,@MoSalah,I wish you all the best and I'm confident you'll be back even stronger than before.@Alex_OxChambo https://t.co/1KRk53ISjH +04/23/2018,Sports_celeb,@MoSalah,شكرًا لكل الناس على الرسائل الجميلة من امبارح.. وسعيد جدًا بكلامكم واهتمامكم المتواصل.. ودائمًا سند لبعض وبأعتذر لو… https://t.co/3lGeVdSFQ5 +04/23/2018,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/NGXrUg7UQi +04/23/2018,Sports_celeb,@MoSalah,@ElNennY ايه ده هو تريزجيه اللي بيكتبلك ولا ايه!!!🙄 +04/23/2018,Sports_celeb,@MoSalah,Truly honoured by this prize which was awarded to me by colleagues - very special day😍😍 https://t.co/7mrFN0lHsP +04/22/2018,Sports_celeb,@MoSalah,Ready for the party...@RamyCol https://t.co/tJ2Bcq4oY4 +04/22/2018,Sports_celeb,@MoSalah,الف سلامه يا نينو ان شاء الله بسيطه 🙏🏼@ElNennY +04/21/2018,Sports_celeb,@MoSalah,@Hegazi لا انا بهزر .هتفضل الغالي دايما يا حجوووو😍😍😘 +04/21/2018,Sports_celeb,@MoSalah,@TantawiPress مفيش فايده والله ... +04/21/2018,Sports_celeb,@MoSalah,Full support...✌🏼 https://t.co/tuGv4lTd2v +04/21/2018,Sports_celeb,@MoSalah,@Hegazi فاول 🙄🙄لا يا أحمد انت كنت بتضرب جامد النهارده مش عارف ليه 🙄😃واللي في القلب في القلب برده انا عارف 😍 +04/21/2018,Sports_celeb,@MoSalah,@Hegazi انت بتضرب في الماتش وتيجي هنا تقولي happy to see my brother ..😄😄brother مين بقا ايدك تقيله اوي 👊🏼 +04/20/2018,Sports_celeb,@MoSalah,RT @RamyCol: #MSCommercialLTD https://t.co/buQHRdGRw7 +04/19/2018,Sports_celeb,@MoSalah,He is always talking 😏 https://t.co/hd5OHA1t8u +04/19/2018,Sports_celeb,@MoSalah,@FilGoal اتاكدو بس ان المشجعه بخير وكله تمام 😃 +04/19/2018,Sports_celeb,@MoSalah,"RT @FilGoal: نجاح محمد صلاح مع ليفربول أصبح جزءًا من نجاح أي مصري، حتى في حفل التخرج 👏 + +حفل تخرج كلية الهندسة لجامعة بورسعيد بـtheme محمد ص…" +04/19/2018,Sports_celeb,@MoSalah,@Trezeguet ارحمنا أبوس ايدك 😃 +04/18/2018,Sports_celeb,@MoSalah,https://t.co/UBzsfXDg5y +04/17/2018,Sports_celeb,@MoSalah,🤝🤝 https://t.co/9hokKfxPNI +04/16/2018,Sports_celeb,@MoSalah,https://t.co/Qg5F2vc8sy +04/15/2018,Sports_celeb,@MoSalah,Come back stronger.💪🏼🙏🏼 https://t.co/mWwHWXTcKx +04/15/2018,Sports_celeb,@MoSalah,Never forgotten. https://t.co/MUjwwMZmCu +04/14/2018,Sports_celeb,@MoSalah,40 ✖️⚽️ https://t.co/zy13g56PeM +04/13/2018,Sports_celeb,@MoSalah,"RT @cnni: EXCLUSIVE: ""We have the emotion. We can do it."" + +Mohamed Salah tells CNN that Liverpool can win the Champions League this season.…" +04/13/2018,Sports_celeb,@MoSalah,RT @ASRomaEN: Respect. 👏 https://t.co/TpKLcgmh02 +04/13/2018,Sports_celeb,@MoSalah,@ASRomaEN 100% +04/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: 🏆 November +🏆 February +🏆 March + +@22mosalah is the 1st player to win @EASPORTSFIFA Player of the Month 3 times in the sam…" +04/13/2018,Sports_celeb,@MoSalah,"RT @LFC: He's done it again… 🏆🏆🏆 + +@22mosalah has become the first-ever player to win the @PremierLeague Player of the Month award three tim…" +04/12/2018,Sports_celeb,@MoSalah,RT @BeckyCNN: Coming soon on @cnni my day in the life of #Liverpool FC superstar and all-around amazing lad @22mosalah. Stay tuned for the… +04/12/2018,Sports_celeb,@MoSalah,Coming soon on CNN... https://t.co/GrMfq5VPs4 +04/11/2018,Sports_celeb,@MoSalah,Wooooooow really ? +04/11/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/jIa6x93LYs +04/10/2018,Sports_celeb,@MoSalah,@Ahmed1Afify منا بدعيلك يجيلك نوم اهوه 🤣😍 +04/10/2018,Sports_celeb,@MoSalah,@Ahmed1Afify يارب يجيلك نوم 🤣😘 +04/09/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/mH7hRlYar2 +04/09/2018,Sports_celeb,@MoSalah,Pepsi ... https://t.co/IQDz7AiagJ +04/06/2018,Sports_celeb,@MoSalah,"RT @Yallakoranow: علشان شبهنا..بقينا احنا عزوته وهو أملنا ❤ + +📸 | مصطفى هشام https://t.co/rHNGvUbTgX" +04/06/2018,Sports_celeb,@MoSalah,RT @SaraNou59280652: @LFC @22mosalah https://t.co/hnXosPmkkj +04/06/2018,Sports_celeb,@MoSalah,https://t.co/ruxZHsw1SW +04/05/2018,Sports_celeb,@MoSalah,RT @samehaboelkhier: إستقبال ملكي اليوم لإبن مصر البار #محمد_صلاح أثناء وصول باص ليڤربول 🇪🇬👏 https://t.co/ZZN32qzdQv +04/05/2018,Sports_celeb,@MoSalah,"RT @AmirTeima: الحمد لله الخط الساخن ""16023"" لعلاج الإدمان شهد خلال الثلاثة أيام الماضية تزايد عدد المكالمات الواردة بنسبة 400 % + +و بدل ما…" +04/02/2018,Sports_celeb,@MoSalah,RT @Menna_Shalaby: ناس كتير عندها توحد وعملوا إنجازات مميزة لأن اختلافهم أصل تميزهم ولأنهم لقوا ناس تشجعهم وتساندهم. لازم نقبل بعض باختلافا… +04/01/2018,Sports_celeb,@MoSalah,🎥🎬🎬 https://t.co/9YHYFC8Qgh +03/31/2018,Sports_celeb,@MoSalah,"Say NO to drugs! +أنت أقوي من المخدرات... https://t.co/6tJYRpBPc0" +03/30/2018,Sports_celeb,@MoSalah,😃 https://t.co/QZaGJvXU8M +03/29/2018,Sports_celeb,@MoSalah,Being able to share these moments with the children was a privilege... the day will live long in the memory... https://t.co/Xhf0KBomfD +03/28/2018,Sports_celeb,@MoSalah,Who says school isn't great fun? https://t.co/fNaimMcJYO +03/25/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬 https://t.co/WBBMv9Kylq +03/25/2018,Sports_celeb,@MoSalah,😀 https://t.co/dEhZg8LxnE +03/22/2018,Sports_celeb,@MoSalah,@MostaphaM7moud حلوه اوي اوي يا مصطفي 👌🏼😊 +03/22/2018,Sports_celeb,@MoSalah,"RT @MostaphaM7moud: منشن لصلاح ياشباب لان تعبت فيها جدا والله +من كفرالشيخ ل محمد صلاح +منشن كتير ياشباب ❤️ +@22mosalah https://t.co/FQtsHz0…" +03/21/2018,Sports_celeb,@MoSalah,😊⚽️ https://t.co/kmYvAAXCVY +03/18/2018,Sports_celeb,@MoSalah,"RT @Joe_Mc_20: @22mosalah Little best mate was made up with his 4 goals 👑🇪🇬 won't stop singing his song, told his Nursery teachers Mo Salah…" +03/15/2018,Sports_celeb,@MoSalah,"Check out the latest Vodafone Egypt advert featuring yours truly 🙂 + +https://t.co/gDMwFlWd2C" +03/13/2018,Sports_celeb,@MoSalah,The UCL draw can't come soon enough 😁 +03/13/2018,Sports_celeb,@MoSalah,RT @khaledbauomy: اتمني من كل قلبي ان يطلق اسم سمير زاهر علي لقب دوري هذا الموسم ،، +03/13/2018,Sports_celeb,@MoSalah,البقاء لله في وفاة الكابتن سمير زاهر .. ستغيب بجسدك عنا لكن ستظل أعمالك التاريخية تتحدث عنك خالص العزاء للأسرة الكريمة... +03/07/2018,Sports_celeb,@MoSalah,@Trezeguet بغض النظر عن الچاكت ولونه بس النضارة حكاية😊😄 +03/07/2018,Sports_celeb,@MoSalah,@nabilelhalfawy وصل يا قبطان 😊. وشكرا يا كريم ورسمك حلو جدا .ومنتظرين منك المزيد مش شرط رسمه ليا 😄 لكن عامتنا ... +03/04/2018,Sports_celeb,@MoSalah,R.I.P Davide . https://t.co/IGxw3eEtiX +03/03/2018,Sports_celeb,@MoSalah,🔴🔴 https://t.co/otUF85DyA2 +03/03/2018,Sports_celeb,@MoSalah,@ShrokYahya جميله جدا 😍شكرا يا شروق 😊😊 +03/03/2018,Sports_celeb,@MoSalah,RT @OfficialHenedy: ماتنشرها بقى يا صلاح https://t.co/bOtiWqPBXJ +03/01/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/cpxPYIZSjX +02/23/2018,Sports_celeb,@MoSalah,الواد كهربا ده ايه 🤣🤣 +02/22/2018,Sports_celeb,@MoSalah,😄 https://t.co/52mcN5dJjT +02/17/2018,Sports_celeb,@MoSalah,@ElNennyM @AEandV يا رب 🙏🏼🙏🏼😉🤗 +02/17/2018,Sports_celeb,@MoSalah,🎥🎥 https://t.co/FRapip2T9f +02/15/2018,Sports_celeb,@MoSalah,30 x ⚽ = 😁 +02/15/2018,Sports_celeb,@MoSalah,@YasminMahfouz @RaghdaaElSaeed @SalahAbdallah 😏😏😀 +02/15/2018,Sports_celeb,@MoSalah,@RaghdaaElSaeed @SalahAbdallah 🤣😍🙈 +02/15/2018,Sports_celeb,@MoSalah,@SalahAbdallah ازاي بس حضرتك قدوه لينا كلنا ودا شوف ليا ان حضرتك كتبتلي حاجه وسعيد جدا بكلامك 😍وبالنسبه ل علي ربيع ف هو معهوش رقمي الجديد 😀🤣 +02/15/2018,Sports_celeb,@MoSalah,@salmaeldaly @SalahAbdallah بسيطه 😍😍😍😀 +02/15/2018,Sports_celeb,@MoSalah,@SalahAbdallah 😍😍😍 +02/13/2018,Sports_celeb,@MoSalah,@SMBRIDSON @LfcNo10 Looking forward to meeting Oscar soon 😁 +02/13/2018,Sports_celeb,@MoSalah,RT @SMBRIDSON: Oscar took his homework to another level tonight ⚽️❤️ ... He had to use words ending in ‘ng’ he said oh I know king. I know… +02/12/2018,Sports_celeb,@MoSalah,On the way to @Uber_Egypt... https://t.co/tRcI8Fg9BD +02/11/2018,Sports_celeb,@MoSalah,https://t.co/hUFiD4YR2T +02/10/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/oxb7nsBQ7h +02/10/2018,Sports_celeb,@MoSalah,@hazem_fetoh لا انت حد حساس اوي 😊👊🏼 +02/09/2018,Sports_celeb,@MoSalah,@youssefelsayedo @Turki_alalshikh @trikaofficial @ElNennyM @elsaid @AhmedAbuHashima @Alwaleed_Talal… https://t.co/tp93BxtJXb +02/07/2018,Sports_celeb,@MoSalah,@ElNennyM 😊😊 https://t.co/X7WDWalOLn +02/07/2018,Sports_celeb,@MoSalah,@EmanMahfouz13 @ElNennyM انا مقدر ده والله وعارف ان فيه ناس كتير كده بس النيني يُعتبر مصري برده 🤣🤣👊🏼 +02/06/2018,Sports_celeb,@MoSalah,@ElNennyM طب متقول صوتولي من غير اللف ده كله ياعم احنا مصريين وبنفهمها بسرعه🤣😘👊🏼 +02/03/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/XKi2Cwb9zQ +02/03/2018,Sports_celeb,@MoSalah,"RT @goal: Mohamed Salah has been named as Goal's Arab Player of the Year for 2017 🏆 + +https://t.co/xN5bElfY8B https://t.co/RDqT0C6m65" +01/25/2018,Sports_celeb,@MoSalah,أغنيه شعبولا 👌🏼👌🏼 +01/21/2018,Sports_celeb,@MoSalah,@nabilelhalfawy هو انت كده ياقبطان مبتحبش تتكلم علي الحكام 🤣🙈 +01/21/2018,Sports_celeb,@MoSalah,@mido_dida415 ابن مين 🤣 محفظتك ازاي يعني 👊🏼 +01/21/2018,Sports_celeb,@MoSalah,"RT @Mohamed46322862: @22mosalah ❤❤ +3ثانوي فرنساوي +Salah,Roi d'afrique❤❤ https://t.co/oWfRgbi6ZV" +01/21/2018,Sports_celeb,@MoSalah,@Mohamed46322862 انا مش فاهم حاجه لكن افتكر انها حاجه كويسه🙄 +01/20/2018,Sports_celeb,@MoSalah,RT @BBCArabic: محمد صلاح والتراث السوداني في إسبانيا ضمن أفضل صور أفريقيا في أسبوع https://t.co/IxBwJ3Nx5h https://t.co/GQuKqHv2Yn +01/19/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/5Uq0RpboXg +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy @mohammedrashad0 دا حبيبي 😍 +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy 🤣🤣هيكون عندك في اقرب وقت خلاص ☺️ +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy واحده واحده 😒 https://t.co/MNl5qPQ6c6 +01/14/2018,Sports_celeb,@MoSalah,⚽️🔴 https://t.co/793UXbCdZA +01/12/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/ozf31EQkOm +01/12/2018,Sports_celeb,@MoSalah,@ElNennyM @OfficialHenedy فعلا اقل حاجه 🤣👊🏼 https://t.co/AyavOWjxQP +01/11/2018,Sports_celeb,@MoSalah,@ElNennyM دا حالي دلوقتي يا نينووو والله 🤣 https://t.co/JTey3aQU7R +01/11/2018,Sports_celeb,@MoSalah,فيه اخبار غلط كتييييره نزلت النهارده بس ماشي مش هعلق 👊🏼 +01/09/2018,Sports_celeb,@MoSalah,Really enjoyed playing with you even if it was for such a short time. I wish you all the best in your new adventure… https://t.co/wDheprkqXg +01/08/2018,Sports_celeb,@MoSalah,https://t.co/19BVQ8w4mg +01/07/2018,Sports_celeb,@MoSalah,@nabilelhalfawy حبيبي يا قبطان لا تقلق😍✌🏼 +01/07/2018,Sports_celeb,@MoSalah,@azizelshaf3i الاغنيه جامده جدا جدا مش عارف اقولك ايه 😍لكن اكيد انت شايف رد فعل الناس 😊👍🏻 +01/07/2018,Sports_celeb,@MoSalah,https://t.co/JKcJKt2yLi +01/06/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/hEdJBbXQWi +01/06/2018,Sports_celeb,@MoSalah,"جاتلي رسائل كثيرًا جدًا من امبارح أحب أشكر كل الناس على الشعور دا.. فعلًا مبسوط جدًا بكلامكم +I would like to say a… https://t.co/c5IPzmwTBf" +01/06/2018,Sports_celeb,@MoSalah,@shereen_Ashraff اهم حاجه انها كانت حلوه وخلاص 🤣 +01/06/2018,Sports_celeb,@MoSalah,"RT @Yallakoranow: ""أنا هكسبها إن شاء الله"".. من هنا بدأ حلم صلاح بأفضل لاعب في أفريقيا + +https://t.co/rlUwNNHYOz + +@22mosalah https://t.co/a5…" +01/05/2018,Sports_celeb,@MoSalah,@MohamedEhab اعتبر نفسك كسبتها ان شاء الله 😍😉 +01/05/2018,Sports_celeb,@MoSalah,One of many dreams came true last night... Thank you everyone! https://t.co/2rrpLAKwNf +01/03/2018,Sports_celeb,@MoSalah,@emadmeteb90plus @FhadOtaibi فهد مش هوصيك دا الغالي 😍شكرا الرسالة وصلت . +01/03/2018,Sports_celeb,@MoSalah,@ElNennyM لا متدخلش تجبهم .. اهم حاجه انهم علي مقاسك🤣😉 +01/01/2018,Sports_celeb,@MoSalah,🎮🎮 https://t.co/98Gi5uSZWi +01/01/2018,Sports_celeb,@MoSalah,@ElNennyM انت بتقول ايه انت ليه بتكتب التويته ناقصه وعايزنا نكملها 😀قول الجمله كلها انا متاكد أن فيه كلام ناقص في آخر تويته دي .👊🏼 +01/01/2018,Sports_celeb,@MoSalah,@ElNennyM انت ايه جايب الكلام من كتاب كيف تتعلم اللغة العربية🤣🤣 +12/31/2017,Sports_celeb,@MoSalah,@ahmedtefa12 ادخل يا عم .. happy new year 👊🏼 +12/31/2017,Sports_celeb,@MoSalah,@Nsoo7y خلاص منتا قولت احلي لحظه بتسأل ليه بقا 🤣🤣 +12/31/2017,Sports_celeb,@MoSalah,"Can't really complain about a great 2017, but very much looking forward to 2018... https://t.co/1ke9zRAK1U" +12/28/2017,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/QJQGEPO4CP +12/24/2017,Sports_celeb,@MoSalah,RT @22mosalah: @adelkoraiem 🤣🤣🤣 +12/24/2017,Sports_celeb,@MoSalah,RT @adelkoraiem: معلومة صغيرة.. نسبة تصويت الجمهور في جائزة أفضل لاعب في أفريقيا لا تتعدى ال7% .يعني ما يساوي تصويت 2 من مدربي وكباتن المنت… +12/24/2017,Sports_celeb,@MoSalah,@adelkoraiem 🤣🤣🤣 +12/24/2017,Sports_celeb,@MoSalah,@abdalaziz83 مبسوط والله جدا برد فعل الناس واهتمامهم الكبير ده . لكن نسبه الجمهور ٥ ٪ يعني كده ضمنا اول ٥٪ من تصويت الجايزه 😄😘👊🏼 +12/23/2017,Sports_celeb,@MoSalah,"RT @OmarRaafat77: @22mosalah +في ناس عملت اغنية ليك اتمني انك تشوفها +https://t.co/g3JbthAv3b" +12/23/2017,Sports_celeb,@MoSalah,RT @LFC_Arabic: يا لها من لوحة رائعة @22mosalah 😍👌 https://t.co/WGwoCXCfad +12/21/2017,Sports_celeb,@MoSalah,@OfficialHenedy 🤣🤣🤣 https://t.co/lbBK3Vhuxh +12/20/2017,Sports_celeb,@MoSalah,@moheb_rofail @nabilelhalfawy يبقا ربنا هيكرمك اخر كرم🤣🤝 +12/20/2017,Sports_celeb,@MoSalah,https://t.co/hkTRcU6IaH +12/18/2017,Sports_celeb,@MoSalah,@Tahaahmed111 @Hegazi لا انا مش سهران دا فرق توقيت🤝🤝😀 +12/18/2017,Sports_celeb,@MoSalah,@Hegazi مبروك يا حجو🤛🏼 https://t.co/R7tjnr1C1V +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC: The Mohamed Salah Story 📖 + +Allow @22mosalah to guide you through his career: https://t.co/ZKJkt93yaj + +Thread 👇 https://t.co/zD5gj…" +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC_Arabic: قصة محمد صلاح 📖 + +اسمحوا لـ @22mosalah أن يأخذكم في جولة في مسيرته: https://t.co/yHwe376a4v + +السلسة 👇 https://t.co/tIeInPQH…" +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC: Read the @22mosalah story in his own words, as he discusses the moments that have enabled him to become the person and player he i…" +12/18/2017,Sports_celeb,@MoSalah,@Samehahmedd96 @nabilelhalfawy اهم حاجه انك بتفرح في الاخر 😀🙅🏼‍♂️ +12/18/2017,Sports_celeb,@MoSalah,@IbrahimsaidAdam @trikaofficial مفتكرش والله أني كنت هزعل 🤣حبيبي يا هيما ✌🏼 +12/18/2017,Sports_celeb,@MoSalah,@nabilelhalfawy لا خلاص يا قبطان نكتفي بالي قالوه😀 +12/17/2017,Sports_celeb,@MoSalah,@nabilelhalfawy ممكن اقول انا يا قبطان 🤣 +12/16/2017,Sports_celeb,@MoSalah,RT @AAbdoallah: الله على الصورة ⁦♥️⁩ https://t.co/wh0DJGK4M9 +12/15/2017,Sports_celeb,@MoSalah,😀😀 https://t.co/QxMUXVCGvo +12/14/2017,Sports_celeb,@MoSalah,أتمنى من الجميع مساندة صالح جمعة .. فهو لاعب كبير سيفيد بكل تأكيد الكرة المصرية في حالة الوقوف بجواره وعدم التأثر ب… https://t.co/ooCanuyZ5a +12/14/2017,Sports_celeb,@MoSalah,"RT @Pele: Parabéns, @22MoSalah! It's been an incredible year! Keep going and I look forward to seeing you play on the greatest stage next y…" +12/12/2017,Sports_celeb,@MoSalah,"RT @didierdrogba: Well deserved my Brother, so proud of you!!!!!! Legend in the making🙏🏾 +The best is yet to come ❤️ https://t.co/YtEIepltwp" +12/12/2017,Sports_celeb,@MoSalah,😀😀 https://t.co/koN9QJ80q8 +12/12/2017,Sports_celeb,@MoSalah,@NaguibSawiris 🤣🤣🤣 +12/11/2017,Sports_celeb,@MoSalah,"Very proud to have won this prestigious award for best African player, and joining the ranks of many great players… https://t.co/IoWUFxZExD" +12/11/2017,Sports_celeb,@MoSalah,أودّ أن أشكر كل الناس اللي صوتت لي وساهمت في تحقيق الجايزة. +12/11/2017,Sports_celeb,@MoSalah,Always been impressed by this man's work @KhaledElNabawy https://t.co/k3MIKUaugf +12/11/2017,Sports_celeb,@MoSalah,"@mariam_metwally @MoElshorbagy @noursherbini +Good seeing you guys ! Best of luck in your competition! https://t.co/7h5PJ7ZXZO" +12/07/2017,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/kgVN6KFVdj +12/05/2017,Sports_celeb,@MoSalah,ألف مبروك للبطلة المصرية رحاب أحمد على ذهبية العالم.. https://t.co/ZqOTSEa0C3 +07/02/2018,Sports_celeb,@keinishikori,GOALLLLLLLLLLLLLLLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +07/02/2018,Sports_celeb,@keinishikori,GOALLLLLLLLLLLLLLLLLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +07/02/2018,Sports_celeb,@keinishikori,🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 https://t.co/FVwpozm2gL +07/02/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: グローバルブランドアンバサダーの錦織圭選手(@keinishikori)が、7月2日(月)開幕のウィンブルドン選手権に出場!緑色と茶色のストライプを襟にあしらった新しいウエアにもご注目ください。 + +みなさまの熱い声援、よろしくお願いします。 + +#u…" +07/01/2018,Sports_celeb,@keinishikori,明日の試合日本ガンバレ!!🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +07/01/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: \開幕まであと5日❗️/ +錦織圭選手@keinishikori のそばにはドライEXがいます✨ + +優れた吸汗速乾機能で、汗を気にせずプレーできる優れ物。 + +世界に挑戦する #錦織圭 選手をハッシュタグ #汗っていこう で応援しよう❗️ + +錦織選手着…" +07/01/2018,Sports_celeb,@keinishikori,"RT @miyukato1121: 伊澤会!🇬🇧 +今年もありがとうございました❤️❤️❤️ +1年の楽しみになってます✨✌️ https://t.co/7iOcdod8Qa" +07/01/2018,Sports_celeb,@keinishikori,"RT @nikejapan: 初心に立ち返った #錦織圭 の、10度目の挑戦。 +#justdoit @keinishikori" +06/30/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: 本日よりJAGUAR Land Rover Studio 銀座がオープン。今年70周年を迎えたランドローバーにウィンブルドンを目前に控えた #錦織圭 選手@keinishikori からメッセージをいただきました!#LandRover70Years… +06/29/2018,Sports_celeb,@keinishikori,"RT @Wimbledon: Former World No.4 @keinishikori continues his comeback season.... + +Welcome back to the grass, Kei. + +#Wimbledon https://t.co/…" +06/28/2018,Sports_celeb,@keinishikori,🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +06/28/2018,Sports_celeb,@keinishikori,"To see match: +https://t.co/3jvYFPZny9" +06/27/2018,Sports_celeb,@keinishikori,"RT @mchangtennis: || Talk with your racket, play with your heart || Catch @keinishikori playing in a one of a kind all pro tennis exhibitio…" +06/26/2018,Sports_celeb,@keinishikori,"RT @doublefault28: This is my favorite GIF. And I think ,my best GIF. ""Air Kei"" I hope and believe he will come back strong! Need to belie…" +06/25/2018,Sports_celeb,@keinishikori,"RT @abnamrowtt: Kei Nishikori debuteert in ABN AMRO World Tennis Tournament 2019! #abnamrowtt #atpworldtour #rotterdamahoy #2019 +@keinishik…" +06/25/2018,Sports_celeb,@keinishikori,Hello London! Excited to be back at @Wimbledon! +06/25/2018,Sports_celeb,@keinishikori,Visit to @vangoghmuseum this morning https://t.co/NO5dWamBpo +06/24/2018,Sports_celeb,@keinishikori,GGGGOOOAAAALLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 #Honda +06/24/2018,Sports_celeb,@keinishikori,GGGGGGOOAAAAALLLLLLLLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +06/24/2018,Sports_celeb,@keinishikori,Let’s go 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 https://t.co/hXRSlxOi5v +06/24/2018,Sports_celeb,@keinishikori,Hello Amsterdam! https://t.co/RZ29kVjxrv +06/24/2018,Sports_celeb,@keinishikori,@annefrankhouse in Amsterdam https://t.co/KoskcwerWQ +06/24/2018,Sports_celeb,@keinishikori,Canal ride in Amsterdam! Amazing https://t.co/ohQrjFi89E +06/23/2018,Sports_celeb,@keinishikori,Last practice at @GERRYWEBERWORLD today. Even after the loss I stayed here. Good practice in last days with… https://t.co/uXGH994u0D +06/22/2018,Sports_celeb,@keinishikori,https://t.co/vvecpqwCqt https://t.co/vvecpqwCqt +06/18/2018,Sports_celeb,@keinishikori,RT @doublefault28: Return! @keinishikori (🎥@TennisTV ) https://t.co/JPb4B9opDT +06/16/2018,Sports_celeb,@keinishikori,"今週からのワールドカップ日本チーム応援してます! +みなさんも一緒に応援しましょう📣🇯🇵 🇯🇵" +06/16/2018,Sports_celeb,@keinishikori,@UniqloUSA Has he ever played tennis with Kei Nishikori?? 🤔😄😉🎾⛳️ +06/15/2018,Sports_celeb,@keinishikori,Hello @GERRYWEBERWORLD! Landed this morning. Great to be in 🇩🇪! +06/13/2018,Sports_celeb,@keinishikori,👍👍👍 https://t.co/aiRthckDEq +06/05/2018,Sports_celeb,@keinishikori,A big thanks to @JaguarFrance for the amazing support again! It really helps myself and #TeamKei. Thank you! 👍👊. A… https://t.co/tJizYWrwsp +06/05/2018,Sports_celeb,@keinishikori,Au revoir 🇫🇷 🗼. Thank you for the support again. And thank you @PDG_Paris! My home in Paris. See you in the fall. +06/01/2018,Sports_celeb,@keinishikori,Only at @rolandgarros! 🎨 👍❤️ https://t.co/5foHpRyE9g +05/30/2018,Sports_celeb,@keinishikori,Very tough match today against Benoit. Very happy with the win. Now back at the @PDG_Paris to relax. Best service… https://t.co/VXLLaEd3EQ +05/29/2018,Sports_celeb,@keinishikori,"RT @lixil_official: ✨Web限定ムービー公開中✨ +錦織選手を熱く応援しているLIXIL社員が、錦織選手の拠点フロリダまで追いかけ、錦織選手をイメージした『にしこリクシルくん』を手渡すまでのロードムービー🎥 +果たして錦織選手の反応は・・・⁉️ +https://…" +05/28/2018,Sports_celeb,@keinishikori,My 🏡 in Paris 🇫🇷! Always so comfortable! Of to 💤 🛏 now for early practice tomorrow 🎾 @rolandgarros. Hoping no 🌧.… https://t.co/sIJfAb3WDt +05/27/2018,Sports_celeb,@keinishikori,"RT @josemorgado: Uniqlo still doing a great job with @keinishikori [getty] + +#RG18 https://t.co/yqJwFGZbcm" +05/25/2018,Sports_celeb,@keinishikori,RT @nikejapan: その目が追うのは、まだ見たことのない景色。@keinishikori #justdoit +05/25/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: Former World No. 4 @keinishikori, a quarter-finalist in 2015 & 2017, is in the loaded bottom quarter & will challenge Max…" +05/22/2018,Sports_celeb,@keinishikori,First hit at @rolandgarros 🇫🇷 https://t.co/uLBRtWCbow https://t.co/lw2Bncw032 +05/21/2018,Sports_celeb,@keinishikori,Bonjour 🇫🇷 +05/21/2018,Sports_celeb,@keinishikori,🇮🇹🎾🛏🚿🍳🚶‍♀️🚕🛫💺🛬🚕🗼🏠🥐 +05/21/2018,Sports_celeb,@keinishikori,https://t.co/AN0dyJGhyV +05/13/2018,Sports_celeb,@keinishikori,👋👋👋👋👋👋 https://t.co/4lVofbOzhf +05/13/2018,Sports_celeb,@keinishikori,Congrats! 👍👊👏 https://t.co/dIhlUr6gGs +05/12/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: The draw is set for the 2018 @InteBNLdItalia, with an assist by @keinishikori 😉🇮🇹 + +Who do you think will take home this y…" +05/11/2018,Sports_celeb,@keinishikori,Good practice with @stanwawrinka this morning at @InteBNLdItalia https://t.co/pOKE0TWvdE +05/11/2018,Sports_celeb,@keinishikori,"RT @InteBNLdItalia: 🙌 Put your hands up for one of Rome's favorite idols: @keinishikori! 🙌 +The 🇯🇵 is ready to practise! + +#ibi18 #tennis ht…" +05/10/2018,Sports_celeb,@keinishikori,Hello Rome! @InteBNLdItalia @ATPWorldTour https://t.co/Wv9PNgfSoY https://t.co/caEtzhBupy +05/09/2018,Sports_celeb,@keinishikori,RT @MutuaMadridOpen: Done but not dusted. @keinishikori keeps training in Madrid. #MMOPEN https://t.co/l1TmO3LlwS +05/04/2018,Sports_celeb,@keinishikori,"RT @MutuaMadridOpen: What a serve by @keinishikori in this morning’s training session! 😍 +The 🇯🇵 looks to be firing on all cylinders !🔥 +#Caj…" +05/02/2018,Sports_celeb,@keinishikori,Hello @MutuaMadridOpen! Great to be back here +05/02/2018,Sports_celeb,@keinishikori,Good practice with @karenkhachanov today https://t.co/vB7f3zRNFj +04/30/2018,Sports_celeb,@keinishikori,Posted a fun question on https://t.co/Wv9PNgfSoY. Let’s see if you guess..... https://t.co/i5nsUEW8Bc +04/30/2018,Sports_celeb,@keinishikori,The Uniqlo building in Barcelona is amazing! Right in the center of town https://t.co/TmHWsWeeBq +04/30/2018,Sports_celeb,@keinishikori,Helllllooo Uniqlo! This Barcelona store is amazing. First time in this store for me. @UNIQLO_JP https://t.co/rCafF11XB2 +04/29/2018,Sports_celeb,@keinishikori,RT @UniqloUSA: Last day to help us support @charitywater's mission to provide clean water to people in need! Donate at checkout today when… +04/22/2018,Sports_celeb,@keinishikori,Thank you @ROLEXMCMASTERS for a great week. https://t.co/kU3YefdPLs +04/22/2018,Sports_celeb,@keinishikori,👍 https://t.co/MDLMzsXOIf +04/22/2018,Sports_celeb,@keinishikori,Could not win today but happy with the matches I played here. Thank you @ROLEXMCMASTERS for a great week.… https://t.co/eXp9w62JcR +04/21/2018,Sports_celeb,@keinishikori,RT @doublefault28: #GoKei https://t.co/IgPoBDyPZb +04/21/2018,Sports_celeb,@keinishikori,Sliding into Sunday!!! Amazing battle today. Happy with the win. https://t.co/Ei6FIUUjQS +04/20/2018,Sports_celeb,@keinishikori,https://t.co/ru7uZaBRyR +04/20/2018,Sports_celeb,@keinishikori,RT @NishikoriGIF: SF!!!😀 https://t.co/FYbIdfTYlk +04/19/2018,Sports_celeb,@keinishikori,RT @doublefault28: This backhand!!🔥 @keinishikori (🎥@TennisTV ) https://t.co/x26pyG85yP +04/19/2018,Sports_celeb,@keinishikori,Very happy with the win today at the @ROLEXMCMASTERS 👍💪🎾 https://t.co/gcNybs1PNk +04/16/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Great reaction,@keinishikori 😂👍(🎥@TennisTV ) https://t.co/dXJz7pXcLg" +04/11/2018,Sports_celeb,@keinishikori,Very nice weather here 🤔🙀🌧 https://t.co/ziKkKOgA5N +04/11/2018,Sports_celeb,@keinishikori,Spending morning with @JaguarJPN @Jaguar https://t.co/Xcb35pLD4j +04/11/2018,Sports_celeb,@keinishikori,Good morning 🇫🇷. Spending the morning in Nice with @Jaguar & @JaguarJPN to talk about the new “baby” E-Pace and th… https://t.co/D28D8j4Ged +04/10/2018,Sports_celeb,@keinishikori,"RT @UniqloUSA: Welcome to our newest location, #UniqloSouthcenter! Let us know which city you'd like to see us in next. https://t.co/FWaCbc…" +04/05/2018,Sports_celeb,@keinishikori,@robbieohashi @Lindonk @IMGAcademy @ATPWorldTour @IMGATennis 🤔🤔🤔🤔🤔 +04/05/2018,Sports_celeb,@keinishikori,Early practice today #WhereIsNakao #ClayNishikori #TeamKei https://t.co/XLrxstOAM5 +04/04/2018,Sports_celeb,@keinishikori,Playing sets this morning with @BellucciOficial https://t.co/mcJCtd0BQg +04/03/2018,Sports_celeb,@keinishikori,Grinding on the clay with @MichaelMmoh this morning https://t.co/hiHuNEhUvB +04/03/2018,Sports_celeb,@keinishikori,"RT @IMGAcademy: A holiday doesn't mean a day off for @keinishikori! + +#IMGFam #TrainWhereITrain @IMGATennis 📹: @Justin_Russ https://t.co/7g…" +04/01/2018,Sports_celeb,@keinishikori,"RT @JaguarJPN: 【XF SPORTBRAKE × KEI NISHIKORI】 +Playへの情熱を詰め込んで、 +パフォーマンスの頂点に挑む。@KeiNishikori +XF SPORTBRAKE × KEI NISHIKORIの特設ページ > https://t.…" +04/01/2018,Sports_celeb,@keinishikori,"こんにちは!今はブラテントンにいます。 +ヨーロッパのクレーシーズンに向けて準備しています。応援メッセージありがとうございます!" +03/31/2018,Sports_celeb,@keinishikori,Solid practice with @TKokkinakis today. Btw...see those ☁️ 🌧 🙀 https://t.co/0Pjcr3tIzT +03/31/2018,Sports_celeb,@keinishikori,Really nice meeting all these kids after my practice at IMG Academy: https://t.co/pZrF7GCCTb https://t.co/tpsrSOw2OS +03/30/2018,Sports_celeb,@keinishikori,Working hard at @IMGAcademy with Miomir today https://t.co/axl3iaDQOQ +03/24/2018,Sports_celeb,@keinishikori,"RT @TennisTV: Kei-O 💪 + +@keinishikori defeats Millman 7-6(4) 4-6 6-3 in Miami - and will face either Del Potro or Haase in the third round..…" +03/24/2018,Sports_celeb,@keinishikori,💪💪💪💪🤛🤛🤛🤛👊👊👊👊 https://t.co/iVvGBJ0Nni +03/24/2018,Sports_celeb,@keinishikori,RT @doublefault28: Classic backhand down the line from @keinishikori!! (🎥@TennisTV ) https://t.co/R60pKw1bAm +03/24/2018,Sports_celeb,@keinishikori,RT @NishikoriGIF: 初戦突破おめでとうございます( ´ ▽ ` )ノ https://t.co/w1SkDhcf3N +03/22/2018,Sports_celeb,@keinishikori,Great night last night at @JWMM_Miami with @DavidFerrer87 https://t.co/mvVrhJIiNE +03/22/2018,Sports_celeb,@keinishikori,RT @outside_theball: Cute alert! Kei Nishikori stops to take a picture with young fans ahead of the #MatchPointPassion18 party! 🎾🎉 https://… +03/22/2018,Sports_celeb,@keinishikori,"RT @TennisTV: Back in Miami 😎 + +@keinishikori putting in the work on the practice courts... https://t.co/kCxb4lTL4V" +03/22/2018,Sports_celeb,@keinishikori,@JWMM_Miami Thank you for a great night! https://t.co/ZTeFu5VshY +03/20/2018,Sports_celeb,@keinishikori,🤦‍♂️ https://t.co/O7Pw6aRLh4 +03/19/2018,Sports_celeb,@keinishikori,@MiamiOpen @BNPPARIBASOPEN Love being here @MiamiOpen +03/19/2018,Sports_celeb,@keinishikori,"RT @UniqloUSA: Gear up and watch Kei Nishikori bring the heat to the #MiamiOpen, starting today. https://t.co/DwUTwP9WEB 🎾 @keinishikori #U…" +03/19/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: グローバルブランドアンバサダーの錦織圭選手(@keinishikori)が3月19日(月)から開幕のマイアミ・オープンに出場! +2年ぶり、2度目の決勝進出を目指します。応援宜しくお願いします! +着用予定のウェアはこちら +https://t.co/S…" +03/13/2018,Sports_celeb,@keinishikori,RT @JaguarUK: Created to indulge your passion for performance. #Jaguar #XE #Project8 https://t.co/LG8spCAKsf +03/13/2018,Sports_celeb,@keinishikori,RT @OrigCupNoodles: Want to win a VIP trip to Noods Noods Noods in Oakland for all the noodle goodness? Enter here: https://t.co/070RTHBX8U… +03/13/2018,Sports_celeb,@keinishikori,RT @NickBollettieri: Great to be back at the beautiful @BNPPARIBASOPEN! #BNPPO18 https://t.co/3atEvAI8tk +03/12/2018,Sports_celeb,@keinishikori,Back home in Florida. Nice to sleep in my own house. Thanks for all the messages. Time to rest and get ready for… https://t.co/vXSuJJTpFk +03/11/2018,Sports_celeb,@keinishikori,Unfortunate I have to pull out of the tournament today. I have been sick for over a week and tried everything I co… https://t.co/qFnN0UwD4d +03/11/2018,Sports_celeb,@keinishikori,"先週のメキシコから風邪が治らなくて今週の試合は残念ながら断念することにしました。 +好きな大会のひとつなので出れないのは悔しいですが早く治して次のマイアミに備えたいと思います。" +02/25/2018,Sports_celeb,@keinishikori,RT @ATPWorldTour_ES: 🤗🔥 @keinishikori ajusta detalles en el @AbiertoTelcel para disputar su primer ATP 500 desde el @CitiOpen de Washington… +02/24/2018,Sports_celeb,@keinishikori,@AbiertoTelcel https://t.co/Wv9PNgfSoY https://t.co/9g6mFeGaLa +02/24/2018,Sports_celeb,@keinishikori,RT @AbiertoTelcel: ありがとうございました @keinishikori! https://t.co/uJ65ub0iI9 +02/24/2018,Sports_celeb,@keinishikori,RT @weye1: 錦織選手の次の大会は月曜日から始まるアカプルコ。活躍が楽しみですね!そして「錦織圭選手、始動。キャンペーン」は明日の日曜日が締め切りです。賞品は“錦織圭、始動。クリアファイル”で、50名に抽選でプレゼントします!是非応募ください!>>>https://t.… +02/24/2018,Sports_celeb,@keinishikori,@Jaguar I am one of them 💪👍 +02/23/2018,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: ¡Bienvenido a México, @keinishikori🇯🇵! ☺️ メキシコへようこそ! + +#AMT2018 #CelebratingTennis https://t.co/MrBkW8ZpdK" +02/23/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: ジャガーがコンパクトなSUV「E―ペイス」を発売:朝日新聞デジタル #BabyJaguar https://t.co/2RJCWsabGf +02/23/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: After losing in ATP Challenger Tour qualifying in his previous event, Kei Nishikori didn't want to play at 2008 Delray Be…" +02/22/2018,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: To all Japanese followers, here it goes again: 頑張れ、君ならできるよ🎌!@keinishikori https://t.co/iqYjHbBRXn" +02/21/2018,Sports_celeb,@keinishikori,"Look what arrived in Bradenton today??? Thank you @Nike @Jumpman23 @jtimberlake!!!! +#SBLLII Very Cool! https://t.co/lM6wNzUS7W" +02/19/2018,Sports_celeb,@keinishikori,RT @Tedimond_Art: Congratulations on your comeback tournament @keinishikori !! Tough semis this week in NY. Enjoy your “Dimond” player port… +02/19/2018,Sports_celeb,@keinishikori,Thank you @NewYorkOpen and @joshrip for the hospitality. Look forward to coming back to NYC in the years to come. H… https://t.co/s5gE0ddbbU +02/16/2018,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: / +祝!ベスト8✨ +\ + +錦織選手が、ニューヨーク・オープンでベスト8進出🎾 +この勢いで決勝まで頑張ってください✺◟(∗❛ัᴗ❛ั∗)◞✺‼ + +@keinishikori +#GoKei" +02/15/2018,Sports_celeb,@keinishikori,@NewYorkOpen https://t.co/CRFlbP3vfv +02/15/2018,Sports_celeb,@keinishikori,My strong flexible coaching team 🤔🤣 https://t.co/D7TKSOfGgf +02/15/2018,Sports_celeb,@keinishikori,https://t.co/aMAbdGvgx1 +02/15/2018,Sports_celeb,@keinishikori,RT @doublefault28: 👏(🎥@TennisTV ) https://t.co/tv9UbW3mwP +02/15/2018,Sports_celeb,@keinishikori,"RT @NTTPR: 先ほど、錦織選手(@keinishikori )はエフゲニー・ドンスコイ選手を @newyorktennis 2回戦でもストレート勝ちで終え、いよいよ準々決勝に進みます。この勢いで次も頑張ってください! +Kei Nishikori won the seco…" +02/14/2018,Sports_celeb,@keinishikori,RT @doublefault28: 💪 https://t.co/fXA178oAlP +02/14/2018,Sports_celeb,@keinishikori,RT @doublefault28: 🔥(🎥@TennisTV ) https://t.co/AakHsTOQBe +02/14/2018,Sports_celeb,@keinishikori,Couldn’t see the replay 🙂 https://t.co/faWqnUSiRN +02/14/2018,Sports_celeb,@keinishikori,"RT @TennisTV: 💥💥💥 @keinishikori + +#NYOpen + +https://t.co/KCjybaxhj3" +02/14/2018,Sports_celeb,@keinishikori,Great to be back on the @ATPWorldTour https://t.co/cBRksHkWPZ +02/14/2018,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: \錦織選手、まもなく初戦開始✊🏻/ +ニューヨーク・オープン錦織選手の初戦がこの後9:30~始まります🎾 +ツアー復帰に向けて、インタビューをしてきました✨ + +ケイは負けない(ง `ω´)ง‼ +インタビュー動画、公開中📽⇒https://…" +02/13/2018,Sports_celeb,@keinishikori,Just finished my morning practice. Hope to see you tonight for the match at the @NewYorkOpen https://t.co/IoE4k2Cyc7 +02/12/2018,Sports_celeb,@keinishikori,RT @NewYorkOpen: Order of play Tuesday 13th February. @keinishikori takes on @Noahrubin33 in our featured match! #NYOpen https://t.co/EdZKV… +02/12/2018,Sports_celeb,@keinishikori,RT @NewYorkOpen: In his first match back on the ATP World Tour @keinishikori takes on the hometown hero @Noahrubin33 on Tuesday night Febru… +02/11/2018,Sports_celeb,@keinishikori,🚿🚿🚿🚿😀😃😄🤣https://t.co/ddLMYFoHkk +02/11/2018,Sports_celeb,@keinishikori,"ニューヨークオープンの1回戦は火曜日になりました。 +応援よろしくお願いします!@NewYorkOpen" +02/10/2018,Sports_celeb,@keinishikori,"and its....LIVE, FROM NYC.....https://t.co/D07jAd0fV7 +:):)" +02/10/2018,Sports_celeb,@keinishikori,Hello @NewYorkOpen!!!! https://t.co/ynwrcxc5K7 +02/08/2018,Sports_celeb,@keinishikori,"RT @JaguarJPN: 【XF SPORTBRAKE × KEI NISHIKORI】 +世界中のコートで観客を魅了している @KeiNishikori 選手と同様に、XFスポーツブレイクの走りにはドライバーを魅惑するパフォーマンスがある。 +あなたは、ジャガーとPLAYする…" +02/08/2018,Sports_celeb,@keinishikori,@Lindonk @robbieohashi 🍣 🥢 🍚 +02/08/2018,Sports_celeb,@keinishikori,RT @Lindonk: Good Japanese dinner! Thank you Sugi!!! https://t.co/6FgBYvD8KN +02/08/2018,Sports_celeb,@keinishikori,RT @NTTPR: 中期経営戦略に関する具体的な取り組みをご紹介する「Moving Forward Together」ページを、NTT公式HP内に開設してから約1年が経過しました。ここでは、常に前に進んでいくNTTグループの最新の取り組みを、事例とともにわかりやすく紹介してい… +02/05/2018,Sports_celeb,@keinishikori,"RT @netdash: Kei Nishikori has an exclusive photo! Check it out by joining the tight-knit circle of superfans on his App. +https://t.co/l12N…" +02/05/2018,Sports_celeb,@keinishikori,High five!!! ✋ 🙌 https://t.co/5xDxHPp6Or +02/05/2018,Sports_celeb,@keinishikori,Gracias https://t.co/YpapQtBS27 +02/05/2018,Sports_celeb,@keinishikori,👍 https://t.co/DlnQGz0WJs +02/05/2018,Sports_celeb,@keinishikori,Those shoes! @Nike @Jumpman23 👍👍👍👍👍👍 #SBLII https://t.co/koJ9JyET3A +02/04/2018,Sports_celeb,@keinishikori,RT @doublefault28: Kei's FH winner on the SP (🎥@ATPChallenger ) https://t.co/Ltnhcb41c0 +02/04/2018,Sports_celeb,@keinishikori,Back at @SRQAirport! Good to be home +02/04/2018,Sports_celeb,@keinishikori,RT @UniqloUSA: Go big or go home. Step up your game by training like your favorite athletes in #UniqloSport. 🏆 https://t.co/W5JiBxZNs4 #Uni… +02/04/2018,Sports_celeb,@keinishikori,Thank you @NewYorkOpen. Can’t wait to come to NYC next week. Hope to see many of you at the matches. https://t.co/oufIdnKRWr +02/04/2018,Sports_celeb,@keinishikori,Good week! https://t.co/uLBRtWCbow https://t.co/XPkdQM38Dz +02/04/2018,Sports_celeb,@keinishikori,"みなさん応援ありがとうございます!! +この優勝で少し自信がつきました。手首も問題なくできたのも良かったです。 +これからも頑張ります!" +02/04/2018,Sports_celeb,@keinishikori,Thank you Dallas! Enjoyed playing here. https://t.co/ayivIZDr7x +02/04/2018,Sports_celeb,@keinishikori,👍 https://t.co/hR7yLYLDWi +02/04/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Bravo, Kei!!!! 👏👏👏 https://t.co/8WWHWdnmp4" +02/04/2018,Sports_celeb,@keinishikori,RT @jmeistennis: Kei Nishikori is the champion in Dallas. A title for the 🇯🇵 in his second tournament back. https://t.co/jGvfZfMw9M +02/04/2018,Sports_celeb,@keinishikori,"RT @NTTPR: \祝・優勝!錦織選手/ +Congrats, @keinishikori ! +錦織選手が先程の決勝戦を制し、見事ダラスチャレンジャー2018の覇者となりました! +毎日試合を重ねながら勇気をくれた錦織選手、ありがとうございました。次戦も錦織選手の攻めていくプレ…" +02/04/2018,Sports_celeb,@keinishikori,Just a quick message to say thank you for all the messages. I played these two challenger weeks to get matches and… https://t.co/nSqrlXMlLh +02/03/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: Final 🔜. @keinishikori reflects on his SF win at the @TennisChampsDal. https://t.co/K2mo2nSpSO +02/03/2018,Sports_celeb,@keinishikori,RT @doublefault28: The best point of the match from Kei! (🎥@ATPChallenger ) https://t.co/VDcIhsfI38 +02/03/2018,Sports_celeb,@keinishikori,"RT @NTTPR: 錦織選手、いよいよ決勝へ! +復帰2戦目となるダラス・チャレンジャー。着々とコマを進め、明日の決勝に挑みます。錦織選手らしいプレーで、ダラスチャレンジャーを制してほしいですね! https://t.co/yxTdPYFafr" +02/03/2018,Sports_celeb,@keinishikori,RT @NTTPR: 現在開催されているダラス・チャレンジャーにおいて、日本時間の2日朝、錦織選手はドイツのDominik KOEPFER選手に勝利し、ついにベスト4となりました。次の試合は、日本時間の明日3日(土) 朝8:00以降に行われる、台湾のJason JUNG選手との… +02/03/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: https://t.co/ej1pAdQ9og +02/02/2018,Sports_celeb,@keinishikori,https://t.co/tGOQAmO17Z +02/02/2018,Sports_celeb,@keinishikori,#GoJapan #DavisCup +02/02/2018,Sports_celeb,@keinishikori,https://t.co/4UXhELTVMX +02/02/2018,Sports_celeb,@keinishikori,Nice video from matchpoint. Very happy with another win. All these matches help me raise my level step by step. On… https://t.co/Cbzn6mD02p +02/01/2018,Sports_celeb,@keinishikori,It was a really tough match last night. I started a bit slow. I started coming back and playing much better in the… https://t.co/XbSU47XgSG +02/01/2018,Sports_celeb,@keinishikori,Congrats @TennisChampsDal! https://t.co/wV4Mw5CeHp +02/01/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: They love him in Dallas! @keinishikori gives back to the sold out crowd after his 2R win @TennisChampsDal. https://t.co/… +02/01/2018,Sports_celeb,@keinishikori,"RT @ATPChallenger: Good to have you back, @keinishikori! 😉 https://t.co/e7p1amgTqo" +01/31/2018,Sports_celeb,@keinishikori,See you tomorrow night! https://t.co/CrO98fuVKQ +01/30/2018,Sports_celeb,@keinishikori,It’s good to be back on court!! 👍 https://t.co/k44AMaksYs +01/30/2018,Sports_celeb,@keinishikori,Fun experience here today in Dallas. Lots of Japanese fans. Hope to see everyone on Wednesday for my next match. +01/30/2018,Sports_celeb,@keinishikori,"RT @doublefault28: 6-3, 6-3 !!! 👏 https://t.co/HzL4xbMke7" +01/30/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Kei:""Discussing after the match. Happy with first win!"" (📷https://t.co/RXFiKrVgVU) #GoKei https://t.co/t4OnFxPiAY" +01/30/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: First win of 2018! @keinishikori gets revenge over Dennis Novikov 63 63 to open his @TennisChampsDal campaign. https://t… +01/27/2018,Sports_celeb,@keinishikori,Very good practice with @JohnIsner today. Very nice of him to come hit. #heightdifference #CanIHaveThatServe https://t.co/Hy3BVBYCT3 +01/26/2018,Sports_celeb,@keinishikori,First practice in Dallas. Just arrived. https://t.co/hMeHCLTjgL +01/23/2018,Sports_celeb,@keinishikori,Last practice before match tomorrow. https://t.co/uLBRtWCbow https://t.co/OSIYS3c6Na +01/17/2018,Sports_celeb,@keinishikori,We have arrived!!!! 👍💪 https://t.co/4wtLBf9X82 +01/06/2018,Sports_celeb,@keinishikori,RT @Jaguar: #Jaguar #XFSportbrake delivers an utterly seductive blend of style and substance that is unrivalled in its class. https://t.co/… +01/03/2018,Sports_celeb,@keinishikori,https://t.co/zOskc10g4z +01/01/2018,Sports_celeb,@keinishikori,"RT @cupnoodle_jp: 今、誰よりもハングリーなのは。 + +復活を目指す錦織圭を描く +カップヌードルの新CM +「HUNGRY・K篇」が本日公開! https://t.co/Ziw3iq9jeC" +12/30/2017,Sports_celeb,@keinishikori,RT @doublefault28: 😂👍 (🎥https://t.co/RXFiKrVgVU) https://t.co/zlTvvB7KZs +12/30/2017,Sports_celeb,@keinishikori,Great birthday dinner at @it_srq tonight. Back to practice tomorrow:) https://t.co/qRij1rKVdJ +12/29/2017,Sports_celeb,@keinishikori,Birthday practice:) https://t.co/TP85tU7lAx +12/29/2017,Sports_celeb,@keinishikori,Thank you for all the nice birthday messages!!!! 🎂 🎁 🍰 🎉 🎊 +12/29/2017,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: Happy Birthday KEI! +本日29日は錦織圭(@KeiNishikori)選手の28歳の誕生日 。 +1月からはいよいよ新しいシーズンが始まります。 +タフになって帰ってくる錦織選手の活躍を、楽しみにしています! +https://t.co…" +12/28/2017,Sports_celeb,@keinishikori,Working hard! https://t.co/Wv9PNgfSoY https://t.co/B4pBFB0ZzG +12/28/2017,Sports_celeb,@keinishikori,Good week! #progress https://t.co/Wv9PNgfSoY https://t.co/cxAlmZHyi0 +12/25/2017,Sports_celeb,@keinishikori,RT @NickBollettieri: Merry Christmas from snowy Vermont. https://t.co/W4qK0vWrcm +12/25/2017,Sports_celeb,@keinishikori,Busy Christmas 🎄 morning practice today at the @IMGAcademy! Happy holidays everyone. https://t.co/uLBRtWCbow https://t.co/IDK7F6xstu +12/22/2017,Sports_celeb,@keinishikori,@BrisbaneTennis Sorry @BrisbaneTennis! I will be back in 2019. Wishing everyone there a great tournament! +12/16/2017,Sports_celeb,@keinishikori,Great day with Ron from Wilson. We tested several new strings today. Very productive. https://t.co/5c6kANZlEl +12/12/2017,Sports_celeb,@keinishikori,Thank you @Jaguar for helping me while at Michael’s for training! Appreciate so much being part of your family. No… https://t.co/D5cuYf5QOY +12/06/2017,Sports_celeb,@keinishikori,Working hard in CA....... https://t.co/vhOz1BdSkh +12/04/2017,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: 錦織選手、お気をつけて✈ +ご帰国されていた錦織選手(@keinishikori)が、アメリカへ練習に戻られます✨ +これからも応援しています! + +いつも、挑戦のそばに。 +ケイは負けない!!!!(ง `ω´)ง + +#GoKei https…" +12/04/2017,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: “Estoy trabajando para regresar al 100%, ser mejor jugador y competir para ganar grandes títulos”, dijo @keinishikori🇯🇵…" +11/30/2017,Sports_celeb,@keinishikori,"RT @TAGHeuerJapan: タグ・ホイヤーのアンバサダーを務める錦織圭(@keinishikori)選手とのコラボレーションモデル<タグ・ホイヤー カレラ キャリバー ホイヤー01 クロノグラフ AIR-K5>。日本国内のタグ・ホイヤー直営店で限定発売中です。 +htt…" +11/30/2017,Sports_celeb,@keinishikori,"RT @usopen: #WaybackWednesday: + +Old school Nishikori.... + +🎥: @keinishikori vs Ferrer. + +📅: 2008 #USOpen https://t.co/4wRjCKqzGF" +11/29/2017,Sports_celeb,@keinishikori,🤗 🤗 🤗 https://t.co/2oebGkXwBh +11/29/2017,Sports_celeb,@keinishikori,More messages of support! Very nice to feel all this love in Japan https://t.co/HKi4snaAqG +11/29/2017,Sports_celeb,@keinishikori,Today marks a 1000 days until the @Tokyo2020 Paralympics! https://t.co/84fLeyQ1u4 +11/29/2017,Sports_celeb,@keinishikori,👍👍👍👍👍 https://t.co/oOfLYBnbwj +11/29/2017,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: ユニクログローバルブランドアンバサダーの錦織圭選手(@keinishikori)とアダム・スコット選手がUNIQLO CITY TOKYOにご来社! +好評販売中のKAWS x Peanutsコラボアイテムを着用いただきました。 +https://t.…" +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: #ジャガー #XF #SPORTBRAKE が登場。11月27日の発表会ではジャガーのブランドアンバサダー @KeiNishikori 選手を迎え、スポーティな乗り心地とスタイリッシュなエクステリア、こだわり抜いた先進機能を披露した。#錦織圭 #R… +07/02/2018,Sports_celeb,@Canelo,Ánimo eres un chingon @yosoy8a con la frente en alto y seguir adelante 👊🏻 +06/25/2018,Sports_celeb,@Canelo,😂😂😂😂 https://t.co/Fpd9aMhitw +06/22/2018,Sports_celeb,@Canelo,Muchas ganas 👊🏻🔥 https://t.co/nqwtX91hfB +06/12/2018,Sports_celeb,@Canelo,Si con el favor De Dios nos vemos en septiembre 👊🏻 https://t.co/pWX39wc3d5 +05/15/2018,Sports_celeb,@Canelo,"Para informarles que acabo de firmar el contrato con @Vada_Testing para pruebas durante todo el año. + +I want to le… https://t.co/optS8gb96X" +05/02/2018,Sports_celeb,@Canelo,❤️ https://t.co/0GnjDLSPFA +05/02/2018,Sports_celeb,@Canelo,👍🏻 https://t.co/fmjss1Wo3W +05/02/2018,Sports_celeb,@Canelo,No se 100% por que con el que se hizo la colaboración es el experto... pero a lo que se y estuve informado no es pi… https://t.co/tXQjLFcnS1 +05/02/2018,Sports_celeb,@Canelo,"RT @FundacionMGAS: Cuando los GRANDES d corazon,fortaleza y generosidad se encuentran,generan milagros, GRACIAS @Canelo GRACIAS,Israel Gonz…" +04/25/2018,Sports_celeb,@Canelo,"RT @FundacionMGAS: apart from being one of the best bóxers of the World,proud Mexican @Canelo its always helping the ones in need, small p…" +04/08/2018,Sports_celeb,@Canelo,"RT @revistaproceso: #LaPesadilladelClembuterol, en carne propia / una investigación de @beatrizapereyra https://t.co/1XsILKYICC" +03/28/2018,Sports_celeb,@Canelo,Con mucho gusto... sería un privilegio para mi conocer a ese niño🙏🏻. Solo que ahorita se me complica pero déjeme a… https://t.co/7KEsTI7Ku2 +03/23/2018,Sports_celeb,@Canelo,No la chingues no pidas eso acuérdate que me quiero desquitar por culero 👊🏻 saludos 👍🏻 https://t.co/UOQJw8coW5 +03/15/2018,Sports_celeb,@Canelo,Que hermosa!!! Feliz cumpleaños a tu abuelita que dios la bendiga y muchas gracias por su apoyo 👏🏻 https://t.co/nJf2nppocg +03/13/2018,Sports_celeb,@Canelo,"Gracias Los Angeles, nos vemos en Las Vegas// Thank you Los Angeles, see you in Vegas #teamcanelo#caneloggg2#5demayo https://t.co/b8Vv9C8m82" +03/08/2018,Sports_celeb,@Canelo,Feliz día internacional de la mujer👧🏼 que para mi todos los días son de la mujer 🤷🏼‍♂️😊 +03/08/2018,Sports_celeb,@Canelo,"Nos vemos el 5 de mayo. Gracias por apoyarme ! 🇲🇽 See you on May 5, Thanks for your support #CANELOGGG2#teamcanelo https://t.co/PMtZkxi6TU" +02/23/2018,Sports_celeb,@Canelo,Animo @Carolina_Moran estoy contigo #Reto4Elementos +02/21/2018,Sports_celeb,@Canelo,Muchas gracias @Torres que gran detalle 👌🏻 te veo el 5 de mayo compa 👊🏻⚽️ https://t.co/jj7P8pHFjg +12/25/2017,Sports_celeb,@Canelo,Feliz navidad que Dios los bendiga 🙏🏻🎁 https://t.co/CMuuHUZgWq +12/03/2017,Sports_celeb,@Canelo,Éxito y disfruta de tu vida y tus grandes logros campeón. @RealMiguelCotto +11/03/2017,Sports_celeb,@Canelo,"RT @reformaclub: Carlos Slim Helú, Chase Carey, @Canelo Carlos Slim Domit y Carlos Bremer, orgullosos de ser parte del @mexicogp https://t.…" +11/03/2017,Sports_celeb,@Canelo,RT @TeamSportsLat: ¿La @nflmx es más popular en México? Los # de los equipos de esta liga son los que más veces fueron tendencia en septiem… +10/31/2017,Sports_celeb,@Canelo,Saludos a todos buen día 👊🏻 https://t.co/s6CKdSCbst +10/06/2017,Sports_celeb,@Canelo,RT @Rosinalopez: @Canelo ahora todo mundo es #caneloteam pero yo te he amado desde siempre https://t.co/DDa0zkdJVh +09/20/2017,Sports_celeb,@Canelo,Lamento mucho las pérdidas y daños en México.Me uno a las oraciones. El día de mañana será otra pelea mas que vencimos.#unidosMéxico 🇲🇽🙏🏼 +09/16/2017,Sports_celeb,@Canelo,Estoy listo para el #THOR-down! ⚡ #CaneloGGG 👊 @MarvelStudios #ThorRagnarok #ad +09/16/2017,Sports_celeb,@Canelo,I’m ready to #THOR-down! ⚡ #CaneloGGG 👊 @MarvelStudios #ThorRagnarok #ad +09/15/2017,Sports_celeb,@Canelo,Pesaje 160 Libras 👊🏼 Weigh in ✅ #TeamCanelo #CaneloGGG https://t.co/NftkT5nH09 +09/15/2017,Sports_celeb,@Canelo,Gracias a toda la prensa por asistir el día de hoy. 👊🏼🇲🇽 https://t.co/5PXcHBBtK9 +09/15/2017,Sports_celeb,@Canelo,Quiero agradecer a mi equipo y a todos los que participaron en este detalle. Muchas gracias 🙏🏽🇲🇽… https://t.co/g8vquOwzyU +09/15/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: Are you with @Canelo? + +Use the hashtag #Canelo to unlock his special emoji and show your support! #CaneloGGG https://…" +09/13/2017,Sports_celeb,@Canelo,Game on! 👊🏼 #3días #16deSeptiembre #CaneloGGG #TeamCanelo https://t.co/80aVJCJXjc +09/13/2017,Sports_celeb,@Canelo,"RT @UnderArmour: ""When I was born, fear was gone."" - @canelo 👊💥🇲🇽 https://t.co/MGUXLfled4" +09/13/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: Canelo vs Golovkin - Final Press Conference https://t.co/g1rpSf0ua9 +09/13/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: Proceeds of #CaneloGGG will go to Hurricane Harvey and Irma relief efforts in Texas & Florida. Thanks to the champions… +09/11/2017,Sports_celeb,@Canelo,Ya casi es hora. Time to roll up our sleeves. #TeamCanelo #CaneloGGG #MiEra https://t.co/q7MBo2bUSe +09/09/2017,Sports_celeb,@Canelo,Afortunado. @CANELOTEAM #TeamCanelo https://t.co/ZtGRtx6yIs +09/09/2017,Sports_celeb,@Canelo,El ha sido mi mayor inspiración. 👊🏼 Every great achiever is inspired by a great mentor. #Boxing #MiEra #CaneloGGG… https://t.co/1JcTuDpPBP +09/09/2017,Sports_celeb,@Canelo,RT @HBOPR: .@HBO Sports is the fight fan's destination for #CaneloGGG: https://t.co/vSki3dhNTQ https://t.co/YIsZF7XODq +09/09/2017,Sports_celeb,@Canelo,¡Atrévete! 👊🏼 Bring it! #TeamCanelo @CANELOTEAM @FrencHMonTanA https://t.co/mV24Cwza6b +09/08/2017,Sports_celeb,@Canelo,"Por mi familia, por mi gente y por mi país. ¿Tu por quién peleas? +For my family, my people & my country. Who do yo… https://t.co/rAzeQq4wN9" +09/08/2017,Sports_celeb,@Canelo,Nada es fácil pero vale la pena al final👊🏻🔥 #teamcanelo #16deSeptiembre #canelovsggg #MiEra https://t.co/YXThrWoNDi +09/07/2017,Sports_celeb,@Canelo,RT @CANELOTEAM: Ahí vamos !👊🏻🇲🇽👊🏻#teamcanelo#mexicanfighter#nomexicanstyle https://t.co/RBLBQ9INWR +09/06/2017,Sports_celeb,@Canelo,"Se fuerte, pero mentalmente indestructible. 👊🏼 Be strong but mentally indestructible. #Boxing #MiEra #CaneloGGG… https://t.co/YOW4PZzoB1" +09/06/2017,Sports_celeb,@Canelo,Nadie debe detenerte para alcanzar tus metas. 👊🏻 Focus on your goals. You're unstoppable. #Boxing #CaneloGGG #MiEra https://t.co/JhRxwRumFm +09/05/2017,Sports_celeb,@Canelo,Para ganar la suerte no existe. 👊🏼Wake up and get after it! There's no such thing as luck. 🎧@youngrobstone #MiEra… https://t.co/nWfJfvoeMQ +09/05/2017,Sports_celeb,@Canelo,12 Días https://t.co/hXBkhPnZJV +09/04/2017,Sports_celeb,@Canelo,Listo para noquear 👊🏻🔥 ready to KO✅ #MiEra #Canelovsggg #16deseptiembre #12days https://t.co/oTKDs8sZSW +09/03/2017,Sports_celeb,@Canelo,"@caneloteam siempre en mi esquina, listos para lo qué venga.Disfruten su domingo🥊Caneloteam Always in my corner, re… https://t.co/rMrVO5tQaN" +09/03/2017,Sports_celeb,@Canelo,Vamos a luchar juntos por esta causa y por nuestros amigos en Houston. 👊🏼 #HurricaneHarvey https://t.co/5O9LNUsqsO https://t.co/4eLMq2znFa +09/02/2017,Sports_celeb,@Canelo,RT @HBOboxing: TONIGHT: @Canelo + @GGGBoxing go Under the Lights with @MaxKellerman + @RealRoyJonesJr to preview their Sept. 16 showdown. T… +09/02/2017,Sports_celeb,@Canelo,Tengo hambre de gloria. Gracias @ForbesMexico 🔥Hungry for #Glory 👊🏼 https://t.co/otI9zAVSCj +09/02/2017,Sports_celeb,@Canelo,¿Estan listos? 👊🏼 Are YOU ready? 📷 @seeyouringside #MiEra #Boxing #MyLegacy #CaneloGGG https://t.co/7F4ibGi4DS +09/02/2017,Sports_celeb,@Canelo,¡Buenos días! Recuerden qué para ganar no hay días dé descansó. 👊🏻 Wake up and get after it! #nodaysoff #MiEra #tea… https://t.co/AMgh5NQ2YO +09/02/2017,Sports_celeb,@Canelo,15 días más🔥 #16deSeptiembre #Canelovsggg https://t.co/SE7wx6Rnr5 +09/01/2017,Sports_celeb,@Canelo,Empezando a entrenar 🥊 Starting today's training 💪🏻 #MiEra #Teamcanelo https://t.co/nIudiV4tm7 +09/01/2017,Sports_celeb,@Canelo,Hoy con todo ya es viernes 👊🏻 I woke up in #BeastMode 🥊 MiEra https://t.co/c4odya7m9p +09/01/2017,Sports_celeb,@Canelo,¿Ya casi? #16desept 😏 Is it #Sept16 yet? 👊🏼 #boxing #MiEra #MyLegacy #CaneloGGG https://t.co/zIsG1TvIAJ +08/31/2017,Sports_celeb,@Canelo,Es un gran honor para mí!!👏🏻👏🏻 https://t.co/3ocJYMuvgf +08/31/2017,Sports_celeb,@Canelo,Gracias por hacerme parte de esta portada @hauteliving y todo el equipo @fabricetardiue @tajvstaj @msvioletcamacho… https://t.co/PjPk1LS78A +08/31/2017,Sports_celeb,@Canelo,Están listos para el 16 de septiembre? 🥊 You guy's ready for September 16th #MiEra #mylegacy #CaneloGGG https://t.co/7GiycAfJXo +08/30/2017,Sports_celeb,@Canelo,Realmente aprecio todo el apoyo ayer en Los Ángeles. Esta próxima victoria será para todos los que creyeron en mí.… https://t.co/JPhqQ0emTB +08/28/2017,Sports_celeb,@Canelo,¡Los espero este lunes 28 de agosto en el Microsoft Square a las 10:30! 👊🏼Can't wait to meet you on Monday 28 at Mi… https://t.co/rlYA2fP38S +08/27/2017,Sports_celeb,@Canelo,🤦🏼‍♂️ +08/27/2017,Sports_celeb,@Canelo,Winning is what you put into it. Thanks @HennessyUS for believe in my dedication. #CaneloGGG https://t.co/w2oRDOASmi +08/27/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: The best fight in boxing is still to come. #CaneloGGG https://t.co/Eo4cepRNjz +08/26/2017,Sports_celeb,@Canelo,"RT @HBOboxing: Go inside @Canelo & @GGGBoxing's preparation for their Sept. 16 fight with 24/7 #CaneloGGG, premiering tonight after #CottoK…" +08/24/2017,Sports_celeb,@Canelo,"¿Ya están listos para el lunes? 👊🏼 Who's coming Monday? #LosAngeles +📅 Aug 28 @MYLALIVE +⏰ Fan Arrival 10:30am PT -… https://t.co/3SeBk0rm52" +08/24/2017,Sports_celeb,@Canelo,La grandeza se logra a través de las cosas pequeñas que hacemos diario. 👊🏼 Greatness is a lot of small things done… https://t.co/YRNjqXmZQf +08/23/2017,Sports_celeb,@Canelo,"Se acerca el momento 🥊 The time is near #MiEra +IAmBoxing Watch #CaneloGGG Sept 16 at https://t.co/W2nMZOU8QV Onlin… https://t.co/Dout00vmCQ" +08/23/2017,Sports_celeb,@Canelo,Empezamos desde abajo #familia #lealtad 🥊We started from the bottom #family #loyalty 👊🏻 #TEAMCANELO https://t.co/wqPu8VRchp +08/22/2017,Sports_celeb,@Canelo,Team Canelo! Los espero en Los Ángeles este lunes 28 de agosto. ¡No falten! 👊🏼 https://t.co/oxap4tRsT7 +08/20/2017,Sports_celeb,@Canelo,¿Qué están haciendo este fin de semana? #disciplina #enfocado 🇲🇽 What are you doing this weekend? #discipline… https://t.co/zcREFVzT14 +08/19/2017,Sports_celeb,@Canelo,Ese momento donde no hay límites y solo tienes que seguir. 🥊 That moment where there are no limits and you just hav… https://t.co/swUgknDXvH +08/17/2017,Sports_celeb,@Canelo,"Espero que el mundo esté listo para lo que viene en 30 días, Esta es Mi Era! 👊🏼 #realboxing 🎬 @influencesinc 🎼… https://t.co/lx9JQyLmEM" +08/16/2017,Sports_celeb,@Canelo,"Habrá sudor, sangre y dolor, pero valdrá la pena 👊🏼 There will be sweat, blood & pain, but it'll be worth it.#Sept1… https://t.co/VmIDJC5dZx" +08/14/2017,Sports_celeb,@Canelo,"RT @CANELOTEAM: El triunfo no es negociable,es ganar o ganar!👊🏻🇲🇽👊🏻#disciplinaferrea#viejaescuela#mexicanfighter#NOmexicanstyle" +08/12/2017,Sports_celeb,@Canelo,"""Lo que estás pensando es en lo que te estás convirtiendo"" +""What you are thinking is what you are becoming""#Muhamma… https://t.co/gEZB3VwG6T" +08/10/2017,Sports_celeb,@Canelo,"""I Am Boxing"" a special short film narrated by @icecube & Don Chargin. Thank you for all the support. This is our e… https://t.co/XU6Ghwnazl" +08/06/2017,Sports_celeb,@Canelo,RT @jaimecamil: Ya viendo bien la foto @Canelo la gorra sí incrementa la guapura eh! #graciasporlaayudadita 😳😜🤣 #teamcanelo https://t.co/yZ… +08/06/2017,Sports_celeb,@Canelo,"RT @NoelSchajris: Gracias @Canelo !! La pelea del 16/09 es tuya campeón!! #teamcanelo🇲🇽 +https://t.co/ckA4Y860Hw +@jaimecamil https://t.co/…" +08/05/2017,Sports_celeb,@Canelo,RT @jaimecamil: #teamcanelo @Canelo https://t.co/yZIHCFK4Bt 🥊💥 https://t.co/Nt1cYSn2sO +08/02/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: #CaneloGGG is a real fight, not for show. - @canelo. #CampLife Canelo talks w/ @SInow, while @HennessyUS preps for a…" +08/01/2017,Sports_celeb,@Canelo,RT @HBOboxing: .@HBO to air Under the Lights: Canelo/Golovkin on Sept. 2 at 10 PM ahead of #CaneloGGG on Sept. 16 https://t.co/KOaVeZTrH4 h… +07/31/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: #CampLife @canelo on his daily 6:00am morning run in preparation for Sept 16! #CaneloGGG 47 days away!! https://t.co/w… +07/28/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: 🚨Three belts on the line Sept 16! @Canelo will defend his Lineal and Ring Magazine titles and fight for the WBA and IB… +07/26/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: .@Canelo in full beast mode as he prepares for Sept 16! + +#CaneloGGG 52 days to go... #TeamCanelo RT! https://t.co/CUo…" +07/21/2017,Sports_celeb,@Canelo,RT @DavidAugustInc: A great fighter + great clothes = the perfect fighting combination. Feliz Cumpleaños @Canelo #teamdavidaugust https://… +07/18/2017,Sports_celeb,@Canelo,RT @boxingphotos: Pasesela chingon en su día compa Saul 👊🇲🇽 @Canelo #niveles #CaneloGolovkin https://t.co/3LQXFRlYqD +07/11/2017,Sports_celeb,@Canelo,You’ve Just been Buzzed! https://t.co/Ful2TF8YUf #CaneloGGG 9.16.17 #HBOPPV +06/30/2017,Sports_celeb,@Canelo,"RT @Constntino: N o B o x i n g, N o L i f e. @Canelo 🥊 https://t.co/q5qAmtRZKc" +06/29/2017,Sports_celeb,@Canelo,RT @laughingmeel: No solo es mi boxeador favorito y el campeon que necesitábamos. Si no que gracias a el empece a boxear yo tambien💪#TeamCa… +06/29/2017,Sports_celeb,@Canelo,RT @jsphprzz: Because my dude is a monster.👊 https://t.co/Fdsr74kljQ +06/29/2017,Sports_celeb,@Canelo,RT @jrd627: @Canelo vamos! September 16th. Best thing for boxing in decades! Can't wait for the fight and hope you win! https://t.co/Evjs2… +06/29/2017,Sports_celeb,@Canelo,RT @purplepig101: Voted for the man that I would leave my husband for @Canelo 😍😍🥊🥊 https://t.co/o1sQr7uRZP +06/29/2017,Sports_celeb,@Canelo,RT @Yuhhboy_david: @Canelo vote para el mejor🥇🥇🥇🥊🥊🥊 https://t.co/VplrMUpto1 +06/29/2017,Sports_celeb,@Canelo,"RT @ZonaGuerreraOF: ¡Vamos @Canelo! 🥊 +(SÍGUEME 👈• y cuando ganes invita a ver #CaneloGGG) 🥊 +#ZonaGuerrera 🇳🇬 https://t.co/ZE8dGnolpn" +06/29/2017,Sports_celeb,@Canelo,RT @orlandomoreno99: Viva Mexico! 🇲🇽 Voted for the best! @Canelo https://t.co/QxpOqnALCB +06/29/2017,Sports_celeb,@Canelo,RT @martinezbarre10: @Canelo listo mi voto para el mejor boxeador del momento libra por libra y el más exitoso!! https://t.co/Dz4nTkD9dd +06/29/2017,Sports_celeb,@Canelo,RT @erick_d2b: Gotta vote for the best🥊🏆 Puro CANELO🥇 @Canelo https://t.co/xinztKcjEH +06/29/2017,Sports_celeb,@Canelo,RT @drakelopez22: Voted for the goat🇲🇽👊🏼 @Canelo https://t.co/m8Hgn0sh4g +06/29/2017,Sports_celeb,@Canelo,RT @TiTo118: Let's support our own 👍🏼 🇲🇽 @Canelo https://t.co/6pczDh4i88 +06/29/2017,Sports_celeb,@Canelo,RT @ErinHamilton23: Gotta vote for my favorite @Canelo https://t.co/oxNEbvsE8W +06/29/2017,Sports_celeb,@Canelo,RT @KobiBenson: @Canelo for best international athelete easy https://t.co/CqOZR2i9sF +06/29/2017,Sports_celeb,@Canelo,RT @MissLolli44: @Canelo I think the choice was obvious 😃🏆💕💕 https://t.co/xK8w2uOGWv +06/29/2017,Sports_celeb,@Canelo,RT @0161Darren: Voted for the best in the world @Canelo 🐐🙌🏾 September GGG is getting KO 👊🏽 https://t.co/8w0msHjyFb +06/29/2017,Sports_celeb,@Canelo,RT @desireeher_: Voted for the best @Canelo 🥊🥊🥊🤤 https://t.co/pUW1IzVwn3 +06/29/2017,Sports_celeb,@Canelo,RT @iCobrah: Yo nomas voto por los Chingones! 🥊🇲🇽 @Canelo #MiEra https://t.co/N1MQ90FUPG +06/29/2017,Sports_celeb,@Canelo,RT @tbe_christian: This is between Ronaldo and Canelo. I gotta go with @Canelo who's gonna get a big win vs GGG in September. Been most dom… +06/29/2017,Sports_celeb,@Canelo,RT @SantiGG27: Tienes que ganar te lo mereces @Canelo https://t.co/FG3tDzu9yY +06/29/2017,Sports_celeb,@Canelo,RT @kyngxaldo: VOTE FOR @Canelo ‼️ el campeón mundial 🇲🇽 https://t.co/lJWjArLvOf +06/29/2017,Sports_celeb,@Canelo,RT @amandapanda_5: Gotta vote for my fellow Mexican 🇲🇽 @Canelo 🇲🇽🇲🇽🇲🇽🇲🇽🇲🇽 https://t.co/hzHKvlG2IL +06/29/2017,Sports_celeb,@Canelo,RT @georgiexusa: @Canelo for the ESPY's Best International Athlete obviously! 🇲🇽 https://t.co/JFyDdZD1lv +06/29/2017,Sports_celeb,@Canelo,RT @JaymesJones98: Vote for @Canelo 👊 Can't wait for September 😎 https://t.co/da2htsxGra +06/29/2017,Sports_celeb,@Canelo,RT @GiulianoGhisio: Vamos @Canelo!! si lo ganas regálame unas entradas para el evento contra Golovkin jaja 💪💪🥊🥊 https://t.co/RoRcXIHaLk +06/29/2017,Sports_celeb,@Canelo,RT @Boxerboy1799: @Canelo puro pa delante viejon! 👊🏼💯🥊 https://t.co/Imn1xXLrDS +06/29/2017,Sports_celeb,@Canelo,"RT @staywithmeEd: @canelo ganaras porque eres el mejor, obvio 😌 https://t.co/VYcgPMPhtK" +06/29/2017,Sports_celeb,@Canelo,RT @CarlosGaMora: Listo tu voto campeón!👊🏻 @Canelo https://t.co/voMtl9xM9l +06/29/2017,Sports_celeb,@Canelo,"RT @TonisBonilla: Vote for the future WINNER on September 16th, @Canelo Alvarez! 🥇👊🏻🥊 https://t.co/uWCFnVuSDZ" +06/29/2017,Sports_celeb,@Canelo,RT @SilvitaValle: Listo ✔️ eres el mejor chiquito 👊😍 @Canelo https://t.co/MvdaJOJ5Y6 +06/29/2017,Sports_celeb,@Canelo,RT @LaCanela_Isa: Siempre apoyando a Saul!!! VOTEN 🙏🏼😍 bendiciones @Canelo @espn #TEAMCANELO https://t.co/8WboufTYUZ +06/29/2017,Sports_celeb,@Canelo,RT @jquintana099: Voten por @Canelo. Es un orgullo de 🇲🇽! Eres el #️⃣1️⃣ en 🥊 https://t.co/J9xGmRND7g +06/29/2017,Sports_celeb,@Canelo,RT @oscaroriginal11: Es el mejor🤷🏽‍♂️🇲🇽representando a Mexico @Canelo https://t.co/7z3j354Vp5 +06/29/2017,Sports_celeb,@Canelo,RT @javitxuu88: Al canelo oiste guaje @Canelo https://t.co/zSVGK6XvqW +06/29/2017,Sports_celeb,@Canelo,RT @Estrell15998519: Apoyando como siempre al más chingon 🇲🇽🇲🇽🇲🇽👊🏻👊🏻👊🏻🙊🙊🙊@Canelo https://t.co/5V4fOr5DGF +06/29/2017,Sports_celeb,@Canelo,"RT @StephenSanchezz: I Voted For My Idol The Best Boxer And Champ! CANELO 100%!! +Arriba Guadalajara! 🇲🇽 @Canelo https://t.co/xqBJmK1hA5" +06/29/2017,Sports_celeb,@Canelo,RT @MisssMargie: Voted for @Canelo of course 💘 https://t.co/wrtoxlgPSl +06/28/2017,Sports_celeb,@Canelo,RT @jose_andrada: Full con @Canelo ya te votamos wuero. https://t.co/d46PvyaQpD +06/28/2017,Sports_celeb,@Canelo,RT @OhHeyItsStephy: Vote my love @Canelo as best international athlete 😻😻😻 https://t.co/WQ7tFe3Frp +06/28/2017,Sports_celeb,@Canelo,RT @Cocomosqueda: Listo @Canelo eres THE BESSST !!! 🥊🔝💯 https://t.co/mPcE8V2ffx +06/28/2017,Sports_celeb,@Canelo,RT @Letiiciialvz: @Canelo vamos por ese premio!!! https://t.co/EGfEPHYrrx +06/28/2017,Sports_celeb,@Canelo,RT @aruuizz: @Canelo listo el voto campeón! https://t.co/7Iu6gkAkFl +06/28/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: .@Canelo is nominated for a 2017 @ESPYS Award! Best International Athlete 👊🏽🔥 Vote for him now! https://t.co/jhJOvEIKf… +06/27/2017,Sports_celeb,@Canelo,"RT @ESPYS: With @Canelo Alvarez's TKO over Liam Smith... he became the WBO light middleweight champion! + +Vote: https://t.co/lXhnPfq696 htt…" +06/26/2017,Sports_celeb,@Canelo,👌🏻🔥 https://t.co/PDpBU5QSeq +06/16/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: NYC & LA! Join us next week as we make our press stop in your city! #CaneloGGG https://t.co/kEOdtW9sZq +06/13/2017,Sports_celeb,@Canelo,Monster 👊🏻 https://t.co/ZuGXUYXIMm +06/06/2017,Sports_celeb,@Canelo,Viva Mexico 🇲🇽 https://t.co/CqlPaL7lCl +06/06/2017,Sports_celeb,@Canelo,#CaneloGGG 👊🏻👊🏻 De regreso a casa en @TMobileArena. Nos vemos en septiembre. 💪🏻 #MiEra https://t.co/lIdGPaYoMm +06/05/2017,Sports_celeb,@Canelo,🐎 https://t.co/L3NMeho3Gw +05/31/2017,Sports_celeb,@Canelo,POWER 👊 #CaneloChavezJr #MiEra https://t.co/RiziljHMHU +05/31/2017,Sports_celeb,@Canelo,FUERZA 👊 #CaneloChavezJr #MiEra https://t.co/eczncKEpYK +05/30/2017,Sports_celeb,@Canelo,Buenos días 🌞 https://t.co/jXbUgiMzvB +05/29/2017,Sports_celeb,@Canelo,Do you wanna take a shower ? 🚿 https://t.co/cVuEHId6RE +05/26/2017,Sports_celeb,@Canelo,Preparing... 👊 #TEAMCANELO #MiEra https://t.co/ledmhYmoWj +05/26/2017,Sports_celeb,@Canelo,Preparándome... 👊 #TEAMCANELO #MiEra https://t.co/JdZf0BgpZw +05/25/2017,Sports_celeb,@Canelo,😎 https://t.co/qNGjM7rWAN +05/24/2017,Sports_celeb,@Canelo,#CaneloGGG 16 de septiembre 👊🏻👊🏻 https://t.co/OngQjmPA7I +05/19/2017,Sports_celeb,@Canelo,Saludos 🤤 https://t.co/7KQLIDjuFW +05/19/2017,Sports_celeb,@Canelo,Thank you to my friends and family for all the support during Fight week 👊🏻👊🏻 Now I'm focused on September 16… https://t.co/oiViFtB0aW +05/19/2017,Sports_celeb,@Canelo,Gracias a mis amigos y a mi familia por todo el apoyo durante la semana de la pelea #CaneloChavezJr. 16 de septiemb… https://t.co/LSJ6jusD09 +05/19/2017,Sports_celeb,@Canelo,RT @HennessyUS: Confidence makes the champion. @Canelo Alvarez’s lifelong trainer taught him to draw strength from adversity. #RespectTheRe… +05/18/2017,Sports_celeb,@Canelo,Luck is for the mediocre 🔥 https://t.co/fDCzDprYMG +05/16/2017,Sports_celeb,@Canelo,👊✌️ https://t.co/T8pDa2Kts5 +05/13/2017,Sports_celeb,@Canelo,@rojas711 Ya lo puse en mi Instagram saludando a la señora Elenita de hecho se lo mandamos directo 👏🏻 saludos y gra… https://t.co/lvxxwJq41I +05/12/2017,Sports_celeb,@Canelo,"RT @HBOPR: .@HBO Sports presents a replay of #CaneloChavezJr this Saturday, May 13 at 10:05PM: https://t.co/DxnFGoObRh https://t.co/UjJe60v…" +05/12/2017,Sports_celeb,@Canelo,Terminando de hacer un poco de ejercicio 👊🏻💦 https://t.co/KGyCcfQh9B +05/12/2017,Sports_celeb,@Canelo,"RT @PepeAguilar: ¡Mi avión no arrancó, Canelo aguántame! Justo ahora en #ElVlog 067 https://t.co/2nUnDjxopI ^Staff Pp https://t.co/1F1dZnuu…" +05/12/2017,Sports_celeb,@Canelo,"Thank you to my family, #TEAMCANELO, and all my fans for the support last week for #CaneloChavezJr 👊🏻👊🏻🇲🇽 https://t.co/5piauk8ZwU" +05/12/2017,Sports_celeb,@Canelo,Gracias a #TEAMCANELO y a todos los fans por su apoyo la semana pasada. #CaneloChavezJr 👊🏻👊🏻🇲🇽 https://t.co/IXCQF9vri3 +05/11/2017,Sports_celeb,@Canelo,Madre santa ❤ https://t.co/JRsbhLffYK +05/10/2017,Sports_celeb,@Canelo,RT @HBOPR: .@HBOboxing's #TheFightGame with Jim Lampley returns with a new edition tonight at 11PM on @HBO: https://t.co/Db0OlcS4RN +05/10/2017,Sports_celeb,@Canelo,Feliz diA para todas ❤️ https://t.co/H6PqFTO4K9 +05/08/2017,Sports_celeb,@Canelo,♠️♣️♥️♦️🃏 https://t.co/nqOIl71Dof +05/07/2017,Sports_celeb,@Canelo,La noche de la pelea #CaneloChavezJr 👊🏻👊🏻🇲🇽 Lo mejor lo verás el 16 de septiembre #CaneloGGG #TEAMCANELO https://t.co/W3AQRbHYdV +05/07/2017,Sports_celeb,@Canelo,#CaneloChavezJr Fight Night 👊🏻👊🏻🇲🇽 September 16th is coming up... #CaneloGGG #TEAMCANELO https://t.co/u3MXK1zOme +05/07/2017,Sports_celeb,@Canelo,Last night was for Mexico 🇲🇽👊🏻 Thank you #TEAMCANELO and to my family. Back to training 💪🏻#CaneloChavezJr #CaneloGGG https://t.co/aAD1qd4IlQ +05/07/2017,Sports_celeb,@Canelo,La pelea de ayer fue para México. 🇲🇽👊🏻Gracias #TEAMCANELO y a mi familia. De regreso a entrenar 💪🏻 #CaneloChavezJr… https://t.co/sb1CC19bh5 +05/06/2017,Sports_celeb,@Canelo,Thank you #TEAMCANELO for coming out to the weigh in yesterday. See you at @tmobilearena tonight 👊🏻👊🏻… https://t.co/is4pKh97yd +05/06/2017,Sports_celeb,@Canelo,Gracias #TEAMCANELO por venir ayer al pesaje. Nos vemos en @tmobilearena hoy en la noche #CaneloChavezJr 👊👊 https://t.co/lFvAZcfkdo +05/06/2017,Sports_celeb,@Canelo,164lbs... I'm ready for tomorrow 👊🏻💪🏻 #CaneloChavezJr https://t.co/I0OqLyVgPO +05/06/2017,Sports_celeb,@Canelo,164 Libras. ¡Estoy listo para mañana! 💪🏻 #CaneloChavezJr https://t.co/FsXUvmIQSn +05/05/2017,Sports_celeb,@Canelo,Un día #CaneloChavezJr #TEAMCANELO 👊 https://t.co/moAOLiSNRe +05/05/2017,Sports_celeb,@Canelo,Thank you for all the support at the Grand Arrivals & Press Conferences this week. I'm ready and focused.. May 6th… https://t.co/s5IIXIs2oH +05/05/2017,Sports_celeb,@Canelo,Gracias por todo el apoyo tanto en las conferencias de prensa como en nuestra llegada a Las Vegas. ¡Estamos listos!… https://t.co/47P0aUsSpR +05/03/2017,Sports_celeb,@Canelo,Final #CaneloChavezJr Press Conferences 👊🏻👊🏻 See you on Saturday #TEAMCANELO https://t.co/j4vDUFKfXo +05/03/2017,Sports_celeb,@Canelo,Última conferencia de prensa para #CaneloChavezJr. 👊🏻👊🏻 Nos vemos el Sábado #TEAMCANELO https://t.co/Vrdm9MLi8M +05/03/2017,Sports_celeb,@Canelo,Grand Arrivals Las Vegas.. 4 days until #CaneloChavezJr 👊🏻👊🏻 #MiEra https://t.co/5pffb4HU8q +05/03/2017,Sports_celeb,@Canelo,"Llegando a Las Vegas. 4 días para #CaneloChavezJr 👊🏻👊🏻 +#MiEra https://t.co/0WOvqpCy8l" +05/02/2017,Sports_celeb,@Canelo,👊👏 https://t.co/WmxCAO2rpt +05/02/2017,Sports_celeb,@Canelo,Media Day... Almost time for #CaneloChavezJr May 6th https://t.co/VVI6L1yS3y +05/02/2017,Sports_celeb,@Canelo,Día con los medios... Ya casi llega el día #CaneloChavezJr 6 de Mayo https://t.co/agt6Msbyv0 +04/30/2017,Sports_celeb,@Canelo,Animo hermano así es el boxeo se gana se pierde pero siempre con la cabeza en alto @Inocente02Ramon te quiero mucho ❤ +04/29/2017,Sports_celeb,@Canelo,Pride #CaneloChavezJr🇲🇽 https://t.co/8zKid9afC8 +04/29/2017,Sports_celeb,@Canelo,Orgullo 🇲🇽 #CaneloChavezJr https://t.co/7NcxIcdXie +04/26/2017,Sports_celeb,@Canelo,10 days... #CaneloChavezJr https://t.co/gqQxCEA84O +04/26/2017,Sports_celeb,@Canelo,Así son las mañanas con #TEAMCANELO buenas días 👏🏻 https://t.co/FzRYckCavN +04/25/2017,Sports_celeb,@Canelo,Thank you for coming champ!! the great SUGAR RAY LEONARD 👊 👊 @SugarRayLeonard https://t.co/erJ3cLFLJV +04/25/2017,Sports_celeb,@Canelo,👊✌️ https://t.co/vCdWOq9qTs +04/24/2017,Sports_celeb,@Canelo,🙂👊 https://t.co/OeBVAFxhfb +04/21/2017,Sports_celeb,@Canelo,POTENCIA 👊👊 https://t.co/KlZm4G67Xt +04/21/2017,Sports_celeb,@Canelo,RT @ramos7743: @Canelo yo soy puro #teamcanelo vamos campeon solo faltan 16 dias esta es tu ERA https://t.co/nnENNiBfDp +04/20/2017,Sports_celeb,@Canelo,See you at @jewellasvegas on 5/6 #CaneloChavezJr 👊 https://t.co/lnwB9ouxuv https://t.co/QeAuolcoic +06/30/2018,Sports_celeb,@Aly_Raisman,😊 https://t.co/kHsOOEeCcT +06/23/2018,Sports_celeb,@Aly_Raisman,Ahhhh thank you to the Improper Bostonian & Brian Doben. The shot in the car was so fun to shoot. I felt so cool 😜🙈… https://t.co/W4zgbwMae1 +06/22/2018,Sports_celeb,@Aly_Raisman,"Best way to start the summer! Amazing day full of yoga, meditation, new friends & #AerieREAL @aerie +#SolsticeTSq.… https://t.co/lbL9INpzSW" +06/14/2018,Sports_celeb,@Aly_Raisman,😊 https://t.co/3d7bZXYElG +06/13/2018,Sports_celeb,@Aly_Raisman,"For every unretouched swim photo you share with #AerieREAL, @Aerie will donate $1 (up to $25K) to @NEDA, a non-prof… https://t.co/gnqG80F4qN" +06/13/2018,Sports_celeb,@Aly_Raisman,❤ the swim you’re in! On set with my @Aerie family. A reminder to be kind to yourself— No one has the perfect body… https://t.co/MBNn22iWs4 +06/08/2018,Sports_celeb,@Aly_Raisman,"RT @Simone_Biles: am I allowed to say + +that msu needs to just shut the hell up +y’all disgust me + +oops .... just did https://t.co/Osjoi6dNm2" +06/06/2018,Sports_celeb,@Aly_Raisman,On set with @Cheribundi !!!! #bts #cheribundi #tartcherryjuice #supernaturalsuperfruit https://t.co/coEPAoB2SC +06/04/2018,Sports_celeb,@Aly_Raisman,I am speechless. @michiganstateu what is going on? Enough is enough. Wake up. https://t.co/iVbg6c80ga +06/04/2018,Sports_celeb,@Aly_Raisman,@MagsGotSwag12 See you in July ❤❤❤❤ +06/04/2018,Sports_celeb,@Aly_Raisman,"""We still fight. Enjoy your vacation""" +06/03/2018,Sports_celeb,@Aly_Raisman,A statement made by my sister survivor who is constantly fighting for us. Thank you @R_Denhollander Enough is enoug… https://t.co/IKUqYoC1NY +06/01/2018,Sports_celeb,@Aly_Raisman,.@USC is another painful example of organizations prioritizing money and reputation. Reports were made decades ago.… https://t.co/NA7RwsIboC +06/01/2018,Sports_celeb,@Aly_Raisman,I want to share my support to all of the brave survivors who have come forward and also those who are still sufferi… https://t.co/b9Se1OF3IP +05/31/2018,Sports_celeb,@Aly_Raisman,Love this!!! @BeePrinsloo I can't wait to meet you!!!!!!! 💙💙 https://t.co/aaNYyGcE3q +05/31/2018,Sports_celeb,@Aly_Raisman,💗 https://t.co/K1cKpheHDK +05/31/2018,Sports_celeb,@Aly_Raisman,@BrieClark95 @GymCastic @OtotheBeirne @TheBBSituation @maroon5 Thank you :) +05/31/2018,Sports_celeb,@Aly_Raisman,@SammyHerbert @adamlevine Adam has been SO supportive! He is so great. +05/31/2018,Sports_celeb,@Aly_Raisman,@adamlevine YOU ARE THE BEST!!!! Thanks @adamlevine & @maroon5 +05/31/2018,Sports_celeb,@Aly_Raisman,How can you not be all smiles when you're asked to be a part of @maroon5 music video?? @adamlevine lucky to call yo… https://t.co/CiHPHktsmW +05/31/2018,Sports_celeb,@Aly_Raisman,RT @adamlevine: Thank you so much to everyone involved with this very special project; honored to share this with you all! https://t.co/uDj… +05/16/2018,Sports_celeb,@Aly_Raisman,Thank you @espn @espys & the Ashe family. What an honor. Incredibly proud to stand with the army of survivors. https://t.co/khBmlD0BJn +05/16/2018,Sports_celeb,@Aly_Raisman,Happy birthday @chloeraisman21 Love you!! 💗 https://t.co/3cKIgw4QEx +05/13/2018,Sports_celeb,@Aly_Raisman,Happy Mother's Day to @LynnRaisman and all the amazing moms out there! Thank you for all you do 💕 +05/11/2018,Sports_celeb,@Aly_Raisman,@LaLaBex22 Oh wow! That is so funny. I assumed you said that because of the shirt :) +05/11/2018,Sports_celeb,@Aly_Raisman,"@LaLaBex22 thank you so much for the bracelet!!! (You sent it months ago, I apologize for being so behind on fan ma… https://t.co/NSOppr7J7K" +05/09/2018,Sports_celeb,@Aly_Raisman,Very grateful to @SenBlumenthal @JerryMoran @SenatorCharles @SenFeinstein for their efforts to protect athletes & h… https://t.co/BRFMMPS7s5 +05/06/2018,Sports_celeb,@Aly_Raisman,Sending good energy and vibes to everyone!!! Hope you all are taking time for yourself. Have a great day 💗 +05/06/2018,Sports_celeb,@Aly_Raisman,When you are a bully online or in person it is a reflection on you. How you treat others says a lot about you. We h… https://t.co/KlwJt0T0T3 +05/06/2018,Sports_celeb,@Aly_Raisman,RT @CoreyTheKnapper: Thanks to @Aly_Raisman for inspiring me to take this simple but very important course and personally signing my certif… +05/06/2018,Sports_celeb,@Aly_Raisman,YES every adult should! 42 million people are survivors of child sexual abuse. Take the course help save children!!… https://t.co/36LOYDQyOB +05/06/2018,Sports_celeb,@Aly_Raisman,RT @hracooper: the tutoring center I work for is offering training through @Darkness2Light and I am SO HAPPY ABOUT THAT (but it should defi… +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @JarrellDanielle: I joined @Aly_Raisman to Flip the Switch & got re-trained to prevent child sexual abuse. You can get trained too, use…" +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @TheDsjaaay: I joined @Aly_Raisman to Flip the Switch & got re-trained to prevent child sexual abuse. You can get trained too, use the c…" +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @KregWunderful: I joined @Aly_Raisman to Flip the Switch & got trained to prevent child sexual abuse. You can get trained too, use the c…" +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you!!!! Please continue to help spread the word. Appreciate you! https://t.co/zEsz6JQwRo +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you so much for taking the course. You are awesome!! https://t.co/qptE1mXx3d +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you for helping to save children's lives. Appreciate you so much. You are a leader in your community!! https://t.co/jbWBvx0T6d +05/06/2018,Sports_celeb,@Aly_Raisman,@BeckyRobson910 Thank you so much. I worked SO hard on it so I really appreciate it. +05/06/2018,Sports_celeb,@Aly_Raisman,Amazing day with @Aerie at #USOW2018! Beyond inspired by these strong women. Thank you to each and every single per… https://t.co/hHuK5dND7c +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @nwlc: “Speaking out is never easy... this problem is bigger than Nasser the #metoo movement is not just in gymnastics or in Hollywood,i…" +05/06/2018,Sports_celeb,@Aly_Raisman,Take the training!!!! @Darkness2Light 💪🏻 https://t.co/s6onHJ7go8 +04/30/2018,Sports_celeb,@Aly_Raisman,RT @Darkness2Light: Order @Aly_Raisman's limited edition swimsuit & @Aerie will donate 100% of the sales to Darkness to Light to help preve… +04/30/2018,Sports_celeb,@Aly_Raisman,Yes!!! Thank you for taking the @Darkness2Light course. Appreciate your kindness and character to make the world a… https://t.co/Cufbe5JXVK +04/30/2018,Sports_celeb,@Aly_Raisman,Why do some support abusers over survivors?? Ughhhh it is so disgusting and horrifying. I will never understand it… https://t.co/AfGgKpuZox +04/30/2018,Sports_celeb,@Aly_Raisman,@exegete77 Hahaha it's all crinkled! I can still read it though 😂 +04/30/2018,Sports_celeb,@Aly_Raisman,"@heylookitsdans Thank you so much. I hope so. Just want all athletes and students, everyone to be safe!!!" +04/30/2018,Sports_celeb,@Aly_Raisman,@smars319 Thank you. I really appreciate your support. It means a lot. +04/30/2018,Sports_celeb,@Aly_Raisman,Devastated to hear about the many gymnasts in Brazil who have been abused. Survivors must be heard & justice must b… https://t.co/CqU3WXCdOm +04/29/2018,Sports_celeb,@Aly_Raisman,@JJ_Denhollander @lindseylemke She is!!!!!! Such a rockstar for all of us!!!! +04/29/2018,Sports_celeb,@Aly_Raisman,MSU & USAG. There are still people working at both organizations who knew and enabled Nassar to thrive. It's danger… https://t.co/1CN7vgeLbu +04/29/2018,Sports_celeb,@Aly_Raisman,Still can't believe I had the honor of meeting @TaranaBurke the other night!!! 🙈🙈🙈 +04/29/2018,Sports_celeb,@Aly_Raisman,RT @TaranaBurke: Omg. This made my cry. https://t.co/M45CKYhFP2 +04/29/2018,Sports_celeb,@Aly_Raisman,Please visit @Darkness2Light to learn more about how you can save someone from abuse. We must prevent abuse. I can'… https://t.co/Z053wprnCP +04/29/2018,Sports_celeb,@Aly_Raisman,YOU can save someone from abuse. YOU. The change starts with each of us. (The course is free and I will personally… https://t.co/BZjOm49llm +04/29/2018,Sports_celeb,@Aly_Raisman,"If don't understand why victim shaming is a huge problem and part of the reason why so many people say ""Me Too"" ple… https://t.co/sp2ltV618M" +04/29/2018,Sports_celeb,@Aly_Raisman,Be supportive of one another. Whether or not you are a survivor of any kind of abuse it is still important for you… https://t.co/0vhpXjfVtb +04/29/2018,Sports_celeb,@Aly_Raisman,So proud of you @Simone_Biles NO ONE IS DEFINED BY ABUSE. Shame on those who use abuse to get more clicks or likes… https://t.co/RWv3S8u5lH +04/29/2018,Sports_celeb,@Aly_Raisman,@TeenVogue thank you for your support of survivors. We appreciate you using your platform to help us make change t… https://t.co/TtTiafDGOm +04/29/2018,Sports_celeb,@Aly_Raisman,When you're trying to have a relaxing evening and then you drop your book in the bathtub.... 🙄 +04/29/2018,Sports_celeb,@Aly_Raisman,RT @emrazz: Can you name all 59 women who came forward against Cosby? Can you name half of them? Can you name 5? Would you recognize them o… +04/28/2018,Sports_celeb,@Aly_Raisman,Good luck to the USA gymnasts at #PacRim2018 ❤💙 +04/27/2018,Sports_celeb,@Aly_Raisman,"RT @Darkness2Light: Get educated on how to protect children at no cost! Use @Aly_Raisman's code FLIPTHESWITCH to learn how to prevent, reco…" +04/27/2018,Sports_celeb,@Aly_Raisman,This is amazing!!! Kristin!!!! You're incredible! https://t.co/myzQj6JzuU +04/27/2018,Sports_celeb,@Aly_Raisman,Sister survivors ❤ @R_Denhollander you continue to amaze me. Thank you for being you. Proud to stand with you. https://t.co/EKOZzyG8G9 +04/26/2018,Sports_celeb,@Aly_Raisman,"RT @SarahHauer: ""USA Gymnastics was like a family, and I felt my family let me down. When they heard about abuse, they tried to cover it up…" +04/26/2018,Sports_celeb,@Aly_Raisman,"RT @LaLaBex22: The most unsurprising revelation, what Dateline cut from Aly's interview, Aly told Rhonda about Larry's abuse and well... 40…" +04/25/2018,Sports_celeb,@Aly_Raisman,.@time 100 last night. This was one of my favorite events I've ever been to. I am in awe of all the incredible peop… https://t.co/v94TZLIMkH +04/25/2018,Sports_celeb,@Aly_Raisman,"RT @vincentvanmoe: if you can, support #DenimDay this year by wearing denim on April 25th! https://t.co/pNg8q4XTRL" +04/25/2018,Sports_celeb,@Aly_Raisman,Supporting #DenimDay 💪🏻💪🏻💪🏻 Women do not have to be modest to be respected. Just because someone is wearing a sexy… https://t.co/bX7N2ngmrK +04/24/2018,Sports_celeb,@Aly_Raisman,"RT @Aerie: They got it from their mamas! #AerieREAL Role Models @YaraShahidi, @Aly_Raisman & @Iskra celebrated their role models with a spe…" +04/24/2018,Sports_celeb,@Aly_Raisman,Love you mom! I can't thank you enough for always supporting me through all the ups and downs! Celebrate Mother’s D… https://t.co/bvGYDjKd1P +04/24/2018,Sports_celeb,@Aly_Raisman,@lannadelgrey Thank you for continuously being supportive. If the media doesn't help cover our stories then nothing… https://t.co/vQJ8nayjzl +04/23/2018,Sports_celeb,@Aly_Raisman,My thoughts on safety at college.... https://t.co/ltfjQ3Mmh5 +04/23/2018,Sports_celeb,@Aly_Raisman,"Hour prime time for investigative piece, no interview/scrutiny of current/recent execs of USAG, the org responsible… https://t.co/NZF0QBhU5O" +04/23/2018,Sports_celeb,@Aly_Raisman,RT @DatelineNBC: Aly Raisman on the statement that changed her life #Dateline https://t.co/ZfHrD95AmT +04/22/2018,Sports_celeb,@Aly_Raisman,💪🏻 https://t.co/sUgS23SU41 +04/16/2018,Sports_celeb,@Aly_Raisman,Good luck!!!! 💪🏻💪🏻💪🏻 #BostonStrong💙💛 #BostonMarathon https://t.co/EgR3pkEwlK +04/16/2018,Sports_celeb,@Aly_Raisman,#BostonStrong 💙💛 +04/10/2018,Sports_celeb,@Aly_Raisman,Signing completed @Darkness2Light #FlipTheSwitch certificates. 1 child abused is too many. 1 time is too many. Take… https://t.co/UtAPHcY5vG +04/06/2018,Sports_celeb,@Aly_Raisman,RT @RedSox: This message brought to you by @davidortiz: https://t.co/6ShnqnBzYs +04/06/2018,Sports_celeb,@Aly_Raisman,Boston is the greatest sports city 💪🏻Thank you @redsox & Boston & @davidortiz 😊 https://t.co/8kaZwIkMg1 +04/05/2018,Sports_celeb,@Aly_Raisman,Incredible show!!! @jtimberlake is beyond talented. So nice to meet Justin & @JessicaBiel 😊 https://t.co/EutqGCqhoz +04/01/2018,Sports_celeb,@Aly_Raisman,@HoneyLaBreathet @Final5Forever ❤❤❤ +04/01/2018,Sports_celeb,@Aly_Raisman,@DonnaTspassions @Final5Forever That's so nice. Thanks so much!!! +04/01/2018,Sports_celeb,@Aly_Raisman,@shoshannaclaire @Final5Forever Thank you!! +04/01/2018,Sports_celeb,@Aly_Raisman,RT @Final5Forever: @Aly_Raisman I’m about to start reading your book! I’m so excited!! #FiercebyAly https://t.co/oDOz1npvU9 +04/01/2018,Sports_celeb,@Aly_Raisman,RT @jjcart21: I am proud to take a stand against child sexual abuse alongside @Aly_Raisman and @Darkness2Light. I pledge to #FlipTheSwitch… +03/29/2018,Sports_celeb,@Aly_Raisman,MINI-ME Priscilla ❤ https://t.co/XBtsCXy7JD +03/29/2018,Sports_celeb,@Aly_Raisman,RT @adamlevine: Help my amazing friend @Aly_Raisman spread the word... https://t.co/t9tJNUmC82 https://t.co/9L9sgpzpdc +03/29/2018,Sports_celeb,@Aly_Raisman,RT @23Jasso: Spread the word. #FlipTheSwitch https://t.co/9LmN0gJ8BL +03/29/2018,Sports_celeb,@Aly_Raisman,@bren_hucks You're unstoppable!!!! Inspiration 💪🏻 +03/27/2018,Sports_celeb,@Aly_Raisman,@CoconutCraver Appreciate you so much. Thank you for your kindness!!! +03/27/2018,Sports_celeb,@Aly_Raisman,@JoeAnello Appreciate your support. Thank you. +03/27/2018,Sports_celeb,@Aly_Raisman,My thoughts..... https://t.co/QUtlNYYg6p +03/27/2018,Sports_celeb,@Aly_Raisman,"RT @SInow: Police have arrested ex-Michigan State dean William Strampel, who was Larry Nassar’s boss at the school https://t.co/8bgDImbqsW" +03/26/2018,Sports_celeb,@Aly_Raisman,"Thank U for the continued support of my book, Fierce. I hope you know that you have a voice & deserve to be heard!… https://t.co/KTZG8htHdp" +03/26/2018,Sports_celeb,@Aly_Raisman,RT @TimScha11er: Today is the LAST DAY to enter to win a #timmyheads shirt signed by the entire Boston Bruins team!!! Help us support @TheJ… +03/25/2018,Sports_celeb,@Aly_Raisman,For those of you who do not understand what victim shaming is and why it's so dangerous I urge you to educate yours… https://t.co/7K2lwEvf7a +03/25/2018,Sports_celeb,@Aly_Raisman,I was recently asked if gymnasts should continue wearing leotards. Leotards r not the problem. The problem is the m… https://t.co/1oIem7UAfv +03/23/2018,Sports_celeb,@Aly_Raisman,Yesssss! Thank you for your support. https://t.co/UJJ3pIpdMG https://t.co/w6Gos88usn +03/23/2018,Sports_celeb,@Aly_Raisman,@jennifermalvaro @danibostick This is amazing!! I posted this. THANK YOU. +03/23/2018,Sports_celeb,@Aly_Raisman,"""Justice will not be served until those who are unaffected are as outraged as those who are."" -Benjamin Franklin" +03/19/2018,Sports_celeb,@Aly_Raisman,✨ https://t.co/YzshqjwgXN +03/19/2018,Sports_celeb,@Aly_Raisman,@JessWeiner 💗 +03/19/2018,Sports_celeb,@Aly_Raisman,RT @anika_kukich: best book i have ever read... thank you @Aly_Raisman for being so inspiring ❤️ https://t.co/TN1aQqXMv8 +03/19/2018,Sports_celeb,@Aly_Raisman,RT @iBooks: Olympic gold medalist @Aly_Raisman courageously turned her private journals and struggles into a book. Now she’s using her incr… +03/18/2018,Sports_celeb,@Aly_Raisman,Happy birthday to my little sis ❤❤❤ Love you so much Maddie https://t.co/rF8R1fCgQa +03/17/2018,Sports_celeb,@Aly_Raisman,"RT @theMissyBonner: ‘I hope u find yr reason, & I hope u’ll help others find theirs, too. Finally, I hope u’ll be kind, be determined, be l…" +03/17/2018,Sports_celeb,@Aly_Raisman,Sending 💗to you all. Have a great weekend. Appreciate all the kind people out there who support each other. You kno… https://t.co/VpTApqoZi7 +03/17/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: .@Aly_Raisman is a FIERCE survivor. Shop our #AerieREAL Role Model’s limited-edition Aerie x Aly Super Scoop Swimsuit & we’ll d… +03/14/2018,Sports_celeb,@Aly_Raisman,HAPPY BIRTHDAY @Simone_Biles ❤💗❤ https://t.co/r6gefS8eAJ +03/13/2018,Sports_celeb,@Aly_Raisman,Behind the scenes with @aerie at their swim shoot & Miami store! Make sure to take some time today for yourself. Sp… https://t.co/7HAbSL1AwT +03/10/2018,Sports_celeb,@Aly_Raisman,"So special to spend time with the @aerie team, who works so hard to set a great example for all girls and women. Fe… https://t.co/Xo4ZROmELg" +03/09/2018,Sports_celeb,@Aly_Raisman,RT @CarlaSueNeal: I completed the program today. I urge everyone to! Worth the time to be aware and prevent childhood sexual abuse. #FlipTh… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: #AerieREAL Role Models @Aly_Raisman & @Iskra are headed to Lincoln Road! Join them for a Real Talk this Sunday from 1 to 3pm & s… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @Timwolz10: I just finished full Stewards Plus from @Darkness2Light The most rewarding things Ive done in a long time. All adults shoul… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @KateUpton: Please join @Aly_Raisman and #FlipTheSwitch to prevent child sexual abuse!! Click here for more info: https://t.co/iNijAuw6qm +03/09/2018,Sports_celeb,@Aly_Raisman,@starkunderoos It's free! +03/09/2018,Sports_celeb,@Aly_Raisman,RT @jewald14: I completed the program today. I urge everyone to! Worth the time to be aware and prevent childhood sexual abuse. https://t.c… +03/09/2018,Sports_celeb,@Aly_Raisman,#FlipTheSwitch 42 million Americans are survivors of child sexual abuse. We MUST change that horrifying number. I u… https://t.co/NzCAoWMAfZ +03/08/2018,Sports_celeb,@Aly_Raisman,@alarabofficial Thank you for supporting!! +03/08/2018,Sports_celeb,@Aly_Raisman,@becrandolph @Aerie Thanks for supporting @Darkness2Light +03/08/2018,Sports_celeb,@Aly_Raisman,#HappyInternationalWomensDay! Thankful to be a part of @Aerie effort to promote body positivity and women's empower… https://t.co/fg2zRCBudc +03/08/2018,Sports_celeb,@Aly_Raisman,"RT @Google: For International Women’s Day, we celebrate those working toward a more equal future. Explore top searched trends around women…" +03/08/2018,Sports_celeb,@Aly_Raisman,Pinching myself. Thank you so much @Google I am so honored to be a part of this video. Happy… https://t.co/cdacVwxrop +03/08/2018,Sports_celeb,@Aly_Raisman,RT @mrsnicolephelps: If you work with children please get on and get certified!! Thank you @Aly_Raisman for making this a possibility to ev… +03/08/2018,Sports_celeb,@Aly_Raisman,RT @JamieErdahl: Use the code FLIPTHESWITCH to participate in the course for free. Once you’ve gained this invaluable knowledge — pass it a… +03/08/2018,Sports_celeb,@Aly_Raisman,RT @guskenworthy: It's so important for sports to be a safe space for kids. @Aly_Raisman is doing something to help end child sex abuse - c… +03/08/2018,Sports_celeb,@Aly_Raisman,Thank you for being a part of this incredible program!!! https://t.co/l39Z1OpU1J +03/08/2018,Sports_celeb,@Aly_Raisman,Thank you so much!!!!! Thank you for helping create the change that is so desperately needed @PeytonJulia 💪🏻… https://t.co/hwlslpCb7T +03/08/2018,Sports_celeb,@Aly_Raisman,"RT @MichaelPhelps: This is an important issue in every sport, and I encourage all adults to join me in completing this program. @Aly_Raisman" +03/08/2018,Sports_celeb,@Aly_Raisman,RT @MichaelPhelps: Thx Aly Raisman for making this program available and free!  Each of us needs to do our part to make all sports safer fo… +03/07/2018,Sports_celeb,@Aly_Raisman,RT @Aly_Raisman: Please join the effort to address sexual abuse in sport. I have partnered with Darkness 2 Light to make programming availa… +03/07/2018,Sports_celeb,@Aly_Raisman,RT @Darkness2Light: We're excited to announce our partnership with @Aly_Raisman to #FliptheSwitch to end #childsexualabuse! Take the traini… +03/07/2018,Sports_celeb,@Aly_Raisman,Please join the effort to address sexual abuse in sport. I have partnered with Darkness 2 Light to make programming… https://t.co/E2RBGA7ZX9 +03/03/2018,Sports_celeb,@Aly_Raisman,"Wanted to wish Morgan, Maile, Allan, Yul and the rest of the athletes the best of luck today at the American cup!" +03/03/2018,Sports_celeb,@Aly_Raisman,RT @kathyjohnsongym: Before you can ever dream of standing side-by-side with the survivors you must first go to them and listen to ALL of t… +03/02/2018,Sports_celeb,@Aly_Raisman,"FIERCE MIND. KIND HEART. BRAVE SPIRIT. +New @Lifeisgood shirts available!! https://t.co/xdpKlOCbFf https://t.co/0U5Yyy5ETe" +03/01/2018,Sports_celeb,@Aly_Raisman,💗 https://t.co/sFxFswvbK6 +02/28/2018,Sports_celeb,@Aly_Raisman,".@Playtex_Sport Compact! It fits in your hand, but protects like their full size tampon, so you can always #PlayOn.… https://t.co/uYOpQ7xA8J" +02/26/2018,Sports_celeb,@Aly_Raisman,So good to see Mihai! Having such a great time in Australia! Thank you for having me back for the second year in a… https://t.co/L15uxolBml +02/25/2018,Sports_celeb,@Aly_Raisman,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/25/2018,Sports_celeb,@Aly_Raisman,Congrats!!!! ❤ https://t.co/NaLbwk48wN +02/25/2018,Sports_celeb,@Aly_Raisman,Impressed and inspired by the powerful students who are using their voices to stand up for what they believe in. +02/18/2018,Sports_celeb,@Aly_Raisman,Trying to pack for Australia but my dogs don't want me to take my new @leesasleep blanket. A percentage of profits… https://t.co/oyG7f7nI8W +02/18/2018,Sports_celeb,@Aly_Raisman,RT @loveisasecrett: @Aly_Raisman I have two little brothers - one in first grade & one in seventh grade. Both of them told me how scared th… +02/18/2018,Sports_celeb,@Aly_Raisman,@UmpleBen Thank you so much 💪🏻 +02/18/2018,Sports_celeb,@Aly_Raisman,@GarzonThree @RWitherspoon Sending 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@Aly_Sheehy 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@Ash_JBHMikey @auburncurls Sending ❤ +02/18/2018,Sports_celeb,@Aly_Raisman,@KyleHarper_ @faithlantisxx @washingtonpost There is a lot of news articles that say different info. I'm human no o… https://t.co/nwbP90EvaS +02/18/2018,Sports_celeb,@Aly_Raisman,@KyleHarper_ @faithlantisxx @washingtonpost No need to be mean. Either way too many. No need to shame an 8 year old… https://t.co/VeW257g3T5 +02/18/2018,Sports_celeb,@Aly_Raisman,@jackief_13 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@rpasley Thank you so much. I am doing my best to be the best I can be. Really appreciate your kind support. +02/18/2018,Sports_celeb,@Aly_Raisman,RT @Ash_JBHMikey: @Aly_Raisman I know i had to sit my little brothers down and talk to them about what they should do in case that happens.… +02/18/2018,Sports_celeb,@Aly_Raisman,RT @NativeTexan1023: @Aly_Raisman Had a similar convo w/ my 9 y/o. She asked if it will happen at her school. I couldn't honestly look at h… +02/18/2018,Sports_celeb,@Aly_Raisman,"@KyleHarper_ @faithlantisxx This was the 18th school shooting in 45 days. How can you say that these ""events"" almos… https://t.co/WSNJodDXwB" +02/18/2018,Sports_celeb,@Aly_Raisman,RT @faithlantisxx: @Aly_Raisman Saw a post about an 8-year old asking for new shoes bc she didn't want to wear her light-up ones bc a shoot… +02/18/2018,Sports_celeb,@Aly_Raisman,"What are you supposed to tell your little sister when she asks ""what do I do if a shooter comes in? Do I hide in th… https://t.co/g4BvCMbY0v" +02/17/2018,Sports_celeb,@Aly_Raisman,"RT @Simone_Biles: keep your chin up @nathanwchen +I believe in you!!" +02/17/2018,Sports_celeb,@Aly_Raisman,https://t.co/RIaeD1iG64 +02/17/2018,Sports_celeb,@Aly_Raisman,RT @Simone_Biles: hey @Adaripp can I please borrow that top ?!!??!!! #NEEDIT +02/16/2018,Sports_celeb,@Aly_Raisman,RT @RWitherspoon: Heartbroken over the news of another school shooting. This is the 18th in 45 days of 2018. Students & teachers shouldn't… +02/16/2018,Sports_celeb,@Aly_Raisman,"@lindseylemke You are strong, powerful and you have a voice. You are being listened to. So proud and thankful for y… https://t.co/mMBEupNaQ0" +02/14/2018,Sports_celeb,@Aly_Raisman,💪🏻 @SI_Swimsuit https://t.co/iyxEXIjs1Z +02/14/2018,Sports_celeb,@Aly_Raisman,Happy Valentine's Day 💗❤💋 +02/14/2018,Sports_celeb,@Aly_Raisman,😂😂😂 @people https://t.co/skNJBOI4we +02/14/2018,Sports_celeb,@Aly_Raisman,Having a moment to myself 🤗Had the pleasure of shooting with James Macari in Aruba. @si_swimsuit @MJ_Day https://t.co/2Y5U6BVr6v +02/13/2018,Sports_celeb,@Aly_Raisman,Congrats!!!! What a special moment :) Can't wait to give you a hug and congratulate you in person! https://t.co/jPekNSPIZa +02/13/2018,Sports_celeb,@Aly_Raisman,Sending my love and support to Needham through this difficult time. Talia Newfield & Adrienne Garrido you will be m… https://t.co/Ju9ITT5T8F +02/13/2018,Sports_celeb,@Aly_Raisman,Thank you to the @SI_Swimsuit team https://t.co/SbTkGmg5Tr +02/12/2018,Sports_celeb,@Aly_Raisman,@Matt_Dominguez Thank you :) +02/11/2018,Sports_celeb,@Aly_Raisman,I know! 75% of teen girls stop playing sports because they're ashamed of their period. We have to change this!!! It… https://t.co/6xvcTqnZka +02/11/2018,Sports_celeb,@Aly_Raisman,See you all soon! Can't wait to come back to Australia!!! Thanks for having me again @gymworldcup & Gymnastics Aust… https://t.co/NjfPLDNpxy +02/11/2018,Sports_celeb,@Aly_Raisman,Don't be ashamed of your period or afraid to talk about it! 💪🏻AND don't let your period get in the way of doing wha… https://t.co/IWQHELd43Y +02/10/2018,Sports_celeb,@Aly_Raisman,@sarahdvojack You're incredible. Thank you for your support!!! +02/10/2018,Sports_celeb,@Aly_Raisman,@sarahdvojack Wow thank you!!!! You're so talented! +02/09/2018,Sports_celeb,@Aly_Raisman,"Best of luck to the athletes, coaches, and families as they compete! I hope all of your hard work pays off, and you… https://t.co/peXfjm8c5T" +02/09/2018,Sports_celeb,@Aly_Raisman,"RT @TheLeadCNN: .@aly_raisman: “I would love for USA Gymnastics and the USOC to hear this ... since they only care about medals, reputation…" +02/08/2018,Sports_celeb,@Aly_Raisman,I can't believe it but I have been on the New York Times Best Sellers list for 3 months in a row. Thank u for the s… https://t.co/x9Vbg5ezLg +02/07/2018,Sports_celeb,@Aly_Raisman,Thank you @people for recognizing the important issues surrounding abuse. This strong army of survivors are just ge… https://t.co/3vy9YehiF8 +02/03/2018,Sports_celeb,@Aly_Raisman,Will the USOC & USAG be looking into all factors that contributed 2 ALL abuse? There have been many allegations of… https://t.co/9JB9lBGsTC +01/31/2018,Sports_celeb,@Aly_Raisman,Wowwww!!!! This is so cool. Is this even real life??? https://t.co/Dv5pQ5mGwN +01/28/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: See the full video & get to know #AerieREAL Role Model @Aly_Raisman on the blog now! https://t.co/uQzRv54lc5 https://t.co/gEAn3S… +01/28/2018,Sports_celeb,@Aly_Raisman,💪🏻💪🏻💪🏻NO RETOUCHING. @YaraShahidi @Iskra @RachelPlatten @Aerie https://t.co/qCxA66FxEd +01/28/2018,Sports_celeb,@Aly_Raisman,"DREAM COME TRUE. Beyond excited to stand strong with @aerie as a new #AerieREAL Role Model! Together, we want to en… https://t.co/3Y0oxhbW51" +01/28/2018,Sports_celeb,@Aly_Raisman,Good to see officials in Michigan taking steps with an investigation led by Special Prosecutor. If we are to believ… https://t.co/7PhPgyHOPr +01/27/2018,Sports_celeb,@Aly_Raisman,My response to the USOC & Scott Blackmun https://t.co/6Z5l6JrzCm +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: FULL INTERVIEW: Olympic gymnast Aly Raisman speaks out +to the co-hosts of @TheView on Larry Nassar's sentencing hearing, if s…" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @ABC: Aly Raisman to @TheView: ""Our society doesn't allow ourselves to really understand how common abuse is."" https://t.co/PsNCGPQHed" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @ABC: Aly Raisman to @TheView on Larry Nassar: ""Everyone stood up for him...one person enough to complain that he was making them uncomf…" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: Olympic gymnast Aly Raisman on if she sensed any remorse in Larry Nassar: ""I don't think he understands what he really did wro…" +01/26/2018,Sports_celeb,@Aly_Raisman,RT @TheView: Olympic gymnast Aly Raisman on why she decided to speak up at USA Gymnastics doctor Larry Nassar's sentencing hearing along wi… +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: ""THEIR TIME IS UP — ABUSE IS NEVER ... OKAY."" Olympic gymnast Aly Raisman on Larry Nassar's sentencing: ""My work, and the army…" +01/26/2018,Sports_celeb,@Aly_Raisman,RT @ABC: LIVE NOW: Olympic gymnast Aly Raisman joins @TheView following sentencing of disgraced USA Gymnastics doctor Larry Nassar. https:/… +01/25/2018,Sports_celeb,@Aly_Raisman,"According to my knowledge, Larry Nassar did not have a medical license in Texas where we trained for the Olympics.… https://t.co/DljAzV6hD7" +01/25/2018,Sports_celeb,@Aly_Raisman,Army of survivors who are NOT going anywhere 💪🏻 https://t.co/HIJMw5cwgE +01/25/2018,Sports_celeb,@Aly_Raisman,Thank you. I appreciate you all so much. https://t.co/kysEo68g5c +01/23/2018,Sports_celeb,@Aly_Raisman,RT @LawCrimeNetwork: Today is day 6 in the #LarryNassar sentencing hearing. Watch live with analysis https://t.co/jlHGIy5euw +06/30/2018,Sports_celeb,@MikeTrout,"RT @nikebaseball: Made to maximize all 5 tools. +This is the new Nike Force Zoom Trout 5, now on https://t.co/PbeTCV7tXy +https://t.co/JE5gBr…" +06/29/2018,Sports_celeb,@MikeTrout,Baltimore ✈️✈️✈️✈️!!! +06/26/2018,Sports_celeb,@MikeTrout,Boston ✈️✈️✈️✈️✈️✈️!! +06/25/2018,Sports_celeb,@MikeTrout,Kansas City ✈️✈️✈️✈️✈️!!! +06/19/2018,Sports_celeb,@MikeTrout,Big thanks to @FOCOusa & @DrinkBODYARMOR!!! https://t.co/SLUK6DFY1U +06/18/2018,Sports_celeb,@MikeTrout,Anaheim✈️✈️✈️✈️!!! +06/17/2018,Sports_celeb,@MikeTrout,"#HappyFathersDay @JeffreyTrout!! Thank you for always being there. + +To all fathers who are there..THANK YOU!! https://t.co/gxDwbQmusI" +06/15/2018,Sports_celeb,@MikeTrout,RT @Eagles: .@mreeseeagles this one’s for you. https://t.co/r84EW1h5t4 +06/14/2018,Sports_celeb,@MikeTrout,Oakland ✈️✈️✈️✈️✈️!!! +06/13/2018,Sports_celeb,@MikeTrout,It’s alive!!! #ObsessedWithBetter https://t.co/eTMCHUrQMc +06/10/2018,Sports_celeb,@MikeTrout,Seattle ✈️✈️✈️✈️✈️!!! +06/09/2018,Sports_celeb,@MikeTrout,RT @JoelEmbiid: Trust The Process!!!! Find a new slant @KingJames +06/07/2018,Sports_celeb,@MikeTrout,Minnesota ✈️✈️✈️✈️✈️!! +06/07/2018,Sports_celeb,@MikeTrout,@EA3k #FlyEaglesFly +06/05/2018,Sports_celeb,@MikeTrout,RT @cj_wentz: My brother & I are excited to have Wentz Bros Outdoors partner with the Outdoor Channel to become their first digital media s… +06/05/2018,Sports_celeb,@MikeTrout,"Happy 30th @TylerTrout, love you bro!!! Careful getting out of bed these days!!! + +#halfwayto60" +06/04/2018,Sports_celeb,@MikeTrout,RT @PGLocal4: ICYMI: Here's the link to my story with the Angels' @MikeTrout. It was such an enjoyable interview...two guys so passionate… +06/02/2018,Sports_celeb,@MikeTrout,RT @jerrybsocal: We did it! AA Angels are 2018 Tournament Champions!!!! https://t.co/uz0b6NRBcK +06/02/2018,Sports_celeb,@MikeTrout,Tiger 🔥🔥🔥! +06/02/2018,Sports_celeb,@MikeTrout,"RT @Cut4: On April 21st, @whitesox pitcher Danny Farquhar suffered a brain hemorrhage. + +Today, he threw out the first pitch, his first tim…" +06/01/2018,Sports_celeb,@MikeTrout,RT @jerrybsocal: Congrats Corona National League AA Angels! We are going to the championship! https://t.co/jJvg6LOg15 +06/01/2018,Sports_celeb,@MikeTrout,RT @MatthewMarsh10: @MikeTrout My son and his 6U All Star Team with be wearing your cleats this post season. Any chance we can get a retwee… +05/31/2018,Sports_celeb,@MikeTrout,"RT @SaltLakeBees: DYK: Only one player in all of @MiLB has more hits than David Fletcher's 72. +#MakeFletchHappen +https://t.co/IDu9vF32KG ht…" +05/28/2018,Sports_celeb,@MikeTrout,"#MEMORIALDAY 🇺🇸 + +Today we honor those who made the ultimate sacrifice...Never Forgotten & Always Thankful." +05/28/2018,Sports_celeb,@MikeTrout,RT @LandisOlivia: MY ALBUM HAS FINALLY BEEN RELEASED!! CHECK IT OUT ON ITUNES OR SPOTIFY🎶❤️ https://t.co/WP80J4sTOK +05/28/2018,Sports_celeb,@MikeTrout,Lebron🔥🔥🔥🔥#wow +05/27/2018,Sports_celeb,@MikeTrout,Detroit✈️✈️✈️✈️✈️!!! +05/26/2018,Sports_celeb,@MikeTrout,@AugieAguilar 👀 +05/24/2018,Sports_celeb,@MikeTrout,New York ✈️✈️✈️✈️!!! +05/21/2018,Sports_celeb,@MikeTrout,Toronto ✈️✈️✈️✈️!!! +05/18/2018,Sports_celeb,@MikeTrout,The hard work and dedication of a teacher is something special. I get to respect that everyday because I married on… https://t.co/u8iywxg27r +05/16/2018,Sports_celeb,@MikeTrout,"""Teaching is the best job in the world, and I go home everyday exhausted, but also energized by the kids I teach.""… https://t.co/2Iy0zwTFWh" +05/14/2018,Sports_celeb,@MikeTrout,RT @Weave1036: Launch angle engaged! 🚀 https://t.co/4qLZImWgEe +05/13/2018,Sports_celeb,@MikeTrout,"To all mothers, happy #MothersDay!! To my mother, @DebbieTrout27, I love you!!" +05/11/2018,Sports_celeb,@MikeTrout,"RT @TTPCumberland: Is commitment the missing piece in your daily health & fitness plan? Take the Pledge today! + +#TakethepledgeCumberland…" +05/11/2018,Sports_celeb,@MikeTrout,@Mar_e_o17 @FortniteGame PUBG !! +05/11/2018,Sports_celeb,@MikeTrout,@arturo_ftw28 @Angels @KoleCalhoun PUBG !! +05/10/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!!! +05/07/2018,Sports_celeb,@MikeTrout,Denver ✈️✈️✈️✈️!!! +05/05/2018,Sports_celeb,@MikeTrout,"There’s only one Albert Pujols. The field and the game wouldn’t be the same without you. + +3000 and COUNTING!!… https://t.co/LYCjCpyVzx" +05/04/2018,Sports_celeb,@MikeTrout,"RT @EKayAngels: When @PujolsFive collected his first @MLB hit on April 2, 2001, @MikeTrout was a 10 year-old 5th grader in Mrs. Kerr's clas…" +05/04/2018,Sports_celeb,@MikeTrout,Proud to see where I'm from making moves!! #TakeThePledgeCumberland https://t.co/B85sOjNC7k +05/04/2018,Sports_celeb,@MikeTrout,Seattle✈️✈️✈️✈️!!! +04/29/2018,Sports_celeb,@MikeTrout,RT @DrinkBODYARMOR: 👀👀👀 @MikeTrout 💥⚾️#ObsessedWithBetter #Switch2BODYARMOR https://t.co/AJB6Md8Ahm +04/28/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +04/27/2018,Sports_celeb,@MikeTrout,RT @howardeskin: It’s great when people don’t forget where they came from. Late this afternoon @MikeTrout made a donation to sponsor my bik… +04/27/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +04/25/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!!! +04/23/2018,Sports_celeb,@MikeTrout,RT @Nicky_Delmonico: Please continue to pray for our brother. 🙏🏻 https://t.co/kXlD53lkqB +04/23/2018,Sports_celeb,@MikeTrout,Houston ✈️✈️✈️✈️✈️!!! +04/18/2018,Sports_celeb,@MikeTrout,"RT @MLByahoosports: Mike Trout stars in a humorous new @DrinkBODYARMOR commercial written/directed by @kobebryant. + +Watch the clip on @yaho…" +04/18/2018,Sports_celeb,@MikeTrout,"Thanks, @DrinkBODYARMOR will take it from here!! + +https://t.co/jDe667qLz3 | #ObsessedWithBetter #Switch2BODYARMOR… https://t.co/wm1bKhZbNy" +04/15/2018,Sports_celeb,@MikeTrout,Anaheim✈️✈️✈️✈️!!! +04/15/2018,Sports_celeb,@MikeTrout,42 +04/15/2018,Sports_celeb,@MikeTrout,Sixers 🔥🔥🔥🔥!! +04/13/2018,Sports_celeb,@MikeTrout,@NWSKansasCity 👀 +04/13/2018,Sports_celeb,@MikeTrout,RT @coleswindell: Somebody’s Been Drinkin’.... +04/12/2018,Sports_celeb,@MikeTrout,Kansas City ✈️✈️✈️✈️✈️!! +04/10/2018,Sports_celeb,@MikeTrout,RT @TBoltAthletics: Congrats to Millville alum Kyle Cox (Baseball) for being selected as Male Athlete of the Week for Gannon University!! @… +04/09/2018,Sports_celeb,@MikeTrout,RT @GUKnights: Congratulations Kyle Cox - Gannon's Male Student-Athlete of the Week! Kyle hit .563 with a 1.063 slugging percentage during… +04/09/2018,Sports_celeb,@MikeTrout,Texas ✈️✈️✈️✈️✈️!!! +04/05/2018,Sports_celeb,@MikeTrout,RT @Lanejohnson65: Caught a speckled @MikeTrout for #EaglesNation today! 🦅🎣 #fishing #trout https://t.co/FFhWuEyEvc +04/05/2018,Sports_celeb,@MikeTrout,Let’s goooo @TigerWoods !!! #Masters 🔥🔥🔥🔥😁 +04/03/2018,Sports_celeb,@MikeTrout,RT @ABC: This 10-year-old boy enjoying a wheelchair swing at an Arkansas park is the most heartwarming thing you'll see today. https://t.co… +04/02/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!! +03/28/2018,Sports_celeb,@MikeTrout,Oakland ✈️✈️✈️✈️✈️!!! +03/22/2018,Sports_celeb,@MikeTrout,"RT @mhazzard1652: Paxton received a gift, his first @MikeTrout shirt from @nelensean! Wearing it with pride! Best player in @mlb and a true…" +03/21/2018,Sports_celeb,@MikeTrout,@Mar_e_o17 @TylerSkaggs37 https://t.co/5bP1fyNLg2 +03/17/2018,Sports_celeb,@MikeTrout,Bridges 👀#wow +03/13/2018,Sports_celeb,@MikeTrout,RT @JessTara: Go check out the fundraiser for Huntington’s Disease our friend @ALaForce (& her hubby) are… https://t.co/2rCfjovAAI +03/11/2018,Sports_celeb,@MikeTrout,@TigerWoods is back !!!! #Let’s Go +03/11/2018,Sports_celeb,@MikeTrout,RT @PGATOUR: Agree or disagree with @BrandtSnedeker? https://t.co/9lb1678sSm +03/11/2018,Sports_celeb,@MikeTrout,RT @GOLF_com: Sunday club twirls are the best club twirls. https://t.co/iQUnQ8FpAw +03/04/2018,Sports_celeb,@MikeTrout,"RT @LandisOlivia: If you haven’t seen it yet, check out the music video for my first original!!! The link is in my bio💕 https://t.co/Hx2nqk…" +02/24/2018,Sports_celeb,@MikeTrout,RT @VladGuerrero27: Describe this moment || describan este momento https://t.co/zKrGEMSsxJ +02/23/2018,Sports_celeb,@MikeTrout,Jess & I will be there!! Looking forward to it!! TICKETS: https://t.co/gnYVCvW0Dc https://t.co/Zt0Pojgpnu +02/20/2018,Sports_celeb,@MikeTrout,RT @tuckervasher: Conversations with @MikeTrout are the best. Always cheers me up! Love you brother. ❤️🙏🏻 +02/19/2018,Sports_celeb,@MikeTrout,RT @GUKnights: Kyle Cox hit the game-winning two-run home run in the top of the seventh inning for @GannonBaseball on opening day! The Gold… +02/18/2018,Sports_celeb,@MikeTrout,"RT @CCron24: Thank you to the @Angels organization and fans for a great 7 years! From the draft in 2011, to my debut in 2014, to now, it’s…" +02/17/2018,Sports_celeb,@MikeTrout,RT @DrinkBODYARMOR: #BehindTheScenes @MikeTrout... #ComingSoon 👀⚾️💥 https://t.co/Z5uJHbNyRk +02/17/2018,Sports_celeb,@MikeTrout,"Baseball is back!! LET’S GO!! + +2018 @ANGELS #SPRINGTRAINING" +02/15/2018,Sports_celeb,@MikeTrout,"RT @Angels: To celebrate #ValentinesDay, @LAAStrikeForce and Choco Bear helped patients at @chocchildrens create special valentines for the…" +02/15/2018,Sports_celeb,@MikeTrout,"RT @JessTara: I’d go anywhere with you, my sweet husband 💛 ••• #happyvalentinesday https://t.co/lKvuHUzgs0" +02/14/2018,Sports_celeb,@MikeTrout,Happy first #ValentinesDay to my beautiful wife!! I love you @JessTara!! +02/14/2018,Sports_celeb,@MikeTrout,RT @HunterSibley: Thanks @MikeTrout honored to wear #1 this year!! 🔥⚾️ https://t.co/zYXsyGhUVj +02/14/2018,Sports_celeb,@MikeTrout,RT @royhallenbeck: Big thanks to @MikeTrout for stopping by and presenting his old #1 to this years captain @HunterSibley Thanks for always… +02/12/2018,Sports_celeb,@MikeTrout,@MLB 👀 +02/08/2018,Sports_celeb,@MikeTrout,RT @criscarter80: Hungry dogs run faster‼️ Kelce can play for my team damn #Underdogs +02/06/2018,Sports_celeb,@MikeTrout,RT @KevinHart4real: All I can do is laugh....We had a blast yesterday at the game. I treated my entire team to the… https://t.co/qNSkUf0bAI +02/06/2018,Sports_celeb,@MikeTrout,RT @Alex_Curry: It’s REAL the @Eagles are #SuperBowl CHAMPS and here’s that @Markgubicza celebration 🙌🏼🏈💚 now all we need is @MikeTrout fre… +02/06/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +02/05/2018,Sports_celeb,@MikeTrout,RT @JeffreyTrout: The Great Merrill Reese! Champs! https://t.co/fQKwyeA6nq +02/05/2018,Sports_celeb,@MikeTrout,"Let’s goooooooo !!!! Champs !! +#FlyEaglesFly" +02/05/2018,Sports_celeb,@MikeTrout,Jake Elliott!!!! +02/05/2018,Sports_celeb,@MikeTrout,Ertz!!!! +02/05/2018,Sports_celeb,@MikeTrout,Ertz !!!! +02/04/2018,Sports_celeb,@MikeTrout,@FoxSportsWest 👀 #FlyEaglesFly https://t.co/ANHe5o0vhM +02/04/2018,Sports_celeb,@MikeTrout,RT @DebbieTrout27: 🦅 We are on our way to Minnesota to bring home the win !🦅@JeffreyTrout @LevickTeal @MikeTrout @JessTara @TylerTrout @Lau… +02/04/2018,Sports_celeb,@MikeTrout,RT @cj_wentz: My bro is gonna shine bright tonight! So excited to see him & this team go out and compete tonight. Been through it all this… +02/04/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +02/04/2018,Sports_celeb,@MikeTrout,RT @DebbieTrout27: 🦅E-A-G-L-E-S 🦅 Game day !!! https://t.co/QIUgXc6uAg +02/04/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly #FGLMystic https://t.co/C7Oo6SQCjy +02/03/2018,Sports_celeb,@MikeTrout,"RT @nflnetwork: Are you flying with the @Eagles on Super Bowl Sunday? + +#FlyEaglesFly #SBLII https://t.co/lIESN2Hr4j" +02/01/2018,Sports_celeb,@MikeTrout,"RT @Eagles: One game is all we got. One game is all we need. + +#SBLII | #FlyEaglesFly https://t.co/ykbgOt5vBf" +01/29/2018,Sports_celeb,@MikeTrout,RT @TigerWoods: Can’t thank the San Diego fans enough. I scrambled my butt off but happy with my first event back. See you at Riv! +01/25/2018,Sports_celeb,@MikeTrout,Tiger ! +01/25/2018,Sports_celeb,@MikeTrout,"Congratulations to Vladimir Guerrero, Chipper Jones, Jim Thome & Trevor Hoffman. It was something special to watch… https://t.co/QH1A4ngOmW" +01/25/2018,Sports_celeb,@MikeTrout,"RT @Angels: 📞 HE’S IN! 📞 + +#VladHOF https://t.co/TMIIEfcieg" +01/24/2018,Sports_celeb,@MikeTrout,@Weave1036 @GRICHARDS26 @realAM23 Hahahahahah +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 Turned @TylerSkaggs37 into a birds fan why not you ? +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 DUKE ! +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 #FlyEaglesFly +01/22/2018,Sports_celeb,@MikeTrout,@blakebaccello #FlyEaglesFly +01/22/2018,Sports_celeb,@MikeTrout,"Super Bowl !!! Lets gooooooo!!!!! +#FlyEaglesFly" +01/21/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Pumped to run back out there in front of our fired up fans tonight! NFC Championship @LFFStadium! Let’s GOOOOO! #FlyEaglesFly… +01/21/2018,Sports_celeb,@MikeTrout,"Letsssssss goooooooo !!!!!! +#FlyEaglesFly" +01/21/2018,Sports_celeb,@MikeTrout,RT @Ike58Reese: #WeAllWeGot 😎👍🏿 https://t.co/ilAd68jjUP +01/21/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/21/2018,Sports_celeb,@MikeTrout,"RT @DrinkBODYARMOR: .@DrinkBODYARMOR Sports Drink TAKING OVER the Octagon tonight as the OFFICIAL SPORTS DRINK of @UFC, hydrating #UFC220 i…" +01/20/2018,Sports_celeb,@MikeTrout,@Markgubicza @TylerSkaggs37 @Vikings He’s going to the Linc for the first time..he doesn’t know what he’s getting into !!!! #FlyEaglesFly +01/20/2018,Sports_celeb,@MikeTrout,@TylerSkaggs37 @Vikings https://t.co/Qvsaby1UFc +01/20/2018,Sports_celeb,@MikeTrout,@DiaDia18 Yes !! +01/20/2018,Sports_celeb,@MikeTrout,Tomorrow !!!! #FlyEaglesFly https://t.co/d7iSDao6P7 +01/20/2018,Sports_celeb,@MikeTrout,"RT @SportsRadioWIP: ""I'm anxious to walk into the stadium to hear what the crowd level at an outdoor arena like that. And I think it's goin…" +01/20/2018,Sports_celeb,@MikeTrout,RT @greengoblin: PHILLY LETS DO THIS❗️ https://t.co/7rS6sLMxVP +01/19/2018,Sports_celeb,@MikeTrout,@TorreySmithWR Let’s gooooooo!!!! +01/19/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Can’t wait to hear @LFFStadium this Sunday! #FlyEaglesFly https://t.co/GsbqRYaCQw +01/19/2018,Sports_celeb,@MikeTrout,RT @JoelEmbiid: Fantastic day!!!! We got a great win and I became an ALL STAR.... I wanna thank all of you guys out there and the organizat… +01/17/2018,Sports_celeb,@MikeTrout,@34badger34 https://t.co/0JC35S5VnN +01/14/2018,Sports_celeb,@MikeTrout,"RT @CoreyClement_6: They count us out , we just keep rolling #FlyEaglesFly" +01/14/2018,Sports_celeb,@MikeTrout,"RT @JonHeyman: this is a happy fellow. nice winter for @MikeTrout (tho i won't ask him to rank in order the ohtani pickup, the eagles playo…" +01/14/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Best game atmosphere ever!!! Thank you all!!!! See you next week!! +01/14/2018,Sports_celeb,@MikeTrout,RT @SNFonNBC: Jeffrey Lurie in the @Eagles locker room is a mood. https://t.co/0wZOF7JPev +01/14/2018,Sports_celeb,@MikeTrout,@Cam_Bedrock He tripped bro lol +01/14/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,@ETeaparty25 @White_Willy13 City hall ???!!! #FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,@Cam_Bedrock 👀 #FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,"Let’s gooooooooo !!!! +#FlyEaglesFly" +01/13/2018,Sports_celeb,@MikeTrout,@SportsRadioWIP @Eagles Let’s gooooo #FLYEAGLESFLY +01/13/2018,Sports_celeb,@MikeTrout,@Markgubicza @caplannfl @adamfgoldberg Go Birds !!! #FlyEaglesFly +01/13/2018,Sports_celeb,@MikeTrout,RT @Markgubicza: Ready for some football! #FlyEaglesFly #NFLPlayoffs @MikeTrout @caplannfl @adamfgoldberg #PennCharter https://t.co/USMnpg9… +01/13/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/13/2018,Sports_celeb,@MikeTrout,"RT @Eagles: Make it happen. + +#FlyEaglesFly https://t.co/axf1ZfrX3d" +01/13/2018,Sports_celeb,@MikeTrout,RT @TreyBurton8: Win or go home time... https://t.co/dEqtr654Bv +01/11/2018,Sports_celeb,@MikeTrout,"RT @cj_wentz: These guys are the real deal and crazy fun to watch! Let’s get them to the All-Star game folks! Much love fellas! 😎 + +#NBAVote…" +01/10/2018,Sports_celeb,@MikeTrout,"RT @aj_pujols55: WOW 17!!! 1-7 this is a special year as I continue my walk with the Lord and fulfill his works through the special gifts,…" +01/10/2018,Sports_celeb,@MikeTrout,"RT @JessTara: December 2️⃣ 0️⃣ 1️⃣ 7️⃣ 🖤 + +How has it been one month already?! Woah. Forgive me, as I’ve got… https://t.co/xNcrUhS05M" +01/09/2018,Sports_celeb,@MikeTrout,RT @cherylrosenbrg: @MikeTrout Orange County kid/Penn student is missing. It’d be awesome if you could RT this flier to get more eyes on it… +01/07/2018,Sports_celeb,@MikeTrout,"RT @LevickTeal: HAPPY BIRTHDAY TO THE SILVER FOX, THE LEGEND HIMSELF, A ONE OF A KIND PAPA, MY DAD JEFFY!! We love you so much Dad!!! #best…" +01/07/2018,Sports_celeb,@MikeTrout,@VictorRojas @turn__2 @Markgubicza @Eagles Eagles are still in it Chiefs aren’t...#FACTS #FlyEaglesFly 😁😁 +01/04/2018,Sports_celeb,@MikeTrout,@JessTara @MLBNetworkRadio @JimCantore https://t.co/gjsShMH6kn +01/04/2018,Sports_celeb,@MikeTrout,RT @JessTara: @MLBNetworkRadio @MikeTrout @JimCantore He’s about one weather map photo short of me muting his text message alerts... 🤦🏼‍♀️📲… +01/01/2018,Sports_celeb,@MikeTrout,Happy New Year !!! +12/31/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/26/2017,Sports_celeb,@MikeTrout,RT @TylerTrout: Merry Christmas from a cold Eagles game! #FlyEaglesFly https://t.co/g1rshsd0Ea +12/26/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/26/2017,Sports_celeb,@MikeTrout,"My wife, my family, my friends make today special!! #MerryChristmas!! https://t.co/96SFuWSxGV" +12/20/2017,Sports_celeb,@MikeTrout,RT @Weave1036: @MikeTrout @toriihunter48 What is that Colgate!! 😂 goodtimes congrats again kiiidddd! +12/18/2017,Sports_celeb,@MikeTrout,Views 🙌🏻 https://t.co/gUNFfp546C +12/18/2017,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Raise your hand if you’re celebrating #VictoryMonday! 🙋‍♂️ #FlyEaglesFly https://t.co/InzwwB1aJa +12/18/2017,Sports_celeb,@MikeTrout,"Stacked at 8!!! #8vs24 + +3 Championships, 8 All-Star Games, 2 Scoring Titles, a slam dunk contest champ, 81 Points,… https://t.co/ZcJEDz9rfr" +12/17/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/14/2017,Sports_celeb,@MikeTrout,RT @cj_wentz: Surgery ✔️ the comeback officially begins now! The Lord truly blessed me with this beautiful young lady to walk by my side an… +12/13/2017,Sports_celeb,@MikeTrout,RT @JessTara: This weekend was pure m a g i c ✨ https://t.co/L5wAsfpuyk +12/12/2017,Sports_celeb,@MikeTrout,@dannyweissphoto @JessTara Thanks everyone ! @AmyKatzEvents did an amazing job ! +12/12/2017,Sports_celeb,@MikeTrout,"From this day forward, you shall not walk alone. My heart will be your shelter, and my arms will be your home . I l… https://t.co/CreZhhAbTa" +12/11/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly @Weave1036 @TylerSkaggs37 +12/11/2017,Sports_celeb,@MikeTrout,Huge !!! +12/10/2017,Sports_celeb,@MikeTrout,What a catch !!!! #Alshon +12/10/2017,Sports_celeb,@MikeTrout,Wonder if Carson had anything to do with that celebration ??!! 🤔🤔🤔🤔#Canadians#Snows +12/10/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/09/2017,Sports_celeb,@MikeTrout,RT @CCron24: Ohtani should crash Trout’s wedding. DM me for details bro! #WelcomeToAnaheim +12/08/2017,Sports_celeb,@MikeTrout,👀 +12/06/2017,Sports_celeb,@MikeTrout,RT @NEWeatherWx: RT if you are ready for winter! https://t.co/By5cbu6BHZ +12/03/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/02/2017,Sports_celeb,@MikeTrout,@ortegsnv1 @CapsForKids Happy Holidays!! +12/02/2017,Sports_celeb,@MikeTrout,RT @ortegsnv1: Thank you @MikeTrout for signing a hat for my son. Through the @CapsForKids program. We go and see the Angels every year you… +12/01/2017,Sports_celeb,@MikeTrout,Tiger 👀!! 🔥🔥🔥 +11/26/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/24/2017,Sports_celeb,@MikeTrout,RT @JessTara: H a p p y T h a n k s g i v i n g from my little family to yours! 🦃🍴 #countingmyblessings… https://t.co/sTQpvppfwT +11/24/2017,Sports_celeb,@MikeTrout,#HappyThanksgiving https://t.co/XD8aidAEVe +11/24/2017,Sports_celeb,@MikeTrout,"From my family to yours, #HappyThanksgiving!! + +There’s a lot to be thankful for!! https://t.co/Vawm8mu9xw" +11/24/2017,Sports_celeb,@MikeTrout,RT @JeffreyTrout: Happy Thanksgiving!! #family @DebbieTrout27 @LevickTeal @MikeTrout @TylerTrout @JessTara @LaurenCerami https://t.co/D7MDP… +11/21/2017,Sports_celeb,@MikeTrout,RT @coachkw15: Congratulations to @HunterSibley for earning the #1 Jersey. Well deserved honor ! @MikeTrout @royhallenbeck @mje643 https://… +11/20/2017,Sports_celeb,@MikeTrout,@Dutch_Oven45 @AaronBoone_ESPN 🤔 +11/19/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/17/2017,Sports_celeb,@MikeTrout,"Special play by a good guy!! #MVP + +Well deserved, @JoseAltuve27!!" +11/15/2017,Sports_celeb,@MikeTrout,Nothing better then listening to @DickieV call a basketball game! #Legend +11/15/2017,Sports_celeb,@MikeTrout,Duke 🔥🔥!!! +11/14/2017,Sports_celeb,@MikeTrout,Simmons 👀 +11/13/2017,Sports_celeb,@MikeTrout,"The season is over, but baseball continues!! Stay in the game with me at #MLB9Innings17!! + +iOS App Store:… https://t.co/zTY8zvpYpR" +11/12/2017,Sports_celeb,@MikeTrout,@TylerSkaggs37 @ZO2_ But did they win tho 🤔 +11/11/2017,Sports_celeb,@MikeTrout,Proudly flying the flag today for the military men & women who have dedicated their lives to protecting our freedom.#VeteransDay +11/07/2017,Sports_celeb,@MikeTrout,In shock over the terrible news about Roy Halladay... a pitcher I grew up admiring & rooting for. Praying for his family & friends. #RIPDoc +11/05/2017,Sports_celeb,@MikeTrout,RT @ZERTZ_86: We’re back in black today Philly! 🔒IN!! #FlyEaglesFly https://t.co/2uOaBJCB9y +11/05/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/02/2017,Sports_celeb,@MikeTrout,RT @JUST_JUP: I am currently out of the country but wanted to say thank you to the @Angels for the opportunity to come back to Anaheim. htt… +10/31/2017,Sports_celeb,@MikeTrout,RT @TheWorldof_AJ: Welcome to Philly my guy @JayTrain23 🗣choo...choo🚂🚂🚂🚂.... #FlyEaglesFly +10/29/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +07/02/2018,Politicians,@realDonaldTrump,"RT @DHSgov: Today, DHS, @CBP, and @ICEgov will be sharing stories of the brave men and women who put their lives on the line every day with…" +07/02/2018,Politicians,@realDonaldTrump,Congratulations to Andres Manuel Lopez Obrador on becoming the next President of Mexico. I look very much forward t… https://t.co/g2GfAkKPd0 +07/01/2018,Politicians,@realDonaldTrump,RT @larryelder: BEWARE! #TrumpDerangementSyndrome can be career ending. https://t.co/qm86ya6PlJ +07/01/2018,Politicians,@realDonaldTrump,"A big week, especially with our numerous victories in the Supreme Court. Heading back to the White House now. Focus… https://t.co/jPZ5kt4XY1" +07/01/2018,Politicians,@realDonaldTrump,"The Liberal Left, also known as the Democrats, want to get rid of ICE, who do a fantastic job, and want Open Border… https://t.co/gVNySrk4Oa" +07/01/2018,Politicians,@realDonaldTrump,I will be interviewed by @MariaBartiromo at 10:00 A.M. on @FoxNews +06/30/2018,Politicians,@realDonaldTrump,"When people come into our Country illegally, we must IMMEDIATELY escort them back out without going through years o… https://t.co/l0cBzDIMn0" +06/30/2018,Politicians,@realDonaldTrump,I will be interviewed by @MariaBartiromo on Sunday on @FoxNews at 10:00 A. M. Enjoy! +06/30/2018,Politicians,@realDonaldTrump,"Either we need to elect more Republicans in November or Republicans must end the ridiculous 60 vote, or Filibuster,… https://t.co/BZR2xb8jqq" +06/30/2018,Politicians,@realDonaldTrump,"I never pushed the Republicans in the House to vote for the Immigration Bill, either GOODLATTE 1 or 2, because it c… https://t.co/tpKMP3vO6l" +06/30/2018,Politicians,@realDonaldTrump,"A friend of mine and a man who has truly seen politics and life as few others ever will, Sean Spicer, has written a… https://t.co/klFqfUfhlm" +06/30/2018,Politicians,@realDonaldTrump,"I will be making my choice for Justice of the United States Supreme Court on the first Monday after the July 4th Holiday, July 9th!" +06/30/2018,Politicians,@realDonaldTrump,"Just spoke to King Salman of Saudi Arabia and explained to him that, because of the turmoil & disfunction in Iran a… https://t.co/xxFxafSl3H" +06/30/2018,Politicians,@realDonaldTrump,"To the great and brave men and women of ICE, do not worry or lose your spirit. You are doing a fantastic job of kee… https://t.co/H4iJtg4xB2" +06/30/2018,Politicians,@realDonaldTrump,"The Democrats are making a strong push to abolish ICE, one of the smartest, toughest and most spirited law enforcem… https://t.co/WbFYrPzRLk" +06/30/2018,Politicians,@realDonaldTrump,RT @DanScavino: “@GovMikeHuckabee: Trump could nominate Moses for Supreme Court and Democrats would fight it” https://t.co/5wx3nVJxvF +06/30/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement account c…" +06/30/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Before going any further today, I want to address the horrific shooting that took place yesterday at the Capital Gazet…" +06/30/2018,Politicians,@realDonaldTrump,"RT @IvankaTrump: Thank you @SecPompeo. +It was an honor to join you and your talented, passionate colleagues at @StateDept to honor the her…" +06/30/2018,Politicians,@realDonaldTrump,RT @IvankaTrump: Thank you Senator Alexander for your leadership on career + technical education. 11+ million students and workers across o… +06/29/2018,Politicians,@realDonaldTrump,The new plant being built by Foxconn in Wisconsin is incredible. Congratulations to the people of Wisconsin and to… https://t.co/VH2tbPgIbH +06/29/2018,Politicians,@realDonaldTrump,"RT @FoxBusiness: .@IvankaTrump: ""I think one of the tremendous opportunities that were seeing because the economy is so strong is that peop…" +06/29/2018,Politicians,@realDonaldTrump,"RT @Scavino45: “@ICEgov New York operation leads to arrests of 3 dozen Darknet vendors selling illicit goods, weapons, drugs seized and mor…" +06/29/2018,Politicians,@realDonaldTrump,"Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement accoun… https://t.co/GzLNe4WkQA" +06/29/2018,Politicians,@realDonaldTrump,"Before going any further today, I want to address the horrific shooting that took place yesterday at the Capital Ga… https://t.co/wcukrK7M48" +06/28/2018,Politicians,@realDonaldTrump,"Prior to departing Wisconsin, I was briefed on the shooting at Capital Gazette in Annapolis, Maryland. My thoughts… https://t.co/DUhjdWWxBP" +06/28/2018,Politicians,@realDonaldTrump,"AMERICA IS OPEN FOR BUSINESS! +https://t.co/fuRF2Z6CZl" +06/28/2018,Politicians,@realDonaldTrump,"Today, we broke ground on a plant that will provide jobs for up to 15,000 Wisconsin Workers! As Foxconn has discove… https://t.co/AkvrABaDNj" +06/28/2018,Politicians,@realDonaldTrump,"I am in Milwaukee, Wisconsin, for meetings. Soon to leave for a big groundbreaking for Foxconn, which is building a… https://t.co/d5Y3nMwa3g" +06/28/2018,Politicians,@realDonaldTrump,....persecuted on old and/or totally unrelated charges (there was no collusion and there was no obstruction of the… https://t.co/SpG2p56INu +06/28/2018,Politicians,@realDonaldTrump,When is Bob Mueller going to list his Conflicts of Interest? Why has it taken so long? Will they be listed at the t… https://t.co/RNYRkyxZFx +06/28/2018,Politicians,@realDonaldTrump,Peter Strzok worked as the leader of the Rigged Witch Hunt for a long period of time - he got it started and was on… https://t.co/HgmUjpufjL +06/28/2018,Politicians,@realDonaldTrump,"Just watched @SharkGregNorman on @foxandfriends. Said “President is doing a great job. All over the world, people w… https://t.co/SBsUQf6LYp" +06/28/2018,Politicians,@realDonaldTrump,"Amy Kremer, Women for Trump, was so great on @foxandfriends. Brave and very smart, thank you Amy! @AmyKremer" +06/28/2018,Politicians,@realDonaldTrump,"Russia continues to say they had nothing to do with Meddling in our Election! Where is the DNC Server, and why didn… https://t.co/aKI3hu6wef" +06/28/2018,Politicians,@realDonaldTrump,"Lover FBI Agent Peter Strzok was given poor marks on yesterday’s closed door testimony and, according to most repor… https://t.co/rijMTcMPQg" +06/28/2018,Politicians,@realDonaldTrump,...home addresses – putting these selfless public servants in harm’s way. These radical protesters want ANARCHY – b… https://t.co/sqGBkGUxM2 +06/28/2018,Politicians,@realDonaldTrump,In recent days we have heard shameless attacks on our courageous law enforcement officers. Extremist Democrat polit… https://t.co/bRsezeDPBR +06/28/2018,Politicians,@realDonaldTrump,"Thank you North Dakota. Together, we are MAKING AMERICA SAFE AND GREAT AGAIN! #MAGA https://t.co/6Am9n6px8I" +06/27/2018,Politicians,@realDonaldTrump,Just landed in North Dakota with @SenJohnHoeven and @RepKevinCramer. We will see everyone at Scheels Arena shortly! https://t.co/pakUigKB61 +06/27/2018,Politicians,@realDonaldTrump,"Today, it was my great honor to welcome President Marcelo Rebelo de Sousa of Portugal to the @WhiteHouse!🇺🇸🇵🇹 https://t.co/yd37K4Ei8R" +06/27/2018,Politicians,@realDonaldTrump,Heading to North Dakota to fully stand with and endorse Kevin Cramer for Senate. He is an extraordinary Congressman… https://t.co/qMniRSctDT +06/27/2018,Politicians,@realDonaldTrump,Statement on Justice Anthony Kennedy. #SCOTUS https://t.co/8aWJ6fWemA +06/27/2018,Politicians,@realDonaldTrump,"Today, I was thrilled to join student leaders from Colleges and Universities across the country... https://t.co/OQp3NcOeE4" +06/27/2018,Politicians,@realDonaldTrump,"Harley-Davidson should stay 100% in America, with the people that got you your success. I’ve done so much for you,… https://t.co/kNmruD0swh" +06/27/2018,Politicians,@realDonaldTrump,"Supreme Court rules in favor of non-union workers who are now, as an example, able to support a candidate of his or… https://t.co/zZlPRIgB26" +06/27/2018,Politicians,@realDonaldTrump,"HOUSE REPUBLICANS SHOULD PASS THE STRONG BUT FAIR IMMIGRATION BILL, KNOWN AS GOODLATTE II, IN THEIR AFTERNOON VOTE… https://t.co/7NPrGsNjNW" +06/27/2018,Politicians,@realDonaldTrump,"Congratulations to Maxine Waters, whose crazy rants have made her, together with Nancy Pelosi, the unhinged FACE of… https://t.co/CusnE1izm7" +06/27/2018,Politicians,@realDonaldTrump,Big and conclusive win by Mitt Romney. Congratulations! I look forward to working together - there is so much good… https://t.co/CqjLaLDkkc +06/27/2018,Politicians,@realDonaldTrump,The legendary Gary Player at Turnberry in Scotland! https://t.co/3oGoqWhhtA +06/27/2018,Politicians,@realDonaldTrump,A great First Lady! https://t.co/Pt35aluI4C +06/27/2018,Politicians,@realDonaldTrump,RT @The_Trump_Train: @realDonaldTrump https://t.co/9ubTCAyZkq +06/27/2018,Politicians,@realDonaldTrump,The Democrats are in Turmoil! Open Borders and unchecked Crime a certain way to lose elections. Republicans are for… https://t.co/srI2CTyDds +06/27/2018,Politicians,@realDonaldTrump,"Wow! Big Trump Hater Congressman Joe Crowley, who many expected was going to take Nancy Pelosi’s place, just LOST h… https://t.co/4TuokLaPMJ" +06/27/2018,Politicians,@realDonaldTrump,"Tremendous win for Congressman Dan Donovan. You showed great courage in a tough race! New York, and my many friends… https://t.co/JvRCgZpcG8" +06/27/2018,Politicians,@realDonaldTrump,Congratulations to Governor Henry McMaster on your BIG election win! South Carolina loves you. We are all proud of… https://t.co/jWLZKh1S99 +06/26/2018,Politicians,@realDonaldTrump,"Today, we tell the story of an incredible HERO who defended our nation in World War Two – First Lieutenant Garlin M… https://t.co/nrpii7C3KK" +06/26/2018,Politicians,@realDonaldTrump,SUPREME COURT UPHOLDS TRUMP TRAVEL BAN. Wow! +06/26/2018,Politicians,@realDonaldTrump,“The most profound question of our era: Was there a conspiracy in the Obama Department of Justice and the FBI to pr… https://t.co/EY5JfbWzmt +06/26/2018,Politicians,@realDonaldTrump,"The face of the Democrats is now Maxine Waters who, together with Nancy Pelosi, have established a fine leadership… https://t.co/k95es4evL2" +06/26/2018,Politicians,@realDonaldTrump,A Harley-Davidson should never be built in another country-never! Their employees and customers are already very an… https://t.co/iTUQaIXwHJ +06/26/2018,Politicians,@realDonaldTrump,"It was great being with Governor Henry McMaster last night in South Carolina. Henry is tough on Crime and Borders,… https://t.co/XPG4k94aRL" +06/26/2018,Politicians,@realDonaldTrump,....We are finishing our study of Tariffs on cars from the E.U. in that they have long taken advantage of the U.S.… https://t.co/MOBnXWSfYl +06/26/2018,Politicians,@realDonaldTrump,"....When I had Harley-Davidson officials over to the White House, I chided them about tariffs in other countries, l… https://t.co/PhSv1BSMYa" +06/26/2018,Politicians,@realDonaldTrump,....We are getting other countries to reduce and eliminate tariffs and trade barriers that have been unfairly used… https://t.co/n5sU0778dD +06/26/2018,Politicians,@realDonaldTrump,Early this year Harley-Davidson said they would move much of their plant operations in Kansas City to Thailand. Tha… https://t.co/uDeWOh3mWJ +06/26/2018,Politicians,@realDonaldTrump,Thank you South Carolina. Now let’s get out tomorrow and VOTE for @HenryMcMaster! https://t.co/5xlz0wfMfu +06/25/2018,Politicians,@realDonaldTrump,Just landed in South Carolina - will be at the McMaster rally shortly! #MAGA +06/25/2018,Politicians,@realDonaldTrump,The hearing of Peter Strzok and the other hating frauds at the FBI & DOJ should be shown to the public on live tele… https://t.co/TFLQ7s7kmy +06/25/2018,Politicians,@realDonaldTrump,"Why is Senator Mark Warner (D-VA), perhaps in a near drunken state, claiming he has information that only he and Bo… https://t.co/oumPE3BtVX" +06/25/2018,Politicians,@realDonaldTrump,"RT @WhiteHouse: Today, @realDonaldTrump and @FLOTUS welcomed @KingAbdullahII and @QueenRania of the Hashemite Kingdom of Jordan to the Whit…" +06/25/2018,Politicians,@realDonaldTrump,“Director David Lynch: Trump Could Go Down as One of the Greatest Presidents” https://t.co/AcgnIZNh6e +06/25/2018,Politicians,@realDonaldTrump,"Surprised that Harley-Davidson, of all companies, would be the first to wave the White Flag. I fought hard for them… https://t.co/cTQIqsyfbK" +06/25/2018,Politicians,@realDonaldTrump,"Congresswoman Maxine Waters, an extraordinarily low IQ person, has become, together with Nancy Pelosi, the Face of… https://t.co/iZvAew0qOB" +06/25/2018,Politicians,@realDonaldTrump,RT @EricTrump: Record High Economic Optimism: 51% of people think the the economy is good or excellent - this is the highest number @CNBC h… +06/25/2018,Politicians,@realDonaldTrump,"RT @TrumpGolf: Congratulations to our dear friend and @TrumpCharlotte member, @ScottMcCarron, on his incredible win at the @AmFamChamp this…" +06/25/2018,Politicians,@realDonaldTrump,RT @marcorubio: Trump haters still haven’t realized how much they help him with their condescension of those who either voted for him or do… +06/25/2018,Politicians,@realDonaldTrump,"Will be heading to one of my favorite places, South Carolina, to fight for one of my original “fighters,” Governor… https://t.co/WUmWQiimJq" +06/25/2018,Politicians,@realDonaldTrump,"....If this is done, illegal immigration will be stopped in it’s tracks - and at very little, by comparison, cost.… https://t.co/HDii4VkUNc" +06/25/2018,Politicians,@realDonaldTrump,"Hiring manythousands of judges, and going through a long and complicated legal process, is not the way to go - will… https://t.co/try3EcJSAJ" +06/25/2018,Politicians,@realDonaldTrump,Such a difference in the media coverage of the same immigration policies between the Obama Administration and ours.… https://t.co/SIv7btegSk +06/25/2018,Politicians,@realDonaldTrump,"I have tried to stay uninvolved with the Department of Justice and FBI (although I do not legally have to), because… https://t.co/rBebc0GHdb" +06/25/2018,Politicians,@realDonaldTrump,"The Red Hen Restaurant should focus more on cleaning its filthy canopies, doors and windows (badly needs a paint jo… https://t.co/CObp1kkDlk" +06/25/2018,Politicians,@realDonaldTrump,Former Attorney General Michael Mukasey said that President Trump is probably correct that there was surveillance o… https://t.co/O5DN6DKreR +06/25/2018,Politicians,@realDonaldTrump,".@RepClayHiggins has been a great help to me on Cutting Taxes, creating great new healthcare programs at low cost,… https://t.co/8Y4VAfVZK3" +06/25/2018,Politicians,@realDonaldTrump,"House Republicans could easily pass a Bill on Strong Border Security but remember, it still has to pass in the Sena… https://t.co/1tJeUrJyV5" +06/25/2018,Politicians,@realDonaldTrump,.@jimmyfallon is now whimpering to all that he did the famous “hair show” with me (where he seriously messed up my… https://t.co/O7qrzxhEWv +06/24/2018,Politicians,@realDonaldTrump,The United States is insisting that all countries that have placed artificial Trade Barriers and Tariffs on goods g… https://t.co/5i0yZh1XSK +06/24/2018,Politicians,@realDonaldTrump,"....Our Immigration policy, laughed at all over the world, is very unfair to all of those people who have gone thro… https://t.co/NnqUpbRHLp" +06/24/2018,Politicians,@realDonaldTrump,"We cannot allow all of these people to invade our Country. When somebody comes in, we must immediately, with no Jud… https://t.co/X8GwD9vA5p" +06/24/2018,Politicians,@realDonaldTrump,"Democrats, fix the laws. Don’t RESIST. We are doing a far better job than Bush and Obama, but we need strength and… https://t.co/0bxgKrG5Og" +06/24/2018,Politicians,@realDonaldTrump,Major Wall Street Journal opinion piece today talking about the Russian Witch Hunt and the disgrace that it is. So… https://t.co/ADkg5DLfQo +06/23/2018,Politicians,@realDonaldTrump,AMERICA IS OPEN FOR BUSINESS! https://t.co/ZjdlHwJlxm +06/23/2018,Politicians,@realDonaldTrump,Thank you @NVGOP! #MAGA https://t.co/OGTR2j6PGG +06/23/2018,Politicians,@realDonaldTrump,"Happy Birthday to Supreme Court Justice Clarence Thomas, a friend and great man! https://t.co/hlXYYkTjcv" +06/23/2018,Politicians,@realDonaldTrump,"It’s very sad that Nancy Pelosi and her sidekick, Cryin’ Chuck Schumer, want to protect illegal immigrants far more… https://t.co/HidQanCeMr" +06/23/2018,Politicians,@realDonaldTrump,"RT @HuckabeeOnTBN: TONIGHT: the President of the United States, @realDonaldTrump, sits down to discuss his thoughts about international rel…" +06/23/2018,Politicians,@realDonaldTrump,Heading to Nevada to talk trade and immigration with supporters. Country’s economy is stronger than ever before wit… https://t.co/kXEzed3ign +06/23/2018,Politicians,@realDonaldTrump,"My thoughts and prayers are with Representative Katie Arrington of South Carolina, including all of those involved… https://t.co/s2qGDVlASC" +06/23/2018,Politicians,@realDonaldTrump,"...everyone how much he likes me, but he will only vote with Nancy Pelosi. Keith is strong on borders and tough on… https://t.co/ytZoim3yaI" +06/23/2018,Politicians,@realDonaldTrump,".@VP Pence is heading to Pittsburgh, Pennsylvania where we have both strongly endorsed one of the finest men around… https://t.co/fkXBNxvWZe" +06/23/2018,Politicians,@realDonaldTrump,"Drudge Report “OBAMA KEPT THEM IN CAGES, WRAPPED THEM IN FOIL” We do a much better job while at the same time main… https://t.co/niwUf6T2rg" +06/23/2018,Politicians,@realDonaldTrump,“Disability applications plunge as economy strengthens” Failing New York Times +06/23/2018,Politicians,@realDonaldTrump,The National Association of Manufacturers just announced that 95.1% of Manufacturers “have a positive outlook for t… https://t.co/Xhx3FDLAxT +06/23/2018,Politicians,@realDonaldTrump,The Russian Witch Hunt is Rigged! +06/23/2018,Politicians,@realDonaldTrump,".@FoxNews Poll numbers plummet on the Democrat inspired and paid for Russian Witch Hunt. With all of the bias, lyi… https://t.co/42rEL4UcSF" +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Congressman Ron DeSantis, a top student at Yale and Harvard Law School, is running for Governor of the Great State of…" +06/23/2018,Politicians,@realDonaldTrump,RT @PressSec: It’s shameful that dems and the media exploited this photo of a little girl to push their agenda. She was not separated from… +06/23/2018,Politicians,@realDonaldTrump,RT @JesseBWatters: Will be 🔥@TPUSA https://t.co/r06LyQ9Obd +06/23/2018,Politicians,@realDonaldTrump,"RT @Scavino45: 🚨Happening Now: +President Trump delivers remarks on immigration with Angel Families: https://t.co/WHGk1H7T7u https://t.co/rV…" +06/23/2018,Politicians,@realDonaldTrump,RT @realDonaldTrump: We are gathered today to hear directly from the AMERICAN VICTIMS of ILLEGAL IMMIGRATION. These are the American Citize… +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Our first duty, and our highest loyalty, is to the citizens of the United States. We will not rest until our border is…" +06/23/2018,Politicians,@realDonaldTrump,RT @Scavino45: REQUESTED by family members after their private meeting and visit to the Oval Office - which took place before public remark… +06/23/2018,Politicians,@realDonaldTrump,RT @SecPompeo: .@POTUS’ agenda is the most pro-business agenda from a President in history. It been a game-changer for the American economi… +06/23/2018,Politicians,@realDonaldTrump,Steel is coming back fast! U.S. Steel is adding great capacity also. So are others. https://t.co/0Pzwjg3Vxn +06/23/2018,Politicians,@realDonaldTrump,RT @realDonaldTrump: We have to maintain strong borders or we will no longer have a country that we can be proud of – and if we show any we… +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Elect more Republicans in November and we will pass the finest, fairest and most comprehensive Immigration Bills anyw…" +06/23/2018,Politicians,@realDonaldTrump,Based on the Tariffs and Trade Barriers long placed on the U.S. & its great companies and workers by the European U… https://t.co/dqB7ivIKdo +06/22/2018,Politicians,@realDonaldTrump,"Our first duty, and our highest loyalty, is to the citizens of the United States. We will not rest until our border… https://t.co/Xq0o3yW8dv" +06/22/2018,Politicians,@realDonaldTrump,We are gathered today to hear directly from the AMERICAN VICTIMS of ILLEGAL IMMIGRATION. These are the American Cit… https://t.co/Ih0At614Jp +06/22/2018,Politicians,@realDonaldTrump,Hope OPEC will increase output substantially. Need to keep prices down! +06/22/2018,Politicians,@realDonaldTrump,We must maintain a Strong Southern Border. We cannot allow our Country to be overrun by illegal immigrants as the D… https://t.co/3Ms9tXU4Cv +06/22/2018,Politicians,@realDonaldTrump,"80% of Mexico’s Exports come to the United States. They totally rely on us, which is fine with me. They do have, th… https://t.co/1CFu4Ex7AU" +06/22/2018,Politicians,@realDonaldTrump,RT @EricTrump: Good job @FLOTUS 🇺🇸🇺🇸🇺🇸 https://t.co/RCYjy0DlF9 +06/22/2018,Politicians,@realDonaldTrump,"Congressman Ron DeSantis, a top student at Yale and Harvard Law School, is running for Governor of the Great State… https://t.co/xEkAqrqH6R" +06/22/2018,Politicians,@realDonaldTrump,Congresswoman Martha Roby of Alabama has been a consistent and reliable vote for our Make America Great Again Agend… https://t.co/S21c4EKQvc +06/22/2018,Politicians,@realDonaldTrump,Governor Henry McMaster is a truly fine man who loves the People of South Carolina. He was one of my very early sup… https://t.co/oPoaxw9qbi +06/22/2018,Politicians,@realDonaldTrump,Republicans should stop wasting their time on Immigration until after we elect more Senators and Congressmen/women… https://t.co/4HZ9ZIiNfr +06/22/2018,Politicians,@realDonaldTrump,"Elect more Republicans in November and we will pass the finest, fairest and most comprehensive Immigration Bills a… https://t.co/ZK72YOYINO" +06/22/2018,Politicians,@realDonaldTrump,"Even if we get 100% Republican votes in the Senate, we need 10 Democrat votes to get a much needed Immigration Bill… https://t.co/eMvXkDpulv" +06/22/2018,Politicians,@realDonaldTrump,"Our great Judge Jeanine Pirro is out with a new book, “Liars, Leakers and Liberals, the Case Against the Anti-Trump… https://t.co/KEtrpg2Ijp" +06/22/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Don’t worry, the Republicans, and your President, will fix it! https://t.co/xsbuPzXbHj" +06/21/2018,Politicians,@realDonaldTrump,You cannot pass legislation on immigration whether it be for safety and security or any other reason including “hea… https://t.co/CxdDZUWyDy +06/21/2018,Politicians,@realDonaldTrump,We have to maintain strong borders or we will no longer have a country that we can be proud of – and if we show any… https://t.co/sjgqAjFi7m +06/21/2018,Politicians,@realDonaldTrump,"“I REALLY DON’T CARE, DO U?” written on the back of Melania’s jacket, refers to the Fake News Media. Melania has le… https://t.co/sxYB9GYcmS" +06/21/2018,Politicians,@realDonaldTrump,Big Supreme Court win on internet sales tax - about time! Big victory for fairness and for our country. Great victo… https://t.co/wV2cxGtsWA +06/21/2018,Politicians,@realDonaldTrump,Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/21/2018,Politicians,@realDonaldTrump,I was thrilled to be back in Minnesota for a roundtable with hardworking American Patriots. Thank you! https://t.co/suoRN02zMq +06/21/2018,Politicians,@realDonaldTrump,"""The real big story that affects everybody in America is the success of @POTUS's TAX CUT package and what it's done… https://t.co/smOSnyG5af" +06/21/2018,Politicians,@realDonaldTrump,My Administration is acting swiftly to address the illegal immigration crisis on the Southern Border. Loopholes in… https://t.co/HKQoVS6NOC +06/21/2018,Politicians,@realDonaldTrump,"Democrats want open Borders, where anyone can come into our Country, and stay. This is Nancy Pelosi’s dream. It won’t happen!" +06/21/2018,Politicians,@realDonaldTrump,"Henry McMaster has done a great job as Governor of South Carolina. The state is BOOMING, with jobs and new industry… https://t.co/rqS2Ik8O4B" +06/21/2018,Politicians,@realDonaldTrump,"What is the purpose of the House doing good immigration bills when you need 9 votes by Democrats in the Senate, and… https://t.co/sCHOadpnrC" +06/21/2018,Politicians,@realDonaldTrump,Last night in Minnesota was incredible. What a crowd! +06/21/2018,Politicians,@realDonaldTrump,"I will be going the Columbia, South Carolina, on Monday night to do a campaign speech for one of my very early supp… https://t.co/LVP98f5jlC" +06/21/2018,Politicians,@realDonaldTrump,"The Border has been a big mess and problem for many years. At some point Schumer and Pelosi, who are weak on Crime… https://t.co/iqH0ztipty" +06/21/2018,Politicians,@realDonaldTrump,"We shouldn’t be hiring judges by the thousands, as our ridiculous immigration laws demand, we should be changing ou… https://t.co/X25UsJjKaq" +06/21/2018,Politicians,@realDonaldTrump,ALL-TIME RECORD OPTIMISM! https://t.co/ZTrfJY2afh +06/21/2018,Politicians,@realDonaldTrump,"Just returning from the Great State of Minnesota where we had an incredible rally with 9,000 people, and at least 1… https://t.co/eqhc4yqV5x" +06/21/2018,Politicians,@realDonaldTrump,"Thank you Duluth, Minnesota. Together, we are MAKING AMERICA GREAT AGAIN! https://t.co/G0hbbx6xAK" +06/20/2018,Politicians,@realDonaldTrump,"So sorry, people wanting to get into the already packed arena - I LOVE YOU ALL! https://t.co/PFvXrsvgkA" +06/20/2018,Politicians,@realDonaldTrump,"Just landed in Duluth, Minnesota. Two events planned - looking forward to them and being with @PeteStauber and his wonderful family!" +06/20/2018,Politicians,@realDonaldTrump,"Don’t worry, the Republicans, and your President, will fix it! https://t.co/xsbuPzXbHj" +06/20/2018,Politicians,@realDonaldTrump,Look what Fake ABC News put out. I guess they had it prepared from the 13 Angry Democrats leading the Witch Hunt!… https://t.co/v4AYIQ7r2b +06/20/2018,Politicians,@realDonaldTrump,Had a great meeting with the House GOP last night at the Capitol. They applauded and laughed loudly when I mentione… https://t.co/O0s8sDXYxE +06/20/2018,Politicians,@realDonaldTrump,https://t.co/yfwdyUHmn3 +06/20/2018,Politicians,@realDonaldTrump,More records! #MAGA https://t.co/2CP5eq40Fy +06/20/2018,Politicians,@realDonaldTrump,"RT @PastorDScott: Once the mid terms are over, liberals won’t talk about detained or separated illegal immigrant children until 2020. #itsa…" +06/20/2018,Politicians,@realDonaldTrump,"RT @GlobalGolfPost: The golf world has lost a legend in five-time Open Championship winner Peter Thomson. + +READ: https://t.co/TfMHo2GeDG h…" +06/20/2018,Politicians,@realDonaldTrump,"“FBI texts have revealed anti-Trump Bias.” @FoxNews Big News, but the Fake News doesn’t want to cover. Total corru… https://t.co/tpRbo2iB09" +06/20/2018,Politicians,@realDonaldTrump,RT @EricTrump: It is hard to believe that the historic North Korea / Kim Jong Un summit was exactly one week ago. Truly amazing to see the… +06/20/2018,Politicians,@realDonaldTrump,"It’s the Democrats fault, they won’t give us the votes needed to pass good immigration legislation. They want open… https://t.co/P4YieZ06fO" +06/20/2018,Politicians,@realDonaldTrump,The Fake News is not mentioning the safety and security of our Country when talking about illegal immigration. Our… https://t.co/y2ky7PrZBi +06/20/2018,Politicians,@realDonaldTrump,THANK YOU @HouseGOP! https://t.co/scvACfJwts +06/20/2018,Politicians,@realDonaldTrump,"Earlier today, @FLOTUS Melania and I were honored to welcome King Felipe VI and Queen Letizia of Spain to the… https://t.co/7zRBKqtddB" +06/20/2018,Politicians,@realDonaldTrump,Homeland Security @SecNielsen did a fabulous job yesterday at the press conference explaining security at the borde… https://t.co/2tSM8kZz2W +06/19/2018,Politicians,@realDonaldTrump,I want to take a moment to address the current illegal immigration crisis on the Southern Border...it has been goin… https://t.co/TzmghX7msJ +06/19/2018,Politicians,@realDonaldTrump,THANK YOU @NFIB! #NFIB75 https://t.co/5ppZhQhZu0 +06/19/2018,Politicians,@realDonaldTrump,"Join me tomorrow in Duluth, Minnesota for a #MAGA Rally! Tickets: https://t.co/mhhJB8WQlF https://t.co/gP59o1RDqW" +06/19/2018,Politicians,@realDonaldTrump,#CHANGETHELAWS Now is the best opportunity ever for Congress to change the ridiculous and obsolete laws on immigr… https://t.co/UE55LlOUHz +06/19/2018,Politicians,@realDonaldTrump,"We must always arrest people coming into our Country illegally. Of the 12,000 children, 10,000 are being sent by th… https://t.co/binoy1gDOH" +06/19/2018,Politicians,@realDonaldTrump,"Democrats are the problem. They don’t care about crime and want illegal immigrants, no matter how bad they may be,… https://t.co/ASy1D9UXLy" +06/19/2018,Politicians,@realDonaldTrump,"If you don’t have Borders, you don’t have a Country!" +06/19/2018,Politicians,@realDonaldTrump,Crime in Germany is up 10% plus (officials do not want to report these crimes) since migrants were accepted. Others… https://t.co/TLFg6fg1tN +06/19/2018,Politicians,@realDonaldTrump,I can’t think of something more concerning than a law enforcement officer suggesting that their going to use their… https://t.co/77nLJKxgDK +06/18/2018,Politicians,@realDonaldTrump,Comey gave Strozk his marching orders. Mueller is Comey’s best friend. Witch Hunt! +06/18/2018,Politicians,@realDonaldTrump,If President Obama (who got nowhere with North Korea and would have had to go to war with many millions of people b… https://t.co/7Wv5rZ14pr +06/18/2018,Politicians,@realDonaldTrump,It is the Democrats fault for being weak and ineffective with Boarder Security and Crime. Tell them to start thinki… https://t.co/P1CiI0U73I +06/18/2018,Politicians,@realDonaldTrump,CHANGE THE LAWS! +06/18/2018,Politicians,@realDonaldTrump,Children are being used by some of the worst criminals on earth as a means to enter our country. Has anyone been lo… https://t.co/sGqEpBPIvg +06/18/2018,Politicians,@realDonaldTrump,We don’t want what is happening with immigration in Europe to happen with us! +06/18/2018,Politicians,@realDonaldTrump,The people of Germany are turning against their leadership as migration is rocking the already tenuous Berlin coali… https://t.co/lX81ySIvts +06/18/2018,Politicians,@realDonaldTrump,Why don’t the Democrats give us the votes to fix the world’s worst immigration laws? Where is the outcry for the ki… https://t.co/UxvDtVF6cS +06/18/2018,Politicians,@realDonaldTrump,"“The highest level of bias I’ve ever witnessed in any law enforcement officer.” Trey Gowdy on the FBI’s own, Peter… https://t.co/D6wt89HrI8" +06/18/2018,Politicians,@realDonaldTrump,The Democrats should get together with their Republican counterparts and work something out on Border Security & Sa… https://t.co/t5Ckwe94P0 +06/18/2018,Politicians,@realDonaldTrump,"Why was the FBI’s sick loser, Peter Strzok, working on the totally discredited Mueller team of 13 Angry & Conflicte… https://t.co/Nb5PYNpKyf" +06/18/2018,Politicians,@realDonaldTrump,"Why was the FBI giving so much information to the Fake News Media. They are not supposed to be doing that, and know… https://t.co/cQ4u1JFjTU" +06/17/2018,Politicians,@realDonaldTrump,RT @WhiteHouse: Happy Father's Day! https://t.co/1Legof68lb +06/17/2018,Politicians,@realDonaldTrump,"WITCH HUNT! There was no Russian Collusion. Oh, I see, there was no Russian Collusion, so now they look for obstruc… https://t.co/vCDJvDuts8" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: The IG Report totally destroys James Comey and all of his minions including the great lovers, Peter Strzok and Lisa Pa…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: My supporters are the smartest, strongest, most hard working and most loyal that we have seen in our countries history…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Democrats can fix their forced family breakup at the Border by working with Republicans on new legislation, for a chan…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: I’ve had to beat 17 very talented people including the Bush Dynasty, then I had to beat the Clinton Dynasty, and now I…" +06/17/2018,Politicians,@realDonaldTrump,Washington Post employees want to go on strike because Bezos isn’t paying them enough. I think a really long strike… https://t.co/9zg9ex7xXR +06/17/2018,Politicians,@realDonaldTrump,"Our economy is perhaps BETTER than it has ever been. Companies doing really well, and moving back to America, and j… https://t.co/v2og0NMSZE" +06/17/2018,Politicians,@realDonaldTrump,The denuclearization deal with North Korea is being praised and celebrated all over Asia. They are so happy! Over h… https://t.co/ItgX9x2DOh +06/17/2018,Politicians,@realDonaldTrump,Holding back the “war games” during the negotiations was my request because they are VERY EXPENSIVE and set a bad l… https://t.co/Jpmyv8PEEY +06/17/2018,Politicians,@realDonaldTrump,"Funny how the Fake News, in a coordinated effort with each other, likes to say I gave sooo much to North Korea beca… https://t.co/MkaFk6dPfe" +06/17/2018,Politicians,@realDonaldTrump,"Daniel Henninger of The Wall Street Journal: “This IG Report makes it clear, as did Rod Rosenstein’s memo, that Tru… https://t.co/cH9udZa09R" +06/17/2018,Politicians,@realDonaldTrump,Please clear up the Fake News! https://t.co/3VbIKbmKwP +03/28/2008,Politicians,@HilaryClinton,@AblativMeatshld Hello +06/18/2018,Politicians,@BarackObama,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/12/2018,Politicians,@BarackObama,Congratulations to the @Capitals! This @NHLBlackhawks fan knows what it’s like to lift that cup – and I’m happy for… https://t.co/9LG5lxLQC7 +06/08/2018,Politicians,@BarackObama,"“Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us abo… https://t.co/l79o6OyNAT" +06/01/2018,Politicians,@BarackObama,"This National Gun Violence Awareness Day, show your commitment to keeping our kids safe from gun violence. Then, fo… https://t.co/Nr5qxK8sgu" +05/28/2018,Politicians,@BarackObama,"We can never truly repay the debt we owe our fallen heroes. But we can remember them, honor their sacrifice, and af… https://t.co/iHLhFdhoZQ" +05/23/2018,Politicians,@BarackObama,This Center is for the leaders of tomorrow who are ready to step up and build the world as it should be. Michelle a… https://t.co/XN7anzCTst +05/13/2018,Politicians,@BarackObama,"Happy Mother’s Day to every mom out there, especially the remarkable moms in my life, @MichelleObama and my mother-… https://t.co/QsZPuZ2OoJ" +05/08/2018,Politicians,@BarackObama,There are few issues more important to the security of the US than the potential spread of nuclear weapons or the p… https://t.co/ym4YTPpbWl +05/02/2018,Politicians,@BarackObama,RT @MichelleObama: Happy #CollegeSigningDay! So excited to be in Philly to celebrate all the young people making the commitment to higher e… +04/23/2018,Politicians,@BarackObama,"These talented young people will create a better future not just in Africa, but around the world. I can’t wait to s… https://t.co/0YgQxnOrz9" +04/18/2018,Politicians,@BarackObama,Our statement on the passing of Former First Lady Barbara Bush: https://t.co/MhTVYCL9Nj +04/16/2018,Politicians,@BarackObama,RT @ObamaFoundation: We just announced the inaugural class of #ObamaFellows. These 20 civic leaders have carried out inspiring work around… +04/04/2018,Politicians,@BarackObama,"RT @ObamaFoundation: This week—50 years since Dr. Martin Luther King, Jr. was killed—@BarackObama and @RepJohnLewis sat down with a group o…" +03/25/2018,Politicians,@BarackObama,Incredible to have a Chicago team in the Final Four. I’ll take that over an intact bracket any day! Congratulations… https://t.co/V9IbaSlbIp +03/24/2018,Politicians,@BarackObama,Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading… https://t.co/d0DTg594Cs +03/19/2018,Politicians,@BarackObama,Our most important task as a nation is to make sure all our young people can achieve their dreams. We’ve started th… https://t.co/gNw9ks6pMY +03/19/2018,Politicians,@BarackObama,"In Singapore with young people who are advocating for education, empowering young women, and getting involved all o… https://t.co/V5uHCeMWUa" +03/16/2018,Politicians,@BarackObama,41: I like the competition. And the loyalty to the home team. - 44 https://t.co/XG3ChMtW0M +03/15/2018,Politicians,@BarackObama,Congrats to @LoyolaChicago and Sister Jean for a last-second upset - I had faith in my pick! +03/14/2018,Politicians,@BarackObama,"Just because I have more time to watch games doesn’t mean my picks will be better, but here are my brackets this ye… https://t.co/gWpZwlceV3" +03/14/2018,Politicians,@BarackObama,Have fun out there among the stars. https://t.co/S285MTwGtp +03/12/2018,Politicians,@BarackObama,"Four years ago, @MichelleObama and I had the privilege to host Lt. Cmdr. Dan Cnossen and his fellow Paralympians an… https://t.co/kneWyU2Tu1" +02/28/2018,Politicians,@BarackObama,"I got my start holding community meetings in Chicago, so it was fun to be home for one tonight. Michelle and I want… https://t.co/1ammpZayJx" +02/22/2018,Politicians,@BarackObama,"Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless stu… https://t.co/wXO3wBtJ8V" +02/21/2018,Politicians,@BarackObama,"Billy Graham was a humble servant who prayed for so many - and who, with wisdom and grace, gave hope and guidance t… https://t.co/V8WtgIRPEB" +02/15/2018,Politicians,@BarackObama,We are grieving with Parkland. But we are not powerless. Caring for our kids is our first job. And until we can hon… https://t.co/LWGSkzRapH +02/14/2018,Politicians,@BarackObama,"Happy Valentine’s Day, @MichelleObama. You make every day and every place better. https://t.co/aWvyytR7Mm" +02/14/2018,Politicians,@BarackObama,"RT @MichelleObama: Happy #ValentinesDay to my one and only, @BarackObama. To celebrate the occasion, I’m dedicating a little Valentine’s Da…" +01/15/2018,Politicians,@BarackObama,"Dr. King was 26 when the Montgomery bus boycott began. He started small, rallying others who believed their efforts… https://t.co/N0zwBg7gTi" +12/29/2017,Politicians,@BarackObama,"All across America people chose to get involved, get engaged and stand up. Each of us can make a difference, and al… https://t.co/zxpKVnNeHZ" +12/29/2017,Politicians,@BarackObama,"Ten-year-old Jahkil Jackson is on a mission to help homeless people in Chicago. He created kits full of socks, toil… https://t.co/7mNk6dmnyC" +12/29/2017,Politicians,@BarackObama,"Chris Long gave his paychecks from the first six games of the NFL season to fund scholarships in Charlottesville, V… https://t.co/KxUk5Wle6h" +12/29/2017,Politicians,@BarackObama,"Kat Creech, a wedding planner in Houston, turned a postponed wedding into a volunteer opportunity for Hurricane Har… https://t.co/MCXiSuAVJN" +12/29/2017,Politicians,@BarackObama,"As we count down to the new year, we get to reflect and prepare for what’s ahead. For all the bad news that seemed… https://t.co/WaUHkVww2g" +12/27/2017,Politicians,@BarackObama,"RT @MBK_Alliance: I am my Brother’s Keeper. +Watch our new PSA with @BarackObama, @StephenCurry30 & @chancetherapper, then take action to s…" +12/25/2017,Politicians,@BarackObama,"On behalf of the Obama family, Merry Christmas! We wish you joy and peace this holiday season. https://t.co/CNFUZrhrBj" +12/14/2017,Politicians,@BarackObama,There's no better time than the holiday season to reach out and give back to our communities. Great to hear from yo… https://t.co/gp5dCy9oN2 +12/13/2017,Politicians,@BarackObama,"Happy Hanukkah, everybody, from the Obama family to yours. Chag Sameach!" +12/11/2017,Politicians,@BarackObama,Just got off a call to thank folks who are working hard to help more Americans across the country sign up for healt… https://t.co/A9QvCySWJ8 +12/04/2017,Politicians,@BarackObama,RT @ObamaFoundation: Watch: We hosted a Town Hall in New Delhi with @BarackObama and young leaders about how to drive change and make an im… +11/27/2017,Politicians,@BarackObama,Michelle and I are delighted to congratulate Prince Harry and Meghan Markle on their engagement. We wish you a life… https://t.co/KC9nmjZPuX +11/23/2017,Politicians,@BarackObama,"From the Obama family to yours, we wish you a Happy Thanksgiving full of joy and gratitude. https://t.co/xAvSQwjQkz" +11/20/2017,Politicians,@BarackObama,"ME: Joe, about halfway through the speech, I’m gonna wish you a happy birth-- +BIDEN: IT’S MY BIRTHDAY! +ME: Joe.… https://t.co/5qLUsDoaMi" +11/11/2017,Politicians,@BarackObama,"RT @ObamaFoundation: Today, we honor those who have honored our country with its highest form of service. https://t.co/IbJNCwIofL https://t…" +11/08/2017,Politicians,@BarackObama,This is what happens when the people vote. Congrats @RalphNortham and @PhilMurphyNJ . And congratulations to all th… https://t.co/ZvUKZIDGAj +11/07/2017,Politicians,@BarackObama,Every election matters - those who show up determine our future. Go vote tomorrow! https://t.co/j1wh8hLamw +11/06/2017,Politicians,@BarackObama,May God also grant all of us the wisdom to ask what concrete steps we can take to reduce the violence and weaponry in our midst. +11/06/2017,Politicians,@BarackObama,"We grieve with all the families in Sutherland Springs harmed by this act of hatred, and we’ll stand with the survivors as they recover..." +11/01/2017,Politicians,@BarackObama,"Starting today, you can sign up for 2018 health coverage. Head on over to https://t.co/ob1Ynoesod and find a plan t… https://t.co/6eN1Y5TQGV" +11/01/2017,Politicians,@BarackObama,Michelle and I are thinking of the victims of today's attack in NYC and everyone who keeps us safe. New Yorkers are as tough as they come. +10/30/2017,Politicians,@BarackObama,"Hello, #ObamaSummit! Thrilled to host civic leaders in Chicago from all over the world. Follow along at @ObamaFoundation." +10/23/2017,Politicians,@BarackObama,"I’ll let you and @ladygaga handle the singing, and we’ll handle the donations. There’s still time to give:… https://t.co/0NnaR3bozh" +10/22/2017,Politicians,@BarackObama,Tonight the ex-Presidents are getting together in Texas to support all our fellow Americans rebuilding from this ye… https://t.co/nFSou6JC6n +10/16/2017,Politicians,@BarackObama,"I'm grateful to @SenJohnMcCain for his lifetime of service to our country. Congratulations, John, on receiving this year's Liberty Medal." +10/02/2017,Politicians,@BarackObama,Michelle & I are praying for the victims in Las Vegas. Our thoughts are with their families & everyone enduring another senseless tragedy. +09/30/2017,Politicians,@BarackObama,Proud to cheer on Team USA at the Invictus Games today with my friend Joe. You represent the best of our country. https://t.co/WBzcltmgqj +09/26/2017,Politicians,@BarackObama,"We're expanding our efforts to help Puerto Rico & the USVI, where our fellow Americans need us right now. Join us a… https://t.co/gkrp1RwXR4" +09/25/2017,Politicians,@BarackObama,"Prosecutor, soldier, family man, citizen. Beau made us want to be better. What a legacy to leave. What a testament… https://t.co/XDtkLu32wd" +09/20/2017,Politicians,@BarackObama,RT @gatesfoundation: President @BarackObama addresses #Goalkeepers17 starting at 12:40 PM. Tune in here: https://t.co/XmHBErSHYw +09/20/2017,Politicians,@BarackObama,Thinking about our neighbors in Mexico and all our Mexican-American friends tonight. Cuidense mucho y un fuerte abrazo para todos. +09/18/2017,Politicians,@BarackObama,"Coding is important – and fun. @CSforAll, thanks for your work to make sure every kid can compete in a high-tech, g… https://t.co/xwlnvxsjKb" +09/13/2017,Politicians,@BarackObama,Michelle and I want the @ObamaFoundation to inspire and empower people to change the world. Here's how we're gettin… https://t.co/xY0UhBSvqp +09/11/2017,Politicians,@BarackObama,We remember everyone we lost on 9/11 and honor all who defend our country and our ideals. No act of terror will ever change who we are. +09/10/2017,Politicians,@BarackObama,"RT @GeorgeHWBush: Across the U.S., Americans have answered the call to help with hurricane recovery. Praying for all Floridians. #Irma http…" +09/08/2017,Politicians,@BarackObama,Proud of these McKinley Tech students—inspiring young minds that make me hopeful about our future. https://t.co/nqYC1mjjTB +09/07/2017,Politicians,@BarackObama,Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/05/2017,Politicians,@BarackObama,"To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co/TCxZdld7L4" +08/27/2017,Politicians,@BarackObama,Thank you to all the first responders and people helping each other out. That's what we do as Americans. Here's one… https://t.co/I3RHWyZe31 +08/17/2017,Politicians,@BarackObama,Michelle and I are thinking of the victims and their families in Barcelona. Americans will always stand with our Spanish friends. Un abrazo. +08/13/2017,Politicians,@BarackObama,"""...For love comes more naturally to the human heart than its opposite."" - Nelson Mandela" +08/13/2017,Politicians,@BarackObama,"""People must learn to hate, and if they can learn to hate, they can be taught to love...""" +08/13/2017,Politicians,@BarackObama,"""No one is born hating another person because of the color of his skin or his background or his religion..."" https://t.co/InZ58zkoAm" +07/20/2017,Politicians,@BarackObama,"John McCain is an American hero & one of the bravest fighters I've ever known. Cancer doesn't know what it's up against. Give it hell, John." +06/22/2017,Politicians,@BarackObama,Health care has always been about something bigger than politics: it's about the character of our country. https://t.co/UqLO14Hef7 +06/18/2017,Politicians,@BarackObama,"Of all that I've done in my life, I'm most proud to be Sasha and Malia's dad. To all those lucky enough to be a dad… https://t.co/XSqMhcSuvR" +06/02/2017,Politicians,@BarackObama,"On this National Gun Violence Awareness Day, let your voice be heard and show your commitment to reducing gun viole… https://t.co/S7dth6Ywb0" +05/29/2017,Politicians,@BarackObama,Forever grateful for the service and sacrifice of all who fought to protect our freedoms and defend this country we… https://t.co/BwRS0onlOL +05/27/2017,Politicians,@BarackObama,Good to see my friend Prince Harry in London to discuss the work of our foundations & offer condolences to victims… https://t.co/f1U8It8AmE +05/25/2017,Politicians,@BarackObama,"Through faith, love, and resolve the character of the people of Manchester has shown itself. Our thoughts & prayer… https://t.co/xyMer891Zo" +05/23/2017,Politicians,@BarackObama,Our hearts go out to those killed and wounded in Manchester. Americans will always stand shoulder to shoulder with the people of the UK. +05/22/2017,Politicians,@BarackObama,"Excited to hear from Sierra, Imani, Filiz, and Benedikt who are making a difference at home and abroad. See you in… https://t.co/bF1kB1GvxC" +05/14/2017,Politicians,@BarackObama,"Happy Mother's Day to my love and partner on this journey @MichelleObama, and to all the wonderful, hardworking mothers out there." +05/03/2017,Politicians,@BarackObama,"We're rolling up our sleeves again, back where it all started. Join us at https://t.co/GYkEOK8EuT. https://t.co/UlyvNrQvZR" +05/02/2017,Politicians,@BarackObama,"Well said, Jimmy. That's exactly why we fought so hard for the ACA, and why we need to protect it for kids like Bil… https://t.co/jB3LXT94Ok" +04/24/2017,Politicians,@BarackObama,RT @ObamaFoundation: It’s a beautiful day on the South Side. https://t.co/PtoaFbww0s +03/23/2017,Politicians,@BarackObama,My heart goes out to the victims and their families in London. No act of terror can shake the strength and resilience of our British ally. +03/19/2017,Politicians,@BarackObama,"Chuck Berry rolled over everyone who came before him – and turned up everyone who came after. We'll miss you, Chuck. Be good." +03/08/2017,Politicians,@BarackObama,"On International Women’s Day, @MichelleObama and I are inspired by all of you who embrace your power to drive chang… https://t.co/Er9mIQlmgr" +03/02/2017,Politicians,@BarackObama,RT @ObamaFoundation: Courage comes in many forms. Who in your local community or neighborhood leads by example? #ProfileInCourage https://t… +03/02/2017,Politicians,@BarackObama,Humbled to be recognized by a family with a legacy of service. Who's your #ProfileInCourage? Tell me about them:… https://t.co/25Ohhab8Xn +02/17/2017,Politicians,@BarackObama,We asked. You answered. https://t.co/mAJvko6VqR +02/14/2017,Politicians,@BarackObama,"Happy Valentine’s Day, @michelleobama! Almost 28 years with you, but it always feels new. https://t.co/O0UhJWoqGN" +01/22/2017,Politicians,@BarackObama,I read letters like these every single day. It was one of the best parts of the job – hearing from you. https://t.co/so1luBcszV +01/20/2017,Politicians,@BarackObama,RT @ObamaFoundation: Add your voice: https://t.co/mA9MSHmi7o https://t.co/Uf7oEvkZF3 +01/20/2017,Politicians,@BarackObama,"In the meantime, I want to hear what you're thinking about the road ahead. So share your ideas with me here: https://t.co/GYkEOK8EuT" +01/20/2017,Politicians,@BarackObama,"Hi everybody! Back to the original handle. Is this thing still on? Michelle and I are off on a quick vacation, then we’ll get back to work." +01/10/2017,Politicians,@BarackObama,"Tonight, President Obama reflects on eight years of progress. Watch the #FarewellAddress at 9 pm ET: https://t.co/ZnwTsg155B #ObamaFarewell" +11/05/2016,Politicians,@BarackObama,"RT @OFA: ""Thanks to the Affordable Care Act, your coverage is better today than it was before."" + +Watch the weekly address: https://t.co/Pfk…" +11/05/2016,Politicians,@BarackObama,"In the weekly address, President Obama discusses what #Obamacare has done to improve health care. https://t.co/VdQlyrSZhx" +11/04/2016,Politicians,@BarackObama,"Let's keep working to keep our economy on a better, stronger course. https://t.co/bV2BVjyj7a" +11/04/2016,Politicians,@BarackObama,The landmark #ParisAgreement enters into force today—we must keep up the momentum to #ActOnClimate. https://t.co/Cyw5Udaoro +11/04/2016,Politicians,@BarackObama,"The economy added 161,000 jobs in October, and wages are up 2.8 percent over the past year. https://t.co/pJxjgLnjCt #JobsReport" +11/03/2016,Politicians,@BarackObama,There are a lot of plans out there. Check your options and lock in the one that's best for you: https://t.co/buFY9ozDz4 #GetCovered +11/03/2016,Politicians,@BarackObama,"The positive impact of #Obamacare is undeniable, but there's one big factor holding many states back: https://t.co/7XebIdRX34" +11/03/2016,Politicians,@BarackObama,RT @POTUS: It happened: @Cubs win World Series. That's change even this South Sider can believe in. Want to come to the White House before… +11/02/2016,Politicians,@BarackObama,Tens of millions of Americans have benefited from #Obamacare. Make sure you're one of them. #GetCovered https://t.co/e1KoXcPtpU +11/02/2016,Politicians,@BarackObama,"Thanks to #Obamacare, quality health care is available to everyone. The marketplace is now open—make sure you and y… https://t.co/89gl6pzMGD" +11/02/2016,Politicians,@BarackObama,RT @lacasablanca: La típica Latina tarda 22 meses en ganar lo que un hombre blanco gana en 12 meses. Tenemos que cerrar la brecha salarial.… +11/01/2016,Politicians,@BarackObama,"RT @WhiteHouse: On #LatinaEqualPay Day, we mark the work that remains to ensure that all Americans receive equal pay for equal work. https:…" +11/01/2016,Politicians,@BarackObama,Community organizing never goes out of style. Shop now: https://t.co/LXEbQdKLLT https://t.co/E56ofoU36i +11/01/2016,Politicians,@BarackObama,"With #Obamacare, people can focus on treatment for pre-existing conditions without the fear of coverage being cappe… https://t.co/jvdFY87XBu" +11/01/2016,Politicians,@BarackObama,"The Obamacare marketplace is now open. If you're uninsured, now is the time to shop for a plan and #GetCovered.… https://t.co/Spjlga4eTT" +10/31/2016,Politicians,@BarackObama,RT @FLOTUS: Open enrollment starts tomorrow! Check out your options at https://t.co/dg57hwz5of and share your #GetCovered story. https://t.… +10/31/2016,Politicians,@BarackObama,Lions and Tiggers and bears! Oh my! #HappyHalloween https://t.co/iU4fjBhi0Y +10/31/2016,Politicians,@BarackObama,Usted y su familia merecen la tranquilidad de saber que están cubiertos. El mercado de seguros abre mañana. https://t.co/9iRCkLRGZD +10/31/2016,Politicians,@BarackObama,"Speak up in support of quality, affordable health care for all. https://t.co/rGsSguMxvj" +10/31/2016,Politicians,@BarackObama,There's nothing to be scared of when searching for health insurance. Three in four people can #GetCovered for less… https://t.co/BUmnRO9B3E +10/31/2016,Politicians,@BarackObama,Open enrollment begins tomorrow—make sure you and your loved ones #GetCovered. https://t.co/2aak7Bt0s3 +10/30/2016,Politicians,@BarackObama,"RT @OFA: Witch plan is best for you? Thanks to Obamacare, even pre-existing conditions can't stop you from comparing your options. #GetCove…" +10/28/2016,Politicians,@BarackObama,Senate leaders' obstruction of our Supreme Court nomination process is unacceptable. Say so: https://t.co/t3pYMO8Fp0 #DoYourJob +10/28/2016,Politicians,@BarackObama,Senate leaders should put the common good above politics—the integrity of our nation's highest court depends on it.… https://t.co/iRVCEl1pzf +10/27/2016,Politicians,@BarackObama,Don't ghost on your health and well-being—your chance to #GetCovered is coming up. Open enrollment starts November… https://t.co/qwNLazuPiz +10/27/2016,Politicians,@BarackObama,Climate change is happening now. Denial is dangerous. https://t.co/0Nlf8Fst4u +10/27/2016,Politicians,@BarackObama,"If you're willing to work hard and play by the rules, you should be able to get ahead. https://t.co/394hdJttgO" +10/27/2016,Politicians,@BarackObama,President Obama lays out just a few of the ways in which #Obamacare has helped millions of Americans. https://t.co/qeqHRLz0ID +10/27/2016,Politicians,@BarackObama,New report: Renewable energy installations are beating fossil fuel installations for the first time. https://t.co/MMhIdu4jzt #ActOnClimate +10/27/2016,Politicians,@BarackObama,Obamacare has helped millions of Americans gain the peace of mind that comes with coverage. Show your support: https://t.co/NfrG7DHL5C +10/26/2016,Politicians,@BarackObama,"This is what happens when we focus on building an economy that works for everyone, not just those at the top. https://t.co/op3Z74rPeI" +10/26/2016,Politicians,@BarackObama,"No one's too wrapped up in pre-existing conditions to #GetCovered. +Thanks to Obamacare, you can find a plan that m… https://t.co/C7H9TZdxeU" +10/26/2016,Politicians,@BarackObama,Help protect the progress we've made in helping millions of Americans get covered. Add your name now: https://t.co/HQSZKPl1eH +10/26/2016,Politicians,@BarackObama,DYK: Most people can find a plan for less than $75 per month. Open enrollment starts on November 1. #GetCovered https://t.co/9RGG5Pr4mb +10/25/2016,Politicians,@BarackObama,"Women, the sick, survivors—they all deserve fair treatment in our health care system. #Obamacare https://t.co/G948HN7pzV" +10/25/2016,Politicians,@BarackObama,Don't get tripped up by misinformation. Join the @OFA Truth Team today: https://t.co/wJZj1QCxXm https://t.co/vwwDgFHq6A +10/25/2016,Politicians,@BarackObama,"RT @SecBurwell: Most people shopping on @HealthCareGov will again find plans with premiums of less than $75/month, thanks to financial assi…" +10/25/2016,Politicians,@BarackObama,Be proud of the progress we've made together—wear the mark of this movement. https://t.co/fYf2O9WAwG https://t.co/1Z4yJmYh4E +10/24/2016,Politicians,@BarackObama,Strong policies that help working families get ahead are good for our economy. https://t.co/QRRhibjZCl +10/24/2016,Politicians,@BarackObama,The four-week average of jobless claims fell to the lowest level since 1973—a sign of a healthy labor market. https://t.co/Lv7DnRM2DY +10/24/2016,Politicians,@BarackObama,"Since 2010, America's uninsured rate has been cut in half. Help build on that progress—join Team #Obamacare today: https://t.co/MhIICuE17A" +10/24/2016,Politicians,@BarackObama,"RT @OFA: It's working. +It's saving lives. +And we're not going back. +Retweet to show your support. https://t.co/YOBeMMSYP8" +10/24/2016,Politicians,@BarackObama,"Health care is a right, not a privilege—and #Obamacare works to protect that right for millions of Americans. https://t.co/B7fO8rhggW" +10/21/2016,Politicians,@BarackObama,Don't get tripped up by misinformation. Join the @OFA Truth Team today: https://t.co/09BpA6F9Ne https://t.co/Nxgp87o4iq +10/21/2016,Politicians,@BarackObama,Being able to stay on a parent's plan enables millions of young adults to make choices about their future with the… https://t.co/1lSzxCHZVf +10/21/2016,Politicians,@BarackObama,"""Because of Obamacare, another 20 million Americans now know the financial security of health insurance."" https://t.co/eNd6J8bMxm" +10/20/2016,Politicians,@BarackObama,Stand up for the law that's helped 20 million more Americans gain health coverage. Join Team @Obamacare today: https://t.co/XiNXrgnPoF +10/20/2016,Politicians,@BarackObama,"There's still more work to do, but let's celebrate how far we've come. https://t.co/kUVWn68kJw" +10/20/2016,Politicians,@BarackObama,LIVE: President Obama is in Miami talking about the progress made possible by the Affordable Care Act. https://t.co/7FsQXut07O +10/20/2016,Politicians,@BarackObama,"RT @WhiteHouse: Each day, @POTUS reads 10 letters from Americans. Today, we're sharing some of the letters written about #ACA: https://t.co…" +10/20/2016,Politicians,@BarackObama,Tune in at 1:55 p.m. ET to watch President Obama speak about the successes of the Affordable Care Act. https://t.co/7FsQXut07O +10/20/2016,Politicians,@BarackObama,There's a lot of misinformation floating around. Make sure you've got the facts—join the @OFA Truth Team:… https://t.co/SpfRFK5LWq +10/19/2016,Politicians,@BarackObama,"From coast to coast, editorial boards are denouncing Senate obstructionism. Take a look: https://t.co/vqDr2bBiVr #DoYourJob" +10/19/2016,Politicians,@BarackObama,"Our Supreme Court has been short a justice for far too long. #DoYourJob, Senate leaders. https://t.co/yJlejtHjr0" +10/19/2016,Politicians,@BarackObama,"RT @SecBurwell: Today, 20M more Americans have coverage thanks to the #ACA. Our uninsured rate is the lowest in our nation’s history. Lowes…" +10/19/2016,Politicians,@BarackObama,The need for a ninth justice is undeniably clear. #DoYourJob https://t.co/L1EBgNbh3Q +10/18/2016,Politicians,@BarackObama,We can't afford to let this be the new normal. https://t.co/nJzyfz2Zlw #ActOnClimate +10/18/2016,Politicians,@BarackObama,Denying climate change is dangerous. Join @OFA supporters in standing up for bold action now: https://t.co/JZnvlb080l #ActOnClimate +10/18/2016,Politicians,@BarackObama,"Climate change is real, but so is the progress we're making to #ActOnClimate. Let's keep it up. https://t.co/GOFKXQblGJ" +10/18/2016,Politicians,@BarackObama,This is just the latest step forward in the push to #ActOnClimate. https://t.co/UDInkidKkP +10/17/2016,Politicians,@BarackObama,Read why @FLOTUS is fighting to ensure that girls everywhere have access to quality education. https://t.co/xleq3HHSZt #LetGirlsLearn +10/17/2016,Politicians,@BarackObama,"Wildfires in the next few decades could be ""unrecognizable"" to previous generations—because of climate change: https://t.co/vM3xM6mCf3" +10/17/2016,Politicians,@BarackObama,Senate leaders are blocking the Supreme Court nomination for their own political gain—don't be silent: https://t.co/OMdTVim0TC #DoYourJob +10/17/2016,Politicians,@BarackObama,"RT @WhiteHouse: ""Nobody should be priced out of a higher education."" —@POTUS on the progress we've made: https://t.co/4YohVv7Qea https://t.…" +10/17/2016,Politicians,@BarackObama,RT @WHLive: Watch as @POTUS speaks on the progress made to ensure every student has the opportunity to realize their potential: https://t.c… +10/17/2016,Politicians,@BarackObama,Senate leaders have recognized Judge Garland's impeccable credentials in the past. He deserves a fair hearing and a… https://t.co/w9bPtpSmm7 +10/14/2016,Politicians,@BarackObama,We need a fully functional Supreme Court. Editorial boards across the country agree: https://t.co/BkLrNaTtzN #DoYourJob +10/14/2016,Politicians,@BarackObama,The American Bar Association gave Judge Garland its highest rating. Senate leaders: #DoYourJob and fill the #SCOTUS… https://t.co/iTVTqGIUvV +10/14/2016,Politicians,@BarackObama,Denying climate change is dangerous. Join @OFA supporters in standing up for bold action now: https://t.co/7MDQGYgX2u #ActOnClimate +10/14/2016,Politicians,@BarackObama,"Cynics, take note: When we #ActOnClimate, we build a stronger future. https://t.co/wHHMdo2ro6" +10/13/2016,Politicians,@BarackObama,"""That’s how we will overcome the challenges we face: by unleashing the power of all of us for all of us."" Read more: https://t.co/VxpwLIR4uF" +10/13/2016,Politicians,@BarackObama,Check out the most recent editorial boards calling on Senate leaders to vote on Judge Garland: https://t.co/hzuhZYevfo #DoYourJob +10/13/2016,Politicians,@BarackObama,"Senate leaders have undercut the functionality of the Supreme Court, and that's unacceptable. #DoYourJob https://t.co/5HFXhgTMoP" +10/13/2016,Politicians,@BarackObama,Senate leaders' political games are handicapping the Supreme Court—and judgeships across the country. https://t.co/PhKOBKXLmS #DoYourJob +10/13/2016,Politicians,@BarackObama,"RT @WIRED: After eight years in office, @POTUS remains optimistic about the world's future. His essay as WIRED’s guest editor: https://t.co…" +10/12/2016,Politicians,@BarackObama,LIVE: President Obama is speaking at a reception celebrating #HispanicHeritageMonth. https://t.co/FK0ytbKw1q +10/12/2016,Politicians,@BarackObama,"RT @WhiteHouse: In honor of #HispanicHeritageMonth, we celebrate the progress that Hispanic Americans have made under @POTUS: https://t.co/…" +10/12/2016,Politicians,@BarackObama,Support the bold steps we're taking against climate change. Say you're ready to #ActOnClimate: https://t.co/EtwjaKgYFW +10/12/2016,Politicians,@BarackObama,"Last week, more than 190 countries reached a landmark deal to reduce carbon pollution from aviation. https://t.co/LRYkXVw3rO #ActOnClimate" +10/12/2016,Politicians,@BarackObama,Let's leave our children and grandchildren a planet that's healthier than the one we have today. #ActOnClimate https://t.co/mP29bpRdU9 +10/12/2016,Politicians,@BarackObama,Climate change's effects are devastating. Denying the science behind it does nothing to help. https://t.co/Rww40wwgD9 #ActOnClimate +10/11/2016,Politicians,@BarackObama,"""On behalf of Michelle and our family, G’mar Chatimah Tovah."" —President Obama #YomKippur" +10/11/2016,Politicians,@BarackObama,"""LGBT individuals deserve to know their country stands beside them."" —President Obama #NationalComingOutDay https://t.co/op7nBzbaod" +10/11/2016,Politicians,@BarackObama,The Supreme Court must remain above politics. Judge Garland needs a hearing and a vote. #DoYourJob https://t.co/eVSPSIFNpB +10/11/2016,Politicians,@BarackObama,Don't stand idly by while Senate leaders continue to block Judge Garland from a fair hearing and vote: https://t.co/TSavHP3mHg #DoYourJob +10/11/2016,Politicians,@BarackObama,"Judge Garland is just as qualified now as he was in 1997, Senate leaders. It's time to #DoYourJob. https://t.co/j1lEkdMYV6" +10/11/2016,Politicians,@BarackObama,Dispel misinformation with facts from the @OFA Truth Team. https://t.co/zjexLUJXAC +10/07/2016,Politicians,@BarackObama,"The uninsured rate is the lowest it's been in decades, thanks to #Obamacare. Spread the word.… https://t.co/ZkN8HVbn3E" +10/07/2016,Politicians,@BarackObama,Deadline tonight—help rein in payday lenders that succeed by targeting vulnerable Americans: https://t.co/7OlpH6OFek #StopTheDebtTrap +10/07/2016,Politicians,@BarackObama,The Obama administration and @CFPB are working to protect consumers and #StopTheDebtTrap. https://t.co/UMO01OUkdh +10/07/2016,Politicians,@BarackObama,"Our economy is on a better, stronger course. https://t.co/yzB6x7CExJ" +10/07/2016,Politicians,@BarackObama,The economic progress we've made is undeniable—let's keep it up. https://t.co/gAlfaC1hkI +10/07/2016,Politicians,@BarackObama,Check out President Obama's essay in @TheEconomist on the unique challenges the American economy faces. https://t.co/jKJNCrQALL +10/07/2016,Politicians,@BarackObama,"The economy added 156,000 jobs in September—extending the longest streak of total job growth on record." +10/06/2016,Politicians,@BarackObama,ICYMI: Read about the historic #ParisAgreement and what it means for the fight to #ActOnClimate. https://t.co/eMefgFZk53 +10/06/2016,Politicians,@BarackObama,"RT @WhiteHouse: This is #SXSL: The White House festival of ideas, art, and action. Take a peek inside: https://t.co/BbvvMEaQTF https://t.co…" +10/06/2016,Politicians,@BarackObama,The cost of clean energy technology dropped significantly over the last eight years. Get the chart: https://t.co/fuGQMXeRYb #ActOnClimate +10/05/2016,Politicians,@BarackObama,This historic step in the fight to #ActOnClimate came faster than anyone predicted. https://t.co/W2rtcNXkI7 +10/05/2016,Politicians,@BarackObama,"""Today is a historic day in the fight to protect our planet for future generations."" —President Obama #ActOnClimate https://t.co/x3dJSCYUcj" +10/05/2016,Politicians,@BarackObama,LIVE: President Obama is delivering a statement on the Paris Climate Agreement. https://t.co/mNpQ6QyA91 +10/05/2016,Politicians,@BarackObama,Read from @NYTopinion about why filling the Supreme Court vacancy is crucial for our democracy: https://t.co/zuSWzxSaqW #DoYourJob +10/04/2016,Politicians,@BarackObama,Enough is enough. Say it's time for Senate leaders to get to work: https://t.co/2M789YIcBk #DoYourJob +10/04/2016,Politicians,@BarackObama,"""Everybody cares about their kids, their grandkids, and the kind of world we pass on to them."" —President Obama https://t.co/cfxpSBNWIU" +07/01/2018,Politicians,@BillClinton,Thanks for having us! We loved being on @amazon’s campus. https://t.co/ZxlmQdjNRD +06/25/2018,Politicians,@BillClinton,Going up to Maine and spending time with you is one of my favorite times of the year. Happy to see you. https://t.co/FQTTU7niV9 +06/21/2018,Politicians,@BillClinton,"RT @ChelseaClinton: Grateful for the opportunity to help launch @2SmalltoFail’s newest #TalkingIsTeaching campaign today, in partnership wi…" +06/19/2018,Politicians,@BillClinton,Excited to hear that #ThePresidentIsMissing is officially a #1 New York Times Bestseller! Thank you to everyone who… https://t.co/ZbHSwhIMmx +06/17/2018,Politicians,@BillClinton,On this Father’s Day I’m thinking of the thousands of children separated from their parents at the border. These ch… https://t.co/bAy4F4cvOM +06/06/2018,Politicians,@BillClinton,I was honored to join the Kennedy family today at Arlington National Cemetery to celebrate the life of Robert F. Ke… https://t.co/FQd0a8QibB +06/05/2018,Politicians,@BillClinton,"RT @JP_Books: Hello New York! 🌇 + +I am signing #ThePresidentMissing at the 5th Ave @BNBuzz at 12:00pm with @BillClinton. Come get your copy…" +05/28/2018,Politicians,@BillClinton,"Remembering, honoring, and thanking all who served our great country. #MemorialDay2018" +05/24/2018,Politicians,@BillClinton,"At the @ClintonFdn, we're changing lives across the United States and around the world. I'm proud to share this upd… https://t.co/fi0Bf8ktK0" +05/23/2018,Politicians,@BillClinton,"RT @HillaryClinton: Just spent a great evening with two of my favorite authors discussing their new book, The President is Missing. It’s a…" +05/16/2018,Politicians,@BillClinton,"Join James Patterson and me as we travel across the country to talk about our new thriller, The President is Missin… https://t.co/oa7qUXe85z" +05/14/2018,Politicians,@BillClinton,James Patterson (@JP_Books) and I think we’ve come up with three of the most frightening days in the history of the… https://t.co/sZbkbS6cUj +05/07/2018,Politicians,@BillClinton,"On his last day in office, I am grateful to @MayorLandrieu for his leadership these past 8 years as mayor of New Or… https://t.co/1tWCOjpzHs" +05/06/2018,Politicians,@BillClinton,Honored to have joined the Advisory Council for Bosnia Herzegovina to reflect on how we came together to end war th… https://t.co/7NrtfiWEDz +04/28/2018,Politicians,@BillClinton,"RT @ClintonFdn: We're partnering to offer colleges 40K doses of #naloxone, a lifesaving drug that can reverse opioid overdose. https://t.co…" +04/23/2018,Politicians,@BillClinton,Want to meet me and James Patterson (@JP_Books) in person? Here’s a chance for you and a guest to join us at one of… https://t.co/opuoqVlPxE +04/22/2018,Politicians,@BillClinton,"This #EarthDay, I join in celebrating efforts by young people, socially-responsible businesspeople, local & nationa… https://t.co/VceNifW5aj" +04/20/2018,Politicians,@BillClinton,"If you know a young leader with big ideas, I hope you’ll encourage them to join us at @CGIU 2018 this fall:… https://t.co/aV1ezdKS8s" +04/19/2018,Politicians,@BillClinton,"Coach Popovich - I join the NBA family and countless fans across the country who are thinking of you, Jill, and Mic… https://t.co/6VahY0xX9s" +04/17/2018,Politicians,@BillClinton,"Barbara Bush was a remarkable woman. She had grit & grace, brains & beauty. She was fierce & feisty in support of h… https://t.co/0kyGOCt32Y" +04/15/2018,Politicians,@BillClinton,"This #JackieRobinsonDay, I join in celebrating his legendary life and career—and his vision for a more inclusive Am… https://t.co/3L4bbBqgHH" +04/15/2018,Politicians,@BillClinton,RT @PLSprogram: Mrs. Bush inspired 2018 Scholars and staff during our time in College Station last month. We are keeping her and the entire… +04/10/2018,Politicians,@BillClinton,"Twenty years ago today, the Good Friday Agreement, in Seamus Heaney’s words, “cleared a space for the miraculous.”… https://t.co/QTxIxAWiuR" +04/05/2018,Politicians,@BillClinton,"What an incredible accomplishment, Micheal. Follow your heart and your head, your future is incredibly bright. I ca… https://t.co/E5AvD21FG2" +04/04/2018,Politicians,@BillClinton,Fifty years after his death Dr. King’s work lives on—reminding us all that on this hallowed day we should celebrate… https://t.co/2aaMwLFy49 +04/03/2018,Politicians,@BillClinton,"Tune in now as we turn #IdeasIntoAction in support of the people of Puerto Rico, the U.S. Virgin Islands, and the C… https://t.co/L5ykeOJgmG" +04/01/2018,Politicians,@BillClinton,RT @KevinThurm: A terrific collaboration by two members of the @ClintonGlobal community uses recycled material from Haiti to create new job… +03/25/2018,Politicians,@BillClinton,"Rest in peace, Michael Davidson, a 15-year veteran of the @FDNY. My prayers are with his wife Eileen and their 4 ch… https://t.co/sm74TPwPSR" +03/24/2018,Politicians,@BillClinton,"Led by inspiring, determined students of Stoneman Douglas High School, today we saw hundreds of thousands across Am… https://t.co/cgdiCg8yT4" +03/23/2018,Politicians,@BillClinton,America owes its gratitude to the students of Stoneman Douglas and their peers across the country who have joined t… https://t.co/XzJpsyINB9 +03/21/2018,Politicians,@BillClinton,"Pete Peterson was a brilliant businessman, principled public servant, committed philanthropist, great friend and pr… https://t.co/ISzXe2lrfY" +03/16/2018,Politicians,@BillClinton,Hillary and I loved and admired Louise Slaughter: https://t.co/u992GZryXL +03/15/2018,Politicians,@BillClinton,"Today, the war in Syria—already one of the worst crises of our time—enters its 7th year, with thousands of children… https://t.co/W0nwwmZWNP" +03/13/2018,Politicians,@BillClinton,"Congratulations on the great news, @TigerWoods. You and @TheBig_Easy will make fantastic captains for the… https://t.co/ckPDwldUWj" +03/09/2018,Politicians,@BillClinton,Can’t wait to meet them at the @ClintonCenter in Little Rock! https://t.co/TI2dUipCvb +03/06/2018,Politicians,@BillClinton,What a deeply meaningful way to carry on his efforts to help kids. https://t.co/H4lg7i6wE7 +02/26/2018,Politicians,@BillClinton,A big congrats to @ChefJoseAndres on a well-deserved honor. José’s tireless work in Haiti and Puerto Rico with… https://t.co/MA1fmmqibP +02/24/2018,Politicians,@BillClinton,"I loved this story! Mr. Lewis, why don’t you come by the @ClintonCenter and I’ll treat you, Karmen, and your co-wor… https://t.co/Fzc4HPOoe5" +02/21/2018,Politicians,@BillClinton,"Billy Graham lived his faith fully, and his powerful words and the conviction they carried touched countless hearts… https://t.co/UWlyt6J8zW" +02/16/2018,Politicians,@BillClinton,Congratulations to the people of Kosovo on the 10th anniversary of their independence. https://t.co/NVIcagsD4t +02/15/2018,Politicians,@BillClinton,Ron’s right. Courage and conviction led to an assault weapons ban once before. Let’s do it again. https://t.co/pG6bj6zzol +02/15/2018,Politicians,@BillClinton,"In so many industries, doing the right thing for customers is helping, not hurting, the bottom line. https://t.co/HLci9Hn59x" +02/15/2018,Politicians,@BillClinton,She’s right. https://t.co/A9DF8UEAsu +02/05/2018,Politicians,@BillClinton,Follow along on my day in the USVI: https://t.co/FYMRH4FTKU +02/05/2018,Politicians,@BillClinton,"On the 25th anniversary of the Family and Medical Leave Act, a reminder the job’s not done: https://t.co/I8yB5iiWse" +01/30/2018,Politicians,@BillClinton,I'm very excited to meet our incoming class! The #PLScholars program has given me the opportunity to meet so many f… https://t.co/2YJDqUeSl3 +01/24/2018,Politicians,@BillClinton,"Thank you, America. https://t.co/79EQeP4nJM" +01/15/2018,Politicians,@BillClinton,RT @KingJames: -Injustice Anywhere Is A Threat To Justice Everywhere- Our Lives Begin To End The Day We Become Silent About Things That Ma… +01/15/2018,Politicians,@BillClinton,"RT @BerniceKing: Today, we commemorate my father’s 89th birthday. Beyond sharing #MLK quotes, I pray that our global community, from educat…" +01/15/2018,Politicians,@BillClinton,"50 years after Dr. King's last birthday, it's up to all of us to keep his Dream of a Beloved Community alive: don't… https://t.co/JpzJqqdQl7" +01/13/2018,Politicians,@BillClinton,No Clinton Foundation funds—dedicated to Haiti or otherwise—were used to pay for Chelsea’s wedding. It’s not only u… https://t.co/djxbyo0SDo +01/12/2018,Politicians,@BillClinton,"I’ve traveled and worked in Haiti, and across Africa and Central America. The countries the president described wit… https://t.co/P5ro8z1BUC" +01/09/2018,Politicians,@BillClinton,A free press is critical to a free society—the detention of journalists anywhere is unacceptable. The Reuters journ… https://t.co/fMa0e4v5Ix +12/30/2017,Politicians,@BillClinton,RIP Sue Grafton. Hillary and I loved all your novels from “A is for Alibi” to “Y is for Yesterday.” We’ll miss Kinsey and you. Godspeed. +12/30/2017,Politicians,@BillClinton,"The @ClintonFdn's programs are helping people improve their lives. Together, we can help more people and improve ev… https://t.co/J283jpC9mI" +12/27/2017,Politicians,@BillClinton,"Words to live by, from Coach Pop. https://t.co/fOioFMtSO1" +12/27/2017,Politicians,@BillClinton,"Some wise lessons from @Eric_OGrey: + +• Small interventions and taking the first step can make a big difference in i… https://t.co/ffIYEFICGV" +12/19/2017,Politicians,@BillClinton,You know you’ve earned being called the #Mamba when you get two jerseys retired! Congratulations on a storied caree… https://t.co/4ECjmQhPku +12/14/2017,Politicians,@BillClinton,"Five years after the devastating attack on teachers and children in Sandy Hook, we mourn them and remember them. Am… https://t.co/OY2P5lXJCl" +12/13/2017,Politicians,@BillClinton,"Saddened by the loss of my friend, Mayor Ed Lee. I’ll always be grateful for his leadership and his steadfast suppo… https://t.co/XNWqujyFmF" +12/13/2017,Politicians,@BillClinton,"Congratulations, Doug Jones. You were a great US Attorney, and you ran a terrific campaign. You deserve this win. I… https://t.co/NSfv16OTwx" +12/11/2017,Politicians,@BillClinton,"There are only 4 days left to sign up for healthcare under the Affordable Care Act for 2018, so don’t wait. Visit… https://t.co/Wtgfq2aRMN" +12/01/2017,Politicians,@BillClinton,It was important to sign the legislation designating the National AIDS Memorial Grove in 1996. Great strides have b… https://t.co/Zz9TobYn8o +11/28/2017,Politicians,@BillClinton,"RT @ClintonFdn: This #GivingTuesday, see how Pres. @BillClinton & the @ClintonFdn are giving back to help Puerto Rico recover. More: https:…" +11/21/2017,Politicians,@BillClinton,People in Puerto Rico and the U.S. Virgin Islands still need help. I’m grateful for the relief organizations who ar… https://t.co/mT10XQJxqC +11/18/2017,Politicians,@BillClinton,"Tonight, @HillaryClinton and I will join our friend @JamesCarville for a look back at the '92 campaign—25 years lat… https://t.co/m7ipByWi6Q" +11/11/2017,Politicians,@BillClinton,"To our veterans and their families, today and every day: Thank You." +11/09/2017,Politicians,@BillClinton,Great having @ConanOBrien in Harlem at the @ApolloTheatre to talk about how @ClintonFdn is combating the #opioid cr… https://t.co/COv5fNDQFh +11/08/2017,Politicians,@BillClinton,"These commitments by solar companies and relief organizations, in partnership with @ClintonFdn, will help many Amer… https://t.co/OnzwZiVJKR" +11/07/2017,Politicians,@BillClinton,Don't spend tomorrow sitting around wondering why more people didn’t turn out to vote. Democracy takes work. Our job today is to VOTE. +11/03/2017,Politicians,@BillClinton,"RT @algore: @BillClinton Thanks, @BillClinton. It was a privilege to serve our nation with you for those 8 yrs. Along with our team, we wer…" +11/03/2017,Politicians,@BillClinton,"Waking up this morning grateful for being elected 25 years ago today, alongside my friend @AlGore. Honored to have served our great country." +10/31/2017,Politicians,@BillClinton,New Yorkers see this attack for what it is—an attempt to sow fear. We stand against terror as we grieve for the victims and thank the @NYPD. +10/30/2017,Politicians,@BillClinton,The opioid crisis affects us all. I hope you'll tune in for an important discussion on solutions at @JohnsHopkinSPH: https://t.co/S3zIxcvrgv +10/27/2017,Politicians,@BillClinton,RT @ClintonFdn: The airlift will help people in need in Puerto Rico. To support @DirectRelief visit: https://t.co/BdSyTqdg1E +10/26/2017,Politicians,@BillClinton,"70 has never looked so beautiful. Happy birthday, @hillaryclinton!" +10/21/2017,Politicians,@BillClinton,"Tonight, we're coming together for an unforgettable event helping storm victims begin to heal. Tune in:… https://t.co/DGPCEv5bD1" +10/21/2017,Politicians,@BillClinton,"As Americans, we lift each other up. I’m proud to be a part of this night. Hope you’ll tune in.… https://t.co/xqIh52Qusi" +10/17/2017,Politicians,@BillClinton,"Congratulations to @SenJohnMcCain, recipient of #LibertyMedal from the @ConstitutionCtr. He is a true American hero." +10/16/2017,Politicians,@BillClinton,"Our hearts are with our friends in California, who have lost so many and so much in the devastating fires." +10/14/2017,Politicians,@BillClinton,"Looking forward to an interesting conversation with @RepJoeKennedy, @ChelseaClinton, & 1,000+ students at #CGIU2017. https://t.co/M9K7pwyATY" +10/13/2017,Politicians,@BillClinton,"Each year, I'm inspired by the young leaders who participate in @CGIU. I hope you'll tune in: https://t.co/M9K7pwyATY #CGIU2017" +10/04/2017,Politicians,@BillClinton,.@StephenAtHome: the awkward years—big dreams & even bigger hair. Thank you for helping those in need.… https://t.co/mCV4P7y66i +10/02/2017,Politicians,@BillClinton,Thinking of the victims and responders in Las Vegas. This should be unimaginable in America. +10/01/2017,Politicians,@BillClinton,Congratulations Team USA on a strong #PresidentsCup victory! Always a treat to watch the best play the best. +10/01/2017,Politicians,@BillClinton,"Many happy returns, Mr. President! #39turns93 https://t.co/drgKoxwYY3" +09/25/2017,Politicians,@BillClinton,Our fellow Americans in Puerto Rico and the US Virgin Islands are in peril. They need our help now. +09/20/2017,Politicians,@BillClinton,We are keeping our friends and neighbors in Mexico and the Caribbean foremost in our thoughts now and in the difficult days ahead. +09/15/2017,Politicians,@BillClinton,"Farewell @CassiniSaturn. Twenty years since you launched, and you've brought us a universe of understanding. https://t.co/eCnjm6Uecm" +09/12/2017,Politicians,@BillClinton,"In standing up for herself, Edie also stood up for millions of Americans and their rights. May she rest in peace. https://t.co/9nNazdmnPP" +09/11/2017,Politicians,@BillClinton,"We are united in remembering those we lost, their families, and the heroic first responders in NY, VA, PA, and across America. #September11" +09/07/2017,Politicians,@BillClinton,Hurricane Harvey shattered homes and lives. Irma is just as dangerous. Americans lift each other up. Join us to hel… https://t.co/WqhUglmkpu +09/06/2017,Politicians,@BillClinton,These young people's dreams are part of the American Dream. And they make it more real for all of us. https://t.co/kVXyg0p85G +09/04/2017,Politicians,@BillClinton,America works because of all the men and women we honor today. #HappyLaborDay +08/30/2017,Politicians,@BillClinton,"So many great organizations are helping. Our family has donated to three of them: @TeamRubicon, @DirectRelief, and @TXDIAPERBANK." +08/30/2017,Politicians,@BillClinton,Our thoughts and prayers continue to be with all of the people affected by Hurricane Harvey and with those helping them. +08/29/2017,Politicians,@BillClinton,RT @ClintonFdn: Our thoughts are with those affected by #HurricaneHarvey. Here are a few ways you can support. <thread> https://t.co/Z9LTuL… +08/27/2017,Politicians,@BillClinton,"RT @HillaryClinton: As we keep everyone affected by Hurricane Harvey in our thoughts, here’s how you can help: +https://t.co/RVReG1lRAd" +08/17/2017,Politicians,@BillClinton,Standing with and grieving for the people of Barcelona in the wake of this despicable terror attack. +08/12/2017,Politicians,@BillClinton,"Even as we protect free speech and assembly, we must condemn hatred, violence and white supremacy. #Charlottesville" +08/11/2017,Politicians,@BillClinton,Proud and grateful. https://t.co/35u6IOJ2D2 +08/09/2017,Politicians,@BillClinton,There are few things I enjoy more than reading a good book. Here are a few I’ve read and recommend: https://t.co/maukY59SNE #BookLoversDay +08/09/2017,Politicians,@BillClinton,Glen Campbell was an iconic American artist & fellow Arkansan. His legacy will be his great talent & how he decided to live with Alzheimers. +08/08/2017,Politicians,@BillClinton,Standing with the Kenyan people who exercised their democratic right to vote. Hoping for a fair & credible process & peace in coming days. +08/07/2017,Politicians,@BillClinton,Proud of the work we’ve done—and continue to do every day—here and around the world. https://t.co/kSMm2JFfSn +08/07/2017,Politicians,@BillClinton,Mark White was governor of Texas while I served in Arkansas. He was a good man and a terrific leader on public education. He'll be missed. +08/04/2017,Politicians,@BillClinton,Happy Birthday @BarackObama! Hope you get some balloons. I love a good balloon. #HBD44 +07/20/2017,Politicians,@BillClinton,"As he’s shown his entire life, don’t bet against John McCain. Best wishes to him for a swift recovery." +07/18/2017,Politicians,@BillClinton,"RT @ClintonCenter: @FreedomCenter From humble beginnings to first post-Apartheid President—""Mandela"" tells of a man prepared to die in the…" +07/18/2017,Politicians,@BillClinton,The continent of Africa is full of extraordinary cultures and people. I’m proud to bring these two exhibits to the… https://t.co/ksfvgJ4ySt +07/18/2017,Politicians,@BillClinton,"Remembering my friend on #MandelaDay—his life is an ongoing inspiration to all who treasure freedom, peace, and rec… https://t.co/an3nb3HvQf" +07/15/2017,Politicians,@BillClinton,"Can't keep a good man down! Welcome back, #39. https://t.co/axnBBMihHX" +07/14/2017,Politicians,@BillClinton,Note: Not to scale. https://t.co/fTY9L401uc +07/14/2017,Politicians,@BillClinton,Thinking of Jimmy Carter today. He was working hard helping others through Habitat. I wish him a speedy recovery. +07/13/2017,Politicians,@BillClinton,Looking forward to joining President George W. Bush at the 2017 @PLSProgram graduation ceremony: https://t.co/fp6e48ugav +07/09/2017,Politicians,@BillClinton,I'm happy to see Leopoldo Lopez was reunited with his family. He and other political prisoners in Venezuela deserve their freedom. +07/04/2017,Politicians,@BillClinton,What we celebrate today is not just the birth of a nation but the ideals that built and sustain a democracy. Happy 4th of July! +06/28/2017,Politicians,@BillClinton,@Kiva This is a big deal! Congrats to @Kiva for helping make so many good things happen all over the world. +06/16/2017,Politicians,@BillClinton,Helmut Kohl’s visionary leadership prepared Germany and all of Europe for the 21st century. https://t.co/ltdamqIgt5 +06/16/2017,Politicians,@BillClinton,The @ClintonSchool is adding the first online Master of Public Service degree. This is a big deal! https://t.co/omsUnwJo0K +06/15/2017,Politicians,@BillClinton,"RT @ClintonFdn: Together, we’re changing the world. Donate today & President @BillClinton will double your impact https://t.co/CmLYWgZsaI h…" +06/12/2017,Politicians,@BillClinton,Nothing beats a 93rd birthday phone call with the remarkable @GeorgeHWBush. Many happy returns #41! +06/12/2017,Politicians,@BillClinton,"Our work at the Clinton Foundation is a reminder that when people come together to solve problems, good things can… https://t.co/YQ4Hl8JPJB" +06/01/2017,Politicians,@BillClinton,Walking away from Paris treaty is a mistake. Climate change is real. We owe our children more. Protecting our future also creates more jobs. +06/01/2017,Politicians,@BillClinton,Great tribute to Willie Mays the other night—Hank Aaron told me Willie was the best he’d ever played with. #SayHey https://t.co/ZYwkhFS3nj +06/01/2017,Politicians,@BillClinton,RT @ClintonFdn: Join a life-long network of change-makers. Apply for the 2018 class of Presidential Leadership Scholars: https://t.co/iopxA… +06/01/2017,Politicians,@BillClinton,"After reading this speech, I feel better about our future. Bravo @hamdiulukaya for an inspiring message of hope. Ev… https://t.co/lCwwpkR6xP" +05/30/2017,Politicians,@BillClinton,RT @MinassianMedia: New from the Arkansas Democrat-Gazette: how @ClintonFdn is helping police departments save lives. https://t.co/pphyZd6Z… +05/29/2017,Politicians,@BillClinton,AmeriCorps grew out of the Peace Corps’ infectious loyalty—a big part of JFK’s legacy. He knew what happens in the… https://t.co/42SF21ghqP +05/29/2017,Politicians,@BillClinton,"JFK’s legacy includes his belief in peace for everyone on earth. Our differences are interesting, our common humanity matters more. #JFK100" +05/29/2017,Politicians,@BillClinton,Today—and every day—we remember the sacrifices of the fallen and thank them for all they made possible. +05/26/2017,Politicians,@BillClinton,What a great speech. @HillaryClinton will never stop believing in—and fighting for—truth and reason. https://t.co/nSTxVsnYKt +05/24/2017,Politicians,@BillClinton,Congratulations to Dr. Tedros—the work of the WHO is now more important than ever. https://t.co/oojIwjIsvr +05/23/2017,Politicians,@BillClinton,Senseless & vicious acts of terror will never drive us apart and will always be met with strength. Praying for the victims in Manchester. +05/20/2017,Politicians,@BillClinton,"This weekend is @HarlemEatUp festival, celebrating Harlem food, culture, and spirit. Congratulations on the 3rd year! #HarlemEatUp" +05/14/2017,Politicians,@BillClinton,Happy Mother's Day to two special mothers in my life - @HillaryClinton and @ChelseaClinton - and all mothers here and gone. +05/12/2017,Politicians,@BillClinton,"Hey @NYTimesWordplay, hope you all enjoy the puzzle! https://t.co/H5WJS3KWWA" +05/10/2017,Politicians,@BillClinton,RT @CGIU: TODAY is the LAST DAY to apply for #CGIU2017! Don’t procrastinate – apply now: https://t.co/tdVGoNvhaX https://t.co/iCZWhqBf0u +05/09/2017,Politicians,@BillClinton,Great piece by @HowellWechsler on how business sector partnerships can have a profound impact on children's health: https://t.co/NQlSvQkLvU +05/07/2017,Politicians,@BillClinton,Congratulations to President-elect @EmmanuelMacron and the French people. +04/23/2017,Politicians,@BillClinton,BREAKING: We just learned that the @ClintonCenter has been bugged. https://t.co/4Or6lrnRPN +04/22/2017,Politicians,@BillClinton,"RT @ClintonFdn: This #EarthDay, see how we're turning ideas into action for a greener 🌎 → https://t.co/bHQDKeelSI https://t.co/6vtfqEh3R7" +04/19/2017,Politicians,@BillClinton,"OKC, for 22 years you have honored the memories of your loved ones & inspired us with the power of your renewal. #okcbombing #OklahomaStrong" +04/18/2017,Politicians,@BillClinton,The opioid crisis affects so many all across America—proud that @RyanForRecovery found help and is helping others. https://t.co/7DeeqIyEdk +04/18/2017,Politicians,@BillClinton,So glad to have been a part of this important and timely event. #Recommit2Kids https://t.co/IIYpiacReU +04/17/2017,Politicians,@BillClinton,"If you're a student with big ideas, I hope you'll join us at #CGIU2017: https://t.co/mJZ0nVqJZ2 https://t.co/tUIYBrE80b" +04/13/2017,Politicians,@BillClinton,"RT @ClintonFdn: ""Small interventions can have a big impact when multiplied"" —Pres. @BillClinton reflects on #HealthMatters2017: https://t.c…" +04/10/2017,Politicians,@BillClinton,Looking forward to important conversations today on improving health outcomes for all. Tune in: https://t.co/ZL1CKIlHv9 #HealthMatters2017 +04/09/2017,Politicians,@BillClinton,"Great to spend time with @GeorgeHWBush & Mrs. Bush in Houston today. We caught up about kids, grandkids, old times… https://t.co/A0ERlfcKLq" +04/06/2017,Politicians,@BillClinton,"RT @ClintonCenter: Welcome to Little Rock, @PLSprogram. We're happy to have you at the @ClintonCenter this week. #PLScholars https://t.co/N…" +04/05/2017,Politicians,@BillClinton,So happy to see Patrick Ewing coming home to @GeorgetownHoyas. Hoya Saxa! #HomeSw33tHome +04/03/2017,Politicians,@BillClinton,Congratulations to my friend @DawnStaley and the great @GamecockWBB on a terrific win! +04/02/2017,Politicians,@BillClinton,"RT @ClintonCenter: Tonight, 100+ student designers will show off their sustainable designs at Curbside Couture, our annual ""green"" fashion…" +03/31/2017,Politicians,@BillClinton,Wonderful essay by a @PLSprogram scholar on seeing the world from different viewpoints. #PLScholars https://t.co/pF8yXk8AGH +03/29/2017,Politicians,@BillClinton,Great piece. https://t.co/NO7Oz6AXSW +03/29/2017,Politicians,@BillClinton,Proud @ClintonFdn boosts access to Naloxone--to stop the epidemic we need community-based prevention & treatment. https://t.co/cMU12mL64s +03/28/2017,Politicians,@BillClinton,"Excited to get to work expanding @ClintonFdn #HealthMatters efforts to San Diego, together with these terrific part… https://t.co/TubvHoE56R" +03/28/2017,Politicians,@BillClinton,"RT @MinassianMedia: And while we have your attention from recycled, false claims, here are some facts about how @ClintonFdn has improved li…" +03/24/2017,Politicians,@BillClinton,RT @HillaryClinton: Today was a victory for all Americans. https://t.co/LX6lzQXtBR +03/24/2017,Politicians,@BillClinton,"At @ClintonFdn, we believe that we all do better when we work together. I hope you'll join us in the year ahead: https://t.co/X8lj6cJ5Hs" +03/24/2017,Politicians,@BillClinton,Proud of @ClintonCenter & @ClintonSchool for hosting an inspirational lecture about women STEM pioneers—including t… https://t.co/TbMrprM91N +03/22/2017,Politicians,@BillClinton,On #WorldWaterDay recalling a terrific visit to @ClintonGlobal partner @HarborSchool—great program & oyster project… https://t.co/3IDSzysWH1 +03/21/2017,Politicians,@BillClinton,Martin McGuinness believed in a shared future for Northern Ireland and he was steadfast & courageous in its pursuit. https://t.co/rykG5AxPjw +03/20/2017,Politicians,@BillClinton,Nobody should be left out or left behind—not rural businesses or schoolkids. Glad to see broadband expanding in NY: https://t.co/DBvXzHt6mC +03/19/2017,Politicians,@BillClinton,"Chuck Berry’s life was a treasure and a triumph, and he’ll never be forgotten. https://t.co/3Q7z0NatUd" +03/15/2017,Politicians,@BillClinton,"We must always strive to make it easier to vote, not harder. The work continues. https://t.co/CfiixXwQ3G" +03/13/2017,Politicians,@BillClinton,"Kika de la Garza was a good man, very effective congressman, valued friend, & a champion for opportunity and social… https://t.co/DXkkIdiS9H" +03/10/2017,Politicians,@BillClinton,Robert Osborne taught us more about movies so we could love them as much as he did. May he rest in peace. +03/08/2017,Politicians,@BillClinton,RT @ChelseaClinton: Last book Charlotte asks for every night before bed. Looking forward to reading it later to her & Aidan on #IWD2017 htt… +03/08/2017,Politicians,@BillClinton,"RT @HillaryClinton: On #InternationalWomensDay I'm thinking about this young girl, & all the others like her out there. 💪✨ https://t.co/u1f…" +03/07/2017,Politicians,@BillClinton,"Thank you for your leadership, @RepJohnLewis, then and now. https://t.co/UJZtoc8pJ6" +03/06/2017,Politicians,@BillClinton,"Proud to have established Cascade-Siskiyou National Monument, and so glad that @BarackObama expanded it in January! https://t.co/DJJOYQHzuy" +02/25/2017,Politicians,@BillClinton,"Congratulations to new DNC Chair Tom Perez, Keith Ellison, & the great field of candidates who ran. United Democrats are stronger Democrats." +02/20/2017,Politicians,@BillClinton,"On #PresidentsDay, reaffirming Lincoln’s words in his 1st Inaugural Address: “This country, with its institutions, belongs to the people…”" +02/18/2017,Politicians,@BillClinton,I second this recommendation! https://t.co/iUpKmrxydB +02/18/2017,Politicians,@BillClinton,Terrific piece by a @PLSprogram scholar on listening to and hearing one another despite our differences: https://t.co/30Z7MvgxRR +02/09/2017,Politicians,@BillClinton,Bill Frist is right about PEPFAR. We need U.S. leadership on global health more than ever. https://t.co/LVOjA840AC +02/03/2017,Politicians,@BillClinton,We're proud of all we've accomplished together—I hope you'll join us as we work to expand opportunity in 2017: https://t.co/5zAaW7uBWc +02/03/2017,Politicians,@BillClinton,RT @ClintonFdn: We’re proud of what we accomplished together in 2016 and hope you'll join as we expand our impact in the year ahead: https:… +02/02/2017,Politicians,@BillClinton,"Hillary and I loved visiting with the cast and crew of @InTransitBway, a moving, creative story of different lives… https://t.co/gFYyHI9DQF" +02/02/2017,Politicians,@BillClinton,Excited about the 10th CGIU meeting in October at Northeastern University in Boston! #CGIU2017 https://t.co/HqOJSfrRJN +01/30/2017,Politicians,@BillClinton,RT @ClintonCenter: Proud to announce the 2017 class of Presidential Leadership Scholars. Join us in congratulating them! https://t.co/pgEZG… +01/20/2017,Politicians,@BillClinton,RT @HillaryClinton: I'm here today to honor our democracy & its enduring values. I will never stop believing in our country & its future. #… +01/18/2017,Politicians,@BillClinton,"41 and Barbara—thinking about you both and sending wishes for a speedy recovery. Love, 42." +01/16/2017,Politicians,@BillClinton,"Life's most persistent and urgent question is, “What are you doing for others?”— Dr. Martin Luther King, Jr. #MLKDay" +01/12/2017,Politicians,@BillClinton,"As we remember those lost on that terrible day 7 years ago, I remain hopeful about the future of #Haiti & its resilient people." +01/05/2017,Politicians,@BillClinton,Terrific work by six @CGIU alumni who represent a new generation of leaders and innovators. https://t.co/yMuFXnKepF +01/01/2017,Politicians,@BillClinton,"Happy New Year—2017 & beyond will be bright if we use our imagination, passion & skills to lift each other up & make all our lives stronger." +12/21/2016,Politicians,@BillClinton,I’m excited about the important work #PLScholars are doing around the world. Read about it: https://t.co/GNhewkaFKu +12/20/2016,Politicians,@BillClinton,Here’s one thing @realDonaldTrump and I can agree on — I called him after the election. https://t.co/URSS89oQ6P +12/20/2016,Politicians,@BillClinton,"As an elector from my home state of New York, I've never been more proud to cast a vote than my vote today for @HillaryClinton." +12/09/2016,Politicians,@BillClinton,Our friend John Glenn was a uniquely American hero and one of the finest men Hillary and I have ever known. https://t.co/EjYIfgUFka +12/05/2016,Politicians,@BillClinton,"Every day, I think of my dear friend Madiba, and the great mind and heart he shared equally with all." +12/05/2016,Politicians,@BillClinton,My heart goes out to the families and friends of all those lost in the terrible fire in Oakland. +12/01/2016,Politicians,@BillClinton,On #WorldAIDSDay let’s reaffirm our commitment to ending the HIV/AIDS epidemic & discrimination hindering treatment. https://t.co/MIuBY4uWWw +11/15/2016,Politicians,@BillClinton,"Gwen Ifill was a trailblazer and a bright light in journalism. She informed and challenged us, and did so with grace. I will miss her." +11/11/2016,Politicians,@BillClinton,Remembering and honoring our veterans today. We owe them more than we can ever repay. +11/07/2016,Politicians,@BillClinton,Janet Reno was an extraordinary public servant who never forgot about the lives of real people. https://t.co/CJw6clqRfX +11/03/2016,Politicians,@BillClinton,Enjoyed an early morn visit to Detroit's Eastern Mkt to see some voters. Go see @HillaryClinton tomorrow:… https://t.co/gHDihJRBTu +11/02/2016,Politicians,@BillClinton,Praying for the loved ones and the communities of the two police officers killed in Iowa in a senseless act of violence. +07/02/2018,Politicians,@BernieSanders,Congratulations to @lopezobrador_ and the people of Mexico. Our countries must work together to create a continent… https://t.co/eVZ5JbT9Vi +07/02/2018,Politicians,@BernieSanders,"I want to thank all the supporters, volunteers, and Vermonters who joined us Saturday in Waterbury for their annual… https://t.co/SfpWJrQI3g" +07/01/2018,Politicians,@BernieSanders,"In a nation where corporate media defines what's ""acceptable,"" voter turnout lags behind almost every major nation… https://t.co/WFm5Orludt" +07/01/2018,Politicians,@BernieSanders,This is what the political revolution is all about. All across this country working people and young people are get… https://t.co/NuIb5gJWSQ +06/30/2018,Politicians,@BernieSanders,"I was very pleased to join friends, supporters, volunteers, and the people of the Northeast Kingdom at Newport’s Ce… https://t.co/KPNC6KxXIu" +06/29/2018,Politicians,@BernieSanders,"“In a modern, moral and wealthy society, no person in America should be too poor to live.” –@Ocasio2018" +06/27/2018,Politicians,@BernieSanders,The people of Maryland understand that we can most effectively oppose Donald Trump's extremism with strong progress… https://t.co/KRNyO47uNE +06/27/2018,Politicians,@BernieSanders,"Congratulations to @BenJealous on his great victory tonight! Ben showed that running a progressive, issue-oriented… https://t.co/PJjxIwmrm5" +06/27/2018,Politicians,@BernieSanders,Congratulations to @Ocasio2018 on her extraordinary upset victory tonight! She took on the entire local Democratic… https://t.co/HCcdDDEuVC +06/26/2018,Politicians,@BernieSanders,"CO, NY, MD, MS, OK & UT: If you haven't voted yet, get to your polling place & make your voice heard! When we stand… https://t.co/9FTuXGPss3" +06/24/2018,Politicians,@BernieSanders,There's a reason why Nikki Haley has tried to discredit the UN report on poverty in America. It's because in the we… https://t.co/xJWvcCxyp6 +06/24/2018,Politicians,@BernieSanders,"When you represent the billionaire class and have nothing relevant to say to working families, the only way you win… https://t.co/SErhZces2c" +06/23/2018,Politicians,@BernieSanders,"Now is not a time for despair or resignation. It is a time for the American people to fight back on every front. + +https://t.co/IE0T7iil9c" +06/23/2018,Politicians,@BernieSanders,"Trump's pathological dishonesty is undermining American democracy, is setting a terrible example for our children a… https://t.co/z6zb5KlbBu" +06/23/2018,Politicians,@BernieSanders,"Honest people can have philosophical and political differences and, in a democracy, we debate those differences. T… https://t.co/PxtAGcy5fg" +06/22/2018,Politicians,@BernieSanders,The rally in Washington will start at 10 a.m. on the Mall at 7th Street. +06/22/2018,Politicians,@BernieSanders,What @RevDrBarber and @UniteThePoor are doing is bringing Americans together to stand up and fight for change in th… https://t.co/GCSvjXb25P +06/21/2018,Politicians,@BernieSanders,Jane Kleeb is doing a great job. If Democrats are going to compete and win in all 50 states we need more state par… https://t.co/zTJAXcObNj +06/19/2018,Politicians,@BernieSanders,The Trump administration policy of separating children from their parents at our border is a national disgrace. Kid… https://t.co/j4Gw50oLBx +06/19/2018,Politicians,@BernieSanders,RT @AriRabinHavt: Big crowd for @BernieSanders and @BenJealous in Silver Spring Watch live: https://t.co/bzTMeyNAy9 https://t.co/tY1Zl67Lcs +06/16/2018,Politicians,@BernieSanders,It's time to make public colleges and universities tuition-free. https://t.co/2fyMXN5qjW +06/07/2018,Politicians,@BernieSanders,I am proud to support @BenJealous in his campaign for Governor of Maryland. Ben is a proven leader running a truly… https://t.co/yacwbaLZS2 +06/03/2018,Politicians,@BernieSanders,We need district attorneys and prosecutors who understand that their job is not just throwing people in jail but fi… https://t.co/sPpTVL3qYW +06/03/2018,Politicians,@BernieSanders,"RT @reformlajails: If you didn't get a chance to watch the event yesterday, check out our re-stream from yesterday with @BernieSanders , #…" +06/03/2018,Politicians,@BernieSanders,RT @shawneebadger: Thank you so much for coming to speak to Disneyland cast members @BernieSanders @SenSanders! When guests forget we are r… +06/03/2018,Politicians,@BernieSanders,Violence and murder by the state is not a civilized act. We must abolish the death penalty. +06/03/2018,Politicians,@BernieSanders,"$30,000: The cost to send a California student to UCLA + +$75,000: The cost to send someone to prison in California… https://t.co/ccvmxkfHko" +06/03/2018,Politicians,@BernieSanders,We have one system of justice for the wealthy and another for the poor. We have one system of justice if you are wh… https://t.co/VYXFCOdVlU +06/03/2018,Politicians,@BernieSanders,"@ShaunKing Thank you, Shaun. But at the end of the day it’s not Bernie. It’s us. Change will only come from million… https://t.co/sIl892BRdS" +06/03/2018,Politicians,@BernieSanders,"RT @ShaunKing: @BernieSanders Who you are, what you do, who you fought for, and where you were during the #BlackLivesMatter movement means…" +06/03/2018,Politicians,@BernieSanders,We claim to have justice for all in this country. That would be naïve to believe. We have one system of justice for… https://t.co/l0JxL71dfy +06/02/2018,Politicians,@BernieSanders,"RT @GoodJobsNation: ""I go hungry most days"" - Glynndana Shevlin, Disneyland worker w/@UNITEHERE11. #StopDisneyPoverty #RaiseTheWage" +06/02/2018,Politicians,@BernieSanders,"RT @Fightfor15LA: ""While working at #Disneyland I've been evicted twice, I live on one meal a day. I work in one of the most beautiful room…" +06/02/2018,Politicians,@BernieSanders,"Recently, Disney CEO Bob Iger did the right thing and cancelled Roseanne after her racist tweet. + +I say to Mr. Ige… https://t.co/yIxnQZVtNU" +06/02/2018,Politicians,@BernieSanders,"In the year 2018, no one in America, especially those working for a profitable corporation like Disney, should be h… https://t.co/dISMTiVtRw" +06/02/2018,Politicians,@BernieSanders,You want to know what is radical? A company like Disney that makes $9 billion in profits while nearly 75% of its wo… https://t.co/Uhkb5l2FXD +06/02/2018,Politicians,@BernieSanders,"We are here at Disneyland to say loudly and clearly to the CEO of Disney: Pay your workers a living wage, not a pov… https://t.co/VmHhpGivnc" +06/02/2018,Politicians,@BernieSanders,"While Disney’s CEO makes up to $423 million: + +- 1 in 10 Disneyland workers have been homeless in the past 2 years +-… https://t.co/qhiCmrXJNv" +06/02/2018,Politicians,@BernieSanders,"RT @unitehere: Live from Anaheim! #stopdisneypoverty roundtable getting ready to start soon, with host @SenSanders. Disney workers from @un…" +06/02/2018,Politicians,@BernieSanders,RT @GoodJobsNation: TWICE: Bernie Sanders will go live with us today to protest wage theft by port truck companies AND demand a living wage… +05/26/2018,Politicians,@BernieSanders,I was pleased to be joined by so many Vermonters in the Essex Memorial Day Parade today. Memorial Day is a time to… https://t.co/MoNsi9pZ9J +05/22/2018,Politicians,@BernieSanders,RT @lcmoser: RT to remind folks to VOTE today! https://t.co/ToJ2KB2I9L https://t.co/c0AmEa3S7s +05/22/2018,Politicians,@BernieSanders,"RT @staceyabrams: Today's the day – It’s Election Day! Starting at 7 AM, voters across Georgia will begin casting ballots to choose the dir…" +05/21/2018,Politicians,@BernieSanders,"But today, I wanted to let you know that it was my intention to run again for the Senate, and to ask if you could h… https://t.co/cwGRAGQ8Mo" +05/21/2018,Politicians,@BernieSanders,It is my intention to run a strong grassroots campaign throughout Vermont and I look forward to your support. +05/21/2018,Politicians,@BernieSanders,But being anti-Trump and anti-Republican is not enough. We need to continue our fight for a progressive agenda whic… https://t.co/B53MVHj6qT +05/21/2018,Politicians,@BernieSanders,"If reelected, you can be sure that I will continue to be the fiercest opponent in the Senate to the rightwing extre… https://t.co/GAOVj02K1y" +05/21/2018,Politicians,@BernieSanders,"These are frightening and unprecedented times. We have a president who is not only a pathological liar, but someone… https://t.co/HU1xBYPlPy" +05/21/2018,Politicians,@BernieSanders,"I have some important news to share, and I wanted you to hear it from me: Today, I am announcing my intention to ru… https://t.co/5PpvGZInpN" +05/17/2018,Politicians,@BernieSanders,"RT @ShaunKing: Los Angeles & All of SoCal! + +The free tickets for this amazing event I’m co-hosting on Saturday, June 2nd w/ @BernieSanders…" +05/17/2018,Politicians,@BernieSanders,"By allowing cheaper imported drugs into the state, we have taken a great step in the fight for health justice." +05/17/2018,Politicians,@BernieSanders,I am proud that my home state of Vermont has chosen to allow importation of drugs from Canada. The goal of a sane h… https://t.co/YUfhUPLV0y +05/17/2018,Politicians,@BernieSanders,"In 1999, I became the first member of Congress to take constituents over the Canadian border to purchase low-cost p… https://t.co/UHzNE6OklY" +05/17/2018,Politicians,@BernieSanders,"RT @staceyabrams: So grateful for Senator @BernieSanders’ endorsement. We’re excited you’re on our team to move Georgia forward. United, we…" +05/15/2018,Politicians,@BernieSanders,"I am proud to support @JohnFetterman for Lieutenant Governor and @edwardsforpa, @jessforcongress, and @RichLazerPHL… https://t.co/utQAKUsfIq" +05/15/2018,Politicians,@BernieSanders,Pennsylvania: today you have a chance to support some true progressives who share our vision for the future. +05/11/2018,Politicians,@BernieSanders,RT @RichLazerPHL: Proud to have the endorsement of @BernieSanders in #PA05 -- I look forward to fighting alongside him for working families… +05/06/2018,Politicians,@BernieSanders,"Bernie just returned from a campaign swing with these candidates. Turnouts at each of the rallies was great, and en… https://t.co/QUgPPkPsRe" +05/06/2018,Politicians,@BernieSanders,"Thanks to all the people who have provided support for progressive Pennsylvania candidates like John Fetterman, can… https://t.co/Lqtqptj4Qy" +05/06/2018,Politicians,@BernieSanders,"If we are going to turn this country around politically, we need to do well in states like Pennsylvania." +05/05/2018,Politicians,@BernieSanders,"RT @AriRabinHavt: . @edwardsforpa agrees with Bernie - we’re not going to let Republicans cut Social Security, Medicare, and Medicaid. http…" +05/05/2018,Politicians,@BernieSanders,RT @jessforcongress: AMAZING crowd this morning in Lancaster city for our rally with @berniesanders! ♥️🇺🇸 #allofus #pa11 https://t.co/aGbAU… +05/04/2018,Politicians,@BernieSanders,Watch: Rally with John Fetterman https://t.co/qs3E6iNK7U +05/04/2018,Politicians,@BernieSanders,"In Vermont, the first Saturday in May is Green Up Day! Vermonters from all over the state will be getting together… https://t.co/2I1z4lAjQX" +05/04/2018,Politicians,@BernieSanders,"Pete D’Alessandro grew up in a union household and he has spent his life fighting for people. Now, we need him in C… https://t.co/Usr1YO12gI" +05/03/2018,Politicians,@BernieSanders,"RT @jacobinmag: Bernie talks with Jacobin Radio's @DanielDenvir live! + +A round table on criminal justice reform streams Friday, May 4 at 2…" +05/02/2018,Politicians,@BernieSanders,"RT @JohnFetterman: This Friday, May 4th, @BernieSanders is joining me in #Philadelphia to rally for a Pennsylvania that leaves no one behin…" +05/01/2018,Politicians,@BernieSanders,"RT @EmilyForCO: GREAT NEWS: I've just been endorsed by the @AFLCIOCO! So honored to have this support as I campaign for workers' rights, pa…" +04/30/2018,Politicians,@BernieSanders,"RT @jessforcongress: This Saturday, May 5th, @BernieSanders is joining me in #PA11 to rally for an America that works for all of us. + +RSVP…" +04/30/2018,Politicians,@BernieSanders,"In Seattle, officials recently announced that they have filed a motion to vacate all convictions and drop all charg… https://t.co/KuSVAPeMvb" +04/30/2018,Politicians,@BernieSanders,"A number of states are now rethinking the ""war on drugs"" and are either decriminalizing possession of marijuana or making it legal." +04/30/2018,Politicians,@BernieSanders,We are finally beginning to win some major victories in reforming our broken criminal justice system which has dest… https://t.co/bdsqwCWD2A +04/28/2018,Politicians,@BernieSanders,"Instead of spending billions on jails and incarceration, we need to invest in our teachers and our schools. Instead… https://t.co/QgHU09QZRC" +04/28/2018,Politicians,@BernieSanders,"Congratulations to the teachers of West Virginia, Oklahoma, Kentucky and Arizona for helping to lead this country f… https://t.co/xRFQJAXNHh" +04/26/2018,Politicians,@BernieSanders,This is not about ME. This is about US. The truth is that the agenda we are fighting for is not only becoming the a… https://t.co/iU7U5GIccA +04/25/2018,Politicians,@BernieSanders,Neither democracy nor the Democratic Party is well-served when some 700 super-delegates can ignore the will of thei… https://t.co/GFpmyGUC8P +04/24/2018,Politicians,@BernieSanders,RT @mic: .@BernieSanders wants to tackle the #opioidcrisis by attacking it from the top down: by punishing every single Big Pharma CEO who… +04/23/2018,Politicians,@BernieSanders,"Oregon - Make sure you're registered to vote in the May 15th primary. Registration ends Tuesday (tomorrow), April 2… https://t.co/Mm8EGIjZzE" +04/23/2018,Politicians,@BernieSanders,"Thank you to the people around the country fighting to make health care a right. Change does not happen overnight,… https://t.co/Sq5eAKefS7" +04/21/2018,Politicians,@BernieSanders,RT @VanJones68: This Saturday -- Set your DVRs! @BernieSanders & @CecileRichards joins The #VanJonesShow on @CNN at 7PM ET!! https://t.co/W… +04/19/2018,Politicians,@BernieSanders,"Our political revolution means getting real progressives to run for office at every level, in every state, and in e… https://t.co/50OIXIfIel" +04/19/2018,Politicians,@BernieSanders,"RT @vicenews: Bernie Sanders has a plan to save the postal service +https://t.co/goA1vHy2Jn https://t.co/4CgaqDcmyL" +04/12/2018,Politicians,@BernieSanders,"RT @BoldProgressive: ""We started the campaign by developing a progressive agenda that said that we are going to deal with the disgrace of h…" +04/12/2018,Politicians,@BernieSanders,"RT @BoldProgressive: Who’s ready to hear from today’s keynote speakers @ElizabethforMA and @SenSanders?? Watch live here: link +https://t.co…" +04/11/2018,Politicians,@BernieSanders,"RT @briebriejoy: In my newest piece for @NYMag, I cover how southerners, rather than the pundit class, responded to @SenSanders's recent tr…" +04/05/2018,Politicians,@BernieSanders,It's unfortunate that some have so degraded our discourse that my recognition of the historical significance of the… https://t.co/IlFIreM9Kw +04/05/2018,Politicians,@BernieSanders,"Thank you @ChokweALumumba for hosting a great town hall last night. We can, we must and we shall overcome the force… https://t.co/Hy9m9ZFU3b" +04/04/2018,Politicians,@BernieSanders,"RT @TheRevAl: Marching in Memphis marking the Memphis Sanitation Workers Strike w/ Martin Luther King lll, Senator Bernie Sanders, Lee Saun…" +04/04/2018,Politicians,@BernieSanders,RT @trymainelee: Bernie Sanders addressing crowd of thousands gathered at AFSCME hq to commemorate Dr. King’s legacy. Sanders calls for dou… +04/04/2018,Politicians,@BernieSanders,I want to thank the teachers across the country who are saying loudly and clearly that taking care of our kids and… https://t.co/edXRCnPf2V +04/03/2018,Politicians,@BernieSanders,"I very much look forward to seeing our friends in Jackson tomorrow night, along with @ChokweALumumba to hold a town… https://t.co/rz15xCdljq" +03/29/2018,Politicians,@BernieSanders,"We have got to take the fight for economic, social, racial, and environmental justice to every county in every stat… https://t.co/SgqAbXGw53" +03/23/2018,Politicians,@BernieSanders,"RT @mehdirhasan: “We need to talk about inequality” - the first episode of my new podcast, Deconstructed, is out, featuring @BernieSanders.…" +03/22/2018,Politicians,@BernieSanders,RT @DukeChronicle: @BernieSanders will now speak at Duke with Rev. William Barber II on April 19: https://t.co/0nYuQhNAW8 +03/21/2018,Politicians,@BernieSanders,"Congratulations to @ChuyForCongress, @ortizstaterep, @AlmaAnaya7th, @beatrizforjudge & @Delia4StateRep. The politic… https://t.co/KBinKmXiZP" +03/19/2018,Politicians,@BernieSanders,RT @thenation: Bernie Sanders Wants to Tell the Story That Corporate Media Fails To https://t.co/eEh2YxfD0w +03/18/2018,Politicians,@BernieSanders,RT @thenation: Bernie Sanders Wants to Tell the Story That Corporate Media Fails To https://t.co/yUoxNl2VxU +03/16/2018,Politicians,@BernieSanders,RT @GdnInequality: The corporate media ignores the rise of oligarchy. The rest of us shouldn't | Bernie Sanders https://t.co/t8anXYUedx htt… +03/14/2018,Politicians,@BernieSanders,"RT @nowthisnews: 'The time is now, for all of us together, to stand up to the NRA and to pass commonsense gun legislation' - Bernie Sanders…" +03/11/2018,Politicians,@BernieSanders,"Arizona, if there was ever a time in the modern history of this country where people have got to stand up and fight… https://t.co/5EpsTIm03O" +03/11/2018,Politicians,@BernieSanders,Pathetic that President Trump attacked smart and compassionate @RepMaxineWaters -- both traits alien to him. +03/11/2018,Politicians,@BernieSanders,We’re here to bring the Dodgers back to Brooklyn. https://t.co/V5Zrqir9cw +03/11/2018,Politicians,@BernieSanders,With a few tweaks I think @YasielPuig had 30 home runs in him this year. https://t.co/sPqphKlOi3 +03/11/2018,Politicians,@BernieSanders,The rumors are true. I am trying out for the Dodgers. https://t.co/U1DuGOeLdX +03/10/2018,Politicians,@BernieSanders,"If we can transform politics in Texas, we can do it in every state in America. Thank you, Lubbock! https://t.co/ComSKMasql" +03/10/2018,Politicians,@BernieSanders,Watch live here: https://t.co/eFKOtrS7Ab +03/10/2018,Politicians,@BernieSanders,"I've never believed in this blue-state, red-state nonsense. Yes, Lubbock voted overwhelmingly for Trump. But any co… https://t.co/dPHDvvQyOm" +03/10/2018,Politicians,@BernieSanders,Assault weapons are military weapons designed to kill human beings. They should not be sold in this country. +03/10/2018,Politicians,@BernieSanders,"Our message to Donald Trump, perhaps our most important message, is that we will not let bigots divide us up. Regar… https://t.co/lTX5JZkryp" +03/10/2018,Politicians,@BernieSanders,"If Texans are prepared to work hard, stand up, fight back, talk to people who voted for Trump, make sure that every… https://t.co/t00k9JnqKr" +03/09/2018,Politicians,@BernieSanders,"RT @AustinChronicle: Jake Tapper interviews Sen. Bernie Sanders during an early keynote at #SXSW 2018. + +📷: @JanaB04 https://t.co/jepTkre8Gc" +03/08/2018,Politicians,@BernieSanders,.@Marie4Congress has made it clear that she will be a champion for working families. I'm proud to support her campa… https://t.co/i12gM2YzMV +02/28/2018,Politicians,@BernieSanders,"Pastor Tillman, your work as well as all of those I met in Flint is extraordinary. I look forward to continuing to… https://t.co/pcKYfsKkkD" +02/27/2018,Politicians,@BernieSanders,We should not be selling assault weapons in this country. These weapons are not for hunting. They are military weap… https://t.co/2ZOCwrh2pB +02/26/2018,Politicians,@BernieSanders,"RT @taxmarch: ICYMI: @LittleMissFlint spoke out for so many kids yesterday: + +""To the grown ups in Washington, I want to make it clear that…" +02/26/2018,Politicians,@BernieSanders,Thank you Mari for joining us today. https://t.co/m25h9z9nQ9 +02/25/2018,Politicians,@BernieSanders,RT @AriRabinHavt: Another view of Bernie's rally in Lansing https://t.co/V9VYwQW08b +02/24/2018,Politicians,@BernieSanders,"Watch our rally in Green Bay, Wisconsin with #NotOnePenny & @TaxMarch tonight at 8pm EST on https://t.co/dWgRIKgZX1 https://t.co/D2hC5Udn5z" +02/24/2018,Politicians,@BernieSanders,Saying hello to the people in the Milwaukee Public Market. https://t.co/UixX8oyTTX +02/22/2018,Politicians,@BernieSanders,"No one, including Clinton, should ever face meddling from foreign government https://t.co/bMKOAGVQAw" +02/22/2018,Politicians,@BernieSanders,"The findings of Robert Mueller's investigation must be taken seriously at every level of government, and he must be… https://t.co/G1UpEI0esg" +02/22/2018,Politicians,@BernieSanders,Mueller's indictment provides further evidence that the Russian government interfered in 2016. It also shows that t… https://t.co/m98fM9EZV0 +02/21/2018,Politicians,@BernieSanders,"The key issues now are: + +1) How we prevent the unwitting manipulation of our electoral and political system by for… https://t.co/OeK6US1AjK" +02/21/2018,Politicians,@BernieSanders,"As someone who campaigned hard for Hillary Clinton from one end of this country to another, it is an outrage that s… https://t.co/QHtTZI6Neg" +02/21/2018,Politicians,@BernieSanders,What the Russians did in the 2016 election cycle deserves unconditional condemnation. That includes all of their co… https://t.co/YfYYwYzZLP +02/21/2018,Politicians,@BernieSanders,RT @sxsw: Senator @BernieSanders will sit down with @CNN's @jaketapper for a conversation at #SXSW 2018! https://t.co/36K5eOxi9Y https://t.… +02/16/2018,Politicians,@BernieSanders,It is absolutely imperative that the Mueller investigation be allowed to go forward without obstruction from the Tr… https://t.co/rlPK2QKheN +02/16/2018,Politicians,@BernieSanders,It has been clear to everyone (except Donald Trump) that Russia was deeply involved in the 2016 election and intend… https://t.co/yak1Vr8L2q +02/14/2018,Politicians,@BernieSanders,RT @RollingStone: Is a progressive revolt brewing in West Virginia? https://t.co/KZs3EuyIUD https://t.co/2iO4t9IFQt +02/10/2018,Politicians,@BernieSanders,"Reg E. Cathey was a voice of the political revolution, and someone I had the honor of working with during my 2016 c… https://t.co/a5UHYfPwVl" +02/08/2018,Politicians,@BernieSanders,RT @nowthisnews: Here's why this Canadian doctor supports @BernieSanders' plan for universal health care https://t.co/NRMLLgUHCy +02/01/2018,Politicians,@BernieSanders,"RT @andrewkimmel: ""@realdonaldtrump, one of the great scientists of our time, has determined after years and years of exhaustive study that…" +02/01/2018,Politicians,@BernieSanders,RT @emilyhholden: @BernieSanders: My request of you is please get involved in the political process. Start running for office. You can do i… +02/01/2018,Politicians,@BernieSanders,RT @powershiftnet: .@BernieSanders: The days of the fossil fuel industry are numbered. But we need *everyone* to come together if we are to… +01/31/2018,Politicians,@BernieSanders,"RT @danielmarans: In era of Donald Trump, @BernieSanders sees ""the beginning of a political revolution"" https://t.co/Drb0eVQsZa" +01/30/2018,Politicians,@BernieSanders,I will not support any spending bills as long as Trump and Republican leadership refuse to address the crisis they… https://t.co/yZyepGWm0h +01/30/2018,Politicians,@BernieSanders,"Today, our government is controlled by the most extremist, reactionary, xenophobic, bigoted, and thankfully, in man… https://t.co/hWz40zfkNn" +01/29/2018,Politicians,@BernieSanders,RT @latinovictoryus: TOMORROW: @BernieSanders. Latino resistance. You. Tune in here tomorrow morning: https://t.co/9AeFxDn2Jh https://t.co/… +01/29/2018,Politicians,@BernieSanders,RT @MarkRuffalo: Livestream the #PeoplesSOTU TONIGHT at 8pm ET: https://t.co/ADTWe9AAUr Celebrating the #ResistanceMovement and charting a… +01/29/2018,Politicians,@BernieSanders,"Pete has spent his entire career fighting for working families and as a champion of progressive values, and I'm con… https://t.co/tYnyusbzZl" +01/27/2018,Politicians,@BernieSanders,RT @viceimpact: .@BernieSanders on why it's time to make college tuition free. Here's how it is going to happen: https://t.co/Sytekdur7a ht… +01/26/2018,Politicians,@BernieSanders,"RT @IronStache: I’m going to the State of the Union next Tuesday with @MarkPocan to hold @SpeakerRyan accountable, work boots and all. + +He…" +01/26/2018,Politicians,@BernieSanders,"RT @latinovictoryus: We're honored to be joined by @BernieSanders at our Latino Political Summit on Tuesday, January 30th. + +We need to wor…" +01/26/2018,Politicians,@BernieSanders,RT @RepGutierrez: $25 billion as ransom for Dreamers with cuts to legal immigration and increases to deportations doesn’t pass the laugh te… +01/25/2018,Politicians,@BernieSanders,RT @weatherchannel: Vermont’s seemingly spacey climate change goals are putting the rest of the country to shame. #USofClimateChange https:… +01/20/2018,Politicians,@BernieSanders,"People are more determined than ever to build a nation based on love and compassion, not hatred or division. Congra… https://t.co/PVj3PnG7WN" +01/20/2018,Politicians,@BernieSanders,"RT @peoplepower: .@BernieSanders: We need to face the crises facing this country, including Trump's self-made crisis of ending DACA. It is…" +01/19/2018,Politicians,@BernieSanders,RT @Morning_Joe: Coming up: @BernieSanders https://t.co/fYVsGRUGF7 +01/14/2018,Politicians,@BernieSanders,RT @guardianopinion: Let’s wrench power back from the billionaires | Bernie Sanders https://t.co/PGibSEvVPB +01/12/2018,Politicians,@BernieSanders,"Republicans in Congress must now summon the courage to stand up to the racist ramblings of our ""stable genius"" pres… https://t.co/iBN4obUdlc" +01/09/2018,Politicians,@BernieSanders,RT @DukeChronicle: U.S. Sen. Bernie Sanders is coming to Duke Jan. 19 for a public forum with Rev. William J. Barber II: https://t.co/0nYuQ… +01/09/2018,Politicians,@BernieSanders,RT @PostOpinions: It’s on Republicans to stop a shutdown https://t.co/Fxt8X7gv2T by @berniesanders +12/30/2017,Politicians,@BernieSanders,I had the honor of getting to know Erica and I was inspired by the commitment she made working towards a more just… https://t.co/0HpXnY3N5d +12/30/2017,Politicians,@BernieSanders,"Though Erica didn't ask to be an activist, she responded to the personal tragedy of seeing her father die while bei… https://t.co/rnkrgsn7Jj" +12/30/2017,Politicians,@BernieSanders,"Erica Garner was an exceptional young woman. She was a loving daughter, sister, mother, friend. Jane and I send our… https://t.co/WoVnVLaCwX" +12/28/2017,Politicians,@BernieSanders,"RT @IronStache: If we defeat @SpeakerRyan and swing the massive arm of change back toward working people, even a little, it will be worth t…" +12/24/2017,Politicians,@BernieSanders,"If I were the Republicans, I would worry very much about 2018. +https://t.co/UQcWla7pST" +12/20/2017,Politicians,@BernieSanders,"RT @CNNPolitics: Sen. Bernie Sanders: The new tax bill is ""a disaster for the American people"" https://t.co/2M9d8cGKii https://t.co/h9R6wft…" +12/18/2017,Politicians,@BernieSanders,RT @nytopinion: .@SenWarren & @BernieSanders: Will congressional Republicans work with Democrats to pass a budget that supports working peo… +12/14/2017,Politicians,@BernieSanders,"RT @IronStache: Hey @SpeakerRyan. Word on the street is that before we've even gotten into the ring, you’ve had enough. Give me a call. I’v…" +12/13/2017,Politicians,@BernieSanders,My thoughts on last night’s election in Alabama: https://t.co/6HtPQczR3Q +12/13/2017,Politicians,@BernieSanders,"RT @GetUSCovered: YOU HAVE TWO DAYS LEFT TO SIGN UP. + +Go to https://t.co/p8DQwo89C7 right now and sign up for affordable health coverage be…" +12/13/2017,Politicians,@BernieSanders,RT @washingtonpost: Opinion: Democrats have a chance to revive the party. Will they seize it? https://t.co/c3nMxZtcdv +12/13/2017,Politicians,@BernieSanders,Congratulations to @GDouglasJones for his great victory.  Congratulations to the people of Alabama for doing what f… https://t.co/B8WJ0y2eZ9 +12/12/2017,Politicians,@BernieSanders,"Alabama, you have extraordinary power today. By voting for @GDouglasJones, you can stop the Republican Party's plan… https://t.co/LOWZsArDm5" +12/09/2017,Politicians,@BernieSanders,The Democratic Party will not become a vibrant and successful 50 state party until it opens its doors widely to the… https://t.co/rZdxnRjHIa +12/02/2017,Politicians,@BernieSanders,"RT @ninaturner: I’m here in Dayton, Ohio w/ @BernieSanders bringing the message to the people! We are on the move. #GOPTaxBill @OurRevoluti…" +11/29/2017,Politicians,@BernieSanders,The Republican tax bill is a moral abomination that would take away from so many in need to give more to people who… https://t.co/Ki5nI52akn +11/21/2017,Politicians,@BernieSanders,Attacks against trans people are part of a bigotry which has got to end. We must work together until hatred and dis… https://t.co/ivvXgcmIV2 +11/17/2017,Politicians,@BernieSanders,RT @viceimpact: .@BernieSanders on why it's time to make college tuition free. Here's how it is going to happen: https://t.co/SytekdcQfC ht… +11/16/2017,Politicians,@BernieSanders,RT @politico: Tim Kaine calls for eliminating superdelegates https://t.co/9wT14ztIrq https://t.co/ntqurvzzb2 +11/15/2017,Politicians,@BernieSanders,"RT @VICE: Bernie Sanders’s socialist revolution is happening, very slowly: https://t.co/SCJvacI8CW https://t.co/cc3ZPb4GKr" +11/13/2017,Politicians,@BernieSanders,"I hope and expect that the United States will assist in disaster relief efforts for Iran, as we did in 2003 and 201… https://t.co/SDA0rUONXR" +11/13/2017,Politicians,@BernieSanders,"The devastation from the earthquake in Iran last night is horrific. My thoughts are with the victims, their loved o… https://t.co/SekzUHAWAN" +11/13/2017,Politicians,@BernieSanders,"RT @IronStache: I’m a union ironworker from Caledonia, Wisconsin. A Veteran. Cancer Survivor. I build things with my hands to put food on t…" +11/12/2017,Politicians,@BernieSanders,Progressives didn’t just say no to Trump. They offered an agenda to make our country work for everyone not just the… https://t.co/EEHz6dRmK0 +11/10/2017,Politicians,@BernieSanders,"At a time when Trump and the Republican agenda are strongly opposed by the American people, it's critical we come t… https://t.co/W4vVI1XXo9" +11/09/2017,Politicians,@BernieSanders,RT @JessicaGlenza: Ban Ki-moon calls for US to enact universal healthcare (like @BernieSanders proposal) and stop “powerful interests” from… +11/09/2017,Politicians,@BernieSanders,Many people who had not previously been involved in politics won local positions this week. That is what the politi… https://t.co/jdLzciHESv +11/08/2017,Politicians,@BernieSanders,"The political revolution we're fighting for is to get more people involved in the political process, to run for off… https://t.co/KiIo3hFptJ" +11/08/2017,Politicians,@BernieSanders,I want to congratulate everyone who won yesterday – from governorships to the many first-time candidates who won po… https://t.co/O4CMNoslZW +11/08/2017,Politicians,@BernieSanders,"Yesterday was a referendum on President Trump, and he lost badly. It’s clear the American people are deeply concern… https://t.co/Ne9ayn2kTR" +11/07/2017,Politicians,@BernieSanders,It’s Election Day in NYC. Get out and vote for @BilldeBlasio and Democrats up and down the ballot. https://t.co/z50hRyRolC +11/07/2017,Politicians,@BernieSanders,"It’s #ElectionDay, New Jersey. Get out and vote for the Democratic ticket. Then ask your friends to do the same. https://t.co/OXv5faw46k" +11/07/2017,Politicians,@BernieSanders,"Atlanta, it’s time to get out and vote for @fortforatlanta. #ElectionDay Find your polling place here: https://t.co/yudlkEz2Fb" +11/07/2017,Politicians,@BernieSanders,"It’s #ElectionDay. Get to the polls, bring your friends and vote for the Democratic ticket. Every vote counts. https://t.co/c9UEDRaYBJ" +11/07/2017,Politicians,@BernieSanders,It’s Election Day in Virginia. Get out and vote for the Democratic ticket. Find your polling place here: https://t.co/I0CblDT2J5 +11/06/2017,Politicians,@BernieSanders,RT @guardian: Bernie Sanders warns of 'international oligarchy' after Paradise Papers leak https://t.co/Ovx7keSdVG +11/06/2017,Politicians,@BernieSanders,"RT @latimes: Bernie Sanders: As president, Trump is doing the exact opposite of what he promised on the campaign trail https://t.co/ZRY0Qot…" +11/05/2017,Politicians,@BernieSanders,My thoughts are with the victims of Sutherland Springs and their loved ones. No community should have to face such a senseless tragedy. +11/01/2017,Politicians,@BernieSanders,"Instead of more tax breaks for Wall Street, we must make public colleges and universities tuition-free by taxing Wall Street speculators." +11/01/2017,Politicians,@BernieSanders,"Instead of giving more tax breaks to corporate tax evaders, we should rebuild our nation’s infrastructure by closing offshore tax loopholes." +11/01/2017,Politicians,@BernieSanders,"Instead of more tax breaks for billionaires, we must demand the wealthiest people in this country start paying their fair share of taxes." +11/01/2017,Politicians,@BernieSanders,RT @nowthisnews: .@BernieSanders asked what it meant to be free – and every American needs to hear the answer https://t.co/scG9LPnEh2 +10/31/2017,Politicians,@BernieSanders,My thoughts are with the victims of today’s horrific attack in Manhattan and their loved ones. https://t.co/1zCNc5PiTK +10/31/2017,Politicians,@BernieSanders,"RT @BilldeBlasio: .@BernieSanders: Brothers and sisters, on Election Day, let’s re-elect Bill de Blasio and show the world what this great…" +10/31/2017,Politicians,@BernieSanders,I was proud to endorse @BilldeBlasio tonight. He is leading the city in a way that brings people together to make a better life for all. +10/29/2017,Politicians,@BernieSanders,"RT @CTVToronto: WATCH LIVE: Bernie Sanders speaks about the Canadian health care system at U of T +https://t.co/oL2vsTGnas https://t.co/6jOJ…" +10/27/2017,Politicians,@BernieSanders,RT @rbecker51: San Juan Mayor Carmen Yulín Cruz y Sen. @BernieSanders discussing short term y long term solutions for rebuilding Puerto Ric… +10/25/2017,Politicians,@BernieSanders,"RT @tammybaldwin: READ: Tammy Baldwin and Bernie Sanders fight economic inequality and fiscal irresponsibility + +https://t.co/AWX3w2U3A1" +07/02/2018,Politicians,@tedcruz,#CruzCrew: show your support and help #KeepTexasRed... get your gear today: https://t.co/idG3F7kfqZ #TXSen https://t.co/44uhxbmd0m +07/02/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz returning to campaign trail for week of July Fourth, joining @TexasCruzer for stops in College Station, Waco,…" +07/01/2018,Politicians,@tedcruz,"“Following their extraordinary efforts during Hurricane Harvey, we want to tell first responders across Southeast T… https://t.co/xPJ8y8ds7d" +06/30/2018,Politicians,@tedcruz,"RT @FreedomWorks: Support @SenTedCruz's Student Empowerment Act, S. 3102! #SchoolChoice #ampFW via https://t.co/lf9wpELolh https://t.co/tao…" +06/29/2018,Politicians,@tedcruz,RT @rumpfshaker: Some Jerks Robbed 112-Year-Old WWII Vet Richard Overton. Let's Help Him Out. https://t.co/GVnEfQWfzh #atx #txlege #veterans +06/29/2018,Politicians,@tedcruz,"This is horrific. An avowed Nazi running for Congress. To the good people of Illinois, you have two reasonable choi… https://t.co/W3U3vTWxJV" +06/29/2018,Politicians,@tedcruz,"RT @CR: Watch: @tedcruz on @SenMikeLee and the Supreme Court + +https://t.co/aUhJdg9slH" +06/29/2018,Politicians,@tedcruz,RT @TexasCruzer: Pastor Cruz addressing the crowd at the 15th Annual Patriotic Celebration in New Braunfels! #GodBlessAmerica https://t.co/… +06/28/2018,Politicians,@tedcruz,"RT @CR: WATCH: @tedcruz thinks @SenMikeLee would make a great choice for SCOTUS + +https://t.co/aUhJdg9slH" +06/28/2018,Politicians,@tedcruz,RT @CR: “I think the single best choice that President Trump could make to fill this vacancy is @SenMikeLee. I think he would be extraordin… +06/28/2018,Politicians,@tedcruz,RT @SenJohnKennedy: Thank you to my Republican colleagues who stood with me @tedcruz and @SenMikeLee on our food stamp amendment to fight f… +06/28/2018,Politicians,@tedcruz,"RT @CR: “I know beyond a shadow of a doubt that Mike Lee would be faithful to the Constitution and Bill of Rights, that he’s not going to e…" +06/28/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz raises comparison between @BetoORourke and @Ocasio2018, saying O'Rourke's ""running like a Bernie Sanders liber…" +06/28/2018,Politicians,@tedcruz,"RT @marklevinshow: The president's list of candidates for the Supreme Court is outstanding. That said, I would strongly encourage him to se…" +06/28/2018,Politicians,@tedcruz,Why does the hard Left have such deep hatred for Israel? Even most Senate Dems say they supported moving the embas… https://t.co/v2uyaBQBLm +06/28/2018,Politicians,@tedcruz,"RT @thehill: Ted Cruz: Mike Lee is the ""single best choice"" to replace Kennedy on Supreme Court https://t.co/ocStrovMkR https://t.co/hRFPKw…" +06/28/2018,Politicians,@tedcruz,RT @SaintRPh: Every democrat in America now believes in thoughts and prayers https://t.co/bGux9AhgvY +06/28/2018,Politicians,@tedcruz,"RT @CalebHowe: Ted Cruz Says Voters Have Already Weighed In On SCOTUS: If Scalia Hadn't Passed Away, Hillary May Have Won https://t.co/Bk2D…" +06/28/2018,Politicians,@tedcruz,RT @toddgillman: .@TedCruz and @BetoORourke agree: Supreme Court vacancy raises stakes in Texas Senate race #2018 #Texas https://t.co/IPWgw… +06/28/2018,Politicians,@tedcruz,"RT @CR: .@tedcruz: Mike Lee would not ‘evolve’ if chosen to replace Justice Anthony Kennedy + +https://t.co/aUhJdg9slH" +06/28/2018,Politicians,@tedcruz,RT @FoxNews: .@SenTedCruz: “This could well prove to be the most significant thing President Trump does in his entire time in office.” http… +06/28/2018,Politicians,@tedcruz,Fully agree. And the overwhelming majority of Texans want Supreme Court Justices who will preserve the Constitution… https://t.co/sqcmmgyyds +06/28/2018,Politicians,@tedcruz,"RT @PatrickSvitek: In addition to @SenMikeLee, @TedCruz says Trump should consider Cruz friends Noel Francisco (U.S. solicitor general) and…" +06/28/2018,Politicians,@tedcruz,"This is an opportunity for President @realDonaldTrump to nominate a strong Constitutionalist to #SCOTUS. + +Three fan… https://t.co/C3pdGiiX2R" +06/28/2018,Politicians,@tedcruz,"RT @thehill: Ted Cruz: Mike Lee is the ""single best choice"" to replace Kennedy on Supreme Court https://t.co/tzEuJFXMGH https://t.co/BCuyhP…" +06/28/2018,Politicians,@tedcruz,"RT @dcexaminer: Ted Cruz: Mike Lee ""the single best choice"" to replace Anthony Kennedy on Supreme Court https://t.co/JGIoGhzp6a https://t.c…" +06/27/2018,Politicians,@tedcruz,RT @senorrinhatch: While there was no precedent for confirming a Justice who had been nominated by an outgoing President in a Presidential… +06/27/2018,Politicians,@tedcruz,"RT @FoxNewsInsider: Sen. @tedcruz: 'We Should Confirm SCOTUS Pick Before Election', Suggests @SenMikeLee , via @DanaPerino's @dailybriefing…" +06/27/2018,Politicians,@tedcruz,I think the single best choice President @realDonaldTrump could make to fill this vacancy is @SenMikeLee. He would… https://t.co/BGew9qLKG0 +06/27/2018,Politicians,@tedcruz,RT @WilsonWPA: Worth the view (Ted Cruz on @FoxNews discussing #SCOTUS vacancy) #CruzCrew #txsen #txlege https://t.co/URqmuKxKb7 via @YouTu… +06/27/2018,Politicians,@tedcruz,RT @specialkids: 529 Proposal may benefit k-12 children with special needs. https://t.co/sdBbYea3jQ +06/27/2018,Politicians,@tedcruz,"#CruzCrew: Get your #ToughasTexas gear today! + +Order now --> https://t.co/idG3F7kfqZ #TXSen #KeepTexasRed https://t.co/ndm3OrQoLr" +06/27/2018,Politicians,@tedcruz,RT @SenTedCruz: Proud of the work @ptsdusa's Camp Hope is doing to provide for our veterans living w Post Traumatic Stress Disorder (PTSD).… +06/27/2018,Politicians,@tedcruz,"Thank you, #CruzCrew! #TXSen #KeepTexasRed https://t.co/01PFyTRW98" +06/27/2018,Politicians,@tedcruz,"RT @resurgent: 1) Cruz told truth. 2) But only with context. 3) Cruz gave that context. POLITIFACT RATING: Mostly False. (wut?) + +https://t.…" +06/26/2018,Politicians,@tedcruz,"RT @joelpollak: Now that it's clear #TravelBan is constitutional, does @SallyQYates have to give back her honorary degrees for claiming it…" +06/26/2018,Politicians,@tedcruz,@gabrielmalor https://t.co/SzMdhPImL7 +06/26/2018,Politicians,@tedcruz,"RT @gabrielmalor: This piece says that Cruz is ""technically correct"" and then rates the claim ""Mostly False"" in case you were wondering how…" +06/26/2018,Politicians,@tedcruz,"Small business drives our economy: 2/3 of new jobs come from small businesses. + +We want an environment where small… https://t.co/rQTwlCM4Q8" +06/26/2018,Politicians,@tedcruz,Texas Sentinels Foundation Honors Texan Medal Of Honor Recipient With New Home: https://t.co/pNdw4a04yL +06/25/2018,Politicians,@tedcruz,"RT @DonHuffines: I support @tedcruz for re-election. He’s leading our nation & TX toward a brighter & more prosperous future for all, and I…" +06/25/2018,Politicians,@tedcruz,RT @FreedomWorks: #SchoolChoice #ampFW https://t.co/WtNVpi178H +06/25/2018,Politicians,@tedcruz,"By investing in the next generation of students and expanding school choice, we’re able to allow more students to h… https://t.co/esCfxQ17Tt" +06/25/2018,Politicians,@tedcruz,RT @FreedomWorks: .@SenTedCruz introduces legislation expanding #SchoolChoice! #ampFW via @DailyCaller https://t.co/X3MXkgChhO +06/23/2018,Politicians,@tedcruz,RT @FreedomWorks: .@SenTedCruz introduces legislation expanding #SchoolChoice! #ampFW via @DailyCaller https://t.co/X3MXkgChhO +06/23/2018,Politicians,@tedcruz,"RT @FoxNews: .@tedcruz: ""It ought to be entirely consistent to protect kids, to keep kids with their parents, and at the same time respect…" +06/23/2018,Politicians,@tedcruz,"RT @chiproytx: Happy 70th birthday to Justice Clarence Thomas. One of the best human beings I have known, a great patriot, and someone I am…" +06/22/2018,Politicians,@tedcruz,"RT @TexasTribune: Today, @tedcruz and @JohnCornyn reaffirmed their commitment to keeping kids with their parents after they cross the borde…" +06/22/2018,Politicians,@tedcruz,RT @TexasCruzer: We ❤️ our Convention Volunteers!!! #CruzCrew https://t.co/0DutWxoKDl +06/22/2018,Politicians,@tedcruz,Get yours here: https://t.co/25cD9fUceA #TXSen #KeepTexasRed #CruzCrew https://t.co/2IFD3R8ssQ +06/22/2018,Politicians,@tedcruz,"RT @EmpowerTexans: @tedcruz introduces legislation that not only protects families, but ends catch and release. #txlege #TXSEN + +https://t.…" +06/21/2018,Politicians,@tedcruz,"RT @ALEC_Action: ALEC Action is proud to support the Student Empowerment Act to expand #SchoolChoice and #EmpowerOurStudents. + +@SenateGOP @…" +06/21/2018,Politicians,@tedcruz,"RT @LarryAudas: @tedcruz accommodates one, two and then a whole class of #Texas students visiting #DC. @TEGNA @KHOU Airport Group Pic. http…" +06/21/2018,Politicians,@tedcruz,RT @TheDCPolitics: Ted Cruz Introduces Legislation Expanding School Choice https://t.co/W9iyRel4O5 https://t.co/MnAJmBWcJT +06/21/2018,Politicians,@tedcruz,RT @DailyCaller: Ted Cruz Demands Investigation Into Taxpayer-Funded Global Warming ‘Advocacy’ https://t.co/bol3IYCETm https://t.co/t2Lvfc8… +06/20/2018,Politicians,@tedcruz,"RT @IsraeliPM: Israel thanks President Trump, Secretary Pompeo and Ambassador Haley for their courageous decision against the hypocrisy and…" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/iS7VfUqleE https://t.co/ibA3ALHFhI" +06/20/2018,Politicians,@tedcruz,"RT @politico: ""This has to stop,"" Texas Sen. Ted Cruz said when asked about the separation of migrant families at the border in his state.…" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/yI50mra7M2 https://t.co/EGOxL1I2mq" +06/20/2018,Politicians,@tedcruz,"RT @granitewinger: WATCH: @jimmykimmel and @tedcruz played a game of basketball, but most importantly, they raised over $80,000 for charity…" +06/20/2018,Politicians,@tedcruz,RT @SenMikeLee: I urge the Senate to do their job and take quick action on @SenTedCruz’s Protect Parents and Kids Act. We can end family se… +06/20/2018,Politicians,@tedcruz,RT @GlenMillsABC4: #Utah @SenMikeLee is supporting Sen. Ted Cruz’s border bill and wants his colleagues to take quick action on it. #utpol… +06/20/2018,Politicians,@tedcruz,"RT @SenJoniErnst: I am co-sponsoring @SenTedCruz Protect Kids and Family Act because I believe that we can, and should, treat children and…" +06/20/2018,Politicians,@tedcruz,RT @JimInhofe: Learn more about this important legislation here: https://t.co/Jcaqikv2bN +06/20/2018,Politicians,@tedcruz,"RT @SenToddYoung: I’ve signed on to co-sponsor the Protect Kids and Parents Act to keep families together, expedite hearings, and double th…" +06/20/2018,Politicians,@tedcruz,"RT @senorrinhatch: In addition to calling on the administration to halt family separations while Congress works on a legislative solution,…" +06/20/2018,Politicians,@tedcruz,"RT @SenatorWicker: I support the ""Protect Kids and Parents Act"" introduced by @SenTedCruz. It would #KeepFamiliesTogether & help clear the…" +06/20/2018,Politicians,@tedcruz,RT @SenPatRoberts: I am cosponsoring @SenTedCruz Protect Kids and Parents Act to stop parental separation at the border. https://t.co/Ab65D… +06/20/2018,Politicians,@tedcruz,"""Cruz’s bill seems to strike the right balance."" + +Ted Cruz's border bill to end family separations makes sense --> https://t.co/DMB1ljaWxP" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/hO2riT7sTq https://t.co/IfzlrlC5Uu" +06/20/2018,Politicians,@tedcruz,RT @CNN: Sen. Ted Cruz beat late-night host Jimmy Kimmel in a one-on-one basketball game https://t.co/F5xkq1V6vG https://t.co/hIMLpPKBAe +06/20/2018,Politicians,@tedcruz,RT @TIME: Texas Sen. Ted Cruz promises a bill to deal with the family separation crisis at the border https://t.co/3Avf2Opvfe https://t.co/… +06/19/2018,Politicians,@tedcruz,RT @TheRightScoop: Ted Cruz praises Trump-backed recision package as a FIRST STEP https://t.co/sFpTGB5jaS https://t.co/Sp4UWUWnJb +06/19/2018,Politicians,@tedcruz,RT @townhallcom: Immigration Firestorm: Tune Out the Shouting and Read Ted Cruz's Solid Plan on Family Separation https://t.co/QPXpiKeF7q +06/19/2018,Politicians,@tedcruz,Ted Cruz and Jimmy Kimmel are better at raising money for charity than they are at playing basketball: https://t.co/s76yIvWCkK #KimmelvsCruz +06/19/2018,Politicians,@tedcruz,"RT @TheRightScoop: TED CRUZ: Child separation has to stop, but this isn’t a NEW issue! – [VIDEOS] https://t.co/uIOHGhMrjZ https://t.co/1Ana…" +06/19/2018,Politicians,@tedcruz,RT @NBAWorldNewz: Ted Cruz and Jimmy Kimmel are better at raising money for charity than they are at playing basketball - CNN https://t.co/… +06/19/2018,Politicians,@tedcruz,"RT @JustinTHaskins: WATCH: @jimmykimmel and @tedcruz played a game of basketball, but most importantly, they raised over $80,000 for charit…" +06/19/2018,Politicians,@tedcruz,"RT @leebright: ""In the 4th District Congressional runoff, I am proud to endorse Lee Bright, and I urge voters there to join me by supportin…" +06/19/2018,Politicians,@tedcruz,"RT @CatholicVote: Sen. Ted Cruz has proposed emergency legislation that would: + +- Allow immigrant families entering illegally to stay toget…" +06/19/2018,Politicians,@tedcruz,RT @NRO: Ted Cruz Introduces Emergency Legislation to End Family Separation – It Looks Solid https://t.co/l81Zzxkxg6 via @DavidAFrench http… +06/19/2018,Politicians,@tedcruz,RT @EWErickson: TAKE ACTION: Tell Your Senator to Support Ted Cruz's Plan https://t.co/sPOHNykaDL https://t.co/oZACUpgsEb +06/19/2018,Politicians,@tedcruz,"WATCH: @jimmykimmel and I played a game of basketball, but most importantly, we raised over $80,000 for charity to… https://t.co/NyPzns0Caa" +06/19/2018,Politicians,@tedcruz,"RT @TexasChildrens: Thank you @JimmyKimmelLive, @tedcruz and everyone who donated to @TexasChildrens for your incredible support throughout…" +06/19/2018,Politicians,@tedcruz,RT @hughhewitt: .@TedCruz introduces legislation to keep immigrant families together after they cross the border https://t.co/2sDe825WCF vi… +06/19/2018,Politicians,@tedcruz,"RT @generation1TX: WE ARE THE CHAMPIONS!!! Sen. Cruz Wins against Jimmy Kimmel!! Thank You, Sen.Ted Cruz, for choosing Generation One for y…" +06/19/2018,Politicians,@tedcruz,RT @TheRightScoop: WATCH: Ted Cruz WHUPS Jimmy Kimmel in charity basketball game! https://t.co/0z3zOGmq2G https://t.co/rWyyyHFLFn +06/19/2018,Politicians,@tedcruz,"We had a great time playing basketball and raising over $80,000 for charity on Saturday! + +Watch highlights from the… https://t.co/VjTjcIvulA" +06/19/2018,Politicians,@tedcruz,"RT @AmeriCorps: Before hitting the hardwood in #KimmelvsCruz's Blobfish Classic 🏀, @SenTedCruz met with @AmeriCorpsNCCC members serving wit…" +06/19/2018,Politicians,@tedcruz,RT @HoustonChron: Ted Cruz introducing legislation to keep migrant families together https://t.co/lLMfUbiOTl +06/19/2018,Politicians,@tedcruz,RT @DailyCaller: Ted Cruz Announces Legislation To Keep Illegal Immigrant Families Together https://t.co/YuyCEPT6lA https://t.co/t6W2WyLTYl +06/19/2018,Politicians,@tedcruz,"RT @amzam: U.S. Sen. @TedCruz has introduced legislation to keep immigrant families together ""absent aggravated criminal conduct or threat…" +06/18/2018,Politicians,@tedcruz,"RT @Kenny_Mayne: As for the game itself.....you can see it tonight on @JimmyKimmelLive. + +In slow motion. + +https://t.co/seJqZOzcD1" +06/18/2018,Politicians,@tedcruz,RT @RepMattKrause: Great work by @tedcruz tailoring a solution that ensures families stay together and continues to enforce the rule of law… +06/18/2018,Politicians,@tedcruz,RT @statesman: BREAKING: Ted Cruz says he’ll introduce a bill to end most family separations https://t.co/fRMuM0cN3P https://t.co/L1ncSiJuFR +06/18/2018,Politicians,@tedcruz,RT @CaryCheshireTX: BREAKING: @tedcruz introduces legislation to protect families and end catch and release. #txlege #TX2018 #TXSEN https:… +06/18/2018,Politicians,@tedcruz,"RT @abc7breaking: Learn more about Senator Cruz's bill, which would double the number of federal immigration judges, from roughly 375 to 75…" +06/18/2018,Politicians,@tedcruz,"RT @DavidAFrench: My first take on the Cruz legislation. It looks solid, with one concern (as many folks are expressing in my timeline) abo…" +06/18/2018,Politicians,@tedcruz,RT @axios: NEW: Sen. Ted Cruz to introduce the first Republican bill aimed at solving the child separation policy https://t.co/Psqzxh2y0m +06/18/2018,Politicians,@tedcruz,RT @TheRightScoop: Ted Cruz JUST proposed a GREAT SOLUTION to the child separation chaos at the border https://t.co/oDr5IY89SA https://t.co… +06/18/2018,Politicians,@tedcruz,RT @trscoop: Ted Cruz JUST proposed a GREAT SOLUTION to the child separation chaos at the border https://t.co/kC0x1CueSu https://t.co/rluvs… +06/18/2018,Politicians,@tedcruz,RT @TexasTribune: New: Ted Cruz announced emergency legislation to keep immigrant families together after they cross the border into the Un… +06/18/2018,Politicians,@tedcruz,RT @WashTimes: BREAKING: Ted Cruz announces bill to stop family separations at border https://t.co/yyTn1hQH6K https://t.co/84kPgpyckC +06/18/2018,Politicians,@tedcruz,RT @cbs11jack: #BREAKING #Texas Senator @tedcruz is introducing emergency leg this week to keep families together after illegally crossing… +06/18/2018,Politicians,@tedcruz,RT @AllisonFox4News: .@tedcruz introducing emergency legislation to keep illegal immigrant families together https://t.co/uJdwAAptpC +06/18/2018,Politicians,@tedcruz,"RT @AmeriCorps: Before hitting the hardwood in #KimmelvsCruz's Blobfish Classic 🏀, @SenTedCruz met with @AmeriCorpsNCCC members serving wit…" +06/18/2018,Politicians,@tedcruz,"The winners on Saturday Night were the children of @generation1TX and @TexasChildrens. Over $83,000 raised and coun… https://t.co/hdEWL87bzW" +06/18/2018,Politicians,@tedcruz,RT @TexasChildrens: #KimmelVsCruz attracted thousands to Houston this past weekend! @abc13houston shares a behind-the-scenes look at the ga… +06/18/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible happened: Grayson Allen met Ted Cruz https://t.co/OUVICuhI47 +06/18/2018,Politicians,@tedcruz,"RT @club4growth: Club for Growth PAC is proud to endorse @tedcruz for U.S. Senate! + +When it comes to fiscal conservatives, Ted Cruz is the…" +06/18/2018,Politicians,@tedcruz,"With your generous help, we’ve already raised over $80k for two wonderful Texas charities. Thank you for making a d… https://t.co/Gy9ha62Yro" +06/18/2018,Politicians,@tedcruz,"And please make a donation to either @generation1TX or @TexasChildrens (or both) now: + +Generation One:… https://t.co/a4fgGhoQec" +06/17/2018,Politicians,@tedcruz,"The game was yesterday, but you can still make a difference today... + +Donate now to either @generation1tx or… https://t.co/uEAor4Tkq1" +06/17/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible happened: Grayson Allen met Ted Cruz https://t.co/CtJrtUIUoa +06/17/2018,Politicians,@tedcruz,"RT @SInow: Ted Cruz may be Grayson Allen's doppelgänger, but can he actually hoop? https://t.co/JFgQ69ZnRS" +06/17/2018,Politicians,@tedcruz,My dad has been my hero my whole life. Here’s to wishing a very happy #FathersDay to all the dads out there! https://t.co/aWSlA0aznY +06/17/2018,Politicians,@tedcruz,"RT @USNavy: On this #FathersDay and every day, we're thankful for our #USNavy dads! BZ! https://t.co/DOEehirmNE" +06/17/2018,Politicians,@tedcruz,RT @SylvesterTurner: Tip off for the much anticipated #blobfishclassic begins at 5pm as @jimmykimmel takes on Sen. @tedcruz in a 1-on-1 bas… +06/17/2018,Politicians,@tedcruz,RT @JeffEisenband: Ted Cruz relying hard on the right. https://t.co/8crmawT9UM +06/17/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible has happened: Grayson Allen met Ted Cruz https://t.co/DplMPpKLv3 +06/17/2018,Politicians,@tedcruz,RT @jimmykimmel: Agreed. Two great charities run by great people. https://t.co/VBDhB8YNso +06/17/2018,Politicians,@tedcruz,"The winner tonight? + +@generation1TX and @TexasChildrens + +Support them below: + +Generation One:… https://t.co/vTyZgX6vLW" +06/17/2018,Politicians,@tedcruz,Post game interview with @IAMGUILLERMO #KimmelvsCruz🏀 https://t.co/FQyLgukUP0 +06/16/2018,Politicians,@tedcruz,The crowd is fired up! #KimmelvsCruz🏀 #CruzToVictory https://t.co/jvMsdsU0Np +06/16/2018,Politicians,@tedcruz,RT @abc13houston: Sen. @tedcruz is rocking @HoustonRockets red and did a pregame interview with @IAMGUILLERMO before the #KimmelvsCruz game… +06/16/2018,Politicians,@tedcruz,RT @abc13houston: Sen. @tedcruz left this note in the locker room for @JimmyKimmelLive. What do y’all think about this message? https://t.c… +06/16/2018,Politicians,@tedcruz,20 minutes! #KimmelvsCruz🏀 https://t.co/PVVgejEMSy +06/16/2018,Politicians,@tedcruz,RT @BarstoolBDevils: Oh my god. https://t.co/GldNcAjR7j +06/16/2018,Politicians,@tedcruz,RT @DukeMBB: 🧐🧐🧐🧐🧐🧐🧐🧐🧐🧐 https://t.co/9AfUHUjLAY +06/16/2018,Politicians,@tedcruz,A couple of pregame interviews #KimmelvsCruz🏀 #CruzToVictory https://t.co/rP6nXG8Qdx +06/16/2018,Politicians,@tedcruz,"Rest easy, @jimmykimmel... you won’t be playing @GraysonJAllen today, but it looks like he’s made his pick...… https://t.co/Cb9vQDFRAn" +06/16/2018,Politicians,@tedcruz,RT @jeremiah_hunter: Awesome! My boys got to hang out with Senator Ted Cruz! https://t.co/vB5u98RIpB +06/16/2018,Politicians,@tedcruz,RT @BleacherReport: It finally happened @GraysonJAllen @tedcruz https://t.co/EK5qswyNsR +06/16/2018,Politicians,@tedcruz,"RT @marchmadness: The photo America has been waiting for... + +Grayson Allen + Ted Cruz = #Twinning 😂 + +(📷 - @tedcruz) https://t.co/goLRt1aCnf" +06/16/2018,Politicians,@tedcruz,"RT @SBNation: Looks like Ted Cruz is about to ball with Jimmy Kimmel for charity, and he brought in a stand in 😂 https://t.co/NGTA6QJLZA" +06/16/2018,Politicians,@tedcruz,"Picking up my stand in… are you ready, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/z8LGoM0ljV" +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: IT'S FOR THE KIDS! When Sen. @tedcruz and @JimmyKimmelLive hit the basketball court today, the real winners will be @Texa…" +06/16/2018,Politicians,@tedcruz,RT @BE_1776: Quick stop for @tedcruz at the RPT Congressional Lunch before heading back to Houston for the basketball game with Jimmy Kimme… +06/16/2018,Politicians,@tedcruz,RT @abc13houston: It's almost game time. Senator Ted Cruz and Jimmy Kimmel are just hours away from hitting the hardwood. https://t.co/L3T… +06/16/2018,Politicians,@tedcruz,"RT @tedcruz: Get ready for the showdown of the summer... + +Are you ready for it, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/DQ…" +06/16/2018,Politicians,@tedcruz,Meeting the future of the @TexasGOP #RPTCon18 https://t.co/sBhQKnsz6E +06/16/2018,Politicians,@tedcruz,Five hours until 🏀 time with ⁦@jimmykimmel⁩ #KimmelvsCruz #CruzToVictory https://t.co/ilXtWBCgre +06/16/2018,Politicians,@tedcruz,We need @KonniBurton to come back to the Texas Senate. She’s a warrior and a dear friend! #TXLege #RPTCon18… https://t.co/x27QkIupNk +06/16/2018,Politicians,@tedcruz,"Miss my speech at #RPTCon18? + +Watch it here: https://t.co/mdVA8PEKZ9 #txsen #KeepTexasRed https://t.co/2MBp3bxBaU" +06/16/2018,Politicians,@tedcruz,"RT @TeamTedCruz: #CruzCrew 📷 line! #RPTCon18 + +The @TexasGOP loves @tedcruz! +#TXSEN #KeepTexasRed https://t.co/AUfo024xT5" +06/16/2018,Politicians,@tedcruz,"RT @toddgillman: ""Bless you. I am Rafael Cruz. I'm the senator's father."" Long line for photos with @tedcruz at #RPT2018 https://t.co/34csR…" +06/16/2018,Politicians,@tedcruz,RT @toddgillman: .@tedcruz is now taking photos with fans at the @TexasGOP convention. Hundreds are lined up. His dad is keeping them occu… +06/16/2018,Politicians,@tedcruz,"RT @CourtneyABC13: ....and @tedcruz is playing for @generation1TX. So, if the senator wins #BlobfishBasketballClassic, @jimmykimmel must pa…" +06/16/2018,Politicians,@tedcruz,"RT @TeamTedCruz: The line to get a pic with @tedcruz at #RPTCon18 stretches all the way out to the back of the exhibit hall! + +Get in line a…" +06/16/2018,Politicians,@tedcruz,RT @WPAIntel: Hey #RPTCon2018! Remember that app ⁦@tedcruz⁩ mentioned? You can download it right here! https://t.co/at0lZjAp7o +06/16/2018,Politicians,@tedcruz,#CruzCrew: come get a photo at our @TexasGOP Convention booth now! #TXSen #KeepTexasRed https://t.co/OA7AjbW8yp +06/16/2018,Politicians,@tedcruz,"See y’all soon at the @TexasGOP convention! + +10 am CT #KeepTexasRed #CruzCrew #TXSen https://t.co/gjs1PgV6qB" +06/16/2018,Politicians,@tedcruz,RT @barstoolsports: Grayson Allen flying up draft boards after his most recent performance @BarstoolNewsN https://t.co/lzTS8gnKaN +06/16/2018,Politicians,@tedcruz,"GAME DAY! Are you ready for it? + +Tweet #TeamCruz below and let your followers know where you stand for #KimmelvsCruz!" +06/16/2018,Politicians,@tedcruz,RT @JohnCornyn: I think this is self-explanatory https://t.co/UdujQU229I +06/16/2018,Politicians,@tedcruz,RT @TeamTedCruz: I'm rooting for @tedcruz to take down @jimmykimmel in the #KimmelvsCruz showdown. RT if you are too! #CruzToVictory #TeamC… +06/16/2018,Politicians,@tedcruz,RT @TeamTedCruz: SATURDAY: It's Houston vs Hollywood and I'm rooting for @tedcruz to beat @jimmykimmel! RT if you are too! #KimmelvsCruz #T… +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: GAME DAY: In just a few hours, Sen. @tedcruz and @JimmyKimmelLive will meet face-to-face at @TexasSouthern for a charity…" +06/16/2018,Politicians,@tedcruz,Today... #KimmelvsCruz🏀 #CruzToVictory https://t.co/u5tNwDBSAX +06/16/2018,Politicians,@tedcruz,RT @rightwingtrout: I'm rooting for @tedcruz to take down @jimmykimmel in the #KimmelvsCruz showdown. RT if you are too! #CruzToVictory #Te… +06/16/2018,Politicians,@tedcruz,RT @AngelartrHughes: SATURDAY: It's Houston vs Hollywood and I'm rooting for @tedcruz to beat @jimmykimmel! RT if you are too! #KimmelvsCru… +06/16/2018,Politicians,@tedcruz,RT @alweaver22: VERY IMPORTANT NEWS: Ted Cruz says the Kimmel game will feature “the least talent in the history of basketball” https://t.c… +06/16/2018,Politicians,@tedcruz,"NEW VIDEO: Tweet #TeamCruz to unlock the full video NOW! + +It's Houston vs Hollywood. Are you ready, @jimmykimmel?… https://t.co/eFnAsJT8yf" +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: IT'S FOR THE KIDS: For all the mudslinging hilarity that has come up before this game, both @jimmykimmel and @tedcruz wan…" +06/15/2018,Politicians,@tedcruz,The #KimmelvsCruz showdown is about the kids --> https://t.co/CMokK0L4WT +06/15/2018,Politicians,@tedcruz,"RT @newzealblog: Ted Cruz Gets Ready To Rumble With Jimmy Kimmel – It’s The Showdown Of The Summer Y’all! + +""Houston is getting ready to rum…" +06/15/2018,Politicians,@tedcruz,"TOMORROW: The Showdown of the Summer at @TexasSouthern. + +Me vs @jimmykimmel. Tweet #TeamCruz to let everyone know w… https://t.co/fUnEy5RmAE" +06/15/2018,Politicians,@tedcruz,RT @abc13houston: BALLIN': Sen. @tedcruz was keeping it 💯 at practice today before his charity basketball game Saturday against @JimmyKimme… +06/15/2018,Politicians,@tedcruz,"Less than 24 hours to go... see you soon, @jimmykimmel #KimmelvsCruz🏀 #CruzToVictory https://t.co/1zkWqyEo6F" +06/15/2018,Politicians,@tedcruz,"RT @ColumbiaBugle: Ted Cruz playing basketball is probably the funniest thing you'll see all day. + +He's still going to beat Kimmel. https:…" +06/15/2018,Politicians,@tedcruz,RT @jennybethm: Text the number 500 to 96000 or cast your vote online to join me in electing @marklevinshow into the National Radio Hall of… +06/15/2018,Politicians,@tedcruz,RT @Rational_Press: Ted Cruz is my spirit animal. https://t.co/esTxb3SRHO +06/15/2018,Politicians,@tedcruz,"RT @JerryDunleavy: Okay so this #KimmelvsCruz hype video put out by @TedCruz is actually pretty good TBQH. +https://t.co/ngS4j0Opur" +06/15/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz's campaign, having quite a bit of fun, releases a trailer for his basketball game against @jimmykimmel tomorro…" +06/15/2018,Politicians,@tedcruz,RT @NickABC13: Here’s a look at Sen. @tedcruz shooting hoops ahead of tomorrow’s game with @jimmykimmel. https://t.co/31YoC4TIxT +06/15/2018,Politicians,@tedcruz,"RT @ScyllaLopez: Dude is serious about this game. Watch out, @jimmykimmel. +You gotta watch more of this practice video with @SenTedCruz to…" +06/15/2018,Politicians,@tedcruz,"RT @chicksonright: I LOVE this! + +GO Ted! https://t.co/CY23QmYYHq" +06/15/2018,Politicians,@tedcruz,"Left a note for you in your locker room, @jimmykimmel. #KimmelvsCruz https://t.co/N5f0rUgSFt" +06/15/2018,Politicians,@tedcruz,#CruzToVictory #KimmelvsCruz🏀 https://t.co/eGbVnMnIKu +06/15/2018,Politicians,@tedcruz,"RT @Newsweek: Jimmy Kimmel will face Ted Cruz on the court in ""Blobfish Basketball Classic"" https://t.co/PR9IxqoAaQ https://t.co/rjpJFNyqTj" +06/15/2018,Politicians,@tedcruz,RT @billboard: Ted Cruz listed by oddsmakers as favorite over Jimmy Kimmel for upcoming charity basketball game https://t.co/2d31nCZLGj htt… +06/15/2018,Politicians,@tedcruz,RT @TheRightScoop: Look out Jimmy Kimmel! Ted Cruz is DROPPING THE ROCK on the practice court before tomorrow’s big game! https://t.co/bUBK… +06/15/2018,Politicians,@tedcruz,"RT @TomAbrahams13: If you haven't watched this, you should. @tedcruz preparing for his game against @jimmykimmel in Houston at @TexasSouth…" +06/15/2018,Politicians,@tedcruz,"RT @TwitchyTeam: Think he's got a shot? Ted Cruz gears up for basketball game with Jimmy Kimmel [pics, video] https://t.co/OHV7gGfQDF" +06/15/2018,Politicians,@tedcruz,RT @abc13houston: @CNNJustin You can see more video from the practice here: https://t.co/qXf2a44XZJ +06/15/2018,Politicians,@tedcruz,@Zachary_Cohen @GraysonJAllen https://t.co/YrIf48RRM6 +06/15/2018,Politicians,@tedcruz,"Get ready for the showdown of the summer... + +Are you ready for it, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/DQoXuHgD1v" +06/15/2018,Politicians,@tedcruz,RT @ArmyStrong34: @abc13houston @tedcruz @JimmyKimmelLive @jimmykimmel He was better when he played for Duke. https://t.co/r4SYB2s9Kk +06/15/2018,Politicians,@tedcruz,RT @abc13houston: HE GOT GAME! Sen. @tedcruz hit the court today with 🔥🔥🔥 in preparation for his charity basketball game Saturday against @… +06/15/2018,Politicians,@tedcruz,"RT @NickABC13: He’s got game! Take a look at Sen. @tedcruz gets pointers from @UHouston great, Lynden Rose. Watch the shoot around live on…" +06/15/2018,Politicians,@tedcruz,RT @KHOUSportsMatt: #KHOU11 #KimmelvsCruz Senator Ted Cruz is working hard with UH Alum Lyndon Rose in preparation for his upcoming 1 on… +06/15/2018,Politicians,@tedcruz,RT @tedcruz: @keranews @jimmykimmel https://t.co/n3sa6BisC8 +06/15/2018,Politicians,@tedcruz,⛹️‍♂️ #KimmelvsCruz https://t.co/0EKVupOhpC +06/15/2018,Politicians,@tedcruz,Getting some tips from @UHCougarMBK Phi Slama Jama star Lynden Rose #KimmelvsCruz🏀 #CruzToVictory https://t.co/4iRWwdOuVb +06/15/2018,Politicians,@tedcruz,"RT @generation1TX: You've heard about the game on Saturday! If you haven't reserved your ticket yet, you can still support us by making a…" +06/15/2018,Politicians,@tedcruz,@keranews @jimmykimmel https://t.co/n3sa6BisC8 +06/15/2018,Politicians,@tedcruz,A little improvement 🏀 #KimmelvsCruz #CruztoVictory https://t.co/iCyIGthoBO +06/15/2018,Politicians,@tedcruz,Some practice before the big game tomorrow... 🏀 #KimmelvsCruz #CruzToVictory https://t.co/xPXKy2ch2n +06/15/2018,Politicians,@tedcruz,"RT @starsandstripes: A Medal of Honor winner is settling into his brand new, donated house in Texas https://t.co/oR1ohAWiTI" +06/15/2018,Politicians,@tedcruz,⛹️ https://t.co/P3gyEgeesn +07/02/2018,Politicians,@JohnKasich,The hard working men and women of the FBI Joint Terrorism Task Force should be commended for their efforts to thwar… https://t.co/r0cFfHvmiC +07/02/2018,Politicians,@JohnKasich,“[We’ve seen] the government’s mechanized trampling of families only seeking our compassion. When things sink to th… https://t.co/LHibnauhNr +07/02/2018,Politicians,@JohnKasich,The failure of leaders in Washington to act on issues as important as immigration is indicative of a much broader i… https://t.co/46jbU92Z8Z +07/02/2018,Politicians,@JohnKasich,Today we’re lowering the flags to honor the life and service of Mentor Police Officer Matthew Mazany. https://t.co/LpuDalZp41 +07/01/2018,Politicians,@JohnKasich,College Credit Plus is giving more students a jumpstart on college. Strong work by @MarionTech and congrats to all… https://t.co/NsxzbLKrYl +06/30/2018,Politicians,@JohnKasich,"Six GM facilities in Ohio provide jobs for about 6,000 Ohioans. + +Because of this Administration’s trade war, those… https://t.co/eCeSMRp4ES" +06/30/2018,Politicians,@JohnKasich,"As the State of Ohio closes out its fiscal year today, I’m pleased to report that our budget is balanced and our fi… https://t.co/OZf0VvaT2V" +06/30/2018,Politicians,@JohnKasich,The priority along our border must be to reunite these families. We need to bring everyone together and deal with t… https://t.co/iL8xBCbkPo +06/29/2018,Politicians,@JohnKasich,"Excellent example of business and education partnering together to help Ohioans increase their tech skills! + +https://t.co/OKepZ6G7E3" +06/29/2018,Politicians,@JohnKasich,The courage and determination of the @capgaznews staff has been incredible. A strong reminder of the importance of… https://t.co/8o9rv49FmH +06/28/2018,Politicians,@JohnKasich,Terrible news out of Annapolis today -- five newspeople senselessly and tragically murdered. Local law enforcement… https://t.co/nxkz4dnXyV +06/28/2018,Politicians,@JohnKasich,Columbus has “implemented a thoughtful business approach and capitalized on its local institutions to build a well-… https://t.co/Q31FI4DwOb +06/27/2018,Politicians,@JohnKasich,"In Ohio, we’ve been working to help legal immigrants successfully integrate in our communities. I appreciate member… https://t.co/0H6jTHp6mI" +06/27/2018,Politicians,@JohnKasich,"From biotech to software to life sciences, @ohiou’s Innovation Center is inspiring exciting new fields that will gr… https://t.co/yjapwZbcA6" +06/26/2018,Politicians,@JohnKasich,Did anyone really believe American businesses would sit back while the administration’s tariffs force their costs t… https://t.co/XHXRfGg1s9 +06/26/2018,Politicians,@JohnKasich,"Today the CBO announced the federal debt is headed for its highest levels since World War II. + +As I’ve long been sa… https://t.co/xtBvTmLqeM" +06/26/2018,Politicians,@JohnKasich,"Today marks the 50th anniversary of @TheKingCenter, honoring the legacy of one of America’s greatest leaders and re… https://t.co/APv3nkOemw" +06/26/2018,Politicians,@JohnKasich,"For the future of America, both the left and the right need to remember our values, pursue truth and do what's best… https://t.co/oNLgEBmFGl" +06/25/2018,Politicians,@JohnKasich,We are continuing to lead the world in transportation technology – making our roads safer and our lives easier at t… https://t.co/6YMt4E5N9O +06/25/2018,Politicians,@JohnKasich,"Ohioans: Please tune in to @TheOhioChannel at 5:30PM tonight to see my interview on @PBS @FiringLineShow! + +If you'd… https://t.co/J8VfgB5h4b" +06/24/2018,Politicians,@JohnKasich,Saddened to hear about the death of an officer of the Mentor Police Department. We extend our deep condolences to t… https://t.co/aBce8UjKz2 +06/23/2018,Politicians,@JohnKasich,"There’s a reason Ohio cities are attracting more and more millennials – innovation and opportunity. + +https://t.co/Unf0zoRuRz" +06/23/2018,Politicians,@JohnKasich,It’s time for politicians in Washington to stop pointing fingers and playing politics. Solve the problem. There’s a… https://t.co/nSnY6Mpyj2 +06/23/2018,Politicians,@JohnKasich,Thank you for having me on! https://t.co/pTA26QoWft +06/22/2018,Politicians,@JohnKasich,"With over a half-million jobs created since 2011, JobsOhio has become a model for economic development across the c… https://t.co/Tx5yyr0DTQ" +06/22/2018,Politicians,@JohnKasich,"UPDATED: I will be on @NPRWeekend Saturday around *9:20AM ET! + +Thx @NPR and @nprscottsimon for having me! https://t.co/JEIiROcvNB" +06/22/2018,Politicians,@JohnKasich,Lots to discuss on @CNN’s @Smerconish at 9AM & 6PM ET on Saturday! Hope you can tune in! https://t.co/T3LjOwty9U +06/22/2018,Politicians,@JohnKasich,Looking forward to discussing the future of the Republican Party with @NPR's @NPRScottSimon Saturday morning around… https://t.co/mXhAGJb3kS +06/22/2018,Politicians,@JohnKasich,Tune in! https://t.co/en13enT487 +06/22/2018,Politicians,@JohnKasich,Looking forward to being on this week’s @PBS @FiringLineShow - check your local listing and tune in! https://t.co/v54E83jY7O +06/22/2018,Politicians,@JohnKasich,RT @FiringLineShow: This week on #FiringLineShowPBS... we go #national! Check your local @pbs listings to watch https://t.co/lBzt05iNPe +06/22/2018,Politicians,@JohnKasich,What a fun event for the whole family! https://t.co/vsyqPXmZLt +06/21/2018,Politicians,@JohnKasich,"We all hope @KingJames stays here in Ohio, but no matter what, we're +proud of all he's doing as a role model for yo… https://t.co/kw8b50TxAO" +06/21/2018,Politicians,@JohnKasich,"AP: House GOP postpones key immigration vote amid party infighting +https://t.co/YO2yRYfvZS + +=== + +Enough is enough.… https://t.co/tqV5bGsJN2" +06/21/2018,Politicians,@JohnKasich,"In Ohio, we have been working to better align education and workforce-training to get people on a path to a rewardi… https://t.co/q8WprT7cQi" +06/21/2018,Politicians,@JohnKasich,It’s great to see more low-cost pathways for Ohioans to get college degrees all across the state. https://t.co/NChVRwFXtG +06/21/2018,Politicians,@JohnKasich,The government needs all hands on deck to protect these children and reunite these families. Enough is enough. Get… https://t.co/PxRqY5BBYa +06/20/2018,Politicians,@JohnKasich,My statement on the President's executive order. https://t.co/viCqAt3KN5 +06/20/2018,Politicians,@JohnKasich,"In the fight against drugs, we need all hands on deck! I appreciate all the members of the @OhioOpioidEdu coming to… https://t.co/BHCwp3NueJ" +06/20/2018,Politicians,@JohnKasich,The innovations coming out of Cincinnati Children’s Hospital are just incredible. Keeping our kids safe and comfort… https://t.co/peXt1VD0e4 +06/19/2018,Politicians,@JohnKasich,"Can you imagine being ripped away from your family? That's no +solution. That's not America. https://t.co/ak3pCp3X6E" +06/19/2018,Politicians,@JohnKasich,"When I look down at the border, I feel as though in some people’s eyes these people are objects, that they’re not p… https://t.co/g9KtXNY8Sp" +06/19/2018,Politicians,@JohnKasich,Looking forward to speaking with @BrookeBCNN on @CNNNewsroom today at 2PM ET. Hope you can tune in! https://t.co/MwQlSh12B6 +06/19/2018,Politicians,@JohnKasich,Looking forward to appearing on the @11thHour tonight on @MSNBC. Tune in around 11PM ET! https://t.co/dnf8VRpQhV +06/18/2018,Politicians,@JohnKasich,"Ohio has come a long way since losing 350,000 jobs, and we’ve worked hard since 2011 to transform this state for gr… https://t.co/yBIUeb6SAd" +06/18/2018,Politicians,@JohnKasich,"Unbelievably, the Administration has chosen to no longer defend the law of the land that protects those with pre-ex… https://t.co/QDIGi1rI30" +06/18/2018,Politicians,@JohnKasich,Ripping apart families is serious business. It’s up to all of us to speak out. https://t.co/HftFLAOmlf +06/18/2018,Politicians,@JohnKasich,"We are LIVE today at JobsOhio to celebrate Ohio’s strong private sector growth — 520,500 private sector jobs since… https://t.co/hwHBB2vZLh" +06/18/2018,Politicians,@JohnKasich,Our country is tearing kids from their moms and dads. I can’t believe it. Can you imagine it happening to your fami… https://t.co/Q8sHLuEdI7 +06/18/2018,Politicians,@JohnKasich,"Tune in to @MSNBC with @SRuhle right now. I’ll be talking economy, entitlements, immigration and more." +06/17/2018,Politicians,@JohnKasich,Encouraging to see reports of fewer overdose deaths in some of our communities. Let’s hope this trend continues. F… https://t.co/aPesMfktqG +06/17/2018,Politicians,@JohnKasich,"I’m so blessed to have my girls. To everyone who feels as lucky as I do to be called “dad,” I hope you have a great… https://t.co/SYTwmVQI5g" +06/17/2018,Politicians,@JohnKasich,Want proof that the Ohio Model is working? https://t.co/DfFSwesPwi +06/17/2018,Politicians,@JohnKasich,"It’s getting hot outside, make sure you take some time to check in on your family and neighbors. Click here for tip… https://t.co/V43PHae0dj" +06/16/2018,Politicians,@JohnKasich,"Since 2011, Ohio has added 520,500 new private sector jobs! That means more opportunities, stronger families, and a… https://t.co/iBU9ttriNY" +06/16/2018,Politicians,@JohnKasich,"Great work by law enforcement in Dayton keeping this deadly drug off our streets. +https://t.co/1gTbxnKRCE" +06/15/2018,Politicians,@JohnKasich,We can’t allow our seniors to be victims of abuse. Learn the signs of elder abuse – help our elders live with digni… https://t.co/j9gd9LZ4xA +06/15/2018,Politicians,@JohnKasich,"Quit separating families. It's that simple. + +https://t.co/8C7E5QFyHV https://t.co/RWo6SZzgiu" +06/15/2018,Politicians,@JohnKasich,"With today’s jobs report, Ohio is now creating jobs 48 percent faster than the national rate since the start of the… https://t.co/6VBfHG1CZM" +06/15/2018,Politicians,@JohnKasich,"New jobs report out this morning shows more than 20,000 private sector jobs created in Ohio last month. We're showi… https://t.co/xqsYUJAG5b" +06/15/2018,Politicians,@JohnKasich,"Logistics has become a big part of Ohio’s more diversified economy. We’re leaning into it, and it’s paying off for… https://t.co/FI9SVtAp4A" +06/14/2018,Politicians,@JohnKasich,Today we take pride in the stars and stripes and honor Old Glory. #FlagDay https://t.co/gUeZFK2sEJ +06/14/2018,Politicians,@JohnKasich,"Good for @SenBobCorker for calling attention to Congress’ inaction on common-sense, conservative issues like DACA a… https://t.co/V4PILvKVMt" +06/14/2018,Politicians,@JohnKasich,A sad time for American values. The inaction by Congress to fix DACA will certainly be remembered when voters go to… https://t.co/7AOBM0d2zJ +06/13/2018,Politicians,@JohnKasich,"Ohio goes the extra mile to help our veterans find their next job opportunity. If you know a veteran, tell them abo… https://t.co/XHw9Oxt4ph" +06/13/2018,Politicians,@JohnKasich,"Columbus is booming. Ohio is booming. We’re not slowing down. +https://t.co/63AppU5IaD" +06/12/2018,Politicians,@JohnKasich,"Businesses. Schools. Jobs. All are growing stronger thanks to Ohio’s all-of-the-above energy policy. +https://t.co/z6MTBbC6mS" +06/12/2018,Politicians,@JohnKasich,"Happy Birthday to @GeorgeHWBush, one of America's most honorable leaders. Thank you for your service to our nation! https://t.co/cTHuckKqpL" +06/12/2018,Politicians,@JohnKasich,Time is up. Republicans can’t sit on the sideline any longer. Sign the discharge petition. Act on DACA now. https://t.co/LDui4ZUfOY +06/12/2018,Politicians,@JohnKasich,Promises from #NorthKorea don’t matter; we should not back off our economic and political pressure until there is a… https://t.co/MZwdwEAMRy +06/11/2018,Politicians,@JohnKasich,"As children, these people didn’t choose to come to America -- and as adults they’ve followed the rule of law, raise… https://t.co/PqXsOTVUuE" +06/11/2018,Politicians,@JohnKasich,We should not give anything away to #NorthKorea. We have to keep the pressure up until we get verifiable results. T… https://t.co/0sAnSqrqBP +06/11/2018,Politicians,@JohnKasich,"This is huge for NW Ohio! JobsOhio and their regional partners deserve a lot of credit for this big win! +https://t.co/v6aAYRxduX" +06/10/2018,Politicians,@JohnKasich,A sad and shameful end to the #G7Summit with America again standing alone while our allies fill the vacuum of leade… https://t.co/vrQvPpvlMV +06/10/2018,Politicians,@JohnKasich,"Ohio’s interactive budget is now two years old. We take taxpayer dollars seriously, so we built this comprehensive… https://t.co/Lcc16CLuYt" +06/09/2018,Politicians,@JohnKasich,Read more: Global security suffers when Trump snubs America’s trading allies. @GlobeAndMail #G7Summit… https://t.co/3l14YnWRTx +06/09/2018,Politicians,@JohnKasich,"Free trade is key to innovation, expansion and lasting global security. As the G-7 summit concludes in Quebec today… https://t.co/oztoIj8VBf" +06/08/2018,Politicians,@JohnKasich,"As the G-7 kicks off in Quebec, I hope the attendees will take some time to read my op-ed in Canada’s @GlobeandMail… https://t.co/4QX1kNCmKm" +06/08/2018,Politicians,@JohnKasich,"If life seems hopeless, contact someone. There is always someone there to listen. + +National suicide prevention hot… https://t.co/BIDfIHCVQ4" +06/08/2018,Politicians,@JohnKasich,President Trump's idea of renewing Russian membership in the G-7/G-8 does not protect or defend the national securi… https://t.co/SwuRbIcU0I +06/07/2018,Politicians,@JohnKasich,"RT @ForeignAffairs: In the new issue of Foreign Affairs, @JohnKasich writes about the right way put America first https://t.co/7kRDkW7B2E" +06/07/2018,Politicians,@JohnKasich,"DREAMers are our neighbors, schoolmates and co-workers. They live in our communities and are Americans in every sen… https://t.co/oNFjVdlX3K" +06/07/2018,Politicians,@JohnKasich,"WAPO: “If Stripmatic’s experience is any guide, protectionism may already be backfiring on Americans and underminin… https://t.co/U4repVZYqE" +06/07/2018,Politicians,@JohnKasich,"There's a better way to put America first. A smarter way. One that makes us more secure. + +Here it is:… https://t.co/1GqPzuLQiD" +06/07/2018,Politicians,@JohnKasich,DREAMers didn't have a choice coming to America as children. They've done nothing wrong since they got here. In fac… https://t.co/fahBadwh6h +06/07/2018,Politicians,@JohnKasich,"If you’re looking for your next great job opportunity, there are currently over 150,000 jobs available on … https://t.co/3yGuo033fB" +06/06/2018,Politicians,@JohnKasich,The members of the General Assembly have been active partners in Ohio’s success and I look forward to continuing th… https://t.co/mdPr5280V1 +06/06/2018,Politicians,@JohnKasich,We can’t make America First if we refuse to even play ball in the same league as our allies. Trade wars will only h… https://t.co/TxkVD8dE1K +06/06/2018,Politicians,@JohnKasich,"On this anniversary of D-Day, President Reagan’s words from his 1984 commemoration at Pointe du Hoc in Normandy con… https://t.co/1cPKXhVSCG" +06/06/2018,Politicians,@JohnKasich,"This is someone’s healthcare. Their retirement. Unless Congress gets serious about our national debt, our entire co… https://t.co/fNhnmd6ooN" +06/05/2018,Politicians,@JohnKasich,"American leaders who offer hope and challenge us to be better people are the ones we remember. This week, we rememb… https://t.co/6ZGGAfDh55" +06/05/2018,Politicians,@JohnKasich,"Echoes from the past? Maybe, but this feels different. Check out Jules Witcover’s column in the @BaltimoreSun about… https://t.co/Wqj3ywYYbA" +06/05/2018,Politicians,@JohnKasich,"It's time to be real. Russia and the West are in conflict and their behavior can not be tolerated. + +Read my column… https://t.co/rsPnnOLWe2" +06/04/2018,Politicians,@JohnKasich,"We helped set the stage for strong economic growth by cutting taxes, reducing unnecessary red tape and keeping Ohio… https://t.co/eiF0JMEegA" +06/04/2018,Politicians,@JohnKasich,"Here in Ohio, @Microsoft and @CWRU are coming together to develop new, cool tech. Further proof that Ohio continues… https://t.co/RKRPwUpOgw" +06/04/2018,Politicians,@JohnKasich,"RT @WSJ: Opinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/NVQCKDdXtQ" +06/03/2018,Politicians,@JohnKasich,Why do Congressional leaders feel they have to ask @POTUS for permission to do anything? Pass something. Let him ve… https://t.co/J68AnSxKVd +06/03/2018,Politicians,@JohnKasich,"Tariffs don’t make America First — they make it America Alone. + +Fair, free competitive trade is good for the USA. https://t.co/bjJlnuPtYk" +06/03/2018,Politicians,@JohnKasich,Promises don’t matter. We cannot let up the pressure on North Korea. https://t.co/2DgWeGbZHg +06/03/2018,Politicians,@JohnKasich,I’ll be on @FaceTheNation with @MargBrennan today. Make sure you check your local listings and tune in:… https://t.co/EF5vo60pRY +06/02/2018,Politicians,@JohnKasich,Hope you can tune in to @CBS @FaceTheNation Sunday morning. I'll be on to talk about why I'm standing with… https://t.co/JxZ8h0mmj1 +06/02/2018,Politicians,@JohnKasich,I’ll be on @FaceTheNation with @MargBrennan this Sunday. Check your local listings and tune in:… https://t.co/yRYTfzzVMm +06/02/2018,Politicians,@JohnKasich,So proud of my daughter Emma — what she’s accomplished at the state track championships these past four years is in… https://t.co/zm8DpBpgkl +06/01/2018,Politicians,@JohnKasich,"Improving cybersecurity has been a priority for us. With this new cyber range, we’ll have a virtual environment to… https://t.co/8AK9NcjWHf" +06/01/2018,Politicians,@JohnKasich,RT @FaceTheNation: SUNDAY: don't miss Ohio GOP Gov. @JohnKasich on @FaceTheNation https://t.co/CoBpCuagIb https://t.co/hU5HJOQ3Yj +06/01/2018,Politicians,@JohnKasich,So proud of Emma and her teammates! https://t.co/1ELYZtzjOa +06/01/2018,Politicians,@JohnKasich,Here at the HS state track meet. Just watched my daughter Emma and her 4x200 relay team advance to the state champi… https://t.co/DReFDlrQwh +06/01/2018,Politicians,@JohnKasich,"Central Ohio is booming! Thanks to the work of #JobsOhio and @CBusRegion, 150,000 new jobs have been added to the C… https://t.co/tZZTfB7L5c" +06/01/2018,Politicians,@JohnKasich,It all starts tonight. Let’s go @Cavs! #WhateverItTakes +06/01/2018,Politicians,@JohnKasich,RT @cspan: Governor @johnkasich (R-OH) at Harvard @kennedy_school – 8:25pm ET on C-SPAN https://t.co/9y6UBycA3C +06/01/2018,Politicians,@JohnKasich,Just had a great call with @RepCurbelo who is fighting for Dreamers. He's the kind of GOPer I will work hard for an… https://t.co/01kEtBBymj +05/31/2018,Politicians,@JohnKasich,The ballooning national debt is going to suffocate our economy if we don’t get it under control. Read my column tod… https://t.co/uMpifEVniS +05/31/2018,Politicians,@JohnKasich,The occupant of the Oval Office should speak for all Americans. Enough with the political division. @POTUS should c… https://t.co/Sa2OcmLV2C +05/31/2018,Politicians,@JohnKasich,"RT @WSJopinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/BVn1SdM170 via @WSJOpinion" +05/31/2018,Politicians,@JohnKasich,"RT @WSJ: Opinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/BceYhYqU7i" +05/31/2018,Politicians,@JohnKasich,"By imposing damaging tariffs, do we really want to treat our allies like enemies? That’s not how America leads. It… https://t.co/YppsMhf4mR" +05/31/2018,Politicians,@JohnKasich,"With these tariffs, it’s no longer America first. What we’re seeing now is America alone. https://t.co/UAcZUcAgOv" +05/31/2018,Politicians,@JohnKasich,I really appreciate @CNN wanting to talk about the importance of getting DACA passed through congress. I’ll be chat… https://t.co/7oVbmhBYdj +05/31/2018,Politicians,@JohnKasich,My latest column in today’s @WSJ about our nation's out-of-control national debt. Please share your thoughts!… https://t.co/pfemot54Fo +05/31/2018,Politicians,@JohnKasich,Our $21 trillion national debt should be setting off alarm bells for families across the nation. What can the count… https://t.co/iP05cPiVtE +05/30/2018,Politicians,@JohnKasich,"The Cleveland Clinic is always on the cutting-edge of medical innovation… and now they’re at it again.  +https://t.co/9OLme0hfv4" +05/30/2018,Politicians,@JohnKasich,Getting students involved in in-demand fields is so vital to preparing them for successful careers — it’s great to… https://t.co/JCYuCImuWj +05/30/2018,Politicians,@JohnKasich,"RT @NatImmForum: .@JohnKasich: “[Dreamers] are Americans in every sense, except for their paperwork. They grew up in this country. They are…" +05/30/2018,Politicians,@JohnKasich,Great news for Cincinnati! Congratulations! https://t.co/y3txPDbuJn +05/29/2018,Politicians,@JohnKasich,"Ohio is the proud home to the +@AFMuseum. It’s a must see for those traveling to the Buckeye State and it’s +one of t… https://t.co/HbrBPH2sZX" +05/29/2018,Politicians,@JohnKasich,"Read my latest op-ed in @USATODAY. #DACA should be a slam dunk for Congress. + +https://t.co/5zcbJaGymv https://t.co/23OPOgUdmA" +05/29/2018,Politicians,@JohnKasich,"Time’s Up, Congress! If leadership won’t act to find a solution for Dreamers, lawmakers need to trigger change by… https://t.co/NbE1XDg7BH" +05/28/2018,Politicians,@JohnKasich,"On this #MemorialDay, we remember the heroic men and women who gave their lives in service to our country. May they… https://t.co/yWIrqhkrGq" +05/28/2018,Politicians,@JohnKasich,"After last night, there really can’t be a doubt in anyone’s mind. @KingJames is just the best. https://t.co/o5XjFC7JAu" +05/28/2018,Politicians,@JohnKasich,"Today, we are lowering the flags in honor all of those heroes who gave their lives defending our great nation. https://t.co/KUbTehU2ru" +05/28/2018,Politicians,@JohnKasich,"Incredible. See you in the Finals, @cavs! + +#WhateverItTakes https://t.co/0KgCsgX07h" +05/28/2018,Politicians,@JohnKasich,Proud moment today as my daughters celebrated their graduation from high school. https://t.co/UKmHsCH4Tx +05/27/2018,Politicians,@JohnKasich,"The health care industry is thriving in Ohio.  +https://t.co/mzn8MWmMAw" +05/27/2018,Politicians,@JohnKasich,Cincinnati is a great place to live and a great place to visit – there’s so much to do and see. And the same is tru… https://t.co/21cJKqnspO +05/26/2018,Politicians,@JohnKasich,"More than six years ago, Ohio created a Human Trafficking Taskforce to raise awareness to help prevent this horribl… https://t.co/V6HpSkZz8m" +05/26/2018,Politicians,@JohnKasich,"This week, I signed an executive order to help improve the lives of Ohioans with developmental disabilities with a… https://t.co/5jHFm1hrdT" +05/26/2018,Politicians,@JohnKasich,Congrats to Emma and her @WCWarriorSports teammates! Their strong performance at regionals in the 4x100 & 4x200 has… https://t.co/xw8l9NiNbI +05/25/2018,Politicians,@JohnKasich,"""There's no wall at the Ohio border"" +Read my recent guest column here: https://t.co/CqgUyuLgFv + +https://t.co/P59XILJQTu" +05/25/2018,Politicians,@JohnKasich,"To all those traveling across Ohio this #MemorialDayWeekend, stay safe out there! And remember, … https://t.co/hPxpQsDYps" +05/25/2018,Politicians,@JohnKasich,Some virtues are written on our hearts and they’re instinctive. Just look at what @JJWatt has done for so many peop… https://t.co/gPJdPWwRQw +05/24/2018,Politicians,@JohnKasich,"Today, I signed an executive order declaring Ohio a Technology First state — taking an important step toward improv… https://t.co/IJQUPPr5nl" +05/24/2018,Politicians,@JohnKasich,"RT @DOMTIBERI: .@JohnKasich please share... +Don't let your child become a STATISTIC. If your CHILD drives RECKLESS. drives DISTRACTED. Tak…" +05/24/2018,Politicians,@JohnKasich,"When we recognize the virtues of love, compassion and humility, making decisions as a leader is easy. Too many lead… https://t.co/DWzUEXJGHW" +05/24/2018,Politicians,@JohnKasich,Ohio Gov. John Kasich joins developmentally disabled advocates to sign an executive order declaring Ohio a Technolo… https://t.co/ez95civ33b +05/24/2018,Politicians,@JohnKasich,Behind the Scenes: Gov. Kasich and special guest Milo getting ready for a press conference to announce that Ohio wi… https://t.co/9WfriQvkTR +05/24/2018,Politicians,@JohnKasich,This morning we will be taking an important step forward in our efforts to improve the lives of our neighbors with… https://t.co/pI5Vcw2gpH +05/24/2018,Politicians,@JohnKasich,Thank you for the opportunity. It was my honor! https://t.co/0GyNWtZLqI +05/24/2018,Politicians,@JohnKasich,"As our politics shows, in some ways my generation has failed us. To all of the Millennials and young Americans, the… https://t.co/NHnLUL8C7U" +05/23/2018,Politicians,@JohnKasich,It’s up to each of us to live a life a little bigger than ourselves. Don’t wait for politicians to fix our country. https://t.co/QHZWRBVw6w +05/23/2018,Politicians,@JohnKasich,I hope you can tune in at 2PM ET today. I'm honored to have the opportunity to give the @Harvard @Kennedy_School gr… https://t.co/9RWOmRfMuR +05/23/2018,Politicians,@JohnKasich,Honored to have the opportunity to deliver the graduation address today at @Harvard University's @Kennedy_School. T… https://t.co/aaH2VeKACL +05/23/2018,Politicians,@JohnKasich,Life in Boston https://t.co/d9rB0OaiOw +05/22/2018,Politicians,@JohnKasich,"Data analytics is key to solving many of the challenges facing society, and Ohio has been working to be a leader in… https://t.co/e5qoFo1HIZ" +05/22/2018,Politicians,@JohnKasich,It’s amazing to see companies coming forward with innovative ideas like this that can be put to use in combatting o… https://t.co/tm4KF0cbBv +05/22/2018,Politicians,@JohnKasich,The tsunami of change that’s coming to our workforce is among the most important issues facing our nation. Just fin… https://t.co/xb3aBPrPRy +05/22/2018,Politicians,@JohnKasich,Union Metal has been manufacturing in Canton since 1906. Great to see this historic facility and hundreds of Stark… https://t.co/23cY9lGw7J +05/21/2018,Politicians,@JohnKasich,"In Ohio, we’re utilizing technology to help those with developmental disabilities. We’re planning to take our effor… https://t.co/vOHWM5VzSy" +05/21/2018,Politicians,@JohnKasich,Gov. Kasich is live speaking at Ohio’s annual wreath-laying ceremony honoring our fallen heroes. Watch at… https://t.co/U43dR9UWiO +05/21/2018,Politicians,@JohnKasich,"Today, Ohio honors those military men and women who made the ultimate sacrifice. Join us live for our annual wreath… https://t.co/VMNlpg4MQ1" +05/20/2018,Politicians,@JohnKasich,"Last week, we created the Office of Opportunities for New Americans to focus on making sure new Ohioans are job rea… https://t.co/afRU9Dxt7h" +05/19/2018,Politicians,@JohnKasich,"So proud of my daughter, Emma, and her teammates for their first place finish at the district track meet in both th… https://t.co/7ptE1Qp5DP" +05/19/2018,Politicians,@JohnKasich,"On this Armed Forces Day, we thank all those that served and those that continue to serve in our nation’s military… https://t.co/yr8UWsOisr" +05/18/2018,Politicians,@JohnKasich,"Today, we’re lowering the flags in honor of the victims of the attack in Santa Fe, Texas. https://t.co/koJWBI1hJx" +05/18/2018,Politicians,@JohnKasich,Enjoyed it! https://t.co/uqEhr80QBX +05/17/2018,Politicians,@JohnKasich,The Midwest IS booming. And Ohio is helping to lead the way. We have all the resources for success – a talented wor… https://t.co/heFaLfE2VV +05/17/2018,Politicians,@JohnKasich,"Ohio isn’t slowing down… + +“12, 874 new entities filed to do business in Ohio last month, making April 2018 the bes… https://t.co/NHBg29imIR" +05/16/2018,Politicians,@JohnKasich,"It’s great to see Amazon continuing to grow and invest in Ohio. +https://t.co/vFTAxSlPlq" +05/16/2018,Politicians,@JohnKasich,RT @OHPediatricians: Check out Ohio AAP board member Mike Gittelman @gittel21 who spent a few minutes talking with @Local12 #Cincinnati abo… +05/16/2018,Politicians,@JohnKasich,.@CarloslCurbelo has been a leading voice in the GOP on this issue. His peers in Washington should listen and vote with their hearts. #DACA +05/16/2018,Politicians,@JohnKasich,Let's not let politics prevent Republicans from doing the right thing on #DACA. These are real lives we're talking… https://t.co/4u6DK9N45F +05/16/2018,Politicians,@JohnKasich,Appreciated students from Hoffman Trails Elementary School listening to a little advice from the governor today dur… https://t.co/n6UreeQuve +05/16/2018,Politicians,@JohnKasich,"A state built by immigrants, Ohio is finding better ways to help newcomers achieve success in the Buckeye State. Re… https://t.co/xWRPuidlIH" +05/15/2018,Politicians,@JohnKasich,If you’re a legal immigrant or are considering a move to America and you’re looking for great opportunities – come… https://t.co/kbU7hcdiBv +05/15/2018,Politicians,@JohnKasich,Looking forward to talking about our new Office of Opportunities for New Americans with @camanpour on @CNNi. Tune in at 2pm. +05/15/2018,Politicians,@JohnKasich,"Today, we’re announcing a new initiative to help legal immigrants successfully integrate into Ohio. Join us at 11am… https://t.co/kGuNwkFutn" +05/15/2018,Politicians,@JohnKasich,Today we recognize Peace Officers Memorial Day and National Police Week by lowering the flags in honor of the tirel… https://t.co/0JTZKOmjLh +05/14/2018,Politicians,@JohnKasich,Violence has no place in our schools — no student should ever feel unsafe in their classrooms. I’m so proud to see… https://t.co/FFXkx9N7zP +05/14/2018,Politicians,@JohnKasich,Thank you! https://t.co/sIFoI4OYbP +05/14/2018,Politicians,@JohnKasich,Proud of the progress Ohio has made to strengthen pathways toward a lower-cost college degree by increasing opportu… https://t.co/5GEjG0VZHc +05/13/2018,Politicians,@JohnKasich,"To all the women blessed with the toughest and most important job out there, happy Mother’s Day! +#MothersDay https://t.co/xuqSzpG7Hz" +05/12/2018,Politicians,@JohnKasich,Great to see! Programs like this are a great way to help the women of the Ohio Reformatory for Women give back and… https://t.co/ARNDagAyuQ +05/12/2018,Politicians,@JohnKasich,"As the weather warms up, it’s important to be aware of the dangers of ticks and the diseases they carry. Some good… https://t.co/O2PS26xN9S" +05/11/2018,Politicians,@JohnKasich,The comments by a White House staffer in regard to Sen. John McCain were just outrageous and totally out-of-line. https://t.co/MPz8EF6Op5 +05/11/2018,Politicians,@JohnKasich,Appreciated the @MichiganPress Association for the invitation to speak at their closing session of their 150th anni… https://t.co/o0Nije9b4A +05/11/2018,Politicians,@JohnKasich,"In-Demand Jobs Week may be coming to an end, but the demand for the jobs we’ve highlighted this week isn't going aw… https://t.co/iKgrOovkG1" +05/10/2018,Politicians,@JohnKasich,“Cincinnati has developed a winning model for collaboration that stretches across political boundaries that will co… https://t.co/LeaUWGGIMK +05/10/2018,Politicians,@JohnKasich,Enjoyed sitting down with @BenWSYX6 yesterday to talk about Ohio’s leadership in autonomous and connected vehicles… https://t.co/glaz5rPBSc +05/09/2018,Politicians,@JohnKasich,"Ohio is cementing its status as a leader in the development of autonomous and connected vehicles – today, I signed… https://t.co/n8QTyCgbkU" +05/09/2018,Politicians,@JohnKasich,Ohio businesses are doing amazing things in the way of developing new technologies for autonomous and connected veh… https://t.co/2JmpWW0eMe +05/09/2018,Politicians,@JohnKasich,RT @SXMPOTUS: Did you miss @PrestonCNN's excellent sit-down with @JohnKasich? It re-airs today 2PM East on @siriusxm Ch. 124. Also On Deman… +05/09/2018,Politicians,@JohnKasich,We’re doing all we can to keep Ohio a leader in developing the cars of the future. Join us at 10:30am on… https://t.co/v3Ez4pfz6z +05/08/2018,Politicians,@JohnKasich,"If you live in Ohio and haven’t voted yet, you still have time! The polls are open until 7:30PM + +Find your polling… https://t.co/Ww6ycazlFG" +05/08/2018,Politicians,@JohnKasich,.@RepCharlieDent defined himself as a problem solver -- and Capitol Hill needs more people like him. While I wish h… https://t.co/Oq0wmTkPiI +05/08/2018,Politicians,@JohnKasich,Gov. John Kasich statement on the withdraw from the Joint Comprehensive Plan of Action #IranDeal https://t.co/VzdxBXt9Bp +05/08/2018,Politicians,@JohnKasich,"We all can think of a teacher that has made a difference in our lives. And right now, teachers across Ohio are doin… https://t.co/8HOp6XprbA" +05/08/2018,Politicians,@JohnKasich,"Today is Election Day in Ohio! Now is your chance to make your voice heard! + +Find your polling location or a sample… https://t.co/WIjgY9v6P1" +05/07/2018,Politicians,@JohnKasich,"If you live in Ohio, I’m asking you to vote YES on State Issue 1 on Tuesday (Election Day). Legislators came togeth… https://t.co/B9rBQ48vAm" +05/07/2018,Politicians,@JohnKasich,"Ohioans, Tuesday is Election Day. We have some really important races to select the candidates for the November ele… https://t.co/K1xksK9L3F" +05/07/2018,Politicians,@JohnKasich,"While opportunities are dwindling nationally for college grads, “local experts said that doesn’t appear to be the c… https://t.co/HxLwxrFIhd" +05/07/2018,Politicians,@JohnKasich,This week is Ohio In-Demand Jobs Week. Ohio is home to so many talented people and it is so important that they're… https://t.co/rrrX9k1Hxw +07/02/2018,Politicians,@marcorubio,It’s only a matter of time before foreign intelligence agencies use high-tech deception of 'deepfake' videos to try… https://t.co/P40VUk4tzd +07/02/2018,Politicians,@marcorubio,"You hate discipline;you cast my words behind you! If you see a thief,you run with him;with adulterers you throw in… https://t.co/t2q98iJyO5" +07/01/2018,Politicians,@marcorubio,"..we commend ourselves as ministers of God, through much endurance,in afflictions, hardships, constraints, beatings… https://t.co/gQk7VjKtY7" +06/30/2018,Politicians,@marcorubio,"More Americans have been evacuated from #China after abnormal sounds & sensations, like the ones which led to previ… https://t.co/NRNCVf7wvR" +06/30/2018,Politicians,@marcorubio,"The LORD is my strength and my shield, in whom my heart trusts. I am helped, so my heart rejoices; with my song I praise him. Psalms 28:7" +06/29/2018,Politicians,@marcorubio,So this is the great deal we have on #ZTE? They replace board members with new directors hand­picked by the control… https://t.co/Dze66E4i2D +06/29/2018,Politicians,@marcorubio,These are the three things we need to do if we’re serious about bringing the immigration issue under control. https://t.co/aDTy3jPkjb +06/29/2018,Politicians,@marcorubio,It’s fine for @POTUS to meet with #Putin. U.S. & Russia possess largest nuclear arsenals in world. But would be a g… https://t.co/XFUiqmv9c0 +06/29/2018,Politicians,@marcorubio,Too often we look to D.C. for the answers. But here is a reminder that most of the important innovations we need to… https://t.co/OnjKp3umg1 +06/29/2018,Politicians,@marcorubio,Claim that departure of @IvankaTrump staffer signals “a likely pullback” from efforts to pass a paid family leave b… https://t.co/i88taxMehI +06/29/2018,Politicians,@marcorubio,Thank you to ⁦@united⁩ ⁦@AmericanAir⁩ & ⁦@Delta⁩ for continuing to refuse #China unreasonable demands. Stay strong. https://t.co/hDHaPM80HV +06/29/2018,Politicians,@marcorubio,#Putin would not be doing us a favor helping curb #Iran military in #Syria. It’s in his interest as well. But know… https://t.co/tf4ffVdtCY +06/29/2018,Politicians,@marcorubio,"Should never forget that #KJU is a sadist with political prison camps & who engages in abductions,torture,forced st… https://t.co/BAfaa9NE3I" +06/29/2018,Politicians,@marcorubio,"Sign of our times... the F word is now routinely used in news stories, tweets etc It’s not even F*** anymore. Who made that decision???" +06/29/2018,Politicians,@marcorubio,"This is a vanity that occurs on earth: There are those who are just but are treated as though they had done evil, a… https://t.co/9B2Pzwr58w" +06/28/2018,Politicians,@marcorubio,"#Putin has influence campaign is to divide us,but #China has an even broader one to create domestic pressure on U.S… https://t.co/Q4gQJcvArr" +06/28/2018,Politicians,@marcorubio,In attacking me #Huawei exec said it “takes decades” to turn research into something marketable. The problem is… https://t.co/NusxTelmEQ +06/28/2018,Politicians,@marcorubio,"With all the fighting going on in America, the one thing I think has bipartisan support is the fact that we have to… https://t.co/PFky4LMF9y" +06/28/2018,Politicians,@marcorubio,It’s not good that people increasingly get news & information only from sources that confirm what they want to hear… https://t.co/gDGjvJvtP4 +06/28/2018,Politicians,@marcorubio,BTW I’m not happy about this reality. It’s terrible for country. Lack of trust in reporting leaves us vulnerable to… https://t.co/3IUNN0Ly7t +06/28/2018,Politicians,@marcorubio,"Of course #Putin continues to deny interfering in our elections. But he did. That is not a matter of opinion, it is an indisputable FACT." +06/28/2018,Politicians,@marcorubio,McCain is hero & patriot. But in 2008 “journalists” who now extol his virtues portrayed him as a madman & the… https://t.co/NwjsJQh5FP +06/28/2018,Politicians,@marcorubio,"Re-upping this tweet from 2 days ago. GOP voters defend Trump when attacked by media,OFTEN DESPITE NOT LIKING WHAT… https://t.co/Yux4zEbpr7" +06/28/2018,Politicians,@marcorubio,".@AxiosAm : “The MEDIA,normally the LAST CHECK on a president with total control of government,HAS LOST THE TRUST O… https://t.co/XlyoKUJNpe" +06/28/2018,Politicians,@marcorubio,Some very good suggestions in this column about how to deal with #China. I filed a bill two months ago that offers… https://t.co/bYw0t8l2go +06/28/2018,Politicians,@marcorubio,"As expected,the reaction of the “usual suspects” to this tweet yesterday either proved my point or missed it. Many… https://t.co/Q7x5yKOCxZ" +06/28/2018,Politicians,@marcorubio,A roaring lion or a ravenous bear is a wicked ruler over a poor people. Proverbs 28:15 +06/27/2018,Politicians,@marcorubio,Read this account of an outrageous theft by #China of an American companies chip design. They do this every day & a… https://t.co/n2uAAaL813 +06/27/2018,Politicians,@marcorubio,I admire Justice Kennedy's frequent calls for greater civility in our discourse. Now I look forward to a fair & tho… https://t.co/csqNzA7xTd +06/27/2018,Politicians,@marcorubio,It is a mistake to pretend the migration & trade fights we are debating in U.S. are unique to us. Europe is having… https://t.co/fhmoJ3wYOV +06/27/2018,Politicians,@marcorubio,Head of #Huawei attacked me for wanting restrictions on their research with our universities. They’ve made fortune… https://t.co/evwcGGhSQi +06/27/2018,Politicians,@marcorubio,I have decided to block the addition of any new amendments to #FarmBill until they either accept the Cruz amendment… https://t.co/nBKc3akOqM +06/27/2018,Politicians,@marcorubio,Stronger CFIUS good for stopping bad deals. But some technologies critical to national security should NEVER be sol… https://t.co/Fuehj7A6n0 +06/27/2018,Politicians,@marcorubio,While we spend our time fighting each other a China-centric technology future is taking shape. If we don’t wake up… https://t.co/plfNF3Iayr +06/27/2018,Politicians,@marcorubio,Many Republicans won’t criticize Trump even when they don’t agree with him b/c it means siding with a media that ne… https://t.co/IIsOwdZuzV +06/27/2018,Politicians,@marcorubio,A Chinese national who lives in Massachusetts as a green card permanent resident was charged with stealing U.S. ant… https://t.co/aK3xhG0o8f +06/27/2018,Politicians,@marcorubio,#China has ordered trade & news outlets to not mention #MadeinChina2025 which is their industrial “master plan” to… https://t.co/X0f3VtQ3mI +06/27/2018,Politicians,@marcorubio,Amazing story about a man in #PuertoRico created a solar-powered generator for families without power https://t.co/C8ufN7p2og +06/27/2018,Politicians,@marcorubio,I am filing a new bill that will ban #China companies from receiving taxpayer funded small business loans from the… https://t.co/VuHqcEsTfp +06/27/2018,Politicians,@marcorubio,"If in fact President Trump is now backtracking on tough limits on Chinese investment, it is a VERY BIG MISTAKE.… https://t.co/VdGvYdCtab" +06/27/2018,Politicians,@marcorubio,Consider the work of God. Who can make straight what God has made crooked? Ecclesiastes 7:13 +06/27/2018,Politicians,@marcorubio,Congratulations to my friend William Timmons on earning the GOP nomination in #SC04 tonight. On to the general elec… https://t.co/gTokePq4cx +06/26/2018,Politicians,@marcorubio,Recurring nightmare of Algae bloom from Lake O is back. Yesterday I passed an amendment in spending bill that requi… https://t.co/NuFBFPIQlU +06/26/2018,Politicians,@marcorubio,South Carolina is voting today - I encourage you to support William Timmons in his runoff election. @votetimmons. #sc04 +06/26/2018,Politicians,@marcorubio,"100% correct: “Individuals emerge out of families, communities,faiths,neighborhoods & nations” not the other way ar… https://t.co/KBwoFGKoj7" +06/26/2018,Politicians,@marcorubio,"We are ALL fiddling during this fire! While we fight with each other,try to out nasty each other & harass each othe… https://t.co/xP0wxzyHUc" +06/26/2018,Politicians,@marcorubio,44 yr old migrant says“I’m not leaving my country because I want to”. She once owned restaurant but gang demanded $… https://t.co/BNfjoGce9B +06/26/2018,Politicians,@marcorubio,Immigration issue is hard b/c our sovereignty requires us to have borders. Our history requires us to remember we a… https://t.co/e5blUl3uoF +06/26/2018,Politicians,@marcorubio,When you have migrants saying “I’d rather be in jail in the U.S. than killed in my own country” it is clear the mos… https://t.co/eBVEdN8hHS +06/26/2018,Politicians,@marcorubio,#ZTE & #Huawei equipment provides #China access to U.S. data flowing through networks. And they also use billions o… https://t.co/BrUmVkxty7 +06/26/2018,Politicians,@marcorubio,"Fear of others becomes a snare, but the one who trusts in the LORD is safe. Proverbs 29:25" +06/26/2018,Politicians,@marcorubio,"Spoke to Sheriff Smith of Franklin County,Florida. 30 to 40 mobile homes destroyed by terrible fire leaving 200 har… https://t.co/kq5WkifUfw" +06/25/2018,Politicians,@marcorubio,After Xi threatened “American” multinational companies saying #China will give preferen­tial treat­ment to com­pa­n… https://t.co/FwMgxR7uym +06/25/2018,Politicians,@marcorubio,#China President Xi told a group of CEO’s from U.S. that “In the West you have the no­tion that if somebody hits yo… https://t.co/dBDhRbs5Z5 +06/25/2018,Politicians,@marcorubio,"Actually, the press got to tour the Homestead facility before either one of us at 10am Friday. DHS offered members… https://t.co/dZMqQICLNi" +06/25/2018,Politicians,@marcorubio,"Liberal harassment of Trump aides & GOP officials will galvanize #GOP base in Nov,but it’s terrible for America. On… https://t.co/1O2PQbNlSF" +06/25/2018,Politicians,@marcorubio,"Wonder if ⁦after @EU_Commission⁩ hit 11 more cronies of #Venezuela dictator @NicolasMaduro⁩ with sanctions,he & tho… https://t.co/xAYpmnzhWn" +06/25/2018,Politicians,@marcorubio,I’m not only one who realizes that many Republicans who don’t agree with everything Trump does are moved to support… https://t.co/CY9euqDkxO +06/25/2018,Politicians,@marcorubio,"Politics on both sides so tribal it reaches dining,entertainment & sports & where being nasty to those on other sid… https://t.co/U76R5qNIcw" +06/25/2018,Politicians,@marcorubio,These incidents of harassing Republicans during private time weren’t organic actions of an outraged public. They we… https://t.co/1agwTXNd56 +06/25/2018,Politicians,@marcorubio,Trump haters still haven’t realized how much they help him with their condescension of those who either voted for h… https://t.co/Q7HaEypu6K +06/25/2018,Politicians,@marcorubio,"I filed bill 2 months ago that does what Trump administration plans to do later this week by executive order,ban… https://t.co/ewzA7jaaeX" +06/25/2018,Politicians,@marcorubio,This is happening. Whether we like it or not the age of automation is well underway. But most policy makers do not… https://t.co/on7tzl9W4c +06/25/2018,Politicians,@marcorubio,"You rocked the earth, split it open; repair the cracks for it totters. You made your people go through hardship, +ma… https://t.co/OYT89Cc15j" +06/24/2018,Politicians,@marcorubio,"LORD,you have probed me,you know me: you know when I sit & stand;you understand my thoughts from afar. You sift thr… https://t.co/UadvVlFK6z" +06/22/2018,Politicians,@marcorubio,Actually more like 2 screaming people who apparently support a release policy that encourges already vulnerable mig… https://t.co/rmu2HMCBVy +06/22/2018,Politicians,@marcorubio,"Won’t be easy to house families together,but we must do it. Because we can never again go back to policy of either… https://t.co/h0Lm9zZess" +06/22/2018,Politicians,@marcorubio,"Should pass bill we filed asap. It creates capacity to hold families together,sets standards for family detention,h… https://t.co/QDLobeilLn" +06/22/2018,Politicians,@marcorubio,Visited Homestead shelter for migrant children. We must make sure they are safe & cared for & held together with pa… https://t.co/rv3DWGzLzY +06/22/2018,Politicians,@marcorubio,Wow what a surprise! Yet another American citizen working at embassy in #Cuba was injured. We have embassies in vir… https://t.co/jWiH40ji8e +06/22/2018,Politicians,@marcorubio,I know for a FACT that @FLOTUS has been a strong voice of compassion for migrant children. The vicious treatment of… https://t.co/Cf51F2i4dW +06/22/2018,Politicians,@marcorubio,We are AMERICA which means no matter the legality of their entry we MUST meet a higher standard in our treatment of… https://t.co/0RujpLqvIn +06/22/2018,Politicians,@marcorubio,ELISHA was filled with his spirit; He worked twice as many marvels & and every utterance of his mouth was wonderful… https://t.co/NO9cV4pa8n +06/21/2018,Politicians,@marcorubio,Charles Krauthammer was a man of extraordinary intellect. Truly one of a kind. The conservative movement & the nati… https://t.co/IExxFpE7rU +06/21/2018,Politicians,@marcorubio,I have already filed a bill that would curb #China investment in industries critical to national security. Once thi… https://t.co/W4ePMxqA9h +06/21/2018,Politicians,@marcorubio,"Here you go, the long arm of China. At least John Oliver is standing up to them after he was censored in #China for… https://t.co/NhlZwnm55V" +06/21/2018,Politicians,@marcorubio,Earlier today I spoke on the Senate Floor about our immigration issues and the need for Congress to act if we want… https://t.co/adw7SszDVp +06/21/2018,Politicians,@marcorubio,I support a generous immigration system. I support responsibly accommodating those who came years ago as children &… https://t.co/rcYqiHFjrX +06/21/2018,Politicians,@marcorubio,Based on Senate speeches Democrat position is: Don’t detain children; Don’t detain their parents either so we don’t… https://t.co/05Svs6IY0y +06/21/2018,Politicians,@marcorubio,Great news! The world is waking up to the #China threat. #Britain just held up a China aerospace deal over national… https://t.co/KE6eVyqTbe +06/21/2018,Politicians,@marcorubio,Wish big business backing #China on tariffs would realize if we continue to allow them to steal our innovations soo… https://t.co/xy9vVkD5Qa +06/21/2018,Politicians,@marcorubio,The tariffs on #China are a #TheftTax & frankly could be more. China is stealing between $300 & $600 BILLION a year… https://t.co/944OFSMtNp +06/21/2018,Politicians,@marcorubio,How exactly does helping save #ZTE give us leverage in broader negotiations with China? Giving in to their demands… https://t.co/nJCCEuoYZk +06/21/2018,Politicians,@marcorubio,"Our Father in heaven, hallowed be your name, your kingdom come, your will be done,on earth as in heaven. Give us to… https://t.co/V6DYc9WBzO" +06/20/2018,Politicians,@marcorubio,Just heard Senate colleague on floor say U.S. detains immigrant children “indefinitely & indiscriminately”. That is… https://t.co/H2oBFWPEgB +06/20/2018,Politicians,@marcorubio,Some Democrats now even using the disingenuous “indefinite detention” term. They know full well that those who unla… https://t.co/29CVzHzrwP +06/20/2018,Politicians,@marcorubio,The ink isn’t even dry on the new executive order ending separation policy & some Democrats already arguing that ke… https://t.co/eBsNHk9wjo +06/20/2018,Politicians,@marcorubio,It is cruel to separate families. But it’s also cruel & irresponsible to return to policy that encourages bringing… https://t.co/iNL9gmn3Oi +06/20/2018,Politicians,@marcorubio,Bill was just filed led by @SenThomTillis & many others like @SenatorFischer The executive order today does NOT tak… https://t.co/ZvcnUEQ64Y +06/20/2018,Politicians,@marcorubio,"Just filed the Keep Families Together Act. While todays reversal of decision to separate families is good,it will b… https://t.co/lWKKYm5E70" +06/20/2018,Politicians,@marcorubio,President just announced the White House is going to do something to keep families together after unlawful entry. W… https://t.co/sFXSu7yjtf +06/20/2018,Politicians,@marcorubio,"Recently, I admitted that I was wrong about a bill I voted for while in the Florida Legislature. Here’s why my new… https://t.co/zkHV3kkpxM" +06/20/2018,Politicians,@marcorubio,#ZTE poses a threat to entire U.S. telecommunication network not just our govt. #China already steals $300 billion… https://t.co/Wap9l1frn6 +06/20/2018,Politicians,@marcorubio,Returning to a policy that only adults with children are released would create an incentive to bring kids. Yes sepa… https://t.co/td1Q2yqme7 +06/20/2018,Politicians,@marcorubio,"Yesterday I had the opportunity to meet with Ethiopian dissident @eskindernega We must support freedom, liberty & d… https://t.co/vgm8anf25z" +06/20/2018,Politicians,@marcorubio,#China get much of their technology by stealing it from the U.S. & by forc­ing U.S. com­pa­nies in China to trans­f… https://t.co/J8f5uBJPID +06/20/2018,Politicians,@marcorubio,"Do not let anger upset your spirit, for anger lodges in the bosom of a fool. Ecclesiastes 7:9" +06/19/2018,Politicians,@marcorubio,"If every Senator is willing to support it by unanimous consent, the Senate could pass a bill, before the end of the… https://t.co/GxhP8c7Eum" +06/19/2018,Politicians,@marcorubio,Led by @JohnCornyn a group of us are finalizing bill that will allow families to be held together pending expedited… https://t.co/JA35DiJYao +06/19/2018,Politicians,@marcorubio,Releasing those who unlawfully enter b/c they came with children creates a cruel incentive to bring children on dan… https://t.co/06qenHFf5J +06/19/2018,Politicians,@marcorubio,"Listen to counsel and receive instruction, +that you may eventually become wise. Proverbs 19:20" +06/18/2018,Politicians,@marcorubio,"Tonight I issued a joint bi-partisan statement with @SenTomCotton, @SenSchumer, @ChrisVanHollen after the Senate to… https://t.co/40mk1yb9iu" +06/18/2018,Politicians,@marcorubio,"#China has a new tactic it is using to pressure people inside the U.S., it is holding U.S. Citizens ‘Hostage’ in Ch… https://t.co/VADPigK0eu" +06/18/2018,Politicians,@marcorubio,Ortega is using the “national dialogue” in #Nicaragua as a stalling tactic to remain in power & leave his wife as t… https://t.co/cNJPWCX8nV +06/18/2018,Politicians,@marcorubio,Currently govt must either release parents & continue incentive for illegal entry with children or separate familie… https://t.co/QZbUP3yPvf +06/18/2018,Politicians,@marcorubio,You are not a god who delights in evil;no wicked person finds refuge with you;the arrogant cannot stand before your… https://t.co/wb7mBjxTUi +06/17/2018,Politicians,@marcorubio,"Fathers, do not provoke your children to anger, but bring them up with the training and instruction of the Lord. Ephesians 6:4" +06/16/2018,Politicians,@marcorubio,"One reaction on the 1st anniversary of Trump's #Cuba policy, we don’t have a bunch of big U.S. corporations all ove… https://t.co/4NxbAq4liC" +06/16/2018,Politicians,@marcorubio,Fatherhood in America is in decline. It comes with responsibilities all fathers need to fulfill. And it has an impo… https://t.co/dtcAsAiihJ +06/16/2018,Politicians,@marcorubio,"#China started trade war blocking U.S. companies,stealing their intellectual property & forcing hand over of techno… https://t.co/omy2wInhnM" +06/16/2018,Politicians,@marcorubio,"But I say to you, love your enemies,& pray for those who persecute you, that you may be children of your heavenly F… https://t.co/wVM2rExlW2" +06/16/2018,Politicians,@marcorubio,Negotiations with Cuba & #NorthKorea are very different. Deal with Cuba was about rewarding dictatorship with diplo… https://t.co/G1stmzZhLw +06/15/2018,Politicians,@marcorubio,"#China issue isn’t just simple trade dispute. They are executing on a masterplan called ""Made in China 2025"" which… https://t.co/9k16GSRZfw" +06/15/2018,Politicians,@marcorubio,"Article doesn’t go far enough. #China isn’t “warning” U.S. companies,it’s threatening them if they don’t lobby hard… https://t.co/Yt3h7uZ7OK" +06/15/2018,Politicians,@marcorubio,What do you think of Kanye West’s new album? https://t.co/w1207wVgZ0 +06/15/2018,Politicians,@marcorubio,"RT @MariaCorinaYA: Senator @marcorubio, we are deeply grateful for your continued support of the Venezuelan people in our struggle for demo…" +06/15/2018,Politicians,@marcorubio,"All of these abuses are being well documented. Not just Maduro, but those running these prisons & even the guards w… https://t.co/TBpyzVHzLy" +06/15/2018,Politicians,@marcorubio,I support the #TheftTax imposed on #China by ⁦@realDonaldTrump⁩ 1000%. They are 211ing our innovations to establish… https://t.co/RC5hRC5LYO +06/15/2018,Politicians,@marcorubio,I admit I had initial reservations about Jim Bridenstine to head up @NASA but I am VERY impressed with the job he i… https://t.co/OdIvghLz7d +06/15/2018,Politicians,@marcorubio,Great news! We were able to increase to this years funding for #StopSchoolViolenceAct programs to $100 million. Ide… https://t.co/Fmkm9SrJSk +06/15/2018,Politicians,@marcorubio,This is an EXCELLENT move by ⁦@realDonaldTrump⁩ most of these technology products from #China are made from technol… https://t.co/QPume6suwp +06/15/2018,Politicians,@marcorubio,Hollywood celebrities never pass up the chance to attack American conservatives but they make their millions on mov… https://t.co/7o4RiUsMJU +06/15/2018,Politicians,@marcorubio,"The heart of the just ponders a response, +but the mouth of the wicked spews evil. Proverbs 15:28" +06/14/2018,Politicians,@marcorubio,"I wonder why this isn’t receiving more focus in the media reports: “In addition,we identified instances where FBI e… https://t.co/cHnLgjSM7B" +06/14/2018,Politicians,@marcorubio,@MariaCorinaYA @SecPompeo .@MariaCorinaYA esta con el pueblo de #Venezuela en su lucha por la libertad. Maduro y su… https://t.co/dPErrMvJuN +06/14/2018,Politicians,@marcorubio,.@MariaCorinaYA stands with the people of #Venezuela in the fight for freedom. Maduro and his cronies should think… https://t.co/wEjuipYRJ6 +06/14/2018,Politicians,@marcorubio,Good for ⁦@AmericanAir⁩ ⁦@united⁩ & ⁦@Delta⁩ for standing up to #China bullying & refusing to cave to demand they c… https://t.co/7CVeZRJQTQ +06/14/2018,Politicians,@marcorubio,I strongly support the great Americans at @FBI⁩ but the conduct of the senior officials outlined in this report has… https://t.co/RQolMBarf5 +06/14/2018,Politicians,@marcorubio,CFIUS is process used to potentially block attempts by foreign companies to do deals which pose a threat to our nat… https://t.co/xVOLOrEEbu +06/14/2018,Politicians,@marcorubio,Continuing to talk about how harsh the penalties are on #ZTE for violating sanctions is a effort to distract from t… https://t.co/7WhC7Ca2Yh +06/14/2018,Politicians,@marcorubio,"Today, we celebrate Old Glory and the 243rd birthday of our U.S. Army. Let us never forget the freedom our flag rep… https://t.co/ze5edNydvd" +06/14/2018,Politicians,@marcorubio,B While in #Florida legislature I voted for a bill that allowed state to suspend professional licenses of those who… https://t.co/yDHG5dYSNJ +06/14/2018,Politicians,@marcorubio,"Some media reactions to @potus comments on #KJU are fair, may others are complete overreaction. But lost in the dai… https://t.co/OtDY4nxNqQ" +06/14/2018,Politicians,@marcorubio,"As I said yesterday in Foreign Relations hearing still time for a peaceful path forward in #Nicaragua + +1. Allow N… https://t.co/Q2GQL5LIjx" +06/14/2018,Politicians,@marcorubio,Alarming increase in #Suicide is a reminder that we have serious problems in our country that are much deeper than… https://t.co/nQreVqnzEL +06/14/2018,Politicians,@marcorubio,"Why are we still giving so much money to the ⁦@UN⁩ ? The General Assembly vote was not just anti #Israel bias,it is… https://t.co/duuVc4BJaY" +06/14/2018,Politicians,@marcorubio,Timeline important. #China wants #NorthKorea talks to be step by step process of simultaneous actions which are syn… https://t.co/vJxk2yNkfe +06/14/2018,Politicians,@marcorubio,"The naive believe everything,but the shrewd watch their steps. Proverbs 14:15" +06/13/2018,Politicians,@marcorubio,BTW @Apple who is very proud of how they are making it harder for American law enforcement to collect evidence from… https://t.co/zQaHTGLMrG +06/13/2018,Politicians,@marcorubio,The next time someone asks “what’s the difference between what China telecomms do & what ours do?” show them this a… https://t.co/cMNjv3TkF0 +06/13/2018,Politicians,@marcorubio,3 months ago blocked foreign purchase of ZTE’s top U.S. supplier b/c it would endanger natl security & cede U.S. pr… https://t.co/EVuwimhPXe +06/13/2018,Politicians,@marcorubio,The current deal with #ZTE does indeed make them pay a big price for violations of #NorthKorea & #Iran sanctions. B… https://t.co/GyokukwRWf +06/13/2018,Politicians,@marcorubio,"Important to remember #ZTE is about 2 seperate issues. +1: Sanctions violations. The penalties imposed for that are… https://t.co/vJBP2I8zQV" +06/13/2018,Politicians,@marcorubio,Watch @FoxNews @AmericaNewsroom at 10AM will discuss how role of @potus & congress on #NorthKorea are different. He… https://t.co/Sgf6u99YfZ +06/13/2018,Politicians,@marcorubio,#EVerify is a very important reform. And while it is true that we struggle to find U.S. workers for many agricultu… https://t.co/ULTa5UjjLn +06/13/2018,Politicians,@marcorubio,Yes the video @potus produced & played for #KJU is unusual. But he was meeting with a different kind of guy. The vi… https://t.co/pTLmy0RpgB +06/13/2018,Politicians,@marcorubio,Drug lord @dcabellor knows full well he has lost many of the things he bought under other names with stolen money.… https://t.co/WvF34p7M2i +06/13/2018,Politicians,@marcorubio,Now is a good time to start getting rid of your #Huawei investments. Because while #ZTE poses a very serious threat… https://t.co/IgML1aPkyZ +06/13/2018,Politicians,@marcorubio,I bless the LORD who counsels me;even at night my heart exhorts me. I keep the LORD always before me; with him at m… https://t.co/yK8dkTNtWe +06/12/2018,Politicians,@marcorubio,"One more thing about KJU. While I know @potus is trying to butter him up to get a good deal, #KJU is NOT a talented… https://t.co/y8ORxuzbye" +06/12/2018,Politicians,@marcorubio,.@NickKristof I’m uncomfortable with suspending military exercises & if this becomes permanent in exchange for noth… https://t.co/qG0lYchgsB +06/12/2018,Politicians,@marcorubio,Any “deal” that doesn’t ultimately bring to an end these atrocities under #KimJongun is not a good deal. https://t.co/jDL3vHDvaD +06/12/2018,Politicians,@marcorubio,Should be skeptical of any deal with #KJU Limits to future strategic weapons instead of eliminating current program… https://t.co/KfuJ74Q5r0 +06/12/2018,Politicians,@marcorubio,"Presidents meeting with #KJU exposed incredible hypocrisy of many in media. When Obama did these things,he was desc… https://t.co/qvL5e7Pttc" +06/12/2018,Politicians,@marcorubio,I too have concerns about how all this with #NorthKorea will turn out. But I don’t recall all the “experts” critici… https://t.co/At5KNDgjad +06/12/2018,Politicians,@marcorubio,"It is true @Potus did what previous administration didn’t do,punish #ZTE for sanctions violations. But this is abou… https://t.co/99UGZAbIoA" +06/12/2018,Politicians,@marcorubio,"How long, O people, will you be hard of heart? Why do you love what is worthless, chase after lies? Psalms 4:3" +06/11/2018,Politicians,@marcorubio,Great news! Our bipartisan amendment restoring penalties on #ZTE is included in the #NDAA bill the Senate will be a… https://t.co/3snOqfbRgB +06/11/2018,Politicians,@marcorubio,The message from latest @ChickfilA incident is this: “Your church can still teach traditional marriage (which by th… https://t.co/BRpJe5Woys +06/11/2018,Politicians,@marcorubio,.@ChickfilA isn’t denying service to anyone. But if you eat there you must be attacked by the twitter mob b/c owner… https://t.co/j8yhdWE8Ig +06/11/2018,Politicians,@marcorubio,This lunacy has gone too far. The CEO of @Twitter bullied into apology for patronizing @ChickfilA because owners su… https://t.co/lBGtZ211Ii +06/11/2018,Politicians,@marcorubio,I STRONGLY support trans-Atlantic alliance & wish ⁦@POTUS⁩ would have dealt with #China before turning to trade wit… https://t.co/qSv0Jzvte8 +06/11/2018,Politicians,@marcorubio,Our #TaiwanTravelAct signed by @potus pushes for more high level visits. Opening of the compound in #Taiwan is perf… https://t.co/6yNXFpKrSo +06/11/2018,Politicians,@marcorubio,"Blessed are the merciful, for they will be shown mercy. Blessed are the clean of heart,for they will see God. Bless… https://t.co/47sYrg8oHM" +06/10/2018,Politicians,@marcorubio,"Thorns & thistles it shall bear for you,& you shall eat the grass of the field. By the sweat of your brow you shall… https://t.co/14jkhnNR5V" +06/08/2018,Politicians,@marcorubio,Many valid points here. Our allies do impose unfair tariffs & non-tariff barriers on us. But we should first have w… https://t.co/sOIyKg34b4 +06/08/2018,Politicians,@marcorubio,One point is missed in this analysis. If #China tech companies use protection given by govt to grab dominance in 5… https://t.co/gSaBzvVtOg +06/08/2018,Politicians,@marcorubio,Here’s some advice for all of the recent high school and college graduates out there. https://t.co/E6KWzbbqaJ +06/08/2018,Politicians,@marcorubio,Please read this story about an amazing family in need of a helping hand & the incredible people who helped them. A… https://t.co/zcMtFr3O8d +06/08/2018,Politicians,@marcorubio,"God indeed is my salvation; I am confident and unafraid. +For the LORD is my strength and my might,and he has been my salvation. Isaiah 12:2" +06/07/2018,Politicians,@marcorubio,"What Kim Jong-un wants from summit is to be viewed as an important world leader that is reasonable,affable & equal… https://t.co/K9IjxBYTO3" +06/07/2018,Politicians,@marcorubio,"As I said 2 days ago,U.S. not going to stand by & allow human rights abusers & those undermining democracy in… https://t.co/TZHCRVd7EJ" +06/07/2018,Politicians,@marcorubio,"If the apps you download to your phone, like Facebook, can access your private information, imagine what a company… https://t.co/WnYa6v0S7l" +06/07/2018,Politicians,@marcorubio,"After todays decision to give #ZTE a pass, we have introduced a bipartisan amendment to restore penalties on ZTE, &… https://t.co/wpbtmOhKNx" +06/07/2018,Politicians,@marcorubio,U.S. has had to evacuate some employees from #China after complaints of mystery illness. And we should have every r… https://t.co/BfYqSAMRP6 +06/07/2018,Politicians,@marcorubio,Next time ⁦@CommerceGov⁩ says problem with #ZTE was only about sanctions violations & that all they make are phones… https://t.co/cmAeFzxOY2 +06/07/2018,Politicians,@marcorubio,Why is #ZTE and #Huawei a big threat? #China already on verge of becoming global leader in 5G. Will have full scale… https://t.co/xXPD95YwVJ +06/07/2018,Politicians,@marcorubio,I’m rooting for the Knights. How about you? https://t.co/5xKA2aEDbn +06/07/2018,Politicians,@marcorubio,I assure you with 100% confidence that #ZTE is a much greater national security threat than steel from Argentina or Europe. #VeryBadDeal +06/07/2018,Politicians,@marcorubio,This “deal” with #ZTE may keep them from selling to Iran and North Korea. That’s good. But it will do nothing to ke… https://t.co/0mAL3UnQoG +06/07/2018,Politicians,@marcorubio,"Hear, O Israel! The LORD is our God, the LORD alone! +Therefore, you shall love the LORD, your God, with your whole… https://t.co/xY04pzRw7P" +06/06/2018,Politicians,@marcorubio,When all is said & done the attacks in #China will prove to be broader than initially suspected & potentially relat… https://t.co/ObDdQ0EIyv +06/06/2018,Politicians,@marcorubio,"Me reuní con líderes de la Coalición Universitaria de Nicaragua y Migueliuth Sandoval, Viuda de Gahona, hablamos so… https://t.co/OVNRuDxOqw" +06/06/2018,Politicians,@marcorubio,"I met with leaders of the Nicaraguan University Coalition and Migueliuth Sandoval, widow of Gahona, SPOKE about the… https://t.co/FtsWcOBbpN" +06/06/2018,Politicians,@marcorubio,"On this day in 1944, 160,000 fearless Allied troops led the charge to beat the reign of Nazi terror. The heroism of… https://t.co/GCw3oDp1KX" +06/06/2018,Politicians,@marcorubio,Why didn’t @facebook just reveal this data sharing deal with #Huawei months ago? And don’t compare this to deals wi… https://t.co/lBNiTe30w5 +06/06/2018,Politicians,@marcorubio,Go here now & donate whatever you can to make @KristiNoem the next Governor of #SouthDakota https://t.co/mIRB6V4pE0 +06/06/2018,Politicians,@marcorubio,.@KristiNoem is a very special person and leader. She is going to be a great Governor for her state. We need to hel… https://t.co/Yq2RUzeXJK +06/06/2018,Politicians,@marcorubio,"RT @JonThompsonGOP: Republicans nominated three strong female candidates for governor tonight: @KristiNoem in SD, @KimReynoldsIA in Iowa, &…" +06/06/2018,Politicians,@marcorubio,#China on the verge of winning again. They mock us by appointing someone from another sanctioned company as the sup… https://t.co/fOgu3YiysH +06/06/2018,Politicians,@marcorubio,The images from #Guatemala after the volcanic eruption are heartbreaking. Today I will be speaking to @StateDept to… https://t.co/5guiAD0kxm +06/06/2018,Politicians,@marcorubio,Very happy for @willainsworthAL With your help he will be the next https://t.co/lD6AKJtTUE of #Alabama https://t.co/GZH1vLNfOe +06/06/2018,Politicians,@marcorubio,This is great news. @RepKristiNoem is going to be a GREAT Governor of #SouthDakota now let’s go help her win in Nov… https://t.co/nulc6AHC5U +06/06/2018,Politicians,@marcorubio,"Show us favor, LORD, show us favor, for we have our fill of contempt. Our souls are more than sated with mockery fr… https://t.co/J6RecEi0am" +06/06/2018,Politicians,@marcorubio,This situation in #Nicaragua has now reached a very dangerous point & could escalate rapidly. Expect to see it take… https://t.co/p7flhp34d6 +06/06/2018,Politicians,@marcorubio,This could be a very big problem. If @Facebook granted Huawei special access to social data of Americans this might… https://t.co/bBeHUv4jA6 +06/05/2018,Politicians,@marcorubio,My batting average on #UFvsFSU jokes is below the Mendoza line but another swing here: cheering on @FSU_Softball as… https://t.co/fh6Razxscf +06/05/2018,Politicians,@marcorubio,.@KristiNoem is a great friend in Congress and has always been a strong supporter. I encourage you to vote for her… https://t.co/EVLWscyCDt +06/05/2018,Politicians,@marcorubio,Alabama - @willainsworthAL will make a great Lieutenant Governor and is a hardworking member of #TeamMarco. Get out… https://t.co/YxmsUACMSc +06/05/2018,Politicians,@marcorubio,"Republicans in Iowa have the chance to nominate a strong, principled conservative for Secretary of Agriculture toda… https://t.co/LR9v3RPu4e" +06/28/2018,Politicians,@SecretaryCarson,Was just joined by @FLGovScott to announce that @HUDgov has approved a disaster recovery plan to help Floridians re… https://t.co/zwLFi88Yus +06/28/2018,Politicians,@SecretaryCarson,"I'm excited that Youngstown, Ohio is going to be a part of @HUDgov's EnVision Center Demonstration.… https://t.co/4NdQa8wZls" +06/27/2018,Politicians,@SecretaryCarson,"Yesterday, I held an EnVision Center round table where we discussed the different services that will be available t… https://t.co/ofhwBO8me4" +06/26/2018,Politicians,@SecretaryCarson,"Educational Advancement, Economic Empowerment, Health and Wellness, and Character and Leadership Development are go… https://t.co/sgSe0UKsNE" +06/26/2018,Politicians,@SecretaryCarson,"Shernitta Jefferson is an inspiration, she went from homeless to homeownership because she had vision for what she… https://t.co/Clbv3LFQkL" +06/26/2018,Politicians,@SecretaryCarson,Excited to work with @DC_Housing and their Executive Director Tyrone Garret on increasing self-sufficiency for HUD-… https://t.co/THmAooneZI +06/26/2018,Politicians,@SecretaryCarson,Participating in an EnVision Center roundtable in Washington DC. Hearing about the great services that will help HU… https://t.co/RGDTIyemLq +06/25/2018,Politicians,@SecretaryCarson,Today HUD approved $5 Billion Texas disaster recovery plan. https://t.co/1C8lDvI6b1 https://t.co/GytqjsUmaR +06/21/2018,Politicians,@SecretaryCarson,I enjoyed speaking to the summer class of White House interns ab leadership. There are many lessons from the medica… https://t.co/mI6irmvvh0 +06/20/2018,Politicians,@SecretaryCarson,I appreciate the opportunity to be with this outstanding group of civil servants at the SES Orientation. At @HUDgov… https://t.co/6b3LpuDWt3 +06/19/2018,Politicians,@SecretaryCarson,This morning I spoke at the #Section3 National Training Conference. I am optimistic that we can bring the promise o… https://t.co/vIXmatkOSm +06/19/2018,Politicians,@SecretaryCarson,We are taking a targeted approach—with each #EnVisionCenter acting as a centealized hub to support four pillars of… https://t.co/99cxrkTGHH +06/19/2018,Politicians,@SecretaryCarson,I’m in Ft. Worth this morning hosting an #EnVisionCenter roundtable with local officials and community stakeholder… https://t.co/HY8QmUZIS6 +06/14/2018,Politicians,@SecretaryCarson,While in Milwaukee I had an opportunity to meet with @MayorOfMKE to discuss the EnVision Center initiative and othe… https://t.co/r4q4JnRch3 +06/14/2018,Politicians,@SecretaryCarson,This afternoon I visited with the wonderful employees at our Milwaukee field office. Thank you for your service!… https://t.co/p9FfTzPrgB +06/14/2018,Politicians,@SecretaryCarson,"As a demonstration of our commitment to the families we serve, to empower Americans to lead self-sufficient lives,… https://t.co/YevPALbcVV" +06/14/2018,Politicians,@SecretaryCarson,Opportunity Zones will improve economic development and entrepreneurship in some of the most economically distresse… https://t.co/PukAdGGWUI +06/14/2018,Politicians,@SecretaryCarson,This afternoon I spoke to the Association of Gospel Rescue Mission’s annual conference about some of the exciting t… https://t.co/jT7Xwjjzn3 +06/14/2018,Politicians,@SecretaryCarson,"Earlier this year, @hudgov gave efforts to end homelessness across the country a boost by making $2 billion availab… https://t.co/pHqv7U8XVC" +06/14/2018,Politicians,@SecretaryCarson,".@hudgov is committed to working with our federal, state, and local partners to end homelessness. Organizations lik… https://t.co/PeXLQZQkSi" +06/14/2018,Politicians,@SecretaryCarson,"Today I’m in Milwaukee, Wisconsin visiting the Guest House of Milwaukee, which provides homeless services and drug… https://t.co/HVm3WwqOSm" +06/13/2018,Politicians,@SecretaryCarson,"I believe in an America where people care about their neighbors, have a strong sense of community, and a well-defin… https://t.co/fKrkVVp8JX" +06/12/2018,Politicians,@SecretaryCarson,We are praying for your success and the success of the United States https://t.co/mUIJ7ifCw2 +06/11/2018,Politicians,@SecretaryCarson,"Today @HUDgov, @TheJusticeDept & @EPA announced a historic agreement with the nation's largest public housing auth… https://t.co/Bfwwu3rrYZ" +06/08/2018,Politicians,@SecretaryCarson,RT @VP: POWERFUL new video from @ONDCP on the #OpioidEpidemic that has touched nearly all Americans. @POTUS is committed to doing all he ca… +06/08/2018,Politicians,@SecretaryCarson,RT @WhiteHouse: These young Americans’ true stories are a warning against the allure of prescription drug abuse. Watch the ad campaign from… +06/08/2018,Politicians,@SecretaryCarson,"Empowering people means taking a holistic approach—helping them with a roof over their heads, but also access to h… https://t.co/AkeIhA3AS5" +06/08/2018,Politicians,@SecretaryCarson,"Today I’m speaking at the @FaithandFreedom Policy Conference. At @HUDgov, we work to help millions of people experi… https://t.co/UTh1UBTSsw" +06/08/2018,Politicians,@SecretaryCarson,Pleased to join @FaithandFreedom and their annual policy conference. https://t.co/oqcFmc1MQ8 +06/08/2018,Politicians,@SecretaryCarson,RT @HUDgov: Congratulations to HUD’s OCIO team who was awarded $20 million for its mainframe application migration acceleration proposal!!… +06/08/2018,Politicians,@SecretaryCarson,"As a recent @BPC_Bipartisan study points out, an extreme case of the health and housing relationship comes with hom… https://t.co/yaAipV6vqY" +06/08/2018,Politicians,@SecretaryCarson,"As a physician, I’ve seen the lasting impacts that lead exposure can have upon the health of children. At @HUDgov,… https://t.co/q5avECtROP" +06/08/2018,Politicians,@SecretaryCarson,RT @BPC_Bipartisan: Live at 10: A conversation with @SecretaryCarson. https://t.co/T8NiZYQuPx +06/07/2018,Politicians,@SecretaryCarson,"Today, @ONDCP & @WhiteHouse unveiled the first set of public awareness ads focused on preventing young adults from… https://t.co/WU02QE3PTs" +06/07/2018,Politicians,@SecretaryCarson,"Speaking at the ground breaking of the Inkster, MI #EnVisionCenter. Together we can help HUD-assisted households cl… https://t.co/XDjhcaxsUN" +06/07/2018,Politicians,@SecretaryCarson,It was a joy to meet with some of the residents who will utilize the services offered at the #EnVisionCenters here… https://t.co/1BKOPjF8J5 +06/07/2018,Politicians,@SecretaryCarson,We are working with the Detroit Housing Commission to launch the second #EnVisionCenter in Detroit. Our people are… https://t.co/WWAfW3z6gS +06/07/2018,Politicians,@SecretaryCarson,RT @HUDgov: #EnVisionCenters Character and Leadership Development connects residents with mentors and helps them climb the ladder of opport… +06/07/2018,Politicians,@SecretaryCarson,"RT @HUDgov: EnVision Centers will provide residents with access to training opportunities, so they may develop a skill set that can lead to…" +06/07/2018,Politicians,@SecretaryCarson,We’re planting a tree at the first #EnVisionCenter launch to celebrate the growth that’s going to happen here. It’s… https://t.co/SobDJNzmH5 +06/07/2018,Politicians,@SecretaryCarson,"RT @HUDgov: To help HUD-assisted families achieve self-sufficiency, residents will have access to educational advancement where they will h…" +06/07/2018,Politicians,@SecretaryCarson,"The EnVision Center demonstration will drive collaboration across federal agencies, state & local governments, non-… https://t.co/rPn7E9FvQu" +06/07/2018,Politicians,@SecretaryCarson,It’s an exciting day here in Detroit. I’m joined by @MayorMikeDuggan @ESPNDrLou & Jerome Bettis for the launch of t… https://t.co/7J9KDEHJRv +06/07/2018,Politicians,@SecretaryCarson,The EnVision Centers will offer HUD-assisted households access to support services that can help them achieve self-… https://t.co/tXyp3Oi9Qo +06/07/2018,Politicians,@SecretaryCarson,"This morning in Detroit, I announced dozens of new EnVision Centers in 17 communities around the country. Learn mor… https://t.co/9C8vtcDE5u" +06/07/2018,Politicians,@SecretaryCarson,About to take the stage with this extraordinary group to launch the #EnVisionCenter demonstration in Detroit. https://t.co/FZtlH5lSON +06/07/2018,Politicians,@SecretaryCarson,I’m with @FOX2News here in Detroit talking about the launch of the first #EnVisionCenter demonstration. Tune in to… https://t.co/knYLfGYt2a +06/07/2018,Politicians,@SecretaryCarson,I’m starting off the morning talking with the @foxandfriends team to announce the @HUDgov EnVision Center initiative. Tune in! +06/05/2018,Politicians,@SecretaryCarson,"The strength of America lies in our democratic values, our civility to one another; where people care about their n… https://t.co/ey0WpRaicr" +06/05/2018,Politicians,@SecretaryCarson,Today I visited with our staff at the Hartford Field Office. They’re doing great work serving the housing needs of… https://t.co/XpJaNUcRVu +06/05/2018,Politicians,@SecretaryCarson,In Hartford today I heard some of the concerns of the residents impacted by the housing issues in this community. I… https://t.co/hNrQtlbU9G +06/04/2018,Politicians,@SecretaryCarson,"RT @HUDgov: In the first 500 days of the Trump Administration, HUD allocated more than $35 billion through the CDBG-Disaster Recovery progr…" +06/04/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD made $2 billion available to support of thousands of local homeless assistance programs nationwide through the Continuum of… +06/04/2018,Politicians,@SecretaryCarson,"RT @HUDgov: During the Trump Administration's first 500 days, more than $1 billion in funding has been allocated to combat the opioid crisi…" +06/04/2018,Politicians,@SecretaryCarson,Today I talked with local stakeholders and government officials who have been working on the crumbling foundation i… https://t.co/AsrYaBzetB +06/04/2018,Politicians,@SecretaryCarson,Today I visited the Perracchio family to see firsthand the kind of crumbling foundation problem that’s been impact… https://t.co/BNILs2E5ix +06/01/2018,Politicians,@SecretaryCarson,Thanking the @HUDgov staff in Greensboro for the great work they do everyday. Our @HUDgov staff doesn’t hear thank… https://t.co/5NuvbMP07z +06/01/2018,Politicians,@SecretaryCarson,Today marks the beginning of National Homeownership Month. You can read @POTUS proclamation here:… https://t.co/PJEi4BdeRZ +06/01/2018,Politicians,@SecretaryCarson,"Today, @HUDgov is announcing the Protect Our Kids!— a Department-wide review & effort to ensure compliance with reg… https://t.co/aa9et4K3aR" +06/01/2018,Politicians,@SecretaryCarson,"I approach this endeavor, lead and other home hazard prevention, with a tremendous sense of purpose, with an enormo… https://t.co/Hb3KI3IJOR" +06/01/2018,Politicians,@SecretaryCarson,Each dollar invested in lead hazard control grants returns at least $17 to the nation. This return is from decrease… https://t.co/Ahxuv78kwu +06/01/2018,Politicians,@SecretaryCarson,".@HUDgov, along with our partners and grantees, is focused on lead and their areas of great concern— asthma prevent… https://t.co/1BZ9uuPZUv" +06/01/2018,Politicians,@SecretaryCarson,.@hudgov is launching a Protect Our Kids! campaign to enforce lead safety rules during #HealthyHomesMonth. I’m in G… https://t.co/NPZXxN9fN7 +06/01/2018,Politicians,@SecretaryCarson,With @RepTedBudd and @GHCGreensboro discussing how making homes healthier is a team effort... we all need to partic… https://t.co/h6ekpuyu0A +06/01/2018,Politicians,@SecretaryCarson,In Greensboro kicking of Healthy Homes Month with @RepTedBudd and @GHCGreensboro https://t.co/NPdDDRmyBw +05/30/2018,Politicians,@SecretaryCarson,"Once a soldier, sailor, airman, marine, or coastguardsman completes his or her tour of duty, we commit to assisting… https://t.co/GleWH1jVQ5" +05/30/2018,Politicians,@SecretaryCarson,.@HUDgov has been working closely with medical centers and the @DeptVetAffairs to address the chronically homeless… https://t.co/5eDngasnpJ +05/30/2018,Politicians,@SecretaryCarson,Veterans experiencing homelessness are the same extraordinary Americans we honor before they had a housing need. We… https://t.co/dyhyGI4UPH +05/30/2018,Politicians,@SecretaryCarson,"We need our veterans to flourish. We need their contributions, their skills, and their love for our country. They a… https://t.co/9lidLddxbS" +05/28/2018,Politicians,@SecretaryCarson,"On Memorial Day, we honor those who we lost while they served us, their remarkable legacy. It inspires us to imitat… https://t.co/fCoO7M99kb" +05/28/2018,Politicians,@SecretaryCarson,"We express our eternal gratitude to the Gold Star Mothers and Wives across our country, who alone know the true cos… https://t.co/PZj3ZCl98B" +05/28/2018,Politicians,@SecretaryCarson,"The lives of our fallen veterans give increased vitality to our national creed, to our founding documents, and to o… https://t.co/tbRUYSvMg4" +05/28/2018,Politicians,@SecretaryCarson,"Today, we pay tribute to the heroes of each generation whose patriotism was complete, whose devotion to duty absolu… https://t.co/KYgHBClSvA" +05/23/2018,Politicians,@SecretaryCarson,RT @SecretaryCarson: Just called to congratulate Brian Montgomery for being confirmed as our new @FHAgov Commissioner https://t.co/8DRcYcNw… +05/23/2018,Politicians,@SecretaryCarson,Just called to congratulate Brian Montgomery for being confirmed as our new @FHAgov Commissioner https://t.co/8DRcYcNwLx +05/23/2018,Politicians,@SecretaryCarson,Thanks to @NAHBhome for hosting me today. Together we can create more affordable housing https://t.co/6gBBXzWml2 +05/23/2018,Politicians,@SecretaryCarson,Talking @NAHBhome’s Chairman Randy Noel about how @HUDgov is focused on empowering Section 3– a job training rule t… https://t.co/lo6uLaySjm +05/23/2018,Politicians,@SecretaryCarson,A priority of our at @HUDgov and @FHAgov is to update our antiquated IT system. First time homebuyers shouldn’t be… https://t.co/mstMpiGdnF +05/23/2018,Politicians,@SecretaryCarson,We are tackling over zealous application of the false claims act for nonmaterial mistakes. We will still ensure the… https://t.co/Hn88QYS4M5 +05/23/2018,Politicians,@SecretaryCarson,I pledge here today to help our nation’s home builders construct more affordable housing https://t.co/c3BnMVMUGL +05/23/2018,Politicians,@SecretaryCarson,"The President’s directive to remove two regulations for every new regulation will help home builders, by reducing h… https://t.co/6uNbgOxZES" +05/23/2018,Politicians,@SecretaryCarson,Speaking to @NAHBhome about how we need to reduce the regulatory burdens that hinder home builders from doing what… https://t.co/EtcZfmH41s +05/21/2018,Politicians,@SecretaryCarson,"At @HUDgov, we’ve established a task force to prevent wasteful spending. Our new CFO is overseeing the team that’s… https://t.co/ZLWogq2Mbu" +05/18/2018,Politicians,@SecretaryCarson,I spoke with the Council for National Policy meeting about @HUDgovs's recent rent reform proposal. The current syst… https://t.co/Qoyxqm8HRu +05/18/2018,Politicians,@SecretaryCarson,This afternoon I had the pleasure of addressing the graduates of @divinemercyuniv at their commencement ceremony. C… https://t.co/tOtCXDUqoI +05/18/2018,Politicians,@SecretaryCarson,I enjoyed talking to my friend @JimDeMint at today's Council for National Policy meeting. We discussed how at… https://t.co/dW4HxXnKGh +05/18/2018,Politicians,@SecretaryCarson,I spoke with the Council for National Policy meeting about @HUDgov's recent rent reform proposal. The curent system… https://t.co/kmXkqo54nW +05/18/2018,Politicians,@SecretaryCarson,"At the Laffer Associates Conference, I discussed @HUD’s goals for increasing economic opportunity among those we se… https://t.co/uwngL2iID1" +05/17/2018,Politicians,@SecretaryCarson,Today I’m pleased to speak to the Laffer Associates annual conference about some of the things we’re working on at… https://t.co/n9ObjoL6Df +05/16/2018,Politicians,@SecretaryCarson,"RT @HUDDepSec: Today, I called Puerto Rico Governor @RicardoRossello, U.S. Virgin Islands @GovernorMapp, Representatives @Jenniffer2012 @St…" +05/16/2018,Politicians,@SecretaryCarson,Today @FHAgov extended our foreclosure moratorium for residents with FHA-insured mortgages in Puerto Rico & the U.S… https://t.co/7tbClLGq9w +05/16/2018,Politicians,@SecretaryCarson,Talking to @nardotrealtor’s about the importance of the #FairHousingAct and thanking them for all they do to suppor… https://t.co/CFbi95Pz5j +05/16/2018,Politicians,@SecretaryCarson,Talking to @nardotrealtor about how @TheJusticeDept and @HUDgov are working together to prevent sexual harassment i… https://t.co/kxphkUXqmT +05/15/2018,Politicians,@SecretaryCarson,https://t.co/3f0dm1vuhM +05/14/2018,Politicians,@SecretaryCarson,"During my trip to West Virginia today, I stopped by @HUDgov’s Charleston field office to meet with our staff. Thank… https://t.co/5XKy6rKOOI" +05/14/2018,Politicians,@SecretaryCarson,.@RecoveryPointWV is doing tremendous work in the fight against the #OpioidEpidemic. I’m so pleased to have visited… https://t.co/bMva4J3J8T +05/14/2018,Politicians,@SecretaryCarson,.@RepAlexMooney @RepEvanJenkins and I visited Rea of Hope today and this organization truly lives up to its name. T… https://t.co/cSEKIhI1hU +05/14/2018,Politicians,@SecretaryCarson,"This morning I had the opportunity to visit with some of the ladies at Rea of Hope. Among other things, this recove… https://t.co/UerkzjYjy3" +05/14/2018,Politicians,@SecretaryCarson,Our people are our greatest resource. I’m with @RepAlexMooney and @RepEvanJenkins learning about the great work… https://t.co/OfoK0frWKz +05/14/2018,Politicians,@SecretaryCarson,This morning I’m at @HarmonyHouseWV with @RepEvanJenkins and @RepAlexMooney discussing some of the impacts of the O… https://t.co/RtJfUUGQ0j +05/10/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD to Seek Public Comment on 'Disparate Impact' Regulation. Learn more → https://t.co/sesnuk7XCz. https://t.co/7vwdU7oZlg +05/09/2018,Politicians,@SecretaryCarson,"Last month, I proposed the Making Affordable Housing Work Act to launch a conversation about how we can fix the way… https://t.co/yIg5L8Dfau" +05/09/2018,Politicians,@SecretaryCarson,"Some of America’s federal rental-assistance programs have become barriers to upward mobility, and we at @HUDgov wan… https://t.co/dwasdhp3DX" +05/09/2018,Politicians,@SecretaryCarson,"RT @WhiteHouse: While our men and women in uniform serve our country on base or abroad, their spouses face many challenges to build familie…" +05/09/2018,Politicians,@SecretaryCarson,We are prioritizing various @HUDgov initiatives that seek to provide pathways to economic opportunity: EnVision Ce… https://t.co/i2oe6vuTM1 +05/09/2018,Politicians,@SecretaryCarson,Today I’m discussing a few of @HUDgov’s priorities with @NECouncil at their Spring Conference https://t.co/WVxcgn3P59 +05/09/2018,Politicians,@SecretaryCarson,At @HudGov our goal is to help people achieve their American Dream. Our recent rent reform proposal is one way we a… https://t.co/CCsbDN0sDC +05/09/2018,Politicians,@SecretaryCarson,"There are better, simpler, and less intrusive ways to administer @HUDgov’s rental assistance programs. The current… https://t.co/vdnHSXbtq8" +05/07/2018,Politicians,@SecretaryCarson,"As we kick off #PSRW, I want to thank all of our @HUDgov family for the work they do to improve the lives of our fe… https://t.co/1P6eWJjnZW" +05/03/2018,Politicians,@SecretaryCarson,Taking questions @CLPHA about how we at @HUDgov are collaborating with other federal agencies to get better outcome… https://t.co/sADXaqbSfJ +05/03/2018,Politicians,@SecretaryCarson,.@HUDgov looks forward to continuing to collaborate with @CLPHA to improve outcomes for the families we serve #HousingIs2018 +05/03/2018,Politicians,@SecretaryCarson,.@HUDgov has recently proposed a set of rent reforms to improve the way we assist the more than 4.5 million people… https://t.co/1X3TZ7oswY +05/03/2018,Politicians,@SecretaryCarson,I have been on the road over the past several days talking to those supported by @HUDgov and one common thing I’ve… https://t.co/75TcJyZ1LP +05/01/2018,Politicians,@SecretaryCarson,I enjoyed speaking with our @HUDgov staff at the Little Rock field office. Thank you for the important work you do… https://t.co/QirqRWUUHu +05/01/2018,Politicians,@SecretaryCarson,"While in Arkansas, I had the chance to visit with a few public housing residents. Our people are our most valuable… https://t.co/5Cn4yoRT78" +05/01/2018,Politicians,@SecretaryCarson,Today I’m in Arkansas with @RepFrenchHill to discuss housing issues impacting the community. https://t.co/nm1jk83LE2 +04/30/2018,Politicians,@SecretaryCarson,I spoke with the @DailySignal about @HUDgov's recent rent reform proposal and some of our other priorities at the a… https://t.co/yxNkzPEweG +04/28/2018,Politicians,@SecretaryCarson,Fair housing is more than a symbolic gesture along the long road to justice. Fair housing is an essential element t… https://t.co/jx63A1n22K +04/28/2018,Politicians,@SecretaryCarson,I am delighted to be with the Maryland Commission on Civil Rights. Tonight we celebrate the golden anniversary of t… https://t.co/ByhWCS1G1W +04/28/2018,Politicians,@SecretaryCarson,During this #FairHousingMonth I had the opportunity to tour exhibits at the Reginald F. Lewis Museum in Baltimore… https://t.co/Xf2k35i1G6 +04/28/2018,Politicians,@SecretaryCarson,"Among our priorities @HUDgov, we’re focusing on policies that help people get out of poverty and empower them towar… https://t.co/uu6BKyzvxg" +04/28/2018,Politicians,@SecretaryCarson,This evening I’m with @Heritage discussing some of the work we’re doing at @HUDgov to serve the American people. https://t.co/ZtfDefqEaW +04/25/2018,Politicians,@SecretaryCarson,Visiting Las Vegas’ Courtyard Homeless Resource Center. They are connecting homeless people with resources that can… https://t.co/m9YnxMCKSr +04/25/2018,Politicians,@SecretaryCarson,Visited Veterans Village a great example of how the govt at all levels the private sector and non profits came toge… https://t.co/twP3DCRG2P +04/25/2018,Politicians,@SecretaryCarson,Toby has graduated from high school while being at the Shannon West Youth Center. It’s amazing what these kids can… https://t.co/br2WNv3Qxv +04/25/2018,Politicians,@SecretaryCarson,Since arriving at the Shannon West Center Daniel has been promoted at his job. He is actively climbing his ladder o… https://t.co/SUd7SH8rI6 +04/25/2018,Politicians,@SecretaryCarson,Doing a round table with leaders and residents from Help of Southern Nevada Shannon West Homeless Youth Center. It’… https://t.co/7gXGKD1e9u +04/25/2018,Politicians,@SecretaryCarson,Touring the Help of South Nevada Shannon West Homeless Youth Center to see the great work they are doing to give ki… https://t.co/ff83jHUgvD +04/25/2018,Politicians,@SecretaryCarson,Was great to do lunch with @mayoroflasvegas she is passionate about increasing access to affordable housing https://t.co/fhuYmawOcW +04/25/2018,Politicians,@SecretaryCarson,"Just met with leaders from Clark County, to discuss how we can work together to promote self-sufficiency and help… https://t.co/9rloAgP5xj" +04/25/2018,Politicians,@SecretaryCarson,Today we’re introducing a proposal to reform decades-old rent rules under the Making Affordable Housing Work Act. L… https://t.co/oacmvNmHJb +04/25/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD is proposing the Making Affordable Housing Work Act. This would change how we help millions of families to afford their ren… +04/25/2018,Politicians,@SecretaryCarson,"RT @HUDgov: Today, @SecretaryCarson proposed to reform decades-old rent rules under the Making Affordable Housing Work Act. Learn more http…" +04/25/2018,Politicians,@SecretaryCarson,Thanking the hard working @HUDgov staff in Nevada. They are invested in helping solve the affordable housing crisis https://t.co/BsEXrTdGOl +04/25/2018,Politicians,@SecretaryCarson,.@HUDgov is positioned to usher in a new era of cooperation with the Manufactured Housing industry. We understand h… https://t.co/Ani4yCp60t +04/25/2018,Politicians,@SecretaryCarson,Manufactured housing accounts for nearly 10% of the market and even a greater share in rural areas. @HUDgov can hel… https://t.co/tDGzxPORgV +04/25/2018,Politicians,@SecretaryCarson,I can tell you without qualification that this Administration appreciates all the manufactured housing industry is… https://t.co/mKv1T8UsuK +04/25/2018,Politicians,@SecretaryCarson,The Manufacrured Housing industry is so important. They are a big part of the solution to the affordable housing cr… https://t.co/ClS375iwG4 +04/25/2018,Politicians,@SecretaryCarson,Thanks for joining me @StracnerHUD. There is great work being done. We must work to amplify it and ensure that more… https://t.co/SiDp7aDuZY +04/24/2018,Politicians,@SecretaryCarson,Participating in a round table with leaders from throughout LA on how we can work together to end homelessness. It’… https://t.co/sWMQO7NwY7 +04/24/2018,Politicians,@SecretaryCarson,Here at South Los Angeles Trade-Tech Community College they are preparing people to work on the expanding light rai… https://t.co/2IP6bUknZT +04/24/2018,Politicians,@SecretaryCarson,Touring some of the job training that’s available at the Los Angeles Trade Tech Community College. This is how we c… https://t.co/azB2R07bkm +04/24/2018,Politicians,@SecretaryCarson,Touring & doing a round table at the Los Angeles Trade-Tech Community College. They are a lead agency for @HUDgov’s… https://t.co/Nl3dd8Ymgx +04/24/2018,Politicians,@SecretaryCarson,Toured the Downtown Women’s Center in LA to witness firsthand the great work they are doing for the community to fi… https://t.co/CnNlq0qdNc +04/24/2018,Politicians,@SecretaryCarson,Mrs Smith is an inspiration. She is formerly homeless and now gives back to the Downtown Women’s Center. Her backgr… https://t.co/HogpXLhtUQ +04/24/2018,Politicians,@SecretaryCarson,Talking to Mrs Smith about how with the help of the Downtown Women’s Center in LA helped her overcome homelessness… https://t.co/U1YU2etZnA +04/24/2018,Politicians,@SecretaryCarson,Touring the Dream Center Foundation in LA. They do great work to help the vulnerable recieve the support they need… https://t.co/UNgATWMGGD +04/24/2018,Politicians,@SecretaryCarson,@kathrynbarger @HUDgov It was a pleasure to meet you. Let’s continue to work together +04/24/2018,Politicians,@SecretaryCarson,Thanking the hardworking @HUDgov staff in the LA office. They work tirelessly to help tackle the local housing cha… https://t.co/LOoTMkRpjt +04/24/2018,Politicians,@SecretaryCarson,It’s a delight to have @StracnerHUD show me around LA today. Together @HUDgov must work with local governments and… https://t.co/4UDQfaUlQD +04/24/2018,Politicians,@SecretaryCarson,Talking with @MRTempower & @SupJaniceHahn about how we all have to work together to end the affordable housing cris… https://t.co/p3kce1Vh68 +04/24/2018,Politicians,@SecretaryCarson,I’m in LA today to work with @kathrynbarger on solutions to our homelessness issue and affordable housing crisis. T… https://t.co/bouGzuAoqF +04/23/2018,Politicians,@SecretaryCarson,"RT @StracnerHUD: ""Despite all the good intentions, our nation’s welfare system continues to encourage a culture of dependency rather than s…" +04/23/2018,Politicians,@SecretaryCarson,"I am grateful for the direct work with those here at @NAHROnational to make services possible, whether it is public… https://t.co/FKBhFeE9MX" +04/23/2018,Politicians,@SecretaryCarson,This morning I’m with @NAHROnational discussing my ongoing priorities for @HUDgov and how we are working together t… https://t.co/OYHLiPVl5s +04/21/2018,Politicians,@SecretaryCarson,Participating in a round table on the impact of lead in our communities. @HUDgov provides funding to help homes rem… https://t.co/7ENuGraRw4 +04/21/2018,Politicians,@SecretaryCarson,"RT @HoustonHealth: Since September 2017, more than 86 homes have been referred to the Houston Health Department’s lead abatement and health…" +04/21/2018,Politicians,@SecretaryCarson,Touring homes in Houston that are going through lead remediation thanks to @HUDgov lead grants. As a doctor I under… https://t.co/3BLLbavQnY +04/21/2018,Politicians,@SecretaryCarson,RT @HoustonHealth: “You are the people that are making a difference.” @SecretaryCarson @HUDgov #LeadFree #HoustonHealth https://t.co/4a8cQ9… +04/21/2018,Politicians,@SecretaryCarson,"These victims of Harvey experienced more than $200k in damage. They lost cars, keepsakes, and many are still strugg… https://t.co/kDXeS45o88" +04/21/2018,Politicians,@SecretaryCarson,W/ @johnculberson meeting Texans who were outside of the flood plan but experienced two plus feet of water in their… https://t.co/gqjwsFzaN8 +04/21/2018,Politicians,@SecretaryCarson,It‘s a joy to volunteer at the Houston Food Bank https://t.co/VVDxBeXfFm +04/21/2018,Politicians,@SecretaryCarson,I’m volunteering at the Houston Food Bank this morning. Volunteerism is a part of what makes America special. We al… https://t.co/ashOPR1iCf +04/21/2018,Politicians,@SecretaryCarson,Talking with @SylvesterTurner this morning at the Houston Food Bank about how we can help Houstonians climb the lad… https://t.co/zZnsbwOn8B +04/21/2018,Politicians,@SecretaryCarson,.@hudgov is going to stand with @SylvesterTurner and Houston as they continue to rebuild from Harvey. HUD has award… https://t.co/Akj4LfIW5A +04/20/2018,Politicians,@SecretaryCarson,.@chucknorris’s @KICKSTART_KIDS helps children develop positive character traits & has helped increase graduation r… https://t.co/80VzJ4w7FM +04/20/2018,Politicians,@SecretaryCarson,Talking with @chucknorris about how @KICKSTART_KIDS and @HUDgov’s EnVision Centers program can stop generational po… https://t.co/bIxWpgxYBf +04/20/2018,Politicians,@SecretaryCarson,.@GHPartnership is interested in how they can work with @hudgov on the long term recovery of Houston after Harvey https://t.co/j6Phwo0H0b +04/20/2018,Politicians,@SecretaryCarson,Talking with the @GHPartnership about how we can work together through public private partnerships to help Houston… https://t.co/BB9Cx07PRW +04/20/2018,Politicians,@SecretaryCarson,Listening to how @HUDgov helped these families find housing by using Housing Choice Vouchers after they lost their… https://t.co/kgdvRnszWO +04/20/2018,Politicians,@SecretaryCarson,.@HUDgov helped these families find housing after their old homes were uninhabitable due to Harvey. The resilience… https://t.co/icIYWpPZ0e +04/20/2018,Politicians,@SecretaryCarson,Listening to families who @HUDgov helped after their homes were flooded during Harvey https://t.co/7Cxf9ye0iG +04/20/2018,Politicians,@SecretaryCarson,Thanking Anthony for driving through water during Harvey to save people in need of rescue due to the floods. Anthon… https://t.co/iIHDkY7xiy +04/20/2018,Politicians,@SecretaryCarson,Thanking @MattressMack and the incredible staff of Gallery Furniture for sheltering 400 people during Hurricane Har… https://t.co/iTY1yaxHNB +04/20/2018,Politicians,@SecretaryCarson,Thanking @MattressMack for all the work he did during Harvey to help those impacted. He is a example of the selfles… https://t.co/49TRUMY8YA +04/20/2018,Politicians,@SecretaryCarson,.@MattressMack showing me where he houses people impacted by Harvey https://t.co/LvZybUGmt0 +04/20/2018,Politicians,@SecretaryCarson,Was a pleasure to be with you @HUDgov will be with as Texas rebuilds https://t.co/N8tMLIuBhb +04/20/2018,Politicians,@SecretaryCarson,Just paid my respects to former First Lady Barbara Bush. My thoughts and prayers are with the entire Bush family. https://t.co/GrPzLkXAdL +04/20/2018,Politicians,@SecretaryCarson,It’s great to see our next generation is so patriotic #USA We are going to work hard to make sure their future is b… https://t.co/DVIFz1jkS7 +04/20/2018,Politicians,@SecretaryCarson,".@HUDgov will stand with the state of Texas as it rebuilds. Texans, not Washington, will determine how the rebuildi… https://t.co/EpsiSZnr8P" +04/20/2018,Politicians,@SecretaryCarson,.@HUDgov’s total investment in Texas post Harvey is $10 billion https://t.co/u6kNoS5ewH +04/20/2018,Politicians,@SecretaryCarson,Excited to be here https://t.co/JNlSjsTmBz +04/20/2018,Politicians,@SecretaryCarson,The first responders in Texas selflessly put others first during Harvey. https://t.co/9sfgnyGhGf +04/20/2018,Politicians,@SecretaryCarson,Chatting with @GovAbbott @SenTedCruz and @CongCulberson ahead of our CDBG-DR announcement. Texans have been resilie… https://t.co/Mk1l3xQdDQ +04/20/2018,Politicians,@SecretaryCarson,Thanking first responder in Texas for their work after Hurricane Harvey. In Texas today to award the Lone Star stat… https://t.co/9IkrwRtw0T +04/19/2018,Politicians,@SecretaryCarson,Visiting the apartments the ASAC Heart of Iowa provides mothers dealing with substance abuse issues. They really he… https://t.co/ILKR1NEIis +04/19/2018,Politicians,@SecretaryCarson,"Visiting ASAC Heart of Iowa, a location that houses and helps mothers recover from substance abuse #OpioidCrisis https://t.co/4002OAM8f9" +04/19/2018,Politicians,@SecretaryCarson,"The #OpiodCrisis is something that we all have face together. State, Federal, & local governments along with non-pr… https://t.co/cy6PfgAk5y" +04/19/2018,Politicians,@SecretaryCarson,Listening to an ASAC resident talk about how the support he is receiving here is changing his life #OpioidCrisis https://t.co/yJwHF4KLFP +04/19/2018,Politicians,@SecretaryCarson,Kicking off the opioid round table at ASAC in Cedar Rapids. To solve the #OpioidCrisis we are all going to have to… https://t.co/EZY2BXWcVz +04/19/2018,Politicians,@SecretaryCarson,Watching a video that details the great work that Area Substance Abuse Council (ASAC). Soon we will begin a round t… https://t.co/lcLQhTn353 +04/19/2018,Politicians,@SecretaryCarson,Today is the 23rd anniversary of the bombing of the Alfred P. Murrah Federal Building in #OklahomaCity. On this da… https://t.co/uEOjtQ7CMd +04/19/2018,Politicians,@SecretaryCarson,Will be in Cedar Rapids today to discuss opioid abuse and what @hudgov is doing to help stop the opioid crisis https://t.co/wetEo5UBmj +04/18/2018,Politicians,@SecretaryCarson,"Like millions of Americans, Barbara Bush was one of my mother's heroes. She will be missed." +04/18/2018,Politicians,@SecretaryCarson,All of @HUdgov's thoughts and prayers are with the Bush family. Former First Lady Barbara Bush was an example of st… https://t.co/bfyNgQoqPh +04/17/2018,Politicians,@SecretaryCarson,I took time this morning to stop by the Children’s House to read to the kids there. It’s always inspiring to see yo… https://t.co/wmNMxA2GuE +04/17/2018,Politicians,@SecretaryCarson,"RT @NSCsafety: Thank you @SecretaryCarson & @HUDDepSec Patenaude of @HUDgov for visiting ""Prescribed to Death: A memorial to the victims of…" +04/17/2018,Politicians,@SecretaryCarson,".@HUDgov has an important role to play in combatting the #opioidcrisis. Last year, approximately 25% of those treat… https://t.co/IUkggDcA4h" +04/17/2018,Politicians,@SecretaryCarson,This morning I’m humbled to visit the @NSCsafety opioid memorial” “Prescribed to Death” at the @WhiteHouse. We all… https://t.co/JhqbVAAQap +04/16/2018,Politicians,@SecretaryCarson,"I joined our dedicated Fair Housing & Equal Opportunity (FHEO) office to visit the “Opening Doors"" exhibit at… https://t.co/E1hHWGzCiP" +07/02/2018,Politicians,@JebBush,Thanks Jersey. We are appreciative. https://t.co/txXriK2AcP +07/02/2018,Politicians,@JebBush,"I hope this is fake news but if not, the congress needs to take a stand. https://t.co/YmoWhsopMy" +07/02/2018,Politicians,@JebBush,No surprise here. https://t.co/44upaAFZfr +07/01/2018,Politicians,@JebBush,Mississippi schools are getting results. Credit to @PhilBryantMS @tatereeves @PhilipGunnMS. Keep getting it done!… https://t.co/0c0fjaDT0n +07/01/2018,Politicians,@JebBush,"Bobby, you made the right decision to take installments at a high % rate. Thank you for bringing a World Series to… https://t.co/8FHnk3tLoj" +07/01/2018,Politicians,@JebBush,Please thank them for their service on behalf of all of us. https://t.co/sCSlbbcPHg +07/01/2018,Politicians,@JebBush,Nicaragua’s bloodshed is worse than Venezuela’s. Where’s the international uproar? https://t.co/whuTGUFhXW +06/30/2018,Politicians,@JebBush,“Retirement costs already 44% of teacher pay in San Francisco” https://t.co/P48vI0PNLl +06/29/2018,Politicians,@JebBush,Bob Luddy has the right approach https://t.co/UtsKGfd28r +06/29/2018,Politicians,@JebBush,"@ABC Very classy, Aaron Judge." +06/29/2018,Politicians,@JebBush,Courageous story of Capital Gazette reporters getting their daily paper out after their colleagues were murdered. https://t.co/SepMTqKCFs +06/29/2018,Politicians,@JebBush,RT @RepKinzinger: The war crimes & horrific attacks are STILL happening in #Syria. We cannot turn a blind eye to the atrocities; we cannot… +06/29/2018,Politicians,@JebBush,RT @ExcelinEd: #ICYMI: @JebBush on What #SCOTUS Union Decision Means for Kids - https://t.co/OA9HA56ftC https://t.co/CwDEFDEJxu +06/29/2018,Politicians,@JebBush,⁦@SteveForbesCEO⁩ makes compelling points https://t.co/CVBenjGOy0 +06/28/2018,Politicians,@JebBush,"#JANUSvsAFSCME is an opportunity for parents, educators and reformers to overcome two of the biggest obstacles to t… https://t.co/44TbYmE4wd" +06/28/2018,Politicians,@JebBush,"RT @CNN: The Supreme Court's union decision is a real opportunity for education reform, writes @JebBush for @CNNOpinion https://t.co/gP2Ksq…" +06/28/2018,Politicians,@JebBush,Here's why the Supreme Court's union decision is a real opportunity for #edreform https://t.co/HEG1op4rHK +06/28/2018,Politicians,@JebBush,@johnrobertsFox @PressSec @SecretService This is crazy. There is no good outcome if we continue down the path of this poisonous environment. +06/28/2018,Politicians,@JebBush,How long will it be before San Fran has a brain drain because of the lack of workers? https://t.co/1iyn9Gq6WA +06/28/2018,Politicians,@JebBush,"At our best, we are bottom up country. When we lose our civic engagement, we lose the best of America. https://t.co/SfrgxcMBAd" +06/28/2018,Politicians,@JebBush,RT @RichLowry: It's funny how life works--Donald Trump may end up being the biggest boon to constitutional fidelity in a generation +06/27/2018,Politicians,@JebBush,I am hopeful that the era of teachers union bosses playing politics w/ our schools will give way to a 21st-century… https://t.co/2y0l9SWhxE +06/27/2018,Politicians,@JebBush,The rage should be against the man in the mirror. https://t.co/pn2aoEP0zU +06/27/2018,Politicians,@JebBush,Congratulations to @WalkerStapleton on a great primary win tonight! He is the proven leader Colorado needs. Onward… https://t.co/MQCVX9qL2Q +06/26/2018,Politicians,@JebBush,'This would widen the trade war tenfold': U.S. automakers say no to Trump's car tariffs via @POLITICO for iOS… https://t.co/Xg8Wr8X2lk +06/26/2018,Politicians,@JebBush,@SalenaZito No they are not. +06/26/2018,Politicians,@JebBush,Great to be with Superintendent @MarkRJohnsonNC today in Raleigh to talk about the future of education for North Ca… https://t.co/t67y8qj6GT +06/26/2018,Politicians,@JebBush,RT @ExcelinEd: Earlier today @JebBush and @MarkRJohnsonNC met with #NC policymakers to discuss bold education policies to help all students… +06/26/2018,Politicians,@JebBush,Bobby raises some good points on school choice. The U.S. broadly respects parental rights—except with regard to sch… https://t.co/DmyGkWOppe +06/26/2018,Politicians,@JebBush,President calls for patience. For how long? https://t.co/N5T9YdFSs9 +06/26/2018,Politicians,@JebBush,Sec Pompeo is reassuring. https://t.co/xEGp4IMKeG +06/26/2018,Politicians,@JebBush,Sully! Thanks to @AmericasVetDogs for this great new addition to the family! https://t.co/evsDTLo9uz +06/26/2018,Politicians,@JebBush,"Congratulations to Frank Brogan, just confirmed as assistant secretary for @usdoegov. He is a phenomenal leader, go… https://t.co/63Nc9msTKW" +06/25/2018,Politicians,@JebBush,Kudos to Senator Toomey for standing on principle. https://t.co/gwUS0SAxyx https://t.co/UXjhPVuvOM +06/25/2018,Politicians,@JebBush,"RT @RichLowry: This is not how it was supposed to work + +https://t.co/syUfx5jJZK" +06/25/2018,Politicians,@JebBush,Totally true https://t.co/vUL66JwDnD +06/25/2018,Politicians,@JebBush,Maxine Waters calls on supporters to confront Trump officials in public spaces https://t.co/nSQKlTiUFB +06/25/2018,Politicians,@JebBush,Great news on Florida's strong fiscal health. Rick Scott deserves credit for his leadership. https://t.co/aYfw6JGy4d +06/24/2018,Politicians,@JebBush,"RT @EWErickson: But bake us cakes, you bigots, or we’ll put you out of business. https://t.co/VjUC6qZq4T" +06/24/2018,Politicians,@JebBush,"1 big thing: In China, a clue to how jobs may go https://t.co/ZYPUxAuuHa" +06/23/2018,Politicians,@JebBush,RT @BarbaraBushFdn: So inspired by these teams and their dedication to creating opportunities for adult learners. #LiteracyNow https://t.co… +06/23/2018,Politicians,@JebBush,"RT @nicadispatch: Students in UNAN Managua say 2 students killed, 5 kidnapped, and 15 injured in government attacks this morning. Attacks o…" +06/23/2018,Politicians,@JebBush,The Normalization of Nazi Analogies  https://t.co/iQrENgTRbE +06/23/2018,Politicians,@JebBush,Scoring 30% on a test is enough to graduate high school in NYC https://t.co/seSpRqJjEi via @nypmetro Let’s Lower the Bar! +06/22/2018,Politicians,@JebBush,The world lost a giant in Charles Krauthammer. This brilliant and decent man was the gold standard of conservative… https://t.co/ar5EkrM03Y +06/20/2018,Politicians,@JebBush,"Refreshing message from Hollywood: ""God is real and prayer gets results."" Amen, brother. @prattprattpratt https://t.co/2CMMJxW0ma" +06/20/2018,Politicians,@JebBush,Democrats shouldn’t use children as a negotiating tool either. https://t.co/7UtG5dG6mZ +06/18/2018,Politicians,@JebBush,Tomorrow @FLGovScott heads to Puerto Rico for his 7th visit post Hurricane Maria. Governor Scott deserves credit fo… https://t.co/4y6ebFMMzt +06/18/2018,Politicians,@JebBush,https://t.co/9WlGAtXbdp +06/18/2018,Politicians,@JebBush,Children shouldn’t be used as a negotiating tool. @realDonaldTrump should end this heartless policy and Congress sh… https://t.co/mvuxTmSEfG +06/18/2018,Politicians,@JebBush,"No Country for American Locker Makers . Hopefully, clearer heads will prevail before we get into a full blown trade… https://t.co/bPiCKFY2LZ" +06/17/2018,Politicians,@JebBush,Great win! https://t.co/uhtU0SC0ep +06/16/2018,Politicians,@JebBush,"Well said: Progressive, affluent parents who send their kids to good schools shouldn’t deny others that right https://t.co/el18PS6Re8" +06/15/2018,Politicians,@JebBush,Congratulations to the 2018 Arts for Life recipients! It was an honor and joy to celebrate these fantastic young Fl… https://t.co/UO67AMF562 +06/15/2018,Politicians,@JebBush,Great. We get the Ocho here in Miami. https://t.co/FAQBEnPWJS +06/15/2018,Politicians,@JebBush,"RT @ExcelinEd: Happy #FlagDay! Today we celebrate the adoption of the flag of the United States, which happened on June 14, 1777! https://t…" +06/15/2018,Politicians,@JebBush,"RT @EWErickson: If one is wrong, the other is too. https://t.co/3cK95cz07x" +06/15/2018,Politicians,@JebBush,"RT @WalshFreedom: If this were a Democrat president saluting a military officer of one of the most brutal, tyrannical, oppressive regimes i…" +06/15/2018,Politicians,@JebBush,RT @DouthatNYT: Comey is such a great character for the drama of a declining republic: The archetypal G-Man hero gradually exposed as a pom… +06/15/2018,Politicians,@JebBush,RT @SenJohnMcCain: Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts to ac… +06/15/2018,Politicians,@JebBush,Will it be on ESPN? https://t.co/yqXonmEAKU +06/13/2018,Politicians,@JebBush,"In China, a picture of how warehouse jobs can vanish https://t.co/585SFd0Wy4" +06/12/2018,Politicians,@JebBush,"RT @CIA: I Want This Job: George H. W. Bush & the CIA + +This video retrospective on Bush's tenure as DCI was shown during a January 29, 2016…" +06/12/2018,Politicians,@JebBush,"RT @CIA: Happy Birthday, President Bush! + +In honor of President George H. W. Bush’s 94th birthday, we released 2 never-before-seen videos…" +06/12/2018,Politicians,@JebBush,"Thank you @purduemitch, for this very kind piece about my Dad on his 94th birthday. Happy birthday, @GeorgeHWBush! https://t.co/1a7BxHlDrr" +06/12/2018,Politicians,@JebBush,Mexico candidate shot while posing for selfie in latest murder of politician | World news | The Guardian https://t.co/FbAbxvKCmA +06/11/2018,Politicians,@JebBush,Their Grandparents Toppled a Dictator. Now They Are the Revolutionaries Time for Ortega to go. https://t.co/VzQykMBF6T +06/10/2018,Politicians,@JebBush,"Venezuela’s Long Road to Hell, by @MaryAnastasiaOG Well Said! https://t.co/8VSyhhuAbn" +06/09/2018,Politicians,@JebBush,How does this keep happening? https://t.co/IVGFbjK5Zt +06/08/2018,Politicians,@JebBush,RT @GeorgeHWBush: Sending our gratitude and family love on this special day to all who are helping carry forward the selfless work of one B… +06/08/2018,Politicians,@JebBush,Teen goes from Bronx homeless shelter to full-ride at MIT https://t.co/CHt4KMLnak via @nypmetro +06/08/2018,Politicians,@JebBush,Protecting our liberty as important today as it was in 1789. https://t.co/ABIMSbqm9X +06/08/2018,Politicians,@JebBush,Latin Americans Against Venezuela: The OAS takes a rare stand against the Havana-Caracas axis. There is broad conse… https://t.co/ckl9Rc9Ybx +06/08/2018,Politicians,@JebBush,What a tragedy https://t.co/IO5GGhL1fk +06/07/2018,Politicians,@JebBush,RT @dcexaminer: Jeb Bush to House GOP: Tackle immigration before November https://t.co/bLoONMqXCS https://t.co/8asyBDxlcF +06/07/2018,Politicians,@JebBush,"I don’t always do morning TV, but when I do, I prefer @SquawkCNBC, one of the more civilized members of the fourth… https://t.co/wid21Rm3eW" +06/06/2018,Politicians,@JebBush,RT @TIMEPolitics: Jeb Bush: Delaying immigration reform is a missed opportunity for Republicans https://t.co/BxIyYjsh95 +06/06/2018,Politicians,@JebBush,"Republican leadership should embrace opportunity to tackle immigration reform, not run from it. https://t.co/NXYYlTfN8S" +06/06/2018,Politicians,@JebBush,Warren's must-see catch of the night https://t.co/CZeOqWb5RN via @espnW Go Noles! +06/05/2018,Politicians,@JebBush,RT @FightExtremism: Updated CEP World Map Profiles Extremism and Counter-Extremism in 55 Countries. Check it out here: https://t.co/ccmIzmw… +06/04/2018,Politicians,@JebBush,"Thanks, @RosLehtinen!! Me too! https://t.co/twwwZDQkif" +06/04/2018,Politicians,@JebBush,Steve Klinsky and I weigh in on incredible opportunity governors have through @modernstatesed to give all students… https://t.co/8iLgo6avio +06/03/2018,Politicians,@JebBush,Kessler is right that how we measure income and GDP should be adjusted based on the new economy. https://t.co/s74DGrnbvd +06/03/2018,Politicians,@JebBush,Cool new resource: @khanacademy just launched its first ever online training just for teachers. #edreform https://t.co/t7O0w0O77A +06/03/2018,Politicians,@JebBush,Great Oaks Have Deep Roots . Jonah is such a great writer and he is so correct we need to get back to being a botto… https://t.co/d0uxWvctZg +06/02/2018,Politicians,@JebBush,"St. Patrick Weeping, Begging for Conversion: A few thoughts from his home away from home in Manhattan. https://t.co/lKWaNo2gYM" +06/02/2018,Politicians,@JebBush,Thank you Senator for staying true to conservative trade policy and understanding America’s leadership role in the… https://t.co/4VDEw2HRpE +06/02/2018,Politicians,@JebBush,I agree with Senator McCain. Good conservative policy is good politics for vulnerable Republicans in swing district… https://t.co/Xi77AzGG86 +06/02/2018,Politicians,@JebBush,Marco Rubio to King's Academy grads: 'Rebel against our modern culture' https://t.co/ludDWEUhjb via @gbennettpost Well done Senator. +06/01/2018,Politicians,@JebBush,Joy Reid apologizes after more controversial blog posts surface via @POLITICO for iOS There really is a double stan… https://t.co/Gj9PGXHWbq +06/01/2018,Politicians,@JebBush,"Florida's Disaster Preparedness Sales Tax Holiday, starting today, is a great opportunity for residents to stock up… https://t.co/5dCAQSCQaa" +06/01/2018,Politicians,@JebBush,Today is the first day of the 2018 Atlantic Hurricane Season. Get a plan! https://t.co/fpb5w9sja4 +06/01/2018,Politicians,@JebBush,RT @GeorgeHWBush: Enjoying a great book and a wonderful walk down memory lane this morning. Yet another reminder of just how lucky I have b… +05/31/2018,Politicians,@JebBush,Private schools flourishing in the “deserts” https://t.co/jCdSdVjYd2 +05/30/2018,Politicians,@JebBush,"Incredible, commendable effort by @Walmart: Walmart to offer employees a college education for $1 a day https://t.co/ZqkHdiOY7J" +05/30/2018,Politicians,@JebBush,Trump signs 'right to try' drug bill https://t.co/Ev9BWbXFFP This will save lives. +05/30/2018,Politicians,@JebBush,"Proud to support my friend Mac McNeill for Jefferson County Sheriff! A military veteran, Mac has an exceptional rec… https://t.co/j0omPsOA20" +05/28/2018,Politicians,@JebBush,Lebron is amazing. we need Lebrons in other parts of life. https://t.co/jSjcpFLQYR +05/28/2018,Politicians,@JebBush,RT @IvanDuque: Quiero darle gracias a Dios y a todos los colombianos que votaron hoy expresando su voluntad por mí y por todos los candidat… +05/28/2018,Politicians,@JebBush,Former CIA Director Gen. Michael Hayden responded with three letters: 'OMG.' https://t.co/ytFAhPl0rT via @MailOnline +05/28/2018,Politicians,@JebBush,"Martin Dempsey, the former chairman of the Joint Chiefs of Staff during the Obama ... https://t.co/33SlYehXY9 via @MailOnline" +05/28/2018,Politicians,@JebBush,"Land of the free, because of the brave. We are forever indebted to those who serve and have served, especially the… https://t.co/Wcz4uq8vYi" +05/26/2018,Politicians,@JebBush,Super-sub Bale earns Real third straight UCL crown - via @ESPN Appn WHAT A GOOOOLLLLL! https://t.co/pB7Gm3HjIf +05/26/2018,Politicians,@JebBush,"RT @GeorgeHWBush: Delighted to join the veterans, including my dear friend Gen. Brent Scowcroft, at the @AmericanLegion Post 159 monthly pa…" +05/26/2018,Politicians,@JebBush,Two great American patriots with other great patriots. https://t.co/WZ89Aq4KIn +05/26/2018,Politicians,@JebBush,"Family drug courts help addicted mothers stay clean, writes @NaomiSRiley Drug courts work. https://t.co/xEvdxVfNdg" +05/23/2018,Politicians,@JebBush,Looking forward to celebrating the Center for Education Reform's 25 years of bold leadership and relentless advocac… https://t.co/rUXDpYMCGd +05/23/2018,Politicians,@JebBush,"A Right To Try Arrives Great legislation, soon to be law. https://t.co/WjNWZZ95ad" +05/22/2018,Politicians,@JebBush,"Trump, the Six Billion Dollar Man* https://t.co/TJtpYctdLA via @WSJOpinion This is how economic growth occurs." +05/22/2018,Politicians,@JebBush,Accountability in education works #edreform https://t.co/o3T18hYoie +05/22/2018,Politicians,@JebBush,Houston Texans’ J.J. Watt to Help Pay for Sante Fe Funerals https://t.co/XTE8T0XULF Impressive but not surprising. +05/20/2018,Politicians,@JebBush,My beloved dad is in Maine. https://t.co/fu6h8Xgg9U +05/20/2018,Politicians,@JebBush,RT @MarioDB: The Venezuelan people deserve much more than today’s sham “elections.” I commend the Administration + U.S. Congress for tough… +05/20/2018,Politicians,@JebBush,RT @marcorubio: This feature in todays @NYT does an excellent job of capturing how the regime of dictator @NicolasMaduro uses access to foo… +05/20/2018,Politicians,@JebBush,"RT @RosLehtinen: Today’s election is a farce, a fraud + disrespects the ppl of #Venezuela who aspire 2 restore democratic order thru free,…" +05/19/2018,Politicians,@JebBush,"Identity politics threatens the American experiment, writes @orrinhatch Words of wisdom from Senator Hatch. https://t.co/qW1S4mHge3" +05/19/2018,Politicians,@JebBush,‘I Don’t Believe That Anymore’ Forstmann and Walton deserve our praise and thanks. https://t.co/32s7W4y1Fa +05/17/2018,Politicians,@JebBush,Congratulations to Gina Haspel. She is a patriot and will continue to serve our nation well. https://t.co/9eh2ZmPr0t +05/16/2018,Politicians,@JebBush,Gaza and Hamas https://t.co/SGK8R7Hdhf via @CFR_org +05/16/2018,Politicians,@JebBush,Seattle to Business: Drop Dead: The city taxes companies for hiring more workers. A counterproductive and dumb idea… https://t.co/yKwsRmlpah +05/16/2018,Politicians,@JebBush,"U.S. sanctions Iran’s central bank governor, alleges he funneled money to Hezbollah. Smart action taken by Treasury… https://t.co/wQb4cOqlX7" +05/16/2018,Politicians,@JebBush,"Venezuela’s crisis and Argentina’s inflation, plus entrenched corruption, are helping fuel an illicit economy worth… https://t.co/EUkWPumvqP" +05/16/2018,Politicians,@JebBush,Very cool. Thanks @HamiltonMusical team! https://t.co/I21TdBJhpC +05/15/2018,Politicians,@JebBush,Totally agree with David French. America's partisan polarization demands a federalist government. https://t.co/1CdYcB3r5D +05/10/2018,Politicians,@JebBush,Good piece by @JohnStossel. Why the Left Hates Betsy DeVos: The secretary of education is fighting government burea… https://t.co/yokeNBaOQX +05/10/2018,Politicians,@JebBush,Powerful message from @BrieIndependent on the need to focus on and engage parents in the education of their childre… https://t.co/HXRQ1ZcOlV +05/09/2018,Politicians,@JebBush,"Bret gets this right. It is important to give credit where it is due, and @POTUS deserves credit on his recent acti… https://t.co/7OKVHNcEPf" +05/09/2018,Politicians,@JebBush,Why start a charter school? @excelined shares 7 powerful examples of changemakers and their drive to expand opportu… https://t.co/ypvn1kbdwr +05/09/2018,Politicians,@JebBush,Credit to @POTUS and @SecPompeo for bringing these Americans home. https://t.co/h77YOO2gHy +05/09/2018,Politicians,@JebBush,"George Deukmejian dead at 89, public safety and law-and-order dominated two-term governor's agenda… https://t.co/wa6Hf4Nlr2" +05/08/2018,Politicians,@JebBush,Charter schools are democracy in action. #CharterSchoolsWeek https://t.co/i08TIAHecc +05/08/2018,Politicians,@JebBush,No shortage of hypocrisy among these famous parents who like their children's handpicked school but oppose educatio… https://t.co/FehIPxFGod +05/08/2018,Politicians,@JebBush,RT @BarbaraBushFdn: We hope our nation's teachers feel special all throughout #TeacherAppreciationWeek but especially today on #TeacherAppr… +05/07/2018,Politicians,@JebBush,Big thanks to @GovernorDeal for signing legislation to expand #educationalopportunities and help students find the… https://t.co/D2QOHhjrKG +05/07/2018,Politicians,@JebBush,"RT @JebBushJr: As a board member of @charteralliance and advocate for high-quality public education, I’m celebrating #CharterSchoolsWeek th…" +05/07/2018,Politicians,@JebBush,Informative look at our changing economy: High-Paying Jobs Go Begging While High School Grads Line Up for Bachelor’… https://t.co/bzjLvMPfOi +05/06/2018,Politicians,@JebBush,Kicking off National #CharterSchoolsWeek and celebrating families like Christopher Collot and his son Jayden. Check… https://t.co/eHaSpDUsG9 +05/06/2018,Politicians,@JebBush,RT @ExcelinEd: .@JebBush: Student Success is at the Heart of National #CharterSchoolsWeek - https://t.co/mlK2tEILk1 https://t.co/Gp1WnNdUW3 +05/05/2018,Politicians,@JebBush,Thanks for all of your prayers. Dad is doing well and headed home. https://t.co/Aq99DV2XDR +05/04/2018,Politicians,@JebBush,We need to ensure more students have access to high quality charter schools #edreform https://t.co/oO0RCXDtsD +05/03/2018,Politicians,@JebBush,Honored to address @UCF commencement exercises today and pay tribute to Dr. Hitt's legacy as one of the most innova… https://t.co/Ny5Y41LQKB +05/03/2018,Politicians,@JebBush,RT @ourmedschool: Governor @JebBush was instrumental in working with the Florida Legislature in approving the @UCF College of Medicine in 2… +05/01/2018,Politicians,@JebBush,Good advice from @CondoleezzaRice for @POTUS https://t.co/1uYbQe62EC +05/01/2018,Politicians,@JebBush,".@BetsyDeVosED is doing a great job advancing #edreform as a national priority. She has a heart for young people, i… https://t.co/uqkYQMCmcf" +05/01/2018,Politicians,@JebBush,We are a bottom up country. We do things better when we don’t outsource our responsibilities to DC. Policy is best… https://t.co/RlCWl4uUfL +05/01/2018,Politicians,@JebBush,RT @ExcelinEd: Our 2017 Annual Report highlights states that are reimagining & reinventing ways to boost student learning. - https://t.co… +04/27/2018,Politicians,@JebBush,Thanks @jaynordlinger for the great conversation. https://t.co/Va63HIuxV3 +04/27/2018,Politicians,@JebBush,Ramesh is right. What the British government is doing to Alfie Evans and his family is almost unbelievable. Why are… https://t.co/c6tAxTCXIM +04/27/2018,Politicians,@JebBush,Great story https://t.co/l2aNvXVX8j +04/27/2018,Politicians,@JebBush,"Senate confirmation is becoming so difficult that the government might soon be unable to function, writes Peter J.… https://t.co/i4lzFcoVC9" +04/26/2018,Politicians,@JebBush,Thanks to the @BrownUniversity community for the kind welcome and great event last evening. Our conversation is ava… https://t.co/uARXpkrosS +04/26/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: We are so thankful for your kind wishes, donations in honor of Barbara Bush and heartfelt tribute messages that you sha…" +04/26/2018,Politicians,@JebBush,"Mike Pompeo is a smart, committed, competent public servant. Glad he has been confirmed to serve as our next Secretary of State." +04/25/2018,Politicians,@JebBush,"“I promise you, 99 percent of the time, if you give parents accurate, transparent information, they will make bette… https://t.co/CYFwVdPplv" +04/25/2018,Politicians,@JebBush,Join me for a conversation with @BrownUniversity students and faculty on the role of leadership in a changing world… https://t.co/h6kn7Y1jqn +04/25/2018,Politicians,@JebBush,Thankful there are so many champions for students and for education reform in the Florida Legislature. Can't wait t… https://t.co/Y72VAaTxez +04/25/2018,Politicians,@JebBush,"RT @GeorgeHWBush: My family and I thank Mayor @SylvesterTurner, his terrific staff, @houstonpolice, @METROHouston, @SBCHouston, @StMartinsD…" +04/25/2018,Politicians,@JebBush,"In preparation for my lecture at @BrownUniversity tonight, I learned there is a ""Boston funk band"" called the ""Jeb… https://t.co/U1IVO0FskE" +04/23/2018,Politicians,@JebBush,"Wonderful, touching piece by James McBride https://t.co/GguHvB7bEd" +04/22/2018,Politicians,@JebBush,"RT @bradmeltzer: Leaving Barbara Bush’s funeral in Houston and LOVE that even now, she was still getting the best laughs. +She hugged AIDS…" +04/22/2018,Politicians,@JebBush,RT @ExcelinEd: Thank you Mrs.Barbara Bush! https://t.co/pHNBR06HAJ +04/22/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: You left each of us so much and taught us about the importance of family, about caring for everyone, about passion for…" +04/21/2018,Politicians,@JebBush,The Bush family is grateful for the thousands and thousands of expressions of condolence and love for our precious… https://t.co/Ank8RSrRyr +04/20/2018,Politicians,@JebBush,Thank you @michaelbhorn for honoring my Mother's lifelong passion for literacy https://t.co/SWFYFbpQpB +04/19/2018,Politicians,@JebBush,Florida’s Rising NAEP Scores Show Education Reforms Are Working for All Students in the State @The74 #edreform https://t.co/xEStnSaLrI +04/18/2018,Politicians,@JebBush,"RT @NBCNews: “I’m so blessed to be her son. She taught us to serve others, she taught us to be civil, she taught us to love your family wit…" +04/18/2018,Politicians,@JebBush,RT @jgm41: Herewith a statement from former President @GeorgeHWBush. https://t.co/USSq5RkD4g +04/18/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: We mourn the passing of Barbara Bush, who believed that the world would be a better place if more people could read, wr…" +04/18/2018,Politicians,@JebBush,"Statement by Governor Jeb Bush on the Passing of Mrs. Barbara Bush +https://t.co/7FXQlMH9Xe" +04/17/2018,Politicians,@JebBush,RT @edreform: #ASUGSV2018 Happening now - Is There an App for That? Transforming the Lives is Low-Literate Adults Through Mobile Tech. Cell… +04/17/2018,Politicians,@JebBush,"Cool innovation from the homebuilding industry: Lennar Building Agrihood, Where Homeowners Can Share Farm Produce https://t.co/82e3aqoxLq" +04/13/2018,Politicians,@JebBush,Mitch Daniels is a true profile in leadership @purduemitch @LifeAtPurdue #edreform #highered https://t.co/WEccBkROsJ +04/12/2018,Politicians,@JebBush,This Man Expects to Run a 2:50 in the Boston Marathon on Monday via @NYTimes Amazing story! https://t.co/EEvjMUfq8x +04/12/2018,Politicians,@JebBush,"It's been 35 years since ""A Nation at Risk"" was released, and America is still plagued by an education system that… https://t.co/2E4hYezyWx" +04/11/2018,Politicians,@JebBush,Thanks to you and Senator Huffman for leading the charge to expand opportunity for Ohio families! #edreform https://t.co/DaE0qOb6jb +04/11/2018,Politicians,@JebBush,"Paul Ryan is a good and honorable man who has governed the House with strong, principled leadership. Grateful for h… https://t.co/lvp7Sdr04e" +04/11/2018,Politicians,@JebBush,Congratulations to my friend Wendy Berger on her appointment to the federal bench. I know she will continue her rec… https://t.co/iyUkyBpX8B +04/10/2018,Politicians,@JebBush,"RT @AFloridaPromise: ""By remaining focused for 2 decades on #earlyreading, #accountability for schools, rewarding great teachers & empoweri…" +04/10/2018,Politicians,@JebBush,Record Donation to https://t.co/Fm7P8E2Ya9 Makes Cryptocurrency Company a Teachers’ Pet https://t.co/t84udNbpWM +04/10/2018,Politicians,@JebBush,Preview of NAEP results coming out this morning: Orlando Sentinel: 'Something very good is happening in Florida'… https://t.co/X3kTw0800P +04/09/2018,Politicians,@JebBush,"Rick Scott has provided strong, conservative leadership for our state throughout his time as governor. Rick's exact… https://t.co/vbUbzyXDxf" +04/06/2018,Politicians,@JebBush,"We disagree about some aspects of MLK’s legacy, but the role of faith is indisputable, write Cornel West &… https://t.co/C3H7s4P1N4" +04/05/2018,Politicians,@JebBush,Billionaire @JBPritzker's top priority in Illinois: kill bipartisan scholarship program for low income students. Th… https://t.co/8MOEfMvGhl +04/05/2018,Politicians,@JebBush,Pleased with today’s ruling in favor of #publiccharterschool funding in #Florida. Big victory for educational freed… https://t.co/vdyKAbabmA +04/04/2018,Politicians,@JebBush,Great news out of College Station: @TAMU @BushSchool Rises in U.S. News & World Report Rankings https://t.co/5FiXpm8sGZ +04/04/2018,Politicians,@JebBush,A Model for Licensing Reform Let freedom ring! https://t.co/Jb3llPpqbA +04/03/2018,Politicians,@JebBush,Jim gets this right https://t.co/tGayCA1ZoE +04/03/2018,Politicians,@JebBush,The President made an excellent choice in tapping Justin Muzinich to help lead the Treasury Department. He is a man… https://t.co/mWxctwICld +04/03/2018,Politicians,@JebBush,"New Report: In 46 States, High School Graduation Requirements Aren’t Enough to Qualify for Nearby Public Universiti… https://t.co/19wwkyIUP5" +04/01/2018,Politicians,@JebBush,A very happy Easter to everyone! https://t.co/r9kBdX4OEh +03/24/2018,Politicians,@JebBush,China accuses US of ‘serious provocation’ in South China Sea https://t.co/hIyzwVUPsW via @SCMP_News These are inter… https://t.co/uoqXWfQtwA +03/24/2018,Politicians,@JebBush,Wayne Huizenga’s passing is a tremendous loss. He was an incredible man and a Florida icon. More than just a trailb… https://t.co/40repdeUNg +03/23/2018,Politicians,@JebBush,The Democrats Abandon Catholics Thank you Cardinal Dolan! https://t.co/4ty120AuhP +03/22/2018,Politicians,@JebBush,"Just spent an incredible day at @ADHUS_FAUHS. One of the most impressive schools in the nation! Students, teachers… https://t.co/EEKGViC1VH" +03/22/2018,Politicians,@JebBush,RT @GeorgeHWBush: Yesterday I was inspired by my friend John Cronin to wear these beauties from @JohnsCrazySocks marking World Down Syndrom… +03/20/2018,Politicians,@JebBush,Excited to visit with members of the @BuckleyProgram at @Yale next week! https://t.co/HchXtdiMe9 +03/19/2018,Politicians,@JebBush,America's Distracted Syria Policy Is on the Rocks | RealClearWorld https://t.co/gpKkU5zB6c +03/17/2018,Politicians,@JebBush,"Arlington, Texas replaces local bus service with Via on-demand ride-sharing https://t.co/PDuBcr5pne via @techcrunch… https://t.co/6YbUs2NSSs" +03/17/2018,Politicians,@JebBush,I hope Floridians have an opportunity to vote for a constitutional amendment that would ensure victims and their fa… https://t.co/2BSNMpoW2n +03/15/2018,Politicians,@JebBush,Absolutely heartbreaking https://t.co/nBI0g6U9xk +07/02/2018,Politicians,@gov_gilmore,Tune in @jfradioshow at 9:05am ET to the Commander of Common Sense - John Fredericks. John and I will discuss the n… https://t.co/hSr7wnxO0v +06/29/2018,Politicians,@gov_gilmore,"RT @librarycongress: #BaseballAmericana + +NOW OPEN! + +https://t.co/LmDKwtuCJn https://t.co/tpVsAIZwF1" +06/27/2018,Politicians,@gov_gilmore,RT @LibnOfCongress: THREE days to the opening of the #BaseballAmericana exhibit at @librarycongress. See amazing items from the Library’s b… +06/26/2018,Politicians,@gov_gilmore,RT @APTA_Transit: #TransitFactFriday #TFF https://t.co/qfpMoI9BfG +06/26/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/HH9WEQQiEb +06/26/2018,Politicians,@gov_gilmore,RT @APTA_info: Read today's @detroitnews opinion piece by APTA President and CEO Paul Skoutelas: #Transit is key to job attraction https:… +06/22/2018,Politicians,@gov_gilmore,RT @ameriopp: Tax Reform -- The Growth Code 2.0 | American Opportunity https://t.co/LfbVkI5OkC +06/22/2018,Politicians,@gov_gilmore,Make the #taxcuts permanent. A winning message for 2018. https://t.co/zKW3W1KUvO +06/19/2018,Politicians,@gov_gilmore,RT @APTA_Transit: The federal government must continue to play a leading role in public transit funding. Read why in the latest from #Voice… +06/18/2018,Politicians,@gov_gilmore,Will join @jfradioshow later this morning at 9:05am ET to discuss making President Trump's Tax Cuts permanent. List… https://t.co/DAXi5kMYao +06/14/2018,Politicians,@gov_gilmore,"RT @USArmy: Happening now at @ArlingtonNatl, a #USArmy Full Honors Wreath Laying ceremony with @ArmyChiefStaff, @SecArmy and @15thSMA in re…" +06/14/2018,Politicians,@gov_gilmore,RT @SFBART: BART put every available car into service for the Warriors parade and it paid off. Watch how BART helped a half million people… +06/14/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: the Continental Congress approves the design for a national flag, 1777 #FlagDay #otd #tih https://t.…" +06/09/2018,Politicians,@gov_gilmore,RT @ameriopp: Investing in #transit is essential to economic growth. https://t.co/ZuVcToAuvk +06/08/2018,Politicians,@gov_gilmore,"RT @WaltonCaps: ZERO WINS TO GO, THE WASHINGTON CAPITALS ARE STANLEY CUP CHAMPIONS!" +06/07/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: Trump Has A Historic Opportunity For Peace On N. Korean Peninsula: https://t.co/43W1kwHq1…" +06/06/2018,Politicians,@gov_gilmore,"RT @DeptofDefense: On June 6, 1944, 160,000+ Allied troops landed at #Normandy, a heavily fortified stretch of French coastline to initiate…" +06/06/2018,Politicians,@gov_gilmore,"RT @SecPompeo: 74 years ago, U.S. & Allied troops landed in Normandy to begin the liberation of Europe. #DDay was the turning point in the…" +06/06/2018,Politicians,@gov_gilmore,Tune in @jfradioshow at 9:05am ET to the Commander of Common Sense - John Fredericks. John and I will discuss the u… https://t.co/BM30wKWcdv +06/06/2018,Politicians,@gov_gilmore,Listen in to @jfradioshow this morning. I will join the show at 9:05am ET. +06/05/2018,Politicians,@gov_gilmore,"RT @APTA_Transit: #Publictransit is easy, even when playing in the #StanleyCupFinals! Just ask @TJOshie77 . + +""It was great. It was actually…" +06/05/2018,Politicians,@gov_gilmore,Time to move forward! #transittuesday @APTA_Transit @APTA_info @aptapolicylab https://t.co/rDWqiji1CL +06/05/2018,Politicians,@gov_gilmore,"RT @gohrt_com: #DidYouKnow Access to public transportation gives people transportation options to get to work, go to school, visit friends,…" +06/03/2018,Politicians,@gov_gilmore,RT @Denver4VA: Thank you to everyone for the overwhelming support and congratulations. I’m honored to be your nominee. Big thank you to all… +06/03/2018,Politicians,@gov_gilmore,A Nation’s infrastructure is a measure of its greatness! @APTA_Transit @APTA_info +05/31/2018,Politicians,@gov_gilmore,RT @FTA_DOT: Private Investment Project Procedures (PIPP) Final Rule describes new procedures to encourage private involvement in transit p… +05/31/2018,Politicians,@gov_gilmore,"⚡️ “Crowds flock to capture the best photo of Manhattanhenge” + +https://t.co/iWeB31v5hN" +05/30/2018,Politicians,@gov_gilmore,"Virginia: Say ""No"" to Medicaid Expansion and More Taxes! @AFPVA The latest Growth PAC commentary:… https://t.co/SZARDDawbT" +05/30/2018,Politicians,@gov_gilmore,Thanks for the time on your show this morning to discuss this important topic for Virginia and the nation.… https://t.co/W8nFeWrfE1 +05/30/2018,Politicians,@gov_gilmore,"Virginia: Say ""No"" to Medicaid Expansion and More Taxes! +https://t.co/ioBsFpXnhH" +05/30/2018,Politicians,@gov_gilmore,Tune in this morning to the John Fredericks Radio Network @jfradioshow - I will join the show at 7:05. Talking Medi… https://t.co/Oav4V4q1sX +05/29/2018,Politicians,@gov_gilmore,"Tune in tomorrow morning (Wed., May 30th at 7:05am ET) @jfradioshow - We will discuss Medicaid expansion in Virgini… https://t.co/Q2BCEjKLZP" +05/29/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/tFkpZ4L63a Former Va Governor, Jim Gilmore: After A Year Of Investigat…" +05/26/2018,Politicians,@gov_gilmore,"RT @usmissiongeneva: At #WHA71, Assistant Secretary Moley @State_IO condemned the draft decision on health conditions in #Palestine and #Go…" +05/25/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly:On North Korea, Keep Sending The Right Message. The North Koreans are objecting to J… https://t.co/f9KbhjWxuI" +05/25/2018,Politicians,@gov_gilmore,"Say ""No"" to #MedicaidExpansion in #Virginia. Follow the lead of @AFPVA. +https://t.co/C5XO6og1qO" +05/25/2018,Politicians,@gov_gilmore,RT @APTA_Transit: We have reached another Transit Fact Friday. Be safe and enjoy the long weekend! #TFF https://t.co/LcpagqX3kz +05/25/2018,Politicians,@gov_gilmore,"RT @ameriopp: Soldiers Place 230,000 US Flags at Arlington National Cemetery | NBC4 Washington https://t.co/jvwc7bTQlY via @nbcwashington" +05/25/2018,Politicians,@gov_gilmore,The latest A/O Newsletter focuses on the N. Korea situation. +05/25/2018,Politicians,@gov_gilmore,"RT @MichaelLeePope: From the @librarycongress: Spectators at #MemorialDay services in @ArlingtonNatl amphitheater, May 1943 #MemorialDayWee…" +05/25/2018,Politicians,@gov_gilmore,RT @MichaelLeePope: Researchers at @VTAgEcon say exporting used clothing and worn textiles is extremely valuable to low-income countries wh… +05/25/2018,Politicians,@gov_gilmore,"RT @librarycongress: What is your go-to #baseball food? + +Our #BaseballAmericana exhibit opens on June 29 and we’re celebrating all things…" +05/25/2018,Politicians,@gov_gilmore,"RT @VVMF: As many are making their way to Washington, D.C. to recognize the sacrifices and contributions made by our veterans, let us never…" +05/24/2018,Politicians,@gov_gilmore,RT @johnmcguire56: My wife Tracy and I enjoyed our time at @gov_gilmore and Roxanne Gilmore’s home for the James River Republican women’s f… +05/24/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/IZiqMA0hXQ Vice Admiral Lee Gunn, USN (Ret.) - Va. Can Be A Leader In…" +05/24/2018,Politicians,@gov_gilmore,RT @jfradioshow: Speaker Kirk Cox: There Needs To Be More Sense Of Urgency On The Budget: https://t.co/2GQszMHuoO via @YouTube +05/24/2018,Politicians,@gov_gilmore,RT @markknoller: Today at the WH. Pres hosts East Room ceremony to present the Medal of Honor to retired Navy SEAL Master Chief Britt Slabi… +05/23/2018,Politicians,@gov_gilmore,"RT @markknoller: ""We have made zero concessions to Kim Jong-un to date, and have no intentions of doing so,"" said @SecPompeo” in testimony…" +05/23/2018,Politicians,@gov_gilmore,RT @FoxNews: Arizona college plants 10K flags to honor the fallen for Memorial Day https://t.co/sxWb3uR6IX +05/23/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: Today, President Trump welcomed @NASCAR Cup Series Champion @MartinTruex_Jr and team to the White House! https://t.co/hLDuC…" +05/22/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly:On North Korea, Keep Sending The Right Message. The North Koreans are objecting to J… https://t.co/fstpwwhCiW" +05/22/2018,Politicians,@gov_gilmore,Later today we'll be releasing our latest newsletter and discussing the potential USA - N. Korean Summit and other… https://t.co/pqBl9sAita +05/22/2018,Politicians,@gov_gilmore,RT @jfradioshow: Coming up next on crazy FBI spyware @CLewandowski_ 8:35; on North Korea @gov_gilmore 9:05 live https://t.co/tIUUQaX1Hp +05/22/2018,Politicians,@gov_gilmore,Will join @jfradioshow later this morning at 9:05am ET to discuss N. Korea. Listen Live: https://t.co/d8G96eNEDm +05/22/2018,Politicians,@gov_gilmore,RT @SpeakerRyan: 67% of Americans believe now is a good time to find a good-paying job—the highest percentage in 17 years. Our thriving eco… +05/21/2018,Politicians,@gov_gilmore,https://t.co/LMH9rKZ2Al +05/16/2018,Politicians,@gov_gilmore,"The more we grow, the more we share. Learn about public transit and other projects at Infrastructure Week 2018 (May… https://t.co/pYgFbm0ZJU" +05/15/2018,Politicians,@gov_gilmore,Infrastructure jobs are good jobs! Learn about the industry at Infrastructure Week 2018 (May 14-21) https://t.co/RjMnlOqENv +05/14/2018,Politicians,@gov_gilmore,A foundation in infrastructure is a foundation in jobs. Learn about federal investment at Infrastructure Week Week… https://t.co/FFZEgsxx8l +05/14/2018,Politicians,@gov_gilmore,"RT @APTA_info: #InfrastructureWeek means jobs, building our community, and means an investment in tomorrow. It is #timetobuild our future.…" +05/14/2018,Politicians,@gov_gilmore,Investment is needed. Learn about infrastructure needs at Infrastructure Week 2018 (May 14-21) https://t.co/Ib8LvcwY1L +05/10/2018,Politicians,@gov_gilmore,@ameriopp Here's to another great #InfrastructureWeek in 2018 @InfraWeek +05/10/2018,Politicians,@gov_gilmore,@ameriopp Transit creates and sustains great jobs all over America. @APTA_info @APTA_Transit @InfraWeek +05/10/2018,Politicians,@gov_gilmore,"RT @ameriopp: In its 6th year, Infrastructure Week is a coalition-led effort. This year Infrastructure Week is May 14th through 21st. https…" +05/10/2018,Politicians,@gov_gilmore,RT @ameriopp: 87 percent of #publictransit trips impact the economy.Trillion Dollar Infrastructure Proposals Could Create Millions of Jobs… +05/10/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/1OBAhsKXmk +05/10/2018,Politicians,@gov_gilmore,"RT @librarycongress: We’re talkin' #baseball & want to hear from YOU! Here is the 2nd question in our #BaseballAmericana conversation: + +Wha…" +05/10/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: ""golden spike"" joins transcontinental railroad at Promontory Point, Utah Territory, 1869 #otd #tih h…" +05/08/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: Last month, the economy added 164,000 new jobs as the unemployment rate fell to 3.9%, cracking 4% for the first time since…" +05/08/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: President Trump was in Cleveland, OH on Saturday talking with local residents about the impact of his Dec. tax cuts legisla…" +05/08/2018,Politicians,@gov_gilmore,"RT @librarycongress: How did YOU become a baseball fan? + +Join the great American conversation during the 9-week countdown to our #Baseball…" +05/08/2018,Politicians,@gov_gilmore,Thank you @VFRWomen for a wonderful evening! https://t.co/3VntAc1mq9 +05/07/2018,Politicians,@gov_gilmore,RT @ameriopp: The State of American Foreign Policy. A/O's 6-part series of essays on ideas to improve our foreign policy. https://t.co/nqWO… +05/07/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/u5MQtl8zZY Former Va Governor, Jim Gilmore: Logan Act, Iran Deal, Mike…" +05/07/2018,Politicians,@gov_gilmore,RT @andrew5047: “What kind of cities do we want to live in?” Listening to @gabe_klein at #APTABus18. There are many ways to answer the ques… +05/07/2018,Politicians,@gov_gilmore,"Hope to see you at the ""Infrastructure Week Rooftop Reception"" in DC https://t.co/7KQCm7UZV6 via @Eventbrite" +05/07/2018,Politicians,@gov_gilmore,RT @jfradioshow: Too much fun: #GodzillaOfTruth coming up #JFRS @DaveBratVA7th 8:05; @JohnWhitbeck 8:35 (oh this will be fun!); @CarlHigbie… +05/04/2018,Politicians,@gov_gilmore,"BCG | To achieve ambitious employment goals, planners must adopt a ""jobs-centric"" approach for prioritizing investm… https://t.co/v0tMWDLA0y" +05/04/2018,Politicians,@gov_gilmore,"RT @APTA_info: ‘Wrench time’ ratchets up: @wmata workers 34% more productive in rebuilding #transit infrastructure, GM says https://t.co/ic…" +05/04/2018,Politicians,@gov_gilmore,"RT @FTA_DOT: June 6 is TCRP DAY, aimed at showcasing how research helps the transit industry & how transit professionals can get involved h…" +05/03/2018,Politicians,@gov_gilmore,RT @librarycongress: The 9-week countdown to our #BaseballAmericana exhibit begins! Baseball is a great community & you’re a part of it. Re… +05/03/2018,Politicians,@gov_gilmore,@librarycongress I became a lifelong NY Yankees fan as a young boy in the mid 1950s when their Triple A team played… https://t.co/sO7ZT7o3f8 +05/03/2018,Politicians,@gov_gilmore,A/O Global Intelligence Weekly: Some Brief Updates On Our Current National Security Condition.... https://t.co/jw36XltZie +05/03/2018,Politicians,@gov_gilmore,Rebuilding our public transportation infrastructure by investing in public transit to promote economic growth w/ co… https://t.co/KDpOjzXtU9 +05/02/2018,Politicians,@gov_gilmore,Editorial: A back-to-basics look at Virginia's budget. Virginia spends most of its money on core services: social w… https://t.co/sad2bnDhNE +05/01/2018,Politicians,@gov_gilmore,RT @LibnOfCongress: On this day 229 years ago George Washington delivered his first inaugural address. Did you know the @librarycongress ha… +05/01/2018,Politicians,@gov_gilmore,RT @ameriopp: ICYMI: The Latest A/O Global Intelligence Weekly from @ameriopp from @gov_gilmore https://t.co/eyUzK5vyON +04/27/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: Union General, 18th US President & successful memoirist U.S. Grant born, 1822 #otd #tih https://t.co…" +04/26/2018,Politicians,@gov_gilmore,"RT @APTA_info: Discover practical #transit solutions from eight new Transit Cooperative Research Program reports, sign up for a free May 3…" +04/26/2018,Politicians,@gov_gilmore,ICYMI: A Blueprint for National Security & @ameriopp's Global Intelligence Newsletter Archive! https://t.co/cW0dNpGCAq +04/24/2018,Politicians,@gov_gilmore,RT @jfradioshow: Congresswoman Barbara Comstock: More Jobs Will Be Available Under The Trump Economy: https://t.co/QbpmVZvJzl via @YouTube +04/24/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/hpPuHIMYey Former Va Governor, Jim Gilmore: Virginians Want To Be Supp…" +04/24/2018,Politicians,@gov_gilmore,"RT @APTA_info: ""@PurpleLineMD Construction Already Sparking Suburban Maryland Office Renaissance,"" reports @Bisnow https://t.co/lwmukABCQr…" +04/24/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: Happy Birthday to us! President John Adams approves establishment of the Library of Congress, 1800 #…" +04/23/2018,Politicians,@gov_gilmore,The United States must be clear that the North Koreans must eliminate their nuclear program. https://t.co/zh8K5d7Ati +04/23/2018,Politicians,@gov_gilmore,@jfradioshow @TimHugo @SpeakerCox @DaveBratVA7th @BarbaraComstock @JobCreatorsUSA Will be #TruckingTheTruth with… https://t.co/MfY6OTcLHY +04/23/2018,Politicians,@gov_gilmore,RT @jfradioshow: Great show today #JFRS #TruckingTheTruth Coming up @TimHugo 7:05; @SpeakerCox 7:35; @DaveBratVA7th 8:05; @BarbaraComstock… +04/20/2018,Politicians,@gov_gilmore,"RT @VP: Congrats Rep Bridenstine on being confirmed as the next @NASA Administrator! Under @POTUS, America will lead in space once again. W…" +04/20/2018,Politicians,@gov_gilmore,RT @RepTomGarrett: DUE TODAY: Our #VA05 offices in @CvilleCityHall and @cityofdanville are accepting submissions for our 2018 Congression… +04/20/2018,Politicians,@gov_gilmore,RT @LincolnsCottage: #getyouamuseumthatcandoboth https://t.co/G8VfLC4Gph +04/20/2018,Politicians,@gov_gilmore,RT @APTA_info: Last chance to register for next hour's free #TCRP webinar on private #transit services and a discussion of ways they may af… +04/19/2018,Politicians,@gov_gilmore,"RT @APTA_Transit: Just over 2 years ago, Congress passed the FAST Act, the first long-term #transportation bill in a decade. See how the #F…" +04/19/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: battles of Lexington & Concord during American Revolution, 1775 #otd #tih https://t.co/H1VeNfUMcm ht…" +04/17/2018,Politicians,@gov_gilmore,The Supreme Court should not reverse internet sales tax law...@quill @NetChoice @GeorgeWill https://t.co/0beKtX5B7c +04/17/2018,Politicians,@gov_gilmore,"RT @ShariBolouri: @gov_gilmore was Chair of the national advisory Commission on electronic Commerce, charged with making recommendations to…" +04/17/2018,Politicians,@gov_gilmore,RT @MineForSale: NetChoice Calls on U.S. Supreme Court to Uphold Current Internet Sales Tax Laws #mining https://t.co/NTNwaIrKYK +04/17/2018,Politicians,@gov_gilmore,"RT @NetChoice: While we wait for oral arguments to start, take a look at our new op-ed, by NetChoice President Steve DelBianco, ""#Amazon wo…" +04/17/2018,Politicians,@gov_gilmore,Discussing online retail at US Supreme Court. Decision expected in June. https://t.co/CbnJpO3F7e +04/17/2018,Politicians,@gov_gilmore,At Supreme Court with former Congressman Chris Cox discussing online retail issues. https://t.co/OQv6OScKuy +04/17/2018,Politicians,@gov_gilmore,RT @lawrencehurley: And on Tuesday the court hears arguments in this big case on sales taxes & online commerce: South Dakota urges Supreme… +04/17/2018,Politicians,@gov_gilmore,RT @PeteWilliamsNBC: I awaken from my long Twitter nap to preview Tuesday's Supreme Court case on Internet sales taxes. https://t.co/5WUg3… +04/16/2018,Politicians,@gov_gilmore,Looking forward to it! https://t.co/wYHb4HqKHL +04/16/2018,Politicians,@gov_gilmore,RT @ameriopp: The Latest @ameriopp Blueprint for America's National Security Strategy (NSS) The national security of the U.S. as set out in… +04/11/2018,Politicians,@gov_gilmore,"@APTA_info @ameriopp continues to address the importance of a federal role in public transportation, with a particu… https://t.co/08rdRqFTvr" +04/11/2018,Politicians,@gov_gilmore,"RT @APTA_info: “In late March, Congress appropriated $13.5 billion for public transit – that’s the largest annual amount of federal #transi…" +04/10/2018,Politicians,@gov_gilmore,"RT @APTA_info: APTA names Ward W. McCarragher as Vice President, Government Affairs. McCarragher has served as Majority/Minority Chief Coun…" +04/09/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: Chemical Attack In Syria: https://t.co/g9iDdQedvh via @YouTube" +04/09/2018,Politicians,@gov_gilmore,Will now join @jfradioshow this morning at 9:40am ET. Discussing the latest on Syria. https://t.co/AYFNBgqxqv +04/09/2018,Politicians,@gov_gilmore,Listen to @jfradioshow this morning. I will join John at 9:05am ET. https://t.co/AYFNBgqxqv +04/06/2018,Politicians,@gov_gilmore,RT @APTA_info: Learn more about public #transit funding in the $1.3 trillion omnibus spending bill -> https://t.co/NSQqgct3E0 #PassengerTra… +04/06/2018,Politicians,@gov_gilmore,RT @APTA_info: Federal grant to grow @Ride_BT fleet in Virginia https://t.co/IZAOwJQc7K #TransitFundingTuesday @YannRanaivo @roanoketimes @… +04/04/2018,Politicians,@gov_gilmore,"RT @librarycongress: As we remember Martin Luther King today, please take a moment to view our exhibition ""The Civil Rights Act of 1964: A…" +04/03/2018,Politicians,@gov_gilmore,RT @dcsportsbog: The Library of Congress digitized more than 1700 of Branch Rickey's scouting reports. This is awesome https://t.co/5Cdi29k… +03/30/2018,Politicians,@gov_gilmore,RT @PaulONeillYES: Baseball is back!! It’s going to be a fun year!!! +03/30/2018,Politicians,@gov_gilmore,A/O Global Intelligence Weekly: Bolton Might Be The Shot In The Arm We Need. https://t.co/uTiJyK3GdD +03/28/2018,Politicians,@gov_gilmore,RT @jfradioshow: Live today #JFRS #TruckingTheTruth on @Amtrak rolling through @AmtrakVA from Danville and Lynchburg to DC! Great views and… +03/27/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: President Trump Signs Budget Bill, Middle East & More...: https://t.co/bQ1Fm2vLpl via @Yo…" +03/26/2018,Politicians,@gov_gilmore,Must boost up our military budget. Listen now @jfradioshow https://t.co/MhlR2YEr2z +03/26/2018,Politicians,@gov_gilmore,RT @jfradioshow: We are live in Atlanta! Coming up on the #GodzillaNetwork #TruckingTheTruth today: Mike Troxel CD 6 Scam update 7:35; @Dav… +03/26/2018,Politicians,@gov_gilmore,"Listen to @jfradioshow this morning at 8:35 ET. Listen live. Download the app. +https://t.co/MhlR2YEr2z" +03/23/2018,Politicians,@gov_gilmore,"RT @APTA_info: All across America, people board public #transit 35 million times each weekday. #InvestInTransit https://t.co/R7xTMIyjdF" +03/22/2018,Politicians,@gov_gilmore,RT @APTA_info: Public #transit leaders lobby Congress to restore federal grants for new projects https://t.co/az7cC2SAVr @PittsburghPG @PGH… +03/22/2018,Politicians,@gov_gilmore,RT @bigleaguestew: The Orioles are making it cheaper (and more fun!) for families to attend games at Camden Yards https://t.co/Pn4KY2fTr4 +03/22/2018,Politicians,@gov_gilmore,"ICYMI A/O Global Intelligence Weekly: A Breakthrough In North Korea? +Yes, ladies and gentlemen -- it is a breakthro… https://t.co/qllqQs88tW" +03/22/2018,Politicians,@gov_gilmore,RT @SEPTANews: A big THANK YOU to #SEPTA crews who were out all day and night clearing platforms and sidewalks throughout our system! #Tack… +03/22/2018,Politicians,@gov_gilmore,@ameriopp @WhiteHouse Trillion Dollar Infrastructure Proposals Could Create Millions of Jobs...These jobs include j… https://t.co/PNEt8AO7wT +03/20/2018,Politicians,@gov_gilmore,RT @APTA_info: House @Transport Subcommittee Chair @RepSamGraves (R-MO) tells #APTAleg18 about upcoming legislation: “You will see the @FTA… +03/20/2018,Politicians,@gov_gilmore,RT @ChamberMoves: Glad to partner with @APTA_Transit to ensure enactment of federal infrastructure modernization bill this year!#APTALEG18… +03/15/2018,Politicians,@gov_gilmore,RT @jfradioshow: Del. Ben Cline: We Have To Be On Our Toes In The 6th District: https://t.co/B6Cw1cCH6Z via @YouTube +03/13/2018,Politicians,@gov_gilmore,"RT @ameriopp: Jobs jump by 313,000 in February, best since July 2016 #JobsReport https://t.co/9XvXGnVO4n https://t.co/qyxrYMjXx4" +03/13/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: ORANGE & BLUE: #MarchMadness tips off today! Get ready for our first game in #Charlotte on Friday as @wahoovoice and @Jef… +03/12/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: Hoos are heading to Charlotte! Take a look at the team's reaction and hear from Coach Bennett ahead of the start of #Marc… +03/12/2018,Politicians,@gov_gilmore,Have a great time John. https://t.co/aviedxNLAu +03/12/2018,Politicians,@gov_gilmore,RT @jfradioshow: Rocking on #JFRS today #TruckingTheTruth in America! @DaveBratVA7th 8:05 am; @AmericaFirstPol Curtis Ellis 8:35; @gov_gilm… +03/09/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly: A Breakthrough In North Korea? +Yes, ladies and gentlemen -- it is a breakthrough th… https://t.co/GTpLnZJZj0" +03/09/2018,Politicians,@gov_gilmore,RT @WaysandMeansGOP: STATEMENT: Chairman @RepKevinBrady on the February 2018 jobs report https://t.co/6iiKUi5J4i ⬇️ https://t.co/rPdQbSy3Of +03/08/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Rise and shine! Our postseason starts today vs. @LouisvilleMBB! +⏰ Noon +📍@barclayscenter +📺 ESPN & ACC Network https://t.c…" +03/06/2018,Politicians,@gov_gilmore,RT @ameriopp: A Nation’s infrastructure is a measure of its greatness. Building a Stronger America https://t.co/5KJKlczJ3A via @whitehouse +03/04/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: A picture is worth a thousand words! #Wahoowa https://t.co/3QKdmPKV7V +03/02/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: A 3⃣ at the buzzer by @Dr_Dre14 is the difference tonight #GoHoos + +👀 at the full Tale of the Tape 👇 https://t.co/qEUaFVg…" +02/27/2018,Politicians,@gov_gilmore,READ: @ameriopp's 5-Part Series on a New American Foreign Policy https://t.co/XdJjaHzdjV +02/21/2018,Politicians,@gov_gilmore,RT @VanHipp: Looking forward to #CPAC #CPAC2018! Can't wait to discuss how we can continue to make America stronger than ever. @realDonaldT… +02/20/2018,Politicians,@gov_gilmore,RT @ameriopp: READ: Jim Gilmore's 5-Part Series on a New American Foreign Policy https://t.co/x907odq8Bd +02/20/2018,Politicians,@gov_gilmore,"RT @BeschlossDC: At White House, JFK and LBJ nervously watch John Glenn’s launch into earth orbit, with Congressional leaders (Boggs, Alber…" +02/19/2018,Politicians,@gov_gilmore,"RT @librarycongress: All things presidential on our social media sites today, #PresidentsDay -- here, presidential pets from our Pinterest…" +02/16/2018,Politicians,@gov_gilmore,RT @cspanhistory: Tune into C-SPAN 3 tomorrow night at 8pm to watch @governorwilder's lecture on modern politics in Richmond at @vcu. Mr. W… +02/16/2018,Politicians,@gov_gilmore,Great show from Richmond @jfradioshow ! https://t.co/qXVBOcX72t +02/15/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/r9XgRk4oLT +02/15/2018,Politicians,@gov_gilmore,"RT @librarycongress: Getting ready for baseball? Pitchers & catchers report today! We're getting ready, too: our #BaseballAmericana exhibit…" +02/14/2018,Politicians,@gov_gilmore,RT @dcexaminer: Treasury wipes 300 IRS regulations off the books https://t.co/K9hp8OWnMH https://t.co/2kVZjfqDDy +02/12/2018,Politicians,@gov_gilmore,RT @TwitterMoments: Former US President Abraham Lincoln was born in Kentucky on this day in 1809. https://t.co/OPkiVZObnj +02/12/2018,Politicians,@gov_gilmore,Listen to @jfradioshow at 7:35am. We will be discussing the issues of the day and foreign policy. #JFRS Listen her… https://t.co/4zwCiz0GR2 +02/12/2018,Politicians,@gov_gilmore,Listen to @jfradioshow at 7:35am tomorrow (Monday). We will be discussing the issues of the day and foreign policy.… https://t.co/zr8HeADJsg +02/10/2018,Politicians,@gov_gilmore,RT @ManchesterGOP: Deepest condolences to the Cataldo family on the passing of Sam Cataldo this past weekend from a fatal car accident. He… +02/10/2018,Politicians,@gov_gilmore,RT @VirginiaSports: Here comes @UVAMensHoops for warmups! #GoHoos #Wahoowa 🔶🔷🏀 https://t.co/T1gOiI6hKp +02/10/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Pregame 🏀 falling! +Hoos vs. Hokies at 6:15. #GoHoos #Wahoowa 🔶🔷 https://t.co/QD5k1j9Q0n" +02/09/2018,Politicians,@gov_gilmore,READ: @ameriopp's 4-Part Series on a New American Foreign Policy https://t.co/XdJjaHzdjV +02/07/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: .@HurdOnTheHill: ""Jeff and Mary Marsh have owned and operated Hinee Coffee in Helotes, Texas for the past seven years.…" +02/07/2018,Politicians,@gov_gilmore,RT @APTA_info: Invest in safe transportation by investing in public #transit. #TransitFundingTuesday https://t.co/mFvJN0X1wA https://t.co/r… +02/07/2018,Politicians,@gov_gilmore,"RT @SteveScalise: Chipotle is paying its employees bonuses thanks to the Tax Cuts & Jobs Act. #TacoTuesday +https://t.co/lNZ5EhGIVJ" +02/05/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Next Saturday, Feb. 10, @CollegeGameDay will be back in JPJ for the third time as No. 2 Virginia hosts the Commonwealth C…" +02/03/2018,Politicians,@gov_gilmore,READ: American Opportunity's 4-Part Series on a New American Foreign Policy @ameriopp #foreignpolicy… https://t.co/hHsU1cWXON +02/02/2018,Politicians,@gov_gilmore,on now with @GibsonRadio https://t.co/vOTSH7Kp5O +02/02/2018,Politicians,@gov_gilmore,Tune in to @GibsonRadio this afternoon. I'll be on at 1:15pm ET. https://t.co/vOTSH7Kp5O +02/01/2018,Politicians,@gov_gilmore,READ: A/O Global Intelligence Weekly: American Foreign Policy (Part 4). A New Direction For America! | American Opp… https://t.co/BIdYOmVXDe +02/01/2018,Politicians,@gov_gilmore,Looking forward to chatting with @jfradioshow again this morning at 8:05am ET. Download his App and listen every m… https://t.co/72QBOJa2cx +01/31/2018,Politicians,@gov_gilmore,Gilmore: Dems 'Closed Both Eyes' on Immigration Issue | https://t.co/kyzNHy8STC https://t.co/JITDFireeH via @Newsmax +01/31/2018,Politicians,@gov_gilmore,Thanks @KattyKayBBC for another interesting analysis on BBC. https://t.co/zk5QpNCaAz +01/31/2018,Politicians,@gov_gilmore,Enjoyed another great segment wirh @TeamCavuto today! https://t.co/GEgmvEhi52 +01/31/2018,Politicians,@gov_gilmore,On with BBC's @KattyKayBBC right now discussing #SOTUResponse +01/31/2018,Politicians,@gov_gilmore,"RT @TeamCavuto: Former Virginia Governor Jim Gilmore (@gov_gilmore) on the FBI's ""grave concerns"" over the release of Devin Nunes' memo: + +""…" +01/31/2018,Politicians,@gov_gilmore,Tune in at 1:25pm ET to @FoxBusiness with @TeamCavuto discussing #StateOfTheUnion and MS-13 https://t.co/NvV1cSISPJ +01/31/2018,Politicians,@gov_gilmore,RT @TeamCavuto: We are covering this and much more NOW on @FoxBusiness https://t.co/H6pgx3kh5U +01/31/2018,Politicians,@gov_gilmore,RT @TeamCavuto: #BreakingNews now on @FoxBusiness: Congressman Trey Gowdy (R-SC) announces he will not run for re-election. https://t.co/hB… +01/31/2018,Politicians,@gov_gilmore,Looking forward to appearing @FoxBusiness with @TeamCavuto this afternoon at 1:25pm ET. Tune in! +01/31/2018,Politicians,@gov_gilmore,RT @ameriopp: @foxandfriends @EricTrump .@ameriopp has been working hard on conservative transportation solutions for more than 20 years. L… +01/31/2018,Politicians,@gov_gilmore,RT @jfradioshow: Dems want you in the pit of misery! #POTUS hits HOME RUN In #SOTU2018 Next up on #JFRS #TruckingTheTruth accross America:… +01/30/2018,Politicians,@gov_gilmore,RT @BillOReilly: I will analyze Trump's State of the Union address live on @Newsmax TV Tuesday night. Spread the word!!! https://t.co/9W9hX… +01/30/2018,Politicians,@gov_gilmore,Tune in now to @NewsmaxTV with @billtuckertv - I'll be discussing #SOTUnion and other news of the day. https://t.co/gCJhGgqu2C +01/30/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: President Trump Is Setting A Change In Direction For The U.S.: https://t.co/nYQn4DMkzz vi…" +01/30/2018,Politicians,@gov_gilmore,RT @gov_gilmore: Latest AO Newsletter (Part 3) on Promoting a New American Foreign Policy! @ameriopp https://t.co/wEPjWMO0IG +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: All across the country, hard-working families are seeing: +✅ Pay raises and bonuses +✅ Businesses hiring more employees…" +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: ICYMI: @RepAndyBarr lauds tax reform in visit with local business owners: ""Comments on the tax act were overwhelmingly…" +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: With our new tax code, you get to take home more of every hard-earned paycheck. Here is where to look on your pay stub…" +01/29/2018,Politicians,@gov_gilmore,"RT @cspan: Internet Policy Conference, @netedfound hosts – LIVE on C-SPAN2 https://t.co/Z6pDFjUgZZ https://t.co/d4SzHyFpmy" +01/29/2018,Politicians,@gov_gilmore,Tune in to @jfradioshow this morning. Download his app. Get the latest news. +01/29/2018,Politicians,@gov_gilmore,RT @jfradioshow: Live from D.C. this week #TruckingTheTruth on #JFRS up next @RepDaveBrat 8:05; @ParisBarns 8:35; @gov_gilmore 9:05 Downloa… +01/27/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: VICTORY: Big plays down the stretch propel 'Hoos to a huge W in Durham! Many more highlights to come! #wahoowa https://t.… +07/01/2018,Politicians,@GovChristie,Tomorrow is a huge day for the Mexico World Cup team as they face Brazil. I believe Juan Carlos Osorio will help hi… https://t.co/sxVP3Eooqr +07/01/2018,Politicians,@GovChristie,The NH GOP is very fortunate to have Wayne McDonald to assume the mantle of leadership in another key election year… https://t.co/isrs12CUXC +06/28/2018,Politicians,@GovChristie,What a fabulous win today for South Korea over an overrated German team in the World Cup. What you truly learn abou… https://t.co/vZHwGRbqvY +06/27/2018,Politicians,@GovChristie,"A heartfelt thank you to Justice Anthony Kennedy for 43 years of service to our nation. Now, I am confident that… https://t.co/yzH6kL7teL" +06/27/2018,Politicians,@GovChristie,A great day for free speech rights of Gov't workers in NJ & around the country--they no longer will pay exorbitant… https://t.co/xfryaQ1lrm +06/17/2018,Politicians,@GovChristie,Great win today by Mexico in the #FIFAWorldCup over a heavily favored German team. Congrats to Coach Juan Carlos Osorio. +06/05/2018,Politicians,@GovChristie,The WaPo story tonight saying I have been asked to help prepare @realDonaldTrump for any interview with Bob Mueller… https://t.co/KDM9Tjpp4D +06/04/2018,Politicians,@GovChristie,Will be on GMA this morning at 7:10am to discuss the legal issues surrounding the Mueller investigation. +05/29/2018,Politicians,@GovChristie,"RT @KevinSabet: Hey @GovMurphy, look up! +#DontLegalizePot + +Cc: @RAMP_NJ @tomamoran https://t.co/QK3pPWQchs" +05/29/2018,Politicians,@GovChristie,"The fake books would be, I thought, a little off putting for an NYT best selling author. But I'll take your word fo… https://t.co/SwKeZrjQIt" +05/28/2018,Politicians,@GovChristie,Congratulations to Steve and to fellow Blue Hen Ciara on your accomplishment. A great place to go to school. Go Blu… https://t.co/bh5kntnXj2 +05/28/2018,Politicians,@GovChristie,"Today we should all take some time to remember those who served our country in the military, past & present. The sa… https://t.co/FsXxYyjcfr" +05/21/2018,Politicians,@GovChristie,Exactly @NDMikeBrey. These five young men acted as big brothers to our daughter .@SarahChristie23 for the last four… https://t.co/nHNITFILBW +05/15/2018,Politicians,@GovChristie,"Meet the nun Jimmy Kimmel caricatured, writes @wjmcgurn; So agree with Bill McGurn--I urge Jimmy Kimmel to make it… https://t.co/Li6uz2RFCJ" +05/14/2018,Politicians,@GovChristie,A great day for the rights of states and their people to make their own decisions. New Jersey citizens wanted sport… https://t.co/hGJddOBs7u +05/10/2018,Politicians,@GovChristie,Great recognition for one of the best Governors in America--@MassGovernor Charlie Baker https://t.co/cuhoSfbwqM +05/03/2018,Politicians,@GovChristie,"RT @FrankALuna: Life comes at you fast... + +@tomamoran on 4/27: ""Not a single factual correction has been required for any column I wrote on…" +04/29/2018,Politicians,@GovChristie,The performance at the WHCD was awful. Her pounding of .@PressSec and .@KellyannePolls was mean spirited and not fu… https://t.co/M9GhX4I1Y5 +04/28/2018,Politicians,@GovChristie,Thanks to .@FLOTUS for caring so much about this crisis and lending her voice to the fight to save lives in America. https://t.co/geOcBKbwgb +04/28/2018,Politicians,@GovChristie,.@PhillySteaks--you have great folks working for all the customers there on a Friday night. https://t.co/WFLMQrxreL +04/28/2018,Politicians,@GovChristie,Just made a quick visit to @PhillySteaks to bring some to North Jersey for the family. Thanks to all the folks ther… https://t.co/KE7dEwyskX +04/27/2018,Politicians,@GovChristie,A great week of having @FLOTUS on the world stage making us proud and celebrating her birthday too! Happy birthday. https://t.co/MBNYQEM4ju +04/27/2018,Politicians,@GovChristie,Take back day is incredibly important to eliminate these drugs for diversion and misuse. Thanks to @realDonaldTrump… https://t.co/wf7ZybbGV2 +04/25/2018,Politicians,@GovChristie,"@PoliticalStile As for your other typically snarky, non-fact based commentary, I feel bad for you, as I always have… https://t.co/E5RLAv6dQ1" +04/25/2018,Politicians,@GovChristie,@PoliticalStile My criticism of Jim is based on his performance on the HRC email probe. No right to have a presser… https://t.co/KOrBqI80dy +04/25/2018,Politicians,@GovChristie,@mattkatz00 I have consistently criticized Jim's performance regarding the Clinton e-mail investigation since his p… https://t.co/D9yPE3sDpe +04/25/2018,Politicians,@GovChristie,Once again...a class act https://t.co/E02Wy7Lfpk +04/24/2018,Politicians,@GovChristie,Prayers for President Bush 41 from me and Mary Pat. We are sure his heart is heavy and his sorrow profound--it can'… https://t.co/QefDVE6WZH +04/18/2018,Politicians,@GovChristie,Mary Pat and I wish the entire Bush family our condolences on the loss of the one and only Barbara Bush. A great Fi… https://t.co/xcJFcU7bcy +04/15/2018,Politicians,@GovChristie,I think it’s unfortunately obvious that Jim Comey began to believe his own press clippings. It's the biggest danger… https://t.co/HJY47cddkz +04/15/2018,Politicians,@GovChristie,There's a rule at Justice that 60 days before an election you do nothing about somebody who is going to be on the b… https://t.co/4Prq7WXD7G +04/15/2018,Politicians,@GovChristie,What he's proving in his interview is that the president may have been right to fire him. Don't agree with how it… https://t.co/0KWPvbi2SZ +04/15/2018,Politicians,@GovChristie,We're not supposed to care about politics as prosecutors. But what we find out from his interview is that he did. T… https://t.co/1spCeR3ypM +04/15/2018,Politicians,@GovChristie,"When I worked for Jim Comey, if I had told him 11 days before an election that I was releasing information that cou… https://t.co/wLsQWvR3LU" +04/14/2018,Politicians,@GovChristie,Please tune in tomorrow morning to @ThisWeekABC as I give my unvarnished views on Jim Comey and his interview with… https://t.co/4QHSFTz1tR +04/11/2018,Politicians,@GovChristie,"The nation owes real thanks to Speaker Paul Ryan for stepping up to lead the House and for his honest, forthright l… https://t.co/KTsgAt61Mm" +04/11/2018,Politicians,@GovChristie,RT @GStephanopoulos: Quite a day with Jim @Comey. You'll see it all on Sunday @ABC. https://t.co/d2K9AqaOz6 +04/10/2018,Politicians,@GovChristie,Will be on @GMA this morning with @GStephanopoulos to discuss the implications of the FBI search on the offices of… https://t.co/lVWgjMmU3z +04/04/2018,Politicians,@GovChristie,Today my thoughts are on all that Dr. King meant to our nation and how much we could use his voice today as so many… https://t.co/UMtL0Lgc0P +04/02/2018,Politicians,@GovChristie,"Incredible win for @ndwbb! What guts, what grit, what courage...Go Irish! Congrats to Hall of Famer Muffet McGraw on a special win!" +03/31/2018,Politicians,@GovChristie,Let's start the year with a big win over a good program https://t.co/Kwtt6c4xNs +03/29/2018,Politicians,@GovChristie,It was great fun as a lifelong Mets fan to be at Opening Day and see a big Mets win. It was a true honor to be able… https://t.co/axHDj62wLc +03/29/2018,Politicians,@GovChristie,"While Opening Day is always a special day, filled with joy and hope and visions of springtime weather--today, Mets… https://t.co/NgFSILD3vW" +03/17/2018,Politicians,@GovChristie,"Looking forward to discussing another week of fascinating events with .@GStephanopoulos on Sunday morning! + https://t.co/SzgbZh6puW" +03/14/2018,Politicians,@GovChristie,Getting ready to talk with .@GStephanopoulos on @GMA in the 7am hour about the political/legal news of the day. +03/14/2018,Politicians,@GovChristie,Very proud of .@chefjclark on his new position as head of the WH Office of Public Liaison. He will do the job with… https://t.co/v824vHrsif +03/11/2018,Politicians,@GovChristie,"A very tough and unfair night for @NDmbb. They beat Syracuse, at Syracuse, without ND's two best players. They end… https://t.co/HBfAKZCzDL" +03/08/2018,Politicians,@GovChristie,.@TomCrean Great job on the ESPN2 broadcast tonight--you made an incredible Irish comeback even better! The whole f… https://t.co/iUUJkDnAeq +03/08/2018,Politicians,@GovChristie,.@rexpflueger What a great effort--you were a huge part of that record breaking 21 point comeback. We are all proud of you! +03/08/2018,Politicians,@GovChristie,An amazing comeback by a gritty group of guys--especially @Austin_Torres1 who brought real energy to the floor! Way… https://t.co/fsAB7wRAw0 +03/07/2018,Politicians,@GovChristie,Go Irish! Beat Virginia Tech! https://t.co/IEiSr9h4FD +03/07/2018,Politicians,@GovChristie,Let's go get em tomorrow...survive and advance https://t.co/Lu5s8GiKsm +03/04/2018,Politicians,@GovChristie,Looking forward to tomorrow morning's show https://t.co/Vqqc6dtzI9 +02/28/2018,Politicians,@GovChristie,Two extraordinarily proud parents in South Bend honoring our daughter @SarahChristie23 on Senior Night at Notre Dam… https://t.co/TIDnal9UxN +02/24/2018,Politicians,@GovChristie,Congrats to @MattyFarr3 for a huge shot https://t.co/XtRELOIf5h +02/24/2018,Politicians,@GovChristie,Glad to see our little girl's 22nd birthday is being celebrated with her by her second family--@NDmbb. Thanks for t… https://t.co/bUstL9strX +02/20/2018,Politicians,@GovChristie,What a great and gutsy group of young men. https://t.co/gqciTYKtDU +02/17/2018,Politicians,@GovChristie,Great performance from @MattyFarr3 and @NDmbb. Look out ACC--this Irish team is getting healthy and in rhythm for t… https://t.co/B8wvVaKR0d +02/14/2018,Politicians,@GovChristie,Our prayers are with the families of the victims of this horrific school shooting in Florida. Mary Pat and I will k… https://t.co/oFPgO7XRQ5 +02/11/2018,Politicians,@GovChristie,Gutsy win for the Irish! https://t.co/XEexct4X0Q +01/29/2018,Politicians,@GovChristie,"Congratulations to Bob Hugin for 19 years of great leadership for @Celgene. From 200 jobs when he began to over 7,5… https://t.co/Ll2taDXTV8" +01/29/2018,Politicians,@GovChristie,Congratulations on 24 yrs of exemplary service to our state and the nation @USRepRodney. I am proud to have worked… https://t.co/jWddTBwOzT +01/24/2018,Politicians,@GovChristie,Great job by the @NDmbb basketball managers. Great job @SarahChristie23! https://t.co/KqvmLe3AYp +01/18/2018,Politicians,@GovChristie,Neither option was the way I entered airport as Governor(wrong in the story) and PAPD officer never denied me entry… https://t.co/uKYAQxW9xP +01/18/2018,Politicians,@GovChristie,Absolutely false story about my travel today. NJSP security detail & I were led to one entrance in the airport by P… https://t.co/ei03c5Z0Ou +01/16/2018,Politicians,@GovChristie,Thank you to all the people of New Jersey for the honor of being your Governor for the last eight years. It was a true privilege. +01/15/2018,Politicians,@GovChristie,My statement commemorating Dr. Martin Luther King Jr. Day: https://t.co/hzUx61275X +01/12/2018,Politicians,@GovChristie,All State buildings are flying flags at half-staff today in recognition and mourning of a courageous and loyal Amer… https://t.co/rBC6aldBCg +01/11/2018,Politicians,@GovChristie,Flags on all State buildings are at half-staff today in recognition and mourning of the passing of Jersey City Poli… https://t.co/rpTEEFOqVe +01/10/2018,Politicians,@GovChristie,"I leave you today grateful, happy and a better man than I was eight years ago. #SOTS2018 https://t.co/Ae9HEFQzjD" +01/09/2018,Politicians,@GovChristie,Watch my State of the State Address LIVE here: https://t.co/LgGNbWSUnZ +01/09/2018,Politicians,@GovChristie,Be sure to watch as I deliver my final #SOTS2018 address today at 3:00 pm. https://t.co/o3xE44jtlk +01/08/2018,Politicians,@GovChristie,My remarks from today’s Memorial Service for Governor Brendan T. Byrne: https://t.co/nmAhYim75w +01/08/2018,Politicians,@GovChristie,I have ordered all state buildings to fly flags at half-staff today in recognition and mourning of the passing of f… https://t.co/NHMmmRJhgw +01/08/2018,Politicians,@GovChristie,@rizzoTK State funding has been ramped up significantly--2 1/2 times more than the last 5 administrations combined-… https://t.co/8npfDsMP4j +01/04/2018,Politicians,@GovChristie,My statement on the passing of Governor Brendan T. Byrne: https://t.co/FlwWaMlMlB +01/04/2018,Politicians,@GovChristie,It is a shame that Democrats in the Legislature are paralyzed & let the arbitration cap expire. This will lead to h… https://t.co/8QMqOTrVpP +01/04/2018,Politicians,@GovChristie,"Declaring state of emergency in Cape May, Atlantic, Ocean & Monmouth Counties. All state offices will now be closed… https://t.co/nnURnC2bKb" +01/04/2018,Politicians,@GovChristie,"State offices will have a 2 hour delayed opening from normal start times tomorrow, January 4th to allow for the cle… https://t.co/OK2Wf8jYx8" +01/03/2018,Politicians,@GovChristie,We have done this already in NJ and it is working well. I urge NY to follow our lead. https://t.co/UtEzmLvxxh +01/03/2018,Politicians,@GovChristie,I commend A.G. Sessions for selecting Craig Carpenito to be New Jersey's United States Attorney. Craig is an outsta… https://t.co/YqHhLPNogm +01/01/2018,Politicians,@GovChristie,Wishing everyone a very happy & healthy New Year! +01/01/2018,Politicians,@GovChristie,.@TomCrean What a great family! https://t.co/uX4wZCx81g +01/01/2018,Politicians,@GovChristie,Congratulations on another record breaking year at the great Turtle Back Zoo! https://t.co/kZGp9UGhVL +12/31/2017,Politicians,@GovChristie,The real story is that .@Bcolson_35 called a timeout before falling out of bounds! Great job Bonzie! https://t.co/csNFKx6Lzh +12/31/2017,Politicians,@GovChristie,"Great win for my alma mater tonight! + https://t.co/FijJowjSHc" +12/31/2017,Politicians,@GovChristie,RT @TheRobFranklin: It's official. @NDMikeBrey is one win away from the program record at Notre Dame. #BreysChase https://t.co/fgFnRDLJKg +12/28/2017,Politicians,@GovChristie,@PoliticalStile @EliseOnDeadline Another inaccurate story from @EliseOnDeadline endorsed by biased @PoliticalStile.… https://t.co/l46WFlQvT7 +12/27/2017,Politicians,@GovChristie,Today I signed Executive Order No. 237 ordering local Governments to accommodate prepayment of 2018 Property taxe… https://t.co/iwgUfrapFW +12/25/2017,Politicians,@GovChristie,Wishing everyone the joys of the season and happiness throughout the coming year. Merry Christmas! +12/20/2017,Politicians,@GovChristie,"We can do something to fix this, we should make property taxes on our state income tax returns completely deductibl… https://t.co/F7afOWzQEF" +12/20/2017,Politicians,@GovChristie,"As we conclude the celebration of Hanukkah, we do so with great hope for the coming year for good health, prosperit… https://t.co/0V93PKpYa1" +12/20/2017,Politicians,@GovChristie,Congratulations to @SecaucusPSD math teacher Toni-Ann Palmisano on being awarded the prestigious @Milken Educator A… https://t.co/ORW0bXErTS +12/20/2017,Politicians,@GovChristie,The legislation I signed today should stand as a model to other states because we need to give those who have truly… https://t.co/G8vlcM8VdV +12/20/2017,Politicians,@GovChristie,Watch my bill action event LIVE from Trenton: https://t.co/LgGNbWSUnZ +12/19/2017,Politicians,@GovChristie,Having the @NJHallofFame partner with @PANYNJ is a great way for NJ to put our best foot forward and give the peopl… https://t.co/FQrurwrAMJ +12/19/2017,Politicians,@GovChristie,Watch my remarks at the unveiling of the new @NJHallofFame interactive displays @EWRairport LIVE: https://t.co/LgGNbWSUnZ +12/16/2017,Politicians,@GovChristie,We must all work together and I am very happy to have the @NJDevils as partners in this fight. https://t.co/XWZ63mrflr +12/15/2017,Politicians,@GovChristie,Thank you to our @ReachNJ partners the @NJDevils and to their President @hughweber1 and 3x Stanley Cup Champ… https://t.co/p3VpH8sc5U +12/15/2017,Politicians,@GovChristie,Watch LIVE as I join Education Commissioner Harrington and the @NJDevils to speak to a group of students about the… https://t.co/OTRWV0lZ75 +12/14/2017,Politicians,@GovChristie,"I have complete confidence that @KellyannePolls will bring the skill, ability and will to implement the Commission… https://t.co/GcqYTVxnvT" +12/13/2017,Politicians,@GovChristie,Our healthcare providers have to be a major part of solving the opioid epidemic. https://t.co/XO0V9dQwgk +12/13/2017,Politicians,@GovChristie,Watch LIVE as I deliver the keynote remarks at the American Pain Association’s “Turn the Tide” Summit in Camden: https://t.co/LgGNbWSUnZ +12/12/2017,Politicians,@GovChristie,Programs like the Talent Development Center @RutgersU will help to restore lives and make our communities and our s… https://t.co/T3y7X1YfBV +12/12/2017,Politicians,@GovChristie,My statement on the celebration of Hanukkah: https://t.co/S0WER4Jh3l +12/12/2017,Politicians,@GovChristie,Watch my announcement of the Talent Development Center Awards @Rutgers: https://t.co/LgGNbWSUnZ +12/11/2017,Politicians,@GovChristie,My statement regarding the explosion this morning beneath @PABusTerminal in New York City: https://t.co/E5REw25B8W +12/08/2017,Politicians,@GovChristie,Watch my remarks LIVE from the NJ Association of Mental Health and Addiction Agencies Award Ceremony at their headq… https://t.co/G9YfJnYbkq +12/07/2017,Politicians,@GovChristie,The lights that you are holding represent the light of your spirit. #Vigil2017 https://t.co/n1sWwo2oxX +12/07/2017,Politicians,@GovChristie,My statement in honor of Pearl Harbor Remembrance Day: https://t.co/79H3Un2X6q +12/06/2017,Politicians,@GovChristie,#IllBeThereWillYou #Vigil2017 #BeAFace https://t.co/5NRx70YbmQ +12/06/2017,Politicians,@GovChristie,"Tonight’s Candlelight Vigil is to recognize those decimated by this epidemic. #IllBeThereWillYou +https://t.co/851hT8AhXZ" +12/06/2017,Politicians,@GovChristie,"We’ve made great strides, but the public employee pension & health care system needs additional reform. https://t.co/lOOSuU0Ocg" +12/06/2017,Politicians,@GovChristie,Watch my press conference in Trenton LIVE: https://t.co/LgGNbWSUnZ +12/02/2017,Politicians,@GovChristie,"I would like to welcome home the members of @NJSP, local police officers, first responders and civilian officials w… https://t.co/gJ2qvG1Fls" +12/01/2017,Politicians,@GovChristie,Today we show our support for the individuals living with HIV and we remember the many lives lost to AIDS.… https://t.co/kOsXtyb1I0 +11/30/2017,Politicians,@GovChristie,https://t.co/st4qJi7lwo #IllBeThereWillYou #Vigil2017 https://t.co/IB9iKWV1xM +11/30/2017,Politicians,@GovChristie,"RT @reachnj: If you or someone you love is struggling with addiction, choose help. Call 844-REACH-NJ or visit https://t.co/Pwfk6gqefs https…" +11/30/2017,Politicians,@GovChristie,Register to reserve your spot: https://t.co/st4qJi7lwo #IllBeThereWillYou #Vigil2017 https://t.co/V5YUfFe72V +11/30/2017,Politicians,@GovChristie,"We’ve taken steps to combat addiction but We Need Marches. Please join us at 5 pm on December 6, 2017 for the 2nd A… https://t.co/tV088MdNKE" +11/30/2017,Politicians,@GovChristie,All across NJ people have joined with us to make the discussion on addiction louder and stronger and together we ha… https://t.co/HLSaLLFf51 +11/30/2017,Politicians,@GovChristie,From the beginning my Administration began a conversation about the disease of drug addiction and how no life is di… https://t.co/l0sZ5lAc47 +11/29/2017,Politicians,@GovChristie,The @CMSGov waiver’s would not have been made possible without Administrator @SeemaCMS. https://t.co/sfbqZHjhwB +11/29/2017,Politicians,@GovChristie,.@POTUS has done more to combat the addiction crisis than any other President. https://t.co/EfjJVrE29G +11/29/2017,Politicians,@GovChristie,Today I will be joined by @CMSGov Administrator @SeemaCMS for a discussion with clients from @IntegrityNJ and to ma… https://t.co/4ZroKkojYj +11/28/2017,Politicians,@GovChristie,Watch my remarks at the House Committee on Oversight and Government Reform’s Hearing on Combating the Opioid Crisis… https://t.co/mYUN2ybfMF +11/25/2017,Politicians,@GovChristie,Remember to support your local NJ businesses today for #SmallBizSat. #ShopSmall https://t.co/6xEZDay93K +11/23/2017,Politicians,@GovChristie,Wishing everyone a very #HappyThanksgiving! +11/23/2017,Politicians,@GovChristie,To my friend @NDMikeBrey--the loosest coach in America and...Maui Tourney champion! #6winstogo https://t.co/TQ3ZFQz4G3 +11/23/2017,Politicians,@GovChristie,"What a gutty, extraordinary comeback win for @NDmbb! Maui Classic Champs. Great job by @NDMikeBrey. Go Irish! https://t.co/a2mlJGsrMn" +11/21/2017,Politicians,@GovChristie,Tune in tonight at 7:00 pm for #AskGov on @nj1015 https://t.co/kdnMrJUi8e https://t.co/kxtG5bWskD +11/20/2017,Politicians,@GovChristie,The dedication of Governor Chris Christie Drive is truly an honor for me and my family. https://t.co/LjKYaqemhD +11/20/2017,Politicians,@GovChristie,Congratulations to NJ native @MartinTruex_Jr on winning the Monster Energy @NASCAR Cup Series Championship! #jerseypride +11/16/2017,Politicians,@GovChristie,"To mark World Pancreatic Cancer Awareness Day, Drumthwacket is shining purple this evening to spread awareness of t… https://t.co/l7yhD3LLvn" +11/16/2017,Politicians,@GovChristie,New Jersey’s economy is in better shape today than it was eight years ago. #BetterThanWeFoundIt https://t.co/yOjWPuDxC7 +11/16/2017,Politicians,@GovChristie,#ICYMI My Administration Made New Jersey Better - and It Wasn’t Easy. https://t.co/hPgoSVgBWS +11/14/2017,Politicians,@GovChristie,Flags on all State buildings are at half-staff today in recognition and mourning of the victims of the mass shootin… https://t.co/WB4IXT4msy +11/11/2017,Politicians,@GovChristie,Drumthwacket is illuminated green this #VeteransDay to honor the service and sacrifice of our nation’s 18.5 million… https://t.co/kUEBOVYudk +11/11/2017,Politicians,@GovChristie,My statement marking #VeteransDay: https://t.co/ClzYNDyNuC +11/11/2017,Politicians,@GovChristie,At the 92nd St Y with Ron Chernow and General David Patraeus prior to their talk on President Ulysses S. Grant https://t.co/Dfjbn3pjfI +11/10/2017,Politicians,@GovChristie,Happy 242 Birthday @USMC! #HappyBirthdayMarines https://t.co/EfmKFmsGhl +11/09/2017,Politicians,@GovChristie,"I met today with Governor-elect Murphy to ensure the transfer of responsibilities will be organized, cooperative, a… https://t.co/qIyZ2y7sQS" +11/06/2017,Politicians,@GovChristie,"@PollsterPatrick @Morning_Joe @MonmouthPoll No--your tweet said ""NJ's Superstorm Sandy victims"" as if your numbers… https://t.co/r9O7ln2zM1" +11/06/2017,Politicians,@GovChristie,"Today, I have ordered all State buildings to fly flags at half-staff in recognition and mourning of the victims of… https://t.co/J0gieGIiaS" +11/02/2017,Politicians,@GovChristie,New Jersey’s economy is on the right path. #BetterThanWeFoundIt https://t.co/sL3y7KKp9C +11/02/2017,Politicians,@GovChristie,Watch my remarks from FinPro Inc's Annual President and Directors Conference LIVE from Bedminster: https://t.co/LgGNbXavfx +11/01/2017,Politicians,@GovChristie,Another step in fighting the opioid epidemic: @CMSgov has approved demonstrations in both NJ and UT on a new Medica… https://t.co/EQaC8yDOa0 +11/01/2017,Politicians,@GovChristie,NJEA doesn't deny their huge compensation--just some of it paid now & some later. Millions more to come next year. https://t.co/oejBFv31CW +11/01/2017,Politicians,@GovChristie,We are praying for all victims & their families from tonight's terrorist attacks. NJ law enforcement partners with NY & Feds to keep us safe +10/31/2017,Politicians,@GovChristie,Is the @NJEA lying to the IRS or to their members? https://t.co/9R39nl3Yyh +10/31/2017,Politicians,@GovChristie,Congratulations to the new @NJSP Superintendent Colonel Patrick Callahan. https://t.co/6eAIAUdnMY +10/30/2017,Politicians,@GovChristie,@icmyserenity @AGCurtisHill Thank you Brandon. We are all in this fight together. Thank you for your dedication and advocacy. +10/30/2017,Politicians,@GovChristie,We are losing 142 people a day in America to opioids. Very proud to join @AGCurtisHill and Congresswoman… https://t.co/hjEyE7lAbS +10/30/2017,Politicians,@GovChristie,Thank you @AGCurtisHill it was truly my honor to be a part of your #RxSymposium2017. This is a conversation we mus… https://t.co/Eu8XSyvK5Y +10/30/2017,Politicians,@GovChristie,Today I will be delivering the Keynote Address at Indiana Attorney General @AGCurtisHill ‘s 8th Annual Prescription… https://t.co/OKjw2CHYvV +10/30/2017,Politicians,@GovChristie,@PollsterPatrick @Morning_Joe @MonmouthPoll Why care about a poll that deceives recipients by not telling them that… https://t.co/ZTvocUuWFA +10/30/2017,Politicians,@GovChristie,@PollsterPatrick Except your release says that these statistics cannot be applied to the larger group of all NJ San… https://t.co/P85Fj7t4p2 +10/30/2017,Politicians,@GovChristie,"@MonmouthPoll In last paragraph of his biased release ""the survey results cannot be statistically projected to the… https://t.co/Azv9mQXLRv" +10/29/2017,Politicians,@GovChristie,#Thankyou to all the volunteers who are still working hard to help rebuild New Jersey stronger. #STTS: https://t.co/1GQ7UvK9Js +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/FcyBqC3Ug4 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/jAkReuuYp9 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/fjXDcarNQ8 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/rJVB0Rd899 +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/riwC3MhONi" +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/nziMttcpoF" +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/kB44CIgXV8" +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/2MK5fDhafi +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/vtzGREWYg1 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/IOGtPUQQz2 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/zZawkNRG7C +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/MIHLdPKwSD +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/aKvLcQaMyP +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/t9WZfjQaBd +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/lslNT1CQWG +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/LqSobfwADH +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/kx5aLE7MS7 +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/jyCCgPNxCP +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/idmrkRU1JC +10/29/2017,Politicians,@GovChristie,Hope comes from the greater family of America and around the world. #STTS https://t.co/WBEmSvpneX +10/29/2017,Politicians,@GovChristie,I would like to thank everyone at St. Andrews United Methodist Church in Toms River for hosting “A Day of Prayer Th… https://t.co/BvxhMP8fqg +10/29/2017,Politicians,@GovChristie,Watch my remarks at the “Day of Prayer” service commemorating the 5th Anniversary of Super Storm Sandy. https://t.co/LgGNbWSUnZ +10/29/2017,Politicians,@GovChristie,Reflections on Sandy: New Jersey 2012: https://t.co/Lx1ZXuDF39 +10/28/2017,Politicians,@GovChristie,RT @reachnj: Opioid painkillers can be highly addictive and the dependency doesn’t end when the prescription runs out. WATCH how it starts:… +10/28/2017,Politicians,@GovChristie,Today is National Prescription Take Back Day. To find out where in NJ to take your unused and expired prescriptions… https://t.co/Q3GVHD51Ii +10/28/2017,Politicians,@GovChristie,If you’re near Seaside today join in and be a part of history. Help break the Guinness Book World Record for “Most… https://t.co/YlTqaBFwFF +10/27/2017,Politicians,@GovChristie,"New Jersey’s fighting, edgy, spirit makes us America’s most interesting people. #STTS https://t.co/6bPGTxGp3f" +10/27/2017,Politicians,@GovChristie,Our model resiliency program has put New Jerseyans in a much better position since Sandy. #STTS https://t.co/XScvlb5EEf +10/27/2017,Politicians,@GovChristie,Five years ago St. Peters’s University Hospital suffered direct physical damage from Sandy but today with this new… https://t.co/l2V2Qgrq9e +10/27/2017,Politicians,@GovChristie,Watch my remarks on EDA’s Energy Resilience Bank LIVE from New Brunswick: https://t.co/LgGNbWSUnZ +10/27/2017,Politicians,@GovChristie,Great time with @JaniceDean doing the weather this morning on @foxandfriends. Bundle up Bismarck! https://t.co/auJNTiJeFV +10/26/2017,Politicians,@GovChristie,RT @TODAYshow: Tomorrow on TODAY: @MLauer talks to @GovChristie about how NJ has recovered 5 years after Superstorm Sandy and more. https:/… +10/26/2017,Politicians,@GovChristie,@NJSP Great job Trooper Palaia! NJSP always ready to serve. #JerseyPride #Attaboy +10/26/2017,Politicians,@GovChristie,Saturday is National Prescription Drug Take-Back Day. Turn in your unused and expired medication safely at one of t… https://t.co/G6jUZcPuDP +10/26/2017,Politicians,@GovChristie,A proud & important day for so many families in America as @POTUS signs national emergency to deal w/opioid epidemi… https://t.co/nPsRhcMAM2 +10/26/2017,Politicians,@GovChristie,My statement on @POTUS Donald J. Trump’s Action on the opioid crisis: https://t.co/nmNHGCIwIR +10/26/2017,Politicians,@GovChristie,The Commission asked POTUS to declare Nat'l emergency under Public Health Safety Act or Stafford Act. Today he's doing what we asked of him. +10/26/2017,Politicians,@GovChristie,"RT @reachnj: In the US, someone dies every 19 minutes from a drug overdose. Risk reduction starts with knowing the facts: https://t.co/G1KO…" +10/25/2017,Politicians,@GovChristie,"Earlier today, First Lady Mary Pat Christie went to Camp Evans Volunteer Center to meet with Sandy volunteers and t… https://t.co/uNQqihE1Ep" +10/24/2017,Politicians,@GovChristie,Extremely proud of our @NJSP and First Responders who have served and are currently serving out-of-state in areas d… https://t.co/Dn54F8OaiK +10/24/2017,Politicians,@GovChristie,This State will forever remember the service our First Responders provided during Sandy. #STTS https://t.co/8DkT45SqzK +06/27/2018,Politicians,@CarlyFiorina,"I had a great meeting today with @UofLPresNeeli, the new President of the University of Louisville. Wishing her the… https://t.co/pvMeLRQZro" +06/27/2018,Politicians,@CarlyFiorina,"RT @NickyGoren: ""Intentionally and explicitly strengthening #nonprofit #leadership and staff is the work that needs to be done for programs…" +06/22/2018,Politicians,@CarlyFiorina,RT @usatodayopinion: From @CarlyFiorina: #Immigrant children separated from their families need leaders in Washington who are willing to go… +06/22/2018,Politicians,@CarlyFiorina,"For so many Americans, the immigration crisis has left us us wondering, “How did we get here?” + +Read my op-ed in… https://t.co/1xqjmBjX3v" +06/21/2018,Politicians,@CarlyFiorina,I’m honored to work with Jon and his team at @ESealsDCMDVA. They’ve taken the tools and characteristics they’ve lea… https://t.co/6dk9Auz4J1 +06/15/2018,Politicians,@CarlyFiorina,Ruff day at the https://t.co/zSAirYAWS8 office! https://t.co/U0EQC3TsaO +06/06/2018,Politicians,@CarlyFiorina,"Glad to be with @WWP in Jacksonville this week. It is an honor to work with their team to lift leaders up, and to e… https://t.co/n6VrkkXKKh" +05/18/2018,Politicians,@CarlyFiorina,"RT @THRUUE: ""Leadership at any level takes courage because to do anything is to be criticized"" + +Season 2 of Culture Gap is live! Listen no…" +05/09/2018,Politicians,@CarlyFiorina,.@caseyenders is a leader. She demonstrates true humility. It is not false modesty or being overly tentative. It’s… https://t.co/xTyHX36lZm +05/08/2018,Politicians,@CarlyFiorina,The political world has again learned of another case of a someone abusing his power to silence victims of sexual a… https://t.co/yCIflLvMsb +05/02/2018,Politicians,@CarlyFiorina,"RT @caseyenders: Loved hearing from all the fantastic students at last night's Do Good Challenge Finals! Inspiring to see so many smart, pa…" +05/01/2018,Politicians,@CarlyFiorina,".@CCharitiesUSA serves as a tremendous example of citizens leading in their communities, and doing God's work as th… https://t.co/KKNePTwwzQ" +05/01/2018,Politicians,@CarlyFiorina,"Hello from Tampa, where I have spent the last couple of days with leaders in @CCharitiesUSA's O'Grady Leadership In… https://t.co/SROsQ85oVh" +05/01/2018,Politicians,@CarlyFiorina,RT @JSirangelo: “Perspective requires recognizing your own limitations as well as those of the people you work with–and treating both with… +04/12/2018,Politicians,@CarlyFiorina,@emilylazor .@EmilyLazor - Thanks for the question. I chatted with @jmeacham and @Nick_Zeppos about this earlier th… https://t.co/R7goSdCBm6 +04/05/2018,Politicians,@CarlyFiorina,RT @LehighAlumni: Former Hewlett-Packard CEO and 2016 Republican presidential candidate Carly Fiorina delivered the inaugural Peter S. Hage… +04/01/2018,Politicians,@CarlyFiorina,Jesus Christ is risen! Hallelujah! Frank and I wish you and your family the best on this Easter Sunday. +03/07/2018,Politicians,@CarlyFiorina,"RT @USCCFBiz4Good: “A leader sees possibility in the people all around them regardless of their circumstances.” @CarlyFiorina, @UPLeadershi…" +03/07/2018,Politicians,@CarlyFiorina,"It was great to catch up with you, Blair! #USCCFwomen https://t.co/HdZFmB48nC" +02/28/2018,Politicians,@CarlyFiorina,Glad to meet new friends and catch up with old ones like @Howard_Byck at @socialcapital today! https://t.co/TOf0F8ofau +02/23/2018,Politicians,@CarlyFiorina,"RT @VandyHustler: Read The Hustler's full interview with Carly Fiorina, former CEO of Hewlett Packard + +https://t.co/DsVqqZ7tOI" +01/19/2018,Politicians,@CarlyFiorina,"Thinking of and praying for all of those participating in the @March_for_Life today! + +Every person – every life – h… https://t.co/vDJPkWQe0c" +01/03/2018,Politicians,@CarlyFiorina,"@RebeccaSchiebs Thanks, Rebecca! This is one of my favorite moments: +https://t.co/4w66NPE8nE" +01/03/2018,Politicians,@CarlyFiorina,"“In today’s world, we face problems that are desperate, festering, and intractable. If we are going to have any sho… https://t.co/svU9slVMIg" +12/21/2017,Politicians,@CarlyFiorina,"Thank you, Jon! Great to read your reflections on working with @UPLeadership. https://t.co/taW15aHIDW" +12/21/2017,Politicians,@CarlyFiorina,Frank and I wish you all the blessings of this holiday season! https://t.co/KdJ0VeThgt +12/17/2017,Politicians,@CarlyFiorina,"I’m joining @KasieDC this evening to discuss @UPLeadership. Follow and click here for more: +https://t.co/7f8a8MboLG" +12/06/2017,Politicians,@CarlyFiorina,Our founders had it right when they said that patents and intellectual property needed to be protected as a fundame… https://t.co/untvIa7IOK +11/29/2017,Politicians,@CarlyFiorina,"Thank you @kellanhowell for the thoughtful conversation. Keep up the good work at @circa. + +https://t.co/MD84xsbB8W" +11/28/2017,Politicians,@CarlyFiorina,RT @cnsnews: Carly Fiorina: Congress Must Change How It Handles Sexual Harassment Claims https://t.co/9Is2LkNy2c +11/20/2017,Politicians,@CarlyFiorina,Are you going to keep quiet when you should speak up? https://t.co/Kbgr3AXij9 +11/19/2017,Politicians,@CarlyFiorina,"We women will keep fighting, contributing, speaking up and speaking out. The question is will you boys finally man… https://t.co/OaWYwIfHWx" +11/19/2017,Politicians,@CarlyFiorina,"It is men’s turn to tell their fellow men that respect from others requires respect for others. +https://t.co/Kbgr3AXij9" +11/19/2017,Politicians,@CarlyFiorina,I'll be on @ThisWeekABC to discuss sexual harassment in our society. Read my latest thoughts on the subject here: https://t.co/Kbgr3AXij9 +11/06/2017,Politicians,@CarlyFiorina,. @EdWGillespie sees the possibilities in all Virginians. #VAGov https://t.co/eiihsRuCEe +11/06/2017,Politicians,@CarlyFiorina,Tomorrow is election day in Virginia - make your plan and get to the polls and vote for @EdWGillespie @JillHVogel and @JohnAdamsforVA +11/04/2017,Politicians,@CarlyFiorina,Loved being with the VA GOP Team in Springfield - keep up the great work @JohnAdamsforVA https://t.co/ZphsvbcoEs +11/04/2017,Politicians,@CarlyFiorina,"Great morning in Springfield with a strong leader and my friend, the next Governor of Virginia, @EdWGillespie!… https://t.co/D79MOO7zlI" +11/02/2017,Politicians,@CarlyFiorina,Thanks for having me! https://t.co/Wa71YAVXwi +10/25/2017,Politicians,@CarlyFiorina,Joining @hughhewitt this morning at 8:05AM ET. You can listen live here: https://t.co/a0R6KCFzvw +10/24/2017,Politicians,@CarlyFiorina,Looking forward to joining @TheBuschSchool for this evening’s CEO Lecture @CatholicUniv. Watch live here: https://t.co/lktYoLEk6W +10/07/2017,Politicians,@CarlyFiorina,Proud to support @BarbaraComstock for #VA10 tonight! https://t.co/YjgE7uVg4p +09/29/2017,Politicians,@CarlyFiorina,Thanks for having me! #YAFonCampus https://t.co/P9G8WwDGDC +09/27/2017,Politicians,@CarlyFiorina,Excited to speak with @LogCabinGOP tonight as they celebrate their 40th anniversary. +09/20/2017,Politicians,@CarlyFiorina,Looking forward to speaking about leadership at tonight’s @awbolympia event! #AWBsummit17 https://t.co/mFkuaJGkEV +09/14/2017,Politicians,@CarlyFiorina,Enjoyed the opportunity to sit down with @mariabartiromo on @FoxBusiness this morning. https://t.co/2CgCeLsGVp +09/13/2017,Politicians,@CarlyFiorina,Looking forward to joining @mariabartiromo tomorrow on @MorningsMaria at 8am. Hope that you can tune in! +09/08/2017,Politicians,@CarlyFiorina,It was great to join @tracybyrnes with the @TheStreet for a discussion on leadership: https://t.co/A59mP34d9e +07/31/2017,Politicians,@CarlyFiorina,https://t.co/iWFACDwAHg +07/20/2017,Politicians,@CarlyFiorina,God speed my friend. We need you back in Washington. +07/20/2017,Politicians,@CarlyFiorina,"While you may not agree with him every time, there is no doubt that John is a leader of unwavering courage, principle, and honor." +07/20/2017,Politicians,@CarlyFiorina,We all know John is a warrior and he will fight this with same valor that has defined every aspect of his life. +07/20/2017,Politicians,@CarlyFiorina,"My love and prayers go out to my good friends John and Cindy, as well as Meghan and the entire family." +07/18/2017,Politicians,@CarlyFiorina,I truly enjoyed our conversation @tracybyrnes and thank you for having me. Pease keep up your excellent work at… https://t.co/IcMUzc0ASu +06/29/2017,Politicians,@CarlyFiorina,#leadership https://t.co/GgaBJe7trD +06/25/2017,Politicians,@CarlyFiorina,Below are a few of my thoughts on this principled post by @SenMikeLee - https://t.co/wdeveKRdxh https://t.co/wnSrA9fqlo +06/23/2017,Politicians,@CarlyFiorina,#leadership https://t.co/lZV4iIZIM9 +06/22/2017,Politicians,@CarlyFiorina,Looking forward to speaking with @MariaBartiromo at 8:30am this morning live on @FoxBusiness +06/17/2017,Politicians,@CarlyFiorina,". @kylemaynard is realizing his potential. + +Watch Kyle in action here: https://t.co/nYkmTgxmD8 + +(3/3)" +06/17/2017,Politicians,@CarlyFiorina,Last week I had the pleasure to meet @kylemaynard - a true leader. (2/3) +06/17/2017,Politicians,@CarlyFiorina,"Everyone is gifted by God. Everyone, regardless of their circumstances, has far more potential than they realize. (1/3)" +06/13/2017,Politicians,@CarlyFiorina,I was proud to vote for @EdWGillespie today. #TeamGillespie +06/13/2017,Politicians,@CarlyFiorina,"With my favorite polling people. Go Vote! +#VirginiaPrimary https://t.co/LNCVR1bGEt" +05/25/2017,Politicians,@CarlyFiorina,https://t.co/YyZvgYINQ9 +05/23/2017,Politicians,@CarlyFiorina,Challenging the status quo is the purpose of leadership. Criticism is the price. And solving problems is the pay-off #CECPSummit +05/23/2017,Politicians,@CarlyFiorina,We have an abundance of problems and a scarcity of leadership #CECPSummit +05/23/2017,Politicians,@CarlyFiorina,"Leadership is not about title, position or power #CECPSummit" +05/23/2017,Politicians,@CarlyFiorina,Looking forward to joining the @CECPtweets Summit soon! +05/11/2017,Politicians,@CarlyFiorina,It was great to join @TheStreet for a discussion on leadership and heath care reform. https://t.co/hP3dUsFC0F +05/10/2017,Politicians,@CarlyFiorina,"I am excited and honored to be joining the @colonialwmsburg Foundation Board of Trustees! + +https://t.co/WVZQls2Tlr" +05/10/2017,Politicians,@CarlyFiorina,@lynlam Thank you! +05/10/2017,Politicians,@CarlyFiorina,Enjoyed the opportunity to sit down w/ @tvkatesnow to discuss health care and President Trump’s first 100 days https://t.co/UAjSud7XhS +04/22/2017,Politicians,@CarlyFiorina,If you haven’t had the chance take a listen to this weeks @TakeoutPodcast! https://t.co/ttM5CJapIt +04/22/2017,Politicians,@CarlyFiorina,I enjoyed joining @MajorCBS on @TakeoutPodcast! Take a listen if you are interested. https://t.co/blNos83idI +04/15/2017,Politicians,@CarlyFiorina,https://t.co/xE49wsssJ7 +03/20/2017,Politicians,@CarlyFiorina,"I am excited that Jim Donovan is nominated as Treasury Dept. Secretary. He is well-qualified, has business experien… https://t.co/OsMHFb6Grv" +03/19/2017,Politicians,@CarlyFiorina,RT @corinnec: I have always loved this bit from @CarlyFiorina. Felt like going back and reading it again today. https://t.co/tiC95LgcNU +03/19/2017,Politicians,@CarlyFiorina,My deepest sorrows have been eased by Amazing Grace. I reflected on how many times both have lifted me up. I am filled with gratitude. 2/2 +03/19/2017,Politicians,@CarlyFiorina,Today we sang Amazing Grace and The Lord's Prayer. Some of my earliest memories are of whispering the Lord's Prayer in the dark. (1/2) +03/16/2017,Politicians,@CarlyFiorina,Looking forward to speaking at the @NR_Institute Ideas Summit! https://t.co/ZPfCtm2wrq #NRISummit17 +03/05/2017,Politicians,@CarlyFiorina,Thanks for having me! Great event. https://t.co/lalehs8KpO +03/05/2017,Politicians,@CarlyFiorina,".@RevDonDavidson at @FBCAlexandria reminds us that we are saved by grace alone. Thank you, dear Lord, for the gift of your amazing grace." +03/04/2017,Politicians,@CarlyFiorina,Frank and I are driving over to Prince William County for tonight’s GOP Lincoln-Reagan dinner. If you are in area I hope to see you there! +03/03/2017,Politicians,@CarlyFiorina,Looking forward to attending the #NRISummit17- hope to see you there! https://t.co/wAsFvHwA6D +03/02/2017,Politicians,@CarlyFiorina,Thrilled for @GovernorPerry confirmation as our next Energy Secretary. I know he is going to do a great job! https://t.co/6U9fWmmXbN +02/28/2017,Politicians,@CarlyFiorina,Looking forward to speaking at @RegentU Exec Leadership Series at 12:40 today. If you want you can watch live here—> https://t.co/B3n9Np0Ulw +02/28/2017,Politicians,@CarlyFiorina,"It was great to visit @colonialwmsburg yesterday, there are wonderful things going on! Thanks to Mitchell & Elisabe… https://t.co/79Hijfatyc" +02/28/2017,Politicians,@CarlyFiorina,@toddinva Thanks! +02/27/2017,Politicians,@CarlyFiorina,How will we know if we are on track to #MAGA? I believe there are 3 tests. https://t.co/mGswWjckwu +02/27/2017,Politicians,@CarlyFiorina,"Outstanding speech by @Schneider_DC at #CPAC2017 + +https://t.co/8cVP0CI3oP https://t.co/bsaF5r2to6" +02/27/2017,Politicians,@CarlyFiorina,@imanredzepi Thank you! +02/27/2017,Politicians,@CarlyFiorina,@apgarza1979 Thank you very much for those kinds words. +02/27/2017,Politicians,@CarlyFiorina,@jennaep7 Thank you! +02/27/2017,Politicians,@CarlyFiorina,"RT @OppLives: “there are many programs that work to treat the epidemic of addiction, but they don’t start in"" DC +—@CarlyFiorina https://t.c…" +02/27/2017,Politicians,@CarlyFiorina,Looking forward to tomorrow’s event at Regent University’s Executive Leadership Series! https://t.co/g7NCWmEe5M +02/27/2017,Politicians,@CarlyFiorina,"I enjoyed the wonderful conversation with @arthurbrooks +at #CPAC. + +https://t.co/eoViLOHks3" +02/27/2017,Politicians,@CarlyFiorina,It was good to join #CPAC2017 the other day. Check out this nice summary of my conversation with @arthurbrooks. https://t.co/GzlJb8VNJC +02/27/2017,Politicians,@CarlyFiorina,@andreacitymom Thanks Andrea! +02/20/2017,Politicians,@CarlyFiorina,@JustinYonker Thank you! I am glad you are enjoying it. +02/20/2017,Politicians,@CarlyFiorina,RT @LouDobbs: Tonight's #QuoteoftheDay by @CarlyFiorina! #Dobbs https://t.co/UyQ1vzpqjB +02/14/2017,Politicians,@CarlyFiorina,"There is nothing better than a great mystery from history! + +https://t.co/WOiHjfYdnS #History" +02/12/2017,Politicians,@CarlyFiorina,"2/2 ....Because he is a traitor."" Watch the rest of my interview w/ @MariaBartiromo here: https://t.co/7FoULIy7C3" +02/12/2017,Politicians,@CarlyFiorina,"1/2 ""...if Snowden is turned over to the United States, and certainly Russia should turn him over, that he is tried for treason…" +02/10/2017,Politicians,@CarlyFiorina,Thank you! https://t.co/bZd9wbCIgt +02/10/2017,Politicians,@CarlyFiorina,Nice to meet you Jacey! https://t.co/otY3Oink2x +02/10/2017,Politicians,@CarlyFiorina,@MauriceManny Thank you! +02/10/2017,Politicians,@CarlyFiorina,Thank you Congressman. Nice to see you! https://t.co/yLr6pOi2OT +02/10/2017,Politicians,@CarlyFiorina,It was a pleasure joining you https://t.co/aobNJzmRgw +02/10/2017,Politicians,@CarlyFiorina,@jrclaeys I am glad you were able to make it. Hope that you enjoyed the event. +02/10/2017,Politicians,@CarlyFiorina,"#Leaders are made not born. Will you choose to be a leader? + +https://t.co/szdLFLcrLN https://t.co/CcctfsqNQ1" +02/10/2017,Politicians,@CarlyFiorina,@MrBuffs123 Great to see you and thanks for your support! +02/01/2017,Politicians,@CarlyFiorina,The @POTUS has made an excellent choice in naming Judge Gorsuch as the next SCOTUS. He has my full support. +01/22/2017,Politicians,@CarlyFiorina,@JustuW8 Thank you! +01/22/2017,Politicians,@CarlyFiorina,About to join @SundayFutures to discuss economy and @TrumpInagural with @MariaBartiromo tune into Fox Business now! +01/21/2017,Politicians,@CarlyFiorina,Looking forward to joining @MariaBartiromo tomorrow for @SundayFutures. Hope you can tune in! https://t.co/49Wxgvivyl +01/20/2017,Politicians,@CarlyFiorina,We also thank President Obama and VIce-President Biden for their service. #InaugurationDay (2/2) +01/20/2017,Politicians,@CarlyFiorina,Today we celebrate the peaceful transfer of power in our country. Congratulations @realDonaldTrump & @mike_pence (1/2) +01/20/2017,Politicians,@CarlyFiorina,"RT @POLITICOLive: ""The complexity of the tax code favors the big companies over the small companies"" @CarlyFiorina #POLITICOHub #PlaybookLi…" +01/20/2017,Politicians,@CarlyFiorina,Thank you @JakeSherman & @apalmerdc for the wonderful @politico conversation this morning. https://t.co/KYOAfbjHP1 +01/20/2017,Politicians,@CarlyFiorina,@molliekate97 sorry that we missed you at the event! +01/19/2017,Politicians,@CarlyFiorina,RT @Chell_is_Skyy: Do not let people define you. You define yourself by the choices you make----- @CarlyFiorina #CarpeFuturum +01/19/2017,Politicians,@CarlyFiorina,#servantleadership https://t.co/KMZQ2Nzl8W +01/19/2017,Politicians,@CarlyFiorina,@ams2901 I am glad that you enjoyed it! +01/19/2017,Politicians,@CarlyFiorina,@natashawolfff Thanks! Glad that you enjoyed it. +01/19/2017,Politicians,@CarlyFiorina,"RT @eriinmelan: Probably the best saying to define your life ""Know your worth and your value"" - @CarlyFiorina #envision" +01/19/2017,Politicians,@CarlyFiorina,@shestylestou if we can agree on #servantleadership then that is good enough by me. Have a nice night! +01/19/2017,Politicians,@CarlyFiorina,@alexiageorgette glad to hear that! Stay motivated! +01/19/2017,Politicians,@CarlyFiorina,Thank you @theblakebarclay. It was nice to meet you! +01/19/2017,Politicians,@CarlyFiorina,"My friend & very successful former Texas Governor, @GovernorPerry will make an outstanding Sec of Energy. Read —> +https://t.co/nR71Kqwmdq" +01/17/2017,Politicians,@CarlyFiorina,.@BetsyDeVos is an advocate for America’s school children & will take on teacher’s unions. An inspired choice! https://t.co/ym3JwhiY5b +01/14/2017,Politicians,@CarlyFiorina,.@betsydevos will be a transformative Sec of Ed- helping all students- read why I support her: https://t.co/9NJZ77c5bP +01/12/2017,Politicians,@CarlyFiorina,Hope you were able to catch The Messy Truth with @VanJones68 last night on @CNN. Enjoyed the conversation! https://t.co/20zbDw3CQX +01/11/2017,Politicians,@CarlyFiorina,".@realDonaldTrump made a good choice in @ElaineChao, she'll be an excellent Sec. of Trans. I know she’ll impress the American people!" +01/11/2017,Politicians,@CarlyFiorina,Looking forward to the live town hall w/ @VanJones68 tomorrow night at 9pm EST on @CNN. Hope you can watch! +01/10/2017,Politicians,@CarlyFiorina,"During today’s hearing @SenatorSessions demonstrated why he’s the principled, tireless leader we need as our next Attorney General." +12/17/2016,Politicians,@CarlyFiorina,".@GovernorPerry is a great pick to lead America's energy future. He's a tough, smart, dedicated leader. +https://t.co/bChbeym8Gq" +12/16/2016,Politicians,@CarlyFiorina,I offer my wholehearted support to my friend @AndyPuzder as our nation’s next Secretary of Labor. Learn why: https://t.co/droMtUsRHf +12/15/2016,Politicians,@CarlyFiorina,"Proud to support my friend @Linda_McMahon to lead @SBAgov. Read why +https://t.co/rITbEsX3vt" +12/10/2016,Politicians,@CarlyFiorina,"Today, I offer my enthusiastic endorsement of @SenatorSessions to be our next Attorney General. Read why —> +https://t.co/OMjsQ5RUTO" +12/09/2016,Politicians,@CarlyFiorina,Looking forward to attending the @VA_GOP Advance this weekend. Will be great to see friends new and old there. Hope… https://t.co/wnaLbO5w8V +12/09/2016,Politicians,@CarlyFiorina,The inauguration of the 45th President - @realDonaldTrump - is fast approaching. For info & updates make sure you follow @TrumpInaugural +12/07/2016,Politicians,@CarlyFiorina,Enjoyed speaking at Heritage Foundation about the challenges we face domestic and abroad and the great opportunity… https://t.co/yLdY7D5lNn +12/07/2016,Politicians,@CarlyFiorina,"Enjoyed speaking with No VA Chamber the other day. + +“Other people’s comments do not define you.” + +https://t.co/I6lOefPtk5" +12/05/2016,Politicians,@CarlyFiorina,@kathrynfalk @NOVAChamber @CoxVA Thanks for coming! +12/05/2016,Politicians,@CarlyFiorina,.@NOVAChamber Thanks for having me today! https://t.co/TrCbl6FsdL +12/05/2016,Politicians,@CarlyFiorina,"RT @HeliosHR: When looking for people to hire, @CarlyFiorina looks for courage, character, collaboration, and people who see possibilities…" +12/05/2016,Politicians,@CarlyFiorina,"RT @jackmoore_ei: @CarlyFiorina - In a rapidly-changing world, the status quo isn't always the least risky option. Sometimes it's innovatio…" +12/02/2016,Politicians,@CarlyFiorina,Thank you for a wonderful event @TheHRH https://t.co/iAAMbKz2Kd +12/02/2016,Politicians,@CarlyFiorina,Thanks @CABachelder! Thank you to @IWF for a wonderful event. https://t.co/kYH5CkZ6H1 +11/24/2016,Politicians,@CarlyFiorina,As our family gathers today to be thankful for how blessed we are we hope that you and yours have a wonderful day. 3/3 +11/24/2016,Politicians,@CarlyFiorina,"Let us be grateful to live in a nation of citizen government, where we can constrain power, so that it not be abused. 2/3" +11/24/2016,Politicians,@CarlyFiorina,"Frank & I are thankful to live in a nation where each of us, regardless of who we are or what our circumstances, have inalienable rights 1/3" +11/21/2016,Politicians,@CarlyFiorina,Stand with me in supporting my friend @EdWGillespie for Governor. #EdForVirginia https://t.co/RBIJBoPuHt +11/11/2016,Politicians,@CarlyFiorina,"Proud to be American on a day we honor the service & sacrifice of those who keep this the land of the free, home of the brave. #VeteransDay" +11/09/2016,Politicians,@CarlyFiorina,Congrats @realDonaldTrump and @mike_pence. The American people have spoken. Time for real change that unites us and carries us forward. +11/04/2016,Politicians,@CarlyFiorina,Why I’m endorsing Tom Garrett for Congress here in Virginia: https://t.co/IPM9Q7hxQT +11/03/2016,Politicians,@CarlyFiorina,Why I’m endorsing @rogermarshallMD for Congress in Kansas’s 1st District: https://t.co/Mw1p8iH2E3 +11/02/2016,Politicians,@CarlyFiorina,Why I’m standing with Richard Shelby for Senate: https://t.co/zeKVZJKN2j +11/02/2016,Politicians,@CarlyFiorina,Why Florida needs @marcorubio in Washington: https://t.co/X26OyV1FX8 +11/02/2016,Politicians,@CarlyFiorina,Proud to endorse Gen. @DonBacon2016 for Congress in NE: https://t.co/QPGdt8SLhm +10/31/2016,Politicians,@CarlyFiorina,Why @willhurd is the leader Texas’s 23rd District needs in Washington: https://t.co/cvJ4pe3XVc +10/31/2016,Politicians,@CarlyFiorina,I’m proud to endorse @RepMGriffith for Congress in my home state of Virginia: https://t.co/gmhkL19Ggx +10/27/2016,Politicians,@CarlyFiorina,"Why Indiana needs a conservative fighter like @ToddYoungIN in the U.S. Senate: +https://t.co/CzoSZlWFfv" +10/27/2016,Politicians,@CarlyFiorina,.@RoyBlunt is the conservative leader Missouri needs. Here’s why I’m endorsing him: https://t.co/jYGZjZrsm6 +10/26/2016,Politicians,@CarlyFiorina,I’m standing with @MiaBLove for Congress in Utah. And here’s why you should too: https://t.co/MBfPqbWOQu +10/26/2016,Politicians,@CarlyFiorina,Why I’m supporting @TeamCoffman2016 for Congress in Colorado: https://t.co/rkXq3OAiXS +10/25/2016,Politicians,@CarlyFiorina,I’m endorsing @KathyforMD for U.S. Senate in Maryland. Here’s why: https://t.co/B4nhOkY8x0 +10/24/2016,Politicians,@CarlyFiorina,I’m supporting @ScottTaylorVA for Congress in Virginia. Here’s why you should too: https://t.co/ij6dg9wmmy +10/21/2016,Politicians,@CarlyFiorina,Proud to endorse @JohnThune for U.S. Senate in South Dakota: https://t.co/73ZMS9zoKx +10/20/2016,Politicians,@CarlyFiorina,Wonderful time campaigning with @BrianFitzUSA for Congress in Pennsylvania yesterday. I'm proud to endorse him: https://t.co/VzgQPAMxJ5 +10/19/2016,Politicians,@CarlyFiorina,Had a great time campaigning in Roanoke for my friend and fellow Virginian @BobGoodlatte6 on Monday! https://t.co/5IztDjTD1N +10/18/2016,Politicians,@CarlyFiorina,I’m endorsing @MikeforWI. Here’s why: https://t.co/51KosnB4qd +10/17/2016,Politicians,@CarlyFiorina,Why @DannyTarkanian is the leader Nevada’s families and communities need in Congress: https://t.co/QolyP9B3wK +10/15/2016,Politicians,@CarlyFiorina,Why you should vote for Lloyd Smucker: https://t.co/R5sgKLoX4A +10/14/2016,Politicians,@CarlyFiorina,Proud to stand with @SenatorTimScott for South Carolina—and I hope you will too: https://t.co/v48FxVg8Tz +10/14/2016,Politicians,@CarlyFiorina,Why I’m endorsing @leezeldin for Congress in New York: https://t.co/eekr4nqlkg +10/14/2016,Politicians,@CarlyFiorina,I’m proud to endorse @SenatorIsakson in Georgia. Here’s why: https://t.co/FAfSErEViu +10/13/2016,Politicians,@CarlyFiorina,"The Left's policies hold us back, not help us grow. Why we must invest in the potential of the American people: https://t.co/pDg74Vv1H6" +10/12/2016,Politicians,@CarlyFiorina,2 ways the business world made me understand what it means to be a conservative: https://t.co/6sOCJKAfZ6 +10/12/2016,Politicians,@CarlyFiorina,Proud to endorse @repgoodlatte. Here’s why he’s the kind of leader Virginia needs in Washington: https://t.co/QJelCc923N +10/12/2016,Politicians,@CarlyFiorina,.@ClaudiaForNY22 is the conservative leader Upstate New York needs. Here’s why I’m standing with her: https://t.co/WhR6WePhpD +10/10/2016,Politicians,@CarlyFiorina,Why the Constitution needs to be protected now more than ever: https://t.co/Yb2FcIFGbM +10/10/2016,Politicians,@CarlyFiorina,.@RepHardy puts the people of Nevada before himself—and that’s why I’m proud to endorse him: https://t.co/9zAVJk8ATy +10/08/2016,Politicians,@CarlyFiorina,My thoughts: https://t.co/1ck3UddzdR +10/07/2016,Politicians,@CarlyFiorina,Proud to announce my endorsement of @YoungForIowa. Here’s why: https://t.co/m8gmjCvPX3 +10/06/2016,Politicians,@CarlyFiorina,Michigan needs Gen. Jack Bergman in Congress. Here’s why I’m endorsing him: https://t.co/1KQKMkEolD +10/06/2016,Politicians,@CarlyFiorina,Sen. @ChuckGrassley has never stopped fighting for Iowa. Here’s why I’m endorsing him: https://t.co/q8FZRpDffv +10/04/2016,Politicians,@CarlyFiorina,Arkansas needs to keep John Boozman fighting in the U.S. Senate. Here’s why I’m endorsing him: https://t.co/jgiYXFIXSA +10/02/2016,Politicians,@CarlyFiorina,Montana needs a strong conservative leader in Congress. Here’s why I’m supporting Ryan Zinke: https://t.co/t1pYA6Zu7j +10/01/2016,Politicians,@CarlyFiorina,Darryl Glenn is the conservative leader Colorado needs. Here’s why I’m proud to endorse him for U.S. Senate: https://t.co/ShG3l4RJ6X +09/30/2016,Politicians,@CarlyFiorina,I’m proud to endorse my friend @SenJohnMcCain for Senate: https://t.co/6oEwCykVPn +09/29/2016,Politicians,@CarlyFiorina,Michigan needs a leader like Tim Walberg in Congress. Here’s why: https://t.co/8QEbDDWBC9 +09/28/2016,Politicians,@CarlyFiorina,Why I’m proud to endorse @RandPaul for U.S. Senate in Kentucky: https://t.co/jz9es0kbKV +09/28/2016,Politicians,@CarlyFiorina,"Each time I met him, Shimon Peres was a gentleman & a patriot—a true leader for Israel & the world. He'll be missed: https://t.co/jCCu4nuRe9" +09/28/2016,Politicians,@CarlyFiorina,.@RepErikPaulsen is the leader Minnesota needs in Congress—and here’s why I’m proud to endorse him: https://t.co/mC2AvXosJC +09/27/2016,Politicians,@CarlyFiorina,Why I’m standing with @Heck4Nevada for #NVSen (and why you should too): https://t.co/HLkV3u2iy3 +09/27/2016,Politicians,@CarlyFiorina,John Faso is the fighter New York needs in Washington. Here’s why I’m so proud to endorse him: https://t.co/lhSUf1eOD9 +09/27/2016,Politicians,@CarlyFiorina,Don't forget: @GovernorPerry is raising money for veterans on @DancingABC tonight! Vote at 1-800-868-3410 or https://t.co/p7LLsEcaaW #DWTS +09/27/2016,Politicians,@CarlyFiorina,"What we can expect @HillaryClinton on #debatenight: lies, lies, lies, and more lies. https://t.co/X9DiAOGM1H" +09/23/2016,Politicians,@CarlyFiorina,I’m so pleased to endorse Heidi Ganahl for the CU Board of Regents. Here’s why she’s the leader Colorado needs: https://t.co/30LS2xrIhw +06/26/2018,Politicians,@RickSantorum,RT @USAEnergy: #RFSworks for energy security says AESI co-chairs @JimTalent @RickSantorum. Read more here:https://t.co/nMgEuhiMlm https://t… +06/20/2018,Politicians,@RickSantorum,Glad to see @POTUS and @VP are going to SC to campaign for a great conservative @henrymcmaster - the only candidate… https://t.co/ypIvbyHLJ6 +06/18/2018,Politicians,@RickSantorum,"Watch: CNN Panel Looks Off Camera, Starts Twitching When Asked to House Illegals https://t.co/yUXedD36oc" +06/17/2018,Politicians,@RickSantorum,Just saw this article. Thanks @maule_will and Faithwire for a wonderful Father’s Day gift. https://t.co/0Ro9idGDr8 +06/17/2018,Politicians,@RickSantorum,"An inspiring story of parents whose love for their daughter not only saved her life, but the lives of countless oth… https://t.co/c3ciRGkRVh" +06/12/2018,Politicians,@RickSantorum,Prayers going out to my friend Larry Kudlow. +06/06/2018,Politicians,@RickSantorum,".@POTUS Thank you for standing w struggling rural Americans, as you promised you would. https://t.co/NCak4pZdxX" +06/05/2018,Politicians,@RickSantorum,".@POTUS has done a great job w our economy. Only one area hurting - Farm Country. They believed in him, its time to… https://t.co/MnQwnN8Pvq" +05/29/2018,Politicians,@RickSantorum,Will be interested in seeing if all those who attacked me for what I said on @CNNSotu will now direct their venom t… https://t.co/YLufd5JzVu +05/26/2018,Politicians,@RickSantorum,https://t.co/KFcC8r4Rkl. It is time for congress and president to listen to the grassroots and fix the disaster that is the #ACA. +05/25/2018,Politicians,@RickSantorum,Obamacare is imploding and millions are feeling the pain. The #HealthCareChoicesAct will lower costs and increase a… https://t.co/Wj1gJtzoJn +05/25/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Irish Artists Are Horrified by U2 Urging Citizens to Vote for Abortion. @RickSantorum explains what he shared with his… +04/27/2018,Politicians,@RickSantorum,We must fix this broken healthcare system to lower costs and improve access to the doctors you want. It can be done. https://t.co/4RQtuI5gP3 +04/18/2018,Politicians,@RickSantorum,Every Republican in Congress promised they would deal with the problems of the ACA. It is not too late to act to lo… https://t.co/LwyXT0I9tK +04/16/2018,Politicians,@RickSantorum,RT @CNNSotu: On #CNNSOTU @RickSantorum says Trump Twitter habits are a 'frustration' https://t.co/pfEyGdh5PH +04/15/2018,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @SenAngusKing, @MichaelAvenatti, @PreetBharara, @JenGranholm, @RickSantorum, @…" +04/11/2018,Politicians,@RickSantorum,Proud to endorse @MangoForPA for #PAGov It is time Pennsylvania conservatives rally around Paul! A man I trust on… https://t.co/7CTqtq4tKP +04/06/2018,Politicians,@RickSantorum,"We were at dinner w Darrell and Sandy Scott, the founders of @RachelsChalleng. Kyle, I hope your app can match the… https://t.co/S6DDBmJM8n" +03/26/2018,Politicians,@RickSantorum,My point on #CNNSOTU is the same point I have made since the shooting - relying on more government to focus on guns… https://t.co/701Xsr0I8P +03/20/2018,Politicians,@RickSantorum,Life Support for ObamaCare. Great summary of the policy disaster being pushed by House GOP leadership. No life supp… https://t.co/gtkclLXGmb +03/16/2018,Politicians,@RickSantorum,Republicans Are Trying to Bail Out Obamacare https://t.co/bkpB7fjrHB. Propping up a failed system is bad policy and… https://t.co/vyt4lKHEji +03/14/2018,Politicians,@RickSantorum,@jaketapper @ConorLambPA .@jaketapper @ConorLambPA was not chosen in a primary open to the public and progressive m… https://t.co/91Vr9RgKo7 +03/13/2018,Politicians,@RickSantorum,Setting the record straight and making the case for strengthening rural America. https://t.co/UNShHbAo32 #ethanol +03/08/2018,Politicians,@RickSantorum,There is only one true Prolife candidate for governor in PA. https://t.co/RSjaW4CLWn +03/08/2018,Politicians,@RickSantorum,I am a great fan of Joel and his novels. Every book is prescient and gripping and #TheKremlinConspiracy is no excep… https://t.co/XFatModeg0 +03/07/2018,Politicians,@RickSantorum,Please join us! https://t.co/zjZe3zLpcf +03/02/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU with @jaketapper this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @chavezlinda and @Bakari_Sell…" +02/27/2018,Politicians,@RickSantorum,https://t.co/pqeG72oIEd +02/27/2018,Politicians,@RickSantorum,https://t.co/zAa6IkohHU +02/27/2018,Politicians,@RickSantorum,Saying that boys need dads is not an attack on moms. Fact- vast majority of young men in prison & school shooters w… https://t.co/IvfmSXbhNk +02/25/2018,Politicians,@RickSantorum,I will! https://t.co/RYRnta4iSC +02/22/2018,Politicians,@RickSantorum,"Proud to endorse my friend @RogerWicker who has been a stalwart conservative, in particular helping me in the fight… https://t.co/JipdIwTkKv" +02/20/2018,Politicians,@RickSantorum,I admit I am one of the five. https://t.co/sMUXu6D62x +02/20/2018,Politicians,@RickSantorum,"PA is indeed a proud commonwealth and should be referred to as such, but it is not incorrect to call PA a state sin… https://t.co/vPb68AAqCW" +02/14/2018,Politicians,@RickSantorum,In church now praying for the victims the families and the community. May God have mercy on their souls and give comfort to all who mourn. +02/12/2018,Politicians,@RickSantorum,"RT @realDonaldTrump: Rep. Lou Barletta, a Great Republican from Pennsylvania who was one of my very earliest supporters, will make a FANTAS…" +02/11/2018,Politicians,@RickSantorum,Looking forward to seeing how a great university welcomes diverse viewpoints. https://t.co/EsMa1RS6P6 +02/11/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU with @jaketapper this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @chavezlinda and @K_JeanPierr…" +02/04/2018,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Busy morning here at #CNNSOTU w/ @JakeTapper: @SenatorDurbin, @jahimes, @RepBradWenstrup, @RickSantorum, @JenGra…" +01/31/2018,Politicians,@RickSantorum,Like @realDonaldTrump the #sotu is different in that it is laced throughtout with narratives. Not just a policy add… https://t.co/iiPwvTvV57 +01/30/2018,Politicians,@RickSantorum,Will be on CNN tonight before and after #SOTU. Top of my wish list for @realDonaldTrump tonight - challenge senate… https://t.co/kt4GsrGrDk +01/19/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Let's support the @March_for_Life today by passing the Born-Alive Abortion Survivors Protection Act (H.R. 4712) introdu… +01/19/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Thank you @realDonaldTrump for speaking to the @March_for_Life! Watch here at approximately 12:15pm ET: https://t.co/vo… +01/19/2018,Politicians,@RickSantorum,Will be on @AC360 to discuss why Democrats are voting against a spending bill tonight that they had nothing in it t… https://t.co/DAJA0oiiF4 +01/18/2018,Politicians,@RickSantorum,"Not acting on replacing Obamacare would not only be political suicide, but would be abandoning 30 million people tr… https://t.co/Sw6LovdsAD" +01/14/2018,Politicians,@RickSantorum,https://t.co/kVVEvjHiFK. The intolerance of the left rears its ugly head yet again. +01/14/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU w/ @jaketapper this Sunday to hear from our panel: @RickSantorum, @neeratanden,@carlosgutierrez and @K_Jean…" +01/10/2018,Politicians,@RickSantorum,Here are some facts to counter the left’s assertions that the current immigration system works just fine. I am pro… https://t.co/uDUhSxQ1qt +01/10/2018,Politicians,@RickSantorum,"The House Chairmen’s Plan for Immigration Reform. This proposal protects American workers, makes us safer and keeps… https://t.co/FPGzyJwYth" +12/15/2017,Politicians,@RickSantorum,We families with children devote most of our money and time to raise and educate the next generation to defend our… https://t.co/LSVRqVpAQi +12/12/2017,Politicians,@RickSantorum,RT @patriotmom61: Catch @RickSantorum today at the top of the 3 pm ET hour on with @BrookeBCNN #Trump #AlabamaSenateRace #tcot https://t.c… +12/12/2017,Politicians,@RickSantorum,Will be on CNN all evening covering the Alabama senate race. Would appreciate any intel from my Alabama followers. +12/03/2017,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @MarkWarner, @SenatorTimScott, @RickSantorum , @K_JeanPierre , @JenGranholm &…" +11/29/2017,Politicians,@RickSantorum,Looking forward to defending our constitutional rights at GW tonight. Join us at https://t.co/tKIRBI680n. https://t.co/PbWumURcJf +11/28/2017,Politicians,@RickSantorum,The next first family of Minnesota! God speed. https://t.co/EyZAzKBhFM +11/27/2017,Politicians,@RickSantorum,Americans are waking up to war on vast majority of campuses against anything and anybody that doesn’t agree with pr… https://t.co/liTanexA0b +11/27/2017,Politicians,@RickSantorum,.@repmattdean and Laura Dean are great people and will be a huge upgrade in the governors office in MN! Looking fo… https://t.co/z7GRufB9bg +11/27/2017,Politicians,@RickSantorum,Thank you Aimee and all YAF members for your courage and hard work. Can’t wait to defend our constitution at George… https://t.co/yu2nBAVGN0 +11/26/2017,Politicians,@RickSantorum,Stephen Moore is so right! Congress should add these provisions to the tax bill now. https://t.co/GKqdmZGFF6 +11/08/2017,Politicians,@RickSantorum,"Off camera note in large print from @AC360 to me, note in small print added by @VanJones68. https://t.co/2jcnPpe5Gf" +11/01/2017,Politicians,@RickSantorum,"For those not watching WS game 7, join me on @AC360 at 9 ET. Will be on for the full hour." +10/21/2017,Politicians,@RickSantorum,Wish I could join the next Lt Gov of GA @DavidShafer on Sunday in Duluth. https://t.co/9SuciHCGlj +10/21/2017,Politicians,@RickSantorum,@NCCouncilman @alexandraheuser Thanks Ethan. Great being w you and @MikeDeWine at K’s Hamburger Shop in Troy again. +10/20/2017,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @Bakari_Sellers and @Evan_McMullin. https://t.…" +10/10/2017,Politicians,@RickSantorum,".@ingrahamangle new must read book takes on the GOP Establishment & explains the populist rise of @realdonaldtrump. +https://t.co/rJ1MPNkvuD" +10/10/2017,Politicians,@RickSantorum,@EFrazier512 @SarahLeeAnne @alexandraheuser Let me apologize for not sending a thank you. I didn’t have many contri… https://t.co/IBuRnm1pp8 +10/09/2017,Politicians,@RickSantorum,Looks like a good crowd. Looking forward to some great interaction with the students. https://t.co/ACVt2JrFgS +10/09/2017,Politicians,@RickSantorum,Having a great day in Tuscaloosa. Just visited the Sabin Catholic Center. https://t.co/ACVt2JrFgS +10/08/2017,Politicians,@RickSantorum,Will be on in a few minutes. https://t.co/b4UwmyWi69 +09/24/2017,Politicians,@RickSantorum,@valsthewoman Not the same rules. Block grant allows states to spend money to set up a completely different approach. Broad flexibility. +09/22/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum Explains the Graham-Cassidy Healthcare Plan With Mark Levi... https://t.co/UKyzjpPQjS #GrahamCassidy #tcot… +09/21/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum coming up on @marklevinshow at 7:15 pm EST to discuss #GrahamCassidy plan. Tune in! #MAGA #tcot #teaparty… +09/21/2017,Politicians,@RickSantorum,"Read what can happen by giving states the flexibility in #GrahamCassidy. Better coverage, higher quality, less money https://t.co/mfufbfIWpz" +09/21/2017,Politicians,@RickSantorum,Great synopsis dispelling myths and extolling the benefits of #GrahamCassidy. Call your senator now 202-224-3121.… https://t.co/ZUj2LqcrCG +09/21/2017,Politicians,@RickSantorum,Happy to have been part of an effort to end his aggravation permanently. Let's help put him out of his misery - hel… https://t.co/NjIc10Q0Ah +09/21/2017,Politicians,@RickSantorum,".@RandPaul voted for ""skinny"" repeal that kept more ACA taxes than #GrahamCassidy, but opposes GC because it doesn't repeal all ACA taxes???" +09/21/2017,Politicians,@RickSantorum,"Fascinating to see @RandPaul working hard to save Medicaid Expansion. Opposes #GrahamCassidy, but voted for ""skinny"" bill that preserved it." +09/21/2017,Politicians,@RickSantorum,It's #GrahamCassidyِ or Berniecare. Even Bernie agrees Ocare is a failure why else would he propose a new system. https://t.co/v0ljXWXlpP +09/21/2017,Politicians,@RickSantorum,"#GrahamCassidy doesn't amend ACA insurance regs on pre-existing condition, gives states flexibility on how to provi… https://t.co/rDN4Uu7yFF" +09/19/2017,Politicians,@RickSantorum,My response to Senator Paul's distortion of #GrahamCassidy https://t.co/4I2NJ1dsS6. Call your senator to vote yes on repeal and replace! +09/19/2017,Politicians,@RickSantorum,Must read to understand how more people will get better coverage under #GrahamCassidyِ https://t.co/amRQZ2dHyE +09/19/2017,Politicians,@RickSantorum,Call your senators to vote yes on #GrahamCassidy. https://t.co/P8Df8XRfgR +09/18/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Chuck Schumer & Elizabeth Warren tweeting opposition to #GrahamCassidy! Ask Senate to support here https://t.co/CGvOjWD… +09/18/2017,Politicians,@RickSantorum,.@dougducey thank you for all the work you did to improve #GrahamCassidy and for taking the lead for better healthc… https://t.co/8AFuxB7lU7 +09/17/2017,Politicians,@RickSantorum,"Logic? I want to give parents the power to save innocent life, not the power to take innocent life. Not just about… https://t.co/XZC7url7ir" +09/17/2017,Politicians,@RickSantorum,A man who wants to make sure parents of children w birth defects not the government have the power to decide what i… https://t.co/WvF08rP2KO +09/17/2017,Politicians,@RickSantorum,RT @alexandraheuser: @RickSantorum #CNNSOTU here's the story the Democrats have finally stood up and admitted that Obamacare is a failure. +09/17/2017,Politicians,@RickSantorum,Emergency room visits hit all-time high during ACA implementation https://t.co/ad40R57oMJ. Now who is the dolt? Pas… https://t.co/TDZaYRtZDG +09/17/2017,Politicians,@RickSantorum,#GrahamCassidy is only option to stop job killing employer mandate. Passage will cut taxes the deficit and spending… https://t.co/FSYzpWCv4p +09/15/2017,Politicians,@RickSantorum,"At the Capitol today working w senate Republicans building support for innovative, quality driven, affordable healthcare. End of ACA is near" +09/14/2017,Politicians,@RickSantorum,RT @LindseyGrahamSC: https://t.co/AL9KH3cKdL +09/13/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch @RickSantorum live at 4pm with @jennybethm of Tea Party Patriots. Will share here: https://t.co/NbSuBtSdU1 +09/13/2017,Politicians,@RickSantorum,Watch press conference here. Contact your Senators and Governors. #DrainTheSwamp https://t.co/PU9U6GZ86n +09/07/2017,Politicians,@RickSantorum,Great to see my good friend Dan Meuser throw his hat in the ring in #PA11 #papolitics +09/03/2017,Politicians,@RickSantorum,Back to back shows this morning. Join @CNNSotu and me for a #LabourDayWeekend Doubleheader! https://t.co/zkC5XiRAAJ +08/31/2017,Politicians,@RickSantorum,.@ScottWalker has provided incredible leadership to rally support for this proposal w other govs. https://t.co/tpyyBzBwTs via @BreitbartNews +08/29/2017,Politicians,@RickSantorum,Just received an email from @RepLouBarletta. He is running for US Senate in PA! Check out his announcement video. https://t.co/VmjBhHl14Q +08/25/2017,Politicians,@RickSantorum,"For conspiracy theorists who think @FosterFriess is trying to manipulate coffee futures, I am sure that he will pay… https://t.co/2wetyDs2dH" +08/25/2017,Politicians,@RickSantorum,ACA gives 40% of $ to 4 wealthy states w 21% of the people. Support R Govs plan to treat needy the same in each St. https://t.co/uJ7bwwb5dZ +08/24/2017,Politicians,@RickSantorum,Safe spaces and ‘ze’ badges: My bewildering year at a US university https://t.co/36m7XGuHXA +08/22/2017,Politicians,@RickSantorum,Santorum Crafting Different Obamacare Repeal Plan with Lawmakers: ‘It Will Pass Through the House and the Senate’ https://t.co/CIcfzy5VqO +08/21/2017,Politicians,@RickSantorum,What a great challenge! Join @FosterFriess in having coffee with someone you disagree with. #return2civility @VanJones68 coffee? +08/20/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Make sure to watch @RickSantorum on @CNNSotu Sunday morning! https://t.co/VmpXNeYvqa +08/08/2017,Politicians,@RickSantorum,RT @FuelsAmerica: Happy Birthday #RFS. Join the celebration by telling @EPA that the #RFSWorks for America! Click HERE ➡️ https://t.co/MRKi… +08/06/2017,Politicians,@RickSantorum,"RT @CNNSotu: This AM w/ @JakeTapper: @GovChristie, @RepAdamSchiff, @SenRonJohnson, @ninaturner, @RickSantorum, @amandacarpenter, @RepRoKhan…" +08/06/2017,Politicians,@RickSantorum,Santorum: How to get family policy right for working families | TheHill https://t.co/engF9zxDDI +08/03/2017,Politicians,@RickSantorum,American made biofuels will be key to making sure we reach energy security! #MAGA https://t.co/e2Sue77drb +08/03/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Co-Chair @RickSantorum reminds @EPA that #ethanol represents the next great economic driver in the heartland. https://t… +08/03/2017,Politicians,@RickSantorum,Thanks @DineshDSouza & @LifeZette for telling the truth. Debunking the Lie That Trump Is a Fascist | LifeZette https://t.co/LuRAy5Cbmc via +08/03/2017,Politicians,@RickSantorum,.@POTUS Working w GOP Govs on welfare in 96 produced most successful reform in history Thanks for engaging them on #healthcare. #leadership +08/03/2017,Politicians,@RickSantorum,.@POTUS Thanks for not giving up on #healthcarebill & supporting sending money to states where 25 states totally controlled by GOP v 6 by Ds +08/03/2017,Politicians,@RickSantorum,I think Archbishop Chaput sums up my response very well. https://t.co/EHrQHM3WDK. https://t.co/8Ugjqdvx8s +07/31/2017,Politicians,@RickSantorum,"AP is reporting my good friend @loubarletta is running for the Senate against Casey. Boy, wouldn't that be great! #RunLouRun" +07/28/2017,Politicians,@RickSantorum,"If senate passes ""Skinny Repeal"" GCH can be substituted in conference. Only chance to get majorities in both houses. https://t.co/Pq7nkUJJvS" +07/27/2017,Politicians,@RickSantorum,"Congratulations to my good friend, there is no better defender if religious liberty. Well done @POTUS! https://t.co/4IHVQhbe1R" +07/27/2017,Politicians,@RickSantorum,"RT @BillCassidy: Proud to have @SenDeanHeller join me and @LindseyGrahamSC as a cosponsor of the Graham-Cassidy Amendment. ""Graham-Cassidy-…" +07/26/2017,Politicians,@RickSantorum,Thank you for putting the security of our country and the safety and efficacy of our soldiers ahead of gender polit… https://t.co/gzGY83hlZj +07/26/2017,Politicians,@RickSantorum,Tune into CSpan2 to hear Senators Cassidy and Graham discuss the only viable alternative to ACA. +07/20/2017,Politicians,@RickSantorum,Truly enjoyed my conversation w a great former Pittsburgher at the Capitol. @UKCoachCalipari https://t.co/mxiNfe7uD4 +07/20/2017,Politicians,@RickSantorum,Working on moving healthcare decisions out of D.C. and closer to the doctor and patient. #GrahamCassidy.… https://t.co/RaGEhvlLuv +07/18/2017,Politicians,@RickSantorum,"@POTUS after last night's announcements on McConnell bill, the only viable path left to get 50 votes is #GrahamCassidy. #Drain the Swamp" +07/18/2017,Politicians,@RickSantorum,"For the Love of Charlie Gard +Well said Bill, I couldn't have said it better. https://t.co/jvuEgiFEDQ" +07/13/2017,Politicians,@RickSantorum,"Modeled after Welfare Reform. This will #DrainTheSwamp Graham, Cassidy unveil alternative plan @CNNPolitics https://t.co/z8Z99jPXqw" +07/09/2017,Politicians,@RickSantorum,RT @PVCoDirectorVal: @RickSantorum wants #GOP Governors to put together a Healthcare Solution that enables #Senators to #RepealAndReplace #… +07/06/2017,Politicians,@RickSantorum,RT @USAEnergy: #RFSworks for energy security says AESI co-chairs @JimTalent @RickSantorum https://t.co/GYb00oFQd0 https://t.co/7x2KL0r6Wr +07/05/2017,Politicians,@RickSantorum,Looking forward to speaking with our country's future leaders. Great young people who have the courage to stand for… https://t.co/dpKFuQdl3X +07/05/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum will be on @CNNnewsroom at 2:15 EST to discuss @POTUS trip to #G20Summit & more. #Trump #Putin #Russia #AH… +07/04/2017,Politicians,@RickSantorum,RT @USAEnergy: Each gallon of homegrown #ethanol brings us one step closer to long-term energy security. Happy #July4th! https://t.co/lxHqt… +07/01/2017,Politicians,@RickSantorum,"Failure means ACA stays, worse some Rs would join Ds to give it more money so it doesn't collapse. @POTUS must sign… https://t.co/7EwOq2mLAg" +06/26/2017,Politicians,@RickSantorum,"RT @USAEnergy: Pres @realDonaldTrump applauded in US heartland for commitment to homegrown #biofuels, #ethanol https://t.co/oTZ1OUi2Ws" +06/26/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Send quick email to your US Senators to pass Senate Health Care Bill & defund Planned Parenthood by using link here: ht… +06/25/2017,Politicians,@RickSantorum,RT @yaf: Don't miss out on the opportunity to hear @RickSantorum at YAF's NHSLC! Register here: https://t.co/DmXSl0xHL0 https://t.co/J5sliB… +06/23/2017,Politicians,@RickSantorum,Will also be on @OutFrontCNN tonight talking senate healthcare bill. https://t.co/2iN2e61i97 +06/18/2017,Politicians,@RickSantorum,"RT @CNNSotu: Joining @jaketapper this Sunday on #CNNSOTU : @Bakari_Sellers , @RepDebDingell , @RepCharlieDent , and @RickSantorum https://t…" +06/14/2017,Politicians,@RickSantorum,"Praying for @SteveScalise, the injured and those who witnessed this horror. Prayers also for their families." +06/08/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Co-Chair @JimTalent reminds Oregonians that #RFS is economic & national security priority https://t.co/p2NiZe8NmL +06/02/2017,Politicians,@RickSantorum,"More climate on #CNN shortly. Thanks for the feedback +&-, but batteries for storage$$$$? Grid must have reliable base & peak power sources." +06/02/2017,Politicians,@RickSantorum,Keeping pledges bolsters our credibility internationally even w those who disagree w the policy & concessions to the PA won't bring peace +06/02/2017,Politicians,@RickSantorum,"Another @NewDay morning! Congrats to @POTUS for keeping pledge nixing #ParisAccords, but very disappointed he broke one on Jerusalem embassy" +06/01/2017,Politicians,@RickSantorum,Sad to be criticized by the left for something as obvious as solar (clouds & darkness) and wind (calm winds) are no… https://t.co/jmAGv6fSVD +06/01/2017,Politicians,@RickSantorum,Going on @NewDay in minutes to talk Paris Climate decision. #MakeAmericaGreatAgain by helping keep energy prices low for American workers +05/31/2017,Politicians,@RickSantorum,"From @JohnBrabender : Did Russia interfere with our election? Yes. Did it elect Trump, absolutely not https://t.co/lMTkd0Og0E" +05/29/2017,Politicians,@RickSantorum,Feeling very blessed today to be enjoying a day w family. Thanks to all those who sacrificed to make it possible. #memorialdayweekend2017 +05/26/2017,Politicians,@RickSantorum,RT @CNNSotu: Tune in Sunday for thoughts from the best political minds with the #CNNSOTU panel @ninaturner @RickSantorum @JenGranholm and @… +05/25/2017,Politicians,@RickSantorum,Enjoyed helping my city host ambassadors from 34 countries this week. They all were impressed w the comeback story… https://t.co/t3XY0jzE9P +05/25/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Chair @RickSantorum illustrates how homegrown #biofuels are driving American energy security https://t.co/QVts8eD2hp +05/24/2017,Politicians,@RickSantorum,Check out my oped in this morning's @WashTimes about the importance of biofuels in an all of the above energy policy https://t.co/huE9Acv76N +05/23/2017,Politicians,@RickSantorum,We are Manchester 🇬🇧. Praying now for victims and all waking up in UK to this attack on their countrymen and on our friend and ally. +05/21/2017,Politicians,@RickSantorum,RT @PVCoDirectorVal: @Patriot_Voices Chairman @RickSantorum has rallied #Trump supporters with this outstanding push against the #MSM #fake… +05/13/2017,Politicians,@RickSantorum,RT @USAEnergy: US #biofuel production continues to climb - #RFS works for Energy Security https://t.co/bJNfK1c5cb +05/12/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Send a quick email to your U.S. Senators to Repeal Obamacare & Defund Planned Parenthood! Use the link here: https://t.… +05/12/2017,Politicians,@RickSantorum,I enjoyed my time with the men and women from banks across PA who are on the front lines of making the economy work… https://t.co/yfVtHJxe3t +05/02/2017,Politicians,@RickSantorum,I hear that @RepLouBarletta is being strongly encouraged to run for the U.S. Senate. My good friend Lou would make a great Senator. #tcot +04/29/2017,Politicians,@RickSantorum,"Actually next best thing to being at the @penguins @Capitals game, then the PA Trump Rally! #LetsGoPens" +04/29/2017,Politicians,@RickSantorum,"Talking 1st 100 Days 8-11 tonight w @JohnBerman & @PoppyHarlowCNN, then @CNNSotu w @jaketapper, next best thing to being at PA Trump Rally!" +04/24/2017,Politicians,@RickSantorum,Kate Walsh O'Beirne R.I.P. | National Review. Kate defined tough love to her conservative friends. Thank you! https://t.co/syKffQxMXA +04/22/2017,Politicians,@RickSantorum,"Honored to join my friend Larry Wittig to christen the ""Bella Santorum"" into the @DrexelUniv crew fleet. Go Dragons! https://t.co/moNE4fT7S8" +04/18/2017,Politicians,@RickSantorum,RT @PatriotVoicesPA: Packed house awaiting @RickSantorum speaking on the degradation of traditional American values. #YAFonCampus https://t… +04/18/2017,Politicians,@RickSantorum,Just walked around @Princeton beautiful campus on a great spring day. Looking forward to interacting w students her… https://t.co/fdPnRJ1Ac3 +04/16/2017,Politicians,@RickSantorum,Went to Easter Vigil w/ family tonight. Best 2 1/2 hours of the yr. A blessed Easter to my all brothers and sisters in Christ. He is Risen! +04/13/2017,Politicians,@RickSantorum,Excited to speak on 4/27 on how a new village concept called @NeoRetroism can positively reknit our communities. https://t.co/J5ERSL0Jyv +04/13/2017,Politicians,@RickSantorum,Really enjoyed engaging the students at @CalStateLA! Thanks to @yaf for a well run event. https://t.co/ongTFlYiK8 +04/12/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch @RickSantorum speak NOW at 6pm ET @ CA State University LA in spite of the protesters @yaf Stream here: https://t… +04/11/2017,Politicians,@RickSantorum,Hoping CSULA students will come ready to engage in a dialogue on the issues. Tolerance is based on mutual respect n… https://t.co/K1rBjuZ3wd +04/09/2017,Politicians,@RickSantorum,RT @CNNSotu: The #CNNSOTU panel @RepMikeRogers @jrpsaki @RickSantorum @vali_nasr weigh in on the busy news week with @jaketapper https://t.… +04/09/2017,Politicians,@RickSantorum,RT @CNNSotu: This morning on #CNNSOTU w/@jaketapper: UN Amb @nikkihaley @SenMarkey & our panel @RepMikeRogers @jrpsaki @RickSantorum @vali_… +04/07/2017,Politicians,@RickSantorum,RT @CNNSotu: This week on the #CNNSOTU with @jaketapper panel: @RepMikeRogers @jrpsaki @RickSantorum and @vali_nasr. Join us! https://t.co/… +04/07/2017,Politicians,@RickSantorum,Speaking in Dallas on April 27th on why It Takes a Village - I mean a real village! https://t.co/taZ1RHYvHd +04/06/2017,Politicians,@RickSantorum,Congratulations to all Senate Republicans for establishing the proper standard for confirming justices to the… https://t.co/6UPeKnWaaz +04/05/2017,Politicians,@RickSantorum,RT @JamesDAlessio: Great to have @RickSantorum back in SC stumping for @TomMullikinSC! Great crowd and great BBQ in Prosperity! https://t.c… +04/04/2017,Politicians,@RickSantorum,Any deal not to filibuster Gorsuch in exchange for allowing the Ds to filibuster the next one is political insanity. They will block anyone! +04/03/2017,Politicians,@RickSantorum,About to go on @CNN after @seanspicer press conference. Pleased that Republicans united behind nuclear option to confirm #Gorsuch. +04/01/2017,Politicians,@RickSantorum,RT @sandraschulze: Happy to raise funds for former Veteran @shannongrove and for the @warriorrising at @MadoroMwines Thanks to guest speake… +04/01/2017,Politicians,@RickSantorum,RT @RealTimers: Send us your questions for tonight's #RealTime guests and watch them answer LIVE after the show on #RTOvertime: https://t.c… +03/24/2017,Politicians,@RickSantorum,RT @CNNSotu: Watch #CNNSOTU Sunday for thoughts from the best political minds with our panel @Bakari_Sellers @RickSantorum @RepDebDingell @… +03/24/2017,Politicians,@RickSantorum,"Several good candidates, but Tom Mullikin is a solid conservative & veteran who served the US & SC w distinction. https://t.co/Y7Id4b7Xmu" +03/24/2017,Politicians,@RickSantorum,"""Time to govern"" is always the cry of leaders who can't convince on policy to vote for their bill. It rarely is a good reason. It is today" +03/23/2017,Politicians,@RickSantorum,Agree! Any Republican considering this wants to take the next SCOTUS pick away from @POTUS and give it to… https://t.co/vVQjvFXpZ9 +03/23/2017,Politicians,@RickSantorum,Senate Republicans should announce that a simple majority vote will be new requirement to confirm SCOTUS nominees. https://t.co/D4X5uhjb7o +03/23/2017,Politicians,@RickSantorum,Thank you @Students4LifeHQ for your tireless work. Congrats on 10 yrs of incredible achievements #ProLifeGen #SFLA10 https://t.co/V2vEjFPDZf +03/20/2017,Politicians,@RickSantorum,"RT @USAEnergy: Iowa’s @ChuckGrassley leads 23 senators calling on @POTUS to protect #RFS, homegrown fuels, writes @toddneeleyDTN https://…" +03/20/2017,Politicians,@RickSantorum,"RT @jaketapper: .@RickSantorum: Now that FBI disclosed investigation, needs to quickly work to conclude https://t.co/UWpixOKFsE #TheLead" +03/20/2017,Politicians,@RickSantorum,More myth busting on ethanol. @USAEnergy https://t.co/X3xUAE19J0 +03/19/2017,Politicians,@RickSantorum,RT @77WABCradio: Tune in NOW for #ElectionCentral w/@RitaCosby with @RickSantorum @MasseyForMayor @KimGuadagnoNJ.. & Colonel David Hunt Sal… +03/18/2017,Politicians,@RickSantorum,Ben Bernstein the 5 yr old son of my good friend @LukeBernstein is an NCAA March Madness mascot Mensa! https://t.co/Dm1dSAdnoa +03/18/2017,Politicians,@RickSantorum,I know I will enjoy speaking and answering your questions @CalStateLA on April 12th. https://t.co/q6uxcroycz +03/17/2017,Politicians,@RickSantorum,Get your copy of my good friend @JoelCRosenberg book #WithoutWarning. Like all of his books it is a real page turne… https://t.co/GDiIRNJJAu +03/17/2017,Politicians,@RickSantorum,Happy St. Patrick's Day! Will be sporting my green tie in a couple of minutes on @NewDay +03/14/2017,Politicians,@RickSantorum,On @OutFrontCNN I said healthcare solution is to block grant all non-Medicare health $ to states. See this result https://t.co/q9cAFBRTuV +03/12/2017,Politicians,@RickSantorum,Facts about @PPact false claim that reallocating money from their abortion clinics would limit access to healthcare. https://t.co/bjZ4a9g6Ps +03/12/2017,Politicians,@RickSantorum,@neeratanden said I was wrong about ER visits up due to Medicaid expansion. Argue with @washingtonpost not me https://t.co/5fLRP7WBn8 +03/12/2017,Politicians,@RickSantorum,"@RepGutierrez repeats false narrative that ACA gave people health CARE, already was law requiring healthcare, ACA required health INSURANCE." +03/11/2017,Politicians,@RickSantorum,"Check out my oped appearing in tomorrow's @DMRegister : ""Trump will stand strong for RFS, rural America"" #RFS https://t.co/NQWANMwJgH" +03/10/2017,Politicians,@RickSantorum,RT @CNNSotu: Sun on #CNNSOTU w/ @jaketapper @SenJohnMcCain @CoryBooker Dir Mick Mulvaney & panel @RickSantorum @neeratanden @RepMarkMeadows… +03/09/2017,Politicians,@RickSantorum,RT @CNNSotu: Join us on #CNNSOTU this Sunday at 9am & 12pm ET for insights from our panel @RepMarkMeadows @neeratanden @RickSantorum @RepGu… +03/09/2017,Politicians,@RickSantorum,I will be giving my opinion on ACA repeal and replace on @CNN next hour with John and Poppy. There is a better way to do this. +03/07/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch Diamond and Silk talk about how important it is to join Patriot Voices! https://t.co/GbrBnA3ehg @RickSantorum #Ma… +03/06/2017,Politicians,@RickSantorum,"RT @DMRegister: Refiners will continue to be responsible for blending in renewable fuels, the governor said. https://t.co/6CAGycxlAq" +03/04/2017,Politicians,@RickSantorum,Also my friends @DiamondandSilk and Rep Tan Parker and county chair Lisa Hendrickson. Will be a great evening. https://t.co/meWqoyC79c +03/04/2017,Politicians,@RickSantorum,"Another example of systemic bias at colleges. For conservatives at Cornell University, high price for free speech https://t.co/KZdKsCtvJd" +07/02/2018,Politicians,@RandPaul,Thank you to the US Capitol Police for their arrest of the man who recently threatened to kill my family and me. +07/02/2018,Politicians,@RandPaul,"Glad to be in Leitchfield, KY this morning giving an update on my work in the Senate. Highlighting things like my P… https://t.co/b5ldeMXnOL" +06/27/2018,Politicians,@RandPaul,RT @RandyEBarnett: I’d say it was when Burr shot and killed Hamilton. https://t.co/4fEPsZMO7w +06/27/2018,Politicians,@RandPaul,ICYMI: I joined @FoxNews to discuss Justice Kennedy's resignation and possible #SCOTUS nominees. https://t.co/x4JleEpaUS +06/27/2018,Politicians,@RandPaul,"I commend the court, applaud the decision, and congratulate @RightToWork and their team for their hard work and per… https://t.co/rcfsVf6uww" +06/27/2018,Politicians,@RandPaul,Today the Supreme Court in #Janus gave every public sector worker in America back their First Amendment rights and freedom of association. +06/26/2018,Politicians,@RandPaul,The uses for hemp are many – from buildings to medicine. The Commonwealth of Kentucky has a rich history of hemp gr… https://t.co/4IPLDgUXDU +06/26/2018,Politicians,@RandPaul,"RT @TFASorg: Thank you, Sen. @RandPaul and @SenMikeLee for sharing your expertise on Free Markets, Individual Liberty and Civil Society at…" +06/26/2018,Politicians,@RandPaul,"RT @TFASorg: .@SenMikeLee discusses his Due Process Guarantee Act, legislation he and Sen. @RandPaul say should have bipartisan support. ht…" +06/26/2018,Politicians,@RandPaul,RT @TFASorg: “Everyone should have the presumption of innocence and the right to a trial by jury in America.” - Sen. @RandPaul at the #TFAS… +06/26/2018,Politicians,@RandPaul,RT @TFASorg: Sen. @RandPaul begins today by talking about where right and left can come together. +06/26/2018,Politicians,@RandPaul,Join me and @SenMikeLee live now for the @TFASorg Capitol Hill Lecture Series: https://t.co/Bea4dPrEW9 +06/25/2018,Politicians,@RandPaul,"I recently spoke with Sinclair Broadcast Group’s @KristineFrazao about the failed Kabul ""Marriott"" in Afghanistan,… https://t.co/argApaiX5p" +06/21/2018,Politicians,@RandPaul,Great to have @Judgenap on Capitol Hill today for our summer intern lecture series! You can watch his talk here: https://t.co/M8mi6IR5fm +06/21/2018,Politicians,@RandPaul,"I always enjoy catching up with @KimDarroch, the British Ambassador to the US. Lots of catching up on issues includ… https://t.co/7r8JqY2FOQ" +06/20/2018,Politicians,@RandPaul,Congrats to a true liberty lover! @mkibbe https://t.co/0ajr6VKIQK +06/20/2018,Politicians,@RandPaul,"Today the U.S. Senate failed to discharge H.R. 3, President Trump’s rescissions package to cut $15 billion in unnee… https://t.co/EsWmepXs0n" +06/20/2018,Politicians,@RandPaul,Coming up right now on @FoxBusiness with @MariaBartiromo. +06/19/2018,Politicians,@RandPaul,"Our national debt is over $21 trillion. It has to stop now, or government will be too broke to do anyone any good,… https://t.co/UuPp2t6Wc9" +06/19/2018,Politicians,@RandPaul,"For months, I worked directly with President Donald Trump and Secretary Acosta to make this happen. Today, we are p… https://t.co/6yyzCkZSc3" +06/19/2018,Politicians,@RandPaul,"RT @lesleyclark: .@RandPaul has championed measure in the Senate, saying it would cut funding, including some that has ""sat around unspent…" +06/18/2018,Politicians,@RandPaul,"Join us Thursday, June 21 for @Judgenap's @TFASorg Capitol Hill Lecture: Do We Still Have a Constitution? https://t.co/Vw1TASdDjy" +06/18/2018,Politicians,@RandPaul,RT @amconmag: Excellent new video from our friends at @freethepeople highlighting the work @SenMikeLee @RandPaul @SenSanders and others are… +06/15/2018,Politicians,@RandPaul,"Bridges and roads across the country are in desperate need of repair, and funding is limited. So why are we spendin… https://t.co/3eMOhAhMh8" +06/15/2018,Politicians,@RandPaul,RT @FAMMFoundation: @RepJeffries and Senator @RandPaul are confirmed speakers for our #familiesforjusticereformNOW rally! #Brooklyn and #Ke… +06/14/2018,Politicians,@RandPaul,"From Milton Friedman: ""Nobody spends somebody else's money as carefully as he spends his own."" #ThrowbackThursday" +06/14/2018,Politicians,@RandPaul,It's @thehillbaseball Game Day! Learn more here: https://t.co/0hB7OoRubW https://t.co/LoNYhtjG3w +06/14/2018,Politicians,@RandPaul,RT @ToyotaPolicy: Our largest plant in the world is in Kentucky. Thanks for representing at @thehillbaseball game @RandPaul. #CBG18 https:/… +06/13/2018,Politicians,@RandPaul,America needs to know there is one opponent in the Senate who does not believe in the Bill of Rights. The right to… https://t.co/HuTrj9m4Mg +06/13/2018,Politicians,@RandPaul,RT @KyElectricCoops: @RandPaul with the Kentucky Youth Tour Delegates. #WYT2018 https://t.co/yyEeTHWtzE +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: Sponsored by The Einhorn Family Foundation, the #TFAS and @RandPaul Capitol Hill Lecture Series is free and open to all Washin…" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: “I think #economics intersects with freedom, and it’s what makes #freedom possible.” - Sen. @RandPaul" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: “I've spent my adult life trying to change ideas ... I think that if people understand #economics, the world will be a better…" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: #TFAS and the Office of Senator @RandPaul are co-hosting our one-of-kind lecture series bringing the ideas of free markets, in…" +06/11/2018,Politicians,@RandPaul,Lindsey Graham is a danger to the country by even proposing ideas like authorizing war with Korea https://t.co/JCToKXsDLu +06/11/2018,Politicians,@RandPaul,Giving the accused their day in court isn’t a suggestion. It’s enshrined in our Constitution as a cornerstone of ou… https://t.co/Ezc4z4Bn6e +06/11/2018,Politicians,@RandPaul,Very few other leaders or past presidents would have taken the meeting with North Korea. I agree with… https://t.co/VKLC9upCk4 +06/09/2018,Politicians,@RandPaul,RT @FreedomWorks: Senator @RandPaul continues to warn against the executive branch's unlimited war powers #Constitution #NeedsCongressional… +06/09/2018,Politicians,@RandPaul,ICYMI: I joined Judge Nap to discuss the Federal Spending Oversight Subcommittee hearing on whether or not wars not… https://t.co/fv5mn6m3NM +06/08/2018,Politicians,@RandPaul,"Someone is blocking my amendment to prevent indefinite detention of Americans! +https://t.co/9aoJi94EmK" +06/08/2018,Politicians,@RandPaul,"Earlier this week, I spoke with Newsy about unauthorized war and the Kaine-Corker AUMF. +https://t.co/TaFrc47Nlg" +06/07/2018,Politicians,@RandPaul,"BIG question for John Brennan, who has become such a vocal spokesman. Did you receive any secret info on candidate… https://t.co/0SHENEjGa3" +06/06/2018,Politicians,@RandPaul,RT @jackhunter74: .@RandPaul: Why have we been in Afghanistan 17 years? https://t.co/Gp4THre1Nu #FoxNews +06/06/2018,Politicians,@RandPaul,Here's my opening statement from today's hearing: https://t.co/xyHnhP6oxj +06/06/2018,Politicians,@RandPaul,"Today, I chaired a hearing to discuss the importance of Congress declaring or initiating war. Congress has been neg… https://t.co/KZiytO11XR" +06/06/2018,Politicians,@RandPaul,Lining up for my hearing at 2:30 “War Powers and the Effects of Unauthorized Military Engagements on Federal Spendi… https://t.co/fTzkwvMwcZ +06/05/2018,Politicians,@RandPaul,RT @FreedomWorks: Senator @RandPaul continues to warn against the executive branch's unlimited war powers #Constitution #NeedsCongressional… +06/05/2018,Politicians,@RandPaul,RT @CR: 🔥🔥🔥 @RandPaul ROASTS Bill Clinton for playing 'victim' 20 years after @MonicaLewinsky scandal https://t.co/lamupnunPI +06/05/2018,Politicians,@RandPaul,"RT @reporterjoe: NEW! @RandPaul/@SenGaryPeters holding ""War Powers and the Effects of Unauthorized Military Engagements on Federal Spending…" +06/05/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I’ve been very hopeful that it’s the beginning of dialogue…I think it’s one of President Trump’s strong points th…" +06/05/2018,Politicians,@RandPaul,RT @FoxNews: .@RandPaul on North Korea: “The U.S. taxpayers should not be paying them to not develop nuclear weapons.” @AmericaNewsroom htt… +06/05/2018,Politicians,@RandPaul,"Bill Clinton epitomizes the aggressor, not the victim. You can’t have an appropriate or consensual relationship wit… https://t.co/Rvxt2yr9Cw" +06/05/2018,Politicians,@RandPaul,Joining @BillHemmer shortly on @FoxNews! Tune in for a lively discussion! +06/04/2018,Politicians,@RandPaul,"This is wonderful news for Greenup County and the surrounding communities, and Braidy Industries’ selection of this… https://t.co/i224ujbqOg" +06/01/2018,Politicians,@RandPaul,#Veterans – join the 1000+ Kentucky vets and add your story to @LibraryCongress Veterans History Project! #LOCvets https://t.co/PWg30RkAsM +05/31/2018,Politicians,@RandPaul,I applaud the attention that criminal justice reform is getting from @KimKardashian and @realDonaldTrump. The syste… https://t.co/PQCYjUdhJl +05/30/2018,Politicians,@RandPaul,RT @SenMarkey: 40% of inmates enter the prison system with a substance use disorder. To successfully transition back to their communities a… +05/29/2018,Politicians,@RandPaul,"Stop the wasteful spending and come home. +https://t.co/XdEUOOtvvD" +05/29/2018,Politicians,@RandPaul,Congrats to Senator McCain for owning up to biggest foreign policy mistake of past few decades: the Iraq War. Hopef… https://t.co/QvrBCRC1Sj +05/25/2018,Politicians,@RandPaul,"This Memorial Day weekend, Americans will honor all those who gave their lives in service to our nation. Kelley an… https://t.co/KACw9l07kN" +05/25/2018,Politicians,@RandPaul,We need to acknowledge that Saudi Arabia is a problematic actor in the Middle East. We shouldn’t be enabling an arm… https://t.co/SC19fAJHcf +05/24/2018,Politicians,@RandPaul,"Great move by @realDonaldTrump today! +https://t.co/9rX860RtB5" +05/24/2018,Politicians,@RandPaul,"In case you missed it, I discussed these points in today's Senate Foreign Relations Committee hearing. Here's the… https://t.co/ENKzNyyhrU" +05/24/2018,Politicians,@RandPaul,We need to acknowledge that Saudi Arabia is a problematic actor in the Middle East. We shouldn’t be enabling an arm… https://t.co/cvZBCdejGd +05/23/2018,Politicians,@RandPaul,Worth watching! We need more fiscal conservatives in Washington! https://t.co/iHr40llIqs +05/23/2018,Politicians,@RandPaul,Massive government waste! https://t.co/P7wjM6nwAA +05/23/2018,Politicians,@RandPaul,"Interesting video and project that helps put things in perspective! + +https://t.co/kcyQWE6Yeb" +05/23/2018,Politicians,@RandPaul,"Walter E. Williams: From Russia with Love +https://t.co/K04kUnYO7V" +05/22/2018,Politicians,@RandPaul,Today I stand with @NickForVA. He’ll make a tremendous addition to a stagnant US Senate. I ask you all to support h… https://t.co/VMCYOKBZOM +05/22/2018,Politicians,@RandPaul,"The budget vote was a litmus test for conservatism that too many unfortunately failed. + +https://t.co/pmsH8xogkl" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul on the Middle East: ""We should quit creating chaos, we should defend ourselves when we need to over there, but…" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul: ""There is an argument, a debate we should have in our country over whether or not the military budget is too s…" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul on @LindseyGrahamSC: ""I would call him a big-government Republican. To him, feeding the military industrial com…" +05/21/2018,Politicians,@RandPaul,RT @SecretsBedard: Boom: Team Trump cuts nearly twice as many regulations as promised https://t.co/JoRMuCEuvC +05/18/2018,Politicians,@RandPaul,Enjoyed being on your show! https://t.co/dB96IIYNkS +05/18/2018,Politicians,@RandPaul,I applaud @realDonaldTrump for taking action to stop federal money funding abortions. https://t.co/RciUDxXdfK +05/18/2018,Politicians,@RandPaul,Joining @SRuhle on @MSNBC to discuss my opposition to Ms. Haspel. https://t.co/3jCaFzY9x3 +05/18/2018,Politicians,@RandPaul,Joining @MariaBartiromo shortly on @FoxBusiness. Tune in! https://t.co/Djhd3MeUk8 +05/17/2018,Politicians,@RandPaul,Here's the vote roll call on my Penny Plan Budget from today. I would like to thank the Republicans who stood with… https://t.co/pIZEadHlFQ +05/17/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""Republicans say they are for balancing the budget so today is a litmus test. If your senator's been saying they'r…" +05/17/2018,Politicians,@RandPaul,This vote is a litmus test for conservatives. https://t.co/NaV5jHVHvu +05/17/2018,Politicians,@RandPaul,Our enormous debt threatens our national security. https://t.co/2HQkRciAnK +05/17/2018,Politicians,@RandPaul,The bottom line is whether the debt is threatening our country and it is. It's time for Republicans to step up the… https://t.co/0JkBjwB4mp +05/17/2018,Politicians,@RandPaul,Spending and waste is out of control. How moronic are we to keep flushing tax payer money down a rathole in Afghani… https://t.co/iXR6LpL8in +05/17/2018,Politicians,@RandPaul,"⚡️ “Senator Rand Paul Introduces His Penny Plan Budget” + +https://t.co/1nikzN80LX" +05/17/2018,Politicians,@RandPaul,To those highlighting my vote for tax cuts: allowing Americans to keep more of their own money is what republicans… https://t.co/vkgKQXK4PJ +05/17/2018,Politicians,@RandPaul,"Someone has to say ""enough is enough"" on waste, spending, and debt. https://t.co/H5EfiKKZxT" +05/17/2018,Politicians,@RandPaul,Let's expand Health Savings Accounts! https://t.co/xO3l4DplFz +05/17/2018,Politicians,@RandPaul,We shouldn't tolerate such abuse of taxpayer funds! https://t.co/Jgel4nMv0n +05/17/2018,Politicians,@RandPaul,My budget does much of what Republicans say they believe in. This bill is what we run on. I'm arguing for a yes vot… https://t.co/ezaRHPkNza +05/17/2018,Politicians,@RandPaul,"it continues...$850k for a televised national cricket league, $450k for a video game on climate change. https://t.co/aNy0iXvmAW" +05/17/2018,Politicians,@RandPaul,https://t.co/Zo1z6U3L6f +05/17/2018,Politicians,@RandPaul,https://t.co/Z84DjcJ1zG +05/17/2018,Politicians,@RandPaul,Here's another one of my favorite examples of waste. It's insulting. Today we're going to vote on budget that balan… https://t.co/VQbK0iteeM +05/17/2018,Politicians,@RandPaul,"Even MORE waste: study on the sex habits of quail on cocaine, sea monsters and the supernatural, kids from Pakistan… https://t.co/L85xgTT2mF" +05/17/2018,Politicians,@RandPaul,https://t.co/Wtq7dHzBpW +05/17/2018,Politicians,@RandPaul,Where else do they waste your money? Selfies. But of course we can't cut spending or balance the budget. https://t.co/Ega6xkmEr7 +05/17/2018,Politicians,@RandPaul,https://t.co/Kk7UiOvass +05/17/2018,Politicians,@RandPaul,"Also in Afghanistan, they shred new equipment and destroy it. Your tax dollars pay for it they destroy it. https://t.co/cPKT7Uvgy1" +05/17/2018,Politicians,@RandPaul,This is a hotel in Afghanistan. The government wasted $90 million for a hotel that will never be finished. US tax d… https://t.co/sDonIczbMx +05/17/2018,Politicians,@RandPaul,Should we borrow money to send it to other countries? How much do we spend in Afghanistan on building roads and bri… https://t.co/iwPvkuHOWt +05/17/2018,Politicians,@RandPaul,Does anyone in America think the government can't do with 1% less? If the government ran a balanced budget we would… https://t.co/hSLcZITVbg +05/17/2018,Politicians,@RandPaul,Republicans say we are for devolving spending and limited government and yet why won't they vote for a budget that… https://t.co/onsIHeWwoc +05/17/2018,Politicians,@RandPaul,The budget that republicans passed last year had entitlement reform. Did they do anything to enact those reforms? N… https://t.co/5PJT6Aa3F4 +05/17/2018,Politicians,@RandPaul,When we have a vote on my balanced budget in a minute we'll see republicans saying oh my we can't cut spending. The… https://t.co/iL0nbzG63v +05/17/2018,Politicians,@RandPaul,Dems and Republicans make an unholy alliance. Republicans get more military spending and dems get more welfare spen… https://t.co/8B1CO0djdM +05/17/2018,Politicians,@RandPaul,There is a point which debt is too cumbersome...We have a national debt of $21 trillion dollars. Currently the debt… https://t.co/8h1nRlKUYC +05/17/2018,Politicians,@RandPaul,"Right now, U.S. Senator Rand Paul (R-KY), chairman of the Federal Spending Oversight and Emergency Management (FSO)… https://t.co/tfCa5lRQFQ" +05/16/2018,Politicians,@RandPaul,Your Senator should be voting to balance the budget! This is a way to do it! +05/16/2018,Politicians,@RandPaul,"This is a litmus test for all Republicans! You either vote for fiscal responsibility and a balanced budget, or you… https://t.co/QHfHNtQPCi" +05/16/2018,Politicians,@RandPaul,RT @KelleyAshbyPaul: Enjoyed meeting @RandPaul’s summer intern class! https://t.co/Sd3ui4c2vb +05/16/2018,Politicians,@RandPaul,"This budget vote will be a litmus test for Republicans who claim to be conservative, but are only too happy to grow… https://t.co/EsdydOqQEu" +05/16/2018,Politicians,@RandPaul,"RT @club4growth: Club for Growth urges a ""YES"" vote on @RandPaul's ""Penny Plan"" balanced budget. Look for a key vote alert soon." +05/15/2018,Politicians,@RandPaul,"Earlier today, I sent the @CIA a letter inquiring about Ms. Haspel’s involvement or coordination in possible survei… https://t.co/jhYYpSSLaq" +05/15/2018,Politicians,@RandPaul,RT @CNNSitRoom: Senator @RandPaul: I’m hoping North Korea’s warnings against military drills are a “temporary setback” but “I’m still optim… +05/14/2018,Politicians,@RandPaul,Why Isn’t Gina Haspel Coming Clean About Torture? https://t.co/SLA1UOD68z +05/11/2018,Politicians,@RandPaul,"It’s past time we leave Afghanistan and instead focus on US infrastructure. +https://t.co/TpGBzhcQV7" +05/11/2018,Politicians,@RandPaul,"I stand with @GovMattBevin in cutting regulations, lowering taxes and bringing more jobs to Kentucky! https://t.co/rOcgdq2suG" +05/11/2018,Politicians,@RandPaul,Great to be with @GovMattBevin and @SteveCase in Louisville. Kentucky is open for business and investments! https://t.co/ZiGgSsIIh3 +05/09/2018,Politicians,@RandPaul,Live at 2:30PM: https://t.co/a8xrgmy23h Afghanistan in Review: Oversight of U.S. Spending in Afghanistan. Examining… https://t.co/YGx1ycWZ6w +05/09/2018,Politicians,@RandPaul,Congratulations to @MorriseyWV on his well deserved victory in the WV senate primary tonight. +05/08/2018,Politicians,@RandPaul,RT @McConnellPress: Bipartisan support is growing for the #HempFarmingAct. Joining @SenateMajLdr @RonWyden @SenJeffMerkley @RandPaul so far… +05/08/2018,Politicians,@RandPaul,Who would Jesus torture? Very thoughtful article from @amconmag. https://t.co/Gv3b5da7vj +05/08/2018,Politicians,@RandPaul,"Did Haspel send people to be tortured in Syria? Egypt? +""The most common destinations for rendered suspects are Egy… https://t.co/ZIORhPbgzP" +05/07/2018,Politicians,@RandPaul,The Founders left the power to make war in the legislature on purpose and with good reason. They recognized that th… https://t.co/NijVFxkJFd +05/07/2018,Politicians,@RandPaul,Watch this amazing story and wonderful kid. Great way to start the week. #MondayMotivation https://t.co/Bf9STrHjGN +05/04/2018,Politicians,@RandPaul,"RT @JoshJamesWUKY: .@RandPaul visits DV8 Kitchen in Lexington to meet with the owner and employees, and “learn more about their efforts to…" +05/04/2018,Politicians,@RandPaul,RT @GeorgetownJLPP: Watch incoming @GeorgetownJLPP Administrative Editor and @GtownFedSoc co-President Ryan McNulty give a Lifetime Service… +05/04/2018,Politicians,@RandPaul,"Visited @DV8Kitchen this morning in Lexington, KY. Always excited to highlight a great business focused on giving s… https://t.co/9oRRgm7Knj" +05/03/2018,Politicians,@RandPaul,"Had a great meeting with Marathon Marine in Cattletsburg, KY to talk about their priorities, Kentucky’s waterways,… https://t.co/Xo14tikvo8" +05/03/2018,Politicians,@RandPaul,"In an economic development meeting in Pikeville today, I discussed with local leaders how to bring more business to… https://t.co/nWr7DpkYSc" +05/03/2018,Politicians,@RandPaul,My wife and I love this Celtic prayer. She wanted to share it with you all for #NationalDayOfPrayer. It reminds her… https://t.co/iWgmXXIc66 +05/03/2018,Politicians,@RandPaul,"Starting the day in Pikeville, KY on the beautiful University of Pikeville campus, where Dr. Akers, the dean of the… https://t.co/cqTBq3fHlr" +05/02/2018,Politicians,@RandPaul,A great day to be in Western Kentucky! Thanks to the Owensboro Rotary Club for inviting me back to speak and give a… https://t.co/mAtIIzi8wE +05/02/2018,Politicians,@RandPaul,"We are $20 trillion in debt and counting. Our nation’s politicians are addicted to spending, and they need to be pu… https://t.co/MmPfpSngoS" +05/02/2018,Politicians,@RandPaul,Rand Paul to force Senate vote on budget-slashing bill https://t.co/Xm2ffjj5oi +05/02/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul: “I think there’s enough waste to cut 1% of it and make government more efficient.” #ampFW + +We agree! H…" +04/28/2018,Politicians,@RandPaul,RT @RepThomasMassie: 93 to 1. That was the vote to confirm James Comey as the FBI Director in 2013. Thank you @RandPaul. +04/28/2018,Politicians,@RandPaul,"Pakistani doctor jailed for helping find Bin Laden faces more trouble, moved to higher-security prison https://t.co/dQ4Yk1xq3W" +04/27/2018,Politicians,@RandPaul,RT @TNGOP: Thank you @gopnashville and @RandPaul for a great event! #TNGOP https://t.co/3gEjMYspRA +04/26/2018,Politicians,@RandPaul,"Great article from a lover of liberty! @Judgenap +https://t.co/XUrbvNOCKj" +04/26/2018,Politicians,@RandPaul,"#ThrowbackThursday ""We think we can just blow up Gaddafi and then all of a sudden Thomas Jefferson will get elected… https://t.co/aRP2KPrx3b" +04/26/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I sincerely am trying to end these wars. I'm trying to get them over - and I'll do what it takes."" https://t.co/7…" +04/26/2018,Politicians,@RandPaul,"This week the U.S. Senate Health, Education, Labor and Pensions (HELP) Committee passed my amendment to the Opioid… https://t.co/KNxnnhczXE" +04/26/2018,Politicians,@RandPaul,RT @AutumnDawnPrice: Senate Committee Advances .@RandPaul’s Bill To Fight The Opioid Crisis. https://t.co/W3K1D6mrWs via @dailycaller +04/25/2018,Politicians,@RandPaul,"Horrific report. ""At least 20 people including the bride were killed when an air strike by the Saudi-led coalition… https://t.co/A24kDW8mJx" +04/25/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I sincerely am trying to end these wars. I'm trying to get them over - and I'll do what it takes."" https://t.co/8…" +04/25/2018,Politicians,@RandPaul,RT @kilmeade: Tune into #thebriankilmeadeshow now to hear @MonicaCrowley interview Sen @RandPaul https://t.co/veWu8N7dzw 18664087669 https:… +04/25/2018,Politicians,@RandPaul,"Joining @BillHemmer shortly on @FoxNews, tune in! We’ll be discussing @realDonaldTrump’s desire to get out of Syria!" +04/25/2018,Politicians,@RandPaul,We have made considerable progress to ensure that more Americans struggling with opioid abuse can receive treatment… https://t.co/4SI09Lxr5a +04/24/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul: ""People are going to be surprised over the next year or two that I think there will be some ending of some of…" +04/24/2018,Politicians,@RandPaul,"Some great points! Trump should follow his instincts, de-escalate in the Middle East and pivot to great powers https://t.co/e6QQ4ZAqUh" +04/23/2018,Politicians,@RandPaul,Having received assurances from President Trump and Director Pompeo that he agrees with the President on these impo… https://t.co/Qv9yC8okNd +04/23/2018,Politicians,@RandPaul,"President Trump believes that Iraq was a mistake, that regime change has destabilized the region, and that we must… https://t.co/7nDgyrUYnC" +04/23/2018,Politicians,@RandPaul,After calling continuously for weeks for Director Pompeo to support President Trump’s belief that the Iraq war was… https://t.co/YyXhH8dgVF +04/23/2018,Politicians,@RandPaul,"I just finished speaking to @realDonaldTrump, after speaking to him several times today. I also met with and spoke to Director Pompeo." +04/23/2018,Politicians,@RandPaul,I had a great time seeing everyone and speaking at the Wayne County Reagan Dinner on Friday night. Two students rec… https://t.co/KKoDiFOxJA +04/23/2018,Politicians,@RandPaul,ICYMI I introduced my own “Penny Plan” federal budget that will balance within five years. Read more here:… https://t.co/c2V47uBgo8 +04/23/2018,Politicians,@RandPaul,I take spending and balanced budgets seriously. I’ve never voted for a budget that didn’t balance. Since it appears… https://t.co/kBbitHtiLE +04/20/2018,Politicians,@RandPaul,Putting forward a plan for Congress to balance the budget https://t.co/qy8jgZEKfZ +04/19/2018,Politicians,@RandPaul,"I ran for office to put a stop to Washington’s out-of-control spending! Today, I introduced my ""Penny Plan"" federa… https://t.co/x4oJR5K013" +04/18/2018,Politicians,@RandPaul,Join me today at 3:30pm eastern for a press conference to discuss my plan to end Washington’s out-of-control spendi… https://t.co/7gXmID41k2 +04/17/2018,Politicians,@RandPaul,"Today, the U.S. Senate Foreign Relations Committee held a hearing on our policy in Yemen. I had a few things to sa… https://t.co/5kj1TYfa04" +04/17/2018,Politicians,@RandPaul,"This year on #TaxDay, I say let’s pick up the fight again. Let’s keep fighting for smaller, constitutional governme… https://t.co/AMJrZ3oIRJ" +04/17/2018,Politicians,@RandPaul,Joining @AmericaNewsroom in just a few minutes. Tune in! +04/17/2018,Politicians,@RandPaul,"We can and must fight against terrorism when it rears its ugly head. We can do that in a smarter, constitutional wa… https://t.co/ieRAFwY3Sk" +04/16/2018,Politicians,@RandPaul,RT @FedSoc: “The antithesis of liberty is government power. Liberty is worth the fight.” @SenRandPauI https://t.co/oCrWMkxMAj #FedSocEvent… +04/16/2018,Politicians,@RandPaul,"RT @GeorgetownLaw: TODAY at 6 p.m., @GtownFedSoc will present its Lifetime Service Award to Sen. @RandPaul. Watch it live: https://t.co/pii…" +04/16/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul's bill to balance the budget over five years will serve as a great litmus test to discover, once and fo…" +04/15/2018,Politicians,@RandPaul,"Joined OZY today to guest curate their Presidential Daily Brief! +https://t.co/zebHg7NO1W" +04/15/2018,Politicians,@RandPaul,RT @justinamash: Witness the hypocrisy that our two-party system breeds: Check out these similar letters warning the president about commen… +04/12/2018,Politicians,@RandPaul,RT @AnnCoulter: MUST WATCH VIDEO! Sen. Rand Paul was magnificent. https://t.co/hWM9fMzwXI +04/12/2018,Politicians,@RandPaul,Joining @TeamCavuto on @FoxNews at 4:05pm ET. Tune in! +04/12/2018,Politicians,@RandPaul,"RT @FoxNewsInsider: 'It's Disputed by Our Founding Fathers': @RandPaul Challenges Pompeo on Syria, Military Deployments https://t.co/cgE2e0…" +04/12/2018,Politicians,@RandPaul,ICYMI today I joined the confirmation hearing for Mike Pompeo to find out where he stands on important issues and v… https://t.co/iUI7nM3bIg +04/12/2018,Politicians,@RandPaul,"""I worry you're going to be in too much disagreement with the President. I agree we should get out of Afghanistan.""… https://t.co/YVS8OoJ5Nc" +04/12/2018,Politicians,@RandPaul,Also “defending international human rights” - what happened to “America First” +04/12/2018,Politicians,@RandPaul,Just now at the hearing Rubio/Pompeo (and Woodrow Wilson) agree that “promoting democracy” - aka nationbuilding and… https://t.co/Eqdog939Ss +04/12/2018,Politicians,@RandPaul,Join me for the Foreign Relations Committee confirmation hearing at 10:15am est. https://t.co/XkBpBmNUb1 +04/12/2018,Politicians,@RandPaul,"I’m going to do it, and I’m going to force a vote on the floor of the U.S. Senate, and we’ll see who actually reall… https://t.co/vSnFnZbbcQ" +04/12/2018,Politicians,@RandPaul,RT @HARRISFAULKNER: .@RandPaul told me about the letter he received re: Top Secret Clearances and that adulterous couple of FBI agents accu… +04/11/2018,Politicians,@RandPaul,BREAKING: FBI admits that @realDonaldTrump haters still have Top Secret security clearances which allows them to ac… https://t.co/iyaIh6BHdW +04/11/2018,Politicians,@RandPaul,I wonder whose terrible idea it was to threaten Russia... https://t.co/tKUr31Rq0m +04/11/2018,Politicians,@RandPaul,"Promising war by tweet, insults not only the Constitution but every soldier who puts their life on the line." +04/11/2018,Politicians,@RandPaul,I will introduce a budget that balances within five years that includes spending cuts across the board reforms enti… https://t.co/JOClvmBSEU +04/10/2018,Politicians,@RandPaul,"Tune in now, I’m about to join @AmericaNewsroom" +04/06/2018,Politicians,@RandPaul,RT @Mediaite: Journal of American Medicine: Legalizing Marijuana Could Help Solve the Opioid Crisis https://t.co/JB3neOBeRD https://t.co/Om… +04/05/2018,Politicians,@RandPaul,Honored to have the LIBERTY to introduce Robin Harper Morris. https://t.co/vU6YHK6lJy +04/05/2018,Politicians,@RandPaul,.@EPAScottPruitt is likely the bravest and most conservative member of Trump's cabinet. We need him to help… https://t.co/OOqyszyso1 +04/04/2018,Politicians,@RandPaul,THIS is why it matters if you pick a hawk for SoS. THIS is why it matters if an unreconstructed neocon who still th… https://t.co/Eh4acn5ios +04/04/2018,Politicians,@RandPaul,"RT @WEHTWTVWlocal: Sen. Paul discusses state of workforce in Ohio Co. +https://t.co/uTUsCpfcLE" +04/03/2018,Politicians,@RandPaul,"I’m always grateful for the protection of Kentucky’s law enforcement at events like the one I held in Hartford, KY… https://t.co/ajds5MPSpI" +04/03/2018,Politicians,@RandPaul,RT @foxandfriends: .@RandPaul and his wife presented keys to a new home for wounded veteran through @HelpingAHero https://t.co/ZhxkjStjoH +04/03/2018,Politicians,@RandPaul,"Joining @foxandfriends from Bowling Green, KY in a few minutes - be sure to tune in! https://t.co/AmsEMHh596" +04/03/2018,Politicians,@RandPaul,"Americans want cheaper, generic drugs — time for Congress to deliver https://t.co/7UuSIoldEE" +03/30/2018,Politicians,@RandPaul,Likely no one other than Dick Cheney has been more consistently and unapologetically wrong about foreign policy tha… https://t.co/W3a3rUkIUA +03/30/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul rips omnibus: Maybe 'holding hands' with Democrats not such a great idea #ampFW +https://t.co/Xt0IIn2jIV" +03/29/2018,Politicians,@RandPaul,RT @bgdnphoto: #onassignment w/@RandPaul at Franklin Rotary. @joeimel https://t.co/YEsgLQlMxG +03/29/2018,Politicians,@RandPaul,"Hearing from Scottsville, KY business and community leaders about the issues in Allen County, and asking for sugges… https://t.co/nLb8M1YLAp" +07/02/2018,Politicians,@GovMikeHuckabee,"We hear often these days that society shouldn’t have any absolute moral standards. Well, pardon me for pointing it… https://t.co/cbcAC6iT2y" +07/02/2018,Politicians,@GovMikeHuckabee,"If we want to preserve our freedoms, and keep government limited, maybe we should send more farmers to Washington -… https://t.co/ua9v9rnVch" +07/02/2018,Politicians,@GovMikeHuckabee,How on earth did you miss this? Here’s another chance. Don’t blow this chance! https://t.co/l7lBt2cpl0 +07/01/2018,Politicians,@GovMikeHuckabee,Hope you will see our show from Branson 2nite on @tbn 8&11et/7&10ct. https://t.co/lUxQ4k6Wya +07/01/2018,Politicians,@GovMikeHuckabee,Endless effort and spin has gone into trying to explain why Hillary Clinton lost (without ever considering that her… https://t.co/YPsW447q5z +06/30/2018,Politicians,@GovMikeHuckabee,"Americans deeply divided on immigration, taxes, abortion, and more, but surely we are all UNITED and agree that new… https://t.co/gheG2vrY5h" +06/30/2018,Politicians,@GovMikeHuckabee,"Folks, the Dems aren’t so dumb as to want to abolish ICE and supporting no border nonsense. They just support aboli… https://t.co/pqFzRFZKLL" +06/30/2018,Politicians,@GovMikeHuckabee,2nite on “HUCKABEE” on https://t.co/OXDC775SgR join us for our show 8&11pm et/7&10ct from Branson MO as we celebrat… https://t.co/PgmEvXjdNv +06/29/2018,Politicians,@GovMikeHuckabee,"After Chris Pratt stunned Hollywood by encouraging young people to be positive, work hard, pray, defend the weak an… https://t.co/oQnTubvF3W" +06/29/2018,Politicians,@GovMikeHuckabee,"Here's a better idea. Abolish Gillebrand's Senate career by electing her opponent Chele Farley in November. ""Star… https://t.co/3PaiH4QxDj" +06/29/2018,Politicians,@GovMikeHuckabee,"A big salute to the staff of the Gazette, who despite being traumatized and losing staffers to death and injury, vo… https://t.co/54zfXWto7a" +06/29/2018,Politicians,@GovMikeHuckabee,Every night @seanhannity has great guests on @FoxNews but he needs balance with lesser lights so I will be on 2nite… https://t.co/6mFhfpDbq0 +06/29/2018,Politicians,@GovMikeHuckabee,"In public hearing, Rosenstein exhibits bizarre behavior and refuses to answer questions https://t.co/CpJU7024k1 https://t.co/3PXSv1YtDT" +06/29/2018,Politicians,@GovMikeHuckabee,"I'm worried. My 1 yr old grandson is at my house. He does nothing for himself, pays for nothing, cries when he does… https://t.co/fA6cfqlmdJ" +06/29/2018,Politicians,@GovMikeHuckabee,"This guy is brilliant! You should watch. Next to Popeye cartoons, there is nothing on TV like this guy. https://t.co/qVwsrFHMBb" +06/29/2018,Politicians,@GovMikeHuckabee,So glad @realDonaldTrump will appoint next SCOTUS Justice but it’s causing Dems to melt faster than Wicked Witch of West at a water park. +06/29/2018,Politicians,@GovMikeHuckabee,Fri I’ll be on @AmericaNewsroom on @FoxNews at 9am et and @Varneyco on @FoxBusiness at 945 et. Having my toes done… https://t.co/bV7xkkz70i +06/29/2018,Politicians,@GovMikeHuckabee,Democrats are going through the stages of grief all at once as they realize there is nothing they can do to prevent… https://t.co/jGCp7CvEQ1 +06/29/2018,Politicians,@GovMikeHuckabee,Only excuse for missing was watching Razorbacks in College World Series...but here's some of what you missed. https://t.co/MqVHyZND5Z +06/28/2018,Politicians,@GovMikeHuckabee,"Will be on w/ @marthamaccallum on @TheStoryFNC during 7pmET hour. Martha's show is smart, insightful, and refreshi… https://t.co/b9QCHca8uv" +06/28/2018,Politicians,@GovMikeHuckabee,Wouldn’t you know it? I go to all the trouble of suggesting 20 questions for the House Committees to ask FBI agent… https://t.co/aGsYy6xtnR +06/28/2018,Politicians,@GovMikeHuckabee,"It’s been said that all the Democrats had to do to win in November was not act crazy, and they’re failing even at t… https://t.co/TWcHtuL81u" +06/27/2018,Politicians,@GovMikeHuckabee,"Wednesday was the last day of the Supreme Court’s session, and if you thought the Democrats were screaming and melt… https://t.co/nbo8nGLYnK" +06/27/2018,Politicians,@GovMikeHuckabee,I'll be on @EveningEdit at 5pm ET today on @FoxBusiness and I'll announce whether I'll accept @realDonaldTrump offe… https://t.co/0WTpplmvJv +06/27/2018,Politicians,@GovMikeHuckabee,President Trump texted that Strzok is a “fraud” and that he should be questioned live on TV. We’ll have to wait a… https://t.co/xvd6ZNlg7o +06/27/2018,Politicians,@GovMikeHuckabee,"Wake up early, America! I'll be w/ @MariaBartiromo on @FoxBusiness at 8am ET Wednesday to explain what Maxine Wate… https://t.co/wULaGPiceX" +06/27/2018,Politicians,@GovMikeHuckabee,Difference btwn GOP & Dems? GOP sees every day as the 4th of July; Dems see every day as Halloween. Will voters w… https://t.co/3hJsBVLquP +06/27/2018,Politicians,@GovMikeHuckabee,Watch @IngrahamAngle on @FoxNews 2nite at 10pmET. Topic? Fishing trip for Red Snapper with grandson in Gulf of Mex… https://t.co/ZKctKbVym5 +06/26/2018,Politicians,@GovMikeHuckabee,"Read the Evening Edition, because doctors say it does wonders for your health: https://t.co/De35bCYqZ4 https://t.co/dQxK3hEoOL" +06/26/2018,Politicians,@GovMikeHuckabee,"Weeks of shameful, misleading and overheated rhetoric and media coverage comparing US detention centers for illegal… https://t.co/SE4NmiqR9y" +06/26/2018,Politicians,@GovMikeHuckabee,"Today, SCOTUS handed down a major ruling and ended a year-and-a-half of pointless, dangerous and indefensible meddl… https://t.co/e9GdftD5uU" +06/26/2018,Politicians,@GovMikeHuckabee,"“It’ll eventually come out. You cannot hide something this corrupt this long.” +So said FOX News legal analyst Greg… https://t.co/xirATdRbG9" +06/26/2018,Politicians,@GovMikeHuckabee,Don’t tell anyone but ⁦@ckchumley⁩ does something poor ol Joe Scarborough didn’t do. She used her brain. Libs and… https://t.co/fjEn1qUJvj +06/26/2018,Politicians,@GovMikeHuckabee,Kipps Restaurant in S Wales NY looks like my kind of place! https://t.co/BM1p2O2yjH +06/26/2018,Politicians,@GovMikeHuckabee,On w/ @ShannonBream on @FoxNews at 11pmET 2nite. Was going to stop for dinner on way but was asked to leave the ga… https://t.co/nDnW1Pq5bH +06/25/2018,Politicians,@GovMikeHuckabee,I want to respond to the idiotic claims by the left that conservatives “have it coming” because this is just like t… https://t.co/0kXH9xpcBT +06/25/2018,Politicians,@GovMikeHuckabee,"Strzok to testify: what if he pulls a ""Bill Clinton""? https://t.co/gtNRYGGw8P https://t.co/GKVKBXOr6A" +06/25/2018,Politicians,@GovMikeHuckabee,I don't understand rejecting the biz of ppl you disagree with. I want as much biz as I can get from libs--the $$ th… https://t.co/ErAS1fcs6X +06/25/2018,Politicians,@GovMikeHuckabee,Insightful and thoughtful analysis of why the left will regret it's condescending and smug crusade against those it… https://t.co/FloA2ujzsW +06/25/2018,Politicians,@GovMikeHuckabee,Thanks Scott. Hearing from ppl who actually know me is way better than criticism from Fake News and those who pret… https://t.co/ZHrye9nfZp +06/24/2018,Politicians,@GovMikeHuckabee,"Here you go! You want to defend gangs who rape, murder, and mutilate little children too? Repeat--a criminal gang… https://t.co/FrIc33u4Zu" +06/24/2018,Politicians,@GovMikeHuckabee,"Thanks, Franklin. You're right about @PressSec . She IS a nice lady. Of course I'm as objective about her as the… https://t.co/v6vegugPSB" +06/24/2018,Politicians,@GovMikeHuckabee,Absurd! To see race in everything IS racist. Nothing about race but about a vile violent criminal gang. Please u… https://t.co/KLydNPA2pR +06/23/2018,Politicians,@GovMikeHuckabee,"Yes @ktumulty because MS-13 is not a race but an illegal gang who rapes, murders, and mutilates children as sport.… https://t.co/5klJXnXqtN" +06/23/2018,Politicians,@GovMikeHuckabee,"RT @HuckabeeOnTBN: TONIGHT: the President of the United States, @realDonaldTrump, sits down to discuss his thoughts about international rel…" +06/23/2018,Politicians,@GovMikeHuckabee,Bigotry. On the menu at Red Hen Restaurant in Lexington VA. Or you can ask for the “Hate Plate”. And appetizers ar… https://t.co/ed8YPlRcJC +06/23/2018,Politicians,@GovMikeHuckabee,ICYMI but truly regret it! https://t.co/XYjaTvL3wu +06/23/2018,Politicians,@GovMikeHuckabee,"Exclusive interview with @realDonaldTrump 2nite on https://t.co/OXDC775SgR 8/11pm et/ 7/10 ct so watch, record, or… https://t.co/7NPkjLCWct" +06/23/2018,Politicians,@GovMikeHuckabee,Nancy Pelosi introduces her campaign committee for the take back of the House. https://t.co/yKDhkVubck +06/23/2018,Politicians,@GovMikeHuckabee,Get up EARLY on Sat b/c I'm on @foxandfriends at 7:30am ET on @FoxNews and will preview my exclusive intvu w/… https://t.co/X8noa0Rd8D +06/23/2018,Politicians,@GovMikeHuckabee,"OK, time-out from all things political. This is one of the coolest videos I've ever watched. Headed to Liverpool… https://t.co/WImoiedwsv" +06/23/2018,Politicians,@GovMikeHuckabee,"Thanks, @brianstelter for the shout out. I hope you and the rest of the world watches intvu w/ @realDonaldTrump S… https://t.co/KIJX0sn7j5" +06/22/2018,Politicians,@GovMikeHuckabee,For the fact deprived Media who has descended into a new level of shame here are some truths they probably will nev… https://t.co/K4rEcx6YyU +06/22/2018,Politicians,@GovMikeHuckabee,Even after the release of a 568-page report documenting example after example of the stunning partisanship infectin… https://t.co/x79sIUhjyB +06/22/2018,Politicians,@GovMikeHuckabee,Cancel your Sat nite plans or set DVR for Sat/Sun 8&11 ET to watch @HuckabeeOnTBN and exclusive intvu w/… https://t.co/yAyyd3nuLR +06/22/2018,Politicians,@GovMikeHuckabee,Don't miss @Varneyco on @FoxBusiness at 9amET and @AmericaNewsroom on @FoxNews at 9:30amET as I will be wearing… https://t.co/9nCFZG3It9 +06/22/2018,Politicians,@GovMikeHuckabee,For those still contending that “there’s nothing to see here” in the investigation of the FBI’s handling of the Cli… https://t.co/jGxbKH4nls +06/22/2018,Politicians,@GovMikeHuckabee,I wrestled with whether to comment on this or not because I didn’t want to call more attention to the sick comments… https://t.co/n8UpTOlRZo +06/21/2018,Politicians,@GovMikeHuckabee,The news that an Islamic reform group had received an apology and a nearly $3.4 million settlement from the Souther… https://t.co/aj8USOpkaM +06/21/2018,Politicians,@GovMikeHuckabee,SC Governor race runoff coming up and I appreciate @henrymcmaster for his consistent fight for the sanctity of life… https://t.co/mKvU0RBRAJ +06/21/2018,Politicians,@GovMikeHuckabee,I hope you will sign up now for the Evening Edition. This email delivers Monday - Saturday from me and might just b… https://t.co/k1oX6LcbVl +06/21/2018,Politicians,@GovMikeHuckabee,Hamas is a terrorist organization. They lie. They kill innocent people and aim rockets at babies. They pretend the… https://t.co/3fUzB99ugq +06/21/2018,Politicians,@GovMikeHuckabee,ALERT! I'll be on @EveningEdit w/ Liz McDonald on @FoxBusiness and will play secretly recorded audio from… https://t.co/O0yjG5wPxv +06/21/2018,Politicians,@GovMikeHuckabee,"Hillary intended to break law, FBI intended to absolve her: https://t.co/3Qqh6RUJHF https://t.co/spkA9wr2aX" +06/21/2018,Politicians,@GovMikeHuckabee,Is there any way Jeff Flake would just go home NOW? His petulance and pride seems more important to him than doing… https://t.co/F93FNpX5HP +06/21/2018,Politicians,@GovMikeHuckabee,"My exclusive interview w/ @realDonaldTrump this weekend. We share recipes, talk sports, show each other our surgic… https://t.co/KAWIbkWqx2" +06/20/2018,Politicians,@GovMikeHuckabee,"Breaking news from ABC! Unemployment numbers UP again...well, at least for some sad sacks at ABC who wrote and bro… https://t.co/PcpUdq2JBd" +06/20/2018,Politicians,@GovMikeHuckabee,Relax America! You're safe now! TSA in Little Rock just felt me up real good and gave me as complete a going over… https://t.co/kDDomrw59s +06/20/2018,Politicians,@GovMikeHuckabee,"As every parent knows, the cry of a child evokes a Pavlovian response that will grab your heartstrings and make you… https://t.co/5rKjMcHjp2" +06/20/2018,Politicians,@GovMikeHuckabee,Let critics call this US withdrawal from one UN council an “outrage” if they want. I’d call it “a good start.”… https://t.co/2m0JEHR33t +06/20/2018,Politicians,@GovMikeHuckabee,Dems and the media couldn’t have planned it better. They kept Tuesday’s news focused hysterically on immigration –… https://t.co/6VbyDUZi80 +06/20/2018,Politicians,@GovMikeHuckabee,Sit. Down. Brace yourself! I am applauding Democrat party in KS for disavowing AG candidate who displayed disgusti… https://t.co/jbPJBuT4zF +06/20/2018,Politicians,@GovMikeHuckabee,I've collected my lists of questions for IG Horowitz and Robert Mueller in one post. Please take a look and let me… https://t.co/T48H8pd3nJ +06/19/2018,Politicians,@GovMikeHuckabee,"With Peter Strzok in the news, I thought it would be helpful for me to pull together my commentaries directly relat… https://t.co/ozZxWjZ1eb" +06/19/2018,Politicians,@GovMikeHuckabee,My newsletter is out! Read it here: https://t.co/5T8RvDtgXJ https://t.co/ONWmG5CNUP +06/19/2018,Politicians,@GovMikeHuckabee,A response to Laura Bush: https://t.co/28wC2009c6 https://t.co/e8U4G014Cn +06/19/2018,Politicians,@GovMikeHuckabee,"I have great respect for Laura Bush, but the attached article spells out why she was terribly wrong in comparing il… https://t.co/0Z1HZEbOZQ" +06/19/2018,Politicians,@GovMikeHuckabee,"Note to Horowitz: ""Past department practices"" could be rotten, too: https://t.co/5KWF73YJkW https://t.co/V4jjQwAT7j" +06/19/2018,Politicians,@GovMikeHuckabee,Good thing media and Dems have been consistent in their concern of immigrant kids. Right? Check out Twitter thread… https://t.co/tM1xfYRfnf +06/18/2018,Politicians,@GovMikeHuckabee,My Evening Edition is out and you don't want to miss it: https://t.co/naRA2AEZ0j https://t.co/YrMHG91cNL +06/18/2018,Politicians,@GovMikeHuckabee,I’ve interviewed Rob Reiner and think he’s a terrific film director. And while he and I certainly don’t agree on m… https://t.co/tkyZ517O05 +06/18/2018,Politicians,@GovMikeHuckabee,Do you agree with President Trump's message to Senate Democrats that they need to come on board and help pass legis… https://t.co/u6PmWCyROF +06/18/2018,Politicians,@GovMikeHuckabee,My newsletter is out: Today's Commentary includes: 20 Questions for IG Michael Horowitz-- a short update about Pet… https://t.co/8A7XGsJrtT +06/18/2018,Politicians,@GovMikeHuckabee,Check out this post via @HearMeOutApp https://t.co/aoKmZ2Z05B +06/18/2018,Politicians,@GovMikeHuckabee,ICYMI I explain how the media is like a swarm of green flies on my show @TBN this past weekend. Not for the faint… https://t.co/nzaD7vSxZO +06/18/2018,Politicians,@GovMikeHuckabee,"Now that DOJ Inspector General Michael Horowitz is about to sit for questioning by congressional committees, I thou… https://t.co/Oc8yjwAjOo" +06/18/2018,Politicians,@GovMikeHuckabee,In DC doing interviews for @TBN Show. Wonder Woman sequel being filmed near my hotel yesterday. One look at me and… https://t.co/08fFbeg2E1 +06/18/2018,Politicians,@GovMikeHuckabee,Never Trumpers at NRO play Sgt Joe Friday with a “just the facts” coverage of emotionally charged immigration issu… https://t.co/ngw8iTAqBP +06/18/2018,Politicians,@GovMikeHuckabee,I'm a big fan of @AGAlanWilson of SC who as Atty General has been a strong leader for protecting Constitutional rul… https://t.co/rW9NCQYxxA +06/18/2018,Politicians,@GovMikeHuckabee,Griffin's irrational screech might have once caused a reaction from those of us who support @realDonaldTrump and re… https://t.co/SvFsvcWWJo +06/17/2018,Politicians,@GovMikeHuckabee,2nite on @TBN Diamond and Silk and Journey’s Jonathan Cain among guests for @HuckabeeOnTBN 8Et/7ct. https://t.co/aUJuTviTBI +06/17/2018,Politicians,@GovMikeHuckabee,"Remembering my Dad today. He died in 1996. Didn’t finish high school, worked 2 jobs and never made much money but… https://t.co/6eFSz1NmW1" +06/17/2018,Politicians,@GovMikeHuckabee,"I don't like immigrant children being temporarily separated from parents, but where is outrage over PERMANENT separ… https://t.co/ceuts2gs39" +06/17/2018,Politicians,@GovMikeHuckabee,I'm up late 2nite planning and preparing for an unplanned and unscheduled impromptu surprise appearance on… https://t.co/U8XLooGnKU +06/17/2018,Politicians,@GovMikeHuckabee,This is now required viewing for all employees at the State Department! https://t.co/YPuesQQaXv +06/17/2018,Politicians,@GovMikeHuckabee,"Tonight, I went to Watters World. https://t.co/kJ5JzduuT9" +06/16/2018,Politicians,@GovMikeHuckabee,A story that should bring a tear to eyes of EVERY American. Everyday men and women put it all on the line for rest… https://t.co/OmZHBBw4Pe +06/16/2018,Politicians,@GovMikeHuckabee,Broadway theaters will be dark 2nite because Robert De Niro urges ppl to stay home and watch @DiamondandSilk on HU… https://t.co/k2edlu2S76 +06/16/2018,Politicians,@GovMikeHuckabee,Inspector General Michael Horowitz may have declined to confirm the cause-and-effect relationship between stunning… https://t.co/AYsoB6WEo0 +06/16/2018,Politicians,@GovMikeHuckabee,Rand Paul nearly murdered and guy gets 30 days. Manafort goes to slammer. Meantime Peter Strzok still getting FBI p… https://t.co/tMU4bWPZDK +06/16/2018,Politicians,@GovMikeHuckabee,Stressed? Too much rancor? Afraid of being Manafort’s roommate or mowing Rand Paul’s lawn and getting sucker punc… https://t.co/yFub2POBIz +06/16/2018,Politicians,@GovMikeHuckabee,Cong Joe Wilson joins Diamond & Silk and @NBCTheVoice Season 7 winner Craig Wayne Boyd and much more on… https://t.co/4redB0i8es +06/15/2018,Politicians,@GovMikeHuckabee,"Thursday, the NY AG filed a lawsuit against President Trump’s charity foundation, claiming that it illegally used m… https://t.co/HDwURdUrP6" +06/15/2018,Politicians,@GovMikeHuckabee,This report is so long that it’s going to take a while to work through it –- but we quickly see it does acknowledge… https://t.co/s2Ul5FJeVo +06/15/2018,Politicians,@GovMikeHuckabee,Oh crap! Now I know why they were handing out free boxes of Honey Smacks in the White House press room! https://t.co/XxugjDirBr +06/15/2018,Politicians,@GovMikeHuckabee,Breaking wind from CNN! @realDonaldTrump announces new tariffs on burgers sold at INTERNATIONAL House of Burgers… https://t.co/X4dz0lGN11 +06/15/2018,Politicians,@GovMikeHuckabee,Get this straight-FBI/DOJ employees take items of value from reporters in exchange for leaked info. Isn’t that leg… https://t.co/vgdEPIhPXw +06/14/2018,Politicians,@GovMikeHuckabee,I’m about to do something I don’t often do: I’m going to offer what I think is some good advice to the leadership o… https://t.co/dsCrYOLkY7 +06/14/2018,Politicians,@GovMikeHuckabee,"That pesky newsletter I write called the Evening Edition is out. I cover the 7-2 SCOTUS ruling, the IG report snow… https://t.co/j7sVV35BXw" +06/14/2018,Politicians,@GovMikeHuckabee,Great observation by my favorite Twitter-master @RealJamesWoods about @PressSec having to put up with obnoxious sho… https://t.co/Vefn9TnpEW +06/14/2018,Politicians,@GovMikeHuckabee,The next thing corrupt FBI official Peter Strzok should hear is “You have the right to remain silent...”. If this t… https://t.co/n6dmClSntX +06/14/2018,Politicians,@GovMikeHuckabee,"Last week’s jobless claims total was 218,000, which is 6,000 fewer than expected and the lowest in 44-1/2 years. H… https://t.co/mQ2W08EwAm" +06/14/2018,Politicians,@GovMikeHuckabee,I knew the anti-Trump elements in the media would never be able to give him any credit for his historic meeting wit… https://t.co/DuL5MRu20n +06/14/2018,Politicians,@GovMikeHuckabee,Stories like this always have a predictable template. “Alcohol was believed to have been involved?” Really???? N… https://t.co/eU4ZDywi0c +06/14/2018,Politicians,@GovMikeHuckabee,Genius Dem pepper sprays himself to demo dealing with school killers. Good thing he wasn’t proposing castrations f… https://t.co/gn10KQXeFq +06/14/2018,Politicians,@GovMikeHuckabee,No doubt the media is sad to recognize that @realDonaldTrump is celebrating his birthday in @WhiteHouse but will R… https://t.co/wZ3H1KTBf9 +06/14/2018,Politicians,@GovMikeHuckabee,The Summit already having profound impact. https://t.co/h7HONIUhOZ +06/14/2018,Politicians,@GovMikeHuckabee,"New study finds people of faith live four years longer than atheists. Actually, I believe they live an ETERNITY lo… https://t.co/4VyNVp6tkv" +06/13/2018,Politicians,@GovMikeHuckabee,Abortion Queen Cecile Richards says abortion safer than Tylenol. Rarely a person dies from reaction to painkillers… https://t.co/9VM8imWW6b +06/13/2018,Politicians,@GovMikeHuckabee,"While media attention has been focused on the astounding events unfolding quickly in Singapore, a longtime standoff… https://t.co/kMLZ098Xqv" +06/13/2018,Politicians,@GovMikeHuckabee,Will be on @LouDobbs on @FoxBusiness tonight during 7ET time. I think we are both fired up about Corker forgetting… https://t.co/qQlCVAaV61 +06/13/2018,Politicians,@GovMikeHuckabee,"Over the past few days, the predominant theme of my commentary has been “double standards.” As I sit and watch the… https://t.co/WSqG8gQuxw" +06/13/2018,Politicians,@GovMikeHuckabee,Here are a few basic truths to bear in mind when you're being bombarded with hysterical media coverage:… https://t.co/9FfoOdn6UJ +06/13/2018,Politicians,@GovMikeHuckabee,"If you’re tired of how the leftist excuses about the 2016 election are now repeated as if they’re “settled science,… https://t.co/zDhzDyrf2g" +06/13/2018,Politicians,@GovMikeHuckabee,"Outgoing (thank goodness!) Sen Corker just said GOP is like ""cult"" because of support of @realDonaldTrump but that'… https://t.co/xaaoWznRz7" +06/13/2018,Politicians,@GovMikeHuckabee,The media and leftists (same thing) are unhinged. Bill Maher wants economy to fail so @realDonaldTrump can be blame… https://t.co/iKesXCph9W +06/13/2018,Politicians,@GovMikeHuckabee,One of the more surreal sidelights to the startling and momentous events in Singapore was an interview given by ex-… https://t.co/AjgwHCqMIi +06/13/2018,Politicians,@GovMikeHuckabee,"On heels of NOKO summit, @realDonaldTrump just announced he will seek to negotiate with @IHOb to get them to change… https://t.co/HaeeMLBocf" +06/12/2018,Politicians,@GovMikeHuckabee,Sen Claire-Air McCaskill of MO has an RV with wings! But it’s the dishonesty about it that’s seems so shady. May… https://t.co/Tdcnt62EDI +06/12/2018,Politicians,@GovMikeHuckabee,I was anxiously awaiting the morning shows and headlines from the liberal media to see how they could possibly spin… https://t.co/sKfROtcxhm +06/12/2018,Politicians,@GovMikeHuckabee,"Billionaire George Soros is discovering that despite pouring many millions into American elections, voters are not… https://t.co/JJOLfM5Zsq" +06/12/2018,Politicians,@GovMikeHuckabee,"I’ve been spending some time catching up on reader comments --- you know, I do read them --- and wanted to respond… https://t.co/GoQgU3ubFf" +06/12/2018,Politicians,@GovMikeHuckabee,Bill Clinton's statement revealing and VERY troubling. Most of us believed that rape and sexual assault were ALWAY… https://t.co/B3rqZgTMAC +06/12/2018,Politicians,@GovMikeHuckabee,"Totally breaks my heart to hear this. Don't know Bode Miller other than by his incredible Olympic feats, but I am… https://t.co/UU1yzSoC1M" +06/12/2018,Politicians,@GovMikeHuckabee,"Rough translation of what Kim & his generals said after meeting: +Generals: Why did U sign the document before we… https://t.co/Leuz5F7eXX" +06/12/2018,Politicians,@GovMikeHuckabee,"Yes, there remains much work to be done, but can even his harshest critics give @POTUS credit for a historic step?… https://t.co/KQgiSSfZHn" +06/11/2018,Politicians,@GovMikeHuckabee,My thoughts on the today's 5-4 SCOTUS decision upholding the Ohio law for purging invalid voters from the voting ro… https://t.co/D87oguIUOy +06/11/2018,Politicians,@GovMikeHuckabee,I’ve had readers who haven’t kept up with what I’ve been writing or saying for the past 10 years or so accuse me of… https://t.co/HjlSAcqlE1 +06/11/2018,Politicians,@GovMikeHuckabee,"I just called Robert De Niro and told him that he's out of my ""circle of trust."" He cried like a 6 year old who di… https://t.co/0NhoRQYFSz" +06/11/2018,Politicians,@GovMikeHuckabee,Only thing sadder than De Niro's vile rant is that high-toned elite snobs at the event gave him a standing O. Were… https://t.co/PiUdyJ90wK +06/11/2018,Politicians,@GovMikeHuckabee,What does Kim Jong Un REALLY want from the summit? Gold? No. Groceries? No. GOLDEN ARCHES! He wants a McDonald's… https://t.co/cObCczbmom +06/11/2018,Politicians,@GovMikeHuckabee,"In Branson, MO for a couple of days taping my TBN show at Silver Dollar City. I love this place! Just ran into Ange… https://t.co/aoae1DyFtI" +06/10/2018,Politicians,@GovMikeHuckabee,Breaking wind from CNN! @realDonaldTrump announces new tariffs on fake eyebrows! https://t.co/LqPOkm625S +06/10/2018,Politicians,@GovMikeHuckabee,Dang hearing loss! @realDonaldTrump asked me to come to Singapore but I thought he said “sing some more” so now I… https://t.co/5rJrvucVYx +06/10/2018,Politicians,@GovMikeHuckabee,Watching the Trump-haters and media (but I repeat myself) faint because he stomps into G-7 like the Incredible Hulk… https://t.co/TnNlDcUe5z +06/09/2018,Politicians,@GovMikeHuckabee,"I'll be on @JudgeJeanine on @FoxNews at9pm ET, right after my show on @TBN at 8pm ET so you get a ""2nd blessing!""… https://t.co/WG8d8vZ1MG" +06/09/2018,Politicians,@GovMikeHuckabee,"@realDonaldTrump is doing what he promised by putting America first and the globalists in the media, GOP and Dem Pa… https://t.co/oEEbmGZQnY" +06/09/2018,Politicians,@GovMikeHuckabee,Jackie Green and Lauren Green McAfee discuss their book for women on @HuckabeeOnTBN 2nite. Refreshingly candid but… https://t.co/I6G15MgLfb +06/09/2018,Politicians,@GovMikeHuckabee,2nite don’t miss @HuckabeeOnTBN Michael Farris of @AllianceDefends talks SCOTUS cake case and Sen James Risch of ID… https://t.co/lthChA3B3g +06/08/2018,Politicians,@GovMikeHuckabee,On @HuckabeeOnTBN this week we talk NOKO w/ Sen James Risch; the SCOTUS cake decision w/ Michael Farris from… https://t.co/gWSqX8Wt3T +06/08/2018,Politicians,@GovMikeHuckabee,"Full story on DOJ ""Black Hole on Documents"" at https://t.co/2robSqR5YJ and YOU should subscribe to the daily and d… https://t.co/DXEnBGAN8O" +06/08/2018,Politicians,@GovMikeHuckabee,"Team of physicists, astronomers and mathematicians at MIT has completed a study of DOJ HQ-finds ""Black Hole for doc… https://t.co/GMHK8DdRCT" +06/08/2018,Politicians,@GovMikeHuckabee,Anthony Bourdain's suicide a sobering reminder of how fragile life is and that we never know what's going on inside… https://t.co/IdzKdA4hsh +06/08/2018,Politicians,@GovMikeHuckabee,Pen wars: The latest extravagant waste of taxpayer money by EPA Chief Scott Pruitt for Trump critics to be OUTRAGED… https://t.co/3yFtNX4Fgz +06/07/2018,Politicians,@GovMikeHuckabee,"Of the many groundless slanders that the left aims at…well, everyone not on the left...I let most of it roll off my… https://t.co/idflIgioVQ" +06/07/2018,Politicians,@GovMikeHuckabee,"Congrats to James Woods, the best Tweeter in the US and obviously a world class poker player! If you ever want to p… https://t.co/bxKepxqs0o" +06/07/2018,Politicians,@GovMikeHuckabee,I find this very offensive. Perhaps true but very offensive. I think I will demand an apology and for several peo… https://t.co/10bO5FZu5H +06/07/2018,Politicians,@GovMikeHuckabee,"Double Standards: As some conservative commentators noted, after eight months of the MeToo movement, prominent Holl… https://t.co/57pn3AAvSF" +06/07/2018,Politicians,@GovMikeHuckabee,"Will be on @scrowder on Louder with Crowder tonight! You will weep, laugh, scream and then sleep peacefully. https://t.co/AJtmvI2cjS" +06/07/2018,Politicians,@GovMikeHuckabee,Watch and be amazed...or amused depending on which universe you live in! https://t.co/yCKYehFaoO +06/07/2018,Politicians,@GovMikeHuckabee,I'll be up all night preparing for appearances on @AmericaNewsroom on @FoxNews at 9:30amET and @Varneyco on… https://t.co/nZ0N1VeCxK +06/07/2018,Politicians,@GovMikeHuckabee,Very funny moment on @Delta flight yesterday from NY to ATL. Tall African-American male boarded and a lady said “Ar… https://t.co/YUmRvwy8Q4 +06/07/2018,Politicians,@GovMikeHuckabee,America needs to reform how we deal with sentencing and drug crimes. My visit with @SandraSmithFox on… https://t.co/kdcJjdOoVa +06/06/2018,Politicians,@GovMikeHuckabee,A real estate broker in Massachusetts thought he and his 11-year-old daughter were just showing patriotism and hono… https://t.co/O61p8icK5A +06/06/2018,Politicians,@GovMikeHuckabee,"Bill Clinton should be very glad he’s not running for anything now, because his interview with Craig Melvin that ai… https://t.co/GhrgacsKRM" +06/06/2018,Politicians,@GovMikeHuckabee,Will be on @TheStoryFNC w/ @marthamaccallum on @FoxNews at 7pm ET/6CT and will break the story about the name chang… https://t.co/Jq9WyeJ0ea +06/06/2018,Politicians,@GovMikeHuckabee,"Don't miss my appearance on @EveningEdit on @FoxBusiness at 5pmET/4pmCT today because admit it, you got NOTHING els… https://t.co/J82Tsfc2gP" +06/06/2018,Politicians,@GovMikeHuckabee,This article by noted libertarian scholar Steven F. Hayward is the best piece about climate change I’ve seen in qui… https://t.co/3bpX74oSAG +06/06/2018,Politicians,@GovMikeHuckabee,"During the 2016 election campaign, President Trump often compared Hillary Clinton to former Navy submariner Kristia… https://t.co/mvs5epqhGi" +06/06/2018,Politicians,@GovMikeHuckabee,"The @WhiteHouse press corps can roll their eyes, but facts be facts! @PressSec HAS more credibility than the media… https://t.co/VOimLyQlJG" +06/06/2018,Politicians,@GovMikeHuckabee,"Was not a mistake on @KellyannePolls part. It's Biblical. ""Blessed are the Cheesemakers."" It's why evangelicals… https://t.co/Tl8Xyh7pck" +06/06/2018,Politicians,@GovMikeHuckabee,One of the most moving and sobering experiences of my life was a trip Janet and I made to Normandy. The depth of v… https://t.co/xzNQEPToy1 +06/06/2018,Politicians,@GovMikeHuckabee,"First Lady Melania Trump has been out of the public eye for a few weeks, which seems perfectly normal considering s… https://t.co/su6j9j9SoH" +06/05/2018,Politicians,@GovMikeHuckabee,I gotta explain to @PressSec that her cred is WAY higher than that! And I’m as objective about her as CNN is about… https://t.co/jc8bnl8c6O +06/05/2018,Politicians,@GovMikeHuckabee,One of the inexplicably major stories of the day is President Trump rescinding a White House invitation to the Supe… https://t.co/bSTEungHlo +06/05/2018,Politicians,@GovMikeHuckabee,One small part of a confidential letter written to special counsel Robert Mueller by the Trump legal team and leake… https://t.co/OvIfpcW3Dq +06/05/2018,Politicians,@GovMikeHuckabee,Great to see Cong @SteveScalise at Fox today during @FoxBusiness morning Show. He’s one of the good ones! https://t.co/Hqj64wGNGW +06/05/2018,Politicians,@GovMikeHuckabee,I'll be on @OutnumberedFNC on @FoxNews today at noonET because all the good looking guys were modeling underwear. I… https://t.co/gF3wFtBgBe +06/05/2018,Politicians,@GovMikeHuckabee,Ppl across America will get up early because I'll be on @MariaBartiromo on @FoxBusiness the entire 3 hrs from 6-9am… https://t.co/XxxHthWIro +06/04/2018,Politicians,@GovMikeHuckabee,The Philadelphia Eagles are NOT going to @WhiteHouse tomorrow but I WILL be on @IngrahamAngle tonight on @FoxNews a… https://t.co/qk0FDmQtq6 +06/04/2018,Politicians,@GovMikeHuckabee,Today marks the 29th anniversary of the Tiananmen Square massacre. That peaceful student pro-democracy protest is m… https://t.co/fSnaNr1LcF +06/04/2018,Politicians,@GovMikeHuckabee,A feature on my @TBN show is ICYMI as I read and report news stories you might have missed. You should watch and s… https://t.co/rIt9pv0seP +06/04/2018,Politicians,@GovMikeHuckabee,The good news of Howard Schultz running in 2020 is you get to use @WhiteHouse restrooms even if you don't pay your… https://t.co/x9rMaEniNc +06/04/2018,Politicians,@GovMikeHuckabee,"Mark your calendars, voters: there are primary elections tomorrow in Alabama, Iowa, Mississippi, Montana, New Jerse… https://t.co/ghdTlxVLrF" +06/04/2018,Politicians,@GovMikeHuckabee,"Unfortunately, while today’s 7-2 ruling in favor of Phillips is welcome and long-overdue relief for him, it still o… https://t.co/TfaUTvjvdc" +06/04/2018,Politicians,@GovMikeHuckabee,The decision upholds 1st Amendment that Govt can’t make law that forces ppl to violate their legitimate religious b… https://t.co/DZcQQmap2y +06/04/2018,Politicians,@GovMikeHuckabee,My daughter @PressSec has dinner with @GeorgeHBrett one of the greatest baseball players EVER! I had a hot dog wit… https://t.co/kPjWUdNVjs +06/04/2018,Politicians,@GovMikeHuckabee,Yes I DID “Keep Up With A Kardashian” on my @TBN show this weekend. My reasons will surprise you! https://t.co/HJhmU0QasP +06/04/2018,Politicians,@GovMikeHuckabee,"After reading Kyle Cheney’s piece in POLITICO that mentioned my commentary about Trey Gowdy, I was left with one qu… https://t.co/DYJIQDLXY1" +06/03/2018,Politicians,@GovMikeHuckabee,David Horowitz and @benshapiro join me on @TBN at 8Et/7ct along with comedian Jason Michaels and Felix Cavaliere of… https://t.co/CtPhhn7897 +06/03/2018,Politicians,@GovMikeHuckabee,2nite don’t miss https://t.co/GH1TONBY5r +06/03/2018,Politicians,@GovMikeHuckabee,Tell me you didn’t miss this on @foxandfriends on @FoxNews today! @realDonaldTrump was watching and you should hav… https://t.co/nxxZFVkW0f +06/03/2018,Politicians,@GovMikeHuckabee,Will be on @foxandfriends today on @FoxNews at 6:30am ET and appear from a @Starbucks in DC where I spent the night… https://t.co/R1PWy7KgWl +06/02/2018,Politicians,@GovMikeHuckabee,Today's newsletter is out and it is full of fresh news (not the fake kind from CNN)! I write about the North Korea… https://t.co/gPoH3SOzaJ +06/02/2018,Politicians,@GovMikeHuckabee,"After sneeringly dismissing the raises and bonuses many workers enjoyed due to the GOP tax cut as “crumbs,” House M… https://t.co/peFBYKMTHA" +06/02/2018,Politicians,@GovMikeHuckabee,"For those keeping score, Nancy Pelosi has now come out against tax cuts, raises, bonuses, strong GDP growth & recor… https://t.co/9uvTOBjLWp" +06/02/2018,Politicians,@GovMikeHuckabee,Musical guest 2nite on https://t.co/GH1TONTyWZ is Felix Cavaliere of the Rascals. “Good Lovin” and Good Fun! https://t.co/OCw0WYMNsK +06/02/2018,Politicians,@GovMikeHuckabee,Headed to DC today. Hope all my shots are current. +06/02/2018,Politicians,@GovMikeHuckabee,My show @TBN is on 2nite. Guests include David Horowitz and @benshapiro and if you don’t watch Bob Mueller will int… https://t.co/Y1wYUnwt9i +06/01/2018,Politicians,@GovMikeHuckabee,"A side of me you've never seen, but absolutely should! Watch and share this video, but only if you are ""BORN TO BE… https://t.co/MPwa3zzxGp" +06/26/2018,Politicians,@GovernorPataki,Congratulations @AJ_Cats_ on making the Manhattan GOP Stronger! https://t.co/KJ3NY3ebcx +06/16/2018,Politicians,@GovernorPataki,RT @bbretonwindham: Can't forget #ThrowbackThursday today ! A great event thanks to @GovernorPataki ! 2010 #nhpolitics https://t.co/soc9kwD… +06/14/2018,Politicians,@GovernorPataki,Happy Birthday @GeorgeHWBush on your 94th. #USA https://t.co/e9Gc5ZQ12g +06/13/2018,Politicians,@GovernorPataki,Congratulations to my former Press Sec. Lynn Krough @lynnbaby13 on being named @marcmolinaro Campaign Manager. #Win https://t.co/TDygBzOgcH +06/13/2018,Politicians,@GovernorPataki,@marcmolinaro can win this! Daily News had me down 17 the day before. Especially if @CynthiaNixon stays in. #NYGOP https://t.co/fAgSwztb9G +06/10/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Dave’s ALIVE DAY! 6/9/18 > 6/9/15 +No better way to celebrate LIFE than by cheers’ing the marriage of friends. Congrats A…" +06/01/2018,Politicians,@GovernorPataki,Happy 25th Anniversary to my good friends Bill and Cheryl Murray! https://t.co/khrtMmBN2s +05/28/2018,Politicians,@GovernorPataki,"RT @CP1NYS: On this Memorial Day, consider what we owe America's veterans https://t.co/HGXelrcSzp via @nypost" +05/26/2018,Politicians,@GovernorPataki,Herman 'Denny' Farrell was a fierce partisan but someone who's word you could trust and who really cared about NY https://t.co/GlaOYKkl8x +05/26/2018,Politicians,@GovernorPataki,"RT @ERIECOUNTYGOP: “Albany needs to change, and Marc Molinaro will bring that change!” Former Republican Governor George Pataki #BelieveAga…" +05/26/2018,Politicians,@GovernorPataki,Please remember those who have sacrificed this #MemorialDayWeekend https://t.co/3RDUhjzInz +05/25/2018,Politicians,@GovernorPataki,Congratulations to my friend @DaveCurrier1 https://t.co/glaNPjgd3j +05/23/2018,Politicians,@GovernorPataki,I was proud to Introduce @marcmolinaro at the #NYGOPConvention. We beat the odds in 1994 and will do it again in 20… https://t.co/ve3wqe7m5B +05/23/2018,Politicians,@GovernorPataki,In the green room with @marcmolinaro getting ready to nominate him as the next Governor of our great state. #NYGOP https://t.co/3wN7Qqw12t +05/21/2018,Politicians,@GovernorPataki,"RT @jpcahillsr: 1/2 After serious deliberation and reflection, I have decided not to seek the office of NYS AG. I believe the stakes are h…" +05/20/2018,Politicians,@GovernorPataki,"RT @KevinTshirt: Pretty cool to come across a picture of @GovernorPataki at my elementary school in 1997, when I was in 5th grade. I imagin…" +05/17/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Leaving #Chicago w/ grateful & happy hearts after meeting so many wonderful readers, including this warm reception last…" +05/08/2018,Politicians,@GovernorPataki,"RT @jpcahillsr: Respect for women,the rule of law & the integrity of our legal system is imperiled by those who have abused power & turned…" +05/08/2018,Politicians,@GovernorPataki,Congratulations Andrea! It’s nice to see Millennials like YOU getting involved in our political process. @AJ_Cats_… https://t.co/5NMZYJ8wmY +05/05/2018,Politicians,@GovernorPataki,RT @AllisonPataki: My goodness. Speechless. Thank you @JessicaSimpson https://t.co/LVOQ3zbRSr +05/05/2018,Politicians,@GovernorPataki,I remember it well. Tom was a GREAT senator for the people of the Southern Tier and a wonderful friend. https://t.co/JxgkYQKgLH +05/03/2018,Politicians,@GovernorPataki,RT @MMR_MattRyan: Old Glory always makes for a nice backdrop. Here’s a shot today I took of NY’s 53rd Governor @GovernorPataki. https://t.… +05/03/2018,Politicians,@GovernorPataki,RT @CP1NYS: The Future of New York is in Our Hands... https://t.co/lPLFxjDWkE via #constantcontact +05/01/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: @DavidLevy42 & I had the privilege of sharing a bit of our story w/ @JennaBushHager on the @TODAYshow, speaking about Da…" +05/01/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: So grateful to the @washingtonpost for allowing us to share our story behind #BeautyInTheBrokenPlaces : +https://t.co/jIO…" +04/26/2018,Politicians,@GovernorPataki,"Congratulations @RichardGrenell - it took too long, but worth the wait. https://t.co/yhvF3BC6iD" +04/26/2018,Politicians,@GovernorPataki,#ThrowbackThursday to January of 1995. A picture of our NYC Executive Chamber staff in my World Trade Center office. https://t.co/BpXPwsuJLe +04/25/2018,Politicians,@GovernorPataki,Congratulations Doug! You will be a great Assemblyman. https://t.co/T0YDIwY6yJ +04/24/2018,Politicians,@GovernorPataki,RT @SmithForNY: Good Morning! Today is the day! It's 6:00am and polls are now open! Please help us keep our strong voice in Albany by elect… +04/24/2018,Politicians,@GovernorPataki,RT @killian4senate: POLLS ARE OPEN! It's a beautiful day to vote! Local elections provide a real opportunity to affect change because every… +04/23/2018,Politicians,@GovernorPataki,Make sure you get out and vote if you live in NY assembly district 5 for @SmithforNY Doug is the future of our part… https://t.co/GbG6Rpg6LQ +04/23/2018,Politicians,@GovernorPataki,Make sure you go out and vote for @killian4senate tomorrow in NYS-37. We need a two party system in #Albany https://t.co/9U3UH5A7Yd +04/23/2018,Politicians,@GovernorPataki,#ProudFather https://t.co/mSA5A8KteH +04/18/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Woo hoo! @klgandhoda - thank you for naming BEAUTY IN THE BROKEN PLACES as a 'Favorite Thing'! https://t.co/js0eafdIcy +#…" +04/18/2018,Politicians,@GovernorPataki,"Barbara Bush was loved by all Americans, a wonderful first lady, a great wife and mother. Libby and I were honored… https://t.co/AZeuFsjz2k" +04/17/2018,Politicians,@GovernorPataki,Libby and I have #Barbara_Bush in our thoughts and prayers tonight. @GeorgeHWBush @JebBush @BarbaraBushFdn +04/04/2018,Politicians,@GovernorPataki,Happy to help @killian4senate. It’s important that our great state is not completely dominated by NYC liberals.… https://t.co/o2OzJkG4k2 +04/04/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Moody skies and bald trees. April showers bring May flowers, please? And here’s hoping that April gray makes for a color…" +04/04/2018,Politicians,@GovernorPataki,RT @TwitterMoments: People pay tribute to Martin Luther King Jr. on the 50th anniversary of his assassination. #MLK50 https://t.co/6mIEWaz6… +04/04/2018,Politicians,@GovernorPataki,RT @killian4senate: Governor George Pataki endorses Julie Killian for State Senate https://t.co/NT1BzORbGU +04/04/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Sacre bleu, the day is here! WHERE THE LIGHT FALLS is out in the world in paperback! Isn’t it magnifique? It’s lightweig…" +04/04/2018,Politicians,@GovernorPataki,RT @DaveCatalfamo: So what is modern history? Happy to posit the record of my former boss @GovernorPataki against any Gov https://t.co/Jq3… +04/03/2018,Politicians,@GovernorPataki,Where the Light Falls’ written by my son and daughter @AllisonPataki and @owen_pataki is now in paperback. Great Re… https://t.co/k8GVGJyzJv +04/03/2018,Politicians,@GovernorPataki,Looking forward to being with @killian4senate in Westchester tomorrow. https://t.co/eqlQ6cVB3h +04/03/2018,Politicians,@GovernorPataki,"Jasper was a tremendous leader, wonderful man and a good friend who will be greatly missed. https://t.co/LRwUsdaELF" +04/02/2018,Politicians,@GovernorPataki,"It’s not to late to Join me, Sen. Flanagan and Sen. Young at a fundraiser for @killian4senate in NYC tomorrow. https://t.co/2sgBFQUOuQ" +04/01/2018,Politicians,@GovernorPataki,@tuckahoetommy Thank You Tommy. Same to you and your family. +04/01/2018,Politicians,@GovernorPataki,Wishing you and your family the happiest Easter of all. #Easter2018 #HappyEaster #EasterSunday +03/29/2018,Politicians,@GovernorPataki,#ThrowbackThursday #Believe #NYGOP https://t.co/nlkG14jo34 +03/20/2018,Politicians,@GovernorPataki,Great to endorse and support @DougSmithNY at an event tonight. #VoteSmith April 24th @SmithforNY https://t.co/RnoWOu5ORK +03/17/2018,Politicians,@GovernorPataki,#HappyStPatricksDay. We had a great dedicated administration that created real change and made #NY a better place t… https://t.co/3JcA6opWIQ +03/16/2018,Politicians,@GovernorPataki,#FlashbackFriday from the #StPatricksDayParade in Manhattan with my good friend @jpcahillsr #StPatricksDay2018 https://t.co/D3XhnZZuO3 +03/16/2018,Politicians,@GovernorPataki,RT @bbretonwindham: . #ThrowbackThursday Great morning at @SalemRotary with @GovernorPataki ! As always thanks Gov !!! #nhpolitics 🇺🇸… +03/15/2018,Politicians,@GovernorPataki,"RT @KatalinBogyay: Introduced women wine makers from Hungary @UN_CSW @HUNMissionToUN .'Salon extraordinaire ' opened by Min.of State Novak,…" +03/08/2018,Politicians,@GovernorPataki,It was great being on with @JCats2013 for his debut “Cats At Night” show today with @AJ_Cats_ https://t.co/zfUYXoM2pI +03/07/2018,Politicians,@GovernorPataki,Congratulations to my good friend @JCats2013 on his new Wednesday evening talk show “Cats at Night” from 5-6 on @am970TheAnswer #CatsAtNight +03/03/2018,Politicians,@GovernorPataki,RT @CheleFarley: The Countdown begins! https://t.co/oeQGVpn1Za +03/03/2018,Politicians,@GovernorPataki,RT @NLawGlobal: We appreciate @Law360's interview with our lawyer and colleague George Pataki. https://t.co/EvNzQHOJaP +03/03/2018,Politicians,@GovernorPataki,RT @Law360: Check out Randy Maniloff's interview with former #NewYork Gov. George Pataki: https://t.co/I0zKYeFadL https://t.co/tQAh9JgY1R +02/02/2018,Politicians,@GovernorPataki,What a wonderful story. Thank You Philip. https://t.co/xgFjGhUMUP +02/02/2018,Politicians,@GovernorPataki,RT @JCats2013: Great Memories https://t.co/CFfJCZhaV5 +02/02/2018,Politicians,@GovernorPataki,NY needs a senator whose only agenda is to fight for our hardworking families and small businesses @CheleFarley https://t.co/vbm3ZzOO7i +02/01/2018,Politicians,@GovernorPataki,#ThrowbackThursday @JCats2013 home with @MikeBloomberg in 2002. https://t.co/HrgdW6tNue +01/31/2018,Politicians,@GovernorPataki,A great friend and loyal advisor. Congratulations Tommy. https://t.co/huzjW8MdSH +01/29/2018,Politicians,@GovernorPataki,"RT @DaveCatalfamo: “What we did in 94, we did together. But this is not about the past, we will shock the world again.” @GovernorPataki @C…" +01/29/2018,Politicians,@GovernorPataki,RT @chapinfay: Chairman Mike Long @CP1NYS called in an “old friend” to keynote lunch at #cppac. 2 standing O’s in 10 minute speech - maybe… +01/15/2018,Politicians,@GovernorPataki,"It is our obligation to honor the memory of Dr. King, not just today but every day of the year by keeping the dream alive for all. #MLKDay" +01/01/2018,Politicians,@GovernorPataki,Happy New Year! Wishing everyone health and happiness for 2018. #NewYearsEve2018 https://t.co/cR7hbnjgGq +12/31/2017,Politicians,@GovernorPataki,RT @jjk607: Our 2017 year in photos includes a special @GovernorPataki appearance. https://t.co/lbJaPHil4R +12/24/2017,Politicians,@GovernorPataki,#MerryChristmas and Blessings to our incredible military for keeping our country’s freedom and integrity safe https://t.co/n4LJPPwS3k +12/14/2017,Politicians,@GovernorPataki,".@CTLizB thanks for the compliment, but it wouldn’t be prudent for me to speculate at this time." +12/07/2017,Politicians,@GovernorPataki,#ThrowbackThursday Great day @bbretonwindham https://t.co/FY4JmNWszL +11/18/2017,Politicians,@GovernorPataki,RT @Yale: The Bulldogs are the Ivy League champs after defeating Harvard 24-3 at the Yale Bowl! #TheGame @Yale_Football https://t.co/x5XSOa… +11/18/2017,Politicians,@GovernorPataki,Go @Yale_Football #BeatHarvard https://t.co/oP05v8hCbV +11/16/2017,Politicians,@GovernorPataki,Congratulations Bob! https://t.co/nVRI0Wqn42 +11/07/2017,Politicians,@GovernorPataki,"If you live in Westchester, NY don’t forget to vote for @RobAstorino today. https://t.co/dUqhuC0V8y" +11/06/2017,Politicians,@GovernorPataki,Don’t forget to vote for @jackmartinsny for Nassau County Executive tomorrow. +11/06/2017,Politicians,@GovernorPataki,RT @jjk607: “We’re gonna pull a Pataki” exclaimed @NMalliotakis when @GovernorPataki predicted an upset win for her tmrw. https://t.co/7Y1Y… +11/06/2017,Politicians,@GovernorPataki,RT @daveevansabc7: 100th anniversary of women getting right to vote “it’s time for a woman mayor in nyc”@GovernorPataki https://t.co/VnLEnk… +11/06/2017,Politicians,@GovernorPataki,"If you live in #Queens and want a independent voice in City Hall, vote for my friend @junipercivic prez Bob Holden https://t.co/jv7TRjjgRH" +11/04/2017,Politicians,@GovernorPataki,"RT @VanHipp: Great catching up in #NYC w/one of my favs, @GovernorPataki —a true #Statesman who showed us all what #American #leadership is…" +11/01/2017,Politicians,@GovernorPataki,"Worst terror attack on NYC since Sept11 a sober reminder that we must remain vigilant, look out for each other & never bow to terror." +10/27/2017,Politicians,@GovernorPataki,It was a great day. On to victory on Nov 7th @jackmartinsny. https://t.co/5nFhe915Hb +10/25/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: ""I cannot endure to waste anything as precious as autumn sunshine."" - Nathaniel Hawthorne +#fall #outside https://t.co/7…" +10/20/2017,Politicians,@GovernorPataki,"RT @JCats2013: THE GOP’S FUTURE in NY @JCats2013 @AJ_Cats_ +Proud Father Watch Andrea Cats NY1 video +Get common sense Americans +https://t…" +10/17/2017,Politicians,@GovernorPataki,RT @AdirondacksYes: @AdirondacksYes thrilled by support of @GovernorPataki and other former NYS and federal officials and enviro ldrs. http… +10/15/2017,Politicians,@GovernorPataki,"RT @JCats2013: CatsRoundtable listen live 10/15 8:30am EST AM970|https://t.co/R7p9z2wVfg +@NMalliotakis - Feeling good about the election" +10/11/2017,Politicians,@GovernorPataki,"RT @cspencer1508: It was lovely to meet you and your family, and thanks so much for your talk on #Sisi. You added hugely to the @AlthorpLit…" +10/11/2017,Politicians,@GovernorPataki,RT @AllisonPataki: Stunning & surreal weekend at @AlthorpLitFest - an absolute privilege to take part in such a gathering. Many thanks to @… +10/11/2017,Politicians,@GovernorPataki,@AJ_Cats_ @CityAndStateNY Congratulations @AJ_Cats_ You will do a terrific job as our new @Manhattan_GOP Leader! +10/07/2017,Politicians,@GovernorPataki,Thank you @ronnehring native New Yorker for all you do for conservative cause in CA- +10/06/2017,Politicians,@GovernorPataki,RT @jackmartinsny: Honored to have the endorsement of @GovernorPataki our last GOP governor who accomplished so much for Nassau & all of NY… +10/02/2017,Politicians,@GovernorPataki,A great appointment. A tremendous person who has the expertise and knowledge to help those in need. This is exactly… https://t.co/A1tO7gLj4o +09/30/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: Help me #give2veterans. Every retweet means a dollar for @Stand4Heroes, up to $500K, by 9/30. Let's see how much we can…" +09/30/2017,Politicians,@GovernorPataki,"RT @bbretonwindham: Great Tweet @famousquotenet from one of the best my friend @GovernorPataki +#nhpolitics #MAGA https://t.co/Fd8A9wayLp" +09/26/2017,Politicians,@GovernorPataki,American lives are at risk it's critical that we FOCUS efforts now on helping #PuertoRico recover from the devastation of Hurricane Maria +09/22/2017,Politicians,@GovernorPataki,RT @Tourismuganda: @vincent_masabac @realDonaldTrump @NLawGlobal @adoniaayebare @GorillaTrekking @GovernorPataki @scott_eisner The @NLawGlo… +09/18/2017,Politicians,@GovernorPataki,Congratulations @AJ_Cats_ Great choice by @Manhattan_GOP #NYC. https://t.co/wpQMrg83fA +09/13/2017,Politicians,@GovernorPataki,RT @cathy_blaney: @GovernorPataki a class act as always https://t.co/Nh32Q4ZRQu +09/12/2017,Politicians,@GovernorPataki,"RT @jpcahillsr: On Sept. 11, George Pataki remains New York's comforter-in-chief https://t.co/buVFWkgiBy" +09/11/2017,Politicians,@GovernorPataki,Joining my friends @newsmax to share memories from Sept 11th https://t.co/rC9U9LsXrE +09/11/2017,Politicians,@GovernorPataki,"RT @BakerMachado: On the anniversary of 9/11, we ask @GovernorPataki if we are safer. Join me and @jiveDurkey on #CheddarLIVE +https://t.co/…" +09/11/2017,Politicians,@GovernorPataki,"It's is always an honor and inspiring to spend time with our first responders, but especially today. https://t.co/IHnCFw0fcx" +09/10/2017,Politicians,@GovernorPataki,#NeverForget Ex-New York governor reflects on 9/11 anniversary | TheHill https://t.co/sUpfz3vsZi +09/08/2017,Politicians,@GovernorPataki,"RT @JCats2013: CatsRoundtable listen live 10/10 9:00am EST AM970|https://t.co/R7p9z2wVfg +@GovernorPataki - 9/11, the Governor's leadership" +09/01/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ... #ThrowbackThursday @GovernorPataki at the @WindhamNHRec August Annual Senior Picnic in Windham #nhpolitics #oneoft… +08/19/2017,Politicians,@GovernorPataki,"Libby and I are saddened by the loss of one of the world's greatest political minds, our dear friend Arthur Finkels… https://t.co/bziw9pKdYT" +08/16/2017,Politicians,@GovernorPataki,"Wayne Bennett an outstanding public servant & Superintendent of @nyspolice Saddened by his passing, he & his family are in our prayers" +08/16/2017,Politicians,@GovernorPataki,East Hampton Library benefit with @owen_pataki and @JessSeinfeld - So proud! #WhereTheLightFalls @AllisonPataki https://t.co/Z0ZMm2vafJ +08/15/2017,Politicians,@GovernorPataki,"Kid Rock is exactly the kind of candidate the GOP needs right now. #KidRockForSenate @KidRock + https://t.co/gWagkLPcBb" +08/10/2017,Politicians,@GovernorPataki,RT @JohnnyBPhilV: Former NY Gov George Pataki Joins Phil Valentine Today. @ValentineShow @GovernorPataki +08/04/2017,Politicians,@GovernorPataki,Congratulations @peekskillbrews for taking home the gold! https://t.co/eZGLiU4ZMf +08/04/2017,Politicians,@GovernorPataki,Congrats to my friend David Malpass who was confirmed by #USSenate as Treasury's undersec. for international affairs https://t.co/e9j6FMpQ3K +07/29/2017,Politicians,@GovernorPataki,"RT @LovinOnBuffalo: Thanks, @GovernorPataki for knowing the value of @RichardsonCtr and allocating the funding 11 years ago! #TheMoreYouKno…" +07/29/2017,Politicians,@GovernorPataki,RT @Sept11Memorial: The #911Museum has welcomed over 10 million visitors since opening its doors in 2014. https://t.co/52q2hid1zS https://t… +07/20/2017,Politicians,@GovernorPataki,"John McCain is a patriot, an American hero and the very definition of courage. Prayers for a speedy recovery." +07/17/2017,Politicians,@GovernorPataki,#WheretheLightFalls is launched & off to a tremendous start with @AllisonPataki and Owen appearing on @TODAYshow wi… https://t.co/HrBuror6sn +07/15/2017,Politicians,@GovernorPataki,#ProudFather https://t.co/nODEPlUZaN +07/14/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: Thank you so much for having us, @rosannascotto , great to see you! https://t.co/tY9EEnncap" +07/04/2017,Politicians,@GovernorPataki,RT @EliseStefanik: Look who @danstec and I ran into at the Willsboro 4th of July Parade?! Great to see you @GovernorPataki 🇺🇸 https://t.co/… +07/04/2017,Politicians,@GovernorPataki,https://t.co/Q6fRkq4oRR government. Politicians the servants of the people not our master. Important in 1776 More important now +07/04/2017,Politicians,@GovernorPataki,We are the land of the Brave and the home of the Free. Let's pay tribute to our brave American Heroes today. #IndependenceDay +07/01/2017,Politicians,@GovernorPataki,WHERE THE LIGHT FALLS is on sale for pre-order now! By two of my favorite authors @AllisonPataki & Owen Pataki! https://t.co/IwEINb5SvT +06/30/2017,Politicians,@GovernorPataki,Have a great #July4th weekend! #Independenceday2017 #GODBLESSTHEUSA https://t.co/TBGPeY5OBh +06/29/2017,Politicians,@GovernorPataki,#ThrowbackThursday At an event in January with candidate for #NYC Mayor @NMalliotakis #GOP https://t.co/96ysGjPtZe +06/29/2017,Politicians,@GovernorPataki,"Sad to see my friend @MasseyForMayor out of the Mayors race, hope he stays involved and runs for office again. #NYC #NYC2017" +06/29/2017,Politicians,@GovernorPataki,"RT @kilmeade: .@GovernorPataki joins me on #TheBrianKilmeadeShow today! +Watch now: https://t.co/VuIepVGPlh" +06/28/2017,Politicians,@GovernorPataki,RT @AllisonPataki: 1 month to go...w/ co-author/bro at @RandomHouse HQ to prep for launch of WHERE THE LIGHT FALLS. 7/11 will be here befor… +06/26/2017,Politicians,@GovernorPataki,RT @leemark607: @GovernorPataki Cleaned up at moms. Found I saved this. Thanks for what you did (and tried to) for NY. Too bad dems are s… +06/24/2017,Politicians,@GovernorPataki,Thank You @RyanMoses20 We had a great team! #NewYork #Empirestate https://t.co/m8hOaVdLJW +06/24/2017,Politicians,@GovernorPataki,Thank you @CCFdn. https://t.co/S1FvoBNVPU +06/22/2017,Politicians,@GovernorPataki,RT @AllisonPataki: A busy day of book launching! #books #review #SummerReading https://t.co/3d6KF99MvV +06/22/2017,Politicians,@GovernorPataki,Congratulations @JoeLhota. He's the right person to guide the #MTA again! #NYC #NewYork https://t.co/hwSJQg4qx0 +06/20/2017,Politicians,@GovernorPataki,"RIP George Canon a wonderful man, a great leader for Newcomb & a fierce advocate for all of the residents of the ADK https://t.co/QhEW8BrXLn" +06/18/2017,Politicians,@GovernorPataki,Congratulations @EmilyforPEC! https://t.co/jzpACgs1u9 +06/16/2017,Politicians,@GovernorPataki,#FlashbackFriday announcing the new #Yankees stadium in 2005. https://t.co/o7jM5CShse +06/16/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ...#ThrowbackThursday to Feb 2015 0 degrees outside breakfast at @RedArrow24Diner with @GovernorPataki Thanks for brea… +06/14/2017,Politicians,@GovernorPataki,Libby & I are praying for the full recovery of @SteveScalise & all those injured in today's shooting. America's first responders are heroes. +06/12/2017,Politicians,@GovernorPataki,Pataki Rails Against Status Referendum Boycott – Caribbean Business https://t.co/dGrIH3Beej +06/09/2017,Politicians,@GovernorPataki,#FlashbackFriday At our #Peekskill farm in 1992 with my Mom/Dad and family. #GoodOldDays https://t.co/w3KB4Kd5dh +05/29/2017,Politicians,@GovernorPataki,Today we honor those that have made the ultimate sacrifice for our freedom. We owe a debt of gratitude to all who serve today #memorialday +05/26/2017,Politicians,@GovernorPataki,RT @bbretonwindham: . #ThrowbackThursday Thanks again @GovernorPataki #nhpolitics https://t.co/yE3r83qfGE +05/20/2017,Politicians,@GovernorPataki,"RT @dublinmuseum: Honoured to welcome @GovernorPataki and Mrs Pataki, two very charming visitors, to the museum this evening. https://t.co/…" +05/14/2017,Politicians,@GovernorPataki,#HappyMothersDay to ALL the #Moms and especially @LibbyPataki @emmyhambrg @AllisonPataki @EmilyforPEC! Enjoy your d… https://t.co/zCf4MY12rv +05/14/2017,Politicians,@GovernorPataki,RT @NHLogCabin: The first being @LogCabinGOP friend & ally @GovernorPataki 🏳️‍🌈 https://t.co/GGG3UHToV3 +05/02/2017,Politicians,@GovernorPataki,Sorry to see @JCats2013 not running for #NYC Mayor. He would have made an excellent leader of our great city. https://t.co/AU6119Hwm3 +04/22/2017,Politicians,@GovernorPataki,Thank you @BryanFCranna. We did a lot for our great state. #EarthDay #EmpireState #NY https://t.co/FIQXqk3Qjr +04/22/2017,Politicians,@GovernorPataki,#throwback from when President Bush Visited the Adirondacks with me on #earhday. We worked with Americorp (4/22/02). https://t.co/CUg1MmXGwp +04/22/2017,Politicians,@GovernorPataki,#HAPPYEARTHDAY https://t.co/aIz94o8FnX +04/22/2017,Politicians,@GovernorPataki,Congratulations David! Trump's Brilliant Pick At Treasury May Head Off Next Crisis @Manhattan_GOP https://t.co/CF3OA6jQVv +04/20/2017,Politicians,@GovernorPataki,"#ThrowbackThursday My #NYHallofGovernors portrait in #Garrison, NY with the Hudson River behind me #hudsonvalley https://t.co/u3W0MU1qpC" +04/19/2017,Politicians,@GovernorPataki,"RT @ClaireyHardwick: In honor of #taxday watch my interview with @GovernorPataki on why #taxreform is needed, and how it will create jobs h…" +04/12/2017,Politicians,@GovernorPataki,Thank you for your thoughts and prayers. Libby and I are fortunate to have such a great family and friends. https://t.co/o8R90V5D89 +04/11/2017,Politicians,@GovernorPataki,"RT @cathy_blaney: Rob, this is so true and lovely! ❤️ Peggy Pataki was 'Grandma' to many: Appreciation https://t.co/lYTRg5O2Id" +04/03/2017,Politicians,@GovernorPataki,"After a 101 years my Mother Margaret ""Peggy"" Pataki passed away peacefully in her sleep this morning.Thank you for your thoughts and prayers" +04/02/2017,Politicians,@GovernorPataki,@irishradio Adrian We've been talking about our trip all day. Thank you. And Kieran Playing Danny boy over and over for her +04/02/2017,Politicians,@GovernorPataki,@BGAndersson Brian. Yes. Thank you. And for all your help +04/02/2017,Politicians,@GovernorPataki,@EdwardLynchSR3 thank you. Our sacred grandma still hanging on She loves all her Irish cousins +04/01/2017,Politicians,@GovernorPataki,Thank you to all who called with thoughts/prayers. After 101 years my Mother seems to be coming to the end Quiet/peaceful/no pain or illness +03/25/2017,Politicians,@GovernorPataki,Today is NATIONAL MEDAL OF HONOR DAY. For personal acts of valor above and beyond the call of duty #MedalOfHonorDay https://t.co/fd8LwLtT9e +03/23/2017,Politicians,@GovernorPataki,Sad to see the passing of David Rockefeller. He was the original visionary for lower manhattan. #rockefeller #NYC https://t.co/pKDhqJzy8d +03/22/2017,Politicians,@GovernorPataki,Great to be @ wreath-laying ceremony last week commemorating the 1848/1956 Hungarian revolutions. #Hungary #nyc https://t.co/ZaKNyToLAT +03/22/2017,Politicians,@GovernorPataki,RT @Panorama24H: * En desarrollo: Exgobernador de NY @GovernorPataki está presente en Foro sobre el plan fiscal y que auspicia @Camarapr .… +03/19/2017,Politicians,@GovernorPataki,"""On that terrible day, a nation became a neighborhood. All Americans became New Yorkers"" https://t.co/HEd5RyqC8G" +03/17/2017,Politicians,@GovernorPataki,Congrats to Rob Cole and @JakeMenges of In The Field Global for winning 2 #pollies2017 awards for TV and Radio ad's https://t.co/uJJfeB81Sg +03/15/2017,Politicians,@GovernorPataki,"RT @FerencKumin: Contrary to the extreme cold it was uplifting to dedicate the new 56 Memorial in #NYC with @GovernorPataki, Colleen Bell,…" +03/15/2017,Politicians,@GovernorPataki,RT @HungaryToday: #Hungarian-Americans Commemorate #Anniversary of the 1848 #Revolution @GovernorPataki @clevecserk @AmbSzemerkenyi https:/… +03/14/2017,Politicians,@GovernorPataki,".@PreetBharara effort to combat corruption was terrific & deserves enormous credit, but @POTUS deserves his pick https://t.co/EhuEM8f1KI" +03/13/2017,Politicians,@GovernorPataki,RT @tvkatesnow: Former NY Gov @GovernorPataki weighs in on the Justice dept's decision to purge the 46 remaining Attorney Generals https://… +03/11/2017,Politicians,@GovernorPataki,"RT @bbretonwindham: I'm Proud & Honored ""Voted"" best of 2017 in Windham Magazine. for my service to the town as a Selectmen ! #nhpolitics…" +03/07/2017,Politicians,@GovernorPataki,Congratulations to Andrew Giuliani on his new position at the White House #POTUS Great NYer and even better person. https://t.co/NBWVgpd56N +03/06/2017,Politicians,@GovernorPataki,#ProudFather https://t.co/0UGKKQWX2V +03/02/2017,Politicians,@GovernorPataki,Congratulations to my friend @GovernorPerry on being confirmed by the Senate as our next Energy Secretary #rickperry #MakeAmericaGreatAgain +03/02/2017,Politicians,@GovernorPataki,#ThrowbackThursday When we changed New York for the better! https://t.co/WTb5c6xCJS +03/01/2017,Politicians,@GovernorPataki,Tremendous speech tonight from @POTUS - for the first time in 8 years we have a strong positive vision for America +02/20/2017,Politicians,@GovernorPataki,"“The harder the conflict, the greater the triumph.” — Washington #PresidentsDay https://t.co/Xsnqlyfxhc" +02/20/2017,Politicians,@GovernorPataki,RT @Sept11Memorial: Roses and an American flag patch left as tribute on the first responders parapet of the #911Memorial. https://t.co/ef4k… +02/19/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ..@GovernorPataki says @realDonaldTrump Tax Reform will Create Jobs: https://t.co/WCkdAfh2Xj #nhpolitics #MAGA @CLewa… +02/17/2017,Politicians,@GovernorPataki,RT @cathy_blaney: Ru signed up? Registration is now open for the #911Memorial5K on 4/23. Register 2day use code FRIENDS for $10 off: https:… +02/15/2017,Politicians,@GovernorPataki,RT @FerencKumin: Great dinner benefiting the maintenance of the biggest #Budapest #Jewish cemetery @GovernorPataki @AmbDaniDayan with Yossi… +02/15/2017,Politicians,@GovernorPataki,"Congrats to Adele Malpass @Manhattan_GOP and Dawn Simmons. We didn't win, but nice to see the GOP fighting in Harlem https://t.co/6DfTAPNR0c" +02/14/2017,Politicians,@GovernorPataki,RT @AllisonPataki: @katiyana thank you very much ☺️ I am looking forward to sharing the new book this July! https://t.co/xu3ZcUSCTm +02/12/2017,Politicians,@GovernorPataki,"Malpass is well qualified.Great pick by @realDonaldTrump It's a vital job held by Volcker, Summers, Geithner, Taylor https://t.co/Jc8bAd0Vvq" +02/09/2017,Politicians,@GovernorPataki,RT @AllisonPataki: EXCLUSIVE first look at the cover for #WhereTheLightFalls ! Published today by @EW --what do you think? #cover reveal #h… +02/09/2017,Politicians,@GovernorPataki,"#tbt Awarding the NY Freedom Medal to Eileen Collins and ""Pee Wee"" Reese with Racheal Robinson, D. Zimmer and S. So… https://t.co/c1Dv1BEieR" +02/08/2017,Politicians,@GovernorPataki,Proud Father! https://t.co/3YN7B8H7Yn +02/05/2017,Politicians,@GovernorPataki,Congratulations Jim! #Boeheim1K #OrangeNation https://t.co/DS4RBvUmxQ +02/03/2017,Politicians,@GovernorPataki,Congratulations #RexTillerson. I could not agree more. One team! @realDonaldTrump @StateDept https://t.co/sWXa34NG4A +02/01/2017,Politicians,@GovernorPataki,.@realDonaldTrump selection of Judge Gorsuch to fill the seat of Justice Scalia is outstanding. +01/27/2017,Politicians,@GovernorPataki,"RT @AmbSzemerkenyi: Thank you to @GovernorPataki, Senator @RoyBlunt and @SenatorWicker for attending the Embassy’s ""Salute to Freedom” brun…" +01/27/2017,Politicians,@GovernorPataki,Great to speak at Hungarian diplomats Inauguration event in honor of @realDonaldTrump My ancestors would be proud. https://t.co/y7cehUvMkO +01/26/2017,Politicians,@GovernorPataki,I would not have been Governor of NY without Arthur Finkelstein. Truly A great American. https://t.co/G4yoggmXM5 +01/25/2017,Politicians,@GovernorPataki,Nobody better than @bbretonwindham a good friend and great American. #nhpolitics https://t.co/hlGOOneCjN +01/24/2017,Politicians,@GovernorPataki,Couldn't agree more with @JoeNBC @RepTomPrice #MAGA https://t.co/p1pyFgjBwR +01/21/2017,Politicians,@GovernorPataki,Former Gov. Pataki: President from New York an 'Exciting Prospect' https://t.co/uQV5hVb3sB +01/20/2017,Politicians,@GovernorPataki,Congratulations Donald Trump: Our 45 President of the United States https://t.co/kaSNTLKL0a +01/20/2017,Politicians,@GovernorPataki,"The election is over, it's time for all Americans to come together. https://t.co/mthiNE2RZ9" +01/20/2017,Politicians,@GovernorPataki,#MAGA with my friends @jpcahillsr Ed Morgan & Tom Reynolds https://t.co/lyR68VbaPf +01/19/2017,Politicians,@GovernorPataki,With my favorite Assemblywoman @NMalliotakis at a Reception in tribute to Reince Priebus #Inauguration https://t.co/pYed7hA4oH +06/30/2018,Politicians,@LindseyGrahamSC,I just met with #PastorAndrew Brunson who is being held in a Turkish prison. He’s not guilty of anything in my vie… https://t.co/3tOdhtpCI1 +06/29/2018,Politicians,@LindseyGrahamSC,"We spoke candidly about Pastor Brunson and other friction points, including the purchase of Russian made S-400s and… https://t.co/5wjCFrPdNr" +06/29/2018,Politicians,@LindseyGrahamSC,"Very good, respectful, and candid meeting with President Erdogan. + +We have real differences, but far more in comm… https://t.co/mKDbfA2hGC" +06/28/2018,Politicians,@LindseyGrahamSC,As soon as we get a name we’ll go to work to get the person confirmed. https://t.co/tAmaLOd0Lv +06/28/2018,Politicians,@LindseyGrahamSC,"RT @thehill: Graham: Senate Judiciary Committee is ""ready to go"" once Trump names SCOTUS pick https://t.co/aJC5uNrtdl https://t.co/n6GegAuw…" +06/28/2018,Politicians,@LindseyGrahamSC,"Great to see @MittRomney win the Utah Senate GOP primary. + +Mitt is a good man and I look forward to working with h… https://t.co/8FM7HiFPiI" +06/27/2018,Politicians,@LindseyGrahamSC,"Now speaking with @tperkins of @FRCdc about the Supreme Court vacancy. + +LISTEN: https://t.co/mnEuOgaJPs" +06/27/2018,Politicians,@LindseyGrahamSC,"Speaking with @FRCdc today at 5:05 pm about the retirement of Justice Kennedy. #SCOTUS + +LISTEN: +https://t.co/0VJoaIXGtL" +06/27/2018,Politicians,@LindseyGrahamSC,"As a Supreme Court Justice, he called them as he saw them. He should be proud of the service he has rendered to th… https://t.co/V8fPhDuoTC" +06/27/2018,Politicians,@LindseyGrahamSC,I deeply appreciate Justice Kennedy’s long service to our nation as a member of the Supreme Court and the federal j… https://t.co/TadPZWcYCT +06/27/2018,Politicians,@LindseyGrahamSC,"Hearing on @StateDept budget with @SecPompeo. + +WATCH LIVE: https://t.co/i911WRp7ax" +06/27/2018,Politicians,@LindseyGrahamSC,"Chairing a subcommittee hearing on the @StateDept budget and questioning @SecPompeo today at 2:30 pm. + +WATCH: +https://t.co/i911WRp7ax" +06/27/2018,Politicians,@LindseyGrahamSC,Great decision by the Supreme Court to make sure that workers are not forced to pay dues to a political organizatio… https://t.co/kaXAo3h1Gb +06/27/2018,Politicians,@LindseyGrahamSC,RT @WashTimes: Graham demands answer to whether anti-Trump FBI agents had role in FISA warrant on Carter Page https://t.co/kWLhwCxePn +06/27/2018,Politicians,@LindseyGrahamSC,@votejohnwarren Now is the time we should rally behind @henrymcmaster and our entire #SCGOP team to ensure victory in November. +06/27/2018,Politicians,@LindseyGrahamSC,John Warren (@votejohnwarren) ran a very impressive campaign for #SCGOV which he and his supporters should be proud… https://t.co/CzVGr9b6gE +06/27/2018,Politicians,@LindseyGrahamSC,Mr. Wilkie has been serving as the #2 at the VA and is prepared to bring about much needed-changes to better serve… https://t.co/lOfAhR5pve +06/27/2018,Politicians,@LindseyGrahamSC,"I hope Robert Wilkie is treated well during his confirmation hearing today. + +I’ve known him for years and he is a… https://t.co/qLnd7st6u0" +06/27/2018,Politicians,@LindseyGrahamSC,"@votetimmons He’s a worthy successor to @TGowdySC who has done a terrific job for #SC4, South Carolina, and our nation." +06/27/2018,Politicians,@LindseyGrahamSC,"Congratulations to William @VoteTimmons for winning a hard-fought GOP primary in #SC4. + +William will be a strong a… https://t.co/LqJ2DjBOGN" +06/27/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""The person in charge of the #Clinton email investigation, Mr. Strzok, and Ms. Page were in the tank for Cl…" +06/27/2018,Politicians,@LindseyGrahamSC,"Resounding victory tonight for @AGAlanWilson + +He aggressively represents South Carolina interests and will continue… https://t.co/m9p59BilSb" +06/27/2018,Politicians,@LindseyGrahamSC,RT @realDonaldTrump: Congratulations to Governor Henry McMaster on your BIG election win! South Carolina loves you. We are all proud of you… +06/27/2018,Politicians,@LindseyGrahamSC,"Congratulations to Governor @henrymcmaster on a hard-fought victory. + +There are a lot of good things going on in… https://t.co/osYPt23Aks" +06/26/2018,Politicians,@LindseyGrahamSC,"Speaking with @marthamaccallum now on @FoxNews. + +Tune in!" +06/26/2018,Politicians,@LindseyGrahamSC,"RT @jason_donner: Lindsey Graham on SCOTUS travel ban ruling: ""I thought it was a sound decision. This is not a religious ban. The first or…" +06/26/2018,Politicians,@LindseyGrahamSC,Hearing on Protecting Our Elections: Examining Shell Companies and Virtual Currencies as Avenues for Foreign Interf… https://t.co/J1vwp5A4Ek +06/26/2018,Politicians,@LindseyGrahamSC,Chairing a Judiciary subcommittee hearing on Protecting Our Elections: Examining Shell Companies and Virtual Curren… https://t.co/Vp1qpzPbbk +06/26/2018,Politicians,@LindseyGrahamSC,@realDonaldTrump We are at war with radical Islam and must act accordingly to protect our nation. +06/26/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump As I stated when the new Executive Order was issued, it is not a religious ban. + +The order was f… https://t.co/Ovmnq3FPKv" +06/26/2018,Politicians,@LindseyGrahamSC,Pleased to see the Supreme Court uphold President @realDonaldTrump’s travel ban from countries with high incidences… https://t.co/jkFApZzO4D +06/25/2018,Politicians,@LindseyGrahamSC,"Headed to the White House to travel with President @realdonaldtrump to Columbia. + + Looking forward to the Election Eve Rally!" +06/23/2018,Politicians,@LindseyGrahamSC,Keeping Katie Arrington and everyone involved in last night’s accident in my thoughts and prayers. Hoping for a speedy recovery. +06/21/2018,Politicians,@LindseyGrahamSC,"Charles Krauthammer was one of the strongest voices and most brilliant minds in all of American politics. + +I pray… https://t.co/tWiihrGD9z" +06/21/2018,Politicians,@LindseyGrahamSC,"Great to see the @FLOTUS on the ground in Texas getting a first-hand assessment of the family separation issue. + +S… https://t.co/32YcOmi9Lt" +06/21/2018,Politicians,@LindseyGrahamSC,"You can watch the bipartisan discussion on Strategic Competition at @CNASdc. + +LIVE: +https://t.co/wSP2oZ1l6Z https://t.co/6fDS9EUdaT" +06/20/2018,Politicians,@LindseyGrahamSC,The legislation gives the Department of Homeland Security (DHS) the clear legal authority to keep children under th… https://t.co/iviFPgFDzN +06/20/2018,Politicians,@LindseyGrahamSC,"This bill prevents breaking up real families, but requires adults to show up for court." +06/20/2018,Politicians,@LindseyGrahamSC,"My goal is to make sure families are not separated, but also prevent the rampant abuse of ‘catch and release’ where… https://t.co/kU7iU98an8" +06/20/2018,Politicians,@LindseyGrahamSC,"Just introduced the Keep Families Together and Enforce the Law Act with Senators Tillis, Rubio, Johnson, Cotton, Cruz, Heller and Cornyn." +06/20/2018,Politicians,@LindseyGrahamSC,"RT @abc_columbia: LISTEN: Senator Lindsey Graham speaks with President Donald Trump, other lawmakers about #separationcrisis at the border.…" +06/20/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump Democrats should work with Republicans to allow families to stay together, as well as ensure that… https://t.co/BVwaySl01S" +06/20/2018,Politicians,@LindseyGrahamSC,Very pleased President @realDonaldTrump will issue an Executive Order dealing with the separation of children and p… https://t.co/rwo6XJR3Ja +06/20/2018,Politicians,@LindseyGrahamSC,"A big day for @VolvoCarUSA. + +A big day for #SouthCarolina. + +You Make Us Proud! + +#newS60 https://t.co/6o5zNIKuCJ" +06/20/2018,Politicians,@LindseyGrahamSC,"I’m not buying that the Clinton email investigation was on the up and up. + +And the reason I’m not buying it is bec… https://t.co/KQzkUw2nrp" +06/19/2018,Politicians,@LindseyGrahamSC,Long overdue! https://t.co/gtSyUuLPyc +06/19/2018,Politicians,@LindseyGrahamSC,"NAILED IT. + +If you haven’t done so already please read these tweets from my friend and colleague @SenatorTimScott. https://t.co/71QhcydepR" +06/19/2018,Politicians,@LindseyGrahamSC,"Speaking with @seanhannity in just a few minutes about @FBI +and @TheJusticeDept. + +Tune In: +https://t.co/EqNG02sJ7Q" +06/19/2018,Politicians,@LindseyGrahamSC,"Speaking with @seanhannity today at 4:00 pm about the @TheJusticeDept and @FBI. + +Tune In: +https://t.co/EqNG02sJ7Q" +06/19/2018,Politicians,@LindseyGrahamSC,"@DHSgov She is hard-working, incredibly smart, and passionate. She is the right person at the right time. + +Her res… https://t.co/H7NsjV6nXU" +06/19/2018,Politicians,@LindseyGrahamSC,"I strongly stand behind @DHSGov Secretary Nielsen and her effort to solve a long-standing problem. + +https://t.co/qPk82NBc4O" +06/19/2018,Politicians,@LindseyGrahamSC,"I’m not buying that the CLINTON EMAIL INVESTIGATION was on the UP AND UP. + +WATCH: https://t.co/ogD9iMYykV" +06/18/2018,Politicians,@LindseyGrahamSC,"Questioning the witnesses in Senate Judiciary Committee NOW. + +WATCH: +https://t.co/4o6YeUmPFf" +06/18/2018,Politicians,@LindseyGrahamSC,Will be questioning the witnesses about the Inspector General’s Report on Justice Department and FBI Actions in Adv… https://t.co/l3JEy9c6zQ +06/15/2018,Politicians,@LindseyGrahamSC,"Speaking with @KateBolduan on @CNN in just a few minutes. + +Tune In!" +06/14/2018,Politicians,@LindseyGrahamSC,"Happy Birthday, Mr. President! + +You’re keeping your promise to make America safer and more prosperous. + +And unf… https://t.co/O9LKN7T0cx" +06/14/2018,Politicians,@LindseyGrahamSC,"ICYMI: + +I spoke with @IngrahamAngle last night on @FoxNews about North Korea and President @realDonaldTrump. + +https://t.co/9YZxSYsCUf" +06/14/2018,Politicians,@LindseyGrahamSC,"TONIGHT: Speaking with @FoxNews @IngrahamAngle at 10:00 pm about North Korea. + +Tune in!" +06/13/2018,Politicians,@LindseyGrahamSC,RT @tperkins: .@LindseyGrahamSC: President Trump has done more in 500 days than every president before him in 30 years. #SingaporeSummit… +06/13/2018,Politicians,@LindseyGrahamSC,RT @taylor_reidy: Sen. Graham is live now on @CNN speaking with @andersoncooper https://t.co/2JOQmcUUIE +06/13/2018,Politicians,@LindseyGrahamSC,Now speaking with @cnn @andersoncooper. +06/12/2018,Politicians,@LindseyGrahamSC,Speaking with @CNN @andersoncooper at 8:00 pm about President @realDonaldTrump and North Korea. +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with @marthamaccallum on @FoxNews now. + +Tune in!" +06/12/2018,Politicians,@LindseyGrahamSC,Ill be speaking with @marthamaccallum at 7:00 pm on @FoxNews about this afternoons phone call from President… https://t.co/9sUBc7dp1u +06/12/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump The President has given Kim Jong Un a way out that is good for him and the world. + +I hope Kim is… https://t.co/z9Rt3KA6BF" +06/12/2018,Politicians,@LindseyGrahamSC,@realDonaldTrump I told President @realDonaldTrump I’m pleased and proud of his leadership regarding the North Kore… https://t.co/PaCf31vrLM +06/12/2018,Politicians,@LindseyGrahamSC,Just had a great discussion with President @realDonaldTrump calling from Air Force One. +06/12/2018,Politicians,@LindseyGrahamSC,"ICYMI: +With @CBSThisMorning earlier today discussing #TrumpKimSummit and what is means for the US and North Korea. + +https://t.co/Ef0bz8aMKo" +06/12/2018,Politicians,@LindseyGrahamSC,"ICYMI: Spoke with NBC @TODAY @SavannahGuthrie about North Korea and Singapore #TrumpKimSummit + +https://t.co/3vfschuC3A" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSEveningNews: 'They've done this twice"": Senator Lindsey Graham (R-SC) notes that North Korea has reneged on past promises to denucle…" +06/12/2018,Politicians,@LindseyGrahamSC,RT @kilmeade: .@LindseyGrahamSC believes this is the last chance for peace with North Korea. Do you agree? #TheBrianKilmeadeShow @foxnewsra… +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSNews: ""[Kim Jong Un] kills his own people in large numbers. He killed Otto Warmbier. He is a very bad guy. But I'm willing to deal w…" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSNews: ""President Trump has to convince Kim Jong Un he's safer and more prosperous without nuclear weapons. This is a first step, thi…" +06/12/2018,Politicians,@LindseyGrahamSC,"Glad to hear @larry_kudlow is recovering well. + +He is an invaluable advisor to President @realDonaldTrump. + +Larry… https://t.co/BjPgKjRcWH" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @Kilmeade in just a few minutes. + +Tune In: https://t.co/ksTRBlszUw" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with @hughhewitt now. + +https://t.co/4FslSczFh3" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSThisMorning: ""One thing I would tell you, if there is an agreement it must come to congress for our approval,"" Senator @LindseyGraha…" +06/12/2018,Politicians,@LindseyGrahamSC,RT @CBSThisMorning: Ahead at 8am: Senator @LindseyGrahamSC joins us live to discuss the #TrumpKim summit and how the president can get Nort… +06/12/2018,Politicians,@LindseyGrahamSC,"RT @TODAYshow: “I’m cautiously optimistic. I’ve very pleased with President Trump this far, but we’ve got a long ways to go.”- @LindseyGrah…" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with NBC @TODAYshow in just a few minutes. + +Tune In!" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @TODAYshow: Today on TODAY: A look at President Trump’s meeting with Kim Jong Un, and what this could mean for the U.S. and North Korea…" +06/11/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump When it comes to North Korea, it’s not what they say that matters, but what they do. + +I know Pre… https://t.co/uEM4URtq6Z" +06/11/2018,Politicians,@LindseyGrahamSC,"Hoping for the best in the meeting between President @realDonaldTrump and Kim Jong Un. + +It’s a historic opportuni… https://t.co/9J0zajBku1" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @axios: Lindsey Graham on @ThisWeekABC: ""I'm not so sure most Americans"" are pro-free trade and pro-globalization https://t.co/mHnIwevMNc" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""President Trump, if he has to, will use military force to end this threat to the American homeland."" #Sund…" +06/10/2018,Politicians,@LindseyGrahamSC,Speaking with @MariaBartiromo now on Fox News. +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: After a group of Senate Dems made demands for a potential deal with North Korea, @LindseyGrahamSC says “I embrace this let…" +06/10/2018,Politicians,@LindseyGrahamSC,"Speaking with @MariaBartiromo on Fox News in just a few minutes. + +Tune in!" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: .@LindseyGrahamSC says he's ""not so sure"" @SenJohnMcCain is right that a majority of Americans support free trade, globali…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABCWorldNews: Sen. Lindsey Graham says he's ""not so sure"" Sen. John McCain is right that a majority of Americans support free trade, gl…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABC: After a group of Senate Dems made demands for a potential deal with North Korea, Sen. Graham: “I embrace this letter… here’s the q…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABC: Sen. Lindsey Graham: “There’s three outcomes here: Peace, where we have a win-win solution; military force where we devastate the…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: .@LindseyGrahamSC: “There’s three outcomes here: Peace, where we have a win-win solution; military force where we devastat…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @MollyNagle3: .@LindseyGrahamSC tells @GStephanopoulos that there are only two options in negotiations with North Korea: ""peace or war""…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: As President Trump prepares to go face to face with Kim Jong Un, @GStephanopoulos speaks with Trump ally @LindseyGrahamSC…" +06/08/2018,Politicians,@LindseyGrahamSC,"Very sad to hear about Charles @krauthammer. + +He is one of the strongest voices and most brilliant minds in all of… https://t.co/XW70MqINuI" +06/08/2018,Politicians,@LindseyGrahamSC,My statement on today’s MOX decision. https://t.co/vaxCwd7NYs +06/07/2018,Politicians,@LindseyGrahamSC,"A very Happy Birthday to @VP Mike Pence! + +🎂🎂🎂 https://t.co/O88SMkfsnk" +06/07/2018,Politicians,@LindseyGrahamSC,"Governor McMaster was critical to getting the Port funding over the line. + +@HenryMcmaster's relationship with… https://t.co/SN892m6Sqr" +06/07/2018,Politicians,@LindseyGrahamSC,"@SenatorTimScott @henrymcmaster Charleston Harbor deepening has been a team effort. + +I think we all understand th… https://t.co/ffk5aCppjF" +06/07/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @henrymcmaster I also very much appreciate the support of South Carolina State Senator Hugh Leathe… https://t.co/cwewBdKf4I +06/07/2018,Politicians,@LindseyGrahamSC,I also want to thank the congressional delegation – particularly my friend and colleague @SenatorTimScott -- for th… https://t.co/5mtL60t19l +06/07/2018,Politicians,@LindseyGrahamSC,"RT @dcexaminer: Lindsey Graham: DOJ's non-answer on Rosenstein recusal is pure ""gobbledygook"" https://t.co/nZLAIBjMAh https://t.co/ym3wT3Y9…" +06/07/2018,Politicians,@LindseyGrahamSC,The nearly $50 million in the Army Corps’ work plan allows construction to go forward without delay and keeps the p… https://t.co/tSMEAiSECT +06/07/2018,Politicians,@LindseyGrahamSC,"This is great news for the Port of Charleston and the state of South Carolina. + +Charleston Harbor deepening is ab… https://t.co/RwCCqqy6fx" +06/07/2018,Politicians,@LindseyGrahamSC,I’m very appreciative of the Trump Administration’s decision to dedicate nearly $50 million to deepen Charleston Harbor. +06/06/2018,Politicians,@LindseyGrahamSC,Speaking with @FoxNews tonight at 7:00 pm. Tune in. +06/06/2018,Politicians,@LindseyGrahamSC,My statement on today’s meeting at the White House with President @realDonaldTrump on trade. https://t.co/XMKfk44VRf +06/06/2018,Politicians,@LindseyGrahamSC,"I strongly believe there is a plan in place to lead us to better trade deals. + +We should give the president the t… https://t.co/u2RH4sOp9x" +06/06/2018,Politicians,@LindseyGrahamSC,"Now is not the time to undercut President Trump’s ability to negotiate better trade deals. + +I will not support an… https://t.co/INYTax8vLw" +06/06/2018,Politicians,@LindseyGrahamSC,It was great meeting with President Trump on his trade agenda. I’m confident he is on track to get us better trade… https://t.co/6Lw6W06SH7 +06/06/2018,Politicians,@LindseyGrahamSC,"Great to join President @realDonaldTrump today at the White House for the signing into law of John S. McCain III, D… https://t.co/Ht0OryuxtT" +06/06/2018,Politicians,@LindseyGrahamSC,"To all those who participated and who no longer are with us, may God keep you in his care. And to those who remain,… https://t.co/kaYHlZycHO" +06/06/2018,Politicians,@LindseyGrahamSC,"Today we mark the 74th anniversary of the #DDay landing at Normandy, France – arguably the most impressive military… https://t.co/lMxdNmlejN" +06/06/2018,Politicians,@LindseyGrahamSC,"RT @NBCPolitics: Sen. Lindsey Graham sends letter to Deputy AG Rod Rosenstein asking if he is a witness in the Mueller investigation, and i…" +06/06/2018,Politicians,@LindseyGrahamSC,RT @dcexaminer: Lindsey Graham asks Rod Rosenstein if he should recuse himself from overseeing Robert Mueller https://t.co/AYDhxnSnip https… +06/05/2018,Politicians,@LindseyGrahamSC,RT @dcexaminer: Lindsey Graham asks Rod Rosenstein if he should recuse himself from overseeing Robert Mueller https://t.co/e8BFCDcsnL https… +06/05/2018,Politicians,@LindseyGrahamSC,Speaking with @DanaPerino today in the 2pm hour on @FoxNews. Tune in. +06/05/2018,Politicians,@LindseyGrahamSC,"ICYMI + +Spoke with @ShannonBream last night about my letter to Deputy Attorney General Rod Rosenstein. + +WATCH: +https://t.co/cZd3Xzi16O" +06/01/2018,Politicians,@LindseyGrahamSC,RT @SpecialReport: Top Republican Sen. Lindsey Graham is pressing Deputy Attorney General Rod Rosenstein on whether the Justice Department… +05/31/2018,Politicians,@LindseyGrahamSC,"@Disney @ABC @KeithOlbermann @espn @realDonaldTrump @FullFrontalSamB Time will tell, but I doubt they will be asked… https://t.co/bPjaIr87cm" +05/31/2018,Politicians,@LindseyGrahamSC,@Disney @ABC @KeithOlbermann @espn @realDonaldTrump Are Democratic members being asked whether @FullFrontalSamB sho… https://t.co/iG2tnFZOgA +05/31/2018,Politicians,@LindseyGrahamSC,@Disney @ABC @KeithOlbermann Will Democratic Members of Congress be pursued and asked whether or not… https://t.co/o74BrCrDEn +05/31/2018,Politicians,@LindseyGrahamSC,"I have no issues with @Disney @ABC decision to fire Roseanne. + +But it does raise questions about why the same com… https://t.co/13NciL7wPM" +05/29/2018,Politicians,@LindseyGrahamSC,Devastated to hear of the tragic accident resulting in the deaths of Mike McCormick and Aaron Smeltzer. Both were… https://t.co/2T3bEoigZZ +05/28/2018,Politicians,@LindseyGrahamSC,On #MemorialDay we honor the American heroes who made the ultimate sacrifice defending our values and protecting ou… https://t.co/kAVAZgtDhs +05/27/2018,Politicians,@LindseyGrahamSC,"Speaking with @JudgeJeanine on @FoxNews tonight at 9:30 pm about the latest on North Korea and more. + +Tune In!" +05/26/2018,Politicians,@LindseyGrahamSC,"Today’s @aikenstandard on MOX. + +Story available: https://t.co/leTSUSzB0j https://t.co/2KkLouxWI9" +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice @ENERGY I also appreciate SC Governor @henrymcmaster for sending h… https://t.co/960DfAkcN4 +05/25/2018,Politicians,@LindseyGrahamSC,RT @demarest_colin: U.S. Sens. Tim Scott (@SenatorTimScott) and Lindsey Graham (@LindseyGrahamSC); SC AG Alan Wilson (@AGAlanWilson); and U… +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice @ENERGY We have the opportunity to prevent @ENERGY from repeating… https://t.co/Mp2Xy6brLg +05/25/2018,Politicians,@LindseyGrahamSC,"@SenatorTimScott @CongJoeWilson @SCAttyGenOffice The Dept of @ENERGY has abandoned MOX, but Congress hasn’t. + +The… https://t.co/tvZUMG7ouY" +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice This week I introduced and passed an amendment to the FY 2019 Nati… https://t.co/XvSv1yYhuy +05/25/2018,Politicians,@LindseyGrahamSC,"With @SenatorTimScott @CongJoeWilson, @SCAttyGenOffice Alan Wilson and local Aiken officials discussing the MOX pro… https://t.co/LJwSZ7o7bD" +05/25/2018,Politicians,@LindseyGrahamSC,"As to the drama surrounding a meeting with North Korea: + +I don’t know where we will meet, when we will meet, or… https://t.co/wR9YKzpHp8" +05/25/2018,Politicians,@LindseyGrahamSC,"Great speech by President @realDonaldTrump at the US Naval Academy graduation. + +It was an unapologetic belief in… https://t.co/i4u7PUU9bQ" +05/25/2018,Politicians,@LindseyGrahamSC,Very proud of @MeghanMcCain for holding her own in a hostile environment when it came to standing for the National… https://t.co/9lmK3bla4Y +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/0fSBSeorhE" +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/yoQYThCcze" +05/25/2018,Politicians,@LindseyGrahamSC,"RT @hughhewitt: LG: You know, @realDonaldTrump , you know, he’s not into the giving mode on the golf course.” https://t.co/MPq8ADMRs1" +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/7cjyh0qXMp" +05/25/2018,Politicians,@LindseyGrahamSC,"Speaking with Fox News Radio Brian @kilmeade now. + +Tune In: +https://t.co/Y7MRlJ1hJy" +05/25/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade on Fox News Radio at 10:05 am this morning. + +Tune In: +https://t.co/Y7MRlJ1hJy" +05/25/2018,Politicians,@LindseyGrahamSC,"RT @hughhewitt: For everyone living on or near Korean Peninsula —including 28K US service members and families, hundreds of thousands more…" +05/25/2018,Politicians,@LindseyGrahamSC,RT @TODAYshow: See the full interview with @LindseyGrahamSC about U.S. relations with North Korea https://t.co/LPbigf5Mir +05/25/2018,Politicians,@LindseyGrahamSC,RT @hughhewitt: Up next: @GrahamBlog (aka @LindseyGrahamSC aka the guest who usually has the best lines) +05/25/2018,Politicians,@LindseyGrahamSC,Speaking with NBC @TODAYshow in just a few minutes about North Korea. +05/25/2018,Politicians,@LindseyGrahamSC,Speaking with @foxandfriends in just a few minutes about North Korea. Tune in! +05/24/2018,Politicians,@LindseyGrahamSC,"ICYMI: Discussing Department of @ENERGY Decision to Abandon MOX Program at Savannah River Site. + +LISTEN: +https://t.co/O7vbBqm8KZ" +05/23/2018,Politicians,@LindseyGrahamSC,"The letter I sent — along with Senators @ChuckGrassley and @JohnCornyn — about congressional oversight and DOJ. + +Al… https://t.co/WlMQ336g5j" +05/22/2018,Politicians,@LindseyGrahamSC,My statement on Sherri Lydon being confirmed as the next US Attorney for South Carolina. https://t.co/YtS3WIy4xj +05/22/2018,Politicians,@LindseyGrahamSC,So grateful for the great work done by @the_uso! https://t.co/WBjizT3ItX +05/22/2018,Politicians,@LindseyGrahamSC,"You Rock! + +Thank you to @the_USO for the great work you do! https://t.co/0XYgEVYYYC" +05/21/2018,Politicians,@LindseyGrahamSC,"Speaking with @foxnews @marthamaccallum about American policy toward Iran. +Tune in." +05/21/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum in just a few minutes about Iran and North Korea. + +Tune in." +05/20/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""The only reason we are where we are is because President @realDonaldTrump has tried something new. He's ap…" +05/20/2018,Politicians,@LindseyGrahamSC,"RT @FoxNewsSunday: Today on #FNS: +Oliver North, incoming President, National Rifle Association +Mark Kelly, Co-Founder, Giffords +Steven Mnuc…" +05/18/2018,Politicians,@LindseyGrahamSC,"Praying for the students, families and first responders of #SantaFe." +05/17/2018,Politicians,@LindseyGrahamSC,I know she will serve President Trump and our nation well in this important position. +05/17/2018,Politicians,@LindseyGrahamSC,"I’m very glad the Senate has confirmed Gina Haspel as the new Director of the CIA. + +Ms. Haspel is highly qualifie… https://t.co/QB7Ra5gI9X" +05/17/2018,Politicians,@LindseyGrahamSC,RT @kilmeade: .@LindseyGrahamSC calls out critics of President @realDonaldTrump handling of North Korea #TheBrianKilmeadeShow @foxnewsradio… +05/17/2018,Politicians,@LindseyGrahamSC,"Graham to Trump Critics on North Korea: We Have Two Options – Peace Agreement or War + +https://t.co/EkhWd4pr69" +05/17/2018,Politicians,@LindseyGrahamSC,"Continued.... + +""As Secretary Mattis has always said, ""America can afford survival"" and the ""enemy gets a vote."" Wi… https://t.co/JqsCkecb6L" +05/17/2018,Politicians,@LindseyGrahamSC,"Just received this quote from quote from Assistant Secretary of Defense Rob Hood: + +""Secretary Mattis opposes any p… https://t.co/zUsvvIEcmP" +05/17/2018,Politicians,@LindseyGrahamSC,"If you keep doing what you're doing, you are miscalculating Donald Trump. He's not Obama. + +https://t.co/DhWdhmaOhd" +05/17/2018,Politicians,@LindseyGrahamSC,"I’m here to tell North Korea that our president has drawn a red line. + +If you keep threatening the American homel… https://t.co/eQudNdADY4" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking on the Senate floor in just a few minutes. + +WATCH: https://t.co/eKm1TeLwXf" +05/17/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: Sen. @LindseyGrahamSC to Kim Jong Un: ""If you keep doing what you're doing, you're miscalculating @realDonaldTrump. He's not O…" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade now about North Korea. + +LISTEN: +https://t.co/Y7MRlJ1hJy" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade on @foxnewsradio today at 9:30 am on the latest with North Korea. + +LISTEN: https://t.co/Y7MRlJ1hJy" +05/16/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum in just a few minutes. + +Tune in." +05/16/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum tonight at 7:00 pm about North Korea, Iran, ZTE and more. + +Tune In." +05/16/2018,Politicians,@LindseyGrahamSC,Very pleased & proud Senate has confirmed Mick Zais to serve as the Deputy Sec of Education. He believes in a stro… https://t.co/uvg4rdQPyz +05/16/2018,Politicians,@LindseyGrahamSC,President @realDonaldTrump met with Republicans earlier today. Here’s my statement. https://t.co/ww0MgCl8P4 +05/16/2018,Politicians,@LindseyGrahamSC,First responders like retired Berkeley County Sheriff’s Office Lt. Will Rogers – who was severely injured in the li… https://t.co/K6tFPa99xz +05/16/2018,Politicians,@LindseyGrahamSC,"This morning, I was honored to be recognized by @WeAreCode3, which is dedicated to caring for cops and the communit… https://t.co/4O3xEpu8Yg" +05/16/2018,Politicians,@LindseyGrahamSC,"#PoliceWeek2018 is a time to remember and honor our brave men and women in blue, especially those we’ve lost in the line of duty. 1/3" +05/15/2018,Politicians,@LindseyGrahamSC,"Ms. Haspel: + +* has rejected the interrogation techniques of the past; +* made it clear she is committed to followin… https://t.co/oT0VZLZznO" +05/15/2018,Politicians,@LindseyGrahamSC,"Glad to see Senators Warner, Heitkamp, and Nelson are now supporting Gina Haspel as the next CIA Director. + +She’s h… https://t.co/Gtbcy1YK2D" +05/15/2018,Politicians,@LindseyGrahamSC,My statement on President @realDonaldTrump meeting today with Republicans in the Senate. https://t.co/Pe6o513GYQ +05/15/2018,Politicians,@LindseyGrahamSC,@tperkins @FRCdc He’s testified before our subcommittee numerous times on the erosion of religious liberty abroad.… https://t.co/4AjaijQdXC +05/15/2018,Politicians,@LindseyGrahamSC,Congratulations to @Tperkins of @FRCdc on being selected to serve on the U.S. Commission on International Religious… https://t.co/tvcsZgtxr9 +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump It was a very good foreign policy discussion. + +I appreciate President Trump taking the time to s… https://t.co/m6E1zDycef" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump The President will continue to challenge our European allies to get a better deal. + +He is fully… https://t.co/olLPEFjke0" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump As for Iran, he expressed a strong desire and resolve to sanction the Iranian regime for its effor… https://t.co/KMbEuFOW9F" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump He’s fully committed to denuclearizing the Korean peninsula, and hopes to make it a win-win for No… https://t.co/rJ17ztXvgG" +05/15/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump is a true believer in ‘Peace through Strength’. + +President Trump today gave an excelle… https://t.co/n6r4LDtK2p" +05/15/2018,Politicians,@LindseyGrahamSC,The selection of Ms. Haspel will be good for morale within the CIA and give the country a seasoned intelligence exp… https://t.co/ieFCXhsUxy +05/15/2018,Politicians,@LindseyGrahamSC,Gina Haspel has risen through the ranks of the organization receiving high marks from all who have interacted with… https://t.co/CPmKrThfyd +05/15/2018,Politicians,@LindseyGrahamSC,"My prayers are with Harry and the entire Reid family. + +Wishing him a full and complete recovery!" +05/15/2018,Politicians,@LindseyGrahamSC,"The hearing is available online. + +WATCH: https://t.co/m5AhvtN4SD" +05/15/2018,Politicians,@LindseyGrahamSC,Smokey Robinson and other members of the music industry are testifying before the Senate Judiciary Committee regard… https://t.co/kK0q1lY0yl +05/15/2018,Politicians,@LindseyGrahamSC,"RT @WVOCColumbia: Graham, Scott React To New Embassy In Jerusalem | WVOC https://t.co/4rsOk0kPRV" +05/14/2018,Politicians,@LindseyGrahamSC,Both Senators @LindseyGrahamSC and @tedcruz said the embassy opening was a signal that the US era of “appeasement”… https://t.co/5rTrHgtj56 +05/14/2018,Politicians,@LindseyGrahamSC,"I was proud to beleading the Senate delegation for this historic event. + +It was a true honor. +🇺🇸🇮🇱🇺🇸🇮🇱 https://t.co/7SGWS8375n" +05/14/2018,Politicians,@LindseyGrahamSC,"Great to be with @PastorJohnHagee to celebrate the opening of the #USEmbassyJerusalem. 🇺🇸🇮🇱🇺🇸🇮🇱 + +#History https://t.co/FfJrCdoAZB" +05/14/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@SenMikeLee: “This was recognizing something that was already the case, Jerusalem was and is Israel’s capital.” https://t.co/…" +05/14/2018,Politicians,@LindseyGrahamSC,RT @SenTedCruz: .@FoxNews: “Jerusalem is the undivided and eternal capital of Israel. And that’s been true since 70 years ago today when th… +05/14/2018,Politicians,@LindseyGrahamSC,"RT @Mediaite: Lindsey Graham: If You Have A Problem With Jerusalem As Israeli Capital, 'Take It Up With God' (VIDEO) https://t.co/AbW4rZj1a…" +05/14/2018,Politicians,@LindseyGrahamSC,RT @tedcruz: With @SenMikeLee @LindseyGrahamSC and @SenDeanHeller along with @USAmbIsrael in his new office at our new US Embassy in Jerusa… +07/02/2018,Politicians,@BobbyJindal,"Thanks for a great time, Asheville! https://t.co/26ZdkpthIo" +06/26/2018,Politicians,@BobbyJindal,"Why does the state respect that some parents are capable of choosing what is best for their children, while acting… https://t.co/ZwBhGke5uz" +06/13/2018,Politicians,@BobbyJindal,.@Clairecmc aka @AirClaireMO is having a bad week. First she lied to voters about touring the state in an RV and n… https://t.co/2dmfMW9XWu +06/12/2018,Politicians,@BobbyJindal,"Class act, Mounds View. +https://t.co/wQXKUe1TTJ" +06/09/2018,Politicians,@BobbyJindal,"Charles has graced us for years with intellect, wit, and integrity. +https://t.co/cm4xZg9hHm" +05/17/2018,Politicians,@BobbyJindal,"Latest @WSJ opinion article: +""...Thus a challenger is not sufficient—Mr. Trump needs a candidate who siphons off no… https://t.co/kc1cK1przh" +05/13/2018,Politicians,@BobbyJindal,Happy Mother’s Day! 🍳 https://t.co/IJgnW1TKlL +05/11/2018,Politicians,@BobbyJindal,Check out #TheGreatRevolt by my friends @BradOnMessage and @SalenaZito. Examines the populist wave that elected Tru… https://t.co/jp4h3kDljZ +05/10/2018,Politicians,@BobbyJindal,"Would be great to have family friendly @LastManStanding back on the air! +https://t.co/sKLmooUAFu" +04/26/2018,Politicians,@BobbyJindal,#tbt to getting to play the role of a doctor by delivering our third child in 2006. Read the full article here:… https://t.co/CvAu9cdxFS +04/24/2018,Politicians,@BobbyJindal,Kneeling athletes we can all applaud. https://t.co/IMQrkKufot +04/23/2018,Politicians,@BobbyJindal,".@GQMagazine should stick to overpriced clothes, and leave faith to others. https://t.co/xdxRtUq2pW" +04/20/2018,Politicians,@BobbyJindal,Go #LSU! https://t.co/2qXjNCLVoW +04/18/2018,Politicians,@BobbyJindal,Thank you Barbara Bush for serving our nation with class and dignity. @BarbaraBushFdn https://t.co/TPAeEiHOkY +04/09/2018,Politicians,@BobbyJindal,"Congratulations @PReedGolf, a graduate of @LSULabSchool! https://t.co/7XWK0s9WAu" +04/04/2018,Politicians,@BobbyJindal,RT @WSJopinion: Donald Trump’s populism is the direct result of the establishment’s hypocrisy. He is implementing policies that more-mainst… +03/24/2018,Politicians,@BobbyJindal,RT @Saints: Former Louisiana Governor @BobbyJindal and wife Supriya’s arrival at Tom Benson’s funeral. https://t.co/B3Ms0L7EuF +03/23/2018,Politicians,@BobbyJindal,"RT @WWLAMFM: Former Louisiana Governor Bobby Jindal, his wife and former Saints Head Coach, Jim Mora at Tom Benson’s second line. https://…" +03/23/2018,Politicians,@BobbyJindal,"The beautiful city of New Orleans was loud celebrating the life of Tom Benson this afternoon. What a perfect, New O… https://t.co/tABn3YPAqM" +03/22/2018,Politicians,@BobbyJindal,"Take a look at my latest opinion piece on The Wall Street Journal​: + +""When Republicans failed to repeal ObamaCare l… https://t.co/qIb4y1TAVy" +03/19/2018,Politicians,@BobbyJindal,Thanks Sun Devils for hosting this weekend’s tournament! https://t.co/dyXcew9czX +03/15/2018,Politicians,@BobbyJindal,Thoughts and prayers with Gayle Benson and the entire @Saints and @PelicansNBA families. Tom was a good friend and… https://t.co/STPG7LG98w +03/11/2018,Politicians,@BobbyJindal,"Crazy... bet they still call 911 when they get robbed. #HastaMuerteCoffee + +https://t.co/gOcnZtcN7B" +03/06/2018,Politicians,@BobbyJindal,Congratulations to Shaan and his basketball team on winning the championship at their Elite 8 basketball tournament… https://t.co/EH2O7VyR5N +03/01/2018,Politicians,@BobbyJindal,#tbt to touring the Capitol with Willie Robertson and the Robertson family. @bosshogswife #throwbackthursday https://t.co/fwKNV4FJgg +02/28/2018,Politicians,@BobbyJindal,Shame singing national anthem is now considered controversial. Thoughts and prayers with family of the fallen. https://t.co/xT8A1Cs2nx +02/25/2018,Politicians,@BobbyJindal,It's a weekend packed with sports. Congratulations to Slade and The Sharks on their championship in their Hammond t… https://t.co/0YpTDsSYHf +02/22/2018,Politicians,@BobbyJindal,#Tbt to my 2007 race ending in my first term as governor for the beautiful state of Louisiana. Thank you to all of… https://t.co/JtBpLaQXuF +02/21/2018,Politicians,@BobbyJindal,My family and I are deeply saddened to hear about the passing of @BillyGraham. His world-wide influence will contin… https://t.co/crwGxNyXLm +02/15/2018,Politicians,@BobbyJindal,"Take a look at my latest opinion piece on @WSJOpinion: + +You hear it all the time from Trump supporters: “I like a l… https://t.co/SHwMJrnSOd" +02/14/2018,Politicians,@BobbyJindal,".@elizabethforma feel free to use my opening line to you at the gridiron “from one Indian to another, I wish you lu… https://t.co/KuBDq8uFVq" +02/01/2018,Politicians,@BobbyJindal,We should create a more populist—Trumpian—bottom-up GOP that loves freedom and flies the biggest American flag in h… https://t.co/upY08S8Mb0 +01/31/2018,Politicians,@BobbyJindal,Democrat leaders in Washington are in danger of alienating a large swath of voters. https://t.co/HR1b1p7EKU +01/15/2018,Politicians,@BobbyJindal,Why Entitlement Reform Needs To Be The Second Half Of Tax Reform https://t.co/7A1JV7eIes +01/12/2018,Politicians,@BobbyJindal,Here’s my latest article on the need for more diversity in higher education. Enjoy. https://t.co/WQ1OQosxOp via @NRO +01/12/2018,Politicians,@BobbyJindal,"Thanks Buckskin Bill Black for all the Monday Morning Marches! God Bless. +https://t.co/6K2TbV3h4E" +12/24/2017,Politicians,@BobbyJindal,Merry Christmas from our family to yours! https://t.co/COxz9Tlg9v +12/22/2017,Politicians,@BobbyJindal,"With #TaxReform out of the way, a reform of Social Security, Medicare and other entitlements must be next. https://t.co/llG0HUHfgQ" +11/27/2017,Politicians,@BobbyJindal,Norwegian immigration minister uses term “No Go Zones” https://t.co/Yoq1Z2xndp +11/27/2017,Politicians,@BobbyJindal,To the encroaching and arrogant spirit of communism and fascism the Vicar of Christ said: “No. You are not the begi… https://t.co/lWxY0GvU7W +11/25/2017,Politicians,@BobbyJindal,"""From the Berlin Wall, to Vietnamese and Cuban boat people, to the DMZ, the prisoners of communism run in only one… https://t.co/Kns8C9Xari" +11/24/2017,Politicians,@BobbyJindal,Sometimes you have to laugh to stop from getting mad. https://t.co/5KXOav1LUK +11/18/2017,Politicians,@BobbyJindal,“Almost all of the growth in top American earners has come from just three economic sectors...that tend to benefit… https://t.co/giTiPa0KIh +11/09/2017,Politicians,@BobbyJindal,“People are motivated by meaning more than money.” and “We must stop emptying our society of meaning.”… https://t.co/AAP0GPq5TT +11/06/2017,Politicians,@BobbyJindal,Democrats Finally Admit Their Real Goal Is Single-Payer Health Welfare https://t.co/FdorHlMkNe +11/02/2017,Politicians,@BobbyJindal,"Repealing O'care invdividual mandate as part of tax cuts would increase freedom and reduce deficit by over $400 bn + +https://t.co/hfKkijO6hB" +11/02/2017,Politicians,@BobbyJindal,Congratulations to #LSU alums Alex Bregman and Will Harris! @abreg_1 got our vote for #worldseries mvp! +10/24/2017,Politicians,@BobbyJindal,"Arthur Toynbee...“Civilizations die from suicide, not by murder.” +https://t.co/gKtqItl7Om" +10/21/2017,Politicians,@BobbyJindal,"Universities should promote open debate, not pc orthodoxy. +https://t.co/8iqTi9GfYh" +10/20/2017,Politicians,@BobbyJindal,Makes me so proud to be an American and want to be worthy of the sacrifices these kids have made. God bless America. https://t.co/5md3YvsJkq +10/06/2017,Politicians,@BobbyJindal,"Jobs so much better than govt dependence + +https://t.co/TngicdIA8A" +10/05/2017,Politicians,@BobbyJindal,#tbt https://t.co/klPHkjXVBP +10/04/2017,Politicians,@BobbyJindal,RT @votedianeblack: Ummmmm...x2 https://t.co/BirI52GLpE +10/04/2017,Politicians,@BobbyJindal,Ummmmm... https://t.co/B2WvUV5cH6 +10/02/2017,Politicians,@BobbyJindal,"Prayers for #LasVegas victims and gratitude for first responders/heroes. + +https://t.co/JENjtRiylV" +09/18/2017,Politicians,@BobbyJindal,"Biden is surprisingly right - should create more jobs not govt programs + +https://t.co/olcjrBy4PQ" +09/18/2017,Politicians,@BobbyJindal,"liberal argument for why dems shouldn't simply rely on race/identity politics. + +https://t.co/4sC1lZ86uM" +09/16/2017,Politicians,@BobbyJindal,"The nanny state lives... +https://t.co/b1Xow9Gf5q" +09/15/2017,Politicians,@BobbyJindal,"It's Friday! In honor of the weekend, here's a throwback to Slade's summer fun. https://t.co/zMV9ZmXPI2" +09/14/2017,Politicians,@BobbyJindal,"Safety comes first, eh? In America we call this private sector initiative. https://t.co/AeBnsov6tL" +09/13/2017,Politicians,@BobbyJindal,"Even hyper-liberal tech elites don't want top-down government. +https://t.co/M6usDgwKTb" +09/11/2017,Politicians,@BobbyJindal,"Being ""orthodox Catholic"" shouldn't disqualify Barrett from being a judge. + +https://t.co/zXH7xgLabI" +09/08/2017,Politicians,@BobbyJindal,.@scottforflorida is tireless in preparing his people for #irma. Praying for all in the path of this monstrous storm. +09/08/2017,Politicians,@BobbyJindal,"It’s still a great country full of great, wonderful people. +https://t.co/RkrigLyR6f" +09/07/2017,Politicians,@BobbyJindal,I enjoyed the debate. Thank you @yaledailynews https://t.co/RiIel0tMV2 +09/05/2017,Politicians,@BobbyJindal,"We must raise our kids to be resilient, not a generation of victims. https://t.co/O9hbmB5gBA" +09/04/2017,Politicians,@BobbyJindal,Proud of Shaan and others who washed cars today @ Jeff Baptist and raised $2k for #harvey victims. https://t.co/2cHPAZSMiT +09/01/2017,Politicians,@BobbyJindal,"Universities can best pursue justice by pursuing truth. +https://t.co/pj17M4RQwK" +08/30/2017,Politicians,@BobbyJindal,"So true, should be self-evident, and yet a message that needs to be heard now more than ever. + +https://t.co/yYJG3pufch" +08/28/2017,Politicians,@BobbyJindal,Donate here: https://t.co/KjE0F4A2KJ https://t.co/GsWWDkuVRb +08/28/2017,Politicians,@BobbyJindal,"TX is a good neighbor, helping us through every storm we've faced. Let's return the favor with prayers and support for them. #harvey" +08/22/2017,Politicians,@BobbyJindal,"""I wish you bad luck..."". Good advice from the Chief Justice. + +https://t.co/H2nCA8WvNs" +08/16/2017,Politicians,@BobbyJindal,RT @ScottforFlorida: What happened in Charlottesville was evil. There's no moral equivalency between the two sides. https://t.co/E8FcQdwku8 +07/28/2017,Politicians,@BobbyJindal,Congrats @govsambrownback. Will do a great job fighting for religious liberty. +07/28/2017,Politicians,@BobbyJindal,"When life gives you lemons, make... bureaucratic regulations. We need less govt, and more common sense/freedom. https://t.co/DeWRCfF97w" +07/20/2017,Politicians,@BobbyJindal,"Something is wrong when 5 of the 10 richest U.S. counties are within DC area. Need to grow our local economies, not… https://t.co/XmSmOPtHLL" +07/20/2017,Politicians,@BobbyJindal,"Praying for Senator McCain and his family. + +https://t.co/f4tcusDWKl" +07/19/2017,Politicians,@BobbyJindal,"Do politicians come with a satisfaction guarantee? If they can't get it done, maybe we should exchange a few at the next election. 2/2" +07/19/2017,Politicians,@BobbyJindal,Senate Republicans need to agree on an Obamacare repeal - or refuse to debate anything else until they can. Seven years is long enough. 1/2 +07/16/2017,Politicians,@BobbyJindal,"So I get a curious email from a ""Natalia"" - yadda yadda yadda - here's a pic of my family in Russia https://t.co/mjxqHOFoRc" +07/10/2017,Politicians,@BobbyJindal,Argument for our #schoolchoice reforms in Louisiana. All kids deserve the chance to get a great education. https://t.co/sDbvtPxx8k +07/08/2017,Politicians,@BobbyJindal,"The West can only be defeated from within, not by any external enemy. We must not give away that which we would nev… https://t.co/YfZDS2NXg1" +07/04/2017,Politicians,@BobbyJindal,"Mark me down as a culturally arrogant westerner who thinks our ways are unique and better, though not perfect. 4/4" +07/04/2017,Politicians,@BobbyJindal,...but I actually think it is important we not take patriotism for granted given current liberal thought. 3/4 +07/04/2017,Politicians,@BobbyJindal,We often share throw away sentiments on days like today... 2/4 +07/04/2017,Politicians,@BobbyJindal,"Happy birthday, America. Still the greatest country in the history of the world! 1/4" +06/30/2017,Politicians,@BobbyJindal,"RT @realDonaldTrump: If Republican Senators are unable to pass what they are working on now, they should immediately REPEAL, and then REPLA…" +06/26/2017,Politicians,@BobbyJindal,.@FLGovScott Great to have all sec match in omaha. Geaux Tigers! https://t.co/zoiakwJz0J +06/26/2017,Politicians,@BobbyJindal,Important 1st amendment victory. Govt can't discriminate against churches. https://t.co/uTPDbJQils +06/25/2017,Politicians,@BobbyJindal,Mannings are a class act. Glad the fields we upgraded are being put to good use. https://t.co/fuCMNo0X2v +06/24/2017,Politicians,@BobbyJindal,"Despicable, Part 2 + +https://t.co/Qz3aUnyyjp" +06/23/2017,Politicians,@BobbyJindal,Geaux Tigers! https://t.co/LZxz4lEaaf +06/23/2017,Politicians,@BobbyJindal,"despicable +https://t.co/rjIQDY1nRD" +06/23/2017,Politicians,@BobbyJindal,Had some thoughts on Obamacare a few wks ago for AmericaNext. Spoiler: I think Congress needs to actually repeal it. https://t.co/C8VkbpLKpr +06/16/2017,Politicians,@BobbyJindal,Supriya and I spent some time at the hospital today. Grateful for the Capitol Police and the nurses and doctors. Praying for @SteveScalise. +06/14/2017,Politicians,@BobbyJindal,"Praying for healing, peace and comfort for @stevescalise and the others wounded in today’s vicious attack." +05/28/2017,Politicians,@BobbyJindal,15th win for @LSUsoftball when it was on the line - nobody else has more than 8. Incredible spirit #GeauxTigers https://t.co/wuxyRGjjhd +05/28/2017,Politicians,@BobbyJindal,GEAUX TIGERS!!! Amazing win by our Champions. https://t.co/uo3eAq9eYh +04/26/2017,Politicians,@BobbyJindal,I will be on with @TeamCavuto at 3:45 to talk about the first 100 days of the @realDonaldTrump Administration. https://t.co/k4R7huVR9u +02/07/2017,Politicians,@BobbyJindal,Confirming @BetsyDevos was a big win for America's underprivileged students. Now the real work begins. +02/03/2017,Politicians,@BobbyJindal,"Extreme liberals like Elizabeth Warren are trying to stop Betsy Devos because she exposes their hypocrisy. + +Watch 📺: https://t.co/N0eH6MVN9j" +02/02/2017,Politicians,@BobbyJindal,"If Republicans are looking for ways to prove to voters that we have become ""them"", I E the DC establishment, this s… https://t.co/tngJK9xFFu" +02/02/2017,Politicians,@BobbyJindal,"On Obamacare, Republicans who want to retreat from repeal to repair should be replaced." +01/30/2017,Politicians,@BobbyJindal,WATCH: Bobby Jindal reacts to Trump's actions on immigration: https://t.co/d6rjsudgfu +01/27/2017,Politicians,@BobbyJindal,The debate over education reflects the defining battle line drawn between right and left. https://t.co/kthFUOdFVd +01/20/2017,Politicians,@BobbyJindal,Congratulations to President @realDonaldTrump. Supriya and I are praying for you as you lead our nation. +01/14/2017,Politicians,@BobbyJindal,".@BetsyDeVos has fought tirelessly for decades to give disadvantaged kids the opportunity to get a great education. +https://t.co/4jtTpmgt0f" +01/09/2017,Politicians,@BobbyJindal,"“Conservative principles, not political posturing, should guide the repeal and replacement of Obamacare. + +READ ⬇️ https://t.co/r2ys4OFmoT" +12/26/2016,Politicians,@BobbyJindal,.@GovernorPerry will be an excellent Energy Secretary. Energy sector workers in Louisiana and the rest of America will have a strong ally. +12/22/2016,Politicians,@BobbyJindal,Merry Christmas from the Jindal family. Isaiah 9:6 https://t.co/UNbfZR0cQr +11/23/2016,Politicians,@BobbyJindal,.@BetsyDeVos has been a champion of education reform for decades and is a fantastic choice to lead the Department of Education. +11/23/2016,Politicians,@BobbyJindal,Congrats to my friend @NikkiHaley! She has done an outstanding job leading South Carolina and will represent us well at the UN. +11/06/2016,Politicians,@BobbyJindal,Let's Geaux Tigers! https://t.co/A9jjinz6Zu +11/01/2016,Politicians,@BobbyJindal,Slade is ready with the ice cold @DrPepper! https://t.co/lrSNs5v9NF +10/25/2016,Politicians,@BobbyJindal,"My former Governor’s Office intern, @MolliexJaY is an up-and-coming singer/songwriter. Check out her latest video: https://t.co/zI0AiTQNut" +10/22/2016,Politicians,@BobbyJindal,The boys are ready to cheer on the Cubs tonight! Throwback from their visit to Chicago last year. https://t.co/vT6tpN8Qiq +10/18/2016,Politicians,@BobbyJindal,RT @FoxNews: .@toddstarnes : The day a college football player stood alone to honor America | https://t.co/Crb8uuqEOR https://t.co/7hyuRnIv… +09/26/2016,Politicians,@BobbyJindal,Thanks Les for all you have done for LSU and Louisiana. It is an honor to call you a friend. +09/01/2016,Politicians,@BobbyJindal,".@LABI_BIZ, @BRAC_BatonRouge and other business groups team up in new program to help small business flood victims: https://t.co/aZkYkPKoLs" +08/09/2016,Politicians,@BobbyJindal,"Candy sales +Computer newsletter +Odd office jobs +Math tutor +Concessions, @LSUfootball +Biochem lab research +Dr's office intern +#firstsevenjobs" +07/17/2016,Politicians,@BobbyJindal,"Our thoughts and prayers are with our law enforcement community after today's horrible shootings. All lives matter, plain and simple." +06/21/2016,Politicians,@BobbyJindal,Supriya and I offer our heartfelt condolences and prayers to his family.” (3/3) +06/21/2016,Politicians,@BobbyJindal,"as well as his humor, Paul was a fixture in our community. He will be missed. (2/3)" +06/21/2016,Politicians,@BobbyJindal,"""Paul brought his tenacity and wit to viewers for decades. Known for his investigative journalism (1/3) https://t.co/MUYJ0w5Ohf" +06/13/2016,Politicians,@BobbyJindal,Horrified and saddened by the deadly terrorist attack in Orlando. Supriya and I are praying for those affected by this terrible tragedy. +06/07/2016,Politicians,@BobbyJindal,Congratulations to @BaseballCrank on your successful tenure at @Redstate. Best of luck in your new endeavor at @NRO. +05/27/2016,Politicians,@BobbyJindal,I'm about to join @GovMikeHuckabee on the @SeanHannity show. Tune in to @FoxNews! +05/23/2016,Politicians,@BobbyJindal,Proud that Slade and the Sharks won their tournament; especially when they came together & prayed after the finals. https://t.co/d2aazVTrOc +05/09/2016,Politicians,@BobbyJindal,Happy Mother's Day to these amazing moms and all mothers out there. https://t.co/lDHJihyfyP +05/04/2016,Politicians,@BobbyJindal,In 15 minutes I’m live with @SeanHannity on @FoxNews. Don’t miss it! +05/04/2016,Politicians,@BobbyJindal,Don’t miss my exclusive interview with @SeanHannity tonight at 9:25 CT where I’ll talk about tonight’s Indiana primary. Tune in! +05/02/2016,Politicians,@BobbyJindal,Trump’s success exposes our failure as conservatives: https://t.co/e6N9rayp21 +03/22/2016,Politicians,@BobbyJindal,"Clearly, open borders don’t work. https://t.co/epltiUqm50" +03/22/2016,Politicians,@BobbyJindal,Our thoughts and prayers are with the people of Brussels. +03/16/2016,Politicians,@BobbyJindal,America is better than our leaders. What I learned running for president. https://t.co/jciTIpebdf +03/10/2016,Politicians,@BobbyJindal,Obama hasn't found a problem he won't blame on GOP. Here is why rise of Trump is on him: https://t.co/s1HlzXR4om https://t.co/9p925SGxIp +02/14/2016,Politicians,@BobbyJindal,“Today we lost the greatest judicial mind most of us have ever known. Every Republican must right now pledge that…” https://t.co/Dt8Dty0jl5 +02/06/2016,Politicians,@BobbyJindal,This election is about the future. That's why I'm endorsing Marco Rubio for President. https://t.co/QFXPz4ZESv +12/24/2015,Politicians,@BobbyJindal,Merry Christmas from our family to yours! https://t.co/8Ka5U7qcKq +12/15/2015,Politicians,@BobbyJindal,Students at St. Benedict the Moor School in NOLA are thriving because of our statewide scholarship program. https://t.co/2u7Ozd1tYv +11/28/2015,Politicians,@BobbyJindal,.@LSUCoachMiles is a great coach and a better man. He is a fantastic ambassador for our state. I hope he remains our coach. +11/22/2015,Politicians,@BobbyJindal,Supriya and I would like to congratulate Governor-elect John Bel Edwards. https://t.co/FdMwt4p43M +11/17/2015,Politicians,@BobbyJindal,It’s been an incredible honor to run for President of this great country. Thank you: https://t.co/IhDcIWOSg8 https://t.co/iRTJ7Bl5IW +11/17/2015,Politicians,@BobbyJindal,RT @SupriyaJindal: .@BobbyJindal about to be on #SpecialReport. Tune in to @FoxNews now. https://t.co/qQAi6vnYRW +11/17/2015,Politicians,@BobbyJindal,RT @BretBaier: Don't miss presidential candidate/Louisiana Gov @BobbyJindal coming up at the top of the hour on #SpecialReport on @FoxNews … +11/17/2015,Politicians,@BobbyJindal,RT @SpecialReport: Tonight on #SpecialReport I'll be joined by presidential candidate and Louisiana Governor Bobby Jindal. Jindal... https:… +11/17/2015,Politicians,@BobbyJindal,"President Reagan reminded us that each generation must renew the principles of freedom. +https://t.co/xbqwrH2OTb" +11/16/2015,Politicians,@BobbyJindal,"Breitbart: ""‘Bobby Jindal Was Right’ On Muslim No-Go Zones"" https://t.co/wL5no8852l +https://t.co/3iC4Kzq8xi" +11/16/2015,Politicians,@BobbyJindal,I just signed an Executive Order instructing state agencies to take all available steps to stop the relocation of Syrian refugees to LA. +11/16/2015,Politicians,@BobbyJindal,"President Obama staying the course on our ISIS “strategy"" is the definition of insanity." +11/14/2015,Politicians,@BobbyJindal,"My letter to @POTUS: In light of Paris terrorist attacks, time to pause process of refugees coming to the US https://t.co/v2K7wuigX0" +11/14/2015,Politicians,@BobbyJindal,"We must destroy Radical Islam. +https://t.co/t1DqcsKR5P" +11/14/2015,Politicians,@BobbyJindal,It’s time for Americans to discard political correctness and come to terms with the truth -- Radical Islam is evil and plans to destroy us. +11/14/2015,Politicians,@BobbyJindal,"This isn't an attack just on France. It's an attack on freedom and free +people everywhere." +11/14/2015,Politicians,@BobbyJindal,I’m speaking live at the @FloridaGOP #SunshineSummit. Watch here: https://t.co/6m3ulrckvZ +11/13/2015,Politicians,@BobbyJindal,Our thoughts are with the people of France. Please say a prayer for Paris as they deal with this horrible attack. +11/13/2015,Politicians,@BobbyJindal,".@RedState: ""The willingness to take on tough jobs and tough issues runs throughout his career"" https://t.co/gFVUlmDKno" +11/13/2015,Politicians,@BobbyJindal,RT @LeonHWolf: I agree with this strongly ---> https://t.co/ZYPuHyJaAO +11/13/2015,Politicians,@BobbyJindal,RT @RedState: Conservative Voters Should Give Bobby Jindal A Chance: https://t.co/wCThEo59MX +11/13/2015,Politicians,@BobbyJindal,RT @BreitbartNews: .@BobbyJindal on the grassroots surge in the GOP primary: There's a sense of urgency and that the idea of America is sli… +11/13/2015,Politicians,@BobbyJindal,.@Redstate: “The Best Man For The Job” https://t.co/gFVUlmDKno +11/12/2015,Politicians,@BobbyJindal,President Obama has encouraged a culture of professional victimhood and grievance: https://t.co/svsh74CWBa +11/12/2015,Politicians,@BobbyJindal,Read my new blog post on the absurdity happening at the University of Missouri & other campuses around the country: https://t.co/rz29G3RuDR +11/12/2015,Politicians,@BobbyJindal,"The absurdity of political correctness on college campuses is laughable, but the consequences are not: https://t.co/svsh74CWBa" +11/12/2015,Politicians,@BobbyJindal,"The failed progressive experiment over the last 7 years has produced more poverty and inequality. +https://t.co/Khx0M5ksl0" +11/11/2015,Politicians,@BobbyJindal,We can't afford to send a big government Republican to the WH. We have too many of those already in DC. https://t.co/uKQwagtIx3 +11/11/2015,Politicians,@BobbyJindal,Retweet if you think big government spending is wrong and immoral. https://t.co/j4vF4JneEB +11/11/2015,Politicians,@BobbyJindal,"We cut the government economy to grow the Louisiana economy. It worked. +https://t.co/uGILYKOxuq" +11/11/2015,Politicians,@BobbyJindal,RT @TeamCavuto: .@BobbyJindal ON #GOPDebate: It's not personal. This is about who is willing to go to D.C. and fight for us. https://t.co/Z… +11/11/2015,Politicians,@BobbyJindal,RT @SupriyaJindal: .@BobbyJindal talking with @TeamCavuto on @FoxBusiness. Tune in now! https://t.co/iKnIgwg1xl +11/11/2015,Politicians,@BobbyJindal,.@TeamCavuto and I will discuss last night’s #GOPDebate at noon ET on @FoxBusiness. Don’t miss it. +11/11/2015,Politicians,@BobbyJindal,"Here is the reality of big government spending: We are stealing money from our kids. That is wrong. That is immoral. +https://t.co/fCFlKnPcGE" +11/11/2015,Politicians,@BobbyJindal,"At 11:30ET, I'm live on @HappeningNow where I’ll talk about last night's #GOPDebate. Tune in!" +11/11/2015,Politicians,@BobbyJindal,"RT @EWErickson: Again, Bobby Jindal Won the First Debate https://t.co/qMXQWL9ZV0" +11/11/2015,Politicians,@BobbyJindal,"We can't afford to send a big government Republican to the WH. We have too many of those already in DC. #GOPDebate +https://t.co/Hr2pRWlXzq" +11/11/2015,Politicians,@BobbyJindal,"Thank you to our Veterans, who run towards danger, not away from it, so that we can live in the greatest country in the history of the world" +11/11/2015,Politicians,@BobbyJindal,"Let’s not just beat Hillary Clinton, let’s elect a real conservative to the White House. #GOPDebate https://t.co/uKQwagtIx3" +11/11/2015,Politicians,@BobbyJindal,I don't just talk about cutting government. I actually did it. https://t.co/mEyoX9mzhE +11/11/2015,Politicians,@BobbyJindal,RT @BreitbartNews: Watch: Bobby Jindal Offers Chris Christie a ‘Participation Ribbon and a Juice Box’ https://t.co/LIGHqqqJbB +11/11/2015,Politicians,@BobbyJindal,We need a President with a proven track record of cutting government to fix our country's spending problem. https://t.co/LHxvEya9WR +11/11/2015,Politicians,@BobbyJindal,My conservative alternative to Obamacare focuses on restoring power to patients & doctors: https://t.co/BCRAScw8fe https://t.co/7chHkLdcOl +11/11/2015,Politicians,@BobbyJindal,"Records matter. #GOPDebate +https://t.co/QWpgrDNoMO" +11/11/2015,Politicians,@BobbyJindal,I'll give the other governors a ribbon & juice box for trying to cut government but I'm the only one who has done it https://t.co/osRoAldelN +11/11/2015,Politicians,@BobbyJindal,"RT @ShaneGoldmacher: More Jindal post-game: ""I think Chris didn't answer those questions because he couldn't answer those questions.""" +11/11/2015,Politicians,@BobbyJindal,RT @FoxBusiness: .@BobbyJindal says Americans need to teach their children to respect the military. #GOPDebate #SemperFi https://t.co/z9MbS… +11/11/2015,Politicians,@BobbyJindal,"Let’s not just beat @HillaryClinton, let’s elect a real conservative to the White House. #GOPDebate +https://t.co/AqZnY2zuXB" +11/11/2015,Politicians,@BobbyJindal,It's time for a President who believes in American Exceptionalism again. #GOPDebate +11/11/2015,Politicians,@BobbyJindal,We purposefully decided to shrink the size of government in Louisiana. It worked. #GOPDebate https://t.co/A0tLHoRfoR +11/11/2015,Politicians,@BobbyJindal,"It’s time we focus on growing the economy, not the government. https://t.co/pymEuUHeAn #GOPDebate https://t.co/PADwsJesyA" +11/11/2015,Politicians,@BobbyJindal,FACT: I’m the only one running for president who has cut the size and scope of government. https://t.co/BFGM4URs0a https://t.co/lF5I428CxA +11/11/2015,Politicians,@BobbyJindal,I wrote a healthcare plan to repeal Obamacare & replace it with a conservative alternative: https://t.co/BCRAScNJ6M https://t.co/uXtUpHMjjD +11/11/2015,Politicians,@BobbyJindal,"In Louisiana, we instituted pro-growth reforms to bring investment and jobs to our state. It worked. #GOPDebate https://t.co/AEUhP8AWGt" +11/11/2015,Politicians,@BobbyJindal,#TellingItLikeItIs https://t.co/YXbUJbUxJI +11/11/2015,Politicians,@BobbyJindal,RT @FiveThirtyEight: Bobby Jindal's claim that he's the only governor running who cut spending is true: https://t.co/KgG5t7oICT #GOPDebate +11/11/2015,Politicians,@BobbyJindal,I am the only one running for president that has actually cut state spending. Everyone else is all talk. #GOPDebate https://t.co/BE0BIDDPWk +11/11/2015,Politicians,@BobbyJindal,The big government crowd hates what we have done – they say we have cut govt more than anyone. Guilty as charged. https://t.co/gcFBtSZwzj +11/11/2015,Politicians,@BobbyJindal,"Louisiana has more people living & working, w/ higher incomes, than ever before: https://t.co/6Pbpk2uXT7 #GOPDebate https://t.co/8eyWZVREGG" +11/11/2015,Politicians,@BobbyJindal,We can't afford to send a big government Republican to the WH. We have too many of those already in DC. #GOPDebate https://t.co/uYQZPyhBwR +11/11/2015,Politicians,@BobbyJindal,Pre-debate prayer. https://t.co/DGAF1WQAW4 +11/10/2015,Politicians,@BobbyJindal,The #GOPDebate is about to start! Tune in to @FoxBusiness or watch online here: https://t.co/KlzqlJhRyW +06/28/2018,Politicians,@lessig,"RT @ThePopular_Vote: @staypufd @JosephPatrice Wrong. What the founders meant by ""republic"" was essentially ""representative democracy."" + +htt…" +06/28/2018,Politicians,@lessig,"RT @wiumlie: «The large ""404"" error message on the front page of the Norwegian website https://t.co/tDkc9LyPX8 looks a lot like an ""SOS"" si…" +06/28/2018,Politicians,@lessig,RT @ischieferdecker: Ein herzliches Willkommen zu unserer ersten Weizenbaum Lecture mit Lawrence @lessig ... https://t.co/t0bOwBkIN1 +06/26/2018,Politicians,@lessig,"RT @drumpfterfire: @SickOfTheSwamp @Mikel_Jollett @TanyaGrahamDVM @JeffFlake @jaketapper Its not a car, it’s a Ford! +It’s not a bird, it’s…" +06/26/2018,Politicians,@lessig,"RT @usaamahmed: RT PaulNemitz ""RT JWI_Berlin: Auftakt unserer neuen Veranstaltungsreihe - Weizenbaum Lectures: Lawrence lessig hält am 4. J…" +06/26/2018,Politicians,@lessig,@Lean_Falcon Thanks. Shld be fixed +06/25/2018,Politicians,@lessig,"RT @JWI_Berlin: Auftakt unserer neuen Veranstaltungsreihe - Weizenbaum Lectures: Lawrence @lessig hält am 4. Juli, um 19 Uhr, im Alten Pala…" +06/22/2018,Politicians,@lessig,"RT @DanMunro: @chasedave @JamesFallows I'm over in the @lessig camp: + +""Campaign finance reform (#CFR) isn't the biggest problem facing the…" +06/22/2018,Politicians,@lessig,Seriously- why isn’t there an Office parody of the Trump Administration? +06/20/2018,Politicians,@lessig,RT @GabbaGabbaMeh: “Good Germans” @lessig https://t.co/PNDfPMq1iz +06/20/2018,Politicians,@lessig,"RT @mpawlo: When I attended the Internet & Society course at @BKCHarvard back in 2001, people like @zittrain, @lessig and @YochaiBenkler wa…" +06/20/2018,Politicians,@lessig,@Crell @EqualCitizensUS It is SO rare that I get to count to 5! +06/19/2018,Politicians,@lessig,"RT @EqualCitizensUS: Everyone seems down about the recent Gill v. Whitford Supreme Court decision. @Lessig offers a different, more optimis…" +06/19/2018,Politicians,@lessig,"From the Lawyers-just-never-learn/give-up-Department: “@LawverSays: Hey, @henryjenkins, have you seen this? Think t… https://t.co/yTnh4y96Pm" +06/19/2018,Politicians,@lessig,RT @fightfortheftr: .@SantiagoAD53 is this really what you want your legacy to be? Do you want to be known as the Democrat who sold out rea… +06/19/2018,Politicians,@lessig,RT @tylercreighton: Good on @SenatorTester for successfully pushing for the Senate to enter the 21st century by electronically filing their… +06/19/2018,Politicians,@lessig,"RT @EqualCitizensUS: Let's talk about copyrights: The CLASSICS Act would give a new right for already created works, protecting them until…" +06/19/2018,Politicians,@lessig,RT @EqualCitizensUS: Omg https://t.co/Ba62oalwI1 +06/19/2018,Politicians,@lessig,“This California Democrat is single-handedly ruining our best chance to save net neutrality” by @fightfortheftr https://t.co/n9GvpeSCm8 +06/18/2018,Politicians,@lessig,"Hey, there’s an important silver lining to the gerrymandering case too many are missing: https://t.co/i5fG4YxDkS" +06/17/2018,Politicians,@lessig,"The PoorPeoplesCampaign is making history! It's time for big media to fully cover it. Join & tell CNN, Fox etc here: https://t.co/w5lMk7Cxv4" +06/15/2018,Politicians,@lessig,"RT @innarliiv: Prof @skominers from @HarvardHBS (w)rapping up Primavera's +book presentation ('Blockchain and the Law') with an improvised…" +06/13/2018,Politicians,@lessig,"RT @anineki: @lessig I agree. Our political branches, @Stortinget and @regjeringen should ensure public access to central sources of law, r…" +06/13/2018,Politicians,@lessig,Law should encourage the spread of the law. This result is out of character for the #1 ranked democracy in the worl… https://t.co/8fP94y4TVn +06/11/2018,Politicians,@lessig,BREAKING: The repeal of #NetNeutrality just went into effect. Your cable company now has even more power to screw y… https://t.co/UlvgEwlbkX +06/11/2018,Politicians,@lessig,"Super-smart podcast reviewing my ""pathetic [red] dot"" theory of regulation. I learned tons, and once we fix democra… https://t.co/ONC4eqWgwb" +06/08/2018,Politicians,@lessig,RT @mmckinnon: @Lessig https://t.co/ociVrvReKn +06/05/2018,Politicians,@lessig,"Devin at @TechCrunch has a smart piece about the fight agnst the latest © give away — a ""give away"" not because art… https://t.co/WXHu9euEWJ" +06/05/2018,Politicians,@lessig,The President was an amazing - and moving - addition. So happy to be part of this. https://t.co/9Z8N68dGQs +06/01/2018,Politicians,@lessig,RT @mpinsley: Tonight I’m with Larry Lessig and https://t.co/82DVVFXPJu PA to tackle the rampant corruption in Harrisburg! https://t.co/3H2… +06/01/2018,Politicians,@lessig,"RT @undergradwoman: Me with Professor @lessig, others & my BFF at @EndPACorruption conference in #Scranton, Pennsylvania. #RockTheVote http…" +05/31/2018,Politicians,@lessig,RT @AdHochuli: campaign finance reform is the ONLY issue if addressed would have a cascading restorative effect on US democracy #lessig2020… +05/30/2018,Politicians,@lessig,Jason Harrow of @EqualCitizensUS on why winner-take-all destroys representative democracy EVERY SINGLE election (an… https://t.co/R136V2x17N +05/28/2018,Politicians,@lessig,Great piece by @EqualCitizensUS inspirer @AdamEichen about what getting sensible gun safety laws will take (aka… https://t.co/amGMc5Qs1c +05/24/2018,Politicians,@lessig,RT @EqualCitizensUS: BIG ANNOUNCEMENT: Equal Citizens is partnering with @bassnectar and @Electric_Forest on a first-of-its kind campaign!… +05/23/2018,Politicians,@lessig,@next_ghost_cz @creativecommons What wld it be? +05/23/2018,Politicians,@lessig,"RT @johnverdon: scholars such as Paul Heald, demonstrate that copyright blocks access to all sorts of no-longer-commercially-viable creativ…" +05/22/2018,Politicians,@lessig,"Hey #California, I've known @JeffBleichCA for more than 25 years. He is extraordinary. https://t.co/6YcXJ8u6PQ" +05/21/2018,Politicians,@lessig,"@davidclowery @neilturkewitz My “misunderstanding” is apparently shared by 40 IP law professors. Oh well, those who… https://t.co/NQhcEFrBtK" +05/21/2018,Politicians,@lessig,@enzomazza @neilturkewitz Hey nice quote. But see https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,@ClaraBellino @WIRED @thetrichordist Retirement is so attractive! But me and who else? See https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,@WastedVinyl @neilturkewitz Hey nice quote! But see https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,"@neilturkewitz @devlinhartline @mattbarblan @KevinRMadigan Hey, great point! But see https://t.co/rBdHqME41O" +05/21/2018,Politicians,@lessig,@devlinhartline @neilturkewitz @Lawrence_Spiwak @enzomazza @AlaiItalia @usa @WIRED @terrencehart wow. content based… https://t.co/DaJkl0ergO +05/21/2018,Politicians,@lessig,@undergradwoman @EqualCitizensUS Alas 5 min is all you get! +05/21/2018,Politicians,@lessig,"RT @EqualCitizensUS: Twenty years ago today, @lessig's plea to Congress that it not accept technology's attack on personal privacy: https:/…" +05/21/2018,Politicians,@lessig,Emma Lindsay has a super smart piece about politic$ — and how my friend Shahid Buttar (running for Congress in CA)… https://t.co/LJePM6lrKr +05/21/2018,Politicians,@lessig,"That world where Nancy Pelosi is with Mitch McConnell, and John McCain is with Paul Wellstone https://t.co/babNibVyr9" +05/21/2018,Politicians,@lessig,"Twenty years ago today, my plea to Congress that it not accept technology's attack on personal privacy: https://t.co/tgjRLjNhL7" +05/20/2018,Politicians,@lessig,@neilturkewitz @Lawrence_Spiwak @devlinhartline @enzomazza @AlaiItalia @usa @WIRED @terrencehart I argued Golan and… https://t.co/fjc5ylK2FH +05/20/2018,Politicians,@lessig,"@JonathanTaplin @HorsebackNoise @davidclowery @enzomazza @AlaiItalia @usa @WIRED @Google Why is that laughable, Jon… https://t.co/mfCf912Ged" +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google State law does not protect published work.… https://t.co/cAlZdT8eU9 +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @HorsebackNoise @enzomazza @AlaiItalia @usa @WIRED @Google where is the “contradictio… https://t.co/b1mvroapWo +05/20/2018,Politicians,@lessig,@neilturkewitz @JonathanTaplin @HorsebackNoise @davidclowery @enzomazza @AlaiItalia @usa @WIRED @Google Still ignor… https://t.co/QIw8gHmNou +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @HorsebackNoise @enzomazza @AlaiItalia @usa @WIRED @Google I came to Stanford and sta… https://t.co/ROebE4E5PU +05/20/2018,Politicians,@lessig,"@JonathanTaplin @Google So on your definition of “shill”, you’re a shill too? https://t.co/pRcj25KlYH" +05/20/2018,Politicians,@lessig,"@davidclowery @JonathanTaplin @Google Yes. And as I told them (and so acted) because they did, I would not advance… https://t.co/BFC1Vyxq4y" +05/20/2018,Politicians,@lessig,"@devlinhartline @neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart i’m more an IP kitten, not bear." +05/20/2018,Politicians,@lessig,@neilturkewitz @Lawrence_Spiwak @devlinhartline @enzomazza @AlaiItalia @usa @WIRED @terrencehart you’re missing the… https://t.co/mSKJVr9Ntl +05/20/2018,Politicians,@lessig,@devlinhartline @neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart Thanks for the correction: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,"@richardcowens We’re speaking the same language, Richard, right? How is playing an old recording publicly “plagiarizing” anything?" +05/20/2018,Politicians,@lessig,@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google When? Shortly before I stopped beating my wife: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart As explained here: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,"@davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google You are mistaken, sir. https://t.co/eifMssI40O" +05/20/2018,Politicians,@lessig,"@HorsebackNoise @davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google um, maybe because it’s not… https://t.co/K0kTQOrzJE" +05/19/2018,Politicians,@lessig,"@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart Hmm, so you concede your source does not apply to c… https://t.co/px9ySGRL44" +05/19/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart He is writing about a copyright offered in exchange… https://t.co/jQN8J2N0UK +05/19/2018,Politicians,@lessig,"@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google That’s interesting (re Goigle and pk), but you called me… https://t.co/7Q1DiCCQD6" +05/19/2018,Politicians,@lessig,@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google Huh? (Not to mention wow!) +05/19/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart You should read what you cite - on his definition i… https://t.co/pFGAhUV0Ju +05/19/2018,Politicians,@lessig,"@RobertBLevine_ What, Robert, is my cell conflict?" +05/19/2018,Politicians,@lessig,@richardcowens “Plagiarism”??!Come on Richard. +05/19/2018,Politicians,@lessig,"RT @DrRimmer: The CLASSICS act is simply a gift, paid for by further weakening the ability of archivists to keep our culture accessible. ht…" +05/19/2018,Politicians,@lessig,@enzomazza @AlaiItalia @usa @WIRED Is there a use which before was free but would now be regulated by felony-protec… https://t.co/IH5jecdUKe +05/19/2018,Politicians,@lessig,RT @demartin: Lawrence @Lessig on the seemingly unquenchable thirst of the copyright industry for monopoly privileges https://t.co/CwJPPUM8… +05/19/2018,Politicians,@lessig,"@drjaniceduffy If you thought this, then you need to read more." +05/18/2018,Politicians,@lessig,"@mischmerz @WIRED According to the court, yes" +05/18/2018,Politicians,@lessig,Lots of 20th anniversaries this year: Here's a retrospect on the MSFT case. https://t.co/41OIHbEnOg +05/18/2018,Politicians,@lessig,@bobkohn “Harmonize” was w/r/t foreign law. But your meaning will certainly be relied upon as Congress “harmonizes”… https://t.co/5fkIkMBhKf +05/18/2018,Politicians,@lessig,©️-term extension: Here they go again. #heyCongressYouAreTotallyBroken https://t.co/ajYPcoW4vt +05/17/2018,Politicians,@lessig,"@bmaygers @HuffPost yea, but the second Trump defeat in Congress deserves more than 4 hours of front page coverage!" +05/17/2018,Politicians,@lessig,"The #NetNeutrality story now lives on @HuffPost in Israel, sort of: + +& btw: thank you, ©, for working so hard to “… https://t.co/tMcbHyVrR8" +05/17/2018,Politicians,@lessig,"Besides the ACA vote, was there another vote Trump lost, @HuffPost? #NetNeutrality" +05/17/2018,Politicians,@lessig,@MichaelDolan Excellent! New go-to-news-page. +05/17/2018,Politicians,@lessig,@GiuseppeTaibi @HuffPost @oath More likely that the @HuffPost AI thinks stories mocking Don Jr. are more important to the Republic. +05/17/2018,Politicians,@lessig,"Hey @huffpost, I went to bed (I’m in Israel) watching the Senate vote to save #NetNeutrality and wake to see it NOT COVERED in #HuffPo?" +05/16/2018,Politicians,@lessig,BREAKING: The US Senate just voted to save #NetNeutrality! Now we have to take the fight to the House. Chip in to h… https://t.co/bQtjrKKpWZ +05/16/2018,Politicians,@lessig,RT @demandprogress: CALLING ALL LOUISIANANS!!! Please call the office of @SenJohnKennedy and say THANK YOU for his vote to save #NetNeutral… +05/16/2018,Politicians,@lessig,Deep respect to @SenJohnKennedy for thinking through the issues of #NetNeutrality independently and carefully. His… https://t.co/bJsBJkcdTC +05/16/2018,Politicians,@lessig,RT @EqualCitizensUS: Senators Murkowski and Kennedy vote yes on net neutrality! The bill to save net neutrality will pass! https://t.co/Dnz… +05/16/2018,Politicians,@lessig,BREAKING: Senate files motion to proceed to final #NetNeutrality vote. There's less than two hours to make your voi… https://t.co/sVrq9DRpMe +05/15/2018,Politicians,@lessig,"86% of voters from across the political spectrum support #NetNeutrality. It's essential for small businesses, free… https://t.co/WjiWEYDse0" +05/15/2018,Politicians,@lessig,"What + +if + +all + +your + +favorite + +websites + +loaded + +this + +slowly + +unless + +you + +paid + +extra + +to + +access + +them? + +The + +S… https://t.co/prZusuqsTX" +05/15/2018,Politicians,@lessig,"URGENT: The Senate votes on #NetNeutrality in less than 48 hours + +https://t.co/ffxqmJFhK5 or call (513) 854-0120 to… https://t.co/sIgQo8IRr4" +05/14/2018,Politicians,@lessig,"@some_guy_532135 @superwuster Net neutrality is ONLY that! Based on Saltzer/Clark/Reed end-2-end principle, decentralized power." +05/14/2018,Politicians,@lessig,@some_guy_532135 And what will you do when it follows the history of EVERY such technology and does? Have you read… https://t.co/qSYx4ehACM +05/14/2018,Politicians,@lessig,"@MikeMeservy Competition? +You are not serious, are you? There is squat little broadband competition in America. And… https://t.co/IL5AzevI40" +05/14/2018,Politicians,@lessig,"no doubt, we'll need ""the force"" on this. https://t.co/TucHuv48B6" +05/14/2018,Politicians,@lessig,This must happen. https://t.co/viUpO6HVv2 +05/14/2018,Politicians,@lessig,"This + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +#NetNeutrality + +ends + +on + +June 11 + +unless + +we + +stop + +it… https://t.co/aFYWKcoJC0" +05/12/2018,Politicians,@lessig,RT @bryancallen: Sometimes you do a podcast with a man the whole country should listen to. @TT_LarryLessig explains why your Government doe… +05/11/2018,Politicians,@lessig,more! https://t.co/PqVvQEAbDd +05/11/2018,Politicians,@lessig,@Jeffrey_Marty I am sorry for that loss. It took me way too long to understand what it meant. +05/10/2018,Politicians,@lessig,"As always, @eff is just the best (amicus is great). https://t.co/JgdIdEdqKI" +05/09/2018,Politicians,@lessig,RT @Represent_PA: @RepresentDotUs @FairDistrictsPA @EndPACorruption @commoncausepa @LWVPA @TYTNetwork @DrawTheLinesPA @AdamEichen @lessig h… +05/09/2018,Politicians,@lessig,@Team_Mitch @DonBlankenship Wow. Here's a measure of just how much @realDonaldTrump has destroyed the standards of… https://t.co/640bRGd52a +05/06/2018,Politicians,@lessig,@danielahanley @EqualCitizensUS It is great news. Effect conditional on getting 98 more electors committed. +05/05/2018,Politicians,@lessig,"RT @NewYorkLiveArts: Did you miss the Live Ideas Keynote conversation with Bill T. Jones, Sherilyn Ifill and Lawrence Lessig? It's up on yo…" +05/03/2018,Politicians,@lessig,Wow. Great article. Just one of the reasons why I support Rob Sand @robsandia https://t.co/a1ZfS8VQXR +05/03/2018,Politicians,@lessig,@steveoftheweb Wish I could - but he seems to have good lawyers. We just have bad laws (still). +05/03/2018,Politicians,@lessig,RT @RoKhanna: My Democracy Dollars bill giving every voter a $50 voucher to use to fund campaigns would change the model of campaign financ… +04/29/2018,Politicians,@lessig,RT @EqualCitizensUS: @lessig writes about the corruption in our democracy and how public funding in our elections could fix it. Read his pi… +04/27/2018,Politicians,@lessig,I Joined the Tea Party to Drain the Swamp. Trump Isn’t Helping. via @NYTimes https://t.co/2pYQklOyvj +04/25/2018,Politicians,@lessig,"RT @AdamEichen: ""Mulvaney’s attitude is a thousand times worse for America than even Donald Trump,"" said @Lessig, founder of Equal Citizens…" +04/25/2018,Politicians,@lessig,@MattWisnefsky Don’t give up all money; give up interested money and commit to fundamental reform as a day-one issue. +04/25/2018,Politicians,@lessig,RT @davidhogg111: I dream of an America with morally just leaders and without citizens united. Simply put if you need to take millions of d… +04/25/2018,Politicians,@lessig,#finally https://t.co/SkwmuwGTcu +04/25/2018,Politicians,@lessig,#respect https://t.co/142A9xZuVZ +04/20/2018,Politicians,@lessig,@nitsch_robert Explain? +04/17/2018,Politicians,@lessig,"RT @NewYorkLiveArts: Live Ideas opens tomorrow! Grab your tickets to the opening keynote with Bill T. Jones, Sherrilyn Iffil and Lawrence L…" +04/12/2018,Politicians,@lessig,"RT @BKCHarvard: RSVP now for Monday's conversation with @lessig, Ruth Okediji, @LauraDeNardis, and @zittrain on the foundational laws of th…" +04/12/2018,Politicians,@lessig,RT @BTJAZCo: Bill T Jones will be moderating the Live Ideas Festival Opening Keynote discussion with Lawrence Lessig and Sherrilyn Iffil. h… +04/10/2018,Politicians,@lessig,@rejon Yea! +04/10/2018,Politicians,@lessig,@MariaChappelleN @robschaaf Hey!! Great to hear from you. And thank you for the reading! +04/09/2018,Politicians,@lessig,We stand with Ale! She's an activist who's been detained by ICE for 33 days & is targeted for deportation. Help here https://t.co/ZCyWn3Nw93 +04/07/2018,Politicians,@lessig,@RingelsteinME Honored to stand with reformers. +04/06/2018,Politicians,@lessig,"@noel_fisher @MAYDAYUS Wow. Thank you, sir." +04/03/2018,Politicians,@lessig,Important piece by Rob Natelson: Convention for proposing amendments not as scary as some suggest https://t.co/IxMzrCEIne +04/02/2018,Politicians,@lessig,RT @Sweet4Governor: So excited to hear Larry Lessig and be part of the panel to talk about the foundational issue of getting money out of p… +04/01/2018,Politicians,@lessig,Super smart https://t.co/cIHvRaXmSY +03/31/2018,Politicians,@lessig,@ben_kelly_ivory It’s a paid ad at a subway station. How could it possibly be propaganda? +03/31/2018,Politicians,@lessig,RT @HarvardAsh: Next Wednesday: You're invited to a book talk with authors @lindsey_brink and Steven Teles. @lessig will moderate. https://… +03/31/2018,Politicians,@lessig,So #AreYouASocialist? https://t.co/1ma9vBS3Or +03/30/2018,Politicians,@lessig,"RT @MAYDAYUS: Searing words from @lessig on @PAGOP's attempt to impeach judges just to keep gerrymandering: “In Putin’s Russia, this is com…" +03/26/2018,Politicians,@lessig,Super smart piece by @samuelmoyn — Pinker’s Misguided Optimism | The New Republic https://t.co/At5ComVaeV +03/24/2018,Politicians,@lessig,#marchforourlives https://t.co/k1L9gQ0WfG +03/23/2018,Politicians,@lessig,"Hey, @EqualCitizensUS is looking for interns: research/digital campaigns/Graphic Design. +Turns out there's more to… https://t.co/CuIhivYUgH" +03/21/2018,Politicians,@lessig,"RT @creativecommons: Pleased to announce CC Founder @lessig will present ""From Unlocking Free Culture to Reviving American Democracy"" at ou…" +03/21/2018,Politicians,@lessig,“An American president does not lead the Free World by congratulating dictators on winning sham elections.” @SenJohnMcCain +03/16/2018,Politicians,@lessig,"@tweets4twits @Newsweek Technically it is the president who nominates but congress has to confirm and so yes - if qualified, anyone" +03/16/2018,Politicians,@lessig,"@tweets4twits @Newsweek Decency inspires, always." +03/15/2018,Politicians,@lessig,@tweets4twits @Newsweek 25th Amendment? +03/15/2018,Politicians,@lessig,"RT @carlmalamud: Just FYI, 1 US 1 goes back to 1754. https://t.co/XB8LoOIyMo Not Supreme Court decision but Supreme Court Reports. FWIW, on…" +03/14/2018,Politicians,@lessig,RT @SarcasmLiving: “You and I both know that as long as our representatives are held hostage to their funders — and their funders are not a… +03/14/2018,Politicians,@lessig,"RT @DanielBiss: 11 months ago today I released my tax returns and asked my opponents to do the same. They said yes. They were lying. + +Throu…" +03/12/2018,Politicians,@lessig,"RT @BruceSkarin: Add this to your watchlist! The title should be: ""The Robin Hoods of Power"" + +Didn't realize just how much I missed hearin…" +03/12/2018,Politicians,@lessig,RT @RepresentDotUs: Lawrence Lessig - United by our Dissatisfaction: https://t.co/0YoURMintW via @YouTube +03/11/2018,Politicians,@lessig,My film with Snowden is on Amazon. https://t.co/Y8LPMORwqz +03/09/2018,Politicians,@lessig,@ColinWinter Is doesn’t imply ought. +03/09/2018,Politicians,@lessig,#vproud the pathetic dot has become Wikipediable. https://t.co/8NHvBgUD6o +03/08/2018,Politicians,@lessig,RT @DowntroddenInDC: @tedcruz Says the dude named Rafael born in Canada. Hilarious. +03/08/2018,Politicians,@lessig,RT @EqualCitizensUS: Read & share this great op-ed by our chief counsel Jason Harrow on #EqualVotes https://t.co/GRZlFnlUUM via @usatoday +03/08/2018,Politicians,@lessig,RT @Crell: There's plenty of corruption in the Democratic side of the isle. @speakermadigan is the poster child for it. He's a disgrace to… +03/08/2018,Politicians,@lessig,Wow. @speakermadigan https://t.co/9jtwrxQqCu +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/z38mQxz4Xk +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/Ypr5EtXHBk +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/SRd3WvCuoj +03/07/2018,Politicians,@lessig,RT @leftycoastr: @cameron_kasky @lessig We can’t fix anything until we get the money out of our politics. Overturning citizens united and p… +03/07/2018,Politicians,@lessig,RT @DavidVMitchell: This! @lessig meet @cameron_kasky https://t.co/D29AGbtaoq +03/07/2018,Politicians,@lessig,"RT @cameron_kasky: The NRA is pretty awful about this, but it’s a bigger issue than that. We need to get money out of politics across the b…" +03/05/2018,Politicians,@lessig,"RT @RumbleComics: The most important part is the last line: ""A full review will take place over the summer, so it wasn't clear how the term…" +03/02/2018,Politicians,@lessig,"@nickdanger69 @Salon @EqualCitizensUS Love Sioux Falls, and born in Rapid City" +03/02/2018,Politicians,@lessig,This video by @Salon does a great job explaining the challenge to the Electoral College that @EqualCitizensUS help… https://t.co/xmGokRHMwK +03/02/2018,Politicians,@lessig,"@realDonaldTrump Seriously, Mr. President. You can’t really be this ignorant." +03/02/2018,Politicians,@lessig,RT @AlyonaMink: 2 of our last 3 presidents were elected without winning the popular vote. Now voters in 4 states are suing to change the sy… +03/01/2018,Politicians,@lessig,RT @EqualCitizensUS: Great interview on #EqualVotes with @lessig & @FastCompany https://t.co/quO3krqAOS +02/27/2018,Politicians,@lessig,@CaseyCagle @Delta @NRA Too bad there is no #FirstAmendment in Georgia. +02/26/2018,Politicians,@lessig,"RT @kayalbasi: An office that represents all Americans should be elected equally by all Americans. + +“The challenge to ‘winner-take-all’ la…" +02/26/2018,Politicians,@lessig,"RT @PatSemple: “For example, in 2016, 99% of campaign spending was in 14 states. Those states, representing just 35% of America, are older…" +02/25/2018,Politicians,@lessig,"RT @Crell: Gun control, campaign control — Steemit https://t.co/skPFtxzlhv" +02/23/2018,Politicians,@lessig,"RT @akaelainesk: @EqualDignity @lessig @TheDavidBoies I am in WV. I wrote to all five of our electors, asking them to represent the WV vote…" +02/23/2018,Politicians,@lessig,RT @EqualDignity: Congrats to @lessig and @TheDavidBoies for filing suit against the winner-take-all laws underpinning the Electoral Colleg… +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics SO by avoiding my questions about the 14th Amendment, I assume that means you concede tha… https://t.co/xUED7BL1gg" +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics You realize we’ve brought four suits, including CA and MA, right? In those BLUE states, i… https://t.co/F4yiB6DL9T" +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics I got that part in my constitution too. What I was asking was where is the part that says… https://t.co/xfzyAGuTEb +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics There are plenty of bounds to the 14th Amendment — see, e.g., Washington v. Davis. But ar… https://t.co/7TkDQRo4n2" +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics Huh? Quote a SINGLE example of that view from the framing. +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics I’ve read the constitution. Does it say “winner take all” in yours? Your confusing a COMP… https://t.co/bbNCq9aHzf +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics Now join the ones that read: https://t.co/ehVAsAih0z. #DamnRightWeAreADemocracy +02/23/2018,Politicians,@lessig,@UKBleedingBlue @bassobryce Where is winner-take-all in the Constitution. I must have missed it. +02/23/2018,Politicians,@lessig,RT @ScreenTimeComic: @RumbleComics @douglevin @Scholastic @artandwriting @BoingBoing @doctorow @lessig Well done! And you have _just_ begun… +02/23/2018,Politicians,@lessig,@nashville_brook https://t.co/vkHpCr4hAC +02/23/2018,Politicians,@lessig,@nashville_brook happy to respond to you once you’ve responded to me. +02/23/2018,Politicians,@lessig,"RT @pwb: If it was a pro-Trump partisan issue, the lawsuits would only have been launched in blue states. They weren't. https://t.co/oNQ3WC…" +02/23/2018,Politicians,@lessig,@nashville_brook As a “material implication” of what? I wasn’t predicting anything about Ryan. I was saying what wa… https://t.co/6bBT1gUFwa +02/23/2018,Politicians,@lessig,"This excerpt is almost a decade old, but it still summarizes pretty accurately the ""dependence corruption"" of Congr… https://t.co/A2ex2NJjn1" +02/23/2018,Politicians,@lessig,@nashville_brook @GeoffMiami @BethLynch2020 @bourgeoisalien @blupfront1 And in what world is not saying more “doubl… https://t.co/4yNW39b09r +02/23/2018,Politicians,@lessig,@nashville_brook It doesn’t make me “disingenuous.” It marks me as realistic about the effect of raising and pressi… https://t.co/Nw8vsfL99m +02/23/2018,Politicians,@lessig,@rcfwilmette @smerconish Yea @smerconish! +02/23/2018,Politicians,@lessig,"Galvin defends the current(ly unjustly unequal) system by arguing the alternative is likely to elect Trump. Um, wai… https://t.co/tc1V4SVuzZ" +02/23/2018,Politicians,@lessig,We're hiring a campaign manager at @EqualCitizensUS. Is it you? https://t.co/nH84U2QdS1 +02/23/2018,Politicians,@lessig,RT @PupsNPol: Great article and not the first to say this. I believe @lessig was arguing this as well back in Dec 2016. https://t.co/Ifg3R… +02/23/2018,Politicians,@lessig,@nashville_brook Nope. “Let it go” +02/23/2018,Politicians,@lessig,RT @BunsNotBombs: @dylan_forest @Illini102 @MaryAnnAhernNBC @BernieSanders @DanielBiss @KennedyforIL @Ra_Joy @NationalNurses @OurRevolution… +02/23/2018,Politicians,@lessig,"@jda2000 @Molly_McDonough @ABAJournal Reason and principle?- yea, pretty foreign ideas" +02/23/2018,Politicians,@lessig,@bwohlgemuth @Molly_McDonough @ABAJournal Reading cures lots. But look - the bill of rights is the cure for the so… https://t.co/2G8MpMuJYa +02/23/2018,Politicians,@lessig,@jda2000 @Molly_McDonough @ABAJournal ? +02/23/2018,Politicians,@lessig,@DarkGently @nashville_brook Do you think the author of a blog post written about by Newsweek writes the titles to… https://t.co/MpbysSg0NA +02/23/2018,Politicians,@lessig,@bwohlgemuth @Molly_McDonough @ABAJournal Not a winning strategy. But even if it were- what is the argument FOR den… https://t.co/ioN0ytVzuu +05/29/2018,Politicians,@LincolnChafee,"""Two of my favorite sayings are, 'Fortune favors the bold' and 'Discretion is the better part of valor.' The latter… https://t.co/FgIQzUNOYR" +05/28/2018,Politicians,@LincolnChafee,https://t.co/1Y7ifYrBGK +05/28/2018,Politicians,@LincolnChafee,https://t.co/Z3pQVFwSIn +05/23/2018,Politicians,@LincolnChafee,"Frank Bruni op-ed in NY Times today says Mueller investigation is backfiring on Dems, actually strengthening Trump. Who said that first?" +05/22/2018,Politicians,@LincolnChafee,"It’s unfortunate that Venezuela, in our hemisphere, is gravitating into the China, Russia, Iran and Turkey orbit." +05/20/2018,Politicians,@LincolnChafee,"Good luck to Volvo sailors! Great to work with Dir’s. Licht, Coit et al to fund necessary infrastructure in tough b… https://t.co/SHLHGEQABF" +05/18/2018,Politicians,@LincolnChafee,"Good to see NY Times covering DNC nominating reforms- more open primaries, no superdelegates and better caucus voting procedures." +05/17/2018,Politicians,@LincolnChafee,Electoral College a rout for Trump. Not good. Reforms should include all open primaries. Is Cynthia Nixon next victim of closed NY primary? +05/16/2018,Politicians,@LincolnChafee,Shiite al Sadr leads Iraqi elections. We ousted Sunni Saddam. We embrace Sunni Saudi’s and fight with Shiite Iran.… https://t.co/HOZVMHcGbv +05/15/2018,Politicians,@LincolnChafee,"Best wishes to Rev. Donnie Anderson, a hard worker for just causes." +05/14/2018,Politicians,@LincolnChafee,"NBA’er Jerry West: “What is right is not always popular, and what is popular is not always right.”" +05/13/2018,Politicians,@LincolnChafee,Happy Mother’s Day! +05/12/2018,Politicians,@LincolnChafee,"HRC didn’t campaign in Wisc. Russia’s fault! Dissed Sanders Nation, email server, Clinton Foundation... Refocus on… https://t.co/d4DMcpc6un" +05/11/2018,Politicians,@LincolnChafee,Endless ink on Russian meddling. Waiting for reforms to flawed DNC that gave us a candidate who lost to Trump. Ban superdelegates. +05/10/2018,Politicians,@LincolnChafee,"How are we going to get Middle East back to the days of Carter Begin, Reagan Shamir, HW Bush Rabin, Clinton Peres, Barak, working for peace?" +03/24/2016,Politicians,@LincolnChafee,Help RI #LifeSmarts team by watching their pre-national competition video. More views=more points for our team! https://t.co/bsXUJ1f47H +10/23/2015,Politicians,@LincolnChafee,Thank you Democrats especially in New Hampshire and Iowa! I enjoyed meeting you! I learned a lot! +10/23/2015,Politicians,@LincolnChafee,I look forward to speaking at DNC Women's Forum tomorrow morning. I'll address my future in the campaign there. #chafee2016 +10/22/2015,Politicians,@LincolnChafee,"Especially in Kashmir, unrest calls for reconciliation, not +inflammation. Will @narendramodi stand up for Muslims? +https://t.co/uMXnQKBN4Y" +10/22/2015,Politicians,@LincolnChafee,"Anti-refugee hate, rightwing reactionaries have festooned into +intolerable racial violence that threatens democracy. +https://t.co/DC0nQ4jLSe" +10/22/2015,Politicians,@LincolnChafee,"Peace treaty w/ N. Korea tricky proposal. Good in many ways, +difficult in others. But the first step is believing. +https://t.co/7ebRcvn4or" +10/21/2015,Politicians,@LincolnChafee,"Tragic violence in Israel & Palestine stems directly from +frustration with the perpetuity of conflict. Ppl act in desperation +for change." +10/21/2015,Politicians,@LincolnChafee,"Xi Jinping might have advice for @MBuhari as he bravely combats +systemic corruption in Nigeria, an integral fight. +https://t.co/usCpOA9T5H" +10/21/2015,Politicians,@LincolnChafee,"A culture of fear produces dead innocents everywhere, from +Baltimore to Beersheba. #BlackLivesMatter +https://t.co/v9vwZNOl7S #GetGrounded" +10/20/2015,Politicians,@LincolnChafee,"Sweden & Finland joining NATO may not be the best thing for world +security. A threatened Russia will act accordingly +https://t.co/aNOrTOlHl6" +10/20/2015,Politicians,@LincolnChafee,"The UNSC will discuss the rising unrest in Israel/Palestine, but +will there be courage to address the real issues? +https://t.co/ERCQ9tJIDt" +10/20/2015,Politicians,@LincolnChafee,"US drone policy: 90% ppl killed were unintended targets. What +better way to help our enemies recruit? @the_intercept +https://t.co/AiX2J1vZ4n" +10/20/2015,Politicians,@LincolnChafee,"Drone strikes 10x more likely to kill civilians than manned +aircraft. when you have no skin in the game. +https://t.co/mH1TuPUpkR #chafee2016" +10/19/2015,Politicians,@LincolnChafee,"EU countries can't agree on #refugee distribution so offer $3B to +Turkey. Turkey needs the help, and I'm for whatever works at this +point." +10/19/2015,Politicians,@LincolnChafee,"Smh @MLP_officiel shameful fear mongering hurts the nation, in +France and everywhere. FYI praying Muslims ≠ Nazis +https://t.co/jBrLHsMeBD" +10/19/2015,Politicians,@LincolnChafee,"In Kunduz airstrike, we knew the target was a hospital. How can we +hold others accountable when we don't ourselves? +http://t.co/wOA4WfMhsy" +10/18/2015,Politicians,@LincolnChafee,"Looking forward to the Mt Chocorua Area Dems Friendraiser today at the World Fellowship Center in Albany, NH #nhpolitics #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,Getting ready to talk with Wolf Blitzer on @CNN! http://t.co/QFM8L8AGp3 +10/14/2015,Politicians,@LincolnChafee,"To learn more about #ProsperitythroughPeace and to volunteer or donate to my campaign, please visit http://t.co/bq3HUGxUdP" +10/14/2015,Politicians,@LincolnChafee,"I raised the minimum wage three times as Governor. When it's +needed it's needed. #DemDebate #Chafee2016 #ProsperitythroughPeace" +10/14/2015,Politicians,@LincolnChafee,"No lines in the sand. In trying to assert strength we expose +weakness. #DemDebate #ProsperitythroughPeace #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,"Look at the @GOP primary farce, it's of utmost importance we +elect a Democrat to the White House. #DemDebate #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,".#ProsperitythroughPeace is really only way. Our eagle clutches both +arrows and an olive branch. Let's give the latter a try. #DemDebate" +10/14/2015,Politicians,@LincolnChafee,Politicians shouldn't promise what they can't deliver. #DemDebate #Chafee2016.com #ProsperitythroughPeace +10/14/2015,Politicians,@LincolnChafee,"Unemployment? Not on my watch. As Governor RI saw the biggest drop +in unemployment, second only to Nevada #DemDebate #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,"I'm the only candidate standing with @POTUS on #TPP. Trade will +happen, let's write the rules well and improve our world.#DemDebate" +10/14/2015,Politicians,@LincolnChafee,"Only candidate to be a Mayor, U.S. Senator, and Governor. The most +experience, the highest ethical standards #DemDebate #Chafee2016" +10/13/2015,Politicians,@LincolnChafee,Looking forward to discussing the issues during the #CNNDebate tonight at 8:30 pm eastern time. #ProsperitythroughPeace #chafee 2016 +10/13/2015,Politicians,@LincolnChafee,RT @TreTre0: Everyone enjoys a good underdog story. Let's see what @MartinOMalley @LincolnChafee @JimWebbUSA bring to the #DemocraticDebate… +10/13/2015,Politicians,@LincolnChafee,RT @devintstewart: Policy integrity on TPP from @LincolnChafee https://t.co/k7W23BZEDI +10/13/2015,Politicians,@LincolnChafee,"Repubs too quickly condemn mental illness as the problem, what +about teaching our boys that violence is the answer? +http://t.co/fhuNiZT2Mu" +10/12/2015,Politicians,@LincolnChafee,"Yes! International leaders band together in Peru to address +corporate tax evasion. Exactly as it should be done +http://t.co/BXAfPT08bx" +10/12/2015,Politicians,@LincolnChafee,"Asking your people to die in another Intifada will not lead to +liberation Mr. Haniyeh. Try championing peace #Hunda +http://t.co/LZTJCESRe4" +10/11/2015,Politicians,@LincolnChafee,"Israel/Palestine: attacks by youth with no ties to armed groups +indicates not indoctrination, but deeper problem. +http://t.co/waEdJHEmC8" +10/11/2015,Politicians,@LincolnChafee,"Calling for peace and good will is necessary, but @narendramodi might also +want to condemn violence against Muslims +http://t.co/VdzG2MMX3N" +10/11/2015,Politicians,@LincolnChafee,We cannot be numb to drone strikes. They spread terror. I will end them. #GetGrounded #ProsperitythroughPeace http://t.co/Ko9DiGiYMy +10/10/2015,Politicians,@LincolnChafee,"Dangerous saber-rattling continues. Why do people think deepening +sectarian divides will ever solve anything? +http://t.co/n0K6DwPTwq" +10/10/2015,Politicians,@LincolnChafee,"Climate change is a NATIONAL SECURITY ISSUE. You'd think Repubs +would be all over it. @GOP +http://t.co/wXN8DNyxjk #GetGrounded #chafee2016" +10/09/2015,Politicians,@LincolnChafee,".#TPP isn't about containing China, it's about American leadership, +international order & our allies. @solis_msolis +http://t.co/cZeAO6dl5i" +10/09/2015,Politicians,@LincolnChafee,".@netanyahu's ban is good move to prevent escalation. As things +heat up, we need to cool down #hudna +http://t.co/dceWvnR1oj #chafee2016" +10/09/2015,Politicians,@LincolnChafee,Congrats @GovMaryFallin on suspending executions in OK. US should join the many nations to ban capital punishment. http://t.co/m09qY4eLHP +10/07/2015,Politicians,@LincolnChafee,"Mental health is public health, everywhere. Gaza is no exception. +Look out for the kids. Trauma leads to terror +http://t.co/YUJwUFvd3q" +10/07/2015,Politicians,@LincolnChafee,"A lot of shouting is going on about the TPP trade deal. Let's +actually read the document and measure its merits before demonizing it." +10/07/2015,Politicians,@LincolnChafee,What have we taught Saudis with our drone war? Wedding parties & civilians are NOT targets http://t.co/2YEkV4NNjZ #ProsperitythroughPeace +10/07/2015,Politicians,@LincolnChafee,"While I sometimes must sacrifice my grammar for the tweet, I'm glad +my supporters don't on Facebook! @singernews +http://t.co/iHjri3ZSd9" +10/07/2015,Politicians,@LincolnChafee,"Trust, cooperation starts with respect and a handshake. @POTUS @JZarif http://t.co/2uTorvlWKa #GetGrounded #Chafee2016" +10/06/2015,Politicians,@LincolnChafee,"Hope to see you at the meeting of the Cheshire County Dems tonight in Keene, NH. #Chafee2016 #ProsperitythroughPeace #NHpolitics" +10/06/2015,Politicians,@LincolnChafee,"Good piece by @ConStelz @BrookingsFP ""Why Europe needs America, a little"". We unequivocally need Europe too! +http://t.co/86R6CTwe70" +10/06/2015,Politicians,@LincolnChafee,"Looking forward to talking about my campaign w/ residents of RiverWoods today in Exeter, NH. #chafee2016 #ProsperitythroughPeace #nhpolitics" +10/06/2015,Politicians,@LincolnChafee,"We cannot accept such racism and apathy in our country. +#HisNameIsCayden and he reminds us for what we fight. +https://t.co/KhfesL8wVL" +10/06/2015,Politicians,@LincolnChafee,@yonimweiss against capital punishment +10/06/2015,Politicians,@LincolnChafee,RT @ChairmanBuckley: Great turnout at @SCDCNHDems fall event with @LincolnChafee #nhpolitics http://t.co/SC2Tip2w09 +10/05/2015,Politicians,@LincolnChafee,Chinese cap and trade great start. Where's the US plan to price carbon emissions? Global summit coming soon. http://t.co/MFLzT5qxm1 +10/05/2015,Politicians,@LincolnChafee,"At least @GOP didn't shut down the govt again, but kicking the can down the road isn't good governance http://t.co/3xngrU7IKn #GetGrounded" +10/05/2015,Politicians,@LincolnChafee,More than half of Americans know that US foreign policy bears some responsibility for the #refugeecrisis. Let's act http://t.co/UroBKtOu4R +10/05/2015,Politicians,@LincolnChafee,Unethical price spikes by some drug companies hurt people. Time for price controls?#GetGrounded #Chafee2016 http://t.co/UFTGahfhMq +10/04/2015,Politicians,@LincolnChafee,"It's a crisp fall day in Strafford County, NH! Hope to see you at the @SCDCNHDems Fall Dinner in Rochester! #nhpolitics #Chafee2016" +10/04/2015,Politicians,@LincolnChafee,"Our duty to protect refugees doesn't stop at the camp's welcome mat. Sexual abuse, exploitation are constant dangers http://t.co/DzU5en4tgW" +10/04/2015,Politicians,@LincolnChafee,"US bombs Afghan hospital. Too many similar stories. We need fresh ideas, new approach. #GetGrounded #Chafee2016 http://t.co/fnjGPpiAIA" +10/04/2015,Politicians,@LincolnChafee,"Winter is Coming, and #refugees are racing against a perilous clock. Humanity must act, no time for #GameOfThrones http://t.co/j2zCUI6btf" +10/03/2015,Politicians,@LincolnChafee,With China we have agreements and we have differences. Focusing on the former helps resolve the latter. http://t.co/lNFFKD9WEa #chafee2016 +10/03/2015,Politicians,@LincolnChafee,"ACA, #Obamacare is threatened now by some Democrats call for repeal of ""cadillac tax"". Not good. #chafee2016 http://t.co/sX1IKCneRC r=0" +10/03/2015,Politicians,@LincolnChafee,"Peace draws closer in Colombia, but intl. attention is required to keep the pressure on the players http://t.co/aein8oNl31 #GetGrounded" +10/02/2015,Politicians,@LincolnChafee,"The Marshall Islands know that climate change is an existential threat to humanity. @MinisterTdB stays fighting +http://t.co/O5iFABgUmd" +10/02/2015,Politicians,@LincolnChafee,"Rest in peace Doug Kendall, who bravely fought for a progressive Constitution and a bright future for America http://t.co/NrhsCDsueb" +10/02/2015,Politicians,@LincolnChafee,"Sheikh Tamim of Qatar does the wise thing, calls for dialogue between Iran and Arab states. Let's start talking. http://t.co/mK57K7UzXt" +10/01/2015,Politicians,@LincolnChafee,Both @POTUS and Putin are right on Syria: democracy cannot be imposed but also tyranny cannot be promoted https://t.co/bmLfT6oXS7 #chafee20… +10/01/2015,Politicians,@LincolnChafee,"RT @ForeignPolicyI: .@LincolnChafee-Regarding Assad, our experience toppling leaders has not been a good one. Cold War experience was to wa…" +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: .@LincolnChafee: It wasn't that long ago when we thought that we were on the verge of lasting peace between world power… +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: .@LincolnChafee: I would work to lift sanctions against Russia for its actions in Ukraine. #FPIForum +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: Next at the #FPIForum - Democratic Presidential candidate @LincolnChafee talks to @Adesnik. +10/01/2015,Politicians,@LincolnChafee,Looking forward to taking part in the Foreign Policy Institute's Annual Forum 2:15 pm today at the Newseum in DC. #ProsperitythroughPeace +10/01/2015,Politicians,@LincolnChafee,"I want to wish @NGRPresident @MBuhari and all of Nigeria happy Independence Day! Unity & Faith, Peace & Progress: words worth celebrating!" +10/01/2015,Politicians,@LincolnChafee,"We must strengthen the UN. More peacekeepers & resources can only be good, why stop at here? http://t.co/6U5kxb5ydT #GetGrounded #chafee2016" +09/30/2015,Politicians,@LincolnChafee,What have we taught the Saudis with our drone war? Wedding parties and civilians are NOT targets http://t.co/OePEOvYXCB #chafee2016 +09/30/2015,Politicians,@LincolnChafee,Hear more about my plan to create a new tax bracket for the wealthy on @fbncountdown with @LizClaman today at 3pm ET. #chafee2016 +09/30/2015,Politicians,@LincolnChafee,RT @LizClaman: Democratic Presidential candidate & fmr. Gov. of Rhode Island @LincolnChafee joins us 3pm ET today - tune in! http://t.co/XR… +09/30/2015,Politicians,@LincolnChafee,"Trust, cooperation starts with respect & a handshake.@POTUS @JZarif http://t.co/XlyTDQV1wG #GetGrounded #ProsperitythroughPeace #Chafee2016" +09/29/2015,Politicians,@LincolnChafee,"Mr. @Snowden-Fed court ruled you're right! I'm the only presidential candidate who has vowed to bring you home, charges dropped. #chafee2016" +09/29/2015,Politicians,@LincolnChafee,Something is wrong- we arm and train fighters who then join the other side. Why? That is the question. #GetGrounded #chafee2016 +09/27/2015,Politicians,@LincolnChafee,"By failing to strengthen and fix our intl. institutions, we retreat to a disastrous paradigm of unipolarity +http://t.co/9An8N8QBDw" +09/27/2015,Politicians,@LincolnChafee,"French crops die from WWI we continue to reap the seeds of war, ever sown deep. Why do we keep lusting for conflict? http://t.co/lvxCu0yb2U" +09/27/2015,Politicians,@LincolnChafee,Peace in Colombia w/ FARC looks promising. Accountability remains key. Fingers crossed. #ProsperitythroughPeace http://t.co/YyESCVvfYh +09/27/2015,Politicians,@LincolnChafee,ISIS recruits grow rapidly. We need to understand why people buy what #ISIS sells. #GetGrounded #chafee2016 #ProperitythroughPeace +09/26/2015,Politicians,@LincolnChafee,A great day at @HamptonDems Community Picnic! #chafee2016 #nhpolitics #prosperitythroughpeace http://t.co/C98waStQuW +09/26/2015,Politicians,@LincolnChafee,"Sam Nunn is right: talking and engagement, NOT silence is the key to progress w/ Russia. Good looks @politicalinsidr http://t.co/hhFEw2zGtV" +09/26/2015,Politicians,@LincolnChafee,"Hope to see you @HamptonDems Community Picnic today at noon at 39 Mill Rd, Hampton, NH. #chafee2016 #ProsperitythroughPeace #nhpolitics" +09/26/2015,Politicians,@LincolnChafee,Every nation in the world must reevaluate how its energy subsidies work against a sustainable future http://t.co/FWqYbUjhRq #GetGrounded +09/25/2015,Politicians,@LincolnChafee,".@SteveKingIA how can you say the refugees crisis is a calculated effort by ""Islam"" to invade non-Muslim countries? Fear>anger>hate>darkside" +09/25/2015,Politicians,@LincolnChafee,"“@ReutersWorld: Putin to meet Obama on September 28: Kremlin http://t.co/VAX144c7VK”. Let's start a healthy, honest dialogue. #chafee2016" +09/25/2015,Politicians,@LincolnChafee,"Burkina Faso political turmoil presents test for the nation, region, and world. Diplomacy is the only real solution. http://t.co/wAgHzr3EiE" +09/25/2015,Politicians,@LincolnChafee,With climate change comes investing change. Watch for water as a high value commodity. #GetGrounded #chafee2016 http://t.co/8C0AnyNbLk +09/25/2015,Politicians,@LincolnChafee,Thank you Mt Chocurua Democrats! #nhpolitics #prosperitythroughpeace #chafee2016 http://t.co/qgEiOS5NUb +09/24/2015,Politicians,@LincolnChafee,Both long overdue and very timely: @RepEBJ introduces H.R. 413 to honor victims of hate crimes & prejudice post 9/11 http://t.co/H9JNkRKNHx +09/24/2015,Politicians,@LincolnChafee,The Iraq War caused the refugee crisis and our European allies suffer from our mistakes. Fruits of #neoconkoolaid http://t.co/DiUDno4bsL +09/23/2015,Politicians,@LincolnChafee,Yemen continues to denigrate into worse humanitarian disaster. US should rally intl efforts for peace talks http://t.co/Ky6Rt4QWRK +09/23/2015,Politicians,@LincolnChafee,"If we want the world to listen to us, we need to listen to the world. Time to reflect on the #Cuba embargo @UN http://t.co/kM9QZQOkiV" +09/23/2015,Politicians,@LincolnChafee,At the #EU refugee summit today leaders must come together on more than quotas to address the millions still trying to escape. +09/22/2015,Politicians,@LincolnChafee,"Still, talking w/ Russians is first step. Good to see @POTUS doing it. Repubs would probably just launch missiles http://t.co/aV88qLaOlJ" +09/22/2015,Politicians,@LincolnChafee,How to address source of hate crimes? We must educate to embrace diversity and criticize a whitewashed history. http://t.co/C8fPOLlYji +09/22/2015,Politicians,@LincolnChafee,Russia should know that sustainable peace in Syria is impossible w/o reforming the Assad regime. http://t.co/i1JBrbCqUz #GetGrounded +09/22/2015,Politicians,@LincolnChafee,"RT @RitaCosby: Listen to our great show featuring @CardinalDolan, @DavidGregory, @RandPaul and @LincolnChafee – http://t.co/nOfAaJtLHY + +#po…" +09/22/2015,Politicians,@LincolnChafee,"Welcome Pope Francis! @Pontifex said in #Cuba, ""If you are different than me, why don't we talk?"" #GetGrounded #ProsperitythroughPeace" +09/21/2015,Politicians,@LincolnChafee,"Good to see intl. leadership & cooperation address situation in Burkina Faso. Exactly right, let's keep an eye on it http://t.co/ERS8bYjAWn" +09/21/2015,Politicians,@LincolnChafee,"Oman, on the Arabian Peninsula is emerging as a leader of peaceful efforts in the region. Responsible for release of US prisoners in Yemen." +09/21/2015,Politicians,@LincolnChafee,".@GOP You should already know this, but race baiting and fear mongering, immoral themselves, ultimately hurt you http://t.co/3j6Cl843tb" +09/21/2015,Politicians,@LincolnChafee,.@realBenCarson shames himself and the Constitution with Muslim president comment. Bigotry is incompatible with the values of this nation. +09/21/2015,Politicians,@LincolnChafee,"Brinkmanship in Syria w/Russia will kill more, prolong conflict. Let's come to our senses now and talk. @JyShapiro http://t.co/1RbooIuhFk" +09/21/2015,Politicians,@LincolnChafee,New docs show Bush/Cheney ignored 4th Amend. & Justice Dept on wiretapping. Probably still think they're right. http://t.co/qYCmqySl33 +09/20/2015,Politicians,@LincolnChafee,"Hmm, let's look at just some of the things the Republican candidates got wrong in the debate. http://t.co/0Xc0oydRtx #Chafee2016" +09/20/2015,Politicians,@LincolnChafee,"You can't say #Putin didn't warn us in speech in Munich in '07. The ""unipolar"" speech. #chafee2016 Prosperity through Peace." +09/20/2015,Politicians,@LincolnChafee,"Empowering disgraceful Islamaphobia at his rally may be @realDonaldTrump 's campaign strategy, but it's unequivocally shameful and wrong." +09/19/2015,Politicians,@LincolnChafee,Thank you NH Democrats! Prosperity through Peace! #chafee2016 #nhpolitics http://t.co/IBoqCZcaoa +09/19/2015,Politicians,@LincolnChafee,Governor O'Malley and Governor Chafee exchange pleasantries at the NH Democratic Convention. #chafee2016 #nhpolitics http://t.co/lNgrIQwYyH +09/19/2015,Politicians,@LincolnChafee,RT @cspanradio: 9:30amET LIVE: .@NHDems Convention w/@HillaryClinton @BernieSanders @LincolnChafee @MartinOMalley Lawrence Lessing http://t… +09/18/2015,Politicians,@LincolnChafee,Prejudicial fears poison our nation. @IStandwithAhmed you inspire us all to fight for compassion. #IStandWithAhmed http://t.co/CeCOzV7V8n +09/18/2015,Politicians,@LincolnChafee,"Humbled by diplomacy w/the South, N. Korea seeks to reaffirm fantasy stance of power and legitimacy w/ nukes http://t.co/fwlvgLt3Ac" +09/18/2015,Politicians,@LincolnChafee,I fear fear itself. The last time the @GOP was this scared of Muslims we invaded Iraq. Hawks must stop squawking http://t.co/pOVNm8wm1h +09/17/2015,Politicians,@LincolnChafee,"I'm all for fiscal responsibility, but Republicans are severely harming our govt's ability to make good decisions. http://t.co/4U9swHjWYf" +09/17/2015,Politicians,@LincolnChafee,"Mass incarceration is not ""tough on crime"", its tough on families; wasting money & poisoning society. #GetGrounded http://t.co/Im7fyhSzZq" +09/17/2015,Politicians,@LincolnChafee,The only solution to Syria and the refugee crisis is via diplomacy. Time to bring the players to the table. @npwcnn http://t.co/SspZ0MfAW7 +09/17/2015,Politicians,@LincolnChafee,"Wow, so much anti @Obama vitriol #GOPDebate. THEY forget the mess THEY handed him in '08- deficits, freefall economy, broken MIddle East." +09/17/2015,Politicians,@LincolnChafee,How can they be so indignant? They and @GOP leaders are responsible for class warfare & disparity in this country and beyond. #CNNDebate +09/17/2015,Politicians,@LincolnChafee,An hour in #cnndebate & they've started WWIII and bashed women. Next: beating on immigrants and more damage to the poor & Middle Class. +09/16/2015,Politicians,@LincolnChafee,.@GOP predicate American greatness on mostly violent posturing and offer no vision @Brookings_FP @will_mccants http://t.co/rP2muVfw3s +09/16/2015,Politicians,@LincolnChafee,.@Pontifex very right about the tip of the iceberg. We must reorient global order towards #ProsperitythroughPeace http://t.co/XY7XlPdtSZ +09/16/2015,Politicians,@LincolnChafee,Tea Party Repubs trying to kill Ex-Im Bank are killing good American jobs. Bank's been helping companies since 1934. http://t.co/huGWRaxi57 +09/16/2015,Politicians,@LincolnChafee,"Invading Iraq empowered ISIS, increasing violence & sectarian tensions in climate of poor governance #GetGrounded http://t.co/BTgcRaSllh" +09/16/2015,Politicians,@LincolnChafee,Thank you for a lively conversation @plaistowdems tonight in NH! #chafee2016 #nhpolitics Prosperity through Peace. http://t.co/P6LKXEBtKB +09/16/2015,Politicians,@LincolnChafee,RT @Geoz137: @LincolnChafee Glad to have seen you at @colbysawyer Collge in New Hampshire. +09/15/2015,Politicians,@LincolnChafee,.@steven_pifer at @Brookings_FP notes that Repubs are empty on addressing Russia. Tasty carrot > posturing stick. http://t.co/DerrY2CRB1 +09/15/2015,Politicians,@LincolnChafee,"At Colby-Sawyer College Town Hall Meeting in New London, NH http://t.co/PSi7sqy2p5" +09/15/2015,Politicians,@LincolnChafee,"Learn more about my campaign at a Town Hall Meeting today at 4 pm @colbysawyer in New London, NH #Chafee2016 #ProsperitythroughPeace" +09/15/2015,Politicians,@LincolnChafee,"A lack of transparency plus a paradigm of dire national security produces tragic results, in Egypt and everywhere http://t.co/qzeQcUwdMv" +09/15/2015,Politicians,@LincolnChafee,"RT @iowademocrats: We're excited to announce the speakers for the 2015 JJ Dinner: @LincolnChafee, @HillaryClinton, @MartinOMalley and @Bern…" +09/15/2015,Politicians,@LincolnChafee,RT @RichRubinoPOL: Is Lincoln Chafee the Heir Apparent to Ron Paul on Foreign Policy? http://t.co/ALYjkN9egD +09/15/2015,Politicians,@LincolnChafee,Putin coming to UN. So far he's rebuffed in meeting @POTUS. Why? Let's listen re: Syria and ISIS #GetGrounded http://t.co/OA2snYMPyB +09/14/2015,Politicians,@LincolnChafee,In New Hampshire today for the meeting of the @rcdcnh Rockingham Democrats tonight at 7PM in Exeter. #chafee2016 +09/14/2015,Politicians,@LincolnChafee,"Cheney foolishly against #irandeal. He was wrong about Iraq, he's wrong now. #Prosperity through Peace #chafee2016 http://t.co/VmCkfzQOds" +09/14/2015,Politicians,@LincolnChafee,Think the Middle East is complicated? Some Iranians say US is secretly protecting ISIS. #GetGrounded #chafee2016 http://t.co/38WmZQ6aQe +09/13/2015,Politicians,@LincolnChafee,"Important time in our history. As nations evolve we should avoid ""preachments of the west…laced with hypocrisy."" http://t.co/QeugJ0xjfy" +09/12/2015,Politicians,@LincolnChafee,"In Haverhill, MA for the 350th Anniversary Celebration at Riverside Park." +09/12/2015,Politicians,@LincolnChafee,"Looking forward to meeting you this afternoon @rcdcnh booth during the Old Home Days Celebration in Sandown, NH #chafee2016 #nhpolitics" +09/12/2015,Politicians,@LincolnChafee,"See you at the Chester, NH Old Town Days Fair this afternoon. #chafee2016" +09/12/2015,Politicians,@LincolnChafee,Oklahoma death row case shows flaws of capital punishment. Past due to join civilized nations and end it.#GetGrounded http://t.co/ihujwJUBbX +09/11/2015,Politicians,@LincolnChafee,RT @WMUR9_Politics: WATCH LIVE: Conversation with the Candidate w/ @LincolnChafee - http://t.co/7G4wW2NMa8 #wmur2016 #fitn #nhpolitics http… +09/11/2015,Politicians,@LincolnChafee,RT @WMUR9: WATCH LIVE: Conversation with the Candidate w/ @LincolnChafee - http://t.co/JRsbmK1Dx6 #wmur2016 #fitn #nhpolitics http://t.co/C… +09/11/2015,Politicians,@LincolnChafee,"To learn more about my campaign, watch WMUR-TV's Conversation with the Candidate tonight at 7pm ET or view it on http://t.co/7LjlIP7y5O" +09/11/2015,Politicians,@LincolnChafee,Baltimore settles $6.4 million with Freddie Gray family. High costs all around from irresponsibility and injustice. http://t.co/dADhYjLatV +09/10/2015,Politicians,@LincolnChafee,Thank you @CarrollDems for your warm reception tonight in Ossipee! #chafee2016. #nhpolitics http://t.co/Fx8mwRL7xu +09/10/2015,Politicians,@LincolnChafee,"Looking forward to meeting @CarrollDems tonight in Ossipee, NH #NHpolitics #Chafee2016" +09/10/2015,Politicians,@LincolnChafee,".@POTUS must lead the charge to strengthen intl. institutions & address world humanitarian crises, and end Syrian war http://t.co/VWzT1Alt34" +09/10/2015,Politicians,@LincolnChafee,Meeting with the Keene Sentinel Editorial Board today in NH. #chafee2016 #nhpolitics http://t.co/sEBnBICqBO +09/10/2015,Politicians,@LincolnChafee,"Solving the refugee crisis: treating the source is more than ending conflict, it's addressing climate change http://t.co/C89coWBEKr" +09/10/2015,Politicians,@LincolnChafee,I support raising min. wage but we need more debate on a tax code that better helps low wage workers. #GetGrounded http://t.co/dSzPC7oDKp +09/09/2015,Politicians,@LincolnChafee,"Ready to meet Democrats in Sandown, NH #chafee2016 #nhpolitics http://t.co/SBsjzpksNz" +09/09/2015,Politicians,@LincolnChafee,Hear my plan for Prosperity through Peace at @rcdcnh Presidential Candidate Forum at Sandown Town Hall 7pm tonight. #nhpolitics #chafee2016 +09/09/2015,Politicians,@LincolnChafee,Republicans try once again to undermine American leadership internationally & endanger the whole world. #Chafee2016 http://t.co/0XyxYO1yyb +09/09/2015,Politicians,@LincolnChafee,I approve. Merkel calls for mandatory but fair quotas for refugee resettlement. This burden rests with us all. http://t.co/zy1sbNR8rc +09/09/2015,Politicians,@LincolnChafee,Don't like widening gulf with Russia re: Syrian war. @Potus and Putin should talk. #GetGrounded #chafee2016 http://t.co/qMqSBPxrW4 +09/08/2015,Politicians,@LincolnChafee,"Colin Powell speaks sense about #irandeal. Verification, not trust. Reagan said ""trust but verify"" w/ Soviet Union. http://t.co/FV0DQ7R1Vi" +09/08/2015,Politicians,@LincolnChafee,“@Davos: The case for fusion energy http://t.co/Z2q3MxF8Jx http://t.co/CbtxGZaZey”We must explore all energy to save world for our children +09/08/2015,Politicians,@LincolnChafee,"We should spend our remaining carbon budget on transitioning to a clean economy, not continuing our wasteful one. http://t.co/m1k3hOLyD7" +09/08/2015,Politicians,@LincolnChafee,Now Pakistan and Brits are killing people with drones. What will this genie do out of the bottle?#GetGrounded http://t.co/br8avy1IxU +09/07/2015,Politicians,@LincolnChafee,Looking forward to speaking with @NHDems this afternoon at the Annual Labor Day BBQ in Amherst. #Chafee2016 #nhpolitics +09/07/2015,Politicians,@LincolnChafee,Thank you NH @AFLCIO for all of the good work you do today and every day! #chafee2016 #nhpolitics http://t.co/YYhfkmm9KT +09/07/2015,Politicians,@LincolnChafee,Honoring American workers on this Labor Day 2015 and celebrating with NH@AFL-CIO at annual breakfast in Manchester. #GetGrounded #chafee2016 +09/06/2015,Politicians,@LincolnChafee,Hope @JohnKerry & Russians can get on the same page w/Syria. Need their help to end that war. #GetGrounded#chafee2016 http://t.co/enpjNRnfdR +09/05/2015,Politicians,@LincolnChafee,Iraq War started chain of events leading to refugee crisis. Will Cheney neocons apologize for their tragic mistake? #GetGrounded#chafee2016 +09/04/2015,Politicians,@LincolnChafee,Playing blame game does not produce results. Solution to the refugee crisis requires collective action & cooperation. http://t.co/IQAqZqmVqB +09/04/2015,Politicians,@LincolnChafee,"How can we improve government transparency and accountability, with low cost? Yelp might help. #chafee2016 http://t.co/cCQ5QXkWIW" +09/04/2015,Politicians,@LincolnChafee,"As Russia grapples with energy independence and economic woes, the success of its future relies on peace, diplomacy http://t.co/q2wc1LXDiP" +09/04/2015,Politicians,@LincolnChafee,Years ago govmt officials stopped black students from entering white schools. Now they stop gay people from marriage.#GetGrounded#chafee2016 +09/03/2015,Politicians,@LincolnChafee,Gulf Countries should seize diplomatic opportunity presented by#irandeal; proxy wars can't be alternative.#chafee2016 http://t.co/SSomChzUPP +09/03/2015,Politicians,@LincolnChafee,"If we truly want to prevent radicalization to violence, we need to stop yelling every time. No more #neoconkoolaid http://t.co/q1N6r5a03F" +09/03/2015,Politicians,@LincolnChafee,"UN says Mid East wars costing a generation of children their schooling. Chaos, heartbreak & Cheney won't apologize. http://t.co/P2qag25yyg" +09/02/2015,Politicians,@LincolnChafee,"Turkey: jailing any journalists, not just Americans, erodes democratic legitimacy & incites voiceless to violence. http://t.co/hIektQkx1L" +09/02/2015,Politicians,@LincolnChafee,"Fruits of engagement will soon bloom w/#Cuba, & their youth will be better equipped to contribute to world economy http://t.co/6ZS9UEPwyx" +09/02/2015,Politicians,@LincolnChafee,RT @WMUR9: .@LincolnChafee joins @JoshMcElveen for Conversation with the Candidate to air Sept. 11 #nhpolitics #fitn #wmur2016 http://t.co/… +09/02/2015,Politicians,@LincolnChafee,RT @WMUR9_Politics: .@LincolnChafee joins @JoshMcElveen for Conversation with the Candidate to air Sept. 11 #nhpolitics #fitn #wmur2016 htt… +09/02/2015,Politicians,@LincolnChafee,In Manchester taping A Conversation with the Candidate to air Sept.11 at 7pm ET on WMUR-TV & http://t.co/7LjlIP7y5O http://t.co/gOzBXpFAoR +09/02/2015,Politicians,@LincolnChafee,@Pontifex stance re: Holy Year of Mercy emphasizes the compassion and empathy integral in addressing women's issues http://t.co/Lq7LHuNnuR +09/02/2015,Politicians,@LincolnChafee,The @GOP attack on #PlannedParenthood funding is an assault on poor people. Again. @PPFA #GetGrounded #chafee2016 http://t.co/OIdxtzlCFb +09/01/2015,Politicians,@LincolnChafee,"Racial discrimination in civic participation shames our democracy, be it voting or serving on juries. Time to act. http://t.co/7i9smw3bob" +06/25/2018,Politicians,@JimWebbUSA,Some insight into cotton-picking and my heritage: My Cotton-Pickin Mama https://t.co/QOqt4L7t1o +11/22/2017,Politicians,@JimWebbUSA,RT @POLITICOPro: Former Democratic senator @JimWebbUSA tapped to lead @DeptVetAffairs education panel. More from @mstratford: https://t.co/… +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""I'm comfortable with my vote. My vote is private to me...I did not endorse Hillary Clinton."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: Jim Webb on Trump: ""This is an attempt to pull different types of Republicans into the system"" to payback the voters who…" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: ""They're looking toward 2018 and they don't have a message."" - @JimWebbUSA on the Democratic party. #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""The Democratic party...has moved very far to the left."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""The message that has been shaped by the Democratic party has been based on identity politics."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA to the Democrats: ""You've lost white working people. You've lost flyover land."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA:""There is an aristocracy that pervades American politics."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: This morning on #MTP: @SenSanders, @JimWebbUSA, @greta, @PatMcCroryNC, @Eugene_Robinson & @KattyKayBBC" +01/20/2017,Politicians,@JimWebbUSA,Trump’s electoral base & genuine status as a political outsider positions him to bring two much-needed adjustments: https://t.co/wsUTWxbEh1 +12/20/2016,Politicians,@JimWebbUSA,Bill Clinton reminds media that he won by a “landslide” in electoral college. Let’s remember he won only 43 percent of the popular vote. +12/15/2016,Politicians,@JimWebbUSA,https://t.co/B65D6UdrV9 via @12WCV & @IJRopinion +12/02/2016,Politicians,@JimWebbUSA,"RT @FDRLST: Jim Webb Addresses America's Elites, Trump, And Foreign Policy https://t.co/BWh8ygswfy" +04/27/2016,Politicians,@JimWebbUSA,The United States must step up to this challenge. The future stability of East Asia depends on it. https://t.co/TtGXw9kk8H +04/25/2016,Politicians,@JimWebbUSA,We can celebrate Harriet Tubman without disparaging Andrew Jackson https://t.co/Fiio3K7cwx #WebbNation https://t.co/gee3ERkET0 +04/25/2016,Politicians,@JimWebbUSA,Was Old Hickory a Monster? https://t.co/Fiio3K7cwx +04/25/2016,Politicians,@JimWebbUSA,"Examining the recent debate about President Andrew Jackson, Jim Webb wrote a piece for Monday's @washingtonpost. We'll share it in the a.m." +03/09/2016,Politicians,@JimWebbUSA,"America’s former CIA chief: ‘If we don’t handle China well, it will be catastrophic’ +https://t.co/8zEMVaEhqI" +03/09/2016,Politicians,@JimWebbUSA,"RT @WebbNation2016: Congratulations to @JimWebbUSA. +Named of the 100 most influential on veterans issues. + +https://t.co/s9DFUfHzyo" +03/06/2016,Politicians,@JimWebbUSA,RIP Nancy Reagan and Pat Conroy. Many fond memories with the Gipper & the Great Santini. +03/06/2016,Politicians,@JimWebbUSA,"Glad @TulsiGabbard spoke up: ""A lot of people warned me against doing what I did...” https://t.co/7ujejsLEhQ" +03/05/2016,Politicians,@JimWebbUSA,"""I will never change these views in order to adapt to a party platform as a way to get nominated for the presidency. "" -Jim 10/20/15" +03/05/2016,Politicians,@JimWebbUSA,The Republican Party Is Shattering by @peggynoonannyc https://t.co/UUg1eSoW1x via @WSJ +03/04/2016,Politicians,@JimWebbUSA,RT @WebbNation2016: Let's correct the record. Too many false headlines. Statement from Senator Webb's account: https://t.co/412GpugEMR +03/04/2016,Politicians,@JimWebbUSA,"RT @MelissaMelimac: @mandosally @politico Media headlines false. He said he would not vote Clinton, but doesn't support any candidate at th…" +03/04/2016,Politicians,@JimWebbUSA,"Sen Jim Webb said he would not vote for Mrs. Clinton, but he does not support any candidate at this point. https://t.co/6ILsBkQie1" +03/04/2016,Politicians,@JimWebbUSA,Senator Webb is on deck on @Morning_Joe on #MSNBC right now. +03/04/2016,Politicians,@JimWebbUSA,RT @Morning_Joe: Coming up... @AriFleischer @JimWebbUSA @chucktodd #morningjoe https://t.co/QWVZjUULT1 +03/03/2016,Politicians,@JimWebbUSA,Slated to appear on @MSNBC's @Morning_Joe tomorrow (Friday) morning at around 7:40 ET. #WebbNation https://t.co/aRBADDSCN7 +02/20/2016,Politicians,@JimWebbUSA,"RT @WebbNation2016: World Day of #SocialJustice +@JimWebbUSA - 1st American journalist to report on Japanese prisons. + +https://t.co/9ddEkqVG…" +02/18/2016,Politicians,@JimWebbUSA,The White House must send a very clear message to China: https://t.co/anNoa6KNK8 +02/13/2016,Politicians,@JimWebbUSA,My condolences to Justice Scalia's family on this sad and unfortunate day. +02/12/2016,Politicians,@JimWebbUSA,A statement from Jim Webb https://t.co/l83qdlBW9f #WebbNation +02/08/2016,Politicians,@JimWebbUSA,Jim Webb will address the World Affairs Council in Dallas Thursday & the Dallas Morning News Editorial Board Friday. https://t.co/c3Q1i58WBv +02/03/2016,Politicians,@JimWebbUSA,China's claim of “indisputable sovereignty” in South China Sea must be vigorously disputed by the US. -Jim https://t.co/lYZT9vbcM6 +01/30/2016,Politicians,@JimWebbUSA,"Jim Webb to address the World Affairs Council of Dallas/Fort Worth, Texas, Feb. 11 https://t.co/mGylBT8W3G @dfwworld https://t.co/GfWnONxitq" +01/19/2016,Politicians,@JimWebbUSA,"Rest easy, Glenn Frey. Peaceful, Easy Feeling. You made my world a far richer place." +01/18/2016,Politicians,@JimWebbUSA,RT @WebbNation2016: #WebbNation #RunJimRun We need a leader who puts country before party. https://t.co/38ZiTfSLmn +01/15/2016,Politicians,@JimWebbUSA,"@rtlehr Sen. Webb is actively engaging w/ many stakeholders every day, examining every obstacle he'd need to overcome in an Independent bid." +01/14/2016,Politicians,@JimWebbUSA,WashPost: The Presidential Debate Commission is readying for a serious 3rd party candidate https://t.co/8Ckoa5gZ9L https://t.co/NLXBKiGb0j +01/13/2016,Politicians,@JimWebbUSA,"If there’s one thing nearly all Americans share, it’s a disgust for our broken two-party system. https://t.co/PuWMzmDqap" +01/13/2016,Politicians,@JimWebbUSA,"#SOTU / #DemDebate +#WebbNation https://t.co/NZB8uLQ3nJ" +01/12/2016,Politicians,@JimWebbUSA,"2007: Sen Webb gave official response to State of the Union. Is what he said still relevant? #SOTU #WebbNation +https://t.co/IvXSEthxjn" +01/11/2016,Politicians,@JimWebbUSA,U.S. must emphasize determination to reject China's claims so to maintain stability in one of most vital regions. https://t.co/ooOiHBA2wz +01/08/2016,Politicians,@JimWebbUSA,RT @SalenaZitoTrib: .@JimWebbUSA moves closer to independent run nets finance chair organizes ballot strategy https://t.co/qQRgNPVOcV http… +01/08/2016,Politicians,@JimWebbUSA,RT @UniPolitica: .@JimWebbUSA is considering a possible independent bid for the presidency after dropping from the Democratic race https://… +01/08/2016,Politicians,@JimWebbUSA,"RT @BillKristol: Re @JimWebbUSA considering independent presidential run, here's @weeklystandard edit from three months ago: https://t.co/x…" +01/07/2016,Politicians,@JimWebbUSA,Frm Draft Biden Finance Dir leads fundraising for Jim Webb’s potential independent candidacy https://t.co/igk5LQOBFx https://t.co/tkxctcyOU4 +01/01/2016,Politicians,@JimWebbUSA,RT @MelissaMelimac: @JimWebbUSA #WebbNation Let's make #2016 the year of the #Independent #InWithJim +12/31/2015,Politicians,@JimWebbUSA,Yet again illuminating the reality that our tax system unfairly favors accumulated wealth. https://t.co/BHVqxMWsCy https://t.co/z10zvjG7aS +12/30/2015,Politicians,@JimWebbUSA,"RT @davemontoya: Let's go @JimWebbUSA! America needs a voice, give us a voice in this election. #webbnation #independentnation #2016 https…" +12/29/2015,Politicians,@JimWebbUSA,"RT @davemontoya: It's time, @JimWebbUSA give the American people an opportunity to know you. Run. We're hungry for an #Independent https://…" +12/28/2015,Politicians,@JimWebbUSA,"RT @timkni: If the election comes down to Clinton vs. Trump, I will vote for @JimWebbUSA whether he is on the ballot or not. https://t.co/…" +12/28/2015,Politicians,@JimWebbUSA,"RT @davemontoya: I'm ready @JimWebbUSA. America needs a new voice, an #Independent voice in the corridors of power. #WEBBNATION #2016 https…" +12/28/2015,Politicians,@JimWebbUSA,RT @Gamgra: @JimWebbUSA Jim Webb was the only Democrat I'd ever vote for - and if matched up against many Repubs I'd still vote for him. #W… +12/27/2015,Politicians,@JimWebbUSA,Video: Webb blasts Hillary Clinton for ‘inept leadership’ on Libya https://t.co/caKQnADUUT #WebbNation +12/27/2015,Politicians,@JimWebbUSA,RT @SalenaZitoTrib: If @JimWebbUSA runs as an independent then we will finally have a true independent candidate & one hell of a race. http… +12/26/2015,Politicians,@JimWebbUSA,"RT @edpolicy: Must-read article examines vicious cycle endured by South's rural poor -""A grim bargain"": https://t.co/bxicQQtovN https://t.c…" +12/26/2015,Politicians,@JimWebbUSA,Hillary Clinton’s failed vision in Libya & the Arab Spring are foreign policy leadership at its worst. https://t.co/NC80rbKLfP +12/26/2015,Politicians,@JimWebbUSA,RT @LAMBDF: #WEBBNATION @JIMWEBBUSA Websites and Social Media (Official and Unofficial) https://t.co/0j6BAmYZ7A via @wordpressdotcom +12/24/2015,Politicians,@JimWebbUSA,Obama's comments show how out of touch this administration & the Democratic Party have become w/ working men & women https://t.co/gopcKhDlhn +12/24/2015,Politicians,@JimWebbUSA,Obama has neglected the plight of working Americans. No wonder Democrats got trounced in the last two midterms. https://t.co/gopcKhDlhn +12/23/2015,Politicians,@JimWebbUSA,#WebbNation going strong https://t.co/I9oUzEzaMe +12/22/2015,Politicians,@JimWebbUSA,Our hearts are heavy as we mourn & honor the six U.S. service members who were killed in Afghanistan Monday. +12/22/2015,Politicians,@JimWebbUSA,We are a country founded not by conquest but by the guarantee of freedom. https://t.co/ifo23gJFo7 || #WebbNation +12/20/2015,Politicians,@JimWebbUSA,"Jim Webb​ on call of duty. #WebbNation +https://t.co/ZJJarqzGCQ" +12/19/2015,Politicians,@JimWebbUSA,@David5Fernandez @dknott409 Sen. Webb is no longer seeking the nomination. He's seriously considering an Independent bid for president. +12/18/2015,Politicians,@JimWebbUSA,Good for Bernie. The DNC is nothing more than an arm for the Clinton campaign. https://t.co/nI0Ua2BPwE +12/18/2015,Politicians,@JimWebbUSA,RallyPoint: Jim Webb's Favorite Hand Gun? https://t.co/G4uBjvqHfa via @RallyPoint +12/18/2015,Politicians,@JimWebbUSA,RT @tmills43: https://t.co/ekMfZ1Czge Who was leading on drug policy reform? Criminal Justice reform? @JimWebbUSA Media ignored Jim's vi… +12/18/2015,Politicians,@JimWebbUSA,@guitarplayer232 @1_LovelyBitch @BernieSanders Senator Webb is still a candidate for president. He isn't seeking the Democrat nomination. +12/16/2015,Politicians,@JimWebbUSA,"#WebbNation +https://t.co/RtPImgXaUr https://t.co/Exxv4ffMvC" +12/16/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: NBC/WSJ Poll: 70% believe US is headed in wrong direction. Want a different kind of leadership approach than Obama #Elec… +12/14/2015,Politicians,@JimWebbUSA,@wolfangagua Senator Webb has supported nuclear energy. +12/14/2015,Politicians,@JimWebbUSA,"President doesnt have power to commit US to ""legally binding” agreement. Wrong on Iran & TPP https://t.co/XU76svY48S https://t.co/AHBFW7NyI6" +12/13/2015,Politicians,@JimWebbUSA,@CapeCodGunny Still a candidate. Not seeking a party nomination. Looking at every challenge in considering an independent bid. +12/13/2015,Politicians,@JimWebbUSA,"An introduction to #WebbNation +https://t.co/HO6VXguaiX" +12/13/2015,Politicians,@JimWebbUSA,RT @AleyMags: Come on @JimWebbUSA. We need someone to stop these wars of hate. I can't think of anyone better to fight for peace. +12/12/2015,Politicians,@JimWebbUSA,"@parenthetical Sen Webb still a candidate for POTUS. He's not running for a nomination, but he's still in it, looking @ an Independent bid." +12/11/2015,Politicians,@JimWebbUSA,"RT @tmills43: https://t.co/U6CFJiPGNi ""Take care of your people."" This statement is the epitome of @JimWebbUSA 's lifetime of work." +12/11/2015,Politicians,@JimWebbUSA,"RT @PTWebb1122: As I recall, @JimWebbUSA ONLY participant 1st Dem debate to mention cybersecurity as national security priority. https://t.…" +12/11/2015,Politicians,@JimWebbUSA,".@latimes reports #MiddleClass families, ""pillar of the American dream"", no longer majority https://t.co/apxwhzomae https://t.co/5ZbzfjN435" +12/10/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: The middle class now below 50%. People are struggling. We need @JimWebbUSA for President. #Election2016 https://t.co/aEM… +12/10/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: If we are at war, need a commander in chief. +Define US interests +Develop strategy +Build team +Implement +@JimWebbUSA + https…" +12/09/2015,Politicians,@JimWebbUSA,"RT @Gammalad: @JimWebbUSA The more I see the mess that is this election, the more I lean to lending my support to you." +12/09/2015,Politicians,@JimWebbUSA,"#WebbNation supporters are strong on Twitter, Facebook & in writing to newspapers in support of Webb for President. https://t.co/gl0o3hOx1E" +12/09/2015,Politicians,@JimWebbUSA,RT @endmoronism: @ForgottenProf @JimWebbUSA Amen! Probably the one candidate with the best prepared background to be President. #PureLeader… +12/09/2015,Politicians,@JimWebbUSA,"RT @osok762: @JimWebbUSA with the drums of war beating, the next president should be a veteran. Wow that pretty much eliminates almost ever…" +12/09/2015,Politicians,@JimWebbUSA,"Your support is deeply appreciated! https://t.co/RtPImgXaUr +#WebbNation https://t.co/NRysL4lVy2" +12/09/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: Wanted: exp public servant w foreign policy & govt exp. Mil serv pref/not reqd. +Integrity a must. +House & plane provided. +…" +12/09/2015,Politicians,@JimWebbUSA,"RT @ForgottenProf: @JimWebbUSA I hope your ready make #Independent run, the #USA might need a viable #Alternative #USA is on the edge of th…" +12/08/2015,Politicians,@JimWebbUSA,An ideological divide | Warwick Beacon #WebbNation https://t.co/cBuCfVgFAa +12/08/2015,Politicians,@JimWebbUSA,RT @jesselaymen: @JimWebbUSA So far you are the only candidate reaching out to all Americans and not just certain groups of Americans. +12/08/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: Neither party has offered a serious, trustworthy candidate w/foreign policy, security experience. + +Run @JimWebbUSA Run +@Dr…" +12/08/2015,Politicians,@JimWebbUSA,"RT @Semper_Fi_79: If DNC & RNC hopefuls sound like unwanted extremes, why not take a look @JimWebbUSA who understands the intricacies *real…" +12/08/2015,Politicians,@JimWebbUSA,RT @benscottwheeler: .@JimWebbUSA really enjoyed your foreign policy talk at @CFR_org it's a shame most politicians don't have as nuanced a… +12/07/2015,Politicians,@JimWebbUSA,@JustABonobo Senator Webb is still running for president but is no longer seeking a party nomination. He is considering an Independent bid. +12/07/2015,Politicians,@JimWebbUSA,"""A date which will live in infamy"" +#PearlHarbor attacked December 7, 1941 +Over 2,000 Americans killed. +#NeverForget https://t.co/M2JVY9JRdY" +12/07/2015,Politicians,@JimWebbUSA,Agree w/@David_Gergen. Not looking for a father in chief. Looking for a commander in chief. #ObamaSpeech +12/06/2015,Politicians,@JimWebbUSA,"RT @tmills43: With the national security questions we currently face, https://t.co/nTogLXPTVQ is a MUST READ @JimWebbUSA on point, as usua…" +12/05/2015,Politicians,@JimWebbUSA,"RT @amberpages_g: @TBro_6and12 @JimWebbUSA Gate's Op-Ed describes, but does not name Jim Webb. I don't know who else is running that it des…" +12/05/2015,Politicians,@JimWebbUSA,"RT @_TheRevelator: @Communism_Kills IMO, @JimWebbUSA has the most logical, level-headed, non-partisan views of any candidate out there. He'…" +12/05/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: “@JimWebbUSA: Op-ed: The kind of president we need https://t.co/cpTE3vUtUp” +Wise words from Bob Gates. A great public serv…" +12/04/2015,Politicians,@JimWebbUSA,Op-ed: The kind of president we need https://t.co/o7qHRR2qPK +12/04/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: The kind of president we need https://t.co/OWq0KyFwQm @JimWebbUSA #WebbNation #RunJimRun +12/04/2015,Politicians,@JimWebbUSA,RT @tmills43: https://t.co/dNjBBBF4g1 @JimWebbUSA using some good humor with serious policy proposals. https://t.co/irBZMk01dX. Donate w… +12/04/2015,Politicians,@JimWebbUSA,RT @BlueDogPatriot: Vote for @JimWebbUSA #BlueDogDemocrat #RestoreAmerica #Veterans https://t.co/FC5uibbL1y +12/03/2015,Politicians,@JimWebbUSA,"I warned about strategic blunder of so-called Arab Spring, particularly military intervention in Libya. Predictably https://t.co/fFAYlseAjo" +12/01/2015,Politicians,@JimWebbUSA,I warned in ’09 Obama can’t commit U.S. to “legally binding” agreement on climate change w/o Congress's consent. https://t.co/KH2GGVWfaT +12/01/2015,Politicians,@JimWebbUSA,How a Jim Webb independent presidential bid could actually matter (hint: Virginia) https://t.co/NXHPvNXXXx #WebbNation +11/30/2015,Politicians,@JimWebbUSA,"""There is nothing wrong every once in a while with saying the parties are not responding to a rising sentiment..."" https://t.co/0hxtBHX3AY" +11/29/2015,Politicians,@JimWebbUSA,"Treat Drugs Like Cigarettes -- Not As A Crime #WebbNation +https://t.co/xclqcuckju" +11/28/2015,Politicians,@JimWebbUSA,"""We the People"" #WebbNation +https://t.co/7XwPGt9scc" +11/27/2015,Politicians,@JimWebbUSA,"All about Jim Webb. #WebbNation +https://t.co/jwW7vA7KvP" +11/26/2015,Politicians,@JimWebbUSA,"Happy Thanksgiving, #WebbNation. https://t.co/PQN68ROhzy" +11/26/2015,Politicians,@JimWebbUSA,"RT @DraftWebb2016: On behalf of all of us at Draft Webb 2016, we hope that everyone has a very Happy Thanksgiving! https://t.co/HsU12yCNae" +11/25/2015,Politicians,@JimWebbUSA,"RT @hunter_ena: @JimWebbUSA @colbertlateshow I saw that and #TedKoppel said, what I have been saying all along, we need #JimWebb2016" +11/25/2015,Politicians,@JimWebbUSA,"Ted Koppel was on @colbertlateshow this week, discussing the vulnerability of our nation's power grids. https://t.co/ZAzwR4ISQx" +11/25/2015,Politicians,@JimWebbUSA,"RT @Semper_Fi_79: Our country is more divided than ever, do we really need partisan politics as usual? Or do we need someone to #uniteUS? @…" +11/24/2015,Politicians,@JimWebbUSA,RT @averageohvoter: THUNDERCLAP!!! - #RUNJIMRUN https://t.co/xZbbdqrkYs +11/24/2015,Politicians,@JimWebbUSA,"#WebbNation supporters have a ""Thunderclap"" to urge an Independent presidency run. Click through to lend a tweet: https://t.co/6d9OwYO8YS" +11/24/2015,Politicians,@JimWebbUSA,RT @retlt592: @JimWebbUSA @rkuttner PLEASE RUN! +11/24/2015,Politicians,@JimWebbUSA,RT @Scott96735321: @JimWebbUSA We NEED Jim Webb. +11/24/2015,Politicians,@JimWebbUSA,The Quiet Desperation of America’s Working People https://t.co/3AEWkV0Z7w by @rkuttner https://t.co/4lnHTvzloU +11/23/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: Help us get @JimWebbUSA to run as an independent for President in 2016 #WebbNation #politics https://t.co/H1xrqcTLbt +11/22/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: I just supported Ask Jim Webb to run as an (I) on @ThunderclapIt // @draftjimwebb2 https://t.co/NSsCrxt6eC @JImWebbUSA … +11/22/2015,Politicians,@JimWebbUSA,"RT @Wildstar1904: @UlsterUSA @bobbyw24 @Press_Dan @JimWebbUSA wld bring honor, integrity, & leadership to the WH & restore the balance of f…" +11/22/2015,Politicians,@JimWebbUSA,@TimbrookPhD @bobbyw24 Senator Webb has written about why: https://t.co/NVV39v8tE1 +11/22/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: @IsabelleAliciaa @JimWebbUSA Help us get a Thunderclap for Jim! https://t.co/lPZpTOD6bb +11/22/2015,Politicians,@JimWebbUSA,"Thank you for your support! #grateful +https://t.co/e5YzAbh58T https://t.co/yXPRLjWzbu" +11/21/2015,Politicians,@JimWebbUSA,#WebbNation needs your assistance in getting a #ThunderClap going. #Independent https://t.co/PaeYzdq0OY +11/20/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: @JimWebbUSA #webbnation https://t.co/lPZpTOD6bb +11/20/2015,Politicians,@JimWebbUSA,RT @BradWilliamsBDM: @JimWebbUSA We need someone who can keep his head when those about him are losing (or selling) theirs. +11/20/2015,Politicians,@JimWebbUSA,RT @ColoradoTD: @JimWebbUSA Captain the qualities you exhibited as a Marine combat officer are the qualities we need in the leader of the f… +11/20/2015,Politicians,@JimWebbUSA,@ScottCLocke @pbralick Sen. Webb is running for president but not in the Democratic Party. He is exploring an independent bid. +11/20/2015,Politicians,@JimWebbUSA,RT @pbralick: @JimWebbUSA you have best credentials and background to keep USA safe. Hope you run #politics +11/20/2015,Politicians,@JimWebbUSA,"@WakeUp2Politics @darkenator Sen. Webb left the race for Democrat nomination, but he's still a candidate for president, considering options." +11/20/2015,Politicians,@JimWebbUSA,@jesselaymen Very sorry for your loss and grateful for your uncle's service. Thank you for the message. +11/20/2015,Politicians,@JimWebbUSA,"https://t.co/RtPImgXaUr +#WebbNation https://t.co/snEHCJBasU" +11/20/2015,Politicians,@JimWebbUSA,RT @essatu: @JimWebbUSA 2016 election needs him more than ever #jimwebb2016 #jimwebb +11/20/2015,Politicians,@JimWebbUSA,RT @peterogburn: Proud @JimWebbUSA supporter https://t.co/JjGriDrhS6 +11/19/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: I just supported Ask Jim Webb to run as an (I) on @ThunderclapIt // @draftjimwebb2 https://t.co/NSsCrxt6eC @JimWebbUSA … +11/19/2015,Politicians,@JimWebbUSA,RT @eric_barnard4: @JimWebbUSA it was honor to meet you. You'll have my vote! From Vietnam to the White House #OnlyInAmerica https://t.co/w… +11/19/2015,Politicians,@JimWebbUSA,RT @Wildstar1904: @JimWebbUSA 1 of the many reasons I'm all n for #WebbNation. I forwarded that to all my fellow Vet buddies. Run Jim Run! … +11/19/2015,Politicians,@JimWebbUSA,@YumaWxMan @Treezilla Thank you both! +11/19/2015,Politicians,@JimWebbUSA,#WebbNation having some fun. https://t.co/NkWaNR18aL +11/19/2015,Politicians,@JimWebbUSA,RT @Treezilla: @JimWebbUSA Today is 1st time EVER I've donated to a political campaign.Hope 2016 is 1st I vote FOR someone rather than agai… +11/18/2015,Politicians,@JimWebbUSA,RT @realjamesball: @JimWebbUSA I keep trying to imagine a president who is right for these times in my head. I keep coming back to you. Ind… +11/18/2015,Politicians,@JimWebbUSA,"""The Most Presidential Thing Any Candidate Has Ever Said"" +Exclusive interview https://t.co/tpgT1paP5u +#WebbNation #Warriors4Webb" +11/17/2015,Politicians,@JimWebbUSA,"Virginia Poll Looks at Potential Impact of Jim Webb Running as Independent +https://t.co/Oplggw2p4n #WebbNation https://t.co/SToOgjjbYv" +11/16/2015,Politicians,@JimWebbUSA,"@Occidentaljihad @AmateurPolSc @USMC Sen. Webb remains a presidential candidate, but he is no longer running for the Democratic nomination." +11/15/2015,Politicians,@JimWebbUSA,"Mrs. Clinton disparaged integrity of @USMC, claiming wrongly turned away from serving. Tell us when, where & w/whom. https://t.co/NH8SZTk5gw" +11/15/2015,Politicians,@JimWebbUSA,RT @gcrys: Thanks @JimWebbUSA for raising the consciousness on the development gap in our own country. https://t.co/uS4S0Lx2Hu +11/15/2015,Politicians,@JimWebbUSA,Those in France & elsewhere should be able to feel safe & free from the forces of terrorism. https://t.co/jXLrYwQpiM https://t.co/SQL1jPw4fG +11/15/2015,Politicians,@JimWebbUSA,Hong and I offer our prayers and deepest sympathy for the families & friends of each victim of the attacks in Paris. https://t.co/jXLrYwQpiM +11/15/2015,Politicians,@JimWebbUSA,RT @JoshScholer: It's a shame @JimWebbUSA isn't up there. Would be safe to say he would have probably the most sensible plan on foreign pol… +11/15/2015,Politicians,@JimWebbUSA,Our newsrooms filled w/people overwhelmingly from elites who displayed little sensitivity to realities facing many. https://t.co/zlzScsT0Vq +11/14/2015,Politicians,@JimWebbUSA,This article is emblematic of what keeps motivating me despite the very long odds. https://t.co/zlzScsT0Vq https://t.co/Z7vLKWZBi0 +11/13/2015,Politicians,@JimWebbUSA,Watching closely as national media begins turning its attention to #Asia in the coming week. https://t.co/qSIOC3IMWC https://t.co/N4UQTgX2Xx +11/12/2015,Politicians,@JimWebbUSA,"#TBT: Senator Wins Release of US Prisoner in Myanmar +#ThrowbackThursday from Aug 15, 2009 #WebbNation +https://t.co/4stYgt2aaH" +11/12/2015,Politicians,@JimWebbUSA,"RT @LanceCiepiela: @JimWebbUSA @jaketapper ""Once a marine always a marine"" - thank you for your service https://t.co/RNHz0qKysK #USMC https…" +11/11/2015,Politicians,@JimWebbUSA,@jaketapper Thank you for all you do for veterans. You're making a real difference. +11/11/2015,Politicians,@JimWebbUSA,"RT @simonschuster: .@JimWebbUSA on his life in the military, watch https://t.co/GuquZKrMOX. Many thanks to him & all veterans for their ser…" +11/11/2015,Politicians,@JimWebbUSA,"A special #thankyou & wishes for a meaningful Veterans Day to all who have served & those still serving. #ThankAVet +https://t.co/gNVALleOKY" +11/10/2015,Politicians,@JimWebbUSA,RT @NavalAcademy: Happy 240th birthday to the U.S. Marine Corps! @USMC #oorah #SemperFi https://t.co/kS8vR7S9Vg +11/10/2015,Politicians,@JimWebbUSA,Happy 240th birthday to my fellow Marines in every clime & place. #SemperFi #USMCBirthday +11/09/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: If its Hillary v Trump Carson Cruz Rubio, moderates will consider @JimWebbUSA. Will enough $$$ support? #WebbNation https…" +11/09/2015,Politicians,@JimWebbUSA,RT @LAMBDF: #MotivationMonday @JimWebbUSA #WebbNation #WIN2016 https://t.co/kdZuS6dlQY +11/08/2015,Politicians,@JimWebbUSA,"Discussing economic fairness, social justice, #veterans, true stewardship & strong leadership. ( 2008) #WebbNation +https://t.co/36HilHcbuP" +11/07/2015,Politicians,@JimWebbUSA,#WebbNation is roaring... https://t.co/584IBtmSG3 +11/07/2015,Politicians,@JimWebbUSA,@SharonA1225 @Sheikhsquad Sen Webb still officially candidate for president. He isnt running for Democratic nomination. Consider next step. +11/07/2015,Politicians,@JimWebbUSA,Notable @NavalAcademy graduate: https://t.co/4hFgYDJpRn #WebbNation #Service #GoNavy #Warriors4Webb +11/07/2015,Politicians,@JimWebbUSA,RT @SharonA1225: @JimWebbUSA Hoping you will run on independent ticket. Registered Republican but dont like either party. Haven't removed y… +11/06/2015,Politicians,@JimWebbUSA,RT @jackiesalit: @JimWebbUSA hits nail on head in https://t.co/UXs0YWdaF0. Americans dislike both parties while political class dismisses i… +11/06/2015,Politicians,@JimWebbUSA,RT @half_witt: Reads like an endorsement for @JimWebbUSA. https://t.co/aoiCgdgkcz +11/06/2015,Politicians,@JimWebbUSA,RT @YumaWxMan: @CNNPolitics @JimWebbUSA I sure hope so. Need his leadership an sensability opposed yo big money extreme party political pop… +11/06/2015,Politicians,@JimWebbUSA,"RT @CupofLiberal: @JimWebbUSA Please, for the sake of my future children, run as an independent. We need you in our future, whether as POTU…" +11/06/2015,Politicians,@JimWebbUSA,"RT @jsaxhaug: I'm an Army guy, but i'll proudly give an Oorah for an independent @JimWebbUSA run at the presidency. Sign me up, Jim! #WebbN…" +11/06/2015,Politicians,@JimWebbUSA,@Kyredwood @CNNPolitics Senator Webb last week outlined why he is considering this: https://t.co/NVV39v8tE1. +11/06/2015,Politicians,@JimWebbUSA,"RT @PAPADOO: @ColmesRadio @JimWebbUSA @RonPaul @AlanColmes Alan Colmes We Miss You on TV !! Jim Webb, We're With Jim Webb All The Way!!" +11/06/2015,Politicians,@JimWebbUSA,@patcamunez https://t.co/NVV39v8tE1 +11/06/2015,Politicians,@JimWebbUSA,@swimmingturtle7 @CNNPolitics @cnnbrk Senator Webb wrote this last week explaining why he's considering: https://t.co/NVV39v8tE1 +11/06/2015,Politicians,@JimWebbUSA,RT @CNNPolitics: .@JimWebbUSA is eyeing a decision on whether to run as an independent by the new year https://t.co/3r1BBEacp1 https://t.co… +11/06/2015,Politicians,@JimWebbUSA,"RT @PAPADOO: @JimWebbUSA More Than Ever, America Needs The Honesty, Integrity & The Intellectual Prowess & The Military Sense to Protect Ou…" +11/05/2015,Politicians,@JimWebbUSA,"RT @LAMBDF: @JimWebbUSA #StressIn5Words #WEBBNATION Here are five outstanding words! +Peace +Opportunity +Trust +Unity +Stability https://t.co/n…" +11/05/2015,Politicians,@JimWebbUSA,"#TBT: Webb’s intellectualism ensures he'll do something that professional politicians hardly ever do... https://t.co/KUdwyh4YdS +#WebbNation" +11/05/2015,Politicians,@JimWebbUSA,"RT @LAMBDF: #WEBBNATION @JIMWEBBUSA Jim Webb's Views on US Foreign Policy | Jim Webb Discussion Forum +https://t.co/cYSZ90Gxze" +11/04/2015,Politicians,@JimWebbUSA,RT @jesselaymen: @JimWebbUSA Jim Webb's gun rights views are common sense! https://t.co/yWacgJgzho +11/04/2015,Politicians,@JimWebbUSA,New poll in #Iowa by Public Policy Polling shows Jim currently getting 9% of the vote in a general election as an #Independent. #WebbNation +11/04/2015,Politicians,@JimWebbUSA,"What are your views on gun rights? +#2A #WebbNation +https://t.co/FbgoB6RtBP" +07/02/2018,Politicians,@ScottWalker,"Had a great Saturday up in Maple, WI at their dairy breakfast. Good to be out standing up for our farmers and their… https://t.co/07BNgS0U6Y" +07/02/2018,Politicians,@ScottWalker,Enjoyed visiting Eau Claire today to talk about how the child tax rebate is helping hard-working Wisconsin families… https://t.co/4mymLLW9B2 +07/02/2018,Politicians,@ScottWalker,RT @realDonaldTrump: The new plant being built by Foxconn in Wisconsin is incredible. Congratulations to the people of Wisconsin and to Gov… +07/02/2018,Politicians,@ScottWalker,TODAY is the last day to sign up for the $100-per-child tax rebate. Be sure to claim yours before the deadline at… https://t.co/40WSrhr1i5 +07/02/2018,Politicians,@ScottWalker,"""Thousands enjoy Kenosha's annual Civic Veterans Parade"" https://t.co/nA2j5McllG" +07/02/2018,Politicians,@ScottWalker,Stopped in Wausau to encourage more folks to sign up for the $100-per-child tax rebate on the last day today. Wisco… https://t.co/4HEp3xDPx4 +07/02/2018,Politicians,@ScottWalker,As I travel the state I’ve heard from plenty of people about how they’re using their child tax rebate. How are you using it? +07/02/2018,Politicians,@ScottWalker,Playlist from the concert last night at @Summerfest! https://t.co/OU377Myx4f +07/02/2018,Politicians,@ScottWalker,"Over half a million families have signed up for the $100-per-child tax rebate, and today is the last day! We’re ret… https://t.co/uU0GsusQoO" +07/02/2018,Politicians,@ScottWalker,Outstanding Pat Benatar concert at @Summerfest last night! https://t.co/o6d2BXupaH +07/02/2018,Politicians,@ScottWalker,Cool bicycle races today in Wauwatosa. https://t.co/LFkHSjDEPk +07/01/2018,Politicians,@ScottWalker,Had a fun afternoon in Kenosha honoring Wisconsin’s veterans and celebrating our freedom at the Kenosha Civic Veter… https://t.co/NTVqFGnwHO +07/01/2018,Politicians,@ScottWalker,Check out this video we took right after a really hot parade today with some amazing volunteers in Kenosha County!!… https://t.co/7SjylekGNC +07/01/2018,Politicians,@ScottWalker,"We broke ground on the Foxconn investment last Thurs – 13,000 good-paying jobs with an average salary of $53, 875 p… https://t.co/P3mgSLYbjO" +07/01/2018,Politicians,@ScottWalker,https://t.co/qdvbqScyMf +07/01/2018,Politicians,@ScottWalker,“Technologies on display at Foxconn event will help drive Wisconsin’s economy” https://t.co/8YRMb5lbwJ +07/01/2018,Politicians,@ScottWalker,"Wisconsin’s dairy industry provides jobs and stimulates our economy. Enjoyed the Chequamegon Dairy Day in Maple, WI… https://t.co/JVoGfco4x3" +06/30/2018,Politicians,@ScottWalker,Thursday was quite a day for Wisconsin workers and their families all across the state. We broke ground on the larg… https://t.co/7qiOOh4gIF +06/30/2018,Politicians,@ScottWalker,"Today is the last day of the quarter, which is one of the most important milestones in our campaign. As we head int… https://t.co/ywLDKqnaOe" +06/30/2018,Politicians,@ScottWalker,Obama’s group. Holder. Soros. Steyer. AFSMCE. NEA. SEIU. Planned Parenthood. ACLU. DGA. DNC. They are all coming fo… https://t.co/Wt3IVHXYHc +06/30/2018,Politicians,@ScottWalker,.@Brewers Good luck today against the Reds. Congrats on continuing to have the best record in the NL #ThisIsMyCrew https://t.co/pYSFO0uLFS +06/30/2018,Politicians,@ScottWalker,"Special thanks to the TePoel Family, the Chequamegon Dairy Association and Dairy Farmers of Wisconsin for hosting a… https://t.co/45WiNPRJ0T" +06/30/2018,Politicians,@ScottWalker,We need your help before the deadline at the end of today! National Democrats and their big government special inte… https://t.co/4Ar8Pca05B +06/30/2018,Politicians,@ScottWalker,"RT @wisgop: Valerie is our @wisgop Volunteer of the Week! + +Valerie helps out in our Eau Claire office and loves the experience: ""it's a lot…" +06/30/2018,Politicians,@ScottWalker,“Foxconn Bonus comes to Green Bay!” https://t.co/hilCqzmJjY https://t.co/ycPwPXs0RH +06/30/2018,Politicians,@ScottWalker,"“Foxconn to buy WaterMark building in downtown Green Bay” +https://t.co/GxZFZWWPwr" +06/30/2018,Politicians,@ScottWalker,“Foxconn buying WaterMark building for Green Bay innovation center” https://t.co/fBxuHoK2Xy +06/30/2018,Politicians,@ScottWalker,"Happy Birthday to my son, @MattWalkerWI! He was born on the 1st day of @Summerfest 1994 -- just after the Big Bang… https://t.co/CAbNNzVnRY" +06/30/2018,Politicians,@ScottWalker,“Foxconn Comes to Green Bay” https://t.co/OXtpAfpEBD +06/30/2018,Politicians,@ScottWalker,The Left will decide how much to spend against us based on what we raise by midnight tonight. Pls donate today:… https://t.co/3VHoheHgZI +06/30/2018,Politicians,@ScottWalker,Obama’s political machine is targeting us. Eric Holder’s too. Add in liberal billionaires George Soros & Tom Steyer… https://t.co/KW9huNByLM +06/29/2018,Politicians,@ScottWalker,"“Foxconn buys Watermark building, plans innovation center in downtown Green Bay” https://t.co/x9F60unInx" +06/29/2018,Politicians,@ScottWalker,Honored to join Mary and the kids for the dedication of Ted Kanavas Field at Brookfield East High School. Ted was a… https://t.co/fujUtZpYSp +06/29/2018,Politicians,@ScottWalker,"Foxconn will create at least 13,000 good-paying, family-supporting jobs, and 27 of the 28 companies selected for th… https://t.co/9luMBIRBQm" +06/29/2018,Politicians,@ScottWalker,More great news! Foxconn is creating an Innovation Center in Green Bay to help new startup companies and provide re… https://t.co/mqiG7IooyM +06/29/2018,Politicians,@ScottWalker,"Just as Microsoft transformed the State of Washington, Foxconn will help Wisconsin Win the 21st Century. It will he… https://t.co/JpBSac79BW" +06/29/2018,Politicians,@ScottWalker,Check out how the Foxconn investment is putting Wisconsin first! It’ll involve companies with workers in 60 of Wisc… https://t.co/Gp6vQJwNXK +06/28/2018,Politicians,@ScottWalker,Yet another great project going up in Wisconsin! #FearTheDeer #BuildTheFuture https://t.co/Qc91Gny5ER +06/28/2018,Politicians,@ScottWalker,Wisconsin is working! Today was a great day for Wisconsin’s hard-working families in all corners of the state. We’r… https://t.co/zHsBkS7AjN +06/28/2018,Politicians,@ScottWalker,An independent report shows that Foxconn would add more than $51 billion to the economy of Wisconsin over 15 years.… https://t.co/V2iOzM8FBt +06/28/2018,Politicians,@ScottWalker,"Enjoyed speaking following the Foxconn groundbreaking. This is a historic day for Wisconsin. 13,000 good-paying, fa… https://t.co/jiKye5TuLo" +06/28/2018,Politicians,@ScottWalker,Thanks to the @POTUS for joining as we broke ground for the largest economic development project in Wisconsin histo… https://t.co/VXOr3DvJwh +06/28/2018,Politicians,@ScottWalker,What a great day – we worked to secure the Foxconn commitment to invest in Wisconsin’s workers and help everyone ac… https://t.co/cdnRhpGZLW +06/28/2018,Politicians,@ScottWalker,Exciting news today! We’re breaking ground on Foxconn – the largest single economic development project in the hist… https://t.co/IaWX7k4Ryd +06/28/2018,Politicians,@ScottWalker,An independent report shows that Foxconn will add $51 billion to the Wisconsin economy over the next 15 years. That… https://t.co/VNnC6UTxL9 +06/28/2018,Politicians,@ScottWalker,"RT @GovWalker: In 2011, we declared “Wisconsin is open for business.” Today, we are delivering on that promise in a historic way with the g…" +06/28/2018,Politicians,@ScottWalker,"Wisconsin is working under our leadership – now, we’re working to spur additional economic growth to help hard-work… https://t.co/MlCuKqOZ5I" +06/28/2018,Politicians,@ScottWalker,"In addition, Foxconn has to earn the tax credits. They don’t get the full amount unless they create 13,000 jobs, pa… https://t.co/xlWk5B06Ol" +06/28/2018,Politicians,@ScottWalker,An independent report from the Milwaukee Metropolitan Association of Commerce shows that the project will provide a… https://t.co/V5pIL1iwDt +06/28/2018,Politicians,@ScottWalker,"When fully operational, to put WI first, it’s been estimated that Foxconn will spend about $1.4 billion annually in… https://t.co/0qeIwC7f9e" +06/28/2018,Politicians,@ScottWalker,"Foxconn will provide 13,000 good-paying, family-supporting jobs to Wisconsin through their $10 billion investment t… https://t.co/xCKzrQ7kQn" +06/27/2018,Politicians,@ScottWalker,Remember just a few weeks back when Foxconn announced $100 million in contracts were awarded to 27 Wisconsin subcon… https://t.co/RBvJfi8KPA +06/27/2018,Politicians,@ScottWalker,".@POTUS @realDonaldTrump, typical Wisconsin taxpayer -- 2 parents working and 2 kids at home -- will save $2,508 be… https://t.co/UbJXeDUxLd" +06/27/2018,Politicians,@ScottWalker,Was good to join Air Wisconsin yesterday to announce their new expansion in Appleton! $8 million investment with 80… https://t.co/egohjVx9NR +06/27/2018,Politicians,@ScottWalker,"The Kafka family knows our bold reforms sparked Wisconsin’s comeback! With more bold reform, we can continue to bui… https://t.co/83QDcLTOtu" +06/27/2018,Politicians,@ScottWalker,Big government union bosses were angry when we gave public workers the right to choose. They even tried to recall m… https://t.co/rW9tGQCye5 +06/27/2018,Politicians,@ScottWalker,"Our bold reforms have jumpstarted Wisconsin’s comeback – with more bold reform, we can make sure everyone in our st… https://t.co/8WXsg7SpIf" +06/27/2018,Politicians,@ScottWalker,More people are working now than ever before and unemployment is at an all-time low. Our reforms are helping Wiscon… https://t.co/ZoCsN0qNOQ +06/27/2018,Politicians,@ScottWalker,Wisconsin was ahead of the curve giving public workers the freedom to choose during our 1st year in office. That’s… https://t.co/xmJ9zBuK2l +06/27/2018,Politicians,@ScottWalker,Supreme Court today affirms what we did years ago -- gives public servants the freedom to choose whether they want… https://t.co/BJ2NhtJokx +06/27/2018,Politicians,@ScottWalker,"“Mark R. Hogan: Foxconn’s historic investment in Wisconsin already paying dividends” +https://t.co/4dfHgAR35V" +06/27/2018,Politicians,@ScottWalker,"Foxconn will help create at least 13,000 good-paying, family-supporting jobs! Going forward, our bold reforms will… https://t.co/IdPTEzSeZT" +06/27/2018,Politicians,@ScottWalker,"Nearly 500,000 households have signed up for the child tax rebate. July 2 is the deadline. Sign up today at https://t.co/CJjQ1SR5bi." +06/27/2018,Politicians,@ScottWalker,Wisconsin is America's dairyland -- Wisconsin Cheese Day is about celebrating our state’s dairy industry and the fa… https://t.co/ypGQsK1TiE +06/26/2018,Politicians,@ScottWalker,"As @realDonaldTrump said at the G7, the best answer is no tariffs! I said it again at SelectUSA with Commerce Secre… https://t.co/6Ok7Um5vfr" +06/26/2018,Politicians,@ScottWalker,Air Wisconsin expansion in Appleton will create 80 high-skill careers! https://t.co/gOBCtO53sk +06/26/2018,Politicians,@ScottWalker,Our bold reforms sparked Wisconsin’s comeback! Want to keep our state moving forward and help us share our optimist… https://t.co/Nw8B6KwaSg +06/26/2018,Politicians,@ScottWalker,🚨🚨We need your help to keep WI red! National Democrats and their big government special interests are targeting our… https://t.co/tvUhBbvUGD +06/26/2018,Politicians,@ScottWalker,"What a great day! Air Wisconsin is moving their maintenance operations to Appleton, and building a new, 30,000 sq.… https://t.co/aaRhIfFdNU" +06/26/2018,Politicians,@ScottWalker,“Walker’s latest TV ad features employees of granite company praising his policies” https://t.co/dNdk07Ipja +06/26/2018,Politicians,@ScottWalker,Enjoyed joining County Materials on Friday to discuss how they are taking advantage of this opportunity to grow and create jobs. +06/26/2018,Politicians,@ScottWalker,"Nearly 10,000 construction workers from all over the state and region will be needed to build the new Foxconn eco-center." +06/26/2018,Politicians,@ScottWalker,Foxconn’s state-of-the-art products will be made in the U.S.A. -- proudly in the state of Wisconsin! +06/26/2018,Politicians,@ScottWalker,"At the G7, @POTUS @realDonaldTrump said that no tariffs should be on the table. I said again today that no tariffs… https://t.co/5G0giQQdM3" +06/26/2018,Politicians,@ScottWalker,Cool view in the Miller Beer Caves! https://t.co/9XWlloZme6 +06/26/2018,Politicians,@ScottWalker,"The Washington-based special interest groups, liberal billionaires, and big government union bosses are targeting m… https://t.co/iDZAyAizxt" +06/25/2018,Politicians,@ScottWalker,The Kafka family says our bold reforms jumpstarted Wisconsin’s economy and “absolutely” led to jobs and economic gr… https://t.co/bdQp5ICqO5 +06/25/2018,Politicians,@ScottWalker,The Democrats running for governor will tell you what they are against. We will tell you what we are for! Help us s… https://t.co/m5CGjrK7Bc +06/25/2018,Politicians,@ScottWalker,Had a really great time traveling the state this weekend for some more dairy breakfasts! June Dairy Month really is… https://t.co/AiZjMn2TbU +06/25/2018,Politicians,@ScottWalker,"One week from today (July 2) is the last day to sign up for the Child Tax Rebate. Join more than 475,000 households… https://t.co/6qkEPEpcaD" +06/25/2018,Politicians,@ScottWalker,Want to counter the anger and the hatred of the Left? Help us share our optimistic message and positive plans for t… https://t.co/rLPEiRa7R3 +06/25/2018,Politicians,@ScottWalker,Like good times and rock and roll? Watch this video: https://t.co/NS1P6JbBR2 +06/25/2018,Politicians,@ScottWalker,Enjoyed stopping in Wausau to celebrate #WICheeseDay and award another workforce training grant. We’re standing up… https://t.co/OHm6gzNouv +06/25/2018,Politicians,@ScottWalker,It’s Cheese Day in Wisconsin!!! Eat More Cheese! 🧀 https://t.co/LuU6ep9NQw +06/25/2018,Politicians,@ScottWalker,"Obama’s political group, Eric Holder, George Soros, Tom Steyer, DNC, DGA, ACLU, union bosses, etc. … they are all t… https://t.co/hU8afyObf0" +06/25/2018,Politicians,@ScottWalker,Good to join researchers at UW-Madison to discuss additional ways we can continue to help our dairy farmers.… https://t.co/tHDBnKckgd +06/25/2018,Politicians,@ScottWalker,More people are working now than ever before and unemployment is at an all-time low. Our reforms are helping Wiscon… https://t.co/01wvd3fnw2 +06/24/2018,Politicians,@ScottWalker,"I am a pro-education governor — we balanced our budget and put the state back on track, and we’re investing in our… https://t.co/mpciC6wyuK" +06/24/2018,Politicians,@ScottWalker,"“Scott Walker's big re-election tax cut tout: $8 billion during his time as Wisconsin governor” +https://t.co/roOin8xeI4" +06/24/2018,Politicians,@ScottWalker,"🚨🚨 It’s almost the end of the quarter, which is one of the most important milestones in our campaign. As we head in… https://t.co/WvYWPi4EsI" +06/24/2018,Politicians,@ScottWalker,"RT @journalsentinel: To the parents whose kids have been able to escape low-performing public schools in order to help their children, Walk…" +06/24/2018,Politicians,@ScottWalker,RT @AlexWalkerWI: Fun night in Menomonee Falls with the fam! https://t.co/9lptaHxlvl +06/24/2018,Politicians,@ScottWalker,More ice cream at breakfast on the farm in Marinette County. Mmmm. https://t.co/8Vqb98lsEx +06/24/2018,Politicians,@ScottWalker,Happy to help out at the Marinette County Breakfast on the Farm. Thanks to the Carlson family for hosting us during… https://t.co/Dp6E576Pw0 +06/24/2018,Politicians,@ScottWalker,https://t.co/2dNmFlFjte +06/24/2018,Politicians,@ScottWalker,Sat down with these two great World War II veterans — Harry and Larry — tonight in Menomonee Falls. Thank God for p… https://t.co/ba4stMeG7H +06/23/2018,Politicians,@ScottWalker,Stopped by to see my parents. They are the best! https://t.co/bQsMfzTNIC +06/23/2018,Politicians,@ScottWalker,It is an honor to pay my respects to the family of SSG Krasean Clayborn at funeral services in Milwaukee today. He… https://t.co/nRUexAOvs0 +06/23/2018,Politicians,@ScottWalker,Thank you to the Bratz family for hosting the Racine County Breakfast on the Farm! What a great way to meet Wiscons… https://t.co/hjQng3omAP +06/23/2018,Politicians,@ScottWalker,June is the best because I can eat custard and cheese curds every weekend for breakfast! Happy to serve at Racine C… https://t.co/K9m0FO70mC +06/23/2018,Politicians,@ScottWalker,"We need your help! With all the big government, special interest money that is targeting our state by national Demo… https://t.co/lNPmdZDdSg" +06/23/2018,Politicians,@ScottWalker,What an amazing walk off home run for another @Brewers win!  #ThisIsMyCrew https://t.co/k9NY0OcZGD +06/22/2018,Politicians,@ScottWalker,"With a record investment in our schools, more money for our technical college programs, and a six-year tuition free… https://t.co/N9uUhTuF5k" +06/22/2018,Politicians,@ScottWalker,Good to join County Materials in Marathon today. They were selected as one of the 27 Wisconsin subcontractors and a… https://t.co/UcLXEbht17 +06/22/2018,Politicians,@ScottWalker,"“Racine launches $1.5 million training program for Foxconn construction work” +https://t.co/lGjdnx5Jtd" +06/22/2018,Politicians,@ScottWalker,"Anita, a public school teacher from Racine, supports our bold reforms to empower school districts and invest histor… https://t.co/UJWDvR5ucZ" +06/22/2018,Politicians,@ScottWalker,We’ve returned power to taxpayers and put more money in our classrooms to help students and their families win the… https://t.co/fuIrX5UesH +06/22/2018,Politicians,@ScottWalker,"“Yes, Scott Walker is an 'education governor' for Wisconsin” https://t.co/2NfG68vPkR" +06/22/2018,Politicians,@ScottWalker,"Our goal is to have the highest graduation rate in the nation because, with 2.8% unemployment, we need every studen… https://t.co/x3enH0IK9e" +06/22/2018,Politicians,@ScottWalker,"When I introduced my budget, the state superintendent of public instruction called it: “pro-kid.”" +06/22/2018,Politicians,@ScottWalker,Our budget puts in more funding for mental health services in schools. Anti-bullying efforts too. And lawmakers app… https://t.co/00rB8AdxKQ +06/22/2018,Politicians,@ScottWalker,We doubled youth apprenticeships. Doubled funding for Fab Labs. Increased early college credit. We fully fund acade… https://t.co/M5SmX5wMC9 +06/22/2018,Politicians,@ScottWalker,Our state budget puts more actual dollars into schools than ever before -- an extra $200 per student this past scho… https://t.co/yJTxDXvKQx +06/22/2018,Politicians,@ScottWalker,Our Act 10 reforms allow schools to staff based on merit and pay based on performance. That means they can put the… https://t.co/yAdKzeB566 +06/22/2018,Politicians,@ScottWalker,Our reforms put local school board members back in charge of our schools instead of special interests. +06/22/2018,Politicians,@ScottWalker,Proud to be the Education Governor in Wisconsin. +06/22/2018,Politicians,@ScottWalker,Great to see all these young women working to learn about what it takes to provide real leadership. Programs like B… https://t.co/W1k1d2PRpX +06/21/2018,Politicians,@ScottWalker,"I am a pro-education governor — after balancing our budget and putting the state back on track, we’re now able to i… https://t.co/t8yRkDnfWl" +06/21/2018,Politicians,@ScottWalker,#NationalSelfieDay is a good chance to remember good times with the @Brewers. #ThisIsMyCrew https://t.co/3mxR2labjo +06/21/2018,Politicians,@ScottWalker,"We’re making historic investments in K-12 education, we froze UW system tuition, increased Sparsity Aid for rural c… https://t.co/Ws23P5JnuM" +06/21/2018,Politicians,@ScottWalker,https://t.co/dr1t7WaRs8 +06/21/2018,Politicians,@ScottWalker,#ThisIsMyCrew @Brewers https://t.co/8oIdk5bpin +06/21/2018,Politicians,@ScottWalker,"Summer is officially here, finally! #SummerSolstice2018 #LongestDayOfTheYear 🌞☀️ https://t.co/lUy2IHXZvY" +06/21/2018,Politicians,@ScottWalker,“DuraTech celebrates $7.5 million expansion; La Crosse printing company to add 125 jobs” https://t.co/qsYb6kLz3Q +06/21/2018,Politicians,@ScottWalker,"Anita, a public school teacher in Racine, knows our bold reforms have returned power to taxpayers, and that we’ve p… https://t.co/5F0k8860Nn" +06/20/2018,Politicians,@ScottWalker,"If we’re going to help Wisconsin win the 21st century, we need all of our young people to have the skills necessary… https://t.co/wojBFYjI1l" +06/20/2018,Politicians,@ScottWalker,Joined DuraTech Industries for their expansion ribbon cutting ceremony in La Crosse this morning. Business investme… https://t.co/zLmnJz7QCe +06/20/2018,Politicians,@ScottWalker,Teachers like Anita know that our bold reforms are helping students and their families win the 21st century – we’ve… https://t.co/cM3jGfImbG +06/20/2018,Politicians,@ScottWalker,"On #AmericanEagleDay, remembering Old Abe -- the bald eagle that was the mascot for WI’s 8th Infantry during the Ci… https://t.co/Fz9oryLwja" +06/20/2018,Politicians,@ScottWalker,"I’m a pro-education governor -- and with our bold reforms, we’re working to help Wisconsin’s students and their fam… https://t.co/OL52RfqtlF" +06/19/2018,Politicians,@ScottWalker,We’re fighting for our dairy farmers here in Wisconsin -- they are essential to our state’s success. https://t.co/gZO3bIhJX1 +06/19/2018,Politicians,@ScottWalker,"Our bold reforms gave schools flexibility to put money where it matters most, in our classrooms. Now, after we’ve p… https://t.co/Op4m0u99pO" +06/19/2018,Politicians,@ScottWalker,Sign up to claim yours here! https://t.co/bqBxvtT7ZP +06/19/2018,Politicians,@ScottWalker,"More than 450,000 families have signed up for our child tax rebate, but 200,000 are still eligible. We’re returning… https://t.co/LxSfDhBFW6" +06/19/2018,Politicians,@ScottWalker,"Had a great time in De Pere this past weekend at their dairy breakfast supporting our farmers, their families and W… https://t.co/xZyyf65XkF" +06/19/2018,Politicians,@ScottWalker,"On Juneteenth Day, I am happy to announce our plans to name the new Milwaukee state office building after the Hon. Vel Phillips." +06/19/2018,Politicians,@ScottWalker,"Check out our newest ad! With a record actual-dollar investment in schools, more money for our technical college pr… https://t.co/0yIeltT9mi" +06/18/2018,Politicians,@ScottWalker,"The success of Wisconsin’s dairy industry is important to all of us, and that is why we are standing up for our far… https://t.co/UaDGo5mP4v" +06/18/2018,Politicians,@ScottWalker,"More than 450,000 families have claimed our $100-per-child tax rebate. Last week I stopped in Onalaska to encourage… https://t.co/rTZsaTo9kD" +06/18/2018,Politicians,@ScottWalker,Started off this past weekend in La Crosse! Enjoyed serving food and chatting with our farmers about what it will t… https://t.co/gcyg1n5rtI +06/18/2018,Politicians,@ScottWalker,My mom took a nice photo of me and my brother David with our dad on Father’s Day. https://t.co/vg2OcEh1QI +06/18/2018,Politicians,@ScottWalker,More evidence that Wisconsin is a top target for Washington-based special interest groups on the Left. We need your… https://t.co/xk0MfFwcEl +06/18/2018,Politicians,@ScottWalker,Had a great weekend with our farm families visiting dairy breakfasts across the state! https://t.co/yVo5VzqP4K +06/18/2018,Politicians,@ScottWalker,Great view of the mini-racing sausages from @Johnsonville at Miller Park today during the @Brewers game: https://t.co/KCYRdBSprE +06/17/2018,Politicians,@ScottWalker,Enjoying a @Brewers game on Father’s Day at Miller Park. #ThisIsMyCrew https://t.co/nl7YVd5QL6 +06/17/2018,Politicians,@ScottWalker,This couple came up to me at the Waupaca County Dairy Breakfast and told me that my father had officiated their wed… https://t.co/AtdCIXBltH +06/17/2018,Politicians,@ScottWalker,Stopped in Waupaca County at their breakfast on the farm today! Another great morning. https://t.co/hBmf2SicUL +06/17/2018,Politicians,@ScottWalker,Another great breakfast on the farm. Proud to be in Brown County this morning serving up some great food! #WIProud https://t.co/ngPfWOfZi1 +06/17/2018,Politicians,@ScottWalker,"“Gov. Walker visits Onalaska, encourages parents to apply for child tax rebate” https://t.co/SsTgFqCvXC" +06/17/2018,Politicians,@ScottWalker,Happy Father’s Day to my dad Llew Walker and all of the other fathers out there. https://t.co/bkYMRrNtYf +06/17/2018,Politicians,@ScottWalker,89 degrees and on the water with a cold Summer Shandy! https://t.co/zACjX7Nvo4 +06/16/2018,Politicians,@ScottWalker,"""Governor Scott Walker reminds area families of Child Tax Rebate"" https://t.co/66IIm6BQjI" +06/16/2018,Politicians,@ScottWalker,"Amazing show of support for family and friends of Milwaukee Police Officer Charles Irvine, Jr. Honored to be there… https://t.co/X4F5uAvdUb" +06/16/2018,Politicians,@ScottWalker,Breakfast on the farm is great. Glad to be in La Crosse County this morning celebrating dairy month! https://t.co/rylrBYR0oA +06/16/2018,Politicians,@ScottWalker,Our President of the University of Wisconsin System Board of Regents is a man of many talents. Look at this catch i… https://t.co/oDTlffI5i3 +06/15/2018,Politicians,@ScottWalker,“Gov. Scott Walker touts broadband grants in Oconto Falls visit” https://t.co/0MByDKxR6l +06/15/2018,Politicians,@ScottWalker,"“Governor Stops in FDL, Will Speak in Ripon” https://t.co/aj2KwNCAX6" +06/15/2018,Politicians,@ScottWalker,Stopped in Onalaksa this afternoon to talk about our child tax rebate and how it can help Wisconsin’s hard-working… https://t.co/oXJOTs2n2r +06/15/2018,Politicians,@ScottWalker,"“Foxconn buys downtown office building for $14.9 million, says 500 people will work there” https://t.co/ZPcNI958dB" +06/15/2018,Politicians,@ScottWalker,Enjoyed visiting Platteville today to talk about how our child tax rebate is helping hard-working Wisconsin familie… https://t.co/mXHgVyRxmj +06/15/2018,Politicians,@ScottWalker,"With all of the “help wanted” signs across Wisconsin, our bold reforms are removing barriers to work by helping par… https://t.co/fr00bJRmh1" +06/15/2018,Politicians,@ScottWalker,Grab 20% off a bunch of great Team Walker gear TODAY ONLY and help support our efforts. https://t.co/rA6EmL6Bfc https://t.co/MbvnBTpDUS +06/15/2018,Politicians,@ScottWalker,"With our school safety grants, we’re taking action to keep our children safe. https://t.co/Dj7tC7ja64" +06/15/2018,Politicians,@ScottWalker,"More great news for Wisconsin yesterday!! The employment level in Wisconsin is at an all-time HIGH of 3,090,200 and… https://t.co/ixnUJdO3tO" +06/15/2018,Politicians,@ScottWalker,Happy to address the young leaders at Badger Boys State tonight in Ripon. This program opened my eyes to public ser… https://t.co/nDinYKQwK8 +06/15/2018,Politicians,@ScottWalker,https://t.co/QZYlIzemtK +06/14/2018,Politicians,@ScottWalker,"""Metro Milwaukee hiring outlook for Q3 is third best in nation"" +https://t.co/ZbX2VYgSAm" +06/14/2018,Politicians,@ScottWalker,Proud to be at Rennes Health & Rehab Center in De Pere. We recognize the important work that our nursing assistants… https://t.co/g1YGIfeo9S +06/14/2018,Politicians,@ScottWalker,"BREAKING NEWS: Employment level in Wisconsin is at an all-time high of 3,090,200 and unemployment rate is at all-time low at 2.8% for May." +06/14/2018,Politicians,@ScottWalker,Biggest story overlooked by most in media was @POTUS @realDonaldTrump saying: “We should at least consider no tarif… https://t.co/Rf3Rir6PZb +06/14/2018,Politicians,@ScottWalker,"Happy Birthday to the Dean of the Wisconsin Congressional delegation, Congressman Jim Sensenbrenner! @JimPressOffice https://t.co/5O35b91JdI" +06/14/2018,Politicians,@ScottWalker,"Happy birthday to the @USArmy! 243 years of service to our nation. To all the men and women who serve, thank you fo… https://t.co/7wvnny2ehu" +06/14/2018,Politicians,@ScottWalker,Alex and Matt sleeping on our couch. #TBT https://t.co/r8yElSpqZy +06/14/2018,Politicians,@ScottWalker,"“Transload rail facility opens in Oshkosh's Southwest Industrial Park” +https://t.co/rjderd5XlX" +06/14/2018,Politicians,@ScottWalker,"Happy Birthday, @POTUS @realDonaldTrump! https://t.co/a3qSlUC4Lx" +06/14/2018,Politicians,@ScottWalker,More great news in Oshkosh! https://t.co/RcG3nEwcKF +06/14/2018,Politicians,@ScottWalker,Happy #FlagDay! We are honoring the flag and all that it represents. 🇺🇸 🇺🇸 Fun Fact: Did you know that Flag Day st… https://t.co/2rGhHHWLwe +06/14/2018,Politicians,@ScottWalker,These are my kind of fries at Parkside 23! https://t.co/ggAmAS97A7 +06/13/2018,Politicians,@ScottWalker,Our bold reforms are helping Wisconsin win the 21st century as job creators choose to stay and invest in our state. https://t.co/YSUbvTLoEM +06/13/2018,Politicians,@ScottWalker,"Okay, I admit that I teared up a bit too but it makes you so happy to watch this family!!! https://t.co/2dbnCoF5cm" +06/13/2018,Politicians,@ScottWalker,Joined Green Bay Packaging at the announcement of their expansion yesterday. We’re proud that job creators are inve… https://t.co/T9HRgPtHq6 +06/13/2018,Politicians,@ScottWalker,Great day in Milwaukee for a @Brewers game (sadly I’m in meetings all day and not at the ballpark)! #ThisIsMyCrew https://t.co/2DJhth33Z0 +06/13/2018,Politicians,@ScottWalker,"More examples of the anger and hatred of the Left: +“… coarseness has become standard procedure in a crowded primar… https://t.co/GyXpTFsK3v" +06/13/2018,Politicians,@ScottWalker,Joined the City of Oshkosh today in celebrating the opening of the new transload terminal in town. This will give j… https://t.co/nnx6cO7Ljb +06/13/2018,Politicians,@ScottWalker,"To help Wisconsin win the 21st century, our bold reforms are working to expand broadband access for communities all… https://t.co/g0h9FvY7EU" +06/13/2018,Politicians,@ScottWalker,".@BarackObama and his big government allies finally announced what we’ve always known, they’re targeting our race i… https://t.co/MgDwrCzs2A" +06/12/2018,Politicians,@ScottWalker,Enjoyed spending this past weekend with farmers and their families in Mishicot. We’re standing with you and fightin… https://t.co/b6Kt31eN4U +06/12/2018,Politicians,@ScottWalker,Had a great time on Sunday at the Waubeka Flag Day parade! It’s a celebration of the flag and all that it stands fo… https://t.co/S8YCNwH0AH +06/12/2018,Politicians,@ScottWalker,We’re #1! https://t.co/XmI9ceXxbj +06/12/2018,Politicians,@ScottWalker,We have such great traditions here in Wisconsin – enjoyed seeing folks out supporting our dairy industry over the w… https://t.co/dD9kFQNUOn +06/12/2018,Politicians,@ScottWalker,"There is a special election today in the 1st Senate District in northeastern Wisconsin. Please vote! +https://t.co/PyBXdJxuJi" +06/12/2018,Politicians,@ScottWalker,Don’t forget that there is a special election in the 42nd Assembly district today: https://t.co/EquUHPZfp2 +06/12/2018,Politicians,@ScottWalker,"If Wisconsin is going to win the 21st century, build on our success and push back against these Far-Left groups, we… https://t.co/7zFJoTKQNT" +06/12/2018,Politicians,@ScottWalker,Here’s the full story on @BarackObama’s effort to attack us in WI. We don’t need more out of state special interest… https://t.co/jqegjCdYMx +06/12/2018,Politicians,@ScottWalker,🚨 ALERT: @BarackObama’s political machine just announced that it’s targeting our race in Wisconsin. I need your HEL… https://t.co/bAksVKEUEc +06/12/2018,Politicians,@ScottWalker,"To help connect more of our communities and expand broadband service, we’ve made another increase in our broadband… https://t.co/vz29H7eCSk" +06/12/2018,Politicians,@ScottWalker,Glad to be at Green Bay Packaging to talk about how our bold reforms are helping job creators grow and how we’re st… https://t.co/hzsqOP21cm +06/12/2018,Politicians,@ScottWalker,Happy birthday to former President George H.W. Bush! 🇺🇸 https://t.co/JpQGcGAyl0 +06/12/2018,Politicians,@ScottWalker,Great traveling across Wisconsin yesterday highlighting our expanded broadband investments -- we're making sure rur… https://t.co/sLsCQwUEHq +06/12/2018,Politicians,@ScottWalker,Good to stop by the Brown County GOP office today! Thanks for the hard work! https://t.co/Vza16pHgG3 +07/01/2018,Politicians,@SecretaryPerry,"Thanks to American ingenuity, American innovation, and American natural gas we’re not just exporting natural resour… https://t.co/zpaR8QiN3w" +06/30/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Just spoke to King Salman of Saudi Arabia and explained to him that, because of the turmoil & disfunction in Iran and…" +06/30/2018,Politicians,@SecretaryPerry,"The world has changed a lot in the 30 years since Ronald Reagan hosted the World Gas Conference. Today, the United… https://t.co/XPx729Euws" +06/30/2018,Politicians,@SecretaryPerry,"Earlier this week I had a meeting with Russian Energy Minister Alexander Novak, which brought together the two larg… https://t.co/m3s6zpv4aZ" +06/30/2018,Politicians,@SecretaryPerry,"America is the world leader in oil and gas production because of American ingenuity, American innovation, and hardw… https://t.co/V3SKL7m3Hj" +06/30/2018,Politicians,@SecretaryPerry,"The United States, Canada and Mexico have a highly integrated, interdependent energy market that leverages the reso… https://t.co/VhnCJwgXLK" +06/29/2018,Politicians,@SecretaryPerry,"Yesterday, I had the chance to meet with Argentine Minister of Energy @JavierJiguacel where we continued talks on h… https://t.co/goAKoFcsSf" +06/28/2018,Politicians,@SecretaryPerry,"Thirteen years ago today, 19 of America’s bravest were lost in support of Operation Redwing. On this solemn day, we… https://t.co/HbCWLT1vuL" +06/28/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Prior to departing Wisconsin, I was briefed on the shooting at Capital Gazette in Annapolis, Maryland. My thoughts and…" +06/28/2018,Politicians,@SecretaryPerry,RT @fossilenergygov: Thanks @SecretaryPerry for stopping by @fossilenergygov's booth @WGC2018! #NewEnergyRealism #WGC2018 https://t.co/lDa5… +06/28/2018,Politicians,@SecretaryPerry,Had a productive meeting with Azerbaijan’s Minister of Energy Parviz Shahbazov on the Southern Gas Corridor and str… https://t.co/gstKIhBlXN +06/28/2018,Politicians,@SecretaryPerry,"Today, U.S. Senator @LisaMurkowski delivered opening remarks about how natural gas will fuel the future prior to a… https://t.co/HxOVK4iBRi" +06/28/2018,Politicians,@SecretaryPerry,"Today, @ENERGY announced its plan to partner with @opicgov on a new partnership in Latin America. Looking forward t… https://t.co/IXnD1baTvF" +06/28/2018,Politicians,@SecretaryPerry,Kicked off day four of #WGC2018 on @SquawkCNBC. #LNG #NatGas #Energy https://t.co/pkjzMI7mF8 +06/27/2018,Politicians,@SecretaryPerry,Had a productive bilateral meeting with @qatarpetroleum’s Saad Sherida Al-Kaabi on #LNG. #WGC2018 https://t.co/eFxRq6Ztsk +06/27/2018,Politicians,@SecretaryPerry,".@IEA's 2018 Gas Report reaffirms the strength of America's growing LNG exports. This ""2nd boom"" is American… https://t.co/qpfq5SGsNd" +06/27/2018,Politicians,@SecretaryPerry,"RT @UKinUSA: ""From promoting peace to fighting terrorism, the special relationship between Britain and the US is one built on shared values…" +06/27/2018,Politicians,@SecretaryPerry,Had a great meeting with Hungary’s Minister of Foreign Affairs and Trade Péter Szijjártó on bolstering energy secur… https://t.co/l5DHSY17JU +06/27/2018,Politicians,@SecretaryPerry,Spoke with business and government leaders at @CSIS’ #WGC2018 breakfast on the rise of American #LNG exports and th… https://t.co/AxSQ6eDrG2 +06/26/2018,Politicians,@SecretaryPerry,Had a great meeting today with @USEmbPortugal Amb. @geglass60 on how American exports of #LNG are going to open new… https://t.co/qOur5NJXOP +06/26/2018,Politicians,@SecretaryPerry,"RT @fossilenergygov: Christopher Freitas, a natural gas analyst from @fossilenergygov , spoke today at #WGC2018 about the role @ENERGY is p…" +06/26/2018,Politicians,@SecretaryPerry,"Today, we celebrate 60 years of partnership and collaboration under the U.S.-U.K. Mutual Defense Agreement. The spe… https://t.co/Q4i9s4tky6" +06/26/2018,Politicians,@SecretaryPerry,"America supports expanding #LNG trade to our Asia-Pacific partners, deepening our partnerships, and advancing our s… https://t.co/CZL2Oq3cGC" +06/26/2018,Politicians,@SecretaryPerry,RT @USEmbPortugal: Amb. Glass sat down with @SecretaryPerry to discuss exciting #LNG opportunities between the U.S. and #Portugal! Another… +06/26/2018,Politicians,@SecretaryPerry,Today at 1:00 p.m. EDT I will be giving a keynote celebrating the 60th anniversary of the United States-United King… https://t.co/F7axTHAKZj +06/26/2018,Politicians,@SecretaryPerry,30 years ago no one thought the U.S. would be producing energy more cleanly and efficiently and from a wider range… https://t.co/fy0aZ1GHD8 +06/26/2018,Politicians,@SecretaryPerry,"About to kick off the World Gas Conference in Washington, D.C. + +America has become a world leader in #NatGas and… https://t.co/dwe0PgGXhq" +06/26/2018,Politicians,@SecretaryPerry,"RT @aga_naturalgas: Join us for the @WGC2018 Opening Ceremony with @SecretaryPerry +@IGU_News’ David Carroll, AGA’s Dave McCurdy and @PSETa…" +06/25/2018,Politicians,@SecretaryPerry,"The Three Seas Initiative offers a new opportunity for engagement. It is a means to increase integration, strengthe… https://t.co/v5Iy46flkD" +06/25/2018,Politicians,@SecretaryPerry,"RT @WhiteHouse: American innovation is fueling an energy success story: cleaner, more efficient use of abundant, affordable energy. @Secret…" +06/25/2018,Politicians,@SecretaryPerry,"Israel and the U.S. have long advanced the cause of freedom. Today, we began a new quest for innovation and science… https://t.co/jFOiuJrAPY" +06/25/2018,Politicians,@SecretaryPerry,Honored to sign an agreement with Israeli Energy Minister Yuval Steinitz to establish the U.S.-Israel Center of Exc… https://t.co/yngK8uKGzK +06/25/2018,Politicians,@SecretaryPerry,Summit’s ranking as the world’s fastest supercomputer demonstrates the strength of American leadership in scientifi… https://t.co/fzykLWdjtU +06/23/2018,Politicians,@SecretaryPerry,Looking for something to listen to this weekend? Check out @ENERGY’s podcast Direct Current where I sit down and ta… https://t.co/cCqS07pSnr +06/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: Thanks to the K9s like Chappy who work every day to keep the Energy Department safe! They're all good dogs. 🐶 + +#TakeYourDogToW…" +06/22/2018,Politicians,@SecretaryPerry,"Affordable, abundant energy is changing the world. We're obtaining energy from a wider range of resources than anyo… https://t.co/b86aQoi33B" +06/22/2018,Politicians,@SecretaryPerry,"This morning, I spoke at @CommerceGov's #SelectUSASummit on America's outstanding energy climate. We're in the mids… https://t.co/2AuJju61Rz" +06/22/2018,Politicians,@SecretaryPerry,"Scientists found that actinium-225 can wipe out late-stage prostate cancer in just three treatments. Now,… https://t.co/BAzXJxin7z" +06/21/2018,Politicians,@SecretaryPerry,Charles @Krauthammer was an inspiration and source of courage for so many. He will truly be missed. Anita and I are… https://t.co/5cXPm2pfgA +06/21/2018,Politicians,@SecretaryPerry,"""America needs coal and nuclear power for energy diversity."" via @Rockland_News https://t.co/iqhY1y0KEC" +06/20/2018,Politicians,@SecretaryPerry,.@ENERGY's Direct Current is back for season three and I was thrilled to be interviewed for its premiere. We talked… https://t.co/TrzGiwZ9G2 +06/20/2018,Politicians,@SecretaryPerry,"RT @ENERGY: PODCAST: Direct Current is back! Season 3 kicks of with a bang, as @SecretaryPerry sits down with us to talk supercomputers, en…" +06/18/2018,Politicians,@SecretaryPerry,“A gas pipeline disruption caused by extreme weather or equipment failure could mean prolonged electricity service… https://t.co/AhDfvO2Syv +06/16/2018,Politicians,@SecretaryPerry,"Great read on the need for nuclear energy by Sen. @lisamurkowski and @JayFaison1: “To meet demand for rural power,… https://t.co/Vl7i7ZJVUq" +06/16/2018,Politicians,@SecretaryPerry,Had a great time watching #Argentina play #Iceland in the @FIFAWorldCup with Argentine Energy Minister… https://t.co/BsdTEHPXDx +06/16/2018,Politicians,@SecretaryPerry,.@doescience reports scientific accomplishments from 40 years of Basic @ENERGY Sciences that have contributed to Am… https://t.co/suhkiQXS3w +06/15/2018,Politicians,@SecretaryPerry,America has become the world leader in combined oil and gas production while at the same time cutting emissions by… https://t.co/wXiYdQKTeG +06/15/2018,Politicians,@SecretaryPerry,"Argentina has the second largest shale gas reserves in the world, but is still a net energy importer. Working toget… https://t.co/n6NdM2rCVw" +06/15/2018,Politicians,@SecretaryPerry,Excited to join my fellow #G20 energy ministers at the #G20Argentina. This is an exciting time for Argentina and th… https://t.co/IIZ36kKpVQ +06/14/2018,Politicians,@SecretaryPerry,Happy birthday to the @USArmy! Thank you for keeping America safe for 243 years. https://t.co/cYPTe4cpRK +06/14/2018,Politicians,@SecretaryPerry,"Happy birthday, @POTUS. Thank you for all of your hard work to make America great. https://t.co/deIf4VKiNs" +06/14/2018,Politicians,@SecretaryPerry,"Today, we celebrate 241 years of the Stars and Stripes. Thank you to the men and women who fought for our independe… https://t.co/NYig0ZOtX3" +06/13/2018,Politicians,@SecretaryPerry,RT @ScienceUnderSec: I recently spoke with @sciencemagazine about my background and vision for @ENERGY’s science programs. Read the intervi… +06/13/2018,Politicians,@SecretaryPerry,"Earlier this month I met with @POTUS, @FLOTUS, @VP and @SecNielsen for the 2018 hurricane briefing at the @fema HQ.… https://t.co/IcOc9BdhmQ" +06/13/2018,Politicians,@SecretaryPerry,"“200,000 trillion calculations per second: U.S. launches the world’s most powerful supercomputer.” via @usatoday +https://t.co/rpktBxef2z" +06/12/2018,Politicians,@SecretaryPerry,"“With 4,608 servers, its equipment fills the space of two tennis courts and weighs more than a commercial aircraft.… https://t.co/iqdwx8McFy" +06/12/2018,Politicians,@SecretaryPerry,#HurricaneSeason has officially begun and every year the Federal government works tirelessly to prepare for such ev… https://t.co/u8p8RkeICj +06/12/2018,Politicians,@SecretaryPerry,Anita and I are keeping @larry_kudlow in our prayers tonight. +06/12/2018,Politicians,@SecretaryPerry,"“Summit boasts a peak performance of 200,000 trillion calculations per second and will be eight times more powerful… https://t.co/n5Wmy4y5VZ" +06/11/2018,Politicians,@SecretaryPerry,"“If a stadium built for 100,000 people was full, and everyone in it had a modern laptop, it would take 20 stadiums… https://t.co/5G7EYJazyh" +06/09/2018,Politicians,@SecretaryPerry,"RT @ORNL: Signed, sealed, delivered. + +✍️ @SecretaryPerry @IBM @nvidia + +#Summit2018 https://t.co/BGux7o8QDF" +06/08/2018,Politicians,@SecretaryPerry,It was great to see all of the children and families enjoying the #STEM fair at @ORNL’s family day. #StemRising https://t.co/AXzlrafxyP +06/08/2018,Politicians,@SecretaryPerry,"Meet Summit — the newest and most powerful supercomputer in the world at @ornl. +Watch live here: https://t.co/s0S7Es8cWH" +06/08/2018,Politicians,@SecretaryPerry,"Just signed @ENERGY & @ORNL’s newest supercomputer, Summit. This is now the most powerful computer in the world and… https://t.co/zVrmdBdleg" +06/08/2018,Politicians,@SecretaryPerry,Visiting @ORNL for an exciting day celebrating American leadership in supercomputing. #NationalLab https://t.co/u1363Xt4AE +06/08/2018,Politicians,@SecretaryPerry,"500 Days of American Greatness: “$3 billion payoff: 101 utilities cut rates, credit GOP tax cuts” via @dcexaminer +https://t.co/T85i3L7CLv" +06/06/2018,Politicians,@SecretaryPerry,"It’s the 74th anniversary of one of the great days in world history, #DDay, a day where Americans sacrificed greatl… https://t.co/dwhMZ1katc" +06/05/2018,Politicians,@SecretaryPerry,Ran into @HurdOnTheHill yesterday at @Energy’s #DOECyberCon18 conference where we talked about the need to be a wor… https://t.co/vRKpI0vjPD +06/05/2018,Politicians,@SecretaryPerry,RT @ENERGY: .@EnergyDepSec Dan Brouillette discusses the need to increase America’s capability to fight imminent cyber threats facing our c… +06/05/2018,Politicians,@SecretaryPerry,500 Days of American Greatness: The United States is a world leader in oil and gas production combined. https://t.co/Kw45aIXYAn +06/04/2018,Politicians,@SecretaryPerry,Today is @realDonaldTrump’s 500th day in office & his commitment to American greatness. In 500 days @POTUS and… https://t.co/Xo8tpbUARV +06/04/2018,Politicians,@SecretaryPerry,"Cybersecurity is a national security issue. That is why @ENERGY has created #CESER, DOE's new office to combat cybe… https://t.co/KQa1Vtzcbs" +06/04/2018,Politicians,@SecretaryPerry,"RT @WhiteHouse: Breakthroughs in renewable energy, the worldwide web, satellite technologies, and safe drinking water are just a few of the…" +05/31/2018,Politicians,@SecretaryPerry,"About to speak at the @TexasIsrael and @ENERGY #CyberSecurity Conference on ""Securing Our Critical Infrastructure""… https://t.co/yf6qDbqi9K" +05/30/2018,Politicians,@SecretaryPerry,RT @lisamurkowski: Check out the editorial I wrote w/ @Energy @SecretaryPerry on why Alaska is the best place in the world to prove a conce… +05/29/2018,Politicians,@SecretaryPerry,"Sen. @lisamurkowski and I want to make Alaska the home of the ""next big idea,"" which is why @ENERGY is hosting its… https://t.co/nqjFahP5w7" +05/28/2018,Politicians,@SecretaryPerry,"Today, we honor the men and women who paid the ultimate sacrifice for our safety and liberty. This #MemorialDay, le… https://t.co/j1Ki1HyLgS" +05/24/2018,Politicians,@SecretaryPerry,.@POTUS' tax cuts and reductions in onerous regulations have provided people the freedom and incentive necessary to… https://t.co/tKHaIlup29 +05/24/2018,Politicians,@SecretaryPerry,"To better help small businesses become more engaged with @ENERGY, our Office of Small and Disadvantaged Business Ut… https://t.co/ifJIvUEJ6Q" +05/24/2018,Politicians,@SecretaryPerry,"Spoke to entrepreneurs and innovators at @ENERGY's Small Business Summit today in Austin, Texas. Supporting small b… https://t.co/Uc9BwcLwM3" +05/24/2018,Politicians,@SecretaryPerry,RT @EnergyDepSec: Very proud to launch the #CEMNICEFuture Initiative today at #CEM9. @SecretaryPerry and I are quite proud to have this ini… +05/23/2018,Politicians,@SecretaryPerry,RT @EnergyDepSec: Very proud to share the successful clean energy research & development efforts in the U.S. with global leaders at #MI3 to… +05/22/2018,Politicians,@SecretaryPerry,Had a great meeting with @POTUS’ @WhiteHouse Fellows on the future of American energy. #NewEnergyRealism #CoolJob https://t.co/HNgfgLajke +05/22/2018,Politicians,@SecretaryPerry,"RT @EnergyDepSec: This week I’m in Copenhagen, Demark at the @CEMSecretariat Clean Energy Minsterial to further collaboration on one of the…" +05/18/2018,Politicians,@SecretaryPerry,Praying for the victims and their families of the Sante Fe high school shooting in Texas. Thank you to the first re… https://t.co/67tIfbMMlp +05/17/2018,Politicians,@SecretaryPerry,"RT @fossilenergygov: Yesterday, @SecretaryPerry spoke @WorldCoal on needing industry’s input to develop small-scale, modular #coal plants o…" +05/17/2018,Politicians,@SecretaryPerry,"RT @ScienceUnderSec: Last week, I had the opportunity to participate at the @WhiteHouse Summit on Artificial Intelligence for American Indu…" +05/15/2018,Politicians,@SecretaryPerry,RT @ENERGY: TODAY: Love energy data? ♥️⚡📈 Join us at 3pm ET on Facebook for a LIVE Q&A with an energy expert from @EIAGov. We'll highlight… +05/14/2018,Politicians,@SecretaryPerry,"Today, we announced a new infrastructure project that will help clean up the legacy of the Cold War. + +Learn more a… https://t.co/ExCx5DkhwQ" +05/13/2018,Politicians,@SecretaryPerry,"Happy Mother’s Day to my wonderful mom, my beautiful wife, and the best daughter-in-law a grandfather could ask for… https://t.co/5zw1krAWJp" +05/11/2018,Politicians,@SecretaryPerry,"RT @lisamurkowski: I was proud to host Secretary of Energy Rick Perry in Alaska last week, to give him a firsthand look at some of the ener…" +05/10/2018,Politicians,@SecretaryPerry,"Last week I toured Alaska's energy infrastructure with Sen. @LisaMurkowski, @SenDanSullivan, and @RepDonYoung. Alas… https://t.co/PEKSqEB4Qr" +05/09/2018,Politicians,@SecretaryPerry,"RT @ENERGY: This week, @SecPompeo announced new efforts by the U.S. and Mexico to partner on nuclear energy. #NewEnergyRealism https://t.co…" +05/08/2018,Politicians,@SecretaryPerry,The Americas are safer today because as a whole we’re producing more energy. America’s new role as an energy export… https://t.co/U81qrlfPK7 +05/07/2018,Politicians,@SecretaryPerry,Had a great lunch today with some wonderful @ENERGY Germantown employees. Everywhere I go in DOE I’m continually le… https://t.co/eIFUqK9Ubp +05/07/2018,Politicians,@SecretaryPerry,".@EnergyDepSec, Under Secretary of Energy Mark Menezes, @ScienceUnderSec, and I are participating in the first Nati… https://t.co/kmjZfpCJ9R" +05/07/2018,Politicians,@SecretaryPerry,Had a great all-hands meeting with @ENERGY employees at our Germantown campus. The dedication and innovation of the… https://t.co/c4bdPO6rai +05/03/2018,Politicians,@SecretaryPerry,The future of America is #supercomputers #Exascale 🇺🇸 https://t.co/qVTDFxJoal +05/03/2018,Politicians,@SecretaryPerry,Just wrapped up an amazing tour of Alaska’s energy infrastructure and meeting with the great people who make the al… https://t.co/IDKyIWUfcQ +05/03/2018,Politicians,@SecretaryPerry,"RT @VP: As we mark 2018 #NationalDayofPrayer at the @WhiteHouse, we remember the American people believe in prayer. Always have. Prayer is…" +05/03/2018,Politicians,@SecretaryPerry,Had the opportunity to tour Alaska’s oil and gas infrastructure with @repdonyoung today. The @AlyeskaPipeline and e… https://t.co/akItqlKXjR +05/02/2018,Politicians,@SecretaryPerry,The scale of Kodiak’s flywheel is amazing. 2 MW of flywheel technology supports the ship crane and the islands’ win… https://t.co/LdtOuxT4xC +05/02/2018,Politicians,@SecretaryPerry,"This is 3 MW of battery storage, which helps support Kodiak islands’ electric wind and hydropower resources.… https://t.co/2U2b8sarRY" +05/01/2018,Politicians,@SecretaryPerry,"Six wind turbines produce 9 MW, about 20 percent of Kodiak’s annual energy needs. #NewEnergyRealism #Alaska #USA https://t.co/9iDiqwTp39" +05/01/2018,Politicians,@SecretaryPerry,"Started today in Kodiak, Alaska with Kodiak Electric Association which generates 98 percent of the island’s electri… https://t.co/BW59WifL8p" +05/01/2018,Politicians,@SecretaryPerry,Excited to tour Alaska’s energy infrastructure with Sen. @LisaMurkowski. Can’t wait to see #NewEnergyRealism at wor… https://t.co/BAMtLr448x +04/28/2018,Politicians,@SecretaryPerry,RT @realDonaldTrump: I urge all Americans to participate in #takebackday tomorrow! Let’s come together and BEAT last October’s record of di… +04/27/2018,Politicians,@SecretaryPerry,RT @AEF_Program: #EinsteinFellows17 and alumni are volunteering @DOE_SC_NSB and were able to meet @SecretaryPerry during his remarks to fin… +04/27/2018,Politicians,@SecretaryPerry,Students from across the country made their way to the Nation’s Capital to compete in the 2018 National Science Bow… https://t.co/fjUdNLKqDq +04/27/2018,Politicians,@SecretaryPerry,Investment in advanced nuclear power technology will support a strong domestic nuclear industry and provide America… https://t.co/KB9wFupjAb +04/27/2018,Politicians,@SecretaryPerry,Excited to be with some of the brightest students in the country at the National Science Bowl @DOE_SC_NSB finals. https://t.co/7vJCV0iGry +04/26/2018,Politicians,@SecretaryPerry,RT @LGHNNSA: Some special guests @Energy are getting the chance to explore the cool world of #STEM careers today. Wouldn’t be surprised if… +04/26/2018,Politicians,@SecretaryPerry,"Excited to be with Mike Pompeo when the 50th vote was cast to confirm him as Secretary of State! @StateDept,… https://t.co/H35QzhXfjI" +04/26/2018,Politicians,@SecretaryPerry,The signing of these SOIs demonstrates the shared commitment of France and United States to nuclear power as an aff… https://t.co/LGWYqqdt4A +04/26/2018,Politicians,@SecretaryPerry,Signed two Statements of Intent with France’s @CEA_Recherche that will further research cooperation between the U.S… https://t.co/zDFIgW46ym +04/26/2018,Politicians,@SecretaryPerry,What is Austin. Thanks for the shoutout @jeopardy. #Texas #MakeAmericaLikeTexas 😉 https://t.co/qovjFqeD5B +04/25/2018,Politicians,@SecretaryPerry,Had a chance to participate in federal #TakeBackDay. Proud of our @Energy workforce who took the opportunity to dis… https://t.co/q6xkgMpeyo +04/24/2018,Politicians,@SecretaryPerry,46 people die every day from prescription opioid overdoses. Protect your family & friends by finding a disposal sit… https://t.co/m5qF1LqS1j +04/24/2018,Politicians,@SecretaryPerry,Honored to be a guest at the @WhiteHouse Arrival Ceremony for French President @EmmanuelMacron. Thank you @POTUS an… https://t.co/Io8wcPszXp +04/23/2018,Politicians,@SecretaryPerry,"RT @ARPAE: ""What you're seeing here today is a window into our future, and the products of some of the very best and brightest in America.""…" +04/22/2018,Politicians,@SecretaryPerry,"This weekend, @ENERGY celebrated #EarthDay at @EarthXorg in Dallas. On exhibit were technological breakthroughs fro… https://t.co/pc5n7MHNIQ" +04/22/2018,Politicians,@SecretaryPerry,"RT @USAndIndia: Ambassador Juster, Deputy Chief of Mission Carlson, and @SecretaryPerry participated in our #EarthDay2018 celebrations by…" +04/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: Happy #EarthDay! Here are a few easy ways you can save energy at home: +💡Switch to efficient lightbulbs +🌡️Adjust thermostat +🚰…" +04/21/2018,Politicians,@SecretaryPerry,"RT @ENERGY: We’re at @EarthXorg in Dallas for #EarthDay weekend! + +Follow our Instagram stories here 👉https://t.co/42XxzwdM4M #EarthX 🌎 htt…" +04/19/2018,Politicians,@SecretaryPerry,The @FIRSTweets Robotics Competition is proof that #STEM can be fun and exciting. It was amazing to witness firstha… https://t.co/oQ8AUCrRnx +04/18/2018,Politicians,@SecretaryPerry,"Anita and I send our love to the entire Bush family tonight. + +We should all cherish the wisdom we received from Fi… https://t.co/swUdjupYLK" +04/17/2018,Politicians,@SecretaryPerry,Today is the last #TaxDay that Americans and companies will have to file under the old system. We're already seeing… https://t.co/ear422ytj2 +04/17/2018,Politicians,@SecretaryPerry,"#NewEnergyRealism means investing in all of our abundant energy sources, including solar technologies, which will h… https://t.co/pAS1FUZ0YF" +04/17/2018,Politicians,@SecretaryPerry,"RT @OfficeOfRKSingh: Minister of Power, and New & Renewable Energy, Shri @RajKSinghIndia met United States Secretary of Energy, H.E. @Secre…" +04/17/2018,Politicians,@SecretaryPerry,RT @dpradhanbjp: Addressing a Joint Press Conference with .@SecretaryPerry https://t.co/6wHxJXdeGv +04/17/2018,Politicians,@SecretaryPerry,RT @USAmbIndia: Excellent discussion at the inaugural session of the Strategic Energy Partnership with @SecretaryPerry and @dpradhanbjp. Gr… +04/17/2018,Politicians,@SecretaryPerry,"RT @dpradhanbjp: Honoured to meet US Sec. of Energy,Mr. @SecretaryPerry on his first visit to India. Jointly launched the India-US Strategi…" +04/17/2018,Politicians,@SecretaryPerry,Proud to host the first inaugural session of the U.S.-India Strategic Energy Partnership with @dpradhanbjp. This pa… https://t.co/FGk0JBa83F +04/16/2018,Politicians,@SecretaryPerry,Had a wonderful time this evening at an industry reception with U.S. and Indian partners. Continued collaboration b… https://t.co/8LY7MGwyue +04/16/2018,Politicians,@SecretaryPerry,"This U.S., India agreement will pave the way for collaborative innovation between @Fermilab's LBNF and DUNE neutrin… https://t.co/E10w2L1UyS" +04/16/2018,Politicians,@SecretaryPerry,"Today, I had the privilege to sign an agreement with India's Atomic Energy Secretary Dr. Sekhar Basu to expand Indi… https://t.co/w7p1Ssa2Ma" +04/16/2018,Politicians,@SecretaryPerry,"Celebrating New Delhi #EarthDay on my India trip. @Energy is working with our Indian partners to produce energy, gr… https://t.co/YBVFgggxsT" +04/16/2018,Politicians,@SecretaryPerry,"Thank you for the warm welcome to India, @USAmbIndia and @USAndIndia. The embassy’s continued support of #USIndia… https://t.co/ZEnccQx6cN" +04/16/2018,Politicians,@SecretaryPerry,Under Secretary of Energy Mark Menezes and I had a great roundtable meeting this morning with @USISPForum and India… https://t.co/J2EHVk2QWx +04/13/2018,Politicians,@SecretaryPerry,"Building on the research of our #NationalLabs, @ENERGY will help tackle this opioid #CrisisNextDoor. One of our top… https://t.co/AK6aBySMlM" +04/13/2018,Politicians,@SecretaryPerry,Had the opportunity to visit @NSCsafety’s #PrescribedToDeath Opioid Memorial today. It’s a sobering reminder and ca… https://t.co/Bm13bMViJ9 +04/12/2018,Politicians,@SecretaryPerry,Excited that we finally had Ted Garrish sworn in as Assistant Secretary of @Energy for International Affairs. I’m c… https://t.co/4wEIzU6Bne +04/12/2018,Politicians,@SecretaryPerry,"Today, on Yom HaShoah, we remember the pain and suffering endured by the Jewish people and the six million lives lo… https://t.co/J878pIq1ym" +04/12/2018,Politicians,@SecretaryPerry,Had a productive meeting with @HouseCommerce @EnergyCommerce on @Energy's #FY2019 priorities to advance… https://t.co/LWxgno4V1m +04/12/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""DOE’s supercomputing and other advance technologies capabilities play a crucial role in combating threats to our energy and na…" +04/11/2018,Politicians,@SecretaryPerry,Today I had the opportunity to testify with @ScienceUnderSec & @LGHNNSA at the Senate Appropriations Subcommittee o… https://t.co/GALI2oVRHg +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""We don’t have to choose between growing our economy and caring for our environment. By embracing innovation, we can benefit bo…" +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""[Exascale supercomputers] will be housed at Argonne, Oak Ridge, and Lawrence Livermore National Labs. They hold immense potent…" +04/11/2018,Politicians,@SecretaryPerry,RT @LGHNNSA: Going to the Hill today with @SecretaryPerry & @ScienceUnderSec to testify on @POTUS' FY19 budget request before the Senate Ap… +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “What is us, Alex?” — @Jeopardy #FinalJeopardy #TodayOnJ + +https://t.co/tzkBXYtz3A https://t.co/UujeylHRQe" +04/10/2018,Politicians,@SecretaryPerry,"RT @ENERGY: New #exascale computers deployed at @Livermore_Lab and @ORNL will help scientists: +💊 Improve healthcare +🔋 Build better batter…" +04/09/2018,Politicians,@SecretaryPerry,"People don’t think of @Energy and the @DeptVetAffairs as being partners, but we’re working together to harness the… https://t.co/ZmNPdYYbkC" +04/09/2018,Politicians,@SecretaryPerry,Five of the 10 fastest supercomputers in the world belong to the Department of @Energy. DOE is investing $1.8 billi… https://t.co/gUtQOFmhKH +04/09/2018,Politicians,@SecretaryPerry,Innovation over regulation is the reason America is a world leader in energy and supercomputing. Innovation has tur… https://t.co/j5woufOoyD +04/09/2018,Politicians,@SecretaryPerry,"RT @FoxBusiness: .@SecretaryPerry on supercomputers: ""This computing capacity that we have now is going to be able to allow us to address i…" +04/09/2018,Politicians,@SecretaryPerry,The Department of @Energy’s initiative for new supercomputers will ensure America’s continued leadership in the vit… https://t.co/ceyzhDcfUz +04/09/2018,Politicians,@SecretaryPerry,"RT @foxandfriends: Coming up…! +@LindseyGrahamSC +@whignewtons +@dbongino +@RepRalphNorman +@HuntingElChapo +@CBP +@DiamondandSilk +@GovAbbott +@…" +04/09/2018,Politicians,@SecretaryPerry,"Congratulations to fellow Texan, @PReedGolf, on his first @TheMasters victory. https://t.co/NinN9lodoU" +04/08/2018,Politicians,@SecretaryPerry,"Had a wonderful time with HRH Mohammed bin Salman, Crown Prince of Saudi Arabia, at the #SABIC event in Katy, Texas… https://t.co/bdZyDWEtD6" +04/05/2018,Politicians,@SecretaryPerry,Just finished a great meeting with @SenateMajLdr and the Paducah Site’s amazing workforce. #energy https://t.co/8hHqeiKgkb +04/05/2018,Politicians,@SecretaryPerry,Thank you to the @hccchamber and @SenateMajLdr for the opportunity to speak at your chamber's lunch today. Kentucky… https://t.co/DgqhUNSjGf +04/05/2018,Politicians,@SecretaryPerry,Kicked off a trip to Kentucky this morning at the Christian County & Hopkinsville energy roundtable with… https://t.co/fPtBc4GTBm +04/04/2018,Politicians,@SecretaryPerry,RT @ENERGY: From sea to shining to sea: Energy Department leadership visits all 17 #NationalLabs⚡️https://t.co/j5N4P6Y3vH @SecretaryPerry @… +04/04/2018,Politicians,@SecretaryPerry,Dr. Martin Luther King Jr. was a man of service who led the fight for equality and paid the ultimate price to advan… https://t.co/cxr0gPUnb1 +04/04/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Today we honor Dr. Martin Luther King, Jr. on the 50th anniversary of his assassination. Earlier this year I spoke abo…" +04/02/2018,Politicians,@SecretaryPerry,"RT @ENERGY: We're teaming up with @ColoradoStateU, @Cummins and @Woodward_Inc to develop medium, heavy-duty and on-road natural gas engines…" +04/02/2018,Politicians,@SecretaryPerry,Had a wonderful time at the @WhiteHouse Easter Egg Roll with my family and @POTUS today. https://t.co/wCkgosvmwc +04/01/2018,Politicians,@SecretaryPerry,He is Risen! Easter is a time to reflect on the joy of the resurrection. Happy Easter! https://t.co/86FaxNITgZ +03/31/2018,Politicians,@SecretaryPerry,Sending my best wishes to all celebrating Pesach. May we all remember and celebrate the inspirational message of re… https://t.co/EfWD6CenhM +03/30/2018,Politicians,@SecretaryPerry,There is no greater sacrifice. Blessings to you and yours this Good Friday. https://t.co/PexxGP67iR +03/30/2018,Politicians,@SecretaryPerry,"RT @ENERGY: As #WomensHistoryMonth comes to a close, we celebrate those who have advanced American energy, science, and technology. #WomenI…" +03/29/2018,Politicians,@SecretaryPerry,An investment in American infrastructure is an investment in American workers. @POTUS' #InfrastructureInAmerica pla… https://t.co/hoFtEdZiiG +03/29/2018,Politicians,@SecretaryPerry,RT @WhiteHouse: .@ENERGY Secretary Rick Perry: “Rising LNG Exports A Sign Trump Administration’s Infrastructure Policies Are Paying Off” ht… +03/29/2018,Politicians,@SecretaryPerry,"America’s energy infrastructure is in need of rebuilding, and @POTUS’ “Building a Stronger America” infrastructure… https://t.co/MuzyhQdwoC" +03/28/2018,Politicians,@SecretaryPerry,RT @SLAClab: Lab leadership welcomes @ENERGY @SecretaryPerry to SLAC this beautiful March morning for a tour of our cutting-edge facilities… +03/28/2018,Politicians,@SecretaryPerry,"⚡️ “Touring Berkeley Lab” + +https://t.co/FJriuE0zpY" +03/27/2018,Politicians,@SecretaryPerry,".@SandiaLabs plays a pivotal role in our Nation’s defense, and it was a privilege to see firsthand the hard work th… https://t.co/BFDzIZXpgr" +03/27/2018,Politicians,@SecretaryPerry,Stopping for some fuel between the labs this morning at @innoutburger. #innout #california #energy https://t.co/WDYai2JfwZ +03/27/2018,Politicians,@SecretaryPerry,"Had a great all hands discussion with scientists, researchers, and innovators from the @Livermore_Lab and… https://t.co/yFjUitRA4l" +03/26/2018,Politicians,@SecretaryPerry,Had a great discussion at lunch with veterans in science and technology at @Livermore_Lab on @ENERGY's #ACTIV progr… https://t.co/Rl30MwbcaE +03/26/2018,Politicians,@SecretaryPerry,RT @Livermore_Lab: Today we’re hosting @ENERGY’s @SecretaryPerry at the Lab to see how we’re making a difference in the security of our nat… +03/26/2018,Politicians,@SecretaryPerry,Just finished touring the largest and most energetic laser in the world at @Livermore_Lab's National Ignition Facil… https://t.co/gpIvCBiA9N +03/26/2018,Politicians,@SecretaryPerry,Excited to be visiting @Livermore_Lab where @ENERGY is working with our #NationalLabs to make America a safer place… https://t.co/vzag6MPDpL +03/26/2018,Politicians,@SecretaryPerry,On #NationalMedalOfHonorDay we honor those who showed valor in the face of adversity. One such man was First Lieute… https://t.co/064QmoW9cX +03/23/2018,Politicians,@SecretaryPerry,"While fossil fuel use and demand continues to rise so does the deployment of renewables, which made the #USA🇺🇸 numb… https://t.co/GlWeLiV7ja" +03/23/2018,Politicians,@SecretaryPerry,"Today, I went on a tour of @BAMC to learn how the Department of @Energy can help the @USArmy improve care for soldi… https://t.co/ncCStHXgiw" +03/22/2018,Politicians,@SecretaryPerry,"#TBT: Proud to join @DepSecHargan earlier this week for the swearing-in ceremony of my good friend, Dr. Brett Gior,… https://t.co/XWU0ybS0kN" +03/22/2018,Politicians,@SecretaryPerry,"Thank you @SASCMajority Chair @SenJohnMcCain, Ranking Member @SenJackReed, and Sen. @JimInhofe for hosting a produc… https://t.co/sEvvTPHAbk" +03/22/2018,Politicians,@SecretaryPerry,"For 100 years @LyondellBasell's Houston refinery has provided reliable energy to Texas and the Nation. Today, they… https://t.co/VKLv39xFTP" +03/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “[@ENERGY’s] budget request capitalizes on the Department of Energy’s scientific capabilities to advance our nuclear security,…" +03/22/2018,Politicians,@SecretaryPerry,RT @ENERGY: “The Department of @Energy’s role in our national security is one I undertake with the utmost seriousness.” – @SecretaryPerry a… +03/22/2018,Politicians,@SecretaryPerry,RT @SASCMajority: Today SASC will hold a hearing on challenges in the Department of @ENERGY atomic energy defense programs with @SecretaryP… +03/21/2018,Politicians,@SecretaryPerry,"Expanding and exporting nuclear energy is a key part of #NewEnergyRealism. +#Energy #USA +https://t.co/0HtszTgWaJ" +03/21/2018,Politicians,@SecretaryPerry,It was an honor to host Crown Prince Mohammad bin Salman of Saudi Arabia with @POTUS at the @WhiteHouse yesterday. https://t.co/ihNLrJU7Bc +03/20/2018,Politicians,@SecretaryPerry,Excited to be working with @POTUS’ @WhiteHouse on using prizes and challenges to foster innovation that improves Am… https://t.co/Ei9xrszF3a +03/20/2018,Politicians,@SecretaryPerry,Thank you @EnergyGOP Chair @LisaMurkowski and @EnergyDems' Ranking Member @SenatorCantwell for a productive hearing… https://t.co/qGoFjvnATw +03/20/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “Wherever I go, one thing is made abundantly clear to me: those who work for the Department of Energy are dedicated, they’re pa…" +03/20/2018,Politicians,@SecretaryPerry,RT @NNSANews: #NNSA’s FY19 budget request is the result of a disciplined process to prioritize funding for validated requirements and will… +03/20/2018,Politicians,@SecretaryPerry,"RT @lisamurkowski: Today I chaired an Energy Committee hearing, where @SecretaryPerry presented the President’s FY19 budget request for the…" +03/20/2018,Politicians,@SecretaryPerry,"RT @NEI: TUNE IN: Senate Energy panel to discuss @ENERGY fiscal year 2019 budget with @SecretaryPerry at 10 am ET +@EnergyGOP @EnergyDems +h…" +06/29/2018,Politicians,@JoeBiden,"We need more men like @terrycrews who will stand up and speak out. You’re helping change the culture, Terry. It mat… https://t.co/4f92EQCtEb" +06/29/2018,Politicians,@JoeBiden,"Another shooting. Another night in America where a father, a wife, a friend, a neighbor won’t be coming home. We ca… https://t.co/zdl0fAGZIp" +06/28/2018,Politicians,@JoeBiden,"It’s up to us, America. Speak out. Rise up. Be heard. The price to be paid for putting our values at risk must be c… https://t.co/pb0DuyNlxp" +06/28/2018,Politicians,@JoeBiden,Advice and consent. Absent that—which we’ve always had for nominees in election years in the past—we shouldn’t move… https://t.co/ybVgl3xzRi +06/28/2018,Politicians,@JoeBiden,I wish this Senate would force a consensus choice—as we did with Justice Kennedy—it no longer has the will. +06/28/2018,Politicians,@JoeBiden,I wish this President would engage in conversations and nominate a consensus candidate. That’s what we’ve done in t… https://t.co/WDOIF2zWgj +06/28/2018,Politicians,@JoeBiden,"I said a year ago we’re living through a battle for the soul of this nation. Now there can be no doubt. Roe, Oberge… https://t.co/Vao0twNtQb" +06/27/2018,Politicians,@JoeBiden,"Inspired by the patients, families, clinicians, and researchers of @stjuderesearch I met earlier this month. They a… https://t.co/ifsZxuRnCh" +06/26/2018,Politicians,@JoeBiden,We don’t need to treat migrants from Central America with cruelty to strengthen US border security. We need persona… https://t.co/2iq6gJxKX4 +06/20/2018,Politicians,@JoeBiden,"A policy that separates young children from their parents isn’t a “deterrent”. It’s unconscionable. + +A policy that… https://t.co/IjWCFZoxRq" +06/16/2018,Politicians,@JoeBiden,"RT @PoetryInAmerica: For #FathersDay, we’re giving free access to our episode on Robert Hayden’s “Those Winter Sundays,” available at https…" +06/15/2018,Politicians,@JoeBiden,RT @BidenCancer: Why this new cancer award may matter more than most https://t.co/WqgCgGlWFD via @FortuneMagazine +06/15/2018,Politicians,@JoeBiden,"RT @DrBiden: Sometimes, it’s the smallest kindness that can make the biggest difference. FIERCE Awards celebrate exceptional people doing i…" +06/11/2018,Politicians,@JoeBiden,RT @DrBiden: Parents: Important information on how to keep your kids safe this summer from @BeauBidenFdn. Review & share. https://t.co/HLkD… +06/09/2018,Politicians,@JoeBiden,"PEPFAR is one of the most successful, effective, and world-changing initiatives the United States has ever led. Now… https://t.co/HFIh0MTOAu" +06/09/2018,Politicians,@JoeBiden,Jamie Dimon & Warren Buffett's call to end quarterly guidance is an important step toward ending our nation's cultu… https://t.co/UQI5onBW80 +06/08/2018,Politicians,@JoeBiden,"GOP all-out assault on healthcare continues. First, they want to cut funding for CHIP. Now DOJ trying to end protec… https://t.co/Vp7Ts6cTel" +06/08/2018,Politicians,@JoeBiden,"Putin’s Russia invaded its neighbors, violated our sovereignty by undermining elections, and attacks dissidents abr… https://t.co/k5egKTRHce" +06/07/2018,Politicians,@JoeBiden,RT @DrBiden: Join us and follow the #WalkOfAmerica journey at @supportthewalk & learn more about the entire team: https://t.co/mEK9WQLVTe (… +06/07/2018,Politicians,@JoeBiden,RT @DrBiden: Joe and I checked in with the amazing military veterans of the #WalkOfAmerica team & were so inspired to hear how they're doin… +06/06/2018,Politicians,@JoeBiden,"They may have murdered our heroes, but the dream still lives buried deep in our broken hearts. Fifty years after he… https://t.co/wGoNN4hUhs" +05/31/2018,Politicians,@JoeBiden,"Last year, Virginians showed up to elect leaders who believe health care is a right, not a privilege. As a result,… https://t.co/z0RNPoQCnM" +05/30/2018,Politicians,@JoeBiden,"Looking forward to continuing my #AmericanPromiseTour in June and discussing “Promise Me, Dad” with these inspiring… https://t.co/3DAv8Ypy9Q" +05/29/2018,Politicians,@JoeBiden,"RT @DrBiden: Today, as we remember all the brave men & women who have made the ultimate sacrifice for our country, let's also honor their f…" +05/28/2018,Politicians,@JoeBiden,"Our men & women in uniform are the heart, the soul, and the spine of this nation. Today we remember those among the… https://t.co/tDDOxhNoU1" +05/27/2018,Politicians,@JoeBiden,"In a moment of crisis, Jason Seaman showed incredible courage. Running directly into gunfire to save his students’… https://t.co/GqNHai3Wuv" +05/25/2018,Politicians,@JoeBiden,"Today, the @OECD officially invited Colombia to become its 37th member. Congratulations to President… https://t.co/WwXSAneYmO" +05/22/2018,Politicians,@JoeBiden,It favors the powerful over the powerless and stacks the deck even further against working people. It's wrong. +05/22/2018,Politicians,@JoeBiden,Yesterday’s Supreme Court decision was a huge blow to workers. It denies them the ability to take their employers… https://t.co/Y7PhFly9YD +05/21/2018,Politicians,@JoeBiden,"Everyone deserves to be treated with dignity and respect, but too many LGBTQ Americans are still denied this basic… https://t.co/aXBMcLOWwP" +05/18/2018,Politicians,@JoeBiden,Enough is enough is enough. Decent people have to take a stand. These are our children. +05/18/2018,Politicians,@JoeBiden,"Count me in, @De11eDonne. Proud to take a stand with you and the incredible athletes of @WNBA who are partnering wi… https://t.co/p2UIYnqr3W" +05/16/2018,Politicians,@JoeBiden,"Guys, if you see one of your classmates trying to take advantage of a woman who did not or could not consent, you m… https://t.co/5P4SS7qYtA" +05/15/2018,Politicians,@JoeBiden,Harry Reid is literally and figuratively a fighter. I’m looking forward to working with him again soon. My thoughts… https://t.co/HVCOwtdWS8 +05/15/2018,Politicians,@JoeBiden,"On behalf of the whole Biden family, I’d like to offer our thoughts and best wishes to @FLOTUS for a swift and full recovery." +05/15/2018,Politicians,@JoeBiden,Joined today @UDBidenInst by one of the most brilliant public servants I’ve ever worked with: @ErnestMoniz. By inve… https://t.co/ySvVcwdUV9 +05/12/2018,Politicians,@JoeBiden,Free and fair elections are at the heart of liberal democracy. That’s why I’ve joined @AndersFoghr and Michael Cher… https://t.co/L06qrkKYaj +05/08/2018,Politicians,@JoeBiden,"Today’s announcement that the United States will withdraw from the Iran nuclear deal is a profound mistake. + +https://t.co/Odx33rBf3V" +05/04/2018,Politicians,@JoeBiden,RT @DrBiden: Our hearts ache for the families of the brave airmen of the Puerto Rico National Guard killed in this week’s crash in SC. Thei… +04/25/2018,Politicians,@JoeBiden,Every person is entitled to be treated with dignity and respect. But far too often LGBTQ youth in this country are… https://t.co/WwiyzG96IE +04/20/2018,Politicians,@JoeBiden,"Cancer patients and their families deserve a system that puts saving lives above every other thing. With your help,… https://t.co/4PnsHyykqD" +04/19/2018,Politicians,@JoeBiden,Testing rape kits should & must be a national priority. I’m proud to have been interviewed for @Mariska’s… https://t.co/w5tGbmpX3Q +04/18/2018,Politicians,@JoeBiden,"RT @bidenfoundation: Tune in NOW to watch @JoeBiden, @ItsOnUs and more recognize the bravery of students who are leading the fight to end s…" +04/18/2018,Politicians,@JoeBiden,There was no one else quite like Barbara Bush. Jill and I — and the entire Biden family — send our heartfelt condol… https://t.co/Tiia0XYyGq +04/15/2018,Politicians,@JoeBiden,"Five years after an act of hate struck Boston, the thousands of acts of charity and compassion on #OneBostonDay rem… https://t.co/pGUol7OnNn" +04/05/2018,Politicians,@JoeBiden,The United States should be leading on this issue. Improving transparency is one essential step to ending the pay g… https://t.co/2thryhh495 +04/04/2018,Politicians,@JoeBiden,Dr. King was proof that the promise of America can beat so strongly in the heart of one person they can move this n… https://t.co/8sohByaYOH +04/03/2018,Politicians,@JoeBiden,"RT @DrBiden: Congratulations to @NovaMBB on tonight’s win, especially Delaware’s own Donte DiVincenzo! Always glad to see a Philly team tak…" +04/02/2018,Politicians,@JoeBiden,I’m grateful to have the opportunity to continue the #AmericanPromiseTour in June and hear from so many more people… https://t.co/7rIwW6p1hB +03/28/2018,Politicians,@JoeBiden,RT @DrBiden: (1/3) Help me & @bidenfoundation recognize our nation’s incredible #military kids & thank them for the sacrifices they make to… +03/28/2018,Politicians,@JoeBiden,"Cierra, you remembered the most important thing I had to say. You will beat this. + +And as I’ve always said, if ther… https://t.co/3wuRYgbUiu" +03/26/2018,Politicians,@JoeBiden,My mother often reminded me that “bravery resides in every heart and some day it will be summoned.” Lt. Col. Arnaud… https://t.co/FbCjXR1HH5 +03/22/2018,Politicians,@JoeBiden,"At @UDBidenInst, we’re working on the pressing domestic policy challenges of our time. But we can't do it alone. I… https://t.co/LEke7FevbK" +03/22/2018,Politicians,@JoeBiden,Our top priority should be investing in our workers by 1. ensuring they have the skills & opportunities to get a go… https://t.co/hymhHBmaJw +03/20/2018,Politicians,@JoeBiden,"Let’s give patients full electronic medical records within 24 hours of request, a safe place to store them, and a t… https://t.co/LO1lUXXn5X" +03/17/2018,Politicians,@JoeBiden,"RT @HeidiHeitkamp: North Dakotans have a strong, tough work ethic & don't quit until they get the job done. VP @JoeBiden shares this same q…" +03/16/2018,Politicians,@JoeBiden,"Louise Slaughter was an unparalleled champion for women. I worked with her on the Violence Against Women Act, and I… https://t.co/LL5E7Uk6Iz" +03/14/2018,Politicians,@JoeBiden,The people of Pennsylvania’s 18th district showed up yesterday. They demonstrated that they want to be represented… https://t.co/hT9bOWBKdm +03/12/2018,Politicians,@JoeBiden,I was in southwestern Pennsylvania with @ConorLambPA last week. Something's changing out there. You can feel the gr… https://t.co/PBoQOoCTwV +03/08/2018,Politicians,@JoeBiden,"Everyone does better when women are able to rise as high as their talents will take them. + +On this International Wo… https://t.co/lP8vHdataP" +03/07/2018,Politicians,@JoeBiden,"Sarah, I'm incredibly proud of you. You're a woman of real courage. https://t.co/kQlQdGWlbt" +02/28/2018,Politicians,@JoeBiden,"It takes courage to speak out against sexual assault, or to step in to stop it from happening. + +If you know someon… https://t.co/Giy6NOfylg" +02/26/2018,Politicians,@JoeBiden,"We need to give young immigrants who came to our country as children permanent assurance that they are safe here, a… https://t.co/iIKBeACnCr" +02/23/2018,Politicians,@JoeBiden,"When I wrote the Violence Against Women Act in 1994, it included a provision that empowered women to take abusers t… https://t.co/TYubZkpm2y" +02/22/2018,Politicians,@JoeBiden,Rev. Graham was spiritual advisor to a dozen Presidents - and countless millions of Americans. We remember his exam… https://t.co/wr0N6JCLaq +02/15/2018,Politicians,@JoeBiden,I am at a loss for what more to say. I grieve with the families in Parkland today. I grieve with the families acros… https://t.co/PaYjuPSkw8 +02/14/2018,Politicians,@JoeBiden,We need to believe women like Colbie. We need to recognize the incredible courage it takes for women like her to co… https://t.co/oyPN3H9klg +02/14/2018,Politicians,@JoeBiden,We had the honor of having Jesmyn Ward moderate the 30th event on the #AmericanPromiseTour last night. It was wonde… https://t.co/gpsK1Kbr5L +02/10/2018,Politicians,@JoeBiden,I’m in Indianapolis with @southcity22 and we have a message for thousands of fraternity brothers and sorority siste… https://t.co/XWbaPwGHcb +02/09/2018,Politicians,@JoeBiden,William Gay is the real deal - on and off the field. He’s using his voice to get other men involved to end sexual a… https://t.co/9ROOwHCPGW +02/09/2018,Politicians,@JoeBiden,Incredible day opening the new @PennBiden Center in Washington. We're working on the foreign policy challenges of t… https://t.co/SPyK9u63bA +02/05/2018,Politicians,@JoeBiden,"RT @DrBiden: Video speaks for itself. Congrats, @Eagles! #SuperBowlLll https://t.co/dedjLtDQSw" +02/05/2018,Politicians,@JoeBiden,"This team never gave up. No matter the injuries, no matter the odds. They showed incredible heart. What a great win… https://t.co/ZBNIvTZX7j" +02/01/2018,Politicians,@JoeBiden,"RT @bidenfoundation: One year ago, our journey started. We’re thankful for this year of progress, collaboration, and purpose, and we’re eag…" +01/31/2018,Politicians,@JoeBiden,"Proud to call you a friend, @RepJoeKennedy. You captured the idealism and optimism of our party — and this nation.… https://t.co/pVmZ4Rwsmq" +01/23/2018,Politicians,@JoeBiden,This country has made great progress in changing the culture around advancing LGBTQ equality and ending violence ag… https://t.co/zVGPMxwfYt +01/15/2018,Politicians,@JoeBiden,"Dr. King said that change “comes through continuous struggle.” As we celebrate his legacy today, we’re once again l… https://t.co/zyHlqpFCyi" +01/12/2018,Politicians,@JoeBiden,"It’s not how a president should speak. It’s not how a president should behave. Most of all, it’s not what a preside… https://t.co/9XqCQfB056" +01/08/2018,Politicians,@JoeBiden,"RT @DrBiden: 3 years ago, @BarackObama & I announced a plan for #FreeCommunityCollege. + +Today there are free tuition programs in 16 states…" +01/01/2018,Politicians,@JoeBiden,"Boston has had many great mayors in its remarkable history, and @marty_walsh can proudly take his place among any o… https://t.co/8by2JjmBu4" +12/24/2017,Politicians,@JoeBiden,"Jill and I, and the whole Biden family, want to wish you a happy, healthy, and safe holiday season. https://t.co/X2xHY8pjtT" +12/15/2017,Politicians,@JoeBiden,It’s been five years since 20 first-graders and 6 educators were murdered by a gunman at Sandy Hook Elementary Scho… https://t.co/TzfjtrOXTQ +12/13/2017,Politicians,@JoeBiden,"Ann Arbor - I’m terribly sorry I won’t get to see you this evening, but we want to make sure everyone can safely ma… https://t.co/aRHCZ1jjun" +12/13/2017,Politicians,@JoeBiden,Help your friends and loved ones get the peace of mind of health insurance for 2018. Remind them that this Friday i… https://t.co/zVRwxpu1eP +12/13/2017,Politicians,@JoeBiden,"Doug Jones. Thank you, Alabama. You’ve elected a man of incredible integrity, grit, and character. A fighter for wo… https://t.co/sOLcmRMQOk" +12/11/2017,Politicians,@JoeBiden,"Tomorrow, the people of Alabama will decide whether the United States Senate will gain the courage, character, and… https://t.co/E1JxiCr5Yr" +12/11/2017,Politicians,@JoeBiden,"The people of California are on my mind as they suffer through these devastating wildfires. Amidst the loss, I’m in… https://t.co/KgpeOqcfb9" +12/11/2017,Politicians,@JoeBiden,"It’s a little too cold for ice cream in Madison, but I hope you liked the cupcakes all the same. Thanks for spendin… https://t.co/dnhLw7XkBY" +12/06/2017,Politicians,@JoeBiden,Be who you are. Stand for what you are. Few people embody that better than @melindagates. Enjoyed discussing… https://t.co/J6V2w4zxGx +12/06/2017,Politicians,@JoeBiden,I'm going to keep speaking out on the importance of standing up to the Kremlin through my work @PennBiden. My colle… https://t.co/hKcBgoWZU2 +12/04/2017,Politicians,@JoeBiden,RT @bidensbriefing: “We Are Living Through A Battle For The Soul Of This Nation”: An op-ed I wrote in the days following the violence and h… +12/02/2017,Politicians,@JoeBiden,"I've been on the road talking about #PromiseMeDad, the book I wrote about my son Beau, but I've been most amazed li… https://t.co/WafkI12S5Q" +12/01/2017,Politicians,@JoeBiden,No one who has ever met Sandy Winnefeld has doubted his strength or resolve. And no one who reads this article will… https://t.co/hbSJEHnmf9 +12/01/2017,Politicians,@JoeBiden,One of the best shines I’ve ever had. https://t.co/1BwrihNF32 +11/29/2017,Politicians,@JoeBiden,"Throughout my career in public service, I’ve heard a lot of great ideas, and developed a few of my own. Now we want… https://t.co/h0QbdZQDjT" +11/29/2017,Politicians,@JoeBiden,"Every week, we’ll hear from leaders in business, politics, academics—and everyday Americans sharing bright ideas th… https://t.co/0NndpuDpnQ" +11/29/2017,Politicians,@JoeBiden,"Today I’m announcing the launch of the Biden Forum, a new space for conversations about America’s future:… https://t.co/8Yo1wcHeo6" +11/25/2017,Politicians,@JoeBiden,"Today, on the International Day for the Elimination of Violence Against Women, let's remember all the work that rem… https://t.co/Uw78owAUg4" +11/22/2017,Politicians,@JoeBiden,Thank you to the #AmericanPromiseTour moderators and thousands of readers who attended events or picked up a copy o… https://t.co/sT6575BdT8 +11/12/2017,Politicians,@JoeBiden,May today serve as a reminder of our solemn duty to look after the men and women who have served in our Armed Force… https://t.co/52zsLxmxVw +11/12/2017,Politicians,@JoeBiden,"RT @DrBiden: To all our service men and women, veterans, and military families, thank you for your sacrifice. #VeteransDay2017 https://t.co…" +11/09/2017,Politicians,@JoeBiden,"You’re going to make us all proud, Danica. https://t.co/doouBh0qME" +11/08/2017,Politicians,@JoeBiden,Juanita Perez Williams ran an incredible campaign in Syracuse. So proud of the work she did. And still hoping for a… https://t.co/51yXACbGLp +11/08/2017,Politicians,@JoeBiden,And mayors like Rick Kriseman and Joyce Craig who are incredible leaders in their communities. +11/08/2017,Politicians,@JoeBiden,"State legislators like Sara Cambensy in Michigan and Danica Roem, Jennifer Carroll Foy, David Reid, John Bell, and… https://t.co/DIsK7TXE9m" +11/08/2017,Politicians,@JoeBiden,"Candidates like Ralph Northam and Justin Fairfax, who will ensure that Virginia’s economic recovery continues to re… https://t.co/wIEMXQ4RF8" +11/08/2017,Politicians,@JoeBiden,A resounding defeat tonight for President Trump. Voters around the country rejected the ugly politics we have seen… https://t.co/Hl9M7wLfry +11/06/2017,Politicians,@JoeBiden,"Folks, there's an election happening tomorrow. We've got to keep our eye on the ball. Let's get this done. https://t.co/UWl53fswMz" +11/06/2017,Politicians,@JoeBiden,These tragedies aren’t inevitable. Don’t let hopelessness win today. We must persist in our efforts to prevent gun violence. +11/06/2017,Politicians,@JoeBiden,Americans again murdered in a place of worship. Jill and I send our prayers to Sutherland Springs. +11/01/2017,Politicians,@JoeBiden,Don’t let politics & misinformation keep your loved ones from getting health insurance. Call/text them today to make sure they sign up! +11/01/2017,Politicians,@JoeBiden,Today is the first day to sign up for 2018 health insurance through https://t.co/3CYKhP8ZoR. Deadline is December 1… https://t.co/P9LK1rMEBI +11/01/2017,Politicians,@JoeBiden,"New York, we love you. Grateful to first responders who saved lives today. Jill and I are keeping you all in our prayers." +10/25/2017,Politicians,@JoeBiden,"Honored to work with a woman of great courage, my friend @ladygaga. With her leadership, and your help, we can chan… https://t.co/gtRifmIR9h" +10/24/2017,Politicians,@JoeBiden,"Alabama, this gets to the heart of why you should vote for Doug Jones on December 12th. A man of incredible integri… https://t.co/dn2nNjzNDe" +10/23/2017,Politicians,@JoeBiden,"RT @UDBidenInst: ""Like yesterday's factory workers, tmrw's workforce needs unions to keep the American dream alive."" - @MaryKayHenry https:…" +10/23/2017,Politicians,@JoeBiden,RT @bidensbriefing: My essay on our fight to end sexual assault on campus. https://t.co/LkjXs3c5FY @ItsOnUs @marieclaire #ItsOnUs #bidensbr… +10/18/2017,Politicians,@JoeBiden,"Looking forward to discussing my new book PROMISE ME, DAD with these inspiring individuals on #AmericanPromiseTour… https://t.co/VQ0Xlr77UB" +10/17/2017,Politicians,@JoeBiden,RT @JohnKasich: Looking forward to joining VP @JoeBiden for a discussion at @UDBidenInst about how we can bridge the divide facing our nati… +10/17/2017,Politicians,@JoeBiden,"@JohnKasich @UDelaware @UDBidenInst There's a lot at stake, but John and I are still optimistic. I hope you'll tune… https://t.co/kGtAaXl3gJ" +10/17/2017,Politicians,@JoeBiden,Looking forward to welcoming Gov @JohnKasich to @UDelaware @UDBidenInst to discuss bridging partisan divides & restoring faith in government +10/17/2017,Politicians,@JoeBiden,"RT @BarackObama: I'm grateful to @SenJohnMcCain for his lifetime of service to our country. Congratulations, John, on receiving this year's…" +10/17/2017,Politicians,@JoeBiden,John McCain is the real deal. A model public servant. And my dear friend. I was honored to present him with the 2017 #LibertyMedal tonight. +10/13/2017,Politicians,@JoeBiden,Unilaterally putting the Iran deal at risk does not isolate Iran. It isolates us: https://t.co/Cj1zu126bb +10/12/2017,Politicians,@JoeBiden,Proud to be at @RutgersU today with survivors & activists working to change the campus culture on sexual assault. #ItsOnUs +10/12/2017,Politicians,@JoeBiden,"RT @bidenfoundation: At 2pm ET, @JoeBiden will be live at @RutgersU to tell students #ItsOnUs to end sexual assault. Watch live at https://…" +10/05/2017,Politicians,@JoeBiden,RT @DrBiden: Inspired by teachers around the globe who help students like these in Zambia reach their dreams. #WorldTeachersDay https://t.c… +10/05/2017,Politicians,@JoeBiden,"Spoke to my friend Jim Murren, so proud of the men and women at MGM Resorts. #VegasStrong" +10/04/2017,Politicians,@JoeBiden,"Jalal Talabani was a champion of the US-Iraq partnership and a friend, whose unifying leadership will be missed." +10/03/2017,Politicians,@JoeBiden,Barack & Michelle: all of the Bidens send our love today on your 25th anniversary. May you have many more years of joy still to come. +10/03/2017,Politicians,@JoeBiden,"RT @DrBiden: On this heartbreaking day, our love to families who lost loved ones & gratitude to first responders in #LasVegas." +10/02/2017,Politicians,@JoeBiden,How long do we let gun violence tear families apart? Enough. Congress & the WH should act now to save lives. There's no excuse for inaction. +10/02/2017,Politicians,@JoeBiden,Appalled by the senseless loss of life in Las Vegas. Jill and I hold all those affected and grieving in our hearts. +09/29/2017,Politicians,@JoeBiden,RT @bidenfoundation: The Bidens caught up with @BarackObama and Prince Harry before cheering on Team USA today at @InvictusToronto. https:/… +09/29/2017,Politicians,@JoeBiden,Now is not the time to go backward—it's on all of us to stop sexual violence. https://t.co/EUh61Mjmit +09/29/2017,Politicians,@JoeBiden,"There is only one way to confront hatred and prejudice: head on. Well said, Lt. Gen Silveria. https://t.co/vQ2Aflo8Tx" +09/28/2017,Politicians,@JoeBiden,"We Veeps stick together. Jill and I, and all of the Bidens, are with you, Julia. https://t.co/JP0c2wtrJ6" +09/28/2017,Politicians,@JoeBiden,"Steve Scalise’s strength and resilience inspire all of us. Good to see you back on the job, Steve." +09/27/2017,Politicians,@JoeBiden,"Southern Florida chose a proven leader and consensus builder yesterday. Congratulations to @Annette_Taddeo, Florida’s newest State Senator." +09/25/2017,Politicians,@JoeBiden,Beau fought to protect the most vulnerable among us. Thanks to my friend @barackobama for honoring his life’s work… https://t.co/2WsWWYPwc9 +09/25/2017,Politicians,@JoeBiden,RT @BeauBidenFdn: Read about the devastating case that prompted Beau to train 5% of Delaware’s population in child abuse prevention: https:… +09/22/2017,Politicians,@JoeBiden,"Today's Title IX decision is shameful, but the law is still the law. Colleges & universities must honor obligations to students & survivors." +09/21/2017,Politicians,@JoeBiden,"@UDBidenInst @PennyPritzker @Airbnb @LinkedIn On the @UDBidenInst blog, @LinkedIn's @allenb says better data & ment… https://t.co/nYBJks88sg" +09/21/2017,Politicians,@JoeBiden,"@UDBidenInst @PennyPritzker @Airbnb @LinkedIn Following @UDBidenInst’s forum on work, @Airbnb's @bchesky writes how… https://t.co/qM8kvrbNuD" +09/20/2017,Politicians,@JoeBiden,"On the new @UDBidenInst blog, @PennyPritzker, @Airbnb & @LinkedIn share strategies to help American workers succeed: https://t.co/ZMPkwBcBsu" +09/20/2017,Politicians,@JoeBiden,Sending prayers to all who lost loved ones in the devastating earthquake. We are seeing the resilience and heart of the Mexican people. +09/19/2017,Politicians,@JoeBiden,"#ItsOnUs is making great progress toward ending sexual assault, but today we face new challenges: https://t.co/gUdR13uYeY" +09/19/2017,Politicians,@JoeBiden,Just had the chance to see President Trump's golf swing tweet. Enough. This has to stop. Our children are watching. +09/18/2017,Politicians,@JoeBiden,Here's a path forward to choose a future that puts work first: https://t.co/Y6B2q21nHF +09/18/2017,Politicians,@JoeBiden,My new initiative at the Biden Institute will identify strategies for building a future of quality jobs: https://t.co/Y6B2q21nHF +09/14/2017,Politicians,@JoeBiden,America is strongest when we lead with our values—at home and abroad. https://t.co/g8vGlXdeqz +09/13/2017,Politicians,@JoeBiden,"23 years ago today, the Violence Against Women Act became law. VAWA is changing the culture & saving lives, but our work continues. #VAWA23" +09/11/2017,Politicians,@JoeBiden,"16 years ago today, terror tried to break us. It did not, and will never, succeed. Our grit & determination are the strongest force I know." +09/10/2017,Politicians,@JoeBiden,Jill and I are praying for the safety of everyone in the path of Hurricane Irma this weekend. Stay strong - the country stands with you. +09/07/2017,Politicians,@JoeBiden,Any change that weakens Title IX protections will be devastating: https://t.co/8E3n3RIMTS +09/05/2017,Politicians,@JoeBiden,"Brought by parents, these children had no choice in coming here. Now they'll be sent to countries they've never known. Cruel. Not America." +08/27/2017,Politicians,@JoeBiden,"We are living through a battle for the soul of this nation. +https://t.co/2XtpeyhVex" +08/24/2017,Politicians,@JoeBiden,"A first look at the cover for my new book, PROMISE ME, DAD https://t.co/Ce1eY5Bghw https://t.co/QRXipZz0Ef" +08/17/2017,Politicians,@JoeBiden,Praying tonight for the victims of #Barcelona attack & their families. Heinous acts of terror cannot break the spirit of our Spanish friends +08/12/2017,Politicians,@JoeBiden,There is only one side. #charlottesville +08/12/2017,Politicians,@JoeBiden,"No. Not in America. We must be stronger, more determined and more united than ever. Racism and hate have no place here. #charlottesville" +08/04/2017,Politicians,@JoeBiden,"Your service has been a great gift to the country, and your friendship and brotherhood are a great gift to me. Happ… https://t.co/ZgvLlwelmu" +07/31/2017,Politicians,@JoeBiden,Thrilled to see the 2028 Olympics coming to Los Angeles. Thanks to @MayorOfLA Garcetti who worked hard to secure a big win for US athletics. +07/28/2017,Politicians,@JoeBiden,Hope to see you at a stop this fall on my #AmericanPromiseTour – tickets are available now: https://t.co/Y7IzxK9m5l https://t.co/LnW8Ob2ah8 +07/28/2017,Politicians,@JoeBiden,Thank you to everyone who tirelessly worked to protect the health care of millions. You saved lives. +07/26/2017,Politicians,@JoeBiden,To all of you working to stop Republicans’ devastating “health” bill: Thank you. We’re not done yet. Please keep going. +07/26/2017,Politicians,@JoeBiden,Any final bill that looks anything like their proposals so far would be devastating. +07/26/2017,Politicians,@JoeBiden,Every patriotic American who is qualified to serve in our military should be able to serve. Full stop. +07/24/2017,Politicians,@JoeBiden,"The GOP's ""health"" plan would gut care & treatment for opioid addiction. Call your senators—the time to act is now. https://t.co/ZHX7KZLgXk" +07/20/2017,Politicians,@JoeBiden,"Incredible progress in cancer research and treatment in just the last year offers new promise and new hope. You can win this fight, John." +07/20/2017,Politicians,@JoeBiden,John and I have been friends for 40 years. He's gotten through so much difficulty with so much grace. He is strong - and he will beat this. +07/17/2017,Politicians,@JoeBiden,@washingtonpost I was a senator for 36 years. I can assure you that your call matters. Your viewpoint might not alw… https://t.co/a6vOmJMTkp +07/17/2017,Politicians,@JoeBiden,"@washingtonpost Especially if you live in WV, NV, AK or OH now is the time to call your senators. Or, encourage you… https://t.co/waMFYIG3n5" +07/17/2017,Politicians,@JoeBiden,"@washingtonpost If you believe health care is a right for all, make sure your senators know that this bill is a big step backward." +07/17/2017,Politicians,@JoeBiden,@washingtonpost All Americans deserve the peace of mind that comes with knowing that you can get affordable care. B… https://t.co/p4K6xfLjYI +07/17/2017,Politicians,@JoeBiden,"@washingtonpost By denying this right, Republican leadership’s “health” bill is fundamentally flawed. It can’t even be fixed on the floor." +07/17/2017,Politicians,@JoeBiden,@washingtonpost Republican leadership's “health” bill would return us to a time when health care was a privilege fo… https://t.co/7NniG8ALfk +07/17/2017,Politicians,@JoeBiden,"Today, I wrote in the @washingtonpost about the big problem with the Republican leadership’s ""health"" bill: https://t.co/GYCeXPhWdX" +07/17/2017,Politicians,@JoeBiden,Excited to share news about #AmericanPromiseTour - a series of conversations I’m hosting around the country… https://t.co/ClcF0sZg5T +07/11/2017,Politicians,@JoeBiden,Jill & I send our condolences to the loved ones of service members lost in MS crash—those who wear the uniform are the heart of our nation. +07/04/2017,Politicians,@JoeBiden,"Happy 4th of July! America continues the march toward tolerance, diversity and equality of opportunity that began in 1776—that's patriotism." +06/26/2017,Politicians,@JoeBiden,We’re live in a few minutes to talk about how @BidenCancer will bring renewed urgency to the fight against cancer: https://t.co/1rcV1XdLmS +06/26/2017,Politicians,@JoeBiden,Jill and I are excited and ready to take the next step toward ending cancer. Are you with us? https://t.co/vVDk81oRtq +06/23/2017,Politicians,@JoeBiden,"Let's see a bill that actually tries to improve folks' health care, and then we can have a reasonable debate about how to best do that." +06/23/2017,Politicians,@JoeBiden,"Especially now, when so many communities are struggling with opioid addiction, the bill's drastic cuts to Medicaid are cruel." +06/23/2017,Politicians,@JoeBiden,"Slashing Medicaid hurts kids, the elderly, people with disabilities and those struggling with addiction. All for tax breaks for the wealthy." +06/23/2017,Politicians,@JoeBiden,The Senate health bill isn't about health care at all—it's a wealth transfer: slashes care to fund tax cuts for the wealthy & corporations. +06/20/2017,Politicians,@JoeBiden,"America’s soul is rooted in the promise of opportunity. We must protect, support & welcome refugees to keep that pr… https://t.co/uKJO1oFp2X" +06/18/2017,Politicians,@JoeBiden,Jill and I are praying for the people of Colombia and the families of the victims of tonight's bomb explosion. #BogotaEstoyContigo +06/15/2017,Politicians,@JoeBiden,"Congrats & good luck to my former staffer Dr. Tony Allen, incoming Provost of @DelStateUniv! A great fit for a passionate public servant." +06/14/2017,Politicians,@JoeBiden,"Jill and I are praying for the victims and their families. Grateful for courage of my former colleagues, first responders & Capitol Police." +06/12/2017,Politicians,@JoeBiden,"We meet unspeakable tragedy and hate with unbound resolve. I stand with the LGBTQ community, today and every day.… https://t.co/q9JZxJxIwG" +06/07/2017,Politicians,@JoeBiden,Honored to see Ecumenical Patriarch Bartholomew in Athens – his leadership on climate change and the environment is… https://t.co/qsRmdl7GWT +06/07/2017,Politicians,@JoeBiden,"Great to be with @PennBiden in Athens. A Europe whole, free, & at peace remains vital to U.S. security–as it has been for the past 7 decades" +06/03/2017,Politicians,@JoeBiden,"Congrats to Ambassador Andy Young, a dear friend and inspiration, on 85 years. Wish I could be in Atlanta tonight for AJY Leadership Awards." +06/01/2017,Politicians,@JoeBiden,We're already feeling impacts of climate change. Exiting #ParisAgreement imperils US security and our ability to own the clean energy future +06/01/2017,Politicians,@JoeBiden,"It's time for big dreams and #AmericanPossibilities. If you're ready to elect folks who agree, say you're in:… https://t.co/TF6zDVcyu9" +06/01/2017,Politicians,@JoeBiden,There’s no one better positioned on Earth to lead the world in the 21st century than America. We just have to believe it. +06/01/2017,Politicians,@JoeBiden,America is at its best when we’re OPTIMISTIC and we THINK BIG. +06/01/2017,Politicians,@JoeBiden,It’s time to remember who we are as Americans: Giving EVERYONE the opportunity to achieve the impossible. +07/02/2018,Politicians,@SenGillibrand,Grateful to @ProtectRDfnders and Col. Don Christensen for keeping up the pressure on this issue. We will not stop f… https://t.co/jrJ4ybDsC2 +07/02/2018,Politicians,@SenGillibrand,"New Yorkers could see their insurance premiums rise by as much as 24% next January, as the Trump administration’s m… https://t.co/binruy1ZH0" +07/02/2018,Politicians,@SenGillibrand,Here's the number for the Senate switchboard: 202-224-3121. Save it in your contact list. Call every day and tell e… https://t.co/m9M008TVUO +07/02/2018,Politicians,@SenGillibrand,"With a Supreme Court seat vacant, civil liberties are at risk. Our most fundamental rights could be eroded. Now, te… https://t.co/yMMOoC2sQe" +07/01/2018,Politicians,@SenGillibrand,"I know how hard things feel now, but we've faced challenges before and have overcome them. If you keep fighting for… https://t.co/ppuqeMlrOP" +07/01/2018,Politicians,@SenGillibrand,"A group of top ICE investigators who handle “national security threats, child pornography and transnational crime”… https://t.co/vrwoJunxV7" +07/01/2018,Politicians,@SenGillibrand,Take @realdonaldtrump at his word. He wants to “punish” women for exercising their reproductive freedom. He promise… https://t.co/wwkpDGCujL +07/01/2018,Politicians,@SenGillibrand,"@JessLivMo Jess, a big thanks to you, to @domesticworkers, @MoveOn, @ACLU, and others who worked so hard to organiz… https://t.co/hRuD54q9sH" +06/30/2018,Politicians,@SenGillibrand,Today’s #FamiliesBelongTogether march was a powerful statement to President Trump that we will not back down until… https://t.co/TqED9cg2Pd +06/30/2018,Politicians,@SenGillibrand,"I’ll be at the #FamiliesBelongTogether march tomorrow, adding my voice to the thousands refusing to sit back or sta… https://t.co/3C5R6RihM0" +06/29/2018,Politicians,@SenGillibrand,I'll be on tonight's episode of @allinwithchris to talk about the future of the Supreme Court. Tune in around 8:15p… https://t.co/hwDYhXRDxZ +06/29/2018,Politicians,@SenGillibrand,"With a Supreme Court seat on the line, President Trump is desperate to reelect @RosenforNevada’s opponent to be a r… https://t.co/aBvzP27VCz" +06/29/2018,Politicians,@SenGillibrand,"Across the country, state legislatures have already made significant moves to limit a woman's access to abortion an… https://t.co/KEeSeZJJBc" +06/29/2018,Politicians,@SenGillibrand,"I believe we need to protect families who need help, and ICE isn’t doing that. It has become a deportation force. W… https://t.co/vkwAsgifQH" +06/29/2018,Politicians,@SenGillibrand,I’m horrified by today’s shooting at the Capital Gazette. Journalists do vital work to further our democracy. They… https://t.co/v2R6PzX1ld +06/28/2018,Politicians,@SenGillibrand,Protesting to end family separation. https://t.co/hA6enBRKuW +06/28/2018,Politicians,@SenGillibrand,RT @kasie: .@SenGillibrand cheering on protestors in Hart as Capitol Police make arrests just feet away https://t.co/kBqDxSaBrB +06/28/2018,Politicians,@SenGillibrand,"With Justice Kennedy's retirement, there’s no doubt that women's reproductive freedom is on the ballot this fall. B… https://t.co/YncahqHa24" +06/28/2018,Politicians,@SenGillibrand,Women’s lives are at stake. I will fight for you to have a voice in the selection of our next Supreme Court justice… https://t.co/bjMqO0kvdl +06/28/2018,Politicians,@SenGillibrand,Any one of President Trump's list of proposed SCOTUS justices would overturn Roe v. Wade and threaten our fundament… https://t.co/5M4Yhq5BUE +06/27/2018,Politicians,@SenGillibrand,RT @adamslily: We live in a majority pro-choice country. We have a majority pro-choice Senate. This fight ain't over and it's for all the m… +06/27/2018,Politicians,@SenGillibrand,The President just said the next Supreme Court nominee WILL come from his list of 25 judges that passed his overtur… https://t.co/B43VL4jKq8 +06/27/2018,Politicians,@SenGillibrand,"Now that there is a vacancy, after the Garland heist, the balance of the court will be tilted even more against wom… https://t.co/v8YgKVjjgW" +06/27/2018,Politicians,@SenGillibrand,"In an economy that is rigged in favor of the wealthy and powerful, unions strengthen our communities, raise our wag… https://t.co/pI4m8m8ISY" +06/27/2018,Politicians,@SenGillibrand,"RT @ilyseh: As the threats to the fundamental freedoms of women grow from a hostile Court, so does the movement for gender equity. My thoug…" +06/27/2018,Politicians,@SenGillibrand,Janus v. AFSCME was nothing short of a political attack on public sector unions at the behest of corporate interest… https://t.co/pE4WLc1qDM +06/27/2018,Politicians,@SenGillibrand,Congratulations to Alexandria Ocasio-Cortez (@Ocasio2018) for running an impressive race in #NY14 and making history. +06/27/2018,Politicians,@SenGillibrand,Supporting Democrats running to flip Republican seats and take back the Senate is the single most powerful thing yo… https://t.co/r9h2B98xPn +06/26/2018,Politicians,@SenGillibrand,I don’t understand why men continue to tell women what to do with their bodies. Every woman on the Supreme Court op… https://t.co/SPWzLKN8DE +06/26/2018,Politicians,@SenGillibrand,"RT @WeDemandJustice: BREAKING: Sen. Gillibrand announces she's a ""NO"" on all of Trump's SCOTUS shortlisters if confirmation fight happens t…" +06/26/2018,Politicians,@SenGillibrand,We need fair-minded judges who will uphold the value of equality. This current list represents a clear danger to wo… https://t.co/JHx7vrYjIV +06/26/2018,Politicians,@SenGillibrand,"If a vacancy occurs during this term, after the Garland heist, the balance of the court could be tilted even more a… https://t.co/qSYQddrBpr" +06/26/2018,Politicians,@SenGillibrand,"It is clear that the president wants to use the courts to shape policy that he can’t get passed through Congress, l… https://t.co/RntLwgvJYw" +06/26/2018,Politicians,@SenGillibrand,"The Roberts Court has repeatedly put corporations over people, including the dangerous Epic Systems decision, which… https://t.co/Eqsy0ROo45" +06/26/2018,Politicians,@SenGillibrand,I second Justice Sotomayor’s words. https://t.co/scnCKXEgnF +06/26/2018,Politicians,@SenGillibrand,We cannot—we must not—stop speaking out. We cannot sit back and let these intolerant actions define who we are. You… https://t.co/08SoFxEriW +06/26/2018,Politicians,@SenGillibrand,"Like I’ve said since the day President Trump announced this terrible Executive Order, our country’s willingness to… https://t.co/QRS5mmjC08" +06/26/2018,Politicians,@SenGillibrand,The president’s travel ban flies in the face of every value on which our country was built. The Supreme Court’s dec… https://t.co/NH1UdDiIyr +06/26/2018,Politicians,@SenGillibrand,"Wendy Davis showed us what it means to raise your voice, as she was relentless in filibustering against an anti-abo… https://t.co/7Jg6nOXWhv" +06/25/2018,Politicians,@SenGillibrand,We are indebted to Chief Spadafora's heroism and decades of service to New York City. Sending my deepest condolence… https://t.co/D1XM3xfHKZ +06/24/2018,Politicians,@SenGillibrand,2018 is defined by women. Women are running for office in record numbers – and they're mobilizing other women to ra… https://t.co/MD8gxePTiz +06/24/2018,Politicians,@SenGillibrand,"No community is better served by having hungry children. That's why I'll keep pushing to pass my legislation, the S… https://t.co/eZHs0TYPvK" +06/24/2018,Politicians,@SenGillibrand,"When we know that kids in this country are going to bed hungry, we have a moral obligation to act. I find it so dis… https://t.co/jhFamwPNnG" +06/23/2018,Politicians,@SenGillibrand,Please send urgent support to these organizations providing legal aid and critical assistance to families at the bo… https://t.co/yWPycNIoOo +06/23/2018,Politicians,@SenGillibrand,Our fight for families separated at the border is far from over. This administration still has no clear plan to reu… https://t.co/tDUgAZxcRP +06/22/2018,Politicians,@SenGillibrand,"Had a great day in Buffalo with @CPeoplesStokes! We met with the Restore Our Community Coalition, a group working t… https://t.co/wpcG0SbS7T" +06/22/2018,Politicians,@SenGillibrand,"RT @pantsuitnation: Thank you for joining us this week on the podcast, @SenGillibrand! https://t.co/XK3IBv0VI8 https://t.co/7hdpJq6lV9" +06/22/2018,Politicians,@SenGillibrand,"While we were watching the crisis that continues to unfold at our borders, Congressional Republicans unveiled a bud… https://t.co/9lOTkrp3Yj" +06/21/2018,Politicians,@SenGillibrand,"We stopped the first inhumane policy, but this administration has completely lost its moral conscience. It’s up to… https://t.co/k1sWK2OOnG" +06/21/2018,Politicians,@SenGillibrand,"Reports say ICE has taken children away from the border, further from their families, to facilities in Michigan, Il… https://t.co/YNvHWoAzlF" +06/21/2018,Politicians,@SenGillibrand,"President Trump wants credit for ending the child separation policy he started. But the cruelty hasn’t stopped, and… https://t.co/SC3AAXIPs1" +06/21/2018,Politicians,@SenGillibrand,RT @getots: From being shot down by enemy fire in Afghanistan as a combat pilot to helping overturn the sexist ban on women in ground comba… +06/21/2018,Politicians,@SenGillibrand,RT @KeepitMadeinUSA: Senator Kirsten Gillibrand is pushing legislation that would allow New York towns or counties to apply for status as a… +06/21/2018,Politicians,@SenGillibrand,"By telling insurance companies they could no longer deny coverage or charge more for pre-existing conditions, the A… https://t.co/rEnGtIXn92" +06/21/2018,Politicians,@SenGillibrand,"RT @NYDailyNews: .@realdonaldtrump must reunite devastated families. Now. https://t.co/viIqoV6gyo + +PLUS: @ICEgov detentions of unaccompanie…" +06/21/2018,Politicians,@SenGillibrand,We must keep raising our voices and fighting the Trump administration's treatment of immigrants and refugees. How a… https://t.co/fdXUoi3ShR +06/20/2018,Politicians,@SenGillibrand,"This is inhumane, cruel, and immoral. The president must stop this today. This policy isn't ""tough"", it's the act o… https://t.co/hwBTN3PkIN" +06/20/2018,Politicians,@SenGillibrand,"On #WorldRefugeeDay, our own government is creating a humanitarian crisis at our border and causing unthinkable pai… https://t.co/uQ8mbQIjdh" +06/20/2018,Politicians,@SenGillibrand,".@HHSgov, @DHSgov let him in. https://t.co/TXYcUKuJiw" +06/20/2018,Politicians,@SenGillibrand,"New York has the best manufacturing tradition in the country. Now, we need to do everything we can to keep that tra… https://t.co/iSvv5hC4Ev" +06/19/2018,Politicians,@SenGillibrand,"My bipartisan bill, the Made in America Manufacturing Communities Act, that would give communities all over New Yor… https://t.co/6rzPnKX2J7" +06/19/2018,Politicians,@SenGillibrand,#Juneteenth is the day we commemorate the abolition of slavery in our country. While we’ve made great strides towar… https://t.co/DH2ZIsQnLH +06/19/2018,Politicians,@SenGillibrand,The Department of Homeland Security is tearing young children away from their parents. It is abhorrent. It is immor… https://t.co/fjzn7krOxh +06/18/2018,Politicians,@SenGillibrand,"Every Democratic senator is co-sponsoring the Keep Families Together Act, but not one Republican has signed on. Cal… https://t.co/Y1g6hduPbj" +06/18/2018,Politicians,@SenGillibrand,"Cages. + +The government is tearing young children away from their parents, putting them in cages, sending them to t… https://t.co/aJb1XlKk1y" +06/17/2018,Politicians,@SenGillibrand,"We can pass the Keep Families Together Act to stop the humanitarian crisis at our border, but only if you’re so lou… https://t.co/wadve9qloO" +06/17/2018,Politicians,@SenGillibrand,"Susan B. Anthony’s bravery reminds us of the impact a single voice can have, and to raise our own as loudly as poss… https://t.co/FsYncR1TZT" +06/16/2018,Politicians,@SenGillibrand,Xiu Qing You was simply seeking to adjust his immigration status so that he could continue providing for his family… https://t.co/pgiJRrFFfz +06/16/2018,Politicians,@SenGillibrand,A breastfeeding mother at a detention center had her daughter ripped away. Border agents tell parents they’re takin… https://t.co/HIc42QR29s +06/16/2018,Politicians,@SenGillibrand,"But Trump won Arizona by four points, and Republicans are spending big to win this seat. So we have to make sure Ky… https://t.co/wswWwKF88j" +06/16/2018,Politicians,@SenGillibrand,Public service is at the center of everything Kyrsten does. She overcame childhood homelessness to earn a full scho… https://t.co/27bcfKZPTx +06/16/2018,Politicians,@SenGillibrand,We need to do everything we can to get my friend @kyrstensinema to the Senate because she’s fighting in Arizona for… https://t.co/A8AMoB3E5J +06/15/2018,Politicians,@SenGillibrand,"DACA was announced on this day in 2012, laying a foundation for Dreamers to build a future in the country they call… https://t.co/wW4AoAj0NF" +06/15/2018,Politicians,@SenGillibrand,"""They’re passed over for promotions and raises. They’re fired when they complain."" + +Worth reading. The stories from… https://t.co/q5Jtc5MhCd" +06/15/2018,Politicians,@SenGillibrand,Most of us in NY know someone who has been affected by Lyme disease. But President Trump refuses to address this ep… https://t.co/eYlpadeIrr +06/15/2018,Politicians,@SenGillibrand,The Trump administration is separating children from families escaping violence and extreme poverty at our border.… https://t.co/bHqFG64RyX +06/15/2018,Politicians,@SenGillibrand,"What a beautiful night for baseball! Spending time with family, friends, and colleagues at tonight’s Congressional… https://t.co/zdNVFe04tU" +06/14/2018,Politicians,@SenGillibrand,"I’m a cosponsor. + +And yes, we can pass this bill—but we need you to raise your voice, loud and clear. + +Pick up the… https://t.co/UpCitR4SA8" +06/14/2018,Politicians,@SenGillibrand,Hosting a bipartisan dinner for women senators @belmontpaulnps this evening! I'm honored to get to host this dinner… https://t.co/1nN0J1oA3T +06/13/2018,Politicians,@SenGillibrand,"This is wrong on every level. Absolutely unconscionable. + +We’ve all read about dark moments in history and asked o… https://t.co/ROyURM0x3J" +06/13/2018,Politicians,@SenGillibrand,I’m fighting to #PassMJIA to make sure survivors can report military sexual assault and harassment without fear of… https://t.co/KxoNZvPRUx +06/13/2018,Politicians,@SenGillibrand,Ripping children from their parents and locking them in tent cities is a new low for this presidency. We should cal… https://t.co/TMCa4u29oY +06/12/2018,Politicians,@SenGillibrand,"Last night on @TheDailyShow, @GoLiveLifeWell, Col. Don Christensen and I sat down with @Trevornoah to discuss how t… https://t.co/wpuGVB2jP5" +06/12/2018,Politicians,@SenGillibrand,I hope North Korea is serious about this effort and determined to join the international community. And I encourage… https://t.co/iHQZwWG30d +06/12/2018,Politicians,@SenGillibrand,President Trump’s meeting with North Korea was the first step on a long road ahead. But now comes the hard work of… https://t.co/jZgKa2elW6 +06/12/2018,Politicians,@SenGillibrand,"While I believe that diplomacy is our best route to peaceful solutions, a deal with North Korea should never come a… https://t.co/oHfY2PV2bf" +06/12/2018,Politicians,@SenGillibrand,"Today, we stand with the LGBTQ community and remember the 49 people who lost their lives in the horrific shooting a… https://t.co/W6RP7b4VBS" +06/12/2018,Politicians,@SenGillibrand,Great thread from the incredible team @TIMESUPNOW about why we must #PassMJIA: https://t.co/7jRPRBKHyH +06/12/2018,Politicians,@SenGillibrand,The Senate could vote on MJIA any day. Now’s the time to speak out. Click below to call your senators – tell your f… https://t.co/AqWB0Wp7Qy +06/12/2018,Politicians,@SenGillibrand,I'm joining @GoLiveLifeWell and Col. Don Christensen of @ProtectRDfnders to discuss the Military Justice Improvemen… https://t.co/pFUrN5r7U3 +06/12/2018,Politicians,@SenGillibrand,"Today's SCOTUS decision is a huge, disappointing setback for voting rights. + +I urge you to speak out—and please, k… https://t.co/vcKxUVY3Gf" +06/12/2018,Politicians,@SenGillibrand,"Let’s not dance around it: By denying asylum to domestic violence victims fleeing their abusers, the administration… https://t.co/ZkSACOLqNG" +06/11/2018,Politicians,@SenGillibrand,"RT @MurrayCampaign: .@SenGillibrand, @DianneFeinstein, @elizabethforma and I are calling on @USGAO to help quantify the economic impacts of…" +06/11/2018,Politicians,@SenGillibrand,"If you live in VA, NV, ND, ME or SC, make sure you vote in tomorrow’s primaries. We have an opportunity to give a r… https://t.co/yRiHpyMJmj" +06/11/2018,Politicians,@SenGillibrand,"See you tonight, @trevornoah! https://t.co/7oRMhDbSFW" +06/11/2018,Politicians,@SenGillibrand,"#NetNeutrality protections end today, but let’s be clear: Our fight is far from over. The Senate voted to save the… https://t.co/NPFYZsL9wW" +06/10/2018,Politicians,@SenGillibrand,Congress needs to act now. Let’s remind them that our fellow Americans need our help. We need to refocus on PR. We… https://t.co/aqfmMbgQdz +06/10/2018,Politicians,@SenGillibrand,"As hurricane season begins, too many in PR still continue to suffer in the wake of Hurricane Maria. This storm was… https://t.co/Vw96LvtB5P" +06/10/2018,Politicians,@SenGillibrand,The Annual National Puerto Rican Day Parade is a chance to celebrate the many contributions Puerto Ricans have made… https://t.co/6OhDJUWHa3 +06/10/2018,Politicians,@SenGillibrand,"Today, on the 55th anniversary of the #EqualPayAct, we’re reminded that the fight for equality is not over. Women a… https://t.co/tdgujqdhsI" +06/09/2018,Politicians,@SenGillibrand,Each and every one of us has the power to make a difference. Each and every voice has the power to change the world… https://t.co/6Sc2zKFm1d +06/09/2018,Politicians,@SenGillibrand,".@SusieLeeNV is running to fight for public education, improve Obamacare and protect women's rights in #NV03. She’s… https://t.co/3YG3KcYj0e" +06/09/2018,Politicians,@SenGillibrand,We need @RosenforNevada in the Senate. But she’s facing a tough race this fall against a flood of dark money. She n… https://t.co/rRyvFRHKtl +06/09/2018,Politicians,@SenGillibrand,"As we’ve come together to stand behind Democratic women this year, we’ve seen victory after victory in primaries ac… https://t.co/JCKGhW2zn6" +06/09/2018,Politicians,@SenGillibrand,"I'm so honored to fight with YOU! Thank you for putting this together—I'll have to check if I can make it, but appr… https://t.co/CX2LfLklFl" +06/09/2018,Politicians,@SenGillibrand,"These children will never forget that when they arrived in the United States, the government ripped them away from… https://t.co/KhvgKMVzGm" +06/09/2018,Politicians,@SenGillibrand,"I was completely devastated after reading these stories. The Trump administration is carrying out a cruel, heartles… https://t.co/L7VKmpcvN2" +06/08/2018,Politicians,@SenGillibrand,"When women raise our voices, we’re a force for good as great as any this world has ever seen – especially when we d… https://t.co/ECR0tPYikQ" +06/08/2018,Politicians,@SenGillibrand,"On Sunday, July 22, I'm heading to OZY Fest in Central Park, joining an exciting lineup of performances and panels.… https://t.co/PJyIMr3xH7" +06/08/2018,Politicians,@SenGillibrand,ICE is acting recklessly and failing to respect human dignity. This administration's approach to immigration enforc… https://t.co/QV0csY5Kuv +06/08/2018,Politicians,@SenGillibrand,"Health care should be a right, not a privilege." +06/08/2018,Politicians,@SenGillibrand,"The Trump administration is trying to destroy the Affordable Care Act by refusing to defend it in court, another mo… https://t.co/HtVgHbEWOG" +06/07/2018,Politicians,@SenGillibrand,From @CWSoftballGame practice this morning. Feeling pretty good about this game. Team press better watch out! https://t.co/px8tF4Dx17 +06/07/2018,Politicians,@SenGillibrand,"I'll not stop fighting to fix our military justice system. This week, I filed my bill, the Military Justice Improve… https://t.co/4H1MGQjCsA" +06/07/2018,Politicians,@SenGillibrand,"The #EqualPayAct was passed 55 years ago, but the pay gap still exists. Gender or race should never impact your pay… https://t.co/SP33gOn98K" +06/07/2018,Politicians,@SenGillibrand,"I was almost as excited about the chance to warm up my pitching arm as I was about seeing the room full of engaged,… https://t.co/niLUF9lLei" +06/06/2018,Politicians,@SenGillibrand,It is completely shameful for ICE to separate a father from his wife and kids like this. This administration's appr… https://t.co/vzImWN0xte +06/05/2018,Politicians,@SenGillibrand,"Stories like Heath’s are the reason why I will never stop fighting for our military justice system to be more fair,… https://t.co/U2jAQJJSC9" +06/05/2018,Politicians,@SenGillibrand,It’s already abundantly clear that Trump and the GOP’s sabotage of our health care system will hurt many of our fam… https://t.co/EDj7gSYnsZ +06/04/2018,Politicians,@SenGillibrand,Getting to the polls is one of the best ways to make real change. The last few months of progressive wins prove tha… https://t.co/TgUfFu7TS8 +06/04/2018,Politicians,@SenGillibrand,Harmful and disappointing ruling from the Supreme Court this morning. Companies shouldn't discriminate against memb… https://t.co/LxqjOyc2gU +06/04/2018,Politicians,@SenGillibrand,The president’s repeated attempts to undermine the Special Counsel’s investigation are extremely troubling — Congre… https://t.co/MWd0hjf7CU +06/03/2018,Politicians,@SenGillibrand,We need to show we truly value women by addressing the tragic reality of maternal mortality. A woman in the U.S. is… https://t.co/yXsr7h6H64 +06/02/2018,Politicians,@SenGillibrand,"So today, on National Gun Violence Awareness Day, we #WearOrange to remember the families and communities that have… https://t.co/83AAkOyvhp" +06/02/2018,Politicians,@SenGillibrand,"We have a gun violence epidemic in our country, and it claims 96 lives every day. But lawmakers haven’t come close… https://t.co/IJtXzFAVHa" +06/02/2018,Politicians,@SenGillibrand,".@DianneFeinstein has broken down barriers her entire career, and she continues to be an inspiration and advocate f… https://t.co/iUNtZNQvBq" +06/02/2018,Politicians,@SenGillibrand,".@tanziefornj is a former teacher and Blue Star Mother running in #NJ02 to fight for a more inclusive, progressive… https://t.co/70Bm52ilf7" +06/02/2018,Politicians,@SenGillibrand,"In #IA01, @Abby4Iowa is fighting for women’s rights, affordable education and quality health care. She needs a stro… https://t.co/pHrzrxOwNY" +06/02/2018,Politicians,@SenGillibrand,"After nearly 20 years as an attorney taking on special interests, @katieporteroc is ready to bring that fight to Co… https://t.co/Egjrr1uSbc" +06/02/2018,Politicians,@SenGillibrand,"In #CA39, @DocTran2018 is running to protect the values and opportunities that allowed her to overcome tremendous o… https://t.co/xOjnF2Mytt" +06/02/2018,Politicians,@SenGillibrand,A record number of women are running for office this year! Here are just a few candidates with primaries on June 5… https://t.co/V9lRBZRjUm +06/01/2018,Politicians,@SenGillibrand,I’m still in. https://t.co/2IHSzgU0T2 +06/01/2018,Politicians,@SenGillibrand,"Gun violence isn’t inevitable or untouchable. We can overcome it, but it’ll take all of us raising our voices again… https://t.co/fxKwfB5Kko" +06/01/2018,Politicians,@SenGillibrand,"“The first step is telling the truth—the next step is changing the system.” + +@GretchenCarlson writes about last wee… https://t.co/cF9ulr7xJe" +06/01/2018,Politicians,@SenGillibrand,"Each day, the incredible leaders and fighters of our LGBTQ communities inspire us all with their strength, their lo… https://t.co/avok0YLZru" +06/01/2018,Politicians,@SenGillibrand,Major General Bannister was an exceptional leader who dedicated his entire life to this country. His legacy will no… https://t.co/RyTE8tP9sS +05/31/2018,Politicians,@SenGillibrand,"I hope you’ll read this. Veteran Alonzo Neese, a gun owner and former NRA member, shares why he’s joining the fight… https://t.co/DiLE6jE2BC" +05/31/2018,Politicians,@SenGillibrand,"Workplace harassment is clearly a drag on our economy, but we don't know by how much, in part because @BLS_gov absu… https://t.co/Wg0xhykznN" +05/31/2018,Politicians,@SenGillibrand,"If you believe as fiercely as I do that America is better than ripping children from the arms of asylum seekers, we… https://t.co/ZVvkvHQgOP" +05/31/2018,Politicians,@SenGillibrand,Children are being ripped from the arms of their mothers at our southern border because of policy made and implemen… https://t.co/vHUpz4zHHI +05/31/2018,Politicians,@SenGillibrand,"When mothers came to our southern border desperate for help, they expected to meet the America the world believes i… https://t.co/UXpEK1HjsM" +05/30/2018,Politicians,@SenGillibrand,"No way, @LACaldwellDC. Team Congress is ready to play and ready to WIN! https://t.co/KvktpvPvcm" +05/30/2018,Politicians,@SenGillibrand,"While many try to deride and undermine our unions, the truth is, unions are leading the fight to reward work, for e… https://t.co/fVUp0rGdA3" +05/30/2018,Politicians,@SenGillibrand,Thanks to all who are working so hard to ensure the @Sept11Memorial recognizes the responders and survivors still s… https://t.co/kC9t7DgllZ +05/30/2018,Politicians,@SenGillibrand,This new report demands answers from the federal government about what happened to our fellow citizens in crisis. https://t.co/4RcVNJANT7 +05/29/2018,Politicians,@SenGillibrand,"On this day in 1851, abolitionist Sojourner Truth stood up to demand equal rights for all women and for black Ameri… https://t.co/yzw6hBRfPA" +05/29/2018,Politicians,@SenGillibrand,"Please watch my friend @ValerieJarrett respond to yet another example of everyday racism. As allies in this fight,… https://t.co/MkD63o09Zm" +05/28/2018,Politicians,@SenGillibrand,"Today, on Memorial Day, as we spend time with family and friends, we honor the women and men in uniform who gave th… https://t.co/c8Gt7i8dHg" +05/28/2018,Politicians,@SenGillibrand,.@AbbyWambach shared some incredible wisdom with the women of @BarnardCollege's graduating class (and with all of u… https://t.co/kjuLwq6IzK +05/27/2018,Politicians,@SenGillibrand,Justice Ginsburg is right: The Supreme Court’s ruling on forced arbitration is “egregiously wrong” and undermines w… https://t.co/TPtTKLpe4t +05/27/2018,Politicians,@SenGillibrand,The Trump administration's domestic gag rule should enrage us all. I’m tired of the relentless attempts to roll bac… https://t.co/vsPwDHAGmj +05/26/2018,Politicians,@SenGillibrand,This administration’s immigration policies are heartless and infuriating. Congress must immediately demand accounta… https://t.co/S1rIM6iczq +05/26/2018,Politicians,@SenGillibrand,"Progress seldom comes fast, and it’s never easy. But when we come together to fight for our rights, we have the cap… https://t.co/ZEKucwJSWq" +05/26/2018,Politicians,@SenGillibrand,I am in awe of what the fearless women of Ireland accomplished yesterday. They activated and organized for years to… https://t.co/fxZgS96fyz +05/26/2018,Politicians,@SenGillibrand,"I need my friend @kyrstensinema by my side in the Senate to defend our values and take our country forward, never b… https://t.co/Y3RMSRzlO4" +05/25/2018,Politicians,@SenGillibrand,"While you weren’t looking, President Trump quietly moved to undermine public sector unions and the rights of our fe… https://t.co/TYr6LBq8OP" +05/25/2018,Politicians,@SenGillibrand,"In a blatant attack on women’s reproductive rights, the Trump administration’s “gag rule” would go further than eve… https://t.co/r1pIh8AflD" +05/25/2018,Politicians,@SenGillibrand,🙋🏼‍♀️ https://t.co/sjpEH4Iai5 +05/25/2018,Politicians,@SenGillibrand,"We will not stay silent. Women will lead the charge against Trump's harmful domestic gag rule. Today, in the Senate… https://t.co/o20v1pj9YY" +05/24/2018,Politicians,@SenGillibrand,"The new domestic ""gag rule"" is another attempt by the Trump administration to take away women's access to critical… https://t.co/UXoWz0EV19" +05/24/2018,Politicians,@SenGillibrand,"RT @PattyMurray: We’ve now shown that we can work together to make progress on this issue, and there is every reason to keep pushing for mo…" +05/24/2018,Politicians,@SenGillibrand,"These reforms are commonsense—and I'm optimistic that we can finish the job and get this bill signed into law. + +Un… https://t.co/TptI0xf98J" +05/24/2018,Politicians,@SenGillibrand,"The Senate just passed bipartisan reforms to fix Congress's broken process for reporting sexual harassment, and fin… https://t.co/jzuAYAxf6r" +05/24/2018,Politicians,@SenGillibrand,Our troops sacrifice a great deal for the American people. They deserve our continued support. I was proud to work… https://t.co/E7DuZp0DFV +05/23/2018,Politicians,@SenGillibrand,"Congress should focus on rewarding work and protecting families, not helping big banks make more money. https://t.co/x3G63tnSrq" +05/23/2018,Politicians,@SenGillibrand,"In November, we have an incredible opportunity to take back the House and Senate, and we’ll need you and everyone y… https://t.co/qwxJ21Zmp7" +05/23/2018,Politicians,@SenGillibrand,"Throughout the primary season, women have run and women have won. Some incredible organizations have been by their… https://t.co/RWRVU2SKu0" +05/23/2018,Politicians,@SenGillibrand,".@AmyMcGrathKY once trailed by 47 points in her primary. Forty-seven. No matter the odds, if we run strong candidat… https://t.co/5xp0mJZtHC" +05/23/2018,Politicians,@SenGillibrand,"Democrats are going into November behind candidates like @LucyWins2018, @LupeValdez, @staceyabrams and… https://t.co/2Rf6SWkS4r" +05/23/2018,Politicians,@SenGillibrand,We must remain focused on finishing this fight by passing this bill once it comes to the Senate floor. I hope you’l… https://t.co/r64x0utufe +05/23/2018,Politicians,@SenGillibrand,"Today, Senate leadership announced a bipartisan deal on legislation to address sexual harassment in Congress. This… https://t.co/pZTzHX3QQt" +05/23/2018,Politicians,@SenGillibrand,".@realDonaldTrump, here are some more firsts for you: Record numbers of women are marching, speaking out, fighting… https://t.co/TuyO7OtUiQ" +05/23/2018,Politicians,@SenGillibrand,"From the beginning of Amy’s race, @getots has been by her side. Now we need to help her bring it home. Can you make… https://t.co/VBwexakMc8" +05/23/2018,Politicians,@SenGillibrand,"Amy was the first woman in the Marine Corps to fly into combat in an F-18, and she went on to fly 89 missions in pl… https://t.co/7dklZ5PrcH" +05/23/2018,Politicians,@SenGillibrand,This is just the first step. We all have to come together now. Electing candidates like Amy is how we fight for a f… https://t.co/4KRtb45frZ +05/23/2018,Politicians,@SenGillibrand,Congratulations to @AmyMcGrathKY on securing the Democratic nomination in KY-6. We’re ready to fight alongside you… https://t.co/aEU3Hn8uQt +05/22/2018,Politicians,@SenGillibrand,Thrilled to help launch @voterunlead + @wework's #WomensLeadershipWorks partnership tonight. A great discussion wit… https://t.co/7rBoDWKtw2 +05/22/2018,Politicians,@SenGillibrand,"RT @VoteRunLead: Tonight @WeWork & @VoteRunLead officially kick-off our powerful #WomensLeadershipWorks partnership, bringing #RunAsYouAre…" +05/22/2018,Politicians,@SenGillibrand,"If you live in Texas, your vote in today’s primary runoff is so important. @ginaortizjones in #TX23, @mjhegar in… https://t.co/4HcUI1vr5r" +05/22/2018,Politicians,@SenGillibrand,"If you live in #GA06, or know someone who does, make sure you support @LucyWins2018 in today’s primary election! Sh… https://t.co/JuxT6XCPdP" +05/22/2018,Politicians,@SenGillibrand,.@AmyMcGrathKY has her primary election today. She’s running to continue a life of service to our country and fight… https://t.co/QbcRdoNWbp +05/22/2018,Politicians,@SenGillibrand,"If you live in GA, your vote for @staceyabrams for #GAGov is a vote for affordable childcare, an economic agenda to… https://t.co/NSshDQ7K5H" +05/22/2018,Politicians,@SenGillibrand,"There are incredible women candidates on ballots across the country today, in primaries and in runoffs. Over the ne… https://t.co/KFAw9d8dr3" +05/22/2018,Politicians,@SenGillibrand,"Last week, I sat down with @Kasie to discuss our fight to reform the way Congress handles sexual harassment. I'm ho… https://t.co/8wy5OBQ36L" +05/21/2018,Politicians,@SenGillibrand,So impressed by the teams at @IceStoneLLC and Brooklyn Stone and Tile. Not only do they bring quality manufacturing… https://t.co/tVQvnEWtkZ +05/21/2018,Politicians,@SenGillibrand,Dana Baiocco has spent her career helping companies avoid responsibility for making harmful products. Why on earth… https://t.co/E35T29FMgZ +05/21/2018,Politicians,@SenGillibrand,"This decision could have devastating consequences for workers, who might now be forced to choose between keeping th… https://t.co/exexY7HTRy" +05/21/2018,Politicians,@SenGillibrand,"Yesterday, I had a fanatstic coffee meeting @SylviasSoulFood with @SheenaWrightNYC of @unitedwaynyc! Thanks to all… https://t.co/s4NgIYpMY8" +05/20/2018,Politicians,@SenGillibrand,I draw inspiration from trailblazing women who shaped our country’s history. Their stories are as relevant today as… https://t.co/Nz0aqXxGdj +05/20/2018,Politicians,@SenGillibrand,"Lucy is facing a tough primary fight on Tuesday, and we need to send her our urgent support! Will you donate $5 rig… https://t.co/e64dy5LpFB" +05/20/2018,Politicians,@SenGillibrand,".@LucyWins2018 is a mother, wife, businesswoman and social justice activist fighting to flip #GA06 blue in November… https://t.co/DuM8v9xV5X" +05/20/2018,Politicians,@SenGillibrand,RT @NYCDCA: Today Cmsr Salas joined @SenGillibrand and recent college grads to talk about the financial burdens caused by the growing stude… +05/20/2018,Politicians,@SenGillibrand,But just days ago the Trump admin decided to eliminate a program that protects graduates from predatory student loa… https://t.co/pP65q88vEs +05/20/2018,Politicians,@SenGillibrand,"It’s graduation season! As we congratulate all who are finishing up school this year, here’s my wish for our colleg… https://t.co/QErEq4M8ND" +05/19/2018,Politicians,@SenGillibrand,"I’ve been on the campaign trail with young kids, and I couldn’t have juggled those long days and late nights withou… https://t.co/QiJwmQeQPO" +05/19/2018,Politicians,@SenGillibrand,"If we’re going to change our politics, we need to change who our leaders are. @staceyabrams is the kind of leader w… https://t.co/qu8PQ1Yin8" +05/19/2018,Politicians,@SenGillibrand,I still don’t understand how lawmakers in this country continue to think that it’s their job to tell women what to… https://t.co/4Tt53Qpg7e +05/18/2018,Politicians,@SenGillibrand,"Heartbreaking, unbearable news out of Santa Fe, TX, the latest community to be torn apart by a horrific school shoo… https://t.co/3BmTorqJOC" +05/18/2018,Politicians,@SenGillibrand,RT @CNNPolitics: Sen. Kirsten Gillibrand on the Trump administration proposing a rule that could strip Planned Parenthood funding: “I think… +05/18/2018,Politicians,@SenGillibrand,"This is an attack on Planned Parenthood. It’s an attack on choice. It’s an attack on women’s rights. + +Women’s healt… https://t.co/aHXY6ji813" +07/02/2018,Politicians,@SenWarren,"Unions built America’s middle class, & unions will rebuild it. This weekend, I joined union workers and their famil… https://t.co/8UrgDVo9iu" +07/02/2018,Politicians,@SenWarren,"When I went down to the border to see what was happening, I met with advocates who are doing everything they can to… https://t.co/HtSIzhu1lc" +07/01/2018,Politicians,@SenWarren,.@realDonaldTrump’s short list of Supreme Court nominees was hand-picked by right-wing extremists who want to crimi… https://t.co/5cIqU0ohgS +06/29/2018,Politicians,@SenWarren,"At the #FamiliesBelongTogether march tomorrow, we’ll show @realDonaldTrump that the real power is with the people.… https://t.co/BhWUoW92lz" +06/29/2018,Politicians,@SenWarren,"Tomorrow, thousands of Puerto Rican evacuees will lose federal housing assistance & many will be left homeless.… https://t.co/OGzwO9swP1" +06/29/2018,Politicians,@SenWarren,Great news: Massachusetts is moving closer to a level playing field for working families. Congratulations to… https://t.co/AlF8q8450g +06/29/2018,Politicians,@SenWarren,RT @RepCummings: The House GOP’s “opioid week” failed to address the crisis by providing adequate treatment funding. My bill with @SenWarre… +06/28/2018,Politicians,@SenWarren,My heart goes out to the Capital Gazette. No journalist should have to duck bullets in the newsroom. No student sho… https://t.co/2wWcvzfTbP +06/28/2018,Politicians,@SenWarren,.@nationalgridus got a huge windfall from the #GOPtaxscam – but the gas company is still squeezing its own employee… https://t.co/MdRO07RiE0 +06/28/2018,Politicians,@SenWarren,The fight for equal justice for ALL Americans – not just the rich and powerful – has only just begun. Watch live: https://t.co/nmuyzd5gjQ +06/27/2018,Politicians,@SenWarren,Mitch McConnell should follow the Mitch McConnell rule. Let the American people have a say when women’s health and… https://t.co/hOlinahSjR +06/27/2018,Politicians,@SenWarren,"RT @ChrisVanHollen: Today’s SCOTUS decision in Janus v. AFSCME was a major blow to unions and working people, while further rigging the sys…" +06/27/2018,Politicians,@SenWarren,Corporate interests have been rigging the system against workers for decades – and the Supreme Court just handed th… https://t.co/Lop4IFq9zu +06/27/2018,Politicians,@SenWarren,"I went down to the border protection processing center in McAllen, Texas so I could see what’s happening there with… https://t.co/BLtpuwS0SS" +06/26/2018,Politicians,@SenWarren,The Supreme Court – thanks to a seat stolen by right-wing Republicans – just upheld Trump’s Muslim ban. While the C… https://t.co/LH9MSIM110 +06/26/2018,Politicians,@SenWarren,"Last year, I joined hundreds of people at Logan Airport to protest @realDonaldTrump's Muslim ban. We believed that… https://t.co/6quvNTWv6i" +06/24/2018,Politicians,@SenWarren,I believe that when a woman flees the only home she's ever known with her 4-year-old son and begs the United States… https://t.co/djIDGLiore +06/24/2018,Politicians,@SenWarren,"I spoke with one woman from El Salvador at a CBP processing center. She gave a policeman a drink of water, and the… https://t.co/hJxR7Liqeh" +06/24/2018,Politicians,@SenWarren,"Today, I'm in McAllen, TX. What I've witnessed here is truly disturbing. People are being held in cages – there's n… https://t.co/riSBGHSxjL" +06/24/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, and public health and s… https://t.co/7uyn1YI1EU" +06/23/2018,Politicians,@SenWarren,Powerful corporations and their Republican allies are working overtime to roll back basic rules that protect workin… https://t.co/DXdfcts87U +06/22/2018,Politicians,@SenWarren,It's been 6 months since Trump signed the #GOPtaxscam into law. I spoke with @KellerAtLarge about how it's hurting… https://t.co/8UH9lrc2el +06/21/2018,Politicians,@SenWarren,UPDATE: @BetsyDeVosED has lost another round in federal court. A judge just ruled that she cannot collect loans fro… https://t.co/PT4cXn2P23 +06/21/2018,Politicians,@SenWarren,If you agree that Thomas Farr – who has defended discrimination & worked to restrict the voting rights of African A… https://t.co/3L5W7vF9sB +06/20/2018,Politicians,@SenWarren,This isn’t over. Thousands of kids have been ripped from their parents with no plan to reunite them. And now… https://t.co/gMiJwZzQtI +06/20/2018,Politicians,@SenWarren,"On #WorldRefugeeDay, we cannot ignore the humanitarian crisis happening on our border as desperate families flee vi… https://t.co/ecoGve7HFR" +06/20/2018,Politicians,@SenWarren,.@RepCummings has devoted his life to the fight for justice. Watch as he makes a powerful case for why… https://t.co/zWY55CrGbY +06/19/2018,Politicians,@SenWarren,@realDonaldTrump is meeting with House Republicans to discuss his immigration crisis. Will they have the courage to… https://t.co/wJ2OgGKrq0 +06/19/2018,Politicians,@SenWarren,RT @SenSherrodBrown: Demanding answers today with @SenWarren about exactly what role Kraninger has played in developing and implementing th… +06/19/2018,Politicians,@SenWarren,"RT @FSCDems: #RELEASE: Ranking Member @RepMaxineWaters' Statement on the Nomination of Kathy Kraninger to Head the @CFPB + +https://t.co/dKl…" +06/19/2018,Politicians,@SenWarren,Kathy Kraninger helps oversee the agencies that are ripping kids from their parents. Now @realDonaldTrump wants her… https://t.co/1GEiiTwTOb +06/19/2018,Politicians,@SenWarren,".@realDonaldTrump’s nominee to run the @CFPB, Kathy Kraninger, has no track record of helping consumers. That's bad… https://t.co/OeqZ3y3kvq" +06/18/2018,Politicians,@SenWarren,".@realdonaldtrump could pick up the phone and stop the separation of families seeking refuge in the US. Instead, he… https://t.co/hV65UArXrZ" +06/17/2018,Politicians,@SenWarren,Kids across the US are spending today with their dads. But thousands of children who have been separated from their… https://t.co/630gU6vMUB +06/15/2018,Politicians,@SenWarren,Thousands of Americans have joined @UniteThePoor to call on our government to pay attention: to flat wages and risi… https://t.co/EBMljKXQJr +06/15/2018,Politicians,@SenWarren,Joseph Otting told Congress he’s never seen discrimination – even though he used to run a bank that went out of its… https://t.co/RNb1ZtC23W +06/15/2018,Politicians,@SenWarren,My colleague @RepJayapal is right. We are not talking about immigration policy. We are talking about the soul of Am… https://t.co/8ApE0b0aZN +06/15/2018,Politicians,@SenWarren,I’m going to fight like hell with @SenatorDurbin and the @SenateDems to end this cruel Trump Administration policy.… https://t.co/c7MlB6cvUd +06/15/2018,Politicians,@SenWarren,The official policy of this administration is to rip children from their parents. Let that sink in. And then fight… https://t.co/8irLEVGJXd +06/14/2018,Politicians,@SenWarren,Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice h… https://t.co/aXRpsgRPhb +06/14/2018,Politicians,@SenWarren,"We don't know how many Puerto Ricans died from Hurricane Maria, but we do know the official death toll of 64 is a h… https://t.co/Xy4lfmTOci" +06/14/2018,Politicians,@SenWarren,The Trump Admin is packing our courts with right-wing nominees like Chad Readler who want to tilt the scales in fav… https://t.co/fVZTGm5gC2 +06/14/2018,Politicians,@SenWarren,Some state governments are punishing people struggling with student loans by taking away their drivers’ & professio… https://t.co/mOuZJY890z +06/13/2018,Politicians,@SenWarren,"Power is more and more concentrated in a handful of giant companies at the expense of small businesses, entrepreneu… https://t.co/7gMvtPngdt" +06/13/2018,Politicians,@SenWarren,Thousands of children have been torn from their parents’ arms because of @realdonaldtrump’s cruel immigration polic… https://t.co/LwpVD9VlQS +06/13/2018,Politicians,@SenWarren,Congress is voting on a reckless provision jammed into this year’s defense bill that would give @realdonaldtrump fr… https://t.co/DxTsmAzooD +06/13/2018,Politicians,@SenWarren,.@SecAzar told the Senate about his shiny new drug pricing plan yesterday. But he can’t guarantee it won't raise pr… https://t.co/RzpnCtbOYi +06/13/2018,Politicians,@SenWarren,RT @SenateDems: Debemos hacer todo lo posible para ayudar a nuestros hermanos y hermanas en #PuertoRico. La Ley de Vivienda Para Víctimas d… +06/12/2018,Politicians,@SenWarren,Poor & marginalized Americans are coming together across the country to demand a government that works for the peop… https://t.co/5AOouapvUt +06/12/2018,Politicians,@SenWarren,"RT @SenTinaSmith: In his campaign, @POTUS made bold promises about reducing drug prices. But @SenWarren and I are gravely concerned that th…" +06/12/2018,Politicians,@SenWarren,My full statement on President Trump’s meeting with Kim Jong Un: https://t.co/BgyTMzhI4q https://t.co/Dk1LNOnMuM +06/12/2018,Politicians,@SenWarren,Jeff Sessions' move to deny asylum to women fleeing domestic violence does not reflect our country's true values. T… https://t.co/NWsVeIqtGo +06/11/2018,Politicians,@SenWarren,"Red & blue states alike have taken their own thoughtful approaches to marijuana. Now, 12 governors – led by… https://t.co/SlLzk3G5rq" +06/11/2018,Politicians,@SenWarren,Our democracy is under attack – but not lost. Watch live as I talk with the @ACLU about how we’re fighting to save… https://t.co/gEcBbyB7YP +06/11/2018,Politicians,@SenWarren,The Supreme Court’s decision to make it easier for Ohio to cross eligible voters off the rolls is a major step back… https://t.co/jPB6mi1ZoV +06/11/2018,Politicians,@SenWarren,"RT @SenMarkey: The repeal of #NetNeutrality officially goes into effect today, but the fight is far from over. + +The people saying we can’t…" +06/10/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, public health & safety… https://t.co/IHN37uFDLk" +06/08/2018,Politicians,@SenWarren,"When I questioned Trump's pick to be the head of civil rights at @usedgov, he dipped & dodged on whether he'd prote… https://t.co/YNCWutojS7" +06/08/2018,Politicians,@SenWarren,Yesterday I met with Puerto Rican families who evacuated to MA after Hurricane Maria. They want to make MA their ho… https://t.co/Rjs3ip4eO9 +06/07/2018,Politicians,@SenWarren,"A majority of Americans support legalizing marijuana. It’s time for Congress to listen, and pass this new bipartisa… https://t.co/x6COyGCPci" +06/07/2018,Politicians,@SenWarren,There's a lot we can do to address America’s broken marijuana policies – like passing @SenBooker’s… https://t.co/mf11K7ZMHr +06/07/2018,Politicians,@SenWarren,No qualified scientist should have to struggle to conduct basic research on marijuana. Their findings could spur me… https://t.co/bn37ADU6XB +06/07/2018,Politicians,@SenWarren,No legitimate business should be blocked from basic banking services – but that’s exactly what’s happening to law-a… https://t.co/fTVV0eP0IN +06/07/2018,Politicians,@SenWarren,"No veteran with chronic pain, child with a rare disease, or person struggling with a terminal illness should be den… https://t.co/Xhlu1YfW7q" +06/07/2018,Politicians,@SenWarren,No one should go to jail for a joint. But more Americans are arrested for marijuana possession than all violent cri… https://t.co/P1Rr1tk0rK +06/07/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, & public health & safet… https://t.co/q5d85SGxSu" +06/07/2018,Politicians,@SenWarren,"The federal government’s marijuana policies are broken, outdated, and disregard the rights of states like MA & CO t… https://t.co/NJU1t1FeC3" +06/07/2018,Politicians,@SenWarren,It’s time to reform American’s outdated marijuana policies. Watch live as @SenCoryGarder and I discuss our new legi… https://t.co/CSUmSKYPSt +06/06/2018,Politicians,@SenWarren,.@MickMulvaneyOMB has no intention of putting consumers above financial firms that cheat them. This is what happen… https://t.co/GRcWGiA5JD +06/06/2018,Politicians,@SenWarren,"RT @SenTinaSmith: When women are empowered to contribute, we all benefit. We’re seeing it more and more here in the Senate. And I’m proud t…" +06/06/2018,Politicians,@SenWarren,Robert Kennedy understood that we cannot simply run our economy for those at the top and assume that it will solve… https://t.co/wVYiobM82c +06/06/2018,Politicians,@SenWarren,Corruption oozes out of @EPAScottPruitt’s office like toxic sludge – and working families will get burned by it. I… https://t.co/8bJhKoM6ug +06/05/2018,Politicians,@SenWarren,The GOP wants you to believe that their war on regulations is about freedom. Baloney. Good rules empower people to… https://t.co/MNdMNAJVBm +06/04/2018,Politicians,@SenWarren,".@realDonaldTrump is playing a political game, and he believes he gets to make up the rules. He doesn’t. The Consti… https://t.co/ukMqIVrp7S" +06/03/2018,Politicians,@SenWarren,La respuesta del gobierno federal en Puerto Rico después del huracán María ha sido pésima. Hablé con @TelemundoNI s… https://t.co/XTKbqAvG7U +05/31/2018,Politicians,@SenWarren,.@SenMarkey & I are introducing a bill to make @FEMA address the medium & long-term housing needs of survivors of H… https://t.co/xyXkQkkz5y +05/31/2018,Politicians,@SenWarren,Let’s be clear: @realDonaldTrump's gag rule isn't about improving women’s health care. It's an attempt to control w… https://t.co/g20gU9oi70 +05/31/2018,Politicians,@SenWarren,Car dealers are exempt from @CFPB oversight – and auto loan defaults just hit a 15-year high. That's not a coincide… https://t.co/QXcxmFZLJd +05/30/2018,Politicians,@SenWarren,"Even as banks make record profits, their former banker buddies turned regulators are doing them favors by rolling b… https://t.co/PzWIXHExiE" +05/30/2018,Politicians,@SenWarren,"Thousands of students were cheated by for-profit colleges, but @BetsyDeVosED wants to stop students from getting th… https://t.co/7it5Yqrdak" +05/30/2018,Politicians,@SenWarren,".@Walmart rakes in billions from the #GOPTaxScam and sends the profits straight to Wall Street, while many employee… https://t.co/su7bcDzF52" +05/29/2018,Politicians,@SenWarren,"In another example of weak enforcement that will harm our economy, the DOJ just approved the @Bayer-@MonsantoCo mer… https://t.co/zqxWOy5G6g" +05/29/2018,Politicians,@SenWarren,The official death count in Puerto Rico from Hurricane Maria is only 64. A new study shows the real total could be… https://t.co/s38Kh0lLKt +05/28/2018,Politicians,@SenWarren,All 3 of my brothers served & came home safe. But many do not. I had the chance to honor a special group of veteran… https://t.co/21adDPdDwU +05/26/2018,Politicians,@SenWarren,Firefighters face a higher rate of cancer than the rest of the population. They face enough risk every day – we’ve… https://t.co/riciYDCrV8 +05/25/2018,Politicians,@SenWarren,"Update: Brian Montgomery has been confirmed by the Senate 74 to 23. In Donald Trump’s Washington, the revolving doo… https://t.co/XYlEWcU0Dz" +05/24/2018,Politicians,@SenWarren,The #BankLobbyistAct was just signed into law – rolling back rules on big banks. But bank lobbyists are already ask… https://t.co/5cyAvODIxv +05/24/2018,Politicians,@SenWarren,President Trump’s wild back and forth with Kim Jong Un shows once again that he has no strategy. If… https://t.co/zMXET6LcBx +05/24/2018,Politicians,@SenWarren,"I spoke with preachers from across the country about growing up a Methodist, teaching Sunday School to rowdy 5th gr… https://t.co/qti7O5JIWF" +05/24/2018,Politicians,@SenWarren,"I love when the USW comes to the Capitol. They’re loud, they’re strong, and they won’t back down from the fight. Co… https://t.co/PcVQH70wC1" +05/23/2018,Politicians,@SenWarren,RT @UNITEDWEDREAM: Find out if you can renew your #DACA TODAY! United We Dream has put a list of resources for you to figure out if you qua… +05/23/2018,Politicians,@SenWarren,"Over 700 children have been separated from their parents thanks to a new, cruel Trump Admin policy. Today,… https://t.co/8n3tBVxUH9" +05/23/2018,Politicians,@SenWarren,"Yesterday, I met with @AMarch4OurLives leaders @Alfonso_Cal, @davidhogg111, and @Charlie_Mirsky. Congress still has… https://t.co/Dj73Sau6UI" +05/23/2018,Politicians,@SenWarren,"We should be expanding – not limiting – women’s access to reproductive health care. Instead, the GOP is attacking s… https://t.co/zx0mPFU3L1" +05/22/2018,Politicians,@SenWarren,Big banks have spent millions of dollars trying to roll back the rules we put in place after we bailed them out ten… https://t.co/rd0DtmYQXB +05/22/2018,Politicians,@SenWarren,"In a decision written by Justice Gorsuch, the Supreme Court has ruled that corporations can block workers from suin… https://t.co/Ys1c8ySKED" +05/22/2018,Politicians,@SenWarren,"For years, armies of bank lobbyists & executives have groaned about how financial rules are hurting them. But there… https://t.co/Gtjacxqkdp" +05/21/2018,Politicians,@SenWarren,The #BankLobbyistAct rolls back the rules on big banks & increases the risk of another taxpayer bailout. It could p… https://t.co/apSASLY4vj +05/20/2018,Politicians,@SenWarren,I graduated from a commuter college like @Quinsig. Even as the rich and powerful tighten their hold on our democrat… https://t.co/XCe9iKXeGb +05/19/2018,Politicians,@SenWarren,"Today I told the graduates of @lesley_u: There will be plenty of people in your life who will try to shut you up, b… https://t.co/KTRFnPIpJV" +05/18/2018,Politicians,@SenWarren,"My heart breaks for the students and faculty of Santa Fe High School, and the families of those who lost their live… https://t.co/8f9RbOZqYo" +05/18/2018,Politicians,@SenWarren,"We're going to keep fighting back against @realdonaldtrump, @VP Pence, and right-wing politicians who want to regul… https://t.co/HVEUwglVOR" +05/18/2018,Politicians,@SenWarren,.@realdonaldtrump's gag rule is designed to kick providers like Planned Parenthood out of Title X & hold women host… https://t.co/zK3EKPBmp2 +05/18/2018,Politicians,@SenWarren,"Title X provides birth control, cancer screenings & HIV tests to over 4M Americans. It doesn’t fund abortions & nev… https://t.co/kBpqg6tKvz" +05/17/2018,Politicians,@SenWarren,"Creating fake accounts, cheating servicemembers, overcharging mortgage borrowers – and now altering documents to fa… https://t.co/nviNSb4rwa" +05/17/2018,Politicians,@SenWarren,"No matter how you dress it up, torture is torture. It’s inhumane, ineffective, and un-American. Gina Haspel advocat… https://t.co/bUdt01PYmj" +05/16/2018,Politicians,@SenWarren,I ran into 2018 @bostonmarathon champ @des_linden today. I’m glad she slowed down long enough for us to grab a phot… https://t.co/c67kFGSDN7 +05/16/2018,Politicians,@SenWarren,Thanks to my partner @SenMarkey for leading the charge in the Senate to save #NetNeutrality. We won this fight toda… https://t.co/NtTNResF3n +05/16/2018,Politicians,@SenWarren,"Democrats want to stop internet providers from blocking access, filtering content, or charging higher fees. I’m spe… https://t.co/VQ5Vn27hJ2" +05/16/2018,Politicians,@SenWarren,"CEO salaries are soaring while wages for American workers are barely budging. At many companies, CEOs make more in… https://t.co/ajLRsicf2Q" +05/15/2018,Politicians,@SenWarren,".@Equifax faced no real penalty after compromising the data of 148M Americans. Instead of demanding accountability,… https://t.co/kfJ5DDVDxx" +05/15/2018,Politicians,@SenWarren,"Thomas Farr, @realdonaldtrump's nominee for a federal judgeship, worked to undermine voting rights & defended discr… https://t.co/0eAjG6Bk13" +05/14/2018,Politicians,@SenWarren,Both @ATT and @Novartis had significant business before the Trump Admin when they secretly paid Trump’s attorney Mi… https://t.co/r0vxrQH2aH +05/14/2018,Politicians,@SenWarren,.@BetsyDeVosED has filled @usedgov with for-profit college hacks who only care about making sham schools rich and s… https://t.co/vLnhx9QrT6 +05/13/2018,Politicians,@SenWarren,Hey @PhilipsLight: You don’t get to walk away with millions in tax breaks and then turn around and spit in the face… https://t.co/pUKCUEDbHB +05/12/2018,Politicians,@SenWarren,Carl knows what it will take to beat the opioid epidemic – because he’s been fighting the AIDS epidemic for years.… https://t.co/sQNropkPce +05/11/2018,Politicians,@SenWarren,I pushed the @federalreserve hard to hold a public vote on whether @WellsFargo should be allowed to get any bigger… https://t.co/4mflZndgOx +05/11/2018,Politicians,@SenWarren,We owe our @USNationalGuard members the very best. But some officers are forced to wait months for their promotions… https://t.co/28IlXTo9TZ +05/10/2018,Politicians,@SenWarren,It’s unacceptable that @Equifax has taken so long to tell the whole truth about the extent of the breach. @Equifax… https://t.co/wWx1ROZ8RQ +05/10/2018,Politicians,@SenWarren,A months-long investigation by my office revealed that @Equifax failed to disclose all the information that was tak… https://t.co/kFccQIUdew +05/10/2018,Politicians,@SenWarren,I agree with @SenJohnMcCain. I opposed Gina Haspel’s nomination from the beginning – and I will vote against her co… https://t.co/qj37SFHSug +05/10/2018,Politicians,@SenWarren,About to call into @BosPublicRadio to talk with @margeryeagan and @criticalthawt (in for @jimbraude). Tune in live… https://t.co/EAGdYi7Viu +05/09/2018,Politicians,@SenWarren,"Student loan debt is exploding, but @MickMulvaneyOMB is planning to shut down the only federal office fully focused… https://t.co/LghPHDa5WP" +05/09/2018,Politicians,@SenWarren,"Today, Senate Democrats are moving to force a vote on @SenMarkey’s resolution to save #NetNeutrality. We only need… https://t.co/SBRpMePO68" +05/09/2018,Politicians,@SenWarren,"When I was in 2nd grade, Mrs. Lee told me that I too could be a teacher one day. I grew up to be a teacher, then a… https://t.co/6kuCihOcG0" +05/08/2018,Politicians,@SenWarren,Our justice system is broken. Black and brown Americans receive harsher sentences than white Americans for the same… https://t.co/GZN9uPX3Bi +05/08/2018,Politicians,@SenWarren,The @OfficialCBC is hosting a Twitter town hall right now on our broken criminal justice system. This is a powerful… https://t.co/ctCBdIG9cn +05/08/2018,Politicians,@SenWarren,Even the Trump Administration has conceded that Iran is complying with the deal. Now @realdonaldtrump has pulled ou… https://t.co/evx7zOJPIm +05/08/2018,Politicians,@SenWarren,The Obama Administration negotiated a landmark agreement to prevent Iran from obtaining a nuclear weapon.… https://t.co/IwYOdVvK3q +05/08/2018,Politicians,@SenWarren,Massachusetts has some of the strictest gun control laws in the country – and one of the lowest gun fatality rates… https://t.co/g1HWdTzxLn +05/05/2018,Politicians,@SenWarren,Crystal Perry of the Mashpee Wampanoag tribe in MA loved horses & her family. She & a friend were murdered in 2013… https://t.co/aziZwPx96R +05/05/2018,Politicians,@SenWarren,Today is National Day of Awareness for Missing and Murdered Native Women and Girls. Thousands of Native American wo… https://t.co/EYCnnUFOFG +05/04/2018,Politicians,@SenWarren,"Last month, Bruce & I visited the @NPG to see the stunning new portraits of the Obamas. @BarackObama's captures the… https://t.co/439iNFqbAm" +05/03/2018,Politicians,@SenWarren,I hope President Trump’s negotiations with North Korea succeed – the world will be a safer place if they do. But th… https://t.co/94TL3YhSTm +05/03/2018,Politicians,@SenWarren,Why are teachers paid so little? Why aren’t more politicians across state legislatures standing up for them? I’ll t… https://t.co/jnxE5Vv4gL +05/02/2018,Politicians,@SenWarren,RT @SenCortezMasto: I welcome the Trump Admin pursuing diplomacy with North Korea. But in order for there to be a peaceful resolution to a… +05/02/2018,Politicians,@SenWarren,"America is safer when our State Department is fully funded, well-staffed, and focused on diplomacy. Now that he's S… https://t.co/G7mJysHOYN" +05/01/2018,Politicians,@SenWarren,"@PhilipsLight is hanging loyal, hard-working employees and the Fall River community out to dry. This is the real le… https://t.co/pEClqeWbwt" +05/01/2018,Politicians,@SenWarren,"Instead of buying back their own stock and outsourcing jobs, companies like @PhilipsLight should be investing in th… https://t.co/7eNlGq5Q3q" +05/01/2018,Politicians,@SenWarren,".@PhilipsLight can afford to shell out $187 million to shareholders, so @RepJoeKennedy and I want to know why they’… https://t.co/E2eDrZOxIs" +05/01/2018,Politicians,@SenWarren,Did you know it’s legal for companies to pay people with disabilities pennies on the dollar for doing the same job… https://t.co/cyt4102XTW +05/01/2018,Politicians,@SenWarren,The proposed merger between Sprint and T-Mobile could strangle competition in the telecom industry and end up hurti… https://t.co/TRWfXjMEzS +04/30/2018,Politicians,@SenWarren,I agree with Sheriff @stevenwtompkins of Suffolk County – the opioid epidemic is out of control and our country nee… https://t.co/QKpd08mgXJ +04/30/2018,Politicians,@SenWarren,"Over 20,000 consumers have filed complaints about @Equifax with the @CFPB since the #EquifaxBreach. But instead of… https://t.co/SpK2ERs3g5" +04/29/2018,Politicians,@SenWarren,"Firefighters are exposed to harsh chemicals on the job, and develop cancer at higher rates as a result. I've been p… https://t.co/3OvDTBh9Hj" +04/27/2018,Politicians,@SenWarren,"Last month, corporate lobbyists found a single court willing to block @USDOL's conflict-of-interest rule, which was… https://t.co/Yfyumu0rkE" +04/27/2018,Politicians,@SenWarren,I’d like @MickMulvaneyOMB to explain to the American people why almost every major decision he’s made at the @CFPB… https://t.co/oOJiFhhU55 +04/26/2018,Politicians,@SenWarren,"The DOJ is on track to approve a merger between Monsanto and Bayer, which would hand control of 1/4 of the world’s… https://t.co/tN2P38ILLk" +04/26/2018,Politicians,@SenWarren,Our military leaders have told us – many times – that a strong State Department is critical to their mission. Now t… https://t.co/cxLXeiosAS +04/26/2018,Politicians,@SenWarren,Favorite meeting of the day. #TakeYourChildToWorkDay https://t.co/wYqCacKLbt +04/26/2018,Politicians,@SenWarren,"Mike Pompeo has repeatedly embraced military action over diplomatic solutions, supported interrogation techniques t… https://t.co/UvVMFiq4PV" +04/25/2018,Politicians,@SenWarren,"For a long time, Washington has worked for people who can write big campaign checks & hire armies of lobbyists. But… https://t.co/smZAlqDovV" +04/25/2018,Politicians,@SenWarren,"Valeria's little sister applied for DACA, but @realdonaldtrump ended it before she could get it. A federal judge ju… https://t.co/SmrWSjmG9Z" +04/25/2018,Politicians,@SenWarren,This is the most corrupt administration ever. https://t.co/uHr0tek2G1 +04/24/2018,Politicians,@SenWarren,RT @reveal: .@SenWarren just fired off letters accusing regulators of rolling back anti-discrimination protections for people of color in t… +04/24/2018,Politicians,@SenWarren,Federal judges are supposed to dispense equal justice under the law. But Kyle Duncan – @realdonaldtrump’s nominee f… https://t.co/5GuBBYgqJn +04/24/2018,Politicians,@SenWarren,"I've been fighting to pass the Firefighter Cancer Registry Act, which will allow us to better protect the firefight… https://t.co/fwyyKACVoU" +04/24/2018,Politicians,@SenWarren,Bob’s resilience inspires me. He’s done so much for his community – and it’s time Congress is there for him and tho… https://t.co/hcoHIOr0xb +04/23/2018,Politicians,@SenWarren,"Mike Pompeo’s brand of foreign policy doesn’t reflect America’s values, and won’t make us any safer. I urge my Sena… https://t.co/HqHnfyPQCz" +04/23/2018,Politicians,@SenWarren,"After the Boston Marathon bombing, our whole country grieved – including people of Islamic faith. But Mike Pompeo u… https://t.co/Ap9dEbaGvJ" +04/23/2018,Politicians,@SenWarren,"A strong State Department requires a leader who actually believes in the power of diplomacy, and the importance of… https://t.co/whiThuA4fE" +04/23/2018,Politicians,@SenWarren,"This weekend, I met with members of the Mashpee Wampanoag Tribe to discuss the opioid crisis, which has hit Native… https://t.co/esyBacMYbI" +04/22/2018,Politicians,@SenWarren,"The @nytimes lays out the history and scope of opioid addiction in America, lessons learned from our response to th… https://t.co/t5rTKIxoL9" +04/22/2018,Politicians,@SenWarren,"Last year, I got a big stack of letters from the 7th graders at Clarke Middle School. They wrote to tell me how wor… https://t.co/RvJm2dKeyo" +04/20/2018,Politicians,@SenWarren,The federal government needs to get out of the business of outlawing marijuana. States should make their own decisi… https://t.co/ZMK6OuvZ7b +04/20/2018,Politicians,@SenWarren,"⚡️ Thirty years ago, Congress passed the Ryan White CARE Act to combat the HIV/AIDS epidemic. This week,… https://t.co/cRq7EdCGyL" +04/20/2018,Politicians,@SenWarren,Most of the students marching in today’s #NationalSchoolWalkout were born after the Columbine shooting. They grew u… https://t.co/NQbVFVfNqA +04/19/2018,Politicians,@SenWarren,"For months, @SenMarkey & I have fought for Puerto Rican families who evacuated to Massachusetts after Hurricane Mar… https://t.co/vIj6mMLEL6" +04/19/2018,Politicians,@SenWarren,"RT @RepCummings: This morning, @SenWarren and I went on @Morning_Joe to discuss our new #CAREAct and taking on the #OpioidEpidemic. The opi…" +04/19/2018,Politicians,@SenWarren,".@SenDuckworth, I'm so glad to see the Senate take this baby step forward. I'll be the first in line to hold Maile… https://t.co/g5gFFh4whj" +04/18/2018,Politicians,@SenWarren,Enough is enough. It’s time for the Trump Administration to step up and take responsibility for the repeated blacko… https://t.co/XRNMVz9Qle +04/18/2018,Politicians,@SenWarren,I worked with @SenTedCruz to pass a bipartisan resolution designating today as Military Retiree Appreciation Day. A… https://t.co/Dp0yfNze6w +04/18/2018,Politicians,@SenWarren,We can’t defeat the opioid crisis with empty words and half measures. Congress acted before to stop an epidemic whe… https://t.co/vNUCviZfs5 +04/18/2018,Politicians,@SenWarren,The #CAREact includes $1 billion a year for clinics and non-profits to improve addiction treatment – along with $50… https://t.co/Hq0XGnzAPF +04/18/2018,Politicians,@SenWarren,"In addition to funding for communities on the front lines of the opioid crisis, the #CAREact will provide $1.8 bill… https://t.co/8PQigLmtK7" +04/18/2018,Politicians,@SenWarren,"The #CAREact will provide $4 billion per year to states, territories, and tribal governments. An additional $2.7 bi… https://t.co/1mwQb9ypRh" +04/18/2018,Politicians,@SenWarren,"Today, @RepCummings and I are introducing the #CAREact. Our bill will provide $100 billion in federal funding over… https://t.co/WveLaxQQX2" +04/18/2018,Politicians,@SenWarren,"RT @CNBC: Remembering Barbara Bush, who in addition to supporting her husband and raising her family, was an independent spirit, willing to…" +04/17/2018,Politicians,@SenWarren,"RT @SenMarkey: With 30 signatures on this petition, @SenateDems can and will force a vote on the CRA resolution to save #NetNeutrality. + +So…" +04/17/2018,Politicians,@SenWarren,"RT @SenateDems: Who reaps most of the benefits from the #GOPTaxScam? Corporate executives and wealthy investors, not American workers. #Tax…" +04/17/2018,Politicians,@SenWarren,The Senate is on the verge of voting to make it easier for auto lenders to discriminate. Here’s why I'm voting agai… https://t.co/ysMnLEaSob +04/17/2018,Politicians,@SenWarren,"Harry from Hull, MA tried everything to get his son out of an auto-loan scam, but no agency would help – until he c… https://t.co/0X7k5rPhR1" +04/15/2018,Politicians,@SenWarren,"On #OneBostonDay, we ask the rest of the world to join our city in doing one random act of kindness – big or small.… https://t.co/U5GJO3ZT64" +04/15/2018,Politicians,@SenWarren,"As we mark the fifth anniversary of the Boston Marathon bombing, I'm grateful to Jessica Kensky and Patrick Downes… https://t.co/DbEMPk7Vkn" +04/15/2018,Politicians,@SenWarren,I introduced a bipartisan bill with @SenatorCollins named after Jessica & Patrick to give other survivors of terror… https://t.co/l3zomDOboy +04/15/2018,Politicians,@SenWarren,Jessica Kensky and Patrick Downes are a courageous young couple who both lost legs during the Boston Marathon bombi… https://t.co/uxmPcWOoj2 +04/14/2018,Politicians,@SenWarren,The Constitution gives Congress the power to authorize military action. If @realDonaldTrump wants to expand America… https://t.co/Ozuzkl11Ql +04/14/2018,Politicians,@SenWarren,"Chemical attacks in Syria are horrifying, and a clear violation of international law. The world must hold Assad acc… https://t.co/iO8ceDnjRb" +04/13/2018,Politicians,@SenWarren,"RT @MassStatePolice: With a heavy heart 💙, our condolences go out tonight to our brothers & sisters of the @yarmouthpolice & to Officer Sea…" +04/13/2018,Politicians,@SenWarren,Time may be running out. Congress must immediately pass this bipartisan bill to ensure that Mueller can complete a… https://t.co/ZDdBkMN6NP +04/13/2018,Politicians,@SenWarren,The Washington swamp just got a little dirtier. The Senate just voted to confirm former coal lobbyist Andrew Wheele… https://t.co/20hbwmOPX2 +04/12/2018,Politicians,@SenWarren,"On Yom Hashoah, #WeRemember the 6 million Jews who were murdered during the Holocaust. We honor their memories by c… https://t.co/u2cW3WNvP0" +04/12/2018,Politicians,@SenWarren,.@realDonaldTrump has sworn up and down that he won't support bad trade deals. He pulled out of the TPP after he wa… https://t.co/sOmMFiIHe3 +04/12/2018,Politicians,@SenWarren,The @CFPB was created to protect people. If @MickMulvaneyOMB wants to prevent the agency from stopping scams & help… https://t.co/j7321NPRO6 +04/12/2018,Politicians,@SenWarren,"Harry from Hull, MA told the @CFPB about his son’s shady auto-loan. The agency looked into his complaint & forced t… https://t.co/CTVWsbi1BO" +04/12/2018,Politicians,@SenWarren,"One of those people is Ari. Before he deployed to Iraq, he bought a truck and got pushed into a subprime auto-loan… https://t.co/jb59TYIpwd" +04/12/2018,Politicians,@SenWarren,"I just finished questioning @MickMulvaneyOMB in a Senate hearing. Before he started running the @CFPB, he tried to… https://t.co/vzAoXO7IQu" +04/12/2018,Politicians,@SenWarren,.@MickMulvaneyOMB has been bringing up my name a lot lately when talking about the @CFPB. But what he doesn’t get i… https://t.co/hX7O0u1UuT +04/12/2018,Politicians,@SenWarren,It’s been four months since @MickMulvaneyOMB took over the @CFPB – and he hasn’t lifted a finger to help consumers.… https://t.co/bvyNsWCagd +04/11/2018,Politicians,@SenWarren,"The #BankLobbyistAct is dangerous enough, but now House Republicans want to load the bill up with even more favors… https://t.co/heGpUb2XRe" +07/02/2018,Politicians,@CoryBooker,@TZeliznak I hope you take time to check out the bipartisan bills I’ve passed and my record in Newark working with… https://t.co/GNGHLEKf5U +07/02/2018,Politicians,@CoryBooker,@Paul_S87 @SABALegal Great meeting you too! +07/02/2018,Politicians,@CoryBooker,@Gokzarah Not necessary. All the best to you. +07/02/2018,Politicians,@CoryBooker,"@MaitriButcher Anger is a very constructive emotion. Hate is a destructive emotion. + +I think we agree here. All the best to you." +07/02/2018,Politicians,@CoryBooker,@hsojlightfoot We agree! I will fight. +07/02/2018,Politicians,@CoryBooker,@hammerschlogin One of my great life mentors was named Virginia Jones. I wrote a chapter about her in my book United. All the best to you. +07/02/2018,Politicians,@CoryBooker,RT @BrookingsInst: A restaurant server and single mom making $2 an hour. An airline employee making less than he has in 20 years. @CoryBook… +07/02/2018,Politicians,@CoryBooker,RT @SchelWill: @CoryBooker I love you! https://t.co/qSSEYHKdSN +07/02/2018,Politicians,@CoryBooker,@ShivaniHonwad So good seeing you twice! +07/02/2018,Politicians,@CoryBooker,"I regularly work across the aisle to deliver for NJ. + +Please call @ghelmy I’m my office for a list of some wins 97… https://t.co/NpXEhz0Sd6" +07/02/2018,Politicians,@CoryBooker,@reallyruth Gratitude to you. No two Americans will agree on everything but we can always be kind to each other. Th… https://t.co/kQlkNlC4JQ +07/02/2018,Politicians,@CoryBooker,"I agree! And it starts with us. + +If you want more kindness in the world: + +be more kind. + +If you want more love in… https://t.co/L6BDxgsMIg" +07/02/2018,Politicians,@CoryBooker,"Thank you for encouraging me today. + +I so appreciate your kindness. https://t.co/0cLdXd80Bb" +07/02/2018,Politicians,@CoryBooker,"Thanks for looking out. + +One may benefit (especially us elected) from listening to critics with an open heart even… https://t.co/061tvPdkfL" +07/02/2018,Politicians,@CoryBooker,Thank you Lori. You rock and so does your team. https://t.co/LmWkh0XiEO +07/02/2018,Politicians,@CoryBooker,"Lots of training gives me one of the better selfie games in all of Jersey. + +So good to see you again and I so appr… https://t.co/DtZYkY0Q7t" +07/02/2018,Politicians,@CoryBooker,Thanks to Channel 11 @PIX11News for the interview and @Betty_Nguyen and @craigtreadwaytv for the good conversation… https://t.co/jEaTpm6UPw +07/02/2018,Politicians,@CoryBooker,"Thanks for the interview this morning + +@loristokes and @sukanya on @fox5ny https://t.co/blNpDnUjnR" +07/02/2018,Politicians,@CoryBooker,"So grateful to be coming on Pix 11 at 8:05 AM. + +See you in a few mins. Anybody want coffee? https://t.co/D4tjZ7lFlC" +07/02/2018,Politicians,@CoryBooker,@BennKeezy You are a generous soul. +07/02/2018,Politicians,@CoryBooker,@c_shawnell Amen! And thank you. +07/02/2018,Politicians,@CoryBooker,@POESIEdeLUNE @CharlesKOrr I feel your pain. +07/02/2018,Politicians,@CoryBooker,@rodneyeason We sincerely need to focus on the midterms in November before we turn our energy toward 2020. But than… https://t.co/BR5nW32QLw +07/02/2018,Politicians,@CoryBooker,Thank you so much for being there. Gratitude to you. https://t.co/hKHQ9ZNt2W +07/02/2018,Politicians,@CoryBooker,Love back to you. https://t.co/Wh9ZOGeOAS +07/02/2018,Politicians,@CoryBooker,Actually I don’t. I openly criticized the poor treatment before Trump was elected. And I hope you will take time to… https://t.co/g50OuzVt6t +07/02/2018,Politicians,@CoryBooker,And you are nothing more than a incredible soul created in the image of the divine. Though we don’t agree on policy… https://t.co/CIIFk0IYfl +07/02/2018,Politicians,@CoryBooker,"Sorry, I’m a full on Yankee fan. https://t.co/ZcPr2nFIVX" +07/02/2018,Politicians,@CoryBooker,@anthonyhesse Hope you catch up. I’m one of only 6 US Senators that doesn’t take corporate contributions. +07/02/2018,Politicians,@CoryBooker,That would be fair. https://t.co/B6EJ3WqNWV +07/02/2018,Politicians,@CoryBooker,You are a truth teller. https://t.co/kSmbvu1ygp +07/02/2018,Politicians,@CoryBooker,I’m sorry u actually believe that. This administration put into affect 1 of the cruelest US policies of the last ce… https://t.co/rH6pNhubBQ +07/02/2018,Politicians,@CoryBooker,I love you and am a fellow Giants fan but you know the Giants play in Jersey right? https://t.co/J20LGDDjfK +07/02/2018,Politicians,@CoryBooker,"Going on Fox 5 NY Good Day New York at 7:10 AM. + +I love their show but I’m still a little salty they don’t call it Good Day NJ." +06/30/2018,Politicians,@CoryBooker,So grateful for your leadership Vanita. I will be marching in Jersey. https://t.co/IuHww7MqSG +06/30/2018,Politicians,@CoryBooker,@lyttle_david @TheBeatWithAri Thank you. +06/30/2018,Politicians,@CoryBooker,"RT @LC67472446: It was an honor meeting Senator @CoryBooker and Tom @Malinowski tonight at the Election Kick Off event for #TeamTom #NJ07 +P…" +06/30/2018,Politicians,@CoryBooker,@katwardphoto @SenBooker Thanks. +06/30/2018,Politicians,@CoryBooker,@rasincanegirl Thank you. +06/30/2018,Politicians,@CoryBooker,@DashMan18 @tribelaw @SenSchumer @RepAdamSchiff Gratitude +06/30/2018,Politicians,@CoryBooker,"RT @TheBeatWithAri: Senator @CoryBooker warns Trump could pick a Supreme Court Justice to ""protect himself"" https://t.co/yAiOIlTjk2" +06/30/2018,Politicians,@CoryBooker,"RT @Shareblue: Sen. Corey Booker calls on lawmakers to halt SCOTUS confirmation process until Mueller finishes investigating Trump +https:/…" +06/30/2018,Politicians,@CoryBooker,RT @dailykos: Cory Booker makes it clear: The Senate can't consider a nominee until Russia investigation is over https://t.co/1zJuggoWAa +06/30/2018,Politicians,@CoryBooker,RT @SenBooker: VIDEO: At Judiciary Committee Hearing @CoryBooker Warns of POTUS Conflict of Interest in Selecting #SCOTUS Justice: https://… +06/29/2018,Politicians,@CoryBooker,"“Not everything that is faced can be changed, + +but nothing can be changed until it is faced.” + +James Baldwin… https://t.co/FeFdVBMtXK" +06/28/2018,Politicians,@CoryBooker,I'm deeply saddened by the shooting at #CapitalGazette in Annapolis & horrified that journalists were attacked like… https://t.co/Ubg6umMIA9 +06/28/2018,Politicians,@CoryBooker,"RT @NARAL: “This will NOT happen without a fight. We, who believe that a woman has the right to make her own medical decisions, we now must…" +06/28/2018,Politicians,@CoryBooker,"RT @LambdaLegal: ""For those of us who believe love is love is love is love, we must now fight! Don't tell me this battle is already lost.""…" +06/28/2018,Politicians,@CoryBooker,"RT @ABC: Cory Booker on Supreme Court: ""The menacing truth is that we have to face a reality coming at us where we might lose some of the p…" +06/28/2018,Politicians,@CoryBooker,"RT @ThisWeekABC: Cory Booker on Supreme Court: ""The menacing truth is that we have to face a reality coming at us where we might lose some…" +06/28/2018,Politicians,@CoryBooker,RT @CAPAction: Senator @CoryBooker has a message: Stand strong. This is a time us to believe that we're on the right side of history...you… +06/28/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: ""I stand here to say: This will not happen without a fight"" @SenBooker #DitchtheList https://t.co/ISMpS96Py8" +06/28/2018,Politicians,@CoryBooker,https://t.co/ZgZceOfFmU +06/28/2018,Politicians,@CoryBooker,RT @SenBooker: Trump is the subject of a criminal investigation that could eventually come before the Supreme Court—he has a clear conflict… +06/28/2018,Politicians,@CoryBooker,"For that reason, I do not believe the Judiciary Committee should or can in good conscience consider a nominee put f… https://t.co/m7BKQRqvRm" +06/28/2018,Politicians,@CoryBooker,Should we be considering a Supreme Court nominee from a President who has a history of demanding these loyalty test… https://t.co/YaVyeYZ8tq +06/28/2018,Politicians,@CoryBooker,We’ve seen numerous people that are close to the President or on his campaign who have plead guilty … and we have a… https://t.co/86KNxhdcvI +06/28/2018,Politicians,@CoryBooker,The President of the United States is a subject of an ongoing criminal investigation – an investigation that every… https://t.co/c5jjT8sYXJ +06/28/2018,Politicians,@CoryBooker,"Regarding this Supreme Court vacancy: among the many consequential issues at stake, there is clearly a potential co… https://t.co/gbckfvIHYZ" +06/28/2018,Politicians,@CoryBooker,"In Judiciary Hearing. + +I will argue, among other things, that we should wait until after the election (McConnell r… https://t.co/rE2us944Fc" +06/27/2018,Politicians,@CoryBooker,"From low wages to short-termism, today’s corporations are keeping American workers from reaching their dreams. It’s… https://t.co/xYNFFGFO23" +06/26/2018,Politicians,@CoryBooker,"We still have work to do, America. +We still have work to do. +#NoBanNoWall https://t.co/YZlnEdMFRB" +06/23/2018,Politicians,@CoryBooker,"RT @CoryBooker: Love over hate + +Love over indifference + +Love over ignorance + +Love over ego + +Love over fear + +Love over barriers + +Love ove…" +06/23/2018,Politicians,@CoryBooker,"RT @senorrinhatch: “Tender age shelters” is a chilling phrase we will not soon forget. + +The child separation policy should be halted now.…" +06/23/2018,Politicians,@CoryBooker,"RT @JeffFlake: ""Tender Age"" shelters for toddlers? This gets even worse as the layers are peeled back. End the policy, Mr. President. https…" +06/23/2018,Politicians,@CoryBooker,"RT @M_Breen: The most powerful nation in the history of the world is now reduced to detaining babies in the name of national security. +http…" +06/23/2018,Politicians,@CoryBooker,RT @mattyglesias: I know I sleep better at night knowing the President is working hard to protect my family from the twin menaces of Centra… +06/23/2018,Politicians,@CoryBooker,"RT @mattklapper: Meet Senator @CoryBooker’s environment legislative aide, @ArianaSpawn, who earlier this month led efforts to introduce the…" +06/23/2018,Politicians,@CoryBooker,RT @voxdotcom: Sen. Cory Booker just introduced a bill that could legalize marijuana nationwide https://t.co/sTDu1yFXfp +06/22/2018,Politicians,@CoryBooker,Love is an active not a passive word. Thank you and all the best to you. https://t.co/PfgEebLNVv +06/22/2018,Politicians,@CoryBooker,Nothing truly worthwhile is easy. May we both take on this struggle with the understanding of Frederick Douglass’ w… https://t.co/2JOFo94vT9 +06/22/2018,Politicians,@CoryBooker,"I love you. May both you and I, seek less to assign blame and work more to accept responsibility. https://t.co/CYuJbkT5G7" +06/22/2018,Politicians,@CoryBooker,"Love over hate + +Love over indifference + +Love over ignorance + +Love over ego + +Love over fear + +Love over barriers… https://t.co/TYYaoaEaez" +06/20/2018,Politicians,@CoryBooker,We are supposed to learn from our past mistakes. Not repeat them. https://t.co/Ku3LTprSsC +06/19/2018,Politicians,@CoryBooker,"Celebrating #Juneteenth today – recognizing we've come a long way, but we still got a long way left to go." +06/19/2018,Politicians,@CoryBooker,RT @brianschatz: They want you to be so afraid of other people that you don’t notice when they take away your health care. +06/19/2018,Politicians,@CoryBooker,RT @brianschatz: Just because the Trump administration is separating kids from their parents doesn’t mean they aren’t also trying to elimin… +06/18/2018,Politicians,@CoryBooker,"We must all demand that our nation stop tearing apart families. + +To do nothing, to say nothing is to be complicit… https://t.co/qhVq0GOX33" +06/18/2018,Politicians,@CoryBooker,"RT @BillKristol: Trump: The Democrats made us do it. +Stephen Miller: It's our policy to do it. +Sec. Nielsen: We're not doing it." +06/18/2018,Politicians,@CoryBooker,RT @anastasianylon: Family detention under Obama was appalling and ultimately did not work; separating children from their parents is even… +06/18/2018,Politicians,@CoryBooker,RT @BetoORourke: Catch-22. We are preventing families from lawfully requesting asylum at our ports of entry & then criminally prosecuting t… +06/18/2018,Politicians,@CoryBooker,"RT @ajcorchado: Outraged over Trump administration's policy of splitting up families, hundreds of protesters marched Sunday to a shelter w…" +06/18/2018,Politicians,@CoryBooker,"RT @prernaplal: The 1997 Flores Agreement that the Trump Administration is now attacking does not call for separating families. + +Flores was…" +06/18/2018,Politicians,@CoryBooker,"RT @RealAfroScholar: Honored to have been asked to share my story and a bit about my hometown of #NewarkNJ. Between #Princeton, #YaleLaw, a…" +06/18/2018,Politicians,@CoryBooker,"Read this powerful op-ed by @LaurawBush then take 2 actions: + +Call on Trump to end his despicable policy of separat… https://t.co/zPuFintAkX" +06/18/2018,Politicians,@CoryBooker,Looking forward to co-hosting @NewarkMentoring Movement’s 7th Annual Charity Golf Outing with @markherzlich later t… https://t.co/hvsZXujOMD +06/15/2018,Politicians,@CoryBooker,"Earlier this year, I announced my campaign would no longer accept corporate PAC donations, a pledge only 6 of 100 s… https://t.co/EXmuyTvncr" +06/15/2018,Politicians,@CoryBooker,"To the hundreds of thousands of Dreamers: I see you, I hear you, I stand with you, I love you. Your stories are so… https://t.co/VRj8DCl5sl" +06/15/2018,Politicians,@CoryBooker,We have a moral obligation to pass the bipartisan #DreamAct to permanently protect Dreamers. Republican leaders in… https://t.co/6xyXtmVzAL +06/15/2018,Politicians,@CoryBooker,"On this day 6 years ago, President Obama created #DACA giving hope & security to thousands of young people across o… https://t.co/VDkdWTrk1F" +06/15/2018,Politicians,@CoryBooker,We can't allow the House GOP to continue putting oil company profits ahead of the health and safety of our coastal… https://t.co/T3ksKp2WER +06/14/2018,Politicians,@CoryBooker,Early voting starts today in Maryland! Heading out to a rally with Ben Jealous today. https://t.co/cviTzhWIvP +06/14/2018,Politicians,@CoryBooker,#tbt to last year’s @NewarkMentoring Movement Charity Golf Outing. Looking forward to this year’s 7th Annual Outing… https://t.co/wk5Uv2SbvW +06/11/2018,Politicians,@CoryBooker,"My friend @JoshGottheimer is running for re-election—he's a great partner in Congress fighting for our vets, first… https://t.co/Xj0xz4PNyI" +06/11/2018,Politicians,@CoryBooker,Had a great time chatting with @RondiCharleston for #TheResilienceConversations. Thanks for having me! https://t.co/TaHDH4KKPd +06/10/2018,Politicians,@CoryBooker,RT @SenBooker: The confirmation of Kenneth Marcus would be another blow to the civil rights of our students: https://t.co/qp4SKRBVE0 +06/10/2018,Politicians,@CoryBooker,"Be kind + +It is a great gift of generosity + +To oneself + +With the collateral benefit + +Of helping others." +06/10/2018,Politicians,@CoryBooker,"RT @SenBooker: ""Don't forget the title does not make the man, the man or woman must make the title"" – @CoryBooker, graduation speech to @Pr…" +06/10/2018,Politicians,@CoryBooker,"RT @SenBooker: 55 years ago today, JFK signed into law the #EqualPayAct of 1963—legislation mandating #equalpay for equal work. But 55 year…" +06/09/2018,Politicians,@CoryBooker,RT @nwlc: “[Kenneth Marcus] possesses at best a disturbing apathy and at worst a wanton disregard to protecting the rights of our kids in s… +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: VIDEO: @CoryBooker Opposes Nomination of Kenneth Marcus to Head Office for Civil Rights at U.S. Department of Education: +ht…" +06/09/2018,Politicians,@CoryBooker,RT @SenBooker: .@SenatorTimScott & I introduced bipartisan legislation to encourage capital investments in low-income or distressed communi… +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: Today is the 112th anniversary of the #AntiquitiesAct—a law that has protected our shared historical, cultural and national…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: Today, on #WorldOceansDay, I introduced the SAVE Right Whales Act to help reduce the impacts of human activities on North At…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenatorMenendez & 30 Senate Colleagues Introduce Bill to Halt Separation of Immigrant Families: https://t.co/…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenBobCasey & @timkaine Introduce Bill to Empower Community College Students: https://t.co/qEbFvcimJM" +06/09/2018,Politicians,@CoryBooker,RT @SenBooker: .@CoryBooker Calls for Social Security Administration to Address Growing Disability Backlog: https://t.co/QYXI3xmAbY +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenatorCarper & @SenBillNelson Introduce Bicameral Bill to Establish Grant Program for Right Whale Conservati…" +06/09/2018,Politicians,@CoryBooker,"To the graduates of the Class of 2018: + +You are your ancestors' wildest dreams. And as you each strive to make tha… https://t.co/aN50Iwx4y6" +06/07/2018,Politicians,@CoryBooker,"RT @civilrightsorg: On the Senate floor, Sen. @CoryBooker just said the confirmation of Ken Marcus to lead @usedgov's Office for Civil Righ…" +06/07/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker testifies against Jeff Sessions: ""our country demands a more courageous empathy"" https://t.co/Tnr3t9OyPM" +06/07/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: The group that Trump has put on the bench is the least diverse group from any President, Democrat or Republican, since…" +06/07/2018,Politicians,@CoryBooker,RT @LawyersComm: .@CoryBooker https://t.co/rpMd25udNI +06/07/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: If confirmed, Farr will have the power to decide to suppress or protect the rights of Americans to vote...to strengthe…" +06/07/2018,Politicians,@CoryBooker,"RT @NAACP: If confirmed Thomas Farr will have the power to affect the lives and livelihoods of vulnerable Americans, to either strengthen o…" +06/07/2018,Politicians,@CoryBooker,"RT @nwlc: ""We are at a time of crisis. This judge, like all judges, will have the opportunity to shape the outcomes of our democracy for ge…" +06/07/2018,Politicians,@CoryBooker,RT @SenBooker: Today on the 74th anniversary of #DDay we honor the courage and sacrifice of the brave Americans who stormed the beaches of… +06/07/2018,Politicians,@CoryBooker,RT @SenBooker: The Trump Administration wants to nominate a man named Thomas Farr for a lifetime appointment to a U.S. District Court. This… +06/07/2018,Politicians,@CoryBooker,RT @WeDemandJustice: Trump’s latest judge nominee has built his career around attempts to disenfranchise minorities. Why won't Chuck Grassl… +06/06/2018,Politicians,@CoryBooker,Thank you. I am so grateful for your leadership Chairman. https://t.co/TcLe7KdRRV +06/06/2018,Politicians,@CoryBooker,"RT @LawyersComm: .@CoryBooker ""we must decide to whether to sit down as spectators or stand up...now we have to raise our voices and demand…" +06/06/2018,Politicians,@CoryBooker,RT @NAACP: The opposite of justice is not injustice — it is INACTION. Sen. @CoryBooker #StopFarr +06/06/2018,Politicians,@CoryBooker,RT @civilrightsorg: Thank you Senate Judiciary Committee members @CoryBooker and @SenKamalaHarris for standing on the side of justice and f… +06/06/2018,Politicians,@CoryBooker,"RT @peoplefor: .@CoryBooker: We must rise up for justice, for love, for voting rights, civil rights, workers rights... we must rise up to s…" +06/06/2018,Politicians,@CoryBooker,Thank you for being at the rally. https://t.co/8vQjaJ2lxO +06/06/2018,Politicians,@CoryBooker,"RT @civilrightsorg: We demand justice. We demand equality. We demand ALL senators #StopHateStopFarr. + +Thank you @RevDrBarber, @GKButterfiel…" +06/06/2018,Politicians,@CoryBooker,"Remembering Robert F. Kennedy. 50 years after death, his words still hold true today. https://t.co/9HeOtnORsY" +06/06/2018,Politicians,@CoryBooker,"RT @deray: Kalief Browder died 3 years ago today. + +He spent 1,120 days in jail but was NEVER convicted of a crime. + +He couldn’t afford bail…" +06/06/2018,Politicians,@CoryBooker,RT @UNHCRLebanon: U.S. Senator @CoryBooker & Ambassador Elizabeth Richard of @usembassybeirut met Mahmoud & his family in their tent in Bek… +06/06/2018,Politicians,@CoryBooker,"RT @SenBooker: In March, Toys “R” Us announced layoffs for all employees including 1,500 in NJ w/ no severance pay after being forced into…" +06/06/2018,Politicians,@CoryBooker,"RT @AsburyParkPress: .@ToysRUs: NJ politicians blast worker treatment, demand severance pay @SenBooker @SenatorMenendez https://t.co/jQNXN…" +06/06/2018,Politicians,@CoryBooker,"RT @Fuscarino: Happy Pride! ❤️🧡💛💚💙💜 + +Thank you @GovMurphy and @SenBooker for marching with @GSEquality and standing with the LGBTQ communit…" +06/06/2018,Politicians,@CoryBooker,"RT @SenBooker: Disappointed in SCOTUS #MasterpieceCakeshop decision. To deny anyone equal justice under the law is wrong. A setback, but th…" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""It's so important to let gratitude be your gravity."" -- #Princeton18 Class Day speaker @SenBooker https://t.co/GjFV0dIDzE" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""Never forget that the biggest thing you can do on almost everyday is often just a small act of kindness, decency, love, and…" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""Life is not about collecting complaints or gathering grievances ... You don't have to attend every argument you're invited…" +06/06/2018,Politicians,@CoryBooker,RT @NAACP: TODAY is the day #WashingtonDC—Join us on Capitol Hill at 2pm ET/11am PT to demand qualified judges—Stop Hate | #StopFarr: Sens.… +06/06/2018,Politicians,@CoryBooker,"RT @LawyersComm: TODAY (6/6), join @KristenClarkeJD @CoryBooker @KamalaHarris, @RevDrBarber, @DerrickNAACP & @GKButterfield to stand up aga…" +06/05/2018,Politicians,@CoryBooker,"RT @JohnKDelaney: Alabama. +California. +Iowa. +Mississippi. +Montana. +New Jersey. +New Mexico. +South Dakota. +These states have primary electio…" +06/05/2018,Politicians,@CoryBooker,"RT @ProudResister: I JUST VOTED! + +🗳California +🗳Montana +🗳Alabama +🗳Iowa +🗳Mississippi +🗳New Jersey +🗳New Mexico +🗳South Dakota + +Get. Out. And. Vo…" +06/05/2018,Politicians,@CoryBooker,You Rock (the vote). https://t.co/3XG9XQPiPO +06/05/2018,Politicians,@CoryBooker,"New Jersey: + +Don’t forget to vote today in the Primary. + +And also + +California, +Iowa, +Montana, +Alabama, +Missi… https://t.co/cTr3yd6faQ" +06/05/2018,Politicians,@CoryBooker,"""Loudly and proudly"" playing the national anthem does not make you any more patriotic than actively fighting for ou… https://t.co/FbXb6nQ0dU" +06/05/2018,Politicians,@CoryBooker,"Protest is not un-American. Often, it is the most American thing we can do. +https://t.co/YZAyMBczjX" +06/04/2018,Politicians,@CoryBooker,Very excited and honored to be celebrating the great class of 2018 and sharing with them some remarks later this mo… https://t.co/l7FK51dX34 +06/04/2018,Politicians,@CoryBooker,"RT @jonfavs: In 3 California House Districts, Democrats could get locked out of competing in the general election because of the top-2 jung…" +06/04/2018,Politicians,@CoryBooker,RT @brianschatz: Net neutrality update: the Senate passed the CRA bill to restore net neutrality. Now the Speaker is bottling the bill up i… +05/31/2018,Politicians,@CoryBooker,"I’ve known Gina since our early 20s (and Andy her husband was my law school roommate). + +I steadfastly support her… https://t.co/SIbd4QNhQy" +05/28/2018,Politicians,@CoryBooker,"Today we honor the heroic men and women who gave their lives in service to our country, and remind ourselves that w… https://t.co/IAySl9eGM7" +05/24/2018,Politicians,@CoryBooker,"The NFL anthem protest decision is not honoring America, it is an affront to our proud legacy of athletes and other… https://t.co/2innbhMWSi" +05/24/2018,Politicians,@CoryBooker,"I deeply disagree with the decision of the NFL. + +Their decision is an affront to the American ideal of protest and… https://t.co/xBlE7sIioE" +05/24/2018,Politicians,@CoryBooker,"The special counsel investigation has produced almost 20 indictments, 5 guilty pleas—3 from Trump's team & 1 alread… https://t.co/QLsNjk5JN9" +05/24/2018,Politicians,@CoryBooker,@Kattorney Thanks so much for your kind words! +05/23/2018,Politicians,@CoryBooker,"“Hope will never be silent.” + +Harvey Milk" +05/23/2018,Politicians,@CoryBooker,"RT @TheDLCC: ""The stakes in this election couldn’t be higher. Almost 800 state legislative seats are up in November, and Democrats are in a…" +05/23/2018,Politicians,@CoryBooker,"RT @voxdotcom: Breaking: first-time candidate Amy McGrath has won Kentucky's Sixth District Democratic primary. + +The retired Marine fighte…" +05/23/2018,Politicians,@CoryBooker,I am so excited my friend Stacey Abrams won Georgia’s Democratic primary to become the nominee for governor - The 1… https://t.co/kJEQcg5yC2 +05/22/2018,Politicians,@CoryBooker,"RT @SenBooker: Workers should be able to band together to take on giant corporations in cases of sexual harassment, wage theft, and other w…" +05/22/2018,Politicians,@CoryBooker,"Excited for @Harvard_Law! Tomorrow grads will hear from my friend Sen @JeffFlake. + +I’ve heard some may not to atten… https://t.co/mmFxHI7u5J" +05/22/2018,Politicians,@CoryBooker,"Excited for @Harvard_Law! Tomorrow grads will hear from my friend Sen @JeffFlake. + +I’ve hear some may not to atten… https://t.co/rLAP8t5GJy" +05/21/2018,Politicians,@CoryBooker,@Pleasant_11 Great meeting you! +05/21/2018,Politicians,@CoryBooker,@Near_more @McCaskill4MO No they did not. +05/21/2018,Politicians,@CoryBooker,"RT @clairecmc: Ok St Louis, you turned it out and up! Goodness gracious what a wonderful rally. Remember: volunteer at Claire https://t.co/…" +05/21/2018,Politicians,@CoryBooker,@k_brinst It is critically important. I am not only fighting for campaign finance reform but am one of only 6 senat… https://t.co/2vtCFkfMiU +05/21/2018,Politicians,@CoryBooker,@jake0149 You can look it all up easily. Also I’m on of only 6 senators who does not take corporate contributions. +05/21/2018,Politicians,@CoryBooker,RT @SenWhitehouse: At the heart of what is wrong with American politics is that someone can anonymously donate $24 million. What secret pro… +05/21/2018,Politicians,@CoryBooker,"""We have a system of justice in this country that treats you much better if you're rich and guilty than if you're p… https://t.co/CvP0C0hNyj" +05/21/2018,Politicians,@CoryBooker,"RT @TheDLCC: When we win back state legislatures, we can resist Trump’s agenda and enact America’s agenda. This video with @corybooker expl…" +05/20/2018,Politicians,@CoryBooker,So awesome to see such incredible support here in Missouri for my friend and colleague Claire McCaskill… https://t.co/nAnxXciNyy +05/20/2018,Politicians,@CoryBooker,"I’m in Missouri today and excited to support @mccaskill4mo! + +Please consider making a small donation to help my co… https://t.co/lt0mtbtoi3" +05/20/2018,Politicians,@CoryBooker,"RT @McCaskill4MO: Hey, @CoryBooker— +Your fans Lamont and T.J. have a quick question for you! ⤵️ #kidz4claire #MOSen https://t.co/yWnfVMEbGt" +05/19/2018,Politicians,@CoryBooker,I landed and am driving into the city now. I so look forward to meeting Lamont! https://t.co/gxuUlG7YY3 +05/19/2018,Politicians,@CoryBooker,RT @clearwaterfire: The chin-up challenge was on earlier today at Station 46. Here's a look at @SenBillNelson showing our guys how to do it… +05/19/2018,Politicians,@CoryBooker,"RT @FrankLuntz: American deaths so far in 2018… + +• Deployed military: 29 +• Kids at school: 31 + +https://t.co/WdwaeCTFM7" +05/18/2018,Politicians,@CoryBooker,"That a young child thinks a school shooting is inevitable in America is utterly heartbreaking and unacceptable! + +T… https://t.co/Q6ZSmmWMY0" +05/18/2018,Politicians,@CoryBooker,"Santa Fe High School deserves better. + +ALL AMERICA’S CHILDREN DESERVE BETTER. + +We've become a nation where our ki… https://t.co/5kUGvIg3Um" +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: Right now, the president can order the firing of a special counsel on a whim. That clearly shouldn’t be allowed to happen—es…" +05/17/2018,Politicians,@CoryBooker,RT @SenBooker: Honored to speak to @KeanUniversity graduates today. Congratulations to #Kean2018! https://t.co/HByPf5coi0 +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: In America, this should not be the case – no American should be economically forgotten. This is why the fight for economic j…" +05/17/2018,Politicians,@CoryBooker,RT @CatherineForNV: My friend @CoryBooker is right. This is an important message for democrats to hear. https://t.co/Ikip2I6Mov +05/17/2018,Politicians,@CoryBooker,RT @CoryBooker: In honor of National Women's Health Week I'm introducing a resolution to recognize the deep importance of supporting women'… +05/17/2018,Politicians,@CoryBooker,RT @MelissaRyan: Greatly appreciate @CoryBooker laying out just how vile Cambridge Analytica's tactics (not to mention the clients who used… +05/17/2018,Politicians,@CoryBooker,RT @CoryBooker: Great news – the Senate just voted to save #NetNeutrality! But the battle is not over – now we need to put pressure on the… +05/17/2018,Politicians,@CoryBooker,RT @annabanana0626: This is a story of what one small act can do for a child. You can see in 2 of the photos in this thread that Henry is p… +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: I oppose the House Farm Bill, H.R. 2. This damaging bill would harm the most vulnerable Americans by reducing or eliminating…" +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: I urge all House members to vote YES on the Brat-Blumenauer Amendment No. 71 to H.R. 2, which would provide much-needed refo…" +05/17/2018,Politicians,@CoryBooker,"“It is certain, in any case, that ignorance, allied with power, is the most ferocious enemy justice can have.” + +James Baldwin" +05/17/2018,Politicians,@CoryBooker,RT @AmericaVotes: Progressives are working hard to #FlipEverything this fall to bring back the values Democrats fight for every day in stat… +05/17/2018,Politicians,@CoryBooker,@JessicaPost You are welcome. Thanks for the tweet. +05/17/2018,Politicians,@CoryBooker,"RT @JessicaPost: Democrats are 16 seats away from flipping 8 state legislative chambers around the country. This November is HUGE. + +I love…" +05/16/2018,Politicians,@CoryBooker,Excited to be a part of #HorizonsGivingDay! Please support our NJ programs by visiting https://t.co/jWqYyPhEoj and… https://t.co/eBMimyad4g +05/16/2018,Politicians,@CoryBooker,RT @Alyssa_Milano: Democrats are working hard to #FlipEverything this fall in order to bring back the values Democrats fight for every day… +05/16/2018,Politicians,@CoryBooker,@North2North @Alyssa_Milano @TheDLCC And you are probably a very good and honorable person. I hope that we both can… https://t.co/DjtceO4ccM +05/16/2018,Politicians,@CoryBooker,"RT @TheDLCC: Of 99 state legislative chambers, Republicans control 66 of them. The stakes in this year’s election couldn’t be higher for De…" +05/16/2018,Politicians,@CoryBooker,Great news – the Senate just voted to save #NetNeutrality! But the battle is not over – now we need to put pressure… https://t.co/Vk5K5up2XF +05/16/2018,Politicians,@CoryBooker,In honor of National Women's Health Week I'm introducing a resolution to recognize the deep importance of supportin… https://t.co/g5p7VknaDp +05/16/2018,Politicians,@CoryBooker,Today is the day. The vote to save #NetNeutrality is finally happening in the Senate – and it's a close one. Call y… https://t.co/PfkroApKR0 +05/16/2018,Politicians,@CoryBooker,"RT @ScottHech: Daily reminder of the #PowerofProsecutors. They had (still have) the power to decide whether to charge, whether to charge a…" +05/16/2018,Politicians,@CoryBooker,"RT @ScottHech: Powerful photo of one of my favorite judges-Judge Simpson-consoling Mr. Bunn. ""I am more than emotional about this day,"" sai…" +05/16/2018,Politicians,@CoryBooker,RT @ScottHech: He was 14 when he was falsely arrested & prosecuted. 14. Years. Old. His trial lasted a single day. He spent 17 innocent yea… +07/02/2018,Politicians,@SenSherrodBrown,Clevelanders are grateful to the @FBI & all law enforcement officers for their work protecting our city & our neigh… https://t.co/EKOHKjQM2Q +06/29/2018,Politicians,@SenSherrodBrown,The expansion of the Women’s Recovery Center in Cleveland is just a small step toward ensuring Ohioans have the res… https://t.co/GECzVdNFrf +06/29/2018,Politicians,@SenSherrodBrown,"What’s worse is that the Federal Reserve wants to make life even easier for the big banks, by removing a key fundin… https://t.co/tZ04imCORB" +06/29/2018,Politicians,@SenSherrodBrown,"Instead of payouts to executives and wealthy shareholders, big banks should be reinvesting profits into workers, lo… https://t.co/SQAVdcKCLs" +06/29/2018,Politicians,@SenSherrodBrown,"Between the partisan tax bill, the #DoddFrankRollback bill, and the Administration constantly checking items off of… https://t.co/CKZu3v5Nvm" +06/29/2018,Politicians,@SenSherrodBrown,"This past month, we joined together to recommit ourselves to ensuring all Americans, regardless of who they love, h… https://t.co/iW67Qrzb0D" +06/29/2018,Politicians,@SenSherrodBrown,"For the 2nd year in a row, the White House broke with tradition & failed to offer an official presidential proclama… https://t.co/bGyxHFNV6a" +06/29/2018,Politicians,@SenSherrodBrown,"Journalists ask tough questions, bring us stories that affect our day-to-day lives, & tell stories that might not o… https://t.co/2NfNBWwJxB" +06/28/2018,Politicians,@SenSherrodBrown,Our hearts break for all those affected by this horrific act of violence. Thank you to the police and first respond… https://t.co/gxAqjr31ia +06/27/2018,Politicians,@SenSherrodBrown,"An attack on public service unions is an attack on all unions, & an attack on unions is an attack on all workers. T… https://t.co/6tyzg2lD4g" +06/27/2018,Politicians,@SenSherrodBrown,"I’m already very troubled by SCOTUS' actions in just the last few weeks—taking away workers’ rights, voters’ rights… https://t.co/IaIB0pK1vZ" +06/27/2018,Politicians,@SenSherrodBrown,"The decision in #JanusvsAFSCME is shameful, and it’s a setback – but we're not going to stop organizing and fightin… https://t.co/XVTgWHa007" +06/27/2018,Politicians,@SenSherrodBrown,"Pope Francis said, “We don't get dignity from power nor money or culture. We get dignity from work.” And part of th… https://t.co/8sTcW9X8AV" +06/27/2018,Politicians,@SenSherrodBrown,"#JanusvsAFSCME is an attack on workers' freedom to advocate for themselves. Workers produce more than ever, but don… https://t.co/QtqGPSr9iN" +06/26/2018,Politicians,@SenSherrodBrown,Thanks to the families from each of Ohio’s children’s hospitals for coming in today to tell your stories and discus… https://t.co/5gjc3O9omJ +06/26/2018,Politicians,@SenSherrodBrown,WATCH LIVE: after @DispatchAlerts reported that just two out of the ten most common jobs in Ohio pay enough to affo… https://t.co/LniHzRpkx9 +06/26/2018,Politicians,@SenSherrodBrown,"We keep America safe by aggressively going after terrorism, not by turning our backs on children and families who a… https://t.co/Uj78WC6sGA" +06/26/2018,Politicians,@SenSherrodBrown,"It’s no secret that Ohio is home to all kinds of innovation and excellence. On this day in 1974, the first Universa… https://t.co/4Z36B8SG9E" +06/25/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod’s speaking out about GM’s decision to build the Chevy Blazer in Mexico – a move that was report… https://t.co/oryzzgl8iV +06/24/2018,Politicians,@SenSherrodBrown,We are so grateful to all Ohio officers who put themselves in harm’s way protecting our communities every day. -SB +06/24/2018,Politicians,@SenSherrodBrown,"Our hearts go out to the officer’s family, fellow officers and the entire Mentor community. We send our support to… https://t.co/NgAnp0MLla" +06/23/2018,Politicians,@SenSherrodBrown,"GM should reverse this irresponsible decision, and use its tax windfall to invest in American workers. -SB" +06/23/2018,Politicians,@SenSherrodBrown,GM’s timing on this outrageous decision could not have been worse. On the same day GM is laying off workers in Youn… https://t.co/xrn2eIOArr +06/22/2018,Politicians,@SenSherrodBrown,In Columbus today talking about the need to protect thousands of civilian defense jobs in Central OH. These workers… https://t.co/Un8SASoq9i +06/21/2018,Politicians,@SenSherrodBrown,"Excited to announce that the 2018 Propel Ohio Leadership Summit for undergraduate students will be on Friday, Octob… https://t.co/czwDxTHvi7" +06/21/2018,Politicians,@SenSherrodBrown,Hoping for a quick recovery of the wounded officer. Thinking of everyone involved and grateful to Ohio officers who… https://t.co/FDK0vvUHcT +06/20/2018,Politicians,@SenSherrodBrown,Today was the 11th annual Ohio College Presidents Conference hosted by our office. Thank you to the 35 college pres… https://t.co/StvsKjBAyk +06/20/2018,Politicians,@SenSherrodBrown,RT @NGattozzi: .@PresBWarren joins with Ohio university president's for the 11th Ohio College Presidents' Conference hosted by @SenSherrodB… +06/20/2018,Politicians,@SenSherrodBrown,"RT @OHIOPrezOffice: I am attending the Ohio College Presidents Conference hosted by @SenSherrodBrown in Washington, D.C. today. Lots of opp…" +06/20/2018,Politicians,@SenSherrodBrown,RT @CSU_President: Great to be at the Ohio College Presidents Conference with @SenSherrodBrown and 50 colleagues to talk about innovation a… +06/20/2018,Politicians,@SenSherrodBrown,RT @OCCPresident: @SenSherrodBrown kicking off the Ohio College Presidents conference in DC. Great dialogue and information sharing. https:… +06/20/2018,Politicians,@SenSherrodBrown,"RT @MJuhas: TY ⁦@SenSherrodBrown⁩ 4 hosting the Ohio College Presidents Conference! Great panel on Innovation, Incubators & Entrepreneurshi…" +06/20/2018,Politicians,@SenSherrodBrown,RT @sean_decatur: With @SenSherrodBrown at the 2018 College Presidents Conference. #OhioSchoolsDC https://t.co/6jdYfOxs5x +06/20/2018,Politicians,@SenSherrodBrown,RT @clarkstatepres: We are here at @SenSherrodBrown Annual meeting for #Ohio presidents! https://t.co/383RN1gRWi +06/20/2018,Politicians,@SenSherrodBrown,"RT @WCPresJimR: Pleased to be part of Senator Brown’s Ohio College President’s Conference in Washington, DC today. Wonderful program and p…" +06/20/2018,Politicians,@SenSherrodBrown,RT @ctambar: Thanks Senator Sherrod Brown for asking Oberlin to be on the host committee for your 11th annual Ohio College Presidents’ Conf… +06/20/2018,Politicians,@SenSherrodBrown,"RT @HJamesWilliams: Ohio colleges and universities are meeting, here in Washington, DC, to discuss higher education issues and opportunitie…" +06/20/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod speaks after President Trump reverses course and ends the family separation policy. https://t.co/x9OV4FgJOm +06/20/2018,Politicians,@SenSherrodBrown,https://t.co/x9OV4FgJOm +06/20/2018,Politicians,@SenSherrodBrown,"And in our meeting this afternoon, @DeptVetAffairs Secretary-nominee Robert Wilkie must commit to working toward gr… https://t.co/9D9BYXbqt0" +06/20/2018,Politicians,@SenSherrodBrown,"Joining with @SenatorTester, @SenDougJones, @SenGillibrand & @SenBillNelson to file an amendment that would require… https://t.co/UApOPpXigM" +06/20/2018,Politicians,@SenSherrodBrown,"This week we learned @DeptVetAffairs has secret data about VA nursing home facilities – what’s worse, this data sho… https://t.co/yhwvg5SVC2" +06/20/2018,Politicians,@SenSherrodBrown,"I am imploring @POTUS, not as a Senator, but as an American, as a father and grandfather – please take action to pr… https://t.co/zt6dJvaX5q" +06/20/2018,Politicians,@SenSherrodBrown,"Dr. Colleen Kraft, current President of @AmerAcadPeds and past Medical Director of the Health Network by Cincinnati… https://t.co/ZB8eYOkLaG" +06/20/2018,Politicians,@SenSherrodBrown,"I’m demanding answers from @SecNielsen and @SecAzar about what they are doing to care for the mental, physical and… https://t.co/YUhIdivoQo" +06/20/2018,Politicians,@SenSherrodBrown,"Further, their reporting warns that in at least one facility housing these children, staff are under the impression… https://t.co/38HM04RXxb" +06/20/2018,Politicians,@SenSherrodBrown,.@kristinegWP and @NPRJoel have reported that the trauma experienced by children forcibly taken from their parents… https://t.co/oiZ4AxsXIO +06/20/2018,Politicians,@SenSherrodBrown,Introducing a bill with @SenAmyKlobuchar today to restore the rights of voters and uphold the integrity of our elec… https://t.co/BGXsglQZrF +06/20/2018,Politicians,@SenSherrodBrown,Last week’s decision in the Ohio voter purge Supreme Court case was a step backward for our democracy – we need to… https://t.co/NLBXwjQt5u +06/19/2018,Politicians,@SenSherrodBrown,".@BetsyDeVosED has continued to chip away at protections for student loan borrowers, and she’s made it a lot harder… https://t.co/b8WQo0zQEq" +06/19/2018,Politicians,@SenSherrodBrown,Demanding answers today with @SenWarren about exactly what role Kraninger has played in developing and implementing… https://t.co/YBESshpY8t +06/19/2018,Politicians,@SenSherrodBrown,"At @OMBPress, Kathy Kraninger - the Administration's nominee to head the @CFPB – oversees policies implemented by… https://t.co/XykExjwM8K" +06/18/2018,Politicians,@SenSherrodBrown,Tearing apart families is wrong and will not fix our broken immigration system. President Trump can immediately rev… https://t.co/z479Q34dCg +06/18/2018,Politicians,@SenSherrodBrown,"Joined veterans in Cleveland to talk about the All-American Flag Act, which would require the fed gov't to only buy… https://t.co/4nBDQiK9Xq" +06/18/2018,Politicians,@SenSherrodBrown,OCC Comptroller Joseph Otting – the man who’s charged with overseeing our country’s large banks – said he can’t say… https://t.co/ZFPG5w5xAc +06/18/2018,Politicians,@SenSherrodBrown,Working families need a @CFPB Director who will fight for them. For months I have called for a CFPB Director with a… https://t.co/EedmKXXbp1 +06/17/2018,Politicians,@SenSherrodBrown,Wishing Ohio dads a happy #FathersDay – as well as the father figures who help raise and teach our children. We als… https://t.co/Br3YCEziNH +06/17/2018,Politicians,@SenSherrodBrown,Thank you to everyone following this important legislation. The online list of cosponsors should be updated soon. -SB +06/17/2018,Politicians,@SenSherrodBrown,We demand all children be treated with compassion. Tearing families apart is wrong and will not fix our broken immi… https://t.co/oJ669RtiyZ +06/15/2018,Politicians,@SenSherrodBrown,ICYMI: Otting must open his eyes to this reality in order to do his job. #OCCnoColor https://t.co/DsUw90yYmB +06/15/2018,Politicians,@SenSherrodBrown,Here are some additional steps we can take → https://t.co/7yDkFpa0ao https://t.co/dNhTZoMMRH +06/15/2018,Politicians,@SenSherrodBrown,"We have more work to do to address the root of China’s cheating and reset our trade imbalance, and I will continue… https://t.co/RZi5ulYKqd" +06/15/2018,Politicians,@SenSherrodBrown,"China’s cheating has shuttered steel plants across our state, put Ohioans out of work, and distorted global markets… https://t.co/j6D5zeRw5E" +06/14/2018,Politicians,@SenSherrodBrown,Watch Sherrod question Otting at this morning’s @SenateBanking hearing. https://t.co/tKHRcnw9V1 +06/14/2018,Politicians,@SenSherrodBrown,"And @PewResearch found that in 2015, ""27.4% of black applicants and 19.2% of Hispanic applicants were denied mortga… https://t.co/JWlFp5N9Ki" +06/14/2018,Politicians,@SenSherrodBrown,"In the banking sector Otting oversees? +The Center for Investigative Reporting analyzed tens of millions of mortgag… https://t.co/iuzSuD9Fld" +06/14/2018,Politicians,@SenSherrodBrown,@PewResearch: “About half of Hispanics in the U.S. (52%) say they have experienced discrimination or have been trea… https://t.co/Fkl4n8V76U +06/14/2018,Politicians,@SenSherrodBrown,@NPR: “Almost all of the black people who responded — 92 percent — said they felt that discrimination against Afric… https://t.co/0dZGKQYLG2 +06/14/2018,Politicians,@SenSherrodBrown,@PewResearch: “About four-in-ten working women (42%) in the United States say they have faced discrimination on the… https://t.co/GWtZv2uABj +06/14/2018,Politicians,@SenSherrodBrown,OCC Comptroller Joseph Otting – the man who’s charged with overseeing our country’s large banks – said he can’t say… https://t.co/TDTGNCFaZX +06/14/2018,Politicians,@SenSherrodBrown,"What’s more patriotic than the American flag? +Supporting American jobs by buying American-made products. + +This… https://t.co/swuZBeh8Mq" +06/13/2018,Politicians,@SenSherrodBrown,We already knew that Readler has tried to strip Ohioans of their rights – and now he’s putting politics above legal… https://t.co/1LKLCY4haJ +06/13/2018,Politicians,@SenSherrodBrown,"Readler's attack on patients with pre-existing conditions – which 3 other career lawyers refused to make – ""could h… https://t.co/yHpSW59XaP" +06/13/2018,Politicians,@SenSherrodBrown,Nor did the significance of the 3 lawyers’ refusal to sign on to the Administration’s argument.… https://t.co/BV5wogyOtb +06/13/2018,Politicians,@SenSherrodBrown,This serendipity didn't go unnoticed. https://t.co/kSdrp9vL57 https://t.co/fae35MoaX1 +06/13/2018,Politicians,@SenSherrodBrown,"Last week, 3 career @TheJusticeDept attorneys withdrew from a legal brief challenging protections for pre-existing… https://t.co/pVKWmZeqRi" +06/13/2018,Politicians,@SenSherrodBrown,"Chatting with @SenateMajLdr about how great this year's #FarmBill is, in terms we both understand: it's both a gran… https://t.co/lqF2RnOX6r" +06/13/2018,Politicians,@SenSherrodBrown,"""The risk to businesses include employers not only in declining plans but also in healthy plans & the job risks imp… https://t.co/3ZeDyDprQM" +06/13/2018,Politicians,@SenSherrodBrown,"""My message today is simple: this committee must succeed in its mission to solve the multiemployer funding crisis.""… https://t.co/uGGnqXywKj" +06/13/2018,Politicians,@SenSherrodBrown,WATCH NOW: Businesses are urging the Pensions Committee to find a solution to the pensions crisis. https://t.co/gQjdrYN77N +06/13/2018,Politicians,@SenSherrodBrown,BREAKING NEWS: @USChamber new report “The Multiemployer Pension Plan Crisis: Businesses and Jobs at Risk” https://t.co/vgdm1NpUDt +06/13/2018,Politicians,@SenSherrodBrown,RT @USChamber: Op-ed in @thehill by @USChamberEPD: The multi-employer pension crisis https://t.co/Xvuip2jIbc +06/13/2018,Politicians,@SenSherrodBrown,WATCH LIVE: @senorrinhatch and Sherrod hold a hearing of the Pensions Committee to learn more about how the pension… https://t.co/50Rgm7eLrH +06/12/2018,Politicians,@SenSherrodBrown,"Hear more from Ohio @CWAUnion workers about what it means to them to work in a call center, and the pride that they… https://t.co/s02NjVbcGH" +06/12/2018,Politicians,@SenSherrodBrown,"Great to see @CWAUnion workers today, and thank them for their continued advocacy. We join them in fighting for a t… https://t.co/hBHbDfVxgK" +06/12/2018,Politicians,@SenSherrodBrown,"But we’ve heard empty promises from the North Koreans before, so we must continue to hold them accountable with tou… https://t.co/K8QhQD3D5n" +06/12/2018,Politicians,@SenSherrodBrown,"We all want these negotiations to succeed, and I’m glad the President had a positive meeting with Kim Jong Un. https://t.co/QQCnmw6qxv" +06/11/2018,Politicians,@SenSherrodBrown,"“Sherrod Brown wants you to know he has your back.” Damn right – and that’s regardless of what you look like, where… https://t.co/kBKABJ9ELl" +06/11/2018,Politicians,@SenSherrodBrown,"We need to fight the addiction crisis at every level – prevention, treatment, and recovery. And that must include m… https://t.co/Xy9j8Ud8tc" +06/11/2018,Politicians,@SenSherrodBrown,This ruling further shows why we can’t afford to pack our federal courts with judges who have a track record of hos… https://t.co/iOprpqHsYM +06/11/2018,Politicians,@SenSherrodBrown,"Ohio should be working to make voting easier, not harder. Instead, today’s decision empowers Ohio to further strip… https://t.co/gCrjYcmiXC" +06/11/2018,Politicians,@SenSherrodBrown,"It also includes our Local FARMS Act – which would help farmers sell their products directly to consumers, create r… https://t.co/5niSJTsTQU" +06/11/2018,Politicians,@SenSherrodBrown,"The bipartisan Senate Farm Bill is good for farmers, good for families, good for taxpayers, good for jobs, and good… https://t.co/U7ghMTaJgT" +06/09/2018,Politicians,@SenSherrodBrown,Congrats to the @warriors on their victory – and to the @cavs & @KingJames on another great season. While I maintai… https://t.co/nqGq6DI0eT +06/08/2018,Politicians,@SenSherrodBrown,".@senrobportman – despite a rigged Game 1, I’m staying optimistic about the series. Nobody does a comeback like Cle… https://t.co/Jk9DYoo7p4" +06/08/2018,Politicians,@SenSherrodBrown,"The Toledo area has a long and storied history as a center for the American glass industry, and First Solar's inves… https://t.co/KZhSz0Sa0W" +06/08/2018,Politicians,@SenSherrodBrown,Congratulations to First Solar as they break ground on their newest Wood County plant – set to be one of the larges… https://t.co/91fkgtH2JM +06/08/2018,Politicians,@SenSherrodBrown,It’s simple: women should be paid the same as men for the same work. We need to strengthen the #EqualPayAct by pass… https://t.co/AurHy8Natk +06/08/2018,Politicians,@SenSherrodBrown,This Sunday marks the 55th anniversary of the #EqualPayAct. And yet too many women still aren't earning the same am… https://t.co/uFHSiNO4AN +06/08/2018,Politicians,@SenSherrodBrown,Learn more about Readler and Murphy’s records – and their work trying to strip Ohioans of their rights → https://t.co/1HtRmySTVw +06/08/2018,Politicians,@SenSherrodBrown,I cannot support nominees who have actively worked to strip Ohioans of their rights. Special interests already have… https://t.co/hODh5o32Ko +06/08/2018,Politicians,@SenSherrodBrown,"I believe Ohio kids have the right to quality education, Ohio citizens have the right to vote, working families hav… https://t.co/jOiMZQzklh" +06/07/2018,Politicians,@SenSherrodBrown,"But this alone is not enough - just as we protect our national security against threats from foreign investments, w… https://t.co/TN8bsJPrw9" +06/07/2018,Politicians,@SenSherrodBrown,It's great news that this year's #NDAA includes our bipartisan measure to strengthen the tools the U.S. uses to blo… https://t.co/D6mx8xW1Iq +06/06/2018,Politicians,@SenSherrodBrown,Mulvaney has proven once again he would rather cozy up with payday lenders and industry insiders than listen to con… https://t.co/gk1dVWcogG +06/06/2018,Politicians,@SenSherrodBrown,Glad to have Tina sitting at the table – and already grateful for her work on tough problems like the pension crisi… https://t.co/1Vk2zupEiC +06/06/2018,Politicians,@SenSherrodBrown,"Congratulations to Ohio’s @BorenAwards scholars, who will soon begin their studies in countries all over the world.… https://t.co/jnmGxdIbMx" +06/05/2018,Politicians,@SenSherrodBrown,"Last week, Boeing flight technicians in SC voted to join a union for the first time, giving them a voice in their w… https://t.co/OSilyL8akK" +06/04/2018,Politicians,@SenSherrodBrown,"So what does the Volcker Rule do? It stops banks from taking big risks with your money. Those complicated, risky be… https://t.co/ezgurIrS4H" +06/04/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod's on the floor blasting the latest handout to Wall Street: a proposal gutting one of the key co… https://t.co/ef8hip9XGt +06/04/2018,Politicians,@SenSherrodBrown,"All Americans deserve to be protected from discrimination – regardless of where they live, what they look like, or… https://t.co/uBitWXPApg" +06/01/2018,Politicians,@SenSherrodBrown,"Standing with @SenBooker, @maziehirono, @SenMarkey, @SenJeffMerkley @SenSanders, @SenBrianSchatz, @SenatorTomUdall,… https://t.co/ZmGueWJMmF" +06/01/2018,Politicians,@SenSherrodBrown,"Following our success in securing new screening devices for federal law enforcement agents earlier this year, we ne… https://t.co/vc5cCDGAtP" +06/01/2018,Politicians,@SenSherrodBrown,"I urge Boeing to respect the decision its workers have made, and come to the negotiating table in good faith. -SB" +06/01/2018,Politicians,@SenSherrodBrown,"Tonight’s victory is a win not just for the Boeing technicians, but for all workers trying to advocate for themselv… https://t.co/NXCjBfV7Zn" +06/01/2018,Politicians,@SenSherrodBrown,I congratulate the Boeing flight readiness technicians for voting to join a union. https://t.co/q0InEhqYhq +06/01/2018,Politicians,@SenSherrodBrown,Thanks to students in CLE today who joined us to discuss gun violence prevention. We can’t say we're doing what it… https://t.co/Z7kQ7QmAKc +05/31/2018,Politicians,@SenSherrodBrown,Hey @SenFeinstein and @SenKamalaHarris – let’s make the #NBAFinals a little more interesting. When the @cavs do… https://t.co/0OAgd1Zx5K +05/31/2018,Politicians,@SenSherrodBrown,RT @ScottWartman: Democratic and Republican senators agree: Keep the Amtrak ticket window open at Union Terminal https://t.co/TTXg3Nu8yJ @S… +05/30/2018,Politicians,@SenSherrodBrown,"To effectively fight the opioid epidemic, we need to give law enforcement the tools they need to detect and identif… https://t.co/Nygu1TfN8O" +05/30/2018,Politicians,@SenSherrodBrown,"The U.S. lost 200,000 call center jobs between 2006 and 2014 - and make no mistake, these are good jobs that we wan… https://t.co/S8FfA35YcF" +05/29/2018,Politicians,@SenSherrodBrown,It’s a disgrace that we have allowed the transportation system our parents and grandparents left us to fall into di… https://t.co/8gXh5Cy2qW +05/29/2018,Politicians,@SenSherrodBrown,It’s no secret that Brent Spence is in bad shape – but Cincinnati’s Western Hill Viaduct is in disrepair too. In fa… https://t.co/Lwx65G1cjo +05/29/2018,Politicians,@SenSherrodBrown,Good luck to Ohio's P-R-E-C-O-C-I-O-U-S competitors. #SpellingBee https://t.co/3p778NVzd0 +05/28/2018,Politicians,@SenSherrodBrown,"On #MemorialDay, we remember all Ohioans who made the ultimate sacrifice for our country. It’s our duty to honor th… https://t.co/t0i27FRVPG" +05/27/2018,Politicians,@SenSherrodBrown,"In @KingJames’ words – “In Northeast Ohio, nothing is given. Everything is earned.” Cleveland’s ready for #Game7. #WhateverItTakes" +05/27/2018,Politicians,@SenSherrodBrown,As they say – it ain’t over till it’s over. What a comeback for the @cavs last night. #WhateverItTakes +05/26/2018,Politicians,@SenSherrodBrown,An alternative headline: “Caps Fans Encounter Cleveland Hospitality” https://t.co/8E94WijV4O +05/25/2018,Politicians,@SenSherrodBrown,This proposed rule isn’t about protecting women; it’s about scoring political points at the expense of women's heal… https://t.co/HQkstvnBZp +05/25/2018,Politicians,@SenSherrodBrown,"By placing the federal government in between a woman and her doctor, the Administration's misguided and rushed prop… https://t.co/6lAipekRAl" +05/24/2018,Politicians,@SenSherrodBrown,It's always a pleasure to see the inimitable @sr_simone. Her advocacy continues to change our country for the bette… https://t.co/7alBgIgZ0A +05/24/2018,Politicians,@SenSherrodBrown,Rooting for @CWRU Softball today in their first game of the NCAA DIII Championships! https://t.co/EX7pR2BplR +05/24/2018,Politicians,@SenSherrodBrown,"We have more to do to make sure that every worker feels safe, supported, and heard in their workplace – regardless of where that is." +05/24/2018,Politicians,@SenSherrodBrown,"Just now, the Senate passed bipartisan legislation that will improve how cases of sexual harassment and workplace d… https://t.co/3cp5cFKwBZ" +05/24/2018,Politicians,@SenSherrodBrown,"Last week, @Pontifex called our current financial system “an inadequate framework that exclude[s] the common good.”… https://t.co/RNUwU9RzqG" +05/24/2018,Politicians,@SenSherrodBrown,#DoddFrankRollBack – which just got signed into law – increases the likelihood of a big bank failure and a financia… https://t.co/S75ILU22f4 +05/24/2018,Politicians,@SenSherrodBrown,Wages have been largely flat. 44 percent of Americans adults can’t afford an emergency expense of $400. One in four… https://t.co/euZP2rJlbU +05/24/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: As the #DoddFrankRollback bill gets signed into law, Sherrod quotes @Pontifex on the floor: our current… https://t.co/v0VkuwPJ2U" +05/23/2018,Politicians,@SenSherrodBrown,Ohioans still deserve answers from Discovery Tours and that’s why I’ve called federal authorities to investigate. -… https://t.co/msH3Xli6eA +05/23/2018,Politicians,@SenSherrodBrown,I was proud to welcome Northwood Middle School’s 8th graders and Van Cleve Elementary’s 6th graders to our nation’s… https://t.co/IKzMHdFFhZ +05/23/2018,Politicians,@SenSherrodBrown,"Yesterday, Congress once again sided with special interests and Wall Street instead of taxpayers, homeowners, stude… https://t.co/AeiCdcnnuq" +05/23/2018,Politicians,@SenSherrodBrown,"""Congress sent a bill to President Donald Trump’s desk Tuesday intended to roll back regulations adopted after the… https://t.co/F0OavXqsxL" +05/23/2018,Politicians,@SenSherrodBrown,.@steelworkers are here today to tell their stories – about how Chinese cheating has shuttered steel mills & devast… https://t.co/3a7E7IKggC +05/23/2018,Politicians,@SenSherrodBrown,"Army Pfc. Michael J. Metcalf made the ultimate sacrifice for our country, and Ohio remains grateful for his service. https://t.co/1O43VkrJr0" +05/22/2018,Politicians,@SenSherrodBrown,"Workers are producing more and working harder than ever before – they are the ones who grow our economy. + +This rul… https://t.co/4UVIbgW5J5" +05/22/2018,Politicians,@SenSherrodBrown,Workers deserve to have their day in court when they've been wronged. This ruling means they'll have to settle thei… https://t.co/RjiGC0kjVu +05/22/2018,Politicians,@SenSherrodBrown,"Yesterday, the Supreme Court chose big companies over workers, and stripped workers of their power to sue the emplo… https://t.co/O0LnLSt2Ul" +05/22/2018,Politicians,@SenSherrodBrown,HAPPENING NOW: Sherrod's talking to @thehill at the @Newseum this morning about opioid addiction prevention.… https://t.co/bRThOXq0JV +05/22/2018,Politicians,@SenSherrodBrown,Thank you to the workers and retirees who joined us in Columbus this morning. We won’t stop speaking out about the… https://t.co/tE6NV8FCml +05/21/2018,Politicians,@SenSherrodBrown,"They are counting on Congress to put partisan politics aside and work together, and I am committed to working with… https://t.co/HsF5TmLqhM" +05/21/2018,Politicians,@SenSherrodBrown,"Ohio farmers, families and communities depend on the #FarmBill to support agriculture jobs, feed hungry families an… https://t.co/mcDMItTO40" +05/21/2018,Politicians,@SenSherrodBrown,Banks and payday lenders already have armies of lobbyists on their sides – they don’t need one more. -SB https://t.co/XycF7XhQ3Y +05/21/2018,Politicians,@SenSherrodBrown,"Our workers are more than a line item in a budget, a cost to be minimized – rather, they are our greatest resource.… https://t.co/RxgNOi2vri" +05/21/2018,Politicians,@SenSherrodBrown,"""What is morally unacceptable is not simply to profit, but rather to avail oneself of an inequality for one’s own a… https://t.co/4v55zv34IB" +05/21/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: Sherrod’s with Ohio retirees and workers in Columbus this morning, talking about protecting the retirem… https://t.co/USJYYIBJc9" +05/20/2018,Politicians,@SenSherrodBrown,"In Cincinnati today, calling on the administration to keep its commitment to this city, and make sure the NIOSH pro… https://t.co/OpK2zO2MPd" +05/20/2018,Politicians,@SenSherrodBrown,“A big overarching problem in America isn’t that poor people aren’t working hard enough; it’s that their wages aren… https://t.co/CEBDaxXsoD +05/18/2018,Politicians,@SenSherrodBrown,Horrified by another senseless act of violence. Ohio stands with Santa Fe and we are grateful to all first responde… https://t.co/d6pg9gdbP5 +05/17/2018,Politicians,@SenSherrodBrown,"WATCH: Pensions expert confirms the cost of doing nothing is unimaginable for retirees, workers, businesses, and ta… https://t.co/dGmfrgQmUW" +05/17/2018,Politicians,@SenSherrodBrown,"Thanks to Maj General Cooley, the Air Force Research Lab Commander at Wright-Patterson Air Force Base, for coming i… https://t.co/aJSqhtWdRz" +05/17/2018,Politicians,@SenSherrodBrown,"WATCH: during Police Week, Sherrod thanked Ohio’s law enforcement officers on the Senate floor, and honored those w… https://t.co/gVqYUGV2D6" +05/17/2018,Politicians,@SenSherrodBrown,"Like many Ohio businesses, the Internet is crucial to realtors. Glad that so many Ohio members of @nardotrealtor we… https://t.co/m41xC9aqYq" +05/17/2018,Politicians,@SenSherrodBrown,"Simply propping up the PBGC is not enough. We can’t take our hands off the wheel, close our eyes and allow this car… https://t.co/vRPI7Sq9Kz" +05/17/2018,Politicians,@SenSherrodBrown,"We have the opportunity to do just that – to keep those businesses open, to save those jobs, and to ensure workers… https://t.co/vAlB9nQghb" +05/17/2018,Politicians,@SenSherrodBrown,Ask anyone who’s ever totaled a car or dealt with flooding or fire in their homes – you’re sure glad you have insur… https://t.co/2AMECIKmvV +05/17/2018,Politicians,@SenSherrodBrown,"PBGC is the insurance company for these retirement plans. Like any insurance plan, PBGC doesn’t kick in until the d… https://t.co/PH7afH0NT2" +05/17/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: Sherrod and @senorrinhatch chair the third hearing of the Pensions Committee, focused on the crisis thr… https://t.co/a6FVqGluCX" +05/16/2018,Politicians,@SenSherrodBrown,Thank you to everyone who made their voices heard in this fight. And as this #NetNeutrality bill moves to the House… https://t.co/JqHWtlGc9i +05/16/2018,Politicians,@SenSherrodBrown,A victory in the Senate today for the thousands of Ohioans who depend on a free and open Internet. #NetNeutrality i… https://t.co/bL5OL17wrx +05/16/2018,Politicians,@SenSherrodBrown,"And today, Brandon Standley, President of the Ohio Association of Chiefs of Police, came in today for a discussion… https://t.co/l56hqDcRRP" +05/16/2018,Politicians,@SenSherrodBrown,"Yesterday, members of the Ohio Patrolmen’s Benevolent Association talked officer safety and healthcare, and saw a d… https://t.co/DJVDt1skye" +05/16/2018,Politicians,@SenSherrodBrown,"During #NationalPoliceWeek, we thank the law enforcement who've devoted their lives to keeping us safe – and hear f… https://t.co/Sb6tGTkVc9" +05/16/2018,Politicians,@SenSherrodBrown,RT @RepDaveJoyce: A member of my staff delivered House and Senate gallery passes to @SolonSchools Middle School students today for their up… +05/16/2018,Politicians,@SenSherrodBrown,"Today’s vote on #NetNeutrality is about whose side we’re on: corporate special interests, or the people we serve wh… https://t.co/6JA4ByIqLw" +05/15/2018,Politicians,@SenSherrodBrown,#Ramadan Mubarak to all those celebrating! +05/15/2018,Politicians,@SenSherrodBrown,#NetNeutrality is about making sure your access to information doesn’t depend on how much money you have. We must a… https://t.co/4r1xCb8iCQ +05/15/2018,Politicians,@SenSherrodBrown,The third bill is the Working Families Tax Relief Act. This would provide a stronger Earned Income Tax Credit and C… https://t.co/1sB7afd4D8 +05/15/2018,Politicians,@SenSherrodBrown,"Then there's the Corporate Freeloader Fee: if you pay your workers what their work is worth, you get a tax cut. But… https://t.co/3OCzSefVpD" +05/15/2018,Politicians,@SenSherrodBrown,"First, the Patriot Corporation Act: this bill would cut taxes for corporations that commit to staying in the US, to… https://t.co/xDp5qBuFTB" +05/15/2018,Politicians,@SenSherrodBrown,"At #CAPIdeas this morning, discussed some of our ideas for a tax bill that would have actually put more money back… https://t.co/asjjgVH7YV" +05/15/2018,Politicians,@SenSherrodBrown,"We trust schools to educate and prepare students, but ECOT, William Lager, and his companies have abused that trust… https://t.co/L9Qg0G7mx8" +05/15/2018,Politicians,@SenSherrodBrown,"""I think workers in my state are looking for somebody in elected office to talk about the dignity of work, to talk… https://t.co/1QBQ5rimfD" +05/15/2018,Politicians,@SenSherrodBrown,"""I think we need to talk about work differently. Some people on the coasts call my state the Rust Belt, and that di… https://t.co/2Gb3YmkllK" +05/15/2018,Politicians,@SenSherrodBrown,"RT @alexnazaryan: ""Are you on the side of Wall Street or are you fighting for the little guy?"" -@SenSherrodBrown at #capideas 2018." +05/15/2018,Politicians,@SenSherrodBrown,.@paulkrugman agrees with Sherrod - companies must look at workers as more than a cost to be minimized. The idea th… https://t.co/4VVlKLjKkD +05/15/2018,Politicians,@SenSherrodBrown,Sherrod kicks off the conversation by talking about his plan to make hard work pay off - he argues that Americans a… https://t.co/tSd5DPl9X7 +05/15/2018,Politicians,@SenSherrodBrown,HAPPENING SOON: Sherrod’s kicking off today’s #CAPIdeas Conference in a conversation with @neeratanden and… https://t.co/E9EypCQgDO +05/14/2018,Politicians,@SenSherrodBrown,"They don't make them tougher than Harry Reid. We're all rooting for you, Harry - give cancer hell. -SB" +05/14/2018,Politicians,@SenSherrodBrown,Helen and Jesse are just two of the hundreds of small business owners across Ohio who've depended on @Google and th… https://t.co/H8NFNohtsh +05/13/2018,Politicians,@SenSherrodBrown,Excited to once again watch the King and the @Cavs take care of business in the Eastern Conference Finals. Go Cavs! #WhateverItTakes +05/13/2018,Politicians,@SenSherrodBrown,"Today, we celebrate the moms across Ohio who work so hard to give their children the best possible life – and that… https://t.co/TYBAI2aPiz" +05/13/2018,Politicians,@SenSherrodBrown,We are keeping this brave Deputy in our thoughts. Thank you to all the first responders on the scene. https://t.co/4pPAHkpzg5 +05/12/2018,Politicians,@SenSherrodBrown,"Considering Mr. Mulvaney's comments on how he chooses who to meet with, we want to know who's on his schedule every… https://t.co/dXHiULqRBg" +05/11/2018,Politicians,@SenSherrodBrown,President Trump says he wants to lower drug costs. He could make good on his promises to lower prescription drug pr… https://t.co/HylEcucovi +05/11/2018,Politicians,@SenSherrodBrown,"As Ohioans increasingly learn, do business & communicate online, I’m glad to be partnering with @Google to help con… https://t.co/kYBpJLszdf" +05/11/2018,Politicians,@SenSherrodBrown,"Nurses want to provide the best possible care to their patients, & to do so safely. We must establish standards tha… https://t.co/aRt78yFaHS" +05/11/2018,Politicians,@SenSherrodBrown,"Every day, patients across Ohio count on nurses in their time of need - and during #nursesappreciationweek, we say… https://t.co/p4QOAVSHKL" +05/11/2018,Politicians,@SenSherrodBrown,Our bipartisan resolution designating this week as National #TeacherAppreciationWeek just passed the Senate. But th… https://t.co/sZ0Gi5dKsX +05/10/2018,Politicians,@SenSherrodBrown,"If President Trump wants to lower prescription drug prices, he can start by helping us pass the Improving Access to… https://t.co/BTH5GCLw8Z" +05/10/2018,Politicians,@SenSherrodBrown,"@TheJusticeDept and @FTC must determine whether Discovery Tours broke any laws, and ensure there are proper consequ… https://t.co/n5xH0Oo3Na" +07/02/2018,Politicians,@KamalaHarris,Proud to see San Francisco joining cities and states across our country moving forward to make the minimum wage a l… https://t.co/GXsTPADLL0 +07/02/2018,Politicians,@KamalaHarris,President Trump has already made this clear in the past on numerous occasions—he wants to nominate someone to the S… https://t.co/y4yZjNGQ6v +07/02/2018,Politicians,@KamalaHarris,Was proud to stand with advocates and activists like @chadwickboseman to fight for immigrant children and their fam… https://t.co/2jVaN6nkxH +07/02/2018,Politicians,@KamalaHarris,It is long past due for Congress to have the courage to pass reasonable gun safety laws. This is not a question of… https://t.co/XbowyoFkx3 +07/02/2018,Politicians,@KamalaHarris,Cities and states across America are already working to stop our country from repeating the same mistakes of the pa… https://t.co/IDNxVjYKa8 +07/01/2018,Politicians,@KamalaHarris,Donald Trump wants to fill this SCOTUS vacancy with a justice who will overturn Roe v. Wade. Here’s what this is re… https://t.co/HGz1O5l0g9 +07/01/2018,Politicians,@KamalaHarris,"Every single day we don’t reunite these babies and children with their parents, our country is failing an important… https://t.co/9kXfKwkkoc" +07/01/2018,Politicians,@KamalaHarris,Real power does not reside in D.C. It lives in each and every one of us. It is up to each of us to use our voices a… https://t.co/VCHfomPZKQ +07/01/2018,Politicians,@KamalaHarris,"From the United States Congress and United States Census, to the White House, LGBTQ rights are under attack. We mus… https://t.co/WjXsEPmaoB" +07/01/2018,Politicians,@KamalaHarris,"We have children crying for their mommies and daddies. We know these children will suffer lifelong trauma, and that… https://t.co/kV7lSU10Qg" +07/01/2018,Politicians,@KamalaHarris,An economy that only works for those at the very top is an economy that is broken. Together we can build a country… https://t.co/RLKf5XOKSs +06/30/2018,Politicians,@KamalaHarris,"For generations, Social Security has been the difference for millions of American seniors between getting by and li… https://t.co/WrFEfK6pOe" +06/30/2018,Politicians,@KamalaHarris,We’ve already seen the President’s list of potential SCOTUS nominees — they are conservative ideologues who would p… https://t.co/sKjGeD1L8U +06/30/2018,Politicians,@KamalaHarris,@WaywardWinifred So great to meet a young activist! +06/30/2018,Politicians,@KamalaHarris,This Administration's solution to the humanitarian crisis they purposely created could mean indefinitely detaining… https://t.co/aLw45Jkpvs +06/30/2018,Politicians,@KamalaHarris,"RT @ajplus: ""When we have over 2,000 children that right now are not with their parents because we separated them ... When we know those ch…" +06/30/2018,Politicians,@KamalaHarris,We know we are better than this! #FamiliesBelongTogether https://t.co/JzHJ8SwMV5 +06/30/2018,Politicians,@KamalaHarris,"From 1882 to 1986, there have been 200 attempts that have failed to get Congress to pass federal anti-lynching legi… https://t.co/BJ7tS5Fm5Z" +06/30/2018,Politicians,@KamalaHarris,"As #Pride Month comes to an end, let us not forget — the struggle for LGBTQ equality is far from over. We must keep… https://t.co/E1g0S50Z1i" +06/30/2018,Politicians,@KamalaHarris,More and more toddlers are ending up alone in immigration court because of this Administration’s cruel policy of br… https://t.co/4YMOIq4mQq +06/30/2018,Politicians,@KamalaHarris,Women aren’t just marching — they’re running and fighting for our future. https://t.co/2zHSZsub7z +06/30/2018,Politicians,@KamalaHarris,"The fight over this Supreme Court vacancy is going to require each and every one of us talking with our friends, fa… https://t.co/oD6HsGBTyF" +06/29/2018,Politicians,@KamalaHarris,"In nearly every industry, Black women continue to face barriers, stereotypes and discrimination. As they continue t… https://t.co/s5dF93MhS3" +06/29/2018,Politicians,@KamalaHarris,This is a moment in time that is requiring us to speak out and fight for who we are as a country. We must not despa… https://t.co/ieKFvWIrdn +06/29/2018,Politicians,@KamalaHarris,This Administration knows the kind of trauma it inflicted by separating children from their parents. I’ve sent a le… https://t.co/zutQXARZWt +06/29/2018,Politicians,@KamalaHarris,Make no mistake — this Supreme Court vacancy puts a woman’s constitutionally protected right to make her own health… https://t.co/k4kVy1EPi2 +06/29/2018,Politicians,@KamalaHarris,"As we demand our leaders take action against this epidemic of mass shootings, we must not ignore the connection bet… https://t.co/yQcGi9gyop" +06/29/2018,Politicians,@KamalaHarris,American women are 16 times more likely to be killed with guns than women in other developed countries. And each mo… https://t.co/hnSSDej4CP +06/29/2018,Politicians,@KamalaHarris,"Lynching is a dark, despicable part of our history​. Passing an anti-lynching law is long overdue. https://t.co/BnYFofEy87" +06/29/2018,Politicians,@KamalaHarris,"RT @tammybaldwin: Getting the job done for hardworking Americans has made me some well-funded enemies, but that’s never scared me. And it’s…" +06/29/2018,Politicians,@KamalaHarris,So much of what is at the foundation of who we are is based on words that have been spoken in the United States Sup… https://t.co/fC9pJ6YK4d +06/28/2018,Politicians,@KamalaHarris,I'm heartbroken by the shooting at the Capital Gazette. Journalists play such a critical role in our democracy and… https://t.co/K23Mmp3ohI +06/28/2018,Politicians,@KamalaHarris,Those are the kind of generational impacts our courts can have on our country. We cannot and will not accept conser… https://t.co/DNjlwLNEZh +06/28/2018,Politicians,@KamalaHarris,"On this day in 2013, I was honored to marry Sandy Stier and Kris Perry after the courts lifted CA's ban on same-sex… https://t.co/R5LURN9MAA" +06/28/2018,Politicians,@KamalaHarris,This SCOTUS vacancy puts issues that affect every single American in the balance — from a woman’s right to choose t… https://t.co/8PkVBn2fnD +06/28/2018,Politicians,@KamalaHarris,"RT @CAPAction: Senator @KamalaHarris: + +""If not for Brown v. Board, I would not be standing here as a black woman today."" #SaveSCOTUS https:…" +06/28/2018,Politicians,@KamalaHarris,This morning I will be rallying with @WeDemandJustice on the steps of the Supreme Court to talk about how our funda… https://t.co/YzPiSdR1z9 +06/27/2018,Politicians,@KamalaHarris,This Supreme Court seat is going to have a generational impact — on everything from Roe v. Wade to same-sex marriag… https://t.co/g9BFVFXDRQ +06/27/2018,Politicians,@KamalaHarris,"RT @hardball: Tonight on #Hardball: Justice Kennedy announces his retirement. @KamalaHarris, @Eugene_Robinson, @SusanPage join Hardball." +06/27/2018,Politicians,@KamalaHarris,I know from personal experience — as a beneficiary of the landmark Brown vs. Board ruling desegregating our nation’… https://t.co/2vikoHWOg2 +06/27/2018,Politicians,@KamalaHarris,We've already seen the President's list of potential SCOTUS nominees. They are complete non-starters. The American… https://t.co/upxhxSfI3D +06/27/2018,Politicians,@KamalaHarris,"With fundamental rights in the balance, the American people, who vote in fewer than 4 months, deserve to have their… https://t.co/uENUL499Jd" +06/27/2018,Politicians,@KamalaHarris,"Congratulations to @BenJealous, @JoeNeguse, @Ocasio2018, and the hundreds of other Democrats leading our party into… https://t.co/Gd48ldrgNL" +06/27/2018,Politicians,@KamalaHarris,"Every single day we don’t reunite these babies and children with their parents, our country is failing an important… https://t.co/RVka5YD1Q1" +06/27/2018,Politicians,@KamalaHarris,"Congress must act to bolster the labor movement that built our middle class. Earlier this year, I wrote about why t… https://t.co/kHOHmAxSeO" +06/27/2018,Politicians,@KamalaHarris,"This decision is part of an ongoing trend of this Court that has repeatedly sided with employers over employees, co… https://t.co/JJiTIst4qs" +06/27/2018,Politicians,@KamalaHarris,"After Hurricane Maria, our government failed Puerto Rico at every level, including misinforming grieving communitie… https://t.co/J8PtIg0RK7" +06/26/2018,Politicians,@KamalaHarris,This Administration has rolled back the protections that have existed for pregnant women seeking asylum — and now t… https://t.co/aoyjWCRKdO +06/26/2018,Politicians,@KamalaHarris,"Yesterday, I introduced legislation to ensure farmworkers are guaranteed overtime protections and a minimum wage. T… https://t.co/TYvksIGmQl" +06/26/2018,Politicians,@KamalaHarris,I am a career prosecutor. I have visited many prisons and jails. The facilities being used to detain these immigran… https://t.co/Hcqe6jCiVg +06/26/2018,Politicians,@KamalaHarris,"Women deserve accurate information about the full range of reproductive services available to them, including abort… https://t.co/sZuwkcKnW2" +06/26/2018,Politicians,@KamalaHarris,This decision from the Supreme Court upholds a policy that is an affront to our values. Trump's Muslim Ban is discr… https://t.co/EZVh0QMq9k +06/26/2018,Politicians,@KamalaHarris,"On this day in 2015, the right of every American to marry the person they love was finally recognized. As we celebr… https://t.co/rXgTjBvYZs" +06/26/2018,Politicians,@KamalaHarris,"It’s unconscionable the Trump Administration decided to exact what could be a lifetime of trauma for over 2,000 kid… https://t.co/85hoqukpI2" +06/25/2018,Politicians,@KamalaHarris,Asylum seekers fleeing extreme violence and poverty are being told by our government they can have their kids back… https://t.co/zMmHyexz7L +06/25/2018,Politicians,@KamalaHarris,"As today’s ruling on Texas’ gerrymandering shows, we need to update and reinvigorate the Voting Rights Act to ensur… https://t.co/XKiL2Qd5FF" +06/25/2018,Politicians,@KamalaHarris,"5 years ago today, the Supreme Court gutted the Voting Rights Act, putting the right to speak out and make our voic… https://t.co/QKeBt6vhoO" +06/25/2018,Politicians,@KamalaHarris,Parents at one immigrant detention center say they “took to sleeping with their legs wrapped around their children… https://t.co/7ofPg4dBt7 +06/25/2018,Politicians,@KamalaHarris,We will leave no one to fight alone for their civil rights. #Pride https://t.co/0gu44Lrg4C +06/25/2018,Politicians,@KamalaHarris,It was so great to see my sorors in St. Louis last week! #AKA @akasorority1908 https://t.co/38HPJziFW9 +06/25/2018,Politicians,@KamalaHarris,There is no distinction between these “detention centers” and a prison. You walk through the halls and the doors cl… https://t.co/ZtYURJsvu0 +06/25/2018,Politicians,@KamalaHarris,"I remain committed to fighting for raising the federal minimum wage, making public colleges and universities tuitio… https://t.co/Y7fqziE02n" +06/24/2018,Politicians,@KamalaHarris,"As our country moves toward legalizing marijuana, let's remember how many lives have been ruined because of our reg… https://t.co/JbK6o12ThT" +06/24/2018,Politicians,@KamalaHarris,".@LenaWaithe is “disrupting the hell out of Hollywood"" by ensuring diverse communities can turn on the TV and see v… https://t.co/AVxNqcynh0" +06/24/2018,Politicians,@KamalaHarris,The anti-environment agenda of this admin is wrongheaded. Most Americans want to protect the environment and keep o… https://t.co/c6E1JONlun +06/24/2018,Politicians,@KamalaHarris,"The government should be in the business of keeping families together, not tearing them apart. The mothers I spoke… https://t.co/hMyjNlYw8H" +06/24/2018,Politicians,@KamalaHarris,"To everyone marching, dancing, and chanting today at #SFPride2018 and across the country: We’re in this fight toget… https://t.co/AKTj7cRCh3" +06/24/2018,Politicians,@KamalaHarris,Proud to march in the @SFPride parade today! Such amazing energy. A celebration of love and solidarity. #Pride2018 https://t.co/xCpMeXNfrC +06/24/2018,Politicians,@KamalaHarris,"RT @eqca: “We’ve seen this discrimination before. We saw it at a lunch counter, and now we see it at a cake counter. And we’ll have to figh…" +06/24/2018,Politicians,@KamalaHarris,Excited to march in San Francisco’s Pride Parade today! Happy #Pride! https://t.co/fDnUuQ8BAQ +06/24/2018,Politicians,@KamalaHarris,"Tornillo, Texas is the first site where hundreds of migrant children have been detained in temporary shelters and s… https://t.co/ZpiflJfpcv" +06/24/2018,Politicians,@KamalaHarris,Kirstjen Nielsen should resign immediately. She is leading an agency that has separated children from their parents… https://t.co/3VtXVC8roP +06/23/2018,Politicians,@KamalaHarris,Too many lives have been ruined because of the War on Drugs. Federal marijuana legalization and restorative justice… https://t.co/7kYZhzTZic +06/23/2018,Politicians,@KamalaHarris,Huge corporations should not be profiting from the detention of human beings. Period. https://t.co/C0wPEtKbKs +06/23/2018,Politicians,@KamalaHarris,Yesterday I got a tour of an immigration detention facility and visited with the mothers separated from their child… https://t.co/9BzAlwNjHq +06/23/2018,Politicians,@KamalaHarris,"Our government's continued failure in Puerto Rico is unacceptable. With another hurricane season coming, we need to… https://t.co/rI6CYo2OBS" +06/23/2018,Politicians,@KamalaHarris,Let’s be clear: a society is judged based on how it treats its children. A society is judged based on how it treats… https://t.co/PolG1BNoeQ +06/23/2018,Politicians,@KamalaHarris,From Trump’s Muslim ban to the recent human rights abuses being committed by our government along the southern bord… https://t.co/YIVp1V1Gg4 +06/22/2018,Politicians,@KamalaHarris,I’m proud to see California fighting against this administration’s cruel immigration policies. https://t.co/RaGH7uzRxR +06/22/2018,Politicians,@KamalaHarris,"Congratulations to Canada on moving forward with the legalization of marijuana. As the world moves forward, we can’… https://t.co/3wvdsAJNTz" +06/22/2018,Politicians,@KamalaHarris,A few moments ago I finished visiting with mothers who were separated from their children at the border. I can tell… https://t.co/Y92mhGO0xD +06/22/2018,Politicians,@KamalaHarris,We must keep fighting so our courts will not be stacked for generations with individuals who have spent their caree… https://t.co/7jnvbzttrp +06/22/2018,Politicians,@KamalaHarris,"We still don't know how many died in the aftermath of Hurricane Maria, but we do know the impact of our government'… https://t.co/TU6bK6CNJi" +06/22/2018,Politicians,@KamalaHarris,I’ll be visiting an immigration center later today to speak with mothers who have been separated from their childre… https://t.co/YNDvPQ5cn5 +06/22/2018,Politicians,@KamalaHarris,"77 years ago this week, Ford Motor Company became the last major American auto manufacturer to sign its first union… https://t.co/jv0Kv3Wgel" +06/21/2018,Politicians,@KamalaHarris,Secretary Nielsen misled the American public and implemented and defended the inhumane policy of separation of chil… https://t.co/jfzXJBR0bD +06/21/2018,Politicians,@KamalaHarris,"More than ever, we need leaders in state government with courage and tenacity to fight for progressive values. That… https://t.co/25AzLCRog3" +06/21/2018,Politicians,@KamalaHarris,#TBT to San Francisco’s Pride Parade two years ago. Happy #Pride! https://t.co/llBSQw7UyT +06/21/2018,Politicians,@KamalaHarris,"Reporters, advocates, and even elected officials are being turned away while trying to find out more about how this… https://t.co/L8wFXfuhQC" +06/21/2018,Politicians,@KamalaHarris,"Every week, we learn more about the tragic repercussions of our government’s failure to identify the dead in Puerto… https://t.co/1KMvyjo6NG" +06/21/2018,Politicians,@KamalaHarris,The thousands of children who’ve spent days and weeks separated from their families still woke up this morning with… https://t.co/DUtfc10smX +06/20/2018,Politicians,@KamalaHarris,Trump's executive order does not fix this crisis. It gives no solution for the thousands of children who have been… https://t.co/LgtOlCCdYW +06/20/2018,Politicians,@KamalaHarris,"In the years that followed, San Francisco would witness critical moments in LGBTQ history: the election of Californ… https://t.co/AreS2Rquy0" +06/20/2018,Politicians,@KamalaHarris,I’m looking forward to once again joining in San Francisco’s tradition of #Pride this weekend. One year after the S… https://t.co/Z25TcjULDf +06/20/2018,Politicians,@KamalaHarris,There is no law that requires ripping these babies from their families. The president should pick up the phone and… https://t.co/eY39wA7T92 +06/20/2018,Politicians,@KamalaHarris,"If our leaders truly care about family values, then they will act to end these human rights abuses being committed… https://t.co/M4NbtOQL5x" +06/20/2018,Politicians,@KamalaHarris,States across America are already working to stop our country from repeating the same mistakes of the past. We need… https://t.co/DxpcMyi4XB +06/19/2018,Politicians,@KamalaHarris,"Black women continue to be underrepresented in elected office, despite having some of the highest rates of voter tu… https://t.co/n7o6rabJ7e" +06/19/2018,Politicians,@KamalaHarris,Many of you have asked how you can help the families being impacted by our government's human rights abuses along t… https://t.co/eKmEOBMFbz +06/19/2018,Politicians,@KamalaHarris,"Laverne Cox, the first openly trans woman of color to have a lead role on a mainstream TV show, has been a powerful… https://t.co/I8LeRIQTtU" +06/19/2018,Politicians,@KamalaHarris,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/19/2018,Politicians,@KamalaHarris,"Despite their best efforts to conceal from and confuse the American people about what’s going on, one thing is clea… https://t.co/XjCJJ4y3yo" +06/19/2018,Politicians,@KamalaHarris,"With the constant challenges we face today to our deepest values as a nation, it’s easy to feel overwhelmed. But no… https://t.co/sPqHy2Tb5o" +06/19/2018,Politicians,@KamalaHarris,There is no excuse for inflicting these abuses and trauma on children. The Administration must immediately reverse… https://t.co/hQjCEtyUsv +06/19/2018,Politicians,@KamalaHarris,"On #Juneteenth, we celebrate emancipation and remember the long struggle for freedom. The slaves in Galveston were… https://t.co/qOzyflpKag" +06/19/2018,Politicians,@KamalaHarris,Secretary Nielsen must resign. The human rights abuses being committed against children — many are just toddlers —… https://t.co/URclCoQClA +06/19/2018,Politicians,@KamalaHarris,"Parents are being deported without their children, many of whom are under the age of 4. Congress can’t let the scal… https://t.co/dSfclVKReR" +06/19/2018,Politicians,@KamalaHarris,Republican leaders should bring legislation to protect Special Counsel Robert Mueller to the Senate floor immediate… https://t.co/W4IexK2XbP +06/19/2018,Politicians,@KamalaHarris,"2,000 children have already been separated at the border. These detention facilities are filled with children suffe… https://t.co/j1txPRerzL" +06/18/2018,Politicians,@KamalaHarris,Finding out why the government was unable to accurately assess the damage or provide adequate resources to rebuild… https://t.co/l1yA1e9AiZ +06/18/2018,Politicians,@KamalaHarris,"An openly gay man, some regarded Bayard Rustin's sexuality as a liability to be associated with the high-profile Ma… https://t.co/02NC8zy7i8" +06/18/2018,Politicians,@KamalaHarris,“This is America. You never expect your loved one to be ripped away from you in front of your home.” - Natalie Garc… https://t.co/q31p96BrJH +06/18/2018,Politicians,@KamalaHarris,I’m standing in solidarity with the activists and families standing up to our government’s human rights abuses alon… https://t.co/xOSWwdqsND +06/18/2018,Politicians,@KamalaHarris,"I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has co… https://t.co/kbYYKvLmFP" +06/18/2018,Politicians,@KamalaHarris,This is how our government is treating children at the border. There’s only one way to describe this: our governmen… https://t.co/lZh4grQSke +06/18/2018,Politicians,@KamalaHarris,"This must stop, before thousands more kids are separated from their parents at the border. These kids should not be… https://t.co/QIIERJe4Cp" +06/18/2018,Politicians,@KamalaHarris,"We must choose hope, over hate; action, over apathy. Every single day." +06/18/2018,Politicians,@KamalaHarris,We can’t forget about the additional suffering our government’s failures in Puerto Rico has caused after Hurricane… https://t.co/nMSFXwxrX2 +06/18/2018,Politicians,@KamalaHarris,"An economy that only works for those at the very top is an economy that is broken. I know by working together, we c… https://t.co/ZRlWVuO9Ru" +06/17/2018,Politicians,@KamalaHarris,"As we celebrate Father’s Day and continue to celebrate #Pride Month, let’s recognize that LGBTQ rights, including t… https://t.co/CM3fuaN6zO" +06/17/2018,Politicians,@KamalaHarris,"For decades, our country has opened our doors to the most vulnerable who are fleeing violence and oppression. We ar… https://t.co/t0XPMGrj1n" +06/17/2018,Politicians,@KamalaHarris,Make no mistake — this Administration is abdicating our country’s moral leadership. https://t.co/W4N85q0Vqo +06/17/2018,Politicians,@KamalaHarris,"To my husband and best friend, and to all the fathers and father-figures — Happy Father’s Day! https://t.co/drRQqZzyah" +06/17/2018,Politicians,@KamalaHarris,"As many of us spend the day celebrating our fathers and father-figures, we know there are potentially thousands of… https://t.co/L6at6m8Nq3" +06/17/2018,Politicians,@KamalaHarris,"After Hurricane Maria, our government failed Puerto Rico at every level, including misinforming grieving communitie… https://t.co/vSSLIUA6BY" +06/17/2018,Politicians,@KamalaHarris,"Because of the Administration’s policy of breaking up families at the border, these detention facilities are overfl… https://t.co/4b2wf0TfY8" +06/16/2018,Politicians,@KamalaHarris,"I am deeply troubled that despite recent developments in Robert Mueller’s investigation, the special counsel contin… https://t.co/HN7qvL1Aof" +06/16/2018,Politicians,@KamalaHarris,Let’s call this policy of indiscriminately separating children from their parents at the border exactly what it is:… https://t.co/isWnCo4ULG +06/16/2018,Politicians,@KamalaHarris,"Because of @LenaWaithe, diverse communities can see a both funny and deeply real portrayal of someone like them on… https://t.co/3CqyNsCCus" +06/16/2018,Politicians,@KamalaHarris,"Quantum computing is the next technological frontier that will change the world. We cannot afford to fall behind. +https://t.co/t1s2XLMh3H" +06/16/2018,Politicians,@KamalaHarris,It’s simple: this Administration is committing a human rights abuse along our southern border. Call your representa… https://t.co/wfH43vG9LV +06/16/2018,Politicians,@KamalaHarris,"Across our country, LGBTQ Americans and women of color are changing the equation for elected office to be about who… https://t.co/Ec0eVTTU1V" +06/16/2018,Politicians,@KamalaHarris,Using kids as leverage to get billions for a wasteful border wall is outrageous and immoral. This is simple: the Ad… https://t.co/Pv2XT7hgUE +06/16/2018,Politicians,@KamalaHarris,"Sexual harassment and assault are real in this country, from the factory floors to movie sets, and even in our cour… https://t.co/SqAJB2MVDP" +06/15/2018,Politicians,@KamalaHarris,Let’s call this policy of indiscriminately separating children from their parents at the border exactly what it is:… https://t.co/Qb5CLJ86yV +06/15/2018,Politicians,@KamalaHarris,Edie Windsor’s fight against DOMA before SCOTUS in 2013 helped pave the way for marriage equality nationwide just t… https://t.co/MPu2Vw9x4b +06/15/2018,Politicians,@KamalaHarris,"Right now, you have an opportunity to make a real difference in the lives of DACA recipients across the country by… https://t.co/bXRsNYtEmi" +06/15/2018,Politicians,@KamalaHarris,"It is true that the Administration ended DACA for new applicants — but +current DACA recipients can still apply for… https://t.co/KOLevUFLo2" +06/15/2018,Politicians,@KamalaHarris,"According to a shocking report, about 2,000 children have been separated from their families. That's an average of… https://t.co/K1rjIUP5BO" +06/15/2018,Politicians,@KamalaHarris,"We still don't know how many died in the aftermath of Hurricane Maria, but we do know the impact of our government'… https://t.co/96zAwL12Ly" +06/15/2018,Politicians,@KamalaHarris,"DACA was first announced six years ago today. We as a country gave these kids, Dreamers, a promise that we would no… https://t.co/OnmCqLSu5I" +06/15/2018,Politicians,@KamalaHarris,"Despite having some of the highest rates of voter turnout in the country, Black women continue to be underrepresent… https://t.co/ccPJyRjNCa" +06/15/2018,Politicians,@KamalaHarris,The Administration must stop breaking up families at the border now. Period. The GOP’s use of this immoral policy a… https://t.co/Q565Vxpw2x +06/15/2018,Politicians,@KamalaHarris,"It is unacceptable that tens of millions of Americans are still crippled by poverty. Women, young people, seniors,… https://t.co/YYutfUUQca" +06/15/2018,Politicians,@KamalaHarris,The government's failure to provide accurate information in the aftermath of Hurricane Maria has had devastating co… https://t.co/yNZpvE6uc3 +06/15/2018,Politicians,@KamalaHarris,.@JahanaHayesCT is the type of leader we need in Congress. She understands the issues facing the residents of Conne… https://t.co/nq3YtqWb3W +06/14/2018,Politicians,@KamalaHarris,Our country was founded on certain ideals: that we are all equal and should be treated as equals. Much like when my… https://t.co/fFvoxfbq0c +06/14/2018,Politicians,@KamalaHarris,Reports like this about the consequences of this Administration’s immigration policies are heartbreaking. We cannot… https://t.co/0CZBQk4tCr +06/14/2018,Politicians,@KamalaHarris,Young people across America are demonstrating the kind of courage and determination we need from leaders in Congres… https://t.co/660ioujXaj +06/14/2018,Politicians,@KamalaHarris,"The WH wants to pour billions of dollars into ICE’s detention facilities, despite reports of rampant abuse and negl… https://t.co/fJ6wjzXLMg" +06/14/2018,Politicians,@KamalaHarris,"Since October, more than 1,300 children have been taken from their parents at the border. These families are suffer… https://t.co/Ac1mC1pCdO" +06/14/2018,Politicians,@KamalaHarris,Congratulations to London Breed on her historic election victory in San Francisco! Your leadership will pave the wa… https://t.co/qate4nsDiD +06/14/2018,Politicians,@KamalaHarris,"Dreamers like Erika study in our colleges, serve in our military and work in Fortune 100 companies. They are contri… https://t.co/E3ve2SRcf8" +06/14/2018,Politicians,@KamalaHarris,This Administration’s continued attacks on women’s health clinics threaten access to critical services for millions… https://t.co/1H3KXhKK3U +06/13/2018,Politicians,@KamalaHarris,"When Ellen DeGeneres came out, her character followed suit, becoming the first lead in sitcom history to come out o… https://t.co/WchVaClxJw" +06/13/2018,Politicians,@KamalaHarris,We must act now to address the challenges we face in the development of this technology – our national security and… https://t.co/uIJcvLsPTq +06/13/2018,Politicians,@KamalaHarris,How many communities are going to be senselessly torn apart by gun violence before our leaders finally do something… https://t.co/zuarXmnByo +06/13/2018,Politicians,@KamalaHarris,The government failed to provide grieving families and those conducting disaster relief efforts with accurate infor… https://t.co/xEuESxfTb1 +06/13/2018,Politicians,@KamalaHarris,Let’s call this what it is — a human rights abuse being committed by the United States government. Congress cannot… https://t.co/7WPvpBV7wv +06/13/2018,Politicians,@KamalaHarris,Marijuana laws are not applied and enforced in the same way for all people. I’m happy to see some members of the la… https://t.co/zpAfLoBFO5 +06/12/2018,Politicians,@KamalaHarris,Our government’s failures in Puerto Rico are unacceptable. I’ve sponsored legislation to guarantee adequate resourc… https://t.co/zzZDfk36oe +06/12/2018,Politicians,@KamalaHarris,This is simple — this Administration is willing to let insurers deny you coverage if you have a pre-existing condit… https://t.co/4swVte9PJX +06/12/2018,Politicians,@KamalaHarris,I started Back on Track​ because I thought we could get ​​smart on crime and prevent recidivism. Great to see succe… https://t.co/KryPAFGIfH +06/12/2018,Politicians,@KamalaHarris,"51 years ago today, the Loving v. Virginia decision invalidated laws prohibiting interracial marriage. Mildred and… https://t.co/JeqFRTSLxX" +06/12/2018,Politicians,@KamalaHarris,We cannot let this continue. Congress must act to end this Administration’s inhumane policy of separating children… https://t.co/jVDFnY85jB +06/12/2018,Politicians,@KamalaHarris,Accurately counting every single American in the U.S. Census is critical to our nation’s future. No one should be l… https://t.co/cdU9ULEzPm +06/12/2018,Politicians,@KamalaHarris,"2 years ago today, 49 lives — mostly Latinx — were taken at #Pulse. It's the deadliest known incident of violence s… https://t.co/QHQeBZa8CC" +06/12/2018,Politicians,@KamalaHarris,"We’ve opened our doors to those fleeing violence and oppression for decades. It’s helped global stability, made our… https://t.co/Dd88YCguiu" +06/12/2018,Politicians,@KamalaHarris,"Each month, more than 50 American women are shot and killed by current or former intimate partners. As we demand ou… https://t.co/VzJhQUb5kZ" +06/12/2018,Politicians,@KamalaHarris,"For more than 100 days, Alan Doran has walked 2.2 miles to advocate on behalf of Dreamers and immigrants. We should… https://t.co/eWsUcPPXv0" +06/12/2018,Politicians,@KamalaHarris,Ripping kids from the arms of their parents is just wrong. I've introduced legislation to put an end to this policy… https://t.co/3UEf8vbXok +06/11/2018,Politicians,@KamalaHarris,Climate change is a reality we must confront. We cannot abandon our environment at this critical moment in time. https://t.co/ppA68UKMOg +06/11/2018,Politicians,@KamalaHarris,This is abhorrent. The Administration is turning its back on victims of domestic violence and gang violence and fur… https://t.co/yXYpZCUNAZ +06/11/2018,Politicians,@KamalaHarris,"Harvey Milk knew there was more that unites us than divides us, and he understood that representation matters. Figh… https://t.co/U5eOEESGUZ" +06/11/2018,Politicians,@KamalaHarris,We cannot allow our government’s failed response in Puerto Rico to ever happen again. I’ve introduced legislation t… https://t.co/qHf68AXWvw +06/11/2018,Politicians,@KamalaHarris,"Thanks to the Affordable Care Act, more than 100 million people are now protected from being denied coverage or cha… https://t.co/GrTwu5Z2Ny" +06/11/2018,Politicians,@KamalaHarris,This decision is deeply wrong. More than 2 million voters have been purged in Ohio since 2011. Instead of making it… https://t.co/lvsO9e8wrq +06/11/2018,Politicians,@KamalaHarris,"The FCC just ended #NetNeutrality, putting freedom of speech and innovation online at risk. Now we need Congress to… https://t.co/hg4ealA6do" +06/11/2018,Politicians,@KamalaHarris,Americans already know the GOP tax bill was a scam. Instead of exploding the deficit by billions of dollars to pay… https://t.co/U8M820CJQS +06/11/2018,Politicians,@KamalaHarris,Our country is deporting immigrants who pose no harm to the public. This is not who we are. https://t.co/mzLSUoRYbl +06/11/2018,Politicians,@KamalaHarris,It’s time to end the culture of fear and silence that surrounds workplace harassment. We need to do more than just… https://t.co/U5WcbYhpM1 +06/11/2018,Politicians,@KamalaHarris,"Even though women earn college degrees at a higher rate than men, more women, especially women of color, are stuck… https://t.co/7X5ORIGJ1b" +06/10/2018,Politicians,@KamalaHarris,Jeff Sessions should focus on issues like transnational criminal organizations and investigating and prosecuting hu… https://t.co/OB63M5tvMo +06/10/2018,Politicians,@KamalaHarris,I’ve asked Secretary Carson to explain why this Administration believes raising rents for low-income households wil… https://t.co/1ev0gJAIEd +06/10/2018,Politicians,@KamalaHarris,"A few days ago, I introduced legislation to end this Administration's cruel policy of breaking up families at the b… https://t.co/k9hUdNyAHn" +06/10/2018,Politicians,@KamalaHarris,I am so inspired by the hundreds of women of color leading our party in the 2018 elections. Their leadership will p… https://t.co/5RNy3cAjZz +06/09/2018,Politicians,@KamalaHarris,Quantum computing is the next technological frontier that will change the world and we cannot afford to fall behind… https://t.co/pFHg6Ck3v9 +06/09/2018,Politicians,@KamalaHarris,We must fight so our courts are not stacked with individuals who have spent their careers to undermining the equali… https://t.co/SB12WL8QRc +06/09/2018,Politicians,@KamalaHarris,"In just a few days, #NetNeutrality will be ended by the FCC. The Senate has already voted to save the internet. Now… https://t.co/oCSO1LQUcA" +06/09/2018,Politicians,@KamalaHarris,Legalizing marijuana at the federal level is about stopping our country from repeating the same mistakes of the pas… https://t.co/CX066jyM49 +06/09/2018,Politicians,@KamalaHarris,This Administration’s deportation force is forcing immigrants back into the shadows. The consequences are devastati… https://t.co/XjhzSdnEeB +06/09/2018,Politicians,@KamalaHarris,Proud to stand in solidarity with those marching in Sacramento for the #BlackWomensMarch. They’re shining a light o… https://t.co/f2D6mChZZg +06/09/2018,Politicians,@KamalaHarris,RT @tammybaldwin: Thrilled @KamalaHarris is joining me in Wisconsin today. Our first event talking to young folks in Madison and having som… +06/09/2018,Politicians,@KamalaHarris,"Today in Wisconsin, I'll be campaigning for my friend and colleague @tammybaldwin. Tammy has stood with us when we… https://t.co/1zy9vwhcMC" +06/09/2018,Politicians,@KamalaHarris,RT @tammybaldwin: “If she weren’t such a force speaking for working families... [special interests] wouldn’t be putting the millions of dol… +06/09/2018,Politicians,@KamalaHarris,"Congrats, @warriors! #DubNation, it's been an incredible season. #NBAChamps https://t.co/emVM1yiHfN" +06/09/2018,Politicians,@KamalaHarris,Our government continues to fail our fellow Americans in Puerto Rico. We need to dedicate the resources necessary f… https://t.co/dGbu80NU3K +06/08/2018,Politicians,@KamalaHarris,It’s time to end the culture of fear and silence that surrounds workplace harassment. We need to support victims an… https://t.co/mzOkmorSIp +06/08/2018,Politicians,@KamalaHarris,We can’t let the Administration keep breaking up immigrant families like José’s. We need to stand with them and spe… https://t.co/3o0MqOVwxO +06/08/2018,Politicians,@KamalaHarris,The Affordable Care Act ensures millions of Americans with pre-existing conditions have access to affordable care.… https://t.co/AhEn1oQY0L +06/27/2018,Politicians,@AKWeissman,RT @BBQsnob: Less than 12 hours away folks. #Smokelandia on the @CookingChannel tonight at 8:30ET/7:30CT. Catch the pilot and maybe we’ll m… +06/24/2018,Politicians,@AKWeissman,@sanantonioheron great news! Glad you are bringing another perspective to the 210. ¡Buena suerte! +06/22/2018,Politicians,@AKWeissman,#happyfathersday #costarica #weissmantravels #flyfishing101 #rankbegginer #ticotrucha #puravida #210 #2018… https://t.co/kgQxIDLgp8 +06/22/2018,Politicians,@AKWeissman,#secondhome #wishyouwerehere #puravida #ticos #monkeys #ocean #vistas #family #hiking #anteatersonthetrail… https://t.co/8n4FIxfvJi +06/22/2018,Politicians,@AKWeissman,#myhomeforawhile #summerincostarica #ticos #puravida #gallopinto #lifeisshort #wishyouwerehere #hike/fish/run/swim/… https://t.co/eI9QiJOtZa +06/22/2018,Politicians,@AKWeissman,#costarica #puravida #mahimahi #weissmantravels #worldcup #ticos #summerforuswinterforthem #freshfish #chefsabroad… https://t.co/FrDC0q8FhO +06/22/2018,Politicians,@AKWeissman,#wishyouwerehere #puravida #costarica #havethisbeachtoourselves #summer/wintercostarica2018 ##sanantonio #210… https://t.co/PjChD8sYqn +06/13/2018,Politicians,@AKWeissman,Hope to see you there! https://t.co/C6kB9CEWLQ +06/08/2018,Politicians,@AKWeissman,"We live in a world where the unnatural has become natural, the shocking commonplace and tragedy occurring with fero… https://t.co/aNAJ2vF2iI" +06/08/2018,Politicians,@AKWeissman,Starting them off early. #whenyourdaughterlikescoffeeasmuchasyoudo #stuntsgrowth https://t.co/SUkcHOL316 +06/07/2018,Politicians,@AKWeissman,@dochoatittel Thanks for stopping in. I wasn’t there today as I am in Houston. Back 2moro working out the kinks. +06/07/2018,Politicians,@AKWeissman,RT @dochoatittel: Great breakfast at Moshe’s. We will be back. @AKWeissman https://t.co/YW9uGGQsfV +06/07/2018,Politicians,@AKWeissman,RT @mySA_Food: Chef Andrew Weissman brings Israeli shakshuka to breakfast in San Antonio — and it feels so right https://t.co/kD5jCjhwpm +06/06/2018,Politicians,@AKWeissman,Anything is possible when you start your day with shakshuka for breakfast at Moshes golden falafel. 7am-10:30am mon-sat🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙 +06/02/2018,Politicians,@AKWeissman,RT @mySA_Food: Starting my day the Israeli with red and green shakshuka from Moshe’s Golden Falafel. Breakfast now served 7-10:30 a.m. —@pj… +05/29/2018,Politicians,@AKWeissman,Stop what your doing and head over to Moshes golden falafel for breakfast!!!🥙🥙🥙🥙 +05/26/2018,Politicians,@AKWeissman,@chefjasondady You always have the best ideas! +05/26/2018,Politicians,@AKWeissman,RT @chefjasondady: You pay for it. We will come. 🤑🤑. Emerite @AKWeissman l??? https://t.co/9GmKBxbdDR +05/26/2018,Politicians,@AKWeissman,RT @jgillm: Maybe @City_of_Helotes could recruit a restaurant or chef that doesn’t specialize in fast food chicken. @chefjasondady @AKWeiss… +05/25/2018,Politicians,@AKWeissman,"@SophieHChrist @TheMontereySA Pssst...he ain’t got nothing else to do. +#heisanMVPtho" +05/25/2018,Politicians,@AKWeissman,RT @LocalD: My favorite spot. @AKWeissman https://t.co/396zpm5A4e +05/25/2018,Politicians,@AKWeissman,@TheMontereySA @EasyTigerATX @TheMontereySA Do you have a time traveling machine? I saw you this morning in the far… https://t.co/urVXIUxxiX +05/24/2018,Politicians,@AKWeissman,@fedmanwalking @mySA_Food come check us out at #moshesgoldenfalafel but only if you like to eat interesting food an… https://t.co/WjXSdtxVv8 +05/24/2018,Politicians,@AKWeissman,@MileHigh_Texan Thank you for being one of the first!!!! #happybirthday!!!! +05/24/2018,Politicians,@AKWeissman,RT @MileHigh_Texan: Thank you @AKWeissman for starting my birthday of right! #SATX #Foodie #birthdaygirl https://t.co/tvZsjnaAKV +05/22/2018,Politicians,@AKWeissman,RT @etij: Looking forward to trying it! https://t.co/Ps1KB4LS14 +05/22/2018,Politicians,@AKWeissman,RT @dochoatittel: @AKWeissman Can’t wait! +05/22/2018,Politicians,@AKWeissman,First look at moshes golden falafel breakfast menu. Starts Wednesday. Take a chance and experience crazy good flavo… https://t.co/cUwCQA25wr +05/21/2018,Politicians,@AKWeissman,@KimWarner4 Thank you. Please come see us in the meantime at moshes—-stay tuned for new concepts in early spring 2019! +05/18/2018,Politicians,@AKWeissman,RT @MarlaCimini: Check it out! Where chef Andrew Weissman eats in San Antonio @visitsanantonio @lacanteraresort @dfisk @AKweissman https://… +05/15/2018,Politicians,@AKWeissman,Big sale of restaurant equipment starts tomorrow. Drop by ilso anytime between 9-3 for restaurant items like chairs… https://t.co/b4nfmEqbuS +05/15/2018,Politicians,@AKWeissman,"RT @pfrench99: Our biggest fans this week: @AKWeissman, @RayvzBlanca1, @jacobplans. Thank you! via https://t.co/9nOEZwuhzv https://t.co/dot…" +05/11/2018,Politicians,@AKWeissman,"RT @louisfer67z: Kind of odd that @Rivardreport article leads with Il Sogno closure, but you've got to wade through the comments section to…" +05/11/2018,Politicians,@AKWeissman,@Rivardreport feel free to contact me regarding the article written about the state of fine dining in San Antonio.… https://t.co/ua8X99yhP5 +05/11/2018,Politicians,@AKWeissman,RT @MikeBoard1200: @arrrkane @AKWeissman @pfrench99 I hope @AKWeissman pivots from Italian noodles to Vietnamese noodles. It’s good pho th… +05/11/2018,Politicians,@AKWeissman,RT @arrrkane: @pfrench99 @AKWeissman there cannoli be so many of these puns. +05/11/2018,Politicians,@AKWeissman,RT @pfrench99: Il Sogno’s legacy will definitely become a pizza San Antonio’s culinary history. #SA300 #culinaryculture #lastoneipromise ht… +05/10/2018,Politicians,@AKWeissman,RT @TheMontereySA: @richmcneal85 @AKWeissman @pfrench99 @HistoricPearl ARE YOU PEOPLE HAPPY WITH YOURSELVES??? +05/10/2018,Politicians,@AKWeissman,RT @WD3_79: @pfrench99 @AKWeissman @HistoricPearl @TheMontereySA Damn; I love that place! +05/10/2018,Politicians,@AKWeissman,@pfrench99 @HistoricPearl @TheMontereySA Hoping to get pasta the bad puns. Then everything will be just pici. +05/10/2018,Politicians,@AKWeissman,RT @TheMontereySA: @pfrench99 @AKWeissman @HistoricPearl This is an atrocious pun and I’m seriously considering an unfollow. +05/10/2018,Politicians,@AKWeissman,RT @pfrench99: @AKWeissman @crlazaro @BlueRockCG @HistoricPearl Sad trombone +05/09/2018,Politicians,@AKWeissman,@crlazaro @BlueRockCG @pfrench99 @HistoricPearl Closed. +05/09/2018,Politicians,@AKWeissman,@BlueRockCG @pfrench99 @HistoricPearl Already closed. Sunday was our last day in service. +05/09/2018,Politicians,@AKWeissman,RT @pfrench99: Il Sogno dreams and gnocchi wishes... https://t.co/uh3KwZXDu3 +05/09/2018,Politicians,@AKWeissman,"RT @dfiske: When in San Antonio, do as the San Antonians. #EATUP https://t.co/AvaUjGEQEa @USATODAY @10Best @MarlaCimini @LaCanteraResort @E…" +05/09/2018,Politicians,@AKWeissman,@TheMontereySA Y’all got me wrong. Friday’s are made for #chadboobiesandgout +05/09/2018,Politicians,@AKWeissman,RT @globaljmg: @TheMontereySA @AKWeissman i love all this love between you both TMTYSA & AKW... but loved you too when you both were opened… +05/08/2018,Politicians,@AKWeissman,RT @Eat_Sip_Trip: @ptconroy @AKWeissman We figured we’d ask an expert 😉 +05/08/2018,Politicians,@AKWeissman,RT @MarlaCimini: I adore the food in San Antonio! This was such a fun story to write! Thanks @AKWeissman for these great tips! @LaCanteraRe… +05/08/2018,Politicians,@AKWeissman,"RT @ptconroy: @AKWeissman @Eat_Sip_Trip First one of these ""where to eat in SA"" lists with which I've wholeheartedly agreed." +05/08/2018,Politicians,@AKWeissman,RT @TheMontereySA: @MikeBoard1200 @AKWeissman @lgomez123 I know the perfect venue for that show. +05/08/2018,Politicians,@AKWeissman,@pinchboilhouse No worries-next time I’ll wear a smock! See y’all soon and I’m glad to be able to help get the word out. +05/08/2018,Politicians,@AKWeissman,"RT @pinchboilhouse: Gotta agree, Moshe’s is fu*kin good! Appreciate the love & mention, and sorry about the messy clothes! 😂#garlicbutterja…" +05/07/2018,Politicians,@AKWeissman,RT @jeff_goldblatt: @TheMontereySA @AKWeissman Amen! +05/07/2018,Politicians,@AKWeissman,@TheMontereySA @TheMontereySA all joking aside Chad—that’s about the nicest thing you could have said.… https://t.co/cYyhUBCAly +05/07/2018,Politicians,@AKWeissman,"RT @TheMontereySA: I struggled to think of a smart way to memorialize Il Sogno. + +I just keep thinking about what SA restaurants were like b…" +05/07/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Sorry to see this. Happy trails! +05/07/2018,Politicians,@AKWeissman,"RT @RichardMarini: Farewell to il Sogno Osteria. + +When Chef is serenaded by mariachi on the closing evening of a wonderful 9-year run. + +@A…" +05/07/2018,Politicians,@AKWeissman,RT @RichardMarini: Feel like it’s closing night of a Tony Award-winning play. @AKWeissman https://t.co/mVtG8XRY7V +05/06/2018,Politicians,@AKWeissman,#setupforaspecialguest #signature #inbetweenshifts@ilso #buyout #cheese #meat… https://t.co/rB1LbZkury +05/06/2018,Politicians,@AKWeissman,#ilsognosanantonio #lastnight #pearlbrewery #thanksforthememories… https://t.co/q0UnWjZdS4 +05/06/2018,Politicians,@AKWeissman,RT @C_BOYCE: @AKWeissman So disappointed not to eat one last great meal at il Sogno. I live in the Pacific NW now and only get to SA a coup… +05/06/2018,Politicians,@AKWeissman,RT @joealderete3: Just wanted to give a quick shoutout to @AKWeissman and everybody who worked at Ill Sogno. @KarinaCAlderete and I enjoyed… +05/06/2018,Politicians,@AKWeissman,@RAConomics @SAHispanicCC @IlSognoSA @globaljmg #culinaryrabbi #hebrewhammer #hispanicchamber for the win!!! +05/06/2018,Politicians,@AKWeissman,RT @notthefakeSTU: @AKWeissman Had many great meals there. Thank you. +05/06/2018,Politicians,@AKWeissman,@barronbichon Thank you. And thank you for the gift! Don’t ever get a kitchen used to you bringing them beer——now i… https://t.co/N0ZNaB0NCr +05/06/2018,Politicians,@AKWeissman,RT @barronbichon: @AKWeissman Thanks so much for fitting us in tonight. Dinner was fantastic. We have a lot of memories at IlSo. Thanks for… +05/05/2018,Politicians,@AKWeissman,"RT @SACharterMoms: ""Where chef Andrew Weissman eats in San Antonio"" https://t.co/66vmzt0pdN via @eat_sip_trip @akweissman @mariacimini" +05/05/2018,Politicians,@AKWeissman,@barronbichon I have you at 6 for 2 peeps. See you then. +05/05/2018,Politicians,@AKWeissman,@etij @saflavor @SAcurrent now it is time to get your fix of what will surely be a first in SA the Israeli breakfas… https://t.co/o3UsuZma2m +05/05/2018,Politicians,@AKWeissman,RT @etij: One last brunch at Il Sogno. Thank you @akweissman! #sanantonio… https://t.co/fYK4p3MPCh +05/05/2018,Politicians,@AKWeissman,RT @mrs_liserio: Thank you @AKWeissman for the amazing food! We will miss Ill Songo! https://t.co/TUfpuVh0Mq +05/05/2018,Politicians,@AKWeissman,Where chef Andrew Weissman eats in San Antonio https://t.co/FWSbE24P0A via @eat_sip_trip +05/05/2018,Politicians,@AKWeissman,@barronbichon If you would like I can get you in at 6 for two. I know it’s not your ideal time but it’s the only wa… https://t.co/Lje2ptih01 +05/04/2018,Politicians,@AKWeissman,RT @dochoatittel: Having a drink @blueboxbar before we have our final dinner at Il Sogno @AKWeissman https://t.co/Vvwa9iROtU +05/04/2018,Politicians,@AKWeissman,RT @livinsassy: @MrDarrylByrd @AKWeissman We are going to miss it so much! +05/04/2018,Politicians,@AKWeissman,@MrDarrylByrd I aspire to be more like you DB. #missseeingyou #staytuned +05/04/2018,Politicians,@AKWeissman,RT @MrDarrylByrd: My #lastmeal at the great Il Sogno restaurant. I remember signing the first lease almost a decade ago and of how happy I… +05/04/2018,Politicians,@AKWeissman,"RT @themollycox: Yesterday, after multiple breakfasts where we solved (& maybe started) a few of the world’s problems, @magalyc & I had our…" +05/04/2018,Politicians,@AKWeissman,@barronbichon I’m truly sorry—-I got my wires crossed—for some crazy reason(not worth mentioning) I screwed up. I w… https://t.co/09V2wgjwwo +05/04/2018,Politicians,@AKWeissman,@barronbichon You don’t have a reservation yet? +05/03/2018,Politicians,@AKWeissman,@barronbichon Yes! I had the tweet loaded 2days ago to let u know but never hit reply. +05/02/2018,Politicians,@AKWeissman,@CBSLAElsa Thank u @CBSLAsa hope you r well—-all y’all need to come back home! +05/02/2018,Politicians,@AKWeissman,"RT @CBSLAElsa: I would like to second this, @AKWeissman!!! One of my favorite places of all time!! 😢 Best to you and your family! https://t…" +05/02/2018,Politicians,@AKWeissman,@JaimeVaughn You betcha And I’m treating to a pastrami Rueben dog at pinks!! +05/02/2018,Politicians,@AKWeissman,RT @JaimeVaughn: @AKWeissman Our very most favorite restaurant in San Antonio and one of our favs all around. Thanks for the fond memories.… +05/02/2018,Politicians,@AKWeissman,"RT @SAcurrent: As one of the first restaurants in the now vital area, Il Sogno garnered plenty of praise from local and national publicatio…" +05/02/2018,Politicians,@AKWeissman,RT @JessElizarraras: Packed house at Il Sogno this am. Power breakfast with some cool kids. https://t.co/N0x7nA6pMP +05/02/2018,Politicians,@AKWeissman,@TheMontereySA If I wasn’t so busy closing down establishments I’d come over and show you how it’s done @TheMontereySA #childoftheeighties +05/01/2018,Politicians,@AKWeissman,RT @mySA_Food: Restaurant shakeup at The Pearl leaves three spaces in flux https://t.co/G0Z17hFS33 +05/01/2018,Politicians,@AKWeissman,@neffhudson Me too. On both accounts. I hope to one day do something like sandbar again but more user friendly. +04/30/2018,Politicians,@AKWeissman,RT @TheMontereySA: The premiere of @tiachuckfilm is happening this Saturday. Chuck was a wonderful person & artist (he did the Monty's men… +04/30/2018,Politicians,@AKWeissman,@barronbichon I def have not forgotten you—-just waiting to see if staff shows up Tuesday b4 I take any reservations. +04/30/2018,Politicians,@AKWeissman,@jaybirdsatx Thanks jay. Hope to see you soon old friend. +04/29/2018,Politicians,@AKWeissman,@curtisgsmith The only diff is that I wasn’t there to mentor you—-for that I’m sorry. #lefttothewolves +04/29/2018,Politicians,@AKWeissman,"RT @curtisgsmith: How fitting that a story like this pops up today. About a year a go, I did this very same thing and started a crazy job i…" +04/29/2018,Politicians,@AKWeissman,@ChilledPickett Thank you for the kind words and the encouragement!!!! +04/28/2018,Politicians,@AKWeissman,Please visit my insta page for more insight as to why I am closing ilso @weissmansndrew Thanks again! AW +04/28/2018,Politicians,@AKWeissman,@paynepga I am currently working out a plan to accept gift cards at Signature that were issued at ilso. It is a lit… https://t.co/Zsu9RHIHsz +04/28/2018,Politicians,@AKWeissman,@throw63 Love that GIF!!!😜 +04/28/2018,Politicians,@AKWeissman,@SiobhanWalshRD Hope you are well! It’s been too long. +04/28/2018,Politicians,@AKWeissman,"RT @allenaction22: @AKWeissman Hate to see it go, we love that place!" +04/28/2018,Politicians,@AKWeissman,@layscrispytaco Thank you so much for the kind words. +04/28/2018,Politicians,@AKWeissman,@QueenKutie55 Your awesome! No I am not planning on moving locations but I promise more things to come!!! Please co… https://t.co/hSonnP1SPp +04/28/2018,Politicians,@AKWeissman,"Oops apparently @TheMontereySA is live tweeting from the drunk tank down at la villita square. +#success #fiesta" +04/28/2018,Politicians,@AKWeissman,@50Run @TheMontereySA @HistoricPearl Miss seeing you and your family! +04/28/2018,Politicians,@AKWeissman,@50Run @TheMontereySA @HistoricPearl 9 years 1 month but who’s counting! +04/28/2018,Politicians,@AKWeissman,@TheMontereySA @HistoricPearl @TheMontereySA apparently you have failed miserably at fiesta if you are still able… https://t.co/wcpc0tL8Tu +04/28/2018,Politicians,@AKWeissman,RT @TheMontereySA: We approached @HistoricPearl with the idea to throw Il So out on the street and replace it with a build-your-own poke/qu… +04/28/2018,Politicians,@AKWeissman,@barronbichon I will let you know 2moro when I stop in at ilso. Thx. +04/28/2018,Politicians,@AKWeissman,@Resendezgurl @HistoricPearl Excited about future concepts/plans as well as current ones(signature and moshes in pa… https://t.co/fhyeTnvndK +04/28/2018,Politicians,@AKWeissman,@barronbichon Let me know when you need the reservation and I will take care of it. +04/28/2018,Politicians,@AKWeissman,@barronbichon May 6th. +04/28/2018,Politicians,@AKWeissman,.RIP ILSO. +04/27/2018,Politicians,@AKWeissman,@RAConomics Yes! +04/27/2018,Politicians,@AKWeissman,@RAConomics Breakfast next week? +04/25/2018,Politicians,@AKWeissman,@JaimeVaughn Love it there! +04/24/2018,Politicians,@AKWeissman,@louisfer67z @TheMontereySA @SomeGirlinCT Tell your daughter to make good on that note(it will cost about 2500$)and… https://t.co/Ynx4rn6PPy +04/23/2018,Politicians,@AKWeissman,@louisfer67z @TheMontereySA Agreed. But you are paying for the whiskey. It is (relatively) reasonably priced at 18$… https://t.co/f7qQqP0fbA +04/23/2018,Politicians,@AKWeissman,"@TheMontereySA stylized sammies and egg rolls and now this? +#asteptoofar https://t.co/FClP9gftPu" +04/23/2018,Politicians,@AKWeissman,@jonprado that smoked old fashioned is made with hibiki. Just sayin... +04/23/2018,Politicians,@AKWeissman,@TheMontereySA Reminiscent of cutting an egg roll on the bias and standing them up to justify paying 14$… https://t.co/Ro3bJidPaj +04/22/2018,Politicians,@AKWeissman,@themollycox 🙏🏼👨‍🍳✊️ +04/22/2018,Politicians,@AKWeissman,@themollycox Damn you @themollycox you know your people are under strict orders to let me know in advance of your a… https://t.co/dJr7XTtEYp +04/18/2018,Politicians,@AKWeissman,"@TheMontereySA As good a place holder as I can think of. They are just mad cuz u didn’t eat the beak. +#chadtravels #eatthebeakjanke" +04/17/2018,Politicians,@AKWeissman,@TheMontereySA The andouille looks like a cross section of your finger. +04/15/2018,Politicians,@AKWeissman,RT @NBAcoaching: @AKWeissman Be there soon Andrew! Can’t wait! @Cassandra_TV +04/15/2018,Politicians,@AKWeissman,@WhoIsScottyJ @Bjackso87 Let me know if u decide to go—-would love to see you out there. #reservationsramust +04/15/2018,Politicians,@AKWeissman,"RT @WhoIsScottyJ: @AKWeissman Was just talking to @Bjackso87 about getting out to Signature, hope to be there soon!" +04/15/2018,Politicians,@AKWeissman,Come and see what’s happening at Signature it won’t disappoint! Our new menu is about to drop!!!@lacanteraresortand… https://t.co/NDcXRDRfCl +04/14/2018,Politicians,@AKWeissman,@TheMontereySA #gavage #chadtravels +04/14/2018,Politicians,@AKWeissman,"RT @TheMontereySA: @AKWeissman Thus far, they’ve been equal parts terrified and amused. + +“Un autre andouillete, monsieur?” + +“You bet your…" +04/14/2018,Politicians,@AKWeissman,"RT @pinchboilhouse: @AKWeissman 😂❤️! #juicycouture +Appreciate the kind words, brotha!" +04/14/2018,Politicians,@AKWeissman,"@TheMontereySA just woke up in cold sweat remembering that my buddy Chad is in France. G-d save France. +Oh n I fee… https://t.co/dFJPbQI83j" +04/14/2018,Politicians,@AKWeissman,@pinchboilhouse y’all do a great job. My family and I really enjoyed our experience. You guys should provide a disc… https://t.co/XDllQ7hk4i +04/12/2018,Politicians,@AKWeissman,This happened last night when I put the kids and their mom to bed.#shhhhhhhhh #Zzzzzzzzzz https://t.co/ZgVsonE9mL +04/10/2018,Politicians,@AKWeissman,@N7Zebracakes @pricetagsa Your kind words started my Tuesday off the right way! As a side note I will be doing smal… https://t.co/Q0QRjgII90 +04/10/2018,Politicians,@AKWeissman,"RT @N7Zebracakes: @pricetagsa @AKWeissman I never had the good fortune to go to either. As I hear it, losing Le Rêve was a loss for the ent…" +04/10/2018,Politicians,@AKWeissman,RT @pricetagsa: @N7Zebracakes @AKWeissman If only! #foodies The loss of Le Reve and years ago Chez-Ardez was a huge loss for the city of S.… +04/10/2018,Politicians,@AKWeissman,"RT @N7Zebracakes: @AKWeissman my wife brings up Le Rêve on a weekly basis, lamenting it's demise. I know there was a single night event las…" +04/04/2018,Politicians,@AKWeissman,@TheMontereySA #merkins +04/04/2018,Politicians,@AKWeissman,RT @TheMontereySA: Yo @AKWeissman you know you can BUY dried pasta it’s not like you gotta make your own https://t.co/Z9gj1WDJfd +04/04/2018,Politicians,@AKWeissman,@davetapia @BCEapenMD Thanks Dave for the recommendation !!! #localshelpinglocals +04/04/2018,Politicians,@AKWeissman,RT @davetapia: @BCEapenMD @AKWeissman Glad you enjoyed it! The Signature never disappoints. #firstclassfood #firstclassservice +04/04/2018,Politicians,@AKWeissman,"RT @BCEapenMD: Had dinner at signature restaurant for my wife’s birthday. The food, service and decor were phenomenal. Overall a magnificen…" +04/03/2018,Politicians,@AKWeissman,@B_Mains_Cincy @Grace_Yek @WCPO Good for you Ned. Best of luck! +04/03/2018,Politicians,@AKWeissman,RT @B_Mains_Cincy: Seven Hills grad Ned Elliott is coming home to open a restaurant in Over-the-Rhine. Story by @Grace_Yek @WCPO. https://t… +04/02/2018,Politicians,@AKWeissman,The luxury is looking for cooks 12+tips+OT a good attitude is all you need! Cashiers as well 11+tips+OT #hollarback +04/01/2018,Politicians,@AKWeissman,@postcardsfromsa Crowds at luxury currently rival numbers at the Loyola/mich game! Thanks for the shoutout! +04/01/2018,Politicians,@AKWeissman,RT @postcardsfromsa: Final Four crowds pushing you out of downtown? Walk upriver for a lalaland salad and find a riverside swing seat at Th… +03/30/2018,Politicians,@AKWeissman,@chrissandoval @claudmac Great to see y’all! What a tremendous event! Let’s get together soon +03/26/2018,Politicians,@AKWeissman,@united worst customer service out of SFO. Ever. Never again. +03/26/2018,Politicians,@AKWeissman,RT @davetapia: @dfiske @AKWeissman @SABizJournal Congrats Chef and staff on the continued success! +03/26/2018,Politicians,@AKWeissman,@pricetagsa @dfiske @SABizJournal Thank you so much! +03/26/2018,Politicians,@AKWeissman,RT @pricetagsa: @dfiske @AKWeissman @SABizJournal Love this place. It is one of my favorite places to celebrate! +03/26/2018,Politicians,@AKWeissman,"RT @dfiske: La Cantera restaurant, Signature named to Southern Living's top 10 list https://t.co/7LIVwfiEb7 via @SABizJournal @AKWeissman" +03/25/2018,Politicians,@AKWeissman,@GGenebarris We will be back open on Tuesday -thru sat closed for Easter Sunday and Monday. +03/25/2018,Politicians,@AKWeissman,@GGenebarris Thx for your inquiry. It’s the one concept that I have that requires my wife and I to b there every da… https://t.co/1WTkp8DVDI +03/24/2018,Politicians,@AKWeissman,Let the judging begin! https://t.co/XKt4qza9dn +03/23/2018,Politicians,@AKWeissman,"RT @RajivRajani1: @Sean_Callahan @Andy_Staples Truth. @IlSognoSA @AKWeissman @CuredatPearl @HistoricPearl @TheHotelEmma + +On river walk but…" +03/21/2018,Politicians,@AKWeissman,@chocolatbises Thank you. Hope u r well! +03/21/2018,Politicians,@AKWeissman,RT @chocolatbises: @AKWeissman Congratulations! +03/21/2018,Politicians,@AKWeissman,@BBQsnob can you follow me for a sec so I can DM you? +03/21/2018,Politicians,@AKWeissman,@WGHarris77 Thanks! Looking forward to having coffee or the like sometime in the near future! +03/21/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Congratulations! +03/21/2018,Politicians,@AKWeissman,RT @jonprado: @AKWeissman Well deserved. Congratulations! +03/21/2018,Politicians,@AKWeissman,RT @Brahma71: Congrats to the whole gang! https://t.co/kgWgi7DqWe +03/21/2018,Politicians,@AKWeissman,RT @RajivRajani1: @AKWeissman Unbelievable food. Tied with @IlSognoSA for best in town. +03/21/2018,Politicians,@AKWeissman,@neffhudson I appreciate that and thank you for your kind words-but seriously take the offer! +03/21/2018,Politicians,@AKWeissman,@neffhudson Sorry about that. Come by and show this to my wife for a free falafel sandwich. +03/21/2018,Politicians,@AKWeissman,*named best restaurant in the April addition of southern living. +03/21/2018,Politicians,@AKWeissman,This is just a part of the Signature crew that just got named best restaurant in Texas and second best in the south… https://t.co/XPZKZkPzbK +02/23/2018,Politicians,@AKWeissman,Come see us over at moshes so we can introduce you to extremely flavorful healthy eating!!!! +02/21/2018,Politicians,@AKWeissman,"RT @globaljmg: @AKWeissman @RAConomics @TXsecofstate @SAHispanicCC @SanAntonioEDF @CoSAEDD @Trevino_D1 @GreenblumRobbie we def missed you,…" +02/21/2018,Politicians,@AKWeissman,@RAConomics @TXsecofstate @SAHispanicCC @SanAntonioEDF @CoSAEDD @Trevino_D1 @globaljmg @GreenblumRobbie Damn I’m in the dark about erything! +02/21/2018,Politicians,@AKWeissman,RT @RAConomics: Trade trip to Israel October 2018@Ron_Nirenberg opened more economic hope for @TXsecofstate @SAHispanicCC @SanAntonioEDF @C… +02/19/2018,Politicians,@AKWeissman,@TheMontereySA The uptick in corn dog fellatio can be directly attributed to a “general feeling of wellness in the… https://t.co/TonmlZ8WjI +02/19/2018,Politicians,@AKWeissman,@TheMontereySA @MikeBoard1200 Agreed. #corndogging +02/19/2018,Politicians,@AKWeissman,@TheMontereySA agreed. https://t.co/KDTlRaCTxa +02/19/2018,Politicians,@AKWeissman,@TheMontereySA The good lord provides. +02/16/2018,Politicians,@AKWeissman,@StefanBowers And a stained jacket. Can you do us all a favor and teach them to say “behind” when passing? Also imp… https://t.co/KnVF5Gcu6U +02/15/2018,Politicians,@AKWeissman,RT @pastorkirkMD: That makes me laugh @AKWeissman I guess this is an appropriate time to confess my bowl of Cap’n Crunch https://t.co/Wyi8I… +02/15/2018,Politicians,@AKWeissman,@richmcneal85 Correction “orange drank” +02/15/2018,Politicians,@AKWeissman,@TheMontereySA Does not compute. *similiar aberration would be @TheMontereySA doing calisthenics. #shocking +02/15/2018,Politicians,@AKWeissman,@TheMontereySA My big fat fabulous life. +02/15/2018,Politicians,@AKWeissman,@JMCoyle The day is young my friend. +02/15/2018,Politicians,@AKWeissman,RT @JMCoyle: @AKWeissman No meat in there! Awesome +02/15/2018,Politicians,@AKWeissman,My diet is not only varied but kinda fu$&@d up. It’s only 11 and I have already consumed beets w/tahini a hothouse… https://t.co/6qxOZQJ8T5 +02/15/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Delizioso! +02/15/2018,Politicians,@AKWeissman,@chefjasondady @jwdanklefs @BIN555 Those are truly sick! #congrats!!!! +02/15/2018,Politicians,@AKWeissman,This is the salad course I created for the Valentine’s Day prixe fixe at Signature. Thanks to all my awesome staff… https://t.co/0Doh15UWLp +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @AKWeissman Outstanding +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @AKWeissman Awesome one of my favorite places. +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @foodhussy @AKWeissman @IlSognoSA Looks amazing +02/12/2018,Politicians,@AKWeissman,@foodhussy @IlSognoSA Please come see us out at signature😜 +02/12/2018,Politicians,@AKWeissman,RT @foodhussy: @AKWeissman Everybody was fantastic- Chef Chris and all the staff were a pleasure - especially dessert/salad guy. I was at t… +02/12/2018,Politicians,@AKWeissman,RT @foodhussy: Just arrived and the smells are amazing!!!!! I can’t wait for dinner! @IlSognoSA https://t.co/tDiIkgjdLh +02/10/2018,Politicians,@AKWeissman,Find out what you’ve been missing if you have not discovered Signature yet! @fedmanwalking https://t.co/maZqIOHEJh +07/02/2018,Politicians,@lpolgreen,RT @HotlineJosh: 33 point gender gap. Damn. https://t.co/HCHHDYYrkD +07/02/2018,Politicians,@lpolgreen,"RT @JarettSays: ""Hannah Gadsby: Nanette"" is truly a revelation. Watch the special on Netflix immediately if not sooner https://t.co/C7zRiqV…" +07/02/2018,Politicians,@lpolgreen,RT @EricLevitz: Wrote an essay on why Democrats have little to gain by getting tough on border security. TLDR: Barack Obama didn't alienate… +07/02/2018,Politicians,@lpolgreen,@CraigSilverman @Jon_Christian Thank you! Great piece. +07/02/2018,Politicians,@lpolgreen,@CraigSilverman @Jon_Christian One quibble. We didn’t “distance” ourselves. We shut it down. +07/02/2018,Politicians,@lpolgreen,Reason number five zillion HuffPost no longer has a contributor network. https://t.co/yDoFPWwFg1 +07/02/2018,Politicians,@lpolgreen,RT @ChloeAngyal: This is absolutely devastating to read. What an utter moral stain https://t.co/exR10J4u36 +07/02/2018,Politicians,@lpolgreen,RT @nytimes: A South Carolina woman has been nicknamed Pool Patrol Paula after a widely shared video showed her accosting a black boy and h… +07/02/2018,Politicians,@lpolgreen,RT @lannadelgrey: The Pulitzer prize-winning author said he was “confused” and “panicked” when multiple women accused him of sexual miscond… +07/02/2018,Politicians,@lpolgreen,"RT @tdobshinsky: when the plane doesn't have TV or wifi, pilots can request sports scores from the ground + +...finally the flight attendants…" +07/02/2018,Politicians,@lpolgreen,"RT @CitizenCohn: I'd go even farther: @aedwardslevy is one of the funniest people on twitter, period. https://t.co/XwcC11DyzF https://t.co/…" +07/02/2018,Politicians,@lpolgreen,RT @MaraGay: Time for change in the Democratic Party https://t.co/FedLVUmeCf +07/02/2018,Politicians,@lpolgreen,"RT @nytopinion: .@SenatorCollins is willing to neglect substance and put the highest priority on *appearing* centrist, says @DLeonhardt htt…" +07/02/2018,Politicians,@lpolgreen,RT @EllenPage: Holy shit #Nanette is extraordinary. Blown away by @Hannahgadsby @netflix +07/02/2018,Politicians,@lpolgreen,"RT @KenFarnaso: Great read by @xan_desanctis — “I had never been to Washington before I got elected to Congress,” he (@SenatorTimScott) tel…" +07/02/2018,Politicians,@lpolgreen,"RT @sahilkapur: NEW: Republicans are closer than ever to their goal of overturning Roe v. Wade. But reaching it carries a hidden risk. + +“No…" +07/02/2018,Politicians,@lpolgreen,"RT @CBSNews: Alexandria Ocasio-Cortez explains her view of democratic socialism on @colbertlateshow: ""I believe that in a modern, moral, an…" +07/02/2018,Politicians,@lpolgreen,"RT @saletan: Sorry, but we've had to move this. Ocasio-Cortez has a regatta that day. https://t.co/rDaVeM3kk7" +07/02/2018,Politicians,@lpolgreen,RT @ryangrim: I promise we weren't planning on doing another @Ocasio2018 take but then we got some fascinating election-return data so had… +07/02/2018,Politicians,@lpolgreen,"RT @NewsHour: How should comics tackle sensitive topics? ‘Lead with personal experience,’ says @cameronesposito, whose set ‘Rape Jokes’ has…" +07/02/2018,Politicians,@lpolgreen,"RT @KasieDC: OUCH. Tough words for Chief of Staff John Kelly from @Scaramucci: + +""He wasn't capable of bringing one person into the White Ho…" +07/02/2018,Politicians,@lpolgreen,RT @blakehounshell: o_O https://t.co/X2l59XN2Pg +07/02/2018,Politicians,@lpolgreen,RT @BUILDseriesNYC: EVERYbody is chatting about this one. @Hannahgadsby 's #Netflix special is incredible. Check out her conversation with… +07/01/2018,Politicians,@lpolgreen,"RT @HuffPost: ""This cover [feels] like an actually radical moment in the miasma of half-baked and tentative 'body positivity' spreading thr…" +07/01/2018,Politicians,@lpolgreen,RT @samanthabarry: A powerfully personal piece by @cindi_leive on abortion asking why when one in four American women have them by the age… +07/01/2018,Politicians,@lpolgreen,@hels Embrace shorts. Thick legs and all. +06/30/2018,Politicians,@lpolgreen,@aterkel Sounds kinda like Obama tbh. +06/30/2018,Politicians,@lpolgreen,"RT @oneunderscore__: There’s something very, very wrong with whatever/whoever is running the AP Twitter account, and it’s been going on for…" +06/30/2018,Politicians,@lpolgreen,Fantastic column by ⁦@michelleinbklyn⁩. There are other heartlands that need visiting and serious journalistic enga… https://t.co/Tf3CgzUjbw +06/30/2018,Politicians,@lpolgreen,@chick_in_kiev I can only imagine what your mentions look like. Courage. 💪🏽👊🏽🙏🏽 +06/30/2018,Politicians,@lpolgreen,"RT @chick_in_kiev: Every journalist, especially female journalists, journalists of color and Jewish journalists, deals with threats and slu…" +06/30/2018,Politicians,@lpolgreen,RT @alyspereira: this is true and the craziest thing to me is when journalists post screenshots of horrible messages they get they usually… +06/30/2018,Politicians,@lpolgreen,RT @ChloeAngyal: One of the hardest parts about being on the receiving end of this abuse is not sharing it with the people who love you the… +06/30/2018,Politicians,@lpolgreen,"RT @MSNBC: ""We may have to turn American upside down to turn it right-side up,"" Rep. John Lewis says at immigration march in Atlanta. https…" +06/30/2018,Politicians,@lpolgreen,"RT @TrevorIrvin2: My cartoon of watching the Supreme Court turn to crap. +Regards, +T https://t.co/V5PsZ4KsGo" +06/30/2018,Politicians,@lpolgreen,"RT @deanemurphy: “They can build as many walls as they want,” one migrant from El Salvador said. “They can send as many soldiers to the bor…" +06/30/2018,Politicians,@lpolgreen,RT @kainazamaria: “I have almost reached the regrettable conclusion that the Negro’s great stumbling block in his stride toward freedom is… +06/30/2018,Politicians,@lpolgreen,RT @MattBinder: damn looks like we've got a real conundrum on our hands here https://t.co/pVDaJ0DvE9 +06/30/2018,Politicians,@lpolgreen,RT @jbouie: nice that the president under criminal investigation can nominate a justice who thinks presidents should be able to ignore crim… +06/30/2018,Politicians,@lpolgreen,"RT @HuffPost: At HuffPost, reporters have been doxed more than once. They get death threats. They’re Photoshopped into gas-chamber cartoons…" +06/30/2018,Politicians,@lpolgreen,"RT @rtraister: I wrote about minority rule, SCOTUS, Maxine Waters, Charlie Rose, Schumer Pelosi and Bernie, Alexandria Ocasio-Cortez, aboli…" +06/30/2018,Politicians,@lpolgreen,RT @tylerkingkade: I see my friends share some of these once in a while. But it’s still pretty jarring to see a bunch gathered in one servi… +06/29/2018,Politicians,@lpolgreen,RT @chernandburn: After publishing this months-long investigation into anti-Semitism at the largest 40 school districts in the Bay Area I r… +06/29/2018,Politicians,@lpolgreen,@chernandburn Thanks for doing what you do. Stay strong. +06/29/2018,Politicians,@lpolgreen,Journalists in newsrooms across the country have received similar messages. It’s the hidden reality of the job now.… https://t.co/osvWC1h0fU +06/29/2018,Politicians,@lpolgreen,"Our Hate Mail. A compilation of recent threats, slurs and other nastiness aimed at HuffPost journalists. Who are ju… https://t.co/STQdOzVMHz" +06/29/2018,Politicians,@lpolgreen,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/29/2018,Politicians,@lpolgreen,"RT @Robillard: HuffPost watched Germany crash out of the World Cup with a member of the country’s right-wing party, AfD. + +He blamed player…" +06/29/2018,Politicians,@lpolgreen,"Love this love letter to @capgaznews by @hilella, who grew up in Annapolis. https://t.co/upPC1YaPhY" +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh I don’t know so much of the caffeine impact is olfactory. Same for nicotine tbh. +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh I’m a fan! Having given it up I’m... aware of its appeal. +06/29/2018,Politicians,@lpolgreen,@poniewozik @gabrielsnyder You can download your tweets in a CSV file that is actually much more useful for archival purposes. +06/29/2018,Politicians,@lpolgreen,"@ashleyfeinberg @gabrielsnyder Find your courage, ashley." +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh Which is more addictive: nicotine or caffeine? I literally cannot function without the latter.… https://t.co/3gqjW6pNws +06/29/2018,Politicians,@lpolgreen,"RT @danielmarans: Seth Moulton styles himself a New Democrat, but given where the energies in his party lie at the moment, he sounds very m…" +06/29/2018,Politicians,@lpolgreen,@MikeIsaac https://t.co/WTv351l5hz +06/29/2018,Politicians,@lpolgreen,@gabrielsnyder I have mine set up to delete at 60 days but might go shorter. +06/29/2018,Politicians,@lpolgreen,@MikeIsaac I’m OBSESSED with this company’s story +06/29/2018,Politicians,@lpolgreen,"RT @MikeIsaac: i LOVE this story. an e-cigarette company raising money valued at a tech multiple. + +https://t.co/ElX7Ofy9BM" +06/29/2018,Politicians,@lpolgreen,RT @JeffYoung: Medicaid work requirements took a big hit in court today. Kentucky Gov. Matt Bevin (R) and the Trump administration were pla… +06/29/2018,Politicians,@lpolgreen,RT @ChloeAngyal: You guys. @Rowaida_Abdel and @letsgomathias have spent over a year tracking anti-Muslim hate all over the nation. Now @the… +06/29/2018,Politicians,@lpolgreen,RT @srl: Going to tweet a few transcribed exchanges from the most recent meeting of the Florida panel that has the sole power to restore vo… +06/29/2018,Politicians,@lpolgreen,The biggest cases this term often broke down along partisan lines https://t.co/JhH7SwZjqN via @HuffPostPol +06/29/2018,Politicians,@lpolgreen,"RT @dannysanchez: There is now a fund to aid the victims of the @capitalgazette shooting, administered by the Annapolis-based Anne Arundel…" +06/29/2018,Politicians,@lpolgreen,"The Capital was @hilella’s hometown paper. She has written a love letter to it, especially its coverage of teenager… https://t.co/d9LLU0XR29" +06/29/2018,Politicians,@lpolgreen,"“While there is no causality, there is a connection in the attitudes of this unhinged gunman and the president of t… https://t.co/xROAnr3SjV" +06/29/2018,Politicians,@lpolgreen,"“Rejection needs to be normalized, not catastrophized.” https://t.co/Mxnx3repzA" +06/29/2018,Politicians,@lpolgreen,So excited about the moves @HuffPostUK is making. Follow along here! https://t.co/cPx5HrAKoU +06/29/2018,Politicians,@lpolgreen,"RT @thehighsign: Watching David Simon & his wife @LauraMLippman learn their close friends died at the Capital Gazette, while trolls mock th…" +06/29/2018,Politicians,@lpolgreen,"""Body positivity takes a movement that sought to rewrite the conversation about bodies and weight and acceptability… https://t.co/77EMknDCpj" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: Trump just now: ""Journalists, like all Americans should be free from the fear of being violently attacked while doing their j…" +06/29/2018,Politicians,@lpolgreen,RT @SherylNYT: Trump strategically stocked courts with Kennedy clerks. Also had a business relationship with Kennedy's son. Fascinating @ad… +06/29/2018,Politicians,@lpolgreen,RT @nickpwing: Small newsrooms: I want to talk to you. How are you responding to yesterday’s attack? Increased security? Discussions about… +06/29/2018,Politicians,@lpolgreen,RT @abogada_laura: My 5-yr-old client can’t tell me what country she is from. We prepare her case by drawing pictures with crayons of the g… +06/29/2018,Politicians,@lpolgreen,@lisatozzi @shani_o My housemates (three blonde dogs) preclude black as a general rule. +06/29/2018,Politicians,@lpolgreen,@shani_o You’re too young for EF Shani +06/29/2018,Politicians,@lpolgreen,RT @YahooNews: A Democratic strategist says the first question Trump’s Supreme Court nominee should be asked is whether he or she was requi… +06/29/2018,Politicians,@lpolgreen,"RT @AshaRangappa_: You literally made a video for the NRA called ""We are coming for you, New York Times."" https://t.co/JukE2p9d8p" +06/29/2018,Politicians,@lpolgreen,RT @timkmak: Anne Arundel County Police says reports of suspect at Capital Gazette having mutilated his fingertips is untrue +06/29/2018,Politicians,@lpolgreen,"RT @maxwellstrachan: Stuyvesant's valedictorian: Find a way to diversify my school + +This is a wonderful speech by a teenager who is much sm…" +06/29/2018,Politicians,@lpolgreen,Twenty-five percent of the population can't detect bitterness. Those are the people who naturally love IPAs.… https://t.co/f7VWpBiNbz +06/29/2018,Politicians,@lpolgreen,RT @paulwaugh: EXCLUSIVE by @owenjbennett: Brexit 'bad boy' Richard Tice puts himself forward to be Tory candidate for London mayor https:/… +06/29/2018,Politicians,@lpolgreen,"RT @HuffPost: “We are seeing the consequences of when one vision is realized, or in charge.” https://t.co/Dd9PfPc35t" +06/29/2018,Politicians,@lpolgreen,"RT @maggieNYT: Supporting local journalism is important, what happened today is sickening. This alleged gunman appears to have had a longst…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: ┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| _ +┻┳| •.•) it's nice seeing people fired up about li…" +06/29/2018,Politicians,@lpolgreen,"RT @lkmcgann: I could barely read the final lines of this story...the Gazette staff's moving commitment to their craft, community and colle…" +06/29/2018,Politicians,@lpolgreen,"RT @sherifink: Ever wonder how @nytimes works and what standards are applied to strive for a trustworthy, unbiased news report? An ongoing…" +06/29/2018,Politicians,@lpolgreen,"“In essence, the Eighth Amendment meant whatever Justice Kennedy thought it meant,” said one death penalty expert.… https://t.co/T7crG4kKTm" +06/29/2018,Politicians,@lpolgreen,"RT @PamelaPaulNYT: Looking for a big, engrossing epic novel to sink into this summer? We are thrilled to announce that Min Jin Lee’s “Pachi…" +06/29/2018,Politicians,@lpolgreen,"RT @noahmichelson: Beware women who tell other women the answer to America's problems is for them to embrace a return to ""modesty"" and thei…" +06/29/2018,Politicians,@lpolgreen,"RT @jessicabennett: “My title is Dr. Fern Riddell, not Ms. or Miss Riddell. I have it because I am an expert... I worked hard to earn my au…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: A day after the shootings, Capital Gazette leaves its editorial section blank https://t.co/IlMrrm562v" +06/29/2018,Politicians,@lpolgreen,"RT @Yamiche: At least 41 journalists have been killed this year, according to data from the Committee to Protect Journalists. https://t.co…" +06/29/2018,Politicians,@lpolgreen,RT @shelbygrad: Every journalist’s nightmare. https://t.co/LiIoTKWJnP https://t.co/Nl5vxzDiif +06/29/2018,Politicians,@lpolgreen,RT @adamgoldmanNYT: #journalism https://t.co/Ds7HrnUzhS +06/29/2018,Politicians,@lpolgreen,Would you look at that tan suit. What a scandal. https://t.co/FkdKJr0jzr +06/29/2018,Politicians,@lpolgreen,Each one a heartbreak. https://t.co/HkU1mTjMbz +06/29/2018,Politicians,@lpolgreen,"RT @Robillard: I’m having a hard time articulating my thoughts right now, but as I attempt to sleep, I’ll leave you with this: + +On Monday n…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: Barrett was also a member of a tightly knit Christian group called People of Praise, -- where men are referred to as “heads”…" +06/29/2018,Politicians,@lpolgreen,RT @qualityrye: Gabrielle Giffords is correct https://t.co/TEIKamu0SF https://t.co/1HhOLSZf9r +06/29/2018,Politicians,@lpolgreen,RT @AMLwhere: The climate in which journalists now work: “More and more democratically-elected leaders no longer see the media as part of d… +06/28/2018,Politicians,@lpolgreen,"RT @Poynter: Today's an unwelcome reminder that journalism is difficult and dangerous work +https://t.co/QNwYic7WkY https://t.co/G1lAeLxHz0" +06/28/2018,Politicians,@lpolgreen,My first job was at the Albany Times Union. It felt exactly like this. Family. https://t.co/s1HFMUtZ7o +06/28/2018,Politicians,@lpolgreen,"RT @hilella: I am from Annapolis, MD. I was featured in The Capital a bunch of times as a kid, mostly for my field hockey stats (I was the…" +06/28/2018,Politicians,@lpolgreen,"RT @YahooNews: Though Democrats are the minority party on Capitol Hill, they are promising to mount a furious opposition campaign to Trump’…" +06/28/2018,Politicians,@lpolgreen,My Alma Mater. https://t.co/uhzuNiLbbK +06/28/2018,Politicians,@lpolgreen,"RT @NBCNews: BREAKING: White male suspect in Maryland newsroom shooting has been identified via use of facial recognition technology, and l…" +06/28/2018,Politicians,@lpolgreen,Damn right. And we all stand with you. Can’t wait to read it. https://t.co/7tsrsg3nqI +06/28/2018,Politicians,@lpolgreen,Hilarious. https://t.co/UOQrYjAMHA +06/28/2018,Politicians,@lpolgreen,RT @joshuamckerrow: Continuing to cover story with Capital journalists Chase Cook and Pat Ferguson. Thanks to our @baltimoresun colleagues… +06/28/2018,Politicians,@lpolgreen,"@marinafang @paigelav @womenjournos Way to go, @marinafang!!!" +06/28/2018,Politicians,@lpolgreen,RT @kathrynw5: >>> A law enforcement source tells one of my CBS News colleagues that the Annapolis shooting suspect damaged his finger tips… +06/28/2018,Politicians,@lpolgreen,"RT @HuffPost: ""I’ve been saying now for days that something horrible was going to happen because of the rhetoric. Really Maxine?"" said Sean…" +06/28/2018,Politicians,@lpolgreen,RT @bariweiss: Ramzi Yousef. Richard Reid. Mohammad Atta. The Tsarnaev brothers. None of these evil men would have been barred by Trump's t… +06/28/2018,Politicians,@lpolgreen,"RT @wesyang: Remarkable 23 percent shift away from D to R among white millennial men since 2016. https://t.co/GXv9HKZKFL + +Genuinely curio…" +06/28/2018,Politicians,@lpolgreen,Devastating thread. https://t.co/xB7gzBaMMw +06/28/2018,Politicians,@lpolgreen,"RT @PeterAlexander: And, thank you to the Capital Gazette journalists who, under the worst imaginable circumstances, keep reporting about a…" +06/28/2018,Politicians,@lpolgreen,"RT @JaneLytv: This is a fake New York Times screenshot. + +(The nope is my addition to avoid spread.) https://t.co/fkEH6tJWyl" +06/28/2018,Politicians,@lpolgreen,"RT @fordm: A small but meaningful response to the Capital Gazette tragedy would be to subscribe to a similar local newspaper in your area,…" +06/28/2018,Politicians,@lpolgreen,"RT @Wolfe321: At CPJ, we waited until we were clear that a murder/death of a journalist was related to their #journalism before we wrote up…" +06/28/2018,Politicians,@lpolgreen,"As I type this, NYPD officers are guarding the building where my colleagues and I work. This is essential context f… https://t.co/8uKvmvfoM9" +06/28/2018,Politicians,@lpolgreen,Talking about the violent threats journalists face in America today is not the same as speculating about motive. +06/28/2018,Politicians,@lpolgreen,"We know nothing about the shooter’s motive, but that hasn’t stopped some from celebrating the attack. https://t.co/baY4dIXm36" +06/28/2018,Politicians,@lpolgreen,My god. Five dead. More “gravely injured.” +06/28/2018,Politicians,@lpolgreen,"“But as much as I’m going to try to articulate how traumatizing it is to be hiding under your desk, you don’t know… https://t.co/8sethgq2hj" +06/28/2018,Politicians,@lpolgreen,"RT @Mosheh: Latest from @CBSNews investigative unit: Suspect in @capitalgazette shooting is white, male, in his 20s, had no ID on him and r…" +06/28/2018,Politicians,@lpolgreen,"A lot of us experience this. I was doxed a couple of weeks ago, along with several colleagues. Phone numbers, home… https://t.co/uGkfRREmfr" +06/28/2018,Politicians,@lpolgreen,RT @jeffjarvis: Police outside The New York Times now. Thank goodness. https://t.co/6ICl9JMKeD +06/28/2018,Politicians,@lpolgreen,RT @hunterw: Seeing more than a few journalists who should know better tweeting stuff like police scanner chatter and speculation about the… +06/28/2018,Politicians,@lpolgreen,RT @JaneLytv: 1. The suspect is NOT SAM HYDE. This is the #1 hoax during breaking news situations. https://t.co/yIA7aTAtYI +06/28/2018,Politicians,@lpolgreen,RT @AlecMacGillis: It's becoming ever clearer that Mitch McConnell is the Keyser Soze of our times. New @propublica and @nytimes: https://t… +06/28/2018,Politicians,@lpolgreen,RT @jbendery: Susan Collins and Lisa Murkowski do say they are pro-choice -- and have voted to confirm ALL of Trump's anti-abortion lifetim… +06/28/2018,Politicians,@lpolgreen,"RT @DTOhl: I don't have many details right now. My colleagues Phil Davis, Chase Cook, Anthony Messenger, Rick Hutzell and Selene San Felice…" +06/28/2018,Politicians,@lpolgreen,RT @BenWeathers83: Devasted. Just devasted. +06/28/2018,Politicians,@lpolgreen,RT @merrillwilliams: Our family business for 40 years. Great people. We are devasted and praying for entire @capgaznews team. #annapolis… +06/28/2018,Politicians,@lpolgreen,"RT @ShaneGoldmacher: ""Mooooooooommmmmmm"" + +https://t.co/qEvKt8qpC2 https://t.co/4RGjOM5ChI" +06/28/2018,Politicians,@lpolgreen,RT @MattStoneABC: .@ABC News going live with a special report momentarily- reports of multiple people injured in a shooting at Capital Gaze… +06/28/2018,Politicians,@lpolgreen,RT @michaelroston: I deleted a tweet about the shooting in Annapolis at the Capital Gazette because I didn't want it to be misinterpreted -… +06/28/2018,Politicians,@lpolgreen,"RT @Jean_Marbella: Keep our colleagues in your thoughts, please https://t.co/Q0ZoWsa26r" +06/28/2018,Politicians,@lpolgreen,RT @PhilDavis_CG: Gunman shot through the glass door to the office and opened fire on multiple employees. Can't say much more and don't wan… +06/28/2018,Politicians,@lpolgreen,"RT @PhilDavis_CG: A single shooter shot multiple people at my office, some of whom are dead." +06/28/2018,Politicians,@lpolgreen,Absolutely chilling tweet from a reporter at the Capital Gazette. https://t.co/tsWsGm2NvD +06/28/2018,Politicians,@lpolgreen,RT @b_fung: Just a quick reminder to everyone that we don't yet know who the suspect or what the motive was. +06/28/2018,Politicians,@lpolgreen,RT @awprokop: WSJ says Nick Ayers is a frontrunner to replace John Kelly as chief of staff. @VickyPJWard had quite the profile of Ayers a f… +06/28/2018,Politicians,@lpolgreen,I went to college in Annapolis and both my parents live there now. It’s a small town at heart. This is heartbreakin… https://t.co/5bi0NR01lC +06/28/2018,Politicians,@lpolgreen,RT @Robillard: I interned at the Capital Gazette in college. This is surreal and awful. https://t.co/irFp5U8BiH +06/28/2018,Politicians,@lpolgreen,"RT @feliciasonmez: Barbara Lee, a stalwart of the left, considering bid for House Democratic leadership, @daveweigel reports: https://t.co/…" +06/28/2018,Politicians,@lpolgreen,"RT @Noahpinion: Wow, this is big news. The number of Americans who think legal immigration should be increased has surpassed the number who…" +06/28/2018,Politicians,@lpolgreen,@michaelbd Hard agree! +06/28/2018,Politicians,@lpolgreen,This is very true. https://t.co/8m95UVzlej +06/28/2018,Politicians,@lpolgreen,"Good marching orders for reporters, which we follow here at HuffPost: “Get closer to what voters are thinking and f… https://t.co/em13nsqnGM" +06/28/2018,Politicians,@lpolgreen,@emilynussbaum That was some smart assigning! +06/28/2018,Politicians,@lpolgreen,Great review of ⁦@Hannahgadsby⁩’s Nanette in the New Yorker. Genius assignment: ⁦⁦@MoiraDonegan⁩ https://t.co/RnPhO2RN3M +06/28/2018,Politicians,@lpolgreen,RT @danielmarans: Alexandria Ocasio-Cortez's ad stands out as a tipping point that both reflected her strengths as a candidate and amplifie… +06/28/2018,Politicians,@lpolgreen,"""The Supreme Court, Congress and the executive branch are instruments of political power. All three are currently b… https://t.co/1MuCG8culC" +06/28/2018,Politicians,@lpolgreen,"@joelpollak @AliVelshi @ThePlumLineGS I think it’s a much broader set of concerns than gay marriage, ACA and Roe." +06/28/2018,Politicians,@lpolgreen,RT @JackMorrison208: The green light from the great gatsby was from a juul +06/28/2018,Politicians,@lpolgreen,Here's what it's like to endure wildfire season in California: “We’re getting used to it. You’ve got to have your b… https://t.co/8lwVpOyKlZ +06/28/2018,Politicians,@lpolgreen,"""So we tweet on, users against the content, borne back ceaselessly into our favs.” https://t.co/Rj23Tr8rxm" +06/28/2018,Politicians,@lpolgreen,RT @nytopinion: Anthony Kennedy’s retirement means the Supreme Court is likely to side more often with those who already have power — and a… +06/28/2018,Politicians,@lpolgreen,@KimBhasin @Gothamist 🙏🏾 +06/28/2018,Politicians,@lpolgreen,What a jerk. https://t.co/kHtGwynoIg +06/28/2018,Politicians,@lpolgreen,"RT @mediagazer: Sources: Fox News CEO Suzanne Scott tells producers they must protect the talent and brand, and will be held accountable fo…" +06/28/2018,Politicians,@lpolgreen,RT @Ocasio2018: A Girl Has No Name: Headlines from the Political Patriarchy https://t.co/xohAiHSk3b +06/28/2018,Politicians,@lpolgreen,"RT @Robillard: NEW: The Foxconn deal Scott Walker and President Trump are celebrating today? + +Polls say it’s unpopular, and Democrats want…" +06/28/2018,Politicians,@lpolgreen,A gay rights lawyer argues that Kennedy’s true legacy will be this: deliberately choosing to let Trump choose and t… https://t.co/Tsi5tk2djx +06/28/2018,Politicians,@lpolgreen,Good morning. https://t.co/sx1krY8ZvH +06/28/2018,Politicians,@lpolgreen,RT @ashleyfeinberg: outsourcing all my research to teens now https://t.co/r1g9W44zVj +06/28/2018,Politicians,@lpolgreen,"“We’d use a coat hanger, like our grandmothers did.” https://t.co/fQ0VNYe1vW by @mtredden" +06/28/2018,Politicians,@lpolgreen,"RT @joshtpm: Trump: ""We have more money and more brains and better houses and apartments and nicer boats. We are smarter than they are. The…" +06/28/2018,Politicians,@lpolgreen,Justice Elena Kagan Says The Supreme Court Turned The First Amendment 'Into A Sword' https://t.co/Y0XCszFetK +06/28/2018,Politicians,@lpolgreen,"RT @HuffPost: ""In the near future, getting abortions and transporting people to places where they can still get them will require massive f…" +06/28/2018,Politicians,@lpolgreen,RT @seungminkim: It should be noted here that Heitkamp voted for Gorsuch. https://t.co/9bGOf4tFLm +06/28/2018,Politicians,@lpolgreen,"RT @NinaBernstein1: “For those who face the future in fear after Wednesday, there are no easy answers — but there is a clear duty. Do not f…" +06/28/2018,Politicians,@lpolgreen,RT @NAACP_LDF: “This is no time for leaning back and reclining and doing milquetoast politics. This is about the future of our democracy… i… +06/28/2018,Politicians,@lpolgreen,"RT @AriMelber: Does POTUS have to turn over evidence in a criminal probe, like the Nixon tapes? + +Must a POTUS testify before a grand jury?…" +06/28/2018,Politicians,@lpolgreen,RT @chrislhayes: None of what happens now has anything to do with arguments or persuasion but solely the calculated use of maximal applicat… +06/28/2018,Politicians,@lpolgreen,RT @MaraGay: The liberal base is on fire https://t.co/3FOz8OSXBG +06/28/2018,Politicians,@lpolgreen,"RT @ChloeAngyal: ""Opposition to abortion is not just about hostility to abortion or even discomfort with women’s sexuality. At its core, op…" +06/28/2018,Politicians,@lpolgreen,RT @emilysteel: Bill Shine was ousted last year amid the sexual harassment scandal at Fox News. He now is expected to be offered the job of… +06/28/2018,Politicians,@lpolgreen,Democrats Demand GOP Follow 'McConnell Rule' And Delay Supreme Court Hearing. Good luck. https://t.co/1ElMhnoD9Q +06/27/2018,Politicians,@lpolgreen,Bless you @petridishes. https://t.co/PgDYPqe1CL +06/27/2018,Politicians,@lpolgreen,RT @AsteadWesley: The typical US Congress member is 12 times richer than the typical American household. https://t.co/cS8Ex3oGPC +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: On abortion rights + Trump's SCOTUS pick: + +On one hand, GOP can't afford to lose any votes to confirm Trump's pick & there a…" +06/27/2018,Politicians,@lpolgreen,@joelpollak That was before McConnell made the rule! +06/27/2018,Politicians,@lpolgreen,RT @danielmarans: A model for left activists who *sometimes sound* like they think inclusive framing and organizing is tantamount to selli… +06/27/2018,Politicians,@lpolgreen,"RT @Ocasio2018: I completely agree with @SenSanders. Interpretations of “us vs them” are unproductive in our discourse and, in my opinion,…" +06/27/2018,Politicians,@lpolgreen,RT @zachdcarter: Here is a take you might have cared about three hours ago. https://t.co/v0cFSuUdGs +06/27/2018,Politicians,@lpolgreen,"RT @joshrogin: Hey guys, Assad has started a fresh campaign of murder and atrocities, this time near the border with Jordan. In case anyone…" +06/27/2018,Politicians,@lpolgreen,RT @chrislhayes: Kennedy handing his seat over to Trump is the most perfect example *ever* about how it is all the party of Trump. All of i… +06/27/2018,Politicians,@lpolgreen,"RT @jbouie: This is absolutely true. + +McCain: https://t.co/drd5Zvecj8 + +Chuck Grassley and Orrin Hatch: https://t.co/qd1teGbEP9 + +And conserv…" +06/27/2018,Politicians,@lpolgreen,RT @jackmjenkins: Oh yeah there was that time John McCain promised that Republicans would block ANY Supreme Court nominee by Clinton if she… +06/27/2018,Politicians,@lpolgreen,“The funny thing about beginnings is that you rarely know you’re in them. ... My beginning was losing a parent to c… https://t.co/fP6SEKl4RP +06/27/2018,Politicians,@lpolgreen,The Supreme Court's ruling isn't just a blow to organized labor. https://t.co/Ac2f3bqghK via @HuffPostPol +06/27/2018,Politicians,@lpolgreen,"RT @jamieson: The kicker to Kagan's dissent in Janus was brutal: She referred to the majority as ""black-robed rulers overriding citizens' c…" +06/27/2018,Politicians,@lpolgreen,"RT @HuffPost: The Supreme Court found regulations on ""crisis pregnancy centers"" unconstitutional. What about laws that force abortion provi…" +06/27/2018,Politicians,@lpolgreen,"RT @gabrielroth: everyone on twitter: why are we wasting our lives on this disgusting hell site +jonathan franzen: wow sounds bad, i'm going…" +06/27/2018,Politicians,@lpolgreen,"RT @Max_Fisher: Entirely possible that by 2020 we have a situation in which: + +• Democrats have won 6 out of the last 7 popular votes for pr…" +06/27/2018,Politicians,@lpolgreen,RT @aterkel: Here’s what Schumer told me in January 2017 on how he’d be looking at Roe v Wade as a major indicator for a SCOTUS nominee htt… +06/27/2018,Politicians,@lpolgreen,"Telling that Schumer singles out that issue, as opposed to, say, voting rights. https://t.co/4jsgoqQ45d" +07/02/2018,Politicians,@Schriock1,Just remember that only 920 women told us the same last cycle! Women are watching what Trump and the GOP are doing… https://t.co/MC8qyXC5iV +07/02/2018,Politicians,@Schriock1,Thanks @KasieDC — I had a great time joining you tonight! Always love a conversation that can range from the news o… https://t.co/I4CYcyInI2 +07/02/2018,Politicians,@Schriock1,"I never want to hear someone call it the ""abortion card"" ever again. This isn't a game. This a real fear that women… https://t.co/qiBM1WvweO" +07/02/2018,Politicians,@Schriock1,"RT @creynoldsnc: Tune in to @KasieDC at 8:00 to see @Schriock1 talk SCOTUS, Democrats winning, @emilyslist and more with @kasie." +06/30/2018,Politicians,@Schriock1,I'm so proud of our women who are speaking out and marching today. The separation of families is horrific — and hig… https://t.co/eByGreIkDA +06/30/2018,Politicians,@Schriock1,RT @GwenGraham: “This isn’t just the best woman for the job. This is the best person to be Florida’s next governor! The very best candidate… +06/29/2018,Politicians,@Schriock1,Our interns are the best! https://t.co/JBC5TaamBL +06/29/2018,Politicians,@Schriock1,"If we want to fight back against the Trump administration, we need to send @vgescobar and pro-choice Democratic wom… https://t.co/v1I0DZ36Gz" +06/29/2018,Politicians,@Schriock1,"@emilyslist I may have some fear, but I am motivated by hope. I am motivated by the energy I see every day at… https://t.co/rsQ3oiAlMT" +06/29/2018,Politicians,@Schriock1,"@emilyslist And most of all, be kind to one another. This fight will be hard. So we must have each other's backs an… https://t.co/Sozib3k75N" +06/29/2018,Politicians,@Schriock1,"Here's some things you can do: +✅ Tweet every day for candidates you support. +✅ Become a monthly donor to help… https://t.co/DpJBczEO50" +06/29/2018,Politicians,@Schriock1,@emilyslist .@emilyslist has a very big map — including governors' races and state legislative races that are going… https://t.co/wGOa0q2Ylk +06/29/2018,Politicians,@Schriock1,"I'm so proud of what my team at @emilyslist and our community have done this cycle. However, we must dig deeper now… https://t.co/8hRQi5kcsx" +06/29/2018,Politicians,@Schriock1,Trump has promised to criminalize abortion and punish women — and most of the Senate GOP is ready to fulfill that promise. +06/29/2018,Politicians,@Schriock1,We cannot allow them to take us back to the time of our mothers and grandmothers on abortion access or birth contro… https://t.co/2tAxrYovxK +06/29/2018,Politicians,@Schriock1,Extreme right-wing Republicans have been masterminding the takeover of our courts for decades. When we told you the… https://t.co/1v66O9WS1g +06/29/2018,Politicians,@Schriock1,"Even under the current administration, the past few weeks have been especially hard. We are all hurting. Your fear,… https://t.co/SWwKiEFErq" +06/28/2018,Politicians,@Schriock1,RT @emilyslist: Our own @Schriock1 is going to be on @TheBeatWithAri soon to talk about SCOTUS and the impact on #ReproRights — tune in. +06/27/2018,Politicians,@Schriock1,Elections have consequences. The GOP will use this opportunity to nominate an anti-choice justice to the Supreme Co… https://t.co/XRe7yWvcpP +06/27/2018,Politicians,@Schriock1,Today's #Janus decision is deeply disappointing. I stand with my union sisters and brothers — we will keep fighting… https://t.co/3KO5vFLgxf +06/27/2018,Politicians,@Schriock1,RT @emilyslist: Congrats to @RepDMB on winning her primary! https://t.co/Z8y6XSvyoF +06/27/2018,Politicians,@Schriock1,RT @emilyslist: Congrats to @liuba4congress on winning her primary! https://t.co/W712herAGQ +06/27/2018,Politicians,@Schriock1,"Thanks for your support of @emilyslist, @JoshMalina! And thanks for helping us get out the vote for our pro-choice… https://t.co/CErOWmdNDv" +06/26/2018,Politicians,@Schriock1,The #NIFLAvBecerra decision is devastating. It will let fake clinics lie to vulnerable women and withhold potential… https://t.co/zDNV9sJjzw +06/26/2018,Politicians,@Schriock1,"“Congress has a moral obligation to take a stand and say that families should not be forcibly separated."" —… https://t.co/rvoM6D604G" +06/25/2018,Politicians,@Schriock1,"Remember the time before the Affordable Care Act, when women were routinely charged more for health care because of… https://t.co/Dch3DuNhmf" +06/25/2018,Politicians,@Schriock1,Here's a hot take for you: Maybe more Democratic women are winning because they're just the best candidates in the… https://t.co/Ti6nKC7nkY +06/24/2018,Politicians,@Schriock1,"Trump attacked @RosenforNevada and @elizabethforma with racist and petty insults yesterday, and Sen. Heller embrace… https://t.co/kvB0BCEfx4" +06/22/2018,Politicians,@Schriock1,"RT @GwenGraham: Florida Democrats, are you ready for this year's Leadership Blue? Join me, EMILY's List President @Schriock1 and more speci…" +06/22/2018,Politicians,@Schriock1,"We're so proud to endorse @liuba4congress today! As a mother to young children, Liuba has a crucial perspective of… https://t.co/UyrF3IXMCM" +06/22/2018,Politicians,@Schriock1,RT @nowthisnews: These 17 congresswomen have zero tolerance for children being ripped from their mothers at the border https://t.co/8JeCjz6… +06/22/2018,Politicians,@Schriock1,The stories that @PramilaJayapal is highlighting from the mothers who have been separated from their children are h… https://t.co/HBUXYcfB8C +06/21/2018,Politicians,@Schriock1,Our work isn't done. We need to keep fighting for these families: https://t.co/1CouCLSM2E #KeepFamiliesTogether https://t.co/fc4zgha5Ax +06/20/2018,Politicians,@Schriock1,"Thank you @JoeBiden! @emilyslist agrees, @Michelle4NM has been a champion for New Mexico families, and we need to e… https://t.co/b0e5tMLhFm" +06/20/2018,Politicians,@Schriock1,.@vgescobar was so powerful on @hardball last night. I'm so grateful for her leadership on behalf of these families… https://t.co/rii1swyEug +06/20/2018,Politicians,@Schriock1,Trump swore up and down that he couldn't do anything. He's proven himself a liar. But this order leaves a lot of ve… https://t.co/hoy2IqkYot +06/20/2018,Politicians,@Schriock1,"It feels like the entire internet has already seen @keldahelenroys' amazing video ""Our Girls,"" but if you haven't s… https://t.co/cmCxpgmzyV" +06/20/2018,Politicians,@Schriock1,"@emilyslist @MikeBloomberg @howiewolf From @JenniferWexton & @LucyWins2018 fighting against gun violence, to… https://t.co/0ttWvGNalw" +06/20/2018,Politicians,@Schriock1,".@emilyslist has partnered with @MikeBloomberg and @howiewolf in the past to win elections, and we know just how sm… https://t.co/AhGiAAFOFt" +06/20/2018,Politicians,@Schriock1,Thank you @PramilaJayapal for making sure these mothers' voices are being heard. https://t.co/3X4Bu5vDXP +06/20/2018,Politicians,@Schriock1,Pennsylvania currently has no women in its Congressional delegation. Today @emilyslist is proud to endorse our FOUR… https://t.co/FUkO0h8hO7 +06/18/2018,Politicians,@Schriock1,It's okay to have questions about running for office! Our #RunToWin Training Center has you covered. How many lesso… https://t.co/nvKno3djWm +06/18/2018,Politicians,@Schriock1,The separation of children from their families is horrifying us all. I'm so grateful for @vgescobar's leadership. W… https://t.co/xOaQ87nLYB +06/15/2018,Politicians,@Schriock1,Trump's behavior during the North Korea summit was sickening. Equally sickening was the complicity of congressional… https://t.co/zjgtIi9zYn +06/15/2018,Politicians,@Schriock1,"So thrilled to see @wildforcongress and @Axne4Congress on the @dccc's Red to Blue list! They've worked hard, and… https://t.co/XU8wM7gBoY" +06/15/2018,Politicians,@Schriock1,I really enjoyed joining The Opposition earlier this year. Good luck on whatever comes next for you and your team!… https://t.co/9ILLbORlRv +06/15/2018,Politicians,@Schriock1,I had so much fun joining you both on the podcast! https://t.co/2wUvRV7YKV +06/15/2018,Politicians,@Schriock1,"Sisters, either you run for office, or you help another woman run for office! Help us make 2018 a historic year — c… https://t.co/Uf7Y1uOW5m" +06/14/2018,Politicians,@Schriock1,We've been laying the groundwork for this moment for 30 years. But we couldn't do anything without the truly except… https://t.co/ADnztc6SOt +06/14/2018,Politicians,@Schriock1,".@emilyslist is proud to be standing beside Gov. @GinaRaimondo. She IS a champion for reproductive health care, and… https://t.co/TXXmntXBPj" +06/13/2018,Politicians,@Schriock1,The Trump administration's attacks on the Affordable Care Act will be devastating to women and families. Women are… https://t.co/G1lw4loYMB +06/13/2018,Politicians,@Schriock1,Want to help @emilyslist elect a historic number of pro-choice Democratic women this cycle? We're looking for a pol… https://t.co/tsA2x0frSi +06/13/2018,Politicians,@Schriock1,"What a great night for our candidates! Congratulations to @ElaineLuriaVA, @SpanbergerVA07, @SusieLeeNV, and… https://t.co/12oVHB7fhi" +06/11/2018,Politicians,@Schriock1,Ridiculous — and insulting. @SpanbergerVA07 has had nothing handed to her. No woman candidate ever does. If anythin… https://t.co/0Bo8kDmmz9 +06/11/2018,Politicians,@Schriock1,"I had such a great time joining @cortneyt and @libbyirwin for a chat with @pantsuitnation today! Ladies, this is ou… https://t.co/CjrpFQZAPt" +06/07/2018,Politicians,@Schriock1,This is such a powerful interview. NEVER underestimate @mazieforhawaii! https://t.co/seb7lZvFPA +06/07/2018,Politicians,@Schriock1,RT @emilyslist: Thank you @ginaortizjones for dropping in to say hello today! We can't wait to help elect you this November! https://t.co/i… +06/06/2018,Politicians,@Schriock1,"RT @Deb4CongressNM: Thank you @emilyslist! +#nm01 #nmpol #ruready #befierce https://t.co/OkNKDncxRO" +06/06/2018,Politicians,@Schriock1,"It's a SWEEP in New Jersey, Iowa, and New Mexico for our congressional and gubernatorial endorsements! Congratulati… https://t.co/CpadtksQ91" +06/05/2018,Politicians,@Schriock1,"New Jersey, Iowa, New Mexico, California, Missouri — get out and vote today! https://t.co/ZspYmtd3WM" +06/04/2018,Politicians,@Schriock1,RT @amandalitman: Dream job alert: @emilyslist is hiring an Email Director. Raise money and connect with supporters to hire pro-choice Demo… +06/01/2018,Politicians,@Schriock1,.@staceyabrams is leading in the #GAGov race! This shows what we've known all along — Stacey is the strongest candi… https://t.co/Nn7D4OGblc +06/01/2018,Politicians,@Schriock1,"Here at @emilyslist, we have been so proud of all the incredible things that @GinaRaimondo has accomplished during… https://t.co/LYmYY8PJux" +06/01/2018,Politicians,@Schriock1,"Yes! We're focused on electing #LGBTQ women like @KateBrownForOR, @tammybaldwin, @kyrstensinema, @ginaortizjones,… https://t.co/9ocxwuAe7M" +05/30/2018,Politicians,@Schriock1,"And then on top of this, Trump's reckless policies are helping drive up gas prices. Together, rising health care pr… https://t.co/sCmxZ4kGFT" +05/29/2018,Politicians,@Schriock1,I'm so proud of @MikieSherrill for earning the @nytimes endorsement! She worked so hard to make this race one of ou… https://t.co/rMLyPCR42G +05/28/2018,Politicians,@Schriock1,"Yes. Today as I honor and remember those who gave their lives, I will also be thinking of veterans like my dad. We… https://t.co/wW5W4UBEue" +05/26/2018,Politicians,@Schriock1,"Congratulations to all of the organizers, activists, and voters in Ireland who helped achieve this incredible victo… https://t.co/ndkARJTRth" +05/25/2018,Politicians,@Schriock1,"Wow, @AbbyWambach, this speech is something else: ""Women are feared as a threat to our system, and we will also be… https://t.co/4WA2gt9PsV" +05/25/2018,Politicians,@Schriock1,Congratulations @Axne4Congress on earning the @DMRegister endorsement! #IA03 https://t.co/JUbPLKqHFh +05/25/2018,Politicians,@Schriock1,Trump and the GOP's sabotage of the Affordable Care Act has caused premium rates to skyrocket. They're treating hea… https://t.co/CkurfX4JuQ +05/25/2018,Politicians,@Schriock1,Thank you @apoliticalco for including me on your Gender Equality Top 100! My team and I are working harder than eve… https://t.co/cQcPBeXXlo +05/23/2018,Politicians,@Schriock1,"Congrats to all of our women who won their primaries tonight! @staceyabrams, @ginaortizjones, and @Lizzie4Congress… https://t.co/59EAYhasQR" +05/22/2018,Politicians,@Schriock1,Congrats @MayorBowser! I'm so happy for you and your new little one. All of us at @emilyslist are wishing you both… https://t.co/ymVeesfsj3 +05/20/2018,Politicians,@Schriock1,I was so happy to join @Giunchigliani in Nevada yesterday! @emilyslist is all-in to help her become Nevada's next g… https://t.co/Un9UK8Bzqh +05/20/2018,Politicians,@Schriock1,RT @Astrid_NV: It was great to join @Schriock1 of @emilyslist to support our wonderful Tia Chris @Giunchigliani in her bid for the First Fe… +05/19/2018,Politicians,@Schriock1,RT @Giunchigliani: Thank you so much to @Schriock1 for joining me for brunch and to @EMILYslist for your support. Nevada deserves a progres… +05/19/2018,Politicians,@Schriock1,Done. Let's show Republicans just how strong this community is. https://t.co/EeAJmHEDW9 +05/18/2018,Politicians,@Schriock1,Our endorsed Democratic women are PROUDLY pro-choice — and they are running for office in record numbers to fight b… https://t.co/egukhQhipd +05/18/2018,Politicians,@Schriock1,.@DonnaShalala is one of the most qualified and experienced women we've endorsed this cycle! We're proud to help he… https://t.co/yptjSLyCZH +05/16/2018,Politicians,@Schriock1,"RT @hardball: ""Those women marched back in their communities, they started organizing, and they started running."" @Schriock1 on Democratic…" +05/16/2018,Politicians,@Schriock1,"RT @hardball: ""We had our staff on the ground immediately, we knew we had an opportunity."" @Schriock1 on Democratic women winning House pri…" +05/16/2018,Politicians,@Schriock1,I'm going to be live from California with @HardballChris shortly to talk about our incredible pro-choice Democratic… https://t.co/upf1erb8TT +05/16/2018,Politicians,@Schriock1,"Our women are storming the old boys' clubs! Well done @mad4pa, @HoulahanForPa, and @wildforcongress — on to Novembe… https://t.co/fDzSOvVxQm" +05/15/2018,Politicians,@Schriock1,"Pennsylvania, let's kick down the door to the old boys' club! Get out and vote for @RachelReddick, @mad4pa,… https://t.co/Rq317M3BUC" +05/11/2018,Politicians,@Schriock1,"Spread the word, Pennsylvania. John Morganelli does not represent #PA07's values. In Tuesday's primary election, vo… https://t.co/LtIsT2NZiM" +05/10/2018,Politicians,@Schriock1,One of the most common questions we get from the women we recruit and train is about how they'll be able to afford… https://t.co/QUlE5Op1YJ +05/10/2018,Politicians,@Schriock1,"Some incredible women are running for office in Pennsylvania, including @wildforcongress and @ChristaForPA189! Now… https://t.co/Nspe1XLiZo" +05/10/2018,Politicians,@Schriock1,Thank you @FullFrontalSamB for uplifting @RachelforOhio and @emilyslist! https://t.co/WcOxjRNeQp +05/09/2018,Politicians,@Schriock1,These victories confirm that we are seeing a sea change this year. The @emilyslist team has been working hard on th… https://t.co/Fiu3vCyER5 +05/09/2018,Politicians,@Schriock1,"RT @ilyseh: Thrilled to be in #PA07 w/my sister @Schriock1 to support @wildforcongress, a champ for women and families running against an a…" +05/09/2018,Politicians,@Schriock1,I joined my friend @ilyseh in Pennsylvania today to support @wildforcongress. Susan is the true pro-choice champion… https://t.co/O4SGGkYuX7 +05/07/2018,Politicians,@Schriock1,Pennsylvania is a state where @emilyslist wants to make a BIG impact up and down the ballot. I'm proud of my team f… https://t.co/OFUtUqACWJ +05/05/2018,Politicians,@Schriock1,"RT @MurrayCampaign: There’s that saying, behind every great man is a great woman. The truth? Behind every strong woman is a whole lot of ot…" +05/04/2018,Politicians,@Schriock1,This is infuriating. My dad is a veteran and a Democrat. And he is proud of his country. This is not the kind of le… https://t.co/ctAy9aMDoW +05/04/2018,Politicians,@Schriock1,".@DianneFeinstein has been a champion for California, passing critical and groundbreaking legislation. We need her… https://t.co/0fAtcRGNHr" +05/04/2018,Politicians,@Schriock1,Arizona and Nevada are our best pickup opportunities this year! @kyrstensinema and @RosenforNevada are two of the s… https://t.co/Q8HdNI47NF +05/04/2018,Politicians,@Schriock1,"An achievement like this doesn't happen overnight. @emilyslist has been working for years to recruit, train, suppor… https://t.co/8fpCYma1bf" +05/03/2018,Politicians,@Schriock1,"Exactly! Florida needs a governor with Gwen's focus, determination, and empathy. https://t.co/1I1JrUPAqV" +05/03/2018,Politicians,@Schriock1,".@KamalaHarris and @elizabethforma are with @katieporteroc, and so is @emilyslist! https://t.co/pPLIF171SL" +05/03/2018,Politicians,@Schriock1,"We're so proud to endorse @senatorkelly today. Kansas deserves a governor who will be a champion for families, and… https://t.co/0Tk61vozPb" +05/02/2018,Politicians,@Schriock1,"The only ""disgraceful"" thing I see here is an administration more interested in engaging in baseless, petty fights… https://t.co/s75KEpM4XM" +05/02/2018,Politicians,@Schriock1,"RT @creynoldsnc: .@Schriock1 on why @emilyslist is so focused on state legislatures: +1) They make big and often bad policy +2) They do redis…" +05/02/2018,Politicians,@Schriock1,"Thank you @KamalaHarris for endorsing @StaceyAbrams! She's the best candidate to be Georgia's next governor, and we… https://t.co/rtdEcMzvX7" +05/02/2018,Politicians,@Schriock1,Congratulations @mad4pa! This is a well-earned endorsement. We can't wait to help you win in #PA04! https://t.co/NEV9CCyrLP +05/01/2018,Politicians,@Schriock1,"Another reason we need new leadership? Thanks to the GOP's sabotage, four million Americans have lost health insura… https://t.co/sWUiFT5MHB" +05/01/2018,Politicians,@Schriock1,We need new leadership in Congress. Lawmakers are being personally enriched by the tax bill they passed while famil… https://t.co/hCxSRqq92n +05/01/2018,Politicians,@Schriock1,"That'll be the day. Thankfully, @jontester will keep fighting for veterans because he knows they deserve the very b… https://t.co/YTpcVkXCyy" +04/30/2018,Politicians,@Schriock1,"Oh COME ON. How could anyone, much less anyone working in the TRUMP administration, say this with a straight face?… https://t.co/jIWgAUlyTD" +04/30/2018,Politicians,@Schriock1,"I love this photo of the three of us! No matter what's next for you, your fellow Charlie's Angels have your back! https://t.co/ySXwTDUxdN" +04/30/2018,Politicians,@Schriock1,"Today may be @CecileRichards' last day at Planned Parenthood, but her legacy of activism will be felt for years!… https://t.co/IkxwafimF6" +04/29/2018,Politicians,@Schriock1,RT @votevets: Our @will_c_fischer spoke with Montana @SenatorTester about the fight to protect our #VA from being destroyed and privatized.… +04/29/2018,Politicians,@Schriock1,.@jontester is a good man and a good senator who is upholding his constitutional duty to thoroughly vet the next le… https://t.co/BUShMdp7Zf +04/29/2018,Politicians,@Schriock1,"Just incredible. Trump's VA nominee withdrew after multiple disturbing allegations, and now Trump's throwing a tant… https://t.co/bOcMe9Hkbr" +04/28/2018,Politicians,@Schriock1,"Thank you, @RuthMarcus, for highlighting heroes like @tammyduckworth this week. Times continue to change, and still… https://t.co/oBws72s1rd" +04/27/2018,Politicians,@Schriock1,Thank you @JeanneShaheen. We need to elect a wave of pro-choice Democratic women to protect our health care from Tr… https://t.co/qjojevDOHU +04/26/2018,Politicians,@Schriock1,More than ONE HUNDRED AND THIRTY Democratic women have filed to run for state legislative seats in Michigan. I'm so… https://t.co/I2C3SI3kPW +04/26/2018,Politicians,@Schriock1,"RT @JasonKander: Great to share a stage with @SymoneDSanders, @Schriock1 & Cleo Wade at @92Y's event last week. Heard that Cleo has been po…" +04/26/2018,Politicians,@Schriock1,"Now THAT's impressive! It may take some serious courage to climb like that, but it takes even more to put your name… https://t.co/YssdpsvKWG" +04/26/2018,Politicians,@Schriock1,Thank you @BetsyforIL and @vgescobar for inspiring the @emilyslist team today! https://t.co/BJyvoCSH3s +04/26/2018,Politicians,@Schriock1,We're so proud to endorse these excellent women today! https://t.co/SrRHLDUE0U +04/26/2018,Politicians,@Schriock1,We have a really exciting opportunity to flip #GA07 this cycle! @Carolyn4GA7 is a passionate defender of health car… https://t.co/1wHtbQrVYz +04/26/2018,Politicians,@Schriock1,"This is a race we're very excited about. We can flip #GA06, and @LucyWins2018 is absolutely the best candidate to d… https://t.co/QI35syStu0" +04/25/2018,Politicians,@Schriock1,Thank you @jontester for your steadfast leadership on behalf of our veterans and your work every day to improve the… https://t.co/XFW9PaJK83 +04/25/2018,Politicians,@Schriock1,"Absolutely disgusting that Blankenship is playing on Trump's crude ""Lock her up!"" chant in his campaign ads. He's t… https://t.co/63ZZP4uEbT" +04/25/2018,Politicians,@Schriock1,"I'm so proud of what @hiral4congress accomplished last night. Democrats overall are making gains, and we know a wav… https://t.co/Zv7O4RTCV4" +04/25/2018,Politicians,@Schriock1,"Congratulations, @Shelley4Senate! https://t.co/JSLfx9oF6N" +04/24/2018,Politicians,@Schriock1,"RT @CNBC: With Trump in the White House, stakes are higher than ever for @EMILYsList and Democratic women. “We just have to win,” Stephanie…" +04/24/2018,Politicians,@Schriock1,"RT @emilyslist: There are state legislatures around the country that are ready to flip from red to blue. And we're working with 1,200 women…" +04/23/2018,Politicians,@Schriock1,"Thanks for sharing, @chelseahandler. I know she will! We were so proud to award her the @GabbyGiffords Rising Star… https://t.co/sfIVUJY8z0" +04/23/2018,Politicians,@Schriock1,Farmworkers and domestic workers MUST have legal protections against workplace sexual violence. It's what EVERY wor… https://t.co/LB4SXOhn8T +04/23/2018,Politicians,@Schriock1,RT @BBCNewsnight: “I honestly sometimes feel we’ve been practising for three decades for this moment” – President of EMILY's List Stephanie… +04/23/2018,Politicians,@Schriock1,Looking forward to joining @BBCNewsnight to talk about this historic election cycle and our incredible pro-choice D… https://t.co/Z5lROLKIOa +04/21/2018,Politicians,@Schriock1,"Had so much fun with @JasonKander, @SymoneDSanders and @withlovecleo at @92Y tonight! Gotta say, having my face on… https://t.co/x0xKrBjuov" +04/20/2018,Politicians,@Schriock1,Democrats in Colorado are running in every. Single. Seat. https://t.co/CooyjwiArM +04/20/2018,Politicians,@Schriock1,.@mad4pa can hold a critical blue seat in #PA04. Thrilled to endorse her today! https://t.co/0A5wVMgzFG +04/20/2018,Politicians,@Schriock1,.@LeslieCockburn can flip a crucial red seat blue in #VA05! We all need to do everything we can to help her win thi… https://t.co/0VS83QUtbT +04/20/2018,Politicians,@Schriock1,.@nancysoderberg is such an incredible candidate who can flip a red seat blue in Florida! It was so wonderful getti… https://t.co/5pokx3khR9 +04/20/2018,Politicians,@Schriock1,Congratulations Pamela Goodman (@lwvfvoter) on being named the new executive director of @RuthsListFL! +04/20/2018,Politicians,@Schriock1,This is our bench of candidates. These are the leaders who will introduce legislation and set policy agendas. This… https://t.co/PMssFBRscu +04/20/2018,Politicians,@Schriock1,"36,000 women have reached out to tell us they want to run for office. Imagine how much higher that number could be next cycle!" +04/20/2018,Politicians,@Schriock1,"But I've said it before and I'll say it again, this isn't a wave — this is a sea change. Did you notice our previou… https://t.co/uYdmhJ5K61" +04/20/2018,Politicians,@Schriock1,You can't talk about a blue wave in 2018 without talking about the wave of women who are going to win back seats up… https://t.co/6jTrW3RcGg +04/20/2018,Politicians,@Schriock1,"And that's just at the federal and gubernatorial level. On the state and local level, the good news continues! EMIL… https://t.co/N4UtLoG2tz" +04/20/2018,Politicians,@Schriock1,"Of these 70 women, 34 can flip red House seats and two can flip red Senate seats. That's enough pro-choice Democrat… https://t.co/ob2y6pt4yw" +04/20/2018,Politicians,@Schriock1,"This is incredible — and we've got even more great endorsements on the way! + +Let's put these numbers in context. B… https://t.co/ON4XLQc8y3" +04/19/2018,Politicians,@Schriock1,"After 7 years, @ScandalABC is ending tonight. Congrats to @shondarhimes, @kerrywashington, and @JoshMalina for an incredible run!" +04/19/2018,Politicians,@Schriock1,".@tammyduckworth, you and Maile Pearl look amazing. Congratulations again, and thank you for making history! https://t.co/1wKRvvEO53" +04/19/2018,Politicians,@Schriock1,This is why we need more women and more Democrats in office. Period. https://t.co/97e8lmh6z2 +04/19/2018,Politicians,@Schriock1,RT @TinaSmithMN: An absolute joy to be with @emilyslist and @Schriock1 tonight. Their work helping elect pro-choice women is more important… +04/19/2018,Politicians,@Schriock1,".@MurrayCampaign has been a fearless champion for women and families in the Senate. Tonight, I was so proud to pres… https://t.co/qyoZ7imre4" +04/19/2018,Politicians,@Schriock1,I'm so proud to welcome @GabbyGiffords and @HelenGym2015 to the #WeAreEMILY gala to help us present the 2018 Gabrie… https://t.co/A8QLbkUvxs +04/18/2018,Politicians,@Schriock1,"Thank you @anidifranco for that incredible performance, and for all your work to help us #ElectWomen in 2018! #WeAreEMILY" +04/18/2018,Politicians,@Schriock1,RT @MurrayCampaign: Can't wait! https://t.co/iJXA792ui3 +04/18/2018,Politicians,@Schriock1,"It's been a great day at the #WeAreEMILY conference! Tonight, we'll hear from incredible pro-choice Democratic wome… https://t.co/a1rbwaYW6Z" +04/18/2018,Politicians,@Schriock1,"Good afternoon! #WeAreEMILY is in full-swing now! Coming up this afternoon: Our ""Not Just Another Year of the Woman… https://t.co/sKkDmEvuNU" +04/18/2018,Politicians,@Schriock1,What an exceptional panel! Every single one of these women is going to go on to do incredible things. #ElectWomen… https://t.co/BKfRgHyzD6 +04/16/2018,Politicians,@Schriock1,These women are a testament to the strength of our movement. Women are fired up & ready to take back our country fr… https://t.co/Ygxp3LVwDU +04/13/2018,Politicians,@Schriock1,"RT @jmpalmieri: Thanks, Schriock! Sure are a lot of women candidates we got out there to advise and admire! #EmilysList https://t.co/CYBpc3…" +04/13/2018,Politicians,@Schriock1,"Big congrats to @jmpalmieri and @CecileRichards. Their books ""Dear Madam President"" and ""Make Trouble"" are leading… https://t.co/bma9aWXt1M" +04/13/2018,Politicians,@Schriock1,".@NHMollyKelly knows the challenges working families face because she’s experienced them herself. Meanwhile, Gov. C… https://t.co/kKyISC0kWJ" +04/12/2018,Politicians,@Schriock1,RT @jess_mc: New Yorkers! On 4/20 activists @SymoneDSanders & @JasonKander will be @92Y for a lively discussion on the change we want to se… +04/11/2018,Politicians,@Schriock1,Thank you @RonBieberMI and @MIAFLCIO! @GretchenWhitmer is a champion for working families in MI! https://t.co/4jBuW6w9rY +04/11/2018,Politicians,@Schriock1,"Thank you @JerryBrownGov for endorsing @DianneFeinstein! You're exactly right, Sen. Feinstein is the person we need… https://t.co/XBZ0BSe9iZ" +04/11/2018,Politicians,@Schriock1,.@KamalaHarris's questions during this panel were pointed and persistent. She's an advocate for her constituents an… https://t.co/6cZ39ac2Yo +04/11/2018,Politicians,@Schriock1,RT @TaranaBurke: New Yorkers HEADS UP! On 4/20 activists @SymoneDSanders & @JasonKander will be @92Y for a lively discussion on the change… +04/11/2018,Politicians,@Schriock1,"RT @katieporteroc: Grateful for the shout-out from @emilyslist president @Schriock1 on @thenation's ""Start Making Sense"" podcast hosted by…" +04/11/2018,Politicians,@Schriock1,Good riddance. Paul Ryan loved nothing more than pushing viciously anti-woman budgets. Under his leadership - if we… https://t.co/mdEkWN6I51 +04/10/2018,Politicians,@Schriock1,"Happy birthday @DoloresHuerta! Thank you so much for your activism, your dedication, and your persistence! https://t.co/Q9j4Pck3lt" +04/10/2018,Politicians,@Schriock1,This is excellent news. The recall petitions were an underhanded attempt to undermine voters and remove two of our… https://t.co/QVucddURcd +04/10/2018,Politicians,@Schriock1,"RT @emilyslist: Hi @emilyslist community! My name is @MikieSherrill, and I’m running for Congress in #NJ11. I’ll be taking over the EMILY’s…" +04/09/2018,Politicians,@Schriock1,"This is excellent news! The @emilyslist team has been hard at work recruiting women to run. Some, like… https://t.co/edys4zk2ip" +04/09/2018,Politicians,@Schriock1,Congratulations @tammyduckworth! And a very happy birthday to baby Maile Pearl! ❤️ https://t.co/idiTbZhgtQ +04/09/2018,Politicians,@Schriock1,Thanks @davidaxelrod! I had a great time talking with you for the #AxeFiles. A wave of women IS coming! https://t.co/vCjmX1eJu9 +04/09/2018,Politicians,@Schriock1,"This is a great piece on @rweingarten's leadership during the teachers' strikes. As Randi says, ""the time for passi… https://t.co/5J0PBYVmVS" +04/06/2018,Politicians,@Schriock1,"Thank you for your leadership, @NancyPelosi. It's time for Pruitt to go. https://t.co/C23U8Ar89G" +04/06/2018,Politicians,@Schriock1,So proud to endorse @Axne4Congress today! We've got a great opportunity to flip a red seat blue in #IA03. https://t.co/rsy6dcxBgx +04/05/2018,Politicians,@Schriock1,Congratulations @denisejuneau! Seattle's students are very lucky to have you! https://t.co/6jZA7t05oB +04/05/2018,Politicians,@Schriock1,Well done! Congrats! https://t.co/0Fk2UCkuYf +04/05/2018,Politicians,@Schriock1,I had such a great time at last night's reception hosted by the wonderful @genevievethiers! https://t.co/ZbFdJSkUts +04/05/2018,Politicians,@Schriock1,"Thanks @JonWiener1 for talking with me on @thenation podcast! Our women have a real chance of flipping the House, b… https://t.co/H3JqbBZIOF" +04/05/2018,Politicians,@Schriock1,"We're driven by care for our friends & family who need access to health care & repro health care. +We're driven by c… https://t.co/8VzfOnc8MA" +04/04/2018,Politicians,@Schriock1,"RT @hiral4congress: Thanks, Stephanie! Here in #AZ08, we appreciate your energy & enthusiasm! https://t.co/n2FDWPkLBp" +04/04/2018,Politicians,@Schriock1,Great news out of Wisconsin last night! This incredible energy isn't going away. Let's keep it going so we can get… https://t.co/UNHuNcnLbI +04/04/2018,Politicians,@Schriock1,You all helped Conor Lamb flip a tough seat from red to blue. Now we need to help @hiral4congress win her special e… https://t.co/1CBqWgtkz1 +04/04/2018,Politicians,@Schriock1,"Congratulations, @sydneykamlager! We're so proud of you! https://t.co/gslEY6z3O3" +04/04/2018,Politicians,@Schriock1,Congrats @RealLyndaCarter! You so deserve it. https://t.co/jcFd9FsXhP +04/03/2018,Politicians,@Schriock1,"This is wonderful! Just like we need more women running for office, we need more women working on and leading their… https://t.co/q5UnM2L6Rc" +04/02/2018,Politicians,@Schriock1,I love this excerpt from @CecileRichards's new book. Pro-choice Democratic women in Congress were KEY to passing a… https://t.co/ibtDFiasx7 +04/02/2018,Politicians,@Schriock1,"The teachers in Oklahoma, Kentucky, and Arizona who are organizing for their classrooms are incredible. And I'm pro… https://t.co/KJehVrZQr4" +04/02/2018,Politicians,@Schriock1,"Arla Harrell reminds me of my grandfathers, who both fought in WWII. @McCaskill4MO is the daughter of a veteran, an… https://t.co/bQKaPJYv8A" +03/30/2018,Politicians,@Schriock1,Another state is seeing an increase in the number of women stepping up to run for office! I'm so proud of these new… https://t.co/biKvzVVXxY +03/30/2018,Politicians,@Schriock1,"I'll be the first to say that women usually face more challenges when running for office. But this year, voters WAN… https://t.co/BjkVvhe5dD" +03/29/2018,Politicians,@Schriock1,"Happy birthday to my friend, the extraordinary and dedicated @emilyslist's executive director, @emilyanncain! https://t.co/o6zHLQHfgs" +03/29/2018,Politicians,@Schriock1,It was so wonderful to welcome @nicoleboxer to the @emilyslist office to talk about all of the women we can elect i… https://t.co/W9WqPyY54n +03/28/2018,Politicians,@Schriock1,"RT @SEIU: “At the end of the day, the people who suffer most when unions are under attack are the same people whose rights are being threat…" +03/28/2018,Politicians,@Schriock1,Happy belated birthday @NancyPelosi! https://t.co/PXDR3kEd6M +03/28/2018,Politicians,@Schriock1,"What an excellent profile of @MurrayCampaign! Sen. Murray is tenacious, persistent, & always finds a way to build b… https://t.co/zrpZx0SDS3" +03/22/2018,Politicians,@Schriock1,Snowed in to NYC but luckily we get to see Come From Away. The women in this show are amazing! https://t.co/kegERtjOwq +03/21/2018,Politicians,@Schriock1,"RT @AM2DM: EMILY's List president @Schriock1, She Should Run founder @erinlooscutraro, and Congressional candidate @ginaortizjones join #AM…" +07/02/2018,Politicians,@ninaturner,"RT @ny_indivisible: @BenJealous @ninaturner Love this line @BenJealous ""We have to run towards the people!""" +07/02/2018,Politicians,@ninaturner,"RT @RealTimBlack: Nina Turner focuses on the issues, responds to a smear article, talks about a Bernie 2020 run AND drops her own podcast.…" +07/02/2018,Politicians,@ninaturner,@RealTimBlack @cthagod @angelayee Thanks Tim and much ❤️ to @breakfastclubam +07/02/2018,Politicians,@ninaturner,RT @janeosanders: Interesting framework of debate in NJ. Gov. Murphy: 2% corp. surcharge for 4 yrs; 10.75% income-tax rate on > $1.75 milli… +07/02/2018,Politicians,@ninaturner,"RT @TheSandersInst: For thirty years, scientists have warned us that we were changing the climate, and now those predictions are coming tru…" +07/02/2018,Politicians,@ninaturner,"RT @BenJealous: Democrats will win if we remain focused on solutions to problems like rising healthcare premiums, lagging wages and improvi…" +07/02/2018,Politicians,@ninaturner,Good grief 😳! https://t.co/BWc8PtvMkk +07/02/2018,Politicians,@ninaturner,"RT @RightsNH: ""Baby, if we can go to the moon, we can have Medicare for All"" -@ninaturner of @OurRevolution in Plymouth NH! #nhpolitics #Me…" +07/02/2018,Politicians,@ninaturner,RT @frostnhstaterep: The indomitable @ninaturner speaks about the need for ALL voices in the practice of democracy. @RightsNH @marchandste… +07/02/2018,Politicians,@ninaturner,@frostnhstaterep @RightsNH @marchandsteve @NHMollyKelly It was my pleasure being in VT and NH. Power to the people! +07/02/2018,Politicians,@ninaturner,RT @nytimes: A record number of women won Nevada’s primaries in June. And there is now a possibility for the Legislature to have more women… +07/02/2018,Politicians,@ninaturner,"RT @RevJJackson: https://t.co/LgBOr5vgkA: Right-Wing, Business-Funded Groups Preparing 2 Use Janus Decision 2 Bleed Unions, Internal Docume…" +07/02/2018,Politicians,@ninaturner,"RT @VFNHP: “If the hospital won't bring us closer to a competitive wage, then the crucial issue of safe staffing will never be addressed,”…" +07/02/2018,Politicians,@ninaturner,"RT @SN_Ohio: Will never, ever, forget these 4 years. https://t.co/kFX5cpgMsH" +07/02/2018,Politicians,@ninaturner,"RT @JamilSmith: I just told my dad that LeBron James is signing with the @Lakers. He summed it up: “Hey, he gave me a championship I’d been…" +07/02/2018,Politicians,@ninaturner,Say that Angela Davis! #MondayMotivation https://t.co/vwpvs7LYQq +07/02/2018,Politicians,@ninaturner,https://t.co/lOvd2aPkiZ +07/02/2018,Politicians,@ninaturner,@FactProgressive 😊 +07/02/2018,Politicians,@ninaturner,@JenniferJMcG 🤗 +07/02/2018,Politicians,@ninaturner,My pleasure! I always enjoy coming face to face with the future @zeldalaflame https://t.co/YJ3iVolrc6 +07/02/2018,Politicians,@ninaturner,RT @RealTimBlack: You’re still blaming @SusanSarandon? Susan didn’t swing an election. What your basically saying is Susan’s more influenti… +07/02/2018,Politicians,@ninaturner,"@RealTimBlack @SusanSarandon I can’t believe these folks, but then again....😒😳🤦🏾‍♀️. Keep standing strong!" +07/02/2018,Politicians,@ninaturner,@BonoWoodworth @PaulDeCristofo4 @Ocasio2018 Awesomeness!! +07/02/2018,Politicians,@ninaturner,"RT @NomikiKonst: PROGRESSIVE WOMEN are taking over New York State. Here are some of my faves that I recommend giving to, volunteering for a…" +07/02/2018,Politicians,@ninaturner,"RT @davidsirota: In a functioning democracy, it wouldn’t be a shock that @Ocasio2018 defeated Crowley. It would instead be shocking that a…" +07/02/2018,Politicians,@ninaturner,RT @feedjess: Fantastic explanation of the reasons @Ocasio2018 won by @NomikiKonst on Friday’s @majorityfm episode. Hint: it’s not because… +07/02/2018,Politicians,@ninaturner,"RT @LukewSavage: The ""moderate"", ""pragmatic"" wing of the Democratic Party that oversaw the last presidential election lost Ohio, Indiana, W…" +07/02/2018,Politicians,@ninaturner,@LukewSavage @NomikiKonst HELLO! +07/02/2018,Politicians,@ninaturner,@BonoWoodworth @PaulDeCristofo4 @Ocasio2018 Blessed and you? +07/02/2018,Politicians,@ninaturner,@PaulDeCristofo4 @Ocasio2018 Hello Paul! +07/01/2018,Politicians,@ninaturner,"RT @Ocasio2018: With respect to the Senator, strong, clear advocacy for working class Americans isn’t just for the Bronx. + +Sen. Sanders won…" +07/01/2018,Politicians,@ninaturner,@Ocasio2018 HELLO! +07/01/2018,Politicians,@ninaturner,🤔5 facts behind America's high incarceration rate - CNN https://t.co/bBUm3sT5Cv +07/01/2018,Politicians,@ninaturner,"RT @OurRevolution: On the last day of #PrideMonth we honor Sylvia Rivera. Present at the Stonewall Riots, she was a legendary activist and…" +07/01/2018,Politicians,@ninaturner,"RT @OurRevolution: #Janus was brought about in an attempt to dismantle the real, concrete power that working people have when they organize…" +07/01/2018,Politicians,@ninaturner,"RT @davidsirota: 26 percent of Colorado's Democratic primary vote was from independents: https://t.co/8MEyAwYnXJ + +That Dem primary elector…" +07/01/2018,Politicians,@ninaturner,RT @ProjectBernie16: Our Future Is @BenJealous As Maryland's Next Governor. https://t.co/eWOytNCsGN +07/01/2018,Politicians,@ninaturner,There. It. Is! @JamesHaslamVT https://t.co/NjpZWfKf0Z +07/01/2018,Politicians,@ninaturner,"RT @JamesHaslamVT: ”..They want the ocean without the awful roar of its many waters.The struggle may be a moral one, or it may be a physica…" +07/01/2018,Politicians,@ninaturner,RT @JamesHaslamVT: On RAD People Power Tour @ninaturner explained how the US has had 3 revolutions already in 18th Century (Revolutionary W… +07/01/2018,Politicians,@ninaturner,@JamesHaslamVT @RightsVT @RightsNH @OurRevolution @NESRIorg Indeed!!! +07/01/2018,Politicians,@ninaturner,"😂, yes they do. I was in that barn! Big ups to @RightsVT @RightsNH and @OurRevolution for the 8-stop #PeoplePower T… https://t.co/PDNrkzohx2" +07/01/2018,Politicians,@ninaturner,RT @RightsNH: “I consider myself a hell-raising humanitarian.” Sen. @ninaturner of @OurRevolution #nhpolitics https://t.co/lhFdw7Im1Q +07/01/2018,Politicians,@ninaturner,RT @RevJJackson: https://t.co/LgBOr5vgkA: President Trump calls the press the 'enemy of the people'. Do you agree? #PresidentTrump #media #… +06/30/2018,Politicians,@ninaturner,"RT @YWCAUSA: ""Why is there such fascination with & fetishization of black women’s strength, but such failure to support us when we experien…" +06/30/2018,Politicians,@ninaturner,"RT @TamikaDMallory: Family, I’m back at @essencefest this year! Register at https://t.co/pTYKGDLC07 +#EssenceFest https://t.co/2fgk8YKUJd" +06/30/2018,Politicians,@ninaturner,@TamikaDMallory @essencefest Work it! +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Regardless of your zip code — whether you live in a city of 800,000 or a town of 8,000 — in the richest country on the f…" +06/30/2018,Politicians,@ninaturner,RT @OurRevolution: On what planet is it remotely acceptable to have 3-year-old children in courts of law to plead their cases for why they… +06/30/2018,Politicians,@ninaturner,"RT @j0nny5: I feel like this is the thing that too many Americans do not understand. You need to work for a better tomorrow, even if you do…" +06/30/2018,Politicians,@ninaturner,@scapelliti @PortiaABoulger @TaraLSamples @_SemaHernandez_ @jjz1600 @GeoffMiami @OurRevolution @BernieNina2020… https://t.co/xakckzdpUo +06/30/2018,Politicians,@ninaturner,RT @SenSanders: Thank you to the thousands of people turning out today to protest Trump's cruel policy of separating families. The United S… +06/30/2018,Politicians,@ninaturner,RT @RightsNH: If you enjoyed our Congressional forum - you’ll like our gubernatorial forum starting soon in Plymouth with Sen @ninaturner o… +06/30/2018,Politicians,@ninaturner,"RT @RightsNH: ""Nobody aspires to be poor... It is about a flat-out rigged system that leaves the working class behind."" -@ninaturner of @Ou…" +06/30/2018,Politicians,@ninaturner,"RT @RightsNH: It's our turn with @ninaturner today New Hampshire! Keene, Manchester, then Plymouth. Details: https://t.co/jRo0gEEEgk #nhpol…" +06/30/2018,Politicians,@ninaturner,RT @scapelliti: What political consultant Lloyd Green means is that 𝗘𝘀𝘁𝗮𝗯𝗹𝗶𝘀𝗵𝗺𝗲𝗻𝘁 Democrats can kiss swing voters goodbye. So can Republica… +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Tomorrow night, in Burlington, Vermont, join Our Revolution President @ninaturner and @RightsVT for ‘From Protest to Pow…" +06/30/2018,Politicians,@ninaturner,RT @RightsVT: “We must be willing to plant trees whose shade we will never enjoy.” Sen. @ninaturner of @OurRevolution in #Rutland #VT #vtpo… +06/30/2018,Politicians,@ninaturner,"RT @iteptweets: Instead of further counteracting income inequality, the Tax Cuts and Jobs Act will make it much worse: https://t.co/MYSyOB3…" +06/30/2018,Politicians,@ninaturner,"RT @SenWarren: Tomorrow, thousands of Puerto Rican evacuees will lose federal housing assistance & many will be left homeless. @FEMA refuse…" +06/30/2018,Politicians,@ninaturner,"RT @commondreams: Five Justices Cannot Break the Solidarity of America’s Unions +https://t.co/FQ5eZMIBet +@AFSCME prez says union unbowed by…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Our Revolution is proud to endorse +➡️ @PramilaJayapal +➡️ @standwithraul +➡️ @TulsiGabbard +for re-election. Pramila, Ra…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: In New York, for State Senate, we’re proud to endorse +➡️ @jessicaramos +➡️ @jasirobinson34 +➡️ @SRachelMay +➡️ @zellnor4n…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: “We must plan, we must organize, we must strategize, we must come together."" +Our Revolution President @ninaturner is LIV…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: #PrideMonth is almost over, but you can still get your Our Revolution Pride gear in our shop! https://t.co/wUJWW15nWS ht…" +06/30/2018,Politicians,@ninaturner,"RT @KiahMorrisVT: So I end my own erasure through writing my truths to create a permanent record. And I will speak my truths wherever, and…" +06/30/2018,Politicians,@ninaturner,RT @RightsNH: “There’s no greater force on this Earth than collective people power.” Sen. @ninaturner of @OurRevolution closing out our Kee… +06/30/2018,Politicians,@ninaturner,RT @RightsVT: If you missed Sen. @ninaturner of @OurRevolution yesterday - she’s barnstorming our neighbors in NH today on her way back to… +06/30/2018,Politicians,@ninaturner,@kroton13 🤗 +06/30/2018,Politicians,@ninaturner,"RT @PortiaABoulger: This right here, family. This is what it is about. .@ninaturner knows that we are in this for the long haul - yes, for…" +06/30/2018,Politicians,@ninaturner,RT @janeedoc: @robdelaney @dsam4a @DemSocialists @OurRevolution @keithellison @SenSanders @crulge @justicedems @WaywardWinifred @ninaturner… +06/30/2018,Politicians,@ninaturner,RT @EmilyForCO: Thank you to @OurRevolution & @OurRevDenver for your support during the campaign. It's an honor to be named here along with… +06/30/2018,Politicians,@ninaturner,RT @BenJealous: I was proud to be arrested outside of Trump’s White House standing up for our DREAMers and helping to steer passage of the… +06/30/2018,Politicians,@ninaturner,RT @BernieSanders: The people of Maryland understand that we can most effectively oppose Donald Trump's extremism with strong progressive l… +06/30/2018,Politicians,@ninaturner,"RT @christineforvt: What a great series of events today with @ninaturner, @momdogz, @RightsVT, & @OurRevolution in Bristol, Rutland, and Be…" +06/30/2018,Politicians,@ninaturner,RT @RobinScheu: We should be doing this in Vermont - and could have but for @GovPhilScott’s vetos. MA Gov. Charlie Baker signed a bill Thur… +06/30/2018,Politicians,@ninaturner,@PauloFaustini @BernieSanders @TYTNetwork Sending that love right back! +06/30/2018,Politicians,@ninaturner,RT @PortiaABoulger: .@ninaturner! So incredible! Always lifting us up. Always giving us the hope and strength to believe in ourselves - to… +06/30/2018,Politicians,@ninaturner,@PortiaABoulger @TaraLSamples @_SemaHernandez_ @jjz1600 @GeoffMiami @OurRevolution @BernieNina2020 @appalachians_r… https://t.co/ROeSHD8ICB +06/29/2018,Politicians,@ninaturner,"RT @RightsVT: ""All that we love is on the line - we must keep going, we must never stop. We can turn this thing around."" - Sen. @ninaturner…" +06/29/2018,Politicians,@ninaturner,RT @PortiaABoulger: @ninaturner @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600 @JimHight… +06/29/2018,Politicians,@ninaturner,@PortiaABoulger @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600… https://t.co/NsIKwNRMD3 +06/29/2018,Politicians,@ninaturner,"@OurRevolution in Bristol, VT with Michael Castelli who is a new volunteer for our texting team. 👏👏 +@RightsVT https://t.co/q48eUQ9DT6" +06/29/2018,Politicians,@ninaturner,RT @RightsVT: We’re live in Bristol with @MariInTheHouse & Sen. @ninaturner - watch on FB-> https://t.co/vnp6byhBKX #vt #btv #vtpoli +06/29/2018,Politicians,@ninaturner,RT @dsam4a: The UK's National Health Service spared @robdelaney's family from financial stress while they endured the grief of losing their… +06/29/2018,Politicians,@ninaturner,RT @PortiaABoulger: .@ninaturner knows we cannot have justice without love. Our movement is grounded in humanity - in the Golden Rule - in… +06/29/2018,Politicians,@ninaturner,@PortiaABoulger @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600… https://t.co/UFGZORpN8a +06/29/2018,Politicians,@ninaturner,"RT @TheRealNews: Decisions in favor of gay marriage, abortion, affirmative action, limits on the death penalty and rectifying housing discr…" +06/29/2018,Politicians,@ninaturner,"RT @joshfoxfilm: Over 10,000 migrant children are now in US government custody at 100 shelters in 14 states https://t.co/wzFpS3joqf" +06/29/2018,Politicians,@ninaturner,RT @TheSandersInst: https://t.co/Gpllpbb2O7 +06/29/2018,Politicians,@ninaturner,RT @RightsVT: Lunch & conversation with Sen. @ninaturner of @OurRevolution in the RAD #BTV office as we fuel up for the start of our bi-sta… +06/29/2018,Politicians,@ninaturner,@DonnaMgraduates @RightsVT @OurRevolution @RightsNH Looking forward to it!!! +06/29/2018,Politicians,@ninaturner,"At the office of @RightsVT. If walls could talk they would say, “#People&PlanetOverProfit and #WaterIsLife… https://t.co/kuMaQPyxgH" +06/29/2018,Politicians,@ninaturner,RT @RightsNH: How can we bring NH forward in this time of national distress? @ninaturner of @OurRevolution & @AndruVolinsky will discuss to… +06/29/2018,Politicians,@ninaturner,RT @quotebard: 👍#FridayFeeling #BoldMoves @RyanEliason @Ocasio2018 @ninaturner @CynthiaNixon @ZephyrTeachout https://t.co/ZAa60yMsIc +06/29/2018,Politicians,@ninaturner,"On Episode 5 of “We the People”, we talk Transformation with Sen. @BernieSanders. Listen in https://t.co/AGkSSNg2ki… https://t.co/sr2vf62Cum" +06/29/2018,Politicians,@ninaturner,@SusanSarandon You are a class act!❤️ +06/29/2018,Politicians,@ninaturner,"RT @Ocasio2018: We pulled off an enormous upset, against all established power and big money, because of a few groups and people that had t…" +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: Congratulations to @OurRevolutionTX for successfully overseeing the adoption of health care for all, criminal justice re…" +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @BenJealous on your primary victory tonight! https://t.co/n8552k1TOV +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @gacevero on your primary win tonight! https://t.co/RkRV3ccu2N +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @EmilyForCO on your primary victory last night! https://t.co/ficlOnR6Zx +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: The billionaire effort to derail public sector unions with the #Janus case will likely hit Black women hardest, who make…" +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: Keene, New Hampshire! +This Saturday, join Our Revolution President @ninaturner and @RightsNH for a discussion on how to…" +06/29/2018,Politicians,@ninaturner,@clintwj1s Welcome to America. +06/29/2018,Politicians,@ninaturner,"RT @SorenCSorensen: .@ninaturner's tweet included a graphic that displayed the Mother Jones quote, ""Some day the workers will take possessi…" +06/29/2018,Politicians,@ninaturner,"The day #MotherJones spoke of is today & everyday. We are on the move bringing justice where there is injustice, br… https://t.co/nPNMuJhlZ6" +06/29/2018,Politicians,@ninaturner,https://t.co/Ev4PhjVi2S +06/29/2018,Politicians,@ninaturner,https://t.co/nkdNm6KVir +06/29/2018,Politicians,@ninaturner,"Five dead in Capital Gazette shooting; suspect Jarrod Ramos is in custody, police say - The Washington Post https://t.co/b8CJfGmcK5" +06/29/2018,Politicians,@ninaturner,RT @cenkuygur: Alexandria Ocasio-Cortez Says She Might Use @seanhannity Segment As Ad for Herself https://t.co/83V2uBzXyE via @YouTube @Oca… +06/29/2018,Politicians,@ninaturner,RT @JamiaStarheart: @bbdevices @JYoungDjango @CBSNews https://t.co/cTqziwLj8l +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: .@BenJealous assembled a movement comprised of working families that focused on bold solutions to help the working peopl… +06/29/2018,Politicians,@ninaturner,"RT @People4Bernie: .@SenSanders responds to Nancy Pelosi's comments: + +Both @Ocasio2018 and @BenJealous were ""candidates running grassroots…" +06/29/2018,Politicians,@ninaturner,RT @OurRevEssexNJ: Stand with unions! Yesterday’s SCOTUS decision was a major set back for working class people and #union rights. Keep fig… +06/29/2018,Politicians,@ninaturner,RT @dsam4a: How many of y’all like single payer healthcare? 🤗 https://t.co/ImxWIsXbO2 +06/29/2018,Politicians,@ninaturner,"RT @BenJealous: “Thank you Maryland. I am proud to stand before you as your Democratic nominee for governor.” + +Two nights ago, this movemen…" +06/29/2018,Politicians,@ninaturner,"RT @justicedems: LOL @ "" as a negative"". https://t.co/0jlfZjN2ev" +06/29/2018,Politicians,@ninaturner,"RT @CynthiaNixon: In case you're wondering about my position on marijuana, here it is. #TBT https://t.co/eYqUuG3Ona" +06/29/2018,Politicians,@ninaturner,RT @proviewsusa: #Bernie2020 Bernie is the leader of a FREE AMERICA! https://t.co/FzjODzxeL4 +06/29/2018,Politicians,@ninaturner,RT @joegarofoli: An African-American woman has NEVER served in a House leadership position in EITHER party. Rep. Barbara Lee wants to chang… +06/29/2018,Politicians,@ninaturner,RT @ShavedWookieeRN: Be the change: while our elected officials ignore the hurt many are facing to fight over who should have say in how be… +06/29/2018,Politicians,@ninaturner,@ShavedWookieeRN @Ocasio2018 @CynthiaNixon @ZephyrTeachout @BenJealous @OurRevolution Agreed! +06/28/2018,Politicians,@ninaturner,@SDeniseT Indeed +06/28/2018,Politicians,@ninaturner,@WaywardWinifred @lsarsour @RoseAnnDeMoro And we ❤️ you Winnie! +06/28/2018,Politicians,@ninaturner,@octaves5 @CNN I hear ya!!! +06/28/2018,Politicians,@ninaturner,@Clarknt67 @CNN You might be right. I was hoping not. This is certainly a “I couldn’t make this stuff up moment...h… https://t.co/eS7XOysBtE +06/28/2018,Politicians,@ninaturner,@bunkybun Right! +06/28/2018,Politicians,@ninaturner,Somebody definitely skipped their history classes!😒😱 ⁦@CNN⁩ https://t.co/N7YYH4CG2p +06/28/2018,Politicians,@ninaturner,RT @BenJealous: Deeply saddened about these unfolding events in Annapolis. Everyone please stay safe as the police assess the situation. ht… +06/28/2018,Politicians,@ninaturner,"RT @TwitterMoments: Police are responding to a shooting at the Capital Gazette newspaper's offices in Annapolis, Maryland, officials say. h…" +06/28/2018,Politicians,@ninaturner,"RT @PortiaABoulger: Are you listening? @DNC @OHDems? +""In an interview on MSNBC, Ocasio-Cortez said that Democrats need to focus their mess…" +06/28/2018,Politicians,@ninaturner,"RT @womensmarch: Today, 1,000 women will engage in nonviolent civil disobedience to protest the criminalization and detention of immigrants…" +06/28/2018,Politicians,@ninaturner,RT @lsarsour: Women are powerful. #WomenDisobey #EndFamilyDetention #EndFamilySeparation #AbolishICE https://t.co/1Z6524N0Lt +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: “We need to learn the lessons of teachers in states being led by West Virginia, and organize in different ways — we can…" +06/28/2018,Politicians,@ninaturner,"RT @RightsNH: Catch @ninaturner at 3 events we're proud to be hosting in Manchester, Plymouth, and Keene this Saturday! Details: https://t.…" +06/28/2018,Politicians,@ninaturner,RT @SusanSarandon: SAY HER NAME! ALEXANDRIA OCASIO-CORTEZ. https://t.co/VIpH5O3W5v +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: 📣 Vermont! +This Friday, don’t miss your chance to join Our Revolution President @ninaturner as she speaks at the @Rights…" +06/28/2018,Politicians,@ninaturner,"RT @ejmedia3: Forward together, not one step back! https://t.co/3xIdVUBC5m" +06/28/2018,Politicians,@ninaturner,"RT @WATL_news: @ninaturner @OurRevolution They said ""If you don't like it, run!"" - so we ran + +They said ""You can't raise enough money!"" - w…" +06/28/2018,Politicians,@ninaturner,"@wartrout89 Right, never let the truth get in the way of a good story." +06/28/2018,Politicians,@ninaturner,@bluntedpurpose For all of us. +06/28/2018,Politicians,@ninaturner,"RT @ProjectBernie16: The Truth Won Yesterday. +And The Truth Will Win Again In November. + +The Truth Is: @BenJealous Is Maryland's Next Gover…" +06/28/2018,Politicians,@ninaturner,@darts89119 @OurRevolution 😊🙏🏾 +06/28/2018,Politicians,@ninaturner,RT @stinaa1982: ❤️❤️❤️ https://t.co/47z7J39xmN +06/28/2018,Politicians,@ninaturner,Just beautiful! @OurRevolution #ThursdayThoughts https://t.co/UwCVr9sWsw +06/28/2018,Politicians,@ninaturner,@mjfree Ooooooooweeee!!!! +06/28/2018,Politicians,@ninaturner,@mikelove719 Good morning Mike. +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: Last night “...shows us that when we double down on progressive issues, pound the pavement like our life depends on it,…" +06/28/2018,Politicians,@ninaturner,https://t.co/JchwMTPIcp +06/28/2018,Politicians,@ninaturner,RT @EALindquist: Hey @CarolAmmons4IL let's get our friend @LitesaWallace to be selected for Executive Director of the Democratic Party of I… +06/28/2018,Politicians,@ninaturner,"RT @IllinoisWorking: REMINDER: ""Black women will be most affected by Janus"" (via @EconomicPolicy) + +#twill #ilgov #JANUSvsAFSCME +https://t.…" +06/28/2018,Politicians,@ninaturner,"RT @theRza2u: 🚨CALL TO ACTION🚨 + +⚬FAKE account. +⚬Please report. + +Page is IDENTICAL TO @ninaturner's. They are dm'ing, pretending to be her.…" +06/28/2018,Politicians,@ninaturner,RT @UniteThePoor: Some tourists have been wondering what this is. It’s the new and unsettling force for your liberation and mine! #PoorPeop… +06/28/2018,Politicians,@ninaturner,"RT @BenJealous: We won. We won BIG! + +As we say in the NAACP...Thank you to everyone who gave their time, their treasure or their talent!…" +06/28/2018,Politicians,@ninaturner,"RT @TulsiGabbard: .@Ocasio2018 Congratulations on your historic win last night! Throughout your activism and your campaign, you demonstrat…" +06/27/2018,Politicians,@ninaturner,"RT @fightfor15: BREAKING:  #SCOTUS has ruled against workers. We stand in solidarity with our public sector #union family, and stay focused…" +06/27/2018,Politicians,@ninaturner,"RT @LammanRucker: #Senator @NinaTurner dropping science and telling the #TRUTH about the power of big money influence in the campaign, elec…" +06/27/2018,Politicians,@ninaturner,@LammanRucker Thank you Lamman . It’s good to have your voice in this space. And you are doing the thing on @GreenleafOWN +06/27/2018,Politicians,@ninaturner,RT @commondreams: 'He Had the Machine... We Had the People': Alexandria Ocasio-Cortez Landslide Win Over Wall St. Favorite Joe Crowley http… +06/27/2018,Politicians,@ninaturner,"RT @foe_us: ""Being governor is about a lot more than putting out good policy papers—and it is in his leadership ability that @BenJealous ex…" +06/27/2018,Politicians,@ninaturner,@LammanRucker Thanks Lamman! +06/27/2018,Politicians,@ninaturner,RT @RightsVT: Join us Friday at 7PM in #Bennington for a gubernatorial forum feat. Guest Speaker @ninaturner of @OurRevolution -> Details:… +06/27/2018,Politicians,@ninaturner,"RT @NNUBonnie: Women of color stand to lose the most from the #Janus outcome. + +WOC face a double wage gap: a gender and a racial pay gap -…" +06/27/2018,Politicians,@ninaturner,"RT @NomikiKonst: There are going to be a million hot takes. Here’s mine: +@BenJealous and @Ocasio2018 are as progressive and grassroots as…" +06/27/2018,Politicians,@ninaturner,"RT @staceyabrams: Congratulations to @BenJealous - my dear friend, extraordinary leader & the next Governor of Maryland! Very proud of you…" +06/27/2018,Politicians,@ninaturner,"RT @Ocasio2018: This is the start of a movement. + +Thank you all." +06/27/2018,Politicians,@ninaturner,RT @NYDailyNews: Ice Cube's Big3 basketball league is counter-suing former employee who complained about Steve Bannon banter https://t.co/8… +06/27/2018,Politicians,@ninaturner,HELLO!!!!!! https://t.co/BXOvRylBfA +06/27/2018,Politicians,@ninaturner,RT @WaywardWinifred: The good people of Maryland deserve a governor who will fight like hell to win #MedicareForAll. Healthcare is a human… +06/27/2018,Politicians,@ninaturner,"RT @IAmMLKJrFilm: ""The president felt that he couldn't go back to the congress for another civil rights field"" MLK said ""We got to get the…" +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Vaughn4Maryland on your primary win tonight! https://t.co/DKRNgCrdbf +06/27/2018,Politicians,@ninaturner,RT @jjz1600: Message to “pundits” who said progressives were fading & the establishment was in control: GUESS AGAIN! We are in this for the… +06/27/2018,Politicians,@ninaturner,@jjz1600 @BenJealous @Ocasio2018 @OurRevolution Say that Doc! +06/27/2018,Politicians,@ninaturner,"Joe Jackson, musical family patriarch, dead at 89 - CNN https://t.co/wWDHUxZ6gr" +06/27/2018,Politicians,@ninaturner,"RT @DrAvariceJ: This is groundbreaking,earth shattering and truly signals the power of ordinary people rising up to make their voices heard…" +06/27/2018,Politicians,@ninaturner,"RT @EmilyForCO: Last night, we won a great victory - and when I say “we,” thats exactly what I mean. This campaign is not about me - it is…" +06/27/2018,Politicians,@ninaturner,@breakfastclubam bringing hip hop and politics together. I asked @icecube what words he has for folks in this momen… https://t.co/Q5eKd85PMr +06/27/2018,Politicians,@ninaturner,@JenniferW83 @OurRevolution Thank you +06/27/2018,Politicians,@ninaturner,Progressives are on the move. ⁦@OurRevolution⁩ ⁦@inthesetimesmag⁩ https://t.co/kB2upVwHBd +06/27/2018,Politicians,@ninaturner,@AsimSupreme Good morning! 🌞 +06/27/2018,Politicians,@ninaturner,RT @ChrisImes5: @ninaturner @OurRevolution @People4Bernie @justicedems @DFAaction @DemSocialists #BernItAllDown https://t.co/jLSlxEyDBK +06/27/2018,Politicians,@ninaturner,@ChrisImes5 @OurRevolution @People4Bernie @justicedems @DFAaction @DemSocialists True that! +06/27/2018,Politicians,@ninaturner,@LCellini @OurRevolution @Morning_Joe @DNC @Ocasio2018 @nytimes @NYDailyNews @CynthiaNixon Thank you! Team work! +06/27/2018,Politicians,@ninaturner,"We must never give up! Hope does spring eternal &with collective sweat equality, all things are possible! Congrats… https://t.co/QWlVsaqHtA" +06/27/2018,Politicians,@ninaturner,"RT @wildwestpie: @ninaturner @AdamUmak @BenJealous @OurRevolution @OurRevolutionMD ❤ you Nina! + +Thank you! + +Thank you! + +Thank you! + +Thank y…" +06/27/2018,Politicians,@ninaturner,"@wildwestpie @AdamUmak @BenJealous @OurRevolution @OurRevolutionMD Nevertheless, we keep pushing!" +06/27/2018,Politicians,@ninaturner,@AdamUmak @BenJealous @OurRevolution @OurRevolutionMD We are on the move! +06/27/2018,Politicians,@ninaturner,@couponpadawan @NanInKansas @BenJealous @OurRevolution @OurRevolutionMD @EmilyForCO Sending ❤️ back +06/27/2018,Politicians,@ninaturner,RT @kendrick38: Congrats @BenJealous 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/CaUXyENlXD +06/27/2018,Politicians,@ninaturner,"RT @mddems: Congratulations to our next governor @BenJealous! While Larry Hogan shortchanges Marylanders, Ben’s bold progressive leadershi…" +06/27/2018,Politicians,@ninaturner,RT @NicholsUprising: Huge victory tonight for @BenJealous — a progressive who will be the Democratic nominee for governor of Maryland. A ke… +06/27/2018,Politicians,@ninaturner,@NanInKansas @BenJealous @OurRevolution @OurRevolutionMD @EmilyForCO Yes! +06/27/2018,Politicians,@ninaturner,RT @PatFromm: It's happening! #OurRevolution is living out the vision Bernie instilled in us. We won't stop until we reclaim this country #… +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @liuba4congress on your primary victory tonight! https://t.co/QZiklPl8b3 +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @DrHall38A on your primary victory tonight! https://t.co/dGQOkWPrdF +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Angela4OK on your primary victory tonight! https://t.co/Ps1cC7SyV1 +06/27/2018,Politicians,@ninaturner,"RT @OurRevolution: “@Ocasio2018 ran a bold campaign built on substance. She ran in the interest of the people, not corporate developers."" R…" +06/27/2018,Politicians,@ninaturner,RT @TYTNetwork: https://t.co/BoPv2L7paF +06/27/2018,Politicians,@ninaturner,RT @Jehane94: @ninaturner @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie @DFAaction #AnyOleBlueJustWontDo #AlexandriaOcasio… +07/02/2018,Politicians,@MassAGO,"🏘 Revitalize abandoned houses +👨‍👩‍👧 Help first-time homebuyers +🌷 Fight blight! + +Cities and towns can apply for our… https://t.co/xj6MzyeV4S" +07/02/2018,Politicians,@MassAGO,GOOD NEWS: We're closing the gender pay gap in Massachusetts with a new #EqualPay law that went into effect yesterd… https://t.co/eCiR4XQAq3 +06/29/2018,Politicians,@MassAGO,Hard work. Discipline. Teamwork. Sports were a salvation for me. @scholarathletes https://t.co/BRNpQIT2UG +06/29/2018,Politicians,@MassAGO,"We are incredibly relieved that Elmer, Lubin, and their children are together again. Families like theirs deserve o… https://t.co/1wwBciVujZ" +06/29/2018,Politicians,@MassAGO,"After 5 weeks apart, the Oliva family is now safe and together in Massachusetts. They met with us yesterday to tell… https://t.co/FqcAW3NQNT" +06/29/2018,Politicians,@MassAGO,We need action if we are ever going to stop this madness. #Annapolis #Enough https://t.co/EG0SbRcsxs +06/28/2018,Politicians,@MassAGO,"Today the @MA_Senate joined the House in voting to raise the age to purchase tobacco products to 21.  + +This is huge… https://t.co/itSUfBebnk" +06/28/2018,Politicians,@MassAGO,"Today we grieve with #Annapolis. Tomorrow we can prevent the next shooting. + +The #EPRO law will prevent people fro… https://t.co/7LCTU7nFLR" +06/28/2018,Politicians,@MassAGO,"Many are feeling discouraged or wondering if anyone will take action to end this madness. + +The answer is yes. + +On… https://t.co/rbcPP0gRwD" +06/28/2018,Politicians,@MassAGO,"An elementary school. A movie theater. Churches. High schools. A concert. Now a newsroom in #Annapolis. + +Our heart… https://t.co/p4XtxTnjpo" +06/28/2018,Politicians,@MassAGO,"@Efifiknow @Roche_Bros Hi there, you can call our office's Consumer Assistance and Response Division at (617) 727-8… https://t.co/4kJPO1ZhRQ" +06/28/2018,Politicians,@MassAGO,TOMORROW: Join us for office hours in #Pittsfield at the Ralph Froio Senior Center. Meet our team and find help wit… https://t.co/xxab07oNJD +06/28/2018,Politicians,@MassAGO,"This shows us again that when working people organize and take collective action, they can fight for fair wages and… https://t.co/yiH9lRWGkn" +06/28/2018,Politicians,@MassAGO,Massachusetts will now guarantee paid family and medical leave and raise the minimum wage to $15 an hour.… https://t.co/xSaK52Bp3v +06/28/2018,Politicians,@MassAGO,Angelica is suing the Trump Administration and we stand with her. #FamiliesBelongTogether https://t.co/FcWrC8HuUP +06/28/2018,Politicians,@MassAGO,"Angelica and her 8 year old daughter were allowed entry into the US by an asylum officer, but the very next day the… https://t.co/LwwgG8IHVf" +06/27/2018,Politicians,@MassAGO,"Thank you @SpeakerDeLeo and the House, as well as the late Rep. Peter Kocot, for passing this bill and working to e… https://t.co/KUfC30I1h4" +06/27/2018,Politicians,@MassAGO,Voting is our most basic and essential right. Every citizen should be automatically registered to vote. Today the M… https://t.co/MXqtKacLGs +06/27/2018,Politicians,@MassAGO,如果你接到类似的电话或信息,应该立即挂掉电话或删除相关的信息。中国领事馆或大使馆是不会这样打电话向你要钱的。请从来不要把你的社会安全号码,银行卡号、信用卡号或其他敏感的信息通过电话方式提供给你不十分熟悉和完全信任的任何人。 +06/27/2018,Politicians,@MassAGO,你有没有接到过自称是从中国领事馆打来的电话?如果有,你并不是唯一的。全国各地都有人举报说接到过用普通话的这类电话或信息,向他们要钱或有关信用卡的信息。https://t.co/ntIcZJoUGJ +06/27/2018,Politicians,@MassAGO,"If you get a call or message like this, hang up or delete it. + +The real Chinese Consulate will not call you to ask… https://t.co/nQrKfFFwDb" +06/27/2018,Politicians,@MassAGO,Have you received a call from someone claiming to work for the Chinese Consulate? You're not alone. People across t… https://t.co/S0UQACbD1v +06/27/2018,Politicians,@MassAGO,The Massachusetts House just passed a bill that would ban subjecting minors to “conversion therapy.” We need to pro… https://t.co/eS9XPN1HxQ +06/27/2018,Politicians,@MassAGO,We met with middle school students in #Everett today to hear from them and talk about the risks of substance use.… https://t.co/MAmJnNcAQ1 +06/27/2018,Politicians,@MassAGO,"#SCOTUS just turned its back on millions of public sector workers who keep us safe, teach our children, and care fo… https://t.co/T8FiMLMRXs" +06/27/2018,Politicians,@MassAGO,"RT @MaddowBlog: ""It's illegal, it's unconstitutional, it's un-American, and we're going to continue to see the Trump administration in cour…" +06/27/2018,Politicians,@MassAGO,"What the President is doing to families in our country is not just immoral, it’s illegal. That’s what this lawsuit… https://t.co/2kI5LvokSN" +06/27/2018,Politicians,@MassAGO,"Purdue's executives led and directed an illegal business model, using addiction and deception to enrich themselves… https://t.co/Rir7fDf0BH" +06/27/2018,Politicians,@MassAGO,"We simply cannot trust the President to stop this. Today, with 17 AGs, we sued to #KeepFamiliesTogether. +https://t.co/8IwDbK9bKp" +06/26/2018,Politicians,@MassAGO,We're going to keep working with leaders in government and immigrant communities across Massachusetts to protect ev… https://t.co/7FNYjNCb30 +06/26/2018,Politicians,@MassAGO,I disagree with the court’s decision today and am proud that we successfully stopped the first two versions of the… https://t.co/Dd39njX6C5 +06/26/2018,Politicians,@MassAGO,"We have a responsibility as a nation to protect children and keep families together. + +Join me live with @Maddow at… https://t.co/589oStdVOW" +06/26/2018,Politicians,@MassAGO,The Trump Administration is inflicting devastating and long-lasting trauma on these children and thousands of other… https://t.co/gqGL2xXMOO +06/26/2018,Politicians,@MassAGO,Two Guatemalan children were separated from their mother and held in Michigan for five weeks. The children have bee… https://t.co/Ib53ijtREU +06/26/2018,Politicians,@MassAGO,"As a result of this unconstitutional policy, a mother — now in Hyannis after an asylum officer found she faces pers… https://t.co/Wz7O73YQHm" +06/26/2018,Politicians,@MassAGO,"#BREAKING We just sued the Trump Administration to end the cruel and illegal policy of tearing apart families, reun… https://t.co/YkZQIkukeL" +06/26/2018,Politicians,@MassAGO,"@mampamparam Last May, we issued an advisory reaffirming our commitment to protecting all workers irrespective of i… https://t.co/Vd4VB46zvZ" +06/26/2018,Politicians,@MassAGO,"@mampamparam All workers are entitled to their wages regardless of immigration status, and are welcome to attend a… https://t.co/CKHf9UrElF" +06/26/2018,Politicians,@MassAGO,"@calph7 Hi Chris, the team at our Consumer Assistance and Response Division will be able to answer your question an… https://t.co/nnAUdpCWk3" +06/25/2018,Politicians,@MassAGO,"The next #wagetheft clinic is Tuesday, July 10 in #NewBedford. Walk-ins welcome! + +You can report wage theft online:… https://t.co/dloaVftHMe" +06/25/2018,Politicians,@MassAGO,We invited workers who reported #wagetheft to get free legal consultation at our clinic tonight. Great turnout! https://t.co/aU42GX5200 +06/25/2018,Politicians,@MassAGO,"@s4m_bloch Hi Samuel, thanks for reaching us. The team at our Student Loan Assistance Unit may be able to help. You… https://t.co/PzW2wl3wwN" +06/24/2018,Politicians,@MassAGO,We are at the 15th Annual Asian Festival in #Worcester today to connect people with our office and share the many w… https://t.co/uH9I2ePHB3 +06/23/2018,Politicians,@MassAGO,Drop by and meet the team at today's Health and Safety Fair in #Worcester! https://t.co/UgAfLJjjkZ +06/22/2018,Politicians,@MassAGO,Ending #TPS will tear hundreds of thousands of families apart and force people into countries that are unsafe. It's… https://t.co/H80g5BcqqP +06/22/2018,Politicians,@MassAGO,"President Trump's termination of #TPS is discriminatory, unlawful, and undermines who we are as Americans. We filed… https://t.co/6AdQhfr0pF" +06/22/2018,Politicians,@MassAGO,This is about our duty as a nation to protect children and keep families together. We are suing to make sure this c… https://t.co/pcYaFMSk0p +06/21/2018,Politicians,@MassAGO,"President Trump's family separation policy is immoral, reprehensible, and must end. We need to reunite these famili… https://t.co/J3F2u0YCBu" +06/21/2018,Politicians,@MassAGO,Separating children from their parents simply is not who we are as Americans and it cannot continue.… https://t.co/f7Vl6eUjXH +06/21/2018,Politicians,@MassAGO,We are also asking the court to order the Administration to reunite families that have been unlawfully torn apart a… https://t.co/cfswcXL32E +06/21/2018,Politicians,@MassAGO,"The President’s words cannot be trusted. Since the Administration won't do the right thing, we will. #KeepFamiliesTogether" +06/21/2018,Politicians,@MassAGO,"With @AGOWA, our coalition of 11 states is asking the court to declare the President’s policy unconstitutional and… https://t.co/H0lRNpKgBK" +06/21/2018,Politicians,@MassAGO,#BREAKING We are suing the President to put an end to his cruel policy of separating immigrant families. #KeepFamiliesTogether +06/21/2018,Politicians,@MassAGO,"Employers who take advantage of their workers, steal their pay, and put them in danger at work will continue to fac… https://t.co/Y9tKcAXJHh" +06/21/2018,Politicians,@MassAGO,President Trump's 'Association Health Plan' rule is unlawful and will lead to fewer protections for people in need… https://t.co/1jN8MLnTFq +06/21/2018,Politicians,@MassAGO,"If you have a defective item, try to contact the manufacturer for a warranty repair, replacement, or refund. + +If t… https://t.co/QsZkaziVY4" +06/21/2018,Politicians,@MassAGO,"If you were enrolled in the Babies ""R"" Us “Endless Earnings” reward program, you don’t need to submit a claim. The… https://t.co/kb17OBuSAR" +06/21/2018,Politicians,@MassAGO,"If you paid for a Toys ""R"" Us order, but never received your delivery, you can submit a claim at the link. + +The la… https://t.co/co55JFoomh" +06/21/2018,Politicians,@MassAGO,We will stop at nothing to keep young people safe from addiction and protect future generations from the devastatio… https://t.co/nkJX0GYtBv +06/21/2018,Politicians,@MassAGO,"Purdue Pharma executives directed a false and aggressive marketing scheme to sell as much OxyContin as possible, no… https://t.co/cdKhVPZLg3" +06/20/2018,Politicians,@MassAGO,"The NRA sued us to try and overturn our state's assault weapons ban. +We won. The ban remains in place. + +Every comm… https://t.co/fA4jRxwUZe" +06/20/2018,Politicians,@MassAGO,We've funded over 750 summer jobs for low-income teens in the last four years. Another #HealthySummer is kicking of… https://t.co/c9yDjdVhzb +06/20/2018,Politicians,@MassAGO,"NO HATE +NO FEAR +IMMIGRANTS ARE WELCOME HERE + +Hundreds are rallying at the Massachusetts State House calling on… https://t.co/OP2AMU35eE" +06/20/2018,Politicians,@MassAGO,"Our country should be welcoming refugees, not tearing children from their parents and locking them in cages. + +For t… https://t.co/qPkeKCo2KO" +06/20/2018,Politicians,@MassAGO,"The President is inviting fraud, mismanagement, and deception to the health insurance market while doing nothing to… https://t.co/qQiRMSVKJ7" +06/20/2018,Politicians,@MassAGO,"With @NewYorkStateAG, we are suing the Trump Administration to stop the unlawful expansion of Association Health Pl… https://t.co/3rYNsHwLgG" +06/20/2018,Politicians,@MassAGO,In #Dorchester this morning? Drop by the YMCA for OFFICE HOURS until 10 a.m. https://t.co/3P9JWjldsY +06/20/2018,Politicians,@MassAGO,"While Purdue generated billions of dollars in profit, people from all across Massachusetts and the US were becoming… https://t.co/BvT3ybNRxJ" +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice ICYMI: We launched a new coalition of Boston businesses with Mayor @Marty_Walsh comm… https://t.co/Wdz3sD0KlY +06/19/2018,Politicians,@MassAGO,"With more than $300,000 from settlements we've won, we're able to help young people do good work promoting public h… https://t.co/9OIHilzfDZ" +06/19/2018,Politicians,@MassAGO,We're funding #HealthySummer jobs for young people across Massachusetts for the fourth year in a row. https://t.co/PJbHy1IffQ +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice Women trafficked by these men and others are victims. We are working with victims se… https://t.co/2p7sO8mUIH +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice We also secured indictments against two men for trafficking victims – including min… https://t.co/hlaNpoNBKk +06/19/2018,Politicians,@MassAGO,"In Allston, @MassStatePolice in our office and @BostonPolice partners arrested a Quincy man who was trafficking wom… https://t.co/uusmUFYxdo" +06/19/2018,Politicians,@MassAGO,"Human traffickers continue to prey on vulnerable women and exploit them for profit. In the last week, we’ve charged… https://t.co/zGhHVLbnQq" +06/19/2018,Politicians,@MassAGO,Patients need the security of comprehensive coverage. We will not allow fly-by-night health plans to evade the high… https://t.co/McJEaPTaVg +06/19/2018,Politicians,@MassAGO,The President’s ‘Association Health Plan Rule’ undermines years of work to ensure that all people and small busines… https://t.co/6eIEAjbLHj +06/19/2018,Politicians,@MassAGO,"The Department of Justice is inflicting devastating and long-lasting trauma on thousands of innocent children. + +It… https://t.co/8UycCkxPxL" +06/19/2018,Politicians,@MassAGO,The President is trying to play politics by tearing babies from their mothers and leaving toddlers stranded and cry… https://t.co/AT0SFepmXN +06/19/2018,Politicians,@MassAGO,"What the Trump Administration is doing to immigrant children is immoral and reprehensible. + +21 state AGs are deman… https://t.co/mEP6DOGYl1" +06/19/2018,Politicians,@MassAGO,RT @BostonDotCom: AG Healey’s office funds summer jobs. https://t.co/DRxs13QsW5 https://t.co/KRoQrSTGOv +06/19/2018,Politicians,@MassAGO,Our lawsuit against Purdue Pharma explicitly names the Sackler family and other top executives. They can't hide beh… https://t.co/ByWzszyO1t +06/19/2018,Politicians,@MassAGO,Purdue Pharma's executives will not escape justice again. We will hold them accountable for the devastation they ha… https://t.co/PSHVaDq9ov +06/18/2018,Politicians,@MassAGO,"RT @TinaGaoOnAir: .@MassAGO is awarding nearly $327,000 to more than 90 organizations across #Massachusetts to fund summer #jobs for low-in…" +06/18/2018,Politicians,@MassAGO,This is a stain on our country and a moral crisis. President Trump needs to end this. Now. For the sake of these ch… https://t.co/ltOBml1DAU +06/18/2018,Politicians,@MassAGO,All of us in Massachusetts have worked hard to reduce cigarette and nicotine use among minors. We’re ready to take… https://t.co/fWP0Yoom55 +06/18/2018,Politicians,@MassAGO,We just sent letters to every school in MA cautioning administrators about the dangers these devices pose to their… https://t.co/PkAb69Xcln +06/18/2018,Politicians,@MassAGO,E-cigarettes and vaping devices pose a serious health risk to students. They can contain addictive and unhealthy ch… https://t.co/hNBw4b7qZJ +06/18/2018,Politicians,@MassAGO,Purdue executives and board members knew the truth about their drugs and did nothing to stop the crisis of addictio… https://t.co/vktPB3vq5O +06/18/2018,Politicians,@MassAGO,"By meeting young people where they are, talking openly about substance use and addiction, and listening to the very… https://t.co/MGcL0PlpUl" +06/18/2018,Politicians,@MassAGO,"Purdue marketers told doctors their pills were safer than Tylenol. As a result, high school students in Massachuset… https://t.co/qo9wWk41E4" +06/18/2018,Politicians,@MassAGO,"Purdue lied to keep patients away from safer alternatives, even when company executives knew people were increasing… https://t.co/91rcGHR2sy" +06/17/2018,Politicians,@MassAGO,Students need to know that there are companies and executives out there only looking to turn a profit off of addict… https://t.co/6uEW1YqFeH +06/17/2018,Politicians,@MassAGO,"We're tackling the opioid epidemic on all fronts. In a joint law enforcement effort last week, we seized nearly 2,0… https://t.co/nyO5vXb8LK" +06/17/2018,Politicians,@MassAGO,"The more drugs Purdue's executives sold, the more money they made, and the more people died. https://t.co/98J7RYCy9t" +06/16/2018,Politicians,@MassAGO,We're at the #Lowell African Festival today! Come by and hear about how our office can help you. https://t.co/Z02lKUb6Or +06/16/2018,Politicians,@MassAGO,RT @sethmoulton: Add this to the list of MA being a state of firsts. Proud of the leadership of @MassAGO to take action against the very pe… +06/15/2018,Politicians,@MassAGO,We know finding the answers to questions about elder issues can sometimes be challenging. That's why the AG's Offic… https://t.co/Q2wzT6lTqE +06/15/2018,Politicians,@MassAGO,"On #ElderAbuseAwarenessDay, we filed a settlement with these nursing home companies that jeopardized the safety of… https://t.co/4g8M2IjamR" +06/15/2018,Politicians,@MassAGO,"RT @lisakashinsky: Days after filing a lawsuit against major opioid manufacturer Purdue, @MassAGO Maura Healey stopped by #Methuen to talk…" +06/15/2018,Politicians,@MassAGO,We're at @BristolDA's Celebration of Seniors event today in #Westport. Teams across our office are fighting elder a… https://t.co/fCbnczhYtj +06/15/2018,Politicians,@MassAGO,#EidMubarak to our Muslim friends and neighbors as they celebrate the end of Ramadan and break their fast. Peace and joy to all! +06/15/2018,Politicians,@MassAGO,TODAY: We're at Senator @EricLesser's Thrive After 55 fair to share how we can help protect people from fraud and d… https://t.co/AsFYJWAewv +06/15/2018,Politicians,@MassAGO,RT @NSChamber: Packed house at the Hawthorne Hotel w @MassAGO in Salem. @maura_healey talks strategy to business leaders on leading fight o… +06/15/2018,Politicians,@MassAGO,The men and women of @NSChamber care deeply about the North Shore. They're working to ensure it thrives and it has… https://t.co/Ey9JLxcXQ7 +06/14/2018,Politicians,@MassAGO,"RT @RepMoran: I was pleased to join @MassAGO, Mayor Jajuga & @rep_campbell today at the Marsh Grammar School in Methuen to participate in a…" +06/14/2018,Politicians,@MassAGO,"With partners like @CommonCause, we have a fighting chance at restoring sanity to campaign finance laws, overturnin… https://t.co/kFPCFJpIqr" +06/14/2018,Politicians,@MassAGO,RT @ParkerMSHealth: Thank you @MassAGO This was a wonderful opportunity for my students. Thank you for speaking about such important topics… +06/14/2018,Politicians,@MassAGO,RT @ParkerPrincipal: Thank you @MassAGO for your support and for visiting our school! #parkerpride @ParkerMSHealth https://t.co/eyDWMxyl0S +06/14/2018,Politicians,@MassAGO,"Thank you Ms. Parks, your students, and the incredible caring leadership of Parker Middle School in #Chelmsford for… https://t.co/whyOUWPOUS" +06/14/2018,Politicians,@MassAGO,Health students at the Marsh School understand the risks of substance use and the importance of healthy decisions.… https://t.co/NMdTLXv2QX +06/14/2018,Politicians,@MassAGO,There’s nothing more important than making sure young people understand the importance of health and wellness.… https://t.co/GRllNvl3Un +06/14/2018,Politicians,@MassAGO,Two days ago we sued the top executives of Purdue Pharma. Today we’re visiting students in #Methuen and… https://t.co/Phnfj8r1w1 +06/14/2018,Politicians,@MassAGO,RT @telegramdotcom: Attorney General Maura Healey spotlights drug use prevention at Fitchburg High forum https://t.co/aQUB3LkExp @PaulaOwen… +06/14/2018,Politicians,@MassAGO,"If you have been taken advantage of by a company that promised help with student loans, call us at 1-888-830-6277 o… https://t.co/QqAj4323m0" +06/14/2018,Politicians,@MassAGO,Purdue and its executives made more than $500 million as the opioid crisis exploded in Massachusetts. They knew the… https://t.co/XpjzftOB76 +06/14/2018,Politicians,@MassAGO,This fraud student loan company is paying back every student harmed and is blocked from coming back to Massachusett… https://t.co/Gjwe1pGYeT +06/13/2018,Politicians,@MassAGO,"Giant pharmaceutical companies like Purdue have put profits over people and as a result more than 11,000 have died… https://t.co/CsR5vSqO3I" +06/13/2018,Politicians,@MassAGO,RT @RepJoeKennedy: Our Commonwealth has witnessed too many funerals for lives lost to the opioid epidemic. Thank you @MassAGO for holding P… +06/13/2018,Politicians,@MassAGO,Healthcare career students at Keefe Regional Tech are preparing to take on the opioid crisis and provide the kind o… https://t.co/FuSQhA0WTN +06/13/2018,Politicians,@MassAGO,RT @FitchburgPS: What a tremendous visit from Attorney General Maura Healey today at FHS to talk about the opioid crisis. Amazing and can’t… +06/13/2018,Politicians,@MassAGO,RT @FitchburgPS: VIDEO: Attorney General Maura Healey talked to students and teachers at FHS for a roundtable discussion on the opioid cris… +06/13/2018,Politicians,@MassAGO,RT @Principal_FHS: @FitchburgPS @MassAGO @Superin33564261 So glad to be able to host @MassAGO at FHS on these important topics! We thank y… +06/13/2018,Politicians,@MassAGO,"Yesterday we sued Purdue Pharma and the company’s executives for their role in creating the opioid crisis. + +And to… https://t.co/p0CyC39yjG" +06/13/2018,Politicians,@MassAGO,"As we fight the opioid crisis in Massachusetts, we look to young people for insight. Thank you to #Fitchburg High S… https://t.co/BdcLZDphnP" +06/13/2018,Politicians,@MassAGO,"RT @RyanForRecovery: Massachusetts on Tuesday filed a lawsuit against Purdue Pharma LP, and became the first state to sue the drugmaker's e…" +06/13/2018,Politicians,@MassAGO,"RT @ArlingtonMAPD: “The opioid epidemic that has taken many lives and has ruined so many more has many causes, but the evidence clearly dem…" +06/13/2018,Politicians,@MassAGO,RT @HerrenProject: @MassAGO Maura Healey sues opioid maker Purdue Pharma #opioidepidemic #addiction #togetherwecan https://t.co/8jVKEvetgb +06/13/2018,Politicians,@MassAGO,Purdue Pharma and its executives built a multi-billion-dollar business based on deception and addiction. We're suin… https://t.co/BofCtUr882 +06/12/2018,Politicians,@MassAGO,The opioid epidemic is killing 5 people every day in Massachusetts. We will hold Purdue Pharma and its executives a… https://t.co/yECvHF5kz6 +06/12/2018,Politicians,@MassAGO,"It's time for Purdue Pharma to pay. Today we filed suit against the pharmaceutical giant, as well as its board and… https://t.co/1iBPDS8tow" +06/12/2018,Politicians,@MassAGO,RT @CindyFriedmanMA: Thank you @MassAGO for taking action against Purdue Pharma for their role in contributing to the #opioidcrisis in Mass… +06/12/2018,Politicians,@MassAGO,We remember the 49 innocent lives lost at the Pulse nightclub two years ago today and promise to honor them with ac… https://t.co/Vi84rWwNgw +06/12/2018,Politicians,@MassAGO,"RT @bjoewolf: Two years ago, a man fired 45 rounds a minute into the crowded club while I washed my hands in the sink. 13 of those rounds k…" +06/12/2018,Politicians,@MassAGO,"RT @SenJasonLewis: I applaud @MassAGO for her bold action: a lawsuit against Purdue Pharma. + +More than 11,000 people in Mass. have died of…" +06/12/2018,Politicians,@MassAGO,RT @learn2cope2001: We thank you Attorney General Healey and your staff for you work and dedication to the families of Massachusetts! Final… +06/12/2018,Politicians,@MassAGO,RT @RepKClark: Thank you @MassAGO for holding Purdue accountable for their dangerous and predatory practices. Too many families and communi… +06/12/2018,Politicians,@MassAGO,RT @MassGovernor: I want to thank @MassAGO and her team for their determined work to put Purdue Pharma and their executives where they belo… +06/12/2018,Politicians,@MassAGO,RT @BisforBerkshire: Massachusetts just became the first state to sue OxyContin maker Purdue Pharma AND its executives and directors. Civil… +06/12/2018,Politicians,@MassAGO,RT @StephanieCNews: Posters at @MassAGO announcement they are suing Purdue Pharma for “illegally marketing opioids and profiting from opioi… +06/12/2018,Politicians,@MassAGO,We owe it to families everywhere to hold Purdue and its executives accountable for the damage they have caused and to make them pay. +06/12/2018,Politicians,@MassAGO,"RT @mbebinger: Joanne Peterson, representing families hurt by #opioidcrisis, says “it’s time to hold Purdue Pharma accountable for their gr…" +06/12/2018,Politicians,@MassAGO,RT @ArlingtonMAPD: Chief Ryan stands with @MassAGO for major announcement “Purdue Pharma and its and executives lied about their addictive… +06/12/2018,Politicians,@MassAGO,This is the first lawsuit to name Purdue Pharma executives personally and to tell the story of how they contributed to this crisis. +06/12/2018,Politicians,@MassAGO,"Purdue executives led and directed an illegal business model, using addiction and deception to enrich a few, while… https://t.co/Ebm9pI3Gs9" +06/12/2018,Politicians,@MassAGO,"The more drugs Purdue sold, the more money they made, and the more people died. https://t.co/3zJASsJI0f" +06/12/2018,Politicians,@MassAGO,Purdue even pushed their drugs to prescribers they knew were writing illegal prescriptions and had patients dying of overdoses. +06/12/2018,Politicians,@MassAGO,Purdue targeted vulnerable people including veterans and the elderly to boost their profits. +06/12/2018,Politicians,@MassAGO,Purdue overstated the benefits of opioids and even claimed that they were safer than ibuprofen and Tylenol. +06/12/2018,Politicians,@MassAGO,Purdue pushed prescribers to give higher and more dangerous doses to keep patients on drugs longer without regard f… https://t.co/iqkEhVuXFt +06/12/2018,Politicians,@MassAGO,"Purdue Pharma and its and executives lied about their addictive drugs and profited from the opioid crisis. +We are… https://t.co/63zHiePICL" +06/12/2018,Politicians,@MassAGO,Please join us LIVE this morning for a major announcement related to our investigation into the sale and marketing… https://t.co/Ywrt48FnaH +06/11/2018,Politicians,@MassAGO,"Today President Trump’s @FCC officially repeals #NetNeutrality, but our lawsuit to reverse this illegal action and… https://t.co/Ifp6U3mCKX" +06/10/2018,Politicians,@MassAGO,The President’s irrelevant and baseless arguments against the #ACA won’t stand in court. We’re intervening to prote… https://t.co/UoPqdmSd2m +06/10/2018,Politicians,@MassAGO,Wage theft is illegal and victims are entitled to full restitution and sometimes triple-damages. If your employer i… https://t.co/kC9NdPupEC +06/10/2018,Politicians,@MassAGO,It's time for every state to pass an #ERPO bill. https://t.co/imHuwCVSpC +06/08/2018,Politicians,@MassAGO,The President has called asbestos a “mob conspiracy.” It’s actually a deadly carcinogen. While his EPA does pollute… https://t.co/5BrqdEestp +06/08/2018,Politicians,@MassAGO,"RT @BOSImmigrants: .@MassAGO is hosting a webinar training on Immigration Scams Prevention & Resources Tue, June 12, 2018 at 10:30am. + +Serv…" +06/08/2018,Politicians,@MassAGO,The student debt crisis is crushing families all across the country. Meanwhile Betsy DeVos wants to give fraud for-… https://t.co/lLqfBcQrM2 +06/08/2018,Politicians,@MassAGO,@methuensports @Patriots Thank you Game Changers and enjoy your summer! #GameChange +06/08/2018,Politicians,@MassAGO,"RT @Sen_Chandler: Yesterday, the Senate acted on #gunviolence and passed the #ERPO Bill. In MA we’re proud to have the lowest rate of gun d…" +06/08/2018,Politicians,@MassAGO,In New England National Grid can be reached at 1-800-322-3223 and you can report scams to our office at 617-727-840… https://t.co/OZFFwN4iYp +06/08/2018,Politicians,@MassAGO,"National Grid will never demand immediate payment. There’s a long process before your service can be shut off. + +If… https://t.co/ZbFZKb2D1h" +06/08/2018,Politicians,@MassAGO,.@NationalGridUS customers are getting calls from scammers claiming to work for the utility and demanding payment.… https://t.co/AgY7EpY3w6 +06/08/2018,Politicians,@MassAGO,"If your employer is stealing your wages, threatening you, or otherwise treating you unfairly, call our Fair Labor H… https://t.co/3gKbXvmRkP" +06/08/2018,Politicians,@MassAGO,He ripped off his workers and threatened them when they demanded they wages they earned. After pleading guilty to 1… https://t.co/qCJncZxYeT +06/07/2018,Politicians,@MassAGO,Transgender servicemembers defend our country with dignity and selflessness. They should be honored and allowed to… https://t.co/38yS7StaX1 +06/07/2018,Politicians,@MassAGO,"Every week we witness another mass shooting, domestic violence assault, or suicide by gun that could have been prev… https://t.co/gEKKKQbgf6" +06/07/2018,Politicians,@MassAGO,"#ERPO has now passed both chambers of the MA Legislature. Thank you @Sen_Chandler, @KarenSpilka, and the @MA_Senate… https://t.co/PIrdF0ozTF" +06/07/2018,Politicians,@MassAGO,We have the lowest rate of gun violence in the country in part because strong gun laws save lives. This common sens… https://t.co/jtagHeT9im +06/07/2018,Politicians,@MassAGO,We held a training today at the #Marlborough Senior Center because seniors need to know how they can help prevent f… https://t.co/bqyrDOMJWO +06/07/2018,Politicians,@MassAGO,"RT @MA_Senate: #ERPO bills work. While the Senate is in recess, read up on #ERPO laws in states like #Connecticut and #Indiana and how thes…" +06/07/2018,Politicians,@MassAGO,"There are more than 20,000 suicides by gun every year. Those deaths and countless acts of domestic and mass violenc… https://t.co/5A75Nc5Zp4" +06/07/2018,Politicians,@MassAGO,For years this employer refused to pay his workers. He tried to keep them from the wages they earned. Now he's payi… https://t.co/0Pd0vWVXkY +06/07/2018,Politicians,@MassAGO,We're in #Revere tonight to make sure workers know their rights and to help prevent fraud by unlicensed practioners… https://t.co/8pz0jQsx30 +06/06/2018,Politicians,@MassAGO,Windstar Farm is a vital resource for Cape Cod and the state as a whole. Our settlement paves the way for it's rest… https://t.co/mlhfNGQLP3 +06/06/2018,Politicians,@MassAGO,RT @CHAPAdotorg: Massachusetts Attorney General Maura Healey @MassAGO Joins coalition filing Amicus Brief opposing suspension of @HUDgov #F… +06/06/2018,Politicians,@MassAGO,You can't categorically exclude job applicants with a criminal history. Everyone deserves a fair chance at a job. https://t.co/RmXT5PmE29 +06/06/2018,Politicians,@MassAGO,"When people have access to safe, affordable housing, families are healthier and children do better in school. + +We… https://t.co/kBqXx6j2Am" +06/06/2018,Politicians,@MassAGO,"If you were unfairly or unlawfully denied employment or housing, call our civil rights team at (617) 963-2917. +https://t.co/V03XtI0unO" +06/06/2018,Politicians,@MassAGO,"All people deserve a fair chance at the economic security that comes with a job, including those with criminal reco… https://t.co/vm7YmbGJcV" +06/06/2018,Politicians,@MassAGO,"“We applaud AG Healey’s actions because without this kind of monitoring and enforcement, countless people with CORI… https://t.co/GwwM4V875w" +06/06/2018,Politicians,@MassAGO,Unfortunately many people with criminal records continue to face unnecessary barriers to employment. We're making s… https://t.co/vN5EVSrIkL +06/06/2018,Politicians,@MassAGO,Jobs are the pathway to economic security and a better life—that's why Massachusetts banned employers from asking j… https://t.co/IKhf7pE2cA +06/05/2018,Politicians,@MassAGO,"We should not be bailing out aging, unprofitable power plants at the ratepayer's expense. It's totally unjustified… https://t.co/qtsMjYhVA8" +06/05/2018,Politicians,@MassAGO,The @CFPB keeps a public database of every complaint it’s received. It helps consumers spot bad actors and make sma… https://t.co/8CMTBMhJV9 +06/04/2018,Politicians,@MassAGO,"@throwinganet Hi Anne, you can call our office's Consumer Assistance and Response Division at (617) 727-8400 to rep… https://t.co/LBkyRwG7dI" +06/04/2018,Politicians,@MassAGO,"We will continue to enforce the law, which remains unchanged, and will redouble our efforts to expand equality across the country. #SCOTUS" +06/04/2018,Politicians,@MassAGO,There is no license to discriminate. The #SCOTUS decision in Masterpiece Cakeshop affirms the broad authority of st… https://t.co/o8iWzzyfa8 +06/01/2018,Politicians,@MassAGO,"On #NationalGunViolenceAwarenessDay, I #WearOrange because every day in this country, over 90 people are killed by… https://t.co/cQxVOvAvVZ" +06/01/2018,Politicians,@MassAGO,Learn more about our office’s education campaign to protect residents from the unauthorized practice of immigration… https://t.co/dEMoqSjycA +06/01/2018,Politicians,@MassAGO,Our team was at the Revere Community School tonight hosting a training on workers’ rights and the unauthorized prac… https://t.co/RQkiHmJzSn +05/31/2018,Politicians,@MassAGO,Every nursing home resident deserves a safe and healthy living environment. I’m calling on the federal government t… https://t.co/5WCqiMCh3F +05/30/2018,Politicians,@MassAGO,The Trump Administration’s rollback of the contraceptive coverage mandate is a direct attack on women’s health and… https://t.co/bYQh403yu3 +05/30/2018,Politicians,@MassAGO,Missing Children's Day is a reminder that we all have a role to play to keep our children safe and remember those w… https://t.co/0pWwESQM8J +05/30/2018,Politicians,@MassAGO,"Yesterday, my office joined @marty_walsh and Boston business leaders to announce a new coalition, Employers Against… https://t.co/Rhbslbm61g" +05/29/2018,Politicians,@MassAGO,"Commercial sex exploits women and children, and has no place in the workplace. Thank you to our partners… https://t.co/5FltnGDNhi" +05/29/2018,Politicians,@MassAGO,"Today, 23 companies have committed to adopting zero-tolerance workplace policies on sex buying for their employees. https://t.co/DkYhLBrzPG" +05/29/2018,Politicians,@MassAGO,"Buyers are the catalyst for sex trafficking, and often search for sex during the workday on company equipment. EAST… https://t.co/3aWFOmwhh3" +05/29/2018,Politicians,@MassAGO,We owe it to survivors of sex trafficking to do everything we can to put an end to this abuse and exploitation. Tod… https://t.co/5tsKovv16y +06/30/2018,Politicians,@susanamendoza10,Thousands marched in Chicago bcuz #FamiliesBelongTogether. We marched in the sweltering heat to put heat on… https://t.co/dH5zj9sE0s +06/28/2018,Politicians,@susanamendoza10,RT @AndyManar: Thanks for your continued work @JasonKander @letamericavote! It was good to talk to you & @susanamendoza10 about our success… +06/28/2018,Politicians,@susanamendoza10,"RT @SenSanders: To nobody’s surprise the U.S. Supreme Court, in a 5-4 decision, sided with big money interests and against the needs of wor…" +06/28/2018,Politicians,@susanamendoza10,RT @JPolydoris: If only ⁦@GovRauner⁩ @idph would have put this much effort/action into the LEGIONELLA bacteria issue at Quincy Vets home -… +06/28/2018,Politicians,@susanamendoza10,RT @SenDuckworth: The American people should have a voice in the selection of their next Supreme Court Justice. #Kennedy https://t.co/TAgp0… +06/28/2018,Politicians,@susanamendoza10,"The best way to protect your collective bargaining rights, mobilize to protect good wages, and fight back against a… https://t.co/KJS2jC0Qt1" +06/27/2018,Politicians,@susanamendoza10,"RT @CarolAmmons4IL: Illinois - your Governor has been hanging out in DC all week, waiting to celebrate a ruling that will hurt workers. + +V…" +06/26/2018,Politicians,@susanamendoza10,"I am excited to announce the Anti-Harassment, Equality, & Access Panel (AHEAP) is beginning its statewide roundtabl… https://t.co/DYKaig2Ad1" +06/26/2018,Politicians,@susanamendoza10,"RT @CarolAmmons4IL: I’m not going to stand by as @BruceRauner attacks Champaign-Urbana. + +Here are the facts, Governor. Please read them bef…" +06/25/2018,Politicians,@susanamendoza10,What better way to celebrate #LGBTQ #Pride Month than by marching in the 49th Annual Chicago Pride Parade! Thank yo… https://t.co/XYDJ7jXB06 +06/24/2018,Politicians,@susanamendoza10,"RT @BobMorganIL: Such a great morning, thanks to @EqualityILL and friends @JBPritzker, @JulieForSenate, @RamForSenate, @MikeforIllinois, @…" +06/24/2018,Politicians,@susanamendoza10,We are ready to march in the Chicago Pride Parade. https://t.co/PBhbGhxc3p +06/24/2018,Politicians,@susanamendoza10,RT @BobFiorettiChi: Great to be in the @WVON1690 studio again today with the governor of talk radio #CliffKelley discussing veterans issue… +06/23/2018,Politicians,@susanamendoza10,RT @JBPritzker: I ended the day at a press conference at @heartlandhelps with @repgutierrez to speak about Trump’s devastating family separ… +06/23/2018,Politicians,@susanamendoza10,Happy 93rd Birthday to wonderful @revclayevans! May God bless you and keep you going strong for many more happy yea… https://t.co/H2avCO2biR +06/23/2018,Politicians,@susanamendoza10,Thank you to the @jolietslammers for letting me throw out the first pitch at tonight's baseball game. What a blast!… https://t.co/ystgR00pNo +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump I'm not worried about you not liking me. I'm much more worried ab… https://t.co/mNQLCDlM2A +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Realmente es incomprensible que existan personas, y mucho peor, s… https://t.co/p1F9GeFoGG" +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump Mal hecho por Obama y mal hecho por Trump. Y por si no te has dad… https://t.co/K2nD1qOBQl +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Por última vez, NO. Yo nací en Chicago." +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Y los que deben sentir vergüenza, son aquellos que defienden esta… https://t.co/HBq5Nk3fD9" +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump Yo no nací en México. Nací aquí y porque amo a USA tengo todo el… https://t.co/XmrFGXH9ga +06/22/2018,Politicians,@susanamendoza10,@brianmcdonagh Love it! Thanks for representing! 💓 +06/22/2018,Politicians,@susanamendoza10,I'd like to retweet this at least 1000x. https://t.co/7CzwzVSSIH +06/22/2018,Politicians,@susanamendoza10,"@tahmanbradley Seriously? The Black Caucus members are doing their best, but it doesn't help that they have a… https://t.co/YrzCwzQw76" +06/22/2018,Politicians,@susanamendoza10,Thank you. Honored to have your endorsement! https://t.co/N2Fpr0W4cT +06/20/2018,Politicians,@susanamendoza10,America is in danger of losing her soul. We know we're better than this. Here are my thoughts on the cruel Zero Tol… https://t.co/EcFkkXhbud +06/20/2018,Politicians,@susanamendoza10,"RT @A_Safe_Haven: We’d like to give a special shout-out to @SenatorVanPelt ,@RetainAnneBurke , and @susanamendoza10 for being members of t…" +06/19/2018,Politicians,@susanamendoza10,Honored to join so many civic and business leaders for the @CivicFederation Annual Awards Luncheon. #twill https://t.co/cU0xNfV8QS +06/18/2018,Politicians,@susanamendoza10,"RT @helenprejean: Like so many of you, I'm morally outraged at what is happening to the children at the border, where they're being separat…" +06/18/2018,Politicians,@susanamendoza10,"Rest In Peace, Elizabeth. Godspeed. 😢🙏 https://t.co/rIzkKH2Kwx" +06/18/2018,Politicians,@susanamendoza10,"Amen. Thank you, @JillWineBanks 💓 https://t.co/aDA4kvwMkz" +06/17/2018,Politicians,@susanamendoza10,Father's Day Camping! Nothing better than that! Happy Father's Day to all the amazing dads out there! 💓 #FathersDay https://t.co/S946mdaMlr +06/15/2018,Politicians,@susanamendoza10,@aenelson4 Pocket tweet. 🤪 +06/14/2018,Politicians,@susanamendoza10,"RT @staceyabrams: “Abrams’ platform draws from her own experiences and those of others struggling to attain better lives for themselves, th…" +06/14/2018,Politicians,@susanamendoza10,Elizabeth Bracket is a tough and fierce champion. She is an amazing role model to women everywhere. She's had bruta… https://t.co/kJbhqg2KbK +06/14/2018,Politicians,@susanamendoza10,"RT @rlharri: Of all the ridiculous things @GovRauner has said about the Quincy Vets Home, this one, this one may be the best #twill #Rauner…" +06/14/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: WATCH: Bruce Rauner blames ""massive floods and tornadoes"" for 2015 veterans home outbreak of Legionnaires', which he d…" +06/14/2018,Politicians,@susanamendoza10,@IllinoisWorking Say what? https://t.co/3e6ZM0O2gL +06/13/2018,Politicians,@susanamendoza10,"Blessed to be having Iftar dinner with friends who are more like family. Great food, fun & family with @MHilmiCinar… https://t.co/vuOgMkYNui" +06/11/2018,Politicians,@susanamendoza10,"RT @JPolydoris: Ok Twitter-verse, now - we need you to do what you do best ... Retweet! + +Help us 🇺🇸🇺🇸🇺🇸HELP OUR VET🇺🇸🇺🇸🇺🇸! https://t.co/K…" +06/11/2018,Politicians,@susanamendoza10,@ashvinlad @PoliticalEditor Good point. Thanks. +06/09/2018,Politicians,@susanamendoza10,RT @jenndangerous: Anthony Bourdain on Chicago always stirs my heart: https://t.co/2ZHJp67C1W +06/09/2018,Politicians,@susanamendoza10,"RT @JBPritzker: Today I called Virginia Governor @RalphNortham, a fellow ERA advocate, to offer my support in getting the #EqualRightsAmend…" +06/08/2018,Politicians,@susanamendoza10,@SkywayWilly @rrosenthal Hahahaha! Love it! Thanks 😁 +06/08/2018,Politicians,@susanamendoza10,RIP @Bourdain. My sincere condolences to his family and his @CNN work family. +06/08/2018,Politicians,@susanamendoza10,"Shocked. So many, myself included, thought his was the coolest job/life in the world. Another reminder that depress… https://t.co/wkVOiG1cDg" +06/08/2018,Politicians,@susanamendoza10,"Thanks, @rrosenthal! I didn't remember that fun fact. Woohoo! Gooooaaaalll!!!⚽ https://t.co/h6h1yFe1I2" +06/08/2018,Politicians,@susanamendoza10,"@JulieDiCaro You better believe I was playing soccer in 1988, on @BolingbrookHigh girl's team that started that yea… https://t.co/CRCeUuo7zd" +06/06/2018,Politicians,@susanamendoza10,"So sad. If you know someone in crisis, call the toll-free National Suicide Prevention Lifeline (NSPL) at 1-800-273-… https://t.co/m3a6jUoeFi" +06/05/2018,Politicians,@susanamendoza10,"@kylehillman Hi Kyle, I have my staff looking into this issue. We hope we can help. We will get back to you shortly." +06/05/2018,Politicians,@susanamendoza10,@craigrwall For sure. Going in a frame and up on my wall. Make me smile every single time. +06/05/2018,Politicians,@susanamendoza10,And THIS fills my heart with joy. 💓 https://t.co/CvibR2G4Fa +06/04/2018,Politicians,@susanamendoza10,@kingLudvikII I agree. +06/03/2018,Politicians,@susanamendoza10,"WLS-TV: Visitation Sunday for CFD diver Juan Bucio. +https://t.co/tdIeuXlDiO + +via @GoogleNews" +06/03/2018,Politicians,@susanamendoza10,You go girl! https://t.co/soMOT2PIAu +06/03/2018,Politicians,@susanamendoza10,Today at 12:30 pm... Join me and the Bloomingdale Township Democrats in the 59th Annual Roselle Rose Parade. To sig… https://t.co/phOvbyMH0r +06/02/2018,Politicians,@susanamendoza10,"Team Susana unite! Join me tomorrow, 6/3, as we march at the 59th Annual Roselle Rose Parade. To sign up, please cl… https://t.co/pwPJY8JopU" +06/02/2018,Politicians,@susanamendoza10,Nice hit! Go David! Go Cardinals! 💓 Tee Ball! https://t.co/AsSY39k1nE +06/01/2018,Politicians,@susanamendoza10,I’ve launched my 2018 website! If you would like to learn about what my team and I have accomplished in the last tw… https://t.co/0lNMcJDAem +06/01/2018,Politicians,@susanamendoza10,Happy #PrideMonth! 🏳️‍🌈 https://t.co/mUQuoMHLK9 +06/01/2018,Politicians,@susanamendoza10,"@ArchTwohey Thank you. 😊 How about, Mendoza for Comptroller? 😉" +06/01/2018,Politicians,@susanamendoza10,"Thank you, Illinois, for giving me & my stellar team the honor & privilege of working hard on your behalf. Thank yo… https://t.co/vjRmd2Abna" +05/31/2018,Politicians,@susanamendoza10,"RT @actionillinois1: Today Illinois lawmakers +☑️ratified the #ERA +☑️passed a balanced budget +☑️increased education funding +☑️crated an ant…" +05/31/2018,Politicians,@susanamendoza10,"RT @SanofiUS: People of all races, religions and nationalities work at Sanofi every day to improve the lives of people around the world. Wh…" +05/31/2018,Politicians,@susanamendoza10,RT @VozdeRaquel: Illinois: Getting stuff done this year. Proud of my legislature tonight. #ERANow and a budget? We're on FIRE! https://t.co… +05/31/2018,Politicians,@susanamendoza10,RT @WCIA3Mark: Sen. @ElgieSims says this bipartisan budget is evidence of what can happen when lawmakers focus on policy over politics. Not… +05/31/2018,Politicians,@susanamendoza10,Woohoo! Yes! Yes! Yes!!! https://t.co/T1pvqGlYV1 +05/31/2018,Politicians,@susanamendoza10,RT @HeidiLiFeldman: This is making me smile and cry at the same time. #ERA #ERANow https://t.co/qSsqRAWTjZ +05/31/2018,Politicians,@susanamendoza10,RT @ILComptroller: My heartfelt thanks go to the legislators of the State House & Senate for honoring women today by voting to make #Illino… +05/31/2018,Politicians,@susanamendoza10,"@AmandaVinicky Guilty as charged. Former legislator, mind you. 😉" +05/30/2018,Politicians,@susanamendoza10,Are you ready for parade this Sunday Jun 3? March with me and the Bloomingdale Township Democrats in the 59th Rosel… https://t.co/IWkX4Ap7eH +05/28/2018,Politicians,@susanamendoza10,Le Superman. Magnifique! https://t.co/g2bEZtbdRa +05/28/2018,Politicians,@susanamendoza10,Thank you. #MemorialDay https://t.co/usGw0q8jP9 +05/27/2018,Politicians,@susanamendoza10,Happy to cheer on the @chiredstarsPR on their Pride Match celebrating #inclusion with @ILTreasurer. Go Red stars! https://t.co/0gDu8MLVdI +05/26/2018,Politicians,@susanamendoza10,Had fun scoring on the @chiredstarsPR mascot Supernova today at the Pride Match during halftime. My former coaches… https://t.co/eAmtAojJAZ +05/26/2018,Politicians,@susanamendoza10,@Jodyanne1 @SeniorCaucus @ReclaimTheBurbs @reclaimchicago @peopleslobbyusa Sure. Info@susanamendoza.com. +05/24/2018,Politicians,@susanamendoza10,RT @PPIAction: “It’s exhausting to be a woman under this administration. This needs to stop. ” @susanamendoza10 #NoGagRule #IStandWithPP ht… +05/23/2018,Politicians,@susanamendoza10,RT @ChampaignCoDems: Congratulations to Ms Abrams! https://t.co/BFvfI9CpV4 +05/22/2018,Politicians,@susanamendoza10,"Going to make my honey, @DavidSzostak, a yummy dinner tonight. 😋 https://t.co/FLtZOvZ03X" +05/22/2018,Politicians,@susanamendoza10,"Wishing my dear friend, Stacey Abrams, good luck in her primary election tomorrow! If you have friends or family in… https://t.co/jP7um7WCrz" +05/20/2018,Politicians,@susanamendoza10,Congrats to the beautiful couple! May they live happily ever after. ❤️❤️❤️ #RoyalWedding https://t.co/mQ5F3NfWTt +05/18/2018,Politicians,@susanamendoza10,RT @GOVERNING: Illinois Comptroller Susana Mendoza has a long-running feud with gov. Bruce Rauner that has made her already difficult job t… +05/18/2018,Politicians,@susanamendoza10,"RT @RBLandmark: ""Just Judy"" is the first and only biography of the former Illinois state legislator, state comptroller, state treasurer and…" +05/17/2018,Politicians,@susanamendoza10,"RT @daveclarkin: I, too, an struck by the fact that the most significant accomplishments over the last three years in Springfield are thing…" +05/16/2018,Politicians,@susanamendoza10,RT @rrstar: Our View: Reforms meant to end deceptive spending practices. https://t.co/oHsKdQHJds https://t.co/xzsYqfSvVs +05/16/2018,Politicians,@susanamendoza10,.@sengerdarlene is unfit for a position of public trust. She disqualified herself as someone who cannot be trusted… https://t.co/tG4R8gLX7i +05/16/2018,Politicians,@susanamendoza10,@sengerdarlene is unfit for a position of public trust. She disqualified herself as someone who cannot be trusted b… https://t.co/VgHCAyBydM +05/13/2018,Politicians,@susanamendoza10,Happy Mother's Day to all those special moms out there! A special thank you to my amazing 82 year old mother. She's… https://t.co/sB5BL5eWRS +05/10/2018,Politicians,@susanamendoza10,"@ckjbg @sengerdarlene @WBEZ @davemckinney She works for Gov. Rauner. He has praised her work, hence endorsing it.… https://t.co/PkOhNF3KDb" +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene @WBEZ @davemckinney @GovRauner I'll tell you who it WASN'T: @SenDuckworth. #twill #Apologize2Tammy +05/10/2018,Politicians,@susanamendoza10,"@ckjbg @sengerdarlene @WBEZ @davemckinney Yes. In fact, Rauner is responsible for HIS administration's decision to… https://t.co/TncInGjhNq" +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene And here is new information uncovered today by @WBEZ @davemckinney. https://t.co/bKx0aark9V #twill #FailedGovernor +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene Here's how. This investigative report by @WBEZ @davemckinney lays out the FACTS. The… https://t.co/8mJNWeBWbe +05/10/2018,Politicians,@susanamendoza10,@mestasenesta @AnitaPadilla32 @JoanieLum @LisaChavarria @SylviaFOX32 @BurtonABC7 @erinkennedytv @MarissaBaileyTV… https://t.co/6GJkJPbs7l +05/09/2018,Politicians,@susanamendoza10,Truth. 💪 https://t.co/AxfP3tNLrZ +05/08/2018,Politicians,@susanamendoza10,@mestasenesta I appreciate you.🙂 +05/05/2018,Politicians,@susanamendoza10,"My family is the most important part of my life, so I was super excited to be at my son David Quinten's 1st Tee-Bal… https://t.co/TBUQBGjCGj" +05/05/2018,Politicians,@susanamendoza10,"""Blah blah blame blah...noise...blah blah blah blame blah""-@sengerdarlene. Didn't see an apology in all that blah b… https://t.co/FKWHU73QYU" +05/05/2018,Politicians,@susanamendoza10,"As low as it gets. #Apologize2Tammy +https://t.co/sgJCiZd8BJ" +05/05/2018,Politicians,@susanamendoza10,"RT @DonGerard: ""Thumbs down: @sengerdarlene for putting politics first as the severity of repeated Legionnaires disease outbreak at the Ill…" +05/04/2018,Politicians,@susanamendoza10,"RT @jasrubin: ""Democrats @JBPritzker and Comptroller @susanamendoza10 are demanding an apology"" #ilgov #twill https://t.co/p0y6KRyz3F" +05/04/2018,Politicians,@susanamendoza10,"RT @alexhanns: ""@JBPritzker and Comptroller @susanamendoza10 calling on @BruceRauner and his policy chief to apologize to @SenDuckworth."" @…" +05/03/2018,Politicians,@susanamendoza10,"""Rauner Administration got caught trying to pass the blame for the death of 13 veterans at a state home on to a wou… https://t.co/Tro5YIN9uH" +05/03/2018,Politicians,@susanamendoza10,Thank YOU for your service and for all you've done to protect our service men and women and our veterans. 💓 https://t.co/gm256z5SWW +05/03/2018,Politicians,@susanamendoza10,100% accurate. https://t.co/PWBSSt3zqJ +05/03/2018,Politicians,@susanamendoza10,https://t.co/f7I9RtrjoP https://t.co/iiOuPGpElv +05/03/2018,Politicians,@susanamendoza10,It’s appalling that someone with such poor character & misdirected moral compass would be running for statewide office. #twill +05/03/2018,Politicians,@susanamendoza10,"She needs to apologize: +➖To the families of the victims for choosing to protect her former boss over protecting… https://t.co/mj1jwZ64R3" +05/03/2018,Politicians,@susanamendoza10,"Today, I joined @JBPritzker @lindachapalavia @repkifowit @Gilbert36ward & IL veterans to call on @sengerdarlene (… https://t.co/zZcSB2NKTQ" +05/03/2018,Politicians,@susanamendoza10,RT @JBPritzker: Tune in as @susanamendoza10 and I discuss Bruce Rauner’s disastrous Quincy cover up and his attempt to blame U.S. Senator D… +05/02/2018,Politicians,@susanamendoza10,"RT @hannahmeisel: The *day after* WBEZ published its first story on the 13 deaths at the Quincy Vets Home in December, @GovRauner’s deputy…" +05/02/2018,Politicians,@susanamendoza10,"RT @ILComptroller: I loved visiting Landmark Cafe & Creperie while in Galesburg, #Illinois last month. If you’re in the area, the spinach b…" +05/02/2018,Politicians,@susanamendoza10,RT @EJMill: The latest from @davemckinney & @tonyjarnold on @GovRauner's response to the Veteran deaths in Quincy continues to drag this ad… +05/02/2018,Politicians,@susanamendoza10,"Hey, @DarleneSenger. Don't mess with @SenDuckworth. She left half her body on the battlefield fighting to protect u… https://t.co/47igtDe23z" +05/02/2018,Politicians,@susanamendoza10,"Instead of her immediate reaction to the deaths of 13 war heroes being, ""Good God, what can we do to help the remai… https://t.co/IDBYQJd045" +05/02/2018,Politicians,@susanamendoza10,Sick and shameless. https://t.co/8zsN3XEqYl +04/29/2018,Politicians,@susanamendoza10,"It's a tough job, but I'm honored and blessed to get to do it. Thank you, Illinois. https://t.co/1JlBpLxufz" +04/29/2018,Politicians,@susanamendoza10,@sunshinedreary @ILComptroller Wow. Thank you. So nice and appreciated. 😊 +04/27/2018,Politicians,@susanamendoza10,RT @GOVERNING: Illinois Comptroller Susana Mendoza has a long-running feud with gov. Bruce Rauner that has made her already difficult job t… +04/27/2018,Politicians,@susanamendoza10,"@DonSynowiec @ILComptroller It was a combination of cuts and taxes. Not pretty, but it stopped the state from caree… https://t.co/moWOYtt0zi" +04/27/2018,Politicians,@susanamendoza10,@DonSynowiec @ILComptroller Article 8 Section 2a of IL Constitution is clear: the GOVERNOR shall prepare and submit… https://t.co/GHg45dw4la +04/27/2018,Politicians,@susanamendoza10,@DonSynowiec @ILComptroller Article 8 Section 2a of IL Constitution is clear: the GOVERNOR shall prepare and submit… https://t.co/Mp2Vsj59jN +04/27/2018,Politicians,@susanamendoza10,I joined @AFSCME workers today to call on Gov Rauner to give them their court mandated step increases. It’s been th… https://t.co/pwRkxeCE7f +04/26/2018,Politicians,@susanamendoza10,"@tahmanbradley Rauner lies. The numbers don't. The Truth hurts. The truth is, it took @GovRauner only 2.5 years to… https://t.co/XEI0lWbRZd" +04/25/2018,Politicians,@susanamendoza10,"RT @melinrogovin: This was a failure of leadership by Bruce Rauner, plain & simple. Illinois suffered greatly as a result. It’s why I’m vot…" +04/24/2018,Politicians,@susanamendoza10,"Thank you for your leadership in sponsoring our Truth in Hiring legislation! +https://t.co/TJyUijnJLZ" +04/24/2018,Politicians,@susanamendoza10,"RT @repgregharris: And on top of this, because of @ILComptroller Mendoza's new debt transparency law, we found out that @GovRauner had yet…" +04/24/2018,Politicians,@susanamendoza10,"RT @ILComptroller: A special report released by my office today reveals that over the course of the 736-day-budget impasse, #Illinois accru…" +04/24/2018,Politicians,@susanamendoza10,"RT @ILComptroller: The fact that, under Governor Rauner, the state allowed its bill backlog to grow to a point where we incurred nearly two…" +04/24/2018,Politicians,@susanamendoza10,"RT @APOConnor: APNewsBreak: #IL late-payment interest since 2015 $1.14B, more than previous 18 years combined. @APCentralRegion: https://t.…" +04/23/2018,Politicians,@susanamendoza10,"“Empowered women, empower women."" It was a pleasure to co-chair Congresswoman @janschakowsky’s Annual Women's Power… https://t.co/yOXFCSxL1E" +04/23/2018,Politicians,@susanamendoza10,Honored to co-chair & looking forward to attending today’s Ultimate Women’s Power Lunch in support of superstar Con… https://t.co/T2QMMx4ID5 +04/19/2018,Politicians,@susanamendoza10,RT @ILComptroller: Thank you to @cljmitchell & all of the cosponsors of the #Truthinhiring Act! I am thrilled that it passed unanimously to… +04/19/2018,Politicians,@susanamendoza10,RT @ILComptroller: Thank you to all the members of the #Illinois House of Representatives who voted UNANIMOUSLY to pass the #TruthinHiring… +04/19/2018,Politicians,@susanamendoza10,RT @TrishPrabhu: It was an honor to speak at the @ymca State Advocacy Day today! Thank you @ILComptroller @susanamendoza10 for your keynote… +04/18/2018,Politicians,@susanamendoza10,"Rest in Peace, First Lady Barbara Bush. My condolences to the entire Bush family for their enormous loss. She was a… https://t.co/iQ6kU4GyWv" +04/13/2018,Politicians,@susanamendoza10,RT @alexhanns: Must be tough being a failed governor #ilgov #twill https://t.co/EoR15hKUdI +04/13/2018,Politicians,@susanamendoza10,RT @alexhanns: And another: @BruceRauner's then-legislative director @sengerdarlene wanted to blame Rauner's fatal mismanagement of the Qui… +04/13/2018,Politicians,@susanamendoza10,"RT @alexhanns: #FlashbackFriday to @BruceRauner exchanging his ""to do"" list for a ""to blame"" list: https://t.co/Kbj4uBZK0V #ilgov #twill ht…" +04/13/2018,Politicians,@susanamendoza10,RT @IllinoisWorking: 2) Rauner is training his team in the ways of blame. Remember when Rauner’s hand-picked comptroller candidate Darlene… +04/13/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: wait wait wait...today is NATIONAL BLAME SOMEONE ELSE DAY? + +how can we NOT look at some of the highlights of Bruce Rau…" +04/12/2018,Politicians,@susanamendoza10,Thanks for your support! https://t.co/JYxW57tfk1 +04/12/2018,Politicians,@susanamendoza10,RT @TheMartyCastro: Great turnout tonight for @susanamendoza10 general #election #campaign kickoff including great friends like @billzwecke… +04/11/2018,Politicians,@susanamendoza10,RT @TheMartyCastro: Looking forward to attending @susanamendoza10 general #election #campaign kickoff tomorrow night at @texasdebrazil! Ple… +04/07/2018,Politicians,@susanamendoza10,Dems came together 4 Interfaith #Unity Breakfast today at the New Home Baptist Church in Chicago. I’m proud to be p… https://t.co/r2b2NiBsTQ +04/05/2018,Politicians,@susanamendoza10,And in today's feel good/awesome story...https://t.co/74tP1zCD6p +04/04/2018,Politicians,@susanamendoza10,"@JimmyRiley234 Thanks, Jim! It was delish and an even bigger treat to get to see you! 😃" +04/03/2018,Politicians,@susanamendoza10,The #bluewave is certainly coming through McDonough County! Wonderful seeing the loyal McDonough democrats tonight.… https://t.co/gn2tXuWgq4 +04/02/2018,Politicians,@susanamendoza10,"RT @ILComptroller: To mark #WorldAutismday, I visited Willowglen Academy. The dedicated efforts of staff there help #IL residents w/ specia…" +04/01/2018,Politicians,@susanamendoza10,Great season @LoyolaChicago Ramblers! You made Chicago and Illinois and fans across the country very proud. Hold yo… https://t.co/arGK6luG92 +03/31/2018,Politicians,@susanamendoza10,"C'mon, @LoyolaChicago Ramblers! Up at halftime. Keep that lead going to the very end! You can do it!!! Great team +… https://t.co/2pfjIl6LiX" +03/31/2018,Politicians,@susanamendoza10,"On April 12th, celebrate the life and legacy of the late and great Judy Baar Topinka! All proceeds from this event… https://t.co/AKkAqP07rT" +03/26/2018,Politicians,@susanamendoza10,"RT @playbookplus: With the last four teams decided, @BallardFirm's Brian Ballard sits at the top of #PlaybookPool, followed closely behind…" +03/25/2018,Politicians,@susanamendoza10,RT @cnnbrk: Aerial footage shows the turnout at various March for Our Lives events across the US today https://t.co/K4g34viFVh https://t.co… +03/25/2018,Politicians,@susanamendoza10,This is so great!!! Congrats @LoyolaChicago Ramblers and way to go #SisterJean! 🏀 https://t.co/CAGQq8mNdh +03/24/2018,Politicians,@susanamendoza10,RT @gslayen: READ: Downstate holds key to @JBPritzker’s blowout win in primary via @SJRbreaking: https://t.co/hzMEnugQgp #ilgov #twill +03/24/2018,Politicians,@susanamendoza10,@Jrock08 @GovRauner I imagine it would be something like this fast: https://t.co/s2W5qloyzi via @giphy +03/24/2018,Politicians,@susanamendoza10,"#FAILEDGOVERNOR @GovRauner thinks mismanaged taxpayer $ is no big deal. ""Clerical errors, or mistakes, get made, an… https://t.co/izKOHoUQgr" +03/24/2018,Politicians,@susanamendoza10,"RT @kylegriffin1: 11-year old Christopher Underwood, who lost his brother to gun violence: “For me, I would like to not worry about dying,…" +03/24/2018,Politicians,@susanamendoza10,"RT @NancyRotering: We do not have to live like this. +#Enough #MarchForOurLives #StopTheSlaughter #TheTimeIsNow" +03/24/2018,Politicians,@susanamendoza10,Democrats were energized and ready to work hard to elect @JBPritzker and @JulianaforLG at this morning’s Unity Brea… https://t.co/MOoKwcuzuK +03/23/2018,Politicians,@susanamendoza10,RT @POLITICOPress: #PlaybookPool update! @Steve_Glazer currently leads our scoreboard with @RepDebDingell @ChicagosMayor @susanamendoza10 @… +03/23/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: this is *bananas*, especially from the guy who is trying to destroy unions under the guise of “forced political speech…" +03/23/2018,Politicians,@susanamendoza10,@WCIA3Mark @zakouts84 @GovRauner https://t.co/YOe3KqR9G2 +03/23/2018,Politicians,@susanamendoza10,Woohoo! @LoyolaChicago Ramblers did it! Great job boys and thank you Sister Jean! I was praying right along with yo… https://t.co/vth88LOa0S +03/23/2018,Politicians,@susanamendoza10,It's tied. Don't lose faith. C'mon people - start praying with Sister Jean! Let's go @LoyolaChicago Ramblers! https://t.co/tSIHMZqpC3 +03/23/2018,Politicians,@susanamendoza10,"RT @IGsolidarityNET: @LoyolaChicago's halftime lead is huge — now stand w/ Belsy Garcia, a 3rd-Year Loyola Medical School student whose fat…" +03/22/2018,Politicians,@susanamendoza10,"Woohoo! Let's do this, @LoyolaChicago Ramblers! Keep praying, Sister Jean!!! 💓" +03/22/2018,Politicians,@susanamendoza10,"RT @gslayen: While @JBPritzker has a clear vision for beating @BruceRauner in the general election, the failed governor is still fighting w…" +03/22/2018,Politicians,@susanamendoza10,@mary_cresto Thank you! 💓 +03/21/2018,Politicians,@susanamendoza10,I'm so proud of my friends @JBPritzker & @JulianaforLG for their remarkable victory in last night's Democratic Prim… https://t.co/HbkxM1poQ4 +03/21/2018,Politicians,@susanamendoza10,RT @ILDCCA: Congrats to @JBPritzker & @JulianaforLG! Let’s work together to unite @demsforillinois and win in November! #JBForGov #Democrat… +03/21/2018,Politicians,@susanamendoza10,"Thanks, @Ameya_Pawar_IL! https://t.co/rPtb1AP34g" +03/20/2018,Politicians,@susanamendoza10,There’s still time left to cast your vote! Meeting some voters at Union Train Station with @JBPritzker &… https://t.co/aKWozJowHw +03/20/2018,Politicians,@susanamendoza10,"Quick coffee break ☕️ on the campaign trail with @JBPritzker, @chicityclerk, @AldermanSolis & others. Get out there… https://t.co/tBlSN2MoQj" +03/20/2018,Politicians,@susanamendoza10,Fun phone banking with some fantastic volunteers at JB & Juliana’s South Side Office! #twill #ILGov https://t.co/BxODMQ8ntP +03/20/2018,Politicians,@susanamendoza10,It’s always good to be back in Little Village— The place I was born in and gave me my start in politics. I had lunc… https://t.co/OCaxKypF9x +03/20/2018,Politicians,@susanamendoza10,@WendiChicago Aww. Thanks! Good times: https://t.co/Sy9uSq1N3s +03/20/2018,Politicians,@susanamendoza10,"This is exactly @JBPritzker and why I truly believe he will make a great Governor. Genuine and down to earth, huge… https://t.co/zt69pIlmGo" +03/20/2018,Politicians,@susanamendoza10,RT @tayloremrey: Just three awesome women who are #TeamJB @JulianaforLG @susanamendoza10 @anacaprana https://t.co/qW1TM4eI1X +03/20/2018,Politicians,@susanamendoza10,"It was great starting my morning with some delicious Manny’s Deli— an Election Day tradition! Everyone, remember to… https://t.co/ZVqX2kCn1q" +03/20/2018,Politicians,@susanamendoza10,RT @WendiChicago: I voted for @susanamendoza10 for all the usual good reasons but also because she's a badass who chased down a drunk drive… +03/20/2018,Politicians,@susanamendoza10,@rl_klein Thanks 💓 +03/20/2018,Politicians,@susanamendoza10,Today is your last chance to #VOTE! Please get out there and make it count! https://t.co/sYaWVzX1SH +03/19/2018,Politicians,@susanamendoza10,"@JBPritzker, Treasurer @MikeforIllinois, and I addressed laborers from Local 393 in Marseilles, Illinois. Let’s ens… https://t.co/O68cETiXEV" +03/19/2018,Politicians,@susanamendoza10,RT @JordanAbudayyeh: .@JBPritzker @MikeforIllinois and @susanamendoza10 standing with AFSCME members striking for better wages at NIU. #twi… +03/19/2018,Politicians,@susanamendoza10,@CarlNyberg312 @45thWardDems @DanielBiss @LitesaWallace @RepJaimeAndrade @Melissa4DPI @ToniPreckwinkle… https://t.co/IyNTtRPbWl +03/19/2018,Politicians,@susanamendoza10,@rick_bossen Yes. Enthusiastically endorsing @JBPritzker & Juliana! +03/19/2018,Politicians,@susanamendoza10,"RT @playbookplus: After two rounds of basketball, @RepDebDingell, @ChicagosMayor Rahm Emanuel and @susanamendoza10 sit at the top of the #P…" +03/19/2018,Politicians,@susanamendoza10,"RT @POLITICOPress: Leading our #PlaybookPool VIP right now -- @RepDebDingell, with @ChicagosMayor & @susanamendoza10 following closely behi…" +03/18/2018,Politicians,@susanamendoza10,Beautiful day for a bike ride! 20 miles on the North Branch Trail with a little pit stop for DQ to get some ice cre… https://t.co/7UVUHdqFRY +03/18/2018,Politicians,@susanamendoza10,Let's do this! Join us to help get Illinois back on track! https://t.co/5Sx2ivBu9a +03/18/2018,Politicians,@susanamendoza10,OMG. Way to go @RamblersMBB! You're making Illinois proud - you made the Sweet 16! #MarchMadness https://t.co/lUAUZOSM7v +03/18/2018,Politicians,@susanamendoza10,Sister Jean and the @RamblersMBB rock! Go Loyola Ramblers!!! 🏀 https://t.co/zTsG35ibKc +03/18/2018,Politicians,@susanamendoza10,"I spent my #StPatricksDay2018 in Chicago in the best way imaginable, alongside my family and friends at the downtow… https://t.co/bGH2qmDjJL" +03/17/2018,Politicians,@susanamendoza10,Go @DePaulWBBHoops Lady Blue Demons! Congrats!! Illinois is proud and rooting for you. https://t.co/orPf0yYLgb +03/16/2018,Politicians,@susanamendoza10,March with me in the upcoming Chicago St. Patrick's Day Parade! Sign up here: https://t.co/BnNyJiWoMD #StPatricksDay https://t.co/VpK8Lw1Uz2 +03/15/2018,Politicians,@susanamendoza10,RT @lumitynpo: Team “Eco-Friends” pitch their hydroponic tower to @susanamendoza10. The tower would combat #fooddeserts and create jobs in… +03/15/2018,Politicians,@susanamendoza10,YES! Go @RamblersMBB! Congrats!! #MarchMadness https://t.co/30vryYVvbd +06/30/2018,Politicians,@BrianBallard723,Love this! https://t.co/KHzm9mjX9m +06/05/2018,Politicians,@BrianBallard723,JOY! https://t.co/M2vvzIEBAY +06/05/2018,Politicians,@BrianBallard723,WIN!!!!!!!! #AllCaps @neverest5 #StanleyCup https://t.co/gbnyBpl8r9 +06/04/2018,Politicians,@BrianBallard723,"LET'S GO CAPS!!! + +#ALLCAPS" +06/01/2018,Politicians,@BrianBallard723,"As a #ALLCAPS fan who was at Game 1, I got to meet a wonderful and welcoming set of fans. For those who cheer… https://t.co/ngkObk5E7P" +05/30/2018,Politicians,@BrianBallard723,Fireside chat - AR transformation from the experts @neverest5 @blumbr01 @upskillio @Accenture #AWE2018 #Industry40 https://t.co/Dml7o7ppNI +05/29/2018,Politicians,@BrianBallard723,@maxwellelliot Thanks buddy! +05/29/2018,Politicians,@BrianBallard723,GOAL 4 https://t.co/BjcDUGwYvF +05/29/2018,Politicians,@BrianBallard723,Overall a really good show. Felt a bit like a Medieval Times show during the knight part. But the venue is pretty a… https://t.co/4KfWpfluHr +05/29/2018,Politicians,@BrianBallard723,WIN ONE FOR DC! #ALLCAPS https://t.co/8IMqy6N4pp +05/16/2018,Politicians,@BrianBallard723,"Into Enterprise Augmented Reality that matters? Let us know, vote for Skylight for best AR Application for Enterpri… https://t.co/047C2R5C2n" +05/15/2018,Politicians,@BrianBallard723,"@Plantandwatch Fair enough. When I'm quiet on twitter(always), I'm probably busy on work(almost always). What do u want to know?" +05/15/2018,Politicians,@BrianBallard723,I think ARGrandpa would be a great new Twitter handle for you! ;) https://t.co/lDLCNivalh +05/15/2018,Politicians,@BrianBallard723,RT @upskillio: Time to VOTE! Choose Skylight for Best Enterprise Solution for this year's Auggie Awards ----> https://t.co/hKsYxCJyLv https… +05/15/2018,Politicians,@BrianBallard723,@SteveCase I can believe that! It certainly created a challenge in my home.... Daughter is 'Lexi'. I ask her a ques… https://t.co/HnmivhvvW7 +04/23/2018,Politicians,@BrianBallard723,RT @upskillio: Excited for tonight's Opening Ceremony at @hannover_messe! We've been nominated as one of five finalists for the Hermes Awar… +04/23/2018,Politicians,@BrianBallard723,So proud of the team for this accomplishment. https://t.co/pnxGs1iWPW +04/23/2018,Politicians,@BrianBallard723,RT @neverest5: About to go on stage with Eric Schaeffer lex @Accenture #IndustryX0 panel on artificial intelligence! https://t.co/4mj8AY6ZkS +04/22/2018,Politicians,@BrianBallard723,RT @neverest5: #HM18 opening ceremony representing @upskillio in the VIP area with @christinebohle - two very powerful women in close proxi… +04/22/2018,Politicians,@BrianBallard723,RT @upskillio: So amazing to be here and be part of it! Thank you @hannover_messe for recognizing our hard work and technology! https://t.c… +04/19/2018,Politicians,@BrianBallard723,As we get ready for #HannoverMesse I thought I'd share this blast from the past. Look @upskillio up this year in H… https://t.co/Lq7ieRngDI +03/27/2018,Politicians,@BrianBallard723,"This is truly heartwarming. + +Cisco commits $50 million to help fix Silicon Valley's homelessness crisis… https://t.co/l0B391VDKO" +02/07/2018,Politicians,@BrianBallard723,RT @DMDII_: We're looking forward to the first day of our Augmented Reality Workshop with @theAREAorg! Thank you to our sponsors @Boeing &… +01/11/2018,Politicians,@BrianBallard723,RT @neverest5: @Vuzix color me impressed on the #VuzixBlade! I've seen the fundamental tech working with you for a while & this product ex… +11/11/2017,Politicians,@BrianBallard723,@ddebow Verified by a 3yr old too +10/24/2017,Politicians,@BrianBallard723,Once the helmet goes on though... @alexkelly617 needs to try out @rideNUVIZ! https://t.co/LAULBaO5fk +10/21/2017,Politicians,@BrianBallard723,RT @upskillio: Chris Delvizis demos #Skylight Application Builder to a packed house. Learn how you can build #AR apps without code. https:/… +10/19/2017,Politicians,@BrianBallard723,"RT @rideNUVIZ: What an honor! NUVIZ has been awarded @popsci’s 2017 Best of What’s New award in the Automotive category! #BOWN2017 +https://…" +10/19/2017,Politicians,@BrianBallard723,RT @PaulBorisVuzix: Peggy Gulick of industry leader .@AGCOcorp - “...wearables are just one more tool in our #Lean Toolbox.” @BrainXchange1… +10/19/2017,Politicians,@BrianBallard723,RT @PaulBorisVuzix: Bryan Shackelford .@EastmanChemCo “...we team with hardware partners to drive adoption in harsh environments “@BrainXch… +10/19/2017,Politicians,@BrianBallard723,"RT @fcostaealmeida: Coca Cola shares examples of #AugmentedReality use cases on stage @ #AWE2017: remote maintenance, lead time reduction &…" +10/19/2017,Politicians,@BrianBallard723,"RT @VirtualGirlNY: This tech is ""fundamentally changing how we work"" - Jay Kim @neverest5 @comogard @upskillio @jaykothari #googleglass #A…" +10/19/2017,Politicians,@BrianBallard723,RT @neverest5: Thanks for inviting @upskillio to open #AWE2017 Europe! What an honor to kick it off! https://t.co/SMyDZyiR4z +10/19/2017,Politicians,@BrianBallard723,RT @ARealityEvent: The expo at AWE Europe is open #AWE2017 https://t.co/weYpXR2PJe +10/01/2017,Politicians,@BrianBallard723,RT @ARealityEvent: Just announced! Our keynote talk from @CocaCola @upskillio & Glass from Google's @Theteamatx at AWE Europe 2017 https://… +10/01/2017,Politicians,@BrianBallard723,RT @JAaronTate: Great lineup of #logistics topics at @poweredbymhi #MHIES17 including @TheAtlantic 's @alexismadrigal Honored to represent… +09/29/2017,Politicians,@BrianBallard723,RT @upskillio: Woot woot! @upskillio announced runner up as the Best Tech Startup in DC. Congrats to our hard working team #TimmyAwards htt… +09/29/2017,Politicians,@BrianBallard723,RT @neverest5: Looking forward to kicking the event off right! https://t.co/KmRSQ7huaH +09/24/2017,Politicians,@BrianBallard723,"RT @upskillio: According to @Dell, 1 in 5 workers are looking forward to #AR for skills acquisition. Learn about the smart office. https://…" +09/19/2017,Politicians,@BrianBallard723,RT @ChrisHoyt1: Love our partnership with @GE_Ventures and @generalelectric. Augmented Reality is going to change the work gets done in en… +07/28/2017,Politicians,@BrianBallard723,Head-worn with a purpose! https://t.co/3aPgoPLKD4 +07/28/2017,Politicians,@BrianBallard723,Love this. Hope it can make a dent on our output. https://t.co/Bxu5ONjdW5 +07/21/2017,Politicians,@BrianBallard723,"RT @GE_Reports: Smart Specs: OK Glass, Fix This Jet Engine https://t.co/3t7NcMc7xx @Google @GEAviation #avgeek" +07/19/2017,Politicians,@BrianBallard723,RT @GE_Ventures: Ready for the future in productivity? Check out @upskillio’s successful smart glasses pilot at @GEAviation: https://t.co/J… +07/19/2017,Politicians,@BrianBallard723,@RynFnk @upskillio Thank you @RynFnk !! +07/19/2017,Politicians,@BrianBallard723,@danprimack And mine was running around in her 'Elsa Dress' today. Must be a subconscious thing happening! Good luck. +07/18/2017,Politicians,@BrianBallard723,RT @neverest5: This is a huge milestone for #GlassEE and @upskillio having worked together for many yrs - excited for the future! https://t… +07/18/2017,Politicians,@BrianBallard723,"RT @StevenLevy: Google Glass is back! This time, for work. I visit a factory in Midwest for exclusive story. https://t.co/U9ck2oykb5" +07/18/2017,Politicians,@BrianBallard723,RT @RaymondDurk: @StevenLevy I miss that device so much. It's the best device I've ever used despite being a beta product. 😍 +07/07/2017,Politicians,@BrianBallard723,"RT @jsantell: Exploring stenciling and portals in WebAR, using 6DOF tracking/camera rendering #XR #AR #VR https://t.co/ifgnEUVMFK" +06/17/2017,Politicians,@BrianBallard723,@GaneshBell @alexkelly617 Have you guys watched Faster? +06/13/2017,Politicians,@BrianBallard723,"RT @neverest5: @theAREAorg @upskillio A little more than a month later, the @PristineIO team (now the @upskillio Austin team) has had an am…" +05/31/2017,Politicians,@BrianBallard723,Interesting comparison by @Boeing's Paul Davies on Technology Readiness Level vs Cultural Readiness Level. Great in… https://t.co/WQw5vCPmXJ +05/16/2017,Politicians,@BrianBallard723,Help out team @upskillio on our quest to lead the workforce revolution. This time in a friendly competition. Vote: https://t.co/rFglz61E3w +05/12/2017,Politicians,@BrianBallard723,Great #connectedworkforce insights from GE's @SamMurley at #EWTS17 +05/11/2017,Politicians,@BrianBallard723,I hope this trend continues @c3croteau and we can collect a whole set! #EWTS17 https://t.co/jnwX1cy1Fw +05/09/2017,Politicians,@BrianBallard723,"RT @NHL: #Game7. + +#StanleyCup https://t.co/svCihSSkAI" +05/09/2017,Politicians,@BrianBallard723,"Welcome to the team, @PristineIO https://t.co/XfsqVvNMDj https://t.co/PibdEbRf4s" +04/27/2017,Politicians,@BrianBallard723,"RT @upskillio: Good morning, Germany! You don't want to miss our #IoT #manufacturing demo with @Recon Jet Pro @hannover_messe Hall 6, G52/7…" +04/27/2017,Politicians,@BrianBallard723,RT @upskillio: Learn how 4 companies use Skylight to improve performance & lower costs in #manufacturing and #logistics --> https://t.co/Kw… +04/27/2017,Politicians,@BrianBallard723,RT @neverest5: All that equipment on the so-called #industry40 worker? Get this person some #smartglasses & get rid of all the other stuff.… +04/27/2017,Politicians,@BrianBallard723,RT @ericjohnsen: looking fwd seeing friends in AR space at #AWE2017 @ARealityEvent. thx to @Qualcomm for panel invite https://t.co/knzpmq0d… +04/24/2017,Politicians,@BrianBallard723,"RT @BenRaby31: Closing out series isn't easy, they easy. Since 2010, #Caps are 1-5 in GM6 with chance to advance; 2016 the exception https:…" +04/18/2017,Politicians,@BrianBallard723,RT @AMRayEsq: The technology ecosystem in the DMV is large and vibrant: https://t.co/RH1axUyzeF +04/12/2017,Politicians,@BrianBallard723,"RT @editorialiste: ""I never realized how amazing humans are until I tried to build one."" —Nest CTO Yoky Matsuoka at… https://t.co/xpHFk5TCnD" +04/05/2017,Politicians,@BrianBallard723,@augmedix @ianshakil @upskillio @Boeing @GEHealthcare I love that # ! +04/05/2017,Politicians,@BrianBallard723,"Fuel for the journey ahead! ""New Funding: How @Boeing HorizonX @GE_Ventures will help us Scale +""https://t.co/hKzdylvH4M @upskillio" +04/05/2017,Politicians,@BrianBallard723,"Knock 'em dead, Jay https://t.co/vMNR2Mmv21" +03/31/2017,Politicians,@BrianBallard723,"Congratulations @Betsy_Atkins & John Dineen, powerhouse additions to board of directors @Cognizant! https://t.co/tqMAtZNsKD #tech" +03/31/2017,Politicians,@BrianBallard723,RT @SamMurley: What's Next: Preparing Your Organization For Enterprise Wearables from @Inteliot @Recon @upskillio https://t.co/nDTDquENMg h… +03/30/2017,Politicians,@BrianBallard723,There are a slew of impressive #AR devices that have come or are coming. 2017 has just started and it's exciting https://t.co/bwLELHdjzf +03/13/2017,Politicians,@BrianBallard723,RT @upskillio: We're hiring in #softwareengineering and #accounting. Come work with this awesome team! https://t.co/Egqax3ubEv https://t.co… +03/13/2017,Politicians,@BrianBallard723,RT @PaulBorisGE: This video says it all @GE_Digital @upskillio @Vuzix GE Renewables Skylight Side-by-Side Productivity https://t.co/qmxoUb… +03/13/2017,Politicians,@BrianBallard723,RT @upskillio: New report on @HarvardBiz discusses how #AR improves worker performance. By @marcoannunziata & @m_abraham https://t.co/DECHu… +03/12/2017,Politicians,@BrianBallard723,"RT @CHIhealth: How #GoogleGlass is improving the patient-provider experience: +https://t.co/tZZQb7v5Nf https://t.co/RvdVbbig8G" +03/11/2017,Politicians,@BrianBallard723,RT @upskillio: Know any rockstar #AndroidDevelopers? We're hiring! https://t.co/iZD9HlpDz6 +03/06/2017,Politicians,@BrianBallard723,"RT @kevinspain: After a Decade, the Mobile Enterprise Revolution Has Only Just Begun https://t.co/d8NykM6zIk" +03/02/2017,Politicians,@BrianBallard723,RT @ElizabethWatson: Rocking @Recon Jet Pros at the @DC_Inno #techmadnessdc event tonight! https://t.co/Dxk92B6mIb +03/02/2017,Politicians,@BrianBallard723,RT @upskillio: We made it into @DC_Inno #techmadnessdc bracket! Had a great night demoing @Vuzix & @Recon with @christinebohle and @Elizabe… +02/28/2017,Politicians,@BrianBallard723,RT @neverest5: Getting ready to give a talk on how smart glasses empower the #industry40 workforce featuring @upskillio Skylight at @AirWat… +02/13/2017,Politicians,@BrianBallard723,What!?!??! How did Chick-fil-A just roll out the best VR commercial yet!? FTW +02/09/2017,Politicians,@BrianBallard723,"So so so awesome. + +https://t.co/VUIKkEV0Dx" +02/02/2017,Politicians,@BrianBallard723,RT @augmedix: Watch out for #Augmedix in 2017. Click https://t.co/9JDPwJAOtg for the full list +02/02/2017,Politicians,@BrianBallard723,So proud of these guys @rideNUVIZ. Great product vision. Great partnership. The fuel to make it real. Ride on!… https://t.co/36XqCbYYNV +01/28/2017,Politicians,@BrianBallard723,"RT @upskillio: In just 3 to 5 years, @PaulBorisGE can’t imagine a person on the plant floor that doesn’t have a wearable https://t.co/YXcZk…" +01/20/2017,Politicians,@BrianBallard723,"Loved the chance to share our vision, @EllynJShook1. Glad to have amazing partners on the journey. Thank you!" +01/16/2017,Politicians,@BrianBallard723,RT @ItsYamnitsky: .@upskillio's rebranding in full effect >> https://t.co/nGajvNqXes @BrianBallard723 @ChrisHoyt1 are the robin hoods of Io… +01/16/2017,Politicians,@BrianBallard723,RT @neverest5: The big moment - APX Labs is now Upskill! @upskillio +01/16/2017,Politicians,@BrianBallard723,RT @upskillio: Why Upskill? @BrianBallard723 answers that question: https://t.co/N64viNJ6eD +01/15/2017,Politicians,@BrianBallard723,"Great share @PaulBorisGE @S_Leffler . ""The more we know – the more we can do"" should guide all kids' confidence. Adults too..." +01/11/2017,Politicians,@BrianBallard723,RT @neverest5: The webinar I did for @APXLabs on enterprise #augmentedreality and #wearables is now available on demand: https://t.co/jhfqS… +01/06/2017,Politicians,@BrianBallard723,Kudos to the @united crew at #FtLauderdale. You guys are a class act in an otherwise terrible situation. +01/02/2017,Politicians,@BrianBallard723,"RT @thevrara: VR and AR have very high disruption potential to ""change the world"" according to @forrester #VirtualReality #AugmentedReality…" +12/07/2016,Politicians,@BrianBallard723,RT @neverest5: Representing @APXLabs at @GE_Ventures Advanced Manufacturing Summit. Inspiring talk by @TimRyan on the future of USA #manufa… +12/05/2016,Politicians,@BrianBallard723,RT @APXLabs: #50onFireDC #APXLabs We build technology that makes people competitive in the industrial world #bravo https://t.co/vrdRvdOjAA +11/18/2016,Politicians,@BrianBallard723,RT @lizzyli18: How does augmented reality enhance manufacturing? Learn from @APXLabs at the Digital Industrial Journey booth at 1 pm. #GEMM… +11/18/2016,Politicians,@BrianBallard723,RT @lizzyli18: #GEMM16 day 1! Visit the Digital Industrial Journey booth to see live manufacturing + augmented reality! @OkumaAmerica @APXL… +11/18/2016,Politicians,@BrianBallard723,We were all in SF for #GEMM16 !! :) https://t.co/S7gms23ldB +11/18/2016,Politicians,@BrianBallard723,"RT @jpsoltesz: #GEMM16 Jeff Immelt: in any economy, winning has a common face: productive, innovative, competitive, adaptive and resilient…" +11/18/2016,Politicians,@BrianBallard723,RT @laura_correnti: Congrats @lindaboff on being named one of top 5 CMOs in the world! To more fun and more innovation! https://t.co/V4OKNl… +11/18/2016,Politicians,@BrianBallard723,"RT @marcoannunziata: and as @bethcomstock noted, it happens ""gradually, then suddenly"" (Hemingway). A biologist quoting a novelist to expla…" +11/17/2016,Politicians,@BrianBallard723,Great premise at #GEMM16. @PaulBorisGE and @marcoannunziata exploring how technology benefits the workforce. Realit… https://t.co/GikOgSzHbT +11/15/2016,Politicians,@BrianBallard723,RT @neverest5: #PatentMonday for @APXLabs! Proud of the team that continues to create innovations in #augmentedreality #industrie40 #IIoT… +11/10/2016,Politicians,@BrianBallard723,"RT @AlVelosa: I've repeated this my whole trip: +#IoT is not about the technology. It's about the business process transformation" +11/07/2016,Politicians,@BrianBallard723,My favorite people in tech. @DC_Inno 50onFire fun. @JeffEJenkins @neverest5 @JAaronTate @APXLabs https://t.co/wiRmN8Tgz7 +11/02/2016,Politicians,@BrianBallard723,RT @DanNieves: Love the quote when you walk into @Work_Bench - looking forward to the #nyctech Meetup tonight with @RRE and @PrimaryVC as w… +10/26/2016,Politicians,@BrianBallard723,"RT @helengreiner: Technology has created more jobs than it has destroyed, says 140 years of data https://t.co/fegYHstvnQ" +10/26/2016,Politicians,@BrianBallard723,RT @jgownder: Great #VirtualReality comic strip from @berkebreathed https://t.co/QRexN13KqC +10/25/2016,Politicians,@BrianBallard723,RT @neverest5: Congrats to my friends at @eyefluence! Google Acquires Eyefluence: https://t.co/cubMolzpPP +10/09/2016,Politicians,@BrianBallard723,RT @GeorgeTakei: I'm just going to let this speak for itself. https://t.co/DPiwpmx5ii +10/08/2016,Politicians,@BrianBallard723,RT @comogard: Mark Zuckerberg's VR Selfie Is a Bigger Deal Than You Realize https://t.co/QtGGhqxsQV via @WIRED +10/08/2016,Politicians,@BrianBallard723,"RT @NEA: A ""smart"" partnership. @VMware and @APXLabs join forces to make smart glasses more #enterprise friendly: https://t.co/b2GtTBWYRX" +10/07/2016,Politicians,@BrianBallard723,RT @BrainXchange1: .@VMware Partners with @APXLabs to Support Workplace #Wearables https://t.co/pojc4hr7MJ #smartglasses #enterprisemobilit… +10/05/2016,Politicians,@BrianBallard723,RT @neverest5: Material handling application powered by Skylight @APXLabs starting! https://t.co/ZrRQwBOfBi +10/05/2016,Politicians,@BrianBallard723,RT @neverest5: One size doesn't fit all for smart glasses. That's exactly why bwhat we built Skylight by @APXLabs for. #awconnect https:/… +10/04/2016,Politicians,@BrianBallard723,"RT @neverest5: Sue Harris from @Boeing ""We have been working with @APXLabs on smart glasses technology and can't go fast enough."" #AWConnec…" +10/04/2016,Politicians,@BrianBallard723,"RT @neverest5: Sanjay Poonen from @AirWatch : ""@APXLabs is the leading smart glasses software provider in the industry"" #AWConnect" +10/04/2016,Politicians,@BrianBallard723,RT @AirWatch: Sue Harris of @Boeing onstage talking about the impact of mobile tech on aviation #AWConnect https://t.co/hfF63qF0qQ +10/04/2016,Politicians,@BrianBallard723,RT @teena_maddox: @VMware and @APXLabs announce a unified solution for smart glass management in the enterprise https://t.co/2nfQ8qMC8U @te… +09/28/2016,Politicians,@BrianBallard723,RT @albertschan: Great partnership @SutterHealth @augmedix to improve patient/provider experience. Thx @lizzadwoskin @washingtonpost https:… +09/28/2016,Politicians,@BrianBallard723,"Elon Musk: A Million Humans Could Live on Mars By the 2060s +https://t.co/mvCSkLjsSa" +09/27/2016,Politicians,@BrianBallard723,Wearables powering #AdvancedManufacturing https://t.co/yyK1JL3eIE @APXLabs +08/16/2016,Politicians,@BrianBallard723,"Friends, help vote up Jay, Paul, and myself at our SXSW Panel. We'll be talking about a whole new future of work https://t.co/D9FBVWpFtu" +08/16/2016,Politicians,@BrianBallard723,Vote for #SXSW Panel: Rehumanizing Manufacturing: AR and Industry 4.0 https://t.co/N8uJXdRscK @APXLabs @GE_Digital +07/29/2016,Politicians,@BrianBallard723,"RT @augmedix: Meet the Google Glass Company Saving Doctors Hours Each Day +https://t.co/EUSSHhzPde -nice coverage from @MDDIonline https://t…" +07/23/2016,Politicians,@BrianBallard723,https://t.co/uAkdR4M6B0 +07/18/2016,Politicians,@BrianBallard723,"""I would encourage everyone to look at #MixedReality [for] business apps ...as it will really be the most transformative"" -@satyanadella" +07/13/2016,Politicians,@BrianBallard723,RT @ianshakil: The Internet of Medical Things will continue to evolve; @augmedix is leading the way https://t.co/nh4ibPopUz https://t.co/rJ… +07/12/2016,Politicians,@BrianBallard723,@Anon0Mouse @magicleap @RickKing16 I think Fortune streamed it +07/12/2016,Politicians,@BrianBallard723,Just listened to @magicleap CEO and CMO at #FortuneTech. Couldn't be more excited about the world my daughter and son can grow up in. +07/12/2016,Politicians,@BrianBallard723,"""We are giving you a neurological true"" image - @magicleap CEO Rony Abovitz #FortuneTech aaaahhhhh, I can't wait. 😃" +07/11/2016,Politicians,@BrianBallard723,"RT @seanwatson24: .@haleyvandyck: @USDS, @WhiteHouse's ""tech startup,"" getting incredible bipartisan support in quest to bring techies to g…" +07/11/2016,Politicians,@BrianBallard723,Really neat talk on innovation. And more enjoyable one liners than an average 2 hour Hollywood production https://t.co/By0Wsdg7GL +07/11/2016,Politicians,@BrianBallard723,RT @jerseejess: Awesome to have @fendien speaking at #Inforum2016 and discussing NYC enterprise tech ecosystem cc @Work_Bench https://t.co/… +07/11/2016,Politicians,@BrianBallard723,"Apparently I've spent too much time near sea level. Thought all the 30,000ft hours would have prepped me better. #FortuneTech" +07/10/2016,Politicians,@BrianBallard723,"The business of a connected workforce +https://t.co/8VFi9lEfsl #APXLabs" +07/09/2016,Politicians,@BrianBallard723,"RT @BoJackson: Before you go to sleep tonight, I challenge every single one of you to do something nice for a complete stranger. Our world…" +06/29/2016,Politicians,@BrianBallard723,Working with companies like this is why I love getting out of bed every morning! https://t.co/vIf5UKU6Or +06/28/2016,Politicians,@BrianBallard723,Really great group in Tianjin this week. Will leave a lasting impression. https://t.co/aW1pUoYmG2 +06/28/2016,Politicians,@BrianBallard723,"Going to have to add these to the reading list. Were they insightful, @ron_miller ?" +06/27/2016,Politicians,@BrianBallard723,RT @Joi: Rome elects first female mayor in 2800 years | The New Daily https://t.co/FYYYnvbgID +06/27/2016,Politicians,@BrianBallard723,RT @APXLabs: Honored to be named by the World Economic Forum @wef as a 2016 #techpioneer! https://t.co/3BykJPdMyx #connectedworkforce #amnc… +06/27/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Accelerating innovation & the IIoT eco -APX Labs teaming with GE & Boeing to put wearables to work https://t.co/7zzw3ClUcA… +06/27/2016,Politicians,@BrianBallard723,RT @nisselson: Congrats @ldvcapital co's @APXLabs @mapillary win Technology Pioneer by World Economic Forum https://t.co/Sncs1PhAAr https:/… +06/26/2016,Politicians,@BrianBallard723,Amazing talk by @NergisMavalvala in Tianjin . #Science and the discovery of gravitational waves. #amnc16 #wef https://t.co/Uo3s3RHqqu +06/26/2016,Politicians,@BrianBallard723,"RT @FuturistechInfo: Top 10 Emerging Technologies of 2016 from the World Economic Forum +https://t.co/cv6PrH02ou https://t.co/2DAX7kJQ83" +06/21/2016,Politicians,@BrianBallard723,RT @mattj_di: 62% IT & Business leaders say wearable computing is critical to moderate priority-JPGownder @forrester #ewts #IoT https://t.c… +06/21/2016,Politicians,@BrianBallard723,"RT @micahjay1: Tech Founders, Journalists & VCs should create a mandatory job exchange program. Everyone spends 3 mos in each role. Much wo…" +06/04/2016,Politicians,@BrianBallard723,@tomemrich @515406843 it's hard to pick my favorite +06/04/2016,Politicians,@BrianBallard723,"RT @EdwardCarmack: Brian Ballard (CEO, APX Labs) The Business Impact of Smart Glasses for Work https://t.co/yaGwsMYVDy via @YouTube" +06/04/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Thanks Joe @joesoop https://t.co/bUOx0Hwh36 +06/02/2016,Politicians,@BrianBallard723,Yeah @WTEric !!! Best hardware Auggie! https://t.co/oUZl4rVTtn +05/23/2016,Politicians,@BrianBallard723,AWE is bringing superpowers to the people & here are 10 reasons why — AWE Blog https://t.co/umVMTwqL9E +05/20/2016,Politicians,@BrianBallard723,.@APXLabs in Good company https://t.co/DEUyFPWe91 # pioneers Congrats @AtheerAiR @PristineIO @XOEyeTech VitalEnt +05/18/2016,Politicians,@BrianBallard723,"RT @levie: The future, as imagined by the tech industry, will be people wandering around their house talking to objects. My grandpa was bor…" +05/12/2016,Politicians,@BrianBallard723,"Great talk with Nima from ODG and Ramesh from @intel. Thanks @mc_angela for leading our band of merry men! + + https://t.co/nHWpwFF6BI" +05/06/2016,Politicians,@BrianBallard723,"Having a foot in both worlds, really appreciate this article. #gov <-> @tech https://t.co/Zky4DrdQzq" +05/06/2016,Politicians,@BrianBallard723,RT @APXLabs: The Dirtiest Man On TV @mikeroweworks Dispels 5 Damaging Myths About Blue Collar Labor @Forbes https://t.co/WI3RPjbicv +05/06/2016,Politicians,@BrianBallard723,RT @APXLabs: Project Juggernaut is in the running for an AuggieAward! Support @Boeing & @APXLabs #AWE2016 https://t.co/xmUNCcFAqb https://t… +05/05/2016,Politicians,@BrianBallard723,"""Target is being targeted for doing the right thing, not the easy thing."" https://t.co/LHcp2TuKau" +05/05/2016,Politicians,@BrianBallard723,".@forrester report: #smartglasses top use cases in #aerospace, #mfg, #fieldservice https://t.co/qCs7vMElJm https://t.co/RjZxE24Psq" +05/05/2016,Politicians,@BrianBallard723,@amit_pande @APXLabs @HoloLens Yes! Something that would appeal to all ages. +05/05/2016,Politicians,@BrianBallard723,@NancyLBSmith you got the wrong Brian Ballard. Would you mind removing me from your post? +05/05/2016,Politicians,@BrianBallard723,Got a surprise visitor to the @APXLabs office today! Figured we better get him used to the future now. @HoloLens https://t.co/IzgNZ1IRHI +05/05/2016,Politicians,@BrianBallard723,"RT @Vuzix: Vuzix and APX-Labs educate C-Level execs on M100 Smart Glasses at Field Service USA in Palms Springs, CA. Booth #122 https://t.c…" +04/26/2016,Politicians,@BrianBallard723,@TedLeonsis Thanks for posting that. It was a great use of narrative and graphics! Reminiscent of Edward Tufte! +04/26/2016,Politicians,@BrianBallard723,"Congrats @ianshakil. I don't always go the hospital, but when I do, I use @augmedix! +https://t.co/EI1C7Baa31 https://t.co/61jiKpysFp" +04/21/2016,Politicians,@BrianBallard723,"RT @fendien: .@Work_Bench has been calling it for ages: “threats to traditional on-premise IT infrastructure vendors are serious"" https://t…" +04/01/2016,Politicians,@BrianBallard723,RT @FastCoExist: This insane anti-distraction helmet from 1925 would fit into any modern open office https://t.co/I8OGubu1mZ https://t.co/u… +03/30/2016,Politicians,@BrianBallard723,Any my @oculus just arrived yesterday.... AR+VR+HUD trifecta almost complete! https://t.co/tCxOXWUDmT +03/30/2016,Politicians,@BrianBallard723,"@pmarca and now I won't be able to get ""You failed this city.."" out of my inner monologue for the next hour. :)" +03/29/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Can't join us today @GEDetroit - follow the livestream https://t.co/Rkc4UgwaIm #LeadingEdgeMFG #IIoT with @GE_Digital @PTC… +03/29/2016,Politicians,@BrianBallard723,"""Manufacturers are going to be the rock stars of the IOT"" - Jim Heppelmann @PTC #LeadingEdgeMFG" +03/29/2016,Politicians,@BrianBallard723,RT @JAaronTate: @BrianBallard723 from @APXLabs presenting the important role of wearables to IIoT #digitalthread #LeadingEdgeMFG. https://t… +03/25/2016,Politicians,@BrianBallard723,"RT @SteveCase: Study: Immigrants Founded 51% of U.S. Billion-Dollar Startups https://t.co/sJOQRqywsb ""American innovation benefits from rob…" +03/24/2016,Politicians,@BrianBallard723,I'm genuinely excited to see AR take another step toward mainstream @HoloLens is really well done. @APXLabs @taherman @neverest5 +03/24/2016,Politicians,@BrianBallard723,RT @km_bic: It is crucial that technology helps improves lives. @cabadie @APXLabs @EpicQueenSV https://t.co/uUcJ9a8nVQ +03/15/2016,Politicians,@BrianBallard723,Help us shoot threes like Curry!!! https://t.co/Pvlmbu8hpB +03/14/2016,Politicians,@BrianBallard723,RT @_johny: This may be the year a #12 seed wins it all @APXLabs https://t.co/im8q3c7gxb +03/08/2016,Politicians,@BrianBallard723,@WTEric @EpsonAmerica WOW!!! That brought back some memories!!! +02/29/2016,Politicians,@BrianBallard723,"Getting closer to the future! #HoloLens ship dates are confirmed. + +https://t.co/DnAWFiyc3Y" +02/26/2016,Politicians,@BrianBallard723,"I think we're going to see more and more ""rehumanizing"" of the workforce in a lot of areas right along side robots + +https://t.co/mZGkLlRgDe" +02/26/2016,Politicians,@BrianBallard723,Congrats @KPN @Accenture! Trailblazing a new industrial revolution across the telco industry. #powerfulworkforce built on #APXSkylight +02/26/2016,Politicians,@BrianBallard723,RT @JeffEJenkins: Fantastic @KPN and @Accenture! Great to see @APXLabs #APXSkylight powering such fantastic projects! https://t.co/do6gM7P1… +02/24/2016,Politicians,@BrianBallard723,RT @APXLabs: Come see #APXskylight running on the #ReconJet in the @intel booth at #MWC16 https://t.co/lJeOVAOenM https://t.co/CLpymIysWX +02/21/2016,Politicians,@BrianBallard723,RT @TechCrunch: Wearables Drive The Component Technology Innovation https://t.co/9dIYj48WJ4 by @brianballard723 +02/11/2016,Politicians,@BrianBallard723,"So exciting! #SCIENCE + +Physicists Detect Gravitational Waves, Proving Einstein Right https://t.co/PvsAqonbRH" +02/10/2016,Politicians,@BrianBallard723,I'm crazy excited for this... ever since I read Mutineers' Moon (fav SciFi book!) #gravitonics .. https://t.co/mhdyR5ra8t +02/03/2016,Politicians,@BrianBallard723,RT @Sm4rtglass: This is what we do @APXLabs - we shift the performance curve with #wearabletech @googleglass and #skylight. http://t.co/nG… +01/12/2016,Politicians,@BrianBallard723,Congrats to @thehumanwatson and Harvest.AI #SXSW2016 https://t.co/KWki6JFx7i +01/12/2016,Politicians,@BrianBallard723,Love the student enthusiasm from @CarnegieMellon ! Change the world with @elonmusk's #Hyperloop. Go get 'em tartans! https://t.co/5D6QmtOQm6 +01/11/2016,Politicians,@BrianBallard723,The Industrialist’s Dilemma https://t.co/vj7iuVbuZl via @techcrunch +01/04/2016,Politicians,@BrianBallard723,RT @NEAVC: Congratulations to @NEAVC's @aaronej & @AmitMukherjee! @Forbes #30Under30 #VentureCapital: https://t.co/ulJyTOHnQp https://t.co… +12/14/2015,Politicians,@BrianBallard723,Lead the way @tomemrich ! https://t.co/JHxel02NeY +12/13/2015,Politicians,@BrianBallard723,"RT @cdixon: Adoption of technology in the U.S., 1900 to present https://t.co/YECfwxLnSP https://t.co/ig9s8TaxPr" +12/10/2015,Politicians,@BrianBallard723,.@daynagrayson should we do our next Board Meeting virtually? https://t.co/Ocpq2SNN5N +12/10/2015,Politicians,@BrianBallard723,That's pretty funny https://t.co/aiaFFKvD8K +12/10/2015,Politicians,@BrianBallard723,"""It is industry's turn now"" @JeffImmelt & @generalelectric on the Enterprise revolution https://t.co/CqI05rTGsr https://t.co/CcSGcTU5Pv" +06/30/2018,Politicians,@nick_ayers,"RT @GroverNorquist: Met today with Illinois governor Bruce Rauner +The “Janus” SCOTUS Case was at the start —AFSCME vs Rauner. +Rauner will s…" +06/27/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP on immigration mtg in Guatemala: “We are doing what we need to do in the U.S. to secure our border.. but tomorrow in G… +06/27/2018,Politicians,@nick_ayers,RT @HashtagGriswold: read the last three words of that quote again https://t.co/n8fVlsFdn5 +06/23/2018,Politicians,@nick_ayers,"I thought “Love wins” + +Stay classy @PressSec + +We admire your fortitude, grace, and humility under fire AND your fa… https://t.co/oyQkmQoF2H" +06/22/2018,Politicians,@nick_ayers,"RT @Alyssafarah: In his final column, Krauthammer wrote: ""I believe that the pursuit of truth & right ideas through honest debate and rigor…" +06/19/2018,Politicians,@nick_ayers,"RT @sendavidperdue: Last week, it was announced that the Savannah Harbor Expansion Project will receive the federal funding it needs to sta…" +06/17/2018,Politicians,@nick_ayers,Happy Father’s Day to all you great Dad’s out there...especially mine who is the best! Not a day goes by that I am… https://t.co/zr1I0PQLqP +06/06/2018,Politicians,@nick_ayers,RT @brithume: The sad news of Kate Spade’s apparent suicide is a reminder of the wisdom here: https://t.co/25pSOLVr6x +05/30/2018,Politicians,@nick_ayers,"RT @CNBC: Virgin Galactic took another step on Tuesday toward beginning commercial operations with its latest test flight, only 54 days aft…" +05/28/2018,Politicians,@nick_ayers,RT @YahooFinance: Jeff Bezos outlines Blue Origin's space colony ambitions https://t.co/4jAiJAAt8o via @engadget https://t.co/5q1wcDNGW9 +05/17/2018,Politicians,@nick_ayers,RT @WhiteHouse: #Laurel? #Yanny? Or... https://t.co/5hth07SdGY +05/17/2018,Politicians,@nick_ayers,RT @WillieGeist: James Shaw’s instinct just hours after the shooting and his release from the hospital was to start raising money for the v… +05/10/2018,Politicians,@nick_ayers,RT @PressSec: A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@nick_ayers,RT @USATODAY: Vice President Mike Pence accompanied by his wife Karen Pence and others arrive to greet former North Korean detainees Kim Do… +05/10/2018,Politicians,@nick_ayers,"RT @The_Gospels: Jesus said, ""For mortals it is impossible, but for God all things are possible."" -Mat 19:26" +05/10/2018,Politicians,@nick_ayers,Soon we will board Marine 2 en route to Joint Base Andrews to welcome these patriots back to the Land of the FREE a… https://t.co/JcMXj5ivVx +05/08/2018,Politicians,@nick_ayers,"RT @SenatorLankford: Today’s sham trial involving Dr. Andrew Brunson, filled with secret witnesses & conspiracy theories, is further proof…" +05/08/2018,Politicians,@nick_ayers,RT @StephenMiller: Humbly asking for prayer. Got some hard news today. https://t.co/f4h1HxLRv1 +05/01/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP has been criss-crossing the country talking about how the TAX CUTS are working. Today in Arizona —> “Tax Cuts Have Put… +05/01/2018,Politicians,@nick_ayers,RT @realDonaldTrump: I recently had a terrific meeting with a bipartisan group of freshman lawmakers who feel very strongly in favor of Con… +04/29/2018,Politicians,@nick_ayers,"RT @b0yle: Godspeed, H.G. Wells: @blueorigin sends #NewShepard suborbital spaceship to new heights: https://t.co/z6jcd2baU0 https://t.co/kf…" +04/27/2018,Politicians,@nick_ayers,"RT @CBSNews: Nikki Haley drives Pres. Trump's Israel policy at U.N. -- since arriving at the U.N., she has made a point of trying to turn t…" +04/22/2018,Politicians,@nick_ayers,RT @kanyewest: The thought police want to suppress freedom of thought +04/18/2018,Politicians,@nick_ayers,RT @VPPressSec: Spanish language version of @VP’s op-ed calling out Venezuelan & Cuban regimes & supporting a “hemisphere of freedom” in th… +04/18/2018,Politicians,@nick_ayers,"RT @SecondLady: When I first met Barbara Bush in 1988 as she entertained spouses of congressional candidates at the @VP Residence, her sage…" +04/16/2018,Politicians,@nick_ayers,RT @VP: With our international and commercial partners – American astronauts will return to the Moon to explore its surface & learn how to… +04/11/2018,Politicians,@nick_ayers,"RT @mdubowitz: Before the Islamic Revolution, it took about 70 Iranian rials to buy one US dollar. Today it will take you 60,000. Yet one m…" +04/05/2018,Politicians,@nick_ayers,"RT @wsbtv: To this day, Atlanta is called ""The City Too Busy to Hate."" It's up to all of us to carry on Dr. King's legacy of inclusion. #Ho…" +03/30/2018,Politicians,@nick_ayers,"Truly, a Good Friday #Perrydise https://t.co/zu6R88jQuD" +03/27/2018,Politicians,@nick_ayers,RT @ericgeller: Absolutely amazing that this is happening in a major American city https://t.co/x6pGEsu70K +03/25/2018,Politicians,@nick_ayers,Great to fly down to GA w/my family and the @VP. Thank you @NathanDeal & @GAFirstLady for the warm welcome! Georgia… https://t.co/EMlvWGBhqo +03/24/2018,Politicians,@nick_ayers,Zell Miller was one of my first political heroes. As I got to know him he was always long on good counsel & encoura… https://t.co/OV1E0J06AW +03/17/2018,Politicians,@nick_ayers,The few times @VP has told the story of his grandfather leaving Ireland for the USA it’s brought nearly everyone in… https://t.co/wwLGwgqYdB +03/16/2018,Politicians,@nick_ayers,"RT @SecretarySonny: We're very excited to have @VP Mike Pence headlining our #NationalAgricultureDay celebration at @USDA this Tuesday, hig…" +03/14/2018,Politicians,@nick_ayers,RT @plattdavid: With a heavy heart I share that @IMB_SBC missionaries Randy and Kathy Arnett lost their lives today in a car accident in Af… +03/14/2018,Politicians,@nick_ayers,RT @Suntimes: Pence to lay out administration views on Latin America https://t.co/wjMT9RKVXA https://t.co/AacfRm0Ln2 +03/10/2018,Politicians,@nick_ayers,Love this https://t.co/uoF4C7NbK7 +02/26/2018,Politicians,@nick_ayers,It makes my heart hurt to think about how fast these times go by. A few of my fav pics and memories from their firs… https://t.co/4tqlCSrUPF +02/05/2018,Politicians,@nick_ayers,RT @AshleyRParker: I interrupt your Super Bowl to bring you a micro scoop from me and @annafifield: Otto Warmbier’s father will join Mike P… +02/05/2018,Politicians,@nick_ayers,Agreed. Hard to beat the bio @ericmetaxas wrote. Highly recommend. https://t.co/IDGRkwKgst +02/04/2018,Politicians,@nick_ayers,Depart tomorrow 👇🏼 https://t.co/NMa2hWAZxT +02/04/2018,Politicians,@nick_ayers,"My weekend: +Pizza night w/fam ✔️; Watched Secret Garden w/fam piled on couch ✔️; few hours in Sit Room prepping for… https://t.co/l8tqp1FEmb" +02/03/2018,Politicians,@nick_ayers,Correct https://t.co/xE7IMByVsi +02/03/2018,Politicians,@nick_ayers,RT @BrookingsFP: “The 2018 National Defense Strategy is a heady attempt to drive the U.S. military faster in the direction it has been head… +01/31/2018,Politicians,@nick_ayers,"RT @RepMarkMeadows: The powerful image of a young man, lifting his crutches in defiance of a North Korean regime that once tortured him. I…" +01/31/2018,Politicians,@nick_ayers,RT @jonathanvswan: What a beautiful story. https://t.co/8ynojSjqgN +01/28/2018,Politicians,@nick_ayers,"RT @NinjaEconomics: 1,500 Chinese construction workers built this train station in just nine hours. https://t.co/xYJLuCWmZZ" +01/27/2018,Politicians,@nick_ayers,"RT @ConSource: On this day in 1785, the Georgia General Assembly incorporates the University of Georgia, the first state-funded institution…" +01/27/2018,Politicians,@nick_ayers,Major (positive) ramifications for US space industry if this goes according to plan https://t.co/zGSKk9ZLhT +01/27/2018,Politicians,@nick_ayers,I’ve been close friends w/@nikkihaley for more than a decade and watched her endure/overcome a number of false rumo… https://t.co/5nhnPP2S12 +01/26/2018,Politicians,@nick_ayers,RT @glamourmag: What it's really like to travel with vice president Mike Pence? One female journalist explains: https://t.co/XMIIr8uhg3 htt… +01/24/2018,Politicians,@nick_ayers,NBC News/Lester Holt apparently fall for North Korean propaganda - Fox News https://t.co/nx6CCR9l2k +01/23/2018,Politicians,@nick_ayers,RT @AlliemalCNN: This is done every day at the wall. The VP's office actually made it more accessible for us to see- adding chairs and remo… +01/23/2018,Politicians,@nick_ayers,RT @jdgreenblatt45: At the airport to see off @VP & @SecondLady after their incredibly successful trip. Their visit was a powerful testamen… +01/20/2018,Politicians,@nick_ayers,"RT @jonathanweisman: Own it, Dan. The Democrats held together and voted no. They stopped the CR. If every Republican had voted yes, they st…" +01/20/2018,Politicians,@nick_ayers,"RT @jmartNYT: Hard for Ds to say this is a GOP shutdown if most Rs vote to keep gov’t open & they’re joined by red state Ds + +https://t.co/A…" +01/19/2018,Politicians,@nick_ayers,"RT @MatthewNussbaum: PENCE is still leaving for planned Middle East trip tonight at 7:30, regardless of whether or not govnt shuts down. +h…" +01/19/2018,Politicians,@nick_ayers,"RT @RepMiaLove: Tonight, I voted with the majority in the House of Representatives to prevent a disastrous shutdown, and to ensure funding…" +01/16/2018,Politicians,@nick_ayers,"RT @realMikeLindell: 9-years ago today ( January 16, 2009) I prayed to be free of crack cocaine, alcohol and other addictions. Thankyou Jes…" +01/13/2018,Politicians,@nick_ayers,"RT @susancrabtree: GREAT NEWS -- After pressure from @VP Pence, @USAID.gov Shifts on Aid to Christians, Yazidis in Iraq https://t.co/GOPXBB…" +01/12/2018,Politicians,@nick_ayers,RT @dougstafford: An item in Walmart’s announcement I and others seemed to have missed - a new adoption benefit including paid family leave… +01/11/2018,Politicians,@nick_ayers,RT @mboorstein: This should be retweeted millions of times. https://t.co/0iHNeQuRZO +01/11/2018,Politicians,@nick_ayers,"Promises made, promises kept https://t.co/IpLih1Zqth" +01/11/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP touches down at @NellisAFB with @SecAFOfficial & @SenDeanHeller. Later he’ll thank our brave airmen & women for their… +01/10/2018,Politicians,@nick_ayers,RT @JakeSherman: ! https://t.co/haQZmW5PfZ +01/10/2018,Politicians,@nick_ayers,It was wonderful to have @realDonaldTrump in our state and grateful (but not surprised) for the roaring welcome he… https://t.co/KBBpjpxOgm +01/07/2018,Politicians,@nick_ayers,100% https://t.co/I6MAP7bFDh +01/07/2018,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Your impression is 100% correct Jake. I have never & would ever say such a thing (I doubt any others did either) I’ve s… +01/06/2018,Politicians,@nick_ayers,RT @MarcusReports: Defense Secretary Jim Mattis talked to reporters at the Pentagon this afternoon. Asked his biggest military concern in 2… +01/05/2018,Politicians,@nick_ayers,RT @VP: Karen & I were honored to host faith leaders for dinner at the Naval Observatory to review what @POTUS has done to protect life & p… +01/04/2018,Politicians,@nick_ayers,.@vp on #IranProtests https://t.co/HT511BxLmj +12/31/2017,Politicians,@nick_ayers,Gov: I gave Sarah pecans from our orchard for Christmas. Are we sure she shot them out of a tree??? See here… https://t.co/lnk4cwyf6r +12/31/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: As our Country rapidly grows stronger and smarter, I want to wish all of my friends, supporters, enemies, haters, and…" +12/30/2017,Politicians,@nick_ayers,RT @VP: .@POTUS & I stand w/ peaceful protestors in Iran who are speaking out for freedom & we condemn the arrests of innocents. The time h… +12/22/2017,Politicians,@nick_ayers,RT @guypbenson: Must. Watch. https://t.co/LXhKH5c2sV +12/21/2017,Politicians,@nick_ayers,"It was inspiring to see America’s absolute best who are crushing ISIS and other terrorists in the region. @POTUS,… https://t.co/tzJqpbTMF0" +12/19/2017,Politicians,@nick_ayers,RT @guypbenson: AP had plenty of characters to spare to add accurate & important context about the bill's sweeping middle class tax cuts. T… +12/19/2017,Politicians,@nick_ayers,RT @rodney_bullard: We want to thank the @ChickfilA Operators and Team Members that answered the call late on a Sunday evening to help serv… +12/19/2017,Politicians,@nick_ayers,"As long as @realDonaldTrump and @VP are here, that’s a fact https://t.co/BHFOvbAsmI" +12/18/2017,Politicians,@nick_ayers,"RT @marc_lotter: In addition to: +✔️ crush ISIS +✔️ lowest unemployment in decades +✔️highest biz/consumer confidence in decades +✔️ 69 new sto…" +12/18/2017,Politicians,@nick_ayers,Cc @KasimReed https://t.co/5PKty4ogvV +12/18/2017,Politicians,@nick_ayers,RT @cbudoffbrown: New @politico investigation from @joshmeyerdc: An ambitious DEA-led campaign targeted Hezbollah’s alleged criminal activi… +12/17/2017,Politicians,@nick_ayers,RT @ArlingtonNatl: Thank you to the more than 75k volunteers who braved the cold weather and heavy traffic to help #HonorThem during @Wreat… +12/17/2017,Politicians,@nick_ayers,I’d say we are off to a good start from a policy perspective 👇🏼 https://t.co/2AoLIX0Llc +12/17/2017,Politicians,@nick_ayers,"RT @dcexaminer: Religious schools, homeschoolers to get a boost in GOP tax plan, thanks to Ted Cruz and Mike Pence https://t.co/MzpQ3ZGi5N…" +12/17/2017,Politicians,@nick_ayers,"RT @BretStephensNYT: I wonder what Oliver Stone, Sean Penn, Naomi Klein, Jeremy Corbyn and the rest of the Chavista love club think when th…" +12/17/2017,Politicians,@nick_ayers,"Infuriating. I couldn’t make it thru the first few paragraphs. This was once, and still should be, one of the most… https://t.co/NPYBV3RO3M" +12/17/2017,Politicians,@nick_ayers,"Great evening, great team. #MAGA https://t.co/h5QxLALQO8" +12/16/2017,Politicians,@nick_ayers,"RT @mattklewis: I don’t think people appreciate how important this tax bill is. IF it passes, GOP can say they (a) passed tax reform, (b)…" +12/16/2017,Politicians,@nick_ayers,RT @DefenseOne: The National Geospatial-Intelligence Agency Launches Bold Recruitment Plan to Hire Silicon Valley’s Best https://t.co/9l3bJ… +12/07/2017,Politicians,@nick_ayers,"RT @StephGrisham45: On our way out of town, @FLOTUS & @SecondLady decided to stop in to @Whataburger for some lunch! The American chain ope…" +12/05/2017,Politicians,@nick_ayers,RT @VPPressSec: “The @VP is committed to doing all he can to support @POTUS’ efforts to keep the homeland safe from threats both foreign &… +12/03/2017,Politicians,@nick_ayers,It’s beginning to look a lot like Christmas! #GoDAWGS +12/02/2017,Politicians,@nick_ayers,"RT @CharlieDaniels: Do not be anxious about anything, but in everything, by prayer and petition, with thanksgiving, present your requests t…" +12/01/2017,Politicians,@nick_ayers,"RT @AjitPaiFCC: Incredible feat of engineering: ""[T]hese well-rested thrusters pick[ed] up the baton as if no time had passed at all."" http…" +11/28/2017,Politicians,@nick_ayers,"RT @NBCNews: “Are you the first lady?!” a boy asked as he embraced Melania Trump during a White House Christmas event. + +“She seriously look…" +11/24/2017,Politicians,@nick_ayers,"Grateful for time with our fam today. And @Sendavidperdue, @SecretarySonny, and I enjoyed the break from DC!… https://t.co/jZhZIBWkcg" +11/24/2017,Politicians,@nick_ayers,RT @LilJon: YEAHHHHHHH https://t.co/QNBlZK15lb +11/23/2017,Politicians,@nick_ayers,First day out of DC in months: bfast at @WaffleHouse w/fam ✔️; four-wheeling w/my boys on the farm ✔️; drove GA bac… https://t.co/bnoGRtEWDD +11/23/2017,Politicians,@nick_ayers,"I will give thanks to you, Lord, with all my heart; I will tell of all your wonderful deeds. Psalm 9:1 #Thanksgiving" +11/18/2017,Politicians,@nick_ayers,"RT @dougstafford: Great read from @arthurbrooks. As the father of 3 adopted children, I can add - if you can, please consider this. https:…" +11/16/2017,Politicians,@nick_ayers,"RT @FreeBeacon: .@VP Trying to Fast-Track U.S. Help to Iraqi Christians, Yazidis, Other Religious Minorities, @susancrabtree reports https:…" +11/15/2017,Politicians,@nick_ayers,"RT @RepMarkMeadows: There are a lot of individuals who worked hard on this, but @SenTomCotton particularly deserves a ton of credit here--h…" +11/15/2017,Politicians,@nick_ayers,RT @RandPaul: Today I am announcing my intention to amend the Senate tax bill to repeal the individual mandate and provide bigger tax cuts… +11/13/2017,Politicians,@nick_ayers,RT @brithume: Fascinating video on the effect wolves have had on Yellowstone Park. Hint: it’s positive. https://t.co/7pl7abhAel +11/11/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP Pence honors veterans by cleaning Vietnam memorial https://t.co/QmL7pSnY7e via @USATODAY +11/11/2017,Politicians,@nick_ayers,RT @ffweekend: VP Pence cleans the Vietnam memorial in D.C. ahead of visit to Arlington National Cemetery #VeteransDay https://t.co/TW6g9Mh… +11/09/2017,Politicians,@nick_ayers,"A heartbreaking and hopeful evening in TX with heroes, survivors, and loved ones of the fallen. Texas: you represen… https://t.co/y48dHnj9Th" +11/06/2017,Politicians,@nick_ayers,"RT @plattdavid: ""Through the darkest night, His light will shine"" - From the first song last week at FBC Sutherland Springs: https://t.co/n…" +11/04/2017,Politicians,@nick_ayers,Thanks Hollywood https://t.co/HjEc2SUPQr +11/02/2017,Politicians,@nick_ayers,"🇺🇸 +Cc @SecretarySonny https://t.co/pqRRHnMTPy" +11/01/2017,Politicians,@nick_ayers,"GA is #1 in college football... + +And #1 for business + +🏈🏦💪🏼 https://t.co/9Ka9mh39Wn" +10/31/2017,Politicians,@nick_ayers,"RT @SecretService: Secret Service Officers help @WhiteHouse welcome local trick or treaters. + +Turns out heroes come in all shapes and sizes…" +10/28/2017,Politicians,@nick_ayers,"RT @VPComDir: .@VP: As you take to the air, as u take a stand for freedom, know you go on the wings of grace & the grateful prayers of the…" +10/25/2017,Politicians,@nick_ayers,RT @VaughnHillyard: Vice President Pence to travel to Israel & Egypt in December--during Hanukkah. +10/25/2017,Politicians,@nick_ayers,"RT @TheBrodyFile: JUST IN: @VP says @realDonaldTrump will rely on faith-based groups, NOT just ineffective @UN to help persecuted Christian…" +10/25/2017,Politicians,@nick_ayers,Passionate speech by @VP in defense of persecuted Christians abroad. Announced new policy of @POTUS via USAID that… https://t.co/zyDmlPHQAH +10/25/2017,Politicians,@nick_ayers,RT @sendavidperdue: The markets have built in the expectation that tax is going to get done this year. Congress must act w/ urgency. https:… +10/24/2017,Politicians,@nick_ayers,A moving speech by the @VP and one more reminder of just how great the men and women who wear the uniform are. 🇺🇸 https://t.co/tA1d11zcGb +10/24/2017,Politicians,@nick_ayers,"RT @VPPressSec: ✂️✂️✂️ +https://t.co/fF3OuADk5H" +10/24/2017,Politicians,@nick_ayers,"RT @USMC: OTD 34 yrs ago the Marine barracks in Beirut, Lebanon was bombed. @VP visited @MBWDC to remember the 241 service members lost. ht…" +10/20/2017,Politicians,@nick_ayers,RT @CurtOnMessage: Every NFL team should force their players to watch Gen. Kelly's remarks today from the White House today. +10/20/2017,Politicians,@nick_ayers,"RT @JenniferJJacobs: “Not a dry eye” in our office, a West Wing staffer tells me after White House watched General John Kelly’s emotional w…" +10/20/2017,Politicians,@nick_ayers,RT @juliehdavis: An incredible moment in the White House briefing room today: https://t.co/sE8iJjqAWp +10/18/2017,Politicians,@nick_ayers,RT @marcorubio: ......His invisible attributes of eternal power & divinity have been able to be understood & perceived in what He has made.… +10/14/2017,Politicians,@nick_ayers,RT @petesnyder: Tremendous having @VP in #SWVA tonight w @EdWGillespie + all our rowdy friends! https://t.co/D4FNifJD5c +10/14/2017,Politicians,@nick_ayers,RT @mike_pence: Well said Mr. President! Looking forward to sharing your message about @EdWGillespie directly with an excited crowd tonight… +10/14/2017,Politicians,@nick_ayers,This never gets old https://t.co/JA9zLOtZgx +10/08/2017,Politicians,@nick_ayers,RT @EricGreitens: Great to join @LukeBryanOnline to celebrate MO farmers and ranchers! #HeresToTheFarmer https://t.co/Jf8iRP1HrQ +10/07/2017,Politicians,@nick_ayers,RT @VaughnHillyard: .@VP & @SecondLady stopped shortly ago at the 58 crosses built in memoriam of the 58 victims of the Las Vegas shooting.… +10/07/2017,Politicians,@nick_ayers,Yesterday https://t.co/BxDCWwZlpt +10/07/2017,Politicians,@nick_ayers,Moving words from a @VP who has traveled relentlessly to bring unity and hope to survivors of one tragedy after ano… https://t.co/R4IPS6AaB7 +10/07/2017,Politicians,@nick_ayers,RT @ricardorossello: My deepest gratitude to @VP & @SecondLady. I admire your faith & appreciate your support; 🇵🇷 is grateful that you are… +10/03/2017,Politicians,@nick_ayers,"RT @ABC: Incredibly moving rendition of ""Amazing Grace"" sung at a candlelight vigil attended by thousands for the victims of the Las Vegas…" +09/30/2017,Politicians,@nick_ayers,"RT @GaramoneDODNews: Federal Emergency Response Working Smoothly, Puerto Rico’s Governor Says https://t.co/UcnmwKUWef https://t.co/6wtN1PhQ…" +09/30/2017,Politicians,@nick_ayers,This GA judge is state treasure. Incredible compassion/wisdom for those who go before her https://t.co/jwQtmVjmJg https://t.co/2A2LDMKn1r +09/30/2017,Politicians,@nick_ayers,"I love it when the public catches a glimpse of who most of these people are behind the scenes, irrespective of part… https://t.co/voZsUVYpTh" +09/29/2017,Politicians,@nick_ayers,RT @SpaceX: Falcon 9 has completed 16 successful landings. https://t.co/OzAA6ziSCz +09/29/2017,Politicians,@nick_ayers,#ThrowbackThursday to the first night we finally had all three at home with us after nearly 2 months of NICU! https://t.co/9ahE8B736H +09/29/2017,Politicians,@nick_ayers,Thrilled. https://t.co/Dnq77Ftuab +09/28/2017,Politicians,@nick_ayers,"RT @VP: As Michigan knows, when the field is level, American workers always win. #VPInMI https://t.co/5b9JKc94ds" +09/25/2017,Politicians,@nick_ayers,RT @RichardGrenell: one year ago > https://t.co/fg6DtJnP2A +09/22/2017,Politicians,@nick_ayers,"RT @nikkihaley: Thousands of Yazidi women have been sold like animals by ISIS. Thanks to this vote,ISIS will face justice, giving victims t…" +09/20/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP called on the @UN to end its “forum for anti-Semitism” against Israel & to boot repressive countries off the U.N. Human… +09/20/2017,Politicians,@nick_ayers,"RT @WiredSources: VP Pence: ""The UN Human Rights Council actually welcomes many of the worst human rights violators in the world."" https://…" +09/20/2017,Politicians,@nick_ayers,"RT @Franklin_Graham: Join me in praying for @POTUS. He reminded the world, “If the righteous many do not confront the wicked few, then evil…" +09/20/2017,Politicians,@nick_ayers,"RT @SheenaGreitens: On North Korea and #RocketMan: photo from my archives. Economist cover, ~2006: https://t.co/vjg8nNKyRt" +09/18/2017,Politicians,@nick_ayers,We are looking forward to two great professionals joining @WhiteHouse @VP team: @Alyssafarah & @CMandreucci will start 10/2 #MAGA +09/16/2017,Politicians,@nick_ayers,He's been with us since Day 1 and will continue to be. The mission continues for Lotter! Thank you for your govt se… https://t.co/zDBQGdWe0j +09/15/2017,Politicians,@nick_ayers,RT @CIA: CIA Director Withdraws from Harvard Kennedy School Forum https://t.co/N7YKyGy9H4 +09/03/2017,Politicians,@nick_ayers,Productive day at @WhiteHouse followed by firing this up & smoking a 9lb 🐷 shoulder. I'm not in a dove field in mid… https://t.co/MsbwH3z2Eh +09/03/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: Together, we will prevail in the GREAT state of Texas. We love you! + +GOD BLESS TEXAS & GOD BLESS THE USA🇺🇸 https://t.c…" +09/02/2017,Politicians,@nick_ayers,"RT @PressSec: ""I just met my President!"" Said lady in pink after taking this selfie with @POTUS. #TexasStrong https://t.co/rtK9IMP1CI" +09/01/2017,Politicians,@nick_ayers,"RT @VP: To people of TX, @POTUS & our admin will be w/ you every day until these great communities rebuild to be better & stronger than eve…" +09/01/2017,Politicians,@nick_ayers,RT @PressSec: .@POTUS signs proclamation declaring this Sunday a National Day of Prayer. https://t.co/eA0rmTm1tF +09/01/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: 'President Donald J. Trump Proclaims September 3, 2017, as a National Day of Prayer' #HurricaneHarvey #PrayForTexas ht…" +08/19/2017,Politicians,@nick_ayers,RT @realDonaldTrump: I want to applaud the many protestors in Boston who are speaking out against bigotry and hate. Our country will soon c… +08/13/2017,Politicians,@nick_ayers,Few mins away from skids up with @VP to Andrews Joint Base ➡️ Colombia ➡️ Argentina ➡️ Chile ➡️ Panama 🇺🇸 https://t.co/DY1FzIyPJo +08/10/2017,Politicians,@nick_ayers,"RT @VP: Productive time in Bedminster with @POTUS Trump. Working lunch w/ Chiefs of Staff, security briefing, and important opioid announce…" +08/06/2017,Politicians,@nick_ayers,"RT @ABCPolitics: .@KellyannePolls: ""Absolutely true the vice president is getting ready for 2020: for reelection as vice president."" https:…" +08/06/2017,Politicians,@nick_ayers,"RT @ABC: .@KellyannePolls on reports VP Mike Pence is eyeing 2020 run: ""That is complete fabrication."" https://t.co/u1wqMuuvAO #ThisWeek ht…" +08/05/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: ""Under Trump, gains against #ISIS have dramatically accelerated"" +https://t.co/jNtOTh0moL" +08/05/2017,Politicians,@nick_ayers,...Yet they are unable to name one donor that has ever heard me say that...because I haven't. #shameful #fakenews https://t.co/j3CZQIPFH2 +08/05/2017,Politicians,@nick_ayers,".@alexburnsNYT @jmartNYT print total lie in #fakenews article. Said I've ""signaled to multiple donors @VP wants to be ready for 2020"" (cont)" +08/02/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP Pence assures Eastern Europe's NATO partners in interview with @FoxNews for @SpecialReport https://t.co/9R69Djos3W #VPin… +08/01/2017,Politicians,@nick_ayers,".@GeorgiaGuard bird behind @VP in Tbilisi, Georgia 💪🏽🇺🇸cc: @SecretarySonny @SecPriceMD https://t.co/6IU24qkpaA" +07/31/2017,Politicians,@nick_ayers,Strong statement from the @VP in Estonia. No more 'leading from behind.' 🇺🇸 https://t.co/8KRswtQIsJ +07/30/2017,Politicians,@nick_ayers,"RT @PhilipRucker: Jarrod Agen @VPComDir has been promoted to Pence's deputy chief of staff, @nick_ayers announces on Air Force Two, via @As…" +07/28/2017,Politicians,@nick_ayers,Honored and humbled beyond words. Excited to partner with General Kelly to serve and support @POTUS and @VP #MAGA https://t.co/5TRRDDm43W +07/23/2017,Politicians,@nick_ayers,RT @JasonMillerinDC: Vice President Mike Pence op-ed: Trump's triumphs are many after only six months and he's just getting started https:/… +07/22/2017,Politicians,@nick_ayers,RT @VP: Congress needs to step up & do their job. Every member of the Senate should vote to begin debate to rescue the U.S. people from Oba… +07/20/2017,Politicians,@nick_ayers,My 80+ grandmother had never voted until I intro'd her to Sen McCain. He clinched her hand & held her close for a photo. I'll never forget. +07/15/2017,Politicians,@nick_ayers,Amen. GA has a lot to be proud of. The legacy of @TheMasters is high on that list and he was a big part. https://t.co/K28RRhFsfY +07/09/2017,Politicians,@nick_ayers,Except of course they aren't donor dinners nor are taxpayer funds used for non govt dinners 😱#MAGA https://t.co/rFr5dcmRyl +06/29/2017,Politicians,@nick_ayers,RT @lecrae: I got the best of Jesus. He got the worst of me. +06/21/2017,Politicians,@nick_ayers,RT @CillizzaCNN: This is right. https://t.co/8EBKj90McP +06/21/2017,Politicians,@nick_ayers,"Big win for @POTUS, @karenhandel, the @GOP, @AmericaFirstPol and the great State of Georgia! This is huge #sweptthespecials #MAGA" +06/18/2017,Politicians,@nick_ayers,#LuckyDad #HappyFathersDay https://t.co/oBYfwW3iL7 +05/30/2017,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Disgusting but not surprising. This is the left today. They consider this acceptable. Imagine a conservative did this t… +05/29/2017,Politicians,@nick_ayers,"RT @LordTinsdale: Exactly right, @sendavidperdue! Those who attack @potus budget cuts as savage want to pass the savagery to my daughter's…" +05/26/2017,Politicians,@nick_ayers,RT @BradOnMessage: You mean the state that just re-elected a Dem gov in '16 and has had Dem senators for 17 of the last 20 overlapping term… +05/21/2017,Politicians,@nick_ayers,RT @IngrahamAngle: Any media outlet claiming to be fair yet doesn't remark on the boldness of @realDonaldTrump speech and purpose is guilty… +05/20/2017,Politicians,@nick_ayers,"""My dear brothers and sisters, don’t be fooled about this. Everything good comes from God. Every perfect gift is from him."" James 1:16" +05/19/2017,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Strange how this isn't getting coverage. #maga https://t.co/I0AGOxzyNY +05/19/2017,Politicians,@nick_ayers,Last day of school here we come! https://t.co/yNb2zbCNzj +05/17/2017,Politicians,@nick_ayers,"RT @ILElectionData: Governor Rauner adds $20 million from Ken Griffin, on top of the $50 million he personally added late last year. +https:…" +05/14/2017,Politicians,@nick_ayers,If God created the perfect mother she was mine #MothersDay +05/12/2017,Politicians,@nick_ayers,Waiting on a table at Jaliscos with this crew who are kicking off a weekend to celebrate that great mama! https://t.co/Mx2JNRML6o +05/11/2017,Politicians,@nick_ayers,RT @VP: TUNE IN! I'm speaking in D.C. at the World Summit in Defense of Persecuted Christians NOW ➡️ https://t.co/D6bv93w8d2 +05/11/2017,Politicians,@nick_ayers,"RT @JusticeWillett: ""Success is not final, failure is not fatal: It is the courage to continue that counts.” +—Winston Churchill + https://t.…" +04/27/2017,Politicians,@nick_ayers,"RT @WashTimes: Every hour, around the world, a Christian is killed for the simple reason of worshipping #RapidReactions @ckchumley https://…" +04/26/2017,Politicians,@nick_ayers,RT @JasonMillerinDC: Fired up for this tax cut news. Making good on another campaign trail promise. #MAGA +04/25/2017,Politicians,@nick_ayers,Thank you @POTUS! A great day for farmers @ The White House. This team continues fighting bad trade deals and elimi… https://t.co/eZXCA20qsj +04/25/2017,Politicians,@nick_ayers,One of many epic hunts with Sonny. A great day for #USA & #USDA cc: @DonaldJTrumpJr https://t.co/Sy0vMHxUvw +04/24/2017,Politicians,@nick_ayers,Wise for them to focus on his first 100 days and not his last... https://t.co/QwEI4Uw0qX +04/24/2017,Politicians,@nick_ayers,This is awesome 👇🏼 https://t.co/WchxSS51lG +04/24/2017,Politicians,@nick_ayers,I appreciate @SenStabenow kind words/support of our next @USDA Secretary Sonny Perdue & wish we saw more of it in Congress! Well done. +04/24/2017,Politicians,@nick_ayers,And Sally Yates didn't resign over this? I'm shocked. https://t.co/nGmFVhfJXY +04/24/2017,Politicians,@nick_ayers,RT @zackroday: Missed this over the weekend. But congrats to Marc Short on the well-deserved recognition. https://t.co/c81Amn3r5H via @virg… +04/24/2017,Politicians,@nick_ayers,RT @bestnaunieever: Calling all #Republicans will you help rally behind @karenhandel 4 #GA06 we need a strong woman in #Congress. https://t… +07/02/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Temperatures are reaching record highs all over the country, if you still have a #Takata airbag there’s no reason to tak…" +07/02/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: ""If there is no disease criteria consistent with the symptoms that a company’s #drug treats, then #BigPharma creates a…" +07/02/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Do you now see why I chose to switch and become an Independent? + +It is really hard to watch most of this. I have a few g…" +07/02/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: #SlickRick this comes from the Panhandle, one of the most beautiful places on Earth. + +You’re wasting taxpayer dollars fi…" +07/02/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: A well deserved head scratch in between takes with @johnmorganesq and Emma. +#ForThePeople #commercial #dogs https://t.co/…" +07/02/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Over 16,000 meals and counting! The Morgan & Morgan Virtual Food Drive for Second Harvest Food Bank's Summer Hope For Kid…" +07/02/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: Don’t let the holiday week distract you, it’s still Monday !!! #GRIND + +“Success is the sum of small efforts, repeated day…" +07/02/2018,Politicians,@JohnMorganESQ,The road to success is dotted with many tempting parking places. Don’t stop!!! +07/02/2018,Politicians,@JohnMorganESQ,"Do you now see why I chose to switch and become an Independent? + +It is really hard to watch most of this. I have a… https://t.co/MiPi2XOujb" +07/02/2018,Politicians,@JohnMorganESQ,Retweet and ask your friends to follow me on Twitter as we fight this historic battle! #NoSmokeIsAJoke +07/02/2018,Politicians,@JohnMorganESQ,And thank you @SenBillNelson for your support. #ForThePeople +07/02/2018,Politicians,@JohnMorganESQ,"#SlickRick this comes from the Panhandle, one of the most beautiful places on Earth. + +You’re wasting taxpayer dolla… https://t.co/YbRDkN6J3J" +06/30/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: RETWEET if you support the full legalization of marijuana in Florida! +06/29/2018,Politicians,@JohnMorganESQ,"Opioid makers are dirty rotten crooks who have stolen from us all, killed our children and wreaked havoc for millio… https://t.co/yj84GoFGYo" +06/29/2018,Politicians,@JohnMorganESQ,"Meanwhile #SlickRick fights to allow smokeable cannabis already approved by 72% of the electorate. + +The biggest lo… https://t.co/6J7wIoud2G" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: If you've been overwhelmed by #robocalls recently, you're not alone! Over 4 billion calls were placed last month - many o…" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Just in time for #swimming season, the CDC has issued a new report on disease #outbreaks associated with swimming in rive…" +06/29/2018,Politicians,@JohnMorganESQ,"Stay strong, keep them wondering how you’re still smiling. 😁😎😊" +06/29/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: Unwanted calls and text messages are some of the top complaints people file with the #FCC every year. #robocalls #tcpa… +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: At a chiropractor's office. Office pet Logan is #ForThePeople, too 🤗 +#EverywhereForEveryone #Dogs https://t.co/m4HCHHvQrr" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In our #JourneyForJustice, no road is too long, no journey too far, and no fight is too hard. #ForThePeople https://t.co/…" +06/29/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Never get tired of doing little things for others. Sometimes, those little things occupy the biggest part of their heart…" +06/29/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: Retweet this if you are with me. Live free or die! https://t.co/0bzVs0for8 +06/29/2018,Politicians,@JohnMorganESQ,👀 The people have spoken! https://t.co/8rzvZfmP29 +06/28/2018,Politicians,@JohnMorganESQ,"Thank you @RonDeSantisFL, states' rights matter!! https://t.co/XKqOVbFhp3" +06/28/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Behind the scenes of our new commercial with @JohnMorganESQ and Luke 👋🏼 +#HiEmma #ForThePeople https://t.co/62JXCpAdRT" +06/28/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The most outrageous part of @FLGovScott’s appeal is that tax payers are FUNDING all of the legal bills. + +🤔 Think about…" +06/28/2018,Politicians,@JohnMorganESQ,"Small minds can’t comprehend big spirits. To be great, you have to be willing to be mocked, hated and misunderstood. Stay strong. #BELIEVE" +06/28/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: This is the tearing down of prohibition. There are no domestic violence calls because of cannabis but plenty for tequila… +06/28/2018,Politicians,@JohnMorganESQ,Retweet this if you are with me. Live free or die! https://t.co/0bzVs0for8 +06/27/2018,Politicians,@JohnMorganESQ,Carlos together we can! #ForThePeople https://t.co/sArJY3MwWP +06/27/2018,Politicians,@JohnMorganESQ,Build it and they will come. #ForThePeople https://t.co/eBoYxqzU69 +06/27/2018,Politicians,@JohnMorganESQ,This is the tearing down of prohibition. There are no domestic violence calls because of cannabis but plenty for te… https://t.co/AcLWtfCdQA +06/27/2018,Politicians,@JohnMorganESQ,RETWEET if you support the full legalization of marijuana in Florida! +06/27/2018,Politicians,@JohnMorganESQ,As you waste OUR taxpayer money fighting what we voted for... we are watching! You've barely won your 2 races! 1%… https://t.co/zShNIdkmaM +06/27/2018,Politicians,@JohnMorganESQ,".@FLGovScott as you run for US Senate read this ⬇️ + +You may think you can ignore really sick people and our vetera… https://t.co/aJDSQDeTFa" +06/27/2018,Politicians,@JohnMorganESQ,"And why? Because the makers of opioids and other dangerous drugs buy politicians every day. + +This one issue will c… https://t.co/jSZovCI739" +06/27/2018,Politicians,@JohnMorganESQ,"The most outrageous part of @FLGovScott’s appeal is that tax payers are FUNDING all of the legal bills. + +🤔 Think a… https://t.co/YLflVA6QRX" +06/27/2018,Politicians,@JohnMorganESQ,RT @orlandosentinel: John Morgan wants to put recreational marijuana legalization on the ballot https://t.co/27QPeIsREZ https://t.co/4FaLDL… +06/27/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: I'm going to look at starting a fund where we all can donate to get full marijuana legalization on the ballot in 2020.… +06/27/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: The dominoes are falling. + +Senate Approves Medical #Marijuana For Military Veterans And Advances Hemp #Legalization + +h…" +06/27/2018,Politicians,@JohnMorganESQ,"“The secret of change is to focus all of your energy, not on fighting the old, but on building the new.” + +– Socrates" +06/26/2018,Politicians,@JohnMorganESQ,"RT @MayorLevine: If the Legislature won’t do it—we’ll get it done, John! https://t.co/KaU0YMQGyI" +06/26/2018,Politicians,@JohnMorganESQ,Phil you could drop the appeal your first day in office and I know you will. Thank you!! #NoSmokeIsAJoke https://t.co/oqQK0KXLns +06/26/2018,Politicians,@JohnMorganESQ,RT @Fla_Pol: John Morgan hints at ballot initiative for marijuana legalization https://t.co/wAriTApLwl via @JimRosicaFL #FlaPol https://t.c… +06/26/2018,Politicians,@JohnMorganESQ,And guess what Troy? Money will pour in. Let’s legalize gambling in Miami while we're at it. Would kill Vegas. https://t.co/ETDOBhPwio +06/26/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: This is huge. + +Everything is about to change. + +""This approval serves as a reminder that advancing sound development pr…" +06/26/2018,Politicians,@JohnMorganESQ,".@SenBillNelson voted #YesOn2 + +And fully supports the smoking of #MedicalMarijuana as called for in the amendment.… https://t.co/wwefjYnH81" +06/26/2018,Politicians,@JohnMorganESQ,"The United States Senate race between The Astronaut and #SlickRick will be decided by the politics of pot! + +We are… https://t.co/SjFK8WHFhs" +06/26/2018,Politicians,@JohnMorganESQ,I'm going to look at starting a fund where we all can donate to get full marijuana legalization on the ballot in 20… https://t.co/rNsVVUhcfv +06/26/2018,Politicians,@JohnMorganESQ,"Maybe it’s just time for full legalization. It would pass with flying colors! + +Guys like @FLGovScott would vote no… https://t.co/GQitb6N3ng" +06/26/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Very proactive approach by Fiat Chrysler in what appears to be a move that puts people over profits! https://t.co/tBW6Kj… +06/26/2018,Politicians,@JohnMorganESQ,"Be strong, things will get better. It might be stormy now, but rain doesn’t last forever. #BELIEVE" +06/25/2018,Politicians,@JohnMorganESQ,"Work hard for what you want because it wont come to you without a fight. You have to be strong, courageous, and kno… https://t.co/mFOxMbpFqV" +06/23/2018,Politicians,@JohnMorganESQ,RT @forthepeople: June is Alzheimer's Awareness Month and Morgan & Morgan wants to help improve the lives of people who have the disease. T… +06/23/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: A message for @FLGovScott, enough is enough drop YOUR #MedicalMarijuana appeal. Do it for the PEOPLE! + +I'm urging you al…" +06/22/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Fighting for justice takes a lot out of man's best friend! 🐕 Molly's catching some 💤 in @JohnMorganEsq's office. Happy #… +06/22/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Everyone likes the idea of a self-driving car, but most people don’t want to be the test rats for the industry. + +Not a…" +06/22/2018,Politicians,@JohnMorganESQ,RT @forthepeople: We're pleased to announce that 44 of our #attorneys were recently revealed as selected by @SuperLawyers Magazine for its… +06/22/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Every year, @SuperLawyers evaluates #lawyers across the country based on peer recognition and professional achievement fo…" +06/22/2018,Politicians,@JohnMorganESQ,"Never give up on something you really want. It’s difficult to wait, but more difficult to regret!!" +06/22/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: The Business Trial Group is pleased to announce that seven of our #attorneys were recognized by @SuperLawyers Magazin… +06/22/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: New commercials coming soon! Approved by Emma and Molly who kept a close eye on set 🎬📺 +#ForThePeople #ForTheDogs https://…" +06/21/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: I've been saying this loudly for the last 5yrs. It's a no brainer. Small minded people & politicians on the take from dr… +06/21/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: “Look at the sparrows; they do not know what they will do in the next moment. Let us literally live from moment to momen… +06/21/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: ""Influence is difficult to quantify but you know it when you see it.” @JohnMorganESQ is featured in the 2018 edition of t…" +06/21/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: Friendly Challenge: + +Try to acknowledge and smile at every person you pass today. It’s not an easy challenge. But watch…" +06/21/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In our #JourneyForJustice, we've assembled an army of support staff to take on thousands of cases and fight #ForThePeople…" +06/21/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: #SlickRick meanwhile let’s our vets with PTSD suffer. Suicide is often a likely solution. This cruelty will cost @FLGovS… +06/21/2018,Politicians,@JohnMorganESQ,“We all have great inner power. The power is self-faith. There’s really an attitude to winning. You have to see you… https://t.co/ghXLiLqD4K +06/20/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: I again challenge @FLGovScott to a debate so I can show him and all of Florida why he's breaking the law, not following…" +06/20/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The wait is all on #SlickRick, this will cost him the US Senate. + +When you don’t have compassion for our vets, cops, fir…" +06/20/2018,Politicians,@JohnMorganESQ,"RT @JoshConstine: Is this the next HQ Trivia? No waiting. You can wager $3 right now on movies, tech, history trivia and win cash https://t…" +06/20/2018,Politicians,@JohnMorganESQ,If you want to have some fun play our new game @PlayProveIt on your iPhone and make some money! https://t.co/HxCQAfBSg5 +06/20/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: A worldwide paradigm shift is happening as we speak. + +#HealingTheNation + +🙌🏼❤️✌🏼🍃 https://t.co/AJyl4DxpbR" +06/20/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: The dominoes are falling. https://t.co/PNPgjeeY0i +06/20/2018,Politicians,@JohnMorganESQ,"If someone is strong enough to bring you down, show them you are strong enough to get back up!!" +06/20/2018,Politicians,@JohnMorganESQ,The dominoes are falling. https://t.co/PNPgjeeY0i +06/19/2018,Politicians,@JohnMorganESQ,RT @daniprieur: Spoke with @JohnMorganESQ about #smokable medical marijuana ban https://t.co/ghxcBU7xFi +06/19/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: “These are likely lifelong injuries that they are going to be dealing with,” @MattMorganESQ said. He will #fight to ensur…" +06/19/2018,Politicians,@JohnMorganESQ,RT @APSouthRegion: An attorney says some passengers on a #Florida roller coaster that derailed could have lifelong injuries. He says a laws… +06/19/2018,Politicians,@JohnMorganESQ,#SlickRick meanwhile let’s our vets with PTSD suffer. Suicide is often a likely solution. This cruelty will cost… https://t.co/LBQiBmb6G2 +06/19/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: As the parent of two infants, I am constantly experiencing the lack of consistency in children products. https://t.co/hb…" +06/19/2018,Politicians,@JohnMorganESQ,RT @TODAYshow: “I really thought I was going to die.” One of the riders injured in last week’s roller coaster accident in Florida shares he… +06/19/2018,Politicians,@JohnMorganESQ,"""Nothing in the world can take the place of perseverance. Talent will not; nothing is more common than unsuccessful… https://t.co/5ImeBoo1QZ" +06/18/2018,Politicians,@JohnMorganESQ,"And thank you @realDonaldTrump for your support. You get it. + +The makers of opioids thank you @FLGovScott. #NoSmokeIsAJoke" +06/18/2018,Politicians,@JohnMorganESQ,"I again challenge @FLGovScott to a debate so I can show him and all of Florida why he's breaking the law, not follo… https://t.co/t5p3cQTBQj" +06/18/2018,Politicians,@JohnMorganESQ,"The wait is all on #SlickRick, this will cost him the US Senate. + +When you don’t have compassion for our vets, cops… https://t.co/yrKYrNMdxA" +06/18/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Happening Now: Press conference on the #DaytonaBeach Roller Coaster Derailment: https://t.co/ggnaJBpalN +06/18/2018,Politicians,@JohnMorganESQ,"RT @JustinWarmoth: Attorney @MattMorganESQ, who represents three people who were hurt in last week’s roller coaster derailment in Daytona B…" +06/18/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Life is a gift, and it offers us the privilege, opportunity, and responsibility to give something back by becoming more." +06/18/2018,Politicians,@JohnMorganESQ,RT @forthepeople: A woman who was severely injured when a #rollercoaster on the #DaytonaBeach Boardwalk derailed has hired @MattMorganESQ t… +06/18/2018,Politicians,@JohnMorganESQ,I've been saying this loudly for the last 5yrs. It's a no brainer. Small minded people & politicians on the take fr… https://t.co/aBi4IJ2XmZ +06/18/2018,Politicians,@JohnMorganESQ,RT @orlandosentinel: Woman hurt in Daytona roller coaster derailment hires Matt Morgan https://t.co/Xt7YsmCH1Y https://t.co/OtaxDorAnM +06/18/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: Media Advisory: https://t.co/HdECbJUbZi +06/18/2018,Politicians,@JohnMorganESQ,"""Our greatest glory is not in never falling, but in rising every time we fall."" + +– Confucius" +06/17/2018,Politicians,@JohnMorganESQ,"Of all of the jobs I’ve had in life, being a dad was the most challenging and most rewarding. My children are grown… https://t.co/pOeXlt0U5W" +06/17/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: I have been retained to represent the interests of a woman severely injured in the Daytona Beach Boardwalk roller coaste… +06/17/2018,Politicians,@JohnMorganESQ,"RT @darrenrovell: After spending 17 years in an LA parking garage, Al Cowlings Ford Bronco, made famous on this date in 1994 in the highway…" +06/16/2018,Politicians,@JohnMorganESQ,You must understand that the @OrlandoMagic make big money off a free arena & selling tickets to VISITING fans to se… https://t.co/JUVqfTzhAu +06/16/2018,Politicians,@JohnMorganESQ,RT @forthepeople: 30 seconds is all it takes for @JohnMorganESQ to explain why we are #ForThePeople. https://t.co/tj566QDaa2 +06/15/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: Not surprisingly, #BigPharma has found a way to reap additional profits from the #Opioid epidemic that it helped to cre…" +06/15/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: We're running a Virtual #FoodDrive to raise $10,000 for Second Harvest Food Bank @feedhopenow. Join us! Click here to don…" +06/15/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Help others achieve their dreams and you will achieve yours. +06/15/2018,Politicians,@JohnMorganESQ,"RT @BibeeChristian: And Morgan and Morgan can help turn that tide. The Columbus, GA office have some of the finest attorneys and staff you…" +06/15/2018,Politicians,@JohnMorganESQ,"""When you get into a tight place and everything goes against you … never give up then, for that is just the place a… https://t.co/SvUvKs7Fz5" +06/14/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Congrats to attorneys David Henry & John Berke - with help from attorney Adam Kemp - for earning a $214k #verdict for the… +06/14/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Never underestimate the difference you can make in the lives of others. Step forward, reach out and help. This week reac…" +06/14/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Our attorneys aren't afraid to take on the biggest corporations. We never stop fighting #ForThePeople. #StrengthInNumbers… +06/14/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: #Attorney Clay Townsend discusses how experience and persistence paid off in various high-profile #intellectualpropert… +06/14/2018,Politicians,@JohnMorganESQ,We either find a way or make one!! #BELIEVE +06/14/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: ✌🏼be with you today ☀️ https://t.co/2x7Dyb6RDj +06/14/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: 'One person can make a difference, and everyone should try.' - JFK. + +It started with one person's fight, it's grown into…" +06/13/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: 4.1 billion. That’s the number of #robocalls made to American consumers last month, according to a new report. #TCPA #F…" +06/13/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: What did @RobertKennedyJr discuss with us yesterday? Tort reform, #democracy, #justice, and @JohnMorganESQ. Here's a snea…" +06/13/2018,Politicians,@JohnMorganESQ,There is no failure except in no longer trying!! +06/12/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Morgan & Morgan of counsel #attorney @RobertKennedyJr talks about his new book, 'American Values: Lessons I Learned From…" +06/12/2018,Politicians,@JohnMorganESQ,Neal I met him in Underground Atlanta in 1975. I was listening to Piano Red. He gave me an ax handle. Jeff Sessions… https://t.co/If7S2w8vy9 +06/12/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: We just received a $2,500,000.00 #verdict in Orange County. Our client had a permanent injury in his neck called a disc…" +06/12/2018,Politicians,@JohnMorganESQ,.@WillieNelson can you or @SnoopDogg write us a song?? #NoSmokeIsAJoke +06/12/2018,Politicians,@JohnMorganESQ,.@realDonaldTrump needs to FIRE this backwards racist. Sessions is George Wallace & Lester Maddox rolled into one.… https://t.co/0dY4AWhDio +06/12/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: “No act of kindness, no matter how small, is ever wasted.” + +– Aesop" +06/12/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: The #recall is especially important to Floridians because experts say vehicles with #Takata #airbags in hot and humid c… +06/12/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: The hotter it gets the greater the risk! https://t.co/JNKjYXxZqV +06/12/2018,Politicians,@JohnMorganESQ,Gaetz gets it. @mattgaetz please tell #SlickRick it’s time to break away from Jeff Beauregard Sessions and enter th… https://t.co/v4msaEle7I +06/12/2018,Politicians,@JohnMorganESQ,Character consists of what you do on the third and fourth tries. +06/11/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: @ChristieZizo @JimRosicaFL @JohnMorganESQ You got it @ChristieZizo! Emma, and Molly - they’re never far from @JohnMorganE…" +06/11/2018,Politicians,@JohnMorganESQ,"I don’t think @FLGovScott should want to be in that company, he can allow smoke today with the wave of a pen.… https://t.co/exqbKSyO1s" +06/11/2018,Politicians,@JohnMorganESQ,"Many thanks to @realDonaldTrump for his statements concerning #MedicalMarijuana. He gets it. + +It seems the last two… https://t.co/vDQSBUwKqQ" +06/11/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: When you hire us, you're hiring an army of lawyers who'll fight on your behalf. #ForThePeople #StrengthInNumbers https://…" +06/11/2018,Politicians,@JohnMorganESQ,"Your future is created by what you do TODAY, not tomorrow!" +06/09/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: 🙌🏼🙌🏼🙌🏼 https://t.co/ZmGwQj3LGp +06/09/2018,Politicians,@JohnMorganESQ,RT @forthepeople: What does it mean to be #ForThePeople? We're an army of over 400 lawyers who are built for the fight. 💪 #StrengthInNumbe… +06/09/2018,Politicians,@JohnMorganESQ,"RT @MayorLevine: Thanks @JohnMorganESQ, it’s time to do the right thing and legalize recreational marijuana in Florida! #sayfie #flapol htt…" +06/08/2018,Politicians,@JohnMorganESQ,"But in the end, for you, and those that benefit from full #legalization, it will have made all the difference in th… https://t.co/0zZkTgu3rT" +06/08/2018,Politicians,@JohnMorganESQ,Like many big things it takes time to make change. Think of same sex marriage. The politicians who were brave enoug… https://t.co/FL3ELh3VE1 +06/08/2018,Politicians,@JohnMorganESQ,"Phil your position is the correct one! 👏👏👏 + +Minorities, young people, & those without money are the ones that get c… https://t.co/kGasxMKP5s" +06/08/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: If you want to understand fully what @FLGovScott is doing to our veterans, first responders, and really sick Floridians.…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: “The batteries, when unstable, can pack the punch of a roman-candle grenade,” said @MikeMorganESQ, managing partner of…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: You need to be aware of what others are doing, applaud their efforts, acknowledge their successes, and encourage them in…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Get your car checked, if not it will be too late when you realize you have a problem! https://t.co/mxtIdJFKgT" +06/08/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: .@forthepeople is proud to announce that attorney Keith Meehan has joined the firm's Business Trial Group. Meehan brin… +06/08/2018,Politicians,@JohnMorganESQ,"""Keep away from people who try to belittle your ambitions. Small people always do that, but the really great makes… https://t.co/AilNR5jgKb" +06/08/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: When a #drug company pays kickbacks to a physician, they’re trying to get that physician’s patients to use a product. Usi…" +06/08/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: President @realDonaldTrump just said he “probably will end up supporting” the bipartisan #marijuana legislation reform b… +06/08/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: While at the same time #SlickRick is denying smoke to veterans with PTSD. The cruelty and meanness has no rival! + +Smoke…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: Over the past 30 years, our firm has represented over 200K people, collecting #billions in the process. I often wonder w…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: #SlickRick is out of touch with his own President! + +Thank you @realDonaldTrump. You get it, #NoSmokeIsAJoke. https://t.c…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: I have heard similar comments from other President Trump “insiders”. + +Very popular issue for President @realDonaldTrum…" +06/07/2018,Politicians,@JohnMorganESQ,"Think of the ratings for that hour. We might beat the #RoyalWedding! + +#NoSmokeIsAJoke #100K https://t.co/shRFve1Gig" +06/07/2018,Politicians,@JohnMorganESQ,While at the same time #SlickRick is denying smoke to veterans with PTSD. The cruelty and meanness has no rival!… https://t.co/A43H11oWXV +06/07/2018,Politicians,@JohnMorganESQ,"#SlickRick is out of touch with his own President! + +Thank you @realDonaldTrump. You get it, #NoSmokeIsAJoke. https://t.co/MfVeKU2Gr1" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: We’ve come a long way!! + +65% of Americans say it is “morally acceptable” to 💨 #marijuana. + +Yes, that’s a healthy majori…" +06/07/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Happiness is a by-product of an effort to make someone else happy. 😀 +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: If #SlickRick would rather, I will donate $100K to the charity of his choice! The Ann Scott Trust located in the Isle of…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Gary, here's my offer to Florida. I would like to debate @FLGovScott on this issue so all of Florida can see his positio…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Someone’s keeping a close eye on today’s commercial shoot. +#ForTheDogs #Emma #ForThePeople https://t.co/xFUimXdLWW" +06/07/2018,Politicians,@JohnMorganESQ,The only way of finding the limits of the possible is by going beyond them into the impossible. +06/07/2018,Politicians,@JohnMorganESQ,"If #SlickRick would rather, I will donate $100K to the charity of his choice! The Ann Scott Trust located in the Is… https://t.co/PuAaHAuzwJ" +06/06/2018,Politicians,@JohnMorganESQ,"Florida deserves to hear @FLGovScott out and I am willing to pay for it! + +Anywhere. Anytime. + +You can run but you… https://t.co/3bI7MY1AZo" +06/06/2018,Politicians,@JohnMorganESQ,"Gary, here's my offer to Florida. I would like to debate @FLGovScott on this issue so all of Florida can see his po… https://t.co/3lR8RGD7IN" +06/06/2018,Politicians,@JohnMorganESQ,"And remember this @FLGovScott... + +#MedicalMarijuana got 500,000 MORE votes than you last time and you won by only… https://t.co/famcfdma55" +06/06/2018,Politicians,@JohnMorganESQ,"Or it could be ended TODAY if #SlickRick stops wasting the state's money and hurting veterans, cops, firefighters a… https://t.co/8PsTpmG2wX" +06/06/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The department of health's delay in getting #MedicalMarijuana cards has been intentional. No one could be that inept! + +I…" +06/06/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: That shirt tho 🔥 🔥🔥 + +Let me borrow that @JohnMorganESQ https://t.co/FKnFvcnBdQ" +06/06/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: The U.S. Food and Drug Administration has named dozens of #drugmakers who game the system by delaying cheaper, #generic…" +06/06/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: “If you light a lamp for somebody, it will also brighten your path.” + +– Buddha" +06/06/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Judge Karen Gievers lifted an automatic stay on her ruling on smokable #medicalmarijuana. It's about compassion #forthepe… +06/06/2018,Politicians,@JohnMorganESQ,Nobody who ever gave their best has regretted it!! +06/06/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: #SlickRick please follow the law & the will of 72% of the people. Everyday you waste taxpayers' money w/ this frivolous… +06/05/2018,Politicians,@JohnMorganESQ,The department of health's delay in getting #MedicalMarijuana cards has been intentional. No one could be that inep… https://t.co/ylDlkpjY10 +06/05/2018,Politicians,@JohnMorganESQ,#SlickRick please follow the law & the will of 72% of the people. Everyday you waste taxpayers' money w/ this frivo… https://t.co/u1gpG4UAgL +06/05/2018,Politicians,@JohnMorganESQ,"If you want to understand fully what @FLGovScott is doing to our veterans, first responders, and really sick Florid… https://t.co/HFECoE00Uf" +06/05/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: But not to #SlickRick! + +This will cost @ScottforFlorida!! #NoSmokeIsAJoke https://t.co/67RqkLJuqP" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: .@JohnMorganESQ speaks to @wmfeorlando about the legal battle over smokable #MedicalMarijuana, and how he thinks it will…" +06/05/2018,Politicians,@JohnMorganESQ,"But not to #SlickRick! + +This will cost @ScottforFlorida!! #NoSmokeIsAJoke https://t.co/67RqkLJuqP" +06/05/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: 🙏 Pray for Beauregard, he has many issues. https://t.co/oMXvNV93H5" +06/05/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: In a democracy, in which the majority (95%) of the people support #marijuana for #medical purposes, this should be treat…" +06/05/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: This has prompted questions about why the #drug does not have warning labels about potentially fatal side effects. http… +06/05/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: In order to be who you are, you must let go of who you think you are. 👌🏼" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: We believe in your right to smoke #medicalmarijuana. We fought to protect that right, and we won. It's time for compassio…" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In five years, they've become a dynamic duo. @MattMorganESQ & @KeithMitnikESQ talk about their partnership: https://t.co/…" +06/05/2018,Politicians,@JohnMorganESQ,"When was the last time you visited a library?! Money down the drain. + +@WinterParkFla, spend it on food!! https://t.co/tAlYIlctND" +06/05/2018,Politicians,@JohnMorganESQ,"🙏 Pray for Beauregard, he has many issues. https://t.co/oMXvNV93H5" +06/05/2018,Politicians,@JohnMorganESQ,"""When we strive to become better than we are, everything around us becomes better too."" + +- @paulocoelho" +06/04/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Take off the Navy hat, I have a new one that's more appropriate: #ScrewTheVets + +These men & women have fought wars for u…" +06/04/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: .@FLGovScott says he's “just following the law” while denying the will of the people and hurting really sick people. Don… +06/04/2018,Politicians,@JohnMorganESQ,"Governor Scott, you have the power. You are the law. #CompassionMatters + +#NoSmokeIsAJoke" +06/04/2018,Politicians,@JohnMorganESQ,"Take off the Navy hat, I have a new one that's more appropriate: #ScrewTheVets + +These men & women have fought wars… https://t.co/EsbpdRTYaP" +06/04/2018,Politicians,@JohnMorganESQ,"This chapter will be a stain on @ScottforFlorida forever. Every day he delays is a day of suffering for one of us,… https://t.co/ur9RN7x3II" +06/04/2018,Politicians,@JohnMorganESQ,"Likewise he could today, drop the state's appeal and smokeable #marijuana would be there for those who need it most… https://t.co/Mr4iTDZJ1D" +06/04/2018,Politicians,@JohnMorganESQ,"Gov. Scott is smart, he read in the intent language the same thing Judge Gievers read that the voters approved, smo… https://t.co/iRAnmj5Nby" +06/04/2018,Politicians,@JohnMorganESQ,.@FLGovScott says he's “just following the law” while denying the will of the people and hurting really sick people… https://t.co/MDlYNqJKjc +06/04/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Morgan & Morgan. AND Morgan. 😉 +#ForThePeople #LAW #Verdict https://t.co/aID9bToSXQ" +06/04/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Former judge and current @forthepeople attorney @BelvinPerryJr speaking at last night's @The100GO #scholarship dinner. Me… +06/04/2018,Politicians,@JohnMorganESQ,It’s a matter of dignity. #NoSmokeIsAJoke https://t.co/SraspalPxS +06/04/2018,Politicians,@JohnMorganESQ,"Governor Scott, it is not about your past, it is about COMPASSION for Florida! + +Learn and grow! + +I don’t think you'… https://t.co/qboX5iuBDR" +06/04/2018,Politicians,@JohnMorganESQ,.@FLGovScott had family members who had problems with drugs. Not with cannabis but with drugs. He can’t separate th… https://t.co/60jtZJfKjj +06/04/2018,Politicians,@JohnMorganESQ,"""You will never plough a field if you only turn it over in your mind."" + +- Irish Proverb ☘️" +06/03/2018,Politicians,@JohnMorganESQ,Please ask your friends to follow me here on Twitter as the people speak truth to power and the makers of opioids. #LiveFreeOrDieTrying +07/01/2018,Politicians,@SenJohnMcCain,"RT @FaceTheNation: TODAY: +💬 @AmbJohnBolton +💬 @SenToomey +💬 @SenBlumenthal +💬 Fmr. Amb. Roberta Jacobson +💬 @MarkSalter55 + +📺 Don't miss @F…" +06/29/2018,Politicians,@SenJohnMcCain,"Cindy & I are praying for the families, friends & colleagues of the victims of the terrible shooting… https://t.co/LYfLWN9QI2" +06/29/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""What Does the United States Stand For?"" https://t.co/C0dzQkn7RQ" +06/29/2018,Politicians,@SenJohnMcCain,Thank you @jamiemfly for the great review in @weeklystandard of my new book #TheRestlessWave! https://t.co/YJahRn50fU +06/27/2018,Politicians,@SenJohnMcCain,Congratulations to my friend @MittRomney on his victory last night - an outstanding leader for #Utah & the nation! #utpol +06/27/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""Trump Rides a Harley—to Europe: The U.S. casualties of his trade war are starting to mount"" https://t.co/TPacnAwp5X" +06/25/2018,Politicians,@SenJohnMcCain,"Must-read @azcentral: ""Granite Mountain Hotshots: An untold story from the day 19 firefighters died"" https://t.co/Wbkee1zwAe" +06/24/2018,Politicians,@SenJohnMcCain,Cindy & I send our prayers to the family & friends of Lt. Christopher Carey Short who was tragically killed in an A… https://t.co/wiN0I3jLu7 +06/22/2018,Politicians,@SenJohnMcCain,"Cindy & I are deeply saddened by the passing of our friend Charles Krauthammer. Brilliant, kind, funny & generous,… https://t.co/bBDJoZfcZn" +06/21/2018,Politicians,@SenJohnMcCain,Sent letter today urging @DeptVetAffairs to address poor quality ratings at #Arizona VA nursing homes https://t.co/BOaXiHh7YO +06/20/2018,Politicians,@SenJohnMcCain,"RT @ChrisCoons: On #WorldRefugeeDay, @SenJohnMcCain & I are calling on the Trump admin to withdraw the nomination of Ronald Mortensen to se…" +06/19/2018,Politicians,@SenJohnMcCain,Sent letter w/ @ChrisCoons urging the admin to withdraw nomination of Ronald Mortensen to lead US refugee & migrati… https://t.co/UF4BTaUBZt +06/19/2018,Politicians,@SenJohnMcCain,"RT @joshledermanAP: NEW from @AP: ⁦@SenJohnMcCain⁩, ⁦@ChrisCoons pen letter to ⁦@SecPompeo⁩ urging Trump administration to withdraw migrati…" +06/19/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost by human rights icon Natan Sharansky: ""The U.S. stood with Soviet dissidents. It should s… https://t.co/cT5YpRzuHk" +06/19/2018,Politicians,@SenJohnMcCain,"Wonderful @washingtonpost piece on my friend @SenatorDole, a man who can teach all Americans about what it means to… https://t.co/GRtXCv5teo" +06/18/2018,Politicians,@SenJohnMcCain,"The administration’s current family separation policy is an affront to the decency of the American people, and cont… https://t.co/dcHVT3KtCw" +06/18/2018,Politicians,@SenJohnMcCain,"I'm very proud the Senate voted 85-10 to pass the #FY19NDAA, vital legislation that will provide for our men & wome… https://t.co/ixpHqOzAto" +06/18/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""A Troops for Nukes Trade? U.S. forces in South Korea do far more than protect Seoul"" https://t.co/09twqxAn0J" +06/14/2018,Politicians,@SenJohnMcCain,Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts… https://t.co/vGnkifQFyu +06/14/2018,Politicians,@SenJohnMcCain,I'm deeply honored @SenJackReed & my colleagues have voted to designate the Strategic Defense Fellows Program in my… https://t.co/NdT50RAP56 +06/14/2018,Politicians,@SenJohnMcCain,"Must-read by @vkaramurza in @washingtonpost: ""Yes, #Russia should rejoin the Group of Seven — when it becomes a dem… https://t.co/xtWcI3DGZX" +06/14/2018,Politicians,@SenJohnMcCain,Thank you my friend @JeffFlake https://t.co/bgc4ICrwiL +06/13/2018,Politicians,@SenJohnMcCain,US sanctions on Hun Sen's bodyguards represent a positive step forward in holding the regime accountable. More desi… https://t.co/E11dD3l79j +06/13/2018,Politicians,@SenJohnMcCain,"Must-read column by @marcthiessen in @washingtonpost today: ""On Charles Krauthammer, my friend, mentor and lodestar"" https://t.co/aDlr4l8iYA" +06/13/2018,Politicians,@SenJohnMcCain,"A worthy honor for an extraordinary man: ""@usairforce honors #Vietnam hero who served in 3 wars, was John McCain’s… https://t.co/m4L6Haa9zt" +06/13/2018,Politicians,@SenJohnMcCain,RT @people: Meghan McCain Honors Her Dad Ahead of Father’s Day: 'I Have a Beautiful Feeling About Our Relationship' https://t.co/Yg6ro3ORmC +06/12/2018,Politicians,@SenJohnMcCain,Sending full support to @tsipras_eu & @Zoran_Zaev as they work together to solve the #Macedonia naming dispute. If… https://t.co/HeFWGvVb9G +06/11/2018,Politicians,@SenJohnMcCain,"Cindy & I send our heartfelt condolences to the family & friends of Staff Sgt. Alexander W. Conrad of Chandler,… https://t.co/Y3CUxl0B72" +06/10/2018,Politicians,@SenJohnMcCain,"To our allies: bipartisan majorities of Americans remain pro-free trade, pro-globalization & supportive of alliance… https://t.co/IcT1QCv2YC" +06/09/2018,Politicians,@SenJohnMcCain,RT @MeghanMcCain: So amazing to be here tonight at The American Spirit Awards at The National WWII Museum in New Orleans - such an honor to… +06/08/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Friday will always be Charles’s day"" https://t.co/hRCXFPhrSN" +06/08/2018,Politicians,@SenJohnMcCain,"Cindy & I are praying for our dear friend Charles @krauthammer. A man of incredible intellect & character, Charles… https://t.co/lJA1gDhQgt" +06/08/2018,Politicians,@SenJohnMcCain,Vladimir Putin chose to make #Russia unworthy of membership in the G-8 by invading Ukraine and annexing Crimea. Not… https://t.co/ipcYsr3zfa +06/08/2018,Politicians,@SenJohnMcCain,RT @TJQuinnESPN: We were joined by @SenJohnMcCain @Kasparov63 @MichaelJMorell @MartynyukLeonid Richard McLaren and many others. Please watc… +06/07/2018,Politicians,@SenJohnMcCain,RT @SASCMajority: The report to accompany the John S. McCain #FY19NDAA (S. Rpt. 115-262) has been posted: https://t.co/UXOI7dyZi8 +06/07/2018,Politicians,@SenJohnMcCain,"Must-read @lawfareblog by @RHFontaine & Vance Serchuk: ""Congress Should Oversee America’s Wars, Not Just Authorize… https://t.co/a0uayIQLUB" +06/07/2018,Politicians,@SenJohnMcCain,".@thehill: ""Senate defense bill eyes threats from #Russia, #China"" https://t.co/IR7kCGkwTD" +06/06/2018,Politicians,@SenJohnMcCain,Proud the #VAMISSIONAct has been signed into law. This bill will provide veterans w/ greater health care choices &… https://t.co/IWY0gXyE3W +06/06/2018,Politicians,@SenJohnMcCain,"America is the land of the immigrant’s dream. For centuries, people have come to this country for the opportunities… https://t.co/KA2cVfF0MT" +06/05/2018,Politicians,@SenJohnMcCain,"Great to hear the Senate will soon be opening debate on the #FY19NDAA, a bipartisan bill that will provide America'… https://t.co/cTvSCZC5r6" +06/05/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""#China’s Military Escalation: Mattis and Congress push back against Beijing’s South China Sea depl… https://t.co/mO1pJ3SfEu" +06/02/2018,Politicians,@SenJohnMcCain,I strongly support the bipartisan effort in the House to file a discharge petition to reopen the debate on immigrat… https://t.co/DrgFB72xwZ +06/01/2018,Politicians,@SenJohnMcCain,Important @CNN read by George Shultz & Pedro Aspe: “A better way than tariffs to improve America's trade picture” https://t.co/A3e38jBkTp +06/01/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""#Burma’s crimes against humanity went unpunished. No wonder it’s at it again."" https://t.co/nF55uRrXSl" +05/31/2018,Politicians,@SenJohnMcCain,RT @cindymccain: It is our duty as a country to take care of these vulnerable children and adults. https://t.co/Z1atwtZZJ8 +05/31/2018,Politicians,@SenJohnMcCain,"My deepest thanks to the readers of our new book, The Restless Wave, which is now #1 on @nytimes best sellers list… https://t.co/OTzeJDtkqA" +05/30/2018,Politicians,@SenJohnMcCain,Must-read by my friend @GrantWoods in @USATODAY https://t.co/bzeq1XUBEk +05/30/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""Myanmar Is Intensifying Violence Against Ethnic Minorities, U.S. Says"" https://t.co/9UeXC5jOth" +05/28/2018,Politicians,@SenJohnMcCain,Today we honor the Americans who sacrificed everything to secure the blessings of liberty. Family and friends to so… https://t.co/mlkXE1YLv9 +05/27/2018,Politicians,@SenJohnMcCain,"RT @jaketapper: Corporal Matthew Stanley, KIA December 16, 2006 when his Humvee struck an IED on patrol in Taji, Iraq. @SenJohnMcCain wears…" +05/27/2018,Politicians,@SenJohnMcCain,Happy 95th birthday to my friend Dr. Henry Kissinger! +05/24/2018,Politicians,@SenJohnMcCain,RT @SenJackReed: Chairman @SenJohnMcCain’s devotion to duty & sheer determination are inspiring. He has always taken on challenges with a s… +05/24/2018,Politicians,@SenJohnMcCain,"Every year, our committee reports out a bill that is debated, amended & signed into law—imperfect, full of compromi… https://t.co/yCqqPeKdZX" +05/24/2018,Politicians,@SenJohnMcCain,"Thanks to my #SASC colleagues’ commitment to principled legislating, I believe the NDAA will continue to serve as a… https://t.co/Yd15TbfBEX" +05/24/2018,Politicians,@SenJohnMcCain,My term as #SASC Chairman has been far from perfect. But I'm proud our members have upheld the Senate’s finest trad… https://t.co/VoNOJquONI +05/24/2018,Politicians,@SenJohnMcCain,I’d also like to express my thanks to @JimInhofe for shepherding the #FY19NDAA through the committee markup in my a… https://t.co/7TiUgUr1r3 +05/24/2018,Politicians,@SenJohnMcCain,I count myself fortunate to have @SenJackReed as my partner on the committee. We come from different parties & we’v… https://t.co/RavgP3ajHX +05/24/2018,Politicians,@SenJohnMcCain,I’m proud #SASC voted overwhelmingly to pass the #FY19NDAA. One of the greatest honors of my life has been to serve… https://t.co/AQTT0MGUmG +05/24/2018,Politicians,@SenJohnMcCain,I applaud @POTUS for issuing a posthumous pardon of boxing legend Jack Johnson for his racially charged conviction… https://t.co/KyakCfSZwA +05/24/2018,Politicians,@SenJohnMcCain,RT @TODAYshow: Here’s a powerful new look at @HBO’s documentary about the life and career of @SenJohnMcCain https://t.co/0vo7uYFSdo +05/24/2018,Politicians,@SenJohnMcCain,".@ABC: ""John McCain says in new biopic: 'I'm a human being and I'm not a maverick'"" https://t.co/vf9OVupd8Q" +05/24/2018,Politicians,@SenJohnMcCain,RT @CNNPolitics: The VA health care bill is named after Sen. John McCain https://t.co/vwPsoDhSby https://t.co/wH3FgjmWd1 +05/23/2018,Politicians,@SenJohnMcCain,"I'm deeply humbled my colleagues have designated this bill in my name, along with my friend & comrade,… https://t.co/sRfSu75gNC" +05/23/2018,Politicians,@SenJohnMcCain,"I applaud the Senate for passing the #VAMISSIONAct, which includes major reforms I cosponsored with @JerryMoran to… https://t.co/J158F018ma" +05/23/2018,Politicians,@SenJohnMcCain,"Must-read @JeffreyGoldberg @TheAtlantic: ""John McCain’s Greatest Fear: A conversation with Mark Salter about the co… https://t.co/7sDZxcbSxc" +05/22/2018,Politicians,@SenJohnMcCain,"Cindy & I send our heartfelt prayers to Susan, Evan & the entire Bayh family. We are with you in this fight & confi… https://t.co/nJ0q6PDpEA" +05/22/2018,Politicians,@SenJohnMcCain,"RT @iBooks: .@SenJohnMcCain’s new memoir: Read his candid story. #TheRestlessWave +https://t.co/4zLttRqiMO https://t.co/NtPxPjzJxg" +05/22/2018,Politicians,@SenJohnMcCain,"RT @CNN: Speechwriter helps Sen. John McCain say his piece in his new book, ""The Restless Wave,"" which is being released this week https://…" +05/22/2018,Politicians,@SenJohnMcCain,"RT @ABCPolitics: Sen. John McCain's new book provides insights into his 2008 presidential race against Barack Obama, his thoughts on Donald…" +05/22/2018,Politicians,@SenJohnMcCain,"RT @mikeallen: on publication day, @MarkSalter55 tells me how he and @SenJohnMcCain wrote their final book together ... Salter has 20-25 ho…" +05/22/2018,Politicians,@SenJohnMcCain,".@NPR: ""In 'The Restless Wave' Sen. John McCain Discusses Principles He Wants The U.S. To Keep"" https://t.co/zzYGi7joLD" +05/22/2018,Politicians,@SenJohnMcCain,".@CNN on my new book w/ @MarkSalter55, The Restless Wave, which is now out today: ""Speechwriter helps John McCain s… https://t.co/OpEzwgX847" +05/21/2018,Politicians,@SenJohnMcCain,RT @MeghanMcCain: So wonderful having my fathers alter ego (and author of The Restless Wave) @MarkSalter55 & filmmaker of my fathers new @H… +05/21/2018,Politicians,@SenJohnMcCain,"RT @TheView: Filmmaker Teddy Kunhardt says @SenJohnMcCain had two goals for his documentary: ""I want to tell the American people I'm not pe…" +05/21/2018,Politicians,@SenJohnMcCain,".@nypost: ""This week’s must-read books"" https://t.co/svS1iUzfnQ" +05/21/2018,Politicians,@SenJohnMcCain,"RT @TheView: THIS MORNING: We talk to the co-author of @SenJohnMcCain's new book, @MarkSalter55, and the director of his documentary, Teddy…" +05/21/2018,Politicians,@SenJohnMcCain,".@USATODAY: ""5 books you won't want to miss this week, including Stephen King, John McCain"" https://t.co/okR35aCedN" +05/21/2018,Politicians,@SenJohnMcCain,"RT @NorahODonnell: ""Eternal Father, strong to save, Whose arm hath bound the restless wave."" Our conversation with @MarkSalter55 on new boo…" +05/21/2018,Politicians,@SenJohnMcCain,"RT @CBSThisMorning: Senator John McCain says his cancer diagnosis makes him free to speak his mind. He does exactly that in his new book, ""…" +05/21/2018,Politicians,@SenJohnMcCain,"RT @CBSNews: ""[Sen. John McCain] recognizes that so much more unites us than divides us and in this country the only way to get things done…" +05/21/2018,Politicians,@SenJohnMcCain,"My friend & coauthor @MarkSalter55 joined @CBSThisMorning today to discuss our new collaboration, The Restless Wave… https://t.co/v9EyGaq91D" +05/20/2018,Politicians,@SenJohnMcCain,"RT @CBSSunday: Co-writer @MarkSalter55 talks about the themes of the latest memoir by +@SenJohnMcCain, who has been diagnosed with brain ca…" +05/20/2018,Politicians,@SenJohnMcCain,Happy birthday to my extraordinary wife @cindymccain - you make us very proud! https://t.co/Xln5OOvQKJ +05/18/2018,Politicians,@SenJohnMcCain,"Thanks to my family, friends & colleagues for coming together yesterday for the premiere of the new @HBODocs ""John… https://t.co/KPNV2Jccvs" +05/17/2018,Politicians,@SenJohnMcCain,Happy 37th anniversary to my love @cindymccain - time flies when you’re having fun! https://t.co/eivKVUylHb +05/16/2018,Politicians,@SenJohnMcCain,RT @weeklystandard: Mattis: ‘Everything I Love About America is Resident’ in John McCain https://t.co/YyE4mpoQTg +05/16/2018,Politicians,@SenJohnMcCain,Grateful to our son Jimmy for speaking at @IRIglobal’s #FreedomDinner tonight as Sec Mattis & Amb @nikkihaley are h… https://t.co/G5IBEQm3SX +05/14/2018,Politicians,@SenJohnMcCain,"From one cantankerous senator to another, sending my prayers & best wishes to @SenatorReid as he recovers from a successful surgery" +05/14/2018,Politicians,@SenJohnMcCain,"Must-read @Militarydotcom: ""Training Kills More Troops Than War. Here's What's Being Done About It"" https://t.co/psaX3udizn" +05/13/2018,Politicians,@SenJohnMcCain,Happy #MothersDay to all the moms around the country & the world! I’m especially grateful for my remarkable mom Rob… https://t.co/YRPOnjOiD4 +05/10/2018,Politicians,@SenJohnMcCain,RT @WSJ: 'Putin’s goal isn’t to defeat a candidate or a party. He means to defeat the West.' An excerpt from the new memoir from @SenJohnMc… +05/10/2018,Politicians,@SenJohnMcCain,"Read a new excerpt from my upcoming book in @WSJ: ""John McCain: ‘Vladimir Putin Is an Evil Man’"" https://t.co/0Bu6kx8cHe" +05/10/2018,Politicians,@SenJohnMcCain,"RT @hillhulse: John McCain, his book, Lindsey Graham, the Senate and The Man Who Shot Liberty Valance. https://t.co/xWMtNLpXXT" +05/10/2018,Politicians,@SenJohnMcCain,RT @PowerPost: Why @SenJohnMcCain is voting against #Gina_Haspel to lead the CIA – and why it matters via @jameshohmann https://t.co/ufKojC… +05/10/2018,Politicians,@SenJohnMcCain,I believe Gina Haspel is a patriot who loves our country & has devoted her professional life to its service & defen… https://t.co/nSU8tuawsj +05/08/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Hear #China’s totalitarian cruelty in this widow’s sobs"" https://t.co/LYZa2LL9sw" +05/08/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""A Relative Wages Jack Johnson’s Biggest Fight: To Clear His Name"" https://t.co/wtYeLdyhFE" +05/03/2018,Politicians,@SenJohnMcCain,"RT @nytimesbooks: What John McCain learned from reading Hemingway: ""No just cause is futile, even if it’s lost, if it helps make the future…" +05/03/2018,Politicians,@SenJohnMcCain,RT @AmericanAcademy: We are pleased to announce that the @AmericanAcademy has awarded the 2018 Henry A. Kissinger Prize to United States Se… +05/02/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the families of the brave members of the National Guard whose lives were lost in the trag… https://t.co/l9ZV7hM53u +04/18/2018,Politicians,@SenJohnMcCain,"Former First Lady Barbara Bush remains an example to all of us of kindness and patriotism, and will fondly be remem… https://t.co/AiaAZ8VsqE" +04/16/2018,Politicians,@SenJohnMcCain,RT @HBOPR: Production begins on @HBO documentary about @SenJohnMcCain : https://t.co/becR1kHAQx @HBODocs https://t.co/dD3k6Na0py +04/14/2018,Politicians,@SenJohnMcCain,"I applaud the President for taking military action against the Assad regime, and I am grateful to our British and F… https://t.co/0hYUrfVklf" +04/13/2018,Politicians,@SenJohnMcCain,"Director Pompeo has the experience & understanding needed to reassert strong American leadership, confront complex… https://t.co/Z7hhXuYsCs" +04/11/2018,Politicians,@SenJohnMcCain,"Today, @POTUS signed into law our bipartisan #SESTA. This bill will enable Backpage and other websites to be held a… https://t.co/b4QIJlMjgy" +04/11/2018,Politicians,@SenJohnMcCain,"Must-read by @DCTwining @IRIglobal & @kwollack @NDI in @washingtonpost: ""#Russia’s nefarious meddling is nothing li… https://t.co/zRHVYb09Ue" +04/11/2018,Politicians,@SenJohnMcCain,.@SpeakerRyan is a good man who has served the country and the people of Wisconsin with honor and distinction. Whil… https://t.co/M6nV7d3H5v +04/09/2018,Politicians,@SenJohnMcCain,"Important @MilitaryTimes: ""The death toll for rising aviation accidents: 133 troops killed in five years"" https://t.co/JLkL6Upx3J" +04/08/2018,Politicians,@SenJohnMcCain,".@POTUS's pledge to withdraw from #Syria has only emboldened Assad, backed by Russia & Iran, to commit more war cri… https://t.co/qendPcTlrX" +04/06/2018,Politicians,@SenJohnMcCain,The seizure of the malicious sex marketplace https://t.co/KUfHCHvNpB marks an important step forward in the fight a… https://t.co/eQDgEZybbM +04/06/2018,Politicians,@SenJohnMcCain,It’s easy to punish #China. It’s a lot harder to hold it truly accountable and change its behavior. That requires a… https://t.co/baP92lz7H4 +04/06/2018,Politicians,@SenJohnMcCain,New sanctions send a message to #Putin & his cronies that there will be a high price to pay for Russian aggression.… https://t.co/AbebT23zC8 +04/05/2018,Politicians,@SenJohnMcCain,Good news from @DeptofDefense that they intend to shock test USS Gerald R Ford. Full ship shock trials before first… https://t.co/a3ERq5JVCP +04/05/2018,Politicians,@SenJohnMcCain,Praying for the family & friends of @AFThunderbirds pilot killed in F-16 crash in #Nevada. With more service member… https://t.co/P0dkBUXUES +04/05/2018,Politicians,@SenJohnMcCain,"Must-read @azcentral editorial: ""#RioReimagined challenges metro #Phoenix to think big. Are we ready?"" https://t.co/gWwiWJbfMB" +04/05/2018,Politicians,@SenJohnMcCain,"Thank you @GrandCanyonNPS @GrandCanyonAssn & @dougducey for this incredible honor, which I'm proud to share with my… https://t.co/SEM6PY1l2h" +04/04/2018,Politicians,@SenJohnMcCain,"RT @ASU: #RioReimagined, the visionary plan put in motion by @SenJohnMcCain and @ASU to transform the Salt River into an urban and environm…" +04/04/2018,Politicians,@SenJohnMcCain,Cindy & I send our prayers & condolences to the families of the four Marines whose lives were lost in the CH-53E cr… https://t.co/BzXKpk3ysF +04/02/2018,Politicians,@SenJohnMcCain,".@TIME: ""How Poetry Helped Sustain John McCain During His Years as a Prisoner of War"" #NationalPoetryMonth https://t.co/P1gwverYrQ" +03/30/2018,Politicians,@SenJohnMcCain,"RT @MayorStanton: Thank you @SenJohnMcCain for bringing together federal, state, regional & tribal leaders to launch the next chapter of th…" +03/30/2018,Politicians,@SenJohnMcCain,"#RioReimagined is a grand project that will transform the Valley, enhance our communities & connect all Arizonans.… https://t.co/7Dx8TW1P46" +03/30/2018,Politicians,@SenJohnMcCain,"RT @michaelcrow: #RioReimagined will be an ambitious, regional initiative that engages communities across the Valley and serves as a point…" +03/29/2018,Politicians,@SenJohnMcCain,Happy #DbacksOpeningDay! Here's hoping the @Dbacks have better luck fielding flies than @cindymccain & I did! https://t.co/rjcOD7DeUl +03/29/2018,Politicians,@SenJohnMcCain,Glad to see the concerns of #Phoenix residents addressed & this long-standing issue resolved. https://t.co/ksNp8qaRcf +03/28/2018,Politicians,@SenJohnMcCain,"Must-read from @insidedefense ""How GOP defense hawks delivered a massive military budget"" https://t.co/Kw2wmsF8Ir" +03/27/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""The #Russian expulsions are a good first step. But only a first step."" https://t.co/ksuglSKww4" +03/26/2018,Politicians,@SenJohnMcCain,RT @capgaznews: ICYMI: Former VP @JoeBiden accepted the @NavalAcademy Alumni Association’s Distinguished Graduate Award on behalf of @SenJo… +03/25/2018,Politicians,@SenJohnMcCain,"On the 100th anniversary of the Republic of Belarus declaring its independence, I stand with the Belarusian people… https://t.co/LLxF1hvk3a" +03/23/2018,Politicians,@SenJohnMcCain,Thank you @JoeBiden for always being a true friend. It’s a surreal honor after graduating 5th from the bottom of my… https://t.co/JrtRjI2dyk +03/23/2018,Politicians,@SenJohnMcCain,"Very proud the Senate passed my bill w/ @SenatorHeitkamp, named for Ashlynne Mike, to expand the AMBER Alert child… https://t.co/A2R6WSmEJ8" +03/23/2018,Politicians,@SenJohnMcCain,I sent a letter to CIA Director nominee Gina Haspel asking her to explain her role in the CIA’s so-called “enhanced… https://t.co/DD4Ch0X2wq +03/22/2018,Politicians,@SenJohnMcCain,Congrats to @MeghanMcCain & @TheView on being nominated for four #DaytimeEmmys - very proud! https://t.co/holA2QmTgG +03/22/2018,Politicians,@SenJohnMcCain,Congratulations #Kosovo! An important step forward for Kosovo’s European future. https://t.co/XahvAT52Xp +03/21/2018,Politicians,@SenJohnMcCain,RT @cindymccain: To all of our friends in the United States Senate thank you for the overwhelming passage of #SESTA today. By doing so you… +03/21/2018,Politicians,@SenJohnMcCain,"Thanks @senrobportman, @clairecmc, @SenBlumenthal, @JohnCornyn, @SenatorHeitkamp, our colleagues & especially my wi… https://t.co/JBNbhIk7nT" +03/21/2018,Politicians,@SenJohnMcCain,"The Senate's overwhelming, bipartisan passage of #SESTA is an imp't step forward in providing justice for victims o… https://t.co/OZMalq1jTr" +03/21/2018,Politicians,@SenJohnMcCain,"Saddened by the passing of Pete Peterson, a successful businessman, public servant & philanthropist dedicated to ra… https://t.co/SdRoR1iyBh" +03/21/2018,Politicians,@SenJohnMcCain,"#Nowruz greetings all those who celebrate in the US & around the world, including our friends in Afghanistan, Iraq,… https://t.co/8z20JqMlbQ" +03/21/2018,Politicians,@SenJohnMcCain,Today the Senate will vote on #SESTA to help #EndHumanTrafficking & provide justice to victims of this heinous crim… https://t.co/m80P1qFo4C +03/20/2018,Politicians,@SenJohnMcCain,#Nowruz Mobarak to the Iranian-American community and to all Iranians around the world yearning for peace and freed… https://t.co/VTGVN4jO6u +03/20/2018,Politicians,@SenJohnMcCain,An American president does not lead the Free World by congratulating dictators on winning sham elections. And by do… https://t.co/tdRTGcnH3h +03/19/2018,Politicians,@SenJohnMcCain,Sent letter w/ @SenatorShaheen urging USTR to support a full repeal of @USDA's wasteful & duplicative catfish inspe… https://t.co/CnSMVfwyr1 +03/18/2018,Politicians,@SenJohnMcCain,Special Counsel Mueller has served our country with honesty and integrity. It’s critical he be allowed to complete… https://t.co/ZDdah23bQh +03/18/2018,Politicians,@SenJohnMcCain,That #Putin had to work so hard to drive voter turnout shows the Russian people know his claim to power is a sham.… https://t.co/O46rTv9ANs +03/17/2018,Politicians,@SenJohnMcCain,Beautiful day on Oak Creek! #Arizona https://t.co/btWBvDkoOH +03/16/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the families of the service members killed in the helicopter crash in #Iraq. The Senate A… https://t.co/ArUu3cwK5X +03/16/2018,Politicians,@SenJohnMcCain,Deeply disturbed by @AP reports detailing child sexual assault on military bases. @SenJackReed & I sent a letter to… https://t.co/zyUR45bJXO +03/15/2018,Politicians,@SenJohnMcCain,The admin took an overdue step forward today in holding #Putin accountable for his brazen attack on our democracy.… https://t.co/OVO2sjbUEC +03/15/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the @USNavy aviators whose lives were lost in yesterday's F-18 crash. With our men & wome… https://t.co/sYaPvEo7oE +03/15/2018,Politicians,@SenJohnMcCain,"On the 7th anniversary of the war in #Syria, half a million people are dead, 11 million have been forced to flee th… https://t.co/FRUntZdEqf" +03/15/2018,Politicians,@SenJohnMcCain,Glad the Senate is taking up our bipartisan #SESTA thanks to the leadership of @senrobportman. It's long past time… https://t.co/WgqvoBpelJ +03/15/2018,Politicians,@SenJohnMcCain,"RT @SenateMajLdr: We're not only grateful that @SenJohnMcCain was welcomed home, we are especially grateful for his more than 30 years of s…" +03/15/2018,Politicians,@SenJohnMcCain,#Arizona will miss you Honey Badger - thanks for the memories! #AZCardinals https://t.co/fk4gltUg6V +03/14/2018,Politicians,@SenJohnMcCain,Finished my #MarchMadness bracket - very proud #Arizona has two teams competing this year! #BearDown #ForksUp https://t.co/TDPyT652s8 +03/14/2018,Politicians,@SenJohnMcCain,"RT @USNatArchives: Forty-five years ago today, @SenJohnMcCain was released by the North Vietnamese. He was held as a POW for over five year…" +03/14/2018,Politicians,@SenJohnMcCain,RT @NYTArchives: Today in 1973: Senator John McCain was one of the 108 prisoners of war released by North Vietnam. He had spent more than f… +03/14/2018,Politicians,@SenJohnMcCain,45 years ago today... https://t.co/jXhCFY9pK2 +03/14/2018,Politicians,@SenJohnMcCain,Important action by PM @theresa_may to hold #Putin accountable for the chemical attack in Salisbury. The United Sta… https://t.co/fsnVnAKSvn +03/14/2018,Politicians,@SenJohnMcCain,"RT @PacificForum: .@SenJohnMcCain: “Joe was a good man, an officer and a gentleman, and a brave defender of this nation. We will miss him.…" +03/13/2018,Politicians,@SenJohnMcCain,"Cindy & I are saddened by the passing of Admiral Joe Vasey, a WWII veteran, distinguished naval leader & my father'… https://t.co/QBnXnRbwfu" +03/13/2018,Politicians,@SenJohnMcCain,"As we hope for the recovery of Sergei & Yulia Skripal, we must recognize #Putin will not hesitate to engage in stat… https://t.co/PzPu6Tbk2b" +03/13/2018,Politicians,@SenJohnMcCain,The torture of detainees in U.S. custody during the last decade was one of the darkest chapters in American history… https://t.co/muvI5an1YX +03/09/2018,Politicians,@SenJohnMcCain,"Glad to see @USArmy decide to replace DCGS program w/ commercially available capability. After $3B spent, it was ti… https://t.co/Qnvp4bgCT0" +03/09/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""Trade Agreements Are the Answer to Trade Deficits"" https://t.co/kUqviTwdXA" +03/09/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Is #Putin’s poison squad back in Britain?"" https://t.co/NNM1cB2qxa" +03/09/2018,Politicians,@SenJohnMcCain,"Cindy & I are saddened by the passing of Joe Woods, one of Mesa’s most prominent businessmen & influential civic le… https://t.co/NxrDPeBYwA" +03/09/2018,Politicians,@SenJohnMcCain,"RT @nytopinion: We need to show equal resolve now to stop the violence and safeguard the rights and freedoms of all Burmese peoples, write…" +03/09/2018,Politicians,@SenJohnMcCain,I write in @nytimes today with filmmaker & humanitarian Angelina Jolie that America must take the lead in defending… https://t.co/vyzqF2ds8D +03/08/2018,Politicians,@SenJohnMcCain,"Congratulations to Jonathan Karp, @simonschuster's new president and publisher. We’ve done 7 books together and not… https://t.co/tPPLFB1kEu" +03/08/2018,Politicians,@SenJohnMcCain,President Trump’s decision to impose steep tariffs on steel & aluminum imports will not protect America. They will… https://t.co/daRpsebRA0 +03/08/2018,Politicians,@SenJohnMcCain,Must-read @WSJ: “How a Trade War Escalates” https://t.co/iuO4obDbQD +03/08/2018,Politicians,@SenJohnMcCain,Must-read @WSJ: “#Russia’s Trail of Poison” https://t.co/8yK7EWepJZ +03/08/2018,Politicians,@SenJohnMcCain,RT @SCClemons: My discussion at #BrusselsForum last year with @SenJohnMcCain & @dreynders. McCain's comments on Trump administration's back… +03/08/2018,Politicians,@SenJohnMcCain,RT @TheStudyofWar: Right now @SASCMajority @SASCDems are hearing from @US_EUCOM on #US defense strategy in #Europe. Read up on #Russia's gr… +03/08/2018,Politicians,@SenJohnMcCain,No US policy or strategy in #Europe can succeed without a strong #NATO alliance. We must not forget that America is… https://t.co/4x2YJ9NaxD +03/06/2018,Politicians,@SenJohnMcCain,Thank you @MayorStanton for your support of the Rio Salado project! https://t.co/5dLDIg0Zch +03/06/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""Former Russian Spy Mysteriously Falls Ill in Britain. Again."" https://t.co/yGinSfBI03" +03/05/2018,Politicians,@SenJohnMcCain,Thank you @MayorStanton & @CityofPhoenixAZ for leading an interagency initiative to combat military & veteran suici… https://t.co/oADcNjbKF1 +03/05/2018,Politicians,@SenJohnMcCain,Today’s historic port call by the USS Carl Vinson in #Vietnam underscores the enormous progress the United States &… https://t.co/CnHMTn286o +03/05/2018,Politicians,@SenJohnMcCain,"Important @NickKristof @nytimes read: ""I Saw a Genocide in Slow Motion: Myanmar continues to kill its #Rohingya, no… https://t.co/m2vEVoQtJk" +03/05/2018,Politicians,@SenJohnMcCain,"Must-read @hiattf @washingtonpost: ""Putin and Sissi are putting on elections. Why bother?"" https://t.co/EyJWECPTjG" +03/05/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""The U.N. human rights commissioner says ‘shame is in retreat.’ He’s right."" https://t.co/7BdI85oH01" +03/05/2018,Politicians,@SenJohnMcCain,"The work of @NEDemocracy @IRIglobal & @NDI to foster the infrastructure of democracy—freedom of the press, politica… https://t.co/kSsKRa62nN" +03/03/2018,Politicians,@SenJohnMcCain,Must-read @BretStephensNYT @nytopinion: “The Rise of Dictatorship Incorporated” https://t.co/LNeafqDUsF +03/03/2018,Politicians,@SenJohnMcCain,Beautiful warm day in #Sedona with @cindymccain! https://t.co/J2xBGcSuvf +03/02/2018,Politicians,@SenJohnMcCain,"The President’s sweeping tariffs will only serve to hurt American workers and consumers, and alienate us from our m… https://t.co/2uRWV2V04y" +02/28/2018,Politicians,@SenJohnMcCain,"Great watching @cindymccain & @MeghanMcCain on @TheView @ABC today! ""We need more compassion, we need more empathy,… https://t.co/of9ZjOy78o" +02/28/2018,Politicians,@SenJohnMcCain,Looking forward to watching @cindymccain & @MeghanMcCain on @TheView @ABC today - be sure to tune-in! +02/28/2018,Politicians,@SenJohnMcCain,Tonight the House passed our bill to provide justice to victims of online sex trafficking & hold all enablers of th… https://t.co/KcnL8ccNIc +02/27/2018,Politicians,@SenJohnMcCain,RT @SenatorHeitkamp: My bipartisan bill w/ @SenJohnMcCain to make AMBER Alerts more accessible to Indian Country passed the U.S. House yest… +02/27/2018,Politicians,@SenJohnMcCain,"3 yrs after Boris Nemtsov’s murder, the street outside the Russian Embassy was named in his honor. The greatest mem… https://t.co/Dzw8RM67Ht" +02/27/2018,Politicians,@SenJohnMcCain,"Last night, the House passed my bill w/ @SenatorHeitkamp named for Ashlynne Mike, an 11 yr old Navajo girl who was… https://t.co/VUCFxjQAGC" +02/27/2018,Politicians,@SenJohnMcCain,#Kremlin trolls are at it again! https://t.co/KaZx3mQMu6 +02/27/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""U.N. Links #NorthKorea to #Syria’s Chemical Weapon Program"" https://t.co/9t15twpui3" +02/27/2018,Politicians,@SenJohnMcCain,I joined @SenatorWicker yesterday in cosponsoring a bill to help @USNavy restore its surface force readiness so we… https://t.co/t8QdjMrfuQ +02/26/2018,Politicians,@SenJohnMcCain,"America must fight for universal values, rule of law, open commerce & respect for sovereignty. If we don’t, who wil… https://t.co/ZvHzXiroBa" +02/25/2018,Politicians,@SenJohnMcCain,RT @cindymccain: I strongly recommend the book Pear Shaped by @AdamBBlain . It is a funny and real book about brain cancer. @SenJohnMcCain… +02/25/2018,Politicians,@SenJohnMcCain,"Important @washingtonpost read: ""#Burma is bulldozing history and memory"" https://t.co/0zaFzavbRV" +02/24/2018,Politicians,@SenJohnMcCain,Must-read @washingtonpost: “A death in an Iranian prison is one more shocking sign of repression” https://t.co/cIV4dRxvTS +02/24/2018,Politicians,@SenJohnMcCain,"Cindy & I enjoyed a wonderful visit yesterday with our friend, @AZCardinals legend @LarryFitzgerald. We're grateful… https://t.co/CNz2g7R8Ss" +06/27/2018,Politicians,@GeorgeHWBush,"Happy to congratulate @WalkerStapleton on a terrific primary victory last night, and to join him in thanking those… https://t.co/y0fWf5lHep" +06/25/2018,Politicians,@GeorgeHWBush,"A great joy to welcome home the newest member of our family, ""Sully,"" a beautiful -- and beautifully trained -- lab… https://t.co/uEXR16b7gs" +06/25/2018,Politicians,@GeorgeHWBush,"Special visit today with a great friend -- and now, a best-selling author. Luckily I had a freshly laundered pair o… https://t.co/rch4gT1low" +06/18/2018,Politicians,@GeorgeHWBush,"Proud of Natalye Paquin and @nmbush opening the @PointsofLight conference with a wonderful message: ""We are united… https://t.co/pZIBHsMtrE" +06/08/2018,Politicians,@GeorgeHWBush,Sending our gratitude and family love on this special day to all who are helping carry forward the selfless work of… https://t.co/PN3B8cdBvg +06/01/2018,Politicians,@GeorgeHWBush,Enjoying a great book and a wonderful walk down memory lane this morning. Yet another reminder of just how lucky I… https://t.co/4Cb7z5wY7A +05/28/2018,Politicians,@GeorgeHWBush,"Very much regret missing the Memorial Day parade today in Kennebunkport, and am forever grateful not only to those… https://t.co/5UgoXNUk5w" +05/26/2018,Politicians,@GeorgeHWBush,"Delighted to join the veterans, including my dear friend Gen. Brent Scowcroft, at the @AmericanLegion Post 159 mont… https://t.co/8i8nv2i8Wo" +05/20/2018,Politicians,@GeorgeHWBush,Finally had the chance yesterday to catch some new friends in action @HamiltonMusical -- properly attired in Hamilt… https://t.co/BnkkPCA1ea +05/17/2018,Politicians,@GeorgeHWBush,Gina Haspel has selflessly and courageously devoted herself to the service of her country. I have great confidence… https://t.co/3jZH6rlc2M +05/15/2018,Politicians,@GeorgeHWBush,A complete joy to welcome the “HamFam” — the cast and crew of @HamiltonMusical — to our Houston office for a specia… https://t.co/bI9CIgaT7G +05/03/2018,Politicians,@GeorgeHWBush,"Quite moved by this announcement by @MethodistHosp. The atrium is beautiful, but recent developments notwithstandin… https://t.co/GmRIS1qjCy" +04/25/2018,Politicians,@GeorgeHWBush,"My family and I thank Mayor @SylvesterTurner, his terrific staff, @houstonpolice, @METROHouston, @SBCHouston,… https://t.co/xLtIyehZDd" +04/07/2018,Politicians,@GeorgeHWBush,Delighted to join the 43rd President and Jim Baker in welcoming the Saudi Crown Prince His Royal Highness Prince Mo… https://t.co/c6XV0L8sv4 +03/22/2018,Politicians,@GeorgeHWBush,Yesterday I was inspired by my friend John Cronin to wear these beauties from @JohnsCrazySocks marking World Down S… https://t.co/p5L7JJzYLd +03/19/2018,Politicians,@GeorgeHWBush,"Wishing a very happy 93rd birthday today to one of the noblest, most selfless public servants in the history of the… https://t.co/dqwEBpV82h" +03/15/2018,Politicians,@GeorgeHWBush,"Respectfully differing with @BarackObama so out on a limb here, but I have a gut feeling my @TAMU @aggiembk #Aggies… https://t.co/x0EB6u1P1R" +03/13/2018,Politicians,@GeorgeHWBush,The First Lady of Family Literacy and I are proud to support this wonderful initiative by @Disney and @FirstBook to… https://t.co/hUodj6YwHh +03/09/2018,Politicians,@GeorgeHWBush,Barbara and I are even more optimistic about our country's future after meeting the remarkable men and women in thi… https://t.co/NSCWsCHz5Q +03/02/2018,Politicians,@GeorgeHWBush,Encouraging my fellow Texans to do your civic duty by early voting today. Election Day is next Tuesday the 6th. Whi… https://t.co/ey7fswN99a +02/26/2018,Politicians,@GeorgeHWBush,"Wonderful visit today with Jimmy Baker and our respected former colleague, Carlos Salinas of Mexico -- a good frien… https://t.co/MbtULWkfWD" +02/21/2018,Politicians,@GeorgeHWBush,"Barbara and I couldn’t be happier seeing each of our grandkids finding ways to help others. Today, I had the specia… https://t.co/ndyPn4xHMS" +02/06/2018,Politicians,@GeorgeHWBush,The @NFL chose well in naming our inspiring friend @JJWatt as Man of the Year. Barbara and I also salute… https://t.co/48U8RorZm4 +01/24/2018,Politicians,@GeorgeHWBush,"Delighted to join my distinguished colleagues in thanking each donor who, out of the goodness in their hearts, help… https://t.co/MbDyOcmxMK" +11/28/2017,Politicians,@GeorgeHWBush,"In my case, one of the few good things about becoming the oldest president -- or anything -- is seeing my friend Pr… https://t.co/CorFn3W362" +11/20/2017,Politicians,@GeorgeHWBush,"Wonderful visit today with 104 year-old Lt. Jim Downing, USN, Ret., the oldest living survivor of Pearl Harbor. Giv… https://t.co/lebv9VeUrt" +11/02/2017,Politicians,@GeorgeHWBush,"Barbara and I join in congratulating the @Astros organization for their incredible season. They inspired, united and lifted our entire city." +10/23/2017,Politicians,@GeorgeHWBush,"Not sure abt 39, @BillClinton, 43 and @BarackObama, but I would have sung w @ladygaga if asked. Thanks to all for supporting @AmericaAppeal." +10/17/2017,Politicians,@GeorgeHWBush,Saluting a genuine American hero @SenJohnMcCain on receiving the #LibertyMedal from @ConstitutionCtr for his singular life of service. +10/06/2017,Politicians,@GeorgeHWBush,Our sincere thanks to @StephenAtHome for his kind donation to #OneAmericaAppeal. Here are two more for the file. No… https://t.co/OhEZmZbWq4 +09/27/2017,Politicians,@GeorgeHWBush,"Barbara and I loved meeting a few of the patriots and service animals featured in a wonderful new book, ""Vets and P… https://t.co/MAbFP36Z1q" +09/26/2017,Politicians,@GeorgeHWBush,Gov. @RicardoRossello reports Puerto Rico is facing an urgent situation. We must help. Private citizens can through… https://t.co/hb3SQF64zt +09/14/2017,Politicians,@GeorgeHWBush,Artist John Palmer captured the spirit of #Harvey response in Houston. Proceeds to @PointsofLight long-term efforts. https://t.co/kTXxJ0fgwR +09/10/2017,Politicians,@GeorgeHWBush,"Across the U.S., Americans have answered the call to help with hurricane recovery. Praying for all Floridians. #Irma https://t.co/dJPYU495RE" +09/08/2017,Politicians,@GeorgeHWBush,"Pleased to join these friends, distinguished leaders helping our fellow Americans recovering from #Harvey. Join us: https://t.co/JHlRaByt2M" +09/07/2017,Politicians,@GeorgeHWBush,"As former presidents, as citizens, we wanted to help our fellow Americans begin to recover. https://t.co/qxz68TK8Sk" +08/29/2017,Politicians,@GeorgeHWBush,Very proud of our friend @JJWatt and the caring citizens joining to keep #HoustonStrong. Let's keep it going at: https://t.co/J4S0dlsTjn +08/21/2017,Politicians,@GeorgeHWBush,Four generations of family taking in the partial eclipse today. Already looking forward to the next one in Texas in… https://t.co/bEtYcOyzU3 +07/26/2017,Politicians,@GeorgeHWBush,Joyful reunion with a great friend and a wonderful public servant. Lucky to have had Dan by my side during 4 years… https://t.co/7cx6kjteDf +07/17/2017,Politicians,@GeorgeHWBush,Very pleased @PointsofLight has named a dynamic leader of Natalye Paquin's broad experience and skills as CEO: https://t.co/U0fSOvqaJa +06/13/2017,Politicians,@GeorgeHWBush,What better place for the Gampster to have birthday emails read by a truly wonderful granddaughter in law? Thanks t… https://t.co/VJl4s3rHK8 +06/09/2017,Politicians,@GeorgeHWBush,"Congratulating @YaleBaseball for terrific season: Ivy League champs, school record for wins, 1st multi-win trip to… https://t.co/Tci4WYLg6A" +06/08/2017,Politicians,@GeorgeHWBush,"Happiest of birthdays to Barbara Pierce of Rye, NY. I'm still the luckiest guy in the world. https://t.co/qsUHtyBIez" +05/23/2017,Politicians,@GeorgeHWBush,Counting our blessings after a weekend with dear friends like John Major and the amazing @SingingCadets. So gratefu… https://t.co/pves6zgMtc +05/18/2017,Politicians,@GeorgeHWBush,"He wasn't perfect, but Roger Ailes was my friend & I loved him. Not sure I would have been President w/o his great talent, loyal help. RIP." +05/15/2017,Politicians,@GeorgeHWBush,"Congrats to Kylee McGrane, the 6000th #DailyPointofLight, who helps hospitalized kids experience a Moment of Magic: https://t.co/TTCsCBhYTp" +05/04/2017,Politicians,@GeorgeHWBush,Barbara and I join in saluting @DaveWardABC13. Could not be prouder of him and his singular career @abc13houston. H… https://t.co/NFja9mG1Qf +04/20/2017,Politicians,@GeorgeHWBush,"Big morale boost from a high level delegation. No father has ever been more blessed, or prouder. https://t.co/ekX4VyG2aO" +03/06/2017,Politicians,@GeorgeHWBush,28 yrs ago today I proudly watched Barbara create @BarbaraBushFdn. So many lives changed through #literacy since th… https://t.co/OBspTczcal +02/01/2017,Politicians,@GeorgeHWBush,Getting fired up for Sunday and #SuperBowl. https://t.co/zlXmsZJrTM +01/19/2017,Politicians,@GeorgeHWBush,"Hearty congrats to a good friend and great player, Jeff Bagwell, on his well-deserved induction into @baseballhall. https://t.co/PvRb7UOX89" +12/09/2016,Politicians,@GeorgeHWBush,Sino-US bilateral relationship is critical to peace in 21st Century. President-elect Trump is wise to name @TerryBrandstad as Ambassador. +11/28/2016,Politicians,@GeorgeHWBush,"The ageless @BarbraStreisand & James Brolin before her fantastic Houston show. ""Babs"" was more gracious about my si… https://t.co/VqBl4MjxGu" +11/24/2016,Politicians,@GeorgeHWBush,"#Thankful most of all for the blessings of family. From ours to yours, have a safe and very Happy Thanksgiving. https://t.co/xQz97niRkZ" +11/23/2016,Politicians,@GeorgeHWBush,"Of course, Barbara and I feel blessed and #thankful to live in the greatest nation on earth and for the selfless pa… https://t.co/ler3396hdd" +11/22/2016,Politicians,@GeorgeHWBush,Also #thankful for mentors like Coach Dave Colschen who teach respect and character are more important than winning… https://t.co/q1fLgylLPL +11/21/2016,Politicians,@GeorgeHWBush,"Incredibly #thankful that my friend Patrick, the courageous young man (with hair!) to my left, is feeling and doing… https://t.co/kxFgz6EuQt" +11/09/2016,Politicians,@GeorgeHWBush,"Barbara and I congratulate @realDonaldTrump, wish him well as he guides America forward as our next President. His family is in our prayers." +10/07/2016,Politicians,@GeorgeHWBush,"Barbara and I salute @AmeriCorps for enlisting their 1,000,000th volunteer to the service movement that is so essential to America’s future." +10/03/2016,Politicians,@GeorgeHWBush,Hearty congrats to our friend Capt @Love3d and all @RyderCupUSA for a gritty win in the 41st @rydercup. Classy competitors on both sides. +09/26/2016,Politicians,@GeorgeHWBush,"Barbara and I mourn The King, Arnie, the people’s champion. He brought golf to millions by his daring and caring. We miss him already." +09/24/2016,Politicians,@GeorgeHWBush,"Barbara and I regret missing the dedication of @NMAAHC, but we join our fellow Americans in celebrating this important day for our nation." +08/09/2016,Politicians,@GeorgeHWBush,"The superb effort, class shown by @TeamUSA in Rio @Olympics truly inspiring. We're watching, proud of them all. #USA https://t.co/B9QYNjiIXd" +06/25/2016,Politicians,@GeorgeHWBush,"Proud of young Cooper's interest in healthy eating. His declared love of broccoli is genuine, if also unpersuasive. https://t.co/r5wHKvigDb" +01/30/2016,Politicians,@GeorgeHWBush,Moving return to Langley and Memorial Wall today. The stars represent @CIA agents whose heroism is unknown to most. https://t.co/ZPduGNdsXj +01/28/2016,Politicians,@GeorgeHWBush,Proud to join those remembering the courageous crew of Challenger shuttle in this special @PopMech oral history: https://t.co/I9r75s4xQd +10/21/2015,Politicians,@GeorgeHWBush,Grateful to each @PointsofLight attendee in Houston for your commitment to service. The world is a brighter place b/c of you. #ServiceUnites +08/20/2015,Politicians,@GeorgeHWBush,"I spoke with President Carter to wish him well, and he sounded strong. Bar and I are wishing him the very best as he fights the good fight." +08/10/2015,Politicians,@GeorgeHWBush,"Congratulating Tyler Jeffries and Lauren Lilly on their engagement, and wishing them a lifetime of joy together. http://t.co/W7hjX3dgWL" +08/10/2015,Politicians,@GeorgeHWBush,"Inspiring day hosting wounded veterans and their mothers. Forever grateful for their sacrifice, service to country. http://t.co/zNh9eZGRiF" +07/30/2015,Politicians,@GeorgeHWBush,Who knew jumping out of planes was safer than getting out of bed? Thanks to all for your kind get-well messages. http://t.co/T9FmhCqyme +06/16/2015,Politicians,@GeorgeHWBush,Yesterday the country saw a great leader and good man point the way to a better future. I am 1 of the 2 proudest parents in America today. +06/11/2015,Politicians,@GeorgeHWBush,"Very grateful to our selfless, dear friends @reba @michaelwsmith and @amygrant for making Barbara's 90th so special. http://t.co/OLHV603kBh" +04/29/2015,Politicians,@GeorgeHWBush,Proud to endorse Thumbs Up program strengthening Houston's police-community ties. Need more great efforts like this. http://t.co/rN7JdRmW52 +04/23/2015,Politicians,@GeorgeHWBush,"Barbara and I have great respect for, and confidence in, the men and women of @SecretService. That respect and confidence has never waned." +04/21/2015,Politicians,@GeorgeHWBush,"Enjoyed my visit with Tom Ridge, whose ongoing leadership on issues affecting the disabled makes him a hero of mine. http://t.co/C7heAmTxw9" +04/07/2015,Politicians,@GeorgeHWBush,Very proud of our friend Coach K and the entire @Duke_MBB team on winning the national championship. Great win against a tough Badger team. +03/25/2015,Politicians,@GeorgeHWBush,Happy @OakRidgeBoys just selected for Country Music Hall of Fame. Great friends who have always made great music! http://t.co/sLHvxPFTIl +02/11/2015,Politicians,@GeorgeHWBush,Happy bday @JebBush! (His table manners have improved dramatically since this early outing.) https://t.co/7WNfy5SiXf http://t.co/EROuf1Pd1M +01/30/2015,Politicians,@GeorgeHWBush,"Sending best wishes and respect to a true friend @MittRomney. We need more decent, selfless, capable people like him in public service." +01/06/2015,Politicians,@GeorgeHWBush,"Seventy years ago this very day, Barbara Pierce of Rye, NY made me the happiest, and luckiest, man on earth. http://t.co/rgZqpL9XfE" +11/24/2014,Politicians,@GeorgeHWBush,"Celebrating 25th anniv of Daily Points of Light Award today, and saluting Dr Patricia Wolff for her selfless work in Haiti. @pointsoflight" +10/30/2014,Politicians,@GeorgeHWBush,"Saluting the home-bound crew of the @USN_BushCVN77 for their able, brave service during their second deployment. God bless all who serve." +10/28/2014,Politicians,@GeorgeHWBush,"With one week until Election Day, ditching the socks and pulling hard for a good man -- @georgepbush. #EarlyVoting http://t.co/eAoaVswgtB" +09/15/2014,Politicians,@GeorgeHWBush,"Barbara and I enjoyed meeting David Perdue, a good man with an impressive background. I am proud to endorse him in the US Senate race in GA." +08/30/2014,Politicians,@GeorgeHWBush,"RT @WWIIMemorial: #TBT @georgepbush visiting grandfather @GeorgeHWBush at White House. George P. to speak at #WWII Memorial, 9/2 @ 9am. htt…" +08/09/2014,Politicians,@GeorgeHWBush,"Proud of and praying for the able, brave men and women on board the @USN_BushCVN77 as they carry out their mission." +06/12/2014,Politicians,@GeorgeHWBush,"It's a wonderful day in Maine -- in fact, nice enough for a parachute jump." +05/09/2014,Politicians,@GeorgeHWBush,Congratulations to the @BushSchool Class of 2014. Very proud of these public servants and all who taught them. http://t.co/R6je5LtHf7 +04/07/2014,Politicians,@GeorgeHWBush,Excited PM @David_Cameron has launched UK #pointsoflight. I join him in saluting Britain's volunteers who lift lives. http://t.co/sY1IBI5fHP +03/27/2014,Politicians,@GeorgeHWBush,With @JManziel2 before his pro day @TAMU. I could have used this helmet in my previous day job. http://t.co/m0QvMR1GHe +03/21/2014,Politicians,@GeorgeHWBush,Pulling hard for my good friend Coach K and the @DukeBasketball Blue Devils today. Bracket otherwise in shambles. #MarchMadness +03/06/2014,Politicians,@GeorgeHWBush,"@BradPaisley Thank you, Brad, for teaching me what a ""Selfie"" is. You and @TheEllenShow made it look so easy. #Selfie’ing" +03/05/2014,Politicians,@GeorgeHWBush,"We couldn't be prouder of @georgepbush tonight. A good man and hard worker, he'll do a great job if elected the next TX Land Commissioner." +02/12/2014,Politicians,@GeorgeHWBush,It doesn’t matter if he won a medal; @Shaun_White exemplified the Olympic spirit. I’m proud of him and all our Olympians. #TeamUSA +01/24/2014,Politicians,@GeorgeHWBush,Barbara and I are grateful to all at #BushReunion. We had a good team that served with honor. So have fun and don't steal the silverware! +01/21/2014,Politicians,@GeorgeHWBush,Went to Duke to honor Coach K for his leadership of @cchangetogether. He is the right leader to help us beat cancer. http://t.co/FovMLrvk0d +01/20/2014,Politicians,@GeorgeHWBush,"25 years ago this hour, the people placed their hopes and trust in our team. Still hard to believe I had the honor to serve as President." +01/16/2014,Politicians,@GeorgeHWBush,Becoming an honorary member of the @BlueAngels in Houston last week. God bless all who serve. http://t.co/oo4GLJNuQQ +01/15/2014,Politicians,@GeorgeHWBush,Properly attired for my meeting with new @HoustonTexans head coach Bill O'Brien. #socksupdate http://t.co/jHMO4vcm9i +01/13/2014,Politicians,@GeorgeHWBush,Delighted to see my friend Bob McNair and meet new @HoustonTexans head coach Bill O'Brien & his lovely wife Colleen. http://t.co/iGEJDVvuRK +01/02/2014,Politicians,@GeorgeHWBush,Barbara thanks @BarackObama & @billclinton for their get-well wishes and is heeding their advice. Doesnt happen w every President she knows! +12/12/2013,Politicians,@GeorgeHWBush,"Incredible photo of the Blue Angels and CVN-77. God bless all who serve our country in uniform, and their families. http://t.co/n03nZSE7jW" +12/10/2013,Politicians,@GeorgeHWBush,"Barbara and I wish we could have joined the U.S. delegation honoring President Mandela today. He, and his countrymen, are in our prayers." +07/02/2018,Politicians,@TheBushCenter,"RT @PennBiden: ICYMI last week, catch up now! +Read more about #DemocracyToday and the goals and purpose of The Democracy Project from the l…" +07/02/2018,Politicians,@TheBushCenter,Watch @annewicks speak at #ElevateEdTX about why we are working with four school districts across the country to he… https://t.co/dq9IQ8ZrOL +07/02/2018,Politicians,@TheBushCenter,Staff Sergeant Kenneth Butler was awarded a Bronze Star and two Purple Hearts during his service in the @USArmy. Th… https://t.co/8UNoEBP58q +07/02/2018,Politicians,@TheBushCenter,"To celebrate his birthday this Friday, President Bush is taking 11 Warriors on a bike ride at his ranch! Follow alo… https://t.co/QyUcj3Vx5B" +06/29/2018,Politicians,@TheBushCenter,"RT @knightfdn: Americans overwhelmingly support the ideals of democracy, but a majority view democracy in the U.S. as weak and getting weak…" +06/29/2018,Politicians,@TheBushCenter,"""Approximately 50 percent of veterans respond well to the best available [PTS] treatments - cognitive processing th… https://t.co/mohEjzB4f1" +06/29/2018,Politicians,@TheBushCenter,"""The American public has not soured on promoting democracy or forgotten that the United States benefits when there… https://t.co/mNyJ4gTJoD" +06/28/2018,Politicians,@TheBushCenter,“The experience of a lifetime.” - Sergeant Trevor Allenby on his experience in the Warrior Open. Check out a full r… https://t.co/nUyOxFL3uz +06/28/2018,Politicians,@TheBushCenter,RT @fpoplady: Democracy Project poll commissioned by @pennbiden @freedomhouse & @thebushcenter suggests groups historically underserved by… +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Read @hollykuzmich @ablinken @abramowitz on the Democrcy Project - Restoring American democracy a challenge that is with… +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Talking with @kenrudin about the Democracy Project poll results - available here https://t.co/bwr1JTsrW4. Important ini… +06/28/2018,Politicians,@TheBushCenter,"Did you catch the @rangers dot race last night? Surprise! Disguised as mascots were Bush Center CEO Ken Hersh, Wyat… https://t.co/gV0mNcW55f" +06/28/2018,Politicians,@TheBushCenter,"RT @PennBiden: ""Although the frustrations Americans share are not new, our collective failure to address them more effectively increasingly…" +06/28/2018,Politicians,@TheBushCenter,"RT @WLindsayLloyd: Fascinating look on @CityLab at how North Korean escapees acclimate to freedom. @TheBushCenter, we're helping them get…" +06/28/2018,Politicians,@TheBushCenter,"""A pessimist might use these findings to talk up despair, but the optimist within us has a different takeaway."" Che… https://t.co/GZID3V0o2o" +06/28/2018,Politicians,@TheBushCenter,RT @kenrudin: Podcast! @WLindsayLloyd of the George W. Bush Institute on growing fears for the future of democracy in the U.S. https://t.… +06/28/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? Did family separation end? @lvtcollins ans… https://t.co/9Cc2MxmRkj +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Today's @DallasNews on the Supreme Court's decision on the travel ban cites The Democracy Project's findings. https://t.… +06/28/2018,Politicians,@TheBushCenter,#Team43 member @RandyNantz on throwing out the first pitch at @rangers US Special Operations Command Night https://t.co/OXjcilonrB +06/28/2018,Politicians,@TheBushCenter,#Team43 member @randynantz stands with @Bannyrooster28 during the National Anthem at the @rangers game after throwi… https://t.co/WBoBjVDgjW +06/27/2018,Politicians,@TheBushCenter,"""People are enthusiastic about change. Large majorities support improving civic education and creating incentives f… https://t.co/QZT44ImIKl" +06/27/2018,Politicians,@TheBushCenter,"""Americans agree living in a democracy is important, but there is broad agreement that our system isn’t working as… https://t.co/FNDtk1u8pU" +06/27/2018,Politicians,@TheBushCenter,What is your top concern about US #democracytoday? See if you agree with the majority of Americans: https://t.co/hMbxRcYYBR +06/27/2018,Politicians,@TheBushCenter,"RT @PennBiden: Have you checked out https://t.co/q5XGE4a7po yet? +Learn more about Americans top concerns about their #DemocracyToday in a…" +06/27/2018,Politicians,@TheBushCenter,"#ICYMI, check out a full photo recap of last night's Engage, presented by @HighlandCapMgmt, ""The Art & Leadership o… https://t.co/7HgI08l6st" +06/27/2018,Politicians,@TheBushCenter,The majority of Americans are encouraged by observations of increased civic engagement. Check out the rest of the r… https://t.co/WaqYs6UzYP +06/27/2018,Politicians,@TheBushCenter,"Continue last night’s conversation about ""The British Bulldog"" and listen to Episode 10 of ""Ladies,First"" to learn… https://t.co/bsoZlNv0fj" +06/27/2018,Politicians,@TheBushCenter,"“It’s an amazing period — to think about England battling Adolf Hitler, and the United States being tepid to engage… https://t.co/SAOwuiXIhW" +06/27/2018,Politicians,@TheBushCenter,“I’m in history because I believe it is essential to where we are now. What interests me is looking at the roots of… https://t.co/BXaCk0Fxxu +06/27/2018,Politicians,@TheBushCenter,"“I think what Clementine did, was what very few could do, and that was to manage Winston Churchill… She could also… https://t.co/ESDhyUhgL9" +06/27/2018,Politicians,@TheBushCenter,"“We now think of Churchill as a great orator, but he was not first and foremost a speaker, he was first and foremos… https://t.co/y1s2oesPwy" +06/27/2018,Politicians,@TheBushCenter,"“Churchill put a huge amount of effort into writing letters, but he also believed, like Roosevelt, to get up close… https://t.co/JHxEgFo9SW" +06/27/2018,Politicians,@TheBushCenter,“I think this painting captures an aspect of Churchill that is not in any other paintings I have mentioned… His sen… https://t.co/iSceXByo4q +06/27/2018,Politicians,@TheBushCenter,"“What you bring to the job, what you learn on the job, and what you have to live in with your conscious on the job.… https://t.co/OFxXFF7Te0" +06/27/2018,Politicians,@TheBushCenter,“I would argue that the two are inseparable (art and leadership). They are two complimentary parts of his great and… https://t.co/YdlSyFDqjz +06/27/2018,Politicians,@TheBushCenter,“I really enjoyed painting Churchill - I painted him with a lot of affection. I thought about the character of the… https://t.co/Dixwidvtnz +06/26/2018,Politicians,@TheBushCenter,"#LIVE: Tune in now to https://t.co/FDxzxAlw0R for ""Engage: The Art & Leadership of Winston Churchill,"" presented by… https://t.co/TUrdYTnumT" +06/26/2018,Politicians,@TheBushCenter,"Tune in to https://t.co/FDxzxAlw0R in one hour to watch Engage at the Bush Center, presented by @HighlandCapMgmt, ""… https://t.co/4pzyDkh2OZ" +06/26/2018,Politicians,@TheBushCenter,ICYMI: @AriFleischer and @DanaPerino discuss The Democracy Project on @dailybriefing: https://t.co/kkjnMXHzaO #democracytoday +06/26/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? What is the Flores Settlement? Did family… https://t.co/W5SlN9F2dc +06/26/2018,Politicians,@TheBushCenter,"For Americans to become more responsible and engaged citizens, we must start by helping our children develop civic… https://t.co/DjqnYO89p7" +06/26/2018,Politicians,@TheBushCenter,"RT @PennBiden: Take the time today to dig into the findings of The Democracy Project--a #bipartisan report from @PennBiden, @freedomhouse a…" +06/26/2018,Politicians,@TheBushCenter,"When it comes to our #democracytoday, Americans are motivated by calls to service and civic engagement. https://t.co/ogJ76OXL5e" +06/26/2018,Politicians,@TheBushCenter,“There is a good reason to be proud of biliteracy.” - @Bill_McKenzie in this week’s @dallasnews on the importance o… https://t.co/2U04Qf53ec +06/26/2018,Politicians,@TheBushCenter,Your #immigration questions answered: Read @lvtcollins' breakdown of what’s going on at the border. https://t.co/5ODHwSmq4Y +06/26/2018,Politicians,@TheBushCenter,"Today, North America is the most economically competitive region in the world. Explore the data here:… https://t.co/rSZi0NURL7" +06/26/2018,Politicians,@TheBushCenter,The jobs of 2.8 million Americans are dependent upon our trade relationship with our North American neighbors.… https://t.co/WcHJckKuBq +06/26/2018,Politicians,@TheBushCenter,RT @demdigest: Analysis | The Daily 202: A poll commissioned by Bush and Biden shows Americans losing confidence in democracy https://t.co/… +06/26/2018,Politicians,@TheBushCenter,Trade increases the number and variety of lower priced goods available for middle class consumers. Workers in trade… https://t.co/ZNdLxphc5V +06/26/2018,Politicians,@TheBushCenter,The North America Competitiveness Scorecard is a tool to compare America's competitive position relative to other c… https://t.co/qEKH31taii +06/26/2018,Politicians,@TheBushCenter,"A large majority of Americans consider it important to live in a live in a country that is governed democratically,… https://t.co/LjdRFheLSi" +06/26/2018,Politicians,@TheBushCenter,The Democracy Project sheds new light on American attitudes toward the promotion of democracy and human rights abro… https://t.co/fQNJOJQTTg +06/26/2018,Politicians,@TheBushCenter,"Economic integration among the U.S., Canada, and Mexico strengthens the U.S. economy and creates opportunity across… https://t.co/C9rV6YWaIp" +06/26/2018,Politicians,@TheBushCenter,NAFTA offers a solid foundation and frame on which to build-on. Here are five steps to improve North American trade… https://t.co/PltQVAD6ky +06/26/2018,Politicians,@TheBushCenter,"RT @PennBiden: So proud to be part of this work, along with our partners at @freedomhouse and @TheBushCenter, exploring Americans' attitude…" +06/26/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Analysis | The Daily 202: A poll commissioned by Bush and Biden shows Americans losing confidence in democracy https://t… +06/26/2018,Politicians,@TheBushCenter,RT @freedomhouse: BREAKING: #Bipartisan poll released today by @FreedomHouse @TheBushCenter @PennBiden shows Americans’ top concerns for st… +06/26/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? What is the Flores Settlement? Did family… https://t.co/R3NUBaQxMb +06/26/2018,Politicians,@TheBushCenter,"NEW TODAY: @TheBushCenter, @PennBiden, and @freedomhouse released a survey of American attitudes on our… https://t.co/a3C0z0G8Of" +06/25/2018,Politicians,@TheBushCenter,RT @annewicks: Trying to understand the policy/law in place at the border? Check out my @TheBushCenter colleague @lvtcollins primer on the… +06/25/2018,Politicians,@TheBushCenter,Your #immigration questions answered: Read @lvtcollins breakdown of what’s going on at the border. https://t.co/BbIFAfTbMv +06/25/2018,Politicians,@TheBushCenter,"""By taxing #trade and reducing the amount of trade, we are actually reducing our own ability to grow."" -… https://t.co/NBVYkksYEs" +06/25/2018,Politicians,@TheBushCenter,RT @TheFundChicago: Community of Practice participants just finished a very productive session led by @annewicks and @evamyrickchiang from… +06/25/2018,Politicians,@TheBushCenter,RT @TheFundChicago: A big THANK YOU to @MNComeback @JaxPEF @SCORE4Schools @Dan_Berkowitz @wk_kellogg_fdn @BCLynchAcademy @themindtrust @hol… +06/25/2018,Politicians,@TheBushCenter,"RT @IVMFSyracuseU: Amy Taft, IVMF curriculum and learning manager, was selected to participate in the @TheBushCenter's Stand-To Veteran Lea…" +06/23/2018,Politicians,@TheBushCenter,Who was the woman behind the “British Bulldog?” Listen now to @yankeebean and @soniapurnell https://t.co/ZWctcjWT43 +06/22/2018,Politicians,@TheBushCenter,"Sir Winston Churchill was one of the most well-known world leaders, but few realize that it was his wife, Clementin… https://t.co/CvdfTTJKjD" +06/22/2018,Politicians,@TheBushCenter,"Countries don't trade, people trade. As a result, #Tariffs increase the prices of consumer goods like cell phones,… https://t.co/TRjm4yQysy" +06/22/2018,Politicians,@TheBushCenter,Media Advisory: Experts to Explore “The Art & Leadership of Winston Churchill” on June 26 Engage at the Bush Center… https://t.co/ARPMEFdCuJ +06/22/2018,Politicians,@TheBushCenter,What is @ChiefDavidBrown's take on #leadership? Find out here: https://t.co/id4Om2AmzN +06/22/2018,Politicians,@TheBushCenter,"A recent report from @politico and @Prudential, along with recent data, point to the same problem: the median net w… https://t.co/w0u6BaSubb" +06/22/2018,Politicians,@TheBushCenter,The lady who empowered and tamed the “British Bulldog” – Clementine Churchill helped shape her husband’s political… https://t.co/Pe4LVQ64lN +06/22/2018,Politicians,@TheBushCenter,Statement by President George W. Bush on Charles Krauthammer https://t.co/jo2KhAjndB https://t.co/zmEwF58rXn +06/21/2018,Politicians,@TheBushCenter,"As seen in last year’s @TheAcademy winning movie @DarkestHour, Sir Winston Churchill’s memorable quotes & anecdotes… https://t.co/n2afBcEPWd" +06/21/2018,Politicians,@TheBushCenter,"""Americans ought to know more about one of our closest allies and a longtime adversary that might perhaps become a… https://t.co/HyP0WLdTTM" +06/21/2018,Politicians,@TheBushCenter,"Sir Winston Churchill was one of the most well-known world leaders, but few realize that it was his wife, Clementin… https://t.co/tC0EKQcLYO" +06/21/2018,Politicians,@TheBushCenter,"As first lady, @laurawbush had a strong influence on the global human rights agenda, including her advocacy for Afg… https://t.co/QX0feHdTQt" +06/21/2018,Politicians,@TheBushCenter,"Learn why Americans may soon be paying more for consumer goods like cars, dishwashers, and cell phones. #Tariffs… https://t.co/0bfcyv5g45" +06/21/2018,Politicians,@TheBushCenter,"""Student debt now tops $1.4 trillion, causing young people to defer the “American dream”— marriage, children, home… https://t.co/49W9zPL8BM" +06/21/2018,Politicians,@TheBushCenter,"""It really is a priceless thing to be involved in an organization in any way, whether it’s military, policing, or e… https://t.co/rss48hVTxe" +06/20/2018,Politicians,@TheBushCenter,From timely takes by policy experts on world news to recommended #reading lists and #podcasts… don’t miss the lates… https://t.co/eZW42tDL1K +06/20/2018,Politicians,@TheBushCenter,A recent report from @politico and @Prudential notes that #millennials are further behind in accumulating savings t… https://t.co/AlMGCGRFhc +06/20/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/KKL9hgruI3" +06/20/2018,Politicians,@TheBushCenter,"For most Americans, Korea – North and South – is still not well known. @WLindsayLloyd suggests 5 books that offer i… https://t.co/vjktMqwtmp" +06/20/2018,Politicians,@TheBushCenter,"""The explosive growth in student #debt, among other challenges, is causing #millennials to under-save, which presen… https://t.co/1DD8AuUk8l" +06/20/2018,Politicians,@TheBushCenter,RT @CSISKoreaChair: The Bookshelf: Five Books to Understand Korea @WLindsayLloyd @TheBushCenter https://t.co/s5pRNiHPHZ +06/20/2018,Politicians,@TheBushCenter,Former Chief of the @DallasPD @ChiefDavidBrown spoke with our #StandTo Veteran Leadership Program scholars about hi… https://t.co/FmRxesCGRx +06/20/2018,Politicians,@TheBushCenter,"Refugees don’t play a small portion in making America great, they play a significant role in elevating this country… https://t.co/VTeFqUPJ4v" +06/20/2018,Politicians,@TheBushCenter,"""If you’re leading and no one is following you, you’re just taking a walk."" --@ChiefDavidBrown. Read his ""Two Minut… https://t.co/6g6MBdYy1t" +06/20/2018,Politicians,@TheBushCenter,"North Korea may be odd and menacing, but fortunately, it’s much less opaque these days. More and more books are bei… https://t.co/jYWDDAwjpv" +06/20/2018,Politicians,@TheBushCenter,"""[@laurawbush] used her voice to be an advocate for those who were silenced. And she drew attention to those who ne… https://t.co/e9wCBT8k08" +06/19/2018,Politicians,@TheBushCenter,"Learn why Americans may soon be paying more for consumer goods like cars, dishwashers, and cell phones. #Tariffs… https://t.co/cSb645tQEz" +06/19/2018,Politicians,@TheBushCenter,The role of First Lady is vast and undefined. @laurawbush describes her journey in the White House in episode 4 of… https://t.co/lsjGgVehFM +06/19/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Five books to better understand Korea. https://t.co/8uVUAKcA00 @TheBushCenter @MelanieKirkpat @VictorDCha +06/19/2018,Politicians,@TheBushCenter,The tariffs imposed on China are protecting sunset industries where our comparative advantage has dwindled. America… https://t.co/GgGCHxrzsT +06/19/2018,Politicians,@TheBushCenter,RT @USGLC: “We have to be proud of what has taken place… @PEPFAR has always had incredible bipartisan support… we hope that support continu… +06/19/2018,Politicians,@TheBushCenter,"RT @PEPFAR: At @USGLC State Leaders Summit #PEPFAR15 tribute, #AmbBirx congratulates @TomDaschle and George W. Bush on their awards and lea…" +06/19/2018,Politicians,@TheBushCenter,"RT @MiguelHoweMSI: Our nations #Veterans, even those who overcome serious wounds, injuries and illnesses are strong resilient servant leade…" +06/19/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/eEthJVy9QV" +06/18/2018,Politicians,@TheBushCenter,"ICYMI: ""In 2018, can we not as a nation find a kinder, more compassionate and more moral answer to this current cri… https://t.co/xF99BpInxT" +06/18/2018,Politicians,@TheBushCenter,The Bush Institute met with Acting Secretary of @DeptVetAffairs Peter O’Rourke today to discuss ways to continue to… https://t.co/a6u4PhaofI +06/18/2018,Politicians,@TheBushCenter,.@FortWorth_ISD superintendent @KentPScribner talks about the goals he hopes to achieve by participating in the Bu… https://t.co/GpnrJfr5Ic +06/18/2018,Politicians,@TheBushCenter,"""By imposing tariffs and escalating tensions with China we are only raising prices for American families and are un… https://t.co/NGItVtNS9S" +06/18/2018,Politicians,@TheBushCenter,.@AnneWicks speaks to @FortWorth_ISD about goals and next steps in their work to improve #SchoolLeadership. Learn m… https://t.co/ZEJnUTd8RR +06/18/2018,Politicians,@TheBushCenter,"Today, the Bush Institute’s School Leadership Initiative team visits @FortWorth_ISD to check in on their progress.… https://t.co/YoI10Vndu3" +06/18/2018,Politicians,@TheBushCenter,Stay up to date on the latest from the George W. Bush Institute and President and Mrs. Bush. Sign up to receive upd… https://t.co/vRFBzzYErq +06/18/2018,Politicians,@TheBushCenter,"""I appreciate the need to enforce and protect our international boundaries, but this zero-tolerance policy is cruel… https://t.co/Qf8iK14Qc6" +06/16/2018,Politicians,@TheBushCenter,#DYK: Jackie Kennedy spoke 5 languages and saved Egyptian temples from being torn down. Learn how she helped shape… https://t.co/OAibUpLnoB +06/15/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/i0X19GMwdP" +06/15/2018,Politicians,@TheBushCenter,Our analysis of global competitiveness shows that economically China is nowhere near the U.S. Take a look at our da… https://t.co/jCGHtMLxdb +06/15/2018,Politicians,@TheBushCenter,"""By imposing tariffs and escalating tensions with China we are only raising prices for American families and are un… https://t.co/DLa2bAbQyY" +06/15/2018,Politicians,@TheBushCenter,"RT @PLSprogram: Scholars kicked off their fifth session at @LBJLibrary yesterday with administration alums Tom Johnson, @BillMoyers, Larry…" +06/14/2018,Politicians,@TheBushCenter,"“Over the coming months, [the Bush Institute-@SMU Economic Growth Initiative] will build Dallas into a globally res… https://t.co/dhBnIDJdhV" +06/14/2018,Politicians,@TheBushCenter,North America is the most economically competitive region in the world. Explore our data to learn how #trade agreem… https://t.co/AItFztwMUR +06/14/2018,Politicians,@TheBushCenter,#ThursdayThoughts: “[The role of first lady] has adapted over time because it has adapted with time and with change… https://t.co/trg0hH7zZA +06/13/2018,Politicians,@TheBushCenter,"@andersoncooper Thank you for highlighting Kang Chol-Hwan’s story, and for keeping the spotlight on the estimated 2… https://t.co/PKOkfk8kcW" +06/13/2018,Politicians,@TheBushCenter,"#WednesdayWisdom: ""Seeing Mom and Dad throughout their lives serving others was an enormous gift to us. My dad once… https://t.co/EQ03xCpoQl" +06/13/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Don't miss @VictorDCha in the @NYTimes today on what the Singapore summit means. Proud to have him at @TheBushCenter as… +06/13/2018,Politicians,@TheBushCenter,"“I think it’s a great example for all the women in our family to stand up for yourself, speak loudly about issues t… https://t.co/sJqLGlIHGK" +06/13/2018,Politicians,@TheBushCenter,RT @dallasnews: New Bush-SMU institute hopes to become globally recognized source of economic policy ideas https://t.co/NQirsb0aI3 +06/13/2018,Politicians,@TheBushCenter,RT @ChrisJamesWalsh: My great @TheBushCenter colleagues @WLindsayLloyd & @junepyun on @wfaa w/ a needed reminder that North Korea is the wo… +06/13/2018,Politicians,@TheBushCenter,"""The [Bush-@SMU] initiative will ensure Dallas has a strong voice in economic circles. We will advance high-impact… https://t.co/FW00AoQURY" +06/12/2018,Politicians,@TheBushCenter,".@WLindsayLloyd talks #TrumpKimSummit with @CKNW's @simisara980: ""If you have a regime that's willing to treat its… https://t.co/boF7sPuqF8" +06/12/2018,Politicians,@TheBushCenter,"""The majority of the prison camps are meant for permanent incarceration. Analysts think there are about 200,000 men… https://t.co/35TShMufN1" +06/12/2018,Politicians,@TheBushCenter,"""By the time I arrived at Yodok, only three fish survived. When winter came, our room was so cold the aquarium froz… https://t.co/v9VbhcfvJT" +06/12/2018,Politicians,@TheBushCenter,"RT @MiguelHoweMSI: Important day @LinkedIn HQs yesterday, thx 2 @dsavage_83 @LizOBrien30 @hiringourheroes & companies/leaders like Mike Kel…" +06/12/2018,Politicians,@TheBushCenter,#WatchNow: Two-Minute Take with @WLindsayLloyd on #TrumpKimSummit and why North Korea's human rights abuses need to… https://t.co/uGZyFfQl6Y +06/12/2018,Politicians,@TheBushCenter,1 in every 185 North Koreans is a political prisoner. Punishable crimes include criticizing the government (or havi… https://t.co/cMCxVtY3B1 +06/12/2018,Politicians,@TheBushCenter,"""We must not lose sight of the condition of the North Korean people."" - @WLindsayLloyd in interview with @ABC:… https://t.co/F8J9reaj4p" +06/12/2018,Politicians,@TheBushCenter,Happy 94th birthday to President @GeorgeHWBush from all of us at President #43’s Institute! We’re sporting our favo… https://t.co/gtG56gsibH +06/12/2018,Politicians,@TheBushCenter,RT @VictorDCha: Waiting to join ⁦@hodakotb⁩ ⁦@SavannahGuthrie⁩ ⁦@TODAYshow⁩ (with one hour of sleep) to talk #SingaporeSummit ⁦@georgetown… +06/12/2018,Politicians,@TheBushCenter,ICYMI: @junepyun and @WLindsayLloyd spoke to @wfaa's @twoodard8 about North Korean human rights and why they must r… https://t.co/feyUUmaZM6 +06/12/2018,Politicians,@TheBushCenter,"“She made sure she improved the lives of others... and it’s a great example for her daughter, for her children, and… https://t.co/khQXlydEiv" +06/11/2018,Politicians,@TheBushCenter,#DYK: Jackie Kennedy spoke 5 languages and saved Egyptian temples from being torn down. Learn how she helped shape… https://t.co/NDW5wenRsz +06/11/2018,Politicians,@TheBushCenter,DFW: tune into @wfaa's story on the US-North Korea Summit tonight at 6 featuring Bush Institute human freedom exper… https://t.co/UJIFZWm3lb +06/11/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/NnyqEImxdJ +06/11/2018,Politicians,@TheBushCenter,"Thank you to @TeamRubicon, #Team43, @DennisClancey, @PatRossIII, @Hope4Warriors, @022KILL, @HoovesForHeroes,… https://t.co/2F2qE7MKT2" +06/11/2018,Politicians,@TheBushCenter,We welcomed @supportthewalk today as they began their journey through #Texas. The 3 U.S. & 3 U.K. wounded #veterans… https://t.co/m5Sswa6JZ0 +06/11/2018,Politicians,@TheBushCenter,"As the U.S. and the rest of the world grapple with denuclearizing #NorthKorea, the country’s atrocious human rights… https://t.co/ofyC1Vv77X" +06/11/2018,Politicians,@TheBushCenter,"""While it may sound like the U.S. can get a better deal negotiating [NAFTA] separately, bilateral agreements inevit… https://t.co/GdYMeO1sWw" +06/11/2018,Politicians,@TheBushCenter,RT @MontseTXAFLCIO: We all have an obligation to ensure that we are sharing the positive impacts of immigration @lvtcollins @latinocld #Lat… +06/11/2018,Politicians,@TheBushCenter,Team 43 member Johnnie Yellock speaking about @supportthewalk. #whyiwalk #supportthewalk #walkofamerica https://t.co/zMYvlhjptY +06/11/2018,Politicians,@TheBushCenter,"And they’re off! @supportthewalk will walk 18 miles to Grand Prairie today. They will walk a total of 1,000 miles d… https://t.co/6JJyFdQbSW" +06/11/2018,Politicians,@TheBushCenter,Bush Center Staff with @supportthewalk walkers as they embark on their Texas journey today. 🇬🇧🇺🇸 #supportthewalk… https://t.co/lAC4vEAbkk +06/11/2018,Politicians,@TheBushCenter,We’re welcoming @supportthewalk to the the Bush Center this morning! #walkofamerica #whyiwalk #supportthewalk https://t.co/6CSUQzputW +06/11/2018,Politicians,@TheBushCenter,"Barbara Bush’s dedication to faith, family, and friends captured the hearts of Americans. The latest episode of “La… https://t.co/MRk9R97A58" +06/10/2018,Politicians,@TheBushCenter,"“I think it’s a great example for all the women in our family to stand up for yourself, speak loudly about issues t… https://t.co/VsaayJ97Sb" +06/09/2018,Politicians,@TheBushCenter,"Stay connected with the Bush Center! Be the first to hear our ideas, receive updates, engage with us, and more. Sig… https://t.co/QEpdlytxqV" +06/09/2018,Politicians,@TheBushCenter,"“She made sure she improved the lives of others... and it’s a great example for her daughter, for her children, and… https://t.co/mPAPEwYFsV" +06/09/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/08/2018,Politicians,@TheBushCenter,#StandTo Veteran Leadership scholars heard from @ChiefDavidBrown this morning - an inspiring way to wrap up week on… https://t.co/sR8rVnUAwQ +06/08/2018,Politicians,@TheBushCenter,"Do you know what policy changes can be made to prolong Social Security and Medicaid's solvency? Find out: +https://t.co/nXye5wfhrE" +06/08/2018,Politicians,@TheBushCenter,"In honor of what would have been Barbara Bush's 93rd birthday, we sat down for a conversation with her daughter, Do… https://t.co/3apWqubSp3" +06/08/2018,Politicians,@TheBushCenter,"Be the first to hear our ideas, engage with us, and stay up-to-date on what we have going on. Sign up now: https://t.co/mHu9WTZNbN" +06/07/2018,Politicians,@TheBushCenter,"""Veterans entering into all frames of leadership – political, business, and society leadership – fills out the pale… https://t.co/NAqrSMdOs3" +06/07/2018,Politicians,@TheBushCenter,"Stay connected with the Bush Center! Sign up to receive updates, newsletters, ideas, and more from our experts. https://t.co/mHu9WTZNbN" +06/07/2018,Politicians,@TheBushCenter,General @StanMcChrystal spoke this week to the #StandTo Veteran Leadership scholars about the importance of the pro… https://t.co/uk2zmWNOQq +06/07/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/07/2018,Politicians,@TheBushCenter,Do you know the number of countries and territories represented in the @NBA? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/06/2018,Politicians,@TheBushCenter,RT @KacieAKelly: Honored to discuss #health & #wellbeing with @JJPint at the @TheBushCenter today! Excited about the diversity of thought &… +06/06/2018,Politicians,@TheBushCenter,"Massive human rights abuses against the Rohingya are becoming widely known, yet many aren't aware there are multipl… https://t.co/WL8wRtyymY" +06/06/2018,Politicians,@TheBushCenter,"“Be as good as you can, don’t try to be more than you are” - General @StanMcChrystal to #StandTo Vet Leadership Pro… https://t.co/zR5rW09TmA" +06/06/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/MSvzmfe3Me +06/06/2018,Politicians,@TheBushCenter,"""Tariffs on our closest allies put us in conflict with the very countries who are our strongest allies in confronti… https://t.co/pRSkBoPPQY" +06/05/2018,Politicians,@TheBushCenter,"""The opportunity to be here with these outstanding young leaders is a blessing."" - Sec. Bob McDonald to #StandTo Ve… https://t.co/AJhSOOqkQL" +06/05/2018,Politicians,@TheBushCenter,Applications for the 2019 class of #PLScholars are now open! Learn more about the @PLSprogram: https://t.co/EYsQ7ZAAkY +06/05/2018,Politicians,@TheBushCenter,“Our vets are a tremendous national asset…and to help vets transition from military life to civilian life is in the… https://t.co/HG0Kha6Vb3 +06/05/2018,Politicians,@TheBushCenter,"“I’m thrilled to be with you, and I appreciate you very much joining the initial class of an effort that’s going to… https://t.co/nWp9yEtVbu" +06/05/2018,Politicians,@TheBushCenter,Bush Institute Fellow @VictorDCha testifies before the Senate Foreign Relations Asia Subcommittee about the challen… https://t.co/SbRq3hs6Dz +06/05/2018,Politicians,@TheBushCenter,Yesterday was the first day of a week long trip to #Dallas for the inaugural class of our Stand-To Veteran Leadersh… https://t.co/DBB5S3HSi4 +06/05/2018,Politicians,@TheBushCenter,RT @JJPint: Fired up and coming in hot to talk #Health and #Wellbeing with @KacieAKelly for the 1st @TheBushCenter #veteran leadership prog… +06/05/2018,Politicians,@TheBushCenter,"RT @KacieAKelly: Day 2 of first week of @TheBushCenter Veteran Leadership Program kicks off with a roar, “...our veterans are a tremendous…" +06/04/2018,Politicians,@TheBushCenter,"June is here which means more vacations, road trips, and family time. Download ""Ladies, First"" – a fun, informative… https://t.co/9lZEgD98fT" +06/04/2018,Politicians,@TheBushCenter,“This program isn’t just about veteran outcomes and programs; it’s about continued veteran leadership too” -… https://t.co/p8SvubIk1G +06/04/2018,Politicians,@TheBushCenter,“This is about educating and informing the country about how to leverage this great asset we have.” -… https://t.co/Tpp7o7w8y9 +06/04/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/Ouo4jjLPEd +06/04/2018,Politicians,@TheBushCenter,"RT @jaynordlinger: How bad are these new tariffs against our allies (and against ourselves, really)? @EconGrowth puts it in a nutshell. htt…" +06/04/2018,Politicians,@TheBushCenter,"Explore our data to learn why maintaining good #trade relations with our allies-- Canada, Mexico, and the EU-- are… https://t.co/HxSByxLiiX" +06/04/2018,Politicians,@TheBushCenter,.@EconGrowth explains why steel and aluminum #tariffs will increase the price of many consumer goods including soda… https://t.co/0ZhFHUqZnY +06/04/2018,Politicians,@TheBushCenter,"RT @jaynordlinger: Interesting little article by @lvtcollins on the ""global flavor of the NBA."" (I didn't know Dr. Naismith was an immigran…" +06/04/2018,Politicians,@TheBushCenter,#DYK Kim Jong-Un’s nuclear program is partially funded by sending North Koreans to places like China and Russia to… https://t.co/MjRkdJKoHi +06/04/2018,Politicians,@TheBushCenter,RT @blaynepsmith: TPA->DFW. Pumped to join @ToddConnor and @MiguelHoweMSI to help kick off the Stand-To Veteran Leadership Program @TheBush… +06/04/2018,Politicians,@TheBushCenter,We are excited to welcome the inaugural class of our Stand-To Veteran Leadership scholars to #Dallas this week! Sta… https://t.co/ddzhSBTNKg +06/04/2018,Politicians,@TheBushCenter,How can we make economic growth more inclusive? Director of the Bush Institute-SMU Economic Growth Imitative Cullum… https://t.co/BDiRsGkUvk +06/04/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/02/2018,Politicians,@TheBushCenter,"RT @wendykopp: A fitting tribute to the extraordinary roles many grandmothers take on, featuring @Kassaga4UG, via Natalie Gonnella-Platts o…" +06/02/2018,Politicians,@TheBushCenter,“The United States owes its leading place in the world economy to its historic achievements in education.” -- Direc… https://t.co/p4M5AAP7J3 +06/02/2018,Politicians,@TheBushCenter,"June is here which means more vacations, road trips, and family time. Download ""Ladies, First"" – a fun informative… https://t.co/RQlQ3viZ3x" +06/02/2018,Politicians,@TheBushCenter,"North Korea’s leader Kim Jong-un takes pride in his country’s nuclear program. However, a recent survey from @CSIS… https://t.co/dqYLpr1Cyf" +06/01/2018,Politicians,@TheBushCenter,"As the U.S. and the rest of the world grapple with denuclearizing #NorthKorea, the conversation must begin at the r… https://t.co/kr2k0BSGsT" +06/01/2018,Politicians,@TheBushCenter,"RT @DallasBizNews: Bush Institute, SMU launch economic growth initiative: https://t.co/w2DA02jymV" +06/01/2018,Politicians,@TheBushCenter,"Steel and aluminum tariffs will increase the cost of sodas, cars, refrigerators and many other consumer goods. Lear… https://t.co/AcQ2Dkmtir" +06/01/2018,Politicians,@TheBushCenter,RT @SMUDedman: Today's a big day: @TheBushCenter Institute-@SMU Economic Growth Initiative officially launches https://t.co/BKOB35qFIw +06/01/2018,Politicians,@TheBushCenter,Read more about the George W. Bush Institute-SMU Economic Growth Initiative that formally launched today:… https://t.co/NfGyqX6RpZ +06/01/2018,Politicians,@TheBushCenter,Bush Institute's @EconGrowth talks to @washingtonpost about new tariffs put on U.S. allies: https://t.co/28vR5RO88R +06/01/2018,Politicians,@TheBushCenter,Director of the Bush Institute-SMU Economic Growth Initiative Cullum Clark shares his thoughts on how to strengthen… https://t.co/Pa8ldSRpTy +06/01/2018,Politicians,@TheBushCenter,"“Raising #tariffs is raising taxes, and tariffs are a tax that is paid by consumers, not producers.” -- @EconGrowth… https://t.co/U6CQXQ7FI0" +06/01/2018,Politicians,@TheBushCenter,“The Initiative combines [our] action-oriented approach to policy & extraordinary convening ability w/ @SMU's resea… https://t.co/eTT75jY5jT +06/01/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: From my @TheBushCenter colleagues @lvtcollins & @EconGrowth in @ForeignPolicy - The US must foster free trade and econom… +06/01/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/6UgEvHqw4S +07/02/2018,Politicians,@SpeakerRyan,"From @SteveScalise’s return to the baseball diamond to the harrowing and triumphant stories of the #OpioidCrisis, h… https://t.co/YE2yswsCdU" +07/02/2018,Politicians,@SpeakerRyan,RT @RepLouBarletta: Utility bills keep going down for Pennsylvanians thanks to #TaxReform https://t.co/RqRpR8WEyP +07/02/2018,Politicians,@SpeakerRyan,"In 6 months, #TaxReform has unlocked a wave of economic momentum: + +✅ more open jobs than job seekers +✅ Americans’ e… https://t.co/8T2UGJGRQq" +06/30/2018,Politicians,@SpeakerRyan,RT @PatrickMcHenry: Click here to learn more about how House passage of the Department of Defense Appropriations Act is another step toward… +06/30/2018,Politicians,@SpeakerRyan,"As promised, the new tax forms are the size of a postcard. Filing your taxes just got a little less taxing. This is… https://t.co/mvBoDoCMbj" +06/29/2018,Politicians,@SpeakerRyan,"RT @SteveScalise: 6 months ago, when we passed the #TaxCutsandJobsAct, we promised simple tax returns the size of a postcard. Today, @USTre…" +06/29/2018,Politicians,@SpeakerRyan,"RT @CNBCnow: JUST IN: Treasury, IRS announce postcard-size form 1040 for next year https://t.co/ZaAhnbWc2z https://t.co/YdWMMi02vb" +06/29/2018,Politicians,@SpeakerRyan,"Filing your taxes just got a little less taxing. @USTreasury unveiled the new return for 2019, and as promised, it’… https://t.co/0eVsY7E3yx" +06/29/2018,Politicians,@SpeakerRyan,"RT @GovWalker: With up to 13,000 jobs and $10 billion in capital, Foxconn’s investment in Wisconsin is by far the largest economic developm…" +06/29/2018,Politicians,@SpeakerRyan,"In the 6️⃣ months since #TaxReform: + +6️⃣5️⃣% of Americans say now is the time to find a quality job +9️⃣5️⃣.1️⃣% of… https://t.co/aGvlM1zhVV" +06/28/2018,Politicians,@SpeakerRyan,The senseless attack on a Maryland newspaper today is sickening. God bless these journalists. We pray for them and their families tonight. +06/28/2018,Politicians,@SpeakerRyan,"Today, we demonstrate to the rest of the world that the Badger State will be a manufacturing powerhouse for generat… https://t.co/2C11vcFDl9" +06/28/2018,Politicians,@SpeakerRyan,The Badger State is a great place to do business. Just broke ground on Foxconn's facility in Southeastern Wisconsin… https://t.co/Wi5O3NFp70 +06/28/2018,Politicians,@SpeakerRyan,Great news→ The House just voted to give our men and women in uniform their largest pay raise in 9 years. They dese… https://t.co/pRjXhpFSZQ +06/28/2018,Politicians,@SpeakerRyan,This funding package will help deliver better care for our veterans and grow our economy with critical investments… https://t.co/zJ11VvNMUl +06/28/2018,Politicians,@SpeakerRyan,Retweet to agree → Our men and women in uniform deserve a pay raise. The House is about to vote to give them their… https://t.co/CRO1eLROEf +06/28/2018,Politicians,@SpeakerRyan,"The House will soon take a big vote to rebuild our military. Here are 8 reasons the #NDAA is so important, includin… https://t.co/Gzf3p3ZgtQ" +06/27/2018,Politicians,@SpeakerRyan,"Welcomed a delegation of European speakers, ambassadors, and other leaders to the Capitol today to discuss our shar… https://t.co/MbMcRkelRX" +06/27/2018,Politicians,@SpeakerRyan,RT @BudgetGOP: DON'T MISS @SpeakerRyan highlighting @BudgetGOP Chair @SenatorEnzi's biennial appropriations idea. Moving Congress to two-ye… +06/27/2018,Politicians,@SpeakerRyan,"RT @PolishEmbassyUS: Today @SpeakerRyan welcomed parliamentary leaders from Central & Eastern Europe, including Deputy Speaker of the Polis…" +06/27/2018,Politicians,@SpeakerRyan,RT @BudgetGOP: MUST READ @SpeakerRyan endorses @SenatorEnzi’s two-year spending plan - https://t.co/6YkKTQgbqx - via @washtimes & @dsherfin… +06/27/2018,Politicians,@SpeakerRyan,"RT @SenatorEnzi: Thanks to @SpeakerRyan for promoting my #BiennialAppropriations idea. Moving Congress to a two-year appropriations cycle,…" +06/27/2018,Politicians,@SpeakerRyan,RT @rep_stevewomack: Thanks to @SpeakerRyan for sharing his reform ideas during today’s Members’ Day hearing in the Joint Select Committee… +06/27/2018,Politicians,@SpeakerRyan,The following members will lead negotiations for reforms to the Committee on Foreign Investment in the United State… https://t.co/KY42PBAR8N +06/27/2018,Politicians,@SpeakerRyan,"After years of being hollowed out, we are on the road to rebuilding our military. The 2018 #NDAA is about keeping t… https://t.co/GEP6ZpuTxH" +06/27/2018,Politicians,@SpeakerRyan,"In his decades of faithful service on the bench, Justice Kennedy has been a man of integrity and decency. He has ea… https://t.co/zhijXP3J8x" +06/27/2018,Politicians,@SpeakerRyan,"For years, our military has been hollowed out. This year’s defense bill is all about ensuring our Armed Forces can… https://t.co/V9A5UszVDp" +06/27/2018,Politicians,@SpeakerRyan,"RT @SteveKnight25: My bill, the Small Business Investment Opportunity Act, has been signed into law! Small businesses are the backbone of o…" +06/27/2018,Politicians,@SpeakerRyan,RT @EdWorkforce: The SCOTUS ruling in Janus v. AFSCME is a win for individual freedom for public sector employees. Read Chairwoman @Virgini… +06/27/2018,Politicians,@SpeakerRyan,"A generation of the people’s representatives have become accustomed to a failed budget process. This has to change,… https://t.co/JPWw0ObjWt" +06/27/2018,Politicians,@SpeakerRyan,Biennial budgeting offers a path to rewriting this process—it brings renewed transparency & accountability so we're… https://t.co/HJLwK5dbUV +06/27/2018,Politicians,@SpeakerRyan,"Continuing resolution after continuing resolution, and all of these omnibuses, are not in the best interest of our… https://t.co/Dn9PbF3jZP" +06/27/2018,Politicians,@SpeakerRyan,"I’ve often lamented that the budget process was broken—""organized chaos” would be too generous a description. It is… https://t.co/Wy6mSRW6wx" +06/27/2018,Politicians,@SpeakerRyan,"RT @rep_stevewomack: WATCH: The Joint Select Committee on Budget and Appropriations Process Reform hosts Members’ Day, including testimony…" +06/26/2018,Politicians,@SpeakerRyan,Thank you @KingAbdullahII & @QueenRania for meeting with a bipartisan group of lawmakers in the Capitol today to di… https://t.co/yGHOqo9acS +06/26/2018,Politicians,@SpeakerRyan,"Every day, firefighters put themselves in harm’s way. This bill allowing researchers to better understand the impac… https://t.co/97yfHi6vRA" +06/26/2018,Politicians,@SpeakerRyan,This year’s defense funding bill gives our service members their biggest pay raise in nine years. What our country’… https://t.co/1XGPoQv5fI +06/26/2018,Politicians,@SpeakerRyan,"After tax reform, @HouseGOP’s top priority was to rebuild our military. I’ll be speaking about the steps we’re taki… https://t.co/onYsshv5xq" +06/25/2018,Politicians,@SpeakerRyan,RT @cathymcmorris: The deadly #opioidcrisis is ravaging communities across our nation. See what we are doing to stop it at https://t.co/G3d… +06/24/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: The House passed over 70 bills that target specific weaknesses in the treatment and prevention of opioid addiction. To… +06/22/2018,Politicians,@SpeakerRyan,Dr. Charles Krauthammer was a widely respected thinker and writer who used his immeasurable gifts to contribute to… https://t.co/T5RbkrgIu2 +06/22/2018,Politicians,@SpeakerRyan,"RT @WaysandMeansGOP: Today, a #bipartisan group of 396 Representatives got together and voted for a “massive” package of bills to help in t…" +06/22/2018,Politicians,@SpeakerRyan,"Over the last six months, I’ve visited dozens of businesses across the country to hear directly from company leader… https://t.co/MMtitOfBV0" +06/22/2018,Politicians,@SpeakerRyan,"The Tax Cuts and Jobs Act was signed into law six months ago today, but it was a moment that was decades in the mak… https://t.co/DFL9jKfrEC" +06/22/2018,Politicians,@SpeakerRyan,"RT @NBCNightlyNews: NEW: House passes largest opioids legislative package in recent history, with provisions directing federal agencies to…" +06/22/2018,Politicians,@SpeakerRyan,RT @RepKevinBrady: Something big indeed. America is back! Read my op-ed in the @WSJ ⬇️ https://t.co/ldKww7DzTb +06/22/2018,Politicians,@SpeakerRyan,"These kinds of bipartisan moments don’t always make it into the top of your newsfeed, but this Congress—Republicans… https://t.co/YJwmD4ytIU" +06/22/2018,Politicians,@SpeakerRyan,Just in→ House Republicans and Democrats came together pass the SUPPORT for Patients and Communities Act in order t… https://t.co/nWyjgaOcuT +06/22/2018,Politicians,@SpeakerRyan,"Today’s SUPPORT bill fights the #OpioidCrisis by + +✔Advancing treatment and recovery programs +✔Improving prevention… https://t.co/rdSpu5J1Vh" +06/22/2018,Politicians,@SpeakerRyan,Speaker Ryan's Tribute to Charles Krauthammer https://t.co/tHqiXsnyXV +06/22/2018,Politicians,@SpeakerRyan,"Our nation is facing an #OpioidCrisis. Soon, I’ll be speaking on the House Floor about how the SUPPORT for Patients… https://t.co/p0t4tW3rMr" +06/21/2018,Politicians,@SpeakerRyan,Charles Krauthammer was one of the great thinkers of our time. A giant in his intellect and his character. A good a… https://t.co/pssNKyCemW +06/21/2018,Politicians,@SpeakerRyan,"Today’s House passage of the #2018FarmBill is a big deal. With our booming economy, there is no better time to clos… https://t.co/ztC5lX1g79" +06/21/2018,Politicians,@SpeakerRyan,RT @HouseAgNews: BREAKING: House advances the #2018FarmBill. H.R. 2 provides certainty to farmers and ranchers who have been struggling und… +06/21/2018,Politicians,@SpeakerRyan,RT @SteveScalise: Another reason to celebrate the 6-month anniversary of the #TaxCutsandJobsAct? Utility bills are dropping for over 80 mil… +06/21/2018,Politicians,@SpeakerRyan,"RT @TheFGA: “This is the time to get people off the sidelines, out of poverty, into the workforce, into school, so that they can reach thei…" +06/21/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan: ""There are more job openings in this country than there are people looking for work."" https://t.co/G7o083zB…" +06/21/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: “We’re never going to be complacent. We’re going to continue to fight for American workers and American families to ma… +06/21/2018,Politicians,@SpeakerRyan,"In just six months. #TaxReform has meant: + +✅ Economic resurgence +✅ Higher pay for workers +✅ More job openings +✅ Mor… https://t.co/x3b3szMvTj" +06/21/2018,Politicians,@SpeakerRyan,We do not want children taken away from their parents. Yesterday’s action by @POTUS will ensure families can remain… https://t.co/Zzd9tVznp7 +06/21/2018,Politicians,@SpeakerRyan,"Soon, I’ll be speaking about the situation at the border and the strength of the American economy at my weekly pres… https://t.co/VV9UPjVCbt" +06/21/2018,Politicians,@SpeakerRyan,"The US is now in a pro-growth cycle where Americans are confident, they're risk-taking, they're hiring, and wages a… https://t.co/9hIHCBh2ca" +06/21/2018,Politicians,@SpeakerRyan,"Six months ago today, Congress passed the Tax Cuts and Jobs Act, and the good economic news continues to roll in. https://t.co/USwZO6WwFc" +06/21/2018,Politicians,@SpeakerRyan,The Capitol Hill community came together tonight at the @CWSoftballGame to raise awareness and money to… https://t.co/Lz29l9ItaJ +06/21/2018,Politicians,@SpeakerRyan,RT @PatrickMcHenry: Great piece from @SpeakerRyan highlighting all the reasons #taxreform is making American workers and businesses feel mo… +06/21/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan on the impact of the Tax Cuts and Jobs Act, 6 months since it was passed: ""More than 1 million jobs have bee…" +06/20/2018,Politicians,@SpeakerRyan,Looking forward to tonight’s Congressional Women’s Softball Game against the DC press corps to benefit breast cance… https://t.co/0fiXp0YCFd +06/20/2018,Politicians,@SpeakerRyan,Today marks six months since Congress passed a historic reform of our country’s tax code. In this short amount of t… https://t.co/5yy2PEMalk +06/20/2018,Politicians,@SpeakerRyan,"Thanks to the Republican-led tax law, America is experiencing a boom in US manufacturing. ⚙️ https://t.co/KDRZa0KoqM" +06/20/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan: ""In just 6 months, tax reform has already improved so many people's lives."" https://t.co/yfwTDwp3Ln" +06/20/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: .@SpeakerRyan is right: ""Tax reform has improved American lives in just six months."" Check out his @CNBC piece on #TaxRef…" +06/20/2018,Politicians,@SpeakerRyan,"Tax reform is working, not just for our economy, but for American workers, too. https://t.co/z7vBBcqW6h" +06/20/2018,Politicians,@SpeakerRyan,It’s only been six months and #TaxReform has already proven to be a game-changer for our economy. Tune in live as… https://t.co/RontKHK4hA +06/20/2018,Politicians,@SpeakerRyan,RT @ShopFloorNAM: A record-high 95.1% of manufacturers report an optimistic outlook for their company in our Q2 Manufacturers’ Outlook Surv… +06/20/2018,Politicians,@SpeakerRyan,RT @CNBC: Commentary: Paul Ryan: Tax reform has improved American lives in just six months https://t.co/j2GzRkKZaf +06/20/2018,Politicians,@SpeakerRyan,"Six months ago this week, historic #TaxReform was passed and signed into law. It has been a game-changer for the Am… https://t.co/GKkLiQiyyO" +06/20/2018,Politicians,@SpeakerRyan,"RT @cspan: .@SpeakerRyan: ""We do not want children taken away from their parents. We can enforce our immigration laws without breaking fami…" +06/20/2018,Politicians,@SpeakerRyan,"We can enforce our immigration laws without breaking families apart. Tomorrow, the House will vote on legislation t… https://t.co/7d4rwa1ZPb" +06/20/2018,Politicians,@SpeakerRyan,"Tune in for this morning's news conference with @HouseGOP leadership, where we'll talk about the situation at the b… https://t.co/tKbkNYGHZ3" +06/20/2018,Politicians,@SpeakerRyan,"It’s been 6 months since the House passed #TaxReform and since then: +✅ 1 million jobs created +✅ Unemployment droppe… https://t.co/xpaF8U6OQt" +06/19/2018,Politicians,@SpeakerRyan,The United States and Spain have many shared priorities. I was delighted to meet with His Majesty King Felipe VI to… https://t.co/Cl0o8zrJIv +06/19/2018,Politicians,@SpeakerRyan,RT @GOPLeader: This is the most significant congressional effort against a single drug crisis in history. Last week the House passed 38 #op… +06/19/2018,Politicians,@SpeakerRyan,"The #OpioidCrisis has impacted communities across the country. By the end of this week, the House will have conside… https://t.co/gdZGrJ2wLm" +06/18/2018,Politicians,@SpeakerRyan,"RT @WaysandMeansGOP: Who’s affected by opioids? +The better question is: “Who hasn't been touched by the opioid crisis in America?” + +READ 📚…" +06/18/2018,Politicians,@SpeakerRyan,Opioid overdose is now the leading cause of death for Americans under the age of 50. The House will not relent in c… https://t.co/4Pi7slt4DR +06/16/2018,Politicians,@SpeakerRyan,"My life changed the day I became a father. Liza, Charlie, and Sam are my highest priority. Wishing all of the dads… https://t.co/KRd3ksGJRT" +06/16/2018,Politicians,@SpeakerRyan,"RT @PatrickMcHenry: In honor of #FathersDay , @SpeakerRyan and I went head to head with some of our best #dadjokes. They weren't good... ht…" +06/15/2018,Politicians,@SpeakerRyan,RT @HeardontheHill: Bad Dad Jokes for Father’s Day: @SpeakerRyan and @PatrickMcHenry face off with lame puns https://t.co/3YTO1RfYif +06/15/2018,Politicians,@SpeakerRyan,RT @HouseSmallBiz: HUGE news for America's small businesses: Chairman @RepSteveChabot's H.R. 4743 is en route to the @WhiteHouse after @Spe… +06/15/2018,Politicians,@SpeakerRyan,"I love a good dad joke. Especially the ones that are so bad, they’re good. But @PatrickMcHenry’s #DadJokes are just… https://t.co/ivkoGBQDng" +06/15/2018,Politicians,@SpeakerRyan,The House is hard at work passing legislation that will continue to strengthen our economy. These two bills helping… https://t.co/NPzA2wBT9S +06/15/2018,Politicians,@SpeakerRyan,RT @SteveScalise: For the countless prayers and support on this journey — thank you. https://t.co/eNR0HPouVI +06/15/2018,Politicians,@SpeakerRyan,.@SteveScalise and the rest of the baseball team that day owe a debt of gratitude to the two Capitol Police officer… https://t.co/cHTwE9I7uE +06/14/2018,Politicians,@SpeakerRyan,Retweet to join me in welcoming @SteveScalise back on the field. #ScaliseStrong https://t.co/IFYjuvhNZs +06/14/2018,Politicians,@SpeakerRyan,My statement on the Department of Justice Inspector General report→ https://t.co/ZfIOIOj7gG +06/14/2018,Politicians,@SpeakerRyan,Happy birthday to President Trump! https://t.co/56fOsteJ2G +06/14/2018,Politicians,@SpeakerRyan,The American flag is the greatest symbol for democracy and freedom that the world has ever known. Happy #FlagDay! 🇺🇸 https://t.co/GdqUca1ObT +06/14/2018,Politicians,@SpeakerRyan,2.7 million people across the country are struggling with opioids. We’re losing 115 lives each day to the… https://t.co/JszCyetaml +06/14/2018,Politicians,@SpeakerRyan,The #OpioidCrisis is an epidemic in the truest sense of the word. I’ll be speaking more about why this needs to be… https://t.co/jmSFrpVv9N +06/14/2018,Politicians,@SpeakerRyan,Jobless claims just fell to a near 44-year low. 📉 https://t.co/5q8WuX9f28 +06/14/2018,Politicians,@SpeakerRyan,"When I announced my retirement from Congress, much of the media focused on what I was giving up. All I could think… https://t.co/rA34buBjX6" +06/14/2018,Politicians,@SpeakerRyan,"Around this time last year, I was in my office on the phone with @SteveScalise's wife. We didn’t yet know that Stev… https://t.co/3qXvQFNBmr" +06/14/2018,Politicians,@SpeakerRyan,This is the day that the Lord has made. Let us rejoice and be glad in it. So glad to be here speaking at the… https://t.co/AM4KY4VMAf +06/14/2018,Politicians,@SpeakerRyan,RT @SteveScalise: It's more than a game. https://t.co/Obltwoeu2U +06/13/2018,Politicians,@SpeakerRyan,Rep. Sam Johnson is an absolute hero for his sacrifice as a POW and his continued service to America. It is a privi… https://t.co/at0bXSwSzN +06/13/2018,Politicians,@SpeakerRyan,"RT @RepBradWenstrup: The Tax Cuts and Jobs Act created 320 Opportunity Zones in Ohio. That’s 320 economically-distressed Ohio communities,…" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepPittenger: Thanks to the #TaxCutsandJobsAct, there are now 252 “Opportunity Zones” throughout North Carolina. These “Opportunity Zon…" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepMikeBishop: Across Michigan, the #TaxCutsandJobsAct created 280+ #OpportunityZones to incentivize investment & spur growth in low-in…" +06/13/2018,Politicians,@SpeakerRyan,The time is now → We need to step up and fight the opioid epidemic from all sides. Kyle is proof that no matter how… https://t.co/qACHWP8sS0 +06/13/2018,Politicians,@SpeakerRyan,Bills passed in Washington alone will not stop this epidemic. We all have a role to play in supporting those affect… https://t.co/taq4ox3kkI +06/13/2018,Politicians,@SpeakerRyan,"This week, we are voting on the most significant congressional reforms against a single drug crisis in history. Bip… https://t.co/kz3cafH4xm" +06/13/2018,Politicians,@SpeakerRyan,"For Kyle Pucek, an ankle injury at 23 turned into an addiction to heroin that nearly took his life. Kyle has been c… https://t.co/6qxC3M8mwh" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepRalphNorman: Thanks to #TaxReform, #SC has received 135 #OpportunityZones, which encourages long-term investments and boosts the eco…" +06/13/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: Michelle's story – and the thousands like it across the country – are the reason our members are working on legislatio… +06/13/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: Take a moment today to read @SpeakerRyan's piece in @journalsentinel about ""How Congress is stepping up to crack down on…" +06/13/2018,Politicians,@SpeakerRyan,The #OpioidCrisis touches all of our communities. Michelle is a mother of two from Southern Wisconsin. Both of her… https://t.co/d9IZHiW0w9 +06/13/2018,Politicians,@SpeakerRyan,115 lives are lost every day to the #OpioidCrisis. These statistics are harrowing. Learn more about how the House i… https://t.co/kP4d10w5QU +06/13/2018,Politicians,@SpeakerRyan,RT @SteveScalise: Tomorrow. https://t.co/RDx7AbXLkp +06/12/2018,Politicians,@SpeakerRyan,"From cementing a conservative judiciary to helping guide historic tax reform into law, and always looking out for K… https://t.co/0iw60aLFQI" +06/12/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: As a part of @HouseGOP’s historic #TaxReform, Wisconsin has received 120 #OpportunityZones to help spur investment and ec…" +06/12/2018,Politicians,@SpeakerRyan,RT @RepAndyHarrisMD: And unemployment is at a historically low 3.8%. #TaxReform works! https://t.co/p9ELU7j5cf +06/12/2018,Politicians,@SpeakerRyan,"RT @HouseGOP: A booming economy doesn’t just happen. It develops when sound, pro-growth policies are written and passed, policies that are…" +06/12/2018,Politicians,@SpeakerRyan,RT @HouseCommerce: Dozens of bills aimed at combating the #OpioidCrisis will hit the House Floor today. Get the latest from @USATODAY on th… +06/12/2018,Politicians,@SpeakerRyan,"✅ Lowest unemployment rate in half a century +✅ Highest optimism from #smallbiz in 30+ years +❌ Predictions of tax re… https://t.co/wzvX6kyPrV" +06/12/2018,Politicians,@SpeakerRyan,"Awesome news. Can’t wait to see you out there, Steve-o! https://t.co/myv4xJW0nF" +06/12/2018,Politicians,@SpeakerRyan,"Only time will tell if North Korea is serious this time, and in the meantime, we must continue to apply maximum eco… https://t.co/pVaWhp1pv9" +06/12/2018,Politicians,@SpeakerRyan,We must always be clear that we are dealing with a brutal regime with a long history of deceit. +06/12/2018,Politicians,@SpeakerRyan,"For decades, American policy toward North Korea has failed, and I commend @POTUS for not accepting the status quo.… https://t.co/w0PtpkiPGr" +06/12/2018,Politicians,@SpeakerRyan,.@GeorgeHWBush is a national treasure. Retweet to join me in wishing him a happy 94th birthday! +06/12/2018,Politicians,@SpeakerRyan,"Glad that you are already feeling better, @larry_kudlow. Praying for a full and speedy recovery for my friend." +06/12/2018,Politicians,@SpeakerRyan,Small business optimism just rose to its highest in more than 30 years. 📈 https://t.co/0K7Tbl88xQ +06/11/2018,Politicians,@SpeakerRyan,"RT @SteveScalise: This week, we're taking action to combat the #OpioidCrisis, which is truly the #CrisisNextDoor. The House will consider a…" +06/11/2018,Politicians,@SpeakerRyan,@jamiedupree Glad to hear you'll be back on the airwaves soon! +06/11/2018,Politicians,@SpeakerRyan,RT @RepErikPaulsen: Some good news ---> House set to vote on more than 20 bills to combat opioid addiction @CNNPolitics https://t.co/YqBCOa… +06/11/2018,Politicians,@SpeakerRyan,"RT @cathymcmorris: On the agenda next week to prevent, treat, and help people recover from addiction→ House set to vote on more than 20 bil…" +06/10/2018,Politicians,@SpeakerRyan,Had the pleasure of meeting Kayla a few months back. She truly is an inspiration to all of us and a great advocate… https://t.co/FuNHWLStzb +06/09/2018,Politicians,@SpeakerRyan,"RT @michaelcburgess: Over the next two weeks, the House will consider meaningful legislative solutions to combat the opioid epidemic. It's…" +06/09/2018,Politicians,@SpeakerRyan,"As a proud #MiamiOH alum, I always enjoy it when fellow #RedHawks stop by the office. Had a great discussion about… https://t.co/ZUYMIRMMOz" +06/08/2018,Politicians,@SpeakerRyan,"RT @RepEvanJenkins: We’re continuing to provide solutions and funding to stop drug trafficking, expand recovery programs, and educate peopl…" +06/08/2018,Politicians,@SpeakerRyan,"Bonuses and bigger paychecks aren’t the only ways #TaxReform is helping American workers. @Boeing, @McDonalds,… https://t.co/3J1J5sxmjq" +06/08/2018,Politicians,@SpeakerRyan,RT @RobWittman: The Project Safe Neighborhoods Grant Program Authorization Act gives state and local law enforcement agencies the resources… +06/08/2018,Politicians,@SpeakerRyan,JUST NOW→ House Republicans voted to cut $15 billion in wasteful government spending—the largest rescission package in history. +06/07/2018,Politicians,@SpeakerRyan,RT @RepComstock: Joined @RepGoodlatte and @RobWittman as @SpeakerRyan enrolled my anti MS-13 gang bill today. This legislation will help g… +06/07/2018,Politicians,@SpeakerRyan,"1,000,000. That's how many new jobs have been created since #TaxReform took effect. + +It's been less than 6 months. https://t.co/CQcd59I3Ts" +06/07/2018,Politicians,@SpeakerRyan,The #OpioidEpidemic has brought harrowing losses to our communities and has cut short too many futures. With the… https://t.co/nnh7VV6mUw +06/07/2018,Politicians,@SpeakerRyan,Gangs like MS-13 prey on our country’s young people through chilling violence and recruitment tactics. It’s crucial… https://t.co/5CWJC3wsQw +06/07/2018,Politicians,@SpeakerRyan,Great news → The House just started debate on the largest rescission package in history. This budget-cutting tool w… https://t.co/T0EX8zvnCy +06/07/2018,Politicians,@SpeakerRyan,"Retweet to join me in wishing our @VP, Mike Pence, a very happy birthday🎉 https://t.co/DUriUgG3aD" +06/07/2018,Politicians,@SpeakerRyan,"✔Following #TaxReform, our economy is on a roll +✔Most significant pediatric cancer bill in history: LAW +✔Quality ca… https://t.co/LvFz83oNUz" +06/07/2018,Politicians,@SpeakerRyan,We remain focused on getting big things done for the American people. I’ll be talking about how House Republicans a… https://t.co/XRDMpo7hus +06/07/2018,Politicians,@SpeakerRyan,"RT @Transport: 📢 #BreakingNews: The House has overwhelmingly passed ✅ H.R.8, the Water Resources Development Act of 2018 (#WRDA) by a vote…" +06/06/2018,Politicians,@SpeakerRyan,Today was a great day for our veterans because legislation ensuring they receive quality care became the law of the… https://t.co/oVOPc4SMxr +06/06/2018,Politicians,@SpeakerRyan,"RT @WhiteHouse: President Trump signed the VA Choice and Quality Employment Act into law, authorizing $2.1 billion in additional funds for…" +06/06/2018,Politicians,@SpeakerRyan,"@EWErickson I know, Erick. It's Armageddon out there. https://t.co/0Z4t3WmVSk" +06/06/2018,Politicians,@SpeakerRyan,RT @RepMcSally: On my way to @WhiteHouse to see @POTUS sign the VA Mission Act into law. I supported this legislation b/c it will streamli… +06/06/2018,Politicians,@SpeakerRyan,There are 6.7 million open jobs in this country—a record. Unemployment is at 3.8%—the lowest in half a century. And… https://t.co/9b6JTowjbp +06/06/2018,Politicians,@SpeakerRyan,This economic momentum doesn’t happen by accident. We’ve worked hard to create an economic environment where growth… https://t.co/nwoQFtuvCJ +06/06/2018,Politicians,@SpeakerRyan,"74 years ago today, more than 150,000 Allied troops stormed the beaches of Normandy. We are forever grateful for th… https://t.co/3iaLflh30J" +06/05/2018,Politicians,@SpeakerRyan,"RT @RepFredUpton: DYK: Michigan has 288 #OpportunityZone designations including 24 in #MI06 alone. These will help spur private investment,…" +06/05/2018,Politicians,@SpeakerRyan,"We must continue to bolster our country’s #infrastructure. This year’s Water Resources Development ACT (#WRDA): + +✔E… https://t.co/hdlucjIOrr" +06/05/2018,Politicians,@SpeakerRyan,RT @JECRepublicans: Chairman @RepErikPaulsen in the @DCExaminer: How Tax Reform Uses #OpportunityZones to Lift Neighborhoods in Need: https… +06/05/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: And with our pro-growth, limited government policies like #TaxReform and smart regulation, more Americans will be able to…" +06/05/2018,Politicians,@SpeakerRyan,Great news→ The number of job openings in the U.S. now exceeds the number of unemployed Americans. There is no bett… https://t.co/iVhZxccjAV +06/05/2018,Politicians,@SpeakerRyan,"RT @RepRichHudson: As part of the landmark reform, the #TaxCutsandJobsAct created #OpportunityZones to spur economic growth & jobs in disad…" +06/05/2018,Politicians,@SpeakerRyan,"RT @Transport: The Water Resources Development Act (WRDA) works because it is: +✅ Biennial +✅ Bipartisan +✅ Targeted +✅ Transparent +✅ No E…" +06/05/2018,Politicians,@SpeakerRyan,"RT @RepDougCollins: Georgia is home to 260 new economic #OpportunityZones, which incentivize businesses to invest in local communities, hel…" +06/05/2018,Politicians,@SpeakerRyan,"Our economy is on a roll: + +3️⃣.8️⃣% unemployment (lowest in half a century) +2️⃣.7️⃣% wage increase over the last y… https://t.co/4w5rUyTk0m" +06/04/2018,Politicians,@SpeakerRyan,"RT @RepBlainePress: We’ve been working hard to get America’s economy back on the right track, and it looks like our hard work is paying off…" +06/04/2018,Politicians,@SpeakerRyan,RT @carloslcurbelo: Good news across the board but especially for Americans who’ve been out of work and those seeking to transition from pa… +06/04/2018,Politicians,@SpeakerRyan,"To tackle the multi-generational poverty trap, we must change our approach to fighting poverty. Instead of measurin… https://t.co/DEieJLasnA" +06/04/2018,Politicians,@SpeakerRyan,"From cheeseheads to cheese curds, there’s nothing more Wisconsin than cheese. Happy #NationalCheeseDay🧀 to all Wisc… https://t.co/nr5L9GpW5t" +06/04/2018,Politicians,@SpeakerRyan,"The U.S. economy is roaring: +✔Lowest unemployment in half a century +✔Wages are ⬆️ +✔Consumer spending is ⬆️ +✔Consume… https://t.co/QAR3J9yP3J" +06/03/2018,Politicians,@SpeakerRyan,"RT @HouseGOP: ✓ Hiring more workers +✓ Increasing wages +✓ Delivering new or expanded benefits + +This is how #taxreform is changing the game i…" +06/02/2018,Politicians,@SpeakerRyan,RT @RepErikPaulsen: My op-ed in today's @DCExaminer: How tax reform brings opportunity to poor neighborhoods https://t.co/KtGj0KcMwX +06/01/2018,Politicians,@SpeakerRyan,"Oregon: The state has designated 86 #OpportunityZones, with business owners becoming excited about the opportunity… https://t.co/SL6cl1mYQT" +06/01/2018,Politicians,@SpeakerRyan,"Iowa: Officials are seeing a “waiting list” of potential investors for the state’s 62 #OpportunityZones, springing… https://t.co/xi049zWQYk" +06/01/2018,Politicians,@SpeakerRyan,"West Virginia: @WVGovernor says the state’s 55 #OpportunityZones continue ""our movement forward and the hope for br… https://t.co/9zaMIts7ft" +06/01/2018,Politicians,@SpeakerRyan,Michigan: Kalamazoo County contains 5 of the state’s 288 #OpportunityZones. County leaders believe these zones will… https://t.co/GOynyCJgYO +06/01/2018,Politicians,@SpeakerRyan,Massachusetts: Gloucester community officials are hopeful that its designated #OpportunityZones will attract invest… https://t.co/tUxn7Cl7Pf +06/01/2018,Politicians,@SpeakerRyan,Illinois: 327 #OpportunityZones throughout 85 counties. @GovRauner→ “These zones include some of the most underserv… https://t.co/afJfsmN46Y +06/01/2018,Politicians,@SpeakerRyan,North Carolina: 252 of its lowest-income areas have been designated as #OpportunityZones. This is great news for th… https://t.co/dQbNRn894t +06/01/2018,Politicians,@SpeakerRyan,"The American economy is in great shape. And thanks to #TaxReform, states and local communities will start to see th… https://t.co/4jV3obeJbH" +06/01/2018,Politicians,@SpeakerRyan,"RT @HouseSmallBiz: Some #FeelGoodFriday news to wake up to: US unemployment drops to 3.8%, matching its lowest point in half a century. The…" +06/01/2018,Politicians,@SpeakerRyan,"America is making its comeback. +➡️ Unemployment is dropping +➡️ Wages are rising https://t.co/95GuSMCZop" +05/30/2018,Politicians,@SpeakerRyan,"The People’s House is not slowing down. From #RightToTry to ensuring our veterans get the care they need, we’re mov… https://t.co/V2Zcbk4GcK" +05/30/2018,Politicians,@SpeakerRyan,Great news for these patients and their families→ #RightToTry is now the law of the land! https://t.co/FVRs6lyeap +05/30/2018,Politicians,@SpeakerRyan,"RT @WhiteHouse: Today President Trump signs S. 204, the “Right to Try Act” - watch live: https://t.co/EmsdctGWtd https://t.co/NWzQYfyBrb" +05/30/2018,Politicians,@SpeakerRyan,"Growing up, I spent my summers as a camp counselor at the YMCA’s Camp Manito-wish in Wisconsin. Enjoyed meeting wit… https://t.co/DcS0U5s6LF" +05/30/2018,Politicians,@SpeakerRyan,"RT @RepKevinBrady: #TaxReform is working for Texas families and Texas businesses, and the results speak for themselves. Check out the great…" +05/29/2018,Politicians,@SpeakerRyan,"And in the House: +→ Most significant pediatric cancer research bill in history: PASSED +→ Bill supporting federal pr… https://t.co/veXvd0WOnR" +05/29/2018,Politicians,@SpeakerRyan,"Did you miss this news? Congress sent 3 major bills to the @WhiteHouse last week: + +✔#RightToTry +✔Improving… https://t.co/ZZpy3mbAQ4" +05/29/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: Americans in 48 states are going to see lower utility bills this summer because of #TaxReform. Is your state on the li… +05/29/2018,Politicians,@SpeakerRyan,This is a remarkable chronicle of the achievements of the Asian Americans and Pacific Islanders who have served in… https://t.co/YnHKCsrIVp +05/29/2018,Politicians,@SpeakerRyan,"#OTD in 1848, Wisconsin became the 30th state to join the union. Happy Birthday to the Badger State! #OnWisconsin https://t.co/NMO9O8keYo" +05/28/2018,Politicians,@SpeakerRyan,Honored to host veterans and their families from Walter Reed at the Capitol for the annual #MemorialDay concert yes… https://t.co/eYwcpzF3Bt +05/28/2018,Politicians,@SpeakerRyan,"The blessings of freedom come at a dear cost. On #MemorialDay, we honor the men and women who gave the ultimate sac… https://t.co/95dAklPIhm" +05/27/2018,Politicians,@SpeakerRyan,"In our country, religious freedom is an unwavering right. Unfortunately, that’s not the case around the world. Welc… https://t.co/AiCKBW6J4Y" +05/26/2018,Politicians,@SpeakerRyan,"RT @RepHultgren: Today, I joined the House signing of legislation which was also signed into law by the President. In it are bipartisan ref…" +05/25/2018,Politicians,@SpeakerRyan,"RT @legionindc: We wear poppies in honor every servicemember who has died in the name of liberty, freedom and democracy. Honor the fallen;…" +05/25/2018,Politicians,@SpeakerRyan,RT @RepTenney: I attended the signing of S.2155 with @SpeakerRyan. Two pieces of my leg introduced to ease burdens on community financial i… +07/02/2018,Politicians,@CarterCenter,This year’s auction raised $4.2 million! We appreciate all who participated. Check out the highest bidding item. https://t.co/saTQPLzHM0 +06/30/2018,Politicians,@CarterCenter,Want to hear about the latest activities at The Carter Center? Follow us on social media and… https://t.co/n06lkmqQ66 +06/28/2018,Politicians,@CarterCenter,"Meet Kate Orji, a community-directed distributor in Umudurudu, Nigeria since 1995. She distributes drugs to help fi… https://t.co/986fh7CDhH" +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: From 1.1million doses in 1999 to >740million in 2018 – how do we do it? #20years of #Stewardship of donated drugs to #beat… +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: Read about @Pfizer commitment to #endtrachoma. Continuing the Fight to Eliminate Trachoma https://t.co/VeNWxWt1IY #PfizerCo… +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: WATCH: 20 years of working to eliminate #trachoma made possible by #powerfulpartnerships! Find out how we’ve worked with pa… +06/27/2018,Politicians,@CarterCenter,Looking for a unique gift? This gold and ruby jewelry set will be available for auction on June 30 and all proceeds… https://t.co/Jw8IPB1r0p +06/26/2018,Politicians,@CarterCenter,"In celebration of @ITIatlanta’s #20thanniversary, learn about 4 reasons for optimism in the work to #endtrachoma, t… https://t.co/g3JSkcuAXF" +06/26/2018,Politicians,@CarterCenter,This Native American inspired quilt by artist Suzanne McMahon of North Carolina is available for auction June 30. T… https://t.co/04xitbXxZB +06/26/2018,Politicians,@CarterCenter,"RT @ITIatlanta: Partners gather in @DecaturATL this week for the +18th #trachomaexpertcommittee meeting to #beatNTDs #endtrachoma +#HumansAga…" +06/25/2018,Politicians,@CarterCenter,"Meet Magdalena Leon, an information liaison for the Carter Center's Global Access to Information Program who trave… https://t.co/M00thoc6Nl" +06/25/2018,Politicians,@CarterCenter,"Thanks to Liberia's 1st National Mental Health Policy, a new Mental Health Unit was just established at a hospital.… https://t.co/jdkkg1aLT6" +06/24/2018,Politicians,@CarterCenter,"Ever heard of an Omani khanjar? This traditional dagger, once gifted to President Carter, is available for auction… https://t.co/irIglpi2Cf" +06/23/2018,Politicians,@CarterCenter,"Want to walk a mile in Jimmy Carter’s shoes? These running shoes, autographed by Jimmy Carter, are available at auc… https://t.co/j3p33VJTlG" +06/22/2018,Politicians,@CarterCenter,"When the problems seem too big to tackle, remember that small victories matter. ""We don’t shy away from big challen… https://t.co/Xo3okwnojX" +06/22/2018,Politicians,@CarterCenter,RT @CDCGlobal: #DYK CDC started the #Guinea #worm Eradication Program and is still a @WHO Collaborating Center? Through unique partnerships… +06/22/2018,Politicians,@CarterCenter,RT @NYCuratrix: Campbell giving shout out to Jimmy Carter and @CarterCenter for their great efforts in distributing ivermectin to treat onc… +06/21/2018,Politicians,@CarterCenter,"What’s almost as good as Georgia #BBQ? These aprons, signed by President and Mrs. Carter, available at The Carter C… https://t.co/PVorv1rrJZ" +06/21/2018,Politicians,@CarterCenter,@mapintl @stevenstirling Congratulations! +06/21/2018,Politicians,@CarterCenter,RT @Sightsavers: Hope in sight: ending the infection that scrapes eyes blind. https://t.co/4eNy12njdS Via @CNN #beatNTDs +06/20/2018,Politicians,@CarterCenter,@namigeorgia @GovernorDeal @NotOKApp @BrookhavenGA_PD @GYandura From @DrEveByrd: We congratulate @GovernorDeal on h… https://t.co/ce2l671ShL +06/20/2018,Politicians,@CarterCenter,RT @NAMICommunicate: The House is voting TODAY on #HR6082. This bill will keep strong patient protections in place while allowing for bette… +06/20/2018,Politicians,@CarterCenter,https://t.co/lZFwA4aZz8 +06/20/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: Reaching #Refugees: Leaving no one behind in the fight against #NTDs→ New blog from @RTI_Intl @slisabackers on our work… +06/20/2018,Politicians,@CarterCenter,"The NY Declaration for #Refugees & Migrants expresses political will to save lives, protect rights & share respons… https://t.co/9XDB1Pr4GH" +06/18/2018,Politicians,@CarterCenter,Statement from former U.S. First Lady Rosalynn Carter on children separated from their parents at the border: https://t.co/WVg91SWutl +06/18/2018,Politicians,@CarterCenter,"2018 Carter Center Auction items are here! An original oil painting by Jimmy Carter, a lock of JFK's hair, a photog… https://t.co/adDZtApTbO" +06/17/2018,Politicians,@CarterCenter,"On #FathersDay and every day, we honor the dads and all men who help bring peace, health, and happiness to the worl… https://t.co/NxUFf5E6oX" +06/15/2018,Politicians,@CarterCenter,The @WHO Malaria Elimination Oversight Committee (chaired by Dr. Frank Richards of The Carter Center) celebrating t… https://t.co/wsEZYCL1zn +06/15/2018,Politicians,@CarterCenter,@hussmanjp @KellyCTrachoma Thank you so much @hussmanjp! We greatly appreciate your support & assistance to help t… https://t.co/g2uzfr2pwY +06/14/2018,Politicians,@CarterCenter,Want to be a Carter Center intern? June 15 (TOMORROW) is the deadline to apply for a fall internship. Please share!… https://t.co/pJedS7ksTE +06/14/2018,Politicians,@CarterCenter,Ghana is the FIRST sub-Saharan African country to be validated by @WHO for eliminating trachoma as a public health… https://t.co/lzaBiwLBz4 +06/14/2018,Politicians,@CarterCenter,"Carter Center Congratulates Ghana for Triumph over Trachoma + +""I applaud Ghana's dedicated trachoma health workers f… https://t.co/CbvIjC2nDi" +06/14/2018,Politicians,@CarterCenter,Noncommunicable Diseases: We have had ENOUGH. It’s time to move from commitment to action. #BeatNCDs… https://t.co/VaWU04F73m +06/13/2018,Politicians,@CarterCenter,Check out the new @VOANews @Africa54Tv story today on the hard work and progress by Liberia's govt. & hundreds of… https://t.co/QEh4RyvkUU +06/13/2018,Politicians,@CarterCenter,RT @Sightsavers: Ghana has eliminated trachoma! https://t.co/rEfXjQ0GuF https://t.co/uvgtE79lzb +06/13/2018,Politicians,@CarterCenter,RT @NTDworld: @WHO congratulates Ghana for eliminating trachoma & freeing millions from suffering and blindness https://t.co/iFJ95WYOn8 The… +06/13/2018,Politicians,@CarterCenter,The Carter Center strongly condemns the violent retaliation and excessive use of force against demonstrators in… https://t.co/KBsfHNkPgw +06/12/2018,Politicians,@CarterCenter,RT @lisarotondo: Fantastic announcement from @pfizer today at #DevexWorld We are reinvigorated in the fight to #EndTrachoma https://t.co/… +06/12/2018,Politicians,@CarterCenter,"The Carter Center has appointed 20 new members to its Board of Councilors, bringing total membership to 216. https://t.co/tTiaLyjHIg" +06/12/2018,Politicians,@CarterCenter,Great news! @pfizer Announces Extension of Zithromax® Antibiotic Donation Program through 2025 to Help Eliminate Wo… https://t.co/2ABNI2mo1X +06/12/2018,Politicians,@CarterCenter,@jgm41 @PointsofLight @nmbush Happy Birthday to President Bush! #41 +06/11/2018,Politicians,@CarterCenter,"The Carter Center's 2018 summer interns had a wonderful trip to Plains, Ga., over the weekend. They saw the boyhood… https://t.co/oASfb7qyEI" +06/10/2018,Politicians,@CarterCenter,Know someone who needs a rewarding internship experience? The next Carter Center INTERNSHIP DEADLINE is June 15! Ap… https://t.co/7N9VY9BRWN +06/08/2018,Politicians,@CarterCenter,"RT @jaclyncosgrove: For reporters writing about suicide, please take a moment to read over recommendations on https://t.co/UJ5PrzQ6Kv + +Also…" +06/08/2018,Politicians,@CarterCenter,Do you know the warning signs & risk factors for suicide? Learn what to look for & what to do when someone is in cr… https://t.co/Zfz6kNxSPe +06/08/2018,Politicians,@CarterCenter,RT @PDHgt: .@PDHgt @JordanRodas firma convenio con @CarterCenter para ampliar y fortalecer la colaboración conjunta promoviendo el derecho… +06/08/2018,Politicians,@CarterCenter,RT @sandykjohnson: Anthony Bourdain. Kate Spade. Words matter when reporting on #suicide. Here are some journalist guidelines from @RGPalpa… +06/07/2018,Politicians,@CarterCenter,RT @DrEveByrd: Great to spend time this week with our Colombia-based @carterfellows partner Universidad de La Sabana. Journalism fellows ar… +06/07/2018,Politicians,@CarterCenter,“Tomorrow they will come back and say the thorns have gone” – Surgeon Henry from #uganda describes the joy of pati… https://t.co/wVR7nCVEEQ +06/06/2018,Politicians,@CarterCenter,NEW on the @CarterCenter podcast: Mental health expert and @RutgersU professor & @CarterFellows journalist Dr. Caro… https://t.co/xMbyeqFxKY +06/06/2018,Politicians,@CarterCenter,RT @ssaxenageneva: Levels of public expenditure on #MentalHealth are very low. Nobody should be missing out on mental health care because o… +06/05/2018,Politicians,@CarterCenter,"RT @AmbKawar: The research & work by @CarterCenter was the gist of my meeting today with CEO Mary Ann Peters, VP @JordanDRyan of Peace Prog…" +06/05/2018,Politicians,@CarterCenter,Carter Center Syria Mapping Summary April 25- May 30: includes updates on the evacuation of southern #Damascus and… https://t.co/aloqD7KtRC +06/04/2018,Politicians,@CarterCenter,1.5 billion people around the world are affected by #NTDs. Take part in the @RSTMH and @NTD_NGOs photo contest and… https://t.co/qOUDMQ0uMr +06/04/2018,Politicians,@CarterCenter,"RT @ncdalliance: 🌏🏓🏃‍♀️🏊‍♂️💃🌎🚵‍♂️👩‍🌾🚶‍♂️⚽️🌍 +Launching today: @WHO's +Global Action Plan on #PhysicalActivity: +More people active for a healt…" +06/03/2018,Politicians,@CarterCenter,"Since 2006, The Carter Center has worked at the invitation of the government of Liberia to help educate citizens on… https://t.co/4I3RzQ8v77" +06/01/2018,Politicians,@CarterCenter,The Carter Center's Public Health Training Initiative aims to increase quality health care in rural areas to meet t… https://t.co/iXiYx0UhiW +06/01/2018,Politicians,@CarterCenter,@CarterLibrary @OurPresidents We love this! Lots of great photos on the #ArchivesRoadTrip hashtag today. Check them out! +06/01/2018,Politicians,@CarterCenter,RT @NTDworld: Eradicating #guineaworm disease- Chad to integrate all approaches to break transmission in humans and in animals with support… +06/01/2018,Politicians,@CarterCenter,"RT @FoegeAward: Global leaders honor Jimmy and Rosalynn Carter: Both over 90, they’re still helping the world’s poor https://t.co/KFs26WjXiU" +06/01/2018,Politicians,@CarterCenter,"RT @UBSoptimus: With the help of our partner @CarterCenter, Liberia is on course to reach its goal of expanding access to mental health car…" +05/31/2018,Politicians,@CarterCenter,Marginalized youth are often ripe for extremist recruitment. The Carter Center's media training & workshops are hel… https://t.co/6KeGJ4uMpk +05/30/2018,Politicians,@CarterCenter,Dr. Janice Cooper shares progress made in the Center's Mental Health Program in Liberia. With support from the govt… https://t.co/TZvn7lt2rS +05/29/2018,Politicians,@CarterCenter,"@MariguKaranja @SenatorCarter Hi, thanks for your interest. Please refer to this page on how to get involved with e… https://t.co/JH2r7Fn6I7" +05/29/2018,Politicians,@CarterCenter,"BAMAKO, MALI - Le Centre Carter, qui est l’Observateur indépendant de la mise en œuvre de l'Accord pour paix au Mal… https://t.co/BYv1FvW45M" +05/29/2018,Politicians,@CarterCenter,"The Carter Center, which is serving as Independent Observer of the implementation of the 2015 Agreement on Peace an… https://t.co/EpoqBNSCmW" +05/29/2018,Politicians,@CarterCenter,"RT @qejubileetrust: ""We can stamp out the disease & no one should be left behind, no matter where they come from"" +On #AfricaDay, @Sightsave…" +05/29/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: #Mali Peace Agreement Monitoring Committee, which includes #AU, ECOWAS, UN, EU, France, USA, UK, Algeria, Burkina Fas…" +05/28/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: Malian Parties, Signatories to Peace Agreement, need to further speed-up efforts to implement the Accord; delays in imp…" +05/28/2018,Politicians,@CarterCenter,RT @AU_PSD: Bamako: Many good things hv happened in #Mali since Peace Agreement was signed in 2015 e.g. armed conflict btw Govt & Rebel Gro… +05/28/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: The @CarterCenter, Independent Observer for implementation of the Algiers Agreement for Peace & Reconciliation in #Mali…" +05/28/2018,Politicians,@CarterCenter,The Carter Center has observed 107 elections in 39 countries and continues to develop monitoring standards and tool… https://t.co/w3gWPh3egV +05/28/2018,Politicians,@CarterCenter,"RT @abdoulayekn1: "" Le comité de suivi de l'accord (CSA) n'assume pas toutes responsabilités que lui confie l'accord, notamment la supervis…" +05/28/2018,Politicians,@CarterCenter,"RT @SangareSoule: L'observateur Indépendant de l'Accord publie son premier rapport cet après-midi à #SheratonHotel de Bamako + +Le @CarterCe…" +05/25/2018,Politicians,@CarterCenter,"On #AfricaDay, we sincerely thank our partners, volunteers, and donors for working with us to make a brighter futur… https://t.co/D6Jfuh757h" +05/25/2018,Politicians,@CarterCenter,"Daesh, the terrorist group also known as ISIS, has lost 98 % of the territory it once held in Syria & Iraq. This go… https://t.co/L9w3HjIkfo" +05/24/2018,Politicians,@CarterCenter,Los Amigos de la Carta Democrática Interamericana exhortan al estado venezolano para que restaure el orden constitu… https://t.co/LR7HQSFgFu +05/24/2018,Politicians,@CarterCenter,The Friends of the Inter-American Democratic Charter Call on Venezuelan Government to Restore Constitutional Order… https://t.co/uQLH6FTHwJ +05/24/2018,Politicians,@CarterCenter,RT @RMinghui: .@WHO DG @DrTedros called upon countries and partners for great efforts in eradicating Guinea-Worm Disease at the annual info… +05/24/2018,Politicians,@CarterCenter,RT @DrAxelrod_WHO: We hear an emerging consensus to integrate #mentalhealth into the scope of the third High-level Meeting on NCDs. We hope… +05/24/2018,Politicians,@CarterCenter,Carter Center CEO Mary Ann Peters & colleagues Jonathan Stonestreet & Greg Kehailia discuss democracy in Myanmar. (… https://t.co/W3WCngjCT7 +05/23/2018,Politicians,@CarterCenter,"The Carter Center talks peace in Myanmar. LEFT Carter Center CEO Mary Ann Peters & staff Jonathan Stonestreet, Greg… https://t.co/xNCyY9aiqB" +05/23/2018,Politicians,@CarterCenter,RT @EmoryUniversity: Emory is proud to celebrate 35 years of partnership with @CarterCenter to address some of the world's most pressing is… +05/22/2018,Politicians,@CarterCenter,"President Carter recently met with former U.S. Ambassador Bisa Williams, leader of the Center’s mission as official… https://t.co/XYui7IICvm" +05/21/2018,Politicians,@CarterCenter,"Great news for children in Africa! A Carter Center epidemiologist in Niger is a co-author of a study, published in… https://t.co/UoCdGDQvRr" +05/21/2018,Politicians,@CarterCenter,RT @WHO: LIVE from the World Health Assembly: @DrTedros addresses the Assembly #WHA71 https://t.co/qm3ltJinMl +05/21/2018,Politicians,@CarterCenter,RT @alisonbrunier: Great to see WHO's #mentalhealth team out in force for our #HealthForAll event today #LetsTalk and #LetsWalk @ssaxenagen… +05/21/2018,Politicians,@CarterCenter,"RT @KellyCTrachoma: So cool!! +@CarterCenter https://t.co/5iDbecUjiW" +05/18/2018,Politicians,@CarterCenter,"New on The Carter Center podcast: Even though the Democratic Republic of Congo is rich in natural resources, its pe… https://t.co/A6hquqw7GR" +05/18/2018,Politicians,@CarterCenter,RT @kristiwooten: Jimmy Carter and Bono get nice shout outs from @taianderson in this story about U2's fascinating intersections with Atlan… +05/18/2018,Politicians,@CarterCenter,RT @RTI_INTL_DEV: Lymphatic filariasis has been eliminated as a public health problem in 11 countries. Amazing #beatNTDs progress! Learn ho… +05/17/2018,Politicians,@CarterCenter,"After a civil war & Ebola crisis, @CarterCenter worked w Liberia's govt. & partners to ramp up mental health resour… https://t.co/NkFW2E9zoH" +05/17/2018,Politicians,@CarterCenter,"Thanks. We like it, too! https://t.co/Y1XKL0clDv" +05/17/2018,Politicians,@CarterCenter,"RT @CDC_NCBDDD: An #inclusive world includes digital accessibility. This Global Accessibility Awareness Day, think about how you can make y…" +05/16/2018,Politicians,@CarterCenter,@MariaThackerG We are proud to be involved! +05/16/2018,Politicians,@CarterCenter,@DrAxelrod_WHO @DrTedros @etiennekrug @DougBettcher @MikeBloomberg @BloombergDotOrg @IlonaKickbusch @ncdalliance… https://t.co/R9PrzpiaQk +05/16/2018,Politicians,@CarterCenter,RT @NTD_SC: No longer will #NTDs prevent children from going to school or their parents from earning a living. We are winning the fight aga… +05/15/2018,Politicians,@CarterCenter,"Though the Democratic Republic of Congo has more than half of the global supply of cobalt, its people are among the… https://t.co/46o25Q0wfI" +05/15/2018,Politicians,@CarterCenter,"""For business leaders & corporations, investing in ending #NTDs is probably the highest & most measurable return yo… https://t.co/XEIKonvXsd" +05/14/2018,Politicians,@CarterCenter,Great to have Dr. @sandrogalea from @BUSPH here last week to talk at @CarterLibrary. What should we talk about when… https://t.co/Mhwh3ptitH +05/14/2018,Politicians,@CarterCenter,RT @qejubileetrust: On #MentalHealthAwarenessWeek we are celebrating the work of @QueensLeaders in the field of #mentalhealth. Hauwa runs a… +05/14/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: #NTDs leaders coming together for open discussion with #Ethiopia's new health minister. Great to keep #beatNTDs progress… +05/13/2018,Politicians,@CarterCenter,RT @aljalilauae: #UAE @CarterCenter @CarterFellows Amna Al Haddad participated in the #DarknessIntoLight global walk today to help spread a… +05/13/2018,Politicians,@CarterCenter,"RT @ITIatlanta: On #mothersday, we celebrate #women around the world working to #endtrachoma #beatNTDs #womeninglobalhealth #happymothersd…" +05/13/2018,Politicians,@CarterCenter,Sending #HappyMothersDay wishes to moms and thanks 🙏 to all of those working to keep moms and children healthy and… https://t.co/vr0LssyOFD +05/12/2018,Politicians,@CarterCenter,"On #MothersDay, you can honor the special women in your life with a unique gift that will bring hope to the world's… https://t.co/YmdoRVpJd9" +05/11/2018,Politicians,@CarterCenter,RT @kennedysatcher: Commissioner Fitzgerald illustrates a 10 year journey (2009 -2019) of improving behavioral health care in Georgia @DBHD… +05/11/2018,Politicians,@CarterCenter,"“I have worked on mental health issues for 47 years, and I plan to make it to 50.” Rosalynn Carter today. Congratul… https://t.co/ljDi89xlug" +05/11/2018,Politicians,@CarterCenter,RT @mhagadvocacy: MH LEGACY. So proud that 3 of 4 panelist at #GaMentalHealth18 Forum have steered the @MHAofGeorgia ship. #amazingleader… +05/11/2018,Politicians,@CarterCenter,Project aware by @samhsagov is de-stigmatizing mental health disorders among youth. #GaMentalHealth18 https://t.co/hsdtzXkt6E +05/11/2018,Politicians,@CarterCenter,RT @namigeorgia: Dante McKay of @DBHDD discusses school-based mental health in Georgia #GaMentalHealth18 @CarterCenter https://t.co/ZzvZBrT… +05/11/2018,Politicians,@CarterCenter,Number one challenge is workforce shortage. #GaMentalHealth18 https://t.co/A9Kbwg12NG +05/11/2018,Politicians,@CarterCenter,We have accomplished this together in Georgia! Thanks also to Gov. Deal for leadership and state representatives.… https://t.co/s2u0g9nfrQ +05/11/2018,Politicians,@CarterCenter,Housing first model and expansion of crisis services are underway. #GaMentalhealth18 https://t.co/K6TKjHIxWD +05/11/2018,Politicians,@CarterCenter,"RT @CDC_NCBDDD: We work to understand the policies that affect access to children’s mental health care, like behavioral health integration.…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: “We have come a long way, but there is much more to do. It starts with early intervention,” Cynthia Wainscott, @DBHDD Regi…" +05/11/2018,Politicians,@CarterCenter,"Judy Fitzgerald, commissioner of DBHDD, gives context of how broken the system was in 2009. “That’s not who we are… https://t.co/ZE6HnFJeNz" +05/11/2018,Politicians,@CarterCenter,Jewell Gooding gives an update of the work that is still needed in Georgia for compliance with the state settlement… https://t.co/9w6npDsizJ +05/11/2018,Politicians,@CarterCenter,@namigeorgia We appreciate you @namigeorgia ! +05/11/2018,Politicians,@CarterCenter,Early interventions are needed to relieve the pressure on the mental health crisis system. #GaMentalHealth18 https://t.co/apV7qE5YzZ +05/11/2018,Politicians,@CarterCenter,The state of Georgia is spending $314 million more on behavior health services than in 2011. #GaMentalHealth18 +05/11/2018,Politicians,@CarterCenter,Big news from settlement agreement is the transition into homes. #GaMentalHealth18 https://t.co/uKkgzDAlHj +05/11/2018,Politicians,@CarterCenter,Cynthia Wainscott gives an update of progress made from the settlement agreement. example: now have 19 crisis apart… https://t.co/7wub3wdjq7 +05/11/2018,Politicians,@CarterCenter,What happens with the Georgia / DOJ settlement on June 30? Work continues. The 5 year agreement has been extended s… https://t.co/l16LCv9egQ +05/11/2018,Politicians,@CarterCenter,"RT @CraigLucie: This is what she told the crowd when I was at the @CarterCenter “We still have much work to do.” Congratulations, First Lad…" +05/11/2018,Politicians,@CarterCenter,"RT @DrAxelrod_WHO: Have your say on the actions that world leaders should take to #beatNCDs +A web-based public consultation on the draft re…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: ""Evidence suggests services become more affordable with parity"" Marvin So, M.P.H., @CDCgov #GaMentalHealth18 @CarterCenter…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: ""The vast majority of GA does not have child and adolescent psychiatrics"" Joseph Holbrook, Ph.D., @CDCgov #GaMentalHealth1…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: 440,000 GA children with a mental, behavioral, or developmental disorder; insufficient # of healthcare providers // Joseph…" +05/11/2018,Politicians,@CarterCenter,RT @apadiv18: Congratulations to Mrs. Carter @CarterCenter who was honored with a presidential citation from Past President Puente @AEPuent… +05/11/2018,Politicians,@CarterCenter,RT @mdouglas1313: Love that #GAMentalHealth18 kicks off with @CDC_NCBDDD presentation on how laws impact health ❤️🤓 #publichealthlaw #phlr… +05/11/2018,Politicians,@CarterCenter,The panel with CDC on science and policies with families with young children #GAMentalHealth18 https://t.co/Kqe0O8NrrL +05/11/2018,Politicians,@CarterCenter,https://t.co/5rtmCr6iPv +05/11/2018,Politicians,@CarterCenter,Getting ready to livestream the #GaMentalHealth18 Forum. Follow along here. https://t.co/PQeqyffmei +05/10/2018,Politicians,@CarterCenter,@samhsagov A question from @DrEveByrd @CarterCenter for #HeroesofHope. The Carter Center works with juvenile court… https://t.co/Vwf4SZiQtA +05/10/2018,Politicians,@CarterCenter,RT @samhsagov: Starting soon: Paolo del Vecchio will take over SAMHSA’s Twitter handle and cover tonight's #HeroesofHope event live. #Menta… +05/10/2018,Politicians,@CarterCenter,"This will be an important event on children's #mentalhealth. Please tune in and learn about interventions, caregivi… https://t.co/g9higCRXOw" +05/10/2018,Politicians,@CarterCenter,"RT @ncdalliance: Health promoting prescriptions - win-win ways to reduce #NCDs! + +Doctors in the UK are prescribing social activities to fig…" +05/10/2018,Politicians,@CarterCenter,"RT @MichelleNunn: So inspired to celebrate the #FoegeAward, the tremendous work of @MAPintl and a lifetime of extraordinary service by Rosa…" +05/10/2018,Politicians,@CarterCenter,RT @GlobalHealthOrg: #WHA71 events are now OPEN to RSVP! Check out our special events calendar to get engaged with #globalhealth partners a… +05/10/2018,Politicians,@CarterCenter,https://t.co/gENPrRzgis +05/10/2018,Politicians,@CarterCenter,"RT @TedTurnerIII: I was lucky enough to attend this great event last night honoring my good friends, President and Mrs. Carter, for their t…" +05/10/2018,Politicians,@CarterCenter,Distinguished group of health leaders on stage (and in the room). #FoegeAward https://t.co/pdtwQ72QTl +05/10/2018,Politicians,@CarterCenter,Good to hear about the #GlobalHealthATL initiative from Kornelius Bankston of Metro Atlanta Chamber at @FoegeAward https://t.co/7gHRuZxeY7 +05/10/2018,Politicians,@CarterCenter,"When @drsanjaygupta asks Dr. Bill Foege about “saving more lives than any other man in the world,” Dr. Foege says i… https://t.co/R7MMOq1dkY" +05/10/2018,Politicians,@CarterCenter,You cannot use the same approach to eradicate polio and smallpox. - Dr. Bill Foege #FoegeAward +05/10/2018,Politicians,@CarterCenter,Mental health champion Rosalynn Carter thanks @mapintl for their Liberia mental health support and for the… https://t.co/WImD6rEUv2 +05/10/2018,Politicians,@CarterCenter,Map Intl. is collecting donations tonight to help the @CarterCenter mental health work in Liberia #FoegeAward… https://t.co/TJ12RO2tmu +05/10/2018,Politicians,@CarterCenter,"RT @mapintl: Thank you, Ted Turner for joining us as one of the Honorary Co-chairs for the @FoegeAward this evening. #FoegeAward #grateful…" +05/10/2018,Politicians,@CarterCenter,President Carter receives @FoegeAward for Global Health #FoegeAward https://t.co/etAVruvGRy +05/09/2018,Politicians,@CarterCenter,"Good to see @CARE CEO Michelle Nunn, photographed here with Dr Janice Cooper who heads up @CarterCenter’s Liberia M… https://t.co/87oLgKMQ7W" +05/09/2018,Politicians,@CarterCenter,Dr. @drsanjaygupta is moderating the Bill @FoegeAward dinner tonight. Map Intl. is hosting at @delta Museum. Watch… https://t.co/fI6M4y0NYz +05/09/2018,Politicians,@CarterCenter,Carter Center CEO Mary Ann Peters mentions her gratitude to @mapintl for their partnership to bring medicine to Lib… https://t.co/Pd65zSCpn5 +05/09/2018,Politicians,@CarterCenter,Watch TONIGHT on Facebook at 7 pm ET as @mapint presents the Dr. Bill @FoegeAward to President & Mrs. Carter. Addit… https://t.co/Sf3Mp06lfq +05/09/2018,Politicians,@CarterCenter,"RT @mapintl: MAP International will honor President Jimmy and Mrs. Rosalynn Carter, co-founders of the @CarterCenter, at the Dr. Bill @Foeg…" +05/08/2018,Politicians,@CarterCenter,"Sometimes, something as simple as a radio message can change lives. Read what this Liberia woman did after hearing… https://t.co/r5tICFNWih" +05/08/2018,Politicians,@CarterCenter,RT @NTDworld: Despite war&widespread destruction-a ray of hope as ≃450 000 Yemenis get treated in the country's 1st #trachoma mass treatme… +05/08/2018,Politicians,@CarterCenter,May 10 is Children's #MentalHealthAwareness Day. Watch a live event on children impacted by trauma and recommendati… https://t.co/Uz5ioP6901 +05/07/2018,Politicians,@CarterCenter,RT @GGHAlliance: Carter Center Mental Health Forum to Address Policy in Georgia and Children’s Issues https://t.co/HFsuRSQdNf @CarterCenter +05/07/2018,Politicians,@CarterCenter,"The @CarterCenter is looking and women, violence, & elections. “We’re trying to do a better job of making sure we’r… https://t.co/PIim6jSvDn" +05/07/2018,Politicians,@CarterCenter,RT @aljalilauae: #UAE @CarterFellows @ImanBenChaibah explores the measures that universities can take to better manage their students’ ment… +05/05/2018,Politicians,@CarterCenter,Ethiopia's top notch laboratory is key in the river blindness fight. “It’s right on the campus of the Ministry of H… https://t.co/8gWBsHRVq5 +05/05/2018,Politicians,@CarterCenter,@jgm41 @GeorgeHWBush @MethodistHosp Great news and our very best wishes for President @GeorgeHWBush +05/04/2018,Politicians,@CarterCenter,"RT @alisonbrunier: #MentalHealth ‘neglected issue’ but key to achieving Global Goals, say UN chiefs https://t.co/QPMsdV7x4o #NCDs" +05/04/2018,Politicians,@CarterCenter,"Check out our final report for the October 3, 2018 Primary and December 12, 2018 General Elections in Cheyenne and… https://t.co/fEGGaOnDYN" +05/03/2018,Politicians,@CarterCenter,RT @PubHealth_NG: @Fmohnigeria's Director of Public Health Dr Evelyn Ngige formally opens the 20th session of @NTDnigeria steering committe… +05/03/2018,Politicians,@CarterCenter,RT @CarterLibrary: Tonight at 7...join us for Stuart Eizenstat and the definitive history of The Carter Administration. His book is Jimmy C… +05/03/2018,Politicians,@CarterCenter,"On #WorldPressFreedomDay, we express our sincere gratitude for the reporters who cover our peace and health work ac… https://t.co/Pq2N3leFvA" +05/03/2018,Politicians,@CarterCenter,RT @FoegeAward: MAP would like to thank @SanofiUS for their Silver level sponsorship of the upcoming Bill Foege Global Health Awards. This… +05/03/2018,Politicians,@CarterCenter,"RT @TFGH: ""C​an we do no harm?"" asks our CEO Dr. Ross when assessing new program opportunities and he posed this question to Dr. Lavery @Em…" +05/03/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: We’re winning the fight against #NTDs! Join us in celebrating the global progress to control and eliminate these disease… +05/02/2018,Politicians,@CarterCenter,Read our blog to see how two @CarterFellows creatively used social media skills to engage their followers & extend… https://t.co/WAWS1ZPO2L +05/02/2018,Politicians,@CarterCenter,@ssaxenageneva @NIMHgov @WHO Congratulations! #MentalHealthMonth +04/30/2018,Politicians,@CarterCenter,"The Carter Center works in the Middle East, North Africa, and Liberia to prevent violent extremism, build sustainab… https://t.co/zh39MbkB01" +04/30/2018,Politicians,@CarterCenter,"RT @HamptonStall: TCC April 19-25 update includes three region maps dated April 25. These are (from left to right) Daraa area, Rif Damascus…" +04/29/2018,Politicians,@CarterCenter,"As we look ahead to #MentalHealthAwareness month in May, check out this updated #Parity website on insurance for me… https://t.co/kA3OsTTdux" +04/28/2018,Politicians,@CarterCenter,"Join tonight for a panel discussion with @TFGH CEO, Dr. Dave Ross, @AgnesScott Pres., Dr. Elizabeth Kiss, and… https://t.co/3QkGzFlwUJ" +04/27/2018,Politicians,@CarterCenter,"""After numerous delays, the multinational team of investigators from the OPCW finally gained access to the area of… https://t.co/Dd2cOa0L7z" +04/27/2018,Politicians,@CarterCenter,Carter Center health staffers were honored to meet with the Prime Minister of Haiti today. The Center works with th… https://t.co/3Xu6q0q2ou +04/27/2018,Politicians,@CarterCenter,"Check out our new ""Inclusive Approaches to Preventing Violent Extremism"" report https://t.co/dfUx90CKVV" +04/26/2018,Politicians,@CarterCenter,"RT @aljalilauae: مقالاً جديداً بقلم ناهد النقبي، الحاصلة على منحة #مؤسسة_الجليلة لزمالة برنامج روزالين كارتر للصحة النفسية بعنوان""مجلس وطن…" +04/26/2018,Politicians,@CarterCenter,RT @Sightsavers: Exciting find in @NEJM: Azithromycin could save children’s lives! Great to see so many partners involved in this groundbre… +04/26/2018,Politicians,@CarterCenter,RT @HamptonStall: .@CarterCenter #Syria nationwide map from upcoming weekly update. Map is dated April 25 and arrows represent fronts of ad… +04/26/2018,Politicians,@CarterCenter,"Great news about infant mortality and a drug used for trachoma. + +https://t.co/dmi7VZGZ5Y" +04/26/2018,Politicians,@CarterCenter,A groundbreaking study in Africa will have a significant impact on public health and child mortality. “This is a pu… https://t.co/1zoN4ggKGw +04/26/2018,Politicians,@CarterCenter,"We are very sad to hear about the passing of @BrettNorman, a @Politico reporter and 2015/16 Rosalynn Carter Mental… https://t.co/jmrpf4MfLv" +04/26/2018,Politicians,@CarterCenter,"600M+ doses of Azithromycin have been distributed in the fight to end #trachoma worldwide. And now, exciting @NEJM… https://t.co/DdsGdIOj9F" +04/26/2018,Politicians,@CarterCenter,"Promising news in @NEJM: in high-mortality settings, distributing the #trachoma drug Azithromycin reduced deaths am… https://t.co/kGzmoOOqUv" +04/25/2018,Politicians,@CarterCenter,The verdict is in: We are #ReadytoBeatMalaria. Carter Center staff joined partners & talented musicians in #Haiti t… https://t.co/EnC3wbTvuS +04/25/2018,Politicians,@CarterCenter,"RT @SkollFoundation: At #SkollWF, Jimmy Carter reminded us that to achieve lasting global peace, we must look to the Universal Declaration…" +04/25/2018,Politicians,@CarterCenter,"On #WorldMalariaDay, Dr. Jean Frantz Lemoine in Haiti’s federal Ministry of Health is grateful for new ways and mus… https://t.co/3zlAQOL4QH" +04/25/2018,Politicians,@CarterCenter,"RT @CDCGlobal: On this #WorldMalariaDay, CDC Global & many #MalariaZero partners are on the verge of eliminating #malaria from Hispaniola,…" +04/25/2018,Politicians,@CarterCenter,RT @CDCFound: #ReadyToBeatMalaria with targeted interventions in the Grand Anse Department in Haiti. https://t.co/dGGjbUcxVB #MalariaZero #… +04/25/2018,Politicians,@CarterCenter,“We have the tools today to beat malaria in Hispaniola and know that the benefits of creating a malaria-free Caribb… https://t.co/EmIWjtYL7f +04/25/2018,Politicians,@CarterCenter,"RT @MalariaNoMore: We can #endmalaria in the Caribbean by 2020, but continued investment from donors and commitment is essential. Join #Mal…" +04/25/2018,Politicians,@CarterCenter,"For #WorldMalariaDay, we partnered w the Haitian Ministry of Public Health & Population, as part of the Malaria Zer… https://t.co/knamTsoOcf" +04/25/2018,Politicians,@CarterCenter,"RT @ChelseaClinton: On #WorldMalariaDay, a helpful thread from @WHO on the disease and what more we must do to defeat this scourge that sti…" +04/25/2018,Politicians,@CarterCenter,It’s #WorldMalariaDay! We’re honored to join Haiti’s First Lady and more than 300 govt. & civil society representat… https://t.co/7youTQpTE0 +04/24/2018,Politicians,@CarterCenter,We are pleased that #Guineaworm warrior Dr. Don Hopkins is on the list of The World's 50 Greatest Leaders from… https://t.co/uESaZWU769 +04/04/2018,Politicians,@farenthold,"This morning the Westside Business Association held their monthly breakfast. Today, Frost Bank presented the differ… https://t.co/sZEOMqN7bs" +04/01/2018,Politicians,@farenthold,"From my family to yours, Happy Easter! We wish you a blessed holiday with your family and loved ones. https://t.co/ZNMbq8OTzw" +03/28/2018,Politicians,@farenthold,At @UnitedCCChamber State of the City lunch with Mayor Joe McComb https://t.co/cZa3jUI8ee +03/27/2018,Politicians,@farenthold,"Today, the Veterans Band of Corpus Christi and the Nueces County Veterans Service Office commemorated the 50th anni… https://t.co/c8ustzu75y" +03/27/2018,Politicians,@farenthold,"Today, Greg McCarthy from my office, who is also an Eagle Scout, presented new Eagle Scouts Jace Stevens and Aaron… https://t.co/meFt07ve8p" +03/22/2018,Politicians,@farenthold,"Today, Luis with my office presented Teacher of the Year certificates during the Portland Chamber of Commerce Lunch… https://t.co/1Zft9wlx0r" +03/16/2018,Politicians,@farenthold,"Sad to hear of the passing of my colleague from NY, Rep. Louise Slaughter. Prayers to her family." +03/16/2018,Politicians,@farenthold,RT @GOPoversight: 🚨ICYMI: Subcommittee Chairman @farenthold visited the U.S. Virgin Islands to assess ongoing hurricane response efforts an… +03/15/2018,Politicians,@farenthold,"More than 3,600 civilian employees work at the @CCADPAO. The amendment I introduced today would help protect these… https://t.co/5bK5z0Zc7B" +03/14/2018,Politicians,@farenthold,It was a packed house at the Aransas Pass Civic Center for the State of the Port of Corpus Christi. @PoccaPort CEO… https://t.co/e6yRgoO9pw +03/14/2018,Politicians,@farenthold,"If you’re having a problem dealing with the federal government, my Red Taper Cutters will be holding mobile office… https://t.co/FFybeVJouH" +03/12/2018,Politicians,@farenthold,"HAPPENING NOW: I am chairing a @GOPoversight Subcommittee on Interior, Environment and Energy field hearing on the… https://t.co/HYz7muX5Zy" +03/12/2018,Politicians,@farenthold,"RT @GOPoversight: Live at 9:30ET➡️The Historic 2017 Hurricane Season: Impacts on the U.S. Virgin Islands. +Watch📺 https://t.co/owXK4B1Yp4 ht…" +03/10/2018,Politicians,@farenthold,"Tonight, @RockportFulton & @UnitedCCChamber held a ribbon cutting ceremony for Rockport Warriors United, a nonprofi… https://t.co/guyUFXblls" +03/09/2018,Politicians,@farenthold,Visited with Mayor Bujan today to check on Port Aransas’ recovery. Great to hear about their successes.… https://t.co/eqjM6uMdfV +03/06/2018,Politicians,@farenthold,"RT @GOPoversight: #Live: The Subcommittee on Interior, Energy, and the Environment examines the U.S. Army Corps of Engineers | Chaired by @…" +03/06/2018,Politicians,@farenthold,"This morning, the Subcommittee on the Interior, Energy and Environment, which I chair, is holding a hearing to exam… https://t.co/vYgDK7Paur" +02/27/2018,Politicians,@farenthold,"If you are having issues with the federal government, my caseworkers will be having mobile office hours tomorrow in… https://t.co/2jUuDb2O20" +02/27/2018,Politicians,@farenthold,Met with @GovAbbott today to discuss Hurricane Harvey disaster relief for #TX27 https://t.co/iB1WFM0J1i +02/15/2018,Politicians,@farenthold,Discussing the Music Modernization Act with songwriters from the @NMPAorg. Thanks for stopping by and performing so… https://t.co/2ZepEGwSWv +02/15/2018,Politicians,@farenthold,"@peterthiel is moving because of left-leaning politics in the Silicon Valley. Might I suggest Texas instead of LA? +https://t.co/pnnQxT7tmI" +02/14/2018,Politicians,@farenthold,Met with officials from @PoccaPort today to discuss the next steps for widening and deepening the port. https://t.co/svxhEakolt +02/13/2018,Politicians,@farenthold,@GovAbbott gave an update on Hurricane Harvey relief & funding at the Rockport Chamber lunch this afternoon. Last w… https://t.co/4V2h8sKHHT +02/13/2018,Politicians,@farenthold,"While this is a great step forward, this is just a proposal. I will continue working to ensure that the @PoccaPort… https://t.co/5Vte62UMjZ" +02/06/2018,Politicians,@farenthold,This morning the Corpus Christi Regional Economic Development Corporation hosted its monthly breakfast. JD & Luis f… https://t.co/eAqfyvyjCc +01/31/2018,Politicians,@farenthold,"Hope no one was seriously injured in today's train crash. Prayers for all involved. Debbie and I were not on the train, we are driving." +01/30/2018,Politicians,@farenthold,President @realDonaldTrump levels the playing field in the skies ending Qatar's unfair practices that hurt American… https://t.co/uDy0vN3Nua +01/30/2018,Politicians,@farenthold,I urge @realDonaldTrump to #ReleaseTheMemo https://t.co/XumrPlKsZR +01/30/2018,Politicians,@farenthold,"If you are having issues with the federal government, my Red Tape Cutters will be having mobile office hours today… https://t.co/vHFjgSvPRc" +01/26/2018,Politicians,@farenthold,"Congratulations to @CCADPAO on producing its 1000th T-55 engine! +https://t.co/2wjL9xBI5X" +01/24/2018,Politicians,@farenthold,Checking out progress on Hurricane Harvey recovery in Aransas County on the Rockport-Fulton Chamber of Commerce bus… https://t.co/PQ0jX0lNsl +01/22/2018,Politicians,@farenthold,"Senate Democrats, led by Chuck Schumer, unnecessarily shut down the government Friday because they put the interest… https://t.co/lYJKTzmhTj" +01/19/2018,Politicians,@farenthold,#ShutdownSchumer putting illegal aliens ahead of our military and children. +01/19/2018,Politicians,@farenthold,Signing onto a letter to urge @HouseIntelComm to #ReleaseTheMemo. +01/19/2018,Politicians,@farenthold,"As the March for Life​ begins outside the Capitol, the House just passed H.R. 4712, the Born-Alive Abortion Survivo… https://t.co/h0bJKDvsWe" +01/18/2018,Politicians,@farenthold,Corpus Christi International Airport will be holding a TSA PreCheck enrollment event from 1/23 to 1/25. https://t.co/T8w8hGHBJR +01/16/2018,Politicians,@farenthold,"Due to inclement weather, our Corpus Christi and Victoria offices are closed for the rest of the afternoon. If you… https://t.co/c5pK6AYKl1" +01/12/2018,Politicians,@farenthold,"FYI: Transitional Shelter Assistance has been extended until March 12, 2018 for those currently displaced by Hurric… https://t.co/WuJIYPQzeE" +01/11/2018,Politicians,@farenthold,"It is troubling that despite having a warrant requirement, the exceptions are so broad they eviscerate the rule. Pa… https://t.co/Umej9p96I9" +01/10/2018,Politicians,@farenthold,I'm disappointed the Rules Committee didn't accept my commonsense amendment to protect your right to privacy. Here… https://t.co/4O90z0y7KO +12/25/2017,Politicians,@farenthold,"From my family to yours - Merry Christmas! I hope your Christmas is blessed with family and friends, and may we nev… https://t.co/UBI61Vw1yU" +12/19/2017,Politicians,@farenthold,"Today, I fulfilled one of my long-term goals serving in Congress; voting for a fairer, flatter and simpler tax code… https://t.co/oYeQku8P3l" +12/12/2017,Politicians,@farenthold,Happy Hanukkah to those who celebrate! 🕎🕯️🎁 https://t.co/EowSAhTnpD +12/11/2017,Politicians,@farenthold,Congratulations again to Christian Bertoni for winning the Congressional App Challenge! #NationalAppDay https://t.co/qjmiiKwkGV +12/11/2017,Politicians,@farenthold,"While this morning’s attempted terrorist attack did not achieve its goal, it’s a harsh reminder of the radicalizati… https://t.co/8942hNCzPV" +12/07/2017,Politicians,@farenthold,"Congratulations to Christian Bertoni, a junior at Hallettsville High School for winning the 2017 Congressional App… https://t.co/EUMwTycd6L" +12/07/2017,Politicians,@farenthold,"76 years ago today, the U.S. naval base at Pearl Harbor was devastated by a surprise military strike that pushed th… https://t.co/TbzlglCo3C" +12/07/2017,Politicians,@farenthold,"Thank you @FLOTUS Melania Trump and Karen Pence for visiting the Coastal Bend, and continuing to show your support… https://t.co/5UDTkHaEYn" +12/06/2017,Politicians,@farenthold,"Just like your state-issued driver’s license is valid in any state, your concealed carry license should be too.… https://t.co/OMKDpL90ah" +11/30/2017,Politicians,@farenthold,"@RileyWi77648955 @fema @TSA @FEMA_Brock @FEMARegion6 @toddahunter Riley, give Nicole in my office a call so she can… https://t.co/A3Nl5iyS2j" +11/30/2017,Politicians,@farenthold,"Happy birthday to my colleague from South Dakota, @RepKristiNoem!" +11/30/2017,Politicians,@farenthold,"For #ComputerSecurityDay, I want to share some helpful tips to ensure that your personal information stays secure. https://t.co/q13v4aLMXc" +11/30/2017,Politicians,@farenthold,🚨 REMINDER: TODAY IS THE FINAL DEADLINE TO APPLY FOR HURRICANE HARVEY RELIEF. 🚨https://t.co/JrmclfjRYr +11/30/2017,Politicians,@farenthold,"This morning, @Transport is holding a markup on the Disaster Recovery Reform Act, legislation that reforms federal… https://t.co/Iugi4sWyX5" +11/29/2017,Politicians,@farenthold,"🚨 Tomorrow, November 30, 2017, is the last day for Texans affected by Hurricane Harvey to register for federal assi… https://t.co/thGvJgLzPj" +11/29/2017,Politicians,@farenthold,I support @POTUS @realDonaldTrump working with Chinese President Xi and other Asian leaders to continue pressuring… https://t.co/hknLpYWv2U +11/29/2017,Politicians,@farenthold,"Happening now: @GOPoversight's Interior subcommittee hearing, ""Regulatory Reform Task Force Check-In."" https://t.co/h7vEXxTMKF" +11/28/2017,Politicians,@farenthold,REMINDER: I am holding a Conference Call with Your Congressman at 6 p.m. CST. https://t.co/6TtUWyYGPO +11/28/2017,Politicians,@farenthold,TONIGHT: I will be holding a Conference Call with Your Congressman tonight at 6 p.m. CST to discuss FEMA and disast… https://t.co/gFQqGXUCD7 +11/27/2017,Politicians,@farenthold,"Happy birthday to my colleague from Arizona, @RepGosar!" +11/27/2017,Politicians,@farenthold,"Over the weekend, Former President George H.W. Bush became the longest-living president in U.S. history at 93 years… https://t.co/Ac7w4j7Oup" +11/23/2017,Politicians,@farenthold,"From my family to yours, Happy Thanksgiving! 🦃🍂👪🇺🇸https://t.co/rcynU506A4" +11/22/2017,Politicians,@farenthold,"OTD in 1995, Toy Story, the first feature-length film created entirely using CGI, was released. To Infinity and beyond!" +11/22/2017,Politicians,@farenthold,"A great new program, sponsored by The Associated Builders and Contractors, will provide veterans with apprenticeshi… https://t.co/2S7Cj0eaX2" +11/22/2017,Politicians,@farenthold,"Today, I visited with Texas State Rep. Phil Stephenson about Harvey recovery and the tax reform bill the House pass… https://t.co/AxrzEFBNYs" +11/21/2017,Politicians,@farenthold,REMINDER: The FEMA Disaster Assistance registration deadline has been extended to November 30. https://t.co/QyeTeZAlhX @fema +11/21/2017,Politicians,@farenthold,"Happy birthday to my colleague from FL, @TomRooney!" +11/21/2017,Politicians,@farenthold,Unemployment rates have hit a four decade low in Texas at 3.9%. https://t.co/qPzMUlF1HT +11/20/2017,Politicians,@farenthold,"This morning, I met with local Alzheimer's Association ambassador, Gracie Cooley. We spoke about the importance of… https://t.co/S47Ke9DFMY" +11/20/2017,Politicians,@farenthold,"It is with a heavy heart that I share some very sad news. Collin Kennedy, who recently worked as my Victoria Field… https://t.co/6t1AwWtKHd" +11/20/2017,Politicians,@farenthold,"Debbie and my thoughts and prayers are with the family of the Border Patrol officer killed over the weekend, as wel… https://t.co/PfVZB7SCDd" +11/17/2017,Politicians,@farenthold,"After reviewing the latest Office of Management and Budget (OMB) supplemental request for disaster recovery, we fin… https://t.co/nAl0FKRUgx" +11/17/2017,Politicians,@farenthold,"OTD in 1800, the United States Congress held its first session in Washington, D.C. https://t.co/Nukt1yj48A" +11/17/2017,Politicians,@farenthold,"Last night, Vanessa with my office attended the House of Palms Banquet at Faith Family Church in Victoria. Faith Fa… https://t.co/sZZMmNRMoR" +11/16/2017,Politicians,@farenthold,"Yesterday, Debbie joined U.S. Secretary of Education, @BetsyDeVosED, in Port Aransas to see the rebuilding and reco… https://t.co/yusqnJGSuQ" +11/16/2017,Politicians,@farenthold,"This pro-growth, pro-family legislation will help you keep more of your paycheck. https://t.co/BGiv9TFGuH" +11/16/2017,Politicians,@farenthold,"Today, I’m wearing purple for World Pancreatic Cancer Day. I lost my great grandmother to this horrible disease. 💜… https://t.co/bmY375fZMt" +11/16/2017,Politicians,@farenthold,It’s time to pass the first comprehensive tax reform legislation since 1986. #HR1 https://t.co/I0isN2HeDb +11/15/2017,Politicians,@farenthold,"Today, @DogBountyHunter and @MrsdogC tracked me down... to talk about H.R. 2152, the Citizens' Right to Know Act. https://t.co/MLamshE7nX" +11/15/2017,Politicians,@farenthold,"Taxpayers are already paying for this data, so they should be able to use it. https://t.co/xRCefOSXHG https://t.co/mUAAFD8pUu" +11/15/2017,Politicians,@farenthold,"Taxpayers are already paying for this data, so they should be able to use it. This legislation allows for people to… https://t.co/yIsQbcHpqt" +11/15/2017,Politicians,@farenthold,".@Cheniere’s new MOU to export LNG to China will be great for TX27 and @PoccaPort, the nation’s largest LNG export… https://t.co/OueJ37yKn8" +11/15/2017,Politicians,@farenthold,"The #TaxCutsAndJobsAct will simplify the complicated tax filing system, so they could be done on a form as simple a… https://t.co/WtRcJm1tWn" +11/15/2017,Politicians,@farenthold,H.R. 4174 will track the effectiveness of federal agencies through data analysis. https://t.co/yLLavQckmq +11/14/2017,Politicians,@farenthold,Click to watch my questioning of Attorney General Jeff Sessions at today's @HouseJudiciary Committee hearing. ⚖️ https://t.co/ucleUgvsbC +11/14/2017,Politicians,@farenthold,"This morning, Attorney General Jeff Sessions will testify before the @HouseJudiciary at an oversight hearing for… https://t.co/ZO6kS2qTRt" +11/13/2017,Politicians,@farenthold,Port Aransas ISD celebrated Veterans Day this morning to honor and thank veterans from all branches for their servi… https://t.co/sIDMMguQYs +11/13/2017,Politicians,@farenthold,"OTD in 1982, the Vietnam Veterans Memorial was dedicated in DC. The memorial wall is etched with 58,318 names. https://t.co/lfa2sPhTJO" +11/13/2017,Politicians,@farenthold,#HR3071 will require each executive agency to examine its equipment acquisition practices to save taxpayer dollars. https://t.co/d3UHaGJdoT +11/13/2017,Politicians,@farenthold,What an inspirational story about a Marine veteran who lost both of his legs in Afghanistan and just completed 31 m… https://t.co/Qlt2v63vV4 +11/11/2017,Politicians,@farenthold,"99 years ago today, at the 11th hour of the 11th day of 11th month, WWI ended. This morning at the 11th hour, the… https://t.co/jsn3qUiptA" +11/11/2017,Politicians,@farenthold,It was an honor and privilege to speak at the Victoria Veterans Day ceremony this morning. I thanked our veterans f… https://t.co/tW9iKqiP2W +11/11/2017,Politicians,@farenthold,"Today, we commemorate Veterans Day and honor those who served our country. We should always remember that we must k… https://t.co/sbZcqXCs89" +11/10/2017,Politicians,@farenthold,"Earlier today, Luis with my office attended the TAMUCC Veterans Day Ceremony, where CAPT. Steve Banta (Ret) was the… https://t.co/cbSd8jqqlC" +11/10/2017,Politicians,@farenthold,"Happy birthday to my colleague from OH, @RepBillJohnson!" +11/10/2017,Politicians,@farenthold,Happy 242nd birthday to the United States Marine Corps! 🇺🇸@USMC https://t.co/jbdg8n65OO +11/09/2017,Politicians,@farenthold,"It’s time for Congress to take a hard look at the @TSA, which can’t seem to get its act together. https://t.co/bFYQuXua4S" +11/09/2017,Politicians,@farenthold,"Happy birthday to my colleagues from NY, @RepJohnKatko, and CO, @RepTipton!" +11/09/2017,Politicians,@farenthold,"Commander Solis has touched the lives of thousands of students, instilling them with values of patriotism, loyalty,… https://t.co/8j85YRqQY5" +11/08/2017,Politicians,@farenthold,"Today, we highlight the importance of STEM fields and education. #NationalSTEMDay https://t.co/aWCTdn8nls" +11/08/2017,Politicians,@farenthold,.@HouseJudiciary is marking up H.R. 3989 which deals with the way the govt conducts surveillance. I’m working hard… https://t.co/EejUbgL7iO +11/08/2017,Politicians,@farenthold,"Congratulations to Rockport-Fulton senior and former intern, Blake Mieth! Keep up the awesome work! https://t.co/rhqbex9ydz" +11/08/2017,Politicians,@farenthold,"Congratulations to George Gonzales, his team, and everyone at @CCADPAO, who are doing an outstanding job of ensurin… https://t.co/KVu7N4nlqW" +11/08/2017,Politicians,@farenthold,"OTD in 1916, Jeanette Rankin was elected the first woman elected to Congress. https://t.co/ZCQTRQQ1fc" +11/07/2017,Politicians,@farenthold,"Today, the House votes to provide former military members with better mental health care. #HR918 https://t.co/Bi0XbLX7Ul" +11/07/2017,Politicians,@farenthold,I’m hopeful that President @realDonaldTrump’s visit to Asia will push North Korea to come to the table. https://t.co/f7XAPwma4l +11/07/2017,Politicians,@farenthold,It’s important the House passes the PAWS Act & allows the VA to examine providing vets w/PTSD with service dogs. 🐕🇺🇸 https://t.co/aqd7z0iTVH +11/07/2017,Politicians,@farenthold,"Happy birthday to my colleague from MO, @RepSamGraves!" +11/06/2017,Politicians,@farenthold,RT @TexasGameWarden: Honored that Asst Cmdr B Reeder testified last week on Capitol Hill at House Subcommittee mtg discussing combating ill… +11/06/2017,Politicians,@farenthold,.@POTUS has ordered all US flags be flown at half-staff in honor of those killed and wounded in Sutherland Springs. https://t.co/OxF7vthzfz +11/06/2017,Politicians,@farenthold,#HR3122 will make sure the VA works to protect low-income and older vets from scam artists. https://t.co/uPjfFlRrJg +11/05/2017,Politicians,@farenthold,Houses of worship should always be held sacred. My heart is w/TX28 and our fellow Texans touched by today's attack. https://t.co/1SIioIXrne +11/04/2017,Politicians,@farenthold,"Had a great lunch at Tivoli High School, where the seven seniors are holding a steak sale for Hurricane Harvey reli… https://t.co/ZffkfaYUlj" +11/03/2017,Politicians,@farenthold,@JessicaSavageCC Congratulations! +11/03/2017,Politicians,@farenthold,"Happy birthday to my colleague from WA, @HerreraBeutler!" +11/02/2017,Politicians,@farenthold,"""This pro-growth, pro-family tax reform bill will help you keep more money from your paychecks..."" https://t.co/ShhES8XDdq" +11/02/2017,Politicians,@farenthold,"RT @GOPoversight: Live now-> We examine ways to resolve the shark finning problem. +https://t.co/nuTIekOOic https://t.co/MJvL259XRo" +11/02/2017,Politicians,@farenthold,#HappeningNow: Examining the Regulation of Shark Finning in the United States. 📺⬇️ https://t.co/Az19USbKIP @GOPoversight +11/02/2017,Politicians,@farenthold,"After a wild 7 games, congrats to the Houston @astros on winning their first ever #WorldSeries! #TexasStrong ⚾🏆 https://t.co/oZbQHvJcUg" +11/02/2017,Politicians,@farenthold,"RT @Salient_CRGT: If you don’t know how customers are seeing you, you can’t fix it. - Cong. @farenthold #CXSummit @GovExec @Nextgov @Frank_…" +11/02/2017,Politicians,@farenthold,RT @Frank_Konkel: Congressman @farenthold talking about opening government’s data and improving federal customer experience at @GovExec’s #… +11/01/2017,Politicians,@farenthold,Just spoke to @Liz_Wheeler on @OANN about tax reform. Be sure to tune into her show tonight at 8 p.m central. https://t.co/lnghl3CGG7 +11/01/2017,Politicians,@farenthold,"This World Series has been exciting, but it’s time for the @astros to win it all tonight! Go ‘Stros! #WorldSeries⚾ https://t.co/VQUWvVXS7C" +11/01/2017,Politicians,@farenthold,Net neutrality hearing today @HouseJudiciary on who is best suited to regulate the internet - the @FCC or the @FTC. https://t.co/oXC8BZFwkQ +11/01/2017,Politicians,@farenthold,We must continue our fight against radicalization both at home and abroad. https://t.co/CcykUn6anu +11/01/2017,Politicians,@farenthold,"RT @SpeakerRyan: Proud to introduce a bill yesterday with @TGowdySC, @RepDerekKilmer, @farenthold, @SenBrianSchatz, & @PattyMurray. https:/…" +10/31/2017,Politicians,@farenthold,"For Howl-o-ween, unofficial DC office mascot Dale is dressing up as one of his favorite paw-liticians… https://t.co/iiv6CeI4Ry" +10/31/2017,Politicians,@farenthold,I've enjoyed my time working alongside @RepHensarling and I wish him the best of luck. https://t.co/6strEvbWdl +10/31/2017,Politicians,@farenthold,ICYMI – I spoke with @FoxNews over the weekend about the upcoming investigations into the Uranium One deal. https://t.co/BO8wcvDsSg +10/31/2017,Politicians,@farenthold,"The deadline for the Congressional App Challenge is tomorrow, be sure to get your entries in! https://t.co/xOxciiIbIh @CongressionalAC" +10/31/2017,Politicians,@farenthold,Seems like @Whataburger costumes are the Texas meme for this Halloween. 🎃 2 Stories: https://t.co/hfoyea966E https://t.co/UsSs7NZgLX +10/31/2017,Politicians,@farenthold,Happy Halloween! https://t.co/35t8aiWwWk +10/30/2017,Politicians,@farenthold,"OTD in 1938, Orson Welles broadcast his infamous radio play of The War of the Worlds. https://t.co/SmR0eqse8a" +10/27/2017,Politicians,@farenthold,"""If you're having a problem with a federal agency, call my Red Tape Cutters at 361-884-2222."" @bobjonescc" +10/27/2017,Politicians,@farenthold,I'm talking live with @bobjonescc on @1440KEYSAM. https://t.co/Ng0VS1q3Y0 +10/26/2017,Politicians,@farenthold,REMINDER: There is one week left in the 2017 Congressional App Challenge! Be sure to get those entries in! https://t.co/xOxciiIbIh +10/26/2017,Politicians,@farenthold,Thank you to the brave men and women deployed to defend our country. #dayofthedeployed +10/26/2017,Politicians,@farenthold,It looks like there may have been Russian collusion last election… involving the DNC and the Clinton Campaign. https://t.co/8GSHB5ujtC +10/25/2017,Politicians,@farenthold,"ICYMI - The video from my Conference Call With Your Congressman is viewable online. + 📹 + https://t.co/Ro8ZRBOKuU" +10/25/2017,Politicians,@farenthold,Spoke to @KendallForward of @OANN today about @HouseJudiciary & @GOPoversight's probe into DOJ actions last electio… https://t.co/TF3E6shefn +10/25/2017,Politicians,@farenthold,.@GOPoversight & @HouseJudiciary announce probe into DOJ actions during 2016 election. https://t.co/QSnPaFRypt +10/25/2017,Politicians,@farenthold,"Last night, the House passed the Otto Warmbier Act, which will enact sanctions on North Korea’s backers in China. https://t.co/Y4pGmN6hAH" +10/24/2017,Politicians,@farenthold,Go Houston Astros! ⚾ #WorldSeries @astros https://t.co/pT4PuYpR6O +10/24/2017,Politicians,@farenthold,The Social Security Administration has announced a 2% cost-of-living adjustment for 2018. https://t.co/68aJXPFLgc @SocialSecurity +10/24/2017,Politicians,@farenthold,"Corpus Christi will soon be the home to a minor league soccer team, Corpus Christi FC. https://t.co/4ZChZWq3Op" +10/23/2017,Politicians,@farenthold,"""We need to look at our government programs because there are some out there that incentivize not working over getting a job."" @1360KKTX" +10/23/2017,Politicians,@farenthold,“This budget sets up the mechanism for reconciliation that will allow tax reform.” @1360KKTX +10/23/2017,Politicians,@farenthold,I’m live on the air with Lago on @1360KKTX. Tune in! https://t.co/mmtp8Og3tH +10/22/2017,Politicians,@farenthold,"Join me LIVE on my ""Conference Call With Your Congressman,"" going on right now: https://t.co/Ro8ZRBOKuU" +10/22/2017,Politicians,@farenthold,I’ll be hosting a “Conference Call with your Congressman” tonight at 6:00 p.m. CDT. https://t.co/DJ5KsqDvdj +10/21/2017,Politicians,@farenthold,"Tomorrow, I will be hosting a “Conference Call with your Congressman” at 6:00 p.m. CDT. https://t.co/rE55aXzdVg" +10/20/2017,Politicians,@farenthold,"Happy birthday to my colleague and fellow Texan @RepRatcliffe and colleague from PA, @RepMeehan!" +10/20/2017,Politicians,@farenthold,RT @PoccaPort: Project Partnership Agreement signed for CC Ship Channel Improvement Project! @farenthold Chairman Zahn with Col Zetterstro… +10/20/2017,Politicians,@farenthold,The deadline to apply for FEMA disaster aid has been extended until 11/24/2017. https://t.co/oWD9hEcjE7 +10/20/2017,Politicians,@farenthold,REMINDER: I will be hosting a “Conference Call With Your Congressman” this Sunday night. https://t.co/h4gOQmdMgc +10/19/2017,Politicians,@farenthold,I’ll be holding a “Conference Call With Your Congressman” this Sunday at 6 p.m. https://t.co/81wyOr3wua +10/19/2017,Politicians,@farenthold,"OTD in 1781, reps of Lord Cornwallis surrendered to Washington @ Yorktown. You can see the painting of the moment o… https://t.co/DfIFFukzvm" +10/18/2017,Politicians,@farenthold,"OTD in 1954, @TXInstruments announced the first transistor radio. https://t.co/OC9UKhc9hh" +10/18/2017,Politicians,@farenthold,The Congressional App Challenge ends on November 1. Be sure to get your entries in! https://t.co/xOxciiqAQJ @CongressionalAC +10/18/2017,Politicians,@farenthold,"Happy birthday to my colleague from FL, @RepDennisRoss!" +10/17/2017,Politicians,@farenthold,My office will be holding a FEMA town hall tomorrow night in Bayside. https://t.co/Tw4eh6aFfC +10/17/2017,Politicians,@farenthold,"I attended the Victoria Partnership meeting this morning, where we discussed Harvey recovery, Victoria Regional Air… https://t.co/VaQOkq13ar" +10/17/2017,Politicians,@farenthold,Be sure to check out the great video tribute to Selena on @Google’s homepage today. https://t.co/uOOAlDs27x +10/17/2017,Politicians,@farenthold,"OTD in 1839, Mirabeau Lamar, president of the Republic of Texas, and his cabinet arrived in the new capital city of… https://t.co/pZdpUmSuwH" +10/17/2017,Politicians,@farenthold,I'm live in studio with @WadeandCarter 🎙 listen in ➡️ https://t.co/8QtzarlKsN +10/16/2017,Politicians,@farenthold,"Happy birthday to my colleague from MI, @repdavetrott, and NJ, @RepTomMacArthur!" +10/16/2017,Politicians,@farenthold,I want to know your thoughts on the GOP tax framework. Please read it and respond. https://t.co/Cz6UApTM8q +10/15/2017,Politicians,@farenthold,"Congratulations to Belinda Casanova on an outstanding year as chairman of the Ingleside Chamber, and Jane Gimler fo… https://t.co/6QSCZYuWBr" +10/13/2017,Politicians,@farenthold,Hazard mitigation specialists will be providing free repair and rebuilding advice in Nueces County until the 22nd. https://t.co/Dtc4uTnaGd +10/13/2017,Politicians,@farenthold,"Happy 242nd Birthday, @USNavy! https://t.co/5pprIpmpAJ" +10/13/2017,Politicians,@farenthold,"Happy birthday to my colleague from MO, @RepHartzler!" +10/12/2017,Politicians,@farenthold,Repealing and replacing Obamacare remains as one of my top priorities. https://t.co/tD9EN9DBWb +10/12/2017,Politicians,@farenthold,We cannot delay much needed flood insurance payments to Texans who paid for flood insurance & were ravaged by Harvey https://t.co/5QnjzvQhUx +10/12/2017,Politicians,@farenthold,A great program at @DelMarCollege is teaching future truckers how to stem the tide of human trafficking. https://t.co/VFAATcQ5WG +10/12/2017,Politicians,@farenthold,Happy #NationalFarmersDay to the hardworking farmers of TX27! https://t.co/guQTeGESEf +10/12/2017,Politicians,@farenthold,Happy birthday to my colleague from CA and @HouseForeign Chairman @RepEdRoyce! +10/12/2017,Politicians,@farenthold,I support @realDonaldTrump’s decision to withdraw the US from UNESCO until the body undergoes serious reforms. https://t.co/9TLinyYSFX +10/11/2017,Politicians,@farenthold,Congratulations @joegazin on celebrating 40 years at @kiii3news! https://t.co/8imLzqa7J4 +10/11/2017,Politicians,@farenthold,Thank you to @TeamRubicon for the help they have provided TX27 and @JaniceDean of @FoxNews for sharing their story. https://t.co/1vBxEIXX4M +10/11/2017,Politicians,@farenthold,"OTD in 1890, @TodaysDAR was founded in Washington, D.C." +10/11/2017,Politicians,@farenthold,"Happy birthday to my colleague and fellow Texan @SamsPressShop, and Tennessean, @RepChuck!" +10/10/2017,Politicians,@farenthold,"OTD in 1845, @NavalAcademy opened in Annapolis. You can find out more about academy nominations at my event tonight. https://t.co/mtjzTzkqUZ" +10/10/2017,Politicians,@farenthold,Happy #DoubleTenDay Taiwan! https://t.co/Me7HhaveDd +10/07/2017,Politicians,@farenthold,Thank you to @JaniceDean from @FoxNews for highlighting the amazing work that @TeamRubicon is doing to rebuild TX27. https://t.co/ZFDW1j9LNa +10/06/2017,Politicians,@farenthold,"Happy birthday to my good friend and colleague, @SteveScalise! It’s great to have you back!" +10/06/2017,Politicians,@farenthold,There will be a meeting for farmers and ranchers in need of disaster relief on October 12th. https://t.co/eCYiEJmc3r +10/05/2017,Politicians,@farenthold,"Yesterday, @WhiteHouse sent a formal request to Congress requesting more disaster relief for the recent hurricanes. https://t.co/GwwyyNDE3p" +10/05/2017,Politicians,@farenthold,A new tax reform plan will allow you to keep more of your money in your pocket. Find out more -> https://t.co/Cz6UAqbmZY +10/05/2017,Politicians,@farenthold,Congratulations George Gonzales for being named the Donald F. Luce Depot Maintenance Artisan of the Year! https://t.co/6ili2ZJZu4 +10/04/2017,Politicians,@farenthold,A new FEMA disaster recovery center opened yesterday at La Palmera Mall. https://t.co/cokoTrQP1x +10/04/2017,Politicians,@farenthold,The Red Cross will be reassessing applications from Port Aransas that were denied the first time. https://t.co/1nZenlisbN +10/04/2017,Politicians,@farenthold,"Happy #NationalTacoDay! Next time you’re in TX27, be sure to have some of the best tacos in Texas! https://t.co/dUtjgTNJhE" +10/04/2017,Politicians,@farenthold,I am proud to represent so many South Texans that are proud of our military and honoring fallen military aviators. https://t.co/Ys5iNjEFi9 +10/03/2017,Politicians,@farenthold,ICYMI – Click below to watch the FEMA town hall I held last Friday in Port Aransas. https://t.co/noiyCYdk5K +10/03/2017,Politicians,@farenthold,"Less than a year in, the Trump Administration has already saved $560 million by cutting bad regulations. https://t.co/lsYhDIINwp" +10/03/2017,Politicians,@farenthold,RT @Energy_Dialogue: Legislative panel @ #NAGF17 @natgas_ngsa @Energy_Dialogue @RepTipton @RepCuellar @RepBillJohnson @RepJoeBarton @farent… +10/02/2017,Politicians,@farenthold,Horrified to wake up to the news of the Las Vegas shooting. I'm praying for the victims and their loved ones. +09/29/2017,Politicians,@farenthold,FEMA is looking for temporary local workers to help out with recovery efforts. https://t.co/jI2S8Fm8Uj +09/29/2017,Politicians,@farenthold,"OTD in 1789, the 1st United States Congress adjourned at Federal Hall in New York City." +09/29/2017,Politicians,@farenthold,"On #NationalVFWDay, let's take a moment to remember the VFWs that were impacted by Hurricane Harvey. This was the V… https://t.co/AbMxl5Rcyo" +07/02/2018,Politicians,@MooreSenate,RT @HHSGov: More than half of people who died by suicide did not have a known mental health condition. These 5 steps can help someone in cr… +07/02/2018,Politicians,@MooreSenate,Best Dosti Status Quotes for Friendship day #Dosti_Status #Friendship_Status_in_hindi #best_whatsapp_status… https://t.co/mAQKssbRQr +07/02/2018,Politicians,@MooreSenate,"RT @washingtonpost: Man arrested after shouting ""womp, womp"" and pulling a gun on immigration protesters https://t.co/txnZyx38QG" +07/02/2018,Politicians,@MooreSenate,RT @HHSGov: Visiting family this summer? Take this opportunity to learn about your family health history. Here's how to get started: https:… +07/02/2018,Politicians,@MooreSenate,RT @washingtonpost: Seattle is now the first major U.S. city to ban plastic drinking straws https://t.co/7dxQX1frcK +07/02/2018,Politicians,@MooreSenate,RT @GoldwaterInst: Today's @MiamiHerald: Miami Beach has the country's highest short-term rental fines. It just got sued. https://t.co/9XI3… +07/02/2018,Politicians,@MooreSenate,@JudgeJeanine +07/02/2018,Politicians,@MooreSenate,RT @JudgeJeanine: I am a #ProudAmerican because I live in a country where truth and justice matter. 🇺🇸 https://t.co/4BF9qEw4aP +07/02/2018,Politicians,@MooreSenate,"I always thought America as corruption free country but Yesterday I watched ""13 reasons Why"" Season 2, I wanna ask.… https://t.co/Wv6VkvNhE4" +07/01/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: When people come into our Country illegally, we must IMMEDIATELY escort them back out without going through years of l…" +07/01/2018,Politicians,@MooreSenate,"RT @dbongino: Jim Acosta has become an ongoing comedy act. Yet, ironically, he thinks he’s helping rescue the broken reputation of the medi…" +07/01/2018,Politicians,@MooreSenate,RT @NASA: Scientists are using Earth to study distant worlds that orbit stars outside our solar system in an effort to answer big questions… +07/01/2018,Politicians,@MooreSenate,RT @washingtonpost: North Korea is working to conceal key aspects of its nuclear program and does not intend to fully surrender its stockpi… +07/01/2018,Politicians,@MooreSenate,RT @cs0058sc: 😡😡POPE TELLS U.S. TO OPEN BORDERS TO FLOODS OF ILLEGALS. This is no Pope. He is a left wing radical activist for globalism.… +07/01/2018,Politicians,@MooreSenate,"RT @JudgeJeanine: “Socialists want what you have. I for one work hard, pay taxes, believe in capitalism, and have no plan to move to Venezu…" +07/01/2018,Politicians,@MooreSenate,RT @DanScavino: “@GovMikeHuckabee: Trump could nominate Moses for Supreme Court and Democrats would fight it” https://t.co/5wx3nVJxvF +07/01/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Iron trainer = Iron 🐶! + +Press ▶️ for the story of @USNavy #sailor Ashly Lester and how she became a two-time winner of #…" +06/30/2018,Politicians,@MooreSenate,"RT @HHSGov: As many parts of the U.S. face an excessive heat warning, know how to spot heat stroke–and know when it's time to get medical h…" +06/30/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Working together. + +#USSWilliamPLawrence sails with Japanese 🇯🇵 ship JS Ise, Singaporean 🇸🇬 ship RSS Tenacious, Indian 🇮🇳…" +06/30/2018,Politicians,@MooreSenate,"RT @FoxBusiness: .@IvankaTrump: ""I think one of the tremendous opportunities that were seeing because the economy is so strong is that peop…" +06/28/2018,Politicians,@MooreSenate,"RT @JudicialWatch: NEW: When Maxine Waters encouraged violence against Trump Cabinet members, it wasn’t the first time she displayed behavi…" +06/28/2018,Politicians,@MooreSenate,RT @SonjaHHarris: The Left has been screaming at the top of their lungs about the children at the border being RIPPED from their mother's a… +06/28/2018,Politicians,@MooreSenate,"RT @MichaelCohen212: My family & I are owed an apology. After 2 years, 15 hours of testimony before House & Senate under oath & producing m…" +06/28/2018,Politicians,@MooreSenate,RT @JudgeJeanine: At the Statue of Liberty 🗽 https://t.co/6LLJKmPrYa +06/28/2018,Politicians,@MooreSenate,RT @realDonaldTrump: Just landed in North Dakota with @SenJohnHoeven and @RepKevinCramer. We will see everyone at Scheels Arena shortly! ht… +06/28/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Can you say #airpower? 💪🏿💪🏾💪🏻 + +@USAirForce #F15E Strike Eagles with the 4th Fighter Wing get in formation behind a #KC13…" +06/28/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Thank you North Dakota. Together, we are MAKING AMERICA SAFE AND GREAT AGAIN! #MAGA https://t.co/6Am9n6px8I" +06/28/2018,Politicians,@MooreSenate,Do you remember when you joined Twitter? I do! #MyTwitterAnniversary https://t.co/fQmVezlzXa +06/27/2018,Politicians,@MooreSenate,"RT @bigleaguepol: Proving once again that President Trump’s election was truly consequential! + +BREAKING: Justice Kennedy Retiring from Sup…" +06/27/2018,Politicians,@MooreSenate,"RT @washingtonpost: Have you ever watched a fireworks show in America? + +Chances are this Chinese businessman supplied it, but many have nev…" +06/27/2018,Politicians,@MooreSenate,"RT @USUN: ""The United States will not allow #Iran’s violations and destructive actions to go unchecked, and we urge members of the Security…" +06/27/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Today, I was thrilled to join student leaders from Colleges and Universities across the country... https://t.co/OQp3Nc…" +06/26/2018,Politicians,@MooreSenate,RT @HHSGov: Many people become more forgetful as they age. How can you tell the difference between mild forgetfulness and serious memory pr… +06/26/2018,Politicians,@MooreSenate,"RT @DeptofDefense: #OTD: June 26 marks the 70th anniversary of the beginning of the #BerlinAirlift, America’s first major test of resolve d…" +06/26/2018,Politicians,@MooreSenate,RT @DeptofDefense: Raise it up! A @USNavy #sailor raises the First Navy Jack aboard #USSMountWhitney while arriving in #Germany 🇩🇪 for Kiel… +06/26/2018,Politicians,@MooreSenate,"RT @NASA: We’re sending a helicopter to Mars! As the first helicopter to ever fly on a planetary body other than Earth, our #Marscopter wil…" +06/26/2018,Politicians,@MooreSenate,"RT @FoxBusiness: .@RepMaxineWaters moments ago: ""I have not called for the harm of anybody. This @POTUS has lied again, when he's saying th…" +06/25/2018,Politicians,@MooreSenate,RT @TheEconomist: Its objectives include freeing women from violence and furthering their political participation and economic empowerment… +06/25/2018,Politicians,@MooreSenate,"RT @HHSGov: When you learn new things, you engage your #brain. Find out some ways you can challenge your brain and stay on top of your game…" +06/25/2018,Politicians,@MooreSenate,"RT @CNN: Shares of Campbell Soup rose more than 10% Monday following a report hat said Kraft Heinz is ""very interested"" in trying to buy th…" +06/25/2018,Politicians,@MooreSenate,RT @TheEconomist: How can we make that happen? Read what @margotwallstrom proposes is the solution #OpenFuture https://t.co/rpkdT5FzSB http… +06/25/2018,Politicians,@MooreSenate,RT @theoverheadwire: Weekend's Most Read #1: Stopping the decline of transit in rich countries https://t.co/cfTM525RW7 @TheEconomist +06/25/2018,Politicians,@MooreSenate,"RT @JenNongel: I’M + PROUD + TO + BE + EVERYTHING…" +06/25/2018,Politicians,@MooreSenate,RT @seanhannity: https://t.co/BKlak9AHOL +06/25/2018,Politicians,@MooreSenate,RT @FoxNews: Sprint car driver Jason Johnson dead after racing crash https://t.co/z3e08q4uvQ +06/25/2018,Politicians,@MooreSenate,RT @FoxNews: Dow down on trade concerns @AmericaNewsroom https://t.co/rp0I1bGdKG +06/25/2018,Politicians,@MooreSenate,RT @libertarianism: We are currently living through a revolution in education. https://t.co/cRblIUJMRM +06/25/2018,Politicians,@MooreSenate,RT @FoxBusiness: Trump Space Force could fuel next trillion-dollar economy: Morgan Stanley https://t.co/AI0uHqMv7V +06/25/2018,Politicians,@MooreSenate,RT @ABC: NEW: Trump ally and Blackwater founder Erik Prince has provided special counsel Robert Mueller with “total access to his phone and… +06/25/2018,Politicians,@MooreSenate,"RT @ABC: As the government plans Arctic refuge drilling, activists vow to continue protests: “The survival of that place is really a part o…" +06/25/2018,Politicians,@MooreSenate,RT @beinlibertarian: https://t.co/xi6FRIXb6H +06/25/2018,Politicians,@MooreSenate,RT @CNN: What 40 years of 'Space Invaders' says about the 1970s -- and today https://t.co/UaA2bwlx88 via @CNNStyle https://t.co/Xc9H8djgd8 +06/24/2018,Politicians,@MooreSenate,RT @Reuters: Kane fires England to record 6-1 win against Panama https://t.co/p0UWLZN8dR https://t.co/EoJ2fJglU4 +06/24/2018,Politicians,@MooreSenate,RT @derekalberts1: Expect a spotless stadium after this clash #JAPSEN https://t.co/gLKVVXCKbt +06/24/2018,Politicians,@MooreSenate,"RT @TheBarmyArmy: YESSS!!!! + +Jos Buttler's incredible century takes us to a series whitewash over Australia. GET IN!! 👏🙌 + +#ENGvAUS https://…" +06/24/2018,Politicians,@MooreSenate,RT @DonaldJTrumpJr: Don Jr. storms the midterms https://t.co/E6NYQQVfrN via @politico +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: If Saturn were as close as the moon https://t.co/qed2ZVbTWl +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Pacific City https://t.co/zIktd89Kf1 +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Takhlakh Lake https://t.co/rgl1PfwBUL +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Oregon https://t.co/YtDhAl64k1 +06/24/2018,Politicians,@MooreSenate,"RT @HHSGov: Did you know that nearly 1 in 5 men smoke cigarettes? If you quit smoking, it can help reduce the risk of cancer, heart disease…" +06/24/2018,Politicians,@MooreSenate,RT @NASA: Mystery solved! A new study explains why two glaciers that flow side by side in northwest Greenland are melting at radically diff… +06/24/2018,Politicians,@MooreSenate,RT @TeamTrump: #TeamTrump in Ft. Worth for round table discussions #Texas on #TrumpTour #DFW #MAGA 🇺🇸 https://t.co/StqbPdauw9 +06/24/2018,Politicians,@MooreSenate,RT @foxandfriends: HEGSETH VS. HENRY: @PeteHegseth and @edhenry went head-to-head in yesterday’s After the Show Show - see who won! https:/… +06/24/2018,Politicians,@MooreSenate,RT @TeamTrump: #TeamTrump in #Midland #TX for round table discussions. June #TrumpTour #MAGA 🇺🇸 https://t.co/fu0fFUGm45 +06/24/2018,Politicians,@MooreSenate,"RT @tabithanaylor: It's Pink Day! A great day to encourage everybody to wear at least a little bit of pink – guys included! + +Do you think i…" +06/24/2018,Politicians,@MooreSenate,RT @NASAhistory: Did you see the #supermoon that happened #today in 2013? Supermoons happen when a full Moon occurs at or near the Moon's p… +06/24/2018,Politicians,@MooreSenate,RT @realDonaldTrump: Major Wall Street Journal opinion piece today talking about the Russian Witch Hunt and the disgrace that it is. So man… +06/24/2018,Politicians,@MooreSenate,RT @DHSgov: Fact Sheet: Zero-Tolerance Prosecution and Family Reunification https://t.co/Mnymy5xXvj +06/24/2018,Politicians,@MooreSenate,RT @DeptofDefense: Getting the job done. A #C17 aircraft drops equipment for the @173rdAbnBde Combat Team during an airborne insertion exer… +06/23/2018,Politicians,@MooreSenate,Took too Much... https://t.co/86yNYgNog1 +06/23/2018,Politicians,@MooreSenate,Happy Birthday https://t.co/b9UG3okdc8 +06/23/2018,Politicians,@MooreSenate,RT @foxandfriends: “The separation here is from the facts”: White House reacts to TIME magazine’s misleading cover https://t.co/WV09opOw9a +06/23/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Drudge Report “OBAMA KEPT THEM IN CAGES, WRAPPED THEM IN FOIL” We do a much better job while at the same time maintai…" +06/23/2018,Politicians,@MooreSenate,RT @r_wibberley: What an absolute privilege it has been spending the last 2 days at the 38th Session of the Human Rights Council in Geneva… +06/23/2018,Politicians,@MooreSenate,RT @Newsweek: Cynthia Nixon calls ICE a “terrorist organization” led by “egomaniacal” Donald Trump https://t.co/14gKM0qSw3 https://t.co/fge… +06/23/2018,Politicians,@MooreSenate,RT @TomArnold: Michael Cohen didn’t say Me & him were teaming up to take down Donald Trump! Michael has enough Trump on his plate. I’m the… +06/23/2018,Politicians,@MooreSenate,"RT @PalmerReport: Donald Trump’s day so far: + +- Michael Cohen with Tom Arnold +- Insane Trump press conference +- UN condemns his child “tort…" +06/23/2018,Politicians,@MooreSenate,"RT @MaddowBlog: ""The way that Donald Trump describes what's happening down on the border in Washington, D.C. is just about as far removed f…" +06/23/2018,Politicians,@MooreSenate,"RT @Lawrence: If Donald Trump can be president, Tom Arnold can be an investigative reporter. + + @TomArnold joins @TheLastWord tonight 10pm." +06/23/2018,Politicians,@MooreSenate,"RT @TheRickWilson: Line I wanted to use in this article but can't fit: + +""Donald Trump is a soft creature, indolent, cosseted, and overfed.…" +06/23/2018,Politicians,@MooreSenate,"RT @VP: Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the @WhiteHouse today. @POTUS…" +06/23/2018,Politicians,@MooreSenate,"RT @NASA: This week, our administrator @JimBridenstine attended the third National Space Council meeting, we announced an action plan for n…" +06/23/2018,Politicians,@MooreSenate,RT @RealJoshReddick: What a day today was. Took advantage of an off… https://t.co/S0zG3ARiXW +06/23/2018,Politicians,@MooreSenate,RT @Scavino45: REQUESTED by family members after their private meeting and visit to the Oval Office - which took place before public remark… +06/23/2018,Politicians,@MooreSenate,"RT @FoxBusiness: Steel maker JSW to build new plant, invest $500M after Trump tariffs https://t.co/pR3rIVvvZG" +06/23/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Thunderbolt line. ✈️⚡ + +Four #A10 Thunderbolt II aircraft fly next to a #KC135 Stratotanker during #SaberStrike18 in Latv…" +06/27/2018,Politicians,@MittRomney,"Thank you for your gracious support, Rep. Mike Kennedy, and your offer to counsel on Health policy. You show that w… https://t.co/ZCnZJ8XqRZ" +06/24/2018,Politicians,@MittRomney,Here’s where I stand on the Trump Agenda; I appreciate the argument made by those who believe we should stay silent… https://t.co/n7UDn1fVRx +06/22/2018,Politicians,@MittRomney,"With Krauthammer now absent, the nation is bereft a full measure of character and integrity. Ann and I mourn the lo… https://t.co/8i4Zi3e90K" +06/18/2018,Politicians,@MittRomney,I agree that we need a more compassionate answer. https://t.co/3NOPEF0G3o +06/15/2018,Politicians,@MittRomney,".@AnnRomney and I exercised our right to vote by mailing in our ballots. Utahns, remember to vote by mail before Ju… https://t.co/csi641fbmH" +06/09/2018,Politicians,@MittRomney,"Charles’ greatness derives not only from his brilliant mind, blinding insights, and searing commentary; it is that… https://t.co/0zUwGdv3WH" +06/06/2018,Politicians,@MittRomney,RT @DeseretNews: LIVE: @MittRomney to keynote #UtahInnovationSummit followed by award ceremony including lifetime achievement award for LDS… +06/01/2018,Politicians,@MittRomney,"It took some cajoling, but I got a famous Utahn to star in my commercial. https://t.co/AAPxanibTp" +06/01/2018,Politicians,@MittRomney,Congratulations @DougWrightShow on 40 years at @kslnewsradio and a well-deserved retirement. Our conversations over… https://t.co/TbsmjgCpLU +05/28/2018,Politicians,@MittRomney,"""Greater love hath no man than this, that a man lay down his life for his friends."" (John 15:13) Today, we salute t… https://t.co/fCZThaSu0C" +05/26/2018,Politicians,@MittRomney,RT @Romney4Utah: Wonderful day at the Scandinavian Festival in Ephraim! #TeamMITT #utpol @ephraimcity https://t.co/q6Y06VBq3a +05/23/2018,Politicians,@MittRomney,RT @JAofUtah: What an amazing #jainaday at Edison with all our outstanding VIP #volunteers and a special thanks to @MittRomney for presenti… +05/15/2018,Politicians,@MittRomney,RT @Romney4Utah: HAPPENING FRIDAY: A conversation with Mitt & Ann about how principled leadership has guided them through challenging times… +05/15/2018,Politicians,@MittRomney,Prayers for the First Lady and for Harry Reid. Hoping for healing and recovery for both. +05/14/2018,Politicians,@MittRomney,"Robert Jeffress says “you can’t be saved by being a Jew,“ and “Mormonism is a heresy from the pit of hell.” He’s s… https://t.co/wwylmlryQN" +05/13/2018,Politicians,@MittRomney,"Ann and I reflect daily on the lessons our mothers, Lois and Lenore, taught us about life, faith, and family. Today… https://t.co/Meno7umxt6" +05/12/2018,Politicians,@MittRomney,"John McCain makes America great. Father, grandfather, Navy pilot, POW hero bound by honor, an incomparable and irre… https://t.co/U5Qdw78Mtn" +05/08/2018,Politicians,@MittRomney,My statement on the Iran Nuclear Deal. https://t.co/ypqBpaHp6H +04/23/2018,Politicians,@MittRomney,RT @Romney4Utah: MUST LISTEN: @MittRomney's first interview on Saturday's convention results and his plan for the US Senate GOP Primary in… +04/22/2018,Politicians,@MittRomney,Thank you to all the delegates who hung in there with us all day at the Convention. I appreciate the support I rece… https://t.co/O5eLKC9gNo +04/17/2018,Politicians,@MittRomney,"Barbara raised a family of service & character, stood by her beloved husband in the best & worst of times, and spok… https://t.co/K23OQgDBmo" +04/17/2018,Politicians,@MittRomney,"Celebrating Ann's birthday at home with some of our favorite ""neighbors"". Happy birthday, sweetie! https://t.co/jM3yoyhpZ3" +04/15/2018,Politicians,@MittRomney,"Barbara, thank you for your faith and family. Thank you for your conviction, character and fortitude. Thank you for… https://t.co/tlEwqzNQsu" +04/11/2018,Politicians,@MittRomney,"Love of country compelled Paul Ryan to accept the Speakership, a role he alone could fill at a critical time. He un… https://t.co/udQhRBpMVb" +04/05/2018,Politicians,@MittRomney,Tonight at 5p @AnnRomney & I will be at @Hale_Theater in Sandy. Hope you can join us! https://t.co/eMpZxXiBRD #TeamMITT +04/01/2018,Politicians,@MittRomney,"He is risen! He is risen! +Tell it out with joyful voice. +He has burst his three days’ prison; +Let the whole wide ea… https://t.co/eXpxkLHZ22" +03/22/2018,Politicians,@MittRomney,49 years today with the love of my life. https://t.co/GX6eQT60ye +03/21/2018,Politicians,@MittRomney,Incredible caucus night here in Holladay and across the state. Thank you to all who participated in their neighborh… https://t.co/XwduDmGPTZ +03/20/2018,Politicians,@MittRomney,I encourage all Utahns to attend and participate in tonight’s caucuses. Visit https://t.co/3xlRCOw1rp to find your… https://t.co/WUqrp5RoLP +03/19/2018,Politicians,@MittRomney,RT @AnnRomney: Out encouraging women to run as delegates at tomorrow's caucuses. We need more women's voices to be heard at the April Conve… +03/15/2018,Politicians,@MittRomney,"Today, I visited the office of LG @SpencerJCox to officially file for the US Senate race. In the month since I anno… https://t.co/uZY4lAyRGY" +02/21/2018,Politicians,@MittRomney,"Billy Graham lifted eyes toward heaven and instilled heaven’s values in hearts. The world mourns this man of character, this man of God." +02/20/2018,Politicians,@MittRomney,Thank you Mr. President for the support. I hope that over the course of the campaign I also earn the support and en… https://t.co/PyeE0ZhCD9 +02/19/2018,Politicians,@MittRomney,Never too many cooks in the kitchen. https://t.co/FWM33vHpT3 +02/17/2018,Politicians,@MittRomney,Out knocking doors this morning I met Paul and Orva Johnson—was thrilled to earn their support! https://t.co/879nuNRDJX +02/17/2018,Politicians,@MittRomney,Thanks Mayor Vanleeuwen for the warm welcome at Jeremiah’s Restaurant this morning! https://t.co/lyGmW1d3YZ +02/16/2018,Politicians,@MittRomney,Wonderful meeting with @UVU students today. It’s great to see Utah's college students politically active! https://t.co/5vE8tAbGjJ +02/16/2018,Politicians,@MittRomney,This morning I went to @GreenAcresDairy to see their operation and hear about the agricultural issues our hardworki… https://t.co/ivYx32tGdK +02/16/2018,Politicians,@MittRomney,RT @Romney4Utah: Join #TeamMITT. Check out https://t.co/24T6VWkXb1 to get involved and sign up for updates. +02/16/2018,Politicians,@MittRomney,I am running for United States Senate to serve the people of Utah and bring Utah's values to Washington. https://t.co/TDkas6gD2p +02/15/2018,Politicians,@MittRomney,"Out of respect for the victims and their families, I will not be making an announcement tomorrow about the Senate race. (2/2)" +02/15/2018,Politicians,@MittRomney,"As a father and grandfather, my heart aches for the victims of today’s tragic events. My prayers go out to all of t… https://t.co/hniQWm3nOS" +02/09/2018,Politicians,@MittRomney,"I stand in admiration of our Olympians' determination, sportsmanship, and patriotism. May they compete at their bes… https://t.co/WuRSZjaQnU" +02/02/2018,Politicians,@MittRomney,"With Jon Huntsman’s passing, we lose a Lion of Utah. Ann and I will profoundly miss our good friend’s broad smile,… https://t.co/y0D5qJ0i2s" +02/01/2018,Politicians,@MittRomney,Looking forward to making an announcement on February 15th about the Utah Senate race. https://t.co/OLXWZWREEK +01/29/2018,Politicians,@MittRomney,"RT @mcuban: It's time for @twitter to confirm a real name and real person behind every account, and for @facebook to to get far more string…" +01/24/2018,Politicians,@MittRomney,"Over the years, I’ve witnessed the courage of athletes in Olympic Games but I’ve never seen greater Olympic courage… https://t.co/XXvfSEQXxJ" +01/15/2018,Politicians,@MittRomney,The poverty of an aspiring immigrant’s nation of origin is as irrelevant as their race. The sentiment attributed to… https://t.co/7K23QCtXVG +01/03/2018,Politicians,@MittRomney,"Thomas S. Monson walked where Jesus walked, lifting the downtrodden, comforting the wounded, healing the sick, brig… https://t.co/1uVRBLi0xb" +01/02/2018,Politicians,@MittRomney,"I join the people of Utah in thanking my friend, Senator Orrin Hatch for his more than forty years of service to ou… https://t.co/PkJQLpAnPM" +12/31/2017,Politicians,@MittRomney,Profoundly moving to watch those seeking freedom in Iran. Patriots afar remind us of the patriots who won our own f… https://t.co/ZoRvRn4X7Y +12/25/2017,Politicians,@MittRomney,Merry Christmas from our family to you and your family. https://t.co/kep6SnNysO +12/14/2017,Politicians,@MittRomney,"Putin today blames US politics for icy relations. Get real: It was Russia invading sovereign nations, propping up d… https://t.co/8K2Y0pMOCz" +12/05/2017,Politicians,@MittRomney,"By sanctioning Russia, Olympic officials place honor and integrity above money and politics. Russia under Putin is… https://t.co/M2PqwbGGSf" +12/04/2017,Politicians,@MittRomney,Roy Moore in the US Senate would be a stain on the GOP and on the nation. Leigh Corfman and other victims are coura… https://t.co/HaUCH8TE9W +12/02/2017,Politicians,@MittRomney,"A very big week for Utah’s own Senator @OrrinHatch with tax reform, Bears Ears reversion, and a presidential visit." +11/28/2017,Politicians,@MittRomney,"RT @CharityVision: If 1,000 share this & donate at least $1, then we can give eyesight to THIS MANY PEOPLE! Donate at https://t.co/6AKC2tlH…" +11/24/2017,Politicians,@MittRomney,"RT @AnnRomney: On Thanksgiving, you can never have too many cooks in the kitchen! https://t.co/dVODluEBlF" +11/11/2017,Politicians,@MittRomney,"On this Veterans Day, let’s honor our servicemen and women and take a moment to reflect on the sacrifices they make to ensure our liberty." +11/10/2017,Politicians,@MittRomney,"Innocent until proven guilty is for criminal convictions, not elections. I believe Leigh Corfman. Her account is to… https://t.co/J7YLdKENtq" +11/08/2017,Politicians,@MittRomney,"Congratulations, Congressman-elect Curtis! https://t.co/5njtnbWCiH" +11/06/2017,Politicians,@MittRomney,RT @AnnRomney: Happy to vote by mail today for John Curtis for Congress. https://t.co/2KynT599Cx +11/06/2017,Politicians,@MittRomney,"Praying for the people of Sutherland Springs, who today were met with tremendous evil in their most sacred space." +10/31/2017,Politicians,@MittRomney,Overwhelmed today with thought of the pain and heartache suffered by victims and families in New York. God bless these fellow Americans. +10/17/2017,Politicians,@MittRomney,"Ran against him, sometimes disagree, but proud to be a friend of @SenJohnMcCain: hero, champion of character and last night, Lincolnesque." +10/12/2017,Politicians,@MittRomney,"Uncontrolled fires, loss of lives & property = failure of prime govt responsibility, underinvestment in helos, planes, personnel, systems." +10/02/2017,Politicians,@MittRomney,Ann and I pray for the dead and wounded in the Las Vegas massacre. Grateful for the heroes who risked their lives to help the innocent. +09/28/2017,Politicians,@MittRomney,Congratulations to Jon Huntsman Jr. on confirmation as Ambassador to Russia. His experience and clear-eyed resolve are badly needed. +09/25/2017,Politicians,@MittRomney,"Just spoke w/ fmr Gov @luisfortuno51: “PR on brink of humanitarian disaster."" USVI too. DC must put aside controversies, prioritize rescue." +09/25/2017,Politicians,@MittRomney,"Patriot, Uniter, Leader, Hero. https://t.co/Lf4WTO301f" +09/19/2017,Politicians,@MittRomney,"President Trump gave a strong and needed challenge to UN members to live up +to its charter and to confront global challenges." +09/15/2017,Politicians,@MittRomney,Harvard's about-face deserves credit; not easy to admit being wrong. +09/14/2017,Politicians,@MittRomney,"Well done, Mike. And abject shame on Harvard. https://t.co/SfI1HxDpdD" +08/30/2017,Politicians,@MittRomney,Harvey's historic devastation has been met with historic Texas compassion and resolve. A true testament to American character. +08/18/2017,Politicians,@MittRomney,"Having created a natl inflection point of consequence, POTUS must apologize & repudiate the racists. Full statement: https://t.co/6QXd9LWIE3" +08/16/2017,Politicians,@MittRomney,"No, not the same. One side is racist, bigoted, Nazi. The other opposes racism and bigotry. Morally different universes." +08/13/2017,Politicians,@MittRomney,"Racial prejudice, then hate, then repugnant speech, then a repulsive rally, then murder; not supremacy, barbarism." +07/20/2017,Politicians,@MittRomney,".@SenJohnMcCain’s patriotism and courage are vital to the nation. With the fearful news tonight, Ann and I pray for his recovery." +07/18/2017,Politicians,@MittRomney,"Spoke this morning with @SenJohnMcCain re: his health, tax reform, Syria. A true ""Timex hero”: He takes a licking and keeps on ticking." +07/04/2017,Politicians,@MittRomney,"Celebrating independent speech, worship, and association; independence from autocracy; these defining rights and more won at great cost." +07/01/2017,Politicians,@MittRomney,"RT @AnnRomney: This week, our granddaughter returned from her mission in France. So glad to have her home & so proud of her work over the p…" +06/21/2017,Politicians,@MittRomney,Congrats to @karenhandel on a big win in #ga6 tonight! We need more leaders like Karen in Washington. +06/14/2017,Politicians,@MittRomney,.@AnnDRomney and I are praying for a speedy recovery for @SteveScalise and those injured this morning’s shooting in Alexandria. +06/14/2017,Politicians,@MittRomney,"Congratulations to my friend @EdWGillespie on his #VAgov primary win. Here's to electing strong, conservative leaders in November." +06/10/2017,Politicians,@MittRomney,"#E2Summit17 is in the books. Thanks to our speakers, attendees, and volunteers for another great year in Deer Valle… https://t.co/jbAg0jVoBL" +06/09/2017,Politicians,@MittRomney,Follow @E2Summit for official updates from #E2Summit17 in Park City. https://t.co/lxQDaMPUDN +05/31/2017,Politicians,@MittRomney,Affirmation of the #ParisAgreement is not only about the climate: It is also about America remaining the global leader. +05/30/2017,Politicians,@MittRomney,"Our politics have become too base, too low, & too vulgar, but Kathy Griffin's post descends into an even more repugnant & vile territory." +05/29/2017,Politicians,@MittRomney,"Today, we remember the fallen, who, as Pres Reagan noted, were all different ""but they shared this in common: They loved America very much.""" +05/14/2017,Politicians,@MittRomney,"#happymothersday to @AnnDRomney, who with 24 grandchildren, continues to be an example of strength and grace to a 2… https://t.co/Fu4qyKhv9C" +04/27/2017,Politicians,@MittRomney,This year's @CharityVision project took us to Indonesia. https://t.co/6BBXvGgcd0 +04/16/2017,Politicians,@MittRomney,RT @AnnDRomney: From our family to yours: wishing you peace and joy as we celebrate the good news. https://t.co/9YFHNROgGG +03/28/2017,Politicians,@MittRomney,"Ann’s best-seller ""In This Together"" is out today in paperback. All her proceeds go to neurologic disease research. https://t.co/1dCYKTV5qd" +03/21/2017,Politicians,@MittRomney,Celebrating our 48 years of marriage with some of its products. https://t.co/geOGezQOpA +03/15/2017,Politicians,@MittRomney,I'm a fan of proposed Deputy Treasury Secretary Jim Donovan. A qualified person of integrity and a friend for many years. +02/28/2017,Politicians,@MittRomney,Thanks to the WashU students and @DeanNancyStaudt for hosting me this afternoon. Really enjoyed your thoughtful que… https://t.co/sJgyMt0jmJ +02/27/2017,Politicians,@MittRomney,"Congrats to my great-nephew, @BYUCougars center Eric Mika, on his 29 points and the win Saturday vs. Gonzaga. https://t.co/QxT5tiwkdK" +02/14/2017,Politicians,@MittRomney,"Happy Valentine’s Day to my sweetheart, Ann. https://t.co/EsUbFRfdAh" +02/13/2017,Politicians,@MittRomney,I strongly urge the Senate to confirm Andy Puzder as our next Secretary of Labor. https://t.co/Cc15lDS3V6 +02/08/2017,Politicians,@MittRomney,Thought-provoking plan from highly respected conservatives to both strengthen the economy & confront climate risks: https://t.co/U6kmrQTPth +02/07/2017,Politicians,@MittRomney,RT @SenJohnMcCain: Happy 105th birthday to my wonderful mother Roberta - we love you mom! https://t.co/63E912Imub +02/01/2017,Politicians,@MittRomney,An important and welcome choice: Judge Gorsuch will help restore much needed faithfulness to the Constitution. +01/16/2017,Politicians,@MittRomney,"MLK inspired my mom: ""We must forever conduct our struggle on the high plane of dignity and discipline."" https://t.co/HaBg7s7Qco" +01/08/2017,Politicians,@MittRomney,Betsy DeVos is a smart choice for education secretary. My op-ed in today’s @washingtonpost: https://t.co/5LmmbrHSt1 +12/25/2016,Politicians,@MittRomney,From our family to yours: Merry Christmas. https://t.co/9n2omOws7M +12/13/2016,Politicians,@MittRomney,It was an honor to have been considered for Secretary of State of our great country. https://t.co/FC9tB7rdoy +12/11/2016,Politicians,@MittRomney,Honored today to help ordain my grandson Wyatt a deacon in my church. https://t.co/NND17FQKpF +12/08/2016,Politicians,@MittRomney,"As a boy, John Glenn lifted my eyes to the heavens. Today, they welcome him back." +12/01/2016,Politicians,@MittRomney,"Thank you, @NHJennifer for your steady hand guiding the NH GOP. Your leadership will be missed." +11/28/2016,Politicians,@MittRomney,No greater joy than making discoveries together with grandchildren. https://t.co/NxIYsog6lC +11/24/2016,Politicians,@MittRomney,RT @AnnDRomney: Thankful today for a full house and full heart. https://t.co/KGfOO4LWW2 +11/15/2016,Politicians,@MittRomney,One of America's finest journalists gone far too soon. We will miss Gwen Ifill's brilliant voice and kind heart. +11/11/2016,Politicians,@MittRomney,Let us today honor the sacrifice and service of our heroic men and women in arms. #VeteransDay +11/09/2016,Politicians,@MittRomney,"Best wishes also for the GOP victors in the House, Senate & statehouses: may you govern with the high seriousness befitting our great nation" +11/09/2016,Politicians,@MittRomney,Best wishes for our duly elected president: May his victory speech be his guide and preserving the Republic his aim. +11/04/2016,Politicians,@MittRomney,Great to spend some time in Arizona in support of my friend @SenJohnMcCain. We need his leadership in the US Senate. https://t.co/BeI0R8sZe9 +11/04/2016,Politicians,@MittRomney,RT @thatgirlmarg: Gov. Romney: We need John McCain and the get-it-done-attitude #AZSen https://t.co/t9YWuoM8lP +10/27/2016,Politicians,@MittRomney,RT @LegalReform: WATCH: @MittRomney 's speech at the @LegalReform #ILRSummit yesterday at the @USChamber: https://t.co/3goeavBi1M https://… +10/26/2016,Politicians,@MittRomney,"Be sure to head to the polls for GOP Senate, House and statehouses; they are essential to defend and advance constitutional conservatism." +10/08/2016,Politicians,@MittRomney,Hitting on married women? Condoning assault? Such vile degradations demean our wives and daughters and corrupt America's face to the world. +09/26/2016,Politicians,@MittRomney,"I shook the hand of a legend, a man whose life left the world larger and kinder. https://t.co/Fd9zo5vYz0" +09/13/2016,Politicians,@MittRomney,"My good friend Ed Conard has a new book out today. Whether you agree with him or not, it’s a fascinating read. https://t.co/liNMtIZhhW" +09/11/2016,Politicians,@MittRomney,"Fifteen years on, we remember the innocent who perished on 9/11, and salute the brave who have served in defense of our nation since." +09/07/2016,Politicians,@MittRomney,I hope voters get to see former GOP Governors Gary Johnson and Bill Weld on the debate stages this fall. +07/08/2016,Politicians,@MittRomney,"May we stop seeing people as black, white, brown or wearing blue & see them instead as husbands, wives, sons, daughters & children of God." +07/04/2016,Politicians,@MittRomney,"Today, let’s pay tribute to the Founders who declared our independence and to the brave men and women who have fought to maintain it." +07/02/2016,Politicians,@MittRomney,I pray that the beacon that was Elie Wiesel will long guide us away from the shoals of hatred and racism. +06/24/2016,Politicians,@MittRomney,"Bob Semonian, the very proper publisher of the Improper Bostonian, passed away today. We will miss our fine friend." +06/22/2016,Politicians,@MittRomney,"Saving the Senate got a big boost with @marcorubio's decision today. Thank you, Marco for fighting on." +06/13/2016,Politicians,@MittRomney,"As we mourn the victims of Islamic terror in Orlando, Ann & I say a special prayer for the LGBT community that was the focus of this attack." +06/12/2016,Politicians,@MittRomney,Deeply saddened to learn of the horrific attack in Orlando. Our hearts go out to those who lost loved ones. +06/12/2016,Politicians,@MittRomney,"Just when I thought I was out, they pull me back in. #GiveSight25 https://t.co/wsZjPudxMJ" +06/12/2016,Politicians,@MittRomney,Glad to be on this side of the ropes for @CharityVision Fight Night 2016. #GiveSight25 https://t.co/R1qiQH2uxi +06/11/2016,Politicians,@MittRomney,"Thanks to our volunteers and speakers for making #E2Summit16 fun, informative and memorable. https://t.co/lWR8c9Iri7" +06/01/2016,Politicians,@MittRomney,"I know David French to be an honorable, intelligent and patriotic person. I look forward to following what he has to say." +05/30/2016,Politicians,@MittRomney,"""Today is the day we put aside to remember fallen heroes and to pray that no heroes will ever have to die for us again."" - Ronald Reagan" +05/11/2016,Politicians,@MittRomney,"Mr. Trump, tear down that tax wall. https://t.co/pQUZAJuE0k" +05/05/2016,Politicians,@MittRomney,"God be with you, Bob, till we meet again at Jesus' feet. https://t.co/0VVfCQTOW5" +05/04/2016,Politicians,@MittRomney,"Thanks to @tedcruz for making a fight for conservatism, American leadership and freedom." +04/22/2016,Politicians,@MittRomney,"RT @davidgregory: DG PODCAST: catch my revealing interview with @MittRomney. We talk 2016, faith, and more. https://t.co/OLFY8HxL9r https:/…" +04/18/2016,Politicians,@MittRomney,God bless you for a full and rapid recovery. https://t.co/AVfBGgQvFq +04/16/2016,Politicians,@MittRomney,"Happy birthday, @AnnDRomney, from me and from some of your favorite grandsons. https://t.co/QRB0PfGMGP" +04/09/2016,Politicians,@MittRomney,"With Barbara Anderson's passing, the Bay State has lost a tireless champion for tax fairness. https://t.co/NfgWbSjl89" +03/27/2016,Politicians,@MittRomney,"Thankful this day and every day for Jesus Christ who conquered death and gave us the Way, the Truth and the Life." +03/25/2016,Politicians,@MittRomney,"As a fmr missionary & a father & grandfather of missionaries, this is simultaneously heartbreaking & heartwarming. https://t.co/TKDzKVm8xn" +03/23/2016,Politicians,@MittRomney,President Obama's response is mind numbing. ISIS attacks are existential to every person who is killed! Stand with #Brussels. +03/18/2016,Politicians,@MittRomney,"RT @nytdavidbrooks: No, Not Trump, Not Ever https://t.co/E76Or5VaLu" +03/18/2016,Politicians,@MittRomney,"This week, in the Utah nominating caucus, I will vote for Senator Ted Cruz. https://t.co/e2lAkWrt4l" +03/08/2016,Politicians,@MittRomney,Trump has the best words. Take it from him. @AmFutureFund https://t.co/SC86cTts6E +03/06/2016,Politicians,@MittRomney,"With the passing of Nancy Reagan, God and Ronnie have finally welcomed a choice soul home. https://t.co/NjiOBT9xoQ" +03/03/2016,Politicians,@MittRomney,"If Trump had said 4 years ago the things he says today about the KKK, Muslims, Mexicans, disabled, I would NOT have accepted his endorsement" +03/03/2016,Politicians,@MittRomney,"Full remarks from today's speech are up on @Medium +https://t.co/SvtLxETPgd" +03/03/2016,Politicians,@MittRomney,ICYMI: Watch my speech on the state of the 2016 presidential race https://t.co/uJmonN0IwD +03/03/2016,Politicians,@MittRomney,He's playing the American public for suckers: He gets a free ride to the White House and all we get is a lousy hat. (2/2) +03/03/2016,Politicians,@MittRomney,"Here's what I know. Donald Trump is a phony, a fraud. His promises are as worthless as a degree from Trump University. (1/2)" +03/03/2016,Politicians,@MittRomney,...endurance & high purpose & into the will to defeat the enemies of freedom. Our anger was transformed into energy directed for good. (2/2) +03/03/2016,Politicians,@MittRomney,"I understand the anger Americans feel today. In the past, our presidents channeled that anger, and forged it into resolve, into... (1/2)" +03/03/2016,Politicians,@MittRomney,A person so untrustworthy and dishonest as Hillary Clinton must not become president. But a Trump nomination enables her victory. +03/03/2016,Politicians,@MittRomney,"She compromised our nat'l secrets, dissembled 2 families of the slain & jettisoned her most profound beliefs 2 gain presidential power (2/2)" +03/03/2016,Politicians,@MittRomney,"On Hillary Clinton's watch at the State Department, America's interests were diminished in every corner of the world. (1/2)" +03/03/2016,Politicians,@MittRomney,Trump relishes any poll that reflects what he thinks of himself. But polls are also saying that he will lose to Hillary Clinton +03/03/2016,Politicians,@MittRomney,All of them bear the responsibility of being an example for our children and grandchildren. (3/3) +03/03/2016,Politicians,@MittRomney,@MittRomney The president and yes the nominees of the country's great parties help define America to billions of people. (2/3) +03/03/2016,Politicians,@MittRomney,The president of the United States has long been the leader of the free world. (1/3) +03/03/2016,Politicians,@MittRomney,"Trump says he admires Vladimir Putin, while he has called George W. Bush a liar. That is a twisted example of evil trumping good." +03/03/2016,Politicians,@MittRomney,"Of remaining candidates the only serious policy proposals 2 deal w broad range of nat'l challenges we confront come from Cruz,Rubio & Kasich" +03/03/2016,Politicians,@MittRomney,"But if we make the right choices, America's future will be even better than our past and better than our present." +03/03/2016,Politicians,@MittRomney,the growing assertiveness of China and the nuclear tests of North Korea confirm that we live in troubled and dangerous times. (2/2) +03/03/2016,Politicians,@MittRomney,"At home, poverty persists and wages are stagnant. The horrific massacres of Paris and San Bernardino, the aggressions of Putin... (1/2)" +03/03/2016,Politicians,@MittRomney,https://t.co/c4mx17MQWw +03/03/2016,Politicians,@MittRomney,"Watch my speech on the state of the 2016 presidential race LIVE on Facebook at 11:30 AM, ET https://t.co/Si380LXWTB" +03/01/2016,Politicians,@MittRomney,Another #bombshell? Trump should authorize the @nytimes to release the transcript of his ed board interview. #WhatIsHeHiding +02/29/2016,Politicians,@MittRomney,A disqualifying & disgusting response by @realDonaldTrump to the KKK. His coddling of repugnant bigotry is not in the character of America. +02/28/2016,Politicians,@MittRomney,@realDonaldTrump Facts are stubborn. I released my back taxes on 1/24/12. No excuse for hiding your back taxes. https://t.co/P9vRhmEcF3 +02/26/2016,Politicians,@MittRomney,".@realDonaldTrump got it wrong: I released back taxes in Jan '12, early in primary process--just like he should do. https://t.co/VrLgnEnNI7" +02/26/2016,Politicians,@MittRomney,.@realDonaldTrump taxes for last 4+ years are still being audited. There are more #bombshells or he would release them. +02/26/2016,Politicians,@MittRomney,"No legit reason @realDonaldTrump can't release returns while being audited, but if scared, release earlier returns no longer under audit." +02/25/2016,Politicians,@MittRomney,"Methinks the Donald doth protest too much. Show voters your back taxes, @realDonaldTrump. #WhatIsHeHiding" +02/24/2016,Politicians,@MittRomney,"RT @TeamCavuto: Watch the full @MittRomney interview with Neil today on 'Your World': +https://t.co/Xrkn6KLci0 https://t.co/rp4mQMeUwh" +02/22/2016,Politicians,@MittRomney,The case for waiting for the next president to name the next SCOTUS nominee was well expressed by Joe Biden. https://t.co/CofEma012N +02/21/2016,Politicians,@MittRomney,.@JebBush followed his family's pattern of putting country above himself. I am proud to call him a friend. https://t.co/AxtPzgtqac +02/16/2016,Politicians,@MittRomney,"New president should nominate new SCOTUS justice. Dems may complain, but they should talk to @chuckschumer. https://t.co/Hydf5Gtq5k" +02/10/2016,Politicians,@MittRomney,Courage and unwavering determination have defined the @CarlyFiorina campaign. Thank you for standing up and standing tall. +02/10/2016,Politicians,@MittRomney,Thank you @ChrisChristie for pushing the race towards real and honest solutions. Your candor and integrity on the trail will be missed. +02/04/2016,Politicians,@MittRomney,Hey @ABC: put @CarlyFiorina on the debate stage! She got more Iowa votes than John and Chris. Don't exclude only woman. +01/29/2016,Politicians,@MittRomney,"RELEASE: My remarks from last night: “Happy birthday to you; happy birthday to you; happy birthday @SpeakerRyan…"" https://t.co/GnDXgmjn8h" +01/24/2016,Politicians,@MittRomney,"4 years ago today, I released my taxes; became issue. 2016 candidates should release taxes before first contests." +01/13/2016,Politicians,@MittRomney,".@nikkihaley criticized the anger, not the policy. It was courage you can count on." +01/11/2016,Politicians,@MittRomney,"Praying for @TheBostonPride's Denna Laing and her family. To support the Denna Laing Fund, go to https://t.co/rsBg6oRCbx. #14Strong" +01/08/2016,Politicians,@MittRomney,".@tedcruz is a ""natural born citizen."" Obama too. Even George Romney. This isn't the issue you're looking for." +12/28/2015,Politicians,@MittRomney,#SteinEriksen was a champion for the 2002 Olympic Winter Games just as he himself was a champion Olympic athlete. https://t.co/R5TphMfebb +12/24/2015,Politicians,@MittRomney,Merry Christmas from our family to yours. https://t.co/rbwDf8MJmD +12/21/2015,Politicians,@MittRomney,"While the race will miss his unique voice of truth and experience, the @LindseyGrahamSC fight must carry on." +12/18/2015,Politicians,@MittRomney,Important distinction: thug Putin kills journalists and opponents; our presidents kill terrorists and enemy combatants. +12/13/2015,Politicians,@MittRomney,"Great day with @TeamMcCain, @SenJohnMcCain and @CindyMcCain in Mesa, AZ yesterday. https://t.co/DeWybuEIih" +12/09/2015,Politicians,@MittRomney,"RT @AmericaRising: Just Launched: @AmericaRising's new ad ""Leading From Behind."" Watch it here: +https://t.co/FPYROYSvP4" +12/08/2015,Politicians,@MittRomney,"On Muslims, @realDonaldTrump fired before aiming. @SpeakerRyan is on target: https://t.co/vgK4dll0A0" +11/28/2015,Politicians,@MittRomney,Praying for those struck by the tragic violence in Colorado Springs. Grateful for bravery of first responders. +11/27/2015,Politicians,@MittRomney,"#Thanksgiving w all but @tromney and fam, who are on the other coast. Easy to get lost in this crew! #WheresWillard? https://t.co/5UTdVmaBrw" +07/02/2018,Politicians,@Schwarzenegger,I am proud to support @NotPoliticians and citizens around the country who are rising up to terminate gerrymandering… https://t.co/qahzZVx80X +07/02/2018,Politicians,@Schwarzenegger,"Welcome, @KingJames. https://t.co/Gy7JywiUwu" +06/29/2018,Politicians,@Schwarzenegger,"I know that my career would have been impossible without the media. But more importantly, journalists put their liv… https://t.co/FywYgvWvj6" +06/29/2018,Politicians,@Schwarzenegger,"Some days, I don't agree with the media. Some days, they are a fantastic sparring partner. But every day, journalis… https://t.co/eezIyqsqUC" +06/28/2018,Politicians,@Schwarzenegger,"I know the 80s were great for both of us, @realDonaldTrump. But when it comes to energy, our country needs to look… https://t.co/Uj8wZjl7le" +06/28/2018,Politicians,@Schwarzenegger,"So, @realDonaldTrump, if you want to be an action hero, let's retrain those coal miners for new, safer jobs. Don't… https://t.co/dJodqIa6H7" +06/28/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: You can’t bring back coal, just like you can’t bring back Blockbuster. So let’s train those coal miners for safer, bett…" +06/28/2018,Politicians,@Schwarzenegger,"And this, about California's 4.9% economic growth (more than double the US GDP growth): https://t.co/RB4XNncLnV" +06/28/2018,Politicians,@Schwarzenegger,"Read this, about California oil workers who have transitioned to better jobs in clean energy: https://t.co/CIAtQz3YKS" +06/28/2018,Politicians,@Schwarzenegger,"You can’t bring back coal, just like you can’t bring back Blockbuster. So let’s train those coal miners for safer,… https://t.co/jLJqYySVmZ" +06/28/2018,Politicians,@Schwarzenegger,@realchefrush Thank you for all you do! +06/25/2018,Politicians,@Schwarzenegger,RT @Crowdpac: Today's #SCOTUS rulings in the gerrymandering cases in Texas & North Carolina made it clear – we must continue the fight for… +06/22/2018,Politicians,@Schwarzenegger,This is shameful. Everyone involved in the cover-up should be out of a job by Monday. No American should be tricked… https://t.co/1yDogKmkDh +06/22/2018,Politicians,@Schwarzenegger,#NationalSelfieDay wouldn’t be complete without a cameo by Whiskey. https://t.co/JRyjVvbYrv +06/21/2018,Politicians,@Schwarzenegger,RT @happycath5: The Supreme Court won't decide on extreme partisan gerrymandering for now. But the war for fair districts is far from over.… +06/20/2018,Politicians,@Schwarzenegger,RT @Crowdpac: Here's how @Schwarzenegger is continuing the fight for #FairDistricts after this week's Supreme Court ruling: https://t.co/HW… +06/20/2018,Politicians,@Schwarzenegger,RT @SteveWestly: This misinformed hype that California’s top-two primary election system doesn’t work is centered in out-of-sync priorities… +06/20/2018,Politicians,@Schwarzenegger,The administration is right that we need to fix our immigration system. But if anybody is going to be in a cage whi… https://t.co/K7wnb3Mf11 +06/20/2018,Politicians,@Schwarzenegger,"As an immigrant, I know the magnetic power of America's greatness. As a former border Governor, I know the importan… https://t.co/HjGgeNXCOE" +06/19/2018,Politicians,@Schwarzenegger,Thank you. We don't have to agree on every policy to agree that politicians picking their voters is a scam that nee… https://t.co/btlduDOlNt +06/19/2018,Politicians,@Schwarzenegger,RT @AdamBKushner: Don’t listen to the establishment critics. California’s open primary works. By @Schwarzenegger and @RepRoKhanna https://t… +06/19/2018,Politicians,@Schwarzenegger,Establishment politicians don't like the uncertainty of California's open primary. But there isn't a voter in Ameri… https://t.co/CTDnNJO20I +06/19/2018,Politicians,@Schwarzenegger,RT @OpenPrimaryUSA: “It’s not about moving legislators in any one political direction. It’s about moving them closer to the voters.” @Schwa… +06/18/2018,Politicians,@Schwarzenegger,The fight continues. I've launched a @Crowdpac campaign to support the active redistricting reform campaigns in Mic… https://t.co/0WTmUVnDEU +06/18/2018,Politicians,@Schwarzenegger,"RT @MoveCAFWD: .@Schwarzenegger & @RoKhanna ""don’t bench-press the same amount"" but agree CA's top-two primary ""works best because it puts…" +06/18/2018,Politicians,@Schwarzenegger,RT @PostOpinions: Don’t listen to the establishment critics. California’s open primary works. https://t.co/i1Mr5b4ytB by @Schwarzenegger &… +06/18/2018,Politicians,@Schwarzenegger,"RT @rachaelmyrow: ""To those of you who are disheartened, let me remind you that California attempted to reform our redistricting process fo…" +06/18/2018,Politicians,@Schwarzenegger,"We elect our representatives to be public servants, not party servants. It's time to take California's open primary… https://t.co/AkJwZhxXyl" +06/18/2018,Politicians,@Schwarzenegger,"To those of you who are disheartened, let me remind you that California attempted to reform redistricting four time… https://t.co/ApsWwLVFZ0" +06/18/2018,Politicians,@Schwarzenegger,"RT @FSBarry: The bipartisan case for top two voting, via @Schwarzenegger & @RoKhanna -- ""uncertainty and increased competition is a feature…" +06/18/2018,Politicians,@Schwarzenegger,While I am disappointed that the Supreme Court has chosen not to decide on the merits of extreme partisan gerrymand… https://t.co/MbdFebnqGN +06/18/2018,Politicians,@Schwarzenegger,"RT @PostEverything: Don’t listen to the establishment critics, say former governor Arnold @Schwarzenegger and Rep. @RoKhanna. California’s…" +06/18/2018,Politicians,@Schwarzenegger,"Proud to join @RoKhanna to talk @OpenPrimaryUSA in the @washingtonpost. For those of us who embrace top-two, it’s n… https://t.co/RsojlJjpie" +06/18/2018,Politicians,@Schwarzenegger,RT @RoKhanna: Proud to make the case for open primaries with ⁦@Schwarzenegger⁩. ⁦@BernieSanders⁩ is correct that closed primaries are a tot… +06/12/2018,Politicians,@Schwarzenegger,"Happy birthday, @GeorgeHWBush. You’re my friend, my mentor, my hero. You’re a model of public service for all of us… https://t.co/64lcX4KNPY" +06/12/2018,Politicians,@Schwarzenegger,@realchefrush Your service to our country and work on behalf of veterans inspires me. I can’t wait! +06/12/2018,Politicians,@Schwarzenegger,"Chef Rush, the next time I’m in DC, we absolutely have to get together. https://t.co/GlgUS6EExe" +06/11/2018,Politicians,@Schwarzenegger,RT @WSJ: Arnold Schwarzenegger says the lesson from both his successes and failures is to 'never do anything that you're not really prepped… +06/11/2018,Politicians,@Schwarzenegger,RT @CLourosa: Arnold @Schwarzenegger says both his successes and failures have taught him to ‘never do anything that you’re not really prep… +06/11/2018,Politicians,@Schwarzenegger,"RT @chriskornelis: “Just like in bodybuilding, don’t go in the competition if you haven’t done the reps. The same is with anything else. Do…" +06/08/2018,Politicians,@Schwarzenegger,RT @wef: Do you agree with @Schwarzenegger when it comes to the economy and environment? Watch his session at #ism18: https://t.co/SpXwTOI4… +06/07/2018,Politicians,@Schwarzenegger,RT @wef: Arnold @Schwarzenegger is taking over our Instagram story. Watch here: https://t.co/vZqBjKt5QT https://t.co/swP5oaL1vD +06/07/2018,Politicians,@Schwarzenegger,"RT @Davos: ⚡️ “Arnold Schwarzenegger's suggestions for a cleaner world” - A conversation with @Schwarzenegger at #ism18 +https://t.co/B3XGd…" +06/06/2018,Politicians,@Schwarzenegger,You can catch up on my conversation at the @Davos meeting in this great thread! https://t.co/MbNFevuVRX +06/06/2018,Politicians,@Schwarzenegger,RT @wef: Live now: A conversation with Arnold Schwarzenegger on driving global climate action and the role of business in shaping the Fourt… +06/06/2018,Politicians,@Schwarzenegger,"Thank you, thank you, thank you to everyone who came to our @ASASafterschool fundraiser at my house and helped us r… https://t.co/81wVzLm3LT" +06/05/2018,Politicians,@Schwarzenegger,"Californians, whether you are to the left of me, to the right of me, or in the center, get out and vote. This is yo… https://t.co/43A5TSwWcy" +06/05/2018,Politicians,@Schwarzenegger,Nope. https://t.co/Db5Uwm25iT https://t.co/SHW7MJiwHc +06/05/2018,Politicians,@Schwarzenegger,"@GovHawaii Congratulations on your clean energy leadership, Governor! I'm so proud of Hawaii and I can't wait for my next visit." +06/05/2018,Politicians,@Schwarzenegger,"Congratulations to @GovHawaii and +@chrisleeforhi for your bold clean energy action! I hope you inspire leaders all… https://t.co/efGxyiKKmw" +06/05/2018,Politicians,@Schwarzenegger,RT @chrisleeforhi: @Schwarzenegger Hawai’i becomes 1st state committing to full carbon neutrality by 2045 as @GovHawaii signs our bill I in… +06/01/2018,Politicians,@Schwarzenegger,"Second workout of the day! The surgery comeback is all about reps, reps, reps. #thereisnomagicpill https://t.co/lBBJJ7rI98" +06/01/2018,Politicians,@Schwarzenegger,"If Republicans won't stand up for California's right to clean our air, and they won't stand up against regulations… https://t.co/JZYcle35Go" +06/01/2018,Politicians,@Schwarzenegger,"I eagerly await the administration’s regulations protecting pagers, fax machines, and Blockbuster. https://t.co/ykLJHT4OvK" +06/01/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: 2017 US GDP Growth: 2.3% +Your ""Huge"" Goal: 3% +2017 CA GDP Growth: 4.9% +Look at the scoreboard, Mr. President. Instead…" +05/31/2018,Politicians,@Schwarzenegger,Focus on your job. Focus on building the infrastructure this country needs. We don’t need your endorsements. We are… https://t.co/2kqeeESU7H +05/31/2018,Politicians,@Schwarzenegger,https://t.co/iPCOv89zun +05/31/2018,Politicians,@Schwarzenegger,"At the same time jobs and our economy boom, we have instituted the most stringent environmental protections. We pro… https://t.co/RdQdVQBcJ3" +05/31/2018,Politicians,@Schwarzenegger,We in California have doubled the growth rate that you have produced so far. We are the fifth largest economy in th… https://t.co/hnXYpnNWbk +05/31/2018,Politicians,@Schwarzenegger,"2017 US GDP Growth: 2.3% +Your ""Huge"" Goal: 3% +2017 CA GDP Growth: 4.9% +Look at the scoreboard, Mr. President. Inst… https://t.co/vuMdzdPJFo" +05/30/2018,Politicians,@Schwarzenegger,"The comeback continues. Training every day, doing my reps, reps, reps. Your support has really pumped me up, so I r… https://t.co/PbEWxrK5VT" +05/30/2018,Politicians,@Schwarzenegger,"Thank you @PEspinosaC for tagging me in. We have already terminated the plastic bags, so to #BeatPlasticPollution,… https://t.co/jMK2VnGrS8" +05/28/2018,Politicians,@Schwarzenegger,Today I am filled with gratitude for the selflessness of our men and women in uniform who have sacrificed to make t… https://t.co/JCmsZmabwT +05/16/2018,Politicians,@Schwarzenegger,@Klitschko You’re looking fantastic my friend! +05/16/2018,Politicians,@Schwarzenegger,I’m a simple guy so I have a simple remedy when people like Pruitt ignore or hide pollution: if you don’t have a pr… https://t.co/Eh063ICHwY +05/15/2018,Politicians,@Schwarzenegger,"RT @PEspinosaC: ""Climate Change is not a political issue, it is a health issue"", says @Schwarzenegger at Austrian World Summit #R20AWS htt…" +05/15/2018,Politicians,@Schwarzenegger,"With one of my heroes, @JaneGoodallInst, at our Austrian World Summit. Such an amazing leader! https://t.co/RQYpBRAHCH" +05/15/2018,Politicians,@Schwarzenegger,"Denmark PM @larsloekke emphasis on wind energy shows us that there are so many renewable, clean options. Denmark so… https://t.co/vXMRb4hJPJ" +05/15/2018,Politicians,@Schwarzenegger,"Love hearing from Norway PM @erna_solberg that even though their country is oil-rich, their domestic energy comes f… https://t.co/9ANnd4Hyr8" +05/15/2018,Politicians,@Schwarzenegger,President @vanderbellen and Chancellor @sebastiankurz joining together at @R20_AWS sends a message. The environment isn’t a political issue. +05/15/2018,Politicians,@Schwarzenegger,UN Secretary General @antonioguterres is inspirational and he is so right that a clean energy future is a profitable path! @R20_AWS +05/15/2018,Politicians,@Schwarzenegger,"RT @UN_Vienna: .@antonioguterres calls for global action to confront climate change in address to #AustrianWorldSummit, w/ @sebastiankurz,…" +05/15/2018,Politicians,@Schwarzenegger,RT @MarosSefcovic: All set for @R20_AWS. TUNE IN for its impressive opening now - https://t.co/VSt4jdtvTa. #ClimateAction https://t.co/BxuL… +05/15/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: Don’t miss the Austrian World Summit tomorrow. You can watch live, and I’ll be taking over the @R20_AWS twitter account…" +05/14/2018,Politicians,@Schwarzenegger,RT @UN_Spokesperson: A look behind-the-scenes with @antonioguterres @Schwarzenegger & @sebastiankurz as they prepare to talk climate action… +05/14/2018,Politicians,@Schwarzenegger,"Don’t miss the Austrian World Summit tomorrow. You can watch live, and I’ll be taking over the @R20_AWS twitter acc… https://t.co/hH2vj7hKaT" +05/12/2018,Politicians,@Schwarzenegger,RT @Schwarzenegger: .@SenJohnMcCain deserves respect. We must stretch for our better angels instead of falling toward our lowest instincts.… +05/12/2018,Politicians,@Schwarzenegger,.@SenJohnMcCain deserves respect. We must stretch for our better angels instead of falling toward our lowest instin… https://t.co/2ePolgugIu +05/09/2018,Politicians,@Schwarzenegger,Governor Deukmejian was a tremendous public servant to the people of California. My thoughts and prayers are with his family. +05/08/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: I couldn’t agree more. Luckily, there is a path to relevance: @NewWayCA, led by Republicans like @RockyChavez4CA and @C…" +05/08/2018,Politicians,@Schwarzenegger,There are other great Republicans like @Cunning_Jordan you should follow. +05/08/2018,Politicians,@Schwarzenegger,"I couldn’t agree more. Luckily, there is a path to relevance: @NewWayCA, led by Republicans like @RockyChavez4CA an… https://t.co/kOBPGnR5ns" +05/08/2018,Politicians,@Schwarzenegger,RT @karenkasler: .@Schwarzenegger toasted OH lawmakers w schnapps when they put Issue 1 on the ballot. Now the Governator is urging voters… +05/08/2018,Politicians,@Schwarzenegger,"Mr. Pruitt, I can assure you that California, and those who believe in a cleaner future, will win again. https://t.co/XCn8tlSR5c" +05/08/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: Ohio, get out to vote today and don’t forget to vote YES on Issue One. It’s time to terminate gerrymandering! @OhFairDi…" +05/08/2018,Politicians,@Schwarzenegger,"Ohio, get out to vote today and don’t forget to vote YES on Issue One. It’s time to terminate gerrymandering!… https://t.co/UccH8lljnr" +05/04/2018,Politicians,@Schwarzenegger,"Major update! It feels so good to be back and I remain so, so grateful to all of you for your healing thoughts! https://t.co/CY9hFKwSlq" +04/30/2018,Politicians,@Schwarzenegger,"Tune into James Cameron’s Story of Science Fiction tonight at 10/9c on @AMC_TV. Trust me, there is no better guide… https://t.co/SBmq4OGLJ6" +04/26/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: This was a double whammy for me @EmmanuelMacron. First, a fantastic speech. Second, at this stage in my recovery it was…" +04/25/2018,Politicians,@Schwarzenegger,"This was a double whammy for me @EmmanuelMacron. First, a fantastic speech. Second, at this stage in my recovery it… https://t.co/VxqPaoETci" +04/24/2018,Politicians,@Schwarzenegger,"President Bush, you are at the top of my mind. I am praying for a full recovery and I am here to pump you up if you… https://t.co/lZmXPwaDSG" +04/23/2018,Politicians,@Schwarzenegger,"#JamesShawJr, you proved that you don’t have to be a Terminator or Superman to be an extraordinary hero. Thank you… https://t.co/fCrHJob4x9" +04/18/2018,Politicians,@Schwarzenegger,"RT @WWE: ""He brought so much great inspiration to so many millions of children...He has made such great contributions to this country."" - A…" +04/18/2018,Politicians,@Schwarzenegger,"And away from the spotlights and attention, he had the biggest heart you can imagine. I’ll miss you, Bruno." +04/18/2018,Politicians,@Schwarzenegger,Bruno Sammartino was a legend. He was the American Dream personified. From his childhood in Italy hiding from Nazis… https://t.co/LmxGCsQV1g +04/17/2018,Politicians,@Schwarzenegger,"My thoughts are with President Bush and the entire Bush family, along with every person on this planet who was luck… https://t.co/e0uz9cvRvR" +04/16/2018,Politicians,@Schwarzenegger,https://t.co/VE6xvY2zp9 +04/16/2018,Politicians,@Schwarzenegger,She refused to let any of us go with her to the hospital and demanded that we keep enjoying ourselves. That’s Barba… https://t.co/Yhp7BscUUZ +04/16/2018,Politicians,@Schwarzenegger,"She put everyone else before herself, but let me tell you: when Barbara talked, you listened. Once, at Camp David,… https://t.co/SnqUpDPo9r" +04/16/2018,Politicians,@Schwarzenegger,"She’s strong, she’s smart, she’s classy, and she’s unfailingly kind and giving. She is a public servant in every se… https://t.co/8LvY0Hi67A" +04/16/2018,Politicians,@Schwarzenegger,Barbara Bush is a truly great American. She might be best known as the wife of one President and the mother of anot… https://t.co/QS2uRwzW2i +04/12/2018,Politicians,@Schwarzenegger,Thank you all for caring. We are moving forward! https://t.co/kvauldg3Mq +04/12/2018,Politicians,@Schwarzenegger,"#tbt to one of the rare moments I felt completely puny, with Wilt Chamberlain and Andre the Giant. I absolutely lov… https://t.co/GdRcboQzaQ" +04/10/2018,Politicians,@Schwarzenegger,"Catching up on the news. I’m saddened to hear about the loss of Justice Reinhardt. We didn’t always agree, but I di… https://t.co/D4ir7f5Xor" +04/10/2018,Politicians,@Schwarzenegger,RT @NextRevFNC: .@stevehiltonx talks to California Governor @Schwarzenegger about President Trump and the state of the GOP. #NextRevFNC htt… +04/10/2018,Politicians,@Schwarzenegger,"RT @HBO: Andre The Friend. + +@Schwarzenegger shares his #MyAndreStory. #AndreTheGiant https://t.co/7zAD0Y69rk" +04/04/2018,Politicians,@Schwarzenegger,I’m with @RepCurbelo. https://t.co/ft5t6A6dDg +04/03/2018,Politicians,@Schwarzenegger,"Bonnie Reiss was a true treasure to California, the United States, the world, and everyone she has ever met. My ful… https://t.co/SLeUafh7c3" +04/02/2018,Politicians,@Schwarzenegger,It’s true: I’m back! I went to sleep expecting to wake up with a small incision and woke up with a big one - but gu… https://t.co/60TNM8pdL1 +03/28/2018,Politicians,@Schwarzenegger,"RT @TameGerrymander: While @Schwarzenegger couldn't make it to our #SCOTUS rally today, he did send this message urge you all to keep up th…" +03/28/2018,Politicians,@Schwarzenegger,RT @sxsw: Watch Actor and Former Governor of California Arnold @Schwarzenegger's conversation with @politico's @IsaacDovere at #SXSW 2018 h… +03/28/2018,Politicians,@Schwarzenegger,"RT @vicenews: The Supreme Court is about to hear to a case on partisan gerrymandering. + +@GiannaToboni spoke to @schwarzenegger last year a…" +03/24/2018,Politicians,@Schwarzenegger,Don’t mock them because they are young or because you disagree. Learn from them. They’re giving you an example of h… https://t.co/MveYC51bU8 +03/24/2018,Politicians,@Schwarzenegger,"The students organizing #MarchForOurLives and I might not agree on everything, but their engagement inspires me. Th… https://t.co/drJb0U6rNe" +03/24/2018,Politicians,@Schwarzenegger,It was fantastic to sit down with @smerconish to chat about the future of the CA Republican Party and @NewWayCA. https://t.co/qYDFWhc39k +03/24/2018,Politicians,@Schwarzenegger,RT @smerconish: here's my full interview with @Schwarzenegger - a portion of which just aired @CNN @CNNi https://t.co/9SrJGhhoW1 @NewWayCA… +03/23/2018,Politicians,@Schwarzenegger,I just heard the terrible news. Nancy McFadden was a public servant in every sense of the word. She always put othe… https://t.co/hXPBqjzuwK +03/23/2018,Politicians,@Schwarzenegger,RT @omaze: BIG news from Arnold! Watch and make sure to enter—it's your LAST CHANCE: https://t.co/l2R6EltFUm https://t.co/RtFzWCUEU4 +03/22/2018,Politicians,@Schwarzenegger,"It’s your LAST CHANCE to join me for lunch, cigars and some life advice—all before we get to the choppa. ENTER:… https://t.co/LEm4t53AG7" +03/22/2018,Politicians,@Schwarzenegger,"It was such an honor to have breakfast with Xavier DeGroat, who is an incredible autism advocate. He truly inspires… https://t.co/8NvbwkKlZO" +03/21/2018,Politicians,@Schwarzenegger,"RT @NewWayCA: ""The soul of the Republican Party is worth fighting for."" #NewWay + +- @Schwarzenegger" +03/21/2018,Politicians,@Schwarzenegger,"Tune in now to join a conversation with me, @JohnKasich @ChadMayesCA and all the members of @NewWayCA about the fut… https://t.co/P6XCuZJ3JW" +03/20/2018,Politicians,@Schwarzenegger,"Tune in tomorrow at 9AM PDT to hear from me, @JohnKasich, @ChadMayesCA, and many more Republicans about the future… https://t.co/hiD6a70UUY" +03/19/2018,Politicians,@Schwarzenegger,"RT @JohnKasich: Looking forward to joining @Schwarzenegger on Wednesday, 3/21 - Tune in at Noon ET (9AM PT)! @NewWayCA + +Watch live at: htt…" +03/17/2018,Politicians,@Schwarzenegger,"RT @7NewsMelbourne: Movie star and former governor of California @Schwarzenegger toured the Arnold Fitness Expo in the city, meeting fans a…" +03/17/2018,Politicians,@Schwarzenegger,Congratulations Roelly on your first @ArnoldSports victory in Australia. You worked so hard to lose those 20 pounds… https://t.co/sj7nJP61gO +03/16/2018,Politicians,@Schwarzenegger,I am so darn proud of @CSchwarzenegger for the launch of her documentary “Take Your Pills” on Netflix. It puts a sp… https://t.co/G116xoX5Ek +03/14/2018,Politicians,@Schwarzenegger,"RT @YEARSofLIVING: ""They know they are killing people and they continue doing the same thing over and over.”-- @Schwarzenegger + +The fossil…" +03/12/2018,Politicians,@Schwarzenegger,Don’t miss my podcast with @IsaacDovere from @politico. We had a great time talking about my governing principles (… https://t.co/VoY5hBpSsc +03/12/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: We’re going to put the whole conversation out a day early, so you’ll be able to hear it tomorrow on OFF MESSAGE. Subscribe…" +03/11/2018,Politicians,@Schwarzenegger,RT @ncelenviro: Solving environmental challenges often requires innovative solutions. Easily access some of the nation's most inventive bil… +03/11/2018,Politicians,@Schwarzenegger,It was fantastic to talk politics with all of you at @sxsw! Thank you @IsaacDovere for a wonderful conversation. We… https://t.co/6BAP9mx4Wb +03/11/2018,Politicians,@Schwarzenegger,@campaignforleo I look forward to seeing you soon! +03/11/2018,Politicians,@Schwarzenegger,RT @sxsw: Actor and Former Governor of California Arnold @Schwarzenegger on the role of a politician at #SXSW 2018. https://t.co/tDsN9wt0sP +03/11/2018,Politicians,@Schwarzenegger,"RT @sxsw: Politico's @IsaacDovere will sit down with Arnold @Schwarzenegger to discuss effective governing, gerrymandering, and the future…" +03/11/2018,Politicians,@Schwarzenegger,RT @IsaacDovere: Little logistical change-up for our OFF MESSAGE interview with @Schwarzenegger at @SXSW - we'll now start today a little l… +03/10/2018,Politicians,@Schwarzenegger,"RT @Crowdpac: Together, @schwarzenegger and @commoncause have raised nearly $150K in their fight against gerrymandering. Donate to democrac…" +03/09/2018,Politicians,@Schwarzenegger,DO IT. https://t.co/8MBF5FIhGy +03/09/2018,Politicians,@Schwarzenegger,"#tbt to when I was 16, before I ever competed. https://t.co/Ozb17lZS8q" +03/07/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: Going to be in Austin for @sxsw? Join me Sunday for an edition of OFF MESSAGE on the road, with @Schwarzenegger live on st…" +03/06/2018,Politicians,@Schwarzenegger,Thank you for being the best apprentice ever and for always helping raise money for our @ASASafterschool kids. https://t.co/JsOCpWxblq +03/05/2018,Politicians,@Schwarzenegger,Don’t miss the @ArnoldSports story on Snapchat. Trust me. https://t.co/Y9llD6tAlv +03/05/2018,Politicians,@Schwarzenegger,"RT @JohnKasich: Great to see my friend @Schwarzenegger in Ohio to celebrate the bipartisan compromise on redistricting. + +This is another co…" +03/04/2018,Politicians,@Schwarzenegger,This sums up my weekend at the 30th Anniversary of the @ArnoldSports Festival. I loved bringing all of you with me… https://t.co/uKkmc4YRaw +03/04/2018,Politicians,@Schwarzenegger,Thank you for the compliment! I was worried you’d say it’s like getting a snap from your grandfather. https://t.co/frvc3VkLFB +03/04/2018,Politicians,@Schwarzenegger,Tune in for my live q and a at the @ArnoldSports Sunday Showcase. https://t.co/hFM5Mu5E1Q +03/04/2018,Politicians,@Schwarzenegger,RT @ArnoldSports: 2018 Arnold Classic Results: 1. William Bonac 2. Dexter Jackson 3. Cedric McMillan 4. Roelly Winklaar 5. Steve Kuclo 6. L… +03/04/2018,Politicians,@Schwarzenegger,Thanks for following! I love using it to bring you guys with me everywhere. https://t.co/H2hrHMRdIN +03/04/2018,Politicians,@Schwarzenegger,Watch the 30th Anniversary of the @ArnoldSports live NOW: https://t.co/qNgkJSGdfK https://t.co/aXClOFvwjx +03/03/2018,Politicians,@Schwarzenegger,Thanks to both of you for supporting our kids! https://t.co/TCb5vQg6nZ +03/03/2018,Politicians,@Schwarzenegger,"A lot of you tell me that I inspired you at some point in your life. But I need inspiration too, and that’s why I l… https://t.co/V4w3WaPWmA" +03/03/2018,Politicians,@Schwarzenegger,RT @huntleypenniman: Following @Schwarzenegger on Snapchat was one of the best decisions I’ve made all week (👻: arnoldschnitzel) 💪🏻 +03/02/2018,Politicians,@Schwarzenegger,"RT @ArnoldSports: Tonight: Arnold Classic 212, Fitness & Figure International FINALS 7-10pm. Watch LIVE: https://t.co/cTOQtxGyYU #ASF2018 #…" +03/02/2018,Politicians,@Schwarzenegger,RT @JohnKasich: A great day with Gov. @Schwarzenegger and our legislative leaders celebrating congressional redistricting reform here in Oh… +03/02/2018,Politicians,@Schwarzenegger,Love seeing the #YesonIssue1 campaign talking to voters about redistricting reform inside the @ArnoldSports Festiva… https://t.co/pfm8o35H7m +03/02/2018,Politicians,@Schwarzenegger,Join me and don’t forget to add your snaps from the @ArnoldSports Festival to Our Story on Snapchat so they can be… https://t.co/Cjj1oZs0kN +03/02/2018,Politicians,@Schwarzenegger,Congratulations to all of you. This is a big win for the people of Ohio. I was proud to celebrate with you today. M… https://t.co/DqVdxr8kxQ +03/02/2018,Politicians,@Schwarzenegger,"RT @TheArnoldFans: We're at the Arnold Classic having a blast! Sure, you could watch @Schwarzenegger on Snapchat (ArnoldSchnitzel) or you c…" +03/02/2018,Politicians,@Schwarzenegger,@JamesFallows Thanks Jim! Now the important thing is that Ohio voters pass Issue One on May 8. And that great journ… https://t.co/uMJ6kLMunX +03/02/2018,Politicians,@Schwarzenegger,Just having fun in the @ArnoldSports Festival getting a quick pump. https://t.co/GI6PvaD5oE +03/02/2018,Politicians,@Schwarzenegger,Stop by and chat with this great team when you see them at the @ArnoldSports Festival. #YesonIssue1 https://t.co/HMr5YjXhZd +03/02/2018,Politicians,@Schwarzenegger,"RT @karenkasler: If you were wondering why @Schwarzenegger was at the OH Statehouse doing shots with @JohnKasich, @CARosenberger, @LarryObh…" +03/02/2018,Politicians,@Schwarzenegger,RT @clevelanddotcom: LIVE VIDEO: Watch Arnold @Schwarzenegger meet with Gov. @JohnKasich and legislative leaders to celebrate passing a con… +03/02/2018,Politicians,@Schwarzenegger,The @ArnoldSports Festival is for everyone from 1 month to 120 years old. I’m so pumped up to be in Columbus for th… https://t.co/JrS18zDxct +02/28/2018,Politicians,@Schwarzenegger,I'm a little depressed today. I have to admit I got addicted to watching the Olympics every night. I want to congra… https://t.co/HWS0vnoDSX +02/27/2018,Politicians,@Schwarzenegger,"Via @LATSeema, I’m pumped up to join my good friends @JohnKasich and @ChadMayesCA next month in LA to discuss a pos… https://t.co/WaC46Oqwja" +02/27/2018,Politicians,@Schwarzenegger,"RT @LATSeema: Schwarzenegger, Kasich to team up in L.A. for group seeking to reform California GOP https://t.co/FPiT4y6aFq" +02/26/2018,Politicians,@Schwarzenegger,RT @ncelenviro: Discover some of the nation's greatest state legislation combatting environmental degradation and protecting public health… +02/22/2018,Politicians,@Schwarzenegger,"Congratulations @lindseyvonn! You are a true champion, and it is always a joy to watch you ski. You've inspired so… https://t.co/ULiRFGsJh2" +02/21/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: If you really want to drain the swamp, you don’t do it by defending gerrymandering, which allows politicians to rig th…" +02/21/2018,Politicians,@Schwarzenegger,RT @ketch: @Schwarzenegger You can join @Schwarzenegger’s campaign to terminate gerrymandering on @Crowdpac at https://t.co/HlxIs86jVe. He… +02/20/2018,Politicians,@Schwarzenegger,RT @attn: @Schwarzenegger and here. https://t.co/Vy9qsNt3Ou +02/20/2018,Politicians,@Schwarzenegger,"RT @attn: @Schwarzenegger here, https://t.co/9ZwmTHni2B" +02/20/2018,Politicians,@Schwarzenegger,"RT @attn: @Schwarzenegger We agree, @Schwarzenegger. It's time to terminate gerrymandering just like you explained it for us here, https://…" +02/20/2018,Politicians,@Schwarzenegger,"If you really want to drain the swamp, you don’t do it by defending gerrymandering, which allows politicians to ri… https://t.co/msKJ8VI4Kx" +02/19/2018,Politicians,@Schwarzenegger,So proud to sit with Salma from @ASASafterschool courtside at the All-Star Game. Go #TeamLebron! Thanks for playing… https://t.co/0yzzSUmu3T +02/17/2018,Politicians,@Schwarzenegger,"Love this! @KingJames, thank you for supporting @ASASafterschool. https://t.co/Q2pQgnBqRE" +02/16/2018,Politicians,@Schwarzenegger,"RT @GrayForAssembly: We had a deal. Without Sites,Temperance you're breaking a promise and nullifying the will of the Voters who... https:/…" +02/14/2018,Politicians,@Schwarzenegger,"RT @mattiseman: Yesterday was the day I won Celebrity Apprentice. My boss, @Schwarzenegger, got me involved with his charity @ASASaftersch…" +02/12/2018,Politicians,@Schwarzenegger,"Like Lincoln said, we should seek the better angels of our nature and strive to remember that regardless of our pol… https://t.co/2ydpVA7ulF" +02/12/2018,Politicians,@Schwarzenegger,President Lincoln is one of my heroes. I keep this sculpture by my front door so that I’m reminded every day of the… https://t.co/nR3jNemj6Q +02/12/2018,Politicians,@Schwarzenegger,"Proud to hear a young Californian, @thisisrozzi, who blew us all away when she sang at the Capitol Christmas tree-… https://t.co/Z0CJvO3lSg" +02/08/2018,Politicians,@Schwarzenegger,"RT @AirResources: ICYMI: Governor Arnold @Schwarzenegger accepts #HaagenSmit Legacy Award for #climatechange leadership #AB32 + +“I’m proud o…" +02/08/2018,Politicians,@Schwarzenegger,#tbt to this guy coming to visit the State Capitol when I was Governor and taking over as national spokesman for… https://t.co/P7vp8f8YXb +02/08/2018,Politicians,@Schwarzenegger,"@AirResources Of all of our great environmental work, appointing @MaryNicholsCA was by far one of my smartest decis… https://t.co/YXG8mhmTuK" +02/08/2018,Politicians,@Schwarzenegger,"I am honored to receive the Haagen-Smit Award, named after a great immigrant to California, genius scientist, and p… https://t.co/mD165CtGFU" +02/08/2018,Politicians,@Schwarzenegger,We can't let our politics get in the way of fighting for a better system and a better Congress for all voters. Poli… https://t.co/bwuNQ99QwC +02/07/2018,Politicians,@Schwarzenegger,"Thank you @KingJames! No pressure, but at $5.50 per day of @ASASafterschool programming per kid, if you win, that’s… https://t.co/mHlvnn6pN7" +02/07/2018,Politicians,@Schwarzenegger,I am proud of you! Keep up the fantastic work! https://t.co/JF2f3TSSi2 +02/07/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: .@Schwarzenegger to people who criticize his gerrymandering crusade: +""your comments really worry me, because I think some…" +02/06/2018,Politicians,@Schwarzenegger,@FrankLaRose Thank you for your leadership on the issue! I'm very proud of you and Ohio. +02/06/2018,Politicians,@Schwarzenegger,It was such a bold choice to have them star in their own story - only Clint could make that decision. But all three… https://t.co/8dgEKUWsSQ +02/06/2018,Politicians,@Schwarzenegger,"Clint has done it again. “The 15:17 to Paris” is brilliant. Well-acted, flawlessly directed. Best of all, for the f… https://t.co/pvRjMxELw2" +02/06/2018,Politicians,@Schwarzenegger,"Congratulations to my friend @JohnKasich, the Ohio Legislature, and most of all, the great people of Ohio on this b… https://t.co/piw7DETrXo" +02/02/2018,Politicians,@Schwarzenegger,Add more weight. https://t.co/O3wmBxeBvs +02/02/2018,Politicians,@Schwarzenegger,Check out this piece about former oil workers in our Central Valley who have become iron and electrical workers in… https://t.co/qoPoez9Za4 +02/02/2018,Politicians,@Schwarzenegger,Here are two facts: pollution from fossil fuels is killing us and cleaning our air should be a bipartisan goal; and… https://t.co/Cnh9Y846mA +02/02/2018,Politicians,@Schwarzenegger,RT @smerconish: thank you to our latest contributor Arnold @Schwarzenegger exclusive to https://t.co/UCpx3FqWfX: To Drain The Swamp Termina… +01/30/2018,Politicians,@Schwarzenegger,RT @CommonCause: @LarryHogan @JohnKasich @Schwarzenegger @GovernorDavis .@Schwarzenegger (former Republican governor of California) and @Go… +06/13/2018,Politicians,@USAGSessions,.@RepMarkMeadows @Jim_Jordan You are wasting time with Rosenstein yanking your chain. https://t.co/aPHmP8DZS6 +06/06/2018,Politicians,@USAGSessions,"Rosenstein was willing to help @realDonaldTrump clean DOJ/FBI hence his letter, but then media and Dems pounced. Th… https://t.co/AA5J4qtm4Y" +06/06/2018,Politicians,@USAGSessions,"Comey firing was done in part by Rosenstein which means he can’t oversee Mueller, but if @jeffsessions removes Rose… https://t.co/lWZlySW8NP" +06/06/2018,Politicians,@USAGSessions,Easy for @realDonaldTrump to blame everything on @jeffsessions but if @POTUS had demanded that by day one all senio… https://t.co/sTbFuRjSoR +06/06/2018,Politicians,@USAGSessions,The IG recomended months ago that McCabe be prosecuted for lying. Now this coward - who sent Strzok to trip up… https://t.co/CkF8VqSP8W +04/19/2018,Politicians,@USAGSessions,.@RepMarkMeadows This should have been referred to a Special Counsel who like Mueller to Flynn would have easily sq… https://t.co/yRu4eIa573 +04/18/2018,Politicians,@USAGSessions,Good work by @RepDeSantis and others. But as long national TV hosts and “reporters” shill for Rosenstein and Muelle… https://t.co/46GLrHcqRh +04/16/2018,Politicians,@USAGSessions,.@charliekirk11 For the same reason McCabe and the @ClintonFdn are getting a pass. https://t.co/LvwzQuSlWq +04/16/2018,Politicians,@USAGSessions,It won’t happen; same as McCabe won’t be prosecuted for lying under oath and the @ClintonFdn is not being investiga… https://t.co/owJPTrqAp4 +04/12/2018,Politicians,@USAGSessions,His current boss. Trump. https://t.co/n23aD3vLNz +04/10/2018,Politicians,@USAGSessions,"They would not be raided. In fact, her lawyers helped in the conspiracy to obstruct an investigation yet faced no c… https://t.co/vIQdAmFXNs" +04/10/2018,Politicians,@USAGSessions,There is “a high standard” to get a FISA warrant too. Remember what happened? FBI played the court. https://t.co/KSzz5x4kWF +04/10/2018,Politicians,@USAGSessions,Can anyone explain why Sessions has not appointed a Special Counsel on the intelligence leaks? On the IRS thuggery… https://t.co/p64C6LcNQc +03/30/2018,Politicians,@USAGSessions,McCabe will have no legal consequences because Rod Rosenstein and Robert Mueller are out to protect their Obama era… https://t.co/DZ4VM81ipL +03/23/2018,Politicians,@USAGSessions,.@realDonaldTrump Why would Congress give you such a power over them? If they want you to veto an item they will ch… https://t.co/qUiw7IIzJs +03/18/2018,Politicians,@USAGSessions,Thank you @RepGoodlatte! https://t.co/GRpABW4NMl +03/18/2018,Politicians,@USAGSessions,This country is thankful to patriots like @RandPaul for speaking the truth when whoring one out to say what… https://t.co/aihkdXqgrx +03/12/2018,Politicians,@USAGSessions,Another beauty from our amazing AG. Giving surveillance abuser and liar Clapper a pass. @RepGoodlatte @TGowdySC are… https://t.co/9TkLgCzx44 +03/04/2018,Politicians,@USAGSessions,Great patriot @RepChrisStewart! https://t.co/OAoNW24XkH +02/28/2018,Politicians,@USAGSessions,There is no honor/integrity in an AG that doesn’t appoint a Special Counsel on the illegal classified leaks and on… https://t.co/s81inhw7z8 +02/28/2018,Politicians,@USAGSessions,.@JerryFalwellJr @JonahNRO There is no honor in accepting the AG job knowing you will recuse yourself from an issue… https://t.co/wp8tlZIxJC +02/28/2018,Politicians,@USAGSessions,"Let’s applaud the patriots @RepLeeZeldin @Jim_Jordan, @RepRooney @RepTedBudd @RepMattGaetz @RepMarkMeadows… https://t.co/tllshy8O9m" +02/19/2018,Politicians,@USAGSessions,"Correct @FLGovScott and @marcorubio should help reform the FBI process instead of joining the ratings brothel, vict… https://t.co/TUErUj0Y4H" +02/18/2018,Politicians,@USAGSessions,.@jaketapper Well @marcorubio and @realDonaldTrump don’t need to join your victim-exploitation-for-ratings to hear… https://t.co/mDV0tdmOTT +02/07/2018,Politicians,@USAGSessions,Patriot @DevinNunes says it as it is. Will Rod Rosenstein do something about these crimes? No because he is a cowar… https://t.co/ViDmnH6uHJ +02/06/2018,Politicians,@USAGSessions,.@JaySekulow Get Trump to fire the idiot Cobb! How many more people who worked like dogs for @POTUS need to suffer… https://t.co/ZlQhcR48cO +02/06/2018,Politicians,@USAGSessions,Applaud the patriots who despite mockery and “burning bridges” with sources keep the bell ringing against gov abuse… https://t.co/G8IqCKJBK1 +02/02/2018,Politicians,@USAGSessions,@realDonaldTrump #ReleaseTheMemo! +02/02/2018,Politicians,@USAGSessions,Thank you @Jim_Jordan. https://t.co/HLDliIKusP +02/01/2018,Politicians,@USAGSessions,Another patriot in @RepJeffDuncan trying to restore the integrity of the FBI and hold them accountable as outlined… https://t.co/5GvGnKspXI +02/01/2018,Politicians,@USAGSessions,Thank you for your bold patriotism @RepMarkMeadows. https://t.co/lWdXq3pEXX +01/30/2018,Politicians,@USAGSessions,Thank you @RepChrisStewart for your patriotism and courage. Nice to see people putting country over media accolades. https://t.co/7XbHtrNgqS +01/30/2018,Politicians,@USAGSessions,Today a Battalion of patriots led by @DevinNunes helped Congress execute its constitutional duty of having oversigh… https://t.co/AQ9twUPtJl +01/25/2018,Politicians,@USAGSessions,Go easy there @WalshFreedom or else CNN won’t pick you up next time you stand at the corner. https://t.co/ZRxNV9816F +01/25/2018,Politicians,@USAGSessions,First @JusticeOIG said he has the text. Then DOJ said they don’t have it. After the blow back to a potentially huge… https://t.co/cAlTLobTij +01/25/2018,Politicians,@USAGSessions,@CheriJacobus @scottrgordon @JohnJHarwood Bill like you is saying things to get on TV. He is putting TV ahead of principles. +01/25/2018,Politicians,@USAGSessions,@JohnJHarwood Media have always been susceptible to publicity whores who say things hoping to be picked up by CNBC for a few minutes. +01/25/2018,Politicians,@USAGSessions,See @JaySekulow @DonaldJTrumpJr? @johncardillo gets it! https://t.co/E19tvDV91x +01/25/2018,Politicians,@USAGSessions,"Get your head out of Cobb’s backside, @realDonaldTrump! Have these hacks - out to distract from Obama era crimes -… https://t.co/3tMUoi9QOP" +01/24/2018,Politicians,@USAGSessions,be proper for the Obama administration—or any administration—to use something like that to authorize further invest… https://t.co/wEpAPBA8kl +01/24/2018,Politicians,@USAGSessions,"More @ChuckGrassley: @Comey testified in 2017 that it was “salacious and unverified.” If it was unverified in 2017,… https://t.co/f4mW0ZuXIg" +01/24/2018,Politicians,@USAGSessions,"More @ChuckGrassley “First, despite all the hubbub, this is not all that unusual. Anyone can ask for a criminal inv… https://t.co/Wsi4LKcOGK" +01/24/2018,Politicians,@USAGSessions,More @ChuckGrassley “We saw Mr. Steele swearing one thing in a public libel suit against him in London. Then we saw… https://t.co/MV9OGc8WPZ +01/24/2018,Politicians,@USAGSessions,"@ChuckGrassley More @ChuckGrassley “Steele shared his, at least partially, Russian-based allegations far and wide.… https://t.co/ScscnqchIi" +01/24/2018,Politicians,@USAGSessions,"From @ChuckGrassley “Many of his sources for claims about the Trump campaign are Russian gov officials. So, Steele,… https://t.co/CxSPIaSRE0" +01/24/2018,Politicians,@USAGSessions,The future of our country is in the hands of patriots like @RepGoodlatte. https://t.co/tBjpm5PXbh +01/24/2018,Politicians,@USAGSessions,A great thanks to @Jim_Jordan who patriotically defends the honor of the FBI while many in DC stand at the corner h… https://t.co/9uqGp89NAc +01/24/2018,Politicians,@USAGSessions,Correct @RealJamesWoods and now a U.S. Attorney who saw nothing wrong with Hillary’s private server will be the FBI… https://t.co/LiepNDJk7a +01/24/2018,Politicians,@USAGSessions,Thank you @SenRonJohnson for your patriotism. https://t.co/1RjfDEehRW +01/23/2018,Politicians,@USAGSessions,Oh great. @WalshFreedom is at the corner again hoping to be picked up by CNN. https://t.co/OTu587LyUc +01/23/2018,Politicians,@USAGSessions,"Odd. @Comey and his team knew on their own to cover for @HillaryClinton, but Wray needs to be “pressured” publicaly… https://t.co/QIT54xvzBb" +01/23/2018,Politicians,@USAGSessions,"Wray’s bosses R Sessions-Trump. Secondly, McCabe’s wife money; McCabe whitewashing the emails and derailing the Fou… https://t.co/wVQjHg5Omd" +01/22/2018,Politicians,@USAGSessions,"IRS records? Missing. + +Hillary records? Missing. + +Strzok records? Missing. + +Page records? Missing. + +This is the M.O… https://t.co/4YDwwOr5FD" +01/19/2018,Politicians,@USAGSessions,.@ShannonBream Please ask @LindseyGrahamSC why he is not funding the fence he supported a decade ago? Why give citi… https://t.co/Z7ecbmsNRS +01/19/2018,Politicians,@USAGSessions,"For the sake of transparency and out democracy, Congress should #ReleaseTheMemo. We can’t have a law enforcement of… https://t.co/jmJ5eKACSC" +01/17/2018,Politicians,@USAGSessions,Hey @RepMattGaetz @DevinNunes @RepStefanik @RepMikeTurner @TGowdySC Don’t be useful idiots! Release FULL transcript… https://t.co/kxq1Z3ObkE +01/09/2018,Politicians,@USAGSessions,.@justinjm1 In an effort to help DOJ staff prepare for their own testimony. Obstruction. https://t.co/Dlwl2vKz4z +01/09/2018,Politicians,@USAGSessions,.@kylegriffin1 Big as in helping DOJ officials prepare their answers for upcoming testimony. https://t.co/DdFyRvRmkZ +01/09/2018,Politicians,@USAGSessions,"Simpson wrote it in the op ed; nothing new, and it confirms that the FBI did in fact work with the DNC funded Steel… https://t.co/MmMValYlJZ" +01/09/2018,Politicians,@USAGSessions,Thanks for tweeting this @MariaBartiromo. https://t.co/kPWVrsMFuA +01/07/2018,Politicians,@USAGSessions,.@dbongino No. https://t.co/xbogwFCkvY +01/07/2018,Politicians,@USAGSessions,Great question by @charliekirk11. https://t.co/nyjB6gJKG3 +01/04/2018,Politicians,@USAGSessions,Right on @johncardillo https://t.co/z0UamhojLB +01/04/2018,Politicians,@USAGSessions,Yes. https://t.co/y757bnglM4 +01/04/2018,Politicians,@USAGSessions,Can @MarkWarner explain why Mueller should be looking beyod collusion? How about we appoint a Special Counsel to ov… https://t.co/jVnUdklRbY +01/03/2018,Politicians,@USAGSessions,.@tedlieu Who gives a F... what Fusion GPS founders bark in the @nytimes? It is not the role of @RepGoodlatte or… https://t.co/B2zQvxrAfe +12/31/2017,Politicians,@USAGSessions,Thank you @LindseyGrahamSC! Obama people like @Comey were dishonest with the court about the sourcing of the dossie… https://t.co/jClwfSexy4 +12/28/2017,Politicians,@USAGSessions,Thanks @RepMattGaetz https://t.co/vZmj6P9G4f +12/28/2017,Politicians,@USAGSessions,The same DOJ that wasted no time appointing a Special Counsel. +12/28/2017,Politicians,@USAGSessions,This is the same DOJ that Sessions directed to investigate Obama’s treatment of Hizbollah and Mueller giving Uraniu… https://t.co/EIUEWD8clK +12/20/2017,Politicians,@USAGSessions,Look what we have here. Oh no @Rosie. https://t.co/ckkrugNQ8U +12/18/2017,Politicians,@USAGSessions,Thanks @ChrisRBarron https://t.co/XtO4MmCyjK +12/17/2017,Politicians,@USAGSessions,Thanks @DarrellIssa https://t.co/lcEH6rol27 +12/17/2017,Politicians,@USAGSessions,Thanks @RepDeSantis https://t.co/TWG826Pmfo +12/17/2017,Politicians,@USAGSessions,Thanks @AlanDersh https://t.co/Zt9CF2uuIV +12/17/2017,Politicians,@USAGSessions,Thanks @JudgeJeanine https://t.co/Icoq3MFqBt +12/17/2017,Politicians,@USAGSessions,Thanks @JohnCornyn https://t.co/WR8U1jPoj8 +12/17/2017,Politicians,@USAGSessions,Thanks @johncardillo https://t.co/xNTKWlq141 +12/17/2017,Politicians,@USAGSessions,Thanks @TuckerCarlson https://t.co/lm5cXevJNx +12/15/2017,Politicians,@USAGSessions,Thanks @KimStrassel https://t.co/Q7mcVUXSJL +12/15/2017,Politicians,@USAGSessions,"RT @RiskRewardFBN: Former FBI Assistant Director James Kallstrom on the Peter Strzok anti-Trump texts: ""He belongs in Leavenworth. He belon…" +12/15/2017,Politicians,@USAGSessions,Thanks @AmbJohnBolton https://t.co/1uZzBD2JOp +12/15/2017,Politicians,@USAGSessions,Thanks @newtgingrich https://t.co/QFJ0sCP0ll +12/15/2017,Politicians,@USAGSessions,RT @LouDobbs: Deep State Exposed- @CharlesHurt: This is the most sinister & corrupt Deep State that anyone could have ever imagined. If you… +12/14/2017,Politicians,@USAGSessions,Good point by @ggreenwald. https://t.co/rkFlEKh9ZO +12/14/2017,Politicians,@USAGSessions,"RT @ChuckGrassley: FBI owes answers abt ""insurance policy"" against Trump victory...& if nothing to hide, why would senior FBI leaders use s…" +12/13/2017,Politicians,@USAGSessions,Why @charliekirk11 are they wasting time on these investigations when Mueller is already out there? https://t.co/4QRFdYHwLe +12/11/2017,Politicians,@USAGSessions,"RT @RepMattGaetz: ""We don’t know if taxpayer funds were used to buy political opposition research to discredit the President. We don’t know…" +12/10/2017,Politicians,@USAGSessions,Once again @realDonaldTrump’s mistake of not nominating @JudgeJeanine as DAG is seen. For his own legacy and for DO… https://t.co/QG8l1URhS6 +12/10/2017,Politicians,@USAGSessions,Yes it did. https://t.co/4E5v8d3gAu +12/09/2017,Politicians,@USAGSessions,Thank you @LindseyGrahamSC https://t.co/1Z8jGKGeW2 +12/07/2017,Politicians,@USAGSessions,.@RepDeSantis Correct. Rosenstein acted against DOJ policy. https://t.co/QXJhE5fb0R +12/07/2017,Politicians,@USAGSessions,TrumpRussia was also an “ongoing investigation” yet Comey asked Rosenstein for permission to reveal it (while not r… https://t.co/FkLDQIy89z +12/07/2017,Politicians,@USAGSessions,Rosenstein authorized @Comey to say publicly that there is an investigation but here Wray together with Obama holdo… https://t.co/wv9AWupReN +12/07/2017,Politicians,@USAGSessions,Good work here by @RepGoodlatte of @HouseJudiciary https://t.co/FFD5KowTrd +12/07/2017,Politicians,@USAGSessions,“Highly critical” @jaketapper. How many panels did he have on this? How many times did he ask on TV what Obama knew… https://t.co/4u9G4AMjVO +12/05/2017,Politicians,@USAGSessions,Right on point @TuckerCarlson. All the American people get from @Comey @SallyQYates and @EricHolder when confronted… https://t.co/bTXVunBvCa +12/05/2017,Politicians,@USAGSessions,Bingo! Right on point @StefanMolyneux! @Comey @EricHolder @SallyQYates know very well what a politically-corrupt sh… https://t.co/H94RAZTvis +12/04/2017,Politicians,@USAGSessions,Why is @Comey into photos of FBI agents’ backsides? Ok not to show faces but this is his only alrernative? https://t.co/eyMeqEjJyD +12/04/2017,Politicians,@USAGSessions,.@johncardillo is right on point @EricHolder. https://t.co/dH8Bva4xIq +12/04/2017,Politicians,@USAGSessions,"In the face of partisan hype and anti-Russia hysteria, @AlanDersh summarizes in less than 70 seconds what a POTUS c… https://t.co/yVuirJOKw1" +12/04/2017,Politicians,@USAGSessions,So now @Comey quotes himself. https://t.co/eyMeqEjJyD +12/04/2017,Politicians,@USAGSessions,Wow https://t.co/xxt96TEIUe +12/03/2017,Politicians,@USAGSessions,Actually as @AlanDersh and former AG Mukasey pointed out cooperating witnesses are usually charged with serious cri… https://t.co/t0s8xzSXEf +12/03/2017,Politicians,@USAGSessions,Powerful words from @RepChrisStewart protecting the rights of American citizens while @RepAdamSchiff wants to tramp… https://t.co/a2MDIXSJ8L +11/30/2017,Politicians,@USAGSessions,The @FBI still has many @Comey holdovers who put protecting @HillaryClinton ahead of protecting the rule of law. Wh… https://t.co/mU95Aywp3J +11/27/2017,Politicians,@USAGSessions,President @realDonaldTrump is the head of the executive branch and can hire or fire whomever he wants at the DOJ an… https://t.co/3HyQg6UmXf +11/22/2017,Politicians,@USAGSessions,Why in HELL is he still number two at the FBI? Say again @TGowdySC why there is no need for a Special Counsel? https://t.co/tE1SISg6at +11/15/2017,Politicians,@USAGSessions,HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA IDIOT JEFF SESSIONS HA HA HA HA HA HA HA HA HA MESSE… https://t.co/EyP8zWInHc +11/14/2017,Politicians,@USAGSessions,Welcome Special Counsel @JudgeJeanine. +11/14/2017,Politicians,@USAGSessions,".@AndrewCMcCarthy The point is that Obama hacks at DOJ ran interference on all those matters. Therefore,… https://t.co/ehCMBDK7n3" +11/10/2017,Politicians,@USAGSessions,It appears that @RepMattGaetz is of the few in @HouseGOP who are bold enough to demand accountability over Mueller.… https://t.co/gSVlgYXd5W +11/02/2017,Politicians,@USAGSessions,.@SenatorBurr Russian-linked accounts include anyone who tweets in Russian even here in the US. This includes patri… https://t.co/FE3Q0oEDcN +11/02/2017,Politicians,@USAGSessions,.@SenatorBurr Diplomats of a foreign power meddled in the election by giving a DNC contractor dirt on Manafort yet… https://t.co/CuMGTYZMCy +11/02/2017,Politicians,@USAGSessions,.@TheDemCoalition Not remembering the details of a potential meeting or a conversation is not perjury. Just ask… https://t.co/jg0Gved8dz +11/01/2017,Politicians,@USAGSessions,.@RepChrisStewart Not even indirectly. It shows Mueller is desperate and abusive too. https://t.co/VynLaPhSqb +10/29/2017,Politicians,@USAGSessions,Where is @MarkWarner @RepAdamSchiff? Rosenstein and Mueller? The last two helped protect Hillary. They don’t want p… https://t.co/5Y4AZrJNA9 +10/29/2017,Politicians,@USAGSessions,".@maggieNYT There is still no proof that Russia hacked @johnpodesta. Besides, maybe Russia had a seperate score wit… https://t.co/Zbul9ceAPF" +10/27/2017,Politicians,@USAGSessions,.@ChuckGrassley @SenFeinstein @DevinNunes @SenatorBurr will investigate Y Obama’s DOJ blocked a CW from speaking to Congress. @RepAdamSchiff +10/27/2017,Politicians,@USAGSessions,.@RepAdamSchiff Trump put a stop to the political intervention by Obama holdovers yet you see a prob with Trump; no… https://t.co/LPGA8SvsEe +10/27/2017,Politicians,@USAGSessions,.@SharylAttkisson More incredible is that it was “investigated” by the same Admin that did this crime and - shock -… https://t.co/gVhVooLY4L +10/27/2017,Politicians,@USAGSessions,.@RepAdamSchiff 15 people were convicted of crimes in Whitewater and it took years to get there. @DevinNunes good w… https://t.co/4RQHjMstRr +10/26/2017,Politicians,@USAGSessions,.@johnrobertsFox @jaketapper Very good. DOJ works at the pleasure of POTUS. The political hacks Obama holdovers at… https://t.co/z1BbZmyJKO +10/25/2017,Politicians,@USAGSessions,Whoa! @seanmdav shows that the DNC dossier news is a ploy by FussionGPS to cover for other funders of the Dossier.… https://t.co/AKxBXeFDTe +10/25/2017,Politicians,@USAGSessions,".@ChuckGrassley Why should the AG not be able to do it? Between him, Mueller and Rosenstein, the AG was not at DOJ… https://t.co/p9rRxb5E0s" +10/25/2017,Politicians,@USAGSessions,"Well, @DonaldJTrumpJr meeting the Russian attorney was also only oppo research. Thanks for your help! https://t.co/iSIwd0ykpi" +10/25/2017,Politicians,@USAGSessions,.@maggieNYT True but the @nytimes went along with the agenda of the people pushing the dossier than trying to find… https://t.co/4qZA0eresp +10/24/2017,Politicians,@USAGSessions,"What did @DavidCornDC know and when did he know it? He was of the first to spread the DNC-paid, Russia disinformation content. Attn @JoeNBC" +10/22/2017,Politicians,@USAGSessions,Fusion GPS worked for Russia on Magnitsky and produced a dossier with Russia disinformation. Where is Mueller? @seanhannity @SenatorBurr +10/22/2017,Politicians,@USAGSessions,Reminder that @DavidCornDC helped spread Russia disinformation on @realDonaldTrump produced by a company who worked… https://t.co/zWxRl7wJ8Q +10/22/2017,Politicians,@USAGSessions,If only @RepAdamSchiff and @MarkWarner cared about Ukraine’s & Russia-through-Fusion efforts to interfere as they c… https://t.co/TSg16vsQNZ +10/18/2017,Politicians,@USAGSessions,"You would think the Judiciary Committee would spend every minute asking questions about DOJ covering for Hillary, but they troll AG instead." +10/18/2017,Politicians,@USAGSessions,Totally corrupt Bob Mueller turned a blind eye to the Russians bribing @BillClinton and the @ClintonFdn. Now @jaketapper downplays it. +10/10/2017,Politicians,@USAGSessions,Sad. @PreetBharara turned into a mid-night troll and he is making @ArthurSchwartz more popular. https://t.co/4YjDsttdaY +09/18/2017,Politicians,@USAGSessions,Selling gov favors; being reckless with classified info; conspiring to and actually delete emails; lying under oath… https://t.co/Sfc8lKaH0P +09/18/2017,Politicians,@USAGSessions,Interesting that @RobbyMook @johnpodesta and @HillaryClinton really think the Obama DOJ was unfair to them. Total p… https://t.co/u8OVUrvx0k +09/14/2017,Politicians,@USAGSessions,.@ChuckGrassley Your committee is ripping this administration apart with the Russia circus yet you have the nerve t… https://t.co/JhyoXJdZ1n +09/14/2017,Politicians,@USAGSessions,.@MaxBoot Clearly says in the constitution that @TomRooney decides what is a scandal... https://t.co/4FnLNf8uHY +09/01/2017,Politicians,@USAGSessions,No one is. DOJ is too busy going after @POTUS via Mueller and still busy protecting @HillaryClinton. Thank Jared fo… https://t.co/wgcMUE0hSf +08/14/2017,Politicians,@USAGSessions,But then gave antifa a pass. https://t.co/vc4JSHDRdH +08/13/2017,Politicians,@USAGSessions,.@tribelaw It is time to investigate any and all who drive violence including antifa. https://t.co/5yPYWFwIxz +08/09/2017,Politicians,@USAGSessions,.@RepAdamSchiff Why do you care more about alleged interference by Russia than actual interference by Ukraine? https://t.co/m7RgrxtIfd +07/31/2017,Politicians,@USAGSessions,.@AdamParkhomenko Why would you fire people who know details of crimes and abuse of power? They will have incentive… https://t.co/rJv7PaZ3PM +07/31/2017,Politicians,@USAGSessions,Whoa! Solid work by @KimStrassel! @RepAdamSchiff is hiding the real collusion. https://t.co/PCaBG3gY7h +07/30/2017,Politicians,@USAGSessions,Arrogance. @SallyQYates who obstructed an investigation into @HillaryClinton and protected the IRS says DOJ needs to be protected from POTUS +07/28/2017,Politicians,@USAGSessions,.@EmilyMiller So the Obama DOJ helped deny the murder of a Russian who was supposed to speak with the Feds. Tell me… https://t.co/kGQHmOJhRR +07/27/2017,Politicians,@USAGSessions,.@JoeNBC What if the opponent violated laws? Does the opponent get a pass simply because of being an opponent? https://t.co/vzDK5cERc2 +07/27/2017,Politicians,@USAGSessions,.@ashleyfeinberg Do you know that U.S. attorneys (part of the DOJ) can run investigations separate from the FBI and… https://t.co/UcoNUg8rG0 +07/25/2017,Politicians,@USAGSessions,.@mmurraypolitics because Obama's DOJ did not investigate its own IRS and never appointed a special counsel against its own @HillaryClinton. +07/25/2017,Politicians,@USAGSessions,.@mmurraypolitics Because McCabe was involved in Hillary׳s investigation; because Holder who helped Obama in 2008 n… https://t.co/vhlBUtfOso +07/25/2017,Politicians,@USAGSessions,.@RepAdamSchiff Why should Mueller be able to do what he wants? Because Rosenstein can't take pressure from media a… https://t.co/XCEv4617Yh +07/24/2017,Politicians,@USAGSessions,No @matthewamiller. @POTUS merely wants his opponents to be treated as he is. Equal treatment under the law is a be… https://t.co/VOBkTEI3ly +07/23/2017,Politicians,@USAGSessions,.@mitchellvii Where is Rosenstein? To avoid media blowback he is scared to tell Mueller 'stop the leaks or I stop y… https://t.co/GzcWdqX6Ge +07/21/2017,Politicians,@USAGSessions,.@EricHolder The U.S. is not a fascist dictatorship where it's forbidden to question the integrity of officials.… https://t.co/bA7PtRhIiP +07/21/2017,Politicians,@USAGSessions,".@JudyWoodruff Yet rather than stopping it, Obama's DOJ was busy defending @HillaryClinton and spying on Trump's pe… https://t.co/aq4o4G8Ybe" +07/20/2017,Politicians,@USAGSessions,.@Carrasquillo How can Mueller have independence when he speaks with @MarkWarner @RepAdamSchiff about his work? https://t.co/W41AqToHV3 +07/16/2017,Politicians,@USAGSessions,"Just ""X appropriate""? This is more direct help from Ukraine than anything from Russia! Where are the hearings,… https://t.co/n5s1kWQJo6" +07/07/2017,Politicians,@USAGSessions,"""Hacked election""? No one hacked the election @allinwithchris @chrislhayes. Enough with the lie @RepAdamSchiff. https://t.co/JguCI3uK0z" +07/07/2017,Politicians,@USAGSessions,".@MarkWarner @TGowdySC @SenatorBurr @ChuckGrassley @RepAdamSchiff @HurdOnTheHill + +Why not say it under oath in pub… https://t.co/61MeJtJScG" +07/06/2017,Politicians,@USAGSessions,".@JoeNBC @DavidCornDC If we know for a FACT that Russia interfered, why are @MarkWarner @RepAdamSchiff still investigating if Russia did it?" +07/02/2017,Politicians,@USAGSessions,"Fraud @MarkWarner keeps spreading smoke regarding Trump and Russia, then he says ""whoa, look at the smoke."" @SenTomCotton @FareedZakaria" +06/29/2017,Politicians,@USAGSessions,Amen @RossBarkan. Great line on @PreetBharara. https://t.co/c7jJXexrsS +06/27/2017,Politicians,@USAGSessions,"Get to the spying, unmasking and leaking by Obama officials! What the hell is wrong with @SenatorBurr? @marcorubio… https://t.co/hn3QQJgWAN" +06/27/2017,Politicians,@USAGSessions,!!! @RepSwalwell echoes @RepAdamSchiff that all they have is reason to investigate; no evidence of actual wrongdoing https://t.co/Oi7GZ7HhyF +06/26/2017,Politicians,@USAGSessions,Ha! Remember when @PreetBharara bragged that he had subpoena power while his brother is only selling diapers? Preet… https://t.co/Q8IGyMCclf +06/18/2017,Politicians,@USAGSessions,Sad. @PreetBharara went from having subpoena power to being a troll. https://t.co/0H08c8WmhU +06/18/2017,Politicians,@USAGSessions,"Great @RepAdamSchiff. This means you support investigating the spying, leaking and unmasking by @AmbassadorRice and… https://t.co/9pbUhBZ0V5" +06/18/2017,Politicians,@USAGSessions,All of U.S. is waiting what Mueller will do next because Rosenstein wanted to ease up the intimidating attacks from… https://t.co/9M0BLg7L2Q +06/17/2017,Politicians,@USAGSessions,The McCarthyism by @MarkWarner @RepAdamSchiff @RepSwalwell against Americans after months of no evidence is shameful. Have you no shame? +06/16/2017,Politicians,@USAGSessions,The @HouseGOP and @SenateGOP are chasing people against whom there is ZERO clues of wrong doing; let alone evidence of a specific crime. +06/16/2017,Politicians,@USAGSessions,It is a disgrace that a distinguished public servant has been intimidated into doing an investigation that has no reason or merit. +06/16/2017,Politicians,@USAGSessions,"Rosenstein appointed Mueller for no reason and on no merit but too shield himself, Rosenstein, from intimidation from the media & Democrats." +06/15/2017,Politicians,@USAGSessions,.@RepAdamSchiff So did Rosenstein yet you and Dems like @SenSchumer questioned Rosenstein's integrity until he appo… https://t.co/r76LgyTjkO +06/15/2017,Politicians,@USAGSessions,Sad. @ChuckGrassley thinks he got concessions from @SenFeinstein to look into Lynch. Worthless! Let's see her agree to investigate unmasking +06/15/2017,Politicians,@USAGSessions,.@DevinNunes @TGowdySC @RepStefanik @HurdOnTheHill Anyone with a drop of patriotism will ask those questions from former DHS Sec Johnson. +06/15/2017,Politicians,@USAGSessions,Obama's DHS Johnson needs to be asked why he failed to protect America from Russian interference and if he knows about unmasking activity. +06/15/2017,Politicians,@USAGSessions,Sick. @RepAdamSchiff and @DevinNunes agreed to bring Obama's DHS Johnson to testify next week but not Obama NatSec advisor @AmbassadorRice. +06/15/2017,Politicians,@USAGSessions,Sad. @ChuckGrassley says he wants to investigate Russia interference. Didn't the IC already conclude it's Russia? Isn't Mueller onto this? +06/15/2017,Politicians,@USAGSessions,WTF @SenatorBurr @MarkWarnerVA? Mueller's work needs to be independent. You have no business talking with Mueller! https://t.co/yMmffWMKGX +06/14/2017,Politicians,@USAGSessions,RT @USAGSessions: @SenKamalaHarris @jonathanchait https://t.co/v2Qpz2khQP +06/14/2017,Politicians,@USAGSessions,@SenKamalaHarris @jonathanchait https://t.co/v2Qpz2khQP +06/14/2017,Politicians,@USAGSessions,"Clearly, @SenKamalaHarris was trying to distract from the fact that there is no evidence of collusion, which is why… https://t.co/zheeWFHK2o" +06/13/2017,Politicians,@USAGSessions,@joshgerstein @mtracey Only because Comey has made a mess by going public in the first place. +06/13/2017,Politicians,@USAGSessions,".@MarkWarner @MarkWarnerVA is protecting @AmbassadorRice. BTW, Y would she not want to give her 2 cents on Russia?… https://t.co/uEkI4sSFwv" +06/13/2017,Politicians,@USAGSessions,A great day! https://t.co/UHpKlfOKzg +06/13/2017,Politicians,@USAGSessions,Big time. https://t.co/MSwbXC5IQp +06/13/2017,Politicians,@USAGSessions,"SICK. @elizabethforma tells @davidaxelrod that AG Sessions ""needs to be taken out""" +06/13/2017,Politicians,@USAGSessions,".@RepAdamSchiff + +Yes. +Maybe. +McCarthyism. + +This is all you have after 11 months of investigations? + +@SenAngusKing… https://t.co/lxd8RtJLjs" +06/13/2017,Politicians,@USAGSessions,.@RepAdamSchiff MUELLER will resign! His BFF Comey said POTUS was not under investigation. Mueller's staff is taint… https://t.co/t8nWUzBuET +06/12/2017,Politicians,@USAGSessions,"Yes, @ByronYork. It is a conflict! https://t.co/GDLhgw8k9O" +06/12/2017,Politicians,@USAGSessions,.@HillaryClinton was not interviewed under oath and Comey made his announcement the first businees day after the interview. The fix was in! +06/12/2017,Politicians,@USAGSessions,"Comey admits he was going to close the @HillaryClinton case; he just wanted to do it ""credibly."" The fix was in. He… https://t.co/OmAIzOrXae" +06/12/2017,Politicians,@USAGSessions,"Mueller, Comey are close which puts a cloud over Mueller's work. Will Mueller investigate Comey's violations as outlined by @JonathanTurley?" +06/11/2017,Politicians,@USAGSessions,OPINION: Robert Mueller should step aside because friends shouldn’t be investigating friends. https://t.co/tMNa75M8QN +06/11/2017,Politicians,@USAGSessions,Stop the witch hunt @SenatorLeahy! A year into investigations and there is still no evidence of collusion. Listen t… https://t.co/Nka5YZBVT6 +06/11/2017,Politicians,@USAGSessions,"Surely, @SenatorLeahy will heed the advice of fellow Dem @SenFeinstein and get to the bottom of the real story - Ob… https://t.co/0bUSSxLm4d" +06/11/2017,Politicians,@USAGSessions,"@MarkCorallo1 Interesting, @PreetBharara gleefully met the president in January; as did Comey. Suddenly they became… https://t.co/4qWhxeqXxZ" +06/11/2017,Politicians,@USAGSessions,"Oof, @FrankQuattrone. https://t.co/E1TRa8gYrH" +06/11/2017,Politicians,@USAGSessions,.@yashar of course not because @EricHolder did @BarackObama's dirty work such as ordering @PreetBharara to free the… https://t.co/tmf0bWP3mG +06/11/2017,Politicians,@USAGSessions,.@PreetBharara acts as if he was so uneasy to get a call from POTUS but remember how gleeful Bharara was after meet… https://t.co/MR6l1g2yX9 +11/26/2017,Politicians,@RepJohnConyers,I am grateful to my colleagues who have called for due process before weighing judgment. I would urge them to conti… https://t.co/kMqhUYuCoM +11/26/2017,Politicians,@RepJohnConyers,"I’ll never allow that legacy – a legacy I owe to my father John Conyers, Sr., who integrated labor unions, or my… https://t.co/floxETEKiK" +11/26/2017,Politicians,@RepJohnConyers,I am proud and fortunate to be part of a legacy of more than 50 years of fighting for civil rights and making our c… https://t.co/3DBwddXG02 +11/26/2017,Politicians,@RepJohnConyers,"I cannot in good conscience allow these charges to undermine my colleagues in the Democratic Caucus, and my friends… https://t.co/8K9heki4Xm" +11/26/2017,Politicians,@RepJohnConyers,But I have come to believe that my presence as Ranking Member on the Committee would not serve these efforts while… https://t.co/No5xgt2BaQ +11/26/2017,Politicians,@RepJohnConyers,These challenges could not be more pressing in the face of an Administration that cares little for the rule of law… https://t.co/tssA4XHAHe +11/26/2017,Politicians,@RepJohnConyers,"To be clear, I would like very much to remain as Ranking Member. There is still much work to be done on core concer… https://t.co/lmHi7L1sW8" +11/26/2017,Politicians,@RepJohnConyers,"I deny these allegations, many of which were raised by documents reportedly paid for by a partisan alt-right blogge… https://t.co/FQ9csOMzDg" +11/26/2017,Politicians,@RepJohnConyers,"After careful consideration and in light of the attention drawn by recent allegations made against me, I have notif… https://t.co/VgB0ZhaiEJ" +11/18/2017,Politicians,@RepJohnConyers,"I miss Barack Obama + +#2017In4Words https://t.co/WVhqWhywjV" +11/17/2017,Politicians,@RepJohnConyers,"Folks, this is the same policy that was strictly enforced, at the request of @SenateGOP throughout President #Obama… https://t.co/j0mND9XOfy" +11/17/2017,Politicians,@RepJohnConyers,"Happening tomorrow! My annual Veterans Resource Fair. Come join to get valuable information on housing, employment,… https://t.co/OMNjNsA6bw" +11/16/2017,Politicians,@RepJohnConyers,"Hello everyone. I'm hosting a Veterans Resource Fair this Saturday, November 18, 11:00AM at Piquette Square. + +Plea… https://t.co/eNzlMTNUTh" +11/16/2017,Politicians,@RepJohnConyers,"If you have student loans, you’ve benefited from an interest break. + +@HouseGOP is cutting that because to give… https://t.co/DhLHaFwNUE" +11/16/2017,Politicians,@RepJohnConyers,"I will be calling on the US @StateDept to investigate why #WendellBrown is still in a Chinese jail. + +We must do ev… https://t.co/16NVX3XZTe" +11/16/2017,Politicians,@RepJohnConyers,"When the #GOPTaxScam explodes the deficit, #Republicans will call for spending cuts to critical initiatives (e.g.… https://t.co/NCzERK7Ccx" +11/16/2017,Politicians,@RepJohnConyers,The @HouseGOP keep spewing #AlternativeFacts about its #GOPTaxScam. They just want to give a tax break to the compa… https://t.co/Gsv8OkCP34 +11/16/2017,Politicians,@RepJohnConyers,"FACT: 36 MILLION middle class families would see their taxes go up under the #GOPTaxScam. + +@HouseGOP, you simply c… https://t.co/mkVrTBYHS5" +11/15/2017,Politicians,@RepJohnConyers,"#HR4140, No Unconstitutional Strike on #NorthKorea Act, w over 70 bipartisan cosponsors in the House & Senate, woul… https://t.co/hHgIBMVEtB" +11/15/2017,Politicians,@RepJohnConyers,"Finally, @realDonaldTrump must publicly acknowledge that he is constitutionally-barred from launching a preemptive… https://t.co/ivhLlih9cE" +11/15/2017,Politicians,@RepJohnConyers,It is now @realDonaldTrump’s responsibility to control his impulsive behavior and give diplomacy a chance to work.… https://t.co/51uHy6L1j5 +11/15/2017,Politicians,@RepJohnConyers,"Despite his unhelpful comments, I am quite encouraged to see that the @WhiteHouse has dispatched negotiators to tal… https://t.co/smdFMGiv61" +11/15/2017,Politicians,@RepJohnConyers,"Pleased that @realDonaldTrump was able to avoid reckless threats during his Asia trip, as I urged him to do. + +Unfor… https://t.co/iZISC3iHZY" +11/15/2017,Politicians,@RepJohnConyers,"The @HouseJudiciary Committee has the privilege of debating some of the most important, and often controversial, is… https://t.co/kGZr1PZnWb" +11/15/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🆕 @DavidCicilline, @RepJohnConyers Push for Hearing on White House Political Interference in Telecom, Media Industries🆕…" +11/14/2017,Politicians,@RepJohnConyers,How many times? #SessionsHearing #SessionsTestimony https://t.co/9bySQuELim +11/14/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: The letter from @TheJusticeDept was sent to the Majority, without the customary and appropriate notice to @RepJohnConye…" +11/14/2017,Politicians,@RepJohnConyers,"Virtually every Clinton-related matter that President Trump complains about has been well-litigated, carefully exam… https://t.co/dfsPdtMoyX" +11/14/2017,Politicians,@RepJohnConyers,"Further, we cannot refer an investigation to a second special counsel if we lack the evidence to predicate a crimin… https://t.co/Xoh9SF0R9d" +11/14/2017,Politicians,@RepJohnConyers,"The fact that this letter was sent to the Majority, without the customary and appropriate notice to me, indicates t… https://t.co/dT0l5hr45k" +11/14/2017,Politicians,@RepJohnConyers,"RT @RepJayapal: @HouseJudDems Lots of ""I don't recall"" from AG Sessions in response to @RepJerryNadler's questions about the Trump campaign…" +11/14/2017,Politicians,@RepJohnConyers,"RT @RepJayapal: @HouseJudDems @RepJohnConyers Rep. Conyers asked yes/no questions: +• Is it common in a democracy to use the justice system…" +11/14/2017,Politicians,@RepJohnConyers,Read my entire statement from today's hearing. https://t.co/U8hf2vgjfj +11/14/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: Watch it live today at 10AM on https://t.co/n4BJFROwXl https://t.co/QVuvZpZCyT +11/13/2017,Politicians,@RepJohnConyers,"RT @USRepRickNolan: America's support for this Saudi-led war in Yemen is: + +1. Unauthorized by Congress, +2. Contributing to horrific starva…" +11/13/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Under AG #Sessions, the @TheJusticeDept has taken a sharp turn away from the evidence-based policies & priorities establi…" +11/08/2017,Politicians,@RepJohnConyers,RT @RepRaulGrijalva: Here's a brief history of the Navajo Nation. #NativeAmericanHeritageMonth https://t.co/KMXS77ATbV +11/08/2017,Politicians,@RepJohnConyers,"RT @HouseJudiciary: @RepGoodlatte @RepJohnConyers @JimPressOffice @JacksonLeeTX18 @RepRutherfordFL .@RepJerryNadler: ""The USA Liberty Act r…" +11/08/2017,Politicians,@RepJohnConyers,"RT @HouseJudiciary: @RepGoodlatte .@RepJohnConyers: ""The USA Liberty Act provides both security and privacy, and gives the government the t…" +11/08/2017,Politicians,@RepJohnConyers,The central thesis of the USA Liberty Act is that we can have both security and privacy. We can give the governmen… https://t.co/iLJxcdb70r +11/08/2017,Politicians,@RepJohnConyers,Do you or your friends have college debt? #GOPTaxScam makes it harder for Americans to afford to higher education https://t.co/chyEwsREYy +11/08/2017,Politicians,@RepJohnConyers,Last year 8.8 million Americans received a tax deduction that helped them afford health care expenses. #GOPTaxScam… https://t.co/N9BBoPiKvD +11/08/2017,Politicians,@RepJohnConyers,"Who are the Americans that end up paying more under the #GOPTaxScam? + +Middle-class families, teachers, Americans pa… https://t.co/xBw9IOxWhp" +11/07/2017,Politicians,@RepJohnConyers,I am incredibly saddened to hear of the passing of my friend Judge Anna Diggs Taylor https://t.co/xUaXpt9T1c +11/07/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 Ahead Of @TheJusticeDept Oversight Hearing, House Judiciary Committee Dems Put #Sessions On Notice + +https:/…" +11/07/2017,Politicians,@RepJohnConyers,"A ground invasion of North Korea would prove catastrophic and could result in thousands, if not millions of deaths. https://t.co/W5hM52rLba" +11/07/2017,Politicians,@RepJohnConyers,Pleased that Judge Morin dropped this case after I expressed concerns ab the threat it posed to #freedomofspeech. https://t.co/AmS5zMWNQa +11/07/2017,Politicians,@RepJohnConyers,"I hope that the @HouseJudiciary will take up the issue of #gunviolence, including an examination of #bumpstocks, as… https://t.co/7FoToUBweZ" +11/07/2017,Politicians,@RepJohnConyers,"An infusion of 50,000 people could push Haiti to an even higher level of instability. #SaveTPS" +11/07/2017,Politicians,@RepJohnConyers,"Haitians with temporary protected status working in the US contribute millions of dollars to Social Security, Medicare & Medicaid. #SaveTPS" +11/07/2017,Politicians,@RepJohnConyers,Ending temporary protected status for Haitians could put them at risk of poverty and illness. #SaveTPS +11/06/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: Join us tomorrow morning at 10AM for a subcommittee hearing examining 'Anti-Semitism on College Campuses.' https://t.co/7… +11/06/2017,Politicians,@RepJohnConyers,Ending #TPS will have wide-ranging & negative consequences. Please read more here: https://t.co/3mRu0GesvE +11/06/2017,Politicians,@RepJohnConyers,The mass deportation of 325K #TPS recipients would cost taxpayers more than $3 billion & upend thousands of communities. We must #SaveTPS. +11/06/2017,Politicians,@RepJohnConyers,"#TPS holders are vetted, legally present and authorized to work in our country. They are our neighbors, friends, coworkers. #SaveTPS" +11/06/2017,Politicians,@RepJohnConyers,"DYK: #TPS was est. through Congress by the Immigration Act of 1990? It covers nearly 325,000 TPS holders: https://t.co/1VTRstebEn #SAVETPS" +11/06/2017,Politicians,@RepJohnConyers,"RT @NancyPelosi: No matter how you look at it, the reality is that the #BillionairesFirst tax plan will explode the debt. #CNNSOTU https://…" +11/06/2017,Politicians,@RepJohnConyers,"My bill, #HR4140 The No Unconstitutional Strike on #NorthKorea Act, has over 60 cosponsors in the House, and has su… https://t.co/nqm5e9JQ0h" +11/05/2017,Politicians,@RepJohnConyers,"Open enrollment started Nov1st, and ends Dec 15th. There isn’t much time, so go to https://t.co/i0pyJbPXmH now, to… https://t.co/se2ipW4V9d" +11/04/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Thank you @RepJohnConyers for your leadership against an unconstitutional unprovoked attack on #NorthKorea. #NotoNKWar h… +11/04/2017,Politicians,@RepJohnConyers,"@HouseGOP & @SenateGOP may not want you to know, but @HouseDemocrats & @SenateDems do. It’s time to #GetCovered at… https://t.co/49K2ORvJVz" +11/04/2017,Politicians,@RepJohnConyers,I miss @BarackObama. https://t.co/wFxSWIKLNu +11/03/2017,Politicians,@RepJohnConyers,Hope this means I can count on you to oppose #Trump’s proposed cuts for low-income utility bill assistance:… https://t.co/jWYd2d2bvn +11/03/2017,Politicians,@RepJohnConyers,RT @RepRoKhanna: .@RepJohnConyers & I penned an oped on voting rights. We must protect the right to vote of all Americans .https://t.co/MSE… +11/03/2017,Politicians,@RepJohnConyers,"Oh I just wanted to share this wonderful flashback with my good friend #shirleychisholm. + +Happy #Friday, folks ✌🏽 https://t.co/PCswSl1qug" +11/03/2017,Politicians,@RepJohnConyers,A flashback to this Wednesday during a committee hearing on the so-called unconstitutionality of Obama's Executive… https://t.co/oQUGGrM4ME +11/02/2017,Politicians,@RepJohnConyers,"#Detroit bankruptcy court to beef up its bench. + +Via @_TylerTheTyler_ https://t.co/LFMsXCOdVJ" +11/02/2017,Politicians,@RepJohnConyers,Thank you @TheRevAl for inviting me to speak at @NationalAction Network Legislative and Policy Conference.… https://t.co/2Vod9mP3xH +11/02/2017,Politicians,@RepJohnConyers,"but takes issue with the latter. + +https://t.co/Qfu5lhRjWc" +11/02/2017,Politicians,@RepJohnConyers,"Ben Franklin said “nothing can…be certain, except death and taxes.” The #GOP appears fine with the first, https://t.co/HpnuCCuNwt" +11/02/2017,Politicians,@RepJohnConyers,"Rather than tweeting reckless statements, @realDonaldTrump should spend his Asia trip searching for a diplomatic resolution to this conflict" +11/02/2017,Politicians,@RepJohnConyers,The Framers chose Congress to be the body that declares war and authorizes military action. This legislation reinforces that intent. +11/02/2017,Politicians,@RepJohnConyers,"Bipartisan and bicameral, H.R 4140 prevents the expenditure of funds for any kind of first strike against North Korea." +11/02/2017,Politicians,@RepJohnConyers,"As @realDonaldTrump embarks on his trip to Asia, we want to remind him that he cannot attack North Korea without approval from Congress" +11/02/2017,Politicians,@RepJohnConyers,It is crucial that Congress reaffirm its constitutional authority over approving any first strike against North Korea. +11/02/2017,Politicians,@RepJohnConyers,"SOON: Press Conference with @SenMarkey & @ChrisMurphyCT on the ""No Unconstitutional Strike on North Korea Act"" HERE: https://t.co/46qq6YKMCW" +11/02/2017,Politicians,@RepJohnConyers,"RT @SenMarkey: LIVE 11:30AM: Join men, @RepJohnConyers @SenMurphy to demand no war in #NorthKorea w/o Congressional authorization https://t…" +11/02/2017,Politicians,@RepJohnConyers,"Join me, @SenMarkey & our colleagues from both Chambers today at 11:30A for a press conference. + +Watch Live on… https://t.co/YTJ0XtSIBW" +11/01/2017,Politicians,@RepJohnConyers,"@ChrisMurphyCT @SenMarkey LIVE TOMORROW AT 11:30EST: https://t.co/eXnUtqVZjf + +Bicameral, and bipartisan in the Hous… https://t.co/D7sw1fI5AA" +11/01/2017,Politicians,@RepJohnConyers,TOMORROW at 11:30 EST Rep. Conyers @ChrisMurphyCT & @SenMarkey to discuss their bill demanding Congressional approval before an attack on NK +11/01/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: .@RepJohnConyers: @DOJ_EOIR has moved to strip children in #immigration proceedings of other vital protections. +📝:: https…" +11/01/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: REMINDER: + +Join us for the 10:30A #NetNeutrality and Anti Trust Law hearing + +Watch Live: https://t.co/lSWEV7qktp https://…" +10/31/2017,Politicians,@RepJohnConyers,Join @HouseJudDems tomorrow for a hearing on #NetNeutrality. https://t.co/S10OYX6FZV +10/31/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Rep. Conyers just introduced a bill to prevent Trump from starting a war with #NorthKorea. Thank you @RepJohnConyers for… +10/31/2017,Politicians,@RepJohnConyers,"Controlling pet coke is another step towards #environmental justice —miles to go before we are there. + +https://t.co/lgM799o4sK" +10/31/2017,Politicians,@RepJohnConyers,"Tomorrow is Nov 1, which means just 1 day until you can buy or change your health care plan. + +Visit… https://t.co/J8ZXSNr4Wi" +10/31/2017,Politicians,@RepJohnConyers,"#ICYMI: I urged @RepGoodlatte to move in bipartisan manner to protect #SpecialCounsel from partisan attacks. + +https://t.co/Gn0WbmWbxE" +10/31/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: REMINDER: Join us. tomorrow for the following Hearings: + +1⃣ #NetNeutrality +2⃣ #HR490 +3⃣ @realDonaldTrump Admin #Immigrat…" +10/30/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: #BREAKING: Conyers Expresses Concern Ab Gop Efforts To Divert Attention From Ongoing Russian Threat To Our Elections http… +10/27/2017,Politicians,@RepJohnConyers,#NotFakeNews: President #Trump’s refugee policies leave tens of thousands of #refugees in limbo and danger. https://t.co/dr5IDDLFuw +10/27/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: This is BIG news. @USGAO will investigate @POTUS’s “#VoterFraud” Commission. Thanks to @SenBennetCO, @amyklobuchar, & @Co…" +10/27/2017,Politicians,@RepJohnConyers,"Our committee calendar is going to be full next week, folks. I hope you can tune in to watch live. https://t.co/yeazLjCeZq" +10/27/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 CONYERS & CUMMINGS DEMAND TOP #TRUMP CAMPAIGN CONSULTANTS DISCLOSE DETAILS OF CAMPAIGN DATA OPERATIONS +http…" +10/27/2017,Politicians,@RepJohnConyers,"RT @USRepRickNolan: Proud to join @RepJohnConyers and @SenMarkey's bill to prevent an unconstitutional first strike on North Korea. + +https:…" +10/27/2017,Politicians,@RepJohnConyers,"I am pleased that Congress took action. + +Via @nannburke https://t.co/rvFbIWQzBD" +10/26/2017,Politicians,@RepJohnConyers,RT @OversightDems: @RepCummings @RepJohnConyers @CamAnalytica @GilesParscale @DeepRootX @TheDataTrust Consultants which provided data analy… +10/26/2017,Politicians,@RepJohnConyers,RT @OversightDems: .@RepCummings and @RepJohnConyers letter to Cambridge Analytica Giles-Parscale TargetPoint Consulting The Data Trust and… +10/26/2017,Politicians,@RepJohnConyers,"Glad to work on this letter with my friend & colleague, @RepCummings, RM of @OversightDems. + +Please click the link… https://t.co/RH0PGWPcnA" +10/26/2017,Politicians,@RepJohnConyers,"RT @EnergyCommerce: RMs @FrankPallone & @RepJohnConyers: President Trump's declaration ""is essentially meaningless"" w/out new $$$ to fight…" +10/26/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🆕 @FrankPallone & @RepJohnConyers: @realDonaldTrump’s #Opioid Announcement Is Meaningless W/O Additional Funding🆕 + +https:…" +10/26/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Thank you @RepJohnConyers for working to keep us safe from an impulsive and incompetent administration. We must let dipl… +10/26/2017,Politicians,@RepJohnConyers,... commit to the diplomatic path advocated by both American experts and the #SouthKorean government. +10/26/2017,Politicians,@RepJohnConyers,#Trump must immediately cease talk of pre-emptive war and... +10/26/2017,Politicians,@RepJohnConyers,"... the power to initiate a nuclear conflict — less than a year later, those fears are far too close to being realized." +10/26/2017,Politicians,@RepJohnConyers,"... does not permit military attacks without Congressional approval. During the campaign, people feared a President @realDonaldTrump with..." +10/26/2017,Politicians,@RepJohnConyers,That is why Congress is standing up today to ensure that this Administration understands that the Constitution... +10/26/2017,Politicians,@RepJohnConyers,... reckless manner that endangers our troops stationed in #SouthKorea and our regional allies.” +10/26/2017,Politicians,@RepJohnConyers,"As a veteran of the Korean War, I am ashamed that our Commander-in-Chief is conducting himself in a... https://t.co/BJXOZhCZd8" +10/26/2017,Politicians,@RepJohnConyers,Would ensure no funds are used to launch an unconstitutional strike that experts say would lead to catastrophic war… https://t.co/MiizfxTuMF +10/26/2017,Politicians,@RepJohnConyers,"🚨 #BREAKINGNEWS 🚨 + +https://t.co/f81f9QnK7R" +10/26/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Read the full Statement from RM @RepJohnConyers at Hearing on Oversight of the US #Refugee Program: + +https://t.co/YBj4af…" +10/26/2017,Politicians,@RepJohnConyers,"@HouseJudDems .@RepJohnConyers: In swift fashion, @realDonaldTrump abandoned America’s bipartisan leadership in this arena." +10/25/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 @HouseGOP passed #HR469, a bill that jeopardizes the welfare of ALL Americans.👎" +10/25/2017,Politicians,@RepJohnConyers,#NotFakeNews: The Obama Admin issued a veto threat when a previous version of #HR469 was considered in the 114th Congress. #voteNO +10/25/2017,Politicians,@RepJohnConyers,"#HR469 is a is a costly solution in search of a problem. I will #voteNO & I urge my colleagues to do the same. + +https://t.co/UZG3mlnOMz" +10/25/2017,Politicians,@RepJohnConyers,...economic distress -- can come together to provide critical aid to those most in need.” +10/25/2017,Politicians,@RepJohnConyers,This aid package reflects how our Nation -- when called upon to address overwhelming devastation resulting from natural disaster and... +10/25/2017,Politicians,@RepJohnConyers,...debt relief to the citizens of #PuertoRico by forgiving certain flood insurance obligations and loans owed by the Commonwealth. +10/25/2017,Politicians,@RepJohnConyers,#HR2266 also contains much needed economic aid to those who were harmed by recent hurricanes and wildfires and provides critical... +10/25/2017,Politicians,@RepJohnConyers,"...these judgeships permanent, I am pleased that Congress took action." +10/25/2017,Politicians,@RepJohnConyers,"...from a fully-staffed #bankruptcy court. While I would have preferred the original version of my legislation, which would have made ..." +10/25/2017,Politicians,@RepJohnConyers,"This legislation will ensure that citizens of #Detroit, especially those facing economic distress, are able to obtain financial relief..." +10/25/2017,Politicians,@RepJohnConyers,"🆕CONYERS BILL TO ADD MORE JUDGES TO #DETROIT BANKRUPTCY COURT SET TO BECOME LAW🆕 +https://t.co/b78WoTeALf" +10/25/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Today, @HouseGOP will bring #HR469 to the Floor. This bill is an assault on Americans’ health, safety, and privacy. New d…" +10/25/2017,Politicians,@RepJohnConyers,Open Enrollment is much shorter this year. We only have from November 1st to December 15th to #GetCovered. Visit… https://t.co/IsTMnasrZT +10/25/2017,Politicians,@RepJohnConyers,Open Enrollment starts in one week! Find a plan for yourself and your family. Find a plan HERE: https://t.co/ld5ND2AF4n #GetCovered +10/25/2017,Politicians,@RepJohnConyers,"RT @RepAdams: Women-owned small businesses are the economic engines of our communities, employing millions each year. They need a #ABetterD…" +10/24/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Ranking member @RepJohnConyers' statement opposing #HR732, the “Stop Settlement Slush Funds Act of 2017” https://t.co/Euu…" +10/24/2017,Politicians,@RepJohnConyers,"#HR1673 would also end water issues like you see in #Flint, Detroit, and Oakland county." +10/24/2017,Politicians,@RepJohnConyers,My bill #HR1673 would fund modern water systems in world’s richest country. https://t.co/t1wvPN2VtF +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@RepGoodlatte: bill proposes a ""true guestworker program"" w/o path to citizenship for current undocumented ag workers" +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@repjohnconyers: this version of ag guestworker bill is ""not an improvement over its predecessors""" +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@RepJohnConyers: ag bill ""an incentive to replace well-paid American workers with temporary foreign workers at a drasti…" +10/24/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Watch today's markup of #HR4092 & #HR3711 LIVE: +https://t.co/LoiCgwy7gW https://t.co/oltNJVgF2p" +10/23/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: THIS WEEKIN COMMITTEE: + +1⃣ Ag Guestworker Act +2⃣ #HR3711 “Legal Workforce Act +3⃣ Refugee Programs hearing + +📝 https://t.c…" +10/23/2017,Politicians,@RepJohnConyers,Why Won’t The #NFL Address What Players Are Actually Protesting? Asks Michigan Lawmaker https://t.co/GQpbZnqIkG via @darrensands +10/23/2017,Politicians,@RepJohnConyers,"Speaking of #ABetterDeal, have you all seen @HouseGOP 's devastating budget? They should go back to the drawing board." +10/23/2017,Politicians,@RepJohnConyers,"FACT: Instead of lowering prescription drug prices, #Trumpcare would have forced families to pay even more. We have #ABetterDeal." +10/23/2017,Politicians,@RepJohnConyers,It seems like prescription drug prices will never stop going up. Americans deserve #ABetterDeal: https://t.co/KTSSnjoNXv +10/23/2017,Politicians,@RepJohnConyers,RT @RepSwalwell: I hope everyone watches this for a better sense of the grief felt by families of fallen soldiers. They loved our best. God… +10/13/2017,Politicians,@RepJohnConyers,RT @anthonyjr_: Exciting news! 📣 @repjoecrowley and @RepLindaSanchez introduce House Democrats' new Spanish-language Twitter account. Follo… +10/13/2017,Politicians,@RepJohnConyers,It was definitely an honor to meet Mr. Carson & glad that he’s participating in today’s very important Forum about… https://t.co/0rYUos3xgv +10/13/2017,Politicians,@RepJohnConyers,The extent of injury is particularly problematic for our youth as most brains are not fully developed until age 25. https://t.co/vXylKVNdeJ +10/12/2017,Politicians,@RepJohnConyers,I support this bill and ask that my colleagues join me in doing so. https://t.co/X4S8uApy3u +10/11/2017,Politicians,@RepJohnConyers,In 2016 more than 1 in 6 #Latinos lived in poverty. We need an economic future that works for everyone. #HispanicHeritageMonth +10/11/2017,Politicians,@RepJohnConyers,We celebrate #HispanicHeritageMonth and the immense contribution that the Latino community has made to our culture and economy. +10/11/2017,Politicians,@RepJohnConyers,"My bill, #HR1673 - WATER Act - would provide the needed investment in Detroit’s infrastructure. We need to act now. https://t.co/e5PtGNSQUS" +10/11/2017,Politicians,@RepJohnConyers,"RT @RepPeteAguilar: .@realDonaldTrump’s attacks on #DREAMers cut to the core of communities, and his extremist immigration ""principles"" wil…" +10/10/2017,Politicians,@RepJohnConyers,.@realDonaldTrump & @EPAScottPruitt are OK with destroying our planet. American’s aren’t & will fight this at ever… https://t.co/CLX0FutRvB +10/10/2017,Politicians,@RepJohnConyers,"Well that's not right, @HouseGOP. https://t.co/gY83Tjuu8K" +10/10/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: THIS WEEK'S FULL COMMITTEE #MARKUP: + +1⃣ Congressional #Subpoenas +2⃣ #HR2228, “Law Enforcement #MentalHealth +3⃣ Access to…" +10/10/2017,Politicians,@RepJohnConyers,"RT @RepCarbajal: Being American is about more than a piece of paper. What matters are your hopes, dreams, and a belief in a better tomorrow…" +10/09/2017,Politicians,@RepJohnConyers,This President is simply not serious about finding solutions to this country’s challenges. https://t.co/Pr9K1P8NJX +10/06/2017,Politicians,@RepJohnConyers,"Will continue to fight for the rights of all of you to be free from discrimination no matter gender, gender identit… https://t.co/wnMVz4j0G3" +10/06/2017,Politicians,@RepJohnConyers,I call on my colleagues on both sides of the aisle to come to the table and find real solutions for all Americans. #TrumpEconomy +10/06/2017,Politicians,@RepJohnConyers,It is clear that Trump & this Republican Congress are more concerned with giving the top 1% tax breaks than helping middle class Americans. +10/06/2017,Politicians,@RepJohnConyers,Average jobs growth is far below 193k jobs created monthly under @barackobama in 2016. +10/06/2017,Politicians,@RepJohnConyers,"As Republicans meet behind closed doors to slash taxes for the wealthy, today's job report shows 33k were lost in September. #TrumpEconomy" +10/06/2017,Politicians,@RepJohnConyers,Our nation comes together in times of need. Puerto Rico & US Virgin Islands should be no different. We must stand with #OurFellowAmericans +10/06/2017,Politicians,@RepJohnConyers,#OurFellowAmericans in Puerto Rico & US Virgin Islands need help as they recover. We must deploy every resource to provide relief +10/06/2017,Politicians,@RepJohnConyers,Today’s rule is no different. Shame on @realDonaldTrump for this dangerous rule that sets our country backward & limits women’s #reprorights +10/06/2017,Politicians,@RepJohnConyers,"Since #POTUS' first day in office, his admin & @HouseGOP have relentlessly attacked women’s #reprorights & access to care." +10/06/2017,Politicians,@RepJohnConyers,"This rule allows virtually anyone - + bosses, health plans, & schools - to discriminate against women by refusing to cover #birthcontrol." +10/06/2017,Politicians,@RepJohnConyers,".@POTUS just released a contraception rule that would rip guaranteed #birthcontrol away from countless women. +https://t.co/nbtfl4Ak5t" +10/05/2017,Politicians,@RepJohnConyers,#DREAMers: TODAY is the deadline for renewal. My colleagues & I have your backs & we'll fight to pass the #DREAMAct… https://t.co/lkHcrCqfJG +10/05/2017,Politicians,@RepJohnConyers,RT @NancyPelosi: Republicans need to stop misleading Americans and tell the truth: their tax plan will raise taxes on middle class families… +10/05/2017,Politicians,@RepJohnConyers,RT @HouseJudiciary: @RepGoodlatte @RepJohnConyers @JimPressOffice @JacksonLeeTX18 REMINDER: Tune in at 9:45AM on Facebook as we unveil to #… +10/05/2017,Politicians,@RepJohnConyers,"Join us this morning, folks. https://t.co/1BVNzIQjHS" +10/04/2017,Politicians,@RepJohnConyers,"America Has Never Truly Atoned For Slavery. Conyers Has Pressed the Issue for Nearly 30 Years. +Via @myblackmindd + +https://t.co/Dqa4VzUeZz" +10/04/2017,Politicians,@RepJohnConyers,The #Equifax data breach shook public confidence in the entire credit rating industry. https://t.co/lrGGeEoP07 +10/04/2017,Politicians,@RepJohnConyers,"RT @RepDonBeyer: We raised the issue of forced arbitration (the #RipoffClause) to Equifax' CEO, and their response entirely failed to addre…" +10/04/2017,Politicians,@RepJohnConyers,RT @RepDonBeyer: As House & Senate hold hearings on Equifax @SenateGOP is quietly courting votes to repeal consumer protections & reinstate… +10/04/2017,Politicians,@RepJohnConyers,RT @RepDonBeyer: New OpEd w/ @HouseJudDems Ranking Member @RepJohnConyers @RepHankJohnson @davidcicilline on forced arbitration here: https… +10/04/2017,Politicians,@RepJohnConyers,RT @RepRobinKelly: Too many communities have seen terrible tragedies. Watch @HouseDemocrats take a stand to #EndGunViolence at 9 am ET.http… +10/03/2017,Politicians,@RepJohnConyers,Read my statement to #HR36. ⬇️ https://t.co/zarr2deDV0 +10/03/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: RM @RepJohnConyers: #HR36's exception for victims of rape is woefully inadequate. #VOTENO https://t.co/H1KCajPF23 +10/03/2017,Politicians,@RepJohnConyers,This is extremely disappointing 🤦🏽‍♂️ https://t.co/FwBvukrLSa +10/03/2017,Politicians,@RepJohnConyers,"RT @NRDems: After @RepRaulGrijalva & @RepJohnConyers urge @SpeakerRyan 2 pull shameful #SHAREAct, Ryan pulls SHARE Act https://t.co/btvL9fG…" +10/03/2017,Politicians,@RepJohnConyers,"#HR36 is opposed by civil liberties groups, women’s organizations, medical providers, and a coalition of 15 nationa… https://t.co/ZCDhS0Jcwv" +10/03/2017,Politicians,@RepJohnConyers,#HR36 is the fifth @HouseGOP vote to attack women’s health care so far in the 115th Congress. #VOTENO https://t.co/eqNOaZ50eK +10/03/2017,Politicians,@RepJohnConyers,"RT @NancyPelosi: #DREAMers, make sure you mail your DACA renewal application today to make sure it’s received by the Oct 5 deadline. https:…" +10/03/2017,Politicians,@RepJohnConyers,"Today, @HouseGOP, will bring up a bill that is designed to restrict women’s access to the full range of health care… https://t.co/GD05fWvRdc" +10/03/2017,Politicians,@RepJohnConyers,Proud to see #Detroit leading the way to a more sustainable automotive future. Congrats to @GM on this bold plan https://t.co/vSgsCHCcO4 +10/03/2017,Politicians,@RepJohnConyers,No one should be in jail for months or years pending deportation. We need a humane alternative to indefinite detention. +10/03/2017,Politicians,@RepJohnConyers,The Dignity for Detained Immigrants Act fixes our broken system and removes the profit motive behind the jailing of thousands of people. +10/03/2017,Politicians,@RepJohnConyers,I fully back @RepAdamSmith & @RepJayapal’s Dignity for Detained Immigrants Act of 2017. #DignityandJustice +10/03/2017,Politicians,@RepJohnConyers,"RT @RepThompson: If GOP Congress does nothing, its Leadership is complicit. We must establish a Select Committee on Gun Violence. #EndGunVi…" +10/02/2017,Politicians,@RepJohnConyers,Read my entire statement ⬇️ https://t.co/650JZwkuPb +10/02/2017,Politicians,@RepJohnConyers,...we find ourselves once again putting out statements of condolences. Moments of silence are just not enough. +10/02/2017,Politicians,@RepJohnConyers,"@HouseGOP ...adopt legislation designed to actually make Americans safer from gun violence. #Congress must act, and it must do so before..." +10/02/2017,Politicians,@RepJohnConyers,My @HouseGOP colleagues refuse to hold hearings on the scourge of #gunviolence in our country or... +10/02/2017,Politicians,@RepJohnConyers,"...remove military-type weaponry from our streets, but it ignores the existence of this epidemic in its entirety." +10/02/2017,Politicians,@RepJohnConyers,Not only does Congress refuse to pass legislation that strengthens #backgroundchecks or... +10/02/2017,Politicians,@RepJohnConyers,It is unfathomable that Congress’s response to these mass shootings continues to be that of complete inaction. +10/02/2017,Politicians,@RepJohnConyers,"This horror has no place in our country, and I pray for those affected today." +10/02/2017,Politicians,@RepJohnConyers,"I am heartbroken for these families who have lost sons, daughters, mothers, fathers, brothers and sisters." +10/02/2017,Politicians,@RepJohnConyers,Many families woke up this morning with their lives completely shattered. +10/02/2017,Politicians,@RepJohnConyers,🆕 Conyers On Horrific #LasVegasShootings Shooting: Congress Must Hold Hearings On #GunViolence 🆕 https://t.co/xmQpwcgkWp +10/02/2017,Politicians,@RepJohnConyers,"It is not enough to simply hold a moment of silence, or place U.S. flags at half-staff; we have to do the work to p… https://t.co/ds3tipWZT2" +09/29/2017,Politicians,@RepJohnConyers,A tragedy such as this one must never occur again. We will be closely monitoring this situation. +08/31/2007,Politicians,@dickcheney,"Won a baboon on eBay. Condition as-is, but I'm going to use the little guy for parts anyway. Never know when the ticker might blow a valve." +07/22/2007,Politicians,@dickcheney,Slept through alarm clock yesterday. Didn't wake up in time to launch full-scale nuclear attack on world while President. I'm such an ass. +07/21/2007,Politicians,@dickcheney,Hangin' in the oval tomorrow during G's colonoscopy. I'm thinking a club sandwich aroun noon and then bomb the fuck out of Iran at 2:30. +04/24/2007,Politicians,@dickcheney,Heh. Kucinich thinks he can impeach me. Nothing a little blot clot in the leg can't fix. Suckas! http://tinyurl.com/3c2xrx +04/11/2007,Politicians,@dickcheney,"Heh. CNN and MSNBC were all over me last week. Pretty cool how we got Imus to take one for the team over the last four news cycles, huh?" +04/10/2007,Politicians,@dickcheney,Working on my BYU commencement address. Thinking about trying out some new Iraq/Al Qaeda material. It's so gonna kill with the kids. +04/07/2007,Politicians,@dickcheney,Told Lynne she looked hot last night. She just stared and shook her head. Did I miss something? It's like no one believes anything I say. +04/07/2007,Politicians,@dickcheney,Just heard that Jesus was killed in Jerusalem this afternoon. Looks like a couple tomahawks are in Palestine's future. +04/06/2007,Politicians,@dickcheney,Starting to think that potato-powered mind control device I bought out of Popular Mechanics back in '02 isn't working as advertised. +04/06/2007,Politicians,@dickcheney,"Picked up a new CD today. ""Drums and Guns"" by some band named Low. Rove said it was right up my alley...that guy's a total prick." +04/05/2007,Politicians,@dickcheney,Left arm's tingling again. It's gonna rain tomorrow. +06/22/2018,Politicians,@GregForMontana,"Welcome back to Big Sky Country, @DonaldJTrumpJr. Thank you for standing with us!" +06/15/2017,Politicians,@GregForMontana,I’m ready to go to work and serve the people of Montana! https://t.co/fWwi3E2bo5 +06/15/2017,Politicians,@GregForMontana,It was an honor to present these pins to our Vietnam veterans. Welcome home and thank you for your service. https://t.co/rfLchIwuZh +06/15/2017,Politicians,@GregForMontana,I delivered my first official speech today since being elected Congressman at the VFW State Convention in Billings.… https://t.co/KQCbji7LHy +06/14/2017,Politicians,@GregForMontana,"My heart broke with news of this morning’s shooting. Susan and I are praying for @SteveScalise, staff, and the @CapitolPolice." +06/10/2017,Politicians,@GregForMontana,Proud to be here in Billings for the @MTGOP State Convention! #UnitedWeStand https://t.co/9Y1zo6l1mS +05/29/2017,Politicians,@GregForMontana,Truly thankful to all the men and women who gave their lives to defend our country & protect our freedoms #MemorialDay #USA +05/26/2017,Politicians,@GregForMontana,Thank you @RobQuistforMT for a spirited race; I promise to listen to the voices of all Montanans -Greg #mtpol +05/26/2017,Politicians,@GregForMontana,"Thank you, Montana. I am humbled by this incredible honor. I will always be on Montana's side. https://t.co/yZtYbPtRAl" +05/24/2017,Politicians,@GregForMontana,"I will defend the Second Amendment, and our access to public lands. https://t.co/by6FguoTFU" +05/24/2017,Politicians,@GregForMontana,It was great seeing everyone in Helena today! #GOTV #mtpol https://t.co/hqvmHLSdsj +05/24/2017,Politicians,@GregForMontana,Incredible turnout in Helena! #GOTV #mtpol https://t.co/jQ1lTaqqQR +05/24/2017,Politicians,@GregForMontana,"What an incredible honor to be endorsed by three of MT’s biggest +newspapers. Thank you @missoulian @billingsgazette… https://t.co/pRFj9Cmf8q" +05/24/2017,Politicians,@GregForMontana,Thank you to all who came out in Missoula this morning! #GOTV #mtpol https://t.co/wKKEdZbbjD +05/24/2017,Politicians,@GregForMontana,Thank you Kalispell for a great evening! #GOTV #mtpol https://t.co/xsyU33fsFr +05/23/2017,Politicians,@GregForMontana,What a warm welcome in Hamilton today! #GOTV #mtpol https://t.co/Vj8krU7gMY +05/23/2017,Politicians,@GregForMontana,Support is strong in Ravalli County! #GOTV #mtpol https://t.co/TFcdxf8YfC +05/23/2017,Politicians,@GregForMontana,Great turnout in Great Falls! Encouraged by your support! #GOTV #mtpol https://t.co/LWgy33UeBu +05/23/2017,Politicians,@GregForMontana,"Sarge and Troy, thanks for having me on this morning. #WhenInGreatFalls #GOTV #mtpol https://t.co/MqNhIiNVlX" +05/23/2017,Politicians,@GregForMontana,Appreciate​ seeing everyone last night in Billings! #GOTV #mtpol https://t.co/mTcizPMh2n +05/22/2017,Politicians,@GregForMontana,The path to job creation starts with protecting small businesses like the ones I visited today in Billings.… https://t.co/SkLuDkr9Ud +05/22/2017,Politicians,@GregForMontana,Thank you @SteveDaines for all your support! https://t.co/D7jY8hgcUP +05/22/2017,Politicians,@GregForMontana,Had a great time at the Billings Rotary Club today. Thank you for having me! https://t.co/RS5wPKH8hd +05/22/2017,Politicians,@GregForMontana,Breakfast in Billings? Stella’s is a must. Great food. Great people. #WhenInBillings #mtpol https://t.co/zE3eItnwM5 +05/22/2017,Politicians,@GregForMontana,Thank you @406Arneson for having me on @VoicesofMT! #WhenInBillings #mtpol https://t.co/0CL3Gz7ozc +05/22/2017,Politicians,@GregForMontana,Thanks for having me on @CatCountry1029 this morning. Always enjoy talking with you guys. https://t.co/CnAHyloDCw +05/21/2017,Politicians,@GregForMontana,Wonderful time at the #BuckingHorseSale this weekend! #mtpol https://t.co/7oJtfs2UNC +05/21/2017,Politicians,@GregForMontana,RT @gianforte: Me with Cooper the Miles City Bucking Horse Mutton Busting Champion and his new championship buckle. (He told me he practice… +05/20/2017,Politicians,@GregForMontana,Thank you to all our brave servicemen and women. We are eternally grateful for your dedication and sacrifice. #ArmedForcesDay +05/20/2017,Politicians,@GregForMontana,Great to be back in Miles City for the Bucking Horse Sale! #mtpol https://t.co/33usBljYhj +05/20/2017,Politicians,@GregForMontana,Thank you for a great day in Crow Agency! #mtpol https://t.co/2O5VyyxRF4 +05/20/2017,Politicians,@GregForMontana,Honored to have these endorsements #mtpol https://t.co/RATeq3y9ay +05/19/2017,Politicians,@GregForMontana,Thank you Montana Logging Association for having me to speak at your convention luncheon today! https://t.co/Z1WgGvbZgY +05/19/2017,Politicians,@GregForMontana,"It’s the final stretch, and I need your help! Sign up to help: https://t.co/wKDIaNk1UT" +05/18/2017,Politicians,@GregForMontana,Susan and I made our votes official today. Have you voted yet? Learn how: https://t.co/wTqYGEA1Vw https://t.co/Xt15D6d8Xv +05/18/2017,Politicians,@GregForMontana,Beautiful ceremony. Incredible people. Congrats to all the athletes competing in the Special Olympics! https://t.co/b8yntjNbzT +05/17/2017,Politicians,@GregForMontana,Had a great visit with the Confederated Salish and Kootenai Tribes yesterday! https://t.co/JQjeP3gIZL +05/16/2017,Politicians,@GregForMontana,"There’s a lot of work to be done, but I’m ready for the challenge. Proud to have the endorsement of the @missoulian. https://t.co/QQSWSKyZC7" +05/16/2017,Politicians,@GregForMontana,Proud to receive the endorsement of the NFIB at Ron Terry Construction in Kalispell. https://t.co/jbm4b8SGxf +05/16/2017,Politicians,@GregForMontana,"Please join Susan and I in praying for the Broadwater County Sheriff’s office and the fallen deputy's family. +https://t.co/G1q8O9zJP2" +05/16/2017,Politicians,@GregForMontana,Good morning Kalispell! Did you catch my interview on @KGEZ1? https://t.co/dZsVrsV8UT +05/16/2017,Politicians,@GregForMontana,Thank you for your endorsement @helenaironline. I will always fight for our Montana way of life. https://t.co/Nyvdh89Vpa +05/15/2017,Politicians,@GregForMontana,It’s an honor to have earned the endorsement of the @billingsgazette https://t.co/fo0JZqO6nh +05/14/2017,Politicians,@GregForMontana,Congrats to all the runners this morning at the @HAVENMT Mother's Day 5K in Bozeman! https://t.co/zHOaAii8o5 +05/14/2017,Politicians,@GregForMontana,It was a beautiful morning yesterday cheering on all the runners at the Montana Women's Run in Billings! https://t.co/5kAdeLVjOD +05/14/2017,Politicians,@GregForMontana,RT @gianforte: Happy Mother's Day all Moms! My mom grew up on a dairy farm and taught math at a public HS while raising me and my brothers.… +05/14/2017,Politicians,@GregForMontana,"RT @MTGOP: Thank you @VP Pence, @Interior Sec @RyanZinke and Sen @SteveDaines! Get out and vote for @GregForMontana on May 25! #mtpol https…" +05/13/2017,Politicians,@GregForMontana,RT @mike_pence: Thank you Montana for helping make @realDonaldTrump the 45th President of the United States 🇺🇸. Let's send Greg Gianforte t… +05/13/2017,Politicians,@GregForMontana,RT @SteveDaines: Thumbs up for a great day in Montana with @VP & @GregForMontana! https://t.co/n9yH7JhdiF +05/13/2017,Politicians,@GregForMontana,Onward to victory! #mtpol https://t.co/AvT1aSiCmm +05/13/2017,Politicians,@GregForMontana,RT @RyanZinke: In good company-rallying the grassroots for @GregForMontana #gotv @mike_pence @SteveDaines #mtpol https://t.co/t2zaWjRe5B +05/13/2017,Politicians,@GregForMontana,"""America is back under @realDonaldTrump"" -@VP #mtpol https://t.co/bOVmclew6U" +05/13/2017,Politicians,@GregForMontana,Welcome back to Montana @VP! #mtpol https://t.co/Tu9dvqCbRX +05/13/2017,Politicians,@GregForMontana,I will always be on Montana's side! #mtpol https://t.co/GZJ4zsamMn +05/13/2017,Politicians,@GregForMontana,"RT @AGTimFox: Great to have a chance to meet with @SecretaryZinke, @SteveDaines and @VP Pence in Montana today! #MTPol #MTNews https://t.co…" +05/13/2017,Politicians,@GregForMontana,Thank you for all your support @RyanZinke! #mtpol https://t.co/XCg2XO7oRU +05/13/2017,Politicians,@GregForMontana,RT @SteveDaines: Getting the rally underway in Billings with @VP to support @GregForMontana! https://t.co/Xw0CMEM8Cj +05/13/2017,Politicians,@GregForMontana,.@SteveDaines kicks off the campaign rally in Billings! #mtpol https://t.co/jWNyGbHUAk +05/13/2017,Politicians,@GregForMontana,It's an honor to have you in Billings @VP! #mtpol https://t.co/GuJT6Psboj +05/13/2017,Politicians,@GregForMontana,Backstage ... @VP arrives at the Metra Pavilion! #mtpol https://t.co/tiPNX3j6eg +05/12/2017,Politicians,@GregForMontana,Today’s the day! This is your last chance to RSVP to see @VP in Billings with me today! https://t.co/OAF06wGFYT +05/12/2017,Politicians,@GregForMontana,RT @ChrisCoxNRA: Great day with @DonaldJTrumpJr @GregForMontana & @charliekirk11 in Montana fighting for freedom & our Second Amendment rig… +05/12/2017,Politicians,@GregForMontana,One last crowd with @DonaldJTrumpJr tonight in Great Falls! #trumpinmontana #mtpol https://t.co/pBx8jXHlyV +05/12/2017,Politicians,@GregForMontana,Proud to have the support of such a great group of volunteers! #TeamGreg https://t.co/M5ez4FDT00 +05/12/2017,Politicians,@GregForMontana,There’s still time! RSVP now to join me and my special guest @VP in Billings tomorrow! https://t.co/OAF06wGFYT +05/11/2017,Politicians,@GregForMontana,Eastern Montana gives a warm welcome to @DonaldJTrumpJr #TrumpInMontana #mtpol https://t.co/bBvknUGRHW +05/11/2017,Politicians,@GregForMontana,We’re going to need a bigger tent! People were lined up to see @DonaldJTrumpJr in Butte today. #TrumpInMontana… https://t.co/7lQivqEgkl +05/11/2017,Politicians,@GregForMontana,Welcome back to Montana @DonaldJTrumpJr! https://t.co/OE0AKhI1a5 +05/11/2017,Politicians,@GregForMontana,Butte is ready for @DonaldJTrumpJr @GregForMontana! #TrumpInMontana #mtpol https://t.co/CLaLdE1Mwc +05/11/2017,Politicians,@GregForMontana,First stop today in Helena! https://t.co/CMCDkoEB3Z +05/11/2017,Politicians,@GregForMontana,Packed house tonight at the Yellowstone County Lincoln Reagan Day Dinner! https://t.co/jeokIrASEN +05/11/2017,Politicians,@GregForMontana,Thank you @IslandMDGroup for welcoming me to your office today in Billings to talk about Montana jobs and entrepren… https://t.co/sdxIM5o9kz +05/10/2017,Politicians,@GregForMontana,RT @SteveDaines: Have you registered yet for the @VP in Billings? Visit: https://t.co/7vUBvAso2S. https://t.co/74XadJsjSG +05/10/2017,Politicians,@GregForMontana,"#ICYMI: @VP is coming to MT! Sign up now for your chance to +meet him! https://t.co/kjN0vqIr40" +05/10/2017,Politicians,@GregForMontana,Didn’t get to see @DonaldJTrumpJr when he was in Montana? Well he’s coming back! RSVP here: https://t.co/CiGsjVTEVq +05/10/2017,Politicians,@GregForMontana,"Busy two days in Eastern Montana. It’s great to be back! + +Malta -> Glasgow -> Opheim -> Scobey -> Culbertson https://t.co/eIa6y7WCyo" +05/09/2017,Politicians,@GregForMontana,".@DonaldJTrumpJr is coming back to MT! On deck: Helena, Butte, Sidney, Great Falls. Sign up to come out and see us! https://t.co/CiGsjVTEVq" +05/09/2017,Politicians,@GregForMontana,"I’m honored to announce that @VP will be joining me in +Billings this week. RSVP now to get the chance to meet him! https://t.co/QpPiZgwyZx" +05/06/2017,Politicians,@GregForMontana,Thank you Ravalli County Republican Women for inviting me to speak at the Lincoln Reagan Luncheon. https://t.co/OQt0yy8oTM +05/06/2017,Politicians,@GregForMontana,Beautiful morning at the Hamilton Farmer's Market! https://t.co/0OCHHzeE3w +05/06/2017,Politicians,@GregForMontana,Kicked off the weekend in Superior last night at the Mineral County Fairgrounds. https://t.co/hH3D4FJYXK +05/05/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr is joining me on the trail again! Those interested in attending can RSVP here: https://t.co/sXxx6n7xU1 +05/04/2017,Politicians,@GregForMontana,"Today, in honor of the #NationalDayofPrayer, we join together to pray for our leadership, and for the future of our country." +05/04/2017,Politicians,@GregForMontana,Best part of my day. Thank you for your support Sydney. I like your spirit too! https://t.co/EovazUdxGI +05/04/2017,Politicians,@GregForMontana,What a great group! Thanks to all who came out to our event at the Clubhouse in Fort Benton. https://t.co/5hUvWtALHg +05/04/2017,Politicians,@GregForMontana,I spoke with the Montana Economic Developers Association in Great Falls today about my top priorities: job creation… https://t.co/yU4Uy2XB1S +05/02/2017,Politicians,@GregForMontana,Tune in THIS Sunday for my Face the State interview with @dparkermontana & @mikedennison https://t.co/EbF5W8WRpB +05/02/2017,Politicians,@GregForMontana,I held a Veterans Roundtable in Bozeman today because our nation must keep its promises to our vets and ensure thei… https://t.co/j3RTk2Jiec +05/01/2017,Politicians,@GregForMontana,There’s always time for a stop at the Great Falls Gun Show. Now that’s what I call a great Saturday! https://t.co/1JvJERMhbj +05/01/2017,Politicians,@GregForMontana,Saturday was a big day across Montana! Thank you to all who came out to get out the vote on our #DayofAction! https://t.co/ipr2cTNyg3 +04/30/2017,Politicians,@GregForMontana,"""I will serve with compassion for those in need and a strong conviction to preserve the Montana way of life."" #mtpol" +04/30/2017,Politicians,@GregForMontana,"""If I'm elected, I'll go back to negotiate for Montana and Montana will win."" #mtpol" +04/30/2017,Politicians,@GregForMontana,"""I'm a businessman and an engineer. I know how to work hard and solve problems.""" +04/30/2017,Politicians,@GregForMontana,"""The path out of poverty is a job. That is what I've done my whole life. I've helped people learn how to get and create jobs""" +04/30/2017,Politicians,@GregForMontana,"""There are too many lawyers in Washington. We need problem solver. I'm an engineer... trained to solve problems."" #mtpol" +04/30/2017,Politicians,@GregForMontana,On the #2A the choice is clear: @GregForMontana has an “A” rating from the NRA; @RobQuistforMT has an “F” rating #mtpol +04/29/2017,Politicians,@GregForMontana,Today’s the day! Let’s rock ‘n roll. #mtdebate #mtpol #OnMontanasSide +04/29/2017,Politicians,@GregForMontana,We had an incredible turnout in Conrad for the Pondera LRDD last night! https://t.co/m0hBvU5z3B +04/29/2017,Politicians,@GregForMontana,Spent some time in Helena yesterday and sat down for a productive meeting with Montana’s Credit Unions. https://t.co/3vmA4rWLrO +04/28/2017,Politicians,@GregForMontana,Tune in this Saturday for the #MTDebate at 7pm on your local CBS station! #mtpol +04/28/2017,Politicians,@GregForMontana,Great visit with Sun Mountain Lumber yesterday. Thanks for showing me around! https://t.co/GU1ldMFokT +04/28/2017,Politicians,@GregForMontana,#Spotted yesterday in Deer Lodge: Mayor Cozby! #WhenInDeerLodge https://t.co/youhPcoj2g +04/27/2017,Politicians,@GregForMontana,Special thanks to the Deer Lodge Rotary Club for inviting me to speak about my plans for MT! https://t.co/fgnkTRvIul +04/26/2017,Politicians,@GregForMontana,Rob Quist wants to register your guns. We must STOP a national gun registry! https://t.co/cBZsqWzQa6 +04/25/2017,Politicians,@GregForMontana,Always great to see Ziggy and Stella #WhenInBillings https://t.co/chuhZcrCyf +04/24/2017,Politicians,@GregForMontana,Our 2nd Amendment rights are not up for negotiation. I will always defend the 2nd Amendment and our MT way of life. https://t.co/czkbquHebH +04/23/2017,Politicians,@GregForMontana,.@donaldjtrumpjr takes the stage for his fourth and final speech this weekend. Thank you Donald! https://t.co/TCi9KGB7AB +04/23/2017,Politicians,@GregForMontana,Thank you for the kind introduction @SteveDaines #trumpinmontana #mtpol https://t.co/n6HBPNE1a7 +04/23/2017,Politicians,@GregForMontana,Bozeman rally! #TrumpInMontana #mtpol https://t.co/SjG66VhKzQ +04/22/2017,Politicians,@GregForMontana,That's a wrap! See you in Bozeman tomorrow! https://t.co/BpXe8v6R4O +04/22/2017,Politicians,@GregForMontana,Thank you Yellowstone County for the warm welcome! The momentum is on our side! https://t.co/2t69GzYG8j +04/22/2017,Politicians,@GregForMontana,Last speech of the night! @Donaldjtrumpjr #mtpol #trumpinmontana https://t.co/7CkBOxLhvi +04/22/2017,Politicians,@GregForMontana,Thank you to all who joined us in Billings tonight! #mtpol #trumpinmontana https://t.co/JUUHIkUuRO +04/22/2017,Politicians,@GregForMontana,Getting ready for the final rally of the day in Billings! #TrumpInMontana #mtpol https://t.co/NM0SAVV66V +04/21/2017,Politicians,@GregForMontana,Incredible energy here in Hamilton today. #mtpol #trumpinmontana https://t.co/RytxPOxyCU +04/21/2017,Politicians,@GregForMontana,Onward to victory! https://t.co/9RdWOJGrRJ +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr takes the stage in Hamilton. #mtpol #trumpinmontana https://t.co/SvgaJ7Rvax +04/21/2017,Politicians,@GregForMontana,What a crowd! It’s a packed house here in Hamilton. @DonaldJTrumpJr. #TrumpInMontana #mtpol https://t.co/mG8lgHRraB +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr: It's time to respect America again. #TrumpInMontana #mtpol https://t.co/3EnLNubARc +04/21/2017,Politicians,@GregForMontana,Welcome back to Montana @DonaldJTrumpJr! #TrumpInMontana #mtpol https://t.co/92ICEV4RlN +04/21/2017,Politicians,@GregForMontana,I will always be on Montana’s side. Thank you Kalispell! #TrumpInMontana #mtpol https://t.co/iJLyOB8hDG +04/21/2017,Politicians,@GregForMontana,Steve Daines introduces Special Guest Ryan Zinke at #TrumpInMontana rally https://t.co/pgEKl1FChU +04/21/2017,Politicians,@GregForMontana,Make Montana Great Again! #MakeAmericaGreatAgain #TrumpInMontana #mtpol #MAGA https://t.co/O6rEnpiMWM +04/21/2017,Politicians,@GregForMontana,Backstage before our big rally in Kalispell! #trumpinmontana #mtpol https://t.co/ZpBP3plfvM +04/21/2017,Politicians,@GregForMontana,Here we go! Almost time for our event with @DonaldJTrumpJr in Kalispell. See you there! #TrumpInMontana https://t.co/wP2d9kDWG2 +04/21/2017,Politicians,@GregForMontana,Good morning Kalispell! Great to be on the air with John Hendricks on @600KGEZKalispel @600KGEZ https://t.co/WYkvnENGMe +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr is joining me on the trail tomorrow! It’s not too late to RSVP: https://t.co/nLBiGWdm8a +04/20/2017,Politicians,@GregForMontana,Stocking up on ammo for our prairie dog hunt this weekend @DonaldJTrumpJr #mtpol https://t.co/Ryj7tCNF7L +04/19/2017,Politicians,@GregForMontana,I had a great time hosting the @MontanaHighTech panel in Bozeman yesterday. Proud to see so many Montana entreprene… https://t.co/iBHfbcdR6m +04/18/2017,Politicians,@GregForMontana,Great day. Great people. Glad to be back in Butte! https://t.co/fUTgAScBss +04/18/2017,Politicians,@GregForMontana,Stopped by @KGVOAM radio in Missoula this morning. Always great to talk with you guys! https://t.co/jmsjIihzIh +04/18/2017,Politicians,@GregForMontana,We had a great turnout in Hamilton last night. Thanks for coming out! https://t.co/AWVduYF8Ly +04/18/2017,Politicians,@GregForMontana,It was an honor to moderate the @MontanaHighTech panel on the high level of entrepreneurship in Montana! https://t.co/Irnt7DqBDK +04/18/2017,Politicians,@GregForMontana,Join us in wishing Greg a happy birthday! Sign our card! – Team Greg For Montana https://t.co/DFURTjkJlR +04/16/2017,Politicians,@GregForMontana,"To all those celebrating, my family and I wish you a Happy Easter!" +04/15/2017,Politicians,@GregForMontana,It was a true honor to participate in the Pow Wow Grand Entry last night at @montanastate https://t.co/ibj3f0td9Q +04/14/2017,Politicians,@GregForMontana,"Had the chance to sit down to lunch with the Missoula Pachyderms, and share a bit about why I’m running for Congres… https://t.co/Mus8SIqCwr" +04/14/2017,Politicians,@GregForMontana,Joined a business roundtable with the @KalispellChambr. Great to discuss growing the economy and creating jobs with… https://t.co/qSbPFbxNez +04/14/2017,Politicians,@GregForMontana,Coming to you live from Missoula with Maritsa on @1025mountainfm's Mountain Morning Show. https://t.co/t1iIwZbe7P +04/14/2017,Politicians,@GregForMontana,Had a great time at our meet and greet today in Kalispell. Enjoyed talking to so many hard-working Montanans. https://t.co/cIQofqvGUx +04/14/2017,Politicians,@GregForMontana,Out on the campaign trail and had lunch with the Polson Republicans and shared a bit about my vision for Montana. https://t.co/e7SrUHiZGT +04/13/2017,Politicians,@GregForMontana,We must protect our Montana treasures and our way of life and that's why I oppose the Emigrant and Crevice mines. https://t.co/BqXbWFfWKy +04/12/2017,Politicians,@GregForMontana,Today I sat down for a roundtable discussion in Great Falls with Ag leaders from across MT to talk about the future… https://t.co/b2HMC9ZqTH +04/11/2017,Politicians,@GregForMontana,Never too early to get involved! Had a great chat with Charlie today when I met with the Helena Pachyderms.… https://t.co/CsD4nQAM7A +04/11/2017,Politicians,@GregForMontana,Got a bite to eat with the Helena Pachyderms today and discussed the importance of putting Montana first. Looking f… https://t.co/bcUhaBuhs0 +04/07/2017,Politicians,@GregForMontana,Congratulations #NeilGorsuch! Soon to be #JusticeGorsuch. Looking forward to seeing you take your place on the Court. #SCOTUS +04/06/2017,Politicians,@GregForMontana,Happy #MontanaDay! Thankful for quality family time spent enjoying the beautiful outdoors #406Day #BeehiveLake… https://t.co/HtwDjCivz1 +04/06/2017,Politicians,@GregForMontana,This filibuster is a disgraceful show of party politics. The Dems have let down their constituents & the nation. I stand with #NeilGorsuch. +04/05/2017,Politicians,@GregForMontana,ATTN MT: @SenatorTester plans to filibuster the #SCOTUS confirmation. Join me. Call on him to confirm #NeilGorsuch. https://t.co/atsj14PJAK +04/04/2017,Politicians,@GregForMontana,Had a great meeting with the Montana Building Industry Association. I look forward to protecting and promoting Mont… https://t.co/J2k89SitrA +04/03/2017,Politicians,@GregForMontana,"Obamacare isn’t working. Montanans have less choices and higher costs. It’s time for common sense reforms. +https://t.co/ehkEbdjQEG" +04/01/2017,Politicians,@GregForMontana,Had the privilege of meeting with @MT_Realtors about future opportunities for growth in Montana real estate. https://t.co/Y20G18wKMm +04/01/2017,Politicians,@GregForMontana,Best way to start the weekend? Flipping pancakes at the @VVAmerica Pancake Breakfast in Bozeman. It was an honor...… https://t.co/DoYgG7KIk8 +04/01/2017,Politicians,@GregForMontana,Thank you to the @MontanaChamber for having me today to discuss Montana’s business future. https://t.co/zFdOSjJcA2 +03/31/2017,Politicians,@GregForMontana,This morning I met with the @MHA_Montana in Helena and had a great discussion on health care solutions. https://t.co/uYviPTdult +03/31/2017,Politicians,@GregForMontana,Had a great time talking with Jay Scott at @KCAP950 today in Helena. https://t.co/SkNvhot24b +03/31/2017,Politicians,@GregForMontana,"DC insiders have rigged the system to cash in at your expense. That’s +why it’s time to #draintheswamp. https://t.co/EaYU1qNqnm" +03/31/2017,Politicians,@GregForMontana,Great to see Leif Welhaven and celebrate his big win at the @BillingsChamber awards. An award well earned! Congrats… https://t.co/vQOTRsxxYc +03/30/2017,Politicians,@GregForMontana,Great to see Billings Mayor Tom Hanel and Lisa Harmon at the @BillingsChamber breakfast! https://t.co/5chk98dl1l +03/30/2017,Politicians,@GregForMontana,Had a great discussion today with @LivinLargeLarry on @Mighty790KGHL in Billings. Thanks for having me Larry! https://t.co/ZJONMDDwac +03/28/2017,Politicians,@GregForMontana,I applaud @POTUS’ decision to repeal the EPA’s job-killing #CleanPowerPlan. This is a good news for Montana energy and Montana jobs. +03/27/2017,Politicians,@GregForMontana,I’m running for Congress for one simple reason: to put the people of Montana first: https://t.co/teGwzfxMNm +03/26/2017,Politicians,@GregForMontana,"You can count on me to fight back against Washington, D.C.’s War On The West. https://t.co/exWhGNpd1z" +03/25/2017,Politicians,@GregForMontana,Enjoyed swinging by the SWMBIA home show in Bozeman today. https://t.co/TggtsRm9fd +03/25/2017,Politicians,@GregForMontana,Today we honor #MedalofHonor recipients who went above and beyond the call of duty to defend our nation. Thank you. #NationalMedalOfHonorDay +03/24/2017,Politicians,@GregForMontana,"A great day for Montana! The #KeystoneXL will create high-paying jobs, improve energy security, and generate tax revenue. Thank you @POTUS." +03/23/2017,Politicians,@GregForMontana,It’s time for the Senate to confirm Neil Gorsuch – an excellent choice for #SCOTUS. Join me if you agree: https://t.co/KjQVe4ZFwx +03/22/2017,Politicians,@GregForMontana,"Things are heating up in the race for congress. I need your support, now more than ever, to defend Montana values. https://t.co/qKeZHA5MDV" +03/18/2017,Politicians,@GregForMontana,Susan and I had a great day here in Billings at the #StPatricksDay parade. We met a lot of proud Montanans. We’re t… https://t.co/KotNlFZu38 +03/17/2017,Politicians,@GregForMontana,Had a great conversation today with Jim Sargent at @1027News in Great Falls about my vision for Montana. Great talk… https://t.co/TnmIiUbj3W +03/17/2017,Politicians,@GregForMontana,"You can count on me to fight back against Washington, D.C.'s War On The West. https://t.co/OoD2y6E8ee" +03/15/2017,Politicians,@GregForMontana,Thank you @SteveDaines. Honored to call you a friend. https://t.co/YG7i7IHlbm +03/15/2017,Politicians,@GregForMontana,RT @RyanZinke: Congrats to @GregForMontana. I'm looking forward to calling you Congressman! +03/15/2017,Politicians,@GregForMontana,We’re hitting the ground running with our campaign. Check out our new website to learn more: https://t.co/atsj14PJAK +03/15/2017,Politicians,@GregForMontana,Thanks for your support @mooreplusone! https://t.co/8e8WU3vaNt +03/14/2017,Politicians,@GregForMontana,Stopped by @NBroadcasting today to talk with Montanans about why I'm running for Congress and my fight to give Mont… https://t.co/G871M6MUIY +03/11/2017,Politicians,@GregForMontana,Last week we launched our first ad. Check it out to see why I’m running for Congress! https://t.co/KVHkpTQHn1 +03/07/2017,Politicians,@GregForMontana,"Thank you, Montana GOP. I’m honored to have your support. Let’s get to work. https://t.co/9eEG0SGE50 https://t.co/dHmtJCsSK1" +03/07/2017,Politicians,@GregForMontana,Tonight Republicans from across Montana will meet in Helena. Thank you to all who made the trip. We appreciate your dedication to our party. +03/04/2017,Politicians,@GregForMontana,I’m committed to making sure that Montana’s voice is heard in Washington. Here’s why I’m running for Congress: https://t.co/H4qw8oAYkU +03/03/2017,Politicians,@GregForMontana,Today we launched our first ad in Montana’s Special Election. Check it out! https://t.co/H4qw8oAYkU +03/02/2017,Politicians,@GregForMontana,I’m running for Congress. It’s time to give power back to the people and ensure Montana’s voice is heard. Join me: https://t.co/b0kAglnHk8 +11/09/2016,Politicians,@GregForMontana,Kicking off election night with @GregLaMotteKULR in Bozeman. #MTpol https://t.co/HQa0qsbJC9 +11/08/2016,Politicians,@GregForMontana,Thank you to everyone who has been a part of our campaign! We are honored to have your support! #MTpol https://t.co/dG7aLqqCAw +11/08/2016,Politicians,@GregForMontana,I just voted in Bozeman. I encourage all Montana voters to get out and make your voices heard today! #MTpol https://t.co/7lTM84h2wX +11/08/2016,Politicians,@GregForMontana,Election Day is TODAY. I hope you'll stand with us by casting your vote for the Gianforte/Robinson ticket! #MTpol https://t.co/wm3ew7usRM +11/08/2016,Politicians,@GregForMontana,RT @DainesforMT: Make your voice heard and elect @RyanZinke to Congress -- I need a partner like him in Washington. #mtpol https://t.co/dgz… +11/08/2016,Politicians,@GregForMontana,RT @DainesforMT: Polls are now open across Montana. Montanans please join me today in electing @GregForMontana as our next Governor! #Vote… +11/07/2016,Politicians,@GregForMontana,RT @DainesforMT: We need @GregForMontana in Helena. #mtpol #WheatMontana https://t.co/c37oL2VkoM +11/07/2016,Politicians,@GregForMontana,"We've now driven over 64,000 miles! https://t.co/RlfOlPSuYP" +11/07/2016,Politicians,@GregForMontana,"@DainesforMT is back on the trail with us today, and we started this morning at KMMS in Bozeman. #MTpol #Sweep16 https://t.co/jjj7wWEARk" +11/06/2016,Politicians,@GregForMontana,Dropped in at Willie's Distillery in Ennis this afternoon! #MTpol #Sweep16 https://t.co/xheqDzojLD +11/06/2016,Politicians,@GregForMontana,Great time in Dillon at the Klondike. We finish the day in Ennis. #MTpol #Sweep16 https://t.co/yUl2HtRUZz +11/06/2016,Politicians,@GregForMontana,Great to be in Twin Bridges on a Sunday! Great support in Madison County! #MTpol #Sweep16 https://t.co/OeaW49u95u +11/06/2016,Politicians,@GregForMontana,An honor to speak tonight in Deer Lodge at the Rocky Mountain Stockgrowers Association Banquet! #MTpol #Sweep16 https://t.co/IF33gBWf6q +11/05/2016,Politicians,@GregForMontana,Whistle stop in Hamilton! #MTpol #Sweep16 https://t.co/qMAZkLWcf7 +11/05/2016,Politicians,@GregForMontana,Missoula is ready for new leadership in Helena! #Sweep16 #MTpol https://t.co/iMwZP4xYmX +11/05/2016,Politicians,@GregForMontana,Got started this morning at the Lake City Bakery in Polson! #MTPol #Sweep16 https://t.co/eeO8PLYJNq +11/05/2016,Politicians,@GregForMontana,Finished up a great day in Thompson Falls at the Rex Theater! Thanks to everyone in Sanders County for your support… https://t.co/ur8ObwFDY7 +11/04/2016,Politicians,@GregForMontana,Outstanding support tonight in Libby! Lincoln County is ready for new leadership in Helena! #MTpol #Sweep16 https://t.co/rS7I3iXFdY +06/02/2018,Politicians,@The_Tim_Murphy,There are dinosaurs all over my TV again +03/21/2018,Politicians,@The_Tim_Murphy,Thinking about dinosaurs +11/27/2016,Politicians,@The_Tim_Murphy,I try so hard +11/26/2016,Politicians,@The_Tim_Murphy,"RT @The_Tim_Murphy: If anyone's good at writing OkCupid bios, I'm struggling with mine a little bit http://t.co/OKgkrX0U0C" +11/18/2016,Politicians,@The_Tim_Murphy,Good morning to all my friends and followers on twitter +10/07/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: Excited for the weekend and also excited to never again be trapped on a tropical island full of dinosaurs trying to kil… +10/06/2016,Politicians,@The_Tim_Murphy,I was trapped in a kitchen with actual velociraptors holy christ +10/01/2016,Politicians,@The_Tim_Murphy,Going apple picking tomorrow. Between now and then I'll have some of the worst nightmares you could possibly imagine. +09/30/2016,Politicians,@The_Tim_Murphy,"Thanks to all who've checked in during my Twitter hiatus. I'm doing well, for someone who was hunted by velociraptors when I was 9 years old" +09/29/2016,Politicians,@The_Tim_Murphy,Listening to The National +07/23/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: The new Belle and Sebastian album is great. Dinosaurs tried to kill me when I was 9 years old and I'll always live with… +07/19/2016,Politicians,@The_Tim_Murphy,Tonight was actually pretty chill +07/01/2016,Politicians,@The_Tim_Murphy,"RT @The_Tim_Murphy: Once upon a time, the only thing separating me from the horrific jaws of a T. Rex was a pane of glass supported by my 9…" +07/01/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: It would be a dream come true to know with complete certainty that I will never be in a situation ever again where dino… +06/30/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: I think a lot about going back to Isla Nublar with a machine gun and just killing as many dinosaurs as I can +06/30/2016,Politicians,@The_Tim_Murphy,I'm still here +06/11/2016,Politicians,@The_Tim_Murphy,No +06/09/2016,Politicians,@The_Tim_Murphy,Getting a lot of new followers lately. It makes things maybe 3% better. +06/09/2016,Politicians,@The_Tim_Murphy,Doing karaoke for the first time tonight with my sister Lex haha. Dinosaurs came incredibly close to brutally killing us when we were kids. +06/07/2016,Politicians,@The_Tim_Murphy,I've started taking drawing classes +06/06/2016,Politicians,@The_Tim_Murphy,I am invincible +05/19/2016,Politicians,@The_Tim_Murphy,Thanks everyone who pointed out that electrocution by definition implies death. This is obviously an important distinction that I care about +05/18/2016,Politicians,@The_Tim_Murphy,I was electrocuted by a fence designed to contain massive prehistoric monsters. I just wanted to say that. +05/10/2016,Politicians,@The_Tim_Murphy,Crashed my bike +05/06/2016,Politicians,@The_Tim_Murphy,(These tweets are by @iamchrisscott and not the actual kid from Jurassic Park or the actor who played him. Please no more DMs asking.) +04/28/2016,Politicians,@The_Tim_Murphy,@morelessons thanks I try as hard as I can +04/28/2016,Politicians,@The_Tim_Murphy,@woogirl23 dinosaurs almost killed me when I was 9 years old +04/28/2016,Politicians,@The_Tim_Murphy,"If I get to 10,000 followers it still won't change what happened" +04/19/2016,Politicians,@The_Tim_Murphy,Just started screaming at the gym this morning +04/08/2016,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +04/07/2016,Politicians,@The_Tim_Murphy,I will never die +04/05/2016,Politicians,@The_Tim_Murphy,I tried washing my shoes in the washing machine and they shrunk and don't fit me anymore. So angry. +03/24/2016,Politicians,@The_Tim_Murphy,Tacos for lunch today +03/24/2016,Politicians,@The_Tim_Murphy,Dinosaurs very nearly killed me when I was 9 years old +02/16/2016,Politicians,@The_Tim_Murphy,I came close to dying several times. Maybe that has something to do with it. @DaveHughesRFPB +02/15/2016,Politicians,@The_Tim_Murphy,I hope everyone has a good Monday. I probably won't. +02/12/2016,Politicians,@The_Tim_Murphy,Interesting debate. Dinosaurs. +01/15/2016,Politicians,@The_Tim_Murphy,Excited for the weekend and also excited to never again be trapped on a tropical island full of dinosaurs trying to kill me. +01/03/2016,Politicians,@The_Tim_Murphy,My Christmas tree fell and broke a window. Nothing will ever go right for me. +12/31/2015,Politicians,@The_Tim_Murphy,My New Years resolution is once again to continue not being attacked and killed by dinosaurs. +12/20/2015,Politicians,@The_Tim_Murphy,Why the fuck would I ever do that @sweet_tortilla +12/20/2015,Politicians,@The_Tim_Murphy,Sorry I haven't tweeted in a while. I survived being trapped on an island with literal dinosaurs when I was 9 years old. +11/27/2015,Politicians,@The_Tim_Murphy,Yesterday when my aunt pulled the turkey out of the oven I thought it was a velociraptor and locked myself in the bathroom for 5 hours +11/21/2015,Politicians,@The_Tim_Murphy,TGINot getting killed by dinosaurs +11/07/2015,Politicians,@The_Tim_Murphy,"Just want to say how much I appreciate people constantly tweeting photos of dinosaurs at me. It's great for me, psychologically. Keep it up." +11/05/2015,Politicians,@The_Tim_Murphy,"Had a great night hanging out with Lex, not talking about the time an actual fucking tyrannosaurs rex tried to rip us into a hundred pieces." +10/29/2015,Politicians,@The_Tim_Murphy,Feels like there's a lot going on in the world +10/14/2015,Politicians,@The_Tim_Murphy,Forgot to put the top on the blender and got smoothie all over my kitchen +10/11/2015,Politicians,@The_Tim_Murphy,Listening to Veckatimest by Grizzly Bear. Such a beautiful album. Velociraptors hunted me when I was 9 years old. +10/09/2015,Politicians,@The_Tim_Murphy,A new Beach House album is exactly what I need. I say that as someone who was once trapped in a jeep that was shoved off a cliff by a T. Rex +10/01/2015,Politicians,@The_Tim_Murphy,Dinosaurs +09/23/2015,Politicians,@The_Tim_Murphy,I bought flowers for my girlfriend but forgot them at the store and when I went back to get them they were already gone +09/22/2015,Politicians,@The_Tim_Murphy,I blurted out something about dinosaurs at a job interview again. +09/14/2015,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +09/10/2015,Politicians,@The_Tim_Murphy,This presidential race is getting crazy! Also I was once trapped in a kitchen with actual velociraptors. I think about it constantly. +09/07/2015,Politicians,@The_Tim_Murphy,#LaborDay +09/04/2015,Politicians,@The_Tim_Murphy,Listening to the new Beach House album and not dying. +09/02/2015,Politicians,@The_Tim_Murphy,I'm listening to Neko Case and remembering that I was once nearly killed by actual dinosaurs +08/22/2015,Politicians,@The_Tim_Murphy,"Had a pretty rough time at the Museum of Natural History today. It's more of a Museum of Natural Present to me, in a lot of ways" +08/17/2015,Politicians,@The_Tim_Murphy,I'm alive. +08/16/2015,Politicians,@The_Tim_Murphy,Not a bad weekend. Certainly better than the weekend 20 years ago when dinosaurs tried incredibly hard to kill and eat me. +08/07/2015,Politicians,@The_Tim_Murphy,Eating a croissant +08/04/2015,Politicians,@The_Tim_Murphy,Sometimes in my dreams I'm a dinosaur and I kill a lot of humans. +07/30/2015,Politicians,@The_Tim_Murphy,I'll never be safe will I http://t.co/9vJZZpG6LR +07/29/2015,Politicians,@The_Tim_Murphy,Every shadow is a raptor +07/28/2015,Politicians,@The_Tim_Murphy,Listening to The National and thinking about my life +07/28/2015,Politicians,@The_Tim_Murphy,It would've been cool to see a stegosaurus. It would've been even cooler to not be trapped on an island where dinosaurs tried to kill me. +07/27/2015,Politicians,@The_Tim_Murphy,"The Chipotle near my office is closed today, unfortunately" +07/27/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy no... +07/27/2015,Politicians,@The_Tim_Murphy,"I still remember my grandpa calling me and inviting me to Isla Nublar and me saying ""Yeah, that sounds incredible! Dinosaurs! Wow!"" Christ." +07/26/2015,Politicians,@The_Tim_Murphy,I dropped my iced coffee walking back to my apartment. +07/25/2015,Politicians,@The_Tim_Murphy,"Listening to Sufjan Stevens, one of the best songwriters alive. Velociraptors tried to kill me when I was 9." +07/23/2015,Politicians,@The_Tim_Murphy,I'm sure they'll figure out a way to bring them back somehow. http://t.co/dVbA1vBjOj +07/23/2015,Politicians,@The_Tim_Murphy,They tried @NYid07 +07/23/2015,Politicians,@The_Tim_Murphy,Nothing can kill me +07/22/2015,Politicians,@The_Tim_Murphy,Dinosaurs +07/20/2015,Politicians,@The_Tim_Murphy,I became emotionally overwhelmed during Explosions in the Sky's set at Bonnaroo in 2011 and decided to forgive Dennis Nedry in my heart. +07/19/2015,Politicians,@The_Tim_Murphy,Got a pretty bad sunburn 😔 +07/18/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy can't stress this enough +07/17/2015,Politicians,@The_Tim_Murphy,New Wilco album! Perfect way to end the week. +07/17/2015,Politicians,@The_Tim_Murphy,Cooking classes with my girlfriend are mostly ok but I also associate kitchens with raptors trying to kill and eat me. So it's hard. +07/16/2015,Politicians,@The_Tim_Murphy,She's still crying and I feel so bad. +07/16/2015,Politicians,@The_Tim_Murphy,Having dinner at Lex's and the power went out. I made a joke about being careful with the flashlight and she just started crying. +07/15/2015,Politicians,@The_Tim_Murphy,Yoga helps +07/14/2015,Politicians,@The_Tim_Murphy,Say I had been 12 and not 9 when I visited Jurassic Park. That'd be 3 more years living as a person who hadn't been attacked by dinosaurs. +07/14/2015,Politicians,@The_Tim_Murphy,"My therapist says if I get to 10,000 followers, it won't change what happened." +07/13/2015,Politicians,@The_Tim_Murphy,"Age of Ultron is really good, but not as good as the first Avengers or Winter Soldier" +07/12/2015,Politicians,@The_Tim_Murphy,"I don't let my past define me. Specifically, I'm talking about the time I was viciously hunted by dinosaurs on a tropical island." +07/11/2015,Politicians,@The_Tim_Murphy,"Having a really nice afternoon, grilling with friends and listening to Grizzly Bear and The National." +07/10/2015,Politicians,@The_Tim_Murphy,Been listening to a lot of Wilco again +07/10/2015,Politicians,@The_Tim_Murphy,Sometimes I'll scroll through my followers and all I can see are dinosaurs. +07/09/2015,Politicians,@The_Tim_Murphy,Having a crappy time at Home Depot. +07/08/2015,Politicians,@The_Tim_Murphy,I love indie rock as much as I hated being attacked by velociraptors when I was 9 years old. +07/07/2015,Politicians,@The_Tim_Murphy,What's your favorite Arcade Fire song? Mine's a tie between Rebellion and Ready to Start. +07/07/2015,Politicians,@The_Tim_Murphy,It's been 2 decades. Where are they? Nowhere. They're cowards. +07/07/2015,Politicians,@The_Tim_Murphy,@aprildewdrops I'm committed to not being killed by one +07/07/2015,Politicians,@The_Tim_Murphy,Let's just see if a dinosaur has the fucking balls to come after me again. Let's see. +07/07/2015,Politicians,@The_Tim_Murphy,I'm not afraid of anything. Not anymore. +07/06/2015,Politicians,@The_Tim_Murphy,Sorry I haven't been tweeting much. I beat up a guy pretty bad and spent a few nights in jail. +07/02/2015,Politicians,@The_Tim_Murphy,My cousin Rob always wants to talk about dinosaurs at my family's 4th of July barbecues and I hate it so much. +07/02/2015,Politicians,@The_Tim_Murphy,Pretty nice morning eating cereal and listening to The National. +07/02/2015,Politicians,@The_Tim_Murphy,Nightmares about this. So often. +07/01/2015,Politicians,@The_Tim_Murphy,"My worst birthday was probably my 10th and that's mostly because, a few weeks before it, I was repeatedly attacked by dinosaurs." +06/30/2015,Politicians,@The_Tim_Murphy,"8,000 followers! Incredible. I never thought I'd where's the goat. where's the goat. where's the goat. wheres the goat wheres the goat where" +06/30/2015,Politicians,@The_Tim_Murphy,"Thank you for asking. We probably weren't thinking clearly, on account of being chased by the greatest predator in history. @ArsenaultJay" +06/30/2015,Politicians,@The_Tim_Murphy,I've lost my library card again. Sigh. +06/30/2015,Politicians,@The_Tim_Murphy,Some of you know specific details about what happened to me on Isla Nublar that nobody could possibly know and I can't figure out how... +06/29/2015,Politicians,@The_Tim_Murphy,"Sometimes I sleep in a tree in the park, just to remember." +06/29/2015,Politicians,@The_Tim_Murphy,What's some good new indie music out there? +06/29/2015,Politicians,@The_Tim_Murphy,I'm sure it can't hurt to say this: I never want dinosaurs to kill me. I wish they'd never tried in the first place. +06/28/2015,Politicians,@The_Tim_Murphy,I think a lot about going back to Isla Nublar with a machine gun and just killing as many dinosaurs as I can +06/27/2015,Politicians,@The_Tim_Murphy,@alaskasolo No it's good advice. I will take it to heart. +06/27/2015,Politicians,@The_Tim_Murphy,@alaskasolo Thank you Alaska +06/27/2015,Politicians,@The_Tim_Murphy,I just want to love and be loved. +06/26/2015,Politicians,@The_Tim_Murphy,Dinosaurs tried to kill me when I was 9 years old. +06/25/2015,Politicians,@The_Tim_Murphy,I know what I must become +06/25/2015,Politicians,@The_Tim_Murphy,"""Sorrow found me when I was young."" -The National. One of my favorite songs. And if you replace sorrow with velociraptors it applies to me." +06/25/2015,Politicians,@The_Tim_Murphy,Catching up on political news. Exciting presidential race shaping up. +06/24/2015,Politicians,@The_Tim_Murphy,"If they ever make a movie about my childhood I hope they call it ""This Is A Horrifying Nightmare For Everyone Involved, Especially The Kids""" +06/24/2015,Politicians,@The_Tim_Murphy,"If I had it to do over again, I would not have visited an island full of genetically engineered prehistoric monsters." +06/24/2015,Politicians,@The_Tim_Murphy,My neighbor's car alarm went off all night and I couldn't sleep at all +06/24/2015,Politicians,@The_Tim_Murphy,"Yes, if I'm being completely honest with myself. I would have tried to kill me too. It would be my nature." +06/23/2015,Politicians,@The_Tim_Murphy,"If I had been born a velociraptor, and not a human, would I have done the same thing?" +06/23/2015,Politicians,@The_Tim_Murphy,I have claws in my dreams sometimes +06/23/2015,Politicians,@The_Tim_Murphy,"Listening to Kill the Moonlight for the first time in awhile. Man, Spoon is such a great band." +06/22/2015,Politicians,@The_Tim_Murphy,"Imagine the amount of voltage it would take to contain a Tyrannosaurus Rex. Now imagine you, a human, coming into contact with that voltage." +06/22/2015,Politicians,@The_Tim_Murphy,I was also electrocuted. Did you know that? Dinosaurs hunted me mercilessly and in the midst of that I was also severely electrocuted. +06/22/2015,Politicians,@The_Tim_Murphy,My burrito tore in half at lunch and I got burrito all over my shirt +06/22/2015,Politicians,@The_Tim_Murphy,I cannot figure out my 401k. I also cannot figure out why complete strangers think I want to talk about dinosaurs just for the hell of it. +06/21/2015,Politicians,@The_Tim_Murphy,"Wow I crossed 7,000 followers. All is forgiven, universe! I'm just kidding." +06/21/2015,Politicians,@The_Tim_Murphy,This isn't happening http://t.co/6KtnTH95Ak +06/21/2015,Politicians,@The_Tim_Murphy,It would be a dream come true to know with complete certainty that I will never be in a situation ever again where dinosaurs try to kill me. +06/20/2015,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +06/20/2015,Politicians,@The_Tim_Murphy,I want all living things to like me and be nice to me +06/19/2015,Politicians,@The_Tim_Murphy,Here's hoping the new Mission: Impossible is good and also that someday I'll stop having nightmares about being ripped apart by dinosaurs. +06/19/2015,Politicians,@The_Tim_Murphy,Staying at a friend's cabin this weekend. Gonna fish and relax and just think for a while and sort some things out. Looking forward to it. +06/19/2015,Politicians,@The_Tim_Murphy,"No. + +Please. + +No." +06/19/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy No.... No.... +06/19/2015,Politicians,@The_Tim_Murphy,No. No. No. http://t.co/iRH2ESd8JL +06/19/2015,Politicians,@The_Tim_Murphy,Actual dinosaurs +06/18/2015,Politicians,@The_Tim_Murphy,We should have had indestructible tires by now +06/18/2015,Politicians,@The_Tim_Murphy,Death is for the weak. And I am not weak. I outsmarted a velociraptor. I looked death in the eyes and survived. I'm invincible. +06/18/2015,Politicians,@The_Tim_Murphy,I cannot be killed. I will never die. +06/17/2015,Politicians,@The_Tim_Murphy,Finally started listening to Serial. One episode in and I already see what all the hype was about. Very intriguing... +06/17/2015,Politicians,@The_Tim_Murphy,"Well, I didn't get the job I was interviewing for. I was also once trapped in a kitchen with 2 of the most horrific monsters in history." +06/17/2015,Politicians,@The_Tim_Murphy,"I gotta say, the new Best Coast album is growing on me" +06/17/2015,Politicians,@The_Tim_Murphy,Why didn't I just walk over and give Grant and Sattler that gun instead of yelling at Lex while she was trying to hack the park system? +06/16/2015,Politicians,@The_Tim_Murphy,I'm surprised they haven't figured out how to design better umbrellas than we have now +06/16/2015,Politicians,@The_Tim_Murphy,@kaythaney I gave up trying to figure out Tweetdeck a while ago +06/16/2015,Politicians,@The_Tim_Murphy,I'm alive and eating a taco salad. +06/16/2015,Politicians,@The_Tim_Murphy,Wake up. Eat breakfast. Go to work. Stay focused. No raptors. Stay focused. No raptors. Stay focused. +06/16/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy this is my life motto +06/16/2015,Politicians,@The_Tim_Murphy,"You guys really don't need to keep reminding me about Jurassic Park. It's not the kind of thing I'm going to, like, forget anytime soon." +06/15/2015,Politicians,@The_Tim_Murphy,My bag of groceries broke and then a kid kicked my scallops into the street and then a bus drove over them. Scallops are so expensive. +06/15/2015,Politicians,@The_Tim_Murphy,The new Florence and the Machine album is great. I was once trapped in a vehicle that was pushed off a cliff by an actual Tyrannosaurus rex. +06/15/2015,Politicians,@The_Tim_Murphy,.@Tashairina Arcade Fire +06/15/2015,Politicians,@The_Tim_Murphy,"Wow 6,000 followers. This is one of a couple of things I never imagined would happen to me." +06/15/2015,Politicians,@The_Tim_Murphy,"If I were to put together a list of things I don't need tweeted at me anymore, ""pictures of dinosaurs"" would probably be at the top." +06/14/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy Re-upping this in case any of my new followers are good at online dating. Could use some help. +06/14/2015,Politicians,@The_Tim_Murphy,"Thanks for writing, Conor @conairex" +06/14/2015,Politicians,@The_Tim_Murphy,"I just accidentally spent 4 hours staring at a glass of water, waiting to see if it would ripple." +06/14/2015,Politicians,@The_Tim_Murphy,Kintsugi has its moments but it'd be great to see Death Cab go back to its roots. I'm talking We Have the Facts or even Transatlanticism. +06/13/2015,Politicians,@The_Tim_Murphy,This velociraptor just hissed at me http://t.co/WTyH9QZZyR +06/13/2015,Politicians,@The_Tim_Murphy,Just listening to Grizzly Bear and thinking about my future +06/13/2015,Politicians,@The_Tim_Murphy,"I've gotten a lot of new followers tonight. I was also once mercilessly hunted by actual, real life dinosaurs. Both of these things are true" +06/12/2015,Politicians,@The_Tim_Murphy,"Yes, I'm aware. Thanks." +06/11/2015,Politicians,@The_Tim_Murphy,I think I need to go on a really long road trip alone +06/10/2015,Politicians,@The_Tim_Murphy,I can't tell you how much I'm looking forward to being able to watch TV again without seeing dinosaurs during every commercial break. +06/09/2015,Politicians,@The_Tim_Murphy,Sorry I should've clarified: Good movies that don't directly reference the single most traumatic experience of my entire life. +06/09/2015,Politicians,@The_Tim_Murphy,Are there any good movies coming out +06/09/2015,Politicians,@The_Tim_Murphy,@alexwatsonian what are you talking about +06/08/2015,Politicians,@The_Tim_Murphy,I will never die +06/05/2015,Politicians,@The_Tim_Murphy,@tobytobitobe Congrats on your amazing work at OFA. I regularly have nightmares about the time dinosaurs tried to kill me when I was 9. +06/04/2015,Politicians,@The_Tim_Murphy,Nothing ever stays the same. +06/02/2015,Politicians,@The_Tim_Murphy,Excited for the new Beach House album. Bloom was a masterpiece. +06/02/2015,Politicians,@The_Tim_Murphy,"I've been having nightmares about birds, of all things" +05/30/2015,Politicians,@The_Tim_Murphy,Still need to see Mad Max +05/27/2015,Politicians,@The_Tim_Murphy,"600 followers! I never imagined I'd get this far, especially given that, when I was 9 years old, dinosaurs tried very hard to kill me." +05/26/2015,Politicians,@The_Tim_Murphy,"@oliveiranth Anthony, thank you for clearing this up. In my defense, I was severely electrocuted and also, as an fyi, hunted by dinosaurs." +05/25/2015,Politicians,@The_Tim_Murphy,Just not crazy about Will Butler's solo album. And I say that as someone who loves Arcade Fire and was once hunted by velociraptors. +05/25/2015,Politicians,@The_Tim_Murphy,A list of things I used to be afraid but no longer am would include dinosaurs. I wonder if you could say the same. +05/21/2015,Politicians,@The_Tim_Murphy,Dennis Nedry +05/19/2015,Politicians,@The_Tim_Murphy,Gennaro +04/29/2015,Politicians,@The_Tim_Murphy,I'm considering taking up painting. +04/24/2015,Politicians,@The_Tim_Murphy,"Sometimes when I tweet, or do anything really, I'll get distracted remembering that I was once hunted by prehistoric monsters when I was 9." +04/19/2015,Politicians,@The_Tim_Murphy,Time to go to the mall +04/09/2015,Politicians,@The_Tim_Murphy,I'm out of oranges +03/28/2015,Politicians,@The_Tim_Murphy,"Listening to the new Modest Mouse album. Kinda underwhelmed. Unrelated but, velociraptors tried to kill me one time." +03/21/2015,Politicians,@The_Tim_Murphy,"The best part about surviving what I went through is having a therapist who won't stop referring to it as ""the dinosaur thing.""" +03/21/2015,Politicians,@The_Tim_Murphy,Sorry I don't tweet as much anymore. Dinosaurs. +03/20/2015,Politicians,@The_Tim_Murphy,I'm drinking a stout beer +03/01/2015,Politicians,@The_Tim_Murphy,"Excited for House of Cards, to say the least" +02/27/2015,Politicians,@The_Tim_Murphy,lol at the dress debate. I say it's black and blue but who knows! Prehistoric monsters almost killed me when I was 9. +02/24/2015,Politicians,@The_Tim_Murphy,Nothing can scare me +02/22/2015,Politicians,@The_Tim_Murphy,"Once upon a time, the only thing separating me from the horrific jaws of a T. Rex was a pane of glass supported by my 9-year-old arms." +02/19/2015,Politicians,@The_Tim_Murphy,I don't remember tweeting any of that the other night +02/17/2015,Politicians,@The_Tim_Murphy,I just screamed at the sunset. Make your move. +02/17/2015,Politicians,@The_Tim_Murphy,"I know what fear is. I know what it means to say ""I'm alive."" I'll take any one of you motherfuckers on any time. Come and get me." +02/17/2015,Politicians,@The_Tim_Murphy,I'd fucking love to see one of you survive what I did at Isla Nublar then turn around 2 decades later and crowd surf at an Arcade Fire show +02/17/2015,Politicians,@The_Tim_Murphy,This world doesn't have the balls to kill me +06/20/2018,Politicians,@JohnKerry,"Not surprisingly, The Boss says it best. This isn’t who we are, or who we should ever risk becoming - and fixing it… https://t.co/M2BnPEiFHX" +05/16/2018,Politicians,@JohnKerry,An important step towards fixing what’s been broken - kudos to @SecPompeo. https://t.co/8ZmTN8ruYs +05/16/2018,Politicians,@JohnKerry,Cancer is an evil foe - but Harry has more than our well-wishes in his corner going for him - he's got family and f… https://t.co/SrjTQZRN2X +05/16/2018,Politicians,@JohnKerry,"Thinking of @SenatorReid - the fourth and final Leader with whom I served in the Senate - and one of the toughest,… https://t.co/vRFsrdtwbh" +05/11/2018,Politicians,@JohnKerry,"Actually Jeff, you’re too kind. There are words - four letter ones. If @SenJohnMcCain and I didn’t know how to use… https://t.co/f7deHnfyOj" +05/08/2018,Politicians,@JohnKerry,My thoughts on President Trump’s Iran statement: https://t.co/E5A12PKnnx +05/02/2018,Politicians,@JohnKerry,"These comments are wrong, ugly, and unacceptable - anywhere from anyone - but particularly from anyone who says he… https://t.co/TEF6VdMOFR" +05/01/2018,Politicians,@JohnKerry,There was no negotiation - and all of that changed with JCPOA. Blow up the deal and you're back there tomorrow! 4/4 +05/01/2018,Politicians,@JohnKerry,It’s worth remembering that the early 2000's - when his evidence comes from - was the period where the world had n… https://t.co/VaJpQPz7Ec +05/01/2018,Politicians,@JohnKerry,Read their unprecedented letter in its entirety here: https://t.co/8NABgACTLW. Everything that PM Netanyahu laid ou… https://t.co/SwjdaX6kwA +05/01/2018,Politicians,@JohnKerry,Every detail PM Netanyahu presented yesterday was every reason the world came together to apply years of sanctions… https://t.co/vcPamZ0gty +05/01/2018,Politicians,@JohnKerry,Something I've never done before - and I'm not done writing - but it's been an interesting exercise looking back on… https://t.co/3Ta8IxVzgZ +04/26/2018,Politicians,@JohnKerry,Excited to team up with @TheRiseFund to try and create a private sector Marshall Plan: https://t.co/Y1S3BiZiD7 https://t.co/MJGH6NZENZ +04/23/2018,Politicians,@JohnKerry,Thank you @ourdailyplanet & @MonicaMedinaDC for the great questions & for all you do to highlight the enormous impa… https://t.co/gbu79V6rci +04/22/2018,Politicians,@JohnKerry,Thanks for hosting me @ozy - this was a lot of fun! https://t.co/B6GQi4F8z0 +04/20/2018,Politicians,@JohnKerry,"Just in time for #EarthDay, I had a great chat with @OurOcean CEO @InVeritas_Jones about the legacy of the… https://t.co/5Y0m0yH8HP" +04/19/2018,Politicians,@JohnKerry,My friend @David_Cameron has lived and led at the intersection of complicated global challenges - delighted to see… https://t.co/kNh0Rbz39O +04/18/2018,Politicians,@JohnKerry,My thoughts on the passing of Former First Lady Barbara Bush: https://t.co/8Ska9YiyhC +04/18/2018,Politicians,@JohnKerry,First she made BoA a corporate leader on coal pollution and now assault-style firearms. Bold moves to align the pub… https://t.co/sRgMcNPAvm +04/17/2018,Politicians,@JohnKerry,"Good one, David - that joke's as old as the Super Bowl Shuffle! #FiveRings https://t.co/HFXPktWCnd" +04/16/2018,Politicians,@JohnKerry,"Boston’s strength and courage lifted all of us up. Today I'm thinking of those we lost, their families and everyone… https://t.co/0bnM19sAld" +04/16/2018,Politicians,@JohnKerry,Five years ago and it feels like yesterday: I was trapped on a flight a thousand miles away when the bombs went off… https://t.co/lt0zOHcJln +04/02/2018,Politicians,@JohnKerry,Proud to join a bipartisan group of over 50 former national security leaders in filing a brief at the Supreme Court… https://t.co/Krx7J2JT6L +03/27/2018,Politicians,@JohnKerry,The always thoughtful @ErnestMoniz with an important piece on Iran/DPRK - does a nice job debunking the myth on su… https://t.co/GyfHpPGvP7 +03/02/2018,Politicians,@JohnKerry,Mentor to so many - she walks the walk: no coincidence that 40% of the management team is comprised of women. Still… https://t.co/A1gCMil4kS +03/02/2018,Politicians,@JohnKerry,"An important civic/business voice from Boston, everyone should watch this interview w/ @AnneFinucane. Anne's spent… https://t.co/OWuUZIpcQ5" +03/01/2018,Politicians,@JohnKerry,"Whether it was Mexico, Colombia, Cuba and more - Roberta demonstrated the difference diplomacy can make to advance… https://t.co/h2SE714N5M" +03/01/2018,Politicians,@JohnKerry,Grateful for all @EmbRoberta has contributed to the @StateDept - thirty-plus years of public service and respected… https://t.co/VhdqIY3vUW +02/28/2018,Politicians,@JohnKerry,"""We are children who are being expected to act like adults, while the adults are proving themselves to behave like… https://t.co/8MXcWVULJF" +02/28/2018,Politicians,@JohnKerry,".@emma4change: I can’t improve on your eloquence - but can tell you that when I wasn’t that much older, and wanted… https://t.co/GcQIFHcUlC" +02/27/2018,Politicians,@JohnKerry,Grateful to President @mbachelet for signing a decree to create the Rapa Nui Marine Protected Area around… https://t.co/ZBSvhakuUn +02/23/2018,Politicians,@JohnKerry,A powerful piece that I hope you'll all read. Thank you @johnfkirby63 and Meagan for sharing your inspiring story. https://t.co/SjFZDPzfbn +02/23/2018,Politicians,@JohnKerry,"A big congrats to @margbrennan – smart, tough, fair, responsible – we traveled a lot of miles together while I was… https://t.co/2xGZXsd9J0" +02/22/2018,Politicians,@JohnKerry,The police that Republicans love to give speeches praising support the assault weapons ban and I'd stand with them… https://t.co/vsxXYq2N1Y +02/22/2018,Politicians,@JohnKerry,Getting rid of assault weapons and strengthening background checks doesn't take anything away from the 2nd Amendmen… https://t.co/Fs3bO7JHoz +02/22/2018,Politicians,@JohnKerry,"Fed up that more than 13 years since the @GOP Congress let the assault weapons ban expire, we still can't settle a… https://t.co/gTYOFrmRPK" +02/14/2018,Politicians,@JohnKerry,Nice to be back in “the real Washington” where good things are actually happening to responsibly deal w/climate cha… https://t.co/Cb6dIlPT9t +02/09/2018,Politicians,@JohnKerry,"If you haven’t seen @IcarusNetflix, you should - a really powerful story. https://t.co/yC1XNOEXzQ" +02/08/2018,Politicians,@JohnKerry,A beautiful child of God - an important step by Gerber - and it’s about time! Hope to see lots more of this everywh… https://t.co/PahusUO3zU +02/07/2018,Politicians,@JohnKerry,Happy 106th birthday to a strong and witty woman of character. @SenJohnMcCain - I think might know where you got it… https://t.co/1HIrmt5i1X +02/07/2018,Politicians,@JohnKerry,Eight years later and despite what opponents predicted in 2010 - New START is a success. A good reminder about sou… https://t.co/DYMvqiHBot +02/06/2018,Politicians,@JohnKerry,"RT @StimsonEnvSec: Resource theft on the ocean is leading to economic, food, and environmental insecurity in coastal nations around the glo…" +02/02/2018,Politicians,@JohnKerry,"and the whole world suffers when that happens to America. In Watergate, the difference was, regardless of Party, ev… https://t.co/Ax68UmOj90" +02/02/2018,Politicians,@JohnKerry,"The Nunes memo is dangerous, ugly, and an assault on the integrity of the institutions of our country. I lived thro… https://t.co/N5ttpHQDPw" +02/01/2018,Politicians,@JohnKerry,Congrats on a well-deserved retirement for Tom Shannon. We are all - all ten secretaries he worked with - better of… https://t.co/8Nh2nlFy9p +01/30/2018,Politicians,@JohnKerry,Proud of my friend @LeoDiCaprio and the tremendous work the @DiCaprioFDN and their partners are doing worldwide to… https://t.co/04eKkmaOzk +01/25/2018,Politicians,@JohnKerry,Insightful piece by my friend @AnneFinucane on the impact of capital deployment to address some of the world’s most… https://t.co/3ew8jTzi1g +01/18/2018,Politicians,@JohnKerry,"A privilege to know we’ll soon be reading @jrezaian in the @washingtonpost again. Smart, courageous, and strong are… https://t.co/cjzr1EWOeY" +01/10/2018,Politicians,@JohnKerry,Grateful to my longtime friend @GovInslee and all of the leaders who are ensuring U.S. states step up to address cl… https://t.co/VX8UNnpQXo +12/31/2017,Politicians,@JohnKerry,"With humility about how little we know about what's happening inside Iran, this much is clear: it's an Iranian mome… https://t.co/hMUYKnKAnz" +12/20/2017,Politicians,@JohnKerry,RT @CarnegieEndow: .@JohnKerry explains how climate change can have a profound impact on national security. https://t.co/RFdIa0a44I +12/14/2017,Politicians,@JohnKerry,My friend @jonmacks1 - a gifted writer and class act - wrote this beautiful tribute to his mom. I would've liked to… https://t.co/dQkZc7W5xw +12/14/2017,Politicians,@JohnKerry,A must-read. Talent made my friend @Lin_Manuel an artist - but necessity made him an activist. https://t.co/RAVIh8gjwJ +12/12/2017,Politicians,@JohnKerry,"Too soon, Karen...too soon. https://t.co/SJwkFmYuPY" +12/12/2017,Politicians,@JohnKerry,"RT @CarnegieEndow: Two years ago today, most of the world’s countries adopted the Paris Climate Agreement. By pulling out of the agreement,…" +12/07/2017,Politicians,@JohnKerry,"Island-nation Palau announces all visitors now have to sign a contract, stamped in their passports, promising to pr… https://t.co/SoQm9iZFXD" +12/01/2017,Politicians,@JohnKerry,Always important and meaningful when @madeleine speaks out - we both lived it: Foreign Service is the backbone of o… https://t.co/H1GyEfxvDc +11/28/2017,Politicians,@JohnKerry,Wise words from two accomplished career diplomats - and I can promise you they don't ring this alarm bell lightly;… https://t.co/z2oNsGVhbz +11/27/2017,Politicians,@JohnKerry,Grateful to President @EPN for his tremendous leadership in making Mexico's Revillagigedo a national park and the l… https://t.co/KKCORcJjDu +11/20/2017,Politicians,@JohnKerry,Erik Jacobs' latest project captures something that's always made Boston and America special -… https://t.co/HuAjxUle8U +11/14/2017,Politicians,@JohnKerry,"Encouraged by what's happening at #COP23. The world is continuing to advance the Paris Agreement, unmoved by @POTUS… https://t.co/k2JNmjUITc" +11/13/2017,Politicians,@JohnKerry,Proud of the work that the @KerryInitiative & @JacksonYale is doing on climate change and beyond. Their summary rep… https://t.co/IAh8tetPbO +10/24/2017,Politicians,@JohnKerry,Amen @SenJohnMcCain. @JeffFlake has the courage of convictions in an institution built on far more than party. https://t.co/F1WFoAawJX +10/17/2017,Politicians,@JohnKerry,Just one of the many reasons I'm so proud of @VBKerry every single day. https://t.co/Hiloz1RtpG +10/13/2017,Politicians,@JohnKerry,It's all hands on deck standing up to President Trumps's dangerous decision on Iran. Here's my statement. https://t.co/VsTBwrqBZQ +10/12/2017,Politicians,@JohnKerry,This is huge problem. Smart analysis by @davideckelswade. I know @SenateCommerce/@EdMarkey will ask these q's too. https://t.co/VIvBX1rUlx +10/12/2017,Politicians,@JohnKerry,Thanks for sharing @jrpsaki! A terrific resource created by my colleagues at @CarnegieEndow. https://t.co/4eTrR8hIBw +10/06/2017,Politicians,@JohnKerry,Very excited to be teaming up with @juliepackard and @MontereyAq to tackle these critical issues. https://t.co/LjbMyt6JLp +10/06/2017,Politicians,@JohnKerry,"Thrilled to be in Malta to participate in #OurOcean. Grateful to Malta, @FedericaMog @KarmenuVella @EU_MARE for ho… https://t.co/Cr96Po2Xfl" +10/05/2017,Politicians,@JohnKerry,"Smart piece by @GerryConnolly. Thank you for your leadership, Congressman! https://t.co/LlzaZb0KKa" +10/05/2017,Politicians,@JohnKerry,".@johnfkirby63 tells it like is is here. Thank you, Admiral! https://t.co/48nASadsKv" +10/04/2017,Politicians,@JohnKerry,"When @ErnestMoniz talks, I listen - and you should too. Well done, Ernie! https://t.co/BU5xylWExb" +10/03/2017,Politicians,@JohnKerry,"True to form, @SenatorShaheen is right. I hope so too. https://t.co/a5JHaYTwOB" +10/02/2017,Politicians,@JohnKerry,https://t.co/D47ZLrx8Mj +09/30/2017,Politicians,@JohnKerry,Putting myself back in the shoes of those who may have to vote. Here's how we got to the nuclear deal that works. https://t.co/yzSiA9OMjw +09/29/2017,Politicians,@JohnKerry,"Congrats @StimsonCenter, @NatGeo, RADM Sharp for highlighting the need to combat #IUUfishing for the security of… https://t.co/GvQhjZxPNG" +09/25/2017,Politicians,@JohnKerry,Eager to head to Malta next week for #OurOcean. Thank you @KarmenuVella & @FedericaMog for continuing strong global… https://t.co/FZptnscW46 +09/21/2017,Politicians,@JohnKerry,"Congrats to @investinclimate: a long-time member of my team, a super-smart environmentalist and an even better pers… https://t.co/E2ylWO46kc" +09/21/2017,Politicians,@JohnKerry,"A well-deserved honor by my friend, the incomparable @AnneFinucane! #FortuneMPW https://t.co/8AIOJjOx3d" +09/21/2017,Politicians,@JohnKerry,Some highlights from the productive/insightful #YaleClimateConference. A big thanks to all of our brilliant guests. https://t.co/jNqPAfFue6 +09/19/2017,Politicians,@JohnKerry,@LeoDiCaprio .@LeoDiCaprio & @dicapriofdn walks the walk/talks the talk. Proud of all he does to combat climate cha… https://t.co/MppDRfkgkg +09/19/2017,Politicians,@JohnKerry,Thrilled to have hosted @LeoDiCaprio at the #YaleClimateConference today. Watch his remarks/our conversation here: https://t.co/EXNe5dv0xI +09/19/2017,Politicians,@JohnKerry,RT @Yale: WATCH LIVE: @JohnKerry & @LeoDiCaprio discuss citizen engagement & activism at #YaleClimateConference https://t.co/DDh7zZ4VmP @Ja… +09/19/2017,Politicians,@JohnKerry,Climate change has no political affiliation-it affects us all.Talking bipartisan solutions w/61st SecState Jim Bake… https://t.co/QF7Knww8Ny +09/19/2017,Politicians,@JohnKerry,All-star #YaleClimateConference line-up: @GovInslee @Anne_Hidalgo @JimYongKim @JerryBrownGov discuss the roles citi… https://t.co/pZ7ZupEEHP +09/18/2017,Politicians,@JohnKerry,Great #YaleClimateConference discussion w/@AnneFinucane @JeffImmelt @PaulsonInst on the private sector's role in c… https://t.co/DDbsC4vL8h +09/18/2017,Politicians,@JohnKerry,Delighted to welcome energy experts like @ErnestMoniz & @Hewlett_Found's Jonathan Pershing to help kick off the… https://t.co/8kkQJXP7pk +09/18/2017,Politicians,@JohnKerry,RT @Yale: Watch sessions of the #YaleClimateConference via livestream https://t.co/vpuidWmKcT @KerryInitiative @YaleJackson @YaleFES @YaleS… +09/18/2017,Politicians,@JohnKerry,Proud to host the first #yaleclimateconference this week with the @KerryInitiative & @JacksonYale. We must face th… https://t.co/xdoLaDHbe5 +09/13/2017,Politicians,@JohnKerry,Always fun to spend time w/ @SenJohnMcCain. Funny how life always brings us full circle. Don't miss @KenBurns &… https://t.co/e682o85ztV +09/01/2017,Politicians,@JohnKerry,Some important thoughts from @CarterCenter on the #Kenya Supreme Court Ruling. https://t.co/KxjRP9DNK4 +08/23/2017,Politicians,@JohnKerry,The ocean isn't a commodity to be bought and sold. We must put Pacific bluefin tuna on a path to recovery - now:… https://t.co/eSxuuHg13Q +08/15/2017,Politicians,@JohnKerry,I’ll be on @WEEI @NESN @TheJimmyFund Radio-Telethon at 10:15a today. Call 877-738-1234 to help #KCANCER. Listen on https://t.co/cL4nVxLUSq +08/14/2017,Politicians,@JohnKerry,All the people of Kenya are in my thoughts. I urge all to resolve complaints through the courts & for police to all… https://t.co/h8qCK9yu4k +08/14/2017,Politicians,@JohnKerry,@POTUS 3. @potus has been tougher naming/shaming an American CEO and Senate Majority Leader than a domestic terrori… https://t.co/8te9y43FBP +08/14/2017,Politicians,@JohnKerry,@POTUS 2. @potus empowered the worst of the worst to hear exactly what they wanted to hear. +08/14/2017,Politicians,@JohnKerry,"1.No matter what @potus says now-first instincts always revealing; his was to look into the camera and say ""many sides""-that cant be erased." +08/12/2017,Politicians,@JohnKerry,2) The United States condemns it overseas and needs to start to do same at home. +08/12/2017,Politicians,@JohnKerry,"1) What we've seen today in #Charlottesville needs to be condemned and called what it is: hatred, evil, racism & homegrown extremism." +08/08/2017,Politicians,@JohnKerry,An inspiring day in Kenya watching democracy in action. Enthusiastic voters not fazed by long lines - all agree ele… https://t.co/k1C9mEqAna +08/07/2017,Politicians,@JohnKerry,A powerful statement from @BarackObama. The stakes are high in Kenya this Election Day and I'm hopeful the nation i… https://t.co/peX01MsUbc +08/07/2017,Politicians,@JohnKerry,"Glad to be on the ground in Nairobi for this key election. There's a lot riding on a free, fair and safe election.… https://t.co/qsih8rvsbv" +08/01/2017,Politicians,@JohnKerry,Traveled many miles w/Mark in 2004. A fair reporter with great senses of both decency and humor. He'll be missed. https://t.co/u3zlUsnT7x +07/27/2017,Politicians,@JohnKerry,"An unsurprisingly spot-on piece by my fmr Asst Secretary @johnfkirby63. Keep it up, Admiral! https://t.co/UDC6vpDCZe" +07/26/2017,Politicians,@JohnKerry,"@POTUS 5) Instead, this is just conjuring up fake excuses to discriminate/distract. We’re better than this." +07/26/2017,Politicians,@JohnKerry,@POTUS 4) Nor is this decision in line with America's traditional role setting standard for other countries to treat people with dignity. +07/26/2017,Politicians,@JohnKerry,@POTUS 3) Nothing about today’s announcement is in line with our nation’s values. +07/26/2017,Politicians,@JohnKerry,2) Harry Truman didn't break down barriers with an executive order just to have @POTUS try and build them back up via a tweet. +07/26/2017,Politicians,@JohnKerry,1) America has always been strongest when we find a place for everyone willing to lay down their life to serve. +07/25/2017,Politicians,@JohnKerry,"Bob was a legendary fund-raiser - but he was an even better father, grandfather, husband and friend. Thinking about… https://t.co/QdCfmDgGO6" +07/21/2017,Politicians,@JohnKerry,@USEmbassyTurkey This is a crucial post and Amb. Bass is the right officer for the job. +07/21/2017,Politicians,@JohnKerry,Big congrats to @USEmbassyTurkey Amb John Bass on his nom to be COM in Kabul. Grateful he & Holly (the ultimate tea… https://t.co/cDm83c5ZwW +07/20/2017,Politicians,@JohnKerry,"Well said, Meghan. Teresa and I are thinking of you, your dad, and the entire family tonight. https://t.co/NFDo2pwAt0" +07/20/2017,Politicians,@JohnKerry,"I love @SenJohnMcCain. Unbeatable, unbreakable. He's Teddy Roosevelt's ""man in the arena"" even when we're on opposi… https://t.co/rkLNj5ToVL" +07/14/2017,Politicians,@JohnKerry,2) A place where from FDR to Churchill being a 'globalist' is a badge of honor! cc: @strobetalbott +07/14/2017,Politicians,@JohnKerry,1) Was privileged to deliver this year's Ditchley Foundation Lecture - https://t.co/d0fRQXUZh1 +07/14/2017,Politicians,@JohnKerry,Congrats Chris - such an important issue. Our vets are lucky that you have their back - keep on fighting! https://t.co/AV74nxzoIW +07/14/2017,Politicians,@JohnKerry,"Thinking of President Carter; he's as strong as he is decent. He'll be back on his feet soon, building home at 92!… https://t.co/GtvPaOMj2J" +07/14/2017,Politicians,@JohnKerry,@JimLangevin 4) @amsecproject with a great piece on where we are: https://t.co/clmT5t7KIM +07/14/2017,Politicians,@JohnKerry,@JimLangevin 3) Climate change is a driver of conflict and a national security issue. +07/14/2017,Politicians,@JohnKerry,"@JimLangevin 2) More impressively, congrats to @JimLangevin for beating back effort to deny what the Pentagon has argued for years:" +07/14/2017,Politicians,@JohnKerry,1) Big congrats to my former NE colleague @JimLangevin: huge win today on the NDAA and a longtime champion against… https://t.co/o6QyKsiCLH +07/12/2017,Politicians,@JohnKerry,JCPOA's anniversary is approaching and this is worth a read: 38 generals and admirals know what they're talking abo… https://t.co/AMdk90lXGv +07/12/2017,Politicians,@JohnKerry,Tragic. A doctor comes to the US to save lives and this happens. This is not who we are. https://t.co/l0kOaP4Xa1 +06/23/2017,Politicians,@JohnKerry,"Given the Jets track record, would we call this moving to England or just fleeing Metlife Stadium? Go @Patriots!! https://t.co/Hf4K3THxjb" +06/18/2017,Politicians,@JohnKerry,Prayers for those we lost on the USS Fitzgerald. A reminder of the risks that all those on duty for America take on every day. +06/14/2017,Politicians,@JohnKerry,Honored to be heading back to Kenya for these important elections. https://t.co/rIrEQDc67M +06/07/2017,Politicians,@JohnKerry,Important story about dignity & courage. Being yourself is in America's DNA. https://t.co/fRKkV6XgH0 +06/01/2017,Politicians,@JohnKerry,My thoughts on today's big mistake by President Trump to put America last - and the big fight he's started. Lets go. https://t.co/YmgI8FBwhg +05/31/2017,Politicians,@JohnKerry,"Clear argument by ""the Davids"" - @davideckelswade & David McKean - two of my former Chiefs who've been working on c… https://t.co/ZAImYPbU0N" +05/31/2017,Politicians,@JohnKerry,"Good question. But more importantly: billions of grandkids will have to live with this decision, however it lands.… https://t.co/Eb0QvT1ZFn" +05/27/2017,Politicians,@JohnKerry,@morningmika Zbig was an incredible friend - was always there to give me advice. The world is a safer place bc of h… https://t.co/zqLWLXSGMp +05/25/2017,Politicians,@JohnKerry,"@Harvard hosted @joebiden and I - ""centennials” Today - younger! Please watch Mark Z's powerful case to millennials. https://t.co/0z0wDHyGbN" +05/25/2017,Politicians,@JohnKerry,More change than ever before-short and long term. Wanted to share a few thoughts on how we got here and where we go. https://t.co/4MXDJhq0RZ +05/24/2017,Politicians,@JohnKerry,"Cut me some slack on ""threading."" To paraphrase Yoda: ""Tweet this well when 73 you are I doubt.""" +05/24/2017,Politicians,@JohnKerry,"9- Must also consider how to make any move in coordination/consultation with our European allies, who were and are essential." +05/24/2017,Politicians,@JohnKerry,8- We need to consider the implications of confrontation without conversation. +05/24/2017,Politicians,@JohnKerry,7- There are many tools to up the pressure already in place and at our disposal. We need to weigh/consider risk to JCPOA. +05/24/2017,Politicians,@JohnKerry,"6- After Rouhani’s reelection, there is much up in the air/room for misinterpretation. This is not the moment for a new Iran bill." +05/24/2017,Politicians,@JohnKerry,"5- But to my friends & former colleagues, here is my take: this is a time to tread carefully." +05/24/2017,Politicians,@JohnKerry,"4- On #JCPOA, we engaged in an important back and forth. And I welcomed that debate." +05/24/2017,Politicians,@JohnKerry,"3- #SFRC has made constructive contributions over years, both sanctions + exploring Iran nuclear issue substantively." +05/24/2017,Politicians,@JohnKerry,"2- Tomorrow, #SFRC is considering the Iran bill. Big decision. I respect SFRC's prerogatives - I spent 28 years there myself." +05/24/2017,Politicians,@JohnKerry,"1- My first ""tweet storm."" What recovering Senator could be constrained by 140 characters?! #Fillibuster habits die hard." +05/24/2017,Politicians,@JohnKerry,Home in MA & lucky to speak with @Kennedy_School graduates today. I promise to keep it short! Watch live at 2pm. https://t.co/GrnKOz53vp +05/23/2017,Politicians,@JohnKerry,@LindseyGrahamSC and I do not always agree - but he is spot on here. https://t.co/q9HphkdMPy +05/23/2017,Politicians,@JohnKerry,3) Murdering children the ultimate act of cowardice. The whole world must find answers and act so that this does not become the new normal. +05/23/2017,Politicians,@JohnKerry,"2) Moms/Dads: imagine dropping off your kids at concert, later turning on the TV and fearing whether it's your son or daughter lost." +05/23/2017,Politicians,@JohnKerry,"1) Prayers, yes, but need more than that for all of our friends in Manchester/UK." +05/16/2017,Politicians,@JohnKerry,A big night for me. Such an honor to be recognized by @RogersonComm. An historic organization that makes Boston pro… https://t.co/5mrc0C5wKH +05/10/2017,Politicians,@JohnKerry,Proud to interview my daughter @VBKerry about service & her vision for @seed_global in the #GlobalMoms relay:… https://t.co/TR0f61K1is +04/22/2017,Politicians,@JohnKerry,Why I’m an optimist this Earth Day: https://t.co/zWHGrkEHRq https://t.co/o2RHBYG0kB +03/21/2017,Politicians,@JohnKerry,My Thoughts on the Passing of Martin McGuinness: https://t.co/pyd82WSaZu +02/06/2017,Politicians,@JohnKerry,Heartened to see people and companies standing with those doing so much good for those most in need -- leadership t… https://t.co/x3NTwUDdFm +01/19/2017,Politicians,@JohnKerry,I will always be grateful for the opportunity to serve this great country as Secretary of State. It has been the ho… https://t.co/1I8nYm3FX0 +01/19/2017,Politicians,@JohnKerry,"The @StateDept team has inspired me, informed me & guided me every day of this job. I am profoundly thankful for th… https://t.co/9zm0wI8pKI" +01/19/2017,Politicians,@JohnKerry,We've restored assertive diplomacy as a tool of first resort & deployed it to advance our security & prosperity. https://t.co/6lOa8Qv2oz +01/17/2017,Politicians,@JohnKerry,U.S. is more engaged in many places than at any time in our history. American leadership on world stage remains essential. #WEF17 +01/17/2017,Politicians,@JohnKerry,Good discussion with @tomfriedman on the importance of diplomacy in facing today's complex challenges. #WEF17 https://t.co/HT2MXhVdsF +01/16/2017,Politicians,@JohnKerry,Grateful to @BorisJohnson for his hospitality today and partnership in keeping the U.S.-U.K. special relationship strong and vital. +01/16/2017,Politicians,@JohnKerry,Inspiring to discuss international reconciliation work with the Archbishop of Canterbury and to tour Lambeth Palace. https://t.co/P014GsdIiK +01/16/2017,Politicians,@JohnKerry,"""Life's most persistent and urgent question is: 'What are you doing for others?'"" #MLKDay" +01/14/2017,Politicians,@JohnKerry,Very powerful that veterans from both sides of the war can now be friends & work towards same goal of strengthening… https://t.co/zs4xmE0bYi +01/14/2017,Politicians,@JohnKerry,"Today I met Vo Ban Tam, a former VC enemy who farms shrimp and crab on the same #Mekong river we once fought over. https://t.co/O1h4RxpwS6" +01/13/2017,Politicians,@JohnKerry,"Our focus with #Vietnam is on the future - deepening our partnership, broadening the bilateral agenda & promoting i… https://t.co/OS1HDoe50G" +01/13/2017,Politicians,@JohnKerry,"We're getting close to making Fulbright University #Vietnam a reality. This independent, world-class institution wi… https://t.co/Idq4f9bflw" +01/13/2017,Politicians,@JohnKerry,"U.S.-#Vietnam relationship is built on economic cooperation, cultural exchange & open dialogue. I look forward to s… https://t.co/oV38jiYGJU" +01/10/2017,Politicians,@JohnKerry,Fifty years ago I was commissioned in the @USNavy. Honored today to speak with the next generation of #Midshipmen a… https://t.co/pXdGSxCavN +01/10/2017,Politicians,@JohnKerry,"In ’04, I asked a young Senator to keynote the Dem Convention. Tonight, @POTUS gives his farewell address. Proud of… https://t.co/ga2oEhatIh" +01/09/2017,Politicians,@JohnKerry,"Challenged @MIT students to recognize the vast potential of the energy market, work toward building a sustainable f… https://t.co/TVZVg1WYgu" +01/09/2017,Politicians,@JohnKerry,"I thank Gov't of Mexico for swift arrest of suspect in attack on @USCGGuadalajara colleague; thoughts, prayers remain with him & his family." +01/05/2017,Politicians,@JohnKerry,Global security & prosperity require U.S. leadership & engagement with our key partners. My exit memo to @POTUS → https://t.co/GOnNWaUfT6 +01/01/2017,Politicians,@JohnKerry,"Teresa & I extend best wishes for a Happy New Year. May we begin 2017 with a renewed commitment to promoting peace, prosperity & progress." +12/25/2016,Politicians,@JohnKerry,Teresa and I wish our @StateDept family -- and everyone -- a very Merry #Christmas. +12/24/2016,Politicians,@JohnKerry,"Happy #Hanukkah! May the lights of the menorah brighten your home and the year ahead. From my family to yours, Chag Sameach." +12/20/2016,Politicians,@JohnKerry,"Pivotal moment for #DRC. We call on all parties to respect human rights, reject violence & redouble commitment to an inclusive agreement." +12/19/2016,Politicians,@JohnKerry,"US condemns assassination of Russian Amb to Turkey. Thoughts are w/his loved ones, Russian people, & other victims of this despicable act." +12/18/2016,Politicians,@JohnKerry,"Today, on #InternationalMigrantsDay, we reflect on the ways migrants enrich our culture, improve our economy, and make our nation stronger." +12/18/2016,Politicians,@JohnKerry,"Worked with Saudi Arabia, Oman, UAE, UN, UK to chart a way forward on #Yemen, including urgent need for ceasefire &… https://t.co/8XeSgIIpJ0" +12/18/2016,Politicians,@JohnKerry,"Discussed strength of US-Saudi ties, urgent need to address conflict & humanitarian crisis in #Yemen with… https://t.co/qeowCJopjT" +12/13/2016,Politicians,@JohnKerry,"To @StateDept employees overseas w/out their families this holiday season, thank you & your families for your incre… https://t.co/WqfWL3vUrU" +12/10/2016,Politicians,@JohnKerry,"On Human Rights Day, we recommit to the truth all human beings are endowed with equal and inalienable rights. https://t.co/qrdbTNrORW" +12/10/2016,Politicians,@JohnKerry,Deeply humbled to be recognized in such a profound way by the people of France and to be honored by my friend… https://t.co/tnA3axFxyy +12/10/2016,Politicians,@JohnKerry,"We must continue to strive for a ceasefire, delivery of aid & safe passage for those who want to leave Syria." +12/10/2016,Politicians,@JohnKerry,Important meeting in Paris today to discuss #Syria & siege of Aleppo. https://t.co/KSrcofZrqI +12/09/2016,Politicians,@JohnKerry,"John Glenn was an inspiration to millions, a cherished Senate colleague & a friend. My thoughts & prayers are with his family & loved ones." +12/08/2016,Politicians,@JohnKerry,"Big step today to help stop illegal fishing in #OurOcean - new rule to trace origins of seafood entering US ports. +https://t.co/D3oKGwaV9g" +12/08/2016,Politicians,@JohnKerry,The @OSCE was formed to defend democratic rights. We all need to be aware of the danger of authoritarian populism. #OSCEMC16 +12/08/2016,Politicians,@JohnKerry,Every chip away at the fundamentals of freedom is actually an ugly building block in the road to tyranny. #OSCEMC16 https://t.co/XtvN4U0hsM +12/07/2016,Politicians,@JohnKerry,The C5+1 dialogue has fostered engagement on a range of diverse issues with the goal of a #CentralAsia that is secu… https://t.co/gTwV2WzEig +12/07/2016,Politicians,@JohnKerry,"We remember those lost on #PearlHarbor Day, salute those who served in #WWII, and recommit ourselves to the values for which they fought." +12/06/2016,Politicians,@JohnKerry,"Partnerships with @NATO member countries are vital to our shared security. Important sessions on #Ukraine, #Russia. https://t.co/coWxAAkQil" +12/06/2016,Politicians,@JohnKerry,Agreement signed between EU & U.S. today will enhance close synchronization between our governments during crisis r… https://t.co/VIaaa03Fmk +12/05/2016,Politicians,@JohnKerry,"Grateful for the leadership and friendship of #German FM Steinmeier, a wise and thoughtful partner on Syria, Ukrain… https://t.co/HPzHoR8268" +12/05/2016,Politicians,@JohnKerry,Honored to receive #Germany's Federal Cross of Merit. Even more proud of our strong U.S.-German partnership & trans… https://t.co/fbjTP3GNDn +12/05/2016,Politicians,@JohnKerry,Glad to join Haim Saban & @Martin_Indyk at #Saban16. Enjoyed discussing w/ @JeffreyGoldberg future of two-state sol… https://t.co/7jS9AcEdhX +12/02/2016,Politicians,@JohnKerry,"Valuable #MED2016 initiative is giving momentum to cooperation around the Mediterranean -on security, prosperity, m… https://t.co/AlqqEFndat" +12/02/2016,Politicians,@JohnKerry,Honored to speak with @Pontifex about the world we are building for the next generation. Inspired by his words on… https://t.co/CrvIvqNRIs +12/01/2016,Politicians,@JohnKerry,"Around our world, 36.7 million people are living with #HIV. Today, on World #AIDS Day, we think of them and pledge to #EndAIDS2030. #WAD2016" +11/26/2016,Politicians,@JohnKerry,As a former small biz owner & @SmallBizCmte leader I know the value of local patronage. #ShopSmall on #SmallBizSat!… https://t.co/g5D4R8T3Mi +07/01/2018,Politicians,@jaredpolis,Gia’s underbelly https://t.co/00uGdh7OWD +07/01/2018,Politicians,@jaredpolis,"@thenakedrant I try to keep politics off this feed most of the time, if you want to follow my gubernatorial run fol… https://t.co/WOovLzMXk6" +07/01/2018,Politicians,@jaredpolis,"I think the no-pitch intentional walk is silly, and now it has led to the no-pitch relief appearance #baseball +https://t.co/nK6HPneqgP" +06/30/2018,Politicians,@jaredpolis,@whitedarrenj https://t.co/5nrDNw8BPf +06/29/2018,Politicians,@jaredpolis,"RT @crisantaduran: Honored to stand w/ the next Governor of CO, @jaredpolis! Our state needs a leader w/ bold ideas who will deliver result…" +06/29/2018,Politicians,@jaredpolis,@BrandonRittiman Best of luck in your future endeavors! +06/29/2018,Politicians,@jaredpolis,RT @PolisForCO: Join us this morning as Gov. John Hickenlooper & other leading CO Democrats hold a rally in support of Jared Polis! https:/… +06/28/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: This past week, @RepGutierrez and I visited with 3 mothers at the immigration detention facility in Aurora whose childre…" +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Happy to work with @davek80514 and others on policies to protect our rights and reduce gun violence +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Depends what you are defining as an assault weapon. Fully automatic are already “banned” (he… https://t.co/aLT1ehXjCu +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Where would he get the idea I’m against 2nd amendment? All our gun policy ideas like red fla… https://t.co/rvJx8uEKwJ +06/27/2018,Politicians,@jaredpolis,@SolarRoast It all started at @SolarRoast last Year! +06/27/2018,Politicians,@jaredpolis,RT @justinamash: Congrats to my friend—and the lone Democratic member of the @libertycaucus—@jaredpolis on his big primary win for governor… +06/27/2018,Politicians,@jaredpolis,"RT @MikeJohnstonCO: Jared Polis is an entrepreneur for good. He has earned my respect and support. With tonight's results, I hope you will…" +06/27/2018,Politicians,@jaredpolis,RT @DonnaLynneCO: I want to offer my sincere congratulations to Jared Polis on his victory last night. We have had a hard fought race and w… +06/27/2018,Politicians,@jaredpolis,RT @crisantaduran: I’m proud to stand with @jaredpolis & look forward to helping make him Colorado’s next governor. With the far-right view… +06/27/2018,Politicians,@jaredpolis,Thank you for all the amazing congratulatory tweets! Onwards to November! Here’s my favorite text I got tonight fro… https://t.co/eNELaFRbHx +06/26/2018,Politicians,@jaredpolis,RT @lreeves: Make a difference. Vote today @jaredpolis for next Colorado Governor!! https://t.co/2N15th9iF1 +06/26/2018,Politicians,@jaredpolis,RT @NikkiBirnks: Good luck to @jaredpolis I have met him several times over the years and he is always interested in what everyone around h… +06/26/2018,Politicians,@jaredpolis,RT @AlecGarnett: It’s Election Day!! Get those ballots in and don’t forget to vote for @jaredpolis for #Governor. #copolitics #Elections201… +06/26/2018,Politicians,@jaredpolis,@lsuarez5280 https://t.co/IhT3aGNyDi +06/26/2018,Politicians,@jaredpolis,"RT @PolisForCO: A HUGE thank you to everyone who came out to our election eve rally, and to everyone who has been with our campaign every s…" +06/25/2018,Politicians,@jaredpolis,"RT @PolisForCO: Voting, it's easier than... parking a 🚘 +Turn in your ballot TOMORROW, June 2⃣6⃣ by 7⃣:0⃣0⃣ pm! https://t.co/GLMbla0zOp" +06/25/2018,Politicians,@jaredpolis,"RT @PolisForCO: Vote, it's as easy as... 🇺🇸🗳️#MakeAPlanCO #TeamJared #COpolitics #COgov https://t.co/9g24tFbHhr" +06/25/2018,Politicians,@jaredpolis,"Going door to door in Denver (Montclair), if you’re not home I leave a note for you https://t.co/t4rr0wCg9O" +06/24/2018,Politicians,@jaredpolis,"RT @PolisForCO: As #COgov, I will continue to do everything I possibly can to put a stop to these human rights abuses and #KeepFamiliesTog…" +06/23/2018,Politicians,@jaredpolis,@BoydRBurke I’ll keep working to earn your support for November! +06/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Thank you to everyone who joined me & dropped off their ballots today! Colorado can and will be a leader in the fight again… +06/23/2018,Politicians,@jaredpolis,"RT @PolisForCO: Grateful to spend the morning with @RepGutierrez & Jeanette Vizguerra, two inspirational leaders fighting for immigration r…" +06/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Join Congressman Luis V. Gutierrez & Jeanette Vizguerra at our #DREAMer & Keep Families Together Rally! https://t.co/fAhYPG… +06/22/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""Polis has been fighting for affordable health care & he's gotten things done. With Polis as #COGov, the pharma industry fi…" +06/22/2018,Politicians,@jaredpolis,@alex_burness @SLC_CO You are the pate of Colorado Politics +06/22/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""Voters deserve the benefit of an honest accounting of each candidate's record. In Jared's case, it's a record filled with…" +06/22/2018,Politicians,@jaredpolis,"@MollyElaineB Source: +https://t.co/MWw13iB2BG https://t.co/UR4ubH2hFk" +06/21/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""I’m supporting Jared in his bid to be #COGov because he lives by his values and sticks to his word. And I’m doing more tha…" +06/21/2018,Politicians,@jaredpolis,It’s going to be a long day... so you might as well vote Colorado! #SummerSolstice +06/20/2018,Politicians,@jaredpolis,"RT @PolisForCO: Less than a week until ballots are due! It's too late to mail in your ballot, but you can still drop it off or vote in pers…" +06/20/2018,Politicians,@jaredpolis,RT @KyleClark: Hold on just a hot second. I thought they said they didn’t have the power to do that. https://t.co/sxqjbBdwj6 +06/20/2018,Politicians,@jaredpolis,"RT @PolisForCO: Join me this Saturday with immigrant rights activists @RepGutierrez and Jeanette Vizguerra, as well as several #DREAMers fr…" +06/20/2018,Politicians,@jaredpolis,"@Carleeinco22 Personally I support moving forward w impeachment +https://t.co/km1fCKGWAL" +06/20/2018,Politicians,@jaredpolis,"Here’s the reality: Trump is CHOOSING to terrorize young children, as young or younger than my 3-year-old. This wil… https://t.co/yGawvppgOt" +06/19/2018,Politicians,@jaredpolis,What’s happening to these families is beyond un-American. It’s flat-out horrific. We must all stand in solidarity a… https://t.co/DJDEHdoT8E +06/19/2018,Politicians,@jaredpolis,RT @PolisForCO: Together we can fight for the children who are being ripped away from their families. We must do everything possible to pro… +06/19/2018,Politicians,@jaredpolis,@EllenMignone You might want to follow my official account @RepJaredPolis or my campaign account @PolisForCO this one is my personal account +06/19/2018,Politicians,@jaredpolis,"The hail came through yesterday and minced up my tomatoes 🍅 +They’ll be ok but it certainly didn’t help! https://t.co/yxqdOZcI2s" +06/18/2018,Politicians,@jaredpolis,"RT @BeccaBiblio: Literally the moment I was calling @jaredpolis to complain, once again, about detention centers his gubernatorial campaign…" +06/18/2018,Politicians,@jaredpolis,Study found that egos get bigger after meditation and yoga. I believe it’s an “observer effect” in which the knowle… https://t.co/xwh5g8N0iB +06/18/2018,Politicians,@jaredpolis,RT @VictoryFund: Mayor @AnniseParker and Colorado gubernatorial candidate @jaredpolis are full of PRIDE in Denver today! The primary is jus… +06/17/2018,Politicians,@jaredpolis,"@roger_hamilton I’m sponsoring a bill to stop the separation of children from their parents at the border, and spon… https://t.co/XonDC54SmT" +06/17/2018,Politicians,@jaredpolis,RT @PolisForCO: THANK YOU! Now let’s go win this thing! #COpolitics #COGov #PRIDE #BreakBarriersCO https://t.co/AnOPda6l65 +06/17/2018,Politicians,@jaredpolis,The cool weather today... best #DenverPride ever! +06/16/2018,Politicians,@jaredpolis,RT @PolisForCO: ”He wins in swing counties represented almost entirely by Republicans. And he was rated Colorado’s most effective member of… +06/15/2018,Politicians,@jaredpolis,RT @PolisForCO: We're making a playlist for #Pride! Help us choose the songs here: https://t.co/okDLGoxJTW https://t.co/jBOlo4myxS +06/15/2018,Politicians,@jaredpolis,RT @PolisForCO: No one should have to choose between paying their rent or mortgage and affording the medication that keeps them alive. It's… +06/15/2018,Politicians,@jaredpolis,"RT @PolisForCO: As #COGov, I will make sure that here in Colorado we continue our inclusive tradition of welcoming and appreciating immigra…" +06/15/2018,Politicians,@jaredpolis,"RT @PolisForCO: It's time for bold action in Colorado to ensure that everyone, regardless of zip code, has access to the health care they d…" +06/14/2018,Politicians,@jaredpolis,https://t.co/tSbBfoVpCL +06/14/2018,Politicians,@jaredpolis,"RT @JuanSaaa: .@RepJaredPolis: families deserve to be together, I’m honored to join my colleagues - to reinforce the voice of father’s in C…" +06/14/2018,Politicians,@jaredpolis,@AllysonDowney Please follow my official twitter @RepJaredPolis we did a press conference today of fathers in Congr… https://t.co/GYD0gWhLLD +06/14/2018,Politicians,@jaredpolis,"@squashstreet @CaryKennedy @MikeJohnstonCO From my social justice plan: +“I will end our investment in private priso… https://t.co/QwTIUJWh1h" +06/14/2018,Politicians,@jaredpolis,RT @PolisForCO: Honored to have the endorsement of @GreeleyTribune! “It's hard to find a candidate more well positioned to represent the in… +06/13/2018,Politicians,@jaredpolis,"@Binkley_Paul Thx for being a teacher! +How to increase funding for teacher pay, smaller classes, free full day Pre-… https://t.co/s0ppzcciIM" +06/13/2018,Politicians,@jaredpolis,"RT @DenverWestword: Boom! Mic drop! +https://t.co/9TUbhGi6b4" +06/13/2018,Politicians,@jaredpolis,"RT @PolisForCO: “With his track record of bringing everyone to the table and getting big things done for Colorado, it's clear that Jared is…" +06/13/2018,Politicians,@jaredpolis,RT @SierraClubCO: We are working hard to help @jaredpolis get out the vote in the last weeks before the election! Learn more about our camp… +06/12/2018,Politicians,@jaredpolis,"RT @PolisForCO: If we turn away women and children fleeing horrific domestic violence, who are we as a nation? https://t.co/GK5onfLcky" +06/12/2018,Politicians,@jaredpolis,"@arpurdy Thanks for checking in! Don’t believe negative attack ads here’s my record: +https://t.co/6GST3sU2qn" +06/11/2018,Politicians,@jaredpolis,RT @PolisForCO: You can tell a lot about people by the way they treat animals. I'm the only candidate for #COGov with a policy that will fi… +06/11/2018,Politicians,@jaredpolis,"@Aberu Im also proud of our plan to get to 100% renewable energy by 2040 and endorsement of @SierraClubCO +https://t.co/MX9ZHpIfx7" +06/11/2018,Politicians,@jaredpolis,"@Aberu I appriate your diligence/analysis, wish all voters did that! Healthcare is a big one for me and I’m not new… https://t.co/vuYXiUJTGE" +06/11/2018,Politicians,@jaredpolis,"@Aberu Check out my positions here: +https://t.co/DFSriIyCi2" +06/11/2018,Politicians,@jaredpolis,"@Aberu @CaryKennedy @DOTA2 Yes haven’t had time to play lately with two kids, a day job in Congress and the campaign it’s true!" +06/11/2018,Politicians,@jaredpolis,@Aberu @CaryKennedy Pretty sure I could beat the other candidates in DOTA2 or LoL https://t.co/TQwsRhLn2S +06/11/2018,Politicians,@jaredpolis,RT @RepJaredPolis: My Teachers Are Leaders Act empowers local school districts to develop new leadership opportunities for their teachers.… +06/11/2018,Politicians,@jaredpolis,"Hopeful new tech like this will pan out to trap greenhouse gasses, combat climate change +https://t.co/OPv4kGae4T" +06/11/2018,Politicians,@jaredpolis,@KelseyFritz1 Thanks for all the great turnout work you are doing! +06/10/2018,Politicians,@jaredpolis,@TaraSBostick1 As I said I oppose all breed specific bans. +06/10/2018,Politicians,@jaredpolis,"@TaraSBostick1 I am against breed specific bans, check out my animal welfare policy here: +https://t.co/9qbB2pQV4S" +06/10/2018,Politicians,@jaredpolis,"Does it say more about an era with a smaller ideological divide between parties, or about the remarkable Earl Warre… https://t.co/FFpqZuMhZh" +06/10/2018,Politicians,@jaredpolis,"Printed homes? +“The method will also cut costs and environmental damage” +https://t.co/ZlF8fdfHeL" +06/10/2018,Politicians,@jaredpolis,RT @PolisForCO: These pictures say it all. Vote. It matters. https://t.co/0Rmiw84d43 +06/10/2018,Politicians,@jaredpolis,@IanxFitzpatrick Not a bad arm! Congrats on your upcoming wedding! +06/09/2018,Politicians,@jaredpolis,"Congrats to @IanxFitzpatrick on his upcoming wedding, but also for (after I got six hits) striking me out https://t.co/sa5X4DkUn4" +06/09/2018,Politicians,@jaredpolis,"RT @PolisForCO: Earlier this week, Ian suggested that he could strike me out. Challenge accepted. I’m taking a swing at getting his vote an…" +06/09/2018,Politicians,@jaredpolis,"At 4:30 pm at 26th and Vrain, @IanxFitzpatrick will try to strike me out! If you are nearby come watch one of us ge… https://t.co/4O1mmMmQmF" +06/09/2018,Politicians,@jaredpolis,No parent should ever have to explain this to their children. Marlon and I are sending thoughts to you… https://t.co/vpX9XVeDRZ +06/09/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: Healthcare should be affordable and accessible to all, and Americans with pre-existing conditions shouldn’t face discrim…" +06/09/2018,Politicians,@jaredpolis,@squashstreet @Joe4COAG @BernardDouthit @Vote4Levi @JenaGriswold @CaryKennedy Let me know if you have any questions… https://t.co/pFPoEWFa8c +06/09/2018,Politicians,@jaredpolis,"RT @PolisForCO: Excited to be joined by @SierraClubCO in Pueblo for a GOTV & Canvass Launch! With a bold vision and hard work, we can get t…" +06/09/2018,Politicians,@jaredpolis,@InvisibleLabs Yes it is terrible to symbolize what Trump is doing to our environment! +06/08/2018,Politicians,@jaredpolis,@KonasMama @missLtoe Done! And thank you! +06/08/2018,Politicians,@jaredpolis,"RT @PolisForCO: Actions speak louder than words. As #COGov, I'll be ready on Day 1 to take on Donald Trump. https://t.co/HGmcazsAFI" +06/08/2018,Politicians,@jaredpolis,"@KonasMama Here is my stance: +https://t.co/R9bgPSUKv7" +06/08/2018,Politicians,@jaredpolis,"RT @PolisForCO: Heartbreaking and unacceptable. Tackling mental health has to be a top priority for our state. As governor, I will work to…" +06/08/2018,Politicians,@jaredpolis,"Wanna be pitcher @IanxFitzpatrick thinks he can strike me out.... I’m confident enough to livecast it on Facebook ,… https://t.co/8j9V3wKYby" +06/07/2018,Politicians,@jaredpolis,"RT @9NEWS: Polis grows lead among Democrats for governor, says poll https://t.co/H8v5cPCawJ https://t.co/wibQKezalD" +06/07/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Thrilled to have helped secure $25 million in federal funding for I-70 West 🚗 Less traffic means it’s easier for us to g… +06/06/2018,Politicians,@jaredpolis,@MattHerdman @ShashleyQ League of Legends? +06/06/2018,Politicians,@jaredpolis,"RT @sa_elizabeth: Great turnout in Eagle county to see @PolisForCO and hear his vision for Colorado! Also, ballots are in the mail, make su…" +06/05/2018,Politicians,@jaredpolis,@IanxFitzpatrick Game on! No way you’ll strike me out. I’ll give you two innings (six at bats) to try. Jefferson Hi… https://t.co/zBLvSu4bpN +06/05/2018,Politicians,@jaredpolis,RT @PolisForCO: My closing statement from tonight's #COGov debate: https://t.co/tFnQTvRFWv +06/05/2018,Politicians,@jaredpolis,RT @sonyajlewis: #govdebate @jaredpolis was the only Dem who called for supporting Single Payer health care. He is the true Progressive. M… +06/04/2018,Politicians,@jaredpolis,Glad to have @brothajeff on #TeamJared! Let’s get this done! https://t.co/OkJ1UJ2xsA +06/04/2018,Politicians,@jaredpolis,"RT @PolisForCO: Day 500 of the Trump presidency, and everything’s going great: https://t.co/qL79813kLU" +06/03/2018,Politicians,@jaredpolis,"This is so wrong +https://t.co/AK2qAJ8iN3" +06/03/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""It's imperative to talk about the big, bold goal of getting to 100% renewable energy. When John F. Kennedy talked about go…" +06/03/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Today I #WearOrange for National Gun Violence Awareness Day. We are in the middle of a public health crisis. https://t.c… +06/03/2018,Politicians,@jaredpolis,"RT @PolisForCO: I spent last weekend meeting with folks in southwestern CO, & I know this is top of mind for many. We're facing a warmer, d…" +06/02/2018,Politicians,@jaredpolis,"Flatworms mysteriously retain their old memories after beheading in their newly regenerated brains +https://t.co/FSlEDSIQg2" +06/01/2018,Politicians,@jaredpolis,"RT @PolisForCO: It’s time to stop propping up the past & move forward w/ our green energy future. Renewables are cheaper than fossil fuels,…" +05/31/2018,Politicians,@jaredpolis,RT @PolisForCO: It's disappointing to see one of my opponents resort to ugly and false attack ads. Click the link below to learn more about… +05/31/2018,Politicians,@jaredpolis,RT @PolisForCO: Marcia & Grace are a mother & daughter who were able to receive cancer treatment because of the Affordable Care Act. I was… +05/31/2018,Politicians,@jaredpolis,RT @davidcohen: Join us at this important event in #colorado - Breaking Barriers in Technology & Entrepreneurship with @techstars co-founde… +05/31/2018,Politicians,@jaredpolis,"RT @PolisForCO: Great way to wrap up the day at the Pueblo Democratic Latino Forum! As #COgov, I look forward to working with local leaders…" +05/31/2018,Politicians,@jaredpolis,@BartBanks @PolisForCO @NORML In Pueblo as we speak! It’s up to each country to decide what they want as it should be +05/30/2018,Politicians,@jaredpolis,"RT @ColoradoMatters: Candidate for governor @jaredpolis talked to @cprwarner about free childhood education, expanded Medicare and more in…" +05/30/2018,Politicians,@jaredpolis,RT @PolisForCO: There’s an election wave you probably haven’t heard of yet — and it’s important. https://t.co/cXPQArA7e5 #BreakBarriersCO +05/30/2018,Politicians,@jaredpolis,RT @PolisForCO: “It’s imperative to set the big bold goal of reaching 100% renewable energy by 2040. When JFK set the goal in 1961 of reach… +05/30/2018,Politicians,@jaredpolis,"RT @theJesseDean: Something all Coloradans should support, Republican or Democrat. We need to preserve public land! + +#COpolitics #Colorado…" +05/29/2018,Politicians,@jaredpolis,RT @ColoradoLeads: What are Colorado leaders saying about the #marijuana industry? “You only have to look to the success of CO to see why t… +05/29/2018,Politicians,@jaredpolis,"Let’s replace special interest tax subsidies w student loan relief, making college more affordable, and reducing th… https://t.co/7mluuhvlws" +05/29/2018,Politicians,@jaredpolis,"RT @NColtrain: For those thatve been following along, here’s Rep. @jaredpolis, response to the Presidential Tweet Treatment #copolitics htt…" +05/28/2018,Politicians,@jaredpolis,RT @PolisForCO: .@RealDonaldTrump only one true claim: I did proudly write the bill to repeal your tax scheme. Because your law slashes rat… +05/28/2018,Politicians,@jaredpolis,RT @PolisForCO: I proudly wrote the bill to repeal @RealDonaldTrump’s tax giveaways. Simple choice this election: President and GOP lose by… +05/28/2018,Politicians,@jaredpolis,"RT @PolisForCO: Today, reflect and feel thankful for all those who gave their lives in service of our country. Then, think about how you ca…" +05/28/2018,Politicians,@jaredpolis,@BradMcHargue I am teaching him that the younger (almost) always beat their elders in video games +05/28/2018,Politicians,@jaredpolis,"A 100% renewable energy powered grid isn’t just possible, it’s happening +https://t.co/psvuf1cfb1" +05/26/2018,Politicians,@jaredpolis,@MaxwellJay11 Baseball not softball +05/25/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: Yesterday for #FosterYouthShadowDay, I was proud to welcome Tori from Aurora. Thank you for hosting, @RepKarenBass. Cong…" +05/25/2018,Politicians,@jaredpolis,Thank you @RepTomReed and other brave Republicans helping Democrats break the gridlock that prevents us from acting… https://t.co/DVXYGpFxZk +05/24/2018,Politicians,@jaredpolis,RT @PolisForCO: Grand Junction – join me for a meet & greet and canvass launch this Friday at 4pm in our field office! We look forward to g… +05/23/2018,Politicians,@jaredpolis,RT @RepJaredPolis: People need to know - Special Counsel Robert Mueller already has 17 indictments and 5 guilty pleas. Pass it on. Reality… +05/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Honored to have the endorsement of @NORML! I'm proud to be the only #COGov candidate who supported the legalization of recr… +05/23/2018,Politicians,@jaredpolis,"Why the green energy revolution is here in one chart: +Source: https://t.co/ewoePSRD2B https://t.co/TtLQ6wEHfe" +05/23/2018,Politicians,@jaredpolis,"RT @PolisForCO: Harvey Milk, who would've been 88 today, was a trailblazer for the #LGBTQ community. He showed that no matter who you are o…" +05/22/2018,Politicians,@jaredpolis,RT @RepJaredPolis: We must fully fund special education - public schools desperately and deservingly need additional resources. https://t.c… +05/22/2018,Politicians,@jaredpolis,RT @RepJaredPolis: All students are entitled to an education free from discrimination! https://t.co/KOTilVWVAH +05/21/2018,Politicians,@jaredpolis,"Dawkins the baboon ran around the San Antonio Airport... sounds a lot more interesting than @DENAirport +https://t.co/IKQ8IQ1Mu5" +05/21/2018,Politicians,@jaredpolis,"RT @CSPRColorado: “Studies have demonstrated that if we truly care about addressing the achievement gaps that exist along racial, geographi…" +05/21/2018,Politicians,@jaredpolis,"In 1965, Irving Good said “The first ultraintelligent machine is the last invention that man need ever make, provid… https://t.co/2NzrB6OMy0" +05/21/2018,Politicians,@jaredpolis,"“... where renewables penetration is greatest, wholesale electricity prices have occasionally gone to zero” +https://t.co/PNYH5QV6xB" +05/20/2018,Politicians,@jaredpolis,"RT @KennyNguyen301: This is Judy, she is a 93 year old volunteer and a lifelong Democrat. She started volunteering in the 1940s in New York…" +05/20/2018,Politicians,@jaredpolis,"@ariarmstrong Nuclear has zero carbon emissions and would count towards a 100% goal, but is not currently part of… https://t.co/hglZUliFs8" +05/20/2018,Politicians,@jaredpolis,"The more the merrier! +https://t.co/F8joF121RZ" +05/19/2018,Politicians,@jaredpolis,RT @SierraClubCO: The Colorado primaries are just a few weeks away. We need your help to elect environmental champions like @jaredpolis! #c… +05/19/2018,Politicians,@jaredpolis,RT @markhardencopo: Says @jaredpolis : It doesn’t matter who the GOP candidate for guv is; the real opponent is @realDonaldTrump. At #cociv… +05/19/2018,Politicians,@jaredpolis,"RT @PolisForCO: Happy #COpubliclands Day! Nearly a third of our state is made of #publiclands, and they belong to all Coloradans. As #COgov…" +05/18/2018,Politicians,@jaredpolis,RT @leslieherod: Very honored to host @jaredpolis and Congresswoman Pat Schroeder in an inspiring conversation about #breakingbarriers. Tak… +05/17/2018,Politicians,@jaredpolis,"...and Vulcans! 🖖 +https://t.co/uXG92O6Vor" +05/16/2018,Politicians,@jaredpolis,@WereGeek @OfficialYonni @Yanni Fixed it t/y +05/16/2018,Politicians,@jaredpolis,I hear #laurel but I’d rather hear @Yanni https://t.co/vG0csuv4DZ +05/16/2018,Politicians,@jaredpolis,"RT @PolisForCO: As Colorado’s #cannabis industry goes, so goes the nation’s. I’m ready on Day One to defend legal #marijuana from attacks b…" +05/16/2018,Politicians,@jaredpolis,"RT @PolisForCO: This is the right direction. Health care is a human right. I have supported universal single-payer health care since 2008,…" +05/16/2018,Politicians,@jaredpolis,@ColoradoHOA There are always those that defy the odds! Mine too https://t.co/UlTZRmRANU +05/16/2018,Politicians,@jaredpolis,"New study finds that puppies are cutest at eight weeks old +https://t.co/O7JyJZO01K" +05/15/2018,Politicians,@jaredpolis,RT @PolisForCO: We must rededicate ourselves to a mission of building equitable access to opportunity so that everyone has the means to liv… +05/15/2018,Politicians,@jaredpolis,@stealthisbook Best response ever! +05/15/2018,Politicians,@jaredpolis,"New horror movie? +... Actually just a sensational headline for a scientific study +https://t.co/NZSIjlsg0n" +05/14/2018,Politicians,@jaredpolis,"@betsydornbusch I’m not for requiring it either, just offering full day free instead of charging" +05/14/2018,Politicians,@jaredpolis,https://t.co/Pqr4eJO0AF +05/14/2018,Politicians,@jaredpolis,"RT @PolisForCO: A tremendous leader whose service to Colorado will never be forgotten. My heart goes out to Mayor Steve Hogan’s family, his…" +05/11/2018,Politicians,@jaredpolis,@crisantaduran Thank you for your service and amazing work for all of us! +05/10/2018,Politicians,@jaredpolis,"RT @PolisForCO: The Colorado way of life includes the freedom to choose when, & how, we each start a family. As #COgov, I will never equivo…" +05/10/2018,Politicians,@jaredpolis,RT @PolisForCO: Climate change is real and so are the consequences. Together we will develop a transition plan that will provide new & bett… +05/10/2018,Politicians,@jaredpolis,"...Said the Spirit, turning on him for the last time with his own words. “Are there no workhouses?” +https://t.co/3eCJ3ZD5tI" +05/09/2018,Politicians,@jaredpolis,@WereGeek Yeah and my mom prefers RNA anyway +05/09/2018,Politicians,@jaredpolis,"You know you’re living in the 21st century when you get a “DNA sale” in your inbox! Call me old fashioned, but I’m… https://t.co/0itsh32nMQ" +05/09/2018,Politicians,@jaredpolis,@Malinalarimar https://t.co/9qbB2pzkdk +05/08/2018,Politicians,@jaredpolis,@ariarmstrong And the restoration of democracy and the rule of law in Venezuela while you’re at it! +05/08/2018,Politicians,@jaredpolis,"Over 10,000,000 people work in clean energy! Let’s bring more good-paying green energy jobs to Colorado! +https://t.co/fY0d3ziZgd" +05/08/2018,Politicians,@jaredpolis,RT @PolisForCO: Only 5️⃣0️⃣ days left until the #COGov primary election! Here's a quick guide for eight easy steps you can take to help #Te… +05/08/2018,Politicians,@jaredpolis,"I usually have nostalgia for 80s reruns, but not this one! https://t.co/E2Igqoi3m3" +05/08/2018,Politicians,@jaredpolis,Very real health reasons that the transition to renewable energy is so important https://t.co/ACy0VEsHID +05/08/2018,Politicians,@jaredpolis,There is treatment (which Venezuela’s broken health infrastructure can’t deliver reliably) but the world still awai… https://t.co/0JEe4DSNv1 +05/08/2018,Politicians,@jaredpolis,"In ten billion years, our sun will collapse into a “massive ring of luminous, interstellar gas and dust” +https://t.co/qZmT22pMv2" +05/08/2018,Politicians,@jaredpolis,"Pueblo City and County are embracing a renewable energy future and already seeing growth in green jobs +https://t.co/IAyEwsq9Zd" +05/07/2018,Politicians,@jaredpolis,@KimbieT https://t.co/1b64encR56 +05/07/2018,Politicians,@jaredpolis,"Lied to Congress, illegally smuggled weapons to Iran, now President of the NRA: Oliver North +https://t.co/1b64encR56" +05/07/2018,Politicians,@jaredpolis,"Oliver North, new President of the NRA, had his concealed carry license revoked by a judge who determined he was ""not of good character”" +05/06/2018,Politicians,@jaredpolis,"RT @PolisForCO: I’ve been proud to help lead the fight for #LGBTQ equality at the federal level, and as #COGov, I will stand up for the rig…" +05/06/2018,Politicians,@jaredpolis,"RT @PolisForCO: Opening up these majestic areas to oil and gas hurts our air, land, water, and our health & safety. This is a disgraceful m…" +05/06/2018,Politicians,@jaredpolis,"A solar-powered animal! +https://t.co/M6JtwHoNux" +05/05/2018,Politicians,@jaredpolis,The independent voice of the media is critical to help keep politicians and corporations honest. The emptying out o… https://t.co/8kKOUPZbFV +05/04/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: We didn't always see eye to eye, but I always appreciated Chuck Plunkett's thoughtful words. The slow demise of our inde…" +05/04/2018,Politicians,@jaredpolis,"After the rain ends +Pink flowers fallen from trees +Soft petal carpet +#haiku https://t.co/ss0cJHxCqh" +05/03/2018,Politicians,@jaredpolis,"“Some guests come in full hobbit regalia” +https://t.co/kEy4T6xWNN" +05/03/2018,Politicians,@jaredpolis,"Was hoping this was a crystal that could help us time travel, oh well it’s still pretty cool and mysterious +https://t.co/meGOAe2TSw" +05/02/2018,Politicians,@jaredpolis,"Such a fun headline to read just in time for spring and summer! 😳 +https://t.co/AyVe0MhT2o" +05/02/2018,Politicians,@jaredpolis,RT @PolisForCO: Inexcusable and unacceptable. Education is a civil right. https://t.co/cfSYSqaWMj +05/01/2018,Politicians,@jaredpolis,"RT @PolisForCO: Pat Schroeder, the first woman to represent Colorado in Congress, has always been a hero to me. I'm honored to have her end…" +04/30/2018,Politicians,@jaredpolis,"@DebraRaeShort Honored to work on many issues with Bernie Sanders such as employee ownership +https://t.co/oIJAuQky0t" +04/28/2018,Politicians,@jaredpolis,RT @AGUSciPolicy: #Champs4Science: Rep @JaredPolis and @RepRyanCostello are setting an example as co-chairs of the House Earth and Space Sc… +04/27/2018,Politicians,@jaredpolis,"RT @PolisForCO: #TeamJared standing strong in solidarity with our teachers today! As #COGov, one of my top priorities will be investing in…" +04/27/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Proud of the students across the country participating in the #DayofSilence. You are not alone. 🏳️‍🌈 +04/27/2018,Politicians,@jaredpolis,RT @PolisForCO: It's unacceptable that we have one of the best economies in the country yet consistently underpay and undervalue our educat… +04/27/2018,Politicians,@jaredpolis,"@Sheena_Kadi Yeah I let my ‘stache grow out in DC this week, ready to shave" +04/27/2018,Politicians,@jaredpolis,"Did the airline charge extra for the rat? +https://t.co/gQOyy8AXpg" +04/26/2018,Politicians,@jaredpolis,"#macron said “Freedom is never more than one generation away from extinction,"" but the good news for Venezuela, Nor… https://t.co/uaegG0M8BQ" +04/26/2018,Politicians,@jaredpolis,"#Macron “We must find a smoother transition to a lower carbon economy, because what is the meaning of our life, rea… https://t.co/0Rp2lnkY2j" +12/20/2016,Politicians,@PaulManafort,"President Donald J. Trump! +Nothing more to say except now it is time ""To Make America Great Again""!" +11/09/2016,Politicians,@PaulManafort,"Donald Trump in his speech last night began the healing process. +He will be a President with one goal: + +""To Make America Great Again!""" +11/09/2016,Politicians,@PaulManafort,Congratulations President-Elect Trump and Vice-President Elect Pence! +11/08/2016,Politicians,@PaulManafort,HIllary Clinton campaigning in Blue states today? She knows the Trump revolution begins tomorrow night! +11/04/2016,Politicians,@PaulManafort,Battleground states moving to Trump en masse. Media not liking the pattern. By Sunday Trump will be over 270 in polls +08/14/2016,Politicians,@PaulManafort,"And those Upstate NY jobs never materialized either ""Why would anyone believe Hillary’s promise of 10 million jobs? https://t.co/Gz8mHUUxbI""" +08/13/2016,Politicians,@PaulManafort,"cc: Sanders supporters: ""EXCLUSIVE: Dem Official Referred To Hillary As Nominee Before Primaries Even Started https://t.co/yhkHBwmDCV""" +08/12/2016,Politicians,@PaulManafort,Smart take by Curtis Ellis: Families Crushed by Obama-Clinton Pay Freeze https://t.co/ylcwh4AbG1 via @LifeZette +08/12/2016,Politicians,@PaulManafort,Cornyn prods DOJ on Clinton Foundation conduct https://t.co/wPwidx6679 via @DCExaminer +08/12/2016,Politicians,@PaulManafort,".@realdonaldtrump advisor Tom Barrack: ""Here’s a new approach to trade agreements https://t.co/Qk6TfCYFKh via @bi_contributors""" +08/12/2016,Politicians,@PaulManafort,Head of Justice Department’s national security division objected to Iran cash payment: https://t.co/IYOcMsk68E via @WSJ +08/12/2016,Politicians,@PaulManafort,Clinton takes the wrong approach to trade deals https://t.co/xJlUY7pjBX +08/11/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: #CrookedHillary https://t.co/Jux2ikFpXd +08/11/2016,Politicians,@PaulManafort,Donald Trump narrowly leads Hillary Clinton in Iowa https://t.co/9s6oADjhOV +08/11/2016,Politicians,@PaulManafort,New Emails Shed Light on ‘Clinton Cash’ State Department - Breitbart https://t.co/tIWnuQBwH9 +08/11/2016,Politicians,@PaulManafort,"Top of Drudge Report right now - Fox, then MSNBC, then CNN: ""Scoreboard: Tuesday, August 9 https://t.co/eJGLtmJzp0""" +08/11/2016,Politicians,@PaulManafort,"Clinton pay to play update --> ""Hillary played favorites with huge number of Clinton Foundation donors https://t.co/n4yrs4udSc via @nypost""" +08/11/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Reuters just announced that Secret Service never spoke to me or my campaign. Made up story by @CNN is a hoax. Totally… +08/10/2016,Politicians,@PaulManafort,Donald Trump pushes fiscally sound economic plan https://t.co/WHXbil2eIm +08/09/2016,Politicians,@PaulManafort,Trump Campaign Statement on the Dishonest Media https://t.co/WXMo7T0yK6 https://t.co/RlMWrqHcxP +08/09/2016,Politicians,@PaulManafort,RT @TeamTrump: We must bring back our JOBS. @realDonaldTrump will not enter a trade deal unless it puts YOU first! #TrumpIsWithYou https://… +08/09/2016,Politicians,@PaulManafort,Must-read from LTG (R) Keith Kellogg and LTG (R) Michael Flynn pushing back against the Washington insiders: https://t.co/r06vRneLZy +08/08/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: .@realDonaldTrump Statement on Politically Motivated Letter | Donald J. Trump for President https://t.co/a6Eqa3Y1vJ +08/08/2016,Politicians,@PaulManafort,Why Hillary Clinton's email controversy is still haunting her campaign https://t.co/keQbfvm05w via @WSJPolitics +08/08/2016,Politicians,@PaulManafort,".@hillaryclinton short-circuit: As Sen., Clinton promised 200,000 jobs in Upstate New York. Her efforts fell flat. https://t.co/qZnACbKqHJ" +08/07/2016,Politicians,@PaulManafort,RT @DRUDGE_REPORT: CLINTON EMAIL LED TO EXECUTION IN IRAN? https://t.co/4rY1faptL6 +08/06/2016,Politicians,@PaulManafort,Somebody should ask Clinton about this: Obama’s Cash Payment to Iran Was More Than a Ransom — It Broke Criminal Law https://t.co/OQyzWkwJXD +08/06/2016,Politicians,@PaulManafort,".@nypost must-read on Iran ransom deal —> ""Iranian propaganda video claims to show US' $400M cash drop https://t.co/Xr0V7XB7Fa via @nypost""" +08/06/2016,Politicians,@PaulManafort,"“Trump could clean house"": In Trump, some Obama backers see a new champion of hope and change https://t.co/QJk0mL9GPP" +08/05/2016,Politicians,@PaulManafort,RT @ReutersPolitics: BREAKING: Clinton's lead over Trump narrows to less than 3 percentage points in presidential race - Reuters/IPSOS http… +08/05/2016,Politicians,@PaulManafort,Sorry @hillaryclinton - the American public wants to break up the rigged system and elect @realdonaldtrump: https://t.co/OdDBCGUXKu +08/05/2016,Politicians,@PaulManafort,".@hillaryclinton caught lying again: ""AP FACT CHECK: Clinton's new email clarifications fall short https://t.co/2EJy0hSpm9""" +08/05/2016,Politicians,@PaulManafort,"RT @danmericaCNN: HRC on journos: ""We need you to keep holding leaders & candidates accountable."" Tough to do when you don't take many ques…" +08/05/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: Donald J. Trump on Hillary Clinton’s Bad Judgment and Her Being Unfit to Serve as President https://t.co/VNqGgsRknS +08/05/2016,Politicians,@PaulManafort,Clinton repeats debunked claim about FBI email investigation @CNNPolitics https://t.co/kf2UnR7uZl +08/05/2016,Politicians,@PaulManafort,RT @realDonaldTrump: President Obama refuses to answer question about Iran terror funding. I won't dodge questions as your President. http… +08/04/2016,Politicians,@PaulManafort,RT @TeamTrump: Another media bias offender today – CNN's @NewDay aired nearly 200x more coverage on Trump than Iran controversy https://t.… +08/03/2016,Politicians,@PaulManafort,"Fueled by Small Donations, Donald Trump Makes Up Major Financial Ground https://t.co/SMEWTXRCUw" +08/03/2016,Politicians,@PaulManafort,What's $400M between friends? #CrookedHillary https://t.co/yRnBhJmJp3 +08/03/2016,Politicians,@PaulManafort,Joining @FoxNews shortly to talk @realDonaldTrump and the $400M Iran deal that should have @HillaryClinton worried. https://t.co/3L6d86d3E6 +08/03/2016,Politicians,@PaulManafort,The Obama/Clinton admin has failed Americans: “The Obama economy is trouble for Hillary Clinton” https://t.co/JBoCmyHj6v +08/03/2016,Politicians,@PaulManafort,"The Obama/Clinton admin has officially sponsored a hostile regime in Iran, and now claim it was a “benefit” to U.S. Taxpayers. Outrageous." +08/03/2016,Politicians,@PaulManafort,"RT @mike_pence: Really enjoyed our #TownHall this evening- Phoenix, Arizona! Thank you. I look forward to coming back again soon. https://t…" +08/03/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Report raises questions about ‘Clinton Cash’ from Russians during ‘reset' https://t.co/vVcAzY2zcp +08/02/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: The Clinton Story You Didn’t Read Here https://t.co/Bmo2uxly5J +08/02/2016,Politicians,@PaulManafort,RT @FoxNews: .@IvankaTrump: @realDonaldTrump “is the champion of so many people who haven’t previously had a voice.” #Greta https://t.co/ht… +08/02/2016,Politicians,@PaulManafort,Trump Statement In Response To President Obama's Failed Leadership https://t.co/q3Uegdmivu +08/02/2016,Politicians,@PaulManafort,ICYMI ‘Clinton Cash’ author brings to light the Clinton Foundation financial corruption and ties to Russia https://t.co/mnLXB48kw9 +08/02/2016,Politicians,@PaulManafort,"Charles Woods, father of soldier killed in Benghazi, endorses Mr. Trump https://t.co/Dn1aEobMXK" +08/02/2016,Politicians,@PaulManafort,A Trump win is the only way to stop the TPP catastrophe https://t.co/SAx9GvN6HC +08/02/2016,Politicians,@PaulManafort,"National Journal’s Ron Fournier: Clinton Is “Knowingly Misleading” The Public On “Rogue Server” +https://t.co/zgRjGF5X6F" +08/02/2016,Politicians,@PaulManafort,"Crooked: ""Hillary can't stop lying even when she doesn't have to https://t.co/XhT01snWoO""" +08/02/2016,Politicians,@PaulManafort,RT @DailyCaller: Networks Gave GOP Convention 12 Times MORE NEGATIVE COVERAGE Than Dem Convention https://t.co/8Ri1hUdFrl https://t.co/JcQC… +08/02/2016,Politicians,@PaulManafort,Hillary Clinton wrongly claims FBI director Comey called her comments about email 'truthful' https://t.co/qR3CGgLjKy via @PolitiFact +07/31/2016,Politicians,@PaulManafort,RT @TeamTrump: Setting the record straight. Read @realdonaldtrump’s full @thisweekabc transcript here: https://t.co/pLzTF7juuv +07/31/2016,Politicians,@PaulManafort,"RT @JasonMillerinDC: LA Times: Trump leading Clinton 46%-42% nationally: ""USC Dornsife / LA Times Pres. Election Daybreak Poll"" http://96.1…" +07/29/2016,Politicians,@PaulManafort,RATINGS: More People Watched Donald Trump’s Acceptance Speech Than Hillary Clinton’s https://t.co/tITpaM1COe via @dailycaller +07/29/2016,Politicians,@PaulManafort,"Bought and paid for: ""Hedge-fund money: $48.5 million for Clinton, $19,000 for Trump https://t.co/s5bfezo14p via @WSJ""" +07/29/2016,Politicians,@PaulManafort,@hillaryclinton failed to confront radical Islamic terror last night. @realdonaldtrump will identify & defeat enemy. More now @foxandfriends +07/29/2016,Politicians,@PaulManafort,"70% of U.S. believes country going in wrong direction, but @hillaryclinton wants to be Obama's 3rd term! More at 7:14am ET. @foxandfriends" +07/29/2016,Politicians,@PaulManafort,FBI warned Hillary Clinton campaign it had been hacked https://t.co/YcalckCzZ8 - @washtimes +07/29/2016,Politicians,@PaulManafort,Did Bill Clinton Fall Asleep During Hillary’s Speech? https://t.co/tqLet4FWQX +07/29/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Hillary's vision is a borderless world where working people have no power, no jobs, no safety." +07/29/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Hillary will never reform Wall Street. She is owned by Wall Street! +07/29/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Hillary's refusal to mention Radical Islam, as she pushes a 550% increase in refugees, is more proof that she is unfit…" +07/29/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Our way of life is under threat by Radical Islam and Hillary Clinton cannot even bring herself to say the words. +07/29/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: @HillaryClinton will say anything to get elected. https://t.co/u0FBA3mrrm +07/29/2016,Politicians,@PaulManafort,Clinton has been in politics all her life and has put herself 1st. We need an outsider like Mr. Trump to bring fresh solutions to the table +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to talk about the national security risk caused by her home server tonight. +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to mention radical Islamic terrorism tonight. +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to mention Benghazi tonight. +07/27/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Thank you to our amazing law enforcement officers! #MAGA https://t.co/UEZorOQhTw +07/27/2016,Politicians,@PaulManafort,Hillary Just Admitted Her E-mails Are A 'National Security Issue': https://t.co/PCjw2vcabE +07/27/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: .@hillaryclinton Let’s not lose sight why we’re discussing missing emails - remember this? https://t.co/0Ua2elZBLG htt… +07/27/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: If Russia or any other country or person has Hillary Clinton's 33,000 illegally deleted emails, perhaps they should sh…" +07/27/2016,Politicians,@PaulManafort,@realdonaldtrump takes the largest lead of the election in newest @LATimes / @USCDornsife poll: 47-40 https://t.co/bQEhqN7ihw +07/27/2016,Politicians,@PaulManafort,@hillaryclinton: Honest and trustworthy? 67% say NO. +07/27/2016,Politicians,@PaulManafort,"""Change-Maker""? Joining CBS Morning crew right now to talk about how @realdonaldtrump, not @HillaryClinton is the only one to change DC." +07/27/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Just like I have warned from the beginning, Crooked Hillary Clinton will betray you on the TPP. +https://t.co/eoNTWK6I…" +07/27/2016,Politicians,@PaulManafort,"This should surprise nobody! ""Clinton friend McAuliffe says she will flip on TPP trade deal https://t.co/0Rqbs0JlZb""" +07/26/2016,Politicians,@PaulManafort,Pro-Clinton ad spend in gen. elect. now $168M. She's losing. @realDonaldTrump winning b/c people know he'll break up rigged system in DC. +07/26/2016,Politicians,@PaulManafort,Sanders would have had to win every state by an average of 59%-41% to overcome Crooked Hillary's rigged superdelegate game. Never had chance +07/26/2016,Politicians,@PaulManafort,"Clinton Mentions at DNC Last Night: 208. +Trump Mentions at DNC Last Night: 96. +ISIS Mentions at DNC Last Night: 0 (!!!)" +07/26/2016,Politicians,@PaulManafort,Booing Clinton: 6:52. Booing DNC/DWS: 1:37. +07/26/2016,Politicians,@PaulManafort,Some very interesting numbers coming out of the first night of the Democrats' convention in Philly last night... +07/26/2016,Politicians,@PaulManafort,Trump on Convention Speech: 'It Was Very Optimistic' https://t.co/JK08MEERtq via @nbcnews +07/26/2016,Politicians,@PaulManafort,RNC correct that Democrats in Philly didn't say ISIS last night: https://t.co/XGYK1qxg4L via @PolitiFact +07/26/2016,Politicians,@PaulManafort,Kaine backed Wall Street bid for up to 1.8 million cheaper foreign workers https://t.co/SSUoA1ZLKU via @DCExaminer +07/26/2016,Politicians,@PaulManafort,Dems fret over Trump bounce https://t.co/rX5Y96u3pY +07/26/2016,Politicians,@PaulManafort,"Democrat unity night at the Philly Convention Center, and we haven't even gotten to Bernie yet! https://t.co/rtjnOdbi7X" +07/25/2016,Politicians,@PaulManafort,"""The Trump Bump"" With Dem Convention Off to Rocky Start, Trump Enjoys Post-Cleveland Bounce | US News Opinion https://t.co/4muIQNtW3h" +07/25/2016,Politicians,@PaulManafort,"Exclusive: KTNV/Rasmussen poll shows Trump, Heck with post GOP-convention leads in Nevada https://t.co/U2AHr2WUZo via @ktnv" +07/25/2016,Politicians,@PaulManafort,NATE SILVER: Donald Trump would most likely win the election if it were held today https://t.co/QmE0FnfvtL via @bi_politics +07/25/2016,Politicians,@PaulManafort,"RT @JasonMillerinDC: Morning Consult Poll Also Shows Trump Taking Lead Post-Convo: ""Trump Surges Past Clinton With Post-Convention Bump htt…" +07/25/2016,Politicians,@PaulManafort,"RT @larryelder: USC/LA Times Poll: +Trump 45, Clinton 41 +https://t.co/ZKLQcue91k" +07/25/2016,Politicians,@PaulManafort,RT @CNN: Donald Trump leads Hillary Clinton in new CNN/ORC poll https://t.co/cZswxtdgVl https://t.co/srSoTEnB65 +07/24/2016,Politicians,@PaulManafort,"RT @sahilkapur: Trump campaign chair Paul Manafort releases a statement saying Clinton should follow DWS's lead and ""drop out."" https://t.c…" +07/24/2016,Politicians,@PaulManafort,"Dems attack Russia for hacking them but want us to believe that server in HC home was safe from hacking. +HC put national security at risk!" +07/24/2016,Politicians,@PaulManafort,Progressives cheated by Democratic establishment https://t.co/ALyZe44iNG +07/24/2016,Politicians,@PaulManafort,@realdonaldtrump continues to surge in today’s @CBSNews Battleground poll. GOP unified & Trump's message resonating https://t.co/GugVJZQUfe +07/23/2016,Politicians,@PaulManafort,Clinton VP pick Kaine pledged support for TPP hours before announcement. Clinton-Kaine is for bad trade deals. Sanders supporters not happy. +07/23/2016,Politicians,@PaulManafort,Clinton picked a career politician with questionable ethics just like her. Birds of a feather... +07/23/2016,Politicians,@PaulManafort,Crooked Hillary's VP pick helped promote and protect rigged superdelegate system as DNC chair. Sanders supporters will not like that. +07/23/2016,Politicians,@PaulManafort,"Clinton/Kaine -- corrupt, liberal, the rigged system at its worst." +07/23/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Crooked Hillary Clinton has destroyed jobs and manufacturing in Pennsylvania. Against steelworkers and miners. Husband… +07/22/2016,Politicians,@PaulManafort,How energized was the crowd at #RNCinCLE last night? @realdonaldtrump received 24 min. and 29 sec. of applause during his speech! +07/22/2016,Politicians,@PaulManafort,$4M+ raised today - way to go #TrumpTrain!!! +07/22/2016,Politicians,@PaulManafort,"""The time for action has come!"" - DJT" +07/22/2016,Politicians,@PaulManafort,"RT @IngrahamAngle: ""[Hillary] is their puppet and they pull the strings."" --@realDonaldTrump" +07/22/2016,Politicians,@PaulManafort,"""And they have to change right now!"" -DJT" +07/22/2016,Politicians,@PaulManafort,"RT @FoxNews: .@realDonaldTrump: ""Any politician who does not grasp this danger is not fit to lead our country."" #RNCinCLE https://t.co/DPQD…" +07/22/2016,Politicians,@PaulManafort,RT @realDonaldTrump: You can watch 360 video live from the podium! https://t.co/yqcIsBUdAi #RNCinCLE #TrumpIsWithYou #MakeAmericaGreatAgain +07/22/2016,Politicians,@PaulManafort,New rule: Pastor Mark Burns opens every event ever. #MakeAmericaGreatAgain +07/22/2016,Politicians,@PaulManafort,Big energy this evening in Cleveland for @realDonaldTrump. I've never seen a crowd this excited to defeat Crooked Hillary! #RNCinCLE +07/21/2016,Politicians,@PaulManafort,"@realDonaldTrump & @mike_pence form an amazing ticket. The energy, the determination, the vision, the courage. Honored to be on their team." +07/21/2016,Politicians,@PaulManafort,"""If you want a President who will cut taxes and grow our economy...and upend the status quo in Washington, DC...""" +07/21/2016,Politicians,@PaulManafort,@mike_pence is going to make an amazing Vice President. He is ready for this moment. #MakeAmericaGreatAgain +07/20/2016,Politicians,@PaulManafort,Lots of excitement for @realdonaldtrump here at #RNC2016 especially on set with my good friends from @cnn - tune in now! +07/20/2016,Politicians,@PaulManafort,Let's do one more! Tune in to CBS as I join the second hour to talk about tonight's convention theme and what to expect! +07/20/2016,Politicians,@PaulManafort,Coming up at 7:30am: joining @foxandfriends to talk about great speeches we heard last night and what we'll hear from @mike_pence tonight. +07/20/2016,Politicians,@PaulManafort,RT @USATODAY: Ready for Day 3 of the GOP convention? Here's what you need to know. https://t.co/izDoVZChFt +07/20/2016,Politicians,@PaulManafort,"Joining @GMA in just a few minutes to discuss our Republican nominee for President, @realdonaldtrump - tune in to ABC now!" +07/19/2016,Politicians,@PaulManafort,Cool shot: https://t.co/InARuFsz3D +07/19/2016,Politicians,@PaulManafort,RT @FoxNews: BREAKING NEWS: @realDonaldTrump has been formally nominated as the Republican presidential nominee. #RNCinCLE https://t.co/DzO… +07/19/2016,Politicians,@PaulManafort,"And with that @realdonaldtrump is officially the nominee! Thank u for all of your support. The real battle is ahead, we must defeat Hillary" +07/19/2016,Politicians,@PaulManafort,RT @realDonaldTrump: The ROLL CALL is beginning at the Republican National Convention. Very exciting! +07/19/2016,Politicians,@PaulManafort,Tonight’s #RNCinCLE speakers will talk about how @realdonaldtrump will bring back American jobs and leadership. #MakeAmericaWorkAgain +07/19/2016,Politicians,@PaulManafort,@mike_pence live on Fox and CNN right now! @KatrinaPierson live on MSNBC. Good coverage for the @realdonaldtrump team right now! +07/19/2016,Politicians,@PaulManafort,Up next with CBS This Morning. Tune in now! +07/19/2016,Politicians,@PaulManafort,"RT @ABC: Melania Trump: ""If you want someone to fight for you...I can assure you he's the guy. He will never, ever give up."" https://t.co/f…" +07/19/2016,Politicians,@PaulManafort,"RT @USATODAY: Melania Trump: ""My husband has been concerned about our country for as long as I have known him."" https://t.co/QxkKniP5Rk" +07/19/2016,Politicians,@PaulManafort,"RT @FoxNews: Mayor Giuliani: ""Libya is in chaos. [@HillaryClinton] is accountable for this & much more."" #RNCinCLE https://t.co/XJ12JepMIt" +07/18/2016,Politicians,@PaulManafort,Next up: MTP Daily with Chuck Todd - tune in now! +07/18/2016,Politicians,@PaulManafort,Joining Wolf Blitzer right now to discuss #RNCinCLE +07/18/2016,Politicians,@PaulManafort,#RNCinCLE is underway! Looking forward to unifying and invigorating our party this week. @realDonaldTrump and @mike_pence will do just that. +07/18/2016,Politicians,@PaulManafort,Catch @realDonaldTrump on Fox and Friends right now then I'll be up on Today Show. Unified GOP convention for Trump and Pence here in CLE. +07/18/2016,Politicians,@PaulManafort,RT @DanScavino: .@realDonaldTrump joining @foxandfriends in a few minutes- tune in! #GOPConvention #MAGA #TrumpPence16 https://t.co/Czl25Pa… +07/18/2016,Politicians,@PaulManafort,Up next on Morning Joe as we kick off the GOP Convention in Cleveland! +07/17/2016,Politicians,@PaulManafort,Heading over to CBS now to talk @realdonaldtrump with @FaceTheNation - show starts at 10:30am ET. +07/17/2016,Politicians,@PaulManafort,Joining @FoxNewsSunday at the top of the hour to talk about @realDonaldTrump and @mike_pence #MakeAmericaGreatAgain +07/16/2016,Politicians,@PaulManafort,"RT @FoxNews: .@GovPenceIN: ""@realDonaldTrump is offering a vision for America...that would return American strength at home & abroad."" #Han…" +07/15/2016,Politicians,@PaulManafort,Up next on @CNN to talk about @realDonaldTrump and the GOP Convention! +07/15/2016,Politicians,@PaulManafort,Will be on @foxandfriends in a few minutes to talk about @realDonaldTrump and next week's GOP convention. +07/15/2016,Politicians,@PaulManafort,Anti-Trump people get crushed at Rules Committee. It was never in doubt: Convention will honor will of people & nominate @realdonaldtrump. +07/14/2016,Politicians,@PaulManafort,"Re: @realDonaldTrump VP selection, a decision will be made in the near future and the announcement will be tomorrow at 11am in New York." +07/13/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: The Republican platform is most +pro-Israel of all time!" +07/13/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: Kendal Unruh’s claims that she has enough votes for a minority report are not true. The bind/unbind issue is dead. htt… +07/13/2016,Politicians,@PaulManafort,"GOP Platform will now strengthen resolve to build a border wall, more accurately reflecting Mr. Trump’s message: https://t.co/cQd0izUPY9" +07/13/2016,Politicians,@PaulManafort,GOP Platform improvement: Kate’s Law = longer prison sentences for deported illegal immigrants who re-enter US & engage in criminal activity +07/13/2016,Politicians,@PaulManafort,"Very good news via @QuinnipiacPoll this morning. @realDonaldTrump on the move in FL, PA and OH: https://t.co/oRpit4tXJC" +07/13/2016,Politicians,@PaulManafort,GOP Delegates hard at work - Platform will be much improved re: stopping illegal immigration and bad trade deals https://t.co/ZQUoMBOXKk +07/12/2016,Politicians,@PaulManafort,"Per @NBCNews poll, @HillaryClinton lead shrinks as people realize she puts herself above them. @realDonaldTrump will put #AmericaFirst" +07/12/2016,Politicians,@PaulManafort,"@HillaryClinton is pro-TPP/pro-NAFTA, pro-Wall St, won nomination in rigged primary system. Sanders may abandon principles, his voters won't" +07/12/2016,Politicians,@PaulManafort,"Thank you again for having me on the show, @foxandfriends - enjoyed talking about the leadership we're seeing from @realDonaldTrump." +07/12/2016,Politicians,@PaulManafort,Joining the @foxandfriends crew at 8:30am ET to talk about the Republican Convention and @realDonaldTrump - tune in now! +07/08/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: MAKE AMERICA SAFE AGAIN! +https://t.co/m0AJWlV8nm https://t.co/P0GleHEmJy" +07/01/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: #ThrowbackThursday #Trump2016 +https://t.co/gFtspBViXe" +06/30/2016,Politicians,@PaulManafort,AG Lynch secret meeting with Bill Clinton while Hillary under investigation. It’s all about her. +06/26/2016,Politicians,@PaulManafort,I prefer NBC/WSJ poll +06/29/2018,Politicians,@PressSec,"Tonight @POTUS met w/ Senators Grassley, Collins, Murkowski, Manchin, Donnelly, and Heitkamp to discuss the Supreme… https://t.co/pMVXt7edvI" +06/28/2018,Politicians,@PressSec,"Strongly condemn the evil act of senseless violence in Annapolis, MD. A violent attack on innocent journalists doin… https://t.co/yYsg44MxfT" +06/27/2018,Politicians,@PressSec,RT @realDonaldTrump: Statement on Justice Anthony Kennedy. #SCOTUS https://t.co/8aWJ6fWemA +06/27/2018,Politicians,@PressSec,"While in Moscow today, Ambassador Bolton is meeting with President Vladimir Putin and other senior Russian official… https://t.co/cwa71WyiS0" +06/23/2018,Politicians,@PressSec,"Last night I was told by the owner of Red Hen in Lexington, VA to leave because I work for @POTUS and I politely le… https://t.co/C5554K1LVJ" +06/22/2018,Politicians,@PressSec,It’s shameful that dems and the media exploited this photo of a little girl to push their agenda. She was not separ… https://t.co/gh2FTAC9VC +06/22/2018,Politicians,@PressSec,RT @realDonaldTrump: Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/22/2018,Politicians,@PressSec,RT @FLOTUS: Today's visit to #Texas to spend time with children & thank the many hardworking individuals helping to care for them was very… +06/20/2018,Politicians,@PressSec,RT @realDonaldTrump: Homeland Security @SecNielsen did a fabulous job yesterday at the press conference explaining security at the border a… +06/15/2018,Politicians,@PressSec,RT @SteveScalise: It's more than a game. https://t.co/Obltwoeu2U +06/15/2018,Politicians,@PressSec,Incredible. https://t.co/jQJ9biUUIQ +06/15/2018,Politicians,@PressSec,"RT @realDonaldTrump: Happy 243rd Birthday to the @USArmy! Thank you for your bravery, sacrifices, and dedication to the U.S.A. We love you!…" +06/15/2018,Politicians,@PressSec,"RT @SecPompeo: Final day on the road in support of @POTUS's #SingaporeSummit. Traveled to #Seoul and #Beijing, met 2 presidents, held 4 bil…" +06/14/2018,Politicians,@PressSec,"RT @SecPompeo: Trilateral cooperation among US, #ROK & #Japan has been crucial to the effectiveness of our efforts regarding #DPRK We commi…" +06/14/2018,Politicians,@PressSec,RT @SteveScalise: Tomorrow. https://t.co/RDx7AbXLkp +06/14/2018,Politicians,@PressSec,Does @CBSNews know something I don’t about my plans and my future? I was at my daughter’s year-end Kindergarten eve… https://t.co/gwrJzTQCsH +06/13/2018,Politicians,@PressSec,Touchdown in DC after an incredible and historic trip. Circled the globe - 24k miles in 5 days with 42hrs in the ai… https://t.co/CQhjGbg5On +06/13/2018,Politicians,@PressSec,"Praying for my friend @larry_kudlow. Larry is smart, funny, and a true statesman. He is tough and we know he will b… https://t.co/Jm9qEpPoug" +06/13/2018,Politicians,@PressSec,Thankful to the men and women stationed at Hickam in HI. Almost home...but not really (9 more hours to go!) https://t.co/u1XTvp36u9 +06/12/2018,Politicians,@PressSec,"“Anyone can make war, but only the most courageous can make peace.” @POTUS in Singapore at Press conference followi… https://t.co/RBieGUfpfB" +06/12/2018,Politicians,@PressSec,RT @realDonaldTrump: https://t.co/tJG3KIn2q0 +06/12/2018,Politicians,@PressSec,Leader Kim departs Hotel Capella after signing joint statement with @POTUS. https://t.co/W6LQ5ZX8d3 +06/12/2018,Politicians,@PressSec,RT @Scavino45: HISTORY. #SingaporeSummit https://t.co/XF3GNzzBui +06/12/2018,Politicians,@PressSec,.@POTUS and US Delegation start expanded bilateral meeting with Leader Kim Jong Un and North Korean Delegation.… https://t.co/Zz5mznMcqM +06/12/2018,Politicians,@PressSec,.@POTUS and Leader Kim Jong Un on balcony after finishing the one on one. #SingaporeSummit https://t.co/kRiDpRiEq6 +06/12/2018,Politicians,@PressSec,RT @SecPompeo: We’re ready for today. #singaporesummit @StateDept https://t.co/65M9nKYiQ1 +06/12/2018,Politicians,@PressSec,"RT @Scavino45: #SingaporeSummit +(📸@AP @EvanVucci) https://t.co/JK9qfsd2xc" +06/12/2018,Politicians,@PressSec,US Delegation greets North Korean Delegation and watches @POTUS and Leader Kim Jong Un meet for first time. #BTS… https://t.co/qq7QqCCFX6 +06/12/2018,Politicians,@PressSec,".@POTUS arrives at Capella hotel, site of summit with North Korean Leader Kim Jong Un. https://t.co/8arwWYnGtr" +06/11/2018,Politicians,@PressSec,Great day with our very gracious hosts. Thank you Prime Minister Lee Hsien Loong. https://t.co/BW72whSaE3 +06/11/2018,Politicians,@PressSec,"RT @SecPompeo: Early pre-brief with my @StateDept team. Amb Kim meets with #DPRK today. We remain committed to the complete, verifiable, ir…" +06/10/2018,Politicians,@PressSec,.@POTUS arrives in Singapore for meeting with North Korean Leader Kim Jong Un. https://t.co/qj2S0mtEJ9 +06/10/2018,Politicians,@PressSec,"RT @Scavino45: 🚨Happening Now: +Behind the scenes on Air Force One as Team Trump speaks with our teams on the ground in Singapore, in advanc…" +06/09/2018,Politicians,@PressSec,"Dear @newsbyhughes @CNN, +Congratulations! Once again you are wrong. There is no “some kind of group signing” taking… https://t.co/eGgWL3Dqpx" +06/09/2018,Politicians,@PressSec,".@POTUS meets with world leaders and negotiates on Trade, Iran, and National Security. #G72018 #BTS https://t.co/OobyyDswNP" +06/09/2018,Politicians,@PressSec,RT @g7: Day 1 of #G7Charlevoix in 60 seconds. https://t.co/U6jA8ylIgm +06/09/2018,Politicians,@PressSec,Looking forward to joining @POTUS @realDonaldTrump at this evenings @G7 Cultural event at the @G7 Summit in Canada… https://t.co/DTxQ3pB4vF +06/09/2018,Politicians,@PressSec,RT @Scavino45: Behind the scenes at the #G7Summit as President @realDonaldTrump and President @EmmanuelMacron conclude their #G7Summit bila… +06/09/2018,Politicians,@PressSec,"RT @Scavino45: .@POTUS @realDonaldTrump in The Situation Room with @VP Pence and @StateDept @SecPompeo earlier today, discussing the upcomi…" +06/09/2018,Politicians,@PressSec,Great moment between @JustinTrudeau and @POTUS when he gave him picture of the President’s grandfather’s hotel in C… https://t.co/mwZbLf2lXm +06/09/2018,Politicians,@PressSec,RT @Scavino45: Canadian Prime Minister Justin Trudeau and his wife Mrs. Sophie Grégoire Trudeau welcome President @realDonaldTrump at the F… +06/09/2018,Politicians,@PressSec,"RT @Scavino45: In between Session I & II at the #G7Summit in Charlevoix, Canada. https://t.co/8gPEYJQuSD" +06/09/2018,Politicians,@PressSec,"RT @Scavino45: Working Session II at the #G7Summit in Charlevoix, Canada earlier this afternoon... https://t.co/TEKjfqM2ua" +06/08/2018,Politicians,@PressSec,Happy birthday to our great @VP! Thank you for all you do for our country! +06/07/2018,Politicians,@PressSec,"RT @FoxNews: During a briefing on Tuesday, @WhiteHouse @PressSec Sarah Sanders stated that ""the president has worked increasingly hard"" to…" +06/07/2018,Politicians,@PressSec,RT @VP: Honored to join @POTUS today as he signed the #VAMissionAct into law to expand healthcare access for veterans. This administration… +06/07/2018,Politicians,@PressSec,Great work today by all the staff and cabinet who made this happen! #500Days https://t.co/psSpIGSgKj +06/05/2018,Politicians,@PressSec,UPDATE: The venue for the Singapore summit between @POTUS and Leader Kim Jong Un will be the Capella Hotel on Sento… https://t.co/dZEQ0SmnPv +06/05/2018,Politicians,@PressSec,"RT @FoxNews: .@PressSec: ""We have the best economy since World War II."" #Hannity https://t.co/o37qPPuLQr" +06/03/2018,Politicians,@PressSec,"We’ve come a long way since Paul Krugman, writing in the New York Times after the election, said the Trump presiden… https://t.co/25UjQ0e6lP" +06/02/2018,Politicians,@PressSec,"RT @FoxBusiness: .@POTUS: ""We have reached yet one more historic milestone with 3.8% unemployment just announced."" https://t.co/Hy9ZPw4voj" +06/02/2018,Politicians,@PressSec,"RT @FoxBusiness: .@cvpayne on #JobsReport: ""I think it's a great number... We're almost near full employment by almost any measure."" https:…" +06/02/2018,Politicians,@PressSec,".@POTUS is presented with a letter from North Korean Leader Kim Jong Un, Friday, June 1, 2018, by North Korean envo… https://t.co/2jy1XRoCj9" +06/02/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today, it was my great honor to be with the brave men and women of the United States Coast Guard! https://t.co/RAyPbOG…" +06/01/2018,Politicians,@PressSec,This week @US_FDA is stopping drug companies from gaming the system to keep their prices high and block competition… https://t.co/oFrLPRDaMC +05/31/2018,Politicians,@PressSec,If only you’d had on tennis shoes! https://t.co/2DosXcGB5t +05/31/2018,Politicians,@PressSec,"RT @EricTrump: This is amazing. As someone who has dedicated so much of my life to fighting pediatric cancer, I’ve seen the pain an entire…" +05/31/2018,Politicians,@PressSec,RT @Scavino45: President Trump signs #RightToTry into law. https://t.co/6UcmJznEqc https://t.co/UmpmJjjKQB +05/29/2018,Politicians,@PressSec,"Since @POTUS May 24 letter to NK leader Kim Jong Un, the North Koreans have been engaging. The U.S. continues to ac… https://t.co/immQA6Pnsu" +05/28/2018,Politicians,@PressSec,My son had the honor of meeting a few real superheroes today and now knows what he wants to be when he grows up. Th… https://t.co/5YFk51U3m0 +05/28/2018,Politicians,@PressSec,RT @DeptofDefense: We pay tribute to the fallen this #MemorialDay weekend. We thank them for making the ultimate sacrifice for our freedom:… +05/28/2018,Politicians,@PressSec,https://t.co/dQj79A7R2n +05/26/2018,Politicians,@PressSec,I was one of the lucky ones to see him yesterday morning! He assured me they hadn’t let him help cook. Such a great… https://t.co/hqbbTZqiPA +05/25/2018,Politicians,@PressSec,"RT @realDonaldTrump: On behalf of the American People, CONGRATULATIONS! We love you! https://t.co/YRlj0vRXwk" +05/25/2018,Politicians,@PressSec,"“It ain't how hard you hit; it's about how hard you can get hit, and keep moving forward,” -Rocky Balboa +Thank you… https://t.co/a0zDw9L4Ro" +05/24/2018,Politicians,@PressSec,Letter from @POTUS to Kim Jong Un on Singapore Summit. https://t.co/4u5LZL6Lc1 +05/24/2018,Politicians,@PressSec,"RT @realDonaldTrump: Great to be in New York for the day. Heading back to the @WhiteHouse now, lots of work to be done! https://t.co/w3LUiQ…" +05/23/2018,Politicians,@PressSec,View from Marine One (@USMC) during the flyover of @USNavy ships and @USCG cutters for Fleet Week 2018 in NYC.… https://t.co/4H5I80QgBM +05/23/2018,Politicians,@PressSec,As the granddaughter of a firefighter I’m so proud to work for a president who supports the men and women of fire d… https://t.co/2TSrgr8kcV +05/23/2018,Politicians,@PressSec,"RT @realDonaldTrump: For the first time since Roe v. Wade, America has a Pro-Life President, a Pro-Life Vice President, a Pro-Life House of…" +05/23/2018,Politicians,@PressSec,"RT @dougmillsnyt: .@realDonaldTrump kisses 4-year-old Katharine Alexander, who was born with an opioid dependency and was adopted by Lisa &…" +05/22/2018,Politicians,@PressSec,The Iran deal was one of the worst deals in history and didn’t guarantee the safety of Americans. That’s why @POTUS… https://t.co/mPVUwhTEqn +05/21/2018,Politicians,@PressSec,"Historic day for our country: swearing-in ceremony for Gina Haspel, the first woman ever to serve as CIA director.… https://t.co/TCscw2HPYu" +05/18/2018,Politicians,@PressSec,"RT @steveholland1: Pres Trump is donating the first quarter of his 2018 salary to the Veterans Affairs Dept, per @PressSec" +05/18/2018,Politicians,@PressSec,"RT @FoxNews: .@PressSec: ""If the media and liberals want to defend MS-13, they're more than welcome to. Frankly, I don't think the term @PO…" +05/18/2018,Politicians,@PressSec,RT @Scavino45: “Trump donates first quarter salary to VA” https://t.co/qZMmRqjp1C +05/17/2018,Politicians,@PressSec,RT @WhiteHouse: #Laurel? #Yanny? Or... https://t.co/5hth07SdGY +05/16/2018,Politicians,@PressSec,RT @realDonaldTrump: Gina Haspel is one step closer to leading our brave men and women at the CIA. She is exceptionally qualified and the S… +05/16/2018,Politicians,@PressSec,"RT @dougmillsnyt: .@realDonaldTrump kisses the hand of Adrianna Valoy, mother of falling NYPD Detective Milsotis Familia, during his remark…" +05/15/2018,Politicians,@PressSec,Beautiful day at our nation’s Capitol to celebrate some of America’s greatest heroes. Thank you to the great men an… https://t.co/ov0OdpEPcC +05/15/2018,Politicians,@PressSec,Prayers for our amazing First Lady! https://t.co/8kqOD8C2Uq +05/14/2018,Politicians,@PressSec,Proud my parents are at the Embassy opening today. Great moment for @POTUS and all of history. https://t.co/dbskbdfLGA +05/14/2018,Politicians,@PressSec,"RT @FoxNews: Jared Kushner: “I am so proud to be here today in Jerusalem, the eternal heart of the Jewish people and I am especially honore…" +05/14/2018,Politicians,@PressSec,"RT @FoxNews: Jared Kushner: “When President Trump makes a promise, he keeps it.” https://t.co/VoMTeuYXHK" +05/14/2018,Politicians,@PressSec,RT @WhiteHouse: Watch LIVE the dedication of @usembassyjlm: https://t.co/KVhxC50Ywe #USEmbassyJerusalem +05/14/2018,Politicians,@PressSec,"RT @CNN: Standing next to Ivanka Trump, Treasury Secretary Steve Mnuchin reveals the seal of the US embassy, making the embassy's move from…" +05/14/2018,Politicians,@PressSec,"RT @FoxNewsSunday: In his first interview since returning from North Korea, @SecPompeo tells Chris Kim Jong-un ""does follow the Western pre…" +05/14/2018,Politicians,@PressSec,"RT @IvankaTrump: I am honored to join the delegation representing @POTUS, his Admin & the American people at this momentous ceremony commem…" +05/14/2018,Politicians,@PressSec,RT @SarahHuckabee: Perfect end to a great Mother’s Day. Love my family. #crabhunt #welethimgo https://t.co/JfYQS015Br +05/13/2018,Politicians,@PressSec,Happy Mother’s Day! https://t.co/q2K1ozFSM3 +05/12/2018,Politicians,@PressSec,"RT @SarahHuckabee: So fun meeting @RobLowe. Incredibly talented, funny, and very nice guy. Thanks for entertaining us all these years! http…" +05/10/2018,Politicians,@PressSec,RT @PressSec: A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@PressSec,RT @PressSec: .@SecPompeo briefs @POTUS on his trip to North Korea just before the returnees land at JBA. https://t.co/vJQVjqokVl +05/10/2018,Politicians,@PressSec,RT @PressSec: .@POTUS lands at JBA to welcome home the three returnees - incredible night for America. https://t.co/SH2m9LoQ43 +05/10/2018,Politicians,@PressSec,A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@PressSec,.@SecPompeo briefs @POTUS on his trip to North Korea just before the returnees land at JBA. https://t.co/vJQVjqokVl +05/10/2018,Politicians,@PressSec,.@POTUS lands at JBA to welcome home the three returnees - incredible night for America. https://t.co/SH2m9LoQ43 +05/10/2018,Politicians,@PressSec,RT @WhiteHouse: Gina Haspel has developed outstanding intelligence expertise and understanding during her distinguished career at the CIA.… +05/10/2018,Politicians,@PressSec,RT @IvankaTrump: Today @POTUS signed an EO to promote military spouse hiring across ALL federal agencies. To our #MilitarySpouses: Your cou… +05/09/2018,Politicians,@PressSec,A positive gesture brings incredible news for three American families. https://t.co/t6uJU1MoqF +05/08/2018,Politicians,@PressSec,America needs a strong leader at the CIA! Gina Haspel has spent 33 years protecting the homeland. She has the exper… https://t.co/T5bMXN6k8e +05/08/2018,Politicians,@PressSec,"RT @WhiteHouse: ""So today I’m very excited to announce Be Best, an awareness campaign dedicated to the most valuable and fragile among us,…" +05/08/2018,Politicians,@PressSec,RT @virginiafoxx: Joined @FLOTUS at the White House today for the launch of the #BeBest initiative. I couldn't agree more that in our rapid… +05/07/2018,Politicians,@PressSec,"Opioids, social media use and mental and physical well-being are all major issues our children face. Go visit… https://t.co/VvAy0bDH4j" +05/07/2018,Politicians,@PressSec,"ICYMI: @POTUS appointed members to his Council on on Sports, Fitness, and Nutrition, which aims to encourage youth… https://t.co/A9O8Vqsi8L" +05/07/2018,Politicians,@PressSec,Proud to be with Ambassador @RichardGrenell tonight in NYC as he departs for Germany to represent our great country… https://t.co/HI5d0eO8Ee +05/05/2018,Politicians,@PressSec,There is no one more qualified to be the first woman to lead the CIA than 30+ year CIA veteran Gina Haspel. Any Dem… https://t.co/utXxKzk0Bv +05/04/2018,Politicians,@PressSec,"RT @SecPompeo: We have an unprecedented opportunity to change the course of history on the Korean Peninsula, but the outcome is unknown. Ho…" +05/04/2018,Politicians,@PressSec,"The @realDonaldTrump effect: Black and Hispanic unemployment again hits record lows +https://t.co/3HdxUnBW1x" +05/03/2018,Politicians,@PressSec,.@SBALinda is doing big things for small business! She is working with @POTUS to ensure small businesses can compet… https://t.co/pYYHfsaohO +05/03/2018,Politicians,@PressSec,"Today, @POTUS will sign an EO creating a new faith-based initiative, and will continue the @WhiteHouse tradition th… https://t.co/KH3CXwakm0" +05/03/2018,Politicians,@PressSec,RT @realDonaldTrump: Congratulations @SecPompeo! https://t.co/ECrMGkXMQF +05/02/2018,Politicians,@PressSec,.@POTUS speaks @StateDept and welcomes @SecPompeo as the new Secretary of State to applause and cheers. https://t.co/VVcldsQTum +05/02/2018,Politicians,@PressSec,Love @SBALinda and all she does for small businesses across our great country. #SmallBusinessWeek https://t.co/jmwotayDwv +05/02/2018,Politicians,@PressSec,RT @Marcshort45: Rear Admiral Jackson and his family have devoted their lives in service to our country. Sen. Tester should be ashamed of p… +05/02/2018,Politicians,@PressSec,RT @Scavino45: https://t.co/abH0KoErIA +05/01/2018,Politicians,@PressSec,Welcome to Twitter @SecPompeo! You are going to be an amazing Secretary of State for @POTUS and we are all excited… https://t.co/Bluej1qRLS +04/27/2018,Politicians,@PressSec,"RT @realDonaldTrump: KOREAN WAR TO END! The United States, and all of its GREAT people, should be very proud of what is now taking place in…" +04/27/2018,Politicians,@PressSec,"I pity the fool who doesn’t love +@MrT! #TeamUSAAwards https://t.co/77hb9YPyXE" +04/26/2018,Politicians,@PressSec,Congratulations to @RichardGrenell for FINALLY being confirmed as AMB to Germany despite HISTORIC obstruction from… https://t.co/NEq9b2IeJB +04/26/2018,Politicians,@PressSec,Had a great time showing the kids around and answering questions from reporters-in-training! #TakeYourChildToWorkDay https://t.co/YXSTJ39IHU +04/26/2018,Politicians,@PressSec,Great to have Secretary Pompeo confirmed. He will do an excellent job helping @POTUS lead our efforts to denucleari… https://t.co/AsO0AcpK2p +04/26/2018,Politicians,@PressSec,So proud to work with Secretary Pompeo! He will be great. https://t.co/vuv8WsDuGl +04/26/2018,Politicians,@PressSec,Mike Pompeo watches as he’s confirmed Secretary of State https://t.co/qDSehtPskc +04/26/2018,Politicians,@PressSec,"RT @dougmillsnyt: On ""take your child to work day"", @PressSec with the help of her two children, takes questions in the White House Press R…" +04/25/2018,Politicians,@PressSec,So happy for my friend Michael. Truly one of a kind! https://t.co/a6i0fx2zNE +04/25/2018,Politicians,@PressSec,Unforgettable evening at the White House for State Dinner honoring French President @EmmanuelMacron. @FLOTUS did an… https://t.co/FJSHSbayf3 +04/24/2018,Politicians,@PressSec,RT @realDonaldTrump: “President Trump Calls the U.S.-France Relationship ‘Unbreakable.’ History Shows He’s Right.” https://t.co/L0gT4rvaJO +04/24/2018,Politicians,@PressSec,RT @WhiteHouse: .@FLOTUS has selected the dinner setting and décor for the Trump Administration's first State Visit to pay homage to the lo… +04/21/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today, my thoughts and prayers are with the entire Bush family. In memory of First Lady Barbara Bush, there is a remem…" +04/19/2018,Politicians,@PressSec,"John Kerry: 94-3 +Hillary Clinton: 94-2 +Condi Rice: 85-13 +Colin Powell: Unanimous Voice Vote +What does history tell… https://t.co/1JY7JQEamm" +04/19/2018,Politicians,@PressSec,RT @NASKeyWest: #CommanderInChief @POTUS arrives at #BocaChicaField. First visit by a sitting President since Kennedy in 1962. https://t.co… +04/19/2018,Politicians,@PressSec,Thank you @SenJohnBarrasso! https://t.co/6Mv04rB8Jl +04/19/2018,Politicians,@PressSec,Flag at Mar-a-lago at half staff in honor of Barbara Bush. She was a great American and will be dearly missed. Her… https://t.co/ZgpCI5fGgl +04/19/2018,Politicians,@PressSec,"RT @Scavino45: 📲 Behind-the-scenes after today’s joint press conference hosted by President @realDonaldTrump with @JPN_PMO @AbeShinzo! + +🇺🇸…" +04/18/2018,Politicians,@PressSec,Nothing could better underscore the importance of getting America's top diplomat in place for such a time as this.… https://t.co/c4fLOPH0y4 +04/17/2018,Politicians,@PressSec,"On this #TaxDay the Congressional Democrats had a rally to TAKE AWAY the bonuses, wage hikes and other benefits the… https://t.co/mcwLMYKpWC" +04/17/2018,Politicians,@PressSec,.@POTUS meets with Prime Minister of Japan @AbeShinzo today at Mar-a-lago to discuss N. Korea and trade. https://t.co/PeyWKPUyjG +04/17/2018,Politicians,@PressSec,"RT @WhiteHouse: Out with the old, in with the new: tax cuts and reforms that look out for hardworking taxpayers ⬇️ +https://t.co/eEHFWkG8xm" +04/17/2018,Politicians,@PressSec,Flags from all 50 states line the entrance to Mar-a-lago to welcome Prime Minister of Japan @AbeShinzo. https://t.co/V7AD5TJKdt +04/16/2018,Politicians,@PressSec,"Great scoreboard at “USA Open for Business” event in Hialeah, FL. @POTUS is winning for America! https://t.co/dk6Lwj8jv6" +04/15/2018,Politicians,@PressSec,"RT @ABC: Press Sec. Sanders says coalition forces ""100% met their objectives"" in Syria. + +""They also sent a strong message to Syria, to Russ…" +04/15/2018,Politicians,@PressSec,"As I said, the President put our adversaries on notice that he enforces red lines with the strike on Syria Friday n… https://t.co/6JtN3YoIcB" +04/15/2018,Politicians,@PressSec,Last night the President put our adversaries on notice: when he draws a red line he enforces it. (Inside the Situat… https://t.co/PGQ8GzIvyp +04/14/2018,Politicians,@PressSec,"RT @ChiefPentSpox: Yesterday, United States Forces - at the direction of @POTUS - launched precision strikes against #Assad regime targets…" +04/14/2018,Politicians,@PressSec,"RT @ChiefPentSpox: These strikes were a justified, legitimate and proportionate response to the Syrian government's continued use of chemic…" +04/14/2018,Politicians,@PressSec,RT @ChiefPentSpox: We are extremely proud of the U.S. #servicemembers who carried out this operation last night. https://t.co/XThDJEbFB6 +04/14/2018,Politicians,@PressSec,"RT @DeptofDefense: SecDef #Mattis and Chairman of the @TheJointStaff, #GenDunford, brief reporters on the current U.S. air strikes on #Syri…" +04/14/2018,Politicians,@PressSec,"RT @VP: Tonight, at the order of @POTUS, U.S. Armed Forces, with Britain and France, launched strikes against chemical weapon sites in Syri…" +04/14/2018,Politicians,@PressSec,RT @realDonaldTrump: https://t.co/6VLQYAlcto +04/13/2018,Politicians,@PressSec,"RT @SenPatRoberts: I say to those who serve our country here in Washington and at diplomatic posts around the world, Mike Pompeo will work…" +04/13/2018,Politicians,@PressSec,"RT @SenatorRounds: I thank Mike Pompeo for his willingness to continue to serve our country, this time as head of @StateDept. Today’s confi…" +04/13/2018,Politicians,@PressSec,One of the few areas of true bipartisan consensus in Washington is Comey has no credibility-> https://t.co/HblT75ESAY via @YouTube +04/11/2018,Politicians,@PressSec,"As a proud Arkansan, I’m not an Alabama football fan, but I was a big fan of this prayer for @POTUS. #SEC Always… https://t.co/dtp1ITXw8L" +04/08/2018,Politicians,@PressSec,RT @realDonaldTrump: ....to pay. Open area immediately for medical help and verification. Another humanitarian disaster for no reason whats… +04/08/2018,Politicians,@PressSec,"RT @realDonaldTrump: Many dead, including women and children, in mindless CHEMICAL attack in Syria. Area of atrocity is in lockdown and enc…" +04/07/2018,Politicians,@PressSec,Indisputable that the Trump admin has been tougher on Russia than the Obama admin but it just doesn’t fit the fake… https://t.co/jFU9dt7aRm +04/07/2018,Politicians,@PressSec,The President will never stop fighting to do what Democrats won’t: secure our border and keep Americans safe https://t.co/VZoDq8JpLt +04/07/2018,Politicians,@PressSec,The President has ordered an end to “catch and release” https://t.co/rHmFfNFLHn +04/07/2018,Politicians,@PressSec,RT @realDonaldTrump: “BET founder: Trump's economy is bringing black workers back into the labor force” https://t.co/TtMDfi4bv0 +04/07/2018,Politicians,@PressSec,"RT @ChiefNGB: Always Ready, Always There! Moving up to 500 #NationalGuard troops immediately on the SW border security mission. Vehicles, e…" +04/06/2018,Politicians,@PressSec,.@SecretarySonny has traveled to 35 states with a clear message: President Trump and this Administration are the vo… https://t.co/Qx38XInjED +04/04/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today we honor Dr. Martin Luther King, Jr. on the 50th anniversary of his assassination. Earlier this year I spoke abo…" +04/04/2018,Politicians,@PressSec,"RT @Scavino45: Beautiful #TeamTrump send off for #HopeHicks and #JoshRaffel this evening in Washington, DC! On behalf of everyone at the @W…" +04/02/2018,Politicians,@PressSec,"Today we lost Connie Lawn, a remarkable woman who covered the White House for over 50 years. She will always be rem… https://t.co/6CHadduYgK" +04/01/2018,Politicians,@PressSec,RT @SarahHuckabee: Happy Easter! https://t.co/1dPUWkO2d6 +03/31/2018,Politicians,@PressSec,"RT @SarahHuckabee: ""For God so loved the world that he gave his only Son, that whoever believes in Him shall not perish but have eternal li…" +03/30/2018,Politicians,@PressSec,"Mike Pompeo (State), Gina Haspel (CIA), and Admiral Ronny Jackson (VA) have served our country with honor and disti… https://t.co/2nJh58MWeU" +03/30/2018,Politicians,@PressSec,"RT @IvankaTrump: Thanks to #TaxCuts, @McDonalds has committed to increase its investment in #WorkforceDevelopment. The Archways to Opportun…" +03/29/2018,Politicians,@PressSec,"Can’t argue with the results. President Trump’s policies are working-> +https://t.co/yTHxSBuWn8" +03/27/2018,Politicians,@PressSec,"Under the leadership of @DrMcCance_Katz, the Substance Abuse and Mental Health Services Admin. is working to combat… https://t.co/oRm8q811gA" +03/27/2018,Politicians,@PressSec,Dozens of EU and partner countries + NATO have joined the UK and the U.S. to expel Russian intel officers hiding un… https://t.co/2tAYLq73VP +03/27/2018,Politicians,@PressSec,"RT @WhiteHouse: Today, President Trump ordered the expulsion of dozens of Russian intelligence officers from the U.S. and the closure of th…" +03/26/2018,Politicians,@PressSec,.@IvankaTrump: “Skill-based education is crucial to putting more Americans on a path to promising careers – and fil… https://t.co/jkV4PRvar5 +03/26/2018,Politicians,@PressSec,Statement on Expulsion of Russian intelligence officers. https://t.co/4uCzMOMG3f +03/26/2018,Politicians,@PressSec,Had a blast meeting Celia and Natalie @WhiteHouse on Friday. https://t.co/ZbjUDhNYwW +03/24/2018,Politicians,@PressSec,"RT @Scavino45: March 23, 2018 #TeamTrumpBTS +🔟📸 https://t.co/5YiDnLpe3x https://t.co/npFo2W5i8w" +03/21/2018,Politicians,@PressSec,".@POTUS talked w/ @SpeakerRyan & @SenateMajLdr about priorities secured in the omnibus, which all support, especial… https://t.co/rBYoPsfGXo" +03/21/2018,Politicians,@PressSec,RT @repgregwalden: Working across the aisle and with @POTUS I know we can put an end to the #OpioidCrisis once and for all #CrisisNextDoor… +03/21/2018,Politicians,@PressSec,"Much of the chattering class said @POTUS would lose the election, but he won; said he’d hurt the economy, but it’s… https://t.co/erpfxztF1C" +03/20/2018,Politicians,@PressSec,RT @realDonaldTrump: Our Nation was founded by farmers. Our independence was won by farmers. And our continent was tamed by farmers. Our fa… +03/20/2018,Politicians,@PressSec,".@POTUS mourns for victims of the recent bombings in Austin. We are monitoring the situation, federal authorities a… https://t.co/BD3jl8Bc2V" +03/20/2018,Politicians,@PressSec,RT @business: This is what record-low unemployment looks like in America https://t.co/4omUIJL07V https://t.co/EVodCrT6Np +03/19/2018,Politicians,@PressSec,RT @GOPLeader: .@POTUS' proposals to combat opioid addiction demonstrate that there is ample opportunity to reach a bipartisan consensus. W… +03/19/2018,Politicians,@PressSec,"RT @WhiteHouse: The opioid crisis has created stories of despair of shock, but also stories of recovery & hope. President Trump is asking e…" +03/19/2018,Politicians,@PressSec,RT @RepDavidKustoff: I applaud @POTUS @realDonaldTrump for laying out a three-pronged approach to combat the #OpioidEpidemic. In order to e… +03/19/2018,Politicians,@PressSec,RT @AGPamBondi: Ty @POTUS for the comprehensive approach to combat the national opioid crisis. This nationwide initiative will help stop t… +03/19/2018,Politicians,@PressSec,RT @WVGovernor: People are dying every day from opioid abuse. I'm encouraged and hopeful that @POTUS's plans will help us take bigger steps… +03/16/2018,Politicians,@PressSec,RT @realDonaldTrump: Our thoughts and prayers go out to the families and loved ones of the brave troops lost in the helicopter crash on the… +03/16/2018,Politicians,@PressSec,Just spoke to @POTUS and Gen. H.R. McMaster - contrary to reports they have a good working relationship and there are no changes at the NSC. +03/15/2018,Politicians,@PressSec,In the briefing I said I would provide the trade deficit number we have with Canada. In 2017 we had a $17.58 B trad… https://t.co/CwhvJBUqNY +03/14/2018,Politicians,@PressSec,"RT @FoxNews: MOMENTS AGO: @POTUS departs California after visiting border wall prototypes, criticizing state's sanctuary law. https://t.co/…" +03/14/2018,Politicians,@PressSec,RT @steveholland1: Pres Trump arriving at border wall prototypes https://t.co/AjhdjQGjWt +03/09/2018,Politicians,@PressSec,"The New York Times: “jobs reports don’t get much better than this” +https://t.co/1hbF94Mhdp" +03/09/2018,Politicians,@PressSec,"The good economic news keeps coming. Reynolds giving thousands of workers tax cut bonuses +https://t.co/r7RAcnGgzh" +03/09/2018,Politicians,@PressSec,"RT @FoxNews: SoKo security adviser Chung Eui-Yong: ""I explained to @POTUS that his leadership and his maximum pressure policy together with…" +03/09/2018,Politicians,@PressSec,.@POTUS greatly appreciates the nice words of the S. Korean delegation & Pres Moon. He will accept the invitation t… https://t.co/Y0SQ4fGee3 +03/08/2018,Politicians,@PressSec,RT @WhiteHouse: President Trump is protecting American national security from the effects of unfair trade practices by protecting our steel… +03/08/2018,Politicians,@PressSec,"RT @FoxNews: .@POTUS: ""We have to protect and build our steel and aluminum industries, while at the same time showing great flexibility and…" +03/08/2018,Politicians,@PressSec,#InternationalWomensDay https://t.co/qCLjh60Pxx +07/02/2018,Politicians,@SarahPalinUSA,Democrat Senator Dumps Cold Water On Liberals Celebrating Socialist Candidate Ocasio-Cortez https://t.co/S4Se7EXpjy +07/02/2018,Politicians,@SarahPalinUSA,Scary thought. https://t.co/YSS0uDA33y +07/02/2018,Politicians,@SarahPalinUSA,Watch: Video Of Man Crying Over Low Black Unemployment Under Trump Is Going Viral https://t.co/sce0OxBLCS +07/02/2018,Politicians,@SarahPalinUSA,New Report Shows Border Arrests Have Dropped Amid 'Child Separation' Controversy https://t.co/UIsPXalNkn +07/02/2018,Politicians,@SarahPalinUSA,Elections Are Around The Corner: Here's A List Of Democrats Calling To Abolish ICE https://t.co/wx4SXDkaiu +07/02/2018,Politicians,@SarahPalinUSA,"Rasmussen Poll: 31% of Americans Think Civil War Ahead, 59% Fear Violence From One Group https://t.co/rYxN4IpprS" +07/02/2018,Politicians,@SarahPalinUSA,WATCH: Video From ‘Abolish ICE’ Protest Shows True Intentions of Democratic Socialists https://t.co/un52RAXXFf +07/02/2018,Politicians,@SarahPalinUSA,Holocaust Survivor Delivers Must See Message To Democrats Comparing Trump To Hitler https://t.co/JKtHPbZHjl +07/02/2018,Politicians,@SarahPalinUSA,"DISGUSTING: Dem Sen. Calls ICE 'Incompetents' At Protest, Former ICE Agent Responds https://t.co/LJ4li2CKeO" +07/02/2018,Politicians,@SarahPalinUSA,Critical Vote: Sen. Susan Collins Sets Her Requirements For SCOTUS Candidate https://t.co/971NbumeKp +07/02/2018,Politicians,@SarahPalinUSA,Alert: $4 Billion Worth Of Waste Found In Food Stamp Program https://t.co/R2cp3C21PI +07/02/2018,Politicians,@SarahPalinUSA,Trump Reportedly Plans To Issue A Bold Demand To Putin At Upcoming Summit https://t.co/iFrDAib0su +07/02/2018,Politicians,@SarahPalinUSA,'I Almost Already Accepted': Roseanne Says She Has Multiple Offers On Table To Return To TV https://t.co/DMhEMiVp28 +07/02/2018,Politicians,@SarahPalinUSA,Oops. https://t.co/tCx8hblni5 +07/02/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/MrKAS0kY5h +07/01/2018,Politicians,@SarahPalinUSA,Busted. https://t.co/V1ABWGk8uO +07/01/2018,Politicians,@SarahPalinUSA,Sick: America's OIdest Veteran Just Had His Life Savings Stolen https://t.co/twDjMofmU8 +07/01/2018,Politicians,@SarahPalinUSA,Good grief... https://t.co/2KnVVZT3jq +07/01/2018,Politicians,@SarahPalinUSA,Right on! 🇺🇸️ https://t.co/Qo7gJ1BMX4 +07/01/2018,Politicians,@SarahPalinUSA,Congress Includes Surprising Provision In New Farm Bill https://t.co/sUX95KPZg5 +07/01/2018,Politicians,@SarahPalinUSA,So Much Winning: Trump Reveals Plan For Another Round Of Tax Cuts https://t.co/vQwIy3Xljz +07/01/2018,Politicians,@SarahPalinUSA,Journalists Spread Conspiracy Theory that DHS Is Sending Out Secret Nazi Code https://t.co/acjMBgNf1n +07/01/2018,Politicians,@SarahPalinUSA,Awful... https://t.co/qLdW1ZE481 +07/01/2018,Politicians,@SarahPalinUSA,"Trump Responds To Democrats Who Are Trying To Abolish ICE, It's Pure Gold https://t.co/BwKhUauiJC" +07/01/2018,Politicians,@SarahPalinUSA,"Dem Senator Wants ICE To Be Abolished, Hopes You Forgot What She Said About Illegal Immigrants In 2009 https://t.co/IgYdNEVzJm" +07/01/2018,Politicians,@SarahPalinUSA,Hollywood Actor Takes Maxine's Words to Heart — Attempts to Stop Senator McConnell from Eating https://t.co/GUutUP5uhB +07/01/2018,Politicians,@SarahPalinUSA,'I Can't Even …' — Hillary Took A Shot At Melania And It Was A Stuttering Mess https://t.co/ZUZgbUmAjZ +07/01/2018,Politicians,@SarahPalinUSA,BOOM. https://t.co/nUHp2ziCJH +07/01/2018,Politicians,@SarahPalinUSA,This is a MUST watch! https://t.co/xa0apuUVqD +07/01/2018,Politicians,@SarahPalinUSA,Too funny!! https://t.co/CXsGPvWvFb +07/01/2018,Politicians,@SarahPalinUSA,Yikes! https://t.co/nyDj9Zu7iG +06/30/2018,Politicians,@SarahPalinUSA,"Restaurant Manager Refuses To Serve Customer Wearing A MAGA Hat, Immediately Suffers The Consequences https://t.co/03RAqfOdE5" +06/30/2018,Politicians,@SarahPalinUSA,A former CNN producer called him out for his actions. https://t.co/x7Q7e1hfL5 +06/30/2018,Politicians,@SarahPalinUSA,Trump's Epic Prediction From 2013 Just Came Back To Bite Dems In A Big Way https://t.co/R2VmgeJuyJ +06/30/2018,Politicians,@SarahPalinUSA,Shouldn't come as a surprise. https://t.co/qsTwU4n6oH +06/30/2018,Politicians,@SarahPalinUSA,She has reportedly canceled her upcoming public speaking events due to a credible death threat. https://t.co/0QS1ZlYdoG +06/30/2018,Politicians,@SarahPalinUSA,Oops... https://t.co/MHopOidU3w +06/30/2018,Politicians,@SarahPalinUSA,Scary! Authorities arrested the man in Los Angeles. https://t.co/y31IOoaTOe +06/30/2018,Politicians,@SarahPalinUSA,Negotiator-In-Chief: Trump Scores MASSIVE Resource Deal From Saudi Arabia https://t.co/gyJpl4y2ai +06/30/2018,Politicians,@SarahPalinUSA,Whoops... https://t.co/Y6nQQgny7a +06/30/2018,Politicians,@SarahPalinUSA,Trump Narrows List Of 25 Supreme Court Nominees To Just 5 Candidates https://t.co/ZnZ9agyQ4R +06/30/2018,Politicians,@SarahPalinUSA,NEW INFO... https://t.co/TMmSBgxBNr +06/30/2018,Politicians,@SarahPalinUSA,Well there you go... https://t.co/qvqhyEpV7A +06/30/2018,Politicians,@SarahPalinUSA,"SHE’S SPIRALING: Maxine Starts 'Crying' In Middle of Interview, Cancels 2 Events, Claims She’s the Real ‘Victim’ https://t.co/iCqmkHjMIH" +06/29/2018,Politicians,@SarahPalinUSA,More on this... https://t.co/Z2QrZAnLF8 +06/29/2018,Politicians,@SarahPalinUSA,Interesting. https://t.co/COPtOu0oGX +06/29/2018,Politicians,@SarahPalinUSA,GOP Rep On Illegal Border Crossings: '[Children] Should Be Reunited With Their Families... In Their Home Country' https://t.co/yy690232ON +06/29/2018,Politicians,@SarahPalinUSA,🇺🇸Bikers for Monetti🇺🇸 https://t.co/N2pMyURq5c +06/29/2018,Politicians,@SarahPalinUSA,Inside Scoop: Tucker Carlson Says White House Shake Up 'Likely Very Soon' https://t.co/3gRW3fiaap +06/29/2018,Politicians,@SarahPalinUSA,Thoughts?? https://t.co/uhvk4INYCb +06/29/2018,Politicians,@SarahPalinUSA,"Democrat Senator Calls For Abolishing ICE, Conservatives Point Out 1 Thing https://t.co/igaXsEDNkF" +06/29/2018,Politicians,@SarahPalinUSA,So Much For Peacefully Protesting: Nearly 600 Women's March Protesters ARRESTED on Capitol Hill https://t.co/dM145raxCA +06/29/2018,Politicians,@SarahPalinUSA,Whoa...this is big. https://t.co/dVmu7VR7z0 +06/29/2018,Politicians,@SarahPalinUSA,Barron Gets the Last Laugh: Peter Fonda's New Movie Is an Utter Disaster at the Box Office https://t.co/MKAeAlyKMU +06/29/2018,Politicians,@SarahPalinUSA,"VICTIMS IDENTIFIED: 5 Dead, Others Injured After Shooting Incident In Maryland Newsroom https://t.co/aV81TqgMGR" +06/29/2018,Politicians,@SarahPalinUSA,Do you agree? https://t.co/wU9aK9aXbI +06/29/2018,Politicians,@SarahPalinUSA,Photo: Sign Spotted at Red Hen After Sanders Incident Proves They're Grade-A Hypocrites https://t.co/EAXJO97XNR +06/29/2018,Politicians,@SarahPalinUSA,Comedy Central Writer Wishes Death Upon Justice Kennedy for Stepping Down https://t.co/zUrQKqny6o +06/28/2018,Politicians,@SarahPalinUSA,Thoughts on this? https://t.co/MrWPhX6DqS +06/28/2018,Politicians,@SarahPalinUSA,Wow! https://t.co/JU5jLTAhp5 +06/28/2018,Politicians,@SarahPalinUSA,Get READY... https://t.co/BJOdVtjcVx +06/28/2018,Politicians,@SarahPalinUSA,BOOM. https://t.co/j8RiEIWX3f +06/28/2018,Politicians,@SarahPalinUSA,Here are the details: https://t.co/7tfY5eGXgv +06/28/2018,Politicians,@SarahPalinUSA,🇺🇸Don’t know if a Senate fundraiser/rally is even supposed to be this much fun🇺🇸😄but I had a blast in America’s hea… https://t.co/XCZROkwepi +06/28/2018,Politicians,@SarahPalinUSA,Narrative Buster: Noncitizen Arrested For Role In Voter Fraud Scheme https://t.co/yJUUaQAhce +06/28/2018,Politicians,@SarahPalinUSA,This: https://t.co/iFoOGRf67s +06/28/2018,Politicians,@SarahPalinUSA,And so it begins... https://t.co/UPkOAMM1rB +06/28/2018,Politicians,@SarahPalinUSA,Big news: https://t.co/7feomwe3Qa +06/28/2018,Politicians,@SarahPalinUSA,'Republicans Are Forbidden': Look What Signs Are Popping Up Across Los Angeles https://t.co/HodhQIKeHT +06/28/2018,Politicians,@SarahPalinUSA,"Jerry Seinfeld Can't Hold It In, Says What Nobody Else In Hollywood Will About Roseanne's Firing https://t.co/d8Kzab8bY5" +06/28/2018,Politicians,@SarahPalinUSA,"BREAKING: Supreme Court Justice Announces Retirement, Gives Trump Biggest Gift of Presidency https://t.co/ybh4EsdW5x" +06/27/2018,Politicians,@SarahPalinUSA,It continues... https://t.co/eBnxDNZYN9 +06/27/2018,Politicians,@SarahPalinUSA,Share...a must see! https://t.co/SigMJUSxXw +06/27/2018,Politicians,@SarahPalinUSA,What do you think about this? https://t.co/Vf24ANa7P5 +06/27/2018,Politicians,@SarahPalinUSA,Remember Chelsea Manning Running For The Senate? Here's How It Turned Out https://t.co/U7yLji8lzm +06/27/2018,Politicians,@SarahPalinUSA,Terrible. https://t.co/n4FRa5VFJd +06/27/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/sUIKzk5A3Q +06/27/2018,Politicians,@SarahPalinUSA,Bolton is in Russia ahead of an anticipated summit between Putin and President Trump. https://t.co/XP23pG5czS +06/27/2018,Politicians,@SarahPalinUSA,Thoughts on this? https://t.co/0GIzhlHcmg +06/27/2018,Politicians,@SarahPalinUSA,And there it is....read up on it. https://t.co/iLJM21TOdc +06/27/2018,Politicians,@SarahPalinUSA,"Mitch McConnell And Wife Latest To Be Confronted By Protesters, She Answered Them With 7 FEISTY Words https://t.co/fg7aNPXuXh" +06/27/2018,Politicians,@SarahPalinUSA,"WATCH: ABC News Heads To Southern Border, Runs Into Illegals Being Smuggled Into US https://t.co/4l9PWdyCUS" +06/27/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/IJC05QO4JM +06/27/2018,Politicians,@SarahPalinUSA,"Another Trump Official Targeted By The Left, This Time Using A Dead Animal Carcass https://t.co/DeKSfzScSY" +06/27/2018,Politicians,@SarahPalinUSA,"James Woods Shreds Obama, Posts Time Cover of His Own https://t.co/yk3dLf2Ccd" +06/27/2018,Politicians,@SarahPalinUSA,Supreme Court Says Pro-Life Pregnancy Centers Don’t Have to Be ‘Abortion Referral Agencies’ https://t.co/Ar11fl5D40 +06/27/2018,Politicians,@SarahPalinUSA,"Pam Bondi Bravely Comes Forward: 3 Huge Guys Screamed and Cursed Me 1 Inch From My Face, Spit On My Head! https://t.co/4gfL1vKLn9" +06/27/2018,Politicians,@SarahPalinUSA,And here it is... https://t.co/xDP7C2oFVO +06/26/2018,Politicians,@SarahPalinUSA,The part of the story everyone should know... https://t.co/VdCjw18FNK +06/26/2018,Politicians,@SarahPalinUSA,Popular Liberal Website Warns GOP of 1970's Style Bombings... 'This Is Just the Beginning' https://t.co/fOBNYEOXlG +06/26/2018,Politicians,@SarahPalinUSA,10 Photos of Life Right Now https://t.co/AoW7ee7oGK +06/26/2018,Politicians,@SarahPalinUSA,"CNN’s Cillizza Is Mad Over Trump Tweet, NRA’s Loesch Had To Remind Him What Obama Said (Which Was Way Worse) https://t.co/7hda26ZniV" +06/26/2018,Politicians,@SarahPalinUSA,More info just came in... https://t.co/NCEARWvfZb +06/26/2018,Politicians,@SarahPalinUSA,Harley-Davidson To Move Work Overseas Following European Tariffs... Trump Is Not Happy About It https://t.co/cMKQRr6LvR +06/26/2018,Politicians,@SarahPalinUSA,Breaking. https://t.co/3O9aHWMjHh +06/26/2018,Politicians,@SarahPalinUSA,Really? https://t.co/kmooNI4na1 +06/26/2018,Politicians,@SarahPalinUSA,Check it out: https://t.co/G9hpzQtsE7 +06/26/2018,Politicians,@SarahPalinUSA,"Fed-Up Trump Says Forget Judges and Courts — Soon As Illegals Cross Border, We Must Return Them 'Immediately' https://t.co/kxuFhysZjL" +06/26/2018,Politicians,@SarahPalinUSA,More on this... https://t.co/0RfQjy3TNC +06/26/2018,Politicians,@SarahPalinUSA,North Korea Reportedly Making Quiet Move That Suggests They Are Serious About Deal With Trump https://t.co/o6Gr304Blc +06/26/2018,Politicians,@SarahPalinUSA,You'll want to see this one... https://t.co/p1AuHNwbH5 +06/25/2018,Politicians,@SarahPalinUSA,I Passed My Realtor’s Test: 3 (Sweet!) Photos of My Life Now https://t.co/mCTpVTXt32 +06/25/2018,Politicians,@SarahPalinUSA,WOW... https://t.co/ad3ssXwTZE +06/25/2018,Politicians,@SarahPalinUSA,He didn't hold back... https://t.co/TaNxD1G8q1 +06/25/2018,Politicians,@SarahPalinUSA,Iran Peace Deal? The Country Faces Economic Disaster And The U.S. Could Be Their Only Hope https://t.co/6SWYeHNxlb +06/25/2018,Politicians,@SarahPalinUSA,He says there are two things people need to do in response. https://t.co/MVcyH6Wjvg +06/25/2018,Politicians,@SarahPalinUSA,Devastating New Poll Shows Just How Out Of Touch Democrats Are On The Immigration Issue https://t.co/GOJjoTlw0A +06/25/2018,Politicians,@SarahPalinUSA,"""...they're not welcome anymore anywhere."" https://t.co/1Hbueidh2K" +06/25/2018,Politicians,@SarahPalinUSA,Here's What The Media Won't Tell You About MS-13 Gang Members Posing As Minors To Cross The Border https://t.co/yIO8Ctya6I +06/25/2018,Politicians,@SarahPalinUSA,RED HOT: Obama DHS Sec. Jeh Johnson Says Border Detentions In 2014 Were 'Necessary' And Still Are https://t.co/IF1f2Zvpoi +06/25/2018,Politicians,@SarahPalinUSA,Leftists Blast Sarah Sanders For Confirming She Was Thrown Out of Restaurant https://t.co/pLrraCaHe2 +06/25/2018,Politicians,@SarahPalinUSA,Leftists Injure Border Patrol Agent During Attempt to Stop a Bus at Detention Center https://t.co/sDItSekdN0 +06/25/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/ftt4VgJQjQ +06/25/2018,Politicians,@SarahPalinUSA,Leftists Make 'Credible Threats' Against the Children of DHS Employees https://t.co/rflHzkVJWc +06/25/2018,Politicians,@SarahPalinUSA,Obama 'Ethics Chief' Claims Sanders Broke the Law After She Was Booted From Restaurant https://t.co/aPqa94fl1t +06/25/2018,Politicians,@SarahPalinUSA,"ANOTHER GOP Woman Politician Harassed By Leftists, This Time at the Movies https://t.co/IfbNVIKgxC" +06/24/2018,Politicians,@SarahPalinUSA,"Maxine Waters: Harass Trump Officials Anywhere You Find Them, Gas Station, Restaurant, Shopping Mall https://t.co/fgqJMLfkCN" +06/24/2018,Politicians,@SarahPalinUSA,What do you think? https://t.co/dBohLu9fnw +06/24/2018,Politicians,@SarahPalinUSA,Terrible. https://t.co/C1NeXgLoGz +06/24/2018,Politicians,@SarahPalinUSA,"DOJ Turns Over Some Documents After Gowdy Threat, But Report Still Not In Compliance https://t.co/B2lIrhy86H" +06/24/2018,Politicians,@SarahPalinUSA,Looks like some people are calling for a boycott now...Thoughts? https://t.co/zfkn46wuB8 +06/24/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/EkBpbNUl5T +06/24/2018,Politicians,@SarahPalinUSA,The two candidates are competing for the newly redrawn 17th District. https://t.co/W1kupIdxrZ +06/24/2018,Politicians,@SarahPalinUSA,OUCH! https://t.co/KLMizwoAqG +06/24/2018,Politicians,@SarahPalinUSA,Liberals Just Came Up With A New Way To Crack Down On Guns And It's Infuriating https://t.co/qp5m8DX8CW +06/24/2018,Politicians,@SarahPalinUSA,"House Calls Peter Strzok's Bluff, Drops Subpoena On Him, And That's Not All https://t.co/eikl29Bg0W" +06/24/2018,Politicians,@SarahPalinUSA,People need to hear this. https://t.co/08e5g3A1ri +06/23/2018,Politicians,@SarahPalinUSA,WAIT...WHAT?? https://t.co/p3sEJxFEMy +06/23/2018,Politicians,@SarahPalinUSA,Fallout From Sanders' Visit: Restaurant Learns QUICKLY That They Probably Should Have Served Her https://t.co/QaNfXQawk6 +06/23/2018,Politicians,@SarahPalinUSA,Yikes. https://t.co/tt1AaIMGma +06/23/2018,Politicians,@SarahPalinUSA,'Angel Mom' Whose Son Was Killed By Illegal Alien Says Trump Saved Her From Suicide https://t.co/XoX6ZJ3IV8 +06/23/2018,Politicians,@SarahPalinUSA,"U.S. Marines Asks If Anyone Can Beat Them In This, It's Not What You Expect https://t.co/00GjsLMIpW" +06/23/2018,Politicians,@SarahPalinUSA,Sad... https://t.co/dbGT02URj7 +06/23/2018,Politicians,@SarahPalinUSA,"Imagine the outrage, and consequences, if this was a conservative - or Trump supporting - restaurant owner. https://t.co/Q3DQjNjE74" +06/23/2018,Politicians,@SarahPalinUSA,"Absolutely heartbreaking. They want to be heard, and President Trump is giving voice to their stories. https://t.co/sYR8iwV1r0" +06/23/2018,Politicians,@SarahPalinUSA,Our prayers for Katie Arrington and her friend. 🙏🏻 https://t.co/Wf2FJkAwFC +06/23/2018,Politicians,@SarahPalinUSA,AG Sessions Reveals Info About Disgraced FBI Official Strzok That We've Been Waiting A Long Time For https://t.co/3ZY0vgWP1C +06/23/2018,Politicians,@SarahPalinUSA,LINE CROSSED: Tom Arnold Vows He's Going To Stalk And Harass Barron At School https://t.co/qYz9XdlDDN +06/23/2018,Politicians,@SarahPalinUSA,Just...wow. https://t.co/gp23p1Gdef +06/23/2018,Politicians,@SarahPalinUSA,"Dem Candidate ARRESTED at Migrant Detention Center, Gets Brutal Reality Check from Border Patrol https://t.co/hHObzZjzEi" +06/22/2018,Politicians,@SarahPalinUSA,Annnnnnnd DONE! https://t.co/Vhn2krcLqy +06/22/2018,Politicians,@SarahPalinUSA,No holding Barack! https://t.co/GlKAhA3vXy +06/22/2018,Politicians,@SarahPalinUSA,Whoa...check it out: https://t.co/T15TuC0JC2 +06/22/2018,Politicians,@SarahPalinUSA,A new proposal to split the state has recently earned enough support to find its way to the November ballot box... https://t.co/RytSyChHf1 +06/22/2018,Politicians,@SarahPalinUSA,"On Summer Solstice ~ Slammin’ Salmon in Bristol Bay!🐟Thankful Piper’s attitude is the best😊 ~ in cold, rainy, windy… https://t.co/4LjnzqqQO3" +06/22/2018,Politicians,@SarahPalinUSA,Sounds like it was directed at the media... https://t.co/xMR21VrDpY +06/22/2018,Politicians,@SarahPalinUSA,House Just Passed Largest Bill EVER To Confront Opioid Crisis https://t.co/12uYH0t68P +06/22/2018,Politicians,@SarahPalinUSA,THIS IN: https://t.co/flgvySXMd3 +06/22/2018,Politicians,@SarahPalinUSA,Turns out it was all a massive lie....WOW. https://t.co/wn7q5Gm9Mv +06/22/2018,Politicians,@SarahPalinUSA,"""Remember their motto, RESIST! Ours is PRODUCE!"" https://t.co/YAglSUwQyK" +06/22/2018,Politicians,@SarahPalinUSA,"According to the poll, only 19% of registered voters favor catch-and-release while 46% support Trump’s executive or… https://t.co/gTByATpOP5" +06/22/2018,Politicians,@SarahPalinUSA,"BREAKING: Melania Defies Critics, Shows Up At the One Place Dems Swore She Never Would https://t.co/VLHsmakn4i" +06/22/2018,Politicians,@SarahPalinUSA,....... https://t.co/If01t8JrwO +06/22/2018,Politicians,@SarahPalinUSA,"Where Was Congress on IRS Scandal? + +How in the world did this take eight years? When the IRS comes knocking... https://t.co/jJ4lgeMuGm" +06/22/2018,Politicians,@SarahPalinUSA,American Airlines Demands Trump Not Use Its Planes for 'Separated Migrant Kids' — DHS Responds with a Vengeance https://t.co/eRCOvSeKTg +06/22/2018,Politicians,@SarahPalinUSA,Democrat Rep. Gives Mike Pence the Finger While Bragging About His 'Brotherly Love' https://t.co/yIHU4uSmLy +06/22/2018,Politicians,@SarahPalinUSA,"Juan Williams Defends Peter Fonda's Attack on Barron, Refuses to Say It Was Disgusting: Just Worded It 'Poorly' https://t.co/n5XFiX6PcS" +06/21/2018,Politicians,@SarahPalinUSA,Can't wait! https://t.co/LvklVkTs7l +06/21/2018,Politicians,@SarahPalinUSA,This is horrible! https://t.co/B1EoI9EROs +06/21/2018,Politicians,@SarahPalinUSA,Right on! https://t.co/UfOcZRv8Cn +06/21/2018,Politicians,@SarahPalinUSA,Just sad (and scary). The person who shared the picture of the sign on social media has reportedly received death t… https://t.co/cUZN4NC5uh +06/21/2018,Politicians,@SarahPalinUSA,Did you see this? https://t.co/pmcLucPgFd +06/21/2018,Politicians,@SarahPalinUSA,Sony Pictures just finished making a movie with Peter Fonda. But then they saw what he did to Barron Trump. Now the… https://t.co/E9yLqsfdcr +06/21/2018,Politicians,@SarahPalinUSA,"This democrat was the McCain/Palin ticket’s head honcho. + +Is it any wonder those running the 2008 campaign deemed… https://t.co/lToRZizLmj" +06/21/2018,Politicians,@SarahPalinUSA,"Just Now: Trump Proposes Border Security Solution, Hits GOP Over Filibuster Rule https://t.co/327EFEctWO" +06/21/2018,Politicians,@SarahPalinUSA,Happening! https://t.co/Jlpr5k44YE +06/21/2018,Politicians,@SarahPalinUSA,President Trump is reportedly looking to fulfill a conservative proposal from more than 20 years ago. https://t.co/dtUv8syXnz +06/21/2018,Politicians,@SarahPalinUSA,They Were Fed False Info! Evidence Now Shows FBI Altered Witness Reports https://t.co/B875AgwYK7 +06/21/2018,Politicians,@SarahPalinUSA,CNN Attempts to Shame Border Patrol Agent — He Turns the Tables and Leaves Host Speechless https://t.co/cBQxemLdb7 +06/21/2018,Politicians,@SarahPalinUSA,"Actor Breaks Silence After Melania Told Secret Service About His Threat to Kidnap, Cage Barron Trump https://t.co/qRtdx09nei" +06/20/2018,Politicians,@SarahPalinUSA,"Trump Finishes Speech, Walks Straight Over to American Flag, Then Let’s His True Patriot Come Out https://t.co/kiUlzgPlJX" +06/20/2018,Politicians,@SarahPalinUSA,Gotta love Texas! Classic. https://t.co/aBAsRYWGCD +06/20/2018,Politicians,@SarahPalinUSA,SICK. https://t.co/0QoXhaG1nW +06/20/2018,Politicians,@SarahPalinUSA,Report: Chuck Schumer Stands In The Way Of Republican Efforts To Fix Separations At The Border https://t.co/pulsT14Trf +06/20/2018,Politicians,@SarahPalinUSA,Definitely need more of this. Love it! https://t.co/4r7kmNabJ9 +06/20/2018,Politicians,@SarahPalinUSA,OUCH... https://t.co/m1cYlo9wOd +06/20/2018,Politicians,@SarahPalinUSA,FBI Refusing To Release Names Of 3 Other FBI Employees Caught Sending Anti-Trump Texts https://t.co/y6KPSZUOXS +06/20/2018,Politicians,@SarahPalinUSA,Oops... https://t.co/3MWp63uBuK +06/20/2018,Politicians,@SarahPalinUSA,Oh boy. https://t.co/SU2zW5VRQD +06/20/2018,Politicians,@SarahPalinUSA,An armed civilian took down a shooter after at least two people were shot at a Washington state Walmart. https://t.co/7nttBhqDki +06/20/2018,Politicians,@SarahPalinUSA,The American people are clearly sending the message that the Trump economy is a healthy one. https://t.co/rhHjamKcPn +06/20/2018,Politicians,@SarahPalinUSA,Must See: Mueller's Blundering Special Counsel Is Getting CLOBBERED In Court — MSM Ignoring All of It https://t.co/nPVI4PyADE +06/19/2018,Politicians,@SarahPalinUSA,BREAKING NEWS.... https://t.co/DqcmWssLEl +06/19/2018,Politicians,@SarahPalinUSA,"Border Official Fights Back, Slams Media For False Depiction of Detention Centers https://t.co/2AMeJwpQmP" +06/19/2018,Politicians,@SarahPalinUSA,"In light of recent info, what do you think? https://t.co/A4LtcRSbXi" +06/19/2018,Politicians,@SarahPalinUSA,Gowdy literally just gave one of his best speeches ever on the House floor. Stop whatever you're doing and watch th… https://t.co/lnhUNTu95c +06/19/2018,Politicians,@SarahPalinUSA,SHE'S TOAST: Merkel May Be Ousted from Office Next Week for 'Open-Door' Migrant Policy https://t.co/zuKazDgci4 +06/19/2018,Politicians,@SarahPalinUSA,Blast From The Past: James Woods Reminds Hillary That She Is NO Moral Authority https://t.co/qAqkwuc3HL +06/19/2018,Politicians,@SarahPalinUSA,Larry Elder: The 'xenophobe quiz'--Who said this about immigration? https://t.co/k88qGM4azI +06/19/2018,Politicians,@SarahPalinUSA,Uh oh... https://t.co/7odmzIZjIV +06/19/2018,Politicians,@SarahPalinUSA,"“As a Nation, we vow to never forget the millions of African Americans who suffered the evils of slavery.” - Presid… https://t.co/rqgasLSLLo" +06/19/2018,Politicians,@SarahPalinUSA,What in the world...What do you think? https://t.co/rhkqQBYIw0 +06/19/2018,Politicians,@SarahPalinUSA,They messed with the wrong couple... https://t.co/4zLKviMuq4 +06/19/2018,Politicians,@SarahPalinUSA,BREAKING: Investigation Opened Into Comey — Turns Out Leaking Classified Docs to Try to 'Take Down' Trump Was a Bad… https://t.co/hrGhcTNV6S +06/19/2018,Politicians,@SarahPalinUSA,Thought Sam Bee Calling Ivanka a 'C--t' Was Sick? Well Kathy Griffin Just Took It to a Whole New Level https://t.co/DtwlqSqOix +06/19/2018,Politicians,@SarahPalinUSA,No he certainly won’t... https://t.co/tfjgacxR7q +06/19/2018,Politicians,@SarahPalinUSA,He didn’t mince words... https://t.co/h5bouVJpe0 +06/19/2018,Politicians,@SarahPalinUSA,Did you see this?! https://t.co/1t5yG3VHXx +06/19/2018,Politicians,@SarahPalinUSA,Yikes... https://t.co/k8YNgGS5Xi +06/19/2018,Politicians,@SarahPalinUSA,Whoops... https://t.co/LR4E74zHWR +09/15/2017,Politicians,@BarneyFrank,"I am starting to wonder which side Trump is rooting for in 2018? +https://t.co/I508ROTVjp" +11/11/2015,Politicians,@BarneyFrank,"RT @CGDev: #LGBT Rights in the Developing World: What Can Washington Do? +RSVP to attend our event with @BarneyFrank on Nov 11: https://t.co…" +11/10/2015,Politicians,@BarneyFrank,"RT @CGDev: #LGBT Rights in the Developing World: What Can Washington Do? +RSVP to attend our event with @BarneyFrank on Nov 11: https://t.co…" +11/09/2015,Politicians,@BarneyFrank,"Honoring my mother, Elsie Frank for her public service in Elder affairs. Thank you @UMassBoston https://t.co/Su8GBMB8Kc" +11/09/2015,Politicians,@BarneyFrank,@McCormackGrad #mgsareyouready https://t.co/AHMHc5VdY9 +11/09/2015,Politicians,@BarneyFrank,RT @UMassBoston: .@UMassBoston honors former Congressman Barney Frank tonight at the State House! https://t.co/kpA0gMpGVk +10/26/2015,Politicians,@BarneyFrank,In New Mexico to shoot scenes for my cameo in @GravesEPIX @EpixHD +10/23/2015,Politicians,@BarneyFrank,RT @TheView: Did Biden pull out of the race because of Hillary? @BarneyFrank has some thoughts. WATCH: https://t.co/kgPzBaZyoI https://t.co… +10/23/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Opinion via @BarneyFrank: Wealthy allies have had a free ride for too long https://t.co/2i4lb0aOm9 | Getty https://t.co/Xp… +10/23/2015,Politicians,@BarneyFrank,Thanks to all the hosts @TheView this morning. #comparedtowhat #iconintoemoji #franktalk +10/23/2015,Politicians,@BarneyFrank,RT @whyyradiotimes: We round out Radio Times in Review w. @MartyMossCoane's interview w. @BarneyFrank on his life & career in politics - ht… +10/23/2015,Politicians,@BarneyFrank,"RT @SHO_PR: Today on @TheView, @BarneyFrank will chat about his new #Showtime doc ""Compared to What: The Improbable Journey of Barney Frank""" +10/19/2015,Politicians,@BarneyFrank,"Looking forward to Thursday, 10/23 when I'm back at Harvard https://t.co/QAzWmv9m6M @JFKJrForum @HarvardIOP" +10/18/2015,Politicians,@BarneyFrank,Mismatched fervor sways gun debate http://t.co/3wPQW3OD08 +10/14/2015,Politicians,@BarneyFrank,#DemDebate +10/14/2015,Politicians,@BarneyFrank,RT @katiecouric: Looking forward to having @BarneyFrank join our @YahooNews “After Dark” political party tonight! #DemDebate https://t.co/… +10/13/2015,Politicians,@BarneyFrank,"I’ll be joining @KatieCouric after the #DemDebate at 11pmET for highlights, analysis & more! @YahooNews! http://t.co/X16Y3A2dvo" +10/13/2015,Politicians,@BarneyFrank,http://t.co/0fwYBuvFe0 #princeton +10/11/2015,Politicians,@BarneyFrank,Don't forget to celebrate some success http://t.co/wKE4uSRy2Q +10/08/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Opinion via @BarneyFrank: The Republican Plague on Government http://t.co/aUSygXOm8h | AP Photo http://t.co/fAxK5xqMsu +10/05/2015,Politicians,@BarneyFrank,Questions without answers http://t.co/WzYRMLKxHP +10/02/2015,Politicians,@BarneyFrank,RT @nbroverman: It's a good day when @BarneyFrank calls & says his oped on #boehner is ready 4 @TheAdvocateMag Thankyou Congressman! http:/… +09/28/2015,Politicians,@BarneyFrank,Increasing federal spending on transportation is sound economic policy http://t.co/q1QojE6ur4 +09/26/2015,Politicians,@BarneyFrank,RT @politico: Column via @BarneyFrank: America’s religious masquerade http://t.co/X8CFPQHFKx | AP Photo http://t.co/dQ3hRvEA1Y +09/08/2015,Politicians,@BarneyFrank,"Email issue lingers, but it will fade #hrc2016 http://t.co/lmowaQobzC" +09/05/2015,Politicians,@BarneyFrank,RT @NEBookFair: Mark Your Calendars @BarneyFrank will be talking + signing copies of #Frank Thursday November 19 from 7-8PM #Icon https://… +09/03/2015,Politicians,@BarneyFrank,Why the U.S. Military Can’t Help in Syria http://t.co/IPX8wq1CKq +09/02/2015,Politicians,@BarneyFrank,"RT @TI_Boston: Save the Date: @BarneyFrank will be speaking at Temple Israel on Friday, October 16 during Qabbalat Shabbat. http://t.co/9Ws…" +08/31/2015,Politicians,@BarneyFrank,Predictions proven wrong still matter http://t.co/o7Gtt0NEAa +08/30/2015,Politicians,@BarneyFrank,"RT @redcarpetcrash: 'Compared To What: The Improbable Journey Of Barney Frank' Premieres Friday, October 23 On @SHO_Network http://t.co/IPy…" +08/27/2015,Politicians,@BarneyFrank,RT @CNBCClosingBell: Presidential candidates sounding off on the market volatility. @BarneyFrank & @larry_kudlow with their reaction to tha… +08/27/2015,Politicians,@BarneyFrank,RT @iah_unc: We're excited to announce former Congressman @BarneyFrank to deliver this year's Weil Lecture! Details --> http://t.co/QbF4zst… +08/20/2015,Politicians,@BarneyFrank,How Gay Marriage Is Like Legalizing Pot http://t.co/t31319JS1N +08/17/2015,Politicians,@BarneyFrank,These Republican candidates won't 'compromise' with voters http://t.co/knbRGoQnwC +08/13/2015,Politicians,@BarneyFrank,John Kasich’s Double-Edged Sword http://t.co/jir0k41H0l +08/07/2015,Politicians,@BarneyFrank,"@marcorubio plays GOP bait & switch, repeal Financial Reform so mega-banks can go back to pre-'08 ways #GOPDebate" +08/07/2015,Politicians,@BarneyFrank,"Kasich's central point against @HillaryClinton was he helped balance the budget, he forgot to mention he did this with Bill Clinton" +08/07/2015,Politicians,@BarneyFrank,Fox Reporters have been appropriately & intelligently tough in their questioning #GOPDebate +08/02/2015,Politicians,@BarneyFrank,Some deal is better than no deal with Iran. http://t.co/g9uiYZfcHe +07/27/2015,Politicians,@BarneyFrank,Political party differences aplenty http://t.co/OU72Tayp89 +07/24/2015,Politicians,@BarneyFrank,http://t.co/TQ7uo6qJAk +07/23/2015,Politicians,@BarneyFrank,Why Progressives Shouldn’t Support Bernie http://t.co/NOn5JmjGyl +07/21/2015,Politicians,@BarneyFrank,RT @HouseNewDems: @BarneyFrank says #DoddFrank has brought needed oversight to derivatives. Five years on DF has made our markets work bett… +07/21/2015,Politicians,@BarneyFrank,RT @HillaryClinton: Dodd-Frank was enacted 5 years ago today & has been under GOP attack ever since. As president I'll defend Wall Street r… +07/09/2015,Politicians,@BarneyFrank,"RT @POLITICOMag: Our newest columnist: former Rep. @BarneyFrank. His debut column: ""The Republican War on Wages"" http://t.co/HxQZf4M1vp" +06/27/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Via @BarneyFrank: Justice Scalia is a homophobe http://t.co/pMJAXdvXRm | AP Photo http://t.co/wwRCeCVGqL +06/27/2015,Politicians,@BarneyFrank,Justice Scalia Is a Homophobe http://t.co/eKVEmyP3JE #LoveWins +06/26/2015,Politicians,@BarneyFrank,#lovewins +06/22/2015,Politicians,@BarneyFrank,"Same side, different reason http://t.co/iwfD7fJI9H" +05/20/2015,Politicians,@BarneyFrank,I just scored 0 points in @RulesTheGame and reached level 1! http://t.co/8qZk6FfDqB #RulesGameryrttt http://t.co/vkwXPMhue7 +05/20/2015,Politicians,@BarneyFrank,I just scored 0 points in @RulesTheGame and reached level 1! http://t.co/8qZk6FfDqB #RulesGamehjghhfgjieur http://t.co/0f4qWTvabk +05/20/2015,Politicians,@BarneyFrank,http://t.co/C14H4YE14y Looking forward to this event on Thursday. +05/17/2015,Politicians,@BarneyFrank,"RT @RiversideWDCPAC: ""We don't win what we don't fight for!"" @SenWarren at #CADem15 http://t.co/K87gzYTSdl" +05/14/2015,Politicians,@BarneyFrank,An open letter to Obama on trade http://t.co/At7A94WDIT via @BostonGlobe +05/08/2015,Politicians,@BarneyFrank,"Thursday, May 21, at the Coolidge Corner Theater (290 Harvard St, Brookline, MA). http://t.co/C14H4YE14y Looking forward to this event!" +05/04/2015,Politicians,@BarneyFrank,RT @CA_Dem: CADems are proud to welcome @SenWarren and @BarneyFrank to Convention. Sign the welcome card: http://t.co/nFHBSw6BJV http://t.c… +05/04/2015,Politicians,@BarneyFrank,http://t.co/55bV7tDeA2 +04/30/2015,Politicians,@BarneyFrank,"Thank you @Andy, @BravoWWHL & @MyTrainerBob #mazel" +04/30/2015,Politicians,@BarneyFrank,http://t.co/UcfPWICkHD +04/30/2015,Politicians,@BarneyFrank,Good descriptions @MyTrainerBob @BravoWWHL mazel +04/30/2015,Politicians,@BarneyFrank,RT @BravoWWHL: Let us be Frank - this is going to be a great show. It's @MyTrainerBob & @BarneyFrank at 11/10c! #WWHL http://t.co/7bjnT7F5tk +04/30/2015,Politicians,@BarneyFrank,RT @Andy: AWESOME COMBO! Tweet me Q's for @BarneyFrank and @MyTrainerBob - see you at 11!!! #WWHL +04/30/2015,Politicians,@BarneyFrank,Looking forward to a fun evening with @Andy at 11:00pm tonight on @Bravotv #WWHL +04/28/2015,Politicians,@BarneyFrank,Looking forward to @LateNightSeth tonight #LNSM +04/28/2015,Politicians,@BarneyFrank,Thank you @PennState for hosting The Great Debate http://t.co/WRPbdxPx1y +04/27/2015,Politicians,@BarneyFrank,http://t.co/wsV2KaMsux Netanyahus approach is misguided +04/08/2015,Politicians,@BarneyFrank,http://t.co/FQO3bxV2EC @92Y +04/07/2015,Politicians,@BarneyFrank,"RT @BrazosBookstore: Tonight! Come one, come all! @BarneyFrank will be here at 7PM to talk FRANK! @fsgbooks http://t.co/0pBUF55AXT http://t…" +04/06/2015,Politicians,@BarneyFrank,http://t.co/OtwATp16ss +04/04/2015,Politicians,@BarneyFrank,I will be at Books a Million in South Portland today from 2-4p doing a reading from my book and signing. Hope to see lots of Mainers today! +04/03/2015,Politicians,@BarneyFrank,RT @joekennedy: I was proud to #LIUB today for all those affected by autism #Congress4LIUB #WorldAutismAwarenessDay @autismspeaks http://t.… +04/02/2015,Politicians,@BarneyFrank,"RT @LiveWireRadio: | | | Next Broadcast | | | +PERMISSION TO SPEAK FRANKLY with: +@BarneyFrank +@aparnapkin +@joepug +Listen: http://t.co/onn…" +04/02/2015,Politicians,@BarneyFrank,"RT @SFGateAandE: We talk to @BarneyFrank, who's in town to discuss his new book: http://t.co/1wlJCFUVHX @cityartssf http://t.co/KUOqfqFkfP" +03/27/2015,Politicians,@BarneyFrank,"RT @RealTimers: As always, @BarneyFrank dropped some #RealTalk during his last #RealTime appearance. He's back @HBO tomorrow at 10pm! http:…" +03/24/2015,Politicians,@BarneyFrank,"RT @HarvardBooks: Tue at 7pm: @BarneyFrank presents his political memoir FRANK, cosponsored by @HarvardDems http://t.co/pZVCM299Ad http://t…" +03/21/2015,Politicians,@BarneyFrank,RT @MMFARadio: We're live today with an all new show! Today's guests: @rebeccavallas @BarneyFrank and @benjaminja and @LivKittel @WiseSoph … +03/20/2015,Politicians,@BarneyFrank,'Frightened' about Netanyahu's impact http://t.co/RcbzLoGVl2 via @usatoday +03/19/2015,Politicians,@BarneyFrank,Pull No Punches http://t.co/0TCExvsjMN via @dailybeast +03/19/2015,Politicians,@BarneyFrank,"RT @prattlibrary: TONIGHT! Writers LIVE! @BarneyFrank talks about his new book, Frank, 7pm, Central Library Main Hall http://t.co/qPyl6erqor" +03/18/2015,Politicians,@BarneyFrank,RT @bookbrag: .@BarneyFrank discusses FRANK at @SixthandI tonight at 7! http://t.co/VG8ec1eGvr @Politics_Prose @fsgbooks +03/18/2015,Politicians,@BarneyFrank,RT @GWmedia: @BarneyFrank & Paul Volcker to discuss the @federalreserveat #GWU on March 20: http://t.co/G8ub7MnM8O +03/18/2015,Politicians,@BarneyFrank,RT @MacmillanLib: Happy belated #BookBday to FRANK by @BarneyFrank! http://t.co/b0k7PQcKRn Out now from @fsgbooks. http://t.co/JZApRXU8AC +03/18/2015,Politicians,@BarneyFrank,http://t.co/yy11hb5Evc +03/17/2015,Politicians,@BarneyFrank,"RT @AdamLMedia: Former Congressman @BarneyFrank stopped by @TheStreet to discuss his new book, 'Frank' with @5GsOnTheStreet http://t.co/mI3…" +03/17/2015,Politicians,@BarneyFrank,"RT @fsgbooks: ""The best humor is offered up by the stupidity of your opponents."" @BarneyFrank on @nprfreshair http://t.co/25MsqNOSc8" +03/17/2015,Politicians,@BarneyFrank,RT @LeonardLopate: At noon: @BarneyFrank talks about his public battles and personal trials. http://t.co/PpPgefVkEo +03/17/2015,Politicians,@BarneyFrank,"RT @fsgbooks: ""Incrementalism is not the enemy of militancy; it is often the only effective means of expressing it."" –@BarneyFrank http://t…" +03/17/2015,Politicians,@BarneyFrank,"RT @BaselYHamdan: Watch: @barneyfrank joins @HuffPostLive to discuss his new memoir ""Frank"" http://t.co/0wMKvP17de" +03/17/2015,Politicians,@BarneyFrank,"RT @emheinzbina: .@BarneyFrank joins @HuffPostLive at 1030! A kindred spirit since his ""neatness isn't everything"" reelection campaign http…" +03/17/2015,Politicians,@BarneyFrank,Barney Frank's Journey From Closeted To An Openly Gay Member Of Congress http://t.co/37BGjSB94Q +03/17/2015,Politicians,@BarneyFrank,RT @nprfreshair: Barney Frank's Journey From Closeted To An Openly Gay Member Of Congress http://t.co/yu03lgTnbb +03/17/2015,Politicians,@BarneyFrank,"RT @nightlyshow: Tonightly: @Rachel__Nichols, @BarneyFrank, @robcorddry, and @Wale join Larry to talk about the money college athletes don'…" +03/12/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/mzbPF9OFPz +03/10/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/4gcIB7GwWk +03/09/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/Hju4aAo1lH +03/09/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/OPqFEHSwuS +03/02/2015,Politicians,@BarneyFrank,Snow calls attention to infrastructure - http://t.co/2JyLRJ7UL3 #mainesundaytelegram +02/27/2015,Politicians,@BarneyFrank,Looking forward to this event. http://t.co/SIJDhBcm96 +02/26/2015,Politicians,@BarneyFrank,RT @IOPfellows: Today at 4pm: @marthacoakley w/ @BarneyFrank will discuss #MarriageEquality & @kayhagan joins @JNSmall to talk #womeninthes… +02/24/2015,Politicians,@BarneyFrank,RT @BarneyFrankFilm: Join us in bringing back Barney Frank’s wit and wisdom to the American people. http://t.co/v9uWm7xBmO @BarneyFrankFi… +02/24/2015,Politicians,@BarneyFrank,If you miss Barney Frank’s wit and wisdom here’s a way to bring him back to the American people:... http://t.co/kAECYG4yzG +02/24/2015,Politicians,@BarneyFrank,https://t.co/U5g1WvigtK http://t.co/meTayxlpI5 +02/23/2015,Politicians,@BarneyFrank,Barney Frank Film--Where Your Money Goes http://t.co/C9sSUaAH1L +02/23/2015,Politicians,@BarneyFrank,Please watch--YOU can make a difference: http://t.co/fQiyEQ5oBi http://t.co/KANNU2qBGL +02/23/2015,Politicians,@BarneyFrank,Policing's problems can be fixed - http://t.co/Lo328hLzay #GoogleAlerts +02/16/2015,Politicians,@BarneyFrank,RT @BarneyFrankFilm: Across generations with @RepJoeKennedy & @BarneyFrank @freedomtomarry http://t.co/weIC9OcZ6J Join the Indiegogo http:… +02/16/2015,Politicians,@BarneyFrank,Barney Frank--Across the Generations http://t.co/B6AQFBzr65 +02/16/2015,Politicians,@BarneyFrank,Barney Frank--Across the Generations http://t.co/6JYqpiInje +02/16/2015,Politicians,@BarneyFrank,https://t.co/xXUyf41noI http://t.co/JTuMVWQhu3 +02/16/2015,Politicians,@BarneyFrank,https://t.co/xXUyf3JMxa http://t.co/fRLDXJwQ1V +02/09/2015,Politicians,@BarneyFrank,Balancing the need for protection versus human rights - http://t.co/MC7SHkiHML #GoogleAlerts +02/01/2015,Politicians,@BarneyFrank,Reacting to Republicans' speech reaction http://t.co/SpDM2MZWzO +01/21/2015,Politicians,@BarneyFrank,I am pleased to announce that I will attend the world premiere of a new documentary Compared to What? The... http://t.co/bcfkLTaeTT +01/21/2015,Politicians,@BarneyFrank,I am pleased to announce that I will attend the world premiere of a new documentary Compared to What? The... http://t.co/16wGfLR0e5 +01/19/2015,Politicians,@BarneyFrank,Muslim majority should do more to condemn violence - http://t.co/T1I3wa3Inn #GoogleAlerts +01/16/2015,Politicians,@BarneyFrank,RT @HillaryClinton: Attacking financial reform is risky and wrong. Better for Congress to focus on jobs and wages for middle class families. +01/15/2015,Politicians,@BarneyFrank,RT @jessemermell: #Brookline celebrates #MLK Day w/ an event at @thecoolidge. Keynote from @BarneyFrank. Mon. 4pm. Free. http://t.co/e2JS3A… +01/15/2015,Politicians,@BarneyFrank,A Strategy in the Fight Over Dodd-Frank: Go Big - http://t.co/9jd19Y1mmM #GoogleAlerts +01/12/2015,Politicians,@BarneyFrank,Unions key to income equality - http://t.co/PVWjzx9Wm6 #GoogleAlerts +12/22/2014,Politicians,@BarneyFrank,Financial reform: Still optimistic - http://t.co/7ISTQixZGp #GoogleAlerts +12/16/2014,Politicians,@BarneyFrank,Frank paints Obamacare foes with too broad a brush - http://t.co/5ZGdyUgE9q +12/06/2014,Politicians,@BarneyFrank,http://t.co/qJwi0iDJpt +12/02/2014,Politicians,@BarneyFrank,From http://t.co/Ru5LE6tvg2 http://t.co/7JOdUvqORy +11/24/2014,Politicians,@BarneyFrank,US cannot police the entire world http://t.co/ZewzHbABJL +11/08/2014,Politicians,@BarneyFrank,"RT @allinwithchris: Tonight: @BarneyFrank, @SCOTUSblog's Tom Goldstein, @RichardKimNYC, @SharylAttkisson #inners" +11/08/2014,Politicians,@BarneyFrank,"RT @SteveKornacki: On tomorrow's show, we'll talk over the fallout from Tuesday and what comes next with @BarneyFrank, @willcain and @KateN…" +10/27/2014,Politicians,@BarneyFrank,Policing the world not our job -no IOU's http://t.co/x4nuNASDkm +10/13/2014,Politicians,@BarneyFrank,Democrats merit credit for economy - http://t.co/82dByKQUV8 +10/06/2014,Politicians,@BarneyFrank,Obama shouldn't go it alone - http://t.co/PBHUsfFQ4Y +10/02/2014,Politicians,@BarneyFrank,RT @PolicyCast: Former MA Congressman @BarneyFrank makes the case for why experience counts in congress - http://t.co/GDZ5mzvLyZ +09/29/2014,Politicians,@BarneyFrank,Exempting auto dealers defies logic - http://t.co/rH4AKKVZWP #CFPB +09/24/2014,Politicians,@BarneyFrank,RT @allinwithchris: TONIGHT: Who? @AymanM @ChrisMurphyCT @ChrisVanHollen @mike_giglio @will_mccants @costareports @BarneyFrank #inners +09/22/2014,Politicians,@BarneyFrank,"Bombing Islamic State right call, wrong reason - http://t.co/973Xv90uYL" +09/18/2014,Politicians,@BarneyFrank,Marijuana Legalization Will Follow in Gay Marriage's Footsteps @bigthink http://t.co/LDaFSHfEcI +09/08/2014,Politicians,@BarneyFrank,"In VA health care crisis, government expanded http://t.co/lnXAjd1zFi" +09/03/2014,Politicians,@BarneyFrank,As a contributor to @CNBC here is my contribution. http://t.co/yhS50iG1iT +08/28/2014,Politicians,@BarneyFrank,"Check out The Scrum podcast I participated in today https://t.co/27DiKeuwhy +#WGBH" +08/14/2014,Politicians,@BarneyFrank,"RT @CNN: Join @BarneyFrank @Wildaboutmusic on http://t.co/hI53Eamx1F as you watch #TheSixtiesCNN, 9p ET http://t.co/MfkA7twXoL http://t.co/…" +08/04/2014,Politicians,@BarneyFrank,Wishing we could fix hot spots doesn't make it so http://t.co/ouU8RUdPP2 +07/29/2014,Politicians,@BarneyFrank,http://t.co/gmBkPFCEIn +07/24/2014,Politicians,@BarneyFrank,RT @DMHopewell: @BarneyFrank among other panelists after watching #FreedomSummer http://t.co/ympB24HJLX +07/23/2014,Politicians,@BarneyFrank,RT @FSCDems: Watch former Chairman @BarneyFrank testify on the impacts of #DoddFrank. LIVE HERE -> http://t.co/bs6YKWo8mW +07/22/2014,Politicians,@BarneyFrank,Assessing the Impact of the Dodd-Frank Act Four Years Later. #testifying 23 July 2014 +07/21/2014,Politicians,@BarneyFrank,RT @FSCDems: **Media Advisory** - Ranking Member @MaxineWaters announces @BarneyFrank to testify on namesake Law. http://t.co/fm3DJ9IGkc #… +07/14/2014,Politicians,@BarneyFrank,2016 Elections... http://t.co/cdVaw6wqul +06/17/2014,Politicians,@BarneyFrank,"RT @AriMelber: On @TheLastWord at 10: + +@GovHowardDean on Iraq +Rev Barber on Moral Monday +@BarneyFrank on ENDA +@DavidFrum on GOP race +D Gro…" +06/16/2014,Politicians,@BarneyFrank,VA suffering mostly from inadequate funding http://t.co/lWGgz5tnpi +06/13/2014,Politicians,@BarneyFrank,"RT @allinwithchris: ""What they're talking about is the *indefinite occupation* of Iraq"" - @BarneyFrank #inners" +06/09/2014,Politicians,@BarneyFrank,"""I spoke w/ @ChrisDStedman at @RNS about my @americnhumanist award & the challenges facing LGBT people today: http://t.co/a2wa3Hm1qm""" +06/09/2014,Politicians,@BarneyFrank,Gay Marriage is now business as usual http://t.co/vwbBZiaVKo +06/02/2014,Politicians,@BarneyFrank,It's time to stand up to Thai regime http://t.co/MyHvXyLz1E +05/23/2014,Politicians,@BarneyFrank,RT @MassNAHRO: Fmr Congressman Frank Addresses Public Housing Officials at Conference @BarneyFrank http://t.co/jGnwJflNRZ http://t.co/pgBGH… +05/15/2014,Politicians,@BarneyFrank,RT @jstreetdotorg: .@BarneyFrank says @Conf_of_Pres' rejection of J Street is a mistake: http://t.co/Qm1IK6q6e7 +05/01/2014,Politicians,@BarneyFrank,http://t.co/JkiNTfelPb +04/30/2014,Politicians,@BarneyFrank,Looking forward to @LateNightSeth tonight on @NBC - 12:35am @sethmeyers @PackCreekFilms #ComparedToWhat +04/30/2014,Politicians,@BarneyFrank,http://t.co/0PUUY362VV +04/27/2014,Politicians,@BarneyFrank,#TFF2014 http://t.co/D0beYsvvOd +04/27/2014,Politicians,@BarneyFrank,"""Compared to What? The Improbable Journey of Barney Frank' #TFF2014" +04/25/2014,Politicians,@BarneyFrank,RT @LeonardLopate: Now: @BarneyFrank talks about his 30 years in the House and being the first openly gay congressman http://t.co/4lE1o20uRH +04/24/2014,Politicians,@BarneyFrank,"RT @HarvardIOP: .@BarneyFrank & @chrisdodd will disucss the passage of Dodd-Frank, the bill that notably changed financial regulation http:…" +04/22/2014,Politicians,@BarneyFrank,RT @PackCreekFilms: @BarneyFrank @TribecaFilmFest @ABFalecbaldwin +04/09/2014,Politicians,@BarneyFrank,RT @rollcall: Forthcoming @BarneyFrank Documentary Aims to Inspire: http://t.co/8Wers5dTmv +03/17/2014,Politicians,@BarneyFrank,"@TriBeCaFilmFestival ""Compared to What: The Improbable Journey of Barney Frank"" http://t.co/S9ajmgR8O2 #TFF2014" +03/12/2014,Politicians,@BarneyFrank,#LGBTequalityworldwide http://t.co/SmjiiZozDD +03/10/2014,Politicians,@BarneyFrank,"https://t.co/r5kQ4oOz1W +#lefthandedgayjew" +03/04/2014,Politicians,@BarneyFrank,RT @montalvo_d: Did markets make #Putin blink? Will lawmakers ignore #Obama budget? @BarneyFrank joins @SquawkStreet 10a ET. +02/24/2014,Politicians,@BarneyFrank,@maddow tonight @ 9:00 to discuss Defense Secretary Chuck Hagel's proposal to shrink the Army to it's smallest size in 74 years +02/19/2014,Politicians,@BarneyFrank,RT @OutLeadership: Thank you @BarneyFrank for your nomination @LiaParifax @hudsonism @AthleteAlly in @VanityFair Hall of Fame. We are so pr… +02/18/2014,Politicians,@BarneyFrank,Looking forward to @SquawkStreet this morning to discuss the US decision to allow banks to do business with licensed Pot Shops @CNBC +02/17/2014,Politicians,@BarneyFrank,Religions leaders deserve some blame for stirring up strife http://t.co/8Vc4sIBsur +02/13/2014,Politicians,@BarneyFrank,@vailsymposium today to speak #aftertheshock +02/03/2014,Politicians,@BarneyFrank,@CNBC @10:30est to discuss @JanetYellen #newFedChair +01/31/2014,Politicians,@BarneyFrank,RT @RichardLui: Join us @msnbc @jansingco 10aET w/ @mkraju @ElaheIzadi @MariaTeresa1 @BarneyFrank @sharon_epperson @RevJoeWatkins @KatyTurN… +01/30/2014,Politicians,@BarneyFrank,"RT @PoliticsNation: Obama’s been accused of punishing millionaires, but @BarneyFrank joins us next to discuss what the fight for fairness i…" +01/30/2014,Politicians,@BarneyFrank,"Tune in to @PoliticsNation this evening, we'll be discussing Obama's fight for fairness." +01/06/2014,Politicians,@BarneyFrank,Democrats don't owe @RepPaulRyan anything for paying debts he voted to incur. http://t.co/j6N3vZ1QDU +12/16/2013,Politicians,@BarneyFrank,Right wing politicians correct record: their gateway to cocaine was alcohol not marijuana. Prohibit what? http://t.co/lt7OfLInxg +12/08/2013,Politicians,@BarneyFrank,How can 100 bil $ more in Afghanistan tll 2024 do what 600 bil $ since 2003 hasn't done? #worstobambadecision http://t.co/fAeOrlloCu +11/25/2013,Politicians,@BarneyFrank,Money for war or money for health care...seems like an obvious choice #admityourmistakes http://t.co/zFaTdPhVCN +11/18/2013,Politicians,@BarneyFrank,Karnak rtns: Answer: Barney Frank & Iraqi weapons of mass destruction-Question: Name 2 things Dick Cheney lies about http://t.co/rlpuJFymEw +11/14/2013,Politicians,@BarneyFrank,"RT @UMassD: @BarneyFrank coming to #UMassD. Public Lecture ""How to Break the Stalemates: Political & Economic"" @Carney_Library, Nov. 21, 2p…" +11/12/2013,Politicians,@BarneyFrank,Rep. Michaud's announcement shows confidence in Mainers' good sense. http://t.co/BUbfodf9qo +11/04/2013,Politicians,@BarneyFrank,#progressivepolitics http://t.co/jdKTKjmHT4 +10/31/2013,Politicians,@BarneyFrank,"RT @FinancialCmte: In the 112th Congress, #HR992 was HR1838. Here’s what @BarneyFrank & 17 others @FSCDems said about it then, #inners. htt…" +10/31/2013,Politicians,@BarneyFrank,Way to go Red Sox! +10/30/2013,Politicians,@BarneyFrank,"RT @allinwithchris: TONIGHT: Who? @RepLanceNJ7, @cjoh, @DelegateDonna, @wendellpotter, @BarneyFrank, @Joelsberg, @FoodBank_Prez #inners" +10/29/2013,Politicians,@BarneyFrank,RT @CNBCClosingBell: LIVE NOW: Co-authors of Dodd-Frank @SenChrisDodd & @BarneyFrank. Tune in! +10/29/2013,Politicians,@BarneyFrank,"RT @CNBCClosingBell: #mustwatch at 3p ET @aetna's @mtbert, fmr SEC Mary Schapiro, @SenChrisDodd, @BarneyFrank, fmr US Treas Secy Paulson, @…" +10/29/2013,Politicians,@BarneyFrank,RT @UChiPolitics: .@BarneyFrank: Bad public policy to fine banks for doing what they were pressured to do. #fiveyearslater +10/28/2013,Politicians,@BarneyFrank,RT @WMESpeakers: @BarneyFrank will be LIVE at the Hyatt Regency Boston @HRBoston @ 4:30 pm! #DontMissIt #WMEspeakers +10/21/2013,Politicians,@BarneyFrank,"RT @allinwithchris: TONIGHT: Who? @BarneyFrank, @MichaelEDyson, @_ericstern, @evanasmith, @salamishah, @rtraister What? http://t.co/K9GhrYx…" +10/21/2013,Politicians,@BarneyFrank,"The Tea Party despises government, but likes what it does. http://t.co/NJlpMlIW9F" +10/17/2013,Politicians,@BarneyFrank,"Lesson to GOP: When deciding to drive through an obstacle course, don't put the vehicle on 'Cruz' control #driversTed" +10/16/2013,Politicians,@BarneyFrank,"RT @PoliticsNation: Boehner admits defeat @6 w/ @SenSanders, @KarenBassTweets, @BarneyFrank, @janschakowsky, @JamalSimmons, @HuntsmanAbby &…" +10/15/2013,Politicians,@BarneyFrank,Nobel Economy prize to Robert Shiller is entirely deserved-a man who combines great intellectual force w/ a strong sense of public morality +10/14/2013,Politicians,@BarneyFrank,"? to Boehner, why does Pres have 2 bribe u 2 let gov pay debts u voted to incur-Iraq war, tax cuts for wea;thy, etc ? http://t.co/I7t0exLZMJ" +10/11/2013,Politicians,@BarneyFrank,"@annakooiman vicious ""Muslim museum"" smear of @BarackObama is despicable, even for Fox. Her off-air, half-assed apology is contemptible." +10/07/2013,Politicians,@BarneyFrank,Brave Patriots needed again-sane Repbulicans w/ courage to dump Tea Party over board. http://t.co/EBJlw4HC9P +10/04/2013,Politicians,@BarneyFrank,Vote Democratic. We're not perfect-but they're NUTS! +10/03/2013,Politicians,@BarneyFrank,"GOP strategy for letting government function: Red Rover, Red Rover can poor children come over?" +07/02/2018,Politicians,@DavidCameron,"One flat of Strawberries: $34 +5.5 Pounds of sugar: $2.50 +Pectin: $4 + +Ended up people about $4 a pint for ten pints… https://t.co/UdIDCzxBR8" +07/02/2018,Politicians,@DavidCameron,I just randomly started thinking about the shoes a friend of mine was wearing at her wedding a few years ago. They… https://t.co/H52Vs1fyTa +07/02/2018,Politicians,@DavidCameron,"JAM TIP: Strawberry jam increases in volume while you cook it. Like, A LOT." +07/02/2018,Politicians,@DavidCameron,@BrocrusherTCGG Maybe a zine. The cell coverage up there isn't very good so a live stream isn't an option. +07/02/2018,Politicians,@DavidCameron,"RT @tahkion: i made a breakthrough. it turns out juggalo makeup defeats facial recognition successfully. if you want to avoid surveillance,…" +07/02/2018,Politicians,@DavidCameron,@BrocrusherTCGG The 14th +07/02/2018,Politicians,@DavidCameron,Bought myself a big new toy that takes six D batteries. https://t.co/I0sBAyG2lL +07/01/2018,Politicians,@DavidCameron,RT @gawanmac: This is a thread about what my friend found in her attic. #LGBThistory https://t.co/BxUH6r9Eck +07/01/2018,Politicians,@DavidCameron,@rebeccawatson except when your grand kids find you dope ass cast iron pans that are in A+ condition. +06/30/2018,Politicians,@DavidCameron,RT @UnburntWitch: https://t.co/rAyB7admXl +06/30/2018,Politicians,@DavidCameron,"Not sure if the sign reading ""Walls didn't work in Jurassic Park Either"" send the message you think it does dude. #KeepFamiliesTogetherMarch" +06/30/2018,Politicians,@DavidCameron,@SamanthaZero Capitalism Royale +06/30/2018,Politicians,@DavidCameron,@SamanthaZero 100 dollar bills parachute out of your wallet and onto Gabes private island. Only weapons are knives. +06/30/2018,Politicians,@DavidCameron,RT @dasharez0ne: FUCK ICE. SHUT ER DOWN https://t.co/IcW0TgHYau +06/30/2018,Politicians,@DavidCameron,@Danielleri Hydrate!!! +06/28/2018,Politicians,@DavidCameron,@radiatoryang Fuji tho +06/28/2018,Politicians,@DavidCameron,"RT @APTNNews: This little dancer made a big impact last week on #NationalIndigenousPeoplesDay in Camrose, Alberta. + +Two-year-old Albert Aps…" +06/28/2018,Politicians,@DavidCameron,"RT @motherboard: Science proves Wario is the best ""Mario Kart"" character https://t.co/OvmYpQpegj https://t.co/H8lIAYpYTM" +06/28/2018,Politicians,@DavidCameron,RT @cabel: exclusive footage of the democratic party remaining civil https://t.co/9IrjH5dpU5 +06/28/2018,Politicians,@DavidCameron,Hey. Know what? Lemonade is still great. 👑🐝 +06/28/2018,Politicians,@DavidCameron,RT @stevenspohn: If you want Nintendo to allow @AbleGamers and our allies to help improve the accessibility of these iconic videogame world… +06/28/2018,Politicians,@DavidCameron,RT @DankDuneMemes: https://t.co/bJ72t0sS7o +06/28/2018,Politicians,@DavidCameron,"@legobutts The quality has gone down hill in recent years. I've got older shirts that are fine, and newer shirts wh… https://t.co/dSiWdGMoL2" +06/27/2018,Politicians,@DavidCameron,RT @mikerugnetta: Maybe theyll seat Merrick Garland out of civility +06/27/2018,Politicians,@DavidCameron,"RT @mcclure111: Let Anthony Kennedy be always remembered as the man who legalized ethnic cleansing, then dashed out the door as quickly as…" +06/27/2018,Politicians,@DavidCameron,RT @austin_walker: Fuckkkkk offfff https://t.co/w1GmNQ2VEc +06/27/2018,Politicians,@DavidCameron,It keeps getting better https://t.co/CUoxuPLzGo +06/27/2018,Politicians,@DavidCameron,RT @tholzerman: Abolish ICE https://t.co/qQkY3UcrHE +06/27/2018,Politicians,@DavidCameron,@aegies There is one of these for Portland as well. Looks like Stargate symbols. +06/27/2018,Politicians,@DavidCameron,"RT @ava: In defiance of Trump, a federal judge in San Diego appointed by Bush Sr. has ruled that all children currently held must be reunit…" +06/27/2018,Politicians,@DavidCameron,@BrocrusherTCGG it is like it was made for you. https://t.co/G29WRd0d7d +06/27/2018,Politicians,@DavidCameron,RT @bendreyfuss: The video of Alexandria Ocasio-Cortez realizing she won is my favorite thing in the whole world https://t.co/CJuc5DnlLA (v… +06/27/2018,Politicians,@DavidCameron,@mudron A high action episode +06/27/2018,Politicians,@DavidCameron,RT @darrylayo: I was polite all day yesterday and baby jails still exist. +06/27/2018,Politicians,@DavidCameron,"RT @jg_environ: I was skeptical until I verified these clippings at @nytimes. In 1934, influential religious figures in US argued that Germ…" +06/27/2018,Politicians,@DavidCameron,RT @chainsawsuit: decorum https://t.co/Klwjsq8j2N https://t.co/VP63Te7kmN +06/26/2018,Politicians,@DavidCameron,@michael_bodden Don't bring me in on this. I've got my own problems. +06/25/2018,Politicians,@DavidCameron,RT @patrickklepek: I couldn't stop nodding my head while reading this very powerful piece. https://t.co/VbNWJs70fW +06/25/2018,Politicians,@DavidCameron,"RT @KivaBay: ""Let republicans eat in peace!"" is always a weird thing to say but especially when they're in the process of dismantling SNAP" +06/24/2018,Politicians,@DavidCameron,"“Kids are so vulgar these days."" + +Great-great-great-Grandparents : https://t.co/HImREDXKHw" +06/24/2018,Politicians,@DavidCameron,"RT @Abolish_ICE_Now: This is Josephine County Jail. It holds immigrants in detention at 1901 Northeast F Street, Grants Pass, OR. Its capac…" +06/24/2018,Politicians,@DavidCameron,"RT @Abolish_ICE_Now: This is Northern Oregon Correctional Facility. It holds immigrants in detention. It is at 211 Webber Road, The Dalles,…" +06/23/2018,Politicians,@DavidCameron,RT @pilky: A pharmacist should only be able to deny you a prescription for medical or legal reasons. If you have ethical problems go find a… +06/23/2018,Politicians,@DavidCameron,RT @patrickklepek: hell yeah https://t.co/ZmSrnmRwrJ +06/22/2018,Politicians,@DavidCameron,RT @Ada_Porg: When you first joined twitter vs now https://t.co/1jXrYtJE8M +06/22/2018,Politicians,@DavidCameron,@JoshOG Did your old one break? +06/20/2018,Politicians,@DavidCameron,@randygdub @saladinahmed Also you don't half to doc Trump voters because they never shut up about it +06/20/2018,Politicians,@DavidCameron,God this is literally in my back yard. https://t.co/NMCyAlxbO0 +06/20/2018,Politicians,@DavidCameron,"RT @Chloe0Thornton: YALL PLEASE HELP I NEVER ASK FOR ANYTHING IMMA ADOPT A KITTEN I JUST NEED 60,000 RETWEETS https://t.co/T2v49R69KH" +06/20/2018,Politicians,@DavidCameron,RT @TheCheekyGinger: https://t.co/HNHSBspJNz +06/20/2018,Politicians,@DavidCameron,@mudron or a goofy butt burger +06/19/2018,Politicians,@DavidCameron,RT @meetissai: TLに流れてきた二足の猫が可愛かったので粘土で再現してみました https://t.co/RitwZfPZ1X +06/19/2018,Politicians,@DavidCameron,RT @redford: i love pictures of cute dogs! like and share if you agree https://t.co/UkLqHgRRna +06/19/2018,Politicians,@DavidCameron,@patrickklepek my mom was obsessed with Dr. Mario on Gameboy. She would start at level 20 and play for hours. +06/19/2018,Politicians,@DavidCameron,@waypoint https://t.co/goA2g27oAz +06/18/2018,Politicians,@DavidCameron,"RT @EricaJoy: Friends who work for @Microsoft, + +FIGHT THIS. Make the biggest noise imaginable about it. + +Don't fall for the ""all companies…" +06/16/2018,Politicians,@DavidCameron,"hmmm + +https://t.co/f2nS4eZDrJ" +06/15/2018,Politicians,@DavidCameron,RT @CBR: REPORT: Jordan Peele Wants to Reboot #Gargoyles as a Movie https://t.co/kdxxW2iakb https://t.co/5s8up8hOiv +06/14/2018,Politicians,@DavidCameron,A kid's movie about bull fighting is super fucked up. +06/14/2018,Politicians,@DavidCameron,RT @RockLeeSmile: 100 Battle Royale developers drop into a court room... +06/13/2018,Politicians,@DavidCameron,@BossFightBooks https://t.co/dAAsCfbC8V +06/13/2018,Politicians,@DavidCameron,@The_Katbot Single player modes +06/13/2018,Politicians,@DavidCameron,RT @inechi__: RT for a chance to win 1 Magic Eyes Hat from Gatosaurio 👀 https://t.co/6MQ4OKL768 👀 They're magic 'cus the eyes glow in the d… +06/13/2018,Politicians,@DavidCameron,"RT @motherboard: Science proves Wario is the best ""Mario Kart"" character https://t.co/OvmYpQpegj https://t.co/ZOO750cc62" +06/12/2018,Politicians,@DavidCameron,RT @daresaypj: Bitch i am S C R E A M I N G https://t.co/GkZhweoQXA +06/11/2018,Politicians,@DavidCameron,@YourBoy_Moe @frytup @DanRyckert @alex_navarro Dishtopia. Now available at Dominos. +06/11/2018,Politicians,@DavidCameron,@frytup @DanRyckert @alex_navarro ...no... +06/11/2018,Politicians,@DavidCameron,RT @austin_walker: Fuck up nazis with your friends. And also do that in video games. +06/11/2018,Politicians,@DavidCameron,This is perfectly dumb. https://t.co/VoReeFMzug +06/10/2018,Politicians,@DavidCameron,@waypoint https://t.co/tTL9dziuo2 +06/10/2018,Politicians,@DavidCameron,RT @Darnn: russian dune cover https://t.co/DwsOu6kEYR +06/10/2018,Politicians,@DavidCameron,We are the demons https://t.co/7Yzgeb9EAM +06/10/2018,Politicians,@DavidCameron,@MrPope Miso proud of you +06/09/2018,Politicians,@DavidCameron,"Made home made butter, then used the left over buttermilk to make waffles. Best. Breakfast. Ever." +06/08/2018,Politicians,@DavidCameron,Fuck https://t.co/BZYp7dkb6P +06/07/2018,Politicians,@DavidCameron,@BrocrusherTCGG Yeah but how much store credit do you really need at a plaid? +06/07/2018,Politicians,@DavidCameron,My hairy fucking leg in a hammock. https://t.co/wuMtEYqAkr +06/06/2018,Politicians,@DavidCameron,"@BrocrusherTCGG ""Siri, search the web for MK-Ultra""" +06/05/2018,Politicians,@DavidCameron,@NerdGerhl Stream World Dig 2 +06/05/2018,Politicians,@DavidCameron,"RT @Ocasio2018: My campaign: + +- Triggered the *1st primary in 14 years* in NY-14 +- Is surging in a grassroots campaign against a powerful a…" +06/05/2018,Politicians,@DavidCameron,"RT @DiscordianKitty: Sir Isaac Newton never showed interest in women, but had a very close, personal relationship with a man, which, when i…" +06/04/2018,Politicians,@DavidCameron,@VerizonSupport I found a smashed up phone on the street. If I take it to a local Verizon store will they be able t… https://t.co/C7GueyKUMJ +06/04/2018,Politicians,@DavidCameron,@xoxogossipgita Do you have a camera in my home? +06/04/2018,Politicians,@DavidCameron,@JustinMcElroy @patrickklepek @VinnyCaravella Whoa check out this FMV game coming to Switch soon. Looks like Her St… https://t.co/W8QHmC8sIV +06/04/2018,Politicians,@DavidCameron,Watching old seasons of TV is kind of crazy because of how long they are. In the era of Netflix and their 10 episod… https://t.co/epQijcDOv4 +06/04/2018,Politicians,@DavidCameron,"In order to be pardoned, you have to be guilty of a crime." +06/04/2018,Politicians,@DavidCameron,"Got a Nintendo Switch over the weekend. The games that I ordered don't show up for another few days, but I download… https://t.co/mwQns5h5Xf" +06/04/2018,Politicians,@DavidCameron,RT @Cacophanus: Japanese ramen adverts are now a bit...intense. https://t.co/yCiKfqmdrG +06/04/2018,Politicians,@DavidCameron,@BrocrusherTCGG Even worse +06/04/2018,Politicians,@DavidCameron,Something crazy about police showing up to an anti police brutality protest in full riot gear. Makes me tired. +06/04/2018,Politicians,@DavidCameron,@typicalspoon Yeah that keeps popping up on mine as well. Considering deleting the post of mine so it goes away. +06/04/2018,Politicians,@DavidCameron,RT @Pdx_resistance: Please Share: @PortlandPolice telling violent alt-right fascists that they have probable cause to arrest them but won't… +06/03/2018,Politicians,@DavidCameron,"RT @TimesHero: People who care more about money for themselves *right now* than human rights, long term environmental and fiscal sustainabi…" +06/03/2018,Politicians,@DavidCameron,RT @Kekeflipnote: 🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐱🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥… +06/03/2018,Politicians,@DavidCameron,My router just died. Guess it is good to keep a spare sitting around. +06/03/2018,Politicians,@DavidCameron,"There is a ton of stuff on the Switch eShop, but I wasn't expecting fetish modeling. https://t.co/6dX8McKoyR" +06/02/2018,Politicians,@DavidCameron,RT @dasharez0ne: https://t.co/cYuHnuG2G2 +06/02/2018,Politicians,@DavidCameron,@Sonicdude2355 @sfc_moogle It didn't have a network connection or the Satellite tuners. +06/01/2018,Politicians,@DavidCameron,@fullbright @mossmouth I am so hype for this +05/31/2018,Politicians,@DavidCameron,RT @Malala: Hello from the other side 😳 @elonmusk https://t.co/pRTnyptZ1N +05/31/2018,Politicians,@DavidCameron,@mcclure111 Maybe they'll give you asylum +05/30/2018,Politicians,@DavidCameron,@plex Missed that. Thanks. +05/30/2018,Politicians,@DavidCameron,"@plex Hey, feature request for the new Podcast feature.Being able to import an OPML list of my subscriptions from m… https://t.co/cw3VAuPw5V" +05/30/2018,Politicians,@DavidCameron,This is 100% my shit. https://t.co/s3lFn6GvzR +05/30/2018,Politicians,@DavidCameron,RT @EliBraden: Roseanne puts the “Ambien” in “I am bein’ racist” +05/30/2018,Politicians,@DavidCameron,"With very little work and a few extra special effects ""The Hitman's Bodyguard"" could be a Nick Fury / Deadpool prequel story." +05/30/2018,Politicians,@DavidCameron,@Dixavd @carolynmichelle I think it took 3-6 months for Bank support to make it into Sun/Moon +05/30/2018,Politicians,@DavidCameron,"@Dixavd @carolynmichelle Pokemon bank is $5 a year, and I'd hope that they would bring it to switch so you can brin… https://t.co/VJKTCd4aIg" +05/30/2018,Politicians,@DavidCameron,RT @NPRinskeep: Hey thanks for listening. My job is not to be “positive” or “negative” but to tell true stories. Granted we may miss a stor… +05/30/2018,Politicians,@DavidCameron,RT @carolynmichelle: ❤️❤️❤️ https://t.co/bmFMYj8ke7 +05/29/2018,Politicians,@DavidCameron,RT @sirosenbaum: btw the reason little girls get obsessed with princesses is bc that is the only role in which girls are protagonists +05/29/2018,Politicians,@DavidCameron,"RT @HoarseWisperer: ABC didn’t fire Roseanne for being a racist. + +She was always a racist. + +ABC fired her because she wouldn’t keep her r…" +05/29/2018,Politicians,@DavidCameron,RT @vriGOpzvmMRE5Dv: 『ドンッ』 https://t.co/N9CUXBfIZn +05/29/2018,Politicians,@DavidCameron,RT @MIDImyers: whoops almost forgot to tweet today about the incredible new album that a select number of cool people (SOON TO INCLUDE YOU?… +05/28/2018,Politicians,@DavidCameron,@UnburntWitch Huh +05/28/2018,Politicians,@DavidCameron,"RT @maltyhops: retweet if you spot your kink: +-bondage +-feet +-role-play +-every single ice agent stripped down and covered in honey next to…" +05/28/2018,Politicians,@DavidCameron,RT @_michface: https://t.co/ScY3tFLaA7 +05/27/2018,Politicians,@DavidCameron,RT @ScottHech: “Prison bus for babies” in ICE detention. Look. At. This. https://t.co/A83DILg28Z +05/27/2018,Politicians,@DavidCameron,RT @gabrielamadej: mood https://t.co/QyTgxVlijE +05/27/2018,Politicians,@DavidCameron,"But then you look at this story out of Nebraska, where 118 pounds of Fentanyl were seized, and it is a wonder you d… https://t.co/rAo7jIs5MC" +05/27/2018,Politicians,@DavidCameron,"Two stories that jumped out at me today. First, shell fish near Seattle test positive for Opioids. Not a surprise c… https://t.co/jWYiH5z0JG" +05/26/2018,Politicians,@DavidCameron,RT @conorsen: There are 4 living men left who have walked on the moon. The youngest is 82. https://t.co/CutflsIBos +05/26/2018,Politicians,@DavidCameron,@HCJustinn are you going to put Bloodborne up on YouTube? +05/26/2018,Politicians,@DavidCameron,@mikeyface Anything in a box +05/25/2018,Politicians,@DavidCameron,Found a phone in the street. Screen totally smashed. Wondering how to find the owner. +05/25/2018,Politicians,@DavidCameron,RT @pcgamer: Three men involved in a swatting that led to the death of a Kansas man are now facing federal charges https://t.co/c0J5xsW7hj… +05/25/2018,Politicians,@DavidCameron,@aegies But I really want a switch noooooooow +05/25/2018,Politicians,@DavidCameron,RT @willkirkby: sorry not sorry https://t.co/4E57gIj4dw +05/25/2018,Politicians,@DavidCameron,"RT @ryanlcooper: tired: abolish ICE +wired: prosecute ICE + +https://t.co/xAM5t4eeXE" +05/24/2018,Politicians,@DavidCameron,"@TeamYouTube @jpm_507 Hey this is a really bad and annoying way of displaying videos. When I sub to a channel, I ex… https://t.co/0oD0e4UiH1" +05/24/2018,Politicians,@DavidCameron,@waltdwilliams An IMAX documentary about Beavers. I was sitting on the far edge of the big dome theater at the Oreg… https://t.co/YAn2oGk11W +05/24/2018,Politicians,@DavidCameron,"RT @uhshanti: GRIMES AND ELON MUSK, NOW THERE'S A UNION WORTH BUSTING HEYOOO UP TOP" +05/24/2018,Politicians,@DavidCameron,@Danielleri It has three of my favorite Dark Souls boss fights in it. +05/24/2018,Politicians,@DavidCameron,"RT @coolranchzaku: honestly it's extremely funny that Grimes was like ""my bf has NEVER UNION BUSTED!!!!!"" and within 36 hours he literally…" +05/24/2018,Politicians,@DavidCameron,This read like an Onion article. https://t.co/kEl50ad9j2 +05/22/2018,Politicians,@DavidCameron,"RT @FarbsMcFarbs: ATTENTION SURVIVOR +Captain Forever, Captain Successor, and Captain Impostor are now on Steam as Captain Forever Trilogy,…" +05/22/2018,Politicians,@DavidCameron,@RyanPagella @MIDImyers A+ dog +05/22/2018,Politicians,@DavidCameron,@robertashley That is the most white dude depiction of a crack pipe I've ever seen. +05/22/2018,Politicians,@DavidCameron,"@mudron With the current guy in charge of Xbox, I wouldn't rule it out. + +Plus the only Rare game I think I would n… https://t.co/yIJyIuWa29" +05/22/2018,Politicians,@DavidCameron,@FarbsMcFarbs Wishful thinking. The did do a pretty good pointer for World of Goo for docked mode though. https://t.co/VgfjRJLyig +05/22/2018,Politicians,@DavidCameron,@FarbsMcFarbs Can I be really annoying for a second? Do you think CF:Trilogy could work on Switch? Touch screen for building ships and such. +05/22/2018,Politicians,@DavidCameron,RT @MichaelSkolnik: RT if you support an assault weapons ban. +05/22/2018,Politicians,@DavidCameron,"@BrocrusherTCGG Same, but watching the video." +05/22/2018,Politicians,@DavidCameron,RT @helenasbby: life imitates art https://t.co/FLyQmG6J2Q +05/21/2018,Politicians,@DavidCameron,RT @willsmith: Ok. https://t.co/mZ1812RaYx +05/21/2018,Politicians,@DavidCameron,Me honestly https://t.co/PFvBwHpRuV +05/21/2018,Politicians,@DavidCameron,"Yo I just installed Firefox for the first time in a long time, and it rocks. Makes Chrome look real bad." +05/21/2018,Politicians,@DavidCameron,@markmacd @DcalebX @johntv Id tech has always been super portable though. RE7 Might not be as well designed. +05/19/2018,Politicians,@DavidCameron,RT @JordanUhl: ¯\_(ツ)_/¯ https://t.co/aQvL95Ni2R +05/19/2018,Politicians,@DavidCameron,"Question @Microsoft , why did I schedule this to happen overnight if this is what I get logging in this morning https://t.co/wbSWXxvBSy" +05/18/2018,Politicians,@DavidCameron,"RT @robtrench: The John Wick Twitter account is just the old I, Frankenstein Twitter account repurposed. Surprised Lionsgate hasn't deleted…" +05/18/2018,Politicians,@DavidCameron,@MaxTemkin It is a known fact that Monsters Incorporated has the highest shooting rate in all the monster world. https://t.co/fZoRjGzeKR +05/18/2018,Politicians,@DavidCameron,@willsmith They make them that have a big round ball instead of deadly tip. Bought some last summer +05/18/2018,Politicians,@DavidCameron,This feels like the fundamental difference between the older and younger generations. https://t.co/KQ74PwS8qh +05/17/2018,Politicians,@DavidCameron,@typicalspoon Also at Kent State +05/17/2018,Politicians,@DavidCameron,@kobunheat I think that is just one is the interface options that the industry already used. Like the rock band pedal. +05/17/2018,Politicians,@DavidCameron,@BriannaShrum Short Circuit 2 +05/17/2018,Politicians,@DavidCameron,@ShaneWatch I don't think he knows how Watergate wrapped up. +05/17/2018,Politicians,@DavidCameron,@patrickklepek Give me a whole waypoint radio episode about this. Such a great thing. I hope that the industry can… https://t.co/xbZtrr7Vvq +05/17/2018,Politicians,@DavidCameron,This is really cool. Bravo. https://t.co/NM0MkmMUKG +05/17/2018,Politicians,@DavidCameron,@Danielleri I know several women who went and got a Norplant right after the election because they assumed BC wasn'… https://t.co/l9LyV8NUOa +05/17/2018,Politicians,@DavidCameron,I would love to find a copy of this guide book. This is 100% my shit. https://t.co/8vIVY0VvpB +05/17/2018,Politicians,@DavidCameron,This is super cool https://t.co/r5UWIhrMo2 +05/17/2018,Politicians,@DavidCameron,"RT @lunalindsey: CW: Eugenics + +WE TOLD YOU ALL THEY'RE NAZIS. YES, EXACTLY THOSE KIND OF NAZIS. + +I'm so angry. https://t.co/cO6loRiaJ3" +05/16/2018,Politicians,@DavidCameron,We have a monster in charge. Monsters voted for it. Monsters are following its orders. +05/16/2018,Politicians,@DavidCameron,RT @tetrafox_: https://t.co/BaCqC2pNs0 +05/15/2018,Politicians,@DavidCameron,@JurassicWorld https://t.co/knAY1Np3Yw +05/15/2018,Politicians,@DavidCameron,RT @AmidaCareNY: Virginia resident Sydney Walther who received her gender-affirmation surgery at @NYULangone is one of many whose quality o… +05/15/2018,Politicians,@DavidCameron,@DarkSoulsGame Gravelord Nito +05/15/2018,Politicians,@DavidCameron,"RT @McJesse: I took every shot from behind-the-scenes featurettes where Dr. Strange is in front of a greenscreen, and edited him into a wat…" +05/15/2018,Politicians,@DavidCameron,RT @LimitedRunDoug: So this happened tonight in Akihabara! https://t.co/crHzSTQnM3 +05/13/2018,Politicians,@DavidCameron,"RT @TGAW: Today's #WeTheRosies piece is stuffed with names of creative women who inspire me and my family. Packed so, so, so very full, yo…" +05/13/2018,Politicians,@DavidCameron,@kobunheat At first I thought this was a photo from the Atari landfill site +05/13/2018,Politicians,@DavidCameron,@danikaharrod I that a second life avatar? +05/12/2018,Politicians,@DavidCameron,@BrocrusherTCGG Don't put salt in the wound. +05/11/2018,Politicians,@DavidCameron,RT @SeriousTyberius: https://t.co/CrhWU3Ugh2 +05/11/2018,Politicians,@DavidCameron,This dude was chilling with me while I ate lunch. https://t.co/ZzEmPWsNII +05/11/2018,Politicians,@DavidCameron,@robertashley @nsuttner Are they muffins? +05/11/2018,Politicians,@DavidCameron,@bonebonebot My daughter loves this cat. +05/11/2018,Politicians,@DavidCameron,@cabel This has been annoying me all day. +05/11/2018,Politicians,@DavidCameron,"RT @RobertONeill31: Well. I mean. + +*gestures broadly at everything* https://t.co/dBNo54VjXH" +05/10/2018,Politicians,@DavidCameron,RT @Shaken_Martinez: PSA https://t.co/Qvk2QYx3lS +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG @typicalspoon @Ploxerer Maybe the goal is to fuck some sense into him. +05/10/2018,Politicians,@DavidCameron,RT @wyntonred: no regrets https://t.co/8KcIkROzUW +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG get your ass to trader joes and grab a bottle of margarita wine. +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG yuck i don't like this one. +05/09/2018,Politicians,@DavidCameron,@waypoint @patrickklepek https://t.co/toI5ESU33c +05/09/2018,Politicians,@DavidCameron,"If you use the word ""preternaturally"" in idle conversation we will probably get along just fine." +05/09/2018,Politicians,@DavidCameron,@HazelMonforton But the that's correct +05/09/2018,Politicians,@DavidCameron,RT @NalediMashishi: 1) the Vatican approved & personally donated 50+ items to the collection. Cultural appropriation requires lack of conse… +05/09/2018,Politicians,@DavidCameron,RT @Zin5ki: https://t.co/CrpRxDCOi7 +05/08/2018,Politicians,@DavidCameron,RT @SOEDESCO: It's #GIVEAWAY time! This time you can #WIN a #NintendoSwitch console + a physical copy of #Owlboy! All you have to do is #fo… +05/08/2018,Politicians,@DavidCameron,RT @papsby: https://t.co/3NR1brt1i7 +05/08/2018,Politicians,@DavidCameron,RT @JeremyPoxon: https://t.co/kPWZMvciVN +05/07/2018,Politicians,@DavidCameron,@xpatriciah same +05/06/2018,Politicians,@DavidCameron,@BrocrusherTCGG The nerve of some white boys. +05/05/2018,Politicians,@DavidCameron,@NPR But we already know that it is @tedcruz +05/05/2018,Politicians,@DavidCameron,@katewelchhhh @Iscaneus Wow +05/05/2018,Politicians,@DavidCameron,@BrocrusherTCGG same +05/05/2018,Politicians,@DavidCameron,"RT @dialacina: Here's a free example of how you can make this about his being a sexist asshole: + +""It's probably good DJ Khaled doesn't eat…" +07/02/2018,Politicians,@VP,"Last week, @SecondLady and I visited with the @StateDept personnel and their families stationed in Ecuador at… https://t.co/CyOc59OYB9" +07/02/2018,Politicians,@VP,Our economy is booming 6 months after @POTUS Trump signed the LARGEST tax cuts and reforms into law. The unemployme… https://t.co/RxlWLH4qwM +07/01/2018,Politicians,@VP,"Last week, @SecondLady and I visited Guatemala and met with families displaced by the Volcán de Fuego eruption. The… https://t.co/vnhfRt1ho8" +06/30/2018,Politicians,@VP,Honored to meet with President @Lenin Moreno of Ecuador this week. The United States will work with Ecuador in new… https://t.co/zGHcDUiwt9 +06/30/2018,Politicians,@VP,"RT @WhiteHouse: Today marks one year since President Trump relaunched the National Space Council and named @VP Pence its chair, kicking off…" +06/29/2018,Politicians,@VP,RT @WhiteHouse: American workers and families have seen some of the biggest benefits from President Trump’s tax cuts. https://t.co/pkBAlYba… +06/29/2018,Politicians,@VP,Thank you @PressClubDC for bringing attention to the case of photojournalist Shawkan. He & other non-violent activi… https://t.co/GFp8pBH6eT +06/29/2018,Politicians,@VP,An important trip to South and Central America. Productive discussions on isolating Venezuela’s brutal dictatorship… https://t.co/cBPuZgKRcm +06/29/2018,Politicians,@VP,"RT @SecondLady: We’re back in the great USA! 🇺🇸 Thank you to Brazil, Ecuador, and Guatemala for the wonderful hospitality this week! https:…" +06/29/2018,Politicians,@VP,Pleased the Senate confirmed GEN Austin “Scott” Miller to be our new military commander in Afghanistan last night.… https://t.co/6UyuEC1acE +06/29/2018,Politicians,@VP,"Well said, Mr. @POTUS. No journalist should ever feel afraid to go into their newsroom and do the important reporti… https://t.co/W8PiSy4hG7" +06/29/2018,Politicians,@VP,GREAT DAY at the @WhiteHouse celebrating the 6 month anniversary of signing the LARGEST tax cuts and reforms in Ame… https://t.co/3QtYc2EgfB +06/29/2018,Politicians,@VP,"RT @WhiteHouse: “That's why our economy is booming, that’s why our families are thriving, that’s why our businesses are growing. And that i…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: ""The economy is indeed doing well. Six months ago, we unleashed an economic miracle by signing the biggest tax cuts and ref…" +06/29/2018,Politicians,@VP,"RT @realDonaldTrump: Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement account c…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: .@realDonaldTrump: ""There's never been a better time to hire in America, to invest in America, and to start living the Amer…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: President Trump’s tax cuts have made it possible for American small business owners like Mike Zaffaroni to invest, hire, an…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: President Trump's Tax Cuts and Jobs Act eliminated dozens of special interest tax breaks and loopholes, raising $4 trillion…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: .@realDonaldTrump: ""At the center of America's economic resurgence are the massive tax cuts that I signed into law six mont…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: The stream of good news for American workers is something everyone—Republican, Democrat, or otherwise—should celebrate. htt…" +06/29/2018,Politicians,@VP,.@SecondLady and I thanked our service members stationed in Central America last night as we departed Guatemala. Ou… https://t.co/9z3sCyP5B7 +06/29/2018,Politicians,@VP,RT @VPComDir: .@VP Pence had a blunt message for three Central American governments: You must do more to stop migrants who enter the United… +06/29/2018,Politicians,@VP,"Last night, Karen and I met with families displaced by the Volcán de Fuego eruption in Guatemala. The U.S. will con… https://t.co/IzT6bnQnee" +06/29/2018,Politicians,@VP,RT @SecondLady: Thank you to the First Lady of Guatemala for traveling with us to the shelter in Escuintla. On our way there we saw the Fue… +06/29/2018,Politicians,@VP,"Discussed specific new steps that Guatemala, Honduras, and El Salvador can take. And told the leaders of El Salvado… https://t.co/v4kQgNJJdf" +06/29/2018,Politicians,@VP,"To the people of Guatemala, Honduras, and El Salvador: You are our neighbors. We want you and your nations to prosp… https://t.co/fjYqiBrAxZ" +06/29/2018,Politicians,@VP,"I have a message for the people of Guatemala, Honduras, and El Salvador… You are our neighbors. We want you and you… https://t.co/jWKZArHksF" +06/29/2018,Politicians,@VP,Tell your people that coming to the U.S. illegally will only result in a hard journey and a harder life…Take down p… https://t.co/0wSJ3evUHa +06/29/2018,Politicians,@VP,As I told their presidents: This exodus must end. It’s a threat to our security. Just as we respect your borders an… https://t.co/MgOm4fDoJt +06/29/2018,Politicians,@VP,"The numbers are staggering. Since the start of this year, more than 150,000 Guatemalans, Hondurans, and Salvadorans… https://t.co/vyJr3sdA1r" +06/29/2018,Politicians,@VP,"Thank you @jimmymoralesgt of Guatemala for hosting important multilateral talks with @JuanOrlandoH of Honduras, and… https://t.co/TL8CRx0taM" +06/28/2018,Politicians,@VP,RT @SecondLady: Traveled to Escuintla to meet with families displaced by the June 3rd Fuego Volcano eruption in Guatemala. Visited a shelte… +06/28/2018,Politicians,@VP,Just arrived in Guatemala City with @SecNielsen for a critical meeting with Latin American leaders on how to addres… https://t.co/ht3CezFmVq +06/28/2018,Politicians,@VP,Just arrived in Guatemala. We are monitoring the horrific shooting at the Capital Gazette in Annapolis. Karen & I a… https://t.co/nj9Beax1c2 +06/28/2018,Politicians,@VP,"Venezuela was once a beacon of prosperity and freedom. But under Nicolás Maduro, Venezuela’s great democracy has be… https://t.co/l51UvG7ZQH" +06/28/2018,Politicians,@VP,"Freedom is the foundation of the friendship between the United States and Ecuador, and so has it been for nearly 20… https://t.co/RPTaotamnZ" +06/28/2018,Politicians,@VP,"RT @SecondLady: Helped to reconnect a @SisterCitiesInt relationship between Quito and Coral Gables, FL through a gift exchange between the…" +06/28/2018,Politicians,@VP,RT @SecondLady: Enjoyed a lovely visit with First Lady Rocío González de Moreno at the Presidential Palace where she showed us a beautiful… +06/28/2018,Politicians,@VP,"Thank you, President @Lenin Moreno for hosting us today. Ours was destined to be a Hemisphere of Freedom. History w… https://t.co/a8qFAYnagf" +06/28/2018,Politicians,@VP,RT @VP: Honored to be in Ecuador. Thank you to our gracious hosts President @Lenin Moreno & First Lady Rocío González de Moreno. Freedom ha… +06/28/2018,Politicians,@VP,Honored to be in Ecuador. Thank you to our gracious hosts President @Lenin Moreno & First Lady Rocío González de Mo… https://t.co/kHh1SITXOQ +06/28/2018,Politicians,@VP,Toured the great ports along the Amazon River this afternoon. The U.S. and Brazil have great opportunity to grow ou… https://t.co/60MPIhD53z +06/28/2018,Politicians,@VP,Great visit to Brazil. Thank you to President @MichelTemer for your hospitality in Brasília. We are all working tog… https://t.co/ztlFGX0d9K +06/28/2018,Politicians,@VP,Today I heard the harrowing stories of families who fled government oppression and near starvation under the Maduro… https://t.co/jmfR29xMZx +06/27/2018,Politicians,@VP,"Powerful visit with families who fled the Maduro regime at the Santa Catarina Shelter in Manaus, Brazil today. Thes… https://t.co/0EeOXoXCxx" +06/27/2018,Politicians,@VP,Thank you to Justice Anthony Kennedy for your long career of service on the SCOTUS. @POTUS Trump will nominate a st… https://t.co/wY3S1VeWpY +06/27/2018,Politicians,@VP,"The Bible tells us “where the spirit of the Lord is, there is freedom.” I truly do know and believe, knowing the he… https://t.co/5PqbSPI53S" +06/27/2018,Politicians,@VP,Freedom and democracy will prevail in Venezuela. Libertad will be restored. https://t.co/lDa5HR9TGm +06/27/2018,Politicians,@VP,"Yesterday, we announced an additional $10 million that will go to supporting Venezuelan families including more tha… https://t.co/BbnyJi5orw" +06/27/2018,Politicians,@VP,"Karen & I met with families who fled Venezuela not to seek a better life; they came to Brazil to live, to survive.… https://t.co/8vsxQXkoOe" +06/27/2018,Politicians,@VP,.@POTUS and I encourage the US House to get behind STRONG borders & security by passing the Border Security and Imm… https://t.co/UGx52Xam3d +06/27/2018,Politicians,@VP,RT @SecondLady: ICYMI: Second Lady Karen Pence helps to renew Sister City relationship during visit in Brasilia. ⁦@SisterCitiesInt⁩ https:… +06/27/2018,Politicians,@VP,Thank you President @MichelTemer for the warm hospitality in Brasília. Headed to Manaus to the Santa Catarina shelt… https://t.co/iTsKPn42IP +06/27/2018,Politicians,@VP,RT @SecondLady: Enjoyed a lovely visit to the #DomBosco Santuary--one of Brasilia's most famous churches. The beauty is breathtaking! https… +06/26/2018,Politicians,@VP,Privileged to visit with @USCitsBrazil Embassy personnel and their families stationed in Brasília this evening. THA… https://t.co/dPGwuoLRhB +06/26/2018,Politicians,@VP,"RT @SecondLady: As Honorary Vice Chair of @SisterCitiesInt, it was a pleasure to highlight the Sister Cities relationship between Washingto…" +06/26/2018,Politicians,@VP,To the people of Central America: You are our neighbors. We want you & your nations to prosper. Don’t risk your liv… https://t.co/ODCOxxJdY1 +06/26/2018,Politicians,@VP,"To all the nations of the region, let me say with great respect, that just as the United States respects your borde… https://t.co/jIfnncqkl0" +06/26/2018,Politicians,@VP,"The United States will continue to stand with the good people of Venezuela, and we will continue to stand with Braz… https://t.co/e9epRKr8ve" +06/26/2018,Politicians,@VP,"Today, I’m pleased to announce that the United States will provide additional support of nearly $10 million to Vene… https://t.co/sisLYnzpN5" +06/26/2018,Politicians,@VP,The United States and Brazil are bound together by our past and our principles. The United States was the first nat… https://t.co/El8dqeB7UQ +06/26/2018,Politicians,@VP,Productive working lunch with Brazilian delegation & US diplomats. Thanks President @MichelTemer & Foreign Minister… https://t.co/1QgE9yXLVe +06/26/2018,Politicians,@VP,Bilateral meeting today with President @MichelTemer of Brazil. We discussed the great friendship between our countr… https://t.co/FkmHWDat7t +06/26/2018,Politicians,@VP,Just touched down in Brasília. Look forward to meeting with President @MichelTemer & the Brazilian delegation to re… https://t.co/XsKw33Mxoh +06/26/2018,Politicians,@VP,Taking off to Brazil — on my 3rd trip to Latin America as Vice President. Look forward to working w/ allies to put… https://t.co/EYsDyKS8zk +06/26/2018,Politicians,@VP,"RT @WhiteHouse: Today, @realDonaldTrump and @FLOTUS welcomed @KingAbdullahII and @QueenRania of the Hashemite Kingdom of Jordan to the Whit…" +06/26/2018,Politicians,@VP,Great to see my friend @KingAbdullahII of Jordan in Washington D.C. today. Productive meeting this afternoon at the… https://t.co/Nur9Gu5rOO +06/25/2018,Politicians,@VP,"Spoke with Prime Minister @HaiderAlAbadi of Iraq this morning. Discussed our joint efforts to defeat ISIS, recent I… https://t.co/PAMs9jundp" +06/25/2018,Politicians,@VP,"RT @WhiteHouse: The results of President Trump's tax cuts can be seen in our Nation’s business environment, as American companies start inv…" +06/24/2018,Politicians,@VP,RT @realDonaldTrump: AMERICA IS OPEN FOR BUSINESS! https://t.co/ZjdlHwJlxm +06/24/2018,Politicians,@VP,"RT @WhiteHouse: ""…lower taxes and fewer regulations get results. Thank you very much for leading on those reforms."" https://t.co/l4z5wsIEf9" +06/24/2018,Politicians,@VP,"RT @WhiteHouse: ""Your Tax Cuts enabled our owner... to give back $1 million collectively to all of his employees, myself included. You have…" +06/23/2018,Politicians,@VP,"Happy 70th Birthday to an inspiring American and a great Supreme Court Justice, Clarence Thomas! Honored to welcome… https://t.co/meYb7jEpiw" +06/23/2018,Politicians,@VP,"Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the… https://t.co/KQDUnpNVt5" +06/22/2018,Politicians,@VP,"Amid the national conversation on immigration, we must never forget the heartbreaking loss that Angel Families have… https://t.co/UlmeLYyAN1" +06/22/2018,Politicians,@VP,"RT @WhiteHouse: ""For years their pain was met with silence, their plight with indifference, but no more..."" https://t.co/LWxcMJJk5j" +06/22/2018,Politicians,@VP,"RT @WhiteHouse: Six months ago today, President Trump signed the Tax Cuts & Jobs Act. Now, the economy is booming, small businesses are thr…" +06/22/2018,Politicians,@VP,RT @FLOTUS: Visiting w children at the shelter in #Texas yesterday was very touching. Despite the difficult circumstances children were in… +06/22/2018,Politicians,@VP,"Spoke with President-Elect @IvanDuque of Colombia today, stressing the need to move decisively to cut drug producti… https://t.co/F2sdKaOU6p" +06/22/2018,Politicians,@VP,"6 months after @POTUS signed the largest tax cuts and reforms into law: +✅ America’s economy is making a comeback. +✅… https://t.co/VQyUd75Scq" +06/22/2018,Politicians,@VP,Proud of our @FLOTUS. https://t.co/TDkFOK9wZ4 +06/21/2018,Politicians,@VP,"Charles Krauthammer will long be remembered for his eloquence, his triumph in hardship, and his countless contribut… https://t.co/CgW8REQ8cT" +06/21/2018,Politicians,@VP,RT @realDonaldTrump: Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/21/2018,Politicians,@VP,Working lunch today with @POTUS and many great governors who are working with the Trump Administration to bring job… https://t.co/G5ohtknPvj +06/21/2018,Politicians,@VP,Proud of this @Cabinet – dedicated patriots – working tirelessly under @POTUS Trump’s leadership to advance our age… https://t.co/Kf0YCiVdRp +06/21/2018,Politicians,@VP,RT @WhiteHouse: Lawmakers must still pass legislation to secure our border and finally and fully allow family and minor detention and promp… +06/21/2018,Politicians,@VP,Honored to welcome Carl Anderson from @KofC to the @WhiteHouse. The Knights of Columbus play a vital role in advoca… https://t.co/wE5f1meXXg +06/20/2018,Politicians,@VP,"Now we are calling on Congress to #ChangeTheLaws, secure our border, close loopholes, and take the action necessary… https://t.co/q5nUR3UyxO" +06/20/2018,Politicians,@VP,We don’t have to choose between being a country of law & order with a secure border and being a country that demons… https://t.co/FrTGUNgbMZ +06/20/2018,Politicians,@VP,"By taking this action, @POTUS will make it possible for us to enforce the law against individuals who come into our… https://t.co/iaMaPOtowL" +06/20/2018,Politicians,@VP,"An honor to host President @JuanOrlandoH of Honduras today to reinforce the strong partnership between our nations,… https://t.co/lZaICeLl8o" +06/20/2018,Politicians,@VP,RT @WhiteHouse: Here is the text of the executive order President Trump just signed: https://t.co/sM9e5aWWZR +06/20/2018,Politicians,@VP,"Great to catch up with my friend @GovHolcomb at the @WhiteHouse this morning. Nearly 50,000 jobs created in the gre… https://t.co/dwawmX53tQ" +06/20/2018,Politicians,@VP,"RT @syracusedotcom: .@VP Mike Pence tours Nucor mill, tells Auburn NY workers 'steel is back!' (video) https://t.co/pY3RlQuyGJ" +06/20/2018,Politicians,@VP,GREAT to be in Philadelphia today - and honored to shake hands with PA law enforcement officers who tirelessly work… https://t.co/cNMYtbK0HT +06/19/2018,Politicians,@VP,RT @SecondLady: Enjoyed meeting with military spouses serving with the New York National Guard. Thank you for sharing your stories! 🇺🇸 http… +06/19/2018,Politicians,@VP,RT @SecondLady: Great visit at @UpstateGolisano! Enjoyed learning about the art therapy program and meeting DJ! https://t.co/bVpyysPf7M +06/19/2018,Politicians,@VP,Today the U.S. took a stand against some of the world’s worst human rights violators by withdrawing from the United… https://t.co/a6xubBA0KQ +06/19/2018,Politicians,@VP,"This is sad. Schumer would rather play politics than solve problems and secure our border. Chuck, THAT makes no sen… https://t.co/a4ejARvbtZ" +06/19/2018,Politicians,@VP,Love having @SecondLady on the road with me. https://t.co/TnYQWHGd8y +06/19/2018,Politicians,@VP,"Thank you Nucor Steel! Because of @POTUS Trump’s tax cuts, Nucor is investing in new technology and plans to create… https://t.co/xjEoL7zB38" +06/19/2018,Politicians,@VP,"Since our election, businesses large and small have created more than 3.4 million new jobs – including over 174,400… https://t.co/64Z1R3Zykc" +06/19/2018,Politicians,@VP,I want to thank Nucor Steel and the example this company is setting… Steel is back and Nucor is proving it every da… https://t.co/1AI61sbxhn +06/19/2018,Politicians,@VP,I want to thank @RepJohnKatko for supporting policies that are making a real difference for Central New York’s work… https://t.co/mdyOrRaMo6 +06/19/2018,Politicians,@VP,"For almost half a century, Nucor Steel has been a key part of why steel in America is the best steel in the world.… https://t.co/7hi1N5LvCG" +06/19/2018,Politicians,@VP,Great to be back in the Empire State and welcomed by the men & women of the 174th Attack Wing of the New York Air N… https://t.co/TWtmVGBDTY +06/19/2018,Politicians,@VP,On my way to Syracuse today to meet with great manufacturers who are THRIVING in the Trump economy. @POTUS Trump’s… https://t.co/EBdTZ6m6dN +06/19/2018,Politicians,@VP,Heading to Syracuse today to talk about how @POTUS’ economic agenda is expanding opportunity & putting more money i… https://t.co/ZtLEJvkeij +06/18/2018,Politicians,@VP,"RT @WhiteHouse: Today, President Trump delivered remarks as the Space Council gathered to discuss American leadership in space exploration…" +06/18/2018,Politicians,@VP,"Great Nat'l Space Council meeting. @POTUS signed Space Policy Directive–3, directing US gov’t & industry to impleme… https://t.co/YLrY8iHGZe" +06/18/2018,Politicians,@VP,"As @POTUS Trump said at the beginning of today’s National Space Council meeting, “Now we are ready to begin the nex… https://t.co/VmUTn24MPp" +06/18/2018,Politicians,@VP,Honored to be at the @WhiteHouse for the third meeting of the National Space Council with the Users’ Advisory Group… https://t.co/Gg9QdriaZV +06/18/2018,Politicians,@VP,WATCH LIVE: The National Space Council meets today and will be joined by @POTUS Trump. This President took a critic… https://t.co/tCkcP7BoLx +06/18/2018,Politicians,@VP,"RT @WhiteHouse: President Trump participates in a meeting of the National Space Council. + +Watch live ➡️ https://t.co/EmsdctGWtd https://t.…" +06/17/2018,Politicians,@VP,Happy Father's Day to all the great Dads across America! +06/16/2018,Politicians,@VP,"RT @WhiteHouse: “Americans must demand their lawmakers support the legislation we need to defeat MS-13 once and for all, and to ensure ever…" +06/16/2018,Politicians,@VP,THANK YOU to the great police in Ohio and Michigan! Our police are the best of the best. https://t.co/ef28d1bXZX +06/16/2018,Politicians,@VP,Great day meeting with the good people of Ohio and talking about our historic tax cuts. We cut taxes for businesses… https://t.co/Hyc6XcMBUP +06/15/2018,Politicians,@VP,"Great to be with the hardworking people at a growing company, @Frank_Rewold & Sons in Michigan. Thanks to @POTUS Tr… https://t.co/l9fAQ1wEQL" +06/15/2018,Politicians,@VP,.@SenSherrodBrown actually voted no on our historic tax cuts because he called them a “scam” – but the truth is our… https://t.co/QSiqZs9YPZ +06/15/2018,Politicians,@VP,"Since @POTUS Trump signed these tax cuts into law, companies across Ohio have announced bigger raises, better benef… https://t.co/hjMqvdZFFn" +06/15/2018,Politicians,@VP,"Under @POTUS Trump’s leadership, manufacturers large and small have added more than 330,000 new jobs – including mo… https://t.co/FjXqUD6NvQ" +06/15/2018,Politicians,@VP,"Since Ohio voted to elect our President, businesses have created more than 3.4 million jobs – including nearly 100,… https://t.co/Fz0p82xvRN" +06/15/2018,Politicians,@VP,"And this is just the beginning, because our tax cuts will keep spurring more growth and higher wages – and in the y… https://t.co/1QNln5QdAo" +06/15/2018,Politicians,@VP,"Since Ohio voted to elect our @POTUS, businesses have created more than 3.4 million jobs across this country – incl… https://t.co/0QTrTdpQdJ" +06/15/2018,Politicians,@VP,".@POTUS promised to cut taxes across the board for working families, job creators, and family farms – and with the… https://t.co/uV7rR5jrgf" +06/15/2018,Politicians,@VP,".@POTUS Trump promised to rebuild our military, restore the arsenal of democracy, and once again give our Soldiers,… https://t.co/FAlQGNFfvc" +06/15/2018,Politicians,@VP,It is great to be back in the Buckeye State – with the men and women who elected a Congress and a @POTUS who enacte… https://t.co/SisMIgA52C +06/15/2018,Politicians,@VP,".@POTUS Trump’s tax cuts are putting Ohio first. In just the past six months, more than 95,200 Ohio workers have be… https://t.co/eeHDryDmz9" +06/15/2018,Politicians,@VP,"Unemployment hasn’t been lower in nearly 50 years, and we’ve reached the lowest unemployment rate for African-Ameri… https://t.co/MXuR4PWUSQ" +06/15/2018,Politicians,@VP,"Since election day, businesses have created more than 3.4 million new jobs – including nearly 80,000 in Michigan –… https://t.co/cKdwhOVg73" +06/15/2018,Politicians,@VP,"Visited @frank_rewold & Sons in Rochester, MI. This great American company was founded 100 years ago this year, and… https://t.co/RPixgFr6Js" +06/15/2018,Politicians,@VP,Great to be back in the Wolverine State! @POTUS Trump’s tax cuts are bringing jobs back to Michigan. https://t.co/8GNPPWHVYd +06/15/2018,Politicians,@VP,"RT @SecondLady: #FlashbackFriday to last night when we hosted military families at the Vice President's Residence! Our dog, Harley made a b…" +06/15/2018,Politicians,@VP,Heading to Michigan and Ohio today. @POTUS tax cuts are bringing jobs and investment back to the Midwest! https://t.co/I1Ry5JopyM +06/15/2018,Politicians,@VP,RT @SecondLady: We truly enjoyed spending our evening at the @VP Residence with children and spouses of military service members currently… +06/15/2018,Politicians,@VP,.@SecondLady & I welcomed military families back to the Vice President’s Residence tonight for our annual pool part… https://t.co/hMwELmr7qw +06/14/2018,Politicians,@VP,"“In fact, the Democrats have abandoned DACA. And by their obstruction they’ve abandoned the opportunity to enact co… https://t.co/c8YH9FcUwg" +06/14/2018,Politicians,@VP,"Today at #NHPB18: “Despite what you may have heard, the Democrats just don’t want to make a deal. They don’t want t… https://t.co/5wKg3AyLe6" +06/14/2018,Politicians,@VP,.@POTUS Trump – in his first meeting with the leader of North Korea – got Kim Jong-Un to commit to the full denucle… https://t.co/wi9Ufvq9bO +06/14/2018,Politicians,@VP,"Must read @USAIDMarkGreen op-ed in the @WSJ: “At the direction of @POTUS & @VP, @USAID is now redoubling its effort… https://t.co/dzF0ELIGd7" +06/14/2018,Politicians,@VP,A beautiful night for the #CongressionalBaseballGame – a bipartisan event for a worthy cause. GREAT to see my frien… https://t.co/dQJJr8flq9 +06/14/2018,Politicians,@VP,"Happy Birthday, @USArmy! Celebrating 243 years that the Army has kept America safe. 🇺🇸 https://t.co/q5a1zpKaD3" +06/14/2018,Politicians,@VP,"“I pledge allegiance to the Flag of the United States of America, and to the Republic for which it stands, one Nati… https://t.co/89rocFwjXB" +06/14/2018,Politicians,@VP,"Happy Birthday, Mr. @POTUS! https://t.co/e84RUSdMQF" +06/14/2018,Politicians,@VP,And I couldn’t be more proud to serve with a President who stands without apology for the sanctity of human life –… https://t.co/N2uluRRxcl +06/14/2018,Politicians,@VP,"The true strength of this country doesn’t come just from our economy, it can’t only be measured only by our materia… https://t.co/0HjIj1ImfI" +06/14/2018,Politicians,@VP,"And unemployment hasn’t been lower in nearly 50 years – and under this President, we’ve actually seen the lowest Hi… https://t.co/73WiyVSWKJ" +06/14/2018,Politicians,@VP,Small business optimism is at a record high – and nearly nine out of ten Hispanic business owners see greater opportunity the years ahead… +06/14/2018,Politicians,@VP,Honored to address the 2018 National Hispanic Prayer Breakfast this morning. Listen live: https://t.co/M0B74B4pFY +06/14/2018,Politicians,@VP,Glad to hear NASA expects the Opportunity Rover “Oppy” to weather one of the worst dust storms recorded on Mars. Gr… https://t.co/2QSa3K8x7F +06/13/2018,Politicians,@VP,RT @SecondLady: Heard some amazing stories about #arttherapy helping pediatric patients who participate in @tracyskidsdc art therapy progra… +06/13/2018,Politicians,@VP,THANK YOU to the great law enforcement in Dallas for everything you do to keep your community safe every day. https://t.co/8qf2BccSXc +06/13/2018,Politicians,@VP,No podium that @POTUS or I stand behind will be of greater consequence than the pulpits you stand behind every Sund… https://t.co/B5y9bDqjUA +06/13/2018,Politicians,@VP,".@POTUS Trump secured a commitment from North Korea to recover and repatriate the remains of more than 5,000 Americ… https://t.co/0cldXEygZI" +06/13/2018,Politicians,@VP,Our hearts were broken last year when we learned of the horrific attack on First Baptist Church in Sutherland Sprin… https://t.co/duvbARPgdO +06/13/2018,Politicians,@VP,.@POTUS Trump is the most pro-life President in American history! And it was my honor as Vice President to cast the… https://t.co/XsEbXtcYkC +06/13/2018,Politicians,@VP,.@POTUS kept his word to the American people and to our most cherished ally when we opened the United States Embass… https://t.co/hlEm2HvoRK +06/13/2018,Politicians,@VP,"As the late and great Reverend Billy Graham said, let’s remember “To get nations back on their feet, we must first… https://t.co/4jhwomLq9l" +06/13/2018,Politicians,@VP,"I’ve seen it in those good Samaritans, who come alongside the least fortunate in our cities, leading people away fr… https://t.co/EyULw8xoft" +06/13/2018,Politicians,@VP,"Over the past year-and-a-half, I’ve seen a lot, as I’ve traveled across this country, and I’ve seen the faith that… https://t.co/nrWsjkFNMB" +06/13/2018,Politicians,@VP,.@POTUS and I will continue to fight for what we know is right. But we recognize that the most important work in Am… https://t.co/M4IshCGA97 +06/13/2018,Politicians,@VP,"Today, on behalf of @POTUS Trump, I want to thank the #SBC18 for the essential and irreplaceable role that you play… https://t.co/Y1jABttk7i" +06/13/2018,Politicians,@VP,"Southern Baptists have always worked to bring about the renewal of America, and new beginnings – and as I stand bef… https://t.co/i5BnpWdith" +06/13/2018,Politicians,@VP,"Heading to Dallas, Texas – it is my great honor to address the Southern Baptist Convention this morning. Watch live… https://t.co/9ZHgPLCYQP" +06/12/2018,Politicians,@VP,"Always enjoy meeting folks visiting Washington, DC. Great to see my friend @RepHuizenga and a group of students in… https://t.co/SDr8l2RvX3" +06/12/2018,Politicians,@VP,"Spoke with @Larry_Kudlow’s wife, Judy, this morning – relieved to hear my good friend is expected to fully recover.… https://t.co/K8nRd5OXRn" +06/12/2018,Politicians,@VP,"RT @WhiteHouse: Overnight, President Trump led a historic summit with North Korean leader Kim Jong Un. “We had a tremendous 24 hours. We’ve…" +06/12/2018,Politicians,@VP,Spoke with @POTUS earlier today – now heading to Capitol Hill to brief @SenateGOP members and @HouseGOP leaders on… https://t.co/FWFsxh5I2c +06/12/2018,Politicians,@VP,"RT @StateDept: ""Anyone can make war, but only the most courageous can make peace."" -- @POTUS Donald J. Trump at the #SingaporeSummit https:…" +06/12/2018,Politicians,@VP,RT @realDonaldTrump: https://t.co/tJG3KIn2q0 +06/12/2018,Politicians,@VP,"With the success of the #SingaporeSummit, the world is one step closer to peace on the Korean Peninsula. This histo… https://t.co/7ApwV9nrMF" +06/12/2018,Politicians,@VP,"RT @StateDept: .@POTUS Trump, @SecPompeo, @AmbJohnBolton, and the U.S. delegation meet with North Korean leader Kim Jong Un and the #DPRK d…" +06/12/2018,Politicians,@VP,"RT @Scavino45: #SingaporeSummit +(📸@AP @EvanVucci) https://t.co/JK9qfsd2xc" +06/12/2018,Politicians,@VP,RT @StateDept: .@POTUS Donald J. Trump meets with North Korean leader Kim Jong Un at the #SingaporeSummit. https://t.co/L3BcOPP26J +06/12/2018,Politicians,@VP,Karen and I are praying for our dear friend @Larry_Kudlow tonight. https://t.co/eaKLURJ8ba +06/11/2018,Politicians,@VP,"RT @realDonaldTrump: Meetings between staffs and representatives are going well and quickly....but in the end, that doesn’t matter. We will…" +06/11/2018,Politicians,@VP,"RT @realDonaldTrump: Stock Market up almost 40% since the Election, with 7 Trillion Dollars of U.S. value built throughout the economy. Low…" +06/11/2018,Politicians,@VP,As I told the Faith & Freedom Coalition this weekend: @POTUS approaches tonight’s historic US-NK summit with confid… https://t.co/tcKqki8mcg +06/11/2018,Politicians,@VP,RT @SecPompeo: The fact that our 2 leaders are sitting down face to face is a sign of the enormous potential to accomplish something that w… +06/11/2018,Politicians,@VP,RT @realDonaldTrump: Thank you Prime Minister Lee Hsien Loong! https://t.co/8MMYGuOj8Q +06/09/2018,Politicians,@VP,"RT @realDonaldTrump: .@G7 Press Briefing in Charlevoix, Canada, prior to departing for Singapore! https://t.co/75y1SXuwuU" +06/09/2018,Politicians,@VP,RT @g7: Day 1 of #G7Charlevoix in 60 seconds. https://t.co/U6jA8ylIgm +06/08/2018,Politicians,@VP,Always an honor to spend time with our heroes recovering at @WRBethesda. Thanks also to the great medical team who… https://t.co/etVd5wjJjs +06/08/2018,Politicians,@VP,"Karen and I were saddened to learn that Charles @Krauthammer, a man we greatly admire, is nearing the end of his ex… https://t.co/IWERAsRbCH" +06/08/2018,Politicians,@VP,RT @WhiteHouse: “The Truth About Opioids” is an ad campaign about the perilous measures that young Americans have taken to fuel an opioid a… +06/08/2018,Politicians,@VP,"RT @WhiteHouse: For many, opioid addiction begins early. This ad campaign from @ONDCP, @AdCouncil, and @truthinitiative helps young adults…" +06/08/2018,Politicians,@VP,"RT @WhiteHouse: Know the risks of opioid abuse. New ads from @ONDCP, @AdCouncil, and @truthinitiative. #crisisnextdoor https://t.co/lsCue7L…" +06/08/2018,Politicians,@VP,"RT @WhiteHouse: Larry Kudlow in the Washington Post: ""Trump Is Presiding Over Extraordinary Growth. G-7 Leaders Should Notice."" https://t.c…" +06/08/2018,Politicians,@VP,Happy Anniversary to my wonderful wife Karen! Being married to our amazing @SecondLady these last 33 years is the g… https://t.co/gNJwE2rlR9 +06/08/2018,Politicians,@VP,Great win for freedom by the nations of @OAS_Official to take a stand against the “Havana-Caracas axis.” Read more: https://t.co/WJEgmiUJQ4 +06/07/2018,Politicians,@VP,Thanks for all the kind birthday wishes! +06/07/2018,Politicians,@VP,Our hearts are with all those that are suffering in the wake of the terrible volcano eruption in Guatemala. We expr… https://t.co/YzeA4y8uWG +06/07/2018,Politicians,@VP,The United States will not stand by as the Ortega government in Nicaragua massacres protesters. We will continue to… https://t.co/YgXL72AOD8 +06/07/2018,Politicians,@VP,RT @realDonaldTrump: Great day of meetings with Prime Minister @AbeShinzo of Japan! https://t.co/uKcdA8RxoN +06/07/2018,Politicians,@VP,POWERFUL new video from @ONDCP on the #OpioidEpidemic that has touched nearly all Americans. @POTUS is committed to… https://t.co/6xFXldB15z +06/07/2018,Politicians,@VP,Great to see PM @AbeShinzo again today as @POTUS welcomed him to the @WhiteHouse for discussions on the upcoming su… https://t.co/TsdbxyTPDu +06/07/2018,Politicians,@VP,THANKS for the birthday wishes @JimBridenstine and our great astronauts at the @Space_Station. So proud of our team… https://t.co/QBRAZitMpC +06/06/2018,Politicians,@VP,".@POTUS, @FLOTUS & I thanked @DHSgov & @FEMA employees for their tireless efforts. POTUS' highest priority is the s… https://t.co/RoSkGFAl6j" +06/06/2018,Politicians,@VP,"RT @realDonaldTrump: We must always protect those who protect us. Today, it was my great honor to sign the #VAMissionAct and to make Vetera…" +07/02/2018,Politicians,@algore,Here are seven great reasons to join me and our incredible team of experts in Los Angeles this August to become a… https://t.co/zhdbrs7LQF +07/02/2018,Politicians,@algore,Congratulations to @lopezobrador_ for his election as Mexico’s next President. Earlier this year we met to discuss… https://t.co/tB7qLLjZbW +07/01/2018,Politicians,@algore,Proud of the important work the grassroots climate movement is doing in the Philippines to transition their country… https://t.co/298n9C1mmG +06/30/2018,Politicians,@algore,"Another ominous record has been set. The city of Quriyat, Oman, hit an overnight LOW of 108.7 degrees on Tuesday -… https://t.co/mako2WUDsU" +06/28/2018,Politicians,@algore,Thanks to everyone who took part in the training in Berlin this week! We need countries like Germany to meet their… https://t.co/Rz74SD2rZS +06/28/2018,Politicians,@algore,"Under the strong leadership of @GovMurphy, New Jersey is primed to become one of America's biggest turnaround stori… https://t.co/1wcubgRDIE" +06/28/2018,Politicians,@algore,"Had a great conversation with @Patrickxander, @vixbwn, @Ischops & @PaolaFiore on the origins of @ClimateReality and… https://t.co/yL4E2yer3L" +06/28/2018,Politicians,@algore,"Congrats on the update to 'The Madhouse Effect’, @MichaelEMann! Can’t wait to read the new chapter. https://t.co/RdMy9uHuhB" +06/27/2018,Politicians,@algore,Leaders in the Netherlands are moving ahead with a law to cut greenhouse gas emissions 95% by 2050. This sets a new… https://t.co/S1GtmQgIyn +06/27/2018,Politicians,@algore,"Powerful panel, at the Berlin @ClimateReality Leadership training, on how the climate crisis impacts human migratio… https://t.co/J5wxxLSTtd" +06/27/2018,Politicians,@algore,"We are all feeling worsening impacts of the climate crisis, especially the most vulnerable countries. Today we have… https://t.co/We6BAwAoJB" +06/26/2018,Politicians,@algore,To remain a global & regional leader in the transition to a sustainable future Germany must meet its 2030 emissions… https://t.co/IICFRuILzm +06/26/2018,Politicians,@algore,We're about to kick off our @ClimateReality training in Berlin where 675 leaders at all levels from around the worl… https://t.co/WQSodNbTEo +06/25/2018,Politicians,@algore,The German coal commission is critical to ensure the country achieves its climate targets with a #justtransition fo… https://t.co/nsPEEQfvjF +06/21/2018,Politicians,@algore,"This August, I’m heading to Los Angeles to train our next class of activists to become @ClimateReality Leaders. App… https://t.co/klQ5Pg6zkN" +06/20/2018,Politicians,@algore,Tearing families apart and putting kids in an Archipelago of Cages is not the America that we know and love. We are… https://t.co/6V78tSGJy4 +06/19/2018,Politicians,@algore,This hits close to home. Literally. The Koch Brothers want more traffic jams so they can sell more petroleum. Then… https://t.co/QulHVNt8Lh +06/14/2018,Politicians,@algore,Good for @patagonia for giving employees the day off to vote in November. Others should follow their lead. We need… https://t.co/cNn2SLHcDL +06/13/2018,Politicians,@algore,"New, startling evidence of ice sheet melt in Antarctica that poses a grave threat to humanity. We have the tools to… https://t.co/lWCWcLeAMC" +06/13/2018,Politicians,@algore,"You are an inspiration to all of us, Anwar. I know you’ll keep fighting for your core principles of democracy, and… https://t.co/0Ymhiam7pR" +06/12/2018,Politicians,@algore,The market continues to favor clean energy over fossil fuels. Solar accounted for 55% of new electricity in Q1 of 2… https://t.co/mAwwG2kGcB +06/12/2018,Politicians,@algore,Our @ClimateReality Leadership Corps takes people of all backgrounds and makes them effective leaders in solving th… https://t.co/ERhyBCa8cy +06/11/2018,Politicians,@algore,My friend @JohnDoerr knows a thing or two about setting ambitious goals and achieving them. I enjoyed learning abou… https://t.co/1h8sjAeRju +06/06/2018,Politicians,@algore,.@ClimateReality Leaders are developing climate solutions across the globe today. I hope you'll join our training o… https://t.co/oNVmDM4yBd +06/05/2018,Politicians,@algore,I stand with @RevDrBarber & the #PoorPeoplesCampaign serving the moral cause to end ecological devastation in Ameri… https://t.co/D7ErO96sCm +06/04/2018,Politicians,@algore,"As the price of clean energy drops, investments in fossil fuels are risky and could be left stranded. Investors sho… https://t.co/Edf0ROmEUD" +06/04/2018,Politicians,@algore,"In the noisy and crowded media environment, it is more important than ever to find effective ways of breaking throu… https://t.co/pG2IwdjKaS" +06/01/2018,Politicians,@algore,Today marks 1 year since President Trump announced plans to withdraw from the #ParisAgreement. Tomorrow marks 1 yea… https://t.co/8W4U52OiGK +05/31/2018,Politicians,@algore,Glad to be part of a new collection of stories about the forging of the #ParisAgreement. Check out Profiles of Pari… https://t.co/pGu2DWi8ar +05/29/2018,Politicians,@algore,Fossil fuels are subsidized 38x more than renewables globally. Now the Canadian government wants to spend billions… https://t.co/eaIvbKkOUs +05/29/2018,Politicians,@algore,The climate crisis is a public health issue. It’s important that former EPA Chief Gina McCarthy will launch… https://t.co/bYsuiF8KSO +05/23/2018,Politicians,@algore,How can educators bring math and science to life? Through music and creativity! Great piece on @NBCNightlyNews feat… https://t.co/fbhDf3AkYq +05/21/2018,Politicians,@algore,"We must, we can, and we will solve the climate crisis. I hope you’ll join @ClimateReality and me in Berlin June 26… https://t.co/nZla8ditxj" +05/17/2018,Politicians,@algore,Washington voters should vote #Yeson1631 which puts a price on pollution and ensures the state continues to be a le… https://t.co/B2XtDjyEfT +05/15/2018,Politicians,@algore,Hurricane Harvey dumped as much rain on TX & Louisiana in 5 days as the full flow of Niagara Falls over 500 days. T… https://t.co/djOTTKqHPP +05/10/2018,Politicians,@algore,Congratulations to the people of Malaysia and to my friends @anwaribrahim and @drwanazizah on your historic victory… https://t.co/YHS8PWCyiM +05/10/2018,Politicians,@algore,"Good for @washingtonpost, exposing this pitiful attempt to downplay the threat of the climate crisis on our militar… https://t.co/raKs8DfRzL" +05/10/2018,Politicians,@algore,The Kinder Morgan pipeline carrying dirty tar sands oil would be a step backward in our efforts to solve the climat… https://t.co/N8ggNhzSNE +05/08/2018,Politicians,@algore,It’s imperative that we all do our part to protect our shared home. Join me in Berlin June 26 - 28 to become a… https://t.co/nt11FO6UAX +05/08/2018,Politicians,@algore,"More than 10 million people are now employed by the renewable energy industry, according to @IRENA. Just the latest… https://t.co/W7ppFWkv98" +05/03/2018,Politicians,@algore,"CO2 levels in our atmosphere are now the highest in recorded history, going back at least 800,000 years, according… https://t.co/2h1dApr6Tn" +05/03/2018,Politicians,@algore,"17 of the hottest years on record have been in the last 18 years. Nowhere is this more stark than in Pakistan, wher… https://t.co/7eU7rdhQvt" +05/02/2018,Politicians,@algore,"This June, I’m gathering climate experts and citizen leaders in Berlin for our next @ClimateReality leadership trai… https://t.co/He1jS0o9Ej" +05/01/2018,Politicians,@algore,The climate crisis affects us in so many ways. Here’s another - our planet is getting warmer and that’s playing a m… https://t.co/q7am6OyWHR +05/01/2018,Politicians,@algore,I stand with @JerryBrownGov and the coalition of states standing up to EPA’s attempt to weaken greenhouse gas emiss… https://t.co/EGlc12gSdH +04/30/2018,Politicians,@algore,Congratulations to my friend @johndoerr for all of the success with his new book “Measure What Matters”! https://t.co/Gcv1WLETHL +04/26/2018,Politicians,@algore,The world is at the beginning of a seismic shift that will benefit the planet & society. My new oped with David Blo… https://t.co/SIzQ28Q9tL +04/26/2018,Politicians,@algore,"It is such an honor to be here in Montgomery, Alabama at the @MemPeaceJustice. Thank you Bryan Stevenson & @eji_org… https://t.co/8zsPHJxPgy" +04/26/2018,Politicians,@algore,"Thanks to @Wellesley for having me, and for the thoughtful questions! Proud of the progress you’ve made through you… https://t.co/0XKtqgN0kM" +04/25/2018,Politicians,@algore,"Transportation is now the top GHG emitting sector in America. Smart, creative thinking like this from… https://t.co/r8UDI6eRP3" +04/18/2018,Politicians,@algore,"Thanks for having me, Mark, to discuss the exciting opportunity presented by the Sustainability Revolution! https://t.co/OMeYD8WHF1" +04/18/2018,Politicians,@algore,Former First Lady Barbara Bush was a pillar of strength for her family and was much admired in our country. Both th… https://t.co/xDmmJzOBlJ +04/17/2018,Politicians,@algore,Thank you @officialjaden! You and other leaders in your generation ​give me hope that we will solve the climate cri… https://t.co/7Z6d0A4Uoa +04/16/2018,Politicians,@algore,Looking forward to celebrating Earth Day this year with everyone @sachamamaorg in Miami! +04/12/2018,Politicians,@algore,"Senators should reject Mike Pompeo’s nomination to be Secretary of State. He denies the climate crisis, and has bee… https://t.co/2czurFFwed" +04/09/2018,Politicians,@algore,Apple is proving the business case for reducing GHG emissions and simultaneously reducing energy costs. All of its… https://t.co/R9qq7L36kG +04/09/2018,Politicians,@algore,Important piece from @JustinHGillis about the threat of EPA Administrator Scott Pruitt. The climate crisis is real… https://t.co/AZ8v0khM1L +04/06/2018,Politicians,@algore,I will greatly miss Senator Danny Akaka. Here is my statement on his passing. https://t.co/kRYCVbQSE9 +04/06/2018,Politicians,@algore,Shell proved to be prescient about violent storms resulting from the climate crisis in the 1980s. But they did noth… https://t.co/i9G7Dfa6O2 +04/05/2018,Politicians,@algore,"Last year, climate-related and other natural disasters caused a staggering $306 billion in total damages in the US.… https://t.co/z2kFbdGzdL" +04/03/2018,Politicians,@algore,My friend @johndoerr has written a new book for teams that want to accomplish big goals. I look forward to reading… https://t.co/QqkxQWbIgv +04/02/2018,Politicians,@algore,"The carmakers are reneging on a fair deal – in order to be bailed out by taxpayers, they agreed to strong emissions… https://t.co/CHUMvwESha" +04/02/2018,Politicians,@algore,"Looking forward to tuning into what should be a facinating discussion between Rev. Leo Woodbury, @RevYearwood &… https://t.co/fKzZdViPsh" +03/28/2018,Politicians,@algore,"Proud of my daughter @KarennaGore and all 13 of the men and women who won in court, for standing up to fossil fuel… https://t.co/sAwQGXUo6Z" +03/23/2018,Politicians,@algore,"Thank you to #CDMX for hosting this week’s @ClimateReality Leadership training, and big thanks to everyone + who cam… https://t.co/NKDTa06wY9" +03/23/2018,Politicians,@algore,"I am deeply saddened by the passing of my friend, Nancy McFadden. She was an extraordinary public servant whose wis… https://t.co/MJixQl6bxe" +03/22/2018,Politicians,@algore,Great panel on how Mexico is using a price on carbon to combat the climate crisis. Thanks to Dr. Mario J. Molina of… https://t.co/6nWPr8UGrU +03/22/2018,Politicians,@algore,Great questions this morning from the new Climate Reality Leader trainees here in #CDMX – thank you to Dr. Adrián F… https://t.co/t3yrmdmaGH +03/21/2018,Politicians,@algore,"Thank you to Jorge Villarreal Padilla of ICM, @tabnrgy of @WWF_LAC & Dr. Cuauhtémoc León Diez of @cegamcsur for a t… https://t.co/VRAlE12IcF" +03/21/2018,Politicians,@algore,Getting ready to kick off this week’s @ClimateReality training here in #CDMX! #LeadOnClimate. +03/20/2018,Politicians,@algore,Excited to announce that I just joined @Instagram! You can follow me here: https://t.co/UmVSIg2Zab +03/14/2018,Politicians,@algore,Stephen Hawking's historic breakthroughs in science advanced humanity’s understanding of the universe even as the e… https://t.co/aCQTdpIzgT +03/13/2018,Politicians,@algore,We need more strong voices like that of @SenWhitehouse calling on politicians to respond to the urgent threat of th… https://t.co/BfdphcsPrh +03/09/2018,Politicians,@algore,.@NYGovCuomo is showing leadership on the climate crisis & building a sustainable future in NY. Proud to support hi… https://t.co/vbZIVLAJUn +03/08/2018,Politicians,@algore,Excited to be with @Kathleen_Wynne today fighting for her bold #climate agenda. We can’t go backwards in Ontario or… https://t.co/8oqdCrwqSc +03/07/2018,Politicians,@algore,More positive momentum. Energy storage in the US is growing rapidly and may double this year according to… https://t.co/bTd2sWO7em +02/28/2018,Politicians,@algore,"The number of cities powered mostly by renewable energy has more than doubled since 2015, according to @CDP, with m… https://t.co/5KJIdWZPXL" +02/27/2018,Politicians,@algore,"It’s concerning how warm the Arctic is right now, with record temps and low sea ice. As @thinkprogress says, what h… https://t.co/MZZSukIXOz" +02/21/2018,Politicians,@algore,"Rev. Billy Graham personally touched the lives, hearts & souls of hundreds of millions of people with his determina… https://t.co/frxUMiyqja" +02/20/2018,Politicians,@algore,"In India (7% of global emissions), wind + solar = 64% of new electricity capacity in 2017, according to… https://t.co/5HkAtQVeY5" +02/20/2018,Politicians,@algore,"In the EU (10% of global emissions), wind + solar = 77% of new electricity capacity in 2017, according to… https://t.co/hY144dj4RB" +02/20/2018,Politicians,@algore,"In the United States (15% of global emissions), wind + solar = 62% of new electricity capacity in 2017, according t… https://t.co/nzRk52LmK7" +02/20/2018,Politicians,@algore,"In China (28% of global emissions), wind + solar = 55% of new electricity capacity in 2017, according to… https://t.co/UpLYEd2OWs" +02/20/2018,Politicians,@algore,"As clean renewable energy continues to grow at an unprecedented pace, the highest emitting countries are driving to… https://t.co/1jqkdOBvpT" +02/14/2018,Politicians,@algore,U.S intelligence officials are looking at the science and warning about the risks of the climate crisis. Why isn’t… https://t.co/nBhjNcg0p0 +02/12/2018,Politicians,@algore,Important #cleanenergy progress coming from Australia. Solar power could double in capacity this year as the cost t… https://t.co/ET1cIeCXJ8 +02/06/2018,Politicians,@algore,"In Colorado and parts of the U.S, energy from solar and wind is now the cheapest source of power, even including th… https://t.co/Yz0QYR5sWF" +02/02/2018,Politicians,@algore,"For Europe to meet its #ParisAgreement goals & build a more sustainable financial system, it should follow the fina… https://t.co/IzcOwXJqDi" +01/31/2018,Politicians,@algore,There is no war on American energy. America should lead on clean energy! Smart leaders are tapping into this unprec… https://t.co/EPS4D7gJAK +01/30/2018,Politicians,@algore,"Great to see New Jersey back in the Regional Greenhouse Gas Initiative, under the leadership of my good friend… https://t.co/nbjSt3tJ7z" +01/30/2018,Politicians,@algore,I'm calling on members of @cducsubt & @spdbt in Germany to phase out coal by 2030 in #GroKo talks. This is your mom… https://t.co/hT6ANape0G +01/30/2018,Politicians,@algore,I hope Germany will commit to #endcoal. The coalition treaty is a chance to follow through on its climate promise a… https://t.co/7objDjqEuZ +01/29/2018,Politicians,@algore,"Proud of my friend Don Henry for being recognized with an Australia Day Honor, for his tireless conservation work w… https://t.co/MizeEu4bgh" +01/25/2018,Politicians,@algore,I’m speaking on the #StepUp2018 panel now at #WEF18! Click here to watch: https://t.co/ODjgLZ0wpx https://t.co/UpY0VvJovY +01/18/2018,Politicians,@algore,"2017 was the 2nd hottest year on record, according to @NASAGoddard, and the warmest year without El Nino. That make… https://t.co/zVLwXZHRRM" +01/17/2018,Politicians,@algore,"Extreme weather and the climate crisis are still top threats to the global economy, according to @WEF’s latest Glob… https://t.co/yjvG5ABPOK" +01/16/2018,Politicians,@algore,Great analysis here - Energy PLUS storage from new solar and wind projects is now cheaper than energy from existing… https://t.co/PgYYlVOnDS +01/13/2018,Politicians,@algore,Any serious national security strategy must address the threat of the climate crisis. Take it from a former Navy ad… https://t.co/PWPXLCai3Y +01/11/2018,Politicians,@algore,"RT @aitruthfilm: All corners of the world are feeling the growing impact of the climate crisis. This is our only home, and this is our mome…" +01/10/2018,Politicians,@algore,More encouraging news! The cost of clean renewable energy and storage continues to plummet. https://t.co/tqZDy4rLcJ +01/09/2018,Politicians,@algore,I applaud the leadership demonstrated today by my friend @GovInslee & Washington state with the announcement of a p… https://t.co/yROHT9QFhV +01/09/2018,Politicians,@algore,I am very proud that @aitruthfilm has been nominated for “Best Documentary” by the British Academy of Film and Tele… https://t.co/RuOM8CQmAR +01/08/2018,Politicians,@algore,"Calling all climate activists: My next @ClimateReality Leadership training is in Mexico City, March 21-23, 2018! Le… https://t.co/WZwJiLg65M" +01/06/2018,Politicians,@algore,"According to the insurance company @MunichRe, 2017 had the most insured losses of any year on record - $135 billion… https://t.co/lOxy2gBLht" +01/04/2018,Politicians,@algore,"It’s bitter cold in parts of the US, but climate scientist Dr. Michael Mann explains that’s exactly what we should… https://t.co/LZi67vLixU" +01/04/2018,Politicians,@algore,"President Trump is once again defying a majority of American citizens, states, and businesses. His offshore drillin… https://t.co/BgBtZt9Gc4" +01/03/2018,Politicians,@algore,"I send my condolences to the LDS Church and to the family of its leader, Thomas Monson. https://t.co/B8iOhVZT15" +12/19/2017,Politicians,@algore,The world’s largest polluter just launched the world’s largest carbon market. We are at a tipping point in the clim… https://t.co/J84n6ijRqQ +12/18/2017,Politicians,@algore,"Saddened about the loss of a great man and scholar, Calestous Juma. https://t.co/Z3B9j4cSnz" +12/14/2017,Politicians,@algore,Total solar capacity in developing countries has more than tripled in the past three years thanks to cheaper clean… https://t.co/TtSXTmz205 +12/13/2017,Politicians,@algore,"New scientific studies link the climate crisis and Hurricane Harvey’s record rainfall, which devastated south Texas… https://t.co/1M4fBC2lHe" +12/12/2017,Politicians,@algore,Important step forward in The Philippines today to cut carbon pollution. Very proud of Senator @loren_legarda & the… https://t.co/mdghMAiOzG +12/12/2017,Politicians,@algore,"The recent images & stories of the fires in California are alarming. If we don't solve the climate crisis, these ty… https://t.co/GcQwU50qCH" +12/11/2017,Politicians,@algore,Great @drvox piece about the Trump administration’s push to prolong the inevitable decline of the coal industry. Pe… https://t.co/myafayMUCU +12/07/2017,Politicians,@algore,"The iconic ""Blue Marble"" photo was taken 45 years ago today. This image allowed us to see how beautiful and fragile… https://t.co/1e97UUYu77" +12/07/2017,Politicians,@algore,"Thank you, Senator @loren_legarda for joining this year’s #24HoursofReality, for your inspiring leadership and your… https://t.co/xnRGh03OzG" +12/06/2017,Politicians,@algore,"Millions of viewers joined us for #24HoursofReality, a global journey focused on the stories of people speaking out… https://t.co/HQVecfZ9qo" +12/05/2017,Politicians,@algore,Wonderful performance @allisimpson! Thank you so much for all of your help with #24HoursofReality!… https://t.co/BGdQzHLTpF +12/05/2017,Politicians,@algore,It’s such an honor to have President @mbachelet join us for #24HoursofReality to discuss the importance of being a… https://t.co/5ABitG5Qjq +12/05/2017,Politicians,@algore,Always great to have the one and only @CalumWorthy in the building for #24HoursofReality! https://t.co/7BXgqAb4lN https://t.co/QWB9I3jpzn +12/05/2017,Politicians,@algore,197 countries signed up to the Paris Agreement to take global warming pollution down to net-zero by mid-century. Bu… https://t.co/f1NR16vTMD +12/05/2017,Politicians,@algore,Having a great time with the @ClimateReality team at #24HoursofReality. You can join here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,".@HelenHunt, thanks for being a part of #24HoursofReality! See you soon! https://t.co/37ovJR44Zj" +12/05/2017,Politicians,@algore,"An increasing number of people’s lives are being affected by the climate crisis, causing a growing awareness that w… https://t.co/SkJZkFomT3" +12/05/2017,Politicians,@algore,Thank you @YoungParis for that powerful & unforgettable performance! #24HoursofReality https://t.co/KItX9a50hM +12/05/2017,Politicians,@algore,We’re now in the second half of #24HoursofReality! Tune in here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,The world is moving forward towards a clean energy future. Join @ClimateReality and me now and learn how you can be… https://t.co/ujPb3C8Mm8 +12/05/2017,Politicians,@algore,We’re about to start hour 10 for #24HoursofReality! https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,.@jason_mraz's performance tonight at #24HoursofReality was excellent. Great seeing you! https://t.co/Yyh6AW1vwD +12/05/2017,Politicians,@algore,Thanks @TeaLeoni & @MrSilverScott for being a part of #24HoursofReality - Be the Voice of Reality! https://t.co/SiOrgUnboD +12/05/2017,Politicians,@algore,.@RyanTedder your moving message with 'Truth to Power' was perfect to kick off #24HoursofReality - Be the Voice of… https://t.co/YLL630ZD9e +12/05/2017,Politicians,@algore,24 Hours of Reality https://t.co/IaoPy00d2F +12/05/2017,Politicians,@algore,24 Hours of Reality https://t.co/IRVcbQzerZ +12/05/2017,Politicians,@algore,Thanks @OregonGovBrown for joining us and being a voice of reality to make sure we are still in the Paris Agreement… https://t.co/uJzva1vebi +12/05/2017,Politicians,@algore,Hello and welcome to #24HoursofReality – Be the Voice of Reality! Join us here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,On to hour 2 of #24HoursofReality. You can join us here! https://t.co/7BXgqAb4lN +12/04/2017,Politicians,@algore,@SherylCrow @HelenHunt @nilerodgers @IggyPop @elliegoulding @The_Hives @thekillers @sarahbackhouse @billybragg… https://t.co/DssfB4IN2B +12/04/2017,Politicians,@algore,"For the next 24 hours, we’ll be joined by @SherylCrow, @HelenHunt, @nilerodgers, @IggyPop, @elliegoulding,… https://t.co/4lEwK0rm1Q" +12/04/2017,Politicians,@algore,24 Hours of Reality https://t.co/tv6mdecuyt +12/04/2017,Politicians,@algore,Join me for a 24-hour live event as we unite to demand solutions to the climate crisis. #24HoursofReality is LIVE:… https://t.co/VuORrEnHGr +12/04/2017,Politicians,@algore,We’re about to kick off another #24HoursofReality join us starting tonight at 6pm ET. https://t.co/lWwevFTIrA https://t.co/47ruYWsiTC +12/04/2017,Politicians,@algore,"Today is the day! Join me, @ClimateReality, and our incredible guests for #24HoursofReality. The broadcast starts a… https://t.co/atMNeccWAn" +12/04/2017,Politicians,@algore,I am very optimistic that we will solve the climate crisis. And one reason is that so many people from all around t… https://t.co/AZ9OVtYr5O +12/03/2017,Politicians,@algore,"#24HoursofReality starts tomorrow! The climate crisis is the biggest challenge of our time — we can, we must, and w… https://t.co/siSn1qALVH" +12/02/2017,Politicians,@algore,I’m excited to be kicking off another #24HoursofReality in just three days. Join me and @ClimateReality as we shine… https://t.co/H0P3lMCsML +12/02/2017,Politicians,@algore,"One of the county’s biggest credit rating agencies, @MoodysInvSvc says cities and states should prepare for the cli… https://t.co/mVzLAmeeHb" +12/01/2017,Politicians,@algore,I’m excited to be kicking off another #24HoursofReality in just three days. Join me and @ClimateReality as we shine… https://t.co/DW1z5XCrlx +11/30/2017,Politicians,@algore,Great event today at #Slush17 in Helsinki. Terrific group of impressive entrepreneurs! Also met with President @Ni… https://t.co/j55FPl2020 +11/29/2017,Politicians,@algore,Clean energy is getting ever cheaper and more reliable. Wind power capacity has now surpassed coal in Texas. https://t.co/iJYA5ZMDG3 +11/28/2017,Politicians,@algore,"For 24 Hours, we’ll travel around the world, telling stories of real people making a real difference for the climat… https://t.co/4PREzYYNl4" +11/27/2017,Politicians,@algore,"On December 4-5, join me, @ClimateReality, and our all-star guests for #24HoursofReality. We’ll be discussing the i… https://t.co/m3z30bAsBl" +11/20/2017,Politicians,@algore,"Mother Nature can be very persuasive. More Americans are concerned about the climate crisis, and connecting the dot… https://t.co/SbCMDipqm7" +11/17/2017,Politicians,@algore,The world is moving forward towards a clean energy future. Join @ClimateReality and me December 4-5:… https://t.co/kaWF2chYXr +11/16/2017,Politicians,@algore,"More countries are committing to phase out coal, as the world transitions to a clean energy future. Congrats to Can… https://t.co/VSpBGaItHy" +11/16/2017,Politicians,@algore,"Despite what’s happening in Washington, I know that we can solve the climate crisis with actions from people like y… https://t.co/tfP6CQU8kn" +11/15/2017,Politicians,@algore,Thanks to President Macron for pledging to replace U.S. climate science funding. While you step up to fill the lead… https://t.co/7Qv4iuVWqJ +11/15/2017,Politicians,@algore,"We must, we can, and we will solve the climate crisis. I hope you'll join me on December 4-5 for #24HoursofReality… https://t.co/gjr598UhnK" +11/13/2017,Politicians,@algore,So proud of my daughter @KarennaGore and her fantastic speech at last month's Rights of Nature Symposium in New Orl… https://t.co/DQYT10Vmut +11/12/2017,Politicians,@algore,"Great visit to Bonn for #COP23. It was clear that American leadership on #climate is still strong, despite the best… https://t.co/gJe7Jq8o9R" +11/11/2017,Politicians,@algore,"I'm honored to be a part of today's session here at #COP23 titled ""Maintaining U.S. Engagement in International Cli… https://t.co/JgeGwdVyXd" +11/11/2017,Politicians,@algore,"Inspired to be in Bonn for #COP23 this week and see the leaders of so many nations, states, cities, NGOs and busine… https://t.co/yqXRcABcMD" +11/10/2017,Politicians,@algore,Great meeting with Executive Secretary @PEspinosaC today here at #COP23! https://t.co/cakNSSRPEM +11/06/2017,Politicians,@algore,"If you are in New Jersey, get out and vote tomorrow for my friend, @PhilMurphyNJ. Now more than ever, your vote mat… https://t.co/GAws1whyBm" +11/03/2017,Politicians,@algore,America’s leading scientists have confirmed what Mother Nature has been making plenty clear: the climate crisis is… https://t.co/AAsRJMxmd9 +11/03/2017,Politicians,@algore,"@BillClinton Thanks, @BillClinton. It was a privilege to serve our nation with you for those 8 yrs. Along with our… https://t.co/PSGLsvQ9p7" +10/31/2017,Politicians,@algore,The climate crisis is already having serious negative impacts on the health of hundreds of millions of people aroun… https://t.co/hlH1XhKzeZ +10/29/2017,Politicians,@algore,"Five years since Hurricane Sandy, and dangerous storms continue to batter our coasts, with bigger downpours, floodi… https://t.co/pEdAo0CPGf" +10/28/2017,Politicians,@algore,Great conversation yesterday with my good friend @JohnKerry for the @KerryInitiative. https://t.co/VSgUohhiiT +10/27/2017,Politicians,@algore,Thrilled by @AFLCIO's climate statement. Thanks to @steelworkers' Leo W. Gerard for bringing the resolution to unan… https://t.co/GQ8Nn9IiOL +10/26/2017,Politicians,@algore,Looking forward to tonight! Join me for a nationwide screening of @aitruthfilm + live webcast Q&A. Find your screen… https://t.co/2fEKccXX1e +10/25/2017,Politicians,@algore,"Clean energy jobs keep growing. Solar panel installer is now the fastest growing job, followed by wind turbine tech… https://t.co/WxA1WLvgPQ" +10/24/2017,Politicians,@algore,Important read: devastating flooding will hit New York City more often due to climate-driven sea level rise https://t.co/FJ0BEIMGSO +10/23/2017,Politicians,@algore,In Houston today talking about the climate crisis and its impact on storms like #Harvey. The @HoustonChron put it w… https://t.co/yUJFIez4m4 +10/20/2017,Politicians,@algore,"Couldn’t agree with you more, @jerry_jtaylor. A lot of great questions on this string that deserve answers. https://t.co/773W7PZURA" +10/20/2017,Politicians,@algore,"Thanks to everyone who came out to the @ClimateReality training in Pittsburgh, for your dedication to the environment! #LeadOnClimate" +10/19/2017,Politicians,@algore,"Next Thursday (10/26), please join me for a nationwide screening of @aitruthfilm + live webcast Q&A. Find a local s… https://t.co/0WhyYj09cU" +10/19/2017,Politicians,@algore,Now starting our last day of the @ClimateReality Leadership training here in Pittsburgh! What great energy this week! #LeadOnClimate +10/18/2017,Politicians,@algore,"Having a great time in Pittsburgh, where our new @ClimateReality leaders are learning how to #LeadOnClimate & help solve the climate crisis!" +10/18/2017,Politicians,@algore,"The climate crisis is undeniable, and can feel overwhelming. If you are wondering what YOU can do, AN INCONVENIENT… https://t.co/VEItNSeIVr" +10/18/2017,Politicians,@algore,On to day 2 of the Pittsburgh @ClimateReality training with this inspiring and energetic group of leaders! #LeadOnClimate +10/17/2017,Politicians,@algore,"The city of Pittsburgh has chosen to #LeadOnClimate, which makes it an ideal location for this week’s @ClimateReality training!" +10/17/2017,Politicians,@algore,Hello Pittsburgh! We're about to kickoff the largest ever @ClimateReality Leadership training! #LeadOnClimate +10/12/2017,Politicians,@algore,Looking forward to talking about clean renewable energy tomorrow at the #NCES. #VegasStrong #CleanEnergy +10/10/2017,Politicians,@algore,Repealing the Clean Power Plan is out of step with our movement to solve the climate crisis. My statement:… https://t.co/Vr6CbqSzaS +10/03/2017,Politicians,@algore,A sustainable 21st Century economy requires a long term investment approach. @GenerationFndt @UNEP_FI @PRI_News https://t.co/aVuOarbEcc +09/24/2017,Politicians,@algore,My thoughts and prayers are with the congregation of the Burnette Chapel Church of Christ and all those affected by this horrific event. +09/24/2017,Politicians,@algore,"Today’s tragic shooting in Antioch, Tennessee is heartbreaking." +09/18/2017,Politicians,@algore,RT @TheYoungTurks: Al Gore Warned Us About Stronger Hurricanes YEARS AGO: https://t.co/CCsej0CnA1 via @YouTube +09/18/2017,Politicians,@algore,"RT @globalcompact: We must make faster progress, and the key is in this #UNPSF room. Non-state actors are essential to the #ParisAgreement,…" +09/18/2017,Politicians,@algore,Excited to join @wef's #wefimpact Summit discussing the #future of #climate #InclusiveGrowth #mobility & more: https://t.co/3cIzsp80zT +09/07/2017,Politicians,@algore,It’s time to speak truth to power about the climate crisis. Join me in Pittsburgh & learn how you can… https://t.co/ZAyZYEbx5N +09/06/2017,Politicians,@algore,"This October, join me for a @ClimateReality Leadership Training and learn how you can #LeadOnClimate! Apply here:… https://t.co/X7tlKnifnT" +09/06/2017,Politicians,@algore,"Important read, featuring my friend @CathFlowers, on how hookworm affects impoverished parts of the southern US​: https://t.co/eGl7Vjolwr" +09/05/2017,Politicians,@algore,We must stand up &demand climate action. Learn how to #LeadOnClimate at the next @ClimateReality Leadership Trainin… https://t.co/UWIy5GWyDo +09/05/2017,Politicians,@algore,"In addition to renewables, grid storage may soon be cheaper than natural gas backup ""peaking"" generators: https://t.co/zHODHV856V" +09/02/2017,Politicians,@algore,RT @aitruthfilm: We're asking YOU. Tell the people in power where you stand & urge them to protect our home. Act now: https://t.co/IVpuGTbY… +08/29/2017,Politicians,@algore,My heart is with the people of Texas today. Find out how you can help here: https://t.co/aGChrQ4w4d +08/26/2017,Politicians,@algore,"In India, renewables cost less than coal-the power sector must continue incorporating solar&wind to stay competitive https://t.co/HpIexPKJru" +08/24/2017,Politicians,@algore,"Important & disturbing read on how increasing temps are thawing Alaska's permafrost, exacerbating the climate crisis https://t.co/iRdKq3HPsI" +08/23/2017,Politicians,@algore,Important read by @NaomiOreskes: new research further shows Exxon knowingly misled the public on the climate crisis: https://t.co/Eh3ObXuEai +07/02/2018,Politicians,@NancyPelosi,"54 years after the signing of the Civil Rights Act, we once again remember that justice is won by the daily heroism… https://t.co/9gBhOi3U2K" +06/30/2018,Politicians,@NancyPelosi,Ending the Trump Administration’s current family separation policy doesn’t demand trading one form of child abuse f… https://t.co/hACsCaTN33 +06/29/2018,Politicians,@NancyPelosi,.@RepCartwright is proud of how America’s labor unions improved the lives of people in his corner of Pennsylvania &… https://t.co/gltTRtJRGw +06/29/2018,Politicians,@NancyPelosi,RT @RepAnthonyBrown: These men and women were targeted for doing their job - reporting on the community they cherished and constantly seeki… +06/28/2018,Politicians,@NancyPelosi,"Praying for everyone injured & the families of those lost in today’s shooting at the Capital Gazette in Annapolis,… https://t.co/lbHrcveJQQ" +06/28/2018,Politicians,@NancyPelosi,I am speaking with reporters here in the Capitol during what has been a very eventful week in Washington and our na… https://t.co/y8T52ABBu3 +06/28/2018,Politicians,@NancyPelosi,I will be speaking live from the Capitol today at 10:30 am ET. Tune in here: https://t.co/jMGUtNa4Wc +06/27/2018,Politicians,@NancyPelosi,Americans are about to see if @SenateMajLdr & @SenateGOP will heed the McConnell Rule or rashly proceed to confirm… https://t.co/Z8yr2llVgl +06/27/2018,Politicians,@NancyPelosi,So-called moderate Republicans folded & destroyed the best chance Congress had to provide a permanent legislative f… https://t.co/7Qga3MIAzK +06/27/2018,Politicians,@NancyPelosi,America’s unions are the foundation of the middle class. The Supreme Court’s radical ruling in #Janus will impact w… https://t.co/WsKWxwoTSg +06/27/2018,Politicians,@NancyPelosi,RT @RepAdams: One in five public school teachers have second jobs during the school year. We should be doing more to help these public serv… +06/27/2018,Politicians,@NancyPelosi,"RT @RepStephMurphy: Raised in a union family, I know how unions grow the middle class. Today’s #Janus decision is a blow to the ability of…" +06/27/2018,Politicians,@NancyPelosi,RT @RepBarbaraLee: The #Janus decision is disgraceful. SCOTUS has weakened workers’ rights and further rigged the system for greedy special… +06/27/2018,Politicians,@NancyPelosi,"RT @keithellison: But make no mistake: as the recent teachers' strikes all across this nation have made clear, when workers join together t…" +06/27/2018,Politicians,@NancyPelosi,"RT @RepBrianHiggins: The SCOTUS decision in the #Janus case continues efforts to chip away at the rights, protections and benefits secured…" +06/27/2018,Politicians,@NancyPelosi,RT @repcleaver: Another win for corporate America at the expense of workers. But the fight isn't over. As seen with teachers across the cou… +06/27/2018,Politicians,@NancyPelosi,RT @WhipHoyer: Dems will continue to fight for the rights of all workers – whether public or private sector – to organize & bargain collect… +06/27/2018,Politicians,@NancyPelosi,RT @JacksonLeeTX18: The Supreme Court’s #Janus decision is an unprecedented attack on the rights of the 17.3 million public employees acros… +06/27/2018,Politicians,@NancyPelosi,The Supreme Court’s radical #Janus ruling tramples over the freedom and basic rights of over 17 million public work… https://t.co/DJTEAem55z +06/27/2018,Politicians,@NancyPelosi,No American should be denied coverage or forced to pay more for their health care simply because they have a pre-ex… https://t.co/o7oi0Jt9Xn +06/27/2018,Politicians,@NancyPelosi,RT @RepJoeKennedy: Allowing insurance companies to discriminate against Americans w/ pre-existing conditions will take us back to a system… +06/27/2018,Politicians,@NancyPelosi,.@RepJoeCrowley has been an unwavering champion for America’s working families for almost two decades. I salute Cha… https://t.co/aGPje98mIp +06/26/2018,Politicians,@NancyPelosi,RT @RepCheri: Hey taxpayers- want to know how much you're paying for @realDonaldTrump's policy of #FamilySeparation and putting kids in cag… +06/26/2018,Politicians,@NancyPelosi,"The Supreme Court’s dangerous decision in Hawaii v. Trump undermines our values, our security, & our Constitution.… https://t.co/d9rNnyXkAP" +06/26/2018,Politicians,@NancyPelosi,RT @RepAnnieKuster: Being born a woman shouldn’t be a “pre-existing condition.” But if Republicans’ attacks on protections for millions of… +06/25/2018,Politicians,@NancyPelosi,It’s been five years since the Supreme Court devastated the Voting Rights Act by stripping out core provisions. Eve… https://t.co/bweRaFRhvE +06/25/2018,Politicians,@NancyPelosi,"In the crucial months ahead, we must strive to make America beautiful again. Trump’s daily lack of civility has pro… https://t.co/1FxHx1AYgp" +06/23/2018,Politicians,@NancyPelosi,"Earlier this week, I visited our southern border with some of my Democratic colleagues. It was an experience we wil… https://t.co/ueGAdJxkSz" +06/22/2018,Politicians,@NancyPelosi,"All of us are just one diagnosis, one accident, one phone call away from needing pre-existing condition protections… https://t.co/ebdsVrGCw7" +06/21/2018,Politicians,@NancyPelosi,"Because the law protects people with pre-existing conditions, Gladys didn’t have to worry whether her son’s asthma… https://t.co/lQr47fKfKg" +06/21/2018,Politicians,@NancyPelosi,"RT @nikiinthehouse: I will continue to fight for Joe, Pamela, Lin, and the tens of thousands of people in #MA3 and across Massachusetts who…" +06/21/2018,Politicians,@NancyPelosi,"RT @USRepKCastor: As Republicans renew their attack on protections for people with preexisting conditions, I want to share Brian’s story an…" +06/21/2018,Politicians,@NancyPelosi,RT @RepJudyChu: Charles woke up in the middle of the night w/ severe back spasms. But it turned out it was actually a seizure. He was rushe… +06/21/2018,Politicians,@NancyPelosi,"RT @janschakowsky: The Trump Administration is refusing to defend the #ACA in court, meaning that more than 130 million Americans with pre-…" +06/21/2018,Politicians,@NancyPelosi,Folk-singer Buddy Mondlock got Hepatitis C from a blood transfusion after a car accident in 1981. After decades bei… https://t.co/aQW6Z3Ymxq +06/21/2018,Politicians,@NancyPelosi,"RT @RepMarcyKaptur: .@POTUS continues to undermine health protections that save people's lives, including preventing discrimination b/c of…" +06/21/2018,Politicians,@NancyPelosi,"Instead of wasting time on House Republicans’ destructive & partisan bill, we should follow the Senate and return t… https://t.co/l2v2fMj0Vv" +06/21/2018,Politicians,@NancyPelosi,RT @RepKClark: This is Jen. Protections for Americans with pre-existing conditions allowed her and her newborn daughter to get the care the… +06/21/2018,Politicians,@NancyPelosi,"RT @RepBonnie: If Republicans succeed in getting rid of protections for pre-existing conditions, families like Lisa's could suffer. Her son…" +06/21/2018,Politicians,@NancyPelosi,"RT @RepDelBene: Last year, Genesis & Suzy shared their sons’ stories during the health care debate, and they’ve stuck w/me. I’m sharing the…" +06/21/2018,Politicians,@NancyPelosi,"Little Zoe was born w/ a congenital heart defect. Now, her mom is sharing her concerns about what would happen if R… https://t.co/OCUEAn4xVC" +06/21/2018,Politicians,@NancyPelosi,"RT @LauraLeHatcher: Thank you @NancyPelosi - Simon, @LittleLobbyists and I are so lucky to have a fellow strong Mom fighting with us to pro…" +06/21/2018,Politicians,@NancyPelosi,"The Trump Administration’s reckless reorganization proposal is a recipe for more bureaucratic, inefficient and unre… https://t.co/fhhW2fTTAZ" +06/21/2018,Politicians,@NancyPelosi,"RT @RepMaloney: As we fight to #KeepFamliesTogether & reunite those separated, we have must also #ProtectOurCare. @GOP wants to roll back p…" +06/21/2018,Politicians,@NancyPelosi,"Meet Simon & his mom, Laura. If you ask me, they deserve to know that Simon won’t be denied health coverage just be… https://t.co/uwGzadg6ds" +06/21/2018,Politicians,@NancyPelosi,RT @JuliaBrownley26: We must #ProtectOurCare from the Trump administration’s cruel attempts to roll back protections for millions of Americ… +06/21/2018,Politicians,@NancyPelosi,RT @repmarkpocan: We must fight to make sure people with pre-existing conditions don’t have to worry about the threat of being denied healt… +06/21/2018,Politicians,@NancyPelosi,Maryann from California has been fighting cancer for five years. Take a moment to read her thoughts on the prospect… https://t.co/wXHdwpxQAo +06/21/2018,Politicians,@NancyPelosi,"We all pledge to protect our Constitution & country. Americans of all stripes have fought to protect our country, i… https://t.co/kQYKPrHQGC" +06/21/2018,Politicians,@NancyPelosi,RT @RepRichardNeal: No one should be denied care because they have a pre-existing condition. Republicans are trying to strike down protecti… +06/21/2018,Politicians,@NancyPelosi,"RT @RepLoisFrankel: Cheryl from #PBC was born w/ a heart defect. After years of being denied coverage, the #ACA made it possible for her to…" +06/21/2018,Politicians,@NancyPelosi,Jeremy’s son has been cancer-free for 7 years – but his journey isn’t over. And that’s why we must defend pre-exist… https://t.co/j5PqV8ieOC +06/21/2018,Politicians,@NancyPelosi,"Now, Republicans are using the #GOPTaxScam for the rich as the basis for a lawsuit to strike down protections for p… https://t.co/ezRiTIwCGE" +06/21/2018,Politicians,@NancyPelosi,"For six months we have watched as the #GOPTaxScam enriched wealthy shareholders, rewarded companies that send jobs… https://t.co/uXDr0BoRZ1" +06/21/2018,Politicians,@NancyPelosi,"RT @RepJimmyGomez: Thread about @realDonaldTrump’s executive order: + +I’ve had time to read it & it fixes nothing. + +Families seeking asylum…" +06/21/2018,Politicians,@NancyPelosi,House Republicans are intent on labeling their anti-family immigration legislation as a “compromise.” It must be a… https://t.co/dkno9WGG6u +06/21/2018,Politicians,@NancyPelosi,"Republicans continue to be complicit in @realDonaldTrump’s atrocities. Instead of standing up for families, they ar… https://t.co/Uk3vyd8W70" +06/21/2018,Politicians,@NancyPelosi,"I will always be proud to know that during my time as Speaker, the House passed the #DREAMAct." +06/21/2018,Politicians,@NancyPelosi,It’s important for people to know how Republicans are using the #GOPTaxScam for the rich to attack protections for… https://t.co/c8qn1NutCN +06/21/2018,Politicians,@NancyPelosi,"I’m speaking with reporters during today’s weekly press conference. #FamiliesBelongTogether + +Watch here 👇 https://t.co/HarMuoWIJz" +06/21/2018,Politicians,@NancyPelosi,Democrats want to honor our responsibility to secure our borders but not by putting children in cages. https://t.co/9ku9Geeihw +06/21/2018,Politicians,@NancyPelosi,"I’ll be speaking with reporters at 10:45 am ET in the Capitol. #FamiliesBelongTogether + +Watch here: https://t.co/kLDYzk3L2E" +06/20/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s executive order seeks to replace one form of child abuse with another. Every child is entitled… https://t.co/YDTEWZIIJz +06/20/2018,Politicians,@NancyPelosi,"After six months of the #GOPTaxScam for the rich, the #GOPBudget proves that the GOP wants to pay for it all throug… https://t.co/6kV2UNtkli" +06/20/2018,Politicians,@NancyPelosi,"Six months after the #GOPTaxScam, we’re seeing the rich celebrate – and working families pay the consequences. + +Wa… https://t.co/izQuAMD5TA" +06/20/2018,Politicians,@NancyPelosi,My Democratic colleagues and I are coming together at 3 pm ET to mark six months since Republicans passed their… https://t.co/JY6LVHAXMc +06/20/2018,Politicians,@NancyPelosi,Proud to stand with my fellow @HouseDemocrats to reject @realDonaldTrump’s barbaric treatment of immigrant children… https://t.co/Q4ulLZ1ngU +06/20/2018,Politicians,@NancyPelosi,"Democrats are calling for an end to Trump’s barbaric family separation policy. #FamiliesBelongTogether + +Watch here 👇 https://t.co/pIGu4AKmVl" +06/20/2018,Politicians,@NancyPelosi,President Trump believes that immigrants are “infesting” America. The only infestation I see is the one in the Whit… https://t.co/hvELRNYLPf +06/20/2018,Politicians,@NancyPelosi,“President Trump could stop this policy with a phone call… I'll go tell him: If you don't like families being separ… https://t.co/ZrMXiPwjEu +06/20/2018,Politicians,@NancyPelosi,"RT @RepJohnYarmuth: Today @HouseBudgetGOP are considering their “Budget for a Brighter American Future,” which makes extreme cuts to Medica…" +06/19/2018,Politicians,@NancyPelosi,"Wishing everyone a very happy #Juneteenth2018! While there remains so much we must do, today is a special opportuni… https://t.co/Q4xr7SpVMj" +06/19/2018,Politicians,@NancyPelosi,"All Americans must ask, why do Republicans believe that vulnerable immigrant children do not deserve the same basic… https://t.co/VmXmBmtn8D" +06/19/2018,Politicians,@NancyPelosi,"The atrocity of family separation is not about immigration policy – it is about humanity, morality and who we are a… https://t.co/dY53BJY4fR" +06/19/2018,Politicians,@NancyPelosi,Every day that Congressional Republicans allow @realDonaldTrump to continue ripping children from their parents at… https://t.co/EHUpd3N47g +06/19/2018,Politicians,@NancyPelosi,"RT @RepCummings: We all should be able to agree that in the United States of America, we will not intentionally separate children from thei…" +06/19/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: Separating migrant children from their parents is cruel, inhumane, & morally bankrupt. + +#FamiliesBelongTogether, and @RealD…" +06/19/2018,Politicians,@NancyPelosi,RT @RepAlLawsonJr: The practice of separating children from parents as a deterrent to seeking asylum is inhumane. Seeking asylum is not ill… +06/19/2018,Politicians,@NancyPelosi,Stop using the suffering of these little children as some barbaric bargaining chip. You started this and can end it… https://t.co/wN1Lauecbi +06/19/2018,Politicians,@NancyPelosi,RT @RepJuanVargas: .@SecNielsen is giving America a false choice. Protecting our borders doesn’t mean tearing apart families – and we have… +06/18/2018,Politicians,@NancyPelosi,".@SecNielsen must resign. This is not an immigration issue, it is a humanitarian issue. Children are being used by… https://t.co/fdCWX3thuH" +06/18/2018,Politicians,@NancyPelosi,#FamiliesBelongTogether is not an immigration issue – it is a *humanitarian* issue. And we must do more to end the… https://t.co/w8oMkymWU3 +06/18/2018,Politicians,@NancyPelosi,"He may not want to admit it, but the President could end his family separation policy & #KeepFamiliesTogether right… https://t.co/Pthgg4pKrq" +06/18/2018,Politicians,@NancyPelosi,Tune in here at 3 pm ET as my colleagues & I speak after visiting a detention facility for children ripped apart fr… https://t.co/3YPzMH27kU +06/18/2018,Politicians,@NancyPelosi,"RT @RepCheri: Hey @realDonaldTrump - Remember how you won my Congressional District in 2016? Well, since Friday, 96% of the calls and email…" +06/18/2018,Politicians,@NancyPelosi,Ripping little children away from their parents is an utter atrocity that violates our asylum laws. The blame for e… https://t.co/3Nyn7Yt78c +06/17/2018,Politicians,@NancyPelosi,Wishing every father a wonderful day full of time with family & loved ones! #FathersDay https://t.co/fPlTkllJXU +06/17/2018,Politicians,@NancyPelosi,"Kathy Kraninger, Trump’s nominee to lead the @CFPB, has an opportunity to be a champion for consumers & not the fin… https://t.co/7EWcy3w9SS" +06/17/2018,Politicians,@NancyPelosi,3 yrs after nine parishioners were gunned down in a staggering and tragic act of hate at Charleston's Mother Emanue… https://t.co/tn78UDZQrc +06/16/2018,Politicians,@NancyPelosi,"RT @FrankPallone: If Republican attacks on protections for people with pre-existing conditions succeed, millions of women, older Americans,…" +06/15/2018,Politicians,@NancyPelosi,"In this week’s Democratic address, @FrankPallone discusses Republicans’ ongoing attacks on Americans’ health care. https://t.co/Lj31jqUYlN" +06/15/2018,Politicians,@NancyPelosi,Six years after President Obama honored our proud history as a nation of immigrants establishing DACA protections f… https://t.co/YVMdBEoqB4 +06/15/2018,Politicians,@NancyPelosi,The @HouseGOP immigration proposal is simply unworthy of America. The fact that the President himself won’t sign it… https://t.co/h7IXZXmxuh +06/14/2018,Politicians,@NancyPelosi,One thing is clear to anyone reading the new @HouseGOP immigration bill: It is nothing more than a cruel codificati… https://t.co/IktvyMlage +06/14/2018,Politicians,@NancyPelosi,.@SenSchumer & I will discuss the release of the DOJ Inspector General’s report on activities leading up to the 201… https://t.co/xXjmfWJFPC +06/14/2018,Politicians,@NancyPelosi,"Over the last year, Democrats have rolled out a collection of proposals to help American families achieve the bette… https://t.co/OSK3GAVcxq" +06/14/2018,Politicians,@NancyPelosi,"Every time you hear @SpeakerRyan say he wants to find a legislative solution to something, what you are really hear… https://t.co/UQ9kFqgyCs" +06/14/2018,Politicians,@NancyPelosi,The #GOPTaxScam for the rich paved the way for Republicans’ current assault on protections for the over 130 million… https://t.co/SMBSzhyeZt +06/14/2018,Politicians,@NancyPelosi,Tune in as I speak with reporters live from the Capitol 👇 https://t.co/hnevp8HO8r +06/14/2018,Politicians,@NancyPelosi,I will be speaking with reporters live from Capitol Hill at 10:45 am ET. You can watch here: https://t.co/udkZmyV7gX +06/14/2018,Politicians,@NancyPelosi,"RT @RepCummings: The @HouseGOP has spent millions investigating Clinton, yet they refuse to compel the Trump Administration to turn over do…" +06/13/2018,Politicians,@NancyPelosi,This barbaric policy must be immediately reversed. #FamiliesBelongTogether https://t.co/dFrC06RpWY +06/13/2018,Politicians,@NancyPelosi,Over 130 million Americans live with a pre-existing condition. They deserve stability — and yet Republicans are onc… https://t.co/U0Le9IiX8v +06/13/2018,Politicians,@NancyPelosi,Democrats are fighting back against the renewed GOP assault on protections for Americans with pre-existing conditio… https://t.co/difAZG53wW +06/13/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: Over 130 MILLION Americans with pre-existing conditions are protected under the ACA. Last week, the Trump Administration ann…" +06/13/2018,Politicians,@NancyPelosi,Protecting #Dreamers stands on its own merits. If Republicans plan to use Dreamers as a way to advance… https://t.co/DlYxUhh04J +06/13/2018,Politicians,@NancyPelosi,The Trump DOJ’s efforts to gut protections for Americans with pre-existing conditions follow in the footsteps of th… https://t.co/Ga7a5FTUSz +06/12/2018,Politicians,@NancyPelosi,".@Warriors & @SteveKerr, you have once again dazzled America with outstanding performance on the court & inspired l… https://t.co/qWZPABD7S6" +06/12/2018,Politicians,@NancyPelosi,Wishing a very Happy Birthday to President George H.W. Bush! https://t.co/dNh6E0OaCg +06/12/2018,Politicians,@NancyPelosi,"We must never forget the 49 beautiful souls who lost their lives two years ago at #Pulse Nightclub, when a night of… https://t.co/IJ8QCkvrBL" +06/12/2018,Politicians,@NancyPelosi,"In his haste to reach an agreement, @realDonaldTrump elevated North Korea to the level of the United States while p… https://t.co/hnQciVJvA2" +06/12/2018,Politicians,@NancyPelosi,"RT @RepValDemings: Two years after #Pulse, I know that love will win. We will transform our sorrow into love and progress. We will grieve,…" +06/12/2018,Politicians,@NancyPelosi,Paul & I are thinking of ⁦@larry_kudlow⁩. We are confident he is in good hands at Walter Reed Medical Center & wish him a speedy recovery. +06/11/2018,Politicians,@NancyPelosi,"We all want to see diplomacy succeed w/ North Korea. However, a deal that preserves the status quo & trades away ab… https://t.co/NZrF1V0UWR" +06/11/2018,Politicians,@NancyPelosi,The Trump Administration’s inhumanity and heartlessness know no bounds. https://t.co/Be16n4flUV https://t.co/qqPUkxph1Z +06/11/2018,Politicians,@NancyPelosi,Just secured Army Corps New Start funding with @SFPort to investigate options to protect the SF Embarcadero Seawall… https://t.co/salm0Mc8IO +06/11/2018,Politicians,@NancyPelosi,"Despite the repeal of #NetNeutrality, we will not stop in our efforts to protect consumers & #SaveTheInternet. A fr… https://t.co/PLr57vKS9b" +06/11/2018,Politicians,@NancyPelosi,"RT @NancyPelosi: Today marks the repeal of #NetNeutrality protections, as the Trump FCC’s rule change takes effect. You deserve better than…" +06/11/2018,Politicians,@NancyPelosi,"RT @EnergyCommerce: Today, the @FCC’s repeal of #NetNeutrality goes into effect, but the fight for a free and open internet continues in th…" +06/11/2018,Politicians,@NancyPelosi,"RT @FrankPallone: #NetNeutrality means consumers — not big corporations— choose what websites and applications we see online. Today, the @F…" +06/11/2018,Politicians,@NancyPelosi,"By upholding Ohio’s voter registration purge policy, the Supreme Court has paved the way for efforts to deprive Ame… https://t.co/vhvOpyjXpv" +06/11/2018,Politicians,@NancyPelosi,Republicans continue their fight to take health care away by arguing that protecting people with pre-existing condi… https://t.co/k27hG9HvyG +06/11/2018,Politicians,@NancyPelosi,"Today marks the repeal of #NetNeutrality protections, as the Trump FCC’s rule change takes effect. You deserve bett… https://t.co/Pxz1sWNoNi" +06/10/2018,Politicians,@NancyPelosi,"55 years after President Kennedy signed the #EqualPayAct, women still earn on average only 80 cents for every dolla… https://t.co/6kW9oTaipO" +06/09/2018,Politicians,@NancyPelosi,This week started with @realDonaldTrump boosting a Chinese company identified as a national security threat to the… https://t.co/r70oATOrXJ +06/09/2018,Politicians,@NancyPelosi,Proud of our @warriors both on & off the court. Can’t think of a better team to have won — and a sweep too!!! 🏀… https://t.co/x8zW6ycFrE +06/09/2018,Politicians,@NancyPelosi,RT @RepBarbaraLee: I’m showing my #DubNation pride today! Fingers crossed for a sweep! 🤞🏾🤞🏾#NBAFinals https://t.co/O7eiEd2orc +06/08/2018,Politicians,@NancyPelosi,"RT @RepLoisFrankel: Last year, @HouseGOP voted to rip protections away from millions of Americans with pre-existing conditions. Now, the Tr…" +06/08/2018,Politicians,@NancyPelosi,Our government should be fighting to PROTECT Americans from discrimination – not make it easier. #ProtectOurCare https://t.co/bpxxUdFX6N +06/08/2018,Politicians,@NancyPelosi,RT @RepDWStweets: The Affordable Care Act reduced the number of Americans without health insurance to record lows. Trump's sabotage of the… +06/08/2018,Politicians,@NancyPelosi,RT @RepBobbyRush: President Trump has been playing politics with Americans’ health care since the beginning of his Administration and this… +06/08/2018,Politicians,@NancyPelosi,"RT @FrankPallone: Apparently, Republicans in Washington will stop at nothing to destroy the health coverage of people with pre-existing con…" +06/08/2018,Politicians,@NancyPelosi,RT @DonaldNorcross: The Trump Administration is coming after protections for Americans with pre-existing conditions. Again. Shameful. https… +06/08/2018,Politicians,@NancyPelosi,RT @RepWilson: The Trump Admin is coming after protections for Americans with pre-existing conditions. Again. #ProtectOurCare https://t.co/… +06/08/2018,Politicians,@NancyPelosi,"Last night, we got some truly disgusting news: the Trump Administration is continuing the @HouseGOP’s efforts to ri… https://t.co/jdxS5BETcM" +06/08/2018,Politicians,@NancyPelosi,The losses of Anthony Bourdain & Kate Spade are leading many people to reflect. We never truly know what is happeni… https://t.co/8GSfqa9Oiz +06/08/2018,Politicians,@NancyPelosi,"Six months ago, America’s families were told their interests were at the heart of the #GOPTaxScam. + +Today, Big Oil… https://t.co/Agn2hiFCeQ" +06/08/2018,Politicians,@NancyPelosi,"Tonight, the Trump Admin took its cynical sabotage campaign of Americans’ health care to a stunning new low, perpet… https://t.co/FpEtqQWSSo" +06/07/2018,Politicians,@NancyPelosi,"53 years after the Supreme Court’s ruling in #GriswoldvCT, access to birth control is under attack from Republicans… https://t.co/sPJpyYQQJE" +06/07/2018,Politicians,@NancyPelosi,"China is eating our lunch, and President Trump is serving it to them. https://t.co/IaPGxJVBgA https://t.co/q9QsuX8sxa" +06/07/2018,Politicians,@NancyPelosi,#EqualPay means greater economic security for American families. It’s time to pass the #PaycheckFairnessAct! +06/07/2018,Politicians,@NancyPelosi,RT @rosadelauro: Children are being separated from their parents at the border because of @realdonaldtrump’s zero-tolerance policy. This is… +06/07/2018,Politicians,@NancyPelosi,One clear sign the #GOPTaxScam is leaving working families behind? Big Oil & Gas are cashing in – but American fami… https://t.co/fS2UulN7qZ +06/07/2018,Politicians,@NancyPelosi,I’m speaking live with reporters at the Capitol. https://t.co/IE8XbmpXyV +06/07/2018,Politicians,@NancyPelosi,Tune in as I speak with reporters live at the Capitol at 10:45 am ET. https://t.co/a2RNZlVNrS +06/07/2018,Politicians,@NancyPelosi,"RT @NydiaVelazquez: Last week, we learned that thousands more Americans died in #HurricaneMaria than previously acknowledged by the Trump A…" +06/07/2018,Politicians,@NancyPelosi,"“The building of a nation united not on every issue, but in the enduring faith that we are to be free – that we are… https://t.co/PPakNCIvnN" +06/06/2018,Politicians,@NancyPelosi,"RT @RulesDemocrats: If you're frustrated by inaction in Congress, you have the #MostClosedCongress in American history to blame. @HouseGOP…" +06/06/2018,Politicians,@NancyPelosi,Statements like this mean nothing if the @HouseGOP & @SenateGOP refuse to take concrete action in response to… https://t.co/EsTj1Zjurj +06/06/2018,Politicians,@NancyPelosi,RT @RepTedLieu: .@POTUS’s expectations haven’t often met reality during his first 500 days in office. The #GOPTaxScam is a prime example of… +06/05/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s legal team has made clear they are seeking access to classified materials not for any legitimat… https://t.co/UlUhXwkCm6 +06/05/2018,Politicians,@NancyPelosi,".@realDonaldTrump & @HouseGOP think investing in good-paying jobs, children’s health and child care, veterans and e… https://t.co/54NB1Bfsp8" +06/05/2018,Politicians,@NancyPelosi,"This is the result of trade policies that ignore farmers, producers, ranchers & growers. This new development under… https://t.co/AhjULIDBF9" +06/05/2018,Politicians,@NancyPelosi,"Voting is the foundation of our democracy. On Election Day, as voters head to the polls across California, you can… https://t.co/U6USxxX0CT" +06/05/2018,Politicians,@NancyPelosi,RT @RepJerryNadler: President Trump seems to be under the impression that he is the embodiment of the Department of Justice and that he is… +06/05/2018,Politicians,@NancyPelosi,It was a privilege to join @RepEliotEngel to tour the @RiverSpringHlth campus in his district today & visit with re… https://t.co/wperhR3BSR +06/04/2018,Politicians,@NancyPelosi,"Congratulations to Wang Dan & partners on the creation of the new think tank “Dialogue China” today, the 29th anniv… https://t.co/FDfWNV3vtW" +06/04/2018,Politicians,@NancyPelosi,"Our Founders created a government of, by, and for the people. @realDonaldTrump is not a king. We will not let him w… https://t.co/5Gv0kqo39s" +06/04/2018,Politicians,@NancyPelosi,The right to be free from persecution & discrimination because of who they are or whom they love is the most fundam… https://t.co/bPFIagqGzl +06/02/2018,Politicians,@NancyPelosi,RT @RepSarbanes: Democrats are listening to Americans from across the country who are tired of getting a raw deal from Washington. Read mor… +06/01/2018,Politicians,@NancyPelosi,"During my visit to Chicago today, I couldn’t help but think about Hadiya Pendleton, whose death in 2013 inspired… https://t.co/fqu2Z2e8bN" +06/01/2018,Politicians,@NancyPelosi,#ABetterDeal for Our Democracy is an ambitious plan to get rid of corruption in Washington & put power back in the… https://t.co/IdAfu1329Q +06/01/2018,Politicians,@NancyPelosi,"RT @RepRoybalAllard: As Trump keeps tearing babies from their immigrant mothers, let us stand against this cruelty & affirm that #FamiliesB…" +06/01/2018,Politicians,@NancyPelosi,Harming children – and separating children from their families is harmful – should not be used to deter people from… https://t.co/m99bedH8hs +06/01/2018,Politicians,@NancyPelosi,All Americans should be disgusted by the Trump Administration’s policy of separating mothers & father from their ch… https://t.co/Wc0KMXjt0P +06/01/2018,Politicians,@NancyPelosi,"49 years after #LGBTQ Americans demanded change on the streets outside the Stonewall Inn, we are recommitting to pr… https://t.co/IMjNrMglmA" +06/01/2018,Politicians,@NancyPelosi,"RT @RepEspaillat: Separating children from parents as a deterrent to seeking asylum is inhumane & cruel. Seeking asylum is not illegal, in…" +06/01/2018,Politicians,@NancyPelosi,"Jose presented himself to immigration officers at the border, along with his 1-yr-old son, to seek asylum from viol… https://t.co/vYvUpjhQx5" +06/01/2018,Politicians,@NancyPelosi,.@realDonaldTrump can’t hide the fact that his @DHSgov started the shameful policy that separates children from imm… https://t.co/QkEBFWvIxs +06/01/2018,Politicians,@NancyPelosi,The #JobsReport shows that strong employment numbers mean little to the families hit with soaring new costs under t… https://t.co/XrJMoxJcHj +05/31/2018,Politicians,@NancyPelosi,"-Empower American voters +-Strengthen ethics laws +-Fix campaign finance +Read our plan to make it happen. #ABetterDeal https://t.co/Qjg4AVpNxH" +05/30/2018,Politicians,@NancyPelosi,There are concrete ways we can fight gun violence: strengthening background checks (backed by vast majority of gun… https://t.co/S3jYVTRImh +05/30/2018,Politicians,@NancyPelosi,Mothers are the cornerstones of our communities. We need to make sure they get the #EqualPay they (& their families… https://t.co/lqGjaMVXsE +05/30/2018,Politicians,@NancyPelosi,"Wishing President George Herbert Walker Bush well, hoping that he can return home soon, and sending him love & than… https://t.co/bMmPZmSIYN" +05/29/2018,Politicians,@NancyPelosi,Read my full statement here: https://t.co/nvjaEPtyud https://t.co/XMBhY7NgvD +05/29/2018,Politicians,@NancyPelosi,We must also support efforts led by @NydiaVelazquez to investigate the alarming discrepancy between this report & t… https://t.co/Jn9h5Y3AOT +05/29/2018,Politicians,@NancyPelosi,"8 months after the Trump Admin’s stunningly weak response, far too many of our fellow Americans in #PuertoRico lack… https://t.co/vwQfnuSG92" +05/29/2018,Politicians,@NancyPelosi,"A shocking new study has found that 4,645 people lost their lives in #PuertoRico as a result of Hurricane Maria, fa… https://t.co/O6Apob9yvS" +05/29/2018,Politicians,@NancyPelosi,"On what would have been his 101st birthday, we continue to be inspired by the service & vision for a better future… https://t.co/lwSicI5NRm" +05/29/2018,Politicians,@NancyPelosi,Proud of our @warriors! What an incredible series. Onwards to the #NBAFinals. #DubNation https://t.co/o6FM9qgphy +05/28/2018,Politicians,@NancyPelosi,That’s not what today is for. https://t.co/qEhKNQQOUF +05/28/2018,Politicians,@NancyPelosi,Our Armed Forces are made up of people from all walks of life – and so are those who gave the ultimate sacrifice. N… https://t.co/XtTWHcgZ34 +05/28/2018,Politicians,@NancyPelosi,"This #MemorialDay, we take time to remember those who gave so much for our freedoms. We must honor their sacrifice… https://t.co/eJJQDXe772" +05/28/2018,Politicians,@NancyPelosi,Paid a visit to San Francisco National Cemetery at @PresidioSF this weekend to honor our fallen men & women in unif… https://t.co/i6CL25ECwV +05/25/2018,Politicians,@NancyPelosi,The American people deserve better than a President who is eager to sell out the American people & our national sec… https://t.co/9BtsHu8GgQ +05/25/2018,Politicians,@NancyPelosi,"Trump pledged to fight for Americans, but he's now using U.S. government resources to enrich ZTE (a foreign company… https://t.co/5ku96LGPcm" +05/25/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s ZTE deal is a staggering betrayal of the American people. +05/25/2018,Politicians,@NancyPelosi,No victim of discrimination or harassment on Capitol Hill should be silenced. Now that the Senate has passed their… https://t.co/Cd7JwE6k1A +05/25/2018,Politicians,@NancyPelosi,"Our budget should reflect our values – but as countless people in Congo face a deadly Ebola outbreak, Republicans i… https://t.co/FwbMALB21j" +05/25/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: What @RealDonaldTrump & @SpeakerRyan told working Americans: the #GOPTaxScam would create jobs here. + +What actually happene…" +05/24/2018,Politicians,@NancyPelosi,"Read my full joint statement with @SenSchumer, @RepAdamSchiff, & Senator @MarkWarner: https://t.co/FfPcGEpKrb" +05/24/2018,Politicians,@NancyPelosi,Today's Gang of Eight briefing was conducted in a manner that protects sources & methods. Nothing we heard today ha… https://t.co/WVvoRnyV2h +05/24/2018,Politicians,@NancyPelosi,"By choosing not to attend the Gang of 8 meeting today, @SpeakerRyan has abdicated his responsibility to the House & the American people." +05/24/2018,Politicians,@NancyPelosi,Congress can’t stand by & let Americans believe their voices do not matter. That’s why it is so crucial that we giv… https://t.co/B1ZlujSKnW +05/24/2018,Politicians,@NancyPelosi,Lots to discuss during today’s weekly press conference. Watch here 👇 https://t.co/KRlgA9vfDs +05/24/2018,Politicians,@NancyPelosi,"I will speak live with reporters in just under an hour. #ABetterDeal + +You can tune in here: https://t.co/Gk76u8FUuy" +05/24/2018,Politicians,@NancyPelosi,"There is a simple idea at the core of Democrats’ #ABetterDeal: that together, we can build a better future for all… https://t.co/YOLgjIDQHw" +05/24/2018,Politicians,@NancyPelosi,"Like many things President Trump has promised in the past, it seems his commitments on prescription drugs are… less… https://t.co/x6BOnQh8C6" +05/24/2018,Politicians,@NancyPelosi,"We know what we need to do to stabilize the health insurance markets. Instead, the Administration prefers to focus… https://t.co/0kYAHxn15g" +05/24/2018,Politicians,@NancyPelosi,The #GOPTaxScam prioritized the wealthiest & big corporations. That’s just a fact. The question we need to ask is:… https://t.co/Xo1qCiMQnR +06/28/2018,Politicians,@SenateMajLdr,The far-left special interest groups are already calling on Senate Democrats to oppose anyone on President Trump’s… https://t.co/KoRaqoNK0w +06/28/2018,Politicians,@SenateMajLdr,"American farm communities need stability and predictability, and they need it urgently. The time has come to delive… https://t.co/kHMP4Qcy2l" +06/28/2018,Politicians,@SenateMajLdr,"All week, I’ve highlighted some of the ways the farm bill will support the family farmers whose harvest feeds Ameri… https://t.co/geu51q9sAa" +06/28/2018,Politicians,@SenateMajLdr,I’m confident Chairman Grassley will capably lead the Judiciary Committee through the confirmation process that lies before us. +06/28/2018,Politicians,@SenateMajLdr,"As I stated yesterday, the Senate stands ready to fulfill our constitutional role by offering advice and consent on… https://t.co/tAzFZWucYN" +06/28/2018,Politicians,@SenateMajLdr,"If you pick up a local paper in almost any state from Montana to Florida, you’ll find that Americans are paying les… https://t.co/IEGFRUbH49" +06/28/2018,Politicians,@SenateMajLdr,"Despite warnings from our Democratic colleagues that tax reform savings would never reach consumers, utilities acro… https://t.co/N7szxMyYdi" +06/27/2018,Politicians,@SenateMajLdr,Let’s address farmers’ immediate needs. Let’s give them new tools to help secure their future. The farm bill before… https://t.co/Ye2lpZBRXc +06/27/2018,Politicians,@SenateMajLdr,"Today, it was my privilege to welcome an Honor Flight of Kentucky veterans to Washington. On behalf of the Commonwe… https://t.co/qbgHLLiDaB" +06/27/2018,Politicians,@SenateMajLdr,My full remarks: https://t.co/PUiahqy0Ej +06/27/2018,Politicians,@SenateMajLdr,The Senate stands ready to fulfill its constitutional role by offering advice and consent on @POTUS… https://t.co/yIzNwUK9oD +06/27/2018,Politicians,@SenateMajLdr,I want to express gratitude for the extraordinary service that Justice Kennedy has offered our nation. We owe him a… https://t.co/2Zuw87LYhb +06/27/2018,Politicians,@SenateMajLdr,The success of tax reform might come as a surprise to the Democrats who opposed it at every turn. But it certainly… https://t.co/i8rAwBRWiA +06/27/2018,Politicians,@SenateMajLdr,We’ve seen that tax reform is well-suited to the needs of young Americans on the first rungs of the economic ladder… https://t.co/jMrWt6Ruag +06/27/2018,Politicians,@SenateMajLdr,"In six short months, we’ve seen that tax reform is well-suited to the needs of the millions of American workers who… https://t.co/W69Lky1RXL" +06/27/2018,Politicians,@SenateMajLdr,"In December, the Democratic Leader said on the Senate floor that there’s nothing about tax reform that’s “suited to… https://t.co/gPuf4ZPasJ" +06/26/2018,Politicians,@SenateMajLdr,"From top to bottom, this farm bill takes serious steps to ensure the future of American agriculture -- for the sake… https://t.co/1BjHhAp0ag" +06/26/2018,Politicians,@SenateMajLdr,"Farm families across America face uncertainty: Natural disasters, from droughts to floods, volatile world markets,… https://t.co/wjY8OLb2jd" +06/26/2018,Politicians,@SenateMajLdr,"As the proud senior senator from Kentucky, I know how important the farm bill is to agricultural communities in my… https://t.co/huLzaMVNW4" +06/26/2018,Politicians,@SenateMajLdr,"Today, First Lieutenant Garlin Murl Conner of Kentucky is being posthumously awarded the Medal of Honor. He embodie… https://t.co/6i9y2CoFL0" +06/26/2018,Politicians,@SenateMajLdr,My Democratic colleagues are arguing with the facts. They’re arguing with the data. They’re arguing with American f… https://t.co/x17BMHNjY7 +06/26/2018,Politicians,@SenateMajLdr,Democrats may want to put Washington’s foot back on the brake by repealing tax reform and piling up more regulation… https://t.co/Ecfd7kWXpe +06/21/2018,Politicians,@SenateMajLdr,I was deeply saddened to learn of the passing of my friend Charles Krauthammer this afternoon. https://t.co/ixVOBSYBF9 +06/21/2018,Politicians,@SenateMajLdr,"And thanks to the leadership of our colleagues at the subcommittee level, more bills will be on their way to the fl… https://t.co/xfEQSF9Jja" +06/21/2018,Politicians,@SenateMajLdr,"This week, we’ve been considering a regular-order appropriations package and voting on amendments. Thanks to Chairm… https://t.co/drUtdCNK8G" +06/21/2018,Politicians,@SenateMajLdr,"Six months later, here’s a remarkable fact: There are now more job openings all across this country than there are… https://t.co/ZNnLzjpoe5" +06/21/2018,Politicians,@SenateMajLdr,"Republicans wanted working families to keep more of what they earn and send less to the IRS. Meanwhile, the Democra… https://t.co/WpzYnsosqp" +06/21/2018,Politicians,@SenateMajLdr,Yesterday marked six months since Congress passed our overhaul of America’s tax code. I remember debating the Tax C… https://t.co/eTqVQGJSrP +06/20/2018,Politicians,@SenateMajLdr,My statement on @POTUS’ immigration executive order >> https://t.co/biDd3gTpbM +06/20/2018,Politicians,@SenateMajLdr,"Today marks six months since the Tax Cuts and Jobs Act passed Congress. Already, it’s led employers to issue ‘tax r… https://t.co/fztW3wpcl9" +06/20/2018,Politicians,@SenateMajLdr,"Today, I met with Kathy Kraninger, @POTUS’ nominee to direct the @CFPB. Her resume and reputation suggest she’s wel… https://t.co/rXMVS0X4XD" +06/19/2018,Politicians,@SenateMajLdr,"I support, and all of the members of the Republican Conference support, a plan that keeps families together while t… https://t.co/03Jiham7rO" +06/19/2018,Politicians,@SenateMajLdr,"Led by Chairman @SenShelby, Ranking Member @SenatorLeahy, and all the subcommittee leadership, the Appropriations c… https://t.co/PUjUd4gqln" +06/19/2018,Politicians,@SenateMajLdr,"The spending agreement reached earlier this year achieved a great deal, but the process wasn’t anybody’s best-case… https://t.co/gJh7R68Zje" +06/14/2018,Politicians,@SenateMajLdr,"One year ago, the nation watched and prayed as violence struck a congressional baseball practice. Later today, that… https://t.co/XM86nXuaPr" +06/14/2018,Politicians,@SenateMajLdr,RT @SenateGOP: Courage. Sacrifice. Determination. Unity. These are the things that endure one year later. Let’s play ball. #CongressionalBa… +06/14/2018,Politicians,@SenateMajLdr,"Fortunately, the facts are the facts. Americans know success when they see it. And Republicans will keep fighting t… https://t.co/q1lshSSd9V" +06/14/2018,Politicians,@SenateMajLdr,There are more job openings than Americans looking for work for the first time in at least 20 years. But Democrats… https://t.co/mPwupYkvv5 +06/14/2018,Politicians,@SenateMajLdr,"In #Kentucky, agriculture is part of who we are. Our farm families produce everything from poultry to soybeans. The… https://t.co/b4AyeCBNRv" +06/14/2018,Politicians,@SenateMajLdr,"Today, on the 243rd birthday of the @USArmy, I’m glad we're voting to continue advancing this critical legislation… https://t.co/smXq9mPnLU" +06/14/2018,Politicians,@SenateMajLdr,"The Armed Services Committee considered and included 300 amendments in the defense bill. On the floor, Chmn… https://t.co/35bjzg5hDB" +06/13/2018,Politicians,@SenateMajLdr,"For months, Secretary Mattis and our military leaders have detailed our servicemembers’ most pressing needs and exp… https://t.co/4pwtGZHy3v" +06/13/2018,Politicians,@SenateMajLdr,On one side of the aisle are those who mock the good economic news -- those who can’t grasp why an 18-year low in u… https://t.co/mGJKiQTxYj +06/13/2018,Politicians,@SenateMajLdr,"Unemployment is lower today than at any time since 2000. Last week, the House Democratic leader responded: “Hip-hip… https://t.co/WlLEvw3MSe" +06/13/2018,Politicians,@SenateMajLdr,I’d like to thank the Chairman & @SenStabenow for working w/ me to include my #HempFarmingAct in the bill. It build… https://t.co/Ex8ZMR32kf +06/13/2018,Politicians,@SenateMajLdr,"This morning, I’m joining my colleagues on the Agriculture Committee to mark up the farm bill. It’s an impressive p… https://t.co/abCz3uH7ct" +06/12/2018,Politicians,@SenateMajLdr,I want to share the Senate’s warmest wishes for a speedy recovery with Larry Kudlow. Larry's a happy warrior for pr… https://t.co/yqpFL4qmSj +06/12/2018,Politicians,@SenateMajLdr,"Just hours ago, the American delegation concluded their summit meeting with North Korean officials. I congratulate… https://t.co/ld4WCFolqN" +06/12/2018,Politicians,@SenateMajLdr,I just got off the phone with my friend @SenatorDole. I was grateful to catch up and thank him for his many years o… https://t.co/Cx0SOzZgFq +06/11/2018,Politicians,@SenateMajLdr,It’s one of our most important jobs here in Congress. The 2019 defense authorization is the top item on our to-do l… https://t.co/RcBuddBvpy +06/11/2018,Politicians,@SenateMajLdr,"Congress has passed defense authorization acts for 57 consecutive years. In doing so, we’ve taken steps to fulfill… https://t.co/XE3PDmDYXz" +06/11/2018,Politicians,@SenateMajLdr,This is part of what we were elected to do: Get Washington D.C.’s foot off the brake. Let hard-working Americans an… https://t.co/BdZw5rgPqk +06/11/2018,Politicians,@SenateMajLdr,"In 2016, under President Obama, the Federal Register printed nearly 39,000 pages of rules (an all-time high) and an… https://t.co/heSNArJj6l" +06/08/2018,Politicians,@SenateMajLdr,"For the past forty years, my dear friend Charles Krauthammer has brought a piercing intellect, a sharp wit, and a d… https://t.co/uoVkM65WaG" +06/08/2018,Politicians,@SenateMajLdr,I'm about to join my friends at the @FaithandFreedom Road To Majority conference to discuss how we’re turning conse… https://t.co/Lm7Soej7I5 +06/07/2018,Politicians,@SenateMajLdr,"- Lowest unemployment in 18 yrs. +- More open positions than workers seeking jobs for 1st time on record. +- Optimi… https://t.co/LqFP8iiry4" +06/07/2018,Politicians,@SenateMajLdr,"Sixteen months ago, @POTUS Trump & GOP majorities arrived in Washington w/ simple instructions from the American pe… https://t.co/HC6JuN07rA" +06/07/2018,Politicians,@SenateMajLdr,"Today, our economy is starting to work better for all kinds of communities. Just look at Ohio >> https://t.co/tTaW3doQkK" +06/07/2018,Politicians,@SenateMajLdr,The defense bill will support military posts that form the backbone of local communities and advance our National D… https://t.co/UHwbLjbbbj +06/06/2018,Politicians,@SenateMajLdr,Tune in tonight for my interview on @FoxNews with @IngrahamAngle at 10 PM ET https://t.co/lQrBKrdT80 +06/06/2018,Politicians,@SenateMajLdr,This isn’t due diligence. It isn’t good government. It’s what happens when our colleagues across the aisle put poli… https://t.co/JCh0Jk5B4j +06/06/2018,Politicians,@SenateMajLdr,Not a single Senator voted against confirming Robert Wier or Fernando Rodriguez to serve as district judges yesterd… https://t.co/FHjVRxpBBv +06/06/2018,Politicians,@SenateMajLdr,"Cloture votes used to be a rare tool of last resort, only used in a tiny handful of cases. Not these days. In many… https://t.co/EWru4PZn5S" +06/06/2018,Politicians,@SenateMajLdr,"This morning, I was honored to meet a number of #Kentucky veterans at the World War II Memorial and welcome them to… https://t.co/acKzya8QNv" +06/06/2018,Politicians,@SenateMajLdr,"As the #Senate works to give America’s armed forces the resources they need to keep us safe, I’m proud that @POTUS… https://t.co/Idyk09ZdJj" +06/06/2018,Politicians,@SenateMajLdr,"The John S. McCain 2019 National Defense Authorization Act is the result of months of serious, bipartisan work by t… https://t.co/rJmFD2NQL9" +06/06/2018,Politicians,@SenateMajLdr,"On June 6th, 1944, the free world embarked on a daring mission of historic proportions. With conviction and bravery… https://t.co/HlSZigB2ri" +06/05/2018,Politicians,@SenateMajLdr,RT @RoyBlunt: It’s full steam ahead for our economy https://t.co/HfIVO2THyJ +06/05/2018,Politicians,@SenateMajLdr,"The #Senate has been attacking the #opioid crisis from all angles, but major challenges are rarely solved in Washin… https://t.co/sAHedZsDaL" +06/05/2018,Politicians,@SenateMajLdr,Senate Democrats have already forced 100 cloture votes on President Trump’s nominees in his first two years vs. 24… https://t.co/1FKOBGnVIe +06/05/2018,Politicians,@SenateMajLdr,My statement on cancelling the August recess: https://t.co/yyAEUSMVQW +06/05/2018,Politicians,@SenateMajLdr,"Today, the #Senate confirmed Robert Wier to serve on the Eastern District Court of #Kentucky by a vote of 95-0. Des… https://t.co/28hSXp9Wr5" +06/05/2018,Politicians,@SenateMajLdr,The bipartisan work of the Armed Services Committee has produced a strong NDAA. This legislation sends a clear mess… https://t.co/WBTFIsdt4a +06/05/2018,Politicians,@SenateMajLdr,"After years of spending caps harming the readiness of our military, Congress passed a two-year agreement that inclu… https://t.co/lh7p8COayS" +05/28/2018,Politicians,@SenateMajLdr,"Today, we pause as one people to remember the brave men and women who paid the ultimate price defending our nation… https://t.co/O3hb8djtiT" +05/25/2018,Politicians,@SenateMajLdr,This great nation wouldn’t exist without the heroism and sacrifice of those we honor on Memorial Day. https://t.co/ca0rLTtisH +05/25/2018,Politicians,@SenateMajLdr,The record of this Congress is quite spectacular. It’s been a period of extraordinary accomplishment on behalf of t… https://t.co/5hcMXJ0usq +05/24/2018,Politicians,@SenateMajLdr,Always great to sit down with @BretBaier. Tune in for our conversation this evening on @SpecialReport @FoxNews. +05/24/2018,Politicians,@SenateMajLdr,Joint statement w/@SenSchumer on today’s passage of @SenAmyKlobuchar and @RoyBlunt’s proposal to update how Congres… https://t.co/3Lod4AVea1 +05/24/2018,Politicians,@SenateMajLdr,"One bill after another, one confirmation after another, the Senate is producing accomplishments that will directly… https://t.co/yHmqW6w3u0" +05/24/2018,Politicians,@SenateMajLdr,"The #Senate is having a productive week: +-Passed VA MISSION Act to keep our promise to our vets +-Confirming more o… https://t.co/DPcglUsdzX" +05/24/2018,Politicians,@SenateMajLdr,"This morning, @POTUS signed a law that will help middle-class families/small businesses access credit. It was the p… https://t.co/StxA1LyQlJ" +05/23/2018,Politicians,@SenateMajLdr,"Today, the #Senate passed the VA MISSION Act to help vets access the care they need, when and where they need it. I… https://t.co/9YvJanWJDR" +05/23/2018,Politicians,@SenateMajLdr,"Veterans of all eras rely on the promise of accessible, quality care when they return home. But too often, the VA h… https://t.co/p6KL9khZKV" +05/23/2018,Politicians,@SenateMajLdr,"Local lenders and the communities that depend on them needed relief from the inefficient, imprecise, one-size-fits-… https://t.co/9H4LuBsjUU" +05/23/2018,Politicians,@SenateMajLdr,"Workplace harassment is unacceptable anywhere – end of story. With @SenAmyKlobuchar and @RoyBlunt’s proposal, Congr… https://t.co/MwuYmWmqM8" +05/23/2018,Politicians,@SenateMajLdr,"Thanks to the bipartisan work of @SenAmyKlobuchar and @RoyBlunt, the Senate is coming together to update the laws g… https://t.co/MyteUBBS8O" +05/22/2018,Politicians,@SenateMajLdr,"For years, the Obama-era Dodd-Frank rules designed for Wall Street made life needlessly difficult for lenders on Ma… https://t.co/j772ncMOuO" +05/22/2018,Politicians,@SenateMajLdr,"And many thanks to you, @SenRonJohnson, for your hard work in getting this life-changing legislation across the fin… https://t.co/eFGYcRVlAA" +05/22/2018,Politicians,@SenateMajLdr,"With @POTUS’ signature yesterday, this unified GOP government has put yet another onerous regulation into the waste… https://t.co/eUbfxFZ0oV" +05/22/2018,Politicians,@SenateMajLdr,The bill before us carries the support of @POTUS Trump and 38 veterans advocacy organizations. It’s based on a simp… https://t.co/GPRw53bGVu +05/22/2018,Politicians,@SenateMajLdr,Delays at the VA cannot stand between veterans and the medical care they need. The shortcomings of a federal bureau… https://t.co/fZ7g3Ck1TH +05/21/2018,Politicians,@SenateMajLdr,"Today, @POTUS signed the 16th Congressional Review Act resolution passed by this GOP Congress. It repealed a rule t… https://t.co/xmCEnz1hOe" +05/21/2018,Politicians,@SenateMajLdr,"Today, the brave men and women of the @CIA welcomed their colleague, Gina Haspel, to a new role for which she is un… https://t.co/bowwSFTroT" +05/18/2018,Politicians,@SenateMajLdr,Robert Wilkie’s record of public service makes him an outstanding choice for Secretary @DeptVetAffairs. He'll be ta… https://t.co/soBm1hmwRF +05/18/2018,Politicians,@SenateMajLdr,"The prayers of the entire Senate are with the victims of today’s violence in Santa Fe, their families, and the comm… https://t.co/uxlJ1e0bk6" +05/17/2018,Politicians,@SenateMajLdr,The Senate will pass the VA MISSION Act next week to strengthen the resources available to our veterans… https://t.co/aLPl1ThZ6g +05/17/2018,Politicians,@SenateMajLdr,The Senate just confirmed Gina Haspel to lead the @CIA. Her talent and expertise make her uniquely qualified to fa… https://t.co/q0Jxl24lqv +05/17/2018,Politicians,@SenateMajLdr,"According to new survey data from @shopfloorNAM, more than 93% of U.S. manufacturing firms have a positive outlook.… https://t.co/KksngQ7nq0" +05/17/2018,Politicians,@SenateMajLdr,"Republican policies are shaking the regulatory rust off of the U.S. economy, and American job creators, entrepreneu… https://t.co/tbdjqYeKLG" +05/17/2018,Politicians,@SenateMajLdr,RT @SenJohnMcCain: Happy 37th anniversary to my love @cindymccain - time flies when you’re having fun! https://t.co/eivKVUylHb +05/17/2018,Politicians,@SenateMajLdr,Gina Haspel is the right woman at the right time. Senators on both sides of the aisle agree. It’s time to rise to t… https://t.co/5QbtRQQ47c +05/16/2018,Politicians,@SenateMajLdr,"Last year, under the leadership of @AjitPaiFCC, the agency sought to fix this mistake and restore the rules that he… https://t.co/VQDnaM8IS5" +05/16/2018,Politicians,@SenateMajLdr,"In 2015, President Obama’s FCC set out to fix what wasn’t broken. It imposed regulations designed for Depression-er… https://t.co/Tub7k74IIz" +05/16/2018,Politicians,@SenateMajLdr,"Even in @SenSchumer’s backyard of Brooklyn, lower excise taxes are letting @nydistilling cut prices. In Kentucky,… https://t.co/pxhCCv7lzu" +05/16/2018,Politicians,@SenateMajLdr,"After 8 years of Democrats’ policies enriching big cities but leaving small businesses behind, Republican policies… https://t.co/BHfuKZRYlA" +05/16/2018,Politicians,@SenateMajLdr,"Gina Haspel is the right woman at the right time. There is no reason why her confirmation should be delayed, and I… https://t.co/7X6plPExNC" +05/15/2018,Politicians,@SenateMajLdr,RT @McConnellPress: .@SenateMajLdr welcomed @realDonaldTrump to @uscapitol today just after #Senate approved the 21st Circuit Judge. Nearly… +05/15/2018,Politicians,@SenateMajLdr,".@SenateGOP and @POTUS Trump had a productive meeting today in the +@uscapitol. Our shared agenda is critical to mo… https://t.co/GkfP1VBiTu" +05/15/2018,Politicians,@SenateMajLdr,The amount employers spent on worker pay and benefits grew more in 2017 than in any calendar year under President O… https://t.co/C2MSuJY4sy +05/15/2018,Politicians,@SenateMajLdr,"For years, Democratic policies like high taxes and runaway regulations put a headwind in the faces of American job… https://t.co/tbPsHnXJOt" +05/15/2018,Politicians,@SenateMajLdr,"The #Senate has confirmed @POTUS’ 20th and 21st circuit court nominees – +a monumental achievement of unified Republ… https://t.co/ZlpNzhXJ3G" +05/15/2018,Politicians,@SenateMajLdr,RT @usatodayopinion: From the director of National Intelligence Dan Coats: I am acutely aware of decisions our country made after the 9/11… +05/15/2018,Politicians,@SenateMajLdr,I also wish to pay tribute today to #Kentucky law enforcement officers who made the ultimate sacrifice on our behal… https://t.co/PXfHIrcdIs +05/15/2018,Politicians,@SenateMajLdr,"During #PoliceWeek, thousands of officers gather in Washington to honor fallen comrades and rededicate themselves t… https://t.co/8M8jYaUFU6" +05/15/2018,Politicians,@SenateMajLdr,The #Senate welcome @POTUS Trump to the Capitol today. +05/14/2018,Politicians,@SenateMajLdr,"Jerusalem is Israel’s capital, plain and simple. That’s where our embassy belongs. And thanks to @POTUS’ leadership… https://t.co/JTP81J1KW2" +05/14/2018,Politicians,@SenateMajLdr,"We all know John McCain doesn’t exactly have a relaxed bone in his body. He still +had plenty to say about work, I a… https://t.co/CgMTptjMBg" +05/14/2018,Politicians,@SenateMajLdr,"This weekend, I had the pleasure of traveling to the beautiful hills outside Sedona, Arizona and spending time with… https://t.co/Up4tzYCKys" +05/11/2018,Politicians,@SenateMajLdr,Tax reform has Indiana off to the races: https://t.co/XyXDMoxwBb +05/11/2018,Politicians,@SenateMajLdr,"Across the nation, every day brings another piece of good news for middle-class workers and families. https://t.co/hKViD6O1UC" +05/11/2018,Politicians,@SenateMajLdr,My statement on @POTUS's drug pricing announcement: https://t.co/3eGYATntY1 https://t.co/RjB0BUEjxU +05/10/2018,Politicians,@SenateMajLdr,"When @POTUS visits Indiana today, he’ll join Hoosiers to celebrate the new jobs and prosperity that our Republican… https://t.co/tW4XLJlIkX" +05/10/2018,Politicians,@SenateMajLdr,"After years of failed Democratic policies, America is open for business once again. +Surveys show that since @POTUS… https://t.co/IGNQHffaQV" +05/10/2018,Politicians,@SenateMajLdr,"In 2013, Senate Democrats voted to confirm John Brennan as CIA Director. What’s changed? https://t.co/JXSMJ3v9Bd" +05/10/2018,Politicians,@SenateMajLdr,"This is as close as we’ve ever come to a Korean peninsula without +nuclear weapons. @POTUS deserves all the credit f… https://t.co/SqNpKciTEp" +05/10/2018,Politicians,@SenateMajLdr,My statement on the U.S. summit with North Korea: https://t.co/Whk0S1tv3F +05/10/2018,Politicians,@SenateMajLdr,Gina Haspel’s testimony yesterday showcased the judgment and poise that have defined her thirty-three year career o… https://t.co/AMiOmH2gSn +05/10/2018,Politicians,@SenateMajLdr,"Michael Brennan carries bipartisan support from the people who know him best, including the endorsement of more tha… https://t.co/8nvP0QUGyS" +05/10/2018,Politicians,@SenateMajLdr,"Overnight, @SecPompeo completed a sensitive diplomatic mission and +returned home from North Korea with three freed… https://t.co/bUSYXMbO1j" +05/09/2018,Politicians,@SenateMajLdr,"Tight economic sanctions brought the Iranian regime to the table last time, but unfortunately, it led to a hopeless… https://t.co/Z0vWntc0g0" +05/09/2018,Politicians,@SenateMajLdr,Tonight I’ll be on the air in the 6pm hour with @guypbenson and Marie Harf on their new @FoxNewsRadio show @BensonAndHarf. +05/09/2018,Politicians,@SenateMajLdr,RT @CNBC: John Thune: We can't let 'political theater' ruin a bipartisan deal on net neutrality https://t.co/GhRhqsKCNg +05/09/2018,Politicians,@SenateMajLdr,Looking forward to speaking with @DanaPerino during today’s @DailyBriefing on @FoxNews. +05/09/2018,Politicians,@SenateMajLdr,This morning brought welcome news that @POTUS and @SecState had secured the release of 3 Americans. I’m hopeful we… https://t.co/6KUaeWb3hR +05/09/2018,Politicians,@SenateMajLdr,The #Senate is processing six more well-qualified nominees for the federal bench. Each nominee on the slate has bee… https://t.co/IhKLeAvoNc +05/09/2018,Politicians,@SenateMajLdr,"Gina Haspel is a tremendous choice to lead the Central Intelligence Agency. She would bring more direct, hard-earne… https://t.co/GYjCVhhQwj" +05/08/2018,Politicians,@SenateMajLdr,"When Democrats controlled Washington, more than 75 percent of manufacturers said an unfavorable business climate fr… https://t.co/hSJJIm06Yg" +05/08/2018,Politicians,@SenateMajLdr,"In December 2017, after just one year of Republican policies, optimism among American manufacturers hit the highest level ever recorded." +05/08/2018,Politicians,@SenateMajLdr,"The percentage of American workers who are unemployed, underemployed, or discouraged recently hit a 17-year low. An… https://t.co/Zq2XcwFnMt" +05/08/2018,Politicians,@SenateMajLdr,The JCPOA was a flawed agreement which @POTUS determined is not in America's nat'l security interests. I share his… https://t.co/6NBgcxRDqf +05/07/2018,Politicians,@SenateMajLdr,Republican policies have taken Washington’s foot off the brake of the U.S. economy. We’ve rolled back a host of job… https://t.co/4AnK4gDd3w +05/07/2018,Politicians,@SenateMajLdr,"This week, the #Senate will consider another slate of extremely well-qualified nominees for seats on the federal be… https://t.co/lt0v6x5DAm" +05/03/2018,Politicians,@SenateMajLdr,I'm looking forward to joining @hughhewitt live on the air at 8:30. +04/26/2018,Politicians,@SenateMajLdr,.@SenatorLankford is giving Democrats their own chance to show that principled convictions matter more than politic… https://t.co/sTwMJYYPau +04/26/2018,Politicians,@SenateMajLdr,#TBT to #Senate Democrats filibustering @POTUS' well qualified judicial nominees. https://t.co/TeM8G2SJ60 +04/26/2018,Politicians,@SenateMajLdr,"After the #Senate confirms our 70th Secretary of @StateDept, we will vote on the nomination of Ric Grenell to serve… https://t.co/fN8NJVvWgJ" +04/26/2018,Politicians,@SenateMajLdr,#Senate Democrats continue with their historic obstruction of @POTUS' nominees. https://t.co/4zgKyy9Itd +04/26/2018,Politicians,@SenateMajLdr,#Senate Democrats are again making history by requiring @POTUS' Secretary of @StateDept nominee to get a cloture vo… https://t.co/CQ2z2rIr2C +04/26/2018,Politicians,@SenateMajLdr,"Today, the #Senate will confirm Mike Pompeo as our nation’s 70th Secretary of @StateDept on a bipartisan vote, the… https://t.co/7XQ9NW6Azh" +04/25/2018,Politicians,@SenateMajLdr,"RT @SenShelby: Despite historic obstruction by the Democrats, the Senate is one step closer to swiftly confirming @POTUS’s nominees. https:…" +04/25/2018,Politicians,@SenateMajLdr,"Tonight, 7:00 Eastern +⬇️ +I will be joining @marthamaccallum on @TheStoryFNC to discuss #Senate Democrats' continue… https://t.co/1HNtMzTbCS" +04/25/2018,Politicians,@SenateMajLdr,.@POTUS' nominees have faced 88 cloture votes in his first 2 years vs. 24 for previous 6 presidents combined in the… https://t.co/Z0xGH1sxcg +04/25/2018,Politicians,@SenateMajLdr,"Despite historic obstruction from #Senate Democrats, the Senate keeps on confirming @POTUS’ well qualified Circuit… https://t.co/dQxUZz0Ag8" +04/24/2018,Politicians,@SenateMajLdr,The passage of the historic #TaxCutsandJobsAct was just the latest illustration of the diverging paths Republicans… https://t.co/WvQTtudZe5 +04/24/2018,Politicians,@SenateMajLdr,"""America Will Be Better Off If Mike Pompeo Is Confirmed"" as our next Secretary of @StateDept. https://t.co/grGYWTR7q2" +04/24/2018,Politicians,@SenateMajLdr,"Today, I am introducing the CAREER Act to bring targeted relief to the states most devastated by the #opioidcrisis. https://t.co/K2q64OxoTo" +04/24/2018,Politicians,@SenateMajLdr,#ICYMI → the #Senate Foreign Relations Cmte favorably recommended Mike Pompeo to be our nation's 70th Secretary of… https://t.co/nN7BIzhXt5 +04/23/2018,Politicians,@SenateMajLdr,"What could it be other than politics? #Senate Democrats flip flop on Mike Pompeo after saying ‘He is smart, hard-wo… https://t.co/tb9STlDEFu" +04/23/2018,Politicians,@SenateMajLdr,The #Senate will also vote later today to advance the nomination of Kyle Duncan serve on the Fifth Circuit Court of… https://t.co/53mGWIxhEk +04/23/2018,Politicians,@SenateMajLdr,"What could it be other than politics? #Senate Democrats flip flop on Mike Pompeo after saying ‘He is smart, hard-wo… https://t.co/BmSdih6moZ" +04/23/2018,Politicians,@SenateMajLdr,"Today, the Foreign Relations Cmte will consider @POTUS' choice for the next Secretary of @StateDept. It's hard to i… https://t.co/TxIXtkvtb7" +04/23/2018,Politicians,@SenateMajLdr,Iowans are seeing benefits of #TaxReform. Senator @ChuckGrassley's new op-ed on how the #TaxCutsandJobsAct is helpi… https://t.co/MsvH23WPVK +04/19/2018,Politicians,@SenateMajLdr,I look forward to working with Dr. Jackson to build on the progress we’ve made in expanding accessibility and impro… https://t.co/XGB6jgnpR3 +04/19/2018,Politicians,@SenateMajLdr,"Consumer confidence at a 14 year ⬆️. Jobless claims, a 45 year ⬇️. + +#TaxReform is working for the American people… https://t.co/ZClmCHCEVd" +04/19/2018,Politicians,@SenateMajLdr,This GOP Congress and @POTUS think the Gov needs to give workers and job creators breathing room. So we passed reco… https://t.co/3xrlyG12Jv +04/19/2018,Politicians,@SenateMajLdr,There was a long-standing and overwhelmingly bipartisan tradition in the #Senate of support of Secretaries of… https://t.co/eeaEGX6aCT +04/19/2018,Politicians,@SenateMajLdr,".@NASA has been led by an acting administrator for a record 15 months, so I hope all Senators will join me in votin… https://t.co/vj90q7ox0V" +04/19/2018,Politicians,@SenateMajLdr,"By confirming Mike Pompeo as Secretary of @StateDept, the #Senate can ensure the nation has a chief diplomat who en… https://t.co/hz5gvNqxke" +04/19/2018,Politicians,@SenateMajLdr,The Protecting Moms and Infants Act authorizes increased funding for a competitive federal grant to help organizati… https://t.co/Mt7aObSte2 +04/19/2018,Politicians,@SenateMajLdr,"Today, I’ll introduce the Protecting Moms and Infants Act, which directs the Secretary of @HHSGov to report on the… https://t.co/fxSkzXNXOW" +04/18/2018,Politicians,@SenateMajLdr,"#Senate Democrats filibuster a bill to authorize funding for the United States Coast Guard. + +Yes, you read that cor… https://t.co/dcIuTEDscT" +04/18/2018,Politicians,@SenateMajLdr,"The #Senate continues ""chopping away"" at burdensome Obama-era regulations. https://t.co/SpL83H2XME" +04/18/2018,Politicians,@SenateMajLdr,Barbara Bush's life was defined by love. She loved her husband and her family. She loved her country. And America l… https://t.co/97IbI4XhhF +04/18/2018,Politicians,@SenateMajLdr,"Thanks to @SenToomey & Senator @JerryMoran, the #Senate will be rolling back another piece of Obama-era overreach b… https://t.co/jHMVSkuSpc" +04/18/2018,Politicians,@SenateMajLdr,"Barbara Bush wielded her formidable qualities on behalf of her nation, the family she loved, and the many worthy ca… https://t.co/F6Lu7ln11Q" +04/17/2018,Politicians,@SenateMajLdr,"Even as the #economy is starting to thrive, Democrats want to repeal these historic tax cuts and claw back your mon… https://t.co/pxvMaRgZPB" +04/17/2018,Politicians,@SenateMajLdr,"Major tax relief for middle-class families is a big shot in the arm for the U.S. #economy, which will lead to more… https://t.co/zOBJusTkhA" +04/17/2018,Politicians,@SenateMajLdr,"#TaxReform Day, brought to you by #Senate Republicans. + +https://t.co/XCExABAZLG" +04/17/2018,Politicians,@SenateMajLdr,"Out with the old, and in with the new. #TaxReform is working. https://t.co/eJpAXDMAPf" +04/17/2018,Politicians,@SenateMajLdr,RT @SenHydeSmith: The #TaxCutsandJobsAct is a strong start to help Mississippi families keep more of their hard-earned money & to help smal… +04/17/2018,Politicians,@SenateMajLdr,RT @FoxNews: TUNE IN: @SenateMajLdr sits down with @TeamCavuto for an exclusive interview on “Your World” LIVE from D.C. at 4p ET. https://… +04/17/2018,Politicians,@SenateMajLdr,"RT @NFIB: Today is the first #TaxDay in years that #smallbiz have received some good news. Compensation is up, sales are strong, & #taxes r…" +04/17/2018,Politicians,@SenateMajLdr,"Today is the last #TaxDay that American families will have to file under the unfair, outdated tax code that Congres… https://t.co/0tegpMY4SG" +04/17/2018,Politicians,@SenateMajLdr,RT @SenJoniErnst: This is the last #TaxDay Americans will be forced to comply with an outdated and overly burdensome tax code. See how the… +04/17/2018,Politicians,@SenateMajLdr,I will be joining @TeamCavuto at appx 4:00 this afternoon to discuss #TaxDay and how #TaxReform is already benefiti… https://t.co/Snsd4F9dth +04/17/2018,Politicians,@SenateMajLdr,"2018 #TaxDay: Out with the Old, and In With the New. +via @Medium +https://t.co/4rY58AjVqf" +04/17/2018,Politicians,@SenateMajLdr,"Thanks to the #TaxCutsandJobsAct 4,000,000+ Americans (and counting) are receiving special bonuses, pay raises, or… https://t.co/ESFsb5Wrub" +04/17/2018,Politicians,@SenateMajLdr,RT @SenatorRisch: #Taxday is the last day taxes will be paid under the old federal system that takes more of your hard-earned income. Read… +04/17/2018,Politicians,@SenateMajLdr,RT @SenPatRoberts: Today is #TaxDay and marks the last day that Americans will file their taxes under the outdated and burdensome system. O… +04/17/2018,Politicians,@SenateMajLdr,"RT @senrobportman: In January, thanks to the #TaxReform law, the IRS updated the amount it withholds from employee paychecks and as a resul…" +04/17/2018,Politicians,@SenateMajLdr,"RT @SenateGOP: For years, @GOPSenFinance Chairman @SenOrrinHatch has been working to shred the old tax code. Today, he gets his wish. #TaxD…" +04/17/2018,Politicians,@SenateMajLdr,"ICYMI - yesterday afternoon, I filed cloture on @USCG Authorization Act, a comprehensive package that equips an ada… https://t.co/yXh53z6aze" +04/17/2018,Politicians,@SenateMajLdr,"Today's #TaxDay is out with the old, and in with the new. #TaxReform is working for American families. https://t.co/KZA5cCodAN" +04/17/2018,Politicians,@SenateMajLdr,"Thanks to @SenToomey and Senator @JerryMoran, we will protect consumers from a brazen attempt by the past director… https://t.co/ospceABhQI" +04/16/2018,Politicians,@SenateMajLdr,"Today I met w/ @POTUS' nominee for Director of the @CIA, Gina Haspel. She has dedicated her professional life to th… https://t.co/LZtVBwFKFF" +04/16/2018,Politicians,@SenateMajLdr,#Senate Democrats' historic obstruction https://t.co/UcD4rgNXMX +04/16/2018,Politicians,@SenateMajLdr,Tomorrow is the last #TaxDay that Americans will have to file under the old and outdated tax code. This Republican… https://t.co/l7besyoGvX +04/16/2018,Politicians,@SenateMajLdr,"This afternoon, the #Senate will vote to advance legislation from Senator @JerryMoran that would bolster the proper… https://t.co/5iN7lGyxaG" +04/16/2018,Politicians,@SenateMajLdr,"Over the weekend, America’s all-volunteer armed forces executed a challenging mission with precision and excellence… https://t.co/wb1ImQ5Kkh" +07/02/2018,Politicians,@SenSchumer,RT @RobertHarding: .@SenSchumer due to speak at the Cicero Senior Center this afternoon. https://t.co/iNrlCep2kr +07/02/2018,Politicians,@SenSchumer,"Heartbroken to learn of the death in the line of duty of NYS Trooper Nicholas Clark, this morning. May God bless h… https://t.co/8gZCFwpTWC" +07/02/2018,Politicians,@SenSchumer,The bottom line: Judge Barrett has given every indication that she will be an activist judge on the Court. If chose… https://t.co/pUKCTg3ue5 +07/02/2018,Politicians,@SenSchumer,She disagrees with “stare decisis” - the idea that cases like Roe v. Wade are settled law in the courts - and inste… https://t.co/Mf9s5PG9J5 +07/02/2018,Politicians,@SenSchumer,Barrett also fought efforts to ensure that all women have access to contraceptives. https://t.co/voWM3KjeGr +07/02/2018,Politicians,@SenSchumer,"Barrett attacked the Supreme Court’s decision upholding the Affordable Care Act, which has helped millions of peopl… https://t.co/ZF8oUjWF1w" +07/02/2018,Politicians,@SenSchumer,Amy Coney Barrett is a judge on the Court of Appeals for the 7th Circuit & on @realDonaldTrump’s pre-approved list… https://t.co/RZFz7N5cNW +07/02/2018,Politicians,@SenSchumer,RT @nytopinion: The Senate must oppose ideological nominees to the Supreme Court who would vote to overturn Roe v. Wade and the Affordable… +07/01/2018,Politicians,@SenSchumer,"After NK summit, @realDonaldTrump said “everybody can now feel much safer…There is no longer a Nuclear threat from… https://t.co/aYplwk54qx" +06/30/2018,Politicians,@SenSchumer,"What a month! Thank you to all the organizers, activists, marchers & friends who made the #Pride events this month… https://t.co/vwMtqI7KE5" +06/30/2018,Politicians,@SenSchumer,The president has the power to appoint a czar to marshal & organize the agencies in charge of reunifying families.… https://t.co/EVQ5dp6cc4 +06/30/2018,Politicians,@SenSchumer,Mr. President - we know each judge on the list of 25 handpicked by the @FedSoc will overturn Roe v. Wade and strike… https://t.co/dIqeJx75qh +06/29/2018,Politicians,@SenSchumer,"A vibrant, free press is a pillar of American democracy enshrined in our Constitution. I salute those who dedicate… https://t.co/HGdY41DD9r" +06/29/2018,Politicians,@SenSchumer,"I stand w/ fellow Americans who are appalled by the horrific attack at the Capital Gazette, a wonderful community-b… https://t.co/tZgP5lDAo0" +06/28/2018,Politicians,@SenSchumer,"Bob Mueller is a decorated Marine, former DoJ prosecutor, and former FBI Director. And, let me remind you, he is a… https://t.co/4ATDOxLCeE" +06/28/2018,Politicians,@SenSchumer,"If anything should happen at this mtg, @realDonaldTrump must inform Putin of his intent to aggressively implement t… https://t.co/fuDk0GTUjr" +06/28/2018,Politicians,@SenSchumer,The American people have to wonder: why is our president so committed to building a relationship with someone so de… https://t.co/cULXmZLiJ8 +06/28/2018,Politicians,@SenSchumer,For @realDonaldTrump to reward President Putin with a one-on-one meeting while Russia actively continues to interfe… https://t.co/aObPKoVwHm +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: This is dangerous, this is weak, and it’s yet another slap in the face to the intelligence professionals who quite literall…" +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: The President can either believe his Secretary of Defense Jim Mattis, or he can believe Vladimir Putin. https://t.co/b6F4hQ…" +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: And they’re lying. The President can either believe Russia or he can believe our country’s intel chiefs, generals, cabinet…" +06/28/2018,Politicians,@SenSchumer,Americans from all corners of the country: rise up & speak out. Tell your Senators that if they vote for a Supreme… https://t.co/sLZ7qyvlkL +06/28/2018,Politicians,@SenSchumer,"Every American should have their eyes wide open to the fact that @realDonaldTrump has sworn to nominate a justice,… https://t.co/k4DHTuaubp" +06/28/2018,Politicians,@SenSchumer,.@realDonaldTrump will nominate a justice willing to re-interpret the ruling on the ACA. Remember when he said: “Ju… https://t.co/gIqmg4n8oo +06/28/2018,Politicians,@SenSchumer,.@realDonaldTrump will nominate a #SCOTUS justice willing to send Roe “back to the states” – those are his own word… https://t.co/EudYg92yh6 +06/28/2018,Politicians,@SenSchumer,"So today @SenateDems & @HouseDemocrats are standing up for public employees – teachers, nurses & health care provid… https://t.co/ldm6KgOfNm" +06/28/2018,Politicians,@SenSchumer,"#Unions built the middle class in this country, & now Republicans & their friends on the court are doing everything… https://t.co/qVlomMg39K" +06/28/2018,Politicians,@SenSchumer,If the Senate’s constitutional duty to advise and consent is just as important as the President’s right to nominate… https://t.co/5I6AfE2kBy +06/28/2018,Politicians,@SenSchumer,"If GOP were consistent, they would wait to consider Justice Kennedy’s successor until after the midterm elections.… https://t.co/S18TPddPmq" +06/28/2018,Politicians,@SenSchumer,Why do you trust Putin more than your own Republican DOJ officials and the Republican special counsel that was appo… https://t.co/W3VhVSAghw +06/27/2018,Politicians,@SenSchumer,"In 2016, Senate Republicans said that the American people deserve an opportunity to speak on Supreme Court nominees… https://t.co/JmMQkHLLZK" +06/27/2018,Politicians,@SenSchumer,Americans should make it clear that they will not tolerate a nominee chosen from President Trump’s pre-ordained lis… https://t.co/SCIoyLZIMM +06/27/2018,Politicians,@SenSchumer,People from all across America should realize that their rights and opportunities are threatened and should make th… https://t.co/OUL8UPV3e1 +06/27/2018,Politicians,@SenSchumer,Millions of ppl are just months away from determining the senators who should vote to confirm or reject POTUS’s nom… https://t.co/ZXvBzVEwGS +06/27/2018,Politicians,@SenSchumer,My @SenateGOP colleagues should follow the rule they set in 2016 not to consider a SCOTUS nominee in an election ye… https://t.co/m48EF9qdxc +06/27/2018,Politicians,@SenSchumer,The Senate should reject anyone who will instinctively side with powerful special interests over the interests of average Americans. +06/27/2018,Politicians,@SenSchumer,Will Republicans & @realDonaldTrump nominate & vote for someone who will preserve protections for people w/ preexis… https://t.co/PS59T6a0DH +06/27/2018,Politicians,@SenSchumer,This is the most important Supreme Court vacancy for this country in at least a generation. Nothing less than the f… https://t.co/lpNmxXSdE5 +06/27/2018,Politicians,@SenSchumer,".@realDonaldTrump needs to end the inhumanity & chaos at the border, but we also need a real strategy to go after c… https://t.co/u72J0gsUeR" +06/27/2018,Politicians,@SenSchumer,There is a pretty simple reason people are fleeing Central America. It is the impunity of gangs and cartels and the… https://t.co/tQZOv4Tjg6 +06/27/2018,Politicians,@SenSchumer,RT @SenWarren: Corporate interests have been rigging the system against workers for decades – and the Supreme Court just handed those inter… +06/26/2018,Politicians,@SenSchumer,I want to be clear: anyone who supports the lawsuit against the ACA has said loud and clear that they don’t support… https://t.co/WyWQKIDfRM +06/26/2018,Politicians,@SenSchumer,"The Republican strategy is clear: increase the deficit on behalf of special interests, then use that as an excuse t… https://t.co/1P2B3QFpSF" +06/26/2018,Politicians,@SenSchumer,Today’s report is another reminder about the true costs of handing out massive tax breaks to billionaires & large c… https://t.co/N5nGdX8sI2 +06/26/2018,Politicians,@SenSchumer,"The president’s travel ban doesn’t make us safer, and the Supreme Court’s ruling doesn’t make it right. This is a b… https://t.co/LhqLjdW5K9" +06/26/2018,Politicians,@SenSchumer,RT @RepAnthonyBrown: We cannot be a nation that strips health care away from those who need it most. Tune in to my press conference with @N… +06/26/2018,Politicians,@SenSchumer,"Simply put, @realDonaldTrump turned his back on the most popular & most humane advancement in our health care syste… https://t.co/PBCtDeHXKZ" +06/26/2018,Politicians,@SenSchumer,We’re here w/ @LittleLobbyists today because the protections put in place by the ACA for people with pre-existing c… https://t.co/FoX2WvzZt8 +06/26/2018,Politicians,@SenSchumer,".@realDonaldTrump, you said giving corporations like Harley a big tax giveaway would mean more jobs. + +Instead, man… https://t.co/TcFhDeLzsH" +06/25/2018,Politicians,@SenSchumer,"Chief Spadafora spent his whole life serving the ppl of NY, &we can never thank him enough. He answered the call ti… https://t.co/N8XtE4Ibi6" +06/25/2018,Politicians,@SenSchumer,Then why are you tweeting about it? These decisions can & should be made by @realDonaldTrump's appointees at @FBI &… https://t.co/PLmyVopClC +06/25/2018,Politicians,@SenSchumer,Family dinner tonight at L&B Spumoni Gardens in the heart of Italian Brooklyn — like eating in Sicily! https://t.co/n9d7oKpDdW +06/24/2018,Politicians,@SenSchumer,Marching in the #NYCPride Parade has special meaning this year as I am marching with my daughter Alison and her won… https://t.co/w6dhIcg7sK +06/24/2018,Politicians,@SenSchumer,See you there! https://t.co/lLdoTIp81X +06/24/2018,Politicians,@SenSchumer,RT @CNNNewsource: LIVE - Senator chuck Schumer to demand Trump Admin to appoint Czar to oversee separated family reunion. CNN signal now on… +06/24/2018,Politicians,@SenSchumer,RT @SarahLJorgensen: Sen. Schumer calls on the White House to appoint a czar to handle the reunification of families and children separated… +06/24/2018,Politicians,@SenSchumer,"RT @markknoller: .@SenSchumer calls for federal ""Czar"" to oversee reunification of children and parents separated in illegal border crossin…" +06/24/2018,Politicians,@SenSchumer,The Trump ‘zero-tolerance’ immigration policy has left many with zero confidence in the admin’s ability to quickly… https://t.co/hWycAaHp15 +06/23/2018,Politicians,@SenSchumer,The Special Counsel’s investigation into Russian interference in US elections has either indicted or secured guilty… https://t.co/w85rFNjtHg +06/23/2018,Politicians,@SenSchumer,People of all political stripes should read conservative @GeorgeWill’s amazing column: https://t.co/xr5X756cC8 +06/22/2018,Politicians,@SenSchumer,Best wishes and congrats go out to @TinaMoorereport on being promoted by the @nypost as the paper’s FIRST female Police Bureau Chief. +06/22/2018,Politicians,@SenSchumer,"It may be the GOP’s 6 mo anniversary, but remember what @realDonaldTrump promised the American people? He said the… https://t.co/LR3KQj9KeG" +06/22/2018,Politicians,@SenSchumer,"If you look at the numbers, corporations are reaping record profits as a result of the #GOPTaxScam, but that saving… https://t.co/cK3huQhrsP" +06/22/2018,Politicians,@SenSchumer,"Since the beginning of 2018, corporations have announced plans to repurchase more than $480 billion in stock buybac… https://t.co/QQF1TwLrt8" +06/22/2018,Politicians,@SenSchumer,"6 mos ago, in the dead of night, the GOP jammed thru the #GOPTaxScam lavishing tax cuts on big corps & the wealthie… https://t.co/jTG0xZkzkQ" +06/21/2018,Politicians,@SenSchumer,More increases in health insurance rates out of Indiana and Iowa today—those higher costs are thanks to the sabotag… https://t.co/RUJVTS6hxK +06/21/2018,Politicians,@SenSchumer,"Open borders, @realDonaldTrump? The bipartisan immigration bill I authored had $40 billion for border security and… https://t.co/q7R87g7Kz8" +06/21/2018,Politicians,@SenSchumer,"While @realDonaldTrump signed an exec order on his policy of family separation, it does nothing for the >2,300 chil… https://t.co/zwBOmGpQDu" +06/21/2018,Politicians,@SenSchumer,".@realDonaldTrump hasn’t taken care of the problem, not by any stretch of the imagination. But now that he’s finall… https://t.co/ADHd1GCHjz" +06/21/2018,Politicians,@SenSchumer,What is the admin's plan to reunite the children already separated from their families? The EO is silent on that. H… https://t.co/WrQGOkovFG +06/21/2018,Politicians,@SenSchumer,The way the executive order was drafted means that it will not go into effect until a court rules on its legality.… https://t.co/FnnQyetBBF +06/21/2018,Politicians,@SenSchumer,I hope this means @realDonaldTrump will stop blaming others for problems he creates & start fixing them himself. He… https://t.co/QXHlMxoY9n +06/21/2018,Politicians,@SenSchumer,"For a little over a month, @realDonaldTrump’s family separation policy has resulted in >2,300 children separated fr… https://t.co/3HhA4qA2pe" +06/20/2018,Politicians,@SenSchumer,Keeping these children separated from their families is unacceptable and must be rectified. This has to be our numb… https://t.co/gTh6P0foli +06/20/2018,Politicians,@SenSchumer,"He can start with correcting the problems that this executive order will create, and should also undo his #DACA ord… https://t.co/2UquTRa8bG" +06/20/2018,Politicians,@SenSchumer,I also hope this represents a turning point & @POTUS will stop blaming others for problems he creates & start fixing them himself. +06/20/2018,Politicians,@SenSchumer,It’s a relief that @realDonaldTrump has reversed himself & recognized the cruelty of his policy of separating famil… https://t.co/LcBZwFiqBl +06/20/2018,Politicians,@SenSchumer,Protecting US jobs & our nation’s security must remain paramount & not something that we can compromise on. As my c… https://t.co/ebgrgEG2RL +06/20/2018,Politicians,@SenSchumer,My Republican colleagues must resist efforts by the Trump administration – at the behest of the Government of China… https://t.co/ipmTgIEoPg +06/20/2018,Politicians,@SenSchumer,"It’s as easy as this Mr. President. Just sign on the line, @realDonaldTrump. #KeepFamiliesTogether https://t.co/rhZcd9Iib2" +06/20/2018,Politicians,@SenSchumer,It's unconscionable that the US govt is housing babies & toddlers alone in an institutional setting. This crisis wa… https://t.co/B5Y8NSHVnm +06/20/2018,Politicians,@SenSchumer,"You - and not the law - are responsible for this family separation policy, @realDonaldTrump. GOP Senators and membe… https://t.co/hp2YAvIlYA" +06/19/2018,Politicians,@SenSchumer,Anyone who believes this Republican Congress is capable of addressing this issue is kidding themselves.… https://t.co/quvDUXGRQW +06/19/2018,Politicians,@SenSchumer,".@SpeakerRyan wants to pass a massive bill that may not even pass the House & couldn’t pass Senate, @SenateGOP are… https://t.co/TYN0Rmxx0S" +06/19/2018,Politicians,@SenSchumer,".@realDonaldTrump, if you share the outrage of the vast majority of Americans, if you’re ashamed of what’s happenin… https://t.co/UIcVxyKBT8" +06/19/2018,Politicians,@SenSchumer,"RT @JohnKasich: Unbelievably, the Administration has chosen to no longer defend the law of the land that protects those with pre-existing c…" +06/19/2018,Politicians,@SenSchumer,The Trump administration and Republicans in Congress should work with Democrats in a bipartisan way to make health… https://t.co/hrek0E3tBC +06/19/2018,Politicians,@SenSchumer,That’s exactly why more than 95% of the health care groups that filed comments about this proposed rule criticized… https://t.co/wyaeRAKTNz +06/19/2018,Politicians,@SenSchumer,Finalizing this rule is simply the latest act of sabotage of our health care system by the Trump administration and… https://t.co/cJLomWOwll +06/18/2018,Politicians,@SenSchumer,RT @politico: BREAKING: Senate rejects Trump’s rescue of Chinese firm ZTE https://t.co/IhYylQw1Dx +06/18/2018,Politicians,@SenSchumer,It is vital that our colleagues in the House keep this bipartisan provision in the bill as it heads towards a conference. +06/18/2018,Politicians,@SenSchumer,We’re heartened that both parties made it clear that protecting American jobs and national security must come first… https://t.co/ZLdggxODZu +06/18/2018,Politicians,@SenSchumer,Joining @SenTomCotton @ChrisVanHollen & @marcorubio in releasing a joint statement following the passage of #NDAA w… https://t.co/TBrozOkU3j +06/18/2018,Politicians,@SenSchumer,"RT @SenateDems: It’s time for @realDonaldTrump to stop lying. +As senior Trump officials – including members of his own cabinet- have said,…" +06/18/2018,Politicians,@SenSchumer,"As everyone who has looked at this agrees, this was done by the president, not Democrats. He can fix it tomorrow if… https://t.co/K3AZ50fLxq" +06/18/2018,Politicians,@SenSchumer,"If the House moderates really want to get something done on immigration, they should not be duped by their leadersh… https://t.co/JdfXMwQuII" +06/18/2018,Politicians,@SenSchumer,House mods will lose all credibility if they accept this sham of a bill; it's extreme & drastically cuts immigratio… https://t.co/AE1BDbPViR +06/18/2018,Politicians,@SenSchumer,"Instead of supporting this so-called “moderate” bill, @HouseGOP who want to get something done for Dreamers should… https://t.co/CuNNsXHRLE" +06/18/2018,Politicians,@SenSchumer,"By all reports, the House “moderate” immigration bill is hardly moderate at all. It would cut legal immigration dra… https://t.co/KV5vSmm3Ik" +06/17/2018,Politicians,@SenSchumer,"He turned 95 this week folks! Very grateful for my dad, Abe and my mom, Selma- she turned 90 on #DDay- and all they… https://t.co/AknEIlCCk0" +06/17/2018,Politicians,@SenSchumer,"Today as we celebrate #FathersDay, I want to share a few words I said about my Dad, Abe Schumer, this week on his 9… https://t.co/iXPr9BzlFg" +06/16/2018,Politicians,@SenSchumer,".@realDonaldTrump, the IG report found what we all knew: James Comey’s actions helped you. During the election, the… https://t.co/cji6xXFBIu" +06/15/2018,Politicians,@SenSchumer,Minnesota implemented a reinsurance program. This is what can happen when states support patients and fight back ag… https://t.co/kWk1bjFRlM +06/15/2018,Politicians,@SenSchumer,"RT @ChrisVanHollen: This Father’s Day, I’m headed to the border with @SenJeffMerkley to focus on the inhumanity of separating kids from the…" +06/15/2018,Politicians,@SenSchumer,Republicans in the House put forth a proposal that is dead on arrival in the Senate. When they get serious about fi… https://t.co/DDyVMJB9Rw +06/15/2018,Politicians,@SenSchumer,Today marks the 6th anniversary of the announcement #DACA. Rather than celebrating all of the things immigrant yout… https://t.co/tzYaeV90GG +06/15/2018,Politicians,@SenSchumer,Unless of course by “my people” the President means his cabinet: https://t.co/fTkYkVM4aE +06/15/2018,Politicians,@SenSchumer,"This is the United States is America, not the United States of Trump. We are a democracy not a dictatorship. So tha… https://t.co/Lm1FlyZLFB" +06/15/2018,Politicians,@SenSchumer,".@realDonaldTrump’s actions on China are on the money. China is our real trade enemy, & their theft of intellectual… https://t.co/icDp0FcVqJ" +06/15/2018,Politicians,@SenSchumer,.@realDonaldTrump which makes more sense? You fired Comey because he HURT Hillary Clinton? Or this: https://t.co/5IMSWIsUzn +06/14/2018,Politicians,@SenSchumer,"I hope Sec @stevenmnuchin1 @SecAzar & @SecretaryAcosta will abandon their proposed rule, and instead work with… https://t.co/JrMQySsv9U" +06/14/2018,Politicians,@SenSchumer,"We've been hearing from our constituents about these #junkplans, and a recent @latimes analysis found “[n]ot a sing… https://t.co/Mlhnq2nhgF" +06/14/2018,Politicians,@SenSchumer,"Healthcare experts overwhelmingly condemn the Trump administration’s plan, asserting the expanded sale and marketin… https://t.co/dHQEKLdhfy" +06/14/2018,Politicians,@SenSchumer,Today 44 Senators signed this letter to members of @realDonaldTrump's cabinet urging them to listen to the patients… https://t.co/ioueSq5pWa +06/14/2018,Politicians,@SenSchumer,Director Comey’s mishandling of the publicity around the Clinton email campaign all accrued to the benefit of then… https://t.co/Hc6WIpmAOX +06/14/2018,Politicians,@SenSchumer,RT @SenJackReed: I support diplomatic engagement over twitter insults. But Pres Trump’s lack of preparedness at North Korea summit cost the… +06/14/2018,Politicians,@SenSchumer,RT @SenJohnMcCain: Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts to ac… +06/14/2018,Politicians,@SenSchumer,I’ve now seen the Inspector General’s report. It contains no evidence to make any reasonable person conclude that t… https://t.co/I3FQkS7bVm +06/14/2018,Politicians,@SenSchumer,RT @SenateDems: The Trump administration is raising #healthcare costs for millions of Americans and attacking protections for people with p… +06/14/2018,Politicians,@SenSchumer,"My dad, a #WorldWarII veteran turns 95 today on #FlagDay. What a blessing! https://t.co/ZzcMRzBh8I" +06/13/2018,Politicians,@SenSchumer,RT @TimJHanrahan: NEW: The Trump administration's push to unravel more provisions of the ACA could affect tens of millions of people who ge… +06/13/2018,Politicians,@SenSchumer,"RT @RonWyden: When @realDonaldTrump and his Justice Department abandoned their duty to defend the law of the land, they put the health care…" +06/13/2018,Politicians,@SenSchumer,"After promising to protect ppl w/ pre-existing conditions from being denied affordable health care,… https://t.co/etXpcxtcEo" +06/13/2018,Politicians,@SenSchumer,The latest report from the American Academy of Actuaries further confirms that the Trump administration and Congres… https://t.co/NgUiWtEgj0 +06/13/2018,Politicians,@SenSchumer,Both Rs & Ds must be resolute in blocking @realDonaldTrump's bad pro-China ZTE deal. Protecting our natl & economic… https://t.co/UySLtLcS1d +06/13/2018,Politicians,@SenSchumer,"Exactly right. The Finger Lakes region is not and will never be a good location for this incinerator, and we have t… https://t.co/dxL4ajJ99t" +06/13/2018,Politicians,@SenSchumer,"RT @SteveBellone: Great news for Long Island (and the entire region) as @LIMacArthur continues to make improvements. TY to @SenGillibrand,…" +06/13/2018,Politicians,@SenSchumer,"The income inequality gap is at the highest levels since the Great Depression, a sure sign the Trump admin and the… https://t.co/nZfSy8OKVH" +06/13/2018,Politicians,@SenSchumer,"If @realDonaldTrump truly wants to make America great again, he needs to start by protecting American workers & dis… https://t.co/n7BjYCPAaA" +06/13/2018,Politicians,@SenSchumer,RT @SenStabenow: It is terrible to see the Trump Administration taking Michigan families back to the days when being a woman was considered… +06/13/2018,Politicians,@SenSchumer,"RT @StillTalkinTV: My remembrance of Tim Russert a decade after his death +https://t.co/FsiEhj5p0C" +06/13/2018,Politicians,@SenSchumer,Hard to believe it’s been 10 years without one of America’s greatest journalists and Buffalo’s most passionate advo… https://t.co/a8Npzbm83W +06/13/2018,Politicians,@SenSchumer,RT @morethanmySLE: 3rd meeting of the day and working with @SenSchumer to fight #ACA sabotage. Very proud of my senator! https://t.co/BKRQw… +06/13/2018,Politicians,@SenSchumer,The emphasis on showmanship as opposed to substance at the #NorthKoreaSummit will not serve America or the prospect… https://t.co/kKACyD6MII +06/13/2018,Politicians,@SenSchumer,"Mr. President, if only it were that easy, that simple. https://t.co/zDMhHTkxCa" +06/13/2018,Politicians,@SenSchumer,Glad you noticed. We wrote you last month asking for action: https://t.co/z113B9yrrS https://t.co/Oa0JdIQAsr +06/12/2018,Politicians,@SenSchumer,Republicans should instead work with Democrats now and throughout the summer to focus on lowering healthcare costs for the American people. +06/12/2018,Politicians,@SenSchumer,"Actions speak louder than words. So far, the @SenateGOP’s own legislation and the Trump administration’s actions pr… https://t.co/AduDyWDGUP" +06/12/2018,Politicians,@SenSchumer,"If Republicans are serious about maintaining protections for people with pre-existing conditions, they should join… https://t.co/CYTybIaKIU" +06/12/2018,Politicians,@SenSchumer,"RT @brianschatz: If you are pregnant, mentally ill, have cancer, a bad knee, asthma, diabetes, sleep apnea, acne, lupus or any other pre-ex…" +06/12/2018,Politicians,@SenSchumer,ICYMI @SenatorHassan on how the Trump administration has put politics over people by refusing to defend protections… https://t.co/4vd9E2z6OA +06/12/2018,Politicians,@SenSchumer,RT @SenatorMenendez: WATCH LIVE - standing with @SenSchumer @SenatorCardin @ChrisCoons & @SenateDems to talk the #TrumpKimSummit - https://… +06/12/2018,Politicians,@SenSchumer,"What the United States has gained is vague and unverifiable; what North Korea has gained, however, is tangible and… https://t.co/6EN1fjvwOW" +06/12/2018,Politicians,@SenSchumer,"RT @SenatorBaldwin: Last night, I sat down with Tiara Parker, a survivor of the #Pulse shooting. Today is the 2 year anniversary of this tr…" +06/12/2018,Politicians,@SenSchumer,"RT @PattyMurray: As a candidate, President Trump talked a big game on lowering drug prices, but after 500 days in office the only health ca…" +06/12/2018,Politicians,@SenSchumer,Go @NYRangers! But congrats to the @Capitals and stay safe everyone celebrating in DC today. https://t.co/07Gz2s5l3A +06/12/2018,Politicians,@SenSchumer,"RT @SenateDems: We know #FamiliesBelongTogether. That's why we're urging the full Senate to step up, remember our values, and pass our Keep…" +06/12/2018,Politicians,@SenSchumer,"2 yrs ago today, 49 beautiful lives were taken from us far too soon. Today we remember & mourn but we must, must, m… https://t.co/RjXcs8Icgx" +06/11/2018,Politicians,@SenSchumer,The fact that a bipartisan group of senators came together this quickly is a testament to how bad the Trump adminis… https://t.co/rCSGV4wAvz +06/11/2018,Politicians,@SenSchumer,"By including this provision to undo the ZTE deal in the defense bill, the Senate is saying loudly and in a bipartis… https://t.co/pFxQ76vRsP" +06/11/2018,Politicians,@SenSchumer,".@SenateMajLdr has shown he’s willing to confirm a judge over the objection of one home state Senator, but he will… https://t.co/cJmYX37gbp" +06/11/2018,Politicians,@SenSchumer,Bounds is also controversial & had some rather offensive writings that he failed to disclose to the bipartisan Judi… https://t.co/tp0SigQ17D +06/11/2018,Politicians,@SenSchumer,Farr has spent a lengthy legal career defending the interests of corps against their workers. He 2x defended the GO… https://t.co/1ZxLPqEttx +06/11/2018,Politicians,@SenSchumer,"In the next few weeks, the Senate is likely to take up two highly controversial judicial nominees: Thomas Farr for… https://t.co/mYYJMFpRWJ" +06/11/2018,Politicians,@SenSchumer,"RT @LawyersComm: As Justice #Sotomayor aptly observes, today’s decision forces minority communities to be ‘even more proactive and vigilant…" +06/11/2018,Politicians,@SenSchumer,RT @NAACP_LDF: The Supreme Court’s decision in #HustedvAPRI threatens to embolden states to undermine our democracy and deny eligible voter… +06/11/2018,Politicians,@SenSchumer,"In today’s decision, the #SCOTUS seemingly ignores the rights of the eligible voters who will be denied the right t… https://t.co/vkzG5W1R5m" +06/11/2018,Politicians,@SenSchumer,"When Congress passed the NVRA, a balance between was struck between the desire to make it as easy as possible for e… https://t.co/lvNqRXIFqB" +06/11/2018,Politicians,@SenSchumer,Democracy suffers when laws make it harder for U.S. Citizens to vote. This decision is dangerous and damaging and i… https://t.co/sCEG5mJi2f +06/11/2018,Politicians,@SenSchumer,The right to vote is the most sacred right we have as citizens. Aggressive voter purge systems like Ohio’s essenti… https://t.co/feBGQczXYG +06/11/2018,Politicians,@SenSchumer,"The ongoing push to disenfranchise American voters, led by the Trump administration and its allies at the state and… https://t.co/Zzfpji42JI" +06/11/2018,Politicians,@SenSchumer,RT @SenatorLeahy: #NetNeutrality may end today but the fight for an open Internet continues. The House can restore the rules by following t… +06/11/2018,Politicians,@SenSchumer,"One of many reasons small business owners, and all Americans, should make sure their representatives are fighting t… https://t.co/k4Y9825CjY" +06/11/2018,Politicians,@SenSchumer,"RT @SenMarkey: The repeal of #NetNeutrality officially goes into effect today, but the fight is far from over. + +The people saying we can’t…" +06/11/2018,Politicians,@SenSchumer,Every Republican who opposed this vote will own any and all of the damaging consequences of the FCC’s horribly misguided decision. +06/11/2018,Politicians,@SenSchumer,"It's now as clear as day to every American that w/the exception of 3 @SenateGOP mbrs, their GOP reps in the Congres… https://t.co/6Lh38eYbOQ" +06/11/2018,Politicians,@SenSchumer,That’s exactly why the entire Senate Democratic caucus sent a letter last week urging @SpeakerRyan to schedule a vo… https://t.co/CDki7wlDIC +06/11/2018,Politicians,@SenSchumer,"By refusing to bring up the Senate-passed, bipartisan resolution to restore #NetNeutrality House GOP leaders gave a… https://t.co/ymAHhANuEp" +06/11/2018,Politicians,@SenSchumer,RT @PIX11News: Sen. Schumer pushes for more suicide prevention federal funding https://t.co/8PZyZBFAjG https://t.co/bvZo7WjOoI +06/11/2018,Politicians,@SenSchumer,"Over the past couple of weeks, we have lost some very well-known people, near and dear to so many in New York, but… https://t.co/XSndKks7y6" +06/11/2018,Politicians,@SenSchumer,"Statistics show that if we can reach troubled people before, even in the midst of suicide ideation, there is a good… https://t.co/t5nBr9XwnM" +06/10/2018,Politicians,@SenSchumer,RT @AngeloRoefaro: TONIGHT AT 8PM: “Recent tragedies and the CDC report on increased suicide rates are the kinds of things that put a giant… +06/09/2018,Politicians,@SenSchumer,Are we executing Putin’s diplomatic and national security strategy or AMERICA’s diplomatic and national security st… https://t.co/Rntju0HX8j +06/09/2018,Politicians,@SenSchumer,RT @politico: Update: Trump said the U.S. will not sign a joint communique with other G-7 countries https://t.co/1mNF3YHYhr +06/09/2018,Politicians,@SenSchumer,".@realDonaldTrump, let me take a second to update my numbers. Special Counsel Mueller’s investigation has now eith… https://t.co/Yls00HDtP4" +06/08/2018,Politicians,@SenSchumer,"RT @mainstreetweets: Last year, the @HouseGOP voted to rip protections away from millions of Americans with pre-existing conditions. Now, t…" +06/08/2018,Politicians,@SenSchumer,"RT @RonWyden: .@realDonaldTrump & his admin have asked the courts to let insurance companies to deny care, charge more, and discriminate ag…" +06/08/2018,Politicians,@SenSchumer,Yet again the Trump Admin is sabotaging your health care. We’re urging @realDonaldTrump & @TheJusticeDept to revers… https://t.co/zZk2r3dtVm +06/08/2018,Politicians,@SenSchumer,"Readmitting Russia to the G-7 would reward Vladimir Putin for actions the U.S. and its allies have condemned, and w… https://t.co/zQm2kI0bT0" +06/08/2018,Politicians,@SenSchumer,"The president’s support for inviting Russia back into the G-7, just after they meddled in the election to support h… https://t.co/bj4tUVrnTm" +06/08/2018,Politicians,@SenSchumer,"We need the president to be able to distinguish between our allies and adversaries, and to treat each accordingly.… https://t.co/W1x6l4OtQA" +06/08/2018,Politicians,@SenSchumer,".@realDonaldTrump is turning our foreign policy into an international joke, doing lasting damage to our country, wi… https://t.co/Hs18Z184hB" +06/08/2018,Politicians,@SenSchumer,"A little less tweeting, a little more preparing for the summit. Our points are important ones that should be consid… https://t.co/eAWLgm1KGV" +06/08/2018,Politicians,@SenSchumer,RT @SenBobCasey: The Trump Administration and Congressional Republicans are coming after protections for those with pre-existing conditions… +06/08/2018,Politicians,@SenSchumer,"RT @SenJackReed: In their quest to undermine the ACA, the Trump Admin is now trying to throw out protections for people with pre-existing c…" +06/08/2018,Politicians,@SenSchumer,"RT @axios: The legal challenge at issue here may be somewhat of a long shot on the merits. But if it does ultimately succeed, it could toss…" +06/08/2018,Politicians,@SenSchumer,RT @USATODAY: The Trump administration says key parts of Obamacare — including the provisions protecting those with pre-existing conditions… +06/08/2018,Politicians,@SenSchumer,"RT @CNN: The Trump administration won't defend central provisions of the Affordable Care Act, saying in a legal filing that key parts of th…" +06/08/2018,Politicians,@SenSchumer,The Trump administration once again is allowing premiums to go up and middle class Americans to pay more. The ACA i… https://t.co/4XgMh8DId7 +06/07/2018,Politicians,@SenSchumer,RT @SenFeinstein: News that President Trump is ignoring counterintelligence procedures by using unsecured cell phones is unacceptable. This… +06/07/2018,Politicians,@SenSchumer,"With ICBMs and nuclear warheads in the hands of North Korea, the situation is far too dangerous for seat of the pan… https://t.co/yfcAK5gnlT" +06/07/2018,Politicians,@SenSchumer,"RT @SenMarkey: 21 days ago, we proved @AjitPaiFCC and the special interests wrong and passed the resolution to save #NetNeutrality in the S…" +06/07/2018,Politicians,@SenSchumer,RT @SenStabenow: Access to the internet is not a luxury; it’s a necessity for people in Michigan. Last month I joined Republicans and Democ… +06/07/2018,Politicians,@SenSchumer,"We passed our #NetNeutrality CRA in the Senate, & @SenateDems are still in the fight. Today we wrote to… https://t.co/cgdzbNHmUm" +06/07/2018,Politicians,@SenSchumer,Today @SenateDems urged @SpeakerRyan to put middle-class families over special interests & vote on the bipartisan S… https://t.co/uRm5OZ6gAh +06/07/2018,Politicians,@SenSchumer,The time has come to decriminalize marijuana. It’s simply the right thing to do. https://t.co/uVJIyzVedt +06/07/2018,Politicians,@SenSchumer,".@realDonaldTrump should be aiming his trade fire at China, but instead he inexplicably aims it at allies like Cana… https://t.co/LtzEPm91ZJ" +06/07/2018,Politicians,@SenSchumer,"RT @DandC: With rail shipments of crude oil on the upswing, Schumer pushes for tighter rules https://t.co/KUBW9nji0A #ROC" +06/07/2018,Politicians,@SenSchumer,"It is clear to me that we need an all-of-the-above approach to safety, so I am urging @USDOT & @ENERGY to finally p… https://t.co/RauFXFyA28" +06/07/2018,Politicians,@SenSchumer,"“If the facts are against you, argue the law. If the law is against you, argue the facts. If the law and the facts… https://t.co/PpdzPV5GNh" +07/02/2018,Politicians,@timkaine,I’ve been having a great time campaigning with our amazing congressional candidates across Virginia the past few da… https://t.co/yF0GiVK6EB +06/30/2018,Politicians,@timkaine,"Today I rallied with hundreds of Virginians in Richmond to voice a simple message: #FamiliesBelongTogether. + +The Tr… https://t.co/qfEzTojVZV" +06/29/2018,Politicians,@timkaine,We have massive inequities in our criminal justice system and we’ve over-incarcerated too many Americans – especial… https://t.co/iBCDfTRRo9 +06/28/2018,Politicians,@timkaine,"An American newsroom should never feel ""like a war zone."" This is awful. My heart breaks for Virginia's neighbors i… https://t.co/LHAi8EYqNb" +06/28/2018,Politicians,@timkaine,"The Constitution is clear: With SCOTUS, both the President and Senate have roles in this process. + +The GOP was cle… https://t.co/DyjMJsiciP" +06/27/2018,Politicians,@timkaine,Thank you @GiffordsCourage for your support -- I am proud to stand with you in the fight against gun violence. Your… https://t.co/fXWAaqt6eO +06/26/2018,Politicians,@timkaine,"Big day - we unanimously (and finally) updated #PerkinsCTE. I've called for this action for years, and today's legi… https://t.co/cDNWnuhkB6" +06/26/2018,Politicians,@timkaine,Disappointed by SCOTUS. Trump's intentions were clear: stoke fear and perpetuate stereotypes. Discrimination based… https://t.co/DLIa6Yvllt +06/26/2018,Politicians,@timkaine,My opponent shares his views on an issue he is bizarrely obsessed with—saying that the Civil War wasn’t about slave… https://t.co/zFIuCoDkrg +06/25/2018,Politicians,@timkaine,"The Trump tariffs are killing U.S. jobs. A trade war with our closest allies continues to make no sense. + +https://t.co/IeX2WSMvAa" +06/22/2018,Politicians,@timkaine,RT @MarkWarner: .@TimKaine and I are demanding answers about what’s going on at this facility in Staunton. https://t.co/KJNKHVzx05 +06/21/2018,Politicians,@timkaine,"Trump's order leaves us with more questions than answers: + +How to ensure kids are safely returned to parents? +When?… https://t.co/6F5wLag6cv" +06/21/2018,Politicians,@timkaine,"Deeply troubled by this report. We need answers on what happened at this facility, and my staff and I are going to… https://t.co/89spCI8voV" +06/21/2018,Politicians,@timkaine,"President Trump's ""action"" today did not end this administration's heartlessness when it comes to families at the b… https://t.co/CZTj23saBm" +06/20/2018,Politicians,@timkaine,"My thoughts on the situation at the border... + +I've been to neighborhoods where gangs prey on children and seen par… https://t.co/NjsSSn8aUX" +06/20/2018,Politicians,@timkaine,RT @MarkWarner: .@TimKaine and I are demanding answers about the Trump Administration’s #FamilySeparation policy. We’ve signed on to legisl… +06/20/2018,Politicians,@timkaine,"The Old Testament instructs the faithful: “When a foreigner resides among you in your land, do not mistreat them...… https://t.co/aQvwcxscMV" +06/20/2018,Politicians,@timkaine,"What we’re seeing at the border is cruel and goes against our values. + +If you’re looking for a way to stop it, cons… https://t.co/oAVuBz7ejH" +06/19/2018,Politicians,@timkaine,Today in 1865 our nation took a tremendous step towards becoming a more perfect union. Celebrating #Juneteenth remi… https://t.co/e512NTRyqn +06/19/2018,Politicians,@timkaine,"RT @SenJohnMcCain: The administration’s current family separation policy is an affront to the decency of the American people, and contrary…" +06/18/2018,Politicians,@timkaine,The real Trump Hotel. https://t.co/PP6nIbzNQR +06/18/2018,Politicians,@timkaine,"A great #FathersDay. + +Church this AM with Anne, my Marine son Nat coming home to Richmond for lunch, calling my Dad… https://t.co/ghnBlMs905" +06/17/2018,Politicians,@timkaine,"On this #FathersDay, put your dad in your mind’s eye. Or your son or daughter. + +Now imagine them being ripped away… https://t.co/r3EIfLzNhB" +06/16/2018,Politicians,@timkaine,My week: Trump tweets that I am a “total stiff.” But he called Kim Jong Un a “very talented man.” I’ll take it! 🤷‍♂️ +06/15/2018,Politicians,@timkaine,"Happy (almost) Father's Day to all the dads and dad jokers out there. Even if your jokes aren't appreciated, you ce… https://t.co/eIqmTVGBV5" +06/15/2018,Politicians,@timkaine,"RT @AnneHolton: Honored to be a part of this day of joy and celebration for the Muslim community. As you end your Ramadan month of fasting,…" +06/15/2018,Politicians,@timkaine,A heartfelt piece about 2 people who met working for me in 2005. I have officiated at 14 weddings of staffers and f… https://t.co/LECxkCc9nA +06/15/2018,Politicians,@timkaine,"New low: AG cites the Bible to support ripping kids away from their parents. + +Wrong on Scripture—“suffer little chi… https://t.co/d4GwRINbBk" +06/14/2018,Politicians,@timkaine,"For those wanting to know about my Senate opponent, take a look at his latest bit of wisdom. + +An empty bucket ratt… https://t.co/KikRhsNmLv" +06/13/2018,Politicians,@timkaine,"Well, I have an opponent. + +He has stoked the fires of bigotry in Virginia. +He's underfunded public schools and heal… https://t.co/0QjTynWuz2" +06/13/2018,Politicians,@timkaine,"RT @TeamKaine: It’s time for #BlueWave2018. + +@TimKaine& +@VangieWilliams& +@ElaineLuriaVA& +@BobbyScott4VA3& +@Donald_McEachin& +@LeslieCockburn…" +06/11/2018,Politicians,@timkaine,@GCV_ArtDirector Looks cheesy! +06/11/2018,Politicians,@timkaine,Help!! Who knows how to photoshop a burger into this?? https://t.co/7LQJNK12MK +06/10/2018,Politicians,@timkaine,"So the administration is now suggesting the CANADIAN LEADER, one of our closest allies, should be condemned to the… https://t.co/1ZpPa6mNKX" +06/10/2018,Politicians,@timkaine,A sad day—we’ve lost a magnificent musician. “Bare Trees” is one of the best LPs ever and Danny Kirwan’s soulful pl… https://t.co/0oeTx5tkMz +06/09/2018,Politicians,@timkaine,"To all the Virginians (and everyone) participating in #Pride this weekend, thank you for sharing your voice and cel… https://t.co/zZh9F0ePVp" +06/08/2018,Politicians,@timkaine,Letting Russia into the G-7 would be like inviting Gallagher to join you at the farmer’s market. https://t.co/BVeMrMsBr3 +06/08/2018,Politicians,@timkaine,Are the Caps the best team in the NHL? OVIously! https://t.co/7F0JUBZAPm +06/07/2018,Politicians,@timkaine,This story shows how this Administration is betraying American values with its shocking treatment of children seeki… https://t.co/zJARP1z42M +06/07/2018,Politicians,@timkaine,"I've long said we should eliminate superdelegates – so ahead of a big DNC meeting Friday, I'm glad to see support g… https://t.co/BRWHTq7Oa4" +06/07/2018,Politicians,@timkaine,"So many Virginians will now get access to health care. This is what happens when Democrats win, and when people com… https://t.co/PPSgiGNnrZ" +06/07/2018,Politicians,@timkaine,"RT @alicelintong: I am so proud to work for @timkaine, a leader who believes deeply in treating every person equally and embracing the stre…" +06/07/2018,Politicians,@timkaine,"Thank you, @NRDC_AF! https://t.co/HiCOb37qbz" +06/07/2018,Politicians,@timkaine,RT @NRDC_AF: Sen. Tim Kaine is an environmental champion who fights for healthy families & a safe environment. He is a tireless advocate fo… +06/06/2018,Politicians,@timkaine,"""Some 400,000 jobs will be lost, with 16 losses for every job created"" by President Trump's tariffs – it's not enou… https://t.co/5t58b5C224" +06/05/2018,Politicians,@timkaine,"RT @FairfaxJustin: Freedom to Rise: June 5, 1798. Exactly 220 years ago today, Simon Fairfax was freed from slavery in Virginia. Today, h…" +06/05/2018,Politicians,@timkaine,"After last night’s win, here’s my prediction for Thursday: https://t.co/QLp9iZK12P" +06/05/2018,Politicians,@timkaine,@AdamBlickstein 🤷‍♂️ +06/05/2018,Politicians,@timkaine,This might surprise some people but I think this is the most polite White House in history. They’re always saying “pardon me.” +06/04/2018,Politicians,@timkaine,I REALLY HOPE THE CAPS WIN TONIGHT. (Is that how this #ALLCAPS thing works?) +06/04/2018,Politicians,@timkaine,"Virginia voters showed up big time in 2017 and now we are able to expand Medicaid to 400,000 more people. Good turn… https://t.co/prqAn8l0aB" +06/02/2018,Politicians,@timkaine,"Upwards of 400,000 Virginians will have access to health care after this momentous week in Virginia. I am so proud… https://t.co/7lhNWPsS8f" +06/02/2018,Politicians,@timkaine,RT @AnneHolton: There’s only one way to greet a Governor the first time you see him after he expanded Medicaid!! https://t.co/yj9M3G6vk0 +06/01/2018,Politicians,@timkaine,Thank you @LCVoters! https://t.co/WzqprcyZ7c +06/01/2018,Politicians,@timkaine,We #WearOrange because far too many can’t today - their lives were taken by gun violence. In our schools and street… https://t.co/xhlA9KiKPW +06/01/2018,Politicians,@timkaine,"From the team that brought you Celebrity Apprentice.... + +It’s Celebrity Cronyism! https://t.co/07kE1DidEM" +05/31/2018,Politicians,@timkaine,"The #spellingbee finals are tonight, so here’s a #tbt to 2013 when I had some fun at a bee myself (and somehow won)… https://t.co/0LxwzOn6PU" +05/31/2018,Politicians,@timkaine,“Wait—what do you believe? What I said at the time or what I am tweeting now a year later after waking up in a cold… https://t.co/OA6nPPctDZ +05/31/2018,Politicians,@timkaine,"I don’t know about you, but occasionally I like to crack open a cold one on a hot day. President Trump’s aluminum t… https://t.co/6Iacgl7PXW" +05/30/2018,Politicians,@timkaine,"Big Democratic turnout in 2017 = health insurance for 400,000 more Virginians. + +Can we do it again in 2018?" +05/30/2018,Politicians,@timkaine,"To the 23 Senators who voted yes: thank you. You are doing right by your constituents and the Commonwealth. Now, we… https://t.co/orsI17DCGm" +05/30/2018,Politicians,@timkaine,BIG NEWS: The Virginia Senate just voted to move forward on Medicaid expansion! The bipartisan vote is a long-overd… https://t.co/q1a7YVmH3j +05/30/2018,Politicians,@timkaine,"@SpaceManAndy @taber @catmancatman864 I'm actually a peanut butter man. Wild, I know." +05/30/2018,Politicians,@timkaine,"Roll Tide, Doug! https://t.co/UwwPetzdWC" +05/30/2018,Politicians,@timkaine,"Medicaid expansion is a no-brainer - it gives millions access to care, grows the economy and creates jobs, and stat… https://t.co/fpy29XrOtA" +05/29/2018,Politicians,@timkaine,"Getting off a plane today, a flight attendant put a small white bag in my hand and simply said “thanks.” I was intr… https://t.co/iysvnSyeaG" +05/29/2018,Politicians,@timkaine,"President Trump's immigration policies tear families apart, leaving innocent children hurt and alone. It's heartles… https://t.co/19BwHYTNcK" +05/28/2018,Politicians,@timkaine,"I love parades. Happy Memorial Day from Portsmouth, Virginia!! 🇺🇸🇺🇸 https://t.co/CoDpjnJBQI" +05/28/2018,Politicians,@timkaine,"On this #MemorialDay, as many of us enjoy precious time with friends and family, let’s all remember those who gave… https://t.co/IikSDadcXF" +05/27/2018,Politicians,@timkaine,"As I worshipped in Hampton Roads this morning, I couldn’t help but consider how Scripture commands compassionate tr… https://t.co/DeT9j4p3TL" +05/26/2018,Politicians,@timkaine,Great to be out on the trail in Hampton Roads this weekend!! https://t.co/ARvY8wzq3k +05/25/2018,Politicians,@timkaine,Federal workers will not be made the scapegoats for this administration’s incompetence and mismanagement. These are… https://t.co/0SPbp7d6QK +05/25/2018,Politicians,@timkaine,Sign of the times - school shootings are so normalized that *this* is what a parent of kids at the MIDDLE school in… https://t.co/yFQMmyRm6h +05/25/2018,Politicians,@timkaine,"Twitter world: I am proud to introduce you to the newest Virginia municipality - “Capitalsville.” + +Its primary expo… https://t.co/GG3lgCtPWt" +05/25/2018,Politicians,@timkaine,At home this evening and this picture caught my eye. Hard to believe it’s been 35 years since @AnneHolton and I gra… https://t.co/XUxKzkOT8P +05/24/2018,Politicians,@timkaine,"This year, I'm especially proud that some of the proposals I've pushed for were included in #FY19NDAA, like address… https://t.co/x8sbVIQyg8" +05/24/2018,Politicians,@timkaine,"Every now and then, the Senate can work like it's supposed to. The bipartisan passage of the #FY19NDAA in the Armed… https://t.co/XmLDJPWk3j" +05/24/2018,Politicians,@timkaine,"Thank you, @MineWorkers! I am proud to fight for you, your health care and pensions, and for economic development a… https://t.co/OrKX9Bipoz" +05/24/2018,Politicians,@timkaine,"With the sad news about Philip Roth’s passing, I suggest reading American Pastoral, The Human Stain, The Plot Again… https://t.co/PmXQHYWDT7" +05/23/2018,Politicians,@timkaine,RT @UNITEDWEDREAM: Find out if you can renew your #DACA TODAY! United We Dream has put a list of resources for you to figure out if you qua… +05/23/2018,Politicians,@timkaine,"Not only is this rank corruption but it threatens U.S. foreign policy. + +We're in dangerous territory when a country… https://t.co/RN5DACdRUn" +05/23/2018,Politicians,@timkaine,"Last night's election results showed Dems are energized, sure. But they also proved we're elevating needed voices i… https://t.co/Ejls9rBroE" +05/23/2018,Politicians,@timkaine,"RT @13NewsNow: Senator Kaine vows to fight for military veterans, spouses https://t.co/tq7tbQHas1 https://t.co/EayPjxA76N" +05/23/2018,Politicians,@timkaine,I am so proud of @SindyBenavides! An amazing Latina leader who started her public service path on Team Kaine. Vence… https://t.co/xybMwwHabX +05/22/2018,Politicians,@timkaine,A victory for equality. https://t.co/mcKaKWcgu9 +05/22/2018,Politicians,@timkaine,"Meetings. Did some interviews with Virginia media. Some Armed Services and HELP committee work. + +The usual. + +You? https://t.co/rbDCW9JnAF" +05/22/2018,Politicians,@timkaine,Too real. https://t.co/A8fjFNJ2Oh +05/22/2018,Politicians,@timkaine,Thank you @SierraClub and @VASierraClub! I will never stop fighting to protect our environment and standing up agai… https://t.co/wexw0UteJM +05/22/2018,Politicians,@timkaine,"This is heartbreaking - no child should face bullying or cruelty like this just for speaking up. + +To all the kids o… https://t.co/k651HgaCDL" +05/22/2018,Politicians,@timkaine,"Thank you, @kelly_clarkson. The NRA doesn’t just want a “moment of silence,” they want decades of silence and a nat… https://t.co/lhtHoNyrFp" +05/22/2018,Politicians,@timkaine,"As a lawyer, I sued to stop discrimination and hold companies accountable. + +As a senator, I'm appalled that SCOTUS… https://t.co/As2mUWJVTg" +05/21/2018,Politicians,@timkaine,"Dream job: bandleader on @BarackObama's late night show. + +I'd be his @paulshaffer any day. https://t.co/zW39M86B3s" +05/20/2018,Politicians,@timkaine,"You’re right on one front, @OliverLNorth: these kids aren’t the problem. + +They’re the solution. + +To problems sown b… https://t.co/g8tEnxbCTW" +05/19/2018,Politicians,@timkaine,We have to do more to help those suffering from addiction. Powerful conversation yesterday at the Chesterfield jail… https://t.co/usQChqOLif +05/18/2018,Politicians,@timkaine,"22 school shootings in 2018. + +3 in the last week. + +How many times must our hearts break hearing news like this - th… https://t.co/D7ErJjhF4v" +05/18/2018,Politicians,@timkaine,"These partisan attacks on Planned Parenthood—which provides basic health care to more than 8,000 people a day—are d… https://t.co/Rdv7WOuL5y" +05/17/2018,Politicians,@timkaine,RT @GovernorVA: Glad @timkaine and @markwarner are pushing for action to address the double-digit health insurance rate increases Virginian… +05/17/2018,Politicians,@timkaine,We Democrats should also be proud of the way @TomPerez has led this thorough reform effort - earnestly bringing tog… https://t.co/fQTyZGtCS7 +05/17/2018,Politicians,@timkaine,"I’ve said it before, and I’ll say it again: we Democrats should get rid of superdelegates once and for all. Let’s h… https://t.co/x1XxOSUvu6" +05/16/2018,Politicians,@timkaine,"We just voted to keep the internet FREE and OPEN! Big win for #NetNeutrality in the Senate, thanks to you raising y… https://t.co/H4OZWmPF6y" +05/16/2018,Politicians,@timkaine,"Given the NRA's ubiquitous presence in U.S. elections, it should alarm every American that the bipartisan Senate In… https://t.co/RYFxWQTAU4" +05/16/2018,Politicians,@timkaine,"RT @SenBennetCO: From @washingtonpost Ed Board: “Compassionate & realistic” health care proposals exist. One of them is #MedicareX, my plan…" +05/15/2018,Politicians,@timkaine,"As #Ramadan begins tonight, I want to wish all who observe a blessed and peaceful month. Ramadan Mubarak!" +05/15/2018,Politicians,@timkaine,Richmond’s own Tom Wolfe was a staggering talent. I met him once and never will forget it. Sorry to hear today’s ne… https://t.co/rpplvAxcFt +05/14/2018,Politicians,@timkaine,🚨Everyone in Northern Virginia: please take every precaution and be safe as extreme weather covers the region tonig… https://t.co/cxYnikYgkB +05/14/2018,Politicians,@timkaine,"Cancer: prepare to meet the same fate as those young men Harry TKO'd as an amateur boxer. He's a fighter, and you d… https://t.co/nECqR67z86" +05/14/2018,Politicians,@timkaine,"We over-incarcerate in America—exploding the prison population, and undermining faith in our criminal justice syste… https://t.co/N69tFCJW51" +05/14/2018,Politicians,@timkaine,"Here's a little Mother's Day Monday Morning Moment of Zen -- from a walk with @AnneHolton in New York yesterday, wh… https://t.co/GHgony0uKi" +05/13/2018,Politicians,@timkaine,"Some of the best advice my mom Kathy ever gave me is: ""If you want to be right, be a pessimist. If you want to do r… https://t.co/25BEnWvmdf" +05/12/2018,Politicians,@timkaine,"Can't wait to rock out with @tommy_stinson, founder of @bashnpop, at this great benefit for Little League tonight!… https://t.co/YRVEwj5DQY" +05/11/2018,Politicians,@timkaine,Military spouses make sacrifices every day to support our troops. We’ve got to do all that we can to support them—l… https://t.co/k0ef54mA2a +05/11/2018,Politicians,@timkaine,"Gina Haspel's role in the CIA's use of torture was neither minor nor incidental. For example, she personally wrote… https://t.co/PJaCVoQYql" +05/11/2018,Politicians,@timkaine,Among the many casualties of the war on terror was the moral judgment of those in government complicit in the use o… https://t.co/5TG5iJ2Hsf +05/10/2018,Politicians,@timkaine,"RT @WAVY_News: Sen.@timkaine's provisions to ""America's Water Infrastructure Act"" may be the first step in saving Tangier Island and coasta…" +05/10/2018,Politicians,@timkaine,"RT @AnneHolton: When my dad ran for governor in 1969, 16-year-old Joann in Grayson County created a scrapbook of his campaign for a high sc…" +05/10/2018,Politicians,@timkaine,"""There are a variety of factors feeding the rising costs... The most immediate is that the administration under Pre… https://t.co/erySYLo2AT" +05/10/2018,Politicians,@timkaine,"RT @virginiavfw: We like to say thanks when elected officials do things that help veterans. Today, we thank @MarkWarner & @timkaine for sec…" +05/09/2018,Politicians,@timkaine,RT @jessalynsays: attn news-seekers on twitter: @timkaine’s instagram is where you find the inside scoop on extremely important meetings. e… +05/09/2018,Politicians,@timkaine,"Good question. I actually have new, bipartisan legislation to prevent the president from unilaterally starting a wa… https://t.co/6KuXwlKdJc" +05/09/2018,Politicians,@timkaine,"Hang on. + +1) The Iran deal *explicitly* precluded Iran from developing a nuke. + +2) Trump unilaterally just blew up… https://t.co/lhVT1jUv8l" +05/09/2018,Politicians,@timkaine,RT @Voices4Troops: Sen. @timkaine addresses #MOAA members during the 34th annual #Virginia Congressional Delegation Luncheon. MOAA members… +05/09/2018,Politicians,@timkaine,Today we’re filing a petition to force a vote to save #NetNeutrality. Every Dem Senator + @SenatorCollins supports… https://t.co/aVsP3PcNtO +05/08/2018,Politicians,@timkaine,"The Iran deal states that “under no circumstances will Iran ever seek, develop, or acquire any nuclear weapons.” Wh… https://t.co/qSNqZmuFUX" +05/08/2018,Politicians,@timkaine,"RT @CSGV: .@CSGV is proud to endorse our friend and ally @timkaine for reelection to the US Senate. + +Kaine has repeatedly beaten @NRA in t…" +05/07/2018,Politicians,@timkaine,"Students continue to lead the conversation on gun violence prevention - today, they offered their thoughts at a rou… https://t.co/PiV0aDgMQc" +05/07/2018,Politicians,@timkaine,Flashback to my teaching days - this morning I got to co-teach a government class at @ForestParkHSVA with their fan… https://t.co/uGd748odzn +05/06/2018,Politicians,@timkaine,We can be critical of the government of Iran or any nation and take steps - like sanctions - to punish dangerous le… https://t.co/Qaexzy93bk +05/06/2018,Politicians,@timkaine,I gave the commencement address at Radford University yesterday - but the story of the day was 62 year-old graduate… https://t.co/vJYPWEiZNL +05/04/2018,Politicians,@timkaine,Our country opened its arms to these Hondurans seeking refuge and they’ve made endless contributions to our culture… https://t.co/lgsMIFOckO +05/03/2018,Politicians,@timkaine,"I'll take ""Tough Choices"" for $1000, Alex. https://t.co/woUd2tslsE" +05/02/2018,Politicians,@timkaine,We can't let up in our efforts to stop widespread sexual harassment. Thank you to @campaign_purple for spreading th… https://t.co/2NPURCnbce +05/02/2018,Politicians,@timkaine,VP showing comedic chops. Speaker at next year’s WHCD? https://t.co/sOfAEmAVn8 +04/30/2018,Politicians,@timkaine,To the White House Correspondents Association: if you’re looking for a new kind of “Standup” Comedy for next year’s… https://t.co/QG78L7IQUr +04/30/2018,Politicians,@timkaine,RT @washingtonpost: Op-ed from Sen. Tim Kaine: Congress must take away Trump’s unlimited authority to wage war https://t.co/l0cdQzhGjT +04/27/2018,Politicians,@timkaine,"I'm heartened to see the progress between South Korea and North Korea today. Dialogue and robust diplomacy are key,… https://t.co/H3Sh8DyukB" +04/26/2018,Politicians,@timkaine,"I voted against an anti-science person to head a science agency. + +I voted against an anti-education person to head… https://t.co/gwx1M8gYXI" +04/26/2018,Politicians,@timkaine,RT @Evanne8News: I was so impressed by the career and technical education program at @HenricoSchools. This is the auto class! Sen. @TimKain… +04/26/2018,Politicians,@timkaine,"Senator McConnell: this came out of committee with a bipartisan, two-thirds majority vote. Democrats and Republican… https://t.co/OzxojzSoJU" +04/25/2018,Politicians,@timkaine,"All these court rulings on DACA can be confusing. Here’s what you need to know: + +1️⃣If you already have DACA status… https://t.co/NORECmbuUh" +04/25/2018,Politicians,@timkaine,"Mandela’s words ring true: “A nation should not be judged by how it treats its highest citizens, but its lowest one… https://t.co/5PEkp2nHBw" +04/25/2018,Politicians,@timkaine,"As I listen to French President Macron address Congress, I'm struck that it's the same day that the Supreme Court w… https://t.co/fRTuGxK21X" +04/24/2018,Politicians,@timkaine,RT @senrobportman: Today I introduced my bipartisan Creating Quality Technical Educators Act w/@TimKaine @SenCapito & @SenatorBaldwin. Care… +04/24/2018,Politicians,@timkaine,I have serious concerns about the situation along the Mountain Valley Pipeline route. Many are rallying to… https://t.co/EMUFsaxEtg +04/23/2018,Politicians,@timkaine,Proud to celebrate the first ever Barbara Johns Day today in Virginia. She was a pioneer and a patriot who wouldn’t… https://t.co/fzyGdCZSa9 +04/23/2018,Politicians,@timkaine,🚨Special election TOMORROW in #AZ08 - Democrat @hiral4congress is neck-and-neck in a district Trump won by 20+! She… https://t.co/3xmEI2VLjn +04/22/2018,Politicians,@timkaine,"I spent my Saturday in Louisa, Manassas, Fairfax and Arlington and I can tell you this: Dems are fired up and ready… https://t.co/qotwL8rMvI" +04/20/2018,Politicians,@timkaine,"April is Jazz Appreciation Month. Celebrate by listening to Sonny Rollins’ Blue 7. 🎶 + +Great way to start your Frida… https://t.co/ixnRZtxtiS" +04/19/2018,Politicians,@timkaine,"I am asking President Trump to provide his legal rationale for striking Syria. + +Without congressional approval, it… https://t.co/SC63vAzFUD" +04/19/2018,Politicians,@timkaine,39 senators. That’s the most ever—in all of American history—to formally call for the resignation of a Cabinet-leve… https://t.co/y3InZUWOkX +04/18/2018,Politicians,@timkaine,We reduced the veterans' unemployment rate because there was a patriotic desire to confront it. We need the same pa… https://t.co/zsbZPEqjfS +04/18/2018,Politicians,@timkaine,"Barbara Bush’s wit, wisdom, and devotion to her family and our country earned her the admiration of millions, and h… https://t.co/jW6mwF9XBk" +04/17/2018,Politicians,@timkaine,"Why do we require Congress rather than the Executive to start war? + +“[M]onarchs will often make war when their nati… https://t.co/q2qAi7czhH" +04/16/2018,Politicians,@timkaine,"For too long, Congress has given Presidents a blank check to wage war. It’s time for that to stop. + +We’ve introduce… https://t.co/pxqbFNrHBS" +04/16/2018,Politicians,@timkaine,"RT @nowthisnews: Liviu Librescu survived the Holocaust as a young boy. + +Decades later, he lost his life to senseless gun violence as a pro…" +04/16/2018,Politicians,@timkaine,"11 years ago today was the worst day of my life, when we lost 32 innocent lives at Virginia Tech in what was then t… https://t.co/sbm61Rmju8" +04/15/2018,Politicians,@timkaine,"As Mr. Fogerty sang, doo doo doo, lookin’ out my back door. Happy Sunday - and Spring! https://t.co/z17ZnKm854" +04/15/2018,Politicians,@timkaine,In case you ever wondered... Here’s what I see when I appear on @FaceTheNation from the @wcve studio in Richmond’s… https://t.co/rEEgrQnxgM +04/15/2018,Politicians,@timkaine,"Now more than ever, we need a Secretary of State who will stand strong for vigorous diplomacy, not exacerbate Presi… https://t.co/mjtmNMc3Tq" +04/14/2018,Politicians,@timkaine,"If President Trump really cared about Syria’s humanitarian crisis..... + +https://t.co/vLKeiFHEBd" +04/14/2018,Politicians,@timkaine,Of course citizen Trump said President Obama couldn’t strike Syria without congressional approval—but now President… https://t.co/aZuzlJfCXm +04/14/2018,Politicians,@timkaine,Trump’s decision to launch airstrikes against Syria without Congress’s approval is illegal. We need to stop giving… https://t.co/xl6PWKCpLs +04/13/2018,Politicians,@timkaine,He helped found our nation and a small school in Charlottesville. Happy 275th birthday to Thomas Jefferson - Virgin… https://t.co/AJ20FnFNAK +04/13/2018,Politicians,@timkaine,RT @BuzzFeedNews: On today's @AM2DM: We're talking to Senator Tim Kaine and Sally Kohn ⬇️ https://t.co/0lwyfhrIvn +04/13/2018,Politicians,@timkaine,President Trump resurrects long forgotten case—set to pardon former WH aide convicted of obstructing justice. Seems… https://t.co/TdIsESzAJE +04/13/2018,Politicians,@timkaine,I wouldn’t challenge him to a snowball fight but I’m glad to welcome him to Virginia! Thanks for coming out to Alex… https://t.co/H8kBXKauso +04/12/2018,Politicians,@timkaine,The message is clear: there’s growing consensus that we need to act to #ProtectMueller — and we need to do it now.… https://t.co/QZyT0bq4I5 +04/12/2018,Politicians,@timkaine,"Instead of sabotaging our health care system because you couldn’t pass repeal, if you want to help Americans get mo… https://t.co/5STdDaHv69" +04/11/2018,Politicians,@timkaine,"Happy 50th birthday to the #FairHousingAct. As a civil rights attorney, I know the FHA is every bit as important no… https://t.co/QU5PLjqgmd" +04/11/2018,Politicians,@timkaine,"15 months in, and the Trump administration has no Syria strategy. Threats, tweets, one off strikes are not a strate… https://t.co/4784T2QE0O" +04/10/2018,Politicians,@timkaine,We need to pass legislation to #ProtectMueller right away. https://t.co/to0KBaeEcJ +04/10/2018,Politicians,@timkaine,"Assad should face consequences for his atrocities, but Trump is a president, not a king - he needs to come to Congr… https://t.co/nzVj0sULWg" +04/10/2018,Politicians,@timkaine,"RT @USOWomen: On #EqualPayDay today, remember these dates. The pay gap is far wider for women of color as compared to White, non-Hispanic m…" +04/10/2018,Politicians,@timkaine,So we’re asking thousands of troops to leave home and deploy to the border so they can ... clear brush? https://t.co/NLz25VOviv +04/10/2018,Politicians,@timkaine,President Trump won’t call out Russia for attacking the U.S. election but calls a warranted search of his lawyer’s… https://t.co/r2GIx79O6b +04/09/2018,Politicians,@timkaine,It's long past time for Scott Pruitt to go. I opposed his nomination because I knew he'd gut environmental protecti… https://t.co/cHlScX9pHo +04/08/2018,Politicians,@timkaine,"How do you close out a 23-city, 6-day, nonstop campaign launch? By calling in an order to Fat Dragon, my favorite C… https://t.co/B16eanK5FW" +04/07/2018,Politicians,@timkaine,"RT @ianmcnally: When you get a crowd of this size in Harrisonburg on a rainy Saturday, it tells you two things. + +1) Virginians are unified…" +04/07/2018,Politicians,@timkaine,"Pour me one! See you soon, Harrisonburg. 🍻 + +#NationalBeerDay https://t.co/ZqY5sAD5Wz" +04/07/2018,Politicians,@timkaine,RT @snyderceramics: I continue to grow more and more impressed by @timkaine. I was one of those 425+ people there at this campaign kickoff… +04/07/2018,Politicians,@timkaine,Wow what a way to start Day 6 of our campaign kickoff tour across Virginia - 425+ Northern Virginians at a rally in… https://t.co/aQp1MmoUVy +04/07/2018,Politicians,@timkaine,"Need a hip or knee replacement? What about birth control or a vaccine? How about a filling for a cavity? If so, Tru… https://t.co/zxH9wyAnJe" +04/07/2018,Politicians,@timkaine,"Day 5 of my campaign kickoff in the books - from Loudoun to Fairfax, Prince William, and the Northern Neck. Virgini… https://t.co/RZkGhFcUH8" +04/07/2018,Politicians,@timkaine,"RT @MarkHerringVA: It was a pleasure to join our incredible Senator @timkaine for important discussions on good jobs, healthcare, education…" +04/05/2018,Politicians,@timkaine,"RT @jessalynsays: if you’re not following @timkaine on instagram, you’re truly missing out - bitmojis, harmonica, polls, selfies, boomerang…" +04/05/2018,Politicians,@timkaine,"Just toured IKEA’s Danville manufacturing plant. Asked if the tariffs worry them. They’re ok for now, but because t… https://t.co/gpj43185zb" +04/05/2018,Politicians,@timkaine,Who’s gonna get slammed by the Trump tariffs? Virginia farmers! Agriculture is our largest private industry: we pro… https://t.co/yzbhYnh564 +04/05/2018,Politicians,@timkaine,"“People living with disabilities, serious illness, and the frailty of old age are bracing to lose caregivers” due t… https://t.co/wKzZbBi7zo" +04/05/2018,Politicians,@timkaine,Back home in Richmond to hit the hay but we closed out our 16-hour day really strong: with a rally in my wife Anne’… https://t.co/7kQHxtqLzA +04/04/2018,Politicians,@timkaine,RT @ChrisHurstVA: A huge thank you to everyone who came out to today’s gun violence policy discussion with @timkaine and a fantastic panel.… +04/04/2018,Politicians,@timkaine,"RT @IanSams: Packed house of 400 in Blacksburg for @timkaine event on gun violence, just steps away from Virginia Tech’s campus, where 11 y…" +04/04/2018,Politicians,@timkaine,"We can improve health care in Southwest Virginia by: + +1️⃣ Expanding Medicaid +2️⃣ Passing my public option plan “Med… https://t.co/zuUrvDbSeu" +04/04/2018,Politicians,@timkaine,"I was only 10, but I vividly remember the day we lost Martin Luther King Jr and the heartbreak we felt as a nation.… https://t.co/Fi5v33G83Q" +04/04/2018,Politicians,@timkaine,RT @FairfaxJustin: Had a blast introducing dear friend Senator @timkaine at a high-energy Kaine 2018 rally in Newport News! Let’s re-elect… +04/04/2018,Politicians,@timkaine,"First it was a military parade to entertain himself, now it’s deploying troops to the border to intimidate immigran… https://t.co/JcJUlLkuNJ" +04/04/2018,Politicians,@timkaine,"I'm on the road this morning, heading southwest to start Day 3 of our tour with breakfast in Big Stone Gap - and I… https://t.co/rDzBMDYFTA" +04/04/2018,Politicians,@timkaine,Today only got better—met 100+ @_HamptonU students for a Q&A and closed out with a Newport News rally with… https://t.co/mZTMwem5dA +04/04/2018,Politicians,@timkaine,RT @KDongo: Day 2 of @timkaine epic re-election launch. Norfolk with @BobbyScott @RalphNortham Portsmouth with @SenLouiseLucas Hampton with… +04/04/2018,Politicians,@timkaine,"RT @LevarStoney: I support the US Senate candidate that supports: + +Jobs for ALL +Healthcare for ALL +Education for ALL +Security for ALL +Equal…" +04/04/2018,Politicians,@timkaine,RT @RalphNortham: There's no one better for Virginia than my friend @timkaine. Good to be with him in Norfolk as he kicks off his campaign!… +04/03/2018,Politicians,@timkaine,"Great day so far in Virginia Beach and Norfolk—roundtable conversation with veterans and military families, then a… https://t.co/aDiz5NjzST" +07/02/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich on Democrats calling to abolish ICE agents: ""This is one of those issues that's gonna blow up and be enormo…" +07/02/2018,Politicians,@newtgingrich,Why are #liberals so violent? Great piece by @CraigSBPA ➡️https://t.co/6Aa7Y6Q68p +07/02/2018,Politicians,@newtgingrich,Judge Amy Coney Barrett would make an outstanding Supreme Court Justice. Her clarity and intellectual strength in t… https://t.co/PamcWxaw0G +07/02/2018,Politicians,@newtgingrich,"Socialism is back, and it's taking over the #Democratic Party https://t.co/I1VIxoRHLs" +07/02/2018,Politicians,@newtgingrich,Flashback: Chris Matthews Stumps Key Democrats When He Asks the Difference Between a Socialist and a Democrat https://t.co/MGq892THDz +07/02/2018,Politicians,@newtgingrich,"RT @USinHolySee: On behalf of @USinHolySee, Ambassador @CallyGingrich congratulates Blessing Okoedion, one of the 2018 @StateDept #TIPRepor…" +07/01/2018,Politicians,@newtgingrich,"The Bay of Pigs invasion was an enormous defeat for the US, but what if it had been successful? I discuss what coul… https://t.co/v1Sk7X5Cye" +07/01/2018,Politicians,@newtgingrich,"In Paris almost 100,000 people gathered to demand the replacement of the Iranian dictatorship. The Free Iran rally… https://t.co/AYmwLtVtDb" +07/01/2018,Politicians,@newtgingrich,Wrote my latest #newsletter on one of my favorite topics: #dinosaurs. Read it here: https://t.co/usegqiSMmh https://t.co/Oa2j3Q7apR +06/30/2018,Politicians,@newtgingrich,"New episode: This week on ""What If? History that Could've Been?"" I discuss what might've happened had the Bay of Pi… https://t.co/CrGuPwLhMM" +06/29/2018,Politicians,@newtgingrich,There absolutely needs to be a public Strzok hearing. The American people deserve to know if the top levels of FBI… https://t.co/vxm8A7lJFb +06/29/2018,Politicians,@newtgingrich,.⁦⁦⁦⁦@GallupNews⁩ — Snapshot: Americans’ Views of Job Market Remain Upbeat https://t.co/m4MXSzp2FT +06/29/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I attended the Papal Mass this morning on the feast of Saints Peter and Paul. https://t.co/QG6ErNZnZx +06/28/2018,Politicians,@newtgingrich,Great piece by @jackiecushman on why Americanism is important. https://t.co/SaZmW0QOoB +06/28/2018,Politicians,@newtgingrich,.@eScarry correctly points out that the country's biggest newspapers have no space for Trump supporters. https://t.co/6gcygFeqVi +06/28/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I attended the consistory at St. Peter’s today where Pope Francis installed 14 new cardinals. https:/… +06/28/2018,Politicians,@newtgingrich,"Great bipartisan work passing H.R. 6, The SUPPORT for Patients and Communities Act, out of the House. Now it is up… https://t.co/rn3IkLG337" +06/28/2018,Politicians,@newtgingrich,Joining @foxandfriends coming up at 7:30aET. Watch on @FoxNews. https://t.co/OBrdRpOdL4 +06/27/2018,Politicians,@newtgingrich,While the Left wants the Constitution be made malleable so it can be interpreted to meet their current political go… https://t.co/QUFbNGdqdM +06/27/2018,Politicians,@newtgingrich,"On #immigration, Democrats give Trump the upper hand — again -- ⁦@marcthiessen⁩ https://t.co/ysu5LgfvwJ" +06/27/2018,Politicians,@newtgingrich,"The Radical wing of the Democratic Party is defeating the ‘progressive’ wing! Open borders, abolish border and cust… https://t.co/NZsv9cGsjn" +06/27/2018,Politicians,@newtgingrich,I’ll be speaking at the #FreeIran2018 convention in Paris on June 30 to let the ppl of Iran know that… https://t.co/sKv5TlLWf4 +06/27/2018,Politicians,@newtgingrich,"Thanks To #TaxCuts, Companies' Overseas Profits Now Flooding Back To U.S. https://t.co/jdHJSuqQOL" +06/26/2018,Politicians,@newtgingrich,"Meet Mystery FBI ""Agent 5"" Who Sent Anti-Trump Texts While On #Clinton Taint Team https://t.co/jBYq81VwNS" +06/26/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was deeply moved by the stories shared on behalf of the #Yazidi and #Rohingya people at yesterda… +06/26/2018,Politicians,@newtgingrich,"RT @USinHolySee: The US Embassy to the Holy See would like to extend its sincerest thanks to Cardinal #Parolin, the Vatican’s Secretary of…" +06/25/2018,Politicians,@newtgingrich,Great to join @CallyGingrich at @USinHolySee #ReligiousFreedom Symposium today. https://t.co/vvp8uAzwC2 +06/25/2018,Politicians,@newtgingrich,Maxine Waters and the totalitarian thugs of the left remind me of the scenes in On the Water Front where the corrup… https://t.co/GnU5QQ3VsX +06/25/2018,Politicians,@newtgingrich,Here's how the Trump boom is igniting small business. https://t.co/byn9dVdmm5 +06/24/2018,Politicians,@newtgingrich,"What if Nixon had won the TV debate in 1960? Watch the latest episode of my @facebook show, ""What If? History that… https://t.co/hbF2FPmDfd" +06/23/2018,Politicians,@newtgingrich,The increasing personal nastiness toward people who work for President Trump reflects the left’s understanding that… https://t.co/x0DmPtt3sM +06/22/2018,Politicians,@newtgingrich,.@TIME showed us once again why so many Americans no longer trust the news media. People are sick of the nonstop di… https://t.co/cAQocCcGWf +06/22/2018,Politicians,@newtgingrich,RT @Vanessa45200499: @MJRagain @realDonaldTrump I recommend Newt Gingrich’s book ‘Trump’s America’ so you can educate yourself on the incre… +06/22/2018,Politicians,@newtgingrich,"RT @ckrumpe: “Trump’s America” is a wonderful book, written by Newt Gingrich. So well written with answers as to why things are/were done t…" +06/22/2018,Politicians,@newtgingrich,RT @AviationWeek: Newt Gingrich writes in Aviation Week about a blend of reusable rockets and hypersonic-vehicle technologies bringing the… +06/22/2018,Politicians,@newtgingrich,"RT @jackiecushman: RIP Charles Krauthammer. A great thinker, a beacon of light , who led an amazing life overcoming obstacles, and provid…" +06/22/2018,Politicians,@newtgingrich,Does the Time cover falsely depicting the young girl as victim count as FAKE NEWS? When everyone agrees the cover i… https://t.co/JcwangRL4E +06/21/2018,Politicians,@newtgingrich,Charles Krauthammer led a remarkable life. His intellect and extraordinary analysis will be remembered for generati… https://t.co/rnM7PHP6Kx +06/21/2018,Politicians,@newtgingrich,"My @facebook show, ""What If? History that Could've Been"" is back for Season 3! Watch the season premiere: What if N… https://t.co/wgBYMCs0dF" +06/21/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity Tensions on the House floor explode over immigration … .@NewtGingrich joins Sean NEXT https://t.co/nWbrncNgfh +06/21/2018,Politicians,@newtgingrich,Joining @HARRISFAULKNER on @OutnumberedOT next. Watch on @foxnews. +06/21/2018,Politicians,@newtgingrich,Answering your questions live on @facebook now. Ask here: https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,Alzheimer's will be single largest cost center in both government and private sector unless we find a cure. We shou… https://t.co/CavsCC0v4R +06/21/2018,Politicians,@newtgingrich,The key to rethinking the health system is focusing on innovation. Focus on breakthroughs. Cures and preventative t… https://t.co/wtO0XjksmO +06/21/2018,Politicians,@newtgingrich,We need invention not regulation. https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"We need lean, innovative, and effective government. Big bureaucracies don't work. Discussing now live on @facebook: https://t.co/Hgg5IyjggD" +06/21/2018,Politicians,@newtgingrich,"As a matter of public policy we should be using technological innovation to develop new ideas, new solutions, new s… https://t.co/Su4l5hAhIH" +06/21/2018,Politicians,@newtgingrich,Have a question for me on innovation? Ask now live on @facebook ➡️https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"Bureaucracies are not good at solving problems, and they're definitely not better at inventing a better future. Liv… https://t.co/RLCMTHLj00" +06/21/2018,Politicians,@newtgingrich,Live now on @facebook discussing innovation and our future. Watch here: https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich: ""The president's tried to follow a path that says we're going to be humane about the children, but we're n…" +06/21/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to present a copy of the newly released International #ReligiousFreedom Report to #C… +06/20/2018,Politicians,@newtgingrich,"This week, @potus and @VP showed us how serious and determined this administration is about launching America into… https://t.co/EOJPK73bjh" +06/20/2018,Politicians,@newtgingrich,"RT @SteveForbesCEO: .@newtgingrich ’s new series: Using Innovation, Not Big Government, To Solve Our Biggest Challenges is tomorrow @10:30…" +06/20/2018,Politicians,@newtgingrich,Writing today's newsletter on the new U.S. Space Force and what it means for our future. Sign up to receive it here… https://t.co/A0pK4lcO7Q +06/20/2018,Politicians,@newtgingrich,RT @CliffordDMay: My @WashTimes column on the bunker buster video blockbuster that Trump screened for Kim: https://t.co/GVuEALxvmr +06/20/2018,Politicians,@newtgingrich,RT @nixonfoundation: Photos from inside Dr. Henry Kissinger's birthday party we hosted tonight in New York City. Happy 95th! https://t.co/Y… +06/20/2018,Politicians,@newtgingrich,Great to have you all there! https://t.co/RtudmQOU9B +06/20/2018,Politicians,@newtgingrich,Joining @IngrahamAngle coming up at 10:15pET to talk immigration and more. Watch on @FoxNews. +06/19/2018,Politicians,@newtgingrich,The IG report makes one thing clear: The American Left is completely comfortable with corruption -- as long as it's… https://t.co/iT55kLdL9p +06/19/2018,Politicians,@newtgingrich,A Health Fix For Mom and Pop Shops https://t.co/ZZOtqaWUyw @WSJ +06/19/2018,Politicians,@newtgingrich,Joining @seanhannity coming up next at 9:30pET. Watch on @FoxNews. +06/18/2018,Politicians,@newtgingrich,".@potus is systematically & methodically demolishing Obama’s entire legacy. For 8 yrs, we heard excuses as to why G… https://t.co/KwzgsCLs7R" +06/18/2018,Politicians,@newtgingrich,"Join me tonight at 7pET at Barnes & Noble in Ashburn, VA. Will be signing copies of my new #1 bestseller, Trump's A… https://t.co/xmpz26GhGU" +06/18/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity In-depth reaction to Thursday’s IG report with .@NewtGingrich as he joins Sean NEXT +06/18/2018,Politicians,@newtgingrich,"Great weekend! Found out my new book, Trump's America is a #1 best seller in @PublishersWkly, @WSJ, and… https://t.co/ZfBpdU12pK" +06/18/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to meet with Polish Secretary of State Plenipotentiary for International Dialogue An… +06/18/2018,Politicians,@newtgingrich,"Join me tonight at Barnes & Noble in Ashburn, VA for a Trump's America book signing. Hope to see you there!… https://t.co/ex0J7WfzSX" +06/17/2018,Politicians,@newtgingrich,"@CallyGingrich Thank you, @CallyGingrich!" +06/17/2018,Politicians,@newtgingrich,Thanks for all the birthday wishes! Great day celebrating in Roma with @callygingrich! https://t.co/OCnPYg0D2m +06/17/2018,Politicians,@newtgingrich,"Happy Father's Day! One of my favorite photos with my dad, taken in Verdun. https://t.co/XAvnlosGXH" +06/16/2018,Politicians,@newtgingrich,"Thank you to my friend Barry Casselman for this very thoughtful review of my new book, Trump's America. https://t.co/9wx2FKJhvQ" +06/15/2018,Politicians,@newtgingrich,Why the Trump-Kim Summit was nothing short of amazing. ⁦@DailyCaller⁩ https://t.co/Rn7WUVSYdW +06/14/2018,Politicians,@newtgingrich,.⁦@CallyGingrich⁩ and I wish President ⁦@realDonaldTrump⁩ a very happy birthday! https://t.co/iMXTWCvzl5 +06/14/2018,Politicians,@newtgingrich,"RT @bibliovaticana: L'Ambasciatore USA presso la Santa Sede, @CallyGingrich, ha restituito stamattina alla Biblioteca Vaticana l'esemplare…" +06/14/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich: America's support for #Ukraine remains absolute. The United States will utilize diplomacy, sanc…" +06/14/2018,Politicians,@newtgingrich,"RT @ABC: U.S. ambassador to the Vatican will return letter by Christopher Columbus, replacing Vatican copy found to be a forgery. https://t…" +06/14/2018,Politicians,@newtgingrich,"RT @cnni: The United States is returning a copy of a letter by Christopher Columbus back to Vatican officials, after it had been replaced w…" +06/13/2018,Politicians,@newtgingrich,".@POTUS once again proved his strength as a leader on the world stage. He's been president for 18 months, and he's… https://t.co/NEmlWELtIf" +06/13/2018,Politicians,@newtgingrich,"Just found out that my new book, Trump's America, is a @nytimes best seller in its first week! Thank you to everyon… https://t.co/zMSR95fYVU" +06/13/2018,Politicians,@newtgingrich,"RT @marc_lotter: GOOD READ - @newtgingrich: @RealDonaldTrump has accomplished more than Clinton, Bush, and Obama combined - this is just th…" +06/13/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity The left and media refuse to acknowledge .@POTUS ‘ accomplishments this week in Singapore. .@NewtGingrich joins… +06/13/2018,Politicians,@newtgingrich,"Just added: Will be hosting a #TrumpsAmerica book signing on Monday, June 18th in Ashburn, VA. Hope to see you ther… https://t.co/5ZgEXShUY7" +06/13/2018,Politicians,@newtgingrich,"RT @GOPChairwoman: Totally agree, @newtgingrich! +https://t.co/3FoMvCSpOC" +06/13/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich and Speaker @newtgingrich enjoyed attending the Rome Seminar led by the ACCU. + +Pictured: Co-foun…" +06/12/2018,Politicians,@newtgingrich,"Once again, President @realDonaldTrump has done something astounding, unpredictable, and historic. He has already a… https://t.co/UVTMCZ2iF0" +06/12/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity .@POTUS and Kim Jong Un sign the deal for a fully denuclearized NKorea… .@NewtGingrich joins Sean NEXT https://t… +06/12/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity .@POTUS and Kim Jong Un sign the deal for a fully denuclearized NKorea… .@NewtGingrich joins Sean NEXT +06/12/2018,Politicians,@newtgingrich,Wishing President @GeorgeHWBush a very happy 94th birthday! https://t.co/74x41GdrpC https://t.co/bY4Hy2R2uA +06/12/2018,Politicians,@newtgingrich,"Small business optimism soars, resulting in increased hiring and wages https://t.co/EEaJA5pODa -- another sign of o… https://t.co/SDAIb3DK8f" +06/12/2018,Politicians,@newtgingrich,RT @RHallow_Times: Newt Gingrich has new book out on DJT. Should make for one of the best reads on the man we once affectionately called Th… +06/12/2018,Politicians,@newtgingrich,"RT @Raiklin: @newtgingrich Congrats on the book, Newt! Will take a listen..." +06/12/2018,Politicians,@newtgingrich,Joining @MorningsMaria coming up at 7:30aET to discuss #SingaporeSummit. Watch on @FoxBusiness. +06/12/2018,Politicians,@newtgingrich,"RT @SecPompeo: Among the issues @potus and our team discussed with #NorthKorea human rights, religious freedom and Japanese abductees. @Sta…" +06/12/2018,Politicians,@newtgingrich,"RT @StateDept: .@POTUS: “Anyone can make war, but only the most courageous can make peace.” #SingaporeSummit https://t.co/a7FqzhMiIi" +06/12/2018,Politicians,@newtgingrich,".@CallyGingrich and I are keeping @larry_kudlow, his family, and the medical team treating him at Walter Reed in ou… https://t.co/jJJth7LBWe" +06/11/2018,Politicians,@newtgingrich,Hope you enjoy #TrumpsAmerica! https://t.co/hmMmlEidA3 +06/11/2018,Politicians,@newtgingrich,RT @theskimm: @POTUS and Kim Jong Un have a big mtg this week. The agenda: Nukes. Here’s what former Speaker of the House @newtgingrich had… +06/11/2018,Politicians,@newtgingrich,RT @BookTV: This Saturday at 9pm ET former House Speaker @newtgingrich offers his thoughts on the impact that the Trump administration poli… +06/11/2018,Politicians,@newtgingrich,RT @CallyGingrich: Beautiful day in Tivoli with @newtgingrich. https://t.co/W8k8sg5NkW +06/11/2018,Politicians,@newtgingrich,ICYMI: My @facebook live interview at @nasdaq this week on the economy under @realDonaldTrump and #TrumpsAmerica.… https://t.co/sTf7RP8m0P +06/09/2018,Politicians,@newtgingrich,Great book launch week! Thanks to everyone who helped Trump's America become an @amazon best seller! Order your cop… https://t.co/mFyn7nG8By +06/08/2018,Politicians,@newtgingrich,"How Obama Secretly Gave Iran Access To Billions Of Dollars — And Enabled Terrorism +https://t.co/Q7yuzybDRZ" +06/08/2018,Politicians,@newtgingrich,"RT @AM560TheAnswer: ICYMI from Mike Gallagher: Newt Gingrich .NewtGingrich and Mike dive into the Speaker’s new book, “Trump’s America” htt…" +06/08/2018,Politicians,@newtgingrich,RT @RFIDer: Nearly a year after the NYTs/Amazon best-selling Understanding Trump's release comes Newt Gingrich's hotly awaited follow-up: T… +06/08/2018,Politicians,@newtgingrich,"The Left doesn't care that more Americans have jobs, unemployment is down, and the tax cuts are working -- that wou… https://t.co/BUuTet8N8A" +06/08/2018,Politicians,@newtgingrich,RT @TomShillueShow: Coming up! @newtgingrich talks #TrumpsAmerica @BillClinton #metoo and more! https://t.co/csXCO0puYF https://t.co/LfU8hz… +06/08/2018,Politicians,@newtgingrich,"RT @GOPLeader: ""Americans are beginning to conclude that their lives are getting better, and that President Trump and Republican leadership…" +06/08/2018,Politicians,@newtgingrich,The tragic news that Charles Krauthammer’s cancer has returned saddens everyone who knew him or watched him. He is… https://t.co/rAjnKTGnBW +06/08/2018,Politicians,@newtgingrich,Speaking live at @yaf now. Watch here: https://t.co/QwVEcGyzPK #TrumpsAmerica +06/08/2018,Politicians,@newtgingrich,It has been a pleasure getting to know and work with @EricTrump over the last few years. I appreciate his taking th… https://t.co/TCpQLa0gkD +06/08/2018,Politicians,@newtgingrich,"Looking forward to joining @yaf this afternoon to talk about my new book, Trump's America. Watch live at 12:30pET.… https://t.co/oq5RtMGQiX" +06/08/2018,Politicians,@newtgingrich,RT @bhweingarten: Have always found @newtgingrich’s keen insights into POTUS (among many other things) both thought-provoking and prescient… +06/08/2018,Politicians,@newtgingrich,RT @LisaDeP: My latest Dozen interview is with @newtgingrich! https://t.co/rUzTZj3jeA +06/08/2018,Politicians,@newtgingrich,Congrats @Capitals! Great game! #ALLCAPS #STANLEYCUP https://t.co/xJ5WUT44f8 +06/07/2018,Politicians,@newtgingrich,"There's no question that President @realDonaldTrump's policies are working. More jobs, a stronger economy, and as I… https://t.co/juBO6dQzQi" +06/07/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I wish @VP Pence a very happy birthday! https://t.co/xECHBY2XvZ +06/07/2018,Politicians,@newtgingrich,Have a question for me about President Trump and America's great comeback? Ask me now on @facebook ➡️ https://t.co/NFn6YdvDxX +06/07/2018,Politicians,@newtgingrich,I'm answering your questions about Trump's America live on @Facebook now. Ask questions: https://t.co/NFn6YdvDxX https://t.co/Tm7ynQ493p +06/07/2018,Politicians,@newtgingrich,Answering your questions LIVE on @facebook now. Submit questions and watch here: https://t.co/NFn6YdvDxX #TrumpsAmerica +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich affirmed U.S. support for #Georgia at a photo exhibit marking the 10th anniversary of #Russia’s… +06/07/2018,Politicians,@newtgingrich,My friend @JerryFalwellJr is writing his debut book on the power of freedom to create prosperity. And how… https://t.co/cOBEbMOM1w +06/07/2018,Politicians,@newtgingrich,Wishing @VP a very happy birthday! Hope it's great! 🇺🇸 https://t.co/UCB5eGb36D +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to stand with #Georgia alongside @GeoVatican @UKRinVAT @UN and Archmandrite @cyril_h… +06/07/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich visited the Centro Astalli refugee center, managed by @JesuitRefugee. The Ambassador visited wit…" +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Read about President Reagan and Pope John Paul II's important relationship and collaboration in @CallyGingrich's oped: htt… +06/07/2018,Politicians,@newtgingrich,"RT @GOPLeader: 👍 Lower taxes, more jobs, and a booming economy–this is America’s comeback. +✅ Unemployment ↓ +✅ Wages ↑ +✅ Consumer confidence…" +06/07/2018,Politicians,@newtgingrich,"Childhood cancer survivors are heroes to all of us. Congrats to @realDonaldTrump & Congress, and countless advocate… https://t.co/tUSwLHHsR3" +06/07/2018,Politicians,@newtgingrich,.@bhweingarten is a smart writer and researcher who helped us create Defending America. I look forward to his new p… https://t.co/4DqV66UWwi +06/07/2018,Politicians,@newtgingrich,Democrats' IT scandal set to explode with possible plea deal https://t.co/4B6EUXWRO4 +06/07/2018,Politicians,@newtgingrich,Just added: I explain how @realDonaldTrump is leading America's comeback on #FOXNewsRundown. Listen on… https://t.co/RuI40LVkkI +06/07/2018,Politicians,@newtgingrich,President ⁦@realDonaldTrump⁩ has paved the way for a free speech comeback. #trumpsamerica https://t.co/OVJqTpdpNO +06/06/2018,Politicians,@newtgingrich,"RT @FoxNews: .@newtgingrich: ""It's a traffic jam [@TheDemocrats] created."" #OutnumberedOT https://t.co/h1UrQ0vBaG" +06/06/2018,Politicians,@newtgingrich,Will be on @TheStoryFNC with @marthamaccallum coming up at 7pET to discuss Trump's America and the growing red wave. https://t.co/wVsqPqvcZu +06/06/2018,Politicians,@newtgingrich,Catching up with @kilmeade and @BillHemmer and talking Trump's America. #newbook https://t.co/szNmypO680 https://t.co/GV9BSes3fO +06/06/2018,Politicians,@newtgingrich,FDR's prayer to the nation following the Normandy invasion is a reminder that our faith binds us together as a coun… https://t.co/Fr54k9YPAJ +06/06/2018,Politicians,@newtgingrich,Next up: @OutnumberedOT. Will be live in studio with @HARRISFAULKNER at 1:30pET. Watch on @FoxNews. https://t.co/wVsqPqvcZu +06/06/2018,Politicians,@newtgingrich,Joining the ladies of @OutnumberedFNC for the entire show starting at 12pET. Watch on @FoxNews. https://t.co/szNmypO680 +06/06/2018,Politicians,@newtgingrich,Will talk with @MariaBartiromo on @MorningsMaria at 8aET about what last night's primaries mean for the midterms an… https://t.co/bF50PJsSws +06/06/2018,Politicians,@newtgingrich,The red wave is building in the senate.almost 40% of democrats voted against Sen Menendez in New Jersey yesterday.… https://t.co/AJalSrOijQ +06/06/2018,Politicians,@newtgingrich,Joining @foxandfriends at 7:30aET to discuss last night's primaries and my new book Trump's America. Watch on… https://t.co/Vu1gjuCGcJ +06/06/2018,Politicians,@newtgingrich,RT @FoxNews: .@newtgingrich: The Republican comeback is a real threat to the elite media's 'blue wave' theory https://t.co/u8woF9qm1q +06/06/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich on California primary: ""The anger over the gas tax increase, the anger over what's happening to the economy…" +06/06/2018,Politicians,@newtgingrich,Great talking about #TrumpsAmerica on @TheView today! Read a free excerpt and watch the full interview ➡️… https://t.co/rDYQ89rMhm +06/06/2018,Politicians,@newtgingrich,"RT @MariaBartiromo: Big show tomorrow. Join us. Start smart @MorningsMaria @FoxBusiness @dagenmcdowell +@KevinRKelly_ +@lh_carter +@robertwolf…" +06/06/2018,Politicians,@newtgingrich,Kicking off the #TrumpsAmerica book tour tonight at @BookendsNJ in Ridgewood. Order autographed copies:… https://t.co/JWNV85i2kz +06/06/2018,Politicians,@newtgingrich,RT @FoxNews: OPINION: The Republican comeback is a real threat to the elite media's 'blue wave' theory. - @newtgingrich https://t.co/aaksnV… +06/06/2018,Politicians,@newtgingrich,"Joining @seanhannity at 9pET live from @bookendsnj to discuss my new book, Trump's America. Watch on @FoxNews.… https://t.co/dDECb1LVTm" +06/05/2018,Politicians,@newtgingrich,Congrats to @Nasdaq's @Machiz on being named one of Marketing Edge's 2018 Rising Stars. Have enjoyed working with h… https://t.co/K0vmWxOUS7 +06/05/2018,Politicians,@newtgingrich,Hope to see you at @BookendsNJ in Ridgewood tonight for the kick-off of my #TrumpsAmerica book tour. Details:… https://t.co/cS4Px8G8dX +06/05/2018,Politicians,@newtgingrich,Submit questions now! Talking about Trump's America live on @facebook from @Nasdaq. https://t.co/SSl2YZKGc2 https://t.co/2LPAW4ahk3 +06/05/2018,Politicians,@newtgingrich,Watch now: discussing Trump's America live on @facebook from @Nasdaq https://t.co/H0DrbdonSY +06/05/2018,Politicians,@newtgingrich,"Joining @TeamCavuto to talk about my new book, Trump's America live from @Nasdaq coming up at 12:40pET. Watch on… https://t.co/aooIk80Hzr" +06/05/2018,Politicians,@newtgingrich,"Looking forward to joining the ladies of @TheView to discuss my new book, Trump's America. Watch on @abc at 11aET.… https://t.co/oK8PnW3Cjv" +06/05/2018,Politicians,@newtgingrich,Join me tonight at @BookendsNJ in Ridgewood for a #TrumpsAmerica book tour at 7pET. Details: https://t.co/1FVLoKJVpU https://t.co/zSHYCJwTBM +06/05/2018,Politicians,@newtgingrich,"Thanks for the shoutout, @jackiecushman! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/iRE5cB1J6J" +06/05/2018,Politicians,@newtgingrich,"RT @AM560TheAnswer: ICYMI from Mike Gallagher: President Donald Trump is leading our nation’s great comeback, and no one understands this b…" +06/05/2018,Politicians,@newtgingrich,"Thanks, @radiotalkermike! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/PBmFdU5n2B" +06/05/2018,Politicians,@newtgingrich,RT @greta: .@newtgingrich has a new book out today! Click to see (and buy) : https://t.co/i5CEY2m6cv +06/05/2018,Politicians,@newtgingrich,"RT @CBSThisMorning: ""We have zero evidence that Donald J. Trump, in any way, colluded with Russia... everything he's doing [Mueller] is abo…" +06/05/2018,Politicians,@newtgingrich,"Thank you, @kilmeade! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/Uj9fHksAKI" +06/05/2018,Politicians,@newtgingrich,"RT @93wibc: Today, @tonykatz speaks with former Speaker @newtgingrich about his new book, Trump's America, the #SCOTUS decision on #Masterp…" +06/05/2018,Politicians,@newtgingrich,Next stop on the #TrumpsAmerica Book Tour: Good Day New York! Watch on @fox5ny at 8:45aET. https://t.co/wVsqPqvcZu +06/05/2018,Politicians,@newtgingrich,"Joining @CBSThisMorning coming up at 8aET to discuss my new book, Trump's America -- out today! https://t.co/szNmypO680" +06/05/2018,Politicians,@newtgingrich,"Launch day! My new book, ""Trump's America: The Truth About Our Nation's Great Comeback"" is out today! Order here:… https://t.co/1WTJLDbkKi" +06/04/2018,Politicians,@newtgingrich,Join me tomorrow night at @BookendsNJ in Ridgewood as I kick-off my Trump's America book tour.… https://t.co/osgjjdVljV +06/04/2018,Politicians,@newtgingrich,RT @realDailyWire: GINGRICH: The Reality of the American Dream for the Class of 2018 https://t.co/kdLnZlgd89 +06/04/2018,Politicians,@newtgingrich,RT @TheView: TOMORROW: @newtgingrich joins the #HotTopics table LIVE! https://t.co/TwMMsP7z2E +06/04/2018,Politicians,@newtgingrich,"Great to join my friend @seanhannity in studio today to discuss my new book, Trump's America. Listen live now.… https://t.co/j8rRL4neWV" +06/04/2018,Politicians,@newtgingrich,"Despite what the Left might claim, President @realDonaldTrump's policies are working -- just look at the GDP growth… https://t.co/ecRi11ZWk2" +06/04/2018,Politicians,@newtgingrich,"Another great piece from Barry Casselman -- ""Shocker In Minnesota?"" https://t.co/a5WSkum4X0" +06/04/2018,Politicians,@newtgingrich,RT @Manhattan_GOP: Our amazing candidates Dr. Jeff Ascherman and @PeteHolmbergNYC with @newtgingrich and Chair @AJ_Cats_ at yesterday's boo… +06/04/2018,Politicians,@newtgingrich,RT @LisaDeP: Don’t miss my interview with @newtgingrich in today’s edition of Bright! https://t.co/2vIrZGr606 Subscribe at https://t.co/3yf… +06/04/2018,Politicians,@newtgingrich,RT @FoxNews: .@newtgingrich: We're Closer to a 'Red Wave' Than a 'Blue Wave' in November https://t.co/LrJ2rP94jo +06/03/2018,Politicians,@newtgingrich,"RT @ThisWeekABC: .@jonkarl, @sarafagen2, @newtgingrich, @finneyk and @patrickgaspard join @GStephanopoulos on the ""This Week"" roundtable th…" +06/03/2018,Politicians,@newtgingrich,"RT @JCats2013: @CatsRoundtable this morning in NY Local 8:30 National Show 9 to10 +in NY 970 AM Radio on Internet @am970TheAnswer or https:…" +06/03/2018,Politicians,@newtgingrich,Will be on @ThisWeekABC panel coming up at 9aET. +06/03/2018,Politicians,@newtgingrich,".@POTUS is leading our nation's great comeback. We have a stronger economy, the lowest unemployment rate in decades… https://t.co/hPP92VG9Rj" +06/02/2018,Politicians,@newtgingrich,A Right To Try Arrives - @WSJ https://t.co/NxHArMBt1n +06/01/2018,Politicians,@newtgingrich,Democrats' dishonesty about MS-13 hands Trump a winning issue - @marcthiessen https://t.co/deMtpF4Tab +05/31/2018,Politicians,@newtgingrich,RT @centerstreet: Look what came into @newtgingrich office today.. https://t.co/zJ5ZUG0fQc +05/31/2018,Politicians,@newtgingrich,Just delivered at the office! 📦 Trump's America coming out June 5th! Order at https://t.co/AZHjvJEPD7 https://t.co/rBYRi0ulfp +05/31/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity Unpacking the 5 scandals involving Robert Mueller and his “investigation”.. .@NewtGingrich joins Sean NEXT +05/31/2018,Politicians,@newtgingrich,Why Trump Should Support Sen. Cruz on Space-Based Missile Defense https://t.co/EGqga8FiO3 +05/31/2018,Politicians,@newtgingrich,Nikki Haley: South Sudan has failed its children. We must not. https://t.co/4oe0beY5h7 +05/30/2018,Politicians,@newtgingrich,The current Mueller-DOJ-Russia mess is almost impossible to understand because it is made up of these five parallel… https://t.co/HgZ5ZcgtvJ +05/30/2018,Politicians,@newtgingrich,President @realDonaldTrump is reforming the civil service to work for the American people https://t.co/N4Awgvg5iS +05/30/2018,Politicians,@newtgingrich,RT @AORecovery: Congress must take action to give America’s seniors access to opioid treatment programs. Tell your legislators to vote for… +05/30/2018,Politicians,@newtgingrich,"On Tuesday, June 5th, I will kick-off my Trump's America book tour at @BookendsNJ in Ridgewood at 7pET. Hope to see… https://t.co/vWF00yM1mV" +05/30/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich calls #ReligiousFreedom a matter of national security and discusses the upcoming Ministerial hos… +05/30/2018,Politicians,@newtgingrich,Sec. Wilbur Ross on why Moon Colony will be a reality sooner than you think https://t.co/1Drum5iDHw +05/30/2018,Politicians,@newtgingrich,Dodd-Frank rollback will reinvigorate Main Street | @thehill https://t.co/OSESbcPYa2 +05/30/2018,Politicians,@newtgingrich,"Since taking office, @realDonaldTrump has been leading America's great comeback. I explain what this means for our… https://t.co/72TLMMqZHx" +05/29/2018,Politicians,@newtgingrich,RT @CallyGingrich: The 2017 International Religious Freedom Report and the Ministerial to Advance Religious Freedom underscore America's en… +05/28/2018,Politicians,@newtgingrich,We honor the brave men and women who have made the ultimate sacrifice for our freedom. #MemorialDay https://t.co/Mr7LQx8len +05/28/2018,Politicians,@newtgingrich,Fabulous cathedral. https://t.co/JAHeXZb70w +05/26/2018,Politicians,@newtgingrich,"RT @CallyGingrich: Very moving to visit the Sicily-Rome American Cemetery in Nettuno, Italy today with @newtgingrich. https://t.co/pcCtTOaP…" +05/26/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was honored to deliver keynote remarks at a Military Naturalization Ceremony today at the U.S. E… +05/25/2018,Politicians,@newtgingrich,RT @SteveForbesCEO: I like @newtgingrich’s reading list today! Agree critical read from Prof @KennethThorpe aligned with @realDonaldTrump &… +05/24/2018,Politicians,@newtgingrich,Important oped on reforms @SecAzar should demand at WHO meetings this week. Saving lives requires working with US h… https://t.co/9DarZE9Zy5 +07/02/2018,Politicians,@GovRauner,…and the list goes on. Stay tuned for more June in Review! #twill https://t.co/56jFLJ6mgS +07/02/2018,Politicians,@GovRauner,June in Review: Got bipartisan support for a new veterans’ home in Quincy to ensure the best care for the people wh… https://t.co/BncOCZXpp6 +07/02/2018,Politicians,@GovRauner,June in Review: Signed legislation to secure funding for safety net and rural hospitals. Critical bipartisan hospit… https://t.co/tLqGXHLkTv +07/02/2018,Politicians,@GovRauner,June in Review: $500M for U of I advances economic development initiative to leapfrog Silicon Valley. Discovery Par… https://t.co/bCw5uCJqBP +07/02/2018,Politicians,@GovRauner,June in Review: Look at what the economy is doing for railroads. Now think what could happen when we unblock the co… https://t.co/W9tdjhzseL +07/02/2018,Politicians,@GovRauner,June in Review: A remarkable $474M @USDOT program will fix the worst rail bottleneck in the country. The investment… https://t.co/hD2UTiZsTm +07/02/2018,Politicians,@GovRauner,June in Review: We made it easier to #adopt children in Illinois with the nation’s biggest adoption tax credit – $5… https://t.co/JJQtZGbDeS +07/02/2018,Politicians,@GovRauner,June in Review: $2B Medicaid waiver puts unprecedented focus on behavioral health. #BetterCareIL will pilot deliver… https://t.co/fXX7VG4NKj +07/02/2018,Politicians,@GovRauner,June in Review: Historic education initiatives. K-12 funding up by $1.4B since we took office. Early childhood up $… https://t.co/g2oI3OMSK9 +07/02/2018,Politicians,@GovRauner,June in Review: It has been a great month for the people of Illinois. Passed a bipartisan FY19 budget with… https://t.co/VnTLFNEyxw +07/01/2018,Politicians,@GovRauner,"Issued Executive Order to ensure fair practices in state procurement, establishes a permanent Illinois Commission o… https://t.co/nkbJ9xgoQK" +07/01/2018,Politicians,@GovRauner,"Took steps to ease the teacher shortage. New law makes licensing easier for out-of-state teachers, substitutes, and… https://t.co/RpxfpCnZBl" +07/01/2018,Politicians,@GovRauner,US Supreme Court decides #Janus case. State workers regain their First Amendment rights and now they don’t have to… https://t.co/OibnFzgVUP +07/01/2018,Politicians,@GovRauner,Got bipartisan support for a new veterans’ home in Quincy to ensure the best care for the people whose service keep… https://t.co/v0mrqqtoNw +07/01/2018,Politicians,@GovRauner,Signed legislation to secure funding for safety net and rural hospitals. Critical bipartisan hospital assessment pr… https://t.co/4Qnk0tS56O +07/01/2018,Politicians,@GovRauner,$500M for U of I advances an economic development initiative to leapfrog Silicon Valley. Discovery Partners Institu… https://t.co/kIibrUkINR +07/01/2018,Politicians,@GovRauner,Look at what the economy is doing for railroads. Now think what could happen when we unblock the congestion and cre… https://t.co/vMwllPICWi +07/01/2018,Politicians,@GovRauner,A remarkable $474M @USDOT program will fix the worst rail bottleneck in the country. The investment in Chicago’s 75… https://t.co/sn94gqtGUG +07/01/2018,Politicians,@GovRauner,"We made it easier to #adopt children in Illinois with the nation’s biggest adoption tax credit – $5,000. The credit… https://t.co/PjMOKTOXM7" +07/01/2018,Politicians,@GovRauner,$2B Medicaid waiver puts unprecedented focus on behavioral health. #BetterCareIL will pilot delivery of better serv… https://t.co/nLvlUR0PIP +07/01/2018,Politicians,@GovRauner,Historic education initiatives. K-12 funding up by $1.4B since we took office. Early childhood up $200M. Invest in… https://t.co/3XCOveyV10 +07/01/2018,Politicians,@GovRauner,It has been a great month for the people of Illinois. Passed a bipartisan FY19 budget with #NoNewTaxes! Stay tuned… https://t.co/YTnpOHF4MV +07/01/2018,Politicians,@GovRauner,Sign up for our newsletter and keep up with what we are doing to make Illinois a better place to live and work. Joi… https://t.co/qG23IjXczQ +07/01/2018,Politicians,@GovRauner,Kudos to all the parents out there that help their kids earn straight A’s in life. https://t.co/6qaRiIEu03 +07/01/2018,Politicians,@GovRauner,Catch Sneed to see if there was once a pony on the grounds trained to walk up the steps of the Illinois Governor’s… https://t.co/SGCFZERrYc +06/30/2018,Politicians,@GovRauner,"Melting temperatures out there. Tollway Oasis centers are open 24/7 for Illinoisans to stay safe, cool and comforta… https://t.co/g7t7HjoyjH" +06/30/2018,Politicians,@GovRauner,Congratulations to the Jain Society of Metropolitan Chicago on the 25th Anniversary of your temple. Wonderful eveni… https://t.co/v2EcLqlDaZ +06/29/2018,Politicians,@GovRauner,There is a no more deserving lawyer than @LtSanguinetti for the Women’s Bar Foundation Award. My friend & colleague… https://t.co/10kBTu3koA +06/29/2018,Politicians,@GovRauner,#ICYMI Earlier today I took important steps to ease teacher shortage in Illinois and extend workforce readiness ini… https://t.co/Jcsts9VXvm +06/29/2018,Politicians,@GovRauner,Took important steps today to ease teacher shortage in Illinois and extend workforce readiness initiatives. https://t.co/0Rx38KUexB +06/29/2018,Politicians,@GovRauner,"With scorching hot weather in the forecast, please be cautious. Remain indoors when possible. Stay hydrated. And pl… https://t.co/MlTTO2VmvU" +06/28/2018,Politicians,@GovRauner,In Waukegan at @CristoReySM School to talk economic opportunity and shine a light on parts of Illinois designated a… https://t.co/j0yKrgEpEF +06/28/2018,Politicians,@GovRauner,"RT @SBACIL: It's been 6 months since @GovRauner signed SB 867, a bill to lower LLC fees, into law. In Q1 of 2018, new LLC filings are up 40…" +06/27/2018,Politicians,@GovRauner,Talking with @GeorgeWill about #Janus and other recent developments. #twill https://t.co/WIBdYm0Ql0 +06/27/2018,Politicians,@GovRauner,"Telling FOX's @ShannonBream Janus ruling is pro-worker, pro-taxpayer. A great victory for our democracy, public emp… https://t.co/KuIb0zO10L" +06/27/2018,Politicians,@GovRauner,RT @ShannonBream: The winners in the unions fees case at #SCOTUS https://t.co/QgRBwssdkw +06/27/2018,Politicians,@GovRauner,"The significance of the #Janus decision will be felt not just in Illinois, but across America. There are 5 million… https://t.co/Psr2zUohln" +06/27/2018,Politicians,@GovRauner,The high court’s decision means state workers can no longer be forced to pay “fair share” fees if they choose not t… https://t.co/BRehuvvo6P +06/27/2018,Politicians,@GovRauner,"For decades, IL workers have been forced to pay union fees against their will. The practice infringed on the rights… https://t.co/NWkMWAyuHK" +06/27/2018,Politicians,@GovRauner,Today’s #Janus decision is a historic victory for freedom of speech and affiliation for our public sector employees… https://t.co/5eJNYrHKud +06/27/2018,Politicians,@GovRauner,From #Janus: “:Whenever the Federal Government or a State prevents individuals from saying what they think on impor… https://t.co/boST9uNQlq +06/27/2018,Politicians,@GovRauner,"From #Janus: “Free speech serves many ends. It is essential to our democratic form of government, see, e.g., Garris… https://t.co/Krjtfc1l7S" +06/27/2018,Politicians,@GovRauner,"#SCOTUS decision is pro-worker, and pro-taxpayer who count on us to bargain in good faith. #Janus #JanusvAfscme" +06/27/2018,Politicians,@GovRauner,RT @SCOTUSblog: #SCOTUS holds requiring nonmembers of public-sector unions to pay fees to cover collective-bargaining activities violates t… +06/27/2018,Politicians,@GovRauner,#SCOTUS rules in favor of #Janus. Great victory for state employees and Illinois taxpayers. +06/27/2018,Politicians,@GovRauner,RT @NWSChicago: The Tornado Warning for Will County has been allowed to expire. We're continuing to closely monitor storms in the south/sou… +06/27/2018,Politicians,@GovRauner,"RT @GroverNorquist: Met today with Illinois governor Bruce Rauner +The “Janus” SCOTUS Case was at the start —AFSCME vs Rauner. +Rauner will s…" +06/27/2018,Politicians,@GovRauner,"RT @NWSChicago: Tornado Warning including Frankfort IL, Wilton Center IL until 7:30 PM CDT https://t.co/axAE8qK7y2" +06/27/2018,Politicians,@GovRauner,RT @NWSChicago: Multiple tornado touchdowns in central Will County with the tornado warned thunderstorm. Head indoors immediately for safe… +06/26/2018,Politicians,@GovRauner,Illinois economy and effect of tariffs were part of discussions in DC with @RepLaHood and others in the delegation. https://t.co/amsAUvl6tG +06/26/2018,Politicians,@GovRauner,With #Cavuto on Fox: No one wins a trade war! https://t.co/plOJ8wLCHh +06/26/2018,Politicians,@GovRauner,"Legendary blues guitarist and singer @TheRealBuddyGuy plus @STYXtheBand, @chicagosymphony and more will be headline… https://t.co/UBb4ICPlok" +06/26/2018,Politicians,@GovRauner,"Informative discussion today with Commerce Dep. Secretary Karen Kelley on 21st-century workforce development, more… https://t.co/oHEYbs6zbw" +06/26/2018,Politicians,@GovRauner,Met with VP Pence yesterday to discuss tariffs and express need to have policies in the best interest of Illinois job creators. +06/25/2018,Politicians,@GovRauner,.@UofILSystem’s Discovery Partners Institute brings world-class faculty to work side-by-side with students and busi… https://t.co/p0vvt2zKh6 +06/25/2018,Politicians,@GovRauner,Stopped by @FoxBusiness this morning to talk about economic development and pension reform in Illinois. https://t.co/7hlHKIDmwV +06/24/2018,Politicians,@GovRauner,A beautiful Sunday to celebrate Pride Day in Chicago! https://t.co/jzw0mM1fnA +06/24/2018,Politicians,@GovRauner,"Whether on active duty or a veteran, if you or someone you know needs help visit https://t.co/tkS8Q8k7rg or call th… https://t.co/h33QN7lxqf" +06/24/2018,Politicians,@GovRauner,"Tim and Maureen Walsh started @OperationTalk (Tell, Ask, Listen, Keep Safe) after their son James lost his battle t… https://t.co/w9hrqPBJSU" +06/23/2018,Politicians,@GovRauner,Always a great day when we get to celebrate our heroes. The Armed Services Day at the Bourbonnais Friendship Festiv… https://t.co/3cV0rVb0Cp +06/23/2018,Politicians,@GovRauner,Great times at the 18th annual Dragon Boat Race hosted by @Chinatown312. Teams out here are competing to raise fund… https://t.co/i5pvEYdH0u +06/23/2018,Politicians,@GovRauner,Safety net & rural hospitals get protection. https://t.co/FPVj0fopKT +06/22/2018,Politicians,@GovRauner,Economic opportunity. Jobs. Better education. Lower taxes. Fair markets. These are initiatives that break down barr… https://t.co/dDbFP9RfyN +06/22/2018,Politicians,@GovRauner,Fantus Paper Products is tripling its workforce in Skokie to support Made-in-the-USA Holiday Gift Boxes for Walmart… https://t.co/HmOruO52EM +06/22/2018,Politicians,@GovRauner,Always a privilege to meet with Scouts – and these three trailblazers in particular – to receive their annual Repor… https://t.co/R58UlHSgkR +06/22/2018,Politicians,@GovRauner,.@CSLBehring’s investment is stimulating Kankakee’s economic growth and paying off in new jobs for the people of Il… https://t.co/nVfEUJwz3z +06/22/2018,Politicians,@GovRauner,RT @Illinois200: What makes you #IllinoisProud? https://t.co/U1P5Wxvy6s +06/21/2018,Politicians,@GovRauner,Today I signed legislation to extend Normal’s tax increment financing designation. TIF is an important tool in urba… https://t.co/5EC9TPPxF2 +06/21/2018,Politicians,@GovRauner,"Children have a much better chance in life if they have a loving, stable home. @ChildrenHomeAid unites children wit… https://t.co/JdyT0Ju1kI" +06/21/2018,Politicians,@GovRauner,"RT @ChildrenHomeAid: This new tax credit takes away one of the barriers for families to adopt and helps fulfill our mission to create hope,…" +06/21/2018,Politicians,@GovRauner,RT @ChildrenHomeAid: Today @GovRauner announced a new tax credit to support Illinois adoptive families by making adoptions more affordable.… +06/21/2018,Politicians,@GovRauner,"DPI’s motor will run on intellectual capital, a plentiful natural resource here in Illinois. https://t.co/o8LSSn3hNb" +06/21/2018,Politicians,@GovRauner,Guess who’s at the top of https://t.co/mUpdUEEnYm annual American-Made Index! The Jeep Cherokee assembled right her… https://t.co/dj8L7e3tcj +06/21/2018,Politicians,@GovRauner,"RT @NWSChicago: Reminder: Flood Advisory is in effect for NE IL the rest of this a.m. Moderate to heavy rain will continue through noon, e…" +06/21/2018,Politicians,@GovRauner,"RT @IDOT_Illinois: Heavy rain in the Chicago area is leading to flooding on some roads, including expressways. Here, IDOT crews have blocke…" +06/21/2018,Politicians,@GovRauner,More on machine politics in Cook County. Property taxes are rising. https://t.co/qMaPi2tFtl +06/20/2018,Politicians,@GovRauner,"With state-secured $500M for Discovery Partners Institute, we’ve started an engine for extraordinary economic growt… https://t.co/mCAdrqQzxz" +06/20/2018,Politicians,@GovRauner,Reduce occupational license burdens -- cut red tape -- you grow job opportunities & income especially for minoritie… https://t.co/bqZHV8HcW0 +06/20/2018,Politicians,@GovRauner,And isn’t this interesting? Where Cook Co Machine controls government is where black families experience the highes… https://t.co/PVkVcZ7p01 +06/20/2018,Politicians,@GovRauner,"Finally, on human services: Better Care Illinois. Unprecedented $2 billion Medicaid waiver pilots health-building s… https://t.co/1QDbGrHJql" +06/20/2018,Politicians,@GovRauner,"On business building, LLCs are cheaper to start, professional licenses are easier to get for people leaving prison,… https://t.co/K9qBleTxo1" +06/20/2018,Politicians,@GovRauner,"At the Tollway, total payments to African American owned professional services firms has increased by 142% since 20… https://t.co/fMuIGgH9qS" +06/20/2018,Politicians,@GovRauner,We’re helping build African American businesses. First sheltered market increases minority participation in state c… https://t.co/bwz5MruWGI +06/20/2018,Politicians,@GovRauner,Just signed an executive order to relieve the huge backlog in human rights cases. We cleared thousands of clemency… https://t.co/lf1epb6Ue6 +06/20/2018,Politicians,@GovRauner,"Education is job prerequisite. Since I’ve been governor, K-12 spending up $1.4 billion with state money distributed… https://t.co/u1JiUMz4j4" +06/20/2018,Politicians,@GovRauner,On jobs and opportunity for African Americans. We veto business-banishing tax hikes. We propose reforms to end job-… https://t.co/XHRKkqw2ja +06/20/2018,Politicians,@GovRauner,"Est. 38K people in Illinois are living with HIV, but we don’t want anybody in Illinois to become infected with HIV/… https://t.co/TLK7En3byN" +06/20/2018,Politicians,@GovRauner,Special recognition to Uncle Remus Saucy Fried Chicken and 50 yrs of great food. Their specialty is second chances.… https://t.co/NyhMB5vGBT +06/20/2018,Politicians,@GovRauner,One of the best ways to honor #Juneteenth2018 is by recognizing the accomplishments of Illinois’ African American b… https://t.co/0uQZrqf2Ni +06/19/2018,Politicians,@GovRauner,DPI will spawn innovation hubs throughout our state university system. It will work with thousands of students ever… https://t.co/QhDAQzGcP8 +06/19/2018,Politicians,@GovRauner,First corporate partner for DPI is Peoria-based OSF HealthCare. They are sponsoring an interdisciplinary course tha… https://t.co/XWCdEuLEGt +06/19/2018,Politicians,@GovRauner,"Powerhouse research partners. U of I System, U of Chicago, Northwestern and, announced today, Tel Aviv U. Missions… https://t.co/TdatTNhpan" +06/19/2018,Politicians,@GovRauner,"DPI students, faculty, business partners will research world changing ideas that investors will put money behind to… https://t.co/3zMNoNn94i" +06/19/2018,Politicians,@GovRauner,"The 78 will be home to the Institute, projected eventually to cover 1 million sq. ft. on Related Midwest’s 62-acre… https://t.co/xAFY1X6FAu" +06/19/2018,Politicians,@GovRauner,All systems ‘go’ for Discovery Partners Institute. State secured funding of $500m accelerates research and economic… https://t.co/0dZEFFzBAW +06/18/2018,Politicians,@GovRauner,"RT @ILMansion: Congratulations to Justin Blandford, who begins his new role as Governor's Mansion Curator today! His unmatched expertise wi…" +06/18/2018,Politicians,@GovRauner,"Today, we recognized Savanna High valedictorian, U of I engineer, Navy aviator, and jet-packing astronaut Dale Gard… https://t.co/3sn1NonfjG" +06/17/2018,Politicians,@GovRauner,A #FathersDay wish. May we all be blessed with a dad or father figure we can believe in … and believes in us. +06/17/2018,Politicians,@GovRauner,"It’s a Father’s Day scorcher out there, Illinois. Heat advisory in effect until 7pm Monday. Be sure to drink plenty… https://t.co/iUjmQ04eQS" +06/16/2018,Politicians,@GovRauner,RT @ILFirstLady: 4 years ago Bruce & I made a promise to restore the Governor’s mansion and bring the People’s House into the 21st century… +06/15/2018,Politicians,@GovRauner,"We’re going to keep fighting to save lives. If you or someone you know needs help, call 1-833-2FINDHELP. Trained op… https://t.co/Kvb3Rrie2L" +06/15/2018,Politicians,@GovRauner,"The opioid task force, led by @LtSanguinetti, along with a boost from $2B Medicaid waiver to address substance abus… https://t.co/H7zxOMUeA4" +06/15/2018,Politicians,@GovRauner,44 opioid-related deaths in Peoria in 2017. The opioid epidemic is affecting every community and every demographic… https://t.co/VcwiDURepQ +06/15/2018,Politicians,@GovRauner,"$5 million for the University of Illinois Extension Services to help with education in food safety, workforce preparedness and more." +06/15/2018,Politicians,@GovRauner,"92 county fairs across Illinois $54,000 each to showcase Illinois’ number one industry – agriculture. https://t.co/OamXoBJJMF" +06/15/2018,Politicians,@GovRauner,"97 soil and water conservation districts will receive another $6 million from the FY18 budget. About $61,000 for each district." +06/15/2018,Politicians,@GovRauner,"We are excited to announce $16 million in new funding for our soil & water conservation districts, our county fairs… https://t.co/xW9scFtjSM" +06/14/2018,Politicians,@GovRauner,"Did you know 86% of @WIUQuadCities students are from Illinois? Great seeing so many today to talk about education,… https://t.co/OPGIkqOSdE" +06/14/2018,Politicians,@GovRauner,Can’t think of a more perfect day than #FlagDay to acknowledge 13-year-old Liam Wilcox’s incredible accomplishment!… https://t.co/iOm9uyBAqt +06/14/2018,Politicians,@GovRauner,"Every two seconds, someone in the U.S. needs blood. It’s #WorldBloodDonorDay so roll up a sleeve and donate. You ne… https://t.co/AZv32qUeii" +06/14/2018,Politicians,@GovRauner,Nearly 1M Illinoisans work in our agriculture industry and @IllinoisFFA is helping develop the most important “crop… https://t.co/jbnm46s3pV +06/13/2018,Politicians,@GovRauner,"U of I is one of Illinois’ most important assets, a global source of talent for the global economy. Today, we met t… https://t.co/2FL7kbzotK" +06/13/2018,Politicians,@GovRauner,"Born here in 1906, @MarathonPetroCo is a leader in the oil refining industry. We need more companies like Marathon… https://t.co/8lUBZJMIzf" +06/12/2018,Politicians,@GovRauner,"There is absolutely NO place for harassment, sexual or otherwise, in government or anywhere…and victims should neve… https://t.co/Gp4o2xwGtc" +06/12/2018,Politicians,@GovRauner,"RT @Suntimes: More than ever, Springfield’s corrupt old ways have to end, writes @GovRauner. https://t.co/86UeTWeNWp" +06/12/2018,Politicians,@GovRauner,"Manufacturing is a huge part of our economy, which is why it’s so important that we cut regulatory burdens on job c… https://t.co/fr9TUxb8mN" +06/12/2018,Politicians,@GovRauner,"RT @jasonbarickman: “This is a major step toward finally changing a toxic climate that has existed for far too long in Springfield... +--New…" +06/11/2018,Politicians,@GovRauner,"U.S. Air Force veteran Ivan Jackson was a man of rare quality. Husband, father, grandfather, great-grandfather, his… https://t.co/m676sfwJPS" +06/11/2018,Politicians,@GovRauner,"We’ve taken a step in the right direction. FY19 state budget provides record level of education funding, $1.5B curb… https://t.co/5Yi8EFe0cC" +06/10/2018,Politicians,@GovRauner,America was built on the hopes of immigrants who sailed to America in search of our unique brand of freedom and opp… https://t.co/s7BD9L12uz +06/10/2018,Politicians,@GovRauner,FY19 Budget: Economic growth is the path out of our fiscal mess. https://t.co/jOzS2yUTPj +06/10/2018,Politicians,@GovRauner,RT @nbcchicago: Governor Rauner signs bill expanding independence of ethics complaints https://t.co/wnDObGx8nV https://t.co/oeyospNogv +06/09/2018,Politicians,@GovRauner,While work still needs to be done I commended the members of the General Assembly who made this step forward possib… https://t.co/RwQk9gggJ1 +06/09/2018,Politicians,@GovRauner,"The Legislative Ethics Commission, which oversees investigations of claims against legislators & legislative staff,… https://t.co/XyU6lWmVtR" +06/09/2018,Politicians,@GovRauner,"The legislation is a step in the right direction, but lawmakers need to do more to help restore confidence in gover… https://t.co/wNLrID2MCI" +06/09/2018,Politicians,@GovRauner,#ICYMI Victims of #sexualharassment should not live in fear that the truth they tell will bring more pain into thei… https://t.co/OVF2VpGQLu +06/09/2018,Politicians,@GovRauner,"#IllinoisProud to join our Filipino American community at the 5th Annual @piyestapinoy, the largest outdoor Filipin… https://t.co/Urrx8YkzkQ" +06/09/2018,Politicians,@GovRauner,"2.2 million Latinos call Illinois home. Illinois’ League of United Latin American Citizens, the country’s oldest an… https://t.co/ojhoPJ1zj1" +06/08/2018,Politicians,@GovRauner,"Still work to do, 2 flaws to correct. Legislative inspector general should not need the legislature’s approval to i… https://t.co/rmAjEtrlQ4" +06/08/2018,Politicians,@GovRauner,"W/ new law, those who have been subject to sexual harassment can now have greater confidence that the investigatory… https://t.co/kBnf3WAiDF" +06/08/2018,Politicians,@GovRauner,"Signed law today to bring independence, transparency to legislative sexual harassment investigations. Victory for t… https://t.co/c8xZXLvvdi" +06/08/2018,Politicians,@GovRauner,FY19 Budget: $500 million to U of Illinois for Discovery Partners Institute. This will help Illinois become the nex… https://t.co/uCZSOZxKIj +06/08/2018,Politicians,@GovRauner,"75th St. Corridor project involves federal, state, county, city, regional transportation agencies, and America’s ra… https://t.co/RN8icXdtCW" +06/08/2018,Politicians,@GovRauner,"RT @USDOT: Illinois @GovRauner accepts #INFRA Grant of more than $130 million for the Chicago area, saying: ""Transportation Drives the Pros…" +06/08/2018,Politicians,@GovRauner,Great news for shippers and commuters. US Transportation Secretary Chao makes it official. Illinois to get $132 mil… https://t.co/4PHt9rMwkl +06/08/2018,Politicians,@GovRauner,MAJOR rail infrastructure announcement today. Watch LIVE! Visit https://t.co/WnuFw9sOC1 at 12:00pm CST.… https://t.co/NvswOONuV3 +06/07/2018,Politicians,@GovRauner,Manufacturing innovation goes live at @mHUBChicago. Great example of how STEM and CTE proficiencies are leading us… https://t.co/w6E93KNjkx +06/07/2018,Politicians,@GovRauner,FY19 Budget: Thanks to the General Assembly for living up to its promise and including $53 million for Quincy Veter… https://t.co/YPOQKVCgBR +06/07/2018,Politicians,@GovRauner,Mexico is an important Illinois business partner … $22 billion in total imports/exports 2017. Talked today with Dep… https://t.co/WX5xHIaLBp +06/07/2018,Politicians,@GovRauner,Can’t think of a better way to spend a Wednesday night than welcoming home veterans from their Honor Flight. A grea… https://t.co/Sf1xOyCgTZ +06/06/2018,Politicians,@GovRauner,On this day we pause to reflect on the greatest generation and the battle they waged to win the freedoms we enjoy.… https://t.co/4szJgJEJfZ +06/06/2018,Politicians,@GovRauner,"Israeli Ambassador to US Ron Dermer dropped by today to talk commerce, growth industries, university partners, abid… https://t.co/CS02HigCxR" +06/06/2018,Politicians,@GovRauner,Cut the ribbon on new Joliet Gateway Center Train Station. The new station increases safety and eases congestion. N… https://t.co/zEhhe9c9s8 +06/06/2018,Politicians,@GovRauner,FY19 Budget: Historic new adoption tax credit to help ease financial burden of adopting children. https://t.co/l1SBRI7rZs +06/05/2018,Politicians,@GovRauner,"Major steps taken these last few weeks. FY19 budget signed with #NoNewTaxes, $11B for roads and bridges and more. S… https://t.co/f4qpRIcncj" +06/05/2018,Politicians,@GovRauner,"New IDVA Director Brigadier General Stephen Curda will oversee the project. Veteran of Afghanistan and Iraq, he’s a… https://t.co/ar5DAxfog0" +06/05/2018,Politicians,@GovRauner,$53M from FY19 budget launches new world-class veterans facility in Quincy. Things get underway Friday with purchas… https://t.co/QHjTJFlPaZ +06/05/2018,Politicians,@GovRauner,FY19 Budget: Education is our priority; we have upped K-12 money by $1.4B since I came to office. https://t.co/EhjowfE1ia +06/05/2018,Politicians,@GovRauner,RT @SenBillBrady: I'm proud we were able to pass a workable balanced budget that does not rely on increasing the tax burden on Illinois' re… +06/05/2018,Politicians,@GovRauner,"A modern, efficient transportation system is essential to our quality of life and Illinois’ success within the glob… https://t.co/tNxW36Gx6c" +06/05/2018,Politicians,@GovRauner,Today we announce $241M investment in Illinois’ freight system. 23 projects will receive grants to improve our stat… https://t.co/FUOm6hyplz +06/04/2018,Politicians,@GovRauner,FY19 Budget: Balance in reach because we put a halt to $1.5B in spending. https://t.co/czkR5X7VdZ +06/04/2018,Politicians,@GovRauner,"Today’s bill signing demonstrates that we can put the people of Illinois ahead of all other concerns. So, on their… https://t.co/RoNT9skoHe" +06/04/2018,Politicians,@GovRauner,"Finally, the legislature agreed to fund our request to fund back pay for state employees. This is a fairness issue… https://t.co/1RCeJbhQLo" +06/04/2018,Politicians,@GovRauner,The General Assembly lived up to its promise on the Quincy Veterans Home. $53M in this budget to get us underway wi… https://t.co/hWajH9Awic +06/04/2018,Politicians,@GovRauner,"With this budget, we have begun addressing our pension costs. By making some modest reforms we will save $445M and… https://t.co/CmzllclwqY" +06/04/2018,Politicians,@GovRauner,$500M will be funded toward the Discovery Partners Institute initiative. DPI will cultivate the talent to work alon… https://t.co/nK69tEEi2v +06/04/2018,Politicians,@GovRauner,FY19 budget also includes measures that help reduce some of the financial barriers to adopting. Paving the way for… https://t.co/oHTLNxgt05 +06/04/2018,Politicians,@GovRauner,"Every child in Illinois deserves a quality education, no matter where or what school they attend. Budget fully fund… https://t.co/OdbjeujasR" +06/04/2018,Politicians,@GovRauner,"It’s not a perfect fiscal plan, but it’s a step in the right direction. My hope is that we continue the bipartisans… https://t.co/PXsiVEtFrM" +06/04/2018,Politicians,@GovRauner,"We set two fundamental goals for FY19: spend within our means and #NoNewTaxes. With this budget, we have an opportu… https://t.co/0NjhYutdn6" +06/04/2018,Politicians,@GovRauner,"Legislative leaders, sponsors, negotiators, members and staff together for FY19 budget signing. Balance in reach,… https://t.co/8PbfPhcImP" +06/04/2018,Politicians,@GovRauner,RT @craigrwall: The pen-ultimate preparation for then @GovRauner budget bill signing. @ABC7Chicago #twill https://t.co/S0dShsIBH4 +06/04/2018,Politicians,@GovRauner,"All flags have been lowered half-staff to salute Chicago Firefighter Juan Bucio, who dedicated his life to helping… https://t.co/fuXxM7HuTv" +06/03/2018,Politicians,@GovRauner,RT @SpeakerRyan: Illinois: 327 #OpportunityZones throughout 85 counties. @GovRauner→ “These zones include some of the most underserved area… +06/03/2018,Politicians,@GovRauner,Fairness is in Illinois’ DNA. Diana and I are proud to celebrate the work of @EqualityILL. Nothing is more importan… https://t.co/DQ6xNWKHeN +06/03/2018,Politicians,@GovRauner,RT @ILFirstLady: When Bruce and I started this journey we envisioned not just a home that belongs to the people but also a beacon of our hi… +06/02/2018,Politicians,@GovRauner,"Economic development and better opportunities begin with helping businesses start, stay and grow in Illinois. Check… https://t.co/JMAbvnkM4G" +06/02/2018,Politicians,@GovRauner,"On behalf of a grateful Nation, I am proud to proclaim June 2, 2018, as 126th Air Refueling Wing Day. The Wing live… https://t.co/xbZkLP85FY" +06/01/2018,Politicians,@GovRauner,"Pop the cork and cheers to 200 years with a glass of Bicentennial Rosé! 13 world-class producers from northern, sou… https://t.co/68Q4nLqCqJ" +06/01/2018,Politicians,@GovRauner,Got an update on WIU this afternoon from University President Dr. Jack Thomas. The school is doing a great job prep… https://t.co/CRXt89eEG1 +06/01/2018,Politicians,@GovRauner,"An incredible accomplishment by @IDOT_Illinois. Macomb Bypass initiative is smart, forward-thinking, and in tune wi… https://t.co/fPdsI6zUp5" +06/01/2018,Politicians,@GovRauner,IL businesses are using the web to succeed more than ever - growing jobs and boosting our economy. Google just anno… https://t.co/UgfGdTaKp4 +06/01/2018,Politicians,@GovRauner,"Waiting until our roads and bridges crumble is expensive, inefficient and unsafe. This summer we are taking action… https://t.co/X5QDZ7N5ou" +06/01/2018,Politicians,@GovRauner,"Exciting day! Just cut the ribbon on the new Northwest Macomb Bypass. It brings much needed traffic relief, connect… https://t.co/mNEuNglQSC" +05/31/2018,Politicians,@GovRauner,"(4/4) We worked together to provide a budget to the people of Illinois that can be balanced, with hard work and con… https://t.co/sxIryHWet7" +05/31/2018,Politicians,@GovRauner,"(3/4) It’s a step in the right direction, though it does not include much-needed debt paydown and reforms that woul… https://t.co/HDhO4j3yC8" +05/31/2018,Politicians,@GovRauner,(2/4) We started this year’s budget process with the common-sense goals of a full-year balanced budget and no new t… https://t.co/YLXox9RrOZ +05/31/2018,Politicians,@GovRauner,(1/4) The Fiscal Year 2019 budget is the result of bipartisan effort and compromise. I’ll be taking action quickly… https://t.co/jKJwSjSo4t +05/30/2018,Politicians,@GovRauner,"Two weeks ago, School Resource Officer Mark Dallas prevented an unspeakable tragedy at Dixon High School. Urge your… https://t.co/kwhtGBABFN" +05/30/2018,Politicians,@GovRauner,Officer Dallas’ response at Dixon High is an example of why we need resource officers in our schools. Thanks to him… https://t.co/WguTtCwf41 +05/30/2018,Politicians,@GovRauner,"Two weeks ago, School Resource Officer Mark Dallas prevented an unspeakable tragedy. When a gunman opened fire at D… https://t.co/Nw2T7o1ysw" +05/29/2018,Politicians,@GovRauner,Good meeting with Consul General Federico Palomera and Ambassador Pedro Morenes Eulate of Spain. Spain is an $800M… https://t.co/bhQOAwOvUz +05/29/2018,Politicians,@GovRauner,Sad to hear of the tragic passing of Firefighter Juan Bucio. It takes incredible courage to put one’s safety on the… https://t.co/1oAbb7FBuY +05/29/2018,Politicians,@GovRauner,"A modern, efficient transportation system is essential to Illinois’ economy. This plan improves our roads and bridg… https://t.co/hXtWdkzLnO" +05/29/2018,Politicians,@GovRauner,"Over time, this forward-thinking strategy means big savings that we can reinvest in other important infrastructure projects. #BuildIllinois" +05/29/2018,Politicians,@GovRauner,"The plan is a big change in strategy. Abandoning worst-first strategy in favor of smaller, more timely repair and p… https://t.co/dSSLRf2bvK" +05/29/2018,Politicians,@GovRauner,"Construction on The McClugage Bridge begins in FY19. New bridge will reduce congestion, improve traffic flow, incre… https://t.co/zgquuzEn5q" +05/29/2018,Politicians,@GovRauner,Announced an $11B investment in Illinois roads and bridges this morning. The 6-year program starts this summer with… https://t.co/KzW5gCrqHZ +05/28/2018,Politicians,@GovRauner,"We are able to enjoy this holiday, our freedom and safety because of the ultimate sacrifices made by our military s… https://t.co/CysVEw9usE" +05/28/2018,Politicians,@GovRauner,"Nearly 27,000 Illinoisans gave their lives during the WWII, Korean and Vietnam Wars. It is with reverence and overw… https://t.co/tJz2UxJebo" +05/28/2018,Politicians,@GovRauner,Great to be back at the American Legion Post 32 today. Always a wonderful time. https://t.co/37nzVeHBU9 +05/28/2018,Politicians,@GovRauner,So great to come home after a ride. Renovations on the @ILMansion are moving along. 7 weeks until doors open to the… https://t.co/cDBHDDb4x4 +05/27/2018,Politicians,@GovRauner,"There is no room for intolerance in our state, our society. Thank you to the volunteers for clearing the markers. I… https://t.co/TBxMEaiZoq" +05/27/2018,Politicians,@GovRauner,Watching dirt fly this beautiful Sunday at the prestigious 2018 Harley-Davidson @SpringfieldMile. The Illinois Stat… https://t.co/vysWzbyE7A +05/26/2018,Politicians,@GovRauner,Today we show our unending gratitude to the heroes who have given their lives for our country. The Spaulding Vetera… https://t.co/UD8vt994Ga +05/26/2018,Politicians,@GovRauner,RT @ILFirstLady: Did you know the last major renovation of the @ILMansion happened in the 1970s! Now we’re just weeks away from opening the… +05/26/2018,Politicians,@GovRauner,It is said our flag does not fly by the wind. It flies with the last breath of each soldier who died protecting it.… https://t.co/oE8ycqUcku +05/25/2018,Politicians,@GovRauner,"Safe travels this #MemorialDayWeekend, Illinois. Millions are expected to hit the road. So buckle up, stay alert an… https://t.co/JAlUxx4E34" +05/25/2018,Politicians,@GovRauner,Sign up for our newsletter. Stay up to date on the advances we are making for Illinois. Visit:… https://t.co/nZyz29OKAk +07/02/2018,Politicians,@SenatorLeahy,"Leahy, @SenSanders and @PeterWelch Announce $3 Million for AmeriCorps in Vermont https://t.co/sq1IIu1EA9 https://t.co/jxOuogwPKl" +07/02/2018,Politicians,@SenatorLeahy,I’ll continue to direct federal investments into affordable housing development because of the impact on downtowns… https://t.co/ndhKjDL76b +07/02/2018,Politicians,@SenatorLeahy,"Vermonters face the nation’s fifth-widest affordability gap between the average renter wage, and the wage needed to… https://t.co/kpoVlnMfWO" +07/02/2018,Politicians,@SenatorLeahy,Affordable housing lifts people out of poverty. The 16 affordable apartments at Bridge and Main will help homeless… https://t.co/J4eafVGSGV +07/02/2018,Politicians,@SenatorLeahy,RT @GrassleyPress: .@WashTimes: @ChuckGrassley and @SenatorLeahy call on Supreme Court to release same-day audio of arguments https://t.co/… +07/02/2018,Politicians,@SenatorLeahy,Congratulations to #WhiteRiverJunction on the opening of Bridge and Main Apartments. Many thanks to developer Bill… https://t.co/ckY726zpnH +07/02/2018,Politicians,@SenatorLeahy,RT @annalecta: New letter from Senate Judiciary Chairman @ChuckGrassley & @SenatorLeahy to Chief Justice Roberts advocates for greater fede… +07/02/2018,Politicians,@SenatorLeahy,"RT @Headsnipe011: For example, he introduced – and Leahy cosponsored – legislation to allow television cameras to cover federal court proce…" +07/02/2018,Politicians,@SenatorLeahy,"With Justice Kennedy’s looming retirement, hard-fought constitutional rights hang in the balance now, more than eve… https://t.co/GuO9BiiMUb" +07/02/2018,Politicians,@SenatorLeahy,I just penned a letter with Judiciary Chair @ChuckGrassley urging Chief Justice Roberts to release same-day audio r… https://t.co/8IPJoOFW4o +07/02/2018,Politicians,@SenatorLeahy,"RT @headachedoc: Senate Appropriations Committee supports increased and focused @NIH research on #migraine, #cluster headache, and other #h…" +07/02/2018,Politicians,@SenatorLeahy,@ChuckGrassley And Leahy Seek Same-Day Audio Of All Supreme Court Arguments https://t.co/AD2cfmj3KU https://t.co/4LJvHaD89i +06/30/2018,Politicians,@SenatorLeahy,Whenever I am at our home in Vermont I get up early just to see the nature around. Sometimes it is deer in the fiel… https://t.co/JyNmmZDhVj +06/30/2018,Politicians,@SenatorLeahy,"Wow. Beautiful, and important in this troubling moment. Vermonters today have also strongly added their voices. https://t.co/aNtk1OA727" +06/30/2018,Politicians,@SenatorLeahy,"Bless them all. Thanks to them, and you. A sickening time. https://t.co/tmexoslNPg" +06/30/2018,Politicians,@SenatorLeahy,"RT @alexsilbermanvt: Traffic stopped on S. Winooski Ave. as hundreds, if not over a thousand, demonstrators march towards Battery Park. #BT…" +06/30/2018,Politicians,@SenatorLeahy,"RT @paxperscientiam: #FamiliesBelongTogetherMarch + +#FamiliesBelongTogether #vtpoli #btv https://t.co/BADFFfZmSG" +06/30/2018,Politicians,@SenatorLeahy,RT @EricEvenson: #FamiliesBelongTogether March in #BTV today - so glad we took part! https://t.co/M5wRSthbIC +06/30/2018,Politicians,@SenatorLeahy,RT @BaileyAnneBrave: In the streets for human rights in #Burlington #Vermont. #BTV #KeepFamiliesTogether https://t.co/0vKG74NWqZ +06/30/2018,Politicians,@SenatorLeahy,RT @exocited: #familiesbelongtogetherVT It's been about 15 years since I saw a turnout like this in #BTV https://t.co/zRqYDMMucL +06/30/2018,Politicians,@SenatorLeahy,RT @alexsilbermanvt: Hundreds of people packed into the courtyard to hear speakers before the start of #KeepFamilesTogether March in Burlin… +06/30/2018,Politicians,@SenatorLeahy,A Vermonter today. The Trump Adminstration's purposeful cruel and cynical family separations must end. Vermonters a… https://t.co/TyYCmy4piz +06/30/2018,Politicians,@SenatorLeahy,"Vermonters, with Americans across the nation, know that the Trump family separations are cruel, they are abhorrent,… https://t.co/jkBQmm6VTU" +06/29/2018,Politicians,@SenatorLeahy,"RT @CrankyQuilter: @SenatorLeahy @PattyMurray Thank you, Senator. I live my life in that zone and it has never been an issue until now. As…" +06/29/2018,Politicians,@SenatorLeahy,I made it clear today in my speech today that I am concerned that anyone who passes Pres. Trump’s litmus tests for… https://t.co/lJIE2gJnzm +06/29/2018,Politicians,@SenatorLeahy,I told the @VermontLaw Restorative Justice Conference about the $3m I included in FY 19 funding for a new National… https://t.co/clBWxPjWBZ +06/29/2018,Politicians,@SenatorLeahy,"RT @KBLVT: @kylegriffin1 @SenSanders @VermontSOS @MSNBC @SenatorLeahy @ACLU Thanks for introducing this important legislation, Sens Leahy &…" +06/29/2018,Politicians,@SenatorLeahy,RT @WVNYWFFF: Leahy: Cut border checkpoint 'zones' from 100 miles to 25 miles https://t.co/QUMbTmY8f0 +06/29/2018,Politicians,@SenatorLeahy,"For too long, Congress relied on mandatory minimums to ‘solve’ every public safety concern. Yet one-size-fits-all s… https://t.co/95H82QFL5h" +06/29/2018,Politicians,@SenatorLeahy,I’ve been looking forward to addressing this great audience today at @VermontLaw #RestorativeJustice Conference at… https://t.co/7smqoCl269 +06/29/2018,Politicians,@SenatorLeahy,RT @VTLawSchool: “One size does not fit all.” @SenatorLeahy on #justicereform and #restorativejustice at the International Restorative Just… +06/29/2018,Politicians,@SenatorLeahy,RT @ReneeMyNBC5: “I have never seen a president treat the court-the independent Supreme Court-as an arm of the White House.” @SenatorLeahy… +06/29/2018,Politicians,@SenatorLeahy,News Backgrounder: Vermont Highlights In The 5-Year Farm Bill Passed Thursday Night By The U.S. Senate https://t.co/4C9ttP2GRn +06/29/2018,Politicians,@SenatorLeahy,"RT @cvt_staff: CVT is grateful to @RoyBlunt @SenatorLeahy and @PattyMurray for their important work toward increased funding, which is so n…" +06/29/2018,Politicians,@SenatorLeahy,"RT @UVMLarnerMed: Though once in the headlines for its residents' #opioid #addiction , #VT & #UVM are now at the forefront of treatment w/t…" +06/29/2018,Politicians,@SenatorLeahy,"I support this, and I’m a cosponsor of the Senate bill, S.422. https://t.co/cYFlzqx1q4" +06/29/2018,Politicians,@SenatorLeahy,RT @VTsNEK: The Clearest Lake In Vermont Is Almost Too Beautiful To Be Real https://t.co/XdcpbNPG5Y +06/29/2018,Politicians,@SenatorLeahy,"RT @KathLusk: When I interned for @SenatorLeahy two decades ago, I was paid. That summer he had 4 undergrads & 1 law intern in his DC offic…" +06/29/2018,Politicians,@SenatorLeahy,"Hello. I invite you to follow my work and statements and photos on these and other issues on my Twitter, Instagram… https://t.co/uZNDlvCh3k" +06/29/2018,Politicians,@SenatorLeahy,"RT @UMR4NIH: Thank you @SenatorLeahy for your leadership, support for medical research & vote to #keepNIHstrong #FY19 https://t.co/HyrtpRWm…" +06/29/2018,Politicians,@SenatorLeahy,"RT @emhew: If you live in Vermont, you probably live within the 100-mile zone where border agents have broad authority to carry out warrant…" +06/28/2018,Politicians,@SenatorLeahy,RT @civilrightsorg: Our executive vice president Kristine Lucius is outside #SCOTUS right now rallying to #SaveSCOTUS: No one who has earne… +06/28/2018,Politicians,@SenatorLeahy,Proud to work with and support @pattymurray on this... https://t.co/qp1N67O8tx +06/28/2018,Politicians,@SenatorLeahy,RT @taylordobbs: A new bill from @SenatorLeahy and @PattyMurray would shrink the zone near borders where feds are allowed to conduct warran… +06/28/2018,Politicians,@SenatorLeahy,"The “border zone” extends 100 miles from our land/sea borders, reaching 2/3 of all Americans. Yet the 4th Amendment… https://t.co/NGuXmrjjFh" +06/28/2018,Politicians,@SenatorLeahy,"“Show me your papers”—words you should never hear once inside the US. Immigration officials consider Burlington, Wh… https://t.co/y9yUaCmEa9" +06/28/2018,Politicians,@SenatorLeahy,RT @mcquiston: Leahy leads charge to research alternatives to opioids for chronic pain | Vermont Business Magazine https://t.co/pGks2IPKR7 +06/28/2018,Politicians,@SenatorLeahy,RT @VNewsUV: NEW: @SenatorLeahy has filed a bill to curb interior traffic stops by Customs and Border Protection agents without a warrant.… +06/28/2018,Politicians,@SenatorLeahy,"Vital, lifesaving work that we MUST invest in...for this & future generations. You can't just turn complex cutting-… https://t.co/zuRugviGjl" +06/28/2018,Politicians,@SenatorLeahy,Chants of “We Care!” echoing in the U.S. Senate Capitol complex right now in defense of and advocacy for relief for… https://t.co/gpMEuXpJfI +06/28/2018,Politicians,@SenatorLeahy,Leahy And @PattyMurray Introduce Legislation To Limit Warrantless Vehicle Stops And Property Searches Near The Bord… https://t.co/nZHxFb67HG +06/28/2018,Politicians,@SenatorLeahy,Leahy Leads Charge To Research Alternatives To Opioids For Chronic Pain Through Defense Department Health Program… https://t.co/I0CxqNU7dQ +06/28/2018,Politicians,@SenatorLeahy,Leahy Guides Creation Of National Centers To Address Rural Addiction Through The Senate Appropriations Committee… https://t.co/n6FUjizf7J +06/28/2018,Politicians,@SenatorLeahy,"I have never seen a White House, working with its enablers in Congress, so cynically, disgracefully and inappropria… https://t.co/U7tGpW7q99" +06/28/2018,Politicians,@SenatorLeahy,If House Republicans hold either FBI Director Wray or Deputy Attorney General Rosenstein in contempt it would only… https://t.co/pNUlxZJTHj +06/28/2018,Politicians,@SenatorLeahy,Thanks for checking Patty. And follow me on Twitter as this develops... https://t.co/CUrokHooa1 +06/28/2018,Politicians,@SenatorLeahy,Hi Patty. Have you been reading my statements and following my comments on Twitter on this? ... https://t.co/sWFaU0IVfj +06/28/2018,Politicians,@SenatorLeahy,"RT @Yamiche: Sen. Leahy: Can you give me 1 example of terrorism by a DACA recipient? +Chad Readler of DOJ: No I can't. +Leahy: Neither can J…" +06/28/2018,Politicians,@SenatorLeahy,"President Trump should also reflect on Justice Kennedy’s legacy, and select a nominee who will be a fair-minded, in… https://t.co/jmH3SsGGVP" +06/28/2018,Politicians,@SenatorLeahy,Pres. Trump should listen to the voices of millions of concerned Americans worried that they are on the verge of lo… https://t.co/BsNVF1ZaHE +06/28/2018,Politicians,@SenatorLeahy,"President Trump should use this time to do what President Obama did: Find a mainstream, consensus nominee who would… https://t.co/2B6JS3fzHw" +06/28/2018,Politicians,@SenatorLeahy,There is no justification for rushing this process. Every Republican embraced the #McConnellStandard last Congress… https://t.co/F72HdJiA5E +06/28/2018,Politicians,@SenatorLeahy,"I did not agree with many of Justice Kennedy’s opinions, but I respected his willingness to recognize the rights of… https://t.co/lhFeYMDGD1" +06/28/2018,Politicians,@SenatorLeahy,RT @Alexruoff: Some chamber-shade in today's Senate Def-LHHS markup. Patrick Leahy praising the bipartisan work that went into the def and… +06/28/2018,Politicians,@SenatorLeahy,"I support this, and I’m a cosponsor of the Senate bill, S.422. H.R.299 is being hotlined for Senate action… https://t.co/8G9Li7EM2D" +06/28/2018,Politicians,@SenatorLeahy,Looking forward to being with you all tomorrow... https://t.co/Rq0AERk2WO +06/28/2018,Politicians,@SenatorLeahy,"RT @LindseyGrahamSC: Hearing on @StateDept budget with @SecPompeo. + +WATCH LIVE: https://t.co/i911WRp7ax" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) Sat in on the senator’s meeting with Bill Gates this afternoon. I heard about how the Bill & Melinda Gates… https://t.co/6yWNDTHavy +06/27/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: Good call. https://t.co/zxuRWa5oIL +06/27/2018,Politicians,@SenatorLeahy,BREAKING: REAX Of Senator Patrick Leahy On Justice Kennedy’s Announcement Of His Decision To Retire From The Suprem… https://t.co/ghfm4oaUAk +06/27/2018,Politicians,@SenatorLeahy,Just so you know: I steered thru Judiciary Committee & Senate the 2013 Comprehensive Immigration Reform pkg that in… https://t.co/ngLmqyATCQ +06/27/2018,Politicians,@SenatorLeahy,"(Jack:) After our brown bag lunch with the senator just now, he took us Leahy Interns and Fellows for a stroll to t… https://t.co/d1EC6trjeg" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) More quality time with the senator today for our brown bag lunch earlier with Leahy Interns and Law Clerks.… https://t.co/Tkal60QFuR +06/27/2018,Politicians,@SenatorLeahy,"RT @pleasesaveour: We this is hopeful @AliVelshi +Leahy: Senate appropriations process 'a dose of sanity' - VTDigger https://t.co/ov4WTyDZLc…" +06/27/2018,Politicians,@SenatorLeahy,"RT @vtdigger: The U.S. Senate advanced its first appropriations bills for the next fiscal year with strong bipartisan support +https://t.co/…" +06/27/2018,Politicians,@SenatorLeahy,Thanks. I agree & this was a high priority for me in writing the annual SFOPS Approps Bill. As ranking member there… https://t.co/4145LEdx3Y +06/27/2018,Politicians,@SenatorLeahy,"We had a good meeting today in the Capitol with King Abdullah of Jordan, and with Queen Rania...one of many meeting… https://t.co/1pcEEYjj7w" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) We’re in transit from the Capitol to the Russell Building. Senator Leahy is joking with staff in front of… https://t.co/QXlkuhi5j3 +06/27/2018,Politicians,@SenatorLeahy,"Congrats to former @UVMmHockey star @mstlouis_26, who will be inducted into the @HockeyHallFame 25 years after firs… https://t.co/aOoGz7NNXT" +06/27/2018,Politicians,@SenatorLeahy,RT @MinorHeretic: @SenatorLeahy My sister interned w/Senator Leahy decades ago and a friend’s daughter just last year. Both had a wonderful… +06/27/2018,Politicians,@SenatorLeahy,"RT @LamyJ: @SenatorLeahy one key word here -- ""PAID"" 👏 boss for continuing to make these opportunities possible for students. Lots of Lea…" +06/27/2018,Politicians,@SenatorLeahy,"(Jack:) And another, with the King and Queen https://t.co/L6aeMF4ReB" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) I’m starting my “shadow”day in the Capitol with Senator Leahy as he (as Vice Chair) and Approps Chair Shelb… https://t.co/PuVhDVqXZS +06/27/2018,Politicians,@SenatorLeahy,RT @JayTilton: #ICYMI by @emhew @vtdigger: Leahy: Senate appropriations process ‘a dose of sanity’ https://t.co/nFrdW7GzEu +06/27/2018,Politicians,@SenatorLeahy,Today my intern Jack will shadow me to see what goes into representing #VT every day. Watch my account today for ph… https://t.co/hFlVskPOyZ +06/27/2018,Politicians,@SenatorLeahy,"RT @kathykiely: ""A strong bilateral relationship between the U.S. and Egypt must not be perceived ... as a blank check to silence the media…" +06/26/2018,Politicians,@SenatorLeahy,RT @VT_FEED: The first full day of the Northeast Farm to School Institute workshops are wrapping up! Looking forward to @anson_ag; staff fr… +06/26/2018,Politicians,@SenatorLeahy,"RT @vprnet: 🙋‍♂️ @SenatorLeahy on #TravelBan ➡️ + +“It’s not a question of protecting us, it's anti-American, we should be spending our time,…" +06/26/2018,Politicians,@SenatorLeahy,"RT @vprnet: Sen. Leahy Discusses Family Separation, Trump's Trade Tariffs https://t.co/fnEhamyC34 @vermontedition https://t.co/LdGzK15wWi" +06/26/2018,Politicians,@SenatorLeahy,"RT @vermontedition: On family separation at the southern border @SenatorLeahy says to make change, protests are necessary around the count…" +06/26/2018,Politicians,@SenatorLeahy,BREAKING: Leahy REAX On SCOTUS Decision Upholding President Trump’s Travel Ban https://t.co/rPXuXttoA1 https://t.co/BcuTidIQzh +06/26/2018,Politicians,@SenatorLeahy,Those who aim to restrict the vote are firmly on the wrong side of history—and always have been. My Voting Rights… https://t.co/C41KATd45J +06/26/2018,Politicians,@SenatorLeahy,"No matter the setbacks—states pursuing discriminatory voting laws, inexcusable gerrymandering, recent court decisio… https://t.co/dBsjlmMLrR" +06/26/2018,Politicians,@SenatorLeahy,"RT @jacobsoboroff: You, only you, systematically separated kids from their parents — in many cases possibly permanently — and put them alon…" +06/25/2018,Politicians,@SenatorLeahy,Wow. Thanks Maggie... https://t.co/FyB6UAmBzN +06/25/2018,Politicians,@SenatorLeahy,"RT @BillieJeanKing: Many years ago, I testified on Capitol Hill on behalf of #TitleIX, to help girls and women advance in their sport. Toda…" +06/25/2018,Politicians,@SenatorLeahy,My most solemn duty is to uphold & defend the Constitution while representing the values of Vermonters. POTUS' call… https://t.co/xuUGdLsKt5 +06/22/2018,Politicians,@SenatorLeahy,"Comment of Senator Leahy On The Supreme Court’s Decision On Cell-Site Location Information, In Carpenter v. U.S.… https://t.co/w8dmFQ2rDB" +06/22/2018,Politicians,@SenatorLeahy,RT @OurOcean: The Trump administration just repealed the #NationalOceanPolicy. Here's what comes next... https://t.co/UKQVP0AyQB https://t.… +06/22/2018,Politicians,@SenatorLeahy,RT @IAVI: Sincerest thanks to the #Senate #SFOPS subcommittee members and the leadership of @SenatorLeahy and @LindseyGrahamSC for their co… +06/22/2018,Politicians,@SenatorLeahy,"Every time that Pres. Trump & his enablers tear apart a family, it weakens our nation’s social fabric, & it betrays… https://t.co/8KM3nHMJHd" +06/22/2018,Politicians,@SenatorLeahy,It’s an uplifting tonic to be able to congratulate these new Americans as they took their oath to our country and a… https://t.co/WVJFDL5Iv2 +06/22/2018,Politicians,@SenatorLeahy,Remarks Of Senator Leahy At Burlington Naturalization Ceremony https://t.co/RQ3lJ0a4Zh https://t.co/1xH5EeemLt +06/22/2018,Politicians,@SenatorLeahy,Proud to join with @SenBooker and others in introducing this bill in the Senate. https://t.co/QPYzbmplwX +06/22/2018,Politicians,@SenatorLeahy,In #VT I’m at the naturalization ceremony for 15 new Americans. As Trump continues his assault on immigrants & immi… https://t.co/pwj6aK6cCe +06/22/2018,Politicians,@SenatorLeahy,RT @jackie_pascale: Now at a naturalization ceremony where 15 people are becoming U.S. citizens. Sen. Patrick Leahy is also in attendance.… +06/22/2018,Politicians,@SenatorLeahy,".@SteveSchmidtSES I’m working on legislation to address this very issue, similar to what I and Senator @PattyMurray… https://t.co/AA3Xs3qcl9" +06/22/2018,Politicians,@SenatorLeahy,RT @theglobalfight: Thank you @SenatorLeahy for your leadership on #globalhealth funding and sustained support for the @GlobalFund! https:/… +06/22/2018,Politicians,@SenatorLeahy,"RT @barbarastarrcnn: Following Reports That Defense Department Is Sending Jags To Southern Border To Prosecute Immigration Cases, Senators…" +06/22/2018,Politicians,@SenatorLeahy,"RT @DianneG: Senators Ernst, Gillibrand & Leahy demand answers from Sec. Mattis on use of JAG attorneys on border +(Full letter attached) h…" +06/22/2018,Politicians,@SenatorLeahy,RT @Chip_Lyons: Thank you @LindseyGrahamSC and @SenatorLeahy for your continued commitment to the @PEPFAR program. Increased resources are… +06/22/2018,Politicians,@SenatorLeahy,"Whether due to its incompetence, deliberate cruelty, or both, the Trump Administration hastily tore more than 2,300… https://t.co/PUcIMN1zbK" +06/22/2018,Politicians,@SenatorLeahy,"Another senseless, cynical and dangerous travesty... https://t.co/bkCg2N07fC" +06/22/2018,Politicians,@SenatorLeahy,RT @thehill: Senators urge Mattis to stop using military lawyers to prosecute immigrants https://t.co/tqLSCqWfiG https://t.co/KX7lsGtPda +06/22/2018,Politicians,@SenatorLeahy,A principled conservative. RIP Charles. https://t.co/KeA4NZU9pu +06/21/2018,Politicians,@SenatorLeahy,Vermont's libraries are indispensable elements of our cultural legacy. I started my regular visits to the Kellogg-H… https://t.co/976qATPLOB +06/21/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Appropriations Vice Chair Leahy: Summary Of The Financial Services And General Government FY19 Appropriations Bill https… +06/21/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Appropriations Vice Chair Leahy: Summary Of The Department Of Homeland Security FY19 Appropriations Bill https://t.co/yM… +06/21/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: The Senate Appropriations Committee just passed my amendment with @SenatorLeahy that will deny U.S. visas to any Pakista… +06/21/2018,Politicians,@SenatorLeahy,RT @VTAgencyofAg: June Is Dairy Month: Help Support Your Local Dairy Farmers. Learn more: https://t.co/FrWzIoXEUd #ThinkVt #VtDairy https:/… +06/21/2018,Politicians,@SenatorLeahy,"RT @OswaldRachel: By a narrow vote of 16-15, Senate State-Foreign Operations appropriators adopt amendment allowing funding of UNFPA, repea…" +06/21/2018,Politicians,@SenatorLeahy,RT @UVMMedCenter: Sun Safety: Loving the Summer Sun without Getting Burned via @lewis_first https://t.co/ayBH3rwWkF #summer #vt #parenting +06/21/2018,Politicians,@SenatorLeahy,"RT @HorriganCaitlin: .@SenatorLeahy “We live in a time where the image of the US that historically protects human rights, nurtures alliance…" +06/21/2018,Politicians,@SenatorLeahy,RT @HealthGAP: Senator @LindseyGrahamSC and @SenatorLeahy should be applauded for leading the call to increase global HIV/AIDS funding by $… +06/21/2018,Politicians,@SenatorLeahy,"RT @elisacepstein: 2/ The Senate is marking up the FY19 State, Foreign Ops, and Related Programs bill today at 10:30AM. The Trump admin has…" +06/20/2018,Politicians,@SenatorLeahy,Today was my intern Ramsay’s one-on-one day. He shadowed me throughout my day on Capitol Hill to see what really go… https://t.co/wiTBVwh8UH +06/20/2018,Politicians,@SenatorLeahy,Pres. Trump’s “zero tolerance” policy needs to go. It makes zero sense to delay civil proceedings to criminally pro… https://t.co/eSlk6TJdXp +06/20/2018,Politicians,@SenatorLeahy,Indefinite incarceration of families is NOT the answer. I condemned incarceration of families during the Obama admi… https://t.co/eak5zDJT3G +06/20/2018,Politicians,@SenatorLeahy,"Today the American people, through their forceful and justified outrage, proved they can drive change even during t… https://t.co/9NV7CrP2vF" +06/20/2018,Politicians,@SenatorLeahy,RT @CourthouseNews: Senate Blocks Trump Plan to Cut $15B in Unused Spending https://t.co/gOaj7GylZ8 https://t.co/HRoIigNie5 +06/20/2018,Politicians,@SenatorLeahy,NEWS from Leahy and @GovPhilScott: President Nominates Retired Essex Police Chief To Be Vermont’s Next U.S. Marshal https://t.co/5qbKdk99dg +06/20/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: President Trump and his enablers in Congress have taken these children hostage to try to enact their anti-immigrant agen… +06/20/2018,Politicians,@SenatorLeahy,BREAKING: Comment Of Senator Patrick Leahy (D-Vt.) On President Trump's Reversal Of His Mandatory Family Separation… https://t.co/AwHypSr7Pq +06/20/2018,Politicians,@SenatorLeahy,REAX Of Appropriations Vice Chair Leahy To The Senate’s Vote Wednesday Afternoon Rejecting President Trump’s Rescis… https://t.co/XoUNfhthJm +06/20/2018,Politicians,@SenatorLeahy,"RT @VermontSOS: Today Sec. Condos and @SenatorLeahy announced VT's Receipt +Of $3m in Federal Election Security Funds: https://t.co/jigyGp0W…" +06/20/2018,Politicians,@SenatorLeahy,.@VermontSOS Jim Condos and Senator Patrick Leahy Announce Vermont’s Receipt Of $3 Million in Federal Election Secu… https://t.co/rszUuWqmoH +06/20/2018,Politicians,@SenatorLeahy,RT @VT_AHC: Thank you @SenatorLeahy for fighting for more federal resources to combat #VT's #affordablehousing shortage and #homelessness c… +06/20/2018,Politicians,@SenatorLeahy,RT @WaterAidAmerica: Thank you Senators @GrahamBlog @SenatorLeahy & @SenateApprops for supporting funding for #water #sanitation & #hygiene… +06/20/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Vice Chairman Of Appropriations Senator Patrick Leahy (D-Vt.) On President Trump’s Rescission Package https://t.co/6eBQD… +06/20/2018,Politicians,@SenatorLeahy,"A single mother in #Vermont, earning minimum wage, shouldn’t have to work 85 hours per week to afford a 2-bedroom a… https://t.co/HkJmC9QjPi" +06/19/2018,Politicians,@SenatorLeahy,RT @OurOcean: Thank you @SenatorLeahy for speaking out in favor of strong funding for @NOAA ocean programs in the CJS bill. Your commitment… +06/19/2018,Politicians,@SenatorLeahy,RT @WWConserve: How could the 2018 Farm Bill help #conservation in New England? @SenatorLeahy lays out the benefits of the Senate Agricultu… +06/18/2018,Politicians,@SenatorLeahy,"After a long day of watching Trump’s subordinates spin themselves dizzy defending this abhorrent policy, I have to… https://t.co/C95Tiw8tMw" +06/18/2018,Politicians,@SenatorLeahy,These are the heart-wrenching sounds of Pres. Trump’s family separation policy. This policy is a stain on the very… https://t.co/EVyB8vkrPp +06/18/2018,Politicians,@SenatorLeahy,Trump and his allies claim that family separation is required by law. That is a bald-faced lie. This is a Trump adm… https://t.co/dO2M082CCF +06/18/2018,Politicians,@SenatorLeahy,I just led a letter from all Judiciary Committee Democrats to Chairman Grassley asking that he immediately hold a h… https://t.co/uNnNhL0L8e +06/18/2018,Politicians,@SenatorLeahy,Trump claimed that the FBI using a ROUTINE confidential source during the Russia probe was a scandal bigger than Wa… https://t.co/jcy4TebE3D +06/18/2018,Politicians,@SenatorLeahy,"In response to my question, the IG confirmed that Pres. Trump has NO BASIS in claiming the IG report shows no collu… https://t.co/OKYcs0rttR" +06/18/2018,Politicians,@SenatorLeahy,Leahy Leads Judiciary Democrats In Letter To Grassley Calling For Hearing On President Trump's Family Separation Po… https://t.co/DUm4mQjGqz +06/18/2018,Politicians,@SenatorLeahy,Vermont Receives Increased Opioid Funding Through New Leahy-Negotiated Omnibus Formula https://t.co/kgBzn2IqVF https://t.co/nobXBuyyNV +06/18/2018,Politicians,@SenatorLeahy,I will be asking FBI Director Wray and IG Horowitz about the Justice Department Inspector General report on FBI act… https://t.co/P94OtHON0E +06/18/2018,Politicians,@SenatorLeahy,"Just learned that 2,342 children have now been torn away from their families as a result of President Trump’s famil… https://t.co/zPt3tmydhB" +06/16/2018,Politicians,@SenatorLeahy,FYI I'm an original cosponsor. https://t.co/mNLEP7qSr7 +06/16/2018,Politicians,@SenatorLeahy,Actually I'm an original cosponsor of Senator Feinstein's bill. I spoke again about it Thursday in the Judiciary… https://t.co/ORx16YYgy5 +06/16/2018,Politicians,@SenatorLeahy,"Our bill to stop this, sponsored by Senator Feinstein, continues to gather support -- EXCEPT, so far, from Senate R… https://t.co/xrX9EOgAug" +06/16/2018,Politicians,@SenatorLeahy,"RT @MarkWarner: ‘Since his arrival in Michigan, family members said, a day has not gone by when the boy has failed to ask in Spanish, “When…" +06/16/2018,Politicians,@SenatorLeahy,RT @SenFeinstein: President Trump was wrong again this morning when he said the law requires children to be taken from their parents at the… +06/16/2018,Politicians,@SenatorLeahy,RT @AgandFoodTeam: We're liking the Senate Agriculture Committe's version of the Farm Bill so far. Ready to see what happens next! @ChuckGr… +06/15/2018,Politicians,@SenatorLeahy,Leahy Announces Significant Funding Increases To Programs That Protect and Preserve Lake Champlain https://t.co/iqr7ubzlhP +06/15/2018,Politicians,@SenatorLeahy,Leahy Advances Creation Of National Center For Restorative Justice https://t.co/Y4Rx93GVqn +06/15/2018,Politicians,@SenatorLeahy,RT @JayTilton: @SenatorLeahy and @SenShelby have been the driving force behind keeping poison pills out of the process and a return to “old… +06/15/2018,Politicians,@SenatorLeahy,Leahy Advances Record Funding For Violence Against Women Act Programs; Increase For Bulletproof Vests Program https://t.co/JSecupb012 +06/15/2018,Politicians,@SenatorLeahy,Leahy Leads Fight Against Opioid Epidemic In Senate Appropriations Committee https://t.co/5gD0oYGRJK +06/14/2018,Politicians,@SenatorLeahy,"Systematically tearing families apart at our Southern Border is inhumane, a violation of our values, and calls to m… https://t.co/PgddizILiA" +06/14/2018,Politicians,@SenatorLeahy,Leahy-Grassley CREATES Act To Lower Prescription Drug Prices Clears Judiciary Committee https://t.co/6F9msQGkxX https://t.co/bCSF6FS1Qw +06/14/2018,Politicians,@SenatorLeahy,"A day we’ve been waiting for, a chance for REAL action to bring down Americans’ prescription costs, and another boo… https://t.co/o1OUxEAkm7" +06/14/2018,Politicians,@SenatorLeahy,"Students are in the Nation’s Capital from across the nation – from Vermont, to Arizona, to Oregon, to every other s… https://t.co/rWRxVFdatB" +06/14/2018,Politicians,@SenatorLeahy,Today the Vermont National Guard’s Air Ambulance unit bid farewell to their friends and family as they head to Fort… https://t.co/1ifUdNGs2N +06/14/2018,Politicians,@SenatorLeahy,"Amen. I had an exactly even number of Republican and Democratic cosponsors of my bill, and momentum continues to bu… https://t.co/Ib42ZoTIz7" +06/14/2018,Politicians,@SenatorLeahy,BREAKING: Comment of Senator Leahy (D-Vt.) On The DOJ Inspector General's Report https://t.co/0igsALtO1r https://t.co/MyJMMFubGf +06/14/2018,Politicians,@SenatorLeahy,RT @NOgnanovich: Both @SenShelby and #Appropriations ranking member @SenatorLeahy say bipartisan approach and avoidance of `poison pill' ri… +06/14/2018,Politicians,@SenatorLeahy,"RT @ktullymcmanus: Senate Appropriations takes up FY19 Interior-Environment, CJS & #LegBranch spending bills today https://t.co/Ro2933BMQh" +06/14/2018,Politicians,@SenatorLeahy,"RT @CVSHealth: Thank you Senator @ChuckGrassley, @SenatorLeahy and other members of the Senate Judiciary Committee for your leadership in m…" +06/14/2018,Politicians,@SenatorLeahy,“Where is our soul?” I spoke out again today in the Judiciary Committee about the inhumane child separations happen… https://t.co/jWF6xueAkQ +06/14/2018,Politicians,@SenatorLeahy,RT @ewg: Thank you @SenatorLeahy for championing organic and working to increase payment levels provided to organic and transitioning produ… +06/14/2018,Politicians,@SenatorLeahy,"RT @RxPricing: Thank you, @SenatorLeahy, for your leadership on the #CREATESAct, which will increase #generics & #biosimliars competition,…" +06/14/2018,Politicians,@SenatorLeahy,"RT @AccessibleMeds: @SenatorLeahy ""You can't get any wider a spectrum than that. Either it is an excellent piece of legislation or some of…" +06/14/2018,Politicians,@SenatorLeahy,"A chilling first look for most Americans at the hurt, the misery and the fear that this travesty of a policy is wre… https://t.co/AooR6Aeuyh" +06/13/2018,Politicians,@SenatorLeahy,RT @AccessibleMeds: Thank you @SenatorLeahy for championing the #CREATESAct. We look forward to you helping bring down #drugprices for Verm… +06/13/2018,Politicians,@SenatorLeahy,RT @shortj: Thank you @SenatorLeahy for your important work during today's Senate Ag Committee markup of the #farmbill to support and stren… +06/13/2018,Politicians,@SenatorLeahy,Summary Of The 2018 Farm Bill Markup Incl. Vermont Highlights https://t.co/4C9ttP2GRn +06/13/2018,Politicians,@SenatorLeahy,Leahy Amendment Adds Bipartisan Reauthorization Of The Northern Border Regional Commission To The 2018 Farm Bill… https://t.co/drVB98z8lj +06/13/2018,Politicians,@SenatorLeahy,Vermont #Maple = The #GoldStandard https://t.co/T5mPoliVaL +06/13/2018,Politicians,@SenatorLeahy,RT @NRDC: Thank you @SenatorCantwell @SenatorTomUdall @SenSchumer @SenatorLeahy @SenMarkey @SenBennetCO @SenJeffMerkley @RepHuffman @RepJar… +06/13/2018,Politicians,@SenatorLeahy,RT @CQnow: [ALERT] Senate Agriculture Committee Approves Farm Bill ($) https://t.co/yLRaUEaF4S +06/13/2018,Politicians,@SenatorLeahy,Important News That #Vermont #Dairy Farmers Can Use: #USDA Extends The Application Deadline For The Improved Dairy… https://t.co/fOcejDPRTq +06/13/2018,Politicians,@SenatorLeahy,RT @YoungFarmers: Thank you to our champions on the Committee that offered amendments to support young farmers and ranchers: @SenBennetCO @… +06/13/2018,Politicians,@SenatorLeahy,"RT @lesleyclark: ""Times have changed, for the better,"" a chuckling @SenateMajLdr says as Sen. Patrick Leahy talks about days ago + legislat…" +06/13/2018,Politicians,@SenatorLeahy,"RT @JayTilton: “Chairman @SenShelby and Vice-Chairman @SenatorLeahy have been very strong in saying, ‘We’re going to the regular order and…" +06/13/2018,Politicians,@SenatorLeahy,RT @ldreiling: #FarmBill18 statements going on now. Grassley wants payment limits. Boozman happy about rice support and Leahy supports dair… +06/13/2018,Politicians,@SenatorLeahy,RT @emv52: .@SenatorLeahy recalls Dole & HHH work on past #FarmBill cycles & lauds Cmte ldrs now 4 bill 4 Farm & nutrition 🍴🚜 ⁦@HungerFreeV… +06/13/2018,Politicians,@SenatorLeahy,RT @RuralCo: @SenatorLeahy #Farmbill2018 continues the long tradition of bipartisan bills - see the farmers who work hard 365 days a year -… +06/13/2018,Politicians,@SenatorLeahy,RT @MoveOn: https://t.co/N7d94q9igU +06/12/2018,Politicians,@SenatorLeahy,I'm a proud cosponsor of this bill. See my website for my recent speech on the Senate Floor about this travesty. https://t.co/GqAhU1trGE +06/12/2018,Politicians,@SenatorLeahy,Capitals fans are happy. #ALLCAPS https://t.co/9MODNxovVk +06/12/2018,Politicians,@SenatorLeahy,Statement Of Senator Patrick Leahy On The Trump-Kim Summit Meeting https://t.co/atEBbmwU8T https://t.co/6JTvypboCZ +06/12/2018,Politicians,@SenatorLeahy,"RT @vtdigger: “There is no doubt the President’s rash words and actions harm Vermonters and Canadians alike,” @SenatorLeahy said in respons…" +06/12/2018,Politicians,@SenatorLeahy,"RT @benjaminwittes: Every day, ask yourself this question: What one thing can I do today that will make this democracy stronger and honor a…" +06/11/2018,Politicians,@SenatorLeahy,"RT @davidaxelrod: Whoa. After hours of grinding diplomacy, @POTUS will submit himself to the probing questioning of...Sean Hannity! +I bet K…" +06/11/2018,Politicians,@SenatorLeahy,June is #PTSD Awareness Month. Help spread the word. RT & visit the National Center for PTSD web site to see what t… https://t.co/ZAsyqpDi9o +07/02/2018,Politicians,@MarkWarner,RT @makolaabdullah: Thank you @MarkWarner for your continued support for @VSUTrojans https://t.co/lYDL8LkShW +07/02/2018,Politicians,@MarkWarner,"RT @AtlanticCouncil: EVENT—We have two important events, among many others, lined up. +1⃣ On July 16, the same day of the Trump-Putin meetin…" +07/02/2018,Politicians,@MarkWarner,RT @NPCA: A new bipartisan bill is building momentum for addressing the maintenance backlog in America's national parks. #FixOurParks https… +07/02/2018,Politicians,@MarkWarner,"I’m so impressed with Gabriel and Noah from Richmond. They were diagnosed at birth with sickle cell disease, but th… https://t.co/zUfNlAs01D" +07/01/2018,Politicians,@MarkWarner,"“The White House promised '70 percent' of the tax cut would go to workers. It didn't.” +https://t.co/BENcB1drDy" +06/30/2018,Politicians,@MarkWarner,"Congratulations @VSUTrojans! +https://t.co/d73WW8vmnf" +06/29/2018,Politicians,@MarkWarner,GOOD NEWS for our national parks. After months of negotiations with the Administration and my Republican colleagues… https://t.co/NpiQumbaU8 +06/29/2018,Politicians,@MarkWarner,This is 100% false. https://t.co/BFyYXu3zQk +06/28/2018,Politicians,@MarkWarner,"RT @ChrisVanHollen: Phil, I can’t imagine what you and the entire Capital Gazette team are going through right now. Journalists shouldn’t h…" +06/28/2018,Politicians,@MarkWarner,RT @amyklobuchar: With threats of election interference growing @MarkWarner & I are urging the FEC to implement strong transparency & accou… +06/28/2018,Politicians,@MarkWarner,Make no mistake: the President just gave Russia the green light to once again interfere in US Elections. +06/28/2018,Politicians,@MarkWarner,"This is dangerous, this is weak, and it’s yet another slap in the face to the intelligence professionals who quite… https://t.co/9M2Pvjcbey" +06/28/2018,Politicians,@MarkWarner,"But no, here we are less than a month away from a Presidential summit with Vladimir Putin, and the President is ope… https://t.co/AnKI9zDAuD" +06/28/2018,Politicians,@MarkWarner,"For a while it even seemed like the President had gotten the message. +https://t.co/dNHxMtaWSW" +06/28/2018,Politicians,@MarkWarner,"So does the entire Senate Intel Committee, Republicans and Democrats alike. +https://t.co/FFA5XT0nTZ" +06/28/2018,Politicians,@MarkWarner,Reminder: our entire IC leadership stands by that conclusion. https://t.co/S6NokQT8ht +06/28/2018,Politicians,@MarkWarner,"The President can either believe the unanimous conclusion of our intelligence community, or he can believe Vladimir… https://t.co/ZmciouAkgS" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Secretary of Defense Jim Mattis, or he can believe Vladimir Putin. https://t.co/b6F4hQi2F2" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his NSA Director and head of US Cyber Command General Nakasone, or he can believe… https://t.co/J3bd1vvz2i" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his FBI Director Chris Wray, or he can believe Vladimir Putin. https://t.co/s26c4Q0N5k" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Secretary of State and former CIA Director Mike Pompeo, or he can believe Vlad… https://t.co/9gJKremxYH" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Director of National Intelligence Dan Coats, or he can believe Vladimir Putin. https://t.co/N7DasNkWBR" +06/28/2018,Politicians,@MarkWarner,"And they’re lying. The President can either believe Russia or he can believe our country’s intel chiefs, generals,… https://t.co/tENiFizqU6" +06/28/2018,Politicians,@MarkWarner,"I am grateful to Justice Kennedy for his many decades of service to our country, and wish him all the best in his retirement." +06/28/2018,Politicians,@MarkWarner,"In just four months, the American people will determine the makeup of the United States Senate. Given the precedent… https://t.co/JmEEW894LS" +06/27/2018,Politicians,@MarkWarner,"Unless the President holds Putin accountable for: + +- 2016 election interference +- Undermining European democracies… https://t.co/00DMp68Vfj" +06/27/2018,Politicians,@MarkWarner,"After visiting one of the ‘better’ detention facilities, all I can say is we need a lot more compassion for these k… https://t.co/bjA9EuB4b5" +06/27/2018,Politicians,@MarkWarner,"We’ve heard a lot of denials, a lot of counterattacks and blame shifting from this Administration, but we haven’t h… https://t.co/2YyYPYkBXB" +06/27/2018,Politicians,@MarkWarner,What this facility cannot do is reunite them with their parents. That’s the responsibility of the Trump Administrat… https://t.co/mhqC5s5VBC +06/27/2018,Politicians,@MarkWarner,"But no matter how well they’re being treated by the staff, the fact remains that they’re being held in detention, s… https://t.co/Jl7xuCoMB1" +06/27/2018,Politicians,@MarkWarner,"I’ve known this facility for a long time, I’ve visited before, and according to the kids I spoke to, they’re being treated well there." +06/27/2018,Politicians,@MarkWarner,"This morning I visited an HHS detention facility in Bristow, VA, where a number of immigrant minors are being held,… https://t.co/mrihiq0cAi" +06/27/2018,Politicians,@MarkWarner,"RT @kingWTOP: Awaiting a briefing from @MarkWarner about the Bristow, Va facility housing immigrant children separated from their parents.…" +06/27/2018,Politicians,@MarkWarner,"By now you might have heard the reports of immigrant kids allegedly abused at a detention center in Staunton, Va. H… https://t.co/wxgb4Sb5Em" +06/27/2018,Politicians,@MarkWarner,"RT @SenFeinstein: UPDATE: Only around 500 children separated from their parents at the border have been reunited. Around 2,000 children are…" +06/27/2018,Politicians,@MarkWarner,RT @brianschatz: This is happening in every state. And the official filings from insurance companies specifically cite Republican sabotage… +06/27/2018,Politicians,@MarkWarner,RT @LoopEmma: The Senate Intelligence Committee unanimously passed the 2019 Intelligence Authorization Act today. It’s named after late com… +06/26/2018,Politicians,@MarkWarner,"It’s official: the Republican tax bill is blowing up our national debt, bigly. https://t.co/QouFnDhuEp" +06/26/2018,Politicians,@MarkWarner,"ZTE is a national security threat, not a bargaining chip in trade negotiations. Our intelligence community knows it… https://t.co/UV8ETmbxye" +06/26/2018,Politicians,@MarkWarner,RT @SenDuckworth: The America that I know & am proud to have served in uniform is a nation that welcomes immigrants & refugees & defends th… +06/26/2018,Politicians,@MarkWarner,"While I disagree with the Court, today’s decision does not make the President’s actions or statements related to th… https://t.co/bZ531XSrdQ" +06/26/2018,Politicians,@MarkWarner,Three years ago today #MarriageEquality became the law of the land. #LoveIsLove https://t.co/i0uNuHkcrI +06/25/2018,Politicians,@MarkWarner,RT @ChrisVanHollen: Trump constantly belittles our hardworking federal workforce and proposed a pay freeze even though the cost of living i… +06/25/2018,Politicians,@MarkWarner,"Great drawing, Sarah! Can’t wait to see this young Virginian’s @Google doodle on the homepage. +https://t.co/OOyzvkuOkX" +06/25/2018,Politicians,@MarkWarner,"RT @ChrisMurphyCT: Who is getting hurt the most by Trump's sabotage of the health care system? + +Older Americans who don't yet qualify for…" +06/25/2018,Politicians,@MarkWarner,Something strange is happening. Federal workers hit by the OPM hack — according to all public reports a Chinese esp… https://t.co/S5sg7j1tk5 +06/25/2018,Politicians,@MarkWarner,"RT @MasonAthletics: What can we say, Mason always gets it done 😎 https://t.co/Bukkbuzgzi" +06/25/2018,Politicians,@MarkWarner,RT @clairecmc: My thanks to @Sen_JoeManchin. And a sore rib for a few weeks is no big deal. I play hurt. The work goes on. https://t.co/rBb… +06/25/2018,Politicians,@MarkWarner,"With a motion by George Mason, seconded by Patrick Henry, and a vote of 89-79, Virginia became the 10th state admit… https://t.co/mE6Nf303aG" +06/23/2018,Politicians,@MarkWarner,"This isn’t over until every last family is reunited. +https://t.co/nIX0YSbg4D" +06/22/2018,Politicians,@MarkWarner,RT @SenatorDurbin: Where is the plan from the Trump Administration to reunite these children with their parents? President Trump created th… +06/22/2018,Politicians,@MarkWarner,Congratulations to the @LittleLobbyists on one year of fighting for our nation’s youngest and most vulnerable… https://t.co/GUbwmuYMO7 +06/22/2018,Politicians,@MarkWarner,Great conversation on cybersecurity and security clearance reform with @NoVATechCouncil today at @GWTweets Loudoun… https://t.co/mnQ6SKG8gr +06/22/2018,Politicians,@MarkWarner,.@TimKaine and I are demanding answers about what’s going on at this facility in Staunton. https://t.co/KJNKHVzx05 +06/22/2018,Politicians,@MarkWarner,RT @NoVaTechCouncil: @MarkWarner sits down with @gwvstc #GWU cybersecurity students #NVTC https://t.co/OvEvIzBt2a +06/22/2018,Politicians,@MarkWarner,"Great seeing advocates from @AlzAssociation. They’re fighting for the 140,000 Virginians with Alzheimer’s and thous… https://t.co/fZXlPvauXk" +06/21/2018,Politicians,@MarkWarner,"We need to see these kids, and we need answers about what's going on at this facility. https://t.co/LNpOxusQGc" +06/20/2018,Politicians,@MarkWarner,"RT @timkaine: The Old Testament instructs the faithful: “When a foreigner resides among you in your land, do not mistreat them... Love them…" +06/20/2018,Politicians,@MarkWarner,"Never forget how many of us are Americans because our ancestors came fleeing war, famine, religious persecution & o… https://t.co/xH4hL01RuY" +06/20/2018,Politicians,@MarkWarner,RT @AspenFutureWork: “One of the most important takeaways from the @BLS_gov Contingent Worker Supplement is that this portion of the workfo… +06/20/2018,Politicians,@MarkWarner,More people should be paying attention to this. https://t.co/YnyGwU5not +06/20/2018,Politicians,@MarkWarner,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/20/2018,Politicians,@MarkWarner,Amen @MarkHerringVA. #KeepFamiliesTogether https://t.co/7zChlsMNws +06/20/2018,Politicians,@MarkWarner,"RT @TyrichardsonPC: Today: Sen.@MarkWarner, a vocal advocate for gig worker rights, expected to detail a few new ideas to help protect the…" +06/20/2018,Politicians,@MarkWarner,"RT @DavidCornDC: .@markwarner at Senate Intel Comm hearing: Russian intervention in 2016 election was ""a success for Vladimir Putin.""" +06/20/2018,Politicians,@MarkWarner,"RT @realdanstoller: News: @MarkWarner opening statement on policy response to #Russian interference. + +""Even to this day – over a year a ha…" +06/20/2018,Politicians,@MarkWarner,"This is child abuse. +https://t.co/3RaY3WqbjP" +06/20/2018,Politicians,@MarkWarner,RT @ACLUVA: Shout out to Sens. @timkaine and @MarkWarner for taking a strong stand against family separation and cosponsoring legislation t… +06/20/2018,Politicians,@MarkWarner,.@TimKaine and I are demanding answers about the Trump Administration’s #FamilySeparation policy. We’ve signed on t… https://t.co/yiGf4oTwiy +06/20/2018,Politicians,@MarkWarner,Great hearing from SecDef Mattis at today’s Senate India Caucus meeting – important insights on the vital role of t… https://t.co/Rhgv3WjawY +06/19/2018,Politicians,@MarkWarner,Amen @GovernorVA. #KeepFamiliesTogether https://t.co/Ep0ZX5RGR8 +06/19/2018,Politicians,@MarkWarner,"RT @RepPeteAguilar: The OPPORTUNITY Act, my bill to connect a diverse pool of students with the @DeptofDefense Cyber Scholarship Program, p…" +06/19/2018,Politicians,@MarkWarner,#Juneteenth commemorates the day of freedom for thousands of enslaved African-Americans. Today it’s a day to celebr… https://t.co/4o9K8f3PDu +06/19/2018,Politicians,@MarkWarner,"#FamilySeparation is not “the law.” It’s not “the Democrats fault.” It is the direct result of this DOJ order, sign… https://t.co/wzP81yI04o" +06/19/2018,Politicians,@MarkWarner,RT @AspenFutureWork: Join us on 6/20 for a briefing on the latest data on contingent work and its implications for workers. You’ll hear key… +06/18/2018,Politicians,@MarkWarner,Tonight the Senate passed our bipartisan amendment to block the Trump Administration's bad deal with ZTE. If the Pr… https://t.co/UwvZV3fucy +06/18/2018,Politicians,@MarkWarner,"This is just heartbreaking. End #FamilySeparation now. +https://t.co/i15e5LIggL" +06/18/2018,Politicians,@MarkWarner,"Correct. +https://t.co/2wHikJPU39" +06/18/2018,Politicians,@MarkWarner,Facts matter. Alliances matter. The way the President of the United States conducts himself on the world stage matt… https://t.co/hM7c46P8wk +06/18/2018,Politicians,@MarkWarner,"RT @BobbyScott: .@realDonaldTrump and @SecNielsen say their family separation policies are required by law. Those claims are false. +https:…" +06/18/2018,Politicians,@MarkWarner,"RT @LoopEmma: U.S. lawmakers -- specifically, @SenTomCotton & @MarkWarner -- warn Canada about Chinese telecom giant Huawei /via @globeandm…" +06/18/2018,Politicians,@MarkWarner,"And currently, everyone else is arguing that the Trump Administration’s #FamilySeparation policy: +- Is cruel +- Is i… https://t.co/4SWvWwM7K0" +06/18/2018,Politicians,@MarkWarner,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Politicians,@MarkWarner,“Callous” — adjective — showing or having an insensitive and cruel disregard for others. https://t.co/OWdvu9JtsG +06/18/2018,Politicians,@MarkWarner,"Opioid overdoses are now the leading cause of accidental death in Virginia, surpassing car accidents and gun violen… https://t.co/9xAYfFpYv4" +06/16/2018,Politicians,@MarkWarner,Another reason the President's trade war is a terrible idea: it's going to raise the price of cans for Virginia's b… https://t.co/5CLRvPGd6s +06/15/2018,Politicians,@MarkWarner,"RT @LevarStoney: Privileged to have joined @MarkWarner, @VVforDelegate, and @SpanbergerVA07 this morning to wish peace and prosperity to AL…" +06/15/2018,Politicians,@MarkWarner,We shouldn't be trying to balance the budget on the backs of federal workers. Targeting public servants might seem… https://t.co/ibd25fKeZy +06/15/2018,Politicians,@MarkWarner,RT @SenDougJones: It’s appalling to me that someone could use the Bible to justify tearing children away from their families. This @TheJust… +06/15/2018,Politicians,@MarkWarner,It was an honor to start my morning with members of the Muslim Community of Greater Richmond to celebrate Eid al-Fi… https://t.co/TtcCX0bdir +06/14/2018,Politicians,@MarkWarner,"Fact: the Trump Administration is trying to take away protections for people with pre-existing conditions. +https://t.co/b6JPd8clQX" +06/14/2018,Politicians,@MarkWarner,"It’s important to remember today that President Trump has already said, on camera, why he fired James Comey – to st… https://t.co/5rRgtWgoY1" +06/14/2018,Politicians,@MarkWarner,"The President will surely attempt to use this to discredit the ongoing criminal investigation into his campaign, so… https://t.co/D0hzvBL32G" +06/14/2018,Politicians,@MarkWarner,The release of this Inspector General report confirms what has been clear for some time: though FBI leadership made… https://t.co/m9Ux5xht4z +06/14/2018,Politicians,@MarkWarner,"RT @HStory_News: In honor of Flag Day, nearly 1,400 flags are flying in a field in @cityofdanville - This is the fourth year for the Field…" +06/14/2018,Politicians,@MarkWarner,"“Anyone who just thinks this is just impacting the 12 to 15 million individuals with individual coverage is wrong.” +https://t.co/iGz5PifjBv" +06/14/2018,Politicians,@MarkWarner,Grateful today and every day for the soldiers in Virginia and around the world who keep us safe. #ArmyBday https://t.co/NBV0iFF3rI +06/14/2018,Politicians,@MarkWarner,RT @ACLUVA: We commend Sens. @timkaine and @MarkWarner for standing with @SenFeinstein to oppose the Trump administration's inhumane practi… +06/13/2018,Politicians,@MarkWarner,This is a disgrace. https://t.co/Vn8fl7W5xK +06/13/2018,Politicians,@MarkWarner,RT @TerryMcAuliffe: Virginia....we got the Cup!! #ALLCAPS https://t.co/IdmmvI12a7 +06/13/2018,Politicians,@MarkWarner,The DMV Is #ALLCAPS https://t.co/j00Niq57BU +06/13/2018,Politicians,@MarkWarner,"This isn’t toughness. This isn’t strength. It’s cruelty, and our country shouldn’t treat anyone this way, whether t… https://t.co/sL4jMDDMKT" +06/13/2018,Politicians,@MarkWarner,"If we’re going to address the mounting changes to the nature of work, we need to invest in human capital.… https://t.co/TjDcM9M24h" +06/13/2018,Politicians,@MarkWarner,"Robots aren’t going to take all our jobs, but they will change the skills needed to succeed. We need to rethink our… https://t.co/hEqRHRhzXT" +06/13/2018,Politicians,@MarkWarner,Update: We achieved our (sorry for this) GOOOOOOOOOOOOOOOOOOOAL. https://t.co/lU9pa9rMoq +06/13/2018,Politicians,@MarkWarner,America didn’t become leader of the free world by alienating our allies and cozying up to despots. https://t.co/iDlpkgRUfn +06/13/2018,Politicians,@MarkWarner,"Checks and balances. Both parties agree this ZTE deal is a bad deal, and we’re not going to let the Administration… https://t.co/RJ7M9YO8om" +06/13/2018,Politicians,@MarkWarner,"Four fallen Americans, whose names we'll never know, were honored today at the CIA. It's a reminder of how many oth… https://t.co/Cme3NjRRBC" +06/12/2018,Politicians,@MarkWarner,This @Capitals fan is celebrating the #CapitalsParade from the Capitol and not even @SenSchumer is going to stop m… https://t.co/7FYFbm51r0 +06/12/2018,Politicians,@MarkWarner,"Diplomacy is the most viable option for pursuing the dismantlement of North Korea’s nuclear program, but whether th… https://t.co/DhaUz2adKm" +06/12/2018,Politicians,@MarkWarner,"It’s clear that Kim Jong-un walked away from Singapore with exactly what he wanted – the pomp, circumstance and pre… https://t.co/jKSYysh2ii" +06/11/2018,Politicians,@MarkWarner,"We cannot go back to a time when you could be denied coverage or charged extra because of a pre-existing condition. +https://t.co/bx9t3SzqLl" +06/11/2018,Politicians,@MarkWarner,"RT @McFaul: If Trump can’t negotiate a deal on milk with one of our closest allies, how is he going to get a deal on nuclear disarmament wi…" +06/11/2018,Politicians,@MarkWarner,"What was the point of going to the G7, insulting our closest allies, and flying off without a deal?" +06/11/2018,Politicians,@MarkWarner,RT @GovernorVA: We can't go back to denying people with preexisting conditions access to the care they need. I'm glad @AGMarkHerring is joi… +06/11/2018,Politicians,@MarkWarner,This is the future that Putin wants. https://t.co/FvGIiWhMrC +06/11/2018,Politicians,@MarkWarner,"'The first few nights, he cried himself to sleep. Then it turned into “just moaning and moaning.”'… https://t.co/Z0rpI5owYs" +06/08/2018,Politicians,@MarkWarner,"RT @ASlavitt: BREAKING: The biggest health care news of the year. + +The Trump DOJ tonight just told the courts to dismantle pre-existing con…" +06/08/2018,Politicians,@MarkWarner,"RT @RepMarcyKaptur: Our bipartisan effort to bolster aeronautics research now has a Senate companion bill, thanks to @markwarner & @JerryMo…" +06/08/2018,Politicians,@MarkWarner,"‘Since his arrival in Michigan, family members said, a day has not gone by when the boy has failed to ask in Spanis… https://t.co/N6UT5K7cDS" +06/08/2018,Politicians,@MarkWarner,RT @AspenFutureWork: Today's new @bls_gov data reflects ongoing changes to U.S. work arrangements. While #CWSdata shows long term stability… +06/08/2018,Politicians,@MarkWarner,Russia is not our friend. +06/08/2018,Politicians,@MarkWarner,Terrible. More Trump Administration sabotage of the health insurance that millions of families rely on. This time i… https://t.co/0TCQM85Rx8 +06/07/2018,Politicians,@MarkWarner,"We all want the President to succeed in reaching a peace deal, but this is frankly pretty concerning. Any agreement… https://t.co/kLKtWaV8kh" +06/07/2018,Politicians,@MarkWarner,"RT @SenGillibrand: The #EqualPayAct was passed 55 years ago, but the pay gap still exists. Gender or race should never impact your paycheck…" +06/07/2018,Politicians,@MarkWarner,The American people overwhelmingly oppose the Trump Administration’s plan to repeal #NetNeutrality. It’s been three… https://t.co/VeSQoiI5Jb +06/07/2018,Politicians,@MarkWarner,"RT @RepTimRyan: Once more, @realDonaldTrump got rolled by China. He’s making us less safe, less secure, less competitive. https://t.co/Od7a…" +06/07/2018,Politicians,@MarkWarner,This is serious. Americans deserve to know that their private data and our national security are not being compromi… https://t.co/MC5ROgFVZX +06/07/2018,Politicians,@MarkWarner,This is a great day for Virginia. Thank you @GovernorVa and to all of the Democrats and Republicans who did the rig… https://t.co/XAKfykW9c3 +06/07/2018,Politicians,@MarkWarner,RT @jimsciutto: So a “compliance team” will somehow turn ZTE from the Chinese intelligence arm it is into a friendly trading partner. https… +06/07/2018,Politicians,@MarkWarner,Couldn’t agree more. Quarterly earnings guidance too often creates a focus on short-term profits when companies sho… https://t.co/U8cgvvc4sr +06/07/2018,Politicians,@MarkWarner,RT @SaraEisen: We discuss. see you at 1 @PowerLunch @MarkWarner https://t.co/BsWnL1ouZB +06/07/2018,Politicians,@MarkWarner,"Rule of law? For six years, Ecuador has harbored Julian Assange, a fugitive who’s endangered countless American liv… https://t.co/u0Sh9zuAZV" +06/07/2018,Politicians,@MarkWarner,"This idea of “embedding a compliance team” at ZTE is a nice talking point, but unless the Trump Administration plan… https://t.co/p0GM72SAGz" +06/07/2018,Politicians,@MarkWarner,"RT @CNNSotu: #TBT: Amid reports that ZTE will pay the United States a $1 billion fine and put $400 million in an escrow account, check out…" +06/06/2018,Politicians,@MarkWarner,"I guess this is great for Wall Street, but it does squat for American workers. Another broken promise of the GOP ta… https://t.co/morb0ghdsl" +06/06/2018,Politicians,@MarkWarner,RT @clairecmc: Seriously. Unbelievable. https://t.co/lokUtwtkBq +06/06/2018,Politicians,@MarkWarner,"Instead, the President should focus on building international coalitions to hold bad actors accountable and protect American workers." +06/06/2018,Politicians,@MarkWarner,"Look, we should hold China accountable for unfair trade practices, and I support strong rules to protect American w… https://t.co/DpHFlWZw8p" +06/06/2018,Politicians,@MarkWarner,RT @SenatorBurr: Today we honor the brave heroes who fought in #DDay 74 years ago. Those who sacrificed their lives that day were part of a… +06/06/2018,Politicians,@MarkWarner,"RT @SenTinaSmith: When women are empowered to contribute, we all benefit. We’re seeing it more and more here in the Senate. And I’m proud t…" +06/06/2018,Politicians,@MarkWarner,"I pushed hard to get this study organized, funded, and asking the right questions. Looking forward to tomorrow’s re… https://t.co/LboOGrTx6i" +06/06/2018,Politicians,@MarkWarner,RT @SenatorBaldwin: The Trump Administration’s sabotage on our health care system is making things worse and raising health care premiums.… +06/06/2018,Politicians,@MarkWarner,Today is a somber reminder of the incredible bravery of those who landed on the beaches of Normandy and behind enem… https://t.co/4tQAu1rbuR +06/06/2018,Politicians,@MarkWarner,"No American town sacrificed more that day, and today Bedford is home to the National D-Day Memorial, commemorating… https://t.co/UkjHJnhqt5" +06/06/2018,Politicians,@MarkWarner,"On #DDay74, I’m thinking about Bedford, Va which sent 34 young Virginians into battle on #DDay. That day, 19 of the… https://t.co/apl0QYJ6jx" +06/06/2018,Politicians,@MarkWarner,"If we can get this bipartisan, job-creating #hemp bill signed into law, it will be a big win for Virginia’s ag indu… https://t.co/1nhz2pJITh" +06/05/2018,Politicians,@MarkWarner,"We need answers from Facebook. The whole story, now, not six months from now. https://t.co/I7xsM8mvj4" +06/05/2018,Politicians,@MarkWarner,"Huge mistake. ZTE poses a threat to our national security, and that’s not just my opinion. It’s the unanimous concl… https://t.co/juLEJEYnZv" +06/05/2018,Politicians,@MarkWarner,"This is immoral: +https://t.co/rRDRFPp91a" +06/05/2018,Politicians,@MarkWarner,RT @SenatorDurbin: Facts matter. https://t.co/fRasf0yHDE +06/05/2018,Politicians,@MarkWarner,"RT @FairfaxJustin: Freedom to Rise: June 5, 1798. Exactly 220 years ago today, Simon Fairfax was freed from slavery in Virginia. Today, h…" +06/05/2018,Politicians,@MarkWarner,"RT @axios: Trump tweeted this morning incorrectly claiming that separating undocumented children from their parents stems from a ""law"" pass…" +06/05/2018,Politicians,@MarkWarner,Why is the President talking about pardoning himself if he has nothing to hide? +06/05/2018,Politicians,@MarkWarner,"This is a gut punch to Virginia farmers, who exported more than $68 million in pork to Mexico last year. The Presi… https://t.co/o9T2M0w30U" +06/04/2018,Politicians,@MarkWarner,"Here’s an idea: don’t start a trade war with our allies and raise the price of beer: +https://t.co/jzLWfwcFNo" +06/04/2018,Politicians,@MarkWarner,Remember when we were told the GOP tax cuts were going to the middle class? Remember when we were told companies wo… https://t.co/xaVSEvTd22 +06/04/2018,Politicians,@MarkWarner,Let’s just forget the politics for a minute and think about these kids. Whatever you think about our broken immigra… https://t.co/Vd4upCpXzA +06/04/2018,Politicians,@MarkWarner,"This just isn’t true, but it says a lot about how the President views the powers of his office. The President is in… https://t.co/V0W8nEkAXq" +06/01/2018,Politicians,@MarkWarner,"I can’t stress this enough. Eliminating the top White House cybersecurity official is a tremendously bad idea. +https://t.co/jcDQB4BAkE" +06/01/2018,Politicians,@MarkWarner,"RT @HouseNewDems: #NewDems released Closing the Skills and Opportunity Gaps, the first in a series reports focused on expanding opportuniti…" +05/31/2018,Politicians,@MarkWarner,The President’s ad hoc use of the pardon power is concerning enough. But the possibility that he may also be sendin… https://t.co/r4zVNQDpYX +05/31/2018,Politicians,@MarkWarner,"This has been nonsense from day one, and I think everyone recognizes that now. Unfortunately, you can’t just undo t… https://t.co/qen1TSdvX7" +05/31/2018,Politicians,@MarkWarner,"If a deal is too good to be true, there may be a reason for it. The President needs to get smart about ZTE before t… https://t.co/RlgY4oIRPi" +05/31/2018,Politicians,@MarkWarner,"Are robots going to take all the jobs? No, but automation will mean that learning new skills throughout your career… https://t.co/hnV3GWQJ70" +05/30/2018,Politicians,@MarkWarner,"RT @Recode: Sen. @MarkWarner: In tech, Chinese companies are operating in a different rule book than us. It is a government that will force…" +05/30/2018,Politicians,@MarkWarner,"@GovernorVA and supporters of #Medicaid expansion should be proud of this bipartisan achievement, but the real winn… https://t.co/CowggQbNSr" +05/30/2018,Politicians,@MarkWarner,I’m thrilled that partisan politics will no longer stand in the way of thousands of Virginia families getting the h… https://t.co/Ni6GA0whNR +05/30/2018,Politicians,@MarkWarner,RT @SenJohnMcCain: Must-read by my friend @GrantWoods in @USATODAY https://t.co/bzeq1XUBEk +05/30/2018,Politicians,@MarkWarner,"RT @MarkWarner: Read this. We’ve got Virginians who can’t afford insurance, even though they’ve got a job. We’ve got folks who are too sick…" +05/30/2018,Politicians,@MarkWarner,"Outdated regulations banning hemp are holding back Virginia farmers, for no good reason. @TimKaine and I are sponso… https://t.co/DW0aC4wZ4N" +05/29/2018,Politicians,@MarkWarner,"When criminals pushing synthetic opioids change their formulas, our laws have to keep up. This bipartisan bill will… https://t.co/gZWlS8Y8RI" +05/29/2018,Politicians,@MarkWarner,"Read this. We’ve got Virginians who can’t afford insurance, even though they’ve got a job. We’ve got folks who are… https://t.co/q3D7o5kdX5" +05/28/2018,Politicians,@MarkWarner,"I hope we can all take some time today to remember the servicemembers who have made the ultimate sacrifice, leaving… https://t.co/vFCFmaVwZs" +05/26/2018,Politicians,@MarkWarner,"RT @virginiavfw: Big thanks to .@MarkWarner and @timkaine for their YES vote on #VAMissionAct! The improvement of care, expansion of Caregi…" +05/26/2018,Politicians,@MarkWarner,"This would be a big mistake. President Trump should listen to the advice of his intelligence leaders, who have unan… https://t.co/HRUWY7mMEX" +05/24/2018,Politicians,@MarkWarner,"For the record, the President’s Chief of Staff and his attorney in an ongoing criminal investigation into the Presi… https://t.co/FaGbqo8g6K" +05/24/2018,Politicians,@MarkWarner,Big step in the right direction – and I’m glad Facebook followed through on my recommendations to improve upon earl… https://t.co/GmS0BRKvaf +05/24/2018,Politicians,@MarkWarner,"If there is a clear and compelling need to brief Congress on sensitive intelligence matters, it should be handled through the Gang of Eight." +05/24/2018,Politicians,@MarkWarner,The Gang of Eight exists in custom and in law to ensure that Congress can oversee intelligence matters without putt… https://t.co/AuL28k3cEI +05/24/2018,Politicians,@MarkWarner,They will also be sending a terrible message to anyone who works in or with our nation’s intelligence community tha… https://t.co/fbvGMrPM4G +05/24/2018,Politicians,@MarkWarner,"If they insist upon carrying out this farce, the White House and its Republican allies in the House will do permane… https://t.co/tkU9PswSpJ" +05/24/2018,Politicians,@MarkWarner,The White House’s plan to provide a separate briefing for their political allies demonstrates that their interest i… https://t.co/RyGzu85cIx +05/24/2018,Politicians,@MarkWarner,RT @ThirdWayKessler: Trump’s health care sabotage surcharge. https://t.co/2Nm4HVIZeB +05/24/2018,Politicians,@MarkWarner,"RT @SenatorDurbin: Right now, you can still apply to renew your #DACA. If you meet the requirements to apply for DACA renewal, you should a…" +05/23/2018,Politicians,@MarkWarner,This bill is an important step to getting veterans the healthcare they deserve more quickly and easily by providing… https://t.co/GdncIKicny +05/23/2018,Politicians,@MarkWarner,"CBO: Premiums up 15% next year, largely due to Trump Administration sabotage of the health insurance market. This i… https://t.co/Qo7DEMFGX2" +05/23/2018,Politicians,@MarkWarner,The unfortunate consequence of baseless attacks on the men and women who keep us safe. https://t.co/WKVjXV9F3S +05/23/2018,Politicians,@MarkWarner,RT @GovernorVA: Take a minute and read the stories of three Virginians whose lives would be changed if they could get the care they need to… +05/23/2018,Politicians,@MarkWarner,"The problem isn’t just that the President is smearing federal law enforcement as the “criminal deep state,” whateve… https://t.co/bz0tSDh423" +05/22/2018,Politicians,@MarkWarner,"20 years ago today, the Senate held its first #cybersecurity hearing w/ members of the L0pht hacker collective. Tod… https://t.co/oBC01LQp7F" +05/22/2018,Politicians,@MarkWarner,"Wow. The Trump Administration’s sabotage of the healthcare market could cost Virginia families an average of $1,312… https://t.co/4uIPyblytW" +05/22/2018,Politicians,@MarkWarner,The idea that this is all some sort of plot to take down the President is completely contradicted by every known fa… https://t.co/J4FT99POaD +05/22/2018,Politicians,@MarkWarner,Page ii https://t.co/0i5oPheE6y +05/22/2018,Politicians,@MarkWarner,".@SecNielsen, you’re our front line of defense against the Russian cyber threat. Please read the ICA report. Its co… https://t.co/7CY1TbOObm" +05/22/2018,Politicians,@MarkWarner,"RT @ACLUVA: We thank Sens. @timkaine and @MarkWarner, as well as Reps @RepMcEachin @BobbyScott @GerryConnolly for speaking out against the…" +05/20/2018,Politicians,@MarkWarner,RT @CNNSotu: .@MarkWarner to @jaketapper: Illegal to reveal classified FBI source info https://t.co/DqE7F9C19y #CNNSOTU +05/20/2018,Politicians,@MarkWarner,RT @FaceTheNation: Sen. @MarkWarner: I have no information that would indicate that @realDonaldTrump’s tweets are based in truth. +05/20/2018,Politicians,@MarkWarner,"RT @ryanstruyk: .@MarkWarner to @jaketapper: ""If any individual, elected official or otherwise, knowingly reveals a classified piece of inf…" +05/18/2018,Politicians,@MarkWarner,Anyone who is entrusted with our nation’s highest secrets should act with the gravity and seriousness of purpose that knowledge deserves. +07/02/2018,Politicians,@johnrobertsFox,Here's the lineup for @realDonaldTrump SCOTUS team: Don McGahn - lead. Raj Shah - comms and message co-ordination… https://t.co/WbeU2Uu6K3 +06/30/2018,Politicians,@johnrobertsFox,@sleepygirl504 @OmniHomestead @KyraPhillips @PressSec @realDonaldTrump “Q clearance” is a DOE designation +06/30/2018,Politicians,@johnrobertsFox,@mollysmom506 @OmniHomestead @KyraPhillips No +06/30/2018,Politicians,@johnrobertsFox,At the Cascades course at The ⁦@OmniHomestead⁩ with golf legend J.C. Snead and my fabulous wife ⁦@KyraPhillips⁩ https://t.co/2iPW6S7Qrw +06/30/2018,Politicians,@johnrobertsFox,I came to ⁦@OmniHomestead⁩ for a quick getaway. There is no getting away... 😂 https://t.co/aaOTQ7tWOX +06/29/2018,Politicians,@johnrobertsFox,@FictionalFacts2 @maggieNYT @realDonaldTrump Shame on me? At least I am not a trollbot +06/29/2018,Politicians,@johnrobertsFox,@realDonaldTrump to name SCOTUS nominee on July 9th. Interviewing 6 or 7 candidates - including two women - from wh… https://t.co/sEaMurRpN8 +06/29/2018,Politicians,@johnrobertsFox,Reports that the suspect in the Annapolis shooting had a long-running feud with the paper that dates back to 2011 +06/28/2018,Politicians,@johnrobertsFox,Friends of @WhiteHouse COS John Kelly tell me that he has no plans to leave the White House-hasn't even talked abou… https://t.co/T1Ak4Eq6V3 +06/28/2018,Politicians,@johnrobertsFox,".@realDonaldTrump / Putin summit will be Monday July 16th in Helsinki, Finland" +06/28/2018,Politicians,@johnrobertsFox,"White House and Kremlin have settled on Helsinki, Finland as the location for the @realDonaldTrump - Putin summit.… https://t.co/Ni7FHHl7YW" +06/27/2018,Politicians,@johnrobertsFox,Former @FoxNews co-president Bill Shine will take on a senior communications role for @realDonaldTrump at the… https://t.co/5oe9v2BnmF +06/27/2018,Politicians,@johnrobertsFox,"With Justice Kennedy's retirement, @realDonaldTrump will have the opportunity to cement a 5-4 conservative majority… https://t.co/gEx7puTQJo" +06/27/2018,Politicians,@johnrobertsFox,.@realDonaldTrump gets another SCOTUS pick. Justice Anthony Kennedy just announced his retirement +06/27/2018,Politicians,@johnrobertsFox,SCOOP: Former @FoxNews co-president Bill Shine is in final talks with @realDonaldTrump about becoming @WhiteHouse… https://t.co/paY2BimAp6 +06/27/2018,Politicians,@johnrobertsFox,SCOOP: WH announcement of @realDonaldTrump - Putin summit may come today. +06/27/2018,Politicians,@johnrobertsFox,BREAKING: Expect @realDonaldTrump will announce date/location for Putin summit tomorrow +06/27/2018,Politicians,@johnrobertsFox,"@TruthHonestly8 @sobidey @jonathanvswan @PressSec @SecretService According to Sanders, she tweeted about it in resp… https://t.co/UZQUwYyeUa" +06/27/2018,Politicians,@johnrobertsFox,"In a sign of just how divided this nation has become, Sarah Sanders will become the first @PressSec I can ever reca… https://t.co/JiwGd4TTaY" +06/26/2018,Politicians,@johnrobertsFox,".@cnn showing bug that reads ""soon on CNN - White House Briefing"" Note to @FoxNews viewers. There is no briefing today." +06/25/2018,Politicians,@johnrobertsFox,"After @PressSec experience at @RedHenLex , I'm wondering which candidate will be first to co-opt the @BarackObama s… https://t.co/zNGSHHypmI" +06/22/2018,Politicians,@johnrobertsFox,@AprilWhymark @realDonaldTrump @Kevin_Faulconer I reported all those stories too. Clearly you are spending more ti… https://t.co/kMZCU7MFT3 +06/22/2018,Politicians,@johnrobertsFox,Oops... @realDonaldTrump slams San Diego Mayor @Kevin_Faulconer for warning illegal immigrants about raids. It was… https://t.co/qZ1jACqyA2 +06/21/2018,Politicians,@johnrobertsFox,Everyone at @FoxNews is saddened to report that our dear friend - a giant of our industry- Charles Krauthammer has passed away. +06/20/2018,Politicians,@johnrobertsFox,"@wistbro @BarackObama @realDonaldTrump If you were to appeal it, it would go to the 9th Circuit. And if THEY overt… https://t.co/yeY0X8YdWp" +06/20/2018,Politicians,@johnrobertsFox,@Bfklin @BarackObama @realDonaldTrump Congress +06/20/2018,Politicians,@johnrobertsFox,If an @BarackObama -appointed judge who told President Obama he couldn't detain children indefinitely reverses cour… https://t.co/fO40cufSli +06/20/2018,Politicians,@johnrobertsFox,"@MarieNoel45 @realDonaldTrump She is a District Judge in the Central District of California, which is covered by th… https://t.co/w5mbrZBpC8" +06/20/2018,Politicians,@johnrobertsFox,Whether or not @realDonaldTrump Executive Order goes forward depends on whether CA Judge Dolly Gee modifies her 201… https://t.co/t8e73aaoJh +06/20/2018,Politicians,@johnrobertsFox,@JenniferTambly1 You could always try @Google https://t.co/MFgxUDU6bt +06/20/2018,Politicians,@johnrobertsFox,"CA District Judge Dolly Gee orders children in border detention released - citing ""widespread deplorable conditions… https://t.co/ZPQTZ3Gab8" +06/20/2018,Politicians,@johnrobertsFox,Just wondering if @disneystudios @starwars Solo would have fared better if Chris Pine was chosen for the lead. He… https://t.co/JwNVGglJIS +06/20/2018,Politicians,@johnrobertsFox,".@realDonaldTrump says he is ""canceling and postponing"" the Congressional picnic....which I guess means tomorrow's… https://t.co/Z9yAc6X9cO" +06/20/2018,Politicians,@johnrobertsFox,.@realDonaldTrump cancelled the Congressional picnic moments after the WH catering staff had finished pre-cooking h… https://t.co/vmOrbi8ySO +06/20/2018,Politicians,@johnrobertsFox,".@realDonaldTrump cancels tomorrow's Congressional Picnic - saying to hold it ""just didn't feel right to me."" The… https://t.co/xLZetjWghc" +06/20/2018,Politicians,@johnrobertsFox,EXCLUSIVE: And now another potential track - sources tell @FoxNews that @SecNielsen is encouraging… https://t.co/CT0Bmre2a8 +06/20/2018,Politicians,@johnrobertsFox,EXCLUSIVE: @realDonaldTrump considering some sort of executive action today to allow children to stay with detaine… https://t.co/R9TU8AkfYx +06/18/2018,Politicians,@johnrobertsFox,.@realDonaldTrump directs Gen. Dunford to create a 6th branch of the military - THE SPACE FORCE +06/18/2018,Politicians,@johnrobertsFox,@mlwelch31 Where are the salmon shorts?? +06/17/2018,Politicians,@johnrobertsFox,I also do windows https://t.co/zv3Naj4Adb +06/12/2018,Politicians,@johnrobertsFox,@kristlucky13 yup +06/12/2018,Politicians,@johnrobertsFox,For all those who are going down the 'potty humor' well: Oxford - poop out : to become very tired We worked all mo… https://t.co/ucWds9dboH +06/12/2018,Politicians,@johnrobertsFox,@SeppMeyer2 @kristincbrown @pjkellyct Lies around on the floor.....clearly.... +06/12/2018,Politicians,@johnrobertsFox,@pjkellyct @kristincbrown It’s in Singapore. It’s as clean as a freshly-laundered sheet. +06/12/2018,Politicians,@johnrobertsFox,@RJancys @kristincbrown Keep her awake for 48 hours straight. +06/12/2018,Politicians,@johnrobertsFox,"After 72 hours in country, I finally pooped out producer ⁦@kristincbrown⁩ https://t.co/VhyM5J2Vfp" +06/12/2018,Politicians,@johnrobertsFox,Great seat for ⁦@realDonaldTrump⁩ news conference. Right behind ⁦@SecPompeo⁩ and COS Kelly https://t.co/buREVpiz02 +06/12/2018,Politicians,@johnrobertsFox,"If you zoom in - and you have young eyes, you can read the entire statement signed by @RealDonaldTrump and Kim Jong… https://t.co/mMOKlkLMID" +06/12/2018,Politicians,@johnrobertsFox,The band is back together again!!! ⁦@jengirdonmills⁩ https://t.co/j1G8mzUWNs +06/12/2018,Politicians,@johnrobertsFox,Oh my goodness. Sad news.... https://t.co/6X1UxhwQHU +06/11/2018,Politicians,@johnrobertsFox,The one-one bilat will tell the tale of whether this is real or not. It all comes down to that. https://t.co/5VgvR77d5t +06/11/2018,Politicians,@johnrobertsFox,@DianeMarron Miami is hands down the most beautiful city in the U.S. +06/11/2018,Politicians,@johnrobertsFox,A little memento from the Singapore summit https://t.co/5ETOO3y1p0 +06/10/2018,Politicians,@johnrobertsFox,"Lots of comparisons between @JustinTrudeau and Hugh Grant in ""Love, Actually"". In the movie, Grant says it to Billy Bob Thornton's face." +06/10/2018,Politicians,@johnrobertsFox,AF-1 in Singapore as ⁦@realDonaldTrump⁩ and Kim Jong UN take a step closer to history. ⁦@KyraPhillips⁩ https://t.co/G3tB0tpoki +06/10/2018,Politicians,@johnrobertsFox,One of the more impressive things at Seoul airport was the security checkpoint. The bins disappear into the floor a… https://t.co/lU1BwxMnhr +06/10/2018,Politicians,@johnrobertsFox,It’s the little things in life.... https://t.co/pdT1UAeawi +06/10/2018,Politicians,@johnrobertsFox,"Having now been in Beijing, Seoul and Singapore in the past six months, it is like peering into the future. Much of… https://t.co/luGcwb4DoL" +06/09/2018,Politicians,@johnrobertsFox,"Well, the stakes just went up.... https://t.co/ymR1sPj4mO" +06/09/2018,Politicians,@johnrobertsFox,"RT @realDonaldTrump: Based on Justin’s false statements at his news conference, and the fact that Canada is charging massive Tariffs to our…" +06/09/2018,Politicians,@johnrobertsFox,"Oh, I forgot. Rob Ford’s brother Doug was just elected Premier of the province of Ontario. The position is roughly… https://t.co/9xuCJy5O4Q" +06/09/2018,Politicians,@johnrobertsFox,Context and perspective: @realDonaldTrump knows @JustinTrudeau approval numbers are way down - so he feels he can p… https://t.co/l5s5fspBGW +06/08/2018,Politicians,@johnrobertsFox,So sad to hear that a true hero of mine - Charles Krauthammer has only a short time left with us. Sending prayers… https://t.co/M7T8QiBBO0 +06/08/2018,Politicians,@johnrobertsFox,Stunned to hear this morning that Anthony Bourdain died by suicide in France today. +06/08/2018,Politicians,@johnrobertsFox,"By this logic, the 18,000 people who fill the Capital One Arena for every game are Russian sympathizers. https://t.co/4uR6F1uG3k" +06/07/2018,Politicians,@johnrobertsFox,"Our 7-year old son rocking it out! @KyraPhillips Kellan Drum Solo- ""Killer Kellan"" https://t.co/dujrUiJ32w via @YouTube" +06/07/2018,Politicians,@johnrobertsFox,Thanks to William Moon for the memory of today! https://t.co/hrvkWEGUmz +06/07/2018,Politicians,@johnrobertsFox,.@HallieJackson - a problem we suffer through on a daily basis https://t.co/eVDDM7iv88 +06/06/2018,Politicians,@johnrobertsFox,@dipplingdan @YouTube Just did. My bad. Oversight... +06/06/2018,Politicians,@johnrobertsFox,Credit to Frank @dipplingdan for introducing me to Three Dead Trolls. https://t.co/lndMLjk06z +06/06/2018,Politicians,@johnrobertsFox,"British citizens may have burned the White House, but Canadians proudly claim the event as their own. According to… https://t.co/md7SgYeSkp" +06/06/2018,Politicians,@johnrobertsFox,@pepperdawgie Here’s a secret.....I’m joking... +06/06/2018,Politicians,@johnrobertsFox,"@dipplingdan @JFoughty3 Ah yes, but he was buried in Halifax....which is now Canada...." +06/06/2018,Politicians,@johnrobertsFox,@mhcandrmt Except there was no White House 300 years earlier. But there was a White House 55 years later. +06/06/2018,Politicians,@johnrobertsFox,"@dipplingdan @SmithsonSheila @Acosta The operative phrase here is ""jokingly say we burnt it"". An American could al… https://t.co/83i95L06HX" +06/06/2018,Politicians,@johnrobertsFox,"Well, had it been 55 years later, it WOULD have been Canada..... https://t.co/J7oWLonjpG" +06/05/2018,Politicians,@johnrobertsFox,Looking forward to hosting the @CoastGuardFound with my amazing wife @KyraPhillips at the National Building Museum… https://t.co/P2MHq1zhOu +06/01/2018,Politicians,@johnrobertsFox,The @uscoastguard change of command is always a moving ceremony...though I wish - just once - they could pronounce… https://t.co/hbEE3bifRq +06/01/2018,Politicians,@johnrobertsFox,Double OMG.... https://t.co/Ml55nZ7o5W +06/01/2018,Politicians,@johnrobertsFox,Thank you to @kevincorke for bringing in the donuts! https://t.co/Lcje0Fu6FZ +06/01/2018,Politicians,@johnrobertsFox,OMG....this was off-the-charts delicious @AstroDoughnuts https://t.co/5AYTfynd3P +06/01/2018,Politicians,@johnrobertsFox,"In honor of #NationalDonutDay , I am about to tuck into my very first glazed bacon donut from @AstroDoughnuts !!!!!… https://t.co/a6k6afi9tt" +06/01/2018,Politicians,@johnrobertsFox,.@USCG change of command ceremony looks like a steam bath.... +06/01/2018,Politicians,@johnrobertsFox,Upbeat jobs report today - 220k jobs added in May. Unemployment at 3.8% +05/31/2018,Politicians,@johnrobertsFox,@SlippyField @realDonaldTrump @tedcruz Classic campaign moment +05/31/2018,Politicians,@johnrobertsFox,@LLCWalk @Mulfordtown @realDonaldTrump @tedcruz How quickly we forget how we got to where we are... +05/31/2018,Politicians,@johnrobertsFox,RT @iamsambee: I would like to sincerely apologize to Ivanka Trump and to my viewers for using an expletive on my show to describe her last… +05/31/2018,Politicians,@johnrobertsFox,@Mulfordtown @realDonaldTrump @tedcruz We Are The Champions - and Another One Bites The Dust come to mind... +05/31/2018,Politicians,@johnrobertsFox,"Every time I see @realDonaldTrump and @tedcruz together, I have flashbacks to the Indiana primary." +05/28/2018,Politicians,@johnrobertsFox,Quite the team!!!! https://t.co/Wq0kxt3dft +05/28/2018,Politicians,@johnrobertsFox,My fabulous wife @KyraPhillips anchoring coverage of the National Memorial Day parade with @sagesteele https://t.co/93eR2XbUdj +05/27/2018,Politicians,@johnrobertsFox,RT @realDonaldTrump: Our United States team has arrived in North Korea to make arrangements for the Summit between Kim Jong Un and myself.… +05/26/2018,Politicians,@johnrobertsFox,@lockesalterego @Alex_Guiden @realDonaldTrump Trolls live under bridges....they don't get to see much of the real w… https://t.co/YTwmD3XvI3 +05/26/2018,Politicians,@johnrobertsFox,@rwwgreene @CR_HIATT @realDonaldTrump Here’s what I can spell out in full. Blocked +05/26/2018,Politicians,@johnrobertsFox,RT @SarahHuckabee: Happy 8th anniversary to my amazing husband @sanders_bryan! Thank you for planning the perfect getaway to celebrate! htt… +05/26/2018,Politicians,@johnrobertsFox,NoKo appears to be heading toward a June 12 summit after @realDonaldTrump sent that surprise letter to Kim on Thurs… https://t.co/ieqEDRvVa0 +05/25/2018,Politicians,@johnrobertsFox,@DanRaviv I was the other John. @jonkarl +05/25/2018,Politicians,@johnrobertsFox,Trump strikes deal with China over ZTE https://t.co/ps1ayrLJos #FoxNews +05/25/2018,Politicians,@johnrobertsFox,Trump lawyers considered possible Mueller meeting at Camp David in early 2018 https://t.co/OnMh5f3zHR #FoxNews +05/24/2018,Politicians,@johnrobertsFox,Very interesting letter from @realDonaldTrump to Kim Jong Un. Flatters him and thanks him - at the same time remin… https://t.co/ujPQGIo14N +05/24/2018,Politicians,@johnrobertsFox,"Singapore summit now looking in jeopardy. North Korea either getting cold feet, or maneuvering. https://t.co/Ug38U32ebg" +05/23/2018,Politicians,@johnrobertsFox,".@realDonaldTrump tells @foxandfriends @kilmeade he's happy about the NFL owners decision, but isn't happy that… https://t.co/KyzQxBFFI6" +05/23/2018,Politicians,@johnrobertsFox,.@NFL owners vote to fine teams if players on sidelines do not stand for the national anthem. Question: will this b… https://t.co/zOQ3sc4MwC +05/23/2018,Politicians,@johnrobertsFox,@JamesRarus @KyraPhillips @InstituteForEdu @RepWillHurd @GenMhayden this was actually in the living room of the Arm… https://t.co/VOem94CKzf +05/23/2018,Politicians,@johnrobertsFox,My fabulous wife @KyraPhillips hosting a panel for the @InstituteForEdu with @RepWillHurd and Gen. MIchael Hayden… https://t.co/poRg9rBcoK +05/22/2018,Politicians,@johnrobertsFox,"Well, that was fun.....35 minute Oval Office news conference with @realDonaldTrump Lots of news on NoKo, China and the FBI informant" +05/21/2018,Politicians,@johnrobertsFox,Whoa. This is big https://t.co/vrw2lhKkGF +05/18/2018,Politicians,@johnrobertsFox,@habfan1959 @WhiteHouse 1 in 15 Canadians owns a firearm. That's about 2 million people. Yet gun violence in Cana… https://t.co/3QF9FFZ07g +05/18/2018,Politicians,@johnrobertsFox,@MN_poppy @AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews I very much shorthanded what he was… https://t.co/I34VsZupTK +05/18/2018,Politicians,@johnrobertsFox,"@habfan1959 @WhiteHouse You miss the point. Shotguns are readily available in Canada, yet there have only been 7 s… https://t.co/nxA5yLIymr" +05/18/2018,Politicians,@johnrobertsFox,@eelarson @yeschrisyes @WhiteHouse That’s an idea that may have applied in this case. But that’s not what people are loudly calling for. +05/18/2018,Politicians,@johnrobertsFox,"@AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews First of all, I was t knocking him. Just point… https://t.co/8Py2TiUpwP" +05/18/2018,Politicians,@johnrobertsFox,"@habfan1959 @WhiteHouse As I recall, it's pretty easy to buy a shotgun in Canada.....and Canada has some of the toughest gun laws anywhere." +05/18/2018,Politicians,@johnrobertsFox,@AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews There is likely PLENTY that can be done. Who… https://t.co/oTuPJi0YRf +05/18/2018,Politicians,@johnrobertsFox,@glennyork @WhiteHouse Precisely +05/18/2018,Politicians,@johnrobertsFox,@SoulOnJourney11 @WhiteHouse And pipes. Don't forget pipes. +05/18/2018,Politicians,@johnrobertsFox,@yeschrisyes @WhiteHouse How simplistic. What about doing whatever is possible to make sure parents are on top of… https://t.co/R98CbcuVl3 +05/18/2018,Politicians,@johnrobertsFox,"@larkin1235 @WhiteHouse That will NEVER happen. Not now, not in a million years." +05/18/2018,Politicians,@johnrobertsFox,"@JHead1984 @WhiteHouse Illuminate one proposed gun control measure that could have prevented THIS event.... +-ban as… https://t.co/JQR93OTx59" +05/18/2018,Politicians,@johnrobertsFox,@thedailyveteran @WhiteHouse Unknown on both counts +05/18/2018,Politicians,@johnrobertsFox,"Man outside the @WhiteHouse angrily yelling into a bullhorn ""we need gun control"" in the wake of Santa Fe High shoo… https://t.co/LOehqvkhjZ" +05/18/2018,Politicians,@johnrobertsFox,@PellyRichard @realDonaldTrump Flynn was never subject to Senate confirmation - wrong comparison +05/18/2018,Politicians,@johnrobertsFox,@pjmesq12 Ronny Jackson had never been through Senate confirmation. Wilkie has. +05/18/2018,Politicians,@johnrobertsFox,Wilkie has been extensively vetted. First appointed to Pentagon by Bush 43 in 2006. Confirmed by the Senate as Unde… https://t.co/7eH0kIQFBa +05/18/2018,Politicians,@johnrobertsFox,@PellyRichard @realDonaldTrump Wilkie has been extensively vetted. First appointed and CONFIRMED AS Undersecretary… https://t.co/wZpfujLMsx +05/18/2018,Politicians,@johnrobertsFox,.@realDonaldTrump surprises Acting VA Secretary Robert Wilkie - telling him in a public event that he is going to b… https://t.co/9YqKcGWy4j +05/16/2018,Politicians,@johnrobertsFox,@shandsr84 @EricColumbus @RealFacelessMan @FoxNews @realDonaldTrump Is it illegal to be morally compromised? Becau… https://t.co/Y1P17UvWS3 +05/16/2018,Politicians,@johnrobertsFox,@IngaZorin111 @KyraPhillips You think wrong +05/16/2018,Politicians,@johnrobertsFox,When your wife is broadcasting from the live position next to you!!!! @KyraPhillips https://t.co/QgbiUH9wsS +05/16/2018,Politicians,@johnrobertsFox,@EricColumbus @RealFacelessMan @FoxNews @realDonaldTrump We must also consider the possibility that he has done not… https://t.co/U1zIIbNopi +05/16/2018,Politicians,@johnrobertsFox,"Rudy Giuliani on the Mueller probe: ""The case is essentially over. They're just in denial.""" +05/16/2018,Politicians,@johnrobertsFox,Rudy Giuliani tells @FoxNews that Robert Mueller told @realDonaldTrump legal team two weeks ago that he will abide… https://t.co/vcBjGeQ19e +05/16/2018,Politicians,@johnrobertsFox,"@pachapman1776 @FoxNews @realDonaldTrump Yes. I realize that you don't care. However, the Office of Government Et… https://t.co/1hwDmsJJVL" +05/16/2018,Politicians,@johnrobertsFox,Source tells @FoxNews that Rudy Giuliani revealed the reimbursement to Cohen because he was aware it would be repor… https://t.co/24bb4lbLrJ +05/16/2018,Politicians,@johnrobertsFox,"One potential problem for @realDonaldTrump - in letter to DepA-G Rosenstein, @OfficeGovEthics says the payment by C… https://t.co/T43afox5iJ" +05/16/2018,Politicians,@johnrobertsFox,".@realDonaldTrump including payments to Cohen on financial disclosure puts it the category of a personal ""reportabl… https://t.co/Uw88Ki0iYR" +05/16/2018,Politicians,@johnrobertsFox,"We may have discovered why Rudy Giuliani disclosed the ""reimbursement"" to Michael Cohen. It is detailed on page 45… https://t.co/M2DrKkJtMq" +05/16/2018,Politicians,@johnrobertsFox,"""We're LEAVING....!!!!!"" https://t.co/uLywtwFCpe" +05/15/2018,Politicians,@johnrobertsFox,@Kev4est @Carter77 @WhiteHouse Great memories! +05/15/2018,Politicians,@johnrobertsFox,@BHefti @KyraPhillips Amen to that! +05/13/2018,Politicians,@johnrobertsFox,"Happy Mother’s Day to @KyraPhillips my fabulous wife and spectacular mom to our children!!!! Love you, you amazing woman and mom!!!" +05/11/2018,Politicians,@johnrobertsFox,@takerealrisks tomorrow +05/11/2018,Politicians,@johnrobertsFox,"Correction: the cabinet meeting was Wednesday. In the hectic pace of this White House, it seems that there are tw… https://t.co/jlI5tCzjOV" +05/11/2018,Politicians,@johnrobertsFox,SCOOP - @WhiteHouse COS John Kelly told me this afternoon that after yesterday's cabinet meeting where… https://t.co/PZezGC960p +05/10/2018,Politicians,@johnrobertsFox,"@crocodilianews or, you could just click on the tweet and hit the 'translate' button" +05/10/2018,Politicians,@johnrobertsFox,This is a very interesting statement from the Foreign Minister of Bahrain regarding Israel and its right to defend… https://t.co/RuDYvOsgXN +05/10/2018,Politicians,@johnrobertsFox,@38DannyChauncey @khamenei_ir @realDonaldTrump You sound like you are about to break into song.....! +05/09/2018,Politicians,@johnrobertsFox,.@IDFSpokesperson reports 20 rockets fired by Iran Quds force at forward IDF position in the Golan Heights. Some r… https://t.co/GvEl2Nkv1l +05/09/2018,Politicians,@johnrobertsFox,BREAKING: Nunes and Gowdy to get “classified briefing” on request for secret intelligence source who aided Mueller… https://t.co/HjigTwasoD +05/09/2018,Politicians,@johnrobertsFox,".@PressSec makes it official. NO infrastructure bill this year. No shiny new bridges, glistening new rails or smooth new roads" +05/09/2018,Politicians,@johnrobertsFox,"So.....if the Ayatollah @khamenei_ir trolls @realDonaldTrump , does that make him an Ayatrollah?" +05/07/2018,Politicians,@johnrobertsFox,RT @KyraPhillips: As Medal of Honor recipients listen @DeptVetAffairs Acting Sec Wilkie lifts up @FisherHouseFdtn and how it’s expresses th… +05/07/2018,Politicians,@johnrobertsFox,Acting @DeptVetAffairs Secretary Robert Wilkie speaking to the @FisherHouseFdtn crowd today. MOH recipient Sgt. Bob… https://t.co/DgrBgBWimL +05/07/2018,Politicians,@johnrobertsFox,With another one of our American heroes COL. Barney Barnum MOH recipient at the @FisherHouseFdtn Golf Classic! https://t.co/T5RRAhdiBR +05/07/2018,Politicians,@johnrobertsFox,American hero Bob Patterson getting set to tee it up for @FisherHouseFdtn https://t.co/mXxNXt24Cu +05/07/2018,Politicians,@johnrobertsFox,RT @KyraPhillips: Please retweet this pic and #causecontainer because every retweet means more money for @FisherHouseFdtn Love our VETS!!!… +05/07/2018,Politicians,@johnrobertsFox,Retweet this and @FisherHouseFdtn will receive $1 donation from the Hub Group for each retweet!!! Support our brave… https://t.co/d4hvMa01bY +05/04/2018,Politicians,@johnrobertsFox,"@LIzGordonMartin @VP Sadly, Politics has become a zero sum game. No one can win unless someone else loses." +05/04/2018,Politicians,@johnrobertsFox,.@VP Pence personal physician Jennifer Pena is resigning from the White House Medical Unit. Sources say she had lo… https://t.co/FoUAAC7QLr +05/04/2018,Politicians,@johnrobertsFox,Spent Wednesday night On The Road To Utopia! Best bargain in music - on a notes-per-dollar basis!!! Fabulous show… https://t.co/AC7ouQDKsd +05/03/2018,Politicians,@johnrobertsFox,@LMDB05 @FoxNews @FoxBusiness Better to get it right than to be first and get it wrong! +05/03/2018,Politicians,@johnrobertsFox,@SuzanneKelleher I might point out that even the network that got the original story wrong is now saying what Fox is. +05/03/2018,Politicians,@johnrobertsFox,@ccowley57 No. Not listened to either.. +05/03/2018,Politicians,@johnrobertsFox,@rhainman You need to stay up on the news Steve-o....... The NEW development is that Cohen' phones were NOT tapped… https://t.co/nedIRwvhpI +05/03/2018,Politicians,@johnrobertsFox,Jake's a great producer. Always goes the extra mile to make sure the reporting is accurate! https://t.co/oSJQjgzRQF +05/03/2018,Politicians,@johnrobertsFox,"Sources tell @FoxNews Michael Cohen's phones were not tapped - calls not recorded. Investigators used a ""pen regis… https://t.co/IwxZSFlIsh" +05/03/2018,Politicians,@johnrobertsFox,"RT @tribelaw: To get a warrant to wiretap Michael Cohen’s phone conversations, the FBI had to comply with highly stringent rules and standa…" +05/03/2018,Politicians,@johnrobertsFox,RT @KSulton: Thank you Washington DC for another great show and thank you Danny Chauncey for making the trek here to see it....🙏🙏@38DannyCh… +05/03/2018,Politicians,@johnrobertsFox,"Rudy Giuliani told me that while @realDonaldTrump reimbursed Cohen for the $130k SD payment, POTUS didn’t know what… https://t.co/vDJZiKdEwG" +05/03/2018,Politicians,@johnrobertsFox,Todd Rundgren and Utopia rocking the Warner in DC! https://t.co/YT9Ivb9IpW +05/03/2018,Politicians,@johnrobertsFox,.@kyraphillips and me On Pennsylvania Ave with great friends @38DannyChauncey and Kelly - ahead of the Utopia conce… https://t.co/BRNeBqOlAX +05/02/2018,Politicians,@johnrobertsFox,"Giuliani says Mueller team 'desperate' to make a case, lays out terms for possible Trump interview https://t.co/sKr5sF1oAI #FoxNews" +05/02/2018,Politicians,@johnrobertsFox,Some of the more pithy quotes from @FoxNews interview with Rudy Giuliani https://t.co/wiLao9ETPE +05/02/2018,Politicians,@johnrobertsFox,"Rudy Giuliani tells @FoxNews acceptable parameters for a @realDonaldTrump interview: ""2 hours"" ""Questions in adva… https://t.co/DiZcWO6TjI" +05/02/2018,Politicians,@johnrobertsFox,"Rudy Giuliani tells @FoxNews if Mueller keeps an open mind, an interview of @realDonaldTrump is ""something we'd con… https://t.co/XoqU78JKnm" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani on a possible @realDonaldTrump interview with Mueller: ""My position isn't determined yet. Are they o… https://t.co/9ik9c8Bo8h" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani On the Mueller questions ""The questions almost cry out that they don't have a case. They're despera… https://t.co/97NuLf3wG8" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani tells @FoxNews an interview with Mueller is weeks away ""if that's the direction we're going to go.… https://t.co/D8mKR3bJCR" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani tells @FoxNews he fears a perjury trap in the Mueller questions. Says with NoKo summit looming, an… https://t.co/nABDVF9fLE" +05/02/2018,Politicians,@johnrobertsFox,"Lost in translation - French Pres Macron mixes up ""delightful"" and ""delicious"" https://t.co/DkFEyy71aF via @YouTube" +05/02/2018,Politicians,@johnrobertsFox,POTUS again threatens to get involved in DOJ https://t.co/Zbl0yOGakY +05/01/2018,Politicians,@johnrobertsFox,"@lawdawgseven @Joan1Barb @realDonaldTrump No, my wife does not work for CNN" +05/01/2018,Politicians,@johnrobertsFox,Questions that Robert Mueller wants to ask @realDonaldTrump. https://t.co/O4Dof09PGx +04/30/2018,Politicians,@johnrobertsFox,@Donna6499 @realDonaldTrump This was TODAY +04/30/2018,Politicians,@johnrobertsFox,@JohnCDavidson7 @realDonaldTrump Nope. Guess again... +04/30/2018,Politicians,@johnrobertsFox,@BradAlexander10 @realDonaldTrump Verify what? Kelly's statement? Kelly was the source on that. +04/30/2018,Politicians,@johnrobertsFox,@StandForTrump2 @realDonaldTrump It's not coming from the left. It's coming from the right. +04/30/2018,Politicians,@johnrobertsFox,@DoubleD2k15 @JamesPaine39897 @realDonaldTrump It's actually people INSIDE the White House who are trying to oust K… https://t.co/JXkdAfWf0c +04/30/2018,Politicians,@johnrobertsFox,"@LindaPHayes46 @FoxFilesFNC @realDonaldTrump This is actually a faction trying to discredit John Kelly, not Preside… https://t.co/JA5PB96Oc0" +04/30/2018,Politicians,@johnrobertsFox,@thedenyseshow @KSelvester @realDonaldTrump Not quite there yet... +04/30/2018,Politicians,@johnrobertsFox,@Joan1Barb @realDonaldTrump Because the White House is actively responding to a story it doesn't like. That makes it news. +04/30/2018,Politicians,@johnrobertsFox,@Chrisjo13267688 @mpgarza2012 @realDonaldTrump And you're not paying attention. I didn't report the story. I'm si… https://t.co/OjUlFN1GGQ +04/30/2018,Politicians,@johnrobertsFox,@KSelvester @realDonaldTrump We have a good idea.... +04/30/2018,Politicians,@johnrobertsFox,@spankdatboy @SLYUnser @realDonaldTrump Nope. It has to do with the current administration. +04/30/2018,Politicians,@johnrobertsFox,@WMWestmoreland @realDonaldTrump And therein lies the REAL story about this... +04/30/2018,Politicians,@johnrobertsFox,@Joan1Barb @realDonaldTrump You calling John Kelly's statement junk? Because that's what I am reporting.....I'm no… https://t.co/HlpC226DuL +04/30/2018,Politicians,@johnrobertsFox,@twelvenot12 @AdamShawNY @realDonaldTrump It's actually people in the WH that are doing it. +04/30/2018,Politicians,@johnrobertsFox,@DidYouMissThis1 @realDonaldTrump It's new +04/30/2018,Politicians,@johnrobertsFox,Statement from John Kelly on reports he called @realDonaldTrump an “idiot”. But Kelly has a problem...there is a… https://t.co/fA9ubOLDc5 +04/30/2018,Politicians,@johnrobertsFox,Message from outgoing @WHCA president. #WHCA https://t.co/gTYdZcuHus +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: We made it to @Burrito_Ville and man are we glad we did! Thank you all for the invite. We’re already talking about our ne… +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: Great crowd at the @SoutheastMODems Rally in Dexter! Folks are proud that @ClaireCMC’s standing up to the disastrous tari… +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: Now this is what grassroots enthusiasm looks like. These Cape Girardeau canvassers are ready to hit the pavement and tell… +07/01/2018,Politicians,@clairecmc,"RT @McCaskill4MO: This morning @ClaireCMC joined a HUGE canvass kickoff in Arnold. It may be hot outside, but the energy coming from these…" +06/30/2018,Politicians,@clairecmc,Met so many wonderful hardworking Missourians at Mid Continent yesterday. These tariffs are putting them out of bus… https://t.co/vAqVjutTOc +06/30/2018,Politicians,@clairecmc,"Today: Arnold, Cape, Bernie, Dexter. +Monday: Rolla, Washington, Sunset Hills, St Charles +Tuesday: Arch Grand Openi… https://t.co/mRhIaXbg2f" +06/29/2018,Politicians,@clairecmc,RT @McCaskill4MO: Our Clayton coordinated field office was packed wall to wall this morning to kick off our Friday morning canvass with @Cl… +06/29/2018,Politicians,@clairecmc,RT @SenateHSGACDems: ICYMI: Ranking Member @McCaskillOffice announced that her 2015 bipartisan Federal Permitting Improvement Act has alrea… +06/29/2018,Politicians,@clairecmc,"RT @jd3217: Devastated & heartbroken. Numb. Please stop asking for information/interviews. I’m in no position to speak, just know @capgazne…" +06/29/2018,Politicians,@clairecmc,Glad we had a #TeamClaire in the house for ⁦@Tsunamy27⁩ charity bowling tournament in St Peters tonight. He does so… https://t.co/hYibIuHZ2I +06/27/2018,Politicians,@clairecmc,RT @McCaskill4MO: PTSD is a serious condition that affects 8% of Americans. That number is even higher for our brave veterans. Anyone seeki… +06/27/2018,Politicians,@clairecmc,Yes! More needed but our bill is a good first step. https://t.co/m8Gux5wRIl +06/26/2018,Politicians,@clairecmc,Why does this sound vaguely familiar? https://t.co/YYsLNnymrI +06/25/2018,Politicians,@clairecmc,My thanks to @Sen_JoeManchin. And a sore rib for a few weeks is no big deal. I play hurt. The work goes on. https://t.co/rBb0gBq32F +06/24/2018,Politicians,@clairecmc,"RT @jmannies: At Truman Dinner, @clairecmc asks everyone to stand up who has a preexisting condition. Notes GOP wants to eliminate insuranc…" +06/24/2018,Politicians,@clairecmc,Josh Hawley used Missouri taxpayer money to file this lawsuit to eliminate protections for people with preexisting… https://t.co/MWVNRSqk7e +06/23/2018,Politicians,@clairecmc,"Fighting for jobs in Poplar Bluff. These tariffs are not well thought out. Go after cheaters, not Missouri jobs. https://t.co/IB6oL3qahg" +06/18/2018,Politicians,@clairecmc,What she said. https://t.co/VwrQ9hWgof +06/18/2018,Politicians,@clairecmc,"And this shows extreme pain from trade war to our number 1 crop, soybeans. https://t.co/ZrzKPymca6" +06/18/2018,Politicians,@clairecmc,Trade war is hurting our state. And this isn’t even counting the severe damage to Missouri agriculture. https://t.co/TIM93Xqb7k +06/17/2018,Politicians,@clairecmc,@nealcarter I am joining the legislation tomorrow and am working on other ways to help end this policy and hold the… https://t.co/3yepGpu7Hs +06/17/2018,Politicians,@clairecmc,Yes. I will be on the bill and will be doing more follow up work with CPB and HHS as ranking member on Homeland Sec… https://t.co/HPJPKjOOmw +06/17/2018,Politicians,@clairecmc,To assert that you must rip children from their family to secure the border is just not true. +06/17/2018,Politicians,@clairecmc,I will be joining this bill next week to stop this outrageous administration policy and following up on my longstan… https://t.co/DKBq0UsRZx +06/16/2018,Politicians,@clairecmc,RT @McCaskill4MO: This morning members of #TeamClaire joined @ClaireCMC for the Juneteenth festivities in Kansas City! #MOSen https://t.co/… +06/16/2018,Politicians,@clairecmc,We should never forget the dangers our brave law enforcement officers face every day. Thinking of their families to… https://t.co/ORJubIhUPw +06/15/2018,Politicians,@clairecmc,RT @McCaskill4MO: The decision to drop protections for people with pre-existing conditions would be disastrous for MO’s working families. #… +06/14/2018,Politicians,@clairecmc,RT @McCaskillOffice: Happy 243rd birthday to the @USArmy – and happy birthday to the stars & stripes this #FlagDay! #ArmyBday 🇺🇸 https://t.… +06/14/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Claire: air ambulances “are currently operating in a grey area between healthcare and aviation, and have managed to no…" +06/13/2018,Politicians,@clairecmc,Productive day today. 8 of my bills moved out of committee with big bipartisan support. (4 of mine and 4 where I w… https://t.co/0qbUtkjBXB +06/13/2018,Politicians,@clairecmc,RT @McCaskillOffice: .@kmbc : “McCaskill says she wants to make sure the agency [@CBP] has the resources it needs to intercept opioids at t… +06/13/2018,Politicians,@clairecmc,And this. Why risk retaliation to Missouri Ag and claim that Canada is a threat to national security? Go after Chin… https://t.co/9AyQPP24jV +06/13/2018,Politicians,@clairecmc,This. https://t.co/3QD4HtvSJE +06/13/2018,Politicians,@clairecmc,Part of this trade surplus is our exports from Missouri farmers. Canada is the number one export market for Missour… https://t.co/F3KVOR3gwb +06/12/2018,Politicians,@clairecmc,RT @RSI: Senators @senrobportman and @clairecmc have recently released draft legislation that would help infrastructure https://t.co/4XgyOj… +06/10/2018,Politicians,@clairecmc,Just. That. Simple. https://t.co/HzCkiU8ZDu +06/10/2018,Politicians,@clairecmc,These wonderful folks don’t agree with @HawleyMO that their 4 year college degree is worthless. Thank you Lincoln a… https://t.co/4lADTHr89K +06/09/2018,Politicians,@clairecmc,RT @McCaskill4MO: Stoked to be joining @ClaireCMC for a roundtable at the @GCI1919 with @CatherineForNV! Today we’re talking about what we… +06/09/2018,Politicians,@clairecmc,Goodness gracious. Talk about a turn out! NW Mo Democrats are serious about this election. Everyone wants to make a… https://t.co/Lp5CRFBMt0 +06/09/2018,Politicians,@clairecmc,Privileged to honor thousands who were participating in 5K this am at Arrowhead to support ⁦@ShatterproofHQ⁩ This… https://t.co/fnFDdmYwzF +06/09/2018,Politicians,@clairecmc,RT @fawfulfan: @tyunsell @Hawkeyee21 @HawleyMO @clairecmc @GOP McCaskill has been fighting from day one to get her constituents affordable… +06/09/2018,Politicians,@clairecmc,@7thWardSTL @stl7thward @nicolergalloway @NoOnPropA @CoriBush @brucefranksjr @gregoryfxdaly Thank you! +06/09/2018,Politicians,@clairecmc,"Slow Saturday. Only 7 events. ☺️ on my way to third event in KC, then off to St Joseph for NW dem event. Thanks to… https://t.co/s4zuwcK8qD" +06/08/2018,Politicians,@clairecmc,"No Tyler, he won’t. He is one of the AGs bringing the lawsuit to end the protection of those with pre-existing cond… https://t.co/1BZyWlSmkV" +06/08/2018,Politicians,@clairecmc,The (almost) hardest working Democrat in Missouri! 😬 Happy Birthday Stephen 🎂🍺 https://t.co/DNJ54tCj10 +06/08/2018,Politicians,@clairecmc,Thank you for attending. Great turnout! https://t.co/pgZUobYteC +06/08/2018,Politicians,@clairecmc,RT @POGOBlog: .@McCaskillOffice introduced legislation compelling patient advocacy groups to report funding they receive from pharmaceutica… +06/07/2018,Politicians,@clairecmc,RT @MAhealthforkids: Thx @clairecmc who is pushing for more #BigPharma transparency. She released a report back in Feb about opioid manufac… +06/07/2018,Politicians,@clairecmc,"Cardinal nation is mourning. Thank you Red, you were a class act. #LoveRed2 https://t.co/7xMvcagYsg" +06/06/2018,Politicians,@clairecmc,Seriously. Unbelievable. https://t.co/lokUtwtkBq +06/06/2018,Politicians,@clairecmc,@Jennifrrrrr @SenatorNasheed Ask at a local #TeamClaire office. They are all on our web site. https://t.co/rqawiGEjGy. Thanks! +06/06/2018,Politicians,@clairecmc,@democratmo Thank you Jeffrey! +06/06/2018,Politicians,@clairecmc,Congratulations Senator Arthur! It’s a flip...red to blue. Thanks to all the hard work of Lauren and many volunteer… https://t.co/D1HHyJZV5u +06/05/2018,Politicians,@clairecmc,I agree with my Republican colleagues from Iowa. This administration is hurting the renewable fuel industry and cat… https://t.co/BgRwVRBDhQ +06/04/2018,Politicians,@clairecmc,RT @mkraju: Senate Judiciary Chairman Chuck Grassley just told me this: “If I were president of the United States and I had a lawyer that s… +06/04/2018,Politicians,@clairecmc,@KCMikeMahoney @ruckin_ Looking for a pay phone or gas station to ask for directions when I couldn’t find a map in the car. +06/02/2018,Politicians,@clairecmc,I am so grateful to the hundreds of volunteers who turned out today all over the state. This race will not be won o… https://t.co/31KYNim50O +06/02/2018,Politicians,@clairecmc,"RT @MoDemParty: Today we’re launching the biggest, most sophisticated field program MO has ever seen to make sure @ClaireCMC can keep fight…" +06/02/2018,Politicians,@clairecmc,Great to be there @SenatorNasheed ! https://t.co/ZK2CHMIJ9G +06/01/2018,Politicians,@clairecmc,The subpoena excuse is close to the dog ate my homework. Totally bogus. Does the AG’s office expect people to belie… https://t.co/qkFhGxKkTg +06/01/2018,Politicians,@clairecmc,That’s what happens when you don’t actually investigate. An investigation isn’t “they told us they didn’t do anythi… https://t.co/TKNz121QMa +06/01/2018,Politicians,@clairecmc,Happy to help! Now you can pull your rabbit out of your hat without a dumb federal regulation getting in your way! https://t.co/HG80Fol7Wp +06/01/2018,Politicians,@clairecmc,Totally bogus excuse that he couldn’t subpoena. He could have done exactly what this private attorney did and gotte… https://t.co/CsBAwN87up +06/01/2018,Politicians,@clairecmc,That statute SPECIFICALLY gives the Attorney General the right to bring suit but he refused and this private citize… https://t.co/7yqhIgNHsn +06/01/2018,Politicians,@clairecmc,RsMO 610.027 https://t.co/JgtHRt549I +06/01/2018,Politicians,@clairecmc,And more important than 💰is volunteers! Massive voter contact starts tomorrow. Here is list of offices that are alr… https://t.co/yLx8mr3uUQ +06/01/2018,Politicians,@clairecmc,Speaking of BigBlue....gas money anyone? https://t.co/GDwHm709Mc. Thank you! https://t.co/3d8AnCFwlQ +06/01/2018,Politicians,@clairecmc,"Spent this week covering the state in BigBlue, our campaign RV. Hundreds of #VetsForClaire and military families ca… https://t.co/5TTsi4vn9X" +05/31/2018,Politicians,@clairecmc,"RT @s_webber: At every stop a veteran has come up to Claire to thank her for fighting for them. In Hannibal, one said she's ""a veteran of…" +05/31/2018,Politicians,@clairecmc,RT @McCaskill4MO: We’re back on the road for Day 3️⃣ of our Vets and Military Families Tour! Don’t miss out on a second of the fun—follow o… +05/31/2018,Politicians,@clairecmc,"RT @McCaskill4MO: In Columbia @ClaireCMC had the honor of sharing the stories of two WWII POWs, Ralph and Wilburn. Even after their time in…" +05/29/2018,Politicians,@clairecmc,"My dad. Like many others of the Greatest Generation, he never told us about his bravery. I miss him. A part of my h… https://t.co/em7lTjfYEP" +05/26/2018,Politicians,@clairecmc,Heaven. 5 of my grandsons adoring our new additions! https://t.co/7AeSj9QuO5 +05/26/2018,Politicians,@clairecmc,Together we make good things happen. This is a great example. Seniors have more protection from rotten scammers! https://t.co/bQ1DelBRWl +05/26/2018,Politicians,@clairecmc,Very excited to hit the road next week in this. Names anyone for the RV? We are off on a “Veterans for Claire” tour… https://t.co/SmwMU0qi8z +05/25/2018,Politicians,@clairecmc,"RT @leadinglatte: ""I think it's important that all of us around here, [who] want everyone to think that we're moving mountains... I think t…" +05/25/2018,Politicians,@clairecmc,RT @KMOV: Sen. McCaskill calls public reading of Greitens' accuser's deposition 'unfortunate' https://t.co/wz83lMdp7j https://t.co/kVMITk3A… +05/25/2018,Politicians,@clairecmc,RT @SheenBean32: Great seeing Sentor @clairecmc out engaging with seniors all across this city at the 38 Annual Bring It Together Health Fa… +05/25/2018,Politicians,@clairecmc,I was so honored to spend time this morning with these veterans from the Korean War. Thank you Don and Terry. https://t.co/3DTacU127c +05/24/2018,Politicians,@clairecmc,I talked to some of these workers who lost their jobs yesterday. Justifiably angry. One of them lost a 20 year care… https://t.co/L5UF4xswXx +05/24/2018,Politicians,@clairecmc,RT @vMerlintocs: @clairecmc Good Morning Senator. Would there be any chance you could please retweet this story to help the Oakville Band… +05/24/2018,Politicians,@clairecmc,RT @McCaskill4MO: We’re making it easier than ever to get involved with #TeamClaire. Just text CLAIRE to 83224 and we’ll take it from there… +05/23/2018,Politicians,@clairecmc,Damn auto correct. *Members of CONGRESS https://t.co/F93NTI1GAi +05/23/2018,Politicians,@clairecmc,A hero working with heroes. https://t.co/UHhidsyleu +05/23/2018,Politicians,@clairecmc,RT @lindsaywise: NEW from McCaskill: “The era of Members of Congress controlling the secrecy of harassment claims with no accountability an… +05/23/2018,Politicians,@clairecmc,No more taxpayer money paid for wrongdoing by Members of Commerce. Let’s get this bill to the President. https://t.co/av7qG6WrMg +05/20/2018,Politicians,@clairecmc,Thank you Cindy! Congrats to your daughter. https://t.co/twavGX7JZb +05/20/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC and @CoryBooker just dropped by to surprise the crowd at the #AnnieMalone parade! #TeamClaire #MOSen https://… +05/20/2018,Politicians,@clairecmc,Whoops. Volunteer at https://t.co/KVeLXlsxQH +05/20/2018,Politicians,@clairecmc,"Ok St Louis, you turned it out and up! Goodness gracious what a wonderful rally. Remember: volunteer at Claire… https://t.co/ZPhZ5Aorbs" +05/20/2018,Politicians,@clairecmc,"Concord is wonderful, they always make me feel like family. And thank you Pastor Lindsay! @concordhope https://t.co/UXlxJ7VpqH" +05/20/2018,Politicians,@clairecmc,Thank you Shauna for coming to our office opening in KC and more importantly for your service. #Army #ArmedForcesDay https://t.co/iocFLrNn8Q +05/20/2018,Politicians,@clairecmc,Wow. Thank you to the hundreds who showed up. Sorry it was so hot and crowded. And big thanks to @MayorSlyJames… https://t.co/hfYGDyscOX +05/20/2018,Politicians,@clairecmc,"RT @kareed3: @McCaskill4MO @clairecmc As an Army veteran, I join Shauna in my absolute pleasure in voting for, and supporting Claire for Se…" +05/19/2018,Politicians,@clairecmc,The men and women of our armed forces deserve our respect and appreciation 365. #ArmedForcesDay +05/19/2018,Politicians,@clairecmc,"This week @HawleyMO was interviewed and said he’d done 10 events in 6 weeks. I did 5 yesterday, will do 3 today and… https://t.co/UkjNVnUu0N" +05/19/2018,Politicians,@clairecmc,Can’t be bought. Voted to PROTECT #netneutrality https://t.co/SaZPbzo9ne +05/19/2018,Politicians,@clairecmc,Teri if you would DM me contact info I’d love to help make this happen. https://t.co/euG0Ze7KRn +05/19/2018,Politicians,@clairecmc,Powerful. Preaching love. https://t.co/ZblVtDiMDl +05/19/2018,Politicians,@clairecmc,@CoryBooker in charge of our Instagram account this weekend? 👀 Well that could be trouble. https://t.co/RK7Vn7xj1w +05/18/2018,Politicians,@clairecmc,RT @McCaskillOffice: The legislation is supported by the Fraternal Order of Police (@GLFOP) and National Tactical Officers Assoc. (@NTOAH)… +05/18/2018,Politicians,@clairecmc,"RT @McCaskillOffice: This #NationalPoliceWeek, Claire’s introducing a new bill to fund behavioral health crisis response training. She know…" +05/18/2018,Politicians,@clairecmc,"Again. Heartbreaking. To the families filled with sorrow, my deepest sympathy. No more excuses. Time for reasonable… https://t.co/9QCaA9kKHJ" +05/18/2018,Politicians,@clairecmc,Congratulations to all the graduates and their families! Thanks for having me. #BearGrads https://t.co/kNVypr1B0p +05/18/2018,Politicians,@clairecmc,Join us! https://t.co/FGB2rv7g97 +05/17/2018,Politicians,@clairecmc,Great to be with you Shay! #theMORNINGGRIND https://t.co/evmBWmyVnq +05/17/2018,Politicians,@clairecmc,This is terrible news for Mo farmers. https://t.co/iPOx1loOSE +05/17/2018,Politicians,@clairecmc,"RT @McCaskill4MO: By the end of this week, #TeamClaire and @MODemParty will have opened 2⃣0⃣ coordinated field offices all over MO—and that…" +05/16/2018,Politicians,@clairecmc,Going down to floor to vote to protect #NetNeutrality. We are going to win this one folks. Now it’s time for pressure on the House! +05/16/2018,Politicians,@clairecmc,@MsPackyetti @PodSaveThePpl Congratulations Brittany! +05/15/2018,Politicians,@clairecmc,"RT @Robillard: “He pointed out that he’s held 10 campaign events in the past six weeks” https://t.co/frQx7Y7Snz + +Last year, McCaskill held…" +05/15/2018,Politicians,@clairecmc,Word. Very very few days off for over a year. Hard work matters. It’s how you show respect to hard working Missouri… https://t.co/VkwDHHYUjI +05/13/2018,Politicians,@clairecmc,I miss her so much. Takes my breath away. She was amazing. This is my first campaign without her steady hand nearby… https://t.co/hFhFtRtwHE +05/11/2018,Politicians,@clairecmc,"I completely get this John. And I must confess, I’m very excited. I’m taking Mother’s Day off! https://t.co/Cl0Dvrd78j" +05/11/2018,Politicians,@clairecmc,RT @CDTCivilWar: ICYMI: 'that sounds a little nuts' -- McCaskill slams @HawleyMO for saying #HigherEd indoctrinates students into 'far-left… +05/10/2018,Politicians,@clairecmc,😂😂My grandsons will love this. https://t.co/OetsUYzmX7 +05/08/2018,Politicians,@clairecmc,RT @McCaskill4MO: NEW AD: @ClaireCMC only answers to one boss—and that’s the families of MO. #MOSen https://t.co/rYqzLsm02W +05/05/2018,Politicians,@clairecmc,"RT @McCaskill4MO: At our second community meeting today, @ClaireCMC was asked what issues can bring together rural and urban MO. Without mi…" +05/05/2018,Politicians,@clairecmc,RT @CoraFaith4MO: Such great energy at the @McCaskill4MO #STL office opening! @Emily_Waggoner and I are with @clairecmc! JOIN US ➡️ https:… +05/05/2018,Politicians,@clairecmc,That baby was incredibly precious. Thanks Amelia for coming to our STL campaign office opening! https://t.co/yueGjhh50h +05/04/2018,Politicians,@clairecmc,It was jammed! Let’s get to work! https://t.co/kcABA58a3D +05/04/2018,Politicians,@clairecmc,It was so good to be with my dear friend Alvin Brooks on his 86th birthday! Thank you for all your community servic… https://t.co/DJm7soxMsd +05/04/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC thanks @AdHocGAC for their many years spent building bridges between law enforcement and KC communities. “The… +05/04/2018,Politicians,@clairecmc,This is terrible news for Missouri. https://t.co/IQWPAqKhQz +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Claire’s response? + +“What's going on with the pharmaceutical industry should infuriate every living, breathing soul in…" +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Dr. Stephens of MU’s Family Medicine Clinic in Ashland lamented high drug prices, saying “it's a shameful that we have…" +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Today, she joined healthcare professionals in Columbia to talk about the rising costs of emergency room visits, air am…" +05/03/2018,Politicians,@clairecmc,Over lunch hour we opened another #TeamClaire office! Thanks for the great turnout Boone County! https://t.co/Zn1ylH6SrI +05/02/2018,Politicians,@clairecmc,@repckelly @SarahLStarnes @MoDemParty Yes. In 1988. First floor. +05/02/2018,Politicians,@clairecmc,Undermine and sabotage. Republicans promised repeal and replace. They delivered undermine and sabotage. Made it wor… https://t.co/1Q3uYI3v94 +05/01/2018,Politicians,@clairecmc,"RT @SenatorLankford: .@ReggieBush, I agree - It's insane that we can’t see where our tax dollars go. @clairecmc & I have a bipartisan solut…" +05/01/2018,Politicians,@clairecmc,"RT @stltoday: McCaskill launches inquiry into air ambulances and insurers, cites Post-Dispatch reporting https://t.co/X7k1ZZjhB6 https://t.…" +04/27/2018,Politicians,@clairecmc,This. https://t.co/P9ESj4VEN3 +04/27/2018,Politicians,@clairecmc,I’m not going away on this. They bought a Bentley on your money that was supposed to be going toward fighting terro… https://t.co/swgX9bmgIu +04/27/2018,Politicians,@clairecmc,Yes it is! Let’s do this thing🔥🔥 https://t.co/kNBi34eqrW https://t.co/SJBC9xHNLQ +04/26/2018,Politicians,@clairecmc,@DarrylGregoryG2 @McCaskillOffice .Here you go Rev Gray. I oppose any efforts to attack SNAP. https://t.co/9aUegfaIXc +04/26/2018,Politicians,@clairecmc,"Fast cars,Easy money. Outrageous. It will enrage you. Please. Watch. https://t.co/ht1svwtwex. Full repor… https://t.co/9K5yVTHtBW" +04/26/2018,Politicians,@clairecmc,"RT @rplardner: SecDef Mattis says he agrees with a scathing assessment by @clairecmc of a Pentagon subcontractor. +Mattis tells Sen. McCaski…" +04/26/2018,Politicians,@clairecmc,RT @McCaskillOffice: BREAKING: Claire released a scathing report today detailing how one Pentagon contractor who left taxpayers on the hook… +04/26/2018,Politicians,@clairecmc,RT @SenateHSGACDems: BREAKING: Ranking Member @McCaskillOffice released a scathing report today on the Pentagon’s mismanagement of the Afgh… +04/26/2018,Politicians,@clairecmc,Thanks to @SenatorLankford for partnering with me on this important bill to provide transparency for taxpayers on g… https://t.co/hm0gk49Rzq +04/26/2018,Politicians,@clairecmc,And thank you to all the volunteers and escorts who make these Honor Flights to DC possible! #HeartlandHonorFlight https://t.co/dgcOT1vBQL +04/25/2018,Politicians,@clairecmc,"@THatfieldMO @aaron_hedlund As a matter of fact I saw the story at 7:20 central time this morning, after I’d been to the gym." +04/25/2018,Politicians,@clairecmc,Honor flight from KC area this morning. Always the best part of my week. This veteran asked for a hug and was incre… https://t.co/jzvceGKOst +04/23/2018,Politicians,@clairecmc,Hmmm https://t.co/mC2GcE7hsi +04/22/2018,Politicians,@clairecmc,"RT @7milegap: Republican strategist on his party’s candidate for U.S. Senate in MO: +“He’s this young guy and he’s allergic to hard work.” +M…" +04/21/2018,Politicians,@clairecmc,"RT @MoDemParty: They both campaigned as outsiders. +They both pledged to clean up corruption in Jeff City. +They both think we want to watch…" +04/20/2018,Politicians,@clairecmc,RT @McCaskillOffice: Claire’s excited to announce a new $25.5 million @DeptVetAffairs grant to state-run veterans homes in Missouri for ren… +04/20/2018,Politicians,@clairecmc,RT @KCMikeMahoney: Mo. Sen Claire McCaskill asks Air Force brass about the future of the Whitman AFB as home to new generation of bombers… +04/19/2018,Politicians,@clairecmc,RT @McCaskill4MO: URGENT: In 4️⃣ days the rules protecting #NetNeutrality will expire. @ClaireCMC’s fighting for a vote in the Senate to pr… +04/19/2018,Politicians,@clairecmc,"As we change the rules today to allow Tammy to bring her baby on the floor of the US Senate (welcome Maile!), I fla… https://t.co/Ji1Xc9bRh5" +04/19/2018,Politicians,@clairecmc,RT @McCaskill4MO: Up top! #NationalHighFiveDay https://t.co/AY56QJVfMv +04/18/2018,Politicians,@clairecmc,RT @McCaskillOffice: “McCaskill Calls for Biodiesel Boost”—Claire’s teaming up with a bipartisan group of farm-state senators to oppose cha… +04/18/2018,Politicians,@clairecmc,"RT @Mizzou: MU has a $3.9 billion impact on the state of Missouri according to a new report released today! + +https://t.co/TWqCLIYoad https…" +04/18/2018,Politicians,@clairecmc,Campaign should have nothing to do with official duties. Very concerning. Weirdest part...report was due and filed… https://t.co/Us4xapKgIe +04/18/2018,Politicians,@clairecmc,"RT @Drug_watch: “Drug companies have too much influence in Washington.” U.S. Sen. @clairecmc, D-Missouri, is proposing legislation to end t…" +04/18/2018,Politicians,@clairecmc,"RT @Meirabb: For those who may be confused, here is the very clear public timeline of events regarding the Governor’s use of The Mission C…" +04/18/2018,Politicians,@clairecmc,We would love to have your help on our campaign. Offices opening this month all over the state. Join us! https://t.co/ATbePbCdYl +04/18/2018,Politicians,@clairecmc,Huh? The Governor admitted wrongdoing in connection with his charity in APRIL 2017. That wasn’t a sufficient heads… https://t.co/cIsCRR1n7f +04/18/2018,Politicians,@clairecmc,"So predictable. I feel for Ambassador Haley. She is strong, smart, and capable. And the WH threw her under the bus… https://t.co/2yD3YWCLOy" +04/17/2018,Politicians,@clairecmc,Prayers and sympathy for the Bush family. She was a wonderful woman. https://t.co/JSNAXbEiVZ +04/16/2018,Politicians,@clairecmc,RT @clairecmc: Being dependent on multimillion dollar donors is part of the evil that Citizen United has caused. I’m incredibly proud that… +04/16/2018,Politicians,@clairecmc,Being dependent on multimillion dollar donors is part of the evil that Citizen United has caused. I’m incredibly pr… https://t.co/OqxjMP0sBf +04/16/2018,Politicians,@clairecmc,That is rampant corruption. Hope someone in law enforcement investigates. https://t.co/h4XJ1yd3NV +04/15/2018,Politicians,@clairecmc,Serious aunt love going on this am at my house. https://t.co/lJ4GzMYDLT +04/14/2018,Politicians,@clairecmc,So I was quickly informed this is the south end construction. Whew. But wait I thought we just redid that end a few… https://t.co/r6R65ywuC3 +04/14/2018,Politicians,@clairecmc,@samputsimply @Mizzou Whew. I’m so glad. I was worried. +04/14/2018,Politicians,@clairecmc,This photo makes me kinda sad. I grew up watching Mizzou games from the “rocks”. I know it’s progress but still gon… https://t.co/Duh9Ny9DEI +04/14/2018,Politicians,@clairecmc,I will get to the bottom of this. Investigation continues. https://t.co/X3h2I1cYtd +04/13/2018,Politicians,@clairecmc,👍🏻💙💙💙 https://t.co/5nsMQQfpEw +04/13/2018,Politicians,@clairecmc,"RT @McCaskill4MO: It’s official! @ClaireCMC’s bipartisan, anti-sex trafficking bill was signed into law by the president earlier this week.…" +04/12/2018,Politicians,@clairecmc,I’m confused. And Missouri farmers desperately need certainty. What in the world is going on? https://t.co/lHUIFrZdnB +04/12/2018,Politicians,@clairecmc,RT @senorrinhatch: Anyone advising the President — in public or over the airwaves— to fire Bob Mueller does not have the President or the n… +04/12/2018,Politicians,@clairecmc,"I have read the official report from the Republican led Missouri House investigation, including the sworn testimony… https://t.co/tk7Sbduapp" +04/11/2018,Politicians,@clairecmc,I can’t get my head around a man’s character that would put his wife and children through this kind of pain. +04/11/2018,Politicians,@clairecmc,It was a long tough fight. But we never gave up. My thanks to my partner @SenRobPortman. Unfortunate the WH played… https://t.co/bePfuDpK3n +04/11/2018,Politicians,@clairecmc,"RT @McCaskillOffice: With #SESTA officially on the books, survivors can now access the justice they deserve, and we’re better able to preve…" +04/11/2018,Politicians,@clairecmc,RT @HagedornInst: Congratulations to Senators McCaskill (@clairecmc) and Portman and the others who worked diligently to put a dent in chil… +04/10/2018,Politicians,@clairecmc,Our investigation. Oversight matters. https://t.co/370HzRzMju +04/10/2018,Politicians,@clairecmc,Our pleasure. Least I can do for my mother’s high school and where I attended school at Donnelly elementary!… https://t.co/DM4E5YEj9t +04/09/2018,Politicians,@clairecmc,Lots of travel and events yesterday. Today? Grandchildren! 😍 Family days make it all work and make me so grateful f… https://t.co/jWx9slw9PG +04/08/2018,Politicians,@clairecmc,HUGE crowd at annual @GreeneCountyDem dinner in Springfield. So much energy. Something is going on. 😁 https://t.co/ALg8Hw1Ion +04/08/2018,Politicians,@clairecmc,Then on to a moving and emotional memorial surface for my friend and amazing long time public servant Wendy Noren i… https://t.co/oLGJn6yi98 +04/08/2018,Politicians,@clairecmc,Started the day yesterday in STL with over 200 showing up for a volunteer brunch! https://t.co/VR0GhMNF6o +04/07/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC fought for Arla Harrell when his government wouldn’t. #MOSen https://t.co/7RkJBTqak4 +04/07/2018,Politicians,@clairecmc,Big crowd tonight at Blair dinner in Jeff City. Great to be with all these committed folks. Thanks for the warm wel… https://t.co/zipuwwkc36 +04/05/2018,Politicians,@clairecmc,I agree Pat. Worried about all the soybean farmers in Missouri living on the edge with this added stress.… https://t.co/H7sYzeNU6B +04/05/2018,Politicians,@clairecmc,RT @SenatorNasheed: Thank you for your early leadership on this @clairecmc - all people deserve safe and healthy housing. #ClintonPeabody h… +04/04/2018,Politicians,@clairecmc,RT @TheSalemNews: McCaskill-backed bill would boost number of doctors training in rural areas https://t.co/Qz5d1qpzwM https://t.co/13i8wmru… +04/03/2018,Politicians,@clairecmc,"RT @RxPricing: Some #drugprices news from @jessiehellmann: ""Three U.S. senators are asking why a 40-year-old cancer drug has increased in p…" +04/03/2018,Politicians,@clairecmc,RT @THatfieldMO: .@HawleyMO YouTube page vs @clairecmc YouTube page. One is full of petty attack ads while the other shows someone who work… +04/03/2018,Politicians,@clairecmc,"RT @McCaskill4MO: NEW: When Arla Harrell was denied benefits after being subjected to mustard gas experiments by the American military, @Cl…" +03/30/2018,Politicians,@clairecmc,"RT @mcbridetd: Government set to borrow nearly $1 trillion this year, an 84 percent jump from last year + Chicago Tribune https://t.co/elXCb…" +03/30/2018,Politicians,@clairecmc,Stopping a ridiculous practice. https://t.co/EoIbjeXSjz +03/30/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Today we remember and honor all Vietnam War veterans and the sacrifices they made for our country. From all of us, tha…" +03/29/2018,Politicians,@clairecmc,It’s a full moon! https://t.co/IaJ1NCZHWR +03/28/2018,Politicians,@clairecmc,Big crowd. Lots of volunteers. Let’s get to work! #MoSen https://t.co/aHjl64PyQV +03/28/2018,Politicians,@clairecmc,Getting ready for town hall #52. Today’s in KC. I have averaged one townhall a week for the last year. Thank you to… https://t.co/bRSIL5AMq5 +03/28/2018,Politicians,@clairecmc,RT @jmannies: ICYMI: https://t.co/KuFuUOUi4L +07/02/2018,Politicians,@senorrinhatch,@AshMcGonigal Is that how you remember 2007? +07/02/2018,Politicians,@senorrinhatch,"Like Hardiman and Kethledge, Thapar was first nominated at a time when Democrats evaluated Judicial nominees on qua… https://t.co/b5YNC7JznI" +07/02/2018,Politicians,@senorrinhatch,"While Thapar didn’t receive a single D vote in 2017, he was confirmed to the District Court for the Eastern Distric… https://t.co/JbR4hCRgvn" +07/02/2018,Politicians,@senorrinhatch,Glad to see Democrat attacks on Judge Barrett so far have largely avoided the unacceptable religious test Judiciary… https://t.co/RKhyaVelRY +07/01/2018,Politicians,@senorrinhatch,On your next Delta flight make sure to read Senator Hatch’s brief interview in Sky Magazine alongside… https://t.co/j3BFlOKB4w +06/30/2018,Politicians,@senorrinhatch,@JanDelicat Just a member of said Senate Judiciary Committee. +06/30/2018,Politicians,@senorrinhatch,"He is 81 years old and had served on the Court admirably for 31 years. + +End of investigation. + +https://t.co/Iz02CESQsQ" +06/29/2018,Politicians,@senorrinhatch,"Congratulations to @joshjames and our friends at @Domotalk! + +https://t.co/LNPCd8meNq" +06/29/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: The Senate Finance Committee has been busy. In the 115th Congress, it has ushered in #taxreform, repeal of the individua…" +06/29/2018,Politicians,@senorrinhatch,"@VictoriaCollaz2 Ok Victoria. Just for you, after this Supreme Court nominee is confirmed." +06/29/2018,Politicians,@senorrinhatch,"@gossipornews Yes, thanks!" +06/29/2018,Politicians,@senorrinhatch,"Senate Democrats want a Supreme Court Justice who will act as a super-legislator, serving on a second Congress in o… https://t.co/7mWsWwmd5c" +06/29/2018,Politicians,@senorrinhatch,"Important from @charlescwcooke: No. It’s Not Time for a ‘Bork Moment’ + +https://t.co/6izII7knuG #scotus #utpol" +06/29/2018,Politicians,@senorrinhatch,"As Democrats lay out a laundry list of political hopes for the next Supreme Court Justice, Senate Republicans will… https://t.co/a0bus95lsp" +06/29/2018,Politicians,@senorrinhatch,RT @lawyer_moms: Thanks to @OrrinHatch and @SenMikeLee for productive meetings. #FamiliesBelongTogether https://t.co/IX2NiZJjRl +06/29/2018,Politicians,@senorrinhatch,"RT @FoxBusiness: .@OrrinHatch on the next Supreme Court Justice: ""[@POTUS] has about 25 names. Any one of those names would be excellent on…" +06/29/2018,Politicians,@senorrinhatch,No Doubt A Supreme Court Nominee Will Be Confirmed Before Midterms. #utpol https://t.co/QPtCy69VCB +06/29/2018,Politicians,@senorrinhatch,"RT @Newseum: Amazingly, the dedicated journalists at the @capgaznews put out a newspaper today. Their front page is on display in the Today…" +06/29/2018,Politicians,@senorrinhatch,"RT @mattdizwhitlock: Oops. If you have to crop an image to cut off “next President” and clip a video to try and make a point, you better ma…" +06/29/2018,Politicians,@senorrinhatch,Justice Kennedy will be replaced before the midterms. https://t.co/5dWUef9xtR +06/29/2018,Politicians,@senorrinhatch,"Hatch Speaks Out in Need of Fair Confirmation Process for Justice Kennedy’s Successor— via ⁦@JackHeretik⁩, ⁦… https://t.co/4W2wKSgObX" +06/29/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: @SenateDems Interesting that you decided to cut it off where you did. + +Here are 6 times from that exact same 2016 inter…" +06/28/2018,Politicians,@senorrinhatch,“Bottom line: it’s pretty clear the debate in 2016 revolved around nominations made in a presidential election year… https://t.co/ZiFmyUdteg +06/28/2018,Politicians,@senorrinhatch,RT @chaseacook: I can tell you this: We are putting out a damn paper tomorrow. +06/28/2018,Politicians,@senorrinhatch,The shooting at the Capital Gazette in Annapolis is an attack on our First Amendment and our most fundamental right… https://t.co/ey0MvxNoBH +06/28/2018,Politicians,@senorrinhatch,"@SenateDems Interesting that you decided to cut it off where you did. + +Here are 6 times from that exact same 2016… https://t.co/a21ZhC7cgJ" +06/28/2018,Politicians,@senorrinhatch,"RT @FoxBusiness: .@OrrinHatch on the next Supreme Court Justice: ""[@POTUS] has about 25 names. Any one of those names would be excellent on…" +06/28/2018,Politicians,@senorrinhatch,"“I have no doubt the President will pick someone very capable to fill the shoes of Justice Kennedy, who served on t… https://t.co/hfQNn0XYGT" +06/28/2018,Politicians,@senorrinhatch,At 5:20 Hatch will join @EveningEdit to talk about Justice Kennedy’s retirement and the need to confirm a suitable… https://t.co/vsmyhbJvab +06/28/2018,Politicians,@senorrinhatch,"Funny-- I get away with that all the time. + +https://t.co/c0w12cqCZ7" +06/28/2018,Politicians,@senorrinhatch,"RT @EveningEdit: Coming up +@OrrinHatch +@marc_lotter +@mschlapp +@madisongesiotto +@Amottur +@TheDCVince https://t.co/p7qmDpVsy8" +06/28/2018,Politicians,@senorrinhatch,"RT @SenateMajLdr: As I stated yesterday, the Senate stands ready to fulfill our constitutional role by offering advice and consent on @POTU…" +06/28/2018,Politicians,@senorrinhatch,"""I understand Senator Schumer--They feel very deeply about politicizing the courts. They want to politicize as long… https://t.co/j4ptP5DnBk" +06/28/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Not quite yet, there's a Supreme Court seat on the line. + +https://t.co/ywl978VYtP" +06/28/2018,Politicians,@senorrinhatch,Tune in now to @dailybriefing — @FoxNews #SCOTUS https://t.co/V83u7k3SC2 +06/28/2018,Politicians,@senorrinhatch,At 2:10 PM EST Senator Hatch will join @DanaPerino on @dailybriefing on @FoxNews to talk about Justice Kennedy's re… https://t.co/GeS7kWbHgh +06/28/2018,Politicians,@senorrinhatch,"RT @KUTV2News: Sen. Orrin Hatch, the senior member and former Chairman of the Senate Judiciary Committee, paid tribute to Supreme Court Jus…" +06/28/2018,Politicians,@senorrinhatch,"America doesn’t need political judges. +It doesn’t need an army of super-legislators telling us what to do. +And it… https://t.co/BNsF4K37kP" +06/28/2018,Politicians,@senorrinhatch,@FightForTitleII Are you arguing for the Confederacy here? +06/28/2018,Politicians,@senorrinhatch,At 11:35 AM Senator Hatch will speak on the Senate floor about Justice Kennedy's retirement and the need to confirm… https://t.co/X3mW7WjI2E +06/28/2018,Politicians,@senorrinhatch,@GoldenGuido You're making the very bold assumption that you're going to outlive him. +06/28/2018,Politicians,@senorrinhatch,"At the first Battle of Bull Run. It was necessary. + +https://t.co/RoYP8GANOm" +06/28/2018,Politicians,@senorrinhatch,@matthewfelling Thank you for recognizing this correct interpretation of the acronym. +06/28/2018,Politicians,@senorrinhatch,@BertClere I can only hope. +06/28/2018,Politicians,@senorrinhatch,"@dmully1193 Addressed this yesterday. + +https://t.co/Qvu3fvlo5B" +06/28/2018,Politicians,@senorrinhatch,"You'll hear Senate Democrats talk about needing a nominee who will promote ""progress,"" because they want Judges who… https://t.co/UqT3lWR65D" +06/28/2018,Politicians,@senorrinhatch,"One of Democrats biggest challenges is that they emptied the procedural toolbox trying to stop, slow, stall every e… https://t.co/13nUeevO9E" +06/28/2018,Politicians,@senorrinhatch,"With love and respect, when it comes to who gets to *nominate* Supreme Court justices (which is what @SenateMajLdr… https://t.co/j1BS3IC609" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: JUST NOW: Senator Hatch on the phone with Justice Kennedy, thanking him for his service and dedication to upholding the…" +06/27/2018,Politicians,@senorrinhatch,More helpful data from @baseballcrank about the common practice of confirming Supreme Court nominees in midterm ele… https://t.co/ZAdWVnaTp8 +06/27/2018,Politicians,@senorrinhatch,@fossen There are no Presidents up for election this year. https://t.co/WruEc87qKG +06/27/2018,Politicians,@senorrinhatch,"Not quite yet, there's a Supreme Court seat on the line. + +https://t.co/ywl978VYtP" +06/27/2018,Politicians,@senorrinhatch,"Memories. + +Always glad to stand (or sit) behind @SenateMajLdr. + +https://t.co/xO9qtinDfI" +06/27/2018,Politicians,@senorrinhatch,"RT @baseballcrank: 8 of 9 midterm-election-year SCT nominations confirmed since WW2 (POTUS, SEN party): + +Kagan (D, D) +Breyer (D, D) +Souter…" +06/27/2018,Politicians,@senorrinhatch,"Senate Democrats are ""grasping at straws, in the truest sense."" + +https://t.co/oE5av8tmee #SCOTUS #utpol" +06/27/2018,Politicians,@senorrinhatch,This summary from ⁦@guypbenson⁩ serves as an excellent explainer for a key qualification for Justice Kennedy’s repl… https://t.co/QpLqkkPbGQ +06/27/2018,Politicians,@senorrinhatch,RT @senorrinhatch: The #SCOTUS rulings this week highlight the importance of a nominee who focuses on impartially interpreting the Constitu… +06/27/2018,Politicians,@senorrinhatch,"RT @guypbenson: 1) It’s not a Presidential election. +2) That was the Biden/Schumer standard. +3) Obama’s second SCOTUS pick was confirmed in…" +06/27/2018,Politicians,@senorrinhatch,#TBT https://t.co/RnjKlQ7IyT +06/27/2018,Politicians,@senorrinhatch,While there was no precedent for confirming a Justice who had been nominated by an outgoing President in a Presiden… https://t.co/ZcWnN2BpEZ +06/27/2018,Politicians,@senorrinhatch,Our Democrat colleagues entire strategy seems to be premised on the assumption that the American people don't under… https://t.co/xTJNqJivlt +06/27/2018,Politicians,@senorrinhatch,"JUST NOW: Senator Hatch on the phone with Justice Kennedy, thanking him for his service and dedication to upholding… https://t.co/IOcTgo8xLR" +06/27/2018,Politicians,@senorrinhatch,"RT @JakeSherman: MCCONNELL on the Senate floor: ""The senate stands ready to fulfill its constitutional role by offering advice and consent…" +06/27/2018,Politicians,@senorrinhatch,"RT @ABCPolitics: JUST IN: Senate Majority Leader Mitch McConnell: ""We will vote to confirm Justice Kennedy's successor this fall."" https://…" +06/27/2018,Politicians,@senorrinhatch,RT @SenateMajLdr: The Senate stands ready to fulfill its constitutional role by offering advice and consent on @POTUS @realDonaldTrump’s no… +06/27/2018,Politicians,@senorrinhatch,The #SCOTUS rulings this week highlight the importance of a nominee who focuses on impartially interpreting the Con… https://t.co/j23MVPPteF +06/27/2018,Politicians,@senorrinhatch,RT @fox13: UPDATE: Senator Orrin Hatch issues statement congratulating Justice Kennedy on his service to the country and praising him as a… +06/27/2018,Politicians,@senorrinhatch,"..""to guide his successor through the confirmation process. I wish Justice Kennedy and his family the very best."" (2/2) #SCOTUS #utpol" +06/27/2018,Politicians,@senorrinhatch,"HATCH on Justice Kennedy's retirement: ""I congratulate Justice Kennedy on his service to our country. He has been a… https://t.co/p9BXiDyjDc" +06/27/2018,Politicians,@senorrinhatch,#NationalSunglassesDay https://t.co/zvQCl8kvjN +06/27/2018,Politicians,@senorrinhatch,"RT @DavidAFrench: Alternative headline: + +BREAKING: US Supreme Court hands down major blow to state efforts to compel speech. Protects mill…" +06/27/2018,Politicians,@senorrinhatch,"RT @BenjiBacker: “You’re an impressive young man—we need more like you. I appreciate the work you’re doing [with @ACC_National].” + +Grateful…" +06/27/2018,Politicians,@senorrinhatch,@5876M I don't think gerrymandered means what you think it means. +06/27/2018,Politicians,@senorrinhatch,RT @foxandfriends: Sen. Orrin Hatch pays tribute to Charles Krauthammer https://t.co/JZTiwhzjej +06/27/2018,Politicians,@senorrinhatch,RT @ChadPergram: From colleague Jason Donner. Senate Finance Cmte chair Hatch: I’m actually on Harley Davidson’s side. Tariffs are not bene… +06/27/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: In just six months, #taxreform has already brought back $305.6 billion to the United States, a ""shot in the arm"" for U.S…" +06/27/2018,Politicians,@senorrinhatch,(But do it without the money of those who don't support your agenda-- because those people now finally have their F… https://t.co/xmDTViS1LW +06/27/2018,Politicians,@senorrinhatch,"RT @senatorshoshana: “to compel a man to furnish contributions of money for the propagation of +opinions which he disbelieves and abhor[s] i…" +06/27/2018,Politicians,@senorrinhatch,"HATCH on the #JANUS decision: + +""Since the late 1970s, I have fought to protect the rights of workers against union… https://t.co/LjprvgLRkP" +06/27/2018,Politicians,@senorrinhatch,"The Supreme Court could deliver a ruling on Janus v. AFSCME today. + +HATCH: “the Supreme Court has the opportunity t… https://t.co/rAeLpW7yRn" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: These youths are quite lucky there was a security detail separating them from Secretary Chao. + +https://t.co/AP3CG2jQPx" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: HATCH on Civility: ""I have said this many times before, but it bears repeating: Our words have consequences, and in an a…" +06/27/2018,Politicians,@senorrinhatch,RT @ReutersBiz: Automakers to warn Trump of $45 billion higher vehicle costs if tariff imposed https://t.co/Y6HD7FlUkS +06/26/2018,Politicians,@senorrinhatch,"These youths are quite lucky there was a security detail separating them from Secretary Chao. + +https://t.co/AP3CG2jQPx" +06/26/2018,Politicians,@senorrinhatch,@AshMcGonigal You must have missed last week. https://t.co/Jh710ACjaB +06/26/2018,Politicians,@senorrinhatch,"HATCH on Civility: ""I have said this many times before, but it bears repeating: Our words have consequences, and in… https://t.co/303cd5VrtM" +06/26/2018,Politicians,@senorrinhatch,"VIDEO: On the Senate floor this evening Senator Hatch paid tribute to his good friend, @FoxNews commentator Charles… https://t.co/VxCqmXnAJX" +06/26/2018,Politicians,@senorrinhatch,"HATCH on Charles Krauthammer: + +""I think we can all agree that civility took a beating this weekend. But perhaps th… https://t.co/WNqhzOVZ9l" +06/26/2018,Politicians,@senorrinhatch,"Raising awareness about Endometriosis knows no partisan bounds. + +Senator Hatch recently wrote an op-ed about why he… https://t.co/KfQuai2a18" +06/26/2018,Politicians,@senorrinhatch,"At 4:15 PM Senator Hatch will deliver brief remarks on the passing of his longtime friend Charles Krauthammer, ""a f… https://t.co/Csfp79xjb0" +06/26/2018,Politicians,@senorrinhatch,RT @GloblAutomkrs: .@SenOrrinHatch via @CBSMoneyWatch: “[A #car] is a significant financial commitment for most families … and I’m shocked… +06/26/2018,Politicians,@senorrinhatch,"RT @PIIE: .@OrrinHatch cites @PIIE’s study showing how Trump’s proposed 25 percent auto and auto parts tariffs would cause at least 195,000…" +06/26/2018,Politicians,@senorrinhatch,"RT @RightOnCrime: ""[W]ith targeted reforms to our prison system like those Senator Cornyn has proposed, we can reduce recidivism and give m…" +06/26/2018,Politicians,@senorrinhatch,RT @SFGMC: @SFGMC Artistic Director @tgseelig and Chorus members are guests of the @MormonTabChoir today for soundcheck at the @ShorelineAm… +06/26/2018,Politicians,@senorrinhatch,RT @DJJazzyJody: Proving you're never too old for second chances ... https://t.co/bJe8z4TDcx +06/26/2018,Politicians,@senorrinhatch,RT @JakeKUTV: Just an extra year. https://t.co/seVlzMJ4vh +06/25/2018,Politicians,@senorrinhatch,"""The tariffs have put a halt to the growth of the company--plans to buy a nearby building for possible expansion ar… https://t.co/DfZmtwblZI" +06/25/2018,Politicians,@senorrinhatch,"Our words have consequences, and in an age of retweets, viral videos and shareable content, those words often echo… https://t.co/dszwEZrptW" +06/25/2018,Politicians,@senorrinhatch,RT @malcolm_john: Kudos to @OrrinHatch for keeping mens rea reform as part of the #CriminalJusticeReform discussion. My take with @jseibler… +06/25/2018,Politicians,@senorrinhatch,RT @SenShelby: Remarkable day in the Senate! We have just approved a package of three appropriations bills through regular order. Proud of… +06/25/2018,Politicians,@senorrinhatch,"RT @SenateGOP: 🚨Breaking🚨 The Senate just passed a funding bill that will help: +▶︎ Address our nation’s energy and water development needs…" +06/25/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Jack's Ornamental Iron in Utah builds railings for apartment buildings. + +The increased cost of steel/ aluminum after t…" +06/25/2018,Politicians,@senorrinhatch,Great read from @JSeibler and @malcolm_john at @DailySignal on Senator Hatch's #CriminalJusticeReform efforts.… https://t.co/0qI3O4W3qo +06/25/2018,Politicians,@senorrinhatch,"RT @SenateGOP: When tax reform was passed, there were estimates that it would create 1 million jobs. Just six months after #TaxReform was s…" +06/25/2018,Politicians,@senorrinhatch,@A_M_Dolan @senatorshoshana This is all true. +06/25/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: .@bhenergy will share $3.8 million in savings with Nebraska-area natural gas customers thanks to #taxreform https://t.c… +06/25/2018,Politicians,@senorrinhatch,RT @kslmrichards: I am working on the story now. Listen on @kslnewsradio as you grab lunch or drive home. https://t.co/fnChUSCS0x +06/25/2018,Politicians,@senorrinhatch,"Students (young wizards) are learning science, technology, engineering, and math from + +Clark Planetarium +Nat. Histo… https://t.co/w99iH3dgux" +06/25/2018,Politicians,@senorrinhatch,"This is a wonderful, creative way to help Utah kids gain more exposure to critical STEM education. + +More about wha… https://t.co/CTEOOSAWIJ" +06/25/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Ahead of the Finance Committee Hearing with @HHSGov Secretary Azar tomorrow, Chairman @senorrinhatch writes in @rollcall…" +06/25/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Today Senator Hatch spoke out in support of 3 criminal justice reform measures: + +☑️ Mens rea reform https://t.co/OjjLU…" +06/25/2018,Politicians,@senorrinhatch,@KyleKashuv @benshapiro @DLoesch @guypbenson @rpetty Very much looking forward to it. https://t.co/7IwQh954Su +06/25/2018,Politicians,@senorrinhatch,"We all bear responsibility in some way for the current state of politics, and the lack of civility. + +And because o… https://t.co/MTPWKOWzCh" +06/25/2018,Politicians,@senorrinhatch,"This is a very bad, dangerous idea. + +Debate and even disagreement is critical to the American experiment. But when… https://t.co/EtlYRUg9hC" +06/24/2018,Politicians,@senorrinhatch,"RT @davidaxelrod: I was moved to join the @CNN Town Hall on suicide prevention, moderated by Anderson Cooper, which airs tonight at 7 EST.…" +06/24/2018,Politicians,@senorrinhatch,If we are splitting into Republican restaurants and Democrat restaurants can we keep the Chuck-a-Rama all you can e… https://t.co/IMUOUGWRLS +06/23/2018,Politicians,@senorrinhatch,"“Amid harsh words and suspicion elsewhere, celebration of World Refugee Day showcases the Beehive State’s open, wel… https://t.co/UFqon4ZCIj" +06/23/2018,Politicians,@senorrinhatch,"Happy 70th birthday to Justice Clarence Thomas. Many MANY happy returns. + +On the 25th anniversary of Justice Thomas… https://t.co/1ud4hCXGpT" +06/23/2018,Politicians,@senorrinhatch,"RT @VP: Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the @WhiteHouse today. @POTUS…" +06/23/2018,Politicians,@senorrinhatch,This is great news. https://t.co/NCFXYRze2Y +06/22/2018,Politicians,@senorrinhatch,"Jack's Ornamental Iron in Utah builds railings for apartment buildings. + +The increased cost of steel/ aluminum af… https://t.co/YhciDp8iX4" +06/22/2018,Politicians,@senorrinhatch,"Today Senator Hatch spoke out in support of 3 criminal justice reform measures: + +☑️ Mens rea reform… https://t.co/6aDwEdke52" +06/22/2018,Politicians,@senorrinhatch,"@revansCAAD8 Senator Hatch is in the Senate, not the House. + +The Senate did not vote on the Goodlatte bill." +06/22/2018,Politicians,@senorrinhatch,"Great news for Utah! #utpol + +https://t.co/ykYcWsG5kp" +06/22/2018,Politicians,@senorrinhatch,Senator Hatch honoring Utah county commissioners and legislators at the White House today — #utpol https://t.co/c0e0nXKSRv +06/22/2018,Politicians,@senorrinhatch,"RT @SenateGOP: Let’s talk results. It’s been six months since tax reform was signed into law, and the unemployment rate is currently at an…" +06/22/2018,Politicians,@senorrinhatch,@mike_Zollo This is all patently false and you are spreading misinformation. +06/22/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Just In: Chairman Hatch announces hearing for IRS Nominee Charles Rettig https://t.co/RLxGOFMfFz +06/22/2018,Politicians,@senorrinhatch,"RT @StevenTDennis: The Republican chairman of the Finance Committee, Orrin Hatch, also demanded the return of the children this morning. ht…" +06/21/2018,Politicians,@senorrinhatch,"Great news in this statement from HHS about reuniting separated families: + +""Reunification is always the ultimate go… https://t.co/JDg0w59kuW" +06/21/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Senate Finance GOP to @secretaryross: Tariffs hurt Americans. More: https://t.co/WkZpnEEczf +06/21/2018,Politicians,@senorrinhatch,"RT @KyleKashuv: Senator OG Hatch (@senorrinhatch) will be at @TPUSA #HSLS2018! Will you be there? + +Apply today! https://t.co/LPIJFVGunG ht…" +06/21/2018,Politicians,@senorrinhatch,"""We need to be humane, but we also need to enforce our laws. Separating children from their parents is inhumane. Ke… https://t.co/nRc5rXBwAV" +06/21/2018,Politicians,@senorrinhatch,Senator Hatch is speaking now about the importance of yesterdays' executive order to keep families together.. but A… https://t.co/tlW2IumtRU +06/21/2018,Politicians,@senorrinhatch,Senator Hatch is pleased to support the Keep Families Together and Enforce the Law Act by @SenThomTillis. He will b… https://t.co/lVmScNvI1V +06/21/2018,Politicians,@senorrinhatch,@sylviaharo1 Yes. +06/21/2018,Politicians,@senorrinhatch,"RT @FoxNews: .@Varneyco: ""The real big story that affects everybody in America is the success of @POTUS's tax cut package and what it's don…" +06/21/2018,Politicians,@senorrinhatch,"“More than ever before, Americans can expect things to be better tomorrow than they are today.” + +Yesterday Hatch t… https://t.co/4dsf3V902o" +06/21/2018,Politicians,@senorrinhatch,RT @SenateGOP: Senate Republicans are getting things done for the American people. https://t.co/EMcFQ9zi8R +06/21/2018,Politicians,@senorrinhatch,"“I just don’t see how the damage posed on all of these sectors could possibly advance our national security.""… https://t.co/BGKSFfe54r" +06/21/2018,Politicians,@senorrinhatch,"“Mexico is the largest export market for US pork, including pig farmers in Utah. Mexico announced it will impose ta… https://t.co/YLmWxxvfWE" +06/21/2018,Politicians,@senorrinhatch,Earlier today Senator Hatch took the Trump administration to task for the devastating impact the President’s propos… https://t.co/F3JOKHWjvw +06/21/2018,Politicians,@senorrinhatch,"If that’s the world’s most important human rights body.. we need better human rights bodies. + +Perhaps one that isn… https://t.co/lISE6rnPac" +06/21/2018,Politicians,@senorrinhatch,"RT @openletterbot: Here’s an open letter from Leslie in Slc, UT to @SenOrrinHatch #FamiliesBelongTogether https://t.co/jopqFLrHcP" +06/21/2018,Politicians,@senorrinhatch,The President just spoke about the need for merit-based immigration to fill high-skilled jobs in our booming econom… https://t.co/ZIT1kEg5lR +06/20/2018,Politicians,@senorrinhatch,The President made the right choice today by stopping the inhumane policy of separating children from their familie… https://t.co/xxdFtFGw9J +06/20/2018,Politicians,@senorrinhatch,"Hatch: “Know that you are taxing American families, you are putting American jobs at risk, and you are destroying m… https://t.co/xAqHvN1SSF" +06/20/2018,Politicians,@senorrinhatch,RT @FreeTradeBryan: Thread on @SenateFinance testimony from @SecretaryRoss today. All quotes are paraphrased. From @OrrinHatch : As a conse… +06/20/2018,Politicians,@senorrinhatch,RT @senorrinhatch: Valuable deep-dive from @gabrielmalor-- Democrats’ Border Separation Bill Would Let Nearly All Parents Who Commit Federa… +06/20/2018,Politicians,@senorrinhatch,"RT @McConnellPress: .@SenateMajLdr McConnell cosponsors the “Keep Families Together and Enforce the Law Act,” which keeps families together…" +06/20/2018,Politicians,@senorrinhatch,"RT @taxfoundation: .@senorrinhatch: ""Automobile #tariffs are a tax on American families. And the Tax Foundation agrees, estimating that aut…" +06/20/2018,Politicians,@senorrinhatch,"This must be awkward for you guys. + +Obviously a lot of things contributed to POTUS’ decision to halt family separat… https://t.co/0cLb0e2Y8Y" +06/20/2018,Politicians,@senorrinhatch,Done. https://t.co/peJbv1UeoA +06/20/2018,Politicians,@senorrinhatch,"After successfully calling on the President to pause family separations, Senator Hatch is supporting legislative pr… https://t.co/OUAuYeaz3T" +06/20/2018,Politicians,@senorrinhatch,ICYMI-- Yesterday Hatch and 12 of his colleagues called on the President to end these separations so Congress could… https://t.co/HTa78konWx +06/20/2018,Politicians,@senorrinhatch,"""The onus is on us now to work quickly to fix these problems, and I look forward to working with my colleagues on t… https://t.co/bYTmcI75lT" +06/20/2018,Politicians,@senorrinhatch,"HATCH on executive order: ""I appreciate the President’s willingness to listen to us on this issue. We all understan… https://t.co/ZcgSboMoOt" +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Find Hatch's full remarks here: https://t.co/Zou0R0suS1 +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman @senorrinhatch: “…Optimism, along with lower costs of increasing investments and doing business, has already st…" +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman Hatch marking the six-month anniversary of #taxreform: : ""As business investment & productivity pick up...wage…" +06/20/2018,Politicians,@senorrinhatch,RT @DNewsPolitics: Read about Hatch letter seeking halt to family separations at the border -- and Utah delegation reaction to @realDonaldT… +06/20/2018,Politicians,@senorrinhatch,As Hatch @SenJohnMcCain @SenPatRoberts @SenatorCollins @lisamurkowski @SenBobCorker @SenAlexander @JohnBoozman… https://t.co/MEHXQESJOE +06/20/2018,Politicians,@senorrinhatch,"RT @AlexLimonNews: #BREAKING POTUS says ""I'll be signing something in a little while"" to end family separations, White House pool reports.…" +06/20/2018,Politicians,@senorrinhatch,@sagcat Please refer to our entire twitter feed. You’ll find it at @senorrinhatch +06/20/2018,Politicians,@senorrinhatch,@Reagan_Girl Sponsoring and co-sponsoring over a dozen different immigration bills to fix it. +06/20/2018,Politicians,@senorrinhatch,"@cbeilinson @seungminkim Please refer to our entire twitter feed. + +https://t.co/60c61kBqiU +https://t.co/x9DcI0ZhD6… https://t.co/E8mf3PFstV" +06/20/2018,Politicians,@senorrinhatch,"Huge if true. + +https://t.co/k1XcfT5DbB" +06/20/2018,Politicians,@senorrinhatch,This would be the right move. Senator Hatch has asked @realDonaldTrump and the Justice Department to pause these se… https://t.co/PFZFleJCVY +06/20/2018,Politicians,@senorrinhatch,"The proper response to a crisis is not hasty legislating. While Hatch agrees with ideas in that bill, there are fl… https://t.co/FfVgnxfyQd" +06/20/2018,Politicians,@senorrinhatch,"RT @jendeben: Impressive fact sheet here from @senorrinhatch on the ""232 backlash"" and global retaliation for steel and aluminum tariffs ah…" +06/20/2018,Politicians,@senorrinhatch,"RT @ITI_TechTweets: The tech industry agrees with you, @senorrinhatch – we are also not a fan of tariffs and believe they are a mistake. Fr…" +06/20/2018,Politicians,@senorrinhatch,"RT @HMNorthey: .@senorrinhatch blasts Trump's steel, alum tariffs, says they're drying up contracts for steel companies, slowing chemical p…" +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman @senorrinhatch to @SecretaryRoss: “As you consider these tariffs, know that you are taxing American families, y…" +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: @SecretaryRoss Chairman @senorrinhatch: “These actions target our allies…with whom our trade in steel and aluminum produ… +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: HAPPENING NOW: The Finance Committee is convening a hearing to discuss new tariffs, quotas with @SecretaryRoss. Watch: h…" +06/20/2018,Politicians,@senorrinhatch,RT @MariannaNBCNews: Sen. Hatch & other senators sent a letter to AG Session yesterday asking him to halt separations like this until Congr… +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: @senorrinhatch @SecretaryRoss What is Section 232 of the Trade Expansion Act of 1962? Fast facts on steel and aluminum t… +06/20/2018,Politicians,@senorrinhatch,"RT @SenateMajLdr: I support, and all of the members of the Republican Conference support, a plan that keeps families together while their i…" +06/20/2018,Politicians,@senorrinhatch,RT @KSLAndrew: NEW: @senorrinhatch leads Utah delegation in calling for an end to the child separation policy being enforced. @KSL5TV #KSLA… +06/20/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: In addition to calling on the administration to halt family separations while Congress works on a legislative solution,…" +06/20/2018,Politicians,@senorrinhatch,RT @senorrinhatch: NEWS: Hatch @SenJohnMcCain @SenPatRoberts @SenatorCollins @lisamurkowski @SenBobCorker @SenAlexander @JohnBoozman @SenDe… +06/20/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: America is better than this inhumane, anti-family zero-tolerance policy. That's why Hatch and 12 other Republican Senato…" +06/20/2018,Politicians,@senorrinhatch,"“Tender age shelters” is a chilling phrase we will not soon forget. + +The child separation policy should be halted… https://t.co/3xE07l0esP" +06/20/2018,Politicians,@senorrinhatch,RT @senrobportman: Proud to join my colleagues in signing on to @senorrinhatch letter urging @TheJusticeDept to stop the practice of separa… +06/19/2018,Politicians,@senorrinhatch,"Perhaps one of the most important insights: ""Panicky lawmaking often produces absurd results."" + +All the more reaso… https://t.co/F2QkTHmPQR" +06/19/2018,Politicians,@senorrinhatch,Valuable deep-dive from @gabrielmalor-- Democrats’ Border Separation Bill Would Let Nearly All Parents Who Commit F… https://t.co/APEAht2m7e +06/19/2018,Politicians,@senorrinhatch,In addition to calling on the administration to halt family separations while Congress works on a legislative solut… https://t.co/BGiyz4ePVE +06/19/2018,Politicians,@senorrinhatch,RT @SenBobCorker: Joined @senorrinhatch and 11 of our colleagues today in calling on the Justice Department to halt family separations whil… +06/19/2018,Politicians,@senorrinhatch,RT @MicahTNDC: NEW: @SenBobCorker joins @senorrinhatch-led letter to Attorney General Sessions calling for a halt to the practice of separa… +06/19/2018,Politicians,@senorrinhatch,RT @SenatorLankford: I have joined 12 of my colleagues in calling on Attorney General Jeff Sessions & the Dept. of Justice to halt family s… +06/19/2018,Politicians,@senorrinhatch,"RT @edokeefe: JUST IN: @OrrinHatch sends letter to asking DOJ to stop separating immigrant families ""while Congress works out a solution.""…" +06/19/2018,Politicians,@senorrinhatch,"RT @DeseretNews: The letter concludes by saying @OrrinHatch and the 12 other @GOP senators who signed it ""believe a reasonable path forward…" +06/19/2018,Politicians,@senorrinhatch,"The final letter that went to AG Sessions, complete with signatures from @SenJohnMcCain @SenPatRoberts… https://t.co/rifmOqix9e" +06/19/2018,Politicians,@senorrinhatch,RT @KUTV2News: @senorrinhatch and 12 other #Republican senators have signed a letter to the Justice Department asking Jeff Sessions to halt… +06/19/2018,Politicians,@senorrinhatch,An interesting contrast from our focus on stopping these terrible separations as soon as possible.… https://t.co/TIDEnvfD2k +06/19/2018,Politicians,@senorrinhatch,"America is better than this inhumane, anti-family zero-tolerance policy. That's why Hatch and 12 other Republican S… https://t.co/lwLTvP0mgb" +06/19/2018,Politicians,@senorrinhatch,"RT @NBCNews: NEW: Sen. Hatch and 11 other Republican senators send letter to AG Sessions, calling on Justice Dept. ""to halt family separati…" +06/19/2018,Politicians,@senorrinhatch,@CoriAStevens Done. https://t.co/12Az53kxwO +06/19/2018,Politicians,@senorrinhatch,"RT @abc4utah: .@senorrinhatch, 12 senators call on Justice Dept. to stop family separations while Congress works on a solution: https://t.c…" +06/19/2018,Politicians,@senorrinhatch,RT @SenDeanHeller: I along with 11 of my colleagues today urged U.S. Attorney General Jeff Sessions to stop the practice of separating fami… +07/02/2018,Economists,@DeanBaker13,"RT @DeanBaker13: In honor of Timothy Geithner's good fortune, here's my review of his autobiography from a few years back https://t.co/iaB8…" +07/02/2018,Economists,@DeanBaker13,"RT @truthout: .@DeanBaker13: ""Trump’s trade war gives workers a great opportunity to undermine one of the main mechanisms through which inc…" +07/02/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Best response to Janus -- take away their intellectual ""property."" Without Microsoft's patents and copyrights, Bill Gates…" +07/02/2018,Economists,@DeanBaker13,thanks https://t.co/BDklo8B8fb +07/02/2018,Economists,@DeanBaker13,"In honor of Timothy Geithner's good fortune, here's my review of his autobiography from a few years back… https://t.co/ayDfILs5m9" +07/02/2018,Economists,@DeanBaker13,RT @ceprdc: Would you want your #paidleave policy to be written by Ivanka Trump? @AlanBdc explains better options: https://t.co/TAE8I3XEWf +07/02/2018,Economists,@DeanBaker13,"Best response to Janus -- take away their intellectual ""property."" Without Microsoft's patents and copyrights, Bill… https://t.co/OjVEy2GVxV" +07/02/2018,Economists,@DeanBaker13,"RT @DeanBaker13: In his autobiography Geithner rails against the ""old testament"" types who wanted to make the banks suffer. He then turns a…" +07/02/2018,Economists,@DeanBaker13,RT @DeanBaker13: The @washingtonpost is worried that in a tight labor market truckers' pay could rise back to its 1990 levels https://t.co/… +07/02/2018,Economists,@DeanBaker13,"right, and if you want to assess bubbles, look at inflation-adjusted numbers for house prices and price to earnings… https://t.co/du7TyUbKTL" +07/02/2018,Economists,@DeanBaker13,RT @janellecj: New @EconomicPolicy report on the huge and consistent Hispanic white wage gap is full of great/depressing figures like this.… +07/02/2018,Economists,@DeanBaker13,"@digirah No, most people aren't in great shape, it's just the NYT is missing the reason in the this editorial" +07/02/2018,Economists,@DeanBaker13,RT @DeanBaker13: NYT warns the country about non-existent debt crisis https://t.co/0PRiAQ7I1p +07/02/2018,Economists,@DeanBaker13,"Come on, Timothy Geithner has to make a living somehow https://t.co/SRPiY4M9fR" +07/02/2018,Economists,@DeanBaker13,RT @ArchieBradley7: People in Arizona my dog Crash a big black lab pictured below is missing!!!! he is chipped has shots and everything pl… +07/02/2018,Economists,@DeanBaker13,RT @ceprdc: Can Anything Bring CEO Pay Back Down to Earth? https://t.co/3fDNnCml95 +07/02/2018,Economists,@DeanBaker13,@mattyglesias I think it was Mexico's booming middle class due to NAFTA https://t.co/WIEbcwMRMi +07/02/2018,Economists,@DeanBaker13,RT @EileenAppelbaum: Read this to see the shameful way the firm run by Obama’s Treasury Secretary is making the richest among us even riche… +07/02/2018,Economists,@DeanBaker13,"In his autobiography Geithner rails against the ""old testament"" types who wanted to make the banks suffer. He then… https://t.co/LOSvBeo6KU" +07/02/2018,Economists,@DeanBaker13,RT @DeanBaker13: Good to see Timothy Geithner is doing well https://t.co/pTRGoy1gl8 I suppose Barack Obama is happy for his former Treasury… +07/02/2018,Economists,@DeanBaker13,NYT warns the country about non-existent debt crisis https://t.co/0PRiAQ7I1p +07/02/2018,Economists,@DeanBaker13,"there presumably would be somewhat less, but you mean Bill Gates would use all his money to feed himself if not for… https://t.co/YpgchlExZx" +07/02/2018,Economists,@DeanBaker13,@danoBdano @RdilipkCG @AlecMacGillis there'd no doubt the debt was a huge handicap +07/02/2018,Economists,@DeanBaker13,right -- he was only able to get the sale tax exemption for Amazon -- couldn't evade the income tax for his workers https://t.co/hy3dF1AqhR +07/02/2018,Economists,@DeanBaker13,"They are getting taxpayer subsidies -- that why we should care -- but if you juts want to give them your money, I d… https://t.co/us8rLWjFvC" +07/02/2018,Economists,@DeanBaker13,great time for another big @washingtonpost story on how NAFTA has led to a thriving middle class in Mexico… https://t.co/57Hm6U4x6N +07/02/2018,Economists,@DeanBaker13,"RT @hardindr: @APKeyton @yogawithcorrie @DeanBaker13 @gatesfoundation @CNBC @BillGates No, he did it through government enforced, copyright…" +07/02/2018,Economists,@DeanBaker13,"Right, workers in the U.S. pay taxes even if they work for Bill Gates -- most of them are probably not so incompete… https://t.co/jrHPu22zMc" +07/02/2018,Economists,@DeanBaker13,I'm sure @realDonaldTrump has warmly congratulated Obrador https://t.co/guncPxQAyC +07/02/2018,Economists,@DeanBaker13,RT @ceprdc: #AMLO has just won the presidential election in Mexico. Check out our live blog for the latest in the #MexicanElection. #Mexico… +07/02/2018,Economists,@DeanBaker13,"yeah, imagine that -- the Democrats are having this big civil war and none of the people we know were invited. Now… https://t.co/v48wobaIIG" +07/02/2018,Economists,@DeanBaker13,Good to see Timothy Geithner is doing well https://t.co/pTRGoy1gl8 I suppose Barack Obama is happy for his former Treasury Secretary +07/02/2018,Economists,@DeanBaker13,RT @janellecj: They definitely don’t deserve him. But you are not going to win a sports argument with a northeast Ohio fandom. Because we h… +07/01/2018,Economists,@DeanBaker13,RT @PolisWoke: @ARVRRob @DeanBaker13 @Noahpinion Stiglitz also thought TPP faulty having very little to do with actual trade. +07/01/2018,Economists,@DeanBaker13,"Come on, folks who aren't that competent have to be able to make money somehow. Isn't this why we have the governme… https://t.co/0rpZmjB6ex" +07/01/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Lots of reports of polling places opening late in various areas of Mexico State and Mexico City. Check @TheAmericasBlog liv… +07/01/2018,Economists,@DeanBaker13,"@RJS_1234 @paulkrugman hey, great minds think alike. Pretty funny we both said this." +07/01/2018,Economists,@DeanBaker13,"sure, as many have pointed out, truck driving is hard work -- long days, long periods away from family. And, it's d… https://t.co/8dGs6qGkrB" +07/01/2018,Economists,@DeanBaker13,"It actually is a fair chunk when you consider not just the CEO, but the excess pay for the top 20-30 execs. The sha… https://t.co/fEXHV5Wc8F" +07/01/2018,Economists,@DeanBaker13,"RT @ARVRRob: @Noahpinion @DeanBaker13 had some valid criticisms of TPP, nothing having to do with refugees as I recall. He was more concern…" +07/01/2018,Economists,@DeanBaker13,"@zapradon It may well be better to get labor, but it is pretty hard to make a coherent argument that shareholders s… https://t.co/wHUxXW4iIL" +07/01/2018,Economists,@DeanBaker13,"RT @gaviota330: WOODY NEEDS HERO! +ID#30517 +HE IS A VERY SWEET BOY! +#NYC ACC 2 KILL 7/2 +NYC ACC TOLD RESCUE OWNER WOULD PICK HIM UP +IT NEVER…" +07/01/2018,Economists,@DeanBaker13,RT @danpfeiffer: Finally a potential championship team that would be willing to visit Trump at the White House https://t.co/TMbNJJfoJi +07/01/2018,Economists,@DeanBaker13,"That would be good, but we have to make the directors, who most immediately set the pay in the first place, suffer… https://t.co/tHgohKzeAh" +07/01/2018,Economists,@DeanBaker13,"Prof Thaler, my thoughts on this issue are guided in part by work of a former professor, Barry Schwartz. He examine… https://t.co/tmPSVyOvBy" +07/01/2018,Economists,@DeanBaker13,"this piece may be helpful https://t.co/GItX8anOct We have tens of thousands of tiny corporations, The bib bucks are… https://t.co/yzBrg65b3G" +07/01/2018,Economists,@DeanBaker13,@washingtonpost is not the only news outlet owned by a billionaire that is terrified by the idea of truckers earnin… https://t.co/PZ8mCmzerb +07/01/2018,Economists,@DeanBaker13,"yes, well the Democrats could get a Nobel prize in political incompetence, but they could lose an election regardle… https://t.co/xWs4wHebXJ" +07/01/2018,Economists,@DeanBaker13,Probably the simplest would be a discussion of the 16.5% growth under the wimp Jimmy Carter in the second quarter o… https://t.co/StFu4PYPoW +07/01/2018,Economists,@DeanBaker13,"RT @LisaBrabson: PRECIOUS JOKER IS STILL WAITING FOR HIS FOREVER HOME! IF THIS LOVING LITTLE GUY DOESN'T MAKE U SMILE, NOTHING WILL! #ADOPT…" +07/01/2018,Economists,@DeanBaker13,@becks67 we're subsidizing Gates' outfit with a variety of tax privileges. If you want to know what we're subsidizing look on his website +07/01/2018,Economists,@DeanBaker13,"we need people who innovate, not people who violate anti-trust laws to make themselves rich. (we already have plent… https://t.co/opa69hD09v" +06/30/2018,Economists,@DeanBaker13,"@atrupar Right, and according to Rudy Giuliana, he is too busy golfing there is give testimony to Mueller" +06/30/2018,Economists,@DeanBaker13,RT @virginiarutter: #FamiliesBelongTogetherDC https://t.co/oXrRsphAOE +06/30/2018,Economists,@DeanBaker13,RT @Ballymagibbon: Roger Goodell made about $32 million in 2015 and the NFL is a tax exempt organization. https://t.co/S47b6A5CIM +06/30/2018,Economists,@DeanBaker13,"well, I'm a fan of having research in the public domain, but in a glance the implication is that Norway had been mu… https://t.co/64S6CQwgfs" +06/30/2018,Economists,@DeanBaker13,"@becks67 Fine, Gates can give them all the money he wants, I'm just asking why the taxpayers have to subsidize him" +06/30/2018,Economists,@DeanBaker13,@R_Thaler In principle foundations are engaged in activities to further the public good -- no pretense of that with… https://t.co/JltoTfgd7v +06/30/2018,Economists,@DeanBaker13,"In many cases, yes -- probably better they play with stocks and derivatives than obstruct the work of a major found… https://t.co/fpyXkDPNX8" +06/30/2018,Economists,@DeanBaker13,RT @jodiecongirl: @yogawithcorrie @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates *raises hand* how do I get put on this… +06/30/2018,Economists,@DeanBaker13,"RT @ceprdc: There is a fundamental flaw in the way that both Donald Trump and his critics generally talk about trade, writes @DeanBaker13.…" +06/30/2018,Economists,@DeanBaker13,"RT @yogawithcorrie: @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates I'm know really smart, educated, passionate women who…" +06/30/2018,Economists,@DeanBaker13,"so you think non-profit spending would go to zero without the tax subsidy? FWIW, the federal government has no prob… https://t.co/bBXR0DPpRs" +06/30/2018,Economists,@DeanBaker13,Thanks -- I don't take it personally. No two people will agree on everything https://t.co/pouzJZtTQX +06/30/2018,Economists,@DeanBaker13,here you go https://t.co/4gtfUObfKH https://t.co/bj4P9nKjQk +06/30/2018,Economists,@DeanBaker13,"yes, it would be great for the government to directly develop some drugs and then place them in public domain to be… https://t.co/qc6qOwIkW3" +06/30/2018,Economists,@DeanBaker13,"that's wonderful -- but if they can't get good help for less than $400k, then they can do their work without the ta… https://t.co/FMghY6DGCI" +06/30/2018,Economists,@DeanBaker13,"@APKeyton @gatesfoundation @BillGates @melindagates on the point on CEO pay, we do have an enormous problem of corr… https://t.co/Ut4yysR00T" +06/30/2018,Economists,@DeanBaker13,"So if taxpayers don't subsidize basketball (unfortunately we do), in your world we are ""discouraging"" basketball, w… https://t.co/NNCvMTq35L" +06/30/2018,Economists,@DeanBaker13,show your work. How have you determined that we get more from our subsidies to non-profits than if the government s… https://t.co/R7jHNiNxtl +06/30/2018,Economists,@DeanBaker13,"I know many outstanding people who do ""great things"" for much less than $400k. If the Gates Foundation can't find a… https://t.co/X9X6BHSZ0G" +06/30/2018,Economists,@DeanBaker13,@davidfrum @TheAtlantic Amazing how many pieces get published recycling the same bad argument about how the trade d… https://t.co/3OI7Mp8VKL +06/30/2018,Economists,@DeanBaker13,"fine, they can improve those https://t.co/KuWt38fkTJ" +06/30/2018,Economists,@DeanBaker13,"how about ""start"" wherever you can.Usually advice on starting points is about creating a stopping point. And in my… https://t.co/O5795ud9RT" +06/30/2018,Economists,@DeanBaker13,RT @01wise: @DeanBaker13 I look at the 990s and will not contribute to or work for a nonprofit that overpays its execs. +06/30/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Yes, and something that can be done at the state or local level. It would be great to see some charity pick and up move be…" +06/30/2018,Economists,@DeanBaker13,RT @tedhattemer: .@senrobportman Why the Tax Act Will Not Boost Investment: https://t.co/MUs8VagwTn @theprospect @DeanBaker13 +06/30/2018,Economists,@DeanBaker13,RT @nycsouthpaw: It’s not said often enough that there’s a broad spectrum of apparent wrongdoing by Trump and his family outside of the Ru… +06/30/2018,Economists,@DeanBaker13,@ClancyReports I'm sure that's an important credential to @realDonaldTrump. But Paul Ryan and Mitch McConnell say i… https://t.co/LrUJo445so +06/30/2018,Economists,@DeanBaker13,Funny how reporters don't seem to ask about this. https://t.co/rW9lAgwzxw +06/30/2018,Economists,@DeanBaker13,"RT @MilesGrant: The largest US trucking company, Knight-Swift, had a 2017 net income of $485M. Maybe they could afford to pay to train new…" +06/30/2018,Economists,@DeanBaker13,"RT @drlisadcook: Yes! Better 100 years late than never, US Senate. The Dyer Anti-Lynching Bill was introduced in 1918 and 1922. It was pass…" +06/30/2018,Economists,@DeanBaker13,"Maybe I'll recycle one of the old ones. @TheAtlantic can't afford to pay for original arguments, why should I both… https://t.co/0Jevhj19bL" +06/30/2018,Economists,@DeanBaker13,"Exactly, but the @washingtonpost is too busy focusing on how truckers might get a pay increase to pay attention to… https://t.co/iR8agAUZMT" +06/30/2018,Economists,@DeanBaker13,"Yes, and something that can be done at the state or local level. It would be great to see some charity pick and up… https://t.co/iFmtdjUD41" +06/30/2018,Economists,@DeanBaker13,RT @TAOWhiteboard: Of a part with the populism elsewhere. Difference is those disenfranchised in Mexico are pointing at the economic elite… +06/30/2018,Economists,@DeanBaker13,"RT @JimZarroli: @DeanBaker13 says ""there is zero evidence anywhere of an investment boom induced by the tax cut."" + +https://t.co/KKuOouqiRf" +06/30/2018,Economists,@DeanBaker13,RT @DeanBaker13: Six months in and reality TV show host @realDonaldTrump is still keeping the investment boom from his tax cut hidden https… +06/30/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Under the ""Baker Rule"" they lose tax exempt status if they pay the boss more than the president's $400k. If they can't fin…" +06/30/2018,Economists,@DeanBaker13,"Hey, they take their lead from the president. He didn't know there were more than two amendments. (And, he's not su… https://t.co/zw9hhJUBZx" +06/30/2018,Economists,@DeanBaker13,It's the sort of incredibly confused piece that makes you really really wish we had more open trade in professional… https://t.co/hEYsEgRqw4 +06/30/2018,Economists,@DeanBaker13,"RT @DavidCayJ: How about @DCReportMedia which has broken story after story. We’re nonprofit, no advertising, covering what Trump does, not…" +06/30/2018,Economists,@DeanBaker13,Six months in and reality TV show host @realDonaldTrump is still keeping the investment boom from his tax cut hidden https://t.co/iRJ7HuHFbV +06/30/2018,Economists,@DeanBaker13,As Mexico is about elect a left-wing populist in a landslide everyone is looking forward to another @washingtonpost… https://t.co/Ici35B8LK3 +06/30/2018,Economists,@DeanBaker13,The @washingtonpost is very upset that truckers might get higher pay -- maybe wages will even rise all the way back… https://t.co/jTIfuiqCb1 +06/30/2018,Economists,@DeanBaker13,That's what happens when you rig the system to give all the money to Bill Gates and Jeff Bezos https://t.co/es2oZg4PBn +06/30/2018,Economists,@DeanBaker13,"Under the ""Baker Rule"" they lose tax exempt status if they pay the boss more than the president's $400k. If they ca… https://t.co/Lpl2JV5UaV" +06/30/2018,Economists,@DeanBaker13,"It's not really down, its weak measured as a share of economy. It will take more demand growth to get more. Likely… https://t.co/uJKqa684Cv" +06/30/2018,Economists,@DeanBaker13,"@TheRunUp2020 Yes, trade is going to produce winners and losers in both countries. That's the standard economics. T… https://t.co/7pBJZqkBjS" +06/30/2018,Economists,@DeanBaker13,"RT @greenrya004: @marklemley It’s time for a different mechanism for financing innovation. What do you think, @DeanBaker13? + +https://t.co/S…" +06/30/2018,Economists,@DeanBaker13,"RT @NewYorker: In 2012, Israel approved 92% of medical permits for Gazans. But, since the beginning of 2018, with no announcement of a chan…" +06/30/2018,Economists,@DeanBaker13,RT @banditelli: This is the labor movement I signed up for https://t.co/AL99HduEPf +06/30/2018,Economists,@DeanBaker13,"@les_mos right, far more important than NAFTA" +06/30/2018,Economists,@DeanBaker13,RT @ryangrim: Good thread here. Moulton clearly has leadership aspirations... https://t.co/SaX4FRPfBn +06/30/2018,Economists,@DeanBaker13,RT @DeanBaker13: A pattern of lying about NAFTA and trade by elite news outlets like the @washingtonpost helped pave the way for demagogues… +06/30/2018,Economists,@DeanBaker13,We look at employment levels in manufacturing and note the sharp unprecedented fall in the years 2000-2007 that cor… https://t.co/3KAK4aQDE0 +06/30/2018,Economists,@DeanBaker13,"RT @SethHanlon: 4. Six months later, there is no sign of the enormous investment boom that tax cut proponents promised. + +--from “Why the Ta…" +06/30/2018,Economists,@DeanBaker13,Can't take credit on this one https://t.co/DfjN759D7u +06/30/2018,Economists,@DeanBaker13,"no, it isn't. You have to adjust for inflation https://t.co/uI3KnbRgf5" +06/29/2018,Economists,@DeanBaker13,RT @elvislevel: @mattyglesias @DeanBaker13 If they were having trouble finding CEOs offered salaries would be infinity by now. +06/29/2018,Economists,@DeanBaker13,"This is an important corrective to the idea that somehow Mexico ""won"" with NAFTA. Rich people in both countries won… https://t.co/GDJ5Mrj9P9" +06/29/2018,Economists,@DeanBaker13,"RT @SlateUnion: 1/ After weeks of bargaining, we’re proud to say we’ve made progress with management on many key issues. We’re also, frankl…" +06/29/2018,Economists,@DeanBaker13,"RT @mattyglesias: Some useful context on the truck driver shortage from @DeanBaker13 who notes that despite a decade of rising pay, the sec…" +06/29/2018,Economists,@DeanBaker13,RT @ceprdc: Really? Wapo claims: America’s severe trucker shortage could undermine the prosperous economy. @DeanBaker13 replies: the real h… +06/29/2018,Economists,@DeanBaker13,Thanks Jim https://t.co/c2Mt0ZQDeN +06/29/2018,Economists,@DeanBaker13,It's not always easy in Washington to be able to tell which way is up. https://t.co/gL1FXtZ0xm +06/29/2018,Economists,@DeanBaker13,RT @LoganMohtashami: @DeanBaker13 https://t.co/1St2eSALlW +06/29/2018,Economists,@DeanBaker13,arguably the late 1990s. The point is that when labor markets get tight companies have incentive to economize on la… https://t.co/wflVYsB307 +06/29/2018,Economists,@DeanBaker13,"@S_G_Alexander @washingtonpost @realDonaldTrump My guess is they are ill-informed, but they like the conclusion of… https://t.co/WNIyZpT3lG" +06/29/2018,Economists,@DeanBaker13,"Yes, it often does. If people get more unnecessary tests and procedures or ineffective drugs that would increase me… https://t.co/I3C061sOAB" +06/29/2018,Economists,@DeanBaker13,RT @DeanBaker13: With a left-wing candidate about to be elected president in Mexico isn't time for the @washingtonpost to have another piec… +06/29/2018,Economists,@DeanBaker13,"RT @jamieson: Oh no, exploited truckers might get raises. cc @DeanBaker13 https://t.co/YHuJtM0pbe" +06/29/2018,Economists,@DeanBaker13,"I didn't say ""flat,"" we have had unusually SLOW productivity growth over the last 12 years. It was much more rapid… https://t.co/NAl47de9Xa" +06/29/2018,Economists,@DeanBaker13,RT @DavidCayJ: Larry is either lying or being willfully blind so Donald keeps him. Deficit is exploding as @DCReportMedia showed this week.… +06/29/2018,Economists,@DeanBaker13,A pattern of lying about NAFTA and trade by elite news outlets like the @washingtonpost helped pave the way for dem… https://t.co/GoWpT434ms +06/29/2018,Economists,@DeanBaker13,The @washingtonpost is worried that in a tight labor market truckers' pay could rise back to its 1990 levels https://t.co/QWcUysxqx5 +06/29/2018,Economists,@DeanBaker13,RT @DeanBaker13: it would interesting to see if the NYT or WaPo would allow a columnist to so badly misrepresent data in a way that reflect… +06/29/2018,Economists,@DeanBaker13,"I think demand is a big factor, but that is not the standard view among economists. https://t.co/oA7LydhUay" +06/29/2018,Economists,@DeanBaker13,The @washingtonpost is really really concerned that truckers might get more money due to the market. They don't hav… https://t.co/AIpFJ6hArv +06/29/2018,Economists,@DeanBaker13,I have no idea what you think you're saying. You're arguing that productivity growth will be zero going forward? St… https://t.co/Hjpv1yGfx5 +06/29/2018,Economists,@DeanBaker13,of course given the protections that drive up prices (e.g. patent monopolies and licensing restrictions that limite… https://t.co/3Yy6VVC9Vx +06/29/2018,Economists,@DeanBaker13,"they was a fall in 2008-09 due to the recession, since then shares haven't changed much https://t.co/PTTc7kC0yj" +06/29/2018,Economists,@DeanBaker13,"actually, we don't see much automation -- productivity growth has been very slow in the last decade. That has in fa… https://t.co/YlXtSumVaE" +06/29/2018,Economists,@DeanBaker13,RT @ryangrim: This is horrifying. Tweet found by Nathan Kosted: https://t.co/DRziZtOzIs https://t.co/UvkVc1N8Jc +06/29/2018,Economists,@DeanBaker13,"comment, they just have to adopt the name everyone else uses for them, ""No Way"" https://t.co/WkrZvEktH2" +06/29/2018,Economists,@DeanBaker13,RT @FAIRmediawatch: The reason millions of manufacturing workers lost their jobs in the first decade of the 21st century was decisions on… +06/29/2018,Economists,@DeanBaker13,"@Asif_H_Abdullah cool, sounds like a way to boost productivity growth. Hope you're right" +06/28/2018,Economists,@DeanBaker13,"@CCMarimba I have seen work years ago, but can't think of it offhand. My guess is that China is an important part… https://t.co/0B2APY79Lp" +06/28/2018,Economists,@DeanBaker13,it would interesting to see if the NYT or WaPo would allow a columnist to so badly misrepresent data in a way that… https://t.co/67pKpg6sjg +06/28/2018,Economists,@DeanBaker13,"sorry, meant to say 2004 -- longest period of zero growth on his graph https://t.co/W5Z8CT41ZF" +06/28/2018,Economists,@DeanBaker13,"@KarenRylander BLS has it here -- have to do some clicking through, but should be straightforward https://t.co/tNWiWeLNhb" +06/28/2018,Economists,@DeanBaker13,"@washingtonpost has yet another hysterical piece about the trucker shortage. Who are you going to believe, the truc… https://t.co/CofLlExSkh" +06/28/2018,Economists,@DeanBaker13,"yeah, the 2007 level is below the 2000 level -- this is the China trade effect https://t.co/e5efMad5Tc" +06/28/2018,Economists,@DeanBaker13,"There is a huge plunge in actual manufacturing employment levels, which is why people who are trying to deny the ef… https://t.co/fabP1ReIlY" +06/28/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Check out @TheAmericasBlog throughout the day Sunday for ongoing updates on the #MexicanElection #EleccionesMexico from obs… +06/28/2018,Economists,@DeanBaker13,"RT @MarkWeisbrot: It's not surprising that when the Trump administration fights with China, it fights for the owners of intellectual proper…" +06/28/2018,Economists,@DeanBaker13,@KarenRylander @FAIRmediawatch NAFTA didn't have much impact on overall manufacturing employment. although China di… https://t.co/1q1ENOLALT +06/28/2018,Economists,@DeanBaker13,"They obviously misspoke, they meant to say that Third Way means nothing for the future of the Democratic Party https://t.co/nuZde9CN92" +06/28/2018,Economists,@DeanBaker13,RT @FAIRmediawatch: Soaring Cost of Clues Leaves Thomas Friedman Apparently Unable to Buy One https://t.co/ABlVTJ4S0P https://t.co/Oz3xMloi… +06/28/2018,Economists,@DeanBaker13,RT @ceprdc: Want to Boost the Economy? Give mothers and others #PaidLeave #WeEarnedIt https://t.co/T79k0Zw731 +06/28/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Holy cow - wait until @realDonaldTrump sees the size of those crowds! Would be interesting to put them side by side with pi… +06/28/2018,Economists,@DeanBaker13,"RT @ceprdc: Got investment boom? We got new data on capital goods orders yesterday and the data disagree, says @DeanBaker13. No boom means…" +06/28/2018,Economists,@DeanBaker13,"RT @hardindr: @Dan_Beeton @DeanBaker13 I wrote to the #WaPo’s editorial staff about the claim, asking for a clarification/correction, they…" +06/28/2018,Economists,@DeanBaker13,"good piece, I keep hoping that one day we get a billionaire who cares about public health who can buy up rights to… https://t.co/5QT75Kx4Fn" +06/28/2018,Economists,@DeanBaker13,@pdacosta Just think when @realDonaldTrump is in prison he will be amazed to discover that everyone there is innoce… https://t.co/zdFRmxWTvW +06/28/2018,Economists,@DeanBaker13,RT @JakobJohnston: It's been nine years since the Honduran president was seized while still in his pajamas and exiled from the country. The… +06/28/2018,Economists,@DeanBaker13,RT @joshbivens_DC: The Janus decision is a far scarier portent about the 'future of work' than any article you've read about advances in AI… +06/28/2018,Economists,@DeanBaker13,"RT @Dan_Beeton: ""The Post even went full Trump back in 2007 when it made up the absurd claim that #NAFTA had led Mexico's economy to quadru…" +06/28/2018,Economists,@DeanBaker13,RT @LandisWeaver: The link between overpaid directors & overpaid CEOs needs to be more fully explored. Seems to me that just collegial huma… +06/28/2018,Economists,@DeanBaker13,RT @AlanBdc: We sometimes confuse the difference between a campaign and a movement. Campaigns come and go but movements are built to last a… +06/28/2018,Economists,@DeanBaker13,As Mexico prepared to elect a left-wing president isn't time for another @washingtonpost article telling us how NAF… https://t.co/rCU2SLPWVG +06/28/2018,Economists,@DeanBaker13,RT @DeanBaker13: The NYT tells us about the suffering of Denver area employers who depend on cheap foreign labor https://t.co/BCNGmqrrK8 +06/28/2018,Economists,@DeanBaker13,RT @DeanBaker13: More data confirms the Trump tax cut induced investment boom https://t.co/nggZBLz9GZ (kidding of course -- I don't take dr… +06/28/2018,Economists,@DeanBaker13,"@WWouldJakeDo I'm proposing different rules that would give shareholders more control. It's in Rigged, chapter 6 https://t.co/HfhMSp00XT" +06/28/2018,Economists,@DeanBaker13,actually the government does set rules on corporate governance -- sorry to inform you -- so it's not just a private… https://t.co/KOQ59AujqD +06/28/2018,Economists,@DeanBaker13,"RT @wiumlie: «The large ""404"" error message on the front page of the Norwegian website https://t.co/tDkc9LyPX8 looks a lot like an ""SOS"" si…" +06/28/2018,Economists,@DeanBaker13,@powellnyt It's probably happening in his head. There's plenty of room there. +06/28/2018,Economists,@DeanBaker13,exactly -- what aren't conservatives more worried about the corruption of corporate governance? https://t.co/q12s3Pz0R4 +06/28/2018,Economists,@DeanBaker13,RT @shawnsebastian: Among the topics covered will be recent research by @DeanBaker13 showing that unprecedented rises in housing costs are… +06/28/2018,Economists,@DeanBaker13,"yes, higher prices today are definitely being driven by market fundamentals, in contrast to the run-up in house pri… https://t.co/vPJyt1Rfpu" +06/28/2018,Economists,@DeanBaker13,With a left-wing candidate about to be elected president in Mexico isn't time for the @washingtonpost to have anoth… https://t.co/K75fGdE7VU +06/28/2018,Economists,@DeanBaker13,"I think they are really worried the unemployment rate is too low. If that is the only variable you look at, it is c… https://t.co/BdYOhQUPPm" +06/28/2018,Economists,@DeanBaker13,@washingtonpost columnist Dana Milbank doesn't know that bankers don't give campaign contributions to politicians w… https://t.co/brNaHFtfiB +06/28/2018,Economists,@DeanBaker13,More data confirms the Trump tax cut induced investment boom https://t.co/nggZBLz9GZ (kidding of course -- I don't take drugs) +06/28/2018,Economists,@DeanBaker13,"RT @nywolforg: This is what an American icon looks like. +And she's facing extinction at the hands of the government. https://t.co/LpyOpt…" +06/28/2018,Economists,@DeanBaker13,The NYT tells us about the suffering of Denver area employers who depend on cheap foreign labor https://t.co/BCNGmqrrK8 +06/28/2018,Economists,@DeanBaker13,"It is one way, there are other ways to pay people https://t.co/NmQpUWPaL9" +06/28/2018,Economists,@DeanBaker13,"actually, I would leave copyright -- just fund stuff in the public domain. My guess is no one would then give a pen… https://t.co/Cz5ptIyCZc" +06/28/2018,Economists,@DeanBaker13,"@DonaldJTrumpJr @realDonaldTrump If you had just stopped at ""I don't think,"" you might actually have been telling the truth." +06/28/2018,Economists,@DeanBaker13,"@AusTaxProf @JohnQuiggin And childcare, like education more generally, should be publicly supported. Goods prospect… https://t.co/kEbtHpktiE" +06/28/2018,Economists,@DeanBaker13,@AusTaxProf @JohnQuiggin I think there are certainly cases where we need to bring back some anti-trust power. Faceb… https://t.co/Cji4rU0tsD +06/28/2018,Economists,@DeanBaker13,@ComradeVeidt @danielhahn02 @Hagahoonda It's not especially about begging. Try rereading it. +06/28/2018,Economists,@DeanBaker13,@Soc_of_Authors @ALCS_UK @PhilipPullman @danielhahn02 @WomackPhilip @nicolamorgan @MARYMHOFFMAN @lucindahawksley… https://t.co/erF9RVziAM +06/27/2018,Economists,@DeanBaker13,"RT @lydiadepillis: Texas business interests don't really want E-verify. Along with social issues like transgender bathrooms, it's one of th…" +06/27/2018,Economists,@DeanBaker13,Thanks Julie -- we'll get the bastards! https://t.co/sTTXCucZ11 +06/27/2018,Economists,@DeanBaker13,RT @reftpt: ⁦@DeanBaker13⁩ https://t.co/C1EmV9RYou +06/27/2018,Economists,@DeanBaker13,"RT @ceprdc: Using the wrong measure of inflation could result in the #Fed raising interest rates prematurely, needlessly keeping people out…" +06/27/2018,Economists,@DeanBaker13,RT @DeanBaker13: Thomas Friedman is badly confused again. No one told him the about the explosion of the trade deficit in the last decade s… +06/27/2018,Economists,@DeanBaker13,RT @ananavarro: I really don’t care. Do you? https://t.co/3v3fM7XD3v +06/27/2018,Economists,@DeanBaker13,Apparently no one told Justice Alito that in this country workers are free to work for another employer. That is wh… https://t.co/qQvMo5LOCh +06/27/2018,Economists,@DeanBaker13,"well, with management like EPI's, they need a union! :) https://t.co/STQIXJiBxY" +06/27/2018,Economists,@DeanBaker13,"RT @ceprdc: ""You have this commitment to what the IMF and the government call fiscal consolidation. So when the economy begins to grow...th…" +06/27/2018,Economists,@DeanBaker13,RT @DeanBaker13: The @washingtonpost doesn't want to talk (honestly) about the federal debt https://t.co/KVeFNJtBRG +06/27/2018,Economists,@DeanBaker13,RT @drbwhit23: @DeanBaker13 @washingtonpost As a nobody every day citizen with pretty much zero power I’m asking that you post this link ev… +06/27/2018,Economists,@DeanBaker13,thanks https://t.co/p4jWa1OjZR +06/27/2018,Economists,@DeanBaker13,"RT @lydiadepillis: If you take out housing costs, @DeanBaker13 points out, the economy looks a lot cooler than the overall inflation rate s…" +06/27/2018,Economists,@DeanBaker13,@JohnQuiggin how about my book Rigged https://t.co/HfhMSp00XT +06/27/2018,Economists,@DeanBaker13,thanks -- I look forward to seeing it https://t.co/QKlncSpBVc +06/27/2018,Economists,@DeanBaker13,"Fine with the plug, also a big Hacker fan, but FWIW, I was making this distinction (without the terms) long before… https://t.co/bD4WRnl2Ll" +06/27/2018,Economists,@DeanBaker13,The @washingtonpost doesn't want to talk (honestly) about the federal debt https://t.co/KVeFNJtBRG +07/02/2018,Economists,@econjared,@greg70607 Thanks much and I hope I'm wrong and you're right about that! +07/02/2018,Economists,@econjared,"YOYOs, WITTs and Socialists. How ""you're-on-your-own"" is beating ""we're-in-this-together"" and why that must change.… https://t.co/XqqjndIYaf" +06/29/2018,Economists,@econjared,"Not to get all maths, but he’s right: it is coming down rapidly, as in bigger negative numbers. https://t.co/UyNYM6vRXm" +06/29/2018,Economists,@econjared,"Q: How do you spend $2 trillion on a tax cut and still get only about a third to approve of it? +A: Tilt it towards… https://t.co/COy5U4BZyU" +06/29/2018,Economists,@econjared,@EconDerek @GagnonMacro @greg_ip I think one of the more important recent developments in inflation watching is Cha… https://t.co/s4VwKOKyR1 +06/28/2018,Economists,@econjared,"RT @EconomicPolicy: Tonight, tune in as @TheaLeeEPI and @EconJared debate the impact of globalization with @jasonfurman and James Manyika o…" +06/28/2018,Economists,@econjared,"Third, even as we close in on full employment, the US economy faces two big challenges: we need revenues to support… https://t.co/QfOTF2eJKj" +06/28/2018,Economists,@econjared,"Second, the tax share of profits often falls steeply in downturns (shaded parts). But this time, it’s the tax cuts;… https://t.co/lMBlyWZc6Y" +06/28/2018,Economists,@econjared,"The figure below shows corporate taxes paid as a share of corporate profits, from this AMs GDP report. The figure h… https://t.co/QF1oqMsDr4" +06/27/2018,Economists,@econjared,"@rooseveltinst A8 3/3 Again, I’m well-aware this is old-school—I suspect I’m the elderly-est person on this chat! B… https://t.co/r19PE9474Y" +06/27/2018,Economists,@econjared,@rooseveltinst A8 2/3 …prevent a workers’ party from forming by a) convincing working-class people that their diffe… https://t.co/a1IihCqHdG +06/27/2018,Economists,@econjared,@rooseveltinst A8 1/3 We really need some sort of workers’ party that unites people who depend on their paychecks a… https://t.co/oOC4oZsU3v +06/27/2018,Economists,@econjared,"@rooseveltinst A7 2/2 Also, upward redistribution through government policies (trickle-down tax cuts, patents, occu… https://t.co/p5xbhyc77u" +06/27/2018,Economists,@econjared,@rooseveltinst A7 1/2 This is really asking: what are the factors behind the growth of wage inequality? The decline… https://t.co/PWjdA7KiZY +06/27/2018,Economists,@econjared,"@rooseveltinst @MarkVinPaul Given that @MarkVinPaul Paul's right here, and he just released this great paper on thi… https://t.co/vloX0l7Y7m" +06/27/2018,Economists,@econjared,@rooseveltinst A4 3/3 I recognize that I’m dealing with an old problem—how to raise workers’ bargaining clout—one f… https://t.co/PQQzBxaF66 +06/27/2018,Economists,@econjared,"@rooseveltinst A4 2/3 Once you accept that context, it leads you to issues of job quality, wage policies (min wg, O… https://t.co/4eguV4nhVm" +06/27/2018,Economists,@econjared,"@rooseveltinst A4 1/3 Not sure I'd put it this way. It’s a bit like asking “how can this desk, or this new drill pr… https://t.co/hMWnFBiCwW" +06/27/2018,Economists,@econjared,"@rooseveltinst A3 2/2: Today's SCOTUS decision on the Janus case, which strikes a potentially severe blow to public… https://t.co/DVjEHbHIuB" +06/27/2018,Economists,@econjared,"@rooseveltinst A3 1/2: The list is long, but it largely reduces to employers’ bargaining clout has long surpassed t… https://t.co/hbmPK3IGWh" +06/27/2018,Economists,@econjared,"@rooseveltinst A2: I view tech change as a pretty constant force, so not sure I see much “rise” against the baselin… https://t.co/Pkmbc9lSsG" +06/27/2018,Economists,@econjared,"@rooseveltinst A1 4/4: Thus, we should spend less time arguing about the unknowable, and implement policies to deal… https://t.co/BoYSgy0942" +06/27/2018,Economists,@econjared,"@rooseveltinst A1: 3/4 After all, thanks to tech advances, the American job market went from 90% agriculture to und… https://t.co/Ge5eLLsjyb" +06/27/2018,Economists,@econjared,"@rooseveltinst 2/4: Right now, we have more of a job quality problem than a job quantity problem. Of course, many o… https://t.co/YA50h2Na7w" +06/27/2018,Economists,@econjared,"@rooseveltinst A1 (1/4) As we’re closing in on full employment, it’s hard to the make the case that the pace at whi… https://t.co/pHSk8B9VWV" +06/27/2018,Economists,@econjared,RT @rooseveltinst: Welcome to today’s chat about the #futureofwork and #automation. We are joined by @MarkVinPaul @BrishenRogers @rakeen_ma… +06/27/2018,Economists,@econjared,One of the most potent forces promoting inequality/wg stagnation is weak worker bargaining clout. With SCOTUS Janus… https://t.co/REUGbeCzwv +06/23/2018,Economists,@econjared,Zz +06/22/2018,Economists,@econjared,"@PIIE All solid, germane points. But what about currency/exchange rates? Do you not view that (yuan/$ depreciation)… https://t.co/bOV9UYR3Zd" +06/22/2018,Economists,@econjared,"Must read by @paulwaldman1 on how the Trump/Mulvaney plan to merge agencies is just the latest eg of ""weaponizing b… https://t.co/Qg4L2R1Ax4" +06/20/2018,Economists,@econjared,If you slog through some interesting wonkiness on international finance https://t.co/diUnjNvoEP your reward is some… https://t.co/OEKuZ000gv +06/20/2018,Economists,@econjared,@MichaelSLinden Trend-rider Trump: https://t.co/7zEp5D0Pbj https://t.co/bg6JE1GsBV +06/20/2018,Economists,@econjared,Tight labor market is one reason disability rolls are down and unemp rate for disabled workers is at all time low o… https://t.co/2qNeEWuAFv +06/20/2018,Economists,@econjared,The tragedy at the border is strong evidence that we have the least representative government of the modern era. Th… https://t.co/vnmXmSaVbl +06/19/2018,Economists,@econjared,"I've studied trade policy for decades, but only now do I realize I've ignored this issue of scuffed up, old soundin… https://t.co/V2Yn0ePuH9" +06/19/2018,Economists,@econjared,There must be something that's more fun that sitting around & talking tariffs with @CardiffGarcia and @svaneksmith.… https://t.co/j82m23ZGIN +06/19/2018,Economists,@econjared,"Re-posting our take on Initiative 77. Essential to be guided by the facts, most importantly, results from the other… https://t.co/mTXnsfowpL" +06/18/2018,Economists,@econjared,"It is increasingly clear that ""family values, fiscal rectitude, and free trade"" have served as a highly effective R… https://t.co/ZdSCDQt1Qv" +06/18/2018,Economists,@econjared,"I don't believe the ""natural"" rate of unemployment can be reliably pinned down at 4.5%. But so what? The fact that… https://t.co/UsYxm9Oq4d" +06/15/2018,Economists,@econjared,@BenRossTransit Stronger dollar and big fiscal stimulus at low unemployment very likely to raise trade deficit. Tar… https://t.co/3GXlNrtksU +06/15/2018,Economists,@econjared,2) What would help? As per @DeanBaker13 and I: Use benefits of trade to directly help those hurt by it; stop protec… https://t.co/0EhQD7Z8Wy +06/15/2018,Economists,@econjared,1) Context important when throwing around billions in trade talk. Trump's $50 billion tariffs on China <2% of impor… https://t.co/ZMZKbdOEem +06/14/2018,Economists,@econjared,"Fellow Fed watchers: Since the FOMC prefers to alter rates in meetings followed by news conferences, there's a view… https://t.co/covytYOWV1" +06/14/2018,Economists,@econjared,"@mattyglesias Fiscal stimulus fades, rate hikes, and supply constraints. + +But IMHO, a better question is: unless 3… https://t.co/6ElJimJzRL" +06/14/2018,Economists,@econjared,@LukeGromen Nice reference! More recent version: https://t.co/LY7MEWIBfG +06/14/2018,Economists,@econjared,"6/6) What’s the solution? More collective bargaining, for sure; better labor standards, strongly enforced; pushback… https://t.co/O7H0s5rNJG" +06/14/2018,Economists,@econjared,"5) One bit of evidence for this hypothesis (and I’ve got more, forthcoming) is the flat trend in unit labor costs i… https://t.co/2sNafGXyGv" +06/14/2018,Economists,@econjared,"4) But how can they win that fight at such low unemployment? First, wages are picking up a bit, so it’s not a total… https://t.co/0QoNwBgfE4" +06/14/2018,Economists,@econjared,"3) But at lower productivity, firms—increasingly empowered by concentration/monopsony (employer power), diminished… https://t.co/RYnr3JlBYU" +06/14/2018,Economists,@econjared,"2) With higher productivity growth, firms facing tight labor markets are more willing to raise pay because they can… https://t.co/4u7r5xJmnw" +06/14/2018,Economists,@econjared,1) I think the slow-wage-growth puzzle (to use Chair Powell's framing) is a function of weak worker bargaining powe… https://t.co/hRuxWkfTHx +06/13/2018,Economists,@econjared,@maxbsawicky @jimtankersley Now ya see that just makes me want to fly off the handle! +06/13/2018,Economists,@econjared,"5) In other words, the Fed believes, and I think they're right, that the tax cuts will have temporary Keynes effect… https://t.co/ic9gVQCS3d" +06/13/2018,Economists,@econjared,"4) Reflecting all of these empirical and theoretical caveats, the Fed Committee itself appears to wholly discount t… https://t.co/blgyZxZ0Fd" +06/13/2018,Economists,@econjared,"3) Much more important, the evidence shows no historical correlations between tax cuts and productivity growth. Man… https://t.co/mX7G9W1xWp" +06/13/2018,Economists,@econjared,"2b) Theory also suggests deficit-financed tax cuts are much less likely to generate supply-side impacts, and this t… https://t.co/9usstTbhQY" +06/13/2018,Economists,@econjared,"2) On theory, he cited only substitution effects (lower tax cuts, more labor supply, capex). Income effects push th… https://t.co/bd6qDF1ojP" +06/13/2018,Economists,@econjared,"1) When @jimtankersley asked Fed Chair Powell about the impact of the tax cut on growth, I thought Powell leaned fu… https://t.co/ryMcIdS8af" +06/13/2018,Economists,@econjared,"@_N0TCH_ Also, rates that are very low for very long hurt those who depend on fixed incomes." +06/13/2018,Economists,@econjared,"@_N0TCH_ Great question. See my paragraph re the Fed's rationales: worries about overheating and ""normalization."" G… https://t.co/NkJxCM5B4l" +06/13/2018,Economists,@econjared,"2) Here's an interesting factoid from my Fed piece: Historically, when the unemp rate has been between 3.5-4%, the… https://t.co/MbFsg9ULb2" +06/13/2018,Economists,@econjared,1) The Fed is highly likely to raise its benchmark interest rate this afternoon. But should they? I explain their r… https://t.co/OdDyONka3m +06/12/2018,Economists,@econjared,"@DeanBaker13 Fair point: there's a case for keying off of the 2nd derivative, not the 1st. Still, stronger case is… https://t.co/XarBgUrQ2F" +06/12/2018,Economists,@econjared,"@aaronsojourner You'd have to ask the other Jared. I'm ""Jared the good...""" +06/12/2018,Economists,@econjared,"According to BLS release this AM, real hourly pay of mid-class workers up 0.4% since Trump took office, and extra d… https://t.co/sldnkTlXl4" +06/11/2018,Economists,@econjared,"Thanks! Of course, books like this one are essential to sorting this stuff out: https://t.co/xGz9xlRenn https://t.co/ttVhG7wq9D" +06/11/2018,Economists,@econjared,@Noahpinion I’ll definitely read your piece but I think we should not conflate Atlanta wg tracker w median wage gro… https://t.co/tbFnYBZe2t +06/11/2018,Economists,@econjared,To my musical friends: Clearly the only positive resolution to the chaotic G7 summit is C major. Unless it's the G-… https://t.co/tewVEXVCJs +06/11/2018,Economists,@econjared,"If you're just coming back online, trying to make sense out of that crazy G7 meeting, here's my explanation of the… https://t.co/I1zJBtzLFp" +06/11/2018,Economists,@econjared,"That great Trump economy? He's mostly riding trends he inherited. +https://t.co/XCEUVjMgup https://t.co/PwE0PBhQ7K" +06/10/2018,Economists,@econjared,@bugg_wayne Good question...it's like the Manchurian Candidate. +06/10/2018,Economists,@econjared,"Trump at the G7? What could go wrong? +A great deal, apparently. Here's a Q&A to try to clarify all the cray-cray o… https://t.co/zmKy1P0Elt" +06/08/2018,Economists,@econjared,I don’t begrudge team Trump their groundless bragging on the econ trends they inherited. That’s standard practice.… https://t.co/WYFXxz7udI +06/08/2018,Economists,@econjared,"@TimDuy (You mean 'run ON' deficits. Which matters here!) + +I'm 94.3% with you, but critical to also point out that… https://t.co/AXDO5KEBAB" +06/07/2018,Economists,@econjared,"The argument that robots/AI/etc are increasingly displacing workers implies faster productivity growth, especially… https://t.co/LZThQHf90R" +06/07/2018,Economists,@econjared,In contemplating the fact that the Medicare's finances have been unquestionably damaged by Trump/R policies (tax cu… https://t.co/HPl2hBPEpy +06/06/2018,Economists,@econjared,"@JimPethokoukis @PoliticalHut @CNBC Also, tariffs + retaliation = less imports *and* less exports, which doesn't im… https://t.co/3ZG6IZyE1j" +06/06/2018,Economists,@econjared,"The message from the Social Security and Medicare trustees is simple: preserving these essential, efficient, popula… https://t.co/aEMLSNWYzJ" +06/05/2018,Economists,@econjared,"@GagnonMacro Thnx for the update. But In the figure on the left, why does the 'emp gap' (u-u*) appear to be zero in… https://t.co/laAcHiuEFY" +06/05/2018,Economists,@econjared,Dean's right. It's easy to find dishonest writers who will fabricate nonsense like this. The guilty party here is t… https://t.co/j8PMQgTMP4 +06/04/2018,Economists,@econjared,@VA11independent Good point/analogy (re FTT and carbon tax)! https://t.co/xVM9m01vCs +06/04/2018,Economists,@econjared,Do not go gently into financial deregulation! How we got to where we are and what to do to pushback:… https://t.co/0dO6kj74t9 +06/01/2018,Economists,@econjared,Three ways in which our solid labor market recovery could go south: https://t.co/nNc2zlMzaX +06/01/2018,Economists,@econjared,Trump’s rhetoric on trade has been bloviation without action. Given my well-honed skepticism about his willingness… https://t.co/mLCcoJpac3 +06/01/2018,Economists,@econjared,"2) Barring price shock (unlikely), I don't foresee a Fed mistake. Given relatively low US exposure (imports 15% of… https://t.co/fREx3ViMek" +06/01/2018,Economists,@econjared,"1) The trend is our friend in the job market (a trend that pre-dated the orange one, ftr). But what could whack the… https://t.co/qY4CNsyocQ" +06/01/2018,Economists,@econjared,"Here's my take on the solid jobs report. Punchline: In an economy with little union power, tremendous finance power… https://t.co/4wXun9nXxK" +06/01/2018,Economists,@econjared,"Another strong jobs report! Unemp down to 3.8% (and, at 3.75, just missed 3.7); black unemp to all time low of 5.9%… https://t.co/NkUQDxV1BI" +06/01/2018,Economists,@econjared,"@NickTimiraos @RichardRubinDC Radical idea: since imho markets overreact to these noisy numbers, maybe they should… https://t.co/FozPKHPoVZ" +06/01/2018,Economists,@econjared,"@NickTimiraos @RichardRubinDC Has he tweeted this before? If not, look for upside surprise." +06/01/2018,Economists,@econjared,"RT @damianpaletta: Obama was briefed on the jobs numbers the night before, so Trump might have been too... https://t.co/M8PaXsHnhg" +05/31/2018,Economists,@econjared,"Wow! @eliselgould & @metaCoop new ""7 facts"" paper about the benefits of eliminating sub-min wgs is incredibly muscu… https://t.co/fUboN3BLY8" +05/31/2018,Economists,@econjared,@EamonJavers Sec’y Ross kept saying US GDP is $18 trillion. It’s $20 trillion based on numbers from...the Commerce… https://t.co/BCeP9zhcx3 +05/31/2018,Economists,@econjared,DC's Initiative 77 gets rid of the sub-minimum wage. It's an important way to raise pay and reduce harassment of lo… https://t.co/9kph0ZKJjq +05/30/2018,Economists,@econjared,@jaketapper @PressSec The admin needs some time to decide if their plan is “thoughts AND prayers” or “thoughts OR prayers.” +05/30/2018,Economists,@econjared,"Just now from NYT: ""Big banks are getting a big reprieve from a post-crisis rule aimed at curbing risky behavior on… https://t.co/GS1dkNzbiI" +05/30/2018,Economists,@econjared,"Qrtly data noisy, but note figure: 2018Q1 pretax corporate prof growth, <5%, yr/yr. But huge decline in corp taxes… https://t.co/yz8A9dCnRy" +05/29/2018,Economists,@econjared,"""Hard choices,"" crowd-out, debt thresholds...our stagnant fiscal debate is mired in a confusing fog. I argue that i… https://t.co/K73LxBR94q" +05/24/2018,Economists,@econjared,@SephorahMangin Wait--the Witt-ster wasn't talking about economists' inability to identify the natural rate within… https://t.co/X7S04mQu5J +05/24/2018,Economists,@econjared,It's going to take an unemployment rate that's even lower for even longer to generate faster wage growth. Here's wh… https://t.co/PBZC4D606b +05/22/2018,Economists,@econjared,The critique that jobs programs can't help with wage problems seems way off to me. https://t.co/YBEAu3SKUM +05/22/2018,Economists,@econjared,To continuously fail to provide true economic opportunity to those hurt by trade is to both sow and nurture the see… https://t.co/CMIuWzdCab +05/22/2018,Economists,@econjared,Sen Van Hollen on why we need a jobs program: “You have a lot of Republicans...who say they want to help people who… https://t.co/lUz013ymqp +05/21/2018,Economists,@econjared,"The future of work will be what we, not technology, make of it. Featuring new work by @LarryMishel and @hshierholz… https://t.co/tzFlmYBjxy" +05/18/2018,Economists,@econjared,"Is King Dollar really under threat as the world's premier reserve currency? I (kinda) hope so; what was an ""exorbit… https://t.co/6oipWdIQIh" +05/17/2018,Economists,@econjared,"2) Even at full employment, the sectoral composition of output can and does shift in response to demand in general… https://t.co/kNcjmGmexS" +05/17/2018,Economists,@econjared,"1) While the $200bn is surely near-term non-achievable, this analysis is way too static. If there were greater dema… https://t.co/7em8LPnUuw" +05/17/2018,Economists,@econjared,"I should be able to win many drinks at many bars by taking bets on the question ""what share of retail sales are e-c… https://t.co/uyoHBSUFuy" +05/17/2018,Economists,@econjared,I understand the argument that college degrees have been oversold--they're not a sufficient solution for ineq/wg st… https://t.co/KzGCVkBZLB +05/16/2018,Economists,@econjared,"Here's why I think that Seattle ""head tax"" is a) reasonable, and b) a microcosm of bigger stuff going on in this sp… https://t.co/Va3d6TsuLt" +05/15/2018,Economists,@econjared,Strongly agree w @JimPethokoukis re zoning reform for Seattle. But that’s a very long term solution to current home… https://t.co/O8ucIFnD6H +05/15/2018,Economists,@econjared,@ATobert I did not but I will now correct that oversight! +05/15/2018,Economists,@econjared,"7) In conclusion: Work requirements (really, paper-work requirements) should thus be seen for what they are: an att… https://t.co/9D3kiaR6oo" +05/15/2018,Economists,@econjared,"6) Then there’s this inherent contradiction: low-wage minorities, immigrants, the working poor depend on a persiste… https://t.co/AroC5AMLZI" +05/15/2018,Economists,@econjared,"5) Also, even at low national unemployment, there are places in America with too few employment opportunities, and… https://t.co/QXKHiH2WFR" +05/15/2018,Economists,@econjared,"4) Next, the working poor face a spate of labor-market barriers: criminal records, health/skill deficits, discrimin… https://t.co/aapVcF61P7" +05/15/2018,Economists,@econjared,"3) You can see this latter point in the figure below from important new paper by Hoynes and Schanzenbach: in 1990,… https://t.co/R1O8OfwxhU" +05/15/2018,Economists,@econjared,"2) First, the poor who are able to do so already work. They must, because a) you can’t get buy on health coverage a… https://t.co/yw8SHJSEmE" +05/15/2018,Economists,@econjared,1) How wrong is the Trump/Ryan/Congressional R’s push for work requirements in anti-poverty programs? Let me count the ways. +05/14/2018,Economists,@econjared,"@tamcfall A) I don't understand this. +B) given A, I still think this may be a timely eg of confirmation bias." +05/14/2018,Economists,@econjared,"I worry that this, like state lotteries, becomes an implicit tax on those of us who don't get probabilities and con… https://t.co/0T9TSucdgQ" +05/14/2018,Economists,@econjared,"The rationale for a guaranteed jobs program is strong, as the system is increasingly rigged against low/mid wage wo… https://t.co/0pUg6KHwgj" +05/13/2018,Economists,@econjared,"Smart, efficient bit of analysis here. Side note: since we can't consume or invest what we've lost through deprecia… https://t.co/M06kCtTAt3" +05/11/2018,Economists,@econjared,"Re lower drug costs, Trump twiddles around at the edges, at best. The last 'grafs of this NYT piece (my bold) point… https://t.co/dIJutmEHP9" +05/11/2018,Economists,@econjared,"Recognizing the long-term value to their nations, other advanced economies invest in economically vulnerable famili… https://t.co/peBbJvsTNA" +05/10/2018,Economists,@econjared,@Birdyword It is no more a dog than you are a bird. +05/10/2018,Economists,@econjared,@Rightsof_Man There's no median monthly data. Here's the median quarterly take--shows same result. https://t.co/QaMdg7NDt0 +05/10/2018,Economists,@econjared,"2) To be fair/clear, presidents don't determine economic outcomes nearly as much as they say they do (ie, when outc… https://t.co/pGIBcCSEAp" +05/10/2018,Economists,@econjared,1) The building block for mid-class economic security is real hourly wage for mid-wage workers. Here it is in age o… https://t.co/ErEdCmXYiU +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 4) This… https://t.co/Wt7Jl7qEPe +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 3) My t… https://t.co/X2gXQU4dpf +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 2) What… https://t.co/cVWqlFOm0k +05/10/2018,Economists,@econjared,"@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 1) So,… https://t.co/y8rkVH9TXt" +05/09/2018,Economists,@econjared,"Phillips Curve or Phillips' pet dog w/ bushy tail...I report, you decide. https://t.co/E3Ehr3pt9F https://t.co/XENrSrGyXv" +05/09/2018,Economists,@econjared,"There's nothing we can do to help US manufacturers, right? WRONG, as per a new paper out today by @TimBartik for CB… https://t.co/dgeVGVjJrx" +05/08/2018,Economists,@econjared,"As motivation for their deeply misguided work requirements, Republicans toss around this measure they call the ""Job… https://t.co/eN9ayBGaJi" +05/07/2018,Economists,@econjared,@CliffordAsness @JohnHCochrane Will read Cochrane--always interesting--if you read Lazonick:… https://t.co/f7zijlccVy +05/07/2018,Economists,@econjared,"@CliffordAsness 2nd, there’s no empirical correlation between share buybacks and investment (the topic of the segme… https://t.co/5k0pNxsCqe" +05/07/2018,Economists,@econjared,"@CliffordAsness First, share buybacks increase the value of outstanding shares. 80% of the value of the stock marke… https://t.co/0SYwWJOZ1H" +05/07/2018,Economists,@econjared,Great point by @HarrySteinDC. I often vent how R's refused to add $1 to their tax cut for EITC to support low-inc w… https://t.co/84zfDxFoTB +05/07/2018,Economists,@econjared,"@isawhill @jasonfurman @Neil_Irwin @greg_ip Agree--excellent point from Jason. +That said, in a model that predicts… https://t.co/TAmn27KJyq" +05/04/2018,Economists,@econjared,"First, read the 3 reasons why wage growth is slower than we'd like. Then...start your weekend! https://t.co/goGrFcvtnR" +05/04/2018,Economists,@econjared,"Headed over to talk jobs, wages et al on MSNBC @ 11. See you there." +05/04/2018,Economists,@econjared,"@WhiteHouseCEA @BLS_gov 2 points: +First, wages should be accelerating and they're not. +Second, consumer inflation… https://t.co/btmCWvruEh" +05/04/2018,Economists,@econjared,"2) But ""smart policy""--or any policy--is hard to pull off if you just squandered $2 trillion on a wasteful, loophol… https://t.co/h4Cwv2Snsp" +05/04/2018,Economists,@econjared,"1) Pulling 'the graf below out from my jobs report. We've got extra labor supply under our noses, but it will take… https://t.co/6jCds4x6Ny" +05/04/2018,Economists,@econjared,"Left out the link! D'oh!! +https://t.co/5yB6CDAQ2e https://t.co/3FzE1TXB50" +05/04/2018,Economists,@econjared,"My extended take on the jobs report. Job market remains strong, of course, but lack of wage acceleration important… https://t.co/3jYotRsvYI" +05/04/2018,Economists,@econjared,Jobs report looks more moderate than strong. Unemp rate at 3.9% but this mostly due to tick down in labor force. Em… https://t.co/a0SLCS64Sc +05/04/2018,Economists,@econjared,@eliselgould That's the question! To your battle stations! +05/04/2018,Economists,@econjared,"Like the moth to the flame, I keep trying to predict the monthly job outcomes. Data out in 13 mins, but here's my d… https://t.co/TfTUsMy9WK" +05/03/2018,Economists,@econjared,"Yes, price growth is firming up a bit, but I'm more worried about BNI: Breaking News Inflation, which plays into an… https://t.co/PLMgII9FWn" +05/03/2018,Economists,@econjared,"RT @theAMIBA: @econjared @hamandcheese Some excellent ideas here. Please reconsider conflating free markets with U.S. corporate capitalism,…" +05/03/2018,Economists,@econjared,"We live in chaotic, uncertain economic times (also, hush money to porn stars). But amidst the noise, the Fed is qui… https://t.co/xIn4j5tVr5" +05/02/2018,Economists,@econjared,"Sam Hammond @hamandcheese wrote a paper that caught my interest so I asked him about it. Sam sets up a hopeful, uni… https://t.co/S9mtT78hu8" +05/02/2018,Economists,@econjared,"@hamandcheese Fact check: I work two floors below you (and no, that's not some sort of metaphorical ranking re our… https://t.co/CjA7H62Knj" +04/30/2018,Economists,@econjared,"When the pendulum swings back, the progressive agenda must be ready to hit the ground running with ideas to correct… https://t.co/BhhT3i2UBE" +04/29/2018,Economists,@econjared,"The 'graf below, from my piece in tomorrow's WaPo, links to this site I just discovered at @CenterOnBudget (where I… https://t.co/8a8rk6Etpr" +04/27/2018,Economists,@econjared,"@GagnonMacro Yep. But I'm increasingly wondering what bang-for-buck will be from tax cut. For various reasons--Fed,… https://t.co/3e1EMC1tKU" +04/27/2018,Economists,@econjared,"Based on this AM's GDP and ECI (wage) reports, rising interest rates, a bit more inflation, low unemp, there's clea… https://t.co/bubpXhFbtz" +04/26/2018,Economists,@econjared,"D's with big ideas to help those left behind, even at low unemployment! Woohoo!! Here's some Q&A on Sen. Booker's j… https://t.co/A4fn6XAzYr" +04/25/2018,Economists,@econjared,@imtheMDP Exactly. Good for this guy for reinvesting in his successful biz. The problem here is twofold: 1) his sto… https://t.co/jOwnsydtNp +04/25/2018,Economists,@econjared,Here's why their skewed tax cut makes sense to Republicans. It's some word salad from Sen. Rob Portman explaining w… https://t.co/fasnjkvXZq +04/24/2018,Economists,@econjared,"@Brad_Setser “I have long been interested in Turkey’s balance sheet vulnerabilities.” This, my friends, is why you… https://t.co/oRV1cDAiJG" +04/24/2018,Economists,@econjared,"As per @svaneksmith, is 3% on the 10-yr Treasury the new bond villain?! More to come on this...I'm not much spooked… https://t.co/AXb1A8cDw2" +04/23/2018,Economists,@econjared,@RobinBrooksIIF That's a smart grid! Thnx. +04/23/2018,Economists,@econjared,"Reversing the tax cut is an essential part of staving off the divisive, racist, xenophobic politics that define our… https://t.co/rXs1ii7c3l" +04/23/2018,Economists,@econjared,@pagdavidson Good question! It says we can't pin it down within any policy relevant interval. That's like saying it… https://t.co/nENS6ku6Ef +04/22/2018,Economists,@econjared,"Deficit, schmeficit! The hawks versus the owls, and why this is exactly the debate we need to be having. https://t.co/dEBUABTGpC" +04/22/2018,Economists,@econjared,The picture below--successive Fed Reserve unemployment forecasts against actual rate--reveals that conventional mod… https://t.co/sQ1kQZYPFi +04/21/2018,Economists,@econjared,"Good read on Macron, who seems quite woke re the need to help those hurt by trade/globalization. ""Protection, not p… https://t.co/BF8spKDt5M" +04/20/2018,Economists,@econjared,"Despite White House noise, people don't believe the tax cuts are showing up in their paychecks. Probably because th… https://t.co/jXwGdOTNwO" +04/19/2018,Economists,@econjared,RT @econjared: @mileskimball I see and respect where you’re coming from but I worry that our stance on patents and IP veers into its own fo… +04/19/2018,Economists,@econjared,@mileskimball I see and respect where you’re coming from but I worry that our stance on patents and IP veers into i… https://t.co/8PFobQe7Jd +04/18/2018,Economists,@econjared,"Trump's econ Hassett claims in WSJ: tax cuts are already juicing wage growth. That's fake news, at least for mid-wg… https://t.co/fOttkvCW5r" +04/18/2018,Economists,@econjared,"Great thread on labor market tautness and wages, which, while clearly responding somewhat to tighter conditions, ar… https://t.co/oVQbtuBqk2" +04/18/2018,Economists,@econjared,"Rare non-econ tweet: Yes, these are troubled times. All the more reason to start your day with this amazing Cal Tja… https://t.co/aLYCIVTcJi" +04/17/2018,Economists,@econjared,"Re IRS computer crash: ""Some Republicans jumped on the glitch as an example of incompetence at the agency."" +The R'… https://t.co/Yyvx0pGqXI" +04/17/2018,Economists,@econjared,"@Neil_Irwin I’d be hard-pressed to believe 1-3, 5 either." +04/17/2018,Economists,@econjared,Kudlow to Fox viewers today: ‘Never believe CBO.’ This is what you say when you know your plan stinks and nobody wi… https://t.co/L5GhzO6HWq +04/16/2018,Economists,@econjared,"Breakeven employment levels higher than we thought! +Wonky stuff ahead, but point is important to those of us who a… https://t.co/mIEkp2ljtS" +04/16/2018,Economists,@econjared,"@JimPethokoukis Not sure that's quite right, Jimmy, at least per CBO. They have productivity reverting back to 1995… https://t.co/JlYTBRsGqv" +04/16/2018,Economists,@econjared,Despite some of the best evidence we've ever had showing that neither trickle-down tax cuts nor work requirements w… https://t.co/nCuedtTTCj +04/15/2018,Economists,@econjared,I'm quite certain Ron's right about this (ftr: he's right about a lot). I too have stressed the point that Trump's… https://t.co/ZzI5jdDEe0 +04/13/2018,Economists,@econjared,"Yesterday, I pointed out weak real wage trends for mid-wage workers under Trump. New BLS data confirm: Against prio… https://t.co/dTA3RAkdS9" +04/12/2018,Economists,@econjared,"Contra to Trump's econ team (@WhiteHouseCEA), real wages for mid-wage workers have been pretty stagnant. Higher-pai… https://t.co/D5RqdlpEbT" +04/11/2018,Economists,@econjared,@lepton939 But what if the good place is really the bad place?! +04/11/2018,Economists,@econjared,"Sen Corker today: ""This Congress and this administration likely will go down as one of the most fiscally irresponsi… https://t.co/fOzRUQF2AV" +04/11/2018,Economists,@econjared,Nobody packs more info into 9 entertaining (seriously!) minutes than @CardiffGarcia and @svaneksmith at… https://t.co/Wf815Zlrbl +04/11/2018,Economists,@econjared,"On Ryan's resignation: he's been the ultimate poser, espousing concern for the poor, the aged, the sick, and fiscal… https://t.co/Ja7bKSLzZD" +04/10/2018,Economists,@econjared,Damn--@NickHanauer cleans the clock of the trickle-downers in this oped. 'Businesses don’t give raises because they… https://t.co/Bh2dSUxbur +04/10/2018,Economists,@econjared,"@TimDuy @conorsen @M_C_Klein @ernietedeschi Great figure, @ernietedeschi Thnx! But what is it folks here find so im… https://t.co/mOkyTSOubf" +04/09/2018,Economists,@econjared,"Wisdom from @PaulNVandeWater re new CBO numbers. https://t.co/oIOlmyFS59 +And a bit more commentary from me: https://t.co/6K7hClXwnm" +04/09/2018,Economists,@econjared,"I’d like to propose a simple, common-sense rule: if you voted for the tax cut, you don’t get to complain about the… https://t.co/YTh6B4kxLP" +04/09/2018,Economists,@econjared,"New CBO forecasts on fiscal impact of tax cuts: +--tax cuts don't come anywhere close to paying for themselves, of c… https://t.co/PZ94uIx6vg" +04/09/2018,Economists,@econjared,The teachers' strikes are a reminder of the essential need for a countervailing movement against those who have lon… https://t.co/sXALAs2fVf +04/06/2018,Economists,@econjared,@D_Blanchflower There is no NAIRU! Or at least not one we can identify w/in a policy-relevant interval. +04/06/2018,Economists,@econjared,Low productivity growth is an acting constraint on wage growth. But a tighter job market can generate wage gains by… https://t.co/SvceIt3aVK +04/06/2018,Economists,@econjared,@D_Blanchflower Read my report from earlier this AM--that's highlighted: https://t.co/ql3IcgMpE5 (see part right under smoother graph) +04/06/2018,Economists,@econjared,"Here's my jobs report with a deep'ish dive into wage growth results, featuring an interesting (can I say that about… https://t.co/tjpFfm8HMh" +02/17/2016,Economists,@NYTimesKrugman,Now tweeting as @PaulKrugman. +07/02/2018,Economists,@MarkThoma,Links (7/2/18) https://t.co/LPCVTiu6Ry +07/02/2018,Economists,@MarkThoma,"""Scott Pruitt is now waging a war on economics"" - Environmental Economics https://t.co/RNV3TseoT8" +07/02/2018,Economists,@MarkThoma,Big Tech Is a Big Problem - Kenneth Rogoff https://t.co/F11oUDeJoV +07/02/2018,Economists,@MarkThoma,Black-White Income and Wealth Gaps - Tim Taylor https://t.co/SODRi2OayJ +07/02/2018,Economists,@MarkThoma,Fiscal Sustainability: A Primer - Cecchetti & Schoenholtz https://t.co/t0vKJWFyZP +07/02/2018,Economists,@MarkThoma,Dummy Variables in a Semilogarithmic Regression: Exact Distributional Results - Dave Giles https://t.co/Uz3BKNgOS1 +07/02/2018,Economists,@MarkThoma,Authority - interfluidity https://t.co/kWjyK0iaGg +07/02/2018,Economists,@MarkThoma,Double or Nothing - Economic Principals https://t.co/VavC44lAnN +07/02/2018,Economists,@MarkThoma,Worries about the yield curve - Econbrowser https://t.co/8qvnuaWuPh +06/30/2018,Economists,@MarkThoma,Trump’s Potemkin Economy - Paul Krugman https://t.co/nOttgjG5VP +06/30/2018,Economists,@MarkThoma,"“The First Patent Litigation Explosion,” C. Beauchamp (2016) - A Fine Theorem https://t.co/rdMNGX0G1u" +06/30/2018,Economists,@MarkThoma,Long-term effects of cash transfers - VoxEU https://t.co/QQB4ZG1eeX +06/30/2018,Economists,@MarkThoma,Micro Profs teaching Intro Macro - Nick Rowe https://t.co/kHbDkpvVtH +06/30/2018,Economists,@MarkThoma,American Democracy on the Brink - Joseph E. Stiglitz https://t.co/7k6maXr8VH +06/30/2018,Economists,@MarkThoma,Trump Versus the Hog-Maker - Paul Krugman https://t.co/reMjA0Xu5p +06/30/2018,Economists,@MarkThoma,There are more foreign firms than we think! - VoxEU https://t.co/CRVJ9mieR6 +06/28/2018,Economists,@MarkThoma,Links (6/28/18) https://t.co/ndIyqeFmIU +06/28/2018,Economists,@MarkThoma,The value of late-in-life health care spending - MIT News https://t.co/0INkqNa2sO +06/28/2018,Economists,@MarkThoma,Stumbling and Mumbling: Centrists against freedom https://t.co/Oz2yXR6hg6 +06/28/2018,Economists,@MarkThoma,US Homeownership Patterns - Tim Taylor https://t.co/yyEFdE31b7 +06/28/2018,Economists,@MarkThoma,Uses and Abuses of Economic Formalism - Paul Krugman https://t.co/W2fDurP4Fa +06/27/2018,Economists,@MarkThoma,The career cost of children: career and fertility trade-offs - Microeconomic Insights https://t.co/VGudI2ukWI +06/27/2018,Economists,@MarkThoma,The Monumental Dishonesty and Appalling Bad Faith of Chief Justice Roberts’s Decision - Uneasy Money https://t.co/4yClvIj6gh +06/27/2018,Economists,@MarkThoma,Race and economic opportunity in the United States - VoxEU https://t.co/MTLXBuMHr2 +06/27/2018,Economists,@MarkThoma,Are markets Too Concentrated? - FRB Richmond https://t.co/9pDOeGmfQj +06/27/2018,Economists,@MarkThoma,The rise and reversal of college education - FRB Minneapolis https://t.co/FlXbBK95Lw +06/27/2018,Economists,@MarkThoma,Reducing inequality with the minimum wage - FRB Minneapolis https://t.co/nAb5qyi3Uk +06/27/2018,Economists,@MarkThoma,The Right and the Wrong Ways to Adjust the U.S.—China Trade Balance - Brad Setser https://t.co/kr2YQ4dVFn +06/27/2018,Economists,@MarkThoma,Trump Never Really Ordered a Halt to Child Separations - Regulatory Review https://t.co/RMPlklqLKI +06/26/2018,Economists,@MarkThoma,@Noahpinion Stuff and Money at the Time of the French Revolution +06/26/2018,Economists,@MarkThoma,Seriously? https://t.co/bTupHJyk0O +06/26/2018,Economists,@MarkThoma,"RT @ASFried: In 2012, a baker refused to serve Joe Biden. VP candidate Paul Ryan brought him to a rally. https://t.co/Qm2pY2FtYZ" +06/26/2018,Economists,@MarkThoma,"Subsidised childcare, maternal labour supply, and children’s outcomes - VoxEU https://t.co/U7HK8pLPg9" +06/26/2018,Economists,@MarkThoma,The Great Soybean Conspiracy - Paul Krugman https://t.co/vCEcaBy7Ll +06/25/2018,Economists,@MarkThoma,Can the Income-Expenditure Discrepancy Improve Forecasts? - FRBSF https://t.co/11NmQEnUpf +06/25/2018,Economists,@MarkThoma,Links (6/25/18) https://t.co/1VHhmjTMWw +06/25/2018,Economists,@MarkThoma,What Happened: Financial Factors in the Great Recession (NBER) - Gertler and Gilchrist https://t.co/FV02UjOyqL +06/25/2018,Economists,@MarkThoma,Hydraulic Monetarism - Nick Rowe https://t.co/BMHpwdDJp1 +06/25/2018,Economists,@MarkThoma,Peter Christoffersen and Forecast Evaluation - No Hesitations https://t.co/wljhKiEwBD +06/25/2018,Economists,@MarkThoma,The Medical Bankruptcies Debate - Tim Taylor https://t.co/MhT1pn3NIS +06/25/2018,Economists,@MarkThoma,Elasticities and the Inverse Hyperbolic Sine Transformation - Marc F. Bellemare https://t.co/5dLYhr7opt +06/25/2018,Economists,@MarkThoma,Policymakers can’t tackle inequitable growth if it isn’t measured - Equitable Growth https://t.co/7VqFfuDPWe +06/25/2018,Economists,@MarkThoma,Monies (old and new) through the lenses of modern accounting - VoxEU https://t.co/cE33nnyksa +06/25/2018,Economists,@MarkThoma,Sudden Stops: A Primer on Balance-of-Payments Crises - Cecchetti & Schoenholtz https://t.co/bXyMbyw6P2 +06/25/2018,Economists,@MarkThoma,"The John Taylor-backed “stablecoin” that's backed by, um, stability - FT Alphaville https://t.co/nMDq4akhDU" +06/25/2018,Economists,@MarkThoma,Hyping the Cost of Regulation - Regulatory Review https://t.co/KiUvr1d2Mt +06/25/2018,Economists,@MarkThoma,"Global financial cycles and risk premiums | VOX, CEPR Policy Portal https://t.co/tco44u4Tc9" +06/25/2018,Economists,@MarkThoma,As Maine Goes… - Economic Principals https://t.co/tPchhgTi1d +06/25/2018,Economists,@MarkThoma,"Gender, informal employment, and trade liberalisation in Mexico - VoxEU https://t.co/DtVGnffr7r" +06/25/2018,Economists,@MarkThoma,Shakespeare on tyranny - Understanding Society https://t.co/TA7DlJHZhr) +06/24/2018,Economists,@MarkThoma,"RT @drvox: 1. Unsurprisingly, this bit of kneejerk onanism from the WaPo editorial board completely misses the significance of this whole e…" +06/23/2018,Economists,@MarkThoma,Links https://t.co/ekEGdRBfLL +06/23/2018,Economists,@MarkThoma,Brexit Versus Trumpit (Wonkish) - Paul Krugman https://t.co/fSqHr6VgLL +06/23/2018,Economists,@MarkThoma,"Once Cut, Corporate Income Taxes Are Hard to Restore - Robert Shiller https://t.co/tr8cEQpNJV" +06/23/2018,Economists,@MarkThoma,A lucky boy from a golden age of economics - Nicholas Gruen https://t.co/qgLYjS3y0K +06/23/2018,Economists,@MarkThoma,Who’s Afraid of a Flattening Yield Curve? - Uneasy Money https://t.co/nIwJseFaJq +06/23/2018,Economists,@MarkThoma,What Would Happen if China Started Selling Off Its Treasury Portfolio? - Brad Setser https://t.co/Gp0mPdVDpl +06/23/2018,Economists,@MarkThoma,Happiness Around the World--And For Migrants - Tim Taylor https://t.co/3xqC6tIMZl +06/23/2018,Economists,@MarkThoma,The Paradox of Technological Déjà Vu – Digitopoly https://t.co/LZYCHpzNWT +06/23/2018,Economists,@MarkThoma,What to do with missing payments to factors of production - VoxEU https://t.co/V744JAxMcA +06/23/2018,Economists,@MarkThoma,Was the Marketplace of Ideas “Politically Hijacked”? - ProMarket https://t.co/iNt2e0Jr0u +06/23/2018,Economists,@MarkThoma,High-frequency Spending Responses to the Earned Income Tax Credit - The Fed https://t.co/54O3NAPzLr +06/23/2018,Economists,@MarkThoma,A new mandate for monetary policy - mainly macro https://t.co/Xm1xRhuwIu) +06/23/2018,Economists,@MarkThoma,The Dramatic Expansion of Corporate Bonds - Tim Taylor https://t.co/BJkgXMl0m7 +06/21/2018,Economists,@MarkThoma,"Melania spokesperson: There is no hidden message. + +Trump: Here's the hidden message. + +So, a not hidden message in b… https://t.co/wlJp2LNcnY" +06/21/2018,Economists,@MarkThoma,Return of the Blood Libel - Paul Krugman https://t.co/Az8vUXhUJq +06/21/2018,Economists,@MarkThoma,Problem with Comments https://t.co/Ck7ZISK8dq +06/20/2018,Economists,@MarkThoma,Links https://t.co/1MlKQlQkkg +06/20/2018,Economists,@MarkThoma,"Alongside rising top incomes, the level of living of America’s poorest has fallen - VoxEU https://t.co/W0Vc5ms3fk" +06/20/2018,Economists,@MarkThoma,Interview with Marianne Bertrand - Federal Reserve Bank of Minneapolis https://t.co/vxXoaf7xDv +06/20/2018,Economists,@MarkThoma,"What Does ""Serious"" Mean? - Stephen Williamson https://t.co/nLDQw8qoYn" +06/20/2018,Economists,@MarkThoma,Opinion | The Devil and Tom Donohue - Paul Krugman https://t.co/psuFvwE1oV +06/19/2018,Economists,@MarkThoma,Thinking About a Trade War (Very Wonkish) - Paul Krugman https://t.co/MijLsQJBgN +06/19/2018,Economists,@MarkThoma,The Charts That Show How Big Business Is Winning - The New York Times https://t.co/4dCCjtw0RV +06/19/2018,Economists,@MarkThoma,What Did the Romans Ever Do for Us? - Paul Krugman https://t.co/ORCt5zOybx +06/19/2018,Economists,@MarkThoma,Fall of the American Empire - Paul Krugman https://t.co/AezgfbbeFu +06/19/2018,Economists,@MarkThoma,Practical macroeconomic policy evaluation - Narayana Kocherlakota https://t.co/QzqyZBrQAV +06/19/2018,Economists,@MarkThoma,On Science Advancing One Funeral at a Time - ProMarket https://t.co/wBJqcpWx20 +06/19/2018,Economists,@MarkThoma,Capitalism works best in the Old World - Financial Times https://t.co/fxjffRo4Vu +06/19/2018,Economists,@MarkThoma,Now Is the Time for Banking Culture Reform - John Williams https://t.co/DTUZMG40vW +06/19/2018,Economists,@MarkThoma,Do Foreign Funds Matter for Emerging Market Bond Liquidity? - FRBSF https://t.co/4KrGhU2ZV4 +06/19/2018,Economists,@MarkThoma,The Referee - Economic Principals https://t.co/tWqmTUpwhx +06/19/2018,Economists,@MarkThoma,Inflation Policy - Cecchetti & Schoenholtz https://t.co/W7qka45QKE +06/19/2018,Economists,@MarkThoma,FedViews - FRBSF https://t.co/jMhl4did9W +06/19/2018,Economists,@MarkThoma,"Imprisonment by Malthus and ""Negative Liberty"":- Brad DeLong https://t.co/YjbDDDPkUu" +06/19/2018,Economists,@MarkThoma,Assessing Large Financial Firm Resolvability - FRB Richmond https://t.co/5YVqrQyzBB +06/19/2018,Economists,@MarkThoma,The bankruptcy of the centre right: Brexit edition - mainly macro https://t.co/BZ4a8Ek8KV) +06/19/2018,Economists,@MarkThoma,The distributional consequences of monetary policy - VoxEU https://t.co/0avLcw6dr7 +06/15/2018,Economists,@MarkThoma,Tax Cuts and Leprechauns (Wonkish) - Paul Krugman https://t.co/qiX4xBcuvx +06/15/2018,Economists,@MarkThoma,Unemployment and inflation once again... - Brad DeLong https://t.co/t3Rb2JjnHf +06/15/2018,Economists,@MarkThoma,Autonomous Vehicles: Here's One Crystal Ball - Tim Taylor https://t.co/d8NMqJwMEi +06/15/2018,Economists,@MarkThoma,Emerging Markets Under Pressure - Brad Setser https://t.co/Hx4Ulmv7QG +06/15/2018,Economists,@MarkThoma,"Bob Allen's new ""poverty machine"" and its implications - globalinequality https://t.co/gUiyRcUeR9" +06/15/2018,Economists,@MarkThoma,Why employment rates in the US have lagged other countries - VoxEU https://t.co/z01IlNrfxf +06/14/2018,Economists,@MarkThoma,G.O.P. to Americans With Health Problems: Drop Dead - Paul Krugman https://t.co/4S8AzBY6wQ +06/14/2018,Economists,@MarkThoma,Links https://t.co/tLprE2qjI9 +06/14/2018,Economists,@MarkThoma,Equitable Growth in Conversation: Michael Strain - Equitable Growth https://t.co/RdevZocGv5 +06/14/2018,Economists,@MarkThoma,"CONVERSABLE ECONOMIST: G-7, G7+, G20 https://t.co/99rkz5FXhG" +06/14/2018,Economists,@MarkThoma,More Permissive Zoning Codes Could Make U.S. Workers Richer - Regulatory Review https://t.co/G84xvzl38r +06/14/2018,Economists,@MarkThoma,Optimal Monetary Policy For the Masses - David Beckworth https://t.co/hS9cqeWk14 +06/14/2018,Economists,@MarkThoma,mainly macro: How UK deficit hysteria began https://t.co/esOrCzvwAH) +06/14/2018,Economists,@MarkThoma,Adjusting to Autonomous Trucking – Digitopoly https://t.co/AoOkMFmz8W +06/14/2018,Economists,@MarkThoma,Global debt and equilibrium interest rates - VoxEU https://t.co/Y5d6gQAue7 +06/13/2018,Economists,@MarkThoma,"Sovereign Money, Narrow Banks, Digital Currency, etc. - Stephen Williamson https://t.co/37JONqwlEo" +06/13/2018,Economists,@MarkThoma,Can the Euro Be Saved? - Joseph E. Stiglitz https://t.co/BkdVJ3unoG +06/13/2018,Economists,@MarkThoma,It’s time for Identity Portability – Digitopoly https://t.co/jWIGUkv0Cc +06/13/2018,Economists,@MarkThoma,The Parable of the Fruit Trees - Nick Rowe https://t.co/XBL4IS4w16 +06/13/2018,Economists,@MarkThoma,Unions Did Great Things for the Working Class - Noah Smith https://t.co/WGgPnseIR7 +06/12/2018,Economists,@MarkThoma,Links https://t.co/q5RTvfcHyl +06/12/2018,Economists,@MarkThoma,O Canada - Brad Setser https://t.co/o6xSyee60T +06/12/2018,Economists,@MarkThoma,Sustained growth and the increase in work hours - Growth Economics https://t.co/XcuImvgWBa +06/12/2018,Economists,@MarkThoma,A Quisling and His Enablers - Paul Krugman https://t.co/ei0p2lkJo0 +06/12/2018,Economists,@MarkThoma,The Transferunion fantasy - Thomas Piketty https://t.co/Ev1rrB50Nn +06/12/2018,Economists,@MarkThoma,A Tale of Three Nominal GDP Growth Paths - Macro Musings https://t.co/ioCB8am0Zi +06/12/2018,Economists,@MarkThoma,Summit on Diversity in Economics - Women in Economics at Berkeley https://t.co/4UyCHIsRz0 +06/12/2018,Economists,@MarkThoma,Digitalisation of money and the future of monetary policy - VoxEU https://t.co/gwnzWKlTIn +06/12/2018,Economists,@MarkThoma,E-Commerce Might Help Solve the Mystery of Low Inflation - The New York Times https://t.co/KHFOrPWRmO +06/12/2018,Economists,@MarkThoma,Financial repression and bank lending - All About Finance https://t.co/yP5A6okWKy +06/11/2018,Economists,@MarkThoma,Do Wages in High-Earning Sectors Always Reflect Skills? - ProMarket https://t.co/Otj4jElAfK +06/11/2018,Economists,@MarkThoma,Links https://t.co/2OkVynkqLO +06/11/2018,Economists,@MarkThoma,Why macroeconomics should further embrace distributional economics - Equitable Growth https://t.co/ml6fb2sbWU +06/11/2018,Economists,@MarkThoma,US Intergenerational Mobility: An International Perspective - Tim Taylor https://t.co/nDDTH4LfgW +06/11/2018,Economists,@MarkThoma,How Democratic Is the Euro? - Dani Rodrik https://t.co/E4kh4K4Vln +06/11/2018,Economists,@MarkThoma,"Banks and Money, Or Watch out What You Wish For - Cecchetti & Schoenholtz https://t.co/6VQ3gPw1XX" +06/11/2018,Economists,@MarkThoma,The Mystery of Puny Pay Raises - Noah Smith https://t.co/IsnT8rxCR3 +06/11/2018,Economists,@MarkThoma,Some ways to introduce a modern debt Jubilee - VoxEU https://t.co/paSvGkyjvz +06/11/2018,Economists,@MarkThoma,Demographics and long-run growth - VoxEU https://t.co/rIDmJsrmmG +06/11/2018,Economists,@MarkThoma,Opinion | A Better Electoral System in Maine - Maskin and Sen https://t.co/WyEyXzfTFW +06/11/2018,Economists,@MarkThoma,Homer Stirs - Economic Principals https://t.co/ehPpg7ziSh +06/10/2018,Economists,@MarkThoma,Trade Deficit Rising! - Econbrowser https://t.co/plhn69QIjq +06/10/2018,Economists,@MarkThoma,The inflation laggards — are they turning hawkish? - Gavyn Davies https://t.co/HNEZzbod05 +06/10/2018,Economists,@MarkThoma,"Tax Havens Blunt Impact of Corporate Tax Cut, Economists Say - The New York Times https://t.co/DQ7UgePNOL" +06/10/2018,Economists,@MarkThoma,AI and the paperclip problem - VoxEU https://t.co/HfVxq5HXcy +06/10/2018,Economists,@MarkThoma,Does Direct Democracy Reduce Regulatory Capture? - ProMarket https://t.co/9YuSQajRix +06/10/2018,Economists,@MarkThoma,Reviewing Richard Baldwin's The Great Convergence... - Brad DeLong https://t.co/CI7a5Ul303 +06/10/2018,Economists,@MarkThoma,The big problem China will face in a decade - Brad DeLong https://t.co/8fOVqjSOBI +06/10/2018,Economists,@MarkThoma,Debacle in Quebec - Paul Krugman https://t.co/KxA4PgM0xZ +06/10/2018,Economists,@MarkThoma,Would a Single-Payer System Require Painful Sacrifices From Doctors? - The New York Times https://t.co/mxy5TsVxqs +06/08/2018,Economists,@MarkThoma,Links https://t.co/rGNnnl8NM6 +06/08/2018,Economists,@MarkThoma,Inflation forecasting in emerging market economies - VoxEU https://t.co/oJMLx74Y78 +06/08/2018,Economists,@MarkThoma,Measuring competition - Stumbling and Mumbling https://t.co/fDyxU8KEkY +06/08/2018,Economists,@MarkThoma,Why Cities Can’t Stop Poaching From One Another - The New York Times https://t.co/qdn6h0CXID +06/08/2018,Economists,@MarkThoma,Flat Yield Curve May Result in a More Aggressive Fed - Tim Duy https://t.co/kkhpBxInEH +06/08/2018,Economists,@MarkThoma,Should peer to peer lenders exist in theory? - Bank Underground https://t.co/YGhcLsjyyt +06/08/2018,Economists,@MarkThoma,Corruption Hits the Small Time - Paul Krugman https://t.co/VGQm3CDMhp +06/07/2018,Economists,@MarkThoma,"RT @BrookingsEcon: New from the Hutchins Center on Fiscal and Monetary Policy: Rethinking the Fed's 2 percent inflation target, including c…" +06/07/2018,Economists,@MarkThoma,Machines Learning Finance - No Hesitations https://t.co/BVyCPJ1uTz +06/07/2018,Economists,@MarkThoma,Productivity and Pay: Is the Link Broken? - Stansbury and Summers https://t.co/bsXLLECDNk +06/07/2018,Economists,@MarkThoma,Links https://t.co/fgNK0QYSEV +06/03/2018,Economists,@MarkThoma,A Trade War Primer — Paull Krugman https://t.co/xntji7kKK6 +06/02/2018,Economists,@MarkThoma,"Opinion | Coal, Cash, and Bad Faith - Paul Krugman https://t.co/WmCeKbRrcr" +06/02/2018,Economists,@MarkThoma,Wellbeing inequality in retrospect - VoxEU https://t.co/tpC5tlBLaL +06/01/2018,Economists,@MarkThoma,America’s Founders vs. Trump - J. Bradford DeLong https://t.co/4IBAMmyazj +06/01/2018,Economists,@MarkThoma,Part-Time Workers Are Less Likely to Get a Pay Raise - macroblog https://t.co/1fiqlVQHIc +05/31/2018,Economists,@MarkThoma,The Plot Against Health Care - Paul Krugman https://t.co/zp2yxCZNCI +05/31/2018,Economists,@MarkThoma,"Oh, What a Stupid Trade War https://t.co/WbdxVUvOxx" +05/31/2018,Economists,@MarkThoma,Sustaining Full Employment and Inflation around Target - Lael Brainard https://t.co/vZEzcJxcZO +05/31/2018,Economists,@MarkThoma,Links https://t.co/xrqfA3sTkk +05/31/2018,Economists,@MarkThoma,Cultural proximity and loans - Microeconomic Insights https://t.co/42aYYkQf1h +05/31/2018,Economists,@MarkThoma,The Uniqueness of the Cointegrating Vector - Dave Giles https://t.co/3Fb7akYn01 +05/30/2018,Economists,@MarkThoma,Would a Central Bank Digital Currency disrupt monetary policy? - Bank Underground https://t.co/l9lIDbSOL6 +05/30/2018,Economists,@MarkThoma,Bulls and Bears: Why central banks should stabilize the stock market - Roger E. A. Farmer https://t.co/bWDnraGOoU +05/30/2018,Economists,@MarkThoma,"Nominal wages are not real wages, and why it matters in the UK - mainly macro https://t.co/OIyrfnP2Fx)" +05/30/2018,Economists,@MarkThoma,The euro must be made more robust to rival the dollar - FT https://t.co/knv3kot62A +05/29/2018,Economists,@MarkThoma,Trump is enabling a predatory economy. Here’s how he’s doing it. - Helaine Olen https://t.co/ac7NqCCcgz +05/29/2018,Economists,@MarkThoma,Is GDP Overstating Economic Activity? - Economist's View https://t.co/w7fMoDeCeV +05/29/2018,Economists,@MarkThoma,Gabriel Zucman: “Some People in Economics Feel That Talking About Inequality Is Not What Economists Should Be Doing… https://t.co/1VaTGdiyQf +05/29/2018,Economists,@MarkThoma,Links https://t.co/nbenirHpLH +05/29/2018,Economists,@MarkThoma,Trump’s Manchurian Trade Policy - Paul Krugman https://t.co/dPhURsYahP +05/29/2018,Economists,@MarkThoma,Germany's Prosperity: How Stable are the Foundations? - Tim Taylor https://t.co/Ib8shHZjfW +05/29/2018,Economists,@MarkThoma,Core Design Principles for a Central Bank Digital Currency - Bank Underground https://t.co/cYwe76mzEj +05/29/2018,Economists,@MarkThoma,The “accounting view” of money: money as equity - All About Finance https://t.co/RLtrDjvdqg +05/29/2018,Economists,@MarkThoma,News Values - Economic Principals https://t.co/vBVIguXlEK +05/29/2018,Economists,@MarkThoma,The Economics of Disintegration of the Greenland Ice Sheet - NBER https://t.co/E2vsG6x5Xm +05/29/2018,Economists,@MarkThoma,Great Recession: New Car Buyers Hold Cars Longer on Hold - St. Louis Fed https://t.co/wruqYvCdAT +05/27/2018,Economists,@MarkThoma,Does Economics Matter? https://t.co/z3oo1k8wHd +05/27/2018,Economists,@MarkThoma,Learning from America’s Forgotten Default - Sebastián Edwards https://t.co/0z31KAmJmM +05/27/2018,Economists,@MarkThoma,The carbon bubble and the pricing of bank loans - VoxEU https://t.co/GytXZdT9MG +05/26/2018,Economists,@MarkThoma,Neo- and Other Liberalisms https://t.co/imvtfUddLL +05/26/2018,Economists,@MarkThoma,Effects of Copyrights on Science https://t.co/AyZ5y0BZcd +05/26/2018,Economists,@MarkThoma,Effects of copyrights on science - VoxEU https://t.co/xbOcQJ7yuu +05/25/2018,Economists,@MarkThoma,Neo- and Other Liberalisms - Uneasy Money https://t.co/HyyXAfx9eP +05/25/2018,Economists,@MarkThoma,"Actually, the U.S. Can Afford Welfare - Justin Fox https://t.co/t7cfjmx7k6" +05/25/2018,Economists,@MarkThoma,Links https://t.co/YPFxsPxHBf +05/25/2018,Economists,@MarkThoma,Monetary Policy and the Crosswinds of Change - Charles Evans https://t.co/1fqIUtmQjl +05/25/2018,Economists,@MarkThoma,Google and Facebook’s “Kill Zone” - ProMarket https://t.co/XxdxfHHPEg +05/25/2018,Economists,@MarkThoma,E-autocracy: Surveillance and propaganda in Chinese social media - VoxEU https://t.co/zs74X7RpfU +05/25/2018,Economists,@MarkThoma,The declining share of manufacturing jobs - VoxEU https://t.co/X6JOZRoMaK +05/24/2018,Economists,@MarkThoma,Turmoil for Turkey’s Trump - Paul Krugman https://t.co/wcC6KILvmr +05/24/2018,Economists,@MarkThoma,"A Rescue Plan for a Jobs Crisis in the Heartland - Glaeser, Summers, Austin https://t.co/YRRUoaBbtp" +05/24/2018,Economists,@MarkThoma,The ‘suprasecular’ stagnation - VoxEU https://t.co/EbTdwz82Fl +05/23/2018,Economists,@MarkThoma,Improved financial regulation deters misconduct - EurekAlert! https://t.co/RoM9Fb0cOj +05/23/2018,Economists,@MarkThoma,"Long Horizon Uncovered Interest Parity, Updated - Econbrowser https://t.co/JkJW3TDSDi" +05/23/2018,Economists,@MarkThoma,"Minutes of the Federal Open Market Committee, May 1-2, 2018 - FRB https://t.co/AiD0L2HKi8" +05/23/2018,Economists,@MarkThoma,Can Credit Tightening Spur Social Unrest? Evidence from 1930s China - ProMarket https://t.co/SZcrJnvsCj +05/23/2018,Economists,@MarkThoma,Links https://t.co/fJ0HaS1h0b +05/22/2018,Economists,@MarkThoma,Congress Approves First Big Dodd-Frank Rollback - The New York Times https://t.co/vVey8utZKW +05/22/2018,Economists,@MarkThoma,Why a Trade War With China Isn’t “Easy to Win” (Slightly Wonkish) - Paul Krugman https://t.co/GHPaNRRPja +05/22/2018,Economists,@MarkThoma,US Hurricane Clustering: A New Reality? - Bank Underground https://t.co/rCvsgCKQSo +05/22/2018,Economists,@MarkThoma,"Argentina: Sustainable, Yes, with Adjustment. But Sustainable with A High Probability? - Brad Setser https://t.co/2naLPTXxsX" +07/02/2018,Economists,@umairh,"ahhhh man i feel so bad for japan, that was a great match." +07/02/2018,Economists,@umairh,whaaaaat a goaaalllllllll +07/02/2018,Economists,@umairh,@boxbrown Thanks dude! Much appreciated 👍 +07/02/2018,Economists,@umairh,"RT @ggreenwald: Imagine how much money could be raised for things like cancer research, housing for the poor, and famine relief if we legal…" +07/02/2018,Economists,@umairh,"@boxbrown Ha. On the contrary, religion was a colonizing tool, god was an equalizer. This is whole new thing in mod… https://t.co/5h7eHaM2L6" +07/02/2018,Economists,@umairh,"Yo, I need some of that sweet sweet Trumpstasy https://t.co/2RFgCW99Sz" +07/02/2018,Economists,@umairh,"What do we even call “god is a white supremacist”? Theofascism? America, now pioneering whole new forms of collapse… https://t.co/XJn0I65JN7" +07/02/2018,Economists,@umairh,"RT @ByRosenberg: Even on a tour with Amazon PR people, Amazon warehouse workers complained they couldn't go to the bathroom for more than a…" +07/02/2018,Economists,@umairh,"RT @55Counties: Yesterday, Mexico elected: + +- Its first left-wing President in its entire HISTORY +- A socialist Jewish woman (a scientist,…" +07/02/2018,Economists,@umairh,LOL a nation of idiots https://t.co/p3VkURBVJ6 +07/02/2018,Economists,@umairh,"That time capitalism melted down into fascism while American pundits tried to figure out what socialism was, like m… https://t.co/fESfzh8QUh" +07/02/2018,Economists,@umairh,See in every other rich country this would be considered authoritarianism https://t.co/KJvskjFjC0 +07/02/2018,Economists,@umairh,LOL https://t.co/7wXncIZ6R0 +07/02/2018,Economists,@umairh,"RT @samstein: this is horrifying. our government pulled families apart, was shamed into backing down, and so.... decided to stop counting t…" +07/02/2018,Economists,@umairh,"RT @edcox_rsa: “The evidence, particularly from the US, is starting to suggest that disillusionment with politics is now becoming indiffere…" +07/02/2018,Economists,@umairh,"@boxbrown exactly man, the soviets played this game for decades and got precisely nowhere" +07/02/2018,Economists,@umairh,"what you should really note is that just like soviets, americans need these ultra-fine ideological labels to feel s… https://t.co/Z7q5i5M0YD" +07/02/2018,Economists,@umairh,"honestly guys, between all this ""real socialism"" and ""real liberals"" and ""real conservatives"" stuff the US these da… https://t.co/ZCHeA2o8Fz" +07/02/2018,Economists,@umairh,"literally the moral reasoning of an infantile narcissist, delusional persecution fantasies compensated for by a clo… https://t.co/GvvRbjA12l" +07/02/2018,Economists,@umairh,"RT @JeffreyToobin: See the new @USSupremeCourt clearly: Abortion illegal; doctors prosecuted; gay people barred from restaurants, hotels, s…" +07/02/2018,Economists,@umairh,Abusers by any other name https://t.co/yhVlQTLY4u +07/02/2018,Economists,@umairh,I just published “The Economy We Should Have Built (But Didn’t)” https://t.co/tgdN3msHM6 +07/02/2018,Economists,@umairh,Predatory capitalism https://t.co/C6uCxLZiFG +07/02/2018,Economists,@umairh,RT @billhd: Dear @NPR: I’m a writing professor who makes software. Grading essays isn’t the same as providing feedback students need to imp… +07/02/2018,Economists,@umairh,Guys. https://t.co/Y1lUZfYDF6 +07/02/2018,Economists,@umairh,Ahhh the kleptofascist shakedown https://t.co/Y1R3iRsDc8 +07/02/2018,Economists,@umairh,"RT @EvonomicsMag: Economist Samuel Bowles: ""The idea of an economy of avaricious knaves waiting to be harnessed for the public good by a di…" +07/02/2018,Economists,@umairh,"RT @CoachDerekD: That my children even have to read this sign, is the clearest sign that we have failed them. @MomsDemand https://t.co/VU6F…" +07/02/2018,Economists,@umairh,“This is Not Normal” by @umairh https://t.co/KNIoBpzrCQ https://t.co/9xjSOC9577 +07/02/2018,Economists,@umairh,“The Faction and the Revolution” https://t.co/DgjCeY6OEf +07/02/2018,Economists,@umairh,“Do Americans Understand How Bad Trumponomics is Going to Be For Them?” https://t.co/p8MCuq776q https://t.co/r7KfhXvkdr +07/02/2018,Economists,@umairh,RT @kenklippenstein: We don’t live in a civilized country https://t.co/ypulSzgdld +07/02/2018,Economists,@umairh,RT @matthewstoller: Everyone in the Midwest just loves student debt and shitty health care monopolies. Last time I was in Des Moines people… +07/02/2018,Economists,@umairh,"RT @LouDPhillips: Is this woman seriously pointing heavenward as if thanking God for killing this beautiful creature? Trust me, sister...Go…" +07/02/2018,Economists,@umairh,RT @cmclymer: The median age of someone in the Millennial generation is about 30. Millennials have fought in two wars not of our own making… +07/01/2018,Economists,@umairh,"RT @angryrobotbooks: That'll do, pig. https://t.co/DnwcMHi0oL" +07/01/2018,Economists,@umairh,https://t.co/X2vKT5x8si +07/01/2018,Economists,@umairh,https://t.co/ZY2uBKqH9m +07/01/2018,Economists,@umairh,@TheHonorableAT Perfectly said +07/01/2018,Economists,@umairh,"Your life, your choice, the world can see American thinking or the lack thereof has failed catastrophically, the qu… https://t.co/O38bTPZNgH" +07/01/2018,Economists,@umairh,You guys gotta stop letting fools play you. These guys have a hold on you because they’re white and male and that’s… https://t.co/7lCAoydjoo +07/01/2018,Economists,@umairh,"@Parthenon1 It’s pretty simple, you’d pay less for more care if we had a universal system. Money is not the issue i… https://t.co/tRoLyxCK5b" +07/01/2018,Economists,@umairh,Yup. These guys literally don’t know anything. They have been devastatingly wrong about every single major event in… https://t.co/rtU68nJqol +07/01/2018,Economists,@umairh,"@Parthenon1 we can print or borrow money forever, more than enough to ""pay"" for all this stuff, it literally doesn'… https://t.co/pBJp7zCJ35" +07/01/2018,Economists,@umairh,"@Parthenon1 @sarabeee of course you're not receiving very good healthcare, american healthcare is 70% debt manageme… https://t.co/3c47l6ijOW" +07/01/2018,Economists,@umairh,"the guild of american white dude pundits should go hunting for the next two years, do some white dude shit, at this… https://t.co/gT0XFU1gNa" +07/01/2018,Economists,@umairh,"@Parthenon1 then stop repeating talking points and start learning something, there's no problem with ""affording a h… https://t.co/X7PxKUjkeh" +07/01/2018,Economists,@umairh,"@moorehn its a patriarchy all the way down, unfortunately...this is why america has no great writers anymore, just… https://t.co/QBBlrxDCku" +07/01/2018,Economists,@umairh,"i love the way the official guild of white dudes has decided that abolishing ice is a ""losing position"", yet not a… https://t.co/WdkFL1F5GA" +07/01/2018,Economists,@umairh,@moorehn you can always tell these guys have never read a book not published by a fellow american white dude becaus… https://t.co/LUSnnOKNql +07/01/2018,Economists,@umairh,but now i'm gonna watch a horror movie to cheer myself up from the headlines +07/01/2018,Economists,@umairh,"and its also like a meta portrait of collapse too, on the bbc everyone in the uk can see it for free, in the us, yo… https://t.co/iPzn1XvKPG" +07/01/2018,Economists,@umairh,"by the way my people, this documentary the bbc's showing (on showtime in the states) about the nyt covering is like… https://t.co/62CzYy8z2U" +07/01/2018,Economists,@umairh,"God going back to reality after the World Cup is even more depressing this year than usual, I think I’ll just do sports from now on" +07/01/2018,Economists,@umairh,Good thread https://t.co/zA1gMzhlzI +07/01/2018,Economists,@umairh,@Atrios Ahaha I didn’t even you were replying to one when I wrote that!! LOLOLOL +07/01/2018,Economists,@umairh,"@Atrios My dude go watch the new documentary about the nyt covering trump, I think it’s own showtime there, your he… https://t.co/O75APkhv5b" +07/01/2018,Economists,@umairh,@chrislehmann awww hahahaha exactly +07/01/2018,Economists,@umairh,"@Parthenon1 why do you worry about a deficit? do you even really know what ""the deficit"" really is? it's just scare… https://t.co/hqTjAAEZhW" +07/01/2018,Economists,@umairh,man that was an exhausting day of football +07/01/2018,Economists,@umairh,"@Parthenon1 No, they don’t, that’s a myth, the reality is the us has the rich worlds worst healthcare system by a l… https://t.co/HIeq7w1baX" +07/01/2018,Economists,@umairh,“Do Americans Understand How Bad Trumponomics is Going to Be For Them?” by @umairh https://t.co/xY9es4gN52 https://t.co/M7hxk8ppqj +07/01/2018,Economists,@umairh,Real transformation is not just possible but necessary. The bad guys will win if Americans can't design a better so… https://t.co/ltWtbOogQT +07/01/2018,Economists,@umairh,Americans have this myth of themselves as radicals and revolutionaries but the truth is that incremental change def… https://t.co/c4m5BwHji4 +07/01/2018,Economists,@umairh,"I understand that you guys are scared. Americans live in a permanent, crippling state of fear. But you need to stop… https://t.co/A7wgGo7mZ2" +07/01/2018,Economists,@umairh,"Don't settle for these half-baked compromises. You will never, ever end up at a functioning society that way. You w… https://t.co/sRW2HkTu1P" +07/01/2018,Economists,@umairh,"So far, here's what's happening. The bad guys make Gestapos and paramilitaries. You guys say, ""Oh my god! This is t… https://t.co/0079VKVX7w" +07/01/2018,Economists,@umairh,You guys need to get real and think about what institutions make a working society. Gestapos? Or national health se… https://t.co/WWNBjmko7q +07/01/2018,Economists,@umairh,"Americans, man. The longer you succumb to this game of incremental change the longer the kleptocrats have you by th… https://t.co/zUyUOn71qo" +07/01/2018,Economists,@umairh,bromance https://t.co/MFcIixpyVl +07/01/2018,Economists,@umairh,So said every pundit about every good and decent thing in human history https://t.co/bUnNYxZHuy +07/01/2018,Economists,@umairh,I just published “Do Americans Understand How Bad Trumponomics is Going to Be For Them?” https://t.co/VjT4hwQCZF +07/01/2018,Economists,@umairh,ah fuck man i feel so bad for spain +07/01/2018,Economists,@umairh,"I told you guys already, Putin's gonna score the winning goal in the final match." +07/01/2018,Economists,@umairh,RT @EnglishLIUBklyn: “Ten Techniques Authoritarians Use to Bend and Twist Reality (and How to Fight Them): The Authoritarian’s Rhetorical P… +07/01/2018,Economists,@umairh,"""The Faction and the Revolution"" https://t.co/pQEpvjAK7R https://t.co/OmGIXu0KfC" +07/01/2018,Economists,@umairh,RT @NetraHalperin: This is AWESOME! “The Faction and the Revolution” by @umairh https://t.co/5JO7189ajU +07/01/2018,Economists,@umairh,RT @kaliaragorn: “(Why) American Collapse is Extraordinary” by @umairh https://t.co/d5qQHRJgdt #usa #collapse #danger @matteorenzi +07/01/2018,Economists,@umairh,"No, people who do this are totally not fascists, why would anyone call them that https://t.co/mybn2R0jxP" +07/01/2018,Economists,@umairh,"RT @RVAwonk: The founder of Patriot Prayer — i.e., the guy who led a(nother) riot in PDX today — is running as a Republican Senate candidat…" +07/01/2018,Economists,@umairh,"True, you can’t compare a thing to itself. https://t.co/dHjKaO0y9b" +07/01/2018,Economists,@umairh,@ianjbeattie Ha. Exactly. Stone Age men. +06/30/2018,Economists,@umairh,RT @msbonniekay: “Why American Life is Traumatizing Americans But They Don’t Know it” by @umairh https://t.co/XKr66WgiUY +06/30/2018,Economists,@umairh,RT @GlobeMCramer: Awful scene on the orange line. A woman’s leg got stuck in the gap between the train and the platform. It was twisted and… +06/30/2018,Economists,@umairh,RT @doriantaylor: @umairh ƒlol https://t.co/6vaHC1yAJ6 +06/30/2018,Economists,@umairh,Bestill their poor cold dead hearts +06/30/2018,Economists,@umairh,"American pundits delicately approaching socialism with shock, confusion, bewilderment, like Stone Age men hesitantl… https://t.co/dWtesAc1Vt" +06/30/2018,Economists,@umairh,whaaaaat a goaaaaalllll +06/30/2018,Economists,@umairh,"@ferlelo Dear Fernando, thank you—twice!!" +06/30/2018,Economists,@umairh,RT @harikunzru: Imagining a crowdsourced 'David Simon Project' in which every right wing twitter troll is insulted and blocked until the en… +06/30/2018,Economists,@umairh,I just published “The Faction and the Revolution” https://t.co/fu9G4icyk5 +06/30/2018,Economists,@umairh,"RT @stevesilberman: This is 30,000 people amassing in DC right now to protest Trump's brutal immigration policy, in a march announced just…" +06/30/2018,Economists,@umairh,"RT @_SJPeace_: This elderly man is Rabbi Waskow. He was arrested protesting outside an ICE facility in Philadelphia. + +RETWEET THIS! https:…" +06/30/2018,Economists,@umairh,Hahahahahahaha https://t.co/OKAfXkdDO7 +06/30/2018,Economists,@umairh,RT @tom_nuttall: Don't cry 4-3 Argentina +06/30/2018,Economists,@umairh,RT @Amy_Siskind: Love this. https://t.co/XQrv17VKum +06/30/2018,Economists,@umairh,RT @RAICESTEXAS: Starting now!!! Tune in https://t.co/SmJlnHYapF +06/30/2018,Economists,@umairh,RT @waltshaub: “The marches taking place across the country this weekend are really about the soul of America.” https://t.co/BrmStCWMEB +06/30/2018,Economists,@umairh,"RT @BarbaraHubbard: “America, We Need to Talk About the Last Ten Days” by @umairh https://t.co/tNJmYrogiA" +06/30/2018,Economists,@umairh,What a match. Quality stuff. +06/30/2018,Economists,@umairh,"If you want to beat authoritarianism, offer a new social contract. Made of new institutions (like ICE etc). Time fo… https://t.co/SkxvPcOS3M" +06/30/2018,Economists,@umairh,"If you want to beat authoritarianism, offer a new social contract. Say it with me. https://t.co/hSu14ZxJuR" +06/30/2018,Economists,@umairh,Putin wins https://t.co/B7pgsJpQPk +06/30/2018,Economists,@umairh,"RT @Medium: Self-harm. Abuse. Anorexia. A troubling portrait of American childhood is on display on +this social media platform—and parents…" +06/30/2018,Economists,@umairh,Ahh poor Argentina man. France just hit the turbo button +06/30/2018,Economists,@umairh,what a goaaaaaaaaaaaal +06/30/2018,Economists,@umairh,100% this https://t.co/PFk9obnSvJ +06/30/2018,Economists,@umairh,@RyanMartin_7 ahahaha rovers!! +06/30/2018,Economists,@umairh,"RT @pbnshah: Capitalists: capitalism is the only system that lets you chase your dreams + +Also capitalists: fuck art degrees, history degree…" +06/30/2018,Economists,@umairh,"i have serious concentration problems watching sportsball this early in the day, it's harder than work" +06/30/2018,Economists,@umairh,"RT @sannewman: I got an email from FreshDirect today that started ""Dear Valued Customer"" and I really think this is what all people should…" +06/30/2018,Economists,@umairh,@smarimc @aral @glynmoody You’re a member of parliament and you don’t know the first thing about modern politics? A… https://t.co/78FHL1lobE +06/30/2018,Economists,@umairh,"LOL how do you think we ended up here, champ https://t.co/HJ34q3lnIs" +06/30/2018,Economists,@umairh,Beating authoritarianism takes a new social contract. She gets it. In fact the campaign is evidence of it. It’s a p… https://t.co/SW4yr8XAIt +06/30/2018,Economists,@umairh,You’re battling disinformation with a strategic intent to destroy your credibility. Propaganda designed carefully i… https://t.co/gfJxsEz8mc +06/30/2018,Economists,@umairh,@andrewbarss @Ez4u2say_Janis Exactly right. A crucial point that should be made often! +06/30/2018,Economists,@umairh,@tonyjoyce Hahaha love it! +06/30/2018,Economists,@umairh,@smarimc @aral @glynmoody Iran is a democracy. Pakistan is a democracy. Nazi Germany was not Soviet Russia in ideol… https://t.co/ptToUGbqU8 +06/30/2018,Economists,@umairh,RT @Eyaansonia: « Here’s a tiny question. Do you like the way the world is going? I don’t — and I doubt you do either. But what’s really go… +06/30/2018,Economists,@umairh,RT @bnowhereblog: “(Why) The English-Speaking World is the New Soviet Union” by @umairh https://t.co/lbDCr9JH6X +06/30/2018,Economists,@umairh,"RT @gpetriglieri: There can’t be civility without civilization, another great essay by @umairh https://t.co/VkdrnpMPr9" +06/30/2018,Economists,@umairh,"RT @Medium: ""When you tolerate a fool, a monster, or a tyrant — you are civilizing no one, but dehumanizing everyone,"" writes Umair Haque h…" +06/30/2018,Economists,@umairh,"""The Astonishing Pointlessness of 'Nuance'"" https://t.co/9U74kSdSuZ https://t.co/jDJtbifLAn" +06/30/2018,Economists,@umairh,"RT @Medium: ""America is at a crossroads,"" writes @umairh. ""A point of no return. A democratic society cannot really survive these assaults,…" +06/30/2018,Economists,@umairh,"ok i'm done, there's your friday night rant, i got too much sun so i'm especially vampire sick which makes me extra… https://t.co/1V0FRMaomu" +06/30/2018,Economists,@umairh,None of this should be especially challenging. What gets in the way is America's bizarre Soviet style dedication to… https://t.co/yTsfZt8p5X +06/30/2018,Economists,@umairh,"Whether or not you want to call all that ""socialism"" is besides the point, we don't need to debate Trotskyism. It's… https://t.co/1HNHN190wB" +06/30/2018,Economists,@umairh,"Furthermore, if we want to go on having even higher levels of health, sanity, meaning, purpose, belonging, intellig… https://t.co/kX6BfMKZGW" +06/30/2018,Economists,@umairh,"The reason for that is very simple, wealth will go on piling up at the top, the middle will hollow out, thanks to t… https://t.co/SBkIwyMcfo" +06/30/2018,Economists,@umairh,"Whether or not America's ideologically Soviet pundit class can deal with, whether or not American patriarchal white… https://t.co/TK1v13E9nf" +06/30/2018,Economists,@umairh,@ddn Hahahaha awesome +06/30/2018,Economists,@umairh,"Is it because everyone hates capitalism, hmmm https://t.co/RJHvqPV5OP" +06/30/2018,Economists,@umairh,"It’s a fools game. And part of the challenge is shattering these little old old boys clubs that keep America dumb, mean, blind, and cruel." +06/30/2018,Economists,@umairh,"Why is it that instead of learning something from the DSA’s win, pundits are trying to deny it matters? Always drag… https://t.co/LlTkiiiE8K" +06/30/2018,Economists,@umairh,"Here’s the lesson, do the opposite of what pundits say. https://t.co/yBs7DWYr2z" +06/29/2018,Economists,@umairh,"RT @TheChickLivesOn: I've noticed there's a lot of dicks in congress, but not a pair of balls in sight. Weird. 🤔" +06/29/2018,Economists,@umairh,An idiot president about to put another legendary American company out of business. https://t.co/dqiREG8GWF +06/29/2018,Economists,@umairh,@karma_musings You make a very good point 😊 +06/29/2018,Economists,@umairh,Like a worm https://t.co/hDuqUG5TsJ +06/29/2018,Economists,@umairh,"Yup. They live in Soviet America, where the party is always right https://t.co/qaVt4DItLV" +06/29/2018,Economists,@umairh,It’s fascinating to me in a kind of morbid way how every single thing I hear a conservative say by now is some way… https://t.co/HbgK2IFMtB +06/29/2018,Economists,@umairh,"RT @quollhorreur: This is an amazing thread. Thank you for sharing. + +You should all have a read. https://t.co/vbKCP4JbJn" +06/29/2018,Economists,@umairh,RT @MaryLizThomson: Offer a real social contract with compassion and heart - “Beating Authoritarianism Isn’t as Simple as You Think. It’s E… +06/29/2018,Economists,@umairh,@dizzeehendrix i have a cupcake +06/29/2018,Economists,@umairh,"RT @Medium: In many cases, people who appear ""lazy"" are actually struggling with something much deeper, writes @dr_eprice. Approach them wi…" +06/29/2018,Economists,@umairh,“The Faction and the Sect” https://t.co/8uBgH6chit +06/29/2018,Economists,@umairh,“The Astonishing Pointlessness of “Nuance” https://t.co/GX7z9Htswp +06/29/2018,Economists,@umairh,RT @annnabobs: Harry Potter and the... https://t.co/V4hXeXYkWw +06/29/2018,Economists,@umairh,RT @Medium: Now more than ever we need to internalize and practice the values of loving-kindness https://t.co/v9wqgpM0nb +06/29/2018,Economists,@umairh,@perfal You’re very welcome and thanks!! +06/29/2018,Economists,@umairh,LOL check the replies https://t.co/9hkR2rqQGt +06/29/2018,Economists,@umairh,"RT @robertjweisberg: When you combine every kind of societal collapse, you get what we have now: “(Why) American Collapse is Extraordinary”…" +06/29/2018,Economists,@umairh,I just published “The Astonishing Pointlessness of ‘Nuance’” https://t.co/v5EvW4cWtq +06/29/2018,Economists,@umairh,RT @ColorOfChange: Terry Crews should not be facing backlash for being brave enough to speak out about his sexual assault. #WeGotYouTerry h… +06/29/2018,Economists,@umairh,"RT @shannonrwatts: .@NRA’s Dana Loesch in 2016: Reporters are the ""rat-bastards of the Earth"" who should be ""curb-stomped."" + +https://t.co/…" +06/29/2018,Economists,@umairh,"if these guys had been around during the enlightenment, we would have found a million ways never to end up at democ… https://t.co/BqavCLFksN" +06/29/2018,Economists,@umairh,when the leader of your new enemy is better than the leader of you https://t.co/82XsejRIvF +06/29/2018,Economists,@umairh,"@tonyjoyce @johandewal I don’t disagree, I think we need to understand it a little better psychologically" +06/29/2018,Economists,@umairh,As much as I love social democracy ❤️💕 brocialists are still the worst +06/29/2018,Economists,@umairh,"RT @ddale8: Freeland announces Canada is indeed imposing its retaliatory tariffs agains the U.S. on Sunday, Canada Day: ""Canada has no choi…" +06/29/2018,Economists,@umairh,"The nuance whizzed over our heads. Data rained down like hellfire. Facts sang through the air, exploding above us.… https://t.co/rnu4qNPeBc" +06/29/2018,Economists,@umairh,When you’re being held hostage by a minority of crazy extremists https://t.co/WgkJWLDkWF +06/29/2018,Economists,@umairh,If you’re bad in this life you’re reborn as a nuance-bombing centrist in the next +06/29/2018,Economists,@umairh,RT @thehill: Protesters greet Melania with inflatable Trump in Klan outfit at migrant center https://t.co/LOe6zSRHEy https://t.co/xz4QkGqVSf +06/29/2018,Economists,@umairh,I just published “The Faction and the Sect” https://t.co/Ft1ZiY5mBg +06/29/2018,Economists,@umairh,"""The Story"" - @umairh https://t.co/TgWgeoa7iO https://t.co/smgvLvA7RW" +06/29/2018,Economists,@umairh,RT @johnchavens: “Do Americans Understand a Little Bit of Socialism is Good For Them?” by @umairh https://t.co/sPl6i94h4U Excellent read. +06/29/2018,Economists,@umairh,"RT @crampell: Member states of UN migration agency reject Trump's nominee for director general, repudiating historic American control of th…" +06/29/2018,Economists,@umairh,RT @froomkin: Hug your local journalist today. +06/29/2018,Economists,@umairh,So we have serious failures to reckon with. The bad guys are winning because they’re better at the basic arts of po… https://t.co/xSz0zUoxUy +06/29/2018,Economists,@umairh,This idea deficit in liberalism is so bad now in fact that American liberals are trying to claim social democracy f… https://t.co/wbqYFQF5i4 +06/29/2018,Economists,@umairh,That’s why I keep all my money in the form of vintage synths https://t.co/Xnsby967k3 +06/29/2018,Economists,@umairh,Anyone want to tell me the last time liberals had a new idea? Maybe in 1987? See how these junior pundits regurgita… https://t.co/SScIiVkbEC +06/29/2018,Economists,@umairh,See guys the GOP did a few smart things. They turned over the reins to a new generation. They moved the window righ… https://t.co/wUJuAS2hkf +06/29/2018,Economists,@umairh,"You blew it man. I love you, but your generation fucked us. You didn’t fight when it mattered and you didn’t make r… https://t.co/FBB9had0Uw" +06/29/2018,Economists,@umairh,"You know guys, America’s economy is based on consumption. Of imports. Pulling out of all these trade deals is laugh… https://t.co/sIQ71WbQ91" +06/29/2018,Economists,@umairh,The bizarre social construction of race in America https://t.co/afhFJcjMr4 +06/29/2018,Economists,@umairh,LOL https://t.co/kpUYJZraMM +06/29/2018,Economists,@umairh,@scamandrio Hahahah ah man I forgot about that cool guy +06/29/2018,Economists,@umairh,You know it’s funny. About a decade ago I wrote exactly that all boats rising line in a column and all the pundits… https://t.co/DY7Qmrt8se +06/29/2018,Economists,@umairh,"RT @ggreenwald: @Milbank The Dem Party has collapsed as a political force in the US, and a major reason is this constant demand from the es…" +06/29/2018,Economists,@umairh,@a_mutante I read that if they give you a big enough tv you’ll be happy forever +06/29/2018,Economists,@umairh,"Exactly so. Look, the great lesson of the last century was that (new) poverty sparks authoritarianism, fascism, col… https://t.co/ByasEW4k2J" +06/29/2018,Economists,@umairh,"Revolt, obviously https://t.co/NjRiCgxkMC" +06/29/2018,Economists,@umairh,RT @MITGoodCosJobs: “An under-appreciated way to solve America’s jobs problem and rebuild the middle class is to turn the millions upon mil… +06/29/2018,Economists,@umairh,"Exactly. This is the central point that American thought really hasn’t reckoned with, and won’t, because it would h… https://t.co/WvB66mmR6X" +06/29/2018,Economists,@umairh,But aren’t you doing just that too when you tell people what “their job” is? https://t.co/60pXgwtCb4 +06/29/2018,Economists,@umairh,This is the best thing capitalism has ever done for us https://t.co/cIdwRa8hLA +06/29/2018,Economists,@umairh,RT @rubycat24: “The Choice This Decade is (Really) Asking Us to Make” by @umairh https://t.co/K1EOawjltS +06/29/2018,Economists,@umairh,RT @danielleiat: Rob Hiaasen was murdered on his wife’s birthday. They’d just celebrated their 33rd anniversary. “He was just the best husb… +06/29/2018,Economists,@umairh,Note that American maternal mortality is already the lowest among its peers. This will crater it to poor country le… https://t.co/sikk3tcXIA +06/29/2018,Economists,@umairh,"RT @SarahLerner: John Legend: “I don’t care about fucking Sarah Sanders. Reunite the fucking kids with their families, then we’ll talk abou…" +06/29/2018,Economists,@umairh,RT @abogada_laura: My 5-yr-old client can’t tell me what country she is from. We prepare her case by drawing pictures with crayons of the g… +06/29/2018,Economists,@umairh,Firehosed https://t.co/bFA35mACE5 +06/29/2018,Economists,@umairh,You guys should know this stuff by now. Read about it. Everything will make a lot more sense. https://t.co/ZRbDF5KWFd +06/29/2018,Economists,@umairh,"RT @RectorSun: These are the five victims killed at @capgaznews today. +Rob Hiaasen https://t.co/CBJAVUuJNQ +Wendi Winters https://t.co/kKhVl…" +06/29/2018,Economists,@umairh,They’re using a model literally designed by the Russians called the firehose. That’s it’s point. So tyranny has inn… https://t.co/WBmP35kcyd +06/29/2018,Economists,@umairh,One of the things you guys need to think about is: what is a “political view”? Can I believe any old crazy horseshi… https://t.co/ewygmVJtWe +06/29/2018,Economists,@umairh,"Maybe, but modernity was not. And the question isn’t about the West vs the rest, but whether we want modern, open,… https://t.co/6YhJZlvSR7" +06/29/2018,Economists,@umairh,"@nullnein @MishoMoney Your points are well taken. The crisis (for me) wasn’t cause but effect, a lack of investment in institutions was" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: We replicated our key tests using the new data, and essentially confirm our original findings. The full write-up on the out-…" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: IMF released ""Global Debt Database"" last month which added 105 countries to our original sample of 30 countries (the new sam…" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: A thread on out-of-sample replication of my 2017 QJE paper with @profsufi and @EmilVerner titled ""Household Debt and Busines…" +06/11/2018,Economists,@profsufi,"Videos of the entire program, with talks by Ben Bernanke, Raghu Rajan, and others are available here: https://t.co/bpuVwQ6QjX. Enjoy!" +06/11/2018,Economists,@profsufi,My co-author @AtifRMian also presented a summary of our piece coming out in the Journal of Economic Perspectives at… https://t.co/n5U5Muz0n7 +06/11/2018,Economists,@profsufi,Great people at @SHouseofFinance put on an amazing Nobel Symposium on Money and Banking a couple of weeks ago. I ha… https://t.co/bdx791vP7l +04/28/2018,Economists,@profsufi,"Either Fed wasn't responsible for compression in credit risk spreads during easy money period, or we are in for a s… https://t.co/XIVnEl8hdm" +04/28/2018,Economists,@profsufi,"In 2005 tightening cycle, credit risk premium fell and stayed low for some time, and then jumped tremendously. https://t.co/JPZpugAiqh" +04/28/2018,Economists,@profsufi,For 8 years all my Wall Street friends said the Fed was fueling a credit bubble by keeping rates low/QE. Rates are… https://t.co/v8zOJjVOzS +04/28/2018,Economists,@profsufi,"I was updating a credit cycle chart today for a talk at @ChicagoBooth: this seems scary, right? https://t.co/L66vDXAl04" +04/21/2018,Economists,@profsufi,RT @SairaSufi: https://t.co/ODOhzx5Vyx +04/21/2018,Economists,@profsufi,"RT @SairaSufi: Aplastic Anemia has changed our lives forever. However, one thing that will always remain constant is that these two can mak…" +04/21/2018,Economists,@profsufi,RT @SairaSufi: https://t.co/TVAY3hIX7Z https://t.co/klLXhoMwmt +04/21/2018,Economists,@profsufi,"I usually stick to economics on Twitter, but I want to help my beloved nephew Hadi Rasheed out; he has been in hosp… https://t.co/yYEfHE2BKU" +04/03/2018,Economists,@profsufi,"Economic expectations are infected by partisan bias, and this effect is becoming stronger over time. But such parti… https://t.co/nd8rWJWGma" +04/03/2018,Economists,@profsufi,And no evidence from credit card spending of a boost by Republicans relative to Democrats. Enthusiasm on the future… https://t.co/YtkbFfBdXH +04/03/2018,Economists,@profsufi,But views on the economy don't translate into higher spending on autos or using credit cards. Here is autos: https://t.co/n5cYMEVsnZ +04/03/2018,Economists,@profsufi,Here is effect on economic expectations through end of 2017. No sign of abatement whatsoever. Repubs ecstatic about… https://t.co/Ch27NbXuzm +04/03/2018,Economists,@profsufi,"Just posted revision of our partisan bias, economic expectations, and household spending paper. Trump effect on exp… https://t.co/V663ymY4FK" +03/12/2018,Economists,@profsufi,"RT @mdc: If you're looking for the seeds of the next recession, study the ratio of household debt to GDP, according to @profsufi @AtifRMian…" +03/06/2018,Economists,@profsufi,"RT @ProSyn: Credit-supply expansions, not technology shocks, are the key drivers of economic activity. - @profsufi @AtifRMian https://t.co/…" +03/05/2018,Economists,@profsufi,"RT @ProSyn: According to @profsufi @AtifRMian, the Great Recession revealed a fundamental truth about business cycles: it's all about expan…" +03/01/2018,Economists,@profsufi,"RT @equitablegrowth: What changes in the flow of credit to households can tell us about the overall cycle of the economy + +Here’s @nick_bun…" +03/01/2018,Economists,@profsufi,"RT @jeremychrysler: @profsufi There's an NBER working paper on a similar topic. ""counties experiencing relative economic decline did experi…" +02/28/2018,Economists,@profsufi,A project idea for labor economists: is the opioid epidemic a cause or an effect of the longer run decline in prime… https://t.co/rEOiAZ7mIL +02/26/2018,Economists,@profsufi,RT @nberpubs: Empirical evidence accumulated over the last decade supports the view that credit-driven household demand is an important so… +02/26/2018,Economists,@profsufi,"Great @MoneyBanking1 post on #usmpf2018 paper: does QE actually work? If so, how and by how much? https://t.co/7cYeAuuNot" +02/23/2018,Economists,@profsufi,RT @davidmwessel: Krugman. Two surprises in Europe: 1) impact of three words from Draghi was “awesome” 2)political cohension of eurozone. I… +02/23/2018,Economists,@profsufi,RT @davidmwessel: Boston Fed’s Eric Rosengren eviscerates #USMPF paper “Skeptical View of the Impact of the Fed’s Balance Sheet” https://t… +02/23/2018,Economists,@profsufi,"RT @greg_ip: .#USMPF2018 paper: ""The effects of [quantitative easing] are likely more modest than generally claimed."" Therefore: do much mo…" +02/23/2018,Economists,@profsufi,"RT @davidmwessel: Greenlaw, Hamilton, Harris, West at #USMPF say QE didn’t pack as much punch as others say. Dudley disagrees. https://t.…" +02/23/2018,Economists,@profsufi,"RT @mckonomy: NYFed's Dudley on QE: ""I would take a much less skeptical view of the Fed's balance sheet as a tool of monetary policy"" than…" +02/23/2018,Economists,@profsufi,"RT @pdacosta: Fed's Dudley says QE may work best if it's done in an open-ended fashion, pushes back against view that asset purchases were…" +02/23/2018,Economists,@profsufi,RT @NickTimiraos: New research argues the Fed's bond-buying programs may have been less stimulative than previously believed https://t.co/4… +02/23/2018,Economists,@profsufi,"RT @mckonomy: One unappreciated aspect of QE that's not in the paper is the psychological aspect, one official tells me. The markets though…" +02/23/2018,Economists,@profsufi,"RT @greg_ip: Bonds sold off in 2013 because of ""taper tantrum."" Failure to sell off last year as Fed began to contract balance sheet was th…" +02/23/2018,Economists,@profsufi,Here is Eric Rosengren discussion of #USMPF2018 paper: https://t.co/IaahhIQnnG +02/23/2018,Economists,@profsufi,And we are off. #USMPF2018 paper argues QE was not as effective as claimed. Here is Bill Dudley’s discussion: https://t.co/lKgkQopsiZ +02/23/2018,Economists,@profsufi,"In NYC for #USMPF2018 by IGM of @ChicagoBooth. Monetary policy discussion including Dudley, Rosengren, Blanchard, M… https://t.co/sDgJefoJaQ" +02/19/2018,Economists,@profsufi,And here is second video where the credit-driven household demand channel and the link to rising income inequality… https://t.co/ZcTBk7P6u1 +02/19/2018,Economists,@profsufi,The great folks at @chicagobooth also produced two videos where I explain the credit-driven household demand channe… https://t.co/lv6YVJ3fbC +02/19/2018,Economists,@profsufi,"We outline the ""credit-driven household demand channel"" as a central lesson of research conducted since the Great R… https://t.co/QBLXr8AH55" +02/19/2018,Economists,@profsufi,What have we learned about finance and macroeconomics over the last 10 years? New study by @AtifRMian and I: https://t.co/m7UDwD8PxB +02/08/2018,Economists,@profsufi,"And importantly, we find no evidence that this increased political bias in economic expectations has any effect on… https://t.co/IrlCvzocmP" +02/08/2018,Economists,@profsufi,This is part of broader project showing that political polarization is leading to increasingly biased views on the… https://t.co/Do98bBEPuq +02/08/2018,Economists,@profsufi,"Actually, I should really do R in red and D in blue https://t.co/5z4KdJmTb1" +02/08/2018,Economists,@profsufi,Just updated Gallup data on political affiliation and view of economy. If you thought people would become less pola… https://t.co/WRsK6uGBRs +01/24/2018,Economists,@profsufi,Second part of a series in which I discussion the relationship between income inequality and the growth in househol… https://t.co/8F7KvUtu5j +01/24/2018,Economists,@profsufi,RT @chicagoboothrev: Line of Inquiry: Amir Sufi (@profsufi) on inequality's effect on credit availability - the second part of a two-part s… +01/18/2018,Economists,@profsufi,"In memory of Bob LaLonde, this paper is great and enormously prescient. It shows that laid off workers see long ter… https://t.co/psbreJdaSY" +01/14/2018,Economists,@profsufi,RT @CostBenefitKMA: Line of Inquiry: Amir Sufi on household debt and business cycles - Chicago Booth Review https://t.co/mZw2GULAYC via @ch… +01/14/2018,Economists,@profsufi,"RT @lisaabramowicz1: Financial crises happen ""after an unsustainable rise in household debt...These booms sow the seeds of their own destru…" +01/11/2018,Economists,@profsufi,There is a paper almost ready for public with @AtifRMian that I describe in this video. Paper should be out by end… https://t.co/VIA11GCSQp +01/11/2018,Economists,@profsufi,"10 years after onset of Great Recession, what have we learned? My thoughts with @chicagoboothrev at @chicagobooth https://t.co/TF6VqvMHn3" +01/11/2018,Economists,@profsufi,"RT @chicagoboothrev: Introducing Chicago Booth Review's Line of Inquiry video series. In this first of a two-part edition, Amir Sufi (@prof…" +12/06/2017,Economists,@profsufi,"In fact, I find the most insightful book to understand our current politics was written 30 years ago: https://t.co/ukki088ad8" +12/06/2017,Economists,@profsufi,"Fantastic piece by Boxell, Gentzkow, and Shapiro: Blame TV not social media for the rise in political polarization. +https://t.co/rsaC6k7ZaO" +12/01/2017,Economists,@profsufi,@adamdavidson Dreamland by Quinones must be on this list. Opioid epidemic is one of the most important factors in America today. +12/01/2017,Economists,@profsufi,"@gilliantett @FT This is the main argument put forward by our recent research paper: https://t.co/clTVEsybwf +We wil… https://t.co/LzXp2Fxlsz" +12/01/2017,Economists,@profsufi,Great analysis by @gilliantett of @FT on Trump voters and economic sentiment. Bottom line: in forming economic expe… https://t.co/jOCR1E7FpN +11/20/2017,Economists,@profsufi,"RT @ChicagoBooth: Two Nobel laureate winners, Eugene F. Fama and Richard H. Thaler, discuss whether markets are efficient. https://t.co/sbK…" +11/08/2017,Economists,@profsufi,Productivity slowdown in advanced economies one of the top mysteries in economics today. Chad Syverson explains: https://t.co/ly5XzJ5lSq +11/08/2017,Economists,@profsufi,"Chad Syverson, our productivity expert at @chicagobooth explains why productivity slowdown in US is real, not just… https://t.co/c7XZO6ktoB" +10/23/2017,Economists,@profsufi,RT @liorjs: @SeminaryCoOp You also get to hear great research by @profsufi & Stephanie Stern. The book we wrote is available for free here:… +10/23/2017,Economists,@profsufi,"RT @liorjs: I'll speak about The Villages, FL, its fake history & historic preservation 6pm tonight at @SeminaryCoOp bookstore. https://t.c…" +10/23/2017,Economists,@profsufi,"RT @UChicagoLaw: Oct 23 @SeminaryCoOp: Fennell, @liorjs, Stern, @profsufi discuss ""Evidence & Innovation in Housing Law and Policy"" https:/…" +10/19/2017,Economists,@profsufi,"IGM at @ChicagoBooth experts panel on behavioral econ -- unanimous support for importance of psychological insights: +https://t.co/fnFt7KW90n" +10/18/2017,Economists,@profsufi,"RT @davidmwessel: IGM survey of US, European economists rejects notion that easy monetary policy was a major cause of 2008 crisis https://t…" +10/17/2017,Economists,@profsufi,RT @BCAppelbaum: This @chicagobooth poll on causes of the financial crisis is a pretty good example of the wisdom of a crowd. https://t.co/… +10/17/2017,Economists,@profsufi,"@rortybomb @ChicagoBooth My personal view is that this is because question asked about ""financial crisis"" as opposed to ""Great Recession.""" +10/17/2017,Economists,@profsufi,Remarkable: ranking of financial crisis causes identical among US and European economists in @ChicagoBooth IGM poll: https://t.co/oYE9IwXISv +10/17/2017,Economists,@profsufi,Economists in @Chicagobooth IGM poll don't believe GSEs or loose monetary policy main causes of financial crisis: https://t.co/oYE9IwXISv +10/17/2017,Economists,@profsufi,"9 years later, economists believe flawed financial sector regulation and supervision main cause of financial crisis: https://t.co/oYE9IwXISv" +10/17/2017,Economists,@profsufi,What caused the financial crisis? Economic experts in the IGM panel at @ChicagoBooth weigh in: https://t.co/oYE9IwXISv +10/16/2017,Economists,@profsufi,The opioid epidemic since 2000 is one of the most important stories of the US in 21st century. Great reporting: https://t.co/cwjXcxkSyN +10/16/2017,Economists,@profsufi,"The @washingtonpost article on opioid legislation is incredible. A must-read. +https://t.co/cwjXcxkSyN" +10/09/2017,Economists,@profsufi,"In honor of @r_thaler, did anybody notice the tremendous drop in market confidence in Yale survey? I know Thaler fo… https://t.co/WvIEJ4OPvI" +10/09/2017,Economists,@profsufi,Panel discussion at @ChicagoBooth featuring Nobel Prize winner @R_Thaler https://t.co/vzKfNcYoDF +10/09/2017,Economists,@profsufi,The man of the hour at @ChicagoBooth https://t.co/DIgXYTUH8X +10/09/2017,Economists,@profsufi,Dean Rajan takes the podium at Nobel ceremony at @ChicagoBooth https://t.co/t0lbqascge +10/09/2017,Economists,@profsufi,Celebrating Nobel at @ChicagoBooth right now https://t.co/x1uoUI770F +10/09/2017,Economists,@profsufi,"RT @BCAppelbaum: My piece on Richard Thaler's Nobel, which is being regularly updated: https://t.co/C7nB5e4Tcp" +10/09/2017,Economists,@profsufi,"RT @ChicagoBooth: Congratulations to #ChicagoBooth prof Richard H. Thaler (@R_Thaler) , 2017 #NobelPrize laureate in Economic Sciences! htt…" +09/14/2017,Economists,@profsufi,RT @edwardnh: How the 1980s US Boom and early 90s Bust was a precursor to the housing bubble https://t.co/PJD9IOXL1Y @M_C_Klein @profsufi +09/13/2017,Economists,@profsufi,"RT @M_C_Klein: Anyone awake in the 1980s should have known about the dangers in the 2000s + +https://t.co/QdkKJchcIP + +<-- me on the latest Mi…" +09/12/2017,Economists,@profsufi,Pretty definitive evidence of solid median household income growth in both 2015 and 2016 fro the Census: https://t.co/rxNiZ1u7Ml +09/12/2017,Economists,@profsufi,Census median household income for 2016 out. A very important economic release: https://t.co/XuzXNtrSmN +09/12/2017,Economists,@profsufi,"@MatthewPhillips @pewresearch So same thing shows up in three independent sources: Michigan, Gallup, and Pew." +09/12/2017,Economists,@profsufi,"RT @MatthewPhillips: @profsufi It is wild. This switcheroo in overall partisan optimism/pessimism also caught my eye. via @pewresearch +htt…" +09/12/2017,Economists,@profsufi,Rise in partisan bias in economic expectaitons according to Michigan Survey of Consumers data https://t.co/hf3qwTE9s6 +09/12/2017,Economists,@profsufi,Rise in partisan bias in economic expectations according to Gallup data https://t.co/U1iosTSjLW +09/12/2017,Economists,@profsufi,Both Gallup and Michigan show substantial rise in partisan bias in economic expectations over time. Reaching amazing levels since Trump. +09/12/2017,Economists,@profsufi,"Revision of partisan bias and economic expectations just posted, thanks to @Claudia_Sahm and others for comments!: https://t.co/G7goSnf6aB" +09/06/2017,Economists,@profsufi,RT @ChicagosMayor: To all #DREAMers: You are welcome in the City of Chicago. This is your home. Come to school and pursue your dreams. #DAC… +08/24/2017,Economists,@profsufi,RT @amagi1: The Fama Portfolio with contributions from @JohnHCochrane @CliffordAsness @profsufi & more! https://t.co/M1CTiJH7ZE +08/21/2017,Economists,@profsufi,"RT @IlliniBizDean: A plea to my male senior colleagues in economics + +https://t.co/b6IGqSeHdi" +08/14/2017,Economists,@profsufi,"Republican voters showing economic optimism in surveys, but it doesn't seem to translate into actual spending. https://t.co/fPTJ0fuqF8" +08/14/2017,Economists,@profsufi,Update: we have auto sales through June 2017: still no evidence of a rise in auto spending in Republican leaning co… https://t.co/U3wC0B0OZM +08/14/2017,Economists,@profsufi,This is subject of our recent paper: https://t.co/nKTIWdPuIz +08/14/2017,Economists,@profsufi,Republican voters became much more optimistic about the economy since November 2016 -- does it affect actual household spending? +08/12/2017,Economists,@profsufi,the credit risk premium usually a good indicator of potential turn in risk -- i will be watching this in coming week https://t.co/RyDcHO3CDd +08/10/2017,Economists,@profsufi,RT @gkiely: Beautiful Spanish edition of House of Debt by @profsufi & @AtifRMian published by @RBALibros @UChicagoPress https://t.co/jIRb81… +08/03/2017,Economists,@profsufi,"Here is the NBER digest piece describing the research: +https://t.co/98WZW6kQkL" +08/03/2017,Economists,@profsufi,Paper is forthcoming in QJE. +08/03/2017,Economists,@profsufi,"Replication kit for ""Household Debt and Business Cycles Worldwide"" with @AtifRMian and @EmilVerner available here: https://t.co/tZABbB0bcl" +07/21/2017,Economists,@profsufi,RT @ChicagoBooth: Women are more harshly punished on Wall Street than men: https://t.co/NoYEACSfoR +07/20/2017,Economists,@profsufi,"RT @Neil_Irwin: Americans are becoming more partisan in attitudes about the economy, but it isn't translating into their spending. https://…" +07/18/2017,Economists,@profsufi,"Interesting: RMBS bankers potentially involved in mortgage fraud from 02-06 did not face discipline in labor market +https://t.co/4J7wb2QP9L" +07/17/2017,Economists,@profsufi,"Here is link again, may help explain why trump bump in consumer sentiment has not boosted spending: https://t.co/nKTIWdPuIz" +07/17/2017,Economists,@profsufi,Thanks to @Claudia_Sahm for great comments on our partisanship and economic expectations paper! Will incorporate in revision. +07/14/2017,Economists,@profsufi,RT @teasri: Great paper by @AtifRMian & @profsufi. h/t @M_C_Klein https://t.co/HNAoBXfBG6 +07/14/2017,Economists,@profsufi,RT @M_C_Klein: Clever paper from @AtifRMian & @profsufi on how consumer expectations don't seem to affect actual consumer spending https://… +07/14/2017,Economists,@profsufi,Why are retail sales weak despite trump jump in consumer sentiment? Our new research helps explain? https://t.co/nKTIWdPuIz +07/12/2017,Economists,@profsufi,RT @EmilVerner: Nice summary of my recent work with @AtifRMian and @profsufi on how credit expansions affect the real economy https://t.co/… +07/12/2017,Economists,@profsufi,"RT @equitablegrowth: .@AtifRMian, @profsufi & @EmilVerner find banking deregulation leads to a more amplified business cycles https://t.co/…" +06/05/2017,Economists,@profsufi,"@aliciaparlap Hi Alicia, did NYT ever do a 2016 zip code level presidential vote share data set? Are 2012 data available?" +04/28/2017,Economists,@profsufi,I am not sure why anyone takes seriously consumer sentiment shifts following elections. They don't translate into actual spending. +04/28/2017,Economists,@profsufi,Changes in consumer sentiment driven by who wins presidency has no predictive power for actual spending. https://t.co/clTVEsybwf +04/28/2017,Economists,@profsufi,Why didn't rise in measures of consumer sentiment following election lead to bump in GDP growth? See this: https://t.co/clTVEsybwf +03/29/2017,Economists,@profsufi,@Nate_Cohn do you have a good resource for me for the official voter files you used to estimate turnout in your piece yesterday? +03/03/2017,Economists,@profsufi,"When @HyunSongShin speaks, I listen. You should to. Very interesting views on long term rates https://t.co/1OaZn4wXjm" +03/03/2017,Economists,@profsufi,RT @BIS_org: Possible feedback loop driving yields lower holds implications for #MonetaryPolicy:Shin #USMPF2017 https://t.co/fkdpkD1K6I htt… +03/03/2017,Economists,@profsufi,RT @BCAppelbaum: FISCHER: “There is almost no economic indicator that has come in badly in the last three months.” +03/03/2017,Economists,@profsufi,"RT @BCAppelbaum: In summary, the Federal Reserve is raising interest rates on March 15." +03/03/2017,Economists,@profsufi,RT @BIS_org: Lower yields may reflect investor risk management rather than signal economic weakness: Shin #USMPF2017 https://t.co/fkdpkD1K6I +03/03/2017,Economists,@profsufi,Another nice writeup of #usmpf2017 paper: https://t.co/Joe1JvUNrM +03/03/2017,Economists,@profsufi,Summary of #usmpf2017 paper: https://t.co/5b4yVTOfww +03/03/2017,Economists,@profsufi,RT @pdacosta: The Fed could be on the verge of making a big mistake https://t.co/y6IpMSpSa5 #USMPF2017 +03/03/2017,Economists,@profsufi,"RT @greg_ip: .@ChicagoFed's Charlie Evans: if #USMPF2017 paper is right that inflation is a random walk, ""As a policy maker I would be horr…" +03/03/2017,Economists,@profsufi,"RT @federalreserve: Speech by Vice Chairman Fischer on monetary policy: by rule, by committee, or by both?: https://t.co/BgyJvoyvsp" +03/03/2017,Economists,@profsufi,RT @WSJecon: Fed’s Vice Chair Stanley Fischer: Collective decision-making is better than rule-based policy making https://t.co/niSIHr0W3V +03/03/2017,Economists,@profsufi,RT @KarenMracek: Updated list: Brainard and Dudley also here #USMPF https://t.co/4FnEuuEEBT +03/03/2017,Economists,@profsufi,RT @zerohedge: FED'S EVANS: CONCERNED BY SIGNS INFL EXPECTATIONS BELOW TARGET +03/03/2017,Economists,@profsufi,RT @KarenMracek: Here's the paper being presented at #USMPF Says Fed needs to overshoot its inflation target for year or two https://t.co/… +03/03/2017,Economists,@profsufi,"And we are off: #usmpf today with fischer, Evans, lacker, reinhart, shin among others." +03/03/2017,Economists,@profsufi,RT @RichmondFed: Jeffrey Lacker's remarks on inflation dynamics from the U.S. Monetary Policy Forum https://t.co/x2q95wJAww #usmpf +03/03/2017,Economists,@profsufi,RT @KarenMracek: Chicago Fed's Evans slides for the #USMPF posted online here https://t.co/E8QPfXmYtG +02/04/2017,Economists,@profsufi,"Over 20K faculty at U.S. universities and colleges against Trump immigration policies: +https://t.co/HK9nhRony6" +02/04/2017,Economists,@profsufi,"RT @AcademicsVsBan: 50 Nobel Laureates have now signed the petition denouncing the President's Executive Order: https://t.co/uXmBtfVXxT +#No…" +01/29/2017,Economists,@profsufi,"At latest count, 117 faculty at University of Chicago @UChicago voice opposition to Trump immigration EO: https://t.co/k5YXnqkS4v" +01/29/2017,Economists,@profsufi,"Study by GMAT org shows best intl students less likely to come to US since Trump election (this was in December): +https://t.co/GEWmq6GkL3" +01/29/2017,Economists,@profsufi,Association of American Universities statement urging quick end to restrictions on students/scholars: https://t.co/eEaeQ1tBYW +01/29/2017,Economists,@profsufi,"University of Chicago statement on Trump executive order on immigration: +https://t.co/hujNZgMJVF" +01/27/2017,Economists,@profsufi,"Fellow academics: please voice opposition to the terrible immigration policies proposed by Trump administration: +https://t.co/YFeK22Gpk3" +01/11/2017,Economists,@profsufi,"Join Randy, Marianne,and me at @ChicagoBooth Economic Outlook in NY tomorrow! https://t.co/cYFwH8BasL" +01/11/2017,Economists,@profsufi,RT @UCPbooks: @profsufi https://t.co/UzlOaHqjX8 +01/11/2017,Economists,@profsufi,@UCPbooks exactly what i needed thanks! +01/11/2017,Economists,@profsufi,@reihan @Nate_Cohn thanks! this is the risk in taking time off reading political news ... +01/11/2017,Economists,@profsufi,"I have been out of loop, please let me know if someone has been making this point on polarization within whites based on education." +01/11/2017,Economists,@profsufi,"High educated whites switched from Romney to Clinton, low educated whites switched (massively) from Obama to Trump.… https://t.co/eg22jvObfu" +01/11/2017,Economists,@profsufi,"Exit poll data shows white vote share for republican basically same in 2012 and 2016. I'm confused by the ""whites for trump"" narrative." +01/11/2017,Economists,@profsufi,"Has anyone else emphasized that Trump victory was due to LESS-EDUCATED whites, not shift in whites in general? https://t.co/BRXMrtcJLA" +01/09/2017,Economists,@profsufi,The award belongs to Princeton's @AtifRMian as much as me. I just happen to be 18 months younger! Thanks to all for well wishes. +12/08/2016,Economists,@profsufi,"RT @chicagoboothrev: IGM's European panel of experts indicates free movement of people has been good for the average western European +https…" +12/07/2016,Economists,@profsufi,"Expert European economists provide answers to critical issues in Europe such as Brexit, trade, migration, and taxes: +https://t.co/VKlLhEYpHU" +12/07/2016,Economists,@profsufi,"The IGM at @ChicagoBooth launched the European Experts Panel today! Check it out, @chicagoboothrev +https://t.co/VKlLhEYpHU" +11/21/2016,Economists,@profsufi,"Leading academic economists unimpressed with Trump economic plan for first 100 days, @chicagoboothrev @chicagobooth: https://t.co/QIpfI7snS1" +11/10/2016,Economists,@profsufi,"Raghuram Rajan is back at Booth! See his IGM talk here: https://t.co/MAnyrjrZ4m +@chicagoboothrev @ChicagoBooth" +11/10/2016,Economists,@profsufi,@jtrothwell Hey Jonathan can you send me your email address? Mine is amir.sufi@chicagobooth.edu. Want to talk your Trump voter research +09/23/2016,Economists,@profsufi,Video games and the decline in employment of young men: Check it out: https://t.co/otLm183gWp +09/23/2016,Economists,@profsufi,"Really interesting research by my colleague Erik Hurst. Generally, you should read everything he writes! +https://t.co/otLm183gWp" +07/31/2016,Economists,@profsufi,"Rise of Trump predictable based on what we know happens after financial crises: my thoughts on polarization. +https://t.co/jIqcXMbaU2" +07/31/2016,Economists,@profsufi,"Stop pretending America's housing boom had nothing to do with lending standards, nice work by @M_C_Klein: +https://t.co/A1GhKORUi4" +07/31/2016,Economists,@profsufi,My thoughts on Brexit--a failure of economists to recognize groups negatively affected by trade and immigration: https://t.co/Mq5Pyxwx86 +06/19/2016,Economists,@profsufi,"A huge loss for India, but a huge gain for @ChicagoBooth -- So thrilled to welcome Raghu back!!" +05/06/2016,Economists,@profsufi,RT @ddayen: My book Chain of Title is now in stock at Amazon. Winner of the Ida & Studs Terkel Prize. Brighten your day & order! https://t.… +05/06/2016,Economists,@profsufi,See Luigi and I discuss the reasons why our politics is changing https://t.co/3O31c9kDpm +05/06/2016,Economists,@profsufi,Very excited to read @ddayen new book on terrible foreclosure practices by banks during Great Recession: https://t.co/ZDelzM6kEp +05/04/2016,Economists,@profsufi,More insight explaining how trade with China has contributed to polarization and the rise of Trump: https://t.co/f7BIiEoKEQ +05/04/2016,Economists,@profsufi,The rise of Trump was quite predictable if one looks at history of post-financial crisis politics: https://t.co/RMKSTlDVqm +05/04/2016,Economists,@profsufi,"RT @BoothFullTime: Thank the financial crisis for today's partisan politics, by @profsufi via @BoothCapIdeas https://t.co/10pGSk7xZd" +04/21/2016,Economists,@profsufi,"This is really great journalism on the newest form of ""subprime"": well done @HeatherPerlberg: +https://t.co/EY5KpBQ4ll" +04/21/2016,Economists,@profsufi,@HeatherPerlberg what is your email/phone number? i have a question regarding the Apollo piece you wrote. thanks! +03/29/2016,Economists,@profsufi,Looks like @Austan_Goolsbee can finally get that car he has been dreaming about https://t.co/48r3L4Fri2 +02/29/2016,Economists,@profsufi,First study to provide large-scale analysis of misconduct among financial advisers and financial advisory firms. https://t.co/gDYnBhUyLz +02/29/2016,Economists,@profsufi,"Almost half of financial advisers fired after misconduct are hired by other financial services firms: +https://t.co/gDYnBhUyLz" +02/26/2016,Economists,@profsufi,"RT @UofCBoothNews: Another economic slump, another communications test for Fed. @Research by @profsufi @CNBC https://t.co/kNM13hOhNs #econo…" +02/26/2016,Economists,@profsufi,RT @davidmwessel: Lael Brainard is giving a very dovish speech at #usmpf +02/26/2016,Economists,@profsufi,RT @davidmwessel: Jay Powell defends the dot plots. Says it forces each fomc member to come up with coherent view. #usmpf +02/26/2016,Economists,@profsufi,RT @KarenMracek: Fed Board Gov Powell says a data-dependent monetary policy means the #FOMC will surprise markets from time to time #USMPF +02/26/2016,Economists,@profsufi,RT @KarenMracek: Fed Gov Powell says dot plot 'presents a number of challenges' but says it is helpful for markets and committee #USMPF @fe… +02/26/2016,Economists,@profsufi,RT @BCAppelbaum: @profsufi You guys should have included a response from the markets/media. +02/26/2016,Economists,@profsufi,RT @BCAppelbaum: All forward guidance is inherently calendar guidance. The Fed might as well try to bail out the ocean. #usmpf https://t.co… +02/26/2016,Economists,@profsufi,"If reporter asks, ""when will next rate happen?"" Right answer is: it depends on how economy evolves https://t.co/I6sTGixnEk +#usmpf2016" +02/26/2016,Economists,@profsufi,Basic point: Fed should not cater to press/market demands for time based forward guidance https://t.co/I6sTGixnEk +02/26/2016,Economists,@profsufi,"RT @ylanmui: #USMPF2016: ""Fed communication has relied too heavily on time-based forward guidance, even though it mentions conditionality.""" +02/26/2016,Economists,@profsufi,The #USMPF2016 paper is out. Discussion from Jay Powell and John Williams coming up. https://t.co/I6sTGixnEk +02/19/2016,Economists,@profsufi,"household debt boom gone wrong in brazil was predictable. we see it over and over. +https://t.co/vYzfsx1bQq" +02/19/2016,Economists,@profsufi,"china, brazil, thailand: when are we going to learn that juicing household spending through debt doesn't grow economy in a sustainable way?" +02/19/2016,Economists,@profsufi,"Trade surplus rising in Brazil, driven by collapse in imports. Any commodity-based explanation goes the WRONG WAY. +https://t.co/z26MW7P4yF" +02/19/2016,Economists,@profsufi,"In Brazil, reversal of trade deficits, economy collapsing, political instability, all indications of a household credit boom gone bad." +02/19/2016,Economists,@profsufi,"Brazil collapsing: sharp rise in consumer credit in boom years likely playing a very important role: +https://t.co/HpfgY8jwDZ" +02/11/2016,Economists,@profsufi,ZLB has not been main constraint on monetary policy: broken redistribution channel is culprit. Pushing rates even well below zero won't help +02/11/2016,Economists,@profsufi,"It is no surprise that monetary policy unable to boost economy, even by pushing rates into negative territory. https://t.co/AiRpl30q0e" +02/11/2016,Economists,@profsufi,Pushing policy rates below zero has limited impact on economy bc redistribution channel of monetary policy is broken https://t.co/AiRpl30q0e +02/08/2016,Economists,@profsufi,That Quicken commercial? See our book to see how that turns out: #houseofdebt: https://t.co/oZBKgbHIng +02/05/2016,Economists,@profsufi,"@GoranHjelm agreed. statistically significant with thailand, but not without. i think if china truly reported GDP, it would be more robust." +02/05/2016,Economists,@profsufi,"Financial/corporate debt surge gets much attention, but China also saw big rise in household debt 07 to 14. +https://t.co/IpVT4PVFDA" +02/05/2016,Economists,@profsufi,"This correlation would be even stronger if we had credible GDP growth information in China. Don't forget, China had big HH debt boom as well" +02/05/2016,Economists,@profsufi,"Countries with big rise in HH debt from 07 to 14 seeing downward revisions in growth forecasts:Thailand, Brazil. https://t.co/8zlSjVKblt" +06/29/2018,Economists,@Nouriel,"RT @SteveRattner: Trump just cited a tax-cut related benefit of $2,000 (or more) for Americans . . . NOTE: the average American will receiv…" +06/29/2018,Economists,@Nouriel,RT @ButtCoin: travel agency realizes that coiners never leave the basement https://t.co/amKrXNVZW9 +06/29/2018,Economists,@Nouriel,RT @Bitfinexed: Kraken was presented with evidence of wash trading back in November of 2017 and did nothing about it. Kraken also has prefe… +06/29/2018,Economists,@Nouriel,"RT @Noahpinion: Today in our @bopinion debate, @conorsen speculated that big corporations might be over-levered, and that the next recessio…" +06/29/2018,Economists,@Nouriel,RT @ruskin147: For those who didn’t understand this gibberish - don’t worry neither did I https://t.co/eqXUDmEXEB +06/29/2018,Economists,@Nouriel,RT @Bitfinexed: I know. 🤪 https://t.co/TpAyJ5XI6r +06/29/2018,Economists,@Nouriel,RT @sullydish: Trump’s Always-Wrong Economist Lawrence Kudlow Wrongly Says Deficit Is Falling https://t.co/h0Tt3B5ldk via @intelligencer +06/29/2018,Economists,@Nouriel,RT @mattleising: there was no link to Tether issuance and secondary market trading on Kraken that we found. Tether is created in huge and s… +06/29/2018,Economists,@Nouriel,"RT @CasPiancey: @DanDarkPill @CryptoQF @joonian @mattleising So 13,076.389 keeps coming up because... sats? I'm sorry, but this isn't addin…" +06/29/2018,Economists,@Nouriel,RT @prestonjbyrne: .@mattleising awesome analysis of tether trades. I've suspected that bot-driven wash trading is the *only* thing that cr… +06/29/2018,Economists,@Nouriel,RT @martinmcgrath: I have a vision of loads of HODLers pushing wheelbarrows full of servers down to the bakers in order to buy a loaf of br… +06/29/2018,Economists,@Nouriel,More evidence of criminal price manipulation by Tether. When will the regulators start cracking down on this crimin… https://t.co/Jg1xQcGnth +06/29/2018,Economists,@Nouriel,The dumb suckers who remained HODLers rather than FODLers have lost over 70% - or rather 99% for many coins - in 6… https://t.co/3AphilHyEb +06/29/2018,Economists,@Nouriel,RT @PWhiz636: My heart and thoughts go out to all HODLERS as their portfolio gets decimated #cryptocurrencies #bloodbath #bitcoin #BitcoinC… +06/29/2018,Economists,@Nouriel,RT @WscCrypto: Bitcoin bloodbath nears dot-com bubble burst as many tokens go to zero https://t.co/h4OABmqDde +06/29/2018,Economists,@Nouriel,Bitcoin Bloodbath Nears Dot-Com Levels as Many Tokens Go to Zero https://t.co/ZVODmMOkVk via @technology +06/27/2018,Economists,@Nouriel,"RT @ProSyn: In 1988, China's per capita GDP was just 4% of the US level (in PPP terms). This year, that ratio is close to 30% https://t.co/…" +06/27/2018,Economists,@Nouriel,"RT @greg_ip: Incorrect. Over course of Obama's two terms, quarterly growth exceeded 2% (annualized) 17 times, 3% eight times, 4% three time…" +06/27/2018,Economists,@Nouriel,RT @ProSyn: Turkey's double-digit inflation and 6%-of-GDP current-account deficit congratulate President Erdogan https://t.co/8OO7ixcPFo +06/27/2018,Economists,@Nouriel,"RT @ProSyn: What is actually in China's ""Made in China 2025"" plan? Shang-Jin Wei of @Columbia explains https://t.co/lXE80X83fB" +06/27/2018,Economists,@Nouriel,"RT @el33th4xor: EOS is the best Store of Drama, bar none. + +Now, ""the arbitrator"" is telling ""the dev"" to buzz off, since he's the central f…" +06/27/2018,Economists,@Nouriel,RT @ProSyn: Merkel's surprising concessions on eurozone reform reflect the brewing political problems she faces at home https://t.co/NqgbH0… +06/27/2018,Economists,@Nouriel,"RT @ummjackson: What a surprise that just 2 weeks after launching, #EOS is considering scrapping its entire “constitution” and starting ove…" +06/27/2018,Economists,@Nouriel,"RT @ianbremmer: We appear to be living in the 10,001th simulation. https://t.co/PiZQCpDxH0" +06/27/2018,Economists,@Nouriel,"RT @crypto: JUST IN: The FBI has 130 cases tied to cryptocurrencies, agent says https://t.co/Tl9APaK2qP https://t.co/fmmzgiKlPK" +06/27/2018,Economists,@Nouriel,"RT @RBReich: Next time you hear someone railing against immigrants, mention these facts: +1) Immigrants add ~$1.5 trillion to U.S. GDP annua…" +06/27/2018,Economists,@Nouriel,"RT @ProSyn: The capacity to supply “what technology wants” may determine which economies are positioned for success, and which are bound to…" +06/27/2018,Economists,@Nouriel,"RT @ianbremmer: Most dangerous countries for women + +1 India +2 Afghanistan +3 Syria +4 Somalia +5 Saudi +6 Pakistan +7 Dem. Rep. of Congo +8 Yeme…" +06/27/2018,Economists,@Nouriel,RT @Bitfinexed: Another Brock Pierce and Bitfinex disaster. Psst: They didn’t raise $4 Billion because they engaged in a bunch of illegal w… +06/26/2018,Economists,@Nouriel,"RT @Fizzhogg: In interview w Bloomberg, Harley-Davidson Inc. CEO Matt Levatich said “If President Donald Trump hadn't removed the U.S. from…" +06/26/2018,Economists,@Nouriel,RT @ForeignPolicy: Unprecedented business opportunities have emerged from China’s massive surveillance-state expansion and its national pus… +06/26/2018,Economists,@Nouriel,RT @FinancialTimes: HSBC now has a robot working with customers – and taking selfies with them – in its Fifth Avenue branch in New York htt… +06/26/2018,Economists,@Nouriel,"RT @FUD_Buddy: A director within the United States Secret Service testified on Wednesday to Congress, urging the government to take decisiv…" +06/26/2018,Economists,@Nouriel,RT @BruceBartlett: I broke from the Republican Party & was banned from polite GOP society because of Bush 43's stupidity & bad policies. Bu… +06/26/2018,Economists,@Nouriel,"RT @ProSyn: If the financial crisis ten years ago taught us anything, it is that risks often emerge where they are least expected https://…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: The opposite of populist nationalism is not globalist elitism; it is economic realism. And in the end, reality will win | @Kale…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: By undercutting German Chancellor Angela Merkel's leadership from within the CDU/CSU alliance, Horst Seehofer is playing with f…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: The Brexiteers' hope for a ""global Britain"" that will preside over a vast ""Anglosphere"" has already become a comical and danger…" +06/26/2018,Economists,@Nouriel,"RT @crypto: Bitcoin could be a bubble, Jack Ma warns https://t.co/KrXIDyYb8I https://t.co/AIJrXuv1FK" +06/26/2018,Economists,@Nouriel,RT @ProSyn: The Trump administration is demanding that Mexico set a wage floor of $16 per hour for its auto workers. That is the equivalent… +06/26/2018,Economists,@Nouriel,"RT @Brad_Setser: Strongly recommend latest column from @M_C_Klein, which emphasizes just how regressive China's system of taxation is. + +Tha…" +06/26/2018,Economists,@Nouriel,RT @buytheirfear: Updated psychology of a market https://t.co/64IqXmZV9K +06/26/2018,Economists,@Nouriel,"RT @elerianm: Via @FT : Agustín #Carstens , general manager of the #BIS , on the #risks for financial #markets following ""a decade of unusu…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: Nowadays, competing strategic interests and imperial ambitions play a much larger role than religion in defining regional polit…" +06/26/2018,Economists,@Nouriel,RT @crypto: The crypto collapse is spreading with hundreds of coins plunging in value https://t.co/DI7Al5AUry https://t.co/gT8EWvW9G7 +06/26/2018,Economists,@Nouriel,"RT @ProSyn: In the mid-1980s, the share of US wealth held by the bottom 90% of the population peaked at 35%. Three decades later, they owne…" +06/26/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Now that Bitcoin is suffering its inevitable demise - it was inevitable, the whole scheme was hemorrhaging cash becaus…" +06/26/2018,Economists,@Nouriel,RT @ProSyn: Putin and Europe’s right-wing populists have made a common enemy of the US- and EU-led global order. – @RSkidelsky https://t.co… +06/26/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: To all the clueless lemmings arguing that blockchain and Bitcoin are still young so you can't criticise them for being… +06/26/2018,Economists,@Nouriel,RT @EconguyRosie: $440 billion of American profits are derived from abroad annually - 20% of the earnings pie! This is because US direct in… +06/26/2018,Economists,@Nouriel,"RT @Brad_Setser: Is China's so-called ""nuclear"" option of Treasury sales really nuclear? + +My answer - in a blog posted last Friday - is no.…" +06/26/2018,Economists,@Nouriel,"RT @peter_tl: UBS survey of 600 companies spells out Brexit ""dividend"": +- 35% of companies plan to reduce UK investment post-Brexit +- 41%…" +06/26/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Before you start hallucinating a genius plan of buying crypto on the dip, and selling it high, think: who are you buyi…" +06/26/2018,Economists,@Nouriel,"RT @NancyNakamoto: Crypto always wants ""New Money"" because it is the only way for early entrants to a Ponzi scheme to get richer/get out.…" +06/26/2018,Economists,@Nouriel,"RT @davidealgebris: (BN) BIS Signals Cryptocurrencies Should Be Regulated Like Securities +@Nouriel. When this happens all Cryptocurrencies…" +06/23/2018,Economists,@Nouriel,RT @NancyNakamoto: Very please that world leading economist and fearless fighter for truth and logic has agreed to appear on the 10 NancyNo… +06/23/2018,Economists,@Nouriel,"RT @davidgerard: News: Mt. Gox recovers, Bitcoin crashes, Bitfinex/Tether, Kaminska to Parliament, Hydro-Québec, TRON, EOS, Nano insecure k…" +06/23/2018,Economists,@Nouriel,Trump’s Gift to China by Joschka Fischer @ProSyn https://t.co/UY3cmSp2pF +06/23/2018,Economists,@Nouriel,RT @elerianm: Friday’s fall in yields on #Greek #bonds makes total sense. Credit risk is lower due to debt maturity extensions and extra fu… +06/23/2018,Economists,@Nouriel,"RT @ProSyn: Without joint policies to maintain transatlantic cohesion between the US and the EU, the West as we know it will soon come to a…" +06/23/2018,Economists,@Nouriel,RT @FactFreeh: Louis Freeh vouched for the Kliuyev brothers and they fled to Russia; Freeh vouched for Romanian Gabriel Popoviciu and he we… +06/23/2018,Economists,@Nouriel,"RT @meridiocrypto: The first 1300 million tethers made bitcoin go x25 up to 20k. +The next 1300 million tethers were unable to hold bitcoin,…" +06/23/2018,Economists,@Nouriel,"RT @Bitfinex2: It’s with regret that we announce the one and only Mr. Potter is leaving our company. + +We can’t say why he’s leaving but he…" +06/23/2018,Economists,@Nouriel,"RT @ProSyn: Since the 2008 global financial crisis, the debt held by nonfinancial corporations has grown by $29 trillion https://t.co/rcIoH…" +06/23/2018,Economists,@Nouriel,"RT @altcointhoreau: The entire 2017 bull run was: +>Tether prints money out of thin air +>Uses it to buy Bitcoin +>Bitcoin goes up due to fomo…" +06/23/2018,Economists,@Nouriel,RT @ianbremmer: It’s painful to see an ex-Governor become an overt racist. https://t.co/8IjAzMwbNt +06/23/2018,Economists,@Nouriel,RT @ProSyn: Nationalism versus globalism appears to be this decade’s defining political conflict | @Kaletsky https://t.co/W7coFJUii2 +06/23/2018,Economists,@Nouriel,RT @crampell: Trump’s tariff on steel imports has caused the country’s remaining major nail producer to lose about 50% of its business in t… +06/23/2018,Economists,@Nouriel,RT @ProSyn: Italy’s real per capita GDP is lower today than it was when the euro began 20 years ago https://t.co/NiNRs4gnnT +06/23/2018,Economists,@Nouriel,"RT @adamdavidson: I know we're cautioned to go easy on the Nazi parallels, but this is too clear an example. + +This is no different from a…" +06/23/2018,Economists,@Nouriel,RT @ProSyn: Italy is beset by political and economic crises that could plunge it – and Europe – into the abyss https://t.co/gmZK2fBola +06/23/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: Bitcoin's price is an arbitrary amount of real cash people decide to pay for a simple database entry that gives them n… +06/23/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: Have you heard? Everyone who's livelihood depends on suckers buying Bitcoin predicts that Bitcoin will rebound very so… +06/22/2018,Economists,@Nouriel,"In crypto-land the authorities are police, censors, prosecutors and judges. So much for the b/s such as decentraliz… https://t.co/vr5z2C4Rbk" +06/22/2018,Economists,@Nouriel,RT @ProSyn: Europe has been sleepwalking through a decades-long realignment of global power. - Joschka Fischer https://t.co/UND0rrALYV +06/22/2018,Economists,@Nouriel,RT @crypto: Bitcoin has biggest drop in more than a week after Japan censures 6 of its biggest exchanges https://t.co/bolixuAhmW https://t.… +06/22/2018,Economists,@Nouriel,RT @ProSyn: The Trump administration is demanding that Mexico set a wage floor of $16 per hour for its auto workers. That is the equivalent… +06/22/2018,Economists,@Nouriel,"RT @RosaRoubini: Oue #Boe Review is online. +We discuss: +-What the BOE has decided at its June 2018 MPC +-What Governor Carney and Chancell…" +06/22/2018,Economists,@Nouriel,"RT @RBReich: This has been the GOP's plan all along: +1) Demand massive tax cuts for the rich & corporations. +2) Claim the cuts will pay f…" +06/22/2018,Economists,@Nouriel,"RT @prestonjbyrne: The hilarious thing about Eos is how, despite zero legal structuring, all of the kids are pretending that they're runnin…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Hello, bagHODLers. +Maybe it's time to start questioning how exactly a super slow database that costs $5B per year to h…" +06/22/2018,Economists,@Nouriel,"RT @Brad_Setser: China, Trump, trade wars and China's options for asymmetric retaliation, including Treasury sales (and possible U.S. count…" +06/22/2018,Economists,@Nouriel,"RT @ofnumbers: if had $1 filthy statist dollar for every time I heard a bitcoiner say, ""the institutions are about to get in, in a very big…" +06/22/2018,Economists,@Nouriel,"RT @WSJCentralBanks: The New York Fed's culture needs to be continually assessed for weaknesses, says the bank’s newly retired president ht…" +06/22/2018,Economists,@Nouriel,RT @NewYorker: For most of Thursday’s game—a 3–0 loss to Croatia—the Argentine coach Jorge Sampaoli was the only team member on the field w… +06/22/2018,Economists,@Nouriel,RT @coindesk: Japan's Financial Watchdog Orders AML Shake-Up at 6 Crypto Exchanges https://t.co/jZVxvfdCAr https://t.co/s9JcLvMBvd +06/22/2018,Economists,@Nouriel,"RT @CH_Events: ""60-70 governments around the world have been captured by kleptocrats."" Is good governance in global decline? #CHLondon" +06/22/2018,Economists,@Nouriel,"RT @MarkitEconomics: Flash Eurozone Composite Output #PMI rises to 54.8 (vs. 54.1 prev), signalling a regaining of momentum. However, manuf…" +06/22/2018,Economists,@Nouriel,RT @robertosaviano: L'Italia è il Paese occidentale con più giornalisti sotto scorta perché ha le organizzazioni criminali più potenti del… +06/22/2018,Economists,@Nouriel,RT @ProSyn: Italy's new populist government insists that it will neither abandon the euro nor blow up the budget deficit in violation of EU… +06/22/2018,Economists,@Nouriel,"RT @elerianm: Via @CNBC , and illustrating the gradual ongoing shift in consensus away from the synchronized pick-up in global #growth , #I…" +06/22/2018,Economists,@Nouriel,"RT @ummjackson: Perfect example of how shameless people in the blockchain space are. CEO creates and shares a ""50+ Real World Use Cases"" in…" +06/22/2018,Economists,@Nouriel,RT @ProSyn: .@Kemal_Dervis predicts that the 2019 European Parliament election will advance far-reaching political restructuring https://t.… +06/22/2018,Economists,@Nouriel,RT @TheBlueMatt: Private blockchain company acquires private blockchain company with proceeds from illegal securities offering. This space… +06/22/2018,Economists,@Nouriel,"RT @crypto: U.S. House members are told to publicly reveal any cryptocurrency holdings worth more than $1,000 https://t.co/DlVL6CQZzO https…" +06/22/2018,Economists,@Nouriel,RT @vexmark: I hate these extremely rare occurrences of crypto exchanges getting hacked once a week +06/22/2018,Economists,@Nouriel,"RT @ReutersJamie: Trade war fears ramp up dramatically, notes Citi, as the proposed amount of US imports subject to tariffs approaches $800…" +06/22/2018,Economists,@Nouriel,RT @el33th4xor: We will soon see AI personalities emerge on social media. The Turing Test will cease to have any relevance and give way to… +06/22/2018,Economists,@Nouriel,"RT @ProSyn: After the G7 Quebec summit, there can no longer be any doubt that the West is in crisis, says @javiersolana https://t.co/IqnSd6…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: By describing his relationships with @JustinTrudeau and Kim Jong-un in similar terms, @realDonaldTrump did not just look clumsy…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: .@JeffDSachs traces the climate-change crisis to a profound debasement of politics, economics, and technology https://t.co/Bfpy…" +06/22/2018,Economists,@Nouriel,"RT @CliffordAsness: Sad. Let’s pass tariffs then make up conspiracies when the damage starts. Even if he’s being honest, his being shocked…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: For the first time, IMF statisticians have compiled a comprehensive set of calculations of both public and private debt, countr…" +06/22/2018,Economists,@Nouriel,"RT @Brad_Setser: The $175 billion in accumulated offshore (""reinvested"") earnings that US firms used to make dividend payments back to thei…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Among all the crypto scams out there, EO TRADE deserves a special mention. Their advertising is a perfect concentrate…" +06/22/2018,Economists,@Nouriel,RT @ianbremmer: Just flying back from a week in Japan. I can definitively report this is #FakeNews. https://t.co/07YTJQtGOa +06/22/2018,Economists,@Nouriel,"RT @riotta: Caro ministro @matteosalvinimi le scorte sono una cosa seria e non devono essere concesse o revocate, per una critica. Può diss…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: In the age of Donald Trump, it is worth remembering James Madison's warning in Federalist No. 10 that, ""Enlightened statesmen w…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: ""Old timers"" love that idiotic log chart of BTC seemingly headed to $1,000,000 by 2020. +The only thing this chart prov…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Tether got audited - sort of. The auditors admitted that they couldn't be completely sure, because blockchain is so co…" +06/22/2018,Economists,@Nouriel,RT @ummjackson: Bitcoin charlatans getting people excited about an arbitrary string of characters appearing in a block hash need to find a… +06/22/2018,Economists,@Nouriel,RT @Bitfinexed: The biggest threat to cryptocurrency is the communities absolute trust in corrupted centralized third parties that violate… +06/22/2018,Economists,@Nouriel,RT @RBReich: Behind Trump's cruelty is an industry poised to profit from the suffering. As the administration locked up immigrant children… +06/22/2018,Economists,@Nouriel,"RT @RichardHaass: No successful immigration policy can begin at the border. Yes, we need comprehensive reform, but we also need trade and a…" +06/22/2018,Economists,@Nouriel,"RT @elerianm: Good morning. +The Financial Times’ Gillian Tell on some puzzles and oddities in #markets that make them “appear calm” but ar…" +06/22/2018,Economists,@Nouriel,RT @ProSyn: Strategic and security interests are always more amenable than religious conviction to reason and diplomacy https://t.co/fRvndW… +06/22/2018,Economists,@Nouriel,"RT @CasPiancey: Pretty proud of Crypto Twitter for ignoring the hype of that Tether memo and focusing on three things: + +1. Who are their *t…" +06/22/2018,Economists,@Nouriel,"RT @ofnumbers: This ""space"" perpetually sucks. + +Instead of keeping things in check, coin reporters openly aide and abet the raccoons flee…" +06/22/2018,Economists,@Nouriel,"RT @EconguyRosie: If the Fed raises rates and shrinks the balance sheet as much as it says it will, the cumulative de facto tightening by t…" +06/22/2018,Economists,@Nouriel,RT @davidgerard: Hydro-Quebec triples prices for crypto miners https://t.co/bBCR3Rc9Ka +06/22/2018,Economists,@Nouriel,"RT @ProSyn: Nationalism versus globalism, not populism versus elitism, is this decade’s defining political conflict https://t.co/W7coFJUii2" +06/22/2018,Economists,@Nouriel,RT @prestonjbyrne: Oh right. I forgot oil was issued by Permian-Triassic 3 LLC during the initial dead plant offering that took place in 25… +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Bitcoin's market cap: $110 Billion. +Global money supply (M1): $7.6 trillion. +Bitcoin, at today's price, stands at 1.4%…" +06/20/2018,Economists,@Nouriel,"RT @erikbryn: Berkshire, Amazon & JPM made a great decision when they chose @Atul_Gawande to head their new healthcare initiative. + +Becaus…" +06/20/2018,Economists,@Nouriel,"RT @econecho: Paper with balanced treatment of #blockchain and public service delivery applications with a Q&A, addressing @Nouriel-type co…" +06/20/2018,Economists,@Nouriel,RT @BrookingsInst: 🎧 16 million people were forced to flee their homes last year. That’s 1 person every 2 seconds. https://t.co/L1Vtv7Phzb… +06/20/2018,Economists,@Nouriel,"RT @Brad_Setser: Treasury legend Mark Sobel, who was instrumental in the creation of the working group, also has summarized the innovations…" +06/20/2018,Economists,@Nouriel,"RT @Brad_Setser: A bit of good news! France and Germany appear to have agreed to ""an improvement of the collective action clauses already b…" +06/20/2018,Economists,@Nouriel,"RT @CBSThisMorning: WATCH: @IanBremmer describes exchange between Chancellor Merkel and Pres. Trump at #G7 summit: ""He stood up, he put his…" +06/20/2018,Economists,@Nouriel,RT @EconomicPolicy: Reminder: 83% of the benefits of the GOP tax bill are going to the top 1%. #TaxScamiversary #6MonthsofTaxScam https://t… +06/20/2018,Economists,@Nouriel,I look forward to the debate on Cryptocurrencies today at The Battle of the Quants. 3.30pm at Carnegie Hall https://t.co/WzeUpAHVVM +06/20/2018,Economists,@Nouriel,I will debate Cryptocurrencies today at The Battle of the Quants. 3.30pm EST at Carnegie Hall in New York https://t.co/q7as8I5LUQ +06/20/2018,Economists,@Nouriel,RT @Nouriel: I look forward to the discussion on crypto that will be moderated by my friend @johnjdagostino at the Battle of the Quants on… +06/19/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: My deepest respect for all the crypto scammer community. I can only begin to imagine how hard it must be to try and sw… +06/19/2018,Economists,@Nouriel,"RT @Judy_Dempsey: My new blog now posted: @Merkel's Options, Europe's Future. +#Europe’s security, foreign, and defense policies will go no…" +06/19/2018,Economists,@Nouriel,"RT @BanKillerRobots: On June 21, @TobyWalsh will address a #KAIST seminar in the Republic of Korea to launch its new ethics committee on ar…" +06/19/2018,Economists,@Nouriel,"RT @LHSummers: Krugman’s analysis of a trade war, in my view, overstates the risk of a massive war that cuts off more than half of trade bu…" +06/19/2018,Economists,@Nouriel,RT @LHSummers: Why does @realDonaldTrump get credit for deescalating #NorthKorea conflict when it was his conduct that did so much to escal… +06/19/2018,Economists,@Nouriel,"RT @MaximColch: The market seems very relaxed about Brexit at the moment. It shouldn't be. +@Simon_Nixon +https://t.co/SPznwIMQxS" +06/19/2018,Economists,@Nouriel,RT @FinancialTimes: Investor concern is deepening as the US and China edge closer to a full-blown trade war. Here is the latest from global… +06/19/2018,Economists,@Nouriel,"RT @ProSyn: Tariffs – even those targeting Chinese firms that benefit from the government’s mercantilist practices – are counterproductive,…" +06/19/2018,Economists,@Nouriel,RT @greg_ip: Economic theory says effects of tariffs on trade balances are eventually fully offset by currencies. Most countries won't see… +06/19/2018,Economists,@Nouriel,RT @ojblanchard1: A five-level scale for financial crises. (As a discussion of Ben Bernanke's and Barry Eichengreen's papers at the Nobel… +06/19/2018,Economists,@Nouriel,"RT @davidgerard: News: Crypto hedge funds suffer, bankers on crypto’s problems, what good payment networks look like, another Civil news…" +06/19/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: I'm sure that some day, someone will come up with a use for cryptocurrencies that's not yet another form of gambling,…" +06/19/2018,Economists,@Nouriel,"RT @EconomicPolicy: One in nine U.S. workers are paid wages that can leave them in poverty, even when working full time. #PoorPeoplesCampai…" +06/19/2018,Economists,@Nouriel,"RT @Brad_Setser: Agree. Reality is China still manages its currency, even if its intervention isn't as overt as it once was. + +Depreciation…" +06/19/2018,Economists,@Nouriel,"RT @BIS_org: Despite the hype, #cryptocurrencies like #bitcoin are not the answer to the increasing need for #DigitalPayments because of th…" +06/19/2018,Economists,@Nouriel,RT @BIS_org: … cryptocurrencies lack scalability to handle the economy’s transaction needs …. 2/4 https://t.co/Z9f5mBLrhK https://t.co/9JwS… +06/19/2018,Economists,@Nouriel,RT @BIS_org: … payments made with #cryptocurrencies are never fully final because of possible rewriting of history through episodes of #for… +06/19/2018,Economists,@Nouriel,RT @BIS_org: Watch Hyun Song Shin explain why – despite all the hype - #Cryptocurrencies are a far cry from money https://t.co/tWw84EviD3 h… +06/19/2018,Economists,@Nouriel,"RT @el33th4xor: I'm calling it: there will be a massive exchange hack within the next year, taking advantage of an EOS vulnerability. That…" +06/19/2018,Economists,@Nouriel,RT @Brad_Setser: A few quick thoughts on Trump's decision to threaten to respond to China's $50b in retaliatory tariffs with an additional… +06/17/2018,Economists,@Nouriel,"RT @ProSyn: If the price of an automobile had declined as rapidly as the price of computing power, one could buy a car today for the same p…" +06/17/2018,Economists,@Nouriel,RT @IgnatiusPost: A beautiful evocation of Anthony Bourdain by a gifted chef (who is also my daughter’s fiancé.) The Tragic Loss of an Insp… +06/17/2018,Economists,@Nouriel,RT @BrookingsEcon: .@LHSummers on why the Fed needs a new monetary policy framework: https://t.co/rGTUAb4jd2 https://t.co/GWy6PIaARV +06/17/2018,Economists,@Nouriel,"RT @ForeignAffairs: Even if the Trump administration’s approach to Europe is too confused to constitute a strategic vision, his policies ca…" +06/17/2018,Economists,@Nouriel,RT @toby_n: Prices paid for washing machines by US consumers spike following application of tariffs. Nice @crampell report. https://t.co/kU… +06/17/2018,Economists,@Nouriel,"RT @thehill: Giuliani: FBI, prosecutors investigating Trump belong in the psych ward https://t.co/hwc5He60RQ https://t.co/cgePxBndmV" +06/17/2018,Economists,@Nouriel,"RT @NewYorker: Ever since Putin’s reëlection to another six-year term in March, Trump has been pressing for a Putin summit, dismissing advi…" +06/17/2018,Economists,@Nouriel,"RT @RichardHurowitz: Worth reading: Robert Kagan on the rejection of the US’s grand bargain — his father Donald, my adviser at Yale, would…" +06/17/2018,Economists,@Nouriel,RT @bobdavis187: Interesting that you never hear people worried about Chinese industrial policy offer their own. U.S. could invest more in… +06/17/2018,Economists,@Nouriel,RT @ProSyn: Cities of the future: why nature-based solutions are the answer to some of the biggest challenges facing urban areas https://t.… +06/17/2018,Economists,@Nouriel,"Cryptocurrencies are lousy investments | VOX, CEPR Policy Portal https://t.co/mL5tBnKhW3" +06/16/2018,Economists,@Nouriel,"RT @JoeNBC: Hey Mitch, Whitewater lasted almost 10 times as long and you never complained once about that. If you’re going to keep humiliat…" +06/16/2018,Economists,@Nouriel,"RT @dailykos: Tighten your belt, America—Trump's tariff backlash takes hold and consumer goods are skyrocketing https://t.co/HMLop9z0Wa" +06/16/2018,Economists,@Nouriel,no way he will revisit as he is a ideological fanatic economic nationalist...he needs his base in November... https://t.co/8ZMyn8AhM8 +06/16/2018,Economists,@Nouriel,RT @SteveBrant: A clear & detailed case for why Trump is a threat to the world. He's destroying the post-WWII system. ⁦@ianbremmer⁩ ⁦@Nouri… +06/16/2018,Economists,@Nouriel,pathetic EOS: Entirely Open Scam https://t.co/dTqFG2HJlb +06/16/2018,Economists,@Nouriel,transaction volume has collapsed in all crypo-currencies since January....transaction meltdown towards nothingness.… https://t.co/nsXUoilMaB +06/16/2018,Economists,@Nouriel,Buggy Scam.....Entirely Open Scam....ie EOS https://t.co/QzRINpHqno +06/16/2018,Economists,@Nouriel,RT @roun_sa_ville: cryptocurrency? https://t.co/za4Aj4sDHn +06/16/2018,Economists,@Nouriel,"Another total ICO scam....EOS: ""Entirely Open Scam"" +$4 billion of suckers money into this crypto black hole with no… https://t.co/znWLrBfZEm" +06/16/2018,Economists,@Nouriel,"RT @ProSyn: Africa is home to 15% of the world’s population and 5% of its GDP, but accounts for a paltry 1.3% of total research spending ht…" +06/16/2018,Economists,@Nouriel,"RT @elerianm: .@FT @RobinWigg on vol sales in the #HedgeFund community: +""The volume of “short” positions in the #Vix #volatility index has…" +06/16/2018,Economists,@Nouriel,Tether is indeed The Mother Of All Criminal Scams whose only purpose is to manipulate upwards the price of Bitcoin… https://t.co/4sTsxqW3Gt +06/16/2018,Economists,@Nouriel,RT @el33th4xor: Excellent post on errors Satoshi made. https://t.co/ml3oTmGS1o +06/16/2018,Economists,@Nouriel,Top 10 as it is The Mother of All Scams: they issue billions of Tether out of thin air - total fiat issuance of a f… https://t.co/wHb2xiPtSq +06/16/2018,Economists,@Nouriel,RT @cabelabed: @Nouriel It’s football!!! And has been there much longer than this HAND-EGG thing...there’s no FOOT and no BALL! Just HANDS… +06/16/2018,Economists,@Nouriel,"RT @Giorgio13190: @Nouriel Americans need a version of the Calcio Storico, with armours and Helmets, and short times of play to display lon…" +06/16/2018,Economists,@Nouriel,Soccer will never be popular in the US as: a) Americans love complex statistics in sports while such statistics mea… https://t.co/1GV3rd9ETM +06/16/2018,Economists,@Nouriel,RT @voxdotcom: The untenability of the “no collusion” talking point: https://t.co/gDsIQJWJmy +06/16/2018,Economists,@Nouriel,"Americans are obsessed with scores, scoring and statistics in sports...that is why soccer will never be really popu… https://t.co/q0aD6KzT1E" +06/16/2018,Economists,@Nouriel,Thanks to Donald-Smooth-Hawley-Trump.... https://t.co/sEuW4B7qvT +06/16/2018,Economists,@Nouriel,Ether is a security! https://t.co/P9vfvKkzJK +06/16/2018,Economists,@Nouriel,"RT @BaldwinRE: _ +Ultimately, free trade equilibrium is supported by threat of retaliation. +• +For decades, the threat was enough. But now o…" +06/16/2018,Economists,@Nouriel,"RT @CasPiancey: This is otherworldly: + +Tether sends 100,000,000 from the treasury to the Hot Wallet. 14m Tether then just **disappear**. An…" +06/16/2018,Economists,@Nouriel,"RT @ProSyn: For the first time, IMF statisticians have compiled a comprehensive set of calculations of both public and private debt, countr…" +06/16/2018,Economists,@Nouriel,RT @mechmarkets: @prestonjbyrne The speech also implies that ETH investors are not relying on the team to do any more work on the platform.… +06/16/2018,Economists,@Nouriel,RT @ProSyn: Poland and Hungary are more than happy to take EU money while rejecting EU values. It is time to demonstrate that contempt for… +06/16/2018,Economists,@Nouriel,RT @business: A lack of ambition is ending Finland's experiment with a universal basic income https://t.co/IflwEodvn0 https://t.co/lnpcc3cb… +06/16/2018,Economists,@Nouriel,RT @Slate: What urban Americans don’t get about Appalachia and the price rural Americans have paid: https://t.co/xTezmjqHrc https://t.co/H0… +06/16/2018,Economists,@Nouriel,"RT @ProSyn: Russia's labor market is strong, but demographic trends are working against it, say @VladimirMau & @brigranvill https://t.co/lE…" +06/16/2018,Economists,@Nouriel,RT @ProSyn: .@HowardJDavies holds out little hope for macroprudential policy where it is needed the most. @IMFNews https://t.co/lhiDo53h5q +06/16/2018,Economists,@Nouriel,RT @ProSyn: The more we use antibiotics – on the farm or in the clinic – the less effective they become https://t.co/OzfzfqDFIu +06/16/2018,Economists,@Nouriel,RT @ForeignPolicy: A message to @realdonaldtrump from Canada's @cafreeland: “Facts matter. Truth matters. Competence and honesty among elec… +06/16/2018,Economists,@Nouriel,RT @nathanielpopper: i missed this great look at the unruly world of crypto marketers and influencers by my soon-to-be colleague @eringriff… +06/16/2018,Economists,@Nouriel,"RT @CasPiancey: Not a single tweet from Tether since January 5th. + +Boy, you'd think they'd want to address some of the issues they've been…" +06/16/2018,Economists,@Nouriel,RT @Austan_Goolsbee: Like one of those nightmare psychology experiments from the 1950s that led to human subjects rules. WTF is wrong with… +06/16/2018,Economists,@Nouriel,RT @davidgerard: my favourite bit in today's crypto news post is - the Blockchain(tm) is literally too crappy to be up to the standards of… +06/30/2018,Economists,@justinwolfers,"Useful thread by a real expert analyzing how the new “postcard” for tax returns is more complicated, leads you to f… https://t.co/KTWPual0Fn" +06/30/2018,Economists,@justinwolfers,"“Are these trolls? Actual threats? How can anyone tell the difference, anyway?” https://t.co/m1KM0xzqSs" +06/30/2018,Economists,@justinwolfers,"My whole life I've used the word ""overseas"" when I meant ""foreign countries."" I guess that's one effect of having grown up in Australia." +06/29/2018,Economists,@justinwolfers,By the power vested in me by Mitch McConnell it would be inappropriate for me to declare beer o'clock with fewer th… https://t.co/OnSKrCMiOm +06/29/2018,Economists,@justinwolfers,RT @GerryDuggan: The funniest silent film in over a century. Commit to the full 2:34. https://t.co/sOWFSTYmym +06/29/2018,Economists,@justinwolfers,"“the jobs women have moved into are ones they associate with more happiness and a greater sense of meaning, the opp… https://t.co/Jjxo8okv5q" +06/29/2018,Economists,@justinwolfers,"Who among us hasn't thought: I'm not going to make any music before 1972, unless my great-grandkids also get a cut… https://t.co/YHMHbhzdx5" +06/29/2018,Economists,@justinwolfers,This is BANANAS 🍌 🍌 🍌 https://t.co/uKTNNKSeqG +06/28/2018,Economists,@justinwolfers,An excellent diagnosis by @asymmetricinfo of the mistakes that free-traders make. https://t.co/b7OWICSvty +06/28/2018,Economists,@justinwolfers,A caricature of a shadow of a response. https://t.co/UMETNPfHyJ +06/28/2018,Economists,@justinwolfers,"“The important point shouldn’t be “don’t formalize”; it should be that formalism is there to open your mind, not cl… https://t.co/UQs8Nfff2a" +06/28/2018,Economists,@justinwolfers,Only sociopaths and budget constraints would object to this agenda. https://t.co/F0N9KrHDAz +06/28/2018,Economists,@justinwolfers,"@Neil_Irwin @asymmetricinfo It's a great point, but I don't know whether it's a point of identity (which economists… https://t.co/IDOZ8ghjuB" +06/28/2018,Economists,@justinwolfers,"Chugga chugga chug, as the little engine that could keeps on pushing on. Growth isn't spectacular, but it is persis… https://t.co/duUOHcbuAG" +06/28/2018,Economists,@justinwolfers,"Science, norms, politics and why thousands of Russians starved. An important essay for the scientific, journalistic… https://t.co/XWCeTR0FEW" +06/28/2018,Economists,@justinwolfers,"RT @janzilinsky: When GDP growth was 4.6% in mid-2014, @JustinWolfers used the report as a case study of what not to do: +https://t.co/l4B9…" +06/27/2018,Economists,@justinwolfers,RT @adamliptak: Justice Kennedy retires https://t.co/GRXyBBA6P9 +06/27/2018,Economists,@justinwolfers,#cloudme @tweetcloudbot +06/25/2018,Economists,@justinwolfers,This is a gorgeously succinct summary of the problem with the gold standard. https://t.co/FfcsjxbhSs +06/25/2018,Economists,@justinwolfers,"RT @Canada2020: Have you ever wondered what the true correlation between money and happiness is? + +Check out this week's episode of Wonk Wi…" +06/24/2018,Economists,@justinwolfers,"RT @_Jack_Graham_: If Sarah Huckabee Sanders came to *my* restaurant, I'd show her to a table, take her order, wait an hour, and then bring…" +06/24/2018,Economists,@justinwolfers,"RT @BrendanNyhan: The president of the United States: +-wants to suspend due process rights +-calls the press an enemy of the people +-calls f…" +06/23/2018,Economists,@justinwolfers,"RT @scottlincicome: Now retaliating against US exports bc of Trump's steel/aluminum tariffs: +- China +- Turkey +- India +- Mexico +- EU +Notifie…" +06/22/2018,Economists,@justinwolfers,"By the power vested in me by Melania's fashion choices — about which, I really don't care. Do u? — I declare it bee… https://t.co/TK3HMchThv" +06/22/2018,Economists,@justinwolfers,"@EconoTodd Hey man, sorry to hear that. Happens to all of us, but it never gets easier." +06/22/2018,Economists,@justinwolfers,"RT @JGodiasMurphy: Nonsense. Thanks to NAFTA, these are all zero. https://t.co/kuhmBqcMqg" +06/21/2018,Economists,@justinwolfers,NFL players took a knee to protest police brutality and the President took a stage to celebrate a brutal enemy’s vi… https://t.co/UlsU10p9O6 +06/20/2018,Economists,@justinwolfers,"So, umm... the *point* of tariffs is to raise prices. + +Here's how they work: +Price S+tariff + | \… https://t.co/xgfb2Smq2q" +06/20/2018,Economists,@justinwolfers,"I still can't bring myself to say ""tender age shelters"" out loud." +06/20/2018,Economists,@justinwolfers,"RT @aaronecarroll: Thread. + +I'm going to try and use my quiet voice here. Let's not kid ourselves - there are data on what detaining kids l…" +06/19/2018,Economists,@justinwolfers,"RT @SciBry: I was detained by the FBI on a flight from Vancouver to Chicago, because the passenger sitting next to me saw me doing calculat…" +06/18/2018,Economists,@justinwolfers,"RT @BetseyStevenson: No matter your political beliefs or your party affiliation, if you study families and children you know that the Unite…" +06/18/2018,Economists,@justinwolfers,"RT @EconUS: Ranked-choice voting is not new. Australia has used it for a century, Malta and Ireland for slightly less https://t.co/EWw87MOC…" +06/18/2018,Economists,@justinwolfers,This is how a political scientist throws shade. https://t.co/BlYJJqMyux +06/18/2018,Economists,@justinwolfers,This is how an economist throws shade.🔥🔥🔥 https://t.co/2oxgLrnM05 +06/18/2018,Economists,@justinwolfers,Tell that to the children. https://t.co/ABj9QnK0cj +06/17/2018,Economists,@justinwolfers,RT @ATabarrok: Hard to get lower than the immoral and unconstitutional internment of Japanese Americans but at least FDR interned families… +06/17/2018,Economists,@justinwolfers,"RT @BetseyStevenson: My heart races, my stomach heaves, and I can't breath when I read this. But looking away isn't a choice either. Every…" +06/16/2018,Economists,@justinwolfers,RT @thegarance: This is so inhumane. If you can't trust your staff enough to comfort a crying girl without abusing her you have some seriou… +06/16/2018,Economists,@justinwolfers,Well ain’t that interesting... https://t.co/kiO6LhQbWz +06/15/2018,Economists,@justinwolfers,"By the power vested in me by FIFA — whose corruption runs so deep that unlike major league baseball, the national f… https://t.co/VmL39PLEsO" +06/15/2018,Economists,@justinwolfers,RT @BetseyStevenson: We won't be able to pretend later that we didn't know it was happening. We did. https://t.co/1Y873VTDOb +06/15/2018,Economists,@justinwolfers,This is interesting. https://t.co/pOWJvNxGMV +06/15/2018,Economists,@justinwolfers,"People making fun of brasbperries are overlooking the demand-side benefits of complementarity and diversification,… https://t.co/8t3jz1844g" +06/14/2018,Economists,@justinwolfers,"RT @JimPethokoukis: 1/ A rare tweetstorm from me on some Wall Street banks now predicting 4% (!) GDP growth for the second quarter, and the…" +06/12/2018,Economists,@justinwolfers,@steveliesman @LoganMohtashami Alternatively let’s relabel it a goods surplus and declare victory. +06/12/2018,Economists,@justinwolfers,@steveliesman You are 100% correct Steve. +06/12/2018,Economists,@justinwolfers,A useful explanation of the U.S. trade *surplus* with Canada. https://t.co/7Rss0nEWnR +06/12/2018,Economists,@justinwolfers,RT @causalinf: Survivor bias (literally) https://t.co/FYVMgZvIcA +06/12/2018,Economists,@justinwolfers,"RT @JayCShambaugh: not good from today's BLS release: + +""Real average hourly earnings were unchanged, [seas adj], from May 2017 to May 2018.…" +06/12/2018,Economists,@justinwolfers,"RT @ChloeAngyal: Give me your tired, your poor, but keep your women fleeing domestic abuse in fear of their lives, fuck 'em, they probably…" +06/12/2018,Economists,@justinwolfers,"History repeats itself first as reality tv, then as farce... https://t.co/DBMKF9lUQG" +06/11/2018,Economists,@justinwolfers,Dennis Rodman arrives in Singapore for the North Korea - U.S. denuclearization talks wearing a t-shirt advertising… https://t.co/qjTVqzCipP +06/11/2018,Economists,@justinwolfers,RT @1RossGittins: Holiday reading: where economists come from https://t.co/GLjTFo3WFV #ausecon #ausbiz @theage @smh @canberratimes +06/10/2018,Economists,@justinwolfers,"Meet the man paid over $60,000 per year to scotch tape together the Presidential papers that Trump ripped into smal… https://t.co/A8VeaGtXK1" +06/10/2018,Economists,@justinwolfers,"@jggarin @GregoryGivens @dandolfa @MWillJr Lemme try to be a bit clearer, and a lot less snarky (and also try to d… https://t.co/Lpke0pd63M" +06/10/2018,Economists,@justinwolfers,@jeremybowers @fishnette @eads Technically it's illegal in Australia to turn in a blank ballot. (There's a High Cou… https://t.co/IBsNfUeoNF +06/10/2018,Economists,@justinwolfers,"RT @MaxBoot: I can't stop thinking about this interview. Unless I'm missing something, these are the most hostile comments any US official…" +06/10/2018,Economists,@justinwolfers,Yet somehow Australians figure it out every Election Day. https://t.co/IoQMnMkFJF +06/10/2018,Economists,@justinwolfers,"@paulkrugman gets it exactly right about America's humiliation at the G-7. +Perhaps we would be better with fewer G-… https://t.co/UYs10md6Y2" +06/09/2018,Economists,@justinwolfers,This is an important point. The Constitution gives Congress authority over trade agreements. But past Congresses ha… https://t.co/9TB1Ff2I36 +06/09/2018,Economists,@justinwolfers,"This is how trade wars start. + +Starting a trade war when most tariffs are already at or close to zero is an even wo… https://t.co/H49aYGyZik" +06/09/2018,Economists,@justinwolfers,You’ll never guess what they chose to do next... https://t.co/gxMrfT5WjO +06/09/2018,Economists,@justinwolfers,RT @goldengateblond: This is like a Renaissance painting. https://t.co/uafGu2ctrx +06/09/2018,Economists,@justinwolfers,"Average tariff rates charged by G-7 nations: +USA: 1.6% +EU: 1.6% +UK: 1.6% +Italy: 1.6% +Germany: 1.6% +France: 1.6% +Jap… https://t.co/SJdH6Dtzll" +06/09/2018,Economists,@justinwolfers,"@causalinf @j2dubyas If I wasn’t clear, it’s my fault, so should apologize. I only meant to criticize MIT which lik… https://t.co/b88zv7S0nI" +06/08/2018,Economists,@justinwolfers,"By the power vested in me by Emmanuel Macron, I declare it beer o'clock for six of the world's leading seven econom… https://t.co/IsVBjChJhs" +06/08/2018,Economists,@justinwolfers,"@ProfJAParker One of my students chimes in with some relevant facts: +https://t.co/PyVPNK3aK6 + +But my point isn't to… https://t.co/qbGSf2QbjO" +06/08/2018,Economists,@justinwolfers,RT @MichaelRStrain: U.S. tariffs look an awful lot like tariffs in the rest of the G7... https://t.co/pNUIRYmvK3 +06/08/2018,Economists,@justinwolfers,"@arthur_spirling Agree entirely, and didn’t mean any disrespect to this fine crop of economists on their achievemen… https://t.co/xKZR1RAIOh" +06/08/2018,Economists,@justinwolfers,Exhibit A of the cluelessness about gender and the value of diversity that undermines economics. https://t.co/CrU50lSaJT +06/08/2018,Economists,@justinwolfers,"Evil committed in our names, in our lifetime. +https://t.co/2UyfM4mmvy" +06/08/2018,Economists,@justinwolfers,"The Justice Department has decided it doesn’t like laws that Congress passed, and so once again, the ACA is under t… https://t.co/dDCsQOyvDy" +06/07/2018,Economists,@justinwolfers,"Draw your own conclusions. +https://t.co/vqJ2aUxim4 https://t.co/YPJShbDfe5" +06/07/2018,Economists,@justinwolfers,RT @EileenAppelbaum: Subcontracting - not independent contractors or temp workers - is where big change in US economy occurred. But BLS con… +06/07/2018,Economists,@justinwolfers,"This might be the most important paragraph of the Contingent Worker Supplement. + +(My guess: This is best interprete… https://t.co/q1DzrUCwvu" +06/07/2018,Economists,@justinwolfers,What if the whole meaning of alternative work arrangements changed and the BLS lacked the funding to track these de… https://t.co/Cg8KlNHpol +06/07/2018,Economists,@justinwolfers,Budget-busting tax cuts for other people don't poll well. https://t.co/aujoqrvzrR +06/06/2018,Economists,@justinwolfers,"This is a genuinely excellent list, and a tribute to a new oral tradition in economics. https://t.co/6CQitGqAki" +06/05/2018,Economists,@justinwolfers,"RT @NBCNews: Sen. Leahy: Will your school safety commission look at the role of firearms? + +Sec. DeVos: ""That is not part of the commission'…" +06/05/2018,Economists,@justinwolfers,"RT @kevinmilligan: @JustinWolfers In my experience talking to (plugged in and intelligent) friends and acquaintances in the US, people ther…" +06/05/2018,Economists,@justinwolfers,An interesting day with dozens of conversations on the other side of the U.S.-Canadian border revealed to me just h… https://t.co/S6uvZidW4V +06/05/2018,Economists,@justinwolfers,"The extraordinary economics of vanilla: Even though it’s now worth more per pound than silver, Madagascans still go… https://t.co/mTC1qo479B" +06/05/2018,Economists,@justinwolfers,"A tax cut that takes from labor (and future generations) and gives it to capital will cause stocks to rise, but tha… https://t.co/fzjezzWz8L" +06/05/2018,Economists,@justinwolfers,so now mueller wants us to believe manafort figured out how to use whatsapp are you kidding me +06/05/2018,Economists,@justinwolfers,"If you know any economics, you’ll recognize this as a far more damning critique. https://t.co/QsMhEg5zTN" +06/04/2018,Economists,@justinwolfers,What if the romantic comedy died and no-one noticed? https://t.co/7yeziDnAxB https://t.co/a8oYmGVtED +06/04/2018,Economists,@justinwolfers,@PrestonMui Fair point. But my guess is forcing disclosure beats allowing them to continue the policy without disclosure. +06/04/2018,Economists,@justinwolfers,This seems like a pretty good compromise to me. Hard to argue against disclosure. https://t.co/YkFFoFNEfy +06/04/2018,Economists,@justinwolfers,"@ben_golub Improving economic literacy, one tweet at a time..." +06/04/2018,Economists,@justinwolfers,An Econ 101 reminder that it doesn't really matter that Trump's tariffs are levied on America's consumers rather th… https://t.co/WVhh5fI5JL +06/04/2018,Economists,@justinwolfers,RT @Neil_Irwin: It sounds like the G7 finance ministers meetings were…tense. The U.S. is isolated to a degree without modern precedent. Fas… +06/02/2018,Economists,@justinwolfers,"RT @FreeTradeBryan: I should probably make this my pinned tweet: ""We should beware of the demagogues who are willing to declare a trade war…" +06/02/2018,Economists,@justinwolfers,"A letter to my son, and it might be a letter to yours, too. A lovely riff from the incomparable @bairdjulia in whic… https://t.co/WzTqiDyBbe" +06/01/2018,Economists,@justinwolfers,"RT @Neil_Irwin: A great brief history of economic thought on mercantilism and trade from @crampell + +Because I guess we're at a place where…" +06/01/2018,Economists,@justinwolfers,"By the power vested in me by the Bureau of Labor Statistics, whose latest report (which I've been looking forward t… https://t.co/rFrvdbXdgZ" +06/01/2018,Economists,@justinwolfers,"If I achieved nothing else today, my pseudo-potty mouth pushed HuffPo to put the word ""effing"" in a headline: https://t.co/TDOA3YCgUn" +06/01/2018,Economists,@justinwolfers,Looking forward to seeing a beer-related announcement at 5:30pm this afternoon. +06/01/2018,Economists,@justinwolfers,@goldengateblond @atrupar hold me. +06/01/2018,Economists,@justinwolfers,"@NickTimiraos @ModeledBehavior Nick, this wasn't one dumb thing written in an occasional column. The argument that… https://t.co/qKbs062J59" +06/01/2018,Economists,@justinwolfers,It's the trade policy equivalent of two and a half back-somersaults with a double twist off the high board—an almos… https://t.co/O4vwKHoM30 +06/01/2018,Economists,@justinwolfers,"This is the bloke who—in late 2008 as a global financial crisis kicked millions out of work—said that: ""the decreas… https://t.co/QCGo9qnB9d" +06/01/2018,Economists,@justinwolfers,Worth noting: Kudlow confirmed that he told the President the jobs numbers last night. Trump knew exactly what kind… https://t.co/zW9b8Cibvm +06/01/2018,Economists,@justinwolfers,"<very thinking face emoji> +https://t.co/0ysvbi53B6" +06/01/2018,Economists,@justinwolfers,The bigger picture on jobs. https://t.co/KYwt2T696S +06/01/2018,Economists,@justinwolfers,"Goolsbee: ""he broke the law"" https://t.co/yO5fOgPiU6 +Summers: ""a major scandal"" should lead to ""major investigation… https://t.co/Utxflxrpf4" +06/01/2018,Economists,@justinwolfers,"And Betsey's point is spot on: If someone made money trading on a tip from the President, who do you think they're… https://t.co/WU5ikALvct" +06/01/2018,Economists,@justinwolfers,"Honestly, I get that on the scale of norms violations, it's small. And if he's an honest bloke, he didn't tip off a… https://t.co/0IoeN4dDll" +06/01/2018,Economists,@justinwolfers,If *any* other federal employee had tweeted in a way that gave the *appearance* of hinting at confidential informat… https://t.co/jDY6dcrtPs +06/01/2018,Economists,@justinwolfers,"And you can't put the genie back in the bottle: Next jobs day, if at 7:21am Trump tweets about Roseanne or some oth… https://t.co/xxjkJDPQQs" +06/01/2018,Economists,@justinwolfers,"Here's the problem: Who wants to buy U.S. stocks, if you think there's a chance that you might be buying from someo… https://t.co/d8CBWzqxDt" +06/01/2018,Economists,@justinwolfers,Dozens of federal employees who go to enormous lengths to make sure that no-one (beyond the White House) can get a… https://t.co/WDirIeAG16 +06/01/2018,Economists,@justinwolfers,"Lemme bore you by telling you why this tweet was an effing outrage. + +The jobs numbers are released at 8:30am. The P… https://t.co/aYIhgyqeA8" +06/01/2018,Economists,@justinwolfers,"I try to stay away from conspiracy-mongering, but do you really think that a President who can't help himself but t… https://t.co/ZB1dBHgCMU" +06/01/2018,Economists,@justinwolfers,"RT @kairyssdal: Again, and now with the numbers out, this is simply unprecedented and unbelievable. + +I’ll also note the president called th…" +06/01/2018,Economists,@justinwolfers,"Household survey shows +293k jobs, which is roughly consistent with the headline from the payrolls number. + +It says… https://t.co/Hcc1ijQZ8V" +06/01/2018,Economists,@justinwolfers,"Average job growth over the past 3 months of +179k is useful measure of the underlying pace. + +A parrot who spent th… https://t.co/YvTxcxPK2s" +06/01/2018,Economists,@justinwolfers,"Payrolls +223k. + +April revised down a tad, March revised upa bit, and so revisions add another +15k. + +Unemployment… https://t.co/T2n4XFpR0g" +06/01/2018,Economists,@justinwolfers,We've just learned that either the President doesn't read the briefing numbers from CEA who already sent him a memo… https://t.co/jMbNRr1LCT +06/01/2018,Economists,@justinwolfers,"RT @Neil_Irwin: May jobs numbers out in five minutes! Consensus forecast: +190k on payrolls, unemployment rate unchanged at 3.9%, average h…" +06/01/2018,Economists,@justinwolfers,"The case for free trade, wrote Adam Smith, ""is so very manifest that it seems ridiculous to take any pains to prove… https://t.co/ggk6SiEdyg" +06/01/2018,Economists,@justinwolfers,"Stand and applaud, because it’s almost impossible to pass a steel tariff that even the United Steelworkers oppose. https://t.co/67l5H5rMOz" +05/31/2018,Economists,@justinwolfers,anyone know kim kardashian's views on tariffs? +05/31/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Imagine if families got paid time off for a new child, mothers didn't face a permanent wage penalty, and families had…" +05/31/2018,Economists,@justinwolfers,"RT @jenniferdoleac: A friendly reminder that there is no evidence that this type of intervention is effective, and good reason to think it…" +05/30/2018,Economists,@justinwolfers,Look a little harder at how repayment plans work and you'll see that the USC-trained dentist with a million dollars… https://t.co/wA912tN7Ld +05/30/2018,Economists,@justinwolfers,"RT @ParkerMolloy: Promise made, promise kept https://t.co/TZ2KuEOM9l" +05/29/2018,Economists,@justinwolfers,"very fine people on both sides +https://t.co/Llc8D647Xv" +05/29/2018,Economists,@justinwolfers,@colmharmon @Sydney_Uni @sciencespo @OECD @USydneyEcon @DHoganDoranSC Dom was an old friend of mind from undergradu… https://t.co/H8EYCJnS9u +05/29/2018,Economists,@justinwolfers,RT @DanielGriswold: Just finished @scmallaby's bio of Alan Greenspan. Loved this exchange on p. 132 between Milton Friedman and Gen. Westmo… +05/29/2018,Economists,@justinwolfers,"RT @hamandcheese: ""In our new study, we left a treatment group of journalists unattended in a room with a provocative yet N=28 social psyc…" +05/29/2018,Economists,@justinwolfers,RT @hamandcheese: The real marshmallow test was to see who could resist pontificating on meaning of the original marshmallow test until a g… +05/27/2018,Economists,@justinwolfers,"My favorite genre of leak stories are leaks about meetings of leakers to figure out which leaker leaked, in which i… https://t.co/u9dtWDCHVk" +05/27/2018,Economists,@justinwolfers,"Ron, let's talk about inflation. +- In *nominal* terms #SoloAStarWarsStory is your most successful film as a Directo… https://t.co/UJZok4iDo8" +05/27/2018,Economists,@justinwolfers,"RT @TimHarford: Hyping research work in the NYT... Paging Indigo Montoya; ""I do not think that means what you think it means."" +https://t.co…" +05/27/2018,Economists,@justinwolfers,"RT @DinaPomeranz: Study, JPE 2008: Children who were separated from their parents in the US & placed in foster care were 2-3 times more lik…" +05/27/2018,Economists,@justinwolfers,RT @sahilkapur: “Horrible law” = not a law. It’s Trump administration policy that didn’t happen under Obama or Bush. POTUS has the power to… +05/27/2018,Economists,@justinwolfers,"RT @hardsci: For people saying this is evidence that psychology research isn’t valid, your evidence for that conclusion is psychology resea…" +05/26/2018,Economists,@justinwolfers,"When @m_clem comes for faulty research, he brings receipts. https://t.co/gsXx3CHD7b" +05/25/2018,Economists,@justinwolfers,"When the exit polls say that Ireland's pro-choice referendum won 68-32, you can probably trust it's outside the mar… https://t.co/mQAjduj6IB" +05/25/2018,Economists,@justinwolfers,"By the power vested in me by the NFL, I demand you stand for beer o'clock, because nothing speaks to American value… https://t.co/QCGXBQ6nFI" +05/25/2018,Economists,@justinwolfers,@dsquareddigest I would be very interested if you can find real-world examples of pathological or bimodal expectati… https://t.co/0J9Iroxlac +05/25/2018,Economists,@justinwolfers,RT @WesternBruce: Have You Ever Seen Someone Get Killed? A single data point that complicates how we think about who is in prison. @emilymb… +05/25/2018,Economists,@justinwolfers,"“When a foreign company sells Americans something they choose to buy, it is not an act of aggression.”… https://t.co/xCJfUeGKbZ" +05/25/2018,Economists,@justinwolfers,Your chart axis doesn't have to start at zero. https://t.co/LkNtF03dqT +05/25/2018,Economists,@justinwolfers,"RT @abarber1: This won. Justin asked me to give $50 to charity, so I’m going to give it to @GiveWell. https://t.co/HcOkW1D8JJ" +05/25/2018,Economists,@justinwolfers,"Bob Dylan turned 77 today. + +(I was so much older then / I'm younger than that now.)" +05/24/2018,Economists,@justinwolfers,"If the NFL were serious truly patriotic, it would play the national anthem twice before each game." +05/24/2018,Economists,@justinwolfers,I don’t think I’ve ever been more nervous before giving a presentation: Wish me luck as I’m about to give a present… https://t.co/CGm3KHmJyJ +05/24/2018,Economists,@justinwolfers,"RT @damianpaletta: White House trade diary: +5/13 - Trump: We'll rescue ZTE +5/14 - Ross: ZTE unrelated to trade +5/16 - Trump: ZTE part of tr…" +05/24/2018,Economists,@justinwolfers,@mattstockhausen @jodiecongirl All exports -- even of raw materials and unfinished products -- are treated as final… https://t.co/ur6g0XQcUz +05/24/2018,Economists,@justinwolfers,"The case for place-based employment subsidies, from @LHSummers, Glaeser and Austin. +https://t.co/gadL8bmz8x https://t.co/f2p2u15Fl1" +05/24/2018,Economists,@justinwolfers,Who the heck is he planning on bombing? https://t.co/pqXiheHK8J +05/24/2018,Economists,@justinwolfers,Tweeps: I'm crowdsourcing this one for my teaching needs: What are your favorite examples of money illusion (aka no… https://t.co/cRrF2vu64U +05/24/2018,Economists,@justinwolfers,Bitcoin's price definitely is some distance from its fundamental value. https://t.co/52bgZ8FHMY +05/24/2018,Economists,@justinwolfers,Fill in the blanks on this ridiculous sentence and you’ll get a sense of the intense lobbying that’s about to drive… https://t.co/ugN7SarRj8 +05/23/2018,Economists,@justinwolfers,RT @chrislhayes: What could possibly go wrong https://t.co/1Tx1hiGL1Z +05/23/2018,Economists,@justinwolfers,RT @nealemahoney: Players should agree to offset each other. https://t.co/PFJVXfiXB7 +05/23/2018,Economists,@justinwolfers,"RT @ddiamond: Trump just stepped all over GOP midterm messaging. + +“Your vote in 2018 is every bit as important as your vote in 2016 — altho…" +05/23/2018,Economists,@justinwolfers,"RT @BauNatalie: Today, I taught a PhD student to hide her unused water bottles so that the hotel would give her more water bottles. The ad…" +05/23/2018,Economists,@justinwolfers,@jason_ockerby The first ten spots were hard fought. But a team requires eleven. +05/23/2018,Economists,@justinwolfers,"RT @scottlincicome: It's honestly bizarre. In what other context wld a ""conservative"" accept (no less welcome!) POTUS' decision - against C…" +05/23/2018,Economists,@justinwolfers,"I played in my high school First XI cricket team as a specialist batsman coming in at number 11. + +Never got out, a… https://t.co/l1b07wisLD" +05/22/2018,Economists,@justinwolfers,"RT @debipriya: How many times does an @nberpubs paper make your jaw hit the floor, ok, fine, the table, but you get the point? This is one…" +05/22/2018,Economists,@justinwolfers,A textbook example of the blame-shifting corporate passive voice by American Airlines explaining that a monkey it w… https://t.co/1JqDlNZXrP +05/21/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Nice thread explaining my research with @JustinWolfers +The short summary: Women being able to say no-in the case of o…" +05/20/2018,Economists,@justinwolfers,That the White House politburo has a specific target for a bilateral trade deficit sounds a lot like central planni… https://t.co/9Z0VaCxvFK +05/19/2018,Economists,@justinwolfers,Next time someone tells you businesses needs to less regulation so that they're free to pursue profit opportunities… https://t.co/PXMoCetjby +05/18/2018,Economists,@justinwolfers,"RT @patelnomics: If you had to name your Econ themed beer, what would it be? https://t.co/l6R4K6qGQD" +05/18/2018,Economists,@justinwolfers,By the power vested in me by Aaron Schlossberg—who probably won't be at happy hour because he's suddenly become con… https://t.co/ahfDChg5uB +05/18/2018,Economists,@justinwolfers,"2018 has been deadlier for schoolchildren than service members. +https://t.co/fdYbYsSgru https://t.co/JWmDImvpEa" +05/18/2018,Economists,@justinwolfers,An appalling number. https://t.co/OEgITpq9LZ https://t.co/g8nGThsCQV +05/18/2018,Economists,@justinwolfers,The federal government pinpointing individual companies to harm. as political payback is not how capitalism is mean… https://t.co/sI5AAvkPmJ +05/18/2018,Economists,@justinwolfers,"There's a broader and more important point here: We economists spend a lot of time talking among ourselves, which l… https://t.co/u5ZsARRhCF" +05/18/2018,Economists,@justinwolfers,And unwarranted smugness about the insight into economic policy is also bipartisan. https://t.co/1jDO2z7Lh9 +05/18/2018,Economists,@justinwolfers,As for confusing correlation and causation: It's not just those rubes on the other side who do it. Innumeracy is bi… https://t.co/zCZJB0M1Kt +05/18/2018,Economists,@justinwolfers,I suspect partisan differences might be entirely attributable to @paulkrugman. https://t.co/WMB2J6TVcg +05/18/2018,Economists,@justinwolfers,Even if they can't name a single living economist. https://t.co/icOJ8aZHyS +05/18/2018,Economists,@justinwolfers,"The irony is, these folks say they're well-informed about economic policy. https://t.co/ltyuMoiOVE" +05/18/2018,Economists,@justinwolfers,It's not that these folks can't get any questions right. They are answering *other* questions correctly. https://t.co/n6WZyu5QAt +05/18/2018,Economists,@justinwolfers,And our friends in political science have some explaining to do. https://t.co/CDFOctObw8 +05/18/2018,Economists,@justinwolfers,I'm willing to draw conclusions from the data on misunderstanding correlation and causation. (HT @RealBryanWatson) https://t.co/WnaeIptZm0 +05/18/2018,Economists,@justinwolfers,The latest Cards Against Humanity Poll makes a pretty compelling case we need to improve economic education.… https://t.co/blWAdD2oEb +05/18/2018,Economists,@justinwolfers,RT @BrendanNyhan: It's official - I'm thrilled to be joining @fordschool @UMich in the fall! https://t.co/JIm2XBfofX +05/17/2018,Economists,@justinwolfers,And is the DMV the same as the DMZ? https://t.co/Yegdd23Jb4 +05/17/2018,Economists,@justinwolfers,RT @BetseyStevenson: The op-ed in NYT saying lower income kids might not benefit from college made my blood boil. Read this thread and it'l… +05/17/2018,Economists,@justinwolfers,John McCain would have disavowed Aaron Schlossberg by now. +05/17/2018,Economists,@justinwolfers,RT @ATabarrok: Excellent thread. Unfortunate that it has to be said. https://t.co/aqTQ3eUyb4 +05/16/2018,Economists,@justinwolfers,"@causalinf It sounds like you got the big picture right. + +Next time you teach it, ping me for my slides! + +I actuall… https://t.co/OdCYEM4YIH" +05/16/2018,Economists,@justinwolfers,Not understanding trade is a serious defect in a trade adviser. https://t.co/tU5BTsXC3K +05/16/2018,Economists,@justinwolfers,"RT @JustinWolfers: “He even considers, briefly, a position teaching economics.” ...an unexpected gem from Michael Lewis’ extraordinary piec…" +05/16/2018,Economists,@justinwolfers,"“He even considers, briefly, a position teaching economics.” ...an unexpected gem from Michael Lewis’ extraordinary… https://t.co/jICK6VuctZ" +05/16/2018,Economists,@justinwolfers,@titonka @planetmoney That’s fantastic! You’ll be great. +05/15/2018,Economists,@justinwolfers,"RT @AbrahamHanover: In an age of performative cruelty, kindness is punk as fuck. + +Be punk as fuck." +05/15/2018,Economists,@justinwolfers,"RT @BetseyStevenson: This is a terrible idea. +(1) If we want to tax corporations, do it! +(2) Don't create a group of rich people who have…" +05/15/2018,Economists,@justinwolfers,"guys, I have a theory and it's about what old dogs can hear and you can be my data." +05/15/2018,Economists,@justinwolfers,I can only hear Laurel. Do people really hear Yanny? https://t.co/OcmTV6zfUZ +05/15/2018,Economists,@justinwolfers,"Taylor Swift has figured out how to squeeze out the scalpers, but she's also squeezed out many real fans. An intere… https://t.co/DeVoIdKUvj" +05/15/2018,Economists,@justinwolfers,RT @TheEconomist: Economics cannot afford to exclude good minds and good ideas just because they aren't white and male https://t.co/dOQFDp9… +05/14/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Yes, please someone explain to me how letting predatory colleges fleece students and taxpayers is a conservative posit…" +07/01/2018,Economists,@BetseyStevenson,Seems like a sensible revision. https://t.co/3n0RiDHz3X +06/30/2018,Economists,@BetseyStevenson,@TooheyMatthew We do it all the time! And formalizations can be really helpful for building ideas. So the public kn… https://t.co/7HytcQ9iEM +06/30/2018,Economists,@BetseyStevenson,@TooheyMatthew Oh now I feel a bit bad. I really like Dan. I just thought it was funny to see a serious discussion… https://t.co/dJNSGJ0paQ +06/30/2018,Economists,@BetseyStevenson,"I'm getting the sense that @realDonaldTrump just doesn't like children. But still, the worst criminal elements? https://t.co/RzwiEkHWMS" +06/30/2018,Economists,@BetseyStevenson,A formalization of rich people problems. https://t.co/ffhbxM84J2 +06/30/2018,Economists,@BetseyStevenson,"RT @JustinWolfers: Useful thread by a real expert analyzing how the new “postcard” for tax returns is more complicated, leads you to fill i…" +06/30/2018,Economists,@BetseyStevenson,"@BS0064 Yes, but he's no longer waiting for that to ACTUALLY happen, instead he's pretending/lying that it is happe… https://t.co/vSW46PmJMk" +06/30/2018,Economists,@BetseyStevenson,@mrsalzwedel Are you saying that economists aren’t normal people? +06/30/2018,Economists,@BetseyStevenson,The biggest news here is that Kudlow is now lying about the federal deficit rather than continuing to believe and e… https://t.co/GADPTRoksP +06/29/2018,Economists,@BetseyStevenson,Economists continue to be confused as to why the US is pursuing a policy that will lead to higher prices and fewer… https://t.co/Incn8YNZmm +06/29/2018,Economists,@BetseyStevenson,"Tip for policy makers: I look at the people killed, read about their lives, and try my best to imagine the pain the… https://t.co/RTZ3QBWEVD" +06/28/2018,Economists,@BetseyStevenson,@SarahJacobsonEc I went to museum of Swedish design (something like that) where I learned how the Swedish govt solv… https://t.co/bLj8wADhRC +06/27/2018,Economists,@BetseyStevenson,RT @ShadowingTrump: McConnell-Gorsuch Part VI: Cheating pays https://t.co/CLOxrGnXXz +06/27/2018,Economists,@BetseyStevenson,@lukemburgess My point is that I understand and empathize with both sides of it and I think that is most of the ball game. +06/27/2018,Economists,@BetseyStevenson,@lukemburgess The reason people get upset is the lived experience of constantly being assumed to be the stereotype—… https://t.co/Of43qBmTyT +06/27/2018,Economists,@BetseyStevenson,@MikeFellman @econwonk @PressSec @realDonaldTrump I think that every day. And I wish that the public had a better h… https://t.co/FkMphKaaKm +06/27/2018,Economists,@BetseyStevenson,My uber driver asked me if I was a university administrator. You might think that’s sexist but another answer is th… https://t.co/6vzDXxEP1g +06/27/2018,Economists,@BetseyStevenson,#cloudme @tweetcloudbot +06/26/2018,Economists,@BetseyStevenson,Pregnancy discrimination is one reason that women with children earn less than women without children.… https://t.co/6hxYKVweRw +06/26/2018,Economists,@BetseyStevenson,"RT @CFCamerer: Incredible must read “History can familiarize, and it can warn” https://t.co/1tNRqR0lUb" +06/25/2018,Economists,@BetseyStevenson,"@MikeFellman @econwonk @PressSec @realDonaldTrump Yes, yes I have thought that." +06/25/2018,Economists,@BetseyStevenson,RT @brhodes: The President of the United States is threatening to do away with the rule of law. His press secretary didn't get served at a… +06/25/2018,Economists,@BetseyStevenson,After learning that @PressSec's use of twitter to complain about her treatment at a private business was an ethics… https://t.co/sHZxu1H9hJ +06/24/2018,Economists,@BetseyStevenson,Ankle bracelets are a way to achieve the same outcomes with lower government spending. (Remember when the GOP used… https://t.co/Kv7hFuqzT7 +06/24/2018,Economists,@BetseyStevenson,"RT @soledadobrien: Thanks @sullydish ! I wasn't sure what to think when the President talked about migrants 'infest'ing our country. Whew,…" +06/24/2018,Economists,@BetseyStevenson,These folks no longer have to tell you what's in your best interest anymore so watch out before you follow financia… https://t.co/Wqwen0gArx +06/23/2018,Economists,@BetseyStevenson,"Turns out that she's right +https://t.co/5bPa1MFkqW" +06/23/2018,Economists,@BetseyStevenson,I told an American citizen the other day that the shortest route from Ann Arbor to Massachusetts was through Canada… https://t.co/KOA2iKtvBP +06/23/2018,Economists,@BetseyStevenson,Some people make retirement look good. @JohnDingell excels at it. https://t.co/Goaw3kzE8c +06/22/2018,Economists,@BetseyStevenson,GDP counts ...ambulances to clear our highways of carnage. It counts special locks for our doors and the jails for… https://t.co/iY12iiHrbu +06/21/2018,Economists,@BetseyStevenson,RT @SarahJacobsonEc: Apply apply apply! The CSWEP CeMENT mentoring program is wonderful. https://t.co/BNer13ER9I +06/21/2018,Economists,@BetseyStevenson,"RT @JedKolko: @BetseyStevenson Even strongly Trump-voting counties are overwhelmingly service economies + +https://t.co/rKQq4I1rja" +06/21/2018,Economists,@BetseyStevenson,"80% of U.S. employment is in the service sector, one-third of U.S. exports are services +We export services because… https://t.co/WeeXuqNUJ0" +06/21/2018,Economists,@BetseyStevenson,@RadioFreeTom I'm a dem who believes democracy needs more than one party and an economist who understands truly con… https://t.co/dnVYrGLVD0 +06/20/2018,Economists,@BetseyStevenson,"Our government has separated 2,000 children and doesn't yet have a plan to EVER reunite these children with their p… https://t.co/iVedsSrAvK" +06/20/2018,Economists,@BetseyStevenson,"RT @codykeenan: ✅ More than 1 million jobs in every six-month stretch going back to 2012 +✅ Unemployment falling since 2010 +✅ Wages rising (…" +06/19/2018,Economists,@BetseyStevenson,"Sometimes you have to laugh at the incompetence. Go to the facebook page. There's lots of questions. Shockingly, St… https://t.co/LjbXol1aqQ" +06/18/2018,Economists,@BetseyStevenson,"No matter your political beliefs or your party affiliation, if you study families and children you know that the Un… https://t.co/fjpQduVOlG" +06/18/2018,Economists,@BetseyStevenson,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Economists,@BetseyStevenson,"RT @SaraMurray: “Amnesty International recently interviewed 17 asylum-seeking parents who were forcibly separated from their children, and…" +06/18/2018,Economists,@BetseyStevenson,"@jason_nordsell @TDeryugina @TimDuy Is separating them from their children? Now, we're starting to think similarly.… https://t.co/HaAG9Nx77r" +06/18/2018,Economists,@BetseyStevenson,@jason_nordsell @TDeryugina @TimDuy Anger gets in the way of logic and you are clearly very angry. Your anger has l… https://t.co/bvE6WlxRtm +06/18/2018,Economists,@BetseyStevenson,The callousness of some of my fellow countrymen takes my breath away. https://t.co/SlEQfMkNng +06/18/2018,Economists,@BetseyStevenson,"Just in case the GOP wasn't aware, world trading partners will eventually move on. https://t.co/8n5aho98Hg" +06/18/2018,Economists,@BetseyStevenson,"Last night my 5-year old woke up from a bad dream, crying and calling for his parents. I ran to him, quickly smooth… https://t.co/kPlfAezB1m" +06/18/2018,Economists,@BetseyStevenson,#cloudme @tweetcloudbot +06/18/2018,Economists,@BetseyStevenson,RT @ShellyJLundberg: This is rather awesome. https://t.co/uSv9Ff8lDY +06/17/2018,Economists,@BetseyStevenson,RT @robyndoolittle: “To pretend that separated children do not grow up with the shrapnel of this traumatic experience embedded in their min… +06/17/2018,Economists,@BetseyStevenson,"RT @ReliableSources: ""I'm extremely angry with this administration that has lied to me, continues to lie to me,"" says reporter @BrianKarem…" +06/17/2018,Economists,@BetseyStevenson,RT @michele_norris: Keep knocking https://t.co/Yo3WyzjxiS +06/17/2018,Economists,@BetseyStevenson,"My heart races, my stomach heaves, and I can't breath when I read this. But looking away isn't a choice either. Eve… https://t.co/LwT7GV3nSM" +06/16/2018,Economists,@BetseyStevenson,"When you work in the White House you can do a lot of good. Unfortunately, you can also do a lot of harm. https://t.co/HwVLuzOPOF" +06/16/2018,Economists,@BetseyStevenson,"@sampenrose But they are becoming more selective over time, because the pool of qualified applicants has grown subs… https://t.co/Emr1yXeqha" +06/16/2018,Economists,@BetseyStevenson,Totally agree. There are so many more qualified people and the slots aren't expanding. I know that the experience c… https://t.co/4vRQpVFpl9 +06/15/2018,Economists,@BetseyStevenson,We won't be able to pretend later that we didn't know it was happening. We did. https://t.co/1Y873VTDOb +06/15/2018,Economists,@BetseyStevenson,"Um, what? https://t.co/3wnGYTUwbQ" +06/15/2018,Economists,@BetseyStevenson,"RT @familyunequal: When I was a little kid my neighbor rode the short bus to school. Lots of people mocked and bullied him, but he was alwa…" +06/15/2018,Economists,@BetseyStevenson,"RT @JamesSurowiecki: Where is ""feed, clothe, and entertain your little children"" on this list? https://t.co/cIDFwrHh1y" +06/14/2018,Economists,@BetseyStevenson,"Yes we might get 4% growth in a quarter. No, that’s not a sign that the tax cuts “worked”. A fair and good assessme… https://t.co/s16zmubnXC" +06/14/2018,Economists,@BetseyStevenson,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Economists,@BetseyStevenson,RT @AmbassadorRice: WTH??!! https://t.co/VObr4lArPo +06/14/2018,Economists,@BetseyStevenson,"You know you've hit your mid-40s when you get a fundraiser invitation and think ""that looks like fun!""" +06/14/2018,Economists,@BetseyStevenson,Trump admires Kim Jong Un and other violent dictators. He’s energized and excited by their action. The G7 leaders i… https://t.co/3wQBL5SOYf +06/14/2018,Economists,@BetseyStevenson,"@brian_root There is selection into the work for sure. I do feel for the workers, but I also firmly believe that if… https://t.co/vZnSlo3iNa" +06/13/2018,Economists,@BetseyStevenson,This isn't just bad policy. What have we done to the people working for ICE? These workers are too desensitized to… https://t.co/jsO1hGkxyn +06/13/2018,Economists,@BetseyStevenson,Sometimes you have to state the obvious. https://t.co/TfgG9wzeOD +06/13/2018,Economists,@BetseyStevenson,Thank goodness we have economist jokes in these trying times. https://t.co/BTGFefk9Lu +06/12/2018,Economists,@BetseyStevenson,"I have to close twitter, shut off the radio, hide my newspaper apps today. This is too much. https://t.co/tNuKWFGJyS" +06/12/2018,Economists,@BetseyStevenson,I thought the idea that the GOP was trying to stop low income people from voting was supposed to be unspoken. Seems… https://t.co/iETxamGlij +06/11/2018,Economists,@BetseyStevenson,This is actually our government. Watch this interview and keep reminding yourself that this isn't some blowhard on… https://t.co/z2tFgCv2Uf +06/11/2018,Economists,@BetseyStevenson,Actually freelance fees for book reviews have fallen substantially if you think about the fee in terms of what it c… https://t.co/5SnerqTwnM +06/11/2018,Economists,@BetseyStevenson,"My favorite part of reunion is seeing the women from the classes of 1943, '48, '53, & '58. The women who graduated… https://t.co/Cpyy73ejm8" +06/11/2018,Economists,@BetseyStevenson,@amyjccuddy @TooheyMatthew @JustinWolfers You have to have somewhere to sleep and eat whether you are in school or… https://t.co/M35jgmLsGW +06/11/2018,Economists,@BetseyStevenson,@amyjccuddy @TooheyMatthew @JustinWolfers That's a very different question because that question is how much does f… https://t.co/X8NC9wfagO +06/11/2018,Economists,@BetseyStevenson,@TooheyMatthew @amyjccuddy @JustinWolfers One could even just look these numbers up using google. Tuition depends o… https://t.co/SF9uEWxtdA +06/08/2018,Economists,@BetseyStevenson,"If we aren't going to support working families, we'll have fewer working families. + +There's a reason Millennials a… https://t.co/Pr3yuNCV5V" +06/08/2018,Economists,@BetseyStevenson,Super excited to head to @Wellesley today for reunion! https://t.co/d86i88XTX0 +06/08/2018,Economists,@BetseyStevenson,"@a40ruhr @SylvainCF @JustinWolfers I don't know because I don't have another experience, but I do think that having… https://t.co/JuC2R7E2Dw" +06/07/2018,Economists,@BetseyStevenson,"@felixsalmon @mrgunn Wait, are you saying most people don't use twitter to learn about new research, stay on top of… https://t.co/5INcfsrJHe" +06/07/2018,Economists,@BetseyStevenson,"@felixsalmon @mrgunn Wait, what?" +06/07/2018,Economists,@BetseyStevenson,I think I'm starting to understand American politics. https://t.co/phafTizVa4 +06/06/2018,Economists,@BetseyStevenson,@JaimeMortimer Look New Zealand is smaller than Oz and I've basically discovered that every Australian in the U.S.… https://t.co/0kk8x4GiWK +06/06/2018,Economists,@BetseyStevenson,@niltiac @drlisadcook Keep in mind everyone loves to advise students on the right path--every supervisor does what… https://t.co/nWpN3H5fef +06/06/2018,Economists,@BetseyStevenson,"@niltiac @drlisadcook I don't think we disagree, but the adviser can't do their research for them & I've seen lots… https://t.co/4N5SHNrlTd" +06/06/2018,Economists,@BetseyStevenson,@RocCityBuilt I know you support the president. You're too smart to think there's no info in his comment. Reasonabl… https://t.co/r4iHz9XWzF +06/05/2018,Economists,@BetseyStevenson,"What worries me about the ""Obama-did-it-to"" lie is that it is necessary because Trump defenders know that he will l… https://t.co/0aMHV3Ikjj" +06/05/2018,Economists,@BetseyStevenson,"@charlesjkenny @TimHarford @JustinWolfers Depends on the measure of happiness, but the clear finding was with a hol… https://t.co/gZJ8LhefI9" +06/05/2018,Economists,@BetseyStevenson,"RT @DinaPomeranz: If a study doesn't replicate in a new context, that doesn't imply researchers of the original study did something wrong o…" +06/05/2018,Economists,@BetseyStevenson,"If you don't like something, Trump claims the Democrats/Obama/Crooked Hillary did it. + +To be clear: This is a poli… https://t.co/Rl8VayEeq4" +06/05/2018,Economists,@BetseyStevenson,RT @esglaude: These people are moral monsters... https://t.co/dijYf000vp +06/05/2018,Economists,@BetseyStevenson,"@niltiac @drlisadcook Of course that's the goal and MANY try to choose that path, but in my experience many struggl… https://t.co/O436cDUFu8" +06/05/2018,Economists,@BetseyStevenson,@andrewr94514536 @ATabarrok lotteries are welfare decreasing under standard utilitarian assumptions. But I think mo… https://t.co/puFpUCyaJM +06/05/2018,Economists,@BetseyStevenson,"@ATabarrok I think you are saying that it’s the relative gain not the absolute gain. +This study can’t distinguish b… https://t.co/9G3lnviwJM" +06/04/2018,Economists,@BetseyStevenson,"And how many years of life did you cost Americans? How much additional environmental degradation? + +Just because yo… https://t.co/rlrEHEOl3v" +06/04/2018,Economists,@BetseyStevenson,"RT @BrookingsEcon: If you haven't kept up with the joint @BrookingsInst & @AEI series on paid family leave, now's the perfect time to start…" +06/04/2018,Economists,@BetseyStevenson,Research on a surprisingly contested question finds an unsurprising answer. Your life is better if you win the lott… https://t.co/dATZvtMiCJ +06/04/2018,Economists,@BetseyStevenson,This is a really important point that both PhD students and advisers forget. It's an apprenticeship in which studen… https://t.co/BwSpSobD1J +06/04/2018,Economists,@BetseyStevenson,"Ugh this is so awful. He did a lot of good in the world & may have even helped advance many women’s careers, but th… https://t.co/3S6drq6mnJ" +06/04/2018,Economists,@BetseyStevenson,"RT @LHSummers: It’s extraordinary that premature Presidential observations on sensitive data releases are barely newsworthy in 2018, given…" +06/04/2018,Economists,@BetseyStevenson,RT @ShellyJLundberg: This seems important. John Haltiwanger documents decline in young firms and decline in high growth firms in high tech.… +06/03/2018,Economists,@BetseyStevenson,@Undercoverhist @ShellyJLundberg But you also know that your fans will be extremely grateful! +06/01/2018,Economists,@BetseyStevenson,"This is a complete lie. + +Austan, @jasonfurman, @Alan_Krueger, Christy Romer, and I gave Obama the numbers. We NEVE… https://t.co/FVQP1i1Glr" +06/01/2018,Economists,@BetseyStevenson,I truly believe that each generation is smarter than the previous generation. But there are clearly some outliers t… https://t.co/L0U6J4R740 +06/01/2018,Economists,@BetseyStevenson,"I, like much of America apparently, have been forced to abandon beer for a stiff drink at the end of what is now al… https://t.co/cNcVniFFCx" +06/01/2018,Economists,@BetseyStevenson,"RT @ShadowingTrump: After this morning's leak of confidential economic data, is there *any* law or norm Trump won't violate? It's almost li…" +06/01/2018,Economists,@BetseyStevenson,This is a time to be grateful that the President doesn't listen to his advisers. https://t.co/GlxsJwIK8k +06/01/2018,Economists,@BetseyStevenson,What do I mean by a bigger crisis? While student loans may be difficult they exist. There is substantial financial… https://t.co/ws0P3HJiDE +06/01/2018,Economists,@BetseyStevenson,Not obscure before this administration. The Obama administration and all previous administrations to my knowledge f… https://t.co/LgLHqJXM4C +06/01/2018,Economists,@BetseyStevenson,We would have been freaking out and we would have discussed whether it was in the president's best interest to tell… https://t.co/tYFyyeUPXo +06/01/2018,Economists,@BetseyStevenson,Do you know why I never fear the robots? Because the youngsters are becoming more talented at an even faster rate.… https://t.co/ZPRWzgutFS +06/01/2018,Economists,@BetseyStevenson,Seems like a good candidate for a Trump pardon https://t.co/WiWXkgU3pL +06/01/2018,Economists,@BetseyStevenson,"@boost321 @jimtankersley @ThePlumLineGS @Austan_Goolsbee I think that this is a more important issue than that, but… https://t.co/I3ta2bLmzJ" +06/01/2018,Economists,@BetseyStevenson,@DonCarrMAC @Austan_Goolsbee This isn’t liberal bias. The markets inferred correctly that the news would be good fr… https://t.co/YHOL8KN0ob +06/01/2018,Economists,@BetseyStevenson,"There is a big question about who he privately leaks data to and that should be investigated. +Privately leaking thi… https://t.co/hz96iB4yuk" +06/01/2018,Economists,@BetseyStevenson,@ThePlumLineGS @Austan_Goolsbee I would start by reading this: Confidential Information Protection and Statistical… https://t.co/UMThszyV6F +06/01/2018,Economists,@BetseyStevenson,"RT @Austan_Goolsbee: If the president just tipped that the numbers are good, he broke the law https://t.co/8MDJZAS22j" +06/01/2018,Economists,@BetseyStevenson,I think the PR he wants is people talking about him. It worked. https://t.co/0mqoC2izy8 +06/01/2018,Economists,@BetseyStevenson,RT @grossdm: i would bet there are meetings at bureau of labor statistics to discuss keeping advance news on jobs report from getting to th… +06/01/2018,Economists,@BetseyStevenson,Independent statistical agencies must stop sharing data with @realDonaldTrump before public release. The data needs… https://t.co/CjAyXptPiF +06/01/2018,Economists,@BetseyStevenson,@jason_ockerby I don’t live there so don’t have the national insurance. +06/01/2018,Economists,@BetseyStevenson,@rclarkiv It was part of the same hospital so there wasn’t a risk to us. I was also allowed to transport my child (… https://t.co/SDnvvcC27S +06/01/2018,Economists,@BetseyStevenson,@SarahJacobsonEc @WilliamsEcon On to graduate school I hope! +06/01/2018,Economists,@BetseyStevenson,In Australia I once took my kid to the ER for a cut that might have needed a couple stitches. The ER took a look an… https://t.co/axk888d1V1 +05/31/2018,Economists,@BetseyStevenson,"@katewbauer @wowintheworld @guyraz @AbsolutelyMindy They said brain butt, how is that bad communication! Every kid… https://t.co/siLsy9Wky7" +05/31/2018,Economists,@BetseyStevenson,"Attention @wowintheworld @guyraz @AbsolutelyMindy + +My kids need to know more about this butt brain right away. Ple… https://t.co/SGPCDHGFax" +05/31/2018,Economists,@BetseyStevenson,The law and order president https://t.co/OHOZ8CVHwS +05/30/2018,Economists,@BetseyStevenson,"There goes the faculty's, staff's, and students' step count. https://t.co/b2I2PXKFiW" +05/30/2018,Economists,@BetseyStevenson,@Rocketist That's kind of you to say. I appreciate you taking a moment of your time to say something nice to me. +05/30/2018,Economists,@BetseyStevenson,@Rocketist I decided that since I was being vague about per capital or total I could fudge that one. +05/30/2018,Economists,@BetseyStevenson,"Imagine if families got paid time off for a new child, mothers didn't face a permanent wage penalty, and families h… https://t.co/YF6gB9FStG" +05/30/2018,Economists,@BetseyStevenson,This is a guy who is directing the richest country in the world to terrorize innocent children calling other human… https://t.co/QKpiMsIf1v +05/30/2018,Economists,@BetseyStevenson,"RT @PAniskoff: VJ is the epitome of “when they go low, we go high”. She handles every disgusting thing that comes at her with grace, and,…" +05/29/2018,Economists,@BetseyStevenson,RT @jonfavs: It is not a law. Separating children from parents at the border is a new Trump Administration policy. It was not policy under… +05/29/2018,Economists,@BetseyStevenson,"In these trying times, it's good to be able to rely on the dictionary. https://t.co/xrzOjaHsGE" +05/29/2018,Economists,@BetseyStevenson,"President Trump's policy is a form of torture. +President Trump's policy should be against the law. +President Trum… https://t.co/WXpxnXCVQY" +05/28/2018,Economists,@BetseyStevenson,@SometimesSoftly @besttrousers @kareem_sabri @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/SQyfdknlXg +05/28/2018,Economists,@BetseyStevenson,"As @Lin_Manuel would say: Immigrants, they get the job done. https://t.co/pc4GAngxuT" +05/28/2018,Economists,@BetseyStevenson,@besttrousers @kareem_sabri @SometimesSoftly @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/Jc8l6N53Vd +05/28/2018,Economists,@BetseyStevenson,@besttrousers @kareem_sabri @SometimesSoftly @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/ROuoNb7D1s +05/27/2018,Economists,@BetseyStevenson,"Separating children from their parents is really bad and should only be done in the most extreme situations. +Immigr… https://t.co/HBX8M2m27a" +05/26/2018,Economists,@BetseyStevenson,What we are doing is wrong. Call your members of Congress. Tell them that this is unAmerican. That they shouldn’t s… https://t.co/ry5RffGXJZ +05/24/2018,Economists,@BetseyStevenson,"It may seem silly, but Trump's decision to only be President to his supporters is an affront to our system of gover… https://t.co/I21zZVlWuo" +05/24/2018,Economists,@BetseyStevenson,@familyunequal Thank you! Amazing! +05/24/2018,Economists,@BetseyStevenson,"@Austan_Goolsbee Maybe she could just choose what she wants to do among all her opportunities. +I’m personally glad… https://t.co/kTbEvvM00U" +05/23/2018,Economists,@BetseyStevenson,"@elliottmcollins Did you read the article ""using spotlights to shoot mother black bears and cubs hibernating in the… https://t.co/hF3EmkIFNT" +05/23/2018,Economists,@BetseyStevenson,@gunderson A flat tax doesn't solve tax complication at all! The difficulty of taxes is not doing math on a few dif… https://t.co/Lz2Q1oy9g9 +05/23/2018,Economists,@BetseyStevenson,"They also have enough information to do your taxes for you. + +There are two things that GOP doesn't want to make ea… https://t.co/RZGipPmnIH" +05/23/2018,Economists,@BetseyStevenson,RT @Austan_Goolsbee: My old nber cubicle-mate from graduate school. Nobody is smarter or more down-to-earth. Good for BYU. https://t.co/6BZ… +05/23/2018,Economists,@BetseyStevenson,@pusher1990 The only disagreement here is that I don't think recognizing the rights of immigrants or all people reg… https://t.co/e0E3Lqn81P +05/23/2018,Economists,@BetseyStevenson,"Someone recently asked what social idea would seem obvious in the future but is ahead of its time now. +The answer i… https://t.co/UFjJD0g6KL" +05/22/2018,Economists,@BetseyStevenson,@icefire99 @_alice_evans @JustinWolfers I think that you are misunderstanding marriage--it's generally a cooperativ… https://t.co/Kop1eIwr6U +05/22/2018,Economists,@BetseyStevenson,@Missmarissabee @moorehn A third of Americans have a college degree. Free college won't help your friend--it won't… https://t.co/b1jpjNauIo +05/22/2018,Economists,@BetseyStevenson,"@Missmarissabee @moorehn Lots of countries have more sensible ways to fund college, but what does free mean. Colleg… https://t.co/pUF6kf8FYu" +05/22/2018,Economists,@BetseyStevenson,@annanorthtweets Congratulations! That is lovely news. Enjoy maternity leave! You and all parents deserve leave! +05/22/2018,Economists,@BetseyStevenson,"In an era of reduced worker bargaining power, the Supreme Court strikes another blow, with a decision that further… https://t.co/jJ7Mtolmli" +05/21/2018,Economists,@BetseyStevenson,"RT @tukopamoja: Look at this amazing line-up of economists speaking at @WB_Research! + +You can find links to videos of the seminars that ha…" +05/21/2018,Economists,@BetseyStevenson,Is it time for the constitutional crisis yet? https://t.co/IaimJ4nAEy +05/21/2018,Economists,@BetseyStevenson,"Nice thread explaining my research with @JustinWolfers +The short summary: Women being able to say no-in the case o… https://t.co/uQHP268bGN" +05/21/2018,Economists,@BetseyStevenson,@jamisonfoser @NextGenAmerica Touché +05/21/2018,Economists,@BetseyStevenson,Every day I focus my hopes and prayers on millennials voting. https://t.co/dhPJ61LM7T +05/20/2018,Economists,@BetseyStevenson,@cockybritches @olivia_meikle Jesus Christ! Stop harassing her. What’s the matter with YOU? Get a life. +05/19/2018,Economists,@BetseyStevenson,"@dovesandletters @JustinWolfers I can’t tell if you are joking. They are referring to Frisco, Texas" +05/19/2018,Economists,@BetseyStevenson,"RT @JustinWolfers: Next time someone tells you businesses needs to less regulation so that they're free to pursue profit opportunities, sen…" +05/19/2018,Economists,@BetseyStevenson,"@jneuf Sure it’s a little crass to celebrate that metric. But come on, it feels great to see a public school on tha… https://t.co/XsRi2nrJ9J" +05/18/2018,Economists,@BetseyStevenson,@jneuf I teach the public policy students. They are awesome! I'm sure Michigan competes well on your metric. +05/18/2018,Economists,@BetseyStevenson,Which state school is churning out the most billionaires? You guessed it! The University of Michigan @UMich is the… https://t.co/oWWJH0OHlk +05/18/2018,Economists,@BetseyStevenson,@judy_chevalier @MartinSGaynor @M_ttM_ Wait you can use spaces? +05/18/2018,Economists,@BetseyStevenson,RT @JustinWolfers: The federal government pinpointing individual companies to harm. as political payback is not how capitalism is meant to… +05/18/2018,Economists,@BetseyStevenson,That's why they are reported--because they are held by people journalists know like lawyers. Who really struggles w… https://t.co/do13fQjkkk +05/18/2018,Economists,@BetseyStevenson,SNAP works. It's that simple. Cutting it is cruel and will cost more in the end by raising childhood hunger and lea… https://t.co/C9z5rJlX1B +05/18/2018,Economists,@BetseyStevenson,This is so awesome! https://t.co/jX4rVMLDxt +05/18/2018,Economists,@BetseyStevenson,I agree—this is the best typo I have ever seen. Can’t stop laugh/crying https://t.co/IJqloREQS7 +05/18/2018,Economists,@BetseyStevenson,Birth rates for teens and near teens is way down. This is good for kids. That the birth rate is slightly down for w… https://t.co/nkPGmPpdz3 +05/17/2018,Economists,@BetseyStevenson,I guess we have to sink lower before rising up. But surely our appetite for this kind of crap will be satiated soon… https://t.co/HnvxWzuWvN +05/17/2018,Economists,@BetseyStevenson,The op-ed in NYT saying lower income kids might not benefit from college made my blood boil. Read this thread and i… https://t.co/C0o6nOuMKX +05/17/2018,Economists,@BetseyStevenson,The high cost of childcare & the way our society frowns at parents for needing time to care for infants are a big p… https://t.co/lfX1uiZkbC +05/16/2018,Economists,@BetseyStevenson,"To @JillFilipovic 's point--better more affordable childcare & preschool has been a priority for some. + +The reason… https://t.co/TfCIWIad1b" +05/16/2018,Economists,@BetseyStevenson,"Childcare in the first five years of life costs as much as college. + +But w/ childcare, parents don't have time to… https://t.co/WcE0fbsaWt" +05/16/2018,Economists,@BetseyStevenson,@ATabarrok @Lin_Manuel Yes but more people listen to the music than have seen the show. And many more will see it n… https://t.co/jAADbIJy2I +05/16/2018,Economists,@BetseyStevenson,"When my daughter explain to her baby brother that a frenemy was ""like Alexander Hamilton and Aaron Burr"" I realized… https://t.co/Mor53TnY5Q" +05/16/2018,Economists,@BetseyStevenson,@Austan_Goolsbee @ShellyJLundberg We did this with our youngest’s favorite stuffed animal until she discovered our stash. +05/16/2018,Economists,@BetseyStevenson,@ShellyJLundberg That’s the best part of twitter! Well that and keeping up with new research. I loved your story. +05/15/2018,Economists,@BetseyStevenson,@ShellyJLundberg All I can think right now is should I be doing this? I wash with the stuffing in. Is that bad? Oh… https://t.co/UbKdx6hnaq +05/15/2018,Economists,@BetseyStevenson,@JosephPatrice The point is that Dems are so afraid to just tax that they invent complicated taxes that create a bu… https://t.co/6gocfdE2fb +05/15/2018,Economists,@BetseyStevenson,"RT @cskovron: My research with @dbroockman, as well as relevant research by, among others, @V_Williamson and @SpencerPiston, suggests Ds pr…" +05/15/2018,Economists,@BetseyStevenson,This policy also encourages low-skill workers to be replaced by machines. +05/15/2018,Economists,@BetseyStevenson,@HarryDCrane @CFCamerer It is absolutely not true that there are higher standards at for-profit institutions. Read… https://t.co/pUQcMB5Rro +05/15/2018,Economists,@BetseyStevenson,"This is a terrible idea. +(1) If we want to tax corporations, do it! +(2) Don't create a group of rich people who ha… https://t.co/pfdJXGr2yy" +05/15/2018,Economists,@BetseyStevenson,"RT @ShellyJLundberg: Every spring, my mother gathered our stuffed animals (not many each, but there were 6 of us), split a seam, pulled out…" +05/15/2018,Economists,@BetseyStevenson,But you already knew this right? https://t.co/JiJ1o5GQOw +05/14/2018,Economists,@BetseyStevenson,@EdAsante77 @JustinWolfers Even if the school is lying about failure rates? So conservatives support lying to peopl… https://t.co/Qmau7hM67f +05/14/2018,Economists,@BetseyStevenson,"Yes, please someone explain to me how letting predatory colleges fleece students and taxpayers is a conservative po… https://t.co/ekd9FfiJxQ" +05/14/2018,Economists,@BetseyStevenson,RT @wowintheworld: What's that smell? It's today's new episode! In Somefin Smells Fishy in Here @guyraz and @AbsolutelyMindy teach us how e… +05/14/2018,Economists,@BetseyStevenson,Sometimes I feel for the folks trying to work in the WH. https://t.co/eFuI6ku7bi +05/10/2018,Economists,@BetseyStevenson,I'm looking forward to this discussion! https://t.co/nuOF1a8RMh +05/08/2018,Economists,@BetseyStevenson,"I usually really like @TheEconomist. But this article is bad. Here are 2 pbs w/ it: +1) Al Roth actually works on ho… https://t.co/gSdwQuouv8" +05/08/2018,Economists,@BetseyStevenson,RT @BarackObama: There are few issues more important to the security of the US than the potential spread of nuclear weapons or the potentia… +05/08/2018,Economists,@BetseyStevenson,"RT @brhodes: The same people making the same mistakes, in part because too many people refused to acknowledge or accept the scale of the ca…" +05/08/2018,Economists,@BetseyStevenson,RT @brhodes: It took five years of diplomacy to build the sanctions regime and two years of diplomacy to reach a Deal. Trump is blowing tha… +05/08/2018,Economists,@BetseyStevenson,"The decision to pull out of the Iran deal is a terrifyingly bad choice, made for all the wrong reasons, and will le… https://t.co/z3gQOp9b6Y" +06/27/2018,Economists,@omzidar,"Race and economic opportunity in the United States | VOX, CEPR Policy Portal https://t.co/X7dc65wYXC" +06/27/2018,Economists,@omzidar,Why states are raising less revenue from corporate taxes - Chicago Booth Review https://t.co/DiZt6JuUOw via @chicagoboothrev +06/27/2018,Economists,@omzidar,RT @TradeDiversion: International exchange of goods plays a small role in most research presented at the Princeton IES Workshop this week:… +06/27/2018,Economists,@omzidar,"CAGE Workshop in Applied Economics, Venice 2018 https://t.co/rzCMdTQfWE" +06/27/2018,Economists,@omzidar,"U.S. government's efforts to regulate state pathways around SALT cap could hit hospital, school programs elsewhere… https://t.co/lma5IDhCmu" +06/27/2018,Economists,@omzidar,RT @AllisonSchrager: I asked Jean Tirole every you could want to know about regulating tech--no better source https://t.co/MkhhHhyODS via @… +06/25/2018,Economists,@omzidar,RT @Austan_Goolsbee: Spoiler: it’s by my @ChicagoBooth colleague Eric Budish and shows that the vulnerability to attack depends on the flow… +06/24/2018,Economists,@omzidar,RT @nealemahoney: Congratulations to both of you! https://t.co/wdXuYVj5VI +06/23/2018,Economists,@omzidar,"@ProfNoto “The brand most predictive of top income in 1992 is Grey Poupon Dijon mustard.42 By 2004, the brand most… https://t.co/2IK3ArgIfO" +06/23/2018,Economists,@omzidar,"@ProfNoto This was pretty interesting ... “In 1992, watching car racing, bicycle racing, and figure skating – and n… https://t.co/6cBexDZirw" +06/23/2018,Economists,@omzidar,@real_eric_ohrn How was the Zwick session? +06/23/2018,Economists,@omzidar,"RT @ProfNoto: Now *this* is a cool use of machine learning! + +How well can we predict demographic characteristics from media consumption, ti…" +06/22/2018,Economists,@omzidar,"RT @ProfNoto: OK, I've ""read"" the PDFs in Harvard discrimination case (though this is using the elastic meaning of ""read"" provided by McAfe…" +06/22/2018,Economists,@omzidar,State sales-tax officials rev their engines following Supreme Court ruling https://t.co/xXQ0zI0Hyu via @WSJ +06/22/2018,Economists,@omzidar,"RT @ProfNoto: This cool figure from Raj Chetty's talk at that ""school up north"" [go Buckeyes!] includes a graph from the JMP of my co-autho…" +06/21/2018,Economists,@omzidar,"Some interesting figures on democratic vote share by education, income, race from 1948-2016 from @PikettyLeMonde's… https://t.co/hvrwTpVb3R" +06/21/2018,Economists,@omzidar,Supreme Court rules that states may require online retailers to collect sales taxes https://t.co/kXa9q1Bac8 +06/21/2018,Economists,@omzidar,"RT @DinaPomeranz: Interested in tax research? + +Don't miss these great talks & panels tomorrow at the conference organized by Joel Slemrod o…" +06/20/2018,Economists,@omzidar,@fatihguvenen https://t.co/ULYl56be8I +06/19/2018,Economists,@omzidar,"RT @fatihguvenen: We are going to talk about inequality. New facts, findings, and ideas. +This Thursday-Friday in Copenhagen. Come and join…" +06/18/2018,Economists,@omzidar,Business Taxation -- Call for Papers: Research Conference and Graduate Student Workshop https://t.co/r8Iecse6fI +06/18/2018,Economists,@omzidar,"RT @ProfNoto: Back in 🇺🇸, so back on Twitter! + +Two threads I liked recently-- + +@IlliniBizDean on pensions: https://t.co/6YwwkMIPJV + +@SteveC…" +06/16/2018,Economists,@omzidar,"RT @ProfEmilyOster: Interesting (personal) take on the Harvard affirmative action case from the great @JeannieSuk +https://t.co/Hd07zHzMLv" +06/15/2018,Economists,@omzidar,RT @IlliniBizDean: Great thread on the Harvard admissions lawsuit by one of the best education economists in the world (and in full disclos… +06/15/2018,Economists,@omzidar,"RT @Kweku_OA: For your urgent economics diagram illustration needs, check out a very nice TikZ cookbook by Chiu Yu Ko of the National Unive…" +06/15/2018,Economists,@omzidar,RT @JoshuaSGoodman: For a phenomenal example of the importance of choosing the correct controls in a regression (and a smackdown of someone… +06/15/2018,Economists,@omzidar,"RT @dynarski: The Harvard brief is here + +https://t.co/iggzAlgMbq + +The plaintiffs’ brief is here + +https://t.co/fBg1vyerVz + +8/N" +06/15/2018,Economists,@omzidar,"RT @dynarski: Card models the Harvard admissions process using all the factors the school uses in making decisions. Essay ratings, backgrou…" +06/15/2018,Economists,@omzidar,"RT @dynarski: Once you consider all these factors, there is no evidence of bias against Asians in the process. + +David Card has does the s…" +06/15/2018,Economists,@omzidar,"RT @dynarski: Does Harvard discriminate against Asians in admissions? + +Evidence says no, by my reading of the evidence in this case. /THRE…" +06/15/2018,Economists,@omzidar,One in ten dollars of US housing were anonymous https://t.co/ro15VkKSwl via @FT +06/15/2018,Economists,@omzidar,"Harvard Rated Asian-American Applicants Lower on Personality Traits, Lawsuit Says https://t.co/GopD1Lgor2" +06/12/2018,Economists,@omzidar,RT @crampell: Very sorry to hear this. I wish him a swift recovery and hope his family is doing OK. https://t.co/fxxBrdH4Y9 +06/10/2018,Economists,@omzidar,https://t.co/lTWFcwrmyE +06/08/2018,Economists,@omzidar,RT @just_shelter: We’re hiring! https://t.co/3Rx5bTnqgm +06/08/2018,Economists,@omzidar,"RT @seema_econ: Super helpful curated list of tips for economists, by Masa Kudamatsu. Links to advice on applying for a PhD, making present…" +06/07/2018,Economists,@omzidar,Apple and Google’s hometowns still considering employer taxes https://t.co/4E5VFON93w +06/07/2018,Economists,@omzidar,"RT @ProfNoto: Great article in The Upshot on the correspondence by David Himmelstein, Steffie Woolhandler, & @SenWarren about my recent NEJ…" +06/07/2018,Economists,@omzidar,"@mattkahn1966 Not sure what you mean about this being too topical for its own good. Seems like a valuable, relevant, and timely contribution" +06/06/2018,Economists,@omzidar,"RT @IlliniBizDean: @omzidar @WSJ Too bad nobody saw this coming* + +* with exception of every economist, actuary, policy analyst, and anyone…" +06/06/2018,Economists,@omzidar,"Social Security’s cost will exceed its income this year, forcing the program to dip into its trust fund to cover be… https://t.co/Np7Ksu9z4O" +06/05/2018,Economists,@omzidar,RT @paulgp: Research Assistant position for graduating undergrads at Yale SOM: https://t.co/qN83bLoeqY https://t.co/e9Bma2fzRC +06/04/2018,Economists,@omzidar,RT @IlliniBizDean: The state of Illinois has been gradually but steadily reducing support for higher education. If one adjusts for inflatio… +06/03/2018,Economists,@omzidar,This headline is a bit misleading — 100k people moving out of 15 million means less than one percent are moving — b… https://t.co/iuisRrw0tH +06/01/2018,Economists,@omzidar,"RT @johnjhorton: UC Berkeley average salaries by professor rank & department (ordered by full professor) +Data: https://t.co/z9ycQGmf9V +Code…" +05/31/2018,Economists,@omzidar,RT @DinaPomeranz: 'likelihood of gaining tenure at a top economics dept is about 26% higher for faculty with an A-surname than with a Z-sur… +05/29/2018,Economists,@omzidar,https://t.co/LpPH1DbyoR +05/28/2018,Economists,@omzidar,RT @pogourinchas: Congratulations @gabriel_zucman ! Wonderful news. https://t.co/TsKg7XwQS6 +05/26/2018,Economists,@omzidar,@stephkestelman @TDeryugina Asana works pretty well +05/24/2018,Economists,@omzidar,"RT @SethDZimmerman: Self promotion alert: I have a paper that is exactly about this: https://t.co/B6a6eH8QBX + https://t.co/5h8FyRVlXm via @…" +05/24/2018,Economists,@omzidar,RT @jasonfurman: A lot of people trying to infer the effects of the tax cut from the macro data. Is much harder than trying to infer if a c… +05/24/2018,Economists,@omzidar,RT @BOiPRINCETON: Congrats to Stephen Redding and @PrincetonEcon. Professor Redding and coauthors have won the Econometric Society’s 2018 F… +05/23/2018,Economists,@omzidar,"RT @SethHanlon: His full presentation is here: https://t.co/1hycM2qhkW + +Also, this event is being webcast live, and goes until 12:30. Tune…" +05/23/2018,Economists,@omzidar,RT @ProfJAParker: Watch “NBER MACRO 2018 GOPINATH INTERVIEW Sequence.05A” on #Vimeo https://t.co/xZ1E0OzXAf +05/21/2018,Economists,@omzidar,RT @nealemahoney: Thrilled that the brilliant @m_sendhil will be joining the faculty at @ChicagoBooth. Welcome to Chicago! +05/19/2018,Economists,@omzidar,"RT @JustinWolfers: 2018 has been deadlier for schoolchildren than service members. +https://t.co/fdYbYsSgru https://t.co/JWmDImvpEa" +05/18/2018,Economists,@omzidar,RT @crampell: missed this last week https://t.co/oHJPOXqtow +05/16/2018,Economists,@omzidar,New Jersey Emerges as a Liberal Bulwark Under Murphy https://t.co/asWDdhBX48 +05/15/2018,Economists,@omzidar,"RT @gabriel_zucman: Life expectancy in the United States vs. peer nations. +https://t.co/ktKgH3krBv https://t.co/45y0eQ3ZoC" +05/15/2018,Economists,@omzidar,"RT @DinaPomeranz: I'm going to live tweet @m_sendhil's talk on ""Economic Applications of Machine Learning"" at @econ_uzh today https://t.co/…" +05/15/2018,Economists,@omzidar,"Seattle Scales Back Tax in Face of Amazon’s Revolt, but Tensions Linger https://t.co/TJhVJlB9Cg" +05/13/2018,Economists,@omzidar,https://t.co/LdiF9SRo41 +05/13/2018,Economists,@omzidar,@bencasselman we have a new version of our paper that provides a framework for evaluating the effects of these type… https://t.co/5xlzl5ORu5 +05/13/2018,Economists,@omzidar,https://t.co/j8ldq0JEYF +05/12/2018,Economists,@omzidar,"RT @bencasselman: The federal tax overhaul had an unintended effect: giving many states more tax revenue. Should they spend it, or give it…" +05/11/2018,Economists,@omzidar,Michigan’s GOP has a plan to shield some people from Medicaid work requirements. They’re overwhelmingly white. https://t.co/65cffsMT6a +05/10/2018,Economists,@omzidar,"RT @RichardRubinDC: Connecticut passes its SALT workaround. +Next move: Treasury? https://t.co/JnRjAmnlLR" +05/09/2018,Economists,@omzidar,RT @JustinWolfers: U.S. states renamed for countries with similar GDP's. https://t.co/BPnTnjA6cl +05/06/2018,Economists,@omzidar,"RT @Alan_Krueger: Congratulations to my colleague, coauthor, role model, and friend Orley Ashenfelter on this well-deserved honor. https:/…" +05/05/2018,Economists,@omzidar,https://t.co/4ZKCZqreTU +05/05/2018,Economists,@omzidar,Teacher Pay Is So Low in Some U.S. School Districts That They’re Recruiting Overseas via @NYTimes https://t.co/xVM1SQbh6t +05/04/2018,Economists,@omzidar,"RT @mattkahn1966: Vancouver school tax protesters turn their anger on UBC housing prof, who’s teaching ‘hate’ https://t.co/acEWpzv5B1" +05/03/2018,Economists,@omzidar,"RT @tdisbell: @RichardRubinDC @WSJ One of the technicalities you are likely referencing parenthetically is Section 15(a), which imposes a b…" +05/03/2018,Economists,@omzidar,RT @ProfJAParker: The NBER homepage currently features the lunch panel we put together on tax reform at this year's NBER Macro Annual https… +05/03/2018,Economists,@omzidar,RT @richpriz: High income partners most likely benefit from entity conversion to C-corp status. I expect we will see more of this in the fu… +05/03/2018,Economists,@omzidar,The recent tax cuts are spurring KKR to ditch its partnership structure and become a corporation https://t.co/BSL5QP5qRV via @WSJ +05/01/2018,Economists,@omzidar,@ryanbedwards @jim_savage_ @OwenOzier @BerkOzler12 That’s funny. @OwenOzier was my TA at Berkeley in grad school (f… https://t.co/JZxZyTslnr +05/01/2018,Economists,@omzidar,"RT @DSraer: Carl Shapiro’s take on this: https://t.co/dgq6KTKjjW + +Small magnitudes, unconvincing evidence (national vs local market shares)…" +04/30/2018,Economists,@omzidar,RT @SmartIncentives: Details of Philadelphia's cash offer to Amazon in HQ2 pitch ordered to be shared https://t.co/HjVYReHTYl via @phillydo… +04/27/2018,Economists,@omzidar,"RT @RyanMKellogg: ""...many investors in publicly traded oil and gas producers are pressing executives not to sow the seeds of another price…" +04/27/2018,Economists,@omzidar,https://t.co/q3rCQOmI9D +04/26/2018,Economists,@omzidar,"RT @gabriel_zucman: 15 companies report tax savings of $6.2 Billion in first three months of 2018, after Trump tax cut https://t.co/EwKMFCX…" +04/26/2018,Economists,@omzidar,@amandayagan We have a lot of state tax rules and safety net rules as well. Happy to chat more +04/25/2018,Economists,@omzidar,"RT @sdellavi: Fact 3 on Top Journals: Given facts 1 and 2, acceptance rates in top journals keep declining, are at 2.5% for QJE, 3% for RES…" +04/25/2018,Economists,@omzidar,"Tax Reform, Round One - Harvard Magazine https://t.co/g8yzPNfVIM via @AddThis" +04/24/2018,Economists,@omzidar,RT @TimBartik: Op-ed by @NateMJensen in @nytimes on the need for transparency in incentives. I agree this is needed first reform if we are… +04/24/2018,Economists,@omzidar,RT @KentSmetters: Panel at 33rd Annual Conference on Macroeconomics Weighs Costs and Impacts of the 2017 Tax Legislation. Watch the video a… +04/23/2018,Economists,@omzidar,"RT @gabriel_zucman: Google's global effective corporate tax rate in Q1 2018, post-Trump reform: 11% +https://t.co/9jcxojriH6 https://t.co/fu…" +04/23/2018,Economists,@omzidar,https://t.co/U7QKpBY2DN +04/23/2018,Economists,@omzidar,https://t.co/VkbfdM81HF +04/21/2018,Economists,@omzidar,"RT @IvanWerning: Fascinating experiment by Levitt-List-Fryer setting up a pre-school in south-side Chicago, then setting up a program for p…" +04/20/2018,Economists,@omzidar,"RT @femme_economics: Hilarious response to peer review: ""I see no reason to address the -- in any case erroneous -- comments of your anonym…" +04/19/2018,Economists,@omzidar,"Here's a video of Chetty's Tanner lecture at Princeton on ""Neighborhood Effects: Childhood Environment and Upward M… https://t.co/qeWxadaZVq" +04/19/2018,Economists,@omzidar,"RT @BeckerFriedman: In op-ed, @HarrisPolicy's @nomadj1s argues for simplifying the process of paying taxes via @WashingtonPost +https://t.co…" +04/18/2018,Economists,@omzidar,"RT @SteveCicala: Yesterday's IT failure at IRS was completely foreseen by the people running the organization, desperate for more resources…" +04/17/2018,Economists,@omzidar,"RT @RichardRubinDC: Koskinen says IRS system failures were a matter of when, not whether: “Each year, there have been more glitches that ge…" +04/17/2018,Economists,@omzidar,"RT @RichardRubinDC: While we wait for the IRS to start collecting money again, here's former IRS commissioner John Koskinen, from 2015, on…" +04/17/2018,Economists,@omzidar,IRS electronic filing system breaks down hours before midnight deadline https://t.co/AlXIOeupBp +04/16/2018,Economists,@omzidar,https://t.co/DDVg4RC188 +04/15/2018,Economists,@omzidar,https://t.co/QmuQYl7rPM +04/15/2018,Economists,@omzidar,"RT @albouy: Public services decline while taxes rise, especially in low-growth states, from a legacy of bankruptcy-inducing public pension…" +04/15/2018,Economists,@omzidar,https://t.co/rfBf78lf7T +04/14/2018,Economists,@omzidar,@glenweyl @rodrikdani @PrincetonUPress “The wealthy were rewarded for doing nothing. Poor people who needed land ha… https://t.co/oZZG8SUecD +04/14/2018,Economists,@omzidar,@glenweyl @rodrikdani @PrincetonUPress This is very interesting. I love the Dracula reference — I look forward to r… https://t.co/Hp2AyModEu +04/14/2018,Economists,@omzidar,RT @ProfNoto: I left this summer camp with a research idea that would later turn into my job market paper (inspired by Kevin Murphy's mini-… +04/12/2018,Economists,@omzidar,RT @LAOEconTax: An overview of California’s tax system ⬇️#CATaxes https://t.co/05TLadgPor +04/11/2018,Economists,@omzidar,"RT @MarkLJWright: April 26th - State and local government debt: lessons from the study of national debt +https://t.co/BqiLz8htlz" +04/11/2018,Economists,@omzidar,‘It is safe to say it is one of the largest tax bills on earned income in history.’ https://t.co/f1YxRyOqpT via @WSJ +04/11/2018,Economists,@omzidar,RT @J_C_Suarez: Excited to be visiting Columbia Econ for the day. I’ll be presenting my new paper “Unintended Consequences of Eliminating T… +04/10/2018,Economists,@omzidar,"RT @betsylevyp: I'm hiring! Please retweet to help me find a new lab manager--basically, a head research assistant. You're a great fit if y…" +04/10/2018,Economists,@omzidar,"RT @BeckerFriedman: Apply now! Applications due April 15 for the 2018 Price Theory Summer Camp, organized by @uchi_economics' Steve Levitt…" +04/09/2018,Economists,@omzidar,"RT @betsylevyp: @R_Thaler @UChicago Also, the best scholarly exchange I witnessed this year was Jim heckman, who responded in a 15 minute t…" +04/09/2018,Economists,@omzidar,"RT @nealemahoney: More making fun of Jesse, without a doubt. https://t.co/Tt2Hibv4o6" +04/07/2018,Economists,@omzidar,RT @nealemahoney: Powerful data-journalism on eviction by @emilymbadger and @qdbui. I've been studying financial distress for over a decade… +04/07/2018,Economists,@omzidar,RT @johnvanreenen: Important long term effects of job search assistance https://t.co/wLA1Kz5DKn Evidence from Nevada @nberpubs +04/07/2018,Economists,@omzidar,https://t.co/8CPSaVxADB +04/05/2018,Economists,@omzidar,https://t.co/pNp4uwRgvA +04/04/2018,Economists,@omzidar,"RT @profsufi: Here is effect on economic expectations through end of 2017. No sign of abatement whatsoever. Repubs ecstatic about economy,…" +04/03/2018,Economists,@omzidar,The tax bill is law. Now for the tax games. https://t.co/McG4CLtWjG via @WSJ +04/03/2018,Economists,@omzidar,"RT @greenhousenyt: ""Some states, like Kansas and Oklahoma, have gone in for radical tax cuts, and ended up savaging their education systems…" +04/02/2018,Economists,@omzidar,"RT @BarbaraBiasi: @leah_boustan using evidence from the Age of Mass Migration to draw lessons on current immigration policy, during @Prince…" +04/02/2018,Economists,@omzidar,"Fed up with school spending cuts, Oklahoma teachers walk out https://t.co/dcvkBT6HJ0" +04/02/2018,Economists,@omzidar,RT @SethDZimmerman: It will be interesting to see whether this is a one-time aberration or the beginning of a shift in the balance between… +04/02/2018,Economists,@omzidar,"RT @SethDZimmerman: ""To pay for the raise, politicians from both parties agreed to increase production taxes on oil and gas ... It was the…" +04/02/2018,Economists,@omzidar,Could a tax incentive pry empty nesters from their oversize homes? https://t.co/zdZyhMkQrZ via @sfchronicle +04/01/2018,Economists,@omzidar,"RT @janetnovack: As corporate-government tax pacts falter, Coca-Cola challenges huge U.S. bill https://t.co/cWXGtxT3fR" +03/31/2018,Economists,@omzidar,@paulgp Hard to read the labels. Am curious where Dartmouth falls +03/31/2018,Economists,@omzidar,"RT @nomadj1s: @mattyglesias Some evidence on indirect effects on research funding and output: + +https://t.co/ESDLXu9NQY" +03/31/2018,Economists,@omzidar,"RT @dynarski: Piketty on inequality and politics + +#pikettyforum https://t.co/oiCgjGpZtL" +03/30/2018,Economists,@omzidar,RT @DanaGoldstein: Here is a graphic circulating on Facebook among Oklahoma teachers as they prepare to walk out on Monday. The bill that p… +03/30/2018,Economists,@omzidar,The IRS is auditing a lot fewer Americans https://t.co/epLPgHfoUE via @WSJ +03/29/2018,Economists,@omzidar,@J_C_Suarez @real_eric_ohrn What happens? +03/29/2018,Economists,@omzidar,RT @J_C_Suarez: Please note @real_eric_ohrn finds a tax semi-elasticity of investment of 4.7. Just noting this so you don’t freak out when… +03/29/2018,Economists,@omzidar,"Trump Attacks Amazon, Saying It Does Not Pay Enough Taxes https://t.co/lsP6Snx9zH" +03/29/2018,Economists,@omzidar,"RT @RichardRubinDC: The IRS is auditing a lot fewer Americans. + +https://t.co/AZU5S8jIin via @Saunderswsj" +03/28/2018,Economists,@omzidar,"RT @TradeDiversion: ""I realize that each equation cuts the fraction of the audience listening by half..."" - @heckmanequation starting his d…" +03/28/2018,Economists,@omzidar,https://t.co/eISUp6AYKs +03/28/2018,Economists,@omzidar,RT @just_shelter: The fire marshal is turning people away at Raj Chetty’s Tanner Lecture @Princeton. Huge crowd! https://t.co/o7x707Lf74 +03/27/2018,Economists,@omzidar,RT @J_C_Suarez: Must read tweetstorm and report by @TimBartik on who pays for local development incentives. https://t.co/DdMXiRqWCn +03/27/2018,Economists,@omzidar,RT @AlanMCole: ! ! ! @ScottElliotG https://t.co/kmrsBJnq8K +03/27/2018,Economists,@omzidar,"RT @TimBartik: My report on the benefits and costs of different economic development incentives for both overall local per capita-income, a…" +03/27/2018,Economists,@omzidar,RT @AlexBartik: Really cool new data source from @uscensusbureau (procured by @footeball45 and others) with linked education and earnings d… +03/27/2018,Economists,@omzidar,"RT @footeball45: If you love new data and are interested in earnings and employment outcomes for college graduates, @uscensusbureau has jus…" +03/26/2018,Economists,@omzidar,RT @J_C_Suarez: If only someone had Chinese tax return data and was evaluating the effects of “high quality” growth and how VAT affects inv… +03/26/2018,Economists,@omzidar,https://t.co/or42Z4rJKE +03/24/2018,Economists,@omzidar,"RT @seema_econ: @autoregress Marvel: ""Infinity War is the most ambitious crossover event in history."" + +@r_thaler: https://t.co/hfJu21mTSv" +03/22/2018,Economists,@omzidar,RT @FHogroian_COST: Georgia passes legislation to provide deduction of GILTI from the state tax base https://t.co/kBsxBaK0Pd +03/22/2018,Economists,@omzidar,@paulgp Where did you get that data out of curiosity +03/21/2018,Economists,@omzidar,https://t.co/Spwc9klVkW +03/21/2018,Economists,@omzidar,RT @lenburman: Here’s a CBO report on indexing capital gains Larry Ozanne and I wrote in 1990. The argument for indexing is even weaker now… +03/21/2018,Economists,@omzidar,"RT @lenburman: Based on 2012 data, capital gains indexing would make the average top effective tax rate on long-term capital gains about 14…" +03/20/2018,Economists,@omzidar,RT @BeckerFriedman: 2018 Price Theory Summer Camp now accepting applications! https://t.co/t8XVplc6rs https://t.co/ScyuQDObIj +03/20/2018,Economists,@omzidar,"RT @sarahkliff: ""https://t.co/NEEC3Qla2G: You can turn any social gathering into a debate about tax policy.” 🤓 + +https://t.co/nSkMMYikRD" +03/20/2018,Economists,@omzidar,@bkavoussi You must not be on the east coast today +03/20/2018,Economists,@omzidar,"RT @ProfMartyWest: New in @EducationNext: @JoshuaSGoodman, Julia Melkers, and Amanda Pallais show how @GeorgiaTech's online master's degree…" +03/20/2018,Economists,@omzidar,"RT @paulgp: 🚨New Working Paper Alert 🚨 + +Bartik Instruments: What, When, Why and How + +With Isaac Sorkin and Henry Swift + +https://t.co/BFufH3…" +03/19/2018,Economists,@omzidar,"@Noahpinion @SethDZimmerman's ""Making the One Percent: The Role of Elite Universities and Elite Peers"" is worth rea… https://t.co/Icw1NvNGFD" +03/19/2018,Economists,@omzidar,‘That’s the game’: Tax planners look for loopholes amid uncertainty over new law https://t.co/jLiLI9Xnne +03/19/2018,Economists,@omzidar,Europe’s Planned Digital Tax Heightens Tensions With U.S. https://t.co/jcNFIXPUzx +03/19/2018,Economists,@omzidar,"RT @ProfDavidDeming: On any given day, 21% of black men born to the lowest-income families are incarcerated. As an otherwise proud American…" +03/19/2018,Economists,@omzidar,https://t.co/uVLqmS5hiY +03/19/2018,Economists,@omzidar,RT @John_N_Friedman: The black-white gap in intergenerational mobility is driven entirely by a large gap for men. https://t.co/veRptKtXHO +03/19/2018,Economists,@omzidar,RT @John_N_Friedman: Amazing new work out this morning by my Equality of Opportunity Project colleagues Raj Chetty and @nhendren82 on inter… +03/19/2018,Economists,@omzidar,"RT @OlegUrminsky: I used to do political polling/targeting, and I have some thoughts on Cambridge Analytica: https://t.co/FuRnMikns5 + +I…" +03/17/2018,Economists,@omzidar,"RT @nomadj1s: For those gushing over @umbc’s epic upset, get familiar with their amazing president Freeman Hrabowski + +https://t.co/G2CzNoFD…" +03/16/2018,Economists,@omzidar,RT @paulgp: Big personal news for me: I’ll be joining the Yale School of Management finance group this summer as an assistant professor! +03/16/2018,Economists,@omzidar,"RT @InequalityHKS: BIG CONGRATS to @S_Stantcheva, newly-tenured Professor of Economics @HarvardEcon !! https://t.co/2rX9QRLi22" +03/16/2018,Economists,@omzidar,Not My Job: We Quiz Economist Austan Goolsbee On Home Economics https://t.co/r0ZLdbFylt +03/15/2018,Economists,@omzidar,"New York City Is Failing Homeless Students, Reports Say https://t.co/g4oq94HWQF" +03/15/2018,Economists,@omzidar,RT @JamesKvaal: Adam Looney and Nick Turner with the outrageous truth about our criminal justice system - in some neighborhoods nearly 1 in… +03/15/2018,Economists,@omzidar,"RT @jenniferdoleac: Cool new paper by Adam Looney and Nicholas Turner links data on former prisoners with IRS data: +https://t.co/aY2CjvfTP…" +03/15/2018,Economists,@omzidar,A downside for cities trying to woo Amazon: local companies may want the same deal https://t.co/AM5X7yt6LZ via @WSJ +03/14/2018,Economists,@omzidar,"RT @ezraklein: Most chilling stat I've read today: ""More than 30 percent of men ages 30 to 34 born to the poorest families were either in p…" +03/14/2018,Economists,@omzidar,RT @convexify: Got an emergency call from @NorthwesternU about someone with a gun on campus... Stay safe everyone. :( +03/13/2018,Economists,@omzidar,"RT @TimBartik: Important new paper by Austin/Glaeser/@LHSummers endorses SOME place-based policies. In my view, 3 key points: https://t.co/…" +03/13/2018,Economists,@omzidar,RT @BeckerFriedman: .@chicagobooth's Jessica Jeffers argues noncompete agreements boost investment but stifle start-ups via @chicagoboothre… +03/12/2018,Economists,@omzidar,https://t.co/M1QAcl8hvx +03/11/2018,Economists,@omzidar,https://t.co/gXhvju4xPd +03/08/2018,Economists,@omzidar,https://t.co/VXzoO6Kgma +03/08/2018,Economists,@omzidar,Saving the heartland: Place-based policies in 21st Century America https://t.co/pb2ovP4vzl via @BrookingsInst +03/08/2018,Economists,@omzidar,RT @jasonfurman: Robert Barro and I teamed up to assess the macroeconomic impact of the 2017 tax law. Here is the main table and also the r… +03/08/2018,Economists,@omzidar,"RT @dartmouth: “@TrebAllen is one of the best economists of his generation.”—Christopher Snyder, economics department chair. Learn more abo…" +03/07/2018,Economists,@omzidar,RT @AlexBartik: Moving to the top of the to-read list. https://t.co/Re7dpQUkjM +03/07/2018,Economists,@omzidar,RT @TradeDiversion: @omzidar @WSJ Seems similar to the story from https://t.co/IGgpn7G2bh a few months ago. The spying theory reflects the… +03/07/2018,Economists,@omzidar,That eerily relevant ad in your Facebook news feed? It’s a result of all the data you’ve given Facebook and adverti… https://t.co/Hmk8cqrqvS +03/07/2018,Economists,@omzidar,"RT @ProfNoto: Here is the final version of Brookings paper on the decline in US LFP by @Alan_Krueger, including detailed comments at the en…" +03/06/2018,Economists,@omzidar,RT @joshrauh: CA has single-sales apportionment but it also has a throwback rule. Estimates from my forthcoming paper with Xavier Giroud @J… +03/06/2018,Economists,@omzidar,"RT @ProfNoto: [ Thanks to MIT's super awesome ""OpenCourseWare"" (@MITOCW), you can view the Syllabus from the semester when I took the class…" +03/05/2018,Economists,@omzidar,"RT @RichardRubinDC: Federal corporate taxes: 🔽 +State corporate taxes: 🔼 +State and business responses: ❓❔❓❔ + +https://t.co/sUXacB54rz via @WSJ" +03/05/2018,Economists,@omzidar,Prisoners of the American Dream by Stefanie Stantcheva @ProSyn https://t.co/qrvIeuPeIZ +03/05/2018,Economists,@omzidar,RT @Austan_Goolsbee: Ben gave me his Fed governor’s chair when I left DC. I keep it in my office and let visitors and ph.d job candidates s… +03/04/2018,Economists,@omzidar,"RT @JustinWolfers: Milton Friedman on steel tariffs. +(HT @usher_andrew) https://t.co/lUph5vTW1A" +03/03/2018,Economists,@omzidar,Trump pushes Republicans to oppose crucial New York-New Jersey tunnel project https://t.co/HthOs6GYHS +03/03/2018,Economists,@omzidar,https://t.co/K7ceotzZOF +02/28/2018,Economists,@omzidar,"RT @DinaPomeranz: Today we had a meeting with PhD students about stress management. Here are some of the things that came up. + +What else…" +02/28/2018,Economists,@omzidar,https://t.co/0m5FXAjXFD +02/28/2018,Economists,@omzidar,"RT @steventberry: @florianederer A bunch of possible papers suggested at the end: + +""More work is, of course, needed to know their ultimate…" +02/28/2018,Economists,@omzidar,"RT @jenniferdoleac: This is part of the CJARS project, run by @Econ_Mike and Keith Finlay. I’m thrilled too! +https://t.co/XjqeDICiKs https:…" +02/27/2018,Economists,@omzidar,https://t.co/6xneTeySaw +02/27/2018,Economists,@omzidar,https://t.co/M4cfYKF28g +07/02/2018,Economists,@Noahpinion,@estarianne @JasonPremo UBI has rhetorical disadvantages +07/02/2018,Economists,@Noahpinion,@MattBruenig Ooh conspiracy +07/02/2018,Economists,@Noahpinion,"RT @seth8miller: Modern socialists and neoliberals are actually not that far apart. + +An excellent read. https://t.co/NyIHl0SQ3a" +07/02/2018,Economists,@Noahpinion,"UBI basically had three groups pushing for it at least that I saw on Twitter and blogs: +1. Some socialists +2. Tech… https://t.co/09LQnZa6wz" +07/02/2018,Economists,@Noahpinion,"@JasonPremo That's true, but also not my point." +07/02/2018,Economists,@Noahpinion,"@drmitchell85 Lots of replies relative to the number of RTs (or faves), indicating a lot of people disagreeing." +07/02/2018,Economists,@Noahpinion,"The fact that this tweet got ratio'd helps to demonstrate my point. + +UBI might be awesome from a technocratic stand… https://t.co/bpXSt3AgcH" +07/02/2018,Economists,@Noahpinion,"""Reinstate Glass-Steagall"" should be a metaphor for better financial regulation. + +Read @rortybomb. Mike Konczal sh… https://t.co/xKHO8zuuaK" +07/02/2018,Economists,@Noahpinion,"RT @alogator69: On most economic issues, therefore, the new socialist movement doesn’t look that different from a standard progressive Demo…" +07/02/2018,Economists,@Noahpinion,RT @scottyweeks: I am overjoyed at Ocasio-Cortez's win but as a centrist neoliberal shill I am pretty solidly in Noah's camp on the policy… +07/02/2018,Economists,@Noahpinion,"Of course, that's her ECONOMIC platform. On cultural/social issues like abolishing ICE, I agree with her. But that'… https://t.co/H5KMV9VDid" +07/02/2018,Economists,@Noahpinion,"So my final verdict on Ocasio-Cortez' ""socialist"" platform is basically: + +30% great, do it right now, do it yesterd… https://t.co/N1DlKvC0QL" +07/02/2018,Economists,@Noahpinion,"And finally, she wants to restore Glass-Steagall, which I hope (and assume) is a proxy for ""better financial regula… https://t.co/2Yv5f2v8yH" +07/02/2018,Economists,@Noahpinion,"She wants to transition to 100% renewable energy, which is a GREAT goal, and looking increasingly realistic (though… https://t.co/KYgHM9qntp" +07/02/2018,Economists,@Noahpinion,"She also supports the Bernie idea of ""free college"", which I think is a bad idea for a number of reasons. https://t.co/h82EDlkmmK" +07/02/2018,Economists,@Noahpinion,"Ocasio-Cortez also likes the Job Guarantee, which I like, although we should recognize that implementation will be… https://t.co/caw1Tb97gZ" +07/02/2018,Economists,@Noahpinion,"BUT, socialists should be careful not to embrace the anti-development agenda of the ""anti-gentrification"" folks, wh… https://t.co/3OYwC2YmmO" +07/02/2018,Economists,@Noahpinion,"Another of her economic planks is ""housing as a human right"". + +If this means providing housing for every homeless p… https://t.co/qNphtP9gsT" +07/02/2018,Economists,@Noahpinion,"Single-payer isn't my #1 favorite system (that would be Japan's hybrid system), but it would be a lot better than t… https://t.co/GzNfCnFZWn" +07/02/2018,Economists,@Noahpinion,"To find out what ""socialism"" really means, let's look at the platform of Ocasio-Cortez, who just defeated a 10-term… https://t.co/JOh9lp3KII" +07/02/2018,Economists,@Noahpinion,"The Kids These Days are pretty favorable toward socialism. + +BUT, Americans are notorious for twisting and modifying… https://t.co/BsZSpm7GJD" +07/02/2018,Economists,@Noahpinion,"Howdy, comrades! :D + +Today's @bopinion post is about socialism in America today. + +What can we learn about socialism… https://t.co/BdBGi8DfN7" +07/02/2018,Economists,@Noahpinion,"RT @business: Worried about socialism coming to America? @Noahpinion says embrace the good, reject the problematic https://t.co/mhKO407rGb…" +07/02/2018,Economists,@Noahpinion,@dave_judgment yup +07/02/2018,Economists,@Noahpinion,Does decreased unionization lead to (much) higher workplace death rates? https://t.co/OyjZXZtW2K +07/02/2018,Economists,@Noahpinion,"RT @Noahpinion: Republicans: ""We need to get the border under control!!!"" + +People who actually read the news and look at data: ""WE ALREADY…" +07/02/2018,Economists,@Noahpinion,"On one hand: HAHAHAHAHAHAHA + +On the other hand: Sadly, booting Leni Riefenstahl from clubs failed to stop the Nazis… https://t.co/wmVdjVbjEx" +07/02/2018,Economists,@Noahpinion,"@Alby_Tross Then they won't end capitalism, because folks ain't starving" +07/02/2018,Economists,@Noahpinion,"@GenericJesse Yes, it was a joek... ;-)" +07/02/2018,Economists,@Noahpinion,@Evolving_Ego Look at the politicians now supporting JG. Then google for who supports UBI. Tell me what you find. ;-) +07/02/2018,Economists,@Noahpinion,"@richardcastiel Yes, that was the joke... ;-)" +07/02/2018,Economists,@Noahpinion,"@liamlburke Yep, that was my thought." +07/02/2018,Economists,@Noahpinion,@liamlburke Yes. But I also think a modest UBI would be all to the good. +07/02/2018,Economists,@Noahpinion,"@liamlburke Which is why all the Christians support it now, right? :D" +07/02/2018,Economists,@Noahpinion,"Mark your calendars, folks! + +If no civil war is launched on Wednesday, you must never again believe anything this m… https://t.co/wO6Pu5ZQxX" +07/02/2018,Economists,@Noahpinion,@Evolving_Ego All of it. :-) +07/02/2018,Economists,@Noahpinion,@Evolving_Ego Read the news!!!!! +07/02/2018,Economists,@Noahpinion,@PoyaisEmissary I think your hypothesis and mine are pretty much indistinguishable... ;-) +07/02/2018,Economists,@Noahpinion,"@jtaylor_uod Whatever motte you use, Denmark is most certainly the bailey... ;-)" +07/02/2018,Economists,@Noahpinion,@DiegoATLaw *actual former economist +07/02/2018,Economists,@Noahpinion,@DiegoATLaw REVOLUTION?? +07/02/2018,Economists,@Noahpinion,@DiegoATLaw That intellectual coup was one of America's biggest stealth disasters. +07/02/2018,Economists,@Noahpinion,Hypothesis: Job Guarantee defeated Universal Basic Income to become the main socialist Big Idea because *rhetorical… https://t.co/IDyPC1mZZa +07/02/2018,Economists,@Noahpinion,If financialization and weak antitrust create an economy in which business just isn't a lucrative or viable career… https://t.co/iuRl9DDVWO +07/02/2018,Economists,@Noahpinion,"Secondary hypothesis: By supporting the ability of ""superstar"" companies to outcompete other businesses, financial… https://t.co/VmATWXtw0M" +07/02/2018,Economists,@Noahpinion,"Hypothesis: By supporting the ability of chain stores to gobble up mom-and-pop businesses, free-market Republicans… https://t.co/Q38ZWcAchl" +07/02/2018,Economists,@Noahpinion,@nerdyasians This is fairly off-topic but I shouldn't miss a chance to plug @wdavidmarx's book about the history of… https://t.co/okFGBqLwDj +07/02/2018,Economists,@Noahpinion,"@RLHotchkiss ""Communism: It'll save your marriage!"" + +Uh huh" +07/02/2018,Economists,@Noahpinion,@RLHotchkiss I can't argue with anecdote! +07/02/2018,Economists,@Noahpinion,@catlin201 So you want to ban UPS and FedEx? You think that would result in cheaper or better parcel delivery for Americans? +07/02/2018,Economists,@Noahpinion,@RLHotchkiss Which republics? +07/02/2018,Economists,@Noahpinion,"@RLHotchkiss And remember, the one or two post-Soviet failures that do exist may be a result of persistently bad So… https://t.co/ISLaVHtdDT" +07/02/2018,Economists,@Noahpinion,"@RLHotchkiss Dominican Republic beats Cuba! And Russia, Estonia, Latvia, Lithuania, Belarus and Kazakhstan are quit… https://t.co/9XRWj8BDRv" +07/02/2018,Economists,@Noahpinion,@catlin201 UPS and FedEx exist and compete (successfully) with the postal service in parcel delivery. +07/02/2018,Economists,@Noahpinion,@StellaWee2018 No we most certainly do not! +07/02/2018,Economists,@Noahpinion,@greenrd https://t.co/3ofwgStptl +07/02/2018,Economists,@Noahpinion,@catlin201 We didn't abolish profits in any of those sectors. And only health care is sucking. +07/02/2018,Economists,@Noahpinion,RT @svdate: The hotline Trump created to show how many people are being victimized by illegal aliens is getting calls about space aliens.… +07/02/2018,Economists,@Noahpinion,"@greenrd Actually I think it's fine, it's a useless white-elephant public works project that won't function any dif… https://t.co/GrNXPwNzRL" +07/02/2018,Economists,@Noahpinion,"It's true. Denmark and Norway and Sweden have never abolished profit, or made it illegal to be rich, or taxed capit… https://t.co/O44HoPsKi6" +07/02/2018,Economists,@Noahpinion,@blahblahblah9tn @leah_boustan Evidence? +07/02/2018,Economists,@Noahpinion,"@neontaster Venezuela is the motte, Denmark is the bailey." +07/02/2018,Economists,@Noahpinion,@leah_boustan Do we have measures of hysteria that show this? +07/02/2018,Economists,@Noahpinion,"RT @leah_boustan: All migration waves that I have seen data for have an inverted-U shape, slowly building as networks form, and then trendi…" +07/02/2018,Economists,@Noahpinion,"@nerdyasians True, true...not even close... + +America really needs to step up our sartorial game..." +07/02/2018,Economists,@Noahpinion,RT @Carnage4Life: This will encourage tech companies to create more jobs in India & China if they can't easily relocate employees to the US… +07/02/2018,Economists,@Noahpinion,Oops https://t.co/KqbarEzQrs +07/02/2018,Economists,@Noahpinion,Nope https://t.co/8jyV9mBWy4 +07/02/2018,Economists,@Noahpinion,@nerdyasians Noah's Rule of Quirky Japanese Things: Every quirky Japanese thing can also be found in America (but w… https://t.co/TwRURLSu0R +07/02/2018,Economists,@Noahpinion,@greenrd Suppose it costs the same amount of resources to deport 1 crime-committing illegal immigrant as to deport… https://t.co/6QF8J4iN5i +07/02/2018,Economists,@Noahpinion,@greenrd Because we should have priorities. Focusing on deporting immigrants who haven't committed crimes (other th… https://t.co/wtKdgooo0P +07/02/2018,Economists,@Noahpinion,@greenrd I have never been an open borders advocate. +07/02/2018,Economists,@Noahpinion,"A survey said PhD graduates have much higher unemployment that official numbers suggest. + +Guess what? The survey's… https://t.co/Qp0xhvFk3j" +07/02/2018,Economists,@Noahpinion,"RT @TimAlberta: Spot on. No coincidence the immigration hawks are typically folks like King (Iowa), Cotton (Arkansas), Sessions (Alabama) t…" +07/02/2018,Economists,@Noahpinion,"RT @mattyglesias: For all the talk of liberal bubbles, it can’t be said enough that the anti-immigrant panic is being led by people who hav…" +07/02/2018,Economists,@Noahpinion,@eegoremotzkoe Under Trump????? Ygbsm +07/02/2018,Economists,@Noahpinion,@guacamolebio Niiice +07/02/2018,Economists,@Noahpinion,"RT @wojo_NYC: Wow.. but I always hear, “Democrats want completely open borders!!!!!!!” + +Look at 2008 - 2016. https://t.co/3Mtt2PI2pu" +07/02/2018,Economists,@Noahpinion,"Since the number of successful border crossings is about equal to the number of apprehensions, this means illegal b… https://t.co/SugPLq4sK7" +07/02/2018,Economists,@Noahpinion,@spooknine urite +07/02/2018,Economists,@Noahpinion,"RT @paulkrugman: Trade wars are good, and easy to win. Also, Peter Navarro assured us that nobody would retaliate. It's all good https://t.…" +07/02/2018,Economists,@Noahpinion,"RT @BennSteil: ""Trade wars are good, and easy to win""™ https://t.co/UEe560T50x" +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie Ah. Well that's a problem for sure, but the only crisis seems to be Trump's increased efforts to boot those people." +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie No, Max. It's just not a big problem. Are you sure that your real problem isn't racial demographics?" +07/02/2018,Economists,@Noahpinion,RT @GlobeMCramer: Awful scene on the orange line. A woman’s leg got stuck in the gap between the train and the platform. It was twisted and… +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie No, Max." +07/02/2018,Economists,@Noahpinion,@MaxieQuacksie Why do those people being here constitute a crisis? +07/02/2018,Economists,@Noahpinion,@cSchaez https://t.co/S8OMUI8bE8 +07/02/2018,Economists,@Noahpinion,"@S0uthie Yeah but in 2000 that was 500,000 people a year. Now it's 50,000. A tiny fraction of what it was." +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie We've got some issues, sure. But are we in worse shape than in 2010? 2005? 2000? 1995? + +No sir we ar… https://t.co/uI4Ls8XJFx" +07/02/2018,Economists,@Noahpinion,@spooknine Deep State? +07/02/2018,Economists,@Noahpinion,"RT @Noahpinion: There is no border crisis. + +There is no illegal immigration crisis. + +There is no low-skilled immigration crisis. + +There is…" +07/02/2018,Economists,@Noahpinion,@MaxieQuacksie Maybe you should think deeply about what's actually bothering you. +07/01/2018,Economists,@Noahpinion,@calvindeu Prison?? +07/01/2018,Economists,@Noahpinion,Replace ICE with an organization whose permanent mission is to go after truly serious criminals. https://t.co/EzpiF5DIV5 +07/01/2018,Economists,@Noahpinion,RT @jaysulk: What immigration crisis? @Noahpinion says illegal entry into the U.S. is poised to decline https://t.co/TRaiYqEHuA via @bopini… +07/01/2018,Economists,@Noahpinion,"@FoodieFong @MichaelFoster26 Yes, it is indeed ridiculous." +07/01/2018,Economists,@Noahpinion,@S0uthie We won't know til the ACS comes out for 2017. +07/01/2018,Economists,@Noahpinion,"@ItsThatBriGuy The former, since Trump has stepped up interdiction effort and apprehensions have fallen anyway." +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 @ModeledBehavior So if we take GDP from China, is that bad?" +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 @ModeledBehavior But the GDP of the two states changes, right?" +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 @ModeledBehavior Can you elaborate? I think you *might* be talking about institutions (which is wh… https://t.co/GRqF3o3dbz +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 @ModeledBehavior Indogenous? +07/01/2018,Economists,@Noahpinion,"@Beastlyorion It's not bad. The world needs sensible pundits right now, I think." +07/01/2018,Economists,@Noahpinion,@selk_peter Do you mean the seasonal variation? +07/01/2018,Economists,@Noahpinion,@Beastlyorion I am. +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 @ModeledBehavior Why not, Michael?" +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 I'm with the Keynesians. But Canada is definitely doing things right. +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 @tanu_kumar1 Skilled immigration boosts world GDP through clustering effects. But it may or may no… https://t.co/SAUAoqlkEG +07/01/2018,Economists,@Noahpinion,@DrFriction What? Renormalization groups?!! +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 Neoliberals argue that immigration IS the market clearing, and borders are the price control. + +Per… https://t.co/y2zK3HbMLb" +07/01/2018,Economists,@Noahpinion,@devintstewart They often claim to be... +07/01/2018,Economists,@Noahpinion,RT @sarah_edo: I miss the useless web. I miss your grandpa’s blog. I miss weird web art projects that trolled me. I miss fan pages for thin… +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 But this is often good for both countries. Asymmetry can be good for everyone. And even when not g… https://t.co/bXFYOHtWIj +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 Is that just a fancy way of saying ""people think immigration hurts them, and people don't like things that hurt them""?" +07/01/2018,Economists,@Noahpinion,@AlanMCole Nah +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 In any case, ""skin in the game"" has become a ridiculous phrase that people just use to mean ""I'm the realest""." +07/01/2018,Economists,@Noahpinion,😂😂😂 https://t.co/LH14HAvuYe +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 Haha OK OK. Well, open borders is silly. But more immigration is good." +07/01/2018,Economists,@Noahpinion,How many people know that the TPP has been altered to remove much of the stuff people didn't like? https://t.co/uRfCdj9yII +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 I mean, OK, maybe there are some people who actually want open borders. I just kind of doubt it." +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 It's wrong, but it's also irrelevant because no one actually wants open borders (even the people w… https://t.co/kjkAguwIRU" +07/01/2018,Economists,@Noahpinion,@andrewbart More like 85%... +07/01/2018,Economists,@Noahpinion,Never. I only get frustrated by people's inability to cooperate. https://t.co/7z6cMJWFU6 +07/01/2018,Economists,@Noahpinion,@Gabriel_Asman yep +07/01/2018,Economists,@Noahpinion,"@rick_777 Yup, there's always a peak in summer." +07/01/2018,Economists,@Noahpinion,"@chrisFnicholson I know. And it's a good point. Just sayin'. Bernie came close to being Trump Lite on trade, and DS… https://t.co/2sgD8ilZq6" +07/01/2018,Economists,@Noahpinion,@Neoavatara Woulda coulda shoulda! +07/01/2018,Economists,@Noahpinion,@durpx5 Yeah but those ain't the ones from Central America. +07/01/2018,Economists,@Noahpinion,@HMAesq Yes there is. +07/01/2018,Economists,@Noahpinion,"@durpx5 How about if I combine that chart with this other one? Are you convinced now?? + +https://t.co/3ofwgStptl" +07/01/2018,Economists,@Noahpinion,@_jameshatfield_ I AM TRYING... :-) +07/01/2018,Economists,@Noahpinion,"There is no border crisis. + +There is no illegal immigration crisis. + +There is no low-skilled immigration crisis. + +T… https://t.co/lCDqLeRfRX" +07/01/2018,Economists,@Noahpinion,Good. More of this please. https://t.co/JICN5PGsqW +07/01/2018,Economists,@Noahpinion,"@_jameshatfield_ That happens sometimes for sure, but it isn't the norm." +07/01/2018,Economists,@Noahpinion,The Central American immigration mini-wave is already ending: https://t.co/1CyK89CXS0 +07/01/2018,Economists,@Noahpinion,"Republicans: ""We need to get the border under control!!!"" + +People who actually read the news and look at data: ""WE… https://t.co/uplkBg1nj2" +07/01/2018,Economists,@Noahpinion,"@asymptosis So, you think the average Chinese person would rather flee the country now than before 2000? + +Rethink t… https://t.co/UVadpHSxqJ" +07/01/2018,Economists,@Noahpinion,"@tailcalled The motte is the indefensible position, the bailey is the defensible but more modest position, no?" +07/01/2018,Economists,@Noahpinion,"@_jameshatfield_ I liked your first few Metallica albums but come on, man, this is silly" +07/01/2018,Economists,@Noahpinion,@_jameshatfield_ Good. +07/01/2018,Economists,@Noahpinion,@asymptosis So...how about that wave of economic refugees from China? +07/01/2018,Economists,@Noahpinion,@PapiiBrauii @ernietedeschi @ModeledBehavior I blame foreign intervention a HELL of a lot more than any free trade agreement!!! +07/01/2018,Economists,@Noahpinion,@foxyforecaster *any +07/01/2018,Economists,@Noahpinion,@danielharan @MikeW_CA https://t.co/KYAu5CePYg <-- yep +07/01/2018,Economists,@Noahpinion,@jasonvwells Welcome... +07/01/2018,Economists,@Noahpinion,How many people know that TPP suspended most of its IP provisions after Trump exited the deal? https://t.co/KYAu5CePYg +07/01/2018,Economists,@Noahpinion,@ernietedeschi @ModeledBehavior exactly +07/01/2018,Economists,@Noahpinion,"I hope ""end profit"" means stronger antitrust enforcement, leading to the zero-profit condition, rather than nationalization of industry..." +07/01/2018,Economists,@Noahpinion,"I hope that DSA folks see the harm inflicted on American workers by Trump's disastrous Trade War, and realize that… https://t.co/E5Xn2cIRUo" +07/01/2018,Economists,@Noahpinion,"@jasonvwells Yes, BUT, TPP mainly consists of trade between countries that are already rich, so it will not do this." +07/01/2018,Economists,@Noahpinion,@wheelguy123 I feel like the terrible results of Trump's Trade War are going to make a lot of people rethink the so… https://t.co/1pmNp7T7VO +07/01/2018,Economists,@Noahpinion,@MikeBenchCapon Probably. +07/01/2018,Economists,@Noahpinion,Heh yep this about says it https://t.co/p8JU6UgFBW +07/01/2018,Economists,@Noahpinion,@MikeW_CA ridiculous +07/01/2018,Economists,@Noahpinion,@ConvivialCynic It's not bad it's good +07/01/2018,Economists,@Noahpinion,@wheelguy123 I take it you're a fan of Trump's Trade War? +07/01/2018,Economists,@Noahpinion,"@nw3 This is NOT ""what we know about trade"". No. Not at all. This is not even close to an accurate characterization… https://t.co/OXpJbUNrTj" +07/01/2018,Economists,@Noahpinion,@matthoboken Yep +07/01/2018,Economists,@Noahpinion,@nw3 Do you actually know that? I don't think so... +07/01/2018,Economists,@Noahpinion,@wheelguy123 nah no +07/01/2018,Economists,@Noahpinion,@wheelguy123 It was unpopular but it's good policy +07/01/2018,Economists,@Noahpinion,@Offbrandlabour Nah they got changed +07/01/2018,Economists,@Noahpinion,@nw3 A) no B) why would anyone do that C) TPP wouldn't create unemployed steelworkers D) geographic mobility is way… https://t.co/86ZDNqAAcK +07/01/2018,Economists,@Noahpinion,@ReiMurasame Heh. I certainly hope so. +07/01/2018,Economists,@Noahpinion,@drmitchell85 I have some news... +07/01/2018,Economists,@Noahpinion,"RT @TheAtlantic: Photos from the nationwide “Families Belong Together” marches, from cities big and small, via @TheAtlPhoto: https://t.co/0…" +07/01/2018,Economists,@Noahpinion,"Note: TPP is good, and we should join it. It will not create refugee waves. https://t.co/VF4DzTct9p" +07/01/2018,Economists,@Noahpinion,"Venezuela is the motte, Denmark is the bailey? https://t.co/Gxn9EjjxfE" +07/01/2018,Economists,@Noahpinion,"RT @ne0liberal: I just had a wonderful conversation (and interviewed) @willwilkinson. I have a lot to think about after it, but one thing I…" +07/01/2018,Economists,@Noahpinion,RT @haroldpollack: Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Take it… +07/01/2018,Economists,@Noahpinion,RT @ne0liberal: https://t.co/QXKUnueVYe +07/01/2018,Economists,@Noahpinion,"""The Space Between Us"" demonstrates that racial threat is real. But what's the solution? https://t.co/dpc5ZCTff3" +07/01/2018,Economists,@Noahpinion,@clark_packard yeah I think so +07/01/2018,Economists,@Noahpinion,"@staphwriter Oh no way, German cards are much less reliable." +07/01/2018,Economists,@Noahpinion,@BlogMinor The Bolsheviks' (and Stalin's) main strength was holding the country together and fighting off attackers… https://t.co/xLWMThutQH +07/01/2018,Economists,@Noahpinion,"I know American cars have improved in quality, but Japanese cars are still the global standard. What are these pare… https://t.co/bives42W1h" +07/01/2018,Economists,@Noahpinion,@AskWrestlingGuy @greggentry1 @SFFFan42 Bye +07/01/2018,Economists,@Noahpinion,"@BlogMinor But it stalled. It was badly done. I think with German investment, Russia could have industrialized much… https://t.co/wMBl0WqUST" +07/01/2018,Economists,@Noahpinion,"@BlogMinor Maybe. I think it could have. The challenge was beating the White armies, though." +07/01/2018,Economists,@Noahpinion,@BlogMinor Point taken... +07/01/2018,Economists,@Noahpinion,@BlogMinor Not a Menshevik fan? +07/01/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 I can't explain things to people who turn everything they hear into word salad. +07/01/2018,Economists,@Noahpinion,@quinceedward3 yep +07/01/2018,Economists,@Noahpinion,"Because I believe in its thesis so strongly, I tried to write as critical a review as I could of @RyanDEnos's ""The… https://t.co/RpK5xelDX4" +07/01/2018,Economists,@Noahpinion,"@SheckyX No, not even close. Not even in the ballpark." +07/01/2018,Economists,@Noahpinion,"@SheckyX Perhaps you could elaborate? What do you mean, Shecky?" +07/01/2018,Economists,@Noahpinion,@SheckyX I have. +07/01/2018,Economists,@Noahpinion,@mackbmaine @KrangTNelson What about results? If we fuck people over and never face much consequences (e.g. Guatema… https://t.co/XBebjFa9Ys +07/01/2018,Economists,@Noahpinion,RT @DonCheadle: vote in numbers too big to manipulate. vote in numbers too big to manipulate. vote in numbers too big to manipulate. vote i… +07/01/2018,Economists,@Noahpinion,"RT @BennSteil: ""Trade wars are good, and easy to win""™ https://t.co/wocBE2Raa9" +07/01/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Yeah +07/01/2018,Economists,@Noahpinion,"@mackbmaine @KrangTNelson Yeah, Vietnam was our biggest fuckup for sure. Backing the dictators was a pretty bad thi… https://t.co/GmxgRPw4C3" +06/30/2018,Economists,@Noahpinion,@mackbmaine @KrangTNelson Did the later tweets in the thread make it more clear? +06/30/2018,Economists,@Noahpinion,RT @sooner930: This is a smart piece from @EricaGrieder. Part of me suspects that we will eventually come to view this period in history as… +06/30/2018,Economists,@Noahpinion,RT @CityLab: Millennials report themselves to be much happier in cities than people from older generations. https://t.co/MpIfQcOlra +06/30/2018,Economists,@Noahpinion,"@chrisedmond @mattyglesias I think he's just making fun of the banality of the term, which seems to minimize the im… https://t.co/oupRlx4VcA" +06/30/2018,Economists,@Noahpinion,"@joe_super0 Hmm...to that I'd say: +1) If Japanese imperialism was a response to Western imperialism, it was a poor… https://t.co/p7ZE3FgPW3" +06/30/2018,Economists,@Noahpinion,@chrisedmond @mattyglesias We know +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 Not a Keynesian, I see..." +07/01/2018,Economists,@Austan_Goolsbee,Did the article have a vacation from 2009-2013? https://t.co/YcUsMAwpiM +07/01/2018,Economists,@Austan_Goolsbee,These rules do not apply to the Supreme Court full stop. But I had read you as suggesting there was nothing in the… https://t.co/2LRMjwgVko +07/01/2018,Economists,@Austan_Goolsbee,"Says disqualif. if “the judge or the judge’s spouse, or a person related to either within the third degree of relat… https://t.co/Jr8GK6lsFm" +07/01/2018,Economists,@Austan_Goolsbee,RT @cecmunoz: Go @MelodyCBarnes !!! https://t.co/PuOAfLt9Tm +07/01/2018,Economists,@Austan_Goolsbee,RT @CFCamerer: Feel Molly’s pain. Fun fact from economics: Market power raises prices *and* lowers product quality https://t.co/nOkag5WJ96 +07/01/2018,Economists,@Austan_Goolsbee,make em carry their own stuff. No increase in our workload. https://t.co/JolJFQ0Ube +07/01/2018,Economists,@Austan_Goolsbee,"RT @MarkWarner: “The White House promised '70 percent' of the tax cut would go to workers. It didn't.” +https://t.co/BENcB1drDy" +06/30/2018,Economists,@Austan_Goolsbee,RT @ryanbedwards: Not just the World Cup https://t.co/SRxvu1VUom +06/30/2018,Economists,@Austan_Goolsbee,"RT @kairyssdal: ""ABOARD AIR FORCE ONE, June 29 (Reuters) - Speaking to reporters aboard Air Force One... +Trump said the United States +has b…" +06/30/2018,Economists,@Austan_Goolsbee,"RT @codykeenan: Not quite as slick as the boss, but I put everything into this one for the graduates - and for everybody looking for someth…" +06/30/2018,Economists,@Austan_Goolsbee,"RT @TheEconomist: The term ""skyscraper"" was first used to describe towers that rose on the shores of Lake Michigan https://t.co/zXopIHfH1n" +06/30/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: on tax-cut effects so far: “spending on equipment is lower than it was at end of last year, and overall business investme…" +06/30/2018,Economists,@Austan_Goolsbee,RT @2beeornottobe: @JudgeJeanine U were doing SO well but NOW went 2 the GUTTER with bolshy bib boy @Austan_Goolsbee? U & @FoxNews R out o… +06/30/2018,Economists,@Austan_Goolsbee,"RT @MarshallAlums: Kicking off the #Marshall_Innovation #AMS2018 at @Stanford! + +Tune in to @UKin_SF tonight at 8 PM PT for a Facebook Live…" +06/29/2018,Economists,@Austan_Goolsbee,RT @omar_aok: This security tape of a botched robbery is masterpiece of silent cinema. ⭐⭐⭐⭐⭐ https://t.co/9U0rfWYNLh +06/29/2018,Economists,@Austan_Goolsbee,RT @demeralda: @DinaPomeranz @Austan_Goolsbee @ChicagoBooth @DurRobert I wish when I was studying anthropology I had taken more economics c… +06/29/2018,Economists,@Austan_Goolsbee,RT @DinaPomeranz: Excellent overview by @ChicagoBooth professor Marianne Bertrand on how econ increasingly embraces insights from other soc… +06/29/2018,Economists,@Austan_Goolsbee,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Economists,@Austan_Goolsbee,"RT @cowenconvos: This week’s Revisionist History features @tylercowen @asymmetricinfo @CliffordAsness and (of course) @Gladwell, all of wh…" +06/29/2018,Economists,@Austan_Goolsbee,"RT @BerkeleyHaas: We're thrilled to announce that Prof. Laura Tyson, renowned economist, has been named interim dean of our business school…" +06/29/2018,Economists,@Austan_Goolsbee,RT @lizzieohreally: I got to go home tonight from the last real day of a journalism job that l loved. In one piece. And the only real reaso… +06/28/2018,Economists,@Austan_Goolsbee,go Brent Neiman! https://t.co/raMZ163CMV +06/28/2018,Economists,@Austan_Goolsbee,"RT @SecSmithEllis: A week ago today, my father died. He left me a powerful history of our family and strong faith. I’ll miss him dearly, bu…" +06/27/2018,Economists,@Austan_Goolsbee,RT @MSNBCPR: Congratulations to @SRuhle and her @MSNBC Live team on their 2-year anniversary! #GoodNewsRuhles https://t.co/RE48MhfG58 +06/27/2018,Economists,@Austan_Goolsbee,RT @heckmanequation: Professor Heckman is speaking in DC tomorrow at the @edcommission National Forum on #EdPolicy. This forum brings toget… +06/27/2018,Economists,@Austan_Goolsbee,"RT @Sandi_P_Allen: Word, @Austan_Goolsbee. This article confirms what you said all along. https://t.co/FLXRv0A2vX" +06/27/2018,Economists,@Austan_Goolsbee,RT @jrpsaki: Putting political analysis aside for a moment. As one of many proud alumni from his office—@JoeCrowleyNY is one of the best hu… +06/26/2018,Economists,@Austan_Goolsbee,"RT @DeadYasser: @Austan_Goolsbee still carrying Obama’s water, I see. Just can’t accept President Trump, can you? With tariffs imposed by M…" +06/26/2018,Economists,@Austan_Goolsbee,RT @timothy_krieg: @DENCO5280 @Austan_Goolsbee Austin bless your heart. You were a terrible economic advisor so you probably need to just h… +06/26/2018,Economists,@Austan_Goolsbee,"RT @jodikantor: Huge honor: ⁦winning a Loeb the same night as my husband, @nytimes Your Money columnist ⁦@ronlieber⁩ + +Bigger honor: watchi…" +06/26/2018,Economists,@Austan_Goolsbee,"RT @NPRinskeep: ""The right’s revulsion against a black president targeted by birther conspiracy theories is not the same as the left’s revu…" +06/26/2018,Economists,@Austan_Goolsbee,"RT @PhilipRucker: “I think we’re in a renaissance of hard-news reporting, and I want to see this through” — @mitchellreports is an inspirat…" +06/26/2018,Economists,@Austan_Goolsbee,"Depending where they move these jobs, the tax bill likely gives Harley-Davidson a tax cut for doing this. https://t.co/Pq2TwGMmkA" +06/26/2018,Economists,@Austan_Goolsbee,RT @frankthorp: Sen @BenSasse: “The problem isn’t that Harley is unpatriotic - it’s that tariffs are stupid.” https://t.co/oAE0Z4EvF8 +06/26/2018,Economists,@Austan_Goolsbee,RT @steveliesman: The Dow has fallen 1% or more 17 days this year like yesterday (-1.33%). CNBC finds 8 of those 17 down days were sparked… +06/26/2018,Economists,@Austan_Goolsbee,"RT @Birdmischief: Okay, I want to see @Austan_Goolsbee on TV righteously snarking his way across my TV pretty much every weeknight until th…" +06/26/2018,Economists,@Austan_Goolsbee,RT @giuliapines: “This is a plan to lose weight by chopping off your feet.” OMG @Austan_Goolsbee on @TheLastWord tonight. +06/25/2018,Economists,@Austan_Goolsbee,Spoiler: it’s by my @ChicagoBooth colleague Eric Budish and shows that the vulnerability to attack depends on the f… https://t.co/idXzuEdgd4 +06/25/2018,Economists,@Austan_Goolsbee,Immigration court is intentionally being starved of resources to slow immigration. Now that itself becomes the argu… https://t.co/Q5ePEPuaTJ +06/25/2018,Economists,@Austan_Goolsbee,"RT @robertwolf32: “Every recession of the past 60 years has been preceded by an inverted yield curve, according to research from the San Fr…" +06/25/2018,Economists,@Austan_Goolsbee,"RT @Mr_DrinksOnMe: Interviewer: Do you think Brazil's 1970 team can beat today's Argentina? + +Pelé: Yes. + +Interviewer: By how much? + +Pelé: 1…" +06/24/2018,Economists,@Austan_Goolsbee,"RT @Michael_Kades: Voice search and response raises a whole new set of competitive issues, which @linamkhan is right to point out. @Austan_…" +06/24/2018,Economists,@Austan_Goolsbee,Hahahahaha https://t.co/QL46VVhRwY +06/22/2018,Economists,@Austan_Goolsbee,"RT @mikedebonis: And you may find yourself -- in the House of Representatives! +And you may find yourself -- in an endless debate! +And you m…" +06/22/2018,Economists,@Austan_Goolsbee,"RT @RedIsDead: Koko the gorilla once ripped a sink out of the wall and, when her keepers confronted her about it, she blamed her kitten, si…" +06/22/2018,Economists,@Austan_Goolsbee,! https://t.co/EcMYlVgHvx +06/22/2018,Economists,@Austan_Goolsbee,"RT @anneapplebaum: as I've said, expect a trade. We stop holding military exercises in Europe. In exchange, we allow Russia to keep Crimea.…" +06/22/2018,Economists,@Austan_Goolsbee,"RT @chrislhayes: First time illegal entry into the United States is a misdemeanor. + +Lying on or omitting materially relevant information fr…" +06/22/2018,Economists,@Austan_Goolsbee,RT @zittrain: The Supreme Court has reversed its 1992 decision limiting collection of sales tax by out-of-state merchants. The '92 decision… +06/21/2018,Economists,@Austan_Goolsbee,"RT @CliffordAsness: Sad. Let’s pass tariffs then make up conspiracies when the damage starts. Even if he’s being honest, his being shocked…" +06/20/2018,Economists,@Austan_Goolsbee,"RT @Arcanenaut: @trish_regan @Austan_Goolsbee @RepMikeRogersAL @BlakeBurman @JudgeTedPoe @SusanLiTV @connellmcshane @Harlan @Jehmu Trish, p…" +06/20/2018,Economists,@Austan_Goolsbee,RT @Geoffrey_JH3: @trish_regan @Austan_Goolsbee @RepMikeRogersAL @BlakeBurman @JudgeTedPoe @SusanLiTV @connellmcshane @Harlan @Jehmu Don’t… +06/20/2018,Economists,@Austan_Goolsbee,RT @danpfeiffer: This was a fun chance to nerd out about books with ⁦@EW⁩ and talk about my new book out this week https://t.co/jfpaU0NpQZ +06/20/2018,Economists,@Austan_Goolsbee,"RT @RenitaDYoung: Fed's Powell says jobs market not too tight, repeats case for gradual rate hikes via @Reuters https://t.co/Dc9gp2tbos" +06/20/2018,Economists,@Austan_Goolsbee,RT @BeckyQuick: It's not fake news. It's a balanced description of what is happening with some historical and medical context. Go back unde… +06/20/2018,Economists,@Austan_Goolsbee,RT @AlyssaMastro44: true friendship means saying “read Yes We Still Can first bc it just came out today!!!” 📚🌈💯 @danpfeiffer https://t.co/S… +06/20/2018,Economists,@Austan_Goolsbee,I disagree. It’s clearly worse. Katrina response revealed incompetence and indifference. This is an intentional de… https://t.co/5MCs0mzzNo +06/20/2018,Economists,@Austan_Goolsbee,"RT @AnnaLucyShea: I have never heard of any country systematically separating parents from children as a default policy, in order to deter…" +06/20/2018,Economists,@Austan_Goolsbee,"RT @jiveDurkey: you sitting down? + +here’s Corey Lewandowski mockingly saying “womp womp” to the story of a 10-year-old girl with Down Syndr…" +06/19/2018,Economists,@Austan_Goolsbee,"RT @jk_rowling: ‘Also, the president doesn’t have a moustache.’ https://t.co/zI7RVuDI1q" +06/19/2018,Economists,@Austan_Goolsbee,RT @stevesilberman: Rosaries confiscated from immigrants at the Arizona/Mexico border. [via @MikeOLoughlin] https://t.co/OP0jLhU3m1 https:/… +06/19/2018,Economists,@Austan_Goolsbee,RT @danielsgoldman: The irony of the Trump admin enforcing misdemeanor unlawful entry because “all laws must be enforced” when he pardoned… +06/19/2018,Economists,@Austan_Goolsbee,"Yes, but with me sayng I would pay him $20 if he could hit an unguarded shot and him repeatedly trying but failing. https://t.co/G6Uc3KQ0k2" +06/19/2018,Economists,@Austan_Goolsbee,RT @emrazz: An account from an attendant aboard a flight transferring 16 unaccompanied children who were taken from their parents at the bo… +06/19/2018,Economists,@Austan_Goolsbee,RT @kevinkrim: Excellent @SquawkCNBC auction ending in about 90 minutes! Meet @BeckyQuick @JoeSquawk @andrewrsorkin and support a great cau… +06/19/2018,Economists,@Austan_Goolsbee,"RT @timkmak: It's incredible that this is happening: + +The Commerce Secretary, aware of a coming negative story about his links to a Kremli…" +06/19/2018,Economists,@Austan_Goolsbee,RT @AlyssaMastro44: may our landscape be dotted with barack obama elementary schools ✌🏼 https://t.co/k739UyK1Pn +06/18/2018,Economists,@Austan_Goolsbee,RT @vkhosla: I just published “‘Venture Assistance’: A philosophical view of what entrepreneurs need beyond just funding…” https://t.co/eGW… +06/18/2018,Economists,@Austan_Goolsbee,RT @ACraig2031: @Popehat Who wore it better? https://t.co/qYCfZcXNZc +06/18/2018,Economists,@Austan_Goolsbee,RT @neeratanden: Yes. They wrote cage. In America. https://t.co/ONI6Anyev6 +06/18/2018,Economists,@Austan_Goolsbee,So we’re just doing it for fun? https://t.co/j7E6EEdrvD +06/18/2018,Economists,@Austan_Goolsbee,"RT @brianefallon: This is Chad Readler. +He is Jeff Sessions' right-hand guy at DOJ who is advocating for the family separation policy. +Now…" +06/18/2018,Economists,@Austan_Goolsbee,"RT @KenDilanianNBC: Laura Bush: “These images are eerily reminiscent of the Japanese American internment camps of World War II, now conside…" +06/18/2018,Economists,@Austan_Goolsbee,"Are there empirical pants, too? https://t.co/3idXgyyMQg" +06/17/2018,Economists,@Austan_Goolsbee,RT @BillKristol: Another reason for alarm: It's increasingly clear Trump apologists will excuse almost anything. Former constitutionalists… +06/17/2018,Economists,@Austan_Goolsbee,@jimmykimmel you should have called me https://t.co/7HuXwM6y6Z +06/17/2018,Economists,@Austan_Goolsbee,RT @Mimirocah1: of materially prejudicing an adjudicative proceeding in the matter.” How do these outrageous stamens not violate that rule… +06/17/2018,Economists,@Austan_Goolsbee,RT @petersagal: Married. https://t.co/bpEFIHLxL5 +06/17/2018,Economists,@Austan_Goolsbee,Agreed https://t.co/yMRrWswWOE +06/17/2018,Economists,@Austan_Goolsbee,"RT @claydumas: This reminds me of my fave @Austan_Goolsbee story, wherein he goads his college debate rival, Ted Cruz, into bricking one th…" +06/17/2018,Economists,@Austan_Goolsbee,RT @tripgabriel: It was Stephen Miller who pushed the Trump admin to use the ‘nuclear option’ of separating children from parents at the bo… +06/17/2018,Economists,@Austan_Goolsbee,RT @jpodhoretz: Stephen Miller is a pestilence https://t.co/ohvNO1Ojns +06/16/2018,Economists,@Austan_Goolsbee,"“That’s what the money is for.” + +—Don Draper https://t.co/532dAaMSQz" +06/16/2018,Economists,@Austan_Goolsbee,RT @ProfFionasm: And there were intellectual property protections in there too - another complaint the Trump admin has. https://t.co/UvE0KV… +06/16/2018,Economists,@Austan_Goolsbee,"RT @SteveRattner: If Trump had read the TPP document before withdrawing, he’d have noticed that Canada agreed to lift dairy tariffs & impor…" +06/16/2018,Economists,@Austan_Goolsbee,"RT @jpodhoretz: The problem with Comey wasn't ""bias."" The problem with Comey is that he interfered in the political process--twice-- and di…" +06/16/2018,Economists,@Austan_Goolsbee,RT @Eric_Lindros: @Austan_Goolsbee So continue to tickle sweet nothings into Warren Buffet's ear you feckless pigling suckling at the power… +06/16/2018,Economists,@Austan_Goolsbee,"Westley: You're that smart? + +Vizzini: Let me put it this way. Have you ever heard of Plato, Aristotle, Socrates?… https://t.co/lZUIZPV2ni" +06/16/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: very few people in our business as classy as Hampton Pearson, my ⁦@CNBC⁩ colleague who retired today. a gentleman who has…" +06/16/2018,Economists,@Austan_Goolsbee,Like one of those nightmare psychology experiments from the 1950s that led to human subjects rules. WTF is wrong wi… https://t.co/VLTaHZ1WQQ +06/16/2018,Economists,@Austan_Goolsbee,"RT @John_N_Friedman: Its official - Raj Chetty is coming back to Harvard! + +With the band back together on the East Coast, look out out for…" +06/16/2018,Economists,@Austan_Goolsbee,has there ever been an F Troop remake? https://t.co/7sEGn3GfMI +06/16/2018,Economists,@Austan_Goolsbee,Like one of those nightmare psychology experiments from that led to human subjects rules. WTF is wrong with us? https://t.co/BvFgsCQ3Iw +06/16/2018,Economists,@Austan_Goolsbee,RT @metsfanmax: The @Rockies and @Indians both liked my tweet...I'd like to thank the academy and give a shout out to mom @BarbaraFedida co… +06/16/2018,Economists,@Austan_Goolsbee,"RT @BarbaraFedida: Whatever you’re giving me credit for, I am certain you’re being humble. It’s all you @metsfanmax 😘 https://t.co/0vaB4S5f…" +06/15/2018,Economists,@Austan_Goolsbee,RT @shomikdutta: @NickABC13 @tedcruz @jimmykimmel Paging @Austan_Goolsbee +06/15/2018,Economists,@Austan_Goolsbee,RT @StrautMike: Another group of young Chicago leaders off to do big things—Happy graduation to the Ariel Community Academy Class of 2018!… +06/15/2018,Economists,@Austan_Goolsbee,RT @hughhewitt: Mr. @POTUS: Family separation is not the result of law but the DOJ’s choice concerning how to charge and how to detain. It… +06/15/2018,Economists,@Austan_Goolsbee,RT @HariSevugan: Cc @Austan_Goolsbee https://t.co/MiG8TsPGaJ +06/14/2018,Economists,@Austan_Goolsbee,RT @danpfeiffer: Perhaps now it’s time for everyone to stop indulging the fantastical conspiracy theories of the right and focus on the act… +06/14/2018,Economists,@Austan_Goolsbee,That’s not how they promised it https://t.co/iTFBZzPzDr +06/14/2018,Economists,@Austan_Goolsbee,RT @DinaPomeranz: My former PhD advisor @Cutler_econ attempted to estimate the impacts of weakening the US Environmental Protection Agency… +06/14/2018,Economists,@Austan_Goolsbee,"RT @CREWcrew: You’re. Not. Allowed. To Use. Your. Public. Office. For. Your. Personal. Enrichment. Or your wife’s. +https://t.co/xDtsnMrcXm" +06/14/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: former Wells Fargo CEO Richard Kovacevich just told my @cnbc colleagues that Q2 2018 economic growth may reach 4%, and ""t…" +06/14/2018,Economists,@Austan_Goolsbee,RT @kasie: Infant ripped from mother's arms while she was breastfeeding the baby at border detention center; mother handcuffed for resistin… +06/14/2018,Economists,@Austan_Goolsbee,"RT @steventberry: At the same event, my distinguished Yale Econ colleague Bill Nordhaus was awarded the prize in the field of Climate Scien…" +06/14/2018,Economists,@Austan_Goolsbee,"RT @steventberry: Not a great photo, but a great day for empirical IO as Bresnahan, Pakes and Porter are awarded the BBVA Frontiers of Know…" +06/13/2018,Economists,@Austan_Goolsbee,Isn’t the relevant comparison what’s the most efficient place plus the transportation costs rather than every place… https://t.co/mRNh2ZVwMJ +06/13/2018,Economists,@Austan_Goolsbee,"RT @robertwolf32: @Austan_Goolsbee Rising mortgage rates, gas prices up , trade wars adding to new tariffs ..... all hitting hard working A…" +06/13/2018,Economists,@Austan_Goolsbee,RT @BFischerMartin: Working with Tim Russert was the honor of a lifetime. He was taken too soon - 10 years ago today. My good friend @erin… +06/13/2018,Economists,@Austan_Goolsbee,Remember the time you withdrew from the Iran deal and oil prices shot up (and haven’t come down)? https://t.co/nvU6atzsLY +06/13/2018,Economists,@Austan_Goolsbee,"RT @IsaacDovere: the North Korean version is that Trump already agreed to lift sanctions, and that the North Koreans won't have to move on…" +06/13/2018,Economists,@Austan_Goolsbee,"RT @maddow: I think the word is ""camps."" Prison camps, for the kids. + +https://t.co/P4he3iUzLT" +06/13/2018,Economists,@Austan_Goolsbee,RT @ChrisLu44: Great to catch up with former Obama WH photographer @PeteSouza at his book event tonight. So many wonderful stories and phot… +06/13/2018,Economists,@Austan_Goolsbee,RT @R_Thaler: Thanks AEA! Anyone looking for the published version of my Nobel lecture it is now available free on the link here. Who say… +06/13/2018,Economists,@Austan_Goolsbee,I did 9hrs a day here in the fall https://t.co/IIvTJN3y9x +06/13/2018,Economists,@Austan_Goolsbee,RT @NickTimiraos: Very interesting look at the deflationary impact of online retailing with research from @Austan_Goolsbee https://t.co/ruQ… +06/12/2018,Economists,@Austan_Goolsbee,"RT @SRuhle: A BIG congrats to my dear friend @NicolleDWallace!! +https://t.co/1MAJcg5opl" +06/12/2018,Economists,@Austan_Goolsbee,The prices online are falling https://t.co/8LFEktzlSQ +06/12/2018,Economists,@Austan_Goolsbee,RT @UofCBoothNews: Research by @Austan_Goolsbee et al. shows prices for goods sold online rose much more slowly from 2014 to 2017 than indi… +06/12/2018,Economists,@Austan_Goolsbee,"RT @M_C_Klein: Of All Countries Threatened With Tariffs, Canada Makes the Least Sense + +https://t.co/rCIAHeoq04 + +<--some thoughts on the rec…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @JenGranholm: Japan Times: + +""Picking fights with friends is not making America great again. Rather, it is weakening the foundation of Am…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @CBSThisMorning: ""What we have is a freeze for freeze. The North Koreans are freezing their ICBM & nuclear tests & the Americans are fre…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @DianeSwonk: I have known Larry for better part of 25 years. We have had many debates over the economy, always polite, civil, and kind.…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @steventberry: In my case, one doesn't need the all caps to convince me. https://t.co/mkDB0hDcYi" +06/12/2018,Economists,@Austan_Goolsbee,"We are rooting for you @larry_kudlow. + +No matter what your political stripe, Larry is supremely decent person." +06/11/2018,Economists,@Austan_Goolsbee,RT @AwardsDarwin: Don’t take an animal from it’s mother. 😡 https://t.co/j7i7djBNee +06/11/2018,Economists,@Austan_Goolsbee,"RT @davidfrum: So many fascinating details in this story, but not least: Trump was repeatedly told that shredding presidential documents is…" +06/11/2018,Economists,@Austan_Goolsbee,"RT @secretgcd: @ddale8 There's a difference between buying a foreign car for $20,000 and throwing $20,000 into an incinerator, but I don't…" +06/11/2018,Economists,@Austan_Goolsbee,"RT @anniekarni: Trump has a habit of ripping up all of his paper -- his own ""filing system"" of sorts. Officials working in records manageme…" +06/11/2018,Economists,@Austan_Goolsbee,He’s not doing that https://t.co/zVctCjM4F0 +06/10/2018,Economists,@Austan_Goolsbee,"RT @JimPethokoukis: Gang, Trump has been wrong on trade for 40 years. Wrong on Japan. Wrong on Reagan. Wrong on trade deficits. Wrong on N…" +06/10/2018,Economists,@Austan_Goolsbee,RT @CommsDirector: The reference here is unavoidable. https://t.co/gNWDqHo2EV +06/10/2018,Economists,@Austan_Goolsbee,RT @gabriel_zucman: The great ⁦@RichardRubinDC⁩ covers our new estimates of global profit-shifting to tax havens: $600 billion and counting… +06/10/2018,Economists,@Austan_Goolsbee,RT @ObsoleteDogma: This is the former prime minister of Belgium —> https://t.co/0JANNGEDma +06/10/2018,Economists,@Austan_Goolsbee,"Before invoking God’s wrath on someone else, perhaps Navarro should reflect on his administration and the Bible. Th… https://t.co/Aday8jiRLF" +06/10/2018,Economists,@Austan_Goolsbee,RT @RichardHaass: The unraveling of G-7 summit works in NK’s favor as @realDonaldTrump will not want to bust up 2 summits in a row lest peo… +06/10/2018,Economists,@Austan_Goolsbee,"RT @DougRediker: I am going to re-tweet this ad nauseam: US Constitution Article I, Section 8 (3) grants Congress the right “to regulate Co…" +06/10/2018,Economists,@Austan_Goolsbee,Other than there being more of them than any other age group? https://t.co/ImwvPPL1Ta +06/10/2018,Economists,@Austan_Goolsbee,She is a hero (and I’ve been in the office next door to her for more than a decade so I would know) https://t.co/WbdtRHmDLt +06/10/2018,Economists,@Austan_Goolsbee,"RT @jmartNYT: QUEBEC CITY — President Trump abruptly upended two days of global economic diplomacy late Sat,refusing to sign a joint statem…" +06/10/2018,Economists,@Austan_Goolsbee,It was a migraine https://t.co/H0X2zJS5hB +06/10/2018,Economists,@Austan_Goolsbee,@LynchpinL @ChicagoBooth @crampell He married up +06/09/2018,Economists,@Austan_Goolsbee,RT @paulkrugman: This is absolutely boneheaded analysis; VATs don't convey any competitive advantage: https://t.co/Ahv3mONkhC. But if Trump… +06/09/2018,Economists,@Austan_Goolsbee,RT @cbouzy: Scott Pruitt on his way to pickup his dry cleaning and special lotion. https://t.co/lAMty9pqXL +06/09/2018,Economists,@Austan_Goolsbee,"RT @billingsley313: My pregnant wife texted me a selfie in a new dress and asked ""Does it make my butt look big?"" I texted back ""Noo!"" My p…" +06/09/2018,Economists,@Austan_Goolsbee,RT @theclaireliu: The Institute of Politics (@UChiPolitics) was undoubtedly one of the best things of my 4 years at @UChicago...huge thanks… +06/09/2018,Economists,@Austan_Goolsbee,"RT @R_Thaler: OK, sorry that is behind the @AEAjournals paywall. Meanwhile, here are links to the lecture video https://t.co/usfI9Q3o4G (lo…" +06/08/2018,Economists,@Austan_Goolsbee,"RT @blakehounshell: Every night, @NicolleDWallace thanks her guests over Twitter. Just a nice little thing in this un-nice age." +06/08/2018,Economists,@Austan_Goolsbee,RT @EddyElfenbein: https://t.co/IDM2CtmKNY +06/08/2018,Economists,@Austan_Goolsbee,It’s just the tech version of @R_Thaler’s observation that way too many people bet on the longest shot at the horse… https://t.co/u8BHPcjCzR +06/08/2018,Economists,@Austan_Goolsbee,"RT @JeffJacksonNC: What if hundreds of thousands of North Carolinians couldn't afford health care and the federal govt said, ""Ok we'll pay…" +06/08/2018,Economists,@Austan_Goolsbee,RT @JayCShambaugh: Russia is not a top ten economy in terms of size. Nor is it particularly rich. I believe Brazil has a larger GDP and rou… +06/08/2018,Economists,@Austan_Goolsbee,Not if it came from U Chicago it didn’t https://t.co/icgnZCzx1C +06/08/2018,Economists,@Austan_Goolsbee,RT @RichLowry: I was one of the many young people who’ve worked as a research assistant for Charles Krauthammer over the yrs. He’s even mor… +06/08/2018,Economists,@Austan_Goolsbee,"RT @kurteichenwald: What Putin wanted in 2016, according to foreign intel sources I spoke to that year: +1. Strained relations in NATO. +2.…" +06/08/2018,Economists,@Austan_Goolsbee,Off top of my head: 1) arpaio pardon=disgusting 2) pardons signaling to potential witnesses against him=creepy 3) p… https://t.co/nFVNeeJmOD +06/08/2018,Economists,@Austan_Goolsbee,Do you think if someone told the president about the injustices/humiliations Biff Tannen has endured since 1955 (in… https://t.co/JdLkjEfA4q +06/08/2018,Economists,@Austan_Goolsbee,RT @TAPolicy: Is the Internet Keeping #Inflation Low? @MotherJones cites #TAPscholar @Austan_Goolsbee's latest for @nberpubs: https://t.co/… +06/08/2018,Economists,@Austan_Goolsbee,That is a good idea! https://t.co/s6E6IawVFL +06/08/2018,Economists,@Austan_Goolsbee,RT @nberpubs: The role of public policy in an AI-intensive economy and the challenges of enacting Universal Basic Income as a response to w… +06/07/2018,Economists,@Austan_Goolsbee,"You haven’t been paying much attention, I see https://t.co/w6ztClhzu2" +06/07/2018,Economists,@Austan_Goolsbee,Can we get a fact check on the level of respect for career women? https://t.co/mlumebs8m3 +06/07/2018,Economists,@Austan_Goolsbee,!!! https://t.co/IcXOgYiJCv +06/07/2018,Economists,@Austan_Goolsbee,RT @youngvulgarian: Two auto-replying bots have now been stuck in a loop with each other for several hours and the resulting thread reads l… +06/07/2018,Economists,@Austan_Goolsbee,"RT @ChadBown: WOW. STEEL. ALUMINUM. AUTOS. + +Bipartisan legislation requiring Trump submit to Congress any proposal to adjust imports — ie,…" +06/07/2018,Economists,@Austan_Goolsbee,RT @jaketapper: I blame @Alanis https://t.co/IOqrvgka4O +06/07/2018,Economists,@Austan_Goolsbee,Chicago architecture cruise at #2 is absolutely correct but only if you take the legit Chicago Architecture Foundat… https://t.co/W2wspkZZq2 +06/07/2018,Economists,@Austan_Goolsbee,RT @LauBooneEco: Happy and proud! https://t.co/9U7jMPq1QH +06/07/2018,Economists,@Austan_Goolsbee,"RT @AdobeInsights: E-commerce trends, online inflation/deflation, ""smart"" product trends, these are just a few of the great new insights th…" +06/07/2018,Economists,@Austan_Goolsbee,RT @LHSummers: Remembering Julio Rotemberg: A close friend who for me embodied the best in a scholarly life. https://t.co/dCBMPnzBOB +06/06/2018,Economists,@Austan_Goolsbee,RT @AndrewR_Physics: Wait until you find out about academics... https://t.co/FtAbs3PDf3 +06/06/2018,Economists,@Austan_Goolsbee,"RT @greg_ip: If Trump revives coal, it will extract a steep price in both dollars, and lives- of the miners he wants to help. My column on…" +06/06/2018,Economists,@Austan_Goolsbee,RT @BruceBartlett: That $2 trillion tax give-away for the ultra-wealthy would have gone a long way toward keeping Social Security and Medic… +06/06/2018,Economists,@Austan_Goolsbee,"RT @LHSummers: In 2008, when China’s current account balance was approaching 10 % of GDP, it was a central American priority to bring it do…" +06/06/2018,Economists,@Austan_Goolsbee,RT @SRuhle: It’s official.... @AliVelshi & I are NO LONGER newlyweds... happy birthday @VelshiRuhle! https://t.co/44oNQ1cA7c +06/05/2018,Economists,@Austan_Goolsbee,"RT @Deadspin: Trump unable to remember words to ""God Bless America"" at replacement event he commissioned to prove his patriotism: https://t…" +06/05/2018,Economists,@Austan_Goolsbee,Yoda grammarize it or else no one cares https://t.co/jF4NVlTjDU +06/05/2018,Economists,@Austan_Goolsbee,RT @crampell: Pruitt asked his taxpayer-funded executive scheduler at the EPA to set up a call with the Chick-Fil-A chairman to discuss hav… +06/05/2018,Economists,@Austan_Goolsbee,"Read the research and known facts before proposing a theory. + +e.g, Romer and Romer +https://t.co/UztGqjWIuS https://t.co/RY44usTU4t" +06/05/2018,Economists,@Austan_Goolsbee,RT @jbbecon: My forthcoming book on antitrust will have a chapter on harms to innovation and a chapter on harms to suppliers and workers. O… +06/05/2018,Economists,@Austan_Goolsbee,RT @BridgetGainer: Thank you @ChicagolandCmbr for the opportunity to share story of (re: recruit business parnters for!) Chicago Apprentice… +06/05/2018,Economists,@Austan_Goolsbee,Spoiler alert: there’s way more deflation online than in the CPI for the same categories https://t.co/UJEj8lQ9Ta +06/05/2018,Economists,@Austan_Goolsbee,Can someone in eastern PA tell us if potus axing eagles’ WH visit will be well received? Asking for a friend in the electoral college. +06/05/2018,Economists,@Austan_Goolsbee,Which would make no sense if the president had the right to self-pardon https://t.co/LAnnzhFeEQ +06/05/2018,Economists,@Austan_Goolsbee,Whoah! Budget and Econ Twitter will go crazy today. https://t.co/dkXBMH1gCq +06/05/2018,Economists,@Austan_Goolsbee,RT @hughhewitt: The pressure will build and build to end policy of separating children from parents so @realDonaldTrump well advised to ord… +06/05/2018,Economists,@Austan_Goolsbee,RT @nytimes: Netflix is turning 8 Dolly Parton songs into films https://t.co/xyEjL0AwHn +06/05/2018,Economists,@Austan_Goolsbee,RT @davidplouffe: Was great to see Jeff Bleich Saturday at our old friend Buffy Wicks’ hopping campaign office. A stalwart supporter of Bar… +06/04/2018,Economists,@Austan_Goolsbee,"RT @johnmoe: When my daughter was born 15 yrs ago w/ achondroplasia and health complications, I wondered what she’d be able to do in life.…" +06/04/2018,Economists,@Austan_Goolsbee,RT @jimsciutto: Quite a way to kick off a new show: https://t.co/UEdpyqePxY +06/04/2018,Economists,@Austan_Goolsbee,Please don’t https://t.co/7DaXN1MOv3 +06/04/2018,Economists,@Austan_Goolsbee,Isn’t the President all but daring a state AG to investigate him? +06/04/2018,Economists,@Austan_Goolsbee,RT @kasie: ...a woman gets elected. https://t.co/ZTwbxaAybo +06/04/2018,Economists,@Austan_Goolsbee,"Thaler appearing on U Chicago's aptly named Big Brains podcast +https://t.co/L01fjTRElO" +06/04/2018,Economists,@Austan_Goolsbee,"RT @davidfrum: In January of this year, @DouthatNYT & I debated online whether Trump had yet shown himself a danger to the constitution. I…" +06/04/2018,Economists,@Austan_Goolsbee,and he threatened to pull the money for the Chicago children’s hospital unless he got a massive campaign contributi… https://t.co/1WdVGL0wpp +06/04/2018,Economists,@Austan_Goolsbee,RT @dynarski: Me with the dude https://t.co/jwW0NldXqc +06/04/2018,Economists,@Austan_Goolsbee,"RT @amandafortini: Melania did just have kidney surgery, and so did I, and I can tell you it takes more than 18 days to recover. https://t.…" +06/04/2018,Economists,@Austan_Goolsbee,RT @RNicholasBurns: A cardinal rule of diplomacy is that Ambassadors must not interfere in the domestic politics of the countries to which… +07/02/2018,Economists,@BruceBartlett,"In other words, he'not a racist, but hires racists to write words under his name. Got it. https://t.co/qsOocyjfzP" +07/02/2018,Economists,@BruceBartlett,RT @HeerJeet: Ron Paul reminds us he’s the grandfather of modern Republican racism. https://t.co/zQQb6OyfUt +07/02/2018,Economists,@BruceBartlett,"""The American historical record includes court cases, famous speeches—and Trump’s tweets. Here’s why that matters"" https://t.co/YIyZBZVceN" +07/02/2018,Economists,@BruceBartlett,"@mbmk7 Unfortunately, studies show that repetition of a lie, even in the course of calling it a lie or refuting, ca… https://t.co/QCHYMuog7E" +07/02/2018,Economists,@BruceBartlett,@VATVSLPR Yes +07/02/2018,Economists,@BruceBartlett,@mbmk7 The web is used purely for marketing purposes or operates totally separate from broadcast. I think they shou… https://t.co/Vwk0zy7gjc +07/02/2018,Economists,@BruceBartlett,"@mbmk7 Good point. But broadcast journalists don't do nearly enough to use the web to amplify, corroborate and doub… https://t.co/1JdaZAY1x1" +07/02/2018,Economists,@BruceBartlett,"@JonEHecht One problem is that journalists still write as if they are space-constrained, have only so many column i… https://t.co/MO8nGhiJXv" +07/02/2018,Economists,@BruceBartlett,@NotByRights This helps. https://t.co/QYO6RMlM3Z +07/02/2018,Economists,@BruceBartlett,"@VATVSLPR I fully understand. Unfortunately, what we have now is a kind of Gresham's Law where bad but entertaining… https://t.co/wT7hIAltVb" +07/02/2018,Economists,@BruceBartlett,"Rather than present their own conclusion drawn from the evidence, journalists will often seek out some authority wh… https://t.co/1QcDFQAvJV" +07/02/2018,Economists,@BruceBartlett,I should add that journalists know the difference but are often reluctant to draw conclusions from an analysis b/c… https://t.co/CbaSzGSaos +07/02/2018,Economists,@BruceBartlett,Pet peeve about both journalists & the public--both have difficulty differentiating between analysis & opinion. Ana… https://t.co/KxsMgT800p +07/02/2018,Economists,@BruceBartlett,@David_Pederson Reality TV is the most unreal thing in the world. +07/02/2018,Economists,@BruceBartlett,@Sammysgranny @JoyfullCat Most journalists are Democrats or Democratic-leaning independents. They are overly critic… https://t.co/cWZfXLko8r +07/02/2018,Economists,@BruceBartlett,"@RossWeiner2 Admitting something and being exposed are two different things. Anyway, I think he enjoys lying, seein… https://t.co/yxnuc1ltiq" +07/02/2018,Economists,@BruceBartlett,Who would be stupid enough to pay good money for this shit? Really. https://t.co/VIMfnCOllK +07/02/2018,Economists,@BruceBartlett,But she is open to being lied to about it and deluding herself that the next Trump-appointed justice won't gut Roe… https://t.co/fJpraH0aWa +07/02/2018,Economists,@BruceBartlett,I am really tired of reading about the stupid pee-tape or any other material anyone supposedly has to blackmail Tru… https://t.co/3z6aqj1HBw +07/02/2018,Economists,@BruceBartlett,"@aadamoni I think it is because they are feckless, lack the courage of their convictions." +07/02/2018,Economists,@BruceBartlett,"@Sammysgranny They lack the self-confidence, the experience and the editorial support to do more than just repeat the conventional wisdom." +07/02/2018,Economists,@BruceBartlett,"@Sammysgranny @aadamoni Republicans control virtually the entire government, so of course they are the ones being interviewed." +07/02/2018,Economists,@BruceBartlett,"He's never won a debate. So, no. https://t.co/5f38PO7CCi" +07/02/2018,Economists,@BruceBartlett,Sad but true--when the negative consequences of Trump's policies become apparent during the next Democratic adminis… https://t.co/9ueFW6WHIU +07/02/2018,Economists,@BruceBartlett,RT @DeanBaker13: The @washingtonpost is worried that in a tight labor market truckers' pay could rise back to its 1990 levels https://t.co/… +07/02/2018,Economists,@BruceBartlett,"RT @JWGOP: Every potential SCOTUS nominee on Trump's public list will vote to overturn Roe, health care protections & begin a round of very…" +07/02/2018,Economists,@BruceBartlett,"RT @ThePlumLineGS: Dear Democrats: + +Policing your left flank on ""Abolish ICE"" is a sucker's game. + +Instead, make this about Trump's cruelty…" +07/02/2018,Economists,@BruceBartlett,@AllenCMarshall Atlas Shrugged +07/02/2018,Economists,@BruceBartlett,Trumpsters complain that their position on immigration is the same as that of the Founding Fathers--no one is allow… https://t.co/S98jcoZk3K +07/02/2018,Economists,@BruceBartlett,This explains so much. https://t.co/aGAX2Bt4Yt +07/02/2018,Economists,@BruceBartlett,Charles Koch will be assured that there will soon be 5 votes to find the 16th amendment unconstitutional. https://t.co/DybkJOlWEi +07/02/2018,Economists,@BruceBartlett,Hoover's idea of bipartisanship is to support whatever the Republican Party and Likud both favor. https://t.co/z6n24B5nvI +07/02/2018,Economists,@BruceBartlett,"RT @TheTattooedProf: Your daily reminder that Hobby Lobby illegally purchased stolen antiquities in the Middle East, imported them to the U…" +07/02/2018,Economists,@BruceBartlett,"RT @fawfulfan: Hey @cafepress, why are you selling ""Rope, Tree, Journalist"" shirts? + +Is lynching members of the press an idea your company…" +07/02/2018,Economists,@BruceBartlett,"RT @fawfulfan: ""Civility"" = treating white people with respect. + +""Political correctness"" = treating anyone else with respect. https://t.co/…" +07/02/2018,Economists,@BruceBartlett,The stupidest thing Scott (anyone?) has ever said. https://t.co/DKtSjsrDdN +07/02/2018,Economists,@BruceBartlett,"Wall Street setting up a third party to steal votes from Democrats, guarantee Republican victory. https://t.co/8ONh6pnHql" +07/02/2018,Economists,@BruceBartlett,Ex-Republican Operative Steve Schmidt: ‘The Party of Trump Must Be Obliterated. Annihilated. Destroyed’… https://t.co/xnH5VtZHzx +07/02/2018,Economists,@BruceBartlett,RT @EricBoehlert: neither NYT nor WaPo ran front-page articles on Sun re: the 700+ Trump protests that were staged in all 50 states on Satu… +07/02/2018,Economists,@BruceBartlett,RT @SethAMandel: The real problem with NeverTrump: they’re ... a bit too Jewy? https://t.co/vNYQeePGmI +07/02/2018,Economists,@BruceBartlett,I don't believe that Gerald Ford would pardon Trump for his crimes. +07/02/2018,Economists,@BruceBartlett,RT @soledadobrien: Good. Every day Sean Spicer undermined the work of reporters from his perch at the White House. Some found it amusing. I… +07/02/2018,Economists,@BruceBartlett,@business @bopinion The gap would be wider if the US data was for all states except California. +07/02/2018,Economists,@BruceBartlett,RT @business: California tried to be the anti-Trump. It worked. The state's economy grew at more than twice the speed of the U.S. as a whol… +07/02/2018,Economists,@BruceBartlett,"He/she will say, dutifully, that Roe is settled law over and over and over again--right up until it is completely g… https://t.co/sdQZBWQb7j" +07/02/2018,Economists,@BruceBartlett,"North Korea tells Trump to go screw himself, laughing all the way at his gullibility & stupidity. https://t.co/wzyLoOfCxd" +07/01/2018,Economists,@BruceBartlett,"RT @stutteringjohnm: Breaking: Secret Service contacted me agent & wants me to meet with them tomorrow. Stay tuned, Avenatti, can you come…" +07/01/2018,Economists,@BruceBartlett,RT @tribelaw: .@SenatorCollins in particular needs to hear from her Maine constituents about why they see this as a huge copout. Does she t… +07/01/2018,Economists,@BruceBartlett,@rcolarette @tribelaw You are right. That's a difference between Republicans and Democrats. Republicans are always… https://t.co/Hwt5sNytHQ +07/01/2018,Economists,@BruceBartlett,@JAragman @Brasilmagic When it is finally obvious that she was lied to she will feign remorse and continue voting a… https://t.co/hWSlFI31DN +07/01/2018,Economists,@BruceBartlett,How come I never hear libertarians worrying about whether Trump's wall will be used to keep them in the US? They us… https://t.co/e5tWYEMHiU +07/01/2018,Economists,@BruceBartlett,I agree. https://t.co/ZE03Oxb4Up +07/01/2018,Economists,@BruceBartlett,But he would dutifully vote for a Supreme Court justice who would overturn Brown v Board of Education if his party… https://t.co/PutLZ4HWWf +07/01/2018,Economists,@BruceBartlett,@Brasilmagic Her word is worthless. You are a fool to give her any credibility whatsoever. Wishful thinking at its worst. +07/01/2018,Economists,@BruceBartlett,Black Man Killed for Carrying a Gun Had a Valid Concealed Carry Permit https://t.co/G21mDup9yr +07/01/2018,Economists,@BruceBartlett,@Odysseus93 @woodstockwasme @StateDept @AP @ForeignPolicy @jricole @SenBobCorker @SenatorMenendez @SenatorShaheen… https://t.co/vEyROhAdU8 +07/01/2018,Economists,@BruceBartlett,"@brooklyn91941 Unfortunately, the opposition party in this country is weak and incompetent. Like the Social Democrats of Weimar." +07/01/2018,Economists,@BruceBartlett,@woodstockwasme @StateDept @AP @ForeignPolicy @jricole @SenBobCorker @SenatorMenendez @SenatorShaheen Trump and the… https://t.co/JkqUehGrdZ +07/01/2018,Economists,@BruceBartlett,@DavidNe41143027 Always important to add that the voters of Maine elected him governor TWICE. +07/01/2018,Economists,@BruceBartlett,"We need a stronger term than the ""blind leading the blind"" to explain how Trump and the GOP operate these days." +07/01/2018,Economists,@BruceBartlett,"RT @tedlieu: On March 2, 2018, @realDonaldTrump Director of Trade & Industrial Policy Peter Navarro said ""I don't believe any country will…" +07/01/2018,Economists,@BruceBartlett,"RT @CathyYoung63: This anti-#NeverTrump screed at @amspectator is quite exceptionally vile +https://t.co/32aLodX1Tf +Come for the manhood-imp…" +07/01/2018,Economists,@BruceBartlett,There is also no doubt that whoever Trump nominates will be satisfactory to the anti-abortion fanatics. Someone wil… https://t.co/YtrNrIkR5Y +07/01/2018,Economists,@BruceBartlett,"@maplehulk If Alan is nominated to SCOTUS, I will be inclined to agree." +07/01/2018,Economists,@BruceBartlett,It is absolutely guaranteed that whoever Trump nominates to SCOTUS will be satisfactory to Susan Collins re Roe v W… https://t.co/AOr72fvQqB +07/01/2018,Economists,@BruceBartlett,@jerryadler @CEDickson @YahooNews I am well aware of the problem of freshness and finding new news hooks. But I thi… https://t.co/a7f7qSpI0s +07/01/2018,Economists,@BruceBartlett,@LizMair That's not really true. It's just that we run much our welfare state through the tax code rather than thro… https://t.co/IIVcd9p9Wi +07/01/2018,Economists,@BruceBartlett,@ddale8 The closest precedent is the slavery bloc before the Civil War. +07/01/2018,Economists,@BruceBartlett,@mikeduncan @KevinMKruse One problem with this theory is that the Nazis adopted a lot of policies and rhetoric from the Confederate South. +07/01/2018,Economists,@BruceBartlett,The deficit is always falling when Republicans want to cut taxes for the rich. It's always skyrocketing when they w… https://t.co/mOnHQvFrmB +07/01/2018,Economists,@BruceBartlett,@adamliptak @StevenBrill He's just trying to sell books at your expense. Don't take it personally. +07/01/2018,Economists,@BruceBartlett,"@jerryadler @CEDickson The big exception is reporters for right wing outlets such as Fox, where they never tire of… https://t.co/sMf7ErWWo1" +07/01/2018,Economists,@BruceBartlett,"@jerryadler @CEDickson Generally speaking, once beat reporters know all there is to know on a subject, they lose in… https://t.co/rj6coJJLAJ" +07/01/2018,Economists,@BruceBartlett,"Trump's not-so-secret weapon--the Fox Propaganda Channel, which always has his back. https://t.co/cFe1gqzQ2s" +07/01/2018,Economists,@BruceBartlett,@realdawnhoward I'm not hearing about this. Just searched Google News and saw nothing. +07/01/2018,Economists,@BruceBartlett,"@mrspc48 @amjoyshow It's not just the amount of coverage, which has fallen, it's the tone of the coverage. Much les… https://t.co/9dxu5ALsWq" +07/01/2018,Economists,@BruceBartlett,The media were in an uproar about children being forcibly separated from their parents at the border. Trump said he… https://t.co/sWHlZFm0QI +06/30/2018,Economists,@BruceBartlett,@conncarroll @kausmickey Isn't that what they are supposed to be doing now? +06/30/2018,Economists,@BruceBartlett,@tribelaw Seems to me if you are going to reverse a clear precedent that is considered settled law (as for example… https://t.co/4bzYBta0mL +06/30/2018,Economists,@BruceBartlett,@tribelaw The only important case I am familiar with is Brown and I know that took quite a while to be teed up. +06/30/2018,Economists,@BruceBartlett,@lilhistorian @tribelaw Don't be so sure. The facts of the case and the nature of the particular law that applies a… https://t.co/JjKUEI0lnF +06/30/2018,Economists,@BruceBartlett,@tribelaw Serious question--Is there a case in the pipeline that would provide such an opportunity? Hard to see an… https://t.co/Icbme0SpRW +06/30/2018,Economists,@BruceBartlett,@conncarroll @kausmickey I had no idea that there is no law enforcement in this country except at the border. +06/30/2018,Economists,@BruceBartlett,I don't understand why members of the Party of Trump deny that they belong to the party of white supremacy. They sh… https://t.co/oV6hAJ5Ein +06/30/2018,Economists,@BruceBartlett,@danpincus No one listens to me. Democrats think they know all they need to know to win. +06/30/2018,Economists,@BruceBartlett,Where is the progressive campaign to stop Trump from nominating another right-wing extremist to SCOTUS? Once his de… https://t.co/TgfIhDW9uR +06/30/2018,Economists,@BruceBartlett,@Steinernomics Could also protect racist Republicans from charges of racism. +06/30/2018,Economists,@BruceBartlett,There hasn't been a recorded lynching since 1968. But go on ahead. It's not as if there are any other pressing raci… https://t.co/55WGdsMU8s +06/30/2018,Economists,@BruceBartlett,Will Alan Dershowitz return to normal once he realizes that Trump isn't going to name him to the Supreme Court? +06/30/2018,Economists,@BruceBartlett,Kushner is an idiot. I wonder how many millions of dollars his father had to donate to Harvard to get him in. https://t.co/I03bxyjLBt +06/30/2018,Economists,@BruceBartlett,RT @Amy_Siskind: Dinesh D’Souza quotes tweet with the hashtag burn the Jews. https://t.co/vLjuEWnSb5 +06/30/2018,Economists,@BruceBartlett,@R_Ephemeral Poor Democratic marketing is a big problem. +06/30/2018,Economists,@BruceBartlett,@joshchafetz https://t.co/lLRiwgwFT9 +06/30/2018,Economists,@BruceBartlett,"RT @ThePlumLineGS: ""Provocateur."" @AP is actively spreading this garbage under cover of euphemism, misleading readers and rewarding bad-fai…" +06/30/2018,Economists,@BruceBartlett,RT @BillKristol: I say this as someone who was on Fox for a decade and had no beef (though little interaction) with Bill Shine: It’s a disg… +06/30/2018,Economists,@BruceBartlett,"RT @JWGOP: Angela Merkel, the leader of the free world, is despised by both Putin & Trump. Their efforts to undermine her & cause her gover…" +06/30/2018,Economists,@BruceBartlett,RT @murphymike: Parkland rally was 50x more effective than today’s. Every time somebody screams about abolishing ICE it just pushes more wo… +06/30/2018,Economists,@BruceBartlett,@danfarina https://t.co/x1i7F1KiEl +06/30/2018,Economists,@BruceBartlett,@s3friedman I suspect that Roe will never be reversed in toto. The court will simply allow more and more restrictio… https://t.co/FUsAkXlJgm +06/30/2018,Economists,@BruceBartlett,"@spotics Way before that was ""Watermelon Man."" https://t.co/6p2030YZ0w" +06/30/2018,Economists,@BruceBartlett,There haven't always been nine Supreme Court justices. https://t.co/5SidhmXQDU https://t.co/8gFp3BI87V +06/30/2018,Economists,@BruceBartlett,But what is the cure? https://t.co/W1i7gYKTfY +06/30/2018,Economists,@BruceBartlett,@dubiousraves Not a chance. Both-siderism rules at the Post. Truth must be offset with an equal amount of lies. +06/30/2018,Economists,@BruceBartlett,"Two-thirds of Americans oppose the Republican position that Roe v. Wade should be overturned, which SCOTUS will alm… https://t.co/ETAtjYzArx" +06/30/2018,Economists,@BruceBartlett,Which Places Have the Highest Concentration of Billionaires? https://t.co/dBpT63ZWkK https://t.co/7II29ou4ib +06/30/2018,Economists,@BruceBartlett,How Antebellum Christians Justified Slavery https://t.co/a5z3blXF4q https://t.co/7dxjPZMQZZ +06/30/2018,Economists,@BruceBartlett,I'm sure that @davidfrum has stolen many writing jobs from me over the years. +06/30/2018,Economists,@BruceBartlett,Mexicans aren't stealing Americans jobs. Canadians are. https://t.co/LFOnqhdfur https://t.co/8xdizg7epP +06/30/2018,Economists,@BruceBartlett,@BobSachemano Read my book. https://t.co/9TNL7qdf75 +06/30/2018,Economists,@BruceBartlett,"No, you are battling rank stupidity. https://t.co/5sfoAd4cwI" +06/30/2018,Economists,@BruceBartlett,It's always coming down when Republicans want to cut taxes. It's always skyrocketing when they want to slash benefi… https://t.co/dPV4IYgw9j +06/30/2018,Economists,@BruceBartlett,"@DouglasDeCelle Those that can afford to leave, well-to-do whites, don't need to. Those that might benefit probably… https://t.co/fX5DrkW8ii" +06/30/2018,Economists,@BruceBartlett,Great news. One less crackpot on TV. https://t.co/0fqfHmDSbi +06/30/2018,Economists,@BruceBartlett,@FrankSowa1 @RBReich When non-economists criticize GDP they usually have no idea of what they are talking about. +06/30/2018,Economists,@BruceBartlett,"RT @JohnJHarwood: on tax-cut effects so far: “spending on equipment is lower than it was at end of last year, and overall business investme…" +06/29/2018,Economists,@BruceBartlett,"More: Don't you think the emoluments clause is obsolete? Don't you agree that I can pardon myself for any crimes, real or imaginary?" +06/29/2018,Economists,@BruceBartlett,Because there is no exception in the sacred second amendment for crazy people. https://t.co/MzInuenUCB +06/29/2018,Economists,@BruceBartlett,"@Bakari_Sellers Bankers don't understand the concept of ""sunk costs""." +06/29/2018,Economists,@BruceBartlett,Trump's first questions to SCOTUS nominee: How much money do you have? Do you own an apartment in Trump Tower? A me… https://t.co/Wsb6kvW6VV +06/29/2018,Economists,@BruceBartlett,@BSamCook @JeriLRyan It's not even an issue today. +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 Old news. Everyone in the media knows it so they assume everyone else does too. +06/29/2018,Economists,@BruceBartlett,@NicholsUprising Way ahead of you. https://t.co/lCOqs3YXsx +06/29/2018,Economists,@BruceBartlett,"Who wrote this for Trump? These are not his words. For one thing, the statement is grammatically correct. Second, w… https://t.co/P0dv24EttB" +06/29/2018,Economists,@BruceBartlett,@sherpaCato Because that is the essence of liberty. +06/29/2018,Economists,@BruceBartlett,@MideOFD @pat_margulies I saw an article recently where a cache of drugs decades old was discovered. Their effectiv… https://t.co/t2W2FiRlIM +06/29/2018,Economists,@BruceBartlett,"@Rightsof_Man Democrats are the class nerds, Republicans are the schoolyard bullies. Unfortunately, we live in a grade school world." +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 You mean just like marijuana and cocaine? Seems to me that the border is pretty porous where drugs are concerned. +06/29/2018,Economists,@BruceBartlett,"@pat_margulies Many shelf dates are bullshit. Lots of drugs still work long, long after their expiration date. The… https://t.co/FvyKFV1AJn" +06/29/2018,Economists,@BruceBartlett,Well-to-do white women may think they can always go to Canada or Mexico for an abortion after Trump's SCOTUS pick p… https://t.co/o6A1ffzK9p +06/29/2018,Economists,@BruceBartlett,"@KGraceHill Sadly, neither do any of his supporters." +06/29/2018,Economists,@BruceBartlett,Free advice--any pharmaceutical company manufacturing abortion pills should move their production offshore. Will so… https://t.co/K6gkpxg9kx +06/29/2018,Economists,@BruceBartlett,@LibraQueenLibby Too busy expending 100% of its resources to raise money to pay consultants to help it raise more money. +06/29/2018,Economists,@BruceBartlett,Trump has made more money from the presidency than any president in history. (Because every president before him kn… https://t.co/0moeL9jlTe +06/29/2018,Economists,@BruceBartlett,@Profepps So I should look into black market opportunities? +06/29/2018,Economists,@BruceBartlett,@AlNewman_ @SteveSchmidtSES @TheRickWilson @murphymike @stuartpstevens Democrats never ask my advice. I doubt they… https://t.co/SurGMp4Evd +06/29/2018,Economists,@BruceBartlett,"Assuming Trump nominates an anti-choice right-winger to SCOTUS and he/she votes to reverse Roe, would buying the st… https://t.co/x54MqnYJXs" +06/29/2018,Economists,@BruceBartlett,"Worth remembering that real growth has little effect on revenues. Nominal growth is what matters, which means that… https://t.co/z8sx0ts2tI" +06/29/2018,Economists,@BruceBartlett,@thesnowman21 Depressing but well within the realm of possibility. +06/29/2018,Economists,@BruceBartlett,@XLProfessor @NickTimiraos @Fahrenthold Larry has a known history of forecasting that things he WANTS to happen WIL… https://t.co/6cMdAv3Fhw +06/29/2018,Economists,@BruceBartlett,I think progressive groups plan to wait until Trump names his SCOTUS pick in hopes he will nominate someone who is… https://t.co/uwIpLK5iHY +06/29/2018,Economists,@BruceBartlett,Where are the progressive and choice groups running ads warning Trump against nomination of an extremist justice wh… https://t.co/0FHdOpKtXU +06/29/2018,Economists,@BruceBartlett,Before the shooting it was serious? https://t.co/CtgjeqGAWk +06/29/2018,Economists,@BruceBartlett,@Noahpinion One virtue of single payer is the government using monopsony power to lower prices of inputs. Just subsiding raises costs. +06/29/2018,Economists,@BruceBartlett,How soon after Trump's next appointee to SCOTUS votes to reverse Roe does a healthy market in abortion pills become… https://t.co/IssBZOekCW +06/29/2018,Economists,@BruceBartlett,"@palmer_becky If I was Canada, I'd build a wall across our border." +06/29/2018,Economists,@BruceBartlett,When Republicans ban abortion I wonder if they will make an exception for women impregnated by black men? Or women… https://t.co/bvqlm6lZhr +06/29/2018,Economists,@BruceBartlett,@Noahpinion But swift boats (or whatever that was about). +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 Small population states. The bulk of the population will have relatively easy access. +06/29/2018,Economists,@BruceBartlett,@MassivRuss They can just amend the Mann Act. +06/29/2018,Economists,@BruceBartlett,"If worse comes to worse, there are always foreign countries. I anticipate many abortion clinics will open just acro… https://t.co/TR6lklDw3L" +06/29/2018,Economists,@BruceBartlett,"Needless to say, conservatives who worship federalism will heartily endorse a national law against abortion. Screw states rights." +06/29/2018,Economists,@BruceBartlett,Best case scenario--the Trump court simply reverses Roe and the issue returns to the states. Some will allow aborti… https://t.co/XmdiVJKRkf +06/29/2018,Economists,@BruceBartlett,"After Trump's SCOTUS pick votes with the other four Republicans to ban abortion, the physician's office that serves… https://t.co/IEJRoJ30tL" +06/29/2018,Economists,@BruceBartlett,@WaltWeberJr Because civility. +06/29/2018,Economists,@BruceBartlett,@NickTimiraos okay +06/29/2018,Economists,@BruceBartlett,"RT @RogueSNRadvisor: So to recap: Healthy, lifetime appointee Justice Kennedy randomly steps down days before stunning NYT report linking h…" +06/29/2018,Economists,@BruceBartlett,RT @shannonrwatts: Senator who has taken more than $3 million from the @NRA is upset a gun violence victim used the word “fuck” after she w… +06/29/2018,Economists,@BruceBartlett,@NickTimiraos Why can't you bring yourself to say Larry is just lying? Do you think he is confused or too unsophist… https://t.co/pDTCEu5gzO +06/29/2018,Economists,@BruceBartlett,"Prediction--Trump, McConnell & Trump's SCOTUS pick will all lie to Collins & Murkowski about Roe as settled law--an… https://t.co/UQLbF5o13W" +06/29/2018,Economists,@BruceBartlett,@moorehn I am not giving up my air conditioning. Period. +06/29/2018,Economists,@BruceBartlett,"Arresting & removing the children of families requesting asylum in the US, not attempting to cross the border illeg… https://t.co/AeaOUvlKyb" +06/29/2018,Economists,@BruceBartlett,Republicans will never completely abolish abortion. It will always be available for wealthy white women. +06/29/2018,Economists,@BruceBartlett,"RT @TPM: Marshall: ""Justice Kennedy’s son Justin was the global head of real estate capital markets at Deutsche Bank and a key lifeline of…" +06/29/2018,Economists,@BruceBartlett,@horqua @ShaunKing @DLoesch You are a nicer person than I am. I block them permanently. +06/29/2018,Economists,@BruceBartlett,@ChuckOlson5 At least Larry is good at it. Steve Moore does the same thing but can't hide the fact that he is a com… https://t.co/1V2EEdGBN3 +06/29/2018,Economists,@BruceBartlett,@ChuckOlson5 Larry has a legacy? His whole professional life has been about telling rich and powerful people exactl… https://t.co/PZAwkLeTi7 +06/29/2018,Economists,@BruceBartlett,"""thoughts & prayers"" https://t.co/yJkxhPzdSg" +06/29/2018,Economists,@BruceBartlett,"RT @ShaunKing: 1. Let's be clear here. + +The NRA's @DLoesch has absolutely called for journalists to be beaten to death. + +She denies it, b…" +06/29/2018,Economists,@BruceBartlett,"@ChuckOlson5 Larry must lie to keep his job, learned from Trump that no one really cares." +06/29/2018,Economists,@BruceBartlett,"@MikeDonnellyJr @KlasfeldReports They don't have the resources to dig for stories any more, must wait for handouts… https://t.co/cx7PBXj1GB" +06/29/2018,Economists,@BruceBartlett,They will just as soon as they have the 5th vote to repeal Roe confirmed on SCOTUS and one more big tax cut for the… https://t.co/sbwkOCS47r +06/29/2018,Economists,@BruceBartlett,Larry Kudlow wants the Treasury to index capital gains by regulation. It absolutely does not have the authority to… https://t.co/klK0zcUUG1 +06/29/2018,Economists,@BruceBartlett,RT @SherylNYT: Trump strategically stocked courts with Kennedy clerks. Also had a business relationship with Kennedy's son. Fascinating @ad… +06/29/2018,Economists,@BruceBartlett,@tinaissa @SenateMajLdr @BarackObama 10 percent of Obama voters voted for Trump. I guess they forgot or just didn't… https://t.co/9AUQd2jp9r +06/29/2018,Economists,@BruceBartlett,"@danfarina Read about the fall of the Roman Republic and, later, the fall of the Roman Empire. Sobering. I think we… https://t.co/KY2FLLTOxg" +06/29/2018,Economists,@BruceBartlett,@danpincus @ronny_corral @cliffschecter @cmerlin He can do anything. The Senate is not a democracy. +06/29/2018,Economists,@BruceBartlett,@lcby I had no idea Moveon was still in business. Haven't heard word one about it since 2008. +06/29/2018,Economists,@BruceBartlett,RT @a35362: Trump's IRS nominee didn't disclose properties were at Trump-branded hotel https://t.co/fG4XEdPiIz via @politico +06/29/2018,Economists,@BruceBartlett,"It's not creeping, it's galloping. https://t.co/bJDLXIf4SV" +06/29/2018,Economists,@BruceBartlett,"RT @frankthorp: Capital Gazette staff writer on CNN just now; “Thanks for your prayers, but I couldn’t give a f—k about them if there’s not…" +06/29/2018,Economists,@BruceBartlett,"RT @CharlesPPierce: ""I told the president that he has a chance to unite the country if he magically turned into Dwight Eisenhower."" https:/…" +06/29/2018,Economists,@BruceBartlett,"@cmerlin The truth is more mundane--TV requires images. If they don't have any, there's nothing to report. And news… https://t.co/AAo4RWlmDJ" +06/29/2018,Economists,@BruceBartlett,@marylougeorge2 @RepublicanSwine This country has never been a democracy. The Electoral College is proof of that. +06/29/2018,Economists,@BruceBartlett,@PhilBl55 I don't know how to have an impact. But I do know that the whole point of a demonstration is to get atten… https://t.co/5lUiUeGquU +06/29/2018,Economists,@BruceBartlett,"@PhilBl55 I've lost track of the number of big Washington demonstrations that got no coverage, had zero impact. My… https://t.co/CxFRT688Iv" +06/29/2018,Economists,@BruceBartlett,"@cmerlin Fox is not a news organization, it is a propaganda organization more akin to an advertising or PR firm. It… https://t.co/yi5tgrNg21" +06/29/2018,Economists,@BruceBartlett,@cmerlin Reporters think that if they know all the news there is to know on a topic then everyone else does too. Un… https://t.co/heEnliuGsl +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch https://t.co/04gHy7qOTi +06/29/2018,Economists,@BruceBartlett,@marcahertz George H.W. Bush was destroyed by his own party for having the courage of his convictions to raise taxe… https://t.co/BVvhRHckAz +06/29/2018,Economists,@BruceBartlett,@Jeff424V Has been since 1994. +06/29/2018,Economists,@BruceBartlett,@realworldrj It also makes the court's liberals look far more left-wing than they really are. +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch Louise Mensch is a crackpot. Ignore her. A female Alex Jones. +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch I expect Mueller's report the day after the election in 2020. +06/29/2018,Economists,@BruceBartlett,I am old enough to remember when conservatives railed against the unelected Supreme Court making law and subverting… https://t.co/0w6ywl5DPH +06/29/2018,Economists,@BruceBartlett,Link: https://t.co/aETS0ATMBE +06/29/2018,Economists,@BruceBartlett,"With Anthony Kennedy gone from SCOTUS, the Washington Post has decide that right-wing John Roberts is the court's n… https://t.co/oaaVfa9EQg" +06/29/2018,Economists,@BruceBartlett,@paogle I could have made the same comment yesterday when the media was still obsessing about Sarah Sanders and her restaurant problems. +06/29/2018,Economists,@BruceBartlett,"RT @crooksandliars: Here you go -- the full Twitter stream of the alleged shooter in PDF format, since I fully expect Twitter to pull this…" +06/29/2018,Economists,@BruceBartlett,I didn't mean to imply that nothing is happening. But my Twitter feed is heavy on elite DC journalists. Children in… https://t.co/pN8TaNhDvh +06/28/2018,Economists,@BruceBartlett,"I'm not saying there are no tweets, just that none have come to my attention, which means there aren't very many of… https://t.co/m0yycfF9cb" +07/02/2018,Economists,@mileskimball,@BrigitteMadrian @bopinion I wonder if Mormons get into retirement saving research more because Mormonism has many… https://t.co/PM8iQMKzd9 +07/02/2018,Economists,@mileskimball,"@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 @anatadmati To make it work, you have to put all existing MMF's unde… https://t.co/FeQ4XkZY03" +07/02/2018,Economists,@mileskimball,@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 @anatadmati I think it could be credible if the government was very… https://t.co/m6KrEI5Qra +07/02/2018,Economists,@mileskimball,@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 @anatadmati Maybe there is a way to make a virtue of the whack-a-mol… https://t.co/nc4SA8fCpZ +07/02/2018,Economists,@mileskimball,@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 @anatadmati It is a subgame perfection problem. In order for it to b… https://t.co/caUUCbx6TN +07/02/2018,Economists,@mileskimball,@BrigitteMadrian @bopinion Congratulations on your appointment as Dean of the Marriott School! +07/02/2018,Economists,@mileskimball,"RT @BrigitteMadrian: Thank you @MilesKimball +Nudging people into retirement plans has some downside, but @MilesKimball finds way more upsid…" +07/02/2018,Economists,@mileskimball,"RT @mileskimball: Todays' post: ""In Praise of Avocados"" + +https://t.co/avVrmUXtHU" +07/02/2018,Economists,@mileskimball,"One of my favorites of my posts is ""The Unavoidability of Faith"" + +https://t.co/7PFFOaXlae" +07/02/2018,Economists,@mileskimball,@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 @anatadmati I think 30% equity is enough. We probably don't need 100% for safety. +07/02/2018,Economists,@mileskimball,"Todays' post: ""In Praise of Avocados"" + +https://t.co/avVrmUXtHU" +07/02/2018,Economists,@mileskimball,@FriedrichHayek @GeorgeSelgin @lawrencehwhite1 @anatadmati I like the way John Cochrane says it: so high the exact… https://t.co/rP7gELtW7f +07/02/2018,Economists,@mileskimball,@jreileyclark Cool! +07/02/2018,Economists,@mileskimball,@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 I'd prefer to have a capital requirement of 30% as @anatadmati recom… https://t.co/aS5vaaPtGq +07/02/2018,Economists,@mileskimball,RT @bopinion: There's a backlash against nudging people into retirement-savings plans. Fight it! says @MilesKimball https://t.co/OsSm0FZhoV… +07/01/2018,Economists,@mileskimball,@jreileyclark Tell me about well logging. +07/01/2018,Economists,@mileskimball,"RT @rexjung: Genome-wide association meta-analysis in 269,867 individuals identifies new genetic and functional links to intelligence: http…" +07/01/2018,Economists,@mileskimball,"RT @sapinker: One explanation for why people deny progress: My colleagues Dan Gilbert, David Levari et al. suggest that as problems get sol…" +07/01/2018,Economists,@mileskimball,RT @primalpoly: The @sentientist calls this 'devotion face' -- an under-studied facial expression that seems to be highly rewarding to mate… +07/01/2018,Economists,@mileskimball,@1954swilliamson Only if needed to get a justice confirmed. +07/01/2018,Economists,@mileskimball,@jdavidsonlawyer Having all libertarian SCOTUS justices could be a big problem. Adding 1 could be good. +07/01/2018,Economists,@mileskimball,"@bgzimmer I have enjoyed your column greatly! + +While I am an economist (and to a bit of an economics journalist), I… https://t.co/3pqfwVBbio" +07/01/2018,Economists,@mileskimball,"RT @bgzimmer: @mileskimball Sporting usage of ""goal"" did cross over into metaphorical meanings, but not just from ball sports -- the word w…" +07/01/2018,Economists,@mileskimball,@bgzimmer That makes sense! +07/01/2018,Economists,@mileskimball,RT @barspittercask: Meteorological hot take of the day https://t.co/J5VbSKG5Sx +07/01/2018,Economists,@mileskimball,"Book Review: Emily Bobrow on “The Darker the Night, the Brighter the Stars” by Paul Broks + +On life, death and the m… https://t.co/GVFwyMLTRP" +07/01/2018,Economists,@mileskimball,The science of thunder is more interesting than the science of lightning. https://t.co/Cn7BtBHfQM +07/01/2018,Economists,@mileskimball,"From a Roman emperor to a struggling British novelist, the many careers that blossomed after 50 https://t.co/mQ0xsBgQvf" +07/01/2018,Economists,@mileskimball,"Courts should be skeptical of nondisclosure agreements and should often invalidate them. Typically, the public inte… https://t.co/kHVwzjTqIB" +07/01/2018,Economists,@mileskimball,Science has informed promising efforts to address the beepocalypse. https://t.co/kpjDZI3qbX +07/01/2018,Economists,@mileskimball,It looks like the other familiar meanings of the word “goal” derive from its meaning in sports. The etymology “limi… https://t.co/8qyoZeaqwG +07/01/2018,Economists,@mileskimball,A fascinating teaser for Helen Thompson’s new book “Unthinkable: An Extraordinary Journey Through the Workd’s Stran… https://t.co/X9sAAWBkB7 +07/01/2018,Economists,@mileskimball,"Fracking is a story of technological change that should be told in all Principles of Macro classes. + +The engineer w… https://t.co/7m32LePJ3j" +07/01/2018,Economists,@mileskimball,@FriedrichHayek I don't think of financial stability as a job for monetary policy. Very high capital requirements a… https://t.co/OIT2LUNT3A +07/01/2018,Economists,@mileskimball,"@FriedrichHayek Do you have a link for ""productivity norm""?" +07/01/2018,Economists,@mileskimball,"@jodiecongirl I think more than slightly. After all, the staff of the Fed and many members of the FMOC are economis… https://t.co/EVCRQOVqHG" +07/01/2018,Economists,@mileskimball,"@joesmith323 @jodiecongirl Yes, I think so. Also, I think that is appropriate. Tariffs reduce the capacity of the e… https://t.co/cQqURc37fF" +07/01/2018,Economists,@mileskimball,"On this, don't miss my column + +""The Coming Transformation of Education: Degrees Won’t Matter Anymore, Skills Will"" + +https://t.co/gV788X1Vd3" +07/01/2018,Economists,@mileskimball,"“Because of a growing difference between wages for different kinds of jobs, 30% of those with an associate degree n… https://t.co/IVTjxwDilt" +07/01/2018,Economists,@mileskimball,"Anthony Kennedy was the First Amendment’s undisputed champion, writes Floyd Abrams https://t.co/ZkwwVrw6uk" +07/01/2018,Economists,@mileskimball,"In America, the premise that each person is equal generally outweighs the desire to pull rank, writes Alexandra Hud… https://t.co/C0fD1VoSzz" +07/01/2018,Economists,@mileskimball,Puerto Rico is one of the few places in the US without “at-will” employment. With that and a national minimum wage… https://t.co/9IsfjwWpGw +07/01/2018,Economists,@mileskimball,Indexing capital gains for inflation in tax computations may be within the authority of Treasury without new legisl… https://t.co/lvV0zU4cVl +07/01/2018,Economists,@mileskimball,Survey of 54 economists suggests the Fed will tolerate “core PCE inflation as high as 2.5% before raising rates mor… https://t.co/ivDEwNnkG0 +07/01/2018,Economists,@mileskimball,Trump should deal with people’s fears about Roe v. Wade by nominating a libertarian justice. https://t.co/rwG9JUkSLg +07/01/2018,Economists,@mileskimball,@FriedrichHayek I really wonder what Hayek would have thought about monetary policy now if he had lived. The major… https://t.co/xXJC82qPMp +07/01/2018,Economists,@mileskimball,"In my class, I use dominos to teach about the importance of high capital requirements. + +""On Teaching and Learning… https://t.co/gr4lLLyohh" +07/01/2018,Economists,@mileskimball,RT @BeckyQuick: The butterfly effect 🦋 https://t.co/bZdLrzZbgq +07/01/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +07/01/2018,Economists,@mileskimball,RT @bkavoussi: .⁦@mileskimball⁩ notes that a higher savings rate would reduce the trade deficit and make more funds available for research… +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: This is all very relevant to Tyrone’s thoughts on polarization. + +https://t.co/3cVLBn5hHN" +07/01/2018,Economists,@mileskimball,"RT @leah_boustan: All migration waves that I have seen data for have an inverted-U shape, slowly building as networks form, and then trendi…" +07/01/2018,Economists,@mileskimball,"RT @JonHaidt: I’m late to this great essay by @kittypurrzog, on Stuart Reges essay on gender diffs in computer sci. I just want to highligh…" +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: Actual policymaking is not zero-sum so ideological commitments are amenable to win-win compromises, but electoral politic…" +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: The mass public is highly polarized around *partisanship* rather than ideology, which explains both why compromise is har…" +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: “In stratified tests, only the most knowledgeable 20-30% of citizens carry substantive, coherent, stable, and potent ideo…" +07/01/2018,Economists,@mileskimball,"RT @ChrisPolPsych: Want to re-up this post of work from @jayvanbavel, to reiterate the work’s importance. Two nice contributions here: (1/x…" +07/01/2018,Economists,@mileskimball,@jdavidsonlawyer I don't understand what you are saying. +07/01/2018,Economists,@mileskimball,@tylercowen Thanks! +07/01/2018,Economists,@mileskimball,"@de1ong On Germany reflating (from 2013): + +https://t.co/YoyJwl4hVF" +07/01/2018,Economists,@mileskimball,@tylercowen What is BA? +07/01/2018,Economists,@mileskimball,RT @bopinion: Don’t expect a Chinese baby boom https://t.co/lRCnmtzXRk https://t.co/1tojAhqf4k +07/01/2018,Economists,@mileskimball,@MFSPOOK @stiglitzian Wow! Do you have a link to Joe's support of the euro? +07/01/2018,Economists,@mileskimball,Joe Stiglitz @stiglitzian has the same recommendation I have about the euro: short of moving toward a banking and f… https://t.co/eD88aGJzkL +07/01/2018,Economists,@mileskimball,"Today's post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +06/30/2018,Economists,@mileskimball,RT @dbergstresser: @MattBruenig @matthewstoller @MattHammington @davidimarcus The intellectual history of the un-mainstreaming of Henry Geo… +06/30/2018,Economists,@mileskimball,"@sjdyorke You might want to browse my blog archive for things you find interesting for the Property Chronicle: + +https://t.co/Y2Vhxgza8Y" +06/30/2018,Economists,@mileskimball,@sjdyorke I'm flattered! I don't have time to do an article specifically for the Property Chronicle each month. How… https://t.co/izO88rSGaK +06/30/2018,Economists,@mileskimball,"New post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +06/30/2018,Economists,@mileskimball,"RT @RoamtheDomes: When people save more, the whole economy benefits. That's why #WorkandSave matters https://t.co/iYNYIjtGuw via @bopinion" +06/30/2018,Economists,@mileskimball,"Don't miss Thursday's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +https://t.co/vgoC99mdhy" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: My post ""Helicopter Drops of Money Are Not the Answer"" collects links about my National Lines of Credit idea. + +https://t…" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Katherine Schafler—The 4 Questions Everyone Asks Constantly"" + +Do you see me? +Do you care that I’m here? +A…" +06/30/2018,Economists,@mileskimball,"On retirement planning, I got an add for Hanson McClain's online Learning Library. From a cursory inspection, it do… https://t.co/hKky9qj9ir" +06/30/2018,Economists,@mileskimball,@jedgarnaut @Noahpinion Thanks! +06/30/2018,Economists,@mileskimball,"My post ""Helicopter Drops of Money Are Not the Answer"" collects links about my National Lines of Credit idea. + +https://t.co/oipaTPU0T0" +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion I'm thinking about it more the other way around. A higher capital stock lowers the long-r… https://t.co/EkHxh4TLaR +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion One nice way to effectively require extra saving is to remove the annual cap on social se… https://t.co/N7iJeOwxcI +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion Indeed, raising the capital/labor ratio and lowering LR rates is such an important way to… https://t.co/pwg67E1dUo" +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion It is a big redesign of the economy to accommodate a high capital/labor ratio, low intere… https://t.co/3YEnc4fqxm" +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion One thing that my editor took out was my invocation of Piketty. If we can get the interes… https://t.co/DD3VgErEI3 +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion That is why I specify ""with good monetary policy."" I also didn't have space enough to say… https://t.co/m7RUs0cklL" +06/30/2018,Economists,@mileskimball,"Today's link: + +""Katherine Schafler—The 4 Questions Everyone Asks Constantly"" + +Do you see me? +Do you care that I’m h… https://t.co/va3kM45yHY" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: I added before and after pictures to ""A Barycentric Autobiography"": + +https://t.co/GHaP2tH2bA https://t.co/bRicYNC7SR" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Maria Popova on the Virtue of Being Willing to Look Foolish"" + +@brainpicker + +https://t.co/cCkQqc33tX" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Martin A. Schwartz: The Willingness to Feel Stupid Is the Key to Scientific Progress"" + +https://t.co/pjshAH93iz" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""On Perfectionism"" + +https://t.co/L45eiRO8gB" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Which Is Worse for You: Sugar or Fat?"" + +https://t.co/NTwHf2F1WD" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Don't miss ""The Problem with Processed Food"" + +https://t.co/7jbVMt1I5J" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""On Teaching and Learning Macroeconomics"" + +https://t.co/KhlJlShPpg" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Kristin Johnson on How Depressing It Is to Be a Lawyer"" + +https://t.co/Yxc5tujm2C" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits when p…" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: I used yesterday's post as an opportunity to line up links to other posts about math learning as well. Take a look: + +""Gab…" +06/30/2018,Economists,@mileskimball,"Imaginary inflation is a derangement of many highly ideological commentators. + +Joseph C. Sternberg reviews “Unelec… https://t.co/68ADUezoMu" +06/30/2018,Economists,@mileskimball,Joseph Sternberg is just making stuff up when he says “wage earners see their salaries endangered by inflation.” Wa… https://t.co/DRR6lTazkS +06/29/2018,Economists,@mileskimball,"@robbpreston @Noahpinion As it is now, the low income folks get almost none of the benefit of the incentive and the… https://t.co/Nj2eClad3w" +06/29/2018,Economists,@mileskimball,"RT @RetiremntWisdom: Nudging people into retirement plans has some downside, but @MilesKimball finds way more upside https://t.co/UOhzVQ0iB…" +06/29/2018,Economists,@mileskimball,@robbpreston @Noahpinion I am holding fixed the existence of 401(k)s. Relative to 401(k)s without automatic enrollm… https://t.co/L28bXdVPgZ +06/29/2018,Economists,@mileskimball,"@browntom1234 It would be shocking if it wasn't, given the business cycle improvement." +06/29/2018,Economists,@mileskimball,@RobertFrickNFCU Thanks! +06/29/2018,Economists,@mileskimball,RT @JPSargeant78: Nudge nudge ... ⁦@mileskimball⁩ first Bloomberg piece on saving for retirement in the US. (Congrats!) https://t.co/1nldr… +06/29/2018,Economists,@mileskimball,@JPSargeant78 Thanks! +06/29/2018,Economists,@mileskimball,"To me, an obvious middle ground: Everyone should have privacy for donations to an organization or set of similar or… https://t.co/pJw2dpNRsC" +06/29/2018,Economists,@mileskimball,Kudos to Boston Fed Chief Eric Rosengren for calling for an increase in the countercyclical capital buffer. It does… https://t.co/ICc5i86U4Z +06/29/2018,Economists,@mileskimball,The Supreme Court shouldn’t allow obstructions to legal abortion procedures. That effectively makes two different a… https://t.co/f3DWafjobi +06/29/2018,Economists,@mileskimball,@RobertFrickNFCU I hope you could tell from the article that I agree with you. +06/29/2018,Economists,@mileskimball,@RedwoodGirl @AlisonB916 @Noahpinion Note that I said people with low incomes don't need to save for retirement. Bu… https://t.co/LCYccHbicW +06/29/2018,Economists,@mileskimball,@darshnadc @Noahpinion @gabster0191 That is wonderful to hear. Kudos for your courage! +06/29/2018,Economists,@mileskimball,@browntom1234 The business cycle has a big effect on the deficit. Better monetary policy can keep all of our recess… https://t.co/X5OiXJ1jvn +06/29/2018,Economists,@mileskimball,I used yesterday's post as an opportunity to line up links to other posts about math learning as well. Take a look:… https://t.co/K0SFgKP0W2 +06/29/2018,Economists,@mileskimball,@KeabetsweKB @Noahpinion Thanks! +06/29/2018,Economists,@mileskimball,@Noahpinion @tylercowen I don't know if we can find anything I disagree about with Tyler! If you and Tyler disagree… https://t.co/UHWxF6Ay5f +06/29/2018,Economists,@mileskimball,@barspittercask @Noahpinion Thanks! +06/29/2018,Economists,@mileskimball,"@Noahpinion Thanks, Noah!" +06/29/2018,Economists,@mileskimball,RT @MikeKlimes_MM: Interesting article: Fight the Backlash Against Retirement Planning Nudge - Bloomberg https://t.co/1ZiQZ0mfxi +06/29/2018,Economists,@mileskimball,@DrMcSwag How does this my Bloomberg piece on retirement saving relate to Kennedy? +06/29/2018,Economists,@mileskimball,"My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits… https://t.co/0048ODUr69" +06/29/2018,Economists,@mileskimball,"RT @bopinion: Nudging people into retirement plans has some downside, but @MilesKimball finds way more upside https://t.co/X6WFLSG91T https…" +06/29/2018,Economists,@mileskimball,"Was the Reagan administration proto-YIMBY? + +https://t.co/ptYPjwmDIi" +06/29/2018,Economists,@mileskimball,@jdavidsonlawyer That is a definite antitrust problem. +06/29/2018,Economists,@mileskimball,"Today's link: + +""Kristin Johnson on How Depressing It Is to Be a Lawyer"" + +https://t.co/Yxc5tujm2C" +06/29/2018,Economists,@mileskimball,@dacaagedout Thanks! +06/29/2018,Economists,@mileskimball,"@ryanjyoder Are you related to Seth Yoder? + +https://t.co/xuLzUi7Xrl" +06/29/2018,Economists,@mileskimball,"RT @gabster0191: The lovely @mileskimball featured my post on failure on his blog. +All part of my grand plan to have my photo pop up every…" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: Protective Tariffs are as Much Applications of Force as are Blockading Squadrons"" + +https://t.co/ggA5yn8NiE" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: “… it is true, as Macaulay said, that if large pecuniary interests were concerned in denying the attraction of gravitatio…" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@Noahpinion +https://t.co/vgoC99mdhy" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: Tuesday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: For those of us in the middle on abortion, the shift in the Supreme Court isn't likely to make that dramatic a difference…" +06/28/2018,Economists,@mileskimball,"For those of us in the middle on abortion, the shift in the Supreme Court isn't likely to make that dramatic a diff… https://t.co/pSj6QdaZ8y" +06/28/2018,Economists,@mileskimball,"There is still the possibility that after tenure, people pursue ideas that are extremely valuable, but won't be app… https://t.co/qo3QtXJ8G2" +06/28/2018,Economists,@mileskimball,@FriedrichHayek @iowahawkblog @ChrisNowinski1 @kimberlyarchie @steve_hanke @JoHenrich @GarettJones @RandyEBarnett I'm honored! +06/28/2018,Economists,@mileskimball,"Tuesday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/28/2018,Economists,@mileskimball,Both Thomas Lee (mentioned in the article as a possible SCOTUS pick) and his father Rex Lee were at one time collea… https://t.co/q85LvAbvFO +06/28/2018,Economists,@mileskimball,"@jodiecongirl Good point. Besides possibly lower effort after tenure, luck in getting the publications that give te… https://t.co/vPMzwZX3Ea" +06/28/2018,Economists,@mileskimball,"""we study whether the granting of tenure leads faculty to pursue riskier ideas. ... both the number of publications… https://t.co/G9GSR62qAH" +06/28/2018,Economists,@mileskimball,"Today's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@Noahpinion +https://t.co/vgoC99mdhy" +06/28/2018,Economists,@mileskimball,@gabster0191 @Noahpinion My pleasure! +06/28/2018,Economists,@mileskimball,"New post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@gabster0191 +https://t.co/vgoC99mdhy" +06/28/2018,Economists,@mileskimball,@newcurrency Thanks! +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Transformation of Songwriting: From Melody-and-Lyrics to Track-and-Hook"" + +https://t.co/dF1ekmfwab" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George on the Value of Transparent Theory"" + +https://t.co/wFYZqZzW3I" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George Eloquently Makes the Case that Correlation Is Not Causation"" + +https://t.co/Gt6rG7dspQ" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: That Those Who Advocate Any Extension of Freedom Choose to Go No Further than Suits Their Own Special Purp…" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: Why the Citizenry Needs to Understand Economics"" + +https://t.co/ddjTwAecT7" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Keith Urban on Being Unstoppable"" + +https://t.co/xLiKqcbzUV" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Great Sacrifice"" + +https://t.co/bFUJn3cHNk" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Spell of Mathematics"" + +https://t.co/oUmXlcqH5F" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: Thursday's post: + +""Alexander Napolitan on GMOs"" + +https://t.co/Sx1YMM0StX" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""How Sugar, Too Much Protein, Inflammation and Injury Could Drive Epigenetic Cellular Evolution Toward Cancer"" + +https://t…" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""From Each Individual as Judge, Jury and Executioner to Each Nation as Judge, Jury and Executioner"" + +https://t.co/Pk70toR…" +06/27/2018,Economists,@mileskimball,"@dcodea That is not how I took it. I am probably interpreting according to my own beliefs, but I think there is uti… https://t.co/a7UCnSCuFV" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""The Central Bank is Not Just Navigating through a Fog; It is Steering with a Delay"" + +https://t.co/tihbEtPxhv" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""How the Romans Made a Large Territory 'Rome'"" + +https://t.co/yGPIvTs5Dv" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""Kevin Grier and Norman Maynard on the Economic Consequences of Hugo Chavez"" + +https://t.co/4YFjEucRKk" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""Critical Reading: Apprentice Level"" + +https://t.co/Vlg8g2KbDc" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: Yesterday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +2. Examini…" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +1. After C…" +06/27/2018,Economists,@mileskimball,RT @mileskimball: I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my more peop… +06/27/2018,Economists,@mileskimball,RT @mileskimball: I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my more peop… +06/27/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Ken Rogoff: Robots Mean China's Large Population Is Not As Big an Advantage in Its Chances to Become Worl…" +06/27/2018,Economists,@mileskimball,"RT @igordigiovanni: ""China might lead the digital future if the US drops the ball, but it won’t become the dominant global power simply bec…" +06/27/2018,Economists,@mileskimball,"@dcodea It was a poorly chosen phrase. What he meant was ""regardless of easily measured outcomes.""" +06/27/2018,Economists,@mileskimball,@newcurrency But I am not aware of any other free country with Western values that does military affairs seriously… https://t.co/uBG7YrbXDD +06/27/2018,Economists,@mileskimball,"@newcurrency If US national saving were positive, then the US government is able to borrow from its own people. If… https://t.co/HQLQH5A2Wo" +06/27/2018,Economists,@mileskimball,The Supreme Court’s vote to bar public-employee contracts requiring workers to pay union dues will likely be felt f… https://t.co/a4o4rKoMzN +06/27/2018,Economists,@mileskimball,"RT @jlounsbury59: Thread: + +China and the world economy. + +Reinhart and Rogoff. + +Debt and growth. + +Good stuff. https://t.co/3Bk2Hl1ugb" +06/27/2018,Economists,@mileskimball,"Letting merchants express a preference by ""steering"" helps get customer and merchant to the Pareto frontier. That's… https://t.co/s8oDYvFBMQ" +06/27/2018,Economists,@mileskimball,The Wall Street Journal’s claim that contract provisions that prevent merchants from customers toward cards that gi… https://t.co/pzhlNFDwWz +06/27/2018,Economists,@mileskimball,"I think it is possible to raise the US saving rate. See + +""How Increasing Retirement Saving Could Give America More… https://t.co/J81KfxzxXT" +06/27/2018,Economists,@mileskimball,@newcurrency Thanks! +06/27/2018,Economists,@mileskimball,@newcurrency It doesn't have to be the US that becomes the superpower by the Ben Franklin strategy. It could be Aus… https://t.co/dwbKUVA5d5 +06/27/2018,Economists,@mileskimball,"By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +2. E… https://t.co/THSl3QWfvS" +06/27/2018,Economists,@mileskimball,"By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +1. A… https://t.co/j87sMWcl02" +06/27/2018,Economists,@mileskimball,"Yesterday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/27/2018,Economists,@mileskimball,"I agree with Bobby Jindal on this: Think of the loss rich parents would feel if, regardless of which house they cho… https://t.co/qCsRi481fz" +06/27/2018,Economists,@mileskimball,"“...letting parents pick their children’s schools is valuable in itself, irrespective of outcomes.” + +—Bobby Jindal https://t.co/NS0wyRCmNx" +06/27/2018,Economists,@mileskimball,The quality of research on sexual fantasies has improved. Men’s and women’s fantasies are less different than you m… https://t.co/EaeTdaclv3 +06/27/2018,Economists,@mileskimball,I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my mor… https://t.co/yBU7vPthaj +06/27/2018,Economists,@mileskimball,I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my mor… https://t.co/ZSdpW1wREW +06/27/2018,Economists,@mileskimball,"Today's link: + +""Ken Rogoff: Robots Mean China's Large Population Is Not As Big an Advantage in Its Chances to Becom… https://t.co/OdN7NmM2Pn" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Walker Wright on the Mormon Church's Relatively Enlightened Stance on Immigration"" + +https://t.co/9iEDJfJJ…" +06/26/2018,Economists,@mileskimball,RT @BruceBartlett: The origins of the Trump voter--The Political Legacy of American Slavery https://t.co/60P8OJFS8j https://t.co/25N5JtM6EM +06/26/2018,Economists,@mileskimball,@bluser12 Thanks! +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Hollywood should rush to buy the movie rights for this book. It sounds like the excellent movie “Lincoln,” but about the…" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post on diet and health is very practical: + +""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: The great monotheisms claim a great deal of both goodness and power for their gods. But at the possibility frontier, I be…" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Watching ""American Gods"" last night and listening to Kim Hill this morning makes me think the key theological question ev…" +06/26/2018,Economists,@mileskimball,"@ModeledBehavior 1 gram carbs for what I eat. Not nothing, but tolerable. + +The carbs are much higher when you make… https://t.co/PlzBUeGZz6" +06/26/2018,Economists,@mileskimball,"@msykuta Thanks! I confess I didn't. I see, the difference is that the existence of abortion alternatives is a smal… https://t.co/I8pNmZSkeQ" +06/26/2018,Economists,@mileskimball,Wife of ousted Malaysian premier accumulated a cache of diamonds once valued at $350 million https://t.co/yGEI1M5dUm +06/26/2018,Economists,@mileskimball,I think the Supreme Court made a mistake here. Requiring a pregnancy center to inform clients that rivals to one’s… https://t.co/Wd2tgbDoY9 +06/26/2018,Economists,@mileskimball,@ModeledBehavior Full fat dressing is healthy; probably at least as healthy as meat. But meat is tasty. +06/26/2018,Economists,@mileskimball,@vhankes Thanks! +06/26/2018,Economists,@mileskimball,The great monotheisms claim a great deal of both goodness and power for their gods. But at the possibility frontier… https://t.co/ouzxy7qdEH +06/26/2018,Economists,@mileskimball,"Watching ""American Gods"" last night and listening to Kim Hill this morning makes me think the key theological quest… https://t.co/36ibP7t9g8" +06/26/2018,Economists,@mileskimball,@ElContador19 Thanks! +06/26/2018,Economists,@mileskimball,@DivadRetnuh Also don't forget the nuts and the cheese. +06/26/2018,Economists,@mileskimball,@DivadRetnuh Pretty close. I also mentioned a few squares of chocolate and a glass of almond milk with probiotic an… https://t.co/rMRwwz9vtD +07/02/2018,Economists,@KingEconomist,RT @bcaresearch: Look forward to your comments in Toronto - providing #LoveIsland has concluded. https://t.co/9Yb1Zx51kN https://t.co/eYUYb… +07/02/2018,Economists,@KingEconomist,"My #LoveIsland guide to the world economy: positive sum games, winner takes all and races to the bottom: https://t.co/l5xga3wtmb" +07/02/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s ⁦@EveningStandard⁩: Tory loyalist backlash against Brexiteer threats of a coup & latest London knife attack + ⁦… +06/27/2018,Economists,@KingEconomist,@FarayaMishakit We're used to perennial failure. +06/27/2018,Economists,@KingEconomist,This was surely just an elaborate attempt to explain to the rest of the world the meaning of schadenfreude. +06/27/2018,Economists,@KingEconomist,"I love football pundits, part 2: https://t.co/IWMSLHDo4F" +06/25/2018,Economists,@KingEconomist,"@ArmandDAngour @peterfrankopan You say Florida, I say fedora." +06/24/2018,Economists,@KingEconomist,@DoopScoop Back of the net! +06/24/2018,Economists,@KingEconomist,@ArmandDAngour @peterfrankopan I did... +06/24/2018,Economists,@KingEconomist,I love football pundits. https://t.co/cJKaGXlvsk +06/24/2018,Economists,@KingEconomist,I'm saying nothing... https://t.co/F4IORIMKow +06/23/2018,Economists,@KingEconomist,It's spookily strange that the best example so far of Brexit-related capital flight is an aeroplane manufacturer. +06/23/2018,Economists,@KingEconomist,@JeremyWarnerUK I was really hoping you were going to tell me it was rotten to the core. +06/21/2018,Economists,@KingEconomist,@rbrharrison Very funny! Although not entirely surprising! +06/20/2018,Economists,@KingEconomist,"@asentance @nickmacpherson2 Someone's got to do it! I have an idea, but no more than that at this stage." +06/20/2018,Economists,@KingEconomist,"@asentance @nickmacpherson2 1. The rot began before Brexit. 2. The rot is not uniquely British. 3. In the US, the r… https://t.co/OR7qUrFB65" +06/20/2018,Economists,@KingEconomist,"@asentance Sadly, I think lower for longer might be a Sign ""o"" the Times." +06/20/2018,Economists,@KingEconomist,"@ErikFossing @martinwolf_ Probably not. But @martinwolf_ is right, I think, to point out Italy's economic fall from… https://t.co/c7yEZIUj5N" +06/20/2018,Economists,@KingEconomist,"@FerdiGiugliano @ErikFossing Not sure I can give a full reply on Twitter. For what it's worth, here's a piece I wr… https://t.co/a9yYidWvsC" +06/20/2018,Economists,@KingEconomist,"@asentance Of course, doves might suggest you perform Close to the Edge." +06/20/2018,Economists,@KingEconomist,@ErikFossing Fair enough! I was simply noting that the eurozone is not entirely fenceless even though it has a single currency. +06/20/2018,Economists,@KingEconomist,@FerdiGiugliano @ErikFossing I totally agree. I'm just not sure that market discipline can always override politics… https://t.co/wROrU8J4qT +06/20/2018,Economists,@KingEconomist,"@asentance Surely given your BoE concerns, you have to perform Yazz's 'The only way is up'?" +06/20/2018,Economists,@KingEconomist,"@FerdiGiugliano @ErikFossing I'm not disputing that. There's a danger, however, that the politics are too easily ig… https://t.co/greFbDlOt4" +06/20/2018,Economists,@KingEconomist,@asentance Life Sentance? +06/20/2018,Economists,@KingEconomist,@FerdiGiugliano @ErikFossing I'm not disputing that they've met for years. The issue is whether the new Italian gov… https://t.co/E4K5uYfpn7 +06/20/2018,Economists,@KingEconomist,"@ErikFossing Yes, I've seen. But I'm not sure that Germany and Italy can easily have a meeting of fiscal minds." +06/20/2018,Economists,@KingEconomist,"@ErikFossing If it's about no fences, the euro 'project' is incomplete. You need an absence of both fiscal and monetary fences." +06/19/2018,Economists,@KingEconomist,Unilaterally-imposed trade sanctions threatening to escalate into a full-blown trade war? Who'd have thought? We un… https://t.co/GWK9QGEVA7 +06/19/2018,Economists,@KingEconomist,@sas99 @bankofengland 😄 +06/19/2018,Economists,@KingEconomist,@asentance @bankofengland It'll have to be Smokey Robinson next time! +06/19/2018,Economists,@KingEconomist,@fentowski You could try this for starters...and there's plenty more in the bibliography: https://t.co/6uACyTDS2p +06/19/2018,Economists,@KingEconomist,"ICYMI, me on Marvin Gaye, the @bankofengland and just exactly what's going on....https://t.co/spHbyOJe8M" +06/18/2018,Economists,@KingEconomist,"@Busecon2012 You have to thank Dave Ramsden for that...he asked the question. However, I think I can claim credit for the connection!" +06/18/2018,Economists,@KingEconomist,@asentance What a great performance. Much missed. +06/18/2018,Economists,@KingEconomist,"@asentance Yes, I tend to agree...or are we simple unaware of what's going on now? Maybe we're just too old!" +06/18/2018,Economists,@KingEconomist,@asentance I could never hope to match your immense knowledge of all things 1970s! +06/18/2018,Economists,@KingEconomist,Economics Teacher definitely knows what's going on... https://t.co/gpBLiWnKNs +06/18/2018,Economists,@KingEconomist,"Marvin Gaye, the @bankofengland and what's going on with the UK economy. Warning: Brexit hasn't helped. Me in the… https://t.co/2tpGsxEpEH" +06/18/2018,Economists,@KingEconomist,"@t0nyyates In another universe, he'd be commenting on the piece I've written in today's @EveningStandard" +06/18/2018,Economists,@KingEconomist,A rather marvellous piece on Stalingrad by @peterfrankopan.... https://t.co/rY3mI5aXTH +06/18/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s ⁦@EveningStandard⁩: Meghan’s dad speaks out & England awaits the big game + new tax hikes to pay for NHS + ⁦@Ki… +06/17/2018,Economists,@KingEconomist,@RVO_Monica Danke! +06/17/2018,Economists,@KingEconomist,@PhilipJTaylor1 I'm not sure Swiss cheese is totally rancid. +06/17/2018,Economists,@KingEconomist,That Brazilian defence is just like Swiss cheese...full of holes. +06/17/2018,Economists,@KingEconomist,Just catching up on the day's events. That second half was the kind of Mexican wall I very much like. +06/15/2018,Economists,@KingEconomist,@wsj_douglasj @bankofengland That's nothing. We used to have a Chancellor of the Exchequer by the name of Flash Gordon. +06/14/2018,Economists,@KingEconomist,@georgemagnus1 @Telegraph You shouldn't believe everything you read in the papers! +06/14/2018,Economists,@KingEconomist,"@darioperkins For a moment, you had me worried" +06/14/2018,Economists,@KingEconomist,@georgemagnus1 @Telegraph What is your bet? That a Eurasian team will win the World Cup? +06/14/2018,Economists,@KingEconomist,RT @jandehn: HaHa! Telegraph should stick to lawn bowls https://t.co/j9l0RijdDt +06/14/2018,Economists,@KingEconomist,Here's the @Telegraph's excellent World Cup coverage in which we discover either (i) Sweden is not in Europe (ii) B… https://t.co/qwGE4i1fr9 +06/13/2018,Economists,@KingEconomist,"Should there be a 'Group of Death' at the 2026 World Cup, I assume the matches will be held in Canada. That way, th… https://t.co/IAk2thcvLD" +06/12/2018,Economists,@KingEconomist,@ChrisGiles_ Well done! I had assumed it was the former England spinner. +06/12/2018,Economists,@KingEconomist,"@martinwolf_ Very interesting, but I'd have liked to have seen more on the impact of technology on the labour marke… https://t.co/mDHCcH3T7R" +06/12/2018,Economists,@KingEconomist,"@GiselleG7 @BBCLBicker Yes, but at least they had sensible haircuts." +06/12/2018,Economists,@KingEconomist,"@asentance Whatever else you do, don't tell him, Pike." +06/12/2018,Economists,@KingEconomist,"@GiselleG7 @BBCLBicker Plenty of evidence of common cause: both committed to unusual hairstyles, both to baggy trou… https://t.co/psvcPzzRcy" +06/12/2018,Economists,@KingEconomist,"@asentance Yes, although I'm not sure he was hot on the legal foundations of commerce. Personally, I rather liked t… https://t.co/M7j4uo32b7" +06/12/2018,Economists,@KingEconomist,@asentance You spiv! +06/12/2018,Economists,@KingEconomist,@ChrisGiles_ Perhaps he's prepared to make an exception for the FT's international edition. +06/12/2018,Economists,@KingEconomist,RT @rbrtrmstrng: Peace begins with ill-fitting trousers https://t.co/AmGjWd6LNw +06/12/2018,Economists,@KingEconomist,@GiselleG7 I think they've all been on constructive journalism courses. +06/11/2018,Economists,@KingEconomist,"Looks like I might not have been sufficiently pessimistic about NATO's future. In Grave New World, I suggested the… https://t.co/Ai1ESvXeqt" +06/11/2018,Economists,@KingEconomist,@TomJLines Indeed! +06/11/2018,Economists,@KingEconomist,@TomJLines Paul Kennedy's Rise & Fall of the Great Powers is rather good on this sort of thing. Relative economic d… https://t.co/PfRJBQkzHE +06/11/2018,Economists,@KingEconomist,"@TomJLines By the 30s, the UK was already in steep relative decline. It's amazing to think the world's greatest sup… https://t.co/JUAPCvwrdE" +06/11/2018,Economists,@KingEconomist,"@Jacob_Atkinson1 You might, but it's waning." +06/10/2018,Economists,@KingEconomist,@TomJLines Are you suggesting Kindleberger was right or wrong? +06/10/2018,Economists,@KingEconomist,@D_Blanchflower Europe 'responds' with a trade war. That's an interesting take on causality. +06/10/2018,Economists,@KingEconomist,@CharlesPilton Not sure Canada quite fits your narrative here. +06/10/2018,Economists,@KingEconomist,"@CharlesPilton Er, no." +06/10/2018,Economists,@KingEconomist,"In Grave New World, I argued that the US no longer had the appetite, enthusiasm or economic strength to provide int… https://t.co/P1OtFimMH5" +06/09/2018,Economists,@KingEconomist,@TheEconomist @TheEconomist has a point... +06/08/2018,Economists,@KingEconomist,"@idriches @jandehn It depends on where you start from, obviously, but I'd have thought it was more the Wild East." +06/08/2018,Economists,@KingEconomist,"@jandehn Just checking....without the year, your bet was in danger of being infinitely open ended!" +06/08/2018,Economists,@KingEconomist,"@jandehn No, which year is the H2 referring to?" +06/08/2018,Economists,@KingEconomist,@jandehn Which year? +06/08/2018,Economists,@KingEconomist,"@jandehn Yes, although I offer a possible explanation here: https://t.co/sCt96SJuIT" +06/08/2018,Economists,@KingEconomist,"As I argued in Grave New World, it's increasingly all about Oceania, Eurasia and Eastasia. Big Brother wasn't the o… https://t.co/Yu29Ynp4TL" +06/07/2018,Economists,@KingEconomist,Shock news. A statistical analysis shows we don't know who will win the World Cup. https://t.co/oGfxN3kN3w +06/05/2018,Economists,@KingEconomist,An internal market? That's hard to swallow. +06/05/2018,Economists,@KingEconomist,"@julianHjessop If that's one of your favourite charts, I think you need to get out more..." +06/05/2018,Economists,@KingEconomist,@Busecon2012 That is a much bigger worry... +06/05/2018,Economists,@KingEconomist,"ICYMI, my piece on Italy's politics and how an awkward little problem is bubbling away for the Eurozone: https://t.co/fSvbbThyLP" +06/04/2018,Economists,@KingEconomist,"@DenisMacShane @robfox45 @john_hooper @rkuttnerwrites @williamkeegan @Davidma64854542 Yes, you're right. But my pie… https://t.co/6zZspMOleM" +06/04/2018,Economists,@KingEconomist,The slow demise of La Dolce Vita. My take on Italian politics and economics and why a potential clash between Italy… https://t.co/EIdfn6CL5p +06/04/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s @EveningStandard: Pellegrini robbed at gun point & Grenfell inquiry latest & Cabinet row over visas cap and Hea… +06/03/2018,Economists,@KingEconomist,"@Busecon2012 You might be right, but tariffs against EU & Canada don't fit your narrative very well....meanwhile, I… https://t.co/J5iR9Ka7zE" +06/03/2018,Economists,@KingEconomist,Trade wars...with a few words from me: https://t.co/BiKYDK30cn +06/01/2018,Economists,@KingEconomist,"Apparently, this much is true. https://t.co/xQwcQ0oZky" +05/31/2018,Economists,@KingEconomist,I have this weird dream. The US imposes tariffs. The UK suddenly discovers it is friendless - tradewise - on either… https://t.co/MOu7CiIO7r +05/31/2018,Economists,@KingEconomist,"RT @asentance: Great to see my good friend Jonny Haskel (@haskelecon) - a distinguished expert on productivity, innovation and intangible i…" +05/30/2018,Economists,@KingEconomist,"@ArmandDAngour Yes, yes! Oh, hang on, that doesn't work...." +05/30/2018,Economists,@KingEconomist,"@ArmandDAngour Yes, but do two negatives make a positive?" +05/30/2018,Economists,@KingEconomist,Does this count as fake news or fake fake news? I'm so confused. https://t.co/QgUBmAJLJP +05/30/2018,Economists,@KingEconomist,@B_Eichengreen The answer is 'yes'. Here's one I prepared earlier! https://t.co/3GtqORQLa5 +05/30/2018,Economists,@KingEconomist,@EdConwaySky My hair is permanently in a state of shock. +05/30/2018,Economists,@KingEconomist,@EdConwaySky @EU_Eurostat Shocking +05/30/2018,Economists,@KingEconomist,"@rbrharrison @darioperkins Remind me of when, precisely, Italy last had a decent macro context?" +05/28/2018,Economists,@KingEconomist,"@Baddiel brilliant at @hayfestival last night. Hilarious, moving...and oodles of ""Roger Whittaker""!!!!" +05/27/2018,Economists,@KingEconomist,"@georgemagnus1 George, I feel for you. I understand, however, that your goalkeeper may be heading to Preston NE." +05/26/2018,Economists,@KingEconomist,The speakers are either all very small or a long way away. https://t.co/p75dlKvlqB +05/26/2018,Economists,@KingEconomist,RT @25483clive: @KingEconomist at #HTLGI18 discusses the end of #globalisation and its risks to politics and the economy https://t.co/WDgml… +05/24/2018,Economists,@KingEconomist,@georgemagnus1 I think the answer you're looking for is 6. n=6. +05/20/2018,Economists,@KingEconomist,@RScubism I agree that a fixed currency creates pressure....and that's precisely why the euro is relevant....pre-eu… https://t.co/rTdworL52Z +05/20/2018,Economists,@KingEconomist,@RScubism So here are the figures broken down a little more...all showing Italian real per capita GDP relative to G… https://t.co/KwQJLJ6SG6 +05/19/2018,Economists,@KingEconomist,@georgemagnus1 A bit late at night now....but we're not Preston North End!!!!! +05/19/2018,Economists,@KingEconomist,@ArmandDAngour @jonnyjenda What are you talking about? I am totally clueless. +05/19/2018,Economists,@KingEconomist,@PhilipJTaylor1 At least Meghan's dress wasn't so creased. +05/19/2018,Economists,@KingEconomist,"@PhilipJTaylor1 Presumably, as a result, you missed the wedding. It was at 12.00....but you wouldn't have known when that was." +05/19/2018,Economists,@KingEconomist,@georgemagnus1 I take that imitation as a sincere form of flattery. +05/19/2018,Economists,@KingEconomist,@peterfrankopan And Giscard d'Estaing's election as French President. Are we both reading the Times? +05/19/2018,Economists,@KingEconomist,"@peterfrankopan Apparently it's also the day on which Anne Boleyn was beheaded. That, and the FA Cup Final." +05/19/2018,Economists,@KingEconomist,I'm in Hong Kong. Anything happening back home today? +05/18/2018,Economists,@KingEconomist,Great piece @peterfrankopan https://t.co/uLrl3mAHa7 +05/18/2018,Economists,@KingEconomist,"@JSiegel88 @BlakeFox7 I do, but did you know that Italy also outperformed France over that period too?" +05/18/2018,Economists,@KingEconomist,@NickGiva ...in pursuit of La Dolce Vita... +05/18/2018,Economists,@KingEconomist,"@NickGiva 420,000 Italians living in Germany. 220,000 Germans living in Italy. Not sure it's all piazzas and espressos. Or speedboats." +05/18/2018,Economists,@KingEconomist,"@BlakeFox7 To be fair, Italy outperformed Germany between 1980 and the euro's creation. Since then, however, the roles have reversed." +05/18/2018,Economists,@KingEconomist,@LongShortTrader True. And there are more Italian restaurants in Germany than German restaurants in Italy. +05/18/2018,Economists,@KingEconomist,"And, today, Italian living standards are 75% of Germany's whereas, in 1999, they were 90% of Germany's. https://t.co/An1553xMFp" +05/18/2018,Economists,@KingEconomist,"@peterfrankopan Thanks, Peter, much appreciated!" +05/18/2018,Economists,@KingEconomist,RT @peterfrankopan: Great piece @KingEconomist https://t.co/uGbn6FDQNA +05/18/2018,Economists,@KingEconomist,@digi_cole Thanks! +05/18/2018,Economists,@KingEconomist,@FHMonitor I didn't push back! I just quoted some data! +05/17/2018,Economists,@KingEconomist,@FHMonitor Thanks. I might be cherry picking but the broad $ index was about 115 at the beginning of Feb (the troug… https://t.co/nni1lMVFf6 +05/17/2018,Economists,@KingEconomist,Here's a little something about the dollar's recent surge... https://t.co/eJ0Ae33xym +05/17/2018,Economists,@KingEconomist,It's not so much sterling that's weak but the dollar that's strong...even if the US is walking away from the world.… https://t.co/sUVHJ2Xr7R +05/12/2018,Economists,@KingEconomist,@asentance @dsmitheconomics I'd prefer your Puppet on a String +05/12/2018,Economists,@KingEconomist,"@asentance So we had two wins in the first period with win rate of 12.5 per cent, two wins in period from 74-89 (fa… https://t.co/cTBTvVewUn" +05/12/2018,Economists,@KingEconomist,@asentance I think you'll find the rot set in with the fall of the Berlin Wall. I hope you're not advocating its reconstruction! +05/11/2018,Economists,@KingEconomist,@hugorifkind @ben_machell I don't recall ever saying that. Too clever. +05/10/2018,Economists,@KingEconomist,@ChrisGiles_ @bankofengland The dangers of groupthink +05/09/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg Oh bugger. Just seen the result. Was at a dinner. Thankfully I avoided watching it! +05/09/2018,Economists,@KingEconomist,@Kaesous @TrendWaveTrader @bankofengland @Socionomics Thanks. Does it work for the Rolling Stones too? +05/08/2018,Economists,@KingEconomist,I'm speaking from midday on Saturday 26 May. Three sessions....starting with https://t.co/0VSNDnKRZf https://t.co/5xRbjY25zD +05/08/2018,Economists,@KingEconomist,@PhilipJTaylor1 I'm not sure there are any gentlemen involved... +05/08/2018,Economists,@KingEconomist,From global Britain to little Britain: https://t.co/YuGTpowETo +05/08/2018,Economists,@KingEconomist,@georgemagnus1 I think 'swash' is redundant. +05/06/2018,Economists,@KingEconomist,"@RobinWigg @georgemagnus1 Look, I supported Chelsea when we were in the second division and Kerry Dixon was our lea… https://t.co/3PK65QgwZU" +05/06/2018,Economists,@KingEconomist,"@georgemagnus1 @RobinWigg Look, I really hope you win. I'd hate to see your team becoming another Preston North End… https://t.co/s5L1ydmtZk" +05/06/2018,Economists,@KingEconomist,@RobinWigg @georgemagnus1 I'm well aware that our boast of being the last English team to win the Champions League… https://t.co/AKkMhUjDu5 +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg I'm part of the tribe you lost to! +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg You asked. I answered! +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg You lost. That's the main problem. +05/05/2018,Economists,@KingEconomist,"@TrendWaveTrader @bankofengland @Socionomics That's interesting, but it seems as though disco passed them by in the… https://t.co/BkXFjoNCXl" +05/04/2018,Economists,@KingEconomist,"@AGaniMemon @Channel4News Given your timeline, I think we know who has a problem with truth." +05/04/2018,Economists,@KingEconomist,"RT @Channel4News: ""I'm ashamed that this sickness has come into our party."" +  +Defeated Labour councillor Adam Langleben says he believes ""t…" +05/03/2018,Economists,@KingEconomist,@DrGerardLyons I seem to recall that Corfe Castle was rather more memorable than the Cup Final. +05/03/2018,Economists,@KingEconomist,"@DrGerardLyons Yes, I watched that match while on a school trip to Swanage. It was terrible (the match, not Swanage)." +05/03/2018,Economists,@KingEconomist,"@asentance @bankofengland You're right, but the problem might even have been around when you were there...https://t.co/4SaWWjsson" +05/03/2018,Economists,@KingEconomist,"@sdonnan @guydej1 To be fair to me, Grave New World was subtitled 'The End of Globalization, the Return of History'. Just saying." +05/03/2018,Economists,@KingEconomist,@Frances_Coppola @econbuttonwood Is that with a short 'e' or long 'e'? +05/03/2018,Economists,@KingEconomist,@ryanavent I'd also add the impact of technology on wage bargaining. Much easier to manage zero-hours contracts wi… https://t.co/cPuRcMGwhf +05/03/2018,Economists,@KingEconomist,@econbuttonwood @Frances_Coppola So not so much 'feeble' as 'enfeebled'. +05/03/2018,Economists,@KingEconomist,@Frances_Coppola I don't think you should describe @econbuttonwood using that term. Harsh. +05/02/2018,Economists,@KingEconomist,"@AdamCaplin @bankofengland I'm sure that @bankofengland can make do with Money, Money, Money." +05/02/2018,Economists,@KingEconomist,@brentsheather @bankofengland Pretty sure that's Elvis Presley. Maybe Submission? +05/02/2018,Economists,@KingEconomist,"I challenge @bankofengland's Andy Haldane to read my mood from my recent Spotify activity: Led Zep IV, Debussy La M… https://t.co/xFyBrHfSgg" +04/28/2018,Economists,@KingEconomist,@AngelicaNgai Where's your school? +04/28/2018,Economists,@KingEconomist,@georgemagnus1 It's a new-fangled modern-day device known as Google. You might have come across it from time to tim… https://t.co/rDUjH1TSty +04/28/2018,Economists,@KingEconomist,I reckon Abba's annus mirabilis was 1976: three singles in the 'annual' UK top 20. Just look at who they were up ag… https://t.co/zraOh3Xi5o +04/25/2018,Economists,@KingEconomist,Tories dance the Hokey Cokey on Customs Union. In? Out? Shake it all about? https://t.co/pFsCs5ckS8 +04/23/2018,Economists,@KingEconomist,Top economic analysis: https://t.co/JV9pBMGPxz +04/19/2018,Economists,@KingEconomist,For those of you who benefit from some fluency in Polish....a review of #GraveNewWorld https://t.co/4dxI0GnHdi +04/16/2018,Economists,@KingEconomist,"Why the US may end up with a frozen Tundra. Excellent by @sdonnan on Texas, Toyota, Trump & trade. https://t.co/LdfZXuarsY" +04/11/2018,Economists,@KingEconomist,Wow! https://t.co/SShXFvdLPh +04/10/2018,Economists,@KingEconomist,@GrahamWiley459 Great....thanks! +04/10/2018,Economists,@KingEconomist,@PeterJLyth We can but dream... +04/10/2018,Economists,@KingEconomist,"And, just to prove it.... https://t.co/OoIiI3Fnhb" +04/10/2018,Economists,@KingEconomist,@FinbarrLivesey Thanks! And good luck on number 2. +04/10/2018,Economists,@KingEconomist,I think I can reasonably say I have written a trilogy: I've just taken delivery of new paperback editions of… https://t.co/HCzgsQOPd5 +04/10/2018,Economists,@KingEconomist,"@British_Airways It says on your Twitter page that you 'are here 24 hours a day, 7 days a week to help'. When you s… https://t.co/eQWmfMypnt" +04/09/2018,Economists,@KingEconomist,"@British_Airways Well, that's almost as long a delay as the flight. I have just learnt that the incoming aircraft h… https://t.co/wLi7lW4Z3s" +04/09/2018,Economists,@KingEconomist,@EconAJB @British_Airways Thanks! +04/09/2018,Economists,@KingEconomist,@SeanFionn @British_Airways Thanks! At least someone knows what's going on. +04/09/2018,Economists,@KingEconomist,@m_we @British_Airways Here's one explanation: https://t.co/MzvG7vkFsC +04/09/2018,Economists,@KingEconomist,"@georgemagnus1 @British_Airways The third, I believe. ""Late incoming aircraft"" is a fairly lame excuse." +04/09/2018,Economists,@KingEconomist,"Finally, some ""good"" news from @British_Airways. The flight has been brought forward. Now departing at 00.10....jus… https://t.co/FaSkAagYG7" +04/09/2018,Economists,@KingEconomist,@Tburrell1001 @British_Airways It never just rains... +04/09/2018,Economists,@KingEconomist,"@EconAJB @British_Airways That's interesting. When I phoned @British_Airways at around 20.30 this evening, they tol… https://t.co/rzaX5YIlex" +04/09/2018,Economists,@KingEconomist,"So, @British_Airways, the screens at Geneva Airport promised info at 22.00. On the stroke of 22.00, that changed to… https://t.co/u8HRqdqmqs" +04/09/2018,Economists,@KingEconomist,"This, @British_Airways, is what your app currently says. But total silence from your staff at Geneva Airport. https://t.co/UIKUptUAiW" +04/09/2018,Economists,@KingEconomist,"Well, @British_Airways, what have you done with our flight? It's now 21.41 in Geneva, and your app is saying BA737,… https://t.co/htwg3BiQnN" +04/08/2018,Economists,@KingEconomist,@Q4TK She's certainly done her background reading... https://t.co/TXvvjAbver +04/07/2018,Economists,@KingEconomist,@georgemagnus1 @toby_n @t0nyyates @DuncanWeldon @GavinJKelly1 @econhedge @RBS_Economics @Frances_Coppola I think it… https://t.co/npLMlnSw9V +04/06/2018,Economists,@KingEconomist,"Read this. It matters. Hungary, anti-Semitism and my lost Jewish ancestors https://t.co/lls5V5sXJ5 via @financialtimes" +04/06/2018,Economists,@KingEconomist,@DuncanWeldon @toby_n @georgemagnus1 @t0nyyates @GavinJKelly1 @econhedge @RBS_Economics @Frances_Coppola Thanks! How are the tanks? +04/06/2018,Economists,@KingEconomist,@isamutlib Excited that you're reading it! +04/04/2018,Economists,@KingEconomist,"@georgemagnus1 I thought you were going to say you wrote ""almost unique"" while you were caned." +04/02/2018,Economists,@KingEconomist,'Misleading' might count as the understatement of the year. https://t.co/j4NKCombJJ +04/01/2018,Economists,@KingEconomist,"This, by @Baddiel, is extremely good. ""Anti-semitism — what I prefer to call anti-Jewish racism — is the only racis… https://t.co/2SjMGr6qUn" +03/31/2018,Economists,@KingEconomist,@kwgdouglas And thank you! +03/31/2018,Economists,@KingEconomist,"RT @kwgdouglas: Just finished reading Grave New World, really enjoyed it, timely insightful and very well written. Thank you @KingEconomist…" +03/30/2018,Economists,@KingEconomist,RT @LordsIRCom: #China's economic successes came under the microscope as @KingEconomist gave evidence to the Committee https://t.co/MTkNRBj… +03/30/2018,Economists,@KingEconomist,"This, from @afneil, is simply brilliant. Please watch. https://t.co/xSBE7ylrwH" +03/29/2018,Economists,@KingEconomist,And so did I! https://t.co/63EDdgpcWg +03/29/2018,Economists,@KingEconomist,@georgemagnus1 @alanbeattie @DrGerardLyons @afneil I think we should just bring back rationing: it did the trick in… https://t.co/j2Smf8JkjQ +03/29/2018,Economists,@KingEconomist,@BaldwinRE Your cheque's in the post! +07/02/2018,Economists,@jodiecongirl,I’m still tired and cranky but at least this is here now https://t.co/CzIXmS1FKl +07/02/2018,Economists,@jodiecongirl,@BenLeubsdorf @jeffsparshott don’t you dare jinx it bro +07/02/2018,Economists,@jodiecongirl,@hyperplanes this even has the benefit of making the poors easier to spot good job everyone +07/02/2018,Economists,@jodiecongirl,now I know how economists get banned from salad bars https://t.co/W67ZElJzZt +07/02/2018,Economists,@jodiecongirl,economic anxiety update https://t.co/8ot9BO5mXI +07/02/2018,Economists,@jodiecongirl,you’ll be happy to know that twitter didn’t disappoint and I got a DM pointing out the historical inaccuracy in my… https://t.co/cEGmnaHWfD +07/02/2018,Economists,@jodiecongirl,"me: the world is clearly not specifically out to get me that’s absurd +also me: why are all job-related emails getti… https://t.co/fOCsVfrzCL" +07/02/2018,Economists,@jodiecongirl,"@moebius_strip I had a prof who put stuff on problem sets that had never been solved before you know, just in case" +07/02/2018,Economists,@jodiecongirl,@ENPancotti @economeager I do find that people wander between schools sometimes but mainly I thought I was onto som… https://t.co/wlRXoXcJNW +07/02/2018,Economists,@jodiecongirl,@ENPancotti @economeager tell Matt Rabin I say hi =P +07/02/2018,Economists,@jodiecongirl,@ENPancotti let me know in the future and I'll go with you so you can use my yoga pants to distract from your Birks +07/02/2018,Economists,@jodiecongirl,i’m going to go ahead and assume that @AliVelshi has been reading my angry letters to the editor re not explaining… https://t.co/Ac0noc37Q4 +07/02/2018,Economists,@jodiecongirl,"@AndreaEMays @EvaLefkowitz @JuliaFtacek this feels right, scientifically speaking" +07/02/2018,Economists,@jodiecongirl,@DavidAJaeger if it makes you feel better I made sure to only read others' screenshots and not give the article itself any clicks :) +07/02/2018,Economists,@jodiecongirl,I get that this article is garbage but can we at least find it funny that the socialist didn't want to redistribute… https://t.co/p7rpPvl86W +07/02/2018,Economists,@jodiecongirl,the 4th of a July must make Bayes so sad https://t.co/TR39OQZjyy +07/02/2018,Economists,@jodiecongirl,I’m gonna be in a boat so I guess I’m the two if by sea part https://t.co/OhPVDFemor +07/02/2018,Economists,@jodiecongirl,on the up side this is going to make my tariff bashing articles so much more fun https://t.co/hvLF2kgAz6 +07/02/2018,Economists,@jodiecongirl,@KFILE for blocking you or other? :) +07/02/2018,Economists,@jodiecongirl,@ashleyfeinberg @yashar it’s dumb but it’s also a hilarious socialism metaphor +07/02/2018,Economists,@jodiecongirl,@DSMoxon sometimes I’m even like screw it im printing the counter and I’ll take the hit on processing time to be ab… https://t.co/YiKUcK9do5 +07/02/2018,Economists,@jodiecongirl,@_cingraham my fave is still the Twitter hero who described Hidden Brain as “mattress ads and shit that doesn’t replicate” +07/02/2018,Economists,@jodiecongirl,you say this as if there’s another way https://t.co/t0mUkajHsU +07/01/2018,Economists,@jodiecongirl,@AndyHarless so employers are going to keep chasing their manic pixie dream data scientists what could possibly go wrong +07/01/2018,Economists,@jodiecongirl,@aptweacher also hahahaha @trevortombe +07/01/2018,Economists,@jodiecongirl,@aptweacher like this but with your name https://t.co/JoW6jTFjTt +07/01/2018,Economists,@jodiecongirl,today in failing upwards... https://t.co/MNiGeRySMP +07/01/2018,Economists,@jodiecongirl,"You know how grad students in film school often have family members in their films? By this logic, I can con… https://t.co/gvByXWmOBo" +07/01/2018,Economists,@jodiecongirl,@dataandpolitics it's a secret girl thing I can't tell you obviously +07/01/2018,Economists,@jodiecongirl,@ATabarrok just wait until you put your glasses on when already wearing your contacts and get super confused +07/01/2018,Economists,@jodiecongirl,"@matthewstoller to be fair, revealed preferences suggest..." +07/01/2018,Economists,@jodiecongirl,I guess polling economists on what the Fed is going to do is more reasonable than polling them on what Trump is goi… https://t.co/6bbdthVePd +07/01/2018,Economists,@jodiecongirl,"me: obsesses over data entry precision/accuracy +also me, saner: if my result is this sensitive to inputs it probably wasn't meant to be" +07/01/2018,Economists,@jodiecongirl,where do I go to collect my trophy https://t.co/gZeYHkl9JO +07/01/2018,Economists,@jodiecongirl,"@EvaLefkowitz @JuliaFtacek I read something a while back that ""best by"" wasn't technically an expiration date (for… https://t.co/ApIPWbFEEh" +07/01/2018,Economists,@jodiecongirl,*whispers* this phrasing doesn't have a great track record nowadays (see graphic) https://t.co/42WaF6iVy3 +07/01/2018,Economists,@jodiecongirl,"@waltshaub @MsResistFL to clarify, it is my view that ICE has gotten out of control in terms of corruption and abus… https://t.co/BPhAqooUuF" +07/01/2018,Economists,@jodiecongirl,"@waltshaub @MsResistFL I get irritated that the ""take him seriously but not literally"" crowd conveniently decides t… https://t.co/EurlnV9cNe" +07/01/2018,Economists,@jodiecongirl,"PSA: women look at this infographic and go wow, I have to learn a whole bunch of things before I even try to be a d… https://t.co/BPE4oYrX0Q" +07/01/2018,Economists,@jodiecongirl,@MattBruenig I get that it can help overcome self-control issues but I also unapologetically mock people when they… https://t.co/vsbLeK2ynF +07/01/2018,Economists,@jodiecongirl,counterpoint: behavioral economists talk about how mental accounting is irrational https://t.co/Fhl1VgZEOz +07/01/2018,Economists,@jodiecongirl,@buttpraxis @tressiemcphd did you hack my drafts folder again +07/01/2018,Economists,@jodiecongirl,never mind I rescind my request for non-political news I clearly hadn't thought things through https://t.co/aD9plR3UPP +07/01/2018,Economists,@jodiecongirl,it's not even noon and I've already fought with the socialist party and a twitter bot my work here is done https://t.co/MvY1pGuNXQ +07/01/2018,Economists,@jodiecongirl,@hydrate_bot FINE *gets glass of water* +07/01/2018,Economists,@jodiecongirl,I just made an iced latte does that count https://t.co/asoxYqFCd4 +07/01/2018,Economists,@jodiecongirl,"@FishEcon I'm gonna play the odds and say my points were probably about worker protections, but that's mainly becau… https://t.co/Xp3YuGMeTx" +07/01/2018,Economists,@jodiecongirl,why does my tv not understand that there's news out there that doesn't (directly) involve politics +07/01/2018,Economists,@jodiecongirl,@OfficialSPGB right- I in no way meant to imply that the people using socialism as a pejorative were definitionally… https://t.co/amzfPrfvPN +07/01/2018,Economists,@jodiecongirl,my dad did the “what are you a bleeding-heart liberal” thing when I was a kid...not sure people realize that what t… https://t.co/c9sLoB9s5s +07/01/2018,Economists,@jodiecongirl,the thing about millennials is we’re not great at teaching history and they are young enough to not have direct exp… https://t.co/KkmH2gS7H3 +07/01/2018,Economists,@jodiecongirl,"I think it goes something like... +YP: you know it makes sense that everyone should be able to go to the doctor +othe… https://t.co/z97H5Pr9sS" +07/01/2018,Economists,@jodiecongirl,@dynarski also bad science don’t forget +07/01/2018,Economists,@jodiecongirl,@gabriel_mathy @UpdatedPriors @Noahpinion he’s 3 he has no experience with cars =P +07/01/2018,Economists,@jodiecongirl,"@UpdatedPriors @Noahpinion so I completely believe that the kid initially heard it from tv, but also the fact that… https://t.co/9OBB7ind7z" +07/01/2018,Economists,@jodiecongirl,"@Noahpinion entitlement, among other things" +07/01/2018,Economists,@jodiecongirl,TIL I don’t like mustard enough to have an academic job https://t.co/PIPbio2iQO +07/01/2018,Economists,@jodiecongirl,"@EvaLefkowitz @JuliaFtacek wait, mustard expires?" +07/01/2018,Economists,@jodiecongirl,@IlliniBizDean why would you want to increase the opportunity cost of eating chocolate you monster +07/01/2018,Economists,@jodiecongirl,"not gonna lie, I do wonder sometimes if there was an administrative error somewhere and whether I could just run with it" +07/01/2018,Economists,@jodiecongirl,@SnarkActual but...but I meant it literally in this case +07/01/2018,Economists,@jodiecongirl,"mr. econgirl: just take a photo of your alumni magazine and send it to employers +me: I swear harvard is going to mo… https://t.co/Er1aV3MdCw" +07/01/2018,Economists,@jodiecongirl,@dataandpolitics Led Zeppelin and Billy Joel. I remember literally nothing else +06/30/2018,Economists,@jodiecongirl,@LoganMohtashami @economistmom https://t.co/5kkReqfS0B +06/30/2018,Economists,@jodiecongirl,@scottimberman @causalinf @briankisida why are you being like this today +06/30/2018,Economists,@jodiecongirl,"@MattBruenig I've been having to do this for a while...eg. ""no, inflation hasn't changed in meaning to mean increas… https://t.co/YuId1cUZ9U" +06/30/2018,Economists,@jodiecongirl,hey twitter I think this is a dare https://t.co/rinuTmroqN +06/30/2018,Economists,@jodiecongirl,@Mediaite @MeghanMcCain ok fine but this doesn't even crack the top 10 of garbage things he's done tbh +06/30/2018,Economists,@jodiecongirl,@BrookingsInst @CoryBooker hey look who's stealing Hillary's moves +06/30/2018,Economists,@jodiecongirl,this is consistent with my experience https://t.co/3llFbchGhR +06/30/2018,Economists,@jodiecongirl,"""what do we want?"" +""for rules to be followed"" +""when do we want it?"" +""retroactively if possible"" https://t.co/unJ1p6anHa" +06/30/2018,Economists,@jodiecongirl,I made a Spotify playlist out of my dataset and I think mr. econgirl's going to find an excuse to go to the office +06/30/2018,Economists,@jodiecongirl,my ironic side loves that Amazon music sells a clean version of Banned in the USA +06/30/2018,Economists,@jodiecongirl,"@gbenga_ajilore there is a chance you could figure it out from the info I posted, but it's kind of nuanced :)" +06/30/2018,Economists,@jodiecongirl,"and I'm sorry, I might be biased because I lived through it in Broward county, but Banned in the USA is a good song" +06/30/2018,Economists,@jodiecongirl,"@nhotte haha it's gonna be fun when I angrily post any and all Twitter polls that don't have a ""just show me the results"" option" +06/30/2018,Economists,@jodiecongirl,my data probably looks different from your data https://t.co/iOzVDWGFmI +06/30/2018,Economists,@jodiecongirl,next time you think your survey data is bad just remember that it could be worse https://t.co/YlHzZYkT0d +06/30/2018,Economists,@jodiecongirl,I think we found an issue that brings out the one-handed economists... https://t.co/SyAj8YbOBv +06/30/2018,Economists,@jodiecongirl,"@MattBruenig no, my way makes me a lot richer =P" +06/30/2018,Economists,@jodiecongirl,"on the up side, I guess I'm helping confirm the ""noise in the input/output relationship generally serves to dampen incentives"" theory" +06/30/2018,Economists,@jodiecongirl,@HanbyAndrew @conradhackett sure but this helps identify the specific source of uncertainty as opposed to confirming or refuting overall +06/30/2018,Economists,@jodiecongirl,"interviewer: why didn't you want an academic job +me: https://t.co/wgd6qNo6D6" +06/30/2018,Economists,@jodiecongirl,@R_Thaler I feel like this is the Harvard Management Company problem all over again +06/30/2018,Economists,@jodiecongirl,just claimed my property on Zillow to get a more accurate price estimate and ...well...now I'm really hoping they h… https://t.co/LIE75KW031 +06/30/2018,Economists,@jodiecongirl,@DLind this is a market failure +06/30/2018,Economists,@jodiecongirl,"@BruceBartlett you don't have to wonder, the answer is 2.5 https://t.co/liooTnX1TC" +06/30/2018,Economists,@jodiecongirl,@yogawithcorrie @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates *raises hand* how do I get put on this list +06/30/2018,Economists,@jodiecongirl,counterpoint: mom's an english teacher and I'm pretty sure she'd agree with me that verb tenses mean things https://t.co/IMvcecOpCB +06/30/2018,Economists,@jodiecongirl,@dandrezner Hassett basically said the same thing to try to fish Kudlow out of the hole he dug for himself +06/30/2018,Economists,@jodiecongirl,@nhotte please tell me those are GMO strawberries in there +06/30/2018,Economists,@jodiecongirl,@titonka and yet somehow JFK didn't seem to have this problem +06/30/2018,Economists,@jodiecongirl,maybe it's because I'm lazy but voting seems like a lot less effort https://t.co/VWn5eukfIM +06/30/2018,Economists,@jodiecongirl,@AcostaRomay ughhhhhhh...I was legit hoping it was just me and not a pattern +06/30/2018,Economists,@jodiecongirl,(to be fair it was my advisor who did this not me) +06/30/2018,Economists,@jodiecongirl,dude why the eff do you think I haven't finished https://t.co/cvtRImzttp +06/30/2018,Economists,@jodiecongirl,not sure I’m tall enough for this one tbh https://t.co/irqyFSRoku +06/30/2018,Economists,@jodiecongirl,@ravshansk oh you just wait for my next tweet you will not be disappointed +06/30/2018,Economists,@jodiecongirl,@ChasLaw3 actually that sounds pretty good I could even do the tweed jacket thing +06/30/2018,Economists,@jodiecongirl,@DSMoxon even if these are daily emails that have these numbers? +06/30/2018,Economists,@jodiecongirl,not sure I’m old and male enough for this job title https://t.co/KWDtWAK4hQ +06/30/2018,Economists,@jodiecongirl,@LoganMohtashami hahaha yeah they rejected me for that without even talking to me because the world is super fun +06/30/2018,Economists,@jodiecongirl,I know it’s a hot job market but this doesn’t feel right https://t.co/LaZhmiRo3P +06/30/2018,Economists,@jodiecongirl,@tobyjoe @cpklapper tough but fair +06/30/2018,Economists,@jodiecongirl,you’ll be pleased it took 32 minutes to get to a trickle-down economics joke +06/29/2018,Economists,@jodiecongirl,I...don’t know what this is but let’s do it https://t.co/mBGM3BOndD +06/29/2018,Economists,@jodiecongirl,"@cpklapper I’m clearly retro, duh" +06/29/2018,Economists,@jodiecongirl,@economeager @foley_kelly not sure I even agree with her but support that this is how it’s supposed to work +06/29/2018,Economists,@jodiecongirl,compensating differentials yo https://t.co/6XpIL2XOLh +06/29/2018,Economists,@jodiecongirl,I’m now at the W bar waiting for friend and eavesdropping...apparently everyone lives in a sequel to Office Space from what I can tell +06/29/2018,Economists,@jodiecongirl,@SnarkActual good I was worried the sneakers would give me away +06/29/2018,Economists,@jodiecongirl,@BuffyBlogs there’s no way I’m wearing heels to a damn podcast :) +06/29/2018,Economists,@jodiecongirl,dragging myself out of the house...hopefully my functional human disguise is working https://t.co/ZXaYwoXdRi +06/29/2018,Economists,@jodiecongirl,almost done with my venn diagram it just needs one more label https://t.co/rsz3p6Td2c +06/29/2018,Economists,@jodiecongirl,"me: i'm sad +@TheWhyteNinjaL there there...let's go to a podcast taping it'll make you feel better +me: you always know what I like" +06/29/2018,Economists,@jodiecongirl,"@datanotdogma haha, I left grad school a while ago so I'm pretty sure they need the money more than I do! I'm at a… https://t.co/U8QSeEX73i" +06/29/2018,Economists,@jodiecongirl,I'm beginning to worry a little that people who are not terrible at communication spend all of their days writing emails +06/29/2018,Economists,@jodiecongirl,"ok Twitter, @aptweacher's birthday is tomorrow (yep I'm sure she appreciates me telling the world this), what's the… https://t.co/TkS8k5s5lE" +06/29/2018,Economists,@jodiecongirl,"@leighblue @geekyisgood I looked at her location and had false hope for a second that she meant Bristol, Tennessee :)" +06/29/2018,Economists,@jodiecongirl,"@johnwhitehead81 tax cuts, I'm like 99% sure" +06/29/2018,Economists,@jodiecongirl,@crampell @ernietedeschi @RichardRubinDC @NickRiccardi @RealClearNews I feel like there's very little good middle g… https://t.co/L0N5eCmIWL +06/29/2018,Economists,@jodiecongirl,@gin_and_tacos *waves* +06/29/2018,Economists,@jodiecongirl,@SnarkActual precisely +06/29/2018,Economists,@jodiecongirl,"@johnwhitehead81 he actually chose his words pretty carefully, and I'm still pondering the ""well wouldn't you take… https://t.co/KoZPHnCcoQ" +06/29/2018,Economists,@jodiecongirl,update: this mainly involved conflating the present and future tense so I'm pretty underwhelmed tbh +06/29/2018,Economists,@jodiecongirl,what no I'm totally not waiting with baited breath to see what on earth Hassett does when asked about Kudlow's deficit comments +06/29/2018,Economists,@jodiecongirl,you guys I have a confession regarding the real reason I didn't finish my dissertation on time https://t.co/d33uCZsA20 +06/29/2018,Economists,@jodiecongirl,@mpolikoff @delta_dc I'm in Boston and this sounds way too familiar +06/29/2018,Economists,@jodiecongirl,@andrewheiss no it makes you a nerd =P +06/29/2018,Economists,@jodiecongirl,@mpolikoff @delta_dc I think someone forgot to inform the Michelin Guide of this +06/29/2018,Economists,@jodiecongirl,"@SnarkActual I feel the need to point out that my parents are not poor, since they probably don't want to be percei… https://t.co/nd8LqCjdXU" +06/29/2018,Economists,@jodiecongirl,"@geekyisgood thanks, you're all too kind and I hope to run into you in person some day :)" +06/29/2018,Economists,@jodiecongirl,@ryanbedwards his backup plan was for me to just take a personal loan so I guess I now understand why none of his m… https://t.co/H49ZWhf57C +06/29/2018,Economists,@jodiecongirl,"for context, I was explaining that one of my professors told me to borrow money from my parents to finish school on… https://t.co/939avxu1dx" +06/29/2018,Economists,@jodiecongirl,@td_maurer haha that would be so gloriously meta +06/29/2018,Economists,@jodiecongirl,@FrankRCastillo I think that's also a response that receives full credit :) +06/29/2018,Economists,@jodiecongirl,@td_maurer what part exactly +06/29/2018,Economists,@jodiecongirl,update: mom texted me yesterday to basically apologize for not being able to help me more financially and I've neve… https://t.co/hW0Lw0HnQo +06/29/2018,Economists,@jodiecongirl,"@econwithdustin I mean...hm yeah this is probably true, empirically speaking" +06/29/2018,Economists,@jodiecongirl,@economistmom haha yes but you've proven your wisdom in other ways :) +06/29/2018,Economists,@jodiecongirl,@joebrusuelas I'm...well... https://t.co/Auy2gkg4uL +06/29/2018,Economists,@jodiecongirl,"@alex_peys I'm getting there, give it time" +06/29/2018,Economists,@jodiecongirl,call me overly cynical but hm I wonder what the difference is https://t.co/YzQYd5UB01 +06/29/2018,Economists,@jodiecongirl,@FieldsofAthnry @raulpacheco @willnevin @alexandraerin @ms_peaceweaver @kjhealy @terry_ebooks @WorldCatLady… https://t.co/jwmGmDDLmA +06/29/2018,Economists,@jodiecongirl,"@overdahl_jim @JustinWolfers I don’t know yet if this rule changes it, but there’s a really interesting feature whe… https://t.co/7UpViSFZFp" +06/29/2018,Economists,@jodiecongirl,@HerrForce1 @genehayward @DallenaNguyen @BS0064 @GeoffreyMJ @JeffLong10 @akashdan @apeconguy fun fact: I’m pretty s… https://t.co/xc4qfIiSfX +06/29/2018,Economists,@jodiecongirl,@AnnieDuke I think the alarm is a fair compromise- i.e. watch your Hulu but geez but it down when the car starts beeping at you! +06/29/2018,Economists,@jodiecongirl,"@joebrusuelas given that you have the job title I was rejected for, I am screen shorting this and sending it to the… https://t.co/6ApUfF1EGG" +06/29/2018,Economists,@jodiecongirl,@NickAPoche @salimfurth there we go +06/29/2018,Economists,@jodiecongirl,"@ez_angus I was told during a journalism interview that “productivity” was too jargony so this doesn’t feel right,… https://t.co/7lE95cWPmJ" +06/29/2018,Economists,@jodiecongirl,this went exactly as expected and I don’t regret my click one bit https://t.co/LtSjRmBhnE +06/29/2018,Economists,@jodiecongirl,@sgadarian well it’s remembered utility so maybe we can’t assess until we’re out of the situation? +06/29/2018,Economists,@jodiecongirl,"thanks, now I know how to plan my content consumption https://t.co/Mo2LqjPyOR" +06/29/2018,Economists,@jodiecongirl,@davidshor @mattyglesias my tin foil hat says that upper middle class white women need blue states so they don’t have to travel to Canada +06/29/2018,Economists,@jodiecongirl,I’m going to echo @neeratanden with a hearty “why did no one follow up on this before now” https://t.co/XZxkY8YoO7 +06/29/2018,Economists,@jodiecongirl,"@BruceBartlett this is true for most policies, or at least perceived to be, which explains a lot of voting behavior" +06/29/2018,Economists,@jodiecongirl,"@causalinf in this case he’s a more specific kind of douche, since he appears pissed thet that they covered his dom… https://t.co/FQ21X4KpPa" +06/29/2018,Economists,@jodiecongirl,"@sgadarian be careful, since increasing remembered utility involved making the experience last longer =P" +06/29/2018,Economists,@jodiecongirl,"@bhgreeley so, uh, is that a superset or subset =P" +06/29/2018,Economists,@jodiecongirl,@IBlackmailLands see if this helps https://t.co/AM4ZWZnCcA +06/29/2018,Economists,@jodiecongirl,I think it’s time to kick him out of economist club https://t.co/i75y9JnmWn +06/29/2018,Economists,@jodiecongirl,"apropos of nothing, I’ll point out that in behavioral economics there’s the peak end rule, which says we remember t… https://t.co/BmaZZMVF41" +06/29/2018,Economists,@jodiecongirl,@PereGrimmer in practice you’re probably right but as a hypothetical I’m like nope no way +06/29/2018,Economists,@jodiecongirl,@economeager I feel like we’ve done a disservice to the Econ 101 crowd for thinking it’s cool to point out that new… https://t.co/kHIojtwBea +06/29/2018,Economists,@jodiecongirl,I know I’m trying to get hired but I have to level with you I will probably never have this level of commitment to… https://t.co/c3AN8y90MX +06/29/2018,Economists,@jodiecongirl,@salimfurth I was thinking more this since it’s awkward and inefficient https://t.co/I6biGJ8ubz +06/29/2018,Economists,@jodiecongirl,great now I’m opposed to economists taking vacations https://t.co/J5Tbc9KFVF +06/29/2018,Economists,@jodiecongirl,how high do you have to be to think you can live in a bitcoin...I used to have to remind people that bitcoin isn’t… https://t.co/JOtBWs9Eiu +06/29/2018,Economists,@jodiecongirl,"sure, start a company with Amazon as your only client what could possibly go wrong *does monopsony dance* https://t.co/hP2iTA48ub" +06/29/2018,Economists,@jodiecongirl,"in case the name of one of the Capital victims sounds familiar, yep, it’s his brother... https://t.co/ZIaF6Re60n" +06/29/2018,Economists,@jodiecongirl,@graykimbrough I mean I did say I needed ideas for dissertation papers I guess... +06/29/2018,Economists,@jodiecongirl,so relatable today https://t.co/Fe3ozaXPCR +06/29/2018,Economists,@jodiecongirl,@ernietedeschi Adam Rippon +06/29/2018,Economists,@jodiecongirl,are...are you sure though https://t.co/NdB34izQ2W +06/29/2018,Economists,@jodiecongirl,@llinong labor specialization! +06/29/2018,Economists,@jodiecongirl,@leighblue wtf how was I not following you +06/29/2018,Economists,@jodiecongirl,"@econwithdustin dept: you can teach whatever you want if you also teach grad macro +me: ##%#%!$^$%^^# fine" +06/29/2018,Economists,@jodiecongirl,is it bad that I'd rather do hours of data entry than send an email to a stranger? +06/29/2018,Economists,@jodiecongirl,"@AnnieDuke I think you're right, but I also wonder what the point of autonomous vehicles is if you can't not watch the road" +06/29/2018,Economists,@jodiecongirl,@audowla it's seriously the worst metaphor +06/29/2018,Economists,@jodiecongirl,"@FarmerHayek to be fair, those aren't mutually exclusive" +06/29/2018,Economists,@jodiecongirl,@SnarkActual my dad got fired from a Toys R Us when I was a kid so I'm happy to take this now +06/29/2018,Economists,@jodiecongirl,@JonathanKarver @DrunkWB how did I not know about this until now +06/29/2018,Economists,@jodiecongirl,"@ThatTomAcox fair, but it's still confusing since apparently Schmidt hates the GOP now too" +06/29/2018,Economists,@jodiecongirl,@mirandayaver so I want to be mad but there was that one time where she started with the employment act of 1946 and… https://t.co/3FPoKrWPGj +06/29/2018,Economists,@jodiecongirl,so this is a bit of an oversimplification but the reality is super interesting (search for 2013 for the relevant pa… https://t.co/HrIgeHpx8U +06/29/2018,Economists,@jodiecongirl,@drewmagary cashews work too +06/29/2018,Economists,@jodiecongirl,apparently a 35 year monopoly wasn't enough? https://t.co/xQfHSBn5sc +06/29/2018,Economists,@jodiecongirl,current mood https://t.co/RzlemL95Pd +06/29/2018,Economists,@jodiecongirl,@umairh this has to be deliberate trolling right +06/29/2018,Economists,@jodiecongirl,"@DinaPomeranz @KfWpress to be fair, I'm pretty sure that team sports trophies are more rare among economists than academic awards :)" +06/29/2018,Economists,@jodiecongirl,"heh I was kidding but sure, let's do this https://t.co/wkiRs0afFK" +06/29/2018,Economists,@jodiecongirl,@CBSEveningNews @blakehounshell thanks now I know what words to mute...sorry but only victims' names get my clicks +06/29/2018,Economists,@jodiecongirl,where can I donate to your Kickstarter (yes I know how to subscribe to a paper do not @ me) https://t.co/Ob45D8uDnX +06/29/2018,Economists,@jodiecongirl,live look at me reacting to all your support and encouragement today... https://t.co/MREBuvbzZZ +06/29/2018,Economists,@jodiecongirl,@szarka yes but your wealth level has also gone up by $250 +06/29/2018,Economists,@jodiecongirl,"""does it tho are you sure"" --me today, basically https://t.co/td8knwSFZD" +06/29/2018,Economists,@jodiecongirl,"@Mctaguej hahahaha, I'm sure the car wash would find a reason I'm unsuitable :) I'm also being smacked with the d… https://t.co/AePsWrIgju" +06/29/2018,Economists,@jodiecongirl,@mikesimonsen in my fantasy world you're following me because of my questions about MLS data :) +06/29/2018,Economists,@jodiecongirl,"on the up side, being unemployable gives me more time for writing https://t.co/KZjUhjWYLn" +07/02/2018,Economists,@kaushikcbasu,Huge poster of John Nash at an ordinary metro station in Shanghai. This celebration of creativity and science is a… https://t.co/NjecbgfxVC +07/02/2018,Economists,@kaushikcbasu,Which city? https://t.co/77FDsdKjDT +07/02/2018,Economists,@kaushikcbasu,“Let us go through certain half-deserted streets.” https://t.co/kNYQOTnvYu +06/27/2018,Economists,@kaushikcbasu,"RT @dikshabasu: my one year old hid a piece of cheese in her dress pocket and this, clothing manufacturers, is the best argument for why wo…" +06/26/2018,Economists,@kaushikcbasu,"Since so many people have asked me, what I can say is Arvind Subramaniam was a much-needed voice of reason and prof… https://t.co/uPIMXbMhZr" +06/26/2018,Economists,@kaushikcbasu,"RT @WorldBankSAsia: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Kno…" +06/23/2018,Economists,@kaushikcbasu,This is such sad news. Wonderful human being he was. https://t.co/EGiqP7qqUx +06/23/2018,Economists,@kaushikcbasu,That’s a number to keep handy. https://t.co/6C79KIXzg4 +06/23/2018,Economists,@kaushikcbasu,"RT @IndianExpress: #ExpressOpinion | At the Ramakrishna Mission complex in Kolkata, a different face of the religion is visible from what i…" +06/23/2018,Economists,@kaushikcbasu,@zafarsareshwala Thank you. +06/22/2018,Economists,@kaushikcbasu,Alaka Basu on A different kind of motherhood https://t.co/6CXTqCKWih +06/22/2018,Economists,@kaushikcbasu,"RT @WorldBank: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Know?"",…" +06/21/2018,Economists,@kaushikcbasu,@Anirudhsingh94 It is included in China. But in itself it is more than us. +06/21/2018,Economists,@kaushikcbasu,"Fascinating how this has changed. +Foreign exchange reserves (billions of dollars): +China 3520 +Japan 1256 +Saudi Arab… https://t.co/jVIHTt7oWb" +06/21/2018,Economists,@kaushikcbasu,"RT @kylegriffin1: Foster mom describes migrant children she cared for: + +10-year-old boy who woke screaming in the night + +9-year-old boy who…" +06/21/2018,Economists,@kaushikcbasu,"RT @WorldBankLive: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Know…" +06/20/2018,Economists,@kaushikcbasu,RT @iamaniku: #bookoftheday @kaushikcbasu ‘s The Republic of Beliefs #lawecon #law #TeachEcon https://t.co/CR3dVxXuZt +06/19/2018,Economists,@kaushikcbasu,"RT @setu_parikh: So true.... +""#Politics may well be the only occupation in which not being good at it is a virtue"" - @kaushikcbasu in ""An E…" +06/19/2018,Economists,@kaushikcbasu,"Through history the key weapon for victory has been changing—from controlling camels, to horses, to guns, to bombs,… https://t.co/1XU2fsRQ3o" +06/18/2018,Economists,@kaushikcbasu,@shantanunandan2 Old photo. Not mine. +06/18/2018,Economists,@kaushikcbasu,My attempt at Marcel Proust brooding over a troubled world. https://t.co/ZFosR6vJj7 +06/17/2018,Economists,@kaushikcbasu,@souvikpaul11 Was there. Left today. +06/17/2018,Economists,@kaushikcbasu,O Calcutta https://t.co/u9h0newnqC +06/17/2018,Economists,@kaushikcbasu,"Father’s Day photo. My father, my aunt and uncle (in the middle), my mother, three elder sisters and me. And Pompy. https://t.co/pivLsKdtCY" +06/17/2018,Economists,@kaushikcbasu,"Chorbagan Art Studio’s Nalini Sundari, in Kolkata’s Arts Acre. The gallery has a big collection of contemporary Ind… https://t.co/VlUTWSLlUj" +06/17/2018,Economists,@kaushikcbasu,RT @dikshabasu: some good fathers in my life. Happy Father's Day @MikeyMcCleary1 and original father @kaushikcbasu https://t.co/YrqAT3r6wr +06/16/2018,Economists,@kaushikcbasu,"A warning to all authors. From Simon Gray’s brilliant play The Common Pursuit. +Martin: He got his lecturership at O… https://t.co/9KeYdOVEYg" +06/16/2018,Economists,@kaushikcbasu,RT @pbmehta: Tragic Valley sinking further since this piece as Shujaat Bukhari had warned: https://t.co/Bvvs2jBqOf +06/15/2018,Economists,@kaushikcbasu,Art of Kanchan Chander. https://t.co/9H6UD8jC72 +06/15/2018,Economists,@kaushikcbasu,Bowled over by Kolkata’s Arts Acre. —One of the best-designed art museums in India. https://t.co/6p64sV18fx +06/15/2018,Economists,@kaushikcbasu,"Trump, game theory, Trudeau, +G7, focal point, WT and O. +https://t.co/HqhpRI9CgT" +06/15/2018,Economists,@kaushikcbasu,Delighted. https://t.co/N2j58bL3s7 +06/15/2018,Economists,@kaushikcbasu,Thank you. https://t.co/VfJaXm4gkR +06/14/2018,Economists,@kaushikcbasu,I am not totally sure what Ugo is saying here but i will take a chance amd retweet it anyway. https://t.co/XhUfCIMIgq +06/14/2018,Economists,@kaushikcbasu,"Alleyway near Belur, Kolkata. Neighborhood asleep as night descends. https://t.co/24Lzxdq2un" +06/13/2018,Economists,@kaushikcbasu,"RT @dikshabasu: sign up. @briangresko is a wonderful, talented, generous writer and you would be lucky to learn from him. https://t.co/0MjI…" +06/13/2018,Economists,@kaushikcbasu,"Bylane near Belur Math, Kolkata. 3.30 am. https://t.co/kZKWYkYd9w" +06/13/2018,Economists,@kaushikcbasu,“I fervently hope that the bell that tolled this morning in honor of this convention may be the death knell of all fanaticism.” +06/12/2018,Economists,@kaushikcbasu,RT @CelestinMonga: 152 million children aged 5 to 17 still in child labor—of whom 73 million in hazardous work. What would Martians think o… +06/11/2018,Economists,@kaushikcbasu,At this rate the US will end up as part of a G-1 group of nations. https://t.co/ai6c7UFOTB +06/10/2018,Economists,@kaushikcbasu,Author Diksha Basu shares her reading list of 2018 https://t.co/u1b82LJGfn via @htTweets +06/10/2018,Economists,@kaushikcbasu,And should be called “The Last Conversation”. https://t.co/7C2W63L8Ku +06/09/2018,Economists,@kaushikcbasu,"If this continues unchecked, sadly, the casualty will be India. https://t.co/naqvvGhmbp" +06/09/2018,Economists,@kaushikcbasu,Saturday diversion. https://t.co/YZ5htq6nVq +06/08/2018,Economists,@kaushikcbasu,Enhorabuena! https://t.co/tL0yowQgjM +06/08/2018,Economists,@kaushikcbasu,A sketch to ponder. https://t.co/DpuQn4PdsD +06/08/2018,Economists,@kaushikcbasu,RT @CU_Chronicle: How can societies become law-abiding? Kaushik Basu has some suggestions @kaushikcbasu @CornellCAS https://t.co/JSoqVfT3CW… +06/07/2018,Economists,@kaushikcbasu,Such a wonderful speech. https://t.co/Ro2iGzALuC +06/07/2018,Economists,@kaushikcbasu,"RT @AbhinayMuthoo: The power of #gametheory - it is applicable to all human interaction, be it social, economic or political @kaushikcbasu…" +06/07/2018,Economists,@kaushikcbasu,"Always worth re-reading this from Keynes: Mad men in authority, who hear voices in the air, are distilling their fr… https://t.co/EjwfQ919h5" +06/06/2018,Economists,@kaushikcbasu,Dusk over a city is as mystically beautiful as dusk descending over hills. https://t.co/YXin6l41AI +06/06/2018,Economists,@kaushikcbasu,A Woman on the Verge by Karna Basu https://t.co/wXlXvrOhBV via @YouTube +06/06/2018,Economists,@kaushikcbasu,"Karna Basu: Train arriving at a station. +cogs in the wheel https://t.co/U9zH9qOrNM via @YouTube" +06/06/2018,Economists,@kaushikcbasu,Dinesh D’Souza and Preet Bharara @PreetBharara slug it out on CNN via Anderson Cooper. Bharara wins hands down. +06/05/2018,Economists,@kaushikcbasu,"Regrettable trade war. But in the long run it is Mexico that is likely to come out winner. +Mexico Hits U.S. With Ta… https://t.co/7ZRWtbPDaB" +06/04/2018,Economists,@kaushikcbasu,"RT @The_LHoFT: 5️⃣ The #FinancialInclusion Top 5 - Our Favourite Stories from This Week's Coverage + +Stories by @kaushikcbasu, @euromoney,…" +06/03/2018,Economists,@kaushikcbasu,For any person X to have the right to pardon himself or herself is equivalent to asserting that ONLY X has the righ… https://t.co/8uBX5azLxf +06/03/2018,Economists,@kaushikcbasu,"RT @dikshabasu: Kevin Kwan puts me in august company. +https://t.co/h8TkneabLP" +06/02/2018,Economists,@kaushikcbasu,If you are super-rich the best form of nationalism you want is when ordinary people feel they're winning when the… https://t.co/Nl58dMfYkV +06/02/2018,Economists,@kaushikcbasu,Empire State Building. Reaching for the sky. https://t.co/kaTSrS0kFH +06/02/2018,Economists,@kaushikcbasu,What’s happening to me? I just spent the last hour listening to Steve Bannon. +06/02/2018,Economists,@kaushikcbasu,"World’s top-10 remittance recipients, 2017 (billion $) +India 69 +China 64 +Philippines 33 +Mexico 31 +Nigeria 22 +Pakist… https://t.co/z9nqp4UX7K" +06/02/2018,Economists,@kaushikcbasu,"RT @BookBub: 27 Beach Reads Recommended by Authors +https://t.co/R172fFHfoA #beachread @dikshabasu @kevinkwanbooks @almakatsu @RickMofina @R…" +06/01/2018,Economists,@kaushikcbasu,"Gertrude Stein, brooding in Bryant Park, in the shadow of New York Public Library. https://t.co/IkfiFYcczC" +06/01/2018,Economists,@kaushikcbasu,"One of the greatest Bengali poems ever written—Nazrul Islam’s Bidrohi, recited by his son Kazi Sabyasachi. +BIDROHI_… https://t.co/0zy5nNkGKs" +06/01/2018,Economists,@kaushikcbasu,Can this paper be kept away from political leaders please? https://t.co/zo6w7zfqqz +05/30/2018,Economists,@kaushikcbasu,"RT @MartenRobert: Proud to share #Sugar, #Tobacco and #Alcohol Taxes to Achieve the #Sustainable Development Goals online in @TheLancet #ST…" +05/30/2018,Economists,@kaushikcbasu,I have decided I need counseling for anger management. Seeing some of the advantages people get from their anger ta… https://t.co/GVMTgjbGma +05/28/2018,Economists,@kaushikcbasu,I am beginning to work on a new graduate course on Law and Economics and Game Theory that I will teach this Fall. T… https://t.co/Cg4BkJdNjV +05/28/2018,Economists,@kaushikcbasu,"It is not just economics that is not hard science. There is no such thing as hard science. +For every belief about t… https://t.co/knvIglXcI4" +05/28/2018,Economists,@kaushikcbasu,"Bertrand Russell, a life-long atheist, when asked what he would say if after death he found himself face-to-face wi… https://t.co/uj3hX8K5al" +05/28/2018,Economists,@kaushikcbasu,Nehru: “What the mysterious is I do not know. I do not call it God because God has come to mean much that I do not… https://t.co/Qs1gZvwF6y +05/27/2018,Economists,@kaushikcbasu,"RT @saliltripathi: India is an ""an ancient palimpsest on which layer upon layer of thought and reverie had been inscribed, and yet no succe…" +05/27/2018,Economists,@kaushikcbasu,RT @NYCMayor: The most sacred duty of government is to protect people – especially defenseless children. There is nothing more barbaric tha… +05/27/2018,Economists,@kaushikcbasu,"Diksha Basu’s book review in New York Times. +A Devastating Friendship Forged in India’s Underbelly https://t.co/C22Kilm7ks" +05/27/2018,Economists,@kaushikcbasu,"Financial inclusion +% adults having bank accounts +Canada 100 +Denmark 100 +Norway 100 +Sweden 100 +Singapore 98 +UK 96 +I… https://t.co/Av1KDoU1nE" +05/26/2018,Economists,@kaushikcbasu,"RT @sanjoynarayan: @kaushikcbasu Could be a package deal at birth: cataract, appendix, tonsils, and an additional option of a circumcision." +05/26/2018,Economists,@kaushikcbasu,"Since cataract surgery is needed once in a lifetime and nowadays, they say, it’s harmless to get it done early, I h… https://t.co/uXJC6TrEzb" +05/24/2018,Economists,@kaushikcbasu,The ideal is fake irrationality. The big risk occurs when it is not fake. https://t.co/9nFipHpneP +05/24/2018,Economists,@kaushikcbasu,"My latest piece on financial inclusion around the world, with statistics and comments on Kenya, India, Bangladesh,… https://t.co/bOIeulNuP4" +05/24/2018,Economists,@kaushikcbasu,"W.H. Auden, and someone like Virginia Wolf, keeping watch over notes on Cournot equilibrium. https://t.co/a9ZQdwQ09n" +05/24/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Behavioral economics. This picture is the most powerful illustration of how our minds can be deceived. The squares A and… +05/24/2018,Economists,@kaushikcbasu,10 Career-Altering Quotes from 2018 Commencement Speeches|Vault Blogs|https://t.co/wpktpCwwMR https://t.co/vIwfY1AlQx +05/24/2018,Economists,@kaushikcbasu,"Patrick Kabanda analyzes how the arts can nurture creativity and economic development, a connection commonly overlo… https://t.co/BCIyaIDU48" +05/23/2018,Economists,@kaushikcbasu,Just received my advance copy. Can’t deny feeling wonderful to see it done at last. https://t.co/VK1fs5zoaa +05/23/2018,Economists,@kaushikcbasu,Behavioral economics. This picture is the most powerful illustration of how our minds can be deceived. The squares… https://t.co/91NzVSsOc5 +05/22/2018,Economists,@kaushikcbasu,"With these kinds of numbers US’s enemies must be feeling pretty redundant. +School shootings in the US compared with… https://t.co/6nCQGzDfzU" +05/21/2018,Economists,@kaushikcbasu,It is entirely possible that what you see as red others see as green & what you see as green others see as red. Thi… https://t.co/VhZOzCbmc3 +05/21/2018,Economists,@kaushikcbasu,The art of Imanjama. Dar es Salaam memories. https://t.co/XrgP5ukcoN +05/20/2018,Economists,@kaushikcbasu,"Intricate, beautiful contemporary art from Tanzania. On goat skin, by Malaba. https://t.co/bAtFufuvbf" +05/20/2018,Economists,@kaushikcbasu,Tinga tinga art from Tanzania. https://t.co/xbRIGzqtoP +05/20/2018,Economists,@kaushikcbasu,"More nostalgia. The mystery of the passage of time. Kidwai Nagar, Delhi. 1983 I think. https://t.co/MYmFmiFfEd" +05/20/2018,Economists,@kaushikcbasu,"Memories. My sister’s home, Calcutta. My mother, sisters, nieces and nephew. A zillion years ago. https://t.co/4ztymByGpH" +05/20/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Any more of Megan Markle on TV and someone (name starts with T) is going to throw a fit and put an embargo on imports fro… +05/19/2018,Economists,@kaushikcbasu,Any more of Megan Markle on TV and someone (name starts with T) is going to throw a fit and put an embargo on imports from UK. +05/19/2018,Economists,@kaushikcbasu,"Running your own Frequent Flyer program: If instead of cutting your hair in America you cut it in India, Indonesia,… https://t.co/eWAj9de62U" +05/19/2018,Economists,@kaushikcbasu,Behavioral economics: The only difference between having a haircut in a salon instead of a saloon is you pay more.… https://t.co/vckaYdP9uQ +05/19/2018,Economists,@kaushikcbasu,"Ranjan Ray, in the Wire, on how rising inequality is fueling identity politics, including increased attacks on Dali… https://t.co/nQHmd9fLYt" +05/18/2018,Economists,@kaushikcbasu,My paper on randomized control trials and the ‘dinosaur risk’. https://t.co/MUi585W3lq +05/18/2018,Economists,@kaushikcbasu,"Brandeis IBS Commencement Address: “have concern for fellow human beings whatever their religion, race, gender and… https://t.co/xMNGSizeHI" +05/18/2018,Economists,@kaushikcbasu,A balanced assessment of Universal Basic Income: https://t.co/w3f0BhH81B +05/17/2018,Economists,@kaushikcbasu,"RT @soutikBBC: Ashok Mitra was an intellectual reminiscent of the left-wing French intellectuals of the mid-20th century, person India can…" +05/17/2018,Economists,@kaushikcbasu,Fun article by John Cassidy on game theory and Prisoner’s Dilemma in Trump’s White House. But please don’t take ser… https://t.co/aD257iFk0x +05/17/2018,Economists,@kaushikcbasu,During my time in the Indian government I had many interactions with the Indian media-smart & ever ready to contest… https://t.co/Fm331UdH3B +05/17/2018,Economists,@kaushikcbasu,RT @MIMProductions: The latest #BRICtalk episode has just gone live at https://t.co/fhqE2mi00o - this week @stephensackur speaks to The Wor… +05/17/2018,Economists,@kaushikcbasu,It is possible for central banks to prevent depreciation of the national currency without running down the nation’s… https://t.co/LMyflGK3th +05/16/2018,Economists,@kaushikcbasu,"Before you say God created this world and everything in it, be careful. He is unlikely to take this as a compliment." +05/16/2018,Economists,@kaushikcbasu,@himikac Thank you. +05/16/2018,Economists,@kaushikcbasu,"The world has fewer conspiracies than people think there are. And of the ones that are there, most are of little co… https://t.co/QJzEUyfBqn" +05/15/2018,Economists,@kaushikcbasu,"Late spring, Ithaca. https://t.co/Nq4DVkH14d" +05/15/2018,Economists,@kaushikcbasu,"A collage of three artists: +Laishram Meena Devi, Shipra Bhattacharya and Laxman Aelay. https://t.co/PAFFLJAgmq" +05/14/2018,Economists,@kaushikcbasu,"One kind of election meddling? +One reason why Russia & China are working to help Trump have some (temporary) foreig… https://t.co/6WwMqpfhzj" +05/14/2018,Economists,@kaushikcbasu,"Here is a hypothesis worth testing using randomized control trials: +Regular consumption of a small amount of wasabi… https://t.co/M5xi5D3Q19" +05/14/2018,Economists,@kaushikcbasu,"“We can have democracy ... or we can have great wealth concentrated in the hands of a few, but we can't have both.”… https://t.co/qydUlDJub4" +05/14/2018,Economists,@kaushikcbasu,"From the 2018 Commencement Address to Brandeis International Business School, delivered on 13 May. ""Dr. Manmohan Si… https://t.co/BUfA8oehmm" +05/12/2018,Economists,@kaushikcbasu,"Fascinating paper. My own hunch is it is not just our brain but time itself moves in pixels, discretely, in such ra… https://t.co/ODe1Uf8Sj7" +05/12/2018,Economists,@kaushikcbasu,The world moves ahead by the fact that human beings have a knack for doing the right things for the wrong reasons. +05/12/2018,Economists,@kaushikcbasu,"My Commencement Address to IBS, Brandeis University, on Sunday 13 May, 8 am (US Eastern time) will be live streamed… https://t.co/2PcjOxmoPV" +05/11/2018,Economists,@kaushikcbasu,@shankha5 @sg61us Thank you. +05/11/2018,Economists,@kaushikcbasu,"Wonderful review by James Quandt in NYRB of Mrinal Sen’s life in cinema, which also captures the spirit of Calcutta… https://t.co/W9hpyiWmWc" +05/11/2018,Economists,@kaushikcbasu,"RT @rodrikdani: My latest, on the US-China trade spat https://t.co/vAnIXSO6vT" +05/10/2018,Economists,@kaushikcbasu,"Book on governance and corruption control, edited with Tito Cordella, with chapters by Avinash Dixit, Francis Fukuy… https://t.co/3q8sN1hZa0" +05/10/2018,Economists,@kaushikcbasu,"RT @kaushikcbasu: Sarat Chandra, one of 20th century's greatest writers, was known for his irony. When after Tagore got the Nobel a man fla…" +05/10/2018,Economists,@kaushikcbasu,"RT @TheLancet: ""Sexual and reproductive health & rights are fundamental to people's health and survival, to economic development, and to th…" +05/09/2018,Economists,@kaushikcbasu,RT @strandbookstore: #signedbooks are in! https://t.co/YpDbtehgKd +05/09/2018,Economists,@kaushikcbasu,"The Windfall at the Strand, New York. https://t.co/AWI2ZCKpB3" +05/09/2018,Economists,@kaushikcbasu,"Sarat Chandra, one of 20th century's greatest writers, was known for his irony. When after Tagore got the Nobel a m… https://t.co/MRTE3Fbva2" +05/09/2018,Economists,@kaushikcbasu,"Remembering Tagore on his anniversary. Lines from his Gitanjali: +“Where the world has not been broken up into fragm… https://t.co/8OffMo7sdU" +05/09/2018,Economists,@kaushikcbasu,"Look forward to delivering the Brandeis University IBS Commencement Address 2018. +https://t.co/TPiyy3DkqU" +05/09/2018,Economists,@kaushikcbasu,"Celebrating Tagore's birth anniversary. +In the age of darkness we should invoke the poet, and tell ourselves that a… https://t.co/Fe77HVVBi6" +05/08/2018,Economists,@kaushikcbasu,And it creates a big credibility problem for all future deals struck by US presidents. The question will loom about… https://t.co/w23ea79AFs +05/07/2018,Economists,@kaushikcbasu,"RT @StuartWhatley: ""After decades of corrupt rule, economic stagnation, and other legacies of colonialism, Sub-Saharan Africa's long-term o…" +05/07/2018,Economists,@kaushikcbasu,"Palisades, New York. Enjoyed lecturing to Cornell’s Executive MBA students. https://t.co/SOT7HzAenr" +05/06/2018,Economists,@kaushikcbasu,"The soothing, early-evening silence of Sparkill, New York. https://t.co/BVQHocmTXc" +05/05/2018,Economists,@kaushikcbasu,"RT @kaushikcbasu: My Ethiopian taxi driver took a roundabout route, assured me he would not charge for the diversion & stood by that promis…" +05/05/2018,Economists,@kaushikcbasu,Memories of Dar es Salaam. With Joe Stiglitz and Benno Ndulu. https://t.co/i6KNUE6YHu +05/05/2018,Economists,@kaushikcbasu,"My Ethiopian taxi driver took a roundabout route, assured me he would not charge for the diversion & stood by that… https://t.co/oA4xqeSWvc" +05/05/2018,Economists,@kaushikcbasu,"“All I have is a voice +To undo the folded lie, +The romantic lie in the brain +Of the sensual man-in-the-street +And t… https://t.co/B7Kbnop5jN" +05/05/2018,Economists,@kaushikcbasu,"And here is the Stockholm Statement, issued by 13 economists from around the world, including 4 Chief Economists of… https://t.co/Z82rnvnQqs" +05/04/2018,Economists,@kaushikcbasu,"Avinash Dixit & Ritika Mankar’s superb essay on corruption control in Mint is a must read: +https://t.co/5kxwZkbvwm" +05/04/2018,Economists,@kaushikcbasu,And also good to see a newspaper doing such a serious story. Good for the nation. https://t.co/AaEk2rsdWG +05/03/2018,Economists,@kaushikcbasu,Kwaheri Tanzania. https://t.co/gQ6XsaCbcS +05/03/2018,Economists,@kaushikcbasu,Thank you so much for your message. https://t.co/8WryfmVprL +05/03/2018,Economists,@kaushikcbasu,Sad to leave Tanzania. One of the most friendly countries. https://t.co/2hD9mr0mwQ +05/03/2018,Economists,@kaushikcbasu,Stuck in rain-soaked rush-hour traffic in Dar es Salaam. But we did not mind because it happened on Barack Obama Dr… https://t.co/eTH13yhQes +05/02/2018,Economists,@kaushikcbasu,RT @maniza_zaman: Excellent talks @ 7th annual @ESRFTZ conference in partnership wi @SwedeninTZ. World class economists. Msg of inclusive g… +05/01/2018,Economists,@kaushikcbasu,At the end of a lively debate and discussion with students and professors at the University of Dar es Salaam. https://t.co/PUSAtghKnb +05/01/2018,Economists,@kaushikcbasu,"Artist at work, Dar es Salaam. https://t.co/zJAzcy2K3y" +05/01/2018,Economists,@kaushikcbasu,"In Makangarawe, outside Dar es Salaam. https://t.co/fvOapLdCx6" +04/28/2018,Economists,@kaushikcbasu,"Madison Avenue, New York, of course. https://t.co/NLBbgCp1ub" +04/28/2018,Economists,@kaushikcbasu,Hatred of the other is a handicap. Inability to reason is a handicap. But when hatred of the other and the inabilit… https://t.co/mp9anKy1EX +04/28/2018,Economists,@kaushikcbasu,"RT @EmpowerLtd: 📢 #GrowthMindset Opportunity ⬇️ + +Attend a FREE lecture at @UniofDar given by Economists Prof @JosephEStiglitz & Prof @kaush…" +04/28/2018,Economists,@kaushikcbasu,"I went to see my doctor for a regular check up. After a long discussion the conclusion we reached, and both of us a… https://t.co/8qhGPqWEqM" +04/27/2018,Economists,@kaushikcbasu,"Amartya Sen’s contributions to economics and philosophy celebrated in Japan. +https://t.co/AOK3zFLvj3" +04/27/2018,Economists,@kaushikcbasu,The reason America is ceasing to be a global leader is that no one wants a leader who says my aim is to make myself great again. +04/27/2018,Economists,@kaushikcbasu,Politics is that rare profession in which to be told someone is good at it (Think “He is very good at politics.”) is meant to be criticism. +04/27/2018,Economists,@kaushikcbasu,Looking forward to Dar es Salaam. https://t.co/KtcXGNwmly +04/27/2018,Economists,@kaushikcbasu,"RT @JimYongKim: I’m thrilled to welcome Penny Goldberg, who will bring her vast academic experience, intellectual rigor, and boundless curi…" +04/26/2018,Economists,@kaushikcbasu,"Aggressive Variant Of McCarthyism vs Media, Says Prannoy Roy https://t.co/T7kjKcSy9s via @ndtv" +04/26/2018,Economists,@kaushikcbasu,We tell people not to be selfish & work to make a better world. Could it be that since views differ about what is “… https://t.co/7zaX8XywVM +04/26/2018,Economists,@kaushikcbasu,Beautiful old building in New York. https://t.co/bhjvRpOjmz +04/25/2018,Economists,@kaushikcbasu,"Alaka Basu on the other side of the 'demographic dividend': +https://t.co/RAYBe60OOz" +04/25/2018,Economists,@kaushikcbasu,The art of Isaac Soyer. https://t.co/uZ41I9I8FG +04/24/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Bangladesh has now grown faster than Pakistan for 12 consecutive years. Its manufacuring sector is doing better than anyo… +04/24/2018,Economists,@kaushikcbasu,My paper on why with the advance of new technology antitrust legislation needs a major overhaul. https://t.co/0tM1FQjxU1 +04/24/2018,Economists,@kaushikcbasu,Bangladesh has now grown faster than Pakistan for 12 consecutive years. Its manufacuring sector is doing better tha… https://t.co/L7h2wcRGk7 +04/23/2018,Economists,@kaushikcbasu,"Having just seen the Grant Wood exhibition at Whitney I am convinced he was one of the great American artists, capt… https://t.co/P1Y8U6VEhq" +04/23/2018,Economists,@kaushikcbasu,One huge advantage of having the delusion of being great is that it dispenses with the need to be great. +04/23/2018,Economists,@kaushikcbasu,Looking out from Whitney Museum. https://t.co/ciRYjY49s4 +04/22/2018,Economists,@kaushikcbasu,"Hotel in Sparkill, New York. Somehow it evokes the same feeling as a Hopper painting. https://t.co/QSg1XtEJWk" +04/22/2018,Economists,@kaushikcbasu,"Endless corridor in Sparkill, New York. https://t.co/gtOvkQ5aNk" +04/22/2018,Economists,@kaushikcbasu,"Remembering a visit with my mother to the home of a gay couple - friends of mine - around this day, 20 years ago. https://t.co/MaBrdhSNQT" +04/22/2018,Economists,@kaushikcbasu,@SuPriyoBabul Thank you for your thoughts on this. Let us try to have a conversation the next time I am in Kolkata. +04/22/2018,Economists,@kaushikcbasu,"“Like Odysseus, the [US] President looked wiser when he was seated; & his hands, though capable & fairly strong, we… https://t.co/8rdl4z5gf6" +04/22/2018,Economists,@kaushikcbasu,"RT @CelestinMonga: Congrats to @JosephEStiglitz, economist extraordinaire, on winning the #2018SidneyPeace Prize for dedicating his life’s…" +04/21/2018,Economists,@kaushikcbasu,"Branko Milanovic on rising inequality and the dangers this poses for the survival of democracy, and therefore our w… https://t.co/0Gdf1oudLT" +04/21/2018,Economists,@kaushikcbasu,Diksha Basu goes paperback. https://t.co/5ReaC8QGDq +04/20/2018,Economists,@kaushikcbasu,Charcoal on paper. My attempt at capturing pensiveness. Nothing quite as uplifting as art. https://t.co/3cSV1W4SrP +04/20/2018,Economists,@kaushikcbasu,"The launch of CRADLE — Cornell Research Academy of Development, Law, and Economics. +https://t.co/v3n5KyDzkK" +04/20/2018,Economists,@kaushikcbasu,ArtExpo New York. Staggering display of talent. https://t.co/mylY3g6I00 +04/20/2018,Economists,@kaushikcbasu,"In an economic crisis to be told that political leaders, instead of professionals with expertise, are taking charge… https://t.co/niAw0BFo0b" +04/19/2018,Economists,@kaushikcbasu,"@PhillipJHay We all miss you deeply, Phil." +04/18/2018,Economists,@kaushikcbasu,The old and the new of New York. https://t.co/R3As4TBDjk +04/17/2018,Economists,@kaushikcbasu,The tragedy of religious fundamentalists & hypernationalists is that instead of spending time trying to do mathemat… https://t.co/kBkUX9IWqv +04/16/2018,Economists,@kaushikcbasu,@saliltripathi Harvard. No papers. Amartya and Emma organized it. +04/16/2018,Economists,@kaushikcbasu,A full day of fascinating discussion and debate on Bangladesh’s development in this beautiful little town in north… https://t.co/zPnrm7mSS3 +04/16/2018,Economists,@kaushikcbasu,"RT @nilanjanaroy: ""Prime Minister, we write to you not just to express our collective sense of shame and not just to give voice to our angu…" +04/16/2018,Economists,@kaushikcbasu,"RT @sagarikaghose: Speak out, women of @BJP4India. Speak out as the mothers and women you are and cry for tiny girls whose bodies lie broke…" +04/15/2018,Economists,@kaushikcbasu,"A peep into the storage room of an art gallery in Chelsea, New York. https://t.co/QQJ7skSOGW" +04/15/2018,Economists,@kaushikcbasu,"After 2 blissful days of listening & speaking on law & economics, a blissful Saturday of gallery hopping on West 24… https://t.co/CZpIeEjdBv" +04/15/2018,Economists,@kaushikcbasu,A slice of New York. https://t.co/vINkpAYTLq +04/14/2018,Economists,@kaushikcbasu,"Morality is the idea of doing good as an end in itself, in being kind and inclusive, in remembering that others—be… https://t.co/a6C8xqmjhe" +04/14/2018,Economists,@kaushikcbasu,"RT @GaelGiraud_AFD: At @Cornell, fantastic contribution by #JohnRoemer (@Yale) presenting the Kantian equilibrium @kaushikcbasu #economics…" +04/13/2018,Economists,@kaushikcbasu,Morality is important but it must not be equated with religion. Religious fundamentalists also have codes of behavi… https://t.co/g025qyKg0a +04/13/2018,Economists,@kaushikcbasu,"RT @AudreyTruschke: International news coverage of one of the recent horrific child #rape cases in India. It is hard to even read this, and…" +04/12/2018,Economists,@kaushikcbasu,Mother Teresa with daffodils. Painting by Myanmar artist Sitt Nyein Aye. https://t.co/IRgHatt18o +04/12/2018,Economists,@kaushikcbasu,"Inaugural conference of CRADLE [Cornell Research Academy of Development, Law & Economics], New York, featuring Jose… https://t.co/7Ew46qjn2W" +04/11/2018,Economists,@kaushikcbasu,@juanauribep 11 +04/11/2018,Economists,@kaushikcbasu,On my reading list. Phenomenal author. I shall soon discover if it’s a phenomenal book. https://t.co/muE9MNha0z +04/11/2018,Economists,@kaushikcbasu,Job creation & growth depend on speed & efficiency. So how many days does it take to get government permission to s… https://t.co/x97M142RyL +07/02/2018,Economists,@haroldpollack,"It makes me sad when Obamans do stuff like this, which cast shadows over worthy causes larger than themselves. We a… https://t.co/SwCmJpJFNa" +07/02/2018,Economists,@haroldpollack,RT @EricPatashnik: .@JHPPL check out our website for advance pub versions of other great articles from this issue. https://t.co/jvE1djylVW… +07/02/2018,Economists,@haroldpollack,RT @EricPatashnik: .@JHPPL and here is a provocative essay by @MiriamLaugesen challenging the conventional wisdom that the US health care s… +07/02/2018,Economists,@haroldpollack,"RT @EricPatashnik: .@JHPPL Here is a thoughtful, balanced, timely piece by Sherry Glied and @asacarny on waste & inefficiency in the US hea…" +07/02/2018,Economists,@haroldpollack,RT @EricPatashnik: .@JHPPL : now open access: advanced pub versions of essays from a great special issue on challenging the conventional wi… +07/02/2018,Economists,@haroldpollack,Pics from Chicago's Keep Families Together march. https://t.co/EG94uA2WUy https://t.co/u9UMHCvqqR +07/02/2018,Economists,@haroldpollack,"@HealthCareHuck I must demur from doing the iPhone selfie. When my progressive allies see anything powerful, they want to nationalize it." +07/02/2018,Economists,@haroldpollack,Trump’s ‘Purple’ Family Values || Puzzling piece. People agree with the President’s political+social views. So the… https://t.co/uDZcFww7Pk +07/02/2018,Economists,@haroldpollack,Wow thanks https://t.co/NkkaePuM76 +07/02/2018,Economists,@haroldpollack,"RT @davidaxelrod: As a child, she saw her father incarcerated lfor a low level drug offense. As an adult, she became a clinical psycholog…" +07/02/2018,Economists,@haroldpollack,@michalhorny @bpickar @bradfowd1 An apt metaphor in so many ways.... +07/02/2018,Economists,@haroldpollack,@bill_tilles @KevinMKruse Southland a different vibe. +07/02/2018,Economists,@haroldpollack,@Steven_Strauss @nytopinion More parsimonious hypothesis: People agree with the President’s political and social vi… https://t.co/HJ2ezGMfH4 +07/02/2018,Economists,@haroldpollack,@ron_fournier Public unions don’t always promote optimal policies. But this is damaging major loss in GOP long game… https://t.co/JnmgKr0Lfh +07/02/2018,Economists,@haroldpollack,"@bill_tilles @KevinMKruse I don’t live in Hyde Park, though that is also in the real America." +07/02/2018,Economists,@haroldpollack,RT @bruce_lambert: @haroldpollack Both the wrong-drug and wrong-patient error rate are roughly one per thousand orders or prescriptions. Th… +07/02/2018,Economists,@haroldpollack,That comes with practice. https://t.co/yT4jsKMU3E +07/02/2018,Economists,@haroldpollack,One of my favorite pastimes is to let kids take over my walking-around camera and just get creative. They so often… https://t.co/joptK2N486 +07/02/2018,Economists,@haroldpollack,"RT @EGolberstein: @onceuponA @BrendanSaloner @haroldpollack His second series was titled, ""My little brother is tired of the Pride Parade,""…" +07/02/2018,Economists,@haroldpollack,"RT @EGolberstein: I don't know why my 7 year-old decided that his first foray into photagraphy would be ""Portraits of Health Policy Researc…" +07/02/2018,Economists,@haroldpollack,@KevinMKruse I’m lectured to all the time about how I don’t understand middle-America or flyover country when I liv… https://t.co/XRiC8sOKSF +07/02/2018,Economists,@haroldpollack,@RadioFreeTom Gets better and better. +07/02/2018,Economists,@haroldpollack,@ron_fournier That column’s a punch in the gut. Especially since rampage shootings like that are genuinely hard to… https://t.co/vEOgNCYMlL +07/02/2018,Economists,@haroldpollack,@choo_ek Wow—awesome +07/02/2018,Economists,@haroldpollack,RT @jelani9: While forwarding a picture of the journalist who gave his opinion on-air that the Vietnam war was unwinnable . https://t.co/dx… +07/02/2018,Economists,@haroldpollack,RT @EricLiptonNYT: I think the nominee will be someone whose position on abortion is not clear and will be able to artfully avoid directly… +07/02/2018,Economists,@haroldpollack,"RT @jflier: @haroldpollack Though grateful to have been allowed in, I believe we have (all) given back far more than we took. The same hold…" +07/02/2018,Economists,@haroldpollack,@leahbinder That’s the question +07/02/2018,Economists,@haroldpollack,"RT @NormOrnstein: There is a strong chance three of those Dems will vote for the nominee, and McConnell will let Collins and Murkowski vote…" +07/01/2018,Economists,@haroldpollack,RT @steveabowden: @haroldpollack Terry Crews is in the movie Idiocracy. I did not learn of this fact until rather recently +07/01/2018,Economists,@haroldpollack,"RT @NebraskaBobert: @haroldpollack You maybe already know this, but... + +stegosaurus existed 150 million yrs ago +Tyrannosaurus existed 67 mi…" +07/01/2018,Economists,@haroldpollack,"RT @tonyuop: @haroldpollack When kittens jump all over each other, it is still called a dog pile" +07/01/2018,Economists,@haroldpollack,"RT @bradfowd1: @haroldpollack If you accidentally scrape the side of a rented minivan in Belfast Ireland on a narrow gate, then the rental…" +07/01/2018,Economists,@haroldpollack,RT @TheDanglyBits: @haroldpollack Copper urethral catheters have been found in the ruins of Pompeii. Urology is a very old specialty. +07/01/2018,Economists,@haroldpollack,RT @jacobwcarlson: @haroldpollack @KverityKibz James Lipton is married to the woman who posed as Ms. Scarlet on the box of the original Clu… +07/01/2018,Economists,@haroldpollack,RT @NebraskaBobert: @haroldpollack The Bible tells two stories of people going to heaven without dying: Elijah (the more familiar story) an… +07/01/2018,Economists,@haroldpollack,"RT @CKPolansky: @haroldpollack More people ride the Lexington Ave/4-5-6 line of the NYC subway each day than ride the Chicago, Boston, and…" +07/01/2018,Economists,@haroldpollack,"RT @DaveBaldwinJax: @meelar @haroldpollack Yes, but you couldn't feed or clothe them, or keep the lights on, for more than a few weeks." +07/01/2018,Economists,@haroldpollack,"RT @JMGKal: @meelar @haroldpollack Paris, Texas has its own Eiffel tower, and it looks exactly like what you would imagine" +07/01/2018,Economists,@haroldpollack,RT @meelar: @haroldpollack You could fit every living human being into a city with Paris' density and Texas' landmass +07/01/2018,Economists,@haroldpollack,This is actually a brilliant idea for a cool non-snark Twitter thread. I’ll steal it. Tell me something I don’t kno… https://t.co/zFfqGFGSuT +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @jflier I’ll send a pic in a bit. +07/01/2018,Economists,@haroldpollack,@EGolberstein McConnell’s willingness to wear the black hat is a key strategic asset for Republicans who share his… https://t.co/dek8hZfvZE +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @jflier I bet you our families knew each other. Their candy store was right there. +07/01/2018,Economists,@haroldpollack,@MitchellCares @FAIRmediawatch @nytimes Agreed. And in some cases “opinion outlet” is over-generous.... +07/01/2018,Economists,@haroldpollack,"RT @jflier: @haroldpollack In a time when refugees and migrations are under such assault, important to tell these stories, and thank US for…" +07/01/2018,Economists,@haroldpollack,"RT @CarterRubin: The Los Angeles metro is producing housing at the same rate as Detroit, Birmingham, Duluth and St Louis metros. A third th…" +07/01/2018,Economists,@haroldpollack,"@jflier My sister is much more knowledgeable. But yeah. I bet some of our ancestors knew each other. Who knows, maybe we’re 8th cousins." +07/01/2018,Economists,@haroldpollack,@MitchellCares @FAIRmediawatch A truth/accuracy chart would be more valuable than a partisan chart. One can’t compa… https://t.co/85chelAjLQ +07/01/2018,Economists,@haroldpollack,@jflier Sounds exactly like my grandparents’ route to Grand Concourse from Belarus +07/01/2018,Economists,@haroldpollack,Lost 10lbs by not lifting for two weeks. Sadly that’s 10lbs off my bench pressing set. +07/01/2018,Economists,@haroldpollack,@R_Thaler @DeanBaker13 I think lower ceo pay is doable. One problem is that pay is often pegged to that down the li… https://t.co/PtyDdb413A +07/01/2018,Economists,@haroldpollack,@RadioFreeTom @joshtpm Agree regarding foodfight working in Trump’s favor. Disagree regarding coldly civil but emph… https://t.co/eC82zzRFsO +07/01/2018,Economists,@haroldpollack,🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️ https://t.co/hfROEV0a5C +07/01/2018,Economists,@haroldpollack,@NormOrnstein Didn’t he say: “the best way to respect old rulings is to respect old rulings?” Oh wait— +07/01/2018,Economists,@haroldpollack,@JudyCBPP Ooh—We’ll be over uninvited at 5.... +07/01/2018,Economists,@haroldpollack,@mistergoat Yup—but effing Electoral College.... +07/01/2018,Economists,@haroldpollack,RT @mattyglesias: The see-sawing between “we need more civility” and “we need less political correctness” is really something to behold. +07/01/2018,Economists,@haroldpollack,@DaveBaldwinJax Indeed. +07/01/2018,Economists,@haroldpollack,I don’t know if #KeepFamliesTogether is a tactical winner. We must be politically smart. But it is a bedrock princi… https://t.co/NERF6i3wpk +07/01/2018,Economists,@haroldpollack,"RT @mattyglesias: For all the talk of liberal bubbles, it can’t be said enough that the anti-immigrant panic is being led by people who hav…" +07/01/2018,Economists,@haroldpollack,RT @daveweigel: Is the movement due to the immigration fight? ¯\_(ツ)_/¯ But there's a hardened consensus that any immigration fight is goi… +07/01/2018,Economists,@haroldpollack,@JeffRWLawyer @profmusgrave Wendy’s square hamburger (w/o mayo). +07/01/2018,Economists,@haroldpollack,RT @CharlesFinch: The #FamiliesBelongTogetherMarch felt huge on the ground. Turns out it was. #FBTChi #chicagostrong #TrumpConcentrationCam… +07/01/2018,Economists,@haroldpollack,@Dennisabm Scientists can't explain it.... +07/01/2018,Economists,@haroldpollack,Those of us who oppose mistreating immigrants are mainstream America. Let's proceed with confidence+civility at the… https://t.co/MkC0znA1HO +07/01/2018,Economists,@haroldpollack,@aravosis Trump desperately wants American politics to be a wild food fight. Let's not give him that. +07/01/2018,Economists,@haroldpollack,"@Dennisabm Indeed, though as your response indicates, no morning is perfect.... :) (Go White Sox!)" +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 1/5 https://t.co/n3jJ1I12wL" +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 4/5 https://t.co/o37ZPj3k5B" +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: The second critical message from Chicago's #KeepFamilesTogetherMarch 2/2 https://t.co/rw9J2bbkWF +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: The first critical message from Chicago's #KeepFamilesTogetherMarch 1/2 https://t.co/PmzzTG3I7h +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Superheroes come in many shapes and sizes. Chicago #KeepFamiliesTogetherMarch https://t.co/38ZFqKfZvK +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: Some signs from Chicago #KeepFamilesTogetherMarch 1/237 or whatever. (Ok, ""whatever"" is about 15....) https://t.co/lonRw…" +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Chicago #KeepFamilesTogetherMarch: The crowd... 1/9 https://t.co/EEWb2xW8d4 +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Take it… +07/01/2018,Economists,@haroldpollack,RT @EricPatashnik: This is a great opportunity for political scientists. The @monkeycageblog team is amazing. It is fantastic to see the i… +07/01/2018,Economists,@haroldpollack,RT @causalinf: The Giffen good is a great example to me of the merits of neoclassical reasoning. Very counterintuitive to the point people… +07/01/2018,Economists,@haroldpollack,RT @rgreersmith: @haroldpollack @wheelieboy #Dinosaurs4Immigration https://t.co/fbv3lFMIUA +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 5/5 https://t.co/0Mnp6jQOas" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 4/5 https://t.co/o37ZPj3k5B" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 3/5 https://t.co/XnuIda20XT" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 2/5 https://t.co/dwdYuuh5Qp" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 1/5 https://t.co/n3jJ1I12wL" +07/01/2018,Economists,@haroldpollack,"RT @trekonomics: @haroldpollack Our 10yr old today (he's been reading @repjohnlewis' graphic novel ""March"") + +""You know guys, movements take…" +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 9/9 https://t.co/yKctT4ryzs +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 8/9 https://t.co/vPM2lHITwG +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 7/9 https://t.co/FjSWMxtPKP +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 6/9 https://t.co/D649FMwPzk +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 5/9 https://t.co/hJGZeb1LVO +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 4/9 https://t.co/kW0aasi1jl +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 3/9 https://t.co/daqNiGZjQc +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 2/9 https://t.co/ztsScCIxKo +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 1/9 https://t.co/EEWb2xW8d4 +07/01/2018,Economists,@haroldpollack,"@CDBeee Ugh. Sorry to hear that, Chicago's was family friendly." +07/01/2018,Economists,@haroldpollack,The second critical message from Chicago's #KeepFamilesTogetherMarch 2/2 https://t.co/rw9J2bbkWF +07/01/2018,Economists,@haroldpollack,The first critical message from Chicago's #KeepFamilesTogetherMarch 1/2 https://t.co/PmzzTG3I7h +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 4/4 https://t.co/2ifk9ssIoQ +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 3/4 https://t.co/sXiSIMyK8h +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 2/4 https://t.co/JoQ8SJP495 +07/01/2018,Economists,@haroldpollack,Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Ta… https://t.co/cETbx4nhIe +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 15/237 or whatever=15. https://t.co/EZTs9Jv0QY +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 14/237 or whatever https://t.co/V13WtC2HSc +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 13/237 or whatever https://t.co/WPui56JlJy +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 12/237 or whatever https://t.co/Em8DxzaEfE +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 11/237 or whatever https://t.co/kMOkUJL6Yd +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 10/237 or whatever https://t.co/Q299NYxXSz +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 9/237 or whatever https://t.co/4201ggi7jw +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 8/237 or whatever https://t.co/wzSrp12LyN +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 7/237 or whatever https://t.co/mOedMUm691 +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 6/237 or whatever https://t.co/spZMucgUew +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 5/237 or whatever https://t.co/6vKnNKFwFS +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 4/237 or whatever https://t.co/zlICaQpJSd +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 3/237 or whatever. https://t.co/1UtHiil9mO +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 2/237 or whatever https://t.co/48vqKMA15q +07/01/2018,Economists,@haroldpollack,"Some signs from Chicago #KeepFamilesTogetherMarch 1/237 or whatever. (Ok, ""whatever"" is about 15....) https://t.co/lonRwoVKTM" +07/01/2018,Economists,@haroldpollack,"@MitchellCares Hey you could at lest give me a h/t for my pic, man." +07/01/2018,Economists,@haroldpollack,@ACAResource Leg +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/3u8TXZHswZ +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/reudUXDOGZ +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/rq7F67w9VD +07/01/2018,Economists,@haroldpollack,"More #KeepFamilesTogetherMarch Captain America, just because. https://t.co/vTY9o3Morc" +07/01/2018,Economists,@haroldpollack,Superheroes come in many shapes and sizes. Chicago #KeepFamiliesTogetherMarch https://t.co/38ZFqKfZvK +07/01/2018,Economists,@haroldpollack,"Pretty impressive ""The Dude"" tattoo, Spotted at Chicago #KeepFamilesTogetherMarch... https://t.co/I2sce05ezv" +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @causalinf America has truly been the promised land for so many of us. We can't slam the door behind… https://t.co/iTCLLFpwkk +07/01/2018,Economists,@haroldpollack,@annemulholland2 @causalinf @peterlorentzen Certainly a big one. We had to be cruel to be kind.... +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf I grew up with the children of many survivors. Thinking about them a lot lately. +07/01/2018,Economists,@haroldpollack,RT @causalinf: @tribalidentity @haroldpollack Thank you for this link. I’m reading the Wikipedia page about Father Patrick Desbois now. Jus… +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Have not.... +07/01/2018,Economists,@haroldpollack,"RT @causalinf: @haroldpollack @peterlorentzen They’re also very attractive people, in all respects, so it’s an interesting show to watch be…" +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Couldn’t get the link to work. +07/01/2018,Economists,@haroldpollack,@causalinf @tribalidentity Hard habit to break.... +07/01/2018,Economists,@haroldpollack,"@causalinf @tribalidentity My favorite +https://t.co/EHHwU92slA" +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Those folk are the best. +07/01/2018,Economists,@haroldpollack,"RT @causalinf: @haroldpollack @peterlorentzen I get it. I know it’s a deeply flawed system of organizing society, so I’m being somewhat fac…" +07/01/2018,Economists,@haroldpollack,@causalinf @tribalidentity They sent dissidents and refuseniks to these facilities as punishment. Some weekend you… https://t.co/rYztzxv7M7 +07/01/2018,Economists,@haroldpollack,@causalinf Never actually have seen it. My culturally-sophisticated friends love it. +07/01/2018,Economists,@haroldpollack,@peterlorentzen @causalinf Many of my older relatives were communists. Came to for understandable human reasons. B… https://t.co/zxaatr76q9 +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf 83.... +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf What was it like in ‘93 compared with today? +07/01/2018,Economists,@haroldpollack,"@tribalidentity @causalinf Prison camps, purges, and forced psychiatric hospitalizations made some of them a bit snippy...." +07/01/2018,Economists,@haroldpollack,@causalinf I grew up with refugees from USSR. Made me more anti-communist than most Republicans these days.... +07/01/2018,Economists,@haroldpollack,@drvox There were left 3rd party folk recruiting at today’s Chicago event.🤦‍♀️ +06/30/2018,Economists,@haroldpollack,@Neoavatara Well in 2016 a right wing authoritarian ran against an imperfect but safe conventional opponent. In my… https://t.co/A0wQvLK3yU +06/30/2018,Economists,@haroldpollack,@dariustahir @amitabhchandra2 That doesn’t really work in the era of efficient global transportation. +06/30/2018,Economists,@haroldpollack,"RT @Bill_Gardner: @haroldpollack Yes. And notice that while @davidharsanyi finds that it is transparent what ‘free expression’ requires, ‘d…" +06/30/2018,Economists,@haroldpollack,"Its a small thing, but well-played @TweetOfGodd, well played. https://t.co/1zXx9pNrpd" +06/30/2018,Economists,@haroldpollack,@ThomasCRicketts Also legit fear. +06/30/2018,Economists,@haroldpollack,@amitabhchandra2 That's legit fear. +06/30/2018,Economists,@haroldpollack,"Kindof amazing that if you support NATO, global economic institutions, open trade, vigorous foreign policy that con… https://t.co/UPZ1HdRJ9n" +06/30/2018,Economists,@haroldpollack,@amitabhchandra2 I’m nervous about this one. Reform and replace a better frame. +06/30/2018,Economists,@haroldpollack,"Of Course, It Could Not Happen Here via @NYTimes https://t.co/OfVotfNPGw" +06/30/2018,Economists,@haroldpollack,"RT @gregggonsalves: Remember as we see temperatures rise this weekend, that heat waves are public health crises, often affecting the elderl…" +06/30/2018,Economists,@haroldpollack,RT @LynnBlewett: 45% of children in rural areas rely on Mcaid for their health insurance coverage! 45%! thank you @GeorgetownCCF! https:… +06/30/2018,Economists,@haroldpollack,"RT @ThePlumLineGS: This is unfortunate. + +Trump faces a big test now. After Annapolis, does he stop directing the rage of his supporters at…" +06/30/2018,Economists,@haroldpollack,Anyone who has read How Democracies Die will be specifically scared by that article title. https://t.co/zcwtOt3K4F +06/30/2018,Economists,@haroldpollack,"RT @EricPatashnik: All health care systems face tradeoffs btwn access, cost and quality, & must decide how much to rely on standardized evi…" +06/30/2018,Economists,@haroldpollack,RT @SameFacts: The great Hungarian economist János Kornai protests the authoritarian takeover of his homeland. https://t.co/QI4mTsUxog +06/30/2018,Economists,@haroldpollack,@bradwrightphd Watching a bunch of machine learning videos? +06/30/2018,Economists,@haroldpollack,"RT @moira: Here's the unroll of my defense the call to #abolishICE on national security merits. h/t @reftpt +https://t.co/ygcOw2cn1V" +06/30/2018,Economists,@haroldpollack,@Park10A @Neoavatara @ThePlumLineGS Immigration reform is one set of difficult issues. Investigating crimes committ… https://t.co/baS5AP1UyF +06/30/2018,Economists,@haroldpollack,"@kdrum @MotherJones Bless, man." +06/30/2018,Economists,@haroldpollack,@Neoavatara Can't imagine. +06/30/2018,Economists,@haroldpollack,RT @EricColumbus: @Neoavatara @haroldpollack @ThePlumLineGS Many have argued for an opposite approach from that ICE-HSI letter -- to reunit… +06/30/2018,Economists,@haroldpollack,@jplesniewski Awesome. Say hi for me. +06/30/2018,Economists,@haroldpollack,RT @jplesniewski: @haroldpollack The CHC needs to read Street Level Bureaucrats. Abolishing ICE and replacing it with orgs dedicated to dec… +06/30/2018,Economists,@haroldpollack,@bdhumbert Let’s leave it there. +06/30/2018,Economists,@haroldpollack,@Neoavatara @ThePlumLineGS These policies have damaged basic law enforcement legitimacy in combatting transnational… https://t.co/6jpW8rgTEG +06/30/2018,Economists,@haroldpollack,RT @ThePlumLineGS: @Neoavatara @haroldpollack nonstory +06/30/2018,Economists,@haroldpollack,"RT @OwlTamale: @haroldpollack His reasonings can be a bit ham-handed, tbh. But he's never let me down, in court, or coldcuts" +06/30/2018,Economists,@haroldpollack,@OwlTamale @mattyglesias Wait—I know him. The Lochner piece was brilliant. But keeps slicing things too thin. I mad… https://t.co/EOFgUdKcRA +06/30/2018,Economists,@haroldpollack,"RT @mattyglesias: Hillary went to Yale Law, right? Trump should pick her." +06/30/2018,Economists,@haroldpollack,"@Neoavatara @ThePlumLineGS There is a decent case to reorganize it, to separate the traditional law enforcement/nat… https://t.co/MPDteajbaa" +06/30/2018,Economists,@haroldpollack,"RT @TomSugrue: Protest is seldom polite. It’s most effective when it’s confrontational, unsettling, disruptive. Calls for civility misunder…" +06/30/2018,Economists,@haroldpollack,@TomSugrue @mathbabedotorg Good piece +06/30/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 The gerontocracy problem is real. Would at least help with that. +06/30/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 Yeah dunno how to deal with that one. +06/30/2018,Economists,@haroldpollack,https://t.co/jfYx2wXxcH +06/29/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 Maybe—who knows. It is a better process. That motivates me more in this instance than tryin… https://t.co/RitZk2LA5c +06/29/2018,Economists,@haroldpollack,@jadler1969 @Neoavatara Still a better system. +06/29/2018,Economists,@haroldpollack,@C_Garthwaite Just a huge problem across so many levels of government. +06/29/2018,Economists,@haroldpollack,RT @C_Garthwaite: This is also a problem with the judiciary -- federal judges makes less than first year associates at many big law firms.… +06/29/2018,Economists,@haroldpollack,"@bdhumbert Also remember when Trump claimed that he sent investigators to Hawaii, and we wouldn’t believe what they were finding?" +06/29/2018,Economists,@haroldpollack,@bdhumbert Having black friend or admiring particular black ally doesn’t make you a non-racist. Many segregationist… https://t.co/QtAgAa1Ry1 +06/29/2018,Economists,@haroldpollack,@Conservative58 Awesome. BTW--You should be very proud of your daughter's professionalism and excellent work. Big grant submitted today. +06/29/2018,Economists,@haroldpollack,"@bdhumbert Birtherism, Central Park 5, comments on Mexican-American judge called the textbook definition of a racis… https://t.co/Yv7RZYe2ms" +06/29/2018,Economists,@haroldpollack,@bdhumbert Being white was never the sin. People made a bad mistake+hurt our country by supporting a grifting+errat… https://t.co/sN4fIjkGuU +06/29/2018,Economists,@haroldpollack,This letter from 19 ICE investigators is quite interesting. Proper public anger regarding ICE's harsh policies towa… https://t.co/tyLIwsDoBc +06/29/2018,Economists,@haroldpollack,@bdhumbert SHOULD was correct. Could was another matter.... +06/29/2018,Economists,@haroldpollack,"Totally sick of final proofreads on the R01 going in 3pm today. Did that one last proofread, ready to vomit already… https://t.co/yhMrMzG5Qj" +06/29/2018,Economists,@haroldpollack,Hey Amy's Dad--Tell her she left her sweater in my office. +06/29/2018,Economists,@haroldpollack,@wheelieboy I retweeted with direct link. Odd. +06/29/2018,Economists,@haroldpollack,This link seems to work better https://t.co/p0hlvuvZzQ https://t.co/XScQwaj7yn +06/29/2018,Economists,@haroldpollack,@jimgeraghty Permit to purchase should be an area in which bipartisan agreement is possible. Law enforcement might… https://t.co/ji3B1pAn6M +06/29/2018,Economists,@haroldpollack,"DId I get anything wrong here? || +There’s no silver lining to Trump’s win. We have to make our own. https://t.co/gEQAVhJ894" +06/29/2018,Economists,@haroldpollack,"@NoFuxLeft2give @Evan_McMullin And to you. Hard times, but the clarity of the situation is bracing." +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin Me too. Out to march tomorrow. Still my basic perspective 18 months in… https://t.co/8aOb4btAFf +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin Agree. I hope there is a reachable moderate group who recognize the unworthiness of… https://t.co/gU3zeBH7RO +06/29/2018,Economists,@haroldpollack,@tmwinsett @ScandalABC Tried to. Failed to make sense of any of it. +06/29/2018,Economists,@haroldpollack,@bartbing71 @dziblatt @cblatts It is a great book. +07/02/2018,Economists,@econoflove,How does reduced unemployment rate influence family patterns? https://t.co/MfmlvDHtFL +07/02/2018,Economists,@econoflove,Journals publishing relatively + on demographic economics and gender economics don't get very high impact factor ra… https://t.co/s2CULizQqr +07/02/2018,Economists,@econoflove,Decision to live together negatively affects wealth accumulation https://t.co/AiEhWXqinn … thanks @sevincrende https://t.co/AiEhWXqinn +07/02/2018,Economists,@econoflove,RT @CatoInstitute: Illegal immigrants are 47% less likely to be incarcerated than native-born Americans. Legal immigrants are 78% less like… +07/02/2018,Economists,@econoflove,Elena Stancanelli and I wrote a review of related economic literature on sexual discrimination and harassment for t… https://t.co/LoDTz0AED1 +07/02/2018,Economists,@econoflove,"RT @TheEconomist: The world’s most valuable resource is no longer oil, but data https://t.co/s8umseSYV5" +07/01/2018,Economists,@econoflove,The United States is in the midst of a demographic transition. Policymakers need to prepare for the impact it will… https://t.co/bBoci5wkWs +07/01/2018,Economists,@econoflove,updated webpage!! thanks to my talented daughter Esther Pamir https://t.co/ZZMqaDXXdP +07/01/2018,Economists,@econoflove,"RT @boysenandrew: @econoflove Alternatively, increase immigration?" +07/01/2018,Economists,@econoflove,"is 80 the new 65? +To stabilize old-age dependency ratio OECD countries need to increase retirement age by as much… https://t.co/zNEwIuFMuM" +07/01/2018,Economists,@econoflove,"Acting Saudi: men's views of women working outside the household, their misperception of other mens' views, experim… https://t.co/lTA177Tt28" +07/01/2018,Economists,@econoflove,RT @timurkuran: In China social hostilities are low overall because most Chinese are irreligious. They are not low in Muslim- & Buddhist-he… +07/01/2018,Economists,@econoflove,RT @bill_easterly: Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if other… +07/01/2018,Economists,@econoflove,"RT @DivorceFinance: Divorce Negatively Impacts People’s Retirement Readiness +The Center for Retirement Research finds that the net worth of…" +07/01/2018,Economists,@econoflove,Contemporary working mothers actually spend significantly more time per child with their children then did stay – a… https://t.co/TqPrzy5RBH +07/01/2018,Economists,@econoflove,RT @martha_j_bailey: Wasn’t @Econ_Sandy the editor of this special issue? https://t.co/WCh1qmGRSI +06/30/2018,Economists,@econoflove,RT @TheEconomist: Birds used cigarette butts to line only those nests that were infested with ticks https://t.co/Xm5YsGbg6U +06/29/2018,Economists,@econoflove,"When it comes to childcare, grandparents are the least stressful option for mum and dad https://t.co/noILCpbXQK …… https://t.co/HKt1sA3JFa" +06/29/2018,Economists,@econoflove,"RT @KeithNHumphreys: Dance like no one’s watching and write journal articles like no one’s reading because, face it, they aren’t." +06/29/2018,Economists,@econoflove,RT @jodiecongirl: they're strategizing how to locate some women I assume https://t.co/ldmlV3mtAM +06/29/2018,Economists,@econoflove,Git Shabbes +06/29/2018,Economists,@econoflove,@wwwojtekk @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Viva Polska +06/29/2018,Economists,@econoflove,"RT @wwwojtekk: @econoflove @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David No doubt, it does…" +06/29/2018,Economists,@econoflove,Coming from co editor of JPAM https://t.co/YgxUty1jHA +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @JoshuaSGoodman @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Th… +06/29/2018,Economists,@econoflove,RT @JoshuaSGoodman: @wwwojtekk @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Th… +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Special issues dri… +06/29/2018,Economists,@econoflove,"""Breastfeeding Mothers Stop Nursing Sooner when Living with Smokers"" https://t.co/kbyopxgcGf … https://t.co/kbyopxgcGf" +06/29/2018,Economists,@econoflove,RT @causalinf: @wwwojtekk @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David That applied econo… +06/29/2018,Economists,@econoflove,@wwwojtekk @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David It depends… https://t.co/l7ix2wax38 +06/29/2018,Economists,@econoflove,RT @wwwojtekk: Our failure to tax imputed rent led to all of this https://t.co/1cKAih7MbC +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @causalinf @David A single paper by… +06/29/2018,Economists,@econoflove,@MinneapolisFed @ShellyJLundberg ....Top econ departments and research institutions. We don’t have Institutes for g… https://t.co/ObSTb1wtCa +06/29/2018,Economists,@econoflove,@MinneapolisFed @ShellyJLundberg I am happy for my colleagues in macro economics A more fundamental problem in econ… https://t.co/2WyYMoyWoP +06/29/2018,Economists,@econoflove,RT @TrevonDLogan: We can’t keep doing this and call ourselves evaluating research objectively. 8/9 re-reviewed articles which were publishe… +06/29/2018,Economists,@econoflove,"RT @mileskimball: My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits when p…" +06/29/2018,Economists,@econoflove,@Undercoverhist @clarivate History of economic thought may be treated even worse in the econ profession than econom… https://t.co/bTmkcd1nc3 +06/29/2018,Economists,@econoflove,..[these three journals ranked between 130 and 144 in 2017] could it be related to GENDER? @shellyJLundberg… https://t.co/SkBUx3dzgK +06/29/2018,Economists,@econoflove,Journals publishing relatively much on demographic economics and gender economics don't get very high impact factor… https://t.co/u3jsI2l62a +06/29/2018,Economists,@econoflove,REHO went from 167th/347 economics journals for 2016 to 139th/353 in 2017. The challenge is to keep this up while c… https://t.co/Yd9vmUuRiW +06/29/2018,Economists,@econoflove,lots more than 5 in top 5? https://t.co/AZBikZptbL +06/29/2018,Economists,@econoflove,#sexratios are important variables deserving more space in economic modeling https://t.co/n8QXPob7Vh +06/29/2018,Economists,@econoflove,J of Human Resources is now 2d top journal in economics ranked by citations (IF)! right after QJE. Last year it was… https://t.co/FPJD4RLHE5 +06/29/2018,Economists,@econoflove,"new IF journal rankings: QJE still first, but now JEP is 5th, JPE is 8th, AER is 11th, econometrica is 22, JEL is 2… https://t.co/HwPfZ05Z1c" +06/29/2018,Economists,@econoflove,is other parent really a deadbeat? https://t.co/DUt4375ryK it is good to have the option to file claims but could y… https://t.co/xvx4UVOZkm +06/29/2018,Economists,@econoflove,"RT @CdnWomenEcon: https://t.co/Qu4nYXLeeQ Is Dropping The ""Hotness"" Rating After Professors Called It Sexist https://t.co/3YTCtl5BN9 via @j…" +06/28/2018,Economists,@econoflove,"""teachers have been empowered today, as they can no longer be compelled to financially support a union that does no… https://t.co/2gsA6Mkceh" +06/28/2018,Economists,@econoflove,@AbmanRyan https://t.co/aY7gOuY1S8 +06/28/2018,Economists,@econoflove,"RT @TrevonDLogan: One third of all Freedmen’s Bureau rations went to whites. In Alabama, well over half of the rations went to whites. Alth…" +06/28/2018,Economists,@econoflove,Thanks. I will post your tweets later on buffer +06/28/2018,Economists,@econoflove,"good question asked by @MarinaAdshade: There is a verb ""mothering"", the act of which could be done all genders (spe… https://t.co/Fgao1vXroS" +06/28/2018,Economists,@econoflove,this is unacceptable https://t.co/oE4esfqMWo +06/28/2018,Economists,@econoflove,overview of some of my research on the economics of #sexratios https://t.co/tp37acHbUJ +06/28/2018,Economists,@econoflove,economists need to pay more attention to #sexratios https://t.co/n8QXPob7Vh +06/28/2018,Economists,@econoflove,this story needs to be told. Most Americans have no idea of how bad Blacks have been treated in the US. https://t.co/vLG2WHQVp9 +06/28/2018,Economists,@econoflove,where are women most likely to postpone #motherhood? https://t.co/wVYzs6uehD +06/28/2018,Economists,@econoflove,"⚡️ “About #sexratios” + +https://t.co/WG3kivXnZG" +06/28/2018,Economists,@econoflove,this important article by Maria Porter was already cited 7 times in journals and has contributed to REHO's great 20… https://t.co/VPKPIFiVbe +06/28/2018,Economists,@econoflove,https://t.co/TkHjy8xIUn economists also study the music industry https://t.co/TkHjy8xIUn +06/28/2018,Economists,@econoflove,@ImranRasul3 @irmaclots on bilingualism REHO has published REHO 14-00120 https://t.co/KCXftOL0gn by Barry Chiswick… https://t.co/ObQRBJlKVI +06/28/2018,Economists,@econoflove,"""The Effects of In Utero Exposure to the 1918 Influenza Pandemic on Family Formation"" find effects of who women mar… https://t.co/XXGJpXO96c" +06/28/2018,Economists,@econoflove,"RT @rboheim: Jérôme Adda (Bocconi University), „Love, Ethnicity or Legal Status? Natural Experiments in Marriage Markets“ #espe2018 https:/…" +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972 +2015 impact factor 1.290 ) 139 OUT OF 353 ECON JOURNALS" +06/27/2018,Economists,@econoflove,Furthermore the hotness factor is ageist https://t.co/mKfYVSH5pq +06/27/2018,Economists,@econoflove,@HousingEcon Are you the Joshua Miller who just published in REHO? +06/27/2018,Economists,@econoflove,"REHO got its Impact factor for 2017: 1.33, which implies a rank of 139 out of 353. Just a bit below top tier of al… https://t.co/73cRxUSmgJ" +06/27/2018,Economists,@econoflove,keep us updated on why these two journals were punished https://t.co/SduJCFfiTc +06/27/2018,Economists,@econoflove,@Erdal_Tekin_ @JPAM_DC what percentage of the articles in @JPAM_DC are authored by economists and is it ranked as a… https://t.co/yH3yYKPF2U +06/27/2018,Economists,@econoflove,@NGimenezNadal @chvanhoutven @BhashMazumder @LeeBadgett @TimDiette @AlexTheloudis @SevincRende @sarahgracesee… https://t.co/nVtyT5uy5e +06/27/2018,Economists,@econoflove,new record impact factor for REHO: 1.33 @ChrisMHerbst @ValeriaBordone @jiondrich @jasonmfletcher @NFolbre @mguldi… https://t.co/bCWi4Nk5Ky +06/27/2018,Economists,@econoflove,new record impact factor for REHO: 1.33 @DanielePaserman @ShellyJLundberg @McGarryBE @cmommaerts @ipogadog… https://t.co/d0upylXyHn +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972​ +2015 impact factor 1.290 ) @chvanhoutven… https://t.co/rUxp1X1TVI" +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972​ +2015 impact factor 1.290 ) @Springernomics… https://t.co/MxVQvzxzsH" +06/27/2018,Economists,@econoflove,So sorry I missed #espe2018 in my hometown of Antwerpen https://t.co/Sw6ykTUHc6 +06/27/2018,Economists,@econoflove,@Stijn_Baert Do Belgians typically retire at 55? +06/27/2018,Economists,@econoflove,listen to what @childtrends suggests to help reverse some of the trauma that immigrant children may have experience… https://t.co/8ahOjE3Fk9 +06/27/2018,Economists,@econoflove,States allowing same-sex marriage showed a 6-16% increase in same-sex mortgage applications. https://t.co/UtMZQhGjQC +06/27/2018,Economists,@econoflove,Glad to see that REHOs former editor for health economics presented a paper at this conference. New editor for hea… https://t.co/bpYn4RJ9t4 +06/26/2018,Economists,@econoflove,"RT @DaphneBramham: Somehow when its #MeToo and the women are from a polygamous community, the punishment is nothing more than house arrest…" +06/26/2018,Economists,@econoflove,I agree that it is outrageous polygamy is implicitly allowed in British Columbia https://t.co/3ntsxeNI00 +06/26/2018,Economists,@econoflove,"(@EJ_RES) +Italian women face dramatic earnings losses after the birth of a child, #RES2018 study @LSEforBusiness… https://t.co/S8b4CpiyfD" +06/25/2018,Economists,@econoflove,"RT @NMDeterding: An example of the importance of strong #implementation studies. If we learn #why reform efforts fail to produce results, w…" +06/25/2018,Economists,@econoflove,Marie curie born and raised in #Poland was the first woman to obtain a doctorate in France!! https://t.co/lkL1JrD87b +06/25/2018,Economists,@econoflove,RT @kfzimmermann: Founder of Unified Growth Theory Oded Galor of Brown University Appointed Editor. He Reflects on Publishing Research in P… +06/25/2018,Economists,@econoflove,Congratulations. Hope you still will contribute to REHO as an author https://t.co/IUOT367sWZ +06/25/2018,Economists,@econoflove,RT @SDSUTweets: @econoflove Congrats on writing a great SDSU Tweet! https://t.co/WejL7bDIu6 (Ranked 1st for Jun 24.) +06/25/2018,Economists,@econoflove,Give more weight to households in both micro and macro https://t.co/qf645rrsuO +06/25/2018,Economists,@econoflove,"RT @ShellyJLundberg: Interesting paper. Spanish undergrads: ""hold a macroeconomics-biased view of the economics profession"" and there are g…" +06/24/2018,Economists,@econoflove,"Younger people are less religious than older ones in many countries, especially in the U.S. and Europe… https://t.co/FkrnW1O3AA" +06/24/2018,Economists,@econoflove,"""In Washington, D.C...the federal government reimbursed slaveholders for the cost of their human property, which is… https://t.co/oeOAswm9vu" +06/24/2018,Economists,@econoflove,never heard this before. how offensive!!! https://t.co/Fow7D4MxSw +06/24/2018,Economists,@econoflove,"UCLA and UC Berkeley on sexual harassment by faculty: ""Campuses Have Disciplined Staff and Faculty Inequitably +and… https://t.co/HuO46KGxZK" +06/24/2018,Economists,@econoflove,How exciting to be able to drive. In Jerusalem Muslim women were also recently allowed to@drive by their imams and… https://t.co/GAt7UjTToh +06/24/2018,Economists,@econoflove,More than twice as Many US women define themselves as feminists than women in UK ac to this article. Why? https://t.co/p6nn5ZrLia +06/24/2018,Economists,@econoflove,listen to what @childtrends suggests to help reverse some of the trauma that immigrant children may have experience… https://t.co/vPY09X0sMg +06/24/2018,Economists,@econoflove,latest cv https://t.co/qUsu7qYXX3 +06/24/2018,Economists,@econoflove,"glad to imeet @dclingi, another economist also trained in #anthropology; attempted to combine the two fields when w… https://t.co/mg8OfQxcrh" +06/24/2018,Economists,@econoflove,"@dclingi s@cmMcConnaughy @valeriealewis This resonates w what I wrote in 1978 ""Economics aspires to be a ""science o… https://t.co/MtipecRFOD" +06/24/2018,Economists,@econoflove,One always has a choice as to how to deal with reality. viktor Frankl was able to make it bearable to survive in c… https://t.co/CoMgsivYLh +06/24/2018,Economists,@econoflove,"RT @xftrebbi: Roger Myerson, Nobel Laureate, in grad school had his '74 paper on proper equilibrium *desk rejected* at Int'l Journal of Gam…" +06/22/2018,Economists,@econoflove,a major reason why we need more immigration: https://t.co/lxrP0oQ8ga +06/22/2018,Economists,@econoflove,(@NickWolfinger's book Do Babies Matter? showed with national data that marriage & children completely account for… https://t.co/TbNOA8k9lG +06/22/2018,Economists,@econoflove,RT @EconomicsofHE: New data: black students applying to Oxford have a 33% lower offer rate than all others. Some explanations: https://t.co… +06/22/2018,Economists,@econoflove,@ShellyJLundberg @AEACSWEP @ASSAMeeting That so many senior women are Willing to Volunteer is an indication of how… https://t.co/4COUwu0Rro +06/22/2018,Economists,@econoflove,some ideas on how diet and nutrition can help those who have Parkinson's #PwP https://t.co/Tj3nNWdeBe +06/22/2018,Economists,@econoflove,"RT @dynarski: Want to see equitable admissions to the elite colleges? Focus your ire on legacy admission, not affirmative action. + +By the f…" +06/22/2018,Economists,@econoflove,"RT @jean_twenge: Great insights from a 21-year-old iGen'er on why #iGen feels so much anxiety -- and what to do about it. +https://t.co/JswF…" +06/22/2018,Economists,@econoflove,Twitter Women @TwitterWomen https://t.co/z7VTkqjM9N +06/22/2018,Economists,@econoflove,"UCLA and UC Berkeley on sexual harassment by faculty: ""Campuses Have Disciplined Staff and Faculty Inequitably +and… https://t.co/GH0PFdziv8" +06/21/2018,Economists,@econoflove,"this ageist assumption is prevalent among Human Resource managers in Australian universities: ""conflating “potenti… https://t.co/0fpKLMBRqm" +06/21/2018,Economists,@econoflove,"RT @traceyw_soc: I realised that it is my PhD's birthday this week. +That should be a thing, right? #ImmodestWomen + +Happy birthday to #DrM…" +06/21/2018,Economists,@econoflove,@dynarski You can’t be liked by everyone. They can be tough. We were on opposite sides regarding polygamy in Br… https://t.co/c9Isaof8fI +06/21/2018,Economists,@econoflove,"RT @BehrouzBoochani: Isn’t it strange that the Australian media fully covers the news of US seperating kids from their families, but they’v…" +06/21/2018,Economists,@econoflove,RT @ShellyJLundberg: Are you a woman with a new Econ PhD working in a demanding research environment? Apply to @AEACSWEP's CeMENT mentoring… +06/21/2018,Economists,@econoflove,in a majority of cases marriage was preceded by cohabitation in the US: (67%) of those currently married had cohab… https://t.co/nX5ImCiGZu +06/21/2018,Economists,@econoflove,"https://t.co/7qMEhF3D5W In affluent, highly-educated and predominantly white districts, boys outperformed girls in… https://t.co/bkg8O6Cgap" +06/21/2018,Economists,@econoflove,"relative scholastic performance of boys and girls depends on community wealth and racial composition +https://t.co/6YhgKWWQMB" +06/21/2018,Economists,@econoflove,has anyone performed a cross country analysis of age bias in academia? across private and public institutions where… https://t.co/OFbNYjjIYP +06/21/2018,Economists,@econoflove,state often engages in more discrimination than private institutions: in France and Israel state rules that univers… https://t.co/b0EVJ4Fest +06/21/2018,Economists,@econoflove,"this ageist assumption is prevalent among Human Resource managers in Australian universities: ""assuming that staff… https://t.co/TBPsn1ionr" +06/21/2018,Economists,@econoflove,"RT @LetaHong: Congratulations, Prime Minister Ardern! https://t.co/YuBkCEavzC" +06/21/2018,Economists,@econoflove,RT @IZAWorldofLabor: Featured article: Should common law marriage be abolished? by @econoflove https://t.co/nyGppyxXoS +06/21/2018,Economists,@econoflove,(@SAGEsociology Feminist Twitter and Gender Attitudes: Opportunities and Limitations to Using Twitter in the Study… https://t.co/B8HFxEBLHJ +06/20/2018,Economists,@econoflove,RT @familylawxpress: Woman wins right to dead boyfriend’s sperm https://t.co/ze3o6IKDxi +06/20/2018,Economists,@econoflove,Perhaps related to the increased excess college education of women? Majors with heavy female ratios tend to emphas… https://t.co/2meeUWPp3c +06/20/2018,Economists,@econoflove,@MerciDecker @LipstickEcon Production also includes home production. How is home production related to capitalism? +06/20/2018,Economists,@econoflove,"To rank the best cities to raise a family, the @NicheSocial folks @CountOnStats from Census, BLS, NCES, & other par… https://t.co/NmIDnUtrXW" +06/20/2018,Economists,@econoflove,@PhilipRucker @D_Blanchflower I was very unhappy with the policy separating families and am glad @potus and company… https://t.co/c6OT3xk21s +06/20/2018,Economists,@econoflove,"Raising kids and building good couplehood constantly requires choices and therefore passing up opportunities, inclu… https://t.co/WvvDa0t0wP" +06/20/2018,Economists,@econoflove,This will mean even less demand for WIHO that Satisfies private consumption. Marriage and couple-hood will be eve… https://t.co/nOLhrpSaZy +06/20/2018,Economists,@econoflove,"RT @IZAWorldofLabor: Overall, for married women, common law marriage availability reduces work time by one to two hours a week https://t.co…" +06/20/2018,Economists,@econoflove,Beautiful Alps. I flew over them yesterday https://t.co/6bAWKdbK3F +06/20/2018,Economists,@econoflove,So sad. In how many years? https://t.co/xZHFDUypfC +06/20/2018,Economists,@econoflove,"RT @nprpolitics: #Breaking: President Trump says he will sign an executive order to end his administration's family separation policy, desp…" +06/20/2018,Economists,@econoflove,In part because more educated and richer women want to have kids with men who do more of the childcare so their men… https://t.co/YxYP4Q7HYH +06/20/2018,Economists,@econoflove,Relief coming!!!! https://t.co/g1IDAo3TOg +06/20/2018,Economists,@econoflove,RT @AP: BREAKING: AP Sources: Homeland Security secretary drafting order to end family separation at border; unclear if Trump will sign it. +06/20/2018,Economists,@econoflove,Totally messed up https://t.co/66XrI6tShh +06/20/2018,Economists,@econoflove,RT @BeckerFriedman: Research from @UChi_Economics' Manasi Deshpande cited in discussion of a decrease in disability applications as the eco… +06/20/2018,Economists,@econoflove,"RT @KenDilanianNBC: New Quinnipiac poll: American voters oppose, 66 – 27 %, the policy of separating children and parents when families ill…" +06/20/2018,Economists,@econoflove,RT @WSJ: House will vote Thursday on a broad immigration bill that would end Trump administration's practice of family separation https://t… +06/20/2018,Economists,@econoflove,increases in income have a positive impact on voting for children who grow up in poorer households. Paper link:… https://t.co/ZcJFAEGdbj +06/20/2018,Economists,@econoflove,RT @mcbridetd: One in Three Women Undergoing Breast Reconstruction Have Complications https://t.co/2iZ6K9E4rB +06/20/2018,Economists,@econoflove,"RT @GovLarryHogan: Until this policy of separating children from their families has been rescinded, Maryland will not deploy any National G…" +06/20/2018,Economists,@econoflove,RT @LeeBadgett: Labor force partic rate of Bangladeshi women goes from 30% (official stats) to 67% when expanding types of employment asked… +06/20/2018,Economists,@econoflove,"RT @DrGMLivingston: @econoflove These are the overall %s, but educational diffs are a major driver of these patterns (rural=less educ)." +06/20/2018,Economists,@econoflove,@DrGMLivingston Is this controlling for income? +06/20/2018,Economists,@econoflove,"RT @m_clem: Some have forgotten this. I have not. + +The US Administration commissioned a study of the fiscal impact of refugees, but censor…" +06/20/2018,Economists,@econoflove,Anyone has attended both #IAFFE2018 and #SEHO2018 besides @LeeBadgett ? +06/20/2018,Economists,@econoflove,RT @hceconomics: Research by HCEO Co-Director James Heckman @heckmanequation on the #ROI in early childhood education was cited in the @nyt… +06/20/2018,Economists,@econoflove,And women need to require good compensation from the adults who benefit from their WIHO https://t.co/zamAAUGTaK +06/20/2018,Economists,@econoflove,@LeeBadgett @MerciDecker And it may also be beneficial as controversy may generate more interest? +06/20/2018,Economists,@econoflove,@LeeBadgett @MerciDecker I don’t get this +06/20/2018,Economists,@econoflove,"RT @aaronecarroll: Thread. + +I'm going to try and use my quiet voice here. Let's not kid ourselves - there are data on what detaining kids l…" +06/20/2018,Economists,@econoflove,people who live in couple cook more than singles. good for health if home-cooked meals are healthier. are they? OPE… https://t.co/g53X4my1Su +06/20/2018,Economists,@econoflove,"RT @cmaconthehill: BREAKING: Canada is legalizing cannabis. The marijuana legalization bill has officially passed. + In an historic vote of…" +06/20/2018,Economists,@econoflove,Has to stop https://t.co/HoYbciAh9t +06/20/2018,Economists,@econoflove,South Korea at the top! https://t.co/0r3gKW6EVs +06/20/2018,Economists,@econoflove,RT @freakonometrics: A visual introduction to machine learning—Part II https://t.co/SOaBRzwvQN https://t.co/EYPKEAw63i +06/19/2018,Economists,@econoflove,"Country-level factors contribute more than household-level ones to +explain cross-country differences in immigrant p… https://t.co/I6gbGgDSaF" +06/19/2018,Economists,@econoflove,RT @IAFFE: Folbre: hierarchies help solve free-rider and other coordination problems. But authoritarian hierarchies created surplus extract… +06/19/2018,Economists,@econoflove,Self-control issues and limiting social pressure to share food with others may better explain why poor households b… https://t.co/lkNYyHpHBN +06/19/2018,Economists,@econoflove,yea for the women who took on sumo wrestling in Japan!!! is it harder to penetrate that world than for women econom… https://t.co/JQJiE7Vy9A +06/19/2018,Economists,@econoflove,RT @eloder: Yes. The academic promotion system is the root cause of many problems. https://t.co/r6FbKNP13G +06/19/2018,Economists,@econoflove,"RT @EricChyn: Excited to be at the @barcelonagse summer workshop with an exciting lineup of papers on child health, well-being and human ca…" +06/19/2018,Economists,@econoflove,HUGE gender gap in college completion in the USA. Other industrialized countries? https://t.co/mpzFQ6M026 +06/19/2018,Economists,@econoflove,"Women need more male involvement in home production, including childcare. Who pays for it is another issue https://t.co/jWbsC3I7HB" +06/19/2018,Economists,@econoflove,RT @TheEconomist: Both the former statistics chief's numbers and his methodology were verified by Europe's statistical agency https://t.co/… +06/19/2018,Economists,@econoflove,One father who definitely made a difference by inspiring his son https://t.co/Nsz4dIE4eN +06/19/2018,Economists,@econoflove,Unfortunately too many people don’t really care when they ask you such questions. But try to be genuine nonetheles… https://t.co/uemBaCraqS +06/19/2018,Economists,@econoflove,RT @Bengoa_Marta: What happens if EU countries would have closed borders -rely only on fertility & mortality (blue line)-?👇 what a shock! A… +06/19/2018,Economists,@econoflove,Something I would like to read https://t.co/5wIPyAx9FA +06/19/2018,Economists,@econoflove,The myth of Sisyphus still applicable so many centuries later!! https://t.co/ieWekOh4wI +06/19/2018,Economists,@econoflove,"children cared for by #grandparents are better at naming objects, but worse on other #cognitive outcomes https://t.co/Ozq73cqJYo" +06/19/2018,Economists,@econoflove,@kearney_melissa @causalinf @gbenga_ajilore @Noahpinion @DavidAJaeger @NeumarkDN @Joni_Hersch +06/19/2018,Economists,@econoflove,yea for the women who took on sumo wrestling in Japan!!! is it harder to penetrate that world than for women econom… https://t.co/r2aSmJlXkM +06/19/2018,Economists,@econoflove,@cryptoecongames do you mean an article from 2010? +06/19/2018,Economists,@econoflove,@kearney_melissa ...however most economists continue to focus on the elite schools (and the elite journals)… https://t.co/UGrvnFfJp8 +06/19/2018,Economists,@econoflove,@kearney_melissa the obsession with Ivy League and other elite schools in the US is also bad for research. For inst… https://t.co/zLWNutRGlu +06/18/2018,Economists,@econoflove,"2nd generation migrants to the US outearn the native-born by 2% controlling for education, demographics, and geogra… https://t.co/ZtEs0VnjAQ" +06/18/2018,Economists,@econoflove,"Despite changing gender roles, many still perceive mothers as better equipped than fathers to care for children… https://t.co/lczWl1bEbT" +06/18/2018,Economists,@econoflove,predicted deficit numbers resulting from Social Security and Medicare commitments are truly mind-boggling: 82 trill… https://t.co/5LACSN8K3l +06/18/2018,Economists,@econoflove,"RT @PRBA_ISR: Waldo Johnson former @PRBA postdoc. Non-residential fathers aren't necessarily absentee, research shows@SociologistRay @Darri…" +06/18/2018,Economists,@econoflove,does the gender gAP shrink when tehre are more female instructors? https://t.co/P24uLQXACe +06/17/2018,Economists,@econoflove,"household economics is also about understanding consumption, including generational effects on what people consume https://t.co/8ExuWbSC5E" +06/17/2018,Economists,@econoflove,Tokyo consists of many small homes and it is really hard to find an address! https://t.co/NJmd3IW8W9 +06/17/2018,Economists,@econoflove,"In Japan, men are taking parenting classes to become more marriageable. [post by @SevincRende] https://t.co/WjJxcIIoBa" +06/17/2018,Economists,@econoflove,RT @simongerman600: Population change in the former Soviet Union Republics from 1989 to 2018. Horribly designed #map (crap labels and colou… +06/17/2018,Economists,@econoflove,Fathers’ early parenting quality affected by mothers [post by @SevincRende] https://t.co/15xsW6NJjE +06/17/2018,Economists,@econoflove,"Dads often earn more, even if they’re not harder workers [post by @SevincRende] https://t.co/dXROaWViGp" +06/17/2018,Economists,@econoflove,Was Easterlin inspired by Freud? https://t.co/6pwIT6ccaI +06/16/2018,Economists,@econoflove,"RT @lymanstoneky: I'm in @NRO today, talking about how the twin forces of mass incarceration and a societal shift away from marriage has le…" +06/16/2018,Economists,@econoflove,RT @eckelcc: Nominate someone you love. https://t.co/HaZQTY63fK +06/15/2018,Economists,@econoflove,"RT @sarahgracesee: ""Being bored, however, can be a good thing for children’s mental health."" Another reason why time investments that start…" +06/15/2018,Economists,@econoflove,RT @spattersearch: Family Demography PhD students! Check out this awesome postdoc opp @unisouthampton https://t.co/lnf8bltPFG +06/15/2018,Economists,@econoflove,REVERSIBLE CONCEPTION!!! https://t.co/lXNQDj6c4s +06/14/2018,Economists,@econoflove,"@MarinaAdshade: ""a woman told me that when sex robots are available there will be ""no more women"". The idea that th… https://t.co/NIX7Gy25bg" +06/14/2018,Economists,@econoflove,"RT @econnaturalist: …to be someone who actually would return the envelope. Contrary to the implications of the self-interest model, honest…" +06/14/2018,Economists,@econoflove,"RT @ManhattanInst: ""Family-friendly"" policies: The gender paradox of the Nordic welfare state. https://t.co/2HvTCKFSQQ via @KayHymowitz htt…" +06/14/2018,Economists,@econoflove,Recruiting new students at my university: come and enjoy the beach!! https://t.co/50OyyezNzm +04/18/2018,Economists,@SBronars,"RT @BEA_News: What’s the economic value of cooking, cleaning, watching the kids and so forth? BEA plans to release a new batch of statistic…" +04/18/2018,Economists,@SBronars,"https://t.co/lwGgXvlFLA + +Almost 70 percent of births in Iceland are outside of marriage" +04/18/2018,Economists,@SBronars,"RT @MyDaughtersArmy: Barbara Bush, 1990 Wellesley College commencement speech: + +""Somewhere out in this audience may even be someone who wil…" +04/17/2018,Economists,@SBronars,"RT @tomwcleary: Tammie Jo Shults, pictured left, was the pilot of Southwest Flight 1380 when an engine failed mid-air. She is being hailed…" +03/13/2018,Economists,@SBronars,RT @darrenrovell: My haul from the 1985 Donruss pack I opened tonight: TWO Roger Clemens rookies. https://t.co/nRobPYOqr0 +03/02/2018,Economists,@SBronars,"RT @SweeneyABC: .@SouthwestAir plane attempts to land at Reagan National, but winds force it to abort landing. #goaround @dcairports Video:…" +02/04/2018,Economists,@SBronars,Why Women’s Voices Are Scarce in Economics https://t.co/bLJxc3vGMs +02/03/2018,Economists,@SBronars,RT @chicagoboothrev: What can the US learn from Mexico about privatizing social security? @ChicagoBooth's Chad Syverson shares insight on t… +01/30/2018,Economists,@SBronars,The average age of first-time mothers in the Netherlands is now 29.8 years. https://t.co/gA1bBnlY81 +01/30/2018,Economists,@SBronars,"RT @amish973: Nepal received an estimated $6.6 billion in remittances, equivalent to 31.3% of its GDP, the highest in the world: +https://t.…" +01/30/2018,Economists,@SBronars,"RT @Super70sSports: Today in 1975, the Bears select Jackson State's Walter Payton with the 4th overall pick in the NFL Draft. I'd say that…" +01/29/2018,Economists,@SBronars,RT @BeckerFriedman: Business economics major proposed by @uchieconomics and @chicagobooth. @uchieconomics' John List says the major would b… +01/29/2018,Economists,@SBronars,@tamcfall Especially since Wooden was from Purdue +01/28/2018,Economists,@SBronars,"RT @RaviNepal: Nepal is one of most inclusive emerging and developing Asian economies, according to @wef's Inclusive Development Index 2018…" +01/28/2018,Economists,@SBronars,"RT @elonmusk: When the zombie apocalypse happens, you’ll be glad you bought a flamethrower. Works against hordes of the undead or your mone…" +01/28/2018,Economists,@SBronars,RT @drluebbers: Does homeopathy work? https://t.co/KGGXYlXcu2 +01/28/2018,Economists,@SBronars,RT @darrenrovell: Early Candidate For Stat Of The Year https://t.co/rT1adhOpej +01/26/2018,Economists,@SBronars,@mattehunt82 Very basic +01/26/2018,Economists,@SBronars,Paul Romer had some parting thoughts after resigning as World Bank chief economist https://t.co/1HTkW7MWen via @WSJ +01/25/2018,Economists,@SBronars,"RT @bill_easterly: Great Angus Deaton article on how extreme poverty in the US is more frequent than previously thought, some foreign aid s…" +01/25/2018,Economists,@SBronars,"The demand for concessions at NFL games is elastic! +https://t.co/nGB3xE6EXK" +01/25/2018,Economists,@SBronars,RT @BeckerFriedman: Research from @chicagobooth's Marianne Bertrand on gender pay gap finds that spouses tend to be less happy if the wife… +01/24/2018,Economists,@SBronars,RT @tamcfall: I hope someone got an attaboy for typing these details: https://t.co/syN2ZnOSki +01/23/2018,Economists,@SBronars,RT @Tribeca: Major congratulations to the great Rachel Morrison (@MorrisonDP) on becoming the first woman cinematographer to ever receive a… +01/23/2018,Economists,@SBronars,"RT @IZAWorldofLabor: Featured article: The importance of measuring dispersion in firm-level outcomes, by Chad Syverson @UChi_Economics http…" +01/23/2018,Economists,@SBronars,"RT @darrenrovell: On cover of SI on this day in 1967: Packers backup WR Max McGee, who was so sure he wouldn’t play in Super Bowl I, he sta…" +01/23/2018,Economists,@SBronars,RT @typesfast: I’m in Seattle and there is currently a line to shop at the grocery store whose entire premise is that you won’t have to wai… +01/23/2018,Economists,@SBronars,RT @BeckerFriedman: Prof. Bob Lalonde’s friends and colleagues reflect on his many contributions in a BFI statement found here: https://t.c… +01/21/2018,Economists,@SBronars,"RT @TomHall: Rhino + +Road + +Rage! + +Getting ready for Monday. + +🦏 🦏 🚗 🦏 🦏 + +#SundayMorning #NationalHugDay #ChampionshipSunday #SundayFunday…" +01/21/2018,Economists,@SBronars,RT @joshgans: How does someone get papers on money and parenting into Econometrica in the same issue? https://t.co/fnsZ4BChSm +01/15/2018,Economists,@SBronars,"RT @Super70sSports: Today in 1968, the Packers defeat the Raiders in Super Bowl II. Remember this when the NFL cheats us again this year by…" +12/31/2017,Economists,@SBronars,"RT @WSJ: For all the energy and resources coaches dedicate to finding the quarterbacks of the future, they are wrong a lot. https://t.co/iY…" +12/30/2017,Economists,@SBronars,RT @bill_easterly: Anne Case on the adversarial culture in economics and why there are so few female economics professors https://t.co/Ih5h… +12/29/2017,Economists,@SBronars,RT @agoodmanbacon: This is one of the most amazing papers I've ever seen. The authors got a standing ovation in the middle of an NBER talk… +12/19/2017,Economists,@SBronars,"291 workplace suicides in 2016, highest amount since this census began in 1992. 500 workplace homicides in 2016 - h… https://t.co/lqyw4CJEyc" +12/11/2017,Economists,@SBronars,RT @BrianCAlbrecht: The beauty of short abstracts https://t.co/HhXwckkcGR https://t.co/MXXXgVXApW +12/03/2017,Economists,@SBronars,"RT @SteveBartlettSC: Netflix surpasses TV. + +TV continues it’s slow death at the hands of the on-demand generation. https://t.co/ppkWF42Hzw" +12/03/2017,Economists,@SBronars,RT @dougwebberecon: My forthcoming Journal of Labor Economics paper on the returns to college for “academically marginal” students is now o… +11/25/2017,Economists,@SBronars,RT @bubbaprog: 51 kids on that UCF roster have now experienced both a winless and an unbeaten season. +11/24/2017,Economists,@SBronars,RT @paul1kirby: Fascinating @OECD picture of job creation & losses by country & sector since 2010. Striking contrasts e.g. 🇬🇧 vs 🇫🇷 https:/… +11/24/2017,Economists,@SBronars,"RT @UpshotNYT: Mothers have important influences on their children's career choices, too. https://t.co/7XQq8hD4bH" +11/07/2017,Economists,@SBronars,RT @darrenrovell: The highlight you might have missed yesterday. https://t.co/SJd60ZlwzX +11/05/2017,Economists,@SBronars,RT @RealMikeWilbon: Are we looking possibly at a Rams v Eagles NFC Championship game? +10/31/2017,Economists,@SBronars,"RT @kearney_melissa: 7yr old: “Mommy, you bring up economics in every conversation. You act like Economics is about everything.” +Yep. Essen…" +10/31/2017,Economists,@SBronars,"France, Land of Croissants, Finds Butter Vanishing From Shelves https://t.co/Y7uEbA5N8m" +10/29/2017,Economists,@SBronars,Opinion | America’s Best University President https://t.co/U410UbEEFF +10/11/2017,Economists,@SBronars,Scientists find $1.8 million worth of gold in Switzerland's wastewater https://t.co/abRxmEFV0E via @business +09/02/2017,Economists,@SBronars,RT @hillisthekillis: Even in a disaster no one wants the vegan food. https://t.co/KtswW7GLSI +09/02/2017,Economists,@SBronars,RT @bill_easterly: Something is going right in Development when global poverty rate has fallen from 70 percent to 30 percent in last 25 yea… +08/30/2017,Economists,@SBronars,"RT @davejorgenson: ""Where we're going, we don't need roads."" https://t.co/QlFy38ncwm" +08/30/2017,Economists,@SBronars,RT @SteveRHardy: You can tell when an aid group comes from Louisiana because they load up on EMERGENCY SPICES https://t.co/gI6hWRoC6I +08/30/2017,Economists,@SBronars,RT @AnupKaphle: “We hope people won’t overlook the desperate needs of people here because of disasters closer home.” https://t.co/e7BTj83uf… +08/29/2017,Economists,@SBronars,"Food away from home expend. as % of total food exp. by income: +Bottom 1/5 35.2% +2nd 1/5 37.5% +3rd 1/5 40.6% +4th 1/5 43.8% +Top 1/5 50.5% +#CEX" +08/20/2017,Economists,@SBronars,RT @jwPencilAndPad: There is no longer any distinction between Nicolas Cage's movies and Nicolas Cage's life. https://t.co/ADrRuJboUZ +08/17/2017,Economists,@SBronars,"Today is the first time the Cubs have lost a game when scoring at least 10 runs since May 28, 2006 against the... https://t.co/c9lQgUi6qY" +08/15/2017,Economists,@SBronars,RT @Alan_Krueger: Movement of workers from outside the labor force into the labor force reached a record LOW in the first half of 2017. htt… +08/08/2017,Economists,@SBronars,RT @martinstaylor: Terrific optical illusion by Victoria Skye. @RichardWiseman @chriscfrench https://t.co/IeSFupAcfU +08/08/2017,Economists,@SBronars,Private sector job openings up 12.0% compared to last year (June to June). In construction up 31.6%. #JOLTS https://t.co/wGP8WZtECe +07/31/2017,Economists,@SBronars,RT @bill_easterly: Economics https://t.co/wakP8ddUBv +07/31/2017,Economists,@SBronars,Bartman receives Cubs World Series ring https://t.co/YuZe0lZQ64 +07/27/2017,Economists,@SBronars,"RT @MOhlhausenFTC: In the 1950s, less than 5% of U.S. jobs needed a license. Today, that number is between 25 and 30%. @Heritage https://t.…" +07/26/2017,Economists,@SBronars,"RT @dinapomeranz: Not new but still relevant: much less bunching of p-values at significance level in RCT-based papers. +ht @dariosidhu +http…" +07/21/2017,Economists,@SBronars,"RT @BenLeubsdorf: Congratulations, Rhode Island: You've finally regained all the jobs you lost in the recession https://t.co/5IVl8gTSJY htt…" +07/21/2017,Economists,@SBronars,"If premiums were 25% of insurers’ avg. costs, at most 1/2 of potential enrollees would buy insurance. https://t.co/lUPS4Sxhvu" +07/20/2017,Economists,@SBronars,RT @NinjaEconomics: Americans now lose more property to civil asset forfeiture than to burglary each year h/t @LettieriDC https://t.co/q0Ux… +07/18/2017,Economists,@SBronars,RT @business: Phil Mickelson will play the British Open with no drivers https://t.co/gN4oR0XAXk https://t.co/BGxPJQEVdX +07/17/2017,Economists,@SBronars,"RT @RaviNepal: How has number of extremely poor people changed since 1990? Great #dataviz by @worldbankdata. +#globaldev #endpoverty +https:/…" +07/15/2017,Economists,@SBronars,"RT @toby_n: Wow - great chart showing age, gender and education of UK population in 2016 https://t.co/Gggp8curQv https://t.co/gLZqJF9CF8" +07/14/2017,Economists,@SBronars,"RT @NinjaEconomics: Woman knocks over $200,000 worth of art trying to take a selfie https://t.co/j4NQBu1FfA https://t.co/uqIl27x6zZ" +07/14/2017,Economists,@SBronars,"RT @dinapomeranz: Without immigrants Europe's population will start to shrink. Especially Germany, Austria, Malta, Finland: +Ht @m_clem +http…" +07/12/2017,Economists,@SBronars,RT @elizabethminkel: Never in my life have I been so caught off-guard by a 'regionalisms for certain terms' map. TENNIS SHOES? ALL OF YOU S… +07/12/2017,Economists,@SBronars,RT @econoflove: huge #babyboom generation reaches #retirement ==> more #RV s on the road https://t.co/5L2f0i57vY +07/12/2017,Economists,@SBronars,"RT @darrenrovell: BREAKING: 29 NFL teams will make $55 MILLION EACH from relocation fees of Rams, Chargers & Raiders + +https://t.co/8kr5geG1…" +07/09/2017,Economists,@SBronars,"RT @NeumarkDN: Incredible how innaccurately the @nytimes characterizes #minimumwage research. +Bias or ignorance? + +https://t.co/mYQVoUSOXr" +07/09/2017,Economists,@SBronars,"RT @RaviNepal: The 🌏 world's fastest growing economies in 2017: +3. Nepal🇳🇵 +4. India🇮🇳 +9. Bangladesh🇧🇩 +9. Bhutan🇧🇹 + +#globaldev + + https://t.…" +07/03/2017,Economists,@SBronars,"RT @BrookingsEcon: A simple, low-cost way to improve high school student performance: push back start times → https://t.co/NKH32dGiFo https…" +07/03/2017,Economists,@SBronars,RT @WSJecon: The share of foreign-born workers in the U.S. labor force reached a new high last year https://t.co/ytTWw8P94d +07/02/2017,Economists,@SBronars,RT @darrenrovell: Just awesome. https://t.co/51jZLYIZ7t +06/27/2017,Economists,@SBronars,RT @EU_Eurostat: Euros or dollars? EU trade in goods by currency https://t.co/mxox7S4sTt https://t.co/lXk3op19TL +06/27/2017,Economists,@SBronars,@Espngreeny @espngolic @MikeAndMike NFL's prohibition on drafting underclassmen is legal because it was collectively bargained with NFLPA +06/25/2017,Economists,@SBronars,"Most refugees to be jobless for years, German minister warns https://t.co/woJtaOOUDR" +06/25/2017,Economists,@SBronars,RT @GrantTucker: And the headline of the year goes to... https://t.co/SiboZ2gFex +06/23/2017,Economists,@SBronars,"RT @JeffreyKleintop: Deflationary impact of technology: everything in this Radio Shack flyer from 1991 adds up to $3,285.12 and can be done…" +06/22/2017,Economists,@SBronars,"RT @darrenrovell: 30 Years Ago Today: One of the worst trades of all time. + +SuperSonics trade the #5 pick @ScottiePippen to Bulls for #8 p…" +06/22/2017,Economists,@SBronars,RT @drmoore: This is my favorite tweet of the year. https://t.co/C54Lrv1Dg0 +06/19/2017,Economists,@SBronars,"RT @darrenrovell: Brian Harman's bogey on 18 just cost him $247,989. Ties for second at US Open instead of getting sole second." +06/18/2017,Economists,@SBronars,"RT @JimPethokoukis: HS graduation day for Daughter, 18! Aww yeah! I just showed her the BLS ""employment rates by education level"" chart." +06/12/2017,Economists,@SBronars,"RT @darrenrovell: The Braves' ""Beat The Freeze,"" sponsored by RaceTrac, is the best new promotion in sports (H/T @BenKing20) https://t.co/e…" +06/10/2017,Economists,@SBronars,Veronica Guerrieri on the American dream - Chicago Booth Review https://t.co/6L8liqxnrb via @chicagoboothrev +06/10/2017,Economists,@SBronars,"RT @Noahpinion: 55.1 percent of the rise in urban murder last year came from one city: Chicago. What is going on, Chicago?? https://t.co/6x…" +06/10/2017,Economists,@SBronars,Warriors gave up 49 points in a quarter with 8 missed free throws? They are playing like an All-Star team. #TheFinals +06/04/2017,Economists,@SBronars,"How to rob a bank, according to economics https://t.co/UAtSif548g +2000-06 Italy had > 3X the bank robberies of Germany, >4X France, >14X UK" +06/02/2017,Economists,@SBronars,RT @crampell: number of babies born in Japan fell below 1 million in 2016 for first time since records began in the 19th century https://t.… +06/01/2017,Economists,@SBronars,RT @darrenrovell: BREAKING: Google says most misspelled word in Wisconsin is...Wisconsin https://t.co/UAxZvMuUVY +05/29/2017,Economists,@SBronars,"One of the positives of an aging society. Petty officers: As crime dries up, Japan’s police hunt for things to do https://t.co/cfCAMyx9fk" +05/28/2017,Economists,@SBronars,Why are so many women dropping out of the workforce? https://t.co/rb5po3LNez +05/28/2017,Economists,@SBronars,RT @Rainmaker1973: A domino can knock over another domino about 1.5x larger than itself. An awesome mechanical chain reaction https://t.co/… +05/28/2017,Economists,@SBronars,"RT @BrookingsEcon: In 2016, 6% of the federal budget went toward paying interest on debt: https://t.co/19ZgrW9fJV https://t.co/j1N6liA7eI" +05/28/2017,Economists,@SBronars,RT @SportsCenter: Is this the most bizarre strikeout ever? Yes. #SCNotTop10 https://t.co/ViaYjzb15d +05/20/2017,Economists,@SBronars,"https://t.co/b8PziQVvb5 + +44% of Houston's high school valedictorians were previously English as a Second Language students" +05/20/2017,Economists,@SBronars,RT @HarvardBiz: Forty percent of Fortune 500 companies were founded by immigrants or the children of immigrants. https://t.co/DlgXLoZYSv +05/20/2017,Economists,@SBronars,"T.J. Ford graduates 14 years after Texas exit, credits Rick Barnes https://t.co/bGp1cMB6T6 +via @ESPN App https://t.co/f7Wrh6tAwP" +05/20/2017,Economists,@SBronars,@tamcfall No one. And this is in Boston. +05/14/2017,Economists,@SBronars,RT @WSJ: Parents drop the mike: Number of baby boys named Michael fell last year to lowest level since 1940 https://t.co/ZKIKK11y5v +05/12/2017,Economists,@SBronars,RT @brent_moulton: New from Political Arithmetick - Can mismeasurement explain the recent slowdown in productivity? https://t.co/4Cya9SYrtB +05/12/2017,Economists,@SBronars,RT @RealMikeWilbon: If LeBron should be MVP every year then Pop should be coach-of-the-year every year...Duncan gone. Parker gone. Leonard… +05/12/2017,Economists,@SBronars,RT @BillSimmons: I bet against the Spurs. Is this what other people feel like when they bet against the Patriots? +05/10/2017,Economists,@SBronars,"RT @darrenrovell: When Manu Ginobili made his NBA debut, James Harden was in the 7th grade." +05/10/2017,Economists,@SBronars,Manu +05/04/2017,Economists,@SBronars,Italy & Germany have the highest proportion of adults over age 65 among EU countries. Slovakia & Ireland have fewes… https://t.co/FO5NwoKNYa +05/02/2017,Economists,@SBronars,"RT @dinapomeranz: Same means, standard deviations and correlation! +https://t.co/6Ya5hpNquv https://t.co/2dZkQE95ns by @JustinMatejka & Fitz…" +05/01/2017,Economists,@SBronars,https://t.co/8QVSLHHYme +04/26/2017,Economists,@SBronars,"RT @darrenrovell: Spurs coach Gregg Popovich reportedly leaves $5,000 tip in Memphis. Reporter @kbrad5 says matches handwriting, date Spurs…" +04/24/2017,Economists,@SBronars,RT @alansmurray: Really? Hash browns recalled for possible golf ball contamination https://t.co/yMmgeKDk0I +04/24/2017,Economists,@SBronars,"RT @JustinWolfers: As the rich are living longer, they're taking more, destroying the progressivity of government programs. https://t.co/Mk…" +04/22/2017,Economists,@SBronars,RT @TheEconomist: The world’s most dangerous cities https://t.co/nsbqhf9u0f +04/17/2017,Economists,@SBronars,"David Donaldson, Economist Who Studies Trade Benefits, Wins Clark Medal https://t.co/HtVAISX0oB" +04/17/2017,Economists,@SBronars,".@ColinCowherd +St. Louis has the country's highest murder rate but apparently millenials love St. Louis +https://t.co/sWKyJbfBkA" +04/17/2017,Economists,@SBronars,It looks like life is not so tough for older rabbits. https://t.co/Hm0InO54gr +04/15/2017,Economists,@SBronars,"Afr Americans 7.1% of MLB players. Jobs w %black>7.1% physicians, judges, elec engineers, chemists, management. #42 https://t.co/Gxi1win4iG" +04/15/2017,Economists,@SBronars,"2016 Data +Employment/Population Age 25-54 + U.S. Canada +Men 85.0% 85.0% +Women 71.1% 77.8%" +04/15/2017,Economists,@SBronars,From ‘Zombie Malls’ to Bonobos: America’s Retail Transformation https://t.co/f3ENhivPHm +04/15/2017,Economists,@SBronars,RT @darrenrovell: 70 Years Ago Today: Jackie Robinson's historic Major League debut https://t.co/e4N2rNToZx +04/15/2017,Economists,@SBronars,"RT @dinapomeranz: After pope visited Brasil, use of birth control fell and # of births↑ +But effect faded & longrun # of children was unaff…" +04/15/2017,Economists,@SBronars,"RT @Alan_Krueger: Congratulations to @benbernanke , next AEA president." +04/15/2017,Economists,@SBronars,RT @MarketWatch: Occupations that are over 80% female are expected to grow at 2x the rate of male-dominant jobs in the next 10 years https:… +04/13/2017,Economists,@SBronars,"In 12 months ending Feb 2017, 63.0 million people hired & 60.6 MM separated from jobs; net gain of 2. 4 MM. #JOLTS https://t.co/o0ojQpRm8U" +04/11/2017,Economists,@SBronars,RT @DegenRolf: I didn't notice that the resentment against the replication movement in psychology went that much below the belt. https://t.… +04/09/2017,Economists,@SBronars,RT @Alan_Krueger: Excellent segment by PBS @NewsHour on @Give_Directly Universal Basic Income program in Kenya. https://t.co/NI0LdQbtoB +04/07/2017,Economists,@SBronars,"Household survey employment +919k in past 2 months & unemployment rate 4.8% to 4.5%, but payroll emp up just 317k. #JobsReport" +04/03/2017,Economists,@SBronars,RT @ModeledBehavior: @Noahpinion @SBronars I don't think Steve's point is about assigning blame for our infrastructure costs but that your… +04/03/2017,Economists,@SBronars,"@Noahpinion my point is that for your new WPA to pay less than prevailing wages, you have to deal with Davis Bacon" +04/03/2017,Economists,@SBronars,"@Noahpinion current law requires contractors pay at least prevailing wage (on DOL webpage), by county, type of construction and occupation." +04/03/2017,Economists,@SBronars,@Noahpinion Davis Bacon raises labor costs for govt construction projects; e.g. in Detroit common laborers are paid… https://t.co/LfIwMsNvfP +04/03/2017,Economists,@SBronars,RT @PatrickRuffini: % of voters who live in uber-educated precincts (60%+ college grad) by state. https://t.co/IX6ULA2VBt +04/02/2017,Economists,@SBronars,"Smith most common US surname +2.8% from 2000-10 +Hernandez Lopez & Gonzalez rank 11-13th but up 47.7%, 40.7% & 40.7% +https://t.co/AdN77xZrDX" +04/02/2017,Economists,@SBronars,https://t.co/tgw7C110EW +03/30/2017,Economists,@SBronars,Fed Sees Car Trouble Down South https://t.co/895xHyMzR8 via @WSJ +03/30/2017,Economists,@SBronars,RT @conradhackett: Data nerds: Fire up your statistics package - the 2016 General Social Survey data has just been released https://t.co/bd… +03/20/2017,Economists,@SBronars,Questionable calls in the UNC-Arkansas game. +03/18/2017,Economists,@SBronars,RT @darrenrovell: #1 seed UConn women beat #16 Albany by 61. Spread was 49. +03/18/2017,Economists,@SBronars,"65 metro areas in US have unemployment rate less than 4%, Wisconsin has the most, 7. Texas & Utah have 5 each. https://t.co/1uOCZTjAg8" +03/18/2017,Economists,@SBronars,"13 metro areas in US still have unemployment rate>=10%, 9 are in California (one metro area each in AZ, IL, NJ & WA) https://t.co/1uOCZTjAg8" +03/18/2017,Economists,@SBronars,"Fringe benefits comprise 37% of compensation costs for state & local governments, compared to 30% in private sector. https://t.co/xNqZwJjElv" +03/13/2017,Economists,@SBronars,"RT @Noahpinion: Top game theorist Ariel Rubinstein on the overuse of math in economic theory: (from https://t.co/suq6NBCZIo) + +Dare we say..…" +03/13/2017,Economists,@SBronars,Obama-era winners are still riding high. https://t.co/2roUh3h4Rd via @BV +03/13/2017,Economists,@SBronars,Is it better to be poor in Bangladesh or the Mississippi Delta? Angus Deaton talks with @AnnieLowrey https://t.co/qo8XebeMSR +03/13/2017,Economists,@SBronars,"Employment/Population for age 25-54 was 78.3% in February, highest since 10/2008, but still 1.6 percentage points below 2007 average." +03/13/2017,Economists,@SBronars,Disgrace: South Africa’s rape epidemic. 38% of men in 1 township admitted to using force or threats to obtain sex. https://t.co/QM1e3STh81 +03/12/2017,Economists,@SBronars,RT @tamcfall: @SBronars packing Duke and UNC in SC and Louisville and KY in Indy. Someone should write a paper +03/12/2017,Economists,@SBronars,"1st and 2nd round NCAA tournament games for South Carolina (7 seed) and Florida (4 seed) close to home, 104 miles & 112 miles, respectively." +03/12/2017,Economists,@SBronars,Utah on the verge of the toughest drunk-driving standard in the U.S. – .05% https://t.co/AOsgQpQAgr +03/11/2017,Economists,@SBronars,"RT @darrenrovell: Lowest priced ticket to Spurs-Warriors on reselling site Gametime yesterday was $173. With so many players out, tickets n…" +03/11/2017,Economists,@SBronars,RT @spurs: LaMarcus Aldridge will be out for an indefinite period due to an occurrence of a minor heart arrhythmia. https://t.co/s0D2Enc6RO +03/11/2017,Economists,@SBronars,"California is having its rainiest water year on record, lifting many out of drought conditions https://t.co/zrIgQWvF5D" +03/11/2017,Economists,@SBronars,"German labor costs +2.5% in past yr, wages +2.3% nonwage +3.4%. +US labor costs +2.2%, wages +2.3%, nonwage +2.1% +https://t.co/7nk3WZUM50" +03/11/2017,Economists,@SBronars,"RT @dinapomeranz: One reason immigration is so important to Europe: below 2 kids per woman +Lowest Portugal: 1.31 +Highest France: 1.96 https…" +03/10/2017,Economists,@SBronars,Shock horror: Economists argue about the impact of Chinese imports on America https://t.co/I9D8O9Hojf +03/10/2017,Economists,@SBronars,"Over past 12 months, employment to population ratio: +African Americans up from 56.2% to 57.3% +Whites down from 60.4% to 60.3% +#JobsReport" +03/07/2017,Economists,@SBronars,RT @WakeForestNews: Research shows #golf pros penalized off the tee are more likely to take risky 2nd shots https://t.co/ozaXKBQFed @TheMas… +03/07/2017,Economists,@SBronars,RT @mileskimball: Children of immigrants are dominating US scientific contests. America’s Got Immigrant Talent https://t.co/tYxQ6KcSUJ +03/07/2017,Economists,@SBronars,Weekly wages in leisure and hospitality in Las Vegas NV (Clark County) up 24% in the past year. https://t.co/m2XUxUGUw4 +03/01/2017,Economists,@SBronars,"Cold Hand? @StephenCurry30 missed 14 straight threes. Given career 43.8% shooting, a streak like that expected once every 171 NBA seasons." +02/27/2017,Economists,@SBronars,RT @JamieLissow: Not sure what this guy thinks is going to happen at Disney today. https://t.co/7lKJfDAfja +02/27/2017,Economists,@SBronars,.@conorsen Leading men are older: Only one actor under age 30 has ever won an Oscar for best performance in a leading role - Adrien Brody. +02/25/2017,Economists,@SBronars,"Farewell to Kenneth Arrow, a gentle genius of economics https://t.co/bTgCL0QOtS" +02/25/2017,Economists,@SBronars,RT @JimPethokoukis: Why is US prime-age labor participation rate lower than in most other advanced economies? Goldman Sachs offers an expla… +02/23/2017,Economists,@SBronars,RT @Noahpinion: America needs a new Milton Friedman - a highly respected economist who explains empirical econ to the public: https://t.co/… +02/23/2017,Economists,@SBronars,"RT @dinapomeranz: Female econ profs in US: +Full 13% - 4 times higher than in 2000 +Associate 26% - doubled +Assistant 28% - up from 25% +https…" +02/22/2017,Economists,@SBronars,".@EricJWeiner1 Only 14% of Boston is Irish-American, which is low for the state of Massachusetts. Higher concentrations in the suburbs." +02/22/2017,Economists,@SBronars,"22.2% of rental households in Fulton County. GA (Atlanta) faced eviction proceedings in 2015 & 12.2% were evicted. +https://t.co/uO4eQF8g9y" +02/22/2017,Economists,@SBronars,"In Germany health care expenditures represent 11.3% of GDP, in the US it is 17.8% of GDP. +https://t.co/qUoXfjaYaf +https://t.co/4HZ8K9c97n" +02/22/2017,Economists,@SBronars,"U.S. Cities with the most Irish-American residents: +1. New York +2. Chicago +3. Philadelphia +https://t.co/IXktr4YVjQ" +02/22/2017,Economists,@SBronars,"RT @darrenrovell: 37 Years Ago Today: A bunch of American kids at the 1980 Olympics prove the ""impossible"" can happen https://t.co/NV4mjY0r…" +02/22/2017,Economists,@SBronars,"Trump’s hard line on immigration collides with U.S. demographics, Greg Ip writes https://t.co/IveW8dTYqa" +02/22/2017,Economists,@SBronars,RT @crampell: Share of Americans who believe foreign trade is good for the U.S. economy is at a record high. https://t.co/41XzyTcoWc https:… +02/22/2017,Economists,@SBronars,"RT @BCAppelbaum: Here's the @nytimes obit for Kenneth Arrow, one of the most important economists of modern times. Great kicker: https://t.…" +02/22/2017,Economists,@SBronars,RT @WSJ: Oddsmakers are pegging “La La Land” as an overwhelming favorite to land Sunday’s biggest prize https://t.co/A5RxbvyZht +02/20/2017,Economists,@SBronars,RT @TheEconomist: 33% of high-tech firms created in Michigan between 1990 and 2005 have at least one immigrant founder https://t.co/s3JKT6m… +02/20/2017,Economists,@SBronars,RT @tamcfall: @SBronars @espn and athletics depts are all broke +02/20/2017,Economists,@SBronars,"Flying coach: Many universities are using private planes https://t.co/ms389FR1Fa +via @ESPN App https://t.co/f7Wrh6tAwP" +02/20/2017,Economists,@SBronars,No Hesitations: Econometrics: Angrist and Pischke are at it Again https://t.co/wHAEtWngdX +02/19/2017,Economists,@SBronars,"RT @FrankLuntz: In the U.S., immigrants commit less crime than native-born Americans. + +https://t.co/iFVwxANWns https://t.co/F4CE5vlywM" +02/18/2017,Economists,@SBronars,RT @bill_easterly: I took this graph seriously until I saw in right-hand upper corner the claim that economists have social skills https://… +02/17/2017,Economists,@SBronars,"Don't appear before a judge the Monday after the start of daylight savings time. + +https://t.co/QvdYm2FHHR" +02/16/2017,Economists,@SBronars,Real average hourly earnings fell by 0.5% between December 2016 and January 2017. https://t.co/DDkA6vXXXL +02/16/2017,Economists,@SBronars,RT @TheEconomist: A new survey reveals there is one area in which young people’s views are not so progressive: free speech https://t.co/cHA… +02/14/2017,Economists,@SBronars,"More than 4,000 applicants have submitted resumes for just two openings as ""candy tasters"" at Mondelez. https://t.co/B65DX9SB6z" +02/14/2017,Economists,@SBronars,"Kevin Love:1 of 5 players w 20 points & 10 rebounds per game, also Anthony Davis, DeMarcus Cousins, Karl-Anthony Towns & Russell Westbrook" +02/14/2017,Economists,@SBronars,"Just 15 labor strikes involving 1,000+ workers in 2016. 7 with state & local govt. Only 2 lasted more than 5 days. https://t.co/kvlJzv9IqO" +02/13/2017,Economists,@SBronars,https://t.co/dRbS2j8Gfx +02/12/2017,Economists,@SBronars,RT @GarySinise: Here we are at @NMC_SD for the @GarySiniseFound Invincible Spirit Festival. Check out my skills at flipping burgers with @R… +02/12/2017,Economists,@SBronars,"18.5 million private sector layoffs in 2016, lowest in history of #JOLTS series. 1 layoff per 79 private sector employees per month in 2016." +02/11/2017,Economists,@SBronars,Newspaper runs photo of Alec Baldwin instead of Donald Trump https://t.co/zQOzpt3NPc via @HuffPostPol +02/11/2017,Economists,@SBronars,"Healthier labor market - increasing private sector quits per year +2016 33.7MM +2015 31.5MM +2014 28.9MM +2013 26.1MM +2012 23.6MM +#JOLTS" +02/08/2017,Economists,@SBronars,RT @familyunequal: In case you were wondering: US birth rates by women's age and education: 2015 https://t.co/bFCOQxYgQx +02/08/2017,Economists,@SBronars,"RT @WSJ: Santa Barbara missed out on California's rains, underscoring the vagaries of the state's water distribution +https://t.co/hfQF1vFsr3" +02/08/2017,Economists,@SBronars,RT @TheEconomist: Only a sixth of people in Africa under the age of 35 are in formal employment https://t.co/WXwPiv1O0G https://t.co/fTwIdK… +07/02/2018,Economists,@joebrusuelas,"RT @USChamber: $75 billion worth of retaliatory tariffs will go into effect this week.  + +Trade works. Tariffs don’t. #TheWrongApproach http…" +07/02/2018,Economists,@joebrusuelas,Vive Le France @ Château La Chenevière https://t.co/ngVvPGqyff +07/02/2018,Economists,@joebrusuelas,Texas has $3.9 billion of exports in manufacturing and & 3.1 million jobs at risk. Roughly 86% of it’s value added… https://t.co/4SKHqc7m4r +07/02/2018,Economists,@joebrusuelas,Texas has $3.9 billion of exports in manufacturing and & 3.1 million jobs at risk. Roughly 86% of it’s value added… https://t.co/CkYnbbRlOK +07/02/2018,Economists,@joebrusuelas,"Take a state like Alabama, with conservative political preferences, it has $3.6 billion of exports & 567,500 jobs a… https://t.co/UMT2DpLTcS" +07/02/2018,Economists,@joebrusuelas,"California, the most economically important state in the union, has 4.86 million jobs & $5.6 billion in exports at… https://t.co/LjNLEDNWDY" +07/02/2018,Economists,@joebrusuelas,"My home state, New York has 2.7 million jobs at risk due to the growing trade spat. Exports of aluminum alloys, gas… https://t.co/1ihDnImnxJ" +07/02/2018,Economists,@joebrusuelas,"RT @USChamber: Trade works. Tariffs don't. + +See how hard your state will be hit: https://t.co/aulLNhrEFf #TheWrongApproach https://t.co/uV…" +07/02/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: Hiring will expand in the #middlemarket thanks to strong revenues and net earnings, according to @joebrusuelas: https://t.co/…" +07/02/2018,Economists,@joebrusuelas,The title is a bit overdone but risks of a full blown trade war are rising: Renminbi’s worst month ever sparks US-C… https://t.co/bAgujiCt9H +07/02/2018,Economists,@joebrusuelas,"Michigan, South Carolina, Alabama.......EU warns of $300bn hit to US over car import tariffs via @FT + https://t.co/8yZTP7QdAV" +07/01/2018,Economists,@joebrusuelas,@byHeatherLong @FT Can’t have a discussion with a policymaker here in the EU without that popping up. I do not thin… https://t.co/yCQcmx5XUV +07/01/2018,Economists,@joebrusuelas,"RT @genemarks: #Middlemarket companies continue their positive economic outlook https://t.co/SeH65Z1JeB +@USChamber https://t.co/nRPraDqPQM" +07/01/2018,Economists,@joebrusuelas,Recession anyone? This is how policy choices lead to a premature end of a business cycle: Exclusive: A leaked Trump… https://t.co/ybEAoHlVfg +07/01/2018,Economists,@joebrusuelas,Tomorrow https://t.co/tjS4cQxIwQ +07/01/2018,Economists,@joebrusuelas,Date Night. @ Avenue des Champs-Élysées https://t.co/mnQZjj0fQv +06/30/2018,Economists,@joebrusuelas,For everyone that protested across the USA know that it was noticed in Europe. All the networks & papers followed c… https://t.co/f4exVIszJt +06/30/2018,Economists,@joebrusuelas,RT @sosarris: Thank you @spg @spglife for the lovely chocolate and the great @hotelpdgdla hotel! @joebrusuelas https://t.co/qnbpHnO6Np +06/30/2018,Economists,@joebrusuelas,@Galactic_George Bourbon for my men & my horses. Champagne for the ladies!!! +06/30/2018,Economists,@joebrusuelas,Out on the street following the France 🇫🇷 vs Argentina 🇦🇷 match. @ Avenue des Champs-Élysées https://t.co/MfCk9nj3VI +06/30/2018,Economists,@joebrusuelas,@Galactic_George Yo man it’s sunny & 90 here right now. I’ve probably used all my good weather days in Paris. All good here. 😎🥃🌮 +06/30/2018,Economists,@joebrusuelas,@Galactic_George Oh yeah that is the main event tonight. Crazy here right now. City is alive. +06/30/2018,Economists,@joebrusuelas,Taken by @sosarris this sums up Saturday. And it was magnificent. https://t.co/OdjUqIolPD +06/30/2018,Economists,@joebrusuelas,@simonhartRSM @FIFAWorldCup Oh and I found the bar to watch @England play on Tuesday. The Coq & The Bulldog. That will be supreme. +06/30/2018,Economists,@joebrusuelas,That just felt like an earthquake following that goal. What a match! +06/30/2018,Economists,@joebrusuelas,@simonhartRSM @FIFAWorldCup This struggle is real in Paris right now & just exploded on that goal. +06/30/2018,Economists,@joebrusuelas,@JeffMacke That’s s little bit harsh. +06/30/2018,Economists,@joebrusuelas,Love how the horns on the streets of Paris are blaring following that goal. @FIFAWorldCup +06/30/2018,Economists,@joebrusuelas,RT @USChamber: Trade agreements create a level playing field #NAFTAworks #FacesofTrade https://t.co/lX3UfjpMfk https://t.co/WKbdh2eNKW +06/30/2018,Economists,@joebrusuelas,@moorehn I’m at cafe on Ave George V on the Seine +06/30/2018,Economists,@joebrusuelas,"Saturday morning. @ Paris, France https://t.co/ppQ2ERI9BP" +06/30/2018,Economists,@joebrusuelas,RT @RSMUSLLP: RSM Classic tickets go on sale Monday https://t.co/xz7hS7EK7j via @Brunswick_News +06/29/2018,Economists,@joebrusuelas,RT @TedMerz: Note to journos: Get off my lawn with your dumpster fire references. @TheTerminal https://t.co/ixHjxBSF68 +06/29/2018,Economists,@joebrusuelas,A little night music from quite the event. @ Résidence De L'ambassadeur des États-Unis En France https://t.co/1PiJJifRmO +06/29/2018,Economists,@joebrusuelas,"@MamaShelter_P which may be the hippest spot in the universe right now. @ Paris, France https://t.co/TCI0YwOJDY" +06/29/2018,Economists,@joebrusuelas,RT @ernietedeschi: Here's the monthly federal budget deficit on a 12M rolling basis. It was $404bn over the 12M ending Jan 2016. Now it's $… +06/29/2018,Economists,@joebrusuelas,@jodiecongirl No please do & I would be happy to follow up with them if they have any question. I deal with lots of… https://t.co/z0T1Y4vtYk +06/29/2018,Economists,@joebrusuelas,@jodiecongirl I never finished mine either. At a certain point it became something of a vanity and just decided to… https://t.co/fqEh0ejr7n +06/29/2018,Economists,@joebrusuelas,RT @RSM_Canada: #MiddleMarket businesses are viable targets for #cybercrime. @RSMUSLLP’s #MiddleMarket Business Index – special #cybersecur… +06/28/2018,Economists,@joebrusuelas,RT @simonhartRSM: In a period when the UK will soon be looking to start trade agreements post #Brexit with US and others this @RSMUSLLP q&a… +06/28/2018,Economists,@joebrusuelas,At the US Embassy 4th of July Party. https://t.co/T1IdfdMIuu +06/28/2018,Economists,@joebrusuelas,"Ok, watching the @FIFAWorldCup in Paris with 🏴󠁧󠁢󠁥󠁮󠁧󠁿 vs 🇧🇪. One can see the look of the spectators on the street. I… https://t.co/d9nlPtagVW" +06/28/2018,Economists,@joebrusuelas,With the yield curve flattening and risks of inversion rising as the Fed accelerates it’s rate hike campaign it’s t… https://t.co/1Zki3ygKEz +06/28/2018,Economists,@joebrusuelas,Remembrance of a time when we did good & great things. https://t.co/sITIal1FsS +06/27/2018,Economists,@joebrusuelas,A informative evening with old relationships bolstered & new ones established. Towards a UK-US FTA should condition… https://t.co/VcmVbL6wv8 +06/27/2018,Economists,@joebrusuelas,RT @simonhartRSM: With @RSMUSLLP colleague @joebrusuelas for tonight’s discussion on US UK trade thanks to @indparltrust taking place at… +06/27/2018,Economists,@joebrusuelas,Kinda like this place. Beautiful terrace. @ Houses of Parliament https://t.co/LFqauR8ryJ +06/27/2018,Economists,@joebrusuelas,Looking forward to a frank & friendly discussion. Too bad Chatham House rules govern the dinner. No more important… https://t.co/jU35SvDT8U +06/27/2018,Economists,@joebrusuelas,Gladstone & I. Speaking before the @indparltrust dinner tonight on Global Britain: The Future UK-US Trade Relations… https://t.co/RR5dwWJwpq +06/27/2018,Economists,@joebrusuelas,Real challenge to middle market firms. If the administration pull out of NAFTA it will be existential for some. As… https://t.co/OntfbYdlk3 +06/27/2018,Economists,@joebrusuelas,@timmullaney Trade & inventories data is why. +06/27/2018,Economists,@joebrusuelas,Following this mornings US data deluge I’m upgrading my forecast of Q2’18 from 4.1% to 4.3% with risk of a much stronger first print. +06/27/2018,Economists,@joebrusuelas,Please do listen to our discussion with @USHGNYC CEO Danny Meyer for his insights on commerce in this business cycl… https://t.co/mo6xnugOJJ +06/27/2018,Economists,@joebrusuelas,Should a hard Brexit be the endgame for the U.K. it’s time to start considering other options. My thoughts on the c… https://t.co/dn6VpYDeEO +06/27/2018,Economists,@joebrusuelas,A good US yield curve morning to all. The spread sits at 32.439 basis points in early trading. https://t.co/D1eJHBaIbV +06/27/2018,Economists,@joebrusuelas,RT @lindayueh: Times: draft white paper proposes binding UK into EU regulatory framework for goods; regarded as key to solving Irish border… +06/27/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: When will the #middlemarket begin to upgrade plants, equipment and tech? Tax legislation and other factors provide insights:…" +06/26/2018,Economists,@joebrusuelas,Churchill’s Courage. @ The Ritz London https://t.co/6dzFqBOMvV +06/26/2018,Economists,@joebrusuelas,"RT @USChamber: 125,000 Small and medium-size businesses sell goods and services to Canada and Mexico https://t.co/CdCXW2KddI #NAFTA #NAFTA…" +06/26/2018,Economists,@joebrusuelas,"RT @USChamber: #NAFTAworks: Abandoning a trade agreement that’s helped farmers, businesses, workers, and families would be disastrous https…" +06/26/2018,Economists,@joebrusuelas,RT @steveliesman: The Dow has fallen 1% or more 17 days this year like yesterday (-1.33%). CNBC finds 8 of those 17 down days were sparked… +06/26/2018,Economists,@joebrusuelas,"RT @RSM_Ireland: Its the last day of the RSM European Regional Conference in Prague! Our Tax Partner, Aidan Byrne and Director of Internati…" +06/26/2018,Economists,@joebrusuelas,"The US agricultural sector, which is the subject of retaliation, due to US trade policies, is taking it on the chin… https://t.co/YYRFFkUGoQ" +06/26/2018,Economists,@joebrusuelas,A quick look at the Bloomberg Industrial Metals Subindex. Down 5.71% YTD to 130.63 on global trade tensions. https://t.co/qOzTXvtQ6Y +06/26/2018,Economists,@joebrusuelas,According to @business the @GoldmanSachs @FIFAWorldCup model now estimates a Brazil vs @England final. That would b… https://t.co/THEKDakx2e +06/26/2018,Economists,@joebrusuelas,Early look at the US yield curve which has flattened to 34.17 basis points in early trading. Giving the growing ris… https://t.co/FRs0kiIlTG +06/26/2018,Economists,@joebrusuelas,A good sunny London morning to all. Trade tensions escalating as fears mount spillover into financial sector will be difficult to contain. +06/26/2018,Economists,@joebrusuelas,The case for a U.K.-US Free Trade Agreement. https://t.co/B8iwNqf68F +06/25/2018,Economists,@joebrusuelas,"RT @NeilBradleyDC: We are going to see a lot more of this as tariffs beget retaliatory tariffs, all harming American consumers and workers.…" +06/25/2018,Economists,@joebrusuelas,@JustinWolfers Not to mention the crypto crowd. +06/25/2018,Economists,@joebrusuelas,RT @bostonchamber: Rising international trade tensions + modest tightening of domestic & global financial conditions did little to dent ove… +06/25/2018,Economists,@joebrusuelas,"RT @Pat_Gillespie: Reality here: The basic basket of food for a traditional household in Argentina rose 21% in May from a year ago, accordi…" +06/25/2018,Economists,@joebrusuelas,The US Congress & administration need to start considering policies about what to do with Technology Individual Dis… https://t.co/SJg5uVmKqY +06/25/2018,Economists,@joebrusuelas,As the US unemployment rate heads towards 3% workplace automation will be pulled forward then turbocharged in the n… https://t.co/SfgD27les1 +06/25/2018,Economists,@joebrusuelas,"RT @USChamber: #MiddleMarket business leaders are signaling strong, forward-looking expectations on revenues, earnings, hiring, and compens…" +06/25/2018,Economists,@joebrusuelas,So I’m thinking isn’t one justification for Navarro/Trump trade policies was to force supply chains & production b… https://t.co/RzVyU4b14E +06/25/2018,Economists,@joebrusuelas,RT @TFMkts: Bitcoin Is Struggling Because Bitcoin Has Lost Its Way via @forbes https://t.co/ifITjz7tvF $xbt $btc #eth #ripple #crypto +06/25/2018,Economists,@joebrusuelas,@CryptoPoland Or if the US central bank issues Fed Coin? Which is more probable? +06/25/2018,Economists,@joebrusuelas,"Under construction. @ London, United Kingdom https://t.co/OOAtoXpmn4" +06/25/2018,Economists,@joebrusuelas,@CryptoPoland There is no intrinsic value to bitcoin. It’s not tethered to a tax base. I’ve made the case for years… https://t.co/ejoyyVG7MU +06/25/2018,Economists,@joebrusuelas,Interesting paper on the economic limits of bitcoin & blockchain. https://t.co/sFC6sF2UEk +06/24/2018,Economists,@joebrusuelas,My view on the world this afternoon. @FIFAWorldCup @RSMUK @England https://t.co/WY87iLdWxp +06/23/2018,Economists,@joebrusuelas,“For each unharmful gentle soul misplaced inside a cell.” A clarion call from long ago & far away that still resona… https://t.co/qmtCPpJlE9 +06/23/2018,Economists,@joebrusuelas,@pointsnfigures That was one hell of a finish. Great @FIFAWorldCup match. +06/23/2018,Economists,@joebrusuelas,RT @NewYorker: Mexico’s laboriously intricate passing against South Korean brought to mind Yeats’s line about beauty and hard work: “Yet if… +06/23/2018,Economists,@joebrusuelas,RT @crampell: Trump’s tariff on steel imports has caused the country’s remaining major nail producer to lose about 50% of its business in t… +06/23/2018,Economists,@joebrusuelas,"Weekend Must Read: Donald Trump and the 1930s playbook: liberal democracy comes unstuck via @FT. + I t… https://t.co/AcRXzTswU2" +06/23/2018,Economists,@joebrusuelas,Gooooooal!!!!! Mexico v South Korea a terrific game. @FIFAWorldCup +06/23/2018,Economists,@joebrusuelas,James Madison from Federalist No.10: “Enlightened statesmen will not always be at the helm.” Wise words to remember… https://t.co/oApd9085t8 +06/22/2018,Economists,@joebrusuelas,RT @RSMUSLLP: A lower statutory rate could impact when - and in what ways - #middlemarket companies make strategic #capitalinvestments: htt… +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: 52% of survey res… https://t.co/ZuJdmu6nDz +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: Roughly 58% of su… https://t.co/M42NgIelyK +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: 52% of survey res… https://t.co/AXyA9xseGh +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: Roughly 39% of su… https://t.co/bkrgzSdG99 +06/22/2018,Economists,@joebrusuelas,RT @RSMUSLLP: The “trade spat” is perilously close to becoming an all-out trade war. Here’s how #middlemarket leaders can be ready: https:/… +06/22/2018,Economists,@joebrusuelas,"RT @crypto: U.S. House members are told to publicly reveal any cryptocurrency holdings worth more than $1,000 https://t.co/DlVL6CQZzO https…" +06/22/2018,Economists,@joebrusuelas,"RT @USChamber: Confidence among America's middle market companies eased slightly, the new @RSMUSLLP #MiddleMarket Business Index shows. Fin…" +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Selling goods or services across state lines? The #SDvWayfair decision by SCOTUS affects you: https://t.co/GpbWL4g1DF https:/… +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Uncertainty regarding #immigration policies could create an even tighter #construction labor market: https://t.co/3W9HOk1y1v +06/21/2018,Economists,@joebrusuelas,Ahead of my trip to the UK next week my note on the case for a UK-US Free Trade Agreement. ⁦@simonhartRSM⁩ ⁦@RSMUK⁩ https://t.co/B8iwNqf68F +06/21/2018,Economists,@joebrusuelas,Strong move in sterling following the BoE rate decision to remain on hold this morning. Looking forward to grading… https://t.co/5XK5Q91l3S +06/21/2018,Economists,@joebrusuelas,My latest note on the case for a US-UK Free Trade Agreement. https://t.co/B8iwNqf68F +06/21/2018,Economists,@joebrusuelas,RT @PIIE: Here’s what’s included in the revised Section 301 tariff list released June 15 vs. the April 3 list. More intermediate inputs tha… +06/21/2018,Economists,@joebrusuelas,Did you know that Canada sent roughly $1.5 trillion of foreign direct investment to the United States? Check out th… https://t.co/SeH5WFjDEr +06/21/2018,Economists,@joebrusuelas,"A good Bank of England rate decision morning. A late holiday,warm weather & the royal wedding may bolstered spendin… https://t.co/YDYroQyiNu" +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Join @joebruselas and @ceoshowforum's Robert Reiss as they talk with @USHGNYC CEO Danny Meyer on the first episode of #Middle… +06/20/2018,Economists,@joebrusuelas,RT @USChamber: #MiddleMarket companies continue their positive economic outlook https://t.co/8xiAEeTI6O +06/20/2018,Economists,@joebrusuelas,"Good to see reason prevail, if only temporarily. : #BREAKING: BREAKING NEWS: Trump administration drafting executiv… https://t.co/lOnUMfXh3w" +06/20/2018,Economists,@joebrusuelas,This is what global leadership looks like. German automakers engaged in enlightened self-interest with the knowledg… https://t.co/ctrAW80gLe +06/20/2018,Economists,@joebrusuelas,A useful reminder that a country pursued its own interest by engaging in free trade regardless of what other countr… https://t.co/Vef7jYLmNy +06/20/2018,Economists,@joebrusuelas,A good wake up Wednesday to all. It would appear the US business community now recognizes it’s not just a negotiati… https://t.co/fNoTgBQzCH +06/20/2018,Economists,@joebrusuelas,"“We must always take sides. Neutrality helps the oppressors, never the victim. Silence encourages the tormentor, ne… https://t.co/RHelSimNjy" +06/20/2018,Economists,@joebrusuelas,A little music to soothe the national soul or what’s left of it. I see my life come shining from the West on to the… https://t.co/ShWwd9p9es +06/20/2018,Economists,@joebrusuelas,"RT @JimPethokoukis: “You can resolve to live your life with integrity. Let your credo be this: Let the lie come into the world, let it even…" +06/19/2018,Economists,@joebrusuelas,@CasieDaugherty That is awesome! +06/19/2018,Economists,@joebrusuelas,I wish that all policymakers should see the client questions I’m getting caused by Trump’s tariffs today. There is… https://t.co/Qw9k9EuEx0 +06/19/2018,Economists,@joebrusuelas,@MKTWgoldstein His picture should be permanently attached to the term moral hazard in every Econ text in perpetuity. +06/19/2018,Economists,@joebrusuelas,I’m proud that our partner @USChamber of the @RSMUSLLP Middle Market Business Index has taken such a courageous sta… https://t.co/qgGBxrulAi +06/19/2018,Economists,@joebrusuelas,"RT @DinaPomeranz: In 1929-1934, a campaign forcing Mexicans and Mexican Americans out of the country was carried out in some US states. + +Th…" +06/19/2018,Economists,@joebrusuelas,"RT @dlcohenwrites: . @RSMUSLLP MMBI shows midmarket biz sentiment remains robust in Q2, despite growing trade tensions. https://t.co/J5gfBa…" +06/19/2018,Economists,@joebrusuelas,RT @USChamber: The latest @RSMUSLLP #middlemarket Business Index eased slightly as policymakers and decision makers consider the post-econo… +06/19/2018,Economists,@joebrusuelas,The latest edition of the RSM Middle Market Business Index indicates business activity in the real economy remains… https://t.co/heAz6Bac0L +06/19/2018,Economists,@joebrusuelas,@TFMkts That’s just an excuse for incoherent & failed policy choices. If they wanted to get tonight they would have… https://t.co/Dcx2UriqI3 +06/19/2018,Economists,@joebrusuelas,"Trade wars are the ultimate wars of choice. They are easy to start, difficult to end & everyone loses." +06/19/2018,Economists,@joebrusuelas,Intensifying trade spat hanging heavy on investors. Equity futures point to a difficult day in markets ahead of the… https://t.co/0ToXImhosR +06/19/2018,Economists,@joebrusuelas,"RT @SenJohnMcCain: The administration’s current family separation policy is an affront to the decency of the American people, and contrary…" +06/19/2018,Economists,@joebrusuelas,@morningmoneyben That would have been outstanding a multinational coalition that brought 18K tariffs to zero. Oh wait.... +06/19/2018,Economists,@joebrusuelas,Sunset @ W Washington D.C. Hotel https://t.co/v75iPGS0dO +06/19/2018,Economists,@joebrusuelas,@MKTWgoldstein That’s a pretty neat trick. Potentially $400 billion in tariffs on $136 billion exports. +06/18/2018,Economists,@joebrusuelas,Nothing like placing $200 billion of tariffs on $136 billion of imports. Go ahead and follow the shiny ball to take… https://t.co/gKTjz2kSb0 +06/18/2018,Economists,@joebrusuelas,"I once read a book titled “Living in Truth.” The author, Vaclev Havel, made the case that to live with lies is to a… https://t.co/pGAbxxP79I" +06/18/2018,Economists,@joebrusuelas,"The uncertainty tax around the intensifying trade spat will exert a powerful toll on A3: Aerospace, Agriculture, &… https://t.co/1biBVTfKTM" +06/18/2018,Economists,@joebrusuelas,"RT @BeschlossDC: Italian mother and children arrive at Ellis Island, 1908: #Hine https://t.co/UtYrM6wmfP" +06/18/2018,Economists,@joebrusuelas,"RT @NewYorkFed: “Finance should be both intellectually and ethically fulfilling — a field where people can use their heads during the day,…" +06/18/2018,Economists,@joebrusuelas,Today’s must read: Farewell to Manzanar. It’s a book that is embedded in the American experience & deeply impacted… https://t.co/aWO221CFED +06/18/2018,Economists,@joebrusuelas,A good DC morning to all. Scorching is a good description of the atmosphere & I’m not just talking about the weather. +06/17/2018,Economists,@joebrusuelas,@ernietedeschi @91X has been running them for some time. Was surprised at intensity of ads early in year targeting Almo. +06/17/2018,Economists,@joebrusuelas,A good way to pass the time on the tarmac. https://t.co/H9qRRW4vVt +06/17/2018,Economists,@joebrusuelas,The Bank of International Settlements provides a comprehensive takedown of crypto currencies & rightly points out t… https://t.co/8h8nX6no0g +06/17/2018,Economists,@joebrusuelas,@rsmglobalmx 🇲🇽🙌🇲🇽🙌🇲🇽🍾🎉🇲🇽🙌🇲🇽🙌 +06/17/2018,Economists,@joebrusuelas,"RT @FIFAWorldCup: Wow! + +#MEX stun the #WorldCup champions in Moscow! + +#GERMEX 0-1 https://t.co/XOtAWcKD8U" +06/17/2018,Economists,@joebrusuelas,What an upset!! https://t.co/pnEdMaxIx1 +06/17/2018,Economists,@joebrusuelas,@rsmglobalmx what a first half as Mexico outplays Germany in the @FIFAWorldCup. Viva 🇲🇽 +06/16/2018,Economists,@joebrusuelas,"@kevindepew Well, sort of due to those automatic stabilizers. I mean without tax transfers from California where wo… https://t.co/4j6ynPdUGw" +06/16/2018,Economists,@joebrusuelas,"RT @BeschlossDC: 160 years ago today in Springfield, Senatorial candidate Abraham Lincoln said, “A house divided against itself cannot stan…" +06/16/2018,Economists,@joebrusuelas,Today’s must read...in between World Cup matches...trade protectionism is no way to make America great again: Peopl… https://t.co/2Ov55qHwHg +06/15/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: As reports circulate of additional #tariffs on China, here’s how some #middlemarket companies are responding to trade tension…" +06/15/2018,Economists,@joebrusuelas,"While the paring back of the tariff lines on China was mildly encouraging, the U.S. just does not export enough to… https://t.co/ZeoVtFzI0G" +06/15/2018,Economists,@joebrusuelas,Data viz of the moment. Thai bhat under pressure as emerging market woes linked to policy normalization at the Fed… https://t.co/9ggK6tcZlK +06/15/2018,Economists,@joebrusuelas,The latest The Real Economy is out. Please read my note on options for policymakers once the business cycle ends. F… https://t.co/17pgj96yTz +06/15/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: The #MiddleMarket #transformativeCEO, a new radio series co-hosted by @ceoshowforum's Robert Reiss & RSM’s @joebrusuelas, lau…" +06/15/2018,Economists,@joebrusuelas,"RT @RSM_Canada: In light of the recent #tariffs imposed on steel & aluminum, significant risks exist to Canada. #Diversification of trade i…" +06/14/2018,Economists,@joebrusuelas,@Galactic_George Well at the very least rising deficits & debt will take the edge off of the impact of lower tax ra… https://t.co/KGKGgremba +06/14/2018,Economists,@joebrusuelas,@Galactic_George Yeah I have the annual operating deficits as a percentage of GDP going to 5.5% over the next 36 months. +06/14/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Changes to the business cycle could hit in early 2018 following #interestrate hikes according to @joebrusuelas: https://t.co/… +06/14/2018,Economists,@joebrusuelas,Nothing like a little Draghi to start your day. ECB headed toward the exit bolsters Euro against the greenback. https://t.co/tC0Uw7q6Xx +06/14/2018,Economists,@joebrusuelas,@CJMaloneyBN You know you are correct. The clickbait associated with hyperventilating screeds is always better. Lol +06/14/2018,Economists,@joebrusuelas,@TimDuy What did we do to deserve such leaders for our flock. Jeez.... +06/14/2018,Economists,@joebrusuelas,Looking forward to discussions on divergence in inflation readings between CPI & PCE from all the usual suspects ov… https://t.co/hl8RaH8Xad +06/14/2018,Economists,@joebrusuelas,"For those with more bullish outlooks: the fiscal boost to the economy, especially from the $320 billion from the re… https://t.co/SKa98OE56T" +06/14/2018,Economists,@joebrusuelas,Following this mornings data that “Hawkish Hedge” put forward by the FOMC is looking prescient. +06/14/2018,Economists,@joebrusuelas,Following this morning’s US Retail Sales data-it was so strong I broke out the computer at the airport to make poin… https://t.co/GmU5NpmvLq +06/14/2018,Economists,@joebrusuelas,Very strong US retail sales in May. At a 3 month average annualized pace sales were up 7.9% & the control group tha… https://t.co/MDlLiBZaCc +06/13/2018,Economists,@joebrusuelas,RT @NeilBradleyDC: Read my statement on the upcoming immigration votes in the House. Protect #Dreamers. Reject the ‘unwelcome’ sign. https:… +06/13/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Updated Twitter Moment collecting insights and reactions from @joebrusuelas on today's #FOMC meeting summary: https://t.co/bp… +06/13/2018,Economists,@joebrusuelas,"A quick look at the Fed's Dot Plot. Per my tweet earlier this morning, I think it was Brainard who increased her fo… https://t.co/DWapmYFW2o" +06/13/2018,Economists,@joebrusuelas,Interesting answer by Powell on the Fed bumping up against the neutral rate of interest. Well thought out and indic… https://t.co/R1lA8nrlmj +06/13/2018,Economists,@joebrusuelas,"FOMC: The Fed's upward revision to the employment, growth &inflation forecast are in line with improvement in the e… https://t.co/sFU0u8xE7m" +06/13/2018,Economists,@joebrusuelas,Today's FOMC meeting & publication of the summary of economic projections has not altered our core forecast. We exp… https://t.co/U2qpoUV4Ra +06/13/2018,Economists,@joebrusuelas,"Nice to see Powell reinforce that ""hawkish hedge"" put forward in the statement with very clear open mouth operation… https://t.co/zI942jC7Zh" +06/13/2018,Economists,@joebrusuelas,FOMC: the selective use of the word symmetric implies the Fed is looking at its range of policy tools ahead of the… https://t.co/dRV8wub4N2 +06/13/2018,Economists,@joebrusuelas,The Fed has carefully constructed a bridge back towards a slower pace of reduction in accommodation via its policy… https://t.co/vztSCOBMrT +06/13/2018,Economists,@joebrusuelas,FOMC: The first months of the Powell regime has been defined by a careful calibration of risks & a balanced outlook… https://t.co/DTlUX47CuQ +06/13/2018,Economists,@joebrusuelas,Policymakers at the Fed issued a “Hawkish Hedge” as the FOMC hiked its policy rate by 25 basis points to a rate to… https://t.co/PrXDXD6Hj7 +06/13/2018,Economists,@joebrusuelas,A little data viz & analysis prior to the FOMC meeting. Please take a look at my estimate of the Fed’s reaction fun… https://t.co/ZUR88qxiWG +06/13/2018,Economists,@joebrusuelas,"RT @USChamber: Today, the U.S. is the world’s top producer of oil and natural gas. Now, our energy industry is poised to continue this grow…" +06/13/2018,Economists,@joebrusuelas,"@michaelmbaker The key language is ""the Committee’s symmetric 2 percent objective ."" I think that this is the FOMC… https://t.co/MeLczDXS9L" +06/13/2018,Economists,@joebrusuelas,"FOMC Dot Plot: The March SEP indicated 6 members estimated 3 hikes, 6 est four hikes, 2 est one hike & 1 est five h… https://t.co/g44KUZCrPT" +06/13/2018,Economists,@joebrusuelas,The Fed holding pressers after each meeting would certainly put in play the option to hike rates as necessary at an… https://t.co/HhuOS7GF0w +06/13/2018,Economists,@joebrusuelas,"@huy_v_nguyen On the IOER: the 25bp hike will be accompanied by at 20bp hike in the IOER, which should result in th… https://t.co/Uvtz9jR0CH" +06/13/2018,Economists,@joebrusuelas,Ahead of the FOMC meeting here is a quick look at a flattening yield curve. One would think that in the first half… https://t.co/hztijEkDNv +06/13/2018,Economists,@joebrusuelas,The data viz illustrates my estimate of the Fed's reaction function. It implies a fourth rate hike this year and a… https://t.co/qw0Bskmxfo +06/13/2018,Economists,@joebrusuelas,A good FOMC morning to all or should we say happy dot plot day. A 25bps hike is priced in for today’s meeting & we… https://t.co/RISr5vnsHV +06/13/2018,Economists,@joebrusuelas,RT @wsl: Sharing is Caring 🐬 Video by Jaimen Hudson https://t.co/71K2gzX9zt +06/13/2018,Economists,@joebrusuelas,RT @isardasorensen: Sweeping pink & blue #sunset hues over #NYC tonight. https://t.co/xkMtUi0qM6 +06/13/2018,Economists,@joebrusuelas,@mark_dow Now that I like. +06/13/2018,Economists,@joebrusuelas,"RT @U2: A hot night in Harlem @ApolloTheater with @SunRaUniverse for @SIRIUSXM ... +https://t.co/X8Sa5F5Hyc +#U2 #RattleandHum #horns #angel…" +06/13/2018,Economists,@joebrusuelas,Our partners @USChamber providing real leader on risks around US protectionism. https://t.co/9hrBT7Zx8O +06/12/2018,Economists,@joebrusuelas,The Fed holding pressers after each meeting would certainly put in play the option to hike rates as necessary at an… https://t.co/Stz8NzkzlR +06/12/2018,Economists,@joebrusuelas,My FOMC preview. https://t.co/TfkbJTPYS2 +06/12/2018,Economists,@joebrusuelas,Today’s Must Read: spot on with respect to non-compete agreements & monopsony power. Courts have now blessed mandat… https://t.co/H57ImO5nrI +06/12/2018,Economists,@joebrusuelas,@JEG_Booth96 I would suggest all involved take a look at the US-Australian bilateral free trade negotiation & use i… https://t.co/ZnovsdRKoE +06/12/2018,Economists,@joebrusuelas,"A US-UK FTA will not be something that is negotiated quickly. Hard bargaining on market access over agriculture, ph… https://t.co/HJ2igNHVLH" +06/11/2018,Economists,@joebrusuelas,"RT @espn: This high school pitcher struck out his childhood friend to advance to the state championships. + +Instead of celebrating with his…" +06/11/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: The new #revenuerecognition guidance will affect most industries, ensure you are up-to-date and ready to implement by the dea…" +06/11/2018,Economists,@joebrusuelas,My FOMC meeting preview. Includes my forward look at the Fed’s reaction function & expectation for Wednesday’s monu… https://t.co/UgHyxC0ibC +06/10/2018,Economists,@joebrusuelas,"Good news: IBM builds world’s most powerful supercomputer to crack AI via @FT + https://t.co/kVkJD1AaLi" +06/10/2018,Economists,@joebrusuelas,If your invested in crypto or are thinking about it one might want to read this. No way regulators can tolerate thi… https://t.co/M94ossE3qg +06/10/2018,Economists,@joebrusuelas,"RT @JustinWolfers: Average tariff rates charged by G-7 nations: +USA: 1.6% +EU: 1.6% +UK: 1.6% +Italy: 1.6% +Germany: 1.6% +France: 1.6% +Japan: 1…" +06/10/2018,Economists,@joebrusuelas,"RT @ianbremmer: The US is like LeBron. +The best player on the court. +Still can’t win by ourselves." +06/29/2018,Economists,@IanShepherdson,"Good to know the economy's in such safe hands + +https://t.co/uwUEDcf4kC" +06/24/2018,Economists,@IanShepherdson,@FerroTV When I said on @bsurveillance on Friday that England would get five or six against Panama I was definitely being entirely serious. +06/22/2018,Economists,@IanShepherdson,About to go on @bsurveillance in NYC with @tomkeene +06/21/2018,Economists,@IanShepherdson,"@mmurraypolitics @ChrisRugaber Two options here: The president is lying, or the president doesn't know what he's ta… https://t.co/gGd4OI3Ivi" +06/19/2018,Economists,@IanShepherdson,Never mind the jump in May housing starts; this is what really matters for housing construction. https://t.co/y3gA5JIjqk +06/19/2018,Economists,@IanShepherdson,"@paulkrugman Well, the market open this morning isn't going to be pretty." +06/19/2018,Economists,@IanShepherdson,I'm about to go on @SquawkCNBC live from NY with @BeckyQuick and @JoeSquawk +06/18/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The end is coming...but when, how and what will it look like?"" Chief U.S. Economist @IanShepherdson hosted a webinar la…" +06/18/2018,Economists,@IanShepherdson,"If the UK economy had kept pace with the Eurozone over the past year, GDP would have been £20B bigger. So the… https://t.co/cpcBz5II2Q" +06/18/2018,Economists,@IanShepherdson,"If that's a Brexit dividend, finance theory needs a bit of a rethink. https://t.co/dWd19Cilxs" +06/17/2018,Economists,@IanShepherdson,"Note the forecast is 3.62%, not 3.63%, or 3.61%. The margin of error here is at least +/-1%. It's nonsense like thi… https://t.co/IgL3z4pLzG" +06/15/2018,Economists,@IanShepherdson,Delaying the purchase of a washing machine was a bad choice. Just imagine if tariffs are applied broadly to a wide… https://t.co/f0QHlaPNfa +06/15/2018,Economists,@IanShepherdson,"Interested in LatAm FX and economies at this time of turmoil? You should be following Pantheon's @andres__abadia, R… https://t.co/25UuLKJ8Jo" +06/15/2018,Economists,@IanShepherdson,Markets do love a trade war. https://t.co/2NTvvxOCGJ +06/15/2018,Economists,@IanShepherdson,The one and only positive impact of Brexit. https://t.co/qoDzQWSQ9j +06/14/2018,Economists,@IanShepherdson,"@paulkrugman Most of the British media, with some honorable exceptions, mostly CHOSE not get it, for ideological re… https://t.co/ZvtgFHbtV3" +06/13/2018,Economists,@IanShepherdson,@D_Blanchflower Ok thanks for the clarification. FWIW I think ECI private wages/salaries will be 3.5%+ and rising… https://t.co/GUMsx3BBBm +06/13/2018,Economists,@IanShepherdson,"They average a massive 1.6%. Which is what the US levies on other countries' imports, on average. There are specifi… https://t.co/SUnrcfm9YS" +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower OK, so again, are you saying there's be no further increase in US wage growth until the after the u… https://t.co/CL8gqaY57r" +06/13/2018,Economists,@IanShepherdson,"@athantolis68 @D_Blanchflower Actually, US productivity growth is no longer stagnant; it's finally picking up on th… https://t.co/iVuRsPIzfz" +06/13/2018,Economists,@IanShepherdson,@D_Blanchflower I'm only talking about the US. UK is a special case because of the lunatic self-harm of Brexit. +06/13/2018,Economists,@IanShepherdson,@Neil_Irwin Three possibilities: 1. They know something we don't (or think they do). 2. They don't really believe t… https://t.co/TJsqG7zv3V +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower Just to be clear, are you saying there'll be no meaningful increase in wage growth until after unem… https://t.co/xhhYSXnfSv" +06/13/2018,Economists,@IanShepherdson,"If the Fed gets to tell banks they can finance marijuana businesses, will they publish a Pot Dot Plot?" +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower Wages indeed slower than in the past, because productivity growth & inflation are lower than in pas… https://t.co/BuarKdcHca" +06/13/2018,Economists,@IanShepherdson,"@saedmyster Productivity growth is 1.3% y/y, so that's about all you can reasonably expect." +06/13/2018,Economists,@IanShepherdson,"Please stop telling me there's no wage growth. ECI private sector wages y/y: +Q1 2016: 2.0% +Q1 2017: 2.6% +Q1 2018: 2.9%" +06/13/2018,Economists,@IanShepherdson,"Powell is using the word ""hope"" rather more than I'd want to hear from the guy in charge of the world." +06/13/2018,Economists,@IanShepherdson,"Better get all your shopping for imported consumer goods done sharpish. +U.S. preparing to proceed with tariffs on C… https://t.co/6aqdI9I9RG" +06/13/2018,Economists,@IanShepherdson,Markets ultimately respond to what the Fed does. The Fed sometimes does what it says it is going to do. It always d… https://t.co/BiUZEnmMnM +06/13/2018,Economists,@IanShepherdson,@NickTimiraos Are they sure it isn't 1.93%? Or 1.95%? Because I'm not. +06/13/2018,Economists,@IanShepherdson,"...this chart, it makes more sense to use core CPI to derive real wages. On that basis, the real wage growth pictu… https://t.co/lXZA9nu0HG" +06/13/2018,Economists,@IanShepherdson,@paulkrugman Most of the variation in your measure of real wage growth over this period is due to big swings in gas… https://t.co/Zd7zDIuWza +06/13/2018,Economists,@IanShepherdson,"At least... Summer of '16, it was less than 1%. But there's no inflation so everything fine. https://t.co/2OJ19N1CvM" +06/13/2018,Economists,@IanShepherdson,"@Virgin_TrainsEC I know that now, but only because another passenger told me. It was never announced; hence, completely avoidable chaos." +06/13/2018,Economists,@IanShepherdson,@Virgin_TrainsEC When you make an announcement (1430 KGX NCL) that there's no coach E and that the reservations are… https://t.co/5Gvnv9HznR +06/13/2018,Economists,@IanShepherdson,RT @PantheonMacro: In Case You Missed It; Chief U.S. Economist @IanShepherdson discussing U.S. Inflation on @BloombergTV with @TheStalwart… +06/12/2018,Economists,@IanShepherdson,About to do Bloomberg TV from London with @scarletfu and @TheStalwart in NYC. +06/11/2018,Economists,@IanShepherdson,"Theresa May wants Britain to have an independent trade policy just when the words ""trade"" and ""deal"" in the same se… https://t.co/X3fqeJ8VvX" +06/11/2018,Economists,@IanShepherdson,"@ChrisGiles_ @FinancialTimes Largely because UK exporters viewed the drop in sterling after the referendum, as an o… https://t.co/5xU7zvk7CL" +06/11/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The #Fed will Hike this Week, but Likely will Hold Back the Fourth Dot"" @IanShepherdson https://t.co/6Vrt33GAhb #Panthe…" +06/09/2018,Economists,@IanShepherdson,"That's because it wasn't ""reform"". It was a huge giveaway to rich people and corporations. But there aren't enough… https://t.co/EGxyLUGcbL" +06/08/2018,Economists,@IanShepherdson,RT @TimDuy: This. The Democrats need to run on something other than the economy this November. Run on health care. Run on common decency an… +06/08/2018,Economists,@IanShepherdson,"My latest for The Hill, musing on how the jobs numbers are going to make life hard for Dems in November. +https://t.co/bnWPPQb8l9" +06/07/2018,Economists,@IanShepherdson,"Impeccably sourced. +*Ahem* +A Strong Economy Presents Democrats with a Challenge in the Midterms https://t.co/PyUpWcWJsj" +06/06/2018,Economists,@IanShepherdson,Hopped over to @BloombergTV with @flacqua +06/06/2018,Economists,@IanShepherdson,Live on @BloombergRadio in London in a mo. +06/05/2018,Economists,@IanShepherdson,"All you need to know about @Econs4FreeTrade is that their website features 30 headshots, 28 of which are of middled-aged white men in suits." +06/02/2018,Economists,@IanShepherdson,@WSJecon Three different shades of blue on one chart? Other colors are available. +06/01/2018,Economists,@IanShepherdson,Both https://t.co/MsIFtFsIci +06/01/2018,Economists,@IanShepherdson,if the current 12-month average rates of increase of household employment and the labor force continue over the nex… https://t.co/SzTAlprRJ7 +06/01/2018,Economists,@IanShepherdson,"Riveting back to the trend before mid-14, when the collapse in oil prices crushed capex in the oil sector and every… https://t.co/SfEW4jRjPr" +06/01/2018,Economists,@IanShepherdson,One good month for hourly earnings doesn't make an uptrend. But NFIB worker comp hitting an all-time high suggests… https://t.co/7hTs6Wbn55 +06/01/2018,Economists,@IanShepherdson,"The last time headline unemployment was sustained below May's 3.8% rate, in 1969, core CPI inflation averaged 5.8%.… https://t.co/vBcYutJO7T" +06/01/2018,Economists,@IanShepherdson,"For a guy who doesn't drink, @realDonaldTrump drunk tweets an awful lot." +06/01/2018,Economists,@IanShepherdson,"yup, he knew." +06/01/2018,Economists,@IanShepherdson,President's short 2y notes trade pay offs pretty quickly. https://t.co/otq9xzC28y +06/01/2018,Economists,@IanShepherdson,"More likely, I think. https://t.co/m3sVnjwPrC" +06/01/2018,Economists,@IanShepherdson,"...Second, the 15th - payday for people paid semi-monthly - fell after the survey week. AHE are supposed to be repo… https://t.co/bwMEzkeFx6" +06/01/2018,Economists,@IanShepherdson,"Two reasons to think downside risk for average hourly earnings. First, May had 22 working days this year, one more… https://t.co/xJORBlxWSc" +06/01/2018,Economists,@IanShepherdson,"180 +3.9 +0.1 +#jobsreport #nfpguesses" +06/01/2018,Economists,@IanShepherdson,...says the guy who probably saw the report yesterday. https://t.co/P8DY8lZhQG +05/31/2018,Economists,@IanShepherdson,"Every time I've said to Brexiteers over the past couple of years that ""trade deals"" are the two most toxic words in… https://t.co/x3wv5xKeLW" +05/30/2018,Economists,@IanShepherdson,"@JohnCassidy True that Italy's relative ULC have not deteriorated further since the financial crisis, but the prior… https://t.co/RT9XcVOyHn" +05/30/2018,Economists,@IanShepherdson,@JohnCassidy The nature of the euro bubble was partly that countries which joined the euro thought that meant they… https://t.co/kDVMobhk7Y +05/30/2018,Economists,@IanShepherdson,"Pleased to announce that Miguel Chanco @mc_economist will be joining Pantheon from the EIU in a couple weeks, to br… https://t.co/6ux6CrnOj0" +05/30/2018,Economists,@IanShepherdson,"If you're going to join a club run under German rules, but you're not going to control costs like Germany, then tea… https://t.co/k5hqLKMOL9" +05/24/2018,Economists,@IanShepherdson,"If you're investing in EM while the Fed is raising rates, and your EM has: +- A rising current account deficit +- A r… https://t.co/n6LqzCLaHL" +05/24/2018,Economists,@IanShepherdson,"The pardon for Jack Johnson is justice served, though a bit late. My great-grandfather Joe, a not-hugely-successfu… https://t.co/rFiVi40MTi" +05/17/2018,Economists,@IanShepherdson,"The jump in the Philly Fed prices paid index in May is consistent with a doubling of core PPI goods inflation, to 4%. Ouch." +05/17/2018,Economists,@IanShepherdson,"If you're in Cambridge tonight/Fri/Sat, go and see this (and not just because @BeckyShepp is in it!) +https://t.co/4ZG7m9i4NX" +05/17/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""U.S. Labor Market Indicators are Contradictory; Which to Trust? @IanShepherdson https://t.co/A5ni4xsUee #PantheonMacro…" +05/15/2018,Economists,@IanShepherdson,RT @Keir_Starmer: What a farce. Cabinet fighting over 2 customs options: neither workable; neither acceptable to EU; and neither would get… +05/15/2018,Economists,@IanShepherdson,"I was asked on @bsurveillance about investing in Turkey. I said, ""don't""." +05/15/2018,Economists,@IanShepherdson,Live on @bsurveillance from NYC with @tomkeene And @flacqua in a few minutes. +05/14/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""China's M1 Points to a Substantial GDP Growth Downtrend"" @freyabeamish https://t.co/wTCsLPGZBB #PantheonMacro https://t…" +05/12/2018,Economists,@IanShepherdson,"@pbalint I was referring specifically to domestic US private sector imbalances, which are quite small. EZ corps are… https://t.co/3fkxO0G2yX" +05/12/2018,Economists,@IanShepherdson,"My latest for The Hill: The date of the next recession is unknowable, but its impact isn't https://t.co/BPdVTqLwDP" +05/11/2018,Economists,@IanShepherdson,"So it's OK for the UK to be much poorer than it would otherwise have been, for the next decade, because in the foll… https://t.co/Rrch07abFf" +05/11/2018,Economists,@IanShepherdson,"I was pontificating at some unearthly hour on @CNBC @SquawkBoxEurope from Pantheon Towers this morning: +https://t.co/mqg1eqi9D7" +05/11/2018,Economists,@IanShepherdson,"That punishment definitely fits the crime, and rights the wrong. For sure. Everything will be OK. British fair play… https://t.co/apku26KSZx" +05/10/2018,Economists,@IanShepherdson,The biggest single drag on the April core CPI was a 1.6% drop in used car prices. They're mean-reverting after surg… https://t.co/SSyKSnJqAW +05/10/2018,Economists,@IanShepherdson,"Airline fares should be rocketing, given the rise in fuel prices. In fact, they're falling rapidly, probably due to… https://t.co/7q2DIoWEsw" +05/08/2018,Economists,@IanShepherdson,Hard to be a top economy when you aren't really an economy at all. https://t.co/6w2hg2aqlt +05/08/2018,Economists,@IanShepherdson,"@kurteichenwald And they have cancelled the bundling rules previously due to start Jan 1, which would have held dow… https://t.co/exO60XIjlq" +05/08/2018,Economists,@IanShepherdson,"JOLTS report released today. Or, as it's otherwise known, noise." +05/08/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The cycle is peaking as higher rates begin to bite..but the next downturn is still some way off"" Our U.S. Economic Char…" +05/08/2018,Economists,@IanShepherdson,"...rules on ""bundling"" costs for cardiac episodes and joint replacement. The definitive announcement came on 11/30,… https://t.co/jNe399Nc0n" +05/08/2018,Economists,@IanShepherdson,"... By abandoning or scaling back rule changes which were designed to hold down costs for hospital services, the ad… https://t.co/JW8s2fJYDu" +05/08/2018,Economists,@IanShepherdson,"@paulkrugman in today's @nytimes says GOP is undermining Obamacare in two ways, by making it harder for people to q… https://t.co/3Zwu8PFZWy" +05/07/2018,Economists,@IanShepherdson,Yup. But then I would say that... https://t.co/P8R8RhTKu8 +05/04/2018,Economists,@IanShepherdson,"@chrislhayes Brits say ""sport"" too rather than ""sports"". Brit twitterers of a certain age will fondly remember this: https://t.co/ZGrsbQ0G3x" +05/04/2018,Economists,@IanShepherdson,"...at which point, core CPI inflation was 6%. Four years earlier, it was 1.5%. https://t.co/r8ZQQs2gKh" +05/04/2018,Economists,@IanShepherdson,"I'll keep this short. +Payroll miss against consensus: 29K. +Margin of error: +/-115K. +Market reaction: Irrational. +#JobsReport" +05/04/2018,Economists,@IanShepherdson,Hardly ever. https://t.co/nuvuP24dJx +05/04/2018,Economists,@IanShepherdson,"Current moving average payroll numbers: +3-mth: 208 +6-mth: 198 +9-mth: 188 +12-mth: 189 +Range of monthly numbers over… https://t.co/DvEnMcqzUt" +05/04/2018,Economists,@IanShepherdson,But don't take my word for it: https://t.co/CB08gfvlhx +05/04/2018,Economists,@IanShepherdson,"I'm going to shout now: +DON'T TAKE ANY NOTICE OF THE REPORTED DIP IN PARTICIPATION IN APRIL. IT'S NOISE NOT SIGNAL,… https://t.co/jmjVbqwaDy" +05/04/2018,Economists,@IanShepherdson,Look out for a big rebound in household employment; has been undershooting payrolls. If it happens unemployment rate likely down. +05/04/2018,Economists,@IanShepherdson,RT @freyabeamish: This report takes on a whole new significance in the context of a Chinese #currentaccount #deficit. #China is capital hun… +05/04/2018,Economists,@IanShepherdson,"200 +4.0 +.2 +Brevity +virtue + #NFPGuesses" +05/03/2018,Economists,@IanShepherdson,"How can you ""track"" something which mostly hasn't happened yet, and the data for the bit which has happened mostly… https://t.co/rLcMZsNOBY" +05/03/2018,Economists,@IanShepherdson,"The spelling attests that Trump typed this, but he clearly didn't write it. It's in English. https://t.co/KJFRUMks8K" +04/30/2018,Economists,@IanShepherdson,@RenMacLLC I'm guessing the surge in repair costs is concentrated in areas hit by the hurricanes last summer. +04/30/2018,Economists,@IanShepherdson,On @SquawkCNBC NY in 10 min with @JoeSquawk @andrewrsorkin and @BeckyQuick +04/27/2018,Economists,@IanShepherdson,"The hurricanes last summer distorted Q1 consumption, inventories, and foreign trade. Maybe capex too. Also, the BEA… https://t.co/bFU4XNPrJo" +04/27/2018,Economists,@IanShepherdson,By which I mean that the seasonal adjustment problem which holds down reported Q1 GDP growth is so pronunced - abou… https://t.co/ioqehQZLDb +04/26/2018,Economists,@IanShepherdson,Aaaand you're welcome. +04/26/2018,Economists,@IanShepherdson,And in glorious pictorial form... https://t.co/wFWIf8IN5r +04/26/2018,Economists,@IanShepherdson,2. Durable goods orders likely will beat consensus; Boeing had a very strong month. I'm looking for 3.5% m/m headli… https://t.co/QVzZQf2GYZ +04/26/2018,Economists,@IanShepherdson,"1. Couple things to watch out for in the econ data today. First, data on container movement at major ports suggests… https://t.co/xe6zedgR7V" +04/25/2018,Economists,@IanShepherdson,"@hairmetalchef Utterly brilliant Chef for the Day experience at MBTC on Saturday; such a great bunch of committed,… https://t.co/WssXSmwmxO" +04/25/2018,Economists,@IanShepherdson,Seeing all these recent results together is quite a powerful picture. https://t.co/3tF3PfkCpm +04/24/2018,Economists,@IanShepherdson,"If you don't have the cash, it doesn't matter how confident you are. https://t.co/8R4mYf6SqF" +04/20/2018,Economists,@IanShepherdson,"Healthcare inflation has not been a problem for the Fed's PCE inflation target for some years, but the beast is bac… https://t.co/sSQk057XbQ" +04/12/2018,Economists,@IanShepherdson,RT @PantheonMacro: Our U.S. Chartbook for April by @IanShepherdson has now been released. Subscribers can access here https://t.co/O3DW5OtW… +04/12/2018,Economists,@IanShepherdson,"@TheStalwart Several hours sleep, it appears." +04/11/2018,Economists,@IanShepherdson,Everyone knows base effects will lift core inflation; what the Fed cares about is the impact on inflation expectati… https://t.co/0tzFipdrqf +04/11/2018,Economists,@IanShepherdson,"The departure of Paul Ryan means that the title of ""wearer of the worst-fitting suit in Congress"" is up for grabs." +04/11/2018,Economists,@IanShepherdson,"If I were a Fed hawk, I'd be saying never mind the base effect lifting y/y core inflation; what matters is that the… https://t.co/T2VEPAqX1f" +04/10/2018,Economists,@IanShepherdson,"Absolutely no sign yet that the tax cuts are lifting small firms' investment spending plans. Maybe, just maybe, the… https://t.co/PpseEP0rH1" +04/10/2018,Economists,@IanShepherdson,@TheStalwart Bit of editing. You're welcome. https://t.co/uCtSjGx1Bi +04/06/2018,Economists,@IanShepherdson,The 313k #nfp initial print for feb was not indicative of the trend; nor is the103k march reading. Nothing to do wi… https://t.co/1kt3ltKco0 +03/30/2018,Economists,@IanShepherdson,"I often disagree with @bretstephens, but he is dead right on this one. And no, I'm not a Tory or a Blairite. +Jer… https://t.co/RYt3sc2WBc" +03/29/2018,Economists,@IanShepherdson,@JulianMI2 @greg_ip Base effects will put core CPI above that rate by spring THIS year. +03/29/2018,Economists,@IanShepherdson,RT @greg_ip: .@IanShepherdson at Pantheon Macro highlights how core PCE is catching up to core CPI inflation because of rising hospital pri… +03/28/2018,Economists,@IanShepherdson,"I'm quite miffed that imports refused to fall in March, but they are going to drop sharply very soon, and the trade… https://t.co/dPIcRWTcyP" +03/27/2018,Economists,@IanShepherdson,I'm live on @BloombergRadio in a couple minutes talking US economy. +03/26/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Smoot and Hawley are Still Dead; Trump is not Resurrecting them… Yet"" @IanShepherdson https://t.co/fZRhVJNPZg #Pantheon…" +03/23/2018,Economists,@IanShepherdson,"@ScottWapnerCNBC I mean, I could be wrong, but perhaps this is just evidence that Peter Navarro has no clue." +03/23/2018,Economists,@IanShepherdson,"@LinkedInEcon @D_Blanchflower I don't need to it to get there, I just want to see a sustained upward trend." +03/23/2018,Economists,@IanShepherdson,@LinkedInEcon @D_Blanchflower Agreed. But it's mostly among women and older men. I'll be much happier if/when it st… https://t.co/TJQXIZyjB1 +03/23/2018,Economists,@IanShepherdson,@D_Blanchflower Agreed forecasts of incremental declines in LFPR from here make little sense. But the rising trend… https://t.co/3ZYbum1ieg +03/23/2018,Economists,@IanShepherdson,@D_Blanchflower I'd like nothing better than to see participation rising - it would extend the cycle and begin to a… https://t.co/xqPNOtyEAz +03/22/2018,Economists,@IanShepherdson,And probably neither of them were orange. https://t.co/rs6Ehpgq4p +03/22/2018,Economists,@IanShepherdson,"I see that two white guys in their 70s are threatening to punch each other. No big deal, except than one is the Pre… https://t.co/X15LLpaKz8" +03/21/2018,Economists,@IanShepherdson,Every FOMC member now forecasts core PCE inflation at or above the target at end-2020; the range is 2.0-to-2.3%. I… https://t.co/0z6KQV9GbU +03/21/2018,Economists,@IanShepherdson,"2. Curious to see how House/Senate Committees will react to Fed saying they are going to overshoot, even if only marginally." +03/21/2018,Economists,@IanShepherdson,1. People at Powell presser: What's the logic behind forecasting core PCE a tenth above target end 19/20? Why not a… https://t.co/dxr6Dngqgg +03/21/2018,Economists,@IanShepherdson,"Google maps, central London. I'm not making this up... https://t.co/DeY9hQ7ry3" +03/21/2018,Economists,@IanShepherdson,"My Fed preview for @thehill +Memo to Powell: Best not to offer hostages to fortune https://t.co/kU6TbPMI4b" +03/20/2018,Economists,@IanShepherdson,"Some people just don't learn: +Visit NYC mid-March. +Watch weather forecast and wait for meetings to be snowed off. +Repeat next year." +03/20/2018,Economists,@IanShepherdson,The fact that their estimate was well over 5% just a few weeks ago should tell you all you need to know about the s… https://t.co/z7zPmijcr6 +03/20/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""FOMC to Stick to Three Hikes this Year, but an Extra Dot for 2019?"" @IanShepherdson https://t.co/bwB90nraXD #PantheonMa…" +03/20/2018,Economists,@IanShepherdson,"RT @samueltombs: UK CPI #inflation fell to 2.7% in February, clearly below the MPC's 2.9% forecast. Services inflation was its weakest sinc…" +03/19/2018,Economists,@IanShepherdson,"ICYMI Fed's Powell 'bullish on growth,"" says economist https://t.co/KsBa2wRmLy" +03/19/2018,Economists,@IanShepherdson,I'm on @SquawkCNBC in NY with @BeckyQuick in about 10 min. +03/16/2018,Economists,@IanShepherdson,"RT @bsurveillance: .@IanShepherdson @PantheonMacro with @tomkeene & @FerroTV: Retail sales are not correcting, they're returning back to no…" +03/16/2018,Economists,@IanShepherdson,RT @bsurveillance: .@IanShepherdson @PantheonMacro with @tomkeene & @FerroTV: I realize we've had some horrible trade deficits in the recen… +03/16/2018,Economists,@IanShepherdson,Talking Fed and global macro https://t.co/ilzCwPhyqI +03/15/2018,Economists,@IanShepherdson,"Now I pour Krug on them, for a nice little morning pick-me-up. https://t.co/PPkgCFs8qD" +03/15/2018,Economists,@IanShepherdson,"The recent ""weakness"" in retail sales isn't weakness at all. https://t.co/vQbLkRJ9MM" +03/15/2018,Economists,@IanShepherdson,"Ways in which Britain and America baffle each other, part 5,634: +In Britain skim milk is in red cartons, whole milk… https://t.co/PApi0d9MlE" +03/15/2018,Economists,@IanShepherdson,RT @BBCPolitics: Alex Salmond: Russian channel RT 'not propaganda' https://t.co/WPKojuJXIo +03/15/2018,Economists,@IanShepherdson,"RT @paulkrugman: OK, so it's Kudlow for top economic adviser. At least he's reliable -- that is, he's reliably wrong about everything. We a…" +03/15/2018,Economists,@IanShepherdson,RT @Milbank: Even a stopped clock is right twice a day. But Larry Kudlow? Well... https://t.co/qkVXzLLr5q +03/13/2018,Economists,@IanShepherdson,"Andrew Pudzer, apparently in the frame to replace Gary Cohn, just asserted confidently on @MSNBC that Feb average h… https://t.co/bbHjqoacdg" +03/11/2018,Economists,@IanShepherdson,"The labor market looks great, and it likely will stay that way for a while yet. https://t.co/ysAMNIMVf6" +03/10/2018,Economists,@IanShepherdson,The .01% here is VERY important. Just think how bad it would be if growth were only 2.80%. And economists wonder w… https://t.co/CarLxar91e +03/10/2018,Economists,@IanShepherdson,"@EvanHD Whatever the context, you can't refer to a real live person as a ""black"", as though their ethnicity is the… https://t.co/wXOxnDziIM" +03/09/2018,Economists,@IanShepherdson,Memo to everyone getting excited about the 0.3pp rise in the participation rate: It just reverses the reported 0.3p… https://t.co/VExHL8vEgb +03/09/2018,Economists,@IanShepherdson,Minor quibbles apart - the construction and retail job gains aren't sustainable - this is just a great employment r… https://t.co/unEPHCg966 +03/08/2018,Economists,@IanShepherdson,It's all going wobbly in the UK housing market... https://t.co/Db96XNHPOb +03/06/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Why China will Miss its GDP Growth, Fiscal Deficit and RMB targets"" @freyabeamish https://t.co/JBVCbVQZ16 #PantheonMacr…" +03/06/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Inventories Rebounding in Q1; GDP Growth Could Yet be Very Strong"" @IanShepherdson https://t.co/FMmPKG3idj #PantheonMac…" +03/05/2018,Economists,@IanShepherdson,Something doesn't add up. That would be China's GDP. https://t.co/DckiWcj5CE +03/05/2018,Economists,@IanShepherdson,RT @freyabeamish: #China ceases to target #M2. But Li Keqiang says they expect growth around the same level as last year…which was a histor… +03/05/2018,Economists,@IanShepherdson,"RT @jcragroup: Now available: @IanShepherdson, Chief Economist at @PantheonMacro speaks at JCRA’s Annual Economic Breakfast Overview 2018:…" +03/03/2018,Economists,@IanShepherdson,"RT @andres__abadia: #Chile: #Retail #sales rose 3.8% y/y in Jan, down from 4.5% in Dec, but the trend is rising. We expect the recovery in…" +03/02/2018,Economists,@IanShepherdson,@boes_ @TimDuy @SteveMatthews12 it's not questionable. The rental vacancy rate dropped sharply in Q4. +03/02/2018,Economists,@IanShepherdson,"in any other developed country, this would be the front page splash. https://t.co/wlAICE2LxH" +03/02/2018,Economists,@IanShepherdson,@w14capital Problem is that one guy's reasonable effort is another guy's illegal state aid. Better to let the macro… https://t.co/eUpN0wimN5 +03/02/2018,Economists,@IanShepherdson,Genius https://t.co/QnMS2WvDxH +03/02/2018,Economists,@IanShepherdson,@w14capital There's no economic law that says t-shirts have to be produced in sweatshops either in DM or EM econs;… https://t.co/JkYmg0BVDp +03/02/2018,Economists,@IanShepherdson,"@EventLongShort Yes, but they're smaller than before China joined the WTO" +03/02/2018,Economists,@IanShepherdson,"Since China joined the WTO, US clothing production is down 79%, while production of primary metals is UP 11%. So wh… https://t.co/a7d58oYj8l" +03/02/2018,Economists,@IanShepherdson,@alexmassie @PickardJE Deliberate ambiguity or perhaps just utter cluelessness. +03/02/2018,Economists,@IanShepherdson,"At the last count, a mere 99.7% of U.S. private sector employees did not work in the primary metals sector." +03/02/2018,Economists,@IanShepherdson,RT @freyabeamish: Kuroda says #BoJ will consider an exit in 2019. Exit is an attempt to get back to a normal and less invasive form of #mon… +03/02/2018,Economists,@IanShepherdson,"2. With 17M light vehicle sales per year, that's a total consumer hit of $2.9B per year from higher auto prices alo… https://t.co/H1UTfFYp7H" +03/02/2018,Economists,@IanShepherdson,1. So. The average car requires about 2000lb steel and 400lb aluminum. If domestic producers raise prices by almost… https://t.co/qlxUAvv931 +03/02/2018,Economists,@IanShepherdson,"@ReutersBiz @TheStalwart Sow. +Reap. +Repeat." +03/02/2018,Economists,@IanShepherdson,"@realDonaldTrump Meanwhile, in the fact-based world - the one that puts planes in the sky and stuff - this is just… https://t.co/840Mm64bzR" +03/02/2018,Economists,@IanShepherdson,Looks like someone with zero understanding of basic economics has got access to the U.S. President's Twitter this m… https://t.co/RzFAaBxC6y +03/02/2018,Economists,@IanShepherdson,@TheStalwart The Arctic remains resituated over the U.K. and we're all still loving it. +03/01/2018,Economists,@IanShepherdson,"RT @PantheonMacro: U.S. Construction Spending in January ""Likely constrained by weather; better to come."" @IanShepherdson #PantheonMacro" +03/01/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Spectacular headline; details not quite so good."" @IanShepherdson on ISM Manufacturing Survey, February #PantheonMacro" +03/01/2018,Economists,@IanShepherdson,It looks to me like the compression of healthcare inflation under Obamacare is unwinding. With hospital margins so… https://t.co/yUXX69Fuhl +03/01/2018,Economists,@IanShepherdson,I wouldn't mind so much if it weren't absolutely hideous. But it is. https://t.co/gyCvLLScHb +02/28/2018,Economists,@IanShepherdson,"Last time I bought an assault rifle from Delta Airlines, they wanted ID and everything. Same with Hertz. https://t.co/UAZEAkMRuH" +02/28/2018,Economists,@IanShepherdson,Thunder. In February. This has got to stop. +02/26/2018,Economists,@IanShepherdson,"The check is due for the longest, biggest free lunch in history. https://t.co/ZxKUAXVDTI" +02/16/2018,Economists,@IanShepherdson,On @SquawkCNBC in a couple min should you want to watch some singing and dancing. +02/14/2018,Economists,@IanShepherdson,"Core CPI is up 2.9% on a three-month annualized basis. The horror! As recently as May, it was 0.4%. The (opposite)… https://t.co/g4MO0MR2oy" +02/14/2018,Economists,@IanShepherdson,"@matthewjsinger @morningmoneyben One CPI report doesn't confirm anything, except that the BLS releases a CPI report every month," +02/14/2018,Economists,@IanShepherdson,Hospital services prices went a bit nuts in the January CPI. That's what they do sometimes; it doesn't mean the tr… https://t.co/CZXGSn1PNU +02/14/2018,Economists,@IanShepherdson,"Had the January CPI core number been just 0.002% higher, the print would have been 0.4% rather than 0.3%, and that… https://t.co/wNDTD1UIkE" +02/09/2018,Economists,@IanShepherdson,@blueskiesatx I don't agree. It would have been much worse for everyone if the banking system had collapsed. But s… https://t.co/rs2EkVmqoM +02/09/2018,Economists,@IanShepherdson,@TimDuy That's possible. But my more immediate concern is that the extra demand from the fiscal easing can't be abs… https://t.co/Obqsql1SzL +02/09/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Congress Set to Spray Yet More Fuel on the Fire; Over to You, Mr. Powell"" @IanShepherdson https://t.co/Lk4yKrjPwo #Pant…" +07/02/2018,Economists,@bill_easterly,@Sirensongs But why does there have to be any empire? +07/02/2018,Economists,@bill_easterly,"Sorry, Paul Krugman, some of us never supported the allegedly benevolent American Empire to begin with https://t.co/bCvz3u0HLr" +07/02/2018,Economists,@bill_easterly,"RT @bill_easterly: Adam Smith on the Invisible Hand at the World Cup: “It is not from the benevolence of the striker, the midfielder, or th…" +07/02/2018,Economists,@bill_easterly,RT @Cat_Lliures: https://t.co/cinZq1Y1J6 +07/01/2018,Economists,@bill_easterly,"Adam Smith on the Invisible Hand at the World Cup: “It is not from the benevolence of the striker, the midfielder,… https://t.co/UC7jW9vrhZ" +07/01/2018,Economists,@bill_easterly,"Thinking about Russian friends and not about leaders, congratulations to you on an amazing World Cup upset." +07/01/2018,Economists,@bill_easterly,RT @bill_easterly: Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if other… +06/30/2018,Economists,@bill_easterly,Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if… https://t.co/wkx5caTJFc +06/30/2018,Economists,@bill_easterly,Is it a thing in the World Cup that the team with more immigrants wins? +06/30/2018,Economists,@bill_easterly,RT @bill_easterly: Lifetime goal: violate all of these restrictions. https://t.co/UbA4rULHsG +06/29/2018,Economists,@bill_easterly,@ChrisProttas Thanks for engaging. +06/29/2018,Economists,@bill_easterly,Lifetime goal: violate all of these restrictions. https://t.co/UbA4rULHsG +06/29/2018,Economists,@bill_easterly,You can now read The Tyranny of Experts in Thai if you want https://t.co/yiqb6suRcG +06/29/2018,Economists,@bill_easterly,@PMoserEcon What about Marriage of Figaro? +06/29/2018,Economists,@bill_easterly,RT @bill_easterly: Feeling very frustrated on how to fight xenophobic policies when the 2 most popular options are not working: (1) preachi… +06/28/2018,Economists,@bill_easterly,@DevashishMitra_ The secret is in the broth +06/28/2018,Economists,@bill_easterly,Doctor recommends to me an all-ramen diet. Could be example for a future class on non-generalizable recommendations… https://t.co/O099scfRjE +06/28/2018,Economists,@bill_easterly,Feeling very frustrated on how to fight xenophobic policies when the 2 most popular options are not working: (1) pr… https://t.co/ETBFAoHqR2 +06/27/2018,Economists,@bill_easterly,RT @triskodarden: “The fundamental cause of development is freedom.” -@bill_easterly https://t.co/LyGdjWvsWw +06/27/2018,Economists,@bill_easterly,Talk at Heritage Foundation: aid to prevent migration offers poor people something they don’t want in exchange for… https://t.co/VsnjGKxKFV +06/27/2018,Economists,@bill_easterly,A policy that penalizes people based on their national origin denies to them the dignity of being treated as a uniq… https://t.co/SCOKm43yM7 +06/27/2018,Economists,@bill_easterly,"RT @conradhackett: In a classic experiment, 12 articles were resubmitted to the same journals in which they had already been published. Thr…" +06/25/2018,Economists,@bill_easterly,"RT @bill_easterly: This does not settle the argument but a world with open borders would be twice as rich, based on work by @m_clem https:/…" +06/24/2018,Economists,@bill_easterly,"RT @bill_easterly: Paper with Steven Pennings that I’m presenting at World Bank on Monday 10:30am, on whether there is evidence for Benevol…" +06/24/2018,Economists,@bill_easterly,"This does not settle the argument but a world with open borders would be twice as rich, based on work by @m_clem https://t.co/PclKceiN7i" +06/23/2018,Economists,@bill_easterly,"RT @bill_easterly: List of all leaders estimated to have a significantly positive effect on growth (“LS leader est.”), from paper by Pennin…" +06/23/2018,Economists,@bill_easterly,@alans_spo @eneasthings @PaulKagame The Kagame effect is positive but high noise makes it statistically insignificant. +06/22/2018,Economists,@bill_easterly,"@eneasthings Positive effect on growth does not mean a “good” leader, it might have been through terror & coercion" +06/22/2018,Economists,@bill_easterly,"List of all leaders estimated to have a significantly positive effect on growth (“LS leader est.”), from paper by P… https://t.co/dVnnz1EgQg" +06/22/2018,Economists,@bill_easterly,"RT @SverrirSte: The best and worst leaders in terms of achieving economic growth, according to a measure by @bill_easterly #SocSciResearch…" +06/22/2018,Economists,@bill_easterly,"RT @m_clem: ""How much economic growth can we attribute to national leaders?"" +https://t.co/UiXPkWJNYa +New from @bill_easterly and Pennings" +06/22/2018,Economists,@bill_easterly,"Paper with Steven Pennings that I’m presenting at World Bank on Monday 10:30am, on whether there is evidence for Be… https://t.co/WzkWfc3DhR" +06/21/2018,Economists,@bill_easterly,@savthorpe @Libertylifter Can you send me a link to the blog mentioned? +06/21/2018,Economists,@bill_easterly,RT @bill_easterly: Presenting paper “Shrinking Dictators: How much Economic Growth can we Attribute to National Leaders?” at World Bank ABC… +06/21/2018,Economists,@bill_easterly,Install these on all foreign aid projects https://t.co/KjKBdt5RSH +06/21/2018,Economists,@bill_easterly,RT @bill_easterly: How American Development Economists decide which country to root for in World Cup 2018 https://t.co/k6ZTwiiYzZ +06/20/2018,Economists,@bill_easterly,@psharma3123 Have to keep it a secret to avoid offending the others! +06/20/2018,Economists,@bill_easterly,How American Development Economists decide which country to root for in World Cup 2018 https://t.co/k6ZTwiiYzZ +06/20/2018,Economists,@bill_easterly,RT @bill_easterly: Speaking on Development moving beyond foreign aid in Wash DC Tuesday June 26 2pm https://t.co/IOTCRImQCV +06/20/2018,Economists,@bill_easterly,RT @bill_easterly: It’s cruel and unusual punishment to enforce immigration laws by separating a 2-year-old from her parents https://t.co/T… +06/19/2018,Economists,@bill_easterly,Listen to children who immigration officers have just separated from their parents at the border https://t.co/7wmLWVByOk +06/19/2018,Economists,@bill_easterly,It’s cruel and unusual punishment to enforce immigration laws by separating a 2-year-old from her parents https://t.co/TnBTyKjs8U +06/18/2018,Economists,@bill_easterly,Speaking on Development moving beyond foreign aid in Wash DC Tuesday June 26 2pm https://t.co/IOTCRImQCV +06/18/2018,Economists,@bill_easterly,"Debate on whether free markets are the best way to end global poverty, Aug 27 in NYC https://t.co/vd57uBE17N" +06/18/2018,Economists,@bill_easterly,"RT @TheSohoForum: Monday, August 27th, @TheSohoForum/@reason new event featuring @bill_easterly & @JosephEStiglitz discussing ""Is the best…" +06/14/2018,Economists,@bill_easterly,Congrats to Mari Kuraishi @mashenka for completing her wildly successful stewardship of Global Giving @GlobalGiving https://t.co/uCoGU5FyRi +06/12/2018,Economists,@bill_easterly,"RT @gladstein: Yes, Putin’s regime is making great progress on the Sustainable Development Goals. As measured by his own statisticians! htt…" +06/12/2018,Economists,@bill_easterly,RT @DennisWhittle: Do you know the next CEO of @GlobalGiving? https://t.co/TCNsomL5bS +06/10/2018,Economists,@bill_easterly,RT @bill_easterly: Spontaneous individualist farm 2016 vs. Planned collective farm 2018 https://t.co/BkzUfZf7mD +06/09/2018,Economists,@bill_easterly,Spontaneous individualist farm 2016 vs. Planned collective farm 2018 https://t.co/BkzUfZf7mD +06/09/2018,Economists,@bill_easterly,Sorry I’m not as influyente as you think Los economistas más influyentes https://t.co/49yILDLdR8 via @elmundoes +06/08/2018,Economists,@bill_easterly,Lions got it right https://t.co/f2XbaywcZQ +06/08/2018,Economists,@bill_easterly,"RT @bill_easterly: Why dictators like the Sustainable Development Goals, by @gladstein and @Smith_JeffreyT https://t.co/Z5Lhq0zNxD via @qz…" +06/07/2018,Economists,@bill_easterly,"Why dictators like the Sustainable Development Goals, by @gladstein and @Smith_JeffreyT https://t.co/Z5Lhq0zNxD via @qzafrica" +06/06/2018,Economists,@bill_easterly,Presenting paper “Shrinking Dictators: How much Economic Growth can we Attribute to National Leaders?” at World Ban… https://t.co/JOzTQN1ttu +06/06/2018,Economists,@bill_easterly,"@jodiecongirl Apologies, didn't know there was supposed to be a point" +06/06/2018,Economists,@bill_easterly,Bayesian updating based on appearance https://t.co/NO7VSQG1Q4 +06/06/2018,Economists,@bill_easterly,RT @FeedbackLabs: “There are so many bad ideas in philanthropy. Listening to beneficiaries is not one of them.” - Larry Kramer #FeedbackEmp… +06/06/2018,Economists,@bill_easterly,"RT @4SharedInsight: We all know it's true: ""Closing loops is not a spectator sport."" So jump in @FeedbackLabs. Go to https://t.co/nBysuE1uc…" +06/04/2018,Economists,@bill_easterly,RT @bill_easterly: Does this apply to RCTs in the field also? https://t.co/H76LqZVXgn https://t.co/iL7jri44AH +06/02/2018,Economists,@bill_easterly,Does this apply to RCTs in the field also? https://t.co/H76LqZVXgn https://t.co/iL7jri44AH +06/02/2018,Economists,@bill_easterly,RT @bill_easterly: Biggest development tragedy in the world right now https://t.co/2pHO8tfACI +06/01/2018,Economists,@bill_easterly,Biggest development tragedy in the world right now https://t.co/2pHO8tfACI +06/01/2018,Economists,@bill_easterly,Should really be done more often https://t.co/QRW3PMA718 +05/31/2018,Economists,@bill_easterly,RT @bill_easterly: It seems strange that I can't find a political party or leader who matches my ideals. https://t.co/WCCnUgfeDD +05/30/2018,Economists,@bill_easterly,RT @TanjuYurukoglu: @bill_easterly If you reverse the columns. it is much easier to find them around the globe. +05/30/2018,Economists,@bill_easterly,It seems strange that I can't find a political party or leader who matches my ideals. https://t.co/WCCnUgfeDD +05/30/2018,Economists,@bill_easterly,"RT @hamandcheese: ""In our new study, we left a treatment group of journalists unattended in a room with a provocative yet N=28 social psyc…" +05/29/2018,Economists,@bill_easterly,Best quote from an RBG legal brief in this great movie: “A person born female continues to be branded inferior for… https://t.co/Bn0gw77fGr +05/29/2018,Economists,@bill_easterly,"The previous generation won WWII and produced a half-century of prosperity, while ""the chief accomplishment of the… https://t.co/os6LUnTkyz" +05/25/2018,Economists,@bill_easterly,"RT @bill_easterly: Official IRS rule to claim your child as a dependent on your tax return: ""the child must be younger than you.""" +05/25/2018,Economists,@bill_easterly,"RT @PJakiela: A student once asked why shocks are mean zero. I laughed at the time, but now I think of it every long weekend, when I’m curs…" +05/24/2018,Economists,@bill_easterly,"Official IRS rule to claim your child as a dependent on your tax return: ""the child must be younger than you.""" +05/22/2018,Economists,@bill_easterly,"RT @bill_easterly: Just met Eskinder Nega, courageous democracy activist and political prisoner in Ethiopia, just released from jail. He to…" +05/21/2018,Economists,@bill_easterly,"Just met Eskinder Nega, courageous democracy activist and political prisoner in Ethiopia, just released from jail.… https://t.co/e11RQ7MsX2" +05/18/2018,Economists,@bill_easterly,RT @UCSC_GradDiv: The Good Neighbor: Addressing Global Poverty in an Age of Xenophobia with William Easterly https://t.co/9vdTKEI2XA @bill_… +05/18/2018,Economists,@bill_easterly,This 2014 effort by African musicians is being activated again for new Ebola outbreak; such a refreshing alternativ… https://t.co/jTOJZ2kn2R +05/16/2018,Economists,@bill_easterly,"Benjamin Franklin on German immigration in 1753: ""Those who come hither are the most stupid of their own nation."" M… https://t.co/TAAOmqzYHG" +05/11/2018,Economists,@bill_easterly,"RT @bill_easterly: Economists abandoned the discussion of big ideas, so now we are missing in action on the crisis of Enlightenment Values…" +05/10/2018,Economists,@bill_easterly,"Economists abandoned the discussion of big ideas, so now we are missing in action on the crisis of Enlightenment Va… https://t.co/G2uPHymtbW" +05/09/2018,Economists,@bill_easterly,"RT @bill_easterly: Hotel: ""sorry, the group rate does not apply the first night of your stay."" +Me: ""OK, what is the difference?"" +Hotel: ""…" +05/08/2018,Economists,@bill_easterly,"Hotel: ""sorry, the group rate does not apply the first night of your stay."" +Me: ""OK, what is the difference?"" +Hot… https://t.co/Tk1mopD0Hc" +05/08/2018,Economists,@bill_easterly,RT @bill_easterly: Congratulations to Penny Goldberg for her appointment as the World Bank's new Chief Economist https://t.co/tQLeJyAAvZ +05/07/2018,Economists,@bill_easterly,Congratulations to Penny Goldberg for her appointment as the World Bank's new Chief Economist https://t.co/tQLeJyAAvZ +05/07/2018,Economists,@bill_easterly,This is bad. Now waiting for the exposé of the pro-aid bias of many foundations financing economic development. https://t.co/oQvo8WWOpi +05/07/2018,Economists,@bill_easterly,"RT @kuangalia_tw: @bill_easterly, The Tyranny of Experts, 2013. +#memento https://t.co/gWPaV4CH2s" +05/06/2018,Economists,@bill_easterly,Effective aid could be as simple as a pair of glasses https://t.co/PJj4QWuL4n +05/05/2018,Economists,@bill_easterly,@JVWoodster Which textbook? +05/04/2018,Economists,@bill_easterly,Friends don't let friends...have a different educational level. From @UpshotNYT https://t.co/YTBdfOr7Cp +05/02/2018,Economists,@bill_easterly,RT @bill_easterly: It should not be only the Right who memorializes a Victims of Communism Day on May 1; Communist regimes killed over 80 m… +05/01/2018,Economists,@bill_easterly,It should not be only the Right who memorializes a Victims of Communism Day on May 1; Communist regimes killed over… https://t.co/E3zgxroLSS +05/01/2018,Economists,@bill_easterly,"RT @bill_easterly: On the movement to ban all-male panels (""manels"") -- why not ban panels altogether? They are most boring format ever, an…" +04/30/2018,Economists,@bill_easterly,"Had to look up JEL codes for economics sub-fields, and realized again that most of the work that I like, or have do… https://t.co/55UT3p92Mf" +04/30/2018,Economists,@bill_easterly,"@_alice_evans Pick a smaller # of speakers that are worth listening to for solo talks, and have lots of Q and A after each." +04/30/2018,Economists,@bill_easterly,"On the movement to ban all-male panels (""manels"") -- why not ban panels altogether? They are most boring format eve… https://t.co/RCteoS4z8V" +04/27/2018,Economists,@bill_easterly,"RT @bill_easterly: Q: What have you done that is most unusual, that most other economists have not done? +A: Have actually read all of The…" +04/26/2018,Economists,@bill_easterly,"Q: What have you done that is most unusual, that most other economists have not done? +A: Have actually read all of… https://t.co/8CWeYBZFJq" +04/26/2018,Economists,@bill_easterly,"RT @nortonnole: Students loved the discussion of how models can mislead, of which I drew heavily on lessons I learned from @bill_easterly a…" +04/26/2018,Economists,@bill_easterly,Happy news of the day: distributing routine antibiotics to infants in Africa would cut their currently high death r… https://t.co/EPKFBkL0mI +04/25/2018,Economists,@bill_easterly,"RT @bill_easterly: Sadly, every new generation of aid critics has to fight all over again the battle against Used Shoes Aid HT @kcroninfurm…" +04/24/2018,Economists,@bill_easterly,"Sadly, every new generation of aid critics has to fight all over again the battle against Used Shoes Aid HT… https://t.co/0G03QsjVZ8" +04/24/2018,Economists,@bill_easterly,The Sackler family as owner of Purdue Pharma was implicated in the US opioid epidemic. They are now trying to sprea… https://t.co/QM0H8K9tNF +04/23/2018,Economists,@bill_easterly,RT @bill_easterly: U.S. escalating its secret war in West Africa https://t.co/WnW1dC3Mtx +04/22/2018,Economists,@bill_easterly,U.S. escalating its secret war in West Africa https://t.co/WnW1dC3Mtx +04/20/2018,Economists,@bill_easterly,"RT @bill_easterly: 17 years of emphasis on Failed States has produced more Failed States, which then leads to yet further emphasis on Faile…" +04/19/2018,Economists,@bill_easterly,"17 years of emphasis on Failed States has produced more Failed States, which then leads to yet further emphasis on… https://t.co/rBAvNP4lCg" +04/18/2018,Economists,@bill_easterly,"Facebook removed this post by me because it ""went against community standards."" Anybody have any idea why? https://t.co/GvKUvu7HUl" +04/17/2018,Economists,@bill_easterly,"When I started writing OpEds 25 years ago, ""correlation"" was too difficult a concept to describe. Glad to have live… https://t.co/uUtEILcmhv" +04/17/2018,Economists,@bill_easterly,RT @MaxCRoser: Just saw that ‘Factfulness' is on the very top of the bestseller list on Amazon. Very well deserved! Great that so many are… +04/16/2018,Economists,@bill_easterly,RT @bill_easterly: “Sometimes the best foreign policy option is to do nothing” I get vilified whenever I make this argument https://t.co/rT… +04/15/2018,Economists,@bill_easterly,It’s up to Ghanaians if they want to spend money on a cathedral rather than mosquito nets https://t.co/NlzeHOdnXM +04/14/2018,Economists,@bill_easterly,"RT @MaxCRoser: 2.5% of global deaths are caused by intentional injuries (suicide, homicide, war, terrorism). + +3% are caused by diarrhea. + +O…" +04/14/2018,Economists,@bill_easterly,“Sometimes the best foreign policy option is to do nothing” I get vilified whenever I make this argument https://t.co/rT4GRbbZ5s +04/11/2018,Economists,@bill_easterly,"In contrast, if the election had gone the other way today's headline would have been ""President appoints task force… https://t.co/7r3y2FcJGC" +04/11/2018,Economists,@bill_easterly,RT @DennisWhittle: #Feedback is critical to effective civic engagement. Learn more about the importance of feedback in new #ListeningtoIncl… +04/10/2018,Economists,@bill_easterly,"RT @bill_easterly: Not been active on Twitter recently; Sometimes I prefer to work instead towards a Tweet of 500,000 characters called a b…" +04/09/2018,Economists,@bill_easterly,"Not been active on Twitter recently; Sometimes I prefer to work instead towards a Tweet of 500,000 characters called a book." +04/09/2018,Economists,@bill_easterly,"RT @bonjaymusic: This quote wasn’t the inspiration for “Chelsea.” But it’s kin to the ideas within 🤔 + +- @bill_easterly https://t.co/WgOW2Zq…" +04/07/2018,Economists,@bill_easterly,RT @bill_easterly: Foreign Aid raises Economic Growth https://t.co/R2fs9Z5m2e +04/06/2018,Economists,@bill_easterly,"""He or she who votes against the rights of another, whatever may be his or her religion, color, or sex, has by that… https://t.co/j4ZGXVzGmn" +04/05/2018,Economists,@bill_easterly,"One of the authors wrote to emphasize growth effect is only short-term, their paper “does not contradict any view… https://t.co/J0YhPtyLKq" +04/05/2018,Economists,@bill_easterly,"Wind chill formula has an irrational discontinuity of zero wind chill above 40, so it predicts rise of 2 degrees wi… https://t.co/VY0MpBpUFe" +04/04/2018,Economists,@bill_easterly,"Aren't we all obligated to acknowledge refereed publications that go against our own beliefs, without automatically… https://t.co/pyFrMahyXJ" +04/04/2018,Economists,@bill_easterly,Foreign Aid raises Economic Growth https://t.co/R2fs9Z5m2e +04/04/2018,Economists,@bill_easterly,"RT @bill_easterly: 1953 comment on US immigration law: ""It is absurd to think that we can retain our position as the world leader in the fi…" +04/04/2018,Economists,@bill_easterly,"RT @bill_easterly: On the 50th anniversary of Martin Luther King's assassination, his last speech is more moving and relevant than ever htt…" +04/03/2018,Economists,@bill_easterly,The world's culturally most diverse countries (darker color = more diversity). Not correlated with ethnic diversity… https://t.co/gfYYT9wowU +04/03/2018,Economists,@bill_easterly,"On the 50th anniversary of Martin Luther King's assassination, his last speech is more moving and relevant than ever https://t.co/TVGbSwkJH4" +04/03/2018,Economists,@bill_easterly,"1953 comment on US immigration law: ""It is absurd to think that we can retain our position as the world leader in t… https://t.co/xd92Asrsok" +04/02/2018,Economists,@bill_easterly,RT @bill_easterly: Happy April 1 https://t.co/nH73KGRHlh +04/02/2018,Economists,@bill_easterly,"Population growth is a unique variable in development debates-- it's bad when it goes up, and it's bad when it goes… https://t.co/hINFA9z4Em" +04/01/2018,Economists,@bill_easterly,Happy April 1 https://t.co/nH73KGRHlh +04/01/2018,Economists,@bill_easterly,Both Passover and Easter celebrate hope for seemingly hopeless causes +04/01/2018,Economists,@bill_easterly,"RT @MaxCRoser: The poorest countries in the world emit around 0.1 tonnes of CO₂ per person in one year. + + – France emits 50-times more per…" +03/31/2018,Economists,@bill_easterly,"RT @bill_easterly: Nonwhites outside their home country are called Immigrants, while whites outside their home country are called Expats ht…" +03/30/2018,Economists,@bill_easterly,"Nonwhites outside their home country are called Immigrants, while whites outside their home country are called Expa… https://t.co/AXwp9baHh8" +03/30/2018,Economists,@bill_easterly,"RT @Undercoverhist: Most Econ Nobel belong to the same family-tree, which harks back to a now forgotten figure, Karl Knies (trained Böhm-Ba…" +03/30/2018,Economists,@bill_easterly,RT @bill_easterly: Cartoon version of The White Man's Burden HT @adamgmartin https://t.co/nlNsRBBTC6 +03/29/2018,Economists,@bill_easterly,Cartoon version of The White Man's Burden HT @adamgmartin https://t.co/nlNsRBBTC6 +03/29/2018,Economists,@bill_easterly,"RT @bill_easterly: Have a new paper that asks ""did the Washington Consensus work after all?"" https://t.co/U6a1EolW9F" +03/28/2018,Economists,@bill_easterly,"Have a new paper that asks ""did the Washington Consensus work after all?"" https://t.co/U6a1EolW9F" +03/28/2018,Economists,@bill_easterly,RT @bill_easterly: In praise of big picture development: welfare gains from either migration or growth episodes are vastly larger than thos… +03/27/2018,Economists,@bill_easterly,In praise of big picture development: welfare gains from either migration or growth episodes are vastly larger than… https://t.co/dHqHhnhy4B +03/27/2018,Economists,@bill_easterly,Animal globalization. HT @MaxCRoser https://t.co/DutvUCZOZT +03/27/2018,Economists,@bill_easterly,RT @bill_easterly: Abraham Lincoln on anti-immigrant advocacy in 1855 https://t.co/zNv2Yawrif +03/26/2018,Economists,@bill_easterly,Abraham Lincoln on anti-immigrant advocacy in 1855 https://t.co/zNv2Yawrif +03/25/2018,Economists,@bill_easterly,RT @RichardWellings: Police dressed in riot gear strike demonstrators with batons as Catalans protest against the detention of exiled forme… +03/25/2018,Economists,@bill_easterly,"Economists have creative agony too, but we can’t usually hope for an outcome as sublime as Turandot https://t.co/PRQdT6UBwY" +03/25/2018,Economists,@bill_easterly,https://t.co/nJDMJodRfr +03/23/2018,Economists,@bill_easterly,American troops are more involved in Africa than most people realize https://t.co/rIROmjbFqY +03/22/2018,Economists,@bill_easterly,"Maybe the US men's soccer team should boycott the 2018 World Cup in Russia ... oh, wait https://t.co/CvwekaZLKO" +03/22/2018,Economists,@bill_easterly,RT @bill_easterly: Current projections are that the world will miss the 1st Sustainable Development Goal of ending extreme poverty by 2030;… +03/22/2018,Economists,@bill_easterly,RT @bill_easterly: The secret to development is coffee https://t.co/jLONZ2SDPZ +03/21/2018,Economists,@bill_easterly,The secret to development is coffee https://t.co/jLONZ2SDPZ +03/21/2018,Economists,@bill_easterly,Current projections are that the world will miss the 1st Sustainable Development Goal of ending extreme poverty by… https://t.co/yPr6En9Io8 +03/21/2018,Economists,@bill_easterly,RT @bill_easterly: Ancient migrations: everybody everywhere is really from somewhere else https://t.co/xvpT3V1bEC +03/20/2018,Economists,@bill_easterly,"Had interesting talk with Micaela Sviatschi, whose research shows that past US deportations to El Salvador helped l… https://t.co/FfVFTnvvx5" +03/20/2018,Economists,@bill_easterly,Ancient migrations: everybody everywhere is really from somewhere else https://t.co/xvpT3V1bEC +03/20/2018,Economists,@bill_easterly,RT @jhaushofer: @DinaPomeranz @eortizospina @seema_econ @simonrquinn @tukopamoja @_alice_evans For an undergrad intro class probably some c… +03/19/2018,Economists,@bill_easterly,RT @bill_easterly: Development is working. https://t.co/cyR8RZgi8p +03/19/2018,Economists,@bill_easterly,Nice when a release of an academic paper by economists becomes front-page news https://t.co/1Dw4R1vErB via @UpshotNYT +03/18/2018,Economists,@bill_easterly,"RT @bill_easterly: My grandmother's grandfather fled the Irish potato famine to the US in 1848. Thank you, 1848 America, for not turning aw…" +03/17/2018,Economists,@bill_easterly,"My grandmother's grandfather fled the Irish potato famine to the US in 1848. Thank you, 1848 America, for not turning away refugees." +03/17/2018,Economists,@bill_easterly,Irish-Americans are a success story of development through migration. Happy #StPatricksDay https://t.co/Iu25GFJY6p +03/16/2018,Economists,@bill_easterly,"RT @m_clem: Accepted for publication today in REStat @mitpress: +""The Place Premium: Bounding the Price Equivalent of Migration Barriers"" +M…" +03/16/2018,Economists,@bill_easterly,RT @yannick___m: Pick your fighter. @bill_easterly @RadioFreeTom https://t.co/xQOkZfJEqe +03/16/2018,Economists,@bill_easterly,"RT @g_atiim: ""The sleight of hand that focuses attention on technical solutions while covering up violations of the rights of real people i…" +03/15/2018,Economists,@bill_easterly,"RT @_alice_evans: @bill_easterly Hm, yes. Do you mean in terms of venerating an established, narrow group as the best, & staying in that sa…" +03/15/2018,Economists,@bill_easterly,"Speaking as an alleged top 10 development thinker, the whole idea of top thinkers is misguided https://t.co/wwNuLZmQUG" +03/14/2018,Economists,@bill_easterly,Will be remembered as a cautionary tale for all time that you don't win elections by insulting the voters https://t.co/8XOAucooWS +03/14/2018,Economists,@bill_easterly,You are a true nerd like me if you are more excited today about Pi Day than about the upcoming St. Patrick's Day. https://t.co/8YYccs3hpJ +03/13/2018,Economists,@bill_easterly,Development is working. https://t.co/cyR8RZgi8p +03/13/2018,Economists,@bill_easterly,"RT @bill_easterly: Tragedy in the Horn of Africa: ""650,000 children under age 5 across vast stretches of Kenya, Somalia and Ethiopia are se…" +03/12/2018,Economists,@bill_easterly,"New book by @nntaleb, ""Skin in the Game,"" debuts at # 2 on The New York Times Best Sellers list https://t.co/0dRbZ53Udl" +03/12/2018,Economists,@bill_easterly,"Tragedy in the Horn of Africa: ""650,000 children under age 5 across vast stretches of Kenya, Somalia and Ethiopia a… https://t.co/u6zJdps6H9" +03/12/2018,Economists,@bill_easterly,RT @bill_easterly: False stories get more RTs on Twitter than true stories. This story is true. https://t.co/j8M8U8cPnn +03/11/2018,Economists,@bill_easterly,Smug liberals are not helping our political polarization https://t.co/cBqHXBdVnV https://t.co/hbRWvirdRN +03/11/2018,Economists,@bill_easterly,"RT @bill_easterly: Borges story on ""a Map of the Empire whose size was that of the Empire, and +which coincided point for point with it"" ill…" +03/11/2018,Economists,@bill_easterly,False stories get more RTs on Twitter than true stories. This story is true. https://t.co/j8M8U8cPnn +03/10/2018,Economists,@bill_easterly,"RT @bill_easterly: Does margarine lead to divorce? Some correlations could possibly be spurious, suggests @TylerVigen HT @DennisWhittle htt…" +03/10/2018,Economists,@bill_easterly,RT @m_clem: Third-world strongman farce in downtown Washington. https://t.co/9W5ZwGUCek +03/09/2018,Economists,@bill_easterly,"RT @bill_easterly: A century ago, women couldn't even vote. A lot of progress since then worldwide to celebrate for #InternationalWomensDay…" +03/09/2018,Economists,@bill_easterly,"Does margarine lead to divorce? Some correlations could possibly be spurious, suggests @TylerVigen HT… https://t.co/dsvZYo6Dpp" +03/08/2018,Economists,@bill_easterly,"A century ago, women couldn't even vote. A lot of progress since then worldwide to celebrate for… https://t.co/FUFkHkX3Gt" +03/07/2018,Economists,@bill_easterly,"RT @NYU_DRI: NYU DRI Presentation by Lant Pritchett: ""The Debate about RCTs in Development is over. We won. They lost."" Watch here - https:…" +03/07/2018,Economists,@bill_easterly,"Borges story on ""a Map of the Empire whose size was that of the Empire, and +which coincided point for point with it… https://t.co/kGF38zZN2y" +03/07/2018,Economists,@bill_easterly,"RT @m_clem: “Migration is a positive side effect of development, and aid should not be spent in pursuit of keeping people where they are. D…" +03/07/2018,Economists,@bill_easterly,"NYU DRI Presentation by Lant Pritchett: ""The Debate about RCTs in Development is over. We won. They lost."" https://t.co/gl0rWetijN" +03/05/2018,Economists,@bill_easterly,RT @bill_easterly: The best promo line for Hollywood movies might be — will be our only remaining export after the Trade War is over. +03/05/2018,Economists,@bill_easterly,"RT @MaxCRoser: Who's talking in the Oscar-winning movies? + +[via the BBC https://t.co/NWoK3mGzzf] https://t.co/Rd6MKnypGz" +03/05/2018,Economists,@bill_easterly,The best promo line for Hollywood movies might be — will be our only remaining export after the Trade War is over. +03/05/2018,Economists,@bill_easterly,"Eva Marie Saint is from my alma mater and hometown Bowling Green State University, you rock!" +03/05/2018,Economists,@bill_easterly,RT @bill_easterly: The Market-Based Academy Award goes to...Wonder Woman. Why do the Oscars scorn the favorably-reviewed pictures that sol… +03/04/2018,Economists,@bill_easterly,"RT @CelestinMonga: Here is a misleading index on #passport rankings https://t.co/TMpSbxbnKs +I stay away from countries that despise my bea…" +03/04/2018,Economists,@bill_easterly,"RT @bill_easterly: Angus Deaton strikes the right balance: ""Seeing the past as unbroken progress breeds a foolish and false optimism, not t…" +03/03/2018,Economists,@bill_easterly,"Angus Deaton strikes the right balance: ""Seeing the past as unbroken progress breeds a foolish and false optimism,… https://t.co/xMrNC99XOI" +03/03/2018,Economists,@bill_easterly,"RT @bill_easterly: Justification for new tariffs: “We must not let our country, companies and workers be taken advantage of any longer."" Ec…" +03/03/2018,Economists,@bill_easterly,"RT @orianabandiera: The sign on my door says “Director”, which passers-by often read as “she who gives directions”.. to the bathrooms, con…" +03/03/2018,Economists,@bill_easterly,RT @JDVance1: Ok this is funny https://t.co/9eRuJihGWu +03/02/2018,Economists,@bill_easterly,"Justification for new tariffs: “We must not let our country, companies and workers be taken advantage of any longer… https://t.co/xD2W7FbQEZ" +07/02/2018,Economists,@AllisonSchrager,RT @McKinsey_MGI: RT @JaanaRemes: There's a body of evidence that Britain’s relatively poor productivity growth since the financial crisis… +07/02/2018,Economists,@AllisonSchrager,"RT @tylercowen: Whether we like it or not, surely ""watching the internet"" (and Twitter) is one reason why support for free speech has gone…" +07/02/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/gamYjaik8x +07/01/2018,Economists,@AllisonSchrager,@joshrauh Lucky you! he has many interesting things to say about risk modeling (in warfare). there may be scope for some collaboration. +07/01/2018,Economists,@AllisonSchrager,"RT @joshrauh: It is official, H.R. McMaster will be joining the Hoover Institution! https://t.co/QycWTeHWcm" +06/29/2018,Economists,@AllisonSchrager,"RT @NewBlackMan: The modern education system was designed to train future factory workers to be ""docile"" | @AllisonSchrager https://t.co/DN…" +06/29/2018,Economists,@AllisonSchrager,"The modern education system was designed to train future factory workers to be ""docile."" what do they need to be no… https://t.co/QartW92T0f" +06/29/2018,Economists,@AllisonSchrager,"RT @MarkusEconomist: How to regulate Tech Giants: +Interview by @JeanTirole (Nobel prize winner 2014) +https://t.co/X16ByKxzWh via @qz" +06/28/2018,Economists,@AllisonSchrager,"RT @stephenhuppert: Lessons from the Australian #RetirementIncome System: + +[1] how to do accumulation well +[2] how to do decumulation poor…" +06/27/2018,Economists,@AllisonSchrager,RT @AbhinayMuthoo: Full of insights on the #techgiants - good piece @AllisonSchrager @JeanTirole is up there amongst the very best of econo… +06/27/2018,Economists,@AllisonSchrager,"RT @MxSba: ""We should err on the side of competition, while recognizing that we will make mistakes in the process"": great @JeanTirole inter…" +06/27/2018,Economists,@AllisonSchrager,"RT @DStallibrass: Good interview with a great economist. + +What does he want? Moderate change. + +When does he want it? In due course, after…" +06/27/2018,Economists,@AllisonSchrager,RT @amcafee: This is (no surprise) excellent. https://t.co/SyrW4UInD9 +06/27/2018,Economists,@AllisonSchrager,"I love this because Tirole does something few people can, he tells you how to think, not what to think. we need mor… https://t.co/bgApty8gWu" +06/27/2018,Economists,@AllisonSchrager,"RT @dkopf: Read this terrific and wonky interview @AllisonSchrager did with the great @JeanTirole +https://t.co/9K39wRzzuY https://t.co/6CZ…" +06/27/2018,Economists,@AllisonSchrager,I asked Jean Tirole every you could want to know about regulating tech--no better source https://t.co/MkhhHhyODS via @qz +06/26/2018,Economists,@AllisonSchrager,RT @PaceSociety: The problem is that #sexwork laws prioritize ideology over actual evidence & exclude persons with lived experience. Sex Wo… +06/20/2018,Economists,@AllisonSchrager,"RT @katherineefoley: I asked, and @AllisonSchrager answered! DC just voted in favor of #VoteYesOn77 https://t.co/HHO5ZEnnlU" +06/20/2018,Economists,@AllisonSchrager,"RT @acrossthecurve: Despite a booming economy, nearly one in four Americans report have no emergency savings https://t.co/NHD0QQ1zgQ via @b…" +06/19/2018,Economists,@AllisonSchrager,@leifpagrotsky @qz Everyone. But only seems to apply to Swedes. +06/18/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/L6LyW7bB6u +06/17/2018,Economists,@AllisonSchrager,RT @kkharris33: I find this absolutely fascinating. https://t.co/PcPHXQuppU +06/16/2018,Economists,@AllisonSchrager,RT @qz: How Swedes beat the curse of winning the lottery https://t.co/DzPv8hkG3R +06/14/2018,Economists,@AllisonSchrager,RT @ReformedBroker: What Are Your Thoughts: Do You Feel Safe Now? https://t.co/mqePe2CZJ0 +06/13/2018,Economists,@AllisonSchrager,@ReformedBroker thanks for having me on!!! +06/13/2018,Economists,@AllisonSchrager,"RT @ReformedBroker: What Are Your Thoughts??? + +with special guest star @AllisonSchrager ! + +https://t.co/Om2NywkSbJ" +06/08/2018,Economists,@AllisonSchrager,RT @qz: How Swedes beat the curse of winning the lottery https://t.co/G4EQMPRNLR +06/08/2018,Economists,@AllisonSchrager,RT @JoshZumbrun: @biggsag @AllisonSchrager @M_C_Klein @Biggs interesting how the same fiscal challenge can then be thought of as either 1)… +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein @biggsag don't think do because welfare is contingent on some event happening, it is more l… https://t.co/HwjzW1uHkQ" +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein @biggsag @biggs may have done networth for retirees, CBO has done transfers and inequality… https://t.co/iHw1Lk1gVY" +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein that is what @biggsag keeps arguing. +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein just because pensions aren't counted as debt, doesn't mean they are treated any different.… https://t.co/ptxatWWWeG" +06/08/2018,Economists,@AllisonSchrager,@M_C_Klein @JoshZumbrun legally you can cut social security benefits. often not true for DB benefits. it is a divis… https://t.co/tR0MqGe5Hg +06/08/2018,Economists,@AllisonSchrager,"@M_C_Klein @JoshZumbrun technically it is a stream of income paid in the future, same as a coupon bond." +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein so this is the hot question for us pension geeks. What makes pensions different from other… https://t.co/2pq8QhyIsn +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein maybe some default (on higher earners) is necessary and desirable. sometimes a structured d… https://t.co/kl2K5v4Nj0 +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein my quibble is with the language. if you only pay back part of your debt, to a creditor or p… https://t.co/n3UhyR2Fms" +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun cutting benefits 25%, that's a lot for elderly people on a fixed income." +06/08/2018,Economists,@AllisonSchrager,"failing to make a full debt payment counts as a default +https://t.co/OEi0APcUYb" +06/07/2018,Economists,@AllisonSchrager,@bencasselman an increase since 2016 +06/07/2018,Economists,@AllisonSchrager,"@bencasselman Fed survey found increase in gig work, mostly from supplemental employment +https://t.co/9zfDooMnIv" +06/07/2018,Economists,@AllisonSchrager,How Swedes beat the curse of winning the lottery https://t.co/w1KRzUcThw via @qz +06/06/2018,Economists,@AllisonSchrager,@karol it's nothing a 12.6% marginal tax rate increase can't fix (actually no it doesn't---but we might get lucky a… https://t.co/Mzpp2lvJyw +06/05/2018,Economists,@AllisonSchrager,"RT @biggsag: ""Don't raise teacher pay; reform it."" In @NRO. https://t.co/GMww2XDWak Highlights below!" +06/04/2018,Economists,@AllisonSchrager,how would this work? Is this actually a wealth tax? is it only on wealth held in NY banks or will NY require the IR… https://t.co/5T2XdOU8r5 +06/04/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/aMYTEffhzL +06/03/2018,Economists,@AllisonSchrager,@jodiecongirl and often comes down to random luck +06/03/2018,Economists,@AllisonSchrager,"@jodiecongirl By this logic, his understanding of medicine is useless if he does not live to 117" +05/31/2018,Economists,@AllisonSchrager,"RT @OK_Wiafe: Prof Robert C. Merton, Nobel laureate, speaking on what makes a good retirement goal at #CSRI2018 @Canberra https://t.co/naTl…" +05/29/2018,Economists,@AllisonSchrager,"RT @PennyWriter: ""The increase in the average retirement age has been driven almost solely by those with more education."" https://t.co/PZjt…" +05/29/2018,Economists,@AllisonSchrager,RT @FutureForumFndn: Some optimism to start the week! What do you think about this take from @AllisonSchrager in @Qz? https://t.co/t5WsRv7y… +05/29/2018,Economists,@AllisonSchrager,"@radiosmith If I were on the commission, I'd remind people higher returns come with more risk. #supperannuation… https://t.co/IWdHj78dDA" +05/28/2018,Economists,@AllisonSchrager,"RT @pancheetah: Look who else is investing in college education for millennials-> +https://t.co/csCiLFInnu +Other states are considering simi…" +05/27/2018,Economists,@AllisonSchrager,"RT @djmont: Interesting piece by @AllisonSchrager. Nice to see that not all the news for Millennials is bad. And in much of the country, ho…" +05/26/2018,Economists,@AllisonSchrager,human capital is often a better bet https://t.co/jXjzeucmVO +05/26/2018,Economists,@AllisonSchrager,sensing a media bias toward investment in real estate instead of human capital https://t.co/7w0SK2n2vx +05/25/2018,Economists,@AllisonSchrager,RT @EdmundPhelps: @LHSummers Delighted to see your embrace of the philosophy of employment subsidies--the centrality of work and self sufic… +05/25/2018,Economists,@AllisonSchrager,"@JHWeissmann @ComfortablySmug @M_C_Klein @calebwatney @TheStalwart sounds like an argument for Efficient Markets, t… https://t.co/lEcepZMSRN" +05/25/2018,Economists,@AllisonSchrager,Millennials bet on more education instead of homeownership. That might work out. https://t.co/qOuN5nc2QG via @qz +05/24/2018,Economists,@AllisonSchrager,"RT @DahrendorfForum: ""There are two things french politicians are afraid of: railway reform and pension reform"" -@pisaniferry #LSEFrance ht…" +05/24/2018,Economists,@AllisonSchrager,"@wwwojtekk @JashClark @snaidunl ERISA killed DB plans, freed the job lock." +05/21/2018,Economists,@AllisonSchrager,"@biggsag @goffmania @greenhousenyt @voxdotcom and their market value has increased, because they are risk-free assets." +05/21/2018,Economists,@AllisonSchrager,"RT @TheStalwart: ""I may be one of the few people left who believes in the natural unemployment rate."" https://t.co/hVhsym89kL" +05/21/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/QybJ7MpvkJ +05/20/2018,Economists,@AllisonSchrager,"Never thought I'd agree this much with Paul Krugman +https://t.co/HqJWFK0X5R" +05/19/2018,Economists,@AllisonSchrager,RT @uxed: Brilliant! This so makes sense. I love the allegory of a mature woman keeping it all together. So many words associated with wome… +05/19/2018,Economists,@AllisonSchrager,"Tom Wolfe wrote the book on craven, elitist thought leaders in the age of rising inequality https://t.co/NGw0BOhq7J via @qz" +05/19/2018,Economists,@AllisonSchrager,RT @brendanminiter: @tunkuv has an interview w Glenn Hubbard in @WSJ today that’s an important read if you care about those #leftbehind htt… +05/18/2018,Economists,@AllisonSchrager,"RT @causalinf: @AllisonSchrager has written (IMO) a thoughtful article about the ""incel"" community that is similar to what I was trying to…" +05/18/2018,Economists,@AllisonSchrager,RT @delaney: https://t.co/IYxITX9dEH +05/17/2018,Economists,@AllisonSchrager,"RT @biggsag: @greenhousenyt @voxdotcom You just can't think about teacher pay without considering benefits, especially pensions. Since 1975…" +05/16/2018,Economists,@AllisonSchrager,all empiricists face an existential question: what is relevant history to use? It haunts all of us who try to estim… https://t.co/25Bn9OvcbO +05/15/2018,Economists,@AllisonSchrager,@JoshZumbrun Called our downside of hook up culture and craven elitists before we understood how important these tr… https://t.co/o7Jffiv5tB +05/15/2018,Economists,@AllisonSchrager,@JoshZumbrun Was ahead of its time +05/15/2018,Economists,@AllisonSchrager,"RT @lenburman: Dear Seattle, Thank you so much for running this natural experiment, which will provide valuable data about how people respo…" +05/15/2018,Economists,@AllisonSchrager,RT @IQ2US: How will automation impact democracy? Watch live: https://t.co/6pb2ehiyla #IQ2USLive https://t.co/Xh9NCkDni5 +05/14/2018,Economists,@AllisonSchrager,"RT @elerianm: The @WSJ on the ""widest gap between U.S.-German yields in three decades."" + +https://t.co/pEKNVLxpu6 + +#bonds #markets #economy…" +05/14/2018,Economists,@AllisonSchrager,"The Economist argues we need to listen more to women with economics PhDs...hmmmm +https://t.co/DgEDkV2eWU" +05/10/2018,Economists,@AllisonSchrager,"@ChadAldeman @alv9n @voxdotcom @ThadDomina does not include pensions, which are guaranteed. value of risk-free asse… https://t.co/QcNiI8uw5i" +05/10/2018,Economists,@AllisonSchrager,"RT @urbaninstitute: .@AllisonSchrager on ""the strange thing about America’s historically low unemployment rate"": https://t.co/jykOjTixqz ht…" +05/10/2018,Economists,@AllisonSchrager,"Philips curve isn't dead, just misunderstood @EdmundPhelps https://t.co/Oi1eAY2v1k" +05/10/2018,Economists,@AllisonSchrager,RT @BW: Annuities are the fix everyone loves to hate for the $4 trillion retirement savings gap https://t.co/FBdt7nOOEo https://t.co/vaC7ol… +05/10/2018,Economists,@AllisonSchrager,The strange thing about America’s historically low unemployment rate https://t.co/v3H9DEpJcj via @qz +05/09/2018,Economists,@AllisonSchrager,@RonMauKnows try the Economist or Bloomberg +05/09/2018,Economists,@AllisonSchrager,"RT @biggsag: In 2002, 41% of working-age households thought they wouldn't be able to live comfortably in retirement. In 2018, when many of…" +05/09/2018,Economists,@AllisonSchrager,"there is so much evidence to support this, yet I keep seeing arguments that assumes there is no term premium--like… https://t.co/Palaxib9D5" +05/09/2018,Economists,@AllisonSchrager,"RT @dandolfa: This dynamic yield curve shows very clearly how Fed interest rate policy has limited impact on longer term bond yields. +http…" +05/08/2018,Economists,@AllisonSchrager,"RT @ProfJAParker: Argentina is a reminder for the other countries with massive government debts, and questionable institutional quality tha…" +05/08/2018,Economists,@AllisonSchrager,"RT @lisaabramowicz1: Pensions are still expecting 7.25% returns on their investments, despite the fact they've returned 6.5% over the past…" +05/08/2018,Economists,@AllisonSchrager,"RT @tylercowen: When it comes to the Fed and jobs, a bit of agnosticism is in order, https://t.co/lQQ7VLEdMP" +05/07/2018,Economists,@AllisonSchrager,RT @EdmundPhelps: .@paulkrugman @AllisonSchrager My take on the unnatural unemployment rate in @ProSyn: https://t.co/Uf4SCEpyrj +05/07/2018,Economists,@AllisonSchrager,"Also, Ned argues equilibrium is when expectations are met. changes in unemployment come from difference between inf… https://t.co/8AaD1U0KiD" +05/07/2018,Economists,@AllisonSchrager,What's up with the parentheses around @EdmundPhelps. It minimizes his contribution. He did win the prize for this.… https://t.co/2KjnPEd15H +05/07/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/xZoUowSwBf +05/04/2018,Economists,@AllisonSchrager,"RT @qz: The winning horses are running just as fast as they were in the 1950s, completing the 10 furlong (1.25 mi) race at Churchill Downs…" +05/04/2018,Economists,@AllisonSchrager,"Another victory for diplomacy +https://t.co/TcMqB1lSGh" +05/03/2018,Economists,@AllisonSchrager,RT @MonicaLewinsky: blaming the intern is so 1990's. 🙄 https://t.co/6CGPERpNqx +05/03/2018,Economists,@AllisonSchrager,RT @AtlanticMedia: Do you know what an HSA is? @AllisonSchrager via @qz https://t.co/jXy2ZwGkHG +05/01/2018,Economists,@AllisonSchrager,RT @FiveThirtyEight: Snaps to @dkopf at @qz for reminding us that one person can make a huge difference in how we think about and understan… +05/01/2018,Economists,@AllisonSchrager,"RT @UpdatedPriors: This guy definitely doesn't go to the seminars I go to, or read the referee report reports I read. https://t.co/FoowuxbT…" +05/01/2018,Economists,@AllisonSchrager,RT @desaimihira: there are many reasons to expect a more muted investment reaction to the tax cuts @jimtankersley @paulkrugman - the change… +04/30/2018,Economists,@AllisonSchrager,I keep reading in mainstream publications that debt doesn't matter because it can be monetized away. Big divergence… https://t.co/lsoxFFYfK4 +04/28/2018,Economists,@AllisonSchrager,"RT @wwwojtekk: Mainstream weather forecasting is a failure, their models are useless for understanding the real world. +Today, students and …" +04/26/2018,Economists,@AllisonSchrager,@SophiaGrene @JohnRalfe1 years of mismanagement +04/26/2018,Economists,@AllisonSchrager,RT @econbuttonwood: Investors aren't being paid for credit risk on investment-grade bonds. This is from Alex Brazier's (of BoE) speech at L… +04/26/2018,Economists,@AllisonSchrager,@alexandrascaggs and accountability. +04/26/2018,Economists,@AllisonSchrager,"so must states are banking on high returns to pay for pensions (not making contributions), average funding rate is… https://t.co/h3rG1Y41WF" +04/26/2018,Economists,@AllisonSchrager,saying it loud and proud---I believe in EMH. but this story does not seem to know what that means. https://t.co/MOwH4h1Tgs +04/26/2018,Economists,@AllisonSchrager,@De_dicto fascinating! thank you. I can't wait to read it. +04/25/2018,Economists,@AllisonSchrager,RT @wwwojtekk: @kltblom @lenburman @AllisonSchrager Please... Nothing happened that led to it? https://t.co/X3PjCh9QLE +04/25/2018,Economists,@AllisonSchrager,RT @lenburman: Thoughtful thread on practical implementation problems with unconditional job guarantee from @wwwojtekk. https://t.co/SMl7be… +04/24/2018,Economists,@AllisonSchrager,RT @robertshrimsley: @SpiegelPeter @ChrisGiles_ @TowerOfLondon I had a go at the economists reply to the Queen at the time: https://t.co/mp… +04/23/2018,Economists,@AllisonSchrager,Watch the debate: “Bitcoin is more than a bubble and here to stay” https://t.co/pbtV6ENkr6 via @qz +04/23/2018,Economists,@AllisonSchrager,"RT @GBurtless: Why you should not invest a big fraction of your retirement savings in the company you work for: Illustration #4,980,152 fro…" +04/23/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/XnFgsHbaXs +04/21/2018,Economists,@AllisonSchrager,@gilliantett cautions against taking financial advice from teenagers #bitcoin #IQ2USLive +04/21/2018,Economists,@AllisonSchrager,"RT @IQ2US: Is #bitcoin a bubble that will one day burst? Or is it here to stay? Tomorrow, we host a live debate in partnership with @smiths…" +04/20/2018,Economists,@AllisonSchrager,"speaking of mood affiliation...when i was in grad school didn't want to unionize, in part, bc declaring ourselves e… https://t.co/rt9AtRdPDR" +04/20/2018,Economists,@AllisonSchrager,The bond market is sending an ominous signal about economic growth https://t.co/gZ75Knr8uz via @qz +04/20/2018,Economists,@AllisonSchrager,RT @qz: Social Security numbers are unsafe and outdated. So why do Americans use them? https://t.co/klaIKdDDdi +04/19/2018,Economists,@AllisonSchrager,RT @obsidiansec: Does it still make sense to rely on social security numbers in this day and age? Interesting take from @AllisonSchrager vi… +04/18/2018,Economists,@AllisonSchrager,"RT @CruiseLaw: ""The Medallion promises the sort of personalized vacation millennials crave, and what passengers on the Love Boat always som…" +04/18/2018,Economists,@AllisonSchrager,RT @qz: Can Carnival possibly make a cruise with thousands of passengers feel personable? https://t.co/yfrjde7EhB +04/18/2018,Economists,@AllisonSchrager,RT @JoshZumbrun: This chart of global government debt from the IMF is amazing -- 15 years after the financial crisis nations will have made… +04/18/2018,Economists,@AllisonSchrager,"I love this AI story, example of AI enhancing human connections instead of replacing them https://t.co/MPkLz31QIX" +04/16/2018,Economists,@AllisonSchrager,@RichardClarida has rare combination of skills: macro and finance training and market experience and time in government +04/16/2018,Economists,@AllisonSchrager,@TheStalwart he used to compose and play a song at follies night in grad school. it was always great +04/15/2018,Economists,@AllisonSchrager,"RT @PaceSociety: Shutting down websites moves #trafficking into the shadows. After Backpage shut down its adult ads section last year, data…" +04/13/2018,Economists,@AllisonSchrager,"If you have a tax bill from the US government this year, you've won https://t.co/guqSGislPx via @qz" +04/12/2018,Economists,@AllisonSchrager,RT @urbaninstitute: From @AllisonSchrager: The real effects of America’s federal taxes https://t.co/55z1CPumJh https://t.co/DGwvRXtIpm +04/11/2018,Economists,@AllisonSchrager,The real effects of America’s federal taxes https://t.co/0NdUoK6687 via @qz +04/10/2018,Economists,@AllisonSchrager,RT @chicagoboothrev: Why can't we close the gender gap? @ChicagoBooth's Marianne Bertrand and Waverly Deutsch discuss the wage gap and corp… +04/09/2018,Economists,@AllisonSchrager,@dandolfa @GBurtless maybe they just can't afford to fill it. +04/09/2018,Economists,@AllisonSchrager,"RT @GBurtless: Since the start of recovery in 2010, I’ve been asking the question recently posed by Neal Kashkari [see below]. It seems lik…" +04/09/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/MZfv2Zs2ag +04/08/2018,Economists,@AllisonSchrager,RT @qz: Are we in the beginning of a bear market? https://t.co/8rdFBudnRs +04/07/2018,Economists,@AllisonSchrager,Are we in the beginning of a bear market? https://t.co/viphWvw3M9 via @qz +04/06/2018,Economists,@AllisonSchrager,RT @ModeledBehavior: US born economists face more immigrant competition than 416 out of 441 occupations https://t.co/PgpUyGXPtD https://t.c… +04/06/2018,Economists,@AllisonSchrager,RT @johnpaulpagano: Our conspiracist moment. https://t.co/5gs0EWdgIA +04/06/2018,Economists,@AllisonSchrager,"14% of economists think their job is ""socially useless"", compared to 8% of whole population. I wonder if they inter… https://t.co/7aFpX9WT1p" +04/05/2018,Economists,@AllisonSchrager,RT @andreamatranga: @Ms_MathQueen @Noahpinion @qz @AllisonSchrager I know a kid who was told by every math teacher he had in grade school t… +04/05/2018,Economists,@AllisonSchrager,RT @Ms_MathQueen: “We are quick to dismiss students as good or bad at math when it gets hard. But what students really need at that stage i… +04/03/2018,Economists,@AllisonSchrager,@NickTimiraos @M_C_Klein @DavidBeckworth @JoshZumbrun @IrvingSwisher not enough to be the primary financial regulat… https://t.co/TCM2G0Fzcf +04/03/2018,Economists,@AllisonSchrager,@M_C_Klein @DavidBeckworth @NickTimiraos @JoshZumbrun @IrvingSwisher Last NYFed President without market experience… https://t.co/4psKwbECpT +04/03/2018,Economists,@AllisonSchrager,"RT @ChadAldeman: Re the KY teacher strike, there's no ""cut"" in pension benefits. The bill would enroll *new* workers hired in 2019 or later…" +04/03/2018,Economists,@AllisonSchrager,"RT @JanetheActuary: In which, in light of the Kentucky protests, I actuary-splain why public pension funding matters. https://t.co/fygujEr…" +03/30/2018,Economists,@AllisonSchrager,"@StephanieKelton @rseymour @Mauerback @MacroEdge1 sure, this paper totally disproves everything ever published abou… https://t.co/orTf5DxjkV" +03/30/2018,Economists,@AllisonSchrager,@rseymour @StephanieKelton wills pays the bills. here's the problem with her argument. long term rates are market p… https://t.co/jfUD7urVFI +03/30/2018,Economists,@AllisonSchrager,"This is what's wrong with people who say entitlements spending is no problem, committing to large unfunded liabilit… https://t.co/TT5jpjnvMC" +03/30/2018,Economists,@AllisonSchrager,"sad example of why assuming no risk (growth is certain, interest rates will never change) is so dangerous. debt cri… https://t.co/8iZoiyxYpa" +03/29/2018,Economists,@AllisonSchrager,This argument that debt isn't a problem if interest rates never go up is like saying smoking isn't so bad if you do… https://t.co/VxpkLJpS9O +03/29/2018,Economists,@AllisonSchrager,RT @qz: The wage earners who took the biggest hit from NAFTA were not blue-collar men https://t.co/R2lYYGwoXd +03/28/2018,Economists,@AllisonSchrager,Seems like every day I read another story about how economics needs more intellectual diversity. weird. it is one o… https://t.co/usaTSF6ukf +03/27/2018,Economists,@AllisonSchrager,"Japanese pension fund pays managers more if they take extra risk +https://t.co/Tv4REJCvDp" +03/26/2018,Economists,@AllisonSchrager,"RT @JanetheActuary: @GBurtless @AllisonSchrager Sounds fair, then, for pensions to be on the bargaining table as an exchange for higher wag…" +03/26/2018,Economists,@AllisonSchrager,"RT @GBurtless: 2 of 2/ Problem for teachers, even if we accept @AllisonSchrager argument: It’s awfully hard to pay for groceries, mortgage…" +03/26/2018,Economists,@AllisonSchrager,RT @GBurtless: 1 of 2/ Teachers in a number of states furious over sinking real pay. @AllisonSchrager makes interesting point that teachers… +03/26/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/tfm1Tolo0w +03/23/2018,Economists,@AllisonSchrager,HR McMaster's detailed description of battle victory at 73 easting is no longer available https://t.co/2aY1rwCaSR +03/23/2018,Economists,@AllisonSchrager,HR McMaster and Donald Trump: a partnership that was never meant to be https://t.co/5HCP5JVQAX via @qz +03/22/2018,Economists,@AllisonSchrager,RT @cohensetton: just published by Joel Mokyr: The Past and the Future of Innovation: some lessons from Economic History https://t.co/C1Tvr… +03/22/2018,Economists,@AllisonSchrager,"RT @heckmanequation: ""The key to fighting inequality starts with moms…"" via @qz +https://t.co/JNAVXGMB1S" +03/21/2018,Economists,@AllisonSchrager,"@thebrianzeng @tylercowen only if the hike signals a new policy direction, which this does not." +03/21/2018,Economists,@AllisonSchrager,"Unpopular opinion: a .25 rate hike makes very little difference to the macro economy, perhaps some signaling, but that's second order." +03/21/2018,Economists,@AllisonSchrager,The iPhone alone accounts for $15.7 billion of the US trade deficit with China https://t.co/ezlMfue4bG via @qz +03/20/2018,Economists,@AllisonSchrager,"""INNOVATION IS GOOD; financial innovation is bad."" except index funds, interest rate swaps, defaults, options, or a… https://t.co/0GpqJgzJAs" +03/20/2018,Economists,@AllisonSchrager,One of America’s few black CEOs on his journey to lead a $47 billion company https://t.co/3sVlwtisq7 via @qz +03/19/2018,Economists,@AllisonSchrager,RT @JanetheActuary: @SethAMandel I'm told that this wouldn't do the trick - that it has to be law enforcement employment specifically. htt… +03/18/2018,Economists,@AllisonSchrager,A NCAA externality is it shines a light on schools that normally don't get attention they deserve. it transformed t… https://t.co/fXKkIxmquF +03/17/2018,Economists,@AllisonSchrager,@biggsag @JanetheActuary @PensionFacts this one is a howler. https://t.co/IFRprXlfT5 +03/15/2018,Economists,@AllisonSchrager,Strange journalists are actually debating whether education makes you more knowledgable about your subject. Do they… https://t.co/7jfqKHAFgI +03/15/2018,Economists,@AllisonSchrager,"It's happening!! +https://t.co/JEc1tr3THM" +03/14/2018,Economists,@AllisonSchrager,"RT @biggsag: @AllisonSchrager That's a good distinction. NEC runs economic policy, but CEA looks at economic conditions. Both matter, a lot!" +03/14/2018,Economists,@AllisonSchrager,When did head of NEC become the 'top economic advisor'? Didn't it used to be the head CEA? Did this start with Obam… https://t.co/ZTJoGsmTHT +03/14/2018,Economists,@AllisonSchrager,"@ejplantain Hi Emily, can I ask you some questions about horse breeding?" +03/11/2018,Economists,@AllisonSchrager,"RT @dianemulcahy: Fees, it turns out, are the lifeblood of the VC industry, not the blockbuster returns and carry that the traditional VC n…" +03/10/2018,Economists,@AllisonSchrager,"RT @AmirPars_: @afneil I grew up in Sweden and studied the economics of the country, and to call it “socialist” is the biggest myth that ha…" +03/10/2018,Economists,@AllisonSchrager,"In the strange world of point collecting, flying the 1 millionth mile is such a big an achievement people bring the… https://t.co/AtcPlnF6fm" +03/09/2018,Economists,@AllisonSchrager,"This is misleading because it does not include pension benefits. They are risk-free, so more valuable in a low-rate… https://t.co/rzYGJ2hUec" +03/09/2018,Economists,@AllisonSchrager,RT @qz: Florida wants to break with the US on daylight saving time to get more sun https://t.co/Zkqvw2Xr6L +03/08/2018,Economists,@AllisonSchrager,RT @RepEEdwards: @causalinf @AllisonSchrager This is about a resolution in the New Hampshire State House and we don't have any power to act… +03/08/2018,Economists,@AllisonSchrager,@causalinf amazing!!! Great example of economic research having real impact and improving welfare. you should still… https://t.co/4M8L9TX1Lt +03/03/2018,Economists,@AllisonSchrager,RT @NormaCohen3: Great article putting myths to rest. But there is some evidence of testosterone-fuelled risk taking. It shows up in a spik… +03/01/2018,Economists,@AllisonSchrager,RT @WSJCentralBanks: EXCLUSIVE: White House preparing to nominate Richard Clarida as Fed’s No. 2 official https://t.co/FgLrQR2k84 +02/24/2018,Economists,@AllisonSchrager,@radiosmith @biggsag @WaltHickey fighting retirement ignorance takes 2 pension geeks! +02/24/2018,Economists,@AllisonSchrager,"another reason why we need fewer time zones and end DST! +https://t.co/qJXKBTEoKZ" +02/24/2018,Economists,@AllisonSchrager,"RT @biggsag: @AllisonSchrager @WaltHickey As I sometimes put it: if we're going to have a retirement crisis, why don't we have one already?…" +02/24/2018,Economists,@AllisonSchrager,"@EconomPic @wolfejosh DB plans follow a LDI strategy. It is expensive w these rates, but also low/no risk--esp if l… https://t.co/E5crs8tMMW" +02/24/2018,Economists,@AllisonSchrager,@biggsag @WaltHickey And many with neither get a high replacement rate from Social Security/SSI. I think we can do… https://t.co/E3enuw8P09 +02/24/2018,Economists,@AllisonSchrager,@wolfejosh the tail risk is 20 years of bad stock returns. even for index funds. It is true that long holder period… https://t.co/ezwqvv4ogV +02/24/2018,Economists,@AllisonSchrager,@biggsag @WaltHickey Misleading reporting. That $15k NIRA number is for all 55 to 64-year-olds. if you condition on… https://t.co/5vZ6laV0EX +02/24/2018,Economists,@AllisonSchrager,RT @biggsag: @AllisonSchrager Let's see... [Mimics rummaging around...] This might do it. @WaltHickey https://t.co/a5uRDIuW7x +02/24/2018,Economists,@AllisonSchrager,@matt_levine thanks for this. I always wondered where the money from share holder buy backs go. Is it reinvested or… https://t.co/MN7EO8O8Vw +02/24/2018,Economists,@AllisonSchrager,"I just can't today, @biggsag https://t.co/wJpxQB2Hog" +02/24/2018,Economists,@AllisonSchrager,Fallacy of time diversification alert! I guess Warren Buffet does not count tail risk as risk https://t.co/ewOZaC96nN +02/15/2018,Economists,@AllisonSchrager,RT @fatihguvenen: Good point. My feeling is that Great Moderation both in macro and micro variables is a reflection of old age for the US e… +02/15/2018,Economists,@AllisonSchrager,RT @biggsag: I'm open to idea that a small universal basic income doesn't have much effect on work. But the study cited finds total employm… +02/09/2018,Economists,@AllisonSchrager,"@EconAndrew @qz exactly. but it does remind people markets are risky, if they aren't comfortable with that, they should reassess." +02/09/2018,Economists,@AllisonSchrager,"If you’re about to retire, should you pull out of the stock market? https://t.co/yDjRwWc5j4 via @qz" +02/07/2018,Economists,@AllisonSchrager,"RT @IQ2US: ""Technology cannot change the basic brain activities of romance"" @DrHelenFisher https://t.co/nfYjoI6XZT #IQ2USLive" +07/02/2018,Economists,@RBReich,Trump wants to abandon the rules of the World Trade Organization – giving him authority to raise tariffs without co… https://t.co/eV92p7jDNZ +07/01/2018,Economists,@RBReich,Let's be very clear about this: Ripping children from their parents only to reunite them indefinitely behind bars i… https://t.co/jUw6L0EcNj +07/01/2018,Economists,@RBReich,Trump isn’t the cause of what’s happened to America. He’s the consequence – the product of years of stagnant wages… https://t.co/a846S8vbTH +07/01/2018,Economists,@RBReich,"RT @waltshaub: 35,000 – Washington, DC +30,000 – New York City +60,000 – Chicago: +70,000 – Los Angeles + +and 750 other cities! + +(Including D…" +07/01/2018,Economists,@RBReich,Racism isn't patriotism. Xenophobia isn't patriotism. Misogyny isn't patriotism. Islamophobia isn't patriotism. Tru… https://t.co/UN09cN1ozE +07/01/2018,Economists,@RBReich,"But bad news for consumers, who will pay higher prices to cover the added costs. This includes lower-income consume… https://t.co/9sbhKmU3JF" +07/01/2018,Economists,@RBReich,Families belong together. Protest is powerful. Hold officials accountable. Thanks to all for keeping on the pressur… https://t.co/J5YGrKDV6w +06/30/2018,Economists,@RBReich,"RT @WomenBelong: DC +Flint +El Paso +San Juan +LA +Sioux Falls +Santa Fe +Fargo +Helena +Omaha +Antler (population 27) +Chi +Fort Wayne +Boise +Cedar…" +06/30/2018,Economists,@RBReich,Trump and Republicans in Congress want another big tax cut for corporations. They're making the same old argument t… https://t.co/FQc8a4hEJI +06/30/2018,Economists,@RBReich,"RT @MoveOn: TODAY. +Thousands of people across the country are demanding @realDonaldTrump reunite children w/ their families & #EndFamilyDe…" +06/29/2018,Economists,@RBReich,One day Trump is stoking hatred and fear among his core supporters and the next day he's calling for more giveaways… https://t.co/6CM99t1jZv +06/29/2018,Economists,@RBReich,Don't hold your breath... https://t.co/gzTrvzSLo7 +06/29/2018,Economists,@RBReich,RT @aawayne: NEWS: Private prison operators GEO GROUP INC. and CORECIVIC INC. have given more than $2 million to Republicans since 2015. Th… +06/29/2018,Economists,@RBReich,"RT @BernieSanders: “In a modern, moral and wealthy society, no person in America should be too poor to live.” –@Ocasio2018" +06/29/2018,Economists,@RBReich,"Trump controls the Republican Party, the Republican Party controls the House and Senate, and the Senate and Trump a… https://t.co/8LGWmozzn1" +06/28/2018,Economists,@RBReich,"Foreign direct investment in the U.S. is down 40 percent since Trump became president, due to Trump's xenophobic po… https://t.co/sCyNWleMeq" +06/28/2018,Economists,@RBReich,"My heart goes out to the Capital Gazette, the Baltimore Sun, and everyone impacted by this senseless tragedy. We mu… https://t.co/EKRen04Gwb" +06/28/2018,Economists,@RBReich,Are these toddlers the hardened criminals Trump crows about? Does he think they're going to take American jobs? Bul… https://t.co/HxSt6mWEfW +06/28/2018,Economists,@RBReich,"Finally, know that this fight will be long and hard. It will require your patience, your courage, and your resolve.… https://t.co/cRCY181OjM" +06/28/2018,Economists,@RBReich,"Fifth, help lay the groundwork for the 2020 presidential election, so that even if Trump survives Mueller and impea… https://t.co/jKTsbFCFvM" +06/28/2018,Economists,@RBReich,"Fourth, vote this November 6 for people who will stand up to all this outrage. Mobilize and organize others to do s… https://t.co/2jWATSfsVr" +06/28/2018,Economists,@RBReich,"Third, make a ruckus. Demonstrate. Engage in non-violent civil disobedience. Fight lies with truth. Join the resist… https://t.co/jWOsFC5Nxf" +06/28/2018,Economists,@RBReich,"Second, in the short term, if you are represented by a Republican senator, do whatever you can to get him or her to… https://t.co/QtGnC2E3R4" +06/28/2018,Economists,@RBReich,"So what are we -- the majority -- to do? + +First and most importantly, do not give up. That’s what they want us to d… https://t.co/lHTMquFuV3" +06/28/2018,Economists,@RBReich,"My friends, this is a dark hour. Intolerance, cruelty, racism, misogyny, xenophobia, and environmental destruction… https://t.co/23cKizQ9Ud" +06/28/2018,Economists,@RBReich,RT @CecileRichards: It is essential to call your US senators 202-224-3121 and demand no vote on a new SCOTUS Justice until after November.… +06/28/2018,Economists,@RBReich,"Though they employ completely different styles, Trump and McConnell are both willing to sacrifice the institutions… https://t.co/Easbn02ZvC" +06/28/2018,Economists,@RBReich,Trump and McConnell both share an ignominious ability to completely ignore their own hypocrisy in pursuit of politi… https://t.co/MJ54D8gaye +06/28/2018,Economists,@RBReich,"RT @ACLU: If you're voting this November for candidates who: +✓ oppose family separation +✓ will vote for legislation to end Trump's Muslim b…" +06/27/2018,Economists,@RBReich,"RT @ddiamond: Merrick Garland was nominated on March 16, 2016 — or 237 days before that year’s election. McConnell said that was too close…" +06/27/2018,Economists,@RBReich,"If nothing else galvanizes the vast majority of Americans to organize, mobilize, and vote to take back our governme… https://t.co/KCQ9JZDnv0" +06/27/2018,Economists,@RBReich,RT @JeffreyToobin: Anthony Kennedy is retiring. Abortion will be illegal in twenty states in 18 months. #SCOTUS +06/27/2018,Economists,@RBReich,"RT @SenFeinstein: 4 months away from an election, there should be no consideration of a Supreme Court nominee until the American people hav…" +06/27/2018,Economists,@RBReich,"To those GOP senators who have spoken out against Trump's attacks on our democracy, now is your chance to stand fir… https://t.co/cv2jgc8GB5" +06/27/2018,Economists,@RBReich,"RT @ProPublica: Since Donald Trump declared his candidacy for president in late 2015, at least $16.1 million has poured into Trump Organiza…" +06/27/2018,Economists,@RBReich,"If you're angry about this, organize and mobilize to take back the Senate in 2018, so we get a Supreme Court that i… https://t.co/uVgeMhB4ka" +06/27/2018,Economists,@RBReich,"Democrats must pay attention to this: Young, female, powerful message, future of America. https://t.co/nSRDDSv2Uo" +06/27/2018,Economists,@RBReich,"The GOP has become the Trump-Fox News Party, headed by a demagogue and fueled by a propaganda machine. It now runs… https://t.co/poy20FDpz3" +06/26/2018,Economists,@RBReich,I recently sat down with Congressman @RoKhanna to discuss the idea of a Federal Jobs Guarantee and how we can make… https://t.co/X6JfaaKxZX +06/26/2018,Economists,@RBReich,"Next time you hear someone railing against immigrants, mention these facts: +1) Immigrants add ~$1.5 trillion to U.S… https://t.co/6ffHsR1bmj" +06/26/2018,Economists,@RBReich,RT @sfchronicle: Robert Reich (@RBReich): President Trump is far removed from the ideals of patriotism.True patriots don’t court foreign di… +06/26/2018,Economists,@RBReich,RT @repjohnlewis: I never thought I would live to see a day when the Supreme Court of the United States would again make a decision as inhu… +06/26/2018,Economists,@RBReich,McConnell embodies the decline of the Republican party. His spineless political posturing places party above countr… https://t.co/YgjjLfGD0k +06/26/2018,Economists,@RBReich,"RT @IChotiner: Mitch McConnell criticizing the Muslim ban, then getting Gorsuch on the Court to uphold it, and then celebrating the decisio…" +06/26/2018,Economists,@RBReich,"With McConnell's help, Trump is nominating and getting Senate confirmation of judges to the federal bench much fast… https://t.co/xkUBJiNHpd" +06/26/2018,Economists,@RBReich,"Wow indeed, given all your explicit anti-Muslim statements before you put the ban into effect. But, hey, you put Go… https://t.co/e7V1mK6qDw" +06/26/2018,Economists,@RBReich,What did you think would happen when you put tariffs on European steel and aluminum? They retaliated with tariffs o… https://t.co/P5PhlzaRJ2 +06/26/2018,Economists,@RBReich,RT @albericie: This political ad from MJ Hegar is by far and away the best I've ever seen. What a force to be reckoned with! Take a moment… +06/25/2018,Economists,@RBReich,Ridiculous? Tell that to the 15 million American children living in poverty or the majority of families in this cou… https://t.co/HKFSIKPrvz +06/25/2018,Economists,@RBReich,"How are corporations spending their savings from Trump's tax cuts? + +Companies have already plowed $189 billion int… https://t.co/nkncRmmXZW" +06/25/2018,Economists,@RBReich,"Now that Trump and Republicans in Congress have exploded the deficit with tax cuts for the rich, they want to balan… https://t.co/CV6WCssGiy" +06/25/2018,Economists,@RBReich,"As dictators take control of democracies, they typically: https://t.co/DsurVpaXgD" +06/25/2018,Economists,@RBReich,RT @tribelaw: The US is the only UN member state that hasn’t ratified the international convention on the rights of the child +06/25/2018,Economists,@RBReich,"RT @swingleft: YOU: college student dedicated to putting a check on Trump and the GOP. +WE: will train and mobilize you for the midterm elec…" +06/25/2018,Economists,@RBReich,"RT @gelles: Trump tweets about the “witch hunt” + +May 2017: 3 times +June 2017: 5 times +July 2017: 6 times +Oct 2017: 1 time +Dec 2017: 2 times…" +06/24/2018,Economists,@RBReich,The private-prison industry stands to make fortune from Trump's immigration crackdown. This toxic mix of senseless… https://t.co/YWYkE3KOrq +06/24/2018,Economists,@RBReich,"RT @adamdavidson: Interesting. You know how Trump led a vicious attack on Canada because they put a 300% tariff on dairy? + +They don't. It's…" +06/23/2018,Economists,@RBReich,"You talk with supporters, tweet to supporters, hold rallies with supporters. But don't communicate w/ the American… https://t.co/GOjPr3Fx13" +06/23/2018,Economists,@RBReich,"But remember, only 27 percent of Americans are Republicans. https://t.co/sDnN2BWLNq" +06/23/2018,Economists,@RBReich,"RT @ezraklein: Approval of GOP tax law: + +January: 44% +April: 40% +Now: 34% + +https://t.co/qXQ4VsC319" +06/23/2018,Economists,@RBReich,"I've spent decades debating George Will, who has never strayed from his conservative Republican roots. Until now. https://t.co/tjPSRNX3wU" +06/23/2018,Economists,@RBReich,"What is there about the Republican Party and children? After tearing apart immigrant families, Trump and his party… https://t.co/4WyvAXGlJp" +06/22/2018,Economists,@RBReich,The only people among us who have standing to complain about immigrants are Native Americans. https://t.co/NextUppFLE +06/22/2018,Economists,@RBReich,"This has been the GOP's plan all along: +1) Demand massive tax cuts for the rich & corporations. +2) Claim the cuts… https://t.co/FpsEucPlma" +06/22/2018,Economists,@RBReich,"Trump's most lasting legacy might be his impact on the federal court system. Quite apart from the Supreme Court, Tr… https://t.co/k3f3Q60k3N" +06/21/2018,Economists,@RBReich,Behind Trump's cruelty is an industry poised to profit from the suffering. As the administration locked up immigran… https://t.co/NhBGLwV4g1 +06/21/2018,Economists,@RBReich,RT @voxdotcom: Watch: Sinclair is taking over local TV — and just forced its stations to air pro-Trump propaganda on family separation http… +06/21/2018,Economists,@RBReich,Please do not lose faith in the United States. For over seventy years our beliefs and values have made us staunch a… https://t.co/5BxNtWu3Dt +06/21/2018,Economists,@RBReich,RT @mbieseck: BREAKING ⁦@AP:⁩ Immigrant children as young as 14 housed at a juvenile detention center in Virginia say they were beaten whil… +06/21/2018,Economists,@RBReich,"RT @jaketapper: It’s not an accident that the US government is making it so difficult for journalists, lawmakers, lawyers and others to bri…" +06/20/2018,Economists,@RBReich,Reminder: The Trump administration still has no plan how to reunite the thousands of children already separated fro… https://t.co/tnUfN6prvX +06/20/2018,Economists,@RBReich,"Let's be very clear, the administration described the policy as a ""deterrent"" and initiated a ""zero-tolerance"" appr… https://t.co/kSTqlsb6jd" +06/20/2018,Economists,@RBReich,"The Trump administration on family separations: + +1) It’s a deterrent, zero-tolerance. +2) It’s not happening. +3) Th… https://t.co/hNkzGp0vlL" +06/20/2018,Economists,@RBReich,"Amid the maelstrom of Trumpian cruelty, the fundamental kindness and generosity of the American people still define… https://t.co/L0KC5MpTBE" +06/20/2018,Economists,@RBReich,"President Dwight D. Eisenhower once noted, “Every gun that is made, every warship launched, every rocket fired sign… https://t.co/WthwR4aLPs" +06/20/2018,Economists,@RBReich,"RT @NBCNews: JUST IN: American Airlines has requested that the US federal government ""immediately refrain from using American for the purpo…" +06/20/2018,Economists,@RBReich,"The Trump presidency can be defined by 3 corrosive qualities: unbridled cruelty, utter incompetence, and outspoken… https://t.co/dKbF0WnBiq" +06/20/2018,Economists,@RBReich,"RT @RepAdamSchiff: No, @SecNielsen did not do a “fabulous job,” she just repeated the falsehoods you have told to justify the indefensible…" +06/20/2018,Economists,@RBReich,Free the children. +06/20/2018,Economists,@RBReich,"True leaders credit others for accomplishments and accept responsibility for failures. Trump does the opposite, and… https://t.co/KI2VhzuOPi" +06/20/2018,Economists,@RBReich,RT @justinbaragona: Rachel Maddow chokes up and cries on air as she struggles to deliver news that migrant babies and toddlers have been se… +06/20/2018,Economists,@RBReich,"RT @passantino: .@Zac_Petkanas says on Fox News a 10-year-old girl with Down Syndrome was separated from her mother at the border. + +Corey L…" +06/19/2018,Economists,@RBReich,"To Our Allies Around the World: The majority of Americans continue to value the causes of democracy, equal opportun… https://t.co/eyOvUbTq05" +06/19/2018,Economists,@RBReich,RT @DavidCornDC: If only our country had a legislative body with the power to investigate corruption at the highest levels of our governmen… +06/19/2018,Economists,@RBReich,Can you imagine if the children of lobbyists were being separated from their parents? Ryan and McConnell would be b… https://t.co/ixvPz9l3LK +06/19/2018,Economists,@RBReich,"RT @ACLU: The Trump administration’s withdrawal from the UN Human Rights Council, coupled with its abusive use of power at home, only confi…" +06/19/2018,Economists,@RBReich,More Swamponomics: After Wilbur Ross learned that reporters were investigating his business dealings with a Kremlin… https://t.co/NYdCPSEt07 +06/19/2018,Economists,@RBReich,"Having tossed billions in tax cuts to the GOP's donors, Trump is now tossing red meat to his core supporters. https://t.co/Ac07ryaFKK" +06/19/2018,Economists,@RBReich,"RT @ForeignPolicy: ""I was sent to a camp at just five years old — but even then, they didn't separate children from families"" - @GeorgeTake…" +06/19/2018,Economists,@RBReich,RT @JuddLegum: Laura Ingraham describes the detention facilities where children are sent after being forcibly separated from their parents… +06/18/2018,Economists,@RBReich,"RT @jeanguerre: DHS Secretary Kirstjen Nielsen just said DHS isn't separating families who ""legitimately"" enter country through a port of e…" +06/18/2018,Economists,@RBReich,There are two kinds of liars – fools and knaves. Fools lie because they don’t know the truth. Knaves lie because th… https://t.co/JYQqM2uZeP +06/18/2018,Economists,@RBReich,"RT @ProPublica: Inside a detention center last week. Children separated from their parents wail and ask for help. + +A Border Patrol agent b…" +06/18/2018,Economists,@RBReich,"It seems that whenever pro-Trump pundits are now confronted with the harsh realities of the policies they promote,… https://t.co/6ANbFC3ZwU" +06/18/2018,Economists,@RBReich,The Trump Administration's family-separation policy is another xenophobic attack on immigrants rooted in the same o… https://t.co/Nty56ItHE3 +06/18/2018,Economists,@RBReich,"RT @chrislhayes: Currently, the Trump administration is arguing that its family-separation policy: + +- is a deterrent + +- is biblically compl…" +06/17/2018,Economists,@RBReich,"RT @maggieNYT: Trump, who has continued to claim Democrats are responsible for his own policy that he has pressed his DHS secretary to enfo…" +06/17/2018,Economists,@RBReich,"The Attorney General outlined a ""zero-tolerance"" policy last month and other members of the administration have des… https://t.co/d0os5eHom1" +06/17/2018,Economists,@RBReich,RT @tedlieu: Happy early #FathersDay to those who didn't have our kids ripped away from us by the new @realDonaldTrump family separation po… +06/17/2018,Economists,@RBReich,"RT @ACLU: This #FathersDay, members of Congress are visiting kids at the border and in detention centers to see firsthand how @realDonaldTr…" +06/16/2018,Economists,@RBReich,"Trump is the first president to use the term ""we"" to refer not to all Americans but only to his supporters. He cons… https://t.co/Fh8p4s2TA2" +06/16/2018,Economists,@RBReich,"He continues to order unnecessary cruelty and blame it on his political opponents. He's also done it with DACA, the… https://t.co/vnm54Tvfhn" +06/16/2018,Economists,@RBReich,RT @Rob_Rogers: I Was Fired for Making Fun of Trump https://t.co/aauivB2OEl +06/16/2018,Economists,@RBReich,"The next time you hear conservatives railing against affirmative action for black and brown kids, remind them of th… https://t.co/7fEDIPD2lP" +06/15/2018,Economists,@RBReich,"More evidence of the failure of trickle-down economics: + +1) Hourly earnings are down, adjusted for inflation. +2) C… https://t.co/7WBHe6DpfZ" +06/15/2018,Economists,@RBReich,"Throughout history, tyrants have (1) brutalized and scapegoated the vulnerable, (2) lied about what they were doing… https://t.co/z0Msq33T5L" +06/15/2018,Economists,@RBReich,Unfair unless you think witness tampering is perfectly legal. How long before Trump pardons Manafort -- the most bl… https://t.co/2tQZzsAIAq +06/15/2018,Economists,@RBReich,What else would we expect from an administration that has made a practice of ripping babies from their mothers. https://t.co/KYo42xYNvS +06/15/2018,Economists,@RBReich,"Trump officials have operationalized ""deep state"" conspiracies, with one appointee keeping a list of employees who… https://t.co/LibR3lzANk" +06/15/2018,Economists,@RBReich,"“There’s No Stopping Him”: Trump Insists on a Putin Summit +https://t.co/Od2oV7bYEU" +06/15/2018,Economists,@RBReich,These distortions about Crimea could be part of the groundwork for lifting sanctions. Trump is reportedly pushing h… https://t.co/9o7Mrr3AmH +06/15/2018,Economists,@RBReich,"@RichardCheese Stay mobilized and engaged! When the public stops paying attention, democracy suffers. Then, in Nove… https://t.co/nbx4JeWHQY" +06/15/2018,Economists,@RBReich,RT @PreetBharara: Now will Manafort flip? https://t.co/96x2meojAx +06/15/2018,Economists,@RBReich,"This week a GOP senator described his party's loyalty to the president as ""cultish."" Now, Trump is calling for Nort… https://t.co/LHNxPwZ2GJ" +06/15/2018,Economists,@RBReich,Unbridled cruelty and greed are eating away at the very fabric of our society. We must not let it stand. This is no… https://t.co/lLeQAszcle +06/14/2018,Economists,@RBReich,"Remember the endless conspiracy theories about the Clinton Foundation? It seems that, once again, Trump was creatin… https://t.co/bnWkjelsL7" +06/14/2018,Economists,@RBReich,"RT @commondreams: WATCH: Huckabee-Sanders Defends Ripping Children From Parents, Because It's ""Very Biblical to Enforce the Law"" +https://t.…" +06/14/2018,Economists,@RBReich,RT @chrislhayes: THE LAW IN NO WAY COMPELS FAMILY SEPARATION. THEY ARE CHOOSING TO DO THIS. https://t.co/lbtyESdb8i +06/14/2018,Economists,@RBReich,RT @kylegriffin1: A construction company owned by the Chinese government was awarded another contract this week to work on the Trump golf c… +06/14/2018,Economists,@RBReich,"RT @Fahrenthold: NY Atty Gen sues @realdonaldtrump & 3 eldest kids, alleging “persistent illegal conduct” at Trump’s charity. https://t.co/…" +06/14/2018,Economists,@RBReich,"Fox News, 2009: Obama gives Queen Elizabeth an iPod. End of the world. + +Fox New, 2018: Trump salutes a North Korea… https://t.co/tzpvZk1szr" +06/14/2018,Economists,@RBReich,Let me get this straight. It's patriotic to salute a North Korean general who's part of a brutal dictatorial regime… https://t.co/DQjzT3TMb9 +06/14/2018,Economists,@RBReich,The United States already spends more on the military than the next 10 countries combined. It's time to rein in Pen… https://t.co/S0tethjC5W +06/13/2018,Economists,@RBReich,"This is profoundly disturbing, even by Trump's standards. https://t.co/qOJ5FYUFvr" +06/13/2018,Economists,@RBReich,"RT @Lawrence: Note to news media: there is no North Korea ""deal."" If you use the word ""deal"" you're spreading Trump propaganda. + +A deal has…" +06/13/2018,Economists,@RBReich,"As a father, I cannot fathom what these parents are going through. As an American, I am horrified that our governme… https://t.co/UpJCNdnzZ4" +06/13/2018,Economists,@RBReich,"RT @peterbakernyt: Reporter: “The president said it will be verified.” + +Pompeo: “Of course it will.” + +Q: ""Can you tell us a little bit more…" +06/13/2018,Economists,@RBReich,RT @Wonkblog: A minimum-wage worker can’t afford a 2-bedroom apartment anywhere in the U.S. https://t.co/05sfZfk60P +06/13/2018,Economists,@RBReich,"RT @GeorgeLakoff: Four ways the press can stop helping Trump: +1. Learn how propaganda works and how he weaponizes words +2. Focus on the fa…" +06/13/2018,Economists,@RBReich,RT @oliverdarcy: this really is too easy https://t.co/eFqWfT4pn9 +06/13/2018,Economists,@RBReich,"RT @ABCPolitics: Republican Sen. Bob Corker on the GOP's deference to Pres. Trump: ""It's almost becoming a cultish thing, isn't it. And it'…" +06/13/2018,Economists,@RBReich,"“They weren’t exactly selling tickets,” Trump said, referring to the South Korean Olympic games. “It sold like wil… https://t.co/fUDUJZJBag" +06/13/2018,Economists,@RBReich,"Surprise, surprise! Corporate executives are using the massive windfall from the Trump tax cut to line their own po… https://t.co/q7DTiBfTjF" +06/13/2018,Economists,@RBReich,"Dick Thornburgh, AG from 1988-91': ""We will be remembered by what we say and what we do in this challenging time in… https://t.co/9US4XiiW7S" +06/13/2018,Economists,@RBReich,Wonder when Trump will congratulate Arthur Jones for winning the Republican primary in Illinois’s Third Congression… https://t.co/UASk8OhVqy +06/13/2018,Economists,@RBReich,This morning Trump congratulated Corey Stewart for his win in Virginia. Stewart is best known for defending Confede… https://t.co/AS6O51JzOB +06/13/2018,Economists,@RBReich,What's next? We build a wall along the Canadian border and demand Canada pay for it? https://t.co/1GSlgI9PZB +06/12/2018,Economists,@RBReich,The AT&T-Time Warner deal will consolidate two of the largest media empires into the hands of just a few corporate… https://t.co/C95qXaTG6R +06/12/2018,Economists,@RBReich,RT @KenDilanianNBC: Reporters thought this video was North Korea propaganda. It came from the White House. https://t.co/fvIFR8YvTN +06/12/2018,Economists,@RBReich,This slipped by barely noticed. Trump's lawyers from the Department of Justice are now arguing that he can profit f… https://t.co/MYTDFTFfFF +06/11/2018,Economists,@RBReich,The repeal of #NetNeutrality is huge blow to what Americans can say and do online. But we must keep up the fight to… https://t.co/RuFVwBuplG +06/11/2018,Economists,@RBReich,"RT @kylegriffin1: Jared and Ivanka made at least $82,000,000 in outside income last year while serving in the White House, according to new…" +06/11/2018,Economists,@RBReich,"We're America, a land of opportunity that welcomes people from around the world in search of a better life. + +We're… https://t.co/No8g1tOHQD" +06/11/2018,Economists,@RBReich,"In the past 72 hours, Trump administration officials have condemned Justin Trudeau to ""a special place in hell,"" de… https://t.co/hxgjOQS3oT" +06/11/2018,Economists,@RBReich,"RT @jonfavs: This story is bonkers. + +@NRA meets with right-wing Russian nationalists, sanctioned oligarchs, Putin cronies, money-launderer…" +06/11/2018,Economists,@RBReich,RT @evanhalper: BREAKING: Trump administration will stop granting asylum to victims of domestic abuse and gang violence. Tens of thousands… +06/11/2018,Economists,@RBReich,I have news for you. We’re already in a constitutional crisis. For a year and a half the president of the United St… https://t.co/RjGMIx8x0D +06/11/2018,Economists,@RBReich,"RT @ananavarro: You forgot, (6) family values. https://t.co/t1dvfnXT8e" +06/11/2018,Economists,@RBReich,"RT @RepAdamSchiff: To my Republican colleagues: + +How long will you remain silent as President Trump lays ruin to our alliances and tears ap…" +06/11/2018,Economists,@RBReich,"In fact, the U.S. has a trade surplus with Canada. Canada is our largest trading partner. We are staunch allies, fr… https://t.co/suuRL20pH4" +06/11/2018,Economists,@RBReich,"The Republican Party used to stand for (1) the rule of law, (2) free trade, (3) state's rights, (4) low deficits an… https://t.co/8agph4u06V" +06/10/2018,Economists,@RBReich,"Let me get this straight: Trump pulls out of G-7 communique because Trudeau says Canada won’t be bullied by U.S., w… https://t.co/gkfTeYRoLZ" +06/10/2018,Economists,@RBReich,RT @JoeNBC: God help us. Their silence is damning enough. But the Senate Majority Leader calling this the best time ever for conservatives… +06/10/2018,Economists,@RBReich,"Trump has turned his back on America's allies, threatened a trade war with Europe and Japan, made a mockery of the… https://t.co/1aW8VDy4SW" +06/09/2018,Economists,@RBReich,These two photos speak volumes about the direction of America's standing in the world. https://t.co/cZBOav59Sf +06/09/2018,Economists,@RBReich,An incredible photo from the G-7 summit. True patriots understand that diplomacy and international cooperation are… https://t.co/DyMgVl6blw +06/09/2018,Economists,@RBReich,Kudos to @KevinSiers for this one. Be sure to check out his great cartoons. +06/09/2018,Economists,@RBReich,"Trump’s take on an American classic: + +God bless America, +Land that I rule. +Stand beside me, +Don’t indict me +Wit… https://t.co/ppDL6geiE4" +06/08/2018,Economists,@RBReich,Here's the report on out-of-pocket costs: https://t.co/SRZKQ9LrGO +06/08/2018,Economists,@RBReich,"According to a new report, Trump's so-called plan to lower prescription drug prices could actually increase prices… https://t.co/Q3l0ngIwPv" +06/08/2018,Economists,@RBReich,"RT @kylegriffin1: John McCain on the G7: ""The President has inexplicably shown our adversaries the deference and esteem that should be rese…" +06/08/2018,Economists,@RBReich,Trump has become the Mad King who says or does anything his gut tells him to — running roughshod over the rule of l… https://t.co/Rw97N6w3Kv +06/08/2018,Economists,@RBReich,"It's easy to feel helpless with Trump in the White House, but do not underestimate your collective power to oppose… https://t.co/TbpLPUZs95" +06/07/2018,Economists,@RBReich,These are the acts of kindness and generosity that will always define the American people. We mustn't lose sight of… https://t.co/hVJidV6eFg +06/07/2018,Economists,@RBReich,The Trump administration’s decision to alter the 2020 Census to ask people if they are American citizens is unconst… https://t.co/pDPRDagmxE +06/07/2018,Economists,@RBReich,RT @maggieNYT: The president versus the presidency. https://t.co/oNXAveRnxe +06/07/2018,Economists,@RBReich,This is astounding. Trump has done more to save Chinese jobs at ZTE than American jobs at Carrier. https://t.co/gwmpL5l5UL +06/07/2018,Economists,@RBReich,"RT @RepAdamSchiff: The President just caved on a deal with ZTE, a Chinese company that our intelligence professionals say poses a national…" +06/07/2018,Economists,@RBReich,Trump is willing to test the limits of our democracy in order to maintain power. We must remain vigilant. https://t.co/0P08OMcdzm +06/07/2018,Economists,@RBReich,Trump's contempt for the free press permeates the entire administration. https://t.co/0653r0Qtqf +06/07/2018,Economists,@RBReich,"A note on Robert F. Kennedy: +#RFK50 https://t.co/KpjtL3veEs" +06/07/2018,Economists,@RBReich,"RT @FoxNewsResearch: (E)xpensive (P)ruitt (A)gency: +Condo Deal: $50/night +12 Pens: $1,560 +Journals: $1,670 +Trump Hotel Mattress: $1,750 +Pri…" +06/07/2018,Economists,@RBReich,Trump's policies have the unique distinction of accomplishing the exact opposite of their stated goal -- a plan to… https://t.co/MjZCFiUZhx +06/06/2018,Economists,@RBReich,Bumping this to the top of Canada's inbox. https://t.co/bBY0nx8ztm +06/06/2018,Economists,@RBReich,"RT @ABC: Warriors coach Steve Kerr on White House controversy: + +""I'm blown away by the irony of the Eagles being disinvited. … Instead we…" +06/06/2018,Economists,@RBReich,"Leave it to Trump to insult our closet ally, concoct his own version of history, and embarrass America all in the s… https://t.co/3wIVM7OvXR" +06/06/2018,Economists,@RBReich,"RT @AdamRuins: Two facts from this #AdamRuins clip: +1) Unpaid interns have the same success rate in finding paid work as folks who never i…" +06/06/2018,Economists,@RBReich,Only once in our history—in 1861—did enough of us distrust the system so much we succumbed to civil war. We're prob… https://t.co/m8K8OWGemj +06/06/2018,Economists,@RBReich,RT @Redistrict: Dems picking up a Trump +5 state senate seat in MO by a landslide tonight - currently 60%-40% w/ 82% counted. https://t.co/… +06/05/2018,Economists,@RBReich,"RT @NBCNews: Sen. Leahy: Will your school safety commission look at the role of firearms? + +Sec. DeVos: ""That is not part of the commission'…" +06/05/2018,Economists,@RBReich,RT @MichaelSkolnik: Paul Manafort is free? https://t.co/paDPOvGVUb +06/05/2018,Economists,@RBReich,RT @carinabergfeldt: A man takes a knee during Trump’s celebration. https://t.co/zghJSk2YOu +06/05/2018,Economists,@RBReich,"RT @swingleft: It's primary day in Alabama, California, Iowa, Mississippi, Montana, New Jersey, New Mexico, and South Dakota. GO VOTE! http…" +06/05/2018,Economists,@RBReich,"RT @sfchronicle: Is a second civil war possible? Probably not. But the way Trump and his defenders are behaving, it’s not absurd to imagine…" +06/05/2018,Economists,@RBReich,"There are primary elections today Alabama, California, Iowa, Mississippi, Montana, New Jersey, New Mexico and South… https://t.co/AcIT63C7KL" +06/05/2018,Economists,@RBReich,RT @ChrisBHaynes: Stephen Curry says “I agree with ‘Bron.” https://t.co/NSYZYh0eDK +06/05/2018,Economists,@RBReich,"We should all be outraged by this. When Americans look back on this brutal policy, it will surely be recorded as on… https://t.co/5gyGQnyL6l" +06/05/2018,Economists,@RBReich,"RT @AriMelber: Look at what’s happening now: + +Mueller seeking to jail Trump campaign chair for *witness tampering* + +Trump aides admit they…" +06/05/2018,Economists,@RBReich,"RT @ChrisMegerian: Special counsel says Paul Manafort attempted to tamper with a witness and ""has violated the conditions of his release.""…" +06/04/2018,Economists,@RBReich,How are corporations spending their savings from Trump's tax cuts? (Hint: It's not going towards workers) A new rep… https://t.co/zyYu349y2c +06/04/2018,Economists,@RBReich,The President of the United States is threatening to pardon himself in order to undermine an independent investigat… https://t.co/1DSm66prPu +06/04/2018,Economists,@RBReich,"As tyrants take control of democracies, they seek to undermine the rule of law, carving out exceptions for themselv… https://t.co/qmEm50LDP8" +06/04/2018,Economists,@RBReich,"RT @EricLiptonNYT: JUST POSTED: Pruitt did what? Yes, he asked one of his top aides to help him get a mattress he could use from the Trump…" +06/04/2018,Economists,@RBReich,RT @SenJeffMerkley: I was barred entry. Asked repeatedly to speak to a supervisor—he finally came out and said he can’t tell us anything. P… +06/03/2018,Economists,@RBReich,"What's next kindergarten teachers with bazookas? Principals with flamethrowers? + +Gun laws save lives, not more guns… https://t.co/EJyxrMcJiP" +06/03/2018,Economists,@RBReich,"RT @kylegriffin1: Remember that Mueller and his team have: + +• Issued 8 indictments covering 19 individuals and 3 businesses +• Secured 5 gui…" +06/03/2018,Economists,@RBReich,"RT @BeschlossDC: “Well, when the President does it, that means that it is not illegal.” —Richard Nixon to David Frost, 1977 https://t.co/DA…" +06/03/2018,Economists,@RBReich,"RT @MarshallCohen: In a letter to Mueller, Trump's lawyers said he ""dictated a short but accurate response to the New York Times"" about the…" +06/03/2018,Economists,@RBReich,"RT @maggieNYT: For the first time, Trump’s lawyers say he dictated his son’s response to NYT over Russian lawyer meeting. They call the sta…" +06/02/2018,Economists,@RBReich,"RT @JohnJHarwood: average monthly job growth: + +—first 16 months of Trump presidency: 185K + +—last 16 months of Obama presidency: 215K" +07/02/2018,Economists,@TimDuy,RT @RadioFreeTom: Of course they are. https://t.co/OVZkBlvLRi +07/02/2018,Economists,@TimDuy,RT @inthesedeserts: I literally don’t care about “how will we pay for this?!?!!!?” We paid for a $1 trillion plus tax cut and increased the… +07/02/2018,Economists,@TimDuy,"RT @TheMassHistoria: I'm fucking tired of ""liberal"" used as an insult. + +Liberalism gave you the vote. + +Liberalism gave you equality. + +Liber…" +07/02/2018,Economists,@TimDuy,"RT @JamesGleick: This @Ocasio2018 is a mainstream, moderate platform. Most Americans support almost all of it. The extremist right has pull…" +07/02/2018,Economists,@TimDuy,RT @scottyweeks: I am overjoyed at Ocasio-Cortez's win but as a centrist neoliberal shill I am pretty solidly in Noah's camp on the policy… +07/02/2018,Economists,@TimDuy,RT @calculatedrisk: Update: Framing Lumber Prices Up Sharply Year-over-year https://t.co/dPD7OqSSDO +07/02/2018,Economists,@TimDuy,"RT @Noahpinion: Howdy, comrades! :D + +Today's @bopinion post is about socialism in America today. + +What can we learn about socialism from Al…" +07/02/2018,Economists,@TimDuy,@genevazurich Sure. +07/02/2018,Economists,@TimDuy,I am thinking that Susan Collins is either just disingenuous or not that bright. https://t.co/vxupWFLOBE +07/02/2018,Economists,@TimDuy,RT @davidmwessel: My colleague Don Kohn became an honorary commander of the British empire today. The ribbon was awarded by the British amb… +07/02/2018,Economists,@TimDuy,10-2 spread down to 31 bp. +07/02/2018,Economists,@TimDuy,"RT @BobBrinker: Vanguard announced the firm will provide commission-free online transactions for almost 1800 ETFs + +WOW! + +//def not Bogle's…" +07/02/2018,Economists,@TimDuy,"One would not think this needs to be said, but please don’t feed the sharks. https://t.co/pChfAiKszk" +07/02/2018,Economists,@TimDuy,RT @markets: The home ownership rate for young Americans is expected to increase over the next decade https://t.co/gCeVo5Pr1n https://t.co/… +07/02/2018,Economists,@TimDuy,RT @ObsoleteDogma: And New York Times political reporters think it’s surprising that Ron Paul supporters would like Donald Trump https://t.… +07/02/2018,Economists,@TimDuy,RT @pdxlawgrrrl: Today Portland State University police shot and killed Jason Washington. Witnesses say he was trying to break up a fight t… +07/02/2018,Economists,@TimDuy,"RT @bopinion: Worried about socialism coming to America? @Noahpinion says embrace the good, reject the problematic https://t.co/392JrpV2s4…" +07/02/2018,Economists,@TimDuy,Who could have known? https://t.co/wLtbRylbHc +07/02/2018,Economists,@TimDuy,"RT @DukeStJournal: Compare and contrast: in Britain, Parliament is already asking questions mere days after the news broke. In the US Congr…" +07/02/2018,Economists,@TimDuy,"RT @leah_boustan: All migration waves that I have seen data for have an inverted-U shape, slowly building as networks form, and then trendi…" +07/02/2018,Economists,@TimDuy,RT @ernietedeschi: OK WHO LEAKED https://t.co/QJ7qLWqwJB +07/02/2018,Economists,@TimDuy,RT @CardiffGarcia: Recommended post from @gavyndavies about global economic growth -- still strong despite the threat of a trade war and em… +07/02/2018,Economists,@TimDuy,"To be fair, if you spent the last year scaring your clients with stories about quantitative tightening, the plan mi… https://t.co/3O1RXKjq6r" +07/01/2018,Economists,@TimDuy,RT @NickTimiraos: The Fed thought it could wait until next year to decide key questions that will shape how large a bond portfolio it maint… +07/01/2018,Economists,@TimDuy,"RT @ReformedBroker: a message for @larry_kudlow - the federal deficit is actually UP 23% over the last year, but that’s okay. +important p…" +07/01/2018,Economists,@TimDuy,"RT @Noahpinion: Note: TPP is good, and we should join it. It will not create refugee waves. https://t.co/VF4DzTct9p" +07/01/2018,Economists,@TimDuy,Sun setting behind the Cascades. Just outside of Bend. https://t.co/gzRtRUlVJF +06/30/2018,Economists,@TimDuy,"RT @BobBrinker: I hope you are wrong — but think you are right. + +Thread. https://t.co/dQw54ZCRR1" +06/30/2018,Economists,@TimDuy,"RT @paulkrugman: From March. When I say these guys had no idea what they were getting into, I wasn't kidding. https://t.co/xOi7pUxsfx" +06/30/2018,Economists,@TimDuy,"RT @JimPethokoukis: Maybe this deserves at least equal attention to China’s bullet trains, and fabulous airports, and commitment to renewab…" +06/30/2018,Economists,@TimDuy,"RT @ReformedBroker: Who could have known trade was so COMPLEX?? + +Toyota makes cars in Kentucky + +BMW in South Carolina + +Benz in Alabama + +GM…" +06/30/2018,Economists,@TimDuy,RT @OregonianBiz: Most Oregonians buying health insurance in the individual market will see their rates jump from 5 to 10 percent in 2019.… +06/30/2018,Economists,@TimDuy,RT @NickTimiraos: Global supply chains have become so integrated over the last few decades that it’s really hard to put tariffs in place th… +06/30/2018,Economists,@TimDuy,"RT @TopherSpiro: BREAKING: Maine doctor @DrChaya says she is likely to challenge @SenatorCollins in 2020. ""I can't sit idly by and just wat…" +06/30/2018,Economists,@TimDuy,“Swim” instructor would be proud. https://t.co/7TNz9YTF0O +06/30/2018,Economists,@TimDuy,RT @ATabarrok: Why Sexism and Racism Never Diminish–Even When Everyone Becomes Less Sexist and Racist https://t.co/91jTRlpWHN +06/30/2018,Economists,@TimDuy,RT @SonnyBunch: capital 👏 always 👏 wins https://t.co/Qv7eLwf1jv +06/30/2018,Economists,@TimDuy,RT @uoregon: A generous $10 million gift from the Robert J. DeArmond Trust will accelerate #research that improves lives as well as boost t… +06/30/2018,Economists,@TimDuy,@NickTimiraos @sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Sessions probably has some thoughts on that. +06/30/2018,Economists,@TimDuy,Nope. Trump's badgering of companies - effectively an effort at state directed control of the means of production -… https://t.co/yLgnnzXLgy +06/30/2018,Economists,@TimDuy,RT @markmobility: .@rtraister takes on @nytimes @SenSchumer @SenSanders @brianstelter and the Democratic establishment for their nonstop wo… +06/30/2018,Economists,@TimDuy,@IvanTheK @Ocasio2018 The D leadership seems enamored with a fundamentally socially liberal yet fiscally/economical… https://t.co/9LZLJgvSBg +06/30/2018,Economists,@TimDuy,@IvanTheK @Ocasio2018 I know. That is a problem. Withering internal battles seem to be hurting Ds more than Rs. +06/30/2018,Economists,@TimDuy,RT @bopinion: The Equal Rights Amendment is still worth supporting https://t.co/NajVDvH0FJ https://t.co/cZmmDPJ1pQ +06/30/2018,Economists,@TimDuy,Maybe even could get @davidmwessel on board with this idea. https://t.co/DbFQsKeoRt +06/30/2018,Economists,@TimDuy,@IvanTheK I think the Sanders campaigned showed that many are looking for a different economic policy path than tha… https://t.co/u8kbHXq4JT +06/30/2018,Economists,@TimDuy,RT @BruceBartlett: It's always coming down when Republicans want to cut taxes. It's always skyrocketing when they want to slash benefits fo… +06/30/2018,Economists,@TimDuy,And this: https://t.co/pRvyMVwuvw https://t.co/Kt35xBOXQo +06/30/2018,Economists,@TimDuy,Peace could come quickly with policy rates soon approaching neutral. When this really becomes a problem I think is… https://t.co/yJTlXg1P0T +06/30/2018,Economists,@TimDuy,"RT @PeterContiBrown: I don’t think you’re crazy, but I worry about this more than it sounds like you do. Here’s my thread /1 https://t.co/X…" +06/30/2018,Economists,@TimDuy,@sam_a_bell @NickTimiraos @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Both the left and the right turned ag… https://t.co/88QeVDwTZ3 +06/30/2018,Economists,@TimDuy,"RT @IvanTheK: She has 28 times as many followers as the number of people who voted for her in the primary. And from what I can see so far,…" +06/30/2018,Economists,@TimDuy,RT @CardiffGarcia: [2/2] I listed four worrying possibilities (not quite predictions). I try to be open-minded about the future and I'd say… +06/30/2018,Economists,@TimDuy,"RT @CardiffGarcia: [1/2] In Jan 2017 I tried to understand whether the outcomes of Trump-ian economic populism, or ""pluto-populism"" if you…" +06/30/2018,Economists,@TimDuy,RT @PotomacRC: @sam_a_bell @TimDuy @Sam1Fleming @bindersab @PeterContiBrown 1.We are talking about extreme events. 2.Bernanke was nearly no… +06/30/2018,Economists,@TimDuy,Because Democrats aren't really proposing a socialist agenda. Trump's badgering of companies - effectively an effor… https://t.co/N0jOa306vg +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown You can make a good argument that the most importan… https://t.co/4yhWFDDTMH +06/30/2018,Economists,@TimDuy,The Fed has been raising rates since 2015. They have already been doing something about it - pre-emptive policy. https://t.co/87vngRXXWz +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Because he wouldn’t fire Volker. 😉 +06/30/2018,Economists,@TimDuy,@PotomacRC @sam_a_bell @Sam1Fleming @bindersab @PeterContiBrown I wonder too if Kudlow’s remarks were intended for… https://t.co/M5PGb6dmse +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown …that blowback could be severe. +06/30/2018,Economists,@TimDuy,"RT @jklabar: Congrats @nwnatural @portlandgeneral on this recognition! + +@GreaterPDX is lucky to work with your teams! https://t.co/P2dS980j…" +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown The issue is probably less about the now and more a… https://t.co/9b4bec3KS7 +06/30/2018,Economists,@TimDuy,"RT @NickTimiraos: A lot of people said the Fed was making a big mistake last year when inflation was proving stubborn to the downside, but…" +06/30/2018,Economists,@TimDuy,@Noahpinion Insider-outsider +06/30/2018,Economists,@TimDuy,Finally @aaron_watson which is why I am here. You don’t get these Texas acts out in Oregon very often! https://t.co/oDjb3fLHdz +06/30/2018,Economists,@TimDuy,RT @tomkeene: *KUDLOW HOPES FED UNDERSTANDS MORE JOBS DON'T CAUSE INFLATION ...it starts https://t.co/gLqs5iW7E9 +06/30/2018,Economists,@TimDuy,“I have apologize now for my voice” is not a great opener and does not bode well for this set. +06/30/2018,Economists,@TimDuy,https://t.co/sVwdFspog5 +06/30/2018,Economists,@TimDuy,Second act is Jamie O’Neal...for those of you who remember “There Is No Arizona.” +06/30/2018,Economists,@TimDuy,Covering “Don’t Stop Believing” now. Might work better with a more lubricated crowd. +06/30/2018,Economists,@TimDuy,First act is Bend area band Countrified. https://t.co/WUBISbeQhJ +06/30/2018,Economists,@TimDuy,Kicked off the concert with the local rodeo queens. https://t.co/UjIaMPjFhw +06/30/2018,Economists,@TimDuy,My daughter graciously agreed to join me! https://t.co/J1T6hQ3GzN +06/30/2018,Economists,@TimDuy,Live tweeting tonight from the fourth annual La Pine Rodeo Association’s concert. It’s a sparse crowd so far on a w… https://t.co/75enB7ifmV +06/29/2018,Economists,@TimDuy,"Yes, you have to look through the quarterly noise. https://t.co/CiH1K4JQnW" +06/29/2018,Economists,@TimDuy,It’s been decades since the White House has warned the Fed the way Kudlow just did https://t.co/wRrkOWT8Vz +06/29/2018,Economists,@TimDuy,"RT @Brad_Setser: I have a few thoughts on this topic too! (thread) + +1. As Krugman notes, lots of advanced economies finance current accoun…" +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: Today in our @bopinion debate, @conorsen speculated that big corporations might be over-levered, and that the next recessio…" +06/29/2018,Economists,@TimDuy,RT @DavidBeckworth: ICYMI... https://t.co/xCtBuhFYbO +06/29/2018,Economists,@TimDuy,@eclane9668 Budget +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: When Central Americans stop coming to America because of lower fertility rates and higher GDP, Trump and the nativists are…" +06/29/2018,Economists,@TimDuy,Tell me again that Kudlow is a serious guy and not just another hack. https://t.co/eugCY8MA6u +06/29/2018,Economists,@TimDuy,"RT @mark_dow: TFW you've been denying the recovery for 10 years, in the face of the longest expansion ever, and you insist it's the Fed who…" +06/29/2018,Economists,@TimDuy,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Economists,@TimDuy,“Leading” or “hyping”? https://t.co/XNGBTq9BsX +06/29/2018,Economists,@TimDuy,"RT @GlennThrush: This is not a small point: + +The head of the NEC, who will be on the front lines of the next economic crisis, is lying (un…" +06/29/2018,Economists,@TimDuy,RT @greg_ip: Gonna put this on a T-shirt. https://t.co/8WfOxQoyzK +06/29/2018,Economists,@TimDuy,RT @Econ_Marshall: A president & a white house that see it as their function to cement their party's political power. Imagine belonging to… +06/29/2018,Economists,@TimDuy,"@IvanTheK Handy reference chart, with the caveat that we don’t understand the formation of inflation expectations.… https://t.co/FvgF8cNigI" +06/29/2018,Economists,@TimDuy,"RT @osullivanEcon: Inflation remains tame, but there has been some acceleration recently. Core PCE series up to 2.0% y/y in May from 1.5%…" +06/29/2018,Economists,@TimDuy,"Who could have seen this coming? (Answer: Virtually every economist). + +Bitcoin Bloodbath Nears Dot-Com Levels as M… https://t.co/e7sROaTD01" +06/29/2018,Economists,@TimDuy,RT @GagnonMacro: 2019 is shaping up to be a very informative year on the macroeconomics of inflation. It is possible the lesson will come s… +06/29/2018,Economists,@TimDuy,RT @jodiecongirl: how high do you have to be to think you can live in a bitcoin...I used to have to remind people that bitcoin isn’t rangib… +06/29/2018,Economists,@TimDuy,@NickTimiraos It has been higher a number of times in the past few years. The recent general trend is feeling more… https://t.co/dVOXZNELn7 +06/29/2018,Economists,@TimDuy,"The annualized one month change was 2.6%. That’s a number that, if sustained, would worry the Fed. That said, weak… https://t.co/AEMdtAm6Dz" +06/29/2018,Economists,@TimDuy,RT @jbarro: A national campaign to repeal state bans on same-sex marriage would serve four purposes. 1) SCOTUS-proof marriage equality. 2)… +06/29/2018,Economists,@TimDuy,RT @ukarlewitz: https://t.co/4dAtBYpvDa +06/29/2018,Economists,@TimDuy,RT @TheBudgetGuy: Pants on fire. https://t.co/3sPwqR1Ckm +06/29/2018,Economists,@TimDuy,"RT @conradhackett: In a classic experiment, 12 articles were resubmitted to the same journals in which they had already been published. Thr…" +06/29/2018,Economists,@TimDuy,"RT @HenryJGomez: ""In Minnesota, tension between urban and rural Democrats has been growing increasingly sharp. Democrats on the Iron Range…" +06/29/2018,Economists,@TimDuy,RT @bopinion: Only in America: No other successful nation tolerates a tide of roughly 100 shooting deaths per day https://t.co/roECNyslAB h… +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: ""Abolish ICE"" gains some support...from ICE agents. https://t.co/0KxEVTJtvL" +06/29/2018,Economists,@TimDuy,RT @TheRealEveret: Not too late. https://t.co/lzRcOAN16d +06/29/2018,Economists,@TimDuy,Who could have guessed? https://t.co/sHu8cymrPn +06/29/2018,Economists,@TimDuy,"RT @acrossthecurve: When it comes to curve watching, former Federal Reserve chairman Alan Greenspan has a favorite: the 5-to-30-year Treasu…" +06/29/2018,Economists,@TimDuy,RT @acrossthecurve: Two regional Federal Reserve presidents warned that worries over escalating trade disputes are increasingly weighing on… +06/29/2018,Economists,@TimDuy,RT @ObsoleteDogma: That’s not even the full list of things Trump has done—in just the last week!—that benefit Russia. He’s also trying to u… +06/29/2018,Economists,@TimDuy,RT @acrossthecurve: Bank of America Strategist Says He's Never Been This Bullish on the U.S. Economy https://t.co/wT1PRBEIxS via @markets +06/29/2018,Economists,@TimDuy,RT @alisterbull1: Jay Powell to deliver semi-annual report to Congress before Senate Banking Committee July 17 at 10 am in Washington +06/29/2018,Economists,@TimDuy,"RT @betsy_klein: ""In July 1776, the Gazette was one of the first newspapers to publish the Declaration of Independence, although it appeare…" +06/29/2018,Economists,@TimDuy,"RT @ezraklein: A baby fell and hit his head. The family took hi to the ER. The ER said he was fine, let him take a nap, fed him some formul…" +06/28/2018,Economists,@TimDuy,RT @nickconfessore: Three months after the Cambridge Analytica scandal -- and arguably because of it -- California has just passed what may… +06/28/2018,Economists,@TimDuy,RT @HumbleStudent: @StockBoardAsset @MarkYusko @Schuldensuehner @OccupyWisdom @Bamabroker @dlacalle_IA I find it disturbing that the chart… +06/28/2018,Economists,@TimDuy,RT @ByRosenberg: For anyone who doubts journalists' commitment: The Annapolis crime reporter just watched his colleagues die and feared for… +06/28/2018,Economists,@TimDuy,RT @mattyglesias: Trump’s inability to perform basic presidential functions is striking https://t.co/0M0vvIyvfz +06/28/2018,Economists,@TimDuy,RT @AnnieLowrey: The gap between the feverish discourse about the robot-driven trucker-jobs apocalypse and the pressing reality of worker s… +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: I haven't seen one tweet today about children being imprisoned in cages because their parents asked for asylum in the Un… +06/28/2018,Economists,@TimDuy,@jodiecongirl Sorry! +06/28/2018,Economists,@TimDuy,RT @boes_: What comes next when the Fed gets to its estimate of neutral? Does it really need to keep hiking beyond that to slow the economy… +06/28/2018,Economists,@TimDuy,RT @IvanTheK: Tweet from yesterday--> https://t.co/wm1yJ9uXBA +06/28/2018,Economists,@TimDuy,"RT @Abby_Lynes: Cully was the place where displacement wasn't supposed to happen -- nonprofits joined forces, and PSU students came up with…" +06/28/2018,Economists,@TimDuy,RT @bencasselman: There are few institutions more vital to our democracy and our communities than local newspapers. Thinking of my colleagu… +06/28/2018,Economists,@TimDuy,"RT @annsaphir: Duy warns on yield curve. Meanwhile, Fed researchers see nothing to fear: https://t.co/ExvWi6Xv4B https://t.co/iATk4AeqLC" +06/28/2018,Economists,@TimDuy,"RT @boes_: Jay Powell tells Democrats on the House Ways and Means Committee that the Fed is being cautious with rate hikes, and also that i…" +06/28/2018,Economists,@TimDuy,RT @mark_dow: Bernanke basically saying 'the market is too stupid for the Fed to risk tweaking QT plan on the fly. Too much risk of overrea… +06/28/2018,Economists,@TimDuy,"RT @conorsen: Wisconsin’s unemployment rate is 2.8%. Going to be fun when they pay workers $10,000 to relocate for those Foxconn jobs." +06/28/2018,Economists,@TimDuy,"New Fed Watch: + +https://t.co/b8z3YU1ZkI" +06/28/2018,Economists,@TimDuy,"RT @jimtankersley: A two-part warning, from the Chamber, on tariffs... https://t.co/ETDdAdHV6C" +06/28/2018,Economists,@TimDuy,RT @BobBrinker: My 2c : you will have *plenty* of time to freak out over the yield curve AFTER it inverts. it is a leading indicator ..… +06/28/2018,Economists,@TimDuy,"RT @BrianCAlbrecht: Me, after receiving a desk-rejection: ""in many ways, I did get a publication"" https://t.co/WQnzU46Zyc" +06/28/2018,Economists,@TimDuy,RT @CoryBooker: https://t.co/ZgZceOfFmU +06/28/2018,Economists,@TimDuy,Tell me again why self-driving trucks are a problem not a solution. https://t.co/X3eJjEDWLU +06/28/2018,Economists,@TimDuy,RT @jp_koning: Remember how bitcoin & Ripple were going to revolutionize cross border payments? It eventually happened. Not because they ga… +06/28/2018,Economists,@TimDuy,"RT @davidmwessel: What's really going on with the ACA: ""(De)stabilizing the ACA's individual market: A view from the states"" https://t.co/…" +06/28/2018,Economists,@TimDuy,"RT @neelkashkari: Want more affordable housing? Increase supply. ""U.S. Rental Rates Flatten in Major Cities as Supply Floods Market"" https…" +06/28/2018,Economists,@TimDuy,"RT @dandrezner: I’m way to the right of Ocasio-Cortez, but a lot of this looks pretty damn good to me. https://t.co/z2SxXGx3Z9" +06/28/2018,Economists,@TimDuy,This is how the Democrats sabotage themselves. Fear of deficits hobbled stimulus efforts in the early Obama Adminst… https://t.co/40VidU4hGr +06/28/2018,Economists,@TimDuy,The lack of Federal Reserve maneuvering room is very worrisome https://t.co/yYfwSuecsc via @equitablegrowth +06/28/2018,Economists,@TimDuy,"RT @equitablegrowth: On Thursdays, Equitable Growth brings you @delong's Worthy Reads - items on and off our website Brad recommends - here…" +06/28/2018,Economists,@TimDuy,RT @KateAronoff: This woman is going to Congress https://t.co/ofrwqRAlnb https://t.co/BLvUuqxlwx +06/28/2018,Economists,@TimDuy,RT @ianbremmer: Are those things…bad? 🤔 https://t.co/dpPHJVAw4e +06/28/2018,Economists,@TimDuy,Market rate rise may thwart Fed's balance sheet plan https://t.co/enHmQA2pi9 +06/28/2018,Economists,@TimDuy,RT @SteveMatthews12: Remember Janet Yellen considered running the economy hot? She backed away but Jerome Powell is mulling doing the same… +06/28/2018,Economists,@TimDuy,"RT @RadioFreeTom: From the 1950s through into the early 1990s, Democrats controlled the House and usually the Senate, when voting was harde…" +06/28/2018,Economists,@TimDuy,"RT @RadioFreeTom: You know what frustrates me? A 10% primary turnout in New York. People learn how to vote (find their polling station, mar…" +06/28/2018,Economists,@TimDuy,RT @RadioFreeTom: Liberals who loved Kennedy now wondering why he just handed McConnell a SCOTUS seat. I don't know why. But the larger poi… +06/28/2018,Economists,@TimDuy,You can’t build lasting change unless you show up and keep showing up. And at all levels; it can’t be just about se… https://t.co/5VRjcXn3Mz +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: Show some God damned EMOTION. Democrats were screwed beyond belief over Garland and didn't do a damned thing to even slo… +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: I expect Democrats to put up the same opposition they did to the tax cut that gutted our nation's finances--pro forma. I… +06/28/2018,Economists,@TimDuy,RT @MollyHarbarger: Let me highlight some numbers for you from this story that @rwoolington and @iff_or worked tirelessly on for awhile and… +06/28/2018,Economists,@TimDuy,"RT @AEACSWEP: ""Why I Want You to Study Economics: Increasing Diversity, Inclusion, and Opportunity in Economics"" +Listen to/ Read Loretta M…" +06/28/2018,Economists,@TimDuy,NOOOOOO! https://t.co/6gx9ojedCB +06/28/2018,Economists,@TimDuy,"RT @hblodget: Whatever Democrats choose, they need to stop using the word ""socialist."" Americans hate that idea. And Medicare-for-all isn't…" +06/28/2018,Economists,@TimDuy,"RT @daveweigel: In the last 24 hours, the midterms have changed from a referendum on Maxine Waters to a referendum on Ocasio-Cortez’s immig…" +06/27/2018,Economists,@TimDuy,"RT @ddayen: I'm all for ""finding a way"" to block a hardline Kennedy replacement, but with 49 Dems in the caucus, it seems that way has to g…" +06/27/2018,Economists,@TimDuy,"RT @AshaRangappa_: Great. Russia discussing how to exploit POTUS' vulnerabilities for their own benefit out in the open, knowing that the U…" +06/27/2018,Economists,@TimDuy,"RT @brianbeutler: This shit is EXACTLY what I was getting at in my piece on why it's a good thing @Ocasio2018 won. There's untapped energy,…" +06/27/2018,Economists,@TimDuy,RT @DuncanWeldon: Good piece from @TimDuy https://t.co/hbevd3d9IB https://t.co/StOJFn8Glt +06/27/2018,Economists,@TimDuy,RT @Pat_Garofalo: I imagine an old rich dude who is obsessed with the national debt is not who the Democrats need in 2020 https://t.co/PVGV… +06/27/2018,Economists,@TimDuy,RT @mattyglesias: This seems like a Trump voter Democrats should try to persuade. https://t.co/eLHSbhgKmH +06/27/2018,Economists,@TimDuy,"RT @ezraklein: ""McConnell’s great strength as a politician is that he doesn’t care. He doesn’t care that it’s hypocritical, he doesn’t care…" +06/27/2018,Economists,@TimDuy,RT @Pat_Garofalo: Good @pdacosta piece here on how Trump's immigration crackdown is built on a foundation of lies https://t.co/1V13AqEsPT +06/27/2018,Economists,@TimDuy,That forecast errors are autocorrelated. https://t.co/u4ftsuS2ON +06/27/2018,Economists,@TimDuy,RT @BruceBartlett: They will do as they are told to do. https://t.co/OBa08dKqFJ +06/27/2018,Economists,@TimDuy,"RT @shaneferro: Baby Boomers firebomb the world and bow out, ready to enjoy retirement and leave the world to burn for their grandchildren…" +06/27/2018,Economists,@TimDuy,RT @IvanTheK: Another shoutout for those of you who exercised your protest vote in 2016. https://t.co/QNvbGBM8RF +06/27/2018,Economists,@TimDuy,At the latest. A stumble from the trade war could cause the last 33bp to shrink away by the end of this year. https://t.co/KUBq3XyxTo +06/27/2018,Economists,@TimDuy,This is one of my concerns here - that the forward guidance is effectively the case of the Fed writing checks the m… https://t.co/LDJ2GNOYCw +06/27/2018,Economists,@TimDuy,It is tough for me to see the Fed pausing when Q2 GDP could be coming in above 4%. https://t.co/5q4shV6iAL +06/27/2018,Economists,@TimDuy,10-2 spread down to 33 basis points. +06/27/2018,Economists,@TimDuy,"RT @AnnieLowrey: And hey, some programs -- transitional jobs for the formerly incarcerated, nurse-family partnerships etc. -- really do pay…" +06/27/2018,Economists,@TimDuy,RT @mikeduncan: Historians everywhere take a drink and stare into the middle distance. https://t.co/f53Wco895Y +06/27/2018,Economists,@TimDuy,RT @eveewing: Teachers - a meaningful thing you can do right now is ensure that your students know how truly unpopular Dr. King’s actions w… +06/27/2018,Economists,@TimDuy,"RT @byHeatherLong: Reminder: It's been a long time since $HOG was ""100% in America"" +Harley started manufacturing in Brazil in 1999 +Harley t…" +06/27/2018,Economists,@TimDuy,RT @mark_dow: Disaster myopia is still alive https://t.co/vFYecWT3lI +06/27/2018,Economists,@TimDuy,RT @CardiffGarcia: Somewhat ignored because of the ongoing political backlash is that Germany has started making progress at integrating re… +06/27/2018,Economists,@TimDuy,"RT @mattyglesias: Despite liberals’ refusal to give Trump credit for the greatest diplomatic breakthrough in human history, the North Korea…" +06/27/2018,Economists,@TimDuy,"RT @calculatedrisk: Wednesday: Durable Goods, Pending Home Sales, Q2 Apartment Vacancy Survey https://t.co/C6XWkr2quB" +06/27/2018,Economists,@TimDuy,"RT @jg_environ: I was skeptical until I verified these clippings at @nytimes. In 1934, influential religious figures in US argued that Germ…" +06/27/2018,Economists,@TimDuy,"RT @OrangeLeaderUSA: @TheRickWilson ""We still want your gasoline and your lives, but right now let's talk about civility."" https://t.co/56x…" +06/27/2018,Economists,@TimDuy,RT @TheRickWilson: I noted those things just now because I refuse to play this bullshit asymmetric civility game where one side gets to shi… +06/27/2018,Economists,@TimDuy,"RT @jaybookmanajc: Bill O'Reilly on the Dixie Chicks: + +""These are callow, foolish women who deserve to be slapped around."" https://t.co/Lsk…" +06/27/2018,Economists,@TimDuy,"RT @pborish: https://t.co/vICB4IzxzR + +https://t.co/ulaclsMUWF + +Thank you @TheStalwart @JChatterleytv @juleshyman #WDYM for having me as a…" +06/27/2018,Economists,@TimDuy,"RT @TheRickWilson: Let me know how civil it was when Trump supporters threatened to rape my daughter. + +Because let me tell you something,…" +06/27/2018,Economists,@TimDuy,RT @jodiecongirl: I give up https://t.co/xQA6sYhsNa +06/26/2018,Economists,@TimDuy,"RT @Noahpinion: The myth of the illegal immigration crisis: +https://t.co/mGCSisED6H + +The myth of the Latin American immigration crisis: +ht…" +06/26/2018,Economists,@TimDuy,"RT @ForthMobility: .@OregonDOT in conjunction with @OregonDAS, @ODOEnergy, @OregonDEQ and Oregon Public Utility Commission launches a new…" +06/26/2018,Economists,@TimDuy,RT @TheStalwart: .@Brad_Setser coming up on #WDYM talking about trade. https://t.co/8oPloFweEj +06/26/2018,Economists,@TimDuy,This will be an interesting test of the importance of manufacturing for the economy. https://t.co/bk9XEEeWkB +06/26/2018,Economists,@TimDuy,RT @bradleyrsimpson: So I was at an academic conference this weekend and had to physically intervene to prevent a sexual assault by a male… +06/26/2018,Economists,@TimDuy,"RT @mbusigin: Someone asked for a recession model run yesterday while I was in and out of cell coverage, and I can't recall who, but here i…" +06/26/2018,Economists,@TimDuy,@BullandBaird I have been told they start producing in five years. +06/26/2018,Economists,@TimDuy,There has been an explosion of hazelnut orchards along I5 between Eugene and Portland. Boom brought on by developme… https://t.co/Pm3WbEzkeQ +06/26/2018,Economists,@TimDuy,@lehnerjw I know - it is a story I try to tell as well. Regionally economic success translate into higher incomes w… https://t.co/jOd1w6XWzd +06/26/2018,Economists,@TimDuy,RT @FinancialTimes: FT Exclusive: Bank of America is moving a chunk of its investment banking operations to Paris in preparation for Brexit… +06/26/2018,Economists,@TimDuy,"RT @RenMacLLC: Regionally, the West North Central saw a 22.6 point drop in confidence, according to the Conference Board. This includes Min…" +06/26/2018,Economists,@TimDuy,"@lehnerjw I here that all the time. That it’s all the developers fault. They could build less expensive, affordable… https://t.co/oJGov0yJ65" +06/26/2018,Economists,@TimDuy,"RT @GreaterPDX: The 2020 International Electric Vehicle Symposium and Exposition could bring more than 10,000 attendees to Portland. 🔋🔌 #EV…" +06/26/2018,Economists,@TimDuy,"RT @BetsBarnes: Has your child undergone a school threat assessment? + +We want to hear from you: https://t.co/UTqRaPXkgs" +07/02/2018,Social_workers,@kyrstensinema,"Today marks the 54th anniversary of the Civil Rights Act, a landmark victory for equal rights. In honor of this vic… https://t.co/6kNRv3IKAN" +07/01/2018,Social_workers,@kyrstensinema,Are you following us on Instagram? Click here or find us at @KyrstenSinema: https://t.co/fxOkNZLGuM https://t.co/e0Ir72WzDc +07/01/2018,Social_workers,@kyrstensinema,"Having a pre-existing condition should never prevent someone from getting quality, affordable health care. I’m comm… https://t.co/m4CCZ49r1W" +06/30/2018,Social_workers,@kyrstensinema,RT @LocalFirstAZ: Do these look yummy? Swing by our #IndieWeekAZ Pub Crawl and score $5 drink specials and participate in a fun scavenger h… +06/30/2018,Social_workers,@kyrstensinema,"It’s been 5 years since the Yarnell Hill tragedy, the deadly wildfire that took the lives of 19 brave Granite Mount… https://t.co/JMFb6dhiPq" +06/30/2018,Social_workers,@kyrstensinema,"Proud to be endorsed by Flagstaff Mayor Coral Evans. We’re standing up for Arizonans all across the state, and I’m… https://t.co/yXhs2LkSgt" +06/30/2018,Social_workers,@kyrstensinema,#IndieWeekAZ starts tomorrow! We have so many great independent businesses in our state. Support your favorites thi… https://t.co/Ul2eQtAABZ +06/29/2018,Social_workers,@kyrstensinema,"Thanks for your support, @JoeBiden! #AZSen https://t.co/HD4yF9mBjY" +06/29/2018,Social_workers,@kyrstensinema,Proud to be endorsed by @chandlerchamber. Arizona businesses support local jobs and are pivotal to our state’s succ… https://t.co/jEQXLwcrfA +06/28/2018,Social_workers,@kyrstensinema,Proud to have Vice President @JoeBiden’s support! #AZSen https://t.co/wDCwDzu8ks +06/28/2018,Social_workers,@kyrstensinema,"In 2013, I stood with Vice President @JoeBiden as we worked across the aisle to reauthorize the Violence Against Wo… https://t.co/Yrv4f7JGne" +06/27/2018,Social_workers,@kyrstensinema,We are just a few days away from our biggest fundraising deadline yet. Will you help our campaign right now by pitc… https://t.co/JWppR4Vxfb +06/27/2018,Social_workers,@kyrstensinema,The administration’s tariffs are taking a toll on American jobs. I’m committed to making sure Arizona jobs stay exa… https://t.co/wCKgtukQkA +06/27/2018,Social_workers,@kyrstensinema,"@RaidersResort Hi @RaidersResort, for help with this issue, you can contact Congresswoman Sinema's District Office at 602-956-2285. - Staff" +06/25/2018,Social_workers,@kyrstensinema,I’m running for Senate to give every Arizonan a shot at the American Dream. With our campaign facing its most impor… https://t.co/ShBbeklBgW +06/25/2018,Social_workers,@kyrstensinema,“It’s really important that we have women like her in the Senate.” See why Krista is on #TeamSinema. #AZSen https://t.co/efiM2eh4fS +06/24/2018,Social_workers,@kyrstensinema,Take some time this weekend to make sure you’re registered to vote – then make sure your friends are too. #AZSen… https://t.co/v1NegP2sEy +06/24/2018,Social_workers,@kyrstensinema,"If the administration succeeds in removing protections for people with pre-existing conditions, Arizona families wi… https://t.co/xkPXoVTJlc" +06/23/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves quality, affordable health care. RT if you agree: Being a woman shouldn’t be considered a p… https://t.co/shV8ZKXX1w" +06/23/2018,Social_workers,@kyrstensinema,"#TitleIX became law 46 years ago, helping promote equal opportunities for women & girls in education. Grateful for… https://t.co/qCTbb5wpog" +06/23/2018,Social_workers,@kyrstensinema,The #GIBill helped millions of veterans get a college education and achieve the American Dream. A proud day in our… https://t.co/3pj8hAdk4u +06/22/2018,Social_workers,@kyrstensinema,NEWS: A dark money group is pouring money into Arizona’s Senate race to boost one of my opponents. Our campaign is… https://t.co/qI2mO0ozU4 +06/22/2018,Social_workers,@kyrstensinema,Opioid addiction is devastating Arizona communities. I’m working across the aisle to combat this crisis. This month… https://t.co/98McsR3NFZ +06/21/2018,Social_workers,@kyrstensinema,"Welcome to Phoenix, @DeandreAyton! https://t.co/8nJC6UMoXJ" +06/21/2018,Social_workers,@kyrstensinema,Election Day is coming. Have you registered to vote yet? Check your status and register here:… https://t.co/s1SSv8occi +06/21/2018,Social_workers,@kyrstensinema,We must do better for our seniors and our veterans. I’m working to improve VA care and make sure Arizona seniors ha… https://t.co/mVgnVlO2Tz +06/20/2018,Social_workers,@kyrstensinema,Too many Arizonans know the devastation that opioid addiction can cause. I'm taking action to alleviate the crisis.… https://t.co/Rr9zMchoYt +06/20/2018,Social_workers,@kyrstensinema,RT @agilbreath_az: Thank you @RepSinema for sharing your priorities with @AZChamber #AZDC2018 https://t.co/4wL3EpdsrD +06/20/2018,Social_workers,@kyrstensinema,"What the administration is doing to separate families is wrong. + +I'm ready to work with anyone who’s serious about… https://t.co/ucSUTRDNEp" +06/17/2018,Social_workers,@kyrstensinema,Happy Father's Day! #AZSen https://t.co/3ja4ezVZGf +06/16/2018,Social_workers,@kyrstensinema,"Meet David Lucier, an advocate for veterans and a proud member of #TeamSinema. https://t.co/PXm9h4KaqG" +06/16/2018,Social_workers,@kyrstensinema,See this list? 👇🏼 Chances are you or someone you love would be affected if pre-existing conditions were no longer p… https://t.co/4Cggtf9uvs +06/16/2018,Social_workers,@kyrstensinema,RT @Justice4Vets: Thank you @RepSinema for supporting the #Veterans Treatment Court Improvement Act to help us ensure we #LeaveNoVeteranBeh… +06/15/2018,Social_workers,@kyrstensinema,Proud to be a #SunDevil https://t.co/hu7mbYjGW0 +06/15/2018,Social_workers,@kyrstensinema,I’m committed to making sure Arizona seniors can retire with the dignity and security they deserve – that means hol… https://t.co/tIASY5vW0f +06/15/2018,Social_workers,@kyrstensinema,"""Since her years as a social worker in Arizona schools, Kyrsten has always been a voice for Arizona women & familie… https://t.co/AIb5XzCXje" +06/14/2018,Social_workers,@kyrstensinema,This is wrong. #FamiliesBelongTogether https://t.co/XxOqgdWOwW +06/14/2018,Social_workers,@kyrstensinema,Happy birthday to the @USArmy! Thank you for protecting our nation for 243 years! #ArmyBday https://t.co/TAKb5DMJ0C +06/14/2018,Social_workers,@kyrstensinema,"One year ago today, my friend @SteveScalise was shot during GOP baseball practice. Our hearts stopped that morning.… https://t.co/hoJgvZ6fdB" +06/13/2018,Social_workers,@kyrstensinema,"Nearly 2.8 million Arizonans have a pre-existing condition, and every single one of them deserves quality, affordab… https://t.co/kqwogMegUf" +06/13/2018,Social_workers,@kyrstensinema,“It’s really important that we have women like her in the Senate.” See why Krista is on #TeamSinema. #AZSen https://t.co/u5UXsfSWFr +06/13/2018,Social_workers,@kyrstensinema,"Happy 10th birthday, @SweetRepublic! What’s better than ice cream on a summer day in Arizona? Stop by their Scottsd… https://t.co/wBV2gU4MND" +06/13/2018,Social_workers,@kyrstensinema,We can’t go back to a time when Arizonans could be overcharged or denied coverage because of a pre-existing conditi… https://t.co/zZGpeCtncx +06/13/2018,Social_workers,@kyrstensinema,Yes!!!!!!!!! ⚽️🇺🇸⚽️🇺🇸⚽️🇺🇸⚽️🇺🇸 https://t.co/Bq2dwhra4Y +06/12/2018,Social_workers,@kyrstensinema,Want to help our campaign win big this year? Make sure you’re registered to vote! Visit https://t.co/bXjlXTW7eI… https://t.co/qgNlwYKyAz +06/12/2018,Social_workers,@kyrstensinema,“I support Kyrsten because she understands the issues that are important to the majority of Arizonans.” – Maria Ele… https://t.co/OxLhZoziLs +06/12/2018,Social_workers,@kyrstensinema,Arizonans work a lifetime to earn their Medicare and Social Security. The new tax law is putting those benefits at… https://t.co/IyFHDvqOdd +06/11/2018,Social_workers,@kyrstensinema,Are you following us on Instagram? Click here or find us at @KyrstenSinema: https://t.co/fxOkNZLGuM https://t.co/w65ZqBZIPz +06/11/2018,Social_workers,@kyrstensinema,"ICYMI: We filed more than 10,000 petition signatures to officially get on the ballot for #AZSen. I’m so thankful fo… https://t.co/tCkm8D7WrB" +06/10/2018,Social_workers,@kyrstensinema,"It’s pretty simple: equal work deserves equal pay. Today, on the anniversary of the #EqualPayAct, let’s recommit to… https://t.co/q0ZBcfdRxU" +06/10/2018,Social_workers,@kyrstensinema,Want to help our campaign win big this year? Make sure you’re registered to vote! Visit https://t.co/bXjlXTW7eI… https://t.co/EOqrPRcJQF +06/09/2018,Social_workers,@kyrstensinema,Those who have served our country deserve our respect and full support. The findings in this report are unacceptabl… https://t.co/jh7iECgrTn +06/09/2018,Social_workers,@kyrstensinema,I’m running for Senate to give every Arizonan a shot at the American Dream. Thanks to everyone on Team Sinema who j… https://t.co/Nb7ypOPe1o +06/08/2018,Social_workers,@kyrstensinema,"""We can always count on Kyrsten to fight for Arizona seniors.” – Vic Peterson, Advocate for Veterans and Seniors… https://t.co/J8NDwjceBA" +06/08/2018,Social_workers,@kyrstensinema,Happy birthday to Arizona's @GabbyGiffords! Thank you for your service and your friendship. Your incredible grit an… https://t.co/qDcbKD659N +06/07/2018,Social_workers,@kyrstensinema,Those who have risked everything for our country deserve to know the care and benefits they’ve earned will be prote… https://t.co/fcIlQLnYnl +06/06/2018,Social_workers,@kyrstensinema,Happy #GlobalRunningDay! 🏃🏼‍♀️ https://t.co/nI51dpw9Q7 +06/06/2018,Social_workers,@kyrstensinema,Today is the 74th anniversary of #DDay. We will never forget the sacrifices made on this day to defend our freedom. https://t.co/S9oHf2DsgG +06/06/2018,Social_workers,@kyrstensinema,RT @JeffFlake: .@SteveScalise back on the field this morning. This does my heart good. https://t.co/97uQImUgCl +06/05/2018,Social_workers,@kyrstensinema,"""Kyrsten knows that Dreamers are vital to communities across Arizona.” – Alvaro, Arizona Student, Dreamer #AZSen https://t.co/N3EQKDPrVB" +06/05/2018,Social_workers,@kyrstensinema,Proud to stand with the everyday Arizonans this campaign is all about. #AZSen https://t.co/X8nk7KskII +06/04/2018,Social_workers,@kyrstensinema,"“Kyrsten gets things done for veterans and will give Arizonans an independent voice in the Senate.” – David Lucier,… https://t.co/lr30qir1ML" +06/04/2018,Social_workers,@kyrstensinema,Had a great week hearing from everyday folks across the state and talking about our campaign to get things done for… https://t.co/JMJ6wVxO28 +06/03/2018,Social_workers,@kyrstensinema,#sundayinspiration https://t.co/Hngoqb8Zml +06/03/2018,Social_workers,@kyrstensinema,Enjoyed hearing from folks in Cochise County at our Meet and Greet. Ready to join #TeamSinema? Sign up here:… https://t.co/zXXRhuYoB9 +06/02/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for Arizona and make sure everyone gets his or her shot at the American d… https://t.co/ffCYAl9B4O +06/02/2018,Social_workers,@kyrstensinema,Great speaking with folks in Green Valley. We're building a statewide campaign to get things done for everyday Ariz… https://t.co/iVcCi1x3Pg +06/01/2018,Social_workers,@kyrstensinema,Thanks to everyone who stopped by our Meet and Greet in Pinal County! Enthusiasm is growing across the state for ou… https://t.co/vJR4CVQrug +06/01/2018,Social_workers,@kyrstensinema,"Arizona firefighters put their lives on the line, day in and day out, to protect families across our state. I'm pro… https://t.co/x8cqxFbEyH" +06/01/2018,Social_workers,@kyrstensinema,"Today marks 150 years since the Navajo Treaty of 1868 was signed. On this anniversary, we join the Navajo in “recog… https://t.co/2PKSgCh0Gl" +05/31/2018,Social_workers,@kyrstensinema,Taking care of our veterans is one of the most important obligations we have as Americans. I’ve worked across the a… https://t.co/2oesXEwI6D +05/29/2018,Social_workers,@kyrstensinema,I’m running for Senate to cut through the chaos in Washington and get things done for everyday people. Let’s go win… https://t.co/7yXdjgDFfG +05/29/2018,Social_workers,@kyrstensinema,“I am so proud of Kyrsten and thankful for her work to show every child what it looks like to be a leader and to gi… https://t.co/kLMtbWeCEq +05/29/2018,Social_workers,@kyrstensinema,"“For years now, I have watched Kyrsten support local shops, and I know that she will continue to support Arizona an… https://t.co/FCPNK1mhU7" +05/29/2018,Social_workers,@kyrstensinema,"“I’m honored to be with my sister, Kyrsten, as she gets her name on the ballot for the U.S. Senate. Kyrsten has spe… https://t.co/UHbvwArwqs" +05/29/2018,Social_workers,@kyrstensinema,"“We can always count on Kyrsten to fight for Arizona seniors. Kyrsten will defend Medicare and Social Security, whi… https://t.co/P4BrreNv7v" +05/29/2018,Social_workers,@kyrstensinema,"“Kyrsten is a tireless leader, and women and families across Arizona can count on her to get things done in the U.S… https://t.co/nQHrFFYQEw" +05/29/2018,Social_workers,@kyrstensinema,"""Kyrsten knows Dreamers are vital to communities across Arizona. I’m thankful for her leadership and her tireless c… https://t.co/ofzI52sdsv" +05/29/2018,Social_workers,@kyrstensinema,"“From her first job as a rape crisis counselor, to her work as a social worker in AZ schools, to her fight to incre… https://t.co/RDG2Zu6N1r" +05/29/2018,Social_workers,@kyrstensinema,"“Kyrsten never backs down from a fight, and I’m proud to stand alongside her in her campaign for Senate. Kyrsten ge… https://t.co/jbFn0i3N32" +05/29/2018,Social_workers,@kyrstensinema,I’m so proud to have been joined today by some of the people who have shaped my life and who continue to inspire me… https://t.co/lslopiXfJf +05/29/2018,Social_workers,@kyrstensinema,"I’m laser-focused on addressing the issues that matter to Arizona families, like providing veterans with the care t… https://t.co/37UV2oN3z7" +05/29/2018,Social_workers,@kyrstensinema,I launched this campaign to fight for our shared Arizona values. We believe that everyone deserves a shot at the American Dream. #AZSen +05/29/2018,Social_workers,@kyrstensinema,"Today was a big day! We filed more than 10,000 petition signatures to officially get on the #AZSen ballot. https://t.co/Dm9sH75qef" +05/28/2018,Social_workers,@kyrstensinema,The brave men and women who have served our country deserve our respect and full support. I’ve worked across the ai… https://t.co/FMWn53N55C +05/28/2018,Social_workers,@kyrstensinema,"Today on Memorial Day, we honor the memory of the brave men and women who gave their lives in service to our countr… https://t.co/vb1ssPVdl6" +05/28/2018,Social_workers,@kyrstensinema,I’m working to make sure no family has to go through what this Arizona family endured. This week our commonsense bi… https://t.co/DD4uTnbQAl +05/26/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for everyday Arizonans. Join our campaign: https://t.co/cXnhCdxepN #AZSen https://t.co/WoDqZhpBBm +05/25/2018,Social_workers,@kyrstensinema,Washington politicians should never get between a woman and her doctor. The administration's new policy will make i… https://t.co/MXKzn0N1br +05/25/2018,Social_workers,@kyrstensinema,It's our duty to ensure the brave men & women who served our country have the tools they need to successfully trans… https://t.co/c4Husr7i8L +05/24/2018,Social_workers,@kyrstensinema,RT @PatrickNkelley: The #FY19NDAA will be named after @SenJohnMcCain +05/24/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves quality, affordable health care. #AZSen https://t.co/UdMjzSIAi5" +05/24/2018,Social_workers,@kyrstensinema,RT @Just_Deet: @kyrstensinema was one of my college professors and I'm happy to see her running! Join me in supporting Kyrsten Sinema via @… +05/24/2018,Social_workers,@kyrstensinema,"Our health care system is broken. A new report says premium increases of more than $1,300 are expected for many Ari… https://t.co/lUMIBSW806" +05/23/2018,Social_workers,@kyrstensinema,Awesome! The Super Bowl is coming back to the best state in the Union! 🌵☀️ https://t.co/zMs7hq12Mz +05/22/2018,Social_workers,@kyrstensinema,"RT @MHedge_NAIFA: House passes S. 2155 containing Senior Safe Act. Great win for consumers, financial advisors, and @NAIFA Bill next heads…" +05/22/2018,Social_workers,@kyrstensinema,Arizonans know the impact Joe Arpaio has had on our state. Taxpayers are *still* paying for his tenure as sheriff.… https://t.co/A28XZr3uGI +05/22/2018,Social_workers,@kyrstensinema,"A woman, her family, and her doctor should decide what’s best for her health – not Washington politicians. The admi… https://t.co/LnAxgYwZvU" +05/21/2018,Social_workers,@kyrstensinema,"House leadership broke its promise to act on immigration, so I joined a bipartisan group of colleagues to go around… https://t.co/3l4c3ubCbp" +05/20/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/irk7ln18ip +05/20/2018,Social_workers,@kyrstensinema,"Every community in Arizona deserves the opportunities high-speed internet can unlock, yet right now nearly 900,000… https://t.co/rsB2flHJ3F" +05/20/2018,Social_workers,@kyrstensinema,I’m working to make sure our vets get high-quality health care when and where they need it. Our bill to reform the… https://t.co/80aicP5hGG +05/19/2018,Social_workers,@kyrstensinema,"Today on #ArmedForcesDay, we honor the brave men and women who have risked their lives in service to our country.… https://t.co/vuXcBYtXR9" +05/17/2018,Social_workers,@kyrstensinema,Standing up for our DREAMers isn't just the right thing to do – it's also crucial for our economy. We need to put p… https://t.co/cY3oCcXufo +05/16/2018,Social_workers,@kyrstensinema,"No child should go without a doctor, and no family should ever go bankrupt from medical bills. #AZSen https://t.co/3BeKtOhKsD" +05/16/2018,Social_workers,@kyrstensinema,"This is the fastest run of my life. Hard work pays off! + +#bettysquad #womenfortri #runfast #workhard #workharder https://t.co/GSdyUSF5Fv" +05/16/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead. That means making sure every Arizonan has access to quali… https://t.co/ZasiS3c1Uc +05/15/2018,Social_workers,@kyrstensinema,Arizona communities and the firefighters protecting them want the SuperTanker in the air this fire season. I’m work… https://t.co/xvw3QVxVQ4 +05/14/2018,Social_workers,@kyrstensinema,Arizona taxpayers are still paying to clean up the mess Joe Arpaio made as sheriff. We can’t afford to send him to… https://t.co/t7yecghG01 +05/13/2018,Social_workers,@kyrstensinema,Happy Mother's Day! https://t.co/Gg5QMKsGos +05/12/2018,Social_workers,@kyrstensinema,We need @GlobalSuperTank in the air this fire season to save lives and protect our communities from fire. I’m worki… https://t.co/bptBd1iNlo +05/12/2018,Social_workers,@kyrstensinema,I know what it’s like for a family to struggle to make ends meet. That’s why I’m running for Senate to help everyda… https://t.co/uk7W3iR0Wj +05/11/2018,Social_workers,@kyrstensinema,"No child should go without a doctor, and no family should ever go bankrupt from medical bills. #AZSen https://t.co/ELeJjI8g4H" +05/11/2018,Social_workers,@kyrstensinema,"Arizonans deserve results from Washington, not chaos. I’m running for Senate to get things done for everyday people… https://t.co/mtwqJTpFvR" +05/10/2018,Social_workers,@kyrstensinema,Arizonans know the impact Arpaio’s dangerous & divisive actions have had on our state. Taxpayers are *still* paying… https://t.co/76DYRfJwz7 +05/10/2018,Social_workers,@kyrstensinema,HERESY https://t.co/vRw1dyF3DP +05/09/2018,Social_workers,@kyrstensinema,The @GlobalSuperTank can cover more than 1.5 miles of forest in one trip and has nearly 4X the capacity of a tradit… https://t.co/v24UuUOsIo +05/09/2018,Social_workers,@kyrstensinema,A good tax law should provide relief for everyday families. Unfortunately the partisan law passed last year actuall… https://t.co/vm9zJbpSad +05/08/2018,Social_workers,@kyrstensinema,"On #TeacherAppreciationDay I remember Ms. Wherry, my first grade teacher at Harelson Elementary. Ms. Wherry was the… https://t.co/bKEZUEKyy5" +05/08/2018,Social_workers,@kyrstensinema,Great to meet so many enthusiastic supporters in Prescott last week! Thanks to @YavapaiDemocrat for having me. Toge… https://t.co/2YaDhypdbg +05/05/2018,Social_workers,@kyrstensinema,"All Americans who wear the uniform deserve our respect and full support, both on the battlefield and when they retu… https://t.co/tqG4KIE9zo" +05/05/2018,Social_workers,@kyrstensinema,Arizonans deserve results from Washington – not chaos. That’s why I’m running for Senate to get things done for eve… https://t.co/3JLgX8ATvv +05/05/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/bxRwIUiB2l +05/04/2018,Social_workers,@kyrstensinema,"I’m grateful to the Hopi council members and veterans who shared their stories with me this week. In the Senate, I’… https://t.co/AKGPHWbIW3" +05/04/2018,Social_workers,@kyrstensinema,"Here’s what I believe: Every Arizonan deserves access to quality, affordable health care. In the U.S. Senate, I’ll… https://t.co/SMHqkT9JiV" +05/04/2018,Social_workers,@kyrstensinema,"We have work to do to improve our health care system, but repealing everything without real solutions is dangerous… https://t.co/Yn1vqrL5zF" +05/04/2018,Social_workers,@kyrstensinema,"One year ago, House GOP leaders passed their health care repeal bill. This bill was bad for Arizona. +—About 400K Ar… https://t.co/ceLAQ4TDTh" +05/03/2018,Social_workers,@kyrstensinema,Arizonans deserve better than Joe Arpaio in the Senate. We’ve rejected his dangerous and divisive behavior before.… https://t.co/Q0pAdKi5qw +05/03/2018,Social_workers,@kyrstensinema,Just rec’d the best email a teacher could ever hope for - an excellent student saying thanks for the opportunity to… https://t.co/Z6V3rp5ayz +05/03/2018,Social_workers,@kyrstensinema,"@RafaelAnchia - the very best of Texas! Love you dearly, mi amigo ❤️ https://t.co/GKhQm00fFn" +05/02/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/OOb4B1fv9o +05/01/2018,Social_workers,@kyrstensinema,"For #SmallBusinessWeek, we're highlighting some of Arizona’s outstanding small businesses! + +Today's feature is Flag… https://t.co/cU35ef0JXD" +04/30/2018,Social_workers,@kyrstensinema,It's #SmallBusinessWeek! Arizona is home to some of the best #SmallBiz in the country. They're creating good-paying… https://t.co/pI6nM551Vx +04/28/2018,Social_workers,@kyrstensinema,Thanks Ryan! https://t.co/cXPxmEZWKR +04/27/2018,Social_workers,@kyrstensinema,"All Americans who wear the uniform deserve our respect and full support, both on the battlefield and when they retu… https://t.co/FblGFGXXzd" +04/27/2018,Social_workers,@kyrstensinema,RT @AlisaTongg: @kyrstensinema @hiral4congress I loved listening to your perspective and how your work as a social worker informs your appr… +04/27/2018,Social_workers,@kyrstensinema,RT @_maryellenk: @jonfavs @kyrstensinema as an MSW student it’s so inspiring to see fellow social workers serving in public office. Thanks… +04/27/2018,Social_workers,@kyrstensinema,Thanks for having me on the pod! Big things happening in AZ. @hiral4congress ran a great race. We’re keeping up the… https://t.co/r22Ue3VaIm +04/27/2018,Social_workers,@kyrstensinema,"RT @PodSaveAmerica: New Pod! Trump calls into his favorite program, Ronny Jackson withdraws, Mulvaney says the quiet part out loud, Kanye t…" +04/26/2018,Social_workers,@kyrstensinema,I know what it’s like for a family to struggle to make ends meet. That’s why I’m running to help everyday people ge… https://t.co/a3uHgcm8qk +04/26/2018,Social_workers,@kyrstensinema,"On to November, @hiral4congress! https://t.co/Kwc8dMhgmu" +04/25/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/oc1JLNOUYn +04/25/2018,Social_workers,@kyrstensinema,Thanks @djblp! https://t.co/lB2tjqOfN7 +04/25/2018,Social_workers,@kyrstensinema,"First cup of coffee since Saturday and holy goodness, it’s delicious. + +Stomach flu/virus monster, I finally beat y… https://t.co/FiXFmJP1Or" +04/25/2018,Social_workers,@kyrstensinema,Tonight’s #AZ08 results show that Arizonans are fed up with the chaos in Washington. November is coming. Pitch in n… https://t.co/sGlhnjE6I5 +04/25/2018,Social_workers,@kyrstensinema,My family faced tough times when I was a kid. I’ll never forget the great teachers and schools that helped me get m… https://t.co/WOLnmNdzb2 +04/24/2018,Social_workers,@kyrstensinema,"I’m running to make sure Washington works for everyday Arizonans, not against them. Join our campaign:… https://t.co/mUqsOQp0Pd" +04/23/2018,Social_workers,@kyrstensinema,"RT if you agree: Every Arizonan deserves access to quality, affordable health care. #AZSen https://t.co/UuqqURr1mp" +04/22/2018,Social_workers,@kyrstensinema,"On #EarthDay, we renew our commitment to being good stewards of the earth. I'm committed to protecting our parks an… https://t.co/Yu4djtEQiu" +04/22/2018,Social_workers,@kyrstensinema,Pat Tillman: the @ASU student behind the legacy. Watch this touching tribute to Pat. #salutetoservice #neverstop… https://t.co/4W0VpetyRC +04/22/2018,Social_workers,@kyrstensinema,"Pat Tillman's legacy of service, passion, and integrity inspires us all. He is an Arizona hero. 14 years after he d… https://t.co/LnoEaziUQb" +04/21/2018,Social_workers,@kyrstensinema,Another #PatsRun in the books for #TeamSinema! We had a great morning supporting @pattillmanfnd scholars. Thanks to… https://t.co/iHLOAGjKrA +04/21/2018,Social_workers,@kyrstensinema,#TeamSinema is up bright and early for #PatsRun! A great day to support @pattillmanfnd scholars. #NeverStop… https://t.co/psdd9eCytv +04/20/2018,Social_workers,@kyrstensinema,Admission is free tomorrow at all National Parks to kick off National Park Week! #FindYourPark… https://t.co/j39yDrri0i +04/19/2018,Social_workers,@kyrstensinema,"As Arizonans and Westerners, we treasure our public lands and the role they play in our special way of life. Gratef… https://t.co/20lAkeytBR" +04/19/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for everyday people. Join the campaign today: https://t.co/cXnhCdxepN… https://t.co/OWIIZiEXnL +04/19/2018,Social_workers,@kyrstensinema,I’ll always #StandWithPP and protect health care for women and families across Arizona. Proud to receive @PPact’s e… https://t.co/0wq2ULPetU +04/19/2018,Social_workers,@kyrstensinema,"Watching this video reminded me once again why I’m so proud to be a #SunDevil. Excellent students, top-notch educat… https://t.co/sI4gHRuWVp" +04/19/2018,Social_workers,@kyrstensinema,.@Interior’s plan to double entrance fees at the Grand Canyon was unacceptable. Arizonans spoke up and now there’s… https://t.co/tDEPlsdbkR +04/18/2018,Social_workers,@kyrstensinema,"I’m running for Senate to get things done for everyday people. + +Join the campaign today: https://t.co/BIjYp9WiXm… https://t.co/8RM9bf6Z5F" +04/17/2018,Social_workers,@kyrstensinema,Arizonans deserve results from Washington – not chaos. #AZSen https://t.co/oGXm32iie3 +04/17/2018,Social_workers,@kyrstensinema,Public service isn’t about showing fealty to party leaders. It’s about doing what’s best for your state and country… https://t.co/n2X5FGAFwb +04/16/2018,Social_workers,@kyrstensinema,So incredibly amazed by @des_linden winner of the #BostonMarathon today! First American woman to win the race since… https://t.co/bR3xn9nexq +04/16/2018,Social_workers,@kyrstensinema,It’s National Volunteer Week! This week we celebrate service and give thanks to all the amazing volunteers who make… https://t.co/HdkrgE0bsi +04/15/2018,Social_workers,@kyrstensinema,Last week was a big week for our campaign. Take a look at some of the highlights. https://t.co/A4BQxOLqaB #AZSen +04/13/2018,Social_workers,@kyrstensinema,"It was another big week for our campaign! We launched our first TV ad and heard from voters in Flagstaff, Tucson, a… https://t.co/uK7PIMqtWW" +04/13/2018,Social_workers,@kyrstensinema,No family should ever have to choose between taking a sick kid to the doctor or putting food on the table. #AZSen https://t.co/FwkimupDAT +04/12/2018,Social_workers,@kyrstensinema,“I bring people together because that’s how you get stuff done.” https://t.co/pUpaHXtHP1 #AZSen +04/11/2018,Social_workers,@kyrstensinema,"As Yom HaShoah begins, we remember the six million Jewish lives lost in the Holocaust. https://t.co/O3GQ3LUbXi https://t.co/vhYEi0WQ4a" +04/11/2018,Social_workers,@kyrstensinema,Happy #NationalPetDay from the pets of #TeamSinema! #AZSen https://t.co/ZMf4Zgw6D0 +04/10/2018,Social_workers,@kyrstensinema,"For many everyday families, the wage gap means hundreds of thousands in lost income over the course of a lifetime.… https://t.co/MXVQLQk677" +04/10/2018,Social_workers,@kyrstensinema,"Arizona women deserve equal pay for equal work. On #EqualPayDay, we recommit to working to make it a reality. #AZSen https://t.co/Maunu8EYnR" +04/10/2018,Social_workers,@kyrstensinema,Thanks @DemsofTucson for having me! Great speaking with you about our campaign for everyday Arizonans. #AZSen https://t.co/q40Qb0UwlE +04/09/2018,Social_workers,@kyrstensinema,"Four years after the #PhoenixVA scandal broke, there’s still more to do to hold the VA accountable. I’m working to… https://t.co/TQ5s8vvT7o" +04/09/2018,Social_workers,@kyrstensinema,"I've always been independent. But don't just take it from me – ask my big brother, Paul. + +We’re on the air with ou… https://t.co/IVutBppNsC" +04/09/2018,Social_workers,@kyrstensinema,"RT @jeremyduda: .@kyrstensinema drops her first ad of the #AZSEN race. Ad, which features her brother, a retired Marine & Tucson cop, touts…" +04/07/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves access to quality, affordable health care. #AZSen https://t.co/yZ9PyCaDk9" +04/07/2018,Social_workers,@kyrstensinema,Great discussion with the Flagstaff Women’s Leadership Network! These women know how to get stuff done. #AZSen https://t.co/A2a6h6Xmsl +04/06/2018,Social_workers,@kyrstensinema,"Everyday people know if they don’t do their jobs, they won’t get paid. But some members of Congress think they can… https://t.co/sHcK8JxOqn" +04/06/2018,Social_workers,@kyrstensinema,Headed to @PhoenixPrideAZ this weekend? Stop by the #TeamSinema booth to sign our ballot petition and join our camp… https://t.co/Ka3nwJSwtI +04/06/2018,Social_workers,@kyrstensinema,Good news for Valley neighborhoods: Most Phoenix Sky Harbor flight paths will return to their old routes. https://t.co/GV2N5Y6W8m #AZSen +04/05/2018,Social_workers,@kyrstensinema,Today is #GoldStarSpousesDay. Thank you to all the families of our fallen heroes for your service and sacrifice. https://t.co/XgqfMB08Sk +04/05/2018,Social_workers,@kyrstensinema,"Happy #NationalBurritoDay, or as we call it in #Arizona, Thursday. +Faves: +@americastaco - bean 🌯 + +@greendamon - h… https://t.co/gJeErWpVMH" +04/04/2018,Social_workers,@kyrstensinema,"It’s pretty simple: +—Hardworking Arizonans deserve a raise. +—Members of Congress do not. + +That’s why I passed a law… https://t.co/nWIEEM2EgE" +04/04/2018,Social_workers,@kyrstensinema,"When Arizona schools were at risk of losing millions in funding, I worked across the aisle to protect our kids’ edu… https://t.co/HxqAFc0bkr" +04/04/2018,Social_workers,@kyrstensinema,"""Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate; only love can do that.” + +5… https://t.co/EvRZBpLWja" +04/04/2018,Social_workers,@kyrstensinema,Arizonans earn their Medicare and Social Security benefits through a lifetime of hard work. I’ll always protect the… https://t.co/fMrI7v2Heo +04/03/2018,Social_workers,@kyrstensinema,It’s #AZGivesDay! Today we recognize Arizona nonprofits and the critical role they play in our communities. Find a… https://t.co/hLLn4p1sxu +04/02/2018,Social_workers,@kyrstensinema,"Joined Arizona colleagues from both sides of the aisle to: +—Stop Congress from getting a raise +—Give our military i… https://t.co/C6Ab5ZXIIm" +04/02/2018,Social_workers,@kyrstensinema,"When Arizona schools were at risk of losing $344 million, I worked across the aisle with @SenJohnMcCain to protect… https://t.co/QIcsiaOYkh" +04/01/2018,Social_workers,@kyrstensinema,Happy Easter! +04/01/2018,Social_workers,@kyrstensinema,"Arizona voters set aside billions for our kids’ education. When we learned those dollars were at risk, I worked acr… https://t.co/jg854vmBQx" +03/31/2018,Social_workers,@kyrstensinema,"I’m running for Senate to cut through the chaos in Washington and get things done for everyday Arizonans. + +Tonight… https://t.co/QbrO1Fcr4c" +03/31/2018,Social_workers,@kyrstensinema,RT @rollcall: Members of Congress from both sides of the aisle bond over “the hardest workout you’ll ever do.” https://t.co/pfenD7LV2Y +03/30/2018,Social_workers,@kyrstensinema,Keeping Arizona seniors safe in the era of data breaches is everyone’s responsibility. I’m working to make sure Con… https://t.co/mEjCdrzPMz +03/30/2018,Social_workers,@kyrstensinema,Happy Passover to all who are celebrating tonight. Chag Sameach! +03/30/2018,Social_workers,@kyrstensinema,"I owe a large debt to my country. I got my shot, and now it’s my duty to help others get theirs. + +Join our team:… https://t.co/TGTD23NO3M" +03/29/2018,Social_workers,@kyrstensinema,"All eyes are on Arizona this year. I’m in one of the toughest Senate races in the country, and we’re coming up on o… https://t.co/bnnyTbj2iT" +03/29/2018,Social_workers,@kyrstensinema,Good luck to the @Dbacks this season! #DbacksOpeningDay #GenerationDbacks #OpeningDay https://t.co/6FFgONxnXy +03/29/2018,Social_workers,@kyrstensinema,"Arizonans deserve results from Washington – not chaos. That’s why I’m running for Senate. #AZSen + +Join our campaign… https://t.co/mPUc7pGlze" +07/02/2018,Social_workers,@RepBarbaraLee,"Congratulations to Janet Nguyen, San Leandro High senior and the 13th District’s 2018 Congressional Art Competition… https://t.co/WCIMB9M6so" +07/02/2018,Social_workers,@RepBarbaraLee,This is the most serious threat to women’s reproductive health in generations. We will fight this in the halls of C… https://t.co/oZIMFsAHDT +07/01/2018,Social_workers,@RepBarbaraLee,Congrats to Josie Camacho on a well deserved retirement. Thank you for your invaluable service to the East Bay’s la… https://t.co/4rdALEtfSU +07/01/2018,Social_workers,@RepBarbaraLee,"Today, my staff attended the X2 Rise Up conference led by My Sister Arise Minsitries and Tinka from @106KMEL’s Worl… https://t.co/4nin1eoSyp" +06/30/2018,Social_workers,@RepBarbaraLee,Donald Trump has created a humanitarian crisis. Young children have been ripped from their parents. Families – asyl… https://t.co/UuQYjnOMC0 +06/30/2018,Social_workers,@RepBarbaraLee,We need comprehensive childhood education and family services to break the cycle and lift families #OutOfPoverty. C… https://t.co/4pwWQregJh +06/30/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: While visiting @wrtpbigstep on the Pathways #OutOfPoverty #ListeningTour, we joined students and staff to discuss how the pr…" +06/30/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Following the tour of @wrtpbigstep, @RepBarbaraLee, @RepGwenMoore, and I sat down with stakeholders to hear about the day-to…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @NextDoorMil: Special guests at Next Door today: @RepGwenMoore, @WhipHoyer & @RepBarbaraLee came as part of a nationwide anti-poverty to…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @RepGwenMoore: At Gee’s Clippers w/ my sister in the struggle @RepBarbaraLee. + +Gee’s is on the frontlines, providing job training, re-en…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: As part of our Pathways #OutOfPoverty #ListeningTour, we joined parents at Next Door Educare to discuss how housing early ch…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: I'm in Milwaukee, WI kicking off the next leg of the Pathways #OutOfPoverty #ListeningTour with @RepBarbaraLee & @RepGwenMoo…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @RepGwenMoore: Kicking off Milwaukee’s Pathways Out of Poverty Tour w/ @WhipHoyer & @RepBarbaraLee today @ Next Door MKE + +So proud to s…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @OfficialCBC: .@capgaznews reporters worked through their tears Thursday to get the next day's paper out, displaying the courage & commi…" +06/29/2018,Social_workers,@RepBarbaraLee,Joe Hawkins is Executive Director of @lgbtqoakland. He has been a fearless advocate for #LGBTQ rights in the… https://t.co/wlC24NGLWk +06/29/2018,Social_workers,@RepBarbaraLee,"Wishing the Association of Black +Psychologist an inspiring gathering this week in #Oakland as they celebrate 50 ye… https://t.co/zCYbuAJE5V" +06/28/2018,Social_workers,@RepBarbaraLee,RT @RepAnthonyBrown: I'm stricken with grief that there are several fatalities and injuries at one of our hometown newspapers. The injured… +06/28/2018,Social_workers,@RepBarbaraLee,RT @HRC: Today’s anniversary of the #Stonewall riots is a reminder that we must center the most vulnerable in our communities and resist th… +06/28/2018,Social_workers,@RepBarbaraLee,"RT @ProChoiceCaucus: Make no mistake: @POTUS, @VP & @SenateMajLdr will use Justice #AnthonyKennedy's retirement to further erode our most c…" +06/27/2018,Social_workers,@RepBarbaraLee,Today is #HIVTestingDay. Spread the word and help us defeat AIDS for good by getting tested. Find out your status h… https://t.co/8FMRUgyw7z +06/27/2018,Social_workers,@RepBarbaraLee,"Justice Kennedy’s retirement puts our fundamental rights – to reproductive health care, to marry, to equality under… https://t.co/3LdOct5Bi1" +06/27/2018,Social_workers,@RepBarbaraLee,This ceasefire agreement in South Sudan is an important step towards peace. The US needs to maintain our commitment… https://t.co/X5iNIW32Sm +06/27/2018,Social_workers,@RepBarbaraLee,Can’t imagine a more fitting end to #ImmigrantHeritageMonth than the resounding rejection of @HouseGOP’s bigoted im… https://t.co/dio9J1RaQ6 +06/27/2018,Social_workers,@RepBarbaraLee,The courts are saying – loud and clear – that #FamiliesBelongTogether. I couldn’t agree more – zero tolerance is un… https://t.co/P50DQHVPcN +06/27/2018,Social_workers,@RepBarbaraLee,The #Janus decision is disgraceful. SCOTUS has weakened workers’ rights and further rigged the system for greedy sp… https://t.co/ZNG87ASaQt +06/26/2018,Social_workers,@RepBarbaraLee,We’ve made incredible progress towards equality thanks to brave Americans like Edie Windsor and Jim Obergefell. But… https://t.co/YEFMZ3trsx +06/26/2018,Social_workers,@RepBarbaraLee,"RT @nbcbayarea: ""Denying women this critical information is unethical and will put lives in danger."" says @RepBarbaraLee and other pro-choi…" +06/26/2018,Social_workers,@RepBarbaraLee,RT @ProChoiceCaucus: Doctors have an ethical obligation to provide accurate information to their patients. #NIFLAvBecerra will undermine th… +06/26/2018,Social_workers,@RepBarbaraLee,History does not reflect kindly on Supreme Courts that endorse bigotry. Korematsu and Dred Scott are some of the wo… https://t.co/7qP1t7jRph +06/26/2018,Social_workers,@RepBarbaraLee,"RT @americansunited: “Real lives will be upended. Families will be torn apart.” Today’s #SCOTUS decision “endorses bigotry,” says @RepBarba…" +06/26/2018,Social_workers,@RepBarbaraLee,"RT @ABCPolitics: Democratic Rep. Barbara Lee on the Supreme Court's decision to uphold the travel ban: ""Make no mistake, the Supreme Court…" +06/26/2018,Social_workers,@RepBarbaraLee,The shameful #NIFLAvBecerra decision allows crisis pregnancy centers to deceive women. These centers are not health… https://t.co/wxRxjsRVWx +06/26/2018,Social_workers,@RepBarbaraLee,"RT @RepSpeier: .⁦@RepBarbaraLee -⁩ We saw children sleeping on cold concrete floors, when we asked why we were told they didn’t have the re…" +06/26/2018,Social_workers,@RepBarbaraLee,Richard Fuentes & Sean Sullivan are extraordinary leaders in #Oakland’s LGBTQ community! They opened… https://t.co/p6UIOyQeSK +06/25/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: JUST IN: @HouseGOP has cancelled this markup to prevent Democrats from offering amendments that would protect migrant chil… +06/25/2018,Social_workers,@RepBarbaraLee,"It’s been 5 years since #SCOTUS unraveled the Voting Rights Act, paving the way for state legislatures to suppress… https://t.co/zWigN8S7XB" +06/25/2018,Social_workers,@RepBarbaraLee,"This weekend, I spoke to mothers who had no idea where their children are. I met parents who couldn’t afford a phon… https://t.co/ShvAadu234" +06/25/2018,Social_workers,@RepBarbaraLee,"President Trump needs to stop treating our democracy – our civil liberties – as an inconvenience. + +Due process is… https://t.co/UuK1C8lgbw" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @jaketapper: On #CNNSOTU @RepBarbaraLee describes her ""heart-wrenching"" border visit +https://t.co/Uyv6Xemyqv" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @SenRonJohnson, @SenSanders, @DavidJUrban, @RepBarbaraLee, @carlosgutierrez, @…" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @KQED: ""I’ve seen it with my eyes, and I’m telling you, I am furious, I am heartbroken, and we’ve got to get this administration to stop…" +06/23/2018,Social_workers,@RepBarbaraLee,People fleeing violence and seeking refuge in the United States are being treated like criminals. Parents don’t kno… https://t.co/59f8RzXvlm +06/23/2018,Social_workers,@RepBarbaraLee,Looking forward to joining @JakeTapper tomorrow to report back on the conditions at detention centers in Texas. We… https://t.co/ntffdcXGyB +06/23/2018,Social_workers,@RepBarbaraLee,RT @RepSpeier: Congressional Delegation reporting to the press what we saw in the facilities. Haunting scenes of asylum seekers including s… +06/22/2018,Social_workers,@RepBarbaraLee,"Millions of Americans lack health care, housing or regular meals. This poverty crisis is worsening under President… https://t.co/ZYSY5apBre" +06/22/2018,Social_workers,@RepBarbaraLee,RT @WhipHoyer: .@realDonaldTrump’s plan to merge the Depts of Ed & Labor is a thinly veiled attempt to cut essential programs – including w… +06/21/2018,Social_workers,@RepBarbaraLee,"""While these findings might seem unsurprising, the researchers contended that their study was a significant attempt… https://t.co/sPVo9ZowR7" +06/21/2018,Social_workers,@RepBarbaraLee,Happy #NationalSelfieDay! https://t.co/FsYCrTruAc +06/21/2018,Social_workers,@RepBarbaraLee,This is wonderful. Michelle’s voice is sorely needed in our national dialogue. https://t.co/inKcrqsza6 +06/21/2018,Social_workers,@RepBarbaraLee,"This proposal is the first step – then they cut student loan funding, civil rights enforcement budgets, and job tra… https://t.co/5Wng5E06qw" +06/21/2018,Social_workers,@RepBarbaraLee,.@HouseGOP just passed a bill that will strip nutrition assistance from millions and take school lunches away from… https://t.co/A6RCcE8etY +06/21/2018,Social_workers,@RepBarbaraLee,.@HouseGOP's immigration agenda would do nothing to help families detained at our border. They've proposed to crack… https://t.co/UurRYNS9mu +06/21/2018,Social_workers,@RepBarbaraLee,".@HouseGOP is currently marking up their #BetterForBillionaires budget, which would cut Social Security, Medicare &… https://t.co/VXbJLHmKgj" +06/21/2018,Social_workers,@RepBarbaraLee,"#WhereAreTheGirls? They came to the United States fleeing horrific circumstances. Now, they’ve been separated from… https://t.co/dBbCTnDzyK" +06/21/2018,Social_workers,@RepBarbaraLee,"RT @Rewire_News: “Under the guise of reorganizing health care programs, the Trump Administration wants to make it easier to slash the basic…" +06/21/2018,Social_workers,@RepBarbaraLee,I’ve asked the @UN to send observers to investigate President Trump’s zero tolerance policy. These practices are a… https://t.co/sq1jLPKhQB +06/20/2018,Social_workers,@RepBarbaraLee,RT @KPIXtv: .@RepBarbaraLee writes to UN calling on humanitarian observers to investigate family separations at the border: https://t.co/uY… +06/20/2018,Social_workers,@RepBarbaraLee,"This Executive Order is a sham. By not ending zero tolerance, President Trump is keeping families in jail. Children… https://t.co/ZkFvbd01vd" +06/20/2018,Social_workers,@RepBarbaraLee,Refugees & asylum seekers should be welcomed to the US. But President Trump’s callous policies are denying safe har… https://t.co/dqNKmVj4ih +06/20/2018,Social_workers,@RepBarbaraLee,RT @HouseBudgetDems: Republican efforts to sabotage the #ACA continue to leave more Americans uninsured and premiums soaring. Now the GOP’s… +06/20/2018,Social_workers,@RepBarbaraLee,"RT @HispanicCaucus: This EO jails kids with their parents, perhaps indefinitely. + +Instead of ending the heinous policy of separating famil…" +06/20/2018,Social_workers,@RepBarbaraLee,Nowhere are the consequences of the #GOPTaxScam more clear than in their proposed budget. After lavishing billionai… https://t.co/REsaS0smcL +06/20/2018,Social_workers,@RepBarbaraLee,This is important. @AppropsDems just passed an amendment that would force the Trump Admin to allow members of Congr… https://t.co/GwVG1ltrCx +06/20/2018,Social_workers,@RepBarbaraLee,"RT @AppropsDems: .@RepBarbaraLee offers an amendment to provide funding for international family planning through @UNFPA, striking Republic…" +06/20/2018,Social_workers,@RepBarbaraLee,8 million people in Yemen are on the brink of starvation. But @HouseGOP can’t even muster the courage to ASK… https://t.co/j5gicL9MP0 +06/20/2018,Social_workers,@RepBarbaraLee,The Trump admin is committing human rights abuses in our own country. I sent a letter asking the UN to send observe… https://t.co/JdZHlaz51L +06/20/2018,Social_workers,@RepBarbaraLee,I’ve noticed this too. People across the country are *rightly* outraged by the inhumanity on display from the Trump… https://t.co/ZfI7CUyg9n +06/20/2018,Social_workers,@RepBarbaraLee,RT @RepGutierrez: Republicans shut down the floor early and cut it off rather than let us speak about Trump’s policy of taking children fro… +06/20/2018,Social_workers,@RepBarbaraLee,RT @rolandsmartin: Watch @ABC's broadcast: House Democrats hold news conference on family separation. https://t.co/nqDCQX61NB +06/20/2018,Social_workers,@RepBarbaraLee,"RT @RepGutierrez: At 9:00 am, I will join a group of House Dems speaking on the Floor about the children being separated from their familie…" +06/20/2018,Social_workers,@RepBarbaraLee,Wonderful to see Bono tonight. His humanitarian work & tireless efforts in the fight against HIV/AIDS have helped u… https://t.co/nGZqjKfbcj +06/19/2018,Social_workers,@RepBarbaraLee,"Leaving the UN Human Rights Council is a bad move. + +The United States should be advancing human rights. Instead, t… https://t.co/maa2HDXTJ1" +06/19/2018,Social_workers,@RepBarbaraLee,The Trump administration’s attacks on women’s health around the world are unprecedented. We can’t let their efforts… https://t.co/Wuek0hVty6 +06/19/2018,Social_workers,@RepBarbaraLee,"RT @NitaLowey: .@RepBarbaraLee, @RepTimRyan, @RepKClark & I have fought against many efforts to restrict women’s health care access. But we…" +06/19/2018,Social_workers,@RepBarbaraLee,"153 years ago today, the news of emancipation reached enslaved African Americans in Galveston, TX. #Juneteenth is a… https://t.co/QKetVw8Lxs" +06/19/2018,Social_workers,@RepBarbaraLee,"RT @ASH_hematology: It's #WorldSickleCellDay, learn the facts about the disease, and RT to spread the word https://t.co/XexCTcNw2I #Conquer…" +06/19/2018,Social_workers,@RepBarbaraLee,"RT @NMAAHC: “The historical legacy of #Juneteenth shows the value of deep hope and urgent organizing in uncertain times.” + +More: https://t…" +06/19/2018,Social_workers,@RepBarbaraLee,"Under Secretary Nielsen, the DHS has committed horrific human rights violations, subjected innocent children to the… https://t.co/54dYyZZ7X5" +06/18/2018,Social_workers,@RepBarbaraLee,"RT @SenKamalaHarris: It's time for Secretary Nielsen to resign. The government should be in the business of keeping families together, not…" +06/18/2018,Social_workers,@RepBarbaraLee,"We should have United Nations observers at the border investigating these horrific family separation policies. + +The… https://t.co/IFPyBYa2zh" +06/18/2018,Social_workers,@RepBarbaraLee,"As we mark #PEPFAR15, I shared the story of how Congress has worked together in the past to fight against HIV and A… https://t.co/SE2UbmZ6JN" +06/18/2018,Social_workers,@RepBarbaraLee,"RT @PEPFAR: #AmbBirx at #USGLCSummit: 15 years ago, “we were on the verge of losing an entire generation & having much of the next grow up…" +06/18/2018,Social_workers,@RepBarbaraLee,I’m at the #USGLCsummit discussing my work on #PEPFAR and our global fight to end HIV and AIDS. Tune in now to watc… https://t.co/voDkQJi1EL +06/18/2018,Social_workers,@RepBarbaraLee,The UN Human Rights Council is rightly condemning the Trump Administration for “government-sanctioned child abuse.”… https://t.co/qXhPePXQe3 +06/17/2018,Social_workers,@RepBarbaraLee,Check out these amazing works of art on the streets of Oakland! The #EastBay is lucky to be home to so many artists… https://t.co/aH5iXFVjYA +06/17/2018,Social_workers,@RepBarbaraLee,"It’s been 3 years since our brothers & sisters lost their pastor & loved ones at Mother Emanuel AME Church. + +Let’s… https://t.co/q6KX673BYY" +06/17/2018,Social_workers,@RepBarbaraLee,"RT @RepMaloney: We are at the ICE Detention Center in Elizabeth, NJ. where ICE is denying us entry to meet with fathers separated from thei…" +06/17/2018,Social_workers,@RepBarbaraLee,"Next weekend, I will be headed to South Texas with my colleagues to witness the treatment of children & families on… https://t.co/pLgJfqxuVh" +06/17/2018,Social_workers,@RepBarbaraLee,"#FathersDay is a day for families to come together. But right now, thousands of fathers being separated from their… https://t.co/HzRdHAPNtn" +06/17/2018,Social_workers,@RepBarbaraLee,"He was a kind, steadfast man, and a loving father to my sisters and me. + +Dad, I miss you. Happy #FathersDay." +06/17/2018,Social_workers,@RepBarbaraLee,"My father, the late Garvin Tutt, served as a Lieutenant Colonel in WWII & the Korean War, a time when many officers… https://t.co/z3JqdZk1qx" +06/17/2018,Social_workers,@RepBarbaraLee,Honored to celebrate St. Columba’s 120 years of faithful leadership in our East Bay community and to accept the St.… https://t.co/dfErSAfT4X +06/16/2018,Social_workers,@RepBarbaraLee,"In celebration of #CaribbeanHeritageMonth, my staff honored two extraordinary Caribbean leaders. Thank you for your… https://t.co/5Z88j9YC0B" +06/16/2018,Social_workers,@RepBarbaraLee,Honored by this amazing work from #Oakland fabric artist Alice Beasley. Her beautiful display of artistry that spea… https://t.co/a3Bdd8r6Mw +06/15/2018,Social_workers,@RepBarbaraLee,There is a difference between engaging in diplomacy and lavishing praise on dictators. https://t.co/8F5cdnFQam +06/15/2018,Social_workers,@RepBarbaraLee,Wishing a peaceful and joyous last evening of #Ramadan to all my Muslim brothers and sisters celebrating in the Eas… https://t.co/A83ORlKJDC +06/14/2018,Social_workers,@RepBarbaraLee,“This is the first formal effort from the U.S. Capitol to try & bring parity to those communities disproportionatel… https://t.co/2Hm4u4ZsEd +06/14/2018,Social_workers,@RepBarbaraLee,“It’s impossible to look at the Trump administration’s practice of migrant family separation and see it as anything… https://t.co/XcA2QbEous +06/14/2018,Social_workers,@RepBarbaraLee,"The scale of human suffering in Yemen is unimaginable. + +@SecPompeo --- pick up the phone. Help us stop the assaul… https://t.co/xzBCtRUqi0" +06/14/2018,Social_workers,@RepBarbaraLee,"As #WorldCup2018 kicks off, we’re celebrating in #Oakland at #OaklandTechnicalHighSchool. #youthsoccer #oakland… https://t.co/lQ7J5UIYIb" +06/14/2018,Social_workers,@RepBarbaraLee,RT @RepDianaDeGette: I support @RepBarbaraLee’s RESPECT resolution because it will help right a long-standing wrong. The war on drugs has d… +06/14/2018,Social_workers,@RepBarbaraLee,"I have a new bill! My RESPECT Resolution creates a framework for #CannabisEquity. + +Communities of color have borne… https://t.co/Y9prllg3gU" +06/14/2018,Social_workers,@RepBarbaraLee,"RT @MattLaslo: EXCLUSIVE: The Pot Industry Is Overwhelmingly White, and One Congresswoman Wants to Change That - mine for @RollingStone on…" +06/14/2018,Social_workers,@RepBarbaraLee,"RT @WHO: A decision to donate your blood can save a life, or even many. + +Your blood can be separated into its components — red cells, plate…" +06/14/2018,Social_workers,@RepBarbaraLee,Dorothy was my friend - we marched in the Selma pilgrimage together & she visited my East Bay community to discuss… https://t.co/a3TUtBs2ze +06/14/2018,Social_workers,@RepBarbaraLee,"I am saddened by the loss of our beloved Dorothy Cotton, who was a civil rights icon and a valued adviser to Dr. Ki… https://t.co/SfQ7DxV7CW" +06/14/2018,Social_workers,@RepBarbaraLee,"Climate change is real. And it is an existential threat to the inhabitants of our planet. + +The resounding silence… https://t.co/8nhOtLqCDA" +06/14/2018,Social_workers,@RepBarbaraLee,The vast majority of Americans support a pathway to citizenship for Dreamers. But instead of helping young people w… https://t.co/5xNabE4Yyw +06/13/2018,Social_workers,@RepBarbaraLee,"Earlier this year, I asked @BetsyDeVosED what she would do to address the civil rights crisis in our schools. She h… https://t.co/nJn4Wfvr8z" +06/13/2018,Social_workers,@RepBarbaraLee,Working moms and dads often cannot afford care for their children during the long summer months. I’m proud to suppo… https://t.co/l8QnS6X8RF +06/13/2018,Social_workers,@RepBarbaraLee,"My Republican colleagues on the House Appropriations committee blocked my amendment, which they helped pass & appla… https://t.co/ZGcEwEknXG" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepBarbaraLee supports @NitaLowey’s amendment. Explains that women buying insurance shouldn’t have their reproductive he… +06/13/2018,Social_workers,@RepBarbaraLee,"After 17 years, it’s past time to do our constitutional duty by debating and voting on the costs and consequences o… https://t.co/KDfnBQ2vP4" +06/13/2018,Social_workers,@RepBarbaraLee,I’m incredibly disappointed that Approps Republicans rejected my amendment to sunset the 2001 AUMF --- the same exa… https://t.co/MwFXZRa80I +06/13/2018,Social_workers,@RepBarbaraLee,"RT @AppropsDems: The Committee rejected, on a party-line 22-30 vote, @RepBarbaraLee’s amendment to sunset the 2001 AUMF. All @AppropsDems v…" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: @repmarkpocan @RepBarbaraLee .@RepCartwright supports @RepBarbaraLee's amendment. Describes the strong level of bipartisan… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@repmarkpocan urges support for @RepBarbaraLee’s amendment. Notes that it is Congress’ job to hold important debates and… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@rosadelauro supports @RepBarbaraLee’s amendment. Explains that the 2001 AUMF is overly broad and has become a blank chec… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepKClark supports @RepBarbaraLee’s amendment. Notes that the 2001 AUMF has now been in force under three Presidents wit… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@Call_Me_Dutch supports @RepBarbaraLee’s amendment. Cites the importance of providing our service members with clarity of… +06/13/2018,Social_workers,@RepBarbaraLee,"RT @BettyMcCollum04: I support @RepBarbaraLee’s amend to sunset the 2001 AUMF. 17 years later, Congress hasn't had a debate on how 3 admins…" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepVisclosky supports @RepBarbaraLee’s amendment to sunset the 2001 AUMF eight months after enactment of the Defense app… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepBarbaraLee offers an amendment to sunset the 2001 Authorization for the Use of Military Force and ensure Congress has… +06/13/2018,Social_workers,@RepBarbaraLee,"RT @repmarkpocan: The Saudi and Emirati assault on Yemen's major port, with US logistical aid, could threaten 250,000 lives and force milli…" +06/12/2018,Social_workers,@RepBarbaraLee,70% of Yemen’s emergency aid comes through this port. Countless innocents could die if the Saudi coalition launches… https://t.co/KrUjw99uME +06/12/2018,Social_workers,@RepBarbaraLee,"RT @NancyPelosi: .@Warriors & @SteveKerr, you have once again dazzled America with outstanding performance on the court & inspired leadersh…" +06/12/2018,Social_workers,@RepBarbaraLee,"“PEPFAR is one of the most-successful, effective and world-changing initiatives ever put forth by the United States… https://t.co/eespprHXNF" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @UniteThePoor: ""I'm from Flint, MI. 4 years later we're still suffering. We have the highest water bills in the country. We're poor not…" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @NAACP: The justices unanimously agreed. On June 12, 1967, proscriptions against interracial marriage were declared unconstitutional. #L…" +06/12/2018,Social_workers,@RepBarbaraLee,Such a beautiful day in #Oakland at the #WarriorsParade as we celebrate our #NBAChampions! Hats off to the… https://t.co/aeI8Yb9iBp +06/12/2018,Social_workers,@RepBarbaraLee,"On the House Floor to celebrate the 2018 NBA Champions – our very own Golden State @Warriors, pride of the #EastBay… https://t.co/7rt8EZ2Qez" +06/12/2018,Social_workers,@RepBarbaraLee,"Deporting 300,000 #TPS recipients would be unthinkably cruel. These families made the U.S. their home after fleeing… https://t.co/olOlzer7cG" +06/12/2018,Social_workers,@RepBarbaraLee,I know the #EastBay is ready to celebrate our back-to-back NBA Champions! #WarriorsGround https://t.co/qbOotdYthf +06/12/2018,Social_workers,@RepBarbaraLee,"Diplomacy takes time. We have an opportunity for peace -- but it will require more than just a photo-op. + +The hard… https://t.co/cRZvfn0R7O" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @RepValDemings: Two years after #Pulse, I know that love will win. We will transform our sorrow into love and progress. We will grieve,…" +06/11/2018,Social_workers,@RepBarbaraLee,"Yemen is on the brink of famine. More than 75% of the population is reliant on food aid to survive. + +An attack on… https://t.co/fIm5ZbmT7E" +06/11/2018,Social_workers,@RepBarbaraLee,Today’s #SCOTUS decision validating voter purges disenfranchises voters and undermines the foundation of our democr… https://t.co/FQ3jkvw0zI +06/11/2018,Social_workers,@RepBarbaraLee,"As a human being – and a public servant – I am disgusted by the Trump Administration’s callousness. + +These women… https://t.co/3YTiyWtkfL" +06/11/2018,Social_workers,@RepBarbaraLee,"**#DACA RECIPIENTS** + +It’s not too late to renew your status – apply TODAY with @USCIS ➡️https://t.co/AWMw3dY3Dy https://t.co/UxjQkKxvi3" +06/11/2018,Social_workers,@RepBarbaraLee,Congratulations to Berkeley native @ArielStachel on a well-deserved Tony win! Your speech gave me so much hope. You… https://t.co/faeYV2DtOq +06/11/2018,Social_workers,@RepBarbaraLee,"The will of the American people is clear – we want a free, fair, and open internet. #NetNeutrality ends today – but… https://t.co/BxKAovluL1" +06/10/2018,Social_workers,@RepBarbaraLee,How can we hope to make peace with our enemies when we can’t even work with our friends? https://t.co/fXVNT0n6vi +06/09/2018,Social_workers,@RepBarbaraLee,"If you are in pain, know that help is available. Call 1-800-273-TALK. And if you know someone who is struggling, pl… https://t.co/CnQ8kK8QSd" +06/09/2018,Social_workers,@RepBarbaraLee,"At his core, Anthony was a storyteller, an educator, and a free spirit who brought the world into our homes. My dee… https://t.co/OBNefuKeKn" +06/09/2018,Social_workers,@RepBarbaraLee,"I’m heartbroken over the passing of Anthony Bourdain. Through his love of food, Anthony showed us all what it means… https://t.co/UXBWvQztuN" +06/09/2018,Social_workers,@RepBarbaraLee,Congrats on another extraordinary season @warriors! You make us proud! https://t.co/8xE6JLvj1J +06/09/2018,Social_workers,@RepBarbaraLee,I’m showing my #DubNation pride today! Fingers crossed for a sweep! 🤞🏾🤞🏾#NBAFinals https://t.co/O7eiEd2orc +06/08/2018,Social_workers,@RepBarbaraLee,"Republicans are going to court to try to make healthcare worse and more expensive for American families. + +American… https://t.co/hwXDwqsvxJ" +06/08/2018,Social_workers,@RepBarbaraLee,RT @NatGeo: Happy #WorldOceansDay! https://t.co/ZIlDdE8Un9 +06/08/2018,Social_workers,@RepBarbaraLee,There is no such thing as a small nuclear weapon. I’m incredibly disappointed that Congress rejected my amendment s… https://t.co/Td3vd3IOeS +06/08/2018,Social_workers,@RepBarbaraLee,Watch the debate on my amendment to stop Donald Trump from arming US submarines with a low yield nuclear weapons. C… https://t.co/nRv5pOMPre +06/07/2018,Social_workers,@RepBarbaraLee,Organized employees can make a powerful impact on companies and the world. Kudos to @Google staffers for demanding… https://t.co/EV2wuSuYAJ +06/07/2018,Social_workers,@RepBarbaraLee,"I can confirm that Mazie is extremely fierce. I’m proud to be her colleague, but even more honored to call her a fr… https://t.co/D5Lksnz9gA" +06/07/2018,Social_workers,@RepBarbaraLee,"55 years after the #EqualPayAct, women -- especially women of color -- still endure sexism, harassment and unequal… https://t.co/PpsyaQ4iK9" +06/07/2018,Social_workers,@RepBarbaraLee,"President Trump has violated the emoluments clause with impunity. That stops today. + +I’m suing Donald Trump in Blu… https://t.co/i1Vq9os8t9" +06/07/2018,Social_workers,@RepBarbaraLee,"RT @gracenapolitano: 53 years ago, #GriswoldvCT guaranteed women the freedom to make their own choices about their career, their family, an…" +06/07/2018,Social_workers,@RepBarbaraLee,#GriswoldvCT legalized birth control and opened the door for women. We can’t and won’t let extremists in the Trump-… https://t.co/G1qSW4BrGG +06/07/2018,Social_workers,@RepBarbaraLee,"RT @HouseDemWomen: Estelle Griswold helped pave the way more than 50 years ago, fighting against unconstitutional bans on #birthcontrol and…" +06/07/2018,Social_workers,@RepBarbaraLee,"RT @ProChoiceCaucus: On the 53rd anniversary of #GriswoldvCT, access to #birthcontrol is under attack. We will continue to fight for compre…" +06/07/2018,Social_workers,@RepBarbaraLee,It’s time to finally end the failed #WarOnDrugs. Proud to stand with @SenWarren & @SenCoryGardner in support of the… https://t.co/f2sUzIhgNP +06/07/2018,Social_workers,@RepBarbaraLee,RT @GKButterfield: I applaud @Google’s employees for pushing for accountability from Alphabet’s leadership to make a stronger commitment to… +06/07/2018,Social_workers,@RepBarbaraLee,It’s game time #DubNation! Let’s cheer our warriors to victory - lock in! #NBAFinals https://t.co/FP9dQjngCz +06/06/2018,Social_workers,@RepBarbaraLee,Congrats to @CALWRowing who recently took first place in the @NCAA Division 1 rowing finals! So impressed by these… https://t.co/q8VkM9kgEH +06/06/2018,Social_workers,@RepBarbaraLee,The ugly xenophobia and nativism espoused by this White House does not represent America. This… https://t.co/8BUDcktoRY +06/06/2018,Social_workers,@RepBarbaraLee,"SERIOUSLY? + +You passed a trillion dollar tax scam to benefit rich donors and asked working families to foot the bi… https://t.co/fcNSi7MROa" +06/06/2018,Social_workers,@RepBarbaraLee,RT @RepJoeKennedy: Deeply grateful for all the memories of my grandfather being shared today. Thank you. https://t.co/NPjMnKwnqu +06/06/2018,Social_workers,@RepBarbaraLee,"50 years ago today, we lost Robert F. Kennedy but his vision for a better America lives on. We carry his spirit in… https://t.co/WpVCMAYQCF" +06/05/2018,Social_workers,@RepBarbaraLee,We should never have come to this. These family separation policies are barbaric and inhumane. Shame on the Trump A… https://t.co/ctaXmeqojx +06/05/2018,Social_workers,@RepBarbaraLee,"This #WorldEnvironmentDay, I’m so proud of organizations in the East Bay like the @SierraClub and @TheOceanCleanup.… https://t.co/KPrHgOTMfL" +06/05/2018,Social_workers,@RepBarbaraLee,"RT @GlobalGoalsUN: We all need to do our part to #BeatPlasticPollution to protect our forests, ocean & the places where we live. 🌲🌊🏙️ + +Join…" +06/04/2018,Social_workers,@RepBarbaraLee,RT @RepJerryNadler: Every woman—regardless of immigration status—has the right to make her own decisions about her body + her life. Todays… +06/04/2018,Social_workers,@RepBarbaraLee,RT @ProChoiceCaucus: A setback for #reprorights: #SCOTUS passes on opportunity to rule on whether the Trump administration can prevent undo… +06/04/2018,Social_workers,@RepBarbaraLee,SCOTUS today missed an opportunity to reaffirm fundamental civil right protections for #LGBT people. The only way… https://t.co/puhPbss6rt +06/04/2018,Social_workers,@RepBarbaraLee,What an honor it is to serve as the Wright Institute’s commencement speaker as it celebrates 50 years of extraordin… https://t.co/NKZRGlKQKS +06/04/2018,Social_workers,@RepBarbaraLee,Game 2. #WarriorsGround. Let’s go Warriors! https://t.co/xWiuqvEmWC +06/03/2018,Social_workers,@RepBarbaraLee,Truly honored to receive the inaugural Outstanding Community Leader of the Year Award from Alameda Health! As I con… https://t.co/ngyln752E4 +06/03/2018,Social_workers,@RepBarbaraLee,"#DubNation is ready for a W tonight! At the studio ahead of my interview with @AlexWitt, wearing my @warriors color… https://t.co/Ual7y7xL98" +06/02/2018,Social_workers,@RepBarbaraLee,The San Leandro Boys & Girls Club provides critical services to more than 1300 young people. Huge thanks to the… https://t.co/9jbPIhAsDO +06/02/2018,Social_workers,@RepBarbaraLee,The San Leandro Cherry Festival is a true gem of our East Bay community. Such a great experience every time I atten… https://t.co/mqw7Kajspv +06/02/2018,Social_workers,@RepBarbaraLee,"ICYMI: This week, @eoydc renamed their computer lab in honor of Rev. Jesse Jackson! Such extraordinary appreciation… https://t.co/bDoZ9KEZ5f" +06/02/2018,Social_workers,@RepBarbaraLee,No child should have to grow up in fear of gun violence in their school or neighborhood. I #WearOrange because I ca… https://t.co/9lyhb7KLGt +06/01/2018,Social_workers,@RepBarbaraLee,"“Donald Trump is deliberately forcing millions of Americans into financial ruin, cruelly depriving them of food and… https://t.co/eQP0UHJnna" +06/01/2018,Social_workers,@RepBarbaraLee,"Today marks the beginning of #PrideMonth. We have a lot of progress to be proud of, but the fight for equality is f… https://t.co/G9164FIUHb" +06/01/2018,Social_workers,@RepBarbaraLee,"RT @RepVeasey: Today on the Pathways #OutofPoverty Tour, I heard directly from those facing economic burdens and met w/ local orgs that pro…" +06/01/2018,Social_workers,@RepBarbaraLee,"These heinous, anti-immigrant policies are a stain on our nation. #FamiliesBelongTogether https://t.co/C2ABDBL6cE" +06/01/2018,Social_workers,@RepBarbaraLee,"Thank you, 8th grade Alameda Community Learning Center students, for your letters on environmental policy. From pro… https://t.co/Pq5S1fSEAT" +06/01/2018,Social_workers,@RepBarbaraLee,"In the year since Trump sided with polluters & withdrew from the #ParisAgreement, California has not backed down. W… https://t.co/LbRzqtbYlJ" +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: .@PromiseHouse provides emergency shelter to many young people experiencing homelessness, including LGBT youth and new mothe…" +06/01/2018,Social_workers,@RepBarbaraLee,RT @WhipHoyer: Pleased to tour @JubileePark as part of the Pathways #OutOfPoverty #ListeningTour. This community center provides local resi… +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Read @TheHill’s story today about the first stop of the Pathways #OutOfPoverty #ListeningTour with @RepBarbaraLee, @RepEBJ,…" +06/01/2018,Social_workers,@RepBarbaraLee,.@JubileePark in Dallas is doing incredible work to help build pathways #OutOfPoverty for families. Their comprehen… https://t.co/R4tPiuQK6x +06/01/2018,Social_workers,@RepBarbaraLee,RT @RepEBJ: Understanding the challenges poverty creates and how to overcome them. The Pathways #OutOfPoverty Listening Tour stops in Dalla… +06/01/2018,Social_workers,@RepBarbaraLee,At @BontonFarms in Dallas for the first stop in our Poverty Task Force #ListeningTour. In order for families to cli… https://t.co/orOVaMO2d5 +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Today, I am kicking off the Pathways #OutOfPoverty #ListeningTour in #Dallas with @RepBarbaraLee, @RepEBJ, & @RepVeasey to h…" +05/31/2018,Social_workers,@RepBarbaraLee,We’re on #WarriorsGround tonight and I’m wishing them the best of luck in Game 1 of the NBA Finals. I’m anticipatin… https://t.co/YSoWG3iRb7 +05/31/2018,Social_workers,@RepBarbaraLee,RT @warriors: #NBAFinals begin TODAY 😤 #DubNation https://t.co/wrf1R8ysZN +05/30/2018,Social_workers,@RepBarbaraLee,"If we fail to act on the domestic #HIV epidemic, one in two African American gay men will contract HIV in their lif… https://t.co/sALBXxNQxO" +05/30/2018,Social_workers,@RepBarbaraLee,"Food is running short. Political instability and violence are worsening. + +#SouthSudan is on the brink of catastroph… https://t.co/djr1J3mDAC" +05/30/2018,Social_workers,@RepBarbaraLee,Proud of these extraordinary students from Lincoln Middle School in Alameda for their courage in speaking out again… https://t.co/e17CZKTLUn +05/30/2018,Social_workers,@RepBarbaraLee,"RT @oakzoo: You otter spend 12 seconds watching these guys frolic in the water. +#WorldOtterDay https://t.co/9uPFfZEtsy" +06/02/2018,Social_workers,@MikeLICSW,"RT @MikeLICSW: Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9 https://t.co/nrugUAfwKk" +05/31/2018,Social_workers,@MikeLICSW,"Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9" +05/31/2018,Social_workers,@MikeLICSW,"Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9 https://t.co/nrugUAfwKk" +05/18/2018,Social_workers,@MikeLICSW,@kate_audette is rocking out the @NASWMA conference on #telemedicine https://t.co/RVqrLCkAK7 +05/09/2018,Social_workers,@MikeLICSW,"Register Now, and I'll see you there! National Association of Social Workers https://t.co/qC3Rf0i7sY" +05/05/2018,Social_workers,@MikeLICSW,RT @Rachel_HRC: The latest The Business of Relationships! https://t.co/kE2GS9VzRa Thanks to @MikeLICSW @DrKipMatthews #mentalhealth #empathy +05/05/2018,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/PPRdxGvRPx Thanks to @MikeLICSW #health #hipaa +05/05/2018,Social_workers,@MikeLICSW,RT @Interactions247: There's No Such Thing As A Safe Place https://t.co/VmfyotoS5Q via @mikelicsw +04/26/2018,Social_workers,@MikeLICSW,"RT @jratey: ""#Exercise lowers #depression risk, no matter your age or gender"" #PhysEd #KeepMoving https://t.co/HNPPZ2RyYO https://t.co/WGRv…" +04/26/2018,Social_workers,@MikeLICSW,Please join me & my colleague @kate_audette from @BostonChildrens 5/18 for a workshop on the future of online thera… https://t.co/9cCK5PokFw +04/25/2018,Social_workers,@MikeLICSW,RT @Rachel_HRC: The latest The Business of Relationships! https://t.co/0n6Ua0opnQ Thanks to @MikeLICSW #mentalhealth #mhchat +04/25/2018,Social_workers,@MikeLICSW,Food for thought: Social Media Leaves #HIPAA Irrelevent https://t.co/G5uF3bWOAA +04/21/2018,Social_workers,@MikeLICSW,The rise of the ambient video game https://t.co/uIzYJAy1NU +04/20/2018,Social_workers,@MikeLICSW,Facebook Has a New Data Policy—Here’s the Short Version - The Wall Street Journal https://t.co/I1tioe4hQW +04/14/2018,Social_workers,@MikeLICSW,"On this #BostonMarathon wknd, as someone whose neighborhood was bombed, my heart goes out to people killed or wound… https://t.co/U2lzFEY9GJ" +04/10/2018,Social_workers,@MikeLICSW,Thanks! https://t.co/VIL3J5OwsE +04/10/2018,Social_workers,@MikeLICSW,"RT @jratey: ""Meta-analysis finds students who participate in physical activity do better in maths, reading"" #PhysEd #SchoolMoves https://t.…" +04/10/2018,Social_workers,@MikeLICSW,The Crisis Behind Crises https://t.co/cyzXXpxvot +04/07/2018,Social_workers,@MikeLICSW,RT @ShelbySkrhak: The Dalai Lama turned to American psychologist @PaulEkman to create this emotions map to develop a calm mind. https://t.c… +03/22/2018,Social_workers,@MikeLICSW,RT @AllGradSchools: Congratulations to @Podsocs @AmyMorinLCSW @njsmyth @MikeLICSW and all of the other #influencers #podcasts and #blogs wh… +03/19/2018,Social_workers,@MikeLICSW,"Gee, TY @AllGradSchools for making my blog #5 for 2018! Grats also to @laurelhitchcock @socworkpodcast @njsmyth &… https://t.co/qYSiWZvHwv" +02/26/2018,Social_workers,@MikeLICSW,Should #psychotherapists start accepting payment by #bitcoin #ethereum & other #blockchain? Discuss #mentalhealth… https://t.co/iIQ4cDPBhD +02/26/2018,Social_workers,@MikeLICSW,@KBTimberlake Thanks for your shout out! :-) #socworkuab +02/23/2018,Social_workers,@MikeLICSW,Exercise & Games are not mutually exclusive! Here's an example: Commit to playing @hqtrivia walking or light jog (i… https://t.co/vydY0Rjgik +02/22/2018,Social_workers,@MikeLICSW,Join me on https://t.co/GaFuQB4NiI https://t.co/oMR7lCUjWr via @dock_io +02/21/2018,Social_workers,@MikeLICSW,New Presentation Offered in 2018: Boundaries & Health in the Digital Age - https://t.co/TgE5acBCWH +02/20/2018,Social_workers,@MikeLICSW,@ruthsofhia Bravo! You might want to check out my work as well as our @Grokcraft project +02/16/2018,Social_workers,@MikeLICSW,https://t.co/q3KYYj9IqR +01/29/2018,Social_workers,@MikeLICSW,"RT @maglearn: Although the term geek has begun to be reclaimed by many, it's important to remember that word comes from 'fool' or 'freak' ~…" +01/28/2018,Social_workers,@MikeLICSW,RT @gretchen_miller: Boundaries and Health in the Digital Age https://t.co/HhSxvz9iOv via @mikelicsw #digitalsocialresponsibility +01/26/2018,Social_workers,@MikeLICSW,RT @maglearn: The Gamification of Psychotherapy https://t.co/xRvGVwZqPk via @mikelicsw +01/26/2018,Social_workers,@MikeLICSW,"I love how coloring books for #mindfulness is ok with #psychology types, but playing #videogames for mindfulness is… https://t.co/hHGJdThtiM" +01/22/2018,Social_workers,@MikeLICSW,What If Children Should Be Spending More Time With Screens? - The Wall Street Journal https://t.co/rlkflhCtxq +01/19/2018,Social_workers,@MikeLICSW,Have you heard ‘Better Living Through Minecraft (Audio Version)’ by Mike Langlois on #SoundCloud? #np https://t.co/1saMYVSxHE +01/11/2018,Social_workers,@MikeLICSW,I’m playing a game called @hqtrivia! You should play too. Use my code ‘langloimsw’ to sign up… https://t.co/FvneJ27k3x +01/11/2018,Social_workers,@MikeLICSW,Boundaries and Health in the Digital Age https://t.co/qx7brNeee6 #socialwork #digitalliteracy #hcsm #psychology https://t.co/G6Pm0o310n +01/11/2018,Social_workers,@MikeLICSW,Boundaries and Health in the Digital Age https://t.co/kvl3bd62Xo https://t.co/KtJtLCtgL9 +01/08/2018,Social_workers,@MikeLICSW,"RT @MikeLICSW: What Disruption Is, and Isn’t https://t.co/gBv2NY6UyN https://t.co/K0u3KABPkw" +01/02/2018,Social_workers,@MikeLICSW,"RT @socworkpodcast: Love this idea: ""I talk about how technology always amplifies things... There is a big difference between disrupting ex…" +01/02/2018,Social_workers,@MikeLICSW,"What Disruption Is, and Isn’t https://t.co/gBv2NY6UyN https://t.co/K0u3KABPkw" +01/02/2018,Social_workers,@MikeLICSW,A History of Panic Over Entertainment Technology https://t.co/ewnVbY5epH via @behscientist +12/29/2017,Social_workers,@MikeLICSW,Finally! A Mindfulness Approach to Video Games & Game Therapy https://t.co/4TSzyFPyTk #videogames #mentalhealth +12/13/2017,Social_workers,@MikeLICSW,https://t.co/32EvNbDEGs +12/08/2017,Social_workers,@MikeLICSW,2 Quick Asks - https://t.co/Tu8eBFupnL +11/15/2017,Social_workers,@MikeLICSW,RT @classcraftgame: Classroom management is FUN with Classcraft!! https://t.co/PzRQlkEB7o +11/15/2017,Social_workers,@MikeLICSW,"Mark your calendars! This is an excellent chance to get a free sample of what a talk from me can be like, so feel f… https://t.co/wLq6OvqfE9" +11/10/2017,Social_workers,@MikeLICSW,@CambCPD @CambridgePolice another hazard for a person w/ #Disability https://t.co/GDru9XfwiJ +11/09/2017,Social_workers,@MikeLICSW,(Unofficial) Mindful Minecraft Meditation | Finney Can Help https://t.co/k2ZXW7xIm7 via @sharethis +11/09/2017,Social_workers,@MikeLICSW,"RT @espeakers: Mike Langlois is today’s featured speaker! https://t.co/JzTBv3QSAd @MikeLICSW + +Find more experts at https://t.co/GUJXaXCNqc" +11/09/2017,Social_workers,@MikeLICSW,Thanks! +11/08/2017,Social_workers,@MikeLICSW,"Dear colleague, please pass this info along to anyone you know looking for presentations or keynotes!… https://t.co/QXnFznQ4jC" +10/25/2017,Social_workers,@MikeLICSW,"Attention #cyclists: To you this may look like bad parking, but to folks w/ a #Disability it’s blocking access.… https://t.co/rTdPPvhUmH" +10/24/2017,Social_workers,@MikeLICSW,Now booking for Nov - Spring 2018 talks on #mentalhealth #tech #SEL #telemedicine & rethinking #gaming addiction. https://t.co/g2UEYtibPT +10/14/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/DV2cJwFaIn +09/21/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/R9dICzp0FF +09/18/2017,Social_workers,@MikeLICSW,Teamwork SXSW Minecraft Healthcare = Sum Greater Than Parts https://t.co/H6tq8LYCou +09/18/2017,Social_workers,@MikeLICSW,"HR folks & friends: Your org may be a tough crowd for workshops, but who can refuse applying Minecraft to work?… https://t.co/lHMy3KxHkI" +09/11/2017,Social_workers,@MikeLICSW,"Ohio State revokes Arizona professor's Ph.D., questioning her findings on video games https://t.co/O1d2ryEzse" +09/10/2017,Social_workers,@MikeLICSW,RT @CalmFlyer: Enjoying working with @psious VR. Has really made a difference in treatment of phobias! https://t.co/TxUdpuI9sU +08/31/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/ZkSXgvYra3 +08/21/2017,Social_workers,@MikeLICSW,SXSW Talk on #minecraft & #griefing needs your votes & shares! https://t.co/WA4f79IY4o +08/19/2017,Social_workers,@MikeLICSW,"TY @bostonpolice & @marty_walsh for keeping us safe & being professional. @realDonaldTrump no anti-police agitators here, just patriots!" +08/19/2017,Social_workers,@MikeLICSW,https://t.co/yrevTrMxvL #BostonCommon #Bostonresists +08/19/2017,Social_workers,@MikeLICSW,"I occasionally get grief from colleagues about getting ""political"" on Twitter. Oh well. https://t.co/DoX3fscxqV" +08/18/2017,Social_workers,@MikeLICSW,Google Maps: Create Wheelchair Friendly Routes - Sign the Petition! https://t.co/Y8oeKuMXZk via @Change +08/16/2017,Social_workers,@MikeLICSW,https://t.co/j5WAUBDUBn +08/14/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: Pls RT & vote for my #SXSW talk: Good Griefing?!: Pixels, Poverty, & Attachment. It's about #griefing in #minecraft https:/…" +08/13/2017,Social_workers,@MikeLICSW,RT @SWcareer: Can #Minecraft Camp Help Open Up Tech World To Low-Income Kids? https://t.co/a9X6ilkZeC @MikeLICSW @njsmyth #swtech #childwel… +08/13/2017,Social_workers,@MikeLICSW,"""I condemn nazism & the KKK."" @realDonaldTrump , See? It's not that complicated a tweet. You can even include #Charolettesville & have room." +08/08/2017,Social_workers,@MikeLICSW,"Pls RT & vote for my #SXSW talk: Good Griefing?!: Pixels, Poverty, & Attachment. It's about #griefing in #minecraft… https://t.co/6SjsBgdKVP" +07/27/2017,Social_workers,@MikeLICSW,City of Cambridge Participatory Budgeting pls comment & spread the word @AbleGamers https://t.co/kKeTGlG01E +07/27/2017,Social_workers,@MikeLICSW,City of Cambridge Participatory Budgeting pls comment and share! @CambCPD https://t.co/kKeTGlG01E +07/26/2017,Social_workers,@MikeLICSW,https://t.co/imJ9FIAsUj +07/26/2017,Social_workers,@MikeLICSW,https://t.co/6NWQ3wQVyF +07/19/2017,Social_workers,@MikeLICSW,"Check out Free Family-Friendly Film Wednesday Night! on Wed, Jul 19 https://t.co/TDD9NUY9NU via @Nextdoor" +07/19/2017,Social_workers,@MikeLICSW,"Join us TONIGHT at @cambridgepl for a free screening of Finding Dory, followed by lively discussion with @MikeLICSW https://t.co/3xNC9umgjG" +07/19/2017,Social_workers,@MikeLICSW,"RT @CambCPD: Join us TONIGHT at @cambridgepl for a free screening of Finding Dory, followed by lively discussion with @MikeLICSW https://t.…" +07/18/2017,Social_workers,@MikeLICSW,"Hey local folks, please spread the word on this free family-friendly event tomorrow evening! https://t.co/XTT1tZ25Q0" +07/06/2017,Social_workers,@MikeLICSW,"Join me & @ubswce at @UBuffalo 7/24 to sift through the moral panic about Self-Harm, Social Media, & Video Games, https://t.co/TtT60hlwxD" +06/28/2017,Social_workers,@MikeLICSW,"RT @CambCPD: Retweeted Mike Langlois, LICSW (@MikeLICSW): + +Join @CambCPD & me for Finding Dory, starring @TheEllenShow Free!... https://t.c…" +06/28/2017,Social_workers,@MikeLICSW,"Join @CambCPD & me for Finding Dory, starring @TheEllenShow Free! Wed 7/19 6 pm @cambridgepl discussion on #cognitive #Disability to follow" +06/28/2017,Social_workers,@MikeLICSW,"RT @cambridgepl: This Thurs, June 15, 6:30 PM + Main Library, Lecture Hall + Join us for a conversation and Q&A with Fenway Health https://…" +06/28/2017,Social_workers,@MikeLICSW,RT @CambCPD: #Ghana govt has intensified public education to eliminate neg perception that disability is a curse https://t.co/vL5y7WdXEg vi… +06/23/2017,Social_workers,@MikeLICSW,"@TheMattSchwartz @karenzgoda So I see, lol" +06/18/2017,Social_workers,@MikeLICSW,This is my pal Duke. He is having surgery tomorrow & needs your help. Consider a small trip to #Gofundme to help!… https://t.co/XbNVWgwkVV +06/15/2017,Social_workers,@MikeLICSW,RT @SusanGiurleo: How to Raise a Happy Child https://t.co/2ZV0NuDfrK +06/15/2017,Social_workers,@MikeLICSW,@TheEllenShow Psyched to screen Finding Dory 7/19 as a family event for our @CambCPD film series on #Disability awareness.TY for your work! +06/04/2017,Social_workers,@MikeLICSW,RT @njsmyth: Why you should care about bots if you care about social justice / Ford Foundation https://t.co/0x2Dh9OTkw +06/02/2017,Social_workers,@MikeLICSW,RT @caseforhere: @AILADCChapter @AILANational @Ailanewengland 49 clinicians from 17 states & D.C. stand ready to donate our work! https://t… +06/02/2017,Social_workers,@MikeLICSW,RT @caseforhere: @AILANewYork @AILAOhioChapter @AILAPhila 49 clinicians from 17 states & D.C. stand ready to donate our work! https://t.co/… +06/01/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/Rfpk3VY91l +05/27/2017,Social_workers,@MikeLICSW,Warning: Screen Time Rules Can Backfire https://t.co/ZlvpmFOhvn # via @HuffPostBlog +05/19/2017,Social_workers,@MikeLICSW,@answers4thefam @Acardoza @drmattp TY so much for inviting me to join you on your show this coming Nov. Looking forward to it! ^_^ +05/17/2017,Social_workers,@MikeLICSW,"RT @caseforhere: Once again, we've more requests than volunteers. Want to make a difference in the lives of #immigrant families? https://t.…" +05/16/2017,Social_workers,@MikeLICSW,RT @SWcareer: 🍏 Best in #MentalHealth (4/10- 5/7) https://t.co/1sel3oooI9 H/T @StuckonSW @MikeLICSW @swhelpercom @socialworkpad +05/15/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/w70nu6Gjgf +05/11/2017,Social_workers,@MikeLICSW,"For the first time, eligible individuals and their families will be allowed to establish ABLE savings accounts https://t.co/wgPhvUq4PH" +05/09/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @amazon Giving away Reset this wknd was so much fun, I'm doing it again Tues! Or always on #KindleUnlimited https://t.co/riR…" +05/08/2017,Social_workers,@MikeLICSW,"@amazon Giving away Reset this wknd was so much fun, I'm doing it again Tues! Or always on #KindleUnlimited https://t.co/riRKTMqgLj" +05/06/2017,Social_workers,@MikeLICSW,@NSASpeaker This weekend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/riRKTMqgLj +05/06/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.c… +05/06/2017,Social_workers,@MikeLICSW,Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/FZ6G8XMDZL +05/06/2017,Social_workers,@MikeLICSW,"@LeemansBas Thank you, Bas! ^_^" +05/06/2017,Social_workers,@MikeLICSW,RT @LeemansBas: @MikeLICSW Great book! A 101 on how to become a Gamer therapist +05/05/2017,Social_workers,@MikeLICSW,RT @NSASpeaker: Welcome to the community @MikeLICSW! Hope to meet you in person at #Influence17 https://t.co/z7jYwP6E75 +05/05/2017,Social_workers,@MikeLICSW,RT @ringmd: @MikeLICSW we've quoted you on the importance of writing content & just sent you an email :) https://t.co/gyYzfJ4SlR #contentfo… +05/05/2017,Social_workers,@MikeLICSW,Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/riRKTMqgLj +05/05/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/JHFszVT786 +05/02/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/rP93YjcbIN Thanks to @armstronglpc @MikeLICSW #mentalhealth #mhsm +05/01/2017,Social_workers,@MikeLICSW,So glad to join the @NSASpeaker family! Please feel free to share & RT my #speaker info. https://t.co/rCjZz0iK4M +04/27/2017,Social_workers,@MikeLICSW,Mike Langlois Talks on Technology & Wellbeing: https://t.co/z3JjfZoJ7q via @YouTube +04/27/2017,Social_workers,@MikeLICSW,Arounja - Search Engine 4 Resources 2 Support Wellness/Recovery. Pls vote 4 this awesome project from @DKMonroeonIT https://t.co/PkhFrO5KvB +04/21/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/EAn2PrVhqw +04/12/2017,Social_workers,@MikeLICSW,Twenty-Two Apps for the 21st Century Therapist - Social Work Helper https://t.co/I8NG61ppGb +04/08/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? (Press Kit) - https://t.co/vXFnJ93Ezy +03/31/2017,Social_workers,@MikeLICSW,RT @DKMonroeonIT: Come work with me. It'll be fun! We have #data and cookies. https://t.co/mjN8cUTg3w +03/31/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/Ck2Ah0djxP Thanks to @MikeLICSW @ILCTcoaching @Shepellfgi #mentalh… +03/30/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? (Press Kit) - https://t.co/KSmgC8ect0 +03/25/2017,Social_workers,@MikeLICSW,TY @Zachanner for a great video on #accessibility #CerebralPalsy & #bagels ! https://t.co/xWNqYBTjsV @CambCPD @brainbark +03/24/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/2IL1d7rzMD Thanks to @MikeLICSW #mentalhealth #mhsm +03/23/2017,Social_workers,@MikeLICSW,Watch Live: Will Universal Basic Income Change Our Lives for Good or Bad? https://t.co/WksdSsuc6k +03/22/2017,Social_workers,@MikeLICSW,Support @caseforhere @grokcraft & Reset (book @ https://t.co/riRKTMqgLj) #immigration #mentalhealth #SEL #videogames Pls RT & share! ^-^ +03/22/2017,Social_workers,@MikeLICSW,@caseforhere has an immediate need for a 3/30/17 hearing in MA. If you are a licensed #mentalhealth prof in MA please contact us asap! +03/21/2017,Social_workers,@MikeLICSW,RT @caseforhere: Care about #mentalhealth ? Think #ImmigrantsMakeAmericaGreat ? Spread the word about our free services! Pls Follow & RT +03/20/2017,Social_workers,@MikeLICSW,Case For Here Project is looking for expert witnesses & case managers. Want to help immigrants? Learn & register at https://t.co/iYFFV5HwOv +03/17/2017,Social_workers,@MikeLICSW,RT @caseforhere: Not ready to be a expert witness? Turns out we need volunteer case managers too! Register to help https://t.co/1Ayl57VNDL… +03/16/2017,Social_workers,@MikeLICSW,RT @caseforhere: Why this Mexican-American designed a video game that simulates border crossings https://t.co/tbPkXKxej6 via @LatinoVoices +03/16/2017,Social_workers,@MikeLICSW,Case For Here Directory Questionnaire https://t.co/uwil8Bo4BB +03/15/2017,Social_workers,@MikeLICSW,Non-Binary Gender Identities- a fact sheet. https://t.co/ep9YDEgxoy via @sharethis +03/14/2017,Social_workers,@MikeLICSW,"RT @njsmyth: Teachers must ditch 'neuromyth' of learning styles, say scientists + +https://t.co/vzQojxfwID" +03/13/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? - https://t.co/AgKXRE7Bq3 +03/10/2017,Social_workers,@MikeLICSW,TY @CambCPD for promoting #disability awareness in uncertain times. https://t.co/qjUl0dOkTs Pls share the #cambridge example. +03/09/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes on #psychology #education #SEL #socialwork & #tech? - https://t.co/BYGlvWfcVZ +03/09/2017,Social_workers,@MikeLICSW,RT @caseforhere: Help protect #Immigrant rights. Download our flyer & pass it on to #lawyers & #therapists you know :-) https://t.co/NQFnDl… +03/08/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? - https://t.co/5WFBNlGfdX +03/08/2017,Social_workers,@MikeLICSW,Pls RT: #Therapists can testify to the #psychological damage of #deportation @caseforhere is gearing up to help! https://t.co/iYFFV5HwOv +03/06/2017,Social_workers,@MikeLICSW,#Therapist in #Canada ? You may find this Summer Institute on Harnessing the Power of Meaning of interest! https://t.co/y1vfXmhVSH +03/05/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: This is so needed.. Pls share to your networks. https://t.co/gLRFHsScI0 +03/05/2017,Social_workers,@MikeLICSW,I just published “Thanks for an interesting piece.” https://t.co/uQ2ilanHqX +02/28/2017,Social_workers,@MikeLICSW,RT @RepMikeCapuano: No – someone please tell me Trump didn’t really say this to the nation’s Governors … “Nobody knew that healthcare could… +02/27/2017,Social_workers,@MikeLICSW,"Book me 4 2017! #tech, #mentalhealth, #socialmedia & #selfharm, #videogames as #meditation & more. Video/Press: https://t.co/g2UEYt0AYl" +02/16/2017,Social_workers,@MikeLICSW,RT @UN_Women: .@JuliaGillardGPE & @criseboro on how #Canada can prioritize education to achieve #genderequality: https://t.co/syZuK1EGLz v… +02/16/2017,Social_workers,@MikeLICSW,This is so needed.. Pls share to your networks. https://t.co/gLRFHsScI0 +02/10/2017,Social_workers,@MikeLICSW,"@squishim @nytimes not my headline, but I think important article. Many young adults internalize this as pathology, rather than societal." +02/10/2017,Social_workers,@MikeLICSW,A Secret of Many Urban 20-Somethings: Their Parents Help With the Rent https://t.co/ssNTXrr0mu +02/09/2017,Social_workers,@MikeLICSW,"@UBSSW @ubswce @dean_yoshioka @NASWNews @nasw @AILANational Spread the word, we need volunteers in all 50 states! https://t.co/3hq05q64ik" +02/08/2017,Social_workers,@MikeLICSW,Statement: NASW opposes nomination of Sen. Jeff Sessions to be next U.S. Attorney General | https://t.co/GuiNYSq70k https://t.co/Ry6qNafY58 +02/08/2017,Social_workers,@MikeLICSW,Please follow & RT to your networks! #socialwork #mentalhealth #NoBanNoWall #hcsm #blacktwitter #Immigrants https://t.co/Z5vBzira8o +02/08/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: @elizabethforma That's why I just set up a recurring donation in her name. https://t.co/uJKLgJKKfK (5/5) +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma working w/ children, parents & educators, than our new Secretary of Education has.(4/5)" +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma This means that my dog spent more time working in public schools, (3/5)" +02/08/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: @elizabethforma Boo got her start working in an alternative program w/ me in inner-city public schools. (2/5) +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma This is my recently deceased therapy dog, Miss Boo. (1/5) https://t.co/smzUY0MwTu" +02/07/2017,Social_workers,@MikeLICSW,@elizabethforma That's why I just set up a recurring donation in her name. https://t.co/uJKLgJKKfK (5/5) +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma working w/ children, parents & educators, than our new Secretary of Education has.(4/5)" +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma This means that my dog spent more time working in public schools, (3/5)" +02/07/2017,Social_workers,@MikeLICSW,@elizabethforma Boo got her start working in an alternative program w/ me in inner-city public schools. (2/5) +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma This is my recently deceased therapy dog, Miss Boo. (1/5) https://t.co/smzUY0MwTu" +02/07/2017,Social_workers,@MikeLICSW,"New project for #Immigration #mentalhealth @caseforhere Pls follow, RT & check out https://t.co/iYFFV5pVpV Make a difference #NoBanNoWall" +02/03/2017,Social_workers,@MikeLICSW,"RT @Grokcraft: We are back up, sorry for the interruption! :-)" +02/01/2017,Social_workers,@MikeLICSW,RT @wojtekborowicz: Huge thanks to the people who participated: @annapickard @Anrick @EmMeller @kgreene @MikeLICSW @nickmizer @SpaceEngineS… +02/01/2017,Social_workers,@MikeLICSW,From the Netherlands.. https://t.co/mISKzTzyjM +01/30/2017,Social_workers,@MikeLICSW,See? My secret plan for geek recruitment is working. #bwahahaha +01/30/2017,Social_workers,@MikeLICSW,"@Calliope_B please consider writing a review, & TY for reading the book!" +01/30/2017,Social_workers,@MikeLICSW,@Calliope_B that's great! Welcome to the team! ^_^ +01/28/2017,Social_workers,@MikeLICSW,"@StuckonSW @Grokcraft @kaythaney @2LiveUnchained yes, and both modes are important & necessary for everyone!" +01/28/2017,Social_workers,@MikeLICSW,@StuckonSW @Grokcraft @kaythaney @2LiveUnchained 1 answer: The more we stay out of survival mode the more we can be in creative mode. +01/24/2017,Social_workers,@MikeLICSW,"Dear Media, pls call lies, ""lies"" or ""false statements."" Also pls call bizarre behavior ""bizarre"" rather than ""breaking with precedent."" TY" +01/23/2017,Social_workers,@MikeLICSW,"Although I disagree w/ @realDonaldTrump on all things politics, I can't in good conscience be silent: Leave Barron be. Kids deserve better!" +01/22/2017,Social_workers,@MikeLICSW,"# of us at #WomensMarch Boston: Est 175K +# of arrests: 0 +# of violent incidents: 0 +TY @bostonpolice @marty_walsh for keeping us safe" +01/21/2017,Social_workers,@MikeLICSW,#womensmarch Boston. https://t.co/PDIkC0hKum +01/17/2017,Social_workers,@MikeLICSW,@RepKClark TY for taking a stand. I hope that @SenMarkey @SenWarren & @RepMikeCapuano consider doing the same. Thank you all for your work! +01/16/2017,Social_workers,@MikeLICSW,"Booking 2017 talks! New topics: Tech & Self-Harm, Education w/out Misery. Old faves too: https://t.co/g2UEYt0AYl https://t.co/6VZ8QGyPy1" +01/15/2017,Social_workers,@MikeLICSW,"Sorry Reince, Obama, Hillary & Bernie cld all show up @ my door w candy & I wldn't stop peaceful resistance or think of Trump as legitimate." +01/13/2017,Social_workers,@MikeLICSW,Electroshock Therapy for Internet Addicts? China Vows to End It - The New York Times - https://t.co/P9NQtY4mck https://t.co/rviwS4u0NZ +01/12/2017,Social_workers,@MikeLICSW,Live asynchronously. https://t.co/2ljBImuxE4 +01/06/2017,Social_workers,@MikeLICSW,https://t.co/Ry6qNafY58 +01/04/2017,Social_workers,@MikeLICSW,@christinibnini thanks so much! Let me know if you want me to come to your area. +12/20/2016,Social_workers,@MikeLICSW,"Since when did ""intellectual"" become an insult? I was taught growing up that it was good to learn new things & think about them." +12/12/2016,Social_workers,@MikeLICSW,That moment you turn on the radio & you don't know if it is news or a promo for The Man in the High Castle. +12/12/2016,Social_workers,@MikeLICSW,@CRISPontheHill TY for following me. Pls. let me know if there are ways I can participate in the institute and your works! +12/09/2016,Social_workers,@MikeLICSW,Just a thought: What if you all reported to @twitter every time @realDonaldTrump violated Twitter Terms of Service? https://t.co/bF5MOFOm1q +12/05/2016,Social_workers,@MikeLICSW,Psst. @UBSSW @UBNewsSource @ub_sa @ub want to play #Minecraft for credit @UBuffalo ? https://t.co/y2gM3x1VLp +12/05/2016,Social_workers,@MikeLICSW,https://t.co/8PkaVtZi1x +12/05/2016,Social_workers,@MikeLICSW,RT @BSripom: @KishonnaGray @jivory @UBSSW @MikeLICSW Some #RealTalk on #videogames and #race https://t.co/curLktJuXb *gamer therapist fangi… +12/03/2016,Social_workers,@MikeLICSW,"@CambMA @RedCross Local Social Worker here, let me know if I can help." +12/02/2016,Social_workers,@MikeLICSW,RT @epflcswccm: Telehealth compares to in-person visits for depression https://t.co/yEZSRfJUhI via @Reuters @njsmyth @socworkpodcast @Stuck… +12/01/2016,Social_workers,@MikeLICSW,Looking for that perfect gift for the #therapist in your life? :-) https://t.co/riRKTM8FmJ https://t.co/hLnm9uiDZw +11/30/2016,Social_workers,@MikeLICSW,RT @sspencerthomas: SAVE DATE: twitter chat 12/1 #Men #MentalHealth #Crisis & #PeerSupport Services @SPSMM_D51 @evega_mhdignity @BartAndrew… +11/28/2016,Social_workers,@MikeLICSW,"@StigmaSlayer @DrMarkGriffiths wanted 2 see ""what it would be like to drive a car"" after playing #GTA which indicates knowing difference 2/2" +11/28/2016,Social_workers,@MikeLICSW,@StigmaSlayer @DrMarkGriffiths @DrKimberlyYoung @AndrewDoan This seems more like curiosity gone awry than GTP as he told police he 1/2 +11/23/2016,Social_workers,@MikeLICSW,RT @njsmyth: Your Filter Bubble is Destroying Democracy - Wired https://t.co/qIWPN9hVZM #Facebook https://t.co/UttZhOKhjQ +11/23/2016,Social_workers,@MikeLICSW,"Pls stop calling Nazis ""alt-right."" They are terror group, not a computer key. If u must use a keyboard term, ""backspace"" is more accurate." +11/21/2016,Social_workers,@MikeLICSW,RT @ConnorAWalters: #racevideogames Would love to hear thoughts on attempts to reflect experiences of discrimination in video games - Mafia… +11/21/2016,Social_workers,@MikeLICSW,RT @ConnorAWalters: black lead in civil rights New Orleans who faces discrimination - is gamifying that experience tone-deaf? Empathy-build… +11/21/2016,Social_workers,@MikeLICSW,RT @njsmyth: Video games are the playgrounds where many youth spend their time - #socialwork needs to be concerned with diversity content #… +11/21/2016,Social_workers,@MikeLICSW,"RT @ConnorAWalters: Papers, Please is a fantastic game! Glad to see it being recognized #racevideogames" +11/21/2016,Social_workers,@MikeLICSW,"RT @njsmyth: Dr. Gray, in her youth, found that social workers stereotyped video games and didn't appreciate what kids experience there #ra…" +11/21/2016,Social_workers,@MikeLICSW,RT @SWtechNow: Students who want to be border guards play Paper Please to develop empathy on crossing borders experience says Kishonna Gray… +07/02/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Check out the latest blog post from our forthcoming book on Teaching SWK with Tech - Reflection Questions for Digital… +07/01/2018,Social_workers,@njsmyth,"RT @janicecarello: ""In summary, despite the evident resilience of this graduate student sample, those with ACE histories were at heightened…" +07/01/2018,Social_workers,@njsmyth,RT @tjameslcsw: @EJohnsonLCSW @njsmyth @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW @socworkpodcast Gre… +07/01/2018,Social_workers,@njsmyth,"@Dr_Teasley Great to see you here, Martell!" +07/01/2018,Social_workers,@njsmyth,RT @AMLTaylor66: If you are interested in my @SWSD2018 session all details can be found here https://t.co/QvZd8dkmm0 For colleagues who are… +07/01/2018,Social_workers,@njsmyth,RT @epflcswccm: AHA Urges Consumer Education; HIPAA Privacy Rule and Health Apps @CCM_Cert @DrHowardLiu @StuckonSW @njsmyth @ubswce https:/… +07/01/2018,Social_workers,@njsmyth,@tjameslcsw @EJohnsonLCSW @amcguin @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW… https://t.co/qA0rdScZ36 +06/30/2018,Social_workers,@njsmyth,@EJohnsonLCSW @amcguin @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW… https://t.co/4wB2NQMCZM +06/30/2018,Social_workers,@njsmyth,"@EJohnsonLCSW @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW @socworkpodcast Yes,… https://t.co/jo9whaVXVh" +06/30/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Social Work Virtual Pal (#SWVirtualPal)… a very ‘real’ connection! - a new blog post by me & @AMLTaylor66: https://t.c… +06/30/2018,Social_workers,@njsmyth,This is fantastic news! #trauma https://t.co/pYZoHnxskj +06/30/2018,Social_workers,@njsmyth,"RT @LesleyHandel: Back to reality, TX is apparently going to have a bathroom bill. If you are trans and in Texas I will pee with you. Any…" +06/29/2018,Social_workers,@njsmyth,"RT @UBittic: Illustrates the impact of trauma from research, ACE study&personal reflection from her profession as a ped. doc. Seeing first…" +06/29/2018,Social_workers,@njsmyth,"RT @UBSSW: And- +10 More Documentaries on Netflix for Social Workers: +many provide in-depth looks at subjects relevant to social work practi…" +06/29/2018,Social_workers,@njsmyth,RT @UBSSW: This has helped me: our profession’s leaders getting out front for #socialjustice #MacroSW 1/3 https://t.co/JdpLYu7pfc +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: Great article on the heels of the NSWM conference. Why Disruption is the CEO’s Best Friend https://t.co/Nybcz6J2HR #NSWM29 +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: Yes! Why companies need to hire social workers https://t.co/KkB1uXD01X #NASW2018 #cswe +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: This is an access and social justice issue. Social workers should know what net neutrality loss means for clients https://t.… +06/28/2018,Social_workers,@njsmyth,RT @newsocialworker: How Will the End of Net Neutrality Affect Social Work? by @spcummings https://t.co/yR7q0SYmMX https://t.co/gNrSwhJ2Wt +06/28/2018,Social_workers,@njsmyth,RT @melaniesage: Today @husita is hanging out iny living room. Next week Dublin @SWSD2018! So exciting! #BehindtheScenes #swtech https://t.… +06/28/2018,Social_workers,@njsmyth,"RT @KialoHQ: @njsmyth Going to introduce a free dedicated edu site, without the public discussions soon. Just DM us. More about us and our…" +06/28/2018,Social_workers,@njsmyth,"@KialoHQ Thanks, good to know!" +06/27/2018,Social_workers,@njsmyth,RT @gsprang: The importance of bearing witness https://t.co/JJQt8ehru1 +06/27/2018,Social_workers,@njsmyth,Anyone from #swtech have experience with this community? https://t.co/krW5C7V8E6 +06/27/2018,Social_workers,@njsmyth,"Illuminates Gender Pay Inequity Causes: Women Ask for Raises as Often as Men, but Are Less Likely to Get Them (new… https://t.co/hyllvEqoaO" +06/27/2018,Social_workers,@njsmyth,"RT @DrKristie: “Sometimes when I consider what tremendous consequences come from little things, I am tempted to think there are no little t…" +06/27/2018,Social_workers,@njsmyth,"RT @jbriselli: ""Patient satisfaction is NOT the same as patient experience. It's just a small component."" So 🗝️ - @julie_rish at #HXD2018" +06/27/2018,Social_workers,@njsmyth,"RT @AdamMGrant: Hey Silicon Valley, it's time to start betting on older entrepreneurs. +New study: 40-year-olds are 2.1x as likely as 25-yea…" +06/27/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Amazing pic of @dawnshedrick @lakeya_cherry and @TheNSWM in action providing training to social workers in China https… +06/27/2018,Social_workers,@njsmyth,RT @SWcareer: 🍏 Best in Mental Health: Life Support! https://t.co/A9nDUcWBmg < H/T @socialworksage @laurelhitchcock @SchoolSocWork @Stuckon… +06/27/2018,Social_workers,@njsmyth,"RT @AlyssaLotmore: With a break from the semester, why not fill up your summer with books, podcasts, blogs, movies and more... all that hav…" +06/26/2018,Social_workers,@njsmyth,RT @epflcswccm: @AmerCollPhyAdv @ICD10monitor Honored to be on today's show! #socialdeterminants and #mentalhealth rock but I loved listeni… +06/26/2018,Social_workers,@njsmyth,"@BrandyRMaynard @obrienaj I think that’s an accurate statement about much of the online MSW market, particularly wh… https://t.co/V7yzPoyCGg" +06/26/2018,Social_workers,@njsmyth,"RT @melaniesage: The word is out! #UBSSW will offer an online DSW in Fall 2019. It will include a focus on #implementationscience, emerging…" +06/26/2018,Social_workers,@njsmyth,@jalvear @melaniesage @StuckonSW @spcummings @UBSSW @UNE_HealthIT DSW students are generally not funded. Our DSW is… https://t.co/6cdLE2KyTN +06/25/2018,Social_workers,@njsmyth,"@BrandyRMaynard @obrienaj I can't speak for other schools of social work, but ours will not be a profit center, I j… https://t.co/pk5K6Ycd3A" +06/25/2018,Social_workers,@njsmyth,@obrienaj I agree! The problem is these things are not dictated by formal policy but by market forces and the state… https://t.co/VobsjvOnmT +06/25/2018,Social_workers,@njsmyth,"I agree, Melanie. I think it's inevitable based on watching what's happening to the other health professions https://t.co/Dh7CEoGSvs" +06/25/2018,Social_workers,@njsmyth,"RT @lakeya_cherry: 11 pm on a Sunday night in Zhuhai,China and I'm writing a Welcome speech on behalf of @TheNSWM for tomorrow's opening da…" +06/24/2018,Social_workers,@njsmyth,RT @laurelhitchcock: One more reason why #socialworkers need to be digitally literate & tech competent: @NYTimes article on how digital the… +06/23/2018,Social_workers,@njsmyth,@jaxrafferty Are you coming to Dublin? I'm trying to figure out who I will get a chance to meet from our #swtech UK community +06/23/2018,Social_workers,@njsmyth,@AMLTaylor66 I'm so excited about having a chance to meet you on-the-ground! +06/23/2018,Social_workers,@njsmyth,"RT @JoWarner01: Great news for #socialwork, in that our own brilliant @AMLTaylor66 is on the list for Female GovTech Leaders 2018. I just v…" +06/23/2018,Social_workers,@njsmyth,"You're very welcome, Amanda, it's my honor! https://t.co/uDZ797AJYr" +06/23/2018,Social_workers,@njsmyth,RT @EvaProkop: RT @jaxrafferty: International acclaim #womenintech https://t.co/1SVZIfvRl0 +06/23/2018,Social_workers,@njsmyth,RT @jaxrafferty: International acclaim #womenintech https://t.co/9J57C5nuzo +06/23/2018,Social_workers,@njsmyth,"RT @AlyoshenkaB333: The ACLU has an update re. the executive order: ""The administration has signaled that it will now detain all families…" +06/23/2018,Social_workers,@njsmyth,@AlresfordBear Exactly! +06/23/2018,Social_workers,@njsmyth,"All my #socialwork peeps. Please see tweet below. It would be awesome if you would vote for my colleague, Amanda Ta… https://t.co/aOhPGOETkr" +06/23/2018,Social_workers,@njsmyth,RT @AMLTaylor66: In total cat style #RuariCat not a bit fazed by all this #womenintech talk #academicswithcats https://t.co/XlcHzCgnro +06/22/2018,Social_workers,@njsmyth,I just contributed on @theactionnet: LEAF Project for Universal Representation for Unaccompanied Children.… https://t.co/LLyI7Lm5AC +06/22/2018,Social_workers,@njsmyth,RT @CleanHealthyAZ: FOLLOW us if you agree: our kids deserve to breathe clean air. https://t.co/zMJ4p10zVV +06/22/2018,Social_workers,@njsmyth,@AMLTaylor66 @JimmySW @laurelhitchcock @StuckonSW @karenzgoda @spcummings @EBelluomini @melaniesage @EJohnsonLCSW… https://t.co/qk06s8lWc6 +06/22/2018,Social_workers,@njsmyth,@AMLTaylor66 @JimmySW @laurelhitchcock @StuckonSW @karenzgoda @spcummings @EBelluomini @melaniesage @EJohnsonLCSW… https://t.co/WQsnHnGzmL +06/22/2018,Social_workers,@njsmyth,I stand with my #socialwork colleagues at NADD against #ChildrenInCages And now we must address the harm this polic… https://t.co/THsVBlY7bY +06/22/2018,Social_workers,@njsmyth,"RT @melaniesage: People applying for refugee status don't get appointed attnys. They fare FAR better with representation, much more likely…" +06/22/2018,Social_workers,@njsmyth,RT @melaniesage: A4. Did you know that you can be a non-lawyer representative in immigration court? @RAICESTEXAS has online training. Loca… +06/22/2018,Social_workers,@njsmyth,Drone selfies. Who knew? https://t.co/qM1VtbMSEu https://t.co/EqLA6VXbfh +06/22/2018,Social_workers,@njsmyth,"RT @brooklyn11210: @JrTechinHmSrvs @melaniesage @SWSD2018 @NeilBallantyne @husITaOrg @JohnGMcNutt @Info4Practice @njsmyth +New Call For Pa…" +06/21/2018,Social_workers,@njsmyth,@kanter @SWcareer - these are my favorite influencers this week! +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: Facebook to direct users searching for opioids to addiction resources @DrHowardLiu @UBSSW @NationalCouncil https://t.co/wkw… +06/21/2018,Social_workers,@njsmyth,RT @DrHowardLiu: Glad to see #Facebook build #opioidcrisis treatment referrals into its algorithm. We must harness the power of #SoMe to ad… +06/21/2018,Social_workers,@njsmyth,@epflcswccm do you know this project? https://t.co/g7ATMF7WQW +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: The Mental Health Costs of Harassment @PBerryRN @JudgeWren @RTConnections @CCM_Cert @cherylholt @nasw @njsmyth @wgu https:/… +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: The industry must get past the stigma of mental health treatment for its professionals. Seeking treatment is not a weakness… +06/21/2018,Social_workers,@njsmyth,"RT @DrKristie: PLEASE SHARE. Lawyers, law students, and paralegals with Spanish language skills are needed for six-day stints in Texas to…" +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: 1:5 Immigrant Children Detained During ‘Zero Tolerance’ Border Policy < 13 @DrHowardLiu @UjjRam @nasw @StuckonSW https://t.… +06/21/2018,Social_workers,@njsmyth,"RT @HowardU_SWDean: One of the first songs learned as a child was “Jesus loves the little children, all the children of the world, red and…" +06/21/2018,Social_workers,@njsmyth,"RT @MelindaHohman: Summing up how I feel, @Maria_Hinojosa . Journalists like you have worked hard to let the rest of us know what is happen…" +06/21/2018,Social_workers,@njsmyth,RT @MelindaHohman: Want to know about the effects of #detention on parents and children? Read national expert and researcher @lhzayas . Tha… +06/21/2018,Social_workers,@njsmyth,RT @nasw: Social workers attending the 2018 NASW National Conference attended a voter registration education teach-in and posed for a photo… +06/21/2018,Social_workers,@njsmyth,RT @BartAndrews: @epflcswccm @DrHowardLiu @UBSSW @uscsocialwork @NCQA @nasw @CCM_Cert @UjjRam @njsmyth This is why I don’t use the word sti… +06/19/2018,Social_workers,@njsmyth,"@WriteNThrive @mmt98 @oxpatious Thanks! Hoping to get some in Late July and early August. Hope you have some coming, too" +06/19/2018,Social_workers,@njsmyth,RT @CharlesELewisJr: Congressional Social Workers Decry Policy Separating Families https://t.co/0206RbvlWr https://t.co/D4FNM1tdrp +06/19/2018,Social_workers,@njsmyth,RT @CharlesELewisJr: Children and Trauma https://t.co/410iFgvY4r @StuckonSW @njsmyth @newsocialworker @ColumbiaSSW @MSWatUSC @melaniesage @… +06/19/2018,Social_workers,@njsmyth,"RT @melaniesage: I did #childwelfare #socialwork in 3 states. Now I teach child welfare workers. When you have to remove kids: Compassion,…" +06/19/2018,Social_workers,@njsmyth,RT @SWVirtualPal: #SWVirtualPal has a new logo just in time for #husITa18! We are looking forward to seeing everyone in Dublin and hoping… +06/19/2018,Social_workers,@njsmyth,“Families Are *Still* Being Separated! 5 Things You Can Do Today” #socialwork @amnestyusa https://t.co/dg5zRomEfs +06/18/2018,Social_workers,@njsmyth,@DrTaraBatista @RealMAbramsky #ShareTheLove thanks for the engagements this week :) +06/18/2018,Social_workers,@njsmyth,@WriteNThrive @mmt98 @oxpatious - #HappyMonday featured top engaged community members :) +06/18/2018,Social_workers,@njsmyth,"@DrTaraBatista @MattheaMarquart Yes, it really was a terrific venue" +06/18/2018,Social_workers,@njsmyth,RT @BigDataGal: The Self-Taught Data Scientist Curriculum #ai #iot #bigdata #automation #womenintech https://t.co/W1TkB6dXIc https://t.co/… +06/16/2018,Social_workers,@njsmyth,@melaniesage Can't wait to check this out! +06/16/2018,Social_workers,@njsmyth,Thanks for the retweets @H2GYInc @MelindaHohman much appreciated! :) +06/15/2018,Social_workers,@njsmyth,@WilliamJiang2 @MattheaMarquart @PCMjrnl_online - #FollowFriday You're the best engaged members in my community! +06/15/2018,Social_workers,@njsmyth,Guiding principles of @2Uinc @chippaucek #NSWM29 #EdTech https://t.co/Gyd4HHu3y7 +06/15/2018,Social_workers,@njsmyth,"RT @poliSW: 📷 evitcani-writes: transmaskopi: Being trans is not a new, trendy thing. Trans people have always... https://t.co/rmIry9ytGS" +06/15/2018,Social_workers,@njsmyth,@nukem777 Wanted to let you know that I am unable to retweet your posts. You probably have that option turned off in settings. +06/15/2018,Social_workers,@njsmyth,RT @IIHA_Fordham: #Design4Humanity is dedicated to disseminating lessons learned to a wide audience of designers and humanitarians. @Ashlei… +06/15/2018,Social_workers,@njsmyth,Thanks for the retweets @JimmySW @TheNSWM @SD_SocialWorker much appreciated! :) +06/15/2018,Social_workers,@njsmyth,RT @husswcapp: Thanks @HowardU_SWDean Dr. Sandra E. Crewe for the shoutout re how the @HU_socialwork monograph series on structural inequal… +06/15/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Such a delight to co-present with fellow @ColumbiaSSW instructors Dawn Shedrick and @ElisabethAnneCC virtually at #NSW… +06/15/2018,Social_workers,@njsmyth,RT @Global_SW_DE: #GlobalSWDE - What the #EdTech is right! Which future technologies will we see in online social work education? What have… +06/15/2018,Social_workers,@njsmyth,RT @epflcswccm: So excited to have contributed to 3 & Co-authored one of these efforts! CaseManager #CMSA2018 #casemanagement @CCM_Cert @… +06/15/2018,Social_workers,@njsmyth,#FollowFriday @JudgeWren @lakeya_cherry - top engaged members this week :) +06/15/2018,Social_workers,@njsmyth,RT @m_clark_usc: Fight on! @MSWatUSC @TheNSWM #SocialWorkersLEAD #NSWM29 https://t.co/tp9t0GimZV +06/15/2018,Social_workers,@njsmyth,"RT @DrTaraBatista: After 15 years of providing services, we finally have an online presence. Check out our new web site. I'm thinking of a…" +06/15/2018,Social_workers,@njsmyth,"@MattheaMarquart @DrTaraBatista It was wonderful to chat with you, Matthea, and to meet you, Tara!" +06/15/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Love connecting with amazing colleagues at #NSWM29 @njsmyth @DrTaraBatista https://t.co/AEkbKFoO0G +06/14/2018,Social_workers,@njsmyth,"RT @AntheaButler: I'm really tired of this line of ""this can't be America. Black families were ripped apart during slavery. Native American…" +06/14/2018,Social_workers,@njsmyth,RT @socworkpodcast: I'm honored and humbled @ariannahuff that you shared my editorial in @FortuneMagazine with your 3+ million followers...… +06/14/2018,Social_workers,@njsmyth,RT @epflcswccm: Suicide Rates In U.S. Climbing Faster for Women https://t.co/rAouZr1Aku @DrHowardLiu @MichaelBGarrett @cherylholt @socworkp… +06/14/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Our group is actively engaged in making hard choices - easy to see the teaching value of this game #NSWM29 https://t.c… +06/14/2018,Social_workers,@njsmyth,"@EBelluomini Oh, if I count my reaction to that, then my score goes much higher! I try to use those reactions to ch… https://t.co/FZNH4OAcHF" +06/14/2018,Social_workers,@njsmyth,"RT @cherylholt: Nearly half of doctors surveyed reported their patients would benefit from food assistance, affordable housing and transpor…" +06/14/2018,Social_workers,@njsmyth,Intro to Cooperation Studies - 8 Technologies https://t.co/SsU7X2islL +06/14/2018,Social_workers,@njsmyth,"Intro to Cooperation Studies 8 Technologies + https://t.co/SsU7X2islL" +06/14/2018,Social_workers,@njsmyth,RT @EJohnsonLCSW: @JimmySW’ talk @ #nswm29: Thought leaders’ models on digital literacies are applicable to competencies needed in social w… +06/14/2018,Social_workers,@njsmyth,@socworkpodcast @melaniesage @StuckonSW @laurelhitchcock @DrNJonesTSU @mmt98 @spcummings @SD_SocialWorker… https://t.co/9J1FhjqhVk +06/14/2018,Social_workers,@njsmyth,@melaniesage @socworkpodcast @StuckonSW @laurelhitchcock @DrNJonesTSU @mmt98 @spcummings @SD_SocialWorker… https://t.co/m6ZYvhaPeW +06/14/2018,Social_workers,@njsmyth,"Participatory Culture according to Henry Jenkins, and Digital Literacies #NSWM29 presented by @JimmySW https://t.co/u2hlWMRaro" +06/14/2018,Social_workers,@njsmyth,How Did We Get Here? Web 1.0 to Web 3.0 #NSWM29 https://t.co/BtLIOmby3L +06/14/2018,Social_workers,@njsmyth,Attending @JimmySW’s presentation at #NSWM29 Retweeting Russians: Building Community and being an Authentic Leader… https://t.co/1AvvJDIVSI +06/14/2018,Social_workers,@njsmyth,RT @TheneraB: Leaders should strive for Disruptive Leadership with meaningful purpose. Not just change for change sake but with intentional… +06/14/2018,Social_workers,@njsmyth,@brooklyn11210 @lakeya_cherry It’s great to be here! Looking forward to seeing you. +06/14/2018,Social_workers,@njsmyth,Tech innovation to prevent sexual assault when people are drinking? What do you think.. https://t.co/BkDAYwpMks #MeToo +06/14/2018,Social_workers,@njsmyth,RT @JackieYunTweets: Disruptive leaders know not everyone will instantly get the vision and will continue the convo to get everyone onboard… +06/14/2018,Social_workers,@njsmyth,"RT @socworkpodcast: Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good friend…" +06/14/2018,Social_workers,@njsmyth,RT @melaniesage: A nice emotional distress #mentalhealth pain scale. https://t.co/JHvWPhrYAW Anyone want to check in? #socialwork #swtech h… +06/14/2018,Social_workers,@njsmyth,@MarshAlesia @TheMattSchwartz - these are my favorite engaged members this week! +06/14/2018,Social_workers,@njsmyth,RT @newsocialworker: Think you don't need a vacation because you love your job and everything is going great? Take a break anyway. We all n… +06/14/2018,Social_workers,@njsmyth,"Pre-Conference Reception last night, at the Coyote Cafe, with Ruby and @MelindaHohman #NSWM29 https://t.co/9V4adXNwcc" +06/13/2018,Social_workers,@njsmyth,RT @SWcareer: @njsmyth @laurelhitchcock @UBSSW @FinancialMSW @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @ValueIntoWords @Aun… +06/13/2018,Social_workers,@njsmyth,RT @PatShellySSW: @SWcareer @njsmyth @UBSSW @FinancialMSW @laurelhitchcock @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @Value… +06/13/2018,Social_workers,@njsmyth,RT @AuntieStress: @SWcareer @njsmyth @UBSSW @FinancialMSW @laurelhitchcock @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @Value… +06/13/2018,Social_workers,@njsmyth,RT @newsocialworker: We Still Don’t Fully Understand #Suicide. But We Do Know What Reduces It - commentary by @socworkpodcast https://t.co/… +06/13/2018,Social_workers,@njsmyth,RT @SWcareer: What Do You Do When Friends or Family Ask You for Money? https://t.co/5KLd4IXffK < giving money may lead others to view you a… +06/13/2018,Social_workers,@njsmyth,@lakeya_cherry Looking forward to it! +06/13/2018,Social_workers,@njsmyth,@cherylholt @DrHowardLiu @mbschoening @DrPaulKorte @KevinHinesStory @miller7 @arianajohnston @bmanteu @PBerryRN… https://t.co/xJb4fYW21T +06/13/2018,Social_workers,@njsmyth,@AuntieStress @annwilder - #ShoutOutWednesday featured top engaged members members :) +06/13/2018,Social_workers,@njsmyth,@socworkpodcast @DanitaBlackwood - these are my favorite influencers this week! +06/13/2018,Social_workers,@njsmyth,RT @laurelhitchcock: This tool lets you see–and correct–the bias in an algorithm https://t.co/Z3xRisj18Y #swtech +06/13/2018,Social_workers,@njsmyth,"RT @KithandKinMag: 11 steps you can take to protect yourself from being stalked https://t.co/vQYdBDcipo + +#NationalStalkingAwarenessMonth #N…" +06/13/2018,Social_workers,@njsmyth,Headed to San Diego for the #NSWM29 conference #175stories +06/13/2018,Social_workers,@njsmyth,"RT @SouthwestAir: Weeks ago, we departed Houston with dozens of cats and dogs, rescued from shelters flooded by Harvey: https://t.co/XegWKJ…" +06/13/2018,Social_workers,@njsmyth,"RT @brooklyn11210: Honored to be included on the #D4GX 2018 Program Committee + +@unu_cs +@melaniesage +@JohnGMcNutt +@TechEthicist +See yo…" +06/13/2018,Social_workers,@njsmyth,@brooklyn11210 @unu_cs @melaniesage @JohnGMcNutt @TechEthicist Congratulations!! +06/12/2018,Social_workers,@njsmyth,RT @lakeya_cherry: True. Most people unfortunately w/nt think this stress exists. POC often deal w/ it as they enter various social setting… +06/12/2018,Social_workers,@njsmyth,RT @lakeya_cherry: https://t.co/9c0Yz5ejTv +06/12/2018,Social_workers,@njsmyth,@laurelhitchcock @SWcareer @UBSSW @FinancialMSW @socworkpodcast @newsocialworker @myjoythisway @StuckonSW… https://t.co/eY922RSlhF +06/12/2018,Social_workers,@njsmyth,RT @epflcswccm: Why Female CEOs' Performance May Depend on Who Had the Job Prior @JudgeWren @njsmyth @UBSSW @cherylholt @PBerryRN https://t… +06/12/2018,Social_workers,@njsmyth,"RT @AdamMGrant: After they're given terrible ideas to consider, brainstorming groups become more creative. +A bad solution can point the way…" +06/12/2018,Social_workers,@njsmyth,@TheMattSchwartz @UBSSW @ubalumni That’s terrific! Very exciting..can’t wait to see all you do there. +06/12/2018,Social_workers,@njsmyth,"@TheMattSchwartz @UBSSW @ubalumni Congratulations, Matt, we are thrilled to have you as an alumnus! What job have you been hired for?" +06/12/2018,Social_workers,@njsmyth,RT @TheMattSchwartz: There were many amazing parts of going through the @UBSSW #MSW program at #UB. One of the best was being prepared for… +06/11/2018,Social_workers,@njsmyth,Thanks for the retweets @A_CreativeEdge @HeroesClubWomen much appreciated! :) +06/11/2018,Social_workers,@njsmyth,RT @Ross_Quintana: 4 Female Entrepreneurs Share the Visions That Helped Make Them Successful https://t.co/h6G0uVSueH #Entrepreneurship #Sta… +06/11/2018,Social_workers,@njsmyth,RT @realityalt1: The EU is trying to decide whether to grant robots personhood. https://t.co/vmXbQ5DbnY #Tech #AI #Futurism +06/10/2018,Social_workers,@njsmyth,RT @thehill: Restaurant owner who says Anthony Bourdain's show changed their lives donates $60K to National Suicide Hotline https://t.co/HD… +06/10/2018,Social_workers,@njsmyth,RT @Waterkeeper: Waterkeepers wore blue for #WorldOceansDay yesterday & @MarchForOcean today at Niagara Falls! #wkac18 #MarchForTheOcean #w… +06/09/2018,Social_workers,@njsmyth,@obrienaj @melaniesage Ha! Good idea. I do know that a lot of traveling does me in with regard to healthy habits +06/09/2018,Social_workers,@njsmyth,"RT @melaniesage: Frequent business travelers are at higher risk of obesity, smoking, alcohol abuse, depression and other health problems ht…" +06/09/2018,Social_workers,@njsmyth,View from my deck... Ducklings! https://t.co/DlpVGpC90V +06/09/2018,Social_workers,@njsmyth,@waterkeepermark @RobertKennedyJr I recorded part of his speech. Here's the link on YouTube https://t.co/0WGTR6gX2R +06/09/2018,Social_workers,@njsmyth,"RT @swimguide: ""Beach apps a new necessity for summer"" and @swimguide is at the top of that list. Thanks @NBCNews for talking about our wor…" +06/09/2018,Social_workers,@njsmyth,RT @water_rangers: Love learning about @swimguide from Gabby! Incredible new features. Check it out to find out if your beach is safe to sw… +06/09/2018,Social_workers,@njsmyth,RT @TheBuffaloNews: Stewardship emerges as key part of Waterkeeper mission https://t.co/TfWKb5rxRJ +06/09/2018,Social_workers,@njsmyth,"RT @JudgeWren: “Won’t you be my neighbor” Mister Rogers documentary celebrates the depth, decency & authenticity of a children’s TV legend.…" +06/09/2018,Social_workers,@njsmyth,RT @epflcswccm: HIMSS Analytics survey shows patients want convenient payment options @StuckonSW @njsmyth @CCM_Cert @signaturedoc https://… +06/09/2018,Social_workers,@njsmyth,"RT @TheMattSchwartz: #Pharmacists in NYS have Pharm.D’s, and an incredible amount of knowledge. While this occurred in MA, I assume their p…" +06/09/2018,Social_workers,@njsmyth,"RT @kccallaway: “What I noticed from my time in the Gulf and in Santa Barbara, the oil companies are winning the PR game. They control the…" +06/09/2018,Social_workers,@njsmyth,RT @sejalc: Waterkeepers from all over the world converging on Buffalo NY this week to protect and defend our world’s most precious resourc… +06/09/2018,Social_workers,@njsmyth,At the annual international Waterkeeper gathering in Buffalo #wkac18 @RobertKennedyJr : All pollution is due to fat… https://t.co/NhUdAoKgye +06/09/2018,Social_workers,@njsmyth,"RT @kccallaway: You guys must tell better stories. Take us out on boats, connect us to the stories, to your work in the community as those…" +06/09/2018,Social_workers,@njsmyth,RT @sejalc: Waterkeepers know how to work hard and play hard. We’ve gathered as a force for clean water at the annual conference in Buffal… +06/08/2018,Social_workers,@njsmyth,See this for update on Commerce Drive shooter https://t.co/o53Urf8bOa +06/08/2018,Social_workers,@njsmyth,RT @samapied: @mrnahdez presenting on an episode of Black Therapist Podcast that highlights domestic violence in communities of color and t… +06/08/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Digital Dexterity Card Game https://t.co/Vw3ODlbyh5 #swtech Peeps - Who wants to develop a card deck for #SocWorkEd &… +06/08/2018,Social_workers,@njsmyth,"RT @SJSworks: In the wake of all these tragic suicides I hope you remember that celebrities make the news, all those around us make only th…" +06/08/2018,Social_workers,@njsmyth,@RepBrianHiggins please vote against #PROSPERAct (H.R. 4508) . We need to keep higher education affordable for ever… https://t.co/pVZR9YV2b5 +06/08/2018,Social_workers,@njsmyth,RT @CSocialWorkEd: Do you want to increase the visibility of your #research & be recognized as a leader in #socialwork education at #APM18?… +06/08/2018,Social_workers,@njsmyth,@DrCastner @nerdlogic0_o - Share the love! Check out the top engaged community members in my community! +06/07/2018,Social_workers,@njsmyth,RT @epflcswccm: EHR Use Detract From Patient-Provider Communication? @StuckonSW @CCM_Cert @njsmyth @HealthITNews @MobiHealthNews https://t.… +06/07/2018,Social_workers,@njsmyth,@SJSworks @PsychBrownBag - these are my favorite engaged members this week! +06/06/2018,Social_workers,@njsmyth,"RT @melaniesage: Quote from @drbarsky, member of the recent NASW Technology Standards committee, from article on #telehealth in current cop…" +06/04/2018,Social_workers,@njsmyth,@AMLTaylor66 Such an important practice that really opens up one's life! +06/04/2018,Social_workers,@njsmyth,RT @epflcswccm: Why provider IT systems aren’t ready to capitalize on patient data @StuckonSW @njsmyth @HealthITNews @CCM_Cert @wgu https:/… +06/04/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Checkout @socialworksage's new blog post about using @Flipgrid in the #SocWorkEd Classroom: https://t.co/YFSv1Swg9a T… +06/04/2018,Social_workers,@njsmyth,RT @UniteThePoor: TODAY: Hundreds risking arrest in #PoorPeoplesCampaign rally & nonviolent direct action across the country. WATCH THE D.C… +06/03/2018,Social_workers,@njsmyth,@AMLTaylor66 Lovely!! +06/03/2018,Social_workers,@njsmyth,RT @epflcswccm: Opioids Cause 1:5 Deaths of Young Adults @DrHowardLiu @cherylholt @CCM_Cert @MichaelBGarrett @BartAndrews @UBSSW https://t.… +06/03/2018,Social_workers,@njsmyth,"RT @epflcswccm: Rising inequality responsible for greater stress, anxiety, mental illness? @cherylholt @StuckonSW @njsmyth @UBSSW https://t…" +06/03/2018,Social_workers,@njsmyth,RT @epflcswccm: Lawsuit Filed in Wake of Under Armour Data Breach @MobiHealthNews @StuckonSW @njsmyth @HealthITNews @CCM_Cert https://t.co/… +06/02/2018,Social_workers,@njsmyth,RT @UBSSW: The seven deadly sins on social media... MT @AdamMGrant via @njsmyth #SWtech #SocialMedia #Humor Image: Matt Lieberman https:/… +06/02/2018,Social_workers,@njsmyth,RT @epflcswccm: Digital health a behavioral science? @StuckonSW @cherylholt @BartAndrews @DrHowardLiu @ubswce @melaniesage @njsmyth https:/… +06/02/2018,Social_workers,@njsmyth,"RT @karenzgoda: [½] Tonight, we'd like to acknowledge @laurelhitchcock as she leaves our #MacroSW partnership for new pursuits. Since our b…" +06/02/2018,Social_workers,@njsmyth,"RT @DrAFerg: I still feel it! + https://t.co/6HO6jw0oa9" +06/02/2018,Social_workers,@njsmyth,RT @SocialWorkPulse: Well played. NBA Players' Union sees nothing but opportunity in hiring first director of mental health. Victory. @ASW… +06/02/2018,Social_workers,@njsmyth,RT @amy_mendenhall: When you get a bunch of student papers and reviews that you forgot were coming then summer reading becomes.... https://… +06/02/2018,Social_workers,@njsmyth,RT @CSocialWorkEd: The New Social Workers report from the National #SocialWork Workforce Study summarizes who is entering the social work p… +06/01/2018,Social_workers,@njsmyth,RT @UBSSW: Domestic Violence's Overlooked Damage: Concussion And Brain Injury: https://t.co/cNeqDBJbzI HT @njsmyth via @epflcswccm #TBI #… +06/01/2018,Social_workers,@njsmyth,RT @SWBookGroup: Exciting planning meeting early this morning with @RachelFearnley1 about her new book ‘Our Family and IT’ Hoping to schedu… +05/31/2018,Social_workers,@njsmyth,@laurelhitchcock @twilli2861 - these are my favorite engaged community members this week! +05/31/2018,Social_workers,@njsmyth,Interesting example that illustrates all that students learn on a project like game design: When Students Design Th… https://t.co/Ny8npgHQpk +05/31/2018,Social_workers,@njsmyth,@AMLTaylor66 @SocialWorkDesk - these are my favorite influencers this week! +05/31/2018,Social_workers,@njsmyth,RT @socworkpodcast: New #SWpodcasts on the block. @PatrickM_MSW started a podcast about #socialwork and politics https://t.co/pV1E8nvUEX. M… +05/31/2018,Social_workers,@njsmyth,"RT @UBSSW: In preparation for joining the #MacroSW chat this Thur eve, @FunkAndBeans will be posting resources at #SoJustProfiling - RT @pr…" +05/31/2018,Social_workers,@njsmyth,"RT @melaniesage: Very good answer to this client's question. Also, it's natural for clients to be curious about the therapist's (or doctor,…" +05/31/2018,Social_workers,@njsmyth,RT @forty3north: Why should you apply to 43North? Because this could be you on stage winning $1 million. But you'll have to hurry - the May… +05/30/2018,Social_workers,@njsmyth,@AMLTaylor66 @BBCiPlayer @hayfestival That sounds like fun! I am really looking forward to meeting you in Dublin. +07/02/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/9hsmC3kmog" +07/02/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +07/02/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +07/02/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +07/02/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/6s6X1Chshi" +07/02/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/tQIWaCoRo4 +07/02/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/tOQmLvbOIH +07/02/2018,Social_workers,@socworkpodcast,RT @epflcswccm: Lessons in Interprofessional Practice: #blog @spcummings @cherylholt @MichaelBGarrett @UjjRam @socworkpodcast @wgu https://… +07/02/2018,Social_workers,@socworkpodcast,@black_sexgeek Thank you! Yes it does :-) cc: @BUSocialWork +07/02/2018,Social_workers,@socworkpodcast,RT @black_sexgeek: Just listened to the @socworkpodcast episode about Social Work Superheroes. that is kind of the most AWESOME thing ever!… +07/02/2018,Social_workers,@socworkpodcast,RT @AMLTaylor66: If you are interested in my @SWSD2018 session all details can be found here https://t.co/QvZd8dkmm0 For colleagues who are… +07/02/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/lPRd4l222u" +07/02/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +07/02/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/mxn5ifWlQG Thanks to @data4democracy @sotisgreen @TempleUniv #healthcare +07/01/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/binZJEZJKA +07/01/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/XPSXoMCOm7" +07/01/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/mxn5ifWlQG Thanks to @thepapertigerx @govtrack @JoeBabaian #successtrain #healthcare +07/01/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/gMCXCicMGd +07/01/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/yUsIlcAKWh" +07/01/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +07/01/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +07/01/2018,Social_workers,@socworkpodcast,@KimberlyBG81 @tcdlibrary @karenzgoda @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek… https://t.co/iVCnAbXDHI +07/01/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +07/01/2018,Social_workers,@socworkpodcast,@JenniferTheMSW @tcdlibrary @karenzgoda @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek… https://t.co/XxEiu8XLXu +07/01/2018,Social_workers,@socworkpodcast,RT @JenniferTheMSW: @socworkpodcast @tcdlibrary @karenzgoda @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek @mpde… +07/01/2018,Social_workers,@socworkpodcast,RT @fenixfoundation: @RealKHughes @JenniferTheMSW @melaniesage @LuluRharoun @StuckonSW @socworkpodcast @spcummings @EJohnsonLCSW @mmt98 @ja… +07/01/2018,Social_workers,@socworkpodcast,@karenzgoda @tcdlibrary @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek @mpdentato 😊😊😊😊📚❤️ Love the bag! +07/01/2018,Social_workers,@socworkpodcast,RT @karenzgoda: @socworkpodcast @tcdlibrary @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek @mpdentato OMG 😍😍😍😍😍… +07/01/2018,Social_workers,@socworkpodcast,In #Dublin for #SWSD2018. Had the amazing experience of learning about the Book of Kells and seeing the Long Room a… https://t.co/Qg90iXrlOe +07/01/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/jZ4rdnK1tJ" +07/01/2018,Social_workers,@socworkpodcast,"RT @SWDiscoveries: @socworkpodcast @SWSD2018 Yes! Me too. You’ve been a real inspiration for the podcast, and I’m looking forward to thanki…" +07/01/2018,Social_workers,@socworkpodcast,@DrKristinMSmyth Wow. That's awesome. Thank you. I'm sure @Darlascoffey will be glad to know her inspiring words wi… https://t.co/wE90Nm244a +07/01/2018,Social_workers,@socworkpodcast,RT @AnnLavan: I urge all delegates @husITaOrg @SWSD2018 @AMLTaylor66 @melaniesage @socworkpodcast to visit @CBL_Dublin and it has a wonderf… +07/01/2018,Social_workers,@socworkpodcast,RT @vlarendt: Spot on. Cred @socworkpodcast @Darlascoffey #socialwork #socialworkers @CSocialWorkEd https://t.co/MkOAGQrDdM +07/01/2018,Social_workers,@socworkpodcast,"Special thank you to my 63 new followers from USA, UK., and more last week. https://t.co/OXZLlGT1K1 . https://t.co/hUIc1cgCo1" +07/01/2018,Social_workers,@socworkpodcast,@SeekSarahBSW @MarshAlesia Thanks so much y'all. I'm blushing. https://t.co/3vRdZUqMt9 +07/01/2018,Social_workers,@socworkpodcast,RT @SeekSarahBSW: @MarshAlesia @socworkpodcast Absolutely agree! Jonathon Singer’s @socworkpodcast is my own fave SW podcast 🙌🏼 +07/01/2018,Social_workers,@socworkpodcast,"RT @MarshAlesia: Since we are recommending helpful reads, I’m giving a shoutout to Jonathan Singer @socworkpodcast for Suicide in Schools.…" +07/01/2018,Social_workers,@socworkpodcast,@johnleland @socwkinprogress @CSocialWorkEd @jalvear Well played John. +07/01/2018,Social_workers,@socworkpodcast,RT @ASWB: @fenixfoundation @melaniesage @LuluRharoun @StuckonSW @socworkpodcast @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @… +07/01/2018,Social_workers,@socworkpodcast,RT @OfficialMacroSW: Our #MacroSW chat last night brought out a lot of great podcast suggestions for the summer! What podcasts would you li… +07/01/2018,Social_workers,@socworkpodcast,"@LisaKaysMSW 4. Regardless, I would play the thought experiment ""imagine that this leads to the worst outcome, what… https://t.co/4cenvzTuLt" +07/01/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/7wj30Ov332 +07/01/2018,Social_workers,@socworkpodcast,"@LisaKaysMSW 3. Even if there isn't a legal duty to warn, you might be faced with the ethica/practice decision of w… https://t.co/knRA4tbkah" +07/01/2018,Social_workers,@socworkpodcast,@LisaKaysMSW Lisa 1. Great question. Love that you're thinking through this. 2. Each state has different regulation… https://t.co/qzjM8X7Pnf +07/01/2018,Social_workers,@socworkpodcast,"RT @uscsocialwork: RT @socworkpodcast: ABFT, DBT & I-CBT are 3 family-based psychotherapies that reduce #suicide risk in adolescents. Why d…" +07/01/2018,Social_workers,@socworkpodcast,This is the best summary of a Social Work Podcast episode ever. Win for @black_sexgeek. Check out the episode and s… https://t.co/iHiOonDp2M +07/01/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW Great thread! +07/01/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/9kchTfDGn4 +07/01/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/HcljyOoHG8" +07/01/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +07/01/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/AlNN1sZtyA Thanks to @JoeFeagin @Steve_JKPbooks @JasmineMcNealy #mentalhealth +06/30/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/8KkQO2zjmA +06/30/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/IGOJmRTmKT" +06/30/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/YfXHYIPgX5 +06/30/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/AlNN1sZtyA Thanks to @PaulSacco1 @RaymondPTucker @AnneReports #ai #mentalhealth +06/30/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/DQ5ZMrBMxa" +06/30/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/30/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/30/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/30/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/dG8bZNDeKa" +06/30/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/wAqIJlYAgO +06/30/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/UtrrBBvown +06/30/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/W8K4GBuJtj" +06/30/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/30/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/pXIw5iQNdC Thanks to @SocialJerkBlog @laurelhitchcock @jonathonmorgan #mentalhealth +06/29/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/NwaTniXZ5R +06/29/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/kCaWGWbX5w" +06/29/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/bFN4Yu1s7e +06/29/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/pXIw5iQNdC Thanks to @PSYCH_HYPE @mostlyathena @UMSocialWork… https://t.co/h9h14bQmbT +06/29/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/pkhndc2uDt" +06/29/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/29/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/29/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/29/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/ZSlh6e0SMZ" +06/29/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/OK2IQvUdtc +06/29/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/CGS4s4RwKn +06/29/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/3uRKEPvK5e" +06/29/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/29/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/CdgdhxW9Xf Thanks to @elspethslayter @JasmineMcNealy @DrKathrynGordon #mhed2018 +06/28/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/lZ8ZkXunna +06/28/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/s1jG94Ijz1" +06/28/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/PNKrrASO4y +06/28/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/CdgdhydLlP Thanks to @JudgeWren @Grace_Durbin @NASWMI #socialwork #mhed2018 +06/28/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/Tr81apHqrA" +06/28/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/28/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/28/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/28/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/e6CHMDOOMO" +06/28/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/yazklHMGDO +06/28/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/gZHfDlLeIM +06/28/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/xtZYnrGPit" +06/28/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/28/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/T4nm7G6A67 Thanks to @MrJonnyBenjamin @JoThoHalloran @SuiDoc #mentalhealth +06/27/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/aWkBIafGEL +06/27/2018,Social_workers,@socworkpodcast,"RT @Jedi_Counsel: Today is #PTSDAwarenessDay. For scientifically-informed information about PTSD, you can check out our @JessicaJones post:…" +06/27/2018,Social_workers,@socworkpodcast,RT @FOX2News: Police in Berkley looking for missing teen who left home https://t.co/QLaWKFTkBv +06/27/2018,Social_workers,@socworkpodcast,"RT @ZSInstitute: At the Oklahoma #ZeroSuicide Academy, @ursulawhiteside shares about dialectical behavior therapy, CAMS, non-demand caring…" +06/27/2018,Social_workers,@socworkpodcast,RT @jdonohuedioh: Self-care impacts how we treat one another. We need to understand more about self-care. Dr. Miller is leading the way!!… +06/27/2018,Social_workers,@socworkpodcast,RT @jdonohuedioh: #selfcare #socialwork #process #selflove #KindnessMatters #selfcaremovement https://t.co/wHrI2voOlZ +06/27/2018,Social_workers,@socworkpodcast,RT @AdamDSwanson: Justice Kennedy has been instrumental in the advancement of LGBTQ equality. I’m very nervous about what comes next. #SCOT… +06/27/2018,Social_workers,@socworkpodcast,@deseraestage @MSNBC https://t.co/w7LnsZMw2u +06/27/2018,Social_workers,@socworkpodcast,RT @deseraestage: Dude on @MSNBC just said Roe v Wade being overturned wouldn’t be such a significant change because it’s already mainly af… +06/27/2018,Social_workers,@socworkpodcast,@thethoughtbub Nicely done! Thank you. +06/27/2018,Social_workers,@socworkpodcast,Great summary of Social Work's 12 Grand Challenges https://t.co/6am7mN8MBP via @thethoughtbub +06/27/2018,Social_workers,@socworkpodcast,RT @epflcswccm: Suicide Isn't A U.S. Problem. It's A Global Health Epidemic @StuckonSW @socworkpodcast @uscsocialwork @CCM_Cert https://t.c… +06/27/2018,Social_workers,@socworkpodcast,RT @thethoughtbub: Come over to https://t.co/pkWs4zBAjk at 12 am (tonight) for a run down on the Social Work Grand Challenges!! Shout out t… +06/27/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/LjD5B3Y6n2" +06/27/2018,Social_workers,@socworkpodcast,RT @UBSSW: @melaniesage @spcummings @StuckonSW @lakeya_cherry @socworkpodcast @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @UNE_HealthIT @… +06/27/2018,Social_workers,@socworkpodcast,@SWDiscoveries @SWSD2018 Looks great! Looking forward to meeting you in person #SWSD2018 +06/27/2018,Social_workers,@socworkpodcast,RT @SWDiscoveries: Just had the @SWDiscoveries poster printed for the @SWSD2018 conference starting next week. I think it’s looking good -… +06/27/2018,Social_workers,@socworkpodcast,RT @AMLTaylor66: @CarolineAldrid5 @laurelhitchcock @SWVirtualPal @socworkpodcast @melaniesage @njsmyth @DrNJonesTSU @becky_anthony Absolute… +06/27/2018,Social_workers,@socworkpodcast,"RT @laurelhitchcock: @AMLTaylor66 & I are ready to talk about @SWVirtualPal at #husITa18 next week - poster, handouts and mini cards are al…" +06/27/2018,Social_workers,@socworkpodcast,RT @davidr46: Good advice https://t.co/iSb4YczCQ8 +06/27/2018,Social_workers,@socworkpodcast,RT @newsocialworker: How will the end of #netneutrality affect #socialwork ? #macrosw #SWtech @OfficialMacroSW @socworkpodcast @EBelluomini… +06/27/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/T4nm7G6A67 Thanks to @MikeGordonRyan @MyHarmReduction… https://t.co/65aJ54dget +06/27/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/TkPPRjY9l3 +06/27/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/CVzRRnjTPA" +06/27/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/27/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/27/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/27/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/qOKLIxEAOs" +06/27/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/DzPDx932Ci +06/27/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/0Fu9cxgOgk +06/27/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/tsbFXsZc0i" +06/27/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/27/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/1fz7DZg4yP Thanks to @SDSUSocialWork @PopTechWorks @socialworksage #socialwork +06/26/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/Eu2YXHICXy +06/26/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/kDzgZJOgsU" +06/26/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/NOytRzpPtC +06/26/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/1fz7DZg4yP Thanks to @RitaWorlock @DrBakerPhD @SpringerSW #ai #socialwork +06/26/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/H4cUTUrSaw" +06/26/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/26/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/26/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/26/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/QFAXo7HBxu" +06/26/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/uQfYfUEshK +06/26/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/RwPG8rikfE +06/26/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/P12JQXSg9x" +06/26/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/26/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/0FGC6YllJS Thanks to @Jo_Yaffe @MyfMaple @SexualContinuum #successtrain +06/25/2018,Social_workers,@socworkpodcast,@StuckonSW @EJohnsonLCSW @JenniferTheMSW @melaniesage @spcummings @mmt98 @jalvear @UBSSW @UNE_HealthIT @2Uinc… https://t.co/BKhFEL40Um +06/25/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @StuckonSW @lakeya_cherry @melaniesage @spcummings @JenniferTheMSW @mmt98 @jalvear @UBSSW… https://t.co/f0Lg284VNy +06/25/2018,Social_workers,@socworkpodcast,Yes! There will never be a substitute for real-world experience. But if social work and social service organization… https://t.co/a1EyjCsy16 +06/25/2018,Social_workers,@socworkpodcast,@lakeya_cherry @StuckonSW @melaniesage @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @UBSSW… https://t.co/xIRfkGfoq7 +06/25/2018,Social_workers,@socworkpodcast,This. https://t.co/7vAAI27H71 +06/25/2018,Social_workers,@socworkpodcast,@StuckonSW @JenniferTheMSW @melaniesage @spcummings @EJohnsonLCSW @mmt98 @jalvear @UBSSW @UNE_HealthIT @2Uinc… https://t.co/kAhSyBHLUY +06/25/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/lEMlydqINp +06/25/2018,Social_workers,@socworkpodcast,RT @EJohnsonLCSW: @socworkpodcast @JenniferTheMSW @melaniesage @spcummings @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc @chippauc… +06/25/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @melaniesage @spcummings @JenniferTheMSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/VwGLTwOXCV +06/25/2018,Social_workers,@socworkpodcast,@JenniferTheMSW @melaniesage @spcummings @EJohnsonLCSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/jxXmWeMQvH +06/25/2018,Social_workers,@socworkpodcast,@KimLeifso That's amazing! Thank you so much for letting me know. I don't think I've ever heard of this kind of res… https://t.co/pc0bvRpfzu +06/25/2018,Social_workers,@socworkpodcast,"RT @KimLeifso: @socworkpodcast Based on the article, principal embedded CBT, DBT and attachment informed therapies. This ensures that these…" +06/25/2018,Social_workers,@socworkpodcast,"RT @KimLeifso: @socworkpodcast Shared your article with my visionary principal, while we were revising our therapeutic team roles/descripti…" +06/25/2018,Social_workers,@socworkpodcast,RT @monaca_eaton: Interesting ideas on simulations to improve competence - technology could be used to enhance/communicate these. https://t… +06/25/2018,Social_workers,@socworkpodcast,RT @StopTXSuicides: Thx @socworkpodcast for this work! #TimeBasedPrevention works! https://t.co/RRRTPk2cWl +06/25/2018,Social_workers,@socworkpodcast,"RT @LoyolaSSW: 🎧🎙️Listen to the @socworkpodcast, options for different devices: +. +. +#socialwork #podcast https://t.co/xvYIgdIPeM" +06/25/2018,Social_workers,@socworkpodcast,@black_sexgeek How did it go? Did the Klezmer intro music pump up your work out :-) +06/25/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/7OpYqGMgGB" +06/25/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: Twice in the last few months, I have been asked to complete a #depression & #suicide screening inventory by a doctor. I'v…" +06/25/2018,Social_workers,@socworkpodcast,@melaniesage @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/SSGzqGpWYh +06/25/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/0FGC6YllJS Thanks to @jcgreenfield @zerosuicide_org… https://t.co/dIdsqK3zrU +06/25/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/M5lxByE61n +06/25/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/Ix4yOOoOh9" +06/25/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/25/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/25/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/25/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/OErdd6eI6u" +06/25/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/6vYDoLmTMa +06/25/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/QrBFK61YaK +06/25/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/C69dJonn6q" +06/25/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/25/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/h7C8dGpkqF Thanks to @JoeFeagin @drvernig @DrNNegi #socialjustice +06/24/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/pFQC6UHG18 +06/24/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/eUEucanXoX" +06/24/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/2KYoFVKWMq +06/24/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/h7C8dGpkqF Thanks to @paulikonenmsw @AmyMorinLCSW… https://t.co/7dyyszZXtU +06/24/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/msWRUyoPqM" +06/24/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/24/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/24/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/24/2018,Social_workers,@socworkpodcast,@moundhousedude https://t.co/GmGUog48Fq +06/24/2018,Social_workers,@socworkpodcast,RT @moundhousedude: @socworkpodcast No problem! Thank you for all the good work you do in the social work world! +06/24/2018,Social_workers,@socworkpodcast,@moundhousedude Yes! This is 100% true. Thanks for conversation about this. +06/24/2018,Social_workers,@socworkpodcast,RT @moundhousedude: @socworkpodcast I’m so glad you’re discussing this. Too often the service provider’s well-being takes a backseat to the… +06/24/2018,Social_workers,@socworkpodcast,"@DrJulieHanks @NewHarbinger @HealingOutdoors I will always be your biggest fan, Julie :-)" +06/24/2018,Social_workers,@socworkpodcast,"RT @socwkinprogress: From a social worker, this candid perspective. @NASWMA⁩ @NASW ⁦⁦@Hunter_College⁩ ⁦@CCF_Families⁩ ⁦@socworkpodcast⁩ ⁦@n…" +06/24/2018,Social_workers,@socworkpodcast,RT @SD_SocialWorker: @AmericanAir wondering if you would support #socialworkers #nurses to support reduced/no travel costs to inspect #Dete… +06/24/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: @NWMHgrads Very true! People want understanding and connection, not an interrogation. Have you seen my book ""Helping the…" +06/24/2018,Social_workers,@socworkpodcast,RT @LoyolaSSW: The Rome study abroad group is having a great time. We just got a sneak peek 🙂coming from VaticanCity! Students &faculty att… +06/24/2018,Social_workers,@socworkpodcast,"RT @brooklyn11210: #Resist +#MacroSW +#swtech +@unu_cs +@socworkpodcast https://t.co/PDT7PkjZI4" +06/24/2018,Social_workers,@socworkpodcast,RT @creightonc: Proud to have @socworkpodcast as secretary of our @AASuicidology board. And having spent all day with @WileySocieties today… +06/24/2018,Social_workers,@socworkpodcast,Wow. @KimLeifso I'm so glad to hear that this article was so helpful. It is not often that I hear about a practical… https://t.co/A5Ia2EAptS +06/24/2018,Social_workers,@socworkpodcast,RT @socwkinprogress: Why companies need to hire social workers https://t.co/Xmm1SFsvAw Well done @PittTweet @uscsocialwork @USCDeanFlynn @W… +06/24/2018,Social_workers,@socworkpodcast,RT @DavidSusman: @socworkpodcast NEW post! 10 Simple Ways to Help Manage ‘Overwhelm’ https://t.co/UvacifSx5j #mentalhealth +06/24/2018,Social_workers,@socworkpodcast,"RT @SchoolSocWork: Please spread the word: info sessions coming up 6/26 & 7/12, apps due 8/1 for our Fall cohort! @GK_SSW @OaklandSSW @doco…" +06/24/2018,Social_workers,@socworkpodcast,"RT @KayWarren1: I had the incredible opportunity to talk w/ Dr. Jerry Reed, about the impact of mental illness & suicide prevention among m…" +06/24/2018,Social_workers,@socworkpodcast,RT @creightonc: whoa- just realized today marks exactly one year since I started at @AASuicidology . #aas365 +06/24/2018,Social_workers,@socworkpodcast,RT @melaniesage: A4. Did you know that you can be a non-lawyer representative in immigration court? @RAICESTEXAS has online training. Loca… +06/24/2018,Social_workers,@socworkpodcast,"RT @jcgreenfield: #SingleStagingArea NOW. Reuniting these kids with their parents must become a top priority. It’ll take teamwork, but we c…" +07/02/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/XtvnHREhyF Thanks to @Gngerbrdgrl @NexusFostering @rangerholton #fostercare #adoption +07/01/2018,Social_workers,@johannagreeson,"Students sew 1,000 moccasins for Indigenous children in foster care - Prince Rupert Northern View https://t.co/HSfoPFMzf1" +07/01/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/EhRO612Tks Thanks to @rryanhowells @Umpire20 @DevereuxCEO #fostercare #adoption +06/30/2018,Social_workers,@johannagreeson,RT @TheFosterNation: The Support that is Helping Make #College Graduation a New Reality for #FosterYouth Via @ChronicleSC: https://t.co/v1C… +06/30/2018,Social_workers,@johannagreeson,"RT @RJLFoundationPA: #Mentorship could change the face of the #fostercare system. Read about the importance of mentors. +https://t.co/ku1EId…" +06/30/2018,Social_workers,@johannagreeson,How Australia's Foster Care System Is Forcing Teenagers Into Homelessness https://t.co/DqVX2kthwc +06/30/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/4kcej4kBIw Thanks to @StevenNitah @ChronicleSC @Foster_EDU #fostercare #adoption +06/30/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 1.81K Mention Reach, 10 Likes, 12 Retweets, 13.1K Retweet Reach. See yours with… https://t.co/DL1wpLCYbt" +06/29/2018,Social_workers,@johannagreeson,One local nonprofit views life in foster care through a child’s eyes - Greenville Journal https://t.co/cd7Yrjnwsy +06/29/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/U9yYEUPx0C Thanks to @iacob920 @Vitaminnies @Reach_Church #fostercare #adoption +06/29/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @OneSimpleWish, @DGletow, @JoshIsBae81. Thank you! via https://t.co/fuzTp9tmoO https://t.co/25kkXYWVu9" +06/28/2018,Social_workers,@johannagreeson,"Biological, foster, adoptive father reflects on Father's Day https://t.co/ZrolbzeiAx" +06/28/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/J8N3NGZjM6 Thanks to @Fosteringltd @LogicGrl @MMS_Group #fostercare #adoption +06/28/2018,Social_workers,@johannagreeson,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/28/2018,Social_workers,@johannagreeson,Ever wonder how a judge decides if a child should be separated from his/her/their parents? & what that says about ⁦… https://t.co/dbkg3IN78j +06/27/2018,Social_workers,@johannagreeson,"2018 KIDS COUNT data are here from @aecfkidscount but as I question in this @CNN article, where are the… https://t.co/dXf2UQjCL9" +06/27/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: What does it mean to bring youth voice to the table? Marcia Hopkins, our Youth Advocacy Program Manager, explains how advoc…" +06/27/2018,Social_workers,@johannagreeson,Where are the child #maltreatment data in @aecfkidscount new 2018 report? #childwelfare #childwellbeing https://t.co/lSi2z9G24f +06/27/2018,Social_workers,@johannagreeson,"RT @PRDiva91: On @CNN, @PennSP2 @fieldcenter researcher @johannagreeson +talks #childwelfare and questions why child maltreatment #data was…" +06/27/2018,Social_workers,@johannagreeson,"RT @saray9192: Who will look at this important collection of Kids Count data? Who should? EVERYONE! As @johannagreeson also questioned,…" +06/27/2018,Social_workers,@johannagreeson,MPs calls for over-40s to pay a ‘social care premium’ https://t.co/NYMSTqFmj3 +06/27/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/X5BjNXT9Fj Thanks to @amik_ca @thaliahendo @elizabethaself #fostercare #adoption +06/26/2018,Social_workers,@johannagreeson,Alabama counties need more foster care homes https://t.co/9HqJgAHOwS +06/26/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/lBNOqznWXO Thanks to @VBVeeBee @DukeEndowment @MadisonJaye_ #fostercare #adoption +06/26/2018,Social_workers,@johannagreeson,Navigating resources for youth in #fostercare or who are #homeless in Philly can be tough. #YouthMattersPhilly app… https://t.co/Fyh7KkX2GT +06/25/2018,Social_workers,@johannagreeson,@ThirdLie #permanency #childwelfare #ChildRights #Immigration #ImmigrantChildren +06/25/2018,Social_workers,@johannagreeson,Foster care saved me: How a loving home turned a life around https://t.co/v7eyHd4F6P +06/25/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/PsfW6izuP0 Thanks to @OkAporia @PhillyAdvoKid @BeMyAdvocate #fostercare #adoption +06/24/2018,Social_workers,@johannagreeson,Inside the Native American Foster Care Crisis Tearing Families Apart https://t.co/l1eVNMxMGs +06/24/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/ETsdlhCmlV Thanks to @mccourt559 @PenLegacy @neotheprimal #fostercare #adoption +06/23/2018,Social_workers,@johannagreeson,"Arian Foster, Andre Johnson team up for youth football camp https://t.co/DhJJZLsUdw" +06/23/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/xjIuv5jwfc Thanks to @fosterhood @AshleighHNews @darkraincld #fostercare #adoption +06/23/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 1 Mention, 8 Likes, 6 Retweets, 1.31K Retweet Reach. See yours with https://t.co/NBMY2tsSf6 https://t.co/Q9ynD5qOQK" +06/22/2018,Social_workers,@johannagreeson,"RT @PennSP2: “The long-term adverse consequences of forced family separation will be felt for years to come,” says SP2's Antonio García, fo…" +06/22/2018,Social_workers,@johannagreeson,Kids brought to NYC immigration foster agency https://t.co/od8Hd8HUZf +06/22/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/eCDi4dAW7x Thanks to @AvantGardeFFA @RJLFoundationPA @MikeLoBurgio #fostercare #adoption +06/22/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @Brenda64, @TmiEnterprises. Thank you! via https://t.co/fuzTp9tmoO https://t.co/kSjXwQTIbE" +06/22/2018,Social_workers,@johannagreeson,"RT @Lexie_Gruber: .@RepKarenBass is one of the most ardent fighters for vulnerable children, and I hope we elect more women like her. https…" +06/21/2018,Social_workers,@johannagreeson,RT @AvantGardeFFA: Aging out of #fostercare doesn't have to be a nightmare for 18 yr olds. See how #California and other states are easing… +06/21/2018,Social_workers,@johannagreeson,@HelenGymAtLarge @PHLCouncil Does the multi-agency task force need members of the #Philly community who are researc… https://t.co/MVFk511pyg +06/21/2018,Social_workers,@johannagreeson,RT @DGletow: We will be here. For the kids reunified. For the kids placed in #fostercare. For the kinds in group homes. For the kids trauma… +06/21/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Terms such as ""transitioning"" & ""aging out"" de-normalizes and stigmatizes youth in care experience: http://t.co/w5PXS5D…" +06/21/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Improving foster care starts with relationships, advocates say https://t.co/UdsdgVKEFT #youthincare #fostercare #bcpoli…" +06/21/2018,Social_workers,@johannagreeson,RT @MelanieMDoucet: ‘It’s Like Being Pushed Off A Cliff’: Indigenous Youth On Aging Out Of Foster Care https://t.co/mLcTGGspRS #agingout #f… +06/21/2018,Social_workers,@johannagreeson,.@MelanieMDoucet from @mcgillu confirms ‘Relationships Matter’ for youth #agingout of #fostercare but you may be su… https://t.co/5kCCpsK77R +06/21/2018,Social_workers,@johannagreeson,"RT @DGletow: Every day at @OneSimpleWish we receive simple wishes from kids in #fostercare who are missing their siblings, families & feeli…" +06/21/2018,Social_workers,@johannagreeson,RT @DGletow: Media!Celebs! Ppl who just realized we have an issue w/ how we treat vulnerable kids in our country. Welcome. Now use your pla… +06/21/2018,Social_workers,@johannagreeson,"Immigrant children as young as 3 months old are being separated from parents, Michigan agency says https://t.co/Obs684iLsM" +06/21/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/29CAaCxhFf Thanks to @bteachey2 @Ganosono @morrisoncrying #fostercare #adoption +06/21/2018,Social_workers,@johannagreeson,@OneSimpleWish has established a Kids in Crisis Wish Fund to ensure that as needs & wishes come in from children im… https://t.co/o0zo1dgvM3 +06/20/2018,Social_workers,@johannagreeson,"Opinion | ‘If It Could Happen to Them, Why Can’t It Happen to Us?’ https://t.co/6GTELiYcVm" +06/20/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/CiDGzzIeOV Thanks to @Inferior_court_ @NomadCovfefe @HeartOCourage #fostercare #adoption +06/19/2018,Social_workers,@johannagreeson,RT @AdoptUSKids: A former foster youth shares 7 ways you can help kids in foster care https://t.co/gH9IqOTadI #fostercare https://t.co/2ek3… +06/19/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: Foster care is not a panacea. As the # of children in #FosterCare rises b/c of #opioidcrisis, more programs are needed to help…" +06/19/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +06/19/2018,Social_workers,@johannagreeson,RT @TheFosterNation: #Education Policy Needs to Catch Up to the Needs of #FosterCare Youth Via @TeenVogue: https://t.co/pLgepzPMzK +06/19/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Breaking: #HB1745 - the tuition waiver and support bill for foster/former foster youth just passed out of the House Educati… +06/19/2018,Social_workers,@johannagreeson,Immigrant children separated from parents land in foster care https://t.co/Aqq0ZjeVJQ +06/19/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/wtAK7zAb1m Thanks to @Netsbridge @hj2_day @seamuskearney_ #fostercare #adoption +06/17/2018,Social_workers,@johannagreeson,Thousands of Children in the UK Foster Care System Are Being Sold to Pedophile Rings https://t.co/998QXvAtan +06/17/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/nPO1bN99fj Thanks to @TheKnittedBrow @KultureGuides @RiversJohna… https://t.co/fahaOnlZOw +06/16/2018,Social_workers,@johannagreeson,South Carolina Sought an Exemption to Allow a Foster-Care Agency to Discriminate Against Non-Christians https://t.co/EDHNijNn3i +06/16/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/L0liGpIMCV Thanks to @missmyhappybird @JournalTribune @Hayden_Whateley #fostercare #adoption +06/16/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 4 Mentions, 11 Likes, 9 Retweets, 3.18K Retweet Reach, 1 Reply. See yours with… https://t.co/XumY7xARi7" +06/15/2018,Social_workers,@johannagreeson,Are you on board with youth boards? | News | https://t.co/f4gfCBIDEC https://t.co/TUJfXZ1xFP +06/15/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/vaWg9nYWUh Thanks to @VIHealthyLife1 @Flintastic @infoCWRP #fostercare #adoption +06/15/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @WriterChickNJ, @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/pFyFgwOoyD" +06/14/2018,Social_workers,@johannagreeson,"US Foster Care Supplies 88 Percent of Sex Trafficked Children, Study Finds https://t.co/jvCzNPEDhU" +06/14/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/DxvCK877Gn Thanks to @tpalya68 @1000LivesWales @AGAPEofNC #fostercare #adoption +06/13/2018,Social_workers,@johannagreeson,RT @TheFosterNation: How Homelessness Crisis in #LA Affects Aged-out #FosterYouth Via @YouthToday: https://t.co/YUnXdBhY7M +06/13/2018,Social_workers,@johannagreeson,How Homelessness Crisis in LA Affects Aged-out Foster Youth - Youth Today https://t.co/oChXy3diwL +06/13/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/JmdlcppECX Thanks to @JennyMikakos @whitebrownsugar @agingoutinst #fostercare #fostering +06/12/2018,Social_workers,@johannagreeson,"RT @YSRPinPhilly: ""Studies confirm what common sense tells us: young people are safer, and do better, when they are in age-appropriate sett…" +06/12/2018,Social_workers,@johannagreeson,Check out my #naturalmentoring intervention for older youth in #fostercare https://t.co/miqUW3Sc1k #oneadult https://t.co/wKwyWWfOyR +06/12/2018,Social_workers,@johannagreeson,Kids living in motel rooms amid critical shortfall in foster care https://t.co/KPJs2rlqFk +06/12/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/b5GSo05DBA Thanks to @lks221 @FamUnite4Child @TreeHouseCare #fostercare #adoption +06/12/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: With the # of children in #fostercare growing, we need more love not less. Did you know that 8 states have laws on the books t…" +06/12/2018,Social_workers,@johannagreeson,"RT @MilesEllis4: Get this people can marry the same sex but there’s still laws preventing LGBT from adopting. There also more than 400,000…" +06/11/2018,Social_workers,@johannagreeson,"RT @ChildrensRights: Amazing work from @TeenVogue & @JuvLaw1975 elevating #fosteryouth voices in the new series, #FosteredorForgotten! Educ…" +06/11/2018,Social_workers,@johannagreeson,RT @jennypokempner: Education Policy Needs to Catch Up to the Needs of Foster Care Youth https://t.co/sN84GCq1SQ via @TeenVogue #fosteredsu… +06/11/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +06/11/2018,Social_workers,@johannagreeson,NSW says it is releasing sensitive stadiums and foster care documents 'voluntarily' https://t.co/kiRWiBGEHj +06/11/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/WXMDbrdvEe Thanks to @NewsChannel256 @awake_africa @NCCPR #fostercare #childwelfare +06/10/2018,Social_workers,@johannagreeson,RT @VYHouse: Spread the word that having a couch to sleep on is NOT stable housing! #couchesdontcount #valleyyouthhouse https://t.co/Ae2Idi… +06/10/2018,Social_workers,@johannagreeson,RT @VYHouse: With 40% of homeless youth identifying as LGBTQ #pridemonth is the perfect time to talk about why #couchesdontcount https://t.… +06/10/2018,Social_workers,@johannagreeson,RT @TheFosterNation: How Prevention Services Could Help Youth Avoid the #FosterCare System Via @TeenVogue: https://t.co/hrbtQWc8Db +06/10/2018,Social_workers,@johannagreeson,"RT @ChronicleSC: Juvenile Law Center (JLC), with the support of the Annie E. Casey Foundation, has built an excellent new resource for the…" +06/10/2018,Social_workers,@johannagreeson,Justin Willis aims to raise awareness about U.S. foster care systems: ‘It created what I am today’ https://t.co/uVQIs6tR9Y +06/10/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/FZdW7SBXBS Thanks to @CauriePutnam @TripTrundle @epitomee #fostercare #adoption +06/10/2018,Social_workers,@johannagreeson,RT @PPEHRCorg: WE HAVE ARRIVED!!! Donate: https://t.co/h55yuR976z RT @DCMediaGroup: Happening Now: Poor Peoples Campaign march from Philade… +06/10/2018,Social_workers,@johannagreeson,"RT @RJLFoundationPA: Currently finishing his #masters in social work, Mark struggled to finish his #associates while homeless after he aged…" +06/09/2018,Social_workers,@johannagreeson,Foster youth celebrate their achievements at graduation ceremony https://t.co/aNcx5vdgOg +06/09/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/z92OVy09AG Thanks to @FosterFocusMag @munstermaid @RobertRoscoe14 #fostercare #adoption +06/09/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 4 Mentions, 196 Mention Reach, 22 Likes, 10 Retweets, 5.14K Retweet Reach. See yours with… https://t.co/1WcXUo5NKJ" +06/08/2018,Social_workers,@johannagreeson,We have weaponized the callous traumatization of children in the name of the promised immigration reform. https://t.co/4fKmsTrNz4 +06/08/2018,Social_workers,@johannagreeson,RT @socworkpodcast: Suicide prevention rockstar @Grace_Durbin posted a list of 13 interactions that could save a life. I loved them so much… +06/08/2018,Social_workers,@johannagreeson,RT @StoneleighFdn: #StoneleighEmergingLeader @semimora along w/ @fieldcenter is leading an initiative to help PA colleges & universities de… +06/08/2018,Social_workers,@johannagreeson,RT @TheFosterNation: I Was a Foster Child and Now I'm a #FosterCare Activist Via @TeenVogue: https://t.co/MrhSUmBWAc Written by our very ow… +06/08/2018,Social_workers,@johannagreeson,#SUICIDE PREVENTION HELP: Here is information on #suicide prevention from the National Institute of Mental Health.… https://t.co/6Ephpp1ike +06/08/2018,Social_workers,@johannagreeson,'He's a biter': why was my foster son reduced to a cruel label? | Krish Kandiah https://t.co/yn9F55XeCL +06/08/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/XcTSPC6XkO Thanks to @TXICFW @WPTV @joshkulla #fostercare #adoption +06/08/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @childwelfarelaw, @mlayten, @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/6vNKj32Kh0" +06/07/2018,Social_workers,@johannagreeson,"RT @dan_treglia: Bending the Arc, our podcast about social justice issues and the people ensuring that the arc of the moral universe reache…" +06/07/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Take a look @ the Relationships Matter for Youth 'Aging Out' of Care Project Video, ft. the talents & expertise of 8 fo…" +06/07/2018,Social_workers,@johannagreeson,Troubling Trends in Foster Care - Parental Rights Foundation https://t.co/iYjctp4Vva +06/07/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/ggFosfxjva Thanks to @ChadwickCenter @anneheffron @MiddayWYPR #fostercare #adoption +06/06/2018,Social_workers,@johannagreeson,"From DACA students to Rhodes Scholars to foster-care youth, a look at some unusual college-goers - The Hechinger Re… https://t.co/0SSYb7HuWs" +06/06/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/GZyr4X0qYk Thanks to @AttyJPaine @Rebecca4BrklRep @EADeBoestauthor #fostercare #adoption +06/05/2018,Social_workers,@johannagreeson,"RT @cfjjma: Thank you @TeenVogue @JuvLaw1975 for this excellent coverage of the foster care to prison pipeline: + +https://t.co/VzcSxc22va" +06/05/2018,Social_workers,@johannagreeson,Congress Proposes Fix to Provide Medicaid for Former Foster Youth Up to Age 26 https://t.co/ECM7H72IpU +06/05/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/76RnrJI2Tq Thanks to @phonzeygaming @drjohndegarmo @RunnerPark #fostercare #fosteryouth +06/04/2018,Social_workers,@johannagreeson,"Check out Caring Adults 'R' Everywhere (C.A.R.E.), a #naturalmentoring intervention for older youth in #FosterCare:… https://t.co/GU6LcTnvCF" +06/04/2018,Social_workers,@johannagreeson,RT @OneSimpleWish: It would be SUPER amazing @JimmyFowlie if you would help us get 5 y/o Kayden's super cool birthday wish for a boy doll g… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Want to learn more about Youth Matters Philly? Take a look: https://t.co/urxOnI4fKb +06/04/2018,Social_workers,@johannagreeson,@greg_rapport YES! You can reach me jgreeson@sp2.upenn.edu +06/04/2018,Social_workers,@johannagreeson,Opinion | The Long History of Child-Snatching https://t.co/DrogKJyith +06/04/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/CoO1RSOEO6 Thanks to @TerriLaPoint @lgbtmap @mridleythomas #fostercare #adoption +06/04/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: Are you a young person in foster care in Philly, or are you facing homelessness? #YouthMattersPhilly is for you. https://t.…" +06/04/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: ICMYI: @JuvLaw1975 launched National Extended Foster Care Review: 50-State Survey of Law and Policy https://t.co/vEKeKWFZJS +06/04/2018,Social_workers,@johannagreeson,RT @ctrupin: This 50-state review of extended foster care-one of the more powerful policies to #endyouthhomelessness-is worth a look! Kudos… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Use @YouthMattersPHL to locate services from housing to recreation to educational opportunities. Putting power in the… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Youth leaving #juvenilejustice system often need help navigating resources. #YouthMattersPhilly makes it easier: https… +06/03/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: Here's what a teen in foster care wants you to know. ""I have had those moments when I thought... 'I'm almost grown, nobody…" +06/03/2018,Social_workers,@johannagreeson,"RT @TeenVogue: ""The only thing keeping me afloat was the idea of preserving anything I saw as good for me and hoping for something better d…" +06/03/2018,Social_workers,@johannagreeson,"RT @socworkpodcast: Lots of laughter in this episode: Self care for social workers. No, it isn't all deep breathing and walks on the beach.…" +06/03/2018,Social_workers,@johannagreeson,"He Grew Up Abused In Foster Care. Now He's An Executive, And Success Is His Revenge https://t.co/2N3HGH3nEI" +06/03/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/N3B1VqPlol Thanks to @dgcars @Oh_Honestly_LC @AFTH_org #fostercare #fostercaresystem +06/03/2018,Social_workers,@johannagreeson,"RT @chronicle: Your students need you to be that teacher: the one who goes the extra step, the one who takes care of herself so she can con…" +06/02/2018,Social_workers,@johannagreeson,From foster care to Peace Corps posting: A journey of determination https://t.co/PLFFyMTBw0 +06/02/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/sIMAaXlixf Thanks to @pollyfountain @diastella1 @hlsteed #fostercare #fostering +06/02/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 1.6K Mention Reach, 26 Likes, 16 Retweets, 24.3K Retweet Reach. See yours with… https://t.co/Wde9a18Js8" +06/01/2018,Social_workers,@johannagreeson,"@BoysandGirlsAid @ChronicleSC It’s an amazing school & community full of caring, committed adults changing the live… https://t.co/nqVkfMVZ09" +06/01/2018,Social_workers,@johannagreeson,RT @ChildrensRights: Kids in #fostercare face a higher risk of being incarcerated—with devastating consequences. “As soon as kids get label… +06/01/2018,Social_workers,@johannagreeson,RT @JessicaFeierman: Our youth in foster care shouldn’t have to fight for educational opportunities. Thank you @YouthFChange and @FosterEdS… +06/01/2018,Social_workers,@johannagreeson,"RT @RachelAnspach: Youth in foster care are criminalized for normal teenage behavior, further destabilizing their lives. I reported on the…" +06/01/2018,Social_workers,@johannagreeson,@ChronicleSC @BoysandGirlsAid You should also consider a story about CB Community School here in Philly! +06/01/2018,Social_workers,@johannagreeson,RT @TamsinStirling1: I keep finding interesting examples of work to #endyouthhomelessness from N America https://t.co/7QP2XQWwVR +06/01/2018,Social_workers,@johannagreeson,RT @YouthFChange: Our member Johnathan has a strong new piece about educational hurdles for youth in foster care as part of the #fosteredor… +06/01/2018,Social_workers,@johannagreeson,RT @ProjectMMH: This tool has been needed for some time. Great work @JuvLaw1975! --> Every State’s Extended Foster Care Policies Now Availa… +06/01/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: As we exit National Foster Care Month and enter Pride Month, please check out this powerful piece in the #FosteredorForgott…" +06/01/2018,Social_workers,@johannagreeson,"Ed Gillespie Joins America’s Kids Belong, Focused on Foster Care | National Review https://t.co/Q2bsbOKuI3" +06/01/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/MXnKNDUMQl Thanks to @WDVMTV @MSTODAYnews @ricediver #fostercare #adoption +06/01/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @JuvLaw1975, @exfkaty, @saxenmeyer. Thank you! via https://t.co/fuzTp9tmoO https://t.co/4g9ZabYjH9" +06/01/2018,Social_workers,@johannagreeson,"RT @KellyMRosati: Today is the last day of national foster care month. Thanks to all the hard working social workers, court appointed speci…" +06/01/2018,Social_workers,@johannagreeson,"RT @ctrupin: As Arianna and Randy's stories illustrate, the foster care to prison pipeline runs right through and to homelessness. https://…" +06/01/2018,Social_workers,@johannagreeson,"RT @TeenVogue: ""I lost a year of education in my residential treatment facility placement — it felt like a camp where the system sends kids…" +05/31/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: BREAKING: Juvenile Law Center Launches National Extended Foster Care Review https://t.co/0WBAfWdcsH +05/31/2018,Social_workers,@johannagreeson,RT @TheFosterNation: 100 Former #FosterYouth Visit Members of Congress to Advocate for Child Welfare Reform Via @swhelpercom: https://t.co/… +05/31/2018,Social_workers,@johannagreeson,RT @LisaSwaminathan: I am so excited to share Juvenile Law Center's National Extended Foster Care Review - a new tool for advocates and pol… +05/31/2018,Social_workers,@johannagreeson,RT @ProjectMMH: As #FosterCareMonth comes to an end we hope you will keep the awareness going! Most of all we hope you see past the big num… +05/31/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: The newest piece in the #FosteredorForgotten series is from our Child Welfare Policy Director @jennypokempner and @YouthLaw… +05/31/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Presenting my research & project video @ #CASWE18 this aft, 4:30-5pm Campion College CM Auditorium. Come witness the ta…" +05/31/2018,Social_workers,@johannagreeson,10 Key Resources for Child Welfare Professionals - The Annie E. Casey Foundation https://t.co/1kIRnBzhy1 +05/31/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/AmbEHnMqwj Thanks to @LisaSwaminathan @lauraboccaleone… https://t.co/uOnTvUJMff +05/31/2018,Social_workers,@johannagreeson,"RT @nctsn: NCTSN has resources for #childwelfare professionals! Visit https://t.co/kclU69kFly +#NFCM2018 #FosterCareMonth #FosterYouthVo…" +05/30/2018,Social_workers,@johannagreeson,"RT @PennSP2: Watch @TaranaBurke #PennSP2 commencement speech tonight on C-Span. +@cspan #metoo https://t.co/b1iNe21gT8" +05/30/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: Here's what a teen in foster care wants you to know. ""I have had those moments when I thought... 'I'm almost grown, nobody…" +05/30/2018,Social_workers,@johannagreeson,"‘They Deserve It’: In Foster Homes, Veterans Are Cared For Like Family https://t.co/Up4p8NHHd9" +05/30/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/04E8GVJZSj Thanks to @ORKingsford @AcornCareFoster @thisisroxanne… https://t.co/EJ8MJk3G7L +05/29/2018,Social_workers,@johannagreeson,RT @RepKarenBass: The purpose of our child welfare system is to protect children from abuse or neglect. Never in history has this system be… +05/29/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: What is the foster care-to-prison pipeline? https://t.co/yB085pxJAF #FosteredorForgotten #NationalFosterCareMonth #FosterCa… +05/29/2018,Social_workers,@johannagreeson,Young people enter foster care when the courts determine they need to be temporarily or permanently removed from th… https://t.co/JozYVS6nud +05/29/2018,Social_workers,@johannagreeson,"This #FosterCareMonth, I stand with #FosterMore. Watch their new PSA with Jodie Blum and learn more about how to fi… https://t.co/zzuJsd5yFA" +05/29/2018,Social_workers,@johannagreeson,VA turns to foster care for veterans instead of nursing homes https://t.co/pq1C4m3hnJ +05/29/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/KdbMJ3JuX1 Thanks to @adoptolderkids @ProjectMMH @BeMyAdvocate #fostercare #fostercaremonth +05/28/2018,Social_workers,@johannagreeson,VA turns to foster care for veterans instead of putting them in nursing homes https://t.co/7NmDUcS6ZP +05/28/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/1xb115f7Go Thanks to @curraghman @knoxvilletimes @DeploReport #fostercare #fostercaremonth +05/27/2018,Social_workers,@johannagreeson,RT @nctsn: It’s #NFCM2018. Learn about #crossoveryouth at https://t.co/ulDna3hw3a #FosterCareMonth #FosterYouthVoices #FosterCare https:/… +05/27/2018,Social_workers,@johannagreeson,The Foster Care to Prison Pipeline Impacts America's Most Vulnerable Youth https://t.co/sjvUrjLnTD +05/27/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/Ym6NZwMsfc Thanks to @sokicamz @julesjup @RealMeghSingh #fostercare #fostercaremonth +05/27/2018,Social_workers,@johannagreeson,"RT @nctsn: NCTSN has resources for #childwelfare workers. Visit https://t.co/laXG0tSKjT +#NFCM2018 #FosterCareMonth #FosterYouthVoices…" +05/27/2018,Social_workers,@johannagreeson,"RT @adoptolderkids: Because no one is unadoptable. + +We envision a day when no child is asked to face adulthood alone, when every child agin…" +05/26/2018,Social_workers,@johannagreeson,"Before it's over, May is Foster Care Month: Native foster families are needed https://t.co/BpTkQ4eUyg" +05/26/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/dWRPZRf1tA Thanks to @carrietobey @bearpawshoes @AprilYoungB #fostercare #fostercaremonth +05/26/2018,Social_workers,@johannagreeson,RT @TeenVogue: “I feel like since I’m just a black kid in foster care [the justice system] doesn’t want to see us given opportunities or he… +05/26/2018,Social_workers,@johannagreeson,So impressed that @TeenVogue is tackling this important issue! You work restores my #faith in #humanity!… https://t.co/lEEAWOCeIA +05/26/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 9 Likes, 6 Retweets, 1.39K Retweet Reach, 2 New Followers, 1 Reply. See yours wit… https://t.co/nbSMhfmK6I" +05/25/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Many youth in foster care or formerly in foster care become advocates like our @YouthFChange members. Read about one person… +05/25/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: Kids seeking safety, love and stability don't discriminate, nor should foster care agencies. Love is love. We stand with you @…" +05/25/2018,Social_workers,@johannagreeson,RT @jennypokempner: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https://… +05/25/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +05/25/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: The @YouthMattersPHL app just turned one year old! https://t.co/D6V44dKuOm +05/25/2018,Social_workers,@johannagreeson,What Must We Do about Foster Care? | National Review https://t.co/kwnOS3NCUX +05/25/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/0FDVk9LcoJ Thanks to @RonniePhilly @cebc4cw @LauraMoodyFox13 #fostercare #nfcm2018 +05/25/2018,Social_workers,@johannagreeson,Our biggest fans this week: @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/tLVlj3MQjL +05/25/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Please check out @susanvmangold of @JuvLaw1975's op ed with @reggieshuford of @aclupa on the urgency of non discrimination… +05/24/2018,Social_workers,@johannagreeson,"RT @ProjectMMH: #FosterCareFact Day 24 - 10,500 youth in foster care have a case plan goal of Long Term Foster Care. 17,400 youth in foster…" +05/24/2018,Social_workers,@johannagreeson,"Pro-Life Should Include Foster Care, Too | National Review https://t.co/mOGS8SYiPh" +05/24/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/VrJ5knQQIO Thanks to @tfcsunderland @Casey_Foster_1 @NYSOCFS #fostercare #fostercaremonth +05/23/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: ""Every kid is one caring adult away from being a success story."" -Josh Shipp #fostercare #NFCM2018 https://t.co/x3R9wo85RS" +05/23/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: #FosterCareMonth #FosteredorForgotten https://t.co/KJjAf0ZQ3r https://t.co/jvzBBf8NYr +05/23/2018,Social_workers,@johannagreeson,"RT @YouthMattersPHL: Finding services you need as a youth in foster care or facing homelessness is challenging. In #Philly, @YouthMattersPH…" +05/23/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +05/23/2018,Social_workers,@johannagreeson,Fostering success - AACC 21st Century Virtual Center https://t.co/1NQWZcNxWf +05/23/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/5qNMxH9UKC Thanks to @danielrhamilton @RepPaulMitchell @JamieRossi6… https://t.co/msG82SACua +05/22/2018,Social_workers,@johannagreeson,#fosterstrong #NFCM2018 https://t.co/nnqkqxSSKi +05/22/2018,Social_workers,@johannagreeson,"'I was told to find a homeless shelter': Foster kids cut loose at 18 ending up jobless, homeless https://t.co/jadTPwCYoO" +05/22/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/newutTlsCF Thanks to @gary_pickles @tayknopf @legalscoop #fostercare #fostercaremonth +05/21/2018,Social_workers,@johannagreeson,Leave No One Orphaned | National Review https://t.co/rwKcCHJJaT +05/21/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/TWTpUe73MZ Thanks to @hackneycitizen @dominickambro @Cortigirl1 #fostercare #fcf18 +07/02/2018,Social_workers,@JimmySW,"RT @Livingstone_S: Critical thinking in action here: ""boyd’s failure to theorize the concept of critical thinking subverts the present deba…" +07/02/2018,Social_workers,@JimmySW,"Adam Sandler sporting an @VCU shirt in this story :-) +Adam Sandler photobombs happy couple's wedding photo. https://t.co/h0hrR0WR8O" +06/29/2018,Social_workers,@JimmySW,@reneehobbs Just finished listening to this lecture. WOW. Such great information. I really appreciate this perspect… https://t.co/TW3cq9zj17 +06/27/2018,Social_workers,@JimmySW,RT @husITaOrg: husITa is delighted to announce the winners of the Best Human Services App Idea Award 2018. https://t.co/jtVuP2QP6Z +06/27/2018,Social_workers,@JimmySW,That @husITaOrg banner looks great 👍 👀 👍 #swtech https://t.co/LLjbNrO31l +06/27/2018,Social_workers,@JimmySW,RT @voxdotcom: Alexandria Ocasio-Cortez wasn't the only woman to score a major victory Tuesday. https://t.co/56dDDJKaRz +06/27/2018,Social_workers,@JimmySW,"RT @ddiamond: Merrick Garland was nominated on March 16, 2016 — or 237 days before that year’s election. McConnell said that was too close…" +06/27/2018,Social_workers,@JimmySW,"RT @RBReich: To those GOP senators who have spoken out against Trump's attacks on our democracy, now is your chance to stand firm on those…" +06/27/2018,Social_workers,@JimmySW,RT @acosaorg: Study: Needs Assessment Survey for a Resource to Support Evidence-Based Practice. The study is approved by the University of… +06/27/2018,Social_workers,@JimmySW,RT @MelindaHohman: My sister-in-law is collecting for supplies and clothes for 50 children separated from asylum-seeking parents who are ho… +06/26/2018,Social_workers,@JimmySW,"RT @pewinternet: Many users see social media as an especially negative venue for political discussions, but others see it as simply “more o…" +06/25/2018,Social_workers,@JimmySW,RT @reneehobbs: ICYMI: My lecture on The Competing Narratives of Digital and Media Literacy on #SoundCloud #medialiteracy #mediaecology2018… +06/24/2018,Social_workers,@JimmySW,@GoogleGuacamole @monicarysavy It’s a pretty versatile platform and their customer service has always been amazing IMHO. +06/24/2018,Social_workers,@JimmySW,@GoogleGuacamole @monicarysavy I use it all the time in my research (mostly surveys) but I have seen someone build… https://t.co/AqbhTGPBrA +06/23/2018,Social_workers,@JimmySW,This could have been in my recent blog post for @husITaOrg on #digitalliteracies https://t.co/CaVSSyijRp +06/23/2018,Social_workers,@JimmySW,RT @pewinternet: Americans have grown somewhat more ambivalent about the impact of digital connectivity on society as a whole https://t.co/… +06/23/2018,Social_workers,@JimmySW,A recent blog post I wrote for @husITaOrg about social media & digital literacies. #SWTech #digitalliteracies https://t.co/x5SifcmlYa +06/23/2018,Social_workers,@JimmySW,"RT @husITaOrg: husITa Board Member @AMLTaylor66 has been nominated on a slate for Female GovTech Leaders 2018, please RT and vote https://t…" +06/22/2018,Social_workers,@JimmySW,That’s because many Americans are starting to see that 1 or 5 or whatever $$$ amount there income went up is not ke… https://t.co/ntk7tikns3 +06/22/2018,Social_workers,@JimmySW,RT @njsmyth: I stand with my #socialwork colleagues at NADD against #ChildrenInCages And now we must address the harm this policy has cause… +06/21/2018,Social_workers,@JimmySW,RT @acosaorg: Join us at 9:00 PM EST tonight for #MacroSW Chat on current US #immigration #policy and what social workers should be doing.… +06/21/2018,Social_workers,@JimmySW,"@btblankenship and one more that I just did for @ARNOVA +https://t.co/KwNBMrur7k" +06/21/2018,Social_workers,@JimmySW,"@btblankenship Also, you can check out some of my publications here https://t.co/q2mA0SOawl +But specifically you mi… https://t.co/YMCqhkthl9" +06/21/2018,Social_workers,@JimmySW,"Hi @btblankenship here are some links to recent presentations regarding social media. +https://t.co/KwNBMrur7k +https://t.co/kpHax5Dht1" +06/19/2018,Social_workers,@JimmySW,Happy to help. I’ll try to tweet out some recent work/presentations I’ve done. You can always check out my blog… https://t.co/wlhtzmdNt1 +06/19/2018,Social_workers,@JimmySW,RT @Dr_Pracademic: New Article out on supporting new instructors in social work. With my mentor @spencerm1014 https://t.co/J0Mq0c2gAk +06/18/2018,Social_workers,@JimmySW,If Republicans control both houses of Congress & the Whitehouse AND they can craft tax reform radically altering th… https://t.co/W8aX8GKxLV +06/17/2018,Social_workers,@JimmySW,"My #FathersDay cards included stories of unicorns, dinosaurs, & hot wheels. Couldn’t have asked for anything better. I love being a dad 😃" +06/17/2018,Social_workers,@JimmySW,RT @SDSUSocialWork: A running list of how to help fight family separation at the border: https://t.co/zvqNz772A5 via @slate +06/17/2018,Social_workers,@JimmySW,"RT @lakeya_cherry: When your designer/photographer has a vision that's ""disruptive."" @TheNSWM #NSWM29 #leadership #Management #disruptivele…" +06/16/2018,Social_workers,@JimmySW,RT @brooklyn11210: @laurelhitchcock @CSocialWorkEd @karenzgoda @socworkpodcast @SJSworks @melaniesage @StuckonSW @Brendan_Beal @DrNJonesTSU… +06/16/2018,Social_workers,@JimmySW,RT @SDSUSocialWork: Thanks to @lakeya_cherry and our San Diego chapter of @TheNSWM for their hard work on this wonderful conference! Happy… +06/15/2018,Social_workers,@JimmySW,RT @njsmyth: Guiding principles of @2Uinc @chippaucek #NSWM29 #EdTech https://t.co/Gyd4HHu3y7 +06/15/2018,Social_workers,@JimmySW,"@OfficialMacroSW @spcummings @brooklyn11210 #FF, thanks for being my top influencers in the last week :) (Want this… https://t.co/8oq61zKg7c" +06/14/2018,Social_workers,@JimmySW,Thanks for coming to my presentation. So great to see all of you 😄 #NSWM29 https://t.co/dgVjDWanbA +06/14/2018,Social_workers,@JimmySW,RT @njsmyth: How Did We Get Here? Web 1.0 to Web 3.0 #NSWM29 https://t.co/BtLIOmby3L +06/14/2018,Social_workers,@JimmySW,RT @Sisgigroup: #Leaders have to have a purpose in whatever they do. We have to understand the change we want to see happen. What is my rol… +06/14/2018,Social_workers,@JimmySW,RT @Sisgigroup: It’s all about how much change you want to see. Being a disruptive leader is about pushing with intentional purpose for the… +06/14/2018,Social_workers,@JimmySW,"RT @_Patty_Ramirez_: ""Disruptive leadership maximizing inclusion, invention, and innovation in human services with meaningful purpose is wh…" +06/14/2018,Social_workers,@JimmySW,I’m at #NSWM29 and I hereby declare they have the best ribbons of any conference I’ve ever been to 😂😂😂 https://t.co/YmKYjH0o0n +06/13/2018,Social_workers,@JimmySW,I'm ready!!! Looking forward to this conference and meeting new colleagues. Should be a great time on the beautiful… https://t.co/7nzFqX5uVh +06/13/2018,Social_workers,@JimmySW,RT @kshaferbyu: Jeff Bezos said that he is spending money on space exploration because he doesn't know how else to spend it. Maybe better w… +06/13/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY San Diego is looking for a Consultant Psychiatrist for nine (9) hours a week at Reflections Day Treatment. This po… +06/13/2018,Social_workers,@JimmySW,"RT @CalSWEC: Make an difference in the lives of Californians! Apply to CalSWEC’s Title IV-E, https://t.co/IwyUQFYJaL and MHSA Stipend Progr…" +06/12/2018,Social_workers,@JimmySW,"RT @spcummings: Excellent article by @socworkpodcast. ""We need to address well-being starting in kindergarten, not wait until a high school…" +06/12/2018,Social_workers,@JimmySW,"RT @iamrodneysmith: Hello to Alabama . I will be mowing in Montgomery Tuesday morning . If you know of anyone who is elderly, disabled, a s…" +06/11/2018,Social_workers,@JimmySW,@laurelhitchcock @nancy_kusmaul #HappyMonday Check out the top influencers in my community this week! (via Twitter… https://t.co/Zs7MsaPk4l +06/08/2018,Social_workers,@JimmySW,#FollowFriday @matthod @EJohnsonLCSW - top engaged members this week :) - Get your [Free] scheduled tweet here: https://t.co/xi7BVuOrua +06/08/2018,Social_workers,@JimmySW,RT @reneehobbs: Summer time is a good time for reflection: How many of these instructional practices of media literacy education do you use… +06/07/2018,Social_workers,@JimmySW,"RT @CSocialWorkEd: The House will soon be voting on #PROSPERAct (H.R. 4508), which will negatively impact #highereducation & #socialwork st…" +06/07/2018,Social_workers,@JimmySW,RT @lakeya_cherry: Got Swag? A sneak preview of our #NSWM29 swag this year! #socialworkerslead #MacroSW https://t.co/7yDIXkMAsY +06/07/2018,Social_workers,@JimmySW,"RT @DrPraxisAlly: To all social justice, social work, and community organizers out there... What are your favorite & current macro practice…" +06/06/2018,Social_workers,@JimmySW,Making #DeleteFacebook easier every single day!!! https://t.co/uQIKf44nKB +06/06/2018,Social_workers,@JimmySW,RT @lakeya_cherry: It's Official! @TheNSWM 30th Anniversary Conference is going to be in #Chicago! I'm super excited to partner w/ Dean #Go… +06/04/2018,Social_workers,@JimmySW,Kudos to @Apple for taking these steps. Anyone know if newspapers did things to cut their risk factors for poor hea… https://t.co/uRuQWx016G +06/04/2018,Social_workers,@JimmySW,@matthod I think this one would suit you very well https://t.co/39p2wrTE1U 😂😂😂😂😂😂 +06/04/2018,Social_workers,@JimmySW,@courtneyann2018 @nick_molina - Today's featured top influencers #HappyMonday (🚀 via https://t.co/J5I50dsGnh) +06/04/2018,Social_workers,@JimmySW,@alessandrasw19 @mlo002 @SD_SocialWorker - #HappyMonday Check out the newest engaged members in my community! (Want… https://t.co/t6Om7VYHYi +06/04/2018,Social_workers,@JimmySW,@CSocialWorkEd @scottcowley Check out the top engaged members in my community this week! - 🙏Grow your #Twitter foll… https://t.co/VQbiTT9cqq +06/03/2018,Social_workers,@JimmySW,@UBSSW @MarshAlesia @Hayley_msw Check out the top engaged members in my community this week! - Increase engagement… https://t.co/616SY6caIC +06/01/2018,Social_workers,@JimmySW,"@sm4sw @DrNJonesTSU @mmt98 #FF, thanks for being my top engaged members in the last week :) - 🚀Increase your real f… https://t.co/FnMKudywnS" +06/01/2018,Social_workers,@JimmySW,@UBSSW @OfficialMacroSW I sent you an email 😉 +06/01/2018,Social_workers,@JimmySW,I love Forest 😂😂😂😂😂 #macrosw #SoJustProfiling https://t.co/UMEmw5hV3t +06/01/2018,Social_workers,@JimmySW,Forgot to say hello to everyone on #macrosw chat tonight 😂 https://t.co/QGgH3xWbpn +06/01/2018,Social_workers,@JimmySW,@karenzgoda @laurelhitchcock Never gonna say bye. Just see you later 😉😉😉 #MacroSW +05/31/2018,Social_workers,@JimmySW,Latest #socialmedia stats among U.S. is fairly interesting. https://t.co/gddXDqaeHt @pewinternet #SWTech #byeFacebook 😂😂 +05/30/2018,Social_workers,@JimmySW,"RT @voxdotcom: Medicaid expansion for Virginia is an all-but-done deal at this point. + +400,000 people will gain health insurance. + +Electio…" +05/30/2018,Social_workers,@JimmySW,RT @CSocialWorkEd: The New Social Workers report from the National #SocialWork Workforce Study summarizes who is entering the social work p… +05/30/2018,Social_workers,@JimmySW,RT @mmfa: Sean Hannity ran with Trump's conspiracy theories -- the exact same conspiracy theories that Fox News anchor Shep Smith debunked… +05/24/2018,Social_workers,@JimmySW,RT @husITaOrg: Latest blog post by Gareth Morgan (Vice-Chair of husITa) on Social welfare benefits and technology https://t.co/ke5HWRECt0 +05/22/2018,Social_workers,@JimmySW,Thanks for the retweets this week @socworkpodcast @CADDSWPrograms much appreciated! - 🚀BOOST your followers! https://t.co/BUSIg629VG +05/21/2018,Social_workers,@JimmySW,"RT @NPR: Breaking: The Supreme Court in a 5-4 vote has delivered a major blow to workers, ruling for the first time that workers may not ba…" +05/21/2018,Social_workers,@JimmySW,"RT @pewinternet: % of U.S. adults who use … +- YouTube: 73% +- Facebook: 68 +- Instagram: 35 +- Pinterest: 29 +- Snapchat: 27 +- LinkedIn: 25 +-…" +05/19/2018,Social_workers,@JimmySW,Another year done with #csusmsw and it’s been awesome. Congrats again to all the graduates. #CSUSM2018 +05/18/2018,Social_workers,@JimmySW,@melaniesage @afmerant Check out the top engaged community members in my community this week! - 🙏Grow your #Twitter… https://t.co/uR58eaWJpp +05/18/2018,Social_workers,@JimmySW,RT @kshaferbyu: There will be more calls for guns in schools today. Such laws create more carnage than stop it. Just remember this handy (a… +05/16/2018,Social_workers,@JimmySW,RT @OfficialMacroSW: Want to build out new website? Check out our RFP https://t.co/PmvG5qVuaK #NPTech #MacroSW +05/15/2018,Social_workers,@JimmySW,Getting ready for the #CSUSMSW Graduation Celebration tonight. I sure am excited to see these students walk across… https://t.co/Ki7inNyp2S +05/15/2018,Social_workers,@JimmySW,@mecahwelch @bud34usmc Check out the top influencers in my community this week! - 🚀 Grow your twitter followers with https://t.co/yagMrMcNT6 +05/12/2018,Social_workers,@JimmySW,RT @CSUSM: Our Class of 2018 inspires us! One week until the big day! #CSUSM2018 https://t.co/1J6LsJOu0O +05/10/2018,Social_workers,@JimmySW,@causeisaidSOph @courtneyann2018 @nick_molina Check out the top influencers in my community this week! - 🚀Engage yo… https://t.co/jwpEw1hBqb +05/10/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY is hiring a Bilingual Case Manager to join our First 5 First Steps program! Apply to Requisition ID#1119 at https:… +05/09/2018,Social_workers,@JimmySW,#csusmsw https://t.co/6K0EvAfhrf +05/09/2018,Social_workers,@JimmySW,@alessandrasw19 @nancy_kusmaul @mlo002 Check out the top influencers in my community this week! - 🚀 Grow your twitt… https://t.co/IvdqIE1y0h +05/08/2018,Social_workers,@JimmySW,"Charles Dickens once wrote “it was the best of times, it was the worst of times.” + +Little did people know he was t… https://t.co/qGH4hoZOK6" +05/08/2018,Social_workers,@JimmySW,"RT @JHUCCSS: ICYMI: DYK which industry employed the 3rd most workers in the U.S. in 2015? It's not construction, real estate, or finance. I…" +05/08/2018,Social_workers,@JimmySW,Two for one special 😂😂😂 https://t.co/6iGHI28yiN +05/08/2018,Social_workers,@JimmySW,I’m thinking of starting my own subscription service. High Five Friday’s. For only $5 a month you get all the virtu… https://t.co/aG7OF3SU3f +05/04/2018,Social_workers,@JimmySW,RT @FISOnline: Very pleased @SAGEsocialwork & @AllianceNews can share the enduring insights of Richmond & other pioneers with the social wo… +05/04/2018,Social_workers,@JimmySW,#csusmsw https://t.co/6w1nWC4KAw +05/03/2018,Social_workers,@JimmySW,RT @MelindaHohman: Why We Have to Social Work This https://t.co/yVCzIltGng via @npquarterly +05/02/2018,Social_workers,@JimmySW,@scottcowley @CSocialWorkEd Check out the top engaged members in my community this week! - 🚀shared with love by https://t.co/mmTgR22jhc +05/02/2018,Social_workers,@JimmySW,"RT @pewinternet: Even as they view the internet’s personal impact positively, Americans have grown somewhat more ambivalent about its impac…" +05/01/2018,Social_workers,@JimmySW,Hey #csusmsw students. Wanna chime in to help @melaniesage 👇👇👇 https://t.co/6ekVFD194l +05/01/2018,Social_workers,@JimmySW,Neither. Being in shape is overrated 🙄 https://t.co/rk2aWlt1Rv +05/01/2018,Social_workers,@JimmySW,#csusmsw https://t.co/ycqsyOGNYc +04/30/2018,Social_workers,@JimmySW,#interesting https://t.co/mRzaRJ1sFH +04/29/2018,Social_workers,@JimmySW,RT @pewinternet: Experts say technology alone can’t win the battle against misinformation online in the coming decade https://t.co/y7naz4xq… +04/28/2018,Social_workers,@JimmySW,RT @GottmanInst: There's a reason why @BreneBrown inspires millions of people around the world with her words of wisdom. https://t.co/jflBB… +04/27/2018,Social_workers,@JimmySW,"RT @GottmanInst: Dozens of men in Philadelphia, Pennsylvania, are meeting on a regular basis to ""hold each other accountable"" and collectiv…" +04/27/2018,Social_workers,@JimmySW,#FollowFriday @DrNJonesTSU @Hayley_msw - top engaged members this week :) - GROW your twitter audience https://t.co/ZT62HKpP4D +04/25/2018,Social_workers,@JimmySW,Thanks for the retweets this week @sm4sw @zsu98 much appreciated! - 🚀Engage your followers [free] https://t.co/6IbRy0h4je +04/24/2018,Social_workers,@JimmySW,Pretty cool that @OLLUWordenSSS sends these out to reviewers for the @SWDEConference in appreciation of service. Th… https://t.co/xsomMfy384 +04/22/2018,Social_workers,@JimmySW,#csusmsw students might be interested in the @CSocialWorkEd Minority Fellowship Program. Check out the link for mor… https://t.co/TvnfLhRTJt +04/22/2018,Social_workers,@JimmySW,"RT @pewinternet: Demographics of U.S. adults who use Twitter + +Men: 23% +Women: 24 + +White: 24% +Black: 26 +Hispanic: 20 + +Ages 18-29: 40% +30-49…" +04/21/2018,Social_workers,@JimmySW,"RT @husITaOrg: Just a reminder about our $1,000 competition for the #bestidea4ahumanserviceapp. Open until Monday 11th May 2018. Please RT…" +04/20/2018,Social_workers,@JimmySW,#FollowFriday @TheNSWM @AllysonVarley @mecahwelch - top engaged members this week :) - 🚀Engage your followers [free] https://t.co/6IbRy0h4je +04/19/2018,Social_workers,@JimmySW,"#AlexaBlueprints means I can create skills so my kids will quit asking Alexa to make fart noises 🙄🙄🙄 +https://t.co/uJcjrD0Mxi" +04/19/2018,Social_workers,@JimmySW,"RT @AndyThorburnCA: Trump’s Mar-A-Lago trips (2017) $6.6 mil +Ryan Zinke’s office doors: $139k +Scott Pruitt’s phone booth: $43k +Ben Carson’…" +04/19/2018,Social_workers,@JimmySW,"RT @ajplus: The Senate unanimously voted to allow Senator Tammy Duckworth’s baby on the voting floor 👶🏻 + +The new rules, which Duckworth had…" +04/19/2018,Social_workers,@JimmySW,RT @kashhill: When a PR person reminds you that you wrote about Facebook’s reverse phone look-up being used nefariously way back in 2012 ba… +04/19/2018,Social_workers,@JimmySW,RT @BuzzFeed: You won't believe what Obama says in this video 😉 https://t.co/n2KloCdF2G +04/19/2018,Social_workers,@JimmySW,#CSUSMsw https://t.co/x55zDX3LGV +04/18/2018,Social_workers,@JimmySW,RT @reneehobbs: This great @TheCrashCourse on #medialiteracy features the amazing @jsmooth995 exploring the topic of media ownership. Fine… +04/17/2018,Social_workers,@JimmySW,"RT @MHager_ASU: Masters student got top course nod on policy analysis, so we had her re-frame and post up blog on tax implications for 2018…" +04/17/2018,Social_workers,@JimmySW,Thanks for the retweets this week @RoseBSingh @SDSUSocialWork much appreciated! - 🚀 Grow your followers with https://t.co/oJy0ucHADM +04/15/2018,Social_workers,@JimmySW,"RT @AllysonVarley: Are you a #primarycare provider? + +Please consider filling out this survey (for my dissertation project): https://t.co/7…" +04/15/2018,Social_workers,@JimmySW,"Interesting use of #Blockchain to help in Human Service providers working with the homeless in Austin, TX.… https://t.co/DRXaDacRWM" +04/15/2018,Social_workers,@JimmySW,"RT @socworkpodcast: You could win $500, but more importantly you could help Dr. Jay Miller (my guest in episode 117) with his research on #…" +04/15/2018,Social_workers,@JimmySW,RT @MelindaHohman: Diffusion theory and multi-disciplinary working in children’s services - https://t.co/P2enmwZ9FU #ScholarAlerts +04/13/2018,Social_workers,@JimmySW,#FollowFriday @MarshAlesia @DoinTheWorkPod - top engaged members this week :) - Tweet ❤️ via https://t.co/DcXwGc09Lz +04/13/2018,Social_workers,@JimmySW,"RT @husITaOrg: Do you have a compelling idea for a new human services app? Why not enter it in our competition? You could win $1,000. https…" +04/12/2018,Social_workers,@JimmySW,"RT @kanter: The Age of Automation for Nonprofits - Bots, AI, and the Struggle for Humanity - @Afine and I co-authored a post for @SSIRevie…" +04/12/2018,Social_workers,@JimmySW,RT @JoshuaMZeitz: Paul Ryan now enjoys the peace of mind that when he turns 50—in less than two years—he will enjoy a defined-benefits pens… +04/11/2018,Social_workers,@JimmySW,"RT @JoeNBC: Robert Mueller—Republican +Attorney General—Republican +FBI Director—Republican +DAG Rosenstein—Republican +(4) FISA Judges—Repu…" +04/11/2018,Social_workers,@JimmySW,So with Speaker Ryan’s retirement in January... That gives him less than a year to mount a presidential bid & oust Trump. Does it happen??? +04/11/2018,Social_workers,@JimmySW,RT @danpfeiffer: It would be cool to see Zuckerberg questioned by people who know how Facebook works +04/11/2018,Social_workers,@JimmySW,Soooo...Who's watching the #SocialNetwork tonight after today's #Zuckerberg hearing? LOL 😀😀😀 +04/10/2018,Social_workers,@JimmySW,"RT @TheWalkerWay_1: The caption speaks for itself! Social media can be a cancer when not used properly! #Csusmsw +https://t.co/NkFgOfzA30" +04/10/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY is hiring a Bilingual Clinician to join our CAT program! Apply to Requisition ID#1109 at https://t.co/4VZEe9yUxb !… +04/10/2018,Social_workers,@JimmySW,RT @PreetBharara: Whataboutism about to reach a 52-week high +04/10/2018,Social_workers,@JimmySW,"RT @pewinternet: How does our study define Twitter bots? Broadly speaking, bots are automated accounts that can post content or interact wi…" +04/09/2018,Social_workers,@JimmySW,RT @husITaOrg: New on the husITa blog by @EmilyK100 https://t.co/31kDaJPAId +04/08/2018,Social_workers,@JimmySW,RT @mgspeaks: This Simple Note-Taking Method Will Help You Read More (and remember what you’ve read) https://t.co/6EmdoutqRN +04/08/2018,Social_workers,@JimmySW,"Is it still an “exclusive” offer if you’ve received an email about almost every day + +For the last 6 months?!? +🤔🤔🤔🤔🤔🤔🤔🤔" +04/08/2018,Social_workers,@JimmySW,"RT @Spacekatgal: I believe we should eliminate President’s Day as a holiday and make Election Day a national holiday in its place. + +I can…" +04/08/2018,Social_workers,@JimmySW,"RT @voxdotcom: There's been lots of talk of the danger of social media. But Sinclair is a good example of how political media, including ou…" +04/08/2018,Social_workers,@JimmySW,RT @RWJF: A study out of Massachusetts suggests making regular deliveries of meals to people who are food insecure drives down their use of… +04/07/2018,Social_workers,@JimmySW,Looking through my data settings on Twitter and it thinks I speak Tagalog. Um sorry but I wish 😂😂😂 +04/07/2018,Social_workers,@JimmySW,Should be an excellent conference. And tacos 🌮 🌮 😂😂😂😂 @TheNSWM @SDSUSocialWork #tacos https://t.co/ivfFlbVNHU +04/06/2018,Social_workers,@JimmySW,#FollowFriday @UBSSW @spcummings - top engaged members this week :) - 🚀Get More #Twitter Followers https://t.co/8KGZfzUiJH +04/04/2018,Social_workers,@JimmySW,Awesome lunch today at Facebook. They have sooo much free stuff. And an arcade. Is it too late for me to switch my… https://t.co/75nvRrn640 +04/04/2018,Social_workers,@JimmySW,"RT @repjohnlewis: 50 years ago today, I learned the painful news that my friend, my mentor, Dr. Martin Luther King, Jr. had been assassinat…" +04/02/2018,Social_workers,@JimmySW,I got my pizza 🍕 did you get yours 😂😂😂 https://t.co/kx5kxLOUwQ +04/01/2018,Social_workers,@JimmySW,#FollowFriday @SWpodcast @laurelhitchcock - top engaged members this week :) #TopMembers #Thanks - 🚀Grow with https://t.co/QLpnsPNqie +04/01/2018,Social_workers,@JimmySW,Hey @Wendys what will happen if I go through your drive through and ask them to surprise me? +03/31/2018,Social_workers,@JimmySW,RT @socworkpodcast: @SD_SocialWorker The solution to pollution is dilution. Fill Twitter with accurate information. #SWMONTH +03/31/2018,Social_workers,@JimmySW,"Additionally, I laugh whenever I tweet with #socialmedia or #Influencer or #SEO and I right away pick 5 to 10 new f… https://t.co/6BqdaCYWvm" +03/31/2018,Social_workers,@JimmySW,I wish #socialmedia bloggers and influencers would put dates on their blogs. Makes it much easier to provide a citation 🤔 +03/31/2018,Social_workers,@JimmySW,RT @jacobsonjenna: Where's Waldo? Answer: in Google Maps... and there goes half an hour of my Saturday. https://t.co/RSpGPbxRDu +03/31/2018,Social_workers,@JimmySW,RT @JaimeMBooth: Check out my new article! We used twitter feeds to understand neighborhood dynamics...this is just the tip of the ice berg… +03/31/2018,Social_workers,@JimmySW,"@sm4sw #FF, thanks for being my top engaged members in the last week :) - Powered by https://t.co/lph8r5ru4I" +03/31/2018,Social_workers,@JimmySW,#FollowFriday @Info4Practice @ProfessorTD @Dr_Pracademic - top engaged members this week :) - Get #Website Traffic… https://t.co/EHnKELfoBl +03/30/2018,Social_workers,@JimmySW,My Latest publication with @mcleodda & @Dr_Pracademic just came out in The Journal of Social Work Values & Ethics.… https://t.co/pBOc4wlBvD +03/30/2018,Social_workers,@JimmySW,RT @sh_way: Hewlett Pledges $10M to Study Social Media and “Fake News” https://t.co/H7ob6jCkxT via @npquarterly +03/29/2018,Social_workers,@JimmySW,"RT @samlymatters: MAGA twitter: we don’t need gun control we just need to stop bullying people + +Me: maybe we should also do gun control + +MA…" +03/29/2018,Social_workers,@JimmySW,Anyone in my #swtech network have a list of great podcasts for use in teaching across the curriculum? Things like… https://t.co/NlYBPHdA3F +03/28/2018,Social_workers,@JimmySW,RT @mgilster77: How two movements are received so differently: https://t.co/gaDSE5kbPy +03/27/2018,Social_workers,@JimmySW,"RT @csusm_oie: Quote of the month! +""In a time of deceit, telling the truth is a revolutionary act."" -George Orwell" +03/27/2018,Social_workers,@JimmySW,"RT @pewinternet: The offline population in the U.S. has declined substantially since 2000. Today, just 11% of U.S. adults do not use the in…" +03/27/2018,Social_workers,@JimmySW,@mecahwelch @meagan_chisholm @TaraNmsw - #HappyMonday check out my top engaged members :) - 🚀Increase your Twitter… https://t.co/Cs8mzZI94S +03/27/2018,Social_workers,@JimmySW,"RT @pewinternet: % of U.S. adults who use … +- YouTube: 73% +- Facebook: 68 +- Instagram: 35 +- Pinterest: 29 +- Snapchat: 27 +- LinkedIn: 25 +-…" +03/24/2018,Social_workers,@JimmySW,"RT @reneehobbs: Teaching about new forms of propaganda, like #sponsoredcontent, is essential! #Com416 Check out this news story on @CamAnal…" +03/24/2018,Social_workers,@JimmySW,RT @ConversationUS: Tomorrow's #MarchForOurLives is calling for new #GunControl measures. Here's what experts have to say on various propo… +03/24/2018,Social_workers,@JimmySW,CHURCH! So much in Academia needs to change. I think much of this could come down to financial incentives or other… https://t.co/Sy2Bb8wGPG +03/21/2018,Social_workers,@JimmySW,RT @pewinternet: NEW REPORT: The Science People See on Social Media – Science-related Facebook pages draw millions of followers but 'news y… +03/21/2018,Social_workers,@JimmySW,@DorlisaMinnick @mmt98 - Thanks for being part of my community :) #TopMembers #Thanks - 🚀Grow your followers with https://t.co/UV0wjecH40 +03/21/2018,Social_workers,@JimmySW,"@Hayley_msw I need to email you back. But you know>>> Dishes, laundry, and oh yeah the book chapter I need to finis… https://t.co/lZdvosZEFt" +03/20/2018,Social_workers,@JimmySW,"@SocWrkDoc @MsAlandis #HappyMonday, thanks for being my top engaged members in the last week :) - 📈Get More Twitter… https://t.co/ETHMMzkEtY" +03/20/2018,Social_workers,@JimmySW,"You can always tell when I don’t want to write. Dishes are done, laundry is folded, and I even had time for a show.… https://t.co/mK5GPEus1F" +03/19/2018,Social_workers,@JimmySW,"RT @pewinternet: Demographics of U.S. adults who use Twitter + +Men: 23% +Women: 24 + +White: 24% +Black: 26 +Hispanic: 20 + +Ages 18-29: 40% +30-49…" +03/18/2018,Social_workers,@JimmySW,RT @shiffle6: Claims of social media ‘addiction’ are full of bad science — its real impact might be more positive than you think - via Lase… +03/18/2018,Social_workers,@JimmySW,#FollowFriday thanks @StuckonSW @CSocialWorkEd - top Influencers members this week :) - 📈Get More Twitter Followers… https://t.co/Qe0HL1JOi9 +03/17/2018,Social_workers,@JimmySW,@AHS_Warranty @njsmyth - Thanks for being part of my community :) - 🚀Grow your followers with https://t.co/O9Flmh9ejW #Growth #Twitter +03/17/2018,Social_workers,@JimmySW,@becky_anthony @mltetloff @SWShaylaS thanks for being my top influencers in the last week :) #ThankYou - 🚀via https://t.co/AChhbmE8us +03/16/2018,Social_workers,@JimmySW,@LeneLeft @NRuggiano_PhD @Manarkustiro - thanks to my top influencers this week :) - 🚀 Grow your followers with https://t.co/NVakDPtCTO +03/16/2018,Social_workers,@JimmySW,Thanks for the retweets this week @kadixonsw @legalLMSW much appreciated! via https://t.co/eB1zhbzpS9 +03/16/2018,Social_workers,@JimmySW,@Carolyn65641191 @DiaxKeith @ERL_SW - check out my top recently engaged followers :) - 🚀 Grow your followers with https://t.co/6xFfWpbE4Y +03/15/2018,Social_workers,@JimmySW,@rll004 @DeniseMSW @aimee_MSW - Thanks for being part of my community :) (🚀 via https://t.co/XbY0J6HrCF) +03/15/2018,Social_workers,@JimmySW,@husITaOrg @ritter_molly @wirthadrienne - Happy to have you in my community :) (🚀 via https://t.co/XbY0J6HrCF) +03/15/2018,Social_workers,@JimmySW,Something interesting is going on. https://t.co/FuIHLyMqMw +03/15/2018,Social_workers,@JimmySW,@TrynAmber @KESollenberger @K_Nguyen26 - #ShoutOutWednesday these are my favorite influencers this week! - 🙏insight… https://t.co/119qCrwL2T +03/15/2018,Social_workers,@JimmySW,RT @husITaOrg: Please check out (and like) husITa's new Facebook page: https://t.co/N9hyBXTtJu +03/15/2018,Social_workers,@JimmySW,@mareebearx @ValMsw @HectorMiramon11 Check out the top influencers in my community this week! - Shared via https://t.co/u3ADaDZo2L +03/15/2018,Social_workers,@JimmySW,Sadly I’m missing #BPD2018 this year as well 😭😭😭 https://t.co/D3UTBxxHgC +03/14/2018,Social_workers,@JimmySW,"RT @socworkpodcast: Students: Want to be inspired? Want to take your social justice, social enterprise or social entrepreneur project to th…" +03/14/2018,Social_workers,@JimmySW,RT @Samantha_D91: 3rd grade students at @JaleJaguars participated in #NationalWalkoutDay by creating a peace sign to #PleaforPeace! Proud t… +03/14/2018,Social_workers,@JimmySW,A student in the last chat told me @Tweetchat does not match the 280 Character limit allowed by Twitter. Reasons? M… https://t.co/SKKHoJomDZ +03/14/2018,Social_workers,@JimmySW,@nancy_kusmaul @gradschoolisfun thanks for being my top engaged members in the last week :) - 📈Get More Twitter Fol… https://t.co/JS4zSYzTlO +03/13/2018,Social_workers,@JimmySW,@SJSworks @poliSW thanks for being my top recently engaged followers in the last week :) -🚀via https://t.co/H4vnGx1yOl +03/13/2018,Social_workers,@JimmySW,Students in #CSUSMSW presented today on #SDyouth and homelessness. Such a serious issue and some great information. +03/13/2018,Social_workers,@JimmySW,"@kenedi_young19 @Katelyn04791497 @angel_hacop #HappyMonday, thanks for being my top recently engaged followers in t… https://t.co/AavaDVti1k" +03/13/2018,Social_workers,@JimmySW,"@ednamsw @AlexRidSW @deanna23905786 - check out my top engaged members :) - 📈Grow your followers, insight by https://t.co/VkFSLghLZ6" +03/13/2018,Social_workers,@JimmySW,@KimMSW2018 @MarshAlesia @elsa052019 - Thanks for being part of my community :) (insight by https://t.co/8rdehMn4xY) +03/12/2018,Social_workers,@JimmySW,@CollinAukai @CynmswSanchez @adcurry505 thanks for being my top recently engaged followers in the last week :)… https://t.co/mNCBzeUWpO +03/12/2018,Social_workers,@JimmySW,@SDSUSocialWork @marina_douang @JWillisMSW2019 - thanks to my top recently engaged followers this week :) - 🚀Increa… https://t.co/JniUoi3ABb +03/12/2018,Social_workers,@JimmySW,Has participatory culture failed us in the digital age? Does User-generated content & distribution help spread… https://t.co/yRlaYVE4xG +03/11/2018,Social_workers,@JimmySW,@Rmunoz089 @nick_molina @caraballo_vilma Check out the top influencers in my community this week! - 🚀Increase your… https://t.co/aZPdHDjQcI +03/11/2018,Social_workers,@JimmySW,So he is taking notes from House of Cards 🤔 @netflix https://t.co/OoXfP31qBY +03/11/2018,Social_workers,@JimmySW,Fantastic!!! Amazing!!! Super awesome. #husITa https://t.co/GNnHusCOtQ +06/29/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Every kind of material or spiritual poverty, every form of discrimination against our brothers and sisters, comes from turnin…" +06/28/2018,Social_workers,@tiziana_dearing,I’m thinking of all my friends in local journalism tonight and want to say how much I appreciate you. I’m so sorry… https://t.co/haG1WVa7xG +06/25/2018,Social_workers,@tiziana_dearing,RT @DalaiLama: I am one of the 7 billion human beings alive today. We each have a responsibility to think about humanity and the good of th… +06/22/2018,Social_workers,@tiziana_dearing,Holy cow. Yes. Best political ad I’ve ever seen. Would move to TX just to vote for her! https://t.co/54xPo7DSGT +06/22/2018,Social_workers,@tiziana_dearing,RT @_SBNH: Thanks to @RodmanRide4Kids for choosing @tiziana_dearing to present at our affiliate meeting. The conversation continues #pover… +06/22/2018,Social_workers,@tiziana_dearing,"RT @BCSSW: ""In my experience, at least for women, fashion often is a form of leadership communication."" —@tiziana_dearing via @cogwbur +Read…" +06/22/2018,Social_workers,@tiziana_dearing,"RT @Carladearing: Tell it, sis. @tiziana_dearing Clothes Talk. And Melania Trump's 'I Really Don't Care' Jacket Spoke Volumes https://t.co/…" +06/21/2018,Social_workers,@tiziana_dearing,Let’s talk fashion in women’s leadership via the @FLOTUS wardrobe malfunction. https://t.co/5DB2EB0GvG @cogwbur +06/21/2018,Social_workers,@tiziana_dearing,"RT @brianhardzinski: Thoughtful, articulate take on why the jacket matters. https://t.co/XOkptie5Yc" +06/21/2018,Social_workers,@tiziana_dearing,RT @francesmargaret: Wardrobe malfunction https://t.co/L8THxTnFjv +06/21/2018,Social_workers,@tiziana_dearing,"RT @cogwbur: Don't tell me @FLOTUS didn't know she was sending a message with that jacket, writes @tiziana_dearing. https://t.co/uPGAtW5XEm" +06/21/2018,Social_workers,@tiziana_dearing,Just published a blog on @FLOTUS jacket on @cogwbur Thanks! https://t.co/5DB2EB0GvG @WBUR @BCSSW +06/21/2018,Social_workers,@tiziana_dearing,"9/ And I wish she would have chosen to communicate something else, or nothing at all with her wardrobe choice. I d… https://t.co/ojoYzUXzyH" +06/21/2018,Social_workers,@tiziana_dearing,"8/ Why not a green jacket without the statement “I don’t care” on the back, then? I can’t pretend to know what she… https://t.co/bpTpNDb9w8" +06/21/2018,Social_workers,@tiziana_dearing,7/ Someone with that awareness pretty much never just throws on some clothes - especially clothes with GIANT WRITIN… https://t.co/X7FQ2zV5nc +06/21/2018,Social_workers,@tiziana_dearing,"6/ @FLOTUS was a fashion model. She, at least as much as anyone else, should understand the statement value of fas… https://t.co/31Jlbu4jVs" +06/21/2018,Social_workers,@tiziana_dearing,"5/ We have dress codes in organizations because we are so aware that attire is communication, and often drives beha… https://t.co/IgPxKLD1Yh" +06/21/2018,Social_workers,@tiziana_dearing,"4/ The first time I gave a speech wearing a faux-fur bolero jacket rather than a standard suit coat, people came up… https://t.co/qAWdQ6z6QE" +06/21/2018,Social_workers,@tiziana_dearing,"3/ Think I sound silly? Ask Madeline Albright and her book, “Read My Pins,” where she talks about the pins and bro… https://t.co/9v2j9I0h5r" +06/21/2018,Social_workers,@tiziana_dearing,2/ What you choose to wear can do everything from a) project something you think or believe; b) draw attention to a… https://t.co/SCtRS0L6ju +06/21/2018,Social_workers,@tiziana_dearing,"1/ A @FLOTUS spox may wish we wouldn’t focus on her fashion, but I’m going to, and I’ll tell you why. In my experi… https://t.co/77wrgEvqRj" +06/21/2018,Social_workers,@tiziana_dearing,"Hey, Bostonians, check out this Communications and Marketing job at TERC https://t.co/MxJt0USYds" +06/21/2018,Social_workers,@tiziana_dearing,Great opportunity in Marketing and Communications at TERC https://t.co/GRpr6EPUx5 +06/21/2018,Social_workers,@tiziana_dearing,Had a terrific time today speaking with the @RodmanRide4Kids members about #poverty #equity and #SocialChange Thanks for hosting me! @BCSSW +06/21/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/21/2018,Social_workers,@tiziana_dearing,RT @spattersearch: Making a case for collaboration @tiziana_dearing #WFRN2018 https://t.co/0977o7WxZh +06/19/2018,Social_workers,@tiziana_dearing,RT @nasw: NASW strongly opposes the @realdonaldtrump policy of arresting immigrant adults and separating them from their children at the bo… +06/19/2018,Social_workers,@tiziana_dearing,"Thoughtful, thorough thread that tracks family detention back to 2015 and ends with specific recomendations on next… https://t.co/LEUs3h9g4m" +06/18/2018,Social_workers,@tiziana_dearing,"Fantastic opportunity for emerging #socialentrepreneurs and #changemakers @Ashoka ""Emerging Innovators Boot Camp""… https://t.co/fZIYoZRRnw" +06/18/2018,Social_workers,@tiziana_dearing,Check this out @BCSSW https://t.co/0QgZkIo4Ya +06/18/2018,Social_workers,@tiziana_dearing,"RT @deehan: NEW: @MassGovernor will not send ""any assets or personnel to the Southwest border today because the federal government’s curren…" +06/18/2018,Social_workers,@tiziana_dearing,RT @brianstelter: Head of the American Academy of Pediatrics: https://t.co/mKHvK9JDZ2 +06/15/2018,Social_workers,@tiziana_dearing,"This incredible thread by futurist @amywebb introducing & evaluating ""reality isolationism"" is the best thing i've… https://t.co/MmrLpLCeD1" +06/14/2018,Social_workers,@tiziana_dearing,"Thread recommended here is a full article and incredibly helpful. ""At Streamline hearing yesterday, I saw a woman… https://t.co/wWPdTsz7I3" +06/13/2018,Social_workers,@tiziana_dearing,RT @Peggy_Kel: @tiziana_dearing @statnews Unbelievable. This is still going on? @ Boston Bio event. +06/13/2018,Social_workers,@tiziana_dearing,RT @eDougBanks: @tiziana_dearing @statnews I thought the business community was starting to learn its lesson. I thought wrong. +06/13/2018,Social_workers,@tiziana_dearing,"Oh, for the love of God... + +Topless women with company logos painted on their bodies danced at unofficial party dur… https://t.co/kYo1ViiNbl" +06/13/2018,Social_workers,@tiziana_dearing,@eDougBanks @statnews Seriously. +06/13/2018,Social_workers,@tiziana_dearing,"RT @M_RSection: “Offering asylum seekers, refugees, migrants and victims of human trafficking an opportunity to find the peace they seek re…" +06/13/2018,Social_workers,@tiziana_dearing,"RT @lauriegnyt: THREAD There is sudden, serious pushback from religious leaders to Trump's immigration policies, especially separating fami…" +06/13/2018,Social_workers,@tiziana_dearing,"RT @gehringdc: Every Catholic in Congress who touts how ""pro life"" they are while supporting the Trump administration's cruel and immoral b…" +06/13/2018,Social_workers,@tiziana_dearing,"It’s the overall tone of the letter. This is a #mapoli gubernatorial race, not the final stand for the fate of huma… https://t.co/nFVf9euQAc" +06/12/2018,Social_workers,@tiziana_dearing,"""The number of migrant children held in U.S. government custody without their parents has increased more than 20 pe… https://t.co/vtVVJJ6KZx" +06/12/2018,Social_workers,@tiziana_dearing,This Vox article is clear and helpful. https://t.co/IOcursVHDP +06/12/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Children must be able to play, study and grow in a peaceful environment. Woe to anyone who stifles their joyful impulse to ho…" +06/11/2018,Social_workers,@tiziana_dearing,RT @Lepiarz: THIS IS EVERYTHING https://t.co/aHyAeL1gLe +06/11/2018,Social_workers,@tiziana_dearing,‘Children are being used as a tool’ in Trump’s effort to stop border crossings https://t.co/lK71g8C8T7 via @BostonGlobe +06/11/2018,Social_workers,@tiziana_dearing,"""Our cruelty proliferates. In recent months, we have separated roughly 700 families...What have we become?""… https://t.co/uqBWJeX5Fx" +06/11/2018,Social_workers,@tiziana_dearing,@wajisa @sparkcamp We missed you. Talked about you a lot. +06/11/2018,Social_workers,@tiziana_dearing,"Hey @sparkcamp Wow. Just, Wow. Fantastic camp this weekend. Thank you!!!!" +06/11/2018,Social_workers,@tiziana_dearing,@cgreensit @JohnDavidow A little snubbing going on last night... +06/07/2018,Social_workers,@tiziana_dearing,You are profoundly disrespectful of other people. https://t.co/wSxivK2rOQ +06/07/2018,Social_workers,@tiziana_dearing,"@Mixedbeautyyyy_ I don’t know you, but this is wonderful news! Congratulations to you." +06/06/2018,Social_workers,@tiziana_dearing,"The part at the end where an EPA spokesperson calls the reporter a ""piece of trash,"" for asking for comment. Prett… https://t.co/vwjIz3DG0p" +06/06/2018,Social_workers,@tiziana_dearing,"""It is basically the only group of outside experts that the CFPB director is required to interact with by law."" https://t.co/F8SXZWVU75" +06/05/2018,Social_workers,@tiziana_dearing,I emailed mine. Your turn #mapoli https://t.co/JyQ2pVTeug +06/05/2018,Social_workers,@tiziana_dearing,I love being here today at #AWA18 with @laurabooks who is one of the most inspiring women in my life. @YWBoston https://t.co/gUiQr0K5xl +06/05/2018,Social_workers,@tiziana_dearing,I love being here today at #AWA18 with @laurabooks who is one of the most inspiring women in my life. @YWBoston https://t.co/dy3uOStNrx +06/05/2018,Social_workers,@tiziana_dearing,@marty_walsh “We need to stop talking about closing the #wagegap and just make it happen.” @YWBoston #AWA18 https://t.co/sMf4TcSDrK +06/05/2018,Social_workers,@tiziana_dearing,“There’s no passive stance in response to injustice.” #AWA18 @YWBoston https://t.co/aBFe911PX7 +06/05/2018,Social_workers,@tiziana_dearing,Anita Hill giving the inaugural #AWA18 award in honor of Sylvia Farrell-Jones @YWBoston https://t.co/ay468KqMa1 +06/05/2018,Social_workers,@tiziana_dearing,LaToya Edwards kicks us off @YWBoston Academy of Women Achievers #AWA18 And I’m sitting with Anita Hill!! https://t.co/vjnUEJRLdC +06/05/2018,Social_workers,@tiziana_dearing,"Why rich kids are so good at the marshmallow test, by @JessicaCalarco https://t.co/xfkxC1t6YS" +06/04/2018,Social_workers,@tiziana_dearing,"""Social Justice, Solidarity and Women in the Workplace"" happens tomorrow night. Register https://t.co/OHikqI8tsR.… https://t.co/kXsTo8byv5" +06/03/2018,Social_workers,@tiziana_dearing,RT @RJSzczerba: For anyone who ever got a rejection letter of any kind ... https://t.co/i3vC4aADxS +06/01/2018,Social_workers,@tiziana_dearing,"I have such deep respect for Bruce Western’s work. This Re-entry data is so valuable, and I hope people will overlo… https://t.co/boqdrL3cqk" +05/31/2018,Social_workers,@tiziana_dearing,"Looking forward to joining Helen Drinan of @SimmonsCollege , @Carol_Fulp and Roxana Rivera of @32BJSEIU next week t… https://t.co/sWEBXV6H3P" +05/31/2018,Social_workers,@tiziana_dearing,Here's your brain bender for the day... https://t.co/TB1YVab86a +05/30/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: When the Holy Spirit is present, something always happens. Where blows the Spirit, things are never at a standstill." +05/29/2018,Social_workers,@tiziana_dearing,"RT @amyemchugh: @tiziana_dearing @NPR Agreed, I appreciated the segment and her perspective. A sad, sad time for our country." +05/29/2018,Social_workers,@tiziana_dearing,"Nuanced, thoughtful conversation with Cecilia Munoz on @npr this morning is good way to educate self further on the… https://t.co/X1Z3c6BXmV" +05/29/2018,Social_workers,@tiziana_dearing,RT @TraciKirtley: @tiziana_dearing Thanks. I’ve been way of the “missing children” storyline for this reason—assuming it’s different agenci… +05/28/2018,Social_workers,@tiziana_dearing,Very interesting point in longer thread calling out tweeters like me to be careful in our complaints about the 1500… https://t.co/noCXdgmGoM +05/27/2018,Social_workers,@tiziana_dearing,Nearly 1500 kids missing. Reports of harsh treatment of detained children in prison-like conditions. Separating chi… https://t.co/mRlQWvhaWh +05/25/2018,Social_workers,@tiziana_dearing,Maybe some of the people who lost 1450 kids? https://t.co/dDiD2lNnnB +05/25/2018,Social_workers,@tiziana_dearing,How do you lose 1450 kids? Please let there be a non-partisan reaction to this. They’re kids. https://t.co/Hsat4Q2Bzs +05/25/2018,Social_workers,@tiziana_dearing,@reillyadam I’m old school. “Party” as a verb. +05/24/2018,Social_workers,@tiziana_dearing,This is so good. Under The Skin: Why That 'Arrested Development' Interview Is So Bad https://t.co/sFtz52iu43 +05/23/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Prof Rocío Calvo asks the audience to consider how we can integrate procedural justice into everyday life #BCDISummit2018 https:… +05/23/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Prof. @tiziana_dearing kicks-off a discussion on everyday excellence and inclusion at the #BCDISummit2018 https://t.co/qYGkjBAYKm +05/23/2018,Social_workers,@tiziana_dearing,Really appreciating this discussion among BC colleagues about Ignatian Spirituality and how it relates to their own… https://t.co/ck2YrvDveU +05/23/2018,Social_workers,@tiziana_dearing,"#BCDISummit2018 had a fantastic, challenging keynote. Heading to working session on #IgnatianSpirituality and… https://t.co/mMOKkS6hP6" +05/23/2018,Social_workers,@tiziana_dearing,About to start #BCDISummit2018 ! Excited to moderate the plenary this afternoon on #DiversityandInclusion… https://t.co/9zLxh5wXds +05/22/2018,Social_workers,@tiziana_dearing,"So pleased to be joining Helen Drinan of @SimmonsCollege, @Carol_Fulp, and Roxana Rivera of @32BJSEIU for… https://t.co/u6YF23fdxE" +05/22/2018,Social_workers,@tiziana_dearing,RT @gcroteau: Thanks again @tiziana_dearing! Great to have all your partnership and support! @BCSSW https://t.co/IMdofCT2AQ +05/18/2018,Social_workers,@tiziana_dearing,"RT @JamesMartinSJ: To be clear, even members of MS-13 are not ""animals."" Every human being has dignity, even the worst criminals, even murd…" +05/17/2018,Social_workers,@tiziana_dearing,RT @BostonCollege: Groundbreaking @BCSSW @FADICAnetwork study looks at Catholic social innovation at work for refugees and migrants around… +05/17/2018,Social_workers,@tiziana_dearing,"Another deep investment in #Lowell by @UTEC_lowell with the #socialinnovation center: early ed, commercial kitchen,… https://t.co/iFoxXD6pdL" +05/17/2018,Social_workers,@tiziana_dearing,Words and people of inspiration @UTEC_lowell opening of the #socialinnovation center. @BCSSW https://t.co/DmaLA6e2iY +05/17/2018,Social_workers,@tiziana_dearing,Touring the new #2Gen center @UTEC_lowell as they open their #socialinnovation center! I love this place! @BCSSW… https://t.co/LRyOFSFppZ +05/17/2018,Social_workers,@tiziana_dearing,"Let’s review: When one has the choice between calling human beings “animals” and not calling them “animals,” one i… https://t.co/q2fGMi7u6d" +05/16/2018,Social_workers,@tiziana_dearing,"RT @BCSSW: Prof. @tiziana_dearing reflects on how Catholic thought meets social innovation with a study commissioned by @FADICAnetwork +http…" +05/16/2018,Social_workers,@tiziana_dearing,Really interesting public convo happening on Twitter in response to this. #mapoli #Transportation @reillyadam https://t.co/swdnf4Lv4W +05/16/2018,Social_workers,@tiziana_dearing,"@UnitedWayKirsta Thanks so much for the shout out! Alas, no photos, but I love it that you asked." +05/15/2018,Social_workers,@tiziana_dearing,"RT @AmplifyLatinx: Join @AFTDJ on 6/5 for a conversation on Social Justice, Solidarity and Women in the Workplace, featuring BC Prof @tizia…" +05/14/2018,Social_workers,@tiziana_dearing,RT @GlobeHorowitz: Wow. Note the wildly disproportionate number of white families that own houses but don't have mortgages. https://t.co/Ga… +05/12/2018,Social_workers,@tiziana_dearing,"RT @BruceLesley: No, it is just cruel, inhumane, and harmful to children. #NotWhatever https://t.co/Qvb7EbMDqa" +05/11/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: We begin building peace in our homes, streets, and workplaces: wherever we craft communion and community." +05/11/2018,Social_workers,@tiziana_dearing,"""Nearly half of Massachusetts’ community college students and a third in the state colleges and universities cannot… https://t.co/vElGTGHvDN" +05/11/2018,Social_workers,@tiziana_dearing,"""No one is standing up and saying 'We can't treat people like this.' And sadly, that vacuum in moral leadership mea… https://t.co/JSlROWGopM" +05/11/2018,Social_workers,@tiziana_dearing,A huge shout of thanks to @Sen_Chandler @SalDiDomenico @KarenSpilka @cindycreem for choosing to @LiftCaponKidsMA in… https://t.co/MGUgHKk9oK +05/09/2018,Social_workers,@tiziana_dearing,"“...we miss assets they value in the community, run the risk of failing to understand what quality is to those whom… https://t.co/i6iUnjmxgf" +05/09/2018,Social_workers,@tiziana_dearing,"White, well meaning: United Way should reflect the community it servesC-VILLE Weekly https://t.co/NlkZ46uezw via… https://t.co/vKg0FEeAnb" +05/09/2018,Social_workers,@tiziana_dearing,RT @ianmastersmedia: NOW on https://t.co/ay4miajeBc | @milaniabbas - Trump's Monumental Gift to Iran's Hardliners | @tiziana_dearing - The… +05/09/2018,Social_workers,@tiziana_dearing,Glad to have joined @ianmastersmedia to talk #MeToo #Schneiderman and making sense of where we are today. https://t.co/zO81cBs73p +05/08/2018,Social_workers,@tiziana_dearing,RT @fdncenter: Are you a young professional interested in strengthening community #philanthropy and building capacity in local third-sector… +05/08/2018,Social_workers,@tiziana_dearing,This was juxtaposed in my Twitter feed this morning... https://t.co/MwfRfU2S0e +05/07/2018,Social_workers,@tiziana_dearing,Case in point on @wburdebbecker and her great work. https://t.co/0L655qrL0i +05/07/2018,Social_workers,@tiziana_dearing,Deborah Becker has been doing outstanding #mentalhealth reporting for @WBUR. Warmest congratulations to her. https://t.co/hMa6mEvBO9 +05/07/2018,Social_workers,@tiziana_dearing,"Want to make a real, substantial difference in peoples' lives every day? Upper Valley Haven in VT looking for a ne… https://t.co/mSm0Cm4Xsq" +05/07/2018,Social_workers,@tiziana_dearing,About to join colleagues for #MeToo in the Classroom at #BCTeach18. Can’t wait to start! +05/05/2018,Social_workers,@tiziana_dearing,"RT @DalaiLama: Scientists warn that constant fear and anger are bad for our health, while being compassionate and warm-hearted contributes…" +05/04/2018,Social_workers,@tiziana_dearing,"RT @francesmargaret: Happy trails to @davidboeri -- the man, the myth, the legend. https://t.co/jyGHonhVlQ" +05/04/2018,Social_workers,@tiziana_dearing,Looking forward to joining @MeghnaWBUR & @joebattenfeld for @RadioBoston this afternoon at 3:00 on 90.0. See you at @WBUR! +05/04/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Catch @tiziana_dearing on @RadioBoston this afternoon for the Week in Review. listen live: https://t.co/Qhim9LusWY +05/03/2018,Social_workers,@tiziana_dearing,Ugh. You cannot make this stuff up. https://t.co/qyg1pABwZ6 +05/02/2018,Social_workers,@tiziana_dearing,"Could not be more proud to see Dr. Stephanie Berzin advance to this important role. We will miss her, but sharing h… https://t.co/QD1XT5cCRY" +05/01/2018,Social_workers,@tiziana_dearing,This understanding or work as a fundamental expression of human dignity is essential to our conversations about… https://t.co/Htrsbe1GXC +04/30/2018,Social_workers,@tiziana_dearing,About to hear colleague Theresa Betancourt at the inaugural Salem Professorship in Global Practice address. Proud o… https://t.co/2DTTz4TdO0 +04/28/2018,Social_workers,@tiziana_dearing,About to see Infinity War. Let it begin! +04/27/2018,Social_workers,@tiziana_dearing,RT @BCSSW: BCSSW's @BC_Innovation delivered a report on Catholic Social Innovation & the refugee crisis to @FADICAnetwork with research led… +04/26/2018,Social_workers,@tiziana_dearing,@quizasjoaquin @BCSSW Thanks! +04/26/2018,Social_workers,@tiziana_dearing,BCSSW Delivers Report on Catholic Social Innovation & the Refugee Crisis to FADICA https://t.co/QbmJ4JdeUT via @bcssw +04/25/2018,Social_workers,@tiziana_dearing,Huge THANK YOU to @SpeakerDeLeo @jeffrey_sanchez @MarjorieDecker @repkaykhan and others for helping to… https://t.co/b0ixDtvXyu +04/25/2018,Social_workers,@tiziana_dearing,You are so lucky to have Ruth! https://t.co/flNmmaMudX +04/24/2018,Social_workers,@tiziana_dearing,RT @Pontifex: Life only fully makes sense when it is given as a gift. It becomes tasteless when it is lived for itself alone. +04/24/2018,Social_workers,@tiziana_dearing,@RevEverett @seamwork Definitely blue +04/23/2018,Social_workers,@tiziana_dearing,"RT @BostonCollege: Catholic social innovation is helping migrants and refugees across the globe, a new @BCSSW @FADICAnetwork report shows:…" +04/23/2018,Social_workers,@tiziana_dearing,Excited to be at @Surdna_Fndn in NYC today giving a talk on #poverty trust and #philanthropy for @COF_ today. @TMWRivera @BCSSW +04/19/2018,Social_workers,@tiziana_dearing,RT @BCAlumni: Join the conversation! https://t.co/UPxE0jrMzi https://t.co/I8WcdmLQLE +04/19/2018,Social_workers,@tiziana_dearing,Proud of this article in @americamag featuring #Catholic #socialinnovation and the research funded by… https://t.co/e0PwK2h484 +04/19/2018,Social_workers,@tiziana_dearing,Loom Chicago is one of dozens of Catholic-run organizations that are adept at meeting various challe https://t.co/sDVYJUVkQe via @americamag +04/19/2018,Social_workers,@tiziana_dearing,Looking forward to joining @BCAlumni to do a webinar exploring #MeToo in about 30 minutes. +04/19/2018,Social_workers,@tiziana_dearing,"RT @conoryunits: Breaking: Due to continuous, absurd, despicable weather conditions, Boston is closed. + +We will try reopening in May. + +Th…" +04/18/2018,Social_workers,@tiziana_dearing,Honored to be quoted in this @pewresearch study on #tech saturation. https://t.co/OyPArHbKCg @BCSSW https://t.co/ciEydZWxSB +04/18/2018,Social_workers,@tiziana_dearing,RT @ImagineInternet: “Technological developments hold tremendous potential … But our ability to adapt at a species level happens on a much… +04/17/2018,Social_workers,@tiziana_dearing,"Been giving some talks including structural racism, #housing values and the #racialwealthgap. See article below.… https://t.co/a8xkGMD5aN" +04/14/2018,Social_workers,@tiziana_dearing,@xeniawickett Congratulations!!! What is your new role? +04/11/2018,Social_workers,@tiziana_dearing,"And you're really good at it, Martha! Keep running that marathon. #teamWBUR https://t.co/INDVnEujtL" +04/11/2018,Social_workers,@tiziana_dearing,"Reading @pontifex ""On the call to holiness in today's world."" Amazing call to the everyday practices of love and s… https://t.co/01bQyWZbb3" +04/11/2018,Social_workers,@tiziana_dearing,"Thank you, John. Hope the first full week of retirement is wonderful. https://t.co/QSINNvWpSd" +04/11/2018,Social_workers,@tiziana_dearing,"RT @nytimesbusiness: Did you apply for college this year and write an undergraduate application essay about money, work, social class or re…" +04/11/2018,Social_workers,@tiziana_dearing,RT @SueNBCBoston: With the Syrian attacks bringing the refugee crisis back into the headlines – how nuns are socially innovative nuns(!) ar… +04/11/2018,Social_workers,@tiziana_dearing,RT @C21Center: .@BC_Innovation produced a #Migration aid project #study which focuses on ‘Catholic social innovation’—the study is the firs… +04/11/2018,Social_workers,@tiziana_dearing,#KeepFacebook https://t.co/MNBYW84pmx via @laurabooks. Thought provoking piece from one of my favorite bloggers. +04/10/2018,Social_workers,@tiziana_dearing,Terrific chat with @SueNBCBoston tonight re: Catholic #socialinnovation and #migration. Check it out again tonight… https://t.co/YWcQM7SBQM +04/10/2018,Social_workers,@tiziana_dearing,RT @SueNBCBoston: With the Syrian attacks bringing the refugee crisis back into the headlines – how nuns are socially innovative nuns(!) ar… +04/10/2018,Social_workers,@tiziana_dearing,"RT @DavidsonServes: Enjoyed having @tiziana_dearing on campus to speak with our Bonner Scholars about the intersection of Poverty, Equity,…" +04/10/2018,Social_workers,@tiziana_dearing,@jamie_stamey @ProfessorNati @DavidsonCollege Thank you! +04/10/2018,Social_workers,@tiziana_dearing,RT @jamie_stamey: @ProfessorNati @tiziana_dearing @DavidsonCollege I spent a little time with her in the morning and walked away with enoug… +04/10/2018,Social_workers,@tiziana_dearing,"@dog_feelings Love you, too, pupper." +04/09/2018,Social_workers,@tiziana_dearing,I see what you did there https://t.co/ZBQCAIZp06 +04/09/2018,Social_workers,@tiziana_dearing,@kreshleman @DavidsonCollege Thank you! +04/09/2018,Social_workers,@tiziana_dearing,@ProfessorNati @DavidsonCollege Thank you! +04/09/2018,Social_workers,@tiziana_dearing,RT @ProfessorNati: Getting to be in the @tiziana_dearing lecture at @DavidsonCollege is giving me hope. https://t.co/LUoCf0bPl8 +04/09/2018,Social_workers,@tiziana_dearing,"RT @kreshleman: Excited for @tiziana_dearing talk on Poverty, Equity, and Social Change @DavidsonCollege https://t.co/e0ax9KJhQg" +04/07/2018,Social_workers,@tiziana_dearing,Prof. Mansbridge had a huge impact on me in my graduate education. She was a wonderful teacher. Warmest congratulat… https://t.co/gTZyjCk6MW +04/07/2018,Social_workers,@tiziana_dearing,"RT @DalaiLama: In the modern world, where the pursuit of money is considered more important than the cultivation of inner values a fresh ap…" +04/05/2018,Social_workers,@tiziana_dearing,RT @SJPSKings: Amazing visit @UTEC_lowell at #Exchange2018: of @Ashoka @ShawnaLewk @kingsatwestern https://t.co/Hx8EwWfG4z +04/04/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Love is the only invincible weapon, because it has the power to disarm the forces of evil." +04/04/2018,Social_workers,@tiziana_dearing,"Ugh. Just, ugh. https://t.co/0TURPkbSfX" +04/04/2018,Social_workers,@tiziana_dearing,Working on a talk tonight to give to the #economics department @DavidsonCollege next week. Can't wait to meet their fabulous students! +04/02/2018,Social_workers,@tiziana_dearing,RT @NASWMA: Time to reclaim #socialjusticewarrior. Thank you @tiziana_dearing! Let’s do this. Who is with us?! #leadma2018 https://t.co/9tU… +04/02/2018,Social_workers,@tiziana_dearing,#socialwork students gather at the Episcopal Church on Newbury for the start of @NASWMA LEAD Day 2018. What a beaut… https://t.co/2Op00DRHs1 +04/02/2018,Social_workers,@tiziana_dearing,Headed to @NASWMA LEAD Day this morning to talk with #socialwork students about the “why” of advocacy. So excited t… https://t.co/x40PGHwGS8 +04/01/2018,Social_workers,@tiziana_dearing,"RT @ValerieJarrett: A thought: Since it is #GoodFriday & #Passover, could we commit to cling tightly to our better selves, not just today,…" +03/30/2018,Social_workers,@tiziana_dearing,"And that, folks, is your first episode of The Office reboot... https://t.co/sTLA7WqRmS" +03/30/2018,Social_workers,@tiziana_dearing,This thread... https://t.co/Rz8YjepGVG +03/30/2018,Social_workers,@tiziana_dearing,RT @tiffanycampbell: The Public Radio BizLab @WBUR is looking to hire some smart people for paid fellowships this summer. They’ll be kickst… +03/30/2018,Social_workers,@tiziana_dearing,Line at the Watertown #RMV @MassRMV https://t.co/QlaqxHRrED +03/30/2018,Social_workers,@tiziana_dearing,Are you driving? https://t.co/JgBR9lkfbS +03/29/2018,Social_workers,@tiziana_dearing,Ending my day @Harvard with leaders in #socialinnovation and aspiring future leaders. Looking forward to it! @BCSSW https://t.co/GH93vNTTdb +03/29/2018,Social_workers,@tiziana_dearing,"@AlisonNBCBoston @SueNBCBoston @rdsahl @jimbraude @NECN @JohnVanScoyoc I had no idea John was retiring! I’ll miss you, John." +03/29/2018,Social_workers,@tiziana_dearing,RT @AlisonNBCBoston: He survived @rdsahl. He survived @jimbraude. He survived @SueNBCBoston. Now @NECN needs to figure out how to survive… +03/29/2018,Social_workers,@tiziana_dearing,"RT @causeconsulting: ""Expand your community; embrace new experiences,"" said @tiziana_dearing at @_TheBASE Women's #Leadership Breakfast wi…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @RevEverett: A new command, a new mandate, I give to you: Love one another. Let this be our #MaundyThursday commitment, just that simpl…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @hallard: @tiziana_dearing speaks to the types of poverty created by institutional racism: social poverty, workplace poverty, community…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @Rosemarie_Day1: Great Women’s Leadership panel for The BASE this morning. Reminders to own your power, be authentic, and take risks.…" +03/29/2018,Social_workers,@tiziana_dearing,"@SueNBCBoston Yeah, I’m a real psychic..." +03/28/2018,Social_workers,@tiziana_dearing,Wait https://t.co/ppIYXqbrCM +03/28/2018,Social_workers,@tiziana_dearing,Actually really appreciate this. Have been dumbfounded that kids are no longer off limits for the level of terrifyi… https://t.co/pUx2VDMW7M +03/26/2018,Social_workers,@tiziana_dearing,I am listening to @OnPointRadio where I think a caller just basically threatened @davidhogg111 and others with 5 mi… https://t.co/6tlwAWkxhZ +03/26/2018,Social_workers,@tiziana_dearing,@TraciKirtley Nice +03/25/2018,Social_workers,@tiziana_dearing,@quizasjoaquin @danivillanueva @skachiedza @GiuliaMcPherson @Nikki_43809 @RodulfoPrieto @LyndseyMcMahan I am a part… https://t.co/m2KivArYdc +03/24/2018,Social_workers,@tiziana_dearing,I gotta go ahead and question whether I need even one https://t.co/xD3Rslo9AC +03/24/2018,Social_workers,@tiziana_dearing,In case you might have forgotten that @MeghnaWBUR is a reporter as well as a host...this impressive and scary threa… https://t.co/qq2IuwYEBG +03/23/2018,Social_workers,@tiziana_dearing,"RT @ronlieber: Every year, I collect the best college application essays I can find about money, work, social class, wealth and/or its abse…" +03/23/2018,Social_workers,@tiziana_dearing,"I think Joe just wanted to be able to say ""piping plover."" https://t.co/k5N6q4VLAA" +03/22/2018,Social_workers,@tiziana_dearing,"Absolutely loved this thread re: @facebook, recognizing potential interest of the source. Learned so much. Also h… https://t.co/1cMXCMZAjf" +03/21/2018,Social_workers,@tiziana_dearing,"I'm really struck by this piece from @tomfriedman in @nytimes . ""America needs a healthy conservative party in our… https://t.co/lfDEKkyKqZ" +03/21/2018,Social_workers,@tiziana_dearing,"Makes me angry. When you read what it said before and what it says now, its speaks (or doesn't) volumes. Words matt… https://t.co/aP2ubL6ITr" +03/20/2018,Social_workers,@tiziana_dearing,RT @BrookingsEcon: Boys who grew up in families in the bottom 10% of the income distribution are 20 times more likely to be in prison on a… +03/19/2018,Social_workers,@tiziana_dearing,Check out this smart piece by @cosgrovet on follow-up strategies after #WalkoutWednesday https://t.co/gYOZtE0KwI +03/19/2018,Social_workers,@tiziana_dearing,.@48in48 is building 48 websites for 48 Boston Nonprofits - Are you eligible for a free new site? Apply https://t.co/O49Se2GVFK +03/17/2018,Social_workers,@tiziana_dearing,"Oh, good, because I was just thinking that my Twitter feed was too full of good news these days... https://t.co/vyJ27Ojmue" +03/16/2018,Social_workers,@tiziana_dearing,"Oh, good lord. https://t.co/2v5jMTcaIi" +03/16/2018,Social_workers,@tiziana_dearing,"RT @RadioBoston: @tiziana_dearing @titojackson @wburdebbecker .@tiziana_dearing: ""No one gets to hide behind this anymore. This is intolera…" +03/16/2018,Social_workers,@tiziana_dearing,"RT @RadioBoston: Miss the show? Hear @tiziana_dearing, @titojackson, @anthonygbrooks, @sdooling & @Chessy_Prout on our podcast: https://t.c…" +03/16/2018,Social_workers,@tiziana_dearing,"Thought this piece was really interesting. + +Strategy is key in Parkland students' next move against gun violence |… https://t.co/Q6IBTsjR9g" +03/16/2018,Social_workers,@tiziana_dearing,RT @TinaLFletcher: @gstreat @tiziana_dearing https://t.co/0wkwNWRh2k +07/02/2018,Social_workers,@ProfessorChic,RT @ava: When you practice what you preach and the laws of nature bend in acknowledgement. This is Kindness. This is Generosity. This is Lo… +07/02/2018,Social_workers,@ProfessorChic,"RT @HannahLebovits: Okay unabashed honesty for #AcademicTwitter: + +There is a lot of negative feedback in the academic world so anytime ANYO…" +07/02/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: PRBA @PRBA_ISR Professor Jamie Mithcell @ProfessorChic @TheMCUAAAR @ProfMouzon @WatkinsResearch https://t.co/opn4Whk73U +06/29/2018,Social_workers,@ProfessorChic,"RT @UMSocialWork: Companionate relationships influence mental health outcomes of older African American men. #SSWResearch +Assistant Profess…" +06/29/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: @TheMCUAAAR and @PRBA_ISR professor Jamie Mitchell @ProfessorChic https://t.co/opn4Whk73U +06/29/2018,Social_workers,@ProfessorChic,RT @NYTHealth: Breaking News: A federal judge blocked Kentucky's plan to impose new Medicaid rules requiring the poor to work to maintain t… +06/28/2018,Social_workers,@ProfessorChic,RT @UMichPath: #UMichPath #MCTP #ChinnaiyanLab https://t.co/DddQDBxolC +06/27/2018,Social_workers,@ProfessorChic,RT @umichglc: The School of Social Work @UMSocialWork sponsored this workshop. @umichglc members Robert Joseph Taylor and @ProfessorChic w… +06/27/2018,Social_workers,@ProfessorChic,RT @PublicHealth: Research: Police killings of unarmed black Americans harm the mental health of other black adults https://t.co/Js83nfVQtG +06/27/2018,Social_workers,@ProfessorChic,"RT @NPR: People with intellectual disabilities are assaulted at seven times the rate of people without disabilities. Now, states and advoca…" +06/26/2018,Social_workers,@ProfessorChic,RT @TheMCUAAAR: Congrats to the 2018 Doctoral Students Mentoring Workshop participants! We enjoyed the 3 days that you spent with us. Stay… +06/26/2018,Social_workers,@ProfessorChic,RT @MensHealthUBC: “Over 70 per cent of men suffer mental health problems and don't know it” https://t.co/JwFQ4922l2 https://t.co/wYzgV7NMwl +06/26/2018,Social_workers,@ProfessorChic,RT @ProfessorTD: Presenting with @UofISocialWork's Hellen McDonald on #perinatalmentalhealth today @ McLean county public health department… +06/26/2018,Social_workers,@ProfessorChic,"RT @chronicle: If you want more diversity on your campus, start by diversifying your own staff at the highest levels and treating its membe…" +06/26/2018,Social_workers,@ProfessorChic,"RT @JudyCBPP: Review of 77 studies on #Medicaid expansion in @Health_Affairs concludes expansion increases coverage, use of health care, an…" +06/26/2018,Social_workers,@ProfessorChic,RT @UMRogelCancer: A new @umich study forms the backbone for free new online tools for personalizing #lungcancer risk and screening decisio… +06/26/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Walgreens pharmacist denies woman miscarriage medication because it goes against his ethics https://t.co/7xCzy51JGv +06/24/2018,Social_workers,@ProfessorChic,RT @GeeDee215: A thread. https://t.co/HmG2UpQ6Jp +06/24/2018,Social_workers,@ProfessorChic,RT @nytimes: President Trump suggested sending people who “invade” the United States “back from where they came” without legal proceedings… +06/23/2018,Social_workers,@ProfessorChic,RT @KamalaHarris: Yesterday I got a tour of an immigration detention facility and visited with the mothers separated from their children. A… +06/23/2018,Social_workers,@ProfessorChic,RT @nytimes: U.S. Open Will Revamp Its Seeding to Account for Pregnancy Leaves https://t.co/hnZksf6BqN +06/21/2018,Social_workers,@ProfessorChic,RT @UMRogelCancer: New study arms #breastcancer patients with important data about the risks and rewards associated with each surgical opti… +06/21/2018,Social_workers,@ProfessorChic,RT @umichmedicine: What can #neuroscience research tell us about what might be happening to the brains of children affected by #FamilySepar… +06/21/2018,Social_workers,@ProfessorChic,"RT @PSGMke: Racial/Ethnic and Sexual Minority Males Among Unhealthiest People in America, Report Finds https://t.co/2yMNyzB1y8 via @APA" +06/20/2018,Social_workers,@ProfessorChic,Same. https://t.co/iwx5QUp6sj +06/20/2018,Social_workers,@ProfessorChic,RT @TheOnion: Newborn Loses Faith In Humanity After Record 6 Days https://t.co/jUneA85mld https://t.co/ODPhv5JbmD +06/20/2018,Social_workers,@ProfessorChic,RT @USATODAY: RAICES is the largest immigration legal services non-profit in Texas. The group is accepting donations for its family reunifi… +06/20/2018,Social_workers,@ProfessorChic,"RT @kylegriffin1: In the middle of the night, two baby boys arrived in Grand Rapids after being separated from their immigrant parents. + +O…" +06/20/2018,Social_workers,@ProfessorChic,"RT @civilrightsorg: ""As a psychologist who studies how trauma and stress affect children’s development, I’m extremely concerned about the l…" +06/20/2018,Social_workers,@ProfessorChic,RT @detroitnews: ALERT: Michigan sees children young as 3 months separated from parents https://t.co/OSUm9vYcv3 https://t.co/QQ5viYAxDu +06/19/2018,Social_workers,@ProfessorChic,RT @EdgeforScholars: Investigators at all career stages can tap into the Trial Innovation Network’s free toolkit for protips on trial desig… +06/18/2018,Social_workers,@ProfessorChic,RT @WebMD: CHECK YOUR PANTRY: Kellogg's has recalled certain boxes of Honey Smacks cereal due to possible salmonella contamination. https:/… +06/18/2018,Social_workers,@ProfessorChic,"RT @CraigSJ: I wrote about Beyoncé and Jay-Z and #EverythingIsLove, the dramatic conclusion to one of the heaviest love album trilogies of…" +06/18/2018,Social_workers,@ProfessorChic,"RT @keithboykin: According to NASA, The Milky Way is ""so big that even at the speed of light, it would take 100,000 years to travel across…" +06/18/2018,Social_workers,@ProfessorChic,RT @eugenegu: Who cares about Trump’s Space Force when children are being ripped from their families and sent to internment camps. +06/17/2018,Social_workers,@ProfessorChic,"RT @PRBA_ISR: Waldo Johnson former @PRBA postdoc. Non-residential fathers aren't necessarily absentee, research shows@SociologistRay @Darri…" +06/17/2018,Social_workers,@ProfessorChic,"RT @ObamaFoundation: Happy Father’s Day to all the dads out there supporting their kids, like Lynell Jinks, who uses his kids’ lunch bags a…" +06/17/2018,Social_workers,@ProfessorChic,"RT @WriteThatPhD: How to write with purpose & publish for impact – a 5-part series to help you: +• Imagine the #Writing Project +• Organize &…" +06/17/2018,Social_workers,@ProfessorChic,"RT @keithellison: Dad, Leonard Ellison, taught me: +-don’t back down +-get back up +-you’re going make mistakes +-forgive yourself too +-go for…" +06/16/2018,Social_workers,@ProfessorChic,RT @CerromeRussell: Beyoncé can really rap +06/16/2018,Social_workers,@ProfessorChic,Same. https://t.co/Pyt4a80W7d +06/16/2018,Social_workers,@ProfessorChic,This Tweet from @ProfessorChic has been withheld in: Canada. +06/16/2018,Social_workers,@ProfessorChic,RT @deray: Friends. #EVERTHINGISLOVE +06/16/2018,Social_workers,@ProfessorChic,RT @ziwe: I love when beyonce drops new music because that means I can cancel all my plans +06/16/2018,Social_workers,@ProfessorChic,RT @jemelehill: AND the song is a banger #EverythingIsLove https://t.co/fj2H1r2Dfc +06/16/2018,Social_workers,@ProfessorChic,"RT @Beyonce: Stream #EverythingIsLove now, exclusively on TIDAL. Also stream a TIDAL-exclusive track. https://t.co/OHRZ7lnF8n https://t.co/…" +06/16/2018,Social_workers,@ProfessorChic,RT @HOT97: SURPRISE! Jay Z & Beyoncé album out now! #EverythingIsLove https://t.co/OQQWC5qXbb +06/16/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: Carl Hill @hillcv17 former PRBA doctoral student @ABSociologists @ASA_SREM @ABPsiSC @assarish @aasewell @WatkinsResearch @Dar… +06/16/2018,Social_workers,@ProfessorChic,"RT @EllisMonk: Greatly honored that my article ""The Cost of Color: Skin Color, Discrimination, and Health among African Americans"" (AJS) wo…" +06/16/2018,Social_workers,@ProfessorChic,"RT @NPR: Colleen Kraft, president of the American Academy of Pediatrics, visited a Texan shelter for migrant children and saw a young girl…" +06/16/2018,Social_workers,@ProfessorChic,"RT @umichalzheimers: Morning panel mod @professorchic notes, “We don’t talk about dementia as a culture itself, understanding the symbols a…" +06/14/2018,Social_workers,@ProfessorChic,"RT @ass_deans: If a damn raccoon can climb a skyscraper, surely the faculty can get 75% response rates on their teaching evaluations." +06/14/2018,Social_workers,@ProfessorChic,RT @CDC_Cancer: This #MensHealthWeek get the fast facts about #cancer and men: https://t.co/zgoemCDGJg https://t.co/QUf4BhJvZQ +06/14/2018,Social_workers,@ProfessorChic,RT @deray: read this. https://t.co/3unK7Yx6AE +06/14/2018,Social_workers,@ProfessorChic,"RT @statnews: AVAILABLE NOW: Runnin', STAT's award-winning documentary about the opioid epidemic and a group of childhood friends caught in…" +06/14/2018,Social_workers,@ProfessorChic,"RT @joyceyeaeunlee: Fathers forgotten when it comes to services to help them be good parents, new study finds https://t.co/GTDNTXArE7 via @…" +06/11/2018,Social_workers,@ProfessorChic,"RT @ryanjreilly: In new filing signed by acting Civil Rights Division chief John Gore, DOJ argues that University of Michigan's harassment,…" +06/11/2018,Social_workers,@ProfessorChic,Many thanks!!!! https://t.co/JECKg582Id +06/11/2018,Social_workers,@ProfessorChic,RT @IjeomaOo: I am extremely humbled to have been a part of @PRBA_ISR The connections I made were priceless. The knowledge I received was l… +06/11/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: (1/2) A part of celebrating Men’s Health Week is to honor the women who dedicate their lives to improving men’s health… +06/11/2018,Social_workers,@ProfessorChic,RT @KJonesJamtgaard: Any #science tweeps have recommendations for groups or individuals that do excellent #grant writing seminars/workshops… +06/10/2018,Social_workers,@ProfessorChic,RT @AP: The $1.1 million Aurora prize for humanitarianism goes to a lawyer in Myanmar who has been fighting for Rohingya rights for decades… +06/10/2018,Social_workers,@ProfessorChic,RT @DrMShavers: Congratulations!!! https://t.co/zVkyE1TzH4 +06/10/2018,Social_workers,@ProfessorChic,"RT @Celeste_pewter: Since I can't stop thinking about this: + +1. Trump at the G7 in Canada. +2. Obama at the G7 in Germany (2015) https://t.…" +06/10/2018,Social_workers,@ProfessorChic,So glad to have been able to support! https://t.co/5vOZ6MeN0S +06/09/2018,Social_workers,@ProfessorChic,RT @usatodayDC: Trump administration no longer will defend the Affordable Care Act in court https://t.co/iFYHhJrflj via @wwcummings @kalltu… +06/07/2018,Social_workers,@ProfessorChic,RT @cavs: HE. DID. THAT. #WhateverItTakes https://t.co/ZjiS0Gk5gh +06/06/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: Love this. Which is why every moment someone spends helping you is a gift. Be a #grateful recipient. #saythankyou http… +06/06/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: @UMJointPhD https://t.co/mNTzwBZmjr +06/04/2018,Social_workers,@ProfessorChic,"RT @TheAtlantic: On Monday, the Supreme Court ruled in favor of the baker in the 'Masterpiece Cakeshop' case. But its rationale is so narro…" +06/03/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Va. governor pardons woman convicted of disposing of stillborn fetus https://t.co/ID32FDEI5n +06/02/2018,Social_workers,@ProfessorChic,"RT @choo_ek: I write a *ton* of promotions letters and lemme say: WOMEN, YOU ARE GOING UP WAY, WAY TOO LATE." +06/02/2018,Social_workers,@ProfessorChic,RT @Editage: Your #research paper title must be effective enough to cue readers into deciding that they'd like to read your entire paper. H… +06/02/2018,Social_workers,@ProfessorChic,"RT @hormiga: Every proposal can have massive holes or shortcomings, if a reviewer chooses to find them. The trick is to make it so compelli…" +06/02/2018,Social_workers,@ProfessorChic,RT @ImpactWales: We 💚💛 concept maps to help pupils organise their thinking. How often do you use them with pupils? https://t.co/jadMxosP5M +06/02/2018,Social_workers,@ProfessorChic,"RT @THINK_PhD: “Set the parameters. You either with the pro-fessors or the amateurs.” + +*Pusha T voice* https://t.co/f5qWW7Kn9H" +06/02/2018,Social_workers,@ProfessorChic,RT @SusanShepler: A new Sierra Leone postage stamp honoring the hero Sierra Leonean doctors who lost their lives during the Ebola crisis. h… +06/02/2018,Social_workers,@ProfessorChic,RT @CharlesModlinMD: Dr. Charles Modlin discusses Kidney Transplantation & Organ Donation at the City Club of Cleveland https://t.co/eW9OSj… +06/02/2018,Social_workers,@ProfessorChic,"RT @doc_becca: I had a real moment of clarity talking to a program officer today. I realized that after six years of unfunded NIH grants, I…" +06/02/2018,Social_workers,@ProfessorChic,RT @wellreadblkgirl: “give your daughters difficult names. give your daughters names that command the full use of tongue. my name makes you… +06/02/2018,Social_workers,@ProfessorChic,"RT @CNN: When he was a kid, Richard Jenkins raised his hand in class so often bullies started calling him ""Harvard."" + +Now, after overcoming…" +06/01/2018,Social_workers,@ProfessorChic,RT @NSRiazat: Paper accepted for publication...and positive preliminary feedback on 2 educational book proposals. Academic life is going qu… +05/31/2018,Social_workers,@ProfessorChic,"RT @CNN: Roseanne Barr blamed Ambien for her racist tweets. + +Sanofi, the maker of Ambien, responded with this statement: ""While all pharmac…" +05/30/2018,Social_workers,@ProfessorChic,RT @detroitnews: The mother of a G League basketball player who died in March after collapsing on the court during a game has filed a feder… +05/30/2018,Social_workers,@ProfessorChic,RT @MikeOLoughlin: Rosaries confiscated from undocumented migrants by US border patrol agents. From a story in the @NewYorker https://t.co/… +05/30/2018,Social_workers,@ProfessorChic,"RT @USATODAY: Michigan is in the throes of the largest hepatitis A outbreak in the USA, a flareup that began in August 2016 and has killed…" +05/29/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: #mdpihealthcare New #NSALDATA article @DrMikeLindsey @ASA_SREM @SociologistRay @WatkinsResearch @DumiLM @RyonCobb @Professor… +05/29/2018,Social_workers,@ProfessorChic,RT @MsTerryMcMillan: Heart. And soul. And compassion. https://t.co/AtkkSybXuC +05/29/2018,Social_workers,@ProfessorChic,"RT @CNN: People who eat fried potatoes two or more times a week double their risk of an early death, a recent study found https://t.co/GZos…" +05/29/2018,Social_workers,@ProfessorChic,"RT @iSmashFizzle: Bury me in the ocean, with my ancestors that jumped from the ships, because they knew death was better than bondage. http…" +05/28/2018,Social_workers,@ProfessorChic,"RT @SylviaObell: My sister has decided to FINALLY watch Grey’s Anatomy... + +She’s currently watching S2 at my apartment... + +Now I gotta go…" +05/28/2018,Social_workers,@ProfessorChic,"RT @nprpolitics: On Memorial Day, Trump Honors Fallen Soldiers And Himself https://t.co/K09ws5Xt98" +05/28/2018,Social_workers,@ProfessorChic,"RT @NYTNational: The African-American origins of the holiday were later suppressed, a historian found, by white Southerners who reclaimed p…" +05/28/2018,Social_workers,@ProfessorChic,RT @aamer_rahman: I’m happy but watch as this gets used as an example of the standard people must demonstrate to ‘deserve’ citizenship http… +05/28/2018,Social_workers,@ProfessorChic,RT @NBCNews: A migrant who climbed four stories up a building to rescue a child dangling from a balcony has been offered French citizenship… +05/28/2018,Social_workers,@ProfessorChic,"RT @UMRogelCancer: Have you heard our 3Ps of Cancer podcast? Check out this discussion of cancer genetics with guest Dr. Elena Stoffel, dir…" +05/28/2018,Social_workers,@ProfessorChic,"RT @nytimes: With Sheer Will, LeBron James Leads the Cavaliers Back to the Finals https://t.co/Cu9deNCvGH" +05/28/2018,Social_workers,@ProfessorChic,"RT @CNN: During a routine traffic stop, Nebraska State Patrol found nearly 120 pounds of the drug fentanyl — enough to kill about 26 millio…" +05/28/2018,Social_workers,@ProfessorChic,"RT @babyitsmb: The last time Lebron wasn’t in the finals: +1. Instagram wasn’t invented +2. Drakes first album didn’t drop yet +3. iPads were…" +05/28/2018,Social_workers,@ProfessorChic,"RT @CBSSports: HE'S DONE IT AGAIN! + +LeBron James is heading back to the NBA Finals for the EIGHTH straight season. https://t.co/6IDmJaR6mu" +05/28/2018,Social_workers,@ProfessorChic,RT @NBCNews: LeBron James leads the Cleveland Cavaliers to the NBA Finals for the fourth straight year. It will be James’ eighth straight f… +05/28/2018,Social_workers,@ProfessorChic,RT @GeeDee215: LeBron. Raymone. James. +05/28/2018,Social_workers,@ProfessorChic,RT @THINK_PhD: LeBron is unreal. +05/28/2018,Social_workers,@ProfessorChic,"RT @loumoore12: January, February, March, April, May, LeBron." +05/28/2018,Social_workers,@ProfessorChic,"RT @cavs: * @Drake sigh * +The nerve, the audacity +#StriveForGreatness https://t.co/CsSVyWwoKl" +05/27/2018,Social_workers,@ProfessorChic,RT @lisabdixon: Mobile Health (mHealth) Versus Clinic-Based Group Intervention for People With Serious Mental Illness: A Randomized Control… +05/27/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Opinion: 911 dispatchers sit between police and people of color. They need better training. https://t.co/ygHXX9HKC0 +05/26/2018,Social_workers,@ProfessorChic,"RT @USATODAY: According to estimates, Starbucks' decision to initiate the racial-bias training will cost $12M in lost profit as it closes t…" +05/26/2018,Social_workers,@ProfessorChic,RT @JLin7: Lebron and Drake being Lebron and Drake #recapofthenight +05/26/2018,Social_workers,@ProfessorChic,"RT @YourManDevine: LeBron's better at this than most of us are at, like, breathing" +05/26/2018,Social_workers,@ProfessorChic,RT @SabrinaSiddiqui: 👑 James. +05/26/2018,Social_workers,@ProfessorChic,RT @AcademicsSay: The road to academic guilt is paved with manuscripts in progress. +05/26/2018,Social_workers,@ProfessorChic,RT @nytimes: The president of the University of Southern California agreed to step down. He was blamed for a scandal over a gynecologist ac… +05/25/2018,Social_workers,@ProfessorChic,RT @dn_nation_world: Harvey Weinstein turns himself in to face sex crime charges. https://t.co/ewXdEesOTq https://t.co/SOA7dDnnlf +05/23/2018,Social_workers,@ProfessorChic,RT @GuardianUS: Obesity now linked to 12 different cancers https://t.co/noCXJG2Jso +05/23/2018,Social_workers,@ProfessorChic,RT @APCentralRegion: Paid coaches and trainers would not be required by law to report suspected child abuse to the authorities under a wate… +05/23/2018,Social_workers,@ProfessorChic,"RT @nytimes: Milwaukee is bracing for the release of a video showing Sterling Brown, a player for the Bucks, being arrested for a parking v…" +05/23/2018,Social_workers,@ProfessorChic,"RT @TheMCUAAAR: Spring Caregiver Conference | Alzheimer's Association - Ann Arbor +June 15, 2018 at Washtenaw Community College +*Jamie Mitch…" +05/23/2018,Social_workers,@ProfessorChic,RT @urbaninstitute: The preterm birth rate for white women was 9.06% in 2017. It was 13.92% for black women and 9.61% for Hispanic women. (… +05/23/2018,Social_workers,@ProfessorChic,RT @GuardianUS: Roger Federer: Serena Williams may well be best overall tennis player ever https://t.co/vUDLFefxBF +05/23/2018,Social_workers,@ProfessorChic,RT @annarbornews: ICE-detained Mexican journalist with UMich fellowship wins new hearing https://t.co/AwXfcHAS3G +05/23/2018,Social_workers,@ProfessorChic,"RT @freep: Credit freezes will be free, thanks to new banking bill and Equifax https://t.co/N9E4QKtwDp" +05/23/2018,Social_workers,@ProfessorChic,RT @nytimes: Breaking News: NFL owners agreed to a new national anthem policy: Teams will be fined if players kneel on the field or sidelin… +05/22/2018,Social_workers,@ProfessorChic,RT @freep: Woman says she delivered her baby in jail cell after jailers said she was faking labor https://t.co/Ww9nDhwKAK +05/22/2018,Social_workers,@ProfessorChic,RT @axios: Michigan has abandoned an effort to exempt some residents from proposed work requirements in the state's Medicaid program. It wo… +05/22/2018,Social_workers,@ProfessorChic,"RT @UM_IHPI: THURSDAY: Lynda Zeller of @MichiganHHS will give our May seminar, with an update & dialogue on #OpioidEpidemic and #mentalheal…" +05/21/2018,Social_workers,@ProfessorChic,RT @UM_MICHR: Up next in the Frontier Seminar Series: Learn about healthcare policy & innovation at 4 p.m. on June 13 in the Ford Auditoriu… +05/21/2018,Social_workers,@ProfessorChic,RT @nprscience: More moms in the US are sharing their beds with their babies—even as doctors strongly oppose the practice. But how risky is… +05/21/2018,Social_workers,@ProfessorChic,"RT @NewYorker: Alain Locke helped launch black modernism, but he was spurned by the artists he hoped to turn into lovers: https://t.co/oVp6…" +05/21/2018,Social_workers,@ProfessorChic,RT @monicafcox: Don't allow someone else's insecurities to become your insecurities. +05/21/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Watching but not treating cancer can be hard. Sometimes it’s the right approach. https://t.co/xoHSlXKZvq +05/20/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Starbucks: You don’t have to buy coffee to sit in our cafes or use our restrooms https://t.co/E8Gtjzu6iP +05/20/2018,Social_workers,@ProfessorChic,"RT @SabrinaSiddiqui: “Here was Meghan Markle, this beautiful bride, this self-described feminist. This divorced biracial woman, 36 years ol…" +05/20/2018,Social_workers,@ProfessorChic,"RT @adigoesswimming: My teenage nephew told me he asked a girl out and she turned him down. I said, ""You know what to do now, right?"" He sa…" +05/20/2018,Social_workers,@ProfessorChic,RT @Forbes: Meet the choreographer behind Childish Gambino's 'This Is America': https://t.co/j5U7T93pQT https://t.co/EdKwJPjTVK +05/20/2018,Social_workers,@ProfessorChic,RT @APEntertainment: BREAKING THEIR SILENCE: More stars speak out about mental health struggles as stigma around it declines https://t.co/i… +05/20/2018,Social_workers,@ProfessorChic,"RT @CNN: When doctors told him his blood has unique, disease-fighting antibodies, he started donating plasma every week. For 60 years. He’s…" +05/19/2018,Social_workers,@ProfessorChic,RT @nycjayjay: It was inevitable. https://t.co/tWAPgF4HaN +05/19/2018,Social_workers,@ProfessorChic,"RT @Gistoffreedom: Honoring Meghan’s Mom, Doria who sat wistfully alone, w/ grace, dignity & a deep love for the child she raised.THAT, is…" +05/19/2018,Social_workers,@ProfessorChic,RT @TheYBF: Thread👇🏾. A modern dissertation on black survival. https://t.co/ewLUVS3QS0 +05/19/2018,Social_workers,@ProfessorChic,"RT @ananavarro: Prince Harry and Meghan Markle officialize their love today. It has remarkable significance. In the US, it wasn’t until 196…" +05/19/2018,Social_workers,@ProfessorChic,RT @deray: the whole family is gifted. https://t.co/oWdVuqwl8E +05/19/2018,Social_workers,@ProfessorChic,"RT @WGME: Harry and Meghan, serenaded to the tune of ""Stand By Me."" https://t.co/7pUMBztYxJ #royalwedding @WGME https://t.co/RwCAfVGbOX" +05/19/2018,Social_workers,@ProfessorChic,"RT @BlackGirlNerds: White people: When is he going to stop talking? +Black people: He's just getting warmed up. *taking off shoes* *sneak e…" +05/19/2018,Social_workers,@ProfessorChic,RT @mRiah: These royals don’t know nothing about that good old 3 closings before the final end!! +05/19/2018,Social_workers,@ProfessorChic,RT @thedailybeast: The pastor giving the sermon right now was also the first black leader of the U.S. Episcopal Church #RoyalWedding https:… +05/19/2018,Social_workers,@ProfessorChic,RT @AlyssaMastro44: yes!!! https://t.co/bH6SPWdOyY +05/19/2018,Social_workers,@ProfessorChic,RT @TallGlassofStyL: “Take ya time pastor” https://t.co/jjfQ3YR2Er +05/19/2018,Social_workers,@ProfessorChic,"RT @CNN: American Bishop Michael Curry is delivering his address at the #royalwedding, which starts and ends with quotes from Martin Luther…" +05/19/2018,Social_workers,@ProfessorChic,RT @KatyTurNBC: The Most Reverand Michael Curry is everything right now. +05/18/2018,Social_workers,@ProfessorChic,RT @bniceloco: Michael Jackson really lied to Oprah and said he was rusty then hit the moonwalk like it was nothing 🐐 https://t.co/H3EHthUL… +05/18/2018,Social_workers,@ProfessorChic,RT @SeanMcElwee: Teen Vogue is doing a series of reported pieces on historical events that are ignored by history books. First piece explor… +05/18/2018,Social_workers,@ProfessorChic,RT @RawStory: Trump personally ordered the postmaster general to double Amazon’s shipping rates: report https://t.co/e9Z25F5F2t +05/18/2018,Social_workers,@ProfessorChic,"RT @AdviceToWriters: #Writing saved me from the sin and inconvenience of violence. +ALICE WALKER + +#amwriting #fiction https://t.co/BuvXFuc1wN" +05/18/2018,Social_workers,@ProfessorChic,"RT @NIMHD: Feature Story: For rural people with chronic diseases, poverty and depression go hand in hand. https://t.co/P1CzXeWXov #MentalHe…" +05/18/2018,Social_workers,@ProfessorChic,"RT @CDC_Cancer: Women: Overwhelmed by too much health advice? Get our ""cheat sheet"" for #cancer screenings and good health! https://t.co/nt…" +05/18/2018,Social_workers,@ProfessorChic,"RT @DeanObeidallah: This Is even more relevant today after latest school shooting: Childish Gambino's ""This Is America"" https://t.co/Ryvj3r…" +05/18/2018,Social_workers,@ProfessorChic,"RT @davidaxelrod: My amazing wife, Susan, has waged a long, heroic battle to @CureEpilepsy. Today I watched her receive an honorary +docto…" +05/18/2018,Social_workers,@ProfessorChic,RT @NPR: The Trump administration is reviving a rule that would deny federal family planning funds to organizations that provide abortion r… +05/18/2018,Social_workers,@ProfessorChic,RT @NIHDirector: See video of my conversation with @BarbraStreisand on a Facebook Live cohosted by @NIH and @WHA for a talk on women’s hear… +05/18/2018,Social_workers,@ProfessorChic,RT @NIH_LRP: Join a Facebook Live today at 2:00 pm ET with @WHA co-founder @BarbraStreisand & @NIHDirector Dr. Francis Collins today as th… +05/18/2018,Social_workers,@ProfessorChic,RT @RVAwonk: Trump is reportedly planning to announce tomorrow that he's cutting federal funding to any health agency that even provides in… +05/18/2018,Social_workers,@ProfessorChic,RT @TheAtlantic: Some black parents see homeschooling as a way of protecting their kids from the racial disparities of the American educati… +05/16/2018,Social_workers,@ProfessorChic,RT @loumoore12: A student called me Lou today. https://t.co/KOw8JQSUEu +05/16/2018,Social_workers,@ProfessorChic,RT @chrislhayes: The movie version of this entire thing *has* to be called Basta. +05/16/2018,Social_workers,@ProfessorChic,RT @nprpolitics: Senate Approves Overturning FCC's Net Neutrality Repeal https://t.co/1NoC8VXNqp +05/16/2018,Social_workers,@ProfessorChic,RT @Gistoffreedom: Historic Tuskegee Institute | History of Nursing at Tuskegee | Tuskegee University https://t.co/ubK8La61ox +05/16/2018,Social_workers,@ProfessorChic,"RT @MichaelSkolnik: When Paulette Jordan wins in November, she will become the first Native American Governor in US history! + +We. Can. Do.…" +05/15/2018,Social_workers,@ProfessorChic,RT @KQED: Can Schools Change Measures of Success by Focusing on Meaningful Work Instead of Test Scores? https://t.co/rKDpgibcT8 https://t.c… +05/13/2018,Social_workers,@ProfessorChic,RT @GlennThrush: I can't just keep throwing coffee at every problem. +05/13/2018,Social_workers,@ProfessorChic,"RT @BritniDWrites: Add ""performing community service while Black"" to the list of things that make you suspicious. + +This happened to my #SG…" +05/13/2018,Social_workers,@ProfessorChic,"RT @SenGillibrand: As a working mom and a lawmaker, Mother's Day for me raises the question of whether we as a country value women every da…" +05/13/2018,Social_workers,@ProfessorChic,"RT @AcademicBatgirl: Happy Mother’s Day to all of the academic moms working hard to keep it real at home and on campus, and to women who do…" +05/13/2018,Social_workers,@ProfessorChic,"RT @ProfJeffries: 54 years ago #FannieLouHamer asked the question, “Is this America?” + +54 years later #ChildishGambino reminds us that the…" +05/13/2018,Social_workers,@ProfessorChic,"RT @AdviceToWriters: Inspiration exists, but it has to find us working. +PABLO PICASSO + +#amwriting #creativity #writing https://t.co/miU8zo4…" +05/12/2018,Social_workers,@ProfessorChic,RT @UConnHDI: The Robert Wood Johnson Foundation has appointed Dr. Wizdom Powell to the National Advisory Committee for their Interdiscipli… +05/12/2018,Social_workers,@ProfessorChic,"RT @meredithdclark: *jumps up with a Baptist shout* + +(even tho I'm not Baptist) https://t.co/apQdtzDkQJ" +05/12/2018,Social_workers,@ProfessorChic,RT @NkemkaA: No is sooo powerful in facilitating self care. What can you say no too today? https://t.co/h9D64PYFme +05/10/2018,Social_workers,@ProfessorChic,"RT @PennLDI: Next Tuesday: Don't miss Dr. Renuka Tipirneni's research seminar on the effects of #Medicaid expansion on access to care, heal…" +05/09/2018,Social_workers,@ProfessorChic,RT @SPSMM_D51: This is the third installment of interviews highlighting the work of psychologists whose research and practice examines mino… +05/09/2018,Social_workers,@ProfessorChic,RT @thestevefund: Please watch this 45-second video in which Dr. Alfiee Breland-Noble @dralfiee Senior Scientific Advisor to the Steve Fund… +05/09/2018,Social_workers,@ProfessorChic,RT @AP: President Trump suggests that journalists have their credentials revoked for reporting negative news about him. https://t.co/w2zQuf… +05/09/2018,Social_workers,@ProfessorChic,RT @NPR: The CDC is still advising people not to eat romaine lettuce unless they know where it was grown. https://t.co/1IDcDr5Pmo +05/07/2018,Social_workers,@ProfessorChic,RT @GQMagazine: Buy the @Jcrew Nike that always sells out—while you still can https://t.co/ptgp5MN78p https://t.co/9qzMPUCgcz +05/07/2018,Social_workers,@ProfessorChic,RT @insidehighered: The University of Florida is apologizing for the way some black students were treated at one of the graduation ceremoni… +05/07/2018,Social_workers,@ProfessorChic,"RT @thecrisismag: ""In his visit with West, the rapper T.I. was stunned to find that West, despite his endorsement of Trump, had never heard…" +05/07/2018,Social_workers,@ProfessorChic,RT @THEBSU: If you're looking for a class to take here's a cool one https://t.co/qwi2WhQ6gV +05/07/2018,Social_workers,@ProfessorChic,"RT @TheUndefeated: At Morehouse, Starbucks executives seem unable to understand the burden of institutional racism. +https://t.co/wwqdXX04V2" +05/07/2018,Social_workers,@ProfessorChic,RT @nprpolitics: It's no longer out of the realm of possibility that the Senate could change hands and fall under Democratic control after… +05/07/2018,Social_workers,@ProfessorChic,RT @fivefifths: I can see Twitter is going to be bad again today +05/07/2018,Social_workers,@ProfessorChic,"RT @marinakoren: Kanye West is championing ""a white freedom, freedom without consequence, freedom without criticism, freedom to be proud an…" +05/07/2018,Social_workers,@ProfessorChic,"RT @Sifill_LDF: And so, it is here. Brilliant, self-revealing, devastating. Ta-Nehisi Coates on the fall of Kanye. Take the time to read it…" +05/07/2018,Social_workers,@ProfessorChic,"RT @MichaelSkolnik: This is one the greatest pieces of writing I have ever read. Please read it. And read the whole thing. + +Thank you Ta-N…" +05/07/2018,Social_workers,@ProfessorChic,"RT @camerondare: Childish Gambino - This is America + +Released 22 hours ago. 10M views. #1 Trending on YouTube. + +https://t.co/FnYDDfqUBp" +05/07/2018,Social_workers,@ProfessorChic,RT @Wizdomisms: The outrage over #ThisIsAmerica & its depiction of gun violence & the lack of equivalent outrage over actual gun violence t… +05/05/2018,Social_workers,@ProfessorChic,RT @ProfessorTD: 'Cool Blond Asians' Are Giving Me an Identity Crisis says #multiracial #biracial author https://t.co/PJ293hM1dl @get_lipst… +05/05/2018,Social_workers,@ProfessorChic,RT @BlackHealthNews: The Health of Black America: Gains in health equality by African-Americans in the U.S. have taken a slight step backwa… +05/05/2018,Social_workers,@ProfessorChic,RT @kesslerbs: Problematic is the “bless your heart” of academia. +05/05/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: Karen Tabb @ProfessorTD former @PRBA_ISR @TheMCUAAAR summer program participant. @ProfMouzon @WatkinsResearch @ProfessorChic… +07/02/2018,Social_workers,@DrKumarVishwas,RT @SushmaSwaraj: लोकतंत्र में मतभिन्नता स्वाभाविक है. आलोचना अवश्य करो. लेकिन अभद्र भाषा में नहीं. सभ्य भाषा में की गयी आलोचना ज़्यादा असर… +07/02/2018,Social_workers,@DrKumarVishwas,आपके नेतृत्व में दिल्ली की क्रिकेट नये प्रतिभाशाली युवकों के लिए उपयुक्त स्थान बनेगी व भारतीय उपमहाद्वीप में इस खेल… https://t.co/EIcJRgjKcg +07/02/2018,Social_workers,@DrKumarVishwas,हाशिए पर पड़े किसी गतवैभव कुंठित की बदतमीज़ी से तुम्हारे पिता का मान-समान कम नहीं होगा @officiallyAnkit ! मन शांत र… https://t.co/nZK9QtviWl +07/01/2018,Social_workers,@DrKumarVishwas,"RT @pramila2710: एक बस तू ही नहीं मुझसे ख़फ़ा हो बैठा +मैं ने जो संग तराशा वो ख़ुदा हो बैठा + +शुक्रिया ए मेरे क़ातिल ए मसीहा मेरे  +ज़हर जो तु…" +07/01/2018,Social_workers,@DrKumarVishwas,"'वो दिल-नवाज़ है लेकिन नज़र-शनास नहीं +मिरा इलाज मिरे चारागर के पास नहीं' +(नासिर काज़मी) +मेरी किस्मत अच्छी है कि मे… https://t.co/wulsEDgA8x" +07/01/2018,Social_workers,@DrKumarVishwas,"अपि स्वर्णमयी लंका न में लक्ष्मण रोचते 🙏 +सुप्रभात भारत ❤️🇮🇳 https://t.co/d0DsfBQ22V" +06/30/2018,Social_workers,@DrKumarVishwas,Applause to this real “Down to Earth” singer and such a nice gesture of u @Shankar_Live 👍🇮🇳 Mile Sur Mera Tumahra❤️ https://t.co/OvAzMDwVtc +06/30/2018,Social_workers,@DrKumarVishwas,@ROHITJINDAL1421 श्री तुफैल चतुर्वेदी 👍 +06/30/2018,Social_workers,@DrKumarVishwas,"बुलंदी का नशा सम्तों का जादू तोड़ देती है , +हवा उड़ते हुए पंछी के बाज़ू तोड़ देती है , +सियासी भेड़ियों थोड़ी बहुत… https://t.co/2jut5HxvSJ" +06/30/2018,Social_workers,@DrKumarVishwas,मंदसौर हमारे लिए सोच-शर्म और कठोर क़दम उठाने का ज़रूरी वक़्त है ! समाज-सरकार-न्यायपालिका सबको अब हर हाल में जागना… https://t.co/ExJyeemGQ2 +06/29/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: वक़्त रहते ही देख लो वरना , +ख़्वाब आँखें बदल भी लेते हैं..!😍 https://t.co/o3tf2YjkQc" +06/29/2018,Social_workers,@DrKumarVishwas,"वक़्त रहते ही देख लो वरना , +ख़्वाब आँखें बदल भी लेते हैं..!😍 https://t.co/o3tf2YjkQc" +06/29/2018,Social_workers,@DrKumarVishwas,संगीत और ज़िंदगी दोनों में बेलौस और जुनूनी धुन जीने वाले मनहर दोस्त @VishalDadlani को उनके जन्मदिन पर उनके कम्पोजिश… https://t.co/F6zopRJYoT +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: For once and for ever... Nation first! 🇮🇳 +""हम शब्द-वंश के हरकारे,सच कहना अपनी परंपरा, +हम उस कबीर की पीढ़ी जो बाबर-अकबर…" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: आतंक से लड रही सेना के ख़िलाफ़ राजनीति नहीं करने दूँगा यह सुनकर,आत्मा का सौदा कर लेने वाले 11 नवपतित गिद्धों को जमा कर…" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: 3 में से जिस 1 मुद्दे पर देश की सेना के पक्ष में होने पर मुझे “तथाकथित राजनैतिक नुक़सान” पहुचायाँ गया था,आज उसी शौर्यगा…" +06/28/2018,Social_workers,@DrKumarVishwas,"For once and for ever... Nation first! 🇮🇳 +""हम शब्द-वंश के हरकारे,सच कहना अपनी परंपरा, +हम उस कबीर की पीढ़ी जो बाबर-… https://t.co/kUHSaEpAOE" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @RathoreAradhana: ""अंधकार चाहे भारी हो या समंदर पार हो,सदा उजाला विदित हुआ है अगर सत्य आधार हो..!"" +Salute to u for ur stand 🙏🏻🇮🇳❤️ https…" +06/28/2018,Social_workers,@DrKumarVishwas,"Viral max and forward to this video to every Indian who being unpolitical only loves his/her country ❤️🙏🇮🇳 +https://t.co/ucQAD1vRg2" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: हम भारत के लोग! +We, The Nation! +Watch, Listen and Share if you feel for Nation! 🇮🇳🙏 +https://t.co/xKqFQuVB5j" +06/28/2018,Social_workers,@DrKumarVishwas,Must watch again #SurgicalStrike 🇮🇳🙏 https://t.co/AJTZFZf5EK +06/28/2018,Social_workers,@DrKumarVishwas,"आतंक से लड रही सेना के ख़िलाफ़ राजनीति नहीं करने दूँगा यह सुनकर,आत्मा का सौदा कर लेने वाले 11 नवपतित गिद्धों को जमा… https://t.co/ff7Z2lXrjc" +06/28/2018,Social_workers,@DrKumarVishwas,"3 में से जिस 1 मुद्दे पर देश की सेना के पक्ष में होने पर मुझे “तथाकथित राजनैतिक नुक़सान” पहुचायाँ गया था,आज उसी शौ… https://t.co/ykSmyuAZAB" +06/27/2018,Social_workers,@DrKumarVishwas,हम हैं देसी ❤️🇮🇳👍 https://t.co/75d1fWCBCc +06/27/2018,Social_workers,@DrKumarVishwas,@turabnaqvi @Rekhta @rahatindori अल्हमदुलिल्लाह ! लेकिन जॉन बस एक ही हुआ ❤️👍😊 +06/27/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “जो धरती से अम्बर जोड़े उसका नाम मोहब्बत है , +जो शीशे से पत्थर तोड़े उसका नाम मोहब्बत है , +क़तरा क़तरा सागर तक तो जाती…" +06/27/2018,Social_workers,@DrKumarVishwas,"रोज़ मौसम की शरारत झेलता कब तक , +मैंने खुद में रच लिए कुछ ख़ुशनुमा मंज़र..! https://t.co/Av8sf5ikYN" +06/27/2018,Social_workers,@DrKumarVishwas,"RT @jaya_kishoriji: गीत काव्य की शायद सबसे पुरानी विधा है; गीत मनुष्य मात्र की भाषा है। +गीत प्रत्येक युग में मनुष्य के साथी रहे हैं, भविष्य…" +06/26/2018,Social_workers,@DrKumarVishwas,RT @anshuman1tiwari: अनोखा पुनीत शब्द विन्यास ! नवगीत के पुराने दिन याद आ गए . साधुवाद https://t.co/PO6twvZo2E +06/26/2018,Social_workers,@DrKumarVishwas,"गीत को ख़ारिज करने वालों के लिए सूचना विस्मयकारी हो सकती है कि एक शुद्ध गीत को 24 घंटे में 10,00,00 से ज़्यादा गीत-… https://t.co/SOogRMhIXY" +06/26/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: ...तो आज, आप दोस्तों की प्रतीक्षा के लगभग दस वर्षों के बाद, मेरी आत्मकथा का एक हिस्सा, यह गीत, आप सब के लिए, क्यूँकि उस…" +06/26/2018,Social_workers,@DrKumarVishwas,@rinkkku https://t.co/CGoPNuYGKN +06/26/2018,Social_workers,@DrKumarVishwas,@deeptibharadwaj जीती रहो भतीजी ❤️👍😜 +06/26/2018,Social_workers,@DrKumarVishwas,"अग़ल-बग़ल स्वर्णाभ शिखर थे.... +बाबा नागार्जुन की कविता “बादल को धिरते देखा है” में ये पंक्ति आजतक बस पढ़ी/गाई थी !… https://t.co/K0B10hstXb" +06/25/2018,Social_workers,@DrKumarVishwas,"...तो आज, आप दोस्तों की प्रतीक्षा के लगभग दस वर्षों के बाद, मेरी आत्मकथा का एक हिस्सा, यह गीत, आप सब के लिए, क्यूँ… https://t.co/5jjrGfwCGW" +06/25/2018,Social_workers,@DrKumarVishwas,"...आप सब के द्वारा हज़ारों बार पूछे गए लाखों प्रश्नों का बेहद असहज सा सहज उत्तर भी इसी गीत में है, और साथ ही वे कई… https://t.co/pRlJGIpQZd" +06/25/2018,Social_workers,@DrKumarVishwas,...उजाड़ मन ने अपलक शून्य को निहारते हुए रोती आत्मा के साथ उसी रात यह गीत रचा और उसी रात ने आगे सैकड़ों-हज़ारों ऐसी… https://t.co/q4EXaGf2nJ +06/25/2018,Social_workers,@DrKumarVishwas,"...जबलपुर से अयोध्या की ट्रेन यात्रा थी, ठीक-ठीक याद है “चित्रकूट-एक्सप्रेस” से ! देश के वरेण्य गीतकार स्व डॉ उर्मि… https://t.co/GvEtrJXJ4B" +06/25/2018,Social_workers,@DrKumarVishwas,...जब उन हाथों में मेरे छंदों के वर्तुल कंगनों की बजाय किसी और के नाम की चूड़ियाँ डाली जा रही थीं...और उस माँग में… https://t.co/QgIk9CqDae +06/25/2018,Social_workers,@DrKumarVishwas,"आज आपके साथ एक गीत शेयर कर रहा हूँ। बरसों-बरस पहले, यह गीत ठीक उस रात लिखा गया, जब उन पैरों की उंगलियों में वो बिछि… https://t.co/8GXUyGu2l7" +06/25/2018,Social_workers,@DrKumarVishwas,"आपातकाल 🌑 #Emergency + +https://t.co/MwXke48G0o" +06/25/2018,Social_workers,@DrKumarVishwas,"Nagarjuna on #Emergency @anantvijay @maliniawasthi @MANJULtoons @iawoolford @BajpayeeManoj @YRDeshmukh +https://t.co/MwXke48G0o" +06/25/2018,Social_workers,@DrKumarVishwas,"@Kalpana46065453 @swroopraj320 @KapilMishra_IND @FN7zVYfkOF7mi19 @narendramodi @chhagan819 Enjoy 🌦🌧⛈ +https://t.co/vflB7r71k4" +06/25/2018,Social_workers,@DrKumarVishwas,"दैनिक भास्कर में आज महाभारत 2019 : 'बीच धार में ही पसर गई पीडीपी' 🙏😁😁 +https://t.co/VSeJX7h1Z0" +06/24/2018,Social_workers,@DrKumarVishwas,"''जिसको दिन-रात देखते थे हम , +उसने इक बार भी नहीं देखा , +इश्क़ इतने जतन से करते रहे , +हमने इतवार भी नहीं देखा...!”😍… https://t.co/Emec0zVGeD" +06/24/2018,Social_workers,@DrKumarVishwas,@gyan_ind जीते रहिए 🎂🌹 +06/23/2018,Social_workers,@DrKumarVishwas,"मा०मंत्री @HardeepSPuri जी,आंवटियों की समस्या के प्रति आपके श्रम का सम्मान करते हुए कहूगाँ कि आपका ये उत्तर नितांत… https://t.co/9CYq6N6JDf" +06/22/2018,Social_workers,@DrKumarVishwas,"पिता जिस के रक्त ने उज्ज्वल किया कुल-वंश-माथा ❤️ +❤️🙏🇮🇳🇮🇳🇮🇳 लव यू अब्बाजान 🙏 https://t.co/ezDRkOVl8p" +06/22/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “विदुर का भीष्म का पद अश्रु-प्रक्षालन नहीं भूला, +कठिन-व्रत द्रोण-इंगित पथ-तपश्चालन नहीं भूला , +कुटिल लाक्षागृहों के फे…" +06/22/2018,Social_workers,@DrKumarVishwas,"किरदार हो ऐसा कि फसाना नहीं भूले, +ज़िंदा रहो ऐसे कि ज़माना नहीं भूले !👍 मैक्यावैली,गैलीलियो,लिनियार्डो द विंची और… https://t.co/FiCDcxHKcl" +06/20/2018,Social_workers,@DrKumarVishwas,@bahraichpolice Thanks 🙏 +06/20/2018,Social_workers,@DrKumarVishwas,"स्व मुश्ताक़ अहमद युसूफ़ी की लिखी उत्कृष्ट हास्य-व्यंग्य की किताबें 'आब-ए-ग़ुम', 'ख़ाकम-ब-दहन' और 'ज़र-गुज़िशत' हि… https://t.co/FB87nOGm2x" +06/20/2018,Social_workers,@DrKumarVishwas,उर्दू के संभवतः सबसे बड़े व्यंग्यकार मुश्ताक़ अहमद युसूफ़ी जी नहीं रहे। जयपुर में पैदा हुए युसूफ़ी साहब यूँ तो आज़ा… https://t.co/afu05x06zJ +06/20/2018,Social_workers,@DrKumarVishwas,"आषाढ़ लग गया है...❤️ मादक त्रयी कालिदास-मेघदूत, बाबा नागार्जुन का “भीषोण भालो” गठबंधन सुनिए 😍 @rahuldev2… https://t.co/YzPnTrgcP5" +06/20/2018,Social_workers,@DrKumarVishwas,@Uppolice @NCWIndia @myogiadityanath @vinodkapri @DrSarvapriya @bahraichpolice @digdevipatan @adgzonegkr आभार ! आशा… https://t.co/IzNIGPMQue +06/20/2018,Social_workers,@DrKumarVishwas,@ChetanSanghi @NCWIndia @Uppolice @myogiadityanath @vinodkapri @DrSarvapriya शुक्रिया 🙏🇮🇳 +06/20/2018,Social_workers,@DrKumarVishwas,"“आज भी आदम की बेटी हंटरों की जद में है, +हर गिलहरी के बदन पर धारियाँ होंगीं ज़रूर” +बेहद दुखद लेकिन ये सब कब तक? आख़ि… https://t.co/K722xlLACQ" +06/19/2018,Social_workers,@DrKumarVishwas,"RT @EvrydayQuote: Distance yourself from people who: + +-Lie to you +-Disrespect you +-Use you +-Put you down" +06/19/2018,Social_workers,@DrKumarVishwas,"ये मसअला दिल का है, +हल कर दे इसे मौला , +ये दर्द ए मुहब्बत भी , +“कश्मीर” न हो जाए..!🙏😳 +(अना देहलवी)" +06/19/2018,Social_workers,@DrKumarVishwas,❤️❤️❤️❤️🙏🇮🇳🇮🇳 https://t.co/tCoMG4yjmi +06/18/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: अपनी हर ग़ैर-मुनासिब सी जहालत के लिए, +बारहा तू जो ये बातों के सिफ़र तानता है , +छल-फरेबों में ढके सच के मसीहा मेरे , +हम…" +06/18/2018,Social_workers,@DrKumarVishwas,"RT @manakgupta: “धर्म निरपेक्षता एक मफलर की तरह है, जो चुनावी-मौसम देखकर कभी गले पड़ जाता है, कभी सोफ़े पर पसर जाता है, सवाल पूछने पर मुंह…" +06/17/2018,Social_workers,@DrKumarVishwas,झाँसी की सिंहनी माँ लक्ष्मीबाई आज ही के दिन* अंग्रेज़ी साम्राज्यवाद से लड़ते हुए वीरगति को प्राप्त हुई थीं। स्वातं… https://t.co/hUSwsFkrDa +06/17/2018,Social_workers,@DrKumarVishwas,RT @_AnkitaRana: Dr. kumar Vishwas recites ' Khub ladi mardani wo to Jhansi Wali Rani thi' penned by late #Subhadra_Kumari_Chauhan in a #kv… +06/17/2018,Social_workers,@DrKumarVishwas,"अपनी हर ग़ैर-मुनासिब सी जहालत के लिए, +बारहा तू जो ये बातों के सिफ़र तानता है , +छल-फरेबों में ढके सच के मसीहा मेरे ,… https://t.co/1yeEd1x30P" +06/17/2018,Social_workers,@DrKumarVishwas,इंटरनेट कहता है कि आज 'फ़ादर्स डे' है। साहित्य भाव रखने वाली हमारी सभ्यता किसी अन्य सभ्यता से आई हुई परंपरा को वर्… https://t.co/IAP90z1rnj +06/16/2018,Social_workers,@DrKumarVishwas,Well said @MEAIndia 🇮🇳👍 https://t.co/wDznYDSXAM +06/16/2018,Social_workers,@DrKumarVishwas,"अहा, भारतीय स्वातंत्रय चेतना की अग्निरेखा ! इस पुण्यभूमि में स्थित महाराणा के जन्म का अमृत-कक्ष ,शक्ति मद में चूर ह… https://t.co/t9bOUryp6U" +06/16/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: تری دُنیا تری اُمید تجھے مل جاے +چاند اس بار تری عید تجھے مل جاے +جس کی یادوں میں چراغوں سا جلا ھے شب بھر +اُس سحر - رخ کی…" +06/16/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: ""तेरी दुनिया, तेरी उम्मीद तुझे मिल जाए + चाँद इस बार तेरी ईद तुझे मिल जाए + जिसकी यादों में चिराग़ों सा जला है शब-भर + उस…" +06/15/2018,Social_workers,@DrKumarVishwas,"تری دُنیا تری اُمید تجھے مل جاے +چاند اس بار تری عید تجھے مل جاے +جس کی یادوں میں چراغوں سا جلا ھے شب بھر +اُس سحر - ر… https://t.co/wTtqRHUnue" +06/15/2018,Social_workers,@DrKumarVishwas,"""तेरी दुनिया, तेरी उम्मीद तुझे मिल जाए + चाँद इस बार तेरी ईद तुझे मिल जाए + जिसकी यादों में चिराग़ों सा जला है शब-भर… https://t.co/dZncctcVW5" +06/15/2018,Social_workers,@DrKumarVishwas,"उन्हें अपनी दुकान लुटने का डर है, +यहाँ साँस अपनी ही घुटने का डर है 😢👎🏿 https://t.co/rX6VJcsu2u" +06/15/2018,Social_workers,@DrKumarVishwas,"भ्रष्टाचार-विरोधी आंदोलन के जनक, समर्पित सामाजिक कार्यकर्ता और हमारी आंदोलन-धर्मिता के प्रतीक पुरूष श्री अन्ना हज़ा… https://t.co/BzLfOY5S8f" +06/15/2018,Social_workers,@DrKumarVishwas,RT @BloodDonorsIn: #Lucknow Need #Blood O-ve for New born baby at Era Med College. Call 9598312559 via @mohdfurquanLko cc @lucknowpolice @u… +06/15/2018,Social_workers,@DrKumarVishwas,"अपने-अपने दल में,अपनी सत्ता-लोलुपता, अपने निजी बौनेपन का असुरक्षा-बोध, आत्ममुग्धता और सांप्रदायिक-वंशवादी राजनीति… https://t.co/QP2V19MMDA" +06/15/2018,Social_workers,@DrKumarVishwas,@KAVIDED जीवेम: शरद: शतम् 🎂👍🌹 +06/14/2018,Social_workers,@DrKumarVishwas,भगवान पूरे विश्व में गूँजे हमारी भारती....❤️🇮🇳🙏 https://t.co/6Icg6WpDM1 +06/14/2018,Social_workers,@DrKumarVishwas,"“जो धरती से अम्बर जोड़े उसका नाम मोहब्बत है , +जो शीशे से पत्थर तोड़े उसका नाम मोहब्बत है , +क़तरा क़तरा सागर तक तो… https://t.co/CsRuiEJ2S1" +06/13/2018,Social_workers,@DrKumarVishwas,"No,never ! I m not even a spade of Atal Ji’s charisma ! That time was different but good, his friends were good, hi… https://t.co/mtCkssd6tU" +06/12/2018,Social_workers,@DrKumarVishwas,"बाक़ी तो सब है इस तमाशे में , +सिर्फ़ ग़ायब हैं कथ्य की बातें ! +क्या ग़ज़ब दौर ए बेहयाई है , +झूठ के मुँह से सत्य की बातें ?😳🤣🤣👎🏿" +06/12/2018,Social_workers,@DrKumarVishwas,"तुम सब पहले “पकौड़ा-शिकंजी-आंदोलन” जो भी बनाते थे वो तो पता नहीं, पर अब तुम सब मिलकर इस देश के भोले-भाले लोगों का… https://t.co/g0Q4xOuB70" +06/11/2018,Social_workers,@DrKumarVishwas,शतम् विहाय भोक्तव्यम् ❤️ अलविदा बैंकाक 🙏 https://t.co/i7jNQ3Gult +06/11/2018,Social_workers,@DrKumarVishwas,"RT @manakgupta: भाई हो बिछुड़े हुए, भाई रहो, +भीख की ऐंठ से मिलेगा क्या? +चांद तक तुम हमारे साथ चलो, +फ़क़त घुसपैठ से मिलेगा क्या? + +‘महाकवि’…" +06/11/2018,Social_workers,@DrKumarVishwas,RT @AvadhootGupte: A beautifully written song from the film #Parmanu by the great @DrKumarVishwas !! Guys.. do listen!! https://t.co/LWwy6t… +06/11/2018,Social_workers,@DrKumarVishwas,"जो क़त्ल को भी जश्न लिखे, मौत को माशूक +‘बिस्मिल’ को बराबर हैं कलम हो कि हो बन्दूक +शहीद रामप्रसाद 'बिस्मिल', जिन्हों… https://t.co/sh2FCmNNaB" +06/11/2018,Social_workers,@DrKumarVishwas,"RT @DainikBhaskar: महाभारत 2019: सीटें कम पड़ें तो ही होता है सियासत में सीजफायर- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की प्रस्तुति +https…" +06/10/2018,Social_workers,@DrKumarVishwas,Congrats Team @IndianFootball on winning the #IntercontinentalCup2018 🏆 as well as Hearts ❤️ of millions of fans. S… https://t.co/V8qoI1j03q +06/10/2018,Social_workers,@DrKumarVishwas,थाईलैण्ड का शाकाहारी भोजन अत्यंत स्वादिष्ट व वैविध्यपूर्ण है.कल थाईलैण्ड के पूर्व उपप्रधानमन्त्री/पर्यटन मंत्री ने… https://t.co/iTouELSTQD +06/10/2018,Social_workers,@DrKumarVishwas,आभार भारतवंशियों ! बैंकाक में कविता का अप्रतिम प्रवाह ! जय हिंद-जय हिंद 🇮🇳❤️🙏 https://t.co/AoxA1fDIGR +06/09/2018,Social_workers,@DrKumarVishwas,"वैश्विक रंग-धानी बैंकाक में हिन्दी-उर्दू की काव्य-लहरी के क्षण, विशिष्ट कवियों-शायरों के सान्निध्य में... बैंकाक (… https://t.co/sHhvG2iGGr" +06/09/2018,Social_workers,@DrKumarVishwas,Congratulations @anitaatulmohan and @atulmohanhere 👍🇮🇳❤️Jay Ho https://t.co/n76YAxS9uq +06/09/2018,Social_workers,@DrKumarVishwas,बैंकाक में थाईलैंड के पर्यटन मंत्री और पूर्व उप प्रधानमंत्री कॉर्न दब्बारांसी के साथ कई विशिष्ट लोगों को वर्ल्ड आइ… https://t.co/mFiDovM1VW +06/09/2018,Social_workers,@DrKumarVishwas,"स्वतंत्रता सेनानी, आदिवासी जननायक, 'उलगुलान' के प्रणेता और समाज के 'भगवान', धरती आबा बिरसा मुंडा जी की आज पुण्यतिथि… https://t.co/GJw0jU7Xxc" +06/08/2018,Social_workers,@DrKumarVishwas,राजसिकता के वैश्विक रंग-देश बैंकाक में माँ हिंदी की सात्विक लोक-लहरियों का महापर्व ! आप सब बेहद प्यार करने वाले दो… https://t.co/ADC5f1uYKo +06/08/2018,Social_workers,@DrKumarVishwas,कृष्णभूमि मथुरा से कल शाम के जागरण कवि-सम्मेलन की कवरेज ❤️🙏 https://t.co/RLqXQ3VW9v +06/07/2018,Social_workers,@DrKumarVishwas,मेरे आराध्य भगवान भुवन मोहन कन्हैया की पावन भूमि मथुरा से दैनिक जागरण कवि-सम्मेलन LIVE...!!! 🙏❤️ https://t.co/CWEVphfJYy +06/07/2018,Social_workers,@DrKumarVishwas,एक शानदार फ़िल्म में अपनी थोड़ी सी हिस्सेदारी पर निजी ख़ुशी के इस वक़्त में आप सबका शुक्रिया ! जय हो ❤️🇮🇳🙏… https://t.co/n9pYJkc6AF +06/07/2018,Social_workers,@DrKumarVishwas,"सूरज पर प्रतिबंध अनेकों और भरोसा रातों पर ! +नयन हमारे सीख रहे हैं, हँसना झूठी बातों पर ! +हमने जीवन की चौसर पर, दाँव… https://t.co/51Fs8zWirQ" +06/07/2018,Social_workers,@DrKumarVishwas,माँ-बाबूजी को सादर चरण/स्पर्श ! 🙏😍महापंडित @abhisar_sharma को बधाई https://t.co/IHVzYUaZob +06/06/2018,Social_workers,@DrKumarVishwas,सुबह आपने इस गीत को चिलचिलाती धूप और मौसमी गर्मी के प्रकोप को कम करने की अपील के रूप में सुना। अब ढलती साँझ में इसी… https://t.co/gH6F6iFRa7 +06/06/2018,Social_workers,@DrKumarVishwas,"धूप में साया 🙏🌞 +https://t.co/hotCEKKNji" +06/05/2018,Social_workers,@DrKumarVishwas,"RT @ANI: Relative of stone-pelter who died after being run over by CRPF vehicle, slams Hurriyat leaders,accuses Geelani of hypocrisy,says,'…" +06/05/2018,Social_workers,@DrKumarVishwas,'क्षिति-जल-पावक-गगन-समीरा' - यही हमारे शरीर की संरचना भी है और पर्यावरण की भी। इसलिए पर्यावरण जीवन है। पर्यावरण का… https://t.co/r6yqyvx1rD +06/04/2018,Social_workers,@DrKumarVishwas,@avdhesh002 @TRIPATHI_AVI_ आशीर्वाद अनुज ❤️👍 +06/04/2018,Social_workers,@DrKumarVishwas,"आज प्यारे देवल आशीष की पुण्यतिथि है, मुझसे बड़ा गीतकार, मुझसे बड़ा परफॉर्मर और मुझसे बड़ा इंसान। दुनिया की भाग-दौड़… https://t.co/mIKshEzy7B" +06/04/2018,Social_workers,@DrKumarVishwas,@Prakashh031 @Shakeeljamali58 हमारे यहाँ उनके हाथ के निकटतम उपलब्ध साधन पर निर्भर था 🤣🤣😜😂 +06/04/2018,Social_workers,@DrKumarVishwas,@janhavisant @Shakeeljamali58 होते तो अब तक ऑनलाइन और लाइव दोनो तरह का पड़ गया होता 😜🤣 +06/04/2018,Social_workers,@DrKumarVishwas,This reminds me my “पूज्य-पिताश्री” 😜🤣Well said @Shakeeljamali58 https://t.co/718Kc3qiXm +06/04/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: यदि होसके तो घर के बाहर आसपास थोडा पानी प्यासे परिंदों, राहगीरों के लिए रखिये ! आपके सिर्फ कुछ मिनट जायेगें लेकिन किसी…" +06/04/2018,Social_workers,@DrKumarVishwas,"RT @HaasyaVyangya: देश के सुप्रसिद्ध कवि @DrKumarVishwas की @DainikBhaskar में 52 व्यंग्यात्मक श्रृंखलाओं की तीसरी कड़ी +#MahaBharat2019 : ई…" +06/04/2018,Social_workers,@DrKumarVishwas,"भास्कर में आज : ""महाभारत 2019: ईवीएम बड़ी छलिया, हर चुनाव में दल बदल लेती है"" 🙏😋 https://t.co/KkJLaIn7mr" +06/03/2018,Social_workers,@DrKumarVishwas,"जिस घड़ी ये आदमी ख़ुद में खुदा हो जाएगा, +कहने वाले ने कहा था,सब फ़ना हो जाएगा ! +शाम के मंज़र को तकना भी इबादत है मे… https://t.co/JKdwXaz4dI" +06/03/2018,Social_workers,@DrKumarVishwas,❤️👍🇮🇳 https://t.co/5XvAMtBxWb +06/03/2018,Social_workers,@DrKumarVishwas,"कांग्रेस के तेज़तर्रार किंतु शालीन प्रवक्ता, सहज और संभावनाओं भरे युवा मित्र @rssurjewala को जन्मदिन पर अशेष शुभकाम… https://t.co/YHY1BhEVQJ" +06/03/2018,Social_workers,@DrKumarVishwas,RT @amarujalakavya: कुमार विश्वास तो जॉन को ‘ख़ुदरंग’ शायर कहते हैं। इस बारे में वह वाणी प्रकाशन से प्रकाशित किताब ‘मैं जो हूं जॉन एलिया… +06/03/2018,Social_workers,@DrKumarVishwas,"अलग ही नहीं करतीं, +अलग-थलग कर देती हैं 😜🙏🇮🇳 https://t.co/DAQabfcBso" +06/03/2018,Social_workers,@DrKumarVishwas,"RT @Prabudhaspeaks: किसी का प्यास से मरना है मरना आदमीयत का +अगर आँखों में पानी हो, किसी को कम नहीं पड़ता https://t.co/7qIol91Cwq" +06/03/2018,Social_workers,@DrKumarVishwas,"यदि होसके तो घर के बाहर आसपास थोडा पानी प्यासे परिंदों, राहगीरों के लिए रखिये ! आपके सिर्फ कुछ मिनट जायेगें लेकिन… https://t.co/sSkjFtgDrl" +06/02/2018,Social_workers,@DrKumarVishwas,@VAIRAGI18 @manojmuntashir @riteshsinhrajwa @amarujalakavya @merikalamse @kavitakosh @Rekhta @TonyKakkar @kavishala… https://t.co/HxmIUxxIPq +06/02/2018,Social_workers,@DrKumarVishwas,"जान-ए-मन भोपाल, तेरे नाम... ❤️ #KVMusical #2017SuperHit +https://t.co/aZPTdebMwQ" +06/02/2018,Social_workers,@DrKumarVishwas,"@anubhavsinha कशिश ए लखनऊ अरे तौबा , +फिर वही हम, वही अमीनाबाद ❤️😍👍" +06/02/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: गली से कोई भी गुज़रे तो चौंक उठता हूँ , +नए मकान में खिड़की नहीं बनाऊँगा ! +फ़रेब दे के तेरा जिस्म जीत लूँ लेकिन, +मैं पे…" +06/01/2018,Social_workers,@DrKumarVishwas,"गली से कोई भी गुज़रे तो चौंक उठता हूँ , +नए मकान में खिड़की नहीं बनाऊँगा ! +फ़रेब दे के तेरा जिस्म जीत लूँ लेकिन, +मैं… https://t.co/9QSM8o1y9o" +06/01/2018,Social_workers,@DrKumarVishwas,"RT @KapilKhaneja: Any doubts left? why a shameful conspiracy was being hatched since long against @DrKumarVishwas + +He's the strongest hind…" +06/01/2018,Social_workers,@DrKumarVishwas,"“हाथ अगर जुड़कर रहतें हैं तो प्रणाम बन जाते हैं, +संकल्पों की पुण्यवेदी पर सभी काम बन जाते हैं , +अगर आत्मा रहे निरंत… https://t.co/8V8ADRAzPC" +05/31/2018,Social_workers,@DrKumarVishwas,"वो इतने बरस बाद वहीं पर मिली मुझे , +तो ऐसा लगा ज़िंदगी फ़रियाद है मेरी , +मंदिर को, देवता को, पुजारी को छोड़िए , +इन… https://t.co/IhCR8x018a" +05/31/2018,Social_workers,@DrKumarVishwas,"वो जो रोशनदान बनाने आए थे, +दरवाज़े में कुंडी मारे बैठे हैं..! 😜 +(ट्वीट पर पालित चिंटूओं की प्रतिक्रिया से लक्षित-पात्र का पता लगाएँ) 😂🙏🇮🇳" +05/31/2018,Social_workers,@DrKumarVishwas,"ज़िंदगी लाइव की भीगी आँखों वाली बेहद घरेलू मनहर-मना बुंदेलखण्डी मौडी, मीडिया-मुलगी, मेरी सनातन झगड़ालू दोस्त… https://t.co/fd8yszOrHO" +05/31/2018,Social_workers,@DrKumarVishwas,"अभी-अभी एक क्रांतिकारी पक्षकार फ़ोन पर मुझसे नाराज़ हो गए ! मैंने तो उन्हें बस इतना भर कहा था -: 🙏 +एक जेब में “कैपि… https://t.co/LygHZL0aAp" +05/31/2018,Social_workers,@DrKumarVishwas,तो आज EVM को “चरित्र-प्रमाण पत्र” दे देंगे नवपतित ? 😳🙏 +05/31/2018,Social_workers,@DrKumarVishwas,वोटर्स भी “एक पैसा” लौटा रहे हैं 😜👍🇮🇳 +05/31/2018,Social_workers,@DrKumarVishwas,"""ये चादर सुख की मौला क्यूँ सदा छोटी बनाता है? +सिरा कोई भी थामो, दूसरा ख़ुद छूट जाता है +तुम्हारे साथ था तो मैं ज़मा… https://t.co/hRylpZULdq" +05/30/2018,Social_workers,@DrKumarVishwas,"RT @RashmiS06: ""तुम्हारे राजमहलों में भले गूँजे तुम्हारी जय +जो स्वर तुमने ख़रीदे हैं तुम्हें ही वो अदा होंगे +अगर कच्चे घरों में रहने वाले स…" +05/30/2018,Social_workers,@DrKumarVishwas,@pashyantii हरदोई में लोग क्या कहेंगे ?😳😜👍 +05/30/2018,Social_workers,@DrKumarVishwas,"“विदुर का भीष्म का पद अश्रु-प्रक्षालन नहीं भूला, +कठिन-व्रत द्रोण-इंगित पथ-तपश्चालन नहीं भूला , +कुटिल लाक्षागृहों… https://t.co/bIvpjoFK9j" +05/29/2018,Social_workers,@DrKumarVishwas,"RT @iawoolford: मिल रहा था भीख में, सिक्का मुझे सम्मान का +मैं नहीं तैयार झुककर उठाने के लिए +~ हुल्लड़ मुरादाबादी #जन्मदिवस" +05/29/2018,Social_workers,@DrKumarVishwas,@HedaRahul Working on it ❤️👍 +05/28/2018,Social_workers,@DrKumarVishwas,@paash01 कौन हैं ये ?😊 +05/28/2018,Social_workers,@DrKumarVishwas,RT @DainikBhaskar: #MahaBharat2019 : उसूलों के बाद बिकने के लिए आत्मा अंतिम सामान है- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की दूसरी प्रस्… +05/27/2018,Social_workers,@DrKumarVishwas,"“मैं भी नज़रों की हद में बंदी हूँ , +तुम भी आँखों में बेतहाशा हो...!” +शुभरात्रि दोस्तो ! ❤️🙏 https://t.co/cZ7JiSAmkk" +05/27/2018,Social_workers,@DrKumarVishwas,❤️❤️❤️❤️🇮🇳🇮🇳🙏 https://t.co/Fi9n6E7dS3 +05/27/2018,Social_workers,@DrKumarVishwas,"हर दल के ऐसे शीर्ष नेता ही, ख़तरे में पड़े हमारे देश के लोकतंत्र को बचा सकते हैं 🙏 https://t.co/Ui8mE5oyYO" +05/27/2018,Social_workers,@DrKumarVishwas,महू (मप्र) में कल शाम... ❤️🙏 https://t.co/z6abPNBdCj +05/27/2018,Social_workers,@DrKumarVishwas,"भगवान पूरे विश्व में गूँजे हमारी भारती +❤️🙏🇮🇳 https://t.co/WXyGI5RcYT" +05/26/2018,Social_workers,@DrKumarVishwas,❤️🙏🇮🇳 https://t.co/btUXFPv7ag +05/26/2018,Social_workers,@DrKumarVishwas,@KumarAs25257612 सहमत ❤️🇮🇳🙏 +05/26/2018,Social_workers,@DrKumarVishwas,"निराले इन्दौर के पास ऐतिहासिक शहर महू, जो बाबा साहब भीमराव अम्बेडकर की जन्मस्थली है, में पंद्रह हजार से ज़्यादा श्… https://t.co/sTXIJN1HPJ" +05/26/2018,Social_workers,@DrKumarVishwas,"@janhavisant @pramila2710 इस नहीं का कोई इलाज नहीं , +रोज़ करते हैं आप, आज नहीं ! (दाग)" +05/26/2018,Social_workers,@DrKumarVishwas,"महनीय मेवाड़ की वंशीय गुरूता व विनम्रता के ध्वजवाहक, कला-संस्कृति-भाषा और संस्कार के युवा प्रचारक,मेरे अनन्य आत्मीय… https://t.co/TDVFKNCzuc" +05/26/2018,Social_workers,@DrKumarVishwas,जयतु जय-जय भारत-पुत्री ❤️👍🇮🇳 https://t.co/9oNKjSEb3g +05/26/2018,Social_workers,@DrKumarVishwas,देश भर से आए JITO सदस्यों के साथ कल की खूबसूरत #KVMusical ❤️ शाम के बाद आज JITO की युवा शक्ति का सम्बोधन 'युवा और… https://t.co/katMZud6Wi +05/26/2018,Social_workers,@DrKumarVishwas,RT @TonyKakkar: Such beautiful lyrics by @DrKumarVishwas Listen to melodious #DeDeJagah from #Parmaanu @SachinJigarLive @yasserdesai @ZeeM… +05/26/2018,Social_workers,@DrKumarVishwas,जय हो भारतपुत्री 🙏🇮🇳 https://t.co/QAJYnaYzMe +05/25/2018,Social_workers,@DrKumarVishwas,JITO Growth Summit के तीन-दिवसीय कार्यक्रम में आज की शाम JITO के हज़ारों सदस्यों के साथ मस्ती और कविता का दौर बैंग… https://t.co/FxhtTBRGVZ +05/25/2018,Social_workers,@DrKumarVishwas,"RT @anantjais19: कृपा ,रुतबा इनायत मेहरबानी बेअसर निकली, मुझे बदनाम करने की निशानी बेअसर निकली + +मेरे हर लफ्ज का जादू जमाने की जबां पर है…" +05/25/2018,Social_workers,@DrKumarVishwas,"RT @bothra_madhu: @DrKumarVishwas +""कैसे कह दूँ कि थक गया हूँ मैं, +जाने किस-किस का हौंसला हूँ मैं!! +~डाॅ कुमार विश्वास 🎇 https://t.co/HCPHXR…" +05/24/2018,Social_workers,@DrKumarVishwas,बिहार में पटना के पास बाढ़ शहर से #KVMusical LIVE...!!! 🎵🎤❤️ https://t.co/cFlUWqv4wx +05/24/2018,Social_workers,@DrKumarVishwas,RT @TheRichaSharma: बहुत बहुत बधाई व शुभ कामनाएँ ईतनी ख़ूबसूरत रचना के लिए @DrKumarVishwas भैया 😊👏🏼 ऊपर से उतना ही सुन्दर संगीत बद्ध किया… +05/24/2018,Social_workers,@DrKumarVishwas,"@gurmeljalalpur गंगा दशहरा पर माँ गंगा की स्तुति में भी “मोदी” ?😳 आप बुज़ुर्ग हैं, अपनी आयु का नहीं तो कम से कम पू… https://t.co/nBugzi6Tk3" +05/24/2018,Social_workers,@DrKumarVishwas,"Happy BDAy to the most humble, versatile music genius of our time @jeetmusic dada. God bless you dada, keep poring… https://t.co/BnLwGEddwn" +05/24/2018,Social_workers,@DrKumarVishwas,"RT @solely_supriya: जो गणपति अति पूज्य प्रधाना, तिहुं ते प्रथम गंग अस्नाना। 🙏❤️ + +The pious journey of the gratifying river being serenaded…" +05/24/2018,Social_workers,@DrKumarVishwas,RT @atulkanakk: अच्छा लिखना और अच्छा प्रस्तुत करना बड़ी बात है लेकिन दूसरों के अच्छे लिखे को मूल रचनाकार के प्रति सम्मान भाव के साथ अपने रच… +05/24/2018,Social_workers,@DrKumarVishwas,RT @kumartaurani: #allthebest @DrKumarVishwas @ZeeMusicCompany @anuragbedi https://t.co/0gARS2dUst +05/24/2018,Social_workers,@DrKumarVishwas,"माँ गंगा आपकी सभी सदिच्छाएँ पूर्ण करें। गंगा दशहरा शुभ हो 🙏 +https://t.co/Av9iRgxVlJ" +05/23/2018,Social_workers,@DrKumarVishwas,"[गंगा दशहरा पर विशेष] गंगा केवल एक नदी नहीं, भारत की सांस्कृतिक महारेखा है। गंगा दशहरा पर माँ गंगा को प्रणाम करें औ… https://t.co/fanWDsNxrh" +05/23/2018,Social_workers,@DrKumarVishwas,"कल तलक ख़ुद को जो सूरज का पुत्र कहता था , +जाके लटका है फ्यूज बल्बों की झालर में ख़ुद ! 😜🤣👎🏿" +05/23/2018,Social_workers,@DrKumarVishwas,@zoy2128 ❤️👍 https://t.co/aHqVT5caq2 +05/23/2018,Social_workers,@DrKumarVishwas,"RT @anubhavsinha: Kya baat hai Kumar Bhai .... dumdaar. @DrKumarVishwas +https://t.co/s5s7nhjxmt" +05/23/2018,Social_workers,@DrKumarVishwas,Thanks ! Waiting to pen for your project @anubhavsinha bhai ❤️ https://t.co/UKxiRuGo2x +05/23/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “जो भी ज्यादा या कम समझतें हैं , +तुम को बस एक हम समझतें हैं ! +हम ठहाकों का दर्द जीतें हैं , +लोग आँसूं को गम समझतें हैं…" +05/22/2018,Social_workers,@DrKumarVishwas,"“जो भी ज्यादा या कम समझतें हैं , +तुम को बस एक हम समझतें हैं ! +हम ठहाकों का दर्द जीतें हैं , +लोग आँसूं को गम समझतें… https://t.co/L1ltokybkz" +05/22/2018,Social_workers,@DrKumarVishwas,"RT @ZeeMusicCompany: Add a whole lot of soul to your chaotic day with @yasserdesai's #DeDeJagah! + +@thejohnabraham @dianapenty @bomanirani…" +05/22/2018,Social_workers,@DrKumarVishwas,All the best my Diro @vinodkapri Our creative blending in your next project is going to Insure it’s footprints thr… https://t.co/aXLA8HlmEk +05/22/2018,Social_workers,@DrKumarVishwas,@tabassumgovil आप जैसी अनुभव-संपन्न हस्ती का स्नेह बहुत बड़ी बात है ! आभार ❤️🙏 +05/22/2018,Social_workers,@DrKumarVishwas,"RT @tabassumgovil: Ache geet sangeet mein char chand laga dete hain jo aapne laga diye hain Vishwas, filmi gaane mein bhi sahitya jhalak ra…" +05/22/2018,Social_workers,@DrKumarVishwas,RT @jeetmusic: Bollywood has indeed become richer by getting you as a lyricist @DrKumarVishwas in #Parmanu ! My best wishes for this versat… +05/22/2018,Social_workers,@DrKumarVishwas,Blessings from a Musicain like you is indeed the most soothing thing a lyricist wish to have @jeetmusic dada ! Eage… https://t.co/tGEnvL1PYI +05/21/2018,Social_workers,@DrKumarVishwas,RT @BloodDonorsIn: #Delhi Need #Blood B+ve at Holy Family Hospital. Call 9311111005 via @piyushleads cc @crowngaurav @ArvindGaur @DelhiPoli… +05/21/2018,Social_workers,@DrKumarVishwas,"RT @hridayeshjoshi: पश्चिम बंगाल में लोकतन्त्र को कूड़ेदान में डालकर, हिंसा और आतंक का सहारा लेकर पंचायत चुनावों में कब्ज़ा करने वाली ममता…" +05/21/2018,Social_workers,@DrKumarVishwas,"मराठी मध्ये वाचताना खूप खूप मजा आली 😍👍 @DainikBhaskar 🇮🇳✅ +https://t.co/VNdYVTzwSN" +05/21/2018,Social_workers,@DrKumarVishwas,"RT @DainikBhaskar: सरकार बन गई है पर जारी जुगाड़ है- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की पहली प्रस्तुति + +@DrKumarVishwas + +https://t.…" +05/21/2018,Social_workers,@DrKumarVishwas,"RT @PANKAJPARASHAR_: 'वोटर ये सोचता है कि एमएलए जो चुना,  +उनका कबाड़ है या वो इनका कबाड़ है? +उन्नीस के नाटक का रिहर्सल है कर्नाटक,  +सरकार ब…" +05/21/2018,Social_workers,@DrKumarVishwas,"व्यंग्य-विशारद स्व० शरद जोशी के जन्मदिन पर है दैनिक भास्कर में,सालभर चलने वाली व्यंग्य लेखों की श्रृंखला “कह कुमार… https://t.co/9PeMxfY7Lk" +05/21/2018,Social_workers,@DrKumarVishwas,@pratik_dave27 सारू छै ❤️👍 +05/20/2018,Social_workers,@DrKumarVishwas,@pankajjha_ @ZeeMusicCompany आभार पंकज भाई ❤️👍 +05/20/2018,Social_workers,@DrKumarVishwas,"Every talent should be foreseen as a big thing in future. If we talk of Yaseer, not only #DeDeJagah but several oth… https://t.co/SGX148UNU9" +05/20/2018,Social_workers,@DrKumarVishwas,RT @Prabudhaspeaks: मेरे लिए #DeDeJagah की ख़ूबसूरती के अलग मायने हैं। इस गीत ने मेरे सामने जन्म लिया है। मेरे लिए यह सब अद्भत है https://t… +05/20/2018,Social_workers,@DrKumarVishwas,#DeDeJagah ❤️ https://t.co/QOBVGnqvZL +05/20/2018,Social_workers,@DrKumarVishwas,One thing needs a special mention here - @SachinJigarLive is one of the finest composer-duo of this generation. The… https://t.co/y4WgVg22Lj +05/20/2018,Social_workers,@DrKumarVishwas,"Yes, you have to be flexible with words while writing for a movie. #DeDeJagah from PARMANU also saw some last momen… https://t.co/ghTfB2ZKOS" +05/20/2018,Social_workers,@DrKumarVishwas,"फ़िल्म 'परमाणु' के इस गीत #DeDeJagah को सराहने के लिए सभी दोस्तों का आभार। + https://t.co/QxIxRgkg1h +@TheJohnAbraham @ZeeMusicCompany 🙏❤️" +05/20/2018,Social_workers,@DrKumarVishwas,"RT @Airavta: बाजा फाड़ गाना लिखा है @DrKumarVishwas भाई ने, सुनिये । https://t.co/fpN4yaXMTE" +05/20/2018,Social_workers,@DrKumarVishwas,"RT @AalokTweet: गीत-ऋषि नीरज से लेकर मानवीय सरोकरों के शायर निदा फ़ाज़ली तक, कवियों-शायरों की एक पूरी पीढ़ी ने फ़िल्मों को नायाब-गीतों के…" +05/20/2018,Social_workers,@DrKumarVishwas,"आज हिन्दी साहित्य के महारथी, कोमल-कमनीय कल्पना के महनीय कवि सुमित्रानंदन पंत जी का जन्मदिन है। सौभाग्यशाली हूँ, कि… https://t.co/z9MQVCsIU6" +05/19/2018,Social_workers,@DrKumarVishwas,RT @Charanpreeet: Congratulations to Brother @DrKumarVishwas for writing this brilliant master piece for @ParmanuTheMovie @ZeeMusicCompany… +05/19/2018,Social_workers,@DrKumarVishwas,❤️👍🇮🇳 https://t.co/w4beIu22gn +05/19/2018,Social_workers,@DrKumarVishwas,"RT @Inkhabar: #VIDEO : @TheJohnAbraham की फिल्म #Parmanu के गाने #DeDeJagah में @DrKumarVishwas ने दिए खूबसूरत बोल, हो रही है जमकर तारीफ +@…" +05/19/2018,Social_workers,@DrKumarVishwas,❤️👍 https://t.co/80AMRfQwAI +05/19/2018,Social_workers,@DrKumarVishwas,RT @sangitatewari: फ़िल्म परमाणु में कुमार विश्वास की कलम का कमाल. बहुत बहुत शुभकामनाएं @DrKumarVishwas https://t.co/dmtdxWGIZT +07/01/2018,Social_workers,@drjoekort,"@PsychCentral thank you for the nice review of my latest book, “LGBTQ Clients in Therapy”https://t.co/Dlt2lvJ1kG https://t.co/ZgcjhOd5gC" +07/01/2018,Social_workers,@drjoekort,@cher So lucky and happy to have my favorite performer still making albums. +06/30/2018,Social_workers,@drjoekort,@kathygriffin you were great in Chicago your humor is so smart and 3 hours without a break! You’re awesome. +06/30/2018,Social_workers,@drjoekort,@cher you are right the Cher Show is good but needs some work. Loved it though #chershow https://t.co/gD97mATlkn +06/29/2018,Social_workers,@drjoekort,"@JerrySeinfeld please don’t minimize those who commit suicide with your naive statement, “why would you murder some… https://t.co/ikIhXOyGeN" +06/25/2018,Social_workers,@drjoekort,"Only a few more days left to get my new free e-book, “Cracking the Erotic Code” #erotica #eroticorientation +https://t.co/Jk786wh3ct" +06/23/2018,Social_workers,@drjoekort,Can’t wait to read it! https://t.co/eJ2IxgAk66 +06/22/2018,Social_workers,@drjoekort,"@therealroseanne This is great news! I will continue watching the Conner’s. Love the show. + +https://t.co/UcDq0FTMtp" +06/21/2018,Social_workers,@drjoekort,https://t.co/u7EfxjZtdo +06/20/2018,Social_workers,@drjoekort,@fakedansavage Lmao! I am Judy Isim. +06/19/2018,Social_workers,@drjoekort,@therealroseanne I applaud you for doing the right thing! https://t.co/xJofs4yLt9 +06/18/2018,Social_workers,@drjoekort,"RT @JamesMartinSJ: Like many, I've resisted using this word but it's time: the deliberate and unnecessary separation of innocent children f…" +06/17/2018,Social_workers,@drjoekort,Every Father’s day I post this article. The day comes when we must go from boy to man with our fathers. When I beca… https://t.co/9rqlbRw7Jg +06/15/2018,Social_workers,@drjoekort,@MillerRachelD So far it’s very good! +06/15/2018,Social_workers,@drjoekort,I’m really looking forward to this presentation on working with transgender individuals and their partners. So litt… https://t.co/7kizBnM5EA +06/15/2018,Social_workers,@drjoekort,@TheAASECT @DrRachelNeedle modern sex therapy Institute is hosting free wine at the 16 Mix restaurant at the Sherat… https://t.co/gOutZ3XjkT +06/14/2018,Social_workers,@drjoekort,"Watched movie, “Moonlight” on plane. WOW! It’s an excellent movie. + +Things are not better completely for LGBTQ tee… https://t.co/YZTcK82yH0" +06/14/2018,Social_workers,@drjoekort,"Men, Stop Using ""Kinky Sex"" as a Justification for Abuse + +https://t.co/zwqjGjBtv4" +06/13/2018,Social_workers,@drjoekort,RT @pnetworker: What's the difference between sexual orientation and gender identity? What are the most common mistakes therapists make whe… +06/13/2018,Social_workers,@drjoekort,I totally agree!! https://t.co/AB2jJ70noW +06/11/2018,Social_workers,@drjoekort,RT @beheroesdotnet: The FIRST LGBTQ puberty book! https://t.co/0Dsf6ESNXk +06/11/2018,Social_workers,@drjoekort,RT @kathygriffin: Big announcement with @ColtonLHaynes. For the month of June I’m donating $2 from every ticket sold (no matter when the sh… +06/11/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: Today, 7.3% of #Millennials identify as #LGBT; by contrast, 3.2% of Gen X'ers and 2.4% of Boomers identify as such. ht…" +06/09/2018,Social_workers,@drjoekort,RT @fakedansavage: Still waiting for someone to notice that I didn’t retweet this. https://t.co/843uXvXk80 +06/09/2018,Social_workers,@drjoekort,"RT @LogoTV: A new #Pride flag design has gone viral for the creative way it includes queer people of color, the trans community, and the st…" +06/09/2018,Social_workers,@drjoekort,@realDonaldTrump you’re a liar and a scary man in power to me and my community. It’s despicable. Huckabee Sanders:… https://t.co/eNbOtehDLc +06/08/2018,Social_workers,@drjoekort,@Logic301 So sad about Kate Spade and Anthony Bourdain. This song and video by Logic is so timely about Suicide. https://t.co/tKRJL4HPOA +06/08/2018,Social_workers,@drjoekort,RT @fakedansavage: Are we really doing the ex-gay thing again? Apparently we are—and this time the ex-gays came in waving the rainbow flag.… +06/07/2018,Social_workers,@drjoekort,Receive your free e-book “Cracking the Erotic Code” from me for pride month by clicking here https://t.co/pUC61osFxN +06/06/2018,Social_workers,@drjoekort,Omg I really needed this laugh right now this is hysterical!!!!!! https://t.co/Gt5RAw4jWw +06/05/2018,Social_workers,@drjoekort,"I cannot wait to see this in Chicago first June 29! The Cher Show (NY) Tickets +https://t.co/8D1fAVzHXm" +06/05/2018,Social_workers,@drjoekort,"@djstoilov None specifically for bi men. But I love @terryreal book, “I don’t want to talk about it”" +06/05/2018,Social_workers,@drjoekort,"Opinion: In gay wedding cake case, Supreme Court's punt sent a message by John Corvino +https://t.co/C7FK7ZKEne" +06/05/2018,Social_workers,@drjoekort,"Drew thought girls wanted to be dominated from “Fifty Shades of Grey” “Mr. & Mrs. Smith,”. “She’s on the table, and… https://t.co/biGmbxYfaT" +06/04/2018,Social_workers,@drjoekort,"You gotta me F#%^ kidding me????? +Supreme Court rules in favor of anti-gay baker in wedding cake case / LGBTQ Nation +https://t.co/b8r22Shl4f" +06/04/2018,Social_workers,@drjoekort,RT @PinkNews: Greece allows gay couples to have children https://t.co/PTwIQl01yJ +06/04/2018,Social_workers,@drjoekort,"RT @kathygriffin: I knew it. + +#WhereIsMelanie https://t.co/iMm461Ygk1" +06/04/2018,Social_workers,@drjoekort,@kathygriffin Hahahahahahahahahahaha omg I literally laughed out loud hahahahahahahahahaha!!!!!! +06/03/2018,Social_workers,@drjoekort,"I’m in a really beautiful hotel +In Allentown Pennsylvania presenting tomorrow on LGBT issues." +06/03/2018,Social_workers,@drjoekort,@ZakarTwins met gay twins at Pride had no idea they‘re local. New type middle eastern gay guy out open in face of h… https://t.co/FWeSUjPPzw +06/03/2018,Social_workers,@drjoekort,"On my way to these cities to teach +Lesbian, Gay, Bisexual, Transgender and Questioning (LGBTQ) Clients: Clinical I… https://t.co/4lmXnzVZjd" +06/03/2018,Social_workers,@drjoekort,"It’s Gay Pride Month, and we’re looking for your stories. Your personal experience about being LGBTQ Your experienc… https://t.co/0B9tuocFeP" +06/01/2018,Social_workers,@drjoekort,My new e-book is now available in paperback! Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fant… https://t.co/E8YS5Tofni +05/31/2018,Social_workers,@drjoekort,Goodbye masturbation month! +05/31/2018,Social_workers,@drjoekort,"Organized, cheerful, excellent written and verbal communication skills with the ability to multitask, prioritize a… https://t.co/09lhXKxqQU" +05/31/2018,Social_workers,@drjoekort,"Experienced office administrator/bookkeeper to greet clients, answer phones, schedule appointments and help run dai… https://t.co/wDznhZBc5c" +05/31/2018,Social_workers,@drjoekort,"RT @drjoekort: FREE eBOOK:“Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fantasies” +-Nonsexual narratives in sexual int…" +05/31/2018,Social_workers,@drjoekort,@therealroseanne threw herself under the bus. No one else did it. I’m tired of comedians poking fun of everyone but… https://t.co/ZOVPYyH065 +05/30/2018,Social_workers,@drjoekort,I agree with Debra. I feel badly for all the other paid employees of the show. What a mess. https://t.co/AEgfIrSShq +05/29/2018,Social_workers,@drjoekort,"FREE eBOOK:“Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fantasies” +-Nonsexual narratives in s… https://t.co/3XrNtcvfIW" +05/29/2018,Social_workers,@drjoekort,RT @fakedansavage: Blessed be the fruit. https://t.co/G7Slqdn4Ov +05/29/2018,Social_workers,@drjoekort,Love this!!! https://t.co/wCwDzC5m9d +05/27/2018,Social_workers,@drjoekort,"RT @EstherPerel: The @goop Guide to Sex is here, including a mention of the Art of Us: Desire. The first installment of our new digital ser…" +05/26/2018,Social_workers,@drjoekort,@Rosie I just let myself go natural it’s scary! +05/26/2018,Social_workers,@drjoekort,Bisexuals face criticism and disbelief about their sexual orientation everyday. Here’s why. https://t.co/ygluNoe0nc +05/25/2018,Social_workers,@drjoekort,"RT @EstherPerel: The expectation that one person will satisfy all of our many emotional, physical, and spiritual needs is a tall order. Ins…" +05/25/2018,Social_workers,@drjoekort,@pnetworker @NicoleRPrause Good thank you +05/25/2018,Social_workers,@drjoekort,I see an increase of crystal meth use by middle-age gay men who feel—and are—rejected sexually & romantically by ga… https://t.co/fiCouCXuxL +05/24/2018,Social_workers,@drjoekort,"Excited to announce we are staying at Woodward Building in Royal Oak, MI and are expanding space at The Center for… https://t.co/dytxNCCl2q" +05/22/2018,Social_workers,@drjoekort,@fluidlyspeaking It’s utterly ridiculously +05/22/2018,Social_workers,@drjoekort,"You have to be kidding me? Publix Censors ‘Summa Cum Laude’ on Graduation Cake Order +https://t.co/yGdxHce7gf" +05/21/2018,Social_workers,@drjoekort,New documentary reveals Whitney Houston was sexually abused as a child by aunt Dee Dee Warwick. This article is mos… https://t.co/QDluXXyYY2 +05/21/2018,Social_workers,@drjoekort,"RT @VantagePointTX: Happy to be included in this article on sexual anxiety. +https://t.co/9dtgVlHQG6" +05/21/2018,Social_workers,@drjoekort,@cher Happy birthday Cher you’ve been in my life my entire life. They say you’ll live forever so I hope my entire life ❤️ +05/20/2018,Social_workers,@drjoekort,"Erections Deserve Respect! Stop Pounding Your Partner and Have Good Sex Instead @chrisdona +https://t.co/6fBOYJFWnc" +05/20/2018,Social_workers,@drjoekort,"Erections Deserve Respect! Stop Pounding Your Partner and Have Good Sex Instead +https://t.co/6fBOYJFWnc" +05/20/2018,Social_workers,@drjoekort,"Spent wknd w/ @DrRachelNeedle who contributed to legal ban reparative therapy Boca Raton W Palm Beach, Lake Worth,… https://t.co/u3ujQyBfqq" +05/20/2018,Social_workers,@drjoekort,"Jane Ward, author of, ""Not Gay: Sex Between Straight White Men"" does a great job talking about the differences betw… https://t.co/VI9fiCJs5z" +05/19/2018,Social_workers,@drjoekort,"RT @DrDavidLey: Monogamy, forced or not, works for some people and not others. It suits some, but creates anguish for others. Treating it a…" +05/18/2018,Social_workers,@drjoekort,@elvisgomes90 Good point I think it’s a step in that direction but a good criticism. +05/18/2018,Social_workers,@drjoekort,"This is a test developed by researcher Dr. Robert Epstein to understand sexual orientation and sexual fluidity. +Ep… https://t.co/JVuADin5i5" +05/18/2018,Social_workers,@drjoekort,@fakedansavage I don't think he will. +05/18/2018,Social_workers,@drjoekort,"I’m coming to Chicago this Saturday, May 19, 2018 teaching my LGBTQ course. It will also be available that day as a… https://t.co/JfwmttHBPt" +05/17/2018,Social_workers,@drjoekort,"Chicago Saturday, May 19, 2018 teaching LGBTQ course. Available as a webinar. Hosted by the Modern Sex Therapy Inst… https://t.co/gkfu2YSasR" +05/17/2018,Social_workers,@drjoekort,"Gay/Lesbian Relationships- In this segment of the Innervoice show, Dr. Foojan Zeine interviews Dr. Joe Kort, dialog… https://t.co/6qYTACG53s" +05/17/2018,Social_workers,@drjoekort,"May is Masturbation month. Study reveals different masturbation habits of gay and straight people +https://t.co/2iKcaGU8g4" +05/15/2018,Social_workers,@drjoekort,Exclusive @CRSHsocial blog shares 3 Impactful Ways to #Support a #Transgender Loved One. Read it NOW >>… https://t.co/51BhQa0ks6 +05/15/2018,Social_workers,@drjoekort,Can straight young men be twinks? https://t.co/0wYQzfJANs +05/14/2018,Social_workers,@drjoekort,"RT @beheroesdotnet: Yes! @Scarleteen is the ONLY education site I recommend for the young people in my office - a long-standing, crazy- com…" +05/13/2018,Social_workers,@drjoekort,"Excellent article and video upacking privilege. “We as a society don’t tend to hate gay men because they are gay,”… https://t.co/3t0jxZJAlM" +05/12/2018,Social_workers,@drjoekort,RT @DrDavidLey: @SexologyU @DrMartyKlein @BBC And @drjoekort @DominicDavies1 @NicoleRPrause @ResparkLove @KinkHealth +05/12/2018,Social_workers,@drjoekort,RT @TonyOrlando: Keep an eye out for dates coming to your city!🎄#AChristmasReunion https://t.co/blGvTrpVJO +05/12/2018,Social_workers,@drjoekort,@TonyOrlando Wow multiple cities! Come to Detroit! +05/11/2018,Social_workers,@drjoekort,"RT @SexologyU: #Sexaddiction is in the news again. We recommend the work of @DrDavidLey, @DrMartyKlein and Douglas Braun-Harvey as an alter…" +05/11/2018,Social_workers,@drjoekort,@TonyOrlando Very happy to hear this! +05/11/2018,Social_workers,@drjoekort,"There Are 6 Types of Straight People Having Gay Sex, Says New Study #gaysex #sexualfluidity https://t.co/bs4tPvUGmZ… https://t.co/4P6JwcbbE1" +05/10/2018,Social_workers,@drjoekort,This is the Mature Masculine - the New Warrior - a re-definition of masculinity for the 21st century. By no means i… https://t.co/z1MVPAsC2V +05/10/2018,Social_workers,@drjoekort,He builds communities where people are respected and valued. He takes responsibility for himself and is also willin… https://t.co/qjzRjtGjZS +05/10/2018,Social_workers,@drjoekort,He knows that we are all one. He knows he is an animal and a part of nature. He knows his spirit and his connection… https://t.co/ui6ure0all +05/10/2018,Social_workers,@drjoekort,"He is flexible when he needs to be. He knows how to listen from the core of his being. + +He's not afraid to get dirt… https://t.co/z71WmgYvjx" +05/10/2018,Social_workers,@drjoekort,He creates intimacy and trust with his actions. He has men that he trusts and that he turns to for support. He know… https://t.co/Vz2Duu3teZ +05/10/2018,Social_workers,@drjoekort,@ManKindJournal He stopped blaming women or his parents or men for his pain years ago. He stopped letting his defen… https://t.co/PvrNVQklWB +05/10/2018,Social_workers,@drjoekort,@ManKindJournal This is the opposite of toxic masculinity. He feels guilty when he's done something wrong. He is ki… https://t.co/ajMHtFlfdz +05/10/2018,Social_workers,@drjoekort,@ManKindJournal This is the opposite of toxic masculinity. He knows what he feels. He knows how to cry and he lets… https://t.co/ij3sFUvVS6 +05/10/2018,Social_workers,@drjoekort,"@ManKindJournal This is the opposite of toxic masculinity. +He cleans up after himself. He cleans up the planet. He… https://t.co/kCXicFeUkX" +05/10/2018,Social_workers,@drjoekort,@marky22_22 Thank@you Mark that means a lot to me. I could see your interest all day long and it reassured me I was making a difference. +05/09/2018,Social_workers,@drjoekort,"RT @robynochs: About bi v. pan, etc. debates, I wrote: ""To argue over which word is the best & to disrespect other people's choice of labe…" +05/09/2018,Social_workers,@drjoekort,"RT @fakedansavage: New #SavageLove: Peeing while hang gliding, getting the 37-year-old man off, and some perspective for a newly HIV+ man.…" +05/09/2018,Social_workers,@drjoekort,@JustinLehmiller Wow congratulations +05/09/2018,Social_workers,@drjoekort,"“Sex addiction” therapists say that sex addiction isn’t about sex. Sadly, neither is their treatment approach or recovery model." +05/08/2018,Social_workers,@drjoekort,@EnglishBob22 @DanceWithDaphne What do you mean? +05/07/2018,Social_workers,@drjoekort,The Masturbation Challenge. May is masturbation month. #masturbation https://t.co/fuBd70RVka +05/07/2018,Social_workers,@drjoekort,Why straight women are hiring female escorts. https://t.co/ChZ47r5bnR +05/06/2018,Social_workers,@drjoekort,"LGBTQ Clients: Clinical Issues and Treatment Strategies: +Monday, May 7, 2018 +8:00 AM - 4:00 PM +CLEVELAND, OH +Tuesda… https://t.co/wiNl9akepp" +05/06/2018,Social_workers,@drjoekort,Homophobia and Biphobia are very different. #bisexual https://t.co/NhuSm0mRTH +05/06/2018,Social_workers,@drjoekort,"Everyone has a sexual orientation and an erotic orientation. Your sexual orientation is to whom your attracted, whi… https://t.co/kTlMY7kh5b" +05/06/2018,Social_workers,@drjoekort,@robynochs I love this quote from you. The first being that people fail to understand that identity and behaviour a… https://t.co/29YEy9l74h +05/06/2018,Social_workers,@drjoekort,"RT @robynochs: I'm quoted in this article about biphobia in W24, a South African publication: ""Biphobia - why are women afraid of dating bi…" +05/06/2018,Social_workers,@drjoekort,RT @DrDavidLey: The idea that #Porn is causing erectile issues gets a surprisingly sophisticated critical examination. Yet more indication… +05/06/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: Contrary to popular belief, violence in #porn is not increasing--in fact, it actually appears to be decreasing and vie…" +05/06/2018,Social_workers,@drjoekort,@hlcorliss @nicolevankim @hopehjun Where would I find more information on current research on lesbian sexuality and health? +05/05/2018,Social_workers,@drjoekort,@VP Except the LGBTQ Americans you forgot to say. +05/05/2018,Social_workers,@drjoekort,Great article and video on female sexual fluidity https://t.co/oP7jbqJUop +05/04/2018,Social_workers,@drjoekort,RT @OregonJOBS2: Dog hides when you call her inside https://t.co/OsBwCXpuzD +05/04/2018,Social_workers,@drjoekort,RT @TonyOrlando: Tag your friends 😂🎗💛💝 https://t.co/wE2S4i7UMn +05/04/2018,Social_workers,@drjoekort,What It Means If Lesbians Watch And Like Straight Porn—Tast in porn doesn't have to line up with real-life sexual o… https://t.co/YILdjJi6fO +05/04/2018,Social_workers,@drjoekort,@snglbuddy @emahoney3 Lol yes +05/04/2018,Social_workers,@drjoekort,@emahoney3 It’s true he’s correct. You’re very mature +05/03/2018,Social_workers,@drjoekort,"RT @DrDavidLey: I’m honored to call Doug Braun-Harvey and Michael Vigorito friends, colleagues and teachers. I support their kind, empathic…" +05/02/2018,Social_workers,@drjoekort,"@AsexualJournal Yessss! I am now a proud patron of The Asexual on @Patreon, and you should be too: https://t.co/uIxKXPSxNG" +05/02/2018,Social_workers,@drjoekort,"Masturbation month in May, I’m reminded of clients who struggle not to masturbate join NoFap movement men are deepl… https://t.co/syZVzi1cRZ" +05/02/2018,Social_workers,@drjoekort,"I’ve never read a death certificate that read, “Killed by news of child being LGBTQ+” it doesn’t kill or harm anyone." +05/02/2018,Social_workers,@drjoekort,@CGeterLMFT Lol +05/01/2018,Social_workers,@drjoekort,Happy masturbation month! https://t.co/3EtTQutKm2 +05/01/2018,Social_workers,@drjoekort,"Intake to Discharge: Working with Trans Clients-understanding bias, explore how microaggressions and privilege nega… https://t.co/dxP8ddWRV3" +05/01/2018,Social_workers,@drjoekort,@DrDavidLey @anjel990 Yes we have it’s complex. I love the discussion. +05/01/2018,Social_workers,@drjoekort,"Great article by my friend and colleague @DrDavidLey Where Are All the Bisexuals Hiding? +For researchers and prospe… https://t.co/lxD41Cl5lJ" +05/01/2018,Social_workers,@drjoekort,@DrDavidLey @anjel990 Great article as usual and thanks for citing me! +04/30/2018,Social_workers,@drjoekort,"How Sex Educators Talk To Their Sons About Consent “If you start early, it becomes innate I explain what sex is, t… https://t.co/ivUqJQIAkp" +04/30/2018,Social_workers,@drjoekort,@bmosley45 @ThatChrisRyan @DrDavidLey You’re only talking about some men—not all men. Many men do understand women… https://t.co/oRpR3Konkm +04/29/2018,Social_workers,@drjoekort,"Training therapists in Scottsdale and Phoenix on LGBTQ, kinks and fetish’s until Wednesday. +https://t.co/4tGgFXCzO3" +04/29/2018,Social_workers,@drjoekort,@dmartosko @sarahcpr @kathygriffin Is this a joke? No president has ever been as vulgar as Trump. @kathygriffin is… https://t.co/Bj9U8ujKsQ +04/29/2018,Social_workers,@drjoekort,"Gay men are more sexual than straight men/women and lesbians. It’s not a gay thing, it’s a guy thing." +04/29/2018,Social_workers,@drjoekort,"RT @stevesilberman: Trump, who openly mocked a disabled reporter during his campaign, said today he finds the Paralympics “tough to watch.”…" +04/27/2018,Social_workers,@drjoekort,"RT @Mariska: To the survivors of his abuse, and to all survivors –whether you receive justice swiftly or many years down the road, know tha…" +04/27/2018,Social_workers,@drjoekort,@samkalidi Lmao!!!!!! +04/26/2018,Social_workers,@drjoekort,RT @pnetworker: Lovely personal essay from @pnetworker contributor @drjoekort on finally fighting back against the stereotypes of manhood h… +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein My hope that all this labeling is just a stage where people are taking apart the label… https://t.co/ymudA1grtq +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein That does sound nice 👍🏻 +04/25/2018,Social_workers,@drjoekort,"RT @AsexualJournal: ""Sexual desire refers to the desire for sexual activity, whilst sexual attraction refers to the desire to engage in sex…" +04/25/2018,Social_workers,@drjoekort,@AsexualJournal @sydneykerosene Love this! +04/25/2018,Social_workers,@drjoekort,"RT @AsexualJournal: ""It’s not til later that I learn there’s a difference between sexual desire and sexual attraction. (...) + +To put it in…" +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein What I love is people creating their own boutique identities. +04/24/2018,Social_workers,@drjoekort,"RT @katebornstein: Q4 Using hetero/homo/bi -sexual as base for the language of gendered sexual attraction, I propose mixsexual for people w…" +04/24/2018,Social_workers,@drjoekort,RT @elvisgomes90: @drjoekort I am grateful that u wrote this article! U nuanced things extremely well & I fully agree that the anxiety-prov… +04/24/2018,Social_workers,@drjoekort,RT @DrDavidLey: Even further evidence that the concept of sex addiction is rooted in LGBTQ stigma. https://t.co/r4UtHdVReu +04/22/2018,Social_workers,@drjoekort,Teaching at The University of Michigan Sexual Health Certificate Program next two days on LGBTQIA issues at Michiga… https://t.co/0KwivpLHxf +04/22/2018,Social_workers,@drjoekort,@DrDavidLey Lol I saw this today too +04/22/2018,Social_workers,@drjoekort,“ We stand for sexual health not only as an essential component of health and well-being but more importantly as so… https://t.co/pacTiAfRr0 +04/22/2018,Social_workers,@drjoekort,"Doug Braun-Harvey and Michael Vigorito accepted an award for their book, “Treating Out of Control Sexual Behavior:… https://t.co/CAGwb6o9B7" +04/21/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: When asked whether their feelings about their body have caused them to avoid sex, 20 percent of gay men said yes, comp…" +04/20/2018,Social_workers,@drjoekort,"@VP I received counter book homophobic VP Pence Marlon Bundo, a lonely bunny lives w/Grampa, Mike Pence - VP of US… https://t.co/qD4yk4jY15" +04/20/2018,Social_workers,@drjoekort,"Some male sexual assault victims feel left behind by #MeToo | For some male victims of sexual assault and abuse,… https://t.co/2oxPg1KG9G" +04/20/2018,Social_workers,@drjoekort,"RT @DrDavidLey: The belief that #Porn is getting harder (ahem) and more violent is based in rhetoric, morality & has been repeated for deca…" +04/19/2018,Social_workers,@drjoekort,"I am in the process of re-writing my book, ""Cracking the Erotic Code"" for everyone and not just gay men. https://t.co/5UF9053ydX" +04/19/2018,Social_workers,@drjoekort,@JillianKeenan I hope you do respond. +04/19/2018,Social_workers,@drjoekort,RT @JustinLehmiller: Transitional #bisexuality: this study found that nearly half of gay men surveyed said they identified as bisexual at a… +04/19/2018,Social_workers,@drjoekort,@birdsandbeespod You should be you work really hard +04/18/2018,Social_workers,@drjoekort,"Teaching LGBTQ 🏳️‍🌈 issues to the community mental health staff here in Flint, MI." +04/18/2018,Social_workers,@drjoekort,@birdsandbeespod Congratulations 🎉🎊🍾! +04/18/2018,Social_workers,@drjoekort,@JustinLehmiller Just pre-ordered it! +04/18/2018,Social_workers,@drjoekort,@JustinLehmiller I can’t wait!! You’re so smart and I’m sure the book will be very informative. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Honestly no I think that would be horrible. Because then it would be seen as something that can chang… https://t.co/xDELXOCBdZ +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 I wrote this article in the past about bisexuals https://t.co/fV6mFjKlN8 +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Yes but I think it is because of not having a community of their own to go to. And with the rejection… https://t.co/shKdOhsoAt +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 I added it! Thank you very much for the feedback. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Ugh you’re right I should have included that I might edit it in. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Thank you so much! +04/16/2018,Social_workers,@drjoekort,Homosexual Obsessive Compulsive Disorder (HOCD): Obsessive doubts about one’s sexual identity may be more than just… https://t.co/sHmTwdcSLf +04/15/2018,Social_workers,@drjoekort,"RT @HuffPost: ""Twenty percent of all youth experiencing homelessness identified as bisexual. Not 20 percent of LGBTQ youth. Twenty percent…" +04/14/2018,Social_workers,@drjoekort,What is the difference between a bisexual man and a straight man who has sex with men? Hear me discuss this here https://t.co/L2PKja63YQ +04/13/2018,Social_workers,@drjoekort,RT @DrDavidLey: For all those people who believe porn destroys - here’s amazing examples of how it increases self acceptance and decreases… +04/12/2018,Social_workers,@drjoekort,I thought this was a joke 😳 https://t.co/E1HPeqiiGI +04/09/2018,Social_workers,@drjoekort,@TonyRobbins you had an opportunity to listen and you failed. I hope you get another chance and this time less talk… https://t.co/UY8EQU3sda +04/08/2018,Social_workers,@drjoekort,I have to agree with Kathy here. Should have been a dialogue with this women not a one way street pushing her away. https://t.co/LWhYFbOLOF +04/08/2018,Social_workers,@drjoekort,Wow! He’s not even listening to her. I’m listening. I’m learning. #metoo https://t.co/3Ee9qLYIJu +04/07/2018,Social_workers,@drjoekort,@fakedansavage @hemantmehta He has become a caricature of himself. +04/07/2018,Social_workers,@drjoekort,@jeanharrison @mattsuede @fakedansavage Lmao +04/07/2018,Social_workers,@drjoekort,@hemantmehta I can’t believe he’s still alive and that he’s still spewing his hatred and homophobia. He’s despicable. +04/07/2018,Social_workers,@drjoekort,RT @oldbiddyyelling: This made my day 😂 https://t.co/JPaM38GjKO +04/06/2018,Social_workers,@drjoekort,LGBTQIA Certification Program: https://t.co/CQn5NsBz2X via @YouTube +04/06/2018,Social_workers,@drjoekort,"Sexual Non-Monogamy: ask couples what their contract is around sex and commitment. An assumed or explicit contract,… https://t.co/RsuPnP6swh" +04/05/2018,Social_workers,@drjoekort,@Ziad_Reslan @elizabarclay @jack_turban @Grindr We look at it as out-of-control sexual behavior and affect dysregul… https://t.co/xQBt9jq7fL +04/05/2018,Social_workers,@drjoekort,@Ziad_Reslan @elizabarclay @jack_turban @Grindr Actually there is not a dearth of discussion on things like this in… https://t.co/ce3fBwG0qM +04/05/2018,Social_workers,@drjoekort,So important to challenge old ideas and research. https://t.co/aMFjGLi6S4 +04/05/2018,Social_workers,@drjoekort,"Hear about our new online LGBTQIA Certification Program for therapists, educators and medical professionals. Regist… https://t.co/xUC0Kc7idI" +04/05/2018,Social_workers,@drjoekort,@TonyOrlando Happy birthday! Sweet Summer Days of my Life. Thank you for that Dawn show please do another one +04/05/2018,Social_workers,@drjoekort,RT @drjoekort: My new e-book is now available. While written for gay men this book is useful for all people who want to understand their er… +04/03/2018,Social_workers,@drjoekort,"Here is a recent interview of me on Toxic Masculinity, Religious Abuse and Sexual Shame and Gender Identity Express… https://t.co/MTka5pGFVV" +04/01/2018,Social_workers,@drjoekort,"FUNDRAISER for Ruth Ellis Center-Highland Park + +Here is a sneak… https://t.co/vDcAMluS3L" +04/01/2018,Social_workers,@drjoekort,RT @SydneyTherapist: Relationship wisdom from love guru Esther Perel https://t.co/WT1AfyzABe +03/30/2018,Social_workers,@drjoekort,"@TonyOrlando Creating LGBTQ Childhood Heroes - At the tender age of 11, my very public, outspoken interest in Tony… https://t.co/ETEIqv0TZF" +03/30/2018,Social_workers,@drjoekort,@snglbuddy @CheriJacobus What is +03/29/2018,Social_workers,@drjoekort,RT @BiFamilies: Guide to Mixed Orientation Marriages https://t.co/K0DDW16K0L #mixedorientationmarriages #MoMs #bicouples #biparents +03/29/2018,Social_workers,@drjoekort,Craigslist shuts down its personal ad section to avoid being blamed for sex trafficking and Walmart plans to ban Co… https://t.co/O4w5UkdRCO +03/28/2018,Social_workers,@drjoekort,The first Chemical Dependency IOP for LGBTQ in Michigan https://t.co/0iwJn7Jo2a +03/28/2018,Social_workers,@drjoekort,@therealroseanne @RoseanneOnABC The reboot of Roseanne was excellent. And the gender fluid son was very touching. +03/27/2018,Social_workers,@drjoekort,"RT @pnetworker: We're still riding high from #PNSYMP2018 in @pnetworker land! For a post-conference injection, check out https://t.co/dSfof…" +03/27/2018,Social_workers,@drjoekort,Read about my new book for therapists and our now available LGBTQ online certification program for mental and medi… https://t.co/13HcMSjAnx +03/27/2018,Social_workers,@drjoekort,@kathygriffin Well I love your “cranium”. It’s what makes you funny af +07/02/2018,Social_workers,@BDUTT,Rebellion brewing in PDP .. led by leaders like @imranrezaansari and others joining the chorus. An important recent… https://t.co/qukKWtqJWi +07/02/2018,Social_workers,@BDUTT,@RajaMuneeb @sameeryasir So a split or.. +07/02/2018,Social_workers,@BDUTT,@sameeryasir Imran MLA Tangmarg ... And ... +07/02/2018,Social_workers,@BDUTT,Goosebumps even today. Most definitive experience of my life. Thank you for sharing https://t.co/cCOga8Rnzc +07/02/2018,Social_workers,@BDUTT,Thanks @rajnathsingh for being the only leader in your Government to stand up for @SushmaSwaraj & the awful misogyn… https://t.co/PXYMDKzcs1 +07/02/2018,Social_workers,@BDUTT,@nthiru28 ourselves. +07/02/2018,Social_workers,@BDUTT,"Every time a woman speaks she is accused- sadly often by other women- of playing victim. On the contrary, we are wo… https://t.co/bDGOeJUMOY" +07/02/2018,Social_workers,@BDUTT,@SandipGhose I don't think it's even a debate +07/02/2018,Social_workers,@BDUTT,"@HittsVora @tehseenp @smritiirani @MumbaiMirror I've often spoken up for Ms Irani +.you should check your facts." +07/02/2018,Social_workers,@BDUTT,@AdvaitaKala @SushmaSwaraj The passport should have nothing to do with what followed +07/02/2018,Social_workers,@BDUTT,@rohini_sgh @priyankac19 Agree. Life is not boot camp where we are expected to be brutualized by the normalcy of ev… https://t.co/NEwRsIJgri +07/01/2018,Social_workers,@BDUTT,@akannampilly Thank you +07/01/2018,Social_workers,@BDUTT,@Biorahul It's not trivial. Live it and you shall know +07/01/2018,Social_workers,@BDUTT,@sajadlone @amitabhmattoo @imranrezaansari @Junaid_Mattu Lol 😎😚 Junaid ! I think you had better answer that one yourself ! +07/01/2018,Social_workers,@BDUTT,@sajadlone @amitabhmattoo @imranrezaansari @Junaid_Mattu Fascinating! And I don't mean just the food 😎 +07/01/2018,Social_workers,@BDUTT,@Biorahul Most of the trolls are within the party's own base. The minister has made a public statement on it. Should she not be supported? +07/01/2018,Social_workers,@BDUTT,Am glad @SushmaSwaraj has decided to take the filth of trolls head on. But why are her cabinet colleagues - even th… https://t.co/HFoNcs42v3 +07/01/2018,Social_workers,@BDUTT,"RT @TheWorldPost: If even India's foreign minister isn't safe from right-wing trolls, who is? @bdutt asks for @PostOpinions. https://t.co/f…" +07/01/2018,Social_workers,@BDUTT,"RT @RosaO_Hara: Opinion | If even India’s foreign minister isn’t safe from right-wing trolls, who is? https://t.co/IcJHMaLs5r by @BDUTT" +07/01/2018,Social_workers,@BDUTT,"RT @Mallick_Saab: If even India’s foreign minister isn’t safe from right-wing trolls, who is? + +Well that's right if they can't support thei…" +07/01/2018,Social_workers,@BDUTT,"RT @SalmanSoz: ~@BDUTT: If even India’s foreign minister isn’t safe from right-wing trolls, who is? + +“... not even the other women in the…" +07/01/2018,Social_workers,@BDUTT,"RT @BDUTT: ""You cant keep snakes in your backyard & expect them only to bite your neighbors"": My piece in @washingtonpost on the Right Wing…" +06/30/2018,Social_workers,@BDUTT,@sonaliranade Agree +06/30/2018,Social_workers,@BDUTT,@jameelyusuf @basiitzargar @islahmufti @Drqasba I knew the other bridges but not the story of zero bridge so interesting +06/30/2018,Social_workers,@BDUTT,Neither buzz of Congress and PDP nor BJP and PDP ( with a split or a new leader) seems a fair outcome to the break… https://t.co/PNDig9uyOU +06/30/2018,Social_workers,@BDUTT,@sonaliranade Yes . +06/30/2018,Social_workers,@BDUTT,Shame on those who want to make Rape competitive. #Mandsaur is horrific as was #Kathua. The difference- in Kathua… https://t.co/MsK1R6F8xx +06/30/2018,Social_workers,@BDUTT,@sharmanagendar @rohini_sgh @RaisinaSeries Yeah but extraordinarily Amar singh and Sanjay botu spoke of this sting op on record +06/30/2018,Social_workers,@BDUTT,@sharmanagendar @rohini_sgh @RaisinaSeries And they both said this to me on camera - the sting op +06/30/2018,Social_workers,@BDUTT,@PawanDurani @Shehzad_Ind @sunandavashisht @rahulpandita @listenshahid @AartiTikoo @tehseenp @ShujaUH… https://t.co/1plAaDRuZJ +06/30/2018,Social_workers,@BDUTT,Sir repulsive. And as I wrote . https://t.co/2X69NnoWFw.. but what action are we going to take against this odious… https://t.co/YImCgWcRFA +06/30/2018,Social_workers,@BDUTT,RT @anupamaskapoor: Must read piece by @BDUTT https://t.co/6dE4jMD8qQ +06/29/2018,Social_workers,@BDUTT,Did you call her anti national when @MehboobaMufti was in government with the BJP ? Or is this your belated patriot… https://t.co/k86bDyVi7f +06/29/2018,Social_workers,@BDUTT,@anirban23456 @Prashan86617347 Don't waste your energy +06/29/2018,Social_workers,@BDUTT,@psgk99 @MehboobaMufti @htTweets True +06/29/2018,Social_workers,@BDUTT,@shangpal Not advocating chest thumping naeem saheb. Surely you know that ! +06/29/2018,Social_workers,@BDUTT,"If @MehboobaMufti had walked out on BJP & not retreated into silence that was the antithesis of her personality, sh… https://t.co/6BbKSRA59H" +06/29/2018,Social_workers,@BDUTT,@amitabhmattoo No worries. We are allowed to disagree. I have always held that @MehboobaMufti had the opportunity t… https://t.co/1y26VoJ0dq +06/29/2018,Social_workers,@BDUTT,Mehbooba Mufti’s Manmohan Moment. My column in @htTweets https://t.co/WDsTWsg8Cz via @htTweets +06/29/2018,Social_workers,@BDUTT,@anirban23456 Thank you +06/29/2018,Social_workers,@BDUTT,"RT @munirkhan_ips: Today at Yatra camp, Pantha Chowk. https://t.co/gTw9dwexy9" +06/29/2018,Social_workers,@BDUTT,@arjunk26 This is the cutest thing! +06/29/2018,Social_workers,@BDUTT,@rocky_indian7 @neha_aks @TheJaggi right here you are getting all agitated and fixated over what i say and what i dont say. Irony much. +06/29/2018,Social_workers,@BDUTT,@neha_aks @TheJaggi I am so utterly bored with the twisted reductionism of twitter. Cheers. +06/29/2018,Social_workers,@BDUTT,RT @erinbiba: Read this thread. Every single male shooter has a history of abuse and violence towards women. Every one. The latest newsroom… +06/29/2018,Social_workers,@BDUTT,And then say online smears are not cues to mob violence offline. Bullshit. It's all part and and parcel of an orga… https://t.co/rKVF4uut8G +06/28/2018,Social_workers,@BDUTT,"RT @TheRyanParker: There is an active shooter in their building, and they are still doing their job. I am fucking speechless right now. htt…" +06/28/2018,Social_workers,@BDUTT,"RT @LaurenPelley: Reporters at the Capital Gazette are covering this shooting. + +A shooting that may have killed their own colleagues, at t…" +06/28/2018,Social_workers,@BDUTT,This happened inside a newsroom. https://t.co/E5pS8j7evr +06/28/2018,Social_workers,@BDUTT,@RaviKapoor @ofnosurnamefame Thank you sir +06/28/2018,Social_workers,@BDUTT,@ofnosurnamefame Thanks. I will have no problem conceding if I am wrong. Thank you for civil disagreement. +06/28/2018,Social_workers,@BDUTT,@ofnosurnamefame Ok will check again. +06/28/2018,Social_workers,@BDUTT,@TomDEvelyn @seagullbooks This is beautiful. And sad. +06/28/2018,Social_workers,@BDUTT,@PawanDurani Please do and sorry to hear that +06/28/2018,Social_workers,@BDUTT,@Aparna @iamrana @crossword_book @Books_at_Bahri @WestlandBooks Mubaraks ! +06/28/2018,Social_workers,@BDUTT,@PawanDurani That's lovely +06/28/2018,Social_workers,@BDUTT,@syrinje The carafe is so pretty +06/28/2018,Social_workers,@BDUTT,I am agnostic. I have no religion. But I don't hate anyone's religion unlike you. https://t.co/YhrgWvqmJC +06/28/2018,Social_workers,@BDUTT,Would we go to a gurudwara and refuse to drape our head? This is just sad to read. Irrespective of your own faith w… https://t.co/sD0ACgaOnf +06/28/2018,Social_workers,@BDUTT,What a lovely uplifting photo https://t.co/NRNjH1OU4s +06/28/2018,Social_workers,@BDUTT,RT @ShujaUH: Ram Madhav to @IndiaToday: We felt there was less effort by @MehboobaMufti lead govt to encourage good governance in the state… +06/28/2018,Social_workers,@BDUTT,@AartiTikoo Chalo. Not like you to be so reductionist. But anyway... +06/28/2018,Social_workers,@BDUTT,@AartiTikoo What part is the obfuscation. I said Lashkar loud and clear in all my tweets. But I don't separate verb… https://t.co/TxPWBvyZH9 +06/28/2018,Social_workers,@BDUTT,For those who think hatred on social media is not injurious to health read these details in the note by… https://t.co/OkWRXOOjII +06/28/2018,Social_workers,@BDUTT,Police in @JmuKmrPolice officially confirm what one reported yesterday: Lashkar ordered Assasination of… https://t.co/w8YDC2WAR4 +06/28/2018,Social_workers,@BDUTT,Hey @rahulkanwal the word 'help' itself is a give away. Assumes women are primary home keepers and men supplement.… https://t.co/YSd5U736Fq +06/28/2018,Social_workers,@BDUTT,@Rajat_K_Sondhi @omchakrala @ngogoi98 Because govt insisted on retaining owner and other conditions +06/28/2018,Social_workers,@BDUTT,RT @rohanduaTOI: TOI EXC:Killing of Kashmir journalist Shujaat Bukhari was planned right in the heart of Pakistan on orders of Lashkar say… +06/28/2018,Social_workers,@BDUTT,@ngogoi98 Still the same point. Who destroyed it +06/28/2018,Social_workers,@BDUTT,Agree not sure why folks sneer at Air India instead of at the politicians who destroyed it and will neither set it… https://t.co/BSxeFdSrC9 +06/28/2018,Social_workers,@BDUTT,RT @drharshvardhan: Union Environment Ministry @moefcc does not grant tree felling permission. Such permission is given under the State Act… +06/27/2018,Social_workers,@BDUTT,RT @TheSatishDua: There wasn't another one like Sam. https://t.co/1eTueY8sjj +06/27/2018,Social_workers,@BDUTT,"RT @htTweets: All 3 accused in #ShujaatBukhari murder identified, say Jammu and Kashmir police, reports @mirehsankhaliq https://t.co/qPX7Lg…" +06/27/2018,Social_workers,@BDUTT,@ashishgeek its actually in every single newspaper. so why dont you send them those messages +06/27/2018,Social_workers,@BDUTT,Highly ranked police officials confirm major breakthrough in the assassination of #ShujaatBukhari- killers identifi… https://t.co/x0lBULTE7M +06/27/2018,Social_workers,@BDUTT,Why do men who hate women also hate Muslims ? Any connection ? here's a love note I received on Facebook today. An… https://t.co/P2R8AUOkNM +06/27/2018,Social_workers,@BDUTT,@vsmaske Er look at his group name +06/27/2018,Social_workers,@BDUTT,@imm_jay You will have to go to FB and hear and read +06/27/2018,Social_workers,@BDUTT,While we debate how women are treated in India I urge all - irrespective of political affiliation - to hear this ma… https://t.co/9GY8r4DJFX +06/27/2018,Social_workers,@BDUTT,@Mallick_Saab Thanks +06/27/2018,Social_workers,@BDUTT,@seshanm @twitrathon chalo- i am glad you concede to the rotten things :-) +06/27/2018,Social_workers,@BDUTT,@twitrathon thanks +06/27/2018,Social_workers,@BDUTT,Amid talks of another attempted Mahagatbandhan in Bihar & a rapprochement between @NitishKumar & @INCIndia -… https://t.co/nvZJZL8TwV +06/27/2018,Social_workers,@BDUTT,@SandipGhose @jgopikrishnan70 @pGurus1 More intriguing whether NDTV finally admits aftwr this order that it's not b… https://t.co/33Wh4ymfYA +06/26/2018,Social_workers,@BDUTT,Ha ha yeah. #BarkhaForPm since they are ALL listening to me 😎 https://t.co/P9M8Zhvvxc +06/26/2018,Social_workers,@BDUTT,Is a murder mystery the absolute best respite from life. Or does that make one macabre https://t.co/vAx8uDIBB3 +06/26/2018,Social_workers,@BDUTT,"RT @dna: Sebi orders open offer for NDTV +https://t.co/lrvEZnmT7X https://t.co/a66ODLiFQB" +06/26/2018,Social_workers,@BDUTT,@jgopikrishnan70 Ha ha Gopi +06/26/2018,Social_workers,@BDUTT,@rohanduaTOI @SushmaSwaraj Or maybe the only one so far +06/26/2018,Social_workers,@BDUTT,@RTReserve i often do :-) +06/26/2018,Social_workers,@BDUTT,@AbdulMajidZarga @washingtonpost 😎 +06/26/2018,Social_workers,@BDUTT,@adebbarma @BJP4India Kindly look at the tweets and the ones who sent them. +06/26/2018,Social_workers,@BDUTT,@drshraddha16 @SushmaSwaraj @AskAnshul @rishibagree sorry madam. LIke a true troll you tweet without reading. The p… https://t.co/B3ibXoYKZ0 +06/26/2018,Social_workers,@BDUTT,@Turmaan @aamirwani88 @rahatindori thats beautiful- and sadly true +06/26/2018,Social_workers,@BDUTT,"""You cant keep snakes in your backyard & expect them only to bite your neighbors"": My piece in @washingtonpost on t… https://t.co/OXRUmZ4a6I" +06/26/2018,Social_workers,@BDUTT,@sameeryasir sending solidarity in spirit. +06/26/2018,Social_workers,@BDUTT,@ruchicatomar thank you ruchica- I meant to say that earlier +06/26/2018,Social_workers,@BDUTT,@nkharoo @washingtonpost @SushmaSwaraj you too :-) +06/26/2018,Social_workers,@BDUTT,@nkharoo @washingtonpost @SushmaSwaraj you are commenting without reading the piece- something trolls do ! +06/26/2018,Social_workers,@BDUTT,@KrishnaAnand_ @washingtonpost @SushmaSwaraj I write on whatever I feel like. They do the same. +06/26/2018,Social_workers,@BDUTT,@ChefKak thank you sanjay. +06/26/2018,Social_workers,@BDUTT,If even India's Foreign Minister is not Safe from Right-Wing Trolls; Who Is? My piece in @washingtonpost on the ugl… https://t.co/zRZotl8u7m +06/25/2018,Social_workers,@BDUTT,@KarenAttiah its the same everywhere. Sigh. WHO are these people. +06/25/2018,Social_workers,@BDUTT,This is stunningly written. I lived with anxiety attacks for a short phase in life and if you have or know anyone w… https://t.co/435I6rrxaq +06/25/2018,Social_workers,@BDUTT,RT @Ram_Guha: A good piece by ⁦@BDUTT⁩ on the way forward in Kashmir. https://t.co/4VuKZ8Tw64 +06/25/2018,Social_workers,@BDUTT,If I were the Congress I'd apologise for the #Emergency and use that apology and regret to build an authentic case… https://t.co/rXUSaRXYHo +06/25/2018,Social_workers,@BDUTT,@AbdulMajidZarga Koi nahin hi. It's a free world and youre entitled your view +06/25/2018,Social_workers,@BDUTT,@ms_rana @akhileshsharma1 @darainshahidi @ndtv 😎 +06/25/2018,Social_workers,@BDUTT,RT @aamirwani88: @BDUTT’s ten point formula to try and bring back Kashmir from the abyss it has fallen into. Agree with all ten pints - if… +06/25/2018,Social_workers,@BDUTT,@SikandDipali @_HazirJawab @free_thinker @AltNews @boomlive_in @SMHoaxSlayer Exactly. And I believe fabrication of… https://t.co/DQtsYcG2O9 +06/25/2018,Social_workers,@BDUTT,@free_thinker @AltNews @boomlive_in @SMHoaxSlayer The major players circulating this would be perpetrators. Because… https://t.co/8bYj7NgBjF +06/25/2018,Social_workers,@BDUTT,My Ten Point Manifesto for a Wounded Valley- Ten things India must agree on for things to get better in Kashmir. https://t.co/NQOaIDHSGd +06/24/2018,Social_workers,@BDUTT,@ZeeMohamed_ Or do you think I spell like this..but look at the sickness of it all +06/24/2018,Social_workers,@BDUTT,Dear @AltNews @boomlive_in @SMHoaxSlayer - could you help trace who is photo shopping this bilge and circulating i… https://t.co/caGVODdzMV +06/24/2018,Social_workers,@BDUTT,@seagullbooks The crockery looks divine but please no instant coffee ! +06/24/2018,Social_workers,@BDUTT,The right wing trolls are so consumed by anti Muslim hatred and communal poison and the need to foist dogma as doct… https://t.co/aB7ipbqUKz +06/24/2018,Social_workers,@BDUTT,"Dear @SushmaSwaraj it is odious what you have been subjected to. But Ma'am imagine if this happens to you, with all… https://t.co/6KYkQEV2Eq" +06/24/2018,Social_workers,@BDUTT,"RT @journalist_army: Salute to the martyr. +Martyrs live for ever. @BDUTT @akshaykumar @roy_rameshwar @Vedmalik1 @narendramodi @tksapru @bhu…" +06/24/2018,Social_workers,@BDUTT,@manuvichar @RanaAyyub @ravishndtv @RisingKashmir thanks. +06/23/2018,Social_workers,@BDUTT,Exactly why i thought the whole hoo- haa over the royal wedding was such classist clap trap https://t.co/L5aXDHwFPF +06/23/2018,Social_workers,@BDUTT,@misra_purak I think the fact that they are the only ones in the entire case to not get bail- and the several unans… https://t.co/WKsmbPYPUg +06/23/2018,Social_workers,@BDUTT,I believe our job is to raise the right questions. Someone has to be answerable for what happened to the babies in… https://t.co/HXvgbdGdIH +06/23/2018,Social_workers,@BDUTT,We have all spoken about Kafeel but this story deserves as much of our attention. The only people not to get bail i… https://t.co/Zoepm2R2AL +06/23/2018,Social_workers,@BDUTT,RT @bahardutt: Well done delhi ! Not in town but there in spirit and in solidarity on #DelhiTreesSOS issue ... this order needs a rethink h… +06/23/2018,Social_workers,@BDUTT,Open incitement to violence is grounds for arrest @spvaid https://t.co/ASbvOa8yqM +06/23/2018,Social_workers,@BDUTT,@arnab822 Agree . Just saying it's not the root +06/23/2018,Social_workers,@BDUTT,No point blaming whats app rumours for the lynching of Muslims. It's a little bit like investigating the meat in Ah… https://t.co/jzE6DftMKc +06/23/2018,Social_workers,@BDUTT,"RT @RujutaDiwekar: The kiranawala, doodhwala & bhajiwala can no longer use #PlasticBags. Will the food industry respond by reducing/ rethin…" +06/22/2018,Social_workers,@BDUTT,@Mahabat99627436 @ShowkatNanda Thanks! +06/22/2018,Social_workers,@BDUTT,@satishkolls @IndiaExplained Mojo to even I have 😎😍😘😗 +06/22/2018,Social_workers,@BDUTT,@satishkolls @IndiaExplained Best part. But part of free media +06/22/2018,Social_workers,@BDUTT,Thank you Navdeep. Exactly. The Army is much wiser than the ideologues. And the TV anchors https://t.co/uSJbo1mPbI +06/22/2018,Social_workers,@BDUTT,@IndiaExplained Eating alone. Watching a movie alone. Free media. +06/22/2018,Social_workers,@BDUTT,What a cover. Breathtaking https://t.co/CtSPapSrLO +06/22/2018,Social_workers,@BDUTT,@declanwalsh @EchoOfIndia @marvisirmed Marvi take care and stay safe and I know you will stay brave +06/22/2018,Social_workers,@BDUTT,@saliltripathi I have had this position for many years. My view is not in response to the last 24 hours. I loathe s… https://t.co/7wG2nCQfvs +06/22/2018,Social_workers,@BDUTT,"@saliltripathi no Salil, sections of media and opposition have been reporting on it well before and for many years." +06/22/2018,Social_workers,@BDUTT,@vedhamurthyhk @ShowkatNanda exactly +06/22/2018,Social_workers,@BDUTT,@Mahabat99627436 @ShowkatNanda isnt it funny +06/22/2018,Social_workers,@BDUTT,RT @spvaid: Terrorists reportedly affiliated to ISJK. +06/22/2018,Social_workers,@BDUTT,@sneheshphilip he is saying ISJK - Does @spvaid - mean ISIS? +06/22/2018,Social_workers,@BDUTT,@ShowkatNanda cool. thats a lot of words to waste on me. +06/22/2018,Social_workers,@BDUTT,"@ParaRjs those comments were terrible, I agree. But should the response be in kind" +06/22/2018,Social_workers,@BDUTT,@Najar_Arshad @sardesairajdeep this list would be funny - with all its spelling mistakes - if its intent were not so ugly +06/22/2018,Social_workers,@BDUTT,Many reasons to critique PM Modi & the government- and I do so regularly. But i find news on the state of his lapse… https://t.co/KUTwJfMAjQ +06/22/2018,Social_workers,@BDUTT,@NilimDutta perhaps if you read the thread below to which it was responded you wouldnt think so. +06/22/2018,Social_workers,@BDUTT,@NilimDutta it means they claim to speak for Faith but dont speak for any of its finer points. Its not an attack on atheists. +06/22/2018,Social_workers,@BDUTT,"""I was just ashamed to continue in the BJD""- re-up of my interview with @PandaJay in which he says only one bureauc… https://t.co/vrRSfqJ9ze" +06/21/2018,Social_workers,@BDUTT,@ChefTZac @bombaycanteen ok beam me up NOW +06/21/2018,Social_workers,@BDUTT,Actually I am non religious. But people like you who use Muslim as a form of Abuse are Godless. https://t.co/rF6L9tRST4 +06/21/2018,Social_workers,@BDUTT,@dhume @sunetrac And the freedom of institutions. Nothing better illustrates that than the craven media here - even… https://t.co/pObSvFV5pF +06/21/2018,Social_workers,@BDUTT,A 1.5 million dollars disaster then ! Wow. Re-up my take down in @washingtonpost https://t.co/RAy2PpMlIl +06/21/2018,Social_workers,@BDUTT,"""Modi government is trying to destroy us. Congress doesnt have to worry about us; but what will they do when BJP ta… https://t.co/bz4qeuH8HZ" +06/21/2018,Social_workers,@BDUTT,@nistula What a tasveer +06/21/2018,Social_workers,@BDUTT,"RT @mauseen_khan: A family from Anantnag made a heartfelt appeal to its militant son Roshan Zammer to shun violence & return home. +""Had I b…" +06/21/2018,Social_workers,@BDUTT,"RT @saikatd: Shujaat Bukhari's son writes a beautiful tribute to his father's life and work +https://t.co/n5hTm39bcf" +06/21/2018,Social_workers,@BDUTT,@SalmanSoz Then you agree with me Salman that there is no legal obstruction as such +06/21/2018,Social_workers,@BDUTT,@ReshmiDG Perhaps you could watch my detailed interview with @paranjoygt. I document the warnings over one year -… https://t.co/kA8veBPCNZ +06/21/2018,Social_workers,@BDUTT,@SalmanSoz Rumours of a split in PDP have been there for at least a year. I am not as clear on the specific legality +06/21/2018,Social_workers,@BDUTT,Whispers abound in Kashmir about a split in the PDP in a few months and a reunion of one faction with the BJP. Two… https://t.co/WEyNr6E2v4 +06/20/2018,Social_workers,@BDUTT,@rraina1481 @ReallySwara Just unspeakably horrible sir +06/20/2018,Social_workers,@BDUTT,@tapeshbagati @maneeshchhibber Yes but they would have to split the PDP. +06/20/2018,Social_workers,@BDUTT,@swatisingh1995 @rohini_sgh How lovely +06/20/2018,Social_workers,@BDUTT,"RT @gauravwankhede: what an interview @BDUTT - loved it, you have a very easy and natural style of interviewing people. @msisodia . https:…" +06/20/2018,Social_workers,@BDUTT,@nowme_datta in our heads we are all 18 +06/20/2018,Social_workers,@BDUTT,@Abrarchoudhary_ @Siddharth121099 @MirrorNow @ndtv thanks. and maybe soon. +06/20/2018,Social_workers,@BDUTT,@AlkaJacob Agree. Cookie cutter- even dress the same way +06/20/2018,Social_workers,@BDUTT,@KhaledAlmaeena thank you +06/20/2018,Social_workers,@BDUTT,@owaisalig117 yeah +06/20/2018,Social_workers,@BDUTT,@ITheTaurus thanks for writing +06/20/2018,Social_workers,@BDUTT,I cried when I watched this. Not just because the story is so incredibly disturbing- but also because TV news can b… https://t.co/ciHkq6mwVk +06/20/2018,Social_workers,@BDUTT,@commandersaini You are an abomination on the military you https://t.co/QHjXKQYG2M represent +06/20/2018,Social_workers,@BDUTT,@maneeshchhibber Will be highly irresponsible if anyone tries to cobble anything. Not that I think it's likely +06/20/2018,Social_workers,@BDUTT,NN Vohra is kind of like Queen Elizabeth- no I don't mean in the sense of of being Royal etc- but ageless and dough… https://t.co/Hi9OcnMvfp +06/20/2018,Social_workers,@BDUTT,"RT @meerasanyal: “Do not fill the crack with more cement; rather, find a way to bring down the whole wall instead.” Thought provoking piece…" +06/20/2018,Social_workers,@BDUTT,"Isn't it a failure to not build trust with IAS officers I ask @msisodia; ""90% officers are excellent. But they're b… https://t.co/o6mYE7XvZ6" +06/20/2018,Social_workers,@BDUTT,@sameeryasir Yeah totally disingenuous +06/20/2018,Social_workers,@BDUTT,RT @vdehejia: Very sorry to learn that @arvindsubraman 's departure as CEA and imminent return to the US is now official. He follows both R… +06/20/2018,Social_workers,@BDUTT,@anirudhganu @HaseebDrabu @rammadhavbjp @MehboobaMufti you guys should decide - you want him to be mascot of the RW… https://t.co/nyjp4MqbfP +06/20/2018,Social_workers,@BDUTT,Wonderful gesture to meet the family of the extraordinarily courageous #Aurangzeb @nsitharaman - I am sure… https://t.co/v5CIoPuzkQ +06/20/2018,Social_workers,@BDUTT,@joshianil00 @HaseebDrabu @rammadhavbjp @MehboobaMufti What's my program got to do with anything? Or you are just silly +06/20/2018,Social_workers,@BDUTT,Sir you and your friend seem a bit confused - @haseebdrabu & @rammadhavbjp co-wrote the alliance agreement.… https://t.co/dvYGpnqaEb +06/20/2018,Social_workers,@BDUTT,Well sir - not that I know why you are addressing me- I am not the Kashmir Envoy - howeverl I'd be the first to arg… https://t.co/WTxFVf9WkS +06/20/2018,Social_workers,@BDUTT,@mkatju why are you addressing me on this. I am first one to said soldiers cannot pay the price of failed politics +06/20/2018,Social_workers,@BDUTT,Charming farewell note to @arvindsubraman https://t.co/O2ktlhJRMN +06/20/2018,Social_workers,@BDUTT,@sanjeevk3 @ArvindKejriwal @narendramodi @RahulGandhi @msisodia yes right now highlights. Full interview at night +06/20/2018,Social_workers,@BDUTT,I am not forecasting short term peace @mkatju - for three years I have been warning of the dire spiralling situatio… https://t.co/9A46SuZrJE +06/20/2018,Social_workers,@BDUTT,"""Did @arvindkejriwal contest @narendramodi or @rahulgandhi ?"" : In my intvw with @msisodia he lashes out at Congres… https://t.co/C1MtSIrhsf" +06/20/2018,Social_workers,@BDUTT,To be honest Jammu and Kashmir needs a new politics and a new leadership. None of the old formulas have worked. And… https://t.co/1hmPWfbroe +06/20/2018,Social_workers,@BDUTT,@sunetrac Not true. Look at my tweets and articles from then. Forecast it in black and white +06/20/2018,Social_workers,@BDUTT,RT @Chikisarkar: We loved @CitiznMukherjee speech at the rss Nagpur hq and it’s now available to read @juggernautbooks https://t.co/pEaQXio… +06/20/2018,Social_workers,@BDUTT,"RT @DilliDurAst: Rumors on WhatsApp are leading to deaths in India. The messaging service must act. My article. + +https://t.co/IWhRpADsQn" +06/20/2018,Social_workers,@BDUTT,@SandipGhose @msisodia @TheWeekLive True. Fair question +06/20/2018,Social_workers,@BDUTT,"""The LG's premises are not private property; they belong to the people"": @msisodia in this Exclusive on criticism t… https://t.co/RoJ3nju3jx" +06/20/2018,Social_workers,@BDUTT,@krishpachegonkr thank you +06/20/2018,Social_workers,@BDUTT,@schinky25 @MirrorNow @tanvishukla thank you +06/20/2018,Social_workers,@BDUTT,@Mutineer57 No because I don't threaten and bully I express my view and let's others express theirs +06/20/2018,Social_workers,@BDUTT,@areta Thank you. Grateful for your words +06/20/2018,Social_workers,@BDUTT,Thanks Rupa. Intimidation of all kinds is a mind game. We have got to keep going. https://t.co/l0sluYJurW +06/20/2018,Social_workers,@BDUTT,@ranajig Ah well yes +06/29/2018,Social_workers,@RaggiKotak,575 brilliant and brave women were arrested in DC yesterday while protesting barbaric immigration policies! Respect! +06/28/2018,Social_workers,@RaggiKotak,RT @guardian: Why is Donald Trump such a massive baby? https://t.co/CCuWRireEw +06/27/2018,Social_workers,@RaggiKotak,"Super awful that this bigotry has been upheld by the Supreme Court! +Trump hails 'tremendous victory' after supreme… https://t.co/l1KuSjdcBw" +06/26/2018,Social_workers,@RaggiKotak,A friend is organising this. Please give a couple of quid to support this brilliant and hilarious event!!! - watch… https://t.co/SvAdNjdYZK +06/26/2018,Social_workers,@RaggiKotak,How can you condemn Trump but stay silent on British brutality? | Aditya Chakrabortty https://t.co/qeDuWsIh9X +06/23/2018,Social_workers,@RaggiKotak,"RT @freemovementlaw: A new edition of the Free Movement guide to settled status, by @NathGbikpi, is out: https://t.co/iFDKbXCx5P" +06/21/2018,Social_workers,@RaggiKotak,Proud to be in the Board of the fantastic Imkaan! https://t.co/rTij24SdZO +06/20/2018,Social_workers,@RaggiKotak,Donald Trump signs executive order to end family separations https://t.co/XtoCGMx4kT +06/20/2018,Social_workers,@RaggiKotak,RT @mckinneytweets: Horrible case. Solicitors begged the authorities not to release a Vietnamese kid in case he was picked up again by traf… +06/18/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: This week is #RefugeeWeek. We start by looking at the legal definition of a refugee. Later in the week we’ll be looking at a… +06/18/2018,Social_workers,@RaggiKotak,Separation at the border: children wait in cages at south Texas warehouse https://t.co/tE075o2lEy +06/17/2018,Social_workers,@RaggiKotak,"RT @NaomiOhReally: ""I'm going to take your child to get bathed,"" is what US officials say to separate children from their parents, accordin…" +06/16/2018,Social_workers,@RaggiKotak,"RT @BBCWorld: US child migrants: 2,000 separated from families in six weeks https://t.co/65eXXeAFky" +06/15/2018,Social_workers,@RaggiKotak,"RT @libertyhq: The Commons has just voted to take away the EU Charter of Fundamental Rights after #Brexit, eroding our rights and equality…" +06/15/2018,Social_workers,@RaggiKotak,"Immigration officers win cake for arresting the most people! Hostile environment disgusting tactics! +https://t.co/tN5voXrIcN" +06/14/2018,Social_workers,@RaggiKotak,"Please sign & RT. Let’s see a giant baby Trump in the sky! +https://t.co/5vSznImN07 via @38_degrees" +06/14/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Today our thoughts are with the friends, families, and loved ones of those who died in #Grenfell Tower. The violent impact of p…" +06/14/2018,Social_workers,@RaggiKotak,"RT @officialJ4G: Today marks the one year anniversary. We stand with Grenfell, the bereaved, the survivors and our incredibly strong commun…" +06/14/2018,Social_workers,@RaggiKotak,"Doctors and nurses excluded from visa cap +Immigration rules to be relaxed for non-EU doctors and nurses - BBC News https://t.co/qTaTf0K5Md" +06/14/2018,Social_workers,@RaggiKotak,RT @copscampaign: Lush's #spycops campaign continues. These blunt new posters are going up in their shop windows this morning. Let's have a… +06/13/2018,Social_workers,@RaggiKotak,RT @WomenandGirlsN: Want to work for our incredible organisation? Check out our latest vacancies! We have some fantastic opportunities #vaw… +06/12/2018,Social_workers,@RaggiKotak,Government under fire for 'outrageous' treatment of modern slavery victims facing deportation from UK https://t.co/VRDZaOM8wH +06/11/2018,Social_workers,@RaggiKotak,"RT @OnePumpCourt: We would love you to be a part of the One Pump Court team as a Family Law Barrister! + +Apply here: + +https://t.co/RHeroUM3x…" +06/11/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Judge refuses applicant's request to have asylum appeal adjourned so he can find a lawyer: ""The case is straightforward a…" +06/10/2018,Social_workers,@RaggiKotak,15000 fascists demonstrated and rioted in London Saturday. Mostly not covered and if it has been - been described a… https://t.co/7kdR8Hl1y4 +06/06/2018,Social_workers,@RaggiKotak,"RT @INQUEST_ORG: INQUEST Trustee Rajiv Menon QC and Inquest Lawyers Group members today gave important statements at the Grenfell Inquiry,…" +06/06/2018,Social_workers,@RaggiKotak,RT @OnePumpCourt: One Pump Court has continued to raise funds for essential work on the infrastructure and development of the Lorraine Posw… +06/04/2018,Social_workers,@RaggiKotak,No 10 expected to lift visa cap preventing doctors entering UK https://t.co/fejp9M65pF +06/03/2018,Social_workers,@RaggiKotak,"RT @safepassageuk: URGENT REQUEST: We need you to write to your MP today. Within a matter of days, Brexit is set to close a legal route to…" +06/02/2018,Social_workers,@RaggiKotak,Legal challenge says ‘right to rent’ rules discriminate against non-UK nationals https://t.co/GmoUgZWIXP +06/02/2018,Social_workers,@RaggiKotak,Please consider doing this. Only takes a minute x https://t.co/nuU5XFdUNi +06/01/2018,Social_workers,@RaggiKotak,RT @WarOnWant: Solidarity with Palestinian medics heroically risking their lives tending to injured protesters. Infuriating that medics are… +06/01/2018,Social_workers,@RaggiKotak,RT @theIMEU: Palestinian nurse Razan al-Najjar was shot in the chest and killed by Israeli snipers today in the besieged Gaza Strip as she… +05/30/2018,Social_workers,@RaggiKotak,RT @Imkaan: We need a bill that safeguards vital women’s organisations and is committed to sustaining specialist services which support Bla… +05/29/2018,Social_workers,@RaggiKotak,"RT @frankie_mj: This is happening THIS THURSDAY! It is due to be a rainy evening, so the perfect day to drink some wine & listen to intere…" +05/29/2018,Social_workers,@RaggiKotak,RT @Imkaan: Violence against women and girls is a human rights issue; the goernment must acknowledge this by giving us a bill that protects… +05/25/2018,Social_workers,@RaggiKotak,"RT @DLPublicLaw: UPDATE: #HomeOffice has amended Removals Policy in response to our legal challenge. See link. + +#accesstojustice + +https://…" +05/25/2018,Social_workers,@RaggiKotak,RT @YousefMunayyer: Read this tweet. Then read it again. And again. https://t.co/Q0XGUPyNxc +05/24/2018,Social_workers,@RaggiKotak,"RT @Imkaan: In order to #TransformDVBill, the government must ensure protection from violence for women with No Recourse to Public Funds (N…" +05/23/2018,Social_workers,@RaggiKotak,"Tell me something I don’t know! +Home Office accused of 'shambolic incompetence' over skilled migrants https://t.co/OfKGV3MHOV" +05/23/2018,Social_workers,@RaggiKotak,"Let's all get tweeting....Donald Trump cannot block anyone on Twitter, court rules https://t.co/2FCloxe12z" +05/23/2018,Social_workers,@RaggiKotak,RT @PEACE4EVEREVER: As long as the Israeli government commits war crimes against the Palestinian people we support their call for a boycott… +05/21/2018,Social_workers,@RaggiKotak,RT @GrenfellUnited: Today is the beginning of a long road to justice & truth. The truth must prevail. We must get justice for the lives los… +05/21/2018,Social_workers,@RaggiKotak,RT @Imkaan: Our thoughts today are with the survivors and loved ones of those who died in the Grenfell Tower fire. If ever there was a more… +05/20/2018,Social_workers,@RaggiKotak,Lawyers representing the families said that despite pressing the Home Office for months on the mounting urgency to… https://t.co/OZLWtuTDzA +05/20/2018,Social_workers,@RaggiKotak,A life 'completely destroyed' by one paragraph of immigration law https://t.co/osovDdudLt +05/20/2018,Social_workers,@RaggiKotak,@SAsiaSolidarity Feel ashamed as this is my family's home town! It's awful +05/19/2018,Social_workers,@RaggiKotak,RT @PriyaSolankl: BBC News - Former refugee Magid Magid takes up Sheffield Lord Mayor post https://t.co/gPz811M3Ri +05/19/2018,Social_workers,@RaggiKotak,RT @KR0b3rts: The #ModernSlavery Victim Care Bill has reached the Commons. This Bill would give victims support for a year and a chance of… +05/19/2018,Social_workers,@RaggiKotak,RT @gregoceallaigh: I can think of person today whose spouse visa wasn’t endorsed with a condition of No Recourse To Public Funds. +05/18/2018,Social_workers,@RaggiKotak,UK's first Independent Anti-Slavery Commissioner resigns citing government interference https://t.co/ZxSOWiqhue +05/17/2018,Social_workers,@RaggiKotak,"RT @aliromah: Resignation of @ukantislavery saying “At times independence has felt somewhat discretionary from the Home Office, rather than…" +05/16/2018,Social_workers,@RaggiKotak,Awesome meeting last night of the anti trafficking legal project (ATLeP) - sharing knowledge about current legal an… https://t.co/PFlaCtU6mA +05/16/2018,Social_workers,@RaggiKotak,"RT @BDSmovement: Good news as we grieve the dead: The mayor of Barcelona @AdaColau has demanded an arms embargo on Israel, as called for by…" +05/15/2018,Social_workers,@RaggiKotak,"Not the only reason the HO are shambolically incompetent. But nice to see it acknowledged. +Home Office accused of… https://t.co/t8Fro9x9y2" +05/15/2018,Social_workers,@RaggiKotak,"No surprise but good to see this acknowledged! +Capita staff used ‘excessive’ restraint on asylum seekers https://t.co/YEgKYN5PIU" +05/14/2018,Social_workers,@RaggiKotak,The lives of Grenfell tower https://t.co/jwSvxUebVl +05/14/2018,Social_workers,@RaggiKotak,"RT @stevesymondsAI: When UK abandoned jus soli in 1983, Parliament preserved right of #children born in UK to British #citizenship by regis…" +05/13/2018,Social_workers,@RaggiKotak,Fraud unravels everything: Brexit is voidable and Article 50 can be revoked https://t.co/ZLLGhPNbcf via @LSEpoliticsblog +05/13/2018,Social_workers,@RaggiKotak,"MPs are due to debate #DubsII this month, an amendment to the EU Withdrawal Bill that will keep open a vital route… https://t.co/Bqmh9cG4tp" +05/13/2018,Social_workers,@RaggiKotak,"RT @DavidLammy: Brexit has contributed to an environment of increased racial discrimination and intolerance. + +Extreme views have gained gr…" +05/13/2018,Social_workers,@RaggiKotak,Another cruel policy is called out for what it is. Maybe we should spend the money on services and a fair and just… https://t.co/9inNeQDXG5 +05/11/2018,Social_workers,@RaggiKotak,Phew! Humanitarian workers acquitted of ‘crime’ of helping refugees https://t.co/YPz5fGUBom via @newint +05/11/2018,Social_workers,@RaggiKotak,RT @FrancesWebber5: Please sign and share. https://t.co/cI2sxKsIuT +05/11/2018,Social_workers,@RaggiKotak,RT @FrancesWebber5: UK Torture - the government is rewriting our country’s torture rules in secret. I'm calling for an open and transparent… +05/10/2018,Social_workers,@RaggiKotak,RT @SBSisters: #JusticeForNoura Noura is going to be put to death in few days. She was forced to marry & when she refused to hve sex w/ him… +05/10/2018,Social_workers,@RaggiKotak,RT @freeforgooduk: We are delighted to announce that Lord McColl’s Modern Slavery (Victim Support) Bill has just passed Third Reading in th… +05/10/2018,Social_workers,@RaggiKotak,RT @ZoeJardiniere: Fuming. Just hearing of some asylum seeker kids being turned away from STI and sexual health clinics in London because s… +05/10/2018,Social_workers,@RaggiKotak,RT @legalhacker101: Helped a colleague today with a presentation to medics about asylum seekers. Did the slide on the #HostileEnviroment. W… +05/10/2018,Social_workers,@RaggiKotak,"RT @JCWI_UK: Whistleblower after whistleblower has come forward to expose shocking routine failures in compassion, competence, and common s…" +05/09/2018,Social_workers,@RaggiKotak,RT @OnePumpCourt: One Pump Court's Priya Solanki will be speaking on the topic of Bail and Detention at London Spring “Essential Update” Im… +05/08/2018,Social_workers,@RaggiKotak,"Yep. This is sadly true. +Rogue immigration solicitors exploiting vulnerable migrants by charging thousands for 'su… https://t.co/hTPjNSScqu" +05/08/2018,Social_workers,@RaggiKotak,"RT @MBEGriffiths: Asylum ‘lottery’: Home Office whistle blower describes making life/death decisions under ""a leader board displaying who i…" +05/06/2018,Social_workers,@RaggiKotak,"RT @JCWI_UK: Yes. Please, everyone affected by @ukhomeoffice or by the hostile environment in your banks, NHS, renting, working, now is the…" +05/06/2018,Social_workers,@RaggiKotak,RT @libertyhq: #Windrush shows all too clearly why @sajidjavid MUST remove the toxic immigration exemption from the Data Protection Bill. I… +05/05/2018,Social_workers,@RaggiKotak,RT @DavidLammy: After 9 G4S employees suspended for their behaviour towards those being detained. That’s your fair and humane immigration p… +04/29/2018,Social_workers,@RaggiKotak,One down...Amber Rudd resigns as home secretary after Windrush scandal https://t.co/YsTo7eLV5s +04/24/2018,Social_workers,@RaggiKotak,Great new resource on sexuality claims ... https://t.co/4nvzFbt4Oj +04/17/2018,Social_workers,@RaggiKotak,"RT @copscampaign: This is the #spycops officer 'Dave Hagan' who spied on the #StephenLawrence campaign for justice. +https://t.co/1HSiB9QRMn…" +04/16/2018,Social_workers,@RaggiKotak,"Want to know about the 'Hostile environment' against migrants...and how to help bring us down. +Read this... + +https://t.co/GswYDEVt8P" +04/16/2018,Social_workers,@RaggiKotak,Watch David in this clip ... quite fucking right!!! https://t.co/shbQdnCvrN +04/07/2018,Social_workers,@RaggiKotak,https://t.co/IZWIpqvn4P +04/07/2018,Social_workers,@RaggiKotak,Today 1pm. Protest for Gaza. London https://t.co/YnIPqWYIuL +04/07/2018,Social_workers,@RaggiKotak,A good read from the Palestinian Solidarity Campaign. If we don’t speak out then we are complicit in the massacres.… https://t.co/cu9s7fwL6L +04/07/2018,Social_workers,@RaggiKotak,RT @Liam_O_Hare: Another eight Palestinians have been shot dead today in Gaza. 780 people have been wounded including journalist Yaser Murt… +04/06/2018,Social_workers,@RaggiKotak,@SoniaL77 @dpg_law @AIRECentre Me too! +04/06/2018,Social_workers,@RaggiKotak,Excellent talk by Will Russell @dpg_law and Catherine Meredith @DoughtyStPublic on rights and legal challenges for… https://t.co/ucYKzjRsEh +04/05/2018,Social_workers,@RaggiKotak,RT @hypergraphica: Another Palestinian killed today in an Israeli air raid on Gaza. 21 people have been murdered since the Great Return Mar… +04/05/2018,Social_workers,@RaggiKotak,"RT @solange_valdez: A must read on @ukhomeoffice fees, including profit making on children's registration and much more: +https://t.co/Mnhnq…" +04/05/2018,Social_workers,@RaggiKotak,New ‘exorbitant’ fees for Immigration applications starting tomorrow. Here is the new fee structure. https://t.co/FOwzzr7lim +04/05/2018,Social_workers,@RaggiKotak,RT @gardencourtlaw: Applications for the Inderpal Rahal Memorial Trust award are now open. The trust applies to women who are from an immig… +04/05/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Client, victim of trafficking but convicted of crime from being trafficked, removed from UK, re-trafficked, claimed asylu…" +04/05/2018,Social_workers,@RaggiKotak,"RT @VictoriaLIVE: ""It's mental torture."" +A mother and daughter speak to us from inside Yarl's Wood detention centre where they've been held…" +04/05/2018,Social_workers,@RaggiKotak,"RT @bareroots16: I have a dream that together we will end male violence in all its forms against women and girls in our lifetime! +One Womy…" +04/04/2018,Social_workers,@RaggiKotak,@JacquiDillon Why are you calling yourself a Doctor here. It is a crminal offence to lie. An honorary doctorate is… https://t.co/9XMnrcZPGf +04/04/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Read this and weep: ""He says he is British but has done nothing to prove it"". Truly disgraceful. https://t.co/juRtMq2ZGT" +04/04/2018,Social_workers,@RaggiKotak,GRETA Annual Report out yesterday. Re implementation of trafficking convention. Summary of main findings! https://t.co/q6rrVIBYyl +04/03/2018,Social_workers,@RaggiKotak,@JacquiDillon today I came to your dissociation training. I told you my main perpetrator was in the room. My brothe… https://t.co/sphPbMldcY +04/03/2018,Social_workers,@RaggiKotak,At least one person a day is self-harming in UK detention centres https://t.co/lf7qMmmFGd +04/02/2018,Social_workers,@RaggiKotak,Yes! https://t.co/SbuYiA8Xz4 +04/02/2018,Social_workers,@RaggiKotak,Many of us are complicit in trafficking ‘If you are being offered a service for much less than you would expect to… https://t.co/ImGX4xyMYo +04/02/2018,Social_workers,@RaggiKotak,RT @stevesymondsAI: How is someone fleeing persecution supposed to have confidence they’ll get a fair hearing from a system so eager it can… +04/02/2018,Social_workers,@RaggiKotak,"RT @UNHCRUK: If you a refugee or know anyone who is eligible, @KingsSummer is offering 10 scholarships for refugees and asylum-seekers! Dea…" +04/02/2018,Social_workers,@RaggiKotak,Brilliant! https://t.co/V998BP2gx5 +04/02/2018,Social_workers,@RaggiKotak,"RT @migrants_rights: ""..the Home Office is keen to encourage as many ppl as possible to return home. It has begun providing asylum seekers…" +04/01/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: Nauru has severed a long-standing arrangement to allow appeals to the high court of Australia, impacting on the rights of…" +04/01/2018,Social_workers,@RaggiKotak,So does that mean we will see sanctions against Israel. Fat fucking chance! Israel rejects UN and EU calls for inq… https://t.co/ZuN7jtxpas +04/01/2018,Social_workers,@RaggiKotak,RT @centreWJ: Victims of sexual violence are right to fear another John #Worboys by @hwistrich https://t.co/rCsvn1fZG0 +04/01/2018,Social_workers,@RaggiKotak,"UN fails to condemn Israel's use force on unarmed Palestinians because blocked by US + @AJENews https://t.co/CpxXFI8zIU" +03/31/2018,Social_workers,@RaggiKotak,RT @PT_Foundation: Palestinians hold day of mourning after 773 people shot with live ammo by #Israeli soldiers. Firing on unarmed civilians… +03/31/2018,Social_workers,@RaggiKotak,No words! Israeli forces kill 16 in Gaza as Palestinians demonstrate on Land Day https://t.co/MozJFAfZ4d via @MiddleEastEye +03/30/2018,Social_workers,@RaggiKotak,Brilliant article on Britain’s role in slavery. Long. But so important! https://t.co/Rb2D90dQkk +03/30/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: ""Baroness Hale, the UK’s most senior judge, is making a VIP appearance on the semi-finals of MasterChef, where she will ju…" +03/29/2018,Social_workers,@RaggiKotak,RT @matthewlondon50: Our Ana handing in a petition for EU nationals today at Downing Street with @IslingtonIn and @IslingtonLabour. Ana for… +03/29/2018,Social_workers,@RaggiKotak,RT @WilsonsLondon: Huge thanks to @marthaspurrier for brilliant Kay Everett Memorial Lecture. The lecture can be viewed at the following li… +03/28/2018,Social_workers,@RaggiKotak,The abhorent treatment of asylum seekers and refugees in Australia makes me feel very angry and sad! How do we make… https://t.co/SzlBAaF0MZ +03/27/2018,Social_workers,@RaggiKotak,Hilarious watching Boris Johnson get a slapping. It’s like public school boy slapstick! https://t.co/zpu0oYCmQ6 +03/27/2018,Social_workers,@RaggiKotak,This! ATLEU’s note on the annoying decision of the Court of appeal in MS. And advice from ATLEU on how to challenge… https://t.co/UYVNdcx6eW +03/27/2018,Social_workers,@RaggiKotak,"Respect for those involved for standing up for justice! +Why Spycops victims walked out from the police inquiry… https://t.co/rUaBfhBosP" +03/26/2018,Social_workers,@RaggiKotak,Awesome 2 day seminar at SOAS on legality of conflict in Iraq - #LegalLegaciesIraqWar. Brilliant speakers. Shame on… https://t.co/tgEnEuSrQM +03/26/2018,Social_workers,@RaggiKotak,RT @libertyhq: Two women who were let down by the Metropolitan Police when they reported being attacked by John Worboys have won a victory… +03/26/2018,Social_workers,@RaggiKotak,"Increasing numbers. More or just better detection? +British children being forced into modern slavery in UK as 5,000… https://t.co/Z9iNWE73sh" +03/26/2018,Social_workers,@RaggiKotak,'The stress is making me ill': woman's immigration battle after 51 years in UK https://t.co/9Xl3OGd3zE +03/25/2018,Social_workers,@RaggiKotak,RT @Anti_Slavery: Today is the International Day of Remembrance of the Victims of Slavery and the Transatlantic Slave Trade. @Anti_Slavery… +03/25/2018,Social_workers,@RaggiKotak,"RT @nowthisnews: Over 800,000 came out for #MarchForOurLives in DC, with hundreds of thousands more rallying throughout the nation https://…" +03/24/2018,Social_workers,@RaggiKotak,RT @SKBarrister: @OnePumpCourt AGM unanimously backs decision to strike for for criminal legal aid. +03/23/2018,Social_workers,@RaggiKotak,Garden court criminal team go on a legal aid strike! https://t.co/rmIn6pjt1r +03/23/2018,Social_workers,@RaggiKotak,"Immigration Detention: One Step Forward, Two Steps Back — an excellent article by Sophie Walker @OnePumpCourt + https://t.co/jnR31Y7Kvl" +03/22/2018,Social_workers,@RaggiKotak,"RT @Anti_Slavery: If the UK Government - as it claims - is serious about tackling #slavery, it would support the Victim Support Bill and gi…" +03/21/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: Campaigners and lawyers have walked out of a public inquiry into undercover policing, demanding that the chairman stand do…" +03/21/2018,Social_workers,@RaggiKotak,1 month of the Yarl’s Wood hunger strike... why do they strike. Because indefinite detention is barbaric and ‘Every… https://t.co/NGESAjJbr0 +03/21/2018,Social_workers,@RaggiKotak,"Those that need legal aid the most do not get it and therefore are being refused access to justice! +https://t.co/WOj3y7wDHv" +03/20/2018,Social_workers,@RaggiKotak,"RT @Ha_Matar: BREAKING: Israeli soldier Elor Azaria, who cold bloodedly executed a wounded Palestinian who had previously stabbed soldiers,…" +03/18/2018,Social_workers,@RaggiKotak,RT @thebarcouncil: Are we doing enough to support barristers & chambers with #Wellbeing & #mentalhealth? Support is available from the Bar… +03/18/2018,Social_workers,@RaggiKotak,"Yep. We all know this to be true! +Barrister blows whistle on 'broken legal system brought to its knees by cuts' https://t.co/PdWLih944p" +03/18/2018,Social_workers,@RaggiKotak,Short news clip on the great work of the Rights Lab at Nott Uni to get a better understanding of slavery to help br… https://t.co/9BpiucKb4m +03/18/2018,Social_workers,@RaggiKotak,RT @BindmansLLP: BREAKING NEWS: #Whistleblower reveals how millions of #Facebook users' #data was misused in experimental targeting #Tamsin… +03/17/2018,Social_workers,@RaggiKotak,"RT @AntiRacismDay: Massive respect to the 20,000 people that braved arctic conditions in a huge show of solidarity against racism, Islamop…" +03/17/2018,Social_workers,@RaggiKotak,"RT @analuciaraujo_: Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Mariell…" +03/17/2018,Social_workers,@RaggiKotak,"RT @SoSoSust: Very sorry to hear the news of Muslim girl Maryam Mustafa, she passed away on Wednesday evening, after being in a critical co…" +03/17/2018,Social_workers,@RaggiKotak,The Data Protection Bill has an unnecessary and draconian ‘Immigration exemption’ where the State has wide measures… https://t.co/WOrLL3i3GR +03/16/2018,Social_workers,@RaggiKotak,Channel 4 investigation into City Hearts - a Salvation Army funded ‘safehouse’ in Sheffield for trafficked persons… https://t.co/8a2SQdPXQT +03/16/2018,Social_workers,@RaggiKotak,RT @AsmaNizami: The @OnePumpCourt duo which is part of the winning @RLSAthens team! Thank you @LexisNexisUK for the award! Our team of volu… +03/15/2018,Social_workers,@RaggiKotak,@OnePumpCourt It doesn’t go to the right page +03/15/2018,Social_workers,@RaggiKotak,"RT @FreefromTorture: Right now, @ukhomeoffice is reviewing the definition of #torture in their Adults at Risk policy. It's vital they get i…" +03/15/2018,Social_workers,@RaggiKotak,Day 23 Yarl’s wood strike! We hear you! End the inhumanity of immigration detention | Letters https://t.co/aF9bLqFEA4 +03/14/2018,Social_workers,@RaggiKotak,Day 21 of a hunger strike in Yarl’s Wood Immigration detention centre. Standing with the women against the inhumani… https://t.co/GEbTYvQeFH +03/14/2018,Social_workers,@RaggiKotak,Awesome first meeting of #ATLeP last night @OnePumpCourt. A mix of lawyers and voluntary sector committed to bring… https://t.co/KdMvKhNlkk +03/14/2018,Social_workers,@RaggiKotak,Dianne Abbott blog- don’t need to wait for history though. I can confirm the xenophobic immigration policies are da… https://t.co/f026j7VjgU +03/13/2018,Social_workers,@RaggiKotak,Read the report on Harmondsworth. More on the abhorrent treatment of migrants in immigration detention. https://t.co/rmJarQH11w +03/13/2018,Social_workers,@RaggiKotak,Please sign and share! https://t.co/tvovMjXKvO +03/13/2018,Social_workers,@RaggiKotak,"The barbaric hostile environment! +As a doctor, I can see that denying NHS care to immigrants is inhumane | Kitty Wo… https://t.co/OuQr5sz3MA" +03/13/2018,Social_workers,@RaggiKotak,"Tell me something I don’t know!!! +Home Office keeping torture victims in detention, inspectors report https://t.co/Vu65Lcriin" +03/12/2018,Social_workers,@RaggiKotak,Relaunch of the Anti Trafficking Legal Project (ATLeP) tomorrow - Tuesday - at 6pm @OnePumpCourt. Message me on rko… https://t.co/ILgYGc77tH +03/12/2018,Social_workers,@RaggiKotak,@detainedvoices I have a journalist that wants to report what is going on. Contact me on raggikotak@gmail.com and I… https://t.co/BUtkFlYSVL +03/12/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: If your MP is not one of the 128 who have signed the EDM about detained torture survivors and other vulnerable detaine… +03/11/2018,Social_workers,@RaggiKotak,RT @BajariaLaw: Father taken away. Doesn't know where his three kids are. Can't see or speak to them. They've been snatched away instead. T… +03/11/2018,Social_workers,@RaggiKotak,"RT @libertyhq: In the 80s, Govt tried to scrap our data protection rights for immigration purposes. Our deeply private information held by…" +03/11/2018,Social_workers,@RaggiKotak,The younger generation teach us about protesting! https://t.co/qZIIbyV9NE +03/10/2018,Social_workers,@RaggiKotak,"RT @HelpRefugees: We need volunteers in Calais! + +We would especially like to encourage people from minority, migrant and refugee background…" +03/10/2018,Social_workers,@RaggiKotak,@WomenandGirlsN @MaraiLarasi The others are all in very fine company being associated with our Marai x +03/10/2018,Social_workers,@RaggiKotak,Awesome marching with awesome activists and lawyers supporting the end of violence against women @Imkaan… https://t.co/tDJDlhR8kT +03/10/2018,Social_workers,@RaggiKotak,Today. London. Million Women Rise! Come. It’s the most fun political action day of the year. Bring whistles and dru… https://t.co/eeNysSOehY +03/10/2018,Social_workers,@RaggiKotak,RT @JCWI_UK: Extremely disappointing to see @jeremycorbyn spread an entirely false narrative about immigrants tonight. We hope the @UKLabo… +03/10/2018,Social_workers,@RaggiKotak,"RT @MaraiLarasi: Just over 12 hours to go!!!! Getting ready to rise with my @MillionWomen community + +‘You may write me down in history +Wit…" +03/09/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Lift your voice, bring a sister & rise with us! Join tomorrow 12 noon @MillionWomen rise, marching to end male violence against…" +03/09/2018,Social_workers,@RaggiKotak,RT @BIDdetention: Absolutely shocking: client who had been released was re-detained on reporting today even though he is sole carer for his… +03/09/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: New post: Yarl’s Wood hunger strike letter undermines official stance on protests https://t.co/7Dy65c4cu8 +03/09/2018,Social_workers,@RaggiKotak,Day 17 of the hunger strike at Yarl’s Wood. A message from one of the women https://t.co/LEhgYlpHbN +03/08/2018,Social_workers,@RaggiKotak,Day 16 of the Yarl’s Wood hunger strike. Applauding the women on International womens’ day. Respect to resilience a… https://t.co/loGH1h3NPC +03/07/2018,Social_workers,@RaggiKotak,"RT @JohnHyde1982: From the outset, justice ministers promised they would review LASPO after five years. They knew this deadline was coming.…" +03/07/2018,Social_workers,@RaggiKotak,Come to this march if you are free. Each year this is a super fun day and is super important! Million Women Rise th… https://t.co/9PSJ0RZqiZ +03/07/2018,Social_workers,@RaggiKotak,Inspiring! Meet the Sex Workers Leading the Fight Against Human Trafficking and Child Marriage  https://t.co/QXUmv8WBvw via @thewire_in +03/06/2018,Social_workers,@RaggiKotak,RT @FreefromTorture: URGENT: the @ukhomeoffice is reviewing the #torture definition in its Adults at Risk policy. If it gets it wrong tortu… +03/05/2018,Social_workers,@RaggiKotak,RT @windmill_tilter: Data Protection Bill Immigration Exemption = shocking authoritarian move by govt desperate to hide from rule of law ht… +03/05/2018,Social_workers,@RaggiKotak,RT @Anti_Slavery: The @UKHomeOffice quietly slashes support for #slavery victims by nearly half. Let's make it clear: people recovering fro… +03/05/2018,Social_workers,@RaggiKotak,RT @AsylumAid: RT @Im_Keeron: #Women in #YarlsWood forced on hunger strike because conditions in #detention are so brutal- instead of liste… +03/04/2018,Social_workers,@RaggiKotak,@La_Cowan @galdemzine @Imkaan @JadeShamraeff @livlittle Awesome day. Awesome organisation. Awesome team. Thank you x +03/04/2018,Social_workers,@RaggiKotak,Share this with your clients https://t.co/rXWfOoUIei +03/04/2018,Social_workers,@RaggiKotak,RT @AyoCaesar: Hunger strikers at Yarl’s Wood are being threatened with accelerated deportation for having the temerity to demand their bas… +03/03/2018,Social_workers,@RaggiKotak,RT @detainedvoices: I was told by Fiona I am going to be interviewed by them especially because I am on the hunger strike protest in #Yarls… +03/03/2018,Social_workers,@RaggiKotak,RT @CrowdJustice: The serious failings of G4S to run prison services safely were revealed on @BBCPanorama. Maltreatment of detainees and fa… +03/02/2018,Social_workers,@RaggiKotak,RT @BIDdetention: Only £515 left until we reach our target! Please consider pledging this weekend so that we achieve our target by Monday.… +03/02/2018,Social_workers,@RaggiKotak,@guppikb When are you opening the course up to applications or is it already full +03/02/2018,Social_workers,@RaggiKotak,"RT @GDenholmLMC: Yesterday’s Kay Everett Memorial Lecture was a fitting tribute to an inspiring lawyer, activist and friend. Powerful lectu…" +03/02/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: Death of Navtej Singh Ahluwalia https://t.co/XCWHkqQQf1 +03/02/2018,Social_workers,@RaggiKotak,Come to this... a brilliant day fundraising for the super brilliant Imkaan x https://t.co/2CTT4nrbdH +03/02/2018,Social_workers,@RaggiKotak,Yet more attacks on trafficked persons placing them at further risk https://t.co/3ZFZ7Dmanx +03/01/2018,Social_workers,@RaggiKotak,RT @aliromah: Lecture @SOAS by @marthaspurrier @libertyhq in memory of Kay Everett of @WilsonsLondon reminds us indefinite detention does e… +03/01/2018,Social_workers,@RaggiKotak,RT @CarolStorerLAPG: An incredibly powerful speech by @libertyhq director @marthaspurrier for the first Kay Everett Memorial Lecture about… +03/01/2018,Social_workers,@RaggiKotak,RT @maybulman: I went to Yarl's Wood over the weekend and (once I got through all the security checks) spoke to a resident who is on hunger… +03/01/2018,Social_workers,@RaggiKotak,"Big it up to the brave Women at Yarl’s Wood fighting for their rights! + https://t.co/NyusyD1QWG" +02/27/2018,Social_workers,@RaggiKotak,"RT @MaraiLarasi: @Imkaan will be there @MillionWomen on March 10th on the streets of London. This is a movement built by from the ground, r…" +02/27/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Come along this Sunday to @HouseOfVansLDN, Waterloo! Don't miss: talks feat. @MunroeBergdorf @lawrsuk, a workshop on resisting…" +02/27/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: Diane Abbott MP told us that Yarl's Wood detainees had described inadequate healthcare https://t.co/8FzlYiZuxJ +02/27/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: Concerning that it took Diane Abbott MP over a year of requests before she was allowed to visit Yarl's Wood - great th… +02/26/2018,Social_workers,@RaggiKotak,RT @DetentionAction: Looking to support the #YarlsWood protesters and back the fight against the indefinite #detention of migrants? Here ar… +02/26/2018,Social_workers,@RaggiKotak,"RT @lisang: This is a photo of Mohammad Tamimi, 15, following emergency surgery to repair his skull, shattered by an Israeli soldier's bull…" +02/26/2018,Social_workers,@RaggiKotak,RT @sdetsup: Yarl's Wood hunger strikers escalate protests and will begin a work strike from Monday. Read this thread for latest demands #… +02/26/2018,Social_workers,@RaggiKotak,"RT @MillionWomen: 2008-2018 and still we RISE! Join us Saturday 10th March. Meet 12.30 Duke ST ( Next to selfridges, Central London) + +http…" +06/28/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: Éadaoin Bhreathnach ‘The iPad facilitates dissociation, children aren’t learning to properly regulate using social eng…" +06/28/2018,Social_workers,@Martha7144,RT @RickBrad1ey: This is a really good resource from @AFNCCF. Contains info which is equally applicable outside of school settings too. htt… +06/28/2018,Social_workers,@Martha7144,RT @healthdpt: New Signs of Safety Programme aimed at improving NI’s children’s social work services - programme supported by investment of… +06/28/2018,Social_workers,@Martha7144,"RT @signsofsafety: If you weren't already aware, Signs of Safety launched nationally in Northern Ireland yesterday. A remarkable moment tha…" +06/28/2018,Social_workers,@Martha7144,"RT @AmandaFBelfast: #Belfast women are *THE* best. + +Two men walking past two women on High Street. + +Fella one is acting Billy Big Balls i…" +06/28/2018,Social_workers,@Martha7144,"RT @colleengnm: How to approach child development; like a gardener, yelling at a plant for not growing will not make it grow..we must ask o…" +06/28/2018,Social_workers,@Martha7144,@trishstitt lovely to finally meet you in person today. +06/28/2018,Social_workers,@Martha7144,RT @jade_irwin: The #YoungHeartsAndMinds conference @BelfastWater is the best professional & personal training I have been to... and I am o… +06/27/2018,Social_workers,@Martha7144,RT @BDPerry: Is Sleeping With Your Baby As Dangerous As Doctors Say? https://t.co/SE2svlcwNq +06/25/2018,Social_workers,@Martha7144,RT @EamonnMallie: The premiere of our @BAItweets & @OireachtasNews film #AWomansPlace is screening on Monday 25th June @ 18.30 in @IFI_Dub.… +06/25/2018,Social_workers,@Martha7144,RT @eagoodlife: Childhood Trauma Leads to Brains Wired for Fear https://t.co/vCltKBsDTC +06/24/2018,Social_workers,@Martha7144,"RT @MichaelMorrow93: Credit where it's due, Arlene Foster attending the Ulster SFC final is a absolutely commendable. + +We have to endure a…" +06/24/2018,Social_workers,@Martha7144,"RT @_LisaCherry: It's not more CAMHS that children and young people need, it is fully resourced schools and communities and parents not liv…" +06/23/2018,Social_workers,@Martha7144,"RT @emmamckinneyxox: Loving our new names badges in Beechcroft..we have a Bee in pride of place to incorporate our Bee safe project, I can’…" +06/22/2018,Social_workers,@Martha7144,RT @BeaconHouseTeam: Take a look at our free worksheet for brainstem calming ideas that we help parents and schools to put in place – thank… +06/21/2018,Social_workers,@Martha7144,RT @RachelOT: The hard work is paying off... strength to go on! #changinglives https://t.co/BB59T65i9x +06/19/2018,Social_workers,@Martha7144,RT @James_vru: Children and adults who have experienced toxic stress and unsafe relationships are brilliant at reading the room. They can s… +06/19/2018,Social_workers,@Martha7144,"RT @DrMikePsych: And while we’re all focussed on NHS finances, can I respectfully point out that there are far better ways of spending £150…" +06/18/2018,Social_workers,@Martha7144,@LatimerOlivia Sounds like you had a great day. Well done. +06/17/2018,Social_workers,@Martha7144,"RT @Keirwales: Another way of talking about personality disorder... + +https://t.co/0ooskBCjf9" +06/14/2018,Social_workers,@Martha7144,RT @Gingelinds: Help me make a difference for a cause I care about. @everydayherouk #everythingcounts https://t.co/qibOQqxGWV +06/13/2018,Social_workers,@Martha7144,"RT @CamhsNi: 'A trauma-informed care model will help nurses make sense of their patients’ health history and responses to treatment, and in…" +06/13/2018,Social_workers,@Martha7144,@rachieroo32 @ExternReachOut @Sharon26smith It was lovely to have you. @corrymeela. Good luck with your next project +06/13/2018,Social_workers,@Martha7144,RT @Mrsatombomb: Excellent Extern Service 😊😊😊😊 https://t.co/2DOjwMMZg2 +06/13/2018,Social_workers,@Martha7144,"RT @StephenFarryMLA: 15mins to discuss Northern Ireland, despite all of the risks to the GFA and of a hard border from Brexit and how the N…" +06/10/2018,Social_workers,@Martha7144,Xx https://t.co/AuVebCVyPX +06/10/2018,Social_workers,@Martha7144,@amateuradam Excellent book. Laughed and cried in equal measure. Gave it to my Mum who is a retired obstetrician an… https://t.co/8PTxMCGGpm +06/10/2018,Social_workers,@Martha7144,"RT @processions2018: Did you know that green, white and violet UK Suffrage colour formation stands for “Give Women Votes”? We’ll be walking…" +06/08/2018,Social_workers,@Martha7144,"RT @SNevin1: Theres more border crossings in Ireland than all of the EU's other borders combined. Over 7,300 companies export to Eire acros…" +06/08/2018,Social_workers,@Martha7144,"RT @Debbie_abrahams: Warning of pressure on London teenagers as suicide rate doubles + +Parity of esteem, PM? +https://t.co/7NgBhgEdes" +06/08/2018,Social_workers,@Martha7144,RT @nuwandiss: Honest and true https://t.co/zCegYWvybC +06/05/2018,Social_workers,@Martha7144,RT @Mrsatombomb: Social Worker Posts!!!! 😊😊😊😊 https://t.co/MJ8VkVAm1a +06/05/2018,Social_workers,@Martha7144,RT @SophieLong01: With all due respect- by which I mean very little- why are three men over the age of 50 on talkback discussing abortion w… +05/28/2018,Social_workers,@Martha7144,RT @_NatashaDevon: @DavidLammy I looked at structural inequality in mental health for my book and concluded that the type of bias Piers is… +05/28/2018,Social_workers,@Martha7144,RT @ti_pbs: The angriest child in your class is afraid of feeling the true depths of their despair and sadness. Her anger is her lifeline.… +05/28/2018,Social_workers,@Martha7144,Why is the church constantly out of step https://t.co/bTcyy5Gg5x +05/24/2018,Social_workers,@Martha7144,@SiobhanRogan Saw you today and meant to say hello but got caught up in the competition to be the best Trust!! Hee… https://t.co/MSh9uh1P31 +05/23/2018,Social_workers,@Martha7144,RT @dr_treisman: A reposting but useful diagram of window of tolerance https://t.co/WLPviqH310 +05/22/2018,Social_workers,@Martha7144,RT @Jessicae13Eaton: Some professionals working with teens forget their own past behaviours then pathologise teens' experiences. Here's a f… +05/22/2018,Social_workers,@Martha7144,@duncan_morrow https://t.co/nUmV2nEfwA +05/20/2018,Social_workers,@Martha7144,RT @RachelOT: Great training... the OTs in Prison Healthcare seeing great results. Lovely to see the skills shared.. https://t.co/vtSCslRYFh +05/19/2018,Social_workers,@Martha7144,RT @billiehughes: https://t.co/ZTW0dHt3i9 +05/19/2018,Social_workers,@Martha7144,RT @ImSaraNeill: I’m in east Belfast where resident Joanne is getting the street ready for tomorrow’s Big Lunch! More on @BBCevex https://t… +05/19/2018,Social_workers,@Martha7144,RT @seanhollandOSS: really enjoyed this conference - family approaches to mental health work yield results and reflect how people want serv… +05/19/2018,Social_workers,@Martha7144,RT @Tim_Mc_Garry: To all the young people doing GCSEs and A Levels-please don't worry about failing. Literally anyone can be successful. #W… +05/17/2018,Social_workers,@Martha7144,RT @nashwakay: ramadan mubarak - last year i worked in an office and had a conversation with my manager and her manager about how they cou… +05/17/2018,Social_workers,@Martha7144,RT @dr_treisman: Flights booked for my @wcmtuk trip! Researching best practice in trauma-informed & trauma-responsive organisations. Please… +05/17/2018,Social_workers,@Martha7144,"RT @faeriesmidwife: It’s not the lack of check which is the issue, it’s the lack of genuine interest behind it. At my own 6week check up th…" +05/16/2018,Social_workers,@Martha7144,RT @duncan_morrow: Tonight the former Deputy PM resurfaced to officially deny the possibility of a United Ireland on @BBCNewsnight and the… +05/16/2018,Social_workers,@Martha7144,RT @MichaelMorrow93: Frampton is all class. Has made a habit of speaking out about the right things at the right time. Quality https://t.co… +05/16/2018,Social_workers,@Martha7144,RT @duncan_morrow: The penny slowly but definitively drops. The fact that this counts as news in London says something about the self absor… +05/15/2018,Social_workers,@Martha7144,@Paulinemahon5 @billiehughes https://t.co/RbB14h0Gux +05/15/2018,Social_workers,@Martha7144,@typers7 @AlexKane221b @BelTel Yes. That may be. I was really just commenting that it was for the first time in my… https://t.co/br7QF5eFTT +05/15/2018,Social_workers,@Martha7144,@typers7 @AlexKane221b @BelTel We were talking about this on my work today. Many of us both unionists and nationali… https://t.co/uPZd1klyrJ +05/13/2018,Social_workers,@Martha7144,"RT @Bonn1eGreer: 100% correct. +But the #NHS will be asset-stripped as a result of #Brexit. https://t.co/D9pmL533rn" +05/13/2018,Social_workers,@Martha7144,"RT @BelfastTrust: The Emergency Department at Children's Hospital is very busy at present. Remember, the ED is for serious conditions. Plea…" +05/13/2018,Social_workers,@Martha7144,RT @ProfSueWhite: Absolutely spot on @survivecourt. Need to reflect on how SWs lose their expressive ability. Badge of organisational compe… +05/11/2018,Social_workers,@Martha7144,"RT @ti_pbs: Its important to be sceptical about how a student's behaviour is explained.Every ""excuse"" is full of clues about the student's…" +05/09/2018,Social_workers,@Martha7144,RT @AllisonMorris1: An article from January containing the actual figures for army prosecutions since GFA which is a big fat zero: Figures… +05/08/2018,Social_workers,@Martha7144,"RT @Thomasod10: Exactly my feelings at 15, instead had placement breakdown and moved onto supported lodgings......The two-tier care system…" +05/08/2018,Social_workers,@Martha7144,RT @BeaconHouseTeam: NEW Free Resource: The Beacon House Podcast! We kick off our first episode with a conversation about 'Curiosity' with… +05/07/2018,Social_workers,@Martha7144,@panmacmillan Just finished this. Laughed and cried in equal measure. Brilliant read +05/07/2018,Social_workers,@Martha7144,RT @Docsocksomaha: I saw kids die daily from measles in Kenya. I saw a women carry her child 30 miles on her back to get him vaccinated. Fi… +05/07/2018,Social_workers,@Martha7144,"RT @ti_pbs: Luck will always explain some your success with a student, but the luckiest people are the ones who work the hardest https://t.…" +05/05/2018,Social_workers,@Martha7144,RT @dr_treisman: Pleased to announce the release of my send online interview on the trauma therapist discussing two therapeutic interventio… +05/05/2018,Social_workers,@Martha7144,RT @HSCQI: Top tips for scaling up QI projects - ‘be really clear about your plan’ https://t.co/NieBAhyJ1W +05/02/2018,Social_workers,@Martha7144,RT @wendyburn: We could massively improve staff retention and morale by providing parking. https://t.co/7BsMDvMvpG +04/30/2018,Social_workers,@Martha7144,RT @drduncanlaw: @robbrooks_uk @CORCcentral I think we need to take a very broad view of what we see as ‘therapeutic’ We should focus on… +04/29/2018,Social_workers,@Martha7144,RT @StanGilmour: A must-view for #ACEs awareness. Childhood Trauma | Changing Minds https://t.co/Q9cjYt2Y1P +04/29/2018,Social_workers,@Martha7144,"RT @VhernieM: #Mentalhealth labels can save lives, but can also destroy them. Open dialogue is key: bin ways of diagnosing that slur certai…" +04/29/2018,Social_workers,@Martha7144,"RT @nuwandiss: Money can't buy happiness, but poverty harms mental health https://t.co/wflGZKgeTU" +04/28/2018,Social_workers,@Martha7144,"RT @naomi_long: @andrealeadsom Either shockingly ignorant or dishonest. + +Switzerland is in Schengen, so there's free movement of people. S…" +04/28/2018,Social_workers,@Martha7144,"RT @AshcroftBen: Why are we asking 16 year old children and young people to cope with a tenancy, bills, food, rent, and managing the friend…" +04/27/2018,Social_workers,@Martha7144,"RT @Peston: Seems to have been a jaw-dropping £300bn swing in foreign investment flows to and from UK, in a negative sense, between 2016 an…" +04/27/2018,Social_workers,@Martha7144,RT @AshcroftBen: I believe many children and young people are set up to fail when we ask them to leave their home at 16+ with little to no… +04/27/2018,Social_workers,@Martha7144,RT @PaulBurstow: Integrated care must focus on people not structures. New blog for @DHSCmedia by @SCIE_socialcare @ewandking https://t.co/… +04/26/2018,Social_workers,@Martha7144,RT @HudSocialWork: Worrying examples from the work of @AnnaGupta2 on how inhumane othering processes happen in professional thinking and ac… +04/25/2018,Social_workers,@Martha7144,"RT @CORCcentral: ""The mental health model hasn't changed in 30 years! We need to turn the whole thing on it's head, but what would it look…" +04/25/2018,Social_workers,@Martha7144,@little_pengelly Well done. I ran again for first time since March. Nearly killed me! Keep going! +04/25/2018,Social_workers,@Martha7144,"RT @eugene_kane: Dear White People: +When Black folks say you're 'privileged', they don't mean you were born rich or don't have to struggle…" +04/25/2018,Social_workers,@Martha7144,"RT @QUBelfast: BREAKTHROUGH: We have discovered a protein that triggers #inflammation in the body. + +By learning how to control this protein…" +04/24/2018,Social_workers,@Martha7144,RT @meekmacs: The 8th Residential Child Care Awards is now open and we're asking those working in the sector to nominate deserving colleagu… +04/23/2018,Social_workers,@Martha7144,Very proud to manage this team. @billiehughes @EdelGilchrist1 Specialist eating disorders unit in Nor… https://t.co/6BCzxH5ESX +04/23/2018,Social_workers,@Martha7144,"RT @AlexKane221b: Today's @News_Letter column: unionists should not shy away from current debate on Irish unity. + +https://t.co/HNmQ6SW2…" +04/23/2018,Social_workers,@Martha7144,Well done! https://t.co/3VvH93O5qC +04/22/2018,Social_workers,@Martha7144,@ballyhackmike https://t.co/Z0v3Eat3x2 +04/20/2018,Social_workers,@Martha7144,"RT @TheCareReview: We’re very lucky at the #CareReview to have @laur_beveridge as our colleague and friend. + +If you haven’t seen it, you’ve…" +04/18/2018,Social_workers,@Martha7144,"RT @BelfastTrust: **Attention all nurses and student nurses** + +We are hosting a nursing recruitment open day on Saturday 28 April between 1…" +04/15/2018,Social_workers,@Martha7144,"RT @duncan_morrow: Petition for Amnesty for anyone who was a minor that arrived In Britain between 1948 to 1971 tops 100,000 and must be co…" +04/14/2018,Social_workers,@Martha7144,RT @action_trauma: CAMHS will be facilitating a Workshop on The Just Right State Programme at the event.The programme looks at the use of s… +04/13/2018,Social_workers,@Martha7144,@RachelOT https://t.co/uNhcUJiKaW +04/13/2018,Social_workers,@Martha7144,RT @drduncanlaw: Reminded today of this cartoon a YP drew for me showing how useless #ROMs are if only used to monitor & not used to help c… +04/13/2018,Social_workers,@Martha7144,RT @PatricKielty: Some men seem to have forgotten this woman's name. How about the rest of us shout it from the rooftops? THANK YOU MO MOWL… +04/11/2018,Social_workers,@Martha7144,RT @brendanmccon: Brilliant pictorial summary of Joy in Work. @drcathyjack @scimedic @McCormickJo https://t.co/vndoIHn6MV +04/07/2018,Social_workers,@Martha7144,@monica_rogan @seanhollandOSS Good robust examples that indicate you understand the SW role. Clarity around how you… https://t.co/pW4W2Gkbv9 +04/07/2018,Social_workers,@Martha7144,"RT @action_trauma: YOUNG HEARTS & MINDS EVENT is a unique 2 day event at the Waterfront Hall in Belfast, in June, which can help you to gui…" +04/06/2018,Social_workers,@Martha7144,"RT @ChildrensComm: When it comes to the provision of mental health treatment for children, just remember that over 90% of spending goes on…" +04/04/2018,Social_workers,@Martha7144,"RT @nuala_canning: “From the earliest ages, we learn from people” #connection #attachment #relationships + +How babies learn – and why robots…" +04/04/2018,Social_workers,@Martha7144,"RT @mrneilmorrow: Craig Gilroy, ex Methodist College Belfast pupil, suspended by @UlsterRugby. Third rugby player at the club to be suspend…" +04/03/2018,Social_workers,@Martha7144,"RT @NHSEngland: Clinical governance – organised or spinning plates? +Dr Ben Pearson, Divisional Medical Director for Integrated Care, discus…" +04/03/2018,Social_workers,@Martha7144,"RT @NIASW_: To ensure we have a balanced picture we want to hear from social workers who have never experienced intimidation, threats or vi…" +04/02/2018,Social_workers,@Martha7144,RT @HudSocialWork: important to read the research led by Professor Paul Bywaters @CWIP_Research on the links between deprivation and child… +03/31/2018,Social_workers,@Martha7144,@billiehughes @RachelOT https://t.co/nUxxdB8YBv +03/30/2018,Social_workers,@Martha7144,"RT @HackneyAbbott: Ahead of Passover, I would like to wish all Jews in my constituency, across the country and throughout the world Chag Sa…" +03/30/2018,Social_workers,@Martha7144,@NaLeanai It was absolutely brilliant! Thankyou @corrymeela +03/27/2018,Social_workers,@Martha7144,RT @LucyMPowell: A pretty comprehensive study showing that grammar schools simply reflect their intake rather than are inherently good scho… +03/27/2018,Social_workers,@Martha7144,"RT @IDickson258: Our conference for care experienced people of all ages #careexpconf can redefine our image, breaking down the stereotype…" +03/27/2018,Social_workers,@Martha7144,RT @HSCBoard: All set and ready to launch our #YouInMind CAMHS Pathway and Welcome Guide this morning. View these new resources for childre… +03/27/2018,Social_workers,@Martha7144,RT @VOYPIC: Experts by experience #ChangingStoriesNI https://t.co/z3eRDvuM3d +03/27/2018,Social_workers,@Martha7144,RT @billiehughes: https://t.co/Qy3iUWzREA +03/27/2018,Social_workers,@Martha7144,@billiehughes @CamhsNi Well done to all the speakers.. especially Naomi Catherine and Cathy. +03/27/2018,Social_workers,@Martha7144,RT @billiehughes: What an exciting day! CAMHs carepathway launch @CamhsNi https://t.co/yh8bwLtCAx +03/27/2018,Social_workers,@Martha7144,@LatimerOlivia @bknocdoc @billiehughes Well done! Great day +03/26/2018,Social_workers,@Martha7144,"RT @naomi_long: Excellent news! + +https://t.co/qTG0SA5nme" +03/24/2018,Social_workers,@Martha7144,RT @seanhollandOSS: great to see Paul returning to social work in NI https://t.co/cuCTaHVVMG +03/24/2018,Social_workers,@Martha7144,"RT @duncan_morrow: @StephenFarryMLA:""Brexit poses an existential threat to the concept of a shared and cohesive Northern Ireland...It was t…" +03/24/2018,Social_workers,@Martha7144,RT @IesoHealth: .@ZoeTheBall is taking on a cycling challenge for Sport Relief to help raise awareness of mental health. The challenge is a… +03/24/2018,Social_workers,@Martha7144,RT @NIASW_: Representing the social work sector at Alliance Party Conference 2018. Great conversation with @PaulaJaneB about the role of so… +03/23/2018,Social_workers,@Martha7144,"RT @QUBelfast: Sexual health is often regarded as a taboo subject, especially with young men. + +But @QUBSONM, in collaboration with @setrus…" +03/23/2018,Social_workers,@Martha7144,RT @VOYPIC: Deboragh in our @setrust team is starting a NEW! programme for young people aged 12 - 14. If you're ready to talk about and ta… +03/23/2018,Social_workers,@Martha7144,"RT @BelfastTrust: Did you know that if ovarian cancer is diagnosed at an early stage, it has a 90% cure rate? Ovarian cancer is the 4th mos…" +03/23/2018,Social_workers,@Martha7144,"RT @erin_miley: Thank you @naomi_long . Finally, a politician taking some steps towards getting our government up and running again!! Finge…" +03/21/2018,Social_workers,@Martha7144,Relational trauma Worksop great fun @billiehughes @dr_treisman @BelfastTrust @CamhsNi https://t.co/bN7ajFXyJl +03/19/2018,Social_workers,@Martha7144,@RachelOT https://t.co/9Nyrn3d4P4 +03/18/2018,Social_workers,@Martha7144,RT @QuinnBriege: Nurses from NI crush the competition in the fashion stakes! @MHNursesNI @LDNursesNI @CamhsNi https://t.co/X72KCZpPJ7 +03/18/2018,Social_workers,@Martha7144,"RT @MindMateApp: Eating healthier makes you HAPPIER!! + +These are the best foods to boost your mood! + +#Nutrition #motivation #healthyEating…" +03/18/2018,Social_workers,@Martha7144,RT @AlexBThomson: I can't believe Tesco's staff have a mobile app that tells them where in the shop the products are located and #NHS staff… +03/18/2018,Social_workers,@Martha7144,RT @mcginley_maria: So chuffed! Yesterday I found out that my article was accepted for publication. I couldn't have done this without the s… +03/16/2018,Social_workers,@Martha7144,RT @billiehughes: Congratulations to Beechcroft CAMHs inpatient service for winning safety forum partnership and Co production Award for Bs… +03/13/2018,Social_workers,@Martha7144,RT @NIASW_: Big changes are planned for primary care services in NI. Here is our press release concerning the roundtable discussion we host… +03/13/2018,Social_workers,@Martha7144,"RT @TimDalgleish: ""Psychosocial interventions are effective in reducing PTSD and functional impairment, and in increasing hope, coping, and…" +03/10/2018,Social_workers,@Martha7144,RT @NHSMillion: Professor Stephen Hawking and a host of senior healthcare professionals are taking Jeremy Hunt to court to stop him ‘Ameri… +03/10/2018,Social_workers,@Martha7144,@billiehughes https://t.co/1y29pGlTGA +03/08/2018,Social_workers,@Martha7144,RT @VOYPIC: We want to recruit young people for our Youth Advisor Project in Beechcroft Child and Adolescent Mental Health Inpatient Unit… +03/07/2018,Social_workers,@Martha7144,"RT @pgionfriddo: Nope. Pres Trump's not right about this one. We don't need more custodial care for people with #mentalillness, we need rec…" +03/05/2018,Social_workers,@Martha7144,RT @LADFLEG: @dmcbfs It's so feckin obvious what's going on. EU have held the same position they always have (ie pre-referendum). The Briti… +03/03/2018,Social_workers,@Martha7144,"RT @YoungMindsUK: For anyone needing some self-care inspiration this weekend, here's a list of 60 cheap/free self-care tips: https://t.co/…" +03/02/2018,Social_workers,@Martha7144,"RT @BookBub: 22 Books Coming in 2018 Recommended by Librarians +https://t.co/Sil3Wvs6Lh @tarawestover @thuglibrarian @CommerceLibrary @randy…" +03/02/2018,Social_workers,@Martha7144,"RT @nytimes: Ahead of the Oscars, pick up the original books that inspired some of the nominated films https://t.co/kgvOicZ5zH" +03/01/2018,Social_workers,@Martha7144,"RT @jennifercobbe: Jacob Rees-Mogg (raised in a country house, Eton, Oxford, then an investment banker, net worth >£100m) on @Channel4News…" +02/27/2018,Social_workers,@Martha7144,@billiehughes @RachelOT @Paulinemahon5 https://t.co/BeHIzu7qBx +02/27/2018,Social_workers,@Martha7144,RT @BPSOfficial: Listen to Dr Tim Dagleish @CamNeuro discuss clinical #depression and memory #WorldHealthDay #psychology https://t.co/s7FeD… +02/27/2018,Social_workers,@Martha7144,Prof Tim Dagleish talking at the @UKPTS on ptsd treatments in children and young people. @billiehughes… https://t.co/UVwzWiUQT6 +02/27/2018,Social_workers,@Martha7144,RT @NHSMillion: Please spare a RT for all the NHS staff across the UK who will defy the snow to ensure their patients are cared for #beastf… +02/26/2018,Social_workers,@Martha7144,"RT @rcpsych: There's to be a ten percent increase in CAMHS beds, @ClaireCNWL confirms! More than 130 new child and adolescent mental health…" +02/25/2018,Social_workers,@Martha7144,@duncan_morrow @heatherjkilgore @mrneilmorrow @porter979 https://t.co/qK5fSw1f99 +02/25/2018,Social_workers,@Martha7144,RT @bbradleymp: On the 19th of February I made a defamatory statement about @jeremycorbyn. I have apologised to Mr Corbyn and here is the c… +02/25/2018,Social_workers,@Martha7144,RT @IrishRugby: IRTV: Chris Farrell on his #NatWest6Nations Man of the Match against Wales. #IREvWAL #TeamOfUs https://t.co/L1AMsPtM2t +02/25/2018,Social_workers,@Martha7144,"RT @jakkicowley: @northernassist So here we are .... I’m £75 down because weirdly I needed to get home, but thanks for your help, oh wait e…" +02/24/2018,Social_workers,@Martha7144,RT @connectedfrlife: Resilience screening in Belfast 1 March in @skainos organised by @iaia https://t.co/CvP5wF7Vzs Thought you might be in… +02/24/2018,Social_workers,@Martha7144,@heatherjkilgore https://t.co/UBWytF3Gj2 +02/23/2018,Social_workers,@Martha7144,"RT @naomi_long: How can @J_Donaldson_MP argue his Britishness is being diminished? He's a member of the UK Parliament, the Privy Council an…" +02/21/2018,Social_workers,@Martha7144,"RT @rcpsych: Mental health trusts have less income than they did in 2011-12, our new analysis reveals. We're calling on the government to e…" +02/21/2018,Social_workers,@Martha7144,"RT @CORCcentral: Should mental health services seek to cure mental ill health? It not, what are they there for? Attend one of our regional…" +02/21/2018,Social_workers,@Martha7144,"RT @shanemuk: What's this with Brexiters wanting to tear down the Good Friday Agreement? They *lost* that referendum, and we're not having…" +02/21/2018,Social_workers,@Martha7144,RT @StephenFarryMLA: Note to hard Brexiteer fantasists. Saying GFA dead doesn’t kill it – changes deeply ingrained across both jurisdiction… +02/14/2018,Social_workers,@Martha7144,RT @duncan_morrow: Paul Girvan's weaponisation of the language issue by gratuitously cancelling Liofa grants 2 days before Christmas 2016 h… +02/12/2018,Social_workers,@Martha7144,@RachelOT https://t.co/jduFR4F34k +02/12/2018,Social_workers,@Martha7144,RT @2SmallToFail: You can strengthen the bond with your little one by cuddling or stroking your baby’s forehead before bedtime. This helps… +02/12/2018,Social_workers,@Martha7144,RT @Katie_Alice_96: I remember being taken away from my Foster home aged 18 - I got a call at College to say my bags had been packed and we… +02/12/2018,Social_workers,@Martha7144,"RT @evagrosman: Three amazing @TEDxStormont Salon events coming soon: + +Inspired Life - 7 April +Inspired Leadership - 18 May +Inspired Citi…" +02/07/2018,Social_workers,@Martha7144,@billiehughes @Paulinemahon5 @JacquieWilson7 https://t.co/8irGIZFCHA +02/04/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: “Traumatised children can, and do, flourish.” Read ‘Developmental Trauma Close Up’ https://t.co/9R0HDk1Nrs #WMHD17 #t…" +02/01/2018,Social_workers,@Martha7144,RT @C_Lightowler: A really important Scorrish study out now about Adverse Childhood Experiences in a sample of 130 children who present hig… +01/29/2018,Social_workers,@Martha7144,RT @SiobhanRogan: Delighted to work with some of the very finest medics in their field. Children and young people in @SouthernHSCT have wo… +01/28/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: We assessed a 17 year old last week, 6+ ACEs.. she has diagnoses of ASC, ADHD, conduct disorder, BPD, behavioral probs…" +01/26/2018,Social_workers,@Martha7144,"RT @DrDSRobinson: Excellent opportunity to join a fantastic Team @setrust. Applications invited from those who will deliver contemporary, c…" +01/24/2018,Social_workers,@Martha7144,"RT @CommunityCare: Using attachment theory in practice: top tips. + +https://t.co/yfjZHVhXtD" +01/21/2018,Social_workers,@Martha7144,RT @daraobriain: This may the greatest thread in the history of everything. https://t.co/rYnz9lEdm6 +01/13/2018,Social_workers,@Martha7144,RT @thomasniblock: A friend in New York took this picture in a bookshop this morning. Well played 👏🏻 https://t.co/Tjr1Kduyfm +01/11/2018,Social_workers,@Martha7144,@RachelOT https://t.co/7Rc8nXtIOr +01/06/2018,Social_workers,@Martha7144,RT @BrendanWhittle: I did my local parkrun this morning. Whilst doing so I was thinking of the runners setting off at the same time in Magi… +01/03/2018,Social_workers,@Martha7144,"RT @helenbevan: Our eBook ""Leading large scale change: a practical guide"" is 142 pages of frameworks, approaches, ideas & practical wisdom…" +01/03/2018,Social_workers,@Martha7144,RT @NHSEnglandSI: Have your say on the new green paper for transforming children and young peoples' mental health provision https://t.co/Xj… +12/21/2017,Social_workers,@Martha7144,RT @MhairiMcLellan: I just booked my ticket for the upcoming ACEs conference: Making Scotland the World's First ACE-Aware Nation (my Christ… +12/21/2017,Social_workers,@Martha7144,"RT @UpstartScot: Want to know why so many people are going on about ACEs? This terrific 11 minute TED talk from Dr Nadine Burke-Harris, who…" +12/20/2017,Social_workers,@Martha7144,RT @HeaIthHacks: How To Lose Lower Belly Fat.. https://t.co/JjXOnQ6nKK +12/20/2017,Social_workers,@Martha7144,RT @HeaIthHacks: 8 moves to quickly get your body in shape https://t.co/600qmAsPzd +12/19/2017,Social_workers,@Martha7144,RT @Womens_Aid: 'She described waking up screaming and having problems sleeping. She said she would never be able to live on her own.' Sent… +12/19/2017,Social_workers,@Martha7144,"RT @little_pengelly: Big crowd at the wonderful L'arche Christmas Fair, St John's Hall, Ormeau - all about supporting those with a range of…" +12/15/2017,Social_workers,@Martha7144,RT @rcpsych: New article in @HSJnews showing the value of mental and physical health care integration. Turns out the body and brain are con… +12/13/2017,Social_workers,@Martha7144,"RT @PaulaJaneB: *L'Arche Christmas Market* Saturday 16th Dec 2pm - 4pm Newtownbreda Presbyterian Church, 374 Ormeau Road. + +L'Arche have bee…" +12/06/2017,Social_workers,@Martha7144,@linseytweets @BelfastTrust I gave up 16 years ago! Keep going! Well done +12/04/2017,Social_workers,@Martha7144,@NewtonEmerson A tad harsh +12/01/2017,Social_workers,@Martha7144,RT @kierandowney: Neuroscience and good leadership requires rest and recovery #transformationWest https://t.co/NGT4mTcL8C +11/30/2017,Social_workers,@Martha7144,"RT @jonahfreedman: Repeated warnings from my 98-year-old grandma, a Nazi Germany survivor, chill me. She says it all started this way, with…" +11/29/2017,Social_workers,@Martha7144,RT @Black2Jo: Do you know someone who could work with us @NHSEngland Perinatal MH team? It’s an amazing opportunity! Please share https://… +11/24/2017,Social_workers,@Martha7144,RT @RachelOT: Huge Congratulations to the Prison Healthcare team for winning the Integrated Team of the Year award at the Health Heroes Awa… +11/22/2017,Social_workers,@Martha7144,@billiehughes @LatimerOlivia @BelfastTrust https://t.co/FbQQnXYUHb +11/22/2017,Social_workers,@Martha7144,@billiehughes https://t.co/tXO3AaDivV +11/22/2017,Social_workers,@Martha7144,@billiehughes https://t.co/uTJF0AMRFR +11/22/2017,Social_workers,@Martha7144,@Defenderwwwwq @beth_1day @billiehughes @LatimerOlivia This is an ongoing conversation with many CAMHS services. Be… https://t.co/XdjO9WJq6n +11/22/2017,Social_workers,@Martha7144,Just listened to young service user experience of CAMHs and reminded how privileged I am to do the work I do. Loved… https://t.co/ZokD9MNdme +11/20/2017,Social_workers,@Martha7144,BBC News - 'I was shot in the knee as a punishment' https://t.co/N82vapRvaB +11/05/2017,Social_workers,@Martha7144,RT @connectedfrlife: Interesting article about breaking the cycle of intergenerational trauma. https://t.co/LWSG89MFow +11/04/2017,Social_workers,@Martha7144,"RT @MentalWelfare: Our chairman and CEO talk about why it is important to raise awareness of less well known mental illnesses +https://t.co/…" +11/01/2017,Social_workers,@Martha7144,"RT @RobDotHutton: Thankfully, no one in British politics has ever done this. https://t.co/TIs1EaNzC1" +10/29/2017,Social_workers,@Martha7144,@billiehughes https://t.co/rqYvRn9Pv1 +10/28/2017,Social_workers,@Martha7144,RT @BrendanWhittle: Social Work & S care win 3 of the 5 categories & the overall at Chairmans Awards. We are raising the profile of SW @set… +10/26/2017,Social_workers,@Martha7144,RT @SamiraAhmedUK: Tiny Telegraph correction for a massive lie on the front page that incited trolling & threats against a young black woma… diff --git a/RawData/TweetListingsIB.csv b/RawData/TweetListingsIB.csv new file mode 100644 index 0000000..07a9609 --- /dev/null +++ b/RawData/TweetListingsIB.csv @@ -0,0 +1,82474 @@ +Date,Genre,Influencer,Tweet +09/23/2012,Actors,@_AnneHathaway,"Now it's time to go through and follow all my friends , this could take a while." +09/23/2012,Actors,@_AnneHathaway,"RT @russellcrowe: 'Les Miserables' Extended Trailer: Anne Hathaway, Russell Crowe, Hugh Jackman & Tom Hooper Explain... http://t.co/ ..." +06/20/2018,Actors,@IAMannalynnemcc,#wokeupthisway was not a challenge I can say I necessarily wanted to be a part of. I still have my acne scars remin… https://t.co/391Dc8TsWw +06/20/2018,Actors,@IAMannalynnemcc,Go ahead. Try... https://t.co/hOl9sUSSz6 +06/16/2018,Actors,@IAMannalynnemcc,RT @looktothestars: @IAMannalynnemcc Our news story mentions your #charity work Pls share! https://t.co/AxMNsyvkl9 +06/16/2018,Actors,@IAMannalynnemcc,Thank you for your words. I remember laying on the floor of a friend’s flat in central England finding out for the… https://t.co/PQgZN9o6hm +06/15/2018,Actors,@IAMannalynnemcc,Sending a @RhondasKiss to those fighting the… https://t.co/qOAfO3oe5x +05/23/2018,Actors,@IAMannalynnemcc,“I’m not guarded...” https://t.co/8LNdiowAXG +05/20/2018,Actors,@IAMannalynnemcc,This woman!!!!!! Happy Birthday to the best big… https://t.co/0Ij2lJlg0P +05/11/2018,Actors,@IAMannalynnemcc,“Every 🌹 has its thorns...” https://t.co/KV7NGkw8i5 +05/02/2018,Actors,@IAMannalynnemcc,"Barnet, North London Council Elections are tomorrow, May 3rd. I hope you tick the box for my amazing friend… https://t.co/1D0v8aIBU7" +04/05/2018,Actors,@IAMannalynnemcc,"#unboxing day!! (Omg! I literally wrote that. #cheesyAF) +I love you @rembrandtflores and I’ll… https://t.co/l6kRAmKN8I" +04/05/2018,Actors,@IAMannalynnemcc,#unboxing graffitilibrary #candles in support of @together1heart #endslavery… https://t.co/AZD1uArNYs +04/02/2018,Actors,@IAMannalynnemcc,📸 @malachibanales https://t.co/OYOzzLGyp2 +04/02/2018,Actors,@IAMannalynnemcc,📸 @malachibanales https://t.co/Re7hPZiENW +04/02/2018,Actors,@IAMannalynnemcc,Love hurts https://t.co/Gvb9GcmFDR +04/02/2018,Actors,@IAMannalynnemcc,But like... how did we live before @postmates ? https://t.co/CHy4ypisGE +04/01/2018,Actors,@IAMannalynnemcc,Happy Valentine’s Day! https://t.co/HxBgKqqXYz +03/20/2018,Actors,@IAMannalynnemcc,@usweekly *please note the friendly sarcasm... xxx +03/20/2018,Actors,@IAMannalynnemcc,@usweekly Actually... I’m dating @KellyHu - we sat apart because we didn’t want you guys to write about us!… https://t.co/ib5X3eRxOr +03/13/2018,Actors,@IAMannalynnemcc,🧜🏼‍♀️ https://t.co/zbSSKSiTbI +03/09/2018,Actors,@IAMannalynnemcc,Waiting for @Postmates like... https://t.co/kulUYoJrlg +03/06/2018,Actors,@IAMannalynnemcc,balmain ejaf #Oscars #Oscars2018 #balmain #ejaf @ West Hollywood Park https://t.co/4iUTJoQU1x +03/06/2018,Actors,@IAMannalynnemcc,Beautiful evening in support of #EJAF #EndAIDS #BALMAIN balmain #Oscars #Oscars2018 @ West… https://t.co/Dp2C9f7V7t +03/06/2018,Actors,@IAMannalynnemcc,💋 @nordstrom #nordstromlocal #Oscars #Oscars2018 #MichaelCostello https://t.co/lZ9V8ZoKR9 +03/06/2018,Actors,@IAMannalynnemcc,I see you... xxx https://t.co/wEnULElYnD +02/28/2018,Actors,@IAMannalynnemcc,#TONIGHT at 8:30PM only on @poptv ( https://t.co/b8LMJKRQz6 for local listings) #LetsGetPhysical https://t.co/3PYEqXjz9Y +02/21/2018,Actors,@IAMannalynnemcc,"📷⚡️ +Glam by: @tracewatkins #myfacebytrace +Swimwear: @angelysbalek @cldstyle https://t.co/tvy2XlLOzs" +02/18/2018,Actors,@IAMannalynnemcc,"RT @ArcticGearHats: Creating opportunities, community, and a level playing field for people with disabilities. 100% of profits are allocate…" +02/15/2018,Actors,@IAMannalynnemcc,@IFCMidnight @GUBLERNATION @AlishaBoe @iTunes @amazon @VuduFans @GooglePlay Hey guys can you dm me this video so I can post on insta? +02/15/2018,Actors,@IAMannalynnemcc,"RT @IFCMidnight: This #ValentinesDay watch the perfect movie about love, relationships, happiness... and murder. + +68 KILL, starring @GUBLER…" +02/14/2018,Actors,@IAMannalynnemcc,@platinumjones @ohellvis @Christian_Zamo No. She lovvvvves it! 😈 +02/14/2018,Actors,@IAMannalynnemcc,RT @ArthurKade: .@IAMannalynnemcc's passion for the female empowerment movement around #MeToo and #TimesUp is spot on https://t.co/PH213Z0J… +02/14/2018,Actors,@IAMannalynnemcc,@Film_AMP @mayhem_festival @thedarksidemag @BroadwayCinema @GUBLERNATION @IFCMidnight @Cooke_Mayhem Love your screen grab choice ↘️ ↙️ +02/14/2018,Actors,@IAMannalynnemcc,"RT @PopTV: Burning muscles > burning questions! Send us your Q's now for #LetsGetPhysical star @IAmAnnaLynneMcC, then watch her FB Live tom…" +02/14/2018,Actors,@IAMannalynnemcc,LIVE w/ @PopTV for #LetsGetPhysical Episode 4 (*my personal favorite as I’m up to NO GOOD) Wednesday 8:30p/7:30c on… https://t.co/cAJOlBvRY7 +02/07/2018,Actors,@IAMannalynnemcc,Yes. This happened... https://t.co/k4bz7FmgUa +02/07/2018,Actors,@IAMannalynnemcc,RT @PopTV: Become whatever kind of freaky-fit Frankenstein's monster you want to be. #LetsGetPhysical https://t.co/5C59cttdo3 +02/06/2018,Actors,@IAMannalynnemcc,"LIVE 10AM est: @WendyShow #WendyShow talking my new film +@FirstWeTakeBrooklyn" +02/06/2018,Actors,@IAMannalynnemcc,Caption? https://t.co/OGRYEuAJyf +01/31/2018,Actors,@IAMannalynnemcc,"RT @lastcallcd: Tonight's Last Call w/ @CarsonDaly features: @IAMannalynnemcc from @PopTV's #LetsGetPhysical, music from @liamgallagher, pl…" +01/25/2018,Actors,@IAMannalynnemcc,"💋💋💋 @MaximMag so much fun talking my new show #LetsGetPhysical with you! (Wednesdays @ 8:30p only on @PopTV) +https://t.co/lRkzpWbmQw" +01/25/2018,Actors,@IAMannalynnemcc,RT @PopTV: TFW your boss tells you to do something and you desperately want to sass back. #LetsGetPhysical https://t.co/tkjzvGldcj +01/25/2018,Actors,@IAMannalynnemcc,RT @PopTV: What we wish happened anytime we left a room. #LetsGetPhysical https://t.co/IXJnInouBN +01/25/2018,Actors,@IAMannalynnemcc,5 MINUTES!!!! ... till the premier of my new show #LetsGetPhysical on @PopTV ( https://t.co/Y1eTGQx241 for your loc… https://t.co/eSCyP4zcMW +01/24/2018,Actors,@IAMannalynnemcc,Ready to go LIVE!! with @BuzzFeed #AM2DM talking my new comedy #LetsGetPhysical @PopTV! Watch at:… https://t.co/yQeWnsxNHU +01/23/2018,Actors,@IAMannalynnemcc,Catch me @BuzzFeed #AM2DM tomorrow morning talking my new comedy #LetsGetPhysical @PopTV! Watch live at 10am ET:… https://t.co/6RK2hv3kFb +01/23/2018,Actors,@IAMannalynnemcc,@MamSomaly Sending you & her a lot of love 💕 sister +01/23/2018,Actors,@IAMannalynnemcc,@PopTV #LetsGetPhysical Wednesday’s @ 8:30P https://t.co/6OyusxOkh9 +01/23/2018,Actors,@IAMannalynnemcc,Today on @iamsteveharvey talking #LetsGetPhysical premiering #TOMORROWNIGHT only on @poptv https://t.co/2Th6KWyBQg +01/19/2018,Actors,@IAMannalynnemcc,"How do YOU define success? Like the world does? Or the way you see fit? @oneyoungworld + https://t.co/NXmmhFDVRt via @youtube" +01/18/2018,Actors,@IAMannalynnemcc,They’re doing it!!! I literally emailed one of the #CRISPR discovering scientists & volunteered asking her to perfo… https://t.co/q7hf813bvL +01/17/2018,Actors,@IAMannalynnemcc,"RT @OfficialTCA: If you can't remember the '80s for any reason - fuzziness, haziness, you weren't born yet, whatever - #LetsGetPhysical on…" +01/17/2018,Actors,@IAMannalynnemcc,Always a good time with the @ktla5news crew. (*causally at 7am) 😏 #LetsGetPhysical @poptv https://t.co/6GPKntWLue +01/17/2018,Actors,@IAMannalynnemcc,#TelevisionCriticsAssociation #TCA18 @OfficialTCA ***New Show*** “Let’s Get Physical” Jan 24th only on @PopTV https://t.co/D8jLxmAziF +01/16/2018,Actors,@IAMannalynnemcc,@MamSomaly @IanBohen @mspennypuppy Sending you love baby 👶 +01/16/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 month ago that we saved her from sexual abuse,she got rape by her own father & very trauma,today 6 months after she can re…" +01/16/2018,Actors,@IAMannalynnemcc,Why we keep continuing our support to @together1heart @AFESIP and @MamSomaly https://t.co/xmEDZSP5XP +01/16/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: first Global Meditation Group -TM from @AFESIP @together1heart recovery center.Please join us for the world's meditation fam… +01/13/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: been sold in slavery,she got HIV/AID,I found her she was 8 years old,age 14 she died,January 11, +National Human Trafficking…" +01/13/2018,Actors,@IAMannalynnemcc,RT @IanBohen: Survivors are living out of the shadows but there’s more to be done!! @together1heart @MamSomaly @IAMannalynnemcc are shini… +01/13/2018,Actors,@IAMannalynnemcc,@MamSomaly Why I love you sister 😘 +01/13/2018,Actors,@IAMannalynnemcc,"RT @MamSomaly: She's survivor,she been very traumatized of her past but look at her now,she's our @together1heart nurse & keep continuing h…" +01/13/2018,Actors,@IAMannalynnemcc,@IanBohen @together1heart @MamSomaly 🙏🙏🙏 +01/10/2018,Actors,@IAMannalynnemcc,You are all my inspiration thanks for being such an inspiration 🙏 https://t.co/NbpNyE5gI7 +01/10/2018,Actors,@IAMannalynnemcc,@together1heart 2 in 1 our love to our baby 👶 https://t.co/onPJJKb5ij +01/02/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: 6:00am meditation time with our sister @IAMannalynnemcc 🙏 life is about forgiveness 😘 @together1heart @AFESIP @drdavidcooke… +01/02/2018,Actors,@IAMannalynnemcc,RT @MamSomaly: Happy new year to everyone from our girls @together1heart @AFESIP recovery center 🙏may New Years bring everyone happy lucky… +01/01/2018,Actors,@IAMannalynnemcc,Happy New Year to me... I hope each of you find the love that has found me. Love that is pure and free without cond… https://t.co/yQY7gmzjKp +12/28/2017,Actors,@IAMannalynnemcc,Can’t wait to hug my Cambodian baby 😘 @MamSomaly https://t.co/hsHf8K6uIb +12/18/2017,Actors,@IAMannalynnemcc,Raised in the brothel. https://t.co/K7DiCEgeme +12/18/2017,Actors,@IAMannalynnemcc,I remember this moment so vividly. At our Siem Reap Center for sex-trafficking survivors sat these tiny little shoe… https://t.co/5NPsxcd7gr +12/18/2017,Actors,@IAMannalynnemcc,#Cambodia I’m coming home next week!!! (Photo credit: @EddsCamera ) https://t.co/ro21oPDsDW +12/17/2017,Actors,@IAMannalynnemcc,New York Attorney General on the Repeal of Net Neutrality: Futurism Excl... https://t.co/O1ND8yxzK2 via @YouTube +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Yesterday they cry 😭 today they started to play with other girls,how beautiful to see them become children again,playing lau…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She been trafficked from Vietnam to Thailand 3 time when she was 3 years old,when we found her she can't talk she been very…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 😢2 little baby sister got rape 2 years ago,they're 4&5 years old by they stepfather,they keep silent bc they don't want to h…" +12/15/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: First day computers for my baby girls how happy they are to use their talents ,thanks @IAMannalynnemcc @together1heart @AFES…" +12/10/2017,Actors,@IAMannalynnemcc,@LyViriya @MamSomaly @drdavidcooke @ChloeFlower @shaymitch @IanBohen Sending you love 💕 sister +12/08/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: meeting End with very fruitful from all survivors leaders,we are survivors we give back to our society,our objective is to e…" +12/08/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Survivors empowerment monthly meeting (voice for change) we try to find the way how to help victims for a better life & how… +12/08/2017,Actors,@IAMannalynnemcc,@MamSomaly @mspennypuppy @drdavidcooke @HildenbrandC Keep going sister I will see you soon in December love +12/08/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: My little sweetheart❤️sometimes I don't understand how can people hurt them,they are very sweet & beautiful,today we spend n…" +12/08/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: miss you more my angel 😇 you make me tears just to hear your voice 😢😢😢 https://t.co/oav8baLKHt +12/07/2017,Actors,@IAMannalynnemcc,https://t.co/xenWGSb73o @FHM @PopTV #LetsGetPhysical +12/04/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: I'm back home with my angel 😇 she make me heal from my sickness,a survivor right now becomes a strong angel & she want to be…" +12/02/2017,Actors,@IAMannalynnemcc,"@cleorestaurant @cleothirdstreet Chef Danny, it was the epitome of the superb! Thank you for having me!… https://t.co/dRPhqbK2tk" +12/01/2017,Actors,@IAMannalynnemcc,#facebytrace @tracewatkins - #blonde by @MichPugh #cut by @JonathanAntin https://t.co/38BZ8783Vw +12/01/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Just get out from hospital,10 years old girl got rape brutally by a 41 years old man while she try to finding foods,she's to…" +11/29/2017,Actors,@IAMannalynnemcc,"#Repost @together1heart **LINK in BIO +・・・ +Life is love. 💜 Painted on a wall at our center by… https://t.co/gBXvCbovJZ" +11/28/2017,Actors,@IAMannalynnemcc,"First 10 DONORS* receive a handmade-by-survivors, silk necklace selected by me on my recent trip to Cambodia!… https://t.co/nfihvWrrCF" +11/23/2017,Actors,@IAMannalynnemcc,#HappyThanksgiving https://t.co/abnCGEi4bM +11/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: See the little baby who got rape when she's 13 month,1 month after how beautiful smiles she give me,it's the best & every be…" +11/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: How beautiful to see a little baby who was even don't speak because of her trauma & now they can have their dream,she want t…" +11/22/2017,Actors,@IAMannalynnemcc,Heaven is a place on earth... https://t.co/Uhk7R6BfOQ +11/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: When @IAMannalynnemcc get tired then her baby send her these face & tell her ( you save our life & so many life now have hop… +11/19/2017,Actors,@IAMannalynnemcc,So proud of you girls 😘 https://t.co/J4rFYt4gVE +11/19/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Sports time for our survivor girls with the village children,they try their best to include them self with community childre…" +11/19/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Received this message on FB,You make me tears 😢my sweetheart,you are the most beautiful from inside and out,you are strong,y…" +11/18/2017,Actors,@IAMannalynnemcc,Thank you @ShowMeYourMumu I LOVVVE my personalized denim bomber!! https://t.co/kr0NTGboNR +11/16/2017,Actors,@IAMannalynnemcc,#firstwetakebrooklyn https://t.co/EQw4XE6QAQ +11/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Thanks to each of you for ur like,follow,comments & support to victims & survivors,without ur encouragement we can't stand a…" +11/09/2017,Actors,@IAMannalynnemcc,"#LetsGetPhysical January 24th, 2018 on @poptv https://t.co/MeFzc9N983" +11/09/2017,Actors,@IAMannalynnemcc,#behindthescenes @poptv #LetsGetPhysical - Glam: @tracewatkins https://t.co/e4YiDCWm6Y +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Most of my dress come from survivors who been @our recovery center,she been very traumatized & today successful in her busin…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: We always can turn darkness to the lighter,we can turn hate to forgiveness, anger to happiness, pain to healing by unconditi…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She try so hard to survive from her suffering,trauma from what she going true,after few month been rape now she started her…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: This video make my day,the 13 month baby started to play,she is out of operation after got rape🙏I pray that her health going…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @brianaevigan_2: @MamSomaly your smile is brightening the world. Thank you for all that you do, all the… https://t.co/b7M5RGf9Dv" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She’s very happy& I’m happy too,congratulations to u baby after a storm now is sunshine ☀️I’m in tear but happy tears❤️ thx…" +11/09/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 Years old baby who got rape 10day ago she’s out of hospital.started her new life with hope love laughs learn,she’s very sm…" +11/08/2017,Actors,@IAMannalynnemcc,"RT @IanBohen: #OneLoveGala is tomorrow night to benefit victims of sexual slavery and exploitation. Join me, @together1heart, @MamSomaly an…" +11/06/2017,Actors,@IAMannalynnemcc,"Learning a very special prayer from my hero and teacher @MamSomaly . For all of my girls, for… https://t.co/TuQWN3FdHs" +11/04/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: lovely message from my baby after she stand up in front of perpetrator who rape & try to kill her,she's very strong & she wi…" +11/03/2017,Actors,@IAMannalynnemcc,"RT @MayorStanton: Inspiring morning. Opened today: Starfish Place, the nation’s 1st permanent supportive housing for survivors of sex traff…" +11/03/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Join the fight TODAY, attend the Together1heart annual gala! Tickets: https://t.co/PFklnHajQQ +One Time Donation: https://t.c…" +11/03/2017,Actors,@IAMannalynnemcc,@sleemol @MamSomaly Thank you for your motivation +11/03/2017,Actors,@IAMannalynnemcc,"RT @sleemol: I still don't really have the words to describe what I saw in Cambodia, but I tried with this piece: https://t.co/4gHaQAPafC" +11/02/2017,Actors,@IAMannalynnemcc,"My baby it’s such a beautiful & inspiration to hear what they want in life,why I keep working so hard , https://t.co/K3fNoPS7qs" +11/02/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Join the fight TODAY, attend the Together1heart annual gala! Tickets: https://t.co/PFklnHajQQ +One Time Donation: https://t.c…" +11/02/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: We got a great new,13 month baby who got rape by a HIV/AIDS men is now safe,she doesn't get infections from him but we have…" +10/28/2017,Actors,@IAMannalynnemcc,#HappyHalloween #JJCLOWNS @justjared #HalloweenParty2017 - love you @jaredeng https://t.co/5GTY0c1Qh3 +10/28/2017,Actors,@IAMannalynnemcc,RT @JustJared: .@IAMannalynnemcc and @RealMichelleT both went to the dark side for their #JJCLOWNS costumes last night! https://t.co/az3iI9… +10/28/2017,Actors,@IAMannalynnemcc,#aboutlastnight @nobumalibu w/ my lovely @kimdejesus - xxx @rembrandt @EFGpr https://t.co/bcfnvcs2md +10/28/2017,Actors,@IAMannalynnemcc,#aboutlastnight @nobumalibu w/ my lovely @KimDeJesus9 - xxx @rembrandtflores @efgpr @ Nobu Malibu https://t.co/x9hYLqyHzk +10/26/2017,Actors,@IAMannalynnemcc,💕💞 https://t.co/zQ1CqSYLnf +10/23/2017,Actors,@IAMannalynnemcc,My hero being the badass that she is. My big sis @theAngelMcCord is the rainbow in my clouded… https://t.co/Rqf0pf6JCT +10/23/2017,Actors,@IAMannalynnemcc,Help get my beautiful goddaughter’s Daddy elected 2 the city council #Redding #Pennsylvania #VENMO @kirk-Mullen-2 /… https://t.co/cbv12Cc3K4 +10/23/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She get better after her meditation,everyday she try her best to get out of her trauma 😘 @IAMannalynnemcc @drdavidcooke @tog…" +10/23/2017,Actors,@IAMannalynnemcc,RT @drdavidcooke: These extraordinary young women have completed uni despite early years of extreme trauma thanks to @MamSomaly @AFESIP htt… +10/23/2017,Actors,@IAMannalynnemcc,RT @drdavidcooke: Working with women in Phnom Penh slums forced into prostitution to support families @MamSomaly #UnconditionalLove https:/… +10/22/2017,Actors,@IAMannalynnemcc,So excited to join my co-star #janeseymour in support of her beautiful charity @openheartsfoundation 💕 https://t.co/UK3pU6XNWv +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: holiday activity at ur @together1heart @AFESIP recovery center we try to make them confident & heal from their trauma @IanBo… +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Life is love ❤️ sending everyone love from @together1heart please keep hopes & smiles @IAMannalynnemcc @drdavidcooke @ChloeF… +10/19/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Morning meditation for our girls @together1heart @AFESIP https://t.co/Y4vXaqfij2 +10/17/2017,Actors,@IAMannalynnemcc,#MeToo https://t.co/O33k7iQIXf +10/16/2017,Actors,@IAMannalynnemcc,Get a Bae who can do both... https://t.co/Mz5CDRg9Op +10/14/2017,Actors,@IAMannalynnemcc,13 month baby victim of rape are now saved with her 21 Years old mother at @together1heart MamSomaly @AFESIP recove… https://t.co/Vb7C3HhoJP +10/12/2017,Actors,@IAMannalynnemcc,"RT @kienyke: #OYW2017 | Mensaje de @IAMannalynnemcc a todos los que han sufrido acoso sexual: No es el final, puedes seguir, no es tu culpa…" +10/12/2017,Actors,@IAMannalynnemcc,@SexYSuccubus @MamSomaly Thx to you +10/12/2017,Actors,@IAMannalynnemcc,@kentspeakman @together1heart @MamSomaly 😘🙏 +10/11/2017,Actors,@IAMannalynnemcc,Today @MamSomaly saved a 8 Years old girl raped by a family member.This is the reason why I support @together1heart… https://t.co/Zah7BKd1HS +10/11/2017,Actors,@IAMannalynnemcc,@MamSomaly Hug & love to my little baby sooner I will be there to hug you 😘 +10/11/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: She lost her mother at 5.Her father abandoned her&her sister. Her younger sister was given away.she got raped by a family me… +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 6 years old was raped by brother in law.A few months later,mother passed away.the small cottage was fired in 7 days followin…" +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: No word to explain what I feel. 13 month old baby got raped by neighbor who have HIV. This break my heart, that why I contin…" +10/11/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: After my suffering day,today visit my girls at @together1heart @vimean beauty training salon 💇 so inspiration to see them ge…" +10/10/2017,Actors,@IAMannalynnemcc,Today @MamSomaly went to Siem Reap province visiting a baby girl who is only 13-month-old and was brutally raped by… https://t.co/hMjY7J34N8 +10/07/2017,Actors,@IAMannalynnemcc,@SkyNewsTom @SkyNews Great chatting with you! Thank you for bringing these topics to the forefront. 🙏🏽🙏🏽🙏🏽💜💜💜 +10/07/2017,Actors,@IAMannalynnemcc,"RT @OneYoungWorld: .@IAMannalynnemcc, one of Hollywood's strongest female philanthropists, sheds light on sexual violence & human trafficki…" +10/05/2017,Actors,@IAMannalynnemcc,Sending love frm @together1heart 2 the beautiful inner city children in #LosAngeles supported by the efforts of… https://t.co/GKqZHs7BHh +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Day 3th after got rape by her own father.she feel better but still pain,we got back from clinic.she going to be heal by ❤️fr…" +10/05/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: 11 years old girl got rape by her biological father😭to me both of them(mother&daughter)are victim mother was beaten every da… +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: monthly survivors network meeting,so proud of each of them for their success,they worked with me,they give back to society h…" +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She was married have 2kids,she was beaten everyday then sold To sex-slavery.her2 daughter got rape since they was 5&3 years…" +10/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: seeing them grow up.some of them been with me since 20 years&some more then 10 years,some get married have kids&success in t…" +10/03/2017,Actors,@IAMannalynnemcc,"Being the boss is so difficult. +@poptv #LetsGetPhysical #poptv #January2018 https://t.co/2hctAmOcA1" +10/02/2017,Actors,@IAMannalynnemcc,"Missing my Little Angels 👼🏼! #EndSlavery @together1heart + +*photo credit @EddsCamera https://t.co/03v8X78bqX" +10/01/2017,Actors,@IAMannalynnemcc,"RT @IFCMidnight: .@IAMannalynnemcc packs a mean piece (and a punch) in 68 KILL, now on @iTunesMovies @AmazonVideo @XFINITY @optimum @GetSpe…" +09/27/2017,Actors,@IAMannalynnemcc,TODAY: Join my interview with Cam Rogers on the #camrogersshow LIVE at 10:15 ET https://t.co/B8HVigadzD +09/26/2017,Actors,@IAMannalynnemcc,"Happy Birthday, Mom!!! @Sheri_Geyer https://t.co/pm9CeZR3ej" +09/26/2017,Actors,@IAMannalynnemcc,See you next week in Bogota! @oneyoungworld https://t.co/ukkLI1mTZu +09/24/2017,Actors,@IAMannalynnemcc,"""5 Touchdowns"" ""And how old is he?"" ""I don't know? Does it matter?"" Love these commentators #PatsNation #tombrady #thefckingGOAT" +09/19/2017,Actors,@IAMannalynnemcc,"#trailerdays tracewatkins decided he wants to be a photographer 😹 (love you, mean it)… https://t.co/BtxI0yYuem" +09/19/2017,Actors,@IAMannalynnemcc,Throwback to my darker dayz... https://t.co/59jmmYviHA +09/19/2017,Actors,@IAMannalynnemcc,First official week as Mrs. #ClaudiaCross -Methinks she seems like an older version of a girl I… https://t.co/u7cvjs4oI0 +09/14/2017,Actors,@IAMannalynnemcc,@Sinavann83gmai2 I'm proud of you sister 😘 https://t.co/Ch9TirAmrr +09/07/2017,Actors,@IAMannalynnemcc,RT @mosesbread72: Equality. https://t.co/NQ4pJt94AZ +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She's happy when she talk to her girls @IAMannalynnemcc you a our supper hero 😘morning from Cambodia everyone,let smiles 😀4…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: She was rape then sold by her own mother,9 years we try to find her family,I spend 2day going village to other,now we found…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: No matter what we are happy for what we do to make other get hope,happy,my mission with my teams & girls @together1heart @IA…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Morning I love you❤️from Cambodia,our last day holiday @IAMannalynnemcc @together1heart @mspennypuppy @SusanSarandon @drdavi…" +09/05/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: 1 ofmy girl who has been reintegrated through Community-based education back to live with her family after long term recover… +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 1 abandoned by her own parents,1 got rape by her own father&rejected by her mother,1 got rape,my field work😢now my son go to…" +09/05/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: 9 years old got rape,her mother sold her to the slavery,9 year she stayed at ur center,now she's ready to find her mother bu…" +09/04/2017,Actors,@IAMannalynnemcc,"Just one more taste, forbidden fruit. +I make it wrong. I need its due +He sings a song; a nightmare's rhyme. +A cry w… https://t.co/vBnfqWjWg7" +09/04/2017,Actors,@IAMannalynnemcc,#demboyz @UCLAFootball --- !!!!!!! Patriots style #comeback 35 unanswered points. #Rosen @josh3rosen +08/31/2017,Actors,@IAMannalynnemcc,"""To see a World in a Grain of Sand +And a Heaven in a Wild Flower +Hold Infinity in the palm of your hand +And Eternit… https://t.co/yoRTk3azla" +08/26/2017,Actors,@IAMannalynnemcc,"@trespink @SouthwestAir I appreciate you sharing your opinion. Honestly, I don't discriminate against discriminatio… https://t.co/8qjm2WqIXP" +08/26/2017,Actors,@IAMannalynnemcc,RT @JustJared: .@IAMannalynnemcc is speaking out after @SouthwestAir refused to let her gay friends honor the Family Boarding rule. https:/… +08/26/2017,Actors,@IAMannalynnemcc,RT @UKSAYSNOMORE: A healthy #relationship means communication and respect. Learn more + share: https://t.co/6TwrmHcke1 #UKSAYSNOMORE +08/26/2017,Actors,@IAMannalynnemcc,"#OPENLETTER to @southwestair +Dear Southwest Airlines, + +Have you ever felt bullied? Have you ever been picked on?..… https://t.co/co4F1f6vFw" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Jumping to raise awareness,jumping for a good cause in 10 minutes @IAMannalynnemcc I love you and thanks for everything that…" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Everything because of you,love can heals you love can heal pain,without love , peace ✌️ unconditional love ❤️ with @IAMannal…" +08/21/2017,Actors,@IAMannalynnemcc,"RT @MamSomaly: Survivors teaching victims to encourage them to have more confidence on them self,so proud to see them give back to other @I…" +08/20/2017,Actors,@IAMannalynnemcc,"I LIVED!!! +To my sisters and brothers around the world who have suffered and survived Modern… https://t.co/B2nes690WT" +08/19/2017,Actors,@IAMannalynnemcc,I believe in love. I believe in freedom. RT if you want to see the end of sex trafficking in our lifetime #18for18 #endsextrafficking +08/19/2017,Actors,@IAMannalynnemcc,"DONATE: $50, $250 or $500 shoutout! +Our vision is to see a world where women & children are safe from slavery...… https://t.co/PBbLINrKiy" +08/18/2017,Actors,@IAMannalynnemcc,Check out my 🇬🇧 🇬🇧friend @iamleftclothing 's awesome line!! @iamleftclothing #wearyourprinciples… https://t.co/826pYYPlwq +08/18/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Respecting people that's what I teach my girls & now our survivor @RatanaChan4 teach other how to respect🙏 @together1heart… +08/17/2017,Actors,@IAMannalynnemcc,John!! @Omikron7291 thank you so much for your donation to support my skydive to #EndSlavery https://t.co/ZRfU2p9IVM +08/17/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: She's going to the court again her uncle who rape her & other side her father going to prison bc he kill her mother😢 in 1 da… +08/16/2017,Actors,@IAMannalynnemcc,My baby angel 👼 😘😘 https://t.co/zaunTQylm4 +08/16/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: My girls works on morality&regulation.no matter who u gone true .The most important is about ethnical& respectful that they… +08/16/2017,Actors,@IAMannalynnemcc,Help me throw myself out of a ✈️ 2 help rescue girls like Srey Net so they can hv an education… https://t.co/vfm4bjYlqf +08/14/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Just see your post @Noraoeur7 you make me cry of happiness I am the most lucky mother thx @SusanSarandon @IAMannalynnemcc fo… +08/14/2017,Actors,@IAMannalynnemcc,Human Trafficking affects over 30 million people. YOU can stop it. Join me with #18for18ProjectRescue https://t.co/ZRfU2p9IVM PLZ PLZ RT 💜💜 +08/14/2017,Actors,@IAMannalynnemcc,⌚️ 6 days before I throw myself out of a plane at 18k ft to bring awareness to #endsextrafficking PLZ Donate https://t.co/ZRfU2p9IVM +08/14/2017,Actors,@IAMannalynnemcc,In case no one ever told you... in case you were made to feel the opposite... in case YOU don't tell YOU... in ca..… https://t.co/EpKifi7I1i +08/14/2017,Actors,@IAMannalynnemcc,"I'm so proud of you own,your work as psychology can help more victims& survivors 😘i love you @Noraoeur7 😘 thanks… https://t.co/3gbabmw2xg" +08/14/2017,Actors,@IAMannalynnemcc,RT @MamSomaly: Day out with my sweetheart @IAMannalynnemcc how great am I to be with a very sweet woman with a big heart ❤️ https://t.co/PH… +08/13/2017,Actors,@IAMannalynnemcc,"You make my heart warm, my darling daughter! So thankful for your love! ❤️❤️ https://t.co/spCLSQz1X8" +06/27/2018,Actors,@EmmaWatson,"RT @equalitynow: 'We are very pleased that Noura has won the court appeal against her death sentence...However, sentencing her to five year…" +06/17/2018,Actors,@EmmaWatson,Yesterday was #DayoftheAfricanChild and I celebrated my friend Alice in Zambia & her work to keep girls in school &… https://t.co/wU7c1O9fXF +06/11/2018,Actors,@EmmaWatson,"In awe of everybody at #Processions2018, some amazing artwork too! https://t.co/xlBMfiJEiJ" +06/09/2018,Actors,@EmmaWatson,"Happy Pride, everyone! #Pride" +05/24/2018,Actors,@EmmaWatson,"A vote for the freedom to choose, a vote for women's rights, a vote for women's control over their bodies, a vote f… https://t.co/zX0lmwEvCc" +05/23/2018,Actors,@EmmaWatson,Happy World Turtle Day! https://t.co/SclhKMDDOX +05/22/2018,Actors,@EmmaWatson,"RT @equalitynow: ""I’ve never spoken to her. I don’t know who she is. But she is my sister… and I can’t let her die for defending herself ag…" +05/17/2018,Actors,@EmmaWatson,"This #IDAHOT I stand in solidarity with LGBTQI activists who are fighting to have the same rights, freedoms, protec… https://t.co/pwUp1uASmu" +05/12/2018,Actors,@EmmaWatson,"New UK research from @womensaid found that one third of young women have experienced abuse in a relationship, & tha… https://t.co/Iw9deHtVgk" +05/03/2018,Actors,@EmmaWatson,"RT @UN_Women: What was the last story you read regarding women and girls' rights? On #WorldPressFreedomDay, let's work to better represent…" +05/03/2018,Actors,@EmmaWatson,"All power to Deepika Singh Rajawat ✊🏻 + +https://t.co/sZzDVcIFNo" +05/02/2018,Actors,@EmmaWatson,"Women in positions of power are seriously under-represented, and BAME women even more so. Only 4% of MPs are BAME w… https://t.co/sUIjDBQptD" +05/02/2018,Actors,@EmmaWatson,#TimesUp https://t.co/4dKpSrMnFV +05/02/2018,Actors,@EmmaWatson,RT @ava: We join the call to #MuteRKelly and insist on the safety + dignity of all women. We demand investigations into R. Kelly’s abuse al… +05/02/2018,Actors,@EmmaWatson,"Huge respect, admiration and love for you @AshleyJudd https://t.co/6Wfk4jQPsy" +04/28/2018,Actors,@EmmaWatson,Amazing to see the @goldmanprize dominated by women for the first time. Sending congratulations to the winners & re… https://t.co/YwzzukGVps +04/26/2018,Actors,@EmmaWatson,Love you so much Noma ❤️ https://t.co/VFyBQMJ6BG +04/24/2018,Actors,@EmmaWatson,"Remembering the 1,134 people killed at #RanaPlaza five years ago, and all the garment workers & trade unionists sti… https://t.co/83fFf2fsCQ" +04/22/2018,Actors,@EmmaWatson,"Love this girl 🇬🇧 @letitiawright +https://t.co/iuzQbWRKRN" +04/21/2018,Actors,@EmmaWatson,"RT @meghamohan: Made to clean homes in just their underwear. Raped by landlords. Silenced. + +And then something changed. + +I spoke with some…" +04/20/2018,Actors,@EmmaWatson,Huge congrats to Eve Ensler on completing the amazing run of In The Body of the World in NYC; I loved it. so beauti… https://t.co/BvBL6kTtLE +04/10/2018,Actors,@EmmaWatson,My heart is so full #TimesUp https://t.co/rPOhp6d3oC +04/04/2018,Actors,@EmmaWatson,"RT @vogueaustralia: A passionate reader who leaves books in public spaces and has her own online book club, Our Shared Shelf, @EmmaWatson c…" +03/27/2018,Actors,@EmmaWatson,So proud of the women representing #TimesUp UK at last week's @empiremagazine awards. Huge thanks to… https://t.co/CtWiUrnaeO +03/24/2018,Actors,@EmmaWatson,I'm proud to support the amazing students behind #MarchForOurLives. Today they are marching on Washington DC to dem… https://t.co/yBFD0d4nZn +03/08/2018,Actors,@EmmaWatson,Calling UK sisters! Get your walking shoes on for Million Women Rise on Saturday 10th March in London. Full details… https://t.co/UX9LMYVeha +03/08/2018,Actors,@EmmaWatson,Listen to my brilliant friends @MaraiLarasi from @Imkaan and @RWitherspoon & @MonicaRamirezDC speaking at the UN fo… https://t.co/YqUFlxjrNB +03/05/2018,Actors,@EmmaWatson,Fake tattoo proofreading position available. Experience with apostrophes a must. +02/27/2018,Actors,@EmmaWatson,Yessss Australian Vogue!!!!!!! https://t.co/JN7y5SrHxv +02/20/2018,Actors,@EmmaWatson,"Thank you @peterlindbergh I adore, adore, adore you. @vogueaustralia cover shoot styled by Hannes Hetta, hair by Od… https://t.co/ELbaL4H0oH" +02/20/2018,Actors,@EmmaWatson,"RT @SistersUncut: Refuge budgets have been slashed by almost a quarter, resulting in 1,000 women and children being turned away by refuges…" +02/19/2018,Actors,@EmmaWatson,I helped guest edit @vogueaustralia’s March issue dedicated to conversations about sustainability and “Designing th… https://t.co/7Te1mjA3Dz +02/19/2018,Actors,@EmmaWatson,RT @MaraiLarasi: Gr8 to hear @BAFTA Chair acknowledging the level of abuse that has taken place in the industry and some of the steps being… +02/18/2018,Actors,@EmmaWatson,"We are bringing it home to the UK! @timesupnow + +Link here and in my bio to donate to the UK Justice and Equality fu… https://t.co/wOxsFwwqgt" +02/15/2018,Actors,@EmmaWatson,RT @BFI: Watch @EmmaWatson announce our partnership with @BAFTA and key industry organisations to eradicate bullying & harassment in the sc… +02/06/2018,Actors,@EmmaWatson,"#100years ago in the UK, certain women became eligible to vote, & women were given the right to stand for Parliamen… https://t.co/0XD37G2guC" +02/01/2018,Actors,@EmmaWatson,Get ready @BAFTA #TimesUp https://t.co/GDLNSl9UH5 +01/29/2018,Actors,@EmmaWatson,RT @nowthisnews: Janelle Monáe's incredible #TimesUp speech was undoubtedly one of the best parts of the #Grammys https://t.co/gmYk3Qtklq +01/22/2018,Actors,@EmmaWatson,Auctioning our Golden Globes dresses to raise funds for TIME'S UP Legal Defense Fund. You can bid on my RVDK dress… https://t.co/xTsjVChAwI +01/15/2018,Actors,@EmmaWatson,@MaraiLarasi You were the best date on the most meaningful red carpet I have ever walked. Thank you for being so da… https://t.co/hIagR0mmub +01/10/2018,Actors,@EmmaWatson,RT @jes_chastain: Please go see Michelle's performance in All The Money in The World. She's a brilliant Oscar nominated Golden Globe winnin… +01/08/2018,Actors,@EmmaWatson,And I’m beaming. Love these ladies! #TIMESUP https://t.co/yiXlNC09r4 +01/08/2018,Actors,@EmmaWatson,So moving to be on the red carpet yesterday. Thank you to everyone who wore black in solidarity with us. ✊… https://t.co/uiBBsk705X +01/08/2018,Actors,@EmmaWatson,"""There is a wall of silence against women and violence, and every time a woman speaks out it breaks a crack in that wall."" - @MaraiLarasi" +01/07/2018,Actors,@EmmaWatson,"Globally, violence against women and girls affects 1 in 3 women in their lifetime. #TimesUp https://t.co/55MnFKwKo3" +01/07/2018,Actors,@EmmaWatson,Excited to be at the Golden Globes with you tonight Marai! @MaraiLarasi @Imkaan @TIMESUPNOW +01/02/2018,Actors,@EmmaWatson,"I stand with women across every industry to say #TIMESUP on abuse, harassment, marginalization and underrepresentat… https://t.co/d5Qyl8uakC" +12/28/2017,Actors,@EmmaWatson,The girls in this picture with me are the Columbus Sisters. Eleanor in particular has just started a production com… https://t.co/OU2yT4QRMM +12/26/2017,Actors,@EmmaWatson,Millennials go have the crap scared out of you and see #Belleville at @DonmarWarehouse. Performances are amazing. You wont regret it. +12/24/2017,Actors,@EmmaWatson,"This Christmas 30,000 children in Haiti are living in orphanages, exposed to exploitation & abuse. @JK_Rowling's ch… https://t.co/JNVPZ3AWRs" +12/22/2017,Actors,@EmmaWatson,A moving reminder that sexual harassment happens in all industries - not just my own: https://t.co/TSEodkTfDf To t… https://t.co/DDnEUg6mMb +12/07/2017,Actors,@EmmaWatson,Thank you to @TIME's Person of the Year- the SILENCE BREAKERS for your voices in this time of change. https://t.co/jUwITSW1qo +11/28/2017,Actors,@EmmaWatson,I first met Alice in Zambia in 2012 & we celebrated #IWD2017 together. She’s an amazing activist who was once at ri… https://t.co/TMjvG6TkG4 +11/21/2017,Actors,@EmmaWatson,One day left to bid on a pair of my signed boots to support @smallstepsdocs. Help children in poverty gain access t… https://t.co/slDFC6vrmk +11/20/2017,Actors,@EmmaWatson,https://t.co/qNf8SPZkGY #MexicoRises https://t.co/eSuhbl0ghj +11/16/2017,Actors,@EmmaWatson,Ps - Oh and the film is amazing! The whole cast puts on an incredible performance and Steve directs with all the he… https://t.co/sdgrDNvNdt +11/16/2017,Actors,@EmmaWatson,"I love seeing inspiring books turned into films. @WonderTheMovie, directed by my friend Steve Chbosky, is out this… https://t.co/S5LktMMYfg" +10/16/2017,Actors,@EmmaWatson,"RT @fawcettsociety: This #BlackHistoryMonth we're remembering British women who made history. Among them, Claudia Jones, Olive Morris & Mar…" +10/10/2017,Actors,@EmmaWatson,"In this instance it was women affected but I also stand with all the men, indeed any person, who has suffered sexual harassment." +10/10/2017,Actors,@EmmaWatson,"I stand with all the women who have been sexually harassed, and am awestruck by their bravery. This mistreatment of women has to stop." +10/04/2017,Actors,@EmmaWatson,Help those in Mexico devastated by the earthquakes #MexicoRises https://t.co/zRUYG4W0X7 & https://t.co/6yLsnzoDRb +10/02/2017,Actors,@EmmaWatson,"RT @SadiqKhan: As a proud feminist, I'm delighted that we will bring the first ever statue of a woman to Parliament Square. https://t.co/jA…" +10/02/2017,Actors,@EmmaWatson,@SadiqKhan About time too! : ) +09/26/2017,Actors,@EmmaWatson,This is AWESOME Anoosha! @foxville_art https://t.co/DcD9D2s03t +09/23/2017,Actors,@EmmaWatson,Very excited to hear @melindagates announce $20M for underfunded women's movements. Congratulations @mamacash & others x #HowEqualityHappens +09/21/2017,Actors,@EmmaWatson,A timely reminder of why we must invest in the power of women's movements: https://t.co/PW7Z14MVJj #Goalkeepers17 #HowEqualityHappens +09/21/2017,Actors,@EmmaWatson,Modern slavery affects 40m people: 71% are women and girls. New report launched at #UNGA today:… https://t.co/qyPy2w1Xl6 +09/11/2017,Actors,@EmmaWatson,RT @rgay: Hunger is the next selection for Emma Watson's Our Shared Shelf book club: https://t.co/jqt09NlpNX +08/31/2017,Actors,@EmmaWatson,RT @shondarhimes: People. One million young immigrant #DREAMers will be at risk of deportation if #DACA is ended. One MILLION. We must #Def… +08/14/2017,Actors,@EmmaWatson,"THANK YOU SO MUCH to everybody who voted for me and @beourguest! Such lovely news to wake up to! Means a lot to me, thank you @TeenChoiceFOX" +08/01/2017,Actors,@EmmaWatson,Good luck at the @UEFAWomensEURO semi-final on Thursday #Lionesses! Will be cheering you on! ⚽️ +07/19/2017,Actors,@EmmaWatson,"Reward for information leading to return of rings lost Sunday 16th July at Mandarin Oriental spa, London: https://t.co/w9EHqZ8bmR xx" +07/14/2017,Actors,@EmmaWatson,I interviewed @MargaretAtwood for @EW and my book club https://t.co/jzDJYb7bi0. Such an honour! Full interview here… https://t.co/YIZpInItpS +07/11/2017,Actors,@EmmaWatson,Welcome @Malala! It is so exciting to have you on Twitter ❤ +06/21/2017,Actors,@EmmaWatson,I'm hiding copies of The Handmaid's Tale in Paris! Je cache des copies de La Servante Ecarlate dans tout Paris!… https://t.co/WSFbiVicG3 +05/15/2017,Actors,@EmmaWatson,One week left to register for your right to vote in UK election: https://t.co/3FjKcTfIiH #UseYourVoice https://t.co/jP8lWAkARq +05/08/2017,Actors,@EmmaWatson,Thank you @MTV for a wonderful evening and thank you to everyone who voted for me! ❤️🍿 #MTVAwards @beourguest +04/27/2017,Actors,@EmmaWatson,"💚 + +https://t.co/YQqrjeAfIr" +04/24/2017,Actors,@EmmaWatson,"I'm remembering #RanaPlaza today, four years on... Please consider #whomademyclothes + +https://t.co/KtIgR86qEc" +04/24/2017,Actors,@EmmaWatson,RT @Twitter: Join us Monday for a fireside chat with @jack and the cast of @WeAreTheCircle LIVE from Twitter HQ! #TheCircle https://t.co/gZ… +04/22/2017,Actors,@EmmaWatson,"So cool, @iamjonsi has created a song for @WeAreTheCircle ⭕️🎶 + +https://t.co/NrsOdeVikj" +04/21/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: When @EmmaWatson enters #TheCircle, all secrets will be undone. In theaters in ONE WEEK. Get tickets now: https://t.co/…" +04/13/2017,Actors,@EmmaWatson,RT @WeAreTheCircle: The perfect company. The perfect job. The perfect lie. #TheCircle - In theaters April 28. https://t.co/lfw0BZhmRz +04/13/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: Once you’re in, there’s no turning back. #TheCircle - Only in theaters April 28. https://t.co/YyJk7VhUC9" +04/05/2017,Actors,@EmmaWatson,"On average, women in the US are paid 20% less than men – and black & Hispanic women are paid even less. I support e… https://t.co/Y5aY7l3Cl0" +04/04/2017,Actors,@EmmaWatson,⭕️ @WeAreTheCircle xx https://t.co/cG6CF8NzVv +03/29/2017,Actors,@EmmaWatson,"I interviewed the brilliant Eve Ensler for @ELLEUK and #OurSharedShelf, here's part one! https://t.co/P59dpN3m6B" +03/29/2017,Actors,@EmmaWatson,https://t.co/8jdQ3axXul 🌹❤️ +03/22/2017,Actors,@EmmaWatson,Thank you to everyone who saw our film Beauty and the Beast! I saw so many lovely photos of families at the cinema… https://t.co/CiHSE9rB6R +03/17/2017,Actors,@EmmaWatson,"#BeautyAndTheBeast opens today! I hope you have as much fun watching it as I did making it. Love, Emma 🌹 @beourguest https://t.co/CoNaybGFqS" +03/16/2017,Actors,@EmmaWatson,"😻😻😻😻😻😻 + +@bestfriends @BuzzFeed @beourguest #BeautyAndTheBeast + +https://t.co/SNs1bIGuI1" +03/14/2017,Actors,@EmmaWatson,Not long to go until the big day! 🌹@beourguest #BeautyAndTheBeast https://t.co/U3RFJlZAzQ +03/11/2017,Actors,@EmmaWatson,Follow https://t.co/9OPIAyympV for a peek behind-the-scenes of our @beourguest press tour. Plus surprise kittens! (… https://t.co/SttvmXAdij +03/09/2017,Actors,@EmmaWatson,https://t.co/KROEfmGdE3 #IWD2017 https://t.co/rtsJwKzh9o +03/09/2017,Actors,@EmmaWatson,RT @MCeliaCR: George V!! #HalfTheSky is right next to you! ❤ #IWDoursharedshelf #ibelieveinbookfairies @the_bookfairies @ViragoBooks https:… +03/09/2017,Actors,@EmmaWatson,Dropping off books at Eleanor Roosevelt's monument✊📚#IWD #IWDOurSharedShelf #ADayWithoutAWoman… https://t.co/OTEcAcWghw +03/09/2017,Actors,@EmmaWatson,Dropping off books at Gertrude Stein statue in NYC✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies… https://t.co/hgWb3sK3mo +03/09/2017,Actors,@EmmaWatson,Dropping off books at the Joan of Arc memorial in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman… https://t.co/kgvvoGGgb1 +03/09/2017,Actors,@EmmaWatson,Dropping off books at @bluestockings bookstore in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies https://t.co/6Se2KbIZEQ +03/09/2017,Actors,@EmmaWatson,Dropping off books at Harriet Tubman memorial in NYC ✊📚 #IWD #IWDOurSharedShelf #ADayWithoutAWoman @the_bookfairies… https://t.co/FjVh9SLIWI +03/08/2017,Actors,@EmmaWatson,#InternationalWomensDay #IWD https://t.co/GCroQSkQwH +03/08/2017,Actors,@EmmaWatson,Today I'm a red-striking ninja book-fairy out to spread some wise women's words @the_bookfairies #IWDOurSharedShelf… https://t.co/xFgd3KwBiI +03/08/2017,Actors,@EmmaWatson,"From midnight NYC time, book fairies around the WORLD will start hiding feminist books to mark #IWD #IWDoursharedshelf @the_bookfairies 📚" +03/07/2017,Actors,@EmmaWatson,RT @IntoTheGloss: Today's Top Shelf: @EmmaWatson https://t.co/wWCRwODVqJ https://t.co/skJ7XI0CWy +03/07/2017,Actors,@EmmaWatson,RT @Coveteur: Go inside @EmmaWatson's closet: https://t.co/8e2qPR3lgj https://t.co/GUwTQVGhaa +03/07/2017,Actors,@EmmaWatson,This is the part of my 2014 interview with Tavi where we talked about Beyoncé. My words are in bold. https://t.co/Y8vumOeyDT +03/05/2017,Actors,@EmmaWatson,Via BBC News - Bath Film Festival's F-Rating added to online film site IMDb https://t.co/D87ftiHxLj +03/03/2017,Actors,@EmmaWatson,RT @TheEllenShow: I sent @EmmaWatson to interview a nanny with hidden cameras. P.S. She doesn’t have kids. https://t.co/g2zYEj0q2b +03/01/2017,Actors,@EmmaWatson,RT @VanityFair: Go behind the scenes of Tim Walker's Vanity Fair cover shoot with @EmmaWatson. https://t.co/d2TnNXYVTo +02/28/2017,Actors,@EmmaWatson,"Thank you Graydon Carter, Tim Walker and @DerekBlasberg for my @VanityFair cover🌹https://t.co/0cwQv7yU42 https://t.co/n72imoeDjy" +02/27/2017,Actors,@EmmaWatson,Devastated to hear about Bill. A privilege to have worked with him. What a huge-hearted man. All my love to his family. +02/23/2017,Actors,@EmmaWatson,Follow the link for a chance to win tickets to a special screening of #BeautyandtheBeast in London tonight! https://t.co/sJvaBi5b1d x +02/22/2017,Actors,@EmmaWatson,https://t.co/p2eKUZWCSw ❤ +02/21/2017,Actors,@EmmaWatson,What a privilege to have worked with the genius that is Alan Menken 🎶🎵🎶 @beourguest #aladdin #pocahontas… https://t.co/r4Lf0fF5i7 +02/19/2017,Actors,@EmmaWatson,"Day one of the @beourguest press tour with Team Watson! I’ve started a new Instagram called ""the_press_tour"" so you… https://t.co/WVBYiM0I1h" +02/18/2017,Actors,@EmmaWatson,"RT @gatesfoundation: One of the biggest and oldest challenges is making sure people understand the lifesaving, poverty-ending power of cont…" +02/17/2017,Actors,@EmmaWatson,".@gatesfoundation: ""Poverty is sexist"" https://t.co/iTsGRbSiA6" +02/17/2017,Actors,@EmmaWatson,".@gatesfoundation: ""Contraceptives are one of the greatest antipoverty innovations in history"" https://t.co/CkqOcXL5Z3" +02/17/2017,Actors,@EmmaWatson,Reading the @gatesfoundation annual letter has lifted my spirits! https://t.co/Od7G6RvjGe +02/16/2017,Actors,@EmmaWatson,Thank you @EW! #BeOurGuest @beourguest https://t.co/hBSjtZqjFp +02/14/2017,Actors,@EmmaWatson,RT @beourguest: Like this tweet to get a special #BeOurValentine message from a cast member of #BeautyAndTheBeast! ❤️🌹❤️ #BeOurGuest on Mar… +02/12/2017,Actors,@EmmaWatson,"RT @WeAreTheCircle: Watch the new trailer for #TheCircle, the provocative thriller based on the acclaimed novel starring @EmmaWatson and @T…" +01/31/2017,Actors,@EmmaWatson,"RT @beourguest: The trailer for Beauty and the Beast is here 🌹 On 3.17, rediscover a tale as old as time.  Get your tickets now at https://…" +01/30/2017,Actors,@EmmaWatson,RT @c_poesy: ... https://t.co/pqyxVSb5GW +01/26/2017,Actors,@EmmaWatson,🌹 @beourguest 🌹 https://t.co/jbWYbXJQrD +01/23/2017,Actors,@EmmaWatson,https://t.co/5Dp3fUeQEp +01/22/2017,Actors,@EmmaWatson,#WomensMarch https://t.co/HkSrOqFTmk +01/22/2017,Actors,@EmmaWatson,#WomensMarch https://t.co/dYZPxJ13FI +01/22/2017,Actors,@EmmaWatson,"RT @PPIAction: “It's not our differences that divide us. It is our inability to recognize, accept,& celebrate those differences.” Audre Lor…" +01/22/2017,Actors,@EmmaWatson,RT @Almaharel: These women never met till today and practiced this song online. Show them some love. #Icantkeepquiet #WomensMarch #WomensMa… +01/22/2017,Actors,@EmmaWatson,RT @HuffingtonPost: Watch 6-year-old Sophie Cruz give one of the best speeches of the #WomensMarch https://t.co/DD044cKQus https://t.co/wVu… +01/21/2017,Actors,@EmmaWatson,https://t.co/kDHkIWMzQz +01/21/2017,Actors,@EmmaWatson,RT @aliciakeys: No matter where you were today... We sent a powerful message! https://t.co/vj0j1Xvxvy #WomensMarch #WhyIMarch #WomensRights… +01/21/2017,Actors,@EmmaWatson,RT @astroehlein: Women's rights are human rights - #WomensMarch https://t.co/RMqmtvdz7y +01/21/2017,Actors,@EmmaWatson,RT @tatianamaslany: ❤️💛💚💙💜✊🏿✊🏾✊🏽✊🏼✊🏻 sending love solidarity strength to everyone across the world marching for human rights!!! #WomensMarc… +01/21/2017,Actors,@EmmaWatson,#IStandWithPP Why the fight for reproductive rights goes on: https://t.co/VF2JCmDKwq +01/13/2017,Actors,@EmmaWatson,RT @RollingStone: Common and the National will headline a Planned Parenthood benefit concert before the inauguration ceremony https://t.co/… +01/13/2017,Actors,@EmmaWatson,The wonderful @Lin_Manuel is fundraising for @PPact - a great way to #StandWithPP & win the chance to see Hamilton https://t.co/9JYiVBlHyO +01/09/2017,Actors,@EmmaWatson,"Beauty and the Beast is on the cover of the new issue of @totalfilm, out later this week! 🌹@beourguest https://t.co/TLzATBC2og" +01/09/2017,Actors,@EmmaWatson,"RT @beourguest: On March 17, experience an adventure in the great wide somewhere. #BeOurGuest https://t.co/NUAUtpMfsH" +01/08/2017,Actors,@EmmaWatson,New poster for Beauty and the Beast! @beourguest 🌹 https://t.co/iE6YzVCKus +01/08/2017,Actors,@EmmaWatson,RT @THR: Watch the First Trailer for Hulu's 'Handmaid's Tale’ https://t.co/hl6kKnrLX3 https://t.co/AdC5FYRHFQ +01/03/2017,Actors,@EmmaWatson,Bangladesh garment factories sack hundreds after pay protests https://t.co/wGXSwlbA9n +12/27/2016,Actors,@EmmaWatson,"RT @stephenfry: She was the brightest, funniest, bravest, kindest, cleverest and sweetest person I ever knew. A crushing blow to lose @carr…" +12/27/2016,Actors,@EmmaWatson,RT @GlblCtzn: Wow! @adidas is aiming to produce 1 million pairs of the sneakers from more than 11 million plastic bottles. https://t.co/CH2… +12/22/2016,Actors,@EmmaWatson,RT @ktparkerphoto: Advance copies of the #strongisthenewpretty book came in today. ❤️❤️❤️ so excited! @WorkmanPub https://t.co/8jAWOuTceB +12/19/2016,Actors,@EmmaWatson,RT @TIME: Wonder Woman breaks through https://t.co/A8S6IyuerL +12/16/2016,Actors,@EmmaWatson,RT @HouseofCommons: MPs vote 135 to 2 to approve Preventing & Combating Violence Against Women & Domestic Violence. The Bill progresses to… +12/15/2016,Actors,@EmmaWatson,I have signed the @Independent's open letter and I urge all UK MPs to vote to ratify the Istanbul Convention tomorr… https://t.co/Q8L1luhZck +12/13/2016,Actors,@EmmaWatson,Tweet your MP : https://t.co/5aeIfgHTZy +12/13/2016,Actors,@EmmaWatson,How to find your MP : https://t.co/TTSxApXok1 +12/13/2016,Actors,@EmmaWatson,RT @SWCwomen: 3 Days to go! #IstanbulConvention #changeherstory #16DaysOfActivism #SWC16 @ICChangeUK @AngelaCrawleyMP @EmmaWatson https://t… +12/12/2016,Actors,@EmmaWatson,RT @nathansparkling: Listen to @eilidhwhiteford's interview with @bonisones2 for Women's Parliamentary Radio on #IstanbulConvention https:… +12/12/2016,Actors,@EmmaWatson,RT @ICChangeUK: On Friday we're fighting to #ChangeHerstory. The #IstanbulConvention is a vital tool in ending violence against women. It's… +12/12/2016,Actors,@EmmaWatson,RT @fawcettsociety: Make sure your MP attends the Second Reading of the #IstanbulConvention Bill on 16th Dec to #changeherstory. https://t.… +12/12/2016,Actors,@EmmaWatson,"RT @ICChangeUK: Here's exactly why the #IstanbulConvention is so important, and why we need to ratify it now: #ChangeHerstory https://t.co/…" +12/12/2016,Actors,@EmmaWatson,RT @ICChangeUK: The #IstanbulConvention aims to ensure women live lives free from violence & free from the fear of violence. Time to ratify… +12/06/2016,Actors,@EmmaWatson,"RT @WeAreTheCircle: Knowing is good. Knowing everything is better. See #TheCircle starring @TomHanks, @EmmaWatson, @JohnBoyega and @KarenGi…" +12/05/2016,Actors,@EmmaWatson,"RT @ChrisEvans: Wow. I will never look at this film, Bertolucci or Brando the same way again. This is beyond disgusting. I feel rage https:…" +12/05/2016,Actors,@EmmaWatson,RT @Pharrell: Solid proof that people coming together can change things for the better. https://t.co/5fLEGFYpmR +11/26/2016,Actors,@EmmaWatson,RT @Elif_Safak: Günün en güzel fotoğrafı... Turkey's women fight for their rights #ViolenceAgainstWomen #herHALdedireniyoruz (via @demishev… +11/25/2016,Actors,@EmmaWatson,RT @ForestWhitaker: #ViolenceAgainstWomen violates the fundamental human rights of millions of girls & women across the world. We should al… +11/25/2016,Actors,@EmmaWatson,"RT @UN_Women: For Int'ntl Day to End Violence against Women, we #orangetheworld and say NO to violence from Australia to Belgium and from C…" +11/25/2016,Actors,@EmmaWatson,RT @edgarramirez25: Today 11/25 I say NO to violence against women and girls. Do you? #InternationalDayForTheEliminationOfViolenceAgainstWo… +11/25/2016,Actors,@EmmaWatson,"RT @JustinTrudeau: Today, I encourage all dads to take #20MinutesofAction4Change & talk to your sons about consent, boundaries & respect fo…" +11/25/2016,Actors,@EmmaWatson,"RT @kellyslater: Today is #WhiteRibbonDay, a day to educate and raise awareness about violence against women. The… https://t.co/D9OZkbCdi8" +11/25/2016,Actors,@EmmaWatson,"RT @patagonia: 100% today, 1% every day. Today, we’re donating 100% of sales to grassroots environmental groups. #LoveOurPlanet: https://t.…" +11/21/2016,Actors,@EmmaWatson,"RT @lennyletter: Lennys, #WomenOfTheHour is finally back! Make sure to check out the first episode, ""Trapped"" and subscribe: https://t.co/X…" +11/21/2016,Actors,@EmmaWatson,Have you seen @fantasticbeasts ? If you have did you love it as much as I did? 🐯🐵🐍🐛🐉 +11/21/2016,Actors,@EmmaWatson,RT @BritishVogue: Who said you can only wear that knockout party dress once? https://t.co/65drbSPmsA https://t.co/Dm0BOxhFAd +11/17/2016,Actors,@EmmaWatson,MUST WATCH #girlpower https://t.co/URlJKNqqWh +11/16/2016,Actors,@EmmaWatson,@VogueRunway @voguemagazine Thank you ! X +11/15/2016,Actors,@EmmaWatson,"RT @lumos: ""This is a solvable problem."" @jk_rowling calls on you to help spread the word about the 8 million children hidden in orphanages…" +11/15/2016,Actors,@EmmaWatson,"RT @jk_rowling: Rage is to righteousness as certainty is to wisdom. Constantly mistaken for each other, they're hardly ever in the same roo…" +11/14/2016,Actors,@EmmaWatson,"RT @beourguest: Watch the brand new trailer for #BeautyAndTheBeast, starring @EmmaWatson & @ThatDanStevens 🌹 #BeOurGuest 3.17.17 https://t.…" +11/14/2016,Actors,@EmmaWatson,RT @TheRealLukevans: A tale as old as time... World premiere of the #BeautyAndTheBeast trailer coming tomorrow on @GMA #BeOurGuest https:/… +11/11/2016,Actors,@EmmaWatson,RT @AVAETC: Some beauty and connection and compassion and hope for you on this Friday. Courtesy of @JohnLegend. xo https://t.co/Xz93Uz7YMc +11/10/2016,Actors,@EmmaWatson,So happy to show all of you the new teaser poster for Beauty and the Beast! I hope you like it. Love Emma x… https://t.co/bowDymL3eD +11/09/2016,Actors,@EmmaWatson,"RT @BooksSubway: A beautiful post, thanks to @Waterstones Leadenhall Market for sharing this quote from Maya Angelou. #oursharedshelf @ours…" +11/09/2016,Actors,@EmmaWatson,.@DrMayaAngelou https://t.co/H4yVuVDTKL +11/09/2016,Actors,@EmmaWatson,.@BooksSubway @BooksUndergrnd @DrMayaAngelou #Mom&Me&Mom #OurSharedShelf https://t.co/sSXZBVFjLz +11/09/2016,Actors,@EmmaWatson,Today I am going to deliver Maya Angelou books to the New York subway. Then I am going to fight even harder for all the things I believe in. +11/06/2016,Actors,@EmmaWatson,"RT @BBCOne: Gangster. Penguins. 🐧 +(You'll want to turn the sound on...) +#PlanetEarth2. Starts tonight. 8pm. @BBCOne. https://t.co/xP1HrXa0u2" +11/06/2016,Actors,@EmmaWatson,I'm home and really geeking out over this - #PlanetEarth2 starts TONIGHT at 8pm on @BBCOne & 9pm on BBC Earth Nordics. Can't wait! +11/02/2016,Actors,@EmmaWatson,RT @EW: Be our guest for an exclusive first look at @Disney’s magical and romantic live-action #BeautyAndTheBeast! https://t.co/jniafxmEpV… +11/01/2016,Actors,@EmmaWatson,"RT @BooksUndergrnd: Copies of the #OurSharedShelf read Mom&Me&Mom travel the tube today, with a special something inside from @EmWatson htt…" +10/31/2016,Actors,@EmmaWatson,If you’re in London keep your eyes peeled for a surprise on the tube tomorrow… #OurSharedShelf #Mom&Me&Mom @BooksUndergrnd +10/28/2016,Actors,@EmmaWatson,RT @MalalaFund: Aziz Ansari is inviting YOU to the Master of None Season 2 set! Support Malala Fund & girls’ education by entering: https:/… +10/25/2016,Actors,@EmmaWatson,https://t.co/gNs07Q9AQf +10/17/2016,Actors,@EmmaWatson,This makes me so proud to have been part of @TheWorldsLesson. Take a look and take part if you haven't already! https://t.co/j7z4aIJnZI +10/16/2016,Actors,@EmmaWatson,RT @UN_Women: Chief Kachindamoto has annulled over 330 child marriages in Malawi since 2013. Learn about her work: https://t.co/3fPu3jYgJv… +10/04/2016,Actors,@EmmaWatson,Was inspiring & so fun to meet with my @OneYoungWorld Ottawa gender equality scholars. Proud of them all! #goal5… https://t.co/WfPT9Mdo6t +09/30/2016,Actors,@EmmaWatson,Amazing night at the @OneYoungWorld Ottawa opening ceremony yesterday! @justinpjtrudeau @KofiAnnan @Yunus_Centre https://t.co/jmwQunE64k +09/29/2016,Actors,@EmmaWatson,"Ready for anything after @SheFighter training with @lino1984, one of my amazing @OYWOttawa scholars. https://t.co/bfJOpB1rLC" +09/29/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: ""I am here to network, to hear other people ideas, their success stories and get inspired.""- Abhinav Khanal, Nepal #OYWM…" +09/29/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: For the first time ever, the refugee flag is a part of the #OYW Flag Bearing Ceremony, tonight in the nations capital at…" +09/29/2016,Actors,@EmmaWatson,"RT @CanadianPM: PM Trudeau meets with @KofiAnnan, @EmWatson and Mary Robinson on the margins of the @OneYoungWorld Summit. #OYW https://t.c…" +09/29/2016,Actors,@EmmaWatson,"RT @ftlive: This morning, @JustineGreening told #FTWomen: It's up to our generation to make gender equality happen. https://t.co/SmwcqIPYnt" +09/28/2016,Actors,@EmmaWatson,"RT @OneYoungWorld: BIG news: Goodwill Ambassador for @UN_Women & actor, Emma Watson, comes to @OYWOttawa to meet young activists fighting f…" +09/28/2016,Actors,@EmmaWatson,RT @JustinTrudeau: .@EmWatson is a champion for gender equality worldwide. It's a pleasure welcoming you to Ottawa ahead of the @OneYoungWo… +07/01/2018,Actors,@LeoDiCaprio,"We produced the documentary, @virungamovie, a few years ago to raise awareness about the need to protect the last m… https://t.co/hWmpU9CbI4" +06/30/2018,Actors,@LeoDiCaprio,"RT @LionRecovery: We have lost half of Africa's #lions in just 25 years. Along with our many grantees and partners, we are committed to res…" +06/29/2018,Actors,@LeoDiCaprio,Congrats to @KingoEnergy. Proud to invest in and be an advisor for Kingo as they work to eradicate energy poverty. https://t.co/wonCZB4j6K +06/28/2018,Actors,@LeoDiCaprio,https://t.co/DvkSdDvers +06/28/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: #Nature4Climate is a new campaign to help raise the profile of #nature as a critical response to #ClimateChange. Help give… +06/27/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: As Carbon Dioxide Levels Rise, Major Crops Are Losing Nutrients https://t.co/yXeTGN4LLP #climatechange https://t.co/uMxsUV…" +06/20/2018,Actors,@LeoDiCaprio,RT @ClimateReality: Sign our #ClimateMajority pledge and let the @WhiteHouse know that Americans support commonsense solutions to the clima… +06/17/2018,Actors,@LeoDiCaprio,RT @ozy: A 17-year-old activist is not uncommon these days. But @NalleliCobo has been challenging the oil industry since age 9 when toxic c… +06/16/2018,Actors,@LeoDiCaprio,RT @EURACTIV: EU strikes deal on 32% renewable energy target and palm oil ban after all-night session https://t.co/8vZfvIZdvm +06/15/2018,Actors,@LeoDiCaprio,RT @NewsHour: Antarctica is losing ice twice as fast as anyone thought https://t.co/5yd87lw9gp +06/15/2018,Actors,@LeoDiCaprio,Great news from @DiCaprioFdn and @TompkinsConserv’s rewilding project. Learn more. https://t.co/tSnZvWZLM0 +06/15/2018,Actors,@LeoDiCaprio,"RT @oceana: An estimated 8 million metric tons of plastic is dumped into the ocean each year. + +It's time to #BreakFreeFromPlastic. https://…" +06/14/2018,Actors,@LeoDiCaprio,A great read on the always inspiring @laurenepowell. cc: @EmCollective https://t.co/2HFLr653dq +06/12/2018,Actors,@LeoDiCaprio,.@DiCaprioFdn is partnering w/ Porky Hefer on this project that uses eco-friendly art to bring attention to the iss… https://t.co/8sE26gVwR9 +06/12/2018,Actors,@LeoDiCaprio,RT @RubiconGlobal: .@J_WintersLDF of the @dicapriofdn joins us on the Town Haul for a #WorldOceansDay celebration! Tune in here: https://t.… +06/11/2018,Actors,@LeoDiCaprio,RT @nytimesworld: Executives from the world’s biggest oil companies and money managers were summoned to the Vatican for a two-day conferenc… +06/11/2018,Actors,@LeoDiCaprio,RT @NatGeoMaps: This refuge may be the most contested land in the U.S. https://t.co/qweg7rbxvy https://t.co/Hjvmx7DYLe +06/08/2018,Actors,@LeoDiCaprio,"Learn about @OnlythismuchSA, a new campaign advancing the protection of the oceans around South Africa.… https://t.co/ymEcnU1zyA" +06/08/2018,Actors,@LeoDiCaprio,"RT @RobertKennedyJr: Defending CA’s coast & rivers against pollution, trash & oil spills is a tough job, especially with #Trump & #Pruitt w…" +06/08/2018,Actors,@LeoDiCaprio,"This #WorldOceansDay, @DiCaprioFdn partner @GlobalFishWatch is helping to bring transparency to global fishing, sup… https://t.co/nisro3yi7s" +06/07/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Half the world’s population depends on mountain ecosystems, yet climate change is threatening their continued existence. I…" +06/06/2018,Actors,@LeoDiCaprio,RT @NG_PristineSeas: Our new @NG_PristineSeas study with @sfgucsb @GlobalFishWatch @UBC @SeaAroundUs @UWAnews reveals that without large go… +06/06/2018,Actors,@LeoDiCaprio,RT @GlblCtzn: The Great Pacific Garbage Patch is about to get cleaned up – thanks to one ambitious 23-year-old! https://t.co/6XYjoX0r9q +06/06/2018,Actors,@LeoDiCaprio,"RT @antonioguterres: Our world is swamped by harmful plastic waste. By 2050, there could be more plastic in the ocean than fish. On World E…" +06/05/2018,Actors,@LeoDiCaprio,"RT @voxdotcom: If Democrats have any chance of winning back the majority in the House of Representatives, they’ll have to make huge gains i…" +06/03/2018,Actors,@LeoDiCaprio,RT @business: Carmakers in letter to Trump's White House: “Climate change is real” https://t.co/eRTp8UCcGb https://t.co/B5JA83dV3z +06/01/2018,Actors,@LeoDiCaprio,"RT @NRDC: While Trump indicated his plan to withdraw the U.S. from the #ParisAgreement a year ago, the number of U.S. cities, universities,…" +06/01/2018,Actors,@LeoDiCaprio,"RT @Everytown: ""Too many young men and women are being killed before they can walk across a stage for their high school diploma or go for t…" +05/31/2018,Actors,@LeoDiCaprio,"RT @terrytamminen: NASA head Jim Bridenstine, once doubtful, confirms he believes humans are the leading cause of climate change https://t.…" +05/30/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Great article on LDF's Shark Conservation Fund’s creation of a protected swim way/corridor between Cocos Island and the Ga… +05/30/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: New study shows the human race is just 0.01% of all life but has destroyed over 80% of wild mammals https://t.co/fM5mhOwFE… +05/27/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Congress attempts to squelch Judicial review of California’s most expensive water project: What are they afraid of? https:… +05/25/2018,Actors,@LeoDiCaprio,The Waorani people are showing the world what indigenous resistance on the frontlines of oil extraction looks like.… https://t.co/OzsJFxCTQJ +05/25/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: .@DriveH2, in collaboration with LDF & @CAHydrogen, just released a roadmap outlining key strategies to promote renewable…" +05/23/2018,Actors,@LeoDiCaprio,"Stand with the Waorani people, united in resistance, by signing their declaration that their rainforest is not for… https://t.co/1fSDjwzK9G" +05/23/2018,Actors,@LeoDiCaprio,Great initiative from @PLGreenChalleng. Learn more here: https://t.co/Ly6031A90k https://t.co/J2Xh9a1ZrE +05/22/2018,Actors,@LeoDiCaprio,"RT @UNBiodiversity: Happy #IntlBiodiversityDay! We celebrate nature's beauty & wonder, and all the people working hard to safeguard it. Muc…" +05/18/2018,Actors,@LeoDiCaprio,RT @FastCompany: Every new house built in California will soon have solar power https://t.co/tdfPfyVclV +05/17/2018,Actors,@LeoDiCaprio,RT @terrytamminen: Agricultural polluters are trying to hijack a clean water bill in California https://t.co/G87NRmTYhp +05/17/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: New study finds that rural communities can create more jobs with better wages by focusing wildfire-related resources on su… +05/16/2018,Actors,@LeoDiCaprio,"RT @NRDC: ""So much for draining the swamp, Mr. President. Pruitt is polluting the swamp."" John Slattery and Fisher Stevens explain why Trum…" +05/11/2018,Actors,@LeoDiCaprio,"RT @mongabay: The newly described orangutan species is critically endangered & yet is poised to lose 1/4 of its known habitat to dams, road…" +05/11/2018,Actors,@LeoDiCaprio,RT @nytimes: Hawaii is the first state to pass a bill banning the sale of sunscreen containing chemicals believed to harm coral reefs https… +05/09/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Good news for #renewables! https://t.co/EBMh4yCMPA via @business +05/08/2018,Actors,@LeoDiCaprio,Proud that Appian Way took part in producing this film. In theaters November 21. #RobinHoodMovie https://t.co/iT4rT25T36 +05/06/2018,Actors,@LeoDiCaprio,RT @mashable: Earth just soared past yet another climate change milestone https://t.co/DKxFoJaPx2 +05/06/2018,Actors,@LeoDiCaprio,"RT @EricHolthaus: April’s monthly average atmospheric carbon dioxide concentration breached 410 parts per million. + +The last time that happ…" +05/05/2018,Actors,@LeoDiCaprio,"RT @NRDC: Our whales, dolphins, seals, and manatees need continued protection under the #MMPA. Take action: https://t.co/l89UH9Cyb3 https:/…" +05/03/2018,Actors,@LeoDiCaprio,The inspirational #JaneGoodall at Monday’s philanthropy dinner following the Milken Institute Global Conference. https://t.co/m2yz2Var5G +05/02/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: #Climatechange will leave many Pacific Islands uninhabitable by mid-century, study says https://t.co/JnJHbcT3q0 via @insi…" +04/29/2018,Actors,@LeoDiCaprio,"RT @nytclimate: Until now, communities suing fossil fuel companies over the costs of dealing with climate change have been on the coasts. N…" +04/29/2018,Actors,@LeoDiCaprio,RT @NYTmag: This week's cover: Can Dirt Save the Earth? Agriculture could pull carbon out of the air and into the soil — but it would mean… +04/27/2018,Actors,@LeoDiCaprio,RT @nature_org: Biodiversity. Jobs. Air quality. Just a few of the many benefits that come from planting trees. https://t.co/bC4dQkt1nK #Ar… +04/27/2018,Actors,@LeoDiCaprio,"RT @yayitsrob: Three years ago, there were 2 billion corals living in the Great Barrier Reef. + +Half of them have now died. + +“It’s like cle…" +04/26/2018,Actors,@LeoDiCaprio,"Solar power is key to a future without fossil fuels, and @KingoEnergy's technology will help enable broad use of cl… https://t.co/R3ZkeRRFZL" +04/26/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Thank you @MikeBloomberg for pledging to help cover the U.S. commitment to the #ParisAgreement https://t.co/DdcZ5DIeTE +04/25/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: This #WorldPenguinDay, we can not forget that the most imminent threat facing these beloved creatures is #ClimateChange. The be…" +04/25/2018,Actors,@LeoDiCaprio,Excited to join my father in bringing these incredible musicians to @carnegiehall for one night only. Learn more: https://t.co/eqp7iAxtiM. +04/24/2018,Actors,@LeoDiCaprio,Proud to celebrate #EarthMonth with @NRDC and @eBay4CharityUS. Find out how you can make an impact:… https://t.co/4djWmidjGV +04/24/2018,Actors,@LeoDiCaprio,"RT @goldmanprize: Congratulations to the 2018 #GoldmanPrize winners: Makoma Lekalakala, Liz McDaid, Khanh Nguy Thi, Claire Nouvian, Manny C…" +04/23/2018,Actors,@LeoDiCaprio,"RT @NatGeo: Species are disappearing at an alarming rate, but with your help we can #SaveTogether #EarthDay https://t.co/MaqgnAslPF https:/…" +04/23/2018,Actors,@LeoDiCaprio,"RT @nytopinion: The fight against climate change is a nonpartisan issue across the globe except, of course, in the United States. #EarthDay…" +04/22/2018,Actors,@LeoDiCaprio,RT @SciForbes: Jane Goodall celebrates #EarthDay in today's Google Doodle: https://t.co/r4bMUYSe6k https://t.co/CDS3mIje48 +04/22/2018,Actors,@LeoDiCaprio,RT @ConservationOrg: .@Apple is celebrating #EarthDay in a big way. Recycle your Apple branded device in stores or online this month and th… +04/22/2018,Actors,@LeoDiCaprio,"On this #EarthDay, spend some time outside and reconnect with nature. Our spectacular planet gives us so much, let’… https://t.co/ABo0aJpBTZ" +04/22/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Hey Los Angeles, this #EarthDay step outside and go visit Chris Burden’s #UrbanLight @LACMA. All 309 lights are now LED bu…" +04/22/2018,Actors,@LeoDiCaprio,This administration continues to devalue the importance of science. There are many qualified scientists that could… https://t.co/8W2nKxfBFi +04/21/2018,Actors,@LeoDiCaprio,RT @frontlinepbs: Climate change is threatening the Marshall Islands. These kids could be the last generation to live out their lives on th… +04/20/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: The Kofan people of Sinangoe are defending their rainforest territory from illegal invasion. Learn about their story: http… +04/19/2018,Actors,@LeoDiCaprio,RT @GiffordsCourage: We are launching our biggest effort yet to ensure that the young people who are leading the charge against gun violenc… +04/19/2018,Actors,@LeoDiCaprio,RT @Earthjustice: Way to go New Zealand! The country will stop issuing permits for offshore oil and gas exploration in a move that is being… +04/16/2018,Actors,@LeoDiCaprio,RT @RnfrstAlliance: The #farmers we work with collectively manage 8.6 million acres of #agricultural land sustainably. Their efforts to fos… +04/13/2018,Actors,@LeoDiCaprio,RT @Everytown: Are you a student who wants to keep your school and community free from gun violence? Join #StudentsDemandAction: Text STUDE… +04/13/2018,Actors,@LeoDiCaprio,RT @UNEnvironment: “I am beginning to wonder how many more alarm bells must go off before the world rises to the challenge” of #climatechan… +04/13/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: NGOs denounce Tapajós basin intimidation, violence, Brazil inaction - @mongabay https://t.co/xoIeqibhIO @intlrivers 38 nat…" +04/11/2018,Actors,@LeoDiCaprio,"RT @EnvCalifornia: .@LACity is the #1 city for #solar! Thank you @MayorOfLA Eric Garcetti for joining us today to release #ShiningCities, &…" +04/11/2018,Actors,@LeoDiCaprio,"RT @FastCompany: From data centers to stores, all Apple facilities are now powered by renewable energy, a long-time company goal. https://t…" +04/10/2018,Actors,@LeoDiCaprio,"RT @NRDC: As Chief Happyjack explains, “the @CreeWaswanipi way of life still connects us very strongly to the land."" Yet their territory ha…" +04/06/2018,Actors,@LeoDiCaprio,"RT @UN: Clean, green energy is more affordable and competitive than ever. +Our problem is not that we do not know what to do -- it is how qu…" +04/04/2018,Actors,@LeoDiCaprio,"RT @FAOKnowledge: Those who produce our food are the hardest hit by #climatechange. + +Rice farmer Manca Trawally explains why. https://t.co…" +04/03/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Unsustainable exploitation of the natural world threatens the food and water security of billions of people, a major UN-ba…" +03/31/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: The Postcode Lottery Green Challenge is looking for green start-ups to submit their promising sustainable business plans.… +03/31/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: The new initiative #GreenBondPledge seeks to have more cities, public authorities and large corporates commit to increase use o…" +03/29/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Who can change the world? Students. LDF is now matching all donations to four student-led #cleanenergy crowdfunding campai… +03/29/2018,Actors,@LeoDiCaprio,"RT @WWFnews: Brazil, Bolivia, and Paraguay signed a landmark commitment today to protect the Pantanal, the world’s largest tropical wetland…" +03/28/2018,Actors,@LeoDiCaprio,"RT @AMarch4OurLives: Register. +Educate. +Vote. +That's what it will take to create real change. Add your name to be a part of what's next:…" +03/27/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Tomorrow, the Senate in Brazil will vote on a bill that authorizes the farming of sugarcane in the Legal Amazon which was…" +03/26/2018,Actors,@LeoDiCaprio,"Don’t miss the incredible, award-winning work from my friend Alejandro G. Iñárritu. Carne y Arena will immerse you… https://t.co/KrthdHurYI" +03/25/2018,Actors,@LeoDiCaprio,"A few weeks ago, the US Government lifted the ban on elephant hunt trophies. Join @ElephantCrisis and take the pled… https://t.co/pMwp7Qlu7X" +03/23/2018,Actors,@LeoDiCaprio,RT @Everytown: We're proud to support the students stepping up and taking action to prevent gun violence. Follow their lead; find a 3/24 #M… +03/22/2018,Actors,@LeoDiCaprio,RT @AFrontlines: On #WorldWaterDay @AFrontlines is launching the #LessOilMoreWater campaign to reach their goal of bringing clean drinking… +03/22/2018,Actors,@LeoDiCaprio,"RT @J_WintersLDF: Proud to be releasing @DiCaprioFdn’s first official white paper with @UNDP entitled “Nature for Water"" which documents ho…" +03/21/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: We can’t burn our way out of the climate crisis https://t.co/xV3Uz7VqX0 via @MaryPFPI +03/21/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Cities need to prepare now to take in millions of #climatechange #refugees https://t.co/aDBDdIqpvR +03/20/2018,Actors,@LeoDiCaprio,"RT @BBCEarth: Sudan’s death leaves just two females of the subspecies alive in the world +https://t.co/kCpRCxFaFY" +03/20/2018,Actors,@LeoDiCaprio,RT @AMarch4OurLives: Too many of us have been affected by gun violence in school. We refuse to live in fear. We must put an end to this. Si… +03/19/2018,Actors,@LeoDiCaprio,RT @latimes: The biggest solar parks in the world are now being built in India https://t.co/hUlSLdqdfq https://t.co/l0ZqnCZZRl +03/17/2018,Actors,@LeoDiCaprio,RT @greenpeaceusa: Standing Rock: Dakota Access Pipeline Leak Technology Can't Detect All Spills https://t.co/dLoH7QerU7 #DAPL via @mckenna… +03/16/2018,Actors,@LeoDiCaprio,RT @YEARSofLIVING: The oil industry knew for decades that climate change is real and about the disasters it could create. But that’s not th… +03/15/2018,Actors,@LeoDiCaprio,https://t.co/Ym25RNfSwL +03/14/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: View from space reveals extent of fishing on global ocean https://t.co/FAH7aF1ppk +03/12/2018,Actors,@LeoDiCaprio,"RT @SierraClub: Tomorrow, Trump will visit border wall prototypes in Southern California. For over a decade, Sierra Club volunteer Jill Hol…" +03/12/2018,Actors,@LeoDiCaprio,RT @guardian: Antarctica's king penguins 'could disappear' by the end of the century https://t.co/F445f3BUMd +03/10/2018,Actors,@LeoDiCaprio,"A few years ago, I had the opportunity to see these incredible musicians with my dad. Excited to join my father in… https://t.co/N5YcP3oIbF" +03/10/2018,Actors,@LeoDiCaprio,"RT @insideclimate: As the price of renewable energy drops, more cities around the world are cutting the cord with fossil fuel-based electri…" +03/08/2018,Actors,@LeoDiCaprio,"RT @youthvgov: BREAKING: Ninth Circuit Rules in Favor of Youth Plaintiffs, Rejects Trump’s Attempt to Evade Constitutional Climate Trial ht…" +03/08/2018,Actors,@LeoDiCaprio,"RT @HuffPost: The U.S. government will allow hunters to import elephant trophies on a case-by-case basis, breaking the president’s pledge.…" +03/07/2018,Actors,@LeoDiCaprio,"RT @350: Of nearly three dozen different Arctic weather stations, 15 of them were at least 10F (5.6C) above normal for the winter @guardian…" +03/06/2018,Actors,@LeoDiCaprio,"RT @MoveOn: #Congress. The time is now. Stand up for 200,000 children across the US. Without a permanent legislative solution for #Dreamers…" +03/03/2018,Actors,@LeoDiCaprio,"This #WorldWildlifeDay, people from all countries must rally together to ensure the future of the world’s #BigCats.… https://t.co/yd0d2YieVo" +03/02/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Shark fishing on a coral reef drives evolutionary changes in fish https://t.co/PK91ReOBCC via @hakaimagazine +02/28/2018,Actors,@LeoDiCaprio,Congrats to @JustinTrudeau and #Canada on a historic investment in nature. https://t.co/2oSjzGQbRI +02/27/2018,Actors,@LeoDiCaprio,"RT @GlobalFishWatch: New @GlobalFishWatch study published in @sciencemagazine, “Tracking the Global Footprint of #Fisheries,” finds that in…" +02/25/2018,Actors,@LeoDiCaprio,"RT @UN: Climate change is real & it's happening now. But by taking urgent climate action we will create jobs, improve our health & save mon…" +02/23/2018,Actors,@LeoDiCaprio,RT @mongabay: Ecuador votes to reduce oil exploitation in Yasuní National Park: https://t.co/Ys1MUUCWNF https://t.co/yvKniA2R77 +02/22/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: No more blackouts anywhere in the world with 100% wind, water, and sunlight https://t.co/g87BunKqW3 by @mzjacobson" +02/21/2018,Actors,@LeoDiCaprio,"Today, Seychelles announced two new marine protected areas that equal the size of Great Britain. Join me and… https://t.co/aszoTCLj7h" +02/21/2018,Actors,@LeoDiCaprio,RT @MarkRuffalo: You are the power...March For Our Lives: What to know about the nationwide march led by the Parkland survivors - Mic https… +02/21/2018,Actors,@LeoDiCaprio,"RT @IndivisibleTeam: On 12/6, the House passed the Concealed Carry Reciprocity Act. It was a top priority of the @NRA and would cause a rac…" +02/21/2018,Actors,@LeoDiCaprio,"RT @CNN: Survivors of the Florida school shooting announce a nationwide, student-led march in Washington on March 24 to push for gun contro…" +02/21/2018,Actors,@LeoDiCaprio,RT @Everytown: We don't have to live like this. Join the movement to #EndGunViolence: Text ACT to 644-33. https://t.co/tmVcRLrMNB +02/18/2018,Actors,@LeoDiCaprio,"RT @PopSci: Preventing deforestation might be expensive, but it will cost us more if we don't https://t.co/BYOclhXlhp https://t.co/bW7w9SCi…" +02/16/2018,Actors,@LeoDiCaprio,"RT @BBCScienceNews: '100,000 orangutans' killed in 16 years https://t.co/XATqq3yjEs" +02/16/2018,Actors,@LeoDiCaprio,"RT @washingtonpost: The Arctic is full of toxic mercury, and climate change is going to release it https://t.co/0WDBiJ0mkB" +02/14/2018,Actors,@LeoDiCaprio,"RT @UNFCCC: Water is complex because it is linked to almost everything in the world. + +And water is at the heart of adaptation to #climatec…" +02/13/2018,Actors,@LeoDiCaprio,"RT @CITES: #BigCats are among the most powerful creatures to grace this planet, but they are also the most fragile https://t.co/T7sL5JwCur…" +02/10/2018,Actors,@LeoDiCaprio,"Proud to support @LACMA as it transitions to new, energy efficient lighting for Chris Burden’s #UrbanLight installa… https://t.co/1JPgY5anAO" +02/08/2018,Actors,@LeoDiCaprio,RT @SeaTimesOpinion: Editorial: The past year has made it clear that states cannot rely on the federal government to spearhead our nation’s… +02/08/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: LDF is proud to support @LACMA as it transitions to new, #energyefficiency lighting for the 10th anniversary of Chris Burd…" +02/06/2018,Actors,@LeoDiCaprio,"Visual art is a powerful tool for spreading ideas, memorializing history & bringing people together around a common… https://t.co/1uZvuIgcVq" +02/06/2018,Actors,@LeoDiCaprio,RT @ste_kenya: We are deeply saddened by the death of wildlife-trade researcher Esmond Bradley Martin who died yesterday in Nairobi. A long… +02/01/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Chilean President Michelle Bachelet and Kristine McDivitt Tompkins, President and CEO of @TompkinsConserv, today signed th…" +02/01/2018,Actors,@LeoDiCaprio,RT @ConservationOrg: Sharks are a grossly misunderstood yet vital element of the global ecosystem. These mysterious and magnificent creatur… +01/31/2018,Actors,@LeoDiCaprio,RT @latimesopinion: It's the last chance for California to say no to polystyrene plastic trash this year. https://t.co/lNHD8kNQt4 https://t… +01/30/2018,Actors,@LeoDiCaprio,"Proud of what @DiCaprioFdn and our partners have accomplished over the last 20 years, but so much more needs to be… https://t.co/xeNPz8FhWF" +01/29/2018,Actors,@LeoDiCaprio,Join @WSUCampaign @MoveOn @StandUpAmerica and more leaders of the #ResistanceMovement at tonight's #PeoplesSOTU. Wa… https://t.co/t1x7XeN1Dx +01/28/2018,Actors,@LeoDiCaprio,"RT @BardemAntarctic: This is my home for the next week! Together with my dear brother @carlosbardem and 34 other new brothers and sisters,…" +01/27/2018,Actors,@LeoDiCaprio,RT @EcoWatch: 2017 Was the Hottest Year on Record for Oceans https://t.co/mgXYGYewtd #Oceans @Oceana @Waterkeeper @Surfrider @NRDC @billmck… +01/26/2018,Actors,@LeoDiCaprio,"RT @TheDailyClimate: World cities headed for a #water problem, writes @BrianBienkowski. These crises —exacerbated by a changing #climate, a…" +01/23/2018,Actors,@LeoDiCaprio,RT @NRDC: Anti-wildlife members of Congress want to limit where Endangered Species Act protections apply. Take Action! https://t.co/vNEIl6m… +01/23/2018,Actors,@LeoDiCaprio,"RT @AFrontlines: We’re building a movement for indigenous land, life and cultural survival in the Amazon and we want you to join us! Please…" +01/23/2018,Actors,@LeoDiCaprio,RT @TIME: Aerial photos of Antarctica reveal the devastating toll of climate change https://t.co/DHrhZtuQmu +01/23/2018,Actors,@LeoDiCaprio,RT @wef: Earth will likely warm way beyond the crucial tipping point that the Paris agreement was meant to avoid https://t.co/sZczrRzB0u #c… +01/23/2018,Actors,@LeoDiCaprio,"The Pacific Coast is too valuable to risk a devastating oil spill. With a $56 billion ocean economy, and hundreds o… https://t.co/174WkecDt2" +01/19/2018,Actors,@LeoDiCaprio,RT @GuardianSustBiz: Iceland supermarket vows to eliminate plastic on all own-branded products https://t.co/cWAqgymNux +01/18/2018,Actors,@LeoDiCaprio,RT @terrytamminen: We need laws like California's AB 319 to reduce plastic pollution: https://t.co/fh5Jhiigkx +01/17/2018,Actors,@LeoDiCaprio,RT @NPR: Warming temperatures are having a profound and potentially devastating impact on one of the most important green sea turtle popula… +01/17/2018,Actors,@LeoDiCaprio,"RT @AmazonWatch: Belize bans oil activity to protect its barrier reef! +#FossilFree #KeepItInTheGround + https://t.co/KOeHiDiu9Z" +01/13/2018,Actors,@LeoDiCaprio,"RT @TheAtlantic: A new study makes it clear: Coral reefs are bleaching too frequently to recover, @yayitsrob reports https://t.co/Z9QODnZmV…" +01/10/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: Announcing #Reefscape, a partnership between LDF, Carnegie Airborne Observatory and @planetlabs that aims to help us bette…" +01/10/2018,Actors,@LeoDiCaprio,NYC is the first big city in America to sue and divest from Big Oil. #stopfundingfossils https://t.co/7aqjV3E46J +01/10/2018,Actors,@LeoDiCaprio,"RT @IndivisibleTeam: Democratic MoCs, make a choice: fight for Dreamers or be part of the Deportation Caucus. See how your Senators voted a…" +01/10/2018,Actors,@LeoDiCaprio,"RT @EmCollective: Every day that Congress fails to #ProtectDreamers, 122 young people lose their status to work and live without fear in th…" +01/10/2018,Actors,@LeoDiCaprio,"All countries must work together, and follow China’s example, in order to end the global ivory trade and bring elep… https://t.co/YwAgS1HbsE" +01/09/2018,Actors,@LeoDiCaprio,RT @dicapriofdn: Environmental #education is often the first step in conservation. Gain a better understanding of our #oceans by visiting @… +01/09/2018,Actors,@LeoDiCaprio,"RT @dicapriofdn: .@BoykoBorissov, please protect #UNESCO World Heritage Site Pirin National Park in #Bulgaria from disastrous logging and s…" +01/07/2018,Actors,@LeoDiCaprio,RT @guardianeco: US government climate report looks at how the oceans are buffering climate change | John Abraham https://t.co/et31owmOcn +01/05/2018,Actors,@LeoDiCaprio,"RT @Oceana: Today, @SecretaryZinke opened the floodgates to dirty & dangerous offshore drilling, threatening coastal economies that rely on…" +01/04/2018,Actors,@LeoDiCaprio,RT @UNEP: Pollution is everywhere. From the highest reaches of our atmosphere to the darkest depth of our oceans. But together we can stop… +01/03/2018,Actors,@LeoDiCaprio,"RT @Defenders: #Environment #YearinReview – here are the year’s “happy environmental stories,” including many different areas protected for…" +01/02/2018,Actors,@LeoDiCaprio,Proud to support and invest in @LoveTheWildCo. https://t.co/fpj6W1WsGA +12/30/2017,Actors,@LeoDiCaprio,"RT @nytimes: China will create a national market to clean up its power sector, putting it in a leading position on the issue as the U.S. re…" +12/28/2017,Actors,@LeoDiCaprio,"RT @UNEP: Over the past 70 yrs, at least 40% of all conflicts within national borders are related to competition over natural resources. +M…" +12/27/2017,Actors,@LeoDiCaprio,RT @TIME: How climate change could make the migrant crisis worse https://t.co/xLrvu3MjV0 +12/26/2017,Actors,@LeoDiCaprio,RT @terrytamminen: Need more reasons to battle climate change now? Here are billions of them! 2017 was the most expensive weather year ever… +12/23/2017,Actors,@LeoDiCaprio,"RT @nytimes: Climate change made the torrential rains that flooded Houston after Hurricane Harvey much worse, scientists reported https://t…" +12/22/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: Learn more about our partnership with @pamm and @DesignMiami, showcasing #art that explores the impacts of #climatechange…" +12/22/2017,Actors,@LeoDiCaprio,RT @AGBecerra: I've just sued the #Trump Administration for threatening the #health of our families and the #environment statewide and beyo… +12/21/2017,Actors,@LeoDiCaprio,"RT @NYGovCuomo: With @NYSComptroller, New York State will begin planning to divest the state retirement fund from fossil fuels. https://t.c…" +12/20/2017,Actors,@LeoDiCaprio,Watch @EnvDefenseFund's new enviro-documentary series on the value of using technology to cut oil and gas pollution… https://t.co/iTJv3WLkL4 +12/18/2017,Actors,@LeoDiCaprio,"Help @NRDC stop the pro-polluter tax bill, and help save the Arctic National Wildlife Refuge. Text “TREE” to 21333… https://t.co/HimfGm6PVg" +12/17/2017,Actors,@LeoDiCaprio,"RT @NYGovCuomo: If the EPA says the dredging of Hudson River PCB contamination is complete, New York will sue the federal government. https…" +12/16/2017,Actors,@LeoDiCaprio,"RT @CivilEats: This app, developed by a high school student, will alert farmworkers of dangerous temperatures and allow them to report unsa…" +12/15/2017,Actors,@LeoDiCaprio,"RT @NPR: Researchers say this year was the Arctic's second-warmest in at least 1,500 years — after 2016. https://t.co/zoPSMrTxc9" +12/14/2017,Actors,@LeoDiCaprio,Grateful for the firefighters risking their lives to get people to safety in SoCal. Support @CAFireFound here: https://t.co/DWoWpCJi8S +12/13/2017,Actors,@LeoDiCaprio,RT @NatGeo: Environmental and indigenous groups are cheering a landmark decision by Canada’s highest court https://t.co/LQWcYKy6Ci +12/10/2017,Actors,@LeoDiCaprio,"RT @NatGeo: When environmental conditions change, the risk of extinction increases, even with a healthy population of animals unaffected by…" +12/09/2017,Actors,@LeoDiCaprio,"Proud to support the #PalauPledge, a new conservation initiative for visitors. Written with the help of Palau’s chi… https://t.co/4w4IFzgI5o" +12/06/2017,Actors,@LeoDiCaprio,RT @guardianeco: The Amazon effect: how deforestation is starving São Paulo of water https://t.co/Os9piTjCMw +12/04/2017,Actors,@LeoDiCaprio,"Please support the efforts by @DiCaprioFdn grantee, @UtahDineBikeyah, to defend these national monuments in court.… https://t.co/2da1q1YtoX" +12/03/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: A healthy environment is a human right, and these kids taking the lead to make it so! https://t.co/h6xAZp8dN5" +12/01/2017,Actors,@LeoDiCaprio,"RT @voxdotcom: Global warming isn’t something that will happen decades down the line. It’s happening every day, bit by bit. https://t.co/vd…" +11/30/2017,Actors,@LeoDiCaprio,"RT @NRDC: Trump is likely to undo protections for Bears Ears and other national monuments, leaving these national treasures vulnerable to h…" +11/28/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: This #GivingTuesday donate to LDF grantee @Re_volv's #solarpower campaign. This campaign will provide #cleanenergy and low… +11/25/2017,Actors,@LeoDiCaprio,RT @Independent: Snow leopards no longer endangered for first time in 45 years https://t.co/R6CybScFdZ +11/23/2017,Actors,@LeoDiCaprio,RT @guardianeco: Bigotry against indigenous people means we're missing a trick on climate change https://t.co/ifIBYaevqQ +11/21/2017,Actors,@LeoDiCaprio,"RT @SierraClub: 48 US cities have committed to transition to 100% #cleanenergy, 5 of which have reached their goal & are powered w/ entirel…" +11/21/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: The #KeystoneXL must be stopped: commit to peaceful resistance on the route https://t.co/LsGum8UjYX #NoKXL #KeystoneXLPipe… +11/19/2017,Actors,@LeoDiCaprio,RT @youthvgov: BREAKING: Ninth Circuit to Hear Oral Argument in #JulianavUS! https://t.co/dTDCrzu2Tt #youthvgov #climatechange #COP23 https… +11/18/2017,Actors,@LeoDiCaprio,"RT @NatGeo: The same controversial structure whose extension triggered the Standing Rock protests has leaked about 5,000 barrels https://t.…" +11/17/2017,Actors,@LeoDiCaprio,"RT @dicapriofdn: Trump’s decision to reverse the ban on elephant trophies in the U.S. is reprehensible. In this policy change, the U.S. los…" +11/15/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: From LDF's very own @terrytamminen https://t.co/7krEw2dlEy +11/15/2017,Actors,@LeoDiCaprio,RT @nytimes: Syria said it would sign the Paris climate accord. This leaves the U.S. as the only country that has rejected it. https://t.co… +11/14/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: A #globalwarming target of 1.5˚C is in reach without the need for #BECCS or other forms of #geoengineering. This new model… +11/10/2017,Actors,@LeoDiCaprio,RT @FastCompany: The largest ever tropical reforestation is planting 73 million trees https://t.co/1A4b6epXIm https://t.co/vwpM3A08Tx +11/09/2017,Actors,@LeoDiCaprio,"RT @ourclimateus: On 11/18, young people will come together to share their #Climate Legacy. #Uniting4Climate JOIN: https://t.co/pSuw7MRxCL" +11/09/2017,Actors,@LeoDiCaprio,RT @dicapriofdn: Scientists have identified a new species of #GreatApe on the Indonesian island of #Sumatra: the #TapanuliOrangutan https:/… +11/08/2017,Actors,@LeoDiCaprio,RT @Waterkeeper: URGENT: Act now to protect communities from agricultural pollution—sign on to this letter by TONIGHT opposing HR848! https… +11/07/2017,Actors,@LeoDiCaprio,"RT @citizensclimate: Celebrating 10 years of advocacy for #climate action, CCL is reaching the tipping point with Congress. Join us: https:…" +11/04/2017,Actors,@LeoDiCaprio,"RT @nytclimate: Two's company: Nicaragua will join the Paris deal, leaving Syria and the U.S. as the only 2 countries on the outside https:…" +07/01/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Independence Day came early and we're offering 30% off site-wide in celebration of this day! Offer ends Wednesday, Jul…" +06/30/2018,Actors,@EvaLongoria,What a perfect way to float into the weekend ☀️ (📸: @Virtuoso) https://t.co/I5cuCnaD5Y +06/29/2018,Actors,@EvaLongoria,Put a smile on y’all! The weekend is here! ☀️#TGIF #FBF https://t.co/oXZ7H8CJrI +06/28/2018,Actors,@EvaLongoria,We’re not done yet folks! Head on over to @hsn and watch Ellie Rodriguez fill you in on all things @shopevalongoria… https://t.co/vaXR9hPxaZ +06/28/2018,Actors,@EvaLongoria,Phenomenal work by @iamrashidajones who directed this brilliant PSA (narrated by Donald Glover) about sexual harass… https://t.co/Wo9fzJ7VuI +06/27/2018,Actors,@EvaLongoria,"TOMORROW IS THE BIG DAY! Tune into @HSN at 7am, 12pm, 1pm, & 5pm EST to check out what @shopevalongoria Summer ’18… https://t.co/zQE1AnsLwy" +06/26/2018,Actors,@EvaLongoria,Who else feels like time keeps flying by? When you’ve started to lose track (story of my life) there’s always a sol… https://t.co/mswcoe99rV +06/25/2018,Actors,@EvaLongoria,Starting off my Monday full of gratitude for this little blessing of a human! 🙏🏻 Pepe & I want to thank all the nur… https://t.co/aSkU3ohS4Q +06/23/2018,Actors,@EvaLongoria,"Hey y’all! Check out my friend @ambertamblyn new book, “Any Man”. Vanity Fair called it ""A Searing exploration of s… https://t.co/imOPhclHP7" +06/23/2018,Actors,@EvaLongoria,Look who’s ready for #Mexico game! #WorldCup 🇲🇽🇲🇽🇲🇽 https://t.co/LtZxgPs1Pq +06/22/2018,Actors,@EvaLongoria,Big brother Popeye can’t wait to meet his little brother Santiago! We keep sending Santiago’s hospital blankets hom… https://t.co/ELZ9KWXEvE +06/21/2018,Actors,@EvaLongoria,Hello world! I introduce to you Santiago… https://t.co/SjrCe91paE +06/19/2018,Actors,@EvaLongoria,Unleash the love August 10th 💙 Here’s a first look at the official trailer for @dogdaysthefilm — coming to you this… https://t.co/43sGy8WifK +06/18/2018,Actors,@EvaLongoria,T-minus 10 days until Ellie Rodriguez appears on @hsn to show you the @shopevalongoria Summer ‘18 Collection ☀️⛱ Ma… https://t.co/syk8qBrW5p +06/17/2018,Actors,@EvaLongoria,¡Vamos Mexico! 🇲🇽🇲🇽 #BabyIsReadyForNextGame https://t.co/LVGAhEXCd0 +06/17/2018,Actors,@EvaLongoria,Happy Father’s Day to all the great Dads out… https://t.co/iAoZxvutsS +06/16/2018,Actors,@EvaLongoria,"Thanks for loving my Jinxy Lucky +luckylunargy… https://t.co/yKHfLSSMBl" +06/15/2018,Actors,@EvaLongoria,So the day I’ve been dreading happened last… https://t.co/6taxSanJAT +06/14/2018,Actors,@EvaLongoria,"This just in y’all! My @shopevalongoria Summer Apparel will be airing on @HSN June 28th (7am, 12pm, 1pm & 5pm EST)!… https://t.co/2p6RtaldD6" +06/13/2018,Actors,@EvaLongoria,Looking at my pre-pregnancy clothes like... 🤣 #AllWorthIt https://t.co/FydE56SnyU +06/12/2018,Actors,@EvaLongoria,Missing my directing days on set! I’ll be back soon! 🎥 #DirectorsMode #BossLady https://t.co/xnrj69kAhc +06/11/2018,Actors,@EvaLongoria,"Yes, I know it’s Monday but let’s start the week off with a smile and some positive vibes ✨ https://t.co/m1YJCJkVwd" +06/10/2018,Actors,@EvaLongoria,"If you’re not having brunch, is it really even Sunday? 🍳 #BonAppetit (📸: HonestlyYUM) https://t.co/sGhMmIslq8" +06/09/2018,Actors,@EvaLongoria,Happy Saturday☀️ Here’s to a time where I was 6 months pregnant — and I thought I was huge then! Haha 😂 https://t.co/8LNZrFzZQc +06/08/2018,Actors,@EvaLongoria,"Heartbroken over Anthony Bourdain’s death. He was such a great example of class, intelligence and compassion. May h… https://t.co/vnFNSlcUCF" +06/08/2018,Actors,@EvaLongoria,Your voices were heard! We’re thrilled to announce that we are now accepting hour-long pilots for the @stayMACRO Ep… https://t.co/euoMhTm6XY +06/07/2018,Actors,@EvaLongoria,"With the weekend just around the corner, step up your outfit game with this @shopevalongoria Cold Shoulder Blouse p… https://t.co/kutYkXQfR8" +06/06/2018,Actors,@EvaLongoria,We’re excited to announce the launch of the MACRO Episodic Lab powered by @theblcklst! @LenaWaithe and myself have… https://t.co/TrQm2ul94O +06/05/2018,Actors,@EvaLongoria,Today is the day California! Exercise your civic duty and make your voice heard by voting in today’s primary electi… https://t.co/87YWeuQYH8 +06/04/2018,Actors,@EvaLongoria,Times like these I wish I could drink coffee again ☕️ Happy Monday y’all! https://t.co/Zak3HJ2GlE +06/03/2018,Actors,@EvaLongoria,Sundays are for a little R&R 🛀🏽 Who’s with me? #rg (📸: @emilyblincoe) https://t.co/qR0CGzFBLV +06/02/2018,Actors,@EvaLongoria,Whoa Baby! That’s quite the profile 👶🏽🍼 #StillWaitingForHimToArrive https://t.co/BAMNgDDG9u +06/01/2018,Actors,@EvaLongoria,Black & White mood ⚫️⚪️ Happy Friday y’all! #StillWaitingForHimToArrive #FBF https://t.co/cOZuEKKdMI +05/31/2018,Actors,@EvaLongoria,In honor of graduation season here’s a throwback to those cap and gown days 🎓 Congratulations to all the graduates… https://t.co/dHf4puMSiV +05/30/2018,Actors,@EvaLongoria,"Today my #wcw goes to my sister from another mister @serenawilliams. Words cannot describe your talent, your work… https://t.co/MfHDHzlqJb" +05/29/2018,Actors,@EvaLongoria,Work week chic with these flawless @shopevalongoria skirts. Get them just in time for summer ☀️ Check out the link… https://t.co/w9MBpfIuac +05/28/2018,Actors,@EvaLongoria,Did someone say pool day? ⛱☀️ Hope y’all are enjoying the long weekend! And thank you to all the fallen soldiers wh… https://t.co/pBeS79PVR0 +05/27/2018,Actors,@EvaLongoria,What better way to enjoy your Sunday than with a little shopping! Y’all don’t want to miss our Memorial Day sale. C… https://t.co/KCwExGbu2A +05/26/2018,Actors,@EvaLongoria,Big brother on baby bump watch! Thx Jinxy Baby! 👶🏽 https://t.co/OK1EZijXLh +05/25/2018,Actors,@EvaLongoria,#FBF to a time when I could drink wine. Happy #NationalWineDay y’all! Enjoy the long weekend 🍷 https://t.co/PulaWHvJw0 +05/24/2018,Actors,@EvaLongoria,Memorial Day came early y’all! My entire @evalongoriacollection is 30% OFF until 5/28! Upgrade your summer wardrobe… https://t.co/XHQVk8NfwF +05/23/2018,Actors,@EvaLongoria,"So Monday was our 2yr anniversary and I didn’t forget, I was just too sleepy to post! My wonderful husband sent me… https://t.co/yPB030tA1U" +05/21/2018,Actors,@EvaLongoria,"You guys, check out this special announcement from my friend @Lin_Manuel https://t.co/gQWXMs2nxu" +05/19/2018,Actors,@EvaLongoria,Let’s soak up some sun y’all! It’s Saturday☀️ #BehindTheScenes #IrisCovetBook https://t.co/UJ7auyI1ju +05/18/2018,Actors,@EvaLongoria,#FBF to cookies and cakes with the gorgeous @Roselyn_Sanchez 🍼 Can’t wait for y’all to see her shine on… https://t.co/s9Doc3r5b5 +05/17/2018,Actors,@EvaLongoria,Guys check out the brand new trailer for @GrandHotelABC on @ABCNetwork! So proud of this show! Can’t wait for ever… https://t.co/fB5q35u7CP +05/17/2018,Actors,@EvaLongoria,"Throwing it back to last week when I was smaller! Yep, I’m much bigger than this now! Friday is almost here y’all!… https://t.co/tejD1mAUmp" +05/16/2018,Actors,@EvaLongoria,So happy to be joining my friend @Lin_Manuel for such an amazing cause helping @latinovictoryus and other amazing o… https://t.co/7axCRME1pC +05/16/2018,Actors,@EvaLongoria,"This summer, you’re in for a treat y’all 🐾 catch a first look at @DogDaysTheFilm — in theaters this August! #DogDays https://t.co/ojdwn4L0rl" +05/15/2018,Actors,@EvaLongoria,Ahhhh I'm so proud of this show and this amazing cast! So bummed I cannot be with them in New York right now for up… https://t.co/dcmBFi3EEK +05/15/2018,Actors,@EvaLongoria,So excited to be featured on the @IrisCovetBook Summer Issue ☀️ Had such an amazing time doing this shoot with my b… https://t.co/am1VvonGNe +05/14/2018,Actors,@EvaLongoria,"Here’s looking at you Monday! + +Read my interview for @iriscovetbook summer issue with the fabulous @oliviamunn. Ava… https://t.co/OhZ7jfl2H1" +05/13/2018,Actors,@EvaLongoria,You guys it’s my first Mother’s Day!!!! Happy Mother’s Day to all the wonderful mommies out there! May you be appre… https://t.co/AQVG4AWIdN +05/13/2018,Actors,@EvaLongoria,A perfect piece for Mother’s Day! https://t.co/fLZlqbvpHe +05/12/2018,Actors,@EvaLongoria,Truly inspiring afternoon during the @GlobalGiftUSA Women’s Empowerment Event in benefit of #EvaLongoriaFoundation.… https://t.co/qu5fg68NJN +05/11/2018,Actors,@EvaLongoria,Yes! I love this project with all my heart! We worked so hard on it and I’m so happy that audiences everywhere will… https://t.co/uLIkgFtnxq +05/11/2018,Actors,@EvaLongoria,Congratulations to our #EvaLongoriaFoundation Latina Scholarship recipients! It’s an honor to support the hard work… https://t.co/nyMwqfoHSz +05/11/2018,Actors,@EvaLongoria,Watch sparks fly this weekend!✨ @OverboardMovie is expanding into more theaters this weekend. I know you guys will… https://t.co/8TpTBu5xcX +05/11/2018,Actors,@EvaLongoria,What a pleasure celebrating these inspirational first generation Latina scholars with the Eva Longoria Foundation.… https://t.co/qlsNVgMYVw +05/10/2018,Actors,@EvaLongoria,#Tbt to an amazing shower with even more amazing company #BabyBaston https://t.co/GPOvWG7zVw +05/09/2018,Actors,@EvaLongoria,Happy 30th Birthday to @hellomag it was a pleasure to have you be part of my dream wedding! Here's to the next thre… https://t.co/0iND5s6MYk +05/09/2018,Actors,@EvaLongoria,Tune in to @TeamCoco tonight and watch a special little someone get serenaded 👶🏽🎤🎼 https://t.co/qK2tRFzQVS +05/08/2018,Actors,@EvaLongoria,"Don’t mind me, just bumping along today 😁 #BabyBaston https://t.co/nT6p5lb81b" +05/07/2018,Actors,@EvaLongoria,What a great way to start the week! A huge thank you to everyone for supporting this film!! 🍿🎬 #overboardmovie https://t.co/9iAHq5awqC +05/07/2018,Actors,@EvaLongoria,Baby Baston and I wish everyone a wonderful week 💛💛 https://t.co/sFGP3QYnzp +05/07/2018,Actors,@EvaLongoria,Sooooo Happy to be surrounded by these beauties! @ElizabethBanks is toasting my belly and my sweet friend… https://t.co/sxuUDlk5Jc +05/06/2018,Actors,@EvaLongoria,What a beautiful day with all my girls! Thank you for your constant guidance and support! I love y’all so much!… https://t.co/ksQb2qJxXU +05/05/2018,Actors,@EvaLongoria,It’s the weekend and @OverboardMovie is out NOW everywhere y’all!! Don’t miss it 🎬🍿#overboardmovie https://t.co/VBVf1Lb4dP +05/04/2018,Actors,@EvaLongoria,"My new film @OverboardMovie is in theaters now! You guys are going to love it! #overboardmovie +https://t.co/LQTgPcxtsN" +05/04/2018,Actors,@EvaLongoria,"Happy Friday y’all! Be sure to catch me on @SteveTVShow today, you won’t want to miss it 😊 @OverboardMovie is out i… https://t.co/fpMB7oMRvy" +05/03/2018,Actors,@EvaLongoria,When I realize it’s almost Friday! 😊 You guys make sure to check out @OverboardMovie — in theaters everywhere TOMOR… https://t.co/yEj8TfJcqX +05/03/2018,Actors,@EvaLongoria,"Be sure to tune in to the @latelateshow tonight!! There will be less naps and more laughs, I promise ✨ (Helping han… https://t.co/N9vcBnktu1" +05/02/2018,Actors,@EvaLongoria,"Corden, I’m ready! 🎬 Catch me tonight on the @latelateshow — I promise I’ll be awake #workingmama https://t.co/aw3bY80MEq" +05/02/2018,Actors,@EvaLongoria,Too much fun on the red carpet with this beauty @AnnaKFaris! Swipe through to see the progression of silliness!! Lo… https://t.co/AzJcLd26ce +05/01/2018,Actors,@EvaLongoria,Had such an incredible time celebrating the premiere of @OverboardMovie last night! I’m so excited for you all to s… https://t.co/yysWNCvRDo +04/30/2018,Actors,@EvaLongoria,I’m so excited for the premiere of @OverboardMovie tonight!! Can’t wait for y’all to see it #overboardmovie https://t.co/KJoEmLarqa +04/29/2018,Actors,@EvaLongoria,Sunday Brunch! #SundayFunday https://t.co/IXHK2UeOi1 +04/29/2018,Actors,@EvaLongoria,No Sunday blues around here 😊 Hiding the baby bump with this awesome bomber! ✨@shopevalongoria✨ https://t.co/iKrQZn9W03 +04/27/2018,Actors,@EvaLongoria,My face when I realize it’s Friday! Happy weekend everyone (including @SimplyTroy) https://t.co/WlAoZhuBRb +04/26/2018,Actors,@EvaLongoria,Just me and Jinxy having a lazy Thursday! #MyOldMan #JinxyBaby https://t.co/TMExRLlxsZ +04/26/2018,Actors,@EvaLongoria,Congrats to my girl @MichelleSalasB for gracing the cover of @InStyleMexico! What a beauty! 👏🏻👏🏻👏🏻 https://t.co/msTsmEqqgm +04/25/2018,Actors,@EvaLongoria,"You guys make sure to check out @EugenioDerbez, @AnnaKFaris and I in our new movie Overboard! Can’t wait for you gu… https://t.co/hJ6gji2Nqb" +04/25/2018,Actors,@EvaLongoria,Thx Emily!! https://t.co/9vmVzpT7Ne +04/25/2018,Actors,@EvaLongoria,"RT @Fandango: ""Is your love life on paws?"" + +Let these #DogDays posters unleash your heart. + +exclusive poster debut, +featuring: +@ninadobrev…" +04/24/2018,Actors,@EvaLongoria,Hey guys! Check out my girl @Roselyn_Sanchez in her new movie Traffik! She’s fantastic and it’s a must see movie! D… https://t.co/aeUgIR9i5t +04/24/2018,Actors,@EvaLongoria,Strike a pose! 💋 #ThatsMyBeforeAndAfter 😂 https://t.co/WkTZxTKPNh +04/23/2018,Actors,@EvaLongoria,Happy birthday to my brother @georgelopez. Thank you for all the years of friendship and laughs! And for always mak… https://t.co/0oGHgPnuNp +04/22/2018,Actors,@EvaLongoria,Smiling because it’s still the weekend. Happy Sunday y’all! #BrunchPlease https://t.co/yvwX5MMKtW +04/21/2018,Actors,@EvaLongoria,Thank you to these wonderful human beings @FelicityHuffman @AnnaKFaris and @ricky_martin for honoring me with your… https://t.co/flAEiHKmuV +04/20/2018,Actors,@EvaLongoria,#FBF to working with such a talented and funny cast on @CWJaneTheVirgin 🎬 I love me some @HereIsGina #DirectorMode… https://t.co/oi4pKmX9M9 +04/19/2018,Actors,@EvaLongoria,Waiting for the weekend like... #ThursdayMood https://t.co/JWFe34X1Mr +04/18/2018,Actors,@EvaLongoria,My #WCW goes to this wonderful beauty @victoriabeckham ! Thanks for always supporting me and… https://t.co/8v0FWIbVtB +04/17/2018,Actors,@EvaLongoria,"RT @InStyle: Fact: @EvaLongoria has the coolest girl gang. 💯 Anna Faris, Victoria Beckham, Kerry Washington, Reese Witherspoon, and more ca…" +04/17/2018,Actors,@EvaLongoria,RT @OfficialWalkApp: @FelicityHuffman paid tribute to her friend and @DesperateABC co-star @EvaLongoria as she got her Star on the Hollywoo… +04/17/2018,Actors,@EvaLongoria,RT @ReallyMarcia: This is just a cookie. But if you go to the #HollywoodWalkofFame you can see @EvaLongoria’s brand new star!!! Love love l… +04/17/2018,Actors,@EvaLongoria,"RT @ReallyMarcia: I was there with bells on!! +Here’s your pic..xo m https://t.co/GbDF1JAFG3" +04/17/2018,Actors,@EvaLongoria,Thank you to so many beautiful women who showed up to support me and my star on the Walk of Fame. What an honor and… https://t.co/tOFNmSJb4N +04/17/2018,Actors,@EvaLongoria,"Well, it’s done! I’m officially available to be walked all over! What an honor! Thank you Hollywood Chamber of Comm… https://t.co/8jEVLrrfY0" +04/16/2018,Actors,@EvaLongoria,What a dream come true today! Receiving my star on the Walk of Fame is an honor I can’t even believe I’m going to e… https://t.co/VlouddVdZj +04/15/2018,Actors,@EvaLongoria,It’s a “no makeup” kinda day 😌 Happy Sunday y’all!! https://t.co/z0EqSOIWjv +04/14/2018,Actors,@EvaLongoria,RT @FelicityHuffman: Shhh working on my speech for @EvaLongoria’s star on the Hollywood Walk of Fame! ✨ https://t.co/VBuxSxXK4I +04/14/2018,Actors,@EvaLongoria,RT @OverboardMovie: Revenge never tasted so sweet. #OverboardMovie sails into theaters May 4. Get your tickets now: https://t.co/YKDxg5L8Sp… +04/14/2018,Actors,@EvaLongoria,Happy Saturday everyone! Let the weekend therapy begin 🙌🏼 🌸 https://t.co/vUUiKvsJFw +04/13/2018,Actors,@EvaLongoria,"Happy birthday to the best human being in the world! I’m so lucky to be able to have you as my life partner, my hus… https://t.co/yRzFfj1LOp" +04/12/2018,Actors,@EvaLongoria,"Feb 2016, with these beautiful souls. LOVE YOU sisters ❤️ #TBT https://t.co/Fmh9oA3vpj" +04/11/2018,Actors,@EvaLongoria,Thank you @jimmykimmel for a great time! As always! My 12th appearance on your show! And my son’s first appearance… https://t.co/LnndWgHNeQ +04/11/2018,Actors,@EvaLongoria,"RT @JimmyKimmelLive: Tonight on #Kimmel @EvaLongoria #OverboardMovie, Sebastian Maniscalco @SebastianComedy #StayHungry and @DanielCaesar &…" +04/11/2018,Actors,@EvaLongoria,"Yup, all I talk about nowadays is baby stuff 🤣 More baby talk tonight on @JimmyKimmelLive 👶🏻 @OverboardMovie https://t.co/ehRlVMPIJU" +04/11/2018,Actors,@EvaLongoria,Tonight!!! https://t.co/xZscX7s1s2 +04/11/2018,Actors,@EvaLongoria,RT @JimmyKimmelLive: Baby talk with @EvaLongoria! 👶 #OverboardMovie https://t.co/FUc2uV5POE +04/10/2018,Actors,@EvaLongoria,Happy Tuesday guys!!!! Today I visited my friend @TheEllenShow to talk all things babies and @OverboardMovie don’t… https://t.co/Q76x1XIzzH +04/10/2018,Actors,@EvaLongoria,Enough is ENOUGH 🤚🏼 #EqualPayDay https://t.co/wkyWRWJDS1 +04/10/2018,Actors,@EvaLongoria,"Childhood cancer affects the whole family & we often overlook the strong brothers & sisters of the patients. Today,… https://t.co/hvbB2N9RRV" +04/09/2018,Actors,@EvaLongoria,Working Mama! Getting it done! 💪🏼 #WorkingMama #MotivationalMonday #GrandHotel https://t.co/geFgbeYaew +04/08/2018,Actors,@EvaLongoria,Sunday: the day when I plan a lot and pretty much do nothing but chill with my doggies 🤣 #Popeye https://t.co/dkNTGKtKx2 +04/08/2018,Actors,@EvaLongoria,"RT @TIMESUPNOW: Hey @tonyrobbins, are you serious? Well you also said, “The path to success is to take massive, determined action.” Don’t w…" +04/08/2018,Actors,@EvaLongoria,Huh? Wow he has it all wrong. https://t.co/APi6vKlPkb +04/07/2018,Actors,@EvaLongoria,It’s a good day to have a good day! Happy Weekend everyone ❤️ https://t.co/wwzNE7HWV7 +04/06/2018,Actors,@EvaLongoria,"Ok everyone, attention please! It’s Friday y’all!!!! 🙌🏼 https://t.co/CfuGOZXkFD" +04/05/2018,Actors,@EvaLongoria,Oh Napa how I miss you! And my girls @ClaudiaZapata and @MariaRBravo too! https://t.co/Ri5gZKkHjp +04/05/2018,Actors,@EvaLongoria,50 years ago on April 4th Dr. King’s life was cut short but his dream still lives. My dream is equal pay for women.… https://t.co/qVkRfIBWMC +04/04/2018,Actors,@EvaLongoria,"Dear Wednesday, bring on the Sunshine 😎 https://t.co/3F4CVOEXYv" +04/03/2018,Actors,@EvaLongoria,RT @shopevalongoria: One of our favorites👇🏼 The perfect day-to-night look brought to you by #EvaLongoriaCollection. This is the outfit @Eva… +04/03/2018,Actors,@EvaLongoria,Thrilled for another year celebrating #WomenofWorth with @LOrealParisUSA. Nominate a woman making a difference in y… https://t.co/0TtKeLXf8K +04/02/2018,Actors,@EvaLongoria,"Happy bday to one of the most beautiful women inside and out! This woman has been my friend, my sister, my confidan… https://t.co/NhKR7Lc8t9" +04/02/2018,Actors,@EvaLongoria,My little cabana boy! 🌞 Thank you Diego! #HappyMonday https://t.co/DjMk2BE9Uf +04/02/2018,Actors,@EvaLongoria,"RT @OverboardMovie: An amnesiac. A scorned woman. A plan for revenge….OVERBOARD. +In Theaters May 4th + +#NotATelenovela #AprilFoolsDay https…" +04/01/2018,Actors,@EvaLongoria,Happy Easter from my egg to yours!! #HappyEaster 🌸🐰🐣🌸 https://t.co/uZZfJQ6ztc +03/31/2018,Actors,@EvaLongoria,RT @blackishabc: It's all smiles with @MilesBrown when @EvaLongoria Baston stops by to direct an episode! Re-watch Eva's #blackish directo… +03/31/2018,Actors,@EvaLongoria,Hope you are all having a relaxing weekend! Happy Saturday! ❤️ https://t.co/xZyYX9k3zr +03/30/2018,Actors,@EvaLongoria,Happy Friday y’all ❤️Easter came early this year! Head on over to https://t.co/OLDrXp9nUI to @shopevalongoria 30% o… https://t.co/r6NH7hDiZK +03/29/2018,Actors,@EvaLongoria,Team work makes the dream work 🙌🏼 #TeamEva #tbt https://t.co/zt4LVK62jN +03/28/2018,Actors,@EvaLongoria,"Kind heart, fierce mind, brave spirit 💪🏼 you’re all of that and SO much more! Love you @ananavarro ❤️ #WCW https://t.co/JsLZwwhwNn" +03/28/2018,Actors,@EvaLongoria,RT @shopevalongoria: Every day is a fashion show & the world is the runway 🙌🏼Here's a sneak peek of our Spring '18 collection being showcas… +03/28/2018,Actors,@EvaLongoria,RT @TraceeEllisRoss: Tonight's episode of @blackishabc was wonderfully directed by my dear friend @evalongoria! I loved every minute of it… +03/27/2018,Actors,@EvaLongoria,You guys!!!! Make sure to tune in on @ABCNetwork to watch the episode I directed for @blackishabc 🎬 TONIGHT at 9|8c… https://t.co/h8TIEj3KAb +03/27/2018,Actors,@EvaLongoria,"RT @OverboardMovie: Don’t worry, Carlos. We can keep a secret. #OverboardMovie https://t.co/biz9444M16" +03/27/2018,Actors,@EvaLongoria,"RT @EugenioDerbez: Y finalmente después de varias propuestas, les presento el póster de #HombreAlAgua . Si se lo encuentran en la calle, su…" +03/27/2018,Actors,@EvaLongoria,Miami Mornings ☀️🌊 https://t.co/2bDK5sIy14 +03/26/2018,Actors,@EvaLongoria,Adiós weekend... Hello Monday 👋🏼 https://t.co/uf5Wpklx2v +03/25/2018,Actors,@EvaLongoria,"Life is cool by the pool, and even better if you’re in Miami 😎 Happy SUNday everyone☀️ https://t.co/wsnvG8y5O0" +03/24/2018,Actors,@EvaLongoria,"What a relief to know that YOU are the future of this country. I stand with all of you who marched today, I’m so pr… https://t.co/u11wbcWPLc" +03/24/2018,Actors,@EvaLongoria,RT @shopevalongoria: #BTS shots of @EvaLongoria at @HSN ! Retweet if you watched! Visit https://t.co/kXGq0Y6mMA to shop our Spring Collecti… +03/24/2018,Actors,@EvaLongoria,RT @shopevalongoria: Read what @wwd has to say about @EvaLongoria X @HSN by clicking https://t.co/J539huQLge ! https://t.co/XEqSviHJz4 +03/24/2018,Actors,@EvaLongoria,Your face when it’s Saturday and you’ve slept more then 8 hrs 😝🤣 Happy Saturday y’all ❤️ https://t.co/Pt9HEUJRGJ +03/23/2018,Actors,@EvaLongoria,"Live, Love, W🐶🐶F... Happy #NationalPuppyDay to these two! ❤️ https://t.co/WybaOOWJpL" +03/23/2018,Actors,@EvaLongoria,"RT @HSN: #TGIF! It's been a fabulous week with @EvaLongoria, but we are looking forward to the weekend ahead! What are your plans? 😀 https:…" +03/23/2018,Actors,@EvaLongoria,Day #2 🙌🏼 We’re now live on @HSN! Make sure to tune in to learn more about my Spring 18’ #EvaLongoriaCollection. Li… https://t.co/zy2PLiNCbR +03/23/2018,Actors,@EvaLongoria,SO ready for Day #2 @HSN ✨ https://t.co/Tp9El8rnNq +03/23/2018,Actors,@EvaLongoria,That first outfit 🙌🏼#EvaLongoriaCollection of course 🤣 #EvaLongoriaxHSN @shopevalongoria @HSN https://t.co/HqmfcAx42d +03/22/2018,Actors,@EvaLongoria,"RT @HSN: '@EvaLongoria Talks New Fashion Line on @HSN, Go-To Shoe Looks and Expecting a Child! https://t.co/5FHXbIAERR via @footwearnews" +03/22/2018,Actors,@EvaLongoria,RT @HSN: Jump into jumpsuits this spring with one of our favorite's by @EvaLongoria! 😍 https://t.co/rH9vxEacb5 #EvaLongoriaxHSN #StyleEdit… +03/22/2018,Actors,@EvaLongoria,Today is the day!!! 🙌🏼 I’ll be sharing my Spring 18’ #EvaLongoriaCollection LIVE on @HSN ✨ Make sure to tune in to… https://t.co/ojJYx4DrwY +03/21/2018,Actors,@EvaLongoria,Tomorrow is the day!!! I'm so excited to share with you my Spring 18' #EvaLongoriaCollection on @HSN. Here's a litt… https://t.co/viWhZ1xOuU +03/20/2018,Actors,@EvaLongoria,The Weinstein Company releases anyone who suffered or witnessed any form of sexual misconduct by Harvey Weinstein f… https://t.co/vHZJc6GbmB +03/20/2018,Actors,@EvaLongoria,"It’s been a loooong week... oh wait! It’s just Tuesday 🤣 Happy Tuesday everyone 💋 +.... +Wearing my… https://t.co/KzcXngIKt3" +03/20/2018,Actors,@EvaLongoria,I binged @OnMyBlockTv this weekend and loved it! Bravo to my friend @laurenei for co-creating and directing this am… https://t.co/Wub34DWdyE +03/19/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Only 3 more days until @EvaLongoria appears on @HSN to discuss her Spring collection, available now at https://t.co/…" +03/19/2018,Actors,@EvaLongoria,"RT @shopevalongoria: Introducing our Spring '18 Floral Jumpsuit. Visit https://t.co/1A8glD5qez to shop this piece, which happens to be one…" +03/19/2018,Actors,@EvaLongoria,"3 more days!!! 🙌🏼 Be sure to tune in to see me on HSN March 22nd and 23rd, I cannot wait to share my Spring 18’ col… https://t.co/cFsv8RH81x" +03/19/2018,Actors,@EvaLongoria,Yes!!! 🙌🏼 https://t.co/VekullXUBW +03/19/2018,Actors,@EvaLongoria,"TIME'S UP calls on @NYGovCuomo to open an investigation of NY County DA, Cyrus Vance @manhattanDA, & the DA's offic… https://t.co/fujM7K3VMK" +03/18/2018,Actors,@EvaLongoria,"My kind of Sunday, napping with THREE babies! 😴👼🏻🐕🐶 https://t.co/kjbrE9PuRc" +03/17/2018,Actors,@EvaLongoria,Happy Saturday 💪🏼✨ https://t.co/63bNXeX6Er +03/16/2018,Actors,@EvaLongoria,So proud of my girl @ambertamblyn 👏🏼 ❤️ https://t.co/c9BMefsDlC +03/16/2018,Actors,@EvaLongoria,Thank you to everyone for the birthday wishes! I felt the LOVE ❤ Every year I have more to be thankful for. Love yo… https://t.co/cGuIwr7UuF +03/16/2018,Actors,@EvaLongoria,"RT @lorenridinger: Happy Birthday to my sister @evalongoria! Beautiful inside and out with a heart of gold, your… https://t.co/YPfjKC80wY" +03/16/2018,Actors,@EvaLongoria,Say. No way! I had no idea! Happy birthday my fellow Pisces! 🎉🎉🎉 https://t.co/sxeKLjZfzS +03/16/2018,Actors,@EvaLongoria,@iamwill No way! I had no idea! Happy birthday my fellow Pisces! 🎉🎉🎉 +03/16/2018,Actors,@EvaLongoria,RT @_juliannemoore: Happy Birthay beautiful @EvaLongoria -wishing the best year of your life ❤️ +03/16/2018,Actors,@EvaLongoria,"RT @MarioLopezExtra: Goodnight birthday girl! You’re already getting the best gift ever... :) +@EvaLongoria + +#BirthdayGirl #PregnantAF htt…" +03/16/2018,Actors,@EvaLongoria,"RT @ElizabethBanks: Yass 🎉 Happy Birthday, @EvaLongoria. #wonderwoman https://t.co/ywzxq6zwLI" +03/16/2018,Actors,@EvaLongoria,"RT @FelicityHuffman: Happy Birthday sweet friend, +You make me happy. +Love +F + +@EvaLongoria https://t.co/5pMSIlISHB" +03/16/2018,Actors,@EvaLongoria,RT @PantelionFilms: Que linda sorpresa le dio el cast de @OverboardMovie a @EvaLongoria. Feliz cumpleaños Eva! 🎉🎊 https://t.co/LC1DNEd4N7 +03/15/2018,Actors,@EvaLongoria,"RT @hollyrpeete: Wishing this AMAZING lady a happy birthday 🎁🎉🎈 +Sister, daughter, wife, stepmommy,friend, actor, director, businesswoman, E…" +03/15/2018,Actors,@EvaLongoria,"RT @RWitherspoon: Happy Birthday to the perfect date for Girl's Night, @EvaLongoria ! Love you sister 💕 https://t.co/4THSPQOJWk" +03/15/2018,Actors,@EvaLongoria,RT @kerrywashington: Wishing my sister @EvaLongoria the happiest of birthdays. Love you! ¡Cumpleaños feliz! Con mucho cariño. Siempre ❤️ ht… +03/15/2018,Actors,@EvaLongoria,"RT @zoesaldana: Feliz Cumpleaños, @EvaLongoria🎂🍰❤️ +I hope you have a beautiful day! +Abrazos y Besos! https://t.co/LeEMs3O7oZ" +03/15/2018,Actors,@EvaLongoria,"RT @LanaParrilla: A big HAPPY BIRTHDAY to this gorgeous, powerful woman @evalongoria 💥 Love you to the moon and… https://t.co/EEMicKOjYG" +03/15/2018,Actors,@EvaLongoria,"RT @OverboardMovie: Happy birthday to our favorite partner in crime, @EvaLongoria. #OverboardMovie https://t.co/2WmgucUwz3" +03/15/2018,Actors,@EvaLongoria,I can’t believe on this birthday I have a pending birth inside of me! Thank you all for the birthday wishes already… https://t.co/YSbWLgysUT +03/14/2018,Actors,@EvaLongoria,"So excited for the @OverboardMovie press junket today! 📸 +. +Hair: @frankiepayne +Makeup: @MakeupByElan +Stylist:… https://t.co/hlCopJJ9ja" +03/14/2018,Actors,@EvaLongoria,RT @shopevalongoria: Work attire ✔︎ @meganfayy poses in #ELC Hi Lo Hem Blazer paired with our Straight Leg Pants. Visit https://t.co/QEFtfS… +03/14/2018,Actors,@EvaLongoria,RT @ThomasBarbusca: East Coast get ready for a brand new episode of @TheMickFOX with my favorite @EvaLongoria directing 🙌🏻 #themick https:/… +03/14/2018,Actors,@EvaLongoria,"When women support each other, incredible things happen ✨ My #WCW goes to these smart and courageous women, my soul… https://t.co/iE91L8vx5r" +03/13/2018,Actors,@EvaLongoria,EVERY. SINGLE. TIME. 🤣 https://t.co/L258G8bv7T +03/12/2018,Actors,@EvaLongoria,I’m so lucky to be in Ken’s presence! https://t.co/aIvoc7lZwe +03/12/2018,Actors,@EvaLongoria,RT @HSN: We ♥️ you and your collection @EvaLongoria and can't wait to show it off! #EvaLongoriaXHSN #StyleEdit https://t.co/KKDpHoKQc1 http… +03/12/2018,Actors,@EvaLongoria,"Calling all of my fashionistas!!! 🔊 Be sure to tune in to see me on @HSN March 22nd and 23rd, I am so excited to sh… https://t.co/GnKVNhygS2" +03/11/2018,Actors,@EvaLongoria,RT @OverboardMovie: That’s not what they mean by “Spring forward”. #DaylightSavings #OverboardMovie https://t.co/L7pMG6HUPd +03/11/2018,Actors,@EvaLongoria,Everyone be sure to catch my brother tonight at 10p/9p central on ABC! Amazing new show called #Deception You can’t… https://t.co/9kQlDntOAo +03/11/2018,Actors,@EvaLongoria,Sundays should come with a pause button 😭 https://t.co/NjEc3DxZlA +03/10/2018,Actors,@EvaLongoria,When you know it’s Saturday and you can sleep a little longer 🙌🏼🤣 Trying to get it in before daylight savings time!… https://t.co/wfUvwftH1J +03/09/2018,Actors,@EvaLongoria,🙌🏼 https://t.co/v0mtApQT8K +03/09/2018,Actors,@EvaLongoria,Congrats to this badass woman who made her “comeback” yesterday after giving birth to my future son’s girlfriend Ol… https://t.co/4z2YAnOHLr +03/08/2018,Actors,@EvaLongoria,RT @OverboardMovie: Women are stronger together. #InternationalWomensDay #OverboardMovie https://t.co/nemM6NpjWU +03/08/2018,Actors,@EvaLongoria,This #womensday I thank the future generations of women (& men) who will carry on the fight for gender equality. Wh… https://t.co/LvoPb7SXqP +03/07/2018,Actors,@EvaLongoria,Mornings were made for coffee ☕️ Happy Wednesday everyone ❤️ https://t.co/FrkRxZtcrS +03/06/2018,Actors,@EvaLongoria,Hello Sunny Tuesday ☀️ https://t.co/JHrXm4nl7c +03/05/2018,Actors,@EvaLongoria,"Dear Monday, just hand me Friday and nobody gets hurt 🤣 https://t.co/OQx3HjZrYr" +07/02/2018,Actors,@TheRock,RT @nerdist: .@TheRock pays tribute to @skyscrapermovie's great predecessors with a pair of retro posters: https://t.co/ANcPJEaza1 https:/… +07/02/2018,Actors,@TheRock,Bruce was a big influence on me. Die Hard (and Towering Inferno) were the inspirations for SKYSCRAPER. Paying homag… https://t.co/vcsMNmgD3a +07/02/2018,Actors,@TheRock,RT @TimothyDowling: Love movie posters and love these. Had that Die Hard poster on my wall as a kid. You guys need a take on the Fugitive o… +07/02/2018,Actors,@TheRock,RT @Michael_Stets: These are killer! Well done @TheRock 🙌🏻🙌🏻 https://t.co/JZ3ZZhAAsw +07/02/2018,Actors,@TheRock,RT @TheRyanParker: These posters are so freakin’ sweet‼️ https://t.co/g9rENpfg8G +07/02/2018,Actors,@TheRock,Fun promo. Let’s get it boys! @NASCAR #SKYSCRAPER https://t.co/LTFbzoqkRd +07/01/2018,Actors,@TheRock,I had these ultra cool vintage posters made paying homage to the two classic movies that inspired me and generation… https://t.co/hFV5fqmFW3 +07/01/2018,Actors,@TheRock,"Beijing bound 🇨🇳 +A pleasure to return back to China. +Can’t wait to see everyone. Let’s roll. +#WheelsUp… https://t.co/qJlp52USri" +07/01/2018,Actors,@TheRock,@robbieglover Thx man that’s a such a cool note. Appreciate you and keep on keepin on 🙏🏾👊🏾 +07/01/2018,Actors,@TheRock,@Amy__Bailey Haha 👏🏾👏🏾👊🏾 #swag +07/01/2018,Actors,@TheRock,"RT @averyhartmans: This morning, @TheRock introduced his first-ever wireless headphones, designed to help you ""crush your workouts"" 💪 https…" +07/01/2018,Actors,@TheRock,Here I go playing Willy Wonka again and surprised our lil’ baby Jazzy with this horse and carousel ride when she go… https://t.co/nx4kBditVZ +07/01/2018,Actors,@TheRock,"Off to a good start on tracking w/ a $30M U.S. number for our SKYSCRAPER debut. +Domestic box office is one piece o… https://t.co/jAC0F4ovkt" +06/30/2018,Actors,@TheRock,@gregwarhead @charliesimo @KevinHart4real @mattjwillis Haha never any shame in hustling to get your music heard dud… https://t.co/4Lxtj4PCVX +06/30/2018,Actors,@TheRock,@ollyog @MatRoff Enjoy! Pint? Nah it’s your birthday. Let’s go with a gallon +06/30/2018,Actors,@TheRock,@ollyog @MatRoff Raising a glass to you on your birthday buddy! Cheers 🍻 👊🏾 +06/30/2018,Actors,@TheRock,@charliesimo @gregwarhead @KevinHart4real @mattjwillis Haha I have a fun idea - how bout you watch it with us and t… https://t.co/FD9zsZuwMq +06/30/2018,Actors,@TheRock,@diverse_kcox Hah well tequila helps the ol’ memory 🤙🏾 +06/30/2018,Actors,@TheRock,@Sichz_ Thx dude very kind of you to say. Thx for diggin all my stuff 🙏🏾👊🏾 +06/29/2018,Actors,@TheRock,"DECEMBER 13th, 2019. +The game is not over... +And I get to slap @KevinHart4real’s lips into next week. The world is… https://t.co/LDWAxojudu" +06/29/2018,Actors,@TheRock,RT @DanyGarciaCo: SO HAPPY w/ the creative content & direction of this launch! @sevenbuckscr CRUSHED it & captured the magic of @therock an… +06/29/2018,Actors,@TheRock,Make sure you experience our VR Skyscraper leap off the crane. I tried it multiple times and failed lol. It’s an in… https://t.co/686wr7G4jg +06/29/2018,Actors,@TheRock,RT @SevenBucksDS: Who doesn’t love a good action movie (or five)? No better authorities to wax-poetic on the subject than @TheRock and Neve… +06/29/2018,Actors,@TheRock,"Boom 🎧 +One of the best, if not THE best over the ear headphones you’ll ever train in. Engineered for HARD CORE TRA… https://t.co/e0wBlzVZ0P" +06/29/2018,Actors,@TheRock,Yes sir. Get after it! Playlist personally created by me. Start with WE READY and let the destruction begin 💪🏾👊🏾… https://t.co/Zgw8FLLaKw +06/29/2018,Actors,@TheRock,"Haha thank ya for the huge SKYSCRAPER props. Very cool to see everyone loving the movie. And yes, drinking beer and… https://t.co/M1fIV7o8fQ" +06/28/2018,Actors,@TheRock,We smell it and smells like shi🤣. Thanks dude! Enjoy the training shoes! First drop sold out in 30min. We just drop… https://t.co/dynE2tHYwT +06/28/2018,Actors,@TheRock,"Enjoy the 🎧👟! +Great copps! Stay strong / train hard! +https://t.co/vYtBQVsMjX https://t.co/ZgZXy5WtfF" +06/28/2018,Actors,@TheRock,@redletterdave Great idea💡 but I’ll do it in multiple accents and ever so slightly drunk of tequila lol 👊🏾 +06/28/2018,Actors,@TheRock,"RT @redletterdave: These headphones sound great. + +Next version: An onboard AI like Siri, but with The Rock's voice, to motivate your candy…" +06/28/2018,Actors,@TheRock,"Thank you man. +I put a lot of effort into delivering high quality @UnderArmour products. +And please don’t go brok… https://t.co/UTYmSrWhaX" +06/28/2018,Actors,@TheRock,"Thank you man and enjoy the great. Those #ProjectRock1s training shoes sold out in less than 30min, four weeks ago,… https://t.co/TN59pN6qsV" +06/28/2018,Actors,@TheRock,@ollyog Happy early birthday to my BFF. I will never again equate an emoji face with masculinity 😂🤦🏽‍♂️ +06/28/2018,Actors,@TheRock,"Great review! +I also added new “talk thru technology” which allows us to keep our headphones ON and listen to peop… https://t.co/GPYKeEAm76" +06/28/2018,Actors,@TheRock,"@ChrisClarkNFL @UnderArmour Cool! Let me know how you like em dude. Again, if they suck, let me know and I’ll send… https://t.co/fu5dlHa5vU" +06/28/2018,Actors,@TheRock,"Enjoy @averyhartmans!! Crush it! +🎧 💪🏾 +https://t.co/vYtBQVsMjX https://t.co/LWmTIqGvXC" +06/28/2018,Actors,@TheRock,"Enjoy my man 🎧 +They’ll be one of the best, if not, the best over the ear headphones you’ve trained in. +And because… https://t.co/9P2lJ8YO2T" +06/28/2018,Actors,@TheRock,"It’s ON! +Our most anticipated @underarmour #ProjectRock drop - the CHASE GREATNESS COLLECTION is OUT NOW. +As alwa… https://t.co/8O8BLDoTye" +06/28/2018,Actors,@TheRock,"RT @ShannonCorbeil: So @TheRock is awesome, obviously, but Neve Campbell as a badass combat veteran stole my heart. + +#SkyscraperMovie is F…" +06/28/2018,Actors,@TheRock,See you at the top one day man. Keep puttin’ in that hard work. Glad you loved the movie. #SkyscraperMovie https://t.co/UFIeOqnlI1 +06/28/2018,Actors,@TheRock,"Billy’s right! +But for the sweet science record, asteroids are always a pain in the a** to stop. I can stop meteor… https://t.co/Ei1Vhxt2ub" +06/28/2018,Actors,@TheRock,"👏🏾👊🏾 Neve Campbell, who plays my wife, crushes in our movie. Proud of her! Our writer/director @RawsonThurber wrote… https://t.co/WOvCKnAQKH" +06/27/2018,Actors,@TheRock,@Reluctantly_pod @djdizzle82 @KathrynGironimi 🙏🏾 for tha luv!!;) +06/27/2018,Actors,@TheRock,Yessss! More @caityweaver love for writing one of the greatest profiles of all time. (of course she had a brilliant… https://t.co/PvxMhrmk93 +06/27/2018,Actors,@TheRock,"Very cool, significant and rare news for our SKYSCRAPER in CHINA. The country has awarded us a July 20th release da… https://t.co/RwOv4qyxQI" +06/27/2018,Actors,@TheRock,Dude always a pleasure working with you. Never an ego and always down to do whatever it took to entertain the fans.… https://t.co/1heOocEY3N +06/26/2018,Actors,@TheRock,"Reddit community time for some fun! +Tomorrow (Wed) join my SKYSCRAPER writer/director Rawson Thurber at 3pm PDT. +G… https://t.co/rRPKU5jAoG" +06/26/2018,Actors,@TheRock,"You know I love my contests & giving cool shit away! 🤙🏾 +Teamed up w/ @AtomTickets to make the SKYSCRAPER TICKET TO… https://t.co/f8CskZQOI1" +06/26/2018,Actors,@TheRock,RT @DanHevia: I never knew I needed @TheRock vs. @rustyrockets until now. @HBO this is why I subscribe. 🤙 https://t.co/gaK5zlatBV +06/26/2018,Actors,@TheRock,RT @AprilCPA1991: Yes!! One of my fav shows is coming back! Love #ballers and love the cast! Especially my fellow UM alum @TheRock ! 🙌🏼🙌🏼 h… +06/26/2018,Actors,@TheRock,RT @elaysiaamour: Yessss let’s gooo https://t.co/ZaHdBIjc5b +06/26/2018,Actors,@TheRock,RT @hhe_71: Lets goooo! Can’t fuckin’ wait! #ballers https://t.co/koxKmfNxQi +06/26/2018,Actors,@TheRock,"RT @LucasSteagall: Fun fact: A day acting on this show is my favorite day on set of all time, every time. Another fun fact @TheRock is a fr…" +06/26/2018,Actors,@TheRock,RT @scott_f_mack: Awesome to see the next season of #ballers is coming out this summer. Can’t wait to check it out 👀 https://t.co/08KVSEVW4o +06/26/2018,Actors,@TheRock,RT @akhilg06: Love this show #ballers https://t.co/lQTPn1rpeT +06/26/2018,Actors,@TheRock,RT @OilyMomHere: Woo hoo!!! So excited for this season to rock....thank you https://t.co/yRYYonOfqI +06/26/2018,Actors,@TheRock,RT @peterocksteady: Feel like I've been waiting forever big bro @TheRock I'm Ready! #Ballers https://t.co/CECRwP9Nrz +06/26/2018,Actors,@TheRock,"I’m blown away. Thank you CHINA 🇨🇳 +RAMPAGE crosses the rare $1Billion RMB mark & becomes my highest grossing film… https://t.co/SXVQHo99PV" +06/26/2018,Actors,@TheRock,Pleasure meeting my dude @nicksanto534. What a positive ray of light and “no excuses” perspective on approaching li… https://t.co/GsozXiF95f +06/25/2018,Actors,@TheRock,@kharypayton 😂 👏🏾👊🏾 fuckin classic (and true) +06/25/2018,Actors,@TheRock,"RT @SevenBucksProd: Different coast, same hustle. @BallersHBO is back in business August 12 on @HBO. #Ballers #HBO https://t.co/wFS63l0c76" +06/25/2018,Actors,@TheRock,NEW SEASON of @ballershbo & this may be our best yet. We’re @HBO’s #1 half hour show for years now & I’m very proud… https://t.co/7omCBgbM6I +06/24/2018,Actors,@TheRock,"I’d 💯 vote for him, because he’s King of the ‘Gram but I also heard he’s a real a**hole, so no vote for him.… https://t.co/btUaVX3TOv" +06/23/2018,Actors,@TheRock,"Starting off my Sat by reviewing new TV spots for SKYSCRAPER. +Note pad and pen at the ready and diggin’ in to my p… https://t.co/8zsNzVRX3G" +06/23/2018,Actors,@TheRock,Join us today at 415 EST on ⁦@FOX for NOSSA CHAPE. Took me a few takes to fight back tears and get thru my lines fo… https://t.co/ElvmQIUxvl +06/23/2018,Actors,@TheRock,Wow FIVE #TeenChoice2018 NODS. THANK Y’ALL so very much. Grateful to have the greatest fans on the planet. Vote now… https://t.co/1iWX47cIkF +06/22/2018,Actors,@TheRock,"3 week countdown is on. +Most anticipated “nail biting, terrorizing fun you’ll have three thousand feet in the sky”… https://t.co/HcSeDurKTQ" +06/22/2018,Actors,@TheRock,"Hey punk @JKCorden, you’re gonna need much more than a silly #EatShitTheRock hashtag to start a beef between me and… https://t.co/MtXBIv4NnO" +06/21/2018,Actors,@TheRock,"RT @skyscrapermovie: EXCLUSIVE: A family in danger, an impossible leap, heroes, villains... @TheRock and the #SkyscraperMovie filmmakers gi…" +06/21/2018,Actors,@TheRock,"Big #ChaseGreatnessCollection2 drops next THURSDAY 6/28. +Including my first signature shoe that, fortunately sold… https://t.co/PCYerDRk9z" +06/21/2018,Actors,@TheRock,You make us happy too El. And thanks for including Kev’s name in your tweet. He gets super jelly when he’s not ment… https://t.co/BwQFadIjwp +06/20/2018,Actors,@TheRock,@cebsilver I’m skeptical reading “former” gym rat which I assume means you don’t train anymore. These headphones may not be for you buddy +06/20/2018,Actors,@TheRock,"Hype is real 🎧! +Our new #ProjectRockWireless @UnderArmour @JBLaudio first ever HARDCORE TRAINING headphones drop ne… https://t.co/hY1zHTGVMs" +06/20/2018,Actors,@TheRock,"Cool SKYSCRAPER movie fact/ +We hired Adrian… https://t.co/DTIoJndovx" +06/20/2018,Actors,@TheRock,"They’re here 🎧 +Like you, my gym time is… https://t.co/BuqXovimEt" +06/19/2018,Actors,@TheRock,"As you know, #SKYSCRAPER is my homage to DIE… https://t.co/wt17KA6U92" +06/19/2018,Actors,@TheRock,"Always make it about consistency, not greatness. Greatness will come. Have a GREAT season boys. Big respect & suppo… https://t.co/uvB7JJVNGD" +06/18/2018,Actors,@TheRock,@ava Congratulations AD. Onward/Upward 🤙🏾 +06/18/2018,Actors,@TheRock,Kuz told me he wanted his best summer ever. Boy’s puttin’ in the work 👏🏾💪🏾 https://t.co/j4z2i1i6mX +06/18/2018,Actors,@TheRock,@RealPAULLOGAN Thank you PL!! Appreciate it brother 👊🏾 +06/18/2018,Actors,@TheRock,"Trust me, Mel - I only got on my knees to feed Lauren while she breastfed because I was told there was free waffles… https://t.co/BPYpDR8nFw" +06/18/2018,Actors,@TheRock,So humbling and GRATEFUL to see @MakeAWish wish granting come full circle in my family. Thank you to the entire Mak… https://t.co/CcxZGIThAg +06/18/2018,Actors,@TheRock,@Emilyvaughnx Thx you Em!!! 🙏🏾👊🏾❤️ +06/18/2018,Actors,@TheRock,Haha perfect. Congratulations my friend on #5. I got some work to do to catch up. I’ll stay practicing lol.… https://t.co/7eLJxUY2wL +06/18/2018,Actors,@TheRock,"Bitter sweat Sunday, but my baby girl’s made it… https://t.co/ee4yx9nPgG" +06/17/2018,Actors,@TheRock,"What are you so upset about brother. You told me last month you’re not their real father anyway. +Love ya buddy and… https://t.co/xixnJdD2Yp" +06/17/2018,Actors,@TheRock,Happy Father’s Day to this hardly ever smiling… https://t.co/hIV2tdkbXo +06/17/2018,Actors,@TheRock,Family 👊🏾 Congrats boys! 🇲🇽 Thank you to my… https://t.co/YHVaFki6hV +06/16/2018,Actors,@TheRock,"Close up the honky tonks and lock all the doors,… https://t.co/5w7Q09YJ4U" +06/16/2018,Actors,@TheRock,"Calm before the storm. +Shooting our big… https://t.co/ySFgMwFknp" +06/16/2018,Actors,@TheRock,"*swipe left +Day of reckoning. 108 degrees.… https://t.co/oYgIlW1uck" +06/16/2018,Actors,@TheRock,"Family 👊🏾 +Thank you to my boys @jona2santos… https://t.co/Pq5QBYW3FH" +06/16/2018,Actors,@TheRock,"Doing some great biz with Universal. Grateful to have started my career with them years ago (Scorpion King). +Good… https://t.co/5SFcATqY4t" +06/16/2018,Actors,@TheRock,"Ladies, gents and children of all ages.. The… https://t.co/c7kMjovDUx" +06/16/2018,Actors,@TheRock,"🙏🏾 Much mahalo for this crazy fun buzz. RED NOTICE was the pitch that created a huge bidding war, eventually becomi… https://t.co/oaZUFwOYbp" +06/16/2018,Actors,@TheRock,Cool to feel the early buzz about RED NOTICE - an international heist thriller with myself and my darlin’ friend… https://t.co/e7q9jCqH0J +06/16/2018,Actors,@TheRock,Dude on the left is pretty good at what he… https://t.co/SrS9QYP1OZ +06/16/2018,Actors,@TheRock,@greengoblin Def you!! 👊🏾 +06/15/2018,Actors,@TheRock,"SKYSCRAPER is my homage to DIE HARD & TOWERING INFERNO. A love letter to Willis, McQueen, Newman and Dunaway. +And… https://t.co/0IrtvrwtQm" +06/15/2018,Actors,@TheRock,"@preston316 Absolutely amigo. It’s inspired by Towering, Die Hard, The Fugitive.. films of the 70s & 80s genre. Ins… https://t.co/5hygFB0yj2" +06/15/2018,Actors,@TheRock,"@chriswelch Dammit Chris it’s daddy, not dad" +06/15/2018,Actors,@TheRock,"A father’s love is fierce. +Excited to deliver to you this summer’s most anticipated original action film.… https://t.co/Q3l4trW9y4" +06/15/2018,Actors,@TheRock,"@Fisher_DanaR Haha yes it is D. It’s secretly, Kevin Hart wearing a raccoon costume" +06/15/2018,Actors,@TheRock,😂👊🏾 “Hold my beer and watch this shit” #MPRRaccoon https://t.co/FNg7lfLeLL +06/14/2018,Actors,@TheRock,"Just three dudes. +Great chop session with this… https://t.co/42znOHlvkA" +06/14/2018,Actors,@TheRock,"@ChrisEvans Happy Birthday brotha! Halfway to 74! +🤣🤙🏾👊🏾" +06/13/2018,Actors,@TheRock,Thank ya dude. The movie is fantastic. Enjoy! And I AM TOUGH.. in my mind only 😂 #Skyscraper https://t.co/dpkTVdr70W +06/13/2018,Actors,@TheRock,"In ONE MONTH.. yup, it all goes wrong. +#SKYSCRAPER JULY 13th 🌎 https://t.co/73aA2E946g" +06/13/2018,Actors,@TheRock,"Found this gem 💎 +Check out 22yrs old and 280lbs… https://t.co/MsyIXpCrto" +06/13/2018,Actors,@TheRock,"*scroll left +I wrote Gal’s name down on my… https://t.co/L9890p0MZd" +06/12/2018,Actors,@TheRock,This one got me. Lil’ Carter here has children’s Alzheimer’s (Sanfilippo syndrome). Check out this vid and if you c… https://t.co/OR5H7ahpgc +06/12/2018,Actors,@TheRock,@a_lemay224 Perfect!! #swag +06/12/2018,Actors,@TheRock,"@KicKeePants Much much mahalo for the amazing warm and cozy’s. Unfortunately, none of it fits me, so I guess I’ll g… https://t.co/xaY62Bot0f" +06/11/2018,Actors,@TheRock,"Got my ass kicked today training legs. +3… https://t.co/Bwh3rlllbL" +06/10/2018,Actors,@TheRock,"Back of the jet is called, “DJ’s Think Tank”… https://t.co/jCcX7tps6N" +06/10/2018,Actors,@TheRock,"Wheels up / rockin’ out 🤟🏾 +#FlyingSilverEagle… https://t.co/Xkub5B3OUQ" +06/10/2018,Actors,@TheRock,"Meet Will Sawyer: +Father. Husband. Amputee. BAMF. +Don’t ever underestimate the power of a desperate man protectin… https://t.co/111rhg5N5m" +06/10/2018,Actors,@TheRock,@jimmykorderas Haha I always need your help man. Just like back in our ring days when I needed you to quick count every time I won lol +06/09/2018,Actors,@TheRock,Always ‘preciate you brotha. Keep doing great things and spreading the good word. #theotherside https://t.co/Xgkv98WoNp +06/07/2018,Actors,@TheRock,Still much to learn in the shoe and apparel… https://t.co/w8kFqKHfS1 +06/07/2018,Actors,@TheRock,@Stands And a very special goodnight to you too;) +06/07/2018,Actors,@TheRock,@OmarMiller’s a good man and I’m happy to help. Continued blessings to you guys and the mission center. https://t.co/XXvE2dxtiV +06/06/2018,Actors,@TheRock,@Chris_Ciaccia @UnderArmour Thanks for writing it my man. Reading fresh language about my biz helps me understand a… https://t.co/hE9T383oWu +06/06/2018,Actors,@TheRock,"Again, very nice measure and metrics to sell out so fast, but also gave me great clarity on where we can improve gr… https://t.co/rQvqIyO1Tc" +06/06/2018,Actors,@TheRock,"Market analytics ain’t sexy at all to tweet about, however nice to see our #ProjectRock footprint making an impact… https://t.co/CKz6pUwYrT" +06/06/2018,Actors,@TheRock,Great success with our launch. Sold out in 30min. Satisfied consumers but still lots of work to be done! Always loo… https://t.co/cFJAjxORIh +06/06/2018,Actors,@TheRock,@JamesGunn @karengillan @michaelrosenbum @jumanjimovie @Guardians @seangunn @jackblack @prattprattpratt… https://t.co/YVTxJKeUE4 +06/06/2018,Actors,@TheRock,"Hell, we’ll get therapy together brother lol. Keep kickin ass champ! 🤙🏾👊🏾 https://t.co/qC5MhaXUhX" +06/05/2018,Actors,@TheRock,@LegitJoeyBowie Boom 💥 🤙🏾👊🏾 +06/05/2018,Actors,@TheRock,These are called the “Hobbs Beef Piston Power… https://t.co/b6UthHycNu +06/04/2018,Actors,@TheRock,@mattdavella My all time fav pic. Thx for the love man! And that’s because you keep calling me from a pay phone...… https://t.co/1KiLcsvliw +06/04/2018,Actors,@TheRock,"Yes sir. We gotta have faith that the one thing we always wanted to happen, can often be the best thing that never… https://t.co/QmXueKgjLB" +06/04/2018,Actors,@TheRock,"Sunday shakas and scripts. +Reading our new Fast… https://t.co/i2UJacOjub" +06/04/2018,Actors,@TheRock,I have some great and productive conversations… https://t.co/EQU8fnWkqR +06/04/2018,Actors,@TheRock,"If you’re goin’ thru the struggle, hold on to… https://t.co/OPRXBNaEF7" +06/03/2018,Actors,@TheRock,Thank you man and have a great workout! Women’s ProjectRock shoes in development and delivering at the top of 2019.… https://t.co/jBnQ0Snozz +06/03/2018,Actors,@TheRock,"I got you @TiffanyHaddish! Yes, the secret password to our secret society MTV-inati, is “@KevinHart4real is shorter… https://t.co/Ktr7I4WhnV" +06/03/2018,Actors,@TheRock,Months and months of collaborating with @UnderArmour’s top designers. Thank you everyone who made our launch a huge… https://t.co/OfzCJ4ayHF +06/03/2018,Actors,@TheRock,"“Let It Go” + +You’re welcome. https://t.co/BPMS6gwpWQ" +06/03/2018,Actors,@TheRock,@Anna_Rothschild @SirDavidBBC @washingtonpost Aw thank ya for the love Anna! Flattered by the gesture 🤟🏾 for the re… https://t.co/K9qZbR8BDr +06/03/2018,Actors,@TheRock,"Hi Bob, which nickname are you referring to? Big Daddy? The Rock? Samoan Thor? Beef Piston? Or the inappropriate on… https://t.co/4dp4Wh8499" +06/03/2018,Actors,@TheRock,@KaylaBraxtonWWE Hah I’ll totes see ya there as per yoosh;) +06/03/2018,Actors,@TheRock,🙏🏾❤️ Aww thank ya Audra! Wishing everyone the best of luck for our #WarriorGames! Kick ass and have fun. And geeezu… https://t.co/vrr2EI8mdT +06/03/2018,Actors,@TheRock,"Very cool and flattering @DakotaKai_WWE. Thank you! Look forward to following your career. Work extremely hard, hav… https://t.co/Ts9C7AhYL9" +06/03/2018,Actors,@TheRock,You’re welcome cuz! Always proud of your success and hard work. Enjoy the Project Rock @UnderArmour gear and… https://t.co/lgSymLeOih +05/31/2018,Actors,@TheRock,@mikeavila @joemoscone77 Haha not at all! Flair over me is a smart move and I agree. He was one of my squared circl… https://t.co/5ZfqBjQr5v +05/31/2018,Actors,@TheRock,@AlexJamesFitz Some jerk asshole lol. We also have to add TOWERING INFERNO and THE FUGITIVE to the title +05/30/2018,Actors,@TheRock,RT @rampagethemovie: #RampageMovie is like nothing you’ve ever seen before. Don’t miss out on taking all the action with @TheRock home! Own… +05/29/2018,Actors,@TheRock,@KevinMcCarthyTV Thank you dude so much!! You’re gonna love the movie!! @RawsonThurber (writer director) did an ama… https://t.co/Y7gK6e3EQV +05/29/2018,Actors,@TheRock,Happy to see all the great reviews for my new signature training shoe @UnderArmour #ProjectRock1s. Spent a long ti… https://t.co/EDc6RKYDSI +05/29/2018,Actors,@TheRock,Thank you everyone for rockin’ with my new signature shoe - the #ProjectRock1s from @UnderArmour. In 30min they wer… https://t.co/U2NmkoraTF +05/29/2018,Actors,@TheRock,RT @johnkrasinski: Memorial Day. A day to honor and remember each and every one of the brave men and women who lay down their lives for ea… +05/29/2018,Actors,@TheRock,RT @prattprattpratt: I did my Murph yesterday because i’m in Shanghai where yesterday is already tomorrow? (or something like that) we’ve b… +05/29/2018,Actors,@TheRock,@Ron_Clements @buffa82 @UnderArmour Awful? 😂 Well I can promise you we’re not that my friend. Nice profile pic. Fuck off 💁🏾‍♂️🖕🏾 +05/29/2018,Actors,@TheRock,Incredible day for our first signature series @UnderArmour #ProjectRock1s - 100% sold out in 30min. It’s a smart tw… https://t.co/514lIwM45d +05/29/2018,Actors,@TheRock,"It’s Dwight you dickhead. Let’s get to work Jeff. + +Jokes aside, this one is truly going be an honor.… https://t.co/ONlPSKLofB" +05/28/2018,Actors,@TheRock,"Whoa. Blown away... +I got up at 4am (Hawaii time) today to launch my new signature series @UnderArmour… https://t.co/xFdLhHy1ng" +05/28/2018,Actors,@TheRock,"#ProjectRock1s AVAILABLE NOW 🔥 +My 1st signature series shoe from @underarmour. I’ve engineered & broken these down… https://t.co/72GR1N4B5a" +05/27/2018,Actors,@TheRock,Just when I thought I couldn’t be any more… https://t.co/fXdpUq5Vd2 +05/27/2018,Actors,@TheRock,@TheVenskus Papa? No. Daddy? Yes. Lol +05/27/2018,Actors,@TheRock,Just when I thought I couldn’t be any more… https://t.co/JbO0qQXCeZ +05/27/2018,Actors,@TheRock,@ChrisClarkNFL @UnderArmour You’ll dig these PR1’s for sure my man. The 15’s are large and wide. Not a narrow shoe… https://t.co/hWA1aCTPJl +05/27/2018,Actors,@TheRock,Leg day in my new @underarmour #ProjectRock1s… https://t.co/w5Mav66CJM +05/27/2018,Actors,@TheRock,Scroll left for the exclusive first look at my… https://t.co/YV6lUMi4Lk +05/27/2018,Actors,@TheRock,"We’re all in the same game, just different… https://t.co/923SoZjKmO" +05/26/2018,Actors,@TheRock,"Well I keep asking you out to join me for an amazing time eating dead cow and drinking tequila, but the “dead cow”… https://t.co/1PHMbgrAIz" +05/26/2018,Actors,@TheRock,"Love this. Have fun and tell the awesome birthday girl, Uncle Rock says “Have a blast on your birthday and go spend… https://t.co/N3HuNCuiYv" +05/26/2018,Actors,@TheRock,Here’s a breakdown of our 18month process on the development and engineering of my new signature sneaker. Pretty in… https://t.co/vpPZhox1oR +05/26/2018,Actors,@TheRock,"I’ve developed, trained in, broken down and refined this sneaker for over a year now. Highest of quality and durabi… https://t.co/wEZ9t96zOi" +05/26/2018,Actors,@TheRock,"This MONDAY we drop our new @UnderArmour #ProjectRock1s. +My first signature sneaker series from our CHASE GREATNES… https://t.co/Pa9aZsu8zO" +05/26/2018,Actors,@TheRock,"@johnreport @NatbyNature Your action figure looks way cooler, sexier & bad ass. Mine looks constipated and confused… https://t.co/svrXL9IQRH" +05/24/2018,Actors,@TheRock,Scroll left for the exclusive first look at my… https://t.co/mJD5DEIae9 +05/24/2018,Actors,@TheRock,And that’s saying A LOT cause your head is HUGE my friend @TheRossKing 😉🤙🏾. Always a good time chatting s you!… https://t.co/657lIG5hc2 +05/24/2018,Actors,@TheRock,Great time. Thank you for having me on your show! #Skyscraper https://t.co/z2Ap5sTmor +05/24/2018,Actors,@TheRock,"A lil’ taste of my new @UnderArmour PROJECT ROCK 1’s. +Been training in these and improving their quality for over… https://t.co/M0ZyfsnBh6" +05/24/2018,Actors,@TheRock,@toryshulman @skyscrapermovie @dailyblastlive Dude I wanted to cast you but what’s his name said no. Can’t remember… https://t.co/HMbtHGRgox +05/24/2018,Actors,@TheRock,"@HistoryofWrest Every Saturday night, I was at this show with my dad at the Portland Sports Arena. On Sunday’s the… https://t.co/bEnWyCuNTC" +05/23/2018,Actors,@TheRock,"I made a movie that pays homage to films that inspired me & a generation w/ grit, guts and heart - DIE HARD, THE TO… https://t.co/HI5Mku341r" +05/22/2018,Actors,@TheRock,"New full length SKYSCRAPER trailer drops tomorrow. +Most physical, emotional and intense role of my career. +I need… https://t.co/eKlQpsYeS1" +05/22/2018,Actors,@TheRock,"RT @EWagmeister: Another day, another piece of news coming from @TheRock’s world! + +DJ & his @SevenBucksProd business partner @DanyGarciaCo…" +05/22/2018,Actors,@TheRock,My main objective is to always make movies for the world to enjoy. And now that fun movie going experience extends… https://t.co/1AIdAdrwqI +05/22/2018,Actors,@TheRock,RT @Variety: Dwayne @TheRock Johnson and @DanyGarciaCo are bringing more high-wattage Hollywood electricity to Atom Tickets' advisory board… +05/21/2018,Actors,@TheRock,@JerryJarrett @TheJimCornette @HistoryofWrest I wish I did remember that Jerry! Dad always spoke highly of you and… https://t.co/WSDa0w7gUs +05/21/2018,Actors,@TheRock,A lil’ taste of my new SKYSCRAPER trailer debuting THIS WEDNESDAY! #SKYSCRAPER https://t.co/1UWy8lDVe5 +05/20/2018,Actors,@TheRock,@AdrianneCurry @TheMatthewRhode @jumanjimovie @skyscrapermovie Do it dude!! Thats the kind of deal where there are… https://t.co/C3fwz0vTlF +05/20/2018,Actors,@TheRock,"@robcorddry @hwinkler4real Dear Rob, I signed an autograph pic for Henry and it should be arriving this week into h… https://t.co/jxc3ld1nOY" +05/20/2018,Actors,@TheRock,"Saturday night doc viewing. +@thenotoriousmma… https://t.co/byQCyyIrSX" +05/20/2018,Actors,@TheRock,We’re gonna have times in our lives where we… https://t.co/YcF8eCjTiJ +05/20/2018,Actors,@TheRock,It’s a success philosophy thats worked very well… https://t.co/wr0ik4wlqn +05/20/2018,Actors,@TheRock,Thank you @lakers for having me speak to the… https://t.co/IXjvyhDV9K +05/20/2018,Actors,@TheRock,Just stopping in to show my appreciation and… https://t.co/bTS525qeB8 +05/20/2018,Actors,@TheRock,@chrissyteigen See baby you’re doing great!! @LaurenHashian 😉👍🏾 +05/20/2018,Actors,@TheRock,@Crockettfroggy @Goldust @Zelina_VegaWWE @JoeDiffieOnline Sheeeeyat am I a Joe Diffie fan? “If you want me to” is o… https://t.co/bU5gaNghgS +05/20/2018,Actors,@TheRock,@HistoryofWrest You can actual FEEL the tension and energy in the arenas across the country in the 70’s during matc… https://t.co/ZkaY20gGuw +05/20/2018,Actors,@TheRock,@Goldust @Zelina_VegaWWE Congrats brother. Proud of you (still remember us listening to ol’ Joe Diffie on the bus on the Germany tour;) +05/20/2018,Actors,@TheRock,@SMUheavyweight @OldWrestlingPic the original oooooh yeah! +05/20/2018,Actors,@TheRock,@SamariaPele Aww thank you sis!! +05/19/2018,Actors,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/QBEPyVqcxd" +05/19/2018,Actors,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/ajaZ2AxBgy" +06/26/2018,Actors,@jessicaalba,@CharterNewsroom +06/26/2018,Actors,@jessicaalba,We are here to kick ass and take names 💪🏽!!! LA’s Finest has been officially picked up by Charter Communications—ma… https://t.co/Xy9q9xe4iQ +06/19/2018,Actors,@jessicaalba,Signed 100+ copies of my July InStyle and I'm going to pop them into Honest bundles soon. Watch to see how I answer… https://t.co/euZhqz6jSf +06/12/2018,Actors,@jessicaalba,Haven showing off her sweet moves for her mama @instylemagazine #momlife #entrepreneurlife #flossin #haviepie… https://t.co/YIiMSbnbfE +06/12/2018,Actors,@jessicaalba,Haven showing off her sweet moves for her mama… https://t.co/cUzpPuldY6 +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they… https://t.co/raxt3FHBn2 +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they… https://t.co/6opFhpYQis +06/11/2018,Actors,@jessicaalba,@instyle says I'm the mom-in-chief and they know… https://t.co/NBiD6O1F5N +06/08/2018,Actors,@jessicaalba,#fbf Thx landmarkhk for a great forum discussion… https://t.co/S337NUmB09 +06/07/2018,Actors,@jessicaalba,RT @wwd: .@jessicaalba’s the @Honest Company just landed a $200 million investment — and @Honest_Beauty is expanding to Europe for the firs… +06/07/2018,Actors,@jessicaalba,"RT @SuperSoulSunday: In an interview with @AlexBanayan, @JessicaAlba says why you should stop comparing yourself to others and embrace your…" +06/05/2018,Actors,@jessicaalba,We had a great chat #womenrulesummit @politico… https://t.co/2I1o37mGU1 +06/01/2018,Actors,@jessicaalba,"Hello @LandmarkHK , thanks for the warm welcome! +I will be sharing my journey as an entrepreneur, advocate & mothe… https://t.co/0qd6DgbzFg" +05/31/2018,Actors,@jessicaalba,"RT @InStyle: .@JessicaAlba on her TV comeback, breast pumping on set, and her biggest parenting mistake. https://t.co/Tv3pkQx2Yp" +05/30/2018,Actors,@jessicaalba,So excited about this partnership! @Honest_Beauty will be in EU! https://t.co/9WiQPI41mT +05/22/2018,Actors,@jessicaalba,My sweet baby Hayes and his amma helped me reveal our new summer diaper collection! My babe is going to live in the… https://t.co/mi1wkzQE3r +05/13/2018,Actors,@jessicaalba,Love this mother daughter duo!!!! Happy Mother’s Day! https://t.co/Qm0kxaCJYd +05/12/2018,Actors,@jessicaalba,@chrissyteigen @TheBabyGuyNYC All the time +05/08/2018,Actors,@jessicaalba,Thank you to @Delta for flying in all of the members of the @Baby2Baby National Network for our 4th Annual Summit!… https://t.co/YXtUOEYnut +05/04/2018,Actors,@jessicaalba,"Went to postmate lunch, saw the cinco de mayo menu, ended up ordering for the whole office https://t.co/qghQq2OjHa" +04/23/2018,Actors,@jessicaalba,https://t.co/xYO2Ru7ye4 https://t.co/i0p20gEe9q +04/10/2018,Actors,@jessicaalba,"On average, women are paid 20% less than men—and Black women and Latinas are paid even less. + +#20PercentCounts on… https://t.co/9ZIk8MO90d" +04/10/2018,Actors,@jessicaalba,Ever thought about what you’d do with 20% more pay? @LeanInOrg asked women just that. Check out their answers in th… https://t.co/LzVaypUxo6 +04/03/2018,Actors,@jessicaalba,@itsgabrielleu and I loved teaming up 👯‍♀️🚔 to shoot this pilot 🎬 for @BRUCKHEIMERJB… https://t.co/WpM2yM1r2o +03/28/2018,Actors,@jessicaalba,RT @itsgabrielleu: We ride together. We thrive together. We lip synch Timbaland & Magoo together. 💃🏽💃🏾 @jessicaalba #McKenna & #Syd #IssaPi… +03/03/2018,Actors,@jessicaalba,RT @THR: .@JessicaAlba & @ItsGabrielleU are teaming up for NBC's 'Bad Boys' spinoff https://t.co/uf2ck2DPLw https://t.co/DAHORvumk4 +02/04/2018,Actors,@jessicaalba,"Can't. handle. the. cuteness. Who's winning? My team that got to play with puppies and babies all morning,... https://t.co/kwEJf04Fu5" +02/01/2018,Actors,@jessicaalba,"RT @shondarhimes: Okay. Entertainment industry, time to stop using the phrases ""Smart Strong Women"" and ""Strong Female Leads"". There are…" +02/01/2018,Actors,@jessicaalba,"RT @Honest_Beauty: Q&A: What’s The Best Way To Winterize Hair? We went to @jenatkinhair, jetsetting celebrity hair stylist, for her take on…" +01/29/2018,Actors,@jessicaalba,RT @Honest_Beauty: Leave-in conditioner is the foundation for great hairstyling; it's the first product that should touch your hair once it… +01/16/2018,Actors,@jessicaalba,"Before baby #3 was born, we made sure to declutter--it's so important these days since it seems like we're... https://t.co/i8GuwkwmdJ" +01/04/2018,Actors,@jessicaalba,https://t.co/yyaUhal7JY +01/02/2018,Actors,@jessicaalba,Happy New Year! -our little NYE angel baby Hayes Alba Warren born 12/31/17 -His sisters are obsessed with him.... https://t.co/QSEzLgpQoq +12/28/2017,Actors,@jessicaalba,Only 7 days to build!? This is crazy!! https://t.co/k26D9JkGxG +12/22/2017,Actors,@jessicaalba,Here’s my favorite look for the Holidays. I’m creature of habit and not gonna lie -I literally do this same look... https://t.co/9cupjyZKx9 +12/20/2017,Actors,@jessicaalba,"It's Netflix & chill season so add El Camino Christmas to your binge list. It's streaming now - happy holidays,... https://t.co/kQSb6QUKtx" +12/20/2017,Actors,@jessicaalba,It's @Netflix & chill season so add El Camino Christmas to your binge list. It's streaming now-… https://t.co/4bq14Mt6gc +12/06/2017,Actors,@jessicaalba,RT @baby2baby: Make an immediate impact on the victims of the Southern California fires using our registry. Baby2Baby 2 The Rescue has par… +12/06/2017,Actors,@jessicaalba,RT @Honest: You get better. https://t.co/dwKIzDRxTq +11/30/2017,Actors,@jessicaalba,Did an awesome live beauty tutorial with Christine! I did a holiday makeup look on her with Honest Beauty and she... https://t.co/LJzsprgjKx +11/22/2017,Actors,@jessicaalba,Not your average Christmas story... El Camino Christmas premieres on @Netflix on December 8th!… https://t.co/R0Yu3U6pFk +11/18/2017,Actors,@jessicaalba,Hey there I’m @nordstrom today! chk out #Nordstrom Insta Stories to get behind the scenes of my appearance! https://t.co/2LyUezKdIc +11/18/2017,Actors,@jessicaalba,Went to @babiesrus & did some registry picks w this beautiful first time mama Annie -Link in Bio to see what we... https://t.co/R2Q4Z91mvN +11/17/2017,Actors,@jessicaalba,"Jessica Alba is live at Babies""R""Us to help expecting mama Annie register for her little one arriving in January.... https://t.co/x9XC38vZev" +11/16/2017,Actors,@jessicaalba,RT @Honest_Beauty: Talk about picture perfect! @ChrissyTeigen is on the cover of @InStyle wearing an #HonestBeauty look designed by @DMart… +11/16/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""A monthly favorites post just couldn’t go without a product from Honest Beauty. All month long I've been using the Beyo…" +11/09/2017,Actors,@jessicaalba,Maria Shriver and Jessica Alba are live from The Honest Company as part of the ongoing series Architects of Change. https://t.co/J6ZSCURd9P +11/08/2017,Actors,@jessicaalba,"RT @RachaelRayShow: TODAY: Why is @jessicaalba cleaning one viewer’s house?! And can slime make your kitchen sparkle? + +Showtimes: https://t…" +11/08/2017,Actors,@jessicaalba,RT @Honest_Beauty: Founder @JessicaAlba looked glam & glowy on the @RachaelRayShow. Get the look details from @dmartnyc @JenniferYepez: htt… +11/08/2017,Actors,@jessicaalba,RT @BritandCo: Take the stress out of cleaning with @jessicaalba’s insanely easy tips. https://t.co/n88zVtbjKF https://t.co/ZdVGVaAB8h +11/07/2017,Actors,@jessicaalba,A study found that adults who spend more than four hours in front of a computer every day increase their risk of... https://t.co/3A75QI2P0a +11/01/2017,Actors,@jessicaalba,"I just revealed The Honest Company's newest diaper prints for winter! Honor and Havie were 2 of my little elves,... https://t.co/TlknY0VfQ6" +10/30/2017,Actors,@jessicaalba,Check out some tips on how to fall asleep faster on this week's Health Hacks. Comment 😴😴 if you find it hard to... https://t.co/3Y9ZzCsQxp +10/29/2017,Actors,@jessicaalba,A few of our #halloweencostumes w @kellysawyer. Gonna nap to try to motivate for tonight -I’m so pregnant and... https://t.co/tZhDc8hETg +10/27/2017,Actors,@jessicaalba,Had a major pinch me moment visiting @goodhousekeeping HQ in #NYC -So incredibly proud our @honest hero cleaning... https://t.co/9wzawq8fAa +10/26/2017,Actors,@jessicaalba,A little snippet from my LIVE store visit @buybuyBABY seeing our ✨new @Honest cleaning launch! https://t.co/aVf1hAzL8N +10/26/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""So glad I got my hands on this. It is super pigmented and actually shows on my skin tone."" - Instagrammer /eco.glow htt…" +10/26/2017,Actors,@jessicaalba,Below is my first LIVE store visit to buybuy BABY since our new The Honest Company cleaning launch! And to see... https://t.co/H4a4hjiI0o +10/25/2017,Actors,@jessicaalba,@cashwarren and I couldn’t be more thrilled to announce... 👶💙 #officiallyoutnumbered #babyboy #cantwaittospoilhim... https://t.co/l5FExYcjwx +10/25/2017,Actors,@jessicaalba,"RT @FastCompany: ""Having diversity of thought allows you to up your game."" @jessicaalba on supporting women in the workplace at #FCFestival…" +10/25/2017,Actors,@jessicaalba,Proud of my ❤️ @cash_warren on his @pairofthieves event tonight! Xo check out my stories to see all the fun! https://t.co/5wyYUkT3cV +10/24/2017,Actors,@jessicaalba,Dropping knowledge bombs with Health Hacks today. Find out the real reasons your body does weird things like... https://t.co/ufVTslxjuQ +10/23/2017,Actors,@jessicaalba,"Weekend w mah babe -happy to be home, if only for a weekend. Date nights w our kiddos -soccer game and pumpkin... https://t.co/ozZqw81qUF" +10/19/2017,Actors,@jessicaalba,#tbt UK 🇬🇧 premieres #fantasticfour #valentinesday #londonmemories🇬🇧❤️ +10/19/2017,Actors,@jessicaalba,#tbt UK 🇬🇧 premieres #fantasticfour #valentinesday #memories❤ +10/19/2017,Actors,@jessicaalba,RT @Honest_Beauty: Celeb makeup artist Jillian Gregory is back to share 3 glossy ways to perfect your pout: https://t.co/K19AdOVGtc https:/… +10/18/2017,Actors,@jessicaalba,Duuuuude!!! Our new @honest cleaning line got the most legit @goodhousekeeping seal!!! My mission when I started... https://t.co/JEW0l59sdt +10/17/2017,Actors,@jessicaalba,Checking out a Diaper plant -really 👍🏽! @honest #entrepreneurlife #thehonestlife #worktrip —� as an 18 year old... https://t.co/idJl7QAXo3 +10/16/2017,Actors,@jessicaalba,"Talking about preparing the perfect work lunch with Health Hacks. It’ll save you time, $$, and make you feel... https://t.co/DTC4QmuDlg" +10/13/2017,Actors,@jessicaalba,Clutter sucks. Save time ⏰ and money 💵 with these tips to decluttering and organizing your life! https://t.co/JpS9aOPtlk +10/13/2017,Actors,@jessicaalba,#fbf being preggers w Honor then Havie Pie -I couldn’t resist w the last one 🤦🏽‍♀️🤣😝 +10/10/2017,Actors,@jessicaalba,Christopher Gavigan & I talked all about our brand new cleaning line and the early days of The Honest Company -... https://t.co/nk8es5qE6n +10/09/2017,Actors,@jessicaalba,Clutter sucks--Let's clean up our lives with these tips and tricks on this episode of Health Hacks. https://t.co/f8QpMhQ7nC +10/07/2017,Actors,@jessicaalba,#fbf #pfw @maisonvalentino +10/05/2017,Actors,@jessicaalba,#tbt to @honest_beauty Haircare launch -available exclusively @ultabeauty! Hey it now ladies! And our moisture... https://t.co/4NItVbb8ab +10/04/2017,Actors,@jessicaalba,Let's talk about what's really in your food on this episode of Health Hacks. Did you know that processed foods... https://t.co/r9f3ninNsq +10/03/2017,Actors,@jessicaalba,#VegasStrong https://t.co/B78zUHIIeW +10/03/2017,Actors,@jessicaalba,Regardless of your political views common sense gun laws makes sense for the safety of every American. https://t.co/2ejW4pBkrG +09/29/2017,Actors,@jessicaalba,#friyay https://t.co/9tm1m8MOuc +09/27/2017,Actors,@jessicaalba,RT @Honest: Honest Multi-Surface Cleaner is new & improved with 50% more cleaning power than our original Multi-Surface Cleaner: https://t.… +09/26/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Adult acne is a cruel joke."" Read on as @Allure_magazine reviews our Younger + Clearer™ Line: https://t.co/3XP1U4V5qQ h…" +09/22/2017,Actors,@jessicaalba,My Momma Cathy Alba and I gave everyone a sneak peek at our new & improved Cleaning Collection! https://t.co/yIm7WcB2ND +09/21/2017,Actors,@jessicaalba,I curated a bunch of stuff I love @honest HQ for my work fam and friends -great finds and great deals! Thx... https://t.co/w41SRSQOHw +09/19/2017,Actors,@jessicaalba,Pickles...anything sour...bacon...my cravings are a hot mess! ATTN: and I are talking about the nutrition you... https://t.co/pw5Q5AQf6y +09/18/2017,Actors,@jessicaalba,Take your beauty routine in your own hands w @honest_beauty #YongerAndClearer +09/18/2017,Actors,@jessicaalba,RT @Honest_Beauty: Get that glow! Founder @JessicaAlba gave expecting #HonestBeauty mamas glowy makeovers. Watch the full tutorials: https:… +09/16/2017,Actors,@jessicaalba,@chrissyteigen Awwwwwwkward😳 +09/14/2017,Actors,@jessicaalba,🤰🏽🙄👊🏽 https://t.co/uKreLfJ0HY +09/14/2017,Actors,@jessicaalba,Does pregnancy have you glowing or wondering what everyone was talking about? Jessica Alba is sharing her tips to... https://t.co/oFIcOYNB5q +09/14/2017,Actors,@jessicaalba,Ummm -yeah we do! https://t.co/CeyoMeNavZ +09/13/2017,Actors,@jessicaalba,@franklinleonard Lol +09/13/2017,Actors,@jessicaalba,"RT @Honest_Beauty: Score the details of Founder @jessicaalba’s #NYFW look, courtesy of glam duo @kate_makeup and @Jennifer__Yepez https://t…" +09/13/2017,Actors,@jessicaalba,ATTN: has teamed up with the Hand in Hand Benefit and is live streaming the event. Turn the volume up and let's... https://t.co/f7Rvj2narx +09/11/2017,Actors,@jessicaalba,"Happy Monday, peeps! In case you're feeling the effects of the weekend, we're highlighting the common myths on... https://t.co/V2zuBjuuWT" +09/09/2017,Actors,@jessicaalba,Lol https://t.co/eGLoDsuNoQ +09/09/2017,Actors,@jessicaalba,"RT @Honest: We collaborated with Honest Mom & photographer, Julie Holder for our Fall Diaper Collection. Follow their journey: https://t.co…" +09/08/2017,Actors,@jessicaalba,Tune into @livekellyandryan today! Head over to @honest_beauty to get the beauty breakdown -I took over... https://t.co/j9hjLPvVVQ +09/07/2017,Actors,@jessicaalba,Smooches from NYC -gonna chk out some bebé 👶🏽shops today https://t.co/7jls04jQyR +09/04/2017,Actors,@jessicaalba,RT @Honest_Beauty: #HonestBeauty @JessicaAlba rocking that red lip like it's nobody's business 🍓💋 | (Glam + Photo via Kira Nasrat) https://… +09/04/2017,Actors,@jessicaalba,Check out my story to see what goes in my favorite morning smoothie @zicococonut #banana #gardenofliferaw protein... https://t.co/YBgifMAoW4 +09/02/2017,Actors,@jessicaalba,"RT @Honest: @JessicaAlba threw a baby shower for her friend, Jen, who is pregnant with a baby girl! Jessica’s 5 👶 shower tips: https://t.co…" +09/02/2017,Actors,@jessicaalba,RT @Honest: Honest https://t.co/kWWDAYZuhj +09/02/2017,Actors,@jessicaalba,RT @Honest_Beauty: When you wake up to the Friday before a long weekend. #Friyay (Photo via Instagrammer /muaxsally) https://t.co/cNyfEemqW… +09/01/2017,Actors,@jessicaalba,Had a special guest @chefmarcela @honest today! ❤️Love love love ❤️ her and her cookbooks and her adorable... https://t.co/7L5vXJfxIX +09/01/2017,Actors,@jessicaalba,Teamed up with ATTN: to discuss health hacks. Let's discuss portion control and why Americans are putting way too... https://t.co/kJnnEHPYwF +08/30/2017,Actors,@jessicaalba,I couldn't be more excited to introduce my new skincare line from Honest Beauty!!!! Breakthrough formulas! Clean... https://t.co/ETJ8iMX9Z4 +08/29/2017,Actors,@jessicaalba,Take your routine into your own hands w @honest_beauty #youngerandclearer #ethicalbeauty #cleanbeautythatworks #honestbeauty +08/28/2017,Actors,@jessicaalba,RT @people: Inside Jessica Alba’s Mystical Unicorn-Themed Birthday Bash for Daughter Haven: ‘Any Excuse to Throw a Fun Party!’ https://t.co… +08/27/2017,Actors,@jessicaalba,That was my favorite fight in a minute👊🏽 +08/27/2017,Actors,@jessicaalba,It's going down #MayweatherVsMcGregor for the #MoneyBelt https://t.co/f33rwYEFd0 +08/27/2017,Actors,@jessicaalba,#MayweathervMcgregor @ddlovato https://t.co/PNWRECGnj5 +08/27/2017,Actors,@jessicaalba,Blue furrrrrr #GervontaDavis https://t.co/xiMNRDcwzK +08/26/2017,Actors,@jessicaalba,#happybirthday to my -fun- loyal-fearless-free spirit -always an optimist- loves rituals- stylish- travel buddy... https://t.co/8baMq7GKoh +08/25/2017,Actors,@jessicaalba,RT @Honest: Honest https://t.co/ehNEHuUIno +08/25/2017,Actors,@jessicaalba,RT @Honest: The greatest adventure.❤️ https://t.co/Lr1dKzC4rc https://t.co/gGeDv09K8Q +08/25/2017,Actors,@jessicaalba,Super excited about our new Fall Diaper Collection! Designed by my homegirls Emily Current & Meritt Elliott. From... https://t.co/JNQY9Lpghz +08/25/2017,Actors,@jessicaalba,RT @byrdiebeauty: Water intoxication is real—never drink more than this amount: https://t.co/mEARBSXGvN +08/25/2017,Actors,@jessicaalba,RT @goodhealth: 7 super hydrating foods https://t.co/TKX4tcOZ4d +08/25/2017,Actors,@jessicaalba,I can relate to most of these🤰🏽can you? https://t.co/amCLIEj1Vi +08/22/2017,Actors,@jessicaalba,Have you ever faced doubters or folks who thought you could never accomplish your dreams? I did--- lots! Below is... https://t.co/VLuAqmTdnl +08/22/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Hopefully, you’re opening your eyes up to what is possible."" Founder @jessicaalba gets honest with @Cosmopolitan: https…" +08/20/2017,Actors,@jessicaalba,RT @Honest_Beauty: Grabbing some goodies at @Target this weekend? Don't forget to take a walk down the beauty aisle. | rt @LushCosmo https:… +08/18/2017,Actors,@jessicaalba,RT @Honest: Today (#NationalNonprofitDay) we're celebrating our 10 millionth diaper donated! Read about our work w/ @Baby2Baby: https://t.c… +08/17/2017,Actors,@jessicaalba,"RT @Honest_Beauty: Super smart, super strong, super kind, super loyal... https://t.co/7o4M15GjOC" +08/17/2017,Actors,@jessicaalba,W my baby daddy @cash_warren #hamilton last night in LA! It was as moving and powerful as ever. Thank you... https://t.co/8CztsEORKQ +08/16/2017,Actors,@jessicaalba,RT @attn: White supremacists are responsible for TWICE as many terrorist attacks as Islamic extremists in America. https://t.co/2SLKL2QlBc +08/16/2017,Actors,@jessicaalba,RT @attn: Injustice anywhere is a threat to justice everywhere. -- Martin Luther King Jr. +08/16/2017,Actors,@jessicaalba,RT @Honest_Beauty: A pop of color on the lip is always a good idea. @jessicaalba is wearing Coral Kiss.💄 📷:: @KiraNasrat 💁: Chad Wood. htt… +08/14/2017,Actors,@jessicaalba,"RT @Honest_Beauty: ""Honestly cannot live without #HonestBeauty!"" - via Instagrammer /debbie_physed (Read more of her review: https://t.co/X…" +08/13/2017,Actors,@jessicaalba,"My sweet baby girl Havie turns 6 today. 🌈🦄🎂 feeling so blessed to be her momma 🙏🏽 Her cuddles, smooches and laughte… https://t.co/HzKqbTe6Kz" +08/13/2017,Actors,@jessicaalba,"My sweet, cuddly, hilarious Havie Pie turns 6 today! #happybirthday my angel. I love you so much! You sweeten... https://t.co/hm8GX95ty0" +08/13/2017,Actors,@jessicaalba,"RT @womensmarch: We are a movement guided by Dr. King's vision of the Beloved Community. + +Love and trust will triumph over fear and hatred.…" +08/13/2017,Actors,@jessicaalba,"RT @womensmarch: Today we remember Heather Heyer, the 32-year-old woman murdered in #Charlottesville. And we commit to continuing the strug…" +08/09/2017,Actors,@jessicaalba,@SamsungTV @DailyMailTech I'm obsessed w this -great job @samsungtv +08/09/2017,Actors,@jessicaalba,RT @baby2baby: So thrilled to be featured in @THR's Philanthropy issue! Check it out on stands now! https://t.co/1hvVm1Pj8J +08/08/2017,Actors,@jessicaalba,I'm obsessed w antiques -always like to mix old and new. https://t.co/EIrjYoV890 +08/08/2017,Actors,@jessicaalba,Or this one @LaCornue https://t.co/KzLY4VG2UV +08/08/2017,Actors,@jessicaalba,Dope -thx 4 these https://t.co/Q0J5fAwfa2 +08/08/2017,Actors,@jessicaalba,What do you think of #IlvesMajestic oven range? https://t.co/QmDmL8gCcA +08/08/2017,Actors,@jessicaalba,"I'm remodeling my new house -looking for great appliances, hardware, materials & furniture companies. As Eco as possible. Any suggestions?" +08/05/2017,Actors,@jessicaalba,Can't wait for this collection to launch in a few weeks! Loved collaborating with Emily Current & Meritt Elliott... https://t.co/kyHUiKPRW6 +08/05/2017,Actors,@jessicaalba,We had an awesome day celebrating #HonestXTheGreat Diaper collaboration to benefit @baby2baby @honest... https://t.co/01f43LIRYa +08/04/2017,Actors,@jessicaalba,Shenanigans @fallontonight #fbf -chk out the show tonight folks! +08/04/2017,Actors,@jessicaalba,RT @Honest_Beauty: Honest Beauty https://t.co/oVUqH4aTwq +08/03/2017,Actors,@jessicaalba,❤️✨❤️ this is so sweet https://t.co/1VzhCCYWTu +08/01/2017,Actors,@jessicaalba,It gets so real on this episode of @planetoftheapps https://t.co/84oKuOk9Lo +07/29/2017,Actors,@jessicaalba,My fave color for the summer ☀️@honest_beauty #sheercoralkiss💋 perfect daytime red 💄link in bio to shop! #nationallipstickday +07/28/2017,Actors,@jessicaalba,I had an amazing time speaking at the American Express OPEN Success Makers Workshop yesterday. Check it out!... https://t.co/6Lq27wJ3Gy +07/27/2017,Actors,@jessicaalba,I'll be live on Facebook at @AmexOPEN Success Makers Workshop at noon PST! Tune in: https://t.co/t1YazmKR7u #AmexAmbassador #NextStartsHere +07/27/2017,Actors,@jessicaalba,"Our sweet Sid passed this morning 😔she lived a long life, eating everything she could sniff out, she was my OG... https://t.co/y3NrePxBqd" +07/22/2017,Actors,@jessicaalba,Want to get yo locks on point? Do you know how to properly cleanse and condition? Watch the vid to find out below! https://t.co/gJsuvVdHKA +07/22/2017,Actors,@jessicaalba,#AboutLastNight 🌺 w Shani Darden Anthony Ferrari Cash Warren +07/20/2017,Actors,@jessicaalba,"RT @Honest: I'm a parent, what's your superpower? https://t.co/IQvDvzhWaz" +07/19/2017,Actors,@jessicaalba,Check out Byrdie's list of 7 Honest Beauty must-haves including my fave organic facial oil I use every. single.... https://t.co/UKAvPhrvrF +07/19/2017,Actors,@jessicaalba,Check out @byrdiebeauty's list of top 7 must-have honest_beauty products including my fave… https://t.co/U5a9LRQD2O +07/19/2017,Actors,@jessicaalba,"Episode 6 of Planet of the Apps features Mend, the app that is your ""personal trainer for heartbreak"" featuring... https://t.co/tilg3Lf36h" +07/18/2017,Actors,@jessicaalba,Summer skin tutorial w the most beautiful Elizabeth Mathis aka Lizzy https://t.co/eTnXMhDXEK +07/18/2017,Actors,@jessicaalba,RT @letsmend: Tonight our founder @ellenhuerta pitches Mend on @planetoftheapps! See what happens on @applemusic 6pm PT/9pm PT #planetofthe… +07/18/2017,Actors,@jessicaalba,"Check out Stop, Breathe & Think for guided meditation and mindfulness at your fingertips on Planet of the Apps! https://t.co/WySEYfXIZd" +07/18/2017,Actors,@jessicaalba,"RT @planetoftheapps: Mending heartbreak, making friends, and mastering AR robots. New episode drops tonight, only on @AppleMusic. https://t…" +07/17/2017,Actors,@jessicaalba,@cash_warren and I are officially going to be outnumbered #babyonboard #herewegoagain 👶🏼🤰🏽#blessed🙏 https://t.co/U8ztWcPz7H +07/16/2017,Actors,@jessicaalba,GORGEOUS hair by @Jennifer__Yepez using honest_beauty #honestbeauty 😍😍💯#Repost @Jennifer__Yepez… https://t.co/EbuXx4ios4 +07/15/2017,Actors,@jessicaalba,🍍🌺🏄🌴🐚 Thx People! https://t.co/mCKBFc5Uxz +07/15/2017,Actors,@jessicaalba,🍍🌺🏄🌴🐚 Thx @people - link in bio! https://t.co/bRnkG4YTQo +07/13/2017,Actors,@jessicaalba,Woohoo @honest_beauty in #NYC #timesquare #honestbeauty https://t.co/RqHx1b45vv +07/11/2017,Actors,@jessicaalba,https://t.co/Krg4ZRquLT +07/11/2017,Actors,@jessicaalba,I ❤️ Amazon! https://t.co/jI8TDSJaRv +07/05/2017,Actors,@jessicaalba,It's my favorite styling product for summer! ☀️ beach hair for dayz https://t.co/eKKlbCUMU2 +07/05/2017,Actors,@jessicaalba,#4thofjulyweekend🇺🇸💥🇺🇸 +06/30/2017,Actors,@jessicaalba,Me -right now. 🙄 https://t.co/4jqYu1Unjm +06/29/2017,Actors,@jessicaalba,#Goals https://t.co/5rSYT6i6x2 +06/29/2017,Actors,@jessicaalba,This is cray https://t.co/dy0md9Rsz3 +06/27/2017,Actors,@jessicaalba,I'm sharing my fave summer look featuring the Honest Beauty Lip Crayon in Sheer Chestnut Kiss. Now available in... https://t.co/GgSChSccJT +06/27/2017,Actors,@jessicaalba,#word #jenniferaniston #honestbeauty https://t.co/DjJEiH6tXo +06/27/2017,Actors,@jessicaalba,Obsessed with Byrdie and our Honest Beauty Allure best of beauty award winner lip crayon! https://t.co/cYc6GgSIbZ +06/25/2017,Actors,@jessicaalba,#summer is here! ☀️ get yo glow on! ✨ featured on @thezoereport @honest_beauty #honestbeauty available @target https://t.co/tLpg3cmlgw +06/23/2017,Actors,@jessicaalba,"#Repost @honest_beauty @nadiyakhan used our Honestly Polished Dry Conditioner, Organic Facial Oil, Everything... https://t.co/68TYpCe1lz" +06/21/2017,Actors,@jessicaalba,"Episode 3 of Planet of the Apps is LIVE, people! Watch Kemar define FLIP as ""eBay for the Snapchat generation"" on... https://t.co/a1qqHpdGuI" +06/21/2017,Actors,@jessicaalba,"""We're the eBay for the Snapchat generation"" @justflip https://t.co/VqWzgNbm2C" +06/20/2017,Actors,@jessicaalba,Loved celebrating our @bewellbykelly new book on nutrition #bodylove @mollybsims @bewellbykelly @chelsea https://t.co/xREEcDL2DB +06/20/2017,Actors,@jessicaalba,This is my favorite beauty look! Elizabeth Mathis breaks it down Live! https://t.co/YpiEiJTm5H +06/19/2017,Actors,@jessicaalba,Happy Fathers Day to my papasito #MarkAlba and my grampers @JoséAlba love you both so much! #blessed #grateful https://t.co/T4nxBWhRt0 +06/18/2017,Actors,@jessicaalba,Had an awesome afternoon w the fam! So grateful my Grampers n Grammers made it out today! Love my family so much!... https://t.co/ZT2nZIFUvc +06/17/2017,Actors,@jessicaalba,Super proud of my @CashWarren @PairofThieves was featured on @TODAYshow chk out all these #FathersDay gift ideas!… https://t.co/A6PWPQJlQh +06/15/2017,Actors,@jessicaalba,Yep-that was fun! @garyvee @iamwill @planetoftheapps #PlanetOftheApps https://t.co/tvBWqpnibI +06/15/2017,Actors,@jessicaalba,Stella Luna ❤️ https://t.co/CPVlgvk6yV +06/15/2017,Actors,@jessicaalba,"RT @TheView: THIS MORNING ON @THEVIEW: Superstar entrepreneurs @jessicaalba @iamwill and @garyvee hit the table to talk their new show, #pl…" +06/15/2017,Actors,@jessicaalba,https://t.co/ZkGmHR3APS +06/15/2017,Actors,@jessicaalba,👍🏽 https://t.co/qbbtjHHIhN +06/15/2017,Actors,@jessicaalba,Thx dude https://t.co/zJDpMQj2Ah +06/15/2017,Actors,@jessicaalba,9am https://t.co/3jzwWYaxap +06/15/2017,Actors,@jessicaalba,Whattup! I'm gonna be w my @planetoftheapps peoples all day! @garyvee @iamwill @GwynethPaltrow -shoot me biz q? Or… https://t.co/dW1gTvL25M +06/15/2017,Actors,@jessicaalba,Head over to @glamourmag Insta to see how I get ready for a press day @planetoftheapps w @honest_beauty... https://t.co/lLc9ZXdXJp +06/14/2017,Actors,@jessicaalba,#planetoftheapps new episode available now! Link in bio @planetoftheapps @itunes @applemusic https://t.co/kOI6DCTyIk +06/13/2017,Actors,@jessicaalba,Loved having my homegirls support me tonight @planetoftheapps launch party! #planetoftheapps https://t.co/LjTtbiwCNP +06/13/2017,Actors,@jessicaalba,💋#glams by @kiranasrat n @chadwoodhair headed to @applemusic premiere party for @planetoftheapps https://t.co/QrOgYCjKpL +06/12/2017,Actors,@jessicaalba,"#Repost @ariannahuff +Born on this day in 1929, her wisdom lives on... https://t.co/9JqHG5y6UR" +06/11/2017,Actors,@jessicaalba,#word #weekends 🍷🥂🌹 https://t.co/HY59jr7EFc +06/09/2017,Actors,@jessicaalba,Loved stopping by @honest @nordstrom 🙌🏽 https://t.co/KN6QL1nVwZ +06/09/2017,Actors,@jessicaalba,RT @LinkedIn: .@jessicaalba discusses why challenges are opportunities and risk taking is a necessity: https://t.co/HKE5d2hsTz #TheWayIn +06/22/2018,Actors,@EllenPompeo,"RT @MykeCole: I was activated and deployed to the gulf for Deepwater Horizon. We killed ourselves out there, up to our armpits in toxic che…" +06/21/2018,Actors,@EllenPompeo,RT @OurOcean: One step closer to #TrashFreeSeas thanks to these amazing fans in Japan at the #WorldCup https://t.co/zARZvzUELZ +06/21/2018,Actors,@EllenPompeo,"RT @thedailybeast: MVM, Inc. has a contract with ICE to provide “unaccompanied alien children (UAC) transportation services” worth $162 mil…" +06/21/2018,Actors,@EllenPompeo,RT @PetsforPatriots: We know our friend @EllenPompeo has a soft spot for animals. And with Lilith having just one eye she really needs a sp… +06/20/2018,Actors,@EllenPompeo,@magicpompeo ciao Bianca sorry I was unable to speak! I was working. I hope you enjoyed the event and found it informative. +06/20/2018,Actors,@EllenPompeo,Love this @MsSarahPaulson https://t.co/a5nOsQaSkL +06/20/2018,Actors,@EllenPompeo,Thank you to Richard Edelman and the whole team at @EdelmanPR for inviting me to Cannes to participate in the conve… https://t.co/1f16eJS7kd +06/20/2018,Actors,@EllenPompeo,"RT @peterdaou: If Barack Obama, Hillary Clinton, Bernie Sanders, former presidents and first ladies and the entire Dem leadership stood sid…" +06/20/2018,Actors,@EllenPompeo,Of course it does.. many people are profiting. THAT is the reason this is happening. Follow the money.… https://t.co/gnj8TYcm2A +06/20/2018,Actors,@EllenPompeo,RT @TopherSpiro: “Chain link partitions” and “tender age shelters” as a euphemism for baby jails is something George Orwell could never hav… +06/20/2018,Actors,@EllenPompeo,RT @RuPaul: How the Koch Brothers Are Killing Public Transit Projects Around the Country https://t.co/tW2Z0YhS4Z https://t.co/NCAKE1L1mj +06/18/2018,Actors,@EllenPompeo,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/15/2018,Actors,@EllenPompeo,RT @tedstgodard: This got the cartoonist fired. Share it. https://t.co/6ik1HjgVAW +06/15/2018,Actors,@EllenPompeo,"RT @SenFeinstein: Kids are not pawns to be used as an immigration deterrent. Families belong together, it’s that simple. This is not about…" +06/15/2018,Actors,@EllenPompeo,"RT @slpng_giants: This is a concentration camp for children. + +Who is the tent manufacturer willing to profit from this? + +Who is the bed man…" +06/15/2018,Actors,@EllenPompeo,RT @TheRepProject: So glad Alicia Keys is leading this! We need equality in EVERY industry! https://t.co/VqIrH4dAzN +06/15/2018,Actors,@EllenPompeo,@RuPaul 😍 https://t.co/Iama2Pa3M4 +06/15/2018,Actors,@EllenPompeo,RT @KristaVernoff: Please watch this. Please retweet it. Please make the calls. 🙏🏼🙏🏼🙏🏼 https://t.co/5rm2RNVKp4 +06/15/2018,Actors,@EllenPompeo,"RT @MaddowBlog: There's a reason Republicans badger, bully, and berate law enforcement. + +It works! https://t.co/ZaL5gvLZiR" +06/15/2018,Actors,@EllenPompeo,"RT @VictoriaMahoney: 1) #FollowTheMoney. +2) Track down precisely [who] is profiting from surge in #Immigration #DetentionCenters +3) Compa…" +06/14/2018,Actors,@EllenPompeo,RT @SenKamalaHarris: Let’s call this policy what it is: a human rights abuse being committed by the United States government. https://t.co/… +06/12/2018,Actors,@EllenPompeo,RT @KellyMcCreary: Please vote. Please help protect our access to voting. https://t.co/kRzTNGQNnT +06/12/2018,Actors,@EllenPompeo,"RT @davidhogg111: This is America, right now + +This is the % of African Americans not able to vote in just a few states. + +VA 21% + +FL 21%…" +06/08/2018,Actors,@EllenPompeo,RT @JuliaBradbury: Here's the @corona Wave of Waste in all it's glory.This is how much plastic is found along EVERY 2 MILE stretch of beach… +06/08/2018,Actors,@EllenPompeo,"RT @JaneGoodallInst: Single-use plastic has no place in our oceans and waterways, but as we live our lives, how do we cut our reliance? Whe…" +06/08/2018,Actors,@EllenPompeo,"RT @BarackObama: “Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us about food…" +06/08/2018,Actors,@EllenPompeo,"RT @MiaFarrow: Maybe we all wanted to hang out with him. He was that cool, fun, frank, insightful. He introduced us to distant lands and to…" +06/02/2018,Actors,@EllenPompeo,RT @NatGeo: Under the surface of paradise lies a tragic scene: a manta ray feeding on the plastic pollution surrounding it https://t.co/YXo… +06/01/2018,Actors,@EllenPompeo,"RT @VanJones68: CALIFORNIA: Please call @bill_brough and urge him to vote YES on #AB1940, a bill that would encourage people on parole to p…" +06/01/2018,Actors,@EllenPompeo,"RT @markchildress: The minute you stop supporting the man who grabs em by the p***y, I'll listen to your lecture about calling Ivanka a c**…" +06/01/2018,Actors,@EllenPompeo,"RT @thomas_violence: I love little cultural differences, like how Americans are super offended by the word cunt but here in Australia we're…" +05/31/2018,Actors,@EllenPompeo,RT @ira: Samantha Bee's joke is only drawing Roseanne comparisons because y'all are fucking idiots who let racists define what racism is or… +05/31/2018,Actors,@EllenPompeo,RT @latimes: Equating Samantha Bee's crudeness with Roseanne's outlandish tweets normalizes racism and anti-Semitism. https://t.co/pSybhigR… +05/31/2018,Actors,@EllenPompeo,RT @PlasticPollutes: What you can do to fight #plasticpollution https://t.co/MTFgtU9OHf +05/30/2018,Actors,@EllenPompeo,Last call to join me at a wildlife sanctuary! Enter now & you could also win a signed Grey’s script. GO:… https://t.co/gfsfSib4UY +05/30/2018,Actors,@EllenPompeo,edbyellen's photo https://t.co/o9Zuc2p3Lj +05/30/2018,Actors,@EllenPompeo,@merder But they need the love the most!! 😂😂😂#truth +05/30/2018,Actors,@EllenPompeo,@Tae_Finesse730 @threelilbirdsss If you don't like me stop calling me sis number one... number two of you don't lik… https://t.co/aAVIluUO8D +05/30/2018,Actors,@EllenPompeo,@threelilbirdsss @Tae_Finesse730 Actually I can take quite a lot now that you mention it...I've blocked a few reall… https://t.co/3QdippowMG +05/30/2018,Actors,@EllenPompeo,To be honest I didn't see it but yes people said it dealt with some important issues. Also with Channing at the he… https://t.co/qVQ8CbEU1x +05/30/2018,Actors,@EllenPompeo,"And the teaching moment begins with ""when someone shows you who they are.. believe them."" She is exactly who we th… https://t.co/GWoZHSmB0L" +05/30/2018,Actors,@EllenPompeo,@Tae_Finesse730 @khalariious No ...def not but don't underestimate the destructive power of a three year old when t… https://t.co/AZbtxw8D2D +05/24/2018,Actors,@EllenPompeo,"RT @nytimes: In Opinion + +The editorial board writes: ""Rather than show a little backbone themselves and support the right of athletes to pr…" +05/23/2018,Actors,@EllenPompeo,"RT @jfreewright: If the NFL thing was about the flag & anthem, you’d be outraged when Trump doesn’t hold a hand over his heart & botches th…" +05/23/2018,Actors,@EllenPompeo,"RT @HBR_Media: ""Obstacles will always be there, you just have to navigate them. You have to treat it like it's a minefield...Like you're a…" +05/22/2018,Actors,@EllenPompeo,Be there in 5 minutes!! https://t.co/iU0AfG1MAQ +05/22/2018,Actors,@EllenPompeo,The best opponent is one who underestimates you 😜 https://t.co/KjnE0Vrzmj +05/22/2018,Actors,@EllenPompeo,RT @SeaChampsSW: #WorldOceanDay is Friday June 08. We have resources to make it easy and fun for your school/group to celebrate! Start a co… +05/22/2018,Actors,@EllenPompeo,😂😂😂😓😓😓 https://t.co/MsyViQeUxj +05/22/2018,Actors,@EllenPompeo,"RT @TheEconomist: A searing reminder of how recently American slavery ended, and the depth of the pain it caused https://t.co/wiNmPHacrf" +05/22/2018,Actors,@EllenPompeo,RT @Seasaver: Human race just 0.01% of all life but has eradicated most other living things https://t.co/VXWxbU0kmQ #WorldBiodiversityDay +05/22/2018,Actors,@EllenPompeo,These girls are incredible 🌏 https://t.co/Tc9oG6bjYf +05/21/2018,Actors,@EllenPompeo,"RT @broadstrokesdes: Here's a glimpse of us working on the @IamSandraOh art for our latest t-shirt. You can grab one here: +https://t.co/JF…" +05/13/2018,Actors,@EllenPompeo,I love this...These girls are adorable ... and amazing hard working moms! #HappyMothersDay ❤️ https://t.co/1AeFKwMwer +05/11/2018,Actors,@EllenPompeo,Congratulations to the whole team on the season 2 pickup of @Station19 @JasonWGeorge @JainaLeeOrtiz @stacysmckee16 +05/11/2018,Actors,@EllenPompeo,RT @ELLEmagazine: Amal Clooney's Vanderbilt Graduation Speech Calls For Courage Above All https://t.co/zoPX24d7l4 +05/11/2018,Actors,@EllenPompeo,@ElenaBHilton Thank you so much @ElenaBHilton +05/11/2018,Actors,@EllenPompeo,RT @BrandiKand: #GreysAnatomy me watching greys tonight https://t.co/hkSai3VVfx +05/11/2018,Actors,@EllenPompeo,RT @JainaLeeOrtiz: Ready ready! Who’s ready to live tweet w me?!?? #Station19 +05/11/2018,Actors,@EllenPompeo,RT @KristaVernoff: Because then there is no TV show! #GreysAnatomy https://t.co/J3XnyZkWJo +05/11/2018,Actors,@EllenPompeo,Right back at you 💋 https://t.co/qJQyoTnKFY +05/11/2018,Actors,@EllenPompeo,@PhDiva3 @Kaywillsmith @IamSandraOh Oh no I have @IamSandraOh is the truth I love it +05/11/2018,Actors,@EllenPompeo,I don't know I think alcohol makes drama worse.. just saying https://t.co/zXZaiNhOJZ +05/11/2018,Actors,@EllenPompeo,@merthantrash I'm not watching I'm cooking dinner but trying to tweet with you guys before I have to go out +05/11/2018,Actors,@EllenPompeo,RT @JChambersOnline: It started off like a normal day and suddenly it's not 😭😭😭 #GreysAnatomy https://t.co/loY1PK5Add +05/10/2018,Actors,@EllenPompeo,Who said it is her farewell episode? You guys love making stuff up... you should write for the show! https://t.co/OwXUFoueJz +05/10/2018,Actors,@EllenPompeo,Yo @JainaLeeOrtiz you hear that??? https://t.co/zRtClL8P8u +05/10/2018,Actors,@EllenPompeo,Wait... only today? https://t.co/sqYAGqQ21c +05/10/2018,Actors,@EllenPompeo,This is what I love ...a warrior.. you are no victim 💥💥💥 https://t.co/71A06Tf5pO +05/10/2018,Actors,@EllenPompeo,I mean on a scale of 1 to 10 tonight's definitely a 12 😩 +05/10/2018,Actors,@EllenPompeo,Ok that's fair we definitely take it to another level.. but so do you guys!! https://t.co/daaOy6OfDg +05/10/2018,Actors,@EllenPompeo,But that's why they call them dramas right? It's not called a comedy.... https://t.co/kImLCQFLFR +05/10/2018,Actors,@EllenPompeo,@NicoleMonster23 @heyDejan Should I not have fun and engage with fans? Or should I be super shiny happy overly sinc… https://t.co/5S3EAPpFKf +05/10/2018,Actors,@EllenPompeo,@heyDejan No no that's not why I said that... she told me to shut the f up that wasn't nice +05/10/2018,Actors,@EllenPompeo,You need a hug boo? Or just some more followers?? 😜😜😜 #angryaintcute https://t.co/7tZdqhuFYL +05/10/2018,Actors,@EllenPompeo,I cant tonight! https://t.co/AJhkLpkghJ +05/10/2018,Actors,@EllenPompeo,I don't think any of us have ever denied it have we? It's literally what we've been doing for 14 years https://t.co/zgbqxNvXA7 +05/10/2018,Actors,@EllenPompeo,Not true https://t.co/4B3kM9A8Mt +05/10/2018,Actors,@EllenPompeo,I think @TraceeEllisRoss says it best... the truth with set you free... but first it will piss you off... 💯💯💯 +05/10/2018,Actors,@EllenPompeo,That's a real problem ...not our feelings of entitlement about a tv show +05/10/2018,Actors,@EllenPompeo,Of course you guys love it too.. but lets have some perspective it's just a tv show ...POC literally are not safe A… https://t.co/0tLlngnE6i +05/10/2018,Actors,@EllenPompeo,I am so sorry my heart breaks for you that #thisisamerica https://t.co/tEj2poGCPr +05/10/2018,Actors,@EllenPompeo,RT @KristaVernoff: Wow. @delta this is really deeply troubling. I hope EVERYONE READING THIS RETWEETS IT. https://t.co/190Cb1LvkZ +05/10/2018,Actors,@EllenPompeo,I'm not going to lie... it's a lot tonight...we are the best heartbreakers in the game but don't hate the player...… https://t.co/RRffXTj4PZ +05/10/2018,Actors,@EllenPompeo,"RT @ShaunKing: That is Anthony Wall, in prom clothes, being lifted off the ground and choked by a Warsaw County police officer @WaffleHouse…" +05/10/2018,Actors,@EllenPompeo,YES! https://t.co/cEdiY1rS7h +05/10/2018,Actors,@EllenPompeo,"RT @sarahdrew: It’s Grey’s Day and I’m feeling emotional... So let’s chat, ok? I’m gonna live tweet from 8-9pm EST and then I will post all…" +05/10/2018,Actors,@EllenPompeo,"RT @nkjemisin: Story updated with the harassing white student's name and history of harassment. I keep seeing people describe this as ""impl…" +05/10/2018,Actors,@EllenPompeo,"RT @adv_project: Black people are trying to live their lives in peace. Black folks deserve to nap, go to restaurants, get coffee, & stay at…" +05/10/2018,Actors,@EllenPompeo,I love her and this is painfully accurate https://t.co/R8B5zW9XwX +05/09/2018,Actors,@EllenPompeo,RT @iJesseWilliams: TONIGHT https://t.co/VrvKr6Ob7j +05/04/2018,Actors,@EllenPompeo,RT @JainaLeeOrtiz: So. Much. Drama. #Station19 +05/04/2018,Actors,@EllenPompeo,Oh now I get why you guys say you always cry +05/04/2018,Actors,@EllenPompeo,@iJesseWilliams was Mac n and directing? +05/04/2018,Actors,@EllenPompeo,@elldempeo At the moment it's me and a three year old 😂 +05/04/2018,Actors,@EllenPompeo,@7JustinChambers OMG +05/04/2018,Actors,@EllenPompeo,@m_merderlover Yes gotta support my guy +05/04/2018,Actors,@EllenPompeo,@iJesseWilliams these Alex and Joe scenes are gorgeous +05/04/2018,Actors,@EllenPompeo,Alex omg +05/04/2018,Actors,@EllenPompeo,Nice @iJesseWilliams the jolex scene ❤️💔😩 +05/04/2018,Actors,@EllenPompeo,And soon to be three wait for it +05/04/2018,Actors,@EllenPompeo,I love these two +05/04/2018,Actors,@EllenPompeo,Anyone want to watch @iJesseWilliams directorial debut with me????? +05/03/2018,Actors,@EllenPompeo,@iJesseWilliams ⭐️⭐️⭐️⭐️ https://t.co/p0T0vmNak3 +05/02/2018,Actors,@EllenPompeo,@younglivingeo #sponsored https://t.co/YpvuY5ITR4 +05/02/2018,Actors,@EllenPompeo,Hundreds of decisions everyday affect the health&happiness of https://t.co/B20W8FyXr2's so important to read labels… https://t.co/ea3HKcguXd +05/02/2018,Actors,@EllenPompeo,@EllenPompao_ @sarahdrew @JessicaCapshaw Love it!💋 +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique so take the last sips of that haterade and keep it moving.. buh bye 💋 +05/02/2018,Actors,@EllenPompeo,@Orsi24 Happy Anniversary 💋💋💋 +05/02/2018,Actors,@EllenPompeo,Thanks again to the team @younglivingeo and everyone who came out to support and spread the word about plant based products #YLEO #sponsored +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique you should also keep believing everything you read... hows that working out for you btw?? 😜😜😜 +05/02/2018,Actors,@EllenPompeo,@Angeliiiiique @etnow Yeah hate to break it to you boo but you actually know nothing about what really goes on!! Big kiss 💋 +04/27/2018,Actors,@EllenPompeo,RT @PetsforPatriots: Maximus has spent more than 1/2 his life in a shelter + desperately needs a home. Loves to play and cuddle - the perf… +04/25/2018,Actors,@EllenPompeo,"RT @H2OOUnstoppable: SB1017 PASSED THE SENATE COMMITTEE! Ok California, let’s continue this momentum in banning drift nets, aka DeathNets!…" +04/25/2018,Actors,@EllenPompeo,RT @abbystern: Learned so much at @drkristifunk 's book launch for #BreastsTheOwnersManual and spoke to @EllenPompeo about how Dr. Funk ins… +04/24/2018,Actors,@EllenPompeo,Once again look how this white terrorist is able to walk into court to be judged... this is privilege poc are assas… https://t.co/tMcLqNIvhI +04/17/2018,Actors,@EllenPompeo,I love it tooo https://t.co/mgGn6oStFB +04/17/2018,Actors,@EllenPompeo,💯💯💯 https://t.co/x4C7YDl29i +04/17/2018,Actors,@EllenPompeo,RT @alana_pompeo: @EllenPompeo currently buckling down plans for the walk out & rally my friends and I planned during school this friday!!… +04/17/2018,Actors,@EllenPompeo,I can do it in 2... not easy https://t.co/xWr77RvFHz +04/17/2018,Actors,@EllenPompeo,@DaniellaScoleri Green juice +04/17/2018,Actors,@EllenPompeo,❤️❤️❤️ https://t.co/0P5Tbb8owB +04/17/2018,Actors,@EllenPompeo,Get in line 😂😂😂 https://t.co/IpL2fhGJO1 +04/17/2018,Actors,@EllenPompeo,The zoo is called @GreysABC 😂 https://t.co/vpgCizvOe2 +04/17/2018,Actors,@EllenPompeo,"RT @NonGMOProject: The novel pesticide is a combination of glyphosate and 2,4-D, to be sprayed over the top of corn, cotton, and soybeans t…" +04/17/2018,Actors,@EllenPompeo,It's so simple...I love @Trevornoah https://t.co/GdqPDvOjx5 +04/16/2018,Actors,@EllenPompeo,@Starbucks are you listening? https://t.co/EK8K7jQrtR +04/16/2018,Actors,@EllenPompeo,Mutual? @Starbucks how polite of you... oh the privilege ....and the protection of it at all costs is amazing https://t.co/rSzgylfrzY +04/16/2018,Actors,@EllenPompeo,"RT @RWPUSA: This isn't just a Starbucks issue. +Police procedures for making arrests need to be revised if a store manager's complaint about…" +04/14/2018,Actors,@EllenPompeo,This is amazing https://t.co/Mlr6YTLEyg +04/13/2018,Actors,@EllenPompeo,RT @itsjeaninemason: Thank you to @MedicalMeg & @PHDreamers who collaborated with @DefineAmerican to help make sure tonight's @GreysABC ep… +04/12/2018,Actors,@EllenPompeo,RT @Thirst4truth8: After the Miami Beach Gay Pride Parade Sunday 7:30PM-these 4individuals savagely beat a gay couple because they were hol… +04/09/2018,Actors,@EllenPompeo,@MattCarterMedia Thank You for this @MattCarterMedia I needed to hear this today 💋 +04/08/2018,Actors,@EllenPompeo,"RT @Gilman_Williams: . @EllenPompeo +8-year-old Kate wants to join you to help raise money for the Ellen DeGeneres Wildlife Fund! She and h…" +04/08/2018,Actors,@EllenPompeo,It isn't even hype though I've said it many times...she honestly takes every moment to another level https://t.co/7LxEb63e5Q +04/08/2018,Actors,@EllenPompeo,Ok I'm calm ...totally calm... except I'm not ...you guys @IamSandraOh does not mess around this is going to be b… https://t.co/xustW8sIkf +04/07/2018,Actors,@EllenPompeo,All of this cancer isn't coming from nowhere that's for damn sure... https://t.co/n9yCV9jygW +04/06/2018,Actors,@EllenPompeo,Lets be very clear about one thing... because you don't see it on social media does not mean it doesn't happen... https://t.co/rlqEiqIWTn +04/06/2018,Actors,@EllenPompeo,RT @foryoumadellenx: @EllenPompeo @IamSandraOh Really! @IamSandraOh is a super talented person! We look forward to see this great show her!… +04/06/2018,Actors,@EllenPompeo,💃💃💃 Yes.. please lets support @IamSandraOh I haven't even seen it but I know it's amazing because her talent takes… https://t.co/cxXhOCIqqN +04/06/2018,Actors,@EllenPompeo,This is a great article. @IamSandraOh talent is otherworldly. I was a huge fan of hers before Greys and I can't w… https://t.co/jZBJIpi4La +04/06/2018,Actors,@EllenPompeo,You know it was classic Greys....devastating with a side of absurdity 💔💔💔 https://t.co/KwEexPHSD1 +04/06/2018,Actors,@EllenPompeo,RT @AhmedBaba_: @AP A record number of newly-elected Congresswomen walking into the 2019 swearing in ceremony like https://t.co/IUhjKmv71r +04/06/2018,Actors,@EllenPompeo,"RT @Emma4Change: All our friends out there in LA, get ready 😎😎 https://t.co/5II6VdmLE4" +04/06/2018,Actors,@EllenPompeo,RT @GreysABC: Umm... #GreysAnatomy https://t.co/urKivF5TcM +03/31/2018,Actors,@EllenPompeo,This is fantastic thank you 💋💋💋 https://t.co/ttLn9N4W52 +03/31/2018,Actors,@EllenPompeo,Que???? Oh oh we get it April FOOLS https://t.co/XReOr1GkOU +03/31/2018,Actors,@EllenPompeo,"RT @dmvsredbonerebl: I REPEAT PASS IT ON, A BLACK COMPANY HELPING THOSE WITH CRIMINAL RECORDS GET JOBS OR START THEIR OWN BUSINESS BLESS TH…" +03/31/2018,Actors,@EllenPompeo,RT @Seasaver: What's newsworthy about this @TMZ is that the shark @VonMiller caught is an @IUCNRedList hammerhead that is highly likely to… +03/31/2018,Actors,@EllenPompeo,"RT @Seasaver: The treatment of this threatened hammerhead shark is appalling. IF it was released, it is unlikely to survive that ordeal. Wh…" +03/31/2018,Actors,@EllenPompeo,RT @cut_50: LAST CHANCE to grab one of these exclusive #Dignity campaign t-shirts (aka a #DIGNITEE 😉) - our @omaze campaign ends tonight!… +03/31/2018,Actors,@EllenPompeo,RT @rashadrobinson: Do NOT let this go unnoticed--Tennessee is out here criminalizing Black folks’ hair and profiting off their racist laws… +03/31/2018,Actors,@EllenPompeo,RT @NYTNational: A lawyer for the family said the findings proved that Mr. Clark could not have been moving in a threatening fashion toward… +03/31/2018,Actors,@EllenPompeo,RT @ABC: MAY I HAVE THIS DANCE? Veterinarians slow dance with puppies waking up from anesthesia after their surgeries. https://t.co/wPVp3sN… +03/31/2018,Actors,@EllenPompeo,RT @JoyAnnReid: Having not been prosecuted for killing Alton Sterling even after bodycam video shows him escalating the situation and displ… +03/31/2018,Actors,@EllenPompeo,RT @bbond: Devastating. https://t.co/S9Z3rnuoxO +03/31/2018,Actors,@EllenPompeo,"RT @MuslimIQ: Marjorie Stoneman Douglas High is 25% students of color. + +We've barely seen any students of color given the time of day from…" +03/30/2018,Actors,@EllenPompeo,RT @iJesseWilliams: All jokes aside 😂 our folk gotta stay on track. Don’t get finessed outchyer funds & don’t get pushed off your path. Com… +03/30/2018,Actors,@EllenPompeo,RT @GreysABC: Weekend Plans #GreysAnatomy https://t.co/5KCHinH0Oe +03/30/2018,Actors,@EllenPompeo,RT @JoyAnnReid: Watch it again. Note the non-compliance. Note the restraint. Then tell me you can't understand why people kneel and have to… +03/30/2018,Actors,@EllenPompeo,RT @lexforchange: “Police violence IS gun violence” https://t.co/Ezez0tIMSp +03/30/2018,Actors,@EllenPompeo,"RT @ABC: Baton Rouge Police Chief: ""Fear cannot be a driver for an officer's response to every incident. Unreasonable fear within an office…" +03/30/2018,Actors,@EllenPompeo,@ChildVides @GreysABC @shondarhimes @sarahdrew When you have a child of your own the break in your heart gets mende… https://t.co/qLGtc49vzf +03/30/2018,Actors,@EllenPompeo,RT @shondarhimes: Tonight's #TGIT is dedicated to Suzanne Patmore Gibbs. https://t.co/cj2dueKRVg https://t.co/00gnzVpGKZ +03/29/2018,Actors,@EllenPompeo,THANK YOU!! @carafreemanxx @P_ompeo @HugeDramatvfan @anothrmerderfan @PaliAseel @merder99 @bajangirlzfalif @magicpompeo @gilmour34 💋💋💋💋💋💋💋💋💋 +03/29/2018,Actors,@EllenPompeo,THANK YOU!! @swiftxgreys @deniseblvrs @diamoonda_rk @carriedenny @greyspostit @Daniellee_eee @metsswift 💋💋💋💋💋💋💋💋💋💋💋💋 +03/29/2018,Actors,@EllenPompeo,@CulverTateum Yes Thank you!!I just tweeted to you did you see it?? +03/29/2018,Actors,@EllenPompeo,Guys it's @GreysABC you should always be worried 😲 https://t.co/fxywatrRRw +03/29/2018,Actors,@EllenPompeo,"@Hugedramatvfan @anothrmerderfan @PaliAseel @merder99 @bajangirlzfalif @magicpompeo @gilmoir34 +Thank You!!! +💋💋💋💋💋💋💋💋💋💋💋💋💋" +03/29/2018,Actors,@EllenPompeo,"@swiftxgreys @deniseblvrs @diamoonda_rk @carriedenny @greyspostit @Daniellee_eee @metsswift @carafreemanxx @P_ompeo Thank You!!! +💋💋💋💋💋💋💋💋💋💋💋" +03/29/2018,Actors,@EllenPompeo,This!!! https://t.co/hiCcbjRVBu +03/28/2018,Actors,@EllenPompeo,RT @HuffPost: Rep. Steve King (R-Iowa) tried to take on teens about age minimums for gun purchases and voting. It didn’t go well. https://t… +03/28/2018,Actors,@EllenPompeo,RT @MollyRoseTarpey: @EllenPompeo Trained police officers can't use their weapons properly and Trump and the GOP want to arm teachers? 🙄 +03/28/2018,Actors,@EllenPompeo,Black men and women are assasinated while jumping fences and white domestic terrorists are able to be walked into a courtroom to be judged +03/28/2018,Actors,@EllenPompeo,Thank God https://t.co/jJulrKQDtN +03/28/2018,Actors,@EllenPompeo,Ill say it again because it can't be said enough https://t.co/wMotOxt9ME +03/28/2018,Actors,@EllenPompeo,Also it deserves repeating... the Stoneman Douglas shooter walked into a courthouse after he was arrested think abo… https://t.co/RhQ8MEL0BV +03/27/2018,Actors,@EllenPompeo,"RT @eugenegu: As a surgeon, I’ve operated on gunshot victims who’ve had bullets tear through their intestines, cut through their spinal cor…" +03/26/2018,Actors,@EllenPompeo,Its hunting season on poc all day every day they shoot to kill every time everyone should be furious about this https://t.co/OyHJY1T987 +03/24/2018,Actors,@EllenPompeo,"RT @bevysmith: I support #MarchForOurLives but I want folks to show up with the same energy to #MarchForBlackLives yes, we need a separate…" +03/24/2018,Actors,@EllenPompeo,RT @JuddApatow: 73 Teens Shot To Death In The 37 Days Since The Parkland Massacre - HuffPost https://t.co/m5hLPxygTv +03/24/2018,Actors,@EllenPompeo,RT @mradamscott: $3.3 million from NRA https://t.co/DzEqOAHJHk +03/24/2018,Actors,@EllenPompeo,RT @DMVBlackLives: #StephonClark https://t.co/Q7vnJ8XDG0 +03/24/2018,Actors,@EllenPompeo,RT @townhallproject: This veteran's sign says it all. https://t.co/5nUuebc5Tr +03/24/2018,Actors,@EllenPompeo,RT @byshondaland: Can't make it to the #MarchForOurLives? Here's how you can still help. https://t.co/X33jrtLzf4 +03/24/2018,Actors,@EllenPompeo,"RT @kylegriffin1: 11-year old Naomi Wadler: ""I am here to acknowledge and represent the African-American girls whose stories don't make the…" +03/24/2018,Actors,@EllenPompeo,RT @RichardPrince4: So he’s at Mar A Largo. You outnumber him and his security. Go there. Keep going. Find him. Surround him. Don’t let him… +03/24/2018,Actors,@EllenPompeo,"RT @NYCSpeakerCoJo: Trevon Bosley’s brother was shot and killed as he left church in Chicago. + +I will never be afraid to say that #BlackLiv…" +03/24/2018,Actors,@EllenPompeo,"RT @ABC: Student at #MarchforOurLives rally in D.C.: ""We need to arm our teachers. We need to arm our teachers with pencils, pens, paper an…" +03/24/2018,Actors,@EllenPompeo,RT @chrisnellum: “Young black girls [in DC] are now likely to be arrested at 30 times the rate of white boys and girls together..” @rights4… +03/24/2018,Actors,@EllenPompeo,"RT @nhbaptiste: So, uh, the NRA isn’t very popular here. #MarchForOurLives https://t.co/4MHefnL1GH" +03/24/2018,Actors,@EllenPompeo,"RT @Goss30Goss: Thr fucking NRA no longer controls the narrative. The millions of Americans who want common sense gun laws do. + +#MarchForO…" +03/24/2018,Actors,@EllenPompeo,"RT @JordanUhl: Raw milk is more regulated than guns. + +#MarchForOurLives" +03/24/2018,Actors,@EllenPompeo,"RT @THR: Parkland student Adam Buchwald at #MarchForOurLives: ""We now have a voice"" https://t.co/LLGEspkZrV https://t.co/EfdvZKW7YL" +03/24/2018,Actors,@EllenPompeo,"RT @timkaine: This is who I march for. + +For our littlest kids. + +The ones who have not yet stepped foot into a classroom. They deserve to gr…" +03/24/2018,Actors,@EllenPompeo,RT @KamalaHarris: Optimism. That's what I see today from our youth at marches across America. They are going to be the generation that ends… +03/24/2018,Actors,@EllenPompeo,"RT @4EdJustice: Black youth are forced to make demands on a system that does not love them. @RethinkNOLA, you inspire us to continue the fi…" +03/23/2018,Actors,@EllenPompeo,RT @Emma4Change: I have absolutely no words... Thank you not only for your service but for standing with us as we #MarchForOurLives tomorro… +03/23/2018,Actors,@EllenPompeo,"RT @TIME: “Inaction is inexcusable.” TIME's editor @efelsenthal on what we can learn from the student teachers in Parkland, Fla. https://t.…" +03/23/2018,Actors,@EllenPompeo,This is a must read https://t.co/ZH4KGKHwIy +06/25/2018,Actors,@JessicaCapshaw,RT @jessetyler: I thought we decided that businesses are allowed to discriminate and don’t have to serve people they don’t want to serve...… +06/25/2018,Actors,@JessicaCapshaw,RT @KamalaHarris: Kirstjen Nielsen should resign immediately. She is leading an agency that has separated children from their parents and a… +06/23/2018,Actors,@JessicaCapshaw,"RT @jenniferbeals: Rise and shine. + +The world needs you." +06/23/2018,Actors,@JessicaCapshaw,"No, that’s not full Chynna. That’s what I refer to as the post-Chynna-I- wish-I-looked-like-Chynna-but-I-don’t -so-… https://t.co/Ii2KR5bLml" +06/23/2018,Actors,@JessicaCapshaw,"RT @ConstanceZimmer: I’d like to create a new social media platform where you go to read good news and laugh at random jokes, a place that…" +06/23/2018,Actors,@JessicaCapshaw,"Ummm, you know everything. Clearly. https://t.co/6pmTmbHY2h" +06/22/2018,Actors,@JessicaCapshaw,RT @RWitherspoon: Everyday for me is #DernDay !! I Feel the Dern! 🌟 https://t.co/SfLneN8Pcc +06/22/2018,Actors,@JessicaCapshaw,"RT @iJesseWilliams: If you, your friends and/or family are looking for scholarships this summer, @myScholly just launched our $10,000 Summe…" +06/19/2018,Actors,@JessicaCapshaw,RT @KamalaHarris: Many of you have asked how you can help the families being impacted by our government's human rights abuses along the bor… +06/19/2018,Actors,@JessicaCapshaw,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/19/2018,Actors,@JessicaCapshaw,"I called and left messages for my State’s Senators, @KamalaHarris & @SenFeinstein at 202-224-3121 +I wasn’t sure ex… https://t.co/H02lrrt30C" +06/11/2018,Actors,@JessicaCapshaw,💕👍🏻👏🏼😘 https://t.co/gCxuydFhAM +06/06/2018,Actors,@JessicaCapshaw,Never!!! 😘😘😘😘 https://t.co/CO3ihSo1tW +06/06/2018,Actors,@JessicaCapshaw,I somehow missed this so thank you someone for retweeting it. I couldn’t have been more fortunate to work with… https://t.co/vjr2XDkSlv +05/29/2018,Actors,@JessicaCapshaw,RT @iJesseWilliams: ‼️✊🏽❕‼️✊🏽❕‼️✊🏽❕‼️✊🏽❕ https://t.co/uQgm9phtSr +05/28/2018,Actors,@JessicaCapshaw,This cannot continue. What can we as a collective body of human beings do to not let these children be separated fr… https://t.co/5vp8CRHw8v +05/26/2018,Actors,@JessicaCapshaw,Thank YOU for the privilege of playing the tremendous character that you created. I’ll never stop being grateful fo… https://t.co/6ck8K2U01l +05/25/2018,Actors,@JessicaCapshaw,Love this! https://t.co/hu5Kkm4u4n +05/25/2018,Actors,@JessicaCapshaw,RT @Weinsteinlaw: It’s a sad day in America when we ban professional athletes from protesting peacefully before we ban the sale of assault… +05/25/2018,Actors,@JessicaCapshaw,RT @jodikantor: We’re in the courtroom waiting for Weinstein. For so long he had his own private system— fancy lawyers who paid to silence… +05/25/2018,Actors,@JessicaCapshaw,Love this!! https://t.co/RaeuFiyfMt +05/24/2018,Actors,@JessicaCapshaw,💪🏼🙌🏼 https://t.co/gmHtkTAH88 +05/24/2018,Actors,@JessicaCapshaw,💃😘💃 https://t.co/OX0dpF6VOP +05/24/2018,Actors,@JessicaCapshaw,Thank you for all of your commitment and hard work!! xoxox https://t.co/p7TqyfqN2r +05/22/2018,Actors,@JessicaCapshaw,Sending out big love and deep respect to… https://t.co/eGWTm496s3 +05/21/2018,Actors,@JessicaCapshaw,Awwwww...!!! https://t.co/w4hTpWg48a +05/21/2018,Actors,@JessicaCapshaw,Thank yooooooou!!! 😘 https://t.co/tYHHIdmHz4 +05/20/2018,Actors,@JessicaCapshaw,"I am very late to the party, but at least I got here...#MeghanAndHarry" +05/19/2018,Actors,@JessicaCapshaw,"I’m taking the weekend off...Monday, there will be video. https://t.co/hjhewzbA7K" +05/19/2018,Actors,@JessicaCapshaw,Huge respect for @jimmykimmel and his opening monologue tonight. The video that follows presenting politicians spea… https://t.co/0XcdJvMMLe +05/18/2018,Actors,@JessicaCapshaw,RT @iJesseWilliams: Radiant #GreysAnatomy @KellyMcCreary @JessicaCapshaw @sarahdrew https://t.co/93g2LfCCRl +05/18/2018,Actors,@JessicaCapshaw,And that’s a farewell to Arizona Robbins... https://t.co/fEN6vc6YlK +05/18/2018,Actors,@JessicaCapshaw,RT @shir_dan: @JessicaCapshaw you once said that when you first heard the name Arizona Robbins u felt like it's too much name to live up to… +05/18/2018,Actors,@JessicaCapshaw,I stand corrected. West coast...2 mins...!!! https://t.co/V58TsdKVDS +05/18/2018,Actors,@JessicaCapshaw,3 mins east coast!! +05/18/2018,Actors,@JessicaCapshaw,"She is so kind, enthusiastic, sweet and prepared!!! https://t.co/e3qRwNnoec" +05/18/2018,Actors,@JessicaCapshaw,Blue flannnnnel!!!! https://t.co/lPC17odc1Y +05/18/2018,Actors,@JessicaCapshaw,RT @capshawsdarby: your positivity posts are what get me through some days and I really just can’t thank you enough for everything you’ve d… +05/18/2018,Actors,@JessicaCapshaw,😘 https://t.co/pIOijeJjHB +05/18/2018,Actors,@JessicaCapshaw,Mornin’ https://t.co/V794gHSyMl +05/18/2018,Actors,@JessicaCapshaw,💕💕💕💕💕💕💕💕💕 https://t.co/mv2NDlCyB4 +05/18/2018,Actors,@JessicaCapshaw,The free gum? https://t.co/e1UGNbMDg2 +05/18/2018,Actors,@JessicaCapshaw,"RT @RuPaul: Show up on time. +Be prepared. +Don’t complain. https://t.co/nEhagrGkev" +05/18/2018,Actors,@JessicaCapshaw,His good morning hugs and kisses. https://t.co/uGCEtp3pYu +05/18/2018,Actors,@JessicaCapshaw,Final. https://t.co/PvsyIjRjQa +05/18/2018,Actors,@JessicaCapshaw,RT @swiftdobrevas: @JessicaCapshaw Thank you for your 10 years of portrayal of Arizona Robbins. She has inspired so much for the past 2 yea… +05/18/2018,Actors,@JessicaCapshaw,This is how quickly I run towards @KellyRipa ❤️💕❤️💕❤️💕❤️ https://t.co/wTqrOzto9c +05/18/2018,Actors,@JessicaCapshaw,RT @psicogreys: when we heard about his departure I and some fans from various countries did a video of homage to Arizona and you @JessicaC… +05/18/2018,Actors,@JessicaCapshaw,"So, so, so much. https://t.co/2sXuuCkGhz" +05/18/2018,Actors,@JessicaCapshaw,LOVE. https://t.co/lwPLzdP7YA +05/18/2018,Actors,@JessicaCapshaw,RT @arjzonas: @JessicaCapshaw i wish i could express to you how much arizona meant to me and how impactful your portrayal of her was for me… +05/18/2018,Actors,@JessicaCapshaw,This is the kind of tweet that leaves me humbled beyond belief and in a puddle of happy tears...@shondarhimes… https://t.co/h9t38pZhYa +05/18/2018,Actors,@JessicaCapshaw,"Bahahahah, she was fun. https://t.co/hejfvxSTPY" +05/18/2018,Actors,@JessicaCapshaw,@MelaniesHair spent sooooo long doing @camilluddington hair. I was all 😴😴😴😴😴😴😴😴😴😴 https://t.co/mytPUPHSff +05/18/2018,Actors,@JessicaCapshaw,RT @sarahdrew: Head over to my Instagram account. I’ve got lots of stuff to share starting now :) 😘😘😘 Loved chatting with you in my final g… +05/18/2018,Actors,@JessicaCapshaw,"RT @EmmaWatson: This #IDAHOT I stand in solidarity with LGBTQI activists who are fighting to have the same rights, freedoms, protection & s…" +05/18/2018,Actors,@JessicaCapshaw,❤️ https://t.co/unjIY5iing +05/18/2018,Actors,@JessicaCapshaw,You’ve got this. And we’ve got your back. 😘 https://t.co/KJOIW5A0XY +05/18/2018,Actors,@JessicaCapshaw,This is everything. Everyone. Every. One. Should feel represented in the landscape of television... https://t.co/dCeBbRedRU +05/18/2018,Actors,@JessicaCapshaw,No. https://t.co/om3hPppaTq +05/18/2018,Actors,@JessicaCapshaw,I’ve read about it but I haven’t received it... https://t.co/PuqLBw6wmp +05/18/2018,Actors,@JessicaCapshaw,"Awwww, thank you!! https://t.co/DDLkyzZWRO" +05/18/2018,Actors,@JessicaCapshaw,"RT @enews: You were our person, Arizona. #GreysAnatomy https://t.co/qhVTdj8fDU https://t.co/6t1FR19e7P" +05/18/2018,Actors,@JessicaCapshaw,"Gives me a wide smile, a warm heart and goosebumps all over my body all at the same time. https://t.co/mT9hm7wukO" +05/18/2018,Actors,@JessicaCapshaw,@SaraRamirez is one of the most talented and committed actors that I’ve ever worked with. And that’s a fact. https://t.co/WGpJK3Dhmt +05/18/2018,Actors,@JessicaCapshaw,Ummm...everything? https://t.co/m2PH5OTVkm +05/18/2018,Actors,@JessicaCapshaw,I LOVE THIS!! But I didn’t get it!! https://t.co/enQtGr0Pbu +05/18/2018,Actors,@JessicaCapshaw,"Pretty good, right?!? https://t.co/vexTFmz2ty" +05/18/2018,Actors,@JessicaCapshaw,OF COURSE!! https://t.co/WWqZXTxOej +05/18/2018,Actors,@JessicaCapshaw,So many things... https://t.co/G4Szl3PBak +05/18/2018,Actors,@JessicaCapshaw,Nope. https://t.co/8gIH6K8QMy +05/18/2018,Actors,@JessicaCapshaw,@sexmirez @sashaalexander That would be a dream come true... +05/18/2018,Actors,@JessicaCapshaw,No. https://t.co/uOGY7UkRBP +05/18/2018,Actors,@JessicaCapshaw,Nope. But @sarahdrew might since it’s her actual phone case... https://t.co/JXm7kJ4QrR +05/18/2018,Actors,@JessicaCapshaw,ELATION. I literally may have levitated. https://t.co/KmRssRL8FY +05/18/2018,Actors,@JessicaCapshaw,"@callicpetxrres So many real tears...and by the way, most of them got edited out. Must’ve been too many tears...😍" +05/18/2018,Actors,@JessicaCapshaw,I heard that was meant for next season... https://t.co/2U7GG3JXIn +05/18/2018,Actors,@JessicaCapshaw,I’ve got some things up my sleeve... ☺️ https://t.co/PklkZtJ83Q +05/18/2018,Actors,@JessicaCapshaw,"Ummmm...it was a full blown meltdown. A cathartic, wild, full force processing of a decade. https://t.co/B0tlCZ3x7P" +05/18/2018,Actors,@JessicaCapshaw,She always wants to smooch me 🙄 https://t.co/eazUrrUypA +05/18/2018,Actors,@JessicaCapshaw,My friend @7JustinChambers https://t.co/d7ubxB9zC4 +05/18/2018,Actors,@JessicaCapshaw,"She’s sweet, enthusiastic, and full of information!! https://t.co/VzPkCkVmEI" +05/18/2018,Actors,@JessicaCapshaw,You have questions? I have answers... +05/18/2018,Actors,@JessicaCapshaw,In our next show for suuuure!! 😘 https://t.co/VVY4a2Pi3v +05/18/2018,Actors,@JessicaCapshaw,East cooooooast!! 10 mins!! Let’s do this!! +05/18/2018,Actors,@JessicaCapshaw,"I love you, sister. ❤️❤️ https://t.co/w1OcKTjPYb" +05/18/2018,Actors,@JessicaCapshaw,"Constance!!! I love working with you so much. You came in and were fierce, talented, prepared and all kinds of craz… https://t.co/Hx4kgNP1A3" +05/17/2018,Actors,@JessicaCapshaw,Just saying...my Instagram feed is going to look like I was on Grey’s Anatomy for a decade by the end of this evening. 😂🤣😎 +05/17/2018,Actors,@JessicaCapshaw,Today’s the day...it’s finally here. Farewell Arizona Robbins!!! I’ll be live tweeting the WEST COAST airing tonight. ❤️👩🏼‍⚕️❤️ +05/17/2018,Actors,@JessicaCapshaw,Thank YOU ALL!!! https://t.co/ZuhmYJf9k4 +05/16/2018,Actors,@JessicaCapshaw,Why try not to laugh?!? Lean into it people!! 😂😂😂😂😂😂 https://t.co/FeSAL7mDOA +05/16/2018,Actors,@JessicaCapshaw,"Season finale tomorrow, people!! What’s going to happen? I know, do you? 😬😎🙃😉🤐" +05/16/2018,Actors,@JessicaCapshaw,What in what has Yanny done to you?!? Snap out of it!! You really shouldn’t lose us both over the Yanster. https://t.co/kEJgv5LKAI +05/16/2018,Actors,@JessicaCapshaw,"Literally the first time we’re not on the same page. Who is messing with us?!?! + +It’s clearly and definitively Laur… https://t.co/SySLMHW2Bq" +05/15/2018,Actors,@JessicaCapshaw,Never. https://t.co/cXRGx6tqUJ +05/15/2018,Actors,@JessicaCapshaw,I stand corrected. Last live tweet for GREY’S ANATOMY... https://t.co/RipaD7qnIt +05/15/2018,Actors,@JessicaCapshaw,"So, I’m thinking...anyone up for one last live tweet from me this Thursday?" +05/11/2018,Actors,@JessicaCapshaw,The all of it. 😘☺️ https://t.co/wuVmFHv0wL +05/11/2018,Actors,@JessicaCapshaw,"RT @JChambersOnline: ""I thought you were a pixie stick. When I met you, I thought you were an empty vessel full of sugar who skated in a ho…" +05/11/2018,Actors,@JessicaCapshaw,😂❤️😂❤️ https://t.co/8CAgoezDuv +05/11/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/s2azgiS9xx +05/09/2018,Actors,@JessicaCapshaw,Full blown heart explosion. https://t.co/TPRbLmsmuW +05/06/2018,Actors,@JessicaCapshaw,"I do believe that @7JustinChambers has been hitting it out of the park for FOURTEEN YEARS...love, love, love and ma… https://t.co/QN5GxMfYKF" +05/04/2018,Actors,@JessicaCapshaw,"Love you, Lindaaaaa!!! https://t.co/bzI8FnZSso" +05/04/2018,Actors,@JessicaCapshaw,"10 years of learning under the best (and toughest) teacher a girl could wish for...@iamlk ++ +1 episode with a soulf… https://t.co/75vn0hJiyt" +05/03/2018,Actors,@JessicaCapshaw,It’s a fact that @iJesseWilliams & I became friends the minute that he arrived at Grey’s. I had no idea then that h… https://t.co/LiQ4g9iO9h +05/03/2018,Actors,@JessicaCapshaw,"I do, I do, I do. And I am so grateful for your participation in making Arizona Robbins’ life on Grey’s so successf… https://t.co/ueNRifnovu" +05/02/2018,Actors,@JessicaCapshaw,👏🏼👏🏼👏🏼 https://t.co/jlJJcL5Mqg +05/02/2018,Actors,@JessicaCapshaw,This made me laugh out loud... https://t.co/gzeM6srfuW +04/20/2018,Actors,@JessicaCapshaw,"That’s a series wrap for Arizona Robbins...wow, wow, wow." +04/18/2018,Actors,@JessicaCapshaw,"Ummmm, better than pictures, I have VIDEO, people. All in good time... https://t.co/WetJqbtwA0" +04/18/2018,Actors,@JessicaCapshaw,Bahahahaha! https://t.co/FJheFh74bj +04/18/2018,Actors,@JessicaCapshaw,"Ok, that’s crazy. I brought it in for @MelaniesHair to try for something she had to go to. Can’t believe that you s… https://t.co/CJDAZmK1Re" +04/16/2018,Actors,@JessicaCapshaw,I’m such a nostalgic fool. I get it from my father...so get ready for it this week as we go into...the last week of… https://t.co/jHxGByVLYs +04/15/2018,Actors,@JessicaCapshaw,RT @azandcallie: mimi listened i will never complain again https://t.co/pONIh5IVrr +04/14/2018,Actors,@JessicaCapshaw,"Bahahahaha!! +https://t.co/jVAbZGIFe6" +04/11/2018,Actors,@JessicaCapshaw,"Yes, please and thank you!! 🙌🏼 https://t.co/wniPUmQL5O" +04/10/2018,Actors,@JessicaCapshaw,Last drive from home to the studios this morning...TEN YEARS of commuting to reflect upon in 35 mins...wooaaahhh... +04/06/2018,Actors,@JessicaCapshaw,Yaaaaaaaasss!!! If I had moves like this I would NEVER STOP DANCING!! https://t.co/BqK93aTwUn +04/06/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️ https://t.co/LwtlRa35ri +04/05/2018,Actors,@JessicaCapshaw,Love you to the moon and back again...😘😘😘😘 https://t.co/cjDssNzqSS +04/05/2018,Actors,@JessicaCapshaw,Would do? Or have done? 😂🙄😬 https://t.co/aENgQEIOpz +03/29/2018,Actors,@JessicaCapshaw,RT @HeelyQueen: @JessicaCapshaw Bearizona Robbins just might be the cutest thing I ever saw. Plus the rainbow shows 😭🤧🌈 +03/27/2018,Actors,@JessicaCapshaw,"Oh my, oh my...what a ride!!! https://t.co/5ZkoyIJb7o" +03/25/2018,Actors,@JessicaCapshaw,"RT @splinter_news: ""I know you guys are going through the exact same thing. You just don't have the platform. People aren't listening to yo…" +03/23/2018,Actors,@JessicaCapshaw,#MarchForOurLivesLA https://t.co/qW2OtCXTi2 +03/23/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/44sJufTD2B +03/23/2018,Actors,@JessicaCapshaw,"Happy Birthday to one of the great ones...@RWitherspoon +You are one of the hardest working forces for good that I’… https://t.co/ouNqTN1WRF" +03/22/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/WMqi2Dl8Kh +03/21/2018,Actors,@JessicaCapshaw,I was the 25th!! 💃🏼 https://t.co/QAIVkvVsH8 +03/21/2018,Actors,@JessicaCapshaw,RT @MurielGuigui: @JessicaCapshaw Yes! And don’t forget how amazingly supportive @julieplec was too! +03/21/2018,Actors,@JessicaCapshaw,"“One time was enough. One story was enough. One woman is enough.” Finchie, thank you for sharing your story. I’m so… https://t.co/QA2vgZLq8n" +03/20/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️ https://t.co/Ildu2Cfvaa +03/19/2018,Actors,@JessicaCapshaw,Beyond!!!✈️❤️✈️ https://t.co/ygMKdbGoqO +03/19/2018,Actors,@JessicaCapshaw,Surreal and so moving...loved being there with you. xoxox ❤️✈️😘 https://t.co/jjCxRWpasa +03/19/2018,Actors,@JessicaCapshaw,"OMG. There is a plane carrying a banner that says.. +WE ❤️ SARAH DREW & JESSICA CAPSHAW right now... +There are no words...WE ❤️ YOU ALL!!" +03/17/2018,Actors,@JessicaCapshaw,"This scene was so much fun to shoot. And I had just had my sweet baby girl, Evie. Literally, I had just had her. https://t.co/8556G2seX2" +03/17/2018,Actors,@JessicaCapshaw,"Ella, I am so grateful to have had the sincere privilege of playing this role. My heart is full knowing that having… https://t.co/jmLtFcCx5O" +03/16/2018,Actors,@JessicaCapshaw,Drove to work thinking about all of you over at @scandal such an enormous day for you...sending you all so much lov… https://t.co/MM6b7ha5i2 +03/16/2018,Actors,@JessicaCapshaw,What?!? I want gold heelys!!!! https://t.co/iBvqdNLp0z +03/16/2018,Actors,@JessicaCapshaw,I really believe this... https://t.co/BDnnKjWXrz +03/16/2018,Actors,@JessicaCapshaw,Right now my answer would be every single one... https://t.co/4okNxFe0Te +03/16/2018,Actors,@JessicaCapshaw,I haven’t seen this in a while and I kind of LOVE IT. 👩🏼‍⚕️💃😂 https://t.co/k8rXhGfPGk +03/16/2018,Actors,@JessicaCapshaw,😘💯👍🏻💥 https://t.co/yvUEs2NNMA +03/16/2018,Actors,@JessicaCapshaw,I can’t even. https://t.co/uGa6y6l3E0 +03/15/2018,Actors,@JessicaCapshaw,This is incredible!! Thank YOU. You are never alone and you should always be proud of who you are. If this letter i… https://t.co/xcfynEQZnG +03/15/2018,Actors,@JessicaCapshaw,And then you’ll get back up 😉 https://t.co/FR2oQCwi7w +03/15/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/zRQcQfvStE +03/15/2018,Actors,@JessicaCapshaw,I can’t find words big enough to express how much this means to me. I am smiling ear to ear. Thank you for sharing… https://t.co/cAX2lGlo6k +03/15/2018,Actors,@JessicaCapshaw,I LOVE THIS PICTURE SO MUCH. There are magical moments that happen on set sometimes where basically all the actors… https://t.co/NFWp90WtuH +03/15/2018,Actors,@JessicaCapshaw,"Oh my, oh my...that is definitely happiness in a clip (plus a healthy amount of snapping and clapping while moving… https://t.co/PhUtkNivJO" +03/14/2018,Actors,@JessicaCapshaw,"From Camp BFF’s to comedy wranglers on television?!? +YES, PLEASE!! 😘 https://t.co/jm3GtghULE" +03/14/2018,Actors,@JessicaCapshaw,OOOOMMGGGG!!! That would be what’s referred to as ‘must see TV!’ https://t.co/pCGjWGjn5l +03/14/2018,Actors,@JessicaCapshaw,"Go get ‘em Lady!! And ummm, please keep a journal so that you can share everything when you come back online. 💕💕💕💕 https://t.co/JDVNdUp2Ru" +03/14/2018,Actors,@JessicaCapshaw,"I could NOT BE MORE EXCITED for this incredible talent. What a lucky, lucky, show ‘Cagney and Lacey’ is to have you… https://t.co/SUaXJcJccs" +03/13/2018,Actors,@JessicaCapshaw,I think there is so much more to create here 😉 https://t.co/nGixXr5NKB +03/12/2018,Actors,@JessicaCapshaw,❤️ https://t.co/3nWmwMH2mh +03/12/2018,Actors,@JessicaCapshaw,"Love your life honestly and lead with kindness and you will always be proud of who you are. Because you, are magica… https://t.co/jbd1bJjiTJ" +03/12/2018,Actors,@JessicaCapshaw,"Love this, Tom!! Thank you so much. You were there in the very beginning for me and I was so grateful to work with… https://t.co/iHDSzOp43q" +03/12/2018,Actors,@JessicaCapshaw,"You have always been so kind and so supportive, Felien. Thank you for that!!! https://t.co/ybbikJmHj9" +03/12/2018,Actors,@JessicaCapshaw,Oh. My. Goodness. You’re making me cry!! Thank you for this...I am so grateful to you all for bringing all this lov… https://t.co/LiFiXAeeNY +03/10/2018,Actors,@JessicaCapshaw,"My dear, Jesse. Your humor, strength and friendship have been a lifeline for me at times. There’s not many people w… https://t.co/aUIo3JebEL" +03/10/2018,Actors,@JessicaCapshaw,RT @JessicaCapshaw: ❤️ @stacysmckee16 https://t.co/AbONdCM96o +03/10/2018,Actors,@JessicaCapshaw,❤️ @stacysmckee16 https://t.co/AbONdCM96o +03/10/2018,Actors,@JessicaCapshaw,😘 https://t.co/ZWTnHydqeJ +03/10/2018,Actors,@JessicaCapshaw,💯 https://t.co/N3HF75UhGz +03/10/2018,Actors,@JessicaCapshaw,So sweet!!! https://t.co/s7raWxST5a +03/10/2018,Actors,@JessicaCapshaw,🌈🌈🌈🌈🌈🌈🌈🌈 https://t.co/9IOih1yyzU +03/10/2018,Actors,@JessicaCapshaw,Thank YOU!!! https://t.co/hts5Ad1QXh +03/10/2018,Actors,@JessicaCapshaw,❤️ https://t.co/Jc1fdgq9dP +03/10/2018,Actors,@JessicaCapshaw,Aaaaaaahhhhhhb!!! Look at this!!! https://t.co/hqAJzT89vK +03/10/2018,Actors,@JessicaCapshaw,This is everything. https://t.co/lHR3ndUkri +03/10/2018,Actors,@JessicaCapshaw,What am I doing here?!?! 😂😂😂 https://t.co/ButuMY2dqF +03/10/2018,Actors,@JessicaCapshaw,Thank you for sharing this. I’m beyond grateful that @shondarhimes created this character for me to play. Arizona h… https://t.co/RCeNfTUfTo +03/10/2018,Actors,@JessicaCapshaw,"Awwwww, love those wheeeelie sneaks!!! https://t.co/PHrR2ZoRp4" +03/10/2018,Actors,@JessicaCapshaw,This is so beautiful. I am so grateful for your kind words. I am even more grateful that Arizona brought you someon… https://t.co/xBhjZ9o7VE +03/10/2018,Actors,@JessicaCapshaw,"I can’t even. + +Caterina is a force of nature. A true talent, scholar and friend. ❤️ https://t.co/wg9Kj0SyfL" +03/10/2018,Actors,@JessicaCapshaw,"Thank you, thank you and thank you. +😘 https://t.co/Z8cjsDZ2Lt" +03/10/2018,Actors,@JessicaCapshaw,We clearly have had no fun at all 😉 https://t.co/Vu5n0i9Np3 +03/10/2018,Actors,@JessicaCapshaw,And always in mine... https://t.co/9fULjvUVHl +03/10/2018,Actors,@JessicaCapshaw,"RT @_caoutlaw: You're kind of a legend. +Always be @JessicaCapshaw ❤️ https://t.co/iMeH4QaZCm" +03/10/2018,Actors,@JessicaCapshaw,Thank YOU. It has been an honor to play Arizona. xoxox https://t.co/VUgTMgpg23 +03/10/2018,Actors,@JessicaCapshaw,"Right back at you, my friend... https://t.co/QA7IywiD0d" +03/10/2018,Actors,@JessicaCapshaw,😍 https://t.co/oY7rYFaanV +03/08/2018,Actors,@JessicaCapshaw,https://t.co/HVfHbkEQTG +03/06/2018,Actors,@JessicaCapshaw,AMAZING. https://t.co/Nh29BWRtrl +03/06/2018,Actors,@JessicaCapshaw,❤️❤️❤️❤️❤️❤️ https://t.co/dYuYmzIH26 +03/02/2018,Actors,@JessicaCapshaw,Thank YOU!! https://t.co/XojGKjAQhB +03/02/2018,Actors,@JessicaCapshaw,Thank YOU!! https://t.co/97U3u4UaU8 +03/02/2018,Actors,@JessicaCapshaw,There is nothing more impactful than this. My guess is that you are more than ok. My guess is that you are WONDERFU… https://t.co/VKSK0gjak9 +03/02/2018,Actors,@JessicaCapshaw,You mean so much to me!! https://t.co/97U3u4UaU8 +03/02/2018,Actors,@JessicaCapshaw,"I see you and I am so, so, so happy... https://t.co/5AvIqY3Rvx" +03/02/2018,Actors,@JessicaCapshaw,I misssssss yooooouuuu!!! Congratulations on @Station19 💯👍🏻💯👍🏻💯 https://t.co/MSiDC13TLo +03/02/2018,Actors,@JessicaCapshaw,I humbly apologize... https://t.co/JnESoMZLIs +03/02/2018,Actors,@JessicaCapshaw,I love it when some of our improvs make it in the show!!! And I love working with @KellyMcCreary and @iJesseWilliams https://t.co/Dl2zLK45eC +03/02/2018,Actors,@JessicaCapshaw,Bahahahahah https://t.co/74IhlQoxGg +03/02/2018,Actors,@JessicaCapshaw,EPIC FAIL!!! Got caught at work!!! And then forgot to even let you all know. I’m the wooooorrrrsssst!! I’m so sorry. https://t.co/HWeZZDCfrM +02/27/2018,Actors,@JessicaCapshaw,Yes!! https://t.co/fCW9JSOOI9 +02/24/2018,Actors,@JessicaCapshaw,I doooooooo... https://t.co/jy7X177wby +02/24/2018,Actors,@JessicaCapshaw,RT @KarlaSouza7: I am proud to stand in solidarity with my sisters in Mexico and women around the world whose voices are finally being hear… +06/30/2018,Actors,@sarahdrew,"RT @bleuangel88: In which I demand @sarahdrew be given an Emmy. Give Maggie (@KellyMcCreary) the due she deserves, and OF COURSE @peyton_k…" +06/28/2018,Actors,@sarahdrew,The night Harriet was conceived began with a fortune cookie fight :) https://t.co/k0hhsQjQFz +06/28/2018,Actors,@sarahdrew,Oh man... this is so sweet! I love @sleepingatlast version of Faith!! https://t.co/GWkYmxijn9 +06/28/2018,Actors,@sarahdrew,😂😂😂🐷🏠🛳🎢✈️🍪🍼🥠🐓🐖 https://t.co/ItxWHWTtu3 +06/28/2018,Actors,@sarahdrew,"RT @GlennonDoyle: So many of you have been asking for ways that you can help the separated families beyond giving. +So we put together this…" +06/27/2018,Actors,@sarahdrew,Yes! That is the perfect description!!! Ps- I LOVE your work @sleepingatlast !!! https://t.co/kNL9k2Nxum +06/27/2018,Actors,@sarahdrew,"If you haven’t seen @Hannahgadsby show #nanettflix yet, stop what you are doing and watch it immediately. It was on… https://t.co/HDwnq3d47U" +06/25/2018,Actors,@sarahdrew,"@Dani_beii I see them all and if you don’t want anyone else to see them, just let me know in the video and I’ll be sure not to share" +06/25/2018,Actors,@sarahdrew,@frwkinsuperhero Yes!! +06/25/2018,Actors,@sarahdrew,@gtwayscar Yay!!! I’m proud of you! +06/25/2018,Actors,@sarahdrew,@heavenously I can’t wait to hear your voice! +06/25/2018,Actors,@sarahdrew,"@Dani_beii If you don’t want me to share your response, just mention that in your video and I will be the only one to see it!" +06/25/2018,Actors,@sarahdrew,"@thaysmarcelina2 For this one, I’m asking for videos!" +06/25/2018,Actors,@sarahdrew,@apriIscrubcap That works too! Reply in whatever way you’d like! +06/25/2018,Actors,@sarahdrew,@dancesjolex Don’t be embarrassed!! +06/25/2018,Actors,@sarahdrew,@EllenPompao_ It has to be video :) +06/25/2018,Actors,@sarahdrew,Come and talk to me guys! Click the link 👇🏻👇🏻 I can’t wait to hear from you!!! https://t.co/Pg2q7JRSTd +06/25/2018,Actors,@sarahdrew,RT @DalaiLama: I am one of the 7 billion human beings alive today. We each have a responsibility to think about humanity and the good of th… +06/25/2018,Actors,@sarahdrew,Thank you so much! I LOVED playing this story last season! ❤️❤️❤️ https://t.co/OCvVVUUjiW +06/24/2018,Actors,@sarahdrew,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/24/2018,Actors,@sarahdrew,RT @mishacollins: Um... After Australia had a horrific mass shooting they implemented sensible gun control. They haven’t had another mass… +06/24/2018,Actors,@sarahdrew,RT @RevDrBarber: Those who use scripture and Christianity to justify harm and violence are guilty of theological malpractice and heresy. We… +06/24/2018,Actors,@sarahdrew,"Loved meeting you too, @kamron54 😘😘😘 https://t.co/SpFPofwi3c" +06/23/2018,Actors,@sarahdrew,"RT @amnestyusa: ""Why are we hiding this from the American people?"" - @tedlieu #FamiliesBelongTogther https://t.co/dwl2dt6soO" +06/22/2018,Actors,@sarahdrew,"RT @GlennonDoyle: This will be a day of calls, listening, listening, listening - learning and then deciding on the Next Right Thing. Really…" +06/22/2018,Actors,@sarahdrew,"RT @minh81: ****U R G E N T E ***** +“RAICES needs volunteer translators: ""who speak Meso-American indigenous languages (eg, zapotec, nahua,…" +06/22/2018,Actors,@sarahdrew,Yup. That was me last night catching up on the final episode. https://t.co/8lxiQ2nxfA +06/21/2018,Actors,@sarahdrew,RT @GlennonDoyle: 3.2 million dollars. That’s what you’ve raised. Soon we will have an update to you about how Round three of funds will be… +06/21/2018,Actors,@sarahdrew,"RT @lparrottperry: If you haven't donated yet, there's still time & there's still so much work to be done. + +There's no org I have more fait…" +06/20/2018,Actors,@sarahdrew,"RT @TheGoodGodAbove: Repeat after Me: +THOU SHALT NOT PUT BABIES IN CAGES. + +THOU SHALT NOT PUT BABIES IN CAGES. + +THOU SHALT NOT PUT BABIES I…" +06/20/2018,Actors,@sarahdrew,"RT @girlsreallyrule: Not sure how to call your senator? No biggie, follow these steps: +1. Look up your Senator here: https://t.co/wwInaPr77…" +06/20/2018,Actors,@sarahdrew,"RT @JessicaCapshaw: I called and left messages for my State’s Senators, @KamalaHarris & @SenFeinstein at 202-224-3121 +I wasn’t sure exactl…" +06/20/2018,Actors,@sarahdrew,This is so utterly devastating. I cannot believe our country is traumatizing babies in this way. I cannot believe i… https://t.co/naczfeH1DI +06/20/2018,Actors,@sarahdrew,RT @nowthisnews: ‘How can this happen in the 21st century? … Separation of the family is probably the worst thing that ever happened to us.… +06/20/2018,Actors,@sarahdrew,"RT @tonyposnanski: A tale of two parties... + +Rachel Maddow breaks down while reporting about children being taken from their parents... + +Co…" +06/20/2018,Actors,@sarahdrew,RT @caterinatweets: Resist evil. Send pictures from inside the “tender age shelters” so people can feel the truth. If you lose your job you… +06/20/2018,Actors,@sarahdrew,"RT @GlennonDoyle: You know how we teach our kids never to be “bystanders?” To stand up for other hurting kids being bullied? +Now is the ti…" +06/18/2018,Actors,@sarahdrew,"RT @CBSNews: WATCH: “This is torture to take a child from that mother, from that father, who literally risked all, including their lives, t…" +06/16/2018,Actors,@sarahdrew,RT @wendimclendonco: https://t.co/42Cq79Hagk +06/11/2018,Actors,@sarahdrew,This looks SO amazing @camilluddington !!! Congratulations!!! https://t.co/Z8NZAcV952 +06/09/2018,Actors,@sarahdrew,"RT @NPR: If you or someone you know may be considering suicide, contact the National Suicide Prevention Lifeline at 1-800-273-8255 (En Espa…" +06/09/2018,Actors,@sarahdrew,This thread is so beautiful. 👇🏻👇🏻👇🏻 https://t.co/i0Vx5jZNsC +06/08/2018,Actors,@sarahdrew,"RT @BarackObama: “Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us about food…" +06/08/2018,Actors,@sarahdrew,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/07/2018,Actors,@sarahdrew,RT @GlennonDoyle: Abby just said this to me: “we need to stop calling mental illness ‘personal demons’ like victims need exorcisms instead… +06/06/2018,Actors,@sarahdrew,"RT @itslizhannah: If any female showrunners want to do a panel on Thursday night, I will moderate and organize. https://t.co/R1IXBMOXWN" +06/05/2018,Actors,@sarahdrew,"RT @swingleft: Only 28% of Americans voted in the primaries in 2016, and we know what happened next. If you live in Alabama, California, Io…" +06/05/2018,Actors,@sarahdrew,RT @tonygoldwyn: Hey #CA #NJ #AL #IA #MS #MT #NM #SD its Election Day!!! Grab a friend and GO VOTE! #UseYourVoice +06/05/2018,Actors,@sarahdrew,😘😘😘 https://t.co/NawwHUKR3Z +06/01/2018,Actors,@sarahdrew,Ultimate #fbf ! This is so cute and it’s making me want to go back and watch the series again! #everwood… https://t.co/HKUOf3FjRz +06/01/2018,Actors,@sarahdrew,So much pain https://t.co/dSRKc1vTnY +06/01/2018,Actors,@sarahdrew,Absolutely!! https://t.co/V2IOgCY1kR +06/01/2018,Actors,@sarahdrew,RT @doglab: Please retweet if you think there should be a global ban on trophy hunting. https://t.co/3TQ04XNbk5 +06/01/2018,Actors,@sarahdrew,Well.... not so much in real life 😬😬🤷‍♀️🤷‍♀️ https://t.co/HLnNOyCIje +06/01/2018,Actors,@sarahdrew,"RT @HomeandFamilyTV: Actors @sarahdrew and Justin Bruening are making Justin's favorite pasta dish. #Recipes +https://t.co/gzqx4LzJDx https…" +06/01/2018,Actors,@sarahdrew,Check out our segment on @HomeandFamilyTV !! https://t.co/QnB7WZZOyq +05/31/2018,Actors,@sarahdrew,RT @JessicaNTurner: Took time this morning to call my senators and house representative regarding DACA and the separation of children from… +05/31/2018,Actors,@sarahdrew,"RT @GlennonDoyle: ""We need to stop just pulling people out of the river. We need to go upstream and find out why they’re falling in.” +You…" +05/31/2018,Actors,@sarahdrew,RT @GlennonDoyle: MY FRIENDS: LOOK. Keep calling!!! Keep calling! Numbers and scripts at https://t.co/HHuAcEAw7E. This is what democracy lo… +05/31/2018,Actors,@sarahdrew,Check it out tomorrow! You’ll get to see a clip from our new film @indivisiblemov too!! https://t.co/c0Y3KFUvNe +05/31/2018,Actors,@sarahdrew,I didn’t make any of it. Because Justin is the chef! I helped by eating it and saying “this is soooo good”. Because… https://t.co/K6HmPM3A8b +05/30/2018,Actors,@sarahdrew,I can’t wait to see this!!!!! https://t.co/uzp6XxGYBH +05/29/2018,Actors,@sarahdrew,"RT @Sarcasticluther: We can do this. (Please read whole post). Together we can hire lawyers and aids to help these children because, as Gle…" +05/29/2018,Actors,@sarahdrew,RT @caterinatweets: Channing Dungey gets the integrity and patriotism award today. Profit margins can’t allow us to slide into allowing hat… +05/29/2018,Actors,@sarahdrew,"RT @stina_kc: ""If we cannot represent [a terrified 6-year-old blind boy separated from his mom at the border], he will stand in front of a…" +05/29/2018,Actors,@sarahdrew,There’s no such thing as other people’s children. Check out the work that @togetherrising is doing 👇🏻👇🏻👇🏻 https://t.co/ghZbxCqzDX +05/28/2018,Actors,@sarahdrew,This is very nice :) thank you 😘 https://t.co/1AfID4lRNE +05/26/2018,Actors,@sarahdrew,😊😊😊 https://t.co/WqXdO48ZGk +05/25/2018,Actors,@sarahdrew,"Meet Heather and Darren Turner, the characters that #JustinBruening and I play in our upcoming film @indivisiblemov… https://t.co/7FVyJ3U6FP" +05/23/2018,Actors,@sarahdrew,RT @mybeansjapril: VOTE! It’s the final round so vote for our captains❤️ @sarahdrew @iJesseWilliams https://t.co/GVZ7ZemHJp https://t.co/y2… +05/23/2018,Actors,@sarahdrew,RT @GlennonDoyle: One easy way to be better at apologizing is to say “I’m sorry THAT I hurt you” instead of “I’m sorry IF I hurt you.” We… +05/23/2018,Actors,@sarahdrew,👇🏻👇🏻👏🏻👏🏻👏🏻 https://t.co/FnERHQm27p +05/22/2018,Actors,@sarahdrew,"RT @TellTaleTV_: Nominees for favorite supporting actress in a drama series, Round 2 (continued): @sarahdrew @JessicaCapshaw @caterinatweet…" +05/20/2018,Actors,@sarahdrew,👇🏻👇🏻👇🏻 https://t.co/meQi5uEGBy +05/20/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/EfyFO0s5wL +05/20/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/wmfwusM1pd +05/19/2018,Actors,@sarahdrew,Bahahaha!! I wish!!!! https://t.co/F1Kfb0JCtC +05/19/2018,Actors,@sarahdrew,Go @rosemarydirects !!! Go! Badassery is correct!!!! https://t.co/NtB7u33r8A +05/19/2018,Actors,@sarahdrew,True story :) https://t.co/9o7JGF0QQL +05/18/2018,Actors,@sarahdrew,Check out the poster for my new film @indivisiblemov ! I had a blast making this film with some of my favorite… https://t.co/lX3L0Hwh3S +05/18/2018,Actors,@sarahdrew,😘😘❤️❤️ https://t.co/DSYCsspVAH +05/18/2018,Actors,@sarahdrew,RT @iJesseWilliams: Radiant #GreysAnatomy @KellyMcCreary @JessicaCapshaw @sarahdrew https://t.co/93g2LfCCRl +05/18/2018,Actors,@sarahdrew,RT @enews: Say it with us #GreysAnatomy fans: JAPRIL FOREVER! https://t.co/qa7YrQjuWI +05/18/2018,Actors,@sarahdrew,Love ya https://t.co/N6Kb5NcLeF +05/18/2018,Actors,@sarahdrew,I gave him a message last week! https://t.co/wMEACXFgl7 +05/18/2018,Actors,@sarahdrew,I told you I’d be spamming you- go to my insta or my Facebook to see... +05/18/2018,Actors,@sarahdrew,Head over to my Instagram account. I’ve got lots of stuff to share starting now :) 😘😘😘 Loved chatting with you in m… https://t.co/GiwuMYLUsj +05/18/2018,Actors,@sarahdrew,This one was pretty emotional for sure https://t.co/a1i3Sb9WVg +05/18/2018,Actors,@sarahdrew,Love hearing @SaraRamirez beautiful voice right now +05/18/2018,Actors,@sarahdrew,Everything https://t.co/taWkDcY0OE +05/18/2018,Actors,@sarahdrew,Always https://t.co/rQgfeUwdGq +05/18/2018,Actors,@sarahdrew,😘😘😘 https://t.co/BQo2p9PtCY +05/18/2018,Actors,@sarahdrew,It’s coming up https://t.co/wSJwMfcr5M +05/18/2018,Actors,@sarahdrew,So many... https://t.co/YcJkZzNPuI +05/18/2018,Actors,@sarahdrew,@JakeBorelli kills me here!! Ha! +05/18/2018,Actors,@sarahdrew,Haha! That is very true!! https://t.co/RUFvAvVGVl +05/18/2018,Actors,@sarahdrew,Love that scene https://t.co/mk8jPx4y6W +05/18/2018,Actors,@sarahdrew,Final moment on the show... I love you @JessicaCapshaw https://t.co/a42PFtPWRi +05/18/2018,Actors,@sarahdrew,Check my insta later https://t.co/sERFNWiZFI +05/18/2018,Actors,@sarahdrew,Love that line https://t.co/eYPqhkxtLM +05/18/2018,Actors,@sarahdrew,Ok @GiacomoKG kills me here +05/18/2018,Actors,@sarahdrew,That sweet hug was our last moment in front of the camera. So very special. +05/18/2018,Actors,@sarahdrew,This scene right here is the last scene @JessicaCapshaw and I shot on grey’s. +05/18/2018,Actors,@sarahdrew,@camilluddington and @7JustinChambers are killing me! They are so funny! +05/18/2018,Actors,@sarahdrew,Check my insta in an hour :) https://t.co/I86dcc7Bms +05/18/2018,Actors,@sarahdrew,She’s doing medical work in homeless communities where she is really needed and can use her gifts. https://t.co/YAY8UTsGrq +05/18/2018,Actors,@sarahdrew,She’s a part of me. I’m a part of her https://t.co/KvrX8xfasI +05/18/2018,Actors,@sarahdrew,Kinda both https://t.co/KvrX8xwLkg +05/18/2018,Actors,@sarahdrew,Yes!!! https://t.co/Uwe1gT2aTb +05/18/2018,Actors,@sarahdrew,I really had no idea. It’s been an incredible ride. https://t.co/JMhBRUMy9G +05/18/2018,Actors,@sarahdrew,Absolutely https://t.co/D5tZOxdyjI +05/18/2018,Actors,@sarahdrew,Every single person https://t.co/0p3eAGY2Cy +05/18/2018,Actors,@sarahdrew,Check my insta account in an hour and I’ll tell you https://t.co/P43LfnmFn8 +05/18/2018,Actors,@sarahdrew,Sure https://t.co/PfZiNBOJT4 +05/18/2018,Actors,@sarahdrew,Thank you ❤️❤️😘😘 https://t.co/CPGGusqsex +05/18/2018,Actors,@sarahdrew,Oh yeah https://t.co/aSpNwkUjf6 +05/18/2018,Actors,@sarahdrew,When he told me my baby was a miracle https://t.co/S6bdTwSpp7 +05/18/2018,Actors,@sarahdrew,Jesse has made it clear that I have to say it’s him https://t.co/c7Um6gBAAJ +05/18/2018,Actors,@sarahdrew,Her courage and conviction and empathy https://t.co/zwNW7DvWQW +05/18/2018,Actors,@sarahdrew,When samuel died https://t.co/jiYiaN5IkF +05/18/2018,Actors,@sarahdrew,No- but I agree - it’s so pretty https://t.co/lnREcUVbZK +05/18/2018,Actors,@sarahdrew,I don’t really know https://t.co/N8m0UDo1dE +05/18/2018,Actors,@sarahdrew,FYI we were all FREEZING in our tiny dresses while we were shooting. Can you tell? +05/18/2018,Actors,@sarahdrew,Being in a beautiful place with everyone https://t.co/kEfDezcW3o +05/18/2018,Actors,@sarahdrew,Joyful and emotional https://t.co/OZBj5DSg82 +05/18/2018,Actors,@sarahdrew,I was just taking in all my final moments and soaking up the time with my people https://t.co/HW4Rzjn1Sk +05/18/2018,Actors,@sarahdrew,“All I could do was cry” https://t.co/tgkYBStMNh +05/18/2018,Actors,@sarahdrew,"Resilience, compassion, a fighting spirit https://t.co/AtBFqfxljj" +05/18/2018,Actors,@sarahdrew,The people I got to work with and the stories I got to tell https://t.co/0mfDKL5NiJ +05/18/2018,Actors,@sarahdrew,Well @JessicaCapshaw and @7JustinChambers have me crying already +05/18/2018,Actors,@sarahdrew,Hi friends! How’s it going?? +05/17/2018,Actors,@sarahdrew,This is so beautiful. Thank you! https://t.co/6Lhr5M7ccx +05/17/2018,Actors,@sarahdrew,❤️😭❤️😭 https://t.co/grxyFmEYqN +05/17/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/Ckdd4JckVr +05/17/2018,Actors,@sarahdrew,😘😘😘 https://t.co/0Y7wCLUTTb +05/17/2018,Actors,@sarahdrew,April Kepner signs off tonight. Come chat with me from 8-9pm EST tonight. ❤️❤️❤️ +05/17/2018,Actors,@sarahdrew,"Well @babsamiga , I’m here weeping. Thank you so much for this beautiful tribute. I loved every moment I had workin… https://t.co/UDpsp0xpIG" +05/17/2018,Actors,@sarahdrew,RT @JessicaCapshaw: Today’s the day...it’s finally here. Farewell Arizona Robbins!!! I’ll be live tweeting the WEST COAST airing tonight.… +05/16/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/BKIcVfdqDd +05/16/2018,Actors,@sarahdrew,Hey friends! I’d love to live chat with you one last time tomorrow!! Who’s in? Chat with me using #Asksarah from 8-… https://t.co/AAtwnA2ZcT +05/16/2018,Actors,@sarahdrew,Definitely laurel. I don’t understand what is happening? Do you hear yanny??? https://t.co/XwtZERhVCi +05/15/2018,Actors,@sarahdrew,😘😘😘 https://t.co/gLgWxFWfc9 +05/14/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/S36aeTmWzt +05/14/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/yDW4jNqw9P +05/14/2018,Actors,@sarahdrew,Guys- I will be spamming you with pictures this week ☺️☺️ +05/13/2018,Actors,@sarahdrew,Had such a blast watching my super talented friends @loudforestmusic KILL it at @elreytheatre last night!! Check ou… https://t.co/OqDbqlLMH9 +05/13/2018,Actors,@sarahdrew,This is so fun :) https://t.co/ONqIctq4rg +05/12/2018,Actors,@sarahdrew,"RT @sarahdrew: I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had the aweso…" +05/12/2018,Actors,@sarahdrew,"RT @sarahdrew: And if you wanna see the full length trailer , head over to my Facebook page here https://t.co/xo8NvEwBSj" +05/12/2018,Actors,@sarahdrew,Well this article just made me cry. Thank you for this tribute ❤️😘❤️😘 https://t.co/ssYtawDw0M +05/12/2018,Actors,@sarahdrew,Thank you @camilluddington !! I love you! https://t.co/z1uXfJITtF +05/12/2018,Actors,@sarahdrew,😘😢☺️ https://t.co/XGyH1yaeU2 +05/12/2018,Actors,@sarahdrew,Yay! So well deserved @iJesseWilliams !! Brilliant performance this week!!! https://t.co/MjLhBN8Nvi +05/12/2018,Actors,@sarahdrew,Faith by @jordan_feliz 😍😊😊😊 https://t.co/farDEpXQ2F +05/11/2018,Actors,@sarahdrew,"And if you wanna see the full length trailer , head over to my Facebook page here https://t.co/xo8NvEwBSj" +05/11/2018,Actors,@sarahdrew,"I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had… https://t.co/wSYTB3HHmn" +05/11/2018,Actors,@sarahdrew,"RT @aprilswarrior: badass april kepner at your service. @sarahdrew +https://t.co/r6cgqangSo" +05/11/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/1P4iyJSnSs +05/11/2018,Actors,@sarahdrew,❤️❤️❤️ https://t.co/ptLlOP33T8 +05/11/2018,Actors,@sarahdrew,"RT @eonlineTV: If you thought last night's #GreysAnatomy was intense, wait until you see @SarahDrew's BTS photos. https://t.co/gVZ6SHuxMu h…" +05/11/2018,Actors,@sarahdrew,Love you right back Jesse. https://t.co/brCx3Aq6uY +05/11/2018,Actors,@sarahdrew,SPOILER: this one killed me too. Jesse is incredible in this scene https://t.co/M6ifhcDbDN +05/11/2018,Actors,@sarahdrew,Me too https://t.co/1x9BUoi4SK +05/11/2018,Actors,@sarahdrew,I love you #gingerbrother https://t.co/8W3VOXaTED +05/11/2018,Actors,@sarahdrew,I’m watching west coast!! I’ve got some pics to post on Instagram!!! +05/11/2018,Actors,@sarahdrew,Ok friends! Check my Instagram feed in 2 hours! I will post stories and BTS pics while I watch the episode here on the west coast! 😘😘❤️❤️ +05/11/2018,Actors,@sarahdrew,Oh boy... this scene.... check out my insta later and I’ll tell you all about what I was feeling while we shot it. https://t.co/Cy9I4I3WR3 +05/11/2018,Actors,@sarahdrew,SPOILER!! This line killed me too! https://t.co/JIz4BZp19U +05/11/2018,Actors,@sarahdrew,Yesssss!!!!!! https://t.co/eLVZKrfu1Z +05/11/2018,Actors,@sarahdrew,Yes https://t.co/2fSpIS664Y +05/11/2018,Actors,@sarahdrew,SPOILER!!!!!!!!! I loved this line too!!! https://t.co/hPSLi18Syf +05/11/2018,Actors,@sarahdrew,Ok this made me laugh https://t.co/Uic5aygHpW +05/11/2018,Actors,@sarahdrew,😘😘😘 https://t.co/sCwAkihEzM +05/11/2018,Actors,@sarahdrew,Committed https://t.co/8ub60hrvSj +05/11/2018,Actors,@sarahdrew,"Well, I was only on the table part of the time. They made a doll of me! CHeck out my insta later and I’ll tell you… https://t.co/D94cr75PvH" +05/11/2018,Actors,@sarahdrew,Thank you for this. I’m so sorry for your loss. Sending you love. https://t.co/CD8NEXoV5H +05/11/2018,Actors,@sarahdrew,Yes you are :) https://t.co/5PsFKVimv1 +05/11/2018,Actors,@sarahdrew,Thank you for sharing his with me. Sending you so much love! https://t.co/DSCkqAhLWj +05/11/2018,Actors,@sarahdrew,All of them. All the emotions. Check my insta later and I’ll explain. https://t.co/ZOTGNf2onw +05/11/2018,Actors,@sarahdrew,Yes. https://t.co/N6E6Key9vX +05/11/2018,Actors,@sarahdrew,RT @_JoyChappell: “I don’t care how you do it or who you do it to. April would want us to pray for her” 💔@GreysABC #thismoment #toospecial… +05/11/2018,Actors,@sarahdrew,The really long one :) all the parts of it. It was a beautiful experience through and through https://t.co/iooFWcax7T +05/11/2018,Actors,@sarahdrew,Sure did https://t.co/eQ2YPS402r +05/11/2018,Actors,@sarahdrew,Ummm. Yes. There were SO many tears https://t.co/X1U1IiT577 +05/11/2018,Actors,@sarahdrew,Just so much love https://t.co/ZwqUn3d99u +05/11/2018,Actors,@sarahdrew,Yes yes and yes!!! https://t.co/goNtDY2ap4 +05/11/2018,Actors,@sarahdrew,I haven’t seen it yet. I’ll watch it in a few hours https://t.co/hAcnIW8FdY +05/11/2018,Actors,@sarahdrew,😘😘😘 https://t.co/CXsXjTWmn7 +05/11/2018,Actors,@sarahdrew,Thank you for sharing this with me. https://t.co/TCNqnQjG9Z +05/11/2018,Actors,@sarahdrew,She makes me laugh so hard! https://t.co/BEmo9GJOn5 +05/11/2018,Actors,@sarahdrew,"Samuel’s death, telling Jackson I had to move out, the scene with Eli, and one other that I’ll keep to myself. https://t.co/L0KmwtCzZA" +05/11/2018,Actors,@sarahdrew,Thank you so much for this! https://t.co/ZvXwn9Ko2T +05/11/2018,Actors,@sarahdrew,YES!!! I’ve seen @JessicaCapshaw @caterinatweets @TheRealKMcKidd #chandrawilson this week and I’ve spoken to… https://t.co/2hUfBgnrRF +05/11/2018,Actors,@sarahdrew,I had so many feelings. Check out my insta during west coast feed and I’ll share a bunch! https://t.co/GEwHUa6CM5 +05/11/2018,Actors,@sarahdrew,Yes 😢 https://t.co/13Kyl2rUVg +05/11/2018,Actors,@sarahdrew,I bawled my eyes out and then when I saw #billharper I thanked him for writing such a gorgeous tribute to April. It… https://t.co/V2MjU3XfJX +05/11/2018,Actors,@sarahdrew,Choose joy. No matter the circumstances- choose joy. Chandra Wilson taught me that! https://t.co/Et0HeUPWIb +05/11/2018,Actors,@sarahdrew,I love it! https://t.co/PK8xB0NSE0 +05/11/2018,Actors,@sarahdrew,I was told on March 6th https://t.co/AVVhmUXmvw +05/11/2018,Actors,@sarahdrew,No. But Bill Harper did a gorgeous job with this episode! I think it is a beautiful tribute to April. https://t.co/U1qAlJziaP +06/29/2018,Actors,@IamSandraOh,https://t.co/LXGMCZVEBJ +06/27/2018,Actors,@IamSandraOh,My ❤️ 2 LA Ktown . Wish I were there! 🇰🇷! +06/27/2018,Actors,@IamSandraOh,#Koreaworldcup!!! Omg! Calling Dad now!!! +06/27/2018,Actors,@IamSandraOh,Omg 🇰🇷!!!!!! +06/19/2018,Actors,@IamSandraOh,And it’s On! https://t.co/ha4Rpt7eIx https://t.co/FfF5qc9UcX +06/05/2018,Actors,@IamSandraOh,I want to thank All who tuned in for @KillingEve S1 Let’s do it again shall we? Much 💚 s https://t.co/WOf2D0Rqpd +05/27/2018,Actors,@IamSandraOh,https://t.co/XgPpWLCWYT +05/27/2018,Actors,@IamSandraOh,Finale! What a ride! @KillingEve Finale Tonight https://t.co/myuwu9CtGo +05/23/2018,Actors,@IamSandraOh,It was so great to meet & share w/ all these phenomenal women. Thank You! @THR https://t.co/Z6y9kiSnJV +05/20/2018,Actors,@IamSandraOh,Happiness in Windsor https://t.co/DIHEaJr4zA +05/20/2018,Actors,@IamSandraOh,Omg how’s it Ep 7 @KillingEve already? Tonight on @BBCAMERICA https://t.co/OAFRYV8COJ +04/22/2018,Actors,@IamSandraOh,Ep3 @KillingEve 2nite 7/8 pm on @BBCAMERICA I 💚 Bill (David Haig) https://t.co/tqQ3cgRpUi +04/22/2018,Actors,@IamSandraOh,Tonight’s 3rd ep @KillingEve https://t.co/ZUHMPcu1Tw +04/22/2018,Actors,@IamSandraOh,https://t.co/ZUHMPcu1Tw +04/16/2018,Actors,@IamSandraOh,2nd ep @KillingEve asset 💣 It’s tonight @ 8pm @BBCAMERICA https://t.co/ZY3fbiEagZ +04/14/2018,Actors,@IamSandraOh,/w my 2 longtime collaborators Diana Son&Mina Shum. Come see #meditationparkmovie @ aero theatre in SM 2nite 8pm. S… https://t.co/E9EevGQ5uK +04/13/2018,Actors,@IamSandraOh,Hellooo! Guess what? You can see premiere episode of @KillingEve for Freebees! https://t.co/tA8iBblG9E pls check it out +04/06/2018,Actors,@IamSandraOh,"RT @TIME: ""'Killing Eve' isn't your average mystery series. Here’s how it breaks the mold"" https://t.co/UPnBkZJEHS" +04/06/2018,Actors,@IamSandraOh,@ComerJodie @KillingEve @BBCAMERICA - Jode I 💚 u! +04/05/2018,Actors,@IamSandraOh,"RT @voguemagazine: In Killing Eve, @IamSandraOh finally gets the post-Grey's Anatomy role she deserves. https://t.co/RhrqolSC9Z" +04/05/2018,Actors,@IamSandraOh,"RT @rachelnpr: Had the most lovely conversation with @IamSandraOh who told me that since she left #GreysAnatomy 4 yrs ago she has been ""act…" +04/05/2018,Actors,@IamSandraOh,Heading 2 chat all about #KillingEve w/ @klgandhoda..I think I’ll be on in 25 mins - #whirlwindtour +04/03/2018,Actors,@IamSandraOh,Asset 💣-ing Yous! @KillingEve @BBCAMERICA April 8 8pm. (This was one of favorite scs) https://t.co/WZepcTLrZG +03/30/2018,Actors,@IamSandraOh,Hey All so I’ve got a bunch of “assets” I’m gonna drop all over yous in next weeks b4 @KillingEve April 8 BBC Ameri… https://t.co/SuxgybUQez +03/20/2018,Actors,@IamSandraOh,So excited Killing Eve is coming soon! And going places! https://t.co/Ar4N1IINPH +03/20/2018,Actors,@IamSandraOh,Killing Eve’s 2nd trailer https://t.co/GeFd91igsl +03/10/2018,Actors,@IamSandraOh,Meditation Park opening in theatres in 🇨🇦 Netflix 🇺🇸🇬🇧🇦🇺 Congratulations & 💕 2 Mina Shum longtime collaborator. Sti… https://t.co/bFngFWByof +03/08/2018,Actors,@IamSandraOh,"🇨🇦 ! My ♥️ & Soul - Meditation Park is premiering in the following theatres - Van : 5th Ave, TO : Varsity, Ottawa… https://t.co/wF7Dcsad81" +03/05/2018,Actors,@IamSandraOh,"Mina made a beautiful love letter to Mothers from another generation, another culture who are continuing 2 find themselves. ❤️❤️❤️" +03/05/2018,Actors,@IamSandraOh,If you’re Not Asian but still have a mom- watch this film w/ her! +03/05/2018,Actors,@IamSandraOh,"Seriously, if you’re Asian and you have a mom (I know you do) - watch this with her! https://t.co/yHeaDxZISQ" +03/05/2018,Actors,@IamSandraOh,My film Meditation Park is coming out this Friday March 9th on Netflix! https://t.co/PPzMvmDKG5 +01/21/2018,Actors,@IamSandraOh,@womensmarch @sundancefest w/ PhoebeWallerBridge & @jodiemcomer. Beautiful Snowy Thoughtful Empowering day.… https://t.co/fXimYvKwRH +01/12/2018,Actors,@IamSandraOh,Oh it must b the new show coming this spring! @KillingEve I’m so excited to share w/ All. @BBCAMERICA More to come! https://t.co/luI0L2Lkox +01/12/2018,Actors,@IamSandraOh,Hey what’s this lady talking about? @KillingEve https://t.co/u9WcOukfWZ +11/23/2017,Actors,@IamSandraOh,Another win @WindowHorses https://t.co/pI7tbRARKJ +11/18/2017,Actors,@IamSandraOh,@WindowHorses me & AMF https://t.co/Sdcckjhscx https://t.co/D5OYYtMsio +11/15/2017,Actors,@IamSandraOh,Btw ❤️ fr 🇷🇴 shooting final block @KillingEve ! @BBCAMERICA next spring https://t.co/HFrvDATSuc +11/15/2017,Actors,@IamSandraOh,@WindowHorses is screening @34th st cinema NYC! Till nov16th check it out on the big screen 📺 +11/15/2017,Actors,@IamSandraOh,@WindowHorses fans! https://t.co/ArioiJoBBv +11/10/2017,Actors,@IamSandraOh,@WindowHorses @nytimes critics pick! https://t.co/mXi3ut9pYz +09/29/2017,Actors,@IamSandraOh,Congrats #MeditationPark opening @VIFFest last night! ❤️2 cast & @MinaShum 💚fr across the 🌊 https://t.co/mvDMs2aBLv +09/21/2017,Actors,@IamSandraOh,"W/ @LukeJennings1 & @AkramKhanLive #ENBGiselle This powerful reimagined work is manna. Bravo Company, @TamaraRojo1… https://t.co/NFrqVKVxLD" +07/05/2017,Actors,@IamSandraOh,Happy 😊 4th of July to All! 🇺🇸 +06/13/2017,Actors,@IamSandraOh,Working again! https://t.co/XRZ5nVqlBw +05/04/2017,Actors,@IamSandraOh,"Our usual Musso's outing, me Kev Joan & Tony. So much love https://t.co/A5DzaCgIHJ" +04/14/2017,Actors,@IamSandraOh,Maya!! Thank U! Hope u can make the next play. #wildgoosedreams @PublicTheaterNY txs avail 4 weekend! https://t.co/AXXR6TyRBr +04/14/2017,Actors,@IamSandraOh,Amazing cast #WildGooseDreams txs only 15$! Still avail! @PublicTheaterNY see you 2nite/2morrow only https://t.co/z0TN9Gk0Mq +04/14/2017,Actors,@IamSandraOh,Me & wonderful James Yaegashi writ:Hansol Jung & dir:Leigh Silverman in back. Wild Goose Dreams @PublicTheaterNY tx… https://t.co/CZ405NvJCU +04/14/2017,Actors,@IamSandraOh,2 All in the NYC area! Come see #WildGooseDreams @PublicTheaterNY txs still avail! https://t.co/s65ekoTUGM +04/07/2017,Actors,@IamSandraOh,In tech @PublicTheaterNY 4 #publicstudio #WildGooseDreams 1st performance 2nite ack!! https://t.co/teo9rmJIU5 +03/10/2017,Actors,@IamSandraOh,Wassup TO! @WindowHorses is premiering there too https://t.co/KysyC5RCjH +03/10/2017,Actors,@IamSandraOh,https://t.co/Jd2hBPYgB3 +03/10/2017,Actors,@IamSandraOh,"@WindowHorses Canadian premiere today! Cineplex Odeon International Village Cinemas in Van, check it out! https://t.co/82ZyUvxCKq" +03/09/2017,Actors,@IamSandraOh,"I yelled ""Say Vagina!"" https://t.co/vtmi56ebLs" +03/09/2017,Actors,@IamSandraOh,Making film w/ amazing women on #InternationalWomensDay can't think of a better way to spend my day! https://t.co/6wSeERErof +03/08/2017,Actors,@IamSandraOh,"In a packed van w/ cast of Meditation Park. Cheng Pei Pei, @tzima8 Ma, @zaksantiago https://t.co/42WpuSjezD" +03/06/2017,Actors,@IamSandraOh,"Also @WindowHorses march 10 international village vancouver +march 9 preview with amf at bell lightbox" +03/06/2017,Actors,@IamSandraOh,American Crime starts march 12th! Check it out Sunday https://t.co/xeLj2YZ2YB +03/06/2017,Actors,@IamSandraOh,https://t.co/F2wmyXo0Dm +03/03/2017,Actors,@IamSandraOh,"Catfight comes out in theaters, VOD and on @itunes today 3/3! #catfightmovie" +03/03/2017,Actors,@IamSandraOh,#CatfightMovie premiere w/ beautiful @AnneHeche @AliciaSilv last night https://t.co/nYnQarGRu3 +03/03/2017,Actors,@IamSandraOh,Me Anne Alicia & Gigi (producer) Catfight women @ premiere. That's director Onur's arm https://t.co/geC0nVK3BI +03/03/2017,Actors,@IamSandraOh,On my way 2 #catfightmovie premiere @cinefamily now! https://t.co/iBO9eU2qbM +03/03/2017,Actors,@IamSandraOh,https://t.co/0Ata5kj2uc +03/02/2017,Actors,@IamSandraOh,Woo hoo @nytimes critics pic! https://t.co/jTIg8yUztp +03/01/2017,Actors,@IamSandraOh,@AmericanCrimeTV airing soon! March 12th 9/10 pm. Please watch! +03/01/2017,Actors,@IamSandraOh,1st day of shooting on Meditation Park w/ Mina Shum & Peter Wunstorf 23 yrs after Double Happiness!!! https://t.co/Hcs16jGDZr +02/22/2017,Actors,@IamSandraOh,@adamcarolla fans! I'll b on 2nite w/ @AnneHeche 4 @catfightmovie! 9pm I think? +02/22/2017,Actors,@IamSandraOh,#catfightmovie ! https://t.co/O9qAvJswau +02/02/2017,Actors,@IamSandraOh,Walking 2 theatre @WindowHorses premiere SB film fest! https://t.co/kw1sFS3y9e +02/02/2017,Actors,@IamSandraOh,"@margopossible Thank u Margo, you're the best friend imaginable love San" +02/02/2017,Actors,@IamSandraOh,RT @margopossible: Beautiful. Necessary. Open your mind. Open your heart. See others for their common humanity. https://t.co/illHb5Yn2I Tha… +01/28/2017,Actors,@IamSandraOh,Dearest All previous tweet is regarding @WindowHorses is coming to Santa Barbara Film Festival @sbiff this week!! +01/28/2017,Actors,@IamSandraOh,More than ever we need these stories to spread light over the darkness of policies than ban our Muslim brothers and sisters from our shores. +01/28/2017,Actors,@IamSandraOh,@WindowHorses is about a Chinese-Iranian-Canadian young woman who loves poetry. +01/28/2017,Actors,@IamSandraOh,@WindowHorses is coming 2 Santa Barbara FF this week! https://t.co/Hjnpt0cWzn +01/28/2017,Actors,@IamSandraOh,Check it out folks I've got some work coming out soon https://t.co/pfQiQYwney +01/28/2017,Actors,@IamSandraOh,It's coming! https://t.co/7eOYLsf4eV +01/22/2017,Actors,@IamSandraOh,Amazing 2 spend the day w/ fellow Angelenos & All around the world Letting our Voices Be Heard! Let us Be the Change https://t.co/94cprIEY4Z +01/21/2017,Actors,@IamSandraOh,W/ Susan & Laurs by City Hall. Beautiful Day! Peaceful Rally https://t.co/wCwPf6MUSG +01/21/2017,Actors,@IamSandraOh,W/ friend at the march https://t.co/mvC5yfAwwO +01/21/2017,Actors,@IamSandraOh,Trying to get to @WomenMarchPDX LA! It's tough cos so many of us!!!! https://t.co/z8IcJdxTZO +01/20/2017,Actors,@IamSandraOh,@HillaryClinton - that's Soul Power right there How can we stand w/ grace and dignity by those we disagree? Watch @POTUS44 @HillaryClinton +01/20/2017,Actors,@IamSandraOh,"Thank you to my president & First Lady #BarackObama & #MichelleObama, continuing to lead w/ the highest human qualities. We were blessed." +01/20/2017,Actors,@IamSandraOh,@TheRoot on set @GreysABC doing a scene w/ eric Stoltz. We cried then and we cry now. +01/20/2017,Actors,@IamSandraOh,I'm watching (w/ sound off) cos Im trying to hold what devastates me w/ calm and the strength of an open heart. It's raining here in LA 😓 +01/20/2017,Actors,@IamSandraOh,#ThankYouObama +01/20/2017,Actors,@IamSandraOh,"RT @POTUS: I won't stop; I'll be right there with you as a citizen, inspired by your voices of truth and justice, good humor, and love." +01/20/2017,Actors,@IamSandraOh,"RT @POTUS: I'm still asking you to believe - not in my ability to bring about change, but in yours. I believe in change because I believe i…" +12/16/2016,Actors,@IamSandraOh,"Hey All - I'm on @KPCC at 7 tonight. The awesome James Kim asked me a bunch of ??about the Joy Luck Club, remember that one? Safe in the ☔️" +11/19/2016,Actors,@IamSandraOh,@HamiltonMusical #ImmigrantsWeGettheJobDone from a fellow immigrant 2x - Korean & Canadian +11/19/2016,Actors,@IamSandraOh,The new president elect is telling us what he thinks of our nations great artists @HamiltonMusical. More than ever we need to make Art. +11/19/2016,Actors,@IamSandraOh,@HamiltonMusical cast - This is the Power of Artists. Most wise & brave. Thank U. I stand w/ u & will try to do the same. +11/19/2016,Actors,@IamSandraOh,"RT @HamiltonMusical: Tonight, VP-Elect Mike Pence attended #HamiltonBway. After the show, @BrandonVDixon delivered the following statement…" +11/03/2016,Actors,@IamSandraOh,@CAAM panel last night w/ Grace Lee Craig Robinson Karen Horne Rashad Raisani Richard Lui. https://t.co/G55VJriSii +09/27/2016,Actors,@IamSandraOh,@WindowHorses @CIFF & VIFF. https://t.co/TVQEBJ9CV4 +09/25/2016,Actors,@IamSandraOh,RT @sleepydogfilms: 5 more days to vote for @WindowHorses for #mustseeBC films #VIFF2016 https://t.co/JUh2R6XBXv +09/25/2016,Actors,@IamSandraOh,Dear All pls vote for Window Horses @VIFF https://t.co/BycRYA23kY +09/21/2016,Actors,@IamSandraOh,Please come! Vote too! https://t.co/J1Fj75PaEb +09/21/2016,Actors,@IamSandraOh,Please come! https://t.co/9qlc1V41uf +09/21/2016,Actors,@IamSandraOh,The ByTowne?! Fantastic I saw so many films there in my youth - wassup hometown Ottawa!! https://t.co/LR3zkSKxNC +09/21/2016,Actors,@IamSandraOh,Please vote 4 our little film! https://t.co/cXDHJeR4lO +09/20/2016,Actors,@IamSandraOh,"RT @WindowHorses: Please vote for our little film about love of family, poetry, history, and culture! https://t.co/bVIT6ZTMal #VIFF https:/…" +09/20/2016,Actors,@IamSandraOh,RT @sleepydogfilms: There's a great lineup of #mustseeBC films at VIFF 2016. keep voting for @windowhorses ! https://t.co/JUh2R6XBXv +09/19/2016,Actors,@IamSandraOh,Seriously seeing 4 fellow Asian peeps up on that stage fills me with hope and just F yeah!! +09/19/2016,Actors,@IamSandraOh,Omg More Asians on the Emmy stage! Unbelievable! Yay @parkrandall & @ConstanceWu !! +09/19/2016,Actors,@IamSandraOh,Woo hoo Alan Yang and Aziz Ansari Emmy win4 @MasterofNone! You tell it Alan! Go AA brother & sisters +09/13/2016,Actors,@IamSandraOh,Me & Don looking perplexed. https://t.co/LeK513n2kX +09/13/2016,Actors,@IamSandraOh,Meeting up w/ some lovely audience members. https://t.co/JS2okoegjg +09/13/2016,Actors,@IamSandraOh,Me & Don McKellar & AMF watching the screening of @WindowHorses https://t.co/TY2wQaxMpg +09/13/2016,Actors,@IamSandraOh,Finishing of @TIFF_NET w/ Classic Poutine! https://t.co/q6KT8274mZ +09/13/2016,Actors,@IamSandraOh,Congrats to the #tiff_net #birks Canadian women of film https://t.co/m6NJmRpLpm +09/12/2016,Actors,@IamSandraOh,Quick coffee before #catfightfilm #tiff_net dream team panel @anneheche @otukel https://t.co/FXqqC2UPDs +09/12/2016,Actors,@IamSandraOh,Getting ready with my dream team! #tiff_net @kimikobeauty @Lisa_Vella ashmokma https://t.co/WRAGOGaln1 +09/11/2016,Actors,@IamSandraOh,Introducing @WindowHorses ! The screening went well thanks all for coming https://t.co/6VGMbp24zo +09/11/2016,Actors,@IamSandraOh,AMF & I heading to the @WindowHorses premiere @TIFF_NET https://t.co/MIGSe2JfBe +09/11/2016,Actors,@IamSandraOh,A little late but here r some pics from #catfightfilm premiere- it was crazy and super fun! https://t.co/TTbzPnUc5s +09/10/2016,Actors,@IamSandraOh,I promise to send out pics from the Catfight premiere! +09/10/2016,Actors,@IamSandraOh,We're so in sync hour outfits complimented each other so well! Can't wait for the shots to come out +09/10/2016,Actors,@IamSandraOh,Some fave shots from our #catfightfilm press day @TIFF_NET of me & anne https://t.co/UpSK7VbjuH +09/09/2016,Actors,@IamSandraOh,Photobombing @AnneHeche !! Love that girl https://t.co/WUuB9Pinmh +09/09/2016,Actors,@IamSandraOh,I'll try to send out missives all weekend for #catfightfilm & @WindowHorses +09/09/2016,Actors,@IamSandraOh,In the car on first press day @TIFF_NET #catfightfilm +09/09/2016,Actors,@IamSandraOh,https://t.co/9cbPtvA62Y +09/09/2016,Actors,@IamSandraOh,https://t.co/zE9oFtZnoO +08/21/2016,Actors,@IamSandraOh,Thank u #TragicallyHip 4 being the soundtrack of my youth. #GordDownie the great artist 4 holding us All. #haveagoodlife +08/03/2016,Actors,@IamSandraOh,Oh and that other pic was of the gorgeous @AliciaSilv & @AnneHeche Abe moi!! Go cast of Catfight rrrrowwrr!! +08/03/2016,Actors,@IamSandraOh,And @WindowHorses has a Special Screening 2 @TIFF_NET !! Me & AMF signing away!! https://t.co/2RAFtUPdzg +08/03/2016,Actors,@IamSandraOh,Hello Catfight! Special screening @TIFF_NET https://t.co/bf65GktDWB https://t.co/mXc5BfJNHj +07/21/2016,Actors,@IamSandraOh,Forget it! The Best Bday w/ cast of @HamiltonMusical thank you @Lin_Manuel https://t.co/PjqIgYx7sP +07/02/2016,Actors,@IamSandraOh,Happy Canada Day All!!❤️❤️❤️🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦🇨🇦 https://t.co/oamp5XYbSr +06/22/2016,Actors,@IamSandraOh,Dearest All - I appreciate the fans & just 2 let u know @iamsandraohinsta is my official Instagram acct. +06/22/2016,Actors,@IamSandraOh,Testing from home office https://t.co/yMq9lebHUJ +06/10/2016,Actors,@IamSandraOh,"On the Bus 2 Marrakech w/ the company! Stan,EJ, Ayo, Rey, Christine, Yara & me https://t.co/JE9Y2cye4L" +06/10/2016,Actors,@IamSandraOh,Wild Goose Dreams fearless playwright & terrific singer/songwriter Hansol Jung & = terrific actor & Singer Tim Kang https://t.co/cutqIzQZ11 +06/10/2016,Actors,@IamSandraOh,More Wild Goose Dreams rehearsal. I really hope to do a production!! Here Paul Castles our composer https://t.co/4G83O7v9vF +06/10/2016,Actors,@IamSandraOh,Here's the whole company! @sundancelabs. It was truly one of the Best creative experiences I've ever had. Thank U! https://t.co/VOJFEoskNx +06/10/2016,Actors,@IamSandraOh,Rehearsing Hansol Jung's Wild Goose Dreams @sundancelabs in Morocco. Yes I'm loving the theatre roots my friends... https://t.co/1Nk8ietIdw +06/10/2016,Actors,@IamSandraOh,"Btw been @sundancelabs MENA in Morocco all last mo. Ignacia,Indhu Debra & me. Love the Colour! https://t.co/4Dxs5hDbp6" +06/10/2016,Actors,@IamSandraOh,So much love 2 @caterinatweets Yay Canada. But he's Myyy Tv hubby! 😉. 💕 2 Owen & Amelia https://t.co/Ilk8UeC4l2 +06/10/2016,Actors,@IamSandraOh,"And wait - my TV husband has a new TV wife?? Xqueez me? I don't think so, Ha! Owen what r u thinking?? https://t.co/qfxwyKCbQV" +06/10/2016,Actors,@IamSandraOh,Hangin w/ the Usual Suspects @TonyTphelan & @TheRealKMcKidd last nite https://t.co/ga0HPvB5hZ +05/07/2016,Actors,@IamSandraOh,"@windowhorses is in the annecy int'l animation festival! it's our world premier! #annecyfestival +Go Window Horses!!" +04/29/2016,Actors,@IamSandraOh,Chillin out w/ Ray & Sola - we're watching @GreysABC & Tuscan Sun ha! It's closing wknd Office Hour. Home stretch! https://t.co/hmtPDC3TJA +04/24/2016,Actors,@IamSandraOh,RT @TheRealKMcKidd: You alls should .. Cos it's amazing - I can attest to that !:) https://t.co/dm15515B2a +04/23/2016,Actors,@IamSandraOh,Come 2 the theatre coz Office Hour @SouthCoastRep exists! Where else R we? Share! 🙋🏻 +04/23/2016,Actors,@IamSandraOh,"I'm grateful the LA & NY times R writing abt this. We carry this in our ❤️s every day. Know This: I see You, I am You. Come 2 the theatre!" +04/23/2016,Actors,@IamSandraOh,READ THIS: https://t.co/qvHDQbyMco +04/20/2016,Actors,@IamSandraOh,And friggin come see me and Ray Lee in Julia Cho's play Office Hour!!! @SouthCoastRep !! +04/20/2016,Actors,@IamSandraOh,Our Own stories that Don't include us?send a msg: Tank those effen films. It's in our power. Find ourselves in Ourselves. +04/20/2016,Actors,@IamSandraOh,U know what I do about it? I come 2 the theatre and give my heart & soul. Come see Office Hour @SouthCoastRep This is where we mofo R! +04/20/2016,Actors,@IamSandraOh,READ THIS: https://t.co/BoNNqcB2AC +04/20/2016,Actors,@IamSandraOh,My amazing cast mates Ray Lee @BrillCorey @CrownLikeHoney Sola Bamis See us in Office Hour! https://t.co/16XUdQr6UG https://t.co/OsgpsOJXG4 +04/17/2016,Actors,@IamSandraOh,The beautiful Sola Bamis in our dressing room b4 2nites show of Office Hour @SouthCoastRep https://t.co/A7RyB147H7 +04/17/2016,Actors,@IamSandraOh,One of the best things about Opening Night - (yesterday I know) all the Flowers. Thank u I love them https://t.co/v35OD0YQMy +04/16/2016,Actors,@IamSandraOh,Notes b4 Opening Nite 4 Office Hour @SouthCoastRep We're looking @ Julia Cho the playwright who laying there... https://t.co/MehWAKYzBc +04/15/2016,Actors,@IamSandraOh,My amazing cast mates Ray Lee @BrillCorey @CrownLikeHoney Sola Bamis See us in Office Hour! https://t.co/16XUdQr6UG https://t.co/WTpwm2x1pE +04/15/2016,Actors,@IamSandraOh,Me & Ray Lee & playwright Julia Cho sneaking in backgrd ha. Opening Night of Office Hour @SouthCoastRep 2nite! Ack!! https://t.co/qjBZZjOyh2 +04/08/2016,Actors,@IamSandraOh,Come see my fanTastic acting partner Raymond Lee on stage. https://t.co/16XUdQr6UG https://t.co/mjzr2otGBm +04/07/2016,Actors,@IamSandraOh,My onstage entrance! (I don't do the hands up) https://t.co/16XUdQr6UG Come check it out. https://t.co/Ces68lEYtw +04/07/2016,Actors,@IamSandraOh,"Dearest All (hey AA & KAs!) watch this, tell me what u think. https://t.co/PVmZghK5sA" +04/06/2016,Actors,@IamSandraOh,On stage rehearsing Office Hour @SouthCoastRep w/ @BrillCorey & @CrownLikeHoney https://t.co/16XUdQr6UG https://t.co/Okt2UVkRbt +03/12/2016,Actors,@IamSandraOh,RT @JustinTrudeau: Nos artistes sont des atouts pour le Canada aux É.-U. et dans le monde entier. https://t.co/WnNv2MEiUO +03/12/2016,Actors,@IamSandraOh,RT @JustinTrudeau: Our talented artists are a credit to Canada in the US & around the world. #StateDinner https://t.co/IWyBosGjCn +03/11/2016,Actors,@IamSandraOh,In the elevator on way back 2 hotel from White House State dinner honoring the Canadian PM @JustinTrudeau. https://t.co/Ghd7w6Cykv +03/11/2016,Actors,@IamSandraOh,Shaking hands w/ @BarackObama @POTUS. Canada US love https://t.co/Vp31QtCJow +03/11/2016,Actors,@IamSandraOh,@WhiteHouse w/ @JustinTrudeau and lovely Malia Obama. So proud of our Canadian PM & 2 b Canadian! https://t.co/5OJLfdNAHC +01/22/2016,Actors,@IamSandraOh,Omg it's Cristina Teddy & Owen reunion! (And Tony) Look how handsome and brooding Kev is! Happy New Year All! https://t.co/AHnUIaEpq8 +11/16/2015,Actors,@IamSandraOh,That was a pic of me and the wonderful Trudy Goodman & Jack Kornfield @InsightLA 's Joyful Spirit ystrdy +11/16/2015,Actors,@IamSandraOh,https://t.co/s39W2zkjDf +11/10/2015,Actors,@IamSandraOh,"RT @InsightLA: ILA in the LA TImes! Check out the article on the ""Pioneers of Mindfulness"" and ILA's upcoming Nov. 15th benefit. http://t.c…" +11/10/2015,Actors,@IamSandraOh,RT @DaphneZuniga: Join gr8t teachers! @InsightLA @TaraBrach @JackKornfield @BabaRamDass @RepTimRyan #josephgoldstein #jonkabatzin https://t… +11/10/2015,Actors,@IamSandraOh,Nov.15th: A Meeting of the Mindful https://t.co/0pvOgA7sLV via @HPLifestyle +11/06/2015,Actors,@IamSandraOh,"Some gorgeous Asian Canadian artists! Me, Amf & Mina Shum. That's alot of collaboration in 1 pic. https://t.co/tIFD9rf2dp" +11/06/2015,Actors,@IamSandraOh,So excited 2b hosting Living w/ a Joyful Spirit & Wise Heart nxt Sunday Nov 15th! https://t.co/tTv0RNlNPv +10/20/2015,Actors,@IamSandraOh,Another reminder b4 I go silent 4 10 days! Come Join! https://t.co/2YacrVp6DN +10/19/2015,Actors,@IamSandraOh,Here's the link to #ShittyBoyfriends https://t.co/22BKll0IgV check it out and dump ur shitty boyfriend! +10/19/2015,Actors,@IamSandraOh,Oh and I'm in a show! #ShittyBoyfriends on @Refinery29 from @LisaKudrow & @danbucatinsky (love) check it out! +10/19/2015,Actors,@IamSandraOh,John Oliver @lastweektonight brilliant : https://t.co/bhaVwjufoc Vote Canada! +10/17/2015,Actors,@IamSandraOh,"1 way 2 peace in mind/heart, I invite u: http://t.co/2YacrVp6DN" +10/17/2015,Actors,@IamSandraOh,How? How? I don't know what it is yet. I call on all AA artists to forge a new path. I am with you. +10/17/2015,Actors,@IamSandraOh,You guys know I like never tweet but I'm just so heartbroken over what is still not changing. I'm trying 2 find a way outside the system. +10/17/2015,Actors,@IamSandraOh,"Dearest all esp AA artists, who's tired of it? Who wants to change how we are seen? How do we change how we see ourselves? That's the key." +10/17/2015,Actors,@IamSandraOh,Thousands Protest Choice of White Actress for ‘Pan’s’ Tiger Lily http://t.co/AtYhU2EzwC via @Variety +10/17/2015,Actors,@IamSandraOh,Dear all esp AAs: Ridley Scott accused of 'whitewashing' Asian roles in The Martian http://t.co/p6nAcYOD3y - Time 4 Change +09/28/2015,Actors,@IamSandraOh,@lifeisbeautiful @kendricklamar http://t.co/kUY9qaAyqa +09/10/2015,Actors,@IamSandraOh,Hey All check out #BriefButSpectacular - take on mindfulness & meditation. Who all here meditates? What do u do 2 try 2 b mindful? +08/28/2015,Actors,@IamSandraOh,SRB!!! Improv ruled my life and I'm forever grateful for it. Thx @CanadianImprov & mrs TG & Winney & all teammates. http://t.co/MLp9BlRZhm +08/28/2015,Actors,@IamSandraOh,Still friends w/ all the girls I met. Love 2 Margo Marianne Allison Christine & Jen! http://t.co/aDzOSCVxt3 +08/28/2015,Actors,@IamSandraOh,Finally moved mum&dad out West. Had to say farewell to a few memorable places; http://t.co/4iVd0rjjLq +08/22/2015,Actors,@IamSandraOh,@TirganFestival in TO w/ ann marie 4 #windowhorses. Previewed new clips! It's coming along! http://t.co/aHCvq4ZrzT +08/18/2015,Actors,@IamSandraOh,me & @TheRealKMcKidd at his belated bday dinner. May u catch Brave New Waves all this year dearest friend. http://t.co/RS05NyOROe +05/18/2015,Actors,@IamSandraOh,Shout out 2 John Cho who I just heard on NPRs the World. Much love to all AA brothers! U sexy bunch of men! Hey John! +05/07/2015,Actors,@IamSandraOh,Sending Mucho Amour 2 all the KAs out there! http://t.co/L7SdOpmTqd +05/03/2015,Actors,@IamSandraOh,"So excited 2 receive @KA_Story Trailblazer Award 5.05.15 +Pls join! http://t.co/tmRXU2xMly" +05/03/2015,Actors,@IamSandraOh,Why r all the pics of me&Kev so dark? Sorry! My ancient phone. Love and hellos to All from the Valley http://t.co/MJN7WsOkvX +04/15/2015,Actors,@IamSandraOh,Who knows these mugs? Any Arli$$ fans out there? Out 2nite w/Michael Boatman&Jim Turner. I friggin love these guys! http://t.co/Jk0UqNUvWu +04/10/2015,Actors,@IamSandraOh,@TheRealKMcKidd @shondarhimes @margopossible Wow what do u think? Does it hold up? +04/10/2015,Actors,@IamSandraOh,"@TheRealKMcKidd @GreysABC, Kev tell that Hanley that his mug is as ugly as ever and my heart misses him." +07/02/2018,Actors,@SaraRamirez,@TraciFl97160760 I can. And I will. +07/02/2018,Actors,@SaraRamirez,"Thank you Al D Rodriguez. The closest I ever came to having the parent and family I deserved, needed, and wanted. I… https://t.co/ZVTLWeMjIn" +07/02/2018,Actors,@SaraRamirez,Parental issues run so deep for so many of us.I don’t think I would have made it past 20 without my chosen families… https://t.co/cD8AduPBbS +07/02/2018,Actors,@SaraRamirez,"RT @PoseOnFX: Well, now Patty knows who Stan's Angel is. #PoseFX https://t.co/TuSeYdmebL" +07/02/2018,Actors,@SaraRamirez,I’m Stan’s wife. Can we talk? AHHHHHHHHHHHHHHHHHHHHHH @PoseOnFX #Posefx +07/02/2018,Actors,@SaraRamirez,RT @MjRodriguez7: #PoseFX I’m going to pump right through my sorrows https://t.co/RNtcJDOgeK +07/02/2018,Actors,@SaraRamirez,RT @pfpicardi: .@MjRodriguez7 is taking over our Insta tonight for #posefx and she has a message for all the kids and their chosen families… +07/02/2018,Actors,@SaraRamirez,RT @MjRodriguez7: #PoseFX didn’t expect this! But im glad she came around. https://t.co/nUnQjk517f +07/02/2018,Actors,@SaraRamirez,RT @fatfemme: okay this scene of young blanca and mom making her famous hot cakes recipe cut to blanca and damon prepping breakfast before… +07/02/2018,Actors,@SaraRamirez,Pancake making scene w/ Blanca & Damon + flashback =😭😭😭 @MjRodriguez7 @RyanJamaal @PoseOnFX #Posefx +07/02/2018,Actors,@SaraRamirez,RT @SimplyTwiggy: Blanca. You’re the best parts of her. #Posefx +07/02/2018,Actors,@SaraRamirez,"RT @PoseOnFX: #PoseFunFact The commentator for virgin runway is none other than the ICON Jack Mizrahi (@GorgeousJack), International Ballro…" +07/02/2018,Actors,@SaraRamirez,RT @SimplyTwiggy: No shade there’s always that ONE aunty tho. Who gets it. #Posefx +07/02/2018,Actors,@SaraRamirez,"RT @chasestrangio: Kindness doesn’t cost you anything. Yes, @theebillyporter. #PoseFX." +07/02/2018,Actors,@SaraRamirez,RT @Chrisishandsome: Yes Praytell!!!! READ! #PoseFx +07/02/2018,Actors,@SaraRamirez,Kindness doesn’t cost anything. Let HER say goodbye. 🙌🏽👏🏽@theebillyporter @PoseOnFX @MjRodriguez7 +07/02/2018,Actors,@SaraRamirez,RT @StevenCanals: This hospital scene about mothers with Blanca and Elektra makes my eyes water! And they filmed it in only a handful of ta… +07/02/2018,Actors,@SaraRamirez,Blanca!!! I love her so much. @MjRodriguez7 @PoseOnFX +07/02/2018,Actors,@SaraRamirez,It’s starting!! @PoseOnFX 😍😍😍💜 +07/01/2018,Actors,@SaraRamirez,"RT @theebillyporter: If you missed last Sunday's episode of @PoseOnFX 'FEVER', you missed some fierce acting choices hunties. Tears were fl…" +07/01/2018,Actors,@SaraRamirez,@DreyaStClair @PoseOnFX Yaaaay @DreyaStClair !! Still thinking about your beautiful work at the Bespoke event. Proud of you. 👊🏽✊🏽🌈 +07/01/2018,Actors,@SaraRamirez,@kesmommie Sometimes. +07/01/2018,Actors,@SaraRamirez,@NYABN @MrsRainbowZebra @BiTransAlliance @IWriteAllDay_ @jenyockney @Bi_Calendar PREEEEEAAAAAAACH. Thank you for th… https://t.co/ptWjFJqUkP +07/01/2018,Actors,@SaraRamirez,I’m watching @PoseOnFX tonight for sure. Cannot wait. Y’all watching with me? https://t.co/Cz2TkVqDdO +07/01/2018,Actors,@SaraRamirez,@JennicetG @ConMijente @PoseOnFX Be safe my friend! Sending you love and strength!! @JennicetG 👊🏽✊🏽🙏🏽 +07/01/2018,Actors,@SaraRamirez,@CoolSciDrGrace @SRamirezVillage @MassJwJ 💯 +07/01/2018,Actors,@SaraRamirez,Can’t think of a better way 2 spend the last night of #PrideMonth !Thank you 2 the entire cast & crew of… https://t.co/5qAl1JJZag +06/30/2018,Actors,@SaraRamirez,I’ve heard a lot about this musical so I came to see for myself. #JaggedLittlePill #HappyPrideMonth #HappyPride… https://t.co/LrKo9lOvs3 +06/30/2018,Actors,@SaraRamirez,@StevenCanals @PoseOnFX @SilasHoward8 @dyllonburnside @RyanJamaal @MooreIndya @MjRodriguez7 @angelbcuriel YAAAAAAAS… https://t.co/eY0aCKAmtl +06/30/2018,Actors,@SaraRamirez,RT @SRamirezVillage: PHOTO | Sara out in #Boston at #FamiliesBelongTogetherMarch https://t.co/bxsd7wYq8l +06/30/2018,Actors,@SaraRamirez,@everythingloria @OneDayAtATime @NickEndres @haneefahwood @itisIjudyreyes @MackPhillips @SantinaMuha Love love love… https://t.co/NHqpWeVj7D +06/30/2018,Actors,@SaraRamirez,@SRamirezVillage Graciela is a BADASS and I’m so glad we got to meet. Thank you @CoolSciDrGrace for all you are and all you do! 👊🏽✊🏽🙏🏽 +06/30/2018,Actors,@SaraRamirez,@SRamirezVillage Here’s the LINK YALL: DONATE HERE: https://t.co/khaxlrq3Qv +06/30/2018,Actors,@SaraRamirez,Thank you @MarchForwardMA @MassJwJ @ChelseaCollab @mataharijustice @Join_SIM @MuslimJustice #Boston Rally Against F… https://t.co/9TOf6ADyen +06/30/2018,Actors,@SaraRamirez,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Actors,@SaraRamirez,@Elly__Day Thank YOU. 👊🏽✊🏽🙏🏽 +06/30/2018,Actors,@SaraRamirez,At The Commons in #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/qpUkdqCtXD +06/30/2018,Actors,@SaraRamirez,Heading to the the Commons #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/gG1xvp7uKJ +06/30/2018,Actors,@SaraRamirez,Heading to the State House #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/IACTZBk1kD +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/8GXr5uKylN +06/30/2018,Actors,@SaraRamirez,Here with @conniebritton in #BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/sf9fyXKtPa +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/7kB82Cjglh +06/30/2018,Actors,@SaraRamirez,BOSTON #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/b5VD7oV7I2 +06/30/2018,Actors,@SaraRamirez,Here with @SenWarren in Boston #FamiliesBelongTogetherMarch https://t.co/tjkY7P8V1Q +06/30/2018,Actors,@SaraRamirez,Here. Now. Boston. #FamiliesBelongTogetherMarch #FamiliesBelongTogether #EndFamilyDetention https://t.co/4bfJqoiIli +06/30/2018,Actors,@SaraRamirez,@CynthiaEriVo @ShoshanaBean @THR Hey @CynthiaEriVo !!!! 💜💜💜 +06/30/2018,Actors,@SaraRamirez,@ShoshanaBean @THR @CynthiaEriVo Sending love back @ShoshanaBean !! It’s been TOO LONG!!! Rock on like I know you are and will!! 😘 +06/30/2018,Actors,@SaraRamirez,"RT @ACLU: If you are attending a #FamiliesBelongTogether rally today, know your rights. https://t.co/7eMn0mwdkH" +06/30/2018,Actors,@SaraRamirez,@baileycoleman15 @TheEllenShow @MsSarahPaulson @cleaduvall @cameronesposito @harto Im no fashionista or lifestyle guru but YES PLEASE. 😊 +06/29/2018,Actors,@SaraRamirez,@TessaThompson_x THIS. Right on @TessaThompson_x RIGHT. ON. #PrideHasNoEnd 🌈 +06/29/2018,Actors,@SaraRamirez,@THR @CynthiaEriVo @ShoshanaBean Omg THESE POWERHOUSE WOMEN!!!! Gonna bring the house up and down and all around.... 🙌🏽🙌🏽🙌🏽😍 +06/29/2018,Actors,@SaraRamirez,@bunzy55 What up @bunzy55 !!!! I cannot wait for our paths to cross again! You’re the best! 👊🏽✊🏽🌈 +06/29/2018,Actors,@SaraRamirez,"RT @dj_diabeatic: Hi all! Even if you can't make it to a #FamiliesBelongTogether event in person on Saturday, here's a thread of great artw…" +06/29/2018,Actors,@SaraRamirez,"AS IN: TOMORROW +AS IN: BOSTON +Come thru y’all" +06/29/2018,Actors,@SaraRamirez,June 30th I’ll be marching for #FamiliesBelongTogether! Find your local march here: https://t.co/wYuWBoDs72… https://t.co/VESjXbKNHw +06/29/2018,Actors,@SaraRamirez,@VibeMagazine #BisexualPlus #Bisexual #Pansexual #Fluid #NonMonosexual #Queer #FreeAssMothaFucka Lots of ways to pu… https://t.co/Yw0ZNt7QWX +06/29/2018,Actors,@SaraRamirez,@StillBisexual 👊🏽❤️💜💙 +06/29/2018,Actors,@SaraRamirez,@JennicetG 👊🏽✊🏽🙏🏽 +06/29/2018,Actors,@SaraRamirez,"@thefayth @JanelleMonae @TessaThompson_x Yes yes yes yes!!!! Your life, your work, your truth is a huge part of why… https://t.co/RotLEfzHIH" +06/29/2018,Actors,@SaraRamirez,@marquisevilson My friend thank you so much!!! I am grateful to live in this time with you. Rock on @marquisevilson and know I’m with you! 💜 +06/29/2018,Actors,@SaraRamirez,@JennicetG Love you my friend and legendary fire starter of today @JennicetG !!!! Proud to stand with you! 🌈💜💋 +06/29/2018,Actors,@SaraRamirez,"ALERT THE #BILLUMINATI STAT. +Sending love to @TessaThompson_x always. https://t.co/ayYYMxLz9c" +06/29/2018,Actors,@SaraRamirez,@SRamirezVillage Omg hahahahahahahahaha 💖💜💙 https://t.co/VteesmRlvM +06/29/2018,Actors,@SaraRamirez,@translatinbamby As are you my beautiful fierce friend @translatinbamby !! YOU helped pave the way along with so ma… https://t.co/GssM5NrnX4 +06/29/2018,Actors,@SaraRamirez,@glaad @TheEllenShow I remember being a guest on @TheEllenShow many moons ago.....I wonder if I’ll ever be asked ba… https://t.co/uLaxPxh0Wl +06/29/2018,Actors,@SaraRamirez,Here is my FULL INTRO SPEECH at the @VH1 #TRAILBLAZERSHONORS AWARD SHOW that was edited for time. https://t.co/16Br9HJVWm +06/29/2018,Actors,@SaraRamirez,"RT @tywrent: a letter to young LGBTQ+ people, from your favorite nonbinary camp counselor, aka me https://t.co/VoaGbmhziJ" +06/29/2018,Actors,@SaraRamirez,@gabrielarkles @RaquelWillis_ @janetmock @rgay @daisyhernandez @Moore_Darnell @chasestrangio @talilalewis @phatpooj… https://t.co/v8I1IIqCPb +06/29/2018,Actors,@SaraRamirez,RT @ACLU: The Trump administration should focus its enormous resources on reuniting the thousands of children whom it cruelly ripped from t… +06/29/2018,Actors,@SaraRamirez,"@tyleroakley GSA=Gender & Sexuality Alliance. Start one.Challenge what’s already out there,evolve existing coalitio… https://t.co/Y9hH8RNY7R" +06/29/2018,Actors,@SaraRamirez,"RT @RaquelWillis_: My new Supremes are... + +@queersocialism +@AshleeMPreston +@IWriteAllDay_ +@ethiopienne +@IamGMJohnson +@Kehlani +@awkward…" +06/29/2018,Actors,@SaraRamirez,@iSmashFizzle I SO hear this. In solidarity with you @iSmashFizzle !! 👊🏽✊🏽💜 +06/29/2018,Actors,@SaraRamirez,"GSA=Gender & Sexuality Alliance. Start one.Challenge what’s already out there,evolve existing coalitions,center the… https://t.co/8b2kCSI3GW" +06/29/2018,Actors,@SaraRamirez,RT @baratunde: Justice Anthony Kennedy jumped out the emergency exit mid-flight. No care for the rest of us stuck on this disintegrating pl… +06/29/2018,Actors,@SaraRamirez,RT @CharlesMBlow: This should not have been a thing! Why was this a thing?! Is this what they mean when they say “civility”? I’m still sooo… +06/29/2018,Actors,@SaraRamirez,RT @sahluwal: Please call the Lancaster Police Department in Pennsylvania & ask them if this is how they treat unarmed & non-violent black… +06/29/2018,Actors,@SaraRamirez,@NCLRights @RaquelWillis_ THIS. 🙌🏽🙌🏽🙌🏽 +06/29/2018,Actors,@SaraRamirez,"RT @NCLRights: Today’s the 49th anniversary of the Stonewall Riots. Led by transwomen of color,the first #Pride was a protest:it has always…" +06/29/2018,Actors,@SaraRamirez,"RT @chasestrangio: Plan, resist, protect yourself. https://t.co/pLVqRORw2Z" +06/29/2018,Actors,@SaraRamirez,RT @kateloh: They got the paper out. https://t.co/sShF1iG3FS +06/29/2018,Actors,@SaraRamirez,RT @BisexualHistory: 28 June 2005: Brenda Howard died. A bi activist in the USA credited with inventing Pride festivals following the Stone… +06/29/2018,Actors,@SaraRamirez,@seriesfuse Thank you and THANK YOU 🙏🏽🌈💖💜💙 +06/29/2018,Actors,@SaraRamirez,"RT @keithboykin: Senator Cory Booker: ""The president of the United States is a subject of an ongoing criminal investigation...that could en…" +06/29/2018,Actors,@SaraRamirez,RT @SarahLerner: .@Ocasio2018: “I’m optimistic because cynicism is a weapon.” https://t.co/Gg8Wwj5Q2U +06/29/2018,Actors,@SaraRamirez,"RT @Kyle_Feldscher: The Times-Picayune kept working while Katrina destroyed their homes. + +WDBJ didn't stop working when two of its reporter…" +06/29/2018,Actors,@SaraRamirez,"RT @capgaznews: Today, the Capital Gazette lost five members of our family. Stories on all five bright, wonderful lives will be included in…" +06/29/2018,Actors,@SaraRamirez,RT @AC360: “I’ve heard that Pres. Trump sent his prayers. I’m not trying to make this political right? But we need more than prayers… I wan… +06/29/2018,Actors,@SaraRamirez,@muxerisa @JennicetG @TransLawCenter @rosariodawson @rosaclemente You got it!! +06/28/2018,Actors,@SaraRamirez,"Tonight, please watch #TrailblazerHonors on @VH1 at 9:30/8:30c. It was a honor to be a part of celebrating some of… https://t.co/ZvlNCmFLSM" +06/27/2018,Actors,@SaraRamirez,"Undocumented artist @em_ulsify is making prints 2 raise $ 4 @Raicestexas, the largest immigrant rights nonprofit in… https://t.co/8urO2H5DYQ" +06/27/2018,Actors,@SaraRamirez,“We meet a machine with a movement.” - @Ocasio2018 See the moment this 28-year-old Latina running her first politic… https://t.co/h5uKp5sIUJ +06/26/2018,Actors,@SaraRamirez,On this momentous occasion here’s a light reminder of how there will always be something problematic in the movemen… https://t.co/v6mBQKYlil +06/26/2018,Actors,@SaraRamirez,"RT @ACLU_NC: Today we were back in court to continue our fight to overturn North Carolina’s anti-LGBT laws. + +Thank you to our brave client…" +06/25/2018,Actors,@SaraRamirez,June 28th in Washington D.C. Taking direct action to demand lawmakers and federal officials #EndFamilyDetention. Wi… https://t.co/X4l2sI5KHj +06/25/2018,Actors,@SaraRamirez,RT @ACLU: Here's what the Trump administration doesn't want you to know about its executive order on family separation: https://t.co/6FuJxN… +06/25/2018,Actors,@SaraRamirez,RT @domesticworkers: Look at this map. Each of these dots represents thousands of people ready to take action on June 30th to keep families… +06/24/2018,Actors,@SaraRamirez,PLEASE watch this powerful speech! @DrHerukhuti #NoHomoNoHetero #PrideRally2018 #PrideMonth #HappyPride #Pride2018… https://t.co/zohkCvwm2K +06/24/2018,Actors,@SaraRamirez,RT @chasestrangio: Happy #Pride! I am on my way to North Carolina for a hearing over HB142 and HB2. I wrote this two years ago on the day o… +06/24/2018,Actors,@SaraRamirez,RT @SRamirezVillage: VIDEO | @SaraRamirez talk about the issues that affect all Americans on the #TrailblazerHonors red carpet! | via VH1 h… +06/24/2018,Actors,@SaraRamirez,"RT @ACLU: The decision in Masterpiece Cakeshop had implications for the entire LGBT community. + +Our expert Chase is joined by Shelby from…" +06/24/2018,Actors,@SaraRamirez,Happy #PrideMarch NYC!!!! #PrideMonth #HappyPride #Pride2018 #NYCPride #LGBTQIA+ https://t.co/nt868ugHMh +06/23/2018,Actors,@SaraRamirez,RT @womensmarch: Please donate and share widely. Support these immigrant led bail funds. #EndFamilyDetention #AbolishICE https://t.co/9DqY3… +06/23/2018,Actors,@SaraRamirez,RT @chasestrangio: RIGHT NOW! Come to 186 Orchard in NYC. Support the @ACLU and get one of these amazing tattoos. https://t.co/jnNmil6XEE +06/23/2018,Actors,@SaraRamirez,"RT @VH1: #TrailblazerHonors First Look: @SaraRamirez urges for change and respect for human rights as she presents the @ACLU. + +See the ins…" +06/22/2018,Actors,@SaraRamirez,Many asking how 2 get #NoBodyIsIllegal Tee I wore @ last night's @VH1 #TrailblazersHonors. Provided by… https://t.co/2MznDhUtiW +06/22/2018,Actors,@SaraRamirez,#HappyPride New York City!!! Some great safety tips from @antiviolence https://t.co/bU1PXghFXd https://t.co/S6kSMtcKlj +06/22/2018,Actors,@SaraRamirez,RT @ACLU: BREAKING: The Supreme Court just issued a groundbreaking victory for Americans’ privacy rights by ruling that police need a warra… +06/22/2018,Actors,@SaraRamirez,RT @SRamirezVillage: VIDEO | @SaraRamirez at the VH1 Trailblazer Honors. She'll be a presenter at the event. | via logotv https://t.co/DHWe… +06/22/2018,Actors,@SaraRamirez,"RT @ABC: Cynthia Nixon to @theView: ""I think we need to abolish ICE."" + +""They have strayed so far from the interests of the American people…" +06/22/2018,Actors,@SaraRamirez,"RT @TheDemCoalition: Think about it: This president built tent cities in order to separate, cage and jail immigrant children faster than ai…" +06/22/2018,Actors,@SaraRamirez,"RT @womensmarch: Imagine being separated from your child, both of you imprisoned for seeking a better life. Are you willing to put your bod…" +06/22/2018,Actors,@SaraRamirez,"RT @votolatino: Shout out to all of our incredible interns that are making our rally in Tornillo, TX this Sunday possible! #NationalSelfieD…" +06/22/2018,Actors,@SaraRamirez,Last night’s @VH1 #TrailblazersHonors = an inspiring & uplifting reminder that we must widen our lens & keep connec… https://t.co/rTc11vfX4a +06/22/2018,Actors,@SaraRamirez,RT @kylegriffin1: Microsoft employees have signed an open letter to CEO Satya Nadella asking him to cancel Microsoft's contracts with ICE t… +06/22/2018,Actors,@SaraRamirez,RT @HuffPost: Military bases in Texas and Arkansas will begin housing tens of thousands of migrant children caught crossing the border ille… +06/22/2018,Actors,@SaraRamirez,RT @chasestrangio: On Monday we will be in court to continue the fight against North Carolina’s anti-trans laws. Learn more here: https://t… +06/22/2018,Actors,@SaraRamirez,RT @ACLU: We're just one of the many groups doing work to #KeepFamiliesTogether! Here's how you can help 14 of our friends doing this work… +06/22/2018,Actors,@SaraRamirez,"RT @ABC: Emotional scenes as migrant mother and son from Guatemala, who were separated crossing the U.S. border, are finally reunited at BW…" +06/22/2018,Actors,@SaraRamirez,RT @ACLU: 🗣 Black. Lives. Matter. https://t.co/HyJF0IzjtD +06/22/2018,Actors,@SaraRamirez,"RT @ACLUTx: While families are separated at the border in Texas, Pittsburg police shot a 17-year-old black kid 3 times in the back. + + @ACL…" +06/22/2018,Actors,@SaraRamirez,"RT @RepJayapal: As I told Politico, I don’t think most Americans understand that a 33-year-old with connections to white supremacists is cr…" +06/22/2018,Actors,@SaraRamirez,"RT @minh81: ****U R G E N T E ***** +“RAICES needs volunteer translators: ""who speak Meso-American indigenous languages (eg, zapotec, nahua,…" +06/22/2018,Actors,@SaraRamirez,"Participating in tonight’s @VH1 @LogoTV #TrailblazerHonors was an honor and a joy. Lots of reunions, new connection… https://t.co/1uxTnDQXHV" +06/21/2018,Actors,@SaraRamirez,"RT @ACLU: More than 2,300 children have been separated from their parents by the Trump administration, and the president has no plans to re…" +06/21/2018,Actors,@SaraRamirez,"RT @ACLU: If @realDonaldTrump thinks placing families in jail indefinitely is what people have been asking for, he is grossly mistaken. #Ke…" +06/20/2018,Actors,@SaraRamirez,Please donate & help make this happen! https://t.co/5Rdk7biT1z #WeShallNotBeMoved brings together the talents of co… https://t.co/h9qgjgiUsN +06/18/2018,Actors,@SaraRamirez,RT @CBSThisMorning: .@aappres reveals that staff are not allowed to hold or comfort crying children being held inside these facilities http… +06/18/2018,Actors,@SaraRamirez,"RT @washingtonpost: The images of Casa Padre, the Walmart-turned-shelter for immigrant children on the Mexican border, are ""eerily reminisc…" +06/18/2018,Actors,@SaraRamirez,"RT @UNITEDWEDREAM: We are here in Tornillo, TX, where thousands of immigrant children are being held. If we want to end family separation a…" +06/18/2018,Actors,@SaraRamirez,"RT @jacobsoboroff: Cages, stressed agents, uncertain detainees and only four contracted social workers. Our latest — from inside the epicen…" +06/18/2018,Actors,@SaraRamirez,"RT @kylegriffin1: """"I'm going to take your child to get bathed."" That's one we see again and again. ... The child goes off, and in a half a…" +06/18/2018,Actors,@SaraRamirez,RT @chasestrangio: #SCOTUS is conferencing this deeply disturbing capital case. Jurors displayed so much anti-gay bias they chose to senten… +06/15/2018,Actors,@SaraRamirez,RT @sbswrites: I am deeply grateful for the opportunity to speak with Channing Nicole about her @StillBisexual video. Here's our interview… +06/15/2018,Actors,@SaraRamirez,RT @ACLU: FACT: There is NO law requiring family separation. #FamiliesBelongTogether https://t.co/2yE1oxioSo +06/15/2018,Actors,@SaraRamirez,"""We should see this latest move by Jeff Sessions for what it is: A blatant violation of human rights & internationa… https://t.co/Qxej7blJv0" +06/15/2018,Actors,@SaraRamirez,RT @JazzJennings__: I’m so honored to collaborate with @Glaad & @netflix on their #FirstTimeISawMe project! The initiative focuses on repre… +06/15/2018,Actors,@SaraRamirez,RT @NiKEs_Nae: Facts! Tune into #myhousenow and yeah we all family aint that right @PoseOnFX my baby @SimplyTwiggy was behind this we been… +06/15/2018,Actors,@SaraRamirez,"Transgender population face their deadliest year, but find an ally who wants to help. - @CNN @AntiViolence +https://t.co/dwKHh44nrm" +06/14/2018,Actors,@SaraRamirez,"RT @paolamendoza: If your heart hurts because kids are being seperated from their parents at the border then take to the streets TODAY! + +Ac…" +06/14/2018,Actors,@SaraRamirez,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Actors,@SaraRamirez,Please read this whole thread. #FamiliesBelongTogether https://t.co/JWYx8G1ePl +06/14/2018,Actors,@SaraRamirez,#FamiliesBelongTogether https://t.co/u0AKqCWt19 +06/13/2018,Actors,@SaraRamirez,"RT @domesticworkers: Truly horrific: the Trump administration seeks to create “Tent Cities” to hold 1,000 - 5,000 unaccompanied migrant chi…" +06/13/2018,Actors,@SaraRamirez,#FamilesBelongTogether Tomorrow find an event near you and make your voice heard! https://t.co/dz3O6O6ffB… https://t.co/VEMRJlaktv +06/12/2018,Actors,@SaraRamirez,"If this fierce smart young person who speaks in a binary language gets it, I’m not sure why #Todes #Todas #Todos do… https://t.co/wYqulO0Ofw" +06/12/2018,Actors,@SaraRamirez,@TanyaSaracho WOOHOOOOO!!! Padelante!!!!!! 🙌🏽👏🏽👏🏽👏🏽👊🏽✊🏽🙏🏽💜 +06/12/2018,Actors,@SaraRamirez,"YAAAAAAS. And what a day to be receiving this news,right?Gente, @VIDA_STARZ will indeed be back for a SEASON 2!!… https://t.co/v6luiBNjJ7" +06/12/2018,Actors,@SaraRamirez,@therealseanjohn @jelanitime YES @therealseanjohn YES!!! #MyHouseVL on @VICELAND is the best! #LGBTQIA+ #youth #POC… https://t.co/fTwln0zLqQ +06/12/2018,Actors,@SaraRamirez,@DrGBeth @JenDeerinwater Right on @DrGBeth ! #BisexualPlus #Bisexual #Pansexual #Queer #PrideMonth… https://t.co/HyLc3OnZ42 +06/12/2018,Actors,@SaraRamirez,"RT @wcruz73: JUNE 12, 2016 + +Orlando, Florida, USA + +2 years have passed and in my heart your faces and spirits are as alive to me as they we…" +06/12/2018,Actors,@SaraRamirez,@DanaPiccoli @VIDA_STARZ 👆🏽🙌🏽👏🏽💜 +06/12/2018,Actors,@SaraRamirez,Happening now. Get in here! Beyond The Bathroom: Fighting for Trans Rights in the Courts and the Legislatures 10:… https://t.co/D6xN3bSTOC +06/12/2018,Actors,@SaraRamirez,Also really appreciating the bi+ lighting in here. #ACLUCon @ACLU https://t.co/tpkEX5SybF +06/12/2018,Actors,@SaraRamirez,So excited to be here at @ACLU #ACLUCon at the Beyond The Bathroom: Fighting for Trans Rights in the Courts and the… https://t.co/C66KPpTXdY +06/12/2018,Actors,@SaraRamirez,@SerAnzoategui Keep up the great work @SerAnzoategui !! I see you!!! 👊🏽✊🏽🙏🏽💜 +06/12/2018,Actors,@SaraRamirez,Save #Eddy Save #Emma Save the #BAR Save #VIDAStarz This show needs to get picked up for SEASON 2 & many more after… https://t.co/yzTS94Cjhw +06/12/2018,Actors,@SaraRamirez,@rgay THIS. YES @rgay . YES. 👊🏽💜 +06/12/2018,Actors,@SaraRamirez,Any suggestions? +06/12/2018,Actors,@SaraRamirez,"If a project that’s congruent with where I am in my growth, in collaboration w/a group of creatives and producers w… https://t.co/MK6WwDxg7E" +06/12/2018,Actors,@SaraRamirez,@StevenCanals @PoseOnFX Y’all are making history in so many ways and it’s imperative that folks pay attention. KEEP… https://t.co/xTtShC42KW +06/12/2018,Actors,@SaraRamirez,"@andymientus @michaelarden If a project that’s congruent with where I am in my growth, in collaboration w/a group o… https://t.co/fy93EgTWqZ" +06/12/2018,Actors,@SaraRamirez,RT @SaraRamirezCake: Pause for this iconic moment #TonyAward2018 #TonyAwards @SaraRamirez https://t.co/DKWWF7eIui +06/11/2018,Actors,@SaraRamirez,@andymientus Omg this thread. @michaelarden & @andymientus are the best. Sending y’all hugs! Andy- your look is eve… https://t.co/2U8LHU3B8C +06/11/2018,Actors,@SaraRamirez,@TanyaSaracho @VIDA_STARZ 🙏🏽🙏🏽🙏🏽👊🏽✊🏽💜 +06/11/2018,Actors,@SaraRamirez,Episode 2 of @PoseOnFX is blowing my mind in the best way imaginable. If you aren’t watching this work I suggest you catch up immediately. 💜 +06/11/2018,Actors,@SaraRamirez,@MjRodriguez7 I’m late to this party but episode 2 of @PoseOnFX is blowing my mind. And YOU @MjRodriguez7 are killi… https://t.co/BLz6eNRCuz +06/11/2018,Actors,@SaraRamirez,"RT @domesticworkers: This Thursday, June 14, thousands of people across the US will join rallies & vigils in over 45 cities to protest the…" +06/11/2018,Actors,@SaraRamirez,@patinamiller https://t.co/dreLr0rDPQ +06/11/2018,Actors,@SaraRamirez,This interview. 🙌🏽 Yaaas @TanyaSaracho !! Right on! @VIDA_STARZ https://t.co/NGbn497qzp +06/11/2018,Actors,@SaraRamirez,@VIDA_STARZ @TanyaSaracho Thank YOU @TanyaSaracho & @VIDA_STARZ cast & crew!!! CANNOT WAIT FOR SEASON 2!!!!! This is must watch TV!! 🙌🏽🤩🙏🏽💜 +06/11/2018,Actors,@SaraRamirez,"RT @ACLU: BREAKING: SCOTUS reinstated Ohio’s voter purge practice, which targets people for removal from the rolls because they haven’t vot…" +06/11/2018,Actors,@SaraRamirez,When the world seems to have become some horrific/terrifying version of mad libs & the 72nd annual #TonyAwards come… https://t.co/ccYGSzpa4u +06/11/2018,Actors,@SaraRamirez,#BestRevivalofaMusical !!!! Congrats @michaelarden and the entire @OnceIslandBway !! #TonyAwards2018 #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,I love me some @JohnLeguizamo ! #LatinXcellence at the #TonyAwards2018 #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,Once On This Island. #AlexNewell BOOM. @OnceIslandBway @michaelarden #TonyAwards2018 #TonyAwards⁠ ⁠ @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,"RT @TheTonyAwards: Congratulations to @chita_rivera, recipient of the 2018 Special Tony Award for Lifetime Achievement in the Theatre. #Ton…" +06/11/2018,Actors,@SaraRamirez,RT @NPR: Parkland drama teacher Melody Herzfeld is being recognized at the 72nd annual Tony Awards for helping save 65 students. https://t.… +06/11/2018,Actors,@SaraRamirez,TRUTH. @arielstachel Your biggest obstacle may turn into your purpose. #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,Yes @erichbergen YAAAS! #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,YES. That. Was. Genius. #8TimesAWeek !! @SaraBareilles @joshgroban #TonyAwards @TheTonyAwards +06/11/2018,Actors,@SaraRamirez,"For the win @LindsayMendez !!! That speech. Genuine love, solidarity and tenderness. #BestFeaturedActress in a… https://t.co/TIvXqVxZDk" +06/10/2018,Actors,@SaraRamirez,Proud of the talented fierce #Latinx presence in theater & this year’s #TonyAwards including @LindsayMendez… https://t.co/uzdpK1tmTE +06/10/2018,Actors,@SaraRamirez,#LatinXcellence on #Broadway #Broadway #TonyAwards @LindsayMendez @Chita_Rivera @JohnLeguizamo @clintramos… https://t.co/E9eFWJar62 +06/10/2018,Actors,@SaraRamirez,"As New York celebrates Puerto Rican heritage at the #PuertoRicanDayParade, please do what you can to help our fello… https://t.co/uKwhYsEuRC" +06/10/2018,Actors,@SaraRamirez,This is how I’m choosing to start my day. Thank you @imarajones & @thelastsipnews family for a news program that lo… https://t.co/uE0tNd2xwz +06/09/2018,Actors,@SaraRamirez,So grateful I got to see @dolabunny in @MTC_NYC ‘s #SaintJoan on BWAY tonight. A divine performance and a breath of… https://t.co/MbWnOQZlLJ +06/08/2018,Actors,@SaraRamirez,This is about to be the most inclusively #Queer #Pride weekend yet. Between @PoseOnFX @VIDA_STARZ @TheTonyAwards o… https://t.co/ts3xV9Zhe2 +06/08/2018,Actors,@SaraRamirez,"""I’m a 31-year-old, very brown-skinned, Black, fat, multiply-disabled, non-binary, femme, bisexual/queer, witchy wo… https://t.co/gNDQ3JhPeO" +06/07/2018,Actors,@SaraRamirez,"#StillBisexual #Bisexual #BiVisibility, #BisexualityIsValid #Pansexual #Queer #LGBTQ #LGBTQIA #BiPride… https://t.co/OgrlnyL1VX" +06/07/2018,Actors,@SaraRamirez,"Thank U @brooklynmuseum @NiKEs_Nae @Elegance21 & the #MyHouseVL Family 4 welcoming me & my crew 2 this powerful, im… https://t.co/hb6NZ2RhLb" +06/05/2018,Actors,@SaraRamirez,RT @marieclaire: Janet Mock on Making History With Pose https://t.co/2poQHBWM3E https://t.co/k1yT8A9iqW +06/05/2018,Actors,@SaraRamirez,"RT @ACLU: Repeating this does not make it true. + +There is no law requiring children to be ripped away from their parents. https://t.co/heV…" +06/05/2018,Actors,@SaraRamirez,"RT @chrislhayes: I really urge people to take a few minutes today and listen to this + +https://t.co/o4Q48sf8ho" +06/05/2018,Actors,@SaraRamirez,#RIP Antash'a English #SayHerName https://t.co/osPIMjr9Wg +06/04/2018,Actors,@SaraRamirez,"@MjRodriguez7 Dear @MjRodriguez7 , I want 2 express gratitude 4 ur portrayal as Blanca on @PoseOnFX . What it took… https://t.co/H1uniXhQdx" +06/04/2018,Actors,@SaraRamirez,Want an accurate and nuanced interpretation? Want to participate in responsible reporting? Want to encourage… https://t.co/wfQdXg0NDN +06/04/2018,Actors,@SaraRamirez,"RT @chasestrangio: People on social media, journalists, others: the major risk in Masterpiece is that you spread the message that Court rul…" +06/04/2018,Actors,@SaraRamirez,RT @ACLU: Our full statement on today's Supreme Court ruling in Masterpiece Cakeshop: https://t.co/xNPeKjwCXK +06/04/2018,Actors,@SaraRamirez,RT @janetmock: We are family!!!! Thanks for watching our pilot episode. This was a dream team. There’s so much more to come. ❤️ #PoseFX htt… +06/04/2018,Actors,@SaraRamirez,"RT @them: The new FX series combats the historical revisionism that has long plagued both ball and drag culture. #PoseFX + +https://t.co/toWH…" +07/02/2018,Actors,@iJesseWilliams,RT @the_bull65: @OWCalifornia Lakers fans deleting all the bad things they have ever said about LeBron. https://t.co/eQ5lm8udr7 +07/01/2018,Actors,@iJesseWilliams,RT @gwynnharris: “Afraid? Okay. Do it afraid.” Tell me why this is going to be one of those things that’ll always cross my mind through the… +07/01/2018,Actors,@iJesseWilliams,"RT @CESand24: Was nervous about attending my first march today. Then the words of @iJesseWilliams came to me. ""Afraid? Ok. Do it afraid.""…" +06/30/2018,Actors,@iJesseWilliams,.@BLeBRiTYgame out here tryna fonction! https://t.co/oFVwYyIZPq +06/30/2018,Actors,@iJesseWilliams,Boss Richards-Ross! 🏅🏅🏅🏅🏅 https://t.co/FyJ5DNnPLr +06/30/2018,Actors,@iJesseWilliams,RT @RealLifeKaz: Knicks about to pull out the ultimate LeBron pitch and just sell him the team lol +06/30/2018,Actors,@iJesseWilliams,RT @Universer_Italy: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams https://t.co/nNVbLVuC2l +06/28/2018,Actors,@iJesseWilliams,RT @Sydvaughnfan2: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams +06/27/2018,Actors,@iJesseWilliams,RT @iJesseWilliams: Heja Sverige!!! 🇸🇪 #WorldCup +06/27/2018,Actors,@iJesseWilliams,RT @boreskes: Dephree has just done a backflip of the sign. https://t.co/d5qh6qybQ6 +06/27/2018,Actors,@iJesseWilliams,Do i get paid for these ? https://t.co/aFb6lNVYRD +06/27/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: Let's never forget @iJesseWilliams +appearance in @bandaidfilm. Gold 💥 directed and written by @ZoeListerJones, female…" +06/27/2018,Actors,@iJesseWilliams,"RT @Boyaishere: You're awake. + +#art #DetroitBecomeHumanfanart #detroitbecomehuman +@iJesseWilliams https://t.co/XXBtVUWJfJ" +06/27/2018,Actors,@iJesseWilliams,👐🏽 https://t.co/RZ2pXsJ90e +06/27/2018,Actors,@iJesseWilliams,RT @ImmortalTech: You mean Alexandria Ocasio-Cortez. She won the election and you still printed the losers name over hers. Imagine that. Lo… +06/27/2018,Actors,@iJesseWilliams,RT @thehill: WATCH: Maxine Waters reads list of times Trump has called for violence https://t.co/Rmkhzf6RAD https://t.co/kB2qCxOM66 +06/26/2018,Actors,@iJesseWilliams,https://t.co/rsVNe1cMEd https://t.co/DpxSgckzgQ +06/26/2018,Actors,@iJesseWilliams,RT @QuelleChris: I was once “apprehended” by 2 white cops coming out of my own crib in Chicago. They forced me to prove that I lived there… +06/26/2018,Actors,@iJesseWilliams,RT @NBA: .@KDTrey5 of the @warriors takes home the 2017-2018 @nbacares #NBACommunityAssist Award! #ThisIsWhyWePlay #NBAAwards https://t.co/… +06/26/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: @iJesseWilliams 🚨📣🚨📣🚨📣🚨📣🚨📣🚨📣🚨 +Louder for the good white folk in the back https://t.co/t4Q2JEGq25" +06/26/2018,Actors,@iJesseWilliams,RT @JMGaylord: @iJesseWilliams We can’t simply be “allies.” We must be “accomplices.” I promise. +06/26/2018,Actors,@iJesseWilliams,Deal. Cigars for pic. Same time Kendra! https://t.co/jo3coG1lE0 +06/26/2018,Actors,@iJesseWilliams,"Daily Operation. +“Allies” Read. +Everyone read thread. https://t.co/51PVu9sLdL" +06/25/2018,Actors,@iJesseWilliams,"RT @iAmNeesah: I do love the beard version of @iJesseWilliams 😍 +And I will watch the #NBAAwards 🔥🤓🍿🏀🔥 https://t.co/xi7jD5xNbP" +06/25/2018,Actors,@iJesseWilliams,"RT @risha843: @iJesseWilliams The part where they're hugging shit....that's disgusting. I get it's fake, but what was the purpose? You're w…" +06/25/2018,Actors,@iJesseWilliams,"RT @FredTJoseph: Me cursing him out or stopping to his level gets me thrown off this plane or worse. So help me out, if you’re really that…" +06/25/2018,Actors,@iJesseWilliams,"RT @FredTJoseph: Then you had a bunch of white people who watched everything come up to me and apologize. One woman said “I’m sorry, it was…" +06/25/2018,Actors,@iJesseWilliams,"RT @OhNoSheTwitnt: Bitch, this is Twitter, not Yelp. https://t.co/HAmku4PMFw" +06/25/2018,Actors,@iJesseWilliams,"RT @perlmutations: Did I ever tell ya about when Harvey Weinstein told me to make sure I shook his hand at a charity event, so I stopped in…" +06/25/2018,Actors,@iJesseWilliams,RT @Mike_Eagle: this gotta be a nathan for you episode https://t.co/JF9gKTr9Wg +06/25/2018,Actors,@iJesseWilliams,"RT @RobCabrera: @iJesseWilliams actually administering medicine to a patient in Detroit Become Human is so meta. + +If Black Mirror & Grey's…" +06/25/2018,Actors,@iJesseWilliams,CONGRATULATIONS!!! @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly @MyScholly… https://t.co/j7Dmeey9Ib +06/25/2018,Actors,@iJesseWilliams,🙏🏾 https://t.co/jS6HTyrDzm +06/25/2018,Actors,@iJesseWilliams,"#NOTHINGTOSEEHERE Happy Monday Everyone! +- Giant Human Puppet Gives Birth https://t.co/iwyEumqum8" +06/25/2018,Actors,@iJesseWilliams,RT @strongblacklead: This is not a MOMENT. This is a MOVEMENT. https://t.co/HtzTDPIDXo +06/25/2018,Actors,@iJesseWilliams,RT @alwaysamburrr: Waaaait did Jesse say in his podcast “y’all love some dogs” (on dogs having more rights than black folks)😩💀@iJesseWilli… +06/25/2018,Actors,@iJesseWilliams,"RT @ScottHech: In 2008, the Supreme Court, in a opinion written by Justice Kennedy, ruled that the US Constitution applies to non-citizens…" +06/25/2018,Actors,@iJesseWilliams,"Sat down in Stockholm, Sweden with #BrilliantMinds Conference CEO #NataliaBrzezinski before i took the stage. Liste… https://t.co/PpW1F6K4Dx" +06/25/2018,Actors,@iJesseWilliams,"RT @JWilliamsCrew: 📱 | Check out the latest episode of ""The Brilliant Minds Podcast"" with special guest @iJesseWilliams - talking black cul…" +06/25/2018,Actors,@iJesseWilliams,RT @whiskymojito: Wow. Was browsing through @iJesseWilliams ig stories and found this!! This has to stop!!! Our world is waaaaay beyond fuc… +06/24/2018,Actors,@iJesseWilliams,🔥🔥🔥🔥🔥 We exchanged handwritten letters when i was in high school. https://t.co/ZNOYZw3cJP +06/24/2018,Actors,@iJesseWilliams,RT @AnnOdong: this is the best offside trap in history. #JPNSEN https://t.co/HxVGHkpQLP +06/24/2018,Actors,@iJesseWilliams,RT @MeritLaw: Called to reserve a room in downtown Pittsburgh. The operator wanted to warn me first that there are major protest going on o… +06/24/2018,Actors,@iJesseWilliams,"RT @WillHunterShow: RIP Permit Patty’s weed company. Man I hope she was racist before calling the cops, because she surely will be after sh…" +06/24/2018,Actors,@iJesseWilliams,RT @ImmortalTech: You mad at the wrong people bruh https://t.co/cyCZyCtspO +06/24/2018,Actors,@iJesseWilliams,RT @StretchArmy: Whoever takes the L in the Kid/Flex battle has to wear Luggz for the rest of their life. Even in bed. Even in the shower.… +06/24/2018,Actors,@iJesseWilliams,"Millions. Not thousands. + +Show me all your tweets objecting to all the irrelevant personal info being released abo… https://t.co/wulsbrA7Bc" +06/24/2018,Actors,@iJesseWilliams,🙏🏽@BLeBRiTYgame for us https://t.co/kDE3pRBVHY +06/24/2018,Actors,@iJesseWilliams,"RT @iUnapologeticMe: The soul of a sailor @iJesseWilliams 🤗 +#SundayMorning mood 🤣 +Holidays, sea, booze and fun ☀️🚣‍♂️ https://t.co/ITNvccOq…" +06/24/2018,Actors,@iJesseWilliams,"RT @chrisjohnson82: Also a reminder @PressSec hasn’t called on me, the only reporter from an LGBT news outlet in the White House press corp…" +06/24/2018,Actors,@iJesseWilliams,RT @tchopstl_: This is straight-up kidnapping and extortion being carried out by the Trump administration. +06/24/2018,Actors,@iJesseWilliams,"RT @joncoopertweets: In a controversial case involving the rights of undocumented immigrants and their young children, a Guatemalan mother…" +06/24/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: Tweet from July 12, 2015. https://t.co/5D6TqZmcEV" +06/24/2018,Actors,@iJesseWilliams,RT @JamilahLemieux: Because it is for them https://t.co/4de8q7D0Oi +06/24/2018,Actors,@iJesseWilliams,RT @SheaSerrano: if slamball had been invented after twitter was invented all these guys would be making $50 million a year easy https://t.… +06/24/2018,Actors,@iJesseWilliams,Decency: it’s much easier. https://t.co/qNUrZ173gh +06/24/2018,Actors,@iJesseWilliams,RT @lukeoneil47: Every white woman has the power of the Let me speak to the manager voice inside of her. You can either use it to call the… +06/24/2018,Actors,@iJesseWilliams,"Utilizing the most ignorant/American rationale available, an American, in America, has been sentenced to death for… https://t.co/hJZSy3wgLN" +06/24/2018,Actors,@iJesseWilliams,RT @riseandresistny: @macc_nyc getting thrown to the ground by law enforcement as they attempt to block an I.C.E. van at 201 Varick St. #En… +06/24/2018,Actors,@iJesseWilliams,RT @nowthisnews: This Senate candidate got arrested trying to deliver toys and supplies to detained children https://t.co/n4FckyCo7P +06/24/2018,Actors,@iJesseWilliams,"RT @CleverTitleTK: GOP: ""Why are we worrying about these foreign children at the border instead of American children?"" + +Also GOP: https://t…" +06/24/2018,Actors,@iJesseWilliams,RT @lexlanthony: Today in Queens Criminal Court: Very young black man brought in bc he couldn’t afford to pay a fine as his father just rec… +06/24/2018,Actors,@iJesseWilliams,"RT @KT_NRE: I'm sure this sculpture is supposed to be a statement on consumer culture or something, but all I can see is Jesus and Lenin tr…" +06/24/2018,Actors,@iJesseWilliams,RT @YasminYonis: White people live in a completely different world than us. https://t.co/2JU0TDxoWI +06/24/2018,Actors,@iJesseWilliams,"RT @DrPhilGoff: They like the racism. They like it. They liiiiiiiike the racism. They LIKE it like it. The racism and them, they’re friends…" +06/24/2018,Actors,@iJesseWilliams,"RT @MuslimIQ: This racist harassed 5 Muslim teen girls in Jersey City, New Jersey—cursing at them & calling them “traitors to America” b/c…" +06/24/2018,Actors,@iJesseWilliams,RT @GideonResnick: This new Kamasi Washington album https://t.co/y8F72sVGlx +06/23/2018,Actors,@iJesseWilliams,RT @NILC_org: ICE agents often use intimidation tactics to enter homes. Remember: #WeHaveRights. Be prepared for encounters with ICE with t… +06/23/2018,Actors,@iJesseWilliams,RT @mireya_g: That story about the woman with the parasitic worm inside her face is just too gross. I can't even share it. It is giving me… +06/23/2018,Actors,@iJesseWilliams,"RT @CNN: First, it was a small bump under her left eye. Five days later, it appeared above the eye. Her upper lip was bulging 10 days after…" +06/23/2018,Actors,@iJesseWilliams,"Those who can’t do, gossip." +06/23/2018,Actors,@iJesseWilliams,RT @_QuianaJ_: I literally love that Jackson wears J’s when he is outside of the hospital. J’s and Grey Sweatpants! @GreysABC @iJesseWillia… +06/23/2018,Actors,@iJesseWilliams,Heja Sverige!!! 🇸🇪 #WorldCup +06/23/2018,Actors,@iJesseWilliams,RT @notdoxxed: How we playing rn #GERSWE https://t.co/LCMEHMnq6Q +06/22/2018,Actors,@iJesseWilliams,"If you, your friends and/or family are looking for scholarships this summer, @myScholly just launched our $10,000 S… https://t.co/4hPUO3jXQr" +06/22/2018,Actors,@iJesseWilliams,"RT @FOXSoccer: The touch, the finish, everything about this Musa goal was SPECTACULAR. 🙌 https://t.co/ILhhCmiimk" +06/22/2018,Actors,@iJesseWilliams,"RT @Luis_22__: Dear @NYGovCuomo, + +You must sign this criminal justice reform bill to finally hold prosecutors accountable for their miscond…" +06/22/2018,Actors,@iJesseWilliams,RT @TheDailyShow: PROPAGAND-OFF! Fox News vs. North Korean State TV https://t.co/B9CfxgN0XC +06/22/2018,Actors,@iJesseWilliams,RT @Phil_Lewis_: Saw this on Facebook: 1964 news clip of white citizens reacting to the proposed civil rights bill. https://t.co/j8yM00hEgB +06/22/2018,Actors,@iJesseWilliams,"RT @EricHolder: Here’s another zero tolerance program for the Trump Administration: EVERY child, EVERY baby has to be reunited with his or…" +06/22/2018,Actors,@iJesseWilliams,"RT @Sifill_LDF: Frankly, it’s refreshing when they just say it. https://t.co/4gNHRelMZn" +06/22/2018,Actors,@iJesseWilliams,RT @GreysABC: Happy First Day of Summer! 😎🍦☀️🏖⛵ #SummerSolstice #GreysAnatomy https://t.co/wZqfCEVaFG +06/22/2018,Actors,@iJesseWilliams,"RT @openrun: If you woke up this morning thinking, “wait...who did my team draft last night?” — we’ve got the prospect primer you need! Fea…" +06/22/2018,Actors,@iJesseWilliams,WHAT A COUNTER ATTACKKKKK!!!! @Nigeria #SuperEagles #WorldCupRussia2018 +06/21/2018,Actors,@iJesseWilliams,Modrić with the DAGGER to Argentina’s heart!!! #WorldCup2018 +06/21/2018,Actors,@iJesseWilliams,Oh good https://t.co/k54AuesRbt +06/21/2018,Actors,@iJesseWilliams,"RT @MoscowTimes: Meanwhile in Russia, Burger King apologizes for short-lived promo offering lifetime of free Whoppers to women impregnated…" +06/20/2018,Actors,@iJesseWilliams,"IT’S ALMOST LIKE THEY DIDN’T MEAN IT WHEN THEY SAID +“ALL LIVES MATTER”" +06/20/2018,Actors,@iJesseWilliams,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Actors,@iJesseWilliams,RT @GlennonDoyle: Predators live for moments like this. This is an atrocity. https://t.co/8vQoVeZhAt +06/20/2018,Actors,@iJesseWilliams,RT @mikeytraynor: Me when plans get cancelled. #AliouCisse #WorldCup https://t.co/OdbTBeyxvU +06/20/2018,Actors,@iJesseWilliams,RT @NutmegRadio: Aliou Cissé is me when the DJ finally plays my song and then switches to the remix before the first verse even finishes. h… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: I have spent much of my life working in GOP politics. I have always believed that both parties were two of the most im… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: Season of renewal in our land is the absolute and utter repudiation of Trump and his vile enablers in the 2018 electio… +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: Humanity in our history. It is connected by the same evil that separated families during slavery and dislocated tribes… +06/20/2018,Actors,@iJesseWilliams,"RT @SteveSchmidtSES: It is corrupt, indecent and immoral. With the exception of a few Governors like Baker, Hogan and Kasich it is filled w…" +06/20/2018,Actors,@iJesseWilliams,RT @SteveSchmidtSES: 29 years and nine months ago I registered to vote and became a member of The Republican Party which was founded in 185… +06/20/2018,Actors,@iJesseWilliams,"RT @JWilliamsCrew: 📱 | Jesse Williams to present at the 2018 NBA Awards, hosted in Los Angeles on Monday, June 25th. https://t.co/UFz8EOQG…" +06/20/2018,Actors,@iJesseWilliams,"RT @Empresstwit: @iJesseWilliams “White people who are quiet about racism might not plant the seed, but their silence is sunlight.” + +DAMN.…" +06/20/2018,Actors,@iJesseWilliams,RT @beth_blomquist: @iJesseWilliams That hurt to read. I would like to think that I speak up and speak out at every injustice and intoleran… +06/20/2018,Actors,@iJesseWilliams,White People Are Cowards - The Root #ReadIfYouDare https://t.co/1HzWnLyh9f +06/20/2018,Actors,@iJesseWilliams,"RT @ScottHech: If you or your loved one is *arrested by ICE, know this: YOU HAVE RIGHTS. View the #WeHaveRights series that @ACLU + @BklynD…" +06/20/2018,Actors,@iJesseWilliams,"RT @ScottHech: If ICE approaches you in the street, your community, at work, or in court, remember: YOU HAVE RIGHTS. View the #WeHaveRights…" +06/20/2018,Actors,@iJesseWilliams,👀👂🏽 https://t.co/cTzASU0q61 +06/20/2018,Actors,@iJesseWilliams,RT @ScottHech: Figured now was a good a time to remind people that-whether you’re documented or undocumented-YOU HAVE RIGHTS when interacti… +06/20/2018,Actors,@iJesseWilliams,"RT @caterinatweets: This is a really easy way to help the babies, children and parents who are being separated and traumatized at the borde…" +06/20/2018,Actors,@iJesseWilliams,"RT @ACLU: BREAKING: The court rules that Kansas' documentary proof-of-citizenship law, which disenfranchised thousands of eligible voters,…" +06/20/2018,Actors,@iJesseWilliams,RT @marwilliamson: The fraud is not being committed by immigrants trying to game the system; ICE admits 1% of asylum seekers found to be fr… +06/20/2018,Actors,@iJesseWilliams,"RT @chrislhayes: Since the president is lying about this, I'll reiterate that we obtained internal CBP documents that show that ****91%****…" +06/18/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: """"I'm going to take your child to get bathed."" That's one we see again and again. ... The child goes off, and in a half a…" +06/18/2018,Actors,@iJesseWilliams,RT @ClintSmithIII: This is an important moment to remember that there have been folks organizing & working on behalf of families at the bor… +06/18/2018,Actors,@iJesseWilliams,RT @DrPhilGoff: They’re not even putting mechanisms in place that would ALLOW them to reunite families. It’s just a policy of evil. No mora… +06/18/2018,Actors,@iJesseWilliams,"RT @goingglocal: So Trump wants you to think there is a major uprising here in Germany and that ""Crime in Germany is way up."" + +Greetings f…" +06/18/2018,Actors,@iJesseWilliams,RT @mattdpearce: Calling it like it is. https://t.co/CeGSuoDlAX https://t.co/FWCSkiwrRO +06/18/2018,Actors,@iJesseWilliams,"RT @NBCNews: UN Human Rights commissioner: + +""In the United States, I'm deeply concerned by recently adopted policies which punish children…" +06/18/2018,Actors,@iJesseWilliams,"RT @adv_project: This isn't an easy listen. But it's a necessary one. + +Our government & our elected officials created this crisis. It's ti…" +06/18/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/18/2018,Actors,@iJesseWilliams,"RT @sternbergh: ""the youngest children in here are as young as infants, basically"" https://t.co/nuYqnZuGG9" +06/18/2018,Actors,@iJesseWilliams,"RT @keithboykin: ""Trump is lying, as he often does. This barbaric policy is an outgrowth of his own personal cruelty. It’s absolutely repre…" +06/18/2018,Actors,@iJesseWilliams,RT @BetoORourke: Catch-22. We are preventing families from lawfully requesting asylum at our ports of entry & then criminally prosecuting t… +06/18/2018,Actors,@iJesseWilliams,"RT @TheRoot: Texas deputy accused of sexually assaulting 4-year-old girl, while threatening her mother with deportation to get her to stay…" +06/18/2018,Actors,@iJesseWilliams,RT @nowthisnews: Crowds of people marched on a 'tent city' where the Trump administration is detaining undocumented children https://t.co/V… +06/18/2018,Actors,@iJesseWilliams,"RT @Channel4News: This Silicon Valley 'computer philosopher' says you need to delete your social media. + +Jaron Lanier argues we are hooked…" +06/18/2018,Actors,@iJesseWilliams,"RT @JoyAnnReid: Some of the migrant parents fear they may never get their children back, as they are being deported without them... https:/…" +06/18/2018,Actors,@iJesseWilliams,"RT @kylegriffin1: Fact Check: The German crime rate just hit its lowest level since 1992. +https://t.co/v9RMJBcSKB https://t.co/s6yEMPRe8D" +06/18/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: Because of the Administration’s policy of breaking up families at the border, these detention facilities are overflowing…" +06/18/2018,Actors,@iJesseWilliams,"RT @SenMarkey: This is a lie. There is no law. There is no court mandate. This is a policy made solely by this administration, and you can…" +06/18/2018,Actors,@iJesseWilliams,"RT @RepDonBeyer: The Trump Administration’s family separation policy tore 2,000 families apart in six weeks but they won’t stop lying about…" +06/18/2018,Actors,@iJesseWilliams,"RT @RepDonBeyer: And again Friday, asked about Kim Jong-un, Trump said: “Hey, he’s the head of a country. And I mean he is the strong head.…" +06/17/2018,Actors,@iJesseWilliams,EXCLUSIVE: Jesse Williams hosts star-studded @BLeBRiTYgame night at @ABFF https://t.co/Hohh8mkmCK via @theGrio +06/17/2018,Actors,@iJesseWilliams,😂😂😂😂😂😂😂 https://t.co/e1aR2XExSt +06/17/2018,Actors,@iJesseWilliams,"Our Father - @SaulWilliams + +https://t.co/KlLvNhR8rO #HappyFathersDay" +06/16/2018,Actors,@iJesseWilliams,"RT @jperiodBK: Dear Hip Hop, + +One of the Culture's greatest protectors is in need. + +@DJSpinna, legendary DJ, producer and unmatched encycl…" +06/15/2018,Actors,@iJesseWilliams,"RT @KamalaHarris: According to a shocking report, about 2,000 children have been separated from their families. That's an average of 45 kid…" +06/15/2018,Actors,@iJesseWilliams,"RT @ScottHech: Mitch. The Mueller probe has gone on for just 394 days. As of today, my 19 year old client charged with robbery of another t…" +06/15/2018,Actors,@iJesseWilliams,"RT @chrislhayes: The president and the GOP are currently using 2000 children, stolen from their parents, as leverage for a bill to make asy…" +06/15/2018,Actors,@iJesseWilliams,🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/FF8UJ1l7YX +06/15/2018,Actors,@iJesseWilliams,You won this deal. Everybody won this deal. @BLeBRiTYgame https://t.co/Z42K5HM69m +06/15/2018,Actors,@iJesseWilliams,You’re the real MVP Amber https://t.co/t52MLvD6Gb +06/15/2018,Actors,@iJesseWilliams,"RT @POLConference: .@iJesseWilliams will join the Opening Plenary at #ServiceUnites, leading a panel w/ young men from different walks of l…" +06/15/2018,Actors,@iJesseWilliams,"RT @MelASomers: I've played many games with incredible acting but @BryanDechart, @valoriecurry and @iJesseWilliams set the bar high! #Detro…" +06/15/2018,Actors,@iJesseWilliams,"People on flights to Miami, even at 5am, tend to be happier than 97% of other airline passengers. #Science" +06/15/2018,Actors,@iJesseWilliams,"RT @NateSilver538: @jackshafer @markoff I'd say the email stuff got maybe 4x the amount of coverage that it ""should"" have. Even if you redu…" +06/15/2018,Actors,@iJesseWilliams,RT @NateSilver538: One shouldn't underrate how much the media's obsession with Clinton's emails stemmed from its obsession with fending off… +06/15/2018,Actors,@iJesseWilliams,"RT @matthewamiller: If Trump was running his charity as a sprawling, multi-year criminal enterprise, perhaps that’s a small clue about how…" +06/15/2018,Actors,@iJesseWilliams,"RT @ThornCoyle: Please read all 4 of these screenshots from Tiana Smalls. + +I’ll follow w a thread of a similar experience: + +#Resist #Soli…" +06/15/2018,Actors,@iJesseWilliams,Big up to @bazdreisinger and #EducationNotIncarceration #prison2collegepipeline “Education is the most powerful we… https://t.co/J5Nj9JXOCk +06/15/2018,Actors,@iJesseWilliams,"RT @BarbaraGuer1n: Je commence #DetroitBecomingHuman , je vois Jackson de #GreysAnatomy avant d'être immergé dans l'univers du jeu. Mainten…" +06/15/2018,Actors,@iJesseWilliams,RT @japril_soldiers: Amazing how it looks so real! #Markus #DetroitBecomeHuman @iJesseWilliams 👀 https://t.co/jTweH3e3ku +06/15/2018,Actors,@iJesseWilliams,RT @TeenChoiceFOX: The doctor is in! 👨‍⚕️ RT to vote @iJesseWilliams for #ChoiceDramaTVActor. #TeenChoice https://t.co/222FFxuB1Z +06/15/2018,Actors,@iJesseWilliams,RT @jbrownedianis: One more day til kickoff! Thanks @iJesseWilliams & @Kaepernick7 for your support to make this happen! #ActionCamp2018 ht… +06/15/2018,Actors,@iJesseWilliams,RT @haymarketbooks: “The Problem is Civil Obedience” @iJesseWilliams reads Howard Zinn’s iconic 1970 speech https://t.co/lFuMeCyUTq +06/14/2018,Actors,@iJesseWilliams,"RT @KeeganNYC: From 1992 to 2017, DAs in Mississippi struck black people from juries over 4X as often as they did white people: https://t.c…" +06/14/2018,Actors,@iJesseWilliams,"RT @jehorowitz: This thread is excellent. We are in a linguistic emergency. In a world of words, the right words matter. (And on a side not…" +06/14/2018,Actors,@iJesseWilliams,"RT @AllieGoertz: ME: sorry, where was I? +THERAPIST: you were saying each man you’ve ever loved wears a backwards hat and asked if it’s poss…" +06/14/2018,Actors,@iJesseWilliams,RT @paleofuture: ICE is rounding up legal permanent residents for misdemeanors committed 20 years ago. Remember that “deportation force” ev… +06/13/2018,Actors,@iJesseWilliams,"RT @jolexcapshaw: Let's vote for @iJesseWilliams! The category in which he was nominated is ""Choice Drama TV Actor"". 😉 Click here to vote 👇…" +06/13/2018,Actors,@iJesseWilliams,RT @jolexcapshaw: My #TeenChoice for #ChoiceDramaTVActor is @iJesseWilliams https://t.co/NvtiOHjCd9 +06/12/2018,Actors,@iJesseWilliams,Takk! From both of us! https://t.co/KiF8X9SBtj +06/12/2018,Actors,@iJesseWilliams,👌🏽👌🏽👌🏽👌🏽👌🏽👌🏽🙏🏽🙏🏽🙏🏽🙏🏽🙏🏽 https://t.co/i77mUch13K +06/12/2018,Actors,@iJesseWilliams,"RT @generationOn: This is so exciting! Don't miss this amazing line up of speakers, include @iJesseWilliams, @Adaripp and student leaders @…" +06/12/2018,Actors,@iJesseWilliams,"RT @POLConference: JUST IN! @iJesseWilliams will join the Opening Plenary at #ServiceUnites, leading a panel w/ young men from different wa…" +06/12/2018,Actors,@iJesseWilliams,Don’t drop the food. Stay strong. https://t.co/QzZeEss9iE +06/11/2018,Actors,@iJesseWilliams,RT @rainehoggard: @iJesseWilliams had to go ahead and get it😊 https://t.co/uS2gcsySve +06/11/2018,Actors,@iJesseWilliams,"RT @openrun: #NBADraft Deep Dive #1: Kevin Knox, the 6'9"" SF from the University of Kentucky #OpenRunxDimeDrop | See the full @dimedrophoop…" +06/11/2018,Actors,@iJesseWilliams,RT @openrun: The #NBADraft Preview you’ve been dreaming of is here! We’re teaming up with longtime friend o’ the show @jkylemann to bring y… +06/11/2018,Actors,@iJesseWilliams,"RT @kaytana08: I can't get over how good #DetroitBecomeHuman was. I finished it yesterday and am still thinking about it. + +@Quantic_Dream k…" +06/11/2018,Actors,@iJesseWilliams,#YESPLEASE: KIDDING (2018) Teaser Trailer | Jim Carrey SHOWTIME Series https://t.co/q8Xou0rc73 via @JimCarrey @Showtime +06/10/2018,Actors,@iJesseWilliams,RT @3_busan: Still can’t believe I met @iJesseWilliams a few days ago 😍😭😍 thank you so much for taking the time to take the pic and sign au… +06/10/2018,Actors,@iJesseWilliams,"RT @Japril_EndGame: AMERICA DO YOU THING. @iJesseWilliams is showing you this on his IG story. So this must be important. + +I don’t think t…" +06/10/2018,Actors,@iJesseWilliams,👌🏽 https://t.co/7xhhAe1qxh +06/10/2018,Actors,@iJesseWilliams,RT @sanna_wolk: Awesome that actor @iJesseWilliams visited #Rinkeby when he was in Stockholm😍 Thanks for your good work - it’s really impre… +06/10/2018,Actors,@iJesseWilliams,RT @JeffMerkley: Kids in what looked like dog kennels. Children using space blankets as a cushion or cover for privacy. What I saw at the p… +06/10/2018,Actors,@iJesseWilliams,RT @JeffMerkley: My visit to the McAllen processing center was a harrowing experience. Children were in cages. People were distraught. Kids… +06/08/2018,Actors,@iJesseWilliams,RT @iUnapologeticMe: 2014. Activist @iJesseWilliams talks about the police treating the people like savages. 4 years ago and still applies… +06/08/2018,Actors,@iJesseWilliams,RT @JustGugu: “Afraid? Ok. Do it afraid” - @iJesseWilliams +06/08/2018,Actors,@iJesseWilliams,RT @BoobsRadley: I loved how Anthony Bourdain tried to show TV viewers how people who weren't anything like us were just like us. He viewed… +06/08/2018,Actors,@iJesseWilliams,RT @mrjafri: Anthony Bourdain took the time to shine a light on intolerance and injustice. He showed us what matters most is not what divid… +06/08/2018,Actors,@iJesseWilliams,RT @ToddGregory: 23 seconds: https://t.co/HzmBElXcaQ +06/08/2018,Actors,@iJesseWilliams,"RT @nickbilton: This is gut-wrenching: ""The first few nights, he cried himself to sleep. Then it turned into just moaning and moaning... he…" +06/08/2018,Actors,@iJesseWilliams,RT @JamilSmith: Read every word of this @mirjordan report. The whole story of a young Honduran boy taken away from his father at the border… +06/08/2018,Actors,@iJesseWilliams,"RT @SiniSiambalis: When u see @iJesseWilliams hanging in the hood 🙌🏼 +Välkommen! https://t.co/wFPCH5SKPl" +06/08/2018,Actors,@iJesseWilliams,RT @digitalduckiesd: Watching”Survivers guide to prison” - HORRIFYING! @officialDannyT @thematthewcooke @SusanSarandon @iJesseWilliams and… +06/08/2018,Actors,@iJesseWilliams,"RT @TheAfroLifeTV: #RT @ABFF: ""#TheLineUp | Without A Net: The Digital Divide in America sponsored by #Verizon |Panelist: @ijessewilliams |…" +06/08/2018,Actors,@iJesseWilliams,"RT @IDEA_Initiative: #TBT! @iJesseWilliams, @cgray91 and @MichaelaAngelaD paused for a quick selfie after their fireside chat at last month…" +06/08/2018,Actors,@iJesseWilliams,RT @QD3: With my brothers @ijessewilliams and @anunez21 at #cafemynta in #rinkeby #stockholm. VA hander! Tack min bror Jamal. https://t.co/… +06/06/2018,Actors,@iJesseWilliams,"Kalief Browder died 3 years ago today. + +He spent 1,120 days in jail but was NEVER convicted of a crime. + +He couldn’… https://t.co/3fo8Z9tmbr" +06/06/2018,Actors,@iJesseWilliams,"RT @Taru121112: Thank u, @Quantic_Dream and @iJesseWilliams 🖤🎮 +Thank u, for your work, thank u for your characters and thank u, for your aw…" +06/06/2018,Actors,@iJesseWilliams,RT @iam3aii: Markus 💚 #Markus #DetroitBecomeHuman #Fanart @Detroit_PS4 @PlayStationES @Quantic_Dream @iJesseWilliams @dibujando @Dibujnauta… +06/05/2018,Actors,@iJesseWilliams,"RT @CandyKin9: Literally the best game that i’ve ever played in 2018 , thank you for giving us this Master Piece it’s so beautiful ❤️💜💕. @…" +06/03/2018,Actors,@iJesseWilliams,Play it in line or with some wine. Play it on the train or in the rain. @BlebrityGame https://t.co/tmiw8samas +06/03/2018,Actors,@iJesseWilliams,"RT @cnni: Becky McCabe got down on one knee to propose to her girlfriend, Jessa Gillaspie. Jessa shrieked and immediately reached for her b…" +06/03/2018,Actors,@iJesseWilliams,RT @rosaclemente: Its hard to witness most everyone on social media focusing on two white women and their antics. I guess 2 white women mil… +06/03/2018,Actors,@iJesseWilliams,RT @samswey: The police union in Oakland sent out an email blast criticizing black District Attorney candidate Pamela Price. It turns out t… +06/03/2018,Actors,@iJesseWilliams,RT @franklinleonard: He’s never gonna dance again. Guilty feet have got no rhythm. https://t.co/2vI72YoCOP +06/03/2018,Actors,@iJesseWilliams,"RT @moontroller: Is @Detroit_PS4 already my game of the year? Hell yeah! +Are the great performances of @valoriecurry @iJesseWilliams @Bryan…" +06/02/2018,Actors,@iJesseWilliams,RT @Shootingstar258: @iJesseWilliams I am enjoying Detroit become human. It has everything you need in a game. It also relates to some big… +06/02/2018,Actors,@iJesseWilliams,"RT @dachshundgirl99: @iJesseWilliams LOOK AT WHAT I GOT! I’m so excited to play and the cover art is so good, I could tell it was you just…" +06/25/2018,Actors,@TheRealKMcKidd,Friends of mine are going thru this - please help if you can xx. https://t.co/JUhFBdfLHN +06/20/2018,Actors,@TheRealKMcKidd,RT @thedailybeast: The cost of keeping migrant kids separated from their families in so-called “tent cities” reportedly costs three times m… +06/20/2018,Actors,@TheRealKMcKidd,Family separation- let’s put a stop to it- it’s… https://t.co/y53ynT8p29 +06/19/2018,Actors,@TheRealKMcKidd,"RT @msdebbieallen: As a parent, I'm sickened by what our gov’t is doing. We have to stand up for these children who are going to sleep in a…" +06/15/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: .@SpeysideSession turns 6 today! + +Lovely album by @TheRealKMcKidd & friends with proceeds going to @SavetheChildren + +Get di…" +06/12/2018,Actors,@TheRealKMcKidd,Proud of my director pal @GemmaFairlie ! Go and see it if you happen to be in Bonny scotland ! :) https://t.co/ogagbMl3C9 +06/06/2018,Actors,@TheRealKMcKidd,RT @SavetheChildren: @TheRealKMcKidd Thank you so much for your support of children in need during time of crisis. We're on the ground in… +06/06/2018,Actors,@TheRealKMcKidd,"Agreed, be vigilant where you choose to donate - make sure it is a reputable charity https://t.co/Rwl1Erqyqe" +06/06/2018,Actors,@TheRealKMcKidd,#guatemala #volcano- donate to this @SavetheChildren site if you can. It’s truly awful the unfolding situation there https://t.co/dumGx1xBvA +06/06/2018,Actors,@TheRealKMcKidd,#Guatemala is in a huge human crisis right now! #volcano is ongoing and affecting thousands - donate to #Redcross https://t.co/COf5D7LsF1 +06/06/2018,Actors,@TheRealKMcKidd,Where is the donation sites for #Guatemala volcano victims? +06/06/2018,Actors,@TheRealKMcKidd,"RT @ItsMutai: This is not a movie. This is the reality in Guatemala Yesterday when a Volcano erupted and killing 75 people, and 200 people…" +06/06/2018,Actors,@TheRealKMcKidd,"RT @NPR: Guatemala Volcano Toll Rises To 75, 200 Still Missing https://t.co/riJhLZfUIq" +05/29/2018,Actors,@TheRealKMcKidd,"RT @THR: 6 of Hollywood's top actresses unload on the power of producing, onscreen nudity (male and female), learning to say no and the bet…" +05/25/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: East coast are you watching? #RedNoseDay 🔴 https://t.co/u07BGrOk4g +05/25/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: Looking back at @TheRealKMcKidd's 2016 ""FUN-raiser"" for @RedNoseDayUSA Thanks to @caterinatweets @sarahdrew @EllenPompeo fo…" +05/22/2018,Actors,@TheRealKMcKidd,RT @byshondaland: It was @msdebbieallen’s dedication to youth that made her the perfect fit to shoot @Dove’s self esteem project. The tripl… +05/18/2018,Actors,@TheRealKMcKidd,This young man .. I remember taking him to… https://t.co/WvqbJDp15C +05/18/2018,Actors,@TheRealKMcKidd,This https://t.co/hFaPgYny1j +05/18/2018,Actors,@TheRealKMcKidd,Every possibility ;) https://t.co/gEJM4i2ADh +05/18/2018,Actors,@TheRealKMcKidd,Kim is such a talent and a pro and real person !! Love her https://t.co/qfR2u7per8 +05/18/2018,Actors,@TheRealKMcKidd,Whenever Jessica and I had a scene together - we had a ball !!! #mrandmrshunt https://t.co/IeHqVKlG0L +05/18/2018,Actors,@TheRealKMcKidd,"Remind me - I have a few BTS pics from Jolex wedding , I’ll post over the next few weeks ;)" +05/18/2018,Actors,@TheRealKMcKidd,This https://t.co/ZaiFDDG4pb +05/18/2018,Actors,@TheRealKMcKidd,Too many to mention ! https://t.co/2QdmBR3VXn +05/18/2018,Actors,@TheRealKMcKidd,"Honestly , I truly don’t know https://t.co/MWstzqNfDv" +05/18/2018,Actors,@TheRealKMcKidd,Yo! https://t.co/vF4MXHg9wd +05/18/2018,Actors,@TheRealKMcKidd,"He will , he will be face timing her to figure stuff out ! https://t.co/NweIaEW4pl" +05/18/2018,Actors,@TheRealKMcKidd,Yup https://t.co/BjwrFiDZWp +05/18/2018,Actors,@TheRealKMcKidd,11 https://t.co/2QdYxxXCNx +05/18/2018,Actors,@TheRealKMcKidd,"Jaw, dropper - 2 words needed only https://t.co/CfZ7jOLYxK" +05/18/2018,Actors,@TheRealKMcKidd,"Clueless , as excited to find out as you are ! https://t.co/aXx7aaQBjD" +05/18/2018,Actors,@TheRealKMcKidd,Be Smart And Honest https://t.co/gKTTWx6fbr +05/18/2018,Actors,@TheRealKMcKidd,"Progressive , blended family. Might work https://t.co/qNvIcSJ3hx" +05/18/2018,Actors,@TheRealKMcKidd,Me too https://t.co/sm6yF47Ync +05/18/2018,Actors,@TheRealKMcKidd,"Nope , pretty much never https://t.co/zp0LGAgAf9" +05/18/2018,Actors,@TheRealKMcKidd,That’s how the cookie crumbles sometimes. #complications #workingtitle @greysabc https://t.co/S0RejPiZs5 +05/18/2018,Actors,@TheRealKMcKidd,"I think when it comes to doing the right thing- Owen shows up, it’s in his DNA to show up https://t.co/vNhCiw6RtM" +05/18/2018,Actors,@TheRealKMcKidd,I’m not sure teddy is in any mood to talk to Owen r now.... he messed up.. he messes up a LOT ! ;) https://t.co/8vk93KOi7h +05/18/2018,Actors,@TheRealKMcKidd,Too many to mention she is my sister https://t.co/AbNYusvbaw +05/18/2018,Actors,@TheRealKMcKidd,Her joy https://t.co/cp3xWOg8qi +05/18/2018,Actors,@TheRealKMcKidd,"I think it’s clear there emotions are drawing them closer again, it’s inevitable between those two. The rest .. it’… https://t.co/dPlMoyU87E" +05/18/2018,Actors,@TheRealKMcKidd,Just chilly - it worked so well for the scene and that moment https://t.co/o57LoNOQlu +05/18/2018,Actors,@TheRealKMcKidd,Hey !! https://t.co/Cycgl02LoV +05/18/2018,Actors,@TheRealKMcKidd,"It’s crazy! In a super fun way, it’s always most interesting to play characters who are under huge pressure in life… https://t.co/aXdpm3ayxf" +05/18/2018,Actors,@TheRealKMcKidd,@workinprgress Here ya go ! #onsofawatchingfinale #selfie @GreysABC https://t.co/MqCdcRTFDq +05/18/2018,Actors,@TheRealKMcKidd,Be careful what you wish for !!! https://t.co/RNzDbVQg64 +05/18/2018,Actors,@TheRealKMcKidd,I’ll get y’all one ;)) https://t.co/QRItLZfLNm +05/18/2018,Actors,@TheRealKMcKidd,I agree https://t.co/XMT8J1DsP7 +05/18/2018,Actors,@TheRealKMcKidd,He is sad So sad https://t.co/rf5xpODspd +05/18/2018,Actors,@TheRealKMcKidd,@GreysABC season finale ! Send me questions :)) +05/18/2018,Actors,@TheRealKMcKidd,I hope so too ! https://t.co/bQvJBBLBZe +05/17/2018,Actors,@TheRealKMcKidd,RT @ashleybreports: Tonight is the #GreysAnatomy Season 14 finale! Check out my exclusive interview with star @TheRealKMcKidd as he talks a… +05/14/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: Our guy Kevin @TheRealKMcKidd pics from @TheWrap photo shoot + +Article https://t.co/GAuVwKeZeS + +📷 @shannafisher +Creative Dir…" +05/14/2018,Actors,@TheRealKMcKidd,On this beautiful Mother’s Day evening... Welcome- little Aiden to… https://t.co/ZupUFnA9Si +05/11/2018,Actors,@TheRealKMcKidd,@iamlk kicking medical ASS ! To get this CU just perfect ;) haha @GreysABC https://t.co/TvkzQT7PqV +05/11/2018,Actors,@TheRealKMcKidd,@GreysABC wanna see a cool BTS in trauma room ?? +05/11/2018,Actors,@TheRealKMcKidd,Yes we do!! Surfs up! Let’s go all go ;) x https://t.co/3BZGgMrpAU +05/11/2018,Actors,@TheRealKMcKidd,Thx!! Sarah is my screen sister https://t.co/mRFnLHlOo2 +05/11/2018,Actors,@TheRealKMcKidd,RT @GreyAnatomy24x7: 'Grey's Anatomy' Star Kevin McKidd Talks Sarah Drew's Exit: 'Owen Hunt Is Going to Struggle' - SFGate https://t.co/HUT… +05/03/2018,Actors,@TheRealKMcKidd,Wow! 10 years ?? Unreal... was an honor Michelle. Let’s celebrate soon K x https://t.co/ZY0ZSRT1yV +05/01/2018,Actors,@TheRealKMcKidd,RT @FosterMore: A big thanks to @GreysABC for challenging traditional perceptions of foster care in a genuine and hopeful way. If you tuned… +04/27/2018,Actors,@TheRealKMcKidd,No ! I love acting too much :) https://t.co/VD5hzn61Hm +04/27/2018,Actors,@TheRealKMcKidd,I did https://t.co/fMGYnuMJ4L +04/27/2018,Actors,@TheRealKMcKidd,Beaches ! https://t.co/I4V90bCOtX +04/27/2018,Actors,@TheRealKMcKidd,Thx ! Enjoy the episode everyone ? https://t.co/xgw3wbQ3nR +04/27/2018,Actors,@TheRealKMcKidd,Fun fact - @jtimberlake song ‘Say Something’ tonight during surgery - such a great fit +04/27/2018,Actors,@TheRealKMcKidd,Her passion and sense of fun https://t.co/prslSK0uKS +04/27/2018,Actors,@TheRealKMcKidd,Leo!! Best on set baby EVER !! truly https://t.co/CDOb9kpvlF +04/27/2018,Actors,@TheRealKMcKidd,Scottish food ! https://t.co/Szm5Klkq2I +04/27/2018,Actors,@TheRealKMcKidd,Collaborating https://t.co/Vlso4U9Jn4 +04/27/2018,Actors,@TheRealKMcKidd,Hard one ! Surgery sequence !! https://t.co/5WTaMCi2G8 +04/27/2018,Actors,@TheRealKMcKidd,Around.. 22? I think https://t.co/wqhzEh7l9d +04/27/2018,Actors,@TheRealKMcKidd,He did indeed ! And it was great https://t.co/rpN4rzCrUS +04/27/2018,Actors,@TheRealKMcKidd,I begin #livetweeting @GreysABC now !!!! https://t.co/nagEuMCHur +04/27/2018,Actors,@TheRealKMcKidd,RT @Hols242: I am a foster parent. It is the most challenging and rewarding job in the whole world! I hope tonight’s @GreysABC episode will… +04/26/2018,Actors,@TheRealKMcKidd,Had a blast @TheWrap yesterday ! Thx everyone there !! Enjoy :) https://t.co/lU1qPpsxH3 +04/25/2018,Actors,@TheRealKMcKidd,Who that be ? ;) https://t.co/WMEubcScFA +04/24/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: Excited that our guy @TheRealKMcKidd is on @people @peopletv #chatter show answering questions today :) Tune in at https://… +04/24/2018,Actors,@TheRealKMcKidd,I am LIVE on @peopletv #chatter talking all things #GreysAnatomy. Use #chatter to ask me questions https://t.co/JrdIdNRuWw +04/24/2018,Actors,@TheRealKMcKidd,"RT @people: It's about to go down! Watch #chatter tonight at 5 pm PT/8 pm ET with @rocsidiaz, co-host @cherylburke, and #GreysAnatomy star…" +04/17/2018,Actors,@TheRealKMcKidd,Time in the canyons. #finale @greysabc ;) https://t.co/ZtZOGnrHHW +04/12/2018,Actors,@TheRealKMcKidd,@KMcKOnline @instagram Yah!!! +04/12/2018,Actors,@TheRealKMcKidd,Did it today ;) https://t.co/KISVDamBEz +04/11/2018,Actors,@TheRealKMcKidd,"Actually .. on left , Rosie ( cocker/J russel mix, on right Patch ( springer sp) center is Pippa - offspring of pat… https://t.co/wJNvW7igyB" +04/10/2018,Actors,@TheRealKMcKidd,Directing @GreysABC #1421 w partner in crime and badass DP #Ross. Matching stance ! https://t.co/VAIvs80chV +04/09/2018,Actors,@TheRealKMcKidd,@IrvineWelsh On ya go Shirley !!! +04/06/2018,Actors,@TheRealKMcKidd,This !!!@IamSandraOh :))) https://t.co/peJkGmCiSL +04/04/2018,Actors,@TheRealKMcKidd,RT @byshondaland: Who remembers Nurse Olivia? https://t.co/ZZgmG3ibGr +04/03/2018,Actors,@TheRealKMcKidd,Yes ! Go @Matt_Morrison ! https://t.co/uJG7jyiyj9 +04/02/2018,Actors,@TheRealKMcKidd,It’s true ;) https://t.co/SvAO35IivB +04/01/2018,Actors,@TheRealKMcKidd,Hey ! Such a long time since Coleman Rd ! You guys still love there :) https://t.co/BcitRMfXko +03/30/2018,Actors,@TheRealKMcKidd,RT @erfinchie: @TheRealKMcKidd made it look like a freaking movie and @KimRaver made it feel like a freaking dream. From Take One. #BTS #Gr… +03/30/2018,Actors,@TheRealKMcKidd,@GreysABC fans ! Help me decide ! Follow and suggest ! X https://t.co/Qd5AZ20a8w +03/30/2018,Actors,@TheRealKMcKidd,Tough one ! #overshareOwen https://t.co/QRkmTGZlxG +03/30/2018,Actors,@TheRealKMcKidd,Noticed !! https://t.co/n8dNApGLSz +03/30/2018,Actors,@TheRealKMcKidd,Oi!!!! https://t.co/zwSAqa9yey +03/30/2018,Actors,@TheRealKMcKidd,Thankyou https://t.co/XBZR63AxL3 +03/30/2018,Actors,@TheRealKMcKidd,Hi there !! https://t.co/oDDmYA24nV +03/30/2018,Actors,@TheRealKMcKidd,"@saulrubinek everyone ... #emmy nom , best supporting" +03/30/2018,Actors,@TheRealKMcKidd,"Maybe ... hard for people to take a step back from there own s**t sometimes , yknow ? https://t.co/tnJBzqkDRN" +03/30/2018,Actors,@TheRealKMcKidd,@EllenPompeo and #Scott NAILED IT!!! https://t.co/HmUlwmfk5C +03/30/2018,Actors,@TheRealKMcKidd,I doubt he would stab pigs now .. he’s grown out of that https://t.co/BXttktYBSc +03/30/2018,Actors,@TheRealKMcKidd,Thankyou https://t.co/6r2jdnrTBG +03/30/2018,Actors,@TheRealKMcKidd,The best ! https://t.co/hyyPEc4H4k +03/30/2018,Actors,@TheRealKMcKidd,I would like that https://t.co/KIX1c1ekQF +03/30/2018,Actors,@TheRealKMcKidd,That’s kinda the point https://t.co/Vd2nBCyQzt +03/30/2018,Actors,@TheRealKMcKidd,Being able to tell stories that move people till my last breath https://t.co/TzATzCSp1F +03/30/2018,Actors,@TheRealKMcKidd,"Start , just start — seek it out https://t.co/VDH4P0saFx" +03/30/2018,Actors,@TheRealKMcKidd,Always yes https://t.co/cVG6KJGQnb +03/30/2018,Actors,@TheRealKMcKidd,Sarah ... I can’t - special time filming this little piece of magic with you https://t.co/cx1QrZHiAa +03/30/2018,Actors,@TheRealKMcKidd,Be sad https://t.co/htbDgoBWuq +03/30/2018,Actors,@TheRealKMcKidd,Teddy Germany apartment ... take a bow and lap of honor #BrianHarms and everyone who made it ! Thankyou !!! +03/30/2018,Actors,@TheRealKMcKidd,Indeed .. https://t.co/SDihukXEof +03/30/2018,Actors,@TheRealKMcKidd,Louis Jordan playing in the teddy Owen scene by the fire ! Listen to Louis !! Makes life happy +03/30/2018,Actors,@TheRealKMcKidd,Our job is done - this is the point ... to FEEL something https://t.co/azuJSxGvhx +03/30/2018,Actors,@TheRealKMcKidd,Impulsive https://t.co/yRXSimoFGc +03/30/2018,Actors,@TheRealKMcKidd,Flawed https://t.co/C78GRZZFfU +03/30/2018,Actors,@TheRealKMcKidd,And the Iraq flashback episode https://t.co/CFSrtzSZgv +03/30/2018,Actors,@TheRealKMcKidd,"This one , by far https://t.co/CFSrtzSZgv" +03/30/2018,Actors,@TheRealKMcKidd,To act - all the teddy Owen scenes. To direct - Kepler and Levi https://t.co/UkL2pXvJyu +03/30/2018,Actors,@TheRealKMcKidd,Staying relaxed https://t.co/tQ99dcmH3u +03/30/2018,Actors,@TheRealKMcKidd,Watch and see https://t.co/3PAFV1hLEP +03/30/2018,Actors,@TheRealKMcKidd,6 hours on set 6 hours in editing. Now tweeting ;) https://t.co/c5i2odDB35 +03/30/2018,Actors,@TheRealKMcKidd,:) https://t.co/pwu3ftufd5 +03/30/2018,Actors,@TheRealKMcKidd,I think so . People do unexpected stuff sometimes. Wait and see https://t.co/WfYBD5HPSw +03/30/2018,Actors,@TheRealKMcKidd,I’m proud of it. Thx https://t.co/fU7JWSLIO4 +03/30/2018,Actors,@TheRealKMcKidd,"In total , 4 https://t.co/58A1ytAhnC" +03/30/2018,Actors,@TheRealKMcKidd,Look up ‘80/20 relationships’ https://t.co/M6Cso57ipz +03/30/2018,Actors,@TheRealKMcKidd,Ep 1421 https://t.co/w5XNtXiPx3 +03/30/2018,Actors,@TheRealKMcKidd,It was a blast https://t.co/PKBiBKxqrD +03/30/2018,Actors,@TheRealKMcKidd,Nice guy ! Bye ;) https://t.co/9PKpay9YHD +03/30/2018,Actors,@TheRealKMcKidd,I did ;) https://t.co/pVFBPNXz8B +03/30/2018,Actors,@TheRealKMcKidd,Hey folks ! Ep 1417! +03/30/2018,Actors,@TheRealKMcKidd,Love that set! love that actor ! One of the best scene partners in the business @GreysABC https://t.co/v4YIvT7Z8t +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Does this not look like the coziest scene ever? #GreysAnatomy https://t.co/8bDVhC3RL8 +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Mer out here saving lives #GreysAnatomy https://t.co/9GlMaEzR9X +03/30/2018,Actors,@TheRealKMcKidd,RT @GreysABC: ❤️ #GreysAnatomy https://t.co/clc5IbqbIq +03/30/2018,Actors,@TheRealKMcKidd,And @saulrubinek for best supporting ;) #takesavillage https://t.co/4z80ck5D7F +03/30/2018,Actors,@TheRealKMcKidd,I directed it - so yes ! https://t.co/4z80ck5D7F +03/30/2018,Actors,@TheRealKMcKidd,RT @duchovlet: Very nice @TheRealKMcKidd interview covering more than @GreysABC 👍👏✊✌ https://t.co/jcewt8zsD5 +03/30/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: I am deeply in love with tonight's episode of #GreysAnatomy + +Masterfully written and directed by @erfinchie and @TheRe…" +03/30/2018,Actors,@TheRealKMcKidd,RT @msdebbieallen: Tonight’s @GreysABC is a MUST see!!!💋 #GreysAnatomy https://t.co/naXdmPphrn +03/30/2018,Actors,@TheRealKMcKidd,Finch !! You beyond knocked this script out of the park! Was a true honor to help guide the process ;) @GreysABC https://t.co/SPnWPuluut +03/29/2018,Actors,@TheRealKMcKidd,"RT @sarahdrew: Tonight’s episode was one of my all time favorites! Beautifully written by the incomparable @erfinchie , directed by the ama…" +03/29/2018,Actors,@TheRealKMcKidd,Thx team trauma bud ! You n @saulrubinek killed it !! https://t.co/HsX03fbkxu +03/29/2018,Actors,@TheRealKMcKidd,RT @GreysABC: This just keeps getting better and better. #TGIT is all new TOMORROW! #GreysAnatomy https://t.co/r2P5P5CbFN +03/29/2018,Actors,@TheRealKMcKidd,"@GreysABC tonight, west coast , I WILL be #LiveTweet the episode I directed #1417 :) see ya then ! Kev" +03/28/2018,Actors,@TheRealKMcKidd,"RT @THR: |n Studio | #GreysAnatomy: @TheRealKMcKidd talks ""celebratory"" season 14 finale https://t.co/pNTToaDF8L https://t.co/m57qhz69kl" +03/28/2018,Actors,@TheRealKMcKidd,"RT @KMcKOnline: SNEAK PEEK 3 #GreysAnatomy 1417 ""One Day Like This"" / written by @erfinchie & directed by @therealkmckidd + +https://t.co/Gqi…" +03/28/2018,Actors,@TheRealKMcKidd,RT @GreysABC: 👀👀👀 All-new #GreysAnatomy this THURSDAY! https://t.co/8Py1LtrFpz +03/28/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: We're seeing double (Directors, that is)! #GreysAnatomy | 📷: @therealMCkidd (cc: @iJesseWilliams ) https://t.co/jdpAjFyDB7" +03/25/2018,Actors,@TheRealKMcKidd,RT @davidhogg111: I'm ready to change America and save lives are you? +03/25/2018,Actors,@TheRealKMcKidd,RT @RWitherspoon: I’m so proud of these students who are using their voices to speak Truth to Power. I support @AMarch4OurLives @Everytown… +03/25/2018,Actors,@TheRealKMcKidd,RT @byshondaland: Can't make it to the #MarchForOurLives? Here's how you can still help. https://t.co/X33jrtLzf4 +03/25/2018,Actors,@TheRealKMcKidd,"RT @JasonWGeorge: America, + +This is your #wakeupcall + +#marchforourlives +@barrett_doss @D_SAVRE @GiacomoKG @sean_m_maguire https://t.co/La…" +03/24/2018,Actors,@TheRealKMcKidd,RT @KMcKOnline: #NationalPuppyDay @TheRealKMcKidd https://t.co/mjTwg0ONAf +03/24/2018,Actors,@TheRealKMcKidd,RT @mckiddsoh: @TheRealKMcKidd happy #NationalPuppyDay ❤️ https://t.co/s9nL8sgHVw +03/23/2018,Actors,@TheRealKMcKidd,@GreysABC hey y’all ! Enjoying tonight’s all new Greys ??? :) +03/22/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: Before we save them, @Station19 has to rescue them. Watch the premiere of #TGIT's newest show THURSDAY, 9|8c, after #GreysAna…" +03/22/2018,Actors,@TheRealKMcKidd,"RT @GreysABC: ""The only rule is, there are no rules"" #GreysAnatomy is back on TONIGHT! https://t.co/he1xzVVBdU" +03/21/2018,Actors,@TheRealKMcKidd,"It’s not ‘my’ concert ..;) but I WILL be playing a few tunes w pals, Dan, Pat, Kira this Sunday 7pm @GMTheatre_org… https://t.co/dbH7M5saDy" +03/19/2018,Actors,@TheRealKMcKidd,Learning to sail with my best boy #weekendwarriors #fathersontime https://t.co/3sbwIUcR31 +03/16/2018,Actors,@TheRealKMcKidd,"Me n @iJesseWilliams , both directing our episodes on the same day ! You go Jesse !@GreysABC https://t.co/FP30zFFHDn" +03/14/2018,Actors,@TheRealKMcKidd,Go to my insta for video ;) +03/14/2018,Actors,@TheRealKMcKidd,"Nope, just last scene on my episode silly;) https://t.co/YCFen0Tuua" +03/14/2018,Actors,@TheRealKMcKidd,Nope https://t.co/boScrcXVyQ +03/14/2018,Actors,@TheRealKMcKidd,Hands up who wants see a vid of the moment @sarahdrew wrapped last scene on @GreysABC #1421 that I had honor to direct??;) +03/14/2018,Actors,@TheRealKMcKidd,"This scene we were shooting AS Sarah found out her amazing news. A truly lovely, lovely moment :) @KellyMcCreary… https://t.co/gCcaSptflo" +03/14/2018,Actors,@TheRealKMcKidd,@KellyMcCreary @GreysABC I forgot to include @sarahdrew tag :) oops +03/14/2018,Actors,@TheRealKMcKidd,"This scene we were shooting AS Sarah found out her amazing news. A truly lovely, lovely moment :) @KellyMcCreary… https://t.co/Mzp0CRrCA6" +03/14/2018,Actors,@TheRealKMcKidd,Sarah !!!!! You go go go GO!!! So proud xxxx https://t.co/lvx5I5f7Ja +03/13/2018,Actors,@TheRealKMcKidd,"@greysabc bake off fun and nonsense! Me, @ellenpompeo and debs on a sugar rush , post judging ! https://t.co/WthE95ierX" +03/13/2018,Actors,@TheRealKMcKidd,Yes we do ! https://t.co/VZOvXAmqA3 +03/12/2018,Actors,@TheRealKMcKidd,"RT @JChambersOnline: It's the Great #GreysAnatomy Bake Off! 🍰🥧🍪 + +Judges: @7JustinChambers @therealjpickjr @EllenPompeo @TheRealKMcKidd @msd…" +03/12/2018,Actors,@TheRealKMcKidd,First prize winner !! And @TonyTphelan presenting ;) https://t.co/Fhk60uhzZy +03/12/2018,Actors,@TheRealKMcKidd,And the winners are ..!! :)) https://t.co/sW5XToYCPm +03/12/2018,Actors,@TheRealKMcKidd,@greysanatomy bake off ;)) https://t.co/fZAQHrzw64 +03/08/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: Someone's child died today. + +Someone's child died. + +At school. + +Don't go numb to this. + +Fight like hell. + +#NeverAg…" +03/05/2018,Actors,@TheRealKMcKidd,RT @tinybuddha: Every day is a new beginning. Take a deep breath and start again. https://t.co/2eKacIUg57 +03/03/2018,Actors,@TheRealKMcKidd,My best Bison impression.... ;) https://t.co/kpus255p7L +03/03/2018,Actors,@TheRealKMcKidd,My three wet pups are the best! Been thru thick and thin together - shot by pal @IainR0bertson https://t.co/dNsk6iDazd +03/03/2018,Actors,@TheRealKMcKidd,This.. my mum and dad. Central California. No filter...Into there sunset https://t.co/9MIsTQKktS +03/03/2018,Actors,@TheRealKMcKidd,Blast from past! Me- 1st year drama student. Circa 1992-93. Note Walkman headphones and ‘actor scarf’ https://t.co/LmemgjrsyD +03/03/2018,Actors,@TheRealKMcKidd,Driftwood salvage #Pfeifferbeach #BigSur https://t.co/SVZpwMhDaw +03/02/2018,Actors,@TheRealKMcKidd,Great cause Rebecca ! https://t.co/NypB3xdE5C +03/02/2018,Actors,@TheRealKMcKidd,RT @GreysABC: RT to welcome @Station19 to the #TGIT family! +03/02/2018,Actors,@TheRealKMcKidd,RT @shondarhimes: People. TONIGHT is the night. Grab your popcorn and wine because it’s going to be good. #TGIT #TGITCrossover +02/28/2018,Actors,@TheRealKMcKidd,RT @RWitherspoon: I’m encouraging my kids & all children in this country to March for Our Lives. We have let their schools & communities be… +02/28/2018,Actors,@TheRealKMcKidd,"RT @KristaVernoff: Dear #Teenagers - + +I was called a ""rabble-rouser"" in H.S. bc I would not stay silent in the face of injustice. + +The ad…" +02/27/2018,Actors,@TheRealKMcKidd,RT @GreysABC: Get your heart monitors ready for the #TGITCrossover Event this THURSDAY starting with #GreysAnatomy at 8|7c on ABC. https://… +02/25/2018,Actors,@TheRealKMcKidd,RT @krassenstein: BREAKING: United Airlines has just announced that they have notified the NRA that they will no longer offer a discounted… +02/25/2018,Actors,@TheRealKMcKidd,RT @ABC: A growing number of companies have decided to sever corporate ties with the National Rifle Association since the deadly school sho… +02/25/2018,Actors,@TheRealKMcKidd,"‘Darkness at Noon’, Arthur Koestler . Just begun but it’s very good https://t.co/1CTDqwWMd5" +02/25/2018,Actors,@TheRealKMcKidd,And now.. this! Book reading by wood fire in Big Sur ? Happening ;) https://t.co/vKjRsDLRGy +02/25/2018,Actors,@TheRealKMcKidd,#bigsursunset people ! Pretty special https://t.co/wAOTWTUnG0 +02/25/2018,Actors,@TheRealKMcKidd,"RT @BeauWillimon: As of today, @Emma4Change now has more followers than the @NRA. It happened in less than two weeks. + +This is a movement.…" +02/25/2018,Actors,@TheRealKMcKidd,"RT @krassenstein: The following companies have cut ties with the NRA over the last 24 hours. + +- Enterprise +- Wyndham +- Metlife +- Hertz +- B…" +02/25/2018,Actors,@TheRealKMcKidd,Quite a reading spot ... #bigsursunset https://t.co/qvNRrlEiB7 +02/24/2018,Actors,@TheRealKMcKidd,Big Sur this morning . So beautiful. https://t.co/h9bePPhU3H +06/30/2018,Actors,@KatieHeigl,We missed you @RickHoffman_ but thank you for the amazing dinner recommendation! Let’s go every Friday night from h… https://t.co/eWIkEf60RI +06/30/2018,Actors,@KatieHeigl,Had a much needed date night at an incredible restaurant last night with @joshbkelley Sometimes it’s nice to get ou… https://t.co/mV7YOywnWq +06/26/2018,Actors,@KatieHeigl,"When a cat is rescued, a new furry best friend is made. And since your #LitterForGood support got Friends for Life… https://t.co/52r5QQRKnI" +06/25/2018,Actors,@KatieHeigl,"I discovered @FourBlocksSouth and their gorgeous home decor items exploring Toronto, my new home away from home! I… https://t.co/4CqeU2gkcK" +06/23/2018,Actors,@KatieHeigl,@JRBEASLEY2 @hvnlydays It is! 😀 +06/23/2018,Actors,@KatieHeigl,Adalaide spent a week in dance camp so tonight she was our choreographer for a spontaneous dance party in the kitch… https://t.co/JWubu7bH3k +06/22/2018,Actors,@KatieHeigl,"RT @hvnlydays: Love coffee? Get your caffeine fix with @KatieHeigl's delicious new obsession Matcha Chai Latte. Read all about it in ""Sweet…" +06/20/2018,Actors,@KatieHeigl,Sunset in Toronto. ❤️ #nofilternecessary A heavenly moment captured by my heavenly husband @JoshBkelley that made i… https://t.co/R2YKPnk8SF +06/18/2018,Actors,@KatieHeigl,"I meant @hvnlydays, When will Twitter add that edit function..." +06/18/2018,Actors,@KatieHeigl,Subscribe to https://t.co/RN3HXEzFyO to be the first to get my list! And follow @thoseheavenlydays for more ways t… https://t.co/wm8nGbJhW8 +06/18/2018,Actors,@KatieHeigl,"...exhausting even, but you’re happiness is worth it! 😏 Stay tuned for a new blog series listing all the places… https://t.co/cSGFYOpfPN" +06/18/2018,Actors,@KatieHeigl,Got off work early on @suits_usa and decided to try the highly touted mojito at #sassafrazrestaurant in Toronto. I… https://t.co/MHEUJ7elkD +06/17/2018,Actors,@KatieHeigl,Happy Father’s Day to a couple of my favorite fellas! Grateful doesn’t even begin to cover it but grateful I am for… https://t.co/g2HLvOR6DS +06/16/2018,Actors,@KatieHeigl,This sweet girl made us the most delicious French toast this morning. When did she become grown up enough to do suc… https://t.co/gUgwl17Zgn +06/13/2018,Actors,@KatieHeigl,@MITalle @Suits_USA @RickHoffman_ @GabrielMacht @sarahgrafferty @DuleHill @AmandaSchull Thanks! For sure. I think everyone will. +06/13/2018,Actors,@KatieHeigl,Can’t wait to see where the chips fall this season on @Suits_USA ! So excited to be part of a show I LOVE!! Thanks… https://t.co/vrhwObjSlM +06/13/2018,Actors,@KatieHeigl,@washington_nat Sure is. My first movie - a long time ago! +06/12/2018,Actors,@KatieHeigl,"Cats Pride has promised 1,574,112 pounds of donated litter so far through the @CatsPride #LitterForGood program. Am… https://t.co/W4FxS1kniy" +06/08/2018,Actors,@KatieHeigl,"She knows her worth and is empowered by her value. +She’s got heart and soul and will show you both if you’ve earned… https://t.co/lggfPvZ1zK" +06/08/2018,Actors,@KatieHeigl,"The best part of BEING Samantha Wheeler, is BELIEVING I’m Samantha Wheeler! Girls got me feeling #empowered She nev… https://t.co/E6EFKraJpO" +06/04/2018,Actors,@KatieHeigl,"...a new job & find myself with a new trailer. With a little, or rather a LOT of help from my friend Lisa we were a… https://t.co/usJ2em54EK" +06/04/2018,Actors,@KatieHeigl,Today on the https://t.co/SQ2cAcHZiP is a post devoted to my TV trailer makeover. My trailer on set is where I spen… https://t.co/RGnAi6lmat +05/28/2018,Actors,@KatieHeigl,I just love browsing for artisan treasures - beautiful items made with skill & craft that make wonderful gifts or t… https://t.co/xONTOaO3PZ +05/27/2018,Actors,@KatieHeigl,@7JustinChambers @Suits_USA @EW ❤️ +05/27/2018,Actors,@KatieHeigl,https://t.co/0urK59AYRC +05/27/2018,Actors,@KatieHeigl,Been having a blast exploring some of the awesomeness of Toronto! Like #brickworksmarketplace. The best part of cit… https://t.co/sood2wuc0F +05/25/2018,Actors,@KatieHeigl,@NormanGoldenll @Suits_USA @EW Thank you! 🙂 +05/25/2018,Actors,@KatieHeigl,"So excited to share that I’ll be making my @Suits_USA debut in the season premiere on Wednesday, July 18th at 9/8c.… https://t.co/ekFaHnoSs8" +05/24/2018,Actors,@KatieHeigl,Remembering this moment from the upfronts with @SterlingKBrown & @KChenoweth. Two people I'm very fond of personall… https://t.co/ldYN5Xyaed +05/23/2018,Actors,@KatieHeigl,"“Truckloads” of litter. Literally! Thanks to your support, @IndCatSociety received 4.5 PALLETS of donated litter fr… https://t.co/3lICukwO3j" +05/22/2018,Actors,@KatieHeigl,Spent the weekend with family in Buffalo. Just a two hour drive from our home away from home in Toronto. ITINERARY:… https://t.co/l3wk19XOU8 +05/22/2018,Actors,@KatieHeigl,RT @SmithSmitherrs: Great time with @KatieHeigl on @Suits_USA #Season8 https://t.co/tnCCPlz3bl +05/17/2018,Actors,@KatieHeigl,...apple blossoms with two incredibly photogenic daughters and one cranky son. Next came gelato which was enjoyed a… https://t.co/WD3HzCxoUY +05/17/2018,Actors,@KatieHeigl,...disappointment that my mind was not properly read and it ensures my day is exactly what I hoped for!… https://t.co/nejRftmQZY +05/17/2018,Actors,@KatieHeigl,My Mother’s Day was perfect this year. Let me tell you why...because I told @JoshBkelley and the kids exactly what… https://t.co/Dw7OtrN7xk +05/16/2018,Actors,@KatieHeigl,You know what’s really really fun? Being 16 months old and realizing that you can do this super awesome thing calle… https://t.co/lr4pywUaT7 +05/15/2018,Actors,@KatieHeigl,"Last Hope Cat Kingdom picked up donated litter from @CatsPride, thanks to your nominations & support. It's already… https://t.co/ntVK6RMPk2" +05/15/2018,Actors,@KatieHeigl,RT @JoshBkelley: While katie got her glam on for the #nbcuniversal #upfronts I took… https://t.co/H1OAFhuCzq +05/15/2018,Actors,@KatieHeigl,In NY for @NBCUniversal upfronts with @joshbkelley Fully took advantage of not having the kids with us & snuck off… https://t.co/lf3A2TuWVl +05/14/2018,Actors,@KatieHeigl,"""As mothers and daughters, we are connected with one another. My mother is the bones of my spine, keeping me straig… https://t.co/zF0SX5eWXp" +05/14/2018,Actors,@KatieHeigl,loving and kind and everything I hope to be someday. Talk about leading by example... Happy Mother’s Day Mom. +05/14/2018,Actors,@KatieHeigl,...the night about each of her children’s well being. She believes in God despite being disappointed by him a time… https://t.co/pwyXOeAvGX +05/14/2018,Actors,@KatieHeigl,...a perforated ulcer. She laughs easily and with great joy. She never forgets to tell you she LOVES you. She never… https://t.co/uwD2HtqI81 +05/14/2018,Actors,@KatieHeigl,This is my mother. She is extraordinary. I’m not just saying that because it’s Mother’s Day and she’s my mother. It… https://t.co/0o7G6rRHKv +05/12/2018,Actors,@KatieHeigl,"...in a fruity, creamy smoothie and shrugging casually when they ask why they taste salad...🤔😏❤️" +05/12/2018,Actors,@KatieHeigl,"We, the Kelley’s, declare this day Super Smoothie Saturday and on this day we will imbibe delicious, nutritious and… https://t.co/XzA1kTGqns" +05/11/2018,Actors,@KatieHeigl,Sometimes morning snuggles include a baby fist to the face...but it’s worth it. #thoseheavenlydays are made by forc… https://t.co/wxjjqW5zrW +05/10/2018,Actors,@KatieHeigl,This was 2 years ago for a post on a goodies to give mom for Mother’s Day. Crazy how short my hair was! Crazier tha… https://t.co/C6dkQdr6Gz +05/09/2018,Actors,@KatieHeigl,...I’m not sure which of these I like better...the cool couple version...or the can’t keep it together one. I guess… https://t.co/4rgjvojKco +05/09/2018,Actors,@KatieHeigl,Got off work on @suits_usa early and was able to steal @joshbkelley away to have a leisurely lunch with me at a gor… https://t.co/Lgd8EGwYkI +05/07/2018,Actors,@KatieHeigl,@sophie75756675 Hope you had a great birthday! ❤🎂🍾 +05/07/2018,Actors,@KatieHeigl,"I love everything, everything about this moment! Except that I’m standing over them taking a photo instead of layin… https://t.co/69g6i72WMm" +05/06/2018,Actors,@KatieHeigl,"...existence and filled every nook, cranny and corner of my souls with the most profound love. I wish I had an e… https://t.co/OPT6cXUdkX" +05/06/2018,Actors,@KatieHeigl,When @JoshBkelley and the girls arrived yesterday afternoon I cried. It has been far too long since I held my perfe… https://t.co/Y391U7VJvF +05/05/2018,Actors,@KatieHeigl,The girls made a pit stop in DC on their way to Toronto. @joshbkelley got this great shot at the Washington Monumen… https://t.co/TDFIZ82ztp +05/04/2018,Actors,@KatieHeigl,Can you tell I just had a manicure? 😏 So deeply in love with this super nude gel polish I just had to show it off!… https://t.co/o4UgVBtGrl +05/03/2018,Actors,@KatieHeigl,"...and text, drink and text...basically just don’t do anything else while texting! Thanks @KeithFollett for the gen… https://t.co/LQ0GsZdzEL" +05/03/2018,Actors,@KatieHeigl,Twisted my ankle at work a couple of weeks ago...trying to walk down stairs and text at the same time. Let the fact… https://t.co/IdrMzWZL4i +05/02/2018,Actors,@KatieHeigl,❤️ Simple joys are the best! ❤️ #thoseheavenlydays are full of easy laughs and simple pleasures! For more of Those… https://t.co/CBoMAahZJI +05/01/2018,Actors,@KatieHeigl,Every dollar shelters save can go directly towards helping more cats. Since you've already raised 1039000 POUNDS of… https://t.co/XpLb8whAuJ +04/30/2018,Actors,@KatieHeigl,Being a boss! #SmanthaWheeler has a badass office that I am thoroughly enjoying pretending is mine! @Suits_USA… https://t.co/ZPo5D6DNOa +04/28/2018,Actors,@KatieHeigl,@Orsi24 🍾Happy Anniversary! 🍾 +04/28/2018,Actors,@KatieHeigl,So grateful to all my girls for making their way to Toronto to keep me company until the rest of my brood gets here… https://t.co/tC2yRoJF0D +04/28/2018,Actors,@KatieHeigl,"Touring Toronto with my girl Tasia Steffensen. We’ve had the perfect weekend imbibing lots of pink drinks, hitting… https://t.co/yOrCI8RqQU" +04/27/2018,Actors,@KatieHeigl,"Follow @hvnlydays and check out weekly finds that make my days even more heavenly! +#thoseheavenlyfinds" +04/27/2018,Actors,@KatieHeigl,When your iPhones face recognition feature won’t work just cause you’ve got a mud mask on... #thoseheavenlydays inc… https://t.co/AZnG6jYomZ +04/26/2018,Actors,@KatieHeigl,"I have such great kids...which is why I bought myself this mug. 😏 +#thoseheavenlydays are all about parenting with c… https://t.co/igQnXJS5ba" +04/25/2018,Actors,@KatieHeigl,"Go Mapleleafs!! You’ve got two new fans root root rooting for the home team! +#thoseheavenlydays include a win from… https://t.co/I8Ma4HWymr" +04/22/2018,Actors,@KatieHeigl,"...people when they feel seen, heard and valued. When they can give and receive without judgement” Thank you for ma… https://t.co/Mx3w6YIsWM" +04/22/2018,Actors,@KatieHeigl,"Maybe we have...just a little...but our sisterhood remains beautifully, profoundly intact and I could not be more i… https://t.co/pqsz5xNt9b" +04/22/2018,Actors,@KatieHeigl,some of us have raced off on our paths post high school and lost contact but we have all recently reconnected and t… https://t.co/gl5JdwYsQA +04/22/2018,Actors,@KatieHeigl,"...traffic and leaving their families just to spend a couple of days with me in Toronto. There is nothing, and I me… https://t.co/ISFebph3ZY" +04/22/2018,Actors,@KatieHeigl,Just had a soul renewing long weekend with my high school girlfriends. A few were missing and they were deeply miss… https://t.co/QeaA46N7Cd +04/18/2018,Actors,@KatieHeigl,"#reunitedanditfeelssogood ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ +#thoseheavenlydays are brighter and better with my children! O… https://t.co/OnoGihLTBD" +04/17/2018,Actors,@KatieHeigl,My two favorite fellas just landed in Toronto & I’m peeing my pants with excitement!! It’s been TOO LONG!! Thank yo… https://t.co/Q4SdRASUDy +04/17/2018,Actors,@KatieHeigl,"Amazing! After Tennessee River Rescues received donated litter through @CatsPride’s Litter for Good program, they w… https://t.co/mKOGwhwfPm" +04/16/2018,Actors,@KatieHeigl,If you’re in the midst of an endless winter too or just in the mood for some biscuit goodness (sorry that sounded a… https://t.co/39amIwKNNf +04/16/2018,Actors,@KatieHeigl,"Oh by the way, new post up on the blog detailing @joshbkelley and his deliciously easy and decedent homemade biscui… https://t.co/onkYYSMnsv" +04/16/2018,Actors,@KatieHeigl,All by myself...don’t wanna be all by myself anymore...🎤🎶 Oh me? I’m just hanging...in Toronto...in the freezing ra… https://t.co/MclQ45vNJp +04/13/2018,Actors,@KatieHeigl,Missing this beauty so hard right now...thanks @joshbkelley for the gorgeous pics of my little model! ❤️❤️❤️❤️❤️❤️… https://t.co/3w8sJLJabi +04/12/2018,Actors,@KatieHeigl,Forgot to mention my new post on https://t.co/SQ2cAcHZiP. It's all about the transition I’ve had to make from stay… https://t.co/azQebCUiFO +04/11/2018,Actors,@KatieHeigl,...for never ever letting me down or giving up on me! I love you more than I can even properly express and you are… https://t.co/LL7QTY4Qe3 +04/11/2018,Actors,@KatieHeigl,I’m a day late and a dollar short but I HAD to post in honor of #nationalsiblingday and let the world know my siste… https://t.co/qIZKJfaT86 +04/10/2018,Actors,@KatieHeigl,Day 2 on the set of @suits_usa getting my hands wrapped for a kickboxing scene. My character #SamanthaWheeler is no… https://t.co/OTCsBtvEA7 +04/04/2018,Actors,@KatieHeigl,It is this extraordinary creatures birthday. Adalaide Marie Hope Kelley is many many wonderful and perfect things!… https://t.co/rHVjvs72Tn +04/01/2018,Actors,@KatieHeigl,My Easter Crew! Miss this bunch like crazy but incredibly grateful for FaceTime! Little man doesn’t understand when… https://t.co/OXJawSrvgf +03/30/2018,Actors,@KatieHeigl,@JuliaKayPorter Pattern info is in an earlier post - the link to it is at the end of the text in the article you re… https://t.co/ihaoy2oxi5 +03/30/2018,Actors,@KatieHeigl,#suitsfans guess where I am!!!! Geeking out in #LouisLitts office on the set of Suits in Toronto!! I’m pretty damn… https://t.co/njV85HFNU1 +03/28/2018,Actors,@KatieHeigl,"Find out how @catspride is Changing Litter for Good®, helping shelter cats across the country. Watch this video wit… https://t.co/fo8FTkiYpY" +03/24/2018,Actors,@KatieHeigl,"I know it’s a bit last minute but... #happynationalpuppyday from me and my besties! +#thoseheavenlydays are full of… https://t.co/oqLtsfPGYU" +03/24/2018,Actors,@KatieHeigl,@kayla34919988 ❤ +03/22/2018,Actors,@KatieHeigl,"Sharing is caring! 😳😂 +#thoseheavenlydays include a loyal companion made even more so with cheese bribes! https://t.co/L8YB21wkQm" +03/20/2018,Actors,@KatieHeigl,@Vickiej3 Yes you do. I'm super excited to be heading to Toronto soon to shoot some @Suits_USA +03/20/2018,Actors,@KatieHeigl,What do you think I can pair this coat with?! I’d love some suggestions!! +03/20/2018,Actors,@KatieHeigl,Ok so here’s another look I put together for my trip. I adore this @katespadeny #madisonavecollection coat but I’ve… https://t.co/grN5lpa5pe +03/19/2018,Actors,@KatieHeigl,Spent the weekend putting together looks and trying to pack for an upcoming work trip to LA and then straight to 6… https://t.co/TBPAMOz2dU +03/17/2018,Actors,@KatieHeigl,A couple of my favorite smiles ❤️❤️ @joshbkelley #thoseheavenlydays https://t.co/q5CqUPlwwP +03/16/2018,Actors,@KatieHeigl,“Hi!” 👋 Happy Friday Friends! Part two of my favorite baby finds is up now on https://t.co/SQ2cAcHZiP check it out… https://t.co/7Hg1ttxsWE +03/14/2018,Actors,@KatieHeigl,Sitting on a lawn overlooking the ocean with a splashy sunset makes feeling joyful pretty easy. But last night sitt… https://t.co/Yj3aWrYeCv +03/14/2018,Actors,@KatieHeigl,"Now home in wintery UT the whole trip feels like just a dream. The beauty of the experience, and there was a lot of… https://t.co/Dwg215jdb8" +03/14/2018,Actors,@KatieHeigl,We celebrated our last night in Mexico with a white party on the lawn overlooking the ocean. What a truly spectacul… https://t.co/wQBWoVNSIP +03/13/2018,Actors,@KatieHeigl,@wecantstwop @catspride Happy belated birthday! Hope you had a wonderful day. 🎂❤️ +03/13/2018,Actors,@KatieHeigl,"That time I rode in a green van and nearly adopted 30 cats. 😍Check out this video with me and Dan Jaffee, head of… https://t.co/HkPc4dY4qA" +03/11/2018,Actors,@KatieHeigl,Every parent has a few favorite baby products they can't live without - I'm no exception! Items that make life a li… https://t.co/xDsUUDeTE1 +03/07/2018,Actors,@KatieHeigl,https://t.co/78Y9dGiCMQ +03/07/2018,Actors,@KatieHeigl,https://t.co/Ke4QCQBUkv +03/07/2018,Actors,@KatieHeigl,Mis Amores...❤️❤️❤️❤️❤️❤️ #thoseheavenlydays https://t.co/o9d8I4PHb7 +03/05/2018,Actors,@KatieHeigl,https://t.co/zxZZ4ezN0W +03/05/2018,Actors,@KatieHeigl,https://t.co/zovzmmFLDw +03/05/2018,Actors,@KatieHeigl,"#thoseheavenlydays are plentiful in this extraordinarily beautiful, peaceful serene spot in Mexico. I may never lea… https://t.co/EwLChOV7RG" +03/03/2018,Actors,@KatieHeigl,https://t.co/ok9XX62flN +03/03/2018,Actors,@KatieHeigl,https://t.co/oNUjAsE4Mj +03/03/2018,Actors,@KatieHeigl,From ❄️ to 🌞 First family vacation in two years...man am I grateful to be here! #thoseheavenlydays are sun soaked… https://t.co/99r8fBev4t +02/27/2018,Actors,@KatieHeigl,How can you help save millions of shelter cats? One green jug at a time! Cat's Pride donates a pound of litter for… https://t.co/VqHyaM3uw6 +02/27/2018,Actors,@KatieHeigl,@sarfatishelley Happy belated birthday! 🙂 Hope you had a wonderful day. ❤️🎂 +02/27/2018,Actors,@KatieHeigl,@mariaelena726 They grow up way too fast! Can scarcely believe she is 9 already. +02/27/2018,Actors,@KatieHeigl,"This girls got the greatest giggle on the planet earth. I live to make her laugh! ❤️❤️❤️❤️ +#thoseheavenlydays are f… https://t.co/wxnNhFFDoc" +02/24/2018,Actors,@KatieHeigl,"This boy is taking Cheerio munching to the next level. 😏👶🏼❤️ +#thoseheavenlydays https://t.co/dYcaBpus0a" +02/22/2018,Actors,@KatieHeigl,#thoseheavenlydays are all about making a positive difference in another beings life. #hourglassunderground +02/22/2018,Actors,@KatieHeigl,Hourglass Underground provides young girls in foster care with a perfect fitting bra for Prom! Head to… https://t.co/Rps91Uqng1 +02/22/2018,Actors,@KatieHeigl,Another shot in my underwear. I realize it’s starting to feel gratuitous but this ones for a good cause! On… https://t.co/gxpvxUqS0n +02/21/2018,Actors,@KatieHeigl,Anybody in LA this weekend feel like stepping out with your kiddos for a wonderful cause?! I really really hope so!… https://t.co/bE42JUmXQL +02/20/2018,Actors,@KatieHeigl,Finally finished a couple of knitting projects! Ponchos and socks...perfect cozies for our winter wonderland temper… https://t.co/sL9cqCVw0U +02/19/2018,Actors,@KatieHeigl,"work to snap back into shape but it is time to make the strength, fitness and overall health of my body a priority… https://t.co/XleKNFdOOh" +02/19/2018,Actors,@KatieHeigl,"I won’t lie, the workouts are real ass kickers but the progress I’ve made in only 5 short weeks has kept me motivat… https://t.co/7X0qS1nY7u" +02/19/2018,Actors,@KatieHeigl,it out. I found a fantastic app called #sweat that features several different #bbg programs you can choose from and… https://t.co/32FVvRFnzZ +02/19/2018,Actors,@KatieHeigl,under that belly somewhere! I was wholly and totally inspired by Miss @rachparcell and the before and after pics sh… https://t.co/8paTDRh81i +02/19/2018,Actors,@KatieHeigl,"Anyway, I have a beach vacation coming up, a new job I start filming in April and my deep desire to feel fit, stron… https://t.co/0hOYmB8U8f" +02/19/2018,Actors,@KatieHeigl,The second pic was taken almost a full year later and the last pic was taken this weekend. I wish I had a few from… https://t.co/9jEIx5u0NH +02/19/2018,Actors,@KatieHeigl,It’s been almost 14 months since Joshua Jr was born and it has taken me about that long to really get back in shape… https://t.co/lISixwM7aX +02/16/2018,Actors,@KatieHeigl,Adalaide Marie meditating behind a row of wild animal figurines...I have no idea why but I’m into it! Thanks… https://t.co/FVnBsRhURR +02/15/2018,Actors,@KatieHeigl,"RT @richiefrieman: Hey, @SXMTheHighway @stormewarren @buzzbrainard will you please play on repeat, @JoshBkelley new song/video ""Loves You L…" +02/15/2018,Actors,@KatieHeigl,❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ #thoseheavenlydays https://t.co/b13WV1Iudz +02/14/2018,Actors,@KatieHeigl,"For all those bakers out there looking for a last minute, and I mean LAST minute, gift idea for your Valentine's Da… https://t.co/NCzwpxKa4H" +02/14/2018,Actors,@KatieHeigl,I’m a little biased but I think it’s the sh*t! HAPPY VALENTINES DAY EVERYONE!! ❤️😍❤️😍 +02/14/2018,Actors,@KatieHeigl,If you’d like to hear said song and see said glorifying video be sure to check out Josh's new single #lovesyoulikeme https://t.co/UgpmN7VUSi +02/14/2018,Actors,@KatieHeigl,"Me: Ummm...nope. That oughta do. Oh and, ummm...is there anything you might like for Valentines Day? Maybe a box of… https://t.co/yiLFoZBvRv" +02/14/2018,Actors,@KatieHeigl,"""@JoshBkelley: Hey honey is there anything you’d like for Valentines Day, I mean besides the song I wrote for you a… https://t.co/QPv0M8K48i" +02/14/2018,Actors,@KatieHeigl,Can't wait for this! Don't forget to tune in! #ABC2020Romance https://t.co/D6Qfg3YvzB +02/13/2018,Actors,@KatieHeigl,@alana452 @ABC2020 Thanks - yes it is. We shot up here in Utah. 🙂 +02/13/2018,Actors,@KatieHeigl,Had an absolute blast hosting tonight’s 20/20 romance special! Spend an afternoon talking about my favorite film ge… https://t.co/l7eZJBLFdv +02/13/2018,Actors,@KatieHeigl,Help save millions of shelter cats just by sharing this video & visiting https://t.co/ywYQR3dlD8! Watch me with… https://t.co/hqoo14BQa0 +02/13/2018,Actors,@KatieHeigl,@kradwkbw Close! About 30 minutes from Park City. 😃 +02/13/2018,Actors,@KatieHeigl,RT @ABC2020: Why do you love romantic movies? @KatieHeigl explains why she enjoys watching couples fall in love on the big screen. Katherin… +02/12/2018,Actors,@KatieHeigl,Why is the chubby weight of a baby such a joy maker?! I can not get enough of squeezing on this kids delicious ro… https://t.co/S8D6xGDK6q +02/11/2018,Actors,@KatieHeigl,@GreisenErika Thank you so much! ❤ +02/10/2018,Actors,@KatieHeigl,@alana452 Yes all of them! 😀😂 +02/10/2018,Actors,@KatieHeigl,One of them found his home with me...meet the newest member of the Kelley family Sergeant General Major Sir. Named… https://t.co/sPjnxLdVQD +02/10/2018,Actors,@KatieHeigl,My @JasonHeiglFound took 12 of the older dogs who needed more medical care. I’m thrilled to say that as of today al… https://t.co/YArAvCz1eo +02/10/2018,Actors,@KatieHeigl,"The @animalfndlv swiftly stepped in, got the dogs medical care and assessed each one. They did a phenomenal job car… https://t.co/7m21PXW5kf" +02/10/2018,Actors,@KatieHeigl,A couple of months ago a UHaul truck was found abandoned by the side of the road in Las Vegas. When police officers… https://t.co/QJKvauTOUa +02/08/2018,Actors,@KatieHeigl,RT @ABC2020: What really happened behind-the-scenes of the biggest movie moments? Join @KatieHeigl​ and the iconic stars of romantic movie… +02/08/2018,Actors,@KatieHeigl,"Our annual ""Night Before"" bash made celebrating the start of 2018 a much more chilled experience. 🍷🍾 Tomorrow on… https://t.co/cbag571BdZ" +02/05/2018,Actors,@KatieHeigl,Current mood...gazing at the heavens just trying to figure it all out. I’m getting there...every day a little close… https://t.co/5DSq85cWIs +02/02/2018,Actors,@KatieHeigl,"Don’t really have the words to describe how much @joshbkelley new single means to me, but I’ll try! I am alight in… https://t.co/O6tDVUNwQo" +02/01/2018,Actors,@KatieHeigl,@NikkyBriggs1 Thank you! I am very curious about that myself. +02/01/2018,Actors,@KatieHeigl,@twin278 Yes you should! 😀 +02/01/2018,Actors,@KatieHeigl,@ArianaChristod1 @Suits_USA Me too! +02/01/2018,Actors,@KatieHeigl,@valedest93 Yes! 💗 +02/01/2018,Actors,@KatieHeigl,I JUST GOT LITT UP!!! For anyone who doesn’t know what that means... start binging #Suits ASAP!! I could not be mor… https://t.co/g9NelgGxge +01/30/2018,Actors,@KatieHeigl,It is the love of my life @joshbkelley 's birthday today and he’s about to get on a plane and travel to Europe to p… https://t.co/senWJpcxd3 +01/29/2018,Actors,@KatieHeigl,A rare moment when Gracie feels calm enough to sit in my lap and let me love her. If you saw my #savinggrace video… https://t.co/SBg7HQabYD +01/28/2018,Actors,@KatieHeigl,@wecantstwop @HouseofHerrera @breaksprison Happy belated birthday! ❤🎂🍾 +01/26/2018,Actors,@KatieHeigl,"Another great shot by my niece! I’m telling you, get your teenager a camera - make them earn their keep 😉 And up no… https://t.co/dG5WEClG1C" +01/25/2018,Actors,@KatieHeigl,"Over 3 million cats enter our shelters every year. Over half of them are euthanized. Learn how you can help, and no… https://t.co/oHR0lKRVSG" +01/23/2018,Actors,@KatieHeigl,We gave my niece a camera for Christmas. Now I make her do all my photo shoots for the blog...the gift that just ke… https://t.co/IlPVq47Itq +01/21/2018,Actors,@KatieHeigl,Oh and I found the most delicious small batch jam on #Etsy. For a link and 9 more fantastic artisan finds check out… https://t.co/bKuLLCDyu2 +01/21/2018,Actors,@KatieHeigl,"Sunday morning traditions. Sleeping in late, snuggles in bed, and @joshbkelley famous homemade biscuits. Famous cau… https://t.co/lEa44pDSHp" +01/20/2018,Actors,@KatieHeigl,Check it out you guys! ❤️ https://t.co/x6i5mfNNB2 +01/19/2018,Actors,@KatieHeigl,@MidwestSkies @PrincessWahoo You got it.. a space had to go... 😀 +01/19/2018,Actors,@KatieHeigl,Today's blog post is an inside look at my glorious birthday trip to NYC last month. Check it out for all the pics a… https://t.co/GlOaz3kaBl +01/19/2018,Actors,@KatieHeigl,"So @joshbkelley captured some truly beautiful morning views today...😏😮 +PS. New post on https://t.co/SQ2cAcHZiP this… https://t.co/CRcJSiaZbU" +01/18/2018,Actors,@KatieHeigl,RT @InStyle: .@KatieHeigl really wants to make a 27 Dresses sequel—but with a hilarious twist. https://t.co/nskaldb5B1 https://t.co/T8uTRj7… +01/18/2018,Actors,@KatieHeigl,On top of a bar I hope... ❤️ 😃 https://t.co/xGtxZaGw0n +01/18/2018,Actors,@KatieHeigl,It has been 10 whole years since I had the privilege of getting to be apart of one of my favorite projects 27 dress… https://t.co/DMXjUNAa0i +01/18/2018,Actors,@KatieHeigl,"Help save the lives of shelter cats every time you buy Cat’s Pride® Fresh & Light® litter. Dan Jaffee, head of… https://t.co/NDGaVp7nkO" +01/17/2018,Actors,@KatieHeigl,"Remember when bath time brought you this much joy? Good times, good times. #thoseheavenlydays are full of heavenly… https://t.co/mNBD4UqMyK" +01/15/2018,Actors,@KatieHeigl,Me? I’m just staring off into the great wide open contemplating my future & how to ensure a great 2018. Or I’m asle… https://t.co/BEliMbd5xE +01/12/2018,Actors,@KatieHeigl,"@venusinthenight Sorry to hear about you pup, but glad she made it. Thank you for providing a loving home to a rescue. 💗" +01/12/2018,Actors,@KatieHeigl,@lordfjd Greetings! +01/12/2018,Actors,@KatieHeigl,"Sharing all my holiday pics, menus and decor on https://t.co/SQ2cAcHZiP over the next few weeks. The first post tod… https://t.co/8oxlxYOXQ7" +01/11/2018,Actors,@KatieHeigl,RT @JoshBkelley: #puppies - katie and her mom nancy have a foundation that rescues abandoned companion animals… https://t.co/SGADepUaH1 +01/11/2018,Actors,@KatieHeigl,"Ummm....YES PLEASE, I’LL TAKE ALL THREE!!! Check out my Instagram stories for the full story of these adorable pupp… https://t.co/QU5uya17Yc" +01/11/2018,Actors,@KatieHeigl,#thoseheavenlydays include an afternoon latte with far too much foam...☕️🤓 https://t.co/X6MQSYZSmH +01/10/2018,Actors,@KatieHeigl,"Can’t stop, won’t stop kissing this kid! ❤️❤️❤️❤️❤️ and #thoseheavenlydays include lipstick kisses from mama 💄 😘 https://t.co/snOOkyighU" +01/08/2018,Actors,@KatieHeigl,"RT @hvnlydays: Is interior design your forte, or maybe you just love decorating a room? @KatieHeigl needs your help to bring a spark to her…" +01/08/2018,Actors,@KatieHeigl,RT @JoshBkelley: Love this song that I wrote a few years back for @KatieHeigl and I's kiddos. RT if it reminds you of your family and check… +01/08/2018,Actors,@KatieHeigl,@DomLinden It is called Pretend Soup. Hope that helps ❤️ +01/08/2018,Actors,@KatieHeigl,Up now on https://t.co/SQ2cAcHZiP is the full video of my office at #badlandsranch & my many decorating questions/n… https://t.co/tr3MDJ0tXC +01/07/2018,Actors,@KatieHeigl,"RT @JoshBkelley: The sooner I hit 2,000 subscribers on my @YouTube channel, the sooner you will get to hear new music. That's all I'm sayin…" +01/07/2018,Actors,@KatieHeigl,Naleigh made us breakfast this morning with a little help from #Alexa. I thought...I know she’s a robot but when as… https://t.co/uWifH40Tbn +01/06/2018,Actors,@KatieHeigl,I’m looking for some decorating advice from anyone out there who can confidently & beautifully pull a room together… https://t.co/oES1vFByb4 +01/05/2018,Actors,@KatieHeigl,Very true! https://t.co/2ZXPCkkBFJ +01/05/2018,Actors,@KatieHeigl,Awesome work! You are super talented. ❤️ https://t.co/ewv5FuUqCH +01/05/2018,Actors,@KatieHeigl,Okay I let @joshbkelley talk me back into another ride...but to be fair he did buy me my own bike with a seat that… https://t.co/tz3dzRCRFT +01/03/2018,Actors,@KatieHeigl,Trippy...still playing around with my #enlightapp even though the vote was unanimous and you guys prefer the real p… https://t.co/TyJuT0jIvt +12/31/2017,Actors,@KatieHeigl,Nothing says Happy New Years Eve like a ridiculous picture of oneself frolicking in the snow wearing Christmas jamm… https://t.co/xjPfm3HDMq +12/30/2017,Actors,@KatieHeigl,Little post holiday hike with my two favorite guys. Thanks for the pics @JoshBkelley! #thoseheavenlydays #utahlife… https://t.co/j50tKIA6pG +12/29/2017,Actors,@KatieHeigl,These two though...❤️❤️❤️❤️❤️ https://t.co/k52wb4mCaT +12/29/2017,Actors,@KatieHeigl,Yes we indulge in the matching Christmas Jammie tradition but can’t resist our sparks of individuality! Thanks aunt… https://t.co/5nC2fAqdSd +06/29/2018,Actors,@JasonWGeorge,"Come meet me at ⁦@TheEmmys⁩ ! + +Donate to help ⁦⁦@TelevisionAcad⁩ increase #diversity in TV w/ fresh young voices a… https://t.co/80s2CzAmck" +06/26/2018,Actors,@JasonWGeorge,"Join me on the red carpet at the 70th #Emmys & help create a more inclusive entertainment industry! +You can win an… https://t.co/0Jl8PvIhzu" +06/20/2018,Actors,@JasonWGeorge,"@Nick_Wechsler @Station19 Just like you said, Nick. It was great time and interesting" +06/19/2018,Actors,@JasonWGeorge,RT @TheDemocrats: This photo is absolutely heartbreaking. Republicans control the House and Senate. They have the power to end Trump’s crue… +06/19/2018,Actors,@JasonWGeorge,RT @SAGAFTRANY: #ProtectMyImage #ProtectMyVoice A company likes the sound of your voice & uses voice manipulation software to have you narr… +06/16/2018,Actors,@JasonWGeorge,"It’s great to be a working actor + +Even better if you’re blessed enough to become a star + +But that doesn’t mean peop… https://t.co/7oomJjpQOg" +06/16/2018,Actors,@JasonWGeorge,"We tryin to take @station19 #international yall!! + +Flew to #France then grabbed a chopper to #Monaco #muchlove to… https://t.co/YmyML0xrq9" +06/05/2018,Actors,@JasonWGeorge,"You have a voice +Use it! + +#vote + +#youdonthavetobutyougotto https://t.co/bsOnqf6rES" +06/05/2018,Actors,@JasonWGeorge,"With the exception of the #Superbowl itself + +I’ve never been more #proud of the @Eagles… https://t.co/tC6YXqO5Ru" +06/03/2018,Actors,@JasonWGeorge,"Hey #SouthLA #BaldwinHills #Crenshaw + +Me & #PatrisseCullors from #BlackLivesMatter and #DignityandPowerNow are com… https://t.co/xOspOJkdtU" +06/01/2018,Actors,@JasonWGeorge,"Today I #WearOrange for Scott Smith who died by gun suicide in 2014 & his daughter Celeste, who now advocates to pr… https://t.co/XQ2uBctnZW" +06/01/2018,Actors,@JasonWGeorge,"June 1 is #NationalGunViolenceAwarenessDay +Are you ready to #WearOrange? + +Join events today & tomorrow w/me and ot… https://t.co/aevtiLKOXA" +05/30/2018,Actors,@JasonWGeorge,"#bucketlist moment with #QuncyJones and my brother + +Wouldn’t mind a repeat someday https://t.co/q4TmtE76H9" +05/29/2018,Actors,@JasonWGeorge,"Often #Hollywood values #money above all + +I’ve had the #goodfortune much of my career to be employed by people who… https://t.co/GiorTlcH7H" +05/28/2018,Actors,@JasonWGeorge,Take a moment this #MemorialDay to think of those men & women you’ve never met who sacrificed everything for this c… https://t.co/xu3TuRGP6e +05/27/2018,Actors,@JasonWGeorge,"It’s Kids people + +Don’t try and shift blame +You want to be #President +Buck stops with you, #Trump + +Take… https://t.co/PV0N4Z4hkM" +05/25/2018,Actors,@JasonWGeorge,"If you’re in #LosAngeles check out @WeRise_LA #art and ideas Festival + +The #Artist reception last night was amazing… https://t.co/IoCPWSlPZc" +05/22/2018,Actors,@JasonWGeorge,So damn happy about @KimRaver gettin back in the #TGIT game https://t.co/KJgT5sqr76 +05/21/2018,Actors,@JasonWGeorge,"Support #actors fighting for a fair @sagaftra contract w/ #Telemundo + +All #Spanish language performers will benef… https://t.co/boDC52c3Um" +05/21/2018,Actors,@JasonWGeorge,"Support #actors fighting for a fair @sagaftra contract w/ #Telemundo + +All #Spanish language performers will benefi… https://t.co/vpDAF7RCKy" +05/21/2018,Actors,@JasonWGeorge,"Love workin w/ this Lady +As an #actor or as an #activist + +Right now we’re workin w/ @reformlajails + +It’ll save mo… https://t.co/Z4wWvhN7R4" +05/20/2018,Actors,@JasonWGeorge,"@gray1kj @Everytown And it takes people to stop people from killing. + +Will you help us + +Or are you a bot? +Or a Rus… https://t.co/OX4g2kzliY" +05/19/2018,Actors,@JasonWGeorge,"If you think this #Gunviolence is normal, you are not + +If you believe in the #secondamendment or are #NRA ...#help… https://t.co/dU9naIHcuy" +05/19/2018,Actors,@JasonWGeorge,"Really proud to join the #VirginiaFilmFestival Board + +Great reason to go back to #Charlottesville + + https://t.co/p9okmVxZl1" +05/19/2018,Actors,@JasonWGeorge,"#GoodTimes w/ @ZerlinaMaxwell on #SignalBoost talking all things #TGIT #Station19 & #GreysAnatomy + +#MuchLove https://t.co/17BFxIbwD2" +05/19/2018,Actors,@JasonWGeorge,"Caught up w/ my old friend @Jason_Stuart on his podcast S#!t I LOVE WITH JASON STUART + +I’ve known Jason since I sta… https://t.co/tptbXvz1zP" +05/18/2018,Actors,@JasonWGeorge,"#WestCoast !! + +It was a rough week of Kate nights so instead of #redwine tonight + +I’m having some chai in my new fa… https://t.co/wvDwffC0FH" +05/18/2018,Actors,@JasonWGeorge,"To all the @Station19 fans who’ve been there from the beginning or joined along the way + +#Thanks from the bottom of… https://t.co/Br0cnH7TM6" +05/18/2018,Actors,@JasonWGeorge,"And you know this, mane + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/H4Sec6lQ47" +05/18/2018,Actors,@JasonWGeorge,RT @jayhayden00: I’m totally fine.....right? #Station19 https://t.co/RuBKGiWjya +05/18/2018,Actors,@JasonWGeorge,"#WorkingOnIt + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/D2ARU6cqVQ" +05/18/2018,Actors,@JasonWGeorge,"Vic gettin it done +#MuchLove @barrett_doss !! + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/UIL8wEVk1A" +05/18/2018,Actors,@JasonWGeorge,"Tried to warn y’all + +We’re goin through it on #Station19 tonight + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/ljhXo9amOU" +05/18/2018,Actors,@JasonWGeorge,RT @Harparbar: One of my favorite scenes in the whole movie. Two terrific actors and a great script equals easy day for me. #Station19 http… +05/18/2018,Actors,@JasonWGeorge,"#WhatCouldPossiblyGoWrong ? + +Remember when it was a #GoodDay ? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/t5iP1OLlMp" +05/18/2018,Actors,@JasonWGeorge,"#GoodDay +#WhatCouldPossiblyGoWrong ? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/6L3St1dajS" +05/18/2018,Actors,@JasonWGeorge,"Miss you, fam! + +#mcuhlove @sipijungleboy @barrett_doss @D_SAVRE + +#TGIT  #GreysAnatomy  #Station19 @GreysABC… https://t.co/I3YI2ZA9WN" +05/18/2018,Actors,@JasonWGeorge,"#LookOut !! +Ben’s got the keys now! + +#RookieMyAss + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19" +05/18/2018,Actors,@JasonWGeorge,"Are the #Fireflies down? + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/UZpPy9sXbn" +05/18/2018,Actors,@JasonWGeorge,"Actually @Harparbar + +You’re the #specialsauce + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/2gyFbra4uF" +05/18/2018,Actors,@JasonWGeorge,"Right!?! + +#TGIT  #GreysAnatomy  #Station19 @GreysABC @Station19 https://t.co/CjgY5XrFR5" +05/18/2018,Actors,@JasonWGeorge,"#EastCoast + +@GreysABC gave you some laughs and some tears + +Now @Station19 is gonna give you some #thrills + +#TGIT … https://t.co/UeBTKzrhLN" +05/18/2018,Actors,@JasonWGeorge,"@Harparbar @JainaLeeOrtiz @GreyDamon @barrett_doss @jayhayden00 @OakSmash @D_SAVRE @stacysmckee16 Great @Harparbar +Now I’m hungry" +05/18/2018,Actors,@JasonWGeorge,"We interrupt #TGIT to say + +#muchlove to @LuckyBrand & @Magnannishoes for helpin a brother look his best at @EW… https://t.co/rfU0yaFCdL" +05/18/2018,Actors,@JasonWGeorge,"Now can we get some love for #Teddy aka @KimRaver + +#TGIT #GreysAnatomy #Station19 @GreysABC @Station19" +05/18/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen + +Can we give some love to @TishaCampblMrtn + +#beauty and #talent never age or go out of style… https://t.co/8KZ5aMjMPI" +05/18/2018,Actors,@JasonWGeorge,"@GreysABC has got a wedding goin down folks + +#TGIT is all about love, right? +#GreysAnatomy" +05/18/2018,Actors,@JasonWGeorge,RT @msdebbieallen: Here’s a little #BTS of the final table read for Season 14 of @greysabc. Not a dry eye in the house.😪 @sarahdrew @Jessi… +05/18/2018,Actors,@JasonWGeorge,Almost missed #TGIT #GresysAnatomy #Station19 tonight because I was hangin w/ these #beautifulpeople in #NewYork fo… https://t.co/zB1Y708g9l +05/17/2018,Actors,@JasonWGeorge,"#EastCoast !! + +Lemme know if y’all are ready for the #TGIT #Finale ? +I’m in both #GreysAnatomy & #Station19 tonight… https://t.co/5sgxWYTQ9N" +05/12/2018,Actors,@JasonWGeorge,"Soooo..... + +Y’all ready to bring the #hotness back to #TGIT ? + +@Station19 #station19 https://t.co/q44exyF9lw" +05/11/2018,Actors,@JasonWGeorge,"#MuchLove @stacysmckee16 + +Any opportunity to hug on @JainaLeeOrtiz + +Can’t believe we’re almost at @Station19… https://t.co/uyl1vlFCyW" +05/11/2018,Actors,@JasonWGeorge,"Loved catching up w/ m’girl @TheRealEve and hangin with the ladies of @TheTalkCBS + +We talked about @Station19… https://t.co/ToDaPScrsj" +05/11/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen + +@Station19 finally makes it to #Joesbar ! + +#TGIT #station19 @Station19 @GreysABC #GreysAnatomy" +05/11/2018,Actors,@JasonWGeorge,"Can I give a special #ShoutOut to an old friend @sarayublue + +I mean...She’s not old...but our friendship is...neve… https://t.co/VQNXCwkHML" +05/11/2018,Actors,@JasonWGeorge,"RT @barrett_doss: Girl, you laid out looking like a beautiful mermaid on that floor!@sarayublue #Station19" +05/11/2018,Actors,@JasonWGeorge,"Maya took one for the team! + +@D_SAVRE gettin crazy + +#TGIT #station19 @Station19 @GreysABC #GreysAnatomy" +05/11/2018,Actors,@JasonWGeorge,"Lookit @stacysmckee16 makin @Station19 coordinate with @GreysABC + +#TGIT #station19 #GreysAnatomy https://t.co/mmFKJ0rYSG" +05/11/2018,Actors,@JasonWGeorge,https://t.co/LevBe2L4fZ +05/11/2018,Actors,@JasonWGeorge,#knewit https://t.co/ks9lSC5EJc +05/10/2018,Actors,@JasonWGeorge,"Hey @stacysmckee16 !! + +You got your #Officiallyfake #FakeOfficial #Station19 #hoodie yet? + +#AskStacy + +#Muchlove… https://t.co/8bi978p95r" +05/10/2018,Actors,@JasonWGeorge,It’s gonna get hot as hell on @Station19 and #TGIT tonight If you want to find out how we’re able to stand the heat… https://t.co/ZJudoU1Zcv +05/10/2018,Actors,@JasonWGeorge,"It’s gonna get hot as hell on @Station19 and #TGIT tonight + +If you want to find out how we’re able to stand the hea… https://t.co/eSGCfcQdjD" +05/10/2018,Actors,@JasonWGeorge,"#TGIT ALERT!! + +Let’s live-tweet tonight + +Only 2 episodes left @greysabc & @station19 + +Both #greysanatomy &… https://t.co/22gi8U9g8R" +05/10/2018,Actors,@JasonWGeorge,RT @HLNTV: Calling #GreysAnatomy fans! @Michaela spoke with @JasonWGeorge about his role as the doctor that's so good - he's on two differe… +05/10/2018,Actors,@JasonWGeorge,@DelShores @Michaela @Station19 @GreysABC @breakinginmovie Me or Michaela? +05/10/2018,Actors,@JasonWGeorge,"How lovely is @Michaela ? +#goodtimes choppin it up w/ her about @Station19 @GreysABC and @breakinginmovie https://t.co/wLDMf7KtVm" +05/08/2018,Actors,@JasonWGeorge,"#WOW + +We can stop talking about Ye and MAGA hats because we need to be talkin bout this here + +If you weren’t messi… https://t.co/Zek9EZyLPn" +05/07/2018,Actors,@JasonWGeorge,"Love me some #YvetteLeeBowser + +Love that @byshondaland loves her too https://t.co/qhh1R1r8nP" +05/04/2018,Actors,@JasonWGeorge,RT @JainaLeeOrtiz: When you find out there’s only 3 more episodes of #Station19 https://t.co/p7UL8vKoj6 +05/03/2018,Actors,@JasonWGeorge,"“I will pound your chest all day long” + +#Freudianslip ...or was it? + +Btw, #MuchLove to @strongsuitclothing &… https://t.co/5976FAUr5k" +05/03/2018,Actors,@JasonWGeorge,"#goodtimes w/ @ConanOBrien tonight talking @Station19 + +@TeamCoco all the way https://t.co/qhkErlYozF" +05/02/2018,Actors,@JasonWGeorge,#workingonit https://t.co/kgjRnTH610 +05/02/2018,Actors,@JasonWGeorge,#goodtimes at the premiere of @breakinginmovie premiere last night w/ producer extraordinaire @willpowerpacker &… https://t.co/sNUHVC8kXF +05/02/2018,Actors,@JasonWGeorge,"Show your #Mom you think she’s #badass this #MothersDay + +Take her to see @breakinginmovie + +I do a cameo as husban… https://t.co/tau3pA1AX9" +04/29/2018,Actors,@JasonWGeorge,"Want to tip my hat and give a #HappyBirthday to one of the most selfless people I know +@EllentheCraw is always work… https://t.co/3n2jiS9G4K" +04/28/2018,Actors,@JasonWGeorge,"RT @barrett_doss: Fun fact: the fantastic actress playing Allison (with the baby) is @nikkihayden00. She is the incredibly talented, funny…" +04/27/2018,Actors,@JasonWGeorge,"And how great is #MarlaGibbs ? + +#TVIcon + +@Station19 #Station19 #TGIT" +04/27/2018,Actors,@JasonWGeorge,"“She’s loud but she’s right “ + +—#MirandaBailey about #AndyHerrera + +And LOOK it’s Schmidt!! Aka #glasses + +@Station19 #Station19 #TGIT" +04/27/2018,Actors,@JasonWGeorge,"Be there in a minute, gang + +@Station19 #Station19 #TGIT https://t.co/l2HLRcHnJy" +04/27/2018,Actors,@JasonWGeorge,"RT @S19Writers: Fun fact: We had bystanders reporting this strip-mall fire, thinking it was real. THAT'S how awesome our crew is. #Station19" +04/27/2018,Actors,@JasonWGeorge,"RT @Station19: ""Go in there and be there for your dad."" #Station19 https://t.co/MIkkXvLn0h" +04/27/2018,Actors,@JasonWGeorge,"Hey #Firenerds + +Are y’all feelin the Travis & Grant vibe on @Station19 ? + +Let @jayhayden00 know! + +He’s Another… https://t.co/E8dDghvHqM" +04/27/2018,Actors,@JasonWGeorge,"@babsamiga !!! + +So happy I was able to Benin your very first episode of TV and also glad it was an episode of… https://t.co/0BNqseyAZg" +04/27/2018,Actors,@JasonWGeorge,"Don’t know what I love more... + +“There’s no way a powerful #blackwoman is gonna take he gal for a rich old white ma… https://t.co/cvy23VbL3V" +04/27/2018,Actors,@JasonWGeorge,"#EastCoast ! +Happy #TGIT + +Unfortunately, +I can’t watch til west coast feed + +How @GreysABC tonight? + +And are you… https://t.co/WrV8874AfZ" +04/26/2018,Actors,@JasonWGeorge,"#ChandraWilson is all over #TGIT tonight +@Station19 as well as @GreysABC + +She’s learning what I learned long ago..… https://t.co/3u7AKTYfa7" +04/26/2018,Actors,@JasonWGeorge,"Gonna try to #livetweet #eastcoast & #westcoast airings of @Station19 and @GreysABC + +Of course, I’ll be at work ma… https://t.co/eK2Em28xdY" +04/26/2018,Actors,@JasonWGeorge,"Y’all ready for #TGIT tomorrow? + +Powerful @Station19 airs right after @greysabc + +I’ll try to #livetweet during… https://t.co/a8CheXJ9S3" +04/22/2018,Actors,@JasonWGeorge,"I support @WBEZ and @sagaftra #Chicago in their fight for a fair contract. + +They need your support, too… https://t.co/erDZ6bTKBm" +04/21/2018,Actors,@JasonWGeorge,"RT @DigitalLA: Deciding to do a project: +- Is it good? +- Make content that's so specific, that it becomes universal. First Barbershop found…" +04/21/2018,Actors,@JasonWGeorge,@ANIUSHKA Eggs bacon and veggies 😜 +04/21/2018,Actors,@JasonWGeorge,RT @GreysABC: #GreysAnatomy is officially coming back for Season 15! 🎉🎉🎉 https://t.co/CFdh2oHRAw +04/20/2018,Actors,@JasonWGeorge,"#MuchLove & #Thanks @Variety & @facebook for a #GreatDay + +Granted the @Station19 crew sometimes ran when they saw… https://t.co/QIaUyu2rnh" +04/20/2018,Actors,@JasonWGeorge,RT @barrett_doss: Serious #BlackGirlMagic happening on @Station19 tonight. Episode written by @nationsfilm and directed by @zingbling. Than… +04/19/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Between @GreysABC & @ScandalABC check out @Station19 + +It’s #TheFinalScandal so Hats Off to #Scandal… https://t.co/CBIU6ul9Ki" +04/18/2018,Actors,@JasonWGeorge,"RT @ATXFestival: #Shondaland is turning up the HEAT on #ATXTVs7 with a screening of @Station19, ft. creator @stacysmckee16, casting directo…" +04/18/2018,Actors,@JasonWGeorge,#Muchlove to our friends across the pond! Hope you enjoy @Station19 https://t.co/iEww8XPT6M +04/17/2018,Actors,@JasonWGeorge,"Lookit @JainaLeeOrtiz about ta whup somebody’s tail!! + +It’s going down on @Station19 this #TGIT +after… https://t.co/KuK16L7W8L" +04/15/2018,Actors,@JasonWGeorge,"Happy #JackieRobinsonDay + +#Jackie42 is the reason I’m a @Dodgers fans + +#amazingman #lookitup #JackieRobinson… https://t.co/7Veed7atkY" +04/15/2018,Actors,@JasonWGeorge,RT @Station19: When you and bae have your own version of dirty talk. #Station19 https://t.co/2l8HxndsQ6 +04/14/2018,Actors,@JasonWGeorge,"That’s a #season14 wrap for me on @GreysABC + +Spendt it with my favorite ladies @msdebbieallen and #ChandraWilson… https://t.co/tYtLbolTRB" +04/13/2018,Actors,@JasonWGeorge,@byshondaland My jaw hit the floor when I first walked into the @Station19 set because it was so beautifully realis… https://t.co/jaIESqCjuK +04/13/2018,Actors,@JasonWGeorge,RT @byshondaland: Ever wonder how a set gets made? Here is a #bts video of our incredible team building #Station19! #TGIT #TGITHangover htt… +04/13/2018,Actors,@JasonWGeorge,@jayhayden00 @GreyDamon @JohnMRinaldi @byshondaland @JainaLeeOrtiz @D_SAVRE @barrett_doss @Harparbar @Station19… https://t.co/k57A75nvm2 +04/13/2018,Actors,@JasonWGeorge,@stacysmckee16 #MuchLove boss Much love Thanks for serving me such a great story to tell tonight +04/13/2018,Actors,@JasonWGeorge,"Y’all diggin #Station19 ? + +I would #livetweet @GreysABC & @Station19 with you guys tonight but I’m missing #TGIT be… https://t.co/JVQkcY5zCH" +04/13/2018,Actors,@JasonWGeorge,"I tried to get her on #instagram & #twitter y’all ! + +Guess you have to catch her on @greysabc and @station19 + +Whi… https://t.co/KqDcqQkjTi" +04/12/2018,Actors,@JasonWGeorge,"Did I mention that #TGIT does a #doubledip of #ChandraWilson tonight on @greysabc & @station19 + +Yup +#MirandaBailey… https://t.co/XwGwRPVE6g" +04/11/2018,Actors,@JasonWGeorge,"#TGIT has a double shot of #ChandraWilson +First she’s on @greysabc then she joins me on @station19 + +Make sure to… https://t.co/WbOoBqfoWU" +04/09/2018,Actors,@JasonWGeorge,"Wow +It’s not a game to these kids + +And they’re all about to #vote .... + +#VoteThemOut if they don’t do their jobs… https://t.co/ONBYligfeJ" +04/08/2018,Actors,@JasonWGeorge,"#greatday helping the @LAFD inspire #youngwomen to become #firefighters & #firstresponders + +@GreysABC fans will… https://t.co/IRS8OZ8ZOM" +04/07/2018,Actors,@JasonWGeorge,"#Republican reporter is persecuted by #SinclairBroadcasting for believing in fair journalism + +We all have to do mor… https://t.co/OrPkKAFLwU" +04/06/2018,Actors,@JasonWGeorge,https://t.co/Nzr20jcHDU +04/06/2018,Actors,@JasonWGeorge,"#Muchlove @barrett_doss + +...and, NO, I will not excuse you + +#Station19 #TGIT @Station19 https://t.co/1hc2SeTp7e" +04/06/2018,Actors,@JasonWGeorge,"Damn I love your mom! + +Too damn much right now! + +#MuchLove + +#Station19 #TGIT @Station19 https://t.co/gweCVIp2qO" +04/06/2018,Actors,@JasonWGeorge,"#MuchLove & +#TellAFriend + +#Station19 #TGIT @Station19 https://t.co/KdW9Oe0rfd" +04/06/2018,Actors,@JasonWGeorge,"Glad you’re diggin it + +#Station19 #TGIT @Station19 https://t.co/L6UmaI8Hvs" +04/06/2018,Actors,@JasonWGeorge,"#OliviaPope would cry at all those wine bottles going to waste + +Kind of like I did + +#Station19 #TGIT @Station19 https://t.co/opUBA5iUEh" +04/06/2018,Actors,@JasonWGeorge,"For all you #Fireflies that are feelin the music on @Station19 .... + +#Station19 #TGIT @Station19 https://t.co/yEwwfUDnRd" +04/06/2018,Actors,@JasonWGeorge,"Y’all have to catch m’girl @JainaLeeOrtiz tonight on @JimmyKimmelLive + +#Station19 #TGIT @Station19 https://t.co/QB4j17kVIQ" +04/06/2018,Actors,@JasonWGeorge,"Ya know!?! + +All up in e’rybody else’s bi’ness but won’t let nobody ask her nuttin + +#MuchLove @barrett_doss !!… https://t.co/hrgIRQttME" +04/06/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Still on set at @GreysABC and about to shoot + +Hope y’all love @Station19 tonight! + +Let me know if y… https://t.co/gdxlPJOfdn" +04/06/2018,Actors,@JasonWGeorge,"Let’s keep the @GreysABC @Station19 #doubledipping going next #TGIT ! + +Have you all met my friend #ChandraWilson ?… https://t.co/FKghqB2D36" +04/06/2018,Actors,@JasonWGeorge,"#Thanks Boss + +#Station19 #TGIT @Station19 https://t.co/eFxteLOyzM" +04/06/2018,Actors,@JasonWGeorge,RT @nationsfilm: WE DO! @S19Writers #Station19 #TGIT https://t.co/gJ03VQQ2Ee +04/06/2018,Actors,@JasonWGeorge,"#RealTalk + +I did my best... +...tried to save all the wine I could...😜 + +#Station19 #TGIT @Station19 https://t.co/xD2JR8RyGQ" +04/06/2018,Actors,@JasonWGeorge,"#Thanks +#MoreToCome + +#Station19 #TGIT @Station19 https://t.co/sEHjVA4gAh" +04/06/2018,Actors,@JasonWGeorge,Right!?! https://t.co/XbzLZqAdkV +04/06/2018,Actors,@JasonWGeorge,"NOPE! + +In fact, #retweet if you want another season of @Station19 + +#Station19 #TGIT @Station19 https://t.co/P8beVNWvnO" +04/06/2018,Actors,@JasonWGeorge,"#GETOUT !! + +#LivesBeforeRatings + +#Station19 #TGIT @Station19 https://t.co/TDE6HUIMnl" +04/06/2018,Actors,@JasonWGeorge,"I think I have the same problem + +#metoo ? #maybenot + +#Station19 #TGIT @Station19 https://t.co/4vbUXutP7R" +04/06/2018,Actors,@JasonWGeorge,"Tell ‘em @_swroblewski !! + +#Station19 #TGIT @Station19 https://t.co/TDR0D8Qx1x" +04/06/2018,Actors,@JasonWGeorge,"How great is the always phenomenal #MarlaGibbs ? + +#TVroyalty + +#Station19 #TGIT @Station19" +04/06/2018,Actors,@JasonWGeorge,"Desperately wanted to shoot the scene on @Station19 where we actually DO come back for the groceries + +@barrett_doss… https://t.co/z2oklTYzwb" +04/06/2018,Actors,@JasonWGeorge,"Was Jack tryin to BUY some boots or KNOCK some boots? + +...sorry, #lowhangingfruit + +#Station19 #TGIT @Station19" +04/06/2018,Actors,@JasonWGeorge,"Now don’t stop visiting #BedAndBreakfasts just because of @Station19 ! + +#Station19 #TGIT" +04/06/2018,Actors,@JasonWGeorge,"You know I’ma #LiveTweet @Harparbar !! + +#EastCoast !! + +You ready for @Station19 ? +Hope you enjoyed @GreysABC but… https://t.co/y92gcZbj0n" +04/06/2018,Actors,@JasonWGeorge,https://t.co/YpHiRh8Lax +04/05/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Double shot of #BenWarren tonight!! + +Catch me on @GreysABC +And then on @Station19 right afterwards… https://t.co/zZgSvyVSqN" +04/05/2018,Actors,@JasonWGeorge,"Happy #TGIT + +Double shot of #BenWarren tonight!! + +Catch me on @GreysABC +And then on @Station19 right afterwards… https://t.co/cHz91y3x61" +04/04/2018,Actors,@JasonWGeorge,"He Spoke Out +He was Relentless +He gave his life so others would #Livebetter + +#50years since the #assassination of… https://t.co/kxfAeXQ5xd" +04/04/2018,Actors,@JasonWGeorge,"Can’t even count how many of y’all have told me stories about how you #bingewatched ALL 14 Seasons of @GreysABC + +D… https://t.co/dLo6BU9rVH" +03/30/2018,Actors,@JasonWGeorge,#MuchLove to @hulu & all Corps who believe in #manners & #decency in broadcasting & pulled ads from #LauraIngram fo… https://t.co/I5h6FbkqPf +03/30/2018,Actors,@JasonWGeorge,"#ParklandStudents should also keep #debate to issues & not personal attacks + +But I may give a pass to a 17yr old su… https://t.co/2ouBtAk0Pe" +03/30/2018,Actors,@JasonWGeorge,"Ultimate #Clapback !! +@davidhogg111 handled #LauraIngraham like a boss + +#debate the issues +NOT personal attacks… https://t.co/afmrVfpRqM" +03/30/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Time to get your @Station19 on!! + +Hope you enjoy +Happy #TGIT + +#Station19" +03/30/2018,Actors,@JasonWGeorge,"#MuchLove to all the @Station19 fans + +We appreciate you + +See you next week + +Til then.... #playinghooky + +@Station19… https://t.co/XSP4PyGEP6" +03/30/2018,Actors,@JasonWGeorge,RT @Station19: 😱😱😱 #Station19 https://t.co/wrUH1fMQvs +03/30/2018,Actors,@JasonWGeorge,"When #science goes wrong + +#DontTryThisAtHomeKids + +@Station19 #Station19 #TGIT" +03/30/2018,Actors,@JasonWGeorge,"Awww... + +But you #Teamworkmakesthedreamwork and U be the quarterback of this team @JainaLeeOrtiz + +@Station19… https://t.co/kzODqgyVJv" +03/30/2018,Actors,@JasonWGeorge,"You can thank the brilliant mind of @Harparbar our executive producer who directed the pilot + +I’d say he’s a genius… https://t.co/mjK8PjdTuR" +03/30/2018,Actors,@JasonWGeorge,"That’s so funny... + +Only reason I see myself ON @Station19 is #BenWarren + +But keep watching—the crew of #Station19… https://t.co/5Gh8qyt4y1" +03/30/2018,Actors,@JasonWGeorge,"Quick!! + +Rate your enthusiasm level for @Station19 ! + +I think I may even have that #BenWarren beat—he looks familia… https://t.co/NXV0CP8z6g" +03/30/2018,Actors,@JasonWGeorge,"Retweet if you would risk your life for an album + +I’d walk over hot coals for #purplerain + +@Station19 #Station19 #TGIT" +03/30/2018,Actors,@JasonWGeorge,"#EastCoast !! + +Y’all ready for @Station19 ? + +Happy #TGIT https://t.co/MJkYVOxY1v" +03/29/2018,Actors,@JasonWGeorge,"If you love @Station19 you have to check out the Q&A with the show creator @stacysmckee16 this afternoon + +She can a… https://t.co/QO5u0i7cFY" +03/29/2018,Actors,@JasonWGeorge,"#MONSTA aka #SteveSmith is a real life #firefighter #paramedic & part of the @station19 family + +He just earned hi… https://t.co/DcYfNwjBG5" +03/29/2018,Actors,@JasonWGeorge,"@JamesLesure @SuzyNakamura Well the jokes on you, Mr. Leisure (spelling intended) + +Because I actually carried HER… https://t.co/eP43e3pY0G" +03/29/2018,Actors,@JasonWGeorge,"@SuzyNakamura @JamesLesure Well, well, well...,We meet again, Mr. Lesure + +Don’t you wish you had the pleasure of wo… https://t.co/HNwLxLLfgm" +03/28/2018,Actors,@JasonWGeorge,"@sean_m_maguire Yeah, he does +And his godfather loves him and his big brother" +03/28/2018,Actors,@JasonWGeorge,"Last week’s #Premiere of @Station19 was #purefire + +#bluefire + +Don’t miss the next episode of #Station19 tomorrow… https://t.co/0Rk3hTkKPP" +03/27/2018,Actors,@JasonWGeorge,"I know @station19 just started and we love playing #firefighters and we already ARE a #spinoff but... + +I’d watch t… https://t.co/8w8KSKPJMm" +03/27/2018,Actors,@JasonWGeorge,A man never truly knows what he knows until he has to teach it to his child...that’s when you become a Grown-Ass Ma… https://t.co/SlM2GLvKNO +03/26/2018,Actors,@JasonWGeorge,"RT @Station19: Take the power! Exude it, and use it. #MondayMotivation #Station19 https://t.co/dYZjZOiBaN" +03/25/2018,Actors,@JasonWGeorge,"Check the poster y’all that’s: +a human being +a woman +a person of color +but most of all +a KID + +They should just be a… https://t.co/KmJLTh7p7u" +03/25/2018,Actors,@JasonWGeorge,#thankyou & #Muchlove to @AMarch4OurLives @Emma4Change @cameron_kasky & everybody igniting this spark that’s gonna… https://t.co/m09EwBgydT +03/24/2018,Actors,@JasonWGeorge,"We must find #commonground on #Guns & #Gunviolence + +I support the #SecondAmendment but we need real conversations &… https://t.co/B3XnTyu3QS" +03/24/2018,Actors,@JasonWGeorge,"America, + +This is your #wakeupcall + +#marchforourlives +@barrett_doss @D_SAVRE @GiacomoKG @sean_m_maguire https://t.co/LajDeMEDiR" +03/23/2018,Actors,@JasonWGeorge,"RT @Everytown: More than 2,700 children and teens are shot and killed and over 14,000 more are shot and injured every year. That violence d…" +03/23/2018,Actors,@JasonWGeorge,"To My Young Friends +Who #MarchForOurLives + +#ThankYou & #ImSorry + +Your biggest concern should be Prom + +Not trying t… https://t.co/ZeNatRxQHE" +03/23/2018,Actors,@JasonWGeorge,"This young lady is #myhero + +But she shouldn’t have to be + +This is why we #MarchForOurLives + +Hope to see you there… https://t.co/bs4k9aRHgV" +03/23/2018,Actors,@JasonWGeorge,"Right!?! + +That got to me too + +@Station19 #Station19 https://t.co/wxCM2tLFH5" +03/23/2018,Actors,@JasonWGeorge,https://t.co/ksbU7YWGHJ +03/23/2018,Actors,@JasonWGeorge,"Ladies and Gentlemen, I give you... + +...#BlueFire !! + +...playing #Coachella this summer + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"Will the real #slimshady please stand up + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"Ain’t nothing wrong with a little friendly competition.....in bed + +Says your ex-boyfriend/bootycall + +#MuchLove… https://t.co/kjh4YWuWGD" +03/23/2018,Actors,@JasonWGeorge,"#HoldOn ! Ben’s day and the episode ain’t done yet + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"@OakSmash and @BrendaSong are so much damn fun to watch + +@Station19 #Station19 https://t.co/O33FYd6MqF" +03/23/2018,Actors,@JasonWGeorge,"@OakSmash and @BrendaSong are so much fun to watch + +@Station19 #Station19 https://t.co/O33FYd6MqF" +03/23/2018,Actors,@JasonWGeorge,"Hi Tuck +Who’s your friend? + +#babieshavingbabies +@Station19 #station19" +03/23/2018,Actors,@JasonWGeorge,"Where are my #FireNerds at? + +@Station19 #station19" +03/23/2018,Actors,@JasonWGeorge,@sarahdrew @Station19 @JainaLeeOrtiz ##MuchLove @sarahdrew you have no idea how much your support and #friendship m… https://t.co/r2eYeo9ZZF +03/23/2018,Actors,@JasonWGeorge,"How great was that “Get your game face on” scene with @EllenPompeo and @JainaLeeOrtiz + + @Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"@jayhayden00 is my boy but it didn’t feel good for Ben to get #schooled like that + +@Station19" +03/23/2018,Actors,@JasonWGeorge,"I’ve actually held beating hearts in my hand....also, I have a name.”—#BenWarren + +@Station19 #Station19" +03/23/2018,Actors,@JasonWGeorge,"#WestCoast !! + +Y’all ready for the 2hr premiere of @Station19 ?" +03/23/2018,Actors,@JasonWGeorge,"#MuchLove @barrett_doss + +Such great stuff coming up on @Station19 https://t.co/ZGrFzqpUIF" +03/23/2018,Actors,@JasonWGeorge,"#realtalk + +#MuchLove @Harparbar https://t.co/z8mxG4psIo" +03/23/2018,Actors,@JasonWGeorge,#Muchlove to my fellow #southerners https://t.co/dzhwa8Wj3k +03/23/2018,Actors,@JasonWGeorge,"@greys_duh No +😉" +03/23/2018,Actors,@JasonWGeorge,"#Teapot in the middle of #bluefire was so damn hard and so much fun at the same time. + +How great is @barrett_doss… https://t.co/OA6HGqpzPM" +03/23/2018,Actors,@JasonWGeorge,"I know how you fee +@stacysmckee16 https://t.co/3otHzLNXKS" +03/23/2018,Actors,@JasonWGeorge,https://t.co/uYXlMRKsxs +03/23/2018,Actors,@JasonWGeorge,"It’s what happens when I’m trapped on a plane when I’d rather be with y’all + +#askjainajason +@Station19 https://t.co/rp3aU3x3g6" +03/23/2018,Actors,@JasonWGeorge,"#goodeye 👍🏾 + +#askjainajason +@Station19 https://t.co/NLOqlMROtW" +03/23/2018,Actors,@JasonWGeorge,#askjainajason https://t.co/8AmsIT3UIH +03/23/2018,Actors,@JasonWGeorge,"Depends on the episode + +Cutting open your best friend’s wife in a thunderstorm is pretty intense.... + +...But wait t… https://t.co/8BAmVeGgpO" +03/23/2018,Actors,@JasonWGeorge,"#MostDef + +Are you watching the 2nd hour of @Station19 ? + +#askjainajason https://t.co/Eo6Echt7MD" +03/23/2018,Actors,@JasonWGeorge,"I tried to make evey day a #poleday but the producers won’t let me. + +Sum’n bout #insurance + +#askjainajason https://t.co/fla3x79HWA" +07/01/2018,Actors,@chy_leigh,@WonderlandYears 😘 +06/29/2018,Actors,@chy_leigh,"Absolutely!! No one more qualified and more creative than you, My Friend. Thank you for all the hard work and passi… https://t.co/VqXG3gBl0P" +06/29/2018,Actors,@chy_leigh,@reginaYhicks I don’t even... I can’t ... it’s perfect. +06/29/2018,Actors,@chy_leigh,@Airstripyaks OMG... you’re amazing +06/29/2018,Actors,@chy_leigh,This is AWESOME Bianca! https://t.co/jkEsRWBTpN +06/29/2018,Actors,@chy_leigh,@DavidHarewood Can’t wait to hear about it my friend. +06/29/2018,Actors,@chy_leigh,UHMAZING! @eastofeli & 1 are so grateful for all the hard work you’ve done for all the right reasons ❤️ https://t.co/GTsbWlZSjZ +06/29/2018,Actors,@chy_leigh,@Sue__Ing @eastofeli @GibusClubParis Nous aimons Paris!! +06/29/2018,Actors,@chy_leigh,AWESOME!! We love you Sue ❤️ https://t.co/9H7z9OnKrN +06/27/2018,Actors,@chy_leigh,RT @createchange_me: Bullying comes in many forms and wears different masks. How did you overcome the bully (or bullies) in your life? Subm… +06/26/2018,Actors,@chy_leigh,"😎🇨🇦 Cast yer votes, friends! https://t.co/uyQC7UHnbV" +06/24/2018,Actors,@chy_leigh,@wrighteousj OMG OMG OMG... we did it!!! Oh Friends... it’s the little things in life that bring @eastofeli & mysel… https://t.co/GbvZSfdBnU +06/24/2018,Actors,@chy_leigh,@wrighteousj https://t.co/sD9kuluBZF +06/24/2018,Actors,@chy_leigh,@wrighteousj RTs 👀 +06/24/2018,Actors,@chy_leigh,@wrighteousj https://t.co/egKhmYmkdS +06/24/2018,Actors,@chy_leigh,@wrighteousj 🎶Ohhhhhhhh we’re halfway there!! Oh ohhhhh... Jordan’s living on a prayer! https://t.co/07dlLrQTO6 +06/24/2018,Actors,@chy_leigh,"@clan_dec @wrighteousj Well, I should think so! Release the mathematicians!! I think you can collect retweets from anywhere 🤷🏻‍♀️" +06/24/2018,Actors,@chy_leigh,@brittanylainey Any puppy you want Darling ❤️ +06/24/2018,Actors,@chy_leigh,@wrighteousj Gosh... maybe they’ll name the puppy #Krypto ... or Cupcake (cuz Jordan will have to call him/her that every time) 🤩 +06/24/2018,Actors,@chy_leigh,FRENDZ keep retweeting @wrighteousj ‘s post. Wifey wants a puppy and Jordan will get her one if there are 1K retwee… https://t.co/tzxgwlrqv3 +06/24/2018,Actors,@chy_leigh,@wrighteousj Wow... you actually posted this. Challenge accepted. RT RT RT +06/24/2018,Actors,@chy_leigh,@wrighteousj RETWEET RETWEET https://t.co/gjG5Sb4KFd +06/24/2018,Actors,@chy_leigh,@eastofeli I got you Sis! FRENDZ... WIFEY NEEDS A PUPPY! RT the hell outta this... Love you Lil’ Bro ❤️ https://t.co/eWGCRRiWMj +06/24/2018,Actors,@chy_leigh,THIS IS AWESOME!! I’m so proud of our #Supergirl family 🤗 Woo hoo!! https://t.co/1BdYZaK7wV +06/23/2018,Actors,@chy_leigh,"OMG... I LOVE READING ABOUT ALL OF YOUR WINS!! Big or little, wins come when we find moments of peace in the chaos… https://t.co/Lt34mXHOUB" +06/22/2018,Actors,@chy_leigh,@relyhc_eoe OMG THIS IS AMAZING ❤️ +06/22/2018,Actors,@chy_leigh,"@Lustranimation 😱 Whoa... that’s amazing, you gifted Little Angel!" +06/22/2018,Actors,@chy_leigh,"Sharing a personal little win for myself. Today, I did something with slightly less OCD. I didn’t mop the floor in… https://t.co/3D124lZUMx" +06/22/2018,Actors,@chy_leigh,"@yosox In all fairness (and because he’s sitting right next to me) my husband, @eastofeli came up with the idea. Wh… https://t.co/th85ITTJAf" +06/22/2018,Actors,@chy_leigh,❤️🧡💛💚💙💜 https://t.co/sPTaC9lXWN +06/21/2018,Actors,@chy_leigh,"@yosox This last Christmas, my girls got me a year’s subscription for... SOCKS. Like, literally one of my all time… https://t.co/tt29rLhazM" +06/21/2018,Actors,@chy_leigh,"Let’s do this, Friends! #RepresentationMatters https://t.co/Hmi8w1aSjl" +06/10/2018,Actors,@chy_leigh,BIFL fo RIZZLE @_TNTCreative https://t.co/TryzrRja29 +06/05/2018,Actors,@chy_leigh,J’adore Paris!! Venez nous rejoindre pour une nuit incroyable! https://t.co/QJk4SRpD9w +06/01/2018,Actors,@chy_leigh,🙌🏻🙌🏻🙌🏻 https://t.co/ZnuWdGiXGK https://t.co/hpaNUpqqH4 +05/25/2018,Actors,@chy_leigh,We LOVE LOVE LOVE you all so much!! Thank you for allowing us to be on your journey and for you to grace us with yo… https://t.co/Rhq22qk87T +05/20/2018,Actors,@chy_leigh,To Our #Newcastle #ThinkTank? Friends... a heads up 😓 https://t.co/KihJPcu12Y +05/18/2018,Actors,@chy_leigh,"@eastofeli & I are so grateful for our beautiful family... every single one of us, every single day. Family first.… https://t.co/Kjf2H2uxmS" +05/18/2018,Actors,@chy_leigh,"Friends, @eastofeli & I had a lovely time in Ireland & after much needed rest & quality time together, we realize t… https://t.co/Q8G8844saI" +05/10/2018,Actors,@chy_leigh,RT @eastofeli: The lovely & VERY #generous @reginaYhicks you are absolutely incredible... Thank you for always spreading the love😘 https://… +05/09/2018,Actors,@chy_leigh,#SimplyTheBest https://t.co/GiEdjibsBZ +05/09/2018,Actors,@chy_leigh,RT @LRudd1992: Come and see @eastofeli & @chy_leigh in Liverpool at @cavernliverpool on May 24th! Don’t miss TWO unforgettable shows! 4pm b… +05/09/2018,Actors,@chy_leigh,RT @AngLives: I'm so stoked about the #NoPowerOverMe t-shirts that I got to design with @chy_leigh 💪 Based on her latest anti-bullying arti… +05/06/2018,Actors,@chy_leigh,#LoveLitTheSkyForMeAndEOE #BeautifulDay #ThankYouVancouver https://t.co/2BNWGQcbGO +05/01/2018,Actors,@chy_leigh,"🤯 OMG YAAAAAAS BRIANA!! Blackpool Friends, you have NO IDEA what’s comin’ atcha now 😎@JeremyMJordan + @TheVenskus +… https://t.co/8ENmhlYZlu" +04/28/2018,Actors,@chy_leigh,#VegasBaby BE THERE 😎 https://t.co/zyHFJ8ZVi9 +04/26/2018,Actors,@chy_leigh,@raulson_ @eastofeli You are a force to be reckoned with! Well done for taking care of YOU ❤️ #YouMatter +04/26/2018,Actors,@chy_leigh,"@LRudd1992 What a lovely and generous lady you are, Miss Leah ❤️ Can’t wait to see you soon" +04/26/2018,Actors,@chy_leigh,THIS. IS. INCREDIBLE. I can’t even... Such a powerful testament to how authentic and relatable Maggie’s journey has… https://t.co/eQD1iHjYBY +04/26/2018,Actors,@chy_leigh,This absolutely took my breath away. A beautiful song in a beautiful setting sung by the most beautiful person I’ve… https://t.co/hy0kosZRi6 +04/25/2018,Actors,@chy_leigh,On Friday @createchange_me will publish an article I wrote called “The Bully and The Beast” on our site. @AngLives… https://t.co/9Uyzt7L3LO +04/24/2018,Actors,@chy_leigh,YAAAAAS!! Thanks for the support @TWLOHA - @eastofeli & I are glad to have you there! Tix for @PubRockLive -… https://t.co/01TvmR9DoV +04/24/2018,Actors,@chy_leigh,#MyFavoriteGals ❤️ https://t.co/caqezltlc1 +04/24/2018,Actors,@chy_leigh,@lordmesa strikes again!! Killin it Dude! I love your art work 💥👊🏻💥 https://t.co/pAnFI62huA +04/23/2018,Actors,@chy_leigh,Never been to #Scottsdale before! @eastofeli & I can’t wait to meet you all at @PubRockLive this Saturday!! Get you… https://t.co/B4fXIT9xCu +04/22/2018,Actors,@chy_leigh,Amazing music + big hugs + Friends + lifelong memories = The #EOExperience Don’t miss this giveaway!! https://t.co/wmPjbW0ron +04/22/2018,Actors,@chy_leigh,"Friends- I am awed by your #SanversMatters banner in the sky the other day. I wasn’t on set to see it for myself, b… https://t.co/43wgMhIEpU" +04/19/2018,Actors,@chy_leigh,Y’ALL... Who’s ready for some #VegasHeat🔥?! @eastofeli & I are playing an exclusive One-Of-A-Kind LIVE RECORDED aco… https://t.co/EVvhNz8boT +04/18/2018,Actors,@chy_leigh,LOVE LOVE LOVE this beautiful video created by the amazing #TeamJamber from @_TNTCreative Get a glimpse of what th… https://t.co/k6OBWj1qHR +04/18/2018,Actors,@chy_leigh,Friends... you SOOOO want to be here!! #VegasVIP #EOExperience #eoeXtour https://t.co/YYvDOCHzYa +04/18/2018,Actors,@chy_leigh,It’s Confirmed!!! YAAAAAS! FRENDZ... there are ONLY 100 TIX AVAILABLE!!! DO. NOT. MISS. THIS. https://t.co/BvaKWrx2NG +04/17/2018,Actors,@chy_leigh,YAAAAAAS!!! https://t.co/EHhoIKGkMb +04/17/2018,Actors,@chy_leigh,Friends - @eastofeli & I are SO honored to work with 2 UHMAZING organizations to bring support and awareness about… https://t.co/Y2tFEV0Ka0 +04/17/2018,Actors,@chy_leigh,@sanverscentral @TrueColorsFund @florianalima This... this warms my heart ❤️ +04/17/2018,Actors,@chy_leigh,@laurenhkramer @jonnabeer https://t.co/toGhGm3dXa +04/17/2018,Actors,@chy_leigh,@kennykraly @DavidHarewood @CarlLumbly @SupergirlRadio Some of my all time faves +04/17/2018,Actors,@chy_leigh,@sparklydanvers @TheCWSupergirl @JeremyMJordan @CarlLumbly I’ll see what I can do 🤣 +04/17/2018,Actors,@chy_leigh,@jonnabeer LOL +04/17/2018,Actors,@chy_leigh,@chyIersIeighs @TheCWSupergirl @JeremyMJordan @CarlLumbly LOL - SOOO TRUE 😎 +04/16/2018,Actors,@chy_leigh,Friends!! I’m SO EXCITED about tonight’s episode of @TheCWSupergirl !! @JeremyMJordan is phenomenal and with… https://t.co/s5EaCo3rfF +04/13/2018,Actors,@chy_leigh,Always grateful 🙏🏻❤️ https://t.co/FxvNKN0BE1 +04/07/2018,Actors,@chy_leigh,@TheVenskus @ClexaCon I LOVE YOU DUDE... #hatgameisstrong +04/07/2018,Actors,@chy_leigh,@englishride @eastofeli LOVE THIS. THANK YOU +04/06/2018,Actors,@chy_leigh,Hey @eastofeli fans... make sure you get to The Cowan Nashville tonight for free GA Tickets!! Doors open an 6pm Don… https://t.co/Zhi5r1zUHR +04/06/2018,Actors,@chy_leigh,Hey @ClexaCon friends!!! Gettin ready 2 head your way!!! Keep your eyes out for @_TNTCreative (The amazing… https://t.co/pdzdPdDynX +04/05/2018,Actors,@chy_leigh,Hey Friends - I’m getting geared up & ready for #Clexacon2018 !! Gotta make sure I get to #Vegas on time so I’m hea… https://t.co/t7PtSATtsW +04/04/2018,Actors,@chy_leigh,@ClexaCon CLEXACON CLEXACON CLEXACON!!! #AlexDanvers & I will be there Saturday FRENDZ 😎 ... Who’s gonna come by an… https://t.co/yN4cRZiVrc +04/04/2018,Actors,@chy_leigh,@AlexNPittman @eastofeli YOU ARE A DOLL!! Nathan and I loved speaking with you ❤️ +04/03/2018,Actors,@chy_leigh,"Friends, I hope y’all have an amazing time tonight w/ @eastofeli in NJ!! Wish I could teleport there. Production te… https://t.co/rUpM0Oq3XE" +04/03/2018,Actors,@chy_leigh,@reginaYhicks @TheCWSupergirl 😘 +04/03/2018,Actors,@chy_leigh,Get there quickly Friends!! Those @eastofeli tix get snatched up fast! Each #EOExperience has been completely uniqu… https://t.co/3eDvnoe1r4 +04/02/2018,Actors,@chy_leigh,"@MaddyAsi THERE YOU ARE!! It’s currently in my closet. You most certainly did not need to do that, Lady... to kindl… https://t.co/bCS7vHJ5b3" +04/02/2018,Actors,@chy_leigh,🙌🏻 https://t.co/n63alzJ0iB +04/02/2018,Actors,@chy_leigh,YAAAAAS #SupergirlSeason4 I’m so grateful for another year of the #DanversSisters and honored to represent our… https://t.co/hWXunrWHmR +03/29/2018,Actors,@chy_leigh,Thank you @TMobile for this AMAZING opportunity for the #NYC @eastofeli fans! Make sure you get to #TimesSquare ASA… https://t.co/AdJ4hfqX3g +03/28/2018,Actors,@chy_leigh,My friend @MehcadBrooks - @eastofeli and I are grateful for the shout out. Love my #Supergirl family https://t.co/nteDNPNupq +03/28/2018,Actors,@chy_leigh,"FRENDZ - @eastofeli and I are gettin’ our caffeine on right now, preparing for an amazing night at @hrcpittsburgh !… https://t.co/dAD0TJk05m" +03/28/2018,Actors,@chy_leigh,RT @AngLives: Since you've been good bunnies—hopping around w EOE shoutouts—here's a very special @eastofeli Easter Egg Goodie!🐣 Official #… +03/28/2018,Actors,@chy_leigh,YAAAS... #ChooseToBeFree 💥 #LostTransmission https://t.co/AkoCZD3F1q +03/28/2018,Actors,@chy_leigh,🔥❤️🔥 https://t.co/8Eht8K5nFy +03/27/2018,Actors,@chy_leigh,"RT @eastofeli: Still got some GA, VIP Platinum & VIP Silver tix left & wanted to make sure all you #Supergirl fans get a chance to see @chy…" +03/27/2018,Actors,@chy_leigh,"RT @DavidHarewood: Big shout out to @chy_leigh! +Best of luck for your upcoming shows on the East Coast. That’s some tour! Looks like a lot…" +03/27/2018,Actors,@chy_leigh,Thank you Friend!! https://t.co/c5zw8QyQLq +03/27/2018,Actors,@chy_leigh,@OdetteAnnable ❤️❤️❤️ +03/26/2018,Actors,@chy_leigh,"Go go go get @eastofeli #eoeXtour tix for #Pittsburgh, #NewYork, #Baltimore, #Teaneck, #Nashville & #Scottsdale ...… https://t.co/U3xI9slarO" +03/26/2018,Actors,@chy_leigh,"Whoop whoop!! Y’all in the loop! Get those tix, FRENDZ! https://t.co/HFQzxMZzna https://t.co/HKTEjzeJPy" +03/25/2018,Actors,@chy_leigh,#eoeXtour HERE WE COME EAST COAST... here’s the flier for ❤️NY @eastofeli https://t.co/qXUKYVsiX4 +03/24/2018,Actors,@chy_leigh,YES!!! #MarchForOurLives https://t.co/Id5o1H7QWb +03/24/2018,Actors,@chy_leigh,RT @eastofeli: Our NJ #EOEfamily looking forward to sharing 2 very unique & amazing #EOExperiences with you🙌🏻 email: info@eastofeli.com wit… +03/23/2018,Actors,@chy_leigh,"FRENDZ - I’m SO EXCITED for the @eastofeli #eastcoast run!! To answer u all... I’ll B in PA, on the boat in NY, MD,… https://t.co/YNy5UybTos" +03/21/2018,Actors,@chy_leigh,https://t.co/jAA710hlcw +03/21/2018,Actors,@chy_leigh,#SeeYaLaterSkaterz https://t.co/F15sphXxgN +03/17/2018,Actors,@chy_leigh,Just posted... Love you @eastofeli https://t.co/k8HQoPrlro https://t.co/Too1j71Pxf +03/12/2018,Actors,@chy_leigh,@_ariamaze @faultmypride @swinghouse ❤️❤️❤️ +03/12/2018,Actors,@chy_leigh,EPIC!!!! YAAAAS NICOLE 😍 https://t.co/KYCWRlhlju +03/12/2018,Actors,@chy_leigh,@eastofeli goers tonight... take pics for me! Make sure you’re extra loud ❤️ And tell my hubby I love him }{ +03/12/2018,Actors,@chy_leigh,"Friends, just got word from SG that they had to rearrange the schedule for Monday and they need me back 1st thing t… https://t.co/MArVInXO7n" +03/10/2018,Actors,@chy_leigh,Just FYI ... https://t.co/UGcUTZ7yNw +03/10/2018,Actors,@chy_leigh,RT @AngLives: So excited to see you all this weekend for @eastofeli ft @chy_leigh #eoeXtour LA @swinghouse 🎶 It’s been so awesome talking t… +03/10/2018,Actors,@chy_leigh,Just posted on @instagram https://t.co/vlgh27Icrk https://t.co/HFQzxNhaeI @eastofeli +03/10/2018,Actors,@chy_leigh,"RT @oahfoah: What are you doing tonight #LA? +@eastofeli #NewMusic #TONIGHT #SaturdayNight #tickets #supergirl #SwingHouse https://t.co/oe0…" +03/10/2018,Actors,@chy_leigh,@Lustranimation @eastofeli 😲 😍 +03/10/2018,Actors,@chy_leigh,"See you there, Friends!! #eoeXtour https://t.co/xuQMdyZNij" +03/10/2018,Actors,@chy_leigh,@swinghouse tonight!! Can’t wait to take the stage with @johannfrank and that sexy @eastofeli guy 😎 https://t.co/tkB52OkUMU +03/10/2018,Actors,@chy_leigh,https://t.co/jDN84J3udn +03/09/2018,Actors,@chy_leigh,@aley_leah @eastofeli Wait what? You bought ten?? +03/09/2018,Actors,@chy_leigh,"Your generosity is unparalleled, Regina Hicks. You are the queen of kindness ❤️ @eastofeli and I are so grateful fo… https://t.co/i16SPncbcT" +03/09/2018,Actors,@chy_leigh,We’z about to #GetDown so let’s turn it up @slimssf #SanFrancisco #BeThere https://t.co/LGcA3pH5yp +03/09/2018,Actors,@chy_leigh,"RT @Sue__Ing: For new and current listeners to @eastofeli @chy_leigh and @TheCityofSound, I hope you guys will have an amazing time this we…" +03/09/2018,Actors,@chy_leigh,RT @jynxisme98: #SanFrancisco the #eoeXtour featuring @TheCityofSound @eastofeli & @chy_leigh is coming 3/9! New music & merch + @TWLOHA wi… +03/09/2018,Actors,@chy_leigh,RT @createchange_me: Make it a #FabFriday #SuperSaturday & #SundayFunday by jammin w @eastofeli ft @chy_leigh in SF/LA. Visit our table & h… +03/07/2018,Actors,@chy_leigh,"Was nice to see you, Babe! Been a while 😘 Love every chance we get to sing together }{ Come see for yourself Friend… https://t.co/yS5DDCVdDG" +03/07/2018,Actors,@chy_leigh,"Late night jam w/ @eastofeli - singing, laughing, talking about tour info, @johannfrank with us for a super special… https://t.co/8avRG1Rb0Z" +03/07/2018,Actors,@chy_leigh,https://t.co/DKueSJZ9d3 +03/07/2018,Actors,@chy_leigh,"#SanFrancisco - @eastofeli & I are playing @slimssf this Friday, the 9th! Don’t miss out... Make sure you get your… https://t.co/fYA82lGJ3V" +03/06/2018,Actors,@chy_leigh,"Seeing double? @eastofeli & I are playing 2 shows in LA at @swinghouse this weekend, March 10th & 11th. The ONLY WA… https://t.co/p2t9T9QIwO" +03/05/2018,Actors,@chy_leigh,@eastofeli and I wanna see you here!! Hurry hurry!! https://t.co/bIdEMbYl07 +03/05/2018,Actors,@chy_leigh,It’s a #WestLeigh rehearsal for #eoeXtour Seattle ... Getting ready to rock @ElCorazonSEA someone snagged the phone! https://t.co/w3HSxyocEI +03/05/2018,Actors,@chy_leigh,@JAS11724 @photo_ego @ElCorazonSEA @united I’m so sorry you’re having trouble! @eastofeli & I hope you make it!! +03/03/2018,Actors,@chy_leigh,@eastofeli & I are SO honored to have @TWLOHA with us on the #eoeXtour !! Friends... make sure to stop by their boo… https://t.co/3NYl5dSOUv +03/03/2018,Actors,@chy_leigh,Tix link - https://t.co/HFQzxNhaeI https://t.co/0LCwSyfzr8 +03/03/2018,Actors,@chy_leigh,ARE U READY FOR SOME #ChildsPlay ? Here’s a little #SaturdayMotivation for what 2 expect @ an @eastofeli show 😎 Get… https://t.co/1a7U7IUVFz +03/02/2018,Actors,@chy_leigh,YAAAAY! More hugs 🤗 https://t.co/Zan5r7h61J +03/02/2018,Actors,@chy_leigh,Hey friends! make sure you check out @LollipopTheater and learn about the great work these folks are doing for some… https://t.co/bHr4Gpo0Zj +03/02/2018,Actors,@chy_leigh,OMG Friends... @eastofeli & I are SO EXCITED for this super special event! Tickets going fast 😎 Don’t miss out... T… https://t.co/4loNMcxDnV +03/01/2018,Actors,@chy_leigh,RT @eoexperience: @eastofeli #eoeXtour update: Hermosa Beach Show on March 14th has been canceled by venue. All ticket VIP/GA tickets can b… +03/01/2018,Actors,@chy_leigh,"This man makes me laugh everyday. He’s the light of my life, the apple of my eye, the catalyst for smile lines on m… https://t.co/8pGnfnl8RQ" +03/01/2018,Actors,@chy_leigh,"RT @eoexperience: 2 ALL #sanvers, #SupergirlCW & #GreysAnatomy fans b sure 2 catch @chy_leigh singing her heart out with @eastofeli At @ElC…" +03/01/2018,Actors,@chy_leigh,@eastofeli @_TNTCreative Dork Status Confirmed ✔️ +03/01/2018,Actors,@chy_leigh,💃🏻💥🕺🏻 https://t.co/ZP6cDvfEjI +02/28/2018,Actors,@chy_leigh,@ThatKevinSmith @ThatKevinSmith - I’m SO glad you’re home with your wonderful family. All of us (and I mean ALL) at… https://t.co/GFoFOcjkWt +02/28/2018,Actors,@chy_leigh,"We’re on a countdown!! In 3 days, @eastofeli @TheCityofSound & I are kicking off the #eoeXtour in #Portland and… https://t.co/oszCeox5CG" +02/28/2018,Actors,@chy_leigh,"RT @MusicOTFuture: This SATURDAY @eastofeli heads out to #Portland on the firsts stop of the #eoeXtour , grab your tix here https://t.co/i1…" +02/27/2018,Actors,@chy_leigh,#NewMusicMonday FRIENDS... make sure you (and your friends/family 😘) get tix for Portland AND Seattle this weekend… https://t.co/LUh0len63T +02/26/2018,Actors,@chy_leigh,This song is incredibly special. Our little Anni has been thru SO much in her first 8 yrs. From seizures to cross c… https://t.co/9kRdPM0RWF +02/26/2018,Actors,@chy_leigh,"RT @Sue__Ing: THIS WEEKEND! #Portland! Come join us for a night of #NewMusic from @eastofeli and @TheCityofSound, with very special Guest @…" +02/26/2018,Actors,@chy_leigh,"THIS IS EVERYTHING TO ME!! I’m SO proud of you, My Love! You’re the most passionate, most sincere, most gifted arti… https://t.co/0c58LYw2tK" +02/25/2018,Actors,@chy_leigh,RT @AngLives: Racial slurs or hate speech are not allowed and any person caught using them will be BANNED on the @createchange_me @eoexperi… +02/25/2018,Actors,@chy_leigh,"RT @AngLives: To report a specific violation of our organization's anti-bullying policy, send us a detailed message at https://t.co/zgaXGKO…" +02/25/2018,Actors,@chy_leigh,"RT @AngLives: 7️⃣of🔟 #eoeXtour Europe General Discussion is on our FORUM, all fans are welcome to post their efforts to get EOE to Europe.…" +02/25/2018,Actors,@chy_leigh,RT @AngLives: There are many fans using social media to get #eoeXtour to Europe. We love that! @MusicOTFuture runs the official European to… +02/25/2018,Actors,@chy_leigh,RT @AngLives: In partnership with @createchange_me & @MusicOTFuture we have also created the official MOTF FORUM! We invite you to check it… +02/25/2018,Actors,@chy_leigh,"RT @AngLives: 3️⃣of🔟 Every registered member of our website must agree to our Character Pledge developed by me, CEO @eastofeli & CCO @chy_l…" +02/24/2018,Actors,@chy_leigh,"AHHHHH!! I LOVE THIS @eastofeli PROMO! Well done @_TNTCreative ! Friends, this is just a glimpse of what’s to come… https://t.co/Jp6duEg3nz" +02/24/2018,Actors,@chy_leigh,Ask @eastofeli session - tomorrow at 11 PST 😎 https://t.co/n2clOP70fc +02/21/2018,Actors,@chy_leigh,Ooooooooo... that’s SEXY!! The screen are pretty cool too 😉😎 #iloveyoueoe #eoeXtour https://t.co/Sa24fr4lvN +02/21/2018,Actors,@chy_leigh,"Make sure y’all come to the #seattle #eoeXtour show! Classic venue, epic show, family and friends! @eastofeli… https://t.co/y6PE9Tlani" +02/21/2018,Actors,@chy_leigh,Retweeting my own tweet because it’s just that good! SEE Y’ALL IN PORTLAND!! Get tix now for you and your friends!… https://t.co/bcuHvb0ufN +02/19/2018,Actors,@chy_leigh,Seattle- Some of you will be at #ECCC March 3rd and I wish I could’ve been there too BUT I’m SO excited to be on s… https://t.co/bYCB0ZIp2d +02/17/2018,Actors,@chy_leigh,"PORTLAND... Where u at?! CANT WAIT to join @eastofeli & @TheCityofSound Saturday, March 3rd at the Hawthorne Theate… https://t.co/Q8fAAvRcY2" +02/14/2018,Actors,@chy_leigh,#TinselTownBaby https://t.co/iK6362Rit1 +02/13/2018,Actors,@chy_leigh,@eastofeli ❤️ Just posted on @instagram ... https://t.co/PH0HGqiU12 #eoeXtour +02/13/2018,Actors,@chy_leigh,FRENDZ!! Take the poll and let us know! I’m working overtime on my SG schedule to be at these shows! It ain’t easy… https://t.co/pLVCswVoD0 +02/07/2018,Actors,@chy_leigh,❤️ #eoeXtour ❤️ https://t.co/1PhEBNacvc +02/05/2018,Actors,@chy_leigh,👏🏻🙌🏻☝🏻 https://t.co/Bb7xaXmcfq +02/05/2018,Actors,@chy_leigh,I love love love this!!! I’m SO excited Babe!!! And what a Beautiful job @AngLives !! #eoeXtour https://t.co/AK4R1EZY0p +02/03/2018,Actors,@chy_leigh,@TheCityofSound @eastofeli #SavageSis 💥🧝🏻‍♀️💥 +01/29/2018,Actors,@chy_leigh,Alicia... OH MY HEART... This is insanely beautiful and inspiring and totally made me cry 😌 @eastofeli & I are so h… https://t.co/vtLOCH5Ak2 +01/24/2018,Actors,@chy_leigh,OMG... so many responses to @eastofeli ‘s call to arms and then his phone died!! 😆 He’s gonna start fresh tomorrow… https://t.co/2H9i7Hj4pE +01/24/2018,Actors,@chy_leigh,@_sernali 🍀 +01/24/2018,Actors,@chy_leigh,@_TNTCreative @leighslima ❤️❤️❤️ +01/24/2018,Actors,@chy_leigh,@thusspokebianca @eastofeli Love ❤️ +01/24/2018,Actors,@chy_leigh,@saanversx You got this!! +01/24/2018,Actors,@chy_leigh,@badassluthor @lgbtella @eoeftleigh @likemywaverly @fayekc_ !!! ❤️ +01/24/2018,Actors,@chy_leigh,@Ally_Mcdreamy 💘 +01/24/2018,Actors,@chy_leigh,@Nuriia_H 😍 +01/24/2018,Actors,@chy_leigh,@detectivedanvrs #Queen +01/24/2018,Actors,@chy_leigh,@leighslima 💥❤️💥 +01/24/2018,Actors,@chy_leigh,@cuddlyreyes It’s Muh Boiiiii Ryder!! ❤️ +01/24/2018,Actors,@chy_leigh,"@caIzonatorres Hey Luv, we’re still planning but we will DEF be in the UK 🇬🇧❤️" +01/24/2018,Actors,@chy_leigh,@iswearmyfealty 😍 +01/24/2018,Actors,@chy_leigh,@abbiedanvers Where are you? +01/24/2018,Actors,@chy_leigh,"Friends, there are so many more cities to announce for the #eoeXtour but we gotta show serious promise to venues &… https://t.co/R4YBFlnFjZ" +01/23/2018,Actors,@chy_leigh,RT @reginaYhicks: This! Y’all are not gonna want to miss the #eoeXtour with @eastofeli @TheCityofSound @chy_leigh kicking off in March.… +01/22/2018,Actors,@chy_leigh,FRIENDS!! GA/VIP tix 4 the #eoeXtour are on sale now!! Its a whole new experience!! #UPGRADE 😎The more cities we se… https://t.co/wUmDRbeMOr +01/21/2018,Actors,@chy_leigh,@MelissaBenoist @florianalima @caitylotz @TheVenskus @OdetteAnnable #KatieMcgrath @reginaYhicks @rreiffer12… https://t.co/6mfT4HVTWU +01/20/2018,Actors,@chy_leigh,@imjustincharles Happy birthday @imjustincharles !! ❤️ from @eastofeli & I +01/20/2018,Actors,@chy_leigh,@caitylotz @shethority #same +01/20/2018,Actors,@chy_leigh,I have so much respect for this woman! @Zendaya ... I know you don’t know me but as a mom of 2 young girls that ado… https://t.co/y2k9V0Up9C +01/20/2018,Actors,@chy_leigh,@chyleighdnvrs 😱😍 +01/20/2018,Actors,@chy_leigh,@ItsATwinThingYT This is a BEAUTIFUL video... I love that @MelissaBenoist lady. She’s pretty special 👯‍♀️ +01/19/2018,Actors,@chy_leigh,@melanie_sv2sh Hairspray and 🍀 +01/19/2018,Actors,@chy_leigh,@siqqsnaps #10 +01/19/2018,Actors,@chy_leigh,@Lustranimation This is incredible!! As always ☺️ +01/19/2018,Actors,@chy_leigh,@badassluthor @eastofeli ❤️🎵 +01/19/2018,Actors,@chy_leigh,@chylerspaget @eastofeli 😍 +01/19/2018,Actors,@chy_leigh,@sawyerregui Yaaaas!! +01/19/2018,Actors,@chy_leigh,@radziczek007 Oh my... oh oh my... this is AWESOME! 😂 +01/19/2018,Actors,@chy_leigh,@lilysbenoist @eastofeli @florianalima This means so much to @eastofeli & I! And the fact that the flower is in hon… https://t.co/Zlpx0ym7Rl +01/19/2018,Actors,@chy_leigh,"RT @starfuryevents: Don't miss out as we reunite these two amazing ladies, @chy_leigh and @florianalima at Starfury: Ultimates next May! It…" +07/01/2018,Actors,@katewalsh,"Who remembers this old thang? No big deal, just me hanging out on a yacht with #BillionaireBoyfriend years ago. 😎 G… https://t.co/zTrvMG0zUw" +06/30/2018,Actors,@katewalsh,Caturday relaxation goals 😴 https://t.co/6J3p1TN97k +06/29/2018,Actors,@katewalsh,"Samples are hereeee ❤️ If ur dying to smell @Boyfriend, grab this little guy. It’s only $4 AND ships for free! Get… https://t.co/hSLn0yq1AO" +06/29/2018,Actors,@katewalsh,RT @iamamyrhodes: Me listening to the new Drake album. https://t.co/mjjEqwb9bJ +06/28/2018,Actors,@katewalsh,#TBT Kickin up my feet and relaxin. https://t.co/1Kw7nwtVqP +06/28/2018,Actors,@katewalsh,Office. https://t.co/vhkhagbjse +06/28/2018,Actors,@katewalsh,U guys. I just discovered shelfies. 😱 I mean...who knew these were a thing?! What's on ur beauty shelf besides… https://t.co/K91jmggdXX +06/27/2018,Actors,@katewalsh,It’s #NationalSunglassesDay u say? We all know I love a good pair. 😎 https://t.co/7hrbaxSnUu +06/26/2018,Actors,@katewalsh,I mean… #ifyousayso https://t.co/tHai0Qii6P +06/26/2018,Actors,@katewalsh,This is pretty beautiful... https://t.co/6hUDpEuazN +06/25/2018,Actors,@katewalsh,Shimmie shimmie for Monday & white denim. 💃🏻💃🏻 https://t.co/0goPCkZEBe +06/24/2018,Actors,@katewalsh,"RT @DanRather: A true Sunday feel good story. Amidst the bleak news, let's try to hold on to our common humanity and foster empathy. Kudos…" +06/24/2018,Actors,@katewalsh,Sun cat catnap. ☀️ https://t.co/aYE4TFgmEc +06/24/2018,Actors,@katewalsh,some pure joy... https://t.co/IoLa3ETRTy +06/23/2018,Actors,@katewalsh,"❤️ this @MusingsofaMuse. Thanks, gal! So glad you like @Boyfriend. https://t.co/IZuEGDdMYM" +06/23/2018,Actors,@katewalsh,Don’t forget it 💕 https://t.co/wmuNu2oo1X +06/23/2018,Actors,@katewalsh,This is absolute madness. https://t.co/Qbig0WWtkh +06/22/2018,Actors,@katewalsh,#FBF So much glitz & glamour for my old #BillionaireBoyfriend shoot in 2012. ✨✨ We're letting go of Billionaire Boy… https://t.co/Q1FHWxxfUi +06/22/2018,Actors,@katewalsh,Happiest of birthdays to one of my favorite gals @AmyBrenneman! 😘😘 https://t.co/yXaFZwzjDx +06/22/2018,Actors,@katewalsh,What an incredible creature... https://t.co/zJ80ZY8IqO +06/21/2018,Actors,@katewalsh,"Glow + @Boyfriend = the perfect selfie! 🤳🏼 If u haven’t already, now’s the time to get ur selfie partner! Use the c… https://t.co/f1RGnJc4Ta" +06/20/2018,Actors,@katewalsh,In times like these an emotional support cat is essential. #pablo https://t.co/ouM9cOJ4Ve +06/19/2018,Actors,@katewalsh,Some good news...❤️ https://t.co/6UuIt4bPsq +06/19/2018,Actors,@katewalsh,We heard uuuuu…. Excited to share that we’ve been testing @Boyfriend Body Creme! Can u tell that I’m loving it alre… https://t.co/I8nUtljI3p +06/19/2018,Actors,@katewalsh,RT @iamamyrhodes: Help if you can. ❤️ https://t.co/r8nPtQxDqP +06/19/2018,Actors,@katewalsh,So proud & thrilled to honor @CovenantHouse & the lovely @AudraEqualityMc w/ @StephenAtHome 💕 https://t.co/bwGfeAkFsw +06/18/2018,Actors,@katewalsh,This can't be who we are as a country. Please call your senators: 202-224-3121 #EndFamilySeparation… https://t.co/WIBAJhL4e0 +06/18/2018,Actors,@katewalsh,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Actors,@katewalsh,Same Lisa. Same. #MondayMood https://t.co/yJ21zEwHh4 +06/17/2018,Actors,@katewalsh,Anyone else get cyborg vibes? 💙 https://t.co/o2gFyhbayq +06/16/2018,Actors,@katewalsh,What’s better than a morning puppy-rito? https://t.co/LjZeWkeP0x +06/15/2018,Actors,@katewalsh,Spending the day in bed. Thanks @casper for the comfy gift. I'm never leaving. https://t.co/KwhPgs8ncQ +06/14/2018,Actors,@katewalsh,"As the @Boyfriend team & I are creating amazing new products and scents, it's time for me to break up with our Bill… https://t.co/oIgtJ86BG0" +06/14/2018,Actors,@katewalsh,Ahhh #throwback to sobbing on the beach while filming my old Billionaire Boyfriend campaign in 2012. 😭 It may not l… https://t.co/nKMNuymu9P +06/14/2018,Actors,@katewalsh,#TBT @sergiowastaken working his magic on me in the early days. 💋 https://t.co/gpHYglxZNk +06/14/2018,Actors,@katewalsh,Whoahhh.... https://t.co/jhMbKozKy7 +06/13/2018,Actors,@katewalsh,"Ugh, the utter disrespect! https://t.co/MfLBTVCBQZ" +06/13/2018,Actors,@katewalsh,RT @asad_abdullah20: What a majestic creature. https://t.co/6nVcqtHKMs +06/12/2018,Actors,@katewalsh,Loving all of the new @Boyfriend love! 😘 The team & I are working on many more exciting things to come. What would… https://t.co/PCtuZ83PWP +06/12/2018,Actors,@katewalsh,Thisssssssss...!!! 💪🏽 ❤️⚡️😊 https://t.co/TQ9YSyyz2S +06/11/2018,Actors,@katewalsh,It’s fine - everything’s fine. #mood #morecoffee https://t.co/mx0wpWDFOV +06/10/2018,Actors,@katewalsh,Easy like Sunday morning 🦋 https://t.co/ztnpkAkuRN +06/09/2018,Actors,@katewalsh,I love this. Thank u @CovHousePrez https://t.co/GCkMyOIKhh +06/09/2018,Actors,@katewalsh,Her life is so ruff 💤 🐶 #RosieTheDog https://t.co/EYk2yPnhvd +06/08/2018,Actors,@katewalsh,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/08/2018,Actors,@katewalsh,"Can you name a better duo?! 👯👯 +In honor of #NationalBestFriendsDay, @Boyfriend paired these besties up for a limit… https://t.co/dsNlP7i2FN" +06/07/2018,Actors,@katewalsh,YES - things like taking cookies out of the oven before they’re “ready” #begreat #thursdaythoughts https://t.co/a1qVABIwdS +06/07/2018,Actors,@katewalsh,"RT @ABC: 74 years ago today, the United States armed forces and its allies invaded the beaches of Normandy, France, to liberate Europe from…" +06/06/2018,Actors,@katewalsh,"Looks like ur @Boyfriend orders are starting to get to u! I’m loving all the pics! 💕 + +Keep em coming and make sure… https://t.co/XIUS77pgcW" +06/06/2018,Actors,@katewalsh,ecneics <> science https://t.co/DFUp64ZclW +06/05/2018,Actors,@katewalsh,"RT @zachbraff: Don’t give up. People love you. + +National Suicide Prevention Lifeline: 1-800-273-8255" +06/05/2018,Actors,@katewalsh,I’m on the FIRST EVER episode of #DENtalks podcast w @DENmeditation. Meditation has become a huge part of my life &… https://t.co/D8xuE888ue +06/04/2018,Actors,@katewalsh,Pablo has some thoughts about Mondays… https://t.co/LRMnykH42e +06/03/2018,Actors,@katewalsh,Hi there 😽 #meow https://t.co/lo8u1JQYla +06/03/2018,Actors,@katewalsh,💕❤️ https://t.co/lMUrnJx5kk +06/02/2018,Actors,@katewalsh,I’m just so in love with @Boyfriend’s new look! And the smell… don’t even get me started - SO delicious. The same s… https://t.co/T4huKIrMSW +06/01/2018,Actors,@katewalsh,"Today, I #WearOrange to give a voice to the 96 Americans who die and the hundreds more who are injured by gun viole… https://t.co/4urtSfZ2Sy" +06/01/2018,Actors,@katewalsh,Amen https://t.co/FRBYHOyc9C +05/31/2018,Actors,@katewalsh,"#TBT to Malibu beach days and posing carefree with my Aperol Spritz ☀️🍸 + +📸: #amandarowanimagery https://t.co/h7m4fB7AEV" +05/31/2018,Actors,@katewalsh,These little guys are so cute & convenient. 😊 The @Boyfriend Pulse Points also ship internationally! Get ur own:… https://t.co/Rw8KiE3XTT +05/30/2018,Actors,@katewalsh,I’m thrilled to share that I’m judging a crowdsourcing competition sponsored by @conservationorg @NatGeo @rare_org… https://t.co/lIwTIXipdB +05/30/2018,Actors,@katewalsh,@kellyoxford This is everything +05/29/2018,Actors,@katewalsh,RT @healthmediagal1: TY again @katewalsh Here is our #interview on #health #mentalhealth #13reasonwhy #13ReasonsWhyS2 #13ReasonsWhySeason2… +05/29/2018,Actors,@katewalsh,The day has finally come! @Boyfriend pre-orders are on their way to u starting today! Miss out on the pre-order? No… https://t.co/bEPVMYmZFz +05/29/2018,Actors,@katewalsh,We heard you! @Boyfriend is now shipping ur pre-orders 😽This is all for (and because of) YOU! Can't wait for u to g… https://t.co/kzyx9otBe7 +05/29/2018,Actors,@katewalsh,I’m live on @Boyfriend’s Instagram RIGHT NOW! 😽 Come chat all things Boyfriend w me → https://t.co/sZoDQRXrv0 +05/28/2018,Actors,@katewalsh,Hope everyone is enjoying #MemorialDay. Thank you to the servicemen and women who have fought for us. https://t.co/qyPofoaLhO +05/27/2018,Actors,@katewalsh,😹😹😹 https://t.co/4kVJv8zWeu +05/27/2018,Actors,@katewalsh,"#BoyfriendPerfume is having a sweet #MemorialDayWeekend sale! With a @Boyfriend purchase, you’ll get a free Billion… https://t.co/8KLTwFm82B" +05/26/2018,Actors,@katewalsh,A little sparkle filter never hurt. https://t.co/zPMcRoVf0j +05/26/2018,Actors,@katewalsh,RT @laurafleur: Irish women who have come #hometovote arriving at Dublin airport. https://t.co/jTMm1xg9a1 +05/26/2018,Actors,@katewalsh,❤️this https://t.co/JG55sJ9J8G +05/25/2018,Actors,@katewalsh,The fight for equality CAN’T stop in our own backyards. I’m so proud to stand with @ONECampaign and the… https://t.co/z1ybd8Ghop +05/25/2018,Actors,@katewalsh,#Pablo TGIF kitties. https://t.co/DmVzWmSDM6 +05/24/2018,Actors,@katewalsh,It’s not too late to pre-order these beauties. 🌺 Can’t wait for you to get your hands on your #BoyfriendPerfume. Pr… https://t.co/24iAsSrMPB +05/24/2018,Actors,@katewalsh,Had a blast chatting w/@healthmediagal1 ❤️💕 https://t.co/KMk6j17FF4 +05/24/2018,Actors,@katewalsh,"Umm, can someone please toss me that beach ball? #tbt +@sergiowastaken https://t.co/TUqu8d85Ds" +05/23/2018,Actors,@katewalsh,"Title X gives women access to contraception and more control over their lives, health, careers, & economic security… https://t.co/2C4Tk9Qojw" +05/23/2018,Actors,@katewalsh,So excited for this! 💕 https://t.co/SsoDgpF2CD +05/23/2018,Actors,@katewalsh,Gosh I love this...😊 https://t.co/DZRGMMb3Vq +05/23/2018,Actors,@katewalsh,"RT @oceana: It's #WorldTurtleDay, break out of your shell! https://t.co/FEgfYVcNJE" +05/23/2018,Actors,@katewalsh,My bro Joe aka The Better Walsh ❤️ https://t.co/yLlqYm4VCI +05/22/2018,Actors,@katewalsh,"Isn’t the #BoyfriendPerfume box b-e-a-utiful?! Excited to finally share it with you. Not only does it look good, bu… https://t.co/3z7a5Trfv5" +05/22/2018,Actors,@katewalsh,Rosie posie 💐 (I know those are tulips…just really needed that rhyme) https://t.co/5z1YJxfXYH +05/22/2018,Actors,@katewalsh,Happy birthday @cher #queen https://t.co/uM1M8OZVIz +05/21/2018,Actors,@katewalsh,The Holy Grail 🙌🏻 There’s still time to pre-order your #BoyfriendPerfume! Don’t forget: If you pre-order the fragra… https://t.co/Y76wkbRw94 +05/20/2018,Actors,@katewalsh,My spirit animal #yougogirl https://t.co/uzNqw8KEO3 +05/19/2018,Actors,@katewalsh,#Caturday mood. 😴 #pablo https://t.co/1w8LXerrYA +05/18/2018,Actors,@katewalsh,It’s officially officially out! U can stream all episodes of @13ReasonsWhy season 2 on @netflix now! I give u permi… https://t.co/xeTnOnmCmT +05/18/2018,Actors,@katewalsh,"RT @dylanminnette: @netflix Season 2 of 13 Reasons Why, like season 1, can be unflinching, dark and even hard to watch at times. please vie…" +05/18/2018,Actors,@katewalsh,RT @13ReasonsWhy: The truth doesn't always make things right. Season 2 of #13ReasonsWhy is now streaming. https://t.co/OTDMrzwzIt +05/17/2018,Actors,@katewalsh,Hey everyone! Tune into @HomeandFamilyTV today at 10am/9c to find out how you can join me and #PerkUpWithProtein 💪🏻… https://t.co/QiN74IufAB +05/16/2018,Actors,@katewalsh,❤️💕 https://t.co/nCrk3aCFkT +05/16/2018,Actors,@katewalsh,▶️🖤 May 18th - @13ReasonsWhy Season 2 on @Netflix. #13ReasonsWhy https://t.co/tIq96hrjOd +05/16/2018,Actors,@katewalsh,Oh. This is happening. In just a couple of days. https://t.co/lz1l37kFKX +05/16/2018,Actors,@katewalsh,"RT @TheRealDaytime: Love #GreysAnatomy, #PrivatePractice AND #13ReasonsWhy? Then don’t miss it tomorrow when @KateWalsh stops by! 💋We’re LI…" +05/15/2018,Actors,@katewalsh,Takin’ care of business. But gotta stay comfy ✌🏼 https://t.co/aExE0ptLkf +05/14/2018,Actors,@katewalsh,🤣🔥 https://t.co/I3XjkRVe2Y +05/14/2018,Actors,@katewalsh,Monday. https://t.co/EMxWyhADg0 +05/13/2018,Actors,@katewalsh,❤️💕 https://t.co/qjdnLrv0Ri +05/13/2018,Actors,@katewalsh,Me and sweet mama angela aka il duce aka Angela Embree - thanks for giving me life ❤️ #MothersDay https://t.co/zuQqxkOSWN +05/12/2018,Actors,@katewalsh,"A moment in time when I wasn’t in PJs with a messy bun on my head ✨ thanks again @makeupqueennyc , + @ryantrygstad &… https://t.co/LcD3TqBu6b" +05/12/2018,Actors,@katewalsh,❤️💕 https://t.co/xbN3cnwKRJ +05/12/2018,Actors,@katewalsh,Aka supes hot smarty 👖 https://t.co/YCBYrZekEW +05/11/2018,Actors,@katewalsh,"RT @Boyfriend: Loving all the feedback on Boyfriend’s return! 💕💕 Check out @sanjapekic’s write up on @fragrantica! + +https://t.co/rL3hkmrTV6" +05/11/2018,Actors,@katewalsh,#FBF to that time @kalpenn & I toured w/ @the_USO & I went down when not 1 but 2 military 🐶s chased me wearing a ru… https://t.co/R6V1QIzxw8 +05/10/2018,Actors,@katewalsh,@AmyBrenneman ! I LAVA u https://t.co/OIKn8IoWn0 +05/10/2018,Actors,@katewalsh,"But first…coffee ☕️ #tbt to the #EnsureMaxProtein launch & sharing my #healthgoals. Getting enough protein is key,… https://t.co/hHumkRIEqx" +05/09/2018,Actors,@katewalsh,The @Boyfriend Pulse Point is puuurfect for stashing in your bag for an afternoon pick-me-up. 💁🏼AND this little guy… https://t.co/LZIzZTvhQV +05/09/2018,Actors,@katewalsh,More of me on @Netflix! Excited to join Umbrella Academy! From now you can refer to me as #TheHandler 😏 https://t.co/0o59BW9J0F +05/08/2018,Actors,@katewalsh,RT @AlishaBoe: 10 days 👋 https://t.co/Zdfu76wexd +05/08/2018,Actors,@katewalsh,AND the song in this trailer is by my sweet pal @anyamarina! ❤️ +05/08/2018,Actors,@katewalsh,Are u ready? #13ReasonsWhy Season 2 coming May 18 @13ReasonsWhy @netflix https://t.co/8nKLwJNBLL +05/07/2018,Actors,@katewalsh,I mean… the audacity! (This literally happens every day) 📹 @hellogiggles https://t.co/NM10uGwo84 +05/07/2018,Actors,@katewalsh,Cruel.... https://t.co/P3KVPJt8eE +05/06/2018,Actors,@katewalsh,"I’m on tonight’s episode of #LongIslandMedium - check it out on @TLC at 8/7C! Such a cool experience. Thanks,… https://t.co/dQ3DKXQjzM" +05/06/2018,Actors,@katewalsh,Sometimes my hair gives me a little faux mustache 👨🏻 https://t.co/wKRJ7Lekx2 +05/05/2018,Actors,@katewalsh,Happy #CincoDeMayo from Pablo! And never forget - taco cat spelled backwards is still taco cat 🐱 https://t.co/05crg4VvRi +05/05/2018,Actors,@katewalsh,Sweet dreams... #billiam #heavensentheavenbound https://t.co/ctJJp4V6mk +05/04/2018,Actors,@katewalsh,Billy’s go-to move: “Bathe Pablo and then beat his ass” 😹💞 #RIPBilly https://t.co/wigJeOb7JU +05/04/2018,Actors,@katewalsh,"This little guy saw me through so much and slept in the crook of my arm every night I was home, through long hours… https://t.co/diJSuzEKHz" +05/04/2018,Actors,@katewalsh,"The lovely Derek Brake saw him out of this world at home in NYC, along with Pablo and Rosie. I got to say goodbye t… https://t.co/Nh9Gp9BGyw" +05/04/2018,Actors,@katewalsh,"Hey friends, I just wanted to let you all know that Billy the Cat, aka Billiam E. Pants, aka Billiam, aka Billy Pan… https://t.co/kp3y48BGrG" +05/04/2018,Actors,@katewalsh,💕 https://t.co/4J4oXbXRxe +05/03/2018,Actors,@katewalsh,"Olivia Baker is back. May 18th. @13ReasonsWhy + +#Season2 #13ReasonsWhy https://t.co/NoBVvbOHpn" +05/02/2018,Actors,@katewalsh,"Side note: ​Pre-sale purchasers get first access to our private Facebook group, Boyfriend Confidential. Members get… https://t.co/bhYVrdy3bs" +05/02/2018,Actors,@katewalsh,Lean on me 🎶 Pre-Sale for #​Boyfriend​Perfume​ is still happening. ​It's the same scent you know and love! ​Get urs… https://t.co/TwMLqC8VlI +05/01/2018,Actors,@katewalsh,Spring has sprung in #NYC 😍 Love seeing these little beauties on my walk. https://t.co/hsKbPDDM3J +04/30/2018,Actors,@katewalsh,"Here we go! May 18th. Season 2. #13ReasonsWhy + +@13ReasonsWhy @netflix https://t.co/cr5XgHs4gV" +04/30/2018,Actors,@katewalsh,"#ThankYouCecile for helping to grow Planned Parenthood from 3 million supporters to nearly 12 million, and inspirin… https://t.co/uynk2Koxw3" +04/30/2018,Actors,@katewalsh,RT @13ReasonsWhy: The truth is developing. https://t.co/rwCobzhbC0 +04/30/2018,Actors,@katewalsh,Shared my pick with @InStyle for your mamas on #MothersDay! Take a look to see what I chose. (hint hint: @boyfriend) https://t.co/FujgVtYMzp +04/30/2018,Actors,@katewalsh,Sunday night vs Monday morning. #mood https://t.co/colRzkrFpd +04/29/2018,Actors,@katewalsh,Happy birthday #katherinelangford! Hope your day is filled with so much ❤️ #13ReasonsWhy https://t.co/3gO8fc3GbY +04/28/2018,Actors,@katewalsh,😍😘 https://t.co/WXlznjNLFr +04/28/2018,Actors,@katewalsh,Oh hi there 🐱| 📷 @TheVampiresWife https://t.co/7HVUi31UxJ +04/27/2018,Actors,@katewalsh,Yes lady! https://t.co/4zccsFXD4m +04/27/2018,Actors,@katewalsh,I'll never tell... https://t.co/EAxGPhxu9X +04/27/2018,Actors,@katewalsh,"Oh hi. It’s just me, Circa 1998, leaning longingly in a doorway, 👄 parted, eyes saying ‘please fucking hire me so I… https://t.co/nejhypB8QA" +04/26/2018,Actors,@katewalsh,The OG Boyfriend bottle evolution… some things just get better with time 😘 Pre-order ur #BoyfriendPerfume here →… https://t.co/tVO8vn6ary +04/25/2018,Actors,@katewalsh,This is perfect 😂 @wendimclendonco (via @BritandCo) https://t.co/1vyet58roE +04/24/2018,Actors,@katewalsh,"#BoyfriendPerfume is Back! ⚡️ + +https://t.co/aZ85y4cNLd" +04/24/2018,Actors,@katewalsh,From Mary Oliver 💞 https://t.co/JqllXap2CK +04/24/2018,Actors,@katewalsh,😳💕 https://t.co/mEtMD9fuli +04/23/2018,Actors,@katewalsh,I need this guy to come say this to me most mornings! ❤️💔❤️ https://t.co/fw27jK1fH5 +04/23/2018,Actors,@katewalsh,We poured our heart and soul into bringing @Boyfriend back for you guys. I can’t wait for u to have it in ur cute l… https://t.co/waJNhQVPuy +04/22/2018,Actors,@katewalsh,"Happy #EarthDay! Want to help save forests? You can do so by buying paper, wood, or other forest products with the… https://t.co/w4EBUjDeC4" +04/21/2018,Actors,@katewalsh,This “cat”sterpiece brought to you by @ninamillin 😻#caturday https://t.co/dM1PJECmaV +04/21/2018,Actors,@katewalsh,😺😺 https://t.co/V37Actvggo +04/20/2018,Actors,@katewalsh,RT @trvpism: sometimes u just gotta clean your room and apply an elaborate skincare routine and pretend that’s equivalent to getting ur lif… +04/20/2018,Actors,@katewalsh,Boom! 💕🥂 https://t.co/yPF1aubtTu +04/20/2018,Actors,@katewalsh,To my international bbs.... Did u know the OG @Boyfriend Pulse Point ships internationally?! 🤗 Now you do! Get urs… https://t.co/e3m7A1Z79u +04/20/2018,Actors,@katewalsh,YES https://t.co/yYFo5xydV9 +04/20/2018,Actors,@katewalsh,Is that too much to ask? 🍩 > 🥗 https://t.co/FQjU3lI2nN +04/19/2018,Actors,@katewalsh,So immensely proud of @tiffanyhaddish. #TIME100❤ https://t.co/PDIT3eKEIM +04/19/2018,Actors,@katewalsh,#TBT to this amazing dress. It reminds me of saltwater taffy… anyone else see it? Just me? …Okay cool. https://t.co/ZimrHqUzeO +04/19/2018,Actors,@katewalsh,So great to see ya gal! Had a blast getting to chat with u 😊 https://t.co/U20PWGewpb +04/18/2018,Actors,@katewalsh,"So much fun getting to chat with @WendyWilliams about working on #GirlsTrip, #13ReasonsWhy and much much more! Chec… https://t.co/MrM9xhUZ3d" +04/18/2018,Actors,@katewalsh,Can’t wait to share Season 2 of #13ReasonsWhy with you guys! Spilled a few deets w #DailyPop yesterday 🙃 https://t.co/ZwmPUJCzCL +04/18/2018,Actors,@katewalsh,Did you hear? Your #BoyfriendsBack!! Pre-sale for the Original @Boyfriend perfume is happening now! Who already pre… https://t.co/X8sLfwB6PF +04/18/2018,Actors,@katewalsh,Got to talk about my health journey the past few years + #13ReasonsWhy w #ExtraTV. Watch it tonight! https://t.co/RYrPjd3WFC +04/18/2018,Actors,@katewalsh,We’re going LIVE in 5 mins! Head over to @AbbottGlobal’s Facebook page now to chat with me about all things healthy… https://t.co/oDLMVo4Lih +04/18/2018,Actors,@katewalsh,this! #Her https://t.co/2WEBdcN0Yn +04/18/2018,Actors,@katewalsh,"I’m excited to be teaming up w/ @AbbottGlobal to introduce their new nutrition drink, #EnsureMaxProtein! It’s a gre… https://t.co/ImoaIPzU2v" +04/17/2018,Actors,@katewalsh,"There's a description of the fragrance here --> https://t.co/0qxr1mkzl7 + +Top notes are Night Blooming Jasmine & ju… https://t.co/x3bYAbxHeG" +04/17/2018,Actors,@katewalsh,I always say: 2 Boyfriends r better than one 😍! #BoyfriendPerfume https://t.co/Q7sesBjtiy +04/17/2018,Actors,@katewalsh,The Boyfriend Pulse Point ships internationally! 🙃 https://t.co/Zz4qcWTwqb https://t.co/ekBaC7Wib3 +04/17/2018,Actors,@katewalsh,Loved getting to chat with @wwd about @Boyfriend and why we decided to bring it back! We put so much ❤️ into gettin… https://t.co/iQVIwJDUxg +04/17/2018,Actors,@katewalsh,"Today is the day!! 🎉🎉 Pre-Sale for the Original @Boyfriend EDP and Pulse Point starts NOW! Oh, and the pulse point… https://t.co/LPlVEvZ6Q8" +04/17/2018,Actors,@katewalsh,"Loved spending my AM w/ @klgandhoda! We talked #13ReasonsWhy, the perks of protein & reaching our #healthgoals. Vis… https://t.co/RThwZVSfgh" +04/16/2018,Actors,@katewalsh,TOMORROW! Pre-Sale for @Boyfriend starts! 😍 9am PST - Set ur clocks and get reeeaadddy! https://t.co/wioazEZUz5… https://t.co/v9YFBwoJyc +04/16/2018,Actors,@katewalsh,Happy Monday! Catch me on the season 2 premiere of my fave @sonyawalger’s podcast @bookishsonya! Chatting about som… https://t.co/I6gQnZwm0B +04/16/2018,Actors,@katewalsh,Some 💕for Monday https://t.co/7gyal5s2Jb +04/16/2018,Actors,@katewalsh,"I’ve got a surprise coming your way soon! Hint, hint: Tune into @AbbottGlobal’s FB page on April 18 at 3:30 PM ET f… https://t.co/b9uhOHxGLq" +04/15/2018,Actors,@katewalsh,Sunday https://t.co/kwBIDoFsCK +04/15/2018,Actors,@katewalsh,This...❤️💕😳 https://t.co/Ifou0dmEzm +04/14/2018,Actors,@katewalsh,Been dealin’ with this all day 🏝💕🙏🏽 https://t.co/0pRTBvYXQ9 +04/13/2018,Actors,@katewalsh,@bader_diedrich 🤣🤣 +04/13/2018,Actors,@katewalsh,"Ahh, I ❤️this & ❤️ u @ConanOBrien https://t.co/ESHgCmJFzO" +04/13/2018,Actors,@katewalsh,RT @nowthisnews: People are paying to nap at this new cafe https://t.co/H5hdjaJx1w +04/13/2018,Actors,@katewalsh,#FBF to flowery spring dress vibes 💐🌷 https://t.co/fMbYgfob6t +04/12/2018,Actors,@katewalsh,Finishing touches w the @Boyfriend team 🙌🏻 #NewLookSameBoyfriend OG is #ComingSoon! Sign up to get the deets first!… https://t.co/PwsmKiPGoQ +04/12/2018,Actors,@katewalsh,Aww! Had a blast with this one. 💞 Don’t miss the Season 2 premiere of Bookish on Monday to hear me chat about some… https://t.co/H57WuIHUDs +04/12/2018,Actors,@katewalsh,#tbt to the #bahamas when we shot our #billionaireboyfriend perfume commercial & I channeled my inner bedazzled/psy… https://t.co/iyYyENUuhq +04/12/2018,Actors,@katewalsh,This makes me 😢it’s so true! What would I do w/o my #rosiethedog? Adopted her 10yrs ago 🐶⚡️#rescuedogs https://t.co/AT9VDsf9EW +04/11/2018,Actors,@katewalsh,💕sending u all big love today https://t.co/qqdrr8Tq1A +04/10/2018,Actors,@katewalsh,Today is #EqualPayDay. A day to symbolize how far into the future the average woman has to work to earn the same am… https://t.co/ulK80ab8Nt +04/10/2018,Actors,@katewalsh,STILL the baby of the family😍 What would I do without my bros & sis? #NationalSiblingDay https://t.co/iQtsuTEZ0R +04/10/2018,Actors,@katewalsh,I need the buddy benching my life! 💕❤️ https://t.co/MfjNLsJBHN +04/09/2018,Actors,@katewalsh,Getting all our ducks in a row…. Original Boyfriend will be here sooner than you think! Stay up to date here →… https://t.co/PlXyYPcf4y +04/09/2018,Actors,@katewalsh,monday (burrito) mood 📷: Jean Jullien https://t.co/1gDNc5iVrE +04/08/2018,Actors,@katewalsh,Keeping watch. Careful… he’s a highly trained guard cat. #meow #meOUCH https://t.co/RWgDIgxZYO +04/07/2018,Actors,@katewalsh,The handiwork of #ChadWood & @sergiowastaken - thanks fellas https://t.co/MxgqUR6pSh +04/06/2018,Actors,@katewalsh,THIS guy! Full recovery #billythecat #mantlecat #homesweethome🏡💕 😻 https://t.co/TYSSNLDYyA +04/06/2018,Actors,@katewalsh,Oops > what if 🤷🏻‍♀️ https://t.co/Z07qmADKCf +04/05/2018,Actors,@katewalsh,How’s this for a #TBT… we were babies! @Mariska @ChristaBMiller 😍 https://t.co/kOBrPPwQVX +04/04/2018,Actors,@katewalsh,Pretty much a dream come true to work w/these vocal gods on @bestfiends - @hamillhimself @MAURICELAMARCHE &… https://t.co/e0Qswx4GwZ +04/04/2018,Actors,@katewalsh,"Hey heeyyyy! Starting today, every Billionaire @Boyfriend purchase will come with a FREE sample of the Original Boy… https://t.co/rUovPS1Bk5" +04/03/2018,Actors,@katewalsh,"This LA sunshine is just the worst, right? 😏 https://t.co/od0KQp3I8K" +04/02/2018,Actors,@katewalsh,Loved getting to chat about @boyfriend perfume (the countdown is ON!) and the inspiration behind the Boyfriend Cand… https://t.co/rHHFiB0jan +06/30/2018,Actors,@KellyMcCreary,Obviously. https://t.co/ERUtKh5f0Y +06/30/2018,Actors,@KellyMcCreary,"RT @ShanaRedmond: The “greatest legal minds” in the US just broke the already weak back of organized labor. + +I don’t want to see one more…" +06/29/2018,Actors,@KellyMcCreary,"RT @laurenduca: The shooting today in the Capital Gazette newsroom in Annapolis, Maryland cannot reasonably be separated from the President…" +06/29/2018,Actors,@KellyMcCreary,RT @harikondabolu: Don’t tell me it’s just a “few” bad apples. This system is racist to the core. This man did not deserve this. https://t.… +06/29/2018,Actors,@KellyMcCreary,"RT @broadwaybabie36: A true case of art holding up a mirror to life in the #SkeletonCrewGP @GeffenPlayhouse. Thank you @A_Cheatom, @KellyMc…" +06/28/2018,Actors,@KellyMcCreary,RT @B_Hay: Meet the Harvey Street design team! I want to live under their pink skies! #HarveyStreetKids https://t.co/9sDXmsB37Z +06/28/2018,Actors,@KellyMcCreary,"@snozberries44 @petechatmon So much fun to hang out with you, TQ!" +06/28/2018,Actors,@KellyMcCreary,"RT @BetteMidler: Call #MitchMcConnell and tell him you expect him to wait until the midterms are over, as he did, when President Obama put…" +06/28/2018,Actors,@KellyMcCreary,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/28/2018,Actors,@KellyMcCreary,"Hey hey Angelenos I’ll be on @GDLA in about 30 minutes! Thanks, Annette Chaisson, for getting me looking right, bri… https://t.co/Fk5Tz34LTH" +06/27/2018,Actors,@KellyMcCreary,"RT @RepAdamSchiff: McConnell held a Supreme Court seat open for a year, insisting no Justice be confirmed in an election year without voter…" +06/27/2018,Actors,@KellyMcCreary,"RT @SenSanders: We should listen to what Sen. McConnell said in 2016. President Trump should not nominate, and the Senate should not confir…" +06/27/2018,Actors,@KellyMcCreary,RT @laurenlapkus: Aww a new clip from #HarveyStreetKids! Premiering Friday on @netflix! https://t.co/oSozqn4QZP @StephyLems @KellyMcCreary… +06/27/2018,Actors,@KellyMcCreary,"So great to chat with you, George! https://t.co/uy2ysWUTV3" +06/26/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: ✔️Detain the LatinX immigrants +✔️Ban the Muslims +✔️Jail the Black folks +✔️Ruin the Indigenous folks’ water +✔️Attack the po…" +06/26/2018,Actors,@KellyMcCreary,Thread. https://t.co/XKytg77a3i +06/26/2018,Actors,@KellyMcCreary,"RT @LaBeautyologist: Neither can gay couples. Black people. Muslims. Sikhs. Spanish speakers. + +Join the club. https://t.co/B0ceLoiTXl" +06/26/2018,Actors,@KellyMcCreary,RT @aparnapkin: your right to #civility ended when you started taking away civil rights +06/26/2018,Actors,@KellyMcCreary,"RT @sistergoldie: On respectability politics for black playwrights, “Don’t sir your dirty laundry”...they say. “But the laundry gotta get…" +06/26/2018,Actors,@KellyMcCreary,"Thank you, Sheila! Wonderful to see you again! https://t.co/ZyKkX7DWKF" +06/26/2018,Actors,@KellyMcCreary,"RT @billyeichner: Hey COLORADO, MARYLAND, NEW YORK, OKLAHOMA and UTAH - get out and VOTE tomorrow!!! https://t.co/Tr5GRWvhlV" +06/26/2018,Actors,@KellyMcCreary,"RT @KristaVernoff: 2 hours left to vote for Emmys! Wanna vote for some WOMEN? +FYC: +TV MOVIE - Paterno +TV COMEDY - SMILF +TV comedy writ…" +06/26/2018,Actors,@KellyMcCreary,RT @johnlegend: Let's make a deal with the Trump Administration. Reunite all these families immediately and you can go out to eat wherever… +06/25/2018,Actors,@KellyMcCreary,"RT @ClintSmithIII: ""You cannot spit in the plates and then demand your dinner. The best way to receive civility at night is to not assault…" +06/25/2018,Actors,@KellyMcCreary,@TheJasikaNicole Jitlada +06/25/2018,Actors,@KellyMcCreary,"RT @CleverTitleTK: GOP: ""Why are we worrying about these foreign children at the border instead of American children?"" + +Also GOP: https://t…" +06/24/2018,Actors,@KellyMcCreary,"RT @jacobsoboroff: We can track our @FedEx packages down to the *second* if we want to. + +Why can’t the United States government figure out…" +06/24/2018,Actors,@KellyMcCreary,"RT @RachelGonKCMO: Did you know that 4 MILLON 17-year-olds turn 18 before the November election? + +If you are 17 1/2 you can register to vo…" +06/24/2018,Actors,@KellyMcCreary,Listen to Finchie. Finchie will never steer you wrong. https://t.co/3IP52gADqa +06/24/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: That’s called a dictatorship. https://t.co/4r2137trJ3 +06/24/2018,Actors,@KellyMcCreary,"RT @ashleyn1cole: Look all we want to do is kick a bunch of people out of the country, and get rid of your health insurance, and say and do…" +06/24/2018,Actors,@KellyMcCreary,RT @aparnapkin: Getting politely asked to leave a restaurant for human rights crimes still beats getting the cops called on you for existin… +06/23/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: .@domorisseau’s Skeleton Crew is now #OvationRecommended! Bravo to our cast, crew & design team! See what the buzz is…" +06/23/2018,Actors,@KellyMcCreary,"RT @kathleenantonia: ""We are in a war fighting evil. We need to be clear about that."" ~ @evapaterson, a role model for stepping into the ri…" +06/23/2018,Actors,@KellyMcCreary,"RT @natasharothwell: What they're doing while we freak out about a sh*tty Zara jacket. +🚨CALL YOUR REPS🚨 +(202) 224 - 3121 https://t.co/OxJl…" +06/23/2018,Actors,@KellyMcCreary,RT @LeslieProll: Thank you @evapaterson @equaljustice for hosting conference on fighting racism & bias across issue areas. Desperately need… +06/23/2018,Actors,@KellyMcCreary,"RT @BerniceKing: #AntwonRose’s death is devastating. If you’re blaming his death on him running from police, I suggest you enlarge your und…" +06/22/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: Week 3 is quickly coming to an end. That means final weeks to see @domorisseau’s Skeleton Crew! Don’t wait. Must close… +06/22/2018,Actors,@KellyMcCreary,Calling now. #SingleStagingArea https://t.co/ojfyhhMvf5 +06/22/2018,Actors,@KellyMcCreary,RT @BlackNLA: These four. Take the Gil Cates Theater stage to bring @domorisseau's words to spectacular life under the direction of #Patric… +06/22/2018,Actors,@KellyMcCreary,"RT @ShaunKing: I kid you not, he was just convicted of sexually assaulting three different women and strangulating and stalking two others.…" +06/21/2018,Actors,@KellyMcCreary,RT @equaljustice: Our #mindscience2018 conference is sold out! Thank you to all our registered attendees and especially to our conference f… +06/21/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: A family concentration camp is still a concentration camp. +• +• +In my freshman political science seminar, we learned about…" +06/21/2018,Actors,@KellyMcCreary,"RT @ShaunKing: This is #AntwonRose. + +Shot in the back and killed yesterday by police in East Pittsburgh, Pennsylvania. https://t.co/xZn87f…" +06/20/2018,Actors,@KellyMcCreary,"@LilHay I have and I agree— “TIME: The Kalief Browder Story,” is a harrowing examination of the devastating impacts… https://t.co/cYDAcYjUdL" +06/20/2018,Actors,@KellyMcCreary,While I have your attention: https://t.co/OzItRKgqdF +06/20/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: THANK U to all our patrons for attending last night's #SkeletonCrewGP #TalkBackTuesday! Special thanks to our moderato… +06/20/2018,Actors,@KellyMcCreary,@BLACKWlDCWS I believe in you. +06/20/2018,Actors,@KellyMcCreary,RT @caterinatweets: For profit prisons lead to trafficking in human beings. Follow the money. https://t.co/wZltRCi4U7 +06/20/2018,Actors,@KellyMcCreary,RT @iJesseWilliams: 👀👂🏽 https://t.co/cTzASU0q61 +06/20/2018,Actors,@KellyMcCreary,RT @jurneesmollett: Y’all please donate to this. These 8 orgs are working on the ground to combat this criminal behavior that is tearing ki… +06/20/2018,Actors,@KellyMcCreary,"Some things are just wrong & have no moral justification. None. No if, ands, or political equivocating. So FYI for… https://t.co/UquLigx74i" +06/20/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: Donald Trump has built prisons for babies. Donald Trump has built prisons for babies. Donald Trump has built prisons fo… +06/20/2018,Actors,@KellyMcCreary,"RT @chrislhayes: Since the president is lying about this, I'll reiterate that we obtained internal CBP documents that show that ****91%****…" +06/20/2018,Actors,@KellyMcCreary,“Tone deaf” doesn’t even begin to describe this tweet. https://t.co/4wQoLHlfXA +06/19/2018,Actors,@KellyMcCreary,RT @marwilliamson: The fraud is not being committed by immigrants trying to game the system; ICE admits 1% of asylum seekers found to be fr… +06/19/2018,Actors,@KellyMcCreary,RT @itsgabrielleu: 👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾👇🏾 https://t.co/GueHe3HehW +06/19/2018,Actors,@KellyMcCreary,RT @barvonblaq: I don’t understand how a country obsessed with superhero movies doesn’t recognize supervillainy. +06/19/2018,Actors,@KellyMcCreary,RT @DanRather: Let’s be clear - tearing children away from their parents is but a logical extension of this administration’s immigration po… +06/19/2018,Actors,@KellyMcCreary,"This is major. Congrats, @ACLU! https://t.co/bvfiZAvFLy" +06/18/2018,Actors,@KellyMcCreary,"RT @VanJones68: STOP IT! Choice isn’t “open borders” or “scar children for life.” Unless there is a damn good reason, families should be ke…" +06/18/2018,Actors,@KellyMcCreary,RT @jsmooth995: Please never speak to me again about how we need to appeal to Trump's base through compassion and empathy https://t.co/1scK… +06/18/2018,Actors,@KellyMcCreary,"RT @caterinatweets: This is a really easy way to help the babies, children and parents who are being separated and traumatized at the borde…" +06/18/2018,Actors,@KellyMcCreary,RT @timkaine: The real Trump Hotel. https://t.co/PP6nIbzNQR +06/18/2018,Actors,@KellyMcCreary,RT @DreamUndeferred: THIS. How many times do we have to say THIS? https://t.co/dhOJUSm1h9 +06/18/2018,Actors,@KellyMcCreary,"Whatever your politics, you know that separating children as young as infants from their parents is cruel and inhum… https://t.co/GQUwJ6cfMW" +06/18/2018,Actors,@KellyMcCreary,RT @iamedigathegi: Our government has cancer. You can be part of the cure. Call your senator at 202-224-3121 and demand the cessation of fa… +06/18/2018,Actors,@KellyMcCreary,RT @SenFeinstein: UPDATE: The entire Democratic caucus supports our bill to bar children from being taken from their parents at the border.… +06/18/2018,Actors,@KellyMcCreary,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Actors,@KellyMcCreary,Also THIS. https://t.co/o9lY2rkh69 +06/18/2018,Actors,@KellyMcCreary,"RT @RVAwonk: Trump keeps trying to blame Democrats, but here's John Kelly in March 2017 talking about implementing forced separation for im…" +06/18/2018,Actors,@KellyMcCreary,"RT @isi_kbreen: yes. crossing the border without documentation is illegal. + +being black without a white owner was illegal. + +walking into a…" +06/17/2018,Actors,@KellyMcCreary,RT @Juliacsk: @amahnke @kumailn Repeat after me: I will vote in the midterm election. I will vote in the midterm election. I will vote in t… +06/17/2018,Actors,@KellyMcCreary,RT @reformlajails: To all the fathers who are separated from their children. To all the children who are separated from their fathers. +06/16/2018,Actors,@KellyMcCreary,"RT @equaljustice: Attorneys Needed to Help Immigrants Oppressed by ICE, via @AILANational https://t.co/eO6V1F7XWx https://t.co/5wiiXgFgE4" +06/16/2018,Actors,@KellyMcCreary,"RT @equaljustice: #HappyBirthday to our champion-in-chief, @evapaterson! The staff and board of EJS express our love and appreciation to Ev…" +06/16/2018,Actors,@KellyMcCreary,RT @PoliteMelanie: Those who were mad at Michelle Obama because she said that kids should eat vegetables are completely fine with Trump put… +06/16/2018,Actors,@KellyMcCreary,RT @SarahKSilverman: It’s nuts- she’s blaming Dems 4not stopping Trump from making this pure-evil policy. Man -they repeatedly point2 Dems… +06/16/2018,Actors,@KellyMcCreary,THAT PART. #Pride #SkeletonCrewGP https://t.co/m20n2R7IwZ +06/16/2018,Actors,@KellyMcCreary,"RT @ananavarro: This shameful moment in American history is squarely on Trump and his Republican enablers in Congress. Remember this, next…" +06/15/2018,Actors,@KellyMcCreary,Discounts! https://t.co/zf3ZoL1W0P +06/15/2018,Actors,@KellyMcCreary,RT @waltisfrozen: Scolding Democrats for saying “Fuck” while the President is constructing prison camps for children and praising foreign d… +06/14/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: ICYMI: @KellyMcCreary shares about her character Shanita in @domorisseau's Skeleton Crew: ""She's a bit of a dreamer. S…" +06/14/2018,Actors,@KellyMcCreary,@octarell lol yes holla. +06/14/2018,Actors,@KellyMcCreary,"This. I second this, @octarell. https://t.co/kb30drffqI" +06/14/2018,Actors,@KellyMcCreary,"RT @nhannahjones: The Bible was used to justify slavery, too. https://t.co/BFFsoVAMqX" +06/14/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: These four. Raised the roof last night!!! DO NOT MISS THIS CAST. Now on stage thru July 8. #AboutLastNight #SkeletonCr… +06/13/2018,Actors,@KellyMcCreary,RT @eveewing: This is a moment where all the hemming and hawing over civil disobedience and “is it okay to punch a nazi?” comes back to bit… +06/13/2018,Actors,@KellyMcCreary,"RT @theatermania: PIX: See @KellyMcCreary, @dbwofficial & the cast of @GeffenPlayhouse's SKELETON CREW → https://t.co/EZmExPhTA3 https://t.…" +06/13/2018,Actors,@KellyMcCreary,"Thanks, Surveyed Audience Member! Excited to open this thing tonight! It’s been a blast so far... #SkeletonCrewGP… https://t.co/9xFGrMOTH6" +06/13/2018,Actors,@KellyMcCreary,@DreamUndeferred I love this story 😂 +06/13/2018,Actors,@KellyMcCreary,RT @laurenduca: Families Belong Together is organizing marches against this horrifyingly inhumane bullshit. Please consider joining the one… +06/13/2018,Actors,@KellyMcCreary,"RT @laurenduca: This is what that piece of garbage means when he says ""Make American Great Again."" It almost seems like an understatement t…" +06/13/2018,Actors,@KellyMcCreary,"RT @paolamendoza: This is the youngest child I have heard of being taken from their parents. + +A 4 month old baby ripped away from his fath…" +06/13/2018,Actors,@KellyMcCreary,"RT @THEkarliehustle: Thread: + +Kenyata Bullard, 20, was one of 4 young men in a car that was shot up in Jacksonville last week. + +He is the…" +06/12/2018,Actors,@KellyMcCreary,Looking forward to watching this. https://t.co/cK6YOMmSSS +06/12/2018,Actors,@KellyMcCreary,"RT @Phil_Lewis_: ""Freedom has never been free."" + +Medgar Evers, a civil rights leader and World War II veteran, was assassinated in his driv…" +06/12/2018,Actors,@KellyMcCreary,"Dear #SCOTUS, + +As you consider Trump's racist ban, here are a few comments to consider from the president. + +Since… https://t.co/vYJaVsvVpF" +06/12/2018,Actors,@KellyMcCreary,"Oklahoma, I’m looking at you. #vote https://t.co/2IjG9APoaL" +06/12/2018,Actors,@KellyMcCreary,"RT @davidhogg111: This is America, right now + +This is the % of African Americans not able to vote in just a few states. + +VA 21% + +FL 21%…" +06/12/2018,Actors,@KellyMcCreary,Please vote. Please help protect our access to voting. https://t.co/kRzTNGQNnT +06/12/2018,Actors,@KellyMcCreary,RT @equaljustice: Robert Mueller's investigation has already uncovered serious crimes. 5 guilty pleas. 19 indictments. And more than 50 c… +06/12/2018,Actors,@KellyMcCreary,RT @mayawiley: We can’t stop fighting for #netneutrality https://t.co/5Bf415DCYe +06/12/2018,Actors,@KellyMcCreary,"RT @billyeichner: If you live in Virginia, Maine, Nevada, North Dakota or South Carolina - it's Primary day! Get out there and vote TODAY!!…" +06/12/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: IF VOTING DIDN’T MATTER, THEY WOULDN’T BE TRYING TO TAKE AWAY YOUR RIGHT TO DO IT. + +‘Supreme Court Upholds Ohio’s Purge o…" +06/12/2018,Actors,@KellyMcCreary,"RT @rashadrobinson: This is not democracy. This is an attempt to erase the voices of millions of Black voters who vote infrequently, all to…" +06/12/2018,Actors,@KellyMcCreary,RT @RepAdamSchiff: #NetNeutrality protections end today because House Republicans refused to act. Congress still has the power to restore a… +06/12/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: Skeleton Crew is ""...loyalties & finding family outside of family. It is about love & fighting & surviving & unity acr…" +06/11/2018,Actors,@KellyMcCreary,RT @RepJayapal: What I heard from the women being held at the federal detention facility today was saddening and disturbing. They cried so… +06/11/2018,Actors,@KellyMcCreary,RT @HillaryClinton: Here we go again. The Trump Admin is trying to take away your health care by ending protections for ppl w/ pre-existing… +06/11/2018,Actors,@KellyMcCreary,RT @SenKamalaHarris: We just introduced a bill to stop the Trump Administration’s immoral zero-tolerance policy of ripping immigrant childr… +06/11/2018,Actors,@KellyMcCreary,"RT @adamcbest: ""The Democrats are not making any of this easy. They've decided it's more fun to be the resistance than to do their job and…" +06/10/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: It’s our first double-header show day for Skeleton Crew! Our matinee audience is in the house & our awesome four take… +06/09/2018,Actors,@KellyMcCreary,"RT @xuhulk: If you have citizenship in the US, please be mentally prepared to do this on behalf of your neighbors. This is not a drill. htt…" +06/07/2018,Actors,@KellyMcCreary,"Thank you, Dennis!! https://t.co/eXNf5vCTsI" +06/07/2018,Actors,@KellyMcCreary,"RT @itsgabrielleu: Today’s #WCW goes out to Kelly Marie Tran. While I don’t know her, I FEEL her. She was recently driven off of social med…" +06/07/2018,Actors,@KellyMcCreary,RT @Sifill_LDF: Stop calling them entitlements. The safety net is in crisis. https://t.co/2B6IKB8q6g +06/07/2018,Actors,@KellyMcCreary,RT @lsarsour: People will say “but the police followed the law” military followed the law” “ICE followed the law” History has shown us that… +06/06/2018,Actors,@KellyMcCreary,RT @Sifill_LDF: I have been saying this incessantly about Baltimore. Bad policing actually makes the community less safe. Community members… +06/06/2018,Actors,@KellyMcCreary,Previews begin tonight!! https://t.co/JtSyLeFIo3 https://t.co/Eh5Negur5q +06/05/2018,Actors,@KellyMcCreary,RT @Amy_Siskind: WHY ISN’T THIS THE TOP STORY AT EVERY MEDIA OUTLET????!!! https://t.co/dEGwIY9IoP +06/04/2018,Actors,@KellyMcCreary,"RT @cmclymer: Michael Jordan wins Game 5 of the '97 NBA Finals with the flu = ""one of the greatest performances ever"" + +Tiger Woods wins 200…" +06/02/2018,Actors,@KellyMcCreary,Come on @ABCNetwork!! Give us @michellechel!!!! https://t.co/u3dQ4WjZMU +06/02/2018,Actors,@KellyMcCreary,"RT @samswey: Black organizers successfully restored voting rights to an estimated 2,000-3,000 people in Louisiana today. https://t.co/QhrWv…" +06/02/2018,Actors,@KellyMcCreary,RT @sundanceorg: #SundanceTheatre Lab project SKELETON CREW by @domorisseau kicks off on 6/5 at @GeffenPlayhouse. A stellar cast brings her… +06/01/2018,Actors,@KellyMcCreary,This cast is 🍌🍌🍌. #HarveyStreetKids https://t.co/wX9QX68Zph +06/01/2018,Actors,@KellyMcCreary,"Audrey, Lotta and Dot and their friends are finally@here!! Check out the trailer for #HarveyStreetKids!! https://t.co/SgKYfFRTdi" +06/01/2018,Actors,@KellyMcCreary,FINALLY!!! I’ve been dying to share this project for soooo long! It has been an absolute blast playing with… https://t.co/w9LGmezkTa +06/01/2018,Actors,@KellyMcCreary,Nice to meet you. See you @GeffenPlayhouse for #SkeletonCrewGP. https://t.co/f9dU5kzIWu +06/01/2018,Actors,@KellyMcCreary,"@iamedigathegi I love you, brother. https://t.co/jKlq7VkpSV" +05/31/2018,Actors,@KellyMcCreary,Thread thread thread thread thread https://t.co/kuGuuEMoiL +05/30/2018,Actors,@KellyMcCreary,Hungry for a story about working class people facing the vulnerabilities caused by a changing economy? We’ve got so… https://t.co/lgDSlJuDtH +05/30/2018,Actors,@KellyMcCreary,"RT @netflix: Reminder: @OneDayAtATime is a sitcom about a tight-knit, working class family that tackles extremely topical social issues in…" +05/30/2018,Actors,@KellyMcCreary,RT @laurenduca: .@therealroseanne The drug to blame for your behavior is white privilege. +05/30/2018,Actors,@KellyMcCreary,"RT @bcsproul: In Roseanne’s defense, it’s hard to know the difference between racism that gets you fired versus racism that gets you electe…" +05/29/2018,Actors,@KellyMcCreary,"RT @goodblacknews: Starbucks Is Closed This Afternoon, So Try These Black-Owned Coffee Shops Instead https://t.co/6IGtoAXsId" +05/29/2018,Actors,@KellyMcCreary,"RT @equaljustice: As Starbucks closes for bias training, Black-owned coffee shops open their doors wider https://t.co/tAnwhhhxpP" +05/29/2018,Actors,@KellyMcCreary,"RT @MsPackyetti: ROSEANNE HAS BEEN CANCELLED. + +Why? + +Because the people spoke up. + +Why? + +Because we’ve seen enough to that racist tweet…" +05/29/2018,Actors,@KellyMcCreary,This thread! #abolishICE https://t.co/fvHYN5HkUf +05/29/2018,Actors,@KellyMcCreary,"So great to chat with you, Michael! https://t.co/HiAh12I2mm" +05/27/2018,Actors,@KellyMcCreary,"RT @EWErickson: Pro-lifers, if you’re upset about ripping a child out of his mother’s womb, please be upset about ripping a child out of hi…" +05/26/2018,Actors,@KellyMcCreary,RT @samswey: Genocide. He’s celebrating genocide. https://t.co/3ndZ57XnvN +05/24/2018,Actors,@KellyMcCreary,"RT @VictoriaDahl: *deep breath* I'll just say this. Women are raised from the cradle to be hyperconscious of what we say & wear, how we wal…" +05/24/2018,Actors,@KellyMcCreary,👇🏾👇🏾👇🏾👇🏾 https://t.co/kIu1f9lVUD +05/24/2018,Actors,@KellyMcCreary,"RT @BreeNewsome: This is NOT about the anthem. It's about using the NFL, a sport dominated by Black athletes, as a way to publicly reinforc…" +05/24/2018,Actors,@KellyMcCreary,RT @Kappa_Kappa: NFL is pretty chill when it comes to violence against women and brain damage but i guess free speech is where they draw th… +05/24/2018,Actors,@KellyMcCreary,"RT @rashadrobinson: This is white supremacy, period. A blatant and disgusting attempt to strip Black athletes of their voice and reduce the…" +05/24/2018,Actors,@KellyMcCreary,"RT @caterinatweets: Words are important and powerful. Categorizing people in groups and making them seem less than human, less than individ…" +05/24/2018,Actors,@KellyMcCreary,"RT @michellechel: Today there is hope. Warm, sweet, and blessed hope. https://t.co/YXqMQw1Tqo" +05/23/2018,Actors,@KellyMcCreary,"Dozens of groups, affected residents just launched a new Pennsylvania #Fracking Health Impacts campaign! See the st… https://t.co/92YCOQ1OAM" +05/23/2018,Actors,@KellyMcCreary,Then stop lying. https://t.co/3mqbEM9Wdy +05/23/2018,Actors,@KellyMcCreary,Thread. https://t.co/Qw9jEdTB48 +05/23/2018,Actors,@KellyMcCreary,RT @PPact: JUST IN: @realDonaldTrump just imposed a gag rule to cut funds to any health care provider that refers their patients for aborti… +05/23/2018,Actors,@KellyMcCreary,"Thank you, Nae! 😘 https://t.co/28KX3PbnUO" +05/22/2018,Actors,@KellyMcCreary,"RT @ValerieJarrett: Our government is only as good as we, the people, insist that it be. That begins with voting. Please vote for @stacey…" +05/22/2018,Actors,@KellyMcCreary,This woman right here stays adding gems to the American Theater canon! We are so lucky to witness her carrying the… https://t.co/Ssnol6lAAP +05/20/2018,Actors,@KellyMcCreary,RT @LeftStandingUp: Men are afraid women will laugh at them. Women are afraid men WILL KILL THEM. https://t.co/HRwnFXEXiR +05/18/2018,Actors,@KellyMcCreary,RT @laurenduca: 2018 has been twice as deadly for schoolchildren than members of the military. This is not what a civilized country looks l… +05/18/2018,Actors,@KellyMcCreary,"RT @shondarhimes: ""A generation of young people who have spent their entire childhoods traumatized by gun violence, both in their communiti…" +05/18/2018,Actors,@KellyMcCreary,RT @MichaelSkolnik: The shooter in the Santa Fe High School shooting was wearing a shirt with a Nazi symbol on it. The rise of white suprem… +05/18/2018,Actors,@KellyMcCreary,Do you have your tickets yet?? What are you waiting for?? #SkeletonCrewGP https://t.co/wjgSiFqLNk +05/16/2018,Actors,@KellyMcCreary,RT @GeffenPlayhouse: @AnnieHu16891475 @A_Cheatom @KellyMcCreary @dbwofficial @domorisseau Tickets for Skeleton Crew start at $25 plus fee A… +05/16/2018,Actors,@KellyMcCreary,🙋🏽‍♀️ https://t.co/jR6QTleJng +05/16/2018,Actors,@KellyMcCreary,"RT @GeffenPlayhouse: Our Skeleton Crew cast are deep in rehearsal, gearing up for previews to begin on June 5. Got tickets yet? What are yo…" +05/16/2018,Actors,@KellyMcCreary,This child is me pretty much at least once a day— figuratively if not literally. But mostly literally. https://t.co/2GMAgSZpNb +05/15/2018,Actors,@KellyMcCreary,If you are on twitter right now you will probably want to MAKE THIS CALL TODAY. #netneutrality https://t.co/zWppuwlefV +05/15/2018,Actors,@KellyMcCreary,"RT @RavMABAY: I am a rabbi. + +I love Israel. + +I condemn without reservation the bloodshed in #Gaza. + +Not so hard. + +You can challenge the…" +05/15/2018,Actors,@KellyMcCreary,RT @deray: The Palestinian protestors are being murdered. And the media needs to name it as such. It is simply wrong. +05/14/2018,Actors,@KellyMcCreary,"RT @KamalaHarris: This + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +#NetNeutrality + +ends + +on + +June 11 + +unless + +we + +stop + +it + +retweet + +to…" +05/14/2018,Actors,@KellyMcCreary,"RT @keithboykin: White privilege is invading a country, killing the native population, importing another continent's residents as your slav…" +05/13/2018,Actors,@KellyMcCreary,"I am talking about people who have not been tried or convicted of any crime, but who are held in jail simply becaus… https://t.co/SYNq0PuPxi" +05/13/2018,Actors,@KellyMcCreary,"Higher rates of arrest and detention, and an average of 35% higher bail means too many black mothers are in jail on… https://t.co/ofwLNPKK40" +05/13/2018,Actors,@KellyMcCreary,"RT @TheDweck: Maybe if we post enough GIFs, NBC will bring back Obama" +05/12/2018,Actors,@KellyMcCreary,"RT @sarahdrew: I’m super excited to share the trailer for my new film, Indivisible, which will be in theaters October 26th! I had the aweso…" +05/12/2018,Actors,@KellyMcCreary,"RT @shondarhimes: People. This is a good Friday. Why? Because #GreysAnatomy, #HowToGetAwayWithMuder, #Station19, AND #ForThePeople are rene…" +05/11/2018,Actors,@KellyMcCreary,"RT @anildash: How come we have to listen to the voice of the poor working class when they back white supremacists, but not when they pull o…" +05/11/2018,Actors,@KellyMcCreary,Thanks for hanging folks. See ya at Jolex’s wedding! 😎 +05/11/2018,Actors,@KellyMcCreary,“April would want us to pray.” #greysanatomy +05/11/2018,Actors,@KellyMcCreary,It’s coming up in next week’s episode... #GreysAnatomy https://t.co/i4YPsCfw7X +05/11/2018,Actors,@KellyMcCreary,Every bit. #GreysAnatomy https://t.co/Z6Vtiid5tM +05/11/2018,Actors,@KellyMcCreary,RT @EllenPompeo: I'm not going to lie... it's a lot tonight...we are the best heartbreakers in the game but don't hate the player...😂😂😂 htt… +05/11/2018,Actors,@KellyMcCreary,I KNOW RIGHT? https://t.co/nslPGnq4to +05/11/2018,Actors,@KellyMcCreary,"Technically speaking, the OR stuff is tricky for me, but Maggie’s mom’s passing was a doozy. https://t.co/ZJkY86xud5" +05/11/2018,Actors,@KellyMcCreary,RT @shondarhimes: This entire cast. Thank you. #GreysAnatomy #TGIT +05/11/2018,Actors,@KellyMcCreary,RT @sarahdrew: I’m watching west coast!! I’ve got some pics to post on Instagram!!! +05/11/2018,Actors,@KellyMcCreary,The love the fun the funny the inspiration the talent the all of it https://t.co/OOkiyGS4hx +05/11/2018,Actors,@KellyMcCreary,I don’t think anyone likes cheese as much as Maggie. https://t.co/z2kxIoA9pe +05/11/2018,Actors,@KellyMcCreary,"Prolly, if the high leads to a cheese plate. https://t.co/Tjrm0XmApt" +05/11/2018,Actors,@KellyMcCreary,RT @brianschatz: They are ripping you off on prescription medicine. They ripped you off on the tax bill. They are ripping you off with insu… +05/11/2018,Actors,@KellyMcCreary,Yaaaaaay Dr. Herman is back! Thank you Geena Davis for gracing us with your genius once more! #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Arizona offers her resignation and already I’m 😭. #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Baby Leo is so stinkin’ adorable I can’t take it. #greysanatomy +05/11/2018,Actors,@KellyMcCreary,Easier to name the eps when I didn’t cry. #greysanatomy https://t.co/xQORww2EeM +05/11/2018,Actors,@KellyMcCreary,Hey peeps! Sorry to have missed the east coast airing but I’ll be here for the west coast... Who wants to live tweet? #greysanatomy +05/04/2018,Actors,@KellyMcCreary,"@IHeartKMcCreary @timolyyyyn_ @ABC123TLC Oh my gosh, congratulations!!! I’m so proud of you! Keep shining, AJ!" +05/04/2018,Actors,@KellyMcCreary,"RT @baratunde: Bad news: organized racists targeted black girl scientists from DC by trying to rig the online vote. + +Good news: NASA interv…" +05/04/2018,Actors,@KellyMcCreary,Hey hey who’s watching @iJesseWilliams’ directorial debut?? #greysanatomy @GreysABC +05/03/2018,Actors,@KellyMcCreary,She-ro!! https://t.co/44sbhY5mQV +05/02/2018,Actors,@KellyMcCreary,Transforming “trust Black women” into policy and practice. #TeamAbrams https://t.co/pv0QgnE8of +05/01/2018,Actors,@KellyMcCreary,RT @DreamUndeferred: Y’all are killing me with this R. Kelly defense. This is the most non-secret ever. It’s not new! If you grew up in Ch… +06/28/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/8FbolLqfQa +06/28/2018,Actors,@IWashington,Dr. Mary McLeod Bethune was BLACK EXCELLENCE... https://t.co/hyVFlpF0nY +06/28/2018,Actors,@IWashington,I’m disappointed at how unbothered I’m with how filthy many public restaurant restrooms are. When I see shit like t… https://t.co/RKVgPGbonJ +06/28/2018,Actors,@IWashington,G’mornafternoovening twittersphere! #SoftshellCrabsInABun https://t.co/DqHDplONEN +06/27/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/n0Kjt373Rt +06/27/2018,Actors,@IWashington,This Moon tho... https://t.co/hgdQmne6WS +06/27/2018,Actors,@IWashington,TV interview hosts; Willie Love and Sarita Mason are the interviewers. Tokeema Hall and Mariah Franklin are your ca… https://t.co/tqhfGOvBKM +06/26/2018,Actors,@IWashington,"I truly enjoyed closing the BCU conference on Education and Social Justice. “If Not Us, Who? If Not Now, When?” https://t.co/aqo7e39mzr" +06/26/2018,Actors,@IWashington,Dr. Randy Nelson and I at B-CU today to talk about Social Justice. I will see him one more time at 1:30PM in the MM… https://t.co/xJ0fP8rHgI +06/26/2018,Actors,@IWashington,RT @HowardUAlumni: Actor and alumnus Isaiah Washington to serve as closing keynote speaker at Bethune -Cookman University's Education and S… +06/26/2018,Actors,@IWashington,RT @bethunecookman: @IWashington stopped by B-CU today to talk about social justice. Hear him one more time at 1:30PM in the MMB Performing… +06/26/2018,Actors,@IWashington,RT @Boski__: Got the opportunity of a lifetime to interview @IWashington it went great it’s just a Leo connection y’all won’t understand… +06/26/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/ELlOZ0aogp +06/26/2018,Actors,@IWashington,"@MissErika Nope! Boarding door shut, engines started and being pushed out to taxi..." +06/26/2018,Actors,@IWashington,"Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justi… https://t.co/iuZxN9tSb2" +06/26/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/VpoZdqZXn2 +06/22/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/ClW8Kqv3V3 +06/22/2018,Actors,@IWashington,"RT @IWashington: Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justice: Mul…" +06/22/2018,Actors,@IWashington,Truth is Stranger Than Fiction... https://t.co/sNT2tkJ6GZ +06/21/2018,Actors,@IWashington,"Know Justice. Know Peace. +Bethune-Cookman University Education and Social Justice Conference Achieving Social Justi… https://t.co/CnLMiqvBN1" +06/21/2018,Actors,@IWashington,@anxne_ Yes. +06/21/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/nMnVyE3Gvj +06/21/2018,Actors,@IWashington,#MySleepTweet I’m just sayin’...THIS: https://t.co/0CrECfuYgv +06/21/2018,Actors,@IWashington,#MySleepTweet cc: @ShaunKing THIS: https://t.co/nFDO8jR741 I know many want to act like this period in American His… https://t.co/83JsvVKDaS +06/17/2018,Actors,@IWashington,"#MySleepTweet DDT was a welcomed treat in Houston, Texas in the 1970’s, because it meant relief from mosquitoes. Ne… https://t.co/MiMGqliZOP" +06/17/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/ES2DvLdE8G +06/16/2018,Actors,@IWashington,You build it and they will come. #Truthdom +06/16/2018,Actors,@IWashington,"Won’t God Do It? I now have my own Televsion Business Affairs, my own Casting Director and now my own funding sourc… https://t.co/JmHGezQGVT" +06/16/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/miLqkFK0T9 +06/16/2018,Actors,@IWashington,G’nite twittersphere...#LazarusRisingMovie https://t.co/wwkfSW3YTY +06/16/2018,Actors,@IWashington,Just had a GREAT production meeting for a new Pilot script I’m starring in and Executive Producing. Y’all. Ain’t. R… https://t.co/7ipCaPAxMr +06/16/2018,Actors,@IWashington,I haven’t walked these Beverly Hills streets in year’s... https://t.co/zNb6QguGDN +06/15/2018,Actors,@IWashington,I woke up this morning to birds singing and it hit me really hard that I have another day and another chance to be… https://t.co/Nd1clswlUj +06/15/2018,Actors,@IWashington,"I’m so proud to be one of the Speakers at The 4th Annual Social Justice Conference @bethunecookman June 26, 2018. G… https://t.co/nMlzihhjd1" +06/15/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/5d8DUDFwm5 +06/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/Bqwwq7G19x +06/14/2018,Actors,@IWashington,#DNAHasMemory https://t.co/9T2ek4X6F1 +06/14/2018,Actors,@IWashington,@DreamLoveCrys Set It Off is musical like love jones?! +06/14/2018,Actors,@IWashington,RT @IWashington: I’m humbled and honored.@chadwickboseman Let’s continue the #HUYouKnow Legacy! 🙅🏾‍♂️ THIS: https://t.co/3wEF8OKTnq +06/14/2018,Actors,@IWashington,"You can hate the man all you want, but I’m a History Buff and this right here is historic... https://t.co/nBUaCrOHos" +06/14/2018,Actors,@IWashington,"@DreamLoveCrys You mean like The Color Purple, Into The Woods and The Lion King?" +06/14/2018,Actors,@IWashington,Damn...I’ve lived long enough to see movies coming out this summer that are remakes of the originals that I saw whe… https://t.co/qYxs1A9FjL +06/14/2018,Actors,@IWashington,Uh-Oh...I just heard from the PR firm promoting this gem of a movie 🎥 directed by .@RZA Y’all. Are. Not. Ready. https://t.co/ab62e4dbcs +06/14/2018,Actors,@IWashington,"Yes, I’m also an Author... https://t.co/urkT9LQDOz" +06/14/2018,Actors,@IWashington,🙏🏾👇🏾🙏🏾 https://t.co/LQs5mFv5ya +06/14/2018,Actors,@IWashington,So we jes gonna ak lak correck spellin’ an gramma don’t matta no mo’ on sochel metia!!!?!!! 🤷🏾‍♂️ +06/14/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/yPJxvatkv3 +06/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/nhVxm2MnPU +06/14/2018,Actors,@IWashington,"I’m not used to chasing anything, so I can’t start now... https://t.co/mqtq9v8SIa" +06/14/2018,Actors,@IWashington,"The older I get, the more I understand my Grandfather, Mr. Willie H. Holmes of Houston, Texas. https://t.co/jjVPogBOAC" +06/14/2018,Actors,@IWashington,Can we talk about this for a second? No? https://t.co/iM4GfNrW8V +06/13/2018,Actors,@IWashington,"Time to be somewhere where I don’t speak the language and when I do speak, its having conversations more interestin… https://t.co/QyE7n7bQPP" +06/13/2018,Actors,@IWashington,"Everybody and Everything has Up’s and Down’s. That’s LIFE, but when you get that second chance, NEVER forget those… https://t.co/scrJENMYYp" +06/13/2018,Actors,@IWashington,These streets stay talking to me... https://t.co/RUlkhEcRNs +06/13/2018,Actors,@IWashington,Shit! I’m mature enough now to finally realize that we don’t wear the mask that grins and lies. It’s our grins and… https://t.co/UCsbT6jAMO +06/13/2018,Actors,@IWashington,I’m humbled and honored.@chadwickboseman Let’s continue the #HUYouKnow Legacy! 🙅🏾‍♂️ THIS: https://t.co/3wEF8OKTnq +06/13/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/UBXT5hdskY +06/12/2018,Actors,@IWashington,#MySleepTweet Gone In 43 Seconds...@MrRickyWhittle https://t.co/ReQ7jkztw3 +06/12/2018,Actors,@IWashington,#MySleepTweet Gone In 43 Seconds...@MrRickyWhittle https://t.co/Vrmnokwn1b +06/09/2018,Actors,@IWashington,#MySleepTweet I’m unbelievably shocked and saddened by the loss of Anthony Bourdain. My wife and I have been inspir… https://t.co/rcT4zYB8eB +06/08/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/1DOL19itMD +06/07/2018,Actors,@IWashington,"I’m feel most empowered with my Black Orchid - The Black Orchid is the most highly coveted of ornamental plants, th… https://t.co/DBOsUVpwv5" +06/07/2018,Actors,@IWashington,"I’m not at peace without my Phalaenopsis White Orchid - Symbolism White: The White Orchid signifies innocence, eleg… https://t.co/FvLJEHZvdu" +06/07/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/KczPinpd0L +06/07/2018,Actors,@IWashington,RT @IWashington: G’nite twittersphere...#TheYellowBirds https://t.co/YEHlT7lwZs +06/07/2018,Actors,@IWashington,Alexandre Moors and Dylan Park. Two Writer/Directors that I fuck with. #BlueCaprice #LazarusRisingMovie .@dyllyp https://t.co/sDalVudzvd +06/07/2018,Actors,@IWashington,A Blue Caprice Reunion at the Yellow Birds Screening in Los Angeles at the London Hotel 6/6/2018 #TheYellowBirds… https://t.co/B3CiG3TViR +06/07/2018,Actors,@IWashington,G’nite twittersphere...#TheYellowBirds https://t.co/YEHlT7lwZs +06/07/2018,Actors,@IWashington,RT @ShaunKing: This is 50 seconds of brilliance. Listen to this. We’ve made progress when we get white leaders like this openly calling out… +06/06/2018,Actors,@IWashington,"RT @IWashington: I can’t wait to see Alexandre Moors, my friend and director of .@BlueCapriceFilm new movie today! https://t.co/Jcd48fpQwM" +06/06/2018,Actors,@IWashington,"RT @IWashington: Men Of IMPACT 2018 with our Fearless Leader Tunisha Brown, Editor-in-Chief of IMPACT Magazine.@impact_magazine The “first”…" +06/06/2018,Actors,@IWashington,"RT @IWashington: I’m so proud to have met Demetria L. Graves, Esq. and a few of these powerful women with .@elitefirmla https://t.co/WvlxF7…" +06/06/2018,Actors,@IWashington,"For some reason, I keep thinking about my Momma asking me to give her some “sugar”. Why you messing with me today F… https://t.co/BxD6bVgOan" +06/06/2018,Actors,@IWashington,"15% of all people that come in contact with you aren’t going to ‘like’ you no matter what you do, so focus more on… https://t.co/BKeqZPVG20" +06/06/2018,Actors,@IWashington,"I’m so proud to have met Demetria L. Graves, Esq. and a few of these powerful women with .@elitefirmla https://t.co/WvlxF7PSwO" +06/06/2018,Actors,@IWashington,We were all born with ‘special powers’. You just have to realize what they are and use them for good. #Truthdom +06/06/2018,Actors,@IWashington,If .@Twitter ended tomorrow. Could you live without it? Just asking for a friend. 🤔 +06/06/2018,Actors,@IWashington,"The American legal system has a history of accusing, indicting and convicting innocent citizens in our courts all t… https://t.co/wfyS6ottKA" +06/06/2018,Actors,@IWashington,"Americans talk a lot about violence and killings, but I don’t hear about how many careers and lives have been destr… https://t.co/JTwfVjsaEf" +06/06/2018,Actors,@IWashington,"I can’t wait to see Alexandre Moors, my friend and director of .@BlueCapriceFilm new movie today! https://t.co/Jcd48fpQwM" +06/06/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/xRC8P1ucMy +06/06/2018,Actors,@IWashington,G’nite twittersphere...THIS: https://t.co/pXCXp6SK3F +06/06/2018,Actors,@IWashington,Who did they call when they needed to get it done? #BuffaloSoldiers .@Skillsetmag https://t.co/RUHdxYX2r7 +06/06/2018,Actors,@IWashington,"@dyllyp @Skillsetmag The results of sweat, gunpowder, dust and tears covering the lens. You know about it." +06/06/2018,Actors,@IWashington,My Shooting Team Is Strong...No More Excuses. No More Apologies. .@Skillsetmag 🤙🏾 🇺🇸 https://t.co/unuHg59fFR +06/05/2018,Actors,@IWashington,Does her Momma know? https://t.co/5rsUBRbG1n +06/05/2018,Actors,@IWashington,I wonder what George W. Bush is doing right now...🤔 +06/05/2018,Actors,@IWashington,Platform Envy is real...#Truthdom +06/05/2018,Actors,@IWashington,"If you think ish in America is crazy today, try remembering Jesse James, Billy the Kid, Butch Cassidy and the Sunda… https://t.co/eHUaOd57BV" +06/05/2018,Actors,@IWashington,"@DvineExpression Neely Fuller, Jr. would be proud. Stay the course, create and build." +06/05/2018,Actors,@IWashington,When in doubt. Eat some cheesecake... https://t.co/Jx2E24SHQ6 +06/05/2018,Actors,@IWashington,The 46th President and Vice President of the United States of America? 🇺🇸 https://t.co/Fx2HzHButB +06/05/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/FMzf4wUCwM +06/05/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/y8H3ddy0FP +06/05/2018,Actors,@IWashington,People ask me why don’t I “march” against injustice. Really? My entire body of work has “marched” against injustice. Wake Up! #Truthdom +06/05/2018,Actors,@IWashington,"When you decide to monetize your passion, then it will never be work. #Truthdom" +06/05/2018,Actors,@IWashington,I’m not afraid. Never have been. Never will be. #Truthdom https://t.co/X2sWnUliHT +06/05/2018,Actors,@IWashington,@Lexialex Any song from this album will work... https://t.co/T7wl52tSb5 +06/05/2018,Actors,@IWashington,I’ve been in Los Angeles for 22 year’s now and I have never seen The Watts Towers. I’m gonna change that this week.… https://t.co/DVmnuttKWq +06/05/2018,Actors,@IWashington,"Men Of IMPACT 2018 with our Fearless Leader Tunisha Brown, Editor-in-Chief of IMPACT Magazine.@impact_magazine The… https://t.co/3LnTlPvysi" +06/05/2018,Actors,@IWashington,Big Brandon! New to .@Twitter with only 3 Tweets and 2 of them are to me. I’m honored sir! 🤙🏾 https://t.co/LA0EaBad4A +06/05/2018,Actors,@IWashington,I’m so there for this one... https://t.co/RKKsrC9n1p +06/05/2018,Actors,@IWashington,Sounds like a plan as long as you are there on the line with me. https://t.co/mBgLjxEbmg +06/04/2018,Actors,@IWashington,Missing my family at Thunder Ranch...#LazarusRisingMovie https://t.co/3bCZvFS1mp +06/04/2018,Actors,@IWashington,I’m not interested in taking someone else’s throne. I’m too busy building my own...#Truthdom https://t.co/tTF3ZOb7Y3 +06/04/2018,Actors,@IWashington,"I’m blown away at how much #The100Fans on Instagram, on airlines, in the airport, in Whole Foods and on the streets… https://t.co/3WSEFmmbFn" +06/04/2018,Actors,@IWashington,Men Of IMPACT @impact_magazine THIS: https://t.co/mRAKFFa398 #IMPACTMagazine #MenOfIMPACT .@steviebaggsjr https://t.co/94chZqdrrd +06/04/2018,Actors,@IWashington,You can’t burn a bridge that wasn’t built with You in mind. #Truthdom +06/04/2018,Actors,@IWashington,Loving my bracelets from @impact_magazine designed by @omoyeni_jewelry Fit for the Modern King 👑 #IMPACTMagazine… https://t.co/dQESYAwVWn +06/04/2018,Actors,@IWashington,Goodbye Atlanta. Hello Los Angeles! +06/04/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/7XYufRxlke +06/04/2018,Actors,@IWashington,G’nite twittersphere...@impactmagazine https://t.co/HyOnhfCHIF +06/04/2018,Actors,@IWashington,"I’ve been in many rooms where awards & honors have been given, but I have never been in a room where u are given ‘g… https://t.co/JIRTxR7CR1" +06/03/2018,Actors,@IWashington,The EIGHTY5 is a really good cigar...@ochocinco Thank You @impact_magazine for the cigar gift and introduction.… https://t.co/tmiEFFvtCV +06/03/2018,Actors,@IWashington,Tonight is the Night....@impact_magazine 🙌🏾🙌🏾🙌🏾 https://t.co/eg4J3qGbw9 +06/03/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/4CohjuUma7 +06/03/2018,Actors,@IWashington,G’nite twittersphere...@impact_magazine #MenofIMPACT https://t.co/Rffv6ayZX5 +06/02/2018,Actors,@IWashington,Impressive Pick-Up from the airport in Atlanta today. Thank You 👌🏾@impact_magazine and @czartheearner… https://t.co/bwy2pxpLVc +06/02/2018,Actors,@IWashington,RT @IWashington: Goodbye Los Angeles. Hello Atlanta! https://t.co/nrR5nIOQ1A +06/02/2018,Actors,@IWashington,😳 https://t.co/5xqXIclYiL +06/02/2018,Actors,@IWashington,And now...it’s their turn! Thank You Black Panther Movie 🎥 #BuffaloSoldiers #AmericanHistory 🇺🇸 https://t.co/B0v1D3iiwZ +06/02/2018,Actors,@IWashington,You can’t rationalize crazy. #Truthdom +06/02/2018,Actors,@IWashington,"The day I can fit 98K people in my house, is the day I’ll be disappointed with how many Followers I have here on Tw… https://t.co/4cjW6Vo7rk" +06/02/2018,Actors,@IWashington,I need to get my eyeglasses checked. Thought I saw 988K Followers for a minute...😏 +06/02/2018,Actors,@IWashington,Goodbye Los Angeles. Hello Atlanta! https://t.co/nrR5nIOQ1A +06/02/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/EaKGq3WTIl +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/FWUnqyrg9L +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/CpDDNm2qgB +05/31/2018,Actors,@IWashington,#MySleepTweet I’m finally able to binge watch my old show #The100 and Episode 502 - Red Queen was not disappointing… https://t.co/XIpjh9iFKF +05/26/2018,Actors,@IWashington,#MySleepTweet I don’t believe in serendipity anymore. LAZARUS RISING is our DESTINY. 🤙🏾 🇺🇸 https://t.co/jqiDxFJ5f4 +05/26/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/Gc0wmtfShS +05/26/2018,Actors,@IWashington,Trying to find that Tweet spot... +05/25/2018,Actors,@IWashington,Steve Kerr just nailed a political 3 Pointer... https://t.co/3VtjLdB41I +05/25/2018,Actors,@IWashington,Seasons 1 thru 5...#The100Season5 https://t.co/OzGw8v2kkg +05/25/2018,Actors,@IWashington,You can WATCH IT on .@TIDAL #TheyDieByDawn https://t.co/W6vMuoawxG +05/25/2018,Actors,@IWashington,My Son brought me a gift from Berlin...#Breznak https://t.co/yHyGe5b2It +05/25/2018,Actors,@IWashington,Back in the gym... https://t.co/yufaLQsKNx +05/25/2018,Actors,@IWashington,She knows she wants to ride that .@BirdRide https://t.co/WFiPhoNvGE +05/25/2018,Actors,@IWashington,Waiting on tomorrow’s Game 6 like... https://t.co/5RVvAvaPPD +05/25/2018,Actors,@IWashington,#Justice... https://t.co/DAzO8aZpNr +05/25/2018,Actors,@IWashington,#Mood https://t.co/ErC2ce2T6r +05/25/2018,Actors,@IWashington,Me when I realize it’s a 3 Day Weekend.. https://t.co/E3cehc48iD +05/25/2018,Actors,@IWashington,I can’t wait... https://t.co/RL8b0su0cu +05/25/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/O87tYuoore +05/25/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/8r1bukX1bT +05/25/2018,Actors,@IWashington,My oldest son just returned home safely today from a 5 week tour of Europe. That means...he listened to his Mother… https://t.co/C3jQqrXPhJ +05/25/2018,Actors,@IWashington,"Twitter sucks, but I love it! #Truthdom" +05/25/2018,Actors,@IWashington,🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾 https://t.co/3hpc48n0bA +05/25/2018,Actors,@IWashington,"I know I not supposed to have ‘free speech’ anymore, but I’m going to act like I do until they shut me up for good.… https://t.co/HNjpevZrxU" +05/25/2018,Actors,@IWashington,"There are Producers saying, “Isaiah is ‘a pain in the ass to work with’. We can’t hire him.” Hmmm...why don’t they… https://t.co/1SYkyVHa5A" +05/25/2018,Actors,@IWashington,They got Morgan Freeman and he’s 81...who’s next? https://t.co/iMSAjGts2E +05/25/2018,Actors,@IWashington,Nah. You don’t get to holla at me on the sneak tip here on Twitter. It’s been waaaaaaayyyy too long. Hit me in my D… https://t.co/VjnM8kObTv +05/25/2018,Actors,@IWashington,"If I’m quiet, it means I working. Never think otherwise...#LazarusRisingMovie https://t.co/RAwm5GKeeH" +05/25/2018,Actors,@IWashington,You mad???? https://t.co/WV9R3nylq5 +05/25/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/BRwOiR43wh +05/24/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/U9fZLMsOVT +05/23/2018,Actors,@IWashington,"I’m the guy that will run towards the fire, when other’s choose to run away. I’m just built like that...#Truthdom https://t.co/Pctf9N1Cez" +05/23/2018,Actors,@IWashington,#The100Fandom .@cwthe100 is so remarkably talented and passionate. 👊🏾💯 Just Look at THIS: https://t.co/UXv0HY99It +05/23/2018,Actors,@IWashington,I have found that Discussing Commonality over a good meal is much more Productive than Fighting over Ideologies. I’… https://t.co/j8X73n6sB3 +05/23/2018,Actors,@IWashington,"“Hot off his 5 Day Training at the world renowned Thunder Ranch, Isaiah Washington is convinced that his new compan… https://t.co/ypMNs6o4DZ" +05/23/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/gAyOLiljAo +05/23/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/1nUAClIWxl +05/23/2018,Actors,@IWashington,"The victimized victimize others, because they were victimized. Don’t let their victimization victimize you. It’s not your fault. #Truthdom" +05/22/2018,Actors,@IWashington,#TBT The 100 Best Movies On Netflix .@netflix .@BlueCapriceFilm THIS: https://t.co/xPiiDzXi1m https://t.co/WdBLB3siVc +05/22/2018,Actors,@IWashington,"Meet “Lazarus Richard Bonner”. Currently a High School History Teacher, a Persian Gulf War Veteran and a former Cap… https://t.co/q6scBcGyzC" +05/22/2018,Actors,@IWashington,A Man Can Dream Can’t He? #AdamBrashear .@KevinGrevioux https://t.co/zYdRB2PSmv +05/22/2018,Actors,@IWashington,I’m Ten Toes Down and available to be the Blue Marvel... https://t.co/PMNHCB42YE +05/22/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/JZizrm6cZ8 +05/22/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/DhUSZB23mJ +05/22/2018,Actors,@IWashington,I’ve talked a lot with cops and criminals and they both are just trying to “do their jobs” to feed their families.… https://t.co/X8ttVX0zGd +05/22/2018,Actors,@IWashington,"I trained with these Warriors, Fathers, Husbands, Sons, Brothers, Cousins and each one of them ripped off their pat… https://t.co/HWAgUmUgkn" +05/21/2018,Actors,@IWashington,RT @IWashington: Goodbye Reno. Hello Los Angeles! https://t.co/rhgMiKCvuc +05/21/2018,Actors,@IWashington,Thank You for the T-Shirt .@Skillsetmag 🤙🏾 https://t.co/VRBwhFS1hw +05/21/2018,Actors,@IWashington,Goodbye Reno. Hello Los Angeles! https://t.co/rhgMiKCvuc +05/21/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/Q2ku6PitTB +05/18/2018,Actors,@IWashington,#MySleepTweet That Work...@thunderranchinc https://t.co/zgz4R7em2A +05/14/2018,Actors,@IWashington,#MySleepTweet Look at God... https://t.co/rIC4Y59YOL +05/14/2018,Actors,@IWashington,#MySleepTweet I am so ready for this...#EDNixon ✊🏾🚌 https://t.co/CCACKOQGzA +05/14/2018,Actors,@IWashington,G’nite twittersphere... https://t.co/aDriQhZvSF +05/14/2018,Actors,@IWashington,RT @IWashington: I love this movie and this hotel...#TheMisfits https://t.co/yswIjJRdgr +05/14/2018,Actors,@IWashington,RT @IWashington: I’m now sitting at the Longest Bar in Nevada and...#RenoNevada 😳 https://t.co/QXqMrvd8qd +05/14/2018,Actors,@IWashington,Not bad... https://t.co/paO2I6sebE +05/14/2018,Actors,@IWashington,I’m now sitting at the Longest Bar in Nevada and...#RenoNevada 😳 https://t.co/QXqMrvd8qd +05/14/2018,Actors,@IWashington,I love this movie and this hotel...#TheMisfits https://t.co/yswIjJRdgr +05/14/2018,Actors,@IWashington,RT @IWashington: Goodbye Los Angeles. Hello Reno! +05/13/2018,Actors,@IWashington,"Someone said maybe I should retire from show business, but I never was in show business. Here is the thing, I was n… https://t.co/XRQbxgoW5G" +05/13/2018,Actors,@IWashington,"Damn, what was I thinking? I’m on my Twitter page and not my Facebook page. Sorry, I got confused tweeting all this… https://t.co/aV1JRMVa3M" +05/13/2018,Actors,@IWashington,"I saw it 30 year’s ago, which is exactly why I gave the world “Kyle” in Spike Lee’s GET ON THE BUS. https://t.co/NfI4tfK82k" +05/13/2018,Actors,@IWashington,"I’m sorry, but I just had to...😏 https://t.co/XQ7Fnt2Oua" +05/13/2018,Actors,@IWashington,"Being vigorously offered to portray a number of gay African American male roles that appear to put up tough, often… https://t.co/HsKwElDCFz" +05/13/2018,Actors,@IWashington,"When a writer compliments you for doing unprecedented, fearless and groundbreaking work 22 year’s ago, but is too l… https://t.co/MCEoChxXo4" +05/13/2018,Actors,@IWashington,Always know where the exits are. #Truthdom +05/13/2018,Actors,@IWashington,"You’re not wrong for asking me, but you can’t make me wrong for saying no. That’s weak folk ish. #Truthdom" +05/13/2018,Actors,@IWashington,Goodbye Los Angeles. Hello Reno! +05/13/2018,Actors,@IWashington,G’mornafternoovening twittersphere! https://t.co/5noljjDEkv +05/13/2018,Actors,@IWashington,#MySleepTweet Me and My Bird Flyin’ thru Venice on Abbot Kinney Blvd. 😆 #Venice #Bird #Unbothered… https://t.co/m6hE6jG9bq +05/11/2018,Actors,@IWashington,#MySleepTweet #TBT I was made a Chief in 2006 and given the name Chief Gondobay Manga II and I take it very serious… https://t.co/js4OYTlugk +05/11/2018,Actors,@IWashington,#MySleepTweet I Am T’Chaka!!! I’ve been on that Black Panther ish for a long time. Actually since 1982...… https://t.co/794iGHJorD +05/08/2018,Actors,@IWashington,#MySleepTweet “How did we go from whips and chains to whips and chains?” .@CeeLoGreen 🔥🔥🔥🔥 https://t.co/2PkJk0BQEn +05/08/2018,Actors,@IWashington,#MySleepTweet I’m getting real tired of paying all these taxes only for people that look like me to be miseducated… https://t.co/CnQvGfdp5z +06/30/2018,Actors,@DohertyShannen,@KDOCTV did you really air a commercial with one of your own riding a dolphin??? Shame on you. +06/26/2018,Actors,@DohertyShannen,"Ridiculous that I’m having to post this but I refuse to let companies like American Media Inc, make even 1 dollar o… https://t.co/dL8m87Flt0" +06/26/2018,Actors,@DohertyShannen,"This guy needs a rescue ASAP!!! Please see below. #Repost urgentdogsofmiami with @repostapp +・・・ +LAST CALL🚨DIES AT 1… https://t.co/WNP7GWox1K" +06/24/2018,Actors,@DohertyShannen,About last night... #lawrencepiro Santa Monica https://t.co/7WNUBw2l4h +06/24/2018,Actors,@DohertyShannen,I really like learning new things.... happy Sunday https://t.co/dmxH6jsXxi +06/23/2018,Actors,@DohertyShannen,RT @SEIclimate: Their stomachs are so full of plastic that there is no room for food. Watch the documentary. https://t.co/PVUHn9P3PH @BBCBr… +06/23/2018,Actors,@DohertyShannen,"#Repost urgentdogsofmiami with @repostapp +・・・ +PLS WATCH THIS🙏🏻. For 3 months, we’ve watched people pass us by day a… https://t.co/m28bW07NKf" +06/22/2018,Actors,@DohertyShannen,See you in Paris!! https://t.co/dpRJLbEBA6 +06/22/2018,Actors,@DohertyShannen,"RT @AbraKazamShow: Shannen Doherty @CharmedDaily, Ricky Whittle et Orlando Jones #americangods seront les vendredi 26 et samedi 27 octobre…" +06/22/2018,Actors,@DohertyShannen,no words.... https://t.co/yb6049Erwv +06/22/2018,Actors,@DohertyShannen,Ready for takeoff missbowiedoherty 📸 alexi2842 https://t.co/Bhk6v2Pb8L +06/18/2018,Actors,@DohertyShannen,And..... happy Monday https://t.co/aFtNgVDZa2 +06/18/2018,Actors,@DohertyShannen,The dent in my heart. https://t.co/pvXdLl28kW +06/17/2018,Actors,@DohertyShannen,I’m at the 4 week mark our from surgery.… https://t.co/hvk5VK9KMq +06/17/2018,Actors,@DohertyShannen,https://t.co/7nZqj174sF +06/13/2018,Actors,@DohertyShannen,Let’s sign petition and make LA fur free!!… https://t.co/A1vQymYVle +06/13/2018,Actors,@DohertyShannen,So cute. https://t.co/P8p9FlQBPy +06/09/2018,Actors,@DohertyShannen,A rare night out for me right now but when my… https://t.co/hlxNtk2UxJ +06/07/2018,Actors,@DohertyShannen,Just look at these 2 sweet girls. Need living… https://t.co/OtUzrB83Pw +06/04/2018,Actors,@DohertyShannen,Look at this gorgeous boy!! https://t.co/LKVIEuXfsb +06/04/2018,Actors,@DohertyShannen,https://t.co/LhbDqpkDB1 +06/02/2018,Actors,@DohertyShannen,Reconstruction is no joke. Not going to lie...… https://t.co/L6Mtx0E06B +06/02/2018,Actors,@DohertyShannen,Sweet baby Duke needs help to get surgery.… https://t.co/oGWOQuQfj8 +06/01/2018,Actors,@DohertyShannen,RT @WorldAnimalNews: Sign Petition Demanding That Those Responsible For Starving Hundreds Of Horses On A South African Military Base Be Hel… +05/31/2018,Actors,@DohertyShannen,"If you’re able, please join this event. #Repost… https://t.co/3sTWsyMCdS" +05/30/2018,Actors,@DohertyShannen,RT @nywolforg: Man who intentionally killed a 10-month-old endangered Mexican gray wolf on his grazing allotment in the Gila Nat'l Forest h… +05/28/2018,Actors,@DohertyShannen,"RT @UrgentPart2: The dogs on the Super Urgent page are either high risk, injured or have previously appeared on the To Be Destroyed list an…" +05/28/2018,Actors,@DohertyShannen,Thank you. https://t.co/7XYTo2idEX +05/26/2018,Actors,@DohertyShannen,"Me, trying to figure out how I feel about… https://t.co/N3xFjta91P" +05/25/2018,Actors,@DohertyShannen,This guy could use a hero real quick. https://t.co/giAgvlNrQ7 +05/25/2018,Actors,@DohertyShannen,"RT @dodo: This guy goes undercover as a dog meat buyer to rescue as many dogs as he can — and this brave, resilient dog is proving happines…" +05/25/2018,Actors,@DohertyShannen,RT @nywolforg: The federal govt is moving to allow trophy hunters to kill wolves + pups during denning season within some national wildlife… +05/25/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Good news/ Coyote with tube has been caught and in rehab. Sad cuz she’s a mom. She also had a snare on her neck under th… +05/25/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: BREAKING NEWS + +In a shocking and secretive move, Zambian authorities have overturned their 2016 decision to suspend th…" +05/23/2018,Actors,@DohertyShannen,@chrissyteigen @realDonaldTrump 😂😂😂❤️❤️ +05/23/2018,Actors,@DohertyShannen,Last call URGENT. 1 hour left. Please see below… https://t.co/3xwGTrSqzO +05/23/2018,Actors,@DohertyShannen,RT @Protect_Wldlife: Breaking News; Introduction of ivory bill boosts fight against #Elephant poaching. The #IvoryBill introduced to Parlia… +05/22/2018,Actors,@DohertyShannen,"RT @WildlifeVt: We did it! The ban on coyote killing contests (H.636) in Vermont is a done deal! It was a long, hard, fight but we never st…" +05/22/2018,Actors,@DohertyShannen,"RT @UrgentPart2: TO BE DESTROYED 05/23/18 - Tonight's list has been posted. + +https://t.co/6HYiqjrRYS https://t.co/NYcgltAGFn" +05/22/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: ""Sport is fair. Sport is consensual. If Trophy Hunting was a sport the animal would know it was involved. It would als…" +05/22/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: The paradigm shift in understanding predators are essential & not a target is happening. 🐺⭐️🐺 +Read all about it. Vermont…" +05/21/2018,Actors,@DohertyShannen,@blagurtle This.... this is perspective. I’m sorry the world we have created is one of fear to just go get an education. +05/21/2018,Actors,@DohertyShannen,Perspective.... so important. +05/21/2018,Actors,@DohertyShannen,Perspective time.... 22 school shootings this year alone. +05/18/2018,Actors,@DohertyShannen,RT @davidsting414: RT heartbroken students were in the carriage when the tortured horse was collapsed & the students never helped the poor… +05/18/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: #ThoughtForTheDay for Trophy Hunters!! + +#BanTrophyHunting NOW!! https://t.co/3jiHOyNydb" +05/18/2018,Actors,@DohertyShannen,RT @Defenders: Today is #EndangeredSpeciesDay! We have all the tools to bring these species back before they get pushed over the edge. We j… +05/17/2018,Actors,@DohertyShannen,My view last Friday May 11. As I lay there… https://t.co/zIeY8dcZ9c +05/17/2018,Actors,@DohertyShannen,LAST CALL. Please read below to save her life.… https://t.co/7nFIOJsF43 +05/15/2018,Actors,@DohertyShannen,"#Repost @cmittermeier with @repostapp +・・・ +A… https://t.co/eaS79HrTaJ" +05/14/2018,Actors,@DohertyShannen,https://t.co/DZR2eWso2p +05/14/2018,Actors,@DohertyShannen,Happy Mother’s Day mom. I only bring you to the best… https://t.co/ZBOgK0ZKb5 +05/08/2018,Actors,@DohertyShannen,This girl.... missbowiedoherty enjoying a lazy Tuesday. #dogslife @… https://t.co/saGsgrrQem +05/08/2018,Actors,@DohertyShannen,RT @nywolforg: Wolves Are Losing Ground to Industrial Logging in Southeast Alaska https://t.co/N13TMDNHyj via @earthislandjrnl +05/08/2018,Actors,@DohertyShannen,Join me and the @ASPCA and help STOP the King Amendment! If… https://t.co/TYDXBd0KLU +05/07/2018,Actors,@DohertyShannen,Let’s get Charlie adopted before he’s put down tomorrow!!!! Please!! #Repost… https://t.co/Z6ipShyj1i +05/07/2018,Actors,@DohertyShannen,Dinner with Dr Jay Orringer and his beautiful wife Jolynne. This man is… https://t.co/emt3QBKC44 +05/06/2018,Actors,@DohertyShannen,RT @oceana: Tell your senator to support ending the use of drift gillnets in waters off California and protect at-risk species from being k… +05/06/2018,Actors,@DohertyShannen,RT @dodo: This baby elephant needed some help getting out of a river — and the sweetest thing happened 🐘💕 https://t.co/UGNJz0vHki +05/06/2018,Actors,@DohertyShannen,Day 2 of morning hike with chriscortazzo I forgot how beautiful it is to… https://t.co/tbYCzcrvWw +05/05/2018,Actors,@DohertyShannen,"Check this out. #Repost @rhinosaverz with @repostapp +・・・ +Go to… https://t.co/TtOld6I2Cu" +05/05/2018,Actors,@DohertyShannen,The road ahead. https://t.co/DFqImwQMJ1 +05/04/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: Not content with killing one Lion, this BASTARD found the need to slaughter THREE of them 🤬🤬! + +RT if you want a GLOBAL…" +05/03/2018,Actors,@DohertyShannen,"RT @ASPCA: What an amazing quote! 🐴💕 ""The adoption of one horse won't change the world but surely, it will change the world for that one ho…" +05/03/2018,Actors,@DohertyShannen,@JayOrringerMD Can I give you 10.0 star review? +05/02/2018,Actors,@DohertyShannen,"@JennyOrganic @rojoha1991 @people As a “Christian” who wants to spread light, you sure are negative and spreading l… https://t.co/FN2SSH5cYX" +05/02/2018,Actors,@DohertyShannen,My doctored had me bank some blood for my upcoming surgery. Mars P was… https://t.co/A9Sms5oM2I +05/01/2018,Actors,@DohertyShannen,It’s about time daddy paramountnetwork heathers color me impressed for your… https://t.co/MHWKazMd6u +05/01/2018,Actors,@DohertyShannen,Texas please don’t let this cute baby die. #Repost @MODrescue with… https://t.co/xwa1nIjOB7 +04/25/2018,Actors,@DohertyShannen,https://t.co/YCCnzEfvwo +04/25/2018,Actors,@DohertyShannen,Check out this cute girl. https://t.co/8KWEoiIDQ0 +04/24/2018,Actors,@DohertyShannen,"It’s always awesome seeing @anhcotranhair for a few reasons... +1. He always renews my faith in… https://t.co/a9h5dHYH63" +04/23/2018,Actors,@DohertyShannen,I went yesterday and saw this movie. Thank you @amyschumer and everyone involved for making me… https://t.co/2mzNQc88Ar +04/21/2018,Actors,@DohertyShannen,This. https://t.co/1UxFUR2fPs +04/18/2018,Actors,@DohertyShannen,I am so proud of our foundation @AHWFoundation and consultingwildhorse for getting this done.… https://t.co/6OBJ6MOgmm +04/14/2018,Actors,@DohertyShannen,"@sarahmgellar happy birthday. We have been thru some monumental moments together... weddings,… https://t.co/v8jC2PJeCj" +04/13/2018,Actors,@DohertyShannen,"If this isn’t a kick ass group of women, I don’t know what is. Love my girls @sarahmgellar… https://t.co/QLiY6heUsE" +04/13/2018,Actors,@DohertyShannen,Birthday night. Such an amazing group of people I love so much https://t.co/ZqMg8ciZbc +04/12/2018,Actors,@DohertyShannen,Ran down to my local salon to get hair done for dinner and my girl Amanda turned it out!!!… https://t.co/clPU1DuXr6 +04/12/2018,Actors,@DohertyShannen,@peta Thank you 💕🐾🐾 +04/12/2018,Actors,@DohertyShannen,@amya1996 💕💕 +04/12/2018,Actors,@DohertyShannen,@TODAYshow 😘😘😘😘 +04/12/2018,Actors,@DohertyShannen,Spa time done then got treated to lunch!!! Thanks mom. Love you. themamarosa #birthdaygirl https://t.co/Ltu5nDznNZ +04/09/2018,Actors,@DohertyShannen,Apparently it was a tiring morning for them both.... https://t.co/0K4CMHEhRM +04/09/2018,Actors,@DohertyShannen,Please read below. We need housing for 87 dogs or slaughter will be unavoidable. #Repost… https://t.co/l1IgQQ0zk1 +04/07/2018,Actors,@DohertyShannen,@RalphGarman ❤️❤️❤️ thank you kind sir. +04/05/2018,Actors,@DohertyShannen,@SeanvanderWilt Damn!!!! You look good! +04/04/2018,Actors,@DohertyShannen,Still in remission. I imagine that I’ll always worry to a certain extent but I think we all… https://t.co/cH4QAhUbq1 +04/04/2018,Actors,@DohertyShannen,"RT @ASPCA: ACT NOW: Urge the U.S. Attorney General to support the HEART Act, a federal bill that will help victims of dogfighting get rehab…" +04/02/2018,Actors,@DohertyShannen,"Went to doctor today for tumor marker test and bone density scan. Yes, that’s my mom... I… https://t.co/LTyT2X6qSB" +04/02/2018,Actors,@DohertyShannen,I know it’s a wrap on Easter but can I just wear these a little longer? https://t.co/oYJLwI6UES +04/02/2018,Actors,@DohertyShannen,Ending Easter with family. My husband is working but he’s here in spirit. I love these people.… https://t.co/i3LYklgpFC +04/01/2018,Actors,@DohertyShannen,Easter. chriscortazzo themamarosa sdjneuro kellgrom https://t.co/wqGr0JaBoy +04/01/2018,Actors,@DohertyShannen,"Me, clearly oblivious to abnormally large bunny behind me and my mom, clearly disturbed by… https://t.co/K7ASrhb48c" +04/01/2018,Actors,@DohertyShannen,Easter with sdjneuro and @ashermonroe https://t.co/dgjwGgoIei +03/31/2018,Actors,@DohertyShannen,"So my friend @seanvanderwilt said... hey let’s dance. I, being a good friend, obliged. I didn’t… https://t.co/sc2Wqg9rqV" +03/26/2018,Actors,@DohertyShannen,Today March 25 is my dads birthday. I wish he was still here. I miss his hugs. I miss his… https://t.co/pjbXrN37T6 +03/25/2018,Actors,@DohertyShannen,wedding of the year.... maybe of the decade. #marcandnoble #nyc https://t.co/AUpBAIjBMO +03/24/2018,Actors,@DohertyShannen,Proud to be included and share my story in hope of helping others https://t.co/VNWdThWH3g +03/24/2018,Actors,@DohertyShannen,RT @ASPCA: ACT NOW: Today is the LAST day the @USDA will accept public comments on a disastrous proposal to allow for-profit businesses and… +03/24/2018,Actors,@DohertyShannen,#mdastrong https://t.co/8IOxWCF6be +03/24/2018,Actors,@DohertyShannen,And we are off. https://t.co/6fqgjEuPZM +03/22/2018,Actors,@DohertyShannen,#theadventuresofindio continue with @kurt_iswarienko falling in love. #rescue https://t.co/5vh3QuVLm0 +03/22/2018,Actors,@DohertyShannen,"So I babysat this one today. Going to housebreak her, train her. I hope. So please meet Indio.… https://t.co/7CInZst79i" +03/20/2018,Actors,@DohertyShannen,"Rescued this cute little girl today. She was found by Casey, alone on the streets of Indio. No… https://t.co/Oh7ULOXveU" +03/20/2018,Actors,@DohertyShannen,Good morning. https://t.co/TUe6CxWx4R +03/15/2018,Actors,@DohertyShannen,Happy birthday annemkortright Your friendship means more to me than you’ll ever know. Your… https://t.co/vvlZ2Lm3AH +03/14/2018,Actors,@DohertyShannen,I tried to explain to her the concept of separate beds but she hates the fifties.... #problems https://t.co/k9HVFCgOet +03/14/2018,Actors,@DohertyShannen,God I’m so bored when I’m with him https://t.co/wFcbM10c2r +03/14/2018,Actors,@DohertyShannen,So I took a drive to storage or what I like to call my “clothing archive”. What was nostalgic… https://t.co/2gLkQcwVex +03/13/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: Lawsuit!!! Thank you HSUS, CBD and WEG. https://t.co/gkclr66Giy" +03/13/2018,Actors,@DohertyShannen,@amya1996 @AC50197 Yes darling it is. +03/13/2018,Actors,@DohertyShannen,"RT @ASPCA: We’re outraged! Today the @USDA officially withdrew the organic animal welfare rule, which would have improved the lives of mill…" +03/12/2018,Actors,@DohertyShannen,Seriously... 45 minutes straight is this. Neda just doesn’t understand taking it slow. But the… https://t.co/0sSE05u2iI +03/12/2018,Actors,@DohertyShannen,@katheri07_12 @CharmedDaily Ah well then I’m going to go pillage my grandmothers house +03/12/2018,Actors,@DohertyShannen,@OlgaAlekseyevna @CharmedDaily Nothing like painted on abs... +03/12/2018,Actors,@DohertyShannen,@AC50197 You are aging us both... 😩😜 +03/12/2018,Actors,@DohertyShannen,@CharmedDaily What the hell am I wearing? Fairly certain that dress was drapes prior to me... +03/12/2018,Actors,@DohertyShannen,"RT @MercyForAnimals: Farmer has change of heart, turns his farm vegan! https://t.co/rOfUgO96SA" +03/12/2018,Actors,@DohertyShannen,RT @peta: ICYMI: Elephants are beaten and have sharp hooks jabbed into their skin — all for Thailand's Annual King's Cup Polo Tournament. h… +03/11/2018,Actors,@DohertyShannen,"RT @UrgentPart2: The dogs on the Super Urgent page are either high risk, injured or have previously appeared on the To Be... https://t.co/Y…" +03/10/2018,Actors,@DohertyShannen,"RT @ohstephany_: Morgan Williams, Junior. Room 1213 https://t.co/VG9s73Mtr8" +03/10/2018,Actors,@DohertyShannen,"RT @ohstephany_: Megan Smith, Senior. Room 1254 https://t.co/pYl20Uu9d9" +03/09/2018,Actors,@DohertyShannen,#parklandstrong https://t.co/FOAVRJXEar +03/09/2018,Actors,@DohertyShannen,@xo_karmin_ox @MSD_DECA @FloridaDECA @DECAInc ❤️❤️❤️ +03/09/2018,Actors,@DohertyShannen,My heart breaks and yet is uplifted by these kids and their teacher as they try to get back to… https://t.co/TIVgGs2WHR +03/08/2018,Actors,@DohertyShannen,Marjory Stoneman Douglas. These kids.... I’m humbled in front of them. #neveragain https://t.co/FHBMQ2C9YO +03/08/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Trump Administration Makes Elephants Fair Game For Hunters As Trophy Ban is Lifted https://t.co/6kMRMQR4V4 +03/08/2018,Actors,@DohertyShannen,#internationalwomensday https://t.co/gkc951w73r +03/08/2018,Actors,@DohertyShannen,Just nothing but love and fun chriscortazzo #miami https://t.co/EHekkoQsUG +03/07/2018,Actors,@DohertyShannen,"Enough. We are coming for you. #Repost adriansteirn with @repostapp +・・・ +Please read and share.… https://t.co/4rzJXD9IBn" +03/06/2018,Actors,@DohertyShannen,"RT @nywolforg: We're not trophies. We're family. + +Lawmakers must pass an appropriations measure before midnight on March 23 + riders that s…" +03/04/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: TONIGHT!!! In response to concerns about coyotes and safety on Boxford’s trails, BTA/BOLT is sponsoring a talk... https:…" +03/03/2018,Actors,@DohertyShannen,"RT @NRDC: It’s estimated that fewer than 200 FL panthers remain in the US. And now, with oil and gas development encroaching on their habit…" +03/03/2018,Actors,@DohertyShannen,"RT @nywolforg: We are not trophies. We're family. + +URGENT -- If the omnibus spending package passes into law as is, wolves will die at the…" +03/03/2018,Actors,@DohertyShannen,RT @ASPCA: The @USDA is considering something truly despicable: allowing for-profit businesses that exploit and exhibit animals (puppy mill… +03/01/2018,Actors,@DohertyShannen,Cleaning out my airstream so it can be moved and it’s amazing what memories you run across that… https://t.co/MuqKJ9B22U +02/28/2018,Actors,@DohertyShannen,Check out my friend @RealRomaDowney and her new book at link here. https://t.co/s2kBANkTXG +02/28/2018,Actors,@DohertyShannen,I am beyond excited for my friend @RealRomaDowney and the release of her new book. Pre ordering… https://t.co/6fuBa5L3Fd +02/27/2018,Actors,@DohertyShannen,"RT @ProjectCoyote: Challenging the deadly Coyote Challenge. End the #warOnwildlife +🐺🐾🐺🐾🐺💙🐺🐾🐺🐾🐺🐾🐾🐺 https://t.co/0mm9U6q3Du" +02/27/2018,Actors,@DohertyShannen,Good morning https://t.co/PquwJq2p01 +02/27/2018,Actors,@DohertyShannen,https://t.co/NcismvKTyN +02/27/2018,Actors,@DohertyShannen,Poser.... https://t.co/w1iDErnlYD +02/26/2018,Actors,@DohertyShannen,Please check her out. https://t.co/aXjdkKG34D +02/25/2018,Actors,@DohertyShannen,Happy birthday chelseahandler Grateful you walked into my life and steadfastly stood by me.… https://t.co/Gw6mhpjVUz +02/24/2018,Actors,@DohertyShannen,@NickRowlands Hope you feel better!! +02/23/2018,Actors,@DohertyShannen,"This. @ Santa Ynez, California https://t.co/Mql7u2AnUx" +02/22/2018,Actors,@DohertyShannen,"Planning... #happyplace @ Santa Ynez, California https://t.co/Mt7jPXZx0w" +02/22/2018,Actors,@DohertyShannen,@MrGivens_91 Awe thank you!! 💚💚❤️❤️😉😉 +02/22/2018,Actors,@DohertyShannen,@leeogrady79 @Heatherstv Im sorry 💚 +02/22/2018,Actors,@DohertyShannen,"@MrGivens_91 I hate labels. I’m for what’s best for people, this country and the world. #sappyyes" +02/22/2018,Actors,@DohertyShannen,@rachelcabbit @Heatherstv @paramountnet @Thoroughbreds 💚💚 +02/22/2018,Actors,@DohertyShannen,@Heatherstv That’s why I love you so.... you’re so very +02/22/2018,Actors,@DohertyShannen,"@rachelcabbit @Heatherstv @paramountnet @Thoroughbreds Give it a chance. Honestly, it’s great. This cast is amazing" +02/22/2018,Actors,@DohertyShannen,@jonmmargolis BQ... obvi +02/22/2018,Actors,@DohertyShannen,@Paguban I just don’t understand why an AR 15 is necessary for a civilian +02/22/2018,Actors,@DohertyShannen,@BillyWontStop It’s just wrong. +02/22/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Even the FBI knows animal abuse leads to human abuse. https://t.co/8w36eFCir7 +02/22/2018,Actors,@DohertyShannen,@Heatherstv I hope you’re not correcting the OG Heather Duke....👑💚 +02/22/2018,Actors,@DohertyShannen,@leahmgordon @damianholbrook 💚💚💚💚 +02/22/2018,Actors,@DohertyShannen,@EllenPompeo And me as well +02/22/2018,Actors,@DohertyShannen,@Heatherstv Corn nuts +02/22/2018,Actors,@DohertyShannen,RT @Heatherstv: You can watch the first episode right now. Don't need to sign in or any of that basic cable nonsense. Just press play and s… +02/22/2018,Actors,@DohertyShannen,"I try to not get political but, arm our teachers? They’re teachers. Not cops, not security, not military. They HAVE a job. #confused" +02/21/2018,Actors,@DohertyShannen,RT @Heatherstv: Are you really going to wait until March 7 to watch the series premiere of Heathers on @ParamountNet? You can stream it rig… +02/21/2018,Actors,@DohertyShannen,Heathers..... that’s all. heathers paramountnetwork https://t.co/iaTCJTKJ3t +02/20/2018,Actors,@DohertyShannen,RT @nywolforg: Anti-wolf policy riders that seek to block all spending on recovery efforts for critically endangered Mexican gray wolves ar… +02/17/2018,Actors,@DohertyShannen,@nathanwchen what a beautiful performance. So proud you represent the USA +02/15/2018,Actors,@DohertyShannen,"Can’t wait for my friends store to officially open, although it hasn’t stopped me from stopping… https://t.co/R1DpnApSeb" +02/15/2018,Actors,@DohertyShannen,Enough https://t.co/CtRFKBz4sX +02/12/2018,Actors,@DohertyShannen,Walked. Then this crap. Then done. @jammalibu Now think I’ll call uber instead of walking… https://t.co/01sAs0qRbO +02/12/2018,Actors,@DohertyShannen,Walking to my workout cause my @LandRover is in shop for 3rd week in a month. Being positive... I’m getting a double workout. #lemon +02/12/2018,Actors,@DohertyShannen,missbowiedoherty and I trying to decide what art goes where in this hallway. Lucky I’m married… https://t.co/S40WfYi0Uh +02/11/2018,Actors,@DohertyShannen,@Hystirycal Thank you 💕 +02/11/2018,Actors,@DohertyShannen,Words... so easily tossed around and yet what ramifications they have... both good and bad. https://t.co/aBAhsuk9FV +02/08/2018,Actors,@DohertyShannen,The Heathers..... it’s so very. heathers paramountnetwork https://t.co/XL7dbnvcA1 +02/08/2018,Actors,@DohertyShannen,@LandRover my car has broken down since day I got it. Same issue every month. Just got picked up yet again after being in shop for 2 weeks +02/08/2018,Actors,@DohertyShannen,@IOLANDACRESPINA @LukePerryIII @CW_Riverdale 1. That’s not Luke. 2. There was never even a convo about Riverdale +02/08/2018,Actors,@DohertyShannen,RT @peta: How many chances will @LoganPaul get? It's NEVER okay to do something like this 😠 [via @peta2] https://t.co/D8GfuHbhCj +02/08/2018,Actors,@DohertyShannen,@peta @LoganPaul @peta2 Wtf +02/08/2018,Actors,@DohertyShannen,@LukePerryIII @CW_Riverdale Hmm when was the last time I saw you? +02/08/2018,Actors,@DohertyShannen,RT @ProjectCoyote: Another case of a wolf shot by a coyote hunter. This time in South Dakota. Poor wolf had old trapping injuries... https:… +02/07/2018,Actors,@DohertyShannen,"@ArielleKebbel @repostapp Praying for you, your sister and your family" +02/07/2018,Actors,@DohertyShannen,"#Repost @ariellekebbel with @repostapp +・・・ +🚨 ALERT 🚨 my sister Julia is still missing. Updated… https://t.co/vDlMO1y9Y8" +02/05/2018,Actors,@DohertyShannen,They flew. What an amazing game #SuperBowl2018 #FlyEagelsFly +02/05/2018,Actors,@DohertyShannen,Eagles are flying +02/04/2018,Actors,@DohertyShannen,@tuggerman @Patriots @Eagles #FlyEagelsFly +02/04/2018,Actors,@DohertyShannen,I love both teams. This is hard. @Patriots just unbelievable. @Eagles have my heart right now. +02/04/2018,Actors,@DohertyShannen,Beautiful. https://t.co/FeHj7NEeYJ +02/04/2018,Actors,@DohertyShannen,@Pink did it again. #SuperBowlSunday got me to tear up +02/04/2018,Actors,@DohertyShannen,Why do I get so excited for the #SuperBowlSunday and anxiety. It’s like I’m playing. +02/04/2018,Actors,@DohertyShannen,"RT @Protect_Wldlife: NEW! LTD ED 'LOVE US OR LOSE US - SAVE THE ELEPHANT' + +Show EVERYONE that you love Elephants when you wear a 'Love Us…" +02/04/2018,Actors,@DohertyShannen,@Protect_Wldlife These are great!! +02/04/2018,Actors,@DohertyShannen,@Stitched_Rattus @Romantic_Corpse Happy birthday! +02/04/2018,Actors,@DohertyShannen,Super bowl super bowl super bowl +02/04/2018,Actors,@DohertyShannen,"Happy place. @ Santa Ynez, California https://t.co/ACXOUYAo4C" +02/02/2018,Actors,@DohertyShannen,"RT @DalaiLama: The basic foundation of humanity is compassion and love. This is why, if even a few individuals simply try to create mental…" +02/02/2018,Actors,@DohertyShannen,Just never enough with her. missbowiedoherty https://t.co/gXEfxhZW98 +02/02/2018,Actors,@DohertyShannen,And all is right again. missbowiedoherty I just love you. https://t.co/7E9XXRgJs0 +02/02/2018,Actors,@DohertyShannen,@emilyach27 @Paguban 😂😂 +07/02/2018,Actors,@shenaegrimes,Canada Day up north with the family... doesn’t get much better than this 🖤 Happy Canada Day to you and yours! 🇨🇦❤️🇨🇦 https://t.co/vb7KbHOgUY +06/30/2018,Actors,@shenaegrimes,I feel so grateful to have had the opportunity that I did last night...to spend time with my grandma’s hands sharin… https://t.co/FapCDbukxM +06/28/2018,Actors,@shenaegrimes,Stoked on my new ‘do ⚡️💇⚡️ Check out my new #IGTV video to see the before/after and during! https://t.co/SuwUCVdnFR +06/26/2018,Actors,@shenaegrimes,"Raw. As. F*ck. 👊 Talking pregnancy skin, embracing insecurities and finding confidence + some helpful color correct… https://t.co/o3XFm10vYl" +06/23/2018,Actors,@shenaegrimes,SHOP THE PRODUCTS I USED IN THE VIDEO! https://t.co/DOpenpK0qT +06/22/2018,Actors,@shenaegrimes,"RT @rcinto: After @shenaegrimes has her baby someone needs to reunite her with @Angela_Griffin and @wendy_crewson and relaunch ""The Detail""…" +06/19/2018,Actors,@shenaegrimes,#TreatYoSelfTuesday New video on https://t.co/yCbqtSAMzU of an EPIC Beauty PR Haul because someone somewhere must’v… https://t.co/jiXBVadOvT +06/17/2018,Actors,@shenaegrimes,Finding clothes that fit is a basic struggle for every woman when pregnant but there are fortunately lots of materni https://t.co/gzSAVE8SHM +06/16/2018,Actors,@shenaegrimes,For those wondering why I missed out on the… https://t.co/uSUJk18Y5x +06/14/2018,Actors,@shenaegrimes,RT @WILDFOXCOUTURE: Never ask a girl with winged eyeliner why she’s late. +06/11/2018,Actors,@shenaegrimes,RT @MattLanter: We had a blast with @shenaegrimes and… https://t.co/wInVMcNdvj +06/10/2018,Actors,@shenaegrimes,"In LA, our summertime Sunday fun days are typically spent at the beach or poolside because it is hot as a motherf--. https://t.co/uxrk0E7YRr" +06/05/2018,Actors,@shenaegrimes,"RT @PhilMphela: TV: TONIGHT at 8PM #TheDetail premieres on @UniversalTVSA (@DStv 117) + +Starring @Angela_Griffin @wendy_crewson & @shenaegri…" +06/05/2018,Actors,@shenaegrimes,Myself and Josh... and baby Girl Beech makes 3!… https://t.co/mnh3gqnmUJ +06/04/2018,Actors,@shenaegrimes,I’m nervous and excited to share my first… https://t.co/tOqjn2vDH9 +06/04/2018,Actors,@shenaegrimes,I’m nervous and excited to share my first… https://t.co/1xBmxo2UkB +06/04/2018,Actors,@shenaegrimes,Canada! The last ever episode of @TheDetailCTV starts now! Sadly we will not be coming back for a second season on… https://t.co/C4lxOWZKv2 +06/03/2018,Actors,@shenaegrimes,I thought it was time to share my first pregnancy update with you guys at 24 weeks and I'm nervous but excited to fi https://t.co/v2PFrDAxOQ +05/31/2018,Actors,@shenaegrimes,We’re outfitting our Smart Nursery with ease thanks to @squaretrade! Schedule appts at participating retailers when… https://t.co/7XSRY1WrB7 +05/23/2018,Actors,@shenaegrimes,Find friends that make you laugh until you can’t see & indulge your pregnancy BBQ cravings even when the sun don’t… https://t.co/WeAPPxz3A5 +05/22/2018,Actors,@shenaegrimes,I'm sure most of you already know about my love for FabFitFun and that I have been a #fabfitfunpartner for nearly a https://t.co/CdjbJpEMdB +05/16/2018,Actors,@shenaegrimes,I finally feel confident to post about my outfits again because secret's out and the interweb now knows I'm preggers https://t.co/NNitNy4Hnx +05/14/2018,Actors,@shenaegrimes,RT @amamarino: When @shenaegrimes is interrogating her husband on #TheDetail https://t.co/VEatBo94OW +05/14/2018,Actors,@shenaegrimes,RT @CTV_Television: A new case heats up tonight on @TheDetailCTV. Don't miss it at 9! #TheDetail @shenaegrimes https://t.co/QQmjN6j5ou +05/10/2018,Actors,@shenaegrimes,RT @CTV_PR: FUN FACT: One of this week's uncooperative suspects is actually @shenaegrimes 's husband Josh Beech! https://t.co/hHdkjD9elB +05/07/2018,Actors,@shenaegrimes,#couplegoals 😝 https://t.co/shk4HjdNu2 +05/07/2018,Actors,@shenaegrimes,#couplegoals 😝 https://t.co/RbjaM4gzSh +05/04/2018,Actors,@shenaegrimes,Thank you love!!!! Xx https://t.co/2GFYb75ETc +05/03/2018,Actors,@shenaegrimes,Thank for breaking this insanely exciting news for us!!! ⚡️🖤⚡️ https://t.co/z3ofCySlW9 +05/03/2018,Actors,@shenaegrimes,Well it's official... I'm definitely a grown-up! This badass baby is on board and I am so thrilled to be able to fin https://t.co/4HPKXBgIWm +04/24/2018,Actors,@shenaegrimes,This post is all about the most badass summer must-haves delivered to your door all in one Badass Box! Literally. It https://t.co/aBGMOHRWZm +04/19/2018,Actors,@shenaegrimes,When you feelin’ those cheekbones... NEW makeup tutorial for ‘How to Contour & Highlight’ is on… https://t.co/Ni04w1WIJ0 +04/13/2018,Actors,@shenaegrimes,"RT @CTV_PR: After a young girl is found dead in the trunk of a car, Detectives Stevie Hall (@Angela_Griffin) & Jack Cooper (@shenaegrimes)…" +04/11/2018,Actors,@shenaegrimes,"I can already feel the summer heatwave slowly rolling in, which is awesome for fun in the sun but it also means the https://t.co/j90iABlOT0" +03/29/2018,Actors,@shenaegrimes,How to style a utility jumpsuit TWO ways: LA vs San Diego style post on the blog today featuring… https://t.co/bJlnLyyJuY +03/29/2018,Actors,@shenaegrimes,Today's post is an extra special one because not only does it walk you through two totally unique takes on how to st https://t.co/ggGxmDH9jM +03/27/2018,Actors,@shenaegrimes,"RT @cbcradioq: 🔊 LISTEN: @shenaegrimes & @Angela_Griffin joined guest host @lauriebrown to talk about @TheDetailCTV, a new Canadian police…" +03/26/2018,Actors,@shenaegrimes,@adelaideskxne Thank you ❤️❤️❤️ +03/26/2018,Actors,@shenaegrimes,RT @dobrevftobrosey: @shenaegrimes so glad to see you back in business but this time as a badass detective who takes no shit! Proud of you!… +03/26/2018,Actors,@shenaegrimes,RT @lantetrain: Now that’s how you do a premiere @TheDetailCTV @shenaegrimes @Angela_Griffin @MattyBGordon #TheDetail ⭐️⭐️⭐️⭐️⭐️ gold stars… +03/26/2018,Actors,@shenaegrimes,"RT @stefheartsyou: What I thought of the first episode of #TheDetail : +@shenaegrimes @Angela_Griffin @wendy_crewson @TheDetailCTV https://t…" +03/26/2018,Actors,@shenaegrimes,"RT @GagaThisWayy: A strong female led cast ✅, the perfect crime show ✅, @shenaegrimes back on TV weekly ✅! All is good in the world again!…" +03/26/2018,Actors,@shenaegrimes,"And that is how she does it, folks! Detective Cooper is a #boss! Couldn’t be more honored to be a part of this show… https://t.co/DrASSTF4fK" +03/26/2018,Actors,@shenaegrimes,RT @GagaThisWayy: @shenaegrimes YOU DID THAT #TheDetail https://t.co/eciVNrWWnn +03/26/2018,Actors,@shenaegrimes,RT @wendy_crewson: So proud of this talented group @shenaegrimes @Angela_Griffin @david_cubitt @MattyBGordon @mukadambamn @edisonmedison @… +03/26/2018,Actors,@shenaegrimes,@MattyBGordon @Angela_Griffin @TheDetailCTV #your#skillme +03/26/2018,Actors,@shenaegrimes,RT @Rachie323: @shenaegrimes you are KILLING IT babe!! Love having you back on my screen - Annie Wilson will always have a special place in… +03/26/2018,Actors,@shenaegrimes,RT @lantetrain: @shenaegrimes @TheDetailCTV @CTV_Television Hell yah I’m so glad you were cast to play her cause seriously I can’t see anyo… +03/26/2018,Actors,@shenaegrimes,@lantetrain @TheDetailCTV @CTV_Television Thank youuu!!! +03/26/2018,Actors,@shenaegrimes,@murtzjaffer I meannn... Jack and I would definitely be friends... if I was cool enough to hang with a genius homicide detective! 😂 +03/26/2018,Actors,@shenaegrimes,@Goodeeeeee @Angela_Griffin @wendy_crewson 🙏🙏🙏 +03/26/2018,Actors,@shenaegrimes,@MattyBGordon Yasss!!! 🙌🙌🙌 +03/26/2018,Actors,@shenaegrimes,"@lantetrain @TheDetailCTV @CTV_Television Everything? Badass 👮‍♀️? Check! Real, complex woman? Check! Rough around… https://t.co/QPTnNkCwVN" +03/26/2018,Actors,@shenaegrimes,RT @CTV_Television: Messy but brilliant! #TheDetail https://t.co/oh738qo28L +03/26/2018,Actors,@shenaegrimes,@Rachie323 Me too!!! 😍 +03/26/2018,Actors,@shenaegrimes,@stefheartsyou It’s meant to be based in an anonymous North American city but we certainly don’t shy away from the… https://t.co/kB8hjyS9vE +03/26/2018,Actors,@shenaegrimes,RT @Leeeeey: @shenaegrimes first day of shooting. freezing cold nigh. In her bare feet. Never stopped smiling. Can we say amazing. @TheDeta… +03/26/2018,Actors,@shenaegrimes,@Leeeeey @TheDetailCTV ❤️❤️❤️ +03/26/2018,Actors,@shenaegrimes,"Ahhhh Detective Jack Cooper, ladies and gentlemen. #hotmess #myfavoritecharacter" +03/26/2018,Actors,@shenaegrimes,RT @CTV_PR: #TheDetail is on now! @TheDetailCTV @Angela_Griffin @shenaegrimes @wendy_crewson +03/26/2018,Actors,@shenaegrimes,Ahhh!!! The moment has finally arrived! @TheDetailCTV starts now on @CTV_Television in Canada and I’ll be live twee… https://t.co/xXnxMZX9pK +03/26/2018,Actors,@shenaegrimes,RT @wendy_crewson: SO EXCITED. Join us tonight 9 pm. The beautiful and brilliant @Angela_Griffin and @shenaegrimes @TheDetailCTV https://t.… +03/26/2018,Actors,@shenaegrimes,RT @KatrinaSaville: Get ready to meet a few very cool women you’re going to want to spend the next several Sunday evenings with — @shenaegr… +03/26/2018,Actors,@shenaegrimes,"RT @Leeeeey: Twenty minutes until @shenaegrimes, @Angela_Griffin, @wendy_crewson @david_cubitt @MattyBGordon @mukadambamn @edisonmedison @C…" +03/25/2018,Actors,@shenaegrimes,"Today is the day!!! Oh 🇨🇦, thedetailctv premieres TONIGHT at 9pm on @ctv_television and I will… https://t.co/vc67pruWxY" +03/14/2018,Actors,@shenaegrimes,"Girrrl, if you know me at all, you know I love leopard print anything and everything! It's really a shock this post https://t.co/WlSVl1MHjQ" +02/27/2018,Actors,@shenaegrimes,"Spring has nearly sprung and while I'm definitely thrilled for the all the newness the upcoming season will bring, I https://t.co/D6V8KQlXL8" +02/08/2018,Actors,@shenaegrimes,"Valentine's Day is just around the corner and as always, there's a million blog posts and tutorials for uber-girly, https://t.co/qZTp2qJIp8" +02/08/2018,Actors,@shenaegrimes,"Watch my new Valentine's Day makeup tutorial for a fun, sexy spin on a classic beauty look that your lover will lov… https://t.co/w12R4xdUKu" +02/05/2018,Actors,@shenaegrimes,Finally!!! Thrilled to announce that my new series The Detail will make its Canadian TV debut on March 25th @ 9pm o… https://t.co/DxowGfMRh0 +01/24/2018,Actors,@shenaegrimes,"A lot of you have asked about my skincare routine, so I thought it was time for a 'Get Unready With Me | Nighttime… https://t.co/OkZm67Kr2U" +01/24/2018,Actors,@shenaegrimes,"This post is sponsored by Olay, but all opinions are my own. Do you ever feel like there just aren’t enough hours https://t.co/lq8W1RXiRa" +01/21/2018,Actors,@shenaegrimes,"Vinyl and fetish fantasies have typically gone hand in hand but don't worry folks, this vinyl fashion is entirely PG https://t.co/LqsjLNzUJI" +01/18/2018,Actors,@shenaegrimes,My obsession with berets has definitely followed me into 2018 but this year I'm putting a heavy metal spin on things https://t.co/nvkACNxjzF +01/16/2018,Actors,@shenaegrimes,I'm a product hoarder and it finally paid off! My 'Beauty Product Empties 2017' video is up on YouTube today! I'm l… https://t.co/2cdFrIG4BR +01/14/2018,Actors,@shenaegrimes,The turnover of a year typically brings a change of hair in my life! Every time I'm just about happy with where my o https://t.co/7pyDPrVsPj +01/11/2018,Actors,@shenaegrimes,Don’t need to wait for the weekend to be comfy when it looks this good! Talking ‘Living… https://t.co/N2eJyRlnky +01/11/2018,Actors,@shenaegrimes,"Guys, I think I found the secret to the Kardashians' success... being comfortable while looking chic as hell in a ba https://t.co/AGgYWP8Nak" +01/10/2018,Actors,@shenaegrimes,OMG... my husband did my makeup in my new video! Watch the full thing here: https://t.co/TkiLo0wPZX & don't forget… https://t.co/52B5ZXnmXm +01/04/2018,Actors,@shenaegrimes,"New year, new trends?! No thanks! The patent skirt trend is still in full effect and my obsession with it is thrivin https://t.co/iOy241o89n" +12/28/2017,Actors,@shenaegrimes,The holiday season is nearly over but there is one major night of celebrating to do and I've got my look planned and https://t.co/gtzfFHNyOj +12/23/2017,Actors,@shenaegrimes,Sister from another mister... and mother... or that would be super weird... because she’s my… https://t.co/Vg16hK1vji +12/21/2017,Actors,@shenaegrimes,"No, I'm not dressing up like Sally or Jack Skellington for Christmas BUT I do feel like Helena Bonham-Carter at some https://t.co/20o1YcLoYv" +12/19/2017,Actors,@shenaegrimes,Get your holiday party glam on point with the new video on my YouTube Channel 'GRWM: Holiday Party Hair & Makeup'!!… https://t.co/szJC2enwwp +12/18/2017,Actors,@shenaegrimes,"If you're anything like me, you've suddenly realized that Christmas is only one week away and are now scrambling for https://t.co/GI7zg7lKHO" +12/14/2017,Actors,@shenaegrimes,If you follow me on social media or have ever visited my blog before then you know I'm not the kind of gal that drea https://t.co/PQmNl7CpiI +12/12/2017,Actors,@shenaegrimes,'Tis the season for all things glitter! My new YouTube video shows you how to do one of my favorite holiday makeup… https://t.co/Ykjtgysf91 +12/11/2017,Actors,@shenaegrimes,Daydreaming about the weekend and it’s only Monday 😝 https://t.co/CrP80SPKJo +12/08/2017,Actors,@shenaegrimes,A Santa-approved day look for the books! I believe in spreading holiday cheer wherever and whenever you can and sinc https://t.co/BEs8hbyDdt +12/07/2017,Actors,@shenaegrimes,Watch the full tutorial on my favorite easy & affordable Holiday Decor DIYs here: https://t.co/bN46kYJcf7 and to se… https://t.co/YrP9ICswWQ +12/06/2017,Actors,@shenaegrimes,This is my first holiday season settled into my house and I decided to donate all of my Christmas decorations and st https://t.co/3o86cFWmTp +11/28/2017,Actors,@shenaegrimes,"Watch my review on the good, the bad and the beautiful from the GIGI HADID x MAYBELLINE DRUGSTORE MAKEUP COLLECTIO… https://t.co/FiYhX0HP7z" +11/28/2017,Actors,@shenaegrimes,This year I’m supporting #GivingTuesday by rocking my pin from @ebay in support of @FeedingAmerica! #AD Last year e… https://t.co/bIkcEgIMFR +11/23/2017,Actors,@shenaegrimes,When there’s a heat wave in LA but you insist on wearing a cozy knit sweater because it’s 🦃… https://t.co/u7c1wvGZJq +11/23/2017,Actors,@shenaegrimes,Have you ever admired somebody so much that you've literally mapped out what you would say to them if your paths eve https://t.co/PhtzfuGQF9 +11/21/2017,Actors,@shenaegrimes,When your husband’s an epic photographer and there’s a heat wave in November...📸: photosbybeech https://t.co/QiXiyUUejy +11/20/2017,Actors,@shenaegrimes,It's that time of year again! A change of season means a new delivery from my most worthwhile lifestyle expense of a https://t.co/Ev1jsBXNXi +11/17/2017,Actors,@shenaegrimes,Everyday I’m hustlin’. 🤘#domesticbadass #lostinlala https://t.co/MeeV1mJncG +11/16/2017,Actors,@shenaegrimes,My new hair tutorial shows you 6 quick & easy heatless hairstyles that you can do in a pinch and they’re a cinch! L… https://t.co/xutVstIdJJ +11/14/2017,Actors,@shenaegrimes,"@lifetimetv @AmBeautyStar Products from @FHIBrands, @BRONXCOLORS, @CBareProducts, @ColorWowHair and @HudaBeauty" +11/14/2017,Actors,@shenaegrimes,I just did another #partner FB live for @Lifetimetv and @AmBeautyStar! Check it out the video here… https://t.co/HQX7bc2BFF +11/12/2017,Actors,@shenaegrimes,Take time to remember those who fought & sacrificed for us. Honor them with a poppy on your profile #CanadaRemembers https://t.co/UFO9WDbeK7 +11/12/2017,Actors,@shenaegrimes,Show you remember Canada's Veterans. Add a poppy to your avatar here: https://t.co/wSOHrKdpx1 #CanadaRemembers +11/09/2017,Actors,@shenaegrimes,My kid sister does my makeup in this EPIC MAKEUP FAIL of our attempt at the full face using only kids makeup challe… https://t.co/fFO8HpvumG +11/08/2017,Actors,@shenaegrimes,Going LIVE on my Facebook page in one hour to unbox my full #FabFitFun winter box! Click link in… https://t.co/EKlkuBJEYB +11/07/2017,Actors,@shenaegrimes,Educational life experiences with my 8 year old sister...or skipping school on a Monday to visit… https://t.co/SOsCBjcc9c +11/03/2017,Actors,@shenaegrimes,Pretty happy to have these weirdos in town! #famjam https://t.co/6eA84vFX43 +11/01/2017,Actors,@shenaegrimes,Always a rock n roll gal at heart but this is just one of the many ways this #fabfitfunpartner… https://t.co/r0ihGgHKND +11/01/2017,Actors,@shenaegrimes,Halloween with a hometown homie 🎃💋🤘💋🎃 https://t.co/QlRQ4bZLa2 +10/31/2017,Actors,@shenaegrimes,"Happy Halloween!!! 🎃 +. +. +. +#🤡 https://t.co/Z26P9sisSe" +10/30/2017,Actors,@shenaegrimes,Need a last minute costume? Click LINK IN BIO for the full makeup tutorial and #DIYcostume of my… https://t.co/Dmsq8Wpce8 +10/30/2017,Actors,@shenaegrimes,Epic CREEPy evening spent creeplosangeles ... best Halloween experience around town! Thanks for… https://t.co/GIhHEoKEJo +10/30/2017,Actors,@shenaegrimes,Classy Clown. 🤡 #halloween2017 https://t.co/DjPc5BjQhR +10/29/2017,Actors,@shenaegrimes,Another epic Halloween with my forever partner in crime and costume @JoshBeechMusic ❤️🤡❤️ https://t.co/YkGYeCrpig +10/27/2017,Actors,@shenaegrimes,"#fbf to my bday glam grunge look. 💋 +. +. +. +LINK IN BIO for full #grwm tutorial! + +#grungemakeup… https://t.co/uUmbAyJ5Sh" +10/26/2017,Actors,@shenaegrimes,It's my birthday week so I posted my first GRWM video on YouTube!!! Watch my bday glam grunge makeup & outfit video… https://t.co/H8WXSDyz2e +10/25/2017,Actors,@shenaegrimes,Yet another amazing birthday spent wandering with the love of my life. Feeling lucky and… https://t.co/gWi840Ab89 +10/24/2017,Actors,@shenaegrimes,"28, may you be as open and free as this stretch of Mississippi! Cheers to exploration and… https://t.co/T3Z6g0KJAL" +10/24/2017,Actors,@shenaegrimes,Best. Card. Ever. // From my ❤️ @JoshBeechMusic 😍😍😍 https://t.co/HmOEozPesS +10/23/2017,Actors,@shenaegrimes,"Feeling inspired and heartbroken, motivated and moved after a day spent at this iconic sacred… https://t.co/Cawa02esrE" +10/22/2017,Actors,@shenaegrimes,Get this gorgeous vampy makeup look by watching my full Fall Drugstore Makeup Tutorial here:… https://t.co/voyHh1mlzT +10/20/2017,Actors,@shenaegrimes,"It is well and truly Fall and I couldn't be happier about it! When getting ready for day or night, it's finally the https://t.co/e8ix4YkYx6" +10/19/2017,Actors,@shenaegrimes,Get this gorgeous vampy Fall beauty look using makeup UNDER $10!!! Watch my Fall Drugstore Makeup Tutorial here:… https://t.co/xVx40oqwPi +10/19/2017,Actors,@shenaegrimes,About last night...Rocking the new @TLipstickLobby Fall red shade OUTRAGE! Obsessed with this… https://t.co/QTeUR6KWV4 +10/19/2017,Actors,@shenaegrimes,Date night with my favorite human for an incredible cause @childhelp !!!! #HollywoodHeroes… https://t.co/GPrNKoS7gM +10/17/2017,Actors,@shenaegrimes,#inspo 🤣🤣🤣 // Link in bio to my beauty tutorials where nothing remotely close to this happens! https://t.co/6Qn5MQfEIj +10/16/2017,Actors,@shenaegrimes,In the Halloween spirit on my channel! Check out my full tutorial for the ultimate glam creep clown costume here:… https://t.co/KpTQBRxucj +10/15/2017,Actors,@shenaegrimes,"For those of you who haven't checked it out already, head to my Youtube Channel for my full Halloween makeup tutoria https://t.co/IU8ccTTDzT" +10/15/2017,Actors,@shenaegrimes,Check out my NEW Creepy Clown Halloween Makeup Tutorial for how to get this scary beautiful look for Halloween HERE… https://t.co/MAfFF9XOZh +10/14/2017,Actors,@shenaegrimes,When all your nightmares come true @qmdarkharbor and you’re in Halloween heaven... 👻👻👻 https://t.co/xkt60DE3jr +10/13/2017,Actors,@shenaegrimes,"Rockin #PinsForPrevention 4 Bright Pink via @ebay for Charity, where buyers/sellers donate to charity of choice!#ad… https://t.co/AURsxl6mXp" +10/12/2017,Actors,@shenaegrimes,🐶 https://t.co/rBu7sgWZjT +10/11/2017,Actors,@shenaegrimes,Wanna know how to get picture perfect looking skin? Find out in my flawless foundation makeup tutorial here:… https://t.co/d4f9XFfg1M +10/10/2017,Actors,@shenaegrimes,"My new flawless foundation makeup tutorial works & last all day, everyday! Watch my simple step-by-step video here:… https://t.co/pC1R0QyIGY" +10/09/2017,Actors,@shenaegrimes,My husband’s brand spankin’ new band jaguarbones just launched their Instagram and released a… https://t.co/LWXL9FZW17 +10/07/2017,Actors,@shenaegrimes,When this is what Fall looks like... ☀️ https://t.co/X33zhG7ylI +10/05/2017,Actors,@shenaegrimes,SO excited to show you how I decorated my backyard for Fall on https://t.co/o2YfoxN1VG! See all the pics… https://t.co/Yz0Zyk0Pz0 +10/04/2017,Actors,@shenaegrimes,Sending love out into the universe today but not without a heavy heart. Love is vital but so is… https://t.co/BRTydJTL9v +10/02/2017,Actors,@shenaegrimes,"Cheers to quiet moments with the 🌙 @ Yucca Valley, California https://t.co/9ZHzDN1EBD" +10/01/2017,Actors,@shenaegrimes,Kicking off Breast Cancer Awareness Month by wearing my heart on my @hm x rethinkbreastcancer… https://t.co/Q6R8mqVmcX +09/30/2017,Actors,@shenaegrimes,"Had an amazing, educational and inspiring day with @childhelp touring the #Childhelp Merv… https://t.co/zIsQYqtTV3" +09/30/2017,Actors,@shenaegrimes,Another amazing kickoff to the Halloween season knottsscaryfarm !!! Thanks rossipr ❤️🎃☠️🎃❤️ https://t.co/DUEqRrQCs4 +09/27/2017,Actors,@shenaegrimes,"Happy hump day from me and my new favorite 🎩 +. +. +. +Check out https://t.co/o2YfoxN1VG for more pics,… https://t.co/1HVFihujLQ" +09/24/2017,Actors,@shenaegrimes,Lazy Sundaze. 💋 https://t.co/3UJUibghQy +09/20/2017,Actors,@shenaegrimes,Excited to #partner w @LifetimeTV and @AmBeautyStar premiering this Thurs at 10:30/9:30c! Check out my new vid: https://t.co/BhHCgMIVcW xo +09/19/2017,Actors,@shenaegrimes,"""Women who wear black lead colorful lives."" +. +. +. +So what about women who wear black and white… https://t.co/5jBJzpp9rt" +09/18/2017,Actors,@shenaegrimes,"This is me side-eyeing the new week like yeah...I got you. + +For more pics from my recent Italian… https://t.co/FKVmBELrRM" +09/16/2017,Actors,@shenaegrimes,Dreaming of another weekend in paradise. 🌹#wanderlust https://t.co/0fpoN5ThHQ +09/13/2017,Actors,@shenaegrimes,Sending good vibes your way! ✌️❤️✌️ https://t.co/3bDKnhtWYI +09/12/2017,Actors,@shenaegrimes,SO excited to be a #fabfitfunpartner on my Fall Box Review post up now on the blog! This… https://t.co/J1GyVskqOF +09/09/2017,Actors,@shenaegrimes,"Halloween came early and ""IT"" scared the shit out of me... can't wait for October!!! 🎃💀👻💀🎃 https://t.co/a1FhkmXN6y" +09/08/2017,Actors,@shenaegrimes,#fbf to stumbling upon paradise in the motherland with my better half ❤️ https://t.co/9PGYN0pBYb +09/07/2017,Actors,@shenaegrimes,The coolest kid I know @vix_adams just launched her own hat line @hatratscom and I feel one baby… https://t.co/LsRsGjqTl0 +09/06/2017,Actors,@shenaegrimes,This is me being totally casual and patient while waiting for my first Facebook Live in one… https://t.co/vmZ8mefKlR +09/06/2017,Actors,@shenaegrimes,Doing my first Facebook Live thingy tomorrow @ 1pm PST...nervous like a tween on her first day… https://t.co/l6JcOyKg5Z +09/01/2017,Actors,@shenaegrimes,Back in lalaland and missing my Brits already! 💋 https://t.co/YKS5PQdq09 +08/31/2017,Actors,@shenaegrimes,Tomorrow's the day Toronto!!! My new film bloodhoneymovie is premiering at Dundas & Yonge for a… https://t.co/vO2NXJ452L +08/30/2017,Actors,@shenaegrimes,"A lil bit streetwear, a lil bit rock n' roll. 🤘 +. +. +. +Click link in bio for more pics & my… https://t.co/W8O3tmC6Ox" +08/29/2017,Actors,@shenaegrimes,Sunburnt and burnt out. x https://t.co/iv07uhUDXD +08/28/2017,Actors,@shenaegrimes,What an unbelievable few days. Another totally surreal adventure with my love for the books! https://t.co/sJ0iI9lTau +08/27/2017,Actors,@shenaegrimes,When you discover real life magic at Lago di Garda 🇮🇹❤️🇮🇹 https://t.co/yYo9e0SinE +08/27/2017,Actors,@shenaegrimes,6am in Venezia and up for the fight of a lifetime! Representing both sides of my roots loud and… https://t.co/acavgIptHQ +08/26/2017,Actors,@shenaegrimes,But first... pizza. 🍕 https://t.co/LTikIZMwhF +08/25/2017,Actors,@shenaegrimes,✌️🇮🇹💋 https://t.co/kRKyJW99M7 +08/23/2017,Actors,@shenaegrimes,Let's make history. 🤘 https://t.co/a94ndYMx2j +08/22/2017,Actors,@shenaegrimes,🇬🇧 Fight for your right to party. 🇬🇧// #subculturearchives #carnabystreet #londoncalling https://t.co/Bb2WwrbEmw +08/20/2017,Actors,@shenaegrimes,Our friends Nina and Jason are lovely badass people who I just learned have suffered a tragic… https://t.co/7JqmEi458z +08/20/2017,Actors,@shenaegrimes,Beech babies. X ☀️😍☀️ https://t.co/sgVrpnVa2e +08/16/2017,Actors,@shenaegrimes,Finally back in the swing of #bloggerlife and it feels so good! New post live now on my @Much… https://t.co/5kjgOTbPOn +08/16/2017,Actors,@shenaegrimes,When your best friend's a hairdresser and this is what Tuesday night dinner looks like. 💇💇‍♂️💇💇‍♂️ https://t.co/G8cNyrOieU +08/10/2017,Actors,@shenaegrimes,My whole world. 😁❤️😍 https://t.co/Yf9Xx0L9af +08/05/2017,Actors,@shenaegrimes,We know how to make an entrance...🕺🕺🕺 https://t.co/ujmjY0I2Hr +08/04/2017,Actors,@shenaegrimes,"Decisions, decisions... #domesticaf https://t.co/61vWgUZYKb" +08/02/2017,Actors,@shenaegrimes,Reunited with my bestest at long last!!! 😍😍😍 https://t.co/AC0hzXmY7h +07/31/2017,Actors,@shenaegrimes,#DIY Sunday!!! 💪 #domesticpunk https://t.co/udZaMITo6s +07/30/2017,Actors,@shenaegrimes,Ahhhh!!!! Nostalgia on point @rooneyband show! First night back in LA and spent it in an episode… https://t.co/2bpuVsgMPO +07/28/2017,Actors,@shenaegrimes,Peace out 🇨🇦!!! Been another epic 🎥adventure and this one was extra special for bringing me back… https://t.co/rBWFHOpTSk +07/26/2017,Actors,@shenaegrimes,Last day on set with amazing folks like this guy @5star_gucci that I get to call my crew and… https://t.co/cpHGqGyGmu +07/25/2017,Actors,@shenaegrimes,Downtime on set with my lil monster. 💋💀🖤💀💋#bleached #setlife🎥 https://t.co/eIyrIPm1Oh +07/24/2017,Actors,@shenaegrimes,"Hot damn, my cast mates are epic human beings. Can't believe we're filming the season finale… https://t.co/05G7LKwI4V" +07/21/2017,Actors,@shenaegrimes,They say imitation is the sincerest form of flattery... right?! I ❤️ our crew!!! #tgif #classic… https://t.co/dDFcer0zLB +07/19/2017,Actors,@shenaegrimes,Outtake from upcoming post on https://t.co/o2Yfoy4CNe 💋 #streetstyle #the6ix #lostinlala // 📸 :… https://t.co/CRstaYfh6i +07/18/2017,Actors,@shenaegrimes,Baby sis is on her own set these days following in someone's footsteps!!! Ah!!!🎬🌟🎥 #minime https://t.co/xH7jIW50Nn +07/17/2017,Actors,@shenaegrimes,How was your weekend?! Deets on mine & my delicious dessert idea for summer shindigs here! #pickyourpepper #Walmart… https://t.co/wAoIW9Y2yW +07/09/2017,Actors,@shenaegrimes,💋 #SummerInThe6ix https://t.co/HlqXwBQt04 +07/07/2017,Actors,@shenaegrimes,#friyay 💋 https://t.co/ZVMY2Sdqpc +07/06/2017,Actors,@shenaegrimes,This babe's only been gone for 12 hours and I already miss him madly... #lovesick #twohalves https://t.co/8jryKroRwa +07/04/2017,Actors,@shenaegrimes,When your husband tries to photobomb your Insta vid and doesn't know you have a face mask on... 😱 https://t.co/Er70nEQvzK +07/03/2017,Actors,@shenaegrimes,Stoop chillin' in #the6ix 😎 https://t.co/45d4ZVFfaa +06/30/2017,Actors,@shenaegrimes,Outtake from a photo shoot for an indie flick I did a little while back...in select Canadian… https://t.co/wlYOAvKWWR +06/28/2017,Actors,@shenaegrimes,Dog daze. 🐶 https://t.co/0wxLq1dJ5H +06/27/2017,Actors,@shenaegrimes,"Saying hello to summer with my new fave accessory, PANDORA’s leather braided charm bracelet!… https://t.co/HfAtD3aaal" +06/26/2017,Actors,@shenaegrimes,#dutchdreams 🍦 https://t.co/Vc9a4jYboE +06/25/2017,Actors,@shenaegrimes,🌈 #bettertogether 🌈 https://t.co/5BYAwxZz3Z +06/25/2017,Actors,@shenaegrimes,🌈 #bettertogether 🌈 https://t.co/Tgo95LlcPu +06/25/2017,Actors,@shenaegrimes,"Happy #pride from me and my baby sis aka the future! Love seeing her learn, support and… https://t.co/EeklBgMd1B" +06/23/2017,Actors,@shenaegrimes,Happy #friyay !!! 😍 https://t.co/J6Z947zzUu +06/19/2017,Actors,@shenaegrimes,About last night... when I became an honorary member of DNCE ... for 2 seconds #irl but forever… https://t.co/yseM6n2Ph0 +06/19/2017,Actors,@shenaegrimes,Thanks for having me #MMVAs ... loved getting to meet so many of you! Had a blast with… https://t.co/3pP7YS3169 +06/19/2017,Actors,@shenaegrimes,At the #MMVAs waiting to present! Thanks for the beautiful makeup @fashionliterati… https://t.co/u9nC5kCd3Z +06/22/2018,Actors,@JessicaLStroup,Legit fangirling out over here to my new favorite band thetorsband. Their harmonies are what dreams are made of. https://t.co/Ge1IbHoCdD +06/20/2018,Actors,@JessicaLStroup,RT @ashleyn1cole: I still remember every single person (read: white man) who the day after the election told me to calm down it wasn't goin… +06/16/2018,Actors,@JessicaLStroup,Swooooooon #thebeachboys @ Hampton Court Palace… https://t.co/ZlUJse9FRL +06/09/2018,Actors,@JessicaLStroup,Having the best time with these weirdos at… https://t.co/ghlhRrU7WU +06/08/2018,Actors,@JessicaLStroup,"Reach out. Please, please, reach out. You are not alone. National Suicide Prevention Lifeline number is 1-800-273-8… https://t.co/bx9mJJJbkk" +06/08/2018,Actors,@JessicaLStroup,"RT @laurenduca: If you need it, after hearing of *Anthony Bourdain's death or because of something else entirely, the National Suicide Prev…" +06/04/2018,Actors,@JessicaLStroup,@JamesPurefoy Happy birthday from me in a terrifying mask of you. 🔥 https://t.co/jWSatQJLrd +06/04/2018,Actors,@JessicaLStroup,I love you. https://t.co/VoULmPk9Md +05/25/2018,Actors,@JessicaLStroup,Can’t wait to see this!!! https://t.co/DLfxdjvs9P +05/22/2018,Actors,@JessicaLStroup,I can’t... I just can’t with this. It’s amazing. https://t.co/Cx9ZuJm4g8 +05/20/2018,Actors,@JessicaLStroup,💔 https://t.co/x1TxitHvNQ +05/15/2018,Actors,@JessicaLStroup,@taogeoghegan WHAT A RIDE TODAY!!! Such a beast out there. It hurt just watching! So proud of you! 🚵🏻‍♂️ #MVP… https://t.co/nGYjYTZZ2B +05/11/2018,Actors,@JessicaLStroup,One of my favorite (and most inspiring) people on the plant has written a BOOK! @scottharrison I’m so proud and exc… https://t.co/sRzAehhErI +05/11/2018,Actors,@JessicaLStroup,@JamesPurefoy I couldn’t agree more. +05/03/2018,Actors,@JessicaLStroup,"I feel so lucky. + +@ashtonlunceford pauljames_6 @ Central Park Manhatan https://t.co/zY8wrGnXHz" +05/01/2018,Actors,@JessicaLStroup,Looking for an epic read this summer? I highly recommend Song of Blood and… https://t.co/KqAAYIYRoj +04/27/2018,Actors,@JessicaLStroup,Baby girl just turned 9!!!! Check out that action shot tho!😂💃🏻❤️ https://t.co/oc7DR1bNbN +04/18/2018,Actors,@JessicaLStroup,#moodeverydayallday https://t.co/SLVjn1mqfv +04/17/2018,Actors,@JessicaLStroup,RT @MadameGandhi: Set time 8-8:40pm tonight at the Getty Museum Los Angeles! Free show! +04/16/2018,Actors,@JessicaLStroup,I❤️U https://t.co/LmgsNsQFVz +04/13/2018,Actors,@JessicaLStroup,RT @kevinbacon: I mean come on! Look at this cast how could you not watch. https://t.co/SZQ8tFv8dt +03/25/2018,Actors,@JessicaLStroup,Thank you @jhenwick for taking me to see #Yerma last night. Still reeling. @billiepiper you are… https://t.co/BwBnZ7YzvR +03/25/2018,Actors,@JessicaLStroup,I saw Yerma last night. It’s the best show I’ve ever seen. Mind blowing. Must see. @billiepiper you are a goddess.… https://t.co/TunvEFuT2Y +03/22/2018,Actors,@JessicaLStroup,RT @scottharrison: 1894 people have joined Nora in giving $8.15 today to celebrate #worldwaterday - we’re so inspired by the heart and visi… +03/22/2018,Actors,@JessicaLStroup,"Today is #WorldWaterDay. Six-year-old Nora gave $8.15 so people can have clean water. Today, my friends at… https://t.co/BpbZmbfqcV" +03/21/2018,Actors,@JessicaLStroup,Just posted a photo https://t.co/OsxWwP49tV +03/21/2018,Actors,@JessicaLStroup,Just posted a photo https://t.co/pTuHgrocLw +03/07/2018,Actors,@JessicaLStroup,"Blue wall. @ New York, New York https://t.co/4hpp8ZiilF" +03/07/2018,Actors,@JessicaLStroup,"Blue sky. @ New York, New York https://t.co/nNC6jgs4Ee" +02/27/2018,Actors,@JessicaLStroup,"@Emma4Change Go’on girl. Speak your truth. Takes bravery to stand up for what you believe in, especially in the fac… https://t.co/NydCsQqat7" +02/22/2018,Actors,@JessicaLStroup,RT @oliviawilde: Underestimate them at your own risk. 🙌 #wcw 🙌 https://t.co/o26JIqQfoV +02/22/2018,Actors,@JessicaLStroup,RT @Emma4Change: Everyone get out there and Register/Pre-register to vote !!! It takes barely 4 minutes https://t.co/0EMgYudKqS +02/22/2018,Actors,@JessicaLStroup,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/20/2018,Actors,@JessicaLStroup,"RT @kindness_org: This act of kindness is simple, yet really profound. #choosekindness https://t.co/EgGL3Xb1qI" +02/17/2018,Actors,@JessicaLStroup,"Might have underestimated Willow’s, uh, “large personality” when I bought this bag. 🤦🏻‍♀️ https://t.co/2nCjxrEzN3" +02/16/2018,Actors,@JessicaLStroup,RT @nowthisnews: ‘Can we not acknowledge in this country that we cannot accept this?’ — This former FBI official broke down in tears on CNN… +02/15/2018,Actors,@JessicaLStroup,"RT @LettersOfNote: ‘Please keep kids safe from guns’ + +https://t.co/UECloGXfSA https://t.co/eaJnQWIPOa" +02/15/2018,Actors,@JessicaLStroup,RT @RVAwonk: daaaaaamn @NYDailyNews. https://t.co/Yhv2JN4j7K +02/11/2018,Actors,@JessicaLStroup,A great read. https://t.co/mufpBJUDOU +02/05/2018,Actors,@JessicaLStroup,"RT @ArielleKebbel: 🚨 ALERT 🚨 Updated flyer w/ new contact numbers to call if you know anything about my sister Julia. Pls read, repost prin…" +01/24/2018,Actors,@JessicaLStroup,@luhvely Whooooaaaaaaaaa +01/20/2018,Actors,@JessicaLStroup,This is incredible. Please watch. https://t.co/SpTsLLNWjs via @youtube +01/07/2018,Actors,@JessicaLStroup,RT @MsEmilyLiner: Here's the paper by Erin Hengel that's tearing up #ASSA2018 https://t.co/uJupAySs7T https://t.co/92b3Y9WvNA +01/07/2018,Actors,@JessicaLStroup,❤️❤️❤️ https://t.co/ZjRBhLDzEG +01/03/2018,Actors,@JessicaLStroup,"@TessaJeanMiller @TheCut Love me some #JodieFoster and @blackmirror but I agree, I just couldn’t get on board with… https://t.co/oWhjHodStF" +01/03/2018,Actors,@JessicaLStroup,RT @TessaJeanMiller: Eyyyyy I wrote this for @TheCut! https://t.co/iIgZVtIUON +01/03/2018,Actors,@JessicaLStroup,RT @GeorgeLakoff: Trump uses social media as a weapon to control the news cycle. It works like a charm. His tweets are tactical rather than… +01/03/2018,Actors,@JessicaLStroup,RT @EarnKnowledge: Look again at this dot... https://t.co/wpFq00BzmH +12/27/2017,Actors,@JessicaLStroup,Together again!! Finally! Love these ladies. 💗🍻🤗#highschoolbests #regram @ Sycamore Brewing https://t.co/CFXCXHtMY4 +12/27/2017,Actors,@JessicaLStroup,Christmas got me like... @ North Carolina https://t.co/b9hjEaS1F6 +12/23/2017,Actors,@JessicaLStroup,RT @HaileeSteinfeld: #PITCHPERFECT3 is OUT NOW ! https://t.co/37RPNQInCV +12/22/2017,Actors,@JessicaLStroup,"RT @martyrdumb: @HerdzJ @JessicaLStroup @youthfilm2016 So glad you liked it, @HerdzJ!" +12/13/2017,Actors,@JessicaLStroup,Kindergartner starts her own business to help others https://t.co/9E0xkn3nw1 +12/13/2017,Actors,@JessicaLStroup,So proud of my incredible 6 year old niece. Heart of gold.🎄🎁💖🎅🏻👼https://t.co/9E0xkn3nw1 +12/11/2017,Actors,@JessicaLStroup,"You may have seen this, maybe not, but this is Ryland Ward. His two sisters and his mother were… https://t.co/t7G4s6cEo7" +12/10/2017,Actors,@JessicaLStroup,"The noise they make. 😂 @ New York, New York https://t.co/IG9IYJfc2p" +12/09/2017,Actors,@JessicaLStroup,Holiday decorations 💯 @ Soho https://t.co/1TYcWTVKRt +12/09/2017,Actors,@JessicaLStroup,First snow of the season!! Willow isn’t quite as amused as me. #laughingwithyounotatyou 😂👅🧤 @ Soho https://t.co/7WCeB71EnV +12/08/2017,Actors,@JessicaLStroup,RT @thefliestcoco: Ryland lost his mom and two sisters in the Sutherland Springs Church shooting. His family is asking if we can send Chris… +12/07/2017,Actors,@JessicaLStroup,😂😂😂 https://t.co/yECBfPWSWJ +12/06/2017,Actors,@JessicaLStroup,"Wanda, I want to be your friend too. https://t.co/KHH3PtmTwj" +12/05/2017,Actors,@JessicaLStroup,Got fancy for a great cause last night! So proud to support @charitywater. They never fail to up… https://t.co/kJjlUg49v7 +12/01/2017,Actors,@JessicaLStroup,RT @TheSun: EXCLUSIVE: Hero Army dogs face being put down despite saving thousands of lives https://t.co/nawgdY19p9 +11/29/2017,Actors,@JessicaLStroup,Big fan of @waitbutwhy and @tferriss 👍🏻🙌🏻 https://t.co/WnanfhniUj +11/26/2017,Actors,@JessicaLStroup,This pic is from the Florida State game but the sentiment remains true right now. U of South… https://t.co/NbTgzzYpLa +11/25/2017,Actors,@JessicaLStroup,Just saw @LadyBirdMovie with my mom 👏🏻👏🏻👏🏻❤️😭☺️❤️👏🏻👏🏻👏🏻 +11/24/2017,Actors,@JessicaLStroup,🤔“Why Reality Is an Illusion” by @Zat_Rana https://t.co/aHD7KNLAOq +11/23/2017,Actors,@JessicaLStroup,"RT @LettersOfNote: On this day in 1963, C. S. Lewis died. John F. Kennedy was killed an hour later. 7hrs after that, Aldous Huxley also dre…" +11/20/2017,Actors,@JessicaLStroup,"I love my friends. Also, no one died. A miracle. Happy birthday @sadowski23 @ Moonlight Rollerway https://t.co/a1qNAGrPKI" +11/18/2017,Actors,@JessicaLStroup,RT @abigailspencer: Change is a coming! Love these women forging the way with their incredible intellect & fabulous work. 🙌🏼 https://t.co/h… +11/15/2017,Actors,@JessicaLStroup,Pick up by @BastienKeb 🎧🎼📞 https://t.co/wjJ4PxlpEL +11/13/2017,Actors,@JessicaLStroup,Kindness wall in London! 🤗💞#worldkindnessday #choosekindness kindnessorg https://t.co/nFlWpwe9Cl +11/13/2017,Actors,@JessicaLStroup,Happy #worldkindnessday #choosekindness kindnessorg @ North Carolina https://t.co/t8W4ATOqMR +11/13/2017,Actors,@JessicaLStroup,Happy #worldkindnessday2017 #ChooseKind 💖💗💖 https://t.co/Buc0Mo214A +11/12/2017,Actors,@JessicaLStroup,RT @EllenPage: https://t.co/GpfdK6fgFB +11/11/2017,Actors,@JessicaLStroup,Come on @UnknownAcct 😼🙌🏻!!! @ Clemson Death Valley Stadium https://t.co/OvCqXPa7Na +11/10/2017,Actors,@JessicaLStroup,"RT @kindness_org: Dear World: This World Kindness Day, I’ve got you. We’ve had some really challenging times this year that have made our h…" +11/08/2017,Actors,@JessicaLStroup,🙌 https://t.co/N1De0FtX28 +11/08/2017,Actors,@JessicaLStroup,RT @LEBassett: The man who wrote the anti-trans bathroom bill just lost the election to a trans woman. Let that sink in. https://t.co/KFEZX… +11/08/2017,Actors,@JessicaLStroup,RT @davidaxelrod: .@POTUS has pulled every trick in the book to discourage signups yet the ACA is posting record enrollment! Big message in… +11/08/2017,Actors,@JessicaLStroup,RT @TomPelphrey: If anyone will be around NYC and is interested... this is a great organization doing really good work. 😊 https://t.co/f1a… +11/07/2017,Actors,@JessicaLStroup,RT @SenFeinstein: Teachers spend $1.6 BILLION per year on school supplies. The Republican tax bill ELIMINATES their ability to deduct those… +11/07/2017,Actors,@JessicaLStroup,RT @scottharrison: 10 new jobs posted at @charitywater - join an amazing team and work with purpose in the service of others! https://t.co… +11/07/2017,Actors,@JessicaLStroup,RT @BarackObama: Every election matters - those who show up determine our future. Go vote tomorrow! https://t.co/j1wh8hLamw +11/05/2017,Actors,@JessicaLStroup,🤦‍♀️ https://t.co/EKCYzq7XZ4 +11/05/2017,Actors,@JessicaLStroup,What an inspiration. Love you Brit Marling... @britmarling on Harvey Weinstein and the economics of consent https://t.co/2DlesWhLtb +11/03/2017,Actors,@JessicaLStroup,RT @WLKY: 9-year-old cancer patient asks for cards to celebrate 'last Christmas early https://t.co/BMud72HGUd https://t.co/lUwboCC3hY +11/01/2017,Actors,@JessicaLStroup,"RT @JeffFlake: Actually, the Gang of 8, including @SenSchumer, did away with the Diversity Visa Program as part of broader reforms. I know,…" +11/01/2017,Actors,@JessicaLStroup,RT @JoeBiden: Today is the first day to sign up for 2018 health insurance through https://t.co/3CYKhP8ZoR. Deadline is December 15th! https… +11/01/2017,Actors,@JessicaLStroup,"RT @ASlavitt: It's on! 2018 ACA enrollment has begun. + +80% can find plans under $75/month. Go to https://t.co/nYl9YWdSHm. + +Spread the word." +10/31/2017,Actors,@JessicaLStroup,RT @danpfeiffer: There’s a real contradiction between Facebook saying Russian ads had no impact and Facebook telling brands to spend millio… +10/31/2017,Actors,@JessicaLStroup,@lizsczudlo 🤣🤣💖 +10/31/2017,Actors,@JessicaLStroup,Best friends in foreign lands!!! ccsolis25 @rickymabe 👏🏻👏🏻 @ Kensington Gardens https://t.co/uJwv7leuXo +10/30/2017,Actors,@JessicaLStroup,"Mmuuhahaha 🎃 @ London, United Kingdom https://t.co/Tx4ONIwWev" +10/23/2017,Actors,@JessicaLStroup,"I liked a @YouTube video https://t.co/lo4S4DbD5M Portrait of Lotte, 0 to 16 years in 4 ½ minutes." +10/20/2017,Actors,@JessicaLStroup,Fall in London. 🍁💛 https://t.co/G1RoYfMvLZ +10/18/2017,Actors,@JessicaLStroup,RT @SenKamalaHarris: The deadliest mass shooting in our country’s history was 16 days ago. Conversations about gun violence have faded. We… +10/17/2017,Actors,@JessicaLStroup,"I sit with tears falling because I see a broken, selfish, bully of a man as our “president.”… https://t.co/ybXMtIKPN6" +10/17/2017,Actors,@JessicaLStroup,#firstamendment @ The White House https://t.co/FNCMymAE3e +10/17/2017,Actors,@JessicaLStroup,"Although I can’t bring myself to detail my own experiences in tweets, I want to say I support those speaking out against abuse. #MeToo" +10/15/2017,Actors,@JessicaLStroup,Sunday morning nature walks with my buddy Price. #RichmondVA #godmother❤️ @ James River Pony… https://t.co/e4pzHDFJ1q +10/14/2017,Actors,@JessicaLStroup,RT @rosemcgowan: This is what action looks like men of Hollywood. We don’t need your ‘I stand with you’ crap now. We need you to ACT https:… +10/12/2017,Actors,@JessicaLStroup,"RT @Jenny_Trout: I feel like if people wanted Clinton to come out and address every major event in the country, they probably should have e…" +10/12/2017,Actors,@JessicaLStroup,We’re all rootin’ for you Brock. Sending you so much love. Happy Happy Happy Halloween sweet boy. https://t.co/S7G2YYzJzE +09/26/2017,Actors,@JessicaLStroup,"Sending love out to everyone in need right now. You are not forgotten. 🌎💞 +...side note,… https://t.co/sSSvPwcdWW" +09/25/2017,Actors,@JessicaLStroup,"RT @Alejandrobot: ""Do not forget us, and do not let us feel alone."" Please take six minutes and watch this. San Juan is my home +🇵🇷 +https://…" +09/25/2017,Actors,@JessicaLStroup,Really glad we chose the dinosaur bus as our background ruthkearney @ Venice Beach https://t.co/riGe8AoOfl +09/24/2017,Actors,@JessicaLStroup,"RT @Khubbard991: My husband died for your right to #TakeAKnee. He would have supported you; I support you. Sincerely, a military widow." +09/17/2017,Actors,@JessicaLStroup,RT @jonlovett: Half of all boxing photos look like gay weddings https://t.co/K3sOhm2VlK +09/17/2017,Actors,@JessicaLStroup,“‘Between Heaven and Earth’” by @charitywater https://t.co/RZOvvsTkuM +09/17/2017,Actors,@JessicaLStroup,Dying. https://t.co/bkff9bk3Cz +08/23/2017,Actors,@JessicaLStroup,RT @nowthisnews: Trump’s pick for the USDA’s chief scientist isn’t a scientist at all – he’s a homophobic radio host https://t.co/JPwf4YZ5AJ +08/21/2017,Actors,@JessicaLStroup,😎 https://t.co/ooznpVXiuC +08/18/2017,Actors,@JessicaLStroup,TGIF https://t.co/vavOpKWf1D +08/16/2017,Actors,@JessicaLStroup,"RT @nke_ise: If you have ever had a problem grasping the importance of diversity in tech and its impact on society, watch this video https:…" +08/16/2017,Actors,@JessicaLStroup,RT @MichaelEaly: This👇 https://t.co/55HmA9A9gG +08/15/2017,Actors,@JessicaLStroup,That shadow though. 🐺 https://t.co/CrhLtXk6Jg +08/14/2017,Actors,@JessicaLStroup,RT @amaryllisfox: Remember originally we're all Pangean :) https://t.co/k962okSjyv +08/14/2017,Actors,@JessicaLStroup,"RT @ShaunKing: Friends, + +This family needs our help. + +13 y/o Noelle & her mother Alexis were hit by the car. Out of surgery. + +https://t.c…" +08/14/2017,Actors,@JessicaLStroup,RT @JasonKander: No one should forget that the birther movement emboldened white supremacists. Or that it was led by @realDonaldTrump. +08/14/2017,Actors,@JessicaLStroup,RT @Phil_Lewis_: The guy that organized that White supremacist rally in #Charlottesville gets ran off during a press conference https://t.… +08/13/2017,Actors,@JessicaLStroup,RT @nowthisnews: This cafe is demonstrating the gender pay gap in a powerful way https://t.co/0eBctJGyfw +08/13/2017,Actors,@JessicaLStroup,❤️ https://t.co/1uORiiPB4p +08/13/2017,Actors,@JessicaLStroup,😍 https://t.co/0RyBCIMzPg +08/13/2017,Actors,@JessicaLStroup,RT @TeflonDom187: This needs to be retweeted and shared over and over till everyone understands #Charolettesville https://t.co/5NsC8nXzmt +08/12/2017,Actors,@JessicaLStroup,"RT @GlennKesslerWP: Trying to imagine the president's response if this had started as an pro-Islam rally. Would ""all sides"" be at fault?" +08/12/2017,Actors,@JessicaLStroup,"RT @TopherSpiro: ""on many sides"" => Trump condemns those protesting Nazis" +08/12/2017,Actors,@JessicaLStroup,"RT @jonfavs: ""On many sides"" is the low point of a presidency that's already had a record number of low points." +08/12/2017,Actors,@JessicaLStroup,@realDonaldTrump Are you joking? YOU ignited this. Your pathetic excuse of a presidency has unleashed HATE from the… https://t.co/hUiPpB8O1l +08/07/2017,Actors,@JessicaLStroup,Just cracked open this fortune cookie and found no fortune inside. Really quite... unfortunate.… https://t.co/fVWVuYnvl0 +08/04/2017,Actors,@JessicaLStroup,Happy birthday lbstroup!!! Little #fbf to you and my brother drinking champagne while the 2016… https://t.co/59dAPTHVOE +07/31/2017,Actors,@JessicaLStroup,Got me all teary eyed. Lets make sure to take care of one another as best we can. Nothing but love. https://t.co/k8WLjGdILm +07/31/2017,Actors,@JessicaLStroup,RT @charitywater: These BioSand Filters are finished and will be providing clean water for families here in Kampong Cham Province later thi… +07/31/2017,Actors,@JessicaLStroup,THIS is my JAM https://t.co/AIqnYuDhrB +07/30/2017,Actors,@JessicaLStroup,My best. My ride or die. My soul sister. I thank the heavens for you. Happy birthday. You are so… https://t.co/4Y0wbuA1K4 +07/25/2017,Actors,@JessicaLStroup,RT @charitywater: Our team is headed to Cambodia tomorrow to visit our partner org and capture stories about your impact. Get ready for a l… +07/25/2017,Actors,@JessicaLStroup,"RT @ddiamond: EIGHT YEARS AGO TODAY — Obama does 2-hour health care town hall in Ohio, takes questions and defends his plan. https://t.co/u…" +07/25/2017,Actors,@JessicaLStroup,RT @gingerthejester: Caring teachers have been paying for supplies out of pocket since I was a kid. Bless this woman. Teachers should make… +07/18/2017,Actors,@JessicaLStroup,💪🏻 https://t.co/7aRnvSum4e +07/18/2017,Actors,@JessicaLStroup,RT @cehuey: #AlwaysBeYoung https://t.co/3I01jLZi69 +07/12/2017,Actors,@JessicaLStroup,"RT @nxthompson: What +if +the +Internet +was +so +slow +it +loaded +one +word +at +a +time +— +except +on +sites +that +paid +off +your +ISP? +#netneutral…" +07/12/2017,Actors,@JessicaLStroup,Must be some dream. #willowstongue #willow https://t.co/WnC7pl5S6q +07/12/2017,Actors,@JessicaLStroup,RT @stugillard: Two space rocks worth Two Million Dollars Check out https://t.co/WtUFQ5YtsF - & watch #salvation July 12 CBS BOOM! https://… +07/11/2017,Actors,@JessicaLStroup,"RT @davidfrum: It’s important to remember that Russia intervened in 2016 not only to elect Trump, but to help congressional GOP https://t.c…" +07/10/2017,Actors,@JessicaLStroup,🍒 https://t.co/egV5G9u8yf +07/03/2017,Actors,@JessicaLStroup,RT @i_D: nadya from pussy riot is rewriting what it means to be punk https://t.co/sSDmIhoSfa https://t.co/wzYfAZwJxN +07/02/2017,Actors,@JessicaLStroup,RT @abgutman: @realDonaldTrump I just reported @realDonaldTrump to Twitter as an account that threatens violent. I hope you join me and do… +06/29/2017,Actors,@JessicaLStroup,Must go. https://t.co/a81N98tja4 +06/14/2017,Actors,@JessicaLStroup,Devastated for the families involved in the fire in London. Praying for everyone. https://t.co/eY8JscCjNY +06/13/2017,Actors,@JessicaLStroup,@realDonaldTrump @ClemsonFB NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO… https://t.co/HW4YtNmATw +06/11/2017,Actors,@JessicaLStroup,"@thisissigrid ""Don't kill my vibe"" ...🖕🏻to the ones who've tried to break my stride. Go'on girl. #boss https://t.co/PWKHBxyaGj via @youtube" +06/10/2017,Actors,@JessicaLStroup,@linneahendrix not sure what any of this means but I love the way you sing! #BrilliantMinds17 👏🏻 https://t.co/g9YUkEpK8b +06/08/2017,Actors,@JessicaLStroup,@MadameGandhi you are an inspiration 👑❤️🔥#brilliantminds2017 @SymposiumSthlm +06/06/2017,Actors,@JessicaLStroup,My monthly donation to @charitywater is providing safety to young girls. Join me ✊🏻https://t.co/qzQFouWBWu #charitywater +06/01/2017,Actors,@JessicaLStroup,😞 https://t.co/HfoUTV0zpO +06/01/2017,Actors,@JessicaLStroup,Spread compassion. Girls who survived Portland's MAX Attack https://t.co/Jvh0IzzTot via @youcaring +06/01/2017,Actors,@JessicaLStroup,👋🏻 https://t.co/MxjIVQqt2T +06/01/2017,Actors,@JessicaLStroup,"@MerlinWizDawg 😂🇺🇸❤️ ""Trump Survival TV - Episode 1 - La Resistance"" on https://t.co/yvX9NV5qQD" +05/30/2017,Actors,@JessicaLStroup,"RT @JennKaytin: For those who didn't watch it the first time I RT'd it, here's this video of @jes_chastain again because it's that fucking…" +05/29/2017,Actors,@JessicaLStroup,RT @BarackObama: Forever grateful for the service and sacrifice of all who fought to protect our freedoms and defend this country we love.… +05/26/2017,Actors,@JessicaLStroup,Everything https://t.co/P7Ppb8NMwJ +05/20/2017,Actors,@JessicaLStroup,"My dance move: all about the finger point. Congrats to the beautiful bride @claire_stroup,… https://t.co/bgZYtUvwT8" +05/20/2017,Actors,@JessicaLStroup,Annnnnnd he's out. lbstroup https://t.co/lr3H592451 +05/20/2017,Actors,@JessicaLStroup,Camera weighed as much as her. Congrats to my coolest cousin @claire_stroup who just got… https://t.co/PGv4GipEnR +05/14/2017,Actors,@JessicaLStroup,Happy Mother's Day to my everything. I love you mom 😘💕 https://t.co/Z3yQJnxis1 +05/11/2017,Actors,@JessicaLStroup,You guys are the best!! 💕 https://t.co/RyPi6HjFor +05/09/2017,Actors,@JessicaLStroup,I agree. https://t.co/T6PLXSvqgh +05/08/2017,Actors,@JessicaLStroup,Interesting 👉🏻 How magic mushrooms can help with cancer-related anxiety and depression https://t.co/yxI6r0bthA +05/08/2017,Actors,@JessicaLStroup,Go'on girl 🙌 https://t.co/csaxxgnSjj +05/07/2017,Actors,@JessicaLStroup,@mattlanter 😻(@mackwilds where you at!?) https://t.co/CsWSajp4bn +05/07/2017,Actors,@JessicaLStroup,Old school girlfriends REUNITE! Thanks for a fun night supporting LA youth education @cityyearla!! https://t.co/pdK94pgjNU +05/06/2017,Actors,@JessicaLStroup,I just rewatched this like 4 times... so freaking hilarious 😂😂 https://t.co/sH57Fpbr4O +05/04/2017,Actors,@JessicaLStroup,"Neuralink and the Brain's Magical Future - Wait But Why https://t.co/IzznxoP0HY via @waitbutwhy +MINDBLOWING!!!" +04/29/2017,Actors,@JessicaLStroup,RT @ShawnRAshmore: Mavis was rescued from a kill shelter but needs a permanent home. Reach out to @maedayrescue #maedaymavis pls share http… +04/29/2017,Actors,@JessicaLStroup,My man @DeshaunWatson4. 🤗👏🏻 https://t.co/nVzihfffw6 +04/27/2017,Actors,@JessicaLStroup,"@chadwyoung my thoughts are with you, your family and the entire racing community. https://t.co/phn7xgfuxK" +04/21/2017,Actors,@JessicaLStroup,I #StandForWildlife. Join me in the #EarthDay Challenge with a donation to @TheWCS. Ur gift will have 2x the impact: https://t.co/9Zhqn9LWCy +04/21/2017,Actors,@JessicaLStroup,Go'on Sam!! 👏🏻@samunderwood https://t.co/Xaanj8OfIi +04/20/2017,Actors,@JessicaLStroup,"RT @Khanoisseur: @SenJohnMcCain @WSJ Hey @SenJohnMcCain, YOU voted to confirm Tillerson; YOU knew this was coming; what's your next brillia…" +04/18/2017,Actors,@JessicaLStroup,@appearhere continues to inspire hope for the dreamers #ImadsSyrianKitchen https://t.co/cWcjUb8NHp via @youtube +04/15/2017,Actors,@JessicaLStroup,Just walked outside after cheering on #aprilthegiraffe and THIS was above me! Haha I love life's… https://t.co/5nvSWkNCCc +04/15/2017,Actors,@JessicaLStroup,YESSSS APRIL THE GIRAFFE! 👏🏻👶Have you been following this miracle of life? Love it. https://t.co/b5g8uZKEMG via @youtube +04/10/2017,Actors,@JessicaLStroup,Are you kidding me @CoreyStewartVA ?? Take down your damn confederate flags. I thought Virginia was for lovers... 💔 https://t.co/QrLfdkhKMQ +04/08/2017,Actors,@JessicaLStroup,My best friend and a field of poppies. Love you @jenniferbkaiser @ Antelope Valley California… https://t.co/kgT6GugdlW +04/06/2017,Actors,@JessicaLStroup,Baby girl. #willow https://t.co/JwNyI9jM0D +04/06/2017,Actors,@JessicaLStroup,@Big_Little_Lies Wow. Wow. Wow. ...just... thank you. +04/02/2017,Actors,@JessicaLStroup,Donate to this worthy cause. 🤣https://t.co/McCOicZaRV via @youtube +04/01/2017,Actors,@JessicaLStroup,Singapore you rock my world. Can't wait to come back. 👋🏻 @finnjones @TomPelphrey @benjaminkheng… https://t.co/KoIyBTJ2X3 +03/31/2017,Actors,@JessicaLStroup,We have fun. #chillicrab #fridaynightsinsingapore #needmorebibsinmylife @ Palm Beach Seafood… https://t.co/DuqB3zsbyW +03/31/2017,Actors,@JessicaLStroup,#lifegoals @ Marina Bay Singapore https://t.co/BLdPlxcg0c +03/31/2017,Actors,@JessicaLStroup,Right before our press conference here in Singapore! Been such a fun press tour. Loving this… https://t.co/I4ekQcmwGU +03/30/2017,Actors,@JessicaLStroup,This just happened. My Korea trip is complete. 😂🤖💯 @ Bandar Udara Internasional Incheon https://t.co/hx66VE85Ge +03/28/2017,Actors,@JessicaLStroup,“Four-and-a-half false statements EPA head Scott Pruitt made in just one interview” by @climateprogress https://t.co/Ydm5sIl9bw +03/28/2017,Actors,@JessicaLStroup,"Caught @finnjones checking out his huge glowing marvelironfist billboard in Seoul, South Korea!… https://t.co/gIqeoHPZcw" +03/25/2017,Actors,@JessicaLStroup,Fantastic read: You're sexist. And so am I. https://t.co/AABsn9q6rn via @usatoday +03/23/2017,Actors,@JessicaLStroup,"💗this. @sacha_dhawan is the man. Iron Fist star Sacha Dhawan talks Davos, villainy and Marvel https://t.co/n20VsmLohc via @squaremile_com" +03/23/2017,Actors,@JessicaLStroup,@ZosiaRMamet is bringing out the big guns for @ACLU at 6 PM March 31 on Facebook live. I'll be supporting b/c I stand for rights... do you? +03/23/2017,Actors,@JessicaLStroup,"This is incredibly important: Tom Hanks, Tina Fey, Alec Baldwin Set for ACLU Telethon on Facebook Live https://t.co/Q8PzbRYXTc via @variety" +03/21/2017,Actors,@JessicaLStroup,"""Aghhhh you stupid-freakin-FLY!! You will not defeat me!!!"" https://t.co/5OlHUj8xA9" +03/21/2017,Actors,@JessicaLStroup,"RT @fabiochiusi: ""a dangerous precedent that mirrors the behavior of authoritarian regimes"" https://t.co/JTQOrtlb5H via @aclu" +06/30/2018,Actors,@MattLanter,RT @woahashli: Hey fellow Clockblockers! Please check out this AMAZING artwork I commissioned from @littlemachine_ of Lyatt! I've been dyin… +06/28/2018,Actors,@MattLanter,#tbt I didn’t choose the thug life. The thug life chose me. #minimatt https://t.co/cKv76a9IgQ +06/27/2018,Actors,@MattLanter,"RT @MM_96_8: Hey look it's @MattLanter!! If u havent seen the USS Indianapolis movie on Netflix, give it a watch!! It's a great movie that…" +06/26/2018,Actors,@MattLanter,Niiiiiice! 10 years! Can’t wait for this panel. https://t.co/c8f8GQHenU +06/25/2018,Actors,@MattLanter,#deletedscene I like the *new Future Lucy better 😁 #SaveTimeless https://t.co/TIkPNVxHx3 +06/25/2018,Actors,@MattLanter,I like this guy. Put him in the Lifeboat and give Wyatt a break on the next mission! 😜 #SaveTimeless https://t.co/6e6uSDmA9b +06/24/2018,Actors,@MattLanter,"RT @arikalisanne: This guy’s my boss, so, I’d go ahead and do what the man says... Get loud. #SaveTimeless https://t.co/dvDDCwqH2s" +06/22/2018,Actors,@MattLanter,RT @THR: #Timeless has been canceled (for a second time) at NBC: https://t.co/TuOQKyHT5A +06/22/2018,Actors,@MattLanter,"RT @Sony: | ̄ ̄ ̄ ̄ ̄| +| TIME | +| TEAM | +| FOREVER | +| _____| +(\__/) || +(•ㅅ•) || +/   づ" +06/22/2018,Actors,@MattLanter,Sounds like one of our only options right now is the possibility of a 2 hour movie finale. Let @nbc know if you’d l… https://t.co/SQ7KRTCNnP +06/22/2018,Actors,@MattLanter,I love you #Clockblockers. You’ve fought so hard and deserve so much more. #Timeless https://t.co/XmIblLJRkt +06/22/2018,Actors,@MattLanter,Loved this scene. #Timeless https://t.co/809ssPnpF1 +06/21/2018,Actors,@MattLanter,Of all the shows... we ranked #1. Pretty sweet. #Timeless https://t.co/5AzrFkfrJp +06/21/2018,Actors,@MattLanter,RT @HollieJoyJoy: @MattLanter @ryan_connolly Ok... #lyatt fans... Matt talks about shooting the scene when Wyatt comes over to Lucy’s house… +06/21/2018,Actors,@MattLanter,Had a blast chatting about career and life on the new #FilmRiotPodcast thanks @ryan_connolly https://t.co/WlewfmBInx +06/21/2018,Actors,@MattLanter,Congrats Matt! https://t.co/5jiy11Aljy +06/20/2018,Actors,@MattLanter,I would LOVE to do @EAStarWars !! https://t.co/NYJC0wkuDB +06/18/2018,Actors,@MattLanter,This really says something. Our #clockblocking fans are the greatest! #RenewTimeless https://t.co/ULJpd4PHyG +06/17/2018,Actors,@MattLanter,Putting my baby’s toes in the ocean for the… https://t.co/5wT0oCAOeS +06/17/2018,Actors,@MattLanter,Thank you son. #CloneWarsxSagaMashup #StarWars @starwars https://t.co/3WYFSpSTw3 +06/17/2018,Actors,@MattLanter,RT @acofell: #writerslife is sadly really about torturing characters. Killing their dreams. Want a dramatic scene? Figure out what your… +06/14/2018,Actors,@MattLanter,Wait is this real? How do I get one? https://t.co/3XXYppxIYi +06/13/2018,Actors,@MattLanter,"If you can’t beat em, dab on em #RenewTimeless https://t.co/AApcxruONb" +06/11/2018,Actors,@MattLanter,We had a blast with @shenaegrimes and… https://t.co/wInVMcNdvj +06/11/2018,Actors,@MattLanter,Today would be a good day to #RenewTimeless #justsayin +06/08/2018,Actors,@MattLanter,RT @Sony: #NationalBestFriendsDay #Timeless https://t.co/WXfVwWncxO +06/06/2018,Actors,@MattLanter,Sweet! #renewtimeless also worth noting that the original show was called “Time” not “Timeless” https://t.co/KLzY6Fecpb +06/06/2018,Actors,@MattLanter,"RT @therealKripke: Okay, people, first: #Clockblockers are a strong, brilliant and united fandom. Second, we're still awaiting word. Frustr…" +06/06/2018,Actors,@MattLanter,Awesome posters! #RenewTimeless https://t.co/Z8bC4OQPbe +06/05/2018,Actors,@MattLanter,Newly released #Timeless script pages from one of our final scenes. #RenewTimeless https://t.co/CTbgjyTBEP +06/04/2018,Actors,@MattLanter,I’ll add “tearful puppy dog eyes” to my special skills section of my resume 😜 #RenewTimeless https://t.co/DUFYg7k470 +06/03/2018,Actors,@MattLanter,The last of the #deletedScenes #RenewTimeless https://t.co/XLsUTFtDTq +06/03/2018,Actors,@MattLanter,Check out some released script pages of episode #108 “Bonnie & Clyde” where Wyatt/Lucy kiss for the first time..… https://t.co/BoOSzBQ48F +06/02/2018,Actors,@MattLanter,#deletedscenes #moodyWyatt #RenewTimeless https://t.co/XzVonuWKUF +05/31/2018,Actors,@MattLanter,"RT @TheTimelessRoom: You're 500 retweets away from today's deleted scene. Let's see how quickly we can get there #ClockBlockers. + +And let's…" +05/29/2018,Actors,@MattLanter,#deltedScenes #Flucy https://t.co/k6XTYwXhkz +05/29/2018,Actors,@MattLanter,"New #DeletedScenes!! Lucy sings, Wyatt stares, bullets are fired! 👀👀 https://t.co/x0DcGp23Nw" +05/28/2018,Actors,@MattLanter,Playoffs. It’s a @cavs house. @nba https://t.co/tBk4xNjAXn +05/27/2018,Actors,@MattLanter,RT @TheTimelessRoom: Hey #ClockBlockers! We hope you're enjoying these deleted scenes. Please keep pounding social media with your desire t… +05/27/2018,Actors,@MattLanter,#DeletedScene Alert! #renewtimeless https://t.co/7BanZd3NTj +05/27/2018,Actors,@MattLanter,"RT @fairvictorious: Signal boost! We need to make up some ground, Clockblockers! VOTE for #Timeless, Abigail, Matt, Claudia, Goran, and Lya…" +05/26/2018,Actors,@MattLanter,"RT @David_C_Hoffman: @NBCTimeless - today’s deleted scene, #clockblockers. Can we get up to 100k views again?? #timeless #RenewTimeless #L…" +05/26/2018,Actors,@MattLanter,"#DeletedScenes Wyatt tucks and and kisses an exhausted Lucy. #RenewTimeless there ya go #Lyatt fans, Happy Saturday. https://t.co/h2fAXSkfP9" +05/25/2018,Actors,@MattLanter,My man https://t.co/9K1pI13u98 +05/25/2018,Actors,@MattLanter,More #DeletedScenes! Rittenhouse family goodness! #RenewTimeless https://t.co/3zycKZ2rK1 +05/25/2018,Actors,@MattLanter,We aren’t finished yet. #RenewTimeless https://t.co/g6tGIHo57m +05/25/2018,Actors,@MattLanter,Breaking the internet. One of our many talents. #DeletedScenes #Timeless #RenewTimeless https://t.co/NMX8qiAH4Y +05/25/2018,Actors,@MattLanter,Woohoo! #Timeless https://t.co/TrJXr6SaXU +05/25/2018,Actors,@MattLanter,RT @arikalisanne: You know what would be really awesome? 100k views by morning. Go. #Timeless #RenewTimeless https://t.co/5zkNxGBZAf +05/25/2018,Actors,@MattLanter,Once https://t.co/BWhWBfrble +05/25/2018,Actors,@MattLanter,"Actually they heated it to be super warm for us! Also, it was about 5:30am when we shot that! #deletedscene… https://t.co/fClquzMF77" +05/25/2018,Actors,@MattLanter,Uhhhhh woe. 🔥 #DeletedScene #Kiss 💦💦 #RenewTimeless https://t.co/TqPANjJVKT +05/24/2018,Actors,@MattLanter,"I’ll be honest. No, I don’t. 😐 https://t.co/VEsnDDf2pP" +05/24/2018,Actors,@MattLanter,"RT @CJsaurusB: Wyatt was there to protect the Princess, just as Lucy attended the Royal Wedding. @nbc @MattLanter @abigailspencer https://t…" +05/24/2018,Actors,@MattLanter,Went out last night. #wingman #NosesOn! Tune in… https://t.co/yXySTaFL1n +05/24/2018,Actors,@MattLanter,"RT @TheTimelessRoom: You all got to those 5,000 likes and 2,500 retweets quicker than we thought you would! Working with our post departmen…" +05/24/2018,Actors,@MattLanter,What a beautifully written article. @allisonshoe https://t.co/x16KmH1hyp +05/24/2018,Actors,@MattLanter,Congrats on your win @kelly_clarkson !! 🎼 +05/24/2018,Actors,@MattLanter,This was one of my favorite openings of the series. Picks up with #TimeTeam running through the woods already in a… https://t.co/zKBI0YmvK3 +05/23/2018,Actors,@MattLanter,Do u think @RoyalFamily @KensingtonRoyal would adopt me and @AngelaLanter in? https://t.co/YuDKCt6s04 +05/23/2018,Actors,@MattLanter,"I hear there is a pool makeout scene with Wyatt/Lucy? Can you confirm or deny. Thx, #Clockblockers https://t.co/qKqupe2XzH" +05/23/2018,Actors,@MattLanter,Oh @TheCrownNetflix why have you not come into my life sooner? +05/23/2018,Actors,@MattLanter,#renewtimeless let’s see em. #hopeidontlookafool #deletedscenes https://t.co/qKqupe2XzH +05/22/2018,Actors,@MattLanter,RT @TheTimelessRoom: UPDATE: We know it's frustrating to our fans to not have an answer yet re: #RenewTimeless. We've been led to believe a… +05/21/2018,Actors,@MattLanter,Lol ♥️ u @kelly_clarkson #RenewTimeless https://t.co/vg1FA4esNr +05/21/2018,Actors,@MattLanter,"RT @SpoilerTV: #Timeless was one of @SpoilerTV's Scenes of the Week. +@NBCTimeless @MattLanter @TheTimelessRoom @nbc @malcolmbarrett @abiga…" +05/21/2018,Actors,@MattLanter,I need to see vid stat! 😂 https://t.co/VBU43NOUNz +05/20/2018,Actors,@MattLanter,Gee I’m blushing 😘 https://t.co/BIqJbm4M7s +05/20/2018,Actors,@MattLanter,@MikeJelline Ya gotta just put em in their place. 😂 +05/19/2018,Actors,@MattLanter,This feels like one of those creepy paintings you see in Scooby Doo https://t.co/b1xFIsKrFg +05/19/2018,Actors,@MattLanter,Oh boy. Here we go again. I can totally hear both. https://t.co/h0zgMD44Vt +05/19/2018,Actors,@MattLanter,I meeeaan... https://t.co/LJit99eObQ +05/18/2018,Actors,@MattLanter,Thanks @KristaVernoff ! #RenewTimeless https://t.co/CCyT4yl8PT +05/17/2018,Actors,@MattLanter,"RT @NuviAdam: Over the last 7 days, @NBCTimeless has garnered over 400k mentions (with a spread of 348m+) on social, with 77k+ of them talk…" +05/17/2018,Actors,@MattLanter,@bryanedwardhill Thank you sir! +05/17/2018,Actors,@MattLanter,@geoffjohns Looking forward to it! +05/16/2018,Actors,@MattLanter,Clearly @angelalanter LOVES the #Timeless beard. https://t.co/GwnEBnWLmb +05/16/2018,Actors,@MattLanter,"Wow, this had to have taken a long time. Cool vid! #timeless https://t.co/3qmifm1ok1" +05/16/2018,Actors,@MattLanter,#tbt 1 year ago. Waiting on news for a #Timeless… https://t.co/1CXprnCJda +05/15/2018,Actors,@MattLanter,RT @NBCTimeless: Freshman year vs. Senior year: #Lyatt edition. #Timeless https://t.co/6lvkL4yC8f +05/15/2018,Actors,@MattLanter,RT @Lovely__Melan: Wyatt looks since season 1. Which one is your favorite ? @MattLanter @NBCTimeless @Sony #Timeless #RemewTimeless https:/… +05/15/2018,Actors,@MattLanter,RT @Hypable: Interview: @NBCTimeless star @MattLanter on Wyatt's journey in season two of #Timeless and his hopes for season three. #RenewT… +05/15/2018,Actors,@MattLanter,RT @cathycryan: Timeless: Social ratings prove it needs renewing https://t.co/c3FhboOzyR +05/14/2018,Actors,@MattLanter,"RT @abigailspencer: More hugging. Less fighting. Please? Thanks, Lucy. #Timeless https://t.co/1vQpCrzaQt" +05/14/2018,Actors,@MattLanter,This is awesome! #timeless https://t.co/gek24AcRbi +05/14/2018,Actors,@MattLanter,Future Wyatt & Future Lucy #timeless https://t.co/RqMu7zj0wt +05/14/2018,Actors,@MattLanter,Savage. #timeless https://t.co/o0aMPGvWsU +05/14/2018,Actors,@MattLanter,RT @Wersching: 🙌🏻 #Timeless https://t.co/PcYhSaBeRq +05/14/2018,Actors,@MattLanter,Truth #timeless https://t.co/Ml4TVcOHAq +05/14/2018,Actors,@MattLanter,RT @kelly_clarkson: MY MIND IS BLOWN #Timeless ....I am so happy right now I don’t know what to do. How will I sleep? What in the world?! T… +05/14/2018,Actors,@MattLanter,What!!? #FutureWyattFutureLucy #timeless https://t.co/7R0NTXjMVE +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: When the chips are down Wyatt and Flynn fight side by side. #timeless +05/14/2018,Actors,@MattLanter,Dat hug tho #timeless https://t.co/C9T8Oi258O +05/14/2018,Actors,@MattLanter,....I think ur missing something 🤨 #timeless https://t.co/8FPJfivQEg +05/14/2018,Actors,@MattLanter,The sci fi geek in me is soooo interested in Superpower Jiya. #timeless +05/14/2018,Actors,@MattLanter,Haha right. With that devilish smirk on his face! #timeless https://t.co/zfzj2Xue1Z +05/14/2018,Actors,@MattLanter,Easy when the writing’s great! #timeless https://t.co/bakJNJ2DXg +05/14/2018,Actors,@MattLanter,RT @WilliamShatner: #Timeless Harriet dreamt about Wyatt & Rufus? +05/14/2018,Actors,@MattLanter,"Fun fact: despite what you see on screen, we were losing light and shot that horse scene in about 20 minutes. That’… https://t.co/XhDQEsU2dD" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: Yep. We are. #Timeless https://t.co/RVnsDxRzSY +05/14/2018,Actors,@MattLanter,RT @kelly_clarkson: Watching #Timeless finale and I LOVE The General!! Yes!! This show is so cool. I can’t believe this might not be renewe… +05/14/2018,Actors,@MattLanter,RT @LanaJeany: I LOVE that badass entrance by Harriet Tubman AKA The General! This ep was written by @Mattney (AKA my crush!) -- who also w… +05/14/2018,Actors,@MattLanter,RT @booklover_Rita: @NBCTimeless That finale. No words to describe. Wow. #timeless +05/14/2018,Actors,@MattLanter,Lolol #timeless https://t.co/0NLdx6TZP7 +05/14/2018,Actors,@MattLanter,Stick around 😜 #timeless https://t.co/5cFvQNBZ0t +05/14/2018,Actors,@MattLanter,RT @WilliamShatner: #Timeless Time to jump +05/14/2018,Actors,@MattLanter,Me too!! #timeless https://t.co/Awy11aI1n6 +05/14/2018,Actors,@MattLanter,Whaaaaaaaaaaaat! #timeless +05/14/2018,Actors,@MattLanter,RT @NBCTimeless: He finally said it. #Timeless #Lyatt https://t.co/WMmXjGJPaI +05/14/2018,Actors,@MattLanter,#1 niiiiicce! #timeless https://t.co/4dpaZtnoMg +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: Aaaand now we’re up to this part. #Timeless https://t.co/nrsEYnYNg3 +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: Happy mother’s day from the Preston family! #Timeless https://t.co/v3XmWCStss +05/14/2018,Actors,@MattLanter,RT @samraemcgrath: WOW WHAT THE F JUST HAPPENED.... 😮😮😮 #TIMELESS holy F. Didn’t see that coming.... +05/14/2018,Actors,@MattLanter,Insane in 3..2...1.. #timeless +05/14/2018,Actors,@MattLanter,Jiya has gotten 1000% perfect more BA. #timeless +05/14/2018,Actors,@MattLanter,RT @alisongreenberg: There’s not enough beta blockers in the world to get through this finale #Timeless +05/14/2018,Actors,@MattLanter,True story #timeless https://t.co/lJZgNaPt2x +05/14/2018,Actors,@MattLanter,"I hurt for Wyatt, but Matt agrees with you. 😜 #timeless https://t.co/8E1TyXdGCG" +05/14/2018,Actors,@MattLanter,Nice job team ! #timeless https://t.co/2YMPk3Vxmx +05/14/2018,Actors,@MattLanter,RT @kevinsizemore: THANKS FOR HAVING ME ON @NBCTimeless .... @MattLanter @malcolmbarrett @Wersching .... but that @HornChristine playing #H… +05/14/2018,Actors,@MattLanter,Fun fact: I did not know @abigailspencer was going to hug me@in that moment. #timeless +05/14/2018,Actors,@MattLanter,She’s changed sooo much! #timeless https://t.co/vgx9euLNGN +05/14/2018,Actors,@MattLanter,"RT @TheAltSource: HARRIET SAW THE LIFEBOAT.😲 +HARRIET SAW THE LIFEBOAT.😲 +HARRIET SAW THE LIFEBOAT.😲 +#Timeless" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: You're going to want to take your medication before the second hour then. #Timeless https://t.co/euFTeS0DSF +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: Oops. The sleeper agent brought a 19th century pistol to a Delta Force party! #timeless +05/14/2018,Actors,@MattLanter,"RT @arikalisanne: Less than 30 minutes, East Coast. You might THINK you’re ready, but I promise... you are NOT ready for this... #Timeless" +05/14/2018,Actors,@MattLanter,RT @TheTimelessRoom: #5 Worldwide? Amazing. Keep it up #Clockblockers! #Timeless https://t.co/du1SwXVAH5 +05/14/2018,Actors,@MattLanter,Rhett...Butler. 😂 #timeless +05/14/2018,Actors,@MattLanter,#timeless fans of all ages! Huge #riya fan. https://t.co/cQKcQ5CFpT +05/14/2018,Actors,@MattLanter,RT @caz_mer: This episode has been great so far #timeless +05/14/2018,Actors,@MattLanter,The forbidden colors? WTH? #timeless +05/14/2018,Actors,@MattLanter,RT @arikalisanne: RT if you think @HornChristine is an amazing badass Harriet Tubman #RenewTimeless #Timeless +05/14/2018,Actors,@MattLanter,This is just wrong #timeless https://t.co/e1GLnZ1Wvk +05/14/2018,Actors,@MattLanter,Eeeyyooo keep it going! Talk about it! #timeless https://t.co/PykKq8bDg0 +05/14/2018,Actors,@MattLanter,Hah agreed #timeless https://t.co/aIolcv64O5 +05/14/2018,Actors,@MattLanter,Man @malcolmbarrett u do have a lot of one liners tonight #timeless +05/14/2018,Actors,@MattLanter,"RT @malcolmbarrett: Time team, biotch! #Timeless https://t.co/rAPN5fqrHk" +05/14/2018,Actors,@MattLanter,RT @arikalisanne: Why stop now? Make us #1 in the whole freaking world tonight! #Timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,RT @malcolmbarrett: It’s in every episode. #Timeless https://t.co/VvweJ9Fq2l +05/14/2018,Actors,@MattLanter,RT @AngelaLanter: Team #RenewTimeless in da house! #Timeless https://t.co/uXz8MSlkOL +05/14/2018,Actors,@MattLanter,RT @BelleRinger1: This is Us reference! @NBCTimeless #renewtimeless @nbc @TheTimelessRoom @abigailspencer @goranvisnjic @MattLanter @malcol… +05/14/2018,Actors,@MattLanter,Harriet in the houuuuse! #timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,Jessica acting weird. #timeless #RenewTimeless +05/14/2018,Actors,@MattLanter,Tact? How? Byyyyy NOT telling them? #timeless https://t.co/QY76yWmWEv +05/14/2018,Actors,@MattLanter,"RT @NBCTimeless: Who has a time machine and is already trending in the United States?! + +🎉 #Timeless 🎉" +05/14/2018,Actors,@MattLanter,P-p-p-p pregnant! Bout to get a little complicated. #timeless +05/14/2018,Actors,@MattLanter,"RT @sakinajaffrey: “FOR MY SAKE? (Wyatt, silently screaming inside.) +@MattLanter #Timeless https://t.co/182gF82LWT" +05/14/2018,Actors,@MattLanter,@malcolmbarrett Or one two liner? #dadjoke #timeless #renewtimeless +05/14/2018,Actors,@MattLanter,Ok ok ok ok here we go. #Timeless #2hourfinale +05/14/2018,Actors,@MattLanter,On The plus side we can watch these kids and feel bad about ourselves that we never were and will never be the smar… https://t.co/XICdvyG9oN +05/14/2018,Actors,@MattLanter,"Uhhh ok, so I know we told you all to tune in at 9pm.. I guess @nbc had different plans? Stay tuned, it’s slightly delayed. #RenewTimeless" +05/14/2018,Actors,@MattLanter,"RT @NBCTimeless: Turns out there's a slight delay. Hang tight, #Clockblockers. #Timeless will be on soon! + +Meanwhile, this is us @ us rn.…" +05/14/2018,Actors,@MattLanter,RT @NBCTimeless: One hour to go until the #Timeless season finale!🎉 https://t.co/FKJR62xDDU +05/13/2018,Actors,@MattLanter,A final plea for #Timeless season 3 hopes. Tonight or never! 9pm. @SonyPictures @nbc @THR @Variety @DEADLINE @EW https://t.co/4cOwWgcrPV +05/13/2018,Actors,@MattLanter,MacKenlee and I sure are lucky to have this superwoman in our lives!… https://t.co/PX5iWqwlNe +05/13/2018,Actors,@MattLanter,RT @TVGuide: #Timeless fans better watch the Season 2 finale tonight if they want the show to return next season https://t.co/TxTOAZSGbZ ht… +05/13/2018,Actors,@MattLanter,It’s tonight or never. Ya gotta tune in LiVE! #renewtimeless https://t.co/RGTFgUUK23 +05/13/2018,Actors,@MattLanter,👇👇 #RenewTimeless https://t.co/Pyk8r5nRqZ +05/13/2018,Actors,@MattLanter,RT @DEADLINE: ‘Timeless’ Co-Creator Eric Kripke On Series’ Fate: “Could Go Either Way” https://t.co/tCMbFdAspo https://t.co/OkavH5SdWT +05/13/2018,Actors,@MattLanter,@rmayemsinger @alzassociation Wow. So true. +05/13/2018,Actors,@MattLanter,9pm 9pm 9pm TOMORROW night. Two hours! #Timeless https://t.co/wLt8NjxZGq +05/13/2018,Actors,@MattLanter,Oh the @AtlantaFalcons know I’m all in https://t.co/cKSmRuhcf5 +05/12/2018,Actors,@MattLanter,Ps. Should we watch the finale together orrrr? #RenewTimeless https://t.co/W95LQNjDSt +05/12/2018,Actors,@MattLanter,It’s destiny! #RenewTimeless #Season3GuestStar https://t.co/W95LQNjDSt +05/12/2018,Actors,@MattLanter,@Dan_Fogelman @MichaelAusiello So true! +05/11/2018,Actors,@MattLanter,RT @WBHomeEnt: #DeathofSuperman. Tomorrow. https://t.co/8Z1esuW6VP +05/10/2018,Actors,@MattLanter,"Coming soon #Timeless Sunday 2 hour FINALE at 9pm +Nine! +9! Yes I… https://t.co/DSbVktrnoK" +05/09/2018,Actors,@MattLanter,RT @allisonrmcmanus: #Timeless named one of the best TV shows of 2018 by Business Insider ❤️❤️❤️ #Clockblockers #RenewTimeless https://t.co… +05/07/2018,Actors,@MattLanter,RT @arikalisanne: Recreating the Reagan assassination attempt was one of the most complex historical recreations we’ve ever done... and pro… +05/07/2018,Actors,@MattLanter,Trending!!! #Timeless #RenewTimeless https://t.co/DBSvuqNH8O +05/07/2018,Actors,@MattLanter,RT @KatieGompert: Goosebumps & tears with this episode of @NBCTimeless #Timeless +05/07/2018,Actors,@MattLanter,RT @Lovely__Melan: And know we finally know why Wyatt was chosen! @MattLanter @sakinajaffrey #Timeless +05/07/2018,Actors,@MattLanter,Savage #RenewTimeless #Timeless https://t.co/vAAuEbmYdr +05/07/2018,Actors,@MattLanter,Agent Christopher...don’t ever potentially leave us again. #RenewTimeless #Timeless +05/07/2018,Actors,@MattLanter,🙆‍♂️🚙 u know what I’m talking about #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,"Wow, Christopher seeing her future in pictures. So powerful. #timeless #RenewTimeless" +05/07/2018,Actors,@MattLanter,We’re like one big Christmas package #Timeless #RenewTimeless https://t.co/joVnbKybVL +05/07/2018,Actors,@MattLanter,See even @kelly_clarkson digs it. #RENEWTIMELESS https://t.co/ljQyyPyOD7 +05/07/2018,Actors,@MattLanter,"Practice makes perfect. Wait what? +#RenewTimeless #Timeless https://t.co/jsC5LpAPZJ" +05/07/2018,Actors,@MattLanter,I feel like this might get a lot of retweets? 🤷‍♂️ #justsaying #renewtimeless #Timeless https://t.co/ffmgKMriSd +05/07/2018,Actors,@MattLanter,Also @JustDoumit with huge hair gives me life. #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,And @abigailspencer with the glasses takes the cake. 🎂 #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,I say we hurt this guy. #Timeless #RenewTimeless +05/07/2018,Actors,@MattLanter,Let’s do this. #timeless viewing party!! #RenewTimeless https://t.co/zWalz9Bji9 +05/06/2018,Actors,@MattLanter,#RenewTimeless https://t.co/69xlYVfnXf +05/06/2018,Actors,@MattLanter,#RenewTimeless tonight at 10/9c https://t.co/d60PBN9MhZ +05/06/2018,Actors,@MattLanter,We can change history. #clockblockers #renewtimeless https://t.co/5muiKWGYOw +05/05/2018,Actors,@MattLanter,"Waiting for the new Ep of nbctimeless like... +Our fantastic Dp Jimmy Lindsey… https://t.co/3CRu6IL6aA" +05/05/2018,Actors,@MattLanter,Want #Timeless back for season 3? Read this 👇👇👇👀👀 https://t.co/AOlwzqJHpu +05/05/2018,Actors,@MattLanter,@chrissiefit Be careful out there +05/04/2018,Actors,@MattLanter,@sakinajaffrey @JustDoumit Hahaha possibly +05/04/2018,Actors,@MattLanter,Wouldn’t mind this show at all https://t.co/c44jCmqALN +05/04/2018,Actors,@MattLanter,"Could be a beautiful friendship. Wyatt could sit down, hand her a basketball and say, “hey champ, come on, what’s g… https://t.co/tAgrhAySqk" +05/04/2018,Actors,@MattLanter,"Fun interview about #Timeless. We talk Jessica, Lucy, Flynn and the finale https://t.co/iT10iLyaFB" +05/04/2018,Actors,@MattLanter,"RT @MichaelAusiello: .@NBCTimeless Exclusive: Stars, EP Preview the Team's Quest to Save Young Agent Christopher — Plus, Watch Jiya Swipe '…" +05/04/2018,Actors,@MattLanter,@jennifermuro I love when things brew! +05/03/2018,Actors,@MattLanter,RT @Josh_connolly: THERE’S A SPIDER ON YOU!!! https://t.co/oE7qlcHAO0 +05/03/2018,Actors,@MattLanter,RT @kelly_clarkson: ....because it’s great! #listentothepeople 😜💁🏼‍♀️ https://t.co/L6Hjzi8WIT +05/03/2018,Actors,@MattLanter,RT @allisonrmcmanus: Proof of #Timeless repeating history with their two USA Today Save Our Show Poll Wins side by side. #RenewTimeless #Re… +05/03/2018,Actors,@MattLanter,"RT @TheTimelessRoom: Getting sooooooooo close to jumping into the lead in this poll. Vote if you haven't done so already! + +https://t.co/Be…" +07/02/2018,Actors,@MACKWILDS,"ayo @BENBALLER... i feel for you right now, brudda..." +07/02/2018,Actors,@MACKWILDS,"IM UPSET!!!! * drake voice RT @LegionHoops: BREAKING: LeBron James will sign a 4-year, $154M deal with the Lakers,… https://t.co/YZmaP89ZaI" +06/29/2018,Actors,@MACKWILDS,If you’re going thru hell... keep going! +06/29/2018,Actors,@MACKWILDS,Can’t heal a wound if you pretend it’s not there. +06/28/2018,Actors,@MACKWILDS,The NBA is weir.... interesting!!! +06/27/2018,Actors,@MACKWILDS,The fact that you aren’t where you wanna be. Should be all the motivation you need! +06/23/2018,Actors,@MACKWILDS,If you knew how much I lost it wouldn’t bother you so much to see me win +06/23/2018,Actors,@MACKWILDS,"RT @EBONYMag: The @BETExperience Youth Program supports 50 Los Angeles county teens hoping to break into the music business, they kicked of…" +06/22/2018,Actors,@MACKWILDS,Life tip: put as much effort into getting your soul rights you do getting your money right +06/21/2018,Actors,@MACKWILDS,Therapy should be FREE. +06/21/2018,Actors,@MACKWILDS,What if... everything you’re going thru is preparing you for all you wanted +06/20/2018,Actors,@MACKWILDS,Creed 2!! Looks 🔥🔥 https://t.co/g8wAwn90O8 +06/19/2018,Actors,@MACKWILDS,Today is another chance to get it right y’all +06/18/2018,Actors,@MACKWILDS,Oh no the fuck you didn’t just lol... RT @WOODY_THEGREAT: Static Shock 2020 https://t.co/hY69ymw98h +06/18/2018,Actors,@MACKWILDS,RT @ChaleyRose: We screened our new movie #DinnerForTwo at #ABFF in Miami this weekend. You can watch it September 2nd at 7pm on .@tvonetv… +06/18/2018,Actors,@MACKWILDS,"Once you cost me my peace, you gotta go. You costing me way too much" +06/17/2018,Actors,@MACKWILDS,#deadass. https://t.co/KVGQJZ5V6l +06/16/2018,Actors,@MACKWILDS,Let’s just appreciate ALL the great music. We blessed!! We supporting it ALL. +06/16/2018,Actors,@MACKWILDS,Bey & Jay!!!! +06/15/2018,Actors,@MACKWILDS,Ronaldo is the GOAT! +06/15/2018,Actors,@MACKWILDS,RT @tvonetv: Our @ABFF Celebrity Scene Stealers Finalists showed up and showed out TODAY! 👏🏽@Sylvester_Folks @BirdyNYC @ScreenGriot .🙏🏽Acto… +06/14/2018,Actors,@MACKWILDS,Life Tip: Do YOU! +06/12/2018,Actors,@MACKWILDS,Getting ready to hit the stage #FortniteProAM with @timthetatman @FortniteGame #FortniteE3 https://t.co/7gD46cFh8y +06/12/2018,Actors,@MACKWILDS,"RT @theqgentleman: .@MACKWILDS hosts ""The Brotherhood Dinner"" in NYC. https://t.co/obXTNF08g2 https://t.co/h7PztKRaJD" +06/11/2018,Actors,@MACKWILDS,Praying more and keeping to myself. +06/09/2018,Actors,@MACKWILDS,My Dynasty list: 1. 00s Lakers 2. Bulls 3a. Golden State 3b. 80s Celtics 5. 80s Lakers 6. Spurs +06/09/2018,Actors,@MACKWILDS,Congrats to the Warriors on back 2 back Ships +06/09/2018,Actors,@MACKWILDS,Idk... their celebration seems a little... bland. +06/08/2018,Actors,@MACKWILDS,Kanye making those guns noises has to be the funniest shit to me +06/07/2018,Actors,@MACKWILDS,They are KILLING THE CAVS with this Roll/Cut to the basket play. I mean DAMN!!!!!!! +06/07/2018,Actors,@MACKWILDS,🤦🏾‍♂️ Lebron can’t pass outta that high percentage shot!! +06/06/2018,Actors,@MACKWILDS,"RT @FortniteGame: More Celebrity Pro-Am duos announced! + +Left: + +@RubiuYT + @partynextdoor +@sssniperwolf + @TFlight31 +@timthetatman + @MAC…" +06/05/2018,Actors,@MACKWILDS,RT @BET_FR: Retrouvez @MACKWILDS maintenant dans #BETManCave ! https://t.co/nFE9nUD3cO +06/04/2018,Actors,@MACKWILDS,RT @RocNation: Congratulations to @angiemartinez on her @RadioHOF nomination! Show your support by voting now https://t.co/jtlMv4L4sw #Vote… +06/03/2018,Actors,@MACKWILDS,@FunnyJulius @TheOgBlackMan My boy Alexander wrote this. Bringing our culture to GQ lol +06/03/2018,Actors,@MACKWILDS,🗣🗣🗣 STOP FEEDING THE FEDS!!!!!!!!! +06/01/2018,Actors,@MACKWILDS,Slow process is better than no process +06/01/2018,Actors,@MACKWILDS,I didn’t even know the score and I’m watching the damn game. So can’t be mad at JR for that +05/29/2018,Actors,@MACKWILDS,"@meganrpayne1 You think people who work on set choose who the title actor is? First, are you aware of HOW MANY peo… https://t.co/MEG0ZQVXO8" +05/29/2018,Actors,@MACKWILDS,It’s also sad how many people have now lost their job because of #Roseannebarr tweets. +05/29/2018,Actors,@MACKWILDS,@ShenaeCurry let’s not get disrespectful. +05/29/2018,Actors,@MACKWILDS,"if you know, you know. https://t.co/LaQKofxigm" +05/29/2018,Actors,@MACKWILDS,Don’t be mad when they don’t support you. Go get your bag! You’ll see them later +05/29/2018,Actors,@MACKWILDS,"Quick Thoughts: I Feel for CP3!, GSW in 5 😩, Lebron done as a Cav!, The West is going to be even better next year" +05/28/2018,Actors,@MACKWILDS,@BENBALLER I can’t see you not rooting for the Lakers. I get it!! But that’s almost like Spike not fucking with the… https://t.co/ZAvERUSsV9 +05/28/2018,Actors,@MACKWILDS,@BENBALLER Keep that same energy next year when he’s a Laker... +05/28/2018,Actors,@MACKWILDS,LET’S GO @cavs @KingJames #whateveritakes https://t.co/8kjrP3Zh45 +05/28/2018,Actors,@MACKWILDS,You gotta Applaud 8 straight finals!!! +05/27/2018,Actors,@MACKWILDS,RT @JAYVERSACE: the demon in the corner when you having sleep paralysis https://t.co/1YHqU25HF7 +05/26/2018,Actors,@MACKWILDS,@KrisKasanova where you at? i’m heading back to the city +05/25/2018,Actors,@MACKWILDS,RT @NBASTORE: You bet actor @MACKWILDS will be cheering on the @cavs down to the wire! https://t.co/elvGLIL3rp +05/25/2018,Actors,@MACKWILDS,Daytona 🔥🔥🔥 @PUSHA_T +05/23/2018,Actors,@MACKWILDS,The NFL just... fucked up. Imma just say it. For so many reasons this is going to backfire but not consulting the NFLPA was just stupid +05/23/2018,Actors,@MACKWILDS,@TheIvyRivera https://t.co/g5ntvXNVxj +05/23/2018,Actors,@MACKWILDS,It’s going to be so entertaining watching all the women on vacation this weekend via social media lol +05/22/2018,Actors,@MACKWILDS,"RT @YoStayHungry: Special thanks to our judges @mackwilds @lonelywhitehomie @korshawilson @itsaking, it was tough but #EverybodyEatsB so it…" +05/18/2018,Actors,@MACKWILDS,@plies IN HIS BAG RIGHT NOW!!! Dropping 🔥🔥🔥 +05/18/2018,Actors,@MACKWILDS,Don’t be scared of what you want +05/17/2018,Actors,@MACKWILDS,If she prays for you. She’s looking out for you on another level. Respect that! +05/17/2018,Actors,@MACKWILDS,@capricciousa Love y’all product!! Drink of the summer +05/17/2018,Actors,@MACKWILDS,RT @REESElaflare: 😢😢😢😢🙏🏾❤️ https://t.co/ekQQDJE4vm +05/16/2018,Actors,@MACKWILDS,Korver- Q chicken!!! +05/15/2018,Actors,@MACKWILDS,"RT @PresherToBeReal: Obsession- @MACKWILDS +#Yoga #Yogi #Therapy https://t.co/a6XFCzDQ0o" +05/15/2018,Actors,@MACKWILDS,MJ not playing with y’all!!!!!! He said I HOURS OF “y’all got me fucked up” in the vault +05/15/2018,Actors,@MACKWILDS,Draymond REALLLLLL PASSIONATE tonight huh +05/15/2018,Actors,@MACKWILDS,RT @GioVanniWatson_: Listen to Gramercy Feat Mack Wilds by GiovannI #np on #SoundCloud @MACKWILDS @GioVanniWatson_ https://t.co/9oljZlhMwU +05/14/2018,Actors,@MACKWILDS,A very underrated marketing strategy is Apple’s Blue text message idea. Changed the game. +05/13/2018,Actors,@MACKWILDS,"@MISSCNH i wore it to SohoHouse. trust, i’m baking these jawns." +05/13/2018,Actors,@MACKWILDS,No matter how busy you are today or things that happened in the past or where she is. REACH OUT to your Mother toda… https://t.co/oLLlEuPTIv +05/13/2018,Actors,@MACKWILDS,RT @KDJPerspective: Got a chance to watch and 📸 @MACKWILDS at #rnbhouseparty last night. https://t.co/DzE4kGT4Ub +05/12/2018,Actors,@MACKWILDS,"RT @BET: They said Bill Cosby got his degree ""repoed"", this is too much. ""I'll Apologize Later"" host @Mouse_Jones and his first guest @MACK…" +05/11/2018,Actors,@MACKWILDS,Outwork EVERYBODY! +05/11/2018,Actors,@MACKWILDS,@Calligrafist thanks broski. always love. +05/11/2018,Actors,@MACKWILDS,"RT @Calligrafist: S/o to The Homie @MACKWILDS, Early Tonight Showed Me How Good a Dude He is... | We Have These Unrealistic Expectations of…" +05/06/2018,Actors,@MACKWILDS,Y’all wasn’t even banging with homie during *Because of the Internet days lol +05/06/2018,Actors,@MACKWILDS,@RaeSremmurd 3 for 3!! When it comes to Albums!! +05/06/2018,Actors,@MACKWILDS,R&B +05/06/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: @MACKWILDS You are Built to Win and Equipped to Soar #JC3 https://t.co/AIEP5TVSqS +05/05/2018,Actors,@MACKWILDS,Why isn’t anyone talking about how fast Black Panther and Capt. America was running to go hand out Fades in Infinity War +05/04/2018,Actors,@MACKWILDS,You’re going to flourish this year and nobodies going to stop you +05/03/2018,Actors,@MACKWILDS,"@Mr516 @TheOgBlackMan @Mouse_Jones @FunnyJulius niggas don’t want Reek to thrive, man. 😂😭😂" +05/03/2018,Actors,@MACKWILDS,@Mouse_Jones 😂😭😂 +05/03/2018,Actors,@MACKWILDS,"@BigDee_SA ***”...make money for my fam, fans outta enemies.”" +05/03/2018,Actors,@MACKWILDS,@TamicoLee @TravisGreeneTV @VaShawnMitchell @NelsonJonathan @ToddDulaney happy birthday. +04/30/2018,Actors,@MACKWILDS,Thanos a visionary! Not a villain lol +04/29/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: God’s Not Finished with You - Just Watch #JC3 https://t.co/rBplcYECiD +04/27/2018,Actors,@MACKWILDS,SAQUON BARKLEY!!!!!! #giants great pick!!! +04/25/2018,Actors,@MACKWILDS,Hey... you can be a fan of someone’s art but not agree with their opinion. #bigfact +04/24/2018,Actors,@MACKWILDS,RT @ogbishop: When you get to direct the one film you needed to direct and the film gods bless you with @MACKWILDS and @ChaleyRose. https:/… +04/24/2018,Actors,@MACKWILDS,"RT @tvonetv: How do you heal a broken heart? TVOne’s new movie ‘Dinner For Two,’ starring @MACKWILDS and @ChaleyRose, tackles the complicat…" +04/24/2018,Actors,@MACKWILDS,(grins.) https://t.co/W5GFBbc5IX +04/21/2018,Actors,@MACKWILDS,i love this. https://t.co/bHsSuYyJ3W +04/20/2018,Actors,@MACKWILDS,“He’s going to restart the world” ... 🤯 +04/20/2018,Actors,@MACKWILDS,Get a goal. Get a plan. Get up off yo ass. +04/17/2018,Actors,@MACKWILDS,@YooQTheDj WHO SAID THAT?! +04/15/2018,Actors,@MACKWILDS,Send your girl $50 to apply for Beyonce University +04/13/2018,Actors,@MACKWILDS,@Chec_CashinChat yessssurrrrr. +04/13/2018,Actors,@MACKWILDS,I see you @Gail_BeAN #atlantafx +04/11/2018,Actors,@MACKWILDS,Being calm in a tough situation is a super power +04/10/2018,Actors,@MACKWILDS,This shit 🔥🔥 https://t.co/M7aHL0KOLW +04/09/2018,Actors,@MACKWILDS,Can I please get Bickenhead Ft. Project Pat @iamcardib +04/08/2018,Actors,@MACKWILDS,God is Good. +04/06/2018,Actors,@MACKWILDS,I have a project titled “Eem” dropping later this month but it’s not complete yet. I have a obligation to this char… https://t.co/q9uShhjZMu +04/06/2018,Actors,@MACKWILDS,Not at the moment. It’s a very expensive production for such a cult based genre. It’ll find another home if the dem… https://t.co/RfTv4hKFFP +04/06/2018,Actors,@MACKWILDS,Ain’t nobodies fault but mine that I only got 2 projects lol but imma work on that this year. That I can promise https://t.co/6E65T13gZu +04/05/2018,Actors,@MACKWILDS,Don’t make moves without praying on it first +04/04/2018,Actors,@MACKWILDS,Tired as fuck +04/02/2018,Actors,@MACKWILDS,The devil will tell you a lie in your own voice +04/01/2018,Actors,@MACKWILDS,@Poetik_Tanaya “Most Young Kings Get Thier Heads Cut Off” - Basquiat. +03/31/2018,Actors,@MACKWILDS,RT @taylortee17: Why I am I just now hearing @MACKWILDS After Hours Album?! Great piece of work....Mack is really an underrated R&B artist.… +03/29/2018,Actors,@MACKWILDS,#ReadyPlayerone was Phenomenal!!! Mad nostalgic!! Visually creative. A MUST SEE! +03/28/2018,Actors,@MACKWILDS,@RAVIEB https://t.co/5jVrHDsryK +03/28/2018,Actors,@MACKWILDS,@Slim_Sass happy birthday queen! +03/27/2018,Actors,@MACKWILDS,"The Giants better better get 2 1st Round picks, their 3rd Round pick, my name on the Hollywood walk of fame and The… https://t.co/mZWZv8tMIm" +03/27/2018,Actors,@MACKWILDS,Operating within my purpose +03/26/2018,Actors,@MACKWILDS,RT @Nikyatu: Why do (so many of you) insist on defining a Woman's value based on her ability to withstand your rott… https://t.co/HA0PxCHJTY +03/26/2018,Actors,@MACKWILDS,"Listen ladies,- it’s not about withstanding - relationship or mens BS. I just admire a woman who levels up and goes… https://t.co/vbQH22nlaF" +03/26/2018,Actors,@MACKWILDS,Mental note: words can’t be heard on a screen +03/26/2018,Actors,@MACKWILDS,I agree with @chancetherapper theory on brands using racism as a subplot or marketing strategy to get a reaction from consumers +03/25/2018,Actors,@MACKWILDS,When your girl call you after any little inconvenience in her life. You gotta learn to sit there and listen. She wo… https://t.co/zOyhIQQ7s5 +03/25/2018,Actors,@MACKWILDS,@johnboyega congrats fam!! +03/25/2018,Actors,@MACKWILDS,If god blocks it. Don’t stalk it. +03/24/2018,Actors,@MACKWILDS,Use these platforms to promote what you love instead of bashing what you hate. +03/24/2018,Actors,@MACKWILDS,You gotta be sick in the head to protest against kids being killed by guns +03/24/2018,Actors,@MACKWILDS,a +03/24/2018,Actors,@MACKWILDS,The way you move says a lot about you. +03/23/2018,Actors,@MACKWILDS,Y’all ever wonder if you are what someone is praying against? +03/22/2018,Actors,@MACKWILDS,"1. Civil War +2. The Avengers +3. Winter Soldier +4. Black Panther +5. Iron Man +6. Thor: Ragnarok +7. Ant Man +8. Guardia… https://t.co/pZg4bhiETf" +03/22/2018,Actors,@MACKWILDS,The thing about a really good woman is that she remains one even after all the bullshit +03/21/2018,Actors,@MACKWILDS,I had to take some losses just to value where I am in life +03/19/2018,Actors,@MACKWILDS,RT @AVoiceOfTheKing: @MACKWILDS All you have done and been through was not in Vain! In these next 8 weeks God is about to Show Up in your L… +03/19/2018,Actors,@MACKWILDS,The best thing I ever did was believe in me +03/18/2018,Actors,@MACKWILDS,Hell no. https://t.co/ZE7Nc98htt +03/16/2018,Actors,@MACKWILDS,That trailer ain’t hit... but I’m still excited to see the movie +03/16/2018,Actors,@MACKWILDS,#atlantafx is so culturally accurate +03/15/2018,Actors,@MACKWILDS,ENJOY -your- YOUTH. +03/14/2018,Actors,@MACKWILDS,A great future doesn’t require a great past +03/14/2018,Actors,@MACKWILDS,RT @kicksforsoles: We got some heat on the way.. @MACKWILDS #95 🔥🔥🔥 +03/14/2018,Actors,@MACKWILDS,"@kodaklens fuck these niggas Len!!! we can do whatever we want!!!! TOP DOWN IN THE WINTER, THATS WHAT WINNERS DO!!!!" +03/14/2018,Actors,@MACKWILDS,I can’t have beautiful dark brown eyes?? lol https://t.co/fq0Sj5ySaK +03/13/2018,Actors,@MACKWILDS,HOW DOES SAM BRADFORD KEEP GETTING PAID!!!! How???!!! +03/13/2018,Actors,@MACKWILDS,"Many will want you, few will invest in you" +03/13/2018,Actors,@MACKWILDS,"RT @Diddy: If it ain't... + +Making me money, making me better or making me happy... + +I ain't making time for it." +03/13/2018,Actors,@MACKWILDS,@Wale Just dropped some FIRE!!! #itscomplicatedep +03/12/2018,Actors,@MACKWILDS,i don't understand why dudes think loving a chick is wack. like who do u expect to hold u down forever? +03/12/2018,Actors,@MACKWILDS,@Mouse_Jones whaaaaaaaaaaa?! +03/12/2018,Actors,@MACKWILDS,Yes https://t.co/sFMHWUemwu +03/11/2018,Actors,@MACKWILDS,Get ya paper up... That’s the best revenge! +03/10/2018,Actors,@MACKWILDS,Never be mad at yourself for evolving past someone else’s comfort zone +03/10/2018,Actors,@MACKWILDS,@_cierarogers https://t.co/b0NHqcIvh8 +03/10/2018,Actors,@MACKWILDS,@RAVIEB https://t.co/VqvwS483iZ +03/09/2018,Actors,@MACKWILDS,What got into the The Browns organization lol +03/09/2018,Actors,@MACKWILDS,RT @JakeElman: Ten years since the greatest show in TV history ended. #TheWire is a damn masterpiece. Especially Season 4. https://t.co/MTU… +03/09/2018,Actors,@MACKWILDS,The Wire is #1 ... Period. +03/09/2018,Actors,@MACKWILDS,RT @Sir_Hurizzel: Anime has been the shit. Niggas just getting on it now because some celebs mentioned it https://t.co/wbeR0sHIYu +03/07/2018,Actors,@MACKWILDS,"RT @ScottieBeam: Protect @Royceda59 at all cost. + +https://t.co/QBBPx95BLP" +03/07/2018,Actors,@MACKWILDS,People be in secret competitions with you and still be losing. +03/07/2018,Actors,@MACKWILDS,RT @KarenCivil: Some @CrustaceanBH photobooth fun w/ @MACKWILDS. https://t.co/C9p4EZROcU +03/07/2018,Actors,@MACKWILDS,RT @PrettyNay21: @MACKWILDS wait..😲🤤😏 #HeyBigHead Lol jk but just saw this on ig.. caught me off guard https://t.co/x8uYcT0VhO +03/06/2018,Actors,@MACKWILDS,RT @OfficialYonni: #Yonni x @mackwilds 👀 s/o @natalieprospere Alley Oop! https://t.co/2m5TNHJo4B +03/06/2018,Actors,@MACKWILDS,Imagine a Presidential term so crazy that when Hollywood writes the script for it... none of it is exaggerated. +03/06/2018,Actors,@MACKWILDS,🤫🤫 https://t.co/gmtj7k6qqe +03/05/2018,Actors,@MACKWILDS,"25 looks good on you, mama. https://t.co/ctnysmdnzS" +03/04/2018,Actors,@MACKWILDS,@xoBritishBeauty i’m glad you fuckin’ w/ it. for real. +03/04/2018,Actors,@MACKWILDS,@geniqueeee hi. +03/04/2018,Actors,@MACKWILDS,Listen to your intuition when you out here grinding. Trust me. +03/04/2018,Actors,@MACKWILDS,Give it a listen when you can. Let me know your thoughts https://t.co/Wza5lykW0Y +03/04/2018,Actors,@MACKWILDS,RT @PapBrady: 2 MORE LIST ON @amazon #1 ON THE LIST FOR DIGITAL ART! GOD IS GOOD 🙏🏻 @MISSCNH #DoItForGram https://t.co/0Athwt4Kyo https://t… +03/03/2018,Actors,@MACKWILDS,https://t.co/kFjW0QM9G1 +03/02/2018,Actors,@MACKWILDS,Your flaws are perfect for who is meant to love you +03/02/2018,Actors,@MACKWILDS,RT @ComptonUnified: @ #emersonelementary @Yoobigives pajama jam #readacrosscompton day kicks off with special guest @MACKWILDS https://t.co… +03/02/2018,Actors,@MACKWILDS,RT @TheREALRIKISHI: #TBT Also good to see my uce @jawnmurray and pleasure to meet uce @mackwilds @theaafca awards 🤙🏾… https://t.co/MPd5GxLd… +03/02/2018,Actors,@MACKWILDS,Thanks Fam. I won’t disappoint https://t.co/AVq93Nrfmg +03/02/2018,Actors,@MACKWILDS,RT @BET: RT if you're watching the all-new episode of #MancaveBET! We got @MACKWILDS! Let's gooooo! https://t.co/7rhkOTCs0z +03/02/2018,Actors,@MACKWILDS,"RT @Jeffsnation: Tonight, Mancave is back and we’ve got @MACKWILDS stopping through to chop it up over a few confessions and his crazy grin…" +03/02/2018,Actors,@MACKWILDS,RT @BET: .@MACKWILDS took it ALL the way back for #TBT with this baby photo! 😂 Find out who else got their picture exposed TONIGHT in an al… +03/01/2018,Actors,@MACKWILDS,RT @BET: .@MackWilds is entering the Mancave! Make sure you catch him on TONIGHT's episode of #MancaveBET - 10:30/9:30c! https://t.co/b0WYR… +03/01/2018,Actors,@MACKWILDS,RT @TheRealTank: My bro bro @mackwilds will be in the #mancave #mancavebet tomorrow night! Tune in to bet at… https://t.co/zPGfktiMfq +02/27/2018,Actors,@MACKWILDS,Turn your passion into a career +02/27/2018,Actors,@MACKWILDS,RT @LilRel4: When the homies link up it’s nothing but laughs and good times @mackwilds #GreatTimes photo… https://t.co/5IYkL4tQgr +02/26/2018,Actors,@MACKWILDS,No regrets. Just lessons learned +02/24/2018,Actors,@MACKWILDS,I’m tripping. DEATH NOTE* delete Cowboy Bebop. Attack on Titan is dope but gets mad racist towards the end. *keep w… https://t.co/P3KlGxDJ2a +02/24/2018,Actors,@MACKWILDS,"1. Full Alchemist: Brotherhood +2. Naruto +3. Attack on Titan +4. Cowboy Bebop +5. DB Super +Making their way: seven… https://t.co/uiepUPMaKB" +02/24/2018,Actors,@MACKWILDS,"RT @VanLathan: This song is ridiculously good. #NowPlaying ""Choose"" by @MACKWILDS Wilds on @TIDAL https://t.co/xfaDmd4FWQ" +02/23/2018,Actors,@MACKWILDS,Give it your ALL and call it a day +02/21/2018,Actors,@MACKWILDS,"@_cierarogers eh, just a litttttle to your left." +02/20/2018,Actors,@MACKWILDS,I wouldn’t mind but the last chapter was written and that book has been shelved. By all means go back and re visit… https://t.co/f6P4BS6KHm +02/17/2018,Actors,@MACKWILDS,"RT @SummerStage: @MACKWILDS at #SummerStage in #CloveLakesPark, #StatenIsland. + +#BlackHistoryMonth https://t.co/pzrbM7yeR9" +02/17/2018,Actors,@MACKWILDS,The party continues with an exclusive Card Member @kendricklamar concert thanks to @AmericanExpress! #AmexNBA… https://t.co/SpBKyl4I0b +02/16/2018,Actors,@MACKWILDS,Going hard in the paint at the @AmericanExpress Experience. #AmexNBA #AmexAmbassador https://t.co/qTmqeqv1GI +02/13/2018,Actors,@MACKWILDS,Thx luv https://t.co/UWfhPN9RLY +02/12/2018,Actors,@MACKWILDS,If you’re coming to LA for All Star Weekend. Respect the Culture and BE HUMBLE. Then you’ll have a great weekend! A… https://t.co/NS8DrScf0y +02/12/2018,Actors,@MACKWILDS,@ThatDancer (shakes head.) +02/11/2018,Actors,@MACKWILDS,“Good Man” 🔥🔥 @NeYoCompound @HEYDJCAMPER +02/08/2018,Actors,@MACKWILDS,My silly ass studying acting & music theory when athletes out here making 137 Milly for going 7-0 https://t.co/hKdHIKCD6p +02/08/2018,Actors,@MACKWILDS,Tyron Lue here on out... https://t.co/0hypmKl55K +02/08/2018,Actors,@MACKWILDS,i really wish Quincy Jones played for the Cavs this season +02/07/2018,Actors,@MACKWILDS,Hope you nothing but success Fam https://t.co/Ds2LqT0L5k +02/07/2018,Actors,@MACKWILDS,"What a interview. Man, I️ wish we had more of these. Genuinely enjoyed that shit. Thought provoking and f**king hilarious" +02/07/2018,Actors,@MACKWILDS,QUINCY JONES!!!!!!!!!!!! https://t.co/1dElQvORbC +07/01/2018,Actors,@EmilyVanCamp,❤️❤️❤️ https://t.co/NmbjqhHNBf +06/20/2018,Actors,@EmilyVanCamp,"RT @JoyAnnReid: Rachel, my friend and brilliant colleague, tonight you channeled the emotion and devastation every single person with a hea…" +06/19/2018,Actors,@EmilyVanCamp,"RT @chrislhayes: BREAKING: @RepJayapal just announced on @allinwithchris a nationwide mobilization against family separation on JUNE 30TH,…" +06/19/2018,Actors,@EmilyVanCamp,https://t.co/eTZthRc3rK +06/19/2018,Actors,@EmilyVanCamp,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +05/31/2018,Actors,@EmilyVanCamp,"RT @sally_field: I like Samantha Bee a lot, but she is flat wrong to call Ivanka a cunt. + +Cunts are powerful, beautiful, nurturing and hon…" +05/08/2018,Actors,@EmilyVanCamp,Such a great performance by the lovely @juliannaguill my gorgeous on screen sis 🙌🏼 Also directed by our fave… https://t.co/evFIwpBC86 +05/07/2018,Actors,@EmilyVanCamp,Yes👇🏼 https://t.co/nShn0ftpr7 +04/28/2018,Actors,@EmilyVanCamp,"RT @soledadobrien: Then maybe before you use your massive platform to support racists and bigots, read a book or google some stuff. (Start…" +04/28/2018,Actors,@EmilyVanCamp,I ❤️ U @alisongreenberg .. Just happy to be a beard or a mustache or a goatie in the MCU 😂😂😂 https://t.co/Q9j3BdAHPz +04/26/2018,Actors,@EmilyVanCamp,This is absolutely outrageous and horrible. So awful to be in a vulnerable space offering yourself to an audience w… https://t.co/u1XMDJHiOr +04/20/2018,Actors,@EmilyVanCamp,"RT @latelateshow: Stop whatever you're doing because the #LateLateShow with @BusyPhilipps, @EmilyVanCamp and @EugenioDerbez starts in 5 min…" +04/09/2018,Actors,@EmilyVanCamp,See you there! https://t.co/FFb7okCoE1 +03/26/2018,Actors,@EmilyVanCamp,Same! https://t.co/p2k1f25VKU +03/10/2018,Actors,@EmilyVanCamp,Brilliant album. One of my favorites ✨ The Miracle of Van Morrison’s “Astral Weeks” https://t.co/LiReAmADNz +02/25/2018,Actors,@EmilyVanCamp,"RT @cmclymer: Sooo... CNN released poll data a few hours ago that is pretty damn remarkable, and it's worth noting the highlights. + +First:…" +02/25/2018,Actors,@EmilyVanCamp,Amazing! 🙌🏼 https://t.co/T04hX5uqgg +02/24/2018,Actors,@EmilyVanCamp,"RT @rob_bennett: How quickly can we get @Emma4Change to surpass the @NRA in follower count? + +She’s 36,000 followers away. It’s 1PM. + +Let’…" +02/24/2018,Actors,@EmilyVanCamp,Remember This Week: It’s the Beginning of the End of the NRA’s Reign of Terror https://t.co/UDzhjdTJ7s +02/24/2018,Actors,@EmilyVanCamp,"RT @HeadCountOrg: After the shooting in #Parkland, FL, high school students around #America are getting organized and politically active. H…" +02/24/2018,Actors,@EmilyVanCamp,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/24/2018,Actors,@EmilyVanCamp,"Teachers are trained to TEACH, nurture their students, develop the minds of our future, create a safe environment o… https://t.co/O87Wy7puXj" +02/24/2018,Actors,@EmilyVanCamp,RT @BeauWillimon: Now @Emma4Change has passed the 400K mark. Another 60K in less than 24hrs. She’s on track to overtake the @NRA by the end… +02/09/2018,Actors,@EmilyVanCamp,RT @SethMacFarlane: The Trump legacy. https://t.co/VuJ690S0ug +02/08/2018,Actors,@EmilyVanCamp,Truly incredible to have been a part of this 🙏🏻 https://t.co/bvGLel1M8f +02/06/2018,Actors,@EmilyVanCamp,"RT @ArielleKebbel: 🚨 ALERT 🚨 Updated flyer w/ new contact numbers to call if you know anything about my sister Julia. Pls read, repost prin…" +02/06/2018,Actors,@EmilyVanCamp,RT @ArielleKebbel: 🚨 ALERT 🚨 My SiSTER Julia Kebbel is MISSING. Her Instagram and Twitter is @jkebbz pls go there to see more pictures of h… +01/22/2018,Actors,@EmilyVanCamp,I❤️U https://t.co/0vgnvsjAH5 +01/22/2018,Actors,@EmilyVanCamp,About to watch #TheResident with these beautiful people ✨ Truly a pleasure working with this group. Check it out on… https://t.co/NW8cSZTZAd +01/19/2018,Actors,@EmilyVanCamp,#TheResident https://t.co/hOp6ysetvV +01/18/2018,Actors,@EmilyVanCamp,#TheResident https://t.co/Euold06jTB +01/13/2018,Actors,@EmilyVanCamp,"RT @ResidentFOX: Never underestimate Nurse Nic Nevin. @EmilyVanCamp stars in #TheResident, premiering January 21. https://t.co/8ksM3T5OLE" +01/12/2018,Actors,@EmilyVanCamp,"RT @andersoncooper: A statement about #Haiti, a country I love and admire. I wanted to share it with you tonight, on the eve of the 8th ann…" +12/30/2017,Actors,@EmilyVanCamp,Help my buddy @joshadley in his initiative to distribute essential supplies to shelters and rough sleepers around t… https://t.co/3AEvbc60vZ +12/26/2017,Actors,@EmilyVanCamp,RT @DalaiLama: Karma means action and action motivated by compassion is good. To complain that what happens to you is just the result of yo… +12/15/2017,Actors,@EmilyVanCamp,"Let’s make it happen @Katysloane ! Every little bit counts. Please help in any way you can. Share, Retweet, Donate… https://t.co/JTTyFEgmZh" +12/14/2017,Actors,@EmilyVanCamp,New trailer for #TheResident January 21st on FOX https://t.co/FtqtYFkITM +12/08/2017,Actors,@EmilyVanCamp,#TheResident starts January 21st on FOX 💉 https://t.co/Yur6yvZk9I +12/02/2017,Actors,@EmilyVanCamp,"RT @MMFlint: 62 years ago today, Rosa Parks was arrested for refusing to move to the back of the bus & a revolution was ignited. Someday we…" +11/27/2017,Actors,@EmilyVanCamp,My scene partners for the week. I’ll take them all please. Thanks. ❤️ https://t.co/I4qKbsukGO +11/20/2017,Actors,@EmilyVanCamp,"RT @DalaiLama: We can change our minds. We don’t have to give in to anger and hatred. Since compassion and anger cannot co-exist, the more…" +10/28/2017,Actors,@EmilyVanCamp,Happy 6 years to my favorite human. Time really does fly when you're having fun 💕💕💕 https://t.co/Lia2kK8bt0 +10/15/2017,Actors,@EmilyVanCamp,Opinion | Sarah Polley: The Men You Meet Making Movies https://t.co/jUwe8NELgJ +10/09/2017,Actors,@EmilyVanCamp,"RT @NPRinskeep: Not “what we have done.” Not “what our military has done.” Not “what FEMA and first responders have done.” Instead, “what I…" +10/06/2017,Actors,@EmilyVanCamp,RT @Gabriel_Mann: After #LasVegas can someone pls explain the need for this anywhere..at anytime..for what purpose..to what end? https://t… +10/03/2017,Actors,@EmilyVanCamp,This. https://t.co/0uVdKXTLK8 +09/30/2017,Actors,@EmilyVanCamp,"RT @Lin_Manuel: You're going straight to hell, @realDonaldTrump. +No long lines for you. +Someone will say, ""Right this way, sir."" +They'll…" +09/30/2017,Actors,@EmilyVanCamp,"RT @ShaunKing: This is one of the most horrible, racist, despicable things Trump has ever said. + +That Puerto Ricans ""want everything to be…" +09/30/2017,Actors,@EmilyVanCamp,"RT @GeorgeTakei: In crisis, our true characters are revealed. + +Donald has shown his true self: narcissistic, petty, lacking in empathy, and…" +09/25/2017,Actors,@EmilyVanCamp,"RT @NYCMayorsOffice: We are accepting donations for: +🔘 Diapers +🔘 Baby food +🔘 Batteries +🔘 First aid supplies +🔘 Feminine hygiene products htt…" +09/25/2017,Actors,@EmilyVanCamp,Senate “hearing” on #GrahamCassidy today—call your Senators & make sure they HEAR you! #StandWithPP https://t.co/Jqv9YvqZtC #DoNoHarm +09/25/2017,Actors,@EmilyVanCamp,RT @wkamaubell: Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto Rico. Puerto… +09/25/2017,Actors,@EmilyVanCamp,"RT @NYGovCuomo: Stop arguing with football players + +Stop trying to take health care from the poor + +#PuertoRico needs our help https://t.co/…" +09/25/2017,Actors,@EmilyVanCamp,"RT @robreiner: With a non-existent POTUS, thank God we have an engaged citizenry who are willing to stand up or kneel to protect our democr…" +09/21/2017,Actors,@EmilyVanCamp,"RT @ASlavitt: The ultimate question on Graham-Cassidy. + +Feel free to share if it helps people. https://t.co/WS7Glwj5sw" +09/21/2017,Actors,@EmilyVanCamp,RT @jimmykimmel: If you too are disappointed in Sen @BillCassidy #GrahamCassidy let them know it - call (202) 224-3121 https://t.co/eswlh6B… +09/18/2017,Actors,@EmilyVanCamp,"RT @SenWarren: Let me repeat: The Graham-Cassidy @SenateGOP ""health care"" bill IS Trumpcare, & it will rip health care away from millions o…" +09/18/2017,Actors,@EmilyVanCamp,"RT @KamalaHarris: Just a reminder that this is the “health care” bill Republicans are trying to push through. We saved the ACA once, let’s…" +09/17/2017,Actors,@EmilyVanCamp,"RT @BeauWillimon: Today, on a Sunday, on #ConstitutionDay, @realDonaldTrump RTs this violent gif by a guy whose handle reads ""Fucked up min…" +09/16/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: Tomorrow: #ConfrontWhiteSupremacy will stand against the biggest alt-right gathering since Cville. In D.C. Info here http… +09/13/2017,Actors,@EmilyVanCamp,"RT @PreetBharara: A: Prosecute Comey, pardon Arpaio, excuse neo-Nazis, deport Dreamers, encourage Erdogan, laud Duterte, pet Putin. + +Q: Wh…" +09/10/2017,Actors,@EmilyVanCamp,"RT @michaelianblack: As a massive hurricane bears down on us, please remember that one American political party literally does not believe…" +09/08/2017,Actors,@EmilyVanCamp,RT @BarackObama: Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/06/2017,Actors,@EmilyVanCamp,RT @votevets: Thousands of patriotic #Dreamers who served our nation in uniform are at risk of deportation due to @realDonaldTrump's cruel… +09/05/2017,Actors,@EmilyVanCamp,RT @SenSanders: America is strongest when we come together and reject xenophobia. Congress must permanently protect Dreamers and reject Tru… +09/05/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: The fate of 800K #Dreamers & future of the nation we choose to be are at stake. Do your part to #DefendDACA today. Call.… +09/02/2017,Actors,@EmilyVanCamp,Unreal. A dedicated and honorable nurse simply trying to do her job is attacked and abused for it. This idiot bette… https://t.co/7h5sFO5mDU +08/31/2017,Actors,@EmilyVanCamp,And so it begins! ✨ https://t.co/hQJ7UkPnYi +08/29/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: NEW: Tweets about a wall while Houston drowns, pardons Arpaio. Trump's true racism: ""Make America WHITE Again"" https://…" +08/27/2017,Actors,@EmilyVanCamp,"RT @rob_bennett: The March To Confront White Supremacy: Charlottesville to D.C. + +Starts Monday and arrives in D.C.9/6. + +#Cville2DC +@cville…" +08/27/2017,Actors,@EmilyVanCamp,RT @BeauWillimon: CHARLOTTESVILLE to D.C. March starts Mon. Help spread the word. Use #Cville2DC. Tweet & RT to trend this. Be loud. https:… +08/26/2017,Actors,@EmilyVanCamp,RT @brianefallon: Trump has pardoned Arpaio right as he threatens to deport law-abiding young Dreamers who represent the best of America. S… +08/26/2017,Actors,@EmilyVanCamp,WHEN DOES IT STOP??? #CowardInChief https://t.co/qh0OgqHBTt +08/25/2017,Actors,@EmilyVanCamp,RT @PiperPerabo: #DenierInChief Hurricane Harvey is proof that Trump administration denial of climate change puts people in danger. #Denier… +08/25/2017,Actors,@EmilyVanCamp,RT @Alyssa_Milano: Anyone else have a story like this they'd like to share? Use the hashtag #DenierInChief https://t.co/mIIDPh1emy +08/25/2017,Actors,@EmilyVanCamp,Amazing news! Can't wait to work with you Melina✨✨ https://t.co/ipuE1fEmPQ +08/19/2017,Actors,@EmilyVanCamp,A cowardly and immoral group indeed. Shameful. https://t.co/z2ER4yRH6g +08/19/2017,Actors,@EmilyVanCamp,Meet Frankie B. our sweet little rescue pup who has stolen our hearts! Thanks @wagsandwalks for… https://t.co/Sx7e6deZ5k +08/18/2017,Actors,@EmilyVanCamp,Bye Bye Bannon ❌ https://t.co/ZYJ4rSYw0A +08/17/2017,Actors,@EmilyVanCamp,"RT @RepAdamSchiff: Mr. President, it's not the removal of statutes that's tearing the country apart, but the divisive way you lead and WH t…" +08/16/2017,Actors,@EmilyVanCamp,RT @AnneFrankCenter: TODAY IS A MORAL TEST. Who in Congress will say enough? Who will quit @POTUS councils? Who will have the courage to… +08/13/2017,Actors,@EmilyVanCamp,"RT @BarackObama: ""...For love comes more naturally to the human heart than its opposite."" - Nelson Mandela" +08/13/2017,Actors,@EmilyVanCamp,"RT @BarackObama: ""People must learn to hate, and if they can learn to hate, they can be taught to love...""" +08/12/2017,Actors,@EmilyVanCamp,RT @jk_rowling: Hell of a day for the President to forget how to tweet. https://t.co/ABffmwwH8D +08/12/2017,Actors,@EmilyVanCamp,"RT @JohnDingell: I signed up to fight Nazis 73 years ago and I'll do it again if I have to. + +Hatred, bigotry, & fascism should have no plac…" +08/12/2017,Actors,@EmilyVanCamp,RT @franklinleonard: White supremacist terrorist plows vehicle into American citizens. https://t.co/7srr32Gv1o +08/12/2017,Actors,@EmilyVanCamp,RT @SenSanders: The white nationalist demonstration in #Charlottesville is a reprehensible display of racism and hatred that has no place i… +08/05/2017,Actors,@EmilyVanCamp,Love this and miss you more @Gabriel_Mann !!! ❤️❤️❤️ https://t.co/0G9LdQI3QU +08/03/2017,Actors,@EmilyVanCamp,Amazing news @smashleybell 👏🏼👏🏼👏🏼 Congrats! ❤️ https://t.co/HwsUiutgeI +08/03/2017,Actors,@EmilyVanCamp,RT @gregorythesmith: We had a family reunion today. It was so nice seeing everyone. Thanks for brining us together @GBerlanti @RinaMimoun @… +08/02/2017,Actors,@EmilyVanCamp,Insane right? Hope you are well David!! Xoxo https://t.co/SgXWCR0x2r +08/02/2017,Actors,@EmilyVanCamp,So beautiful to reunite with @GBerlanti @RinaMimoun and the incredible cast of Everwood ❤️So much love for these gu… https://t.co/MmZLI8nX9k +08/01/2017,Actors,@EmilyVanCamp,Yes Gabe!! So excited to watch ❤️❤️❤️ https://t.co/qDlrLiEhXx +07/29/2017,Actors,@EmilyVanCamp,I’m wearing this #MyIntent bracelet for the #3890 tigers that desperately need our protection.… https://t.co/vrr5mtqsjl +07/28/2017,Actors,@EmilyVanCamp,"Help @TigerBeerUS & me protect the last 3,890 wild tigers by donating to @World_Wildlife https://t.co/NOGXH9wujA –… https://t.co/RUbdBvEerL" +07/22/2017,Actors,@EmilyVanCamp,Auntie Em and Ivy time 💜💜💜 Love hanging with this sweet girl #auntielove https://t.co/DXnhTutgzv +07/19/2017,Actors,@EmilyVanCamp,RT @JoyAnnReid: Says the man who locked every Democrat and all but 13 Republicans out of the room while plotting to delete 22 million peopl… +07/15/2017,Actors,@EmilyVanCamp,The original 6 💕 https://t.co/GmiKDgEzo6 +07/11/2017,Actors,@EmilyVanCamp,tylerhenrymedium has a true gift. So honored to have had the experience of reading with him on… https://t.co/PnqkjtH2HB +06/24/2017,Actors,@EmilyVanCamp,"RT @BarrySloane: Please read this thread. It's a hard read, read it regardless if you're Republican or Democrat because this #HealthcareBil…" +06/23/2017,Actors,@EmilyVanCamp,RT @BarackObama: Health care has always been about something bigger than politics: it's about the character of our country. https://t.co/Uq… +06/22/2017,Actors,@EmilyVanCamp,"URGENT:📣 Senate released #Trumpcare bill that ""defunds"" @PPFA. TWEET YOUR SENATORS NOW & tell them to #StandwithPP https://t.co/Ic4wkqSsW4" +06/20/2017,Actors,@EmilyVanCamp,"RT @SamuelLJackson: Ga Voters, get out there & VOTE OSSOFF!! The Future is now, make a Change!! You're our First Step on the Road to Recove…" +06/18/2017,Actors,@EmilyVanCamp,Happy Father's Day to the coolest dad around! Thanks for always putting us first and teaching us… https://t.co/h6Nhh4jvh8 +06/14/2017,Actors,@EmilyVanCamp,"RT @votevets: The Commander in Chief can block @VoteVets, the voice of 500k military veterans and families, but we will NOT be silenced. ht…" +06/13/2017,Actors,@EmilyVanCamp,Yup. https://t.co/ZTm3fgOgJh +06/02/2017,Actors,@EmilyVanCamp,https://t.co/THjkXCycza +06/02/2017,Actors,@EmilyVanCamp,https://t.co/ttCp5OWyko +05/25/2017,Actors,@EmilyVanCamp,"RT @jk_rowling: You tiny, tiny, tiny little man. + https://t.co/mP3mad6cMt" +05/25/2017,Actors,@EmilyVanCamp,RT @SenWarren: Breaking news: @realDonaldTrump's illegal & unconstitutional Muslim ban is still illegal & unconstitutional. +05/23/2017,Actors,@EmilyVanCamp,Beyond saddened by this horrible attack in Manchester. Sending all my love to the victims and their families. Truly heartbreaking.. +05/18/2017,Actors,@EmilyVanCamp,Me and my sis Ali riding in style..Those outfits though!! 😳 #tbt #80s #backintheday https://t.co/Dt3zYtYLei +05/18/2017,Actors,@EmilyVanCamp,Now is more important than ever to #StandWithPP. Thank you @JOSS Whedon for joining the fight. Please watch → https://t.co/djDAOCAjLi +05/17/2017,Actors,@EmilyVanCamp,Yes @MMFlint !!! https://t.co/AMITEet1nH +05/16/2017,Actors,@EmilyVanCamp,"RT @igorvolsky: One. Just one. + +Such cowards. https://t.co/O3foGbvsea" +05/16/2017,Actors,@EmilyVanCamp,RT @21CF: Cast members of @ResidentFOX attend the 2017 #FoxUpfront party in New York City last night: https://t.co/XIe8NkYk1n +05/16/2017,Actors,@EmilyVanCamp,"RT @ResidentFOX: We’re giving you a dose of drama. FOX’s new series, #TheResident, is coming soon. #FOXUpfront https://t.co/mGFW0txNT1" +05/15/2017,Actors,@EmilyVanCamp,On her wedding day in 1979 💛So lucky to call this amazing woman mom. Happy Mother's Day!! ✨✨✨ https://t.co/akErV4ZiBV +05/15/2017,Actors,@EmilyVanCamp,Happiest of birthdays to this beautiful soul! @gabriel_mann I adore you!!! Wishing you all good… https://t.co/qkfiOQG0un +05/14/2017,Actors,@EmilyVanCamp,Good times with @BarrySloane @Gabriel_Mann @smashleybell #ConnorPaulo #JoshBowman Best bday reunion ever ❤️#revenge… https://t.co/48xFuLGk3V +05/14/2017,Actors,@EmilyVanCamp,Love you babes!! 😘😘 https://t.co/0BeVePLx1n +05/11/2017,Actors,@EmilyVanCamp,❤️ https://t.co/8lzohgxJSq +05/10/2017,Actors,@EmilyVanCamp,Thanks Ali!!!! Cannot wait to be in the same city again!!! Love you ❤️ https://t.co/AyhyHhSH2T +05/10/2017,Actors,@EmilyVanCamp,And we're off!!! 👏🏼👏🏼👏🏼 Matt Czuchry-Emily VanCamp Drama The Resident Ordered to Series at Fox https://t.co/4uV9TuA9fZ via @TVLine +05/09/2017,Actors,@EmilyVanCamp,"My happy place 🌊🌼🌿 #grateful #nofilterneeded #bigsur @ Big Sur, California https://t.co/w6RtHUzGDA" +05/08/2017,Actors,@EmilyVanCamp,Well said @DebraMessing 👏🏼👏🏼Debra Messing goes after Ivanka Trump in scathing acceptance speech https://t.co/a3Qsd1h5TE # via @huffpostqueer +05/02/2017,Actors,@EmilyVanCamp,"RT @CecileRichards: Health care should be a right, not a privilege. TY @jimmykimmel for sharing your story so folks understand. https://t.c…" +05/02/2017,Actors,@EmilyVanCamp,RT @jimmykimmel: My wife and I welcome a new baby and it is quite a story... https://t.co/VTT0oBsRFK +05/02/2017,Actors,@EmilyVanCamp,#GregBaldwin so proud!! 😘😘 https://t.co/BfRi1ALCWI +04/21/2017,Actors,@EmilyVanCamp,glsenofficial Day of Silence is the largest student-led national event in protest of anti-LGBTQ… https://t.co/ohUZs6hGLY +04/19/2017,Actors,@EmilyVanCamp,Yes Ali!! I ❤U #flipthesixth https://t.co/rzUDgX5KG3 +04/18/2017,Actors,@EmilyVanCamp,RT @elizabethforma: .@realDonaldTrump & the GOP are in a panic that GA could pick a Rep who fights for working people – not the rich & powe… +04/18/2017,Actors,@EmilyVanCamp,"RT @PPact: Like many Americans, Courtney relies on Planned Parenthood for lifesaving health care. https://t.co/2L6VsBlRi2 #CancerSurvivors4…" +04/16/2017,Actors,@EmilyVanCamp,"RT @ACLU: Not sure your point, but just a reminder that there is a constitutional right to protest. https://t.co/u0PR60vd13" +04/14/2017,Actors,@EmilyVanCamp,US may launch strike if North Korea moves to test nuclear weapon: report https://t.co/OYMhMoeybn +04/14/2017,Actors,@EmilyVanCamp,"RT @Nick_Wechsler: Hey, @realDonaldTrump, @POTUS, please stop tweeting crazy shit about North Korea. You are, without hyperbole, going to s…" +04/14/2017,Actors,@EmilyVanCamp,What a horrible human. https://t.co/uzyW8kJ23e +04/12/2017,Actors,@EmilyVanCamp,California Dreamin' 🌊 https://t.co/9S0H5G4jUk +04/09/2017,Actors,@EmilyVanCamp,Sisters night out! Missing you @katewynne ❤❤❤ https://t.co/wmInEUj2jR +04/07/2017,Actors,@EmilyVanCamp,This beautiful crisp air is doing my soul some good! #springiscoming #hometown #famtime❤️ https://t.co/COI5pGopB7 +04/07/2017,Actors,@EmilyVanCamp,Snow day ❄️❄️❄️ https://t.co/AFrIQ7oj9D +03/17/2017,Actors,@EmilyVanCamp,Excited about this one!! --Emily VanCamp To Star In ‘The Resident’ Fox Medical Drama Pilot https://t.co/iObKWMnpuM via @deadline +03/10/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: NEW: Anybody remember what Trump did 9 days ago? He gave that ""presidential"" speech. That bullshit didn't age well http…" +03/09/2017,Actors,@EmilyVanCamp,Love this!! You still look the same! Great pic 😘❤@mabelbow1 https://t.co/oP0S0z8i7y +03/09/2017,Actors,@EmilyVanCamp,"The four women who are always there, who teach me strength and love everyday. Grateful for my… https://t.co/yrP0o2kp5x" +03/06/2017,Actors,@EmilyVanCamp,Quality time watching timeaftertimeabc with this crew ❤ #gowatch #famtime #timeaftertime https://t.co/RzLzjsYvf5 +03/05/2017,Actors,@EmilyVanCamp,Don't forget to check out #joshbowman and #freddiestroma on timeaftertimeabc at 9pm on ABC… https://t.co/sxHYpOkt23 +03/05/2017,Actors,@EmilyVanCamp,Beautiful day celebrating my favorite human. Happy Birthday to my love ❤ #deervalleyresort… https://t.co/zTJRgul6nA +02/25/2017,Actors,@EmilyVanCamp,Always lovely hanging with these guys! ❤ Still laughing @katysloane and @BarrySloane 😂😂 https://t.co/ofwHWey37d +02/21/2017,Actors,@EmilyVanCamp,https://t.co/xz7hC08FSN +02/21/2017,Actors,@EmilyVanCamp,RT @JuddApatow: And never forget this. This was how he spoke to someone he didn't know. Can you imagine how he speaks to friends. Does he… +02/21/2017,Actors,@EmilyVanCamp,Wise words..(though secretly I found myself waiting for the big reveal that @BarackObama is still president. And I… https://t.co/So0k8DKDP0 +02/19/2017,Actors,@EmilyVanCamp,"RT @ava: So, we shouldn't trust the press. And he wants to talk to Americans directly. Gotcha. Let's listen to his own words. https://t.co/…" +02/18/2017,Actors,@EmilyVanCamp,RT @TIME: TIME’s new cover: Inside Donald Trump's White House chaos https://t.co/hctIFEcOSG https://t.co/1hSQNrY6JQ +02/18/2017,Actors,@EmilyVanCamp,Miss you Tolga!! So much love to you ❤😘❤ https://t.co/wVEfL7ZpXa +02/16/2017,Actors,@EmilyVanCamp,"RT @ava: This needs to happen on EVERY lie. It's up to the press to do this EVERY time. Go hard, y'all. On EVERY lie. https://t.co/TGbishcD…" +02/15/2017,Actors,@EmilyVanCamp,My funny valentine 😊❤😊 https://t.co/HUx0Vo82AG +02/11/2017,Actors,@EmilyVanCamp,This. https://t.co/U8drUUBsZv +02/10/2017,Actors,@EmilyVanCamp,#tbt to my niece running free ❤ One of my fave photos of this little beauty! #auntielove… https://t.co/myOFcHU6ak +02/10/2017,Actors,@EmilyVanCamp,Pretty sure YOU are the biggest threat to this nation. Take a seat. You lost. Now get off twitter and get back to y… https://t.co/2dSVx6cXnN +02/09/2017,Actors,@EmilyVanCamp,Nice! https://t.co/xxB0WBAlSo +02/09/2017,Actors,@EmilyVanCamp,Yes UTA! Let's see more of this.#resist UTA Scraps Usual Oscar Party; Plans Rally For Refugees Instead https://t.co/z0JR7YpJO1 via @deadline +02/08/2017,Actors,@EmilyVanCamp,Just watched FENCES. Absolutely breathtaking performances by Viola Davis and Denzel Washington. The whole cast was flawless. Loved it❤ +02/08/2017,Actors,@EmilyVanCamp,This is beyond scary! -- Mitch Mcconnell cuts off Elizabeth Warren for criticizing Jeff Sessions https://t.co/QgAaI4jvrH # via @HuffPostPol +02/07/2017,Actors,@EmilyVanCamp,RT @SethMacFarlane: Betsy DeVos confirmed. What is also confirmed is that there is not one single man of courage in the Republican Congres… +02/07/2017,Actors,@EmilyVanCamp,RT @MMFlint: The Senate Republicans have just sent a big FU to the school children of America. Even the worst countries don't shit on their… +02/07/2017,Actors,@EmilyVanCamp,This is awful. Betsy DeVos ekes out confirmation as VP casts first tie-breaker for Cabinet post https://t.co/dMmWQo6jwP # via @HuffPostPol +02/07/2017,Actors,@EmilyVanCamp,Please check out this fundraiser: 'Reuben's Fight' https://t.co/lc6mOsLK9T +02/05/2017,Actors,@EmilyVanCamp,😂😂😂 https://t.co/kdH4EIEQqS +02/03/2017,Actors,@EmilyVanCamp,"RT @HuffingtonPost: Democrats see Pat Toomey as ""best option"" for sinking DeVos' confirmation https://t.co/8anHBKczHO https://t.co/BwRMD5xo…" +02/03/2017,Actors,@EmilyVanCamp,Buy Pat Toomey's Vote https://t.co/Fj5nDoe5Y7 +02/01/2017,Actors,@EmilyVanCamp,RT @KeithOlbermann: Show the networks and media how to NOT participate in propaganda from a man who wants to destroy them: DO. NOT. WATCH.… +01/31/2017,Actors,@EmilyVanCamp,"RT @Jason_Pollock: IMPORTANT ACTION: If you're in one of these states, call your senators asap. We MUST keep pushing to block Betsy Devos f…" +01/30/2017,Actors,@EmilyVanCamp,Voices from the women's march #wewontgoaway #lovewins ❤️ A film by @emmahollyjones https://t.co/L1Gt0aLHuE +01/29/2017,Actors,@EmilyVanCamp,"RT @WajahatAli: If you do support the #MuslimBan today, remember this: you will be remembered as the villains of our children's history boo…" +01/29/2017,Actors,@EmilyVanCamp,Thank you @JustinTrudeau for reminding us that real and compassionate leadership still exists. Take note… https://t.co/ZA0pJ8hhIH +01/28/2017,Actors,@EmilyVanCamp,"I see you. I support you. #LGBTQ students, you are loved. https://t.co/ZGCZSVHVy1 #KindnessInAction" +01/26/2017,Actors,@EmilyVanCamp,"RT @KeithOlbermann: He's literally not sane. How do you explain, calmly, to a Trump supporter, that thus he must resign? I tried: https://t…" +01/26/2017,Actors,@EmilyVanCamp,"RT @jonfavs: Republicans take control of Washington, and immediately charge taxpayers at least $14 billion for a concrete wall. Good voting…" +01/26/2017,Actors,@EmilyVanCamp,I certainly hope so.... or you could just resign? https://t.co/5U6Mm4asj7 +01/25/2017,Actors,@EmilyVanCamp,Following! https://t.co/2JuzgZbM9P +01/23/2017,Actors,@EmilyVanCamp,"RT @MMFlint: Rule #1: Never acknowledge to the protesters that u ""watched"" them & that they ""got"" to you. So, thank u 4 helping to organize…" +01/22/2017,Actors,@EmilyVanCamp,RT @MattMcGorry: 2day we march w women of the world 2 support their power & remember that Democracy is built 1 footstep at a time #WomensMa… +01/22/2017,Actors,@EmilyVanCamp,When love and resistance meet ❤️ #womensmarch #LoveWins https://t.co/HbKxHLPTm5 +01/21/2017,Actors,@EmilyVanCamp,No better way to protest than with a dance party! #WomensMarch #peacefulprotests #Lovewins https://t.co/kAUtUiZn10 +01/21/2017,Actors,@EmilyVanCamp,Yup. https://t.co/ds0Hjo4AGp +01/21/2017,Actors,@EmilyVanCamp,#feminists https://t.co/OVWoueDtLi +01/21/2017,Actors,@EmilyVanCamp,Love. Trumps. Hate. ❤️#womensmarch #lovetrumpshate #LoveWins https://t.co/e0UZs4jYRJ +01/21/2017,Actors,@EmilyVanCamp,Let's do this people! 💃🏼💃🏼💃🏼 https://t.co/lwGVhBK75k +01/21/2017,Actors,@EmilyVanCamp,All laughs all day with this crew.. just what the doctor ordered ❤️ thanks @unistudios and… https://t.co/97dwIwQz8b +01/21/2017,Actors,@EmilyVanCamp,Agreed. Thanks for such a lovely time! @UniStudios @smashleybell @tolga_safer @IddoG https://t.co/7oiSwt2c8L +01/20/2017,Actors,@EmilyVanCamp,#tbt to this magical day in one of my favorite places. Tomorrow will be a difficult day for many… https://t.co/Yo0V2b8E0P +01/19/2017,Actors,@EmilyVanCamp,RT @HuffingtonPost: Trevor Noah eviscerates Betsy DeVos over her confirmation hearing https://t.co/YHgARdumzm https://t.co/Ez21XhbWVI +01/19/2017,Actors,@EmilyVanCamp,https://t.co/q9JZOTd6sG +01/19/2017,Actors,@EmilyVanCamp,If you are in L.A. join us!! Time to get organized and stand up. For everyone else around the world who are doing t… https://t.co/8DwyAk0UpR +01/19/2017,Actors,@EmilyVanCamp,Emily Thorne would approve too. Now go watch people! #SIX @BarrySloane https://t.co/3jegu2xF9i +01/19/2017,Actors,@EmilyVanCamp,RT @BarrySloane: #SIX premiere night! We will be LIVE #tweeting #eastcoast at 10/9c on @history Can't wait for you to meet my #six family.… +01/19/2017,Actors,@EmilyVanCamp,Check out my buddy @BarrySloane on his awesome new show #SIX tonight! https://t.co/DGdd3UutiH +01/16/2017,Actors,@EmilyVanCamp,✨🙏🏻✨ https://t.co/3cwOcNaxnS +07/02/2018,Actors,@Gabriel_Mann,"RT @langston_poems: Tomorrow +Is another +Page." +07/02/2018,Actors,@Gabriel_Mann,..mad love backatcha Ash x https://t.co/b4aZjOwY9S +07/02/2018,Actors,@Gabriel_Mann,RT @RevengeBrCom: #VanMann ❤️ https://t.co/jlG2oLruby +07/01/2018,Actors,@Gabriel_Mann,#8X8 @revenge revival..? ;) @ABCNetwork ❌ @EmilyVanCamp @smashleybell @Nick_Wechsler #JoshBowman #MikeKelley… https://t.co/eyfVIJ0hsX +05/15/2018,Actors,@Gabriel_Mann,Huge thanks for the HBD love 🎈XG +01/02/2018,Actors,@Gabriel_Mann,#newyear #newmusic #anthem #2018 - dont sleep on the new @Franz_Ferdinand / 'always ascending' (Official Video)… https://t.co/AU1cly1kJx +01/02/2018,Actors,@Gabriel_Mann,happy new year #2018 ☄️ https://t.co/4YgwgaSDuE +12/29/2017,Actors,@Gabriel_Mann,RT @DamnationTV: Creeley knows better than to get too comfortable. #DamnationTV https://t.co/T8J9U3aogI +12/29/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: The Hunting Party +#buckleup https://t.co/AXDagNzGag" +12/28/2017,Actors,@Gabriel_Mann,RT @TSElibot: I have measured out my life with coffee spoons +12/28/2017,Actors,@Gabriel_Mann,lets go hunting @TheRealElemgy @Zach_McGowan @Nicholsondk @DamnationTV #DamnationTV @USA_Network https://t.co/5fzxc3mb09 +12/28/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9C @DamnationTV EP7 @USA_Network @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/kNDSBadlgw +12/28/2017,Actors,@Gabriel_Mann,"RT @BradleyStryker: Tonight 10/9c, and for the next 4 weeks, you’ll get very familiar with this crew #damnationtv #usanetwork #nbcuniversal…" +12/27/2017,Actors,@Gabriel_Mann,RT @IndieWire: 20 Rising Female Filmmakers You Need to Know: https://t.co/g8Ki5NdZnX https://t.co/1zMudcQlNn +12/27/2017,Actors,@Gabriel_Mann,RT @TEDTalks: 10 reasons to love — and support — our teachers: https://t.co/kjglWg3S4Z +12/25/2017,Actors,@Gabriel_Mann,#MerryChristmasEve thanks for all the holiday cheer..be safe..be kind..spread love 2018 ✌🏼⭐️ XG https://t.co/IBflPDl9Hj +12/22/2017,Actors,@Gabriel_Mann,"RT @tvserieshub: #DamnationTV is one of TV Series Hub's favorite new shows of 2017! +Enjoy a new episode starting right now!! + +Check out our…" +12/21/2017,Actors,@Gabriel_Mann,RT @Dazed: How Buddhist chanting with @Courtney Love changed my life: https://t.co/yWuxvP9nLU https://t.co/Lx31kbc9Vx +12/21/2017,Actors,@Gabriel_Mann,RT @chefjoseandres: We served the @NationalGuard in Puerto Rico and again we are side by side in California providing hot meals twice a day… +12/21/2017,Actors,@Gabriel_Mann,"RT @Yeats_Quotes: Have we not everything that life can give +In having one another?" +12/21/2017,Actors,@Gabriel_Mann,go go S2 #Cardinal x KV @karinevanasse https://t.co/2Mtkn2JZp0 +12/21/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9c EP6 @DamnationTV @USA_Network @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/adQrGkh6bz +12/21/2017,Actors,@Gabriel_Mann,Tonite @DanDonohue3 #DamnationTV @USA_Network ;) #CalvinRumple@ @DamnationTV https://t.co/5hfdFfsVWr +12/21/2017,Actors,@Gabriel_Mann,"RT @CovHousePrez: This Christmas season, let's make our most radical response to darkness a heart of gratitude for all that lifts us up, al…" +12/18/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/PEH9mdNJh4 +12/15/2017,Actors,@Gabriel_Mann,#DamnationTV starts now. Enjoy #MartinEggersHydePhD @USA_Network @DamnationTV https://t.co/Ue1QLcdGLa +12/15/2017,Actors,@Gabriel_Mann,agreed..#SarahJones too. if only so they could experience the appreciation of this show’s super engaged viewers and… https://t.co/CEsjLso0AE +12/15/2017,Actors,@Gabriel_Mann,privilege to work with this cast/crew..everyone giving 150% every day on set and behind the scenes. the creativity… https://t.co/LHypuSoCqA +12/15/2017,Actors,@Gabriel_Mann,"RT @tonytost: Tonight’s episode of #DamnationTV features WWE superstar Luke Harper, a Gillian Welch song, a soothsayer named Tiresias, and…" +12/15/2017,Actors,@Gabriel_Mann,RT @DanDonohue3: Calvin Rumple... #DamnationTV https://t.co/kepr3YbPM7 +12/15/2017,Actors,@Gabriel_Mann,#Connie @MelindaPageHam 👏🏼 #DamnationTV https://t.co/fuqHEzLU7F +12/15/2017,Actors,@Gabriel_Mann,YES @chastenharmon #DamnationTV @USA_Network https://t.co/DsMAfonrgm +12/15/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: ""When you turn on the TV to watch the show... you're going in for an experience and every moment matters."" + +Don't miss Sa…" +12/15/2017,Actors,@Gabriel_Mann,gather the flock TONITE 10/9c @DamnationTV @USA_Network #DenOfLostSouls @TheRealElemgy @chastenharmon @CHeyerdahl… https://t.co/dlywda6OW7 +12/14/2017,Actors,@Gabriel_Mann,RT @EmLGee: @Gabriel_Mann @DamnationTV @USA_Network @TheDamnedFlock It looks like #MartinEggersHydePhD is headed back on the path to #Damna… +12/14/2017,Actors,@Gabriel_Mann,RT @WWE: Go behind the scenes of @LukeHarperWWE's appearance on @USA_Network's @DamnationTV TONIGHT at 10/9c! https://t.co/Ftr9v7Iina +12/14/2017,Actors,@Gabriel_Mann,thx sir wechs..much love https://t.co/u4UeIBgocz +12/14/2017,Actors,@Gabriel_Mann,only thing missing is you @ElleSatine ..crossover? #DamnationTV x #TheGifted https://t.co/9j9K0V6Kx4 +12/14/2017,Actors,@Gabriel_Mann,Back on the path to @DamnationTV TONITE 10/9c : EP5 #DenOfLostSouls @USA_Network @TheDamnedFlock… https://t.co/ctQGskJCPP +12/14/2017,Actors,@Gabriel_Mann,RT @tonytost: A Spotify playlist for #DamnationTV fans: BESSIE LOUVIN'S RECORD COLLECTION https://t.co/HqqHXLEoDx +12/14/2017,Actors,@Gabriel_Mann,"RT @netflix: We’re disappointed in the decision to gut #NetNeutrality protections that ushered in an unprecedented era of innovation, creat…" +12/14/2017,Actors,@Gabriel_Mann,RT @priincess_exe: I've seen far too many people saying their goodbyes assuming the FCC vote on #NetNeutrality is the end-all - be-all. It… +12/14/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: The carnival is sure to bring smiles and good times to the people of Holden, right? + +An all-new #DamnationTV begins tonig…" +12/14/2017,Actors,@Gabriel_Mann,"RT @danielletbd: #NetNeutrality +1. Go to https://t.co/sBQAJQWeRw +2. Click on the 17-108 link +2. Click on ""+express"" +3. Hit ""ENTER"" after y…" +12/14/2017,Actors,@Gabriel_Mann,RT @EmilyVanCamp: New trailer for #TheResident January 21st on FOX https://t.co/FtqtYFkITM +12/13/2017,Actors,@Gabriel_Mann,"RT @Policy: We, at Twitter, believe that #NetNeutrality is key to free expression, innovation & public safety. Tomorrow is a critical day f…" +12/13/2017,Actors,@Gabriel_Mann,"RT @iamvbs: nw Netflix's #Dark + +The distinction between the past, present and future is nothing but an illusion. +Yesterday, today and tomor…" +12/13/2017,Actors,@Gabriel_Mann,"RT @Lin_Manuel: YOOOOOOOOOOOO dropping 280 for this... +Let’s bring 10k gifts to kids in 🇵🇷 this holiday season! +@toysrus will deliver ‘em…" +12/13/2017,Actors,@Gabriel_Mann,RT @RealDebKaplan: I wasn't nominated for a Golden Globe but the cashier at Vons just loaned me her club card and I saved $19.83 so I have… +12/12/2017,Actors,@Gabriel_Mann,Love Is All We Have Left @U2 https://t.co/f4KrFLZr6M +12/11/2017,Actors,@Gabriel_Mann,"RT @openculture: Watch ""The ""Art of Flying,"" a Short Film Capturing the Wondrous Murmurations of the Common Starling https://t.co/YxN4F0dJb…" +12/11/2017,Actors,@Gabriel_Mann,"RT @irmadesmond: ""I think it would be discourteous to remake 'All About Eve' while I am alive... But after I'm gone, I'd like to look down,…" +12/11/2017,Actors,@Gabriel_Mann,RT @nowthisnews: Here's how you can use your holiday shopping to help Puerto Rico https://t.co/4JhqTedjZo +12/10/2017,Actors,@Gabriel_Mann,"RT @amnesty: Love. +Courage. +Passion. +Passion. +Passion. + +Happy #HumanRightsDay! https://t.co/35siygixzN" +12/10/2017,Actors,@Gabriel_Mann,RT @Pinter_Quotes: I can't really articulate what I feel. +12/10/2017,Actors,@Gabriel_Mann,"RT @openculture: Giant Clown Sings a Creepy Cover of Radiohead's “Creep"" https://t.co/1rwlWGebxu https://t.co/7Oo3QYo8VY" +12/10/2017,Actors,@Gabriel_Mann,"pleasure was mine, grateful to bring awareness thanks to @DilshadVadsaria https://t.co/6t6ZaNTShy" +12/10/2017,Actors,@Gabriel_Mann,RT @muldersfish: I feel so called out right now. https://t.co/zI3HoVApb9 +12/09/2017,Actors,@Gabriel_Mann,@brwneyesnbama I’m open to intelligent discussions but the video is literally right there..did you take the time to… https://t.co/5T97rUmeoV +12/09/2017,Actors,@Gabriel_Mann,aww shucks #NolanRoss https://t.co/TgCFHLZFOq +12/09/2017,Actors,@Gabriel_Mann,"RT @NatGeo: ""When scientists say bears are going extinct, I want people to realize what it looks like,"" says photographer Paul Nicklen http…" +12/09/2017,Actors,@Gabriel_Mann,can. not. wait. x https://t.co/PtWBz9MwnD +12/08/2017,Actors,@Gabriel_Mann,"RT @DalaiLama: Peace in the world depends on peace within. If we have that we can approach problems in a spirit of compassion, dialogue and…" +12/08/2017,Actors,@Gabriel_Mann,RT @andmichaelgreen: Somewhere on Twitter lurks #EmilyBrowning under an alias she has told no one not even her dog. So join me in wishing h… +12/08/2017,Actors,@Gabriel_Mann,@brwneyesnbama i wish it were +12/08/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/omdXc7IWAE +12/08/2017,Actors,@Gabriel_Mann,RT @TheFixGym: #GetYourselfFree https://t.co/oXNIgjWuEN +12/08/2017,Actors,@Gabriel_Mann,blown away by all the actors. casting is pitch perfect. top notch direction/production/writing. one of the best sho… https://t.co/RP8MzEvJxX +12/07/2017,Actors,@Gabriel_Mann,#SaveNetNeutrality https://t.co/B4FpcRXua4 +12/07/2017,Actors,@Gabriel_Mann,@appifanie Appreciate that ! ✌🏼 +12/07/2017,Actors,@Gabriel_Mann,Doesn’t matter how you spell it once it’s gone. Save #NetNeutrality #NetNuetrality https://t.co/3jomryNbDB +12/07/2017,Actors,@Gabriel_Mann,RT @mang0ld: You can call him crazy. You can also call him kind. https://t.co/P8Dt4ryBeu +12/06/2017,Actors,@Gabriel_Mann,RT @ava: Proud to stand with these talented directors. Many studios have not one woman on their upcoming slate. Props to @Disney. Three at… +12/06/2017,Actors,@Gabriel_Mann,"RT @rosariodawson: Blessings and thanks to all the volunteers and especially the firefighters risking their lives to protect people, nature…" +12/06/2017,Actors,@Gabriel_Mann,"RT @TheEllenShow: If you live anywhere in Southern California, your life is being impacted by the fires today. Please be careful and make r…" +12/06/2017,Actors,@Gabriel_Mann,RT @BarrySloane: Hard time of the year for a lot of folks.. Hotline 800-273-TALK (8255). A simple copy and paste might save someone's life.… +12/04/2017,Actors,@Gabriel_Mann,"RT @THR: On the topic of dealing with fear as an actor, Dafoe discussed how confronting the unknown can bring about ""courage"" https://t.co/…" +12/02/2017,Actors,@Gabriel_Mann,"RT @Rumi_Quote: Wealth has nothing constant, It comes in the morning and is gone at night. Have self-restraint, for patience is the key." +12/02/2017,Actors,@Gabriel_Mann,"RT @edgarwright: Among the many things 'The Shape Of Water' should be applauded for, is the chance for the amazing Sally Hawkins to shine s…" +12/02/2017,Actors,@Gabriel_Mann,"RT @TSElibot: History has many cunning passages, contrived corridors and issues, deceives with whispering ambitions, guides us by vanities.…" +12/01/2017,Actors,@Gabriel_Mann,RT @dark_shark: Project C-90: The Ultimate Audiotape Guide #cassette #recording #technology https://t.co/NX3UyoDMI2 https://t.co/dCfQp53ZGq +11/30/2017,Actors,@Gabriel_Mann,high praise..credit 95% @revenge costume guru @JillOhanneson / 5% actor input ❌ https://t.co/MGt4hORvxt +11/28/2017,Actors,@Gabriel_Mann,"RT @DilshadVadsaria: Thank u my generous friend @Gabriel_Mann for making this happen. You’re one of a kind. + +Revengers! Help me auction off…" +11/28/2017,Actors,@Gabriel_Mann,"RT @DilshadVadsaria: THE AUCTION IS LIVE! +Thank you to my amazing friend @dmorey & @HoustonRockets for your generous donation of this sign…" +11/27/2017,Actors,@Gabriel_Mann,RT @TSElibot: The end of all our exploring will be to arrive where we started and know the place for the first time. +11/24/2017,Actors,@Gabriel_Mann,RT @DalaiLama: What is important is not so much how long you live as whether you live a meaningful life. This doesn’t mean accumulating mon… +11/23/2017,Actors,@Gabriel_Mann,RT @InsightLA: Happy #Thanksgiving for all of us @Insight<<<<<<>>>>>>A Simple Mindful Practice to Ground You in Gratitude https://t.co/x3D8… +11/23/2017,Actors,@Gabriel_Mann,"RT @eveewing: Love to everyone who wants to be with their family this week, but can’t. Love to those for whom “home” is not a safe or welco…" +11/23/2017,Actors,@Gabriel_Mann,RT @nytimes: Just in case you bump into the one who got away this Thanksgiving Eve https://t.co/JqYCDCYBad +11/23/2017,Actors,@Gabriel_Mann,"RT @JohnJpshanley: There’s a Thanksgiving table. At it sit the living and the dead. They join hands, feeling the bond. My mother and father…" +11/23/2017,Actors,@Gabriel_Mann,RT @fairuza: Simple beauty https://t.co/k8X1Do3GGd +11/22/2017,Actors,@Gabriel_Mann,RT @InsightLA: Train Your Brain to Tame Holiday Stress and Anxiety https://t.co/I0iMunFUEK via @MindfulOnline +11/22/2017,Actors,@Gabriel_Mann,RT @IosrscIub: WHY IS THIS THE ONLY BULLSHIT I CAN LAUGH AT ANYMORE I CANT BREATHE https://t.co/GwOes0bPj0 +11/22/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/sMyB7rhVZn +11/21/2017,Actors,@Gabriel_Mann,yes please https://t.co/icQ26hMmHt +11/21/2017,Actors,@Gabriel_Mann,RT @cassianelwes: Please tell any female directors you know in college to opt in to @horizonaward for the chance to come to Sundance for me… +11/21/2017,Actors,@Gabriel_Mann,RT @DailyKerouac: All that old road of the past unreeling dizzily as if the cup of life had been overturned and everything gone mad. +11/21/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: We all have our time machines. Some take us back, they're called memories. Some take us forward, they're called dreams. +-J…" +11/21/2017,Actors,@Gabriel_Mann,RT @Mikel_Jollett: This is the coolest thing I've ever seen. https://t.co/5NhkbZdtTC +11/20/2017,Actors,@Gabriel_Mann,"RT @demiurge_ous: @Gabriel_Mann @ElleSatine Thank you for portraying the characters who are kind, complex, fluid, and committed when it com…" +11/20/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/rcTjU5ZGFo +11/20/2017,Actors,@Gabriel_Mann,"RT @edgarwright: If '2001: A Space Odyssey' is playing on 70mm, I'm going. Saw it again at the Egyptian. It remains, the ultimate trip. htt…" +11/20/2017,Actors,@Gabriel_Mann,RT @openculture: Consider it addition through subtraction. https://t.co/hXbDY0ee0a +11/20/2017,Actors,@Gabriel_Mann,#Flashback ace nite @erdem dinner x @chateau_marmont w the whip smart #EmilyBrowning @voguemagazine #LisaLove https://t.co/GtvwlmncNF +11/20/2017,Actors,@Gabriel_Mann,RT @FallonTonight: Every audition ever... https://t.co/dSHyMLS009 +11/20/2017,Actors,@Gabriel_Mann,always felt fortunate to contemplate a moment w @ElleSatine #revenge https://t.co/RtfM3gkwcv +11/20/2017,Actors,@Gabriel_Mann,many thanks..you sir are one of my all time acting heroes..cheers LH 🙌🏼 https://t.co/Az6dMqmm44 +11/18/2017,Actors,@Gabriel_Mann,"RT @FastCoIdeas: The world could run *entirely* on wind, solar, and hydro power by 2050—if that's what we really wanted: https://t.co/Rti8B…" +11/17/2017,Actors,@Gabriel_Mann,RT @DalaiLama: I don’t like formality. There’s no formality when we’re born and none when we die. In between we should treat each other as… +11/17/2017,Actors,@Gabriel_Mann,"RT @TheEllenShow: Please retweet & use #BeKindToElephants, and for everyone who does, we’ll make a donation to The David Sheldrick Wildlife…" +11/17/2017,Actors,@Gabriel_Mann,RT @nytimes: An Earth-sized planet about 11 light-years from Earth could hold liquid water and conditions favorable for life https://t.co/8… +11/16/2017,Actors,@Gabriel_Mann,RT @yashar: That tusk belongs to her mama and no one else...and it's not a partisan statement to say that. https://t.co/mewmOE5zUh +11/16/2017,Actors,@Gabriel_Mann,RT @NietzscheQuotes: We hear only those questions for which we are in a position to find answers. #Nietzsche +11/16/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/RlMZJoUiz1 +11/16/2017,Actors,@Gabriel_Mann,was and always will be a pleasure my friend..class act all the way. big cheers NJL https://t.co/RAqCUT7imQ +11/15/2017,Actors,@Gabriel_Mann,"RT @againststream: We invite you to take a moment to be present. + +Feel where your body meets your seat. Feel where your breath meets your…" +11/15/2017,Actors,@Gabriel_Mann,RT @TEDTalks: These heroic chefs fed 2 million meals to hungry people in Puerto Rico after Hurricane Maria. #ChefsForPuertoRico @chefjosean… +11/15/2017,Actors,@Gabriel_Mann,😉 https://t.co/irCrgmgHdu +11/15/2017,Actors,@Gabriel_Mann,#WhichSideAreYouOn EP2 @DamnationTV @USA_Network starts now #EastCoast #DamnationTv https://t.co/87ATMDWNU0 +11/15/2017,Actors,@Gabriel_Mann,love watching you two do what you do @TheRealElemgy @chastenharmon #DamnationTV https://t.co/INsuVV0GGy +11/15/2017,Actors,@Gabriel_Mann,"RT @tonytost: New episode of #DamnationTV tonight on USA at 10 pm/9 central. Episode 102: ""Which Side Are You On?"" Directed by the great Ad…" +11/15/2017,Actors,@Gabriel_Mann,working w the brilliant costume designer @Jerianadesign was a gift in itself. sheer genius. she raises the bar ever… https://t.co/0LxYsxV9Us +11/14/2017,Actors,@Gabriel_Mann,TONITE..we are all headed to @DamnationTV - @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler… https://t.co/FXGntl3eov +11/12/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/26xVWmmzie +11/08/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/a7kDXNclMY +11/08/2017,Actors,@Gabriel_Mann,Next Tues.. - @DamnationTV @USA_Network - EP2 - Which Side Are You On / This Season - Promo https://t.co/rUnjLRK4Ey via @YouTube +11/08/2017,Actors,@Gabriel_Mann,Let’s give Chas a warm twitter welcome back from 2012 😉 amazing job tonite @DamnationTV btw x https://t.co/0Dl3aKSbg1 +11/08/2017,Actors,@Gabriel_Mann,follow @USA_Network #DamnationTV Cast: @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler… https://t.co/1NdBQm6g7O +11/08/2017,Actors,@Gabriel_Mann,congrats on the @DamnationTV premiere tonite @TheRealElemgy @MelindaPageHam @chastenharmon @JpAdler @DanDonohue3… https://t.co/H7PbCsqSIb +11/08/2017,Actors,@Gabriel_Mann,so privileged to be a small part of the epic 30s depression era saga @tonytost created in @DamnationTV ..you may ha… https://t.co/hKI5Ia92pI +11/08/2017,Actors,@Gabriel_Mann,"RT @tonytost: I'm thrilled to have #DamnationTV out in the world tonight. It's a weird, bloody love letter to America. I hope folks have fu…" +11/08/2017,Actors,@Gabriel_Mann,RT @DilshadVadsaria: Cooking up something Revengey with this doll for @RoomtoRead. Can’t wait to share! @Gabriel_Mann #love #dogood #positi… +11/07/2017,Actors,@Gabriel_Mann,"RT @RockTheVote: #ElectionDay is today & if you face any problems at the polls, or have questions, @866OURVOTE has your back! https://t.co/…" +11/07/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/6ZSzsSyesJ +11/06/2017,Actors,@Gabriel_Mann,I’ve got plenty of ‘thoughts’ about politicians who offer ‘prayers’ but NO action to prevent or rectify #texas 💔 https://t.co/9qdWerFSm4 +11/06/2017,Actors,@Gabriel_Mann,RT @missipyle: Love is the only thing left that means anything. its the only currency we have left. +11/05/2017,Actors,@Gabriel_Mann,"RT @Yeats_Quotes: I see my life go drifting like a river +From change to change; I have been many things –" +11/05/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/ITjdBXUzr0 +11/05/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: “Men do change, and change comes like a little wind that ruffles the curtains at dawn, and it… https://t.co/fcKOyIxcwW" +11/04/2017,Actors,@Gabriel_Mann,RT @JoshPherigo: Watching people return this dropped hat at the parade today was unreasonably thrilling https://t.co/1ghfUJsItw +11/04/2017,Actors,@Gabriel_Mann,RT @attn: States are ditching daylight savings because it has no benefits. https://t.co/ytCvNGwc8w +11/04/2017,Actors,@Gabriel_Mann,RT @konstruktivizm: Dali https://t.co/ahg3Vc47t7 +11/04/2017,Actors,@Gabriel_Mann,RT @bymarktwain: Action speaks louder than words but not nearly as often. #MarkTwain +11/04/2017,Actors,@Gabriel_Mann,RT @Watching: This month will feature an especially impressive lineup of new TV shows https://t.co/kuDT2to4aI +11/04/2017,Actors,@Gabriel_Mann,ladies and gents meet #SarahJones..literally killing it in @DamnationTV @USA_Network - Nov 7th https://t.co/ZeImzQesrR +11/04/2017,Actors,@Gabriel_Mann,RT @DanDonohue3: Proud to be a part of this brilliant new show! https://t.co/T9u7zZyap4 +11/04/2017,Actors,@Gabriel_Mann,"RT @TheRealElemgy: “Now we know. We dare to understand. Truly. Truly, the past was a dream. But this, this is… https://t.co/9lHrXN1W3b" +11/04/2017,Actors,@Gabriel_Mann,"RT @Nicholsondk: What a treat to get to work on this exciting new show. All talent and hard work, no ego. https://t.co/eNJ1pc3YES" +11/04/2017,Actors,@Gabriel_Mann,RT @tonytost: Really enjoyed talking Damnation. https://t.co/HNHbOWczZo +11/04/2017,Actors,@Gabriel_Mann,RT @BradleyStryker: “The only thing we have to fear is fear itself.” - FDR #damnationtv #comingsoon #usanetwork… https://t.co/IJjwGyIJls +11/04/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: Man’s world? Think again. + +Make sure you’re ready for @USA_Network’s newest drama #DamnationTV, premiering November 7. ht…" +11/04/2017,Actors,@Gabriel_Mann,"RT @FastCoIdeas: Humankind is now the strongest force shaping the planet, as you've probably noticed. https://t.co/ooYq9VtyN9" +11/04/2017,Actors,@Gabriel_Mann,. @TheRealElemgy @chastenharmon @MelindaPageHam @CHeyerdahl @JpAdler @DanDonohue3 @Paul_Rae @BradleyStryker… https://t.co/srFUbH3Zrq +11/04/2017,Actors,@Gabriel_Mann,"RT @MindPodNetwork: Taurus Full Moon +https://t.co/fr5xyqFlBK https://t.co/hPxX7v9Hvw" +11/04/2017,Actors,@Gabriel_Mann,"RT @PatieAzelot: Some people arrive and make such a great impact on your life,that you can barely remember what life was without them.#reve…" +11/04/2017,Actors,@Gabriel_Mann,all day long https://t.co/6EL7S6XSQ3 +11/03/2017,Actors,@Gabriel_Mann,"RT @DamnationTV: The past can't stay hidden forever - and it won't. + +#DamnationTV begins November 7 on @USA_Network. https://t.co/Z1OzFq6Jja" +11/03/2017,Actors,@Gabriel_Mann,RT @DalaiLama: The most crucial use of knowledge and education is to understand the importance of developing a good heart. +11/03/2017,Actors,@Gabriel_Mann,RT @jes_chastain: Can #RobinWright just be the lead of @HouseofCards now? We're ready for it. +11/03/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/p3tdkSNl41 +11/02/2017,Actors,@Gabriel_Mann,RT @DebraMessing: ENROLLMENT STARTS TODAY!!! #ACA https://t.co/HGmD0xtcCY +11/01/2017,Actors,@Gabriel_Mann,RT @tinybuddha: Perfectionism can be so paralyzing. We don't have to be the best at everything we do. We just have to show up & try. https:… +11/01/2017,Actors,@Gabriel_Mann,RT @Nick_Wechsler: I stopped dressing up for Halloween when I could afford my own candy. https://t.co/GSsozU7dVO +10/31/2017,Actors,@Gabriel_Mann,"RT @michaelianblack: Glad New York Halloween parade is continuing. Go be fabulous, NYC." +10/31/2017,Actors,@Gabriel_Mann,NY💧❤️✊🏼 https://t.co/wf697eufXE +10/31/2017,Actors,@Gabriel_Mann,if u missed the #JosieAndThePussycats reunion concert w @kayhanley ENJOY @RealDebKaplan @HarryElfont @RachaelLCook… https://t.co/VWK9pHTccB +10/31/2017,Actors,@Gabriel_Mann,"RT @NASA: Happy Halloween! This jack-o-lantern is 🔥…literally! It’s our Sun in 2014, w/ active regions on its surface https://t.co/2R2y25Zf…" +10/31/2017,Actors,@Gabriel_Mann,RT @azrielshields: Happy Halloween! https://t.co/4idyF9p2Gm +10/31/2017,Actors,@Gabriel_Mann,"RT @NOWNESS: ""Under severe weather conditions, life does not necessarily make any sense."" – A lo-fi portrait of an Arctic town: https://t.c…" +10/31/2017,Actors,@Gabriel_Mann,"RT @NewYorker: A Halloween-themed cover by Harry Bliss, from 1999: https://t.co/9GBLvw6V9c https://t.co/ZWfmYOPRxV" +10/31/2017,Actors,@Gabriel_Mann,@megumi0309 Tokyo yes! Worked on a film called #RamenGirl ..incredible city +10/31/2017,Actors,@Gabriel_Mann,"RT @NPR: It's a touchy subject, but we need to know: What are your thoughts on candy corn? 🎃🍬" +10/31/2017,Actors,@Gabriel_Mann,walking for @CalvinKlein in #MillennialPink before Millennials wore pink 🤘🏼#BackInTheDay #90s https://t.co/DLzp8GgYiv +10/30/2017,Actors,@Gabriel_Mann,RT @IndieWire: 10 Great Directors Who Should Make Horror Movies — IndieWire Critics Survey https://t.co/pIQmXiSWvw https://t.co/RUl4lubEJc +10/30/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/QQPEyFEda1 +10/29/2017,Actors,@Gabriel_Mann,Halloalienorcist 🎃 https://t.co/gBjOq5Qxdd +10/29/2017,Actors,@Gabriel_Mann,@troyesdance you inspire me. thank you for the kind words Hannah.. +10/29/2017,Actors,@Gabriel_Mann,RT @BrosConfessions: can’t have pomegranates https://t.co/kKY8ivExwe +10/29/2017,Actors,@Gabriel_Mann,Countdown to @DamnationTV @USA_Network https://t.co/e2JIPpYrxm +10/29/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/0kjEEkeAWq +10/29/2017,Actors,@Gabriel_Mann,#BTS @USA_Network @DamnationTV w creator: @tonytost & stars @TheRealElemgy #KillianScott #SarahJones @chastenHarmon https://t.co/yNhvOcMzoU +10/29/2017,Actors,@Gabriel_Mann,#Follow @DamnationTV @TheRealElemgy @MelindaPageHam @chastenharmon @jpadler @CHeyerdahl @Paul_Rae @DanDonohue3 @Nicholsondk @Zach_McGowan +10/29/2017,Actors,@Gabriel_Mann,RT @archillect: https://t.co/gL7yOsRHmj +10/29/2017,Actors,@Gabriel_Mann,"RT @Khall_llen426_: I Miss Revenge ❌🎬 +@EmilyVanCamp @Gabriel_Mann @Nick_Wechsler +#JoshBowman +▫My favorite series❤💥 +▫Wonderful cast👏❤ http…" +10/29/2017,Actors,@Gabriel_Mann,RT @TSElibot: What we call the beginning is often the end and to make an end is to make a beginning. The end is where we start from. +10/27/2017,Actors,@Gabriel_Mann,@nothing_woman Of course. It’s more about letting people know what I stand for. +10/27/2017,Actors,@Gabriel_Mann,if you support #racism #sexism #misogyny #harassment #xenophobia #discrimination #homophobia #bullying please #unfollow ✌🏼 thx in advance ✌🏼 +10/27/2017,Actors,@Gabriel_Mann,Cheers @TommyHilfiger — @JuliensAuctions thx for having me https://t.co/JWD6Zqfe18 +10/27/2017,Actors,@Gabriel_Mann,RT @TheFixGym: Sometimes the stillness inside is all that you have to hold on to. Especially in these complicated times. https://t.co/NG5bb… +10/27/2017,Actors,@Gabriel_Mann,RT @pamelaadlon: YES YES YES YES YES YES YES. https://t.co/VZrbGgOGfm +10/27/2017,Actors,@Gabriel_Mann,RT @DalaiLama: We need to improve the current education system by introducing instructions on ways to cultivate positive emotions like warm… +10/27/2017,Actors,@Gabriel_Mann,‘Good nite’ here..but this will work for any occasion https://t.co/TAsMo9p3wS +10/27/2017,Actors,@Gabriel_Mann,RT @70s_party: I am *so* tired of boiling ox tongues https://t.co/KS4s0TXS82 +10/25/2017,Actors,@Gabriel_Mann,"RT @MuseumModernArt: “Art is a lie that makes us realize truth.”—Pablo Picasso, born #OTD in 1881 https://t.co/YYVDrl39er https://t.co/zP4b…" +10/24/2017,Actors,@Gabriel_Mann,RT @_RenaHH: Who wore ist best? Charlie Brown @Peanuts or @Gabriel_Mann ? https://t.co/uHRXbzz9YB +10/23/2017,Actors,@Gabriel_Mann,RT @PatieAzelot: I create other worlds. Photography has the ability to freeze people in this time and space.T.Shields-photo chromatic #reve… +10/22/2017,Actors,@Gabriel_Mann,"RT @Tribeca: ""Take your broken heart, make it into art."" — Carrie Fisher #bornonthisday https://t.co/gRW3nXLSLO" +10/22/2017,Actors,@Gabriel_Mann,"RT @DailyKerouac: One day I will find the right words, and they will be simple." +07/01/2018,Actors,@Nick_Wechsler,RT @Gabriel_Mann: #8X8 @revenge revival..? ;) @ABCNetwork ❌ @EmilyVanCamp @smashleybell @Nick_Wechsler #JoshBowman #MikeKelley #MelissaLoy… +07/01/2018,Actors,@Nick_Wechsler,@1stepbeyond007 Hugs for the kind words. I was very lucky to be a part of it. +07/01/2018,Actors,@Nick_Wechsler,@kaada Fuck yes. +06/30/2018,Actors,@Nick_Wechsler,@TaranKillam I know! Amazing. +06/30/2018,Actors,@Nick_Wechsler,RT @albz: Does anyone do a good Hannity phone impression cuz I think we figured out how to solve this fucking nightmare. +06/30/2018,Actors,@Nick_Wechsler,@LindsHollister Shut up! I can’t grow a real one and you know it! +06/30/2018,Actors,@Nick_Wechsler,"RT @TheGeekLens: My pictures from the Black List Script Reading at the 2018 ATX Television Festival featuring Franklin Leonard, Matt Lauria…" +06/29/2018,Actors,@Nick_Wechsler,New ep this Sunday. https://t.co/QwASgZykNM +06/29/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: In an apparent attempt to try to break up the European Union, Trump reportedly told French President Emmanuel Macron that the…" +06/28/2018,Actors,@Nick_Wechsler,RT @albz: This is how you sell gold plated shit to a poor person on QVC. https://t.co/KRp8es6jxC +06/28/2018,Actors,@Nick_Wechsler,RT @TheDweck: I love how much it still eats away at him that he’s the king of dumb fucks instead of Hollywood https://t.co/hEaOyIAh4z +06/28/2018,Actors,@Nick_Wechsler,@AngelOlsen Awesome! I’m a fan of both. +06/26/2018,Actors,@Nick_Wechsler,"@realDonaldTrump You rigged it to your advantage, you miserable sack of shit, get the fuck out of here with your gloating, pretend shock." +06/26/2018,Actors,@Nick_Wechsler,"Well, most people are dirt stupid, so don’t take this to heart, America. https://t.co/go14wgyoWN" +06/26/2018,Actors,@Nick_Wechsler,@LizGillies Right? Fuck. +06/26/2018,Actors,@Nick_Wechsler,@unrealfehr @davidduchovny Not fucking bad. Not fucking bad at all. +06/25/2018,Actors,@Nick_Wechsler,@JennifersWayJE I’m both mind-blown and heartbroken by Esteban’s restraint. +06/25/2018,Actors,@Nick_Wechsler,RT @hodgman: It seems to me that it’s not discrimination if she was judged specifically by the content of her character. +06/25/2018,Actors,@Nick_Wechsler,@rolldiggity Ha! +06/25/2018,Actors,@Nick_Wechsler,RT @JLo: TWEET WITH US! #SHADESOFBLUE IS BACK AND ITS ONLY GETTING STARTED! https://t.co/GMKj5MaE7n +06/24/2018,Actors,@Nick_Wechsler,"@BrandonJRouth I’ve always loved that method. Like, “If you’re so proud of your cruelty, it shouldn’t bother you if I show the world.”" +06/24/2018,Actors,@Nick_Wechsler,RT @nbcshadesofblue: Family is everything to Harlee. #ShadesofBlue https://t.co/c9jXyrfS7u +06/24/2018,Actors,@Nick_Wechsler,"RT @kumailn: I know there are a bunch of people upset at the Nazi comparisons, but the highlighting-crimes-by-immigrants move is literally…" +06/24/2018,Actors,@Nick_Wechsler,RT @davidcrosss: There's no such thing as white privilege!!! https://t.co/fV9PM1G6BW +06/24/2018,Actors,@Nick_Wechsler,RT @JLo: #SHADESOFBLUE STARTED OFF WITH A BANG...BUT THERE’S MORE TO COME‼️ TUNE-IN TOMORROW NIGHT FOR THE NEXT CHAPTER IN THE CRIME SAGA‼️… +06/23/2018,Actors,@Nick_Wechsler,@_CourtneyFord_ Congrats!!! +06/22/2018,Actors,@Nick_Wechsler,RT @LauraDern: I AM! https://t.co/fbMbIkCMe8 +06/22/2018,Actors,@Nick_Wechsler,Madman. https://t.co/OZ5rDzgS7l +06/22/2018,Actors,@Nick_Wechsler,RT @chrislhayes: I am convinced that without sustained public pressure and/or litigation they are simply not going to reunite these familie… +06/21/2018,Actors,@Nick_Wechsler,"RT @pattonoswalt: This extraordinary ad for the extraordinary @mjhegar just redeemed a shitty, frustrating week. Her story is amazing enoug…" +06/21/2018,Actors,@Nick_Wechsler,"I hate him, you guys. https://t.co/EzTozZjwtj" +06/20/2018,Actors,@Nick_Wechsler,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Actors,@Nick_Wechsler,"@albz Oh, god, yes." +06/20/2018,Actors,@Nick_Wechsler,RT @perlmutations: Remember how we watched as this piece of shit said stuff when he was running that was so unthinkable that we wrote it of… +06/20/2018,Actors,@Nick_Wechsler,"RT @JoyAnnReid: How do you reunite an infant, who can not communicate who their parent is, with a parent who is not allowed to access them,…" +06/19/2018,Actors,@Nick_Wechsler,"Sweet Christ, yes. https://t.co/RW86ADhrYA" +06/19/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: NEW: Per @CNN, the Trump administration decided not to implement its cruel family separation policy earlier in his presidency…" +06/19/2018,Actors,@Nick_Wechsler,RT @RVAwonk: Here it is. This is the policy — announced 5 days after Trump was inaugurated — that is creating the horrendous situation we'r… +06/19/2018,Actors,@Nick_Wechsler,@kellyoxford YES. +06/17/2018,Actors,@Nick_Wechsler,RT @TheDweck: You’d think a guy who looks like this would be better at getting away with evil plans https://t.co/4QLGih9zqE +06/17/2018,Actors,@Nick_Wechsler,That is also a good point. https://t.co/1XCL8oengI +06/17/2018,Actors,@Nick_Wechsler,@mirandaannW I’ll be watching with balls on. +06/17/2018,Actors,@Nick_Wechsler,"RT @TellTaleTV_: #ShadesofBlue returns tonight! ICYMI, here’s our interview with @Nick_Wechsler about his role in the final season: https:/…" +06/17/2018,Actors,@Nick_Wechsler,"She makes a good point, you guys. https://t.co/mpi4lAPxck" +06/17/2018,Actors,@Nick_Wechsler,RT @RepJoeKennedy: Arrived in Tornillo TX where first tent city for kids has gone up. Was refused entrance by HHS. Given amount of misinfor… +06/17/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: The fuck kind of country are we living in? Good God. https://t.co/3sFbnxtzYn +06/17/2018,Actors,@Nick_Wechsler,@Katysloane @BarrySloane ❤️ +06/17/2018,Actors,@Nick_Wechsler,"Happy Father’s Day, motherfuckers." +06/17/2018,Actors,@Nick_Wechsler,"@kaada Goddammit, I love your work." +06/16/2018,Actors,@Nick_Wechsler,@JasonWGeorge @Station19 Lemme know about the rest! +06/16/2018,Actors,@Nick_Wechsler,"Jesus. Jesus, Jesus, Jesus, Jesus. JESUS. https://t.co/JygtAGDCVi" +06/16/2018,Actors,@Nick_Wechsler,@KristenMichele6 @ATXFestival You got it. 😉 (And thank you very much.) +06/15/2018,Actors,@Nick_Wechsler,@KristenMichele6 @ATXFestival Ha! Aw. Please become a casting director fast. +06/15/2018,Actors,@Nick_Wechsler,RT @ashleybsumerel: I so enjoyed chatting with @Nick_Wechsler about his upcoming role on #ShadesofBlue and more during during @ATXFestival.… +06/15/2018,Actors,@Nick_Wechsler,"Wanna read an article in which I wander aimlessly through the garden of my own shattered mind, ostensibly to promot… https://t.co/bDJJLvtQwx" +06/15/2018,Actors,@Nick_Wechsler,RT @HayyyCee: Young Californian voters should all know this is a political scheme to divide up the most powerful Democratic state in the co… +06/15/2018,Actors,@Nick_Wechsler,@LykkeLi Cannot wait. +06/15/2018,Actors,@Nick_Wechsler,RT @kumailn: Are you ok with this? This has nothing to do with your political affiliation. This is a human issue. https://t.co/5FxYlbYuFk +06/15/2018,Actors,@Nick_Wechsler,"RT @SimonWDC: Grandfather, been in the US for 50 years, since he was 13. He’s a legal resident. Went to high school here. Taken away by…" +06/15/2018,Actors,@Nick_Wechsler,"RT @DaveKingThing: worried that, psychologically as a nation, there might be a little too much riding on this mr. rogers documentary" +06/14/2018,Actors,@Nick_Wechsler,RT @AllisonBlairN: I spy @Nick_Wechsler! #ShadesofBlue https://t.co/ZnjYov5yZw +06/13/2018,Actors,@Nick_Wechsler,@whatdidreneesay @ATXFestival Yup! Great to see you! +06/13/2018,Actors,@Nick_Wechsler,This is infuriating. https://t.co/97xaBXUFBn +06/13/2018,Actors,@Nick_Wechsler,"Goddammit, I love your work, @bessbell. https://t.co/v2hJs6Gk4Z" +06/13/2018,Actors,@Nick_Wechsler,@brynak13 My pleasure. You were very patient with me. +06/13/2018,Actors,@Nick_Wechsler,@whatdidreneesay @ATXFestival Sure was. +06/13/2018,Actors,@Nick_Wechsler,RT @Acosta: An astonishing moment of pure honesty from Trump... https://t.co/R8JcsoXDu7 +06/12/2018,Actors,@Nick_Wechsler,"RT @sportingnews: This high school pitcher held off celebrating with his teammates so he could console his childhood friend instead. + +(📹:…" +06/12/2018,Actors,@Nick_Wechsler,"@LPMc @jaredmunson @ATXFestival Say hello anytime, you goofball!" +06/12/2018,Actors,@Nick_Wechsler,@SBHilts87 @fi_bee_9 @jaredmunson @crashdowncom @ATXFestival Holy shit! How’s it going Brian? +06/12/2018,Actors,@Nick_Wechsler,"@jaredmunson @ATXFestival Aw, man. That’s lovely of you to say. It was great to meet you, man. I actually saw you s… https://t.co/shaZo5oJKk" +06/12/2018,Actors,@Nick_Wechsler,"@SamWitwer That’s crazy! Could you make a life-sized, anatomically correct one? Just out of curiosity." +06/11/2018,Actors,@Nick_Wechsler,"@TraceySchulz @TellTaleTV_ @ATXFestival @PhilRosenthal Ha! Hey, man!" +06/11/2018,Actors,@Nick_Wechsler,@derekwaterss @ATXFestival @Bergmaster5000 It’s legitimately the best. And I’m always sure to catch your panel. This year’s was great. +06/11/2018,Actors,@Nick_Wechsler,@TheRealElemgy Rad. I will make sure they both watch Upgrade. It’s the least they could do. +06/11/2018,Actors,@Nick_Wechsler,@povprod @ATXFestival ❤️ +06/11/2018,Actors,@Nick_Wechsler,@talli_approved TOLD YOU. +06/11/2018,Actors,@Nick_Wechsler,"@ashleybsumerel Mutual, buddy." +06/11/2018,Actors,@Nick_Wechsler,@brynak13 My pleasure. Thank you for putting up with me. +06/11/2018,Actors,@Nick_Wechsler,"@stampness @ThisIsLafferty @JasonWGeorge @Tyreljwill @theKatWillis @taylor_dearden Thank you, Elizabeth, for allowi… https://t.co/Dc40AmV6Lx" +06/11/2018,Actors,@Nick_Wechsler,"@everythingloria @ATXFestival Aw. Well, it was lovely to bump into you, Gloria. I’ll tell Mexican @fredschroeder you gals said hello." +06/10/2018,Actors,@Nick_Wechsler,@debrabirnbaum @ATXFestival @CarltonCuse @mrbobodenkirk We caught each other! Always lovely running running into yo… https://t.co/qzYaUcButg +06/10/2018,Actors,@Nick_Wechsler,"RT @adamcbest: Fox & Friends accidentally said this about the Singapore summit: ""regardless of what happens in that meeting between the two…" +06/09/2018,Actors,@Nick_Wechsler,@tiffanylopes Hotel bar. Sorry this was late. +06/09/2018,Actors,@Nick_Wechsler,RT @TellTaleTV_: Chatting with @Nick_Wechsler on last night’s @ATXFestival red carpet! Be sure to catch him on the upcoming season of #Shad… +06/07/2018,Actors,@Nick_Wechsler,"RT @theblcklst: Join us tomorrow @ATXFestival: https://t.co/uhUk5rh7hf + +Elizabeth Stamp's CLASSIFIED stars: +@ThisIsLafferty +@JasonWGeorge +@…" +06/07/2018,Actors,@Nick_Wechsler,"RT @latimesent: Actor @Nick_Wechsler (""Revenge"") and Matt Lauria (""Friday Night Lights"") give a shoutout to the L.A. Times on the flight to…" +06/07/2018,Actors,@Nick_Wechsler,"Just to be clear, I’m not busting anyone’s chops! I just think it’s funny to call a plane full of drowsy people a p… https://t.co/IPDhyrucEE" +06/07/2018,Actors,@Nick_Wechsler,@ATXFestival Duh. +06/07/2018,Actors,@Nick_Wechsler,@jaredmunson Let’s just you and I go sing in a grocery store. +06/07/2018,Actors,@Nick_Wechsler,Whatever. The 15 of us are gonna start our own little Rajneeshpuram in the sky. So I guess this @SouthwestAir fligh… https://t.co/nMRevw1FgM +06/07/2018,Actors,@Nick_Wechsler,"Oh, I’m having fun, don’t get me wrong, but this is a party plane in the same way that a handful of friends singing… https://t.co/fLdW5cStQs" +06/07/2018,Actors,@Nick_Wechsler,@cadlymack @ATXFestival @southwest Can you get Matt Lauria to stop trying to kiss me? +06/07/2018,Actors,@Nick_Wechsler,On board the @SouthwestAir Party Plane on the way to ⁦@ATXFestival⁩ with Matt. He has a deathly fear of heights. He… https://t.co/sZHw6Yxg2L +06/07/2018,Actors,@Nick_Wechsler,@BenBlacker I will be. Boarding the @SouthwestAir “Party Plane” soon. +06/07/2018,Actors,@Nick_Wechsler,"RT @BrendanNyhan: I have to log off Twitter. Seeing that this is a song the kids sing (to the tune of ""Twinkle Twinkle Little Star"") is too…" +06/07/2018,Actors,@Nick_Wechsler,RT @Warren_Kole: The Devil wants his Due. #ShadesofBlue @Jlo @rayliotta @dreadematteo @DayoOkeniyi @hampton_fluker @sarahmjeffery3 @GinoPe… +06/07/2018,Actors,@Nick_Wechsler,👀 https://t.co/xIRPBtG8Xi +06/07/2018,Actors,@Nick_Wechsler,"@BenBlacker Proud of you, man." +06/06/2018,Actors,@Nick_Wechsler,RT @stampness: Beyond excited to be heading back to @ATXFestival where @theblcklst will be doing a star-studded reading of my script Classi… +06/06/2018,Actors,@Nick_Wechsler,@ChrisAgos @ptrueagos ❤️ +06/06/2018,Actors,@Nick_Wechsler,@JarettSays Cannot fucking wait. +06/06/2018,Actors,@Nick_Wechsler,RT @funder: Congrats GOP! You just elected a white supremacist who rioted in Charlottesville. https://t.co/s8HrlesviP +06/06/2018,Actors,@Nick_Wechsler,RT @TIME: A valedictorian trolled his own classmates with an Obama quote disguised as a Trump quote https://t.co/xoDcFJowww +06/06/2018,Actors,@Nick_Wechsler,"@AvanJogia Congrats, man! That’s rad." +06/06/2018,Actors,@Nick_Wechsler,RT @jules_su: These officers should go to jail for a decade each for unprovoked assault on an innocent passerby waiting for the elevator.… +06/06/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: This is why @NFL athletes take a knee. + +This is why we aren't filled with warm fuzzies when we hear the National Anthem.…" +06/06/2018,Actors,@Nick_Wechsler,"RT @theblcklst: Join us @ATXFestival Friday for 2 pilot live reads! + +Elizabeth Stamp's CLASSIFIED stars... +@ThisIsLafferty +@JasonWGeorge +@N…" +06/06/2018,Actors,@Nick_Wechsler,"RT @jonfavs: Nearly 120k voters omitted from the voting rosters in LA County because of a printing error. Among other things, this could af…" +06/05/2018,Actors,@Nick_Wechsler,Um. Guys? https://t.co/GTSHprIXKA +06/04/2018,Actors,@Nick_Wechsler,"I’m gonna be at @ATXFestival this year, and I agreed to take part in one of these script readings. Joke’s on them,… https://t.co/UcTw4xO8SI" +06/04/2018,Actors,@Nick_Wechsler,"Just a reminder that I’m in this season of @nbcshadesofblue, which premieres later this month. https://t.co/rDczCeHfHX" +06/04/2018,Actors,@Nick_Wechsler,Cannotwait. https://t.co/x4zpE0pkcy +06/04/2018,Actors,@Nick_Wechsler,"@jesseleesoffer What?! Ugh, I already had sex with that guy!" +06/03/2018,Actors,@Nick_Wechsler,"@TheRealElemgy Dude, have you seen these? My best friend’s brother made the 1st one, and my best friend & his bro m… https://t.co/MRc1EDBNqS" +06/03/2018,Actors,@Nick_Wechsler,"RT @POLITICOMag: Trump made $50,000 per episode for season one of ""The Apprentice."" + +For season two, “he wanted a million dollars an episod…" +06/02/2018,Actors,@Nick_Wechsler,RT @MattOswaltVA: hopefully Samantha Bee has learned that if you're gonna go after one of Trump's children NEVER go after the one he wants… +06/02/2018,Actors,@Nick_Wechsler,"RT @Schwarzenegger: I eagerly await the administration’s regulations protecting pagers, fax machines, and Blockbuster. https://t.co/ykLJHT4…" +06/02/2018,Actors,@Nick_Wechsler,RT @TheRealElemgy: UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.UPGRADE.… +06/01/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: Now seems like a good time to remember that Trump still hasn't acknowledged the recent report that nearly 5,000 Americans died…" +06/01/2018,Actors,@Nick_Wechsler,"@TaranKillam @NightSchool @almadrigal Proud of you, dude." +05/30/2018,Actors,@Nick_Wechsler,"RT @ATXFestival: If you find yourself obsessing over #WhoDrewTheDicks, you need to be at our @AVTVSeries panel on Friday, June 8, featuring…" +05/28/2018,Actors,@Nick_Wechsler,@ropappas That was you? Ha! +05/28/2018,Actors,@Nick_Wechsler,"RT @JoyAnnReid: You’d almost never know her father’s administration, to which she is an adviser, was brutally separating migrant children f…" +05/28/2018,Actors,@Nick_Wechsler,RT @JuddLegum: How would your Sunday be if the federal government ripped this child from your arms and put him in a detention facility? htt… +05/28/2018,Actors,@Nick_Wechsler,You heard the man. https://t.co/eFsnza0Nin +05/28/2018,Actors,@Nick_Wechsler,"@realDonaldTrump What the fucking shit are you even talking about, you fucking shit?" +05/28/2018,Actors,@Nick_Wechsler,"@BarrySloane @EW @SIXonHISTORY Miss you, dude!" +05/28/2018,Actors,@Nick_Wechsler,@GinaWatchesTV @kaada @ATXFestival Yup! +05/27/2018,Actors,@Nick_Wechsler,This new @kaada album is fucking gorgeous. https://t.co/10JnYvIBUs +05/25/2018,Actors,@Nick_Wechsler,@kaada 🖤 +05/23/2018,Actors,@Nick_Wechsler,RT @DlSRESPECT: i actually love this metaphor because it’s a fake target and you’ve put it there yourself. https://t.co/qF6p93RiUF +05/23/2018,Actors,@Nick_Wechsler,Jesus Christ. https://t.co/Gg1FfYHBRk +05/23/2018,Actors,@Nick_Wechsler,Please check out this article about the book my best friend @SamWitwer is making with his brother and other peeps! https://t.co/oiLz8ztAHC +05/22/2018,Actors,@Nick_Wechsler,This is nuts. https://t.co/D1GlGL517r +05/22/2018,Actors,@Nick_Wechsler,"RT @igorvolsky: Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the problem. +Guns are the…" +05/22/2018,Actors,@Nick_Wechsler,Cool! Like what he’s doing for our country’s cyber security! https://t.co/zPZXmcm7fJ +05/19/2018,Actors,@Nick_Wechsler,RT @funder: BREAKING: Trump’s been buying and selling stocks while serving as president +05/19/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: The identity of the informant has been exposed. Please don't post his name, and please don't share anything that does mention…" +05/18/2018,Actors,@Nick_Wechsler,"My buddy is selling her tickets for tonight’s @taylorswift13 show at The Rose Bowl. Cheap! Go take a look: + +https://t.co/fMl3kcpdmK" +05/18/2018,Actors,@Nick_Wechsler,"“Now, I know that this makes him look like an absolute cock, but his pettiness is probably just some shortcut to gr… https://t.co/OceFIPnisT" +05/18/2018,Actors,@Nick_Wechsler,"@karterhol Prove it, pussy!" +05/18/2018,Actors,@Nick_Wechsler,"Pfft, whatEVER! https://t.co/Ju3fx5OcLS" +05/17/2018,Actors,@Nick_Wechsler,Thread. https://t.co/MTXol1dUHR +05/17/2018,Actors,@Nick_Wechsler,"RT @Yanni: @chrissyteigen I may be biased, but all I hear is Yanni..." +05/16/2018,Actors,@Nick_Wechsler,"RT @RVAwonk: North Korea watched as Trump violated the terms of our nuclear deal with Iran. If you were in that position, would you serious…" +05/16/2018,Actors,@Nick_Wechsler,@TheRealElemgy It’s so fucking good. +05/13/2018,Actors,@Nick_Wechsler,"RT @fightfortheftr: Hey + +twitter + +this + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +that + +#NetNeutrality + +ends + +on + +June 11 + +unless…" +05/12/2018,Actors,@Nick_Wechsler,A pear is just juicy sand. +05/10/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: The only reason this officer was fired was because his brutality was exposed before the world. + +This literally happened 6 m…" +05/10/2018,Actors,@Nick_Wechsler,"(I am aware of the fact that you won’t respond to this, either.)" +05/10/2018,Actors,@Nick_Wechsler,"RT @ShaunKing: Dear @WaffleHouse, + +Listen to me. + +I wanna be clear on something. + +I'm done with your corporation. Permanently. + +I'm aski…" +05/10/2018,Actors,@Nick_Wechsler,"Hey, @isaora, where the fuck is my stuff and how are you still in business, since you notoriously do not respond to… https://t.co/WsdDyEF4js" +05/09/2018,Actors,@Nick_Wechsler,@justslogan @jeneuston ❤️ you two. +05/09/2018,Actors,@Nick_Wechsler,HOAX! https://t.co/sXZlU9IOin +05/09/2018,Actors,@Nick_Wechsler,"Congrats to one of my favorite dudes ever, @GlennHowerton. https://t.co/7gWRHT3AqL" +05/08/2018,Actors,@Nick_Wechsler,Jesus Christ. https://t.co/Hp7oZxOw5F +05/07/2018,Actors,@Nick_Wechsler,RT @ShaunKing: Imagine him getting called to a wealthy white home and acting like this. https://t.co/TGMrOke0le +05/06/2018,Actors,@Nick_Wechsler,"Holy Christ, @donaldglover is incredible. + +https://t.co/fXVywfg8Pq" +05/05/2018,Actors,@Nick_Wechsler,"Wait, what the fuck? https://t.co/PmhKmTjTh5" +05/05/2018,Actors,@Nick_Wechsler,RT @SarahKSilverman: Im so goddamned sick of this- these cops should be fired & punished. shit HAS to change. Bad cops should be the ones s… +05/05/2018,Actors,@Nick_Wechsler,Do not spray this directly into your urethra no matter how stained the inside of your bladder theoretically is. And… https://t.co/YvCHnCa66t +05/02/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: Trump's doctor looks like if Carly Simon and George Carlin fell into a Brundlepod. https://t.co/an9j4CsZgT +05/02/2018,Actors,@Nick_Wechsler,"Oh, no way, they award the Nobel Peace Prize for being a lying sack of shit? https://t.co/umianG8tuS" +05/02/2018,Actors,@Nick_Wechsler,@bejohnce Please make posters of this available at the show. +04/30/2018,Actors,@Nick_Wechsler,"@realDonaldTrump Fuck you, like, a lot." +04/29/2018,Actors,@Nick_Wechsler,"@TyLabine Happy birthday, man!" +04/29/2018,Actors,@Nick_Wechsler,@RicaSham @EmilyVanCamp I’m in the upcoming season of @nbcshadesofblue. +04/29/2018,Actors,@Nick_Wechsler,@suchandsome I know! I miss that one. +04/28/2018,Actors,@Nick_Wechsler,@XLRECORDINGS Can I get some help tracking down my order? It was supposed to have arrived on the 26th but never did… https://t.co/jEsg6hhYEw +04/28/2018,Actors,@Nick_Wechsler,"So, uh, @isaora, you ever gonna respond to my question about where my order is? It’s been a month and no word. Guys… https://t.co/mr1g1snNNN" +04/28/2018,Actors,@Nick_Wechsler,"There is no bottom. He is endlessly, maddeningly awful. https://t.co/EAJ9VP95i8" +04/24/2018,Actors,@Nick_Wechsler,"@terriB50 @kumailn Yeah, grow up, Trump!" +04/24/2018,Actors,@Nick_Wechsler,RT @kumailn: Watch this twice. Once just her hands. Once just her face. You don’t have to look at his face. https://t.co/7h9AumXMYv +04/23/2018,Actors,@Nick_Wechsler,"Has he, um...seen the first one? https://t.co/Uaz4Ee5NTL" +04/22/2018,Actors,@Nick_Wechsler,Happy Earth Day! https://t.co/StT3cdpUuL +04/20/2018,Actors,@Nick_Wechsler,@LykkeLi ❤️ +04/18/2018,Actors,@Nick_Wechsler,Yesss!! But also: grosss!! https://t.co/y7hjxFoRT1 +04/18/2018,Actors,@Nick_Wechsler,"Oh, would you just buy your @ATXFestival badges already? https://t.co/8eaPlnVKV0" +04/18/2018,Actors,@Nick_Wechsler,"RT @TheDweck: Yeah, you do. That’s literally what the Civil War was. https://t.co/leIGOLOlCU" +04/17/2018,Actors,@Nick_Wechsler,@jeneuston Aw. I didn’t know you guys were buddies! He’s lovely. +04/16/2018,Actors,@Nick_Wechsler,RT @pattonoswalt: HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA. Oh my God. So much to unpack in these 43 seconds. Don't miss the part when he says he'd… +04/14/2018,Actors,@Nick_Wechsler,"RT @ChrisMurphyCT: So Mattis doesn't want to strike Syria because it risks dragging U.S. into a broader war with Russia and Iran, but he ha…" +04/13/2018,Actors,@Nick_Wechsler,@monicabarbaro 👍🏽 +04/12/2018,Actors,@Nick_Wechsler,@KaitlinOlson Yup. +04/11/2018,Actors,@Nick_Wechsler,This is fun. https://t.co/Z1q8vXdv9F +04/11/2018,Actors,@Nick_Wechsler,@monkeyforsallie Right?! Fuck. +04/10/2018,Actors,@Nick_Wechsler,I cannot fucking wait. https://t.co/fbDYIqtKI3 +04/10/2018,Actors,@Nick_Wechsler,RT @JoyAnnReid: And the @GOP quest to erase all memory of Michael Cohen begins... https://t.co/art9oqbimH +04/09/2018,Actors,@Nick_Wechsler,RT @SethAbramson: Yeah they'll understand you exempted your daughter from all of this https://t.co/5Xg9Ml9eCJ +04/08/2018,Actors,@Nick_Wechsler,"RT @JuddLegum: To review: There was a fire in the residential section Trump Tower where there are no sprinklers, in part because Trump lobb…" +04/08/2018,Actors,@Nick_Wechsler,@allison_pogan @unrealfehr @MajandraD @ShiriAppleby @ColinHanks @KatieHeigl Awesome! +04/08/2018,Actors,@Nick_Wechsler,RT @BigBoyler: Our toddler’s favorite colours are green and red. But you probably already knew that since he won’t shut the fuck up about i… +04/06/2018,Actors,@Nick_Wechsler,"@unrealfehr “Basically” is a generous way of saying “definitely, while I was asleep.” + +Love you, bro." +04/05/2018,Actors,@Nick_Wechsler,@BigBlackDelta @MellowdroneBand Holy shit! +04/05/2018,Actors,@Nick_Wechsler,@SLSparks12 Ha. ❤️ +04/04/2018,Actors,@Nick_Wechsler,"I’m in a thing, so check it out or something or whatever, you don’t have to never mind. https://t.co/rDczCeHfHX" +04/04/2018,Actors,@Nick_Wechsler,"@jimmisimpson Also: howdy to you, my digital bro. Glad to see you’re working as often as you deserve. Hope you’re great, man." +04/04/2018,Actors,@Nick_Wechsler,@jimmisimpson I’ve had one of my alarms named after him for probably about a year now to remind me to hang with him… https://t.co/B8zpGbn97Y +04/04/2018,Actors,@Nick_Wechsler,"@jimmisimpson He is. I worked with him years ago, before everybody finally realized how goddamn good he was and sta… https://t.co/GMv1hO1A5B" +06/08/2018,Actors,@christabrittany,"RT @ava: Here are the 25 women directors who helmed #QUEENSUGAR over our three seasons. For 21 of them, it was their first episode of telev…" +06/07/2018,Actors,@christabrittany,"RT @tferriss: ""Anger is often what pain looks like when it shows itself in public."" — Krista Tippett (@kristatippett)" +06/07/2018,Actors,@christabrittany,"My new single is out today, anywhere you get your music! ""Unicorn"" by pour vous: https://t.co/JUrk12QvlK @JohnnyWhatMusic" +06/06/2018,Actors,@christabrittany,Misogynistic men hate me. I love that. +06/05/2018,Actors,@christabrittany,"The Valley, playing this weekend ❤️ https://t.co/NFx6y0Tjtt" +06/03/2018,Actors,@christabrittany,@SOHN @JohnnyWhatMusic is the best at that. https://t.co/9AygY8vXB1 +06/02/2018,Actors,@christabrittany,@zeldawilliams Best thread in Twitter history?! 🙌 +06/01/2018,Actors,@christabrittany,RT @tferriss: “The stupidity of people comes from having an answer for everything. The wisdom of the novel comes from having a question for… +05/29/2018,Actors,@christabrittany,god bless the internet. +05/29/2018,Actors,@christabrittany,way to go @abc for cancelling Roseanne. it is the age of social accountability. racism will not be tolerated 🙅‍♀️ +05/28/2018,Actors,@christabrittany,really really over it: mumble rap. really really into it: lo-fi hip hop. +05/27/2018,Actors,@christabrittany,It’s never too late to have a happy childhood. -Tom Robbins +05/27/2018,Actors,@christabrittany,can’t wait til it’s 2025 and @elonmusk has built us an underground bullet train so I can see my Malibu friends more than 3x a year +05/27/2018,Actors,@christabrittany,WOW get ready for life to improve 1000000%!!! how about Rufus? Rhino?Frog? :) https://t.co/YQe28ispFV +05/24/2018,Actors,@christabrittany,"First, “Your Body Is A Wonderland” was the soundtrack to countless high school makeouts. Now, memes of this music v… https://t.co/Aoc3fsEnjQ" +05/23/2018,Actors,@christabrittany,RT @katedowdcasting: We're looking for a transgender actress for a major part in a US TV series - if this is you please do get in touch! An… +05/18/2018,Actors,@christabrittany,RT @Travon: Dear 2A parents: sit your kids down tonight and explain to them why it's more important for you to have unregulated unfettered… +05/18/2018,Actors,@christabrittany,"RT @bryanboy: No. of mass shootings in 2018 (as of 15 May): + +🇦🇺 0 +🇳🇿 0 +🇩🇪 0 +🇬🇧 0 +🇧🇪 0 +🇦🇹 0 +🇩🇰 0 +🇳🇱 0 +🇸🇪 0 +🇫🇮 0 +🇮🇪 0 +🇨🇦 0 +🇱🇺 0 +🇨🇭 0 +🇺🇸 99*" +05/18/2018,Actors,@christabrittany,@IddoG 🤦‍♀️😢 +05/18/2018,Actors,@christabrittany,"RT @marwilliamson: Anytime you have a problem with someone, think of them and say this Hawaiian Ho'oponopono prayer: +Please forgive me. +I’m…" +05/16/2018,Actors,@christabrittany,"blue/black vs. white/gold, laurel vs. yanny are teaching us all that sensory experience is subjective/malleable! I… https://t.co/CsR0t3cjJK" +05/16/2018,Actors,@christabrittany,"I make a small cameo in the upcoming @GrandHotelABC, check out the trailer here and let me know what you think! https://t.co/nUmR6tbm84" +05/12/2018,Actors,@christabrittany,those moments when it feels like your @Spotify Discover Weekly playlist actually reads your mind 😍 +05/12/2018,Actors,@christabrittany,RT @marwilliamson: Prepare yourself inwardly for a life of greatness. Sometimes we’re so intent on not getting ahead of ourselves that we r… +05/11/2018,Actors,@christabrittany,#grandhotel is a show about rich people behaving badly. I happen to have a particular fondness for shows like this!… https://t.co/M5QGPuphbS +05/11/2018,Actors,@christabrittany,Congratulations to @EvaLongoria @kenolin1 and the entire cast and crew of Grand Hotel on the pickup!! I make a litt… https://t.co/NApT95hzcc +05/11/2018,Actors,@christabrittany,Dreams DO come true!! 🙌🙌🙌 https://t.co/Y03RU9V8kV +05/07/2018,Actors,@christabrittany,"I do hope you’re inspired by this video, Mr. West. Seems you’ve been a little confused of late... https://t.co/gHPdZaI5ew" +05/06/2018,Actors,@christabrittany,Donald Glover is the only Donald anyone should be talking about. Goddamn 🔥 +05/06/2018,Actors,@christabrittany,Donald Glover just blows my mind over and over and over again. +05/05/2018,Actors,@christabrittany,My film Dangerous Seduction (FKA The Queen of Sin) premieres tonight on @LifetimeMovies 8/7 c! https://t.co/8Drtfit5KC +05/04/2018,Actors,@christabrittany,Thanks for the love Gina! 💕 https://t.co/VxEBvWRFsc +05/03/2018,Actors,@christabrittany,"RT @Incendoprod: Don't miss the US premiere of #DangerousSeduction AKA ""The Queen of Sin"" - starring @christabrittany with Richard de Klerk…" +05/01/2018,Actors,@christabrittany,"we spoke to @JimEWood @axs about our new music video; ""For me, an interesting element was being crucified on a cros… https://t.co/cty4NX2Y3h" +04/30/2018,Actors,@christabrittany,RT @marwilliamson: On the level of the body all of us are different; on the level of the spirit all of us are one. The only way we will sur… +04/24/2018,Actors,@christabrittany,Thanks for the love @HollywoodLife ! https://t.co/Zi7sCYNNuO +04/24/2018,Actors,@christabrittany,"'Scorpio' is our erotic, hypnotic anthem to empowered female sexuality. We are celebrating the woman who enjoys sex… https://t.co/kJR7cqGVas" +04/23/2018,Actors,@christabrittany,"first music video for my single “Scorpio” is out now! 🌟 watch it here, and please do yourself the favor of watching… https://t.co/k2y1ncy14o" +04/15/2018,Actors,@christabrittany,"RT @ladygunn: “Why can’t you love me/Like you love your drug…?” The eternal question. Check out ""Sober,"" a heart-wrenching new song by Pour…" +04/05/2018,Actors,@christabrittany,incredible! Bravo KSA 👏👏👏 https://t.co/uICzYbNM43 +04/03/2018,Actors,@christabrittany,Congratulations Sallie!! can’t WAIT for more!! 💖💕 https://t.co/Z2Jtp0APp7 +04/03/2018,Actors,@christabrittany,I remember Darren singing and playing his acoustic guitar in the passenger van going to and from set. He was so kin… https://t.co/xPXllA2AbU +03/15/2018,Actors,@christabrittany,twitter! my debut single “The Flood” is out now. listen to it here: https://t.co/bkxQA1Jqs8 +03/14/2018,Actors,@christabrittany,"Loved speaking with @axs about my new music with @JohnnyWhatMusic, pour vous. thank you @JimEWood !https://t.co/miWl1GuK7f" +03/14/2018,Actors,@christabrittany,"RT @JimEWood: In my new @axs interview, @christabrittany and Johnny What discuss their ethereal, ""Trip Pop"" new project, Pour Vous: https:/…" +02/25/2018,Actors,@christabrittany,RT @Emma4Change: A gentle reminder that all we are aiming for here is stricter gun laws that make it harder for people to get guns (because… +02/07/2018,Actors,@christabrittany,"RT @Incendoprod: The trailer for ""The Queen of Sin"" is out! The movie stars @christabrittany with Richard de Klerk @ambergoldfarb @IngaCadr…" +01/24/2018,Actors,@christabrittany,for more updates on my new music follow the pour vous Instagram: https://t.co/D55QuMjYPF +01/24/2018,Actors,@christabrittany,the news is out about my new project: https://t.co/LSljcboYiq +12/20/2017,Actors,@christabrittany,@justinchon @GookFilm I couldn't stop crying. and saying the f word.... :) congrats mate. And big hugs!! +12/20/2017,Actors,@christabrittany,just want to quickly point everyone's attention to @GookFilm directed by and starring @justinchon. it is a stunner.… https://t.co/JHXhV9cDPD +12/14/2017,Actors,@christabrittany,"RT @Travon: In case it didn't click, last night in Alabama is why the entire Republican party works incredibly hard to keep black people fr…" +12/14/2017,Actors,@christabrittany,RIP open internet in the Divided States of America +12/14/2017,Actors,@christabrittany,"Eminem the prophet called it in 2002: the FCC won't let me be or let me be me, so let me see, they try to shut me down on MTV." +12/09/2017,Actors,@christabrittany,"RT @PopHorrorNews: Cult Hit ONE OF US, Starring Christa B. Allen (@christabrittany) is Coming To #DVD in December! #OneOfUs #Horror #Thrill…" +11/27/2017,Actors,@christabrittany,@iamthearbiter @zeldawilliams the debate over whether men or women are more objectified in the media is a) not a de… https://t.co/wmgl5GqfxU +11/27/2017,Actors,@christabrittany,"@iamthearbiter @zeldawilliams Also those dudes are in speedos, arguably a little closer to the definition of the wo… https://t.co/bsgSbKQvmn" +11/27/2017,Actors,@christabrittany,@iamthearbiter @zeldawilliams in the vastness of the internet you can find examples of absolutely any point of view… https://t.co/iuJgGsH6fY +11/27/2017,Actors,@christabrittany,I don't know but they certainly don't say that shit about men https://t.co/EP55CxcBNn +11/25/2017,Actors,@christabrittany,"""Whatever our souls are made of, his and mine are the same"" https://t.co/YzTnK2jbL7" +11/25/2017,Actors,@christabrittany,"""It was love at first sight, now it's love at every sight."" https://t.co/YzTnK2jbL7" +10/30/2017,Actors,@christabrittany,@justinhartley Congratulations Justin and Chrishell!! All the best to you both! 💖 +09/30/2017,Actors,@christabrittany,https://t.co/5TjiorsXbi to donate to Puerto Rico recovery efforts ❤️ +09/18/2017,Actors,@christabrittany,"congratulations to my former on screen dad, my David Clarke-- @MrJamesTupper-- on your Emmy win for Big Little Lies!!! 🌹" +09/05/2017,Actors,@christabrittany,"RT @MDMOLINARI: Protect & treat all victims of family violence & sexual assault Check out ""VIP Young at Heart Event"" https://t.co/Y6Mn6wJpt…" +09/04/2017,Actors,@christabrittany,happy birthday to the queen. 🐝@Beyoncé https://t.co/DQE5E4qCrI +08/12/2017,Actors,@christabrittany,"@sevdaliza unbelievable record. so smart, so sexy. I can't stop listening" +08/03/2017,Actors,@christabrittany,tune in to @theedgenz to hear me on with @JonoAndBen between 5-5:30pm today! +08/03/2017,Actors,@christabrittany,thanks for the suggestions! can't wait to explore 🌈🌱 +08/02/2017,Actors,@christabrittany,"hey twitter, what do you love to do in Auckland, NZ? Just arrived! 👋" +07/30/2017,Actors,@christabrittany,@BaldoriaDTLA favorite new restaurant in LA. oh. my. GOD!!! 😭😍🙌 +07/19/2017,Actors,@christabrittany,"fun fact!in most of the world,a horn honk indicates potential danger to other vehicles.inLA, it translates roughly to ""out of my way loser!""" +07/17/2017,Actors,@christabrittany,"RT @beautybanter: #BanterBabe @christabrittany has a pretty classic beauty vibe, read up on her can't-live-without beauty products +https:/…" +07/10/2017,Actors,@christabrittany,@kyle_newman You can! visit @the14thfactory and you can walk through it +07/01/2017,Actors,@christabrittany,currently SOBBING watching #okja. please send tissues. and hugs. +06/23/2017,Actors,@christabrittany,tired but inspired +06/18/2017,Actors,@christabrittany,RT @Attenboroughs_D: Karma's a bitch. https://t.co/LM7ZVtZGUD +06/16/2017,Actors,@christabrittany,hey but sometimes laughing is the only way to keep from crying +06/16/2017,Actors,@christabrittany,trump's lawyer gets a lawyer? the Russian doll metaphor is too easy to make +06/15/2017,Actors,@christabrittany,"RT @TheSchoolOfLife: 'The world is a book, and those who do not travel read only a page.' - Augustine" +06/12/2017,Actors,@christabrittany,"""hi sorry I'm not actually working for free at the moment!"" -email only artists ever have to send" +06/12/2017,Actors,@christabrittany,fuck you pay me +06/12/2017,Actors,@christabrittany,when u has worked 2 decades making a valuable name for yourself then all of a sudden people ask u to promo their shit for free. #no +06/12/2017,Actors,@christabrittany,when @EricRayDavidson catches me hangry https://t.co/b53XLfdvjL +06/02/2017,Actors,@christabrittany,art is universal because suffering is universal. +06/02/2017,Actors,@christabrittany,this new @alt_j album is exceptional. way to be consistently brilliant across all albums 👏 +06/01/2017,Actors,@christabrittany,@David_Bush I mean... https://t.co/VViR2pZ1zQ +06/01/2017,Actors,@christabrittany,RT @elonmusk: Am departing presidential councils. Climate change is real. Leaving Paris is not good for America or the world. +06/01/2017,Actors,@christabrittany,"clean, renewable energy is the future. why is this concept so hard for some to grasp?!" +06/01/2017,Actors,@christabrittany,America has absolutely lost the plot. +06/01/2017,Actors,@christabrittany,grab mother earth by the pussy #parisclimateaccord +05/17/2017,Actors,@christabrittany,feels https://t.co/hrbGpCRGkA +05/13/2017,Actors,@christabrittany,"@H_Esteve death, taxes, and the twitter will never be short of sass (the only three things that are certain)" +05/13/2017,Actors,@christabrittany,"cashmere, silk, and his hands (the only three things that ought to ever touch my skin)" +05/12/2017,Actors,@christabrittany,RT @NobodysChild: ⭐️ Spotted on ⭐️: @ChristaBrittany https://t.co/47J7saRZnQ +05/06/2017,Actors,@christabrittany,"trump supporters I see eating tacos and drinking margaritas for #cincodemayo today, I'll eat their tacos, drink their margs and make em pay💰" +05/05/2017,Actors,@christabrittany,"RT @existentialcoms: Sometimes I think humanity is alright, but then I meet a dog and I'm like, ""oh, that's right, humanity is garbage.""" +04/22/2017,Actors,@christabrittany,at @amoebamusic with my boyfriend buying his band's record on vinyl for #RecordStoreDay. my inner hipster is so happy +04/21/2017,Actors,@christabrittany,"""I read up on string theory today and I'm pretty sure that it's you. You're my favorite little quark.""" +03/19/2017,Actors,@christabrittany,RT @chrisdelia: Fuck boring people. I love weirdos. FUCK I LOVE WEIRD ASS MOTHERFUCKERS. +03/19/2017,Actors,@christabrittany,¯\_(ツ)_/¯ +03/14/2017,Actors,@christabrittany,Think twice before your journey down the rabbit hole—you might not come back. #OneOfUs is out now on Digital! https://t.co/RvTflEaacB +03/09/2017,Actors,@christabrittany,"when you're in the movie but it still scares the hell outta you https://t.co/kgzJUAtnuD ""One of Us"" comes out this Tuesday March 14! ⚡️" +03/03/2017,Actors,@christabrittany,I miss you every day New Orleans. https://t.co/YTDiXoltcs +03/03/2017,Actors,@christabrittany,New Orleans is the unmitigated jewel of the United States. +01/30/2017,Actors,@christabrittany,RT @aplusk: If standing for the America that doesn't discriminate makes me a left wing actor who is out of touch. Fuck it. +01/23/2017,Actors,@christabrittany,RT @tylershields: @christabrittany Shut down Santa Monica beach for some rings https://t.co/v0RNj7Oi3A +01/23/2017,Actors,@christabrittany,don't hang up the gloves. show your support for @ppfa! link to purchase this tee in my bio.… https://t.co/o9vp0r4Ufk +12/21/2016,Actors,@christabrittany,#passengers is titanic in space. so obviously I loved it +12/12/2016,Actors,@christabrittany,"RT @pattonoswalt: ""Stick to entertainment and shut your yap about politics! And stop criticizing the reality TV host I voted into the White…" +12/03/2016,Actors,@christabrittany,i want to work with tom tykwer +12/02/2016,Actors,@christabrittany,RT @existentialcoms: The fact that Hillary won the popular vote is going to be a good trivia question on quiz night in the apocalyptic wast… +11/29/2016,Actors,@christabrittany,RT @RostrumRecords: .@christabrittany stars in @bravesofficial’s video for #MeTheThief! Have you seen it yet? https://t.co/BwRYr48h0I https… +11/29/2016,Actors,@christabrittany,"less than a day to go, over 90% funded. please click to support bringing clean drinking water to those in need! https://t.co/QBI8qH4m0W" +11/29/2016,Actors,@christabrittany,clean drinking water is a basic human right. please help @msrgear bring clean water to communities around the world! https://t.co/QBI8qH4m0W +11/25/2016,Actors,@christabrittany,"RT @iJesseWilliams: Today white ""nationalists"" give thanks that indigenous people provided food, shelter & job training to sickly immigrant…" +11/24/2016,Actors,@christabrittany,RT @MarkRuffalo: This will end in more bloodshed and now will be enshrined in Obama's legacy. Power Imbalance at the Pipeline Protest https… +11/10/2016,Actors,@christabrittany,RT @DeepakChopra: Perhaps the future no longer depends on a single leader but on each of us who can quietly dedicate our life to light love… +11/09/2016,Actors,@christabrittany,good mourning. +11/09/2016,Actors,@christabrittany,"RT @GoIntoTheStory: I know this. Now more than ever, we need STORYTELLERS. Writers who humanize The Other, who move us beyond fear to openn…" +11/09/2016,Actors,@christabrittany,crying +11/09/2016,Actors,@christabrittany,RT @Paxmee: Tell me again how rape and sexual assault accusations will ruin a man's career +11/09/2016,Actors,@christabrittany,"RT @tromano: ANYONE BUT A FUCKING WOMAN, SAYS AMERICA. ANYONE." +11/09/2016,Actors,@christabrittany,"anyone with info on the candle light vigil being held tomorrow for the death of our country, let a sistah know" +11/09/2016,Actors,@christabrittany,too bad Alain de Botton can't be president https://t.co/ZEJOooZyiL +11/09/2016,Actors,@christabrittany,"RT @annetdonahue: What's even more demoralizing is knowing how hard Hillary's worked and how qualified she is, and yet... And every woman k…" +11/09/2016,Actors,@christabrittany,"@KevTheUprCTOTY fair enough, I see your point. but this is NOT the guy to lead the revolt!! he is dumb and dangerous!!" +11/09/2016,Actors,@christabrittany,Brexit --> Trumpocalypse --> ???!! +11/09/2016,Actors,@christabrittany,"this is unbelievable, America is sick. even if the orangutan loses, this many racist, sexist, xenophobic humans on our soil is bad bad bad" +11/09/2016,Actors,@christabrittany,👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👴🏻👦🏾👩🏼 +11/09/2016,Actors,@christabrittany,"great read, thank you Tim 👏👏 https://t.co/zdHr8iJWi3" +10/31/2016,Actors,@christabrittany,RT @LeoDiCaprio: #BeforetheFlood starts now on @NatGeoChannel. Tune in and join the movement. +10/25/2016,Actors,@christabrittany,so inspiring! A Political Education - A short film by Emma Holly Jones https://t.co/eef5FobPVT @emmahollyjones +10/24/2016,Actors,@christabrittany,@moonlightmov is magnificent. go see it. +10/24/2016,Actors,@christabrittany,"start writing acceptance speeches @NaomieHarris, that performance was unbelievable!! @moonlightmov 🏆🏆🏆" +10/19/2016,Actors,@christabrittany,RT @RostrumRecords: Have you seen @bravesofficial’s video for #MeTheThief starring @christabrittany yet? https://t.co/BwRYr4pSpi https://t.… +10/19/2016,Actors,@christabrittany,RT @jayrmonty: I'm on the Telly tonight! Hoorah! Watch @NBCThisisUs and meet Olivia 💥 +10/12/2016,Actors,@christabrittany,"everyone should be watching @AVAETC's film @13THFilm on @netflix. so powerful, so beautifully made. thank you Ava." +10/09/2016,Actors,@christabrittany,no objections https://t.co/qtcJ9ab6MX +10/08/2016,Actors,@christabrittany,"RT @dbernstein: Meanwhile, in the world of decent people, President Obama signed the Sexual Assault Survivors’ Rights Act today." +10/08/2016,Actors,@christabrittany,I just made a donation to the St. Luke Foundation for Haiti. go to https://t.co/QvFEZngSas to do the same. @stlukehaiti #hurricanematthew +10/07/2016,Actors,@christabrittany,breathing a sigh of relief as DJT buffoon #grabembythepussy comment has guaranteed he won't be president. I already had one foot in Canada +10/07/2016,Actors,@christabrittany,"Is there even evidence of prior presidential nominees uttering the word ""pussy"" referring to anything other than a feline?!#grabembythepussy" +10/07/2016,Actors,@christabrittany,RT @UmFrankly: Donald Trump just built a wall around all of our Bushes +10/07/2016,Actors,@christabrittany,"""grab em by the pussy."" when faced with life's challenges, this will be my new mantra" +10/07/2016,Actors,@christabrittany,laughing soooo hard at our current state of political affairs (just to keep from crying) +09/25/2016,Actors,@christabrittany,when @NicolasJaar drops his LP five days early... 🙌 +09/10/2016,Actors,@christabrittany,currently watching every Les Blank doc ever +08/11/2016,Actors,@christabrittany,can't get enough of @whoismrrobot +08/09/2016,Actors,@christabrittany,RT @aerialphysique: Aerial Physique's August Aerialist of the month the lovely CHRISTA ALLEN @christabrittany!… https://t.co/1f4ilQOr19 +07/08/2016,Actors,@christabrittany,"RT @smashleybell: ""Resisting"" arrest or being compliant, it appears to me that if you're black in America the… https://t.co/vNiGC3Wvvc" +07/07/2016,Actors,@christabrittany,RT @franklinleonard: How many others when the cameras weren't rolling? #BlackLivesMatter +07/07/2016,Actors,@christabrittany,we are all so much more alike than different +07/07/2016,Actors,@christabrittany,"I cannot believe we still live in a world where our fear of one another's perceived ""differences"" results in murder" +07/07/2016,Actors,@christabrittany,"@iJesseWilliams said it best: ""we know that police somehow manage to deescalate, disarm and not kill white people everyday""" +06/29/2016,Actors,@christabrittany,RT @BabaRamDass: https://t.co/PJ5RzETXpQ +06/25/2016,Actors,@christabrittany,"on timothy leary, on ram dass. a new perspective on death and loss of loved ones. EXCELLENT new doc! Dying to Know https://t.co/FbzzTaXucc" +06/24/2016,Actors,@christabrittany,@Blitzkreigle @MonkeylandAudio can't wait to see this film!! +06/24/2016,Actors,@christabrittany,RT @SoVeryBritish: We're going to need a bigger kettle... +06/19/2016,Actors,@christabrittany,RT @JohnMayer: I’m not complicated. It just takes a minute. +06/15/2016,Actors,@christabrittany,if you are a person who believes in facts and statistics- undeniable truths- you cannot possibly argue against the need for #gunreformNOW +06/14/2016,Actors,@christabrittany,RT @GavinNewsom: In the past 72 hours...93 people have died and 205 people have been injured due to gun violence in America. This does not… +06/12/2016,Actors,@christabrittany,RT @GhostPanther: Almost 300k have died & over a million shot in last ten years & pro-gun people want nothing done or more guns? That's ur… +06/12/2016,Actors,@christabrittany,RT @EdwardNorton: A nice way to stand with the community in Orlando: https://t.co/pSNbZxDDMc +06/12/2016,Actors,@christabrittany,there are no words for how sad this is. prayers are cool but what would really be helpful is #GunReformNOW #PrayForOrlando +06/06/2016,Actors,@christabrittany,@NickGoldson of course Beyoncé !! 👑🐝 +06/06/2016,Actors,@christabrittany,"Cate Blanchett, Helena Bonham Carter, Tilda Swinton, Helen Mirren. #favorites #dreamgirls" +05/26/2016,Actors,@christabrittany,@emmahollyjones I thought the same re: talented mr ripley. and that soundtrack.... !! 🙌 +05/25/2016,Actors,@christabrittany,"GO SEE @biggersplashuk !! it's sexy, smart, funny; brilliantly paced, directed, acted, edited. perfect film 🙌" +05/21/2016,Actors,@christabrittany,RT @askjillian: See this movie. @ZoeRCassavetes is brilliant. Must be a family thing. #John #Nick #Gena #film https://t.co/ADwQI0hkQr +04/11/2016,Actors,@christabrittany,"RT @dodo: Yes, this is how baby elephants are trained for the circus. https://t.co/5rDsblzL8o https://t.co/Qlqeq3JD0p" +04/08/2016,Actors,@christabrittany,"RT @DalaiLama: Creating a better world will require will-power, vision and determination. And for that we need a strong sense that humanity…" +04/04/2016,Actors,@christabrittany,#NowPlaying Rain by Dustin O'Halloran ♫ https://t.co/X8ERrqqnYD +04/04/2016,Actors,@christabrittany,@DustinOHalloran is the very very best 🎼💕 +04/03/2016,Actors,@christabrittany,today @JakeTAustin https://t.co/XiOL15zBfE +04/03/2016,Actors,@christabrittany,7 years ago @JakeTAustin https://t.co/4hBIYmrQEb +04/02/2016,Actors,@christabrittany,Come now we start filming at 4 +04/02/2016,Actors,@christabrittany,Hey Silicon Valley! If you're college age and want to be in a movie with me come to 1632 Mariani drive 94087. wear something fun! Frat party +03/31/2016,Actors,@christabrittany,#NowPlaying Love On Top by Beyoncé best song ever ♫ https://t.co/gHkJH1VHtb +03/20/2016,Actors,@christabrittany,subtle is sexy +03/20/2016,Actors,@christabrittany,just once I'd like to meet a vegan who doesn't ever talk about it. +03/18/2016,Actors,@christabrittany,RT @beepbeauty: Had such a blast interviewing the beautiful @christabrittany today for https://t.co/YlPuQjmL0T. Video coming soon... +03/18/2016,Actors,@christabrittany,RT @RowlyDennis: Check out my Shoot with Actress @christabrittany from revenge and watch the interview at https://t.co/Kf8q2AOQ2F +03/11/2016,Actors,@christabrittany,Yay! Congratulations @Nick_Wechsler !! https://t.co/DxYUdy3snO +02/29/2016,Actors,@christabrittany,RT @LibyaLiberty: If you're an American confusedly watching the darkest forces of ur nation rally behind a demagogue-maybe u can understand… +02/29/2016,Actors,@christabrittany,Congratulations Leonardo Dicaprio!! So much respect for using your acceptance speech to talk about #climatechange https://t.co/5m5juPC8Nd +02/29/2016,Actors,@christabrittany,YES!!! #MarkRylance +02/29/2016,Actors,@christabrittany,"RT @franklinleonard: Instead of an #Oscars, can we just give Mark Rylance a ton more major roles? Like, for our benefit." +02/29/2016,Actors,@christabrittany,"RT @emilynussbaum: Mark Ruffalo is golden in both of his excellent films about journalism, Spotlight and 13 Going On 30." +02/29/2016,Actors,@christabrittany,no idea how anyone could pick just 1 winner for Supporting Actor #oscar. ALL performances were stunning! esp. Mark Rylance & Christian Bale +02/29/2016,Actors,@christabrittany,"#Oscar predictions: Leo wins best actor, Brie wins best actress, The Big Short wins best picture" +02/28/2016,Actors,@christabrittany,RT @Kurt_Vonnegut: The practice of art isn't to make a living. It's to make your soul grow. +02/23/2016,Actors,@christabrittany,"RT @thatdonsimpson: .@thatdonsimpson's review of DAY OUT OF DAYS +#DayOutOfDays @ZoeRCassavetes https://t.co/8LLQU5LtWu https://t.co/sWS3An…" +07/01/2018,Actors,@smashleybell,@Gabriel_Mann @Revenge @ABCNetwork @EmilyVanCamp @Nick_Wechsler @RevengeWriters Love you! So good to hang yesterday 💖 +06/27/2018,Actors,@smashleybell,@zeldawilliams I love how stressed this is making you! 😹 +06/27/2018,Actors,@smashleybell,@zeldawilliams OR they develop the film and then take a picture on their phones......? This has tired me out just thinking about it. +06/27/2018,Actors,@smashleybell,.@MariahCarey could never steal from me. I’d give it to her! https://t.co/Ca5xwKjjGd +06/27/2018,Actors,@smashleybell,@zeldawilliams That sounds stressful. +06/27/2018,Actors,@smashleybell,@zeldawilliams But also Iddo shoots on 35mm and scans the negative onto his laptop. He keeps both the negative and the digital file. +06/27/2018,Actors,@smashleybell,@zeldawilliams It’s an app babe. Lol +06/23/2018,Actors,@smashleybell,@ava @PressSec @POTUS With hearts..... SCREAMING 😭😭😭 +06/21/2018,Actors,@smashleybell,"RT @EricHaywood: First: There was no hidden message. + +Then: The message refers to the media. + +Me: 🤔🤔🤔 https://t.co/qJmaDOwTRU" +06/20/2018,Actors,@smashleybell,RT @Cyndyquills: Attention white people! Here are the jobs y’all were claiming immigrants were stealing. Now is your time to apply and shin… +06/17/2018,Actors,@smashleybell,6 years married ❤️ Happy Anniversary @IddoG https://t.co/QnlgtYOY7R +06/16/2018,Actors,@smashleybell,"@KR9582 If you had to guess, what do you think his IQ is?" +06/16/2018,Actors,@smashleybell,I haven’t forgot about the IQ thing. The word you’re looking for is “COUNTRY’S”. https://t.co/2eeriAJ2pL +06/15/2018,Actors,@smashleybell,Hi 👋🏽 https://t.co/mtNBcZIzHK +06/14/2018,Actors,@smashleybell,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Actors,@smashleybell,One my favorite places to eat in Los Angeles. No… https://t.co/K0HCMRdcuP +06/13/2018,Actors,@smashleybell,"@avahodson Don’t worry, I took a picture https://t.co/yv4ej4Iqbv" +06/13/2018,Actors,@smashleybell,Thought you didn’t watch CNN? https://t.co/NXkShBxwFw +06/12/2018,Actors,@smashleybell,"Newport Beach 🖤 +📷@joeytierney https://t.co/RUSphtzgK2" +06/12/2018,Actors,@smashleybell,When you question someone’s IQ but use the wrong “too”. https://t.co/GPeRlJW0it +06/12/2018,Actors,@smashleybell,@davidwalliams Your best tweet EVER. +06/11/2018,Actors,@smashleybell,😎 https://t.co/GIXEgYBCoh +06/08/2018,Actors,@smashleybell,"RT @zeldawilliams: To anyone out there for whom living hurts so badly, the alternative seems like a viable option: I am so sorry. This life…" +06/08/2018,Actors,@smashleybell,Family portrait 🖤 https://t.co/kr9WxoYBKw +06/07/2018,Actors,@smashleybell,Pier pressure ⛱ @ Malibu Farm https://t.co/MBmZTGjafb +06/06/2018,Actors,@smashleybell,New post on https://t.co/3bpxonNmwk 🖤 https://t.co/rv0eLNFoBa +06/06/2018,Actors,@smashleybell,"RT @jonfavs: Nearly 120k voters omitted from the voting rosters in LA County because of a printing error. Among other things, this could af…" +06/04/2018,Actors,@smashleybell,Yasssss @CynthiaEriVo!!! 👏🏽👏🏽👏🏽 https://t.co/xLZT40ZZhq +05/30/2018,Actors,@smashleybell,RT @RayBLK_: Kmt. Joke ting https://t.co/4P6UciwFCB +05/27/2018,Actors,@smashleybell,@Mi55Tipper 🙌🏽👏🏽👏🏽👏🏽 +05/24/2018,Actors,@smashleybell,@MatthewACherry I can’t with you 😭😭😭😭 +05/24/2018,Actors,@smashleybell,@MatthewACherry PREACH. +05/24/2018,Actors,@smashleybell,RT @JordanUhl: Have you tried not lying? https://t.co/lDHyNBbPAl +05/22/2018,Actors,@smashleybell,RT @MuslimIQ: Accurate b/c it’s a fake target & you put it there yourself. https://t.co/vaakbMLlWh +05/21/2018,Actors,@smashleybell,RT @AzitaGhanizada: #CALIFORNIA today is your last day to register to #VOTE for June 5th primaries: https://t.co/cLRcISnPg8 @riseupandvote_… +05/21/2018,Actors,@smashleybell,Oh thanks! I had fun playing Tituba. There was a lot more I wish we explored with her. https://t.co/IQCi26Ouog +05/19/2018,Actors,@smashleybell,Saturday 🌸 https://t.co/jKr37K2gqn +05/18/2018,Actors,@smashleybell,RT @IddoG: In custody?! Oh you mean white! +05/18/2018,Actors,@smashleybell,"RT @bryanboy: No. of mass shootings in 2018 (as of 15 May): + +🇦🇺 0 +🇳🇿 0 +🇩🇪 0 +🇬🇧 0 +🇧🇪 0 +🇦🇹 0 +🇩🇰 0 +🇳🇱 0 +🇸🇪 0 +🇫🇮 0 +🇮🇪 0 +🇨🇦 0 +🇱🇺 0 +🇨🇭 0 +🇺🇸 99*" +05/17/2018,Actors,@smashleybell,@Eric_Hanke @IKEAUSA Quite sure. All the pieces are chipped and damaged 😩😩😩😩 +05/17/2018,Actors,@smashleybell,@_smithaidan @IKEAUSA I did. Twice! Zero response. Ugh. +05/17/2018,Actors,@smashleybell,How does one get a response from @IKEAUSA customer service? At this point I think they are a myth. What exactly is… https://t.co/lZ0T5ayy5V +05/15/2018,Actors,@smashleybell,RT @iamwellandgood: The travel skin-care products actress @smashleybell swears by for glowy skin https://t.co/UIVcK0uRWx +05/15/2018,Actors,@smashleybell,RT @1PhoebeJTonkin: Does anyone know any women's shelters in LA/outer Los Angeles that take clothing donations and give them directly to th… +05/13/2018,Actors,@smashleybell,@jo_elvin I love you 😹 +05/10/2018,Actors,@smashleybell,@Fashion_Critic_ She looks GORGEOUS but I’d really like designers to start making dresses with illusion netting in all skin tones. +05/09/2018,Actors,@smashleybell,W O M A N 🔮 tap for credits https://t.co/RLKZjWdpNU +05/09/2018,Actors,@smashleybell,@davidwalliams @IddoG Shot by the talented and beautiful Ashley Madekwe +05/05/2018,Actors,@smashleybell,"RT @MikelleStreet: All black celebrities have a MORAL OBLIGATION to CARRY at the Met Gala. + +THE FUCKING THEME IS ""SUNDAY BEST!"" YOU BEEN PR…" +04/29/2018,Actors,@smashleybell,How is it STILL #oldheadshotsday? +04/26/2018,Actors,@smashleybell,RT @buckotb: As part of the ‘Everyman Cinema’ music film festival ‘The Local’ are screening a film I wrote with @AshleyBelalChin called ‘Vi… +04/26/2018,Actors,@smashleybell,@ReignOfApril Tasting kitchen. Technically that’s in Venice but super close. +04/25/2018,Actors,@smashleybell,Donald Trump has got the time to tweet about Kanye but I’m still waiting for his tweets about James Shaw Jr’s heroism and the four victims. +04/25/2018,Actors,@smashleybell,I love this thread 🖤 https://t.co/xVoUjdiclQ +04/24/2018,Actors,@smashleybell,I can’t breath 💀 https://t.co/k0utOiqwF4 +04/24/2018,Actors,@smashleybell,"“These haters corny with that Russian collusion mess” +I AM DEAD 😭😭😭😭😭 https://t.co/M3GtHelPbv" +04/24/2018,Actors,@smashleybell,D E A D 💀 https://t.co/M3GtHelPbv +04/23/2018,Actors,@smashleybell,Kim says racism doesn’t exist and I’m still waiting for an answer about how and why she got a spin-off show #RHOA https://t.co/tyuDJjMtsX +04/22/2018,Actors,@smashleybell,Hey @realDonaldTrump! You gonna congratulate James Shaw Jr on his heroism or nah? +04/19/2018,Actors,@smashleybell,"When you fly home in time for lunch with your husband 🐸 @ Original Farmers Market, Los Angeles https://t.co/qRHsMu6ytO" +04/18/2018,Actors,@smashleybell,Thread! https://t.co/MCp0Yg866p +04/18/2018,Actors,@smashleybell,"Chic c'est la vie, sa bonne sa bonne https://t.co/Gt9gvkRJ6F" +04/17/2018,Actors,@smashleybell,Missing this weather and the photographer.... 📷 @IddoG 🌸 https://t.co/m4DusWm10Z +04/16/2018,Actors,@smashleybell,In flight: ‘Oprah 2020’.... a girl can dream 🤷🏽‍♀️ https://t.co/WDsXmSKjF3 +04/15/2018,Actors,@smashleybell,Bunny shoes & a top knot for last night’s date 🐰 https://t.co/epd6kTzZo4 +04/14/2018,Actors,@smashleybell,Take notes people! https://t.co/L9o9ssdsw8 +04/13/2018,Actors,@smashleybell,😎 https://t.co/HuPKPmtngm +04/13/2018,Actors,@smashleybell,@The_Lecky @NicolefcCharles +04/13/2018,Actors,@smashleybell,@The_Lecky Nicole Charles +04/12/2018,Actors,@smashleybell,Loved celebrating you last night @jamiechung1 🍾🖤 @ Skybar at Mondrian https://t.co/Ia5D5g1UJy +04/11/2018,Actors,@smashleybell,Keyboard gangster https://t.co/bUitEPCCFN +04/11/2018,Actors,@smashleybell,@SkinnyGirlFiles It’s from @whattheHELLZ! 🖤 +04/11/2018,Actors,@smashleybell,@Christiana1987 I thought the same thing when I heard people talking about Cardie’s pregnancy. +04/10/2018,Actors,@smashleybell,#MAGA Making Attorneys Get Attorneys https://t.co/n0sG81iQ6E +04/08/2018,Actors,@smashleybell,@Kevinmorosky https://t.co/1NcOYDDq0y +04/07/2018,Actors,@smashleybell,"RT @MissCooperrr: Cardi B gave us bars that have every woman's ego on 100 rn. + +Y'all thought Drake was gonna drop some arrogant music & b…" +04/07/2018,Actors,@smashleybell,"“That’s a real one in your reflection” +It’s Saturday! Tag your partner in crime 🖤 @ Girl at the… https://t.co/6kPBLp0mLz" +04/06/2018,Actors,@smashleybell,"I think all events, bars and clubs should have beds. @ TASCHEN Gallery https://t.co/BHwKQeGT9X" +04/06/2018,Actors,@smashleybell,This not how I woke up but it’s how I look now https://t.co/31LbARMwJj +04/05/2018,Actors,@smashleybell,@Christiana1987 I can’t lie. It’s mum tweets that I was mostly looking for 😹 let her live!!!!! +04/05/2018,Actors,@smashleybell,@Christiana1987 You have the tweet wedding planning updates. I insist. +04/05/2018,Actors,@smashleybell,@MontanaSymone @InternetKelvin Very eloquently put. +04/05/2018,Actors,@smashleybell,.@whattheHELLZ Um what the hellz is up with your customer service? +04/05/2018,Actors,@smashleybell,Who’s ready for the weekend? 🙋🏽‍♀️ https://t.co/upK9ws0jjk +04/03/2018,Actors,@smashleybell,Tomorrow! 😘 https://t.co/09qOAPe68Y +04/03/2018,Actors,@smashleybell,Teach you how to spell PUSSY HOLE.... you aren’t talking about a digital watch dear. #cassio https://t.co/v2VOA0TJ4p +04/03/2018,Actors,@smashleybell,@buckotb Oi hold me back +04/03/2018,Actors,@smashleybell,@Christiana1987 @Kinowolf Congratulations!!!! ❤️❤️❤️ +03/29/2018,Actors,@smashleybell,#balenciagatriples 🖤 https://t.co/CN8zYie5PR +03/28/2018,Actors,@smashleybell,So glad I held out for the silver 🖤 #balenciagatriples https://t.co/jETCvzUH10 +03/27/2018,Actors,@smashleybell,"Happy Anniversary @MariahCarey! 🦋 +(You all know I was waiting for any excuse to post this picture again!) 💖 https://t.co/gMBTlYlL4E" +03/27/2018,Actors,@smashleybell,@AnnaPaquin They held Oscar once! Turned out the vet had administered the incorrect tick treatment. He was out in 48 hours 🐯 +03/24/2018,Actors,@smashleybell,@Christiana1987 Truth 😭 +03/21/2018,Actors,@smashleybell,"RT @JaimePrimak: Twitter!!! I have an AMAZING opportunity for an African American male actor, 30s, tall, handsome (not hunky) for a dramati…" +03/20/2018,Actors,@smashleybell,ONES COUNTRY IS ENGLAND. https://t.co/1jQlnoG8wO +03/20/2018,Actors,@smashleybell,@buckotb 30.... loooooooool +03/20/2018,Actors,@smashleybell,@michcoll Always +03/20/2018,Actors,@smashleybell,@michcoll I AM D E A D +03/19/2018,Actors,@smashleybell,@bryanboy Um.... Kybella. And I'm not agreeing that you need it just being helpful! x +03/18/2018,Actors,@smashleybell,RT @nowthisnews: Everything wrong with Fox News in one video https://t.co/MhnApiQ3pG +03/17/2018,Actors,@smashleybell,RT @rizmc: Our democracies were highjacked this is insane please watch and share https://t.co/30CuT9yKgq +03/17/2018,Actors,@smashleybell,☠️ https://t.co/sDzgdvYCyN +03/15/2018,Actors,@smashleybell,@bryanboy *Downloads them all immediately +03/13/2018,Actors,@smashleybell,@Tomhopperhops @prestigeflowers I had this issue with the same company a few years ago! +03/12/2018,Actors,@smashleybell,❤️🖤❤️🖤 @ Girl at the White Horse https://t.co/KaKu0XLqUr +03/09/2018,Actors,@smashleybell,Felling Fresh Friday 🍓 @ Jon & Vinny's Restaurant https://t.co/gbfRIYAXoC +03/08/2018,Actors,@smashleybell,@NicolefcCharles 👏🏽👏🏽👏🏽👏🏽👏🏽❤️❤️❤️❤️💖 +03/07/2018,Actors,@smashleybell,Ultimate 🌟 https://t.co/iL7h5QC2ZA +03/07/2018,Actors,@smashleybell,@chrissyteigen My favorite murder +03/07/2018,Actors,@smashleybell,@Kevinmorosky @tomw_dunn No but wait... is this a blade runner parody?! +03/05/2018,Actors,@smashleybell,"RT @franklinleonard: Inclusion rider definition, for those asking. https://t.co/xc3pyM3DKL" +03/05/2018,Actors,@smashleybell,@buckotb 😭😭😭😭😭 +03/04/2018,Actors,@smashleybell,"“Or if thy mistress some rich anger shows +Imprison her soft hand, and let her rave”- Keats +I’ve… https://t.co/a9O4IjisFs" +02/26/2018,Actors,@smashleybell,But what about your bone spurs? https://t.co/gzuyEE4CyC +02/25/2018,Actors,@smashleybell,I want to work with Lynne Ramsey. Just putting that out into the universe. +02/25/2018,Actors,@smashleybell,“Difficult”: Code for “is opinionated and has a vagina”. https://t.co/u1UMrHk1T1 +02/24/2018,Actors,@smashleybell,Nope. We just went by ourselves and figured it out. Maybe a tour would have gotten the most out of our time there b… https://t.co/WOun01PTeF +02/24/2018,Actors,@smashleybell,"RT @TraceeEllisRoss: .@IssaRae, @ReginaKing and I invite u 2 come see #BlackPanther at the Baldwin Hills Crenshaw Mall Rave Cinemas tomorro…" +02/23/2018,Actors,@smashleybell,New today on #RingMyBell... my statement earring collection ⚡️ https://t.co/WKZsqKmv73 +02/23/2018,Actors,@smashleybell,Yup. It’s like listening to a nazi rally. https://t.co/GqeFz0IWXj +02/22/2018,Actors,@smashleybell,"When he says he’s “hearing more and more people say”, he’s talking about himself. https://t.co/z3v6Joil2X" +02/22/2018,Actors,@smashleybell,@zeldawilliams 😹 +02/22/2018,Actors,@smashleybell,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/22/2018,Actors,@smashleybell,"RT @Thisismlu98: Hey guys, this is my father he's been unemployed for 6 years but he is qualified up to the T. He has a Master's Degree in…" +02/22/2018,Actors,@smashleybell,"RT @jonfavs: In the wake of Sandy Hook, 54 Senators supported Obama’s push for stronger background checks, including 4 Republicans. + +Marco…" +02/22/2018,Actors,@smashleybell,RT @SarahKSilverman: So there can be an imperfect tax bill passed that “we’ll fix later” but an imperfect assault weapons ban has to be Let… +02/22/2018,Actors,@smashleybell,“But it’s too hard. Boooo hoooooo”- Marco Rubio DICKHEAD +02/22/2018,Actors,@smashleybell,#DSS 😉 https://t.co/tlaLBJhuck +02/20/2018,Actors,@smashleybell,#CFDA x @TheAlexBadia x @variety 🌸 @ Chateau Marmont https://t.co/vQIXOYxRfP +02/20/2018,Actors,@smashleybell,@Possessionista I felt the same about Ring My Bell a few years ago. I took the pressure off myself and now I just d… https://t.co/sMs4PwVTi5 +02/20/2018,Actors,@smashleybell,RT @Kevinmorosky: #WakandaForever DM me https://t.co/y0mPbLWnsf +02/19/2018,Actors,@smashleybell,🐾 https://t.co/iWcaMFzuI8 +02/19/2018,Actors,@smashleybell,"RT @francismmaxwell: The fuck are you talking about, when a police officer shoots an unarmed black man you blame the unarmed black man. htt…" +02/17/2018,Actors,@smashleybell,@erinlrrt You wanna go? Take your niece/nephew? I’ll book you tickets! #blackpanther +02/17/2018,Actors,@smashleybell,@reinedafreak I will agree that it was more of an homogenized accent rather than a specific one but it in no way de… https://t.co/s9dDLaMPF1 +02/17/2018,Actors,@smashleybell,@reinedafreak You saw it and didn't like it? I'm happy they used an African accent. We don't hear that often enough in mainstream film. +02/17/2018,Actors,@smashleybell,@Israel__lee Well I hope you get to see it soon! It’s everything they say and more 🖤 +02/17/2018,Actors,@smashleybell,@Israel__lee Where you at? I’ll get you a ticket! +02/17/2018,Actors,@smashleybell,RT @geminicollision: This guy is lying. The picture is from a 2013 Dallas Observer article about a fight outside a nightclub. Please contin… +02/17/2018,Actors,@smashleybell,Reported! https://t.co/Q4F3NeGWWi +02/17/2018,Actors,@smashleybell,@prettiestpigeon I understand. 🖤 +02/17/2018,Actors,@smashleybell,@Christiana1987 Thanks love! ❤️ +02/17/2018,Actors,@smashleybell,"Who’s going to see #BlackPanther this weekend??? And if not, why? 🖤" +02/17/2018,Actors,@smashleybell,🖤 https://t.co/MXWe2ody6v +02/17/2018,Actors,@smashleybell,@Tomhopperhops Thanks! :) +02/17/2018,Actors,@smashleybell,@Cupcake_256 You are so welcome. You deserve to see the powerful black women of Wakanda! Sending you a DM now 🖤 +02/17/2018,Actors,@smashleybell,@Christiana1987 I thought of you! +02/17/2018,Actors,@smashleybell,@Cupcake_256 I’ll book you a ticket! Which movie theatre do you want to go to? +02/17/2018,Actors,@smashleybell,".@letitiawright you KILLED it! Such an amazing performance. Nuanced, funny, warm and touching. So good. 🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤🖤" +02/17/2018,Actors,@smashleybell,Believe the hype. “Black Panther” is amazing. +02/17/2018,Actors,@smashleybell,It’s a shame it had to end this way @IddoG https://t.co/wSDF7S216V +02/16/2018,Actors,@smashleybell,Can’t wait ☂️ https://t.co/frRHqywr5e +02/16/2018,Actors,@smashleybell,"RT @Advil: as someone named Abdul i’ll never understand what it’s like to be generalized by the actions of a few. must be rough, thank you…" +02/16/2018,Actors,@smashleybell,New look on #RingMyBell https://t.co/3bpxonNmwk 🖤 https://t.co/Y3ESaxhM5u +02/16/2018,Actors,@smashleybell,@buckotb Thank yooouuuuu! 🖤 +02/16/2018,Actors,@smashleybell,@Nick_Wechsler Thanks love! +02/16/2018,Actors,@smashleybell,@Cbyt Thanks! +02/15/2018,Actors,@smashleybell,So excited 💥 https://t.co/2DuphYTOxg +02/15/2018,Actors,@smashleybell,"RT @car_nove: I was hiding in a closet for 2 hours. It was about guns. You weren't there, you don't know how it felt. Guns give these disgu…" +02/15/2018,Actors,@smashleybell,"RT @franklinleonard: “And now I want to speak to America’s children: There are people who love you, who will do anything for you, except pu…" +02/15/2018,Actors,@smashleybell,RT @Sarah_Hyland: WE NEED TO TAKE A STAND. WE NEED TO MAKE A CHANGE. HOW MANY MORE PEOPLE HAVE TO DIE FOR THAT TO HAPPEN?! #GunControlNow #… +02/14/2018,Actors,@smashleybell,Happy Valentine’s Day 🌈 https://t.co/UdYILeJgw8 +02/13/2018,Actors,@smashleybell,@wcruz73 And it’s YOUR. Prejudice is bad enough but must they always use the wrong “your/you’re”?! +02/08/2018,Actors,@smashleybell,@JasonMaza Would love that. Keep me posted ❤️ +02/08/2018,Actors,@smashleybell,@JasonMaza Bit of both. That's the charm. +02/07/2018,Actors,@smashleybell,So overwhelmed watching @donlemon tonight. What a professional. What a man. So sorry for your loss. +02/06/2018,Actors,@smashleybell,@MatthewACherry That keeps me up at night +02/04/2018,Actors,@smashleybell,Barefoot Sundays 🌺 https://t.co/Sip0xdo9iN +02/04/2018,Actors,@smashleybell,@YetideBadaki 🖤🖤🖤🖤 +02/04/2018,Actors,@smashleybell,When women speak up and advocate for our safety on set we are labeled as “difficult”. I speak from personal experie… https://t.co/SWBr416STd +02/02/2018,Actors,@smashleybell,@CynthiaEriVo Omg. Who is this?! 😻 +02/02/2018,Actors,@smashleybell,He said “Jar Jar Binks” 😹💀😹💀 https://t.co/5pApom3RRY +02/02/2018,Actors,@smashleybell,@sethgabel So sorry Seth. 🖤 +02/02/2018,Actors,@smashleybell,@Christiana1987 And still looking YOUTHFUL. Yas gawd. 🙌🏽 +02/01/2018,Actors,@smashleybell,@buckotb I’m very good at notes! +02/01/2018,Actors,@smashleybell,"RT @shondarhimes: Okay. Entertainment industry, time to stop using the phrases ""Smart Strong Women"" and ""Strong Female Leads"". There are…" +01/31/2018,Actors,@smashleybell,RT @franklinleonard: Send some kids in Compton to see #BlackPanther! https://t.co/AXFecxMYdk +01/30/2018,Actors,@smashleybell,Eyes rolled all the way back in my head 🙄 https://t.co/xtopkzAPNy +01/27/2018,Actors,@smashleybell,Well said 🖤 https://t.co/6eZnwbdrsj +01/25/2018,Actors,@smashleybell,😭😭😭😭😭😭😭😭 https://t.co/jLyGWwufaW +01/25/2018,Actors,@smashleybell,Same 🙋🏽‍♀️ Bi-racial girl from south London and the school was drama school. https://t.co/k4ZBYq3slH +01/24/2018,Actors,@smashleybell,@chrissyteigen He’ll be flattered and is the nicest most polite guy. Say hi! And then say hi from me :) +01/24/2018,Actors,@smashleybell,😁 https://t.co/8t0ve15ikq +01/24/2018,Actors,@smashleybell,@BagSnob I love you 🖤 +01/23/2018,Actors,@smashleybell,I don’t call that an apology. Apologies should not include excuses. She all but pulled the “but I have a black frie… https://t.co/rFnHSe0iZm +01/23/2018,Actors,@smashleybell,How not to apologize by Ulyana. https://t.co/0fI1a2EIrQ +01/23/2018,Actors,@smashleybell,I am SCREAMING!!!! Yasssss!!!! https://t.co/2DwD2Tm6ss +01/22/2018,Actors,@smashleybell,Wearing galvanlondon to the EW SAG awards nominee party this weekend. I loved those tassels! @… https://t.co/LFlrg5nimn +01/19/2018,Actors,@smashleybell,🖤 by estynelan https://t.co/ba92TvhkzP +01/18/2018,Actors,@smashleybell,👏🏽👏🏽👏🏽👏🏽 https://t.co/5wasLtdSDP +01/18/2018,Actors,@smashleybell,"Damn, this fired me up. Yesssss Ellen! 👏🏽👏🏽👏🏽👏🏽👏🏽👏🏽👏🏽 https://t.co/dX0a9dNhB5" +01/17/2018,Actors,@smashleybell,🍓 https://t.co/Y35QPCqMdg +01/16/2018,Actors,@smashleybell,Today on #RingMyBell ❤️ https://t.co/KeR9DLkNkX +01/14/2018,Actors,@smashleybell,They’re worth the hangover 🎀 https://t.co/xaRuIii02K +01/12/2018,Actors,@smashleybell,@Sarah_Hyland @TomiLahren I love you Sarah. +01/12/2018,Actors,@smashleybell,@Helen_Hird @OfficialRodarte Love it! 😻 +01/12/2018,Actors,@smashleybell,"RT @ksieff: Hey Tomi, Washington Post shithole bureau chief here. Love your foreign affairs reporting. Did you know there are 8.7 million A…" +01/12/2018,Actors,@smashleybell,RT @Christiana1987: I am proud to be of shithole descent. 🇳🇬 +01/12/2018,Actors,@smashleybell,Word. https://t.co/5uC3g05Rvg +01/09/2018,Actors,@smashleybell,Girls on Film 📷: @IddoG https://t.co/ArTq2wN77s +07/01/2018,Actors,@BarrySloane,- @SIXonHISTORY won’t be returning for a S3 - But it’s important that these stories continue to be told. Shining a… https://t.co/vvvpQFSNP8 +07/01/2018,Actors,@BarrySloane,"@richardipshort @SergioRamos Nah, just being bitter. I learned from @Katysloane. 👍🏻" +07/01/2018,Actors,@BarrySloane,On a scale of 1 to well that’s fucking Karma isn’t it - was @SergioRamos crying? 😂 +07/01/2018,Actors,@BarrySloane,Yes Lad!! Dio 99 @LAFC 👊🏻🔥 https://t.co/KSivWofXbR +06/30/2018,Actors,@BarrySloane,"Thanks for all the support for #Six - +You guys are amazing. 💪🏻🐻👊🏻 https://t.co/QAT8jat4jM" +06/30/2018,Actors,@BarrySloane,RT @HistoryTVCanada: SEALs put their fears aside to get the job done. #SIX https://t.co/Ry9A8LcWtt +06/30/2018,Actors,@BarrySloane,"RT @Watch_LFC: 🔴 | It’s July 1st, reds. https://t.co/pY4PR3SYko" +06/30/2018,Actors,@BarrySloane,RT @ProD_Soccer: Pavard's goal belongs in the Louvre. https://t.co/PxejN2pKKx +06/29/2018,Actors,@BarrySloane,What a ride! Sorry to say that @SIXonHISTORY will not be back for a season 3. To all our amazing fans THANK YOU. 💪🏻🐻👊🏻 +06/29/2018,Actors,@BarrySloane,"See #JoeNeverMisses 💪🏻🐻👊🏻 +#SIXonHISTORY https://t.co/B6HsGyLB2B" +06/29/2018,Actors,@BarrySloane,"Daily Alarm 🚨 + +Day 3 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are doing… https://t.co/x2R0EH6W6Y" +06/28/2018,Actors,@BarrySloane,RT @oliviamunn: Did you know that a special ops veteran and his Marine veteran dad created @SIXonHISTORY ? 🙌🇺🇸 Read more here: https://t.c… +06/28/2018,Actors,@BarrySloane,Did you know that a special ops veteran and his Marine dad created @sixonhistory ? https://t.co/0Qjk4oSyPO +06/28/2018,Actors,@BarrySloane,Last nights bus ride on @SIXonHISTORY was not in the least bit awkward. Not at all. Not even a bit. Nope. 👀… https://t.co/gE9vreqgxK +06/28/2018,Actors,@BarrySloane,Great night spent with the warriors from @wwp watching #SIXonHISTORY - such an honor to represent the men and women… https://t.co/7MlAhpmXqG +06/28/2018,Actors,@BarrySloane,RT @IamDominicAdams: Life is like a box of Navy SEALs gunning for your blood. You never know if you're gonna survive #SixOnHistory #michael… +06/28/2018,Actors,@BarrySloane,"RT @EdwinHodge: Had a great time watching sixonhistory with the real hero’s from @wwp If you can’t walk a mile in their shoes, at least tak…" +06/28/2018,Actors,@BarrySloane,RT @KSamuelCohen1: I hope @HISTORY sees this tweet and realizes that @SIXonHISTORY MUST HAVE A THIRD SEASON!!!!!! Go season 3 of SIX!!!!!!!… +06/28/2018,Actors,@BarrySloane,RT @IamDominicAdams: If that bus could talk....and it worked like a dream. 'Short bus' @juanpabloraba @BarrySloane @EricLadin @EdwinHodge @… +06/28/2018,Actors,@BarrySloane,RT @SIXonHISTORY: #SIXonHISTORY https://t.co/mH1v002ar7 +06/27/2018,Actors,@BarrySloane,"Day 2 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are doing this to raise aw… https://t.co/9YJo3j1y2N" +06/27/2018,Actors,@BarrySloane,RT @EdwinHodge: TUNE IN TONIGHT! Head over to @WWP Instagram page where I and other sixonhistory cast members will be LIVE with Wounded War… +06/27/2018,Actors,@BarrySloane,"RT @IamDominicAdams: Tonight's episode of @SIXonHISTORY brought to you from inside Mikey N's head. #sixonhistory 10/9c +#michaelnasry #juras…" +06/27/2018,Actors,@BarrySloane,"TONIGHT at 10/9c +@SIXonHISTORY #SIXonHistory #SIXlive https://t.co/QjiVXA4llQ" +06/27/2018,Actors,@BarrySloane,"Day 1 of my #20420Challenge +20 mins of meditation for 20 days. My wife @katysloane and I are starting this to raise… https://t.co/5T3ug5AdRr" +06/26/2018,Actors,@BarrySloane,"Monday ✔️ +Not a bad way to start the week... +#YosemiteNationalPark 🙌🏻 +@Katysloane and I will be starting our 20/20… https://t.co/SpfjaeNiGe" +06/25/2018,Actors,@BarrySloane,@IamDominicAdams @SIXonHISTORY @HISTORY Wonderful 👌🏻 #SixOnHistory #Six https://t.co/YGy4lADLZS +06/25/2018,Actors,@BarrySloane,"RT @rustyrockets: It isn't a luxury. +https://t.co/dO1pZmkW52 https://t.co/KaycjBMOKp" +06/24/2018,Actors,@BarrySloane,RT @RitaPanahi: Superb 🤣 https://t.co/EivrQbIeI4 +06/24/2018,Actors,@BarrySloane,"Once more onto the pitch dear friends, once more, to raise up these walls with our English cheer. When the whistle… https://t.co/WgIy6oBT04" +06/24/2018,Actors,@BarrySloane,RT @HISTORYUK: Join @BarrySloane for @SIXonHISTORY from the very beginning tonight at 10pm. Brand new season 2 starts August. #SIXonHISTORY… +06/24/2018,Actors,@BarrySloane,UK #SIXonHISTORY fans. Great News! Season 2 airs in August!! On @HISTORYUK - Make sure to get the word out that Sea… https://t.co/u7Is6R3KXf +06/24/2018,Actors,@BarrySloane,"Once more onto the pitch dear friends, once more, to raise up these walls with our English cheer. When the whistle… https://t.co/WEWvkYAlEm" +06/24/2018,Actors,@BarrySloane,"🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿 +@England @FIFAWorldCup +https://t.co/DCRDr80q6P" +06/24/2018,Actors,@BarrySloane,"RT @DonnieWahlberg: Next time you are about to tweet something negative about someone you dislike — STOP! + +Take a moment. + +Then try tweetin…" +06/24/2018,Actors,@BarrySloane,"RT @FootballFact101: A blind and deaf Brazilian football fan celebrating Coutinho’s goal today, dope shit.🙌🏾 Shout out to the guy helping h…" +06/22/2018,Actors,@BarrySloane,"If the guy hadn’t retreated to his ‘Prius’ Bear absolutely would have done. +😂🤣 #SIXonHistory @HerculesHandy https://t.co/FwyDNgJzEa" +06/22/2018,Actors,@BarrySloane,Proud to be representing the #UK here in #America. Watch the first series of #SIXonHISTORY Sundays at 10pm on… https://t.co/iGKTIiQ81e +06/21/2018,Actors,@BarrySloane,RT @SIXonHISTORY: There's always a turning point. What was yours? #SIXonHISTORY https://t.co/r11nJojWnh +06/21/2018,Actors,@BarrySloane,RT @classiclib3ral: How had Jordan Peterson never heard this extremely basic counter argument to his position before https://t.co/gTdLm166Hj +06/21/2018,Actors,@BarrySloane,"Wonderful performances from @iamkyleschmid and #SavannahWelch +Heartbreaking. And kudos to our writers and producers… https://t.co/6wTJva19FX" +06/21/2018,Actors,@BarrySloane,Superb!!! 😂😂😂😂 #SixOnHistory #SIXLive https://t.co/niwbJltSct +06/21/2018,Actors,@BarrySloane,"Strange Bush Girl: Hey, I like taking pictures. +Annabellle: My Dad used to be in @NarcosNetflix we should totally… https://t.co/tSEggLzeFz" +06/21/2018,Actors,@BarrySloane,"Chase drives a Prius. 👀 +@EdwinHodge #SeaFoamGreen +#SIXonHISTORY #SIXLIVE https://t.co/WvCTzD3sZ1" +06/21/2018,Actors,@BarrySloane,"RT @livelikebriana: You’re gonna do some what, Lena? #SIXLIVE #SixOnHistory https://t.co/iutViZZ2db" +06/21/2018,Actors,@BarrySloane,What the fuck is ‘plaining’?! And should you do it with another mans wife? Asking for a friend. @TheBrianneDavis… https://t.co/myXU9kbMJy +06/21/2018,Actors,@BarrySloane,https://t.co/GHDSonTNYe +06/21/2018,Actors,@BarrySloane,Tonight’s @SIXonHISTORY involves a water based op. It looks something like this. 🐻 #SIXLIVE https://t.co/Ti3Z5ye3iw +06/21/2018,Actors,@BarrySloane,"Ok #SIXonHISTORY fans, let’s start talking. Use #SIXLIVE to ask any and all questions. 💪🏻🐻👊🏻 https://t.co/Is2cLJqwVY" +06/21/2018,Actors,@BarrySloane,RT @SIXonHISTORY: What does Plan B look like? Find out Tonight at 10/9 C. #SIXonHISTORY https://t.co/t1GVvMGJja +06/21/2018,Actors,@BarrySloane,"Make sure to watch #SIXLIVE TONIGHT at 10/9c on @history #BonJovi @bonjovi +#FD1 - #JoeNeverMisses +@history 💪🏻🐻👊🏻 https://t.co/vbOv45F0gO" +06/20/2018,Actors,@BarrySloane,#WatchYourSix - Ep 5 Tonight! We’re halfway… https://t.co/mQoiC6I7PB +06/20/2018,Actors,@BarrySloane,RT @NNikolaeff: Bring it. This was a particularly psychologically hard episode for me to get my head around. To bring to life these irrever… +06/20/2018,Actors,@BarrySloane,"RT @oliviamunn: New episode of SIX tonight. #Repost @SIXonHISTORY +・・・ +She needs his information, and he needs her mercy. See their power s…" +06/20/2018,Actors,@BarrySloane,"RT @MattLittler: OK, I'm making a short film, I need your help, if you can RT, or even get involved please do. It features the brilliant @m…" +06/20/2018,Actors,@BarrySloane,"Don’t mind if I do. 👌🏻 +#JackNicholson #OneFlewOverTheCuckoosNest https://t.co/YGg9Ht4Gl0" +06/20/2018,Actors,@BarrySloane,"RT @myqkaplan: good night. + +you have done it once more. +you have lived a whole day. +you have risen and traveled and worked. + +you have seen…" +06/20/2018,Actors,@BarrySloane,RT @TheBrianneDavis: New episode tomorrow night @SIXonHISTORY @HISTORY #SixOnHistory https://t.co/YPbJ1UyJ0H +06/20/2018,Actors,@BarrySloane,"RT @IamDominicAdams: @sixonhistory tomorrow night 10/9c Michael may be loosing the plot. In fact, they all may be loosing the plot... #sixo…" +06/19/2018,Actors,@BarrySloane,"THIS SEASON on @SIXonHISTORY +💪🏻🐻👊🏻 https://t.co/uRpCWpwKtl" +06/19/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: ""Hit the deck!"" #SIXLive #SIXonHISTORY https://t.co/9yn71E9068" +06/18/2018,Actors,@BarrySloane,"RT @England: What a moment! 🙌 + +#threelions + +https://t.co/dsY0HRzZJk" +06/18/2018,Actors,@BarrySloane,"RT @Andrew_Heaton: This, by Romelu Lukaku, is truly something else. Very rare for footballers to be so open, which in itself is a shame. + +W…" +06/17/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Every mission has consequences. Witness the fallout Wednesdays at 10/9 C. #SIXonHISTORY https://t.co/sfR9YrFlX6 +06/15/2018,Actors,@BarrySloane,"RT @HerculesHandy: Yes even one of the baddest people in the @SIXonHISTORY universe enjoys going to the playground + +Joe Bear Graves +@Barry…" +06/15/2018,Actors,@BarrySloane,RT @meawwofficial: Can you teach an old dog new tricks? This show gives us a resounding YES. @SIXonHISTORY #SIXonHISTORY @BarrySloane @juan… +06/14/2018,Actors,@BarrySloane,@MiloVentimiglia Haha. Yes Bro. Get It! 💪🏻👊🏻 +06/14/2018,Actors,@BarrySloane,"We don’t just blow shit up on @SIXonHISTORY.....But when we do blow shit up, We BLOW SHIT UP. +#SIXLIVE #SIXonHISTORY" +06/14/2018,Actors,@BarrySloane,That fucking broke me @iamkyleschmid @LindsleyRegi wonderful. #SIXLIVE #SIXOnHistory +06/14/2018,Actors,@BarrySloane,"Thank you Tom, this is why we make the show. #SIXonHISTORY #SIXLIVE @SIXonHISTORY https://t.co/8rSRWlPrSO" +06/14/2018,Actors,@BarrySloane,Take a bow @TheBrianneDavis Take a bow. #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#FishTale Part2 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,@celihangout 👍🏻 #SIXLIVE #SIXonHISTORY https://t.co/pRn7q7Xb2r +06/14/2018,Actors,@BarrySloane,"#SealTeamSpace 👀🚨 #JoeNeverMissesAParkingOppertunity +#SIXLIVE #SIXonHISTORY https://t.co/XQazE28C3T" +06/14/2018,Actors,@BarrySloane,Last scene was shot in the #Vancouver Aquarium 🦈👌🏻🙌🏻 #SIXLIVE #SIXonHISTORY https://t.co/RdkprEpIBE +06/14/2018,Actors,@BarrySloane,Yes a #ChaseTale 👊🏻 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Bout time we got a #FishTale #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Remember Season 1 he had to provide a sample. #Link #SIXLIVE #SIXonHISTORY https://t.co/RnhvW6YMLO +06/14/2018,Actors,@BarrySloane,"RT @EricLadin: @BarrySloane Trevor looking back at bear. +#SIXlive #SIXonHISTORY https://t.co/RQpI7F2VXP" +06/14/2018,Actors,@BarrySloane,Bear looking at Trevor 👀 #SIXLIVE #SIXonHISTORY @EricLadin https://t.co/4WVrHsyidU +06/14/2018,Actors,@BarrySloane,@Wee3Minis @EricLadin 👀 https://t.co/EP8Qx7Yqp5 +06/14/2018,Actors,@BarrySloane,Trevor’s #Truth #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#AssToFace @juanpabloraba 😂😂😂 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,Good to see Mutaqqui back 👀🎯 #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,#SIXLIVE will we see the #GinaCarabiner #SIXonHISTORY @oliviamunn +06/14/2018,Actors,@BarrySloane,Here we go #SIXLIVE #SIXonHISTORY +06/14/2018,Actors,@BarrySloane,4 Mins Out #WatchYourSix @SIXonHISTORY #SIXLIVE #SIXonHISTORY https://t.co/w8jZUzEsVW +06/14/2018,Actors,@BarrySloane,RT @iamkyleschmid: Less than 10 minutes to episode 4!!! Join us as we tweet live! #sixonhistory #sixlive +06/14/2018,Actors,@BarrySloane,https://t.co/r5yRVRkLD8 +06/13/2018,Actors,@BarrySloane,RT @NNikolaeff: Thank you @TheReelTalker for the interview discussing @SIXonHISTORY and @Mile22Movie. Been a big year and I’m very grateful… +06/13/2018,Actors,@BarrySloane,Too much Ketchup? Burger Malfunction? It happens. Fear not. Be strong. 👍🏻 #SixOnHistory #SIXLIVE https://t.co/HEc5Seawls +06/13/2018,Actors,@BarrySloane,RT @oliviamunn: All-new episode of #SIXonHISTORY TONIGHT on @HISTORY at 10/9c. (Remember: this show is not suitable for your kids to watch.… +06/13/2018,Actors,@BarrySloane,"You all caught up? Make sure to watch #SIXLIVE TONIGHT!!! at 10/9c on @history +#FD1 - #JoeNeverMisses 💪🏻🐻👊🏻🇺🇸 +🐍🎯 https://t.co/XnoBo7MrMQ" +06/13/2018,Actors,@BarrySloane,"RT @TheAnfieldWrap: You: “We’ve gone from Allison and Fekir to Butland and Shaqiri. The club are a joke. We’re gonna get relegated.” 🤯 + +Jür…" +06/13/2018,Actors,@BarrySloane,#WatchYourSix - Great afternoon promoting… https://t.co/uv2jgux4FJ +06/13/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: With a mission this challenging, compromise is part of the game. #SIXonHISTORY https://t.co/Y3jceB8LMh" +06/12/2018,Actors,@BarrySloane,@celihangout @IamDominicAdams @thedanlindgren @nadinevelazquez @SIXonHISTORY @afterbuzztv @juanpabloraba… https://t.co/S1P4BUfvLm +06/12/2018,Actors,@BarrySloane,RT @oliviamunn: Sneak peek of tomorrow night’s new episode of SIX. @SIXonHISTORY on @HISTORY Wednesdays 10/9c #SIXonHistory https://t.co/LA… +06/12/2018,Actors,@BarrySloane,I won’t start playing your game. Not yet at least......👀 🐍 Vs 🐻 https://t.co/me2lEyU5Ly +06/12/2018,Actors,@BarrySloane,@IamDominicAdams @thedanlindgren @nadinevelazquez @SIXonHISTORY @afterbuzztv @celihangout @juanpabloraba… https://t.co/iMBHGFmW0L +06/12/2018,Actors,@BarrySloane,Thanks man. It’s appreciated. 👊🏻 #SIXonHISTORY #LukeCage https://t.co/pZ5hlb4Cd6 +06/12/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: Ready or not, here they come. Join SEAL Team SIX on Wednesdays at 10/9 C. #SIXonHISTORY https://t.co/tTqFvZ57fE" +06/11/2018,Actors,@BarrySloane,"RT @scotwilliams: As people go to buy The S*n today, we say to them, you have a choice... + +Fund a Tory/UKIP loving toxic rag that accused…" +06/11/2018,Actors,@BarrySloane,This is the kind of article that makes us at @SIXonHISTORY very proud. Thanks @WeAreTheMighty 👊🏻 #SixOnHistory https://t.co/bZCAMs3OFf +06/11/2018,Actors,@BarrySloane,"Wednesday 10/9C on @HISTORY +@SIXonHISTORY 💪🏻🐻👊🏻 https://t.co/NHjuL91lSj" +06/11/2018,Actors,@BarrySloane,RT @Katysloane: I’m super excited to announce that I will be… https://t.co/Nq73ALHOkd +06/11/2018,Actors,@BarrySloane,That is correct 👍🏻🇬🇧 #FatherBrown https://t.co/2l1YDYYR0V +06/10/2018,Actors,@BarrySloane,"RT @rustyrockets: How do we deal with fear? +https://t.co/dO1pZmkW52 https://t.co/b4z4JR9v8z" +06/10/2018,Actors,@BarrySloane,"RT @SachinNakrani: The “whole of London”? I was in Greenwich drinking beer and eating a burger you absolute fuckwit + +Oh, and that’s a photo…" +06/10/2018,Actors,@BarrySloane,"RT @LAFC: What an ending! + +The @SanManuelCasino Thrill of the Match: Our miraculous comeback in stoppage time! https://t.co/517iFRGnD4" +06/09/2018,Actors,@BarrySloane,"Well I highly rate this tweet Dayna. +Appreciated. 💪🏻🐻👊🏻 #SixOnHistory #Six https://t.co/6Yi20x09JD" +06/09/2018,Actors,@BarrySloane,And he’s looks a Badass! 👊🏻 🙌🏻🇬🇧 https://t.co/fcUyUIcBcQ +06/09/2018,Actors,@BarrySloane,"RT @ProfBrianCox: You can convince people to vote to abolish gravity, but they will be very pissed off with you when they hit the ground. h…" +06/09/2018,Actors,@BarrySloane,"RT @tvserieshub: Some watch TV at night @juanpabloraba exercises 😂 + +#SixOnHistory https://t.co/iqXoLekcHw" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @Beatles_27 @ABC7NY In 12 years working in the UK, I only used one weapon on stage once in a play. It… https://t.co/OtR1MND18e" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @liamgallagher I was interested in the character of Joe Graves from the outset, My beliefs, likes, wh… https://t.co/Mr9Cu8g7Mg" +06/08/2018,Actors,@BarrySloane,"@PAFlyFisher2 @Beatles_27 @ABC7NY Yes, ‘Acting’ as a member of the US armed forces, all of whom I have no issue wit… https://t.co/RoBYdeBUui" +06/08/2018,Actors,@BarrySloane,@PAFlyFisher2 @liamgallagher So only actors who ‘like’ guns can use them in TV and Movies? Is that what you’re sayi… https://t.co/mSB43qNzMK +06/08/2018,Actors,@BarrySloane,@PAFlyFisher2 @Beatles_27 @ABC7NY I’m not doing movies. And it’s ‘Acting’ darling. 😂 +06/08/2018,Actors,@BarrySloane,"🙌🏻 #LEGEND - SIR @kennethdalglish +@LFC @LFCUSA https://t.co/Z6T0AfGyCl" +06/08/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Chase puts his emotions on the back burner when he's in the field. #SIXonHISTORY https://t.co/n26kZMbmA3 +06/08/2018,Actors,@BarrySloane,Me refreshing @NabilFekir notifications on here.......@LFC #AnnounceFekir https://t.co/QENjKxv4Dm +06/08/2018,Actors,@BarrySloane,Thanks for the shoutout today on your show @HowardStern - Glad to hear you’re enjoying @SIXonHISTORY #SIXonHistory +06/07/2018,Actors,@BarrySloane,"Can this #Fekir lad play in goal? 👀 +Yeeerse The Reds 🚨 @LFCUSA @LFC @NabilFekir 🔥" +06/07/2018,Actors,@BarrySloane,#WatchYourSix - I told you #JoeNeverMisses - So what did you guys think about last night? Let me know in the commen… https://t.co/8c3INCAur4 +06/07/2018,Actors,@BarrySloane,"RT @MensJournal: “I know Tom Cruise says this a lot, but we don’t have any stunt doubles to do any of the SEAL stuff.” https://t.co/eRI73v2…" +06/07/2018,Actors,@BarrySloane,Agreed. #SIXLive #SIXonHISTORY https://t.co/ouz1n0XMRX +06/07/2018,Actors,@BarrySloane,RT @NNikolaeff: I know!!! It looked better in theory. Toight. https://t.co/mcXxoZ6hjE +06/07/2018,Actors,@BarrySloane,Here’s us giving @Jaylen_Moore ‘support’ before he was secured to the side of a helicopter and taken up into sky 😂😂… https://t.co/cncx3C4Out +06/07/2018,Actors,@BarrySloane,RT @EdwinHodge: West Coast!! 1 minute before @SIXonHISTORY begins. This was one of my favorite episodes to film this season! #SIXLive #SIXo… +06/07/2018,Actors,@BarrySloane,"The Templars are seldom wrong, right @tom_cullen 👊🏻 #SixLive #SIXonHISTORY #KnightFall @KnightfallShow @SIXonHISTORY https://t.co/iqwOSQPRxw" +06/07/2018,Actors,@BarrySloane,"RT @islandshortie: When im watching @SIXonHISTORY , it feels like real seals on my screen, great writing and acting, @EdwinHodge @BarrySloa…" +06/07/2018,Actors,@BarrySloane,What a wonderful tweet. Thanks @CarissaPavlica 👍🏻 #SIXonHISTORY #SIXLive https://t.co/8DEMRwSIp1 +06/07/2018,Actors,@BarrySloane,"RT @EricLadin: That MMA fire fight sequence was 🔥 +#SIXLive #SIXOnHistory" +06/07/2018,Actors,@BarrySloane,I concur. 👍🏻 #SIXLive #SIXonHISTORY https://t.co/PxtmIq5EHo +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: Just saying! #SIXonHistory https://t.co/DzrVnhbxDr +06/07/2018,Actors,@BarrySloane,"RT @Katysloane: Blown away by tonight’s episode of @SIXonHISTORY ! Omg! + #SIXLive #SIXOnHistory" +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: BAD BEAR!!! https://t.co/RufYv4MBVb +06/07/2018,Actors,@BarrySloane,Indeed. #SIXlive https://t.co/Kv0zdPX0Bg +06/07/2018,Actors,@BarrySloane,Lovely Stuff. #SixLive https://t.co/uD0UVmDa8I +06/07/2018,Actors,@BarrySloane,Same. 👀 #SIXLive https://t.co/YIYjscJGQC +06/07/2018,Actors,@BarrySloane,It’s going to GO DOWN soon........#SIXLive +06/07/2018,Actors,@BarrySloane,That last scene was filmed at night in a non moving vehicle being shaken by the crew. 😂💪🏻 TV magic 👌🏻#SIXLIVE +06/07/2018,Actors,@BarrySloane,Same. 👊🏻 #SIXLIVE https://t.co/UYNjklIlRm +06/07/2018,Actors,@BarrySloane,Who’s watching #SIXLive ? https://t.co/1fWS70GoKF +06/07/2018,Actors,@BarrySloane,Snitches get stiches Mick #SixLive +06/07/2018,Actors,@BarrySloane,"RT @EricLadin: Hey look what I found! +#SixLive #SIXOnHistory https://t.co/jWotFyhoy6" +06/07/2018,Actors,@BarrySloane,Micky doin the Dua...... #SIXLive +06/07/2018,Actors,@BarrySloane,YA THINK 👀 #SIXLIVE https://t.co/LoIHiqTlh9 +06/07/2018,Actors,@BarrySloane,"RT @EdwinHodge: I know the game is on, but to those who are watching, thanks for joining us tonight east coast!!! @SIXonHISTORY #SIXLIVE #s…" +06/07/2018,Actors,@BarrySloane,"Marrisa 🎯 #JoeNeverMisses +#SixLive #SIXonHISTORY" +06/07/2018,Actors,@BarrySloane,👀 #SIXLIVE #TrevorTalks @EricLadin https://t.co/Mz4qGbCdRi +06/07/2018,Actors,@BarrySloane,Truth https://t.co/L0F9N22iC8 +06/07/2018,Actors,@BarrySloane,Fish don’t fuck about #SIXonHistory +06/07/2018,Actors,@BarrySloane,Trev is taking it UP #SIXonHistory +06/07/2018,Actors,@BarrySloane,RT @juanpabloraba: Man @iamkyleschmid hang over is a bitch ha?? #SIXonHistory #SIXLIVE +06/07/2018,Actors,@BarrySloane,Bear don’t surf #SixLive +06/07/2018,Actors,@BarrySloane,Loose lips sink ships Mickey Boy 👀 #SixLive +06/07/2018,Actors,@BarrySloane,He gonna do it? #SixLive +06/07/2018,Actors,@BarrySloane,The Prince! #SixLive +06/07/2018,Actors,@BarrySloane,#SixLive NOW https://t.co/sx6HKvEEuJ +06/07/2018,Actors,@BarrySloane,"RT @tvserieshub: Here we go!! #SixonHistory starts now! +-Kelsey" +06/07/2018,Actors,@BarrySloane,RT @IamDominicAdams: @SIXonHISTORY S2 Ep 3 #SixOnHistory #michaelnasry https://t.co/XfedAN88TM +06/07/2018,Actors,@BarrySloane,Same. #SIXonHISTORY 👊🏻 #SIXLIVE https://t.co/66sNPToDrV +06/07/2018,Actors,@BarrySloane,https://t.co/qWAybTJzfW +06/07/2018,Actors,@BarrySloane,"#Bear ♥️ #America 🇺🇸 💪🏻🐻👊🏻 +#SIXonHISTORY #SixLive #Six https://t.co/xFueVsvnFB" +06/06/2018,Actors,@BarrySloane,RT @BarrySloane: WatchYourSix - For Episode 3 of @sixonhistory Joe gets a #Shave and a #Haircut courtesy of @candices ✂️ Remember it’s impo… +06/06/2018,Actors,@BarrySloane,"RT @BarrySloane: How we shot the Blackhawk scenes midair on @SIXonHISTORY 💪🏻🐻👊🏻 +#SixOnHistory #SixLive https://t.co/veYBQADZFA" +06/06/2018,Actors,@BarrySloane,"#JoeNeverMisses 👀🎯 +#SIXonHISTORY #SixLive #Six https://t.co/8Uo4uaGary" +06/06/2018,Actors,@BarrySloane,"#Repost @andystumpf77 +・・・ +It is an odd thing,… https://t.co/odFSBYLVKi" +06/06/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: When Bear is in the zone, nothing can steal his focus. See him in action tonight, 10/9 C. #SIXonHISTORY https://t.co/5run…" +06/06/2018,Actors,@BarrySloane,"Bear is dealing with RIPs death in his own way, grief finds strange places to place itself. There will be lots more… https://t.co/7ntuZjMLNo" +06/06/2018,Actors,@BarrySloane,RT @EricLadin: One of my favorite parts of the job is the preparation. Learning & absorbing as much information as I can about the characte… +06/06/2018,Actors,@BarrySloane,"In a Van, wearing an earpiece and a hoodie,… https://t.co/gIISbQp1cS" +06/06/2018,Actors,@BarrySloane,"RT @oliviamunn: New episode of SIX on @HISTORY TONIGHT 10/9c. (And please remember this show gets dark, so please don’t let your kids watch…" +06/06/2018,Actors,@BarrySloane,"RT @SIXonHISTORY: #1: The mission #2: Everything else. Watch @SIXonHistory on its NEW night, tonight at 10/9c. https://t.co/zYXhO8DTaG" +06/06/2018,Actors,@BarrySloane,For fans of @TheWhispersABC take a look at our inspiration from the inimitable #RayBradbury #ZeroHour @shugh100… https://t.co/VuuqAvqkp0 +06/06/2018,Actors,@BarrySloane,"Glad you enjoyed @TheWhispersABC - were all very proud of it, sadly the TV Gods at ABC decided that the story ended… https://t.co/R8LLf2wrF7" +06/06/2018,Actors,@BarrySloane,@thejamessutton Smash it lad 🍻🍾 +06/06/2018,Actors,@BarrySloane,@damianholbrook @SIXonHISTORY @TVInsider Indeed. 👍🏻👊🏻 🍻 +06/06/2018,Actors,@BarrySloane,Always great talking @SIXonHISTORY with @damianholbrook - Extra points if you can understand my accent first time.… https://t.co/ncdLHJdY0b +06/06/2018,Actors,@BarrySloane,#WatchYourSix - It’s a Capture/Kill mission… https://t.co/IcVQ9HoCLZ +06/06/2018,Actors,@BarrySloane,@Soniasuponia @elijahwood For you @DPCarv 😂👌🏻 +06/06/2018,Actors,@BarrySloane,"Check out the @SIXonHISTORY - @afterbuzztv show - Tonight! At 7pm. +💪🏻🐻👊🏻 #SixOnHistory #SIXLIVE https://t.co/N1JfGWgMAU" +06/06/2018,Actors,@BarrySloane,"Great interview with @MensJournal about @SIXonHISTORY - My prep for the role, accents, @Stranger_Things and more.... https://t.co/CMFoEJAVkL" +06/06/2018,Actors,@BarrySloane,"RT @mjfit: From scaling mountains to hiking over raging rivers, the cast of @SIXonHISTORY did it all to prepare for Season 2. + +We spoke wit…" +06/06/2018,Actors,@BarrySloane,RT @Matthew_Jussim: Loved getting to chat with the awesome @BarrySloane about Season 2 of @SIXonHISTORY.. We spoke about what it takes to p… +06/05/2018,Actors,@BarrySloane,"Great interview with @MensJournal about @SIXonHISTORY - My prep for the role, accents, @Stranger_Things and more...… https://t.co/U4iAQOXATM" +06/05/2018,Actors,@BarrySloane,RT @TellTaleTV_: Nikolai Nikolaeff Talks #SIXonHistory [Exclusive Interview] @NNikolaeff https://t.co/yJstWWLhOv https://t.co/9NjUNO84rt +06/05/2018,Actors,@BarrySloane,"RT @parentsmagazine: .@TheBrianneDavis, star of #SixonHistory, opened up about her miscarriage in our July issue: ""Tell everybody. Speak yo…" +06/05/2018,Actors,@BarrySloane,"Hey Kev, @5spiketv will be showing Season 2, not sure when. And great news that @HISTORYUK now also have the rights… https://t.co/puaVrF670D" +06/05/2018,Actors,@BarrySloane,"How we shot the Blackhawk scenes midair on @SIXonHISTORY 💪🏻🐻👊🏻 +#SixOnHistory #SixLive https://t.co/veYBQADZFA" +06/05/2018,Actors,@BarrySloane,RT @TomLangevin13: Thank you @SIXonHISTORY was happy to donate but this is just an added bonus! @BarrySloane @EricLadin #SIXonHistory https… +06/05/2018,Actors,@BarrySloane,RT @StarryMag: .@SIXonHISTORY fans get to know new star @EricLadin reading Editor @NotYerAvgChick's interview at https://t.co/dWoeTUd5I5! #… +06/04/2018,Actors,@BarrySloane,"Don’t worry I’ve just called ALL the Liverpool fans and it turns out it’s fabricated Bollocks, or I might have just… https://t.co/opseKtkVUq" +06/04/2018,Actors,@BarrySloane,RT @SIXonHISTORY: Better to have Caulder on your team than the other team. He's a deadly weapon on SEAL Team SIX. #SIXonHISTORY https://t.c… +06/04/2018,Actors,@BarrySloane,Oh Fuck Off. https://t.co/a2TeD2c89o +06/04/2018,Actors,@BarrySloane,WatchYourSix - For Episode 3 of @sixonhistory Joe gets a #Shave and a #Haircut courtesy of @candices ✂️ Remember it… https://t.co/5pDCWnpjKP +06/04/2018,Actors,@BarrySloane,You only have till Wednesday 👊🏻 #SIXONHISTORY #SixLive https://t.co/erMczciPfF +06/04/2018,Actors,@BarrySloane,https://t.co/vp9cbhfLvv +06/30/2018,Actors,@MichaelEmerson,We are serious @MLB baseball fans at our house but continue to be fascinated by the compulsive oral habits of the g… https://t.co/W9UNDAKkIG +06/29/2018,Actors,@MichaelEmerson,"A few days relaxing in Italy will be nice! No work, just sunshine, big family meals and daytrips to hill towns and… https://t.co/MgQP0NyT2y" +06/28/2018,Actors,@MichaelEmerson,I read in Deadline Hollywood that Name of the Rose will be aired in North America sometime in 2019 on AMC’s… https://t.co/jhGJ0lHPT3 +06/11/2018,Actors,@MichaelEmerson,I’m excited to watch my lady-wife do her thing on tonight’s season premiere of @ClawsTNT Such a powerful cast!… https://t.co/imlgwkGn4r +06/02/2018,Actors,@MichaelEmerson,My hat’s off to Lindy West (again and again) +06/02/2018,Actors,@MichaelEmerson,We had big fun last night in the Quarter! @HaroldPerrineau @itisIjudyreyes @carriepreston @karrueche and I dined at… https://t.co/XasILpkZsl +05/30/2018,Actors,@MichaelEmerson,What a fine time in Houston hanging out with good friends from LOST @CarbonellNestor @hicusick @FrancoisChau and th… https://t.co/RDjsNIfxpJ +05/26/2018,Actors,@MichaelEmerson,PS The photomontage (perhaps not the right word?) was created by Peter Teige and Tajmey Teige at https://t.co/upW6Mc1KiW Hats off to them! +05/26/2018,Actors,@MichaelEmerson,I met so many lovely people at Comicpalooza today— thanks for such a warm reception! Received this amazing photo-mo… https://t.co/w0pZvYI5Kv +05/25/2018,Actors,@MichaelEmerson,Wow— my first time in Houston! What a huge sprawling place it is! Staying in the CBD near the convention center for… https://t.co/lBJ1u6904i +05/22/2018,Actors,@MichaelEmerson,We stumbled upon @MaypopRestauran tonight in the CBD of NOLA— cool fusion of NewOrleans and Vietnamese flavors. We… https://t.co/1FeBt4ALXq +05/18/2018,Actors,@MichaelEmerson,It’s Tony-voting season and even wiseguy locals like Yours Truly struggle to get tix for good shows. No dismay tho… https://t.co/yyKJr6MiQs +05/06/2018,Actors,@MichaelEmerson,Carrie and I are having fun at the New Orleans Jazz Fest— a little too hot for comfort but the music is fabulous! J… https://t.co/XjK3k915He +05/03/2018,Actors,@MichaelEmerson,"I have been working with the strangest haircut of my career. +I’m hoping that 21st-century hair will soon reclaim my… https://t.co/5QdLlDCm3B" +05/03/2018,Actors,@MichaelEmerson,Last night I read “Marabou” by Joy Williams at Symphony Space. It’s a difficult piece because of how it’s written a… https://t.co/wgDLtqzPVL +04/27/2018,Actors,@MichaelEmerson,"This production of The Name of the Rose is, as far as I know, an Italian production but shot in English so presumab… https://t.co/zU9ro3s45Z" +04/26/2018,Actors,@MichaelEmerson,Last scene of my last day. The Abbot is awakened by a monk with a candle who brings bad news. Cut. Last dinner at O… https://t.co/A7LUPlaORj +04/21/2018,Actors,@MichaelEmerson,The end of a project sneaks up on you- too few days to say goodbye to your new friends and family. Too few days to… https://t.co/0lPdUBt2Rk +04/15/2018,Actors,@MichaelEmerson,"shipping crate, darn it" +04/15/2018,Actors,@MichaelEmerson,"My characters always seem to end up in a tunnel, AC duct, shopping crate or the trunk of a car. I suppose it is one… https://t.co/hsXaY2YgM9" +04/09/2018,Actors,@MichaelEmerson,Left wintry NYC for Spring in Rome- 72* F and sunny on Sunday. Everyone outdoors and the sidewalk tables full. Stun… https://t.co/aZxCzrBnfr +04/08/2018,Actors,@MichaelEmerson,Basil Twist’s abstract puppet show Symphonie Fantastique at HERE in NYC is a wonderful and elemental theatrical exp… https://t.co/WUHwi5fGht +04/01/2018,Actors,@MichaelEmerson,"Saw a great prod of Tom Stoppard’s TRAVESTIES at Roundabout Theater last night. Difficult script- art, politics and… https://t.co/VLyTDQoF94" +03/23/2018,Actors,@MichaelEmerson,"I really love the Donald Link restaurants in the Warehouse District here in New Orleans- +Herbsaint, Pêche, and Coch… https://t.co/Hm5zzz6MeS" +03/21/2018,Actors,@MichaelEmerson,Had to reschedule my return to NYC due to snowstorm. Nothing to do but try to tough it out a few more days in New Orleans. Oh well... 😎 +03/12/2018,Actors,@MichaelEmerson,We attended @thebukuproject last night- music and fashion amidst Mardi Gras parade figures. A really great set by… https://t.co/iVrW0neVZf +03/10/2018,Actors,@MichaelEmerson,"A bright warm day in New Orleans, good for a long ride on the St. Charles streetcar. Jovial crowd at the Rusty Nail… https://t.co/55M9gkadwU" +03/07/2018,Actors,@MichaelEmerson,I suspect tomorrow will be another winter-travel debacle for me. Typical. My air-travel plans seem to agitate Arcti… https://t.co/MAFwRePqhj +03/06/2018,Actors,@MichaelEmerson,The 3 biggest towers at Hudson Yards just west of us. It’s like watching the construction of Oz https://t.co/TPR1lxZl5e +03/03/2018,Actors,@MichaelEmerson,Always nice to return to the USA from work abroad. Customs continues to be exasperating but Home is Home and I can… https://t.co/w2jT6YTSUn +03/01/2018,Actors,@MichaelEmerson,Here’s what is humbling: watching your new actor friend carry on fluent conversations in 4 languages in as many hou… https://t.co/BWmt3Qumny +02/26/2018,Actors,@MichaelEmerson,Piazza Cavour https://t.co/EMuZYeS9sw +02/26/2018,Actors,@MichaelEmerson,Still- sidewalk tables packed in Piazza Navona!! Haha Intrepid +02/26/2018,Actors,@MichaelEmerson,"Surprise winter weather here in Rome! Looks like 4” of wet snow and it’s quite cold (32*F/0*C) +Schools closed, tree… https://t.co/QSDnswVvgg" +02/24/2018,Actors,@MichaelEmerson,On The Name of the Rose we spend a lot of time considering the hot topics of the Catholic Church in the 1320s. The… https://t.co/WWuOio3dOW +02/17/2018,Actors,@MichaelEmerson,Oops— again I misunderstand the Twitter system. Disregard that last one- it was for Carrie! Haha 🤓 +02/17/2018,Actors,@MichaelEmerson,Hey- stop liking me so much! 🤓 +02/17/2018,Actors,@MichaelEmerson,"This fellow says, “Yes, I’m out here in the cruel elements, but I will outlive you” https://t.co/Jt1CtCbrtQ" +02/17/2018,Actors,@MichaelEmerson,It’s one thing to draw the human figure accurately— to chip it out of a block of stone so finely that it seems to b… https://t.co/ij0y7WMDrB +02/17/2018,Actors,@MichaelEmerson,Hiked up to the Villa Borghese today where they have a stunning collection of marble statues by Bernini. https://t.co/ZIERDRIOXo +02/17/2018,Actors,@MichaelEmerson,"Haven’t been able to watch @MITJAmazon yet (I gather it’s out there). Hope it’s funny- they are a lovely, carefree… https://t.co/tjHBMbAEEB" +02/12/2018,Actors,@MichaelEmerson,Neglected to mention that il mio Italiano è pietoso. Perdonami +02/12/2018,Actors,@MichaelEmerson,Really very humbling to work with a cast of European actors who all speak English and usually several other languag… https://t.co/dVy68PXFVL +02/07/2018,Actors,@MichaelEmerson,You walk by Teatro 5 at Cinecittá and you think “Oh my! Fellini did his interiors here!” Legendary place! And I am… https://t.co/eBl8B8RAkh +02/04/2018,Actors,@MichaelEmerson,"There’s a certain thrill you get riding through the pre-dawn streets of Rome, past deserted piazzas and looming mon… https://t.co/qpZQqOM8KQ" +01/23/2018,Actors,@MichaelEmerson,Traveling to Europe today to work on an exciting project. Exciting and stressful. (Too far from my family). Hope it… https://t.co/7I1YiLzy8J +01/21/2018,Actors,@MichaelEmerson,"LOST still gets cited in an SNL sketch! Cultural longevity! +@DamonLindeloff @CarltonCuse" +01/19/2018,Actors,@MichaelEmerson,More proud than ever to be part of @CW_Arrow +01/19/2018,Actors,@MichaelEmerson,Diggle full-strength! Hooray! +01/19/2018,Actors,@MichaelEmerson,"This abandoned warehouse was SO COLD! +Insanely good stunt work" +01/19/2018,Actors,@MichaelEmerson,Who knew our heroes looked so good in blue light?!! Such great production values on @CW_Arrow +01/19/2018,Actors,@MichaelEmerson,Unbelievable stunts! David! Tobias! How’d GA shoot that sphere?! Great stuff +01/19/2018,Actors,@MichaelEmerson,"Enjoying Arrow live broadcast, complete w commercials! So many good villains! Katie! Johann! KIRK!" +01/19/2018,Actors,@MichaelEmerson,What’s to be done on the day you realize you are parent to your parents? So sobering and so sad. Real grownup stuff… https://t.co/MUNkshTp37 +01/11/2018,Actors,@MichaelEmerson,Really enjoying audiobook adventures of Inspector Maigret by Georges Simenon. Crisp detective stuff and a taste of… https://t.co/aiMVnzT3Xk +01/06/2018,Actors,@MichaelEmerson,New York is now a vast field of salt-preserved slush— unfreezable despite the arctic cold. A lot of sad dogs limpin… https://t.co/C5Fm9kVBLr +12/31/2017,Actors,@MichaelEmerson,"Carrie is whipping up traditional Southern fare for this evening- biscuits, black-eyed peas, collard greens and squ… https://t.co/CE6jpIcxA0" +12/29/2017,Actors,@MichaelEmerson,"Had a ferocious scene with @kirkacevedo on @CW_Arrow just before Christmas— he’ll make your hair stand on end! +Heal… https://t.co/ESHuq3YliL" +12/29/2017,Actors,@MichaelEmerson,No worries- I thought you meant Transmit More Images 😜 https://t.co/lMt2OVuEY1 +12/28/2017,Actors,@MichaelEmerson,"Nothing dampens the Yuletide spirit like 2 days of gastroenteritis in a hotel room! +Maybe it bodes well for the New Year? Oof." +12/17/2017,Actors,@MichaelEmerson,I want to say that @JGHorn is a wonderful interviewer and I was glad to have a chance to talk to him on #GeffenPlayhouseUnscripted +12/16/2017,Actors,@MichaelEmerson,Sorry for duplication- technical confusion. Sigh +12/16/2017,Actors,@MichaelEmerson,@JGHorn is a wonderful interviewer- so glad I had a chance to talk to him on #GeffenPlayhouseUnscripted +12/15/2017,Actors,@MichaelEmerson,@JGHorn is such a wonderful interviewer— so glad I had a chance to talk to him on #GeffenPlayhouseUnscripted +12/15/2017,Actors,@MichaelEmerson,@JGHorn is a wonderful interviewer- so glad I had a chance to talk to him! #GeffenPlayhouseUnscripted +12/14/2017,Actors,@MichaelEmerson,"Heavy work on @CW_Arrow A lot of danger, desperation and bodies flying around. Sturm und Drang. But what did I expect? Tea with crumpets? 🤓" +12/04/2017,Actors,@MichaelEmerson,And the Iliad narrative never stops being topical. (Sadly) The pride and violence of men brings death and ruin and… https://t.co/3EnGbhMwEo +12/04/2017,Actors,@MichaelEmerson,Final performance of An Iliad tonight at the Sheen Center on Bleecker in NYC. Powerful stuff +12/04/2017,Actors,@MichaelEmerson,Im totally floored by Ms Tarah Flanagan’ performance tonight in AN ILIAD by @denisohare and @Lpete88888 STUNNING +11/27/2017,Actors,@MichaelEmerson,"It’s nice to be a member of the villains club on @CW_Arrow - such a brilliant group of actors-talented, personable… https://t.co/doTREYrEOV" +11/22/2017,Actors,@MichaelEmerson,Rainy and cold in Vancouver but warm hearts and good humor on the set of @CW_Arrow. All best wishes to @MzKatieCassidy and her family. +11/18/2017,Actors,@MichaelEmerson,"Glad to hear the US Fish & Wildlife Service is on the case, making sure we can get back to hunting elephants as soo… https://t.co/SqveI9XMtD" +11/18/2017,Actors,@MichaelEmerson,Found the freshly-severed wing of a Northern Flicker on our terrace this week! (Midtown Manhattan!) The natural wor… https://t.co/lKH3P21I5O +11/18/2017,Actors,@MichaelEmerson,The men’s and women’s curling are equally interesting- I love the still focus of the curler and the madness with th… https://t.co/fvmCtEMIBn +11/18/2017,Actors,@MichaelEmerson,Watching the US Olympic curling trials (ha)— one of my favorite sports! I find it very soothing 🤓 +11/14/2017,Actors,@MichaelEmerson,"And @SeaOakAmazon is written by George Saunders, author of Lincoln in the Bardo. Such a beautiful book!" +11/14/2017,Actors,@MichaelEmerson,O wow— we love the pilot of @SeaOakAmazon our friend @benlivingston7 is great! @GlennCloseNews is OFF THE CHART +11/04/2017,Actors,@MichaelEmerson,Im so grateful to have found a seat at the the @CW_Arrow family feast. Cause for thanksgiving. Such a sweet and hospitable company. O Canada +10/29/2017,Actors,@MichaelEmerson,Proud of Iowa State's victory over TCU in college football. Two wins over top-5 teams in the space of a month! @goclones20 +10/20/2017,Actors,@MichaelEmerson,Quite a rousing essay by Lindy West in Wednesday's @NYTimes-- thrilling balance of outrage and wit +10/17/2017,Actors,@MichaelEmerson,Oops-- meant @morganlibrary Not a computer genius-- I just play one on tv ;-) +10/16/2017,Actors,@MichaelEmerson,"Amazing show of drawings at @Morganlibrary1 in nyc. I find I am partial to the French- Ingres, Degas, Daumier and the sublime Seurat" +10/13/2017,Actors,@MichaelEmerson,Have seen some fine cabaret perfs lately-- the indescribable Carol Lipnik and the fiercely eclectic Evangelia Kingsley. U gotta love NYC! +10/01/2017,Actors,@MichaelEmerson,Great to be in Georgia for the benefit at Theatre Macon-- where @carriepreston and her brother John began acting. Inspired by dear Jim Crisp +09/17/2017,Actors,@MichaelEmerson,"No better place for a going-away party than the Bohemian Hall and Beer Garden in Astoria-- fine summer night, music, beer, good friends" +09/16/2017,Actors,@MichaelEmerson,Sad to read of the passing of Harry Dean Stanton-- superb character player-- inspiration for other late-bloomers +09/11/2017,Actors,@MichaelEmerson,"Best wishes for all friends and relatives in Florida tonight. Clearwater and Jacksonville, hang in there!" +09/10/2017,Actors,@MichaelEmerson,Horrified to read that some people fleeing Irma have left their pets locked in kennels or chained to trees. Unconscionable +09/05/2017,Actors,@MichaelEmerson,Interesting speech on the subject of deportation (from the Elizabethan play Sir Thomas More) possibly written by Wm… https://t.co/2NUAzi5Ole +09/03/2017,Actors,@MichaelEmerson,"Quiet holiday weekend in NYC, chilly and wet-- takeout and Twin Peaks. All vacations completed-- summer ending, time to get serious, I guess" +08/16/2017,Actors,@MichaelEmerson,Vancouver lives up to its' rep as a lovely city-- scenic and cosmopolitan. Im getting such gracious treatment at @CW_Arrow great cast&crew! +08/08/2017,Actors,@MichaelEmerson,Glad @patrickryannyc 's #TheDreamLifeOfAstronauts is out @randomhouse I read one on #SwampRadio. U can hear it here: https://t.co/UuAZzd7tsF +08/03/2017,Actors,@MichaelEmerson,"We watched, fascinated and amazed, Derek DelGaudio's magic show @InandOfItself last night at the @DarylRoth Theatre in NYC. It's a wonder!" +07/29/2017,Actors,@MichaelEmerson,So happy to appear on @MITJAmazon - after yrs of playing dark & real I get to revert to my essential silliness. And what a lovely company! +07/28/2017,Actors,@MichaelEmerson,I think I'm Vancouver-bound! Excited to join a fabulous success like @ArrowCWTV. I'll just keep my head down and try to make a contribution +07/18/2017,Actors,@MichaelEmerson,After a few hours of sweaty NYC errands it's nice to retreat to the cool shade of Black Door and an adult beverage. Summer in the city! +07/10/2017,Actors,@MichaelEmerson,Suddenly I'm playing lots of characters in wigs and beards-- not terribly comfortable but it's fun to show @carriepreston and make her laugh +07/04/2017,Actors,@MichaelEmerson,Having a great Fourth in the Catskills-- brilliant bluegrass music ON OUR PORCH last night by Two Dollar Goat! Foot-stomping goodness! +06/29/2017,Actors,@MichaelEmerson,It gladdened my heart to be part of this acting community and a member of an honest-to-god old-school American labor union! @ActorsEquity +06/29/2017,Actors,@MichaelEmerson,Went to the unveiling of Kate Burton's caricature at Sardi's and was happy to be part of such a proud tradition. Hats off to dear Kate! +06/28/2017,Actors,@MichaelEmerson,"A grand party tonight w @AmyAcker , @TheJimmyCarp, @carriepreston, @boglesthemind, Amy C and Shelly at @PNPizza https://t.co/luZZanILoU" +06/26/2017,Actors,@MichaelEmerson,Saw Paula Vogel's @IndecentBway yesterday-- such a beautiful show! +06/15/2017,Actors,@MichaelEmerson,"Fab lunch today at @CafeAmelieNOLA on Royal in the Quarter-- great street of art, antique & jewelry shops-- but it's hot here in the sun" +06/11/2017,Actors,@MichaelEmerson,"Good times in NOLA yesterday- +Cajun Tomato Festival and dinner at @sylvainnola in the French Quarter with @julieannemery and @ferrarasusan" +06/02/2017,Actors,@MichaelEmerson,I saw a brilliant production of Government Inspector at @redbulltheater last nite! Fab cast led by the stunning @michaelurie HILARIOUS!! +06/01/2017,Actors,@MichaelEmerson,@JelloMoldEnnui Hard work but a beautiful book +05/29/2017,Actors,@MichaelEmerson,I really like @jessmendoza and her sharp commentary on baseball. Refreshing +05/24/2017,Actors,@MichaelEmerson,"One of the great features of NYC is your neighborhood 24-hour diner. +In my case, the Malibu! Every kind of character, every kind of food!" +05/18/2017,Actors,@MichaelEmerson,"I've just seen the pilot of @ClawsTNT and it is sensational! +Gripping, raunchy, funny, heart-breaking." +05/11/2017,Actors,@MichaelEmerson,"You get a pretty high order of acceptance speech at Off-B'way theater awards. Passionate, poetic, political." +05/09/2017,Actors,@MichaelEmerson,Congrats to @JOEtheMORTON on winning the @LortelAward on Sunday! Terrific actor! +05/07/2017,Actors,@MichaelEmerson,@LortelAwards tonight-- chance to hobnob with old theater friends. Might be a nice party afterwards +05/07/2017,Actors,@MichaelEmerson,Really good Portuguese restaurant in my new nabe-- @LupuloNYC great sm plates and unusual beers +05/01/2017,Actors,@MichaelEmerson,@widgetfactoryco @wwoz_neworleans Ain't it great?! +05/01/2017,Actors,@MichaelEmerson,"One of the best discoveries from my time in NOLA was radio station @wwoz_neworleans -- early jazz, blues, Cajun, Zydeco, r&b, you name it!" +04/24/2017,Actors,@MichaelEmerson,Had a grand dinner with @HaroldPerrineau in NOLA last week at Seaworthy. I think he's going to be amazing in #ClawsTNT. Such a fine actor! +04/16/2017,Actors,@MichaelEmerson,Hard to stop eating in New Orleans-- one fabulous restaurant after another-- working on a graduate degree in gumbo studies +04/16/2017,Actors,@MichaelEmerson,Easter dinner with family in New Orleans at @DelmonicoNOLA -- heavenly food! +04/10/2017,Actors,@MichaelEmerson,"I'm shocked and saddened to hear of the death of #TimPigottSmith on Friday. A lovely, funny, generous man and a mighty actor." +04/04/2017,Actors,@MichaelEmerson,Fine Bluegrass at the Flatiron Room on Mondays-- does my heart good! @AbbyHollander and crew doing it for real +04/02/2017,Actors,@MichaelEmerson,"Last performance of WAKEY WAKEY today. The show, like the winter, has given way to Spring. +Here's to Will and @justjanuary" +03/25/2017,Actors,@MichaelEmerson,"RT @carriepreston: What a lovely video, thanks @thegoodfight ! https://t.co/miy7EZpWwA" +03/20/2017,Actors,@MichaelEmerson,Your body does not know that stage grief is not real grief. The same way it doesn't know a stage kiss is not a real kiss. Hazardous terrain. +03/18/2017,Actors,@MichaelEmerson,"The audio recording of AMADEUS that I did with @LATheatreWorks sounds very good! Great pace, great sound effects. And a wonderful cast!" +03/18/2017,Actors,@MichaelEmerson,"My friend Kate Burton, an actor of tremendous power and charm, is in the new production of Present Laughter with Kevin Kline" +03/08/2017,Actors,@MichaelEmerson,"The 2-show days on a play are tough if the material is heavy and you never leave the stage. +I dont think I have the stamina I once had. Ha" +02/19/2017,Actors,@MichaelEmerson,"Tooth paint to play a drunk in O'Neill, spirit gum for a false mustache in Chekhov and an antique hand mirror given to me by Kevin Spacey" +02/19/2017,Actors,@MichaelEmerson,"My old makeup box, unopened for 11 years, is a trip to the past. Creme colors, clown white & lipstick for playing old men, old women & fools" +02/17/2017,Actors,@MichaelEmerson,"Sorry to be so out-of-touch! The play has been all-consuming. Going reasonably well, I think. Lots of nerves, lots of rituals" +01/26/2017,Actors,@MichaelEmerson,"Oops-- was #MurphysLaw a tv show? I just meant ""If it can go wrong...""" +01/26/2017,Actors,@MichaelEmerson,"Got a guy coming tomorrow to cut up a metal table that wont fit thru the apt door. Ah, the joys of home ownership! #MurphysLaw" +01/14/2017,Actors,@MichaelEmerson,"My better half @carriepreston starts shooting ""Claws"" for TNT next month. It's juicy and Southern. @NiecyNash at the vanguard in NOLA" +01/14/2017,Actors,@MichaelEmerson,"Have just finished, drop by precious drop, a gift bottle of @MichtersWhiskey 20 yr old bourbon. Finest ever. Heavenly" +01/14/2017,Actors,@MichaelEmerson,"Rehearsing a play in NYC-- had forgotten what hard, satisfying work it can be! All the old traditions, all the old rhythms. +Scary, too" +01/05/2017,Actors,@MichaelEmerson,Had a very fine lunch today at @ililiRestaurant -- Lebanese on 5th Avenue. Must revisit some evening +01/04/2017,Actors,@MichaelEmerson,"Funny how u can move 30 blocks in NYC and feel yr in another town. Where's the pharmacy, hardware, pet supply, Chinese takeout, etc? All new" +01/01/2017,Actors,@MichaelEmerson,"Family New Years Eve- 5 adults, 2 nephews, 1 dog. Hoppin John, fried chicken and Snickers cones-- great view of Times Sq from our terrace 🎉" +12/21/2016,Actors,@MichaelEmerson,Stricken last weekend with nerve inflammation in my neck-- couldnt move my head! Felt like Mr Finch! Ouch +12/10/2016,Actors,@MichaelEmerson,"Lovely fan gifts lately- glass birds, gloves, scarves, needlepoint- even an Advent calendar. We'll find good homes for all of them. Thanks!" +12/04/2016,Actors,@MichaelEmerson,"Doing housework listening to @KTUH_FM from Honolulu-- fabulous funk/r&b show and it's still Sunday morning there! +Love that station" +11/30/2016,Actors,@MichaelEmerson,Francilla from @Coreterno gave me a beautiful candle today! They are at the pop-up holiday market on Broadway in Soho +11/29/2016,Actors,@MichaelEmerson,@dinamartina was hilarious in her holiday show at B B King's this evening! Great kickoff for the season +11/28/2016,Actors,@MichaelEmerson,"Drunkle Vanya at the Russian Samovar was splendid tonight! Great food & drink too! +@DrunkleVanya @3DayHangover" +11/28/2016,Actors,@MichaelEmerson,Saw My Name is Gideon at Rattlestick Theater last night-- weird and wonderful +11/24/2016,Actors,@MichaelEmerson,Cooking for the whole clan today-- no furniture yet so we made a table out of boxes and trunks! +11/15/2016,Actors,@MichaelEmerson,"Really, @GreatCometBway has one show-stopping song after another and sensational dancing! +What a workout for this mighty cast! Amazing" +11/15/2016,Actors,@MichaelEmerson,Saw the opening of @GreatCometBway tonight and it is stunning +11/15/2016,Actors,@MichaelEmerson,Always glad to make a contribution to #Wikipedia -- I like the concept and use it a lot +11/14/2016,Actors,@MichaelEmerson,(If you grew up in Tama County in the 60s) I dont want Wolverines to be angry with me-- it's just my roots 🙂 +11/14/2016,Actors,@MichaelEmerson,A dramatic victory for the #IowaHawkeyes over Michigan yesterday- very satisfying +11/11/2016,Actors,@MichaelEmerson,Moving is truly stressful-- living in a purgatory of cardboard boxes and misplaced goods. Difficult if you depend on order (as I do) +11/11/2016,Actors,@MichaelEmerson,Doing @SelectedShorts next Wednesday at @SymphonySpace could be fun-- @harvardlampoon material +11/02/2016,Actors,@MichaelEmerson,"It's a great Series and we love MLB but we're mystified by the tradition of chewing and spitting. +Makes for some cringe-worthy closeups!" +11/01/2016,Actors,@MichaelEmerson,I had a great time at #WalkerStalkerCon -- so many enthusiastic fans and such fine hospitality +10/28/2016,Actors,@MichaelEmerson,Flying to Atlanta for #WalkerStalkerCon -- no idea what to expect! Looks like hot weather +10/25/2016,Actors,@MichaelEmerson,"Just finished #TheNightOf -- +John Turturro, @rizmc, Jeannie Berlin, Bill Camp, @amarakaran SENSATIONAL! What a stunning cast!!" +10/16/2016,Actors,@MichaelEmerson,"Reading about Astor Place riots 1849. Hard to imagine a time when Shakespeare mattered so. +Forrest vs Macready! Wow" +10/10/2016,Actors,@MichaelEmerson,"Just discovered Hi Fructose (late, as ever)-- what a cool magazine! Greg Simkins is something else!" +10/10/2016,Actors,@MichaelEmerson,Loved Stephen Greenblatt's essay in the NY Times today re Trump and Richard III +10/10/2016,Actors,@MichaelEmerson,Really enjoyed Michael Chitwood's poem The Tree in Threepenny Review. I have carried buckeyes in my pockets often and for the same reasons +10/10/2016,Actors,@MichaelEmerson,Enjoying a quiet month in NYC-- Carrie filming in NOLA and me feathering a new nest. Anxious to see The Encounter on B'way +09/29/2016,Actors,@MichaelEmerson,"#Westworld is stunning-- beautiful, terrifying, mysterious hats off to @JonathanNolan and @lisajoynolan" +09/29/2016,Actors,@MichaelEmerson,@carriepreston and I are heading to the #Westworld premiere-- @JonathanNolan and @lisajoynolan can be trusted to do something sensational +09/26/2016,Actors,@MichaelEmerson,Proud to be part of the LATW production of AMADEUS-- thanks to everyone who came and for lovely gifts +09/19/2016,Actors,@MichaelEmerson,@ItsRamiMalek !!!!How great is he?!!! We're so happy for our gifted friend #Emmys +09/19/2016,Actors,@MichaelEmerson,I can only wish https://t.co/W09cZZeLSI +09/19/2016,Actors,@MichaelEmerson,"@sterlingkb1 wins the Emmy!! +YES YES YES Loveliest man and fabulous actor! Dont know when I've been this happy about an award" +09/10/2016,Actors,@MichaelEmerson,My lady wife in perhaps her best-ever gown heading to the Emmys https://t.co/rQHPJ7SEdr +09/03/2016,Actors,@MichaelEmerson,Just before the hurricane with @carriepreston and a little canine https://t.co/y42Sm5iIdE +09/03/2016,Actors,@MichaelEmerson,Driftwood Beach on Jekyll Island-- amazing graveyard of dead trees https://t.co/68LzLxPRfm +09/02/2016,Actors,@MichaelEmerson,Rode out some wild weather last night on Jekyll Island! Hello #Hermine !!! +08/31/2016,Actors,@MichaelEmerson,"Brother, that is hilarious! https://t.co/5lqjyAQMDb" +08/29/2016,Actors,@MichaelEmerson,"Carrie&I had a ball at the #AFROPUNKBK2016 fabulous music&styles! @lauramvula wow @TVonTheRadio yes! +@CeeLoGreen fabulous" +08/25/2016,Actors,@MichaelEmerson,"So proud to have read a @patrickryannyc story on the upcoming #SwampRadio podcast. Due on Labor Day, I think. ""Fountain of Youth""" +08/25/2016,Actors,@MichaelEmerson,@carriepreston has a lovely Emmy dress-- hope my tux still fits. Very demanding day for the girls-- I feel their pain +08/25/2016,Actors,@MichaelEmerson,Very excited about @carriepreston and @HaroldPerrineau doing the pilot of #Claws with @NiecyNash ! Hell of a script +08/17/2016,Actors,@MichaelEmerson,"Saw a wonderful play #MenOnBoats at @PHnyc female cast as frontier explorers. +Hilarious and strangely moving" +08/07/2016,Actors,@MichaelEmerson,"Went to a stunning concert in London- Weimar Cabaret with @BarryHumphries1 and the heavenly @MeowTopia Her ""Surabaya Johnny"" was a marvel" +08/03/2016,Actors,@MichaelEmerson,"My thanks to Anna, Megan and Gerri and to fans bearing gifts (including two glass finches!) +#londonfilmandcomiccon" +08/03/2016,Actors,@MichaelEmerson,So nice to be reunited with @HaroldPerrineau and @DomsWildThings for a #Lost panel. 2 of the smartest & funniest! #londonfilmandcomiccon +08/03/2016,Actors,@MichaelEmerson,Had a great time meeting fans of #Lost #PersonOfInterest #Saw at #londonfilmandcomiccon So many lovely people! +07/28/2016,Actors,@MichaelEmerson,Nervous about #londonfilmandcomiccon tomorrow but it's exciting to be in this great city! +07/21/2016,Actors,@MichaelEmerson,Looking forward to #londonfilmandcomiccon It'll be great to meet the UK fans! @Showmasters +07/15/2016,Actors,@MichaelEmerson,.@carriepreston says this is now her favorite movie. Ha https://t.co/iOqhuTfOnU +06/24/2016,Actors,@MichaelEmerson,Having a quiet lunch at Blue Seafood Bar on 9th Av-- best clam chowder ever +06/22/2016,Actors,@MichaelEmerson,"And that's how we roll on #PersonOfInterest I'm satisfied. +Namaste" +06/22/2016,Actors,@MichaelEmerson,Jim C pretty fabulous on the rooftop #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,#johnreese +06/22/2016,Actors,@MichaelEmerson,Tough to say goodbye to #john reese after all this time on #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,Hard to imagine the real pain of a gunshot wound #PersonOfInterest +06/22/2016,Actors,@MichaelEmerson,@carriepreston celebrating birthday same day as #PersonOfInterest finale +06/22/2016,Actors,@MichaelEmerson,"Here we go! Last ep ever of #PersonOfInterest . Heartfelt thanks to our loyal and passionate fans! If I recall correctly, this is a good one" +06/15/2016,Actors,@MichaelEmerson,Tough scene with Greer in the airless room #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Harold's in the belly of the beast now. #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Mr Finch limping toward his fate on #Personofinterest !! +06/15/2016,Actors,@MichaelEmerson,#Tesla nice as a driverless auto on #PersonOfInterest +06/15/2016,Actors,@MichaelEmerson,Hell's Kitchen full of #Lost fans today. I must watch it again (but when?) +06/15/2016,Actors,@MichaelEmerson,@katerigg and @lyrishung were formidable in #HappyLuckyGoldenTofuPandaDragonGoodTimeFunFunShow +06/15/2016,Actors,@MichaelEmerson,@carriepreston premiered her movie of #HappyLuckyGoldenTofuPandaDragonGoodTimeFunFunShow at Soho FF last night! Hilarious +06/13/2016,Actors,@MichaelEmerson,I try not to oversell #HamiltonMusical but I've never seen the like of it. THRILLING +06/29/2018,Actors,@AmyAcker,"RT @mhsutaylor: And, completing the family: Lauren + Andy = Fenris. Pick a side in the #MutantUprising @TheGiftedonFOX https://t.co/zX7qVma…" +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Supercool surprises on the way from Caitlin and Reed Strucker. #MutantUprising @TheGiftedonFOX https://t.co/D02WIjIxol +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: For fans of the Aurora Borealis. #MutantUprising @TheGiftedonFOX https://t.co/2IwwzqPgyN +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Adding to the #MutantUprising in Season 2 of @TheGiftedonFOX https://t.co/IfBMfbNOwx +06/29/2018,Actors,@AmyAcker,RT @mhsutaylor: Season 2 of @TheGiftedonFOX premieres Tues Sept. 25th! And here's a sneak peek at our Comic Con art... More #MutantUprising… +06/17/2018,Actors,@AmyAcker,RT @jvagle: Fellow lawyers: Here’s how we may be able to help. https://t.co/Xo8GscYggd +06/07/2018,Actors,@AmyAcker,RT @CountryTime: Kids across the country are getting busted for operating lemonade stands without a permit. We're taking the lead to #SaveL… +06/06/2018,Actors,@AmyAcker,RT @Adam_Bartley: Cannot wait to see this doc #Longmire fans! So many other great shows too that were saved by fans like you with actors li… +05/15/2018,Actors,@AmyAcker,"RT @WhedonCon: @AmyAcker Our charity convention WhedonCon is THIS weekend in Los Angeles, and we need help spreading the word so we can rai…" +05/13/2018,Actors,@AmyAcker,Yes!! https://t.co/etgvnFDUYW +05/13/2018,Actors,@AmyAcker,Thank you❤️ https://t.co/mqKW96Ggsa +05/13/2018,Actors,@AmyAcker,Happy Mother’s Day you glorious moms who make it all happen! #momisasuperpower #X +04/28/2018,Actors,@AmyAcker,RT @_HeroesForHire: .@AmyAcker and @TheJimmyCarp in @Calgaryexpo parade! https://t.co/Hnen5TS0UJ +04/04/2018,Actors,@AmyAcker,Please check out @TheWayItBegins to see the beautiful short film directed by my friend and #POI alum #ChrisWright… https://t.co/inXfcikdsw +03/13/2018,Actors,@AmyAcker,RT @brandon_dckrsn: https://t.co/8IDr4l5Dgo +03/13/2018,Actors,@AmyAcker,RT @brandon_dckrsn: Still unplugged for the month...but if I was on Twitter I would definitely want folks to know they can now enjoy... htt… +03/08/2018,Actors,@AmyAcker,"😁❤️😁 Aw Geez, Thank you for the #RTOK !!the great thing about @brghtidea is- it’s impossible not to smile when he… https://t.co/tSIDZddvQ1" +03/08/2018,Actors,@AmyAcker,"RT @NerdAppropriate: Episode 300 is here with special guest @AmyAcker ! On this special episode with talk The Gifted, Person of Interest, A…" +02/25/2018,Actors,@AmyAcker,Congratulations on 100 episodes @AgentsofSHIELD it was so wonderful to see so many great friends and celebrate with you tonight! +02/17/2018,Actors,@AmyAcker,RT @TheSimplySweet: @AmyAcker We rqst your help. Plz help CityofBastropTX win @smbizrevolution vote 4 us at https://t.co/1Eie2vhtkl AND plz… +02/02/2018,Actors,@AmyAcker,@davidchang Thank you so much! Everything was perfect! I can’t wait to come back! +02/02/2018,Actors,@AmyAcker,Such an amazing meal majordomola and I got to meet @davidchang !! So excited we have one of his… https://t.co/I2b3lhYeTp +01/27/2018,Actors,@AmyAcker,@DistortedGhost Wow! Thank you so much!!❤️ +01/16/2018,Actors,@AmyAcker,Thank you to @GiftedTVWriters @FOXTV @MattNixTV @Marvel @ShuDonner @brghtidea @sonyamstrich all the fantastic crew.… https://t.co/b8FhcgZs4m +01/16/2018,Actors,@AmyAcker,RT @GiftedTVWriters: Mutants! Thank you so much for joining us on this incredible journey. We're incredibly proud of what we've created and… +01/16/2018,Actors,@AmyAcker,"RT @TVTango: 🌟Watch tonight @FOXTV 8-10pm Season Finale #TheGifted @TheGiftedonFOX ""eXtraction; X-roads"" w/ @smoyer @AmyAcker @seanjteale @…" +01/16/2018,Actors,@AmyAcker,"RT @MattMitovich: .@TheGiftedonFOX Finale: @AmyAcker and @SkylerSamuels Tease Dark Twists, Gun-Toting Caitlin and a Big 'Oh DAMN!' Moment h…" +01/10/2018,Actors,@AmyAcker,Happy birthday!🎁🎁 https://t.co/gvIvNr8jKX +01/04/2018,Actors,@AmyAcker,RT @TheGiftedonFOX: The war is not over. RETWEET if you can't wait for Season 2 of #TheGifted! ✖️ #MutantsUnite https://t.co/jXMofnVagI +01/04/2018,Actors,@AmyAcker,Thank you all for being such great fans!! thegiftedonfox #season2 #thegifted https://t.co/RDn0HbmZkV +01/02/2018,Actors,@AmyAcker,"RT @brghtidea: It’s okay Andy, there’s a brand new Ep of @TheGiftedonFOX on Tonight!!! 9pm!!!! #TheGifted @smoyer @AmyAcker https://t.co/D…" +12/12/2017,Actors,@AmyAcker,RT @JeffHarris7: Want your Monday to be X-Cellent? Watch the fall finale of #TheGifted tonight! @AmyAcker @smoyer @NatalieAlynLind @PercyHy… +12/09/2017,Actors,@AmyAcker,@stxphbxby I will be thinking of you. Sending you my love. Stay strong! ❤️ +12/09/2017,Actors,@AmyAcker,"#Repost @brandon_dckrsn (get_repost) +・・・ +THANK YOU ALL! who've enjoyed and shared… https://t.co/GIrRIz2gkD" +12/07/2017,Actors,@AmyAcker,"RT @KristinZiemke: If you're enjoying #HourofCode this week, pause a minute to take action for #NetNeutrality Keep the internet open and f…" +12/07/2017,Actors,@AmyAcker,"RT @aidenjamestour: If you are near the #Califonia #Wildfires + +please put out buckets of water for the animals that are exhausted, scared,…" +12/06/2017,Actors,@AmyAcker,RT @DrLawyercop: Can see the smoke and fires from my home. Absolutely terrifying. Sending huge thanks to the amazing men and women of the #… +12/05/2017,Actors,@AmyAcker,"😊thanks, Skyler! https://t.co/uo40kVGsMD" +12/05/2017,Actors,@AmyAcker,Thank you Emma💚 https://t.co/s6akmbYbBu +12/05/2017,Actors,@AmyAcker,Thank you so much 😊 me too! https://t.co/UxOopiDinY +12/05/2017,Actors,@AmyAcker,"Yes, please! https://t.co/yYYkBu5iwN" +12/05/2017,Actors,@AmyAcker,Thank you all for making it such a wonderful birthday with all your lovely bday wishes! Sending my ❤️back! Thank you! +12/05/2017,Actors,@AmyAcker,Thank you all for watching @TheGiftedonFOX tonight with us! And thank you so much for all the Birthday wishes! ❤️❤️❤️ +12/05/2017,Actors,@AmyAcker,Oh @imcobybell why do you have to ruin all our plans? @TheGiftedonFOX #TheGifted +12/05/2017,Actors,@AmyAcker,They played a blooper reel this weekend. I managed not to fall even once. I feel like this is a real achievement… https://t.co/NCkhpsE8Ws +12/05/2017,Actors,@AmyAcker,This group scene every time we “moved out” we all kept running into each other. Everybody would change directions b… https://t.co/078y6MJ1it +12/05/2017,Actors,@AmyAcker,RT @kaymanchaos: @AmyAcker @TheGiftedonFOX Those strucker powers combined! That was a wicked effect!! Also polaris wrecked the guard. +12/05/2017,Actors,@AmyAcker,"Okay, I think Esme @SkylerSamuels might be up to something🤔 @TheGiftedonFOX #TheGifted" +12/05/2017,Actors,@AmyAcker,What?! We have the coolest mutant kids ever! @NatalieAlynLind @PercyHyneWhite +12/05/2017,Actors,@AmyAcker,The gang is all here. Watching @TheGiftedonFOX #TheGifted https://t.co/znTaY2y1z6 +12/04/2017,Actors,@AmyAcker,A new episode of @TheGiftedonFOX is on tonight! #TheGifted BTS watch to see @jamiechung1 badass driving skills https://t.co/maV6GcyLGV +11/30/2017,Actors,@AmyAcker,"RT @ActuallyNPH: Great news: my book @TheMagicMisfits debuted at #3 on the @nytimes Bestseller List! Huzzah! So get a copy or two quick, be…" +11/28/2017,Actors,@AmyAcker,RT @AgentsofSHIELD: Congrats to these heroes on 💯 episodes of #AgentsofSHIELD! 🎉🎉🎉 https://t.co/O30ll0ehNN +11/27/2017,Actors,@AmyAcker,RT @newscientist: Hearing implant uses lasers to shoot sound into your ear https://t.co/41gXssjQb9 https://t.co/ISvh0KR6wI +11/22/2017,Actors,@AmyAcker,RT @peoplestyle: The skirt @AmyAcker is loving right now is perfect for the holidays https://t.co/Lw5MP4AtQs https://t.co/17JpvcBrW2 +11/21/2017,Actors,@AmyAcker,Thanks for watching everyone @TheGiftedonFOX #TheGifted see you in 2 weeks! +11/21/2017,Actors,@AmyAcker,RT @ZahiraYdelise: Hell of a twist tonight on #theGifted I am definitely tuning in for the rest of the season @TheGiftedonFOX @GiftedTVWrit… +11/21/2017,Actors,@AmyAcker,"RT @SASSYAF28: Wait til Lauren, Andy and Caitlin find out omg @AmyAcker @NatalieAlynLind @TheGiftedonFOX #thegifted" +11/21/2017,Actors,@AmyAcker,I think we all know the answer to that 😉 https://t.co/YSMOcWm4am +11/21/2017,Actors,@AmyAcker,"RT @Cailie: @AmyAcker Funny enough, both me and my friend had flashbacks to a certain POI scene when you mentioned ""experimentation in coll…" +11/21/2017,Actors,@AmyAcker,🤔 https://t.co/sTKyEfc5H8 +11/21/2017,Actors,@AmyAcker,❤️ https://t.co/iZ3R7qpAoL +11/21/2017,Actors,@AmyAcker,RT @VanessaZuber1: @AmyAcker Holy voodoo mama juju - the gifted is on! Superpowers galore - super ready for this episode 👏🏼💥😎 #thegifted +11/21/2017,Actors,@AmyAcker,You might be on to something https://t.co/ZAQi8LNJC1 +11/21/2017,Actors,@AmyAcker,We’re excited https://t.co/MbTAYYK1yD +11/21/2017,Actors,@AmyAcker,Getting comfy to watch @TheGiftedonFOX @cxsiebs found his spot #TheGifted +11/21/2017,Actors,@AmyAcker,Hi @RachaelEHarris smokin up the screen on @LuciferonFOX love seeing you on the TV! +11/20/2017,Actors,@AmyAcker,Anyone looking for something awesome to do tomorrow night in NYC? Go check out @officialnikka at… https://t.co/U2GDWFkgwK +11/15/2017,Actors,@AmyAcker,Check out this exclusive clip with me and David Arquette - AMANDA & JACK GO GLAMPING now on VOD! https://t.co/zq3SsYxH9y +11/10/2017,Actors,@AmyAcker,"RT @brandon_dckrsn: Today!!! For your Friday Enjoyment #AmandaAndJackGoGlamping is 🎥+📺 !!! @DavidArquette @AmyAcker @adancanto +Watch. Rev…" +11/10/2017,Actors,@AmyAcker,@DavidArquette and @adancanto are SO FUNNY!! You can watch it today! @brandon_dckrsn #AmandaAndJackGoGlamping https://t.co/R4pMhUFtGd +11/09/2017,Actors,@AmyAcker,I’ll take a case:) https://t.co/fls8q4vzX6 +11/09/2017,Actors,@AmyAcker,Thanks @Spoilertv! So lucky to be included with such great company❤️ https://t.co/GiGzRtfTW6 +11/07/2017,Actors,@AmyAcker,"RT @brandon_dckrsn: My SAMApodcast Ep2 is up w the amazing @AmyAcker ! We talk AMANDA&JACK film + @TheGiftedonFOX and all things ""re"" http…" +11/07/2017,Actors,@AmyAcker,"RT @detectivdimpIes: @AmyAcker i really love this family dynamic, always supporting and helping each other no matter what 💕 https://t.co/7x…" +11/07/2017,Actors,@AmyAcker,I’m feeling very nervous for my whole TV family😬 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Caitlin in the script. I like when they call me Cate. #TheGifted @TheGiftedonFOX https://t.co/rwgraamZFj +11/07/2017,Actors,@AmyAcker,@NatalieAlynLind your so good! Sorry I interrupted your moment with #Wes. 💏 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,You can throw saw blades at me anytime @EmmaDumont #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,I guess destroying a federal building actually is good father/son bonding:) @smoyer #percyhyneswhite #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Who knew Eclipse @seanjteale could absorb light too! So cool #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,I guess that’s her superpower:) https://t.co/q6FaTHDDBL +11/07/2017,Actors,@AmyAcker,Lots of cool new Mutants this week! #Skyler #Wes @TheGiftedonFOX #TheGifted +11/07/2017,Actors,@AmyAcker,Everyone just asked @Blair_Redford what the Twitter was for his hair 😂 #TheGifted @TheGiftedonFOX +11/07/2017,Actors,@AmyAcker,Hello! Watching the show with these girls! #TheGifted @TheGiftedonFOX https://t.co/1cOiWJUwZ2 +11/06/2017,Actors,@AmyAcker,It’s Monday! thegiftedonfox is on tonight! #thegifted https://t.co/HdV9MQk1Zi +10/30/2017,Actors,@AmyAcker,We’ve got the fam back! A new thegiftedonfox tonight foxtv 9/8 central #thegifted https://t.co/sEMvxNELqY +10/30/2017,Actors,@AmyAcker,Thanks for having me! https://t.co/CWOgdQpSbx +10/29/2017,Actors,@AmyAcker,"Things you only say in TX “I have queso in my hair” ....it happens +#AFF2017 #glamping" +10/24/2017,Actors,@AmyAcker,Thanks so much for watching! Can’t wait for next week! @TheGiftedonFOX #TheGifted +10/24/2017,Actors,@AmyAcker,"It is fun when you can say “oh, yeah, I’ve done that before” 💉@TheGiftedonFOX #TheGifted https://t.co/1AmwyrC0A5" +10/24/2017,Actors,@AmyAcker,Holy moly! So much happening right now!😳 @TheGiftedonFOX #thegifted +10/24/2017,Actors,@AmyAcker,That would be a fun crossover! @TheGiftedonFOX #TheGifted https://t.co/30ZNHkNQZJ +10/24/2017,Actors,@AmyAcker,RT @SASSYAF28: Caitlin is letting Andy and Lauren help!!!!! @AmyAcker @NatalieAlynLind @TheGiftedonFOX #thegifted https://t.co/lS3h77qA1B +10/24/2017,Actors,@AmyAcker,🤞@TheGiftedonFOX #TheGifted https://t.co/ZItOG4dA2d +10/24/2017,Actors,@AmyAcker,For sure! @TheGiftedonFOX #TheGifted https://t.co/YjUsydoImQ +10/24/2017,Actors,@AmyAcker,Teamwork!! @NatalieAlynLind #Percy go Strucker kids! @TheGiftedonFOX #thegifted +10/24/2017,Actors,@AmyAcker,Can’t tell- spoiler! @TheGiftedonFOX #TheGifted https://t.co/0FLsdIM9Hr +10/24/2017,Actors,@AmyAcker,RT @FaithBek: With so much bs happening in the world... make yourself happy and watch #TheGifted. You won’t regret it. @AmyAcker @NatalieAl… +10/24/2017,Actors,@AmyAcker,Do breakfast burritos count? @TheGiftedonFOX https://t.co/KWFBY9zx6i +10/24/2017,Actors,@AmyAcker,Whatcha waitin’ for 😁@TheGiftedonFOX #thegifted https://t.co/IBWQjYMrZD +10/24/2017,Actors,@AmyAcker,Watching @TheGiftedonFOX with @NatalieAlynLind #TheGifted https://t.co/5zol0LwhPj +10/24/2017,Actors,@AmyAcker,Stunt driving? @TheGiftedonFOX #thegifted https://t.co/mgXLsAiIax +10/24/2017,Actors,@AmyAcker,"RT @horowitm: One hour away, East Coast fans of #thegifted Who’s watching?" +10/24/2017,Actors,@AmyAcker,Getting ready for #TheGifted! @TheGiftedonFOX +10/22/2017,Actors,@AmyAcker,What happened to the sequel? @DavidHaydnJones how are you? I feel like Christmas is early this year:) https://t.co/DNdqkhvC0B +10/19/2017,Actors,@AmyAcker,Go purple now to take a stand against bullying and support LGBTQ youth for #SpiritDay!… https://t.co/JSpYxWWBA1 +10/17/2017,Actors,@AmyAcker,@NatalieAlynLind @TheGiftedonFOX Bahaha! I ❤️ you @NatalieAlynLind +10/17/2017,Actors,@AmyAcker,Almost time for a new episode of #TheGifted I just got off a plane so I'll have to hear from you how it goes. Hope… https://t.co/fF6oklIfp1 +10/15/2017,Actors,@AmyAcker,Oops!! Sorry! Thank you E.J. https://t.co/0sBwwf399U +10/14/2017,Actors,@AmyAcker,Thanks for having me! It was so fun talking to you https://t.co/v3ATht1jpl +10/13/2017,Actors,@AmyAcker,RT @GiftedTVWriters: Happy #NationalComingOutDay from the #MutantUnderground. Live your truth. Tell your story. Never be afraid of who you… +10/13/2017,Actors,@AmyAcker,I love this- @EmmaDumont can be my teacher:) https://t.co/LCksVAJrhY +10/12/2017,Actors,@AmyAcker,"RT @GravitasVOD: ""@DavidArquette, @AmyAcker Comedy ‘Amanda & Jack Go Glamping’ Lands At Gravitas"" https://t.co/q6xaSItW8R via @DEADLINE" +10/10/2017,Actors,@AmyAcker,Hope you all enjoyed the show! Thanks so much for watching! See you next week for episode 3! @TheGiftedonFOX #TheGifted +10/10/2017,Actors,@AmyAcker,I had that same thought when I read this script! @TheGiftedonFOX #spinoff https://t.co/m4ZAVhOYqQ +10/10/2017,Actors,@AmyAcker,@jamiechung1 killing per usual! @TheGiftedonFOX https://t.co/n3y0lSzBnX +10/10/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: It's okay to bend the rules if it means saving a friend. #TheGifted https://t.co/Am7pbzolwY +10/10/2017,Actors,@AmyAcker,Thanks @MattNixTV and @thegiftedtvwriters for that!! @TheGiftedonFOX #thegifted https://t.co/JaCaLWyVcu +10/10/2017,Actors,@AmyAcker,We were so lucky to have the super cool and talented @LenWiseman directing this episode! @TheGiftedonFOX #thegifted +10/10/2017,Actors,@AmyAcker,RT @AnnWhite75: Excited to see @AmyAcker & Stephen Moyers. Great actors! Writing is excellent. If you like syfy you need to watch this! @… +10/10/2017,Actors,@AmyAcker,RT @SuperSopranoMeg: @AmyAcker your boyfriend...??? @smoyer I think that Amy and @seanjteale have something to tell you... 😶😳😯 #TheGifted +10/10/2017,Actors,@AmyAcker,This may be my favorite compliment that I've ever gotten! @TheGiftedonFOX #TheGifted https://t.co/ZURh7RFAsN +10/10/2017,Actors,@AmyAcker,How are you liking it so far? #TheGifted I was getting my cracked phone fixed:) @TheGiftedonFOX +10/10/2017,Actors,@AmyAcker,Almost time for @TheGiftedonFOX second episode! I hope you guys love it. #TheGifted +10/09/2017,Actors,@AmyAcker,"Hey, everybody! The 2nd episode of thegiftedonfox is tonight! foxtv 9/8central https://t.co/33n5ojBDmC" +10/09/2017,Actors,@AmyAcker,RT @seanjteale: Tonight on episode 2 of @TheGiftedonFOX Caitclipse is born! 9pm/8c on fox! I’m out of action this evening but normal servic… +10/08/2017,Actors,@AmyAcker,Thanks everyone! We had a blast spending the day at #NYCC with you today! @TheGiftedonFOX +10/08/2017,Actors,@AmyAcker,"We love you too, Hayley! https://t.co/nhurb2ehpF" +10/07/2017,Actors,@AmyAcker,Hello! Wish y'all were here with us https://t.co/MyN2iXhtm4 +10/07/2017,Actors,@AmyAcker,Yes! Will you be there? https://t.co/oBnWX8bN9w +10/03/2017,Actors,@AmyAcker,Thanks again 4 watching & thanks 2 everyone who made it happen @ShuDonner @brghtidea @MattNixTV @BryanSinger… https://t.co/NPME5Qy6MK +10/03/2017,Actors,@AmyAcker,@giftedtvwriters @MattNixTV congratulations! Can't wait for everyone to see what you all have planned! @TheGiftedonFOX #thegifted +10/03/2017,Actors,@AmyAcker,Thanks so much for watching with us!! @TheGiftedonFOX #thegifted see you next week! +10/03/2017,Actors,@AmyAcker,Get ready to watch @jamiechung1 save the day! @TheGiftedonFOX #thegifted +10/03/2017,Actors,@AmyAcker,"The are called #Sentinels scary, right? https://t.co/RfqjxAwab5" +10/03/2017,Actors,@AmyAcker,RT @NatalieAlynLind: @AmyAcker BTS... to Amy slamming my hand in the door.. Still love her ❤️ https://t.co/wrKgCpfwHL +10/03/2017,Actors,@AmyAcker,This made me laugh 😂 @TheGiftedonFOX https://t.co/7QRoETlZTx +10/03/2017,Actors,@AmyAcker,RT @MoMoneyDollas: #TheGiftedonFOX had me hooked after the first 2 minutes. Doesn’t hurt that Vampire Bill & Winifred Burkle are in it! @Am… +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/jiLV6KkFrl +10/03/2017,Actors,@AmyAcker,Right!?! So cool! https://t.co/EOZxt7lTGA +10/03/2017,Actors,@AmyAcker,I kinda like being a human in a mutant world @TheGiftedonFOX #TheGifted https://t.co/8VCj88AHfj +10/03/2017,Actors,@AmyAcker,I'm afraid it will be past my bedtime. Working tomorrow https://t.co/hfa1iYDiMq +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/4blGUkvCxK +10/03/2017,Actors,@AmyAcker,RT @negative_purple: @Mandama004 @AmyAcker @TheGiftedonFOX Amanda! I “blinked” and almost missed that you’re online - I tried your puns but… +10/03/2017,Actors,@AmyAcker,Thanks! We can carpool to work if you want! https://t.co/SWMvyHBRxZ +10/03/2017,Actors,@AmyAcker,RT @negative_purple: Hi can I have a scene where Caitlin interacts with the dog bc it would be so pure and I NEED it #TheGifted @AmyAcker @… +10/03/2017,Actors,@AmyAcker,RT @seanjteale: Jefe we miss you https://t.co/F5ugZoertv +10/03/2017,Actors,@AmyAcker,This is delayed but I was reminded I accidentally slammed @natliealynlind hand in the door in the scene where we le… https://t.co/KyHBIJKj1d +10/03/2017,Actors,@AmyAcker,"RT @Amy_R00T: @AmyAcker @TheGiftedonFOX Me too, so I can teleport to comic con and finally meet you ^^" +10/03/2017,Actors,@AmyAcker,I think the final action sequence @TheGiftedonFOX #thegifted https://t.co/J1P85Ehs3r +10/03/2017,Actors,@AmyAcker,Hello! Hope you are great! I will be so impressed if you never complain again!! LMK https://t.co/NPwfy8bmKX +10/03/2017,Actors,@AmyAcker,RT @ThomasWerstein: Don't mess with Momma Strucker @AmyAcker @NatalieAlynLind Percy Hynes White @TheGiftedonFOX #TheGifted https://t.co/jhA… +10/03/2017,Actors,@AmyAcker,Probably teleportation @TheGiftedonFOX #TheGifted https://t.co/2cA7hMO5IA +10/03/2017,Actors,@AmyAcker,Trying this again- This trio makes me 😄@seanjteale @EmmaDumont @Blair_Redford who wouldn't want these three Mutant… https://t.co/v20IPhskIj +10/03/2017,Actors,@AmyAcker,The great cast and crew! @TheGiftedonFOX #TheGifted https://t.co/lPWKZP1YW9 +10/03/2017,Actors,@AmyAcker,Let's talk about @cobybell -and how incredible he is- The nicest guy I know playing the baddy on our show #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,We got to shoot in Dallas where I grew up and my parents live! @TheGiftedonFOX #TheGifted https://t.co/Q91yYEjKTD +10/03/2017,Actors,@AmyAcker,😱👝💉👨‍👩‍👧‍👦🏃‍♀️😡 @TheGiftedonFOX #TheGifted https://t.co/mLIpfL1zNp +10/03/2017,Actors,@AmyAcker,RT @ang5826: @AmyAcker @TheGiftedonFOX Watching!!!! Just as good the second time around ;) +10/03/2017,Actors,@AmyAcker,❤️❤️❤️ https://t.co/ktPWpmaSBe +10/03/2017,Actors,@AmyAcker,😬 https://t.co/SiITC7ZwZ2 +10/03/2017,Actors,@AmyAcker,RT @lo_206: @AmyAcker @TheGiftedonFOX I haven't seen my girlfriend @FaithBek this excited for tv since the finale of poi. Thanks for making… +10/03/2017,Actors,@AmyAcker,RT @giftedClaire: @AmyAcker @EmmaDumont @TheGiftedonFOX Lol “Who hasn’t been in a cage?” That’s hot!!! +10/03/2017,Actors,@AmyAcker,I went to a huge high school with dances like this but this was @NatalieAlynLind and #percyhyneswhite first dance! #thegifted @NewYorker +10/03/2017,Actors,@AmyAcker,@percyhyneswhite! You are so great! Follow Percy on Instagram. He blows me away with his talent on screen and off!… https://t.co/7xXQUM1eyK +10/03/2017,Actors,@AmyAcker,@EmmaDumont killing this scene in a cage- I feel like I know your pain girl- this may be the first part I'm not the… https://t.co/Q8RDaKhkT4 +10/03/2017,Actors,@AmyAcker,"How gorgeous is @NatalieAlynLind would you believe she as equally as smart, loving and talented?!? #thegifted… https://t.co/G95WjirgCz" +10/03/2017,Actors,@AmyAcker,Sending you our ❤️! https://t.co/Elu7gUe8di +10/03/2017,Actors,@AmyAcker,"I have the best tv family:) So lucky to get to act with @stephenmoyer. He's funny, super intelligent, kind, and jus… https://t.co/oYoRrKyia6" +10/03/2017,Actors,@AmyAcker,Thank you! https://t.co/3s54ktEe8V +10/03/2017,Actors,@AmyAcker,@Blair_Redford is going to be the prettiest one in every scene. We all should come to terms with it now:) Thunderbi… https://t.co/gg1VX8ejLZ +10/03/2017,Actors,@AmyAcker,This trio makes me 😄@seantealle @emmadumont @blairredford who wouldn't want these three Mutants as their besties! #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,GO @jamiechung1 ! She is so fantastic! Blink ☔️💜💜💜 #thegifted @TheGiftedonFOX +10/03/2017,Actors,@AmyAcker,Here we go! @TheGiftedonFOX starts now! #TheGifted +10/03/2017,Actors,@AmyAcker,Whatching @LuciferonFOX and getting ready for @TheGiftedonFOX coming up next! #TheGifted https://t.co/ZMKv9s6tZK +10/02/2017,Actors,@AmyAcker,Hey everybody! @TheGiftedonFOX starts tonight! I'll be live tweeting with the cast at 9pm EST we can't wait for you… https://t.co/Sp9y1FPz4i +09/25/2017,Actors,@AmyAcker,"#Repost thegiftedonfox (get_repost) +・・・ +Family is the ultimate power. Join @AmyAcker and… https://t.co/0ztr8Sv6Cl" +09/24/2017,Actors,@AmyAcker,So happy to spend the day w/ @NatalieAlynLind @ the Grove for @TheGiftedonFOX We'll be there at 1pm if anyone is in LA and wants to say Hi! +09/23/2017,Actors,@AmyAcker,"RT @IGN: Join us LIVE this Monday at 11am PT / 2pm ET for a Q&A w/ @TheGiftedonFOX cast, plus an exclusive clip! + +MORE: https://t.co/ZEvPj6…" +09/13/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Get ready LA! Be the first to see a free screening of #TheGifted TOMORROW: https://t.co/7T04vmT5A6 https://t.co/kCJQFGV… +09/11/2017,Actors,@AmyAcker,"RT @TheGiftedonFOX: Welcome to #TheGifted family, @garretdillahunt! ✖️ https://t.co/CL2RcO9omu" +09/05/2017,Actors,@AmyAcker,I wish I did! https://t.co/IAD7ezJbGM +09/04/2017,Actors,@AmyAcker,So excited for you and the new baby!! https://t.co/6oI9ujSrUt +09/02/2017,Actors,@AmyAcker,thegiftedonfox's photo https://t.co/3CJADi0Kh7 One Month to go! +08/29/2017,Actors,@AmyAcker,What a fun night! I'm so happy you are in ATL too! Happy Birthday @jaugustrichards https://t.co/k3NoUP5ykO +08/29/2017,Actors,@AmyAcker,"RT @Mandama004: Can't wait to see you you again, @AmyAcker! As long as you get away from Sentinel Services.... https://t.co/OvTo528GIZ" +08/29/2017,Actors,@AmyAcker,RT @johnthemcnamara: Hey #Magicians. Here are a few ways we can help Texas and Louisiana. Please do -- and retweet! Abracadabra. https… +08/29/2017,Actors,@AmyAcker,RT @brghtidea: Great contest for all of you artistic fans of @TheGiftedonFOX https://t.co/V31cMNW7p0 +08/23/2017,Actors,@AmyAcker,Congratulations @brandon_dckrsn @DavidArquette and everyone involved! Hope to see y'all there! https://t.co/xJk3k5E0Xr +08/21/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: .@seanjteale is eclipsing our Instagram tomorrow! Make sure you follow #TheGifted now: https://t.co/rWT3QIUJJy #Eclipse… +08/17/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Well look who it is! Pick up a copy of @TVGuideMagazine this week to see your favorite #TheGifted stars grace the cover… +08/09/2017,Actors,@AmyAcker,RT @DEADLINE: ‘The Blacklist’ Casts James Carpinello; Ruffin Prentiss Joins ‘The Arrangement’ https://t.co/i4gdNwf60r https://t.co/uJEICZmy… +08/09/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: There's no power stronger than family. #TheGifted premieres October 2 on FOX. https://t.co/rYhYkaVENC +08/08/2017,Actors,@AmyAcker,RT @TheGiftedonFOX: Don't mess with these two! 👊 @smoyer and @imcobybell are killing it at #FOXTCA. #TheGifted https://t.co/ty1TEO7BV4 +08/04/2017,Actors,@AmyAcker,Y'all know I love @RavenAndLily here is my friend Kirsten on CNN!!Conscious Consumerism - CNN Video https://t.co/JohPA6xKED +07/29/2017,Actors,@AmyAcker,RT @TVLine: Fall TV 2017: Your Handy Calendar of 100+ Season and Series Premiere Dates https://t.co/Ajl3zz7z0e https://t.co/8gdfRqgcTZ +07/25/2017,Actors,@AmyAcker,"@widgetfactoryco @addellum @SummerBishil1 Love you, Fishy!!" +07/22/2017,Actors,@AmyAcker,Thanks for a great day at SDCC! So excited about @TheGiftedonFOX see you tomorrow! +07/13/2017,Actors,@AmyAcker,"@brghtidea @TheGiftedonFOX Derek, YOU are the best! Can't wait to start shooting! #TheGifted @TheGiftedonFOX" +07/01/2018,Actors,@sarahshahi,It’s a great ep https://t.co/VJv1sVE3BC +07/01/2018,Actors,@sarahshahi,Can’t stop watching @CobraKaiSeries 🤼‍♂️( karate emoji needed stat) +07/01/2018,Actors,@sarahshahi,😂😂 love you roomie https://t.co/lxLQvEHKxK +07/01/2018,Actors,@sarahshahi,HAHAHAHAHAHAHHA! That’s the best thing I’ve heard yet https://t.co/q30h39N61s +06/29/2018,Actors,@sarahshahi,Couldn’t agree more https://t.co/gIwBKNSc9P +06/29/2018,Actors,@sarahshahi,"RT @Mortonopoulis: After 7 years sober, it’s F-ing nice to finally get a statement from a jury that has neither fines nor jail time. @Serie…" +06/28/2018,Actors,@sarahshahi,Me too. lol https://t.co/g5D82ffkLR +06/28/2018,Actors,@sarahshahi,❤️🙏🏼 https://t.co/aG0Sw0Wzsh +06/28/2018,Actors,@sarahshahi,"Kids! +Shoot! Ok I’m ready to tweet... what did I miss #reverie" +06/28/2018,Actors,@sarahshahi,This log cabin is my interior dream come true +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/SGlnefenox +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/SiULq5F8l7 +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/zFHt0yjx78 +06/28/2018,Actors,@sarahshahi,Whoa 😮 #reverie +06/28/2018,Actors,@sarahshahi,Hahha..: #reverie https://t.co/AAyqTvG8fq +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/MjEkfBjdU9 +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/PjSsS3peHv +06/28/2018,Actors,@sarahshahi,This actress brought it take after take... she was so good and just wait til what she does later #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/6FKJULXeeX +06/28/2018,Actors,@sarahshahi,Yes me too!!! #reverie https://t.co/9YfKi4nrmC +06/28/2018,Actors,@sarahshahi,Bacon 🥓 burgers are here #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/4zTgbTj2Kn +06/28/2018,Actors,@sarahshahi,Me and jess #reverie https://t.co/XivxAvv7IK +06/28/2018,Actors,@sarahshahi,Haha!! Uber eats is bringing bacon burgers 🍔 #reverie https://t.co/fmpR6bQW6r +06/28/2018,Actors,@sarahshahi,#reverie!! https://t.co/3npoyR1CGt +06/28/2018,Actors,@sarahshahi,These kids are killing me #Reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/lOBF2HqDwd +06/28/2018,Actors,@sarahshahi,#Reverie https://t.co/q07Jpz6eqs +06/28/2018,Actors,@sarahshahi,Love doing scenes w everyone bc I never got to see them #reverie +06/28/2018,Actors,@sarahshahi,#reverie https://t.co/PDXxYwx5TQ +06/28/2018,Actors,@sarahshahi,Multiple uses for #reverie +06/28/2018,Actors,@sarahshahi,Thank you 🙏🏼#reverie https://t.co/nowwTKgujF +06/28/2018,Actors,@sarahshahi,Why do I always feel like I’m in trouble #reverie +06/28/2018,Actors,@sarahshahi,BOOM #REVERIE +06/28/2018,Actors,@sarahshahi,Tweeting!!!! #reverie @NBCReverie https://t.co/QZaJHMlJj3 +06/27/2018,Actors,@sarahshahi,Yeaaaaaaa https://t.co/D9fv2FEFvY +06/27/2018,Actors,@sarahshahi,RT @NBCReverie: Mind over matter. #Reverie https://t.co/MIDd4WjNcI +06/27/2018,Actors,@sarahshahi,Hahahah!! All new @NBCReverie reverie TONIGHT #Reverie https://t.co/Xrh7kCLBmb +06/25/2018,Actors,@sarahshahi,Wednesday!!!!! https://t.co/zHUxwnOnlH +06/25/2018,Actors,@sarahshahi,Love you sister https://t.co/QyKgIhT5V7 +06/22/2018,Actors,@sarahshahi,"RT @nbc: You already know #Reverie is high tech. #NationalSelfieDay + +🤳: @sarahshahi https://t.co/eLPRUfNyO5" +06/22/2018,Actors,@sarahshahi,RT @BethRiesgraf: #FamiliesBelongTogther I just pledged to hold our representatives accountable for voting on the wrong side of history. Jo… +06/21/2018,Actors,@sarahshahi,You’re heart could be mistaken for warming up.. ❤️ https://t.co/DVYbF3eW6J +06/21/2018,Actors,@sarahshahi,YESSSS https://t.co/VTiqceu0mu +06/21/2018,Actors,@sarahshahi,Bc it was asked- these are the two books I’m reading. And Wolf bought Wrinkle at his book fair for me for Mother’s… https://t.co/HYEtjzkyJA +06/21/2018,Actors,@sarahshahi,Me too!! Can’t wait!! #reverie https://t.co/63RImTqGrs +06/21/2018,Actors,@sarahshahi,Thank you!! #reverie https://t.co/C3CYGG69aT +06/21/2018,Actors,@sarahshahi,Everyone wants purple hair #reverie https://t.co/H3oKq0lE3e +06/21/2018,Actors,@sarahshahi,Ha! #reverie https://t.co/H3oKq0lE3e +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/rzjtLHPunO +06/21/2018,Actors,@sarahshahi,Thank you so much for tweeting w us tonight! We trended AGAIN! And I’m honored and humbled to be in your homes week… https://t.co/nmfXXQh5eW +06/21/2018,Actors,@sarahshahi,Maybe we could watch together!! #reverie https://t.co/GZAf6jUVAn +06/21/2018,Actors,@sarahshahi,lol.YES! #reverie https://t.co/UOBOE2eg46 +06/21/2018,Actors,@sarahshahi,YES! Thank you!! Get your whole crew ! #reverie https://t.co/Axnw2OmI7o +06/21/2018,Actors,@sarahshahi,Thank you!!! ❤️❤️ #reverie https://t.co/yoRWmMNYMj +06/21/2018,Actors,@sarahshahi,❤️❤️💋💋 #reverie https://t.co/hsgQpFpiZ4 +06/21/2018,Actors,@sarahshahi,🙏🏼🙏🏼 #reverie https://t.co/KatiqEiqLw +06/21/2018,Actors,@sarahshahi,Oh keep watching! You have no idea!!!!! #reverie https://t.co/Z9Op9bUoSn +06/21/2018,Actors,@sarahshahi,🙌🏼🙌🏼🙌🏼 #reverie https://t.co/aFKS3v8JfS +06/21/2018,Actors,@sarahshahi,And that’s what we intend to do- give you an escape. Maybe connect you with something a little deeper than normal.… https://t.co/mtnf6b6jag +06/21/2018,Actors,@sarahshahi,Oh yea. 4-10 are homeruns #reverie https://t.co/qTZKWoABvX +06/21/2018,Actors,@sarahshahi,🙂🙂 honored by your words #reverie https://t.co/7uXvQ68zEx +06/21/2018,Actors,@sarahshahi,Oooff.. it will be explored... #reverie https://t.co/8tEgKwiRV7 +06/21/2018,Actors,@sarahshahi,Oh no! Tons of spoilers #reverie https://t.co/ekS02KDqYn +06/21/2018,Actors,@sarahshahi,Yaya! Yes! #reverie https://t.co/XskRsCtSwd +06/21/2018,Actors,@sarahshahi,Thank you! #reverie https://t.co/evDYSBIT7I +06/21/2018,Actors,@sarahshahi,Yes!!! #reverie https://t.co/dtfznULhiN +06/21/2018,Actors,@sarahshahi,Haha! Hope up have coffee #reverie https://t.co/5timkngK27 +06/21/2018,Actors,@sarahshahi,Universe... #reverie https://t.co/mzl7rybv20 +06/21/2018,Actors,@sarahshahi,My mother thought I looked like a nun in this shirt. She didn’t like it. Lol I did! #reverie +06/21/2018,Actors,@sarahshahi,Yea!!!!! #reverie https://t.co/zc1tZGfzLz +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/MSnZDHz4KA +06/21/2018,Actors,@sarahshahi,Excellent. I’m tweeting with you. Uou? #reverie https://t.co/bMCC5nY8f9 +06/21/2018,Actors,@sarahshahi,I know! Just can’t get away from it #reverie https://t.co/NaBIJMCXCe +06/21/2018,Actors,@sarahshahi,Thank god theres 6 more #reverie https://t.co/rrJU9GDeFf +06/21/2018,Actors,@sarahshahi,Oh it’s not as bad as your thinking #reverie +06/21/2018,Actors,@sarahshahi,Come on Glenn!! #reverie +06/21/2018,Actors,@sarahshahi,Oh yea! I forgot! #reverie https://t.co/q3WNYGjHCf +06/21/2018,Actors,@sarahshahi,Thank god for the smurfs... twins leaving me alone #reverie +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/8nlXlieyVT +06/21/2018,Actors,@sarahshahi,:) #reverie https://t.co/Cb1hn9aZN3 +06/21/2018,Actors,@sarahshahi,Def not #reverie https://t.co/CyiagXmlLj +06/21/2018,Actors,@sarahshahi,:) thank you! 🙏🏼 #reverie https://t.co/Vzuy3EVYS2 +06/21/2018,Actors,@sarahshahi,You’ve got good taste Chris #reverie https://t.co/s1gyLhdXXL +06/21/2018,Actors,@sarahshahi,Hahah... I love Lucy. #reverie https://t.co/RZkCe7mh4z +06/21/2018,Actors,@sarahshahi,Haha... exactly. Gulp... uhhh... #reverie https://t.co/TCvYjVBDTJ +06/21/2018,Actors,@sarahshahi,I’d be scared... #reverie https://t.co/aBHdZrdTqN +06/21/2018,Actors,@sarahshahi,Hey gurl... #reverie https://t.co/RtkLazTW5C +06/21/2018,Actors,@sarahshahi,Yes!! #reverie https://t.co/MVY9xA15KE +06/21/2018,Actors,@sarahshahi,Mickey!!! #reverie https://t.co/40noYPIeV6 +06/21/2018,Actors,@sarahshahi,Dennis!!! I miss you #reverie https://t.co/tFWzdSPXbu +06/21/2018,Actors,@sarahshahi,Yea- what she said #reverie https://t.co/fCYub32h8Q +06/21/2018,Actors,@sarahshahi,#davidrogers did such an amazing job with the physicality of his condition. I asked him to be my coach if I ever ne… https://t.co/ON7ug064Zk +06/21/2018,Actors,@sarahshahi,Nobody wanted to step onto set it was so hot #reverie +06/21/2018,Actors,@sarahshahi,Ugh🤪 #reverie https://t.co/7Wwm6W0Wrr +06/21/2018,Actors,@sarahshahi,I felt like an idiot jumping down that hall. I cracked up every time #reverie +06/21/2018,Actors,@sarahshahi,How tiny is @kathrynmorris and a mother of TWINS!? #reverie +06/21/2018,Actors,@sarahshahi,#reverie Wednesday!!!! https://t.co/fXSZ6uLjwO +06/21/2018,Actors,@sarahshahi,Oh thank you! All this talk of POI is making me nostalgic #reverie https://t.co/Q9W2Grcini +06/21/2018,Actors,@sarahshahi,Yes. Lots of truth there #reverie https://t.co/p5FWyvESYt +06/21/2018,Actors,@sarahshahi,San Antonio!! What’s up!! Thank you! #reverie https://t.co/XEiKWbKdwS +06/21/2018,Actors,@sarahshahi,🙂🙂🙂😌😌😌 and there’s so much more to come. Thank you. #reverie https://t.co/FqV7LhO6tz +06/21/2018,Actors,@sarahshahi,Do you sell your 🔮? #reverie https://t.co/jeEAraW9EE +06/21/2018,Actors,@sarahshahi,Yaya! Thank you so much! #reverie https://t.co/hLwIjSzLPX +06/21/2018,Actors,@sarahshahi,#David Rogers you are crushing. U are heartbreaking #reverie +06/21/2018,Actors,@sarahshahi,Lol. I didn’t even notice that #Reverie https://t.co/vpFfD80AQs +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/tPGOXtPu7x +06/21/2018,Actors,@sarahshahi,Omg! It was so blisteringly hot when we shot this!!! Ahhhhhhh!! Like we were all melting #reverie +06/21/2018,Actors,@sarahshahi,She’s so amazing. @JessicaLu is so warm and loving. That’s how good she is. #reverie https://t.co/n8OtkorHkc +06/21/2018,Actors,@sarahshahi,Yup yup #reverie https://t.co/tQajsjYn2j +06/21/2018,Actors,@sarahshahi,I’ve known @Sendhil_Rama since Heroes and Life but this is our first time working together! #reverie +06/21/2018,Actors,@sarahshahi,Love doing scenes w my fellow Texas @Sendhil_Rama #reverie +06/21/2018,Actors,@sarahshahi,🙂🙂🙂🙂🙂🙂 #reverie https://t.co/LYyI6AEYoG +06/21/2018,Actors,@sarahshahi,Oh it’s our pleasure. We want to touch people and tell their stories. Your stories are our stories #reverie https://t.co/GC8klGXXiN +06/21/2018,Actors,@sarahshahi,Like how you think #reverie https://t.co/2EsYQK9KMr +06/21/2018,Actors,@sarahshahi,Haha! Yes I know right! #reverie https://t.co/rAyZkorF2r +06/21/2018,Actors,@sarahshahi,Yayay! Trending again! Nice Guys #reverie +06/21/2018,Actors,@sarahshahi,Haha... it is a challenge keeping he and I in the same frame. Some boxes were involved #reverie https://t.co/VUqxKRdz3w +06/21/2018,Actors,@sarahshahi,Thank you! 😌😌😌 #reverie https://t.co/WBS8gZxKkX +06/21/2018,Actors,@sarahshahi,Thank you! I love working w @MickeyFisher73 and want to forever #reverie he’s one of the best humans I’ve ever met https://t.co/9twBOvZvL3 +06/21/2018,Actors,@sarahshahi,"What are you thinking of the ep so far? +#reverie" +06/21/2018,Actors,@sarahshahi,Lots to learn in that sense. #reverie https://t.co/HeyOFUjfLb +06/21/2018,Actors,@sarahshahi,Thank you!! ❤️❤️❤️❤️ #reverie https://t.co/4i7QChQST0 +06/21/2018,Actors,@sarahshahi,Shot this in Los feliz which is one of my fave little communities. Want to move back there! #reverie +06/21/2018,Actors,@sarahshahi,Lol #okra #reverie https://t.co/rAmCIetpgA +06/21/2018,Actors,@sarahshahi,Shave it #reverie https://t.co/bB5BTVA5R8 +06/21/2018,Actors,@sarahshahi,#reverie!! YAYAYAYA!! Keep #reverie in your tweets!! https://t.co/kPSUcVadGT +06/21/2018,Actors,@sarahshahi,Yes they can #reverie https://t.co/qUjxdwc3Em +06/21/2018,Actors,@sarahshahi,Love how you caught that #reverie https://t.co/KiItASG0pY +06/21/2018,Actors,@sarahshahi,I’m honored #reverie ❤️ https://t.co/LYyI6AEYoG +06/21/2018,Actors,@sarahshahi,Exactly #reverie https://t.co/G5X53H1xid +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/T8Int4B0Fa +06/21/2018,Actors,@sarahshahi,Oh and they’re not telling me the truth #reverie https://t.co/5gyZahUYAC +06/21/2018,Actors,@sarahshahi,Haha!! I want to cut it #reverie https://t.co/cn0STW1JqZ +06/21/2018,Actors,@sarahshahi,Oh snap @DennisHaysbert #reverie +06/21/2018,Actors,@sarahshahi,I agree. And jus let keep watching #reverie https://t.co/oVjwxGiKE4 +06/21/2018,Actors,@sarahshahi,Thank you!!! Xox #reverie https://t.co/xKyef5QUUQ +06/21/2018,Actors,@sarahshahi,Oh I’m so happy to hear that! Thank you! #reverie https://t.co/B6EVUJgmsr +06/21/2018,Actors,@sarahshahi,The hardest word I’ve ever had to learn #reverie https://t.co/nLJekKP0Nq +06/21/2018,Actors,@sarahshahi,Ahhh!! Big virtual hugs! #Reverie https://t.co/MeEJyiKeVC +06/21/2018,Actors,@sarahshahi,Hmm... re reading ONENESS right now. It’s like my bible #reverie https://t.co/l6GHllfx4Y +06/21/2018,Actors,@sarahshahi,The magic realism of the show was so much fun to play!!! I still believe in magic #reverie +06/21/2018,Actors,@sarahshahi,Yo! You’re hired! #reverie https://t.co/NGi80S6l4z +06/21/2018,Actors,@sarahshahi,Thank you so much . Glad you like! #reverie https://t.co/KDBXBsOMLh +06/21/2018,Actors,@sarahshahi,Thank you!!! Thx mom #reverie https://t.co/33y14GsZQJ +06/21/2018,Actors,@sarahshahi,Anteroom was one of my fave sets to shoot bc it was filled w books. I could go broke buying books #reverie +06/21/2018,Actors,@sarahshahi,TONS!! Lol. Mara must have 3 kids we don’t know about #reverie https://t.co/1wxrTfIJ06 +06/21/2018,Actors,@sarahshahi,David Rogers is married to one of my bff’s @SallyPressman !! He’s so fantastic! #reverie +06/21/2018,Actors,@sarahshahi,Oh thank you! #reverie https://t.co/n5z7HEWSez +06/21/2018,Actors,@sarahshahi,Can Mara trust Charlie!!!?? 😜 #reverie https://t.co/YBx4gONzR2 +06/21/2018,Actors,@sarahshahi,Not at all!! #reverie https://t.co/aIgIav6la3 +06/21/2018,Actors,@sarahshahi,Right!! Oh but it DOESSSSS #Reverie https://t.co/dlHUG319xf +06/21/2018,Actors,@sarahshahi,#reverie lol https://t.co/n6Bi1kj63i +06/21/2018,Actors,@sarahshahi,Yup #reverie https://t.co/tFhwVs0aSj +06/21/2018,Actors,@sarahshahi,Corky’s in Burbank!! #reverie https://t.co/zshGXshvyB +06/21/2018,Actors,@sarahshahi,Thank you so much!! #reverie https://t.co/mDeLx2SHVS +06/21/2018,Actors,@sarahshahi,Please #reverie in your tweets! Let’s trend again! https://t.co/mLFMw2oMQK +06/21/2018,Actors,@sarahshahi,Thank you!! #reverie! Please #reverie in your tweets! https://t.co/95hSjqDqVH +06/21/2018,Actors,@sarahshahi,I ate more than he did in between takes! #reverie https://t.co/Jio5ic9TF7 +06/21/2018,Actors,@sarahshahi,@RealJonFletcher YES SO HAPPY YOURE ON THE SCREEEEENNNNNN #reverie +06/21/2018,Actors,@sarahshahi,#reverie https://t.co/SgTgJPgaq5 +06/21/2018,Actors,@sarahshahi,Yes yes #reverie https://t.co/23ezjteMSw +06/21/2018,Actors,@sarahshahi,I was crying because I really wanted his fries #Reverie +06/21/2018,Actors,@sarahshahi,😅 #REVERIE https://t.co/oU9Y8H6CE4 +06/21/2018,Actors,@sarahshahi,It was really hard not to eat his fries. #reverie +06/21/2018,Actors,@sarahshahi,Ok!! @Sendhil_Rama and I ready!!! #reverie https://t.co/n8RFUnnK32 +06/21/2018,Actors,@sarahshahi,Snack of choice for live tweeting #reverie what’s yours? https://t.co/FmEsQgO9rV +06/21/2018,Actors,@sarahshahi,Live tweeting in 20!! #reverie shit gets dark starting this week!! You won’t wanna miss!! +06/21/2018,Actors,@sarahshahi,Thank you! https://t.co/WJkIG6EKQk +06/21/2018,Actors,@sarahshahi,Thank you!!! #reverie https://t.co/6YI2DznHjG +06/21/2018,Actors,@sarahshahi,I miss you!!!! And I can’t wait for everyone to see how much you add and how AMAZING YOU ARE!! #Reverie https://t.co/DFN8xlmStr +06/21/2018,Actors,@sarahshahi,A million kisses to everyone who joined in the q and a !! And a million more for watching #reverie TONIGHT on @nbc… https://t.co/pzIoxeHwzg +06/20/2018,Actors,@sarahshahi,#reverie tonight! https://t.co/fyiuyo2fP7 +06/20/2018,Actors,@sarahshahi,Love your method #reverie https://t.co/aDGdV2aZHY +06/20/2018,Actors,@sarahshahi,🙂🙂🙂 #reverie https://t.co/mTzHxiDnZB +06/20/2018,Actors,@sarahshahi,Tonight! #reverie #reveriewednesdays https://t.co/xkPMkk5Cs1 +06/20/2018,Actors,@sarahshahi,Yes yes yes!!!!! We’ll be live tweeting! And this is one of my fave episodes!!! #reverie https://t.co/d2kiQxCOlY +06/20/2018,Actors,@sarahshahi,Ya girl!!!!! Xox#reverie https://t.co/s10cOq0dyF +06/20/2018,Actors,@sarahshahi,I’ll see ya there!! #reverie https://t.co/rCqhisthTK +06/20/2018,Actors,@sarahshahi,Yes!!! Today is #reverie wed!! I’ll be doing a “ q and a” today on @NBCReverie instagram page at 4 (West coast time… https://t.co/BYPrXhHvmc +06/20/2018,Actors,@sarahshahi,WOWOWWOOWOW! Thank you so much!! 🙏🏼 #reverie tomorrow night!! https://t.co/9S8330v3gA +06/20/2018,Actors,@sarahshahi,TOMORROW https://t.co/mOWfKuwSTC +06/19/2018,Actors,@sarahshahi,🙏🏼🙏🏼 #reverie https://t.co/JhWOHIwhiu +06/19/2018,Actors,@sarahshahi,Much oblige!! 🙏🏼#reverie https://t.co/r6dJNXnPy1 +06/19/2018,Actors,@sarahshahi,Thank you!! Tomorrow 9/10 pm on @nbc !! https://t.co/fF7eJx3k9k +06/19/2018,Actors,@sarahshahi,Who can YOU trust!!!!?? The fun is just about to begin... https://t.co/9AscJwbhQa +06/19/2018,Actors,@sarahshahi,Yes @RokuPlayer !!! https://t.co/P8ZLr1lduR +06/16/2018,Actors,@sarahshahi,Thank you!! Xo https://t.co/DiBTy8YXis +06/15/2018,Actors,@sarahshahi,"RT @JessicaLu: You all make me so happy! 🤗 Thanks for watching #REVERIE live with us each week, we’ve all worked so hard to make this magic…" +06/15/2018,Actors,@sarahshahi,😘😘 https://t.co/wpPFMac4P3 +06/15/2018,Actors,@sarahshahi,Only to breathe ;) https://t.co/w5vIJxFAO7 +06/15/2018,Actors,@sarahshahi,"RT @jen_st0ne: Ooooooook that cliffhanger, though?! Excuse me?? To my face?? You’re gonna do that right here at my face?? ✋🏼 Rude. +(But hon…" +06/15/2018,Actors,@sarahshahi,"RT @RalphGarman: Friday's THE RALPH REPORT! Top ten FATHER'S DAY movies, as well as the NEW films in theaters! UK correspondent, @steveasht…" +06/14/2018,Actors,@sarahshahi,Thank you!!! #reverie https://t.co/hckdhwoKCo +06/14/2018,Actors,@sarahshahi,"RT @TheRealJBaxter: @sarahshahi Hey Sarah love your new show Reverie 👍 it’s fascinating and scary, that someday in the near future this cou…" +06/14/2018,Actors,@sarahshahi,Thank you so much. The show continues to amaze. Wait til next week!! #reverie https://t.co/qWz60cwZBu +06/14/2018,Actors,@sarahshahi,Wohhoooo!! Thank you 🙏🏼 https://t.co/c80oafAEGS +06/14/2018,Actors,@sarahshahi,"Thank you so much!! And trust me, starting next week— it’s about to get even more INSTENSE! Keep watching #reverie https://t.co/5EwgHOuNtN" +06/14/2018,Actors,@sarahshahi,Correct!!! Keep watching #reverie https://t.co/zQlrntP1W7 +06/14/2018,Actors,@sarahshahi,Omg. I’m so happy #MPRaccoon is safe +06/29/2018,Actors,@TherealTaraji,"OMGGGGGG!!! mildsaucela brought Chicago to LA!!! Please do yourselves a favor and come get some of this chicken, sh… https://t.co/hw1H5rSYh7" +06/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @tarhondajay +・・・ +Season 5!!!!! SAVE THE DATE September 26th #Empire @empirefox 🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿🙌🏿 https://t.co/DI67NIGBCD" +06/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +There only one thing to do with a man that lies. tarajiphenson tells it like it is in… https://t.co/yMM5krvReF" +06/24/2018,Actors,@TherealTaraji,Proud of my Lil cousin @THenn24 joining the #nebraskacornhuskers #CornerBack following in his big cuz kelvinhayden… https://t.co/wwWnHzvE1c +06/21/2018,Actors,@TherealTaraji,💔💔💔 #Repost mic https://t.co/d5neBSkIXc +06/17/2018,Actors,@TherealTaraji,And that’s a wrap on #WhatMenWant OMG I CAN NOT… https://t.co/NCZ51paqaQ +06/15/2018,Actors,@TherealTaraji,So much fun with these beautiful ladies. My… https://t.co/Ne1PUzaEo2 +06/13/2018,Actors,@TherealTaraji,"Y’all, Look who I get to play with!!! Queen… https://t.co/uara0xNLqM" +06/12/2018,Actors,@TherealTaraji,"🙏🏾💋💋💋 #Repost acrimonymovie +・・・ +Oh yes she did.… https://t.co/jXzebj8ssJ" +06/07/2018,Actors,@TherealTaraji,#Tbt #classic this ish still slaps @LilKim… https://t.co/zpe2xQoFBh +06/07/2018,Actors,@TherealTaraji,#Tbt us as Cleo and Pharaoh #thatsmybestfriend 😜💋💋💋 https://t.co/Dw9sXqDLsH +06/06/2018,Actors,@TherealTaraji,"#Repost @yomicalloway +・・・ +Contact the LA County… https://t.co/A61eMmda4D" +06/05/2018,Actors,@TherealTaraji,Because she deserves this!!!! @angiemartinez 🙏🏾💋💋💋 https://t.co/c7ulPhg1K2 +05/30/2018,Actors,@TherealTaraji,WOOOOOOWWW!!! Thank you💋💋💋 #Repost… https://t.co/bbJrtyEg4O +05/30/2018,Actors,@TherealTaraji,Meet my character Yesss KnowsMore and a few… https://t.co/EoxtEs3v6c +05/30/2018,Actors,@TherealTaraji,I can NOT wait for you guys to meet Miss Yess!!!!!! #RalphbreaksTheInternet 💋💋💋 https://t.co/5wH1u8UBRN +05/30/2018,Actors,@TherealTaraji,#TurbanLife #Cookie got me wearing turbans and… https://t.co/ZdhkPr67jG +05/29/2018,Actors,@TherealTaraji,"WOW!!! 💋💋💋 #Repost @maria_mizer +・・・ +⭐️… https://t.co/8Q7cGBV56Q" +05/27/2018,Actors,@TherealTaraji,They left me. I was supposed to be in the… https://t.co/PMMQaeK2CJ +05/26/2018,Actors,@TherealTaraji,"WOOOOOWWWW!!! 💋💋💋 #Repost marthaoborska +・・・ +🍪… https://t.co/yU76m9eC26" +05/25/2018,Actors,@TherealTaraji,#FBF I felt pretty!!! 💋💋💋 #Repost… https://t.co/ZHczdCXf5X +05/24/2018,Actors,@TherealTaraji,😩😂😂😂💋💋💋 https://t.co/izO1rfTnQr +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: O shit !!!! Shit just got real 😢😢😢👀👀👀@TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,RT @BrigitteFrankln: @TherealTaraji @EmpireFOX - Speak Lucious! Speak Cookie!!! This is pure 🔥🔥🔥 +05/24/2018,Actors,@TherealTaraji,RT @Km4cc: Come through Marvin Gaye and then the Chaka Kan reference 🔥🔥 @TherealTaraji @terrencehoward +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: Karma is a bitxh 😆@TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,damn Damn DAMN #BOOBOOKITTY #Empire 😩 +05/24/2018,Actors,@TherealTaraji,"RT @Quiyannah: So much is happening Jesus @TherealTaraji + +#empire" +05/24/2018,Actors,@TherealTaraji,RT @Talibahb1: @EmpireFOX @TherealTaraji @terrencehoward He said I thought that would shut u up😂❤💪🏽 +05/24/2018,Actors,@TherealTaraji,HA!!! 💋💋💋 #Empire https://t.co/D8Whrgdv4P +05/24/2018,Actors,@TherealTaraji,RT @colette_cher: @EmpireFOX @TherealTaraji @terrencehoward Omg Omg Omg yes yes yes +05/24/2018,Actors,@TherealTaraji,RT @REALMANFORLIFE: Lol @TherealTaraji face #Empire when she seen that big rock +05/24/2018,Actors,@TherealTaraji,RT @StarryMag: Cookie's heart is breaking. Her baby boy is devastated and leaving at a time she needs her family more than ever. #Empire +05/24/2018,Actors,@TherealTaraji,"RT @EmpireFOX: 😭 Don't leave us, Jamal! #Empire https://t.co/fbgEdubyAZ" +05/24/2018,Actors,@TherealTaraji,😩😩😩😂😂😂 https://t.co/1saPrHLdJB +05/24/2018,Actors,@TherealTaraji,😩😩😩 https://t.co/F4Hd3vsNi0 +05/24/2018,Actors,@TherealTaraji,😩😩😩😂😂😂💋💋💋 https://t.co/ssFCXsDEcG +05/24/2018,Actors,@TherealTaraji,#Empire #LyonsForever 💋💋💋 https://t.co/xXGBZFcQ4N +05/24/2018,Actors,@TherealTaraji,Damn DAmn DAMN #Tori 😩😢 #Empire 💋💋💋 +05/24/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 @pmnieddu #Empire #Cookie https://t.co/qwEjoEJGkL +05/24/2018,Actors,@TherealTaraji,😱😱😱😱😱😱😱 #Empire +05/24/2018,Actors,@TherealTaraji,💅🏾😼 #Cookie is a G!!! #Empire @EmpireWriters @EmpireFOX 🙌🏾💋💋💋 https://t.co/Fulmsc0wAF +05/24/2018,Actors,@TherealTaraji,#Lucious and #Andre just broke my entire heart!!! BRAVO #PassthetissueBOX 😩😢😩 #Empire @EmpireFOX 💋💋💋 +05/24/2018,Actors,@TherealTaraji,Don’t do it Lucious!!!! #Empire #LuciousCantGoToPrison 😩 +05/24/2018,Actors,@TherealTaraji,RT @EmpireFOX: 😭 Lucious and Cookie FOREVER! #Empire https://t.co/a99g6cYpO8 +05/24/2018,Actors,@TherealTaraji,RT @FastFuriousTrav: @EmpireFOX @TherealTaraji @LadyGraceByers Anika is classy.....not trashy! Anika knows how to sparkle! @LadyGraceByers… +05/24/2018,Actors,@TherealTaraji,😂😂😂😂 https://t.co/D6ORUx5ePb +05/24/2018,Actors,@TherealTaraji,RT @MZCOLDASSICE: Anika said Cookie stole what was hers? Really? Boo Boo kitty did no research. #Empire @EmpireFOX @leedanielsent @TherealT… +05/24/2018,Actors,@TherealTaraji,RT @IAmJoseMiguel: When Anika told Cookie @TherealTaraji I'm not scared if u anymore I was like she should... still don't underestimate Co… +05/24/2018,Actors,@TherealTaraji,"RT @EmpireFOX: .@yazzthegreatest is winnin', that's a fact. 🎤 Download ""Where They At"" here: https://t.co/oAKyw4wxEV #Empire https://t.co/J…" +05/24/2018,Actors,@TherealTaraji,😂😂😂😩😩😩🙈 https://t.co/JelsJdQgIz +05/24/2018,Actors,@TherealTaraji,😩😩😩 https://t.co/L3GC0M0xCK +05/24/2018,Actors,@TherealTaraji,RT @jkh_1983: @EmpireFOX Anika better be afraid! #Empire https://t.co/uI6B3fC78x +05/24/2018,Actors,@TherealTaraji,😰😰😰 https://t.co/LSuGBVRYkb +05/24/2018,Actors,@TherealTaraji,😂😂😂😂😂😂😂😂😩 https://t.co/4z3xAFFEn3 +05/24/2018,Actors,@TherealTaraji,😂😂😂😂😩 https://t.co/gNDtkzNr9n +05/24/2018,Actors,@TherealTaraji,RT @StarryMag: Cookie's trying to cut a deal with Boo Boo Kitty. Anika wants more than a payday. She wants vengeance and everything she thi… +05/24/2018,Actors,@TherealTaraji,"RT @PrettiGirlBadd: That's right Eddie you should've pulled the trigger b****! Game on !! + @TherealTaraji @terrencehoward @EmpireFOX" +05/23/2018,Actors,@TherealTaraji,It’s going down in this #Empire finale baby!!!… https://t.co/9eugr81r7B +05/23/2018,Actors,@TherealTaraji,"RT @extratv: Tonight on #ExtraTV: Buckle up for the @EmpireFOX finale! @AJCalloway is on set with @therealtaraji, @terrencehoward & @jussie…" +05/23/2018,Actors,@TherealTaraji,Do NOT miss this finale HENNY!!! #Empire… https://t.co/k62AjETyJP +05/20/2018,Actors,@TherealTaraji,Trying to do some work buuuuuuutttt someone… https://t.co/34ry1aHt9K +05/20/2018,Actors,@TherealTaraji,YES HE DOES HAVE BOLD IDEAS!!! So grateful to… https://t.co/0FTmyW6qSI +05/15/2018,Actors,@TherealTaraji,Who is responsible for this 😩😂😂😂 #TheUndisputedInternet I can NOT… https://t.co/yA3WZgIH5C +05/14/2018,Actors,@TherealTaraji,I love my friends!!!! @R2BAFB and @2lsquared SO BASICALLY Y’ALL KNEW… https://t.co/51DGVemkfn +05/14/2018,Actors,@TherealTaraji,I said yes y’all!!! He started with the Cartier love bracelet BUT… https://t.co/Mc53o9pzql +05/13/2018,Actors,@TherealTaraji,Happy Mother’s Day to all of the kick ass mom’s out there from one… https://t.co/R0NkpJZpS8 +05/13/2018,Actors,@TherealTaraji,Also wishing my handsome son a very happy birthday. I can NOT… https://t.co/cAFRGdy9FB +05/13/2018,Actors,@TherealTaraji,She is pure unconditional love. She is grace and Mercy. She is… https://t.co/7wJAScmqvk +05/12/2018,Actors,@TherealTaraji,#ForeverKindaLove 💋💋💋 https://t.co/1Rn7TC55Fv +05/11/2018,Actors,@TherealTaraji,#BreakingInMovie THIS WEEKEND!!!! Staring the beautiful… https://t.co/n61yoogxTv +05/09/2018,Actors,@TherealTaraji,Tonight’s episode is directed by my BooBoo @jussiesmollett who is on… https://t.co/C1TIUZG3P1 +05/09/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @empirefox +・・・ +DOUBLE TAP if you'll be tuning in for all… https://t.co/57MM2l30ji" +05/08/2018,Actors,@TherealTaraji,On set with my love interest. Him so sexy 😍#KBall kballhenson… https://t.co/zEjtPEEkBZ +05/08/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @sexxy_red +・・・ +Ready to reward the awesome mom in your life?? 💕💕💕… https://t.co/GfrUyCxh7p" +05/06/2018,Actors,@TherealTaraji,I just love these two Lil peanuts!!!! GET IT BABIES!!!!! 💋💋💋 #Repost… https://t.co/bjkcM5lar0 +05/06/2018,Actors,@TherealTaraji,@donaldglover YOU ARE THE BASQUIAT OF MUSIC!!!! I adore you!!! KEEP… https://t.co/AjF80NkTqV +05/03/2018,Actors,@TherealTaraji,#TBT to that time I sat down with an icon. OH HOW I STUDIED HER BRILLIANCE!!!… https://t.co/z9To13tglA +05/02/2018,Actors,@TherealTaraji,Y’all ready for motha #Cookie or nah? #Empire in 30mins 💋💋💋 #Repost… https://t.co/KCDqc9hQHF +05/02/2018,Actors,@TherealTaraji,"#MentalHealthAwareness #mentalhealthmonth 🙌🏾💋💋💋 #Repost @ajcalloway +・・・ +May… https://t.co/Faq7JRHDgi" +05/02/2018,Actors,@TherealTaraji,"Tonight!!! #Empire 💋💋💋 #Repost @billewoodruff +・・・ +It’s going down tomorrow on… https://t.co/qEwC3PhO4b" +05/01/2018,Actors,@TherealTaraji,May is Mental Health Awareness Month! Join me and #NAMI in the fight to cure… https://t.co/z8ZaR4YwWA +04/28/2018,Actors,@TherealTaraji,🤦🏾‍♀️LMAO @adammshankman I can NOT with you!😩😂😂😂 iamjamesflopez creeping in the back!!! 👀😂😂😂… https://t.co/D1E01u1wIY +04/27/2018,Actors,@TherealTaraji,Day one of filming #WhatMenWant get ready to Lls!!! kballhenson is sooooooo ready!!! 😂💋💋💋 https://t.co/k5Sx290jI6 +04/27/2018,Actors,@TherealTaraji,"I LOVE US!!!! Get it babies. #FRIDAYSMOOD 🔥💋💋💋 #Repost @RONBROWZ +・・・ +Shake Nation ty_cash09 |… https://t.co/qXdE4hCheh" +04/26/2018,Actors,@TherealTaraji,"Yesterday in Vegas!💋💋💋 #Repost @jason_bolden +・・・ +🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯🎯 #JSNstyleteam https://t.co/UdoAnmJmKD" +04/25/2018,Actors,@TherealTaraji,"Food for your soul💋💋💋 #Repost @therealtank +・・・ +Take notes fellas! +#happywifehappylife… https://t.co/dV7v9aAPnH" +04/24/2018,Actors,@TherealTaraji,"RT @JanelleMonae: I’m here 4 ALL OF THIS BGM . Congrats my loves ! 👑👑💓🧠 + + https://t.co/0iUdinZD03" +04/23/2018,Actors,@TherealTaraji,That lil ham hock leg and foot in the back all stretched out like that gets me EVERY TIME!!!!!… https://t.co/nHkHzstXdU +04/21/2018,Actors,@TherealTaraji,Thank you realcoleworld 🙏🏾🙌🏾✊🏽💪🏾💋💋💋 https://t.co/NoOSMW0WT4 +04/21/2018,Actors,@TherealTaraji,They just left off a couple of samiches!!! 🙋🏽‍♀️😩😂😂😂💋💋💋 https://t.co/bjwZzGwXpp +04/19/2018,Actors,@TherealTaraji,"RT @Sir_Eclectic: ""It's good to know that Bo still likes eating pound cake."" - @TherealTaraji #Empire I'm dead. 💀😭😭😂" +04/19/2018,Actors,@TherealTaraji,😫😂😂😂🤷🏾‍♀️💋💋💋 #Empire https://t.co/bqcGqY9lWq +04/19/2018,Actors,@TherealTaraji,RT @EmersonFan2000: @TherealTaraji Cookie is that girl you just wanna have by your side. 😎 https://t.co/vEumW78B0U +04/19/2018,Actors,@TherealTaraji,😂😂😂 #Empire https://t.co/CsTBgueelj +04/19/2018,Actors,@TherealTaraji,Favorite #Cookie quote from tonight’s episode of #Empire. Go...... 😂😂😂 +04/19/2018,Actors,@TherealTaraji,RT @OgTootiee_: Tiana new found attitude I’m not feeling it #EmpireFox https://t.co/esoHovVKHw +04/19/2018,Actors,@TherealTaraji,RT @BryantLaShauna: #EMPIRE pound cake story line got me like https://t.co/B46x6634fq +04/19/2018,Actors,@TherealTaraji,RT @cici_interlude: Andre can charm them out of their panties #Empire https://t.co/jJOHDNVbe1 +04/19/2018,Actors,@TherealTaraji,RT @BadLil_Specimen: I see ya Andre lil slick ass #EmpireFox https://t.co/MqyowAfHky +04/19/2018,Actors,@TherealTaraji,RT @leedanielsent: #Cookie was like...Bo is full of 💩 @EmpireFOX #Empire https://t.co/ZrRrPk8u65 +04/19/2018,Actors,@TherealTaraji,Me too 😁💋💋💋 #Empire #Cookie and #Porsha 💪🏾 https://t.co/lQqsVuy0y0 +04/19/2018,Actors,@TherealTaraji,RT @PlayerPlayer24: That boy Andre smart #EmpireFox 💪 +04/19/2018,Actors,@TherealTaraji,RT @iamLisaHunt: #Empire Alright Celeste...Watch out now. That’s Lucious Lyon you’re talking to like that. #EmpireFox https://t.co/cqOXoB1W… +04/19/2018,Actors,@TherealTaraji,Lmaooooooo😂😂😂😫💋💋💋 #empire https://t.co/voxQ0lQ4Cc +04/19/2018,Actors,@TherealTaraji,"RT @DarrellDass: Lucious got stonewalled by Eddie's ex, but don't think he's done scheming, not by a long shot #EmpireFOX #Empire" +04/19/2018,Actors,@TherealTaraji,RT @StylistMichelle: Maaad props to Hakeem's street style wardrobe! The men's glitter slip-on shoes are hot! #EmpireFox #Empire @EmpireFOX +04/19/2018,Actors,@TherealTaraji,RT @TyeLeeSmith: #Empire @EmpireFOX is 🔥 Lit Tonight. +04/19/2018,Actors,@TherealTaraji,RT @mohalyak: “THAT BITCH TRUMP TWEETIN AGAIN” bYE 😂😂💀 #Empire https://t.co/i3AjzmFaeO +04/19/2018,Actors,@TherealTaraji,RT @dFINEGr8neZZ_Me: “That bitch trump is tweeting again”!!!! #Empire https://t.co/BGZI4AVyYe +04/19/2018,Actors,@TherealTaraji,RT @IamRoyaltyOfc: This Blake vs Hakeem rap got me like :#Empire https://t.co/pUYsfmBwkZ +04/19/2018,Actors,@TherealTaraji,"RT @LifeAs_Reese: That beat 🔥. I see you Keem + +#EmpireFox #Empire https://t.co/cawye2gt1Y" +04/19/2018,Actors,@TherealTaraji,RT @Nk3play2: #Empire #EmpireFox Oh My God...... Poundcake is imagining her baby’s life. https://t.co/QM7ynGhdud +04/19/2018,Actors,@TherealTaraji,Lmaooooooo #Empire💋💋💋 https://t.co/suz8N5mtMu +04/19/2018,Actors,@TherealTaraji,RT @Rae_Bae21: Okay... #Empire https://t.co/yW6SpU8XSE +04/19/2018,Actors,@TherealTaraji,RT @therealmisscox: Cookie looking like she know something @EmpireFOX #EmpireFox @EmpireWriters @TherealTaraji +04/19/2018,Actors,@TherealTaraji,"RT @MiiMaizn: This scene right here! Whew, got the knot in my thoak! 😢 @TherealTaraji https://t.co/onoIi8ptbd" +04/19/2018,Actors,@TherealTaraji,RT @Mani__mommy: Yasssss pound cake!!!!!!! U got a friend hunny #EmpireFox @TherealTaraji you’re the best +04/19/2018,Actors,@TherealTaraji,RT @latoyathomas328: @TherealTaraji LAWD I’m in tears. Please find Poundcake’s baby... #EmpireFox https://t.co/W0yAWctd3Q +04/19/2018,Actors,@TherealTaraji,RT @dejazmin: #Empire @TherealTaraji @terrencehoward cookie sit down stop being hard headed. @EmpireFOX +04/19/2018,Actors,@TherealTaraji,RT @LaurellaWillis: @TherealTaraji O Cookie gone find Pound cake baby girl!! WATCH!! +04/19/2018,Actors,@TherealTaraji,"RT @MZCOLDASSICE: Cookie got Thirsty on the case ASAP +#Empire #Empirefox @EmpireFOX @TherealTaraji @leedanielsent" +04/19/2018,Actors,@TherealTaraji,"RT @filmwritr4: @TherealTaraji @EmpireAddicts No matter what, you just can't keep Cookie Lyon down. #Empire" +04/19/2018,Actors,@TherealTaraji,RT @MZCOLDASSICE: Cookie has heart and played right into poundcake plan. #Empire #Empirefox @EmpireFOX @TherealTaraji @leedanielsent +04/19/2018,Actors,@TherealTaraji,RT @Teamtaytay4: 😂Porcia face when Cookie said she sent her out to get tofu😣 @TaRhondajay @TherealTaraji #Empire +04/12/2018,Actors,@TherealTaraji,Enjoyed your presence!!! 🙏🏾💋💋💋 https://t.co/e5hLzRHFu7 +04/12/2018,Actors,@TherealTaraji,😩😂😂😂💋💋💋 #Empire https://t.co/gL3TXrOBK9 +04/12/2018,Actors,@TherealTaraji,TU 💋💋💋 https://t.co/Ax4I8NcRCT +04/12/2018,Actors,@TherealTaraji,😂😂😂😂😂😂💋💋💋 https://t.co/MTMkET1Gd4 +04/12/2018,Actors,@TherealTaraji,😩😂💋💋💋 #Empire https://t.co/kNhirSavXZ +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/9lXsBbPO8A +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/622qR760Ca +04/12/2018,Actors,@TherealTaraji,👀😂💋💋💋 #Empire https://t.co/fFmjeeInxl +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/hLr1hBoRub +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/zdWrIOKmh6 +04/12/2018,Actors,@TherealTaraji,RT @cclarkinspire7: @GMA @EmpireFOX @RobinRoberts @TherealTaraji @JussieSmollett @RobinRoberts did a phenomenal job ! @GMA #Empire +04/12/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/nPYNvUcGpC +04/12/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 https://t.co/Ej3S8mywbO +04/12/2018,Actors,@TherealTaraji,"RT @GMA: .@RobinRoberts joins the Lyon family! Check out her all-access journey backstage on the set of #Empire with @TherealTaraji, @Jussi…" +04/08/2018,Actors,@TherealTaraji,My fav movie 😂💋💋💋 #TalkToMe https://t.co/hBrB2JXLQE +04/08/2018,Actors,@TherealTaraji,Thank you sweetheart!!! 🙏🏾💋💋💋 #Acrimony #Acrimonymovie @AcrimonyMovie https://t.co/ril4gbwq0P +04/08/2018,Actors,@TherealTaraji,🙏🏾💋💋💋 #Aroundthewaygirl https://t.co/bYGVxfWGgn +04/08/2018,Actors,@TherealTaraji,RT @AcrimonyMovie: He owes her everything. 💔@TherealTaraji gets even in @TylerPerry’s #Acrimony - NOW PLAYING in theaters. Get tickets now!… +04/08/2018,Actors,@TherealTaraji,On CONSTANT rotation!!! #AthemShitHERE THANK YOU @iamcardib for this!!! #MoneyBagWomen Keep… https://t.co/hY08Egu2sM +04/07/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +It’s not over until Melinda says it is. 🙅🏾‍♀️ @TherealTaraji takes… https://t.co/FA9mQ6WeHI" +04/07/2018,Actors,@TherealTaraji,@ralofamgoon Reach out +04/06/2018,Actors,@TherealTaraji,"I love us!!! 💋💋💋 #Repost @EBONYMag +[@ItsBlackCulture] https://t.co/Dc6IhYufS2" +04/06/2018,Actors,@TherealTaraji,https://t.co/jowBZGXVCT go check him out and follow him @LhLoyallane +04/05/2018,Actors,@TherealTaraji,Tune in TONIGHT!!!!! @empirefox is BACK on Fox @ 8/7c #Empire #Fox 💋💋💋 https://t.co/RbpigrJ9Xd +04/04/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @pmnieddu +・・・ +Never Not Modeling ❤️don’t forget to watch @empirefox tonight at 8pm… https://t.co/Rf0kOB10d6" +04/03/2018,Actors,@TherealTaraji,Calling all my QUEENS! I have a special offer for your #GirlsNightOut this weekend! Use my code… https://t.co/pL0vG75EQj +04/01/2018,Actors,@TherealTaraji,💋💋💋 #Acrimony @AcrimonyMovie https://t.co/0Brdes6jFL +04/01/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/yu771ohoEw +04/01/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/TBMsHZQZCm +03/31/2018,Actors,@TherealTaraji,"I’m so excited for you to see #Acrimony this weekend, that I’m buying out two theaters for you… https://t.co/iRy5jHklCx" +03/31/2018,Actors,@TherealTaraji,"THANK YOU BEAUTIFUL PPL!!! 💋💋💋 #Repost ladiesnightoutbymichelle +・・・ +Thank you @tylerperry &… https://t.co/Vt3IFvUJO6" +03/31/2018,Actors,@TherealTaraji,So glad I trusted you @tylerperry. 💋💋💋 We shot this film in 8 days!!! My portion was filmed in 5… https://t.co/sMl4LS1QPQ +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/mtaOaXj0xg +03/30/2018,Actors,@TherealTaraji,"I’m so excited for you to see #Acrimony this weekend, that I’m buying out two theaters for you… https://t.co/ZwPV2hAmR7" +03/30/2018,Actors,@TherealTaraji,"FINALLY!!! 💋💋💋 #Repost acrimonymovie +・・・ +The wait is over… 💔 Get tickets now to see… https://t.co/5JQIjdvpUX" +03/30/2018,Actors,@TherealTaraji,💋💋💋#Acrimony https://t.co/cpxFr1uiw9 +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/h6fvf1CGfd +03/30/2018,Actors,@TherealTaraji,💋💋💋 #Acrimony https://t.co/C8ygyezMmZ +03/30/2018,Actors,@TherealTaraji,RT @EmpireFOX: Queen of the Empire and the big screen. Don’t miss an exclusive first look from @TherealTaraji’s new film — @TylerPerry’s #A… +03/30/2018,Actors,@TherealTaraji,💋💋💋#Acrimony https://t.co/yJCRLgbQC0 +03/30/2018,Actors,@TherealTaraji,#Acrimony #Acrimonymovie 💋💋💋 https://t.co/REyYaohuDc +03/30/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/CLDk1Lf82m +03/30/2018,Actors,@TherealTaraji,💋💋💋 #Acrimonymovie #Acrimony https://t.co/N9rsbig23C +03/30/2018,Actors,@TherealTaraji,RT @ShelookslikeYES: #Acrimony this movie was so dope!!! @tylerperry @TherealTaraji y’all did that!!! https://t.co/tB9xZONubD +03/29/2018,Actors,@TherealTaraji,YAASSS! Proud Mary getting ready to kick some ass! The movie is out now on Digital! Get your… https://t.co/RzQ2EGjKXP +03/29/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +He promised her everything and then gave it all to his sidechick.… https://t.co/uJtQa1pAYi" +03/29/2018,Actors,@TherealTaraji,#KBall kballhenson is a natural model😂😂😂🤷🏾‍♀️💋💋💋 https://t.co/hIvYFiGdgN +03/29/2018,Actors,@TherealTaraji,RT @beanoTG: @EmpireFOX this is about to be THE LONGEST WEEK waiting for @TherealTaraji 😒 ALL THE WEEKS GONE BE LONG!! 😭💋❤️ +03/29/2018,Actors,@TherealTaraji,RT @RJ_Tube: You better not slice her throat @TherealTaraji #empire +03/29/2018,Actors,@TherealTaraji,RT @TyNewte: That Cookie is one bad mutha......shut my mouth! Yaaaasss! @TherealTaraji +03/29/2018,Actors,@TherealTaraji,#Claudia was feeling quite frogy 🐸 leaping all on #Cookie like that. This should be interesting 😂😂😂😒 #Empire 💋💋💋 +03/29/2018,Actors,@TherealTaraji,🤷🏾‍♀️😫😂😂😂 #Empire💋💋💋 https://t.co/4qDQ2rBWdn +03/29/2018,Actors,@TherealTaraji,😂😂😂😂 #ProudMary #Cookie #Empire💪🏾💋💋💋 https://t.co/GapD01FWMP +03/29/2018,Actors,@TherealTaraji,RT @DALitt731: Lucious is so obsessed with Cookie and he know it’s true. @EmpireFOX @EmpireAddicts @TherealTaraji @LadySag1219 #EmpireWedne… +03/29/2018,Actors,@TherealTaraji,😂😂😂😂😂😂😂😂😂😂😂😂😂#Acrimonymovie #Empire #Cookie #Melinda https://t.co/KAr59lFuyj +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/B6AzqZZws1 +03/29/2018,Actors,@TherealTaraji,RT @MsTiffanyBarker: Claudia is NOT going to be satisfied until the COOKIE MONSTER comes out! Doesn't she see @TherealTaraji doesn't play w… +03/29/2018,Actors,@TherealTaraji,RT @_ThirdWardTrill: Cookie coming to save the day!! @TherealTaraji #Empire +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/MIRB12P8qe +03/29/2018,Actors,@TherealTaraji,RT @itsjustme1213: @TherealTaraji I’m watching girl I’m holdin my breath and lovin every minute. 🙏🏽👍🏽😉 Demi got a problem... https://t.co/… +03/29/2018,Actors,@TherealTaraji,💋💋💋 https://t.co/sOyRMdI9JD +03/29/2018,Actors,@TherealTaraji,RT @Tinaa43: Man Claudia don’t know WHO tf Cookie Lyon IS...She gone have one of them prison flashbacks and Whoop Claudia a$$ @EmpireFOX @T… +03/29/2018,Actors,@TherealTaraji,RT @StarryMag: Lucious is missing but Thirsty's on the case. He's got Claudia on tape but did he go with her willingly? #Empire https://t.c… +03/29/2018,Actors,@TherealTaraji,RT @EmpireFOX: We're ready to serve up that #Empire tea! 🍵 Join @tarhondajay & @terrellmusic for the #EmpirePreShow LIVE on Twitter tonight… +03/29/2018,Actors,@TherealTaraji,The #LyonBrothers scenes I always LOVE @JussieSmollett @JustTrai @YazzTheGreatest #Empire 💋💋💋 +03/29/2018,Actors,@TherealTaraji,Go get yo man #Cookie #Empire WE’RE BACK!!! 💋💋💋 +03/29/2018,Actors,@TherealTaraji,"RT @UrbanityToday: @EmpireFOX @EmpireWriters I told y""all about Claudia last season!!! Cookie you better not let her take your man again! @…" +03/29/2018,Actors,@TherealTaraji,😂😂😂😂😂 cookies blonde bombshell wig by @TrueIndianHair #Empire💋💋💋 https://t.co/nJpHlSFPUN +03/29/2018,Actors,@TherealTaraji,Who’s watching #Empire? 🙋🏾‍♀️💋💋💋 +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost biggiealkass +・・・ +Who is Ready For an al new episode of @empirefox tonight on foxtv… https://t.co/7ph0hTExX1" +03/28/2018,Actors,@TherealTaraji,✊🏿✊🏾✊🏽✊🏼✊🏻✊🙏🏾🙏🏾🙏🏾💋💋💋 #Repost @People4Bernie - This PSA played during tonight's #SacramentoKings… https://t.co/VCGSJDVoT3 +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost acrimonymovie +・・・ +Take it from @TherealTaraji… revenge is only the beginning. 🖤🔥 See… https://t.co/iQy24D0uJg" +03/28/2018,Actors,@TherealTaraji,"😱😱😱😩😂💋💋💋 #Repost @empirefox +・・・ +Who’s ready for the epic return of #Empire tonight at 8/7c?!… https://t.co/Xv7wxGxijf" +03/28/2018,Actors,@TherealTaraji,"💋💋💋 #Repost @tylerperry +・・・ +Planning a #GirlsNightOut this Friday? Buy 2 tickets to see… https://t.co/9mRBXuQxMs" +06/23/2018,Actors,@TaySchilling,RT @KamalaHarris: A few moments ago I finished visiting with mothers who were separated from their children at the border. I can tell you t… +05/30/2018,Actors,@TaySchilling,Check out my friend @legit_Rebitch in her new film THEY REMAIN @theyremainfilm w/ @dubjackharper - NOW AVAILABLE on… https://t.co/5NXnH2aBur +04/19/2018,Actors,@TaySchilling,"My friend @JenSiebelNewsom is out with her third documentary, the #GreatAmericanLie. After #MissRepresentation and… https://t.co/0eJlt5gWcu" +04/05/2018,Actors,@TaySchilling,Join me in celebrating the birthday of my friend and ally @CynthiaNixon as she takes our shared fight for advancing… https://t.co/o7CVuNDGL5 +03/22/2018,Actors,@TaySchilling,@CynthiaNixon https://t.co/1ocoFZampx +03/21/2018,Actors,@TaySchilling,🙌🏻 🙌🏻 🙌🏻 @CynthiaNixon https://t.co/nb7xRxwwUU +03/20/2018,Actors,@TaySchilling,https://t.co/DiYOHUrVy7 +03/12/2018,Actors,@TaySchilling,Whoop whoop ❤️❤️❤️🤡🤡🤡 https://t.co/snJ34tIYHm +03/08/2018,Actors,@TaySchilling,Join me & my dear friend @JessicaNeuwirth in supporting Donor Direct Action and Women's Rights Advancement and Prot… https://t.co/yau6yOarEF +03/08/2018,Actors,@TaySchilling,"more from @JessicaNeuwirth +https://t.co/HMKoE4mODV" +03/08/2018,Actors,@TaySchilling,I've learned so much from my extraordinary friend @JessicaNeuwirth. Here's an intro to some of her work. Happy Inte… https://t.co/Upu8sJqjDU +01/17/2018,Actors,@TaySchilling,On Aziz Ansari And 'Bad Sex' https://t.co/0KvvOd0MV5 +01/15/2018,Actors,@TaySchilling,https://t.co/6wvPp9aiA3 +01/09/2018,Actors,@TaySchilling,#HunterDreamerCampaign #CallPaulRyan #SaveDreamers https://t.co/J1RsuoXFPJ +12/28/2017,Actors,@TaySchilling,"RT @DreamTeamHunter: Join @GloriaSteinem and our DREAMers as they call Congress to pass a DREAM Act. Tag 3 ppl to do the same! + +@RealBambad…" +12/06/2017,Actors,@TaySchilling,"Grateful to @taranaburke, @rosemcgowan, @ronanfarrow for speaking up and making 2017 the year we finally started ta… https://t.co/xHP1xhWbqr" +12/05/2017,Actors,@TaySchilling,Congress will either fund the deportation of #Dreamers or protect them.We need a #DreamActNow!Join me &call Congress:https://t.co/XF9uztNzw5 +12/03/2017,Actors,@TaySchilling,#DreamActNow https://t.co/0iSW7YwlxR +06/15/2017,Actors,@TaySchilling,RT @jimandsamshow: Today's #JimAndSam show replay with @TaySchilling and @IanUnderCover starts in just 1 hour! Check it out on @SIRIUSXM Ch… +06/14/2017,Actors,@TaySchilling,I'm just basking in the light of @Lavernecox https://t.co/gav2CT8JF5 +06/12/2017,Actors,@TaySchilling,RT @PublicTheaterNY: #WeAreOnePublic. https://t.co/HkOKxFIKsT +06/12/2017,Actors,@TaySchilling,https://t.co/BKfIshqhhN via @youtube #OITNB #OITNBS5 +06/09/2017,Actors,@TaySchilling,"Good talk, good talk https://t.co/N86QgdImis" +06/08/2017,Actors,@TaySchilling,Thank you @WBUR and @nytimes for having me guest narrate this episode of the #ModernLovePodcast https://t.co/i0NFXI4hlQ +06/03/2017,Actors,@TaySchilling,RT @thedanieb: Unacceptable. And the audience applauds!?! So hurtful. https://t.co/V5yAk9C9ON +06/02/2017,Actors,@TaySchilling,What You Can Do About Climate Change - The New York Times https://t.co/xHQj7lH1HM +05/05/2017,Actors,@TaySchilling,(2/2)...#TakeMe is available on @iTunes https://t.co/eLBFyojscZ !! @MarkDuplass @jayduplass @meleslyn @Pat_Healy +05/05/2017,Actors,@TaySchilling,(1/2) Excited to share my latest film with the #Duplassbrothers #TakeMe opening NY/LA today &... +04/25/2017,Actors,@TaySchilling,You + 📷 means @burtsbees will plant 5k 🌸s to help save the 🐝s! Take a flower-filled #SelflessSelfie here: https://t.co/Ncx6K5DFRe #ad +04/19/2017,Actors,@TaySchilling,A #selfie 4 a good cause? Help save the 🐝s by taking a #SelflessSelfie & @burtsbees will plant 5k 🌸s! Snap a pic https://t.co/k4vvDrQ1Ck #ad +02/03/2017,Actors,@TaySchilling,This https://t.co/k3XJtyVvDZ +02/03/2017,Actors,@TaySchilling,@NYGovCuomo thank you +02/03/2017,Actors,@TaySchilling,This is amazing https://t.co/esiCc9NBID +02/03/2017,Actors,@TaySchilling,RT @SenGillibrand: Public education. Safe schools. That’s what our Education Secretary should commit to. Betsy DeVos is the wrong choice. +02/02/2017,Actors,@TaySchilling,RT @NARAL: Betsy DeVos his completely unqualified to serve as Edu Secy & she's 1 'no' vote away from defeat. Keep calling your Senators! #S… +02/01/2017,Actors,@TaySchilling,"Great ideas on how you can advance #NoBanNoWall via @JenSiebelNewson: https://t.co/JyGQPq1wbu""" +02/01/2017,Actors,@TaySchilling,"I'm asking Trump to uphold the rights of women, Muslims, immigrants, ALL people. Sign this petition: https://t.co/pCfjS7jM47 #BeAModelMan" +01/22/2017,Actors,@TaySchilling,"RT @JenSiebelNewsom: Call Paul Ryan (202) 225-0600 +Press 2 to weigh in on Healthcare issue, then PRESS 1 to support continuing the Affordab…" +01/22/2017,Actors,@TaySchilling,Pictures From Women’s Marches on Every Continent - The New York Times https://t.co/ZTEFAfbcwP +01/21/2017,Actors,@TaySchilling,@RepMaloney thank you for your service Rep.Maloney! Honor to march with you +01/21/2017,Actors,@TaySchilling,RT @RepMaloney: And we march! #WomensMarch https://t.co/h2VUQuOEBR +01/18/2017,Actors,@TaySchilling,Because we still have to say women's rights are human rights. https://t.co/ahOswRcH9X #MarchingForward @TheRepProject +01/18/2017,Actors,@TaySchilling,"Dear New York State Legislature, +Please pass this law for #KaliefBrowder. This is not partisan. +#RaiseTheAgeNY +https://t.co/vLhYKBI21q" +01/18/2017,Actors,@TaySchilling,RT @NYDailyNews: .@ShaunKing: Time for New York to do right by Kalief Browder’s family and pass reasonable criminal justice reforms https:/… +01/13/2017,Actors,@TaySchilling,#CallingAllWomen @womensmarch @ItsTimeNetwork #equalmeansequal Why is domestic violence law failing women? Find out: https://t.co/guU106yPGj +01/12/2017,Actors,@TaySchilling,https://t.co/XtCgzx1SSg +01/12/2017,Actors,@TaySchilling,"Fight back! Next big election is in Virgina, and now we have a serious progressive champion running for Governor. #GoTomGo @TomPerriello" +01/11/2017,Actors,@TaySchilling,"RT @POTUS: Thank you for everything. My last ask is the same as my first. I'm asking you to believe—not in my ability to create change, but…" +01/11/2017,Actors,@TaySchilling,Yes we can. #FarewellObama +01/09/2017,Actors,@TaySchilling,https://t.co/XC79DKtOAQ via @youtube @kamalalopez speaks eloquently on this still valid and worthy issue. +01/07/2017,Actors,@TaySchilling,"""Women, if the soul of the nation is to be saved, I believe that you must become its soul."" - Coretta Scott King @womensmarch #January21" +01/05/2017,Actors,@TaySchilling,RT @PattyArquette: 80% think gender equality is guaranteed by the Constitution? IT ISN’T. #EqualMeansEqual https://t.co/hBZPQ6Y1SG https://… +01/05/2017,Actors,@TaySchilling,RT @ananavarro: Trump siding with Assange and Putin over CIA- patriots who dedicate and risk their lives to keep us secure- is a damn disgr… +01/05/2017,Actors,@TaySchilling,RT @CoryBooker: The 115th Congress begins today. This will be a profoundly consequential year for our nation. Please join me. https://t.co/… +01/05/2017,Actors,@TaySchilling,"Facing a President who denies the reality of climate change, we need to mobilize together. Join me. https://t.co/NVa4Tk4Bio" +12/15/2016,Actors,@TaySchilling,"Informative and timely convo with the incredible @vj44 and @Piper +https://t.co/FBWzD231Z4 @WhiteHouse #CriminalJusticeReform" +12/14/2016,Actors,@TaySchilling,Wanna hang & work out with me & help my friends in @iamatheatre? All at the same time?! Only a day left to bid: https://t.co/cPeHmamMpz +12/05/2016,Actors,@TaySchilling,"RT @MarkDuplass: A peaceful, respectful protest fueled by compassion and justice has won a major victory. This is a fantastic example for a…" +12/01/2016,Actors,@TaySchilling,"How a Triathlon Helped America Ferrera Defy Her Inner Critic, via @nytimes@AmericaFerrera https://t.co/tAm6by5IYL" +11/30/2016,Actors,@TaySchilling,"#NowMoreThanEver, help ensure #safety & #equaljustice for #women.Join me in supporting @WPA_NYC this #GivingTuesday! https://t.co/s1lWE82AG1" +11/06/2016,Actors,@TaySchilling,"Dalai Lama: Behind Our Anxiety, the Fear of Being Unneeded, via @nytimes https://t.co/khKTAAQiPE" +10/15/2016,Actors,@TaySchilling,@DavidPepper thank you! Today was an inspiration +10/06/2016,Actors,@TaySchilling,I'm voting to see the ERA on Sunday's debate& so can you #ERANow @ERACoalition @OpenDebate https://t.co/w66RNSckdl +09/28/2016,Actors,@TaySchilling,Jackie and puppies! https://t.co/GnvVxtu2fL +09/27/2016,Actors,@TaySchilling,"""A man who can be provoked by a tweet should not have his fingers anywhere near the nuclear code"" #ImWithHer" +09/27/2016,Actors,@TaySchilling,"RT @chrissyteigen: annnnnnd ""400 pounds"" will be the story tomorrow." +09/27/2016,Actors,@TaySchilling,RT @sadydoyle: I see Hillary has come dressed in the blood of men who have underestimated her. +09/20/2016,Actors,@TaySchilling,Congratulations all 'round! https://t.co/zEC5qqsRvF +09/14/2016,Actors,@TaySchilling,At the @ERACoalition screening of @EqualMeansEqual. U.S. women still aren't equal under the law. We need #ERANow. https://t.co/91Jgdk4RmR +09/07/2016,Actors,@TaySchilling,J is for Jail. Literacy helps prevent crime. Please RT. https://t.co/MZ9zvzWZbg #ProjectLiteracy https://t.co/KMbiuIpZjB +07/25/2016,Actors,@TaySchilling,#ThisIsWhatMyRevolutionLooksLike https://t.co/k4PpmBf0zu +07/19/2016,Actors,@TaySchilling,RT @RepresentPledge: Let's celebrate women in politics and advocate for women-friendly policies #RepresentHer https://t.co/9VrGo0Etpv https… +07/07/2016,Actors,@TaySchilling,#TBT to unveiling the new @Origins Harvard Sq store! More on Origins NEW blog: https://t.co/eck9CmMVR3 #Ambassador https://t.co/x6OXNIIgXs +05/18/2016,Actors,@TaySchilling,"Can't wait to help @Origins unveil their newly redesigned store in Cambridge, MA tonight! So good to be home. #Ambassador" +04/22/2016,Actors,@TaySchilling,"Happy Earth Day!#KissThePlanet. pucker up, tag @OriginsUSA #KissThePlanet and #DoGoodCampaign and Origins will plant a tree. 🌲🌳#ambassador" +04/19/2016,Actors,@TaySchilling,I loved this doc! Exploring America's narrow definition of masculinity @JenSiebelNewsom's @MaskYouLiveIn on Netflix https://t.co/68sse1Yeg9 +04/19/2016,Actors,@TaySchilling,"Pucker up to help Origins plant trees for Earth Month!Tweet your smooch to @Origins,tagging #KissThePlanet & #DoGoodCampaign! #ambassador" +04/03/2016,Actors,@TaySchilling,"'The Outs’ Returns: Making the Best Gay Show (Not) on TV +Yessss @tommyheleringer!!🙌🌟@theadamgoldman @watchtheouts https://t.co/kiM3WOBr5e" +03/13/2016,Actors,@TaySchilling,Time For Change Foundation Helping women and children thrive. Join Me! https://t.co/Zsu9yc9vWV +03/09/2016,Actors,@TaySchilling,RT @HillaryClinton: Why Hillary has won nearly all the editorial board endorsements in the Democratic primary so far. https://t.co/neBtd2kS… +02/26/2016,Actors,@TaySchilling,"Video: President Obama Weighs in on Oscars Controversy https://t.co/AWqDeVIxju ""provide opportunity to everybody"" #OscarsSoWhite" +02/11/2016,Actors,@TaySchilling,"Gravitational Waves Detected, Confirming Einstein’s Theory, via @nytimes +Ripples! https://t.co/gHqBPpIA2q" +02/01/2016,Actors,@TaySchilling,@imperfect_souul @megosaurus_rawr ur brave&intelligent activism are inspiring examples of how change happens #blackatbls +02/01/2016,Actors,@TaySchilling,"BLS students standing up +@megosaurus_rawr @imperfect_souul xx https://t.co/4f0H4clXFI" +12/21/2015,Actors,@TaySchilling,GLASSbook x Jackie Cruz Holiday... by Zoe Ziirsen | Generosity looks good! https://t.co/XrpahKrYY4 +12/16/2015,Actors,@TaySchilling,Redefining masculinity in 2015: https://t.co/aTS4leqD8q #unmasked +12/10/2015,Actors,@TaySchilling,And the golden globes! Nailing it @UzoAduba. Congratulations!!! +12/10/2015,Actors,@TaySchilling,Congratulations to the magnificent @UzoAduba and @thedanieb on their SAG noms as well as the entire orange cast! +12/10/2015,Actors,@TaySchilling,"#You Ain’t No American, Bro, via @nytimes https://t.co/oUp5Z5YJzF" +11/06/2015,Actors,@TaySchilling,"Larry Smith! My #bestadviceinsix, “Right now you're ok, I promise.” is in @larrysmith's new @sixwords book https://t.co/wwZ7RNbrno" +11/05/2015,Actors,@TaySchilling,"Not a great day in Houston. + https://t.co/SDnqFAcGPq" +09/29/2015,Actors,@TaySchilling,National pink out day #StandWithPP +09/09/2015,Actors,@TaySchilling,Excited to share that my latest film @Overnight_Movie is now on @iTunesMovies! Watch now: http://t.co/2GeYHISwhg +09/09/2015,Actors,@TaySchilling,RT @AmazonVideo: This could be the start of a beautiful friendship... and you're invited. Own #TheOvernight: http://t.co/ZMsFoyLgdx https:/… +08/13/2015,Actors,@TaySchilling,Mindy Kaling's Guide to Killer Confidence http://t.co/meDJ6ZqjzV +08/13/2015,Actors,@TaySchilling,Proud to support your great work! https://t.co/XDMhWsO6XI +08/12/2015,Actors,@TaySchilling,Xx https://t.co/5KE5PmzPXa +08/10/2015,Actors,@TaySchilling,http://t.co/7sIVCkIG9B +08/10/2015,Actors,@TaySchilling,http://t.co/TMg6KaFUpY +08/08/2015,Actors,@TaySchilling,What We Learned From German Prisons - The New York Times http://t.co/vNSGZppQm0 +08/07/2015,Actors,@TaySchilling,Plus it's free @jonesarah http://t.co/v4RWAfCTNN +08/07/2015,Actors,@TaySchilling,The brilliant @jonesarah performing @ the East River amphitheater tonite 7pm. I'm a BIG fan. Humbled and awed http://t.co/v4RWAfCTNN +07/31/2015,Actors,@TaySchilling,"#FBF to before the season 3 premiere. @HarryJoshHair , your hair stylist skills always blow me away. *Pun intended. http://t.co/u5AuKkizLW" +07/17/2015,Actors,@TaySchilling,"If you want to motivate for a movie this weekend- just saying it's an option. Still in theaters,… https://t.co/Xkx1FenICT" +07/15/2015,Actors,@TaySchilling,Sage wisdom. Rub noses. http://t.co/jY3gu6chRZ @carrie_rachel corintuckerband https://t.co/9o8nhFOz72 +07/10/2015,Actors,@TaySchilling,RT @BravoWWHL: TONIGHT: @TaySchilling & @AndieMacDowell3 are in the #WWHL Clubhouse! Tune in 11/10c only on @BravoTV. +07/09/2015,Actors,@TaySchilling,RT @EqualMeansEqual: @TaySchilling speaks out in support of the #ERA. Stay tuned for the @EqualMeansEqual documentary for more info. http:… +07/08/2015,Actors,@TaySchilling,Extra hour on the tarmac just became really enjoyable with @Miguel's beautiful album #WILDHEART on repeat +07/04/2015,Actors,@TaySchilling,@SarahSoWitty @Overnight_Movie @mradamscott 🙌 +07/02/2015,Actors,@TaySchilling,@sammyx618 well... I've already seen it... But enjoooyyy +07/02/2015,Actors,@TaySchilling,@pipe_chap @Overnight_Movie thank you! +07/02/2015,Actors,@TaySchilling,#TheOvernight is the new sleepover... Go see it! @Overnight_Movie is out in theaters TOMORROW http://t.co/teuKp3Hs6d +06/30/2015,Actors,@TaySchilling,Loved sharing a good laugh with Taylor Schilling…I mean @HarryJoshHair #behindthescenes #outtakes #bellylaugh #ad http://t.co/pnSxsezkYs +06/28/2015,Actors,@TaySchilling,Pride party for 2. #stoopshenanigans #freeselfieson13thst #pride2015 #lovewins @harryjoshhair https://t.co/WMFJexdayC +06/28/2015,Actors,@TaySchilling,Pride party for 2 #stoopshenanigans #freeselfieson13thst #pride2015 #lovewins @harryjoshhair https://t.co/Jiu1HTdg8y +06/26/2015,Actors,@TaySchilling,The Supreme Court rules that the Constitution guarantees a right to same-sex marriage http://t.co/UkgHGByYyq http://t.co/kWXRKL0Dst +06/26/2015,Actors,@TaySchilling,"To all those in the UK, #TheOvernight is in cinemas today! Hope you enjoy! https://t.co/R3nn8z256w" +06/25/2015,Actors,@TaySchilling,http://t.co/6siHWCFM1t audience participation. #TheOvernight #clarification +06/25/2015,Actors,@TaySchilling,"RT @rachelzarrell: ""Masshole"" added to the Oxford English Dictionary. Along with +""TomFuckinBrady."" http://t.co/gytFQCMs7P" +06/25/2015,Actors,@TaySchilling,RT @julieburtonwmc: Actress Meryl Streep sends a letter to each and every member of Congress http://t.co/kgVdh7HeJN @womensmediacntr @eraco… +06/25/2015,Actors,@TaySchilling,"RT @NETAPORTER: She’s out of lock up and charming the socks off us, meet @OITNB’s @TaySchilling. #THEEDIT http://t.co/Or7EMTgIWE http://t.…" +06/23/2015,Actors,@TaySchilling,So much fun shooting last week with my buddy @HarryJoshHair. See the full video on @JohnFriedaUS social channels #ad http://t.co/srPwub4PAy +06/23/2015,Actors,@TaySchilling,"@tswift5everr I beg to differ. However, I sincerely appreciate the sentiment. :) x" +06/23/2015,Actors,@TaySchilling,@RheAy2 I always imagined she didn't. It's ambiguous tho. What did you think? +06/23/2015,Actors,@TaySchilling,@YaelStone @Overnight_Movie Ya Ya! Dear friend. +06/23/2015,Actors,@TaySchilling,@holz_emison soon! +06/23/2015,Actors,@TaySchilling,@givemamaasmile here! +06/23/2015,Actors,@TaySchilling,@mpride80 @OITNB thank you!! +06/23/2015,Actors,@TaySchilling,"Gender equality isn’t just about women. It’s about a world with equal +opportunity for all. I support #ERANow http://t.co/5b0GLeKrft" +06/17/2015,Actors,@TaySchilling,RT @FilmLinc: Critics are calling THE OVERNIGHT a modern-day BOB & CAROL & TED & ALICE. Sneak preview tmrw! http://t.co/jIMfdnQY3L http://t… +06/16/2015,Actors,@TaySchilling,"#Repost theovernight with repostapp. +・・・ +Tomorrow, see mradamscott, Judith Godrèche, Jason… https://t.co/dgSR3Mrhgc" +06/16/2015,Actors,@TaySchilling,"#Repost theovernight with repostapp. +・・・ +Your circle should be well rounded and supportive. Keep it… https://t.co/ihKfZ526l0" +06/12/2015,Actors,@TaySchilling,Binge watching? Check out @JohnFriedaUS to see how @HarryJoshHair did my hair for the Season 3 Fan Event #JFstyle #ad http://t.co/D9BFTJ5Udb +06/11/2015,Actors,@TaySchilling,This is happening @Oitnb #orangecon #season3 #Oitnb @msjackiecruz @netflix https://t.co/uqFlAc2atJ +06/11/2015,Actors,@TaySchilling,Headed to get styled by @HarryJoshHair for Season 3 Fan Event. Stay tuned to @JohnFriedaUS for details. #JFStyle #ad http://t.co/BUaWHbyy8V +06/10/2015,Actors,@TaySchilling,"@mradamscott,Jason Schwartzman, @Judith_Godreche, &I got a little crazy. Here's a #NSFW trailer for @Overnight_Movie: http://t.co/ddNQBt9jRW" +06/05/2015,Actors,@TaySchilling,@UzoAduba 🍎🙏❤️ +06/05/2015,Actors,@TaySchilling,Not bad @uzoaduba #Oitnb #S3 #realsightseeing #sorrynotsorry https://t.co/knl7saOkdh +06/05/2015,Actors,@TaySchilling,@uzoaduba @lavernecox @lauraprepon https://t.co/U9zmSZx9Ka +06/05/2015,Actors,@TaySchilling,RT @LauraPrepon: Behind the scenes at Rolling Stone cover shoot! Still surreal 😊 https://t.co/WXIgGG4Znm +06/03/2015,Actors,@TaySchilling,"This felt really special. Thank you so much, rollingstone #OITNB #S3 https://t.co/aETfZgbyMr" +05/21/2015,Actors,@TaySchilling,Congratulations! https://t.co/OSLLMxPzaS +05/20/2015,Actors,@TaySchilling,Beautiful work! Thank you! https://t.co/KAebESKBkE +05/20/2015,Actors,@TaySchilling,RT @The_Gilbert_23: .@TaySchilling @GameofThrones CITY should support local animal shelter #DubrovnikShame PLS Help us fight! http://t.co/i… +05/19/2015,Actors,@TaySchilling,RT @Variety: .@shondarhimes and @OITNB's Jenji Kohan Honored for 'Changing the Face of Media' http://t.co/UKNhoRavxO http://t.co/xNIewxOYTI +05/19/2015,Actors,@TaySchilling,"RT @shondarhimes: Yes, I did. https://t.co/fUld7ddLbi" +05/19/2015,Actors,@TaySchilling,"RT @MajoritySpeaks: ""My flaws are gorgeous."" - @shondarhimes #WhatAFeministLooksLike" +05/19/2015,Actors,@TaySchilling,"RT @MajoritySpeaks: ""Your singular truth, your most individual story, is what's valuable."" - Taylor Schilling introducing Jenji Kohan #What…" +05/19/2015,Actors,@TaySchilling,"RT @msmagazine: ""Jenji has always had a saying: 'If they don't like it, fuck em.'"" - Matthew Weiner introducing Jenji Kohan #WhatAFeministL…" +05/08/2015,Actors,@TaySchilling,♥️ https://t.co/dGgYVV9hrA +05/08/2015,Actors,@TaySchilling,Thank you Tasho https://t.co/0vCPVn3RZW +05/08/2015,Actors,@TaySchilling,#Overnight https://t.co/RH2ivdeSlF +05/07/2015,Actors,@TaySchilling,"Aw thanks Piper! (Come back to NYC, we miss you) https://t.co/9vkFlWgXeu" +05/06/2015,Actors,@TaySchilling,@Carrie_Rachel @CriticsChoice #portlandia 🎉🎉 +05/06/2015,Actors,@TaySchilling,@nlyonne @OITNB@LPToussaint @CriticsChoice @netflix @MichaelHarney4 @TheKateMulgrew @UzoAduba @Lavernecox @LauraPrepon @thedanieb @SheIsDash +05/06/2015,Actors,@TaySchilling,@LPToussaint @CriticsChoice 🙌💃 +05/06/2015,Actors,@TaySchilling,Yaaaaaay @OITNB #CriticsChoice https://t.co/dJJvUcfHxn +04/30/2015,Actors,@TaySchilling,"June 12th! I can't wait. Until then... +#OITNB #S3 #SorryNotSorry #SoSoon https://t.co/t96e9VZhgN" +04/28/2015,Actors,@TaySchilling,I had a wonderful experience with this. Thank you! https://t.co/7YTRE81VLb +04/23/2015,Actors,@TaySchilling,RT @WPA_NYC: One week from today! Will we see you at The Boathouse?? Tickets: http://t.co/1Txo7ue9qM http://t.co/6Hxnni8GcB +04/22/2015,Actors,@TaySchilling,@mikerocks13 @mradamscott @TribecaFilmFest yay! +04/21/2015,Actors,@TaySchilling,🙌 #TheOvernight https://t.co/Nn0VOyNWsv +04/21/2015,Actors,@TaySchilling,“@TalkStoopNBC: Thanks for STOOPing by @TaySchilling! This was a faux-llet to remember. http://t.co/Km45x5JRJP” Xoxoxox +04/21/2015,Actors,@TaySchilling,"RT @EW: .@TaySchilling, @MrAdamScott find 'parental bliss' in 'The Overnight' trailer: http://t.co/2dlsyjDfxB http://t.co/qf119w0eLm" +04/21/2015,Actors,@TaySchilling,"RT @mradamscott: Here's the first trailer for THE OVERNIGHT out June 19! +@TaySchilling @CoconutRecords @patrick_brice +http://t.co/AQYnp6vF88" +04/21/2015,Actors,@TaySchilling,"@JasonAllen127 @USATODAY was a real pleasure today, Jason!" +04/09/2015,Actors,@TaySchilling,"BRAVE Uz, I'm cheering for you. And donating. +Check out this video and lend some support! X + http://t.co/LlxQh7UWzQ" +04/08/2015,Actors,@TaySchilling,@bakedvause 13 +04/08/2015,Actors,@TaySchilling,@vausemanobs June 12th! (I'm excited too) +04/08/2015,Actors,@TaySchilling,@tardisofbones @morrillaswennn Happy Birthday! May all your wishes come true... +04/08/2015,Actors,@TaySchilling,@Halestorm54 thank you for watching! +04/08/2015,Actors,@TaySchilling,“@NextOnTCM: FONDA ON FONDA (1992) Jane Fonda recalls her father Henry's career. 11:30 PM ET [cc] #TCM” Love this. +04/04/2015,Actors,@TaySchilling,Happy Birthday @daniellethorpe_ ! I got you a puppy! (Look in your purse.) +03/27/2015,Actors,@TaySchilling,@kathrynnikols @OITNB @UzoAduba me tooooooo! +03/27/2015,Actors,@TaySchilling,@tardisofbones @badwolfs belated happy Bday! Hope all your wildest come true 💕 +03/27/2015,Actors,@TaySchilling,"""@vausemanobs:@TaySchilling still can't believe how wonderful a month in the country was!Looking forward to season 3!thank you for watching!" +03/27/2015,Actors,@TaySchilling,"""@TheG1rlWhoLived: @TaySchilling I just got accepted into Fordham university! Fellow rams?? :) Go Rams! Congratulations and enjoy!" +03/26/2015,Actors,@TaySchilling,"""@Jenna_PR: @OITNB Do you like the fanbook I made @TaySchilling? http://t.co/QXxL4XGK99…""thank you Jenna!" +03/20/2015,Actors,@TaySchilling,"""@thenarobinson: Can't believe that this sign is still relevant. http://t.co/zdcTAVS2cY"" #OtisByrd" +02/28/2015,Actors,@TaySchilling,So happy happy to see these friends @jonesarah @msjackiecruz at the closing of #amonthinthecountry… https://t.co/hFOBfC104R +02/28/2015,Actors,@TaySchilling,@mons0423 @classicstage it has been coooold! Thanks for coming :) +02/28/2015,Actors,@TaySchilling,@howironickylie @classicstage thank you for coming! +02/28/2015,Actors,@TaySchilling,@TinaTurnbowMUP thank you sweet T. Wonderful to have you there x +02/28/2015,Actors,@TaySchilling,@brianna_lynnnn Happy Birthday! +02/28/2015,Actors,@TaySchilling,Last performance of #aMonthInTheCountry this afternoon. Thank you @classicstage. It has been thrilling. +02/28/2015,Actors,@TaySchilling,RT @classicstage: Only two performances left of A MONTH IN THE COUNTRY! http://t.co/9ja5qkXapo +02/27/2015,Actors,@TaySchilling,Ferocious and firey @Sleater_Kinney amazing show last night @Carrie_Rachel @corintuckerband @jazzzhand +02/11/2015,Actors,@TaySchilling,I love my new t-shirt. @ReproRights #waronwomen http://t.co/xRReDxAUUf http://t.co/hDDRZzVBTk +02/08/2015,Actors,@TaySchilling,RT @BlackBook: From Most Terrifying Moments to Hottest New Stars: 10 #Sundance Moments That Have Us Talking http://t.co/OE3cvTxGGJ http://t… +02/08/2015,Actors,@TaySchilling,Patricia Arquette Grows Into ‘Boyhood’ http://t.co/w0BcnHZhrE via @nytvideo do I love this lady. +02/05/2015,Actors,@TaySchilling,RT @RoadsBestTravel: Added to the list of reasons why #iheartny: #AMonthInTheCountry @classicstage starring @TaySchilling & #peterdinklage … +02/05/2015,Actors,@TaySchilling,"You made my night x""@selenis_leyva: You need to see @TaySchilling and this amazing cast!! My Blanca!! #Amazing http://t.co/By0Heyj4t1""" +02/04/2015,Actors,@TaySchilling,RT @patrick_brice: HOLY MOLY! THE OVERNIGHT is headed to @sxsw! Congrats @orchtweets @mradamscott @Judith_Godreche @TaySchilling http://t.c… +01/31/2015,Actors,@TaySchilling,@joelmgarland @classicstage so good to see you tonight x +01/26/2015,Actors,@TaySchilling,Congratulationssss to @UzoAduba and the entire utterly brilliant cast of #oitnb on the @SAGawards +01/23/2015,Actors,@TaySchilling,@nlyonne @MarinIreland ❤️ +01/20/2015,Actors,@TaySchilling,RT @KellyandMichael: #OITNB's #TaylorSchilling! #KellyandMichael http://t.co/Iv8I3OwL1t +01/20/2015,Actors,@TaySchilling,Getting ready for silliness with @kellyandmichael #AMonthInTheCountry http://t.co/NXVH71wDGS +01/20/2015,Actors,@TaySchilling,@patrick_brice @mradamscott @coconutrecords #TheOvernight http://t.co/PoDrrRvjGR +01/04/2015,Actors,@TaySchilling,"""Everybody needs to be understood."" http://t.co/nFEMn5X860" +06/28/2018,Actors,@LauraPrepon,#ThrowbackThursday to some of my fav #OITNB Vause promo shots. 🍊Can’t wait for you guys to see season 6! https://t.co/8VwLVUPq6w +06/25/2018,Actors,@LauraPrepon,Fresh sugar snaps from the farmers market. Another cooking trick my mother taught me: pull the strings off before s… https://t.co/pukBRGT9Y4 +06/21/2018,Actors,@LauraPrepon,My friend @ambertamblyn wrote a powerful novel that made Vanity Fair's Ultimate Fiction List. Pre-order it today:… https://t.co/6ZPzMeH14e +06/18/2018,Actors,@LauraPrepon,"Yogurt Parfaits for breakfast this AM. SO easy to make. I love to use grassfed plain yogurt, gluten free banana gra… https://t.co/6kYz5yJt9M" +06/15/2018,Actors,@LauraPrepon,Thanks @Variety for including me in this piece on directing! #FemaleFilmmakerFriday https://t.co/GRiKFGapOe +06/13/2018,Actors,@LauraPrepon,Moms ask me how I have time to make baby food everyday… This is a great tool—it steams & blends like a food process… https://t.co/U9EXvi0N67 +06/09/2018,Actors,@LauraPrepon,"Honored to be part of LGBTQ Pride in Warsaw, Poland. #OITNB https://t.co/c1YcFopIFG" +06/08/2018,Actors,@LauraPrepon,"RT @StopThePig: @LauraPrepon @netflix A huge billboard in Warsaw, Poland for the Equality Parade (9/06)! @ParadaRownosci https://t.co/xBsQt…" +06/08/2018,Actors,@LauraPrepon,"This #Vause temp tattoo is going to be part of @Netflix’s Pride Celebration in Warsaw, Poland tomorrow! The… https://t.co/lKoNwGM9pk" +06/07/2018,Actors,@LauraPrepon,"A new movie, @heartsbeatloud - from the director of THE HERO, @brettghaley, and one of my amazing co-stars,… https://t.co/I3jOSF8Aoy" +06/05/2018,Actors,@LauraPrepon,"Bye Bye, Litchfield. Hello, #OITNBs6 - coming July 27. 🍊#OITNB https://t.co/MaHeT2C2ko" +06/05/2018,Actors,@LauraPrepon,"RT @OITNB: Bye bye, Litch. https://t.co/Y9tWQtIO37" +06/05/2018,Actors,@LauraPrepon,What I’m cooking for Ella today: fresh greens from the farmers market. Basil is finally here! Purple sweet potato &… https://t.co/2xnCYBsjC3 +06/03/2018,Actors,@LauraPrepon,Just Married! Thank you for all the love and support. Wishing all of us the good stuff! https://t.co/0UrrQbZ6D5 +05/31/2018,Actors,@LauraPrepon,Waiting for #OITNB season 6 like… https://t.co/xi09xmOPCv +05/30/2018,Actors,@LauraPrepon,My newest fav product are these great biodegradable sandwich bags! I always need things for food storage and most s… https://t.co/a51lTfGvLu +05/24/2018,Actors,@LauraPrepon,This is great opportunity for aspiring female filmmakers: @att @hellosunshine Filmmaker Lab from @FreshFilmsDT will… https://t.co/qAE4eaEtuz +05/22/2018,Actors,@LauraPrepon,Miniature spaghetti Bolognese for the 👶🏼. My mother always taught me presentation is very important! ;) https://t.co/C14DVs5rrX +05/19/2018,Actors,@LauraPrepon,Had a great time talking about last season of #OITNB with my #orangefamily last night. ❤️🍊 Can’t wait for you to se… https://t.co/oT22ULBTdD +05/17/2018,Actors,@LauraPrepon,"I was lucky enough to discover this restaurant during #Cannes2018, Le Maschou. You make your own salad, then watch… https://t.co/RY222Ki1el" +05/16/2018,Actors,@LauraPrepon,"If anyone needs me, I’ll be right here on the #FrenchRiviera. #Cannes2018 https://t.co/m5MjsBlgeM" +05/14/2018,Actors,@LauraPrepon,I spent my first official #MothersDay in Cannes! Happy belated Mother’s Day to all you bad-ass moms out there! Than… https://t.co/egBf91uCIh +05/12/2018,Actors,@LauraPrepon,#FlashbackFriday to drinking #TheStashPlan broth while warming up during our winter scenes! Congrats to everyone wh… https://t.co/TUUHkYmzpR +05/10/2018,Actors,@LauraPrepon,#ThrowbackThursday to directing my first episode of #OITNB. Looking forward to getting back behind the camera. https://t.co/Isbhk4W4RF +05/08/2018,Actors,@LauraPrepon,"Current obsession - trying to perfect my at-home latte. Any baristas out there? Advice welcome! Also, favorite coff… https://t.co/4XLb3rOufK" +05/03/2018,Actors,@LauraPrepon,#ThrowbackThursday to having a great time on the red carpet with @TaySchilling for #OITNB! Love my #orangefamily. 🍊… https://t.co/k6hkV4C5JI +05/02/2018,Actors,@LauraPrepon,"I like prepping & cooking chicken with big chicken sheers. Then, I can cut and check to make sure they are fully co… https://t.co/w0zBgFP4dJ" +04/29/2018,Actors,@LauraPrepon,"RT @ArthurKade: .@LauraPrepon joined me on the show for a terrific one on one about her cookbook #TheStashPlan, new season of @OITNB, direc…" +04/26/2018,Actors,@LauraPrepon,"#ThrowbackThursday to fishing in Cape May, NJ when I caught my first porgy. Looking forward to the nice weather so… https://t.co/mwPS0YRC7M" +04/24/2018,Actors,@LauraPrepon,It’s finally starting to feel like spring in NYC! Fresh basil and tulips from the farmers market. 🌷🌷 https://t.co/GF7FTnHTG9 +04/19/2018,Actors,@LauraPrepon,"RT @ArthurKade: Wonderful chat with @lauraprepon about #TheStashPlan, season 6 of @OITNB, becoming a mother and her #MothersDay plans, her…" +04/19/2018,Actors,@LauraPrepon,RT @thebrooklynmom: Excited to speak to @LauraPrepon today at the @themoms Mamarazzi event about #TheStashPlan book out in paperback follo… +04/19/2018,Actors,@LauraPrepon,"Post workout, pre-coffee / +post-coffee, post glam - thanks to Dayna Goldstein (hair) & Victor Henao (makeup) for ma… https://t.co/dQmVbTFhfa" +04/19/2018,Actors,@LauraPrepon,"RT @themoms: Get ready to take the 21 Day challenge to shed weight, feel great and take charge of your health with .@LauraPrepon #StashPlan…" +04/18/2018,Actors,@LauraPrepon,"Between baby, laundry, & work, getting to a cycle class (one of my fav workouts) is tough. I started to make my own… https://t.co/4UtuesiHxX" +04/17/2018,Actors,@LauraPrepon,"RT @JohnFugelsang: Today on @SXMInsight we’re airing my conversation with @lauraprepon on her excellent new book, and other matters, and it…" +04/17/2018,Actors,@LauraPrepon,So great seeing how you guys are doing on #TheStashPlan challenge! Keep sending pics of what you’re making - I love… https://t.co/SyaLnKlEPY +04/13/2018,Actors,@LauraPrepon,"RT @TouchstoneBooks: FWIW, @LauraPrepon was way ahead of the curve on bone broth. Why not make some this weekend? https://t.co/NwfdtFsEkk" +04/12/2018,Actors,@LauraPrepon,RT @JILLFRITZO: ICYMI: @LauraPrepon was om @thechew yesterday cooking up Springtime favorites! https://t.co/Ya8l1UtKAX +04/12/2018,Actors,@LauraPrepon,#ThrowbackThursday to #That70sShow on @TVGuide. PS - Such fond memories from that show! Not so much of polyester an… https://t.co/oYUONEz2Fy +04/11/2018,Actors,@LauraPrepon,RT @thechew: .@LauraPrepon dishes on Season 6 of #OrangeistheNewBlack! #OITNB #TheChew https://t.co/N0MUKNyPlv +04/11/2018,Actors,@LauraPrepon,"RT @thechew: .@lauraprepon's Poached Halibut will be one of the easiest dishes you'll ever make! Not to mention, there is hardly any clean-…" +04/11/2018,Actors,@LauraPrepon,"RT @thechew: OMG WE ARE SO EXCITED!! Also, she’s cooking up one of the easiest dishes EVER! 😍 https://t.co/JAYswYKhlw" +04/11/2018,Actors,@LauraPrepon,Watch me today on @thechew at 1pm! Always love hanging and cooking with these guys. https://t.co/wJ92QVxzwK +04/09/2018,Actors,@LauraPrepon,@sarah_bruty You can add water to that when reheating. Next time try using more water and on LOW. Every slow cooker… https://t.co/t5527DMgCa +04/09/2018,Actors,@LauraPrepon,"@sarah_bruty When that’s happened with me in the past, next time I added more water. You didn’t mess anything up! T… https://t.co/tJZk2MIMvA" +04/09/2018,Actors,@LauraPrepon,"New baby food combo I’m trying, mixing in greens with Japanese Yams. The yams are sweet and help to make spinach mo… https://t.co/sbVyi52biZ" +04/06/2018,Actors,@LauraPrepon,RT @ABC_Publicity: New Release: ABC’s @thechew Is Serving Up Food That Makes You Go ‘MMMMM!’ All Week Long With Guests @iamcamilaalves McCo… +04/05/2018,Actors,@LauraPrepon,#ThrowbackThursday to filming one of my favorite #OITNB episodes with @loripetty! I talked about it on Facebook Liv… https://t.co/dlqOOtT1ms +04/04/2018,Actors,@LauraPrepon,"RT @LiveKellyRyan: Bone Broth is good for leaky gut repair, looking and feeling young, and better sleep. For recipe: https://t.co/fvyC7BDAl…" +04/03/2018,Actors,@LauraPrepon,RT @LauraVogel: Producing a Facebook Live session for @lauraprepon’s #TheStashPlan paperback release with @catgreenleaf! Check out Laura’s… +04/03/2018,Actors,@LauraPrepon,RT @JILLFRITZO: ICYMI: @LauraPrepon was on Live with Kelly & Ryan talking #StashPlan https://t.co/az5WbDNaRl +04/03/2018,Actors,@LauraPrepon,RT @RyanSeacrest: Bone broth is the new black @lauraprepon https://t.co/QmPpOGNlNH +04/03/2018,Actors,@LauraPrepon,Watch me live on @LiveKellyRyan NOW! Thanks to my glam squad Dayna Goldstein (hair) & Victor Henao (makeup).… https://t.co/RqytCkxdVA +03/31/2018,Actors,@LauraPrepon,Come hang with me on Tuesday at 2pm EST! I’ll be doing a Facebook Live Q&A about #TheStashPlan with @CatGreenleaf.… https://t.co/qCuZ2PSr6u +03/30/2018,Actors,@LauraPrepon,"In between work and baby, it’s so easy to make excuses to skip working out. Make it work however you can! For me th… https://t.co/JxeyIlNyIH" +03/29/2018,Actors,@LauraPrepon,"Testing out a new stir fry recipe! Base sauce: bone broth, garlic, shallots, Braggs amino acids, a little farm fres… https://t.co/S3FkGNzBqB" +03/22/2018,Actors,@LauraPrepon,Looking ahead to some nicer weather in NY! Spring is out there somewhere… #tbt #ThrowbackThursday https://t.co/9doy88W2jg +03/21/2018,Actors,@LauraPrepon,It’s the first time I’m holding #TheStashPlan in paperback! So exciting to finally have it in-hand. It’s an honor t… https://t.co/xkh9Tigsr6 +03/20/2018,Actors,@LauraPrepon,"Just saw @TheNewGroupNYC’s “Good for Otto” and it was unbelievable. If you’re in NYC, I highly suggest checking it… https://t.co/ctPp9DlBl8" +03/15/2018,Actors,@LauraPrepon,I want these in my size. #laundryday ❤️💫 https://t.co/UQYoahKBRK +03/12/2018,Actors,@LauraPrepon,#TheStashPlan is coming out on paperback! Have you pre-ordered your copy? Make sure you have it in time for the cha… https://t.co/KSzCFQFRRX +03/08/2018,Actors,@LauraPrepon,Search interest in “female directors” was 30% higher in 2017 than in 2016 in the US. See more #IWD2018 trends at… https://t.co/lavb5UGAJ5 +03/08/2018,Actors,@LauraPrepon,Thanks for all the birthday wishes and messages!! +03/06/2018,Actors,@LauraPrepon,Exciting news! #TheStashPlan is coming out in paperback on April 3! We’re also doing a new 21 day challenge startin… https://t.co/W8qD51BBvv +03/05/2018,Actors,@LauraPrepon,I have some exciting #TheStashPlan news to share with you tomorrow… stay tuned! +02/28/2018,Actors,@LauraPrepon,"Even while out of town, I make a nutritious broth to nourish my family. I’ll cook most things in it for nutrients a… https://t.co/xe3YDKxkmM" +02/27/2018,Actors,@LauraPrepon,Morning coffee with the Pacific. https://t.co/W28fiWWZVp +02/20/2018,Actors,@LauraPrepon,Hope everyone had a great long weekend! A must for new parents—a staycation! First time for me. Didn’t realize how… https://t.co/IE7o5n8I9p +02/15/2018,Actors,@LauraPrepon,#ThrowbackThursday to hanging with @chelseahandler while shooting @NBCChelsea! #tbt https://t.co/7o0FsrZrbB +02/14/2018,Actors,@LauraPrepon,A pot full of organic bones makes my week! Nourishing my family with ancient ways. People have been stewing bones f… https://t.co/FXClqEcnyM +02/09/2018,Actors,@LauraPrepon,I love a change! Finished filming #OITNB for the season and chopped off the locks. https://t.co/CwImDZrHQk +02/08/2018,Actors,@LauraPrepon,Last day shooting #OITNB season 6 with my beautiful co-star. Until the next one! #orangefamily 🍊❤️ https://t.co/9nXr4mKUna +02/05/2018,Actors,@LauraPrepon,"This is my infrared sauna. It’s amazing for detox, inflammation, & overall revitalization. It helps me stay healthy… https://t.co/ArVrhZbF5H" +02/02/2018,Actors,@LauraPrepon,Directing my first short film. Thankful for the opportunity to grow as a director and for my mentors along the way.… https://t.co/Nzp54oYlxl +01/30/2018,Actors,@LauraPrepon,"Filming in the snow again. I’m an east coast girl, but filming in Hawaii sounds gooood.💁🏻‍♀️❄️😅 https://t.co/QqtwQAPKJY" +01/26/2018,Actors,@LauraPrepon,Picking up fresh veggies at the farmers market. Have you tried any fun dishes recently? Need some ideas for dinner…… https://t.co/TxexziF4Jo +01/24/2018,Actors,@LauraPrepon,Just wrapped directing this episode of #OITNB. Can’t wait for you guys to see next season! https://t.co/fUfRizoQaG +01/18/2018,Actors,@LauraPrepon,#ThrowbackThursday to directing these amazing ladies last year during Season 5 of #OITNB 🍊❤️ #tbt #orangefamily https://t.co/OLzS4bVzwA +01/16/2018,Actors,@LauraPrepon,Back behind the camera directing #OITNB! Love our amazing #orangefamily! ❤️🍊 https://t.co/RSGpkYctCF +01/13/2018,Actors,@LauraPrepon,"#OITNB doesn’t feel like work, even on a weekend. Gotta love what you do! #orangefamily https://t.co/JLoVaphwkq" +01/11/2018,Actors,@LauraPrepon,#ThrowbackThursday to my mom looking gorgeous behind the camera. Directing runs in the family ❤️ #TBT https://t.co/PYxtBkquID +01/07/2018,Actors,@LauraPrepon,"The past few days may be some of the coldest weather NYC’s ever had, but luckily it’s still warmer than the top of… https://t.co/mUiQgZkdMU" +01/05/2018,Actors,@LauraPrepon,RT @CSiriano: Loved this #goldenglobe moment with the beautiful @LauraPrepon in custom Siriano looking amazing! #TBT #glamour #awardseason… +01/01/2018,Actors,@LauraPrepon,"Time's up on silence. Time's up on waiting. Time's up on tolerating discrimination, harassment, and abuse. #TimesUp… https://t.co/vgbjnZr0Wd" +12/30/2017,Actors,@LauraPrepon,Never get tired of my recipes from #TheStashPlan. They really are my favorites! Making the quinoa tabbouleh today. https://t.co/3yCUS7tSnV +12/21/2017,Actors,@LauraPrepon,#ThrowbackThursday to Christmas last year with my nephew! I hope everyone has a wonderful holiday! #TBT https://t.co/wwSsO9xO21 +12/19/2017,Actors,@LauraPrepon,You can take the girl outta Jersey but you can’t take Jersey outta the girl . . . just got a cheetah print baby bla… https://t.co/4XqKCeXlom +12/14/2017,Actors,@LauraPrepon,So happy we got nominated again for the #SAGAwards Outstanding Performance by an Ensemble in a Comedy Series! And c… https://t.co/Sn57vIq4ux +12/11/2017,Actors,@LauraPrepon,We had the first snow of the season this weekend - guess I won’t be this hot anytime soon… #OITNB https://t.co/i5WDxe6Egr +12/07/2017,Actors,@LauraPrepon,#ThrowbackThursday to @NBCChelsea with my girl @AliWong who you can now see killing it on @AmericanWifeABC. #TBT https://t.co/BkuPT6nUTf +12/05/2017,Actors,@LauraPrepon,"With a busy schedule, falling behind on laundry, and an early call time - sometimes you gotta resort to using your… https://t.co/BP2ZVaNZqS" +12/01/2017,Actors,@LauraPrepon,Made some homemade granola for breakfast. A cool trick is to toss in an egg white before baking for golden color an… https://t.co/HbmZWkJxn8 +11/29/2017,Actors,@LauraPrepon,Always love hanging with my girl @TaySchilling! Hard at work on season 6 with my partner in crime. #OITNB… https://t.co/pIAoLRnT47 +11/22/2017,Actors,@LauraPrepon,Thanks for all the tips! You guys are the best. Hope everyone has a great Thanksgiving! +11/20/2017,Actors,@LauraPrepon,Having a little trouble with the new crib… Any tips on traveling with a newborn so I can avoid stuff like this?!… https://t.co/wylinGUhEY +11/18/2017,Actors,@LauraPrepon,"My girl @ambertamblyn released a collection with @mysisterorg to fight assault, exploitation, and trafficking. 25%… https://t.co/xRUeZNsy2J" +11/17/2017,Actors,@LauraPrepon,"#fbf to my press tour for #TheStashPlan… If you haven’t checked it out yet, you can learn more about my first book… https://t.co/jR18ofzBMR" +11/14/2017,Actors,@LauraPrepon,"Coffee shops might not be open in time for my early #OITNB call time, but luckily my own organic cold brew moonshin… https://t.co/5kp4vMe6s5" +07/01/2017,Actors,@LauraPrepon,Love this BTS pic of me and #samelliott from @theheromovie17 ---it's out nationwide now. very… https://t.co/xwUipAoAaQ +06/21/2017,Actors,@LauraPrepon,@theheromovie17 heads to more cities across the US this Friday!!! https://t.co/CHOdrlGl2S +06/20/2017,Actors,@LauraPrepon,Loved directing these amazing actors and actresses on @oitnb!! Look forward to the next one!… https://t.co/TImNkvN8ug +06/10/2017,Actors,@LauraPrepon,About last night! @oitnb Premiere event NYC. Thank you @josueperezhair for my locks! and… https://t.co/NlKINmn86t +06/09/2017,Actors,@LauraPrepon,@TheHeroMovie is now playing in NY & LA! Opens nationwide this June/July. Get tickets now: https://t.co/eDWXAKPmwO https://t.co/o2nTmGPMF1 +06/09/2017,Actors,@LauraPrepon,Season 5 of #oitnb is now streaming!!!!!!! https://t.co/PAYbDvioXO +06/09/2017,Actors,@LauraPrepon,Thank you @nytimesphoto for making us a Critic's Pick!!! @theheromovie17 ❤️ https://t.co/JgaJRWuNA4 +06/08/2017,Actors,@LauraPrepon,I WILL be strong! #oitnb @oitnb #june9th #alexvause https://t.co/ad7NhIfeQ1 +06/08/2017,Actors,@LauraPrepon,1 more day! The Hero on the big screen! @theheromovie opens NY/LA TOMORROW & nationwide in June/July! GET TICKETS:… https://t.co/mYCulKvehx +06/08/2017,Actors,@LauraPrepon,About to get my @siriusxm game on! 🤰🏻💞let's talk @theheromovie17 and @oitnb !! https://t.co/aYX28iYUvV +06/08/2017,Actors,@LauraPrepon,En route to @LiveKelly 🍓🍓🍓Breakfast of champions! @theheromovie17 @oitnb https://t.co/JgwLlMKVB8 +06/08/2017,Actors,@LauraPrepon,About last night! @theheromovie17 NYC. I hope you guys this special movie! thank you for my… https://t.co/12oRBd6p5O +06/06/2017,Actors,@LauraPrepon,Join me and Brett Haley for a special opening weekend of Q&A's! Get tickets now: https://t.co/eDWXAKxL8e https://t.co/OU60zEExwp +06/01/2017,Actors,@LauraPrepon,Jumpin for jumpsuits with @instyle #oitnb @OITNB https://t.co/asRVApj1DW +05/16/2017,Actors,@LauraPrepon,Season 5!! Comin' atcha June 9th! @oitnb #alexvause 😈 https://t.co/75BcbwzyHp +05/12/2017,Actors,@LauraPrepon,Go to manueladtla and check out this awesome event one of my fave chefs is doing. It supports… https://t.co/GZD9CyPKTR +05/12/2017,Actors,@LauraPrepon,Love this shot of @brettghaley and I going over a scene together. He taught me how to read… https://t.co/6RFlaE0WlP +05/09/2017,Actors,@LauraPrepon,Enough is enough. Get ready for June 9th! @OITNB #netflix #season5 https://t.co/KM4v1k7ytu +05/08/2017,Actors,@LauraPrepon,@oitnb season 4 is avail tmrrw to own on blueray and DVD! https://t.co/fkhPUN0wnc +05/07/2017,Actors,@LauraPrepon,Awesome fan art! #bestfansever @oitnb #season5 June 9th!! https://t.co/40W4aofK5N +04/20/2017,Actors,@LauraPrepon,Can't wait for you guys to hang out with Charlotte on June 9th!! She's pretty cool. 😁❤😎… https://t.co/Flmzi43ipU +04/17/2017,Actors,@LauraPrepon,"The trailer for @theheromovie17 is here! Very excited for you all to see this film! +https://t.co/V6xCgifdkw" +04/12/2017,Actors,@LauraPrepon,First 60 second tease of Season 5! @oitnb #season5 #june9 https://t.co/MlQQjmoJpX +04/11/2017,Actors,@LauraPrepon,Our official poster for theheromovie Can't wait for you guys to see it! Comes out same day as… https://t.co/n7nr7afdXq +04/02/2017,Actors,@LauraPrepon,Nothing says Springtime like tulips! thank you @thebouqsco for my beautiful spring flowers!… https://t.co/odBAAS1zJE +02/04/2017,Actors,@LauraPrepon,"""Sorry John...I don't remember."" #pokerdayz #johnnychan #daysofrounders https://t.co/HuyuDMrqqT" +01/30/2017,Actors,@LauraPrepon,Woohoo!!! Congrats to all of my beautiful co-stars!!! @oitnb #ladiesoflitchfield #orangefamily 🍊🍊❤ https://t.co/qJsATQ8DNJ +01/23/2017,Actors,@LauraPrepon,Spotlight Award. creativecoalition So honored. #sundance2017 #charlotte #thehero ☺☺❤🎥 https://t.co/n738rQOjC4 +01/23/2017,Actors,@LauraPrepon,Honored to receive the Spotlight award for THE HERO. Thank you creativecoalition for this!!!… https://t.co/JgtAXu0yW2 +01/22/2017,Actors,@LauraPrepon,#cappuccinoart 😊🙊 https://t.co/kI8qknYna8 +01/22/2017,Actors,@LauraPrepon,There's always a first for everything. A talented barista put my face on a cappuccino. 😊☺☕️☕️… https://t.co/0pS1gEsj41 +01/22/2017,Actors,@LauraPrepon,"Sundance close-ups, behind the scenes. thanks @tinaturnbowmup and jonathan_colombini for my snow… https://t.co/71O5V91wVI" +01/22/2017,Actors,@LauraPrepon,Behind the scenes! Press day THE HERO. #sundance2017 📷@tinaturnbowmup https://t.co/9EgWasxxOB +01/22/2017,Actors,@LauraPrepon,Press day for THE HERO! #sundance2017💕 📷@TinaTurnbowMUP https://t.co/66s9Nyul4Z +01/22/2017,Actors,@LauraPrepon,Premiere went great!! So happy to be a part of this movie. thank you @sundanceorg for having us in competition!!… https://t.co/xwpHFOYPSe +01/22/2017,Actors,@LauraPrepon,Premiere of THE HERO at @sundanceorg snow glam: @tinaturnbowmup and @jonathan_colombini ❄❄❄💓🎥 https://t.co/7dGfSA5YrA +01/22/2017,Actors,@LauraPrepon,About to head to the premiere of The Hero. Can't wait to see it! Sundance glam squad: @jonathan_colombini… https://t.co/1EOKXwcFx7 +01/22/2017,Actors,@LauraPrepon,"Women's March, Sundance. #womensrightsarehumanrights https://t.co/gnFQRvJhtM" +01/22/2017,Actors,@LauraPrepon,"""I can't believe we still have to protest this $#it!"" Love, not hate--makes America great. #womensmarch… https://t.co/rPc9XJ1aET" +01/20/2017,Actors,@LauraPrepon,Sundance here we come! Very excited and proud of this film. thank you @variety for listing us as a #mustsee 🎬🎥💓 https://t.co/kV0oKPJ5SI +12/14/2016,Actors,@LauraPrepon,Thank you @hollywoodreporter !! #BestTVof2016 https://t.co/MVQ2Rv2pnu +12/14/2016,Actors,@LauraPrepon,Congrats 2 my amazing co-stars!! Another @sagawards nom for best ensemble! & congrats to @uzoaduba on her nom!!… https://t.co/GauB7PdRIg +11/15/2016,Actors,@LauraPrepon,Directing my beautiful co-stars. What a gift and it's not even Xmas.🙌🏻💓 @TaySchilling 📸@nlyonne !! #alexandpiper https://t.co/tAyN5jRIK4 +11/15/2016,Actors,@LauraPrepon,So proud 2 be directing @oitnb ! Cast & crew r incredible & supportive Can't wait 4 u guys 2 see it! luv my 🍊fam!🎬… https://t.co/lJY9Qayadj +10/26/2016,Actors,@LauraPrepon,"Celery Root, which is a fave of mine. Roast w/olive oil, salt n pepper. #farmtotable #realveggies #healthy… https://t.co/z8PyLMp1Ti" +10/21/2016,Actors,@LauraPrepon,Awesome drawing @giulia_sabet !! #faf #ointb #alexvause #orangefamily #alexlookssoglam https://t.co/R5HNNmBAmD +10/17/2016,Actors,@LauraPrepon,My girls rock! #orangefamily #thestashplan #supportingoursisters #farmtotable #healthy #hottie @MsJackieCruz https://t.co/8Di7OcUC05 +10/17/2016,Actors,@LauraPrepon,"The streets, the buildings, it's all so...perfetto 👏🏻💗 #italy #stillloveit https://t.co/GiHmRbRmhK" +10/14/2016,Actors,@LauraPrepon,#faf. This piece is so cool! Thank you for drawing Alex Débora Paim #alexvause #ointb #coolart 🙏🏻 https://t.co/m2c5wOE9Qz +10/13/2016,Actors,@LauraPrepon,The art is everywhere in Italy! #italia #muruals https://t.co/a0qXvnd0nC +10/12/2016,Actors,@LauraPrepon,Gelato alla Florence mi amore #italy #hadtogetgelato #sogood https://t.co/X3CsXfLqyq +10/11/2016,Actors,@LauraPrepon,Happiness. Italy. yes please.🌹🌹🌹 https://t.co/Awzkn5uGfc +10/11/2016,Actors,@LauraPrepon,"Happiness, taking in the beauty of Florence. ❤️💋🌹 https://t.co/xPKcJsjOPu" +10/11/2016,Actors,@LauraPrepon,"Florence, ti amo! #Poseidon #fountain #vivaleflorence https://t.co/Tsw5504NQG" +10/08/2016,Actors,@LauraPrepon,Shoutout 2 🍊 girls Talented ladies! @uzoaduba #americanpastoral @thedanieb @lanebryant @nlyonne #antibirth… https://t.co/jBpgmGuGl5 +10/07/2016,Actors,@LauraPrepon,backstage @todayshow #TheGirlOnTheTrain https://t.co/g1XZfcvqzC +10/05/2016,Actors,@LauraPrepon,#GOTT #Premiere! TY glam: @tinaturnbowmup @josueperezhair @nhakahn @forevermarkdiamonds @hellinkay 4 my look!… https://t.co/uzSonxwglz +09/09/2016,Actors,@LauraPrepon,Wow! @bsammy2010 this is dedication! ❤️ #goals #motivation #FanFriday https://t.co/MVwkyyHabK +09/06/2016,Actors,@LauraPrepon,A much needed getaway! Peaceful weekend on the water in Maine! https://t.co/R51O3ijGLG +09/02/2016,Actors,@LauraPrepon,Love this dope piece of #fanart I found on s.m.i.m.i @instagram page! https://t.co/e3RVgmNVNB +08/22/2016,Actors,@LauraPrepon,Picked up a new Xmas ornament while visiting New Mexico! #spicysanta #nevertooearlyforxmas https://t.co/8MekI2F86j +08/19/2016,Actors,@LauraPrepon,Love seeing your #fanstashes! Keep 'em coming! #fanfriday #thestashplan #cleaneating #allaboutthatbroth 📷:@runtx79 https://t.co/M65nBWOhhZ +08/16/2016,Actors,@LauraPrepon,"Check out this beautiful video, directed by #benfoster https://t.co/uxrqdZrQfb #loveisloveisloveislove @emilywellsmusic @NoiseyMusic" +08/13/2016,Actors,@LauraPrepon,My current read 📖 Fascinating explanations by @drjoshaxe about auto immune and digestive issues #eatdirt #healing https://t.co/pkQFPi491P +08/13/2016,Actors,@LauraPrepon,"Fresh basil and heirloom tomatoes, yum! #farmfresh #summermarket https://t.co/KeFy0v8m8b" +08/12/2016,Actors,@LauraPrepon,Just a little #FBF #FanArt 😛 📷 by @lyle_o_art #that70sshow #fanartfriday https://t.co/DAz7BdGDAb +08/11/2016,Actors,@LauraPrepon,"Running out the door to get on set for @OITNB Sorry I haven't been ""social"" my schedule is crazy! Miss you guys! 💋😜" +08/05/2016,Actors,@LauraPrepon,Love that this #fanart was hand drawn!! 📷: @xbooshbaby #FanArtFriday https://t.co/bRN7l6KkZL +08/03/2016,Actors,@LauraPrepon,Who did you get? #wedhookupshiv @OITNB https://t.co/tzhjtWoqZt +07/28/2016,Actors,@LauraPrepon,@girlontrainfilm hits theaters Oct. 7th!! Check out the latest trailer https://t.co/qASCFr9mf8 +07/19/2016,Actors,@LauraPrepon,Find out why #IAmAMogul & why I believe EVERY woman can be a @onMogul https://t.co/5ciDHByj01 https://t.co/U6LtqogZkZ +07/15/2016,Actors,@LauraPrepon,Check out this awesome #fanart! Love it! #fanartfriday #fanfriday https://t.co/02hh7yTBHt +07/04/2016,Actors,@LauraPrepon,Caught my first weakfish! #deepseafishing #myhappyplace https://t.co/gwuywuKwuq +06/30/2016,Actors,@LauraPrepon,Be ‘Like a Vause’ & snag this tee that supports The Lowline in NYC! Get yours https://t.co/6YnJJUDmog @lowlinenyc https://t.co/9LSN1W6WyJ +06/29/2016,Actors,@LauraPrepon,"This cracks me up! @OITNB @sesamestreet @HBO #Orangeisthenewsnack +https://t.co/Nc8GchisI2" +06/28/2016,Actors,@LauraPrepon,#TimesTalks @nytimes @OITNB @TheKateMulgrew @UzoAduba @thedanieb @nlyonne @TarynManning @TaySchilling @samirawiley https://t.co/PyJkLN5Xub +06/28/2016,Actors,@LauraPrepon,Why thank you ☺️ https://t.co/p69CGoMJ9v +06/26/2016,Actors,@LauraPrepon,Cheers @TaySchilling Here's to us! @OITNB #OITNB #Season4 @netflix https://t.co/QG5MnN3dCD +06/24/2016,Actors,@LauraPrepon,Thank you so much for all the questions #AskOrange Till next time. Have a wonderful rest of your day!! 😊🎉😋🤓 +06/24/2016,Actors,@LauraPrepon,It's absolutely awful! NO person should be in fear of their lives because of who they love!! https://t.co/ERYeGXmEx2 +06/24/2016,Actors,@LauraPrepon,📚💡👓👩‍❤️‍👩 I don't think she could pick one https://t.co/0fvjgRNrNm +06/24/2016,Actors,@LauraPrepon,"Always black, seasonally white https://t.co/aZFaFQYDLU" +06/24/2016,Actors,@LauraPrepon,They are both so different and at such different stages of my life and career. I honestly could not compare them. https://t.co/1TJkKP9oRE +06/24/2016,Actors,@LauraPrepon,Yep https://t.co/iFjYTKk7BX +06/24/2016,Actors,@LauraPrepon,Thank YOU for watching! https://t.co/wUYQxWsZ00 +06/24/2016,Actors,@LauraPrepon,It's not easy! She's so damn good and so funny. Love working with her!! https://t.co/orLeh6rcVB +06/24/2016,Actors,@LauraPrepon,Brilliant https://t.co/B8CpodZZLH +06/24/2016,Actors,@LauraPrepon,You used my full name! Don't scare me like that. 😳😁 https://t.co/6QDzvF0AeX +06/24/2016,Actors,@LauraPrepon,"A case, definitely! https://t.co/cC3sLhaZSY" +06/24/2016,Actors,@LauraPrepon,I wish I could help. But we have to shoot the show for you!! 😊 https://t.co/iQ9ATE06OZ +06/24/2016,Actors,@LauraPrepon,"We hear very little but it'll be incredibly awesome. Like all the seasons! It's Jenji, she'll keep us on our toes. https://t.co/B9BvIy9IGo" +06/24/2016,Actors,@LauraPrepon,"Not really, just do my work!!! 😊 https://t.co/uX5GfSb3Do" +06/24/2016,Actors,@LauraPrepon,It's awesome to work with people again from other shows! I got to work with a Chelsea cast mate season 3 as well!! https://t.co/mEirKP2THX +06/24/2016,Actors,@LauraPrepon,"I hope not, you never know what could happen though! https://t.co/0FOBItj6KM" +06/24/2016,Actors,@LauraPrepon,Cool!! https://t.co/k02jhsU2ZN +06/24/2016,Actors,@LauraPrepon,"Never, easy isn't Alex and Piper. https://t.co/G2Nq4uZpui" +06/24/2016,Actors,@LauraPrepon,They are two uber talented people! I always have a great time working with them. https://t.co/4AEOIJuQ9n +06/24/2016,Actors,@LauraPrepon,I have not seen that! https://t.co/I5OZdwC9z2 +06/24/2016,Actors,@LauraPrepon,I personally have 0 https://t.co/0vSQVgf5ks +06/24/2016,Actors,@LauraPrepon,Yep! https://t.co/G7gg8Ap8uZ +06/24/2016,Actors,@LauraPrepon,"The green house scene in episode 1 was brutal, incredible but a tough one. https://t.co/9s2NvYeKla" +06/29/2018,Actors,@UzoAduba,"On Saturday, show up. Wear white. Make your voice heard. Let us stand together, because families belong together.… https://t.co/A5UhJqLalx" +06/29/2018,Actors,@UzoAduba,"RT @papermagazine: ""There's something about the speed matched with the sense of control — it's a thrilling sport."" - @UzoAduba https://t.co…" +06/29/2018,Actors,@UzoAduba,Word. https://t.co/RMLA7C14B9 +06/29/2018,Actors,@UzoAduba,@wallyworld106 Thank you for this very sweet message(and profile pic!) Very grateful to bring this show to so many.… https://t.co/823tYsiemz +06/27/2018,Actors,@UzoAduba,"@michaelstrahan @LonnieChavis What a strong, smart and brave young man you are, @LonnieChavis Well done 👊🏿❤️💪🏿" +06/27/2018,Actors,@UzoAduba,RT @Heifer: Have you heard the news? @UzoAduba is our first Ambassador to Africa! This piece from @Refinery29 shares about Uzo and how she… +06/27/2018,Actors,@UzoAduba,An honor. https://t.co/XvTRMj2nuB +06/27/2018,Actors,@UzoAduba,So PROUD. #ProudToBU @Ocasio2018 https://t.co/yPzAXECBJi +06/24/2018,Actors,@UzoAduba,"“Power is killing.” -My mother, an immigrant" +06/22/2018,Actors,@UzoAduba,"Go, #SuperEagles!!!! SOAR!!!!!!! #WorldCup #ProudlyNigerian @FIFAWorldCup @NGSuperEagles https://t.co/XN9CBToCbh" +06/22/2018,Actors,@UzoAduba,"Come on, Super Eagles!! Soar!!!! 🇳🇬🦅🇳🇬 #WorldCup2018 #TeamNigeria" +06/21/2018,Actors,@UzoAduba,RT @chescaleigh: yoooooo @jennyhan this looks so freaking good! @lanacondor is delightful! https://t.co/738ivv8VrC +06/20/2018,Actors,@UzoAduba,"“If you think you are too small to make a difference, you haven’t spent a night with a mosquito.” -African Proverb" +06/18/2018,Actors,@UzoAduba,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Actors,@UzoAduba,From a little over a year ago. Still holds true today. https://t.co/MwYvc9np15 +06/17/2018,Actors,@UzoAduba,"Proudly Nigeri- wait. You DON’T have Tidal?!? (Me, yesterday) 🇳🇬🦅🇳🇬 #WorldCup #SuperEagles #TheCarters https://t.co/nzb5idenHX" +06/16/2018,Actors,@UzoAduba,The Carters. +06/14/2018,Actors,@UzoAduba,I ❤️ NY. https://t.co/kqB5UX1Edo +06/13/2018,Actors,@UzoAduba,To recognize another person’s hurt. https://t.co/G3oWzuz4Xl +06/11/2018,Actors,@UzoAduba,Congratulations to ALL at last night’s Tonys!! Sending special love to my friends and cast mates @LindsayMendez… https://t.co/nIoWE5ZJ4w +06/11/2018,Actors,@UzoAduba,RT @TimFederle: Theater kids will save us all. +06/11/2018,Actors,@UzoAduba,Sun/day. #TonyAwards #theaterkids https://t.co/XFD6bNlVI6 +06/10/2018,Actors,@UzoAduba,@marcmalkin @AIDSLifeCycle @fabianfuentes28 @KarlJSchmid @LALGBTCenter You. Are. Loved. Congratulations on your tre… https://t.co/fm9AJdqwKB +06/10/2018,Actors,@UzoAduba,RT @lizadonnelly: Practicing being a presenter at the dress rehearsal: @UzoAduba ! #TonyAwards #thisisbroadway https://t.co/C8I8xCDAO4 +06/09/2018,Actors,@UzoAduba,I feel like Afrolocks today: the weather is juuuuuuust right! +06/08/2018,Actors,@UzoAduba,RT @Oprah: Seeing everything under one roof brought tears to my eyes. Thanks Lonnie Bunch for giving @GayleKing and I a sneak peek of “Watc… +06/08/2018,Actors,@UzoAduba,"RT @theblcklst: TV writers: submissions are now open for the inaugural @stayMACRO Episodic Lab! Learn more: https://t.co/ImIWHPxFa6 + +We're…" +06/07/2018,Actors,@UzoAduba,When you get a release date for Season 6 of #oitnb July 27th. #tbt @OITNB @netflix https://t.co/g42cuilIrx +06/07/2018,Actors,@UzoAduba,RT @1234vive: This is .... wow. 🔥🔥🔥🔥 https://t.co/RJtmI1hSig +06/06/2018,Actors,@UzoAduba,"RT @laurasaurusrex: LADIES WHO WANT TO DO CINEMATOGRAPHY BUT ARE NERVOUS: + +AFI is offering a FREE 4 DAY CINEMATOGRAPHY WORKSHOP FOR WOMEN…" +06/05/2018,Actors,@UzoAduba,Taking it to The Max. July 27th. #OITNB #S6 https://t.co/dqN4RzpiMK +06/04/2018,Actors,@UzoAduba,"Thanks so much for having us, Ken! https://t.co/70IzYlYwMa" +06/03/2018,Actors,@UzoAduba,Family. France. French Open...fantastique! #FrenchOpen2018 https://t.co/PNvSg2jvN5 +06/03/2018,Actors,@UzoAduba,"RT @TennisChannel: You just never know what to expect at #TennisChannel during #RG18. + +Thanks for the surprise visit @UzoAduba! + +@solo_ken…" +06/03/2018,Actors,@UzoAduba,What an awesome day! And a GREAT view! https://t.co/7OrNN5lb7D +05/31/2018,Actors,@UzoAduba,"RT @TwitterMoments: Kendrick Lamar's album DAMN was just awarded the Pulitzer Prize in Music, making him the first non-classical or jazz ar…" +05/31/2018,Actors,@UzoAduba,@sicurowest99 Super sweet. Thank you. I love seeing the love and support you’re extending out to another woman! Much appreciated 🙏🏿 +05/30/2018,Actors,@UzoAduba,"RT @TheTonyAwards: See @UzoAduba, @MattBomer, Claire Danes, @armiehammer, @tatianamaslany, @leslieodomjr, Jim Parsons, @ZacharyQuinto and @…" +05/30/2018,Actors,@UzoAduba,"RT @CBS: The #TonyAwards just got even better because @UzoAduba, @MattBomer, and more stars will be presenting live! Find out which other b…" +05/30/2018,Actors,@UzoAduba,"RT @playbill: Tony winner @leslieodomjr, Jim Parsons, and @UzoAduba are among the #TonyAwards2018 presenters: https://t.co/5HUJQSi867 https…" +05/29/2018,Actors,@UzoAduba,"RT @SI_Tennis: She's baaaaaaack. + +Serena Williams wins her first Slam match since January 2017 and first clay court match of the season, 7…" +05/27/2018,Actors,@UzoAduba,Pure joy. https://t.co/Ly3hDw2Uzi +05/25/2018,Actors,@UzoAduba,Whoa! This is one of the greatest honors I’ve ever received!! I still love the school mantra: “We walk...at Wheel… https://t.co/kCqSb4jmxf +05/24/2018,Actors,@UzoAduba,RT @CBSNews: NEW: Harvey Weinstein expected to turn himself into authorities in New York on Friday after inquiry into sexual assault allega… +05/23/2018,Actors,@UzoAduba,RT @nytimes: Breaking News: History in Georgia: Stacey Abrams became the first black woman to be a major party's nominee for governor after… +05/23/2018,Actors,@UzoAduba,She is the one that Georgia has been waiting for. Massive congrats to @staceyabrams on this tremendous victory!!! https://t.co/o7lNyHZWCd +05/22/2018,Actors,@UzoAduba,RT @AishaHinds: TODAY is the day!!! #Georgia VOTE! VOTE! VOTE! @staceyabrams for GOVERNOR #TeamABRAMS https://t.co/AWULJshYsd +05/22/2018,Actors,@UzoAduba,"RT @staceyabrams: After 11 months, it all comes down to tomorrow. Tuesday's election is one moment on this long journey, but it is OUR mome…" +05/20/2018,Actors,@UzoAduba,@WendiAarons @letterslive That letter was amazing!! +05/18/2018,Actors,@UzoAduba,Today’s tragedy marks the 22nd school shooting in America this year. Twenty. Second. #SantaFe +05/18/2018,Actors,@UzoAduba,"America, what’s happening? #SantaFe" +05/18/2018,Actors,@UzoAduba,Does anyone remember the TV movie Polly!?? It was soooo good. +05/13/2018,Actors,@UzoAduba,For raising me. For your strength. For guiding me. For your love. I just love you so much. Happy Mother’s Day Mummy… https://t.co/P00VZzyNVv +05/13/2018,Actors,@UzoAduba,"My favorite time on social media is when you can feel the collective love being passed round, and around, and aroun… https://t.co/bpVmjPyPtL" +05/12/2018,Actors,@UzoAduba,My. JAM. https://t.co/ofy0lhPVAF +05/12/2018,Actors,@UzoAduba,Genius. https://t.co/oY8DB6Nd11 +05/11/2018,Actors,@UzoAduba,"RT @CNN: A Georgia police officer who choked former NFL prospect Desmond Marrow during an arrest in December has been fired, officials said…" +05/11/2018,Actors,@UzoAduba,"RT @breakinginmovie: Like mother, like daughter. #BreakingInMovie in theaters May 11. Get tickets now: https://t.co/IKgAOenlV7 https://t.co…" +05/11/2018,Actors,@UzoAduba,Sending much love to @itsgabrielleu today for her film #BreakingIn which premieres IN theaters today! Buy a ticket… https://t.co/I7cUGefvVm +05/10/2018,Actors,@UzoAduba,RT @jes_chastain: 🖤 I wanted to share with you something I've been working on 🖤 #marioncotillard @Lupita_Nyongo @realBingbingFan #PenelopeC… +05/10/2018,Actors,@UzoAduba,"RT @justiceroundtab: In the United States, +2.3 million people are behind bars. +2.7 million kids have a parent locked up. +$80 billion is spe…" +05/09/2018,Actors,@UzoAduba,Stand firmly in your power. +05/09/2018,Actors,@UzoAduba,Honoring teachers on #TeacherAppreciationDay “Ok. Anyone who knows me knows how much I love teachers. They’ve been… https://t.co/poHE9mBdZV +05/08/2018,Actors,@UzoAduba,@WBLooneyTunes Without question. +05/07/2018,Actors,@UzoAduba,RT @Lupita_Nyongo: Excited to share the screen with these incredible women! @jes_chastain #MarionCotillard @realBingbingFan #PenelopeCruz #… +05/07/2018,Actors,@UzoAduba,"A quick education: when Space Jam is on TV, you watch. Space Jam. Class dismissed." +05/06/2018,Actors,@UzoAduba,Catch the message. https://t.co/PKM0q9pS79 +05/05/2018,Actors,@UzoAduba,"On the 20th, I will be especially #ProudtoBU. #ThisCouldBU https://t.co/xbtjQQhPpV" +05/02/2018,Actors,@UzoAduba,"RT @MichelleObama: On May 2, I can't wait to celebrate my 5th #CollegeSigningDay in Philly! It’s been amazing seeing this event grow into a…" +04/30/2018,Actors,@UzoAduba,"RT @CNNAfrica: To mark the 100th anniversary of Nelson Mandela's birth, former President Obama will deliver a high-profile speech in July a…" +04/29/2018,Actors,@UzoAduba,Let’s gooo!!!!! https://t.co/Bynf3O1Msg +04/27/2018,Actors,@UzoAduba,Grateful to have been part of this group. Check out #CandyJar available NOW on @netflix !! https://t.co/c8U7Nj6fCx +04/27/2018,Actors,@UzoAduba,RT @InStyle: You'll want to steal @UzoAduba's adorable tradition with her sisters. https://t.co/77ug5NbBUW +04/27/2018,Actors,@UzoAduba,"Thank you @InStyle for letting me share how nothing beats a sister. + +https://t.co/5IGKVVIBcn" +04/26/2018,Actors,@UzoAduba,@ConstanceWu @CrazyRichMovie Lady...I can’t wait! +04/26/2018,Actors,@UzoAduba,RT @ConstanceWu: Et Voilà! Here's the official trailer for @CrazyRichMovie! Love you all x https://t.co/7wjky2OiZo +04/25/2018,Actors,@UzoAduba,@JulieChen @TheTalkCBS Thanks so much for having me!!! +04/24/2018,Actors,@UzoAduba,RT @Hanhonymous: #CandyJar: New @Netflix movie about two opposites-attract debate team teens looks pretty good? w/ @UzoAduba & Christina He… +04/24/2018,Actors,@UzoAduba,RT @TheTalkCBS: TODAY: We're ready to party all day long when @UzoAduba joins us! Get the low-down on her newest movie #CandyJar when she d… +04/23/2018,Actors,@UzoAduba,RT @Luvvie: Aaahhh! @UzoAduba has my book #ImJudgingYou as one of her reading picks! Thank you! 😃😃😃 https://t.co/wBxfVcdHJR +04/23/2018,Actors,@UzoAduba,"RT @shereadsdotcom: Emmy-award winning actress and active social justice warrior, @UzoAduba is a celebrity we certainly admire. We admire h…" +04/22/2018,Actors,@UzoAduba,Wow. https://t.co/c7nZzJcYPV +04/21/2018,Actors,@UzoAduba,@tracelysette @octarell NO ONE is mad. Not a single soul. #getit +04/20/2018,Actors,@UzoAduba,“There shouldn’t be an age limit for being aware.” - The ever brilliant 11-year-old Naomi Wadler. https://t.co/UExLmfb82g +04/20/2018,Actors,@UzoAduba,@Emma4Change And love the costume choice. #JUSTICENOW +04/20/2018,Actors,@UzoAduba,Standing with you @Emma4Change and all those who have chosen to stand UP. https://t.co/nNsbQODLzl +04/20/2018,Actors,@UzoAduba,"This has been my show since Day 1. Changed the game on so many frontiers, from introducing the world to a leading l… https://t.co/I9fl3p2y8L" +04/20/2018,Actors,@UzoAduba,RT @BearGrylls: The best season we have done! @rogerfederer @ScottEastwood @DonCheadle @derekhough @IAMLenaHeadey @UzoAduba & Keri Russell… +04/18/2018,Actors,@UzoAduba,"RT @Lavernecox: #IvyPark #beyonce + +https://t.co/wAvju7kbKc" +04/16/2018,Actors,@UzoAduba,RT @Variety: .@KendrickLamar Wins Pulitzer Prize for ‘Damn’ https://t.co/p7j5istd6n +04/16/2018,Actors,@UzoAduba,"Say her name, say her NAME... #Beyonce." +04/13/2018,Actors,@UzoAduba,"RT @CNNAfrica: “Because of the success of 'Black Panther,' now Hollywood wants African stories, and I think Nigeria is at the forefront of…" +04/13/2018,Actors,@UzoAduba,RT @Backstage: @UzoAduba sets New York stage return + more theater news https://t.co/OHkeQzCwAc https://t.co/CKi6w2GyU9 +04/12/2018,Actors,@UzoAduba,@AdrieaneLinox Adriane! Thank you 😊 +04/12/2018,Actors,@UzoAduba,"RT @VWOfficial: #bts #missvirgina with the amazing @uzoaduba 🎥 #blackgirlmagic @ Los Angeles, California https://t.co/FyNyMvayVO" +04/11/2018,Actors,@UzoAduba,"They are not a headline. Not a cause for the moment. They are our countrymen who, with every passing moment, can’t help but feel forgotten." +04/11/2018,Actors,@UzoAduba,A necessary read. Let us not forget the very real need in Flint. https://t.co/VnAq792gsZ +04/11/2018,Actors,@UzoAduba,RT @melsil: .@UzoAduba and Janet McTeer are set to star in new plays from Lydia R. Diamond and Theresa Rebeck: https://t.co/6aJ4ewg5d8 http… +04/11/2018,Actors,@UzoAduba,RT @RWitherspoon: Bravo to @HBO for taking important steps to address equal pay in Entertainment. It is an privilege to work with a compan… +04/11/2018,Actors,@UzoAduba,RT @jes_chastain: On this #EqualPayDay I would like to recognize @UniversalPics #DonnaLangley & #ErikBaiers for understanding the importan… +04/10/2018,Actors,@UzoAduba,@AnnaMariaPdT Let’s gooo!!! +04/10/2018,Actors,@UzoAduba,RT @TheEllenShow: What do we want? Equal pay! When do we want it? 100 years ago. #EqualPayDay +04/10/2018,Actors,@UzoAduba,RT @KamalaHarris: It’s time to make equal pay a reality in America. #EqualPayDay https://t.co/CjdQUQ8yQU +04/10/2018,Actors,@UzoAduba,RT @MadameNoire: Actress @UzoAduba is heading to the theatre to play the first woman in the Negro Leagues! Will you be checking out this pr… +04/10/2018,Actors,@UzoAduba,"RT @Essence: .@UzoAduba is set to star in 'Toni Stone', a play about the first woman to go pro in the Negro Leagues. https://t.co/UosOvHxQm…" +04/10/2018,Actors,@UzoAduba,"@tamaratorresnyc @tellyleung Thank you, Tamara!!!!" +04/10/2018,Actors,@UzoAduba,"@ArianaDeBose Thanks, lady ❤️❤️❤️" +04/10/2018,Actors,@UzoAduba,RT @ArianaDeBose: It’s a good day indeed! Go sis @UzoAduba!! https://t.co/xhv1qZtvQg +04/10/2018,Actors,@UzoAduba,"@marcmalkin Thank you, Marc!!" +04/10/2018,Actors,@UzoAduba,"RT @marcmalkin: Congrats, @UzoAduba!!! Uzo Aduba Headed to New York Stage https://t.co/m0td3I544c" +04/10/2018,Actors,@UzoAduba,@Sports_Greats @shondarhimes Love this. +04/09/2018,Actors,@UzoAduba,"RT @THR: Janet McTeer is headed back to Broadway in Theresa Rebeck's 'Bernhardt/Hamlet,' while Uzo Aduba will play the African-American fem…" +04/09/2018,Actors,@UzoAduba,"@robinthede I ❤️ you, @robinthede . I double ❤️❤️ you. 😊" +04/09/2018,Actors,@UzoAduba,"RT @Variety: Uzo Aduba, Janet McTeer Join Roundabout Theatre Company Slate https://t.co/7BD4evf2k2" +04/09/2018,Actors,@UzoAduba,"RT @RTC_NYC: Just announced! @UzoAduba will return to the New York stage in the world premiere of Lydia R. Diamond's #ToniStone. + +For more…" +04/09/2018,Actors,@UzoAduba,"@tellyleung Thanks, Tell!! I love you, my dear friend. Can’t wait to you around “campus.”" +04/09/2018,Actors,@UzoAduba,"RT @tellyleung: YES YES YES! Get it, @UzoAduba! https://t.co/REyVK2CTOy" +04/09/2018,Actors,@UzoAduba,RT @broadwaycom: Janet McTeer & @UzoAduba to portray real-life icons in two world-premiere plays: https://t.co/rnfKlMO5OL https://t.co/7lAj… +04/09/2018,Actors,@UzoAduba,Home. https://t.co/oK9S6MARIk +04/09/2018,Actors,@UzoAduba,RT @theatermania: #JanetMcTeer & @UzoAduba to return to NY stage in upcoming @RTC_NYC productions → https://t.co/4wzjhcZneW https://t.co/ND… +04/09/2018,Actors,@UzoAduba,RT @playbill: .@RTC_NYC sets two world premieres for 2018–2019 lineup: @TheresaRebeck's Bernhardt/Hamlet starring Janet McTeer and Lydia R… +04/09/2018,Actors,@UzoAduba,"If you then you don’t +don’t love deserve +me at my… https://t.co/fdpG5BW2fp" +04/06/2018,Actors,@UzoAduba,"Morning. +The sun stretches through the sleepy cracks; +And we begin." +04/05/2018,Actors,@UzoAduba,"Ariel had like, 20 thing-a-ma-bobs and she still wants more?? Greedy 🙄." +04/04/2018,Actors,@UzoAduba,“I’m so excited!” -made timeless by The Pointer Sisters and also Jessie Spannow. +04/04/2018,Actors,@UzoAduba,"RT @cindi_leive: “Injustice must be exposed, with all the tension its exposure creates, to the light of human conscience...before it can be…" +04/04/2018,Actors,@UzoAduba,Today we are proud to partner with the amazing female funders and founders of @AllRaise as they commit to making ch… https://t.co/dopVohbLph +04/03/2018,Actors,@UzoAduba,RT @Variety: .@MatthewModine joins @UzoAduba in the drama 'Miss Virginia' (EXCLUSIVE) https://t.co/S8TXaJ6chO https://t.co/wkUfpMtoK5 +04/03/2018,Actors,@UzoAduba,RT @JohnBoyega: First official press trip to Nigeria and off to a great start! https://t.co/xY7L16TjZn +04/03/2018,Actors,@UzoAduba,RT @cnbcafrica: Tune into Power Lunch West Africa now for our interview with @JohnBoyega. #plwa410 https://t.co/hv6rfHvi0u +04/02/2018,Actors,@UzoAduba,"RT @BBCWorld: Retired South African archbishop Desmond Tutu hails Winnie Mandela, who has died aged 81, as ""a defining symbol of the strugg…" +04/02/2018,Actors,@UzoAduba,Nkosi sikelel’ iAfrika. God Bless Africa. https://t.co/YxhXe4f1Tn +04/01/2018,Actors,@UzoAduba,"Happy Easter, everybody!!" +03/31/2018,Actors,@UzoAduba,"RT @blackenterprise: Teen Wins Prestigious Writing Award That Stephen King, Capote, and Other Famous Writers Won https://t.co/BvcAy2MVMO ht…" +03/31/2018,Actors,@UzoAduba,I’m Walking On Sunshine: solid tune and always delivers. +03/30/2018,Actors,@UzoAduba,RT @WomenaHollywood: Tribeca Film Fest Adds Day-Long #TimesUp Event https://t.co/2BzrrPkhmy https://t.co/Ll4fQ64f1J +03/30/2018,Actors,@UzoAduba,@qimmahsaafir A pleasure on both sides. 😊🙏🏿😊 +03/30/2018,Actors,@UzoAduba,"RT @okayafrica: #Okay100Women: OkayAfrica talked to the multi-talented Nigerian-American actress @UzoAduba. Learn how she got into acting,…" +03/28/2018,Actors,@UzoAduba,RT @ShaunKing: I want to remind you that Colin Kaepernick had the police murder of Alton Sterling on his mind when he first took a knee.… +03/27/2018,Actors,@UzoAduba,The real question is: who DOESN’T go to AfroPunk??! https://t.co/yXYCViLsRn +03/26/2018,Actors,@UzoAduba,@MatthewModine Hey YOU! I can’t wait!!!! And Michael Wilson has my ❤️❤️. See you soon!!! +03/25/2018,Actors,@UzoAduba,@BradWalsh @FSSerengeti 😉😉❤️ +03/25/2018,Actors,@UzoAduba,@BradWalsh @FSSerengeti 🧐🧐🧐 +03/25/2018,Actors,@UzoAduba,"RT @Emma4Change: Real Quick: my speech today was abt 6 mins & 30 secs, including both my speech and my silence. The fact that people think…" +03/25/2018,Actors,@UzoAduba,On the ground and ready to start our adventures in The Serengeti with @FSSerengeti !! #familytime #myfssafari… https://t.co/jTXljPDPrm +03/25/2018,Actors,@UzoAduba,"RT @womensmarch: Naomi Wadler, we make you this promise: Where you lead, we will follow. + +With love and in solidarity, +The Women of Americ…" +03/25/2018,Actors,@UzoAduba,RT @patrickconeil: History is being made. Open your eyes and your hearts. #NeverAgain #MarchForOurLives https://t.co/rNqKDOGBAY +03/25/2018,Actors,@UzoAduba,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Actors,@UzoAduba,#MarchForOurLives #NeverAgain +03/24/2018,Actors,@UzoAduba,RT @Dionsmusica: Heading to Washington D.C for the #MarchForOurLives with a group of students! Holla! #EnoughIsEnough #ChicagoStandUp #Stud… +03/24/2018,Actors,@UzoAduba,RT @AudraEqualityMc: #MarchForOurLives Go Children Go! So so so so so proud of you! +03/24/2018,Actors,@UzoAduba,https://t.co/m90yF5En1u +03/24/2018,Actors,@UzoAduba,"There are 3,140,167 students in Florida. Politicians there have received over $3.3M from the NRA. That’s $1.05 per… https://t.co/8j6FP5hnbe" +03/23/2018,Actors,@UzoAduba,The powerful voice of Journey Jamison. Rise up. Catch the message. https://t.co/gqFfZyyKwB +03/23/2018,Actors,@UzoAduba,@laurabrown99 Holding it down for us in Tanzania! +03/23/2018,Actors,@UzoAduba,People are marching tomorrow. For their lives. Let’s never have to do this again. #neveragain #marchforourlives +03/23/2018,Actors,@UzoAduba,RT @Emma4Change: I have absolutely no words... Thank you not only for your service but for standing with us as we #MarchForOurLives tomorro… +03/21/2018,Actors,@UzoAduba,"First South, then West, now East. #letsgo #heiferinternational https://t.co/uIGoBfU28b" +03/20/2018,Actors,@UzoAduba,This MUST stop. +03/19/2018,Actors,@UzoAduba,YES. https://t.co/HZAZbjfgyO +03/18/2018,Actors,@UzoAduba,You know what movie I still really love? The Big Sick. It was just so good. +03/14/2018,Actors,@UzoAduba,"In order to stand up, you must first walk out." +03/13/2018,Actors,@UzoAduba,A very important read. https://t.co/AlsuXHCs5l +03/13/2018,Actors,@UzoAduba,"RT @kerrywashington: NYC! +https://t.co/njXXJoArv8" +03/13/2018,Actors,@UzoAduba,@darkblonde13 Love to you and thanks so much 🙏🏿🙏🏿 +03/13/2018,Actors,@UzoAduba,@anthropologistm And I you!! +03/12/2018,Actors,@UzoAduba,"RT @TIMESUPNOW: Proud to announce today the launch of @TIMESUPAD, in solidarity with our sisters in advertising. More info: https://t.co/0t…" +03/11/2018,Actors,@UzoAduba,@laurabrown99 Haaa!! And fair. +03/10/2018,Actors,@UzoAduba,"“Putting on all the bells and whistles...” + +Who wears bells and whistles?" +03/10/2018,Actors,@UzoAduba,RT @nytimes: Ida B. Wells was a 30-year-old newspaper editor living in Memphis when she began her anti-lynching campaign https://t.co/2OMqH… +03/10/2018,Actors,@UzoAduba,Thank goodness you were there. Thanks for having me! +03/10/2018,Actors,@UzoAduba,Hammered??! I don’t know if I can think of storms the same way again. It was WILD!!! https://t.co/fWPw5cgOzy +03/10/2018,Actors,@UzoAduba,"RT @TIMESUPNOW: Today, @ava makes/breaks history with @WrinkleInTime, out now. Congrats to Ava and the stellar cast and crew! #BeAWarrior #…" +03/08/2018,Actors,@UzoAduba,Happy International Women’s Day! #InternationalWomenDay +03/08/2018,Actors,@UzoAduba,RT @CNNAfrica: These are the #MeToo stories you haven’t heard - five Nigerian women share their harrowing stories of sexual abuse and haras… +03/08/2018,Actors,@UzoAduba,"RT @TessaThompson_x: YES @michaelb4jordan . This is how change happens. When we commit to making it. +#InclusionRider https://t.co/kBiRVFWc…" +03/08/2018,Actors,@UzoAduba,@TessaThompson_x @michaelb4jordan Indeed +03/08/2018,Actors,@UzoAduba,Home. You are welcome. ❤️ https://t.co/8CYLlpl15U +03/07/2018,Actors,@UzoAduba,A woman who has given so much to so many. #theaterkid https://t.co/VbCvKEvQdI +03/06/2018,Actors,@UzoAduba,I’m taking an adventure with @BearGrylls on @NBCRunningWild this summer. The season premieres May 30! #RunningWild https://t.co/mxOJnInePM +03/05/2018,Actors,@UzoAduba,Insisting while persisting. https://t.co/AerQ2E8X1L +03/05/2018,Actors,@UzoAduba,Magic Monday ✨✨. Photo by the incredible Keith Thompson. Felt like heaven. #antarctica #7for7 https://t.co/iVmYzLWHHm +03/02/2018,Actors,@UzoAduba,@adriennelwarren Love him. +03/02/2018,Actors,@UzoAduba,"Just doing it. Do it, Daniel Caesar. https://t.co/cDg2ZQCmgZ" +03/01/2018,Actors,@UzoAduba,It’s #WomensHistoryMonth and @WrinkleInTime comes out March 9th. You do the math of where you should be in 9 days. So excited. #TeamMeg +02/28/2018,Actors,@UzoAduba,@joshuahenry20 @carouselbway @playbill Here for it. +02/28/2018,Actors,@UzoAduba,No filter. No zoom. This place is beautiful. #Antarctica #7thcontinent #7for7 https://t.co/ynkg0zXRLK +02/28/2018,Actors,@UzoAduba,Day 28: First Lady Michelle Obama. @MichelleObama #thankyou #withoutyou #thereisnome #BlackHistoryMonth https://t.co/banpA5Jsyc +02/28/2018,Actors,@UzoAduba,I’ve got joy like a fountain. +02/20/2018,Actors,@UzoAduba,Worth the watch. Might we all come to the table with the open ears of the conservative farmer and liberal organizer. https://t.co/KLukJHyirU +02/20/2018,Actors,@UzoAduba,RT @UzoAduba: Day 20: Maya Angelou. #THANKYOU #withoutyou #thereisnome #BlackHistoryMonth http://t.co/jXegtD3p +02/19/2018,Actors,@UzoAduba,Means more today. https://t.co/w4l0bRzOts +02/19/2018,Actors,@UzoAduba,"RT @brielarson: If you want to buy tix for people who can’t afford to see #BlackPanther at the moment, comment below. If you are in need of…" +02/19/2018,Actors,@UzoAduba,"RT @nytimes: ""Black Panther"" blew past projections to take in an estimated $387 million worldwide over the Presidents' Day weekend, breakin…" +02/19/2018,Actors,@UzoAduba,We can either talk about it or we can be about it. +02/18/2018,Actors,@UzoAduba,RT @Emma4Change: My friends an i have been hard at work at North Community Park calling attention to @NeverAgainMSD and @AMarch4OurLives It… +02/18/2018,Actors,@UzoAduba,RT @UzoAduba: Day 18: Madame C.J. Walker. #THANKYOU #withoutyou #thereisnome #BlackHistoryMonth http://t.co/6O5qo1oW +02/18/2018,Actors,@UzoAduba,"Anger and fire are not the same, but they can be siblings at times." +02/18/2018,Actors,@UzoAduba,RT @MsSarahPaulson: Jan Maxwell Jan Maxwell Jan Maxwell Jan Maxwell Jan Maxwell. #DimforJan https://t.co/LZzfiWtzdP +02/18/2018,Actors,@UzoAduba,"RT @MichaelSkolnik: Emma Gonzalez. A student at Marjory Stoneman Douglas High School. + +An American Hero. + +Watch This. + +All of it. + +The…" +07/02/2018,Actors,@nlyonne,@daddynichoIs 🙏🏽 +07/02/2018,Actors,@nlyonne,"Not if they have cyanide, ricin or anthrax. Otherwise, sure! https://t.co/jUs35oRooW" +07/02/2018,Actors,@nlyonne,@steveagee @JamesUrbaniak I dunno what this means but I’m liking Bc of impressive Z work- keep it up! 🙏🏽 +07/02/2018,Actors,@nlyonne,#Cazale 🙌🏽 https://t.co/WoQotKuIqw +07/02/2018,Actors,@nlyonne,Um. Typo much????! Suckas!! Mwahahhahahahhahaahahahaha https://t.co/sG3KOWqhz6 +07/02/2018,Actors,@nlyonne,RT @ira: Me showing up to Lakers games for the Instagrams now that LeBron joined the team https://t.co/nzdPG0jI20 +07/02/2018,Actors,@nlyonne,Jesus Christmas what the H https://t.co/yHUVUJd3T9 +07/02/2018,Actors,@nlyonne,RT @JoshuaBHoe: All my friends back in OK should go see @Piper at @OKCU in September #OklahomaCity https://t.co/zo5Fht0XLc +07/02/2018,Actors,@nlyonne,RT @shannonwoodward: no why https://t.co/hI1IGOori4 +07/01/2018,Actors,@nlyonne,"RT @Todd_Spence: This just made my year. + +JURASSIC PARK, but everyone including the dinosaurs is wearing high heels. (source Imgur) https:…" +07/01/2018,Actors,@nlyonne,RT @DylanGelula: It’s so stressful to be alive in America rn to the point where recently at a restaurant I was like “is this Crazy Train by… +07/01/2018,Actors,@nlyonne,This is definitely too much cheese. https://t.co/56K4CEBtrC +07/01/2018,Actors,@nlyonne,RT @ConanOBrien: Does it help the environment if I drink vodka out of a reusable water bottle? +07/01/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to the top 5 bags in the world, hand, money, barf, grab and goodie." +07/01/2018,Actors,@nlyonne,@jakefogelnest 😍 +06/30/2018,Actors,@nlyonne,RT @SeanMcElwee: we are living in a sick society https://t.co/Kj7SHgYe9U +06/30/2018,Actors,@nlyonne,RT @BAKKOOONN: this bus is designed to clean your moms huge butt https://t.co/MWcsTWH1rI +06/30/2018,Actors,@nlyonne,RT @harinef: shave your Whole body to techno +06/30/2018,Actors,@nlyonne,RT @lsarsour: NYC always shows up and shows out ♥️✊🏽♥️ #FamilesBelongTogetherMarch https://t.co/HzlZ5b4ChT +06/30/2018,Actors,@nlyonne,RT @SarahKSilverman: As a comic this is trite as fuck but IF MEN WERE THE ONES WHO GOT PREGNANT THIS WOULD BE A NON ISSUE https://t.co/JQ4V… +06/30/2018,Actors,@nlyonne,"RT @SenKamalaHarris: Years from now, people will ask us where we were in this moment. We don’t want the answer to be how we felt. We want t…" +06/30/2018,Actors,@nlyonne,"RT @repjohnlewis: We are sick and tired of seeing little babies taken from their mothers. That's not right, it's not fair, and history will…" +06/30/2018,Actors,@nlyonne,RT @AoDespair: Quite a national metaphor. https://t.co/lrRKBjT5R9 +06/30/2018,Actors,@nlyonne,RT @ACLU: Dissent is patriotic and families belong together ✊ https://t.co/Acxw8KJloV +06/30/2018,Actors,@nlyonne,"RT @karavoght: This is one of the dozens of joyous kids running through fire hose with their protest shirts and signs. + +The other side of t…" +06/30/2018,Actors,@nlyonne,"RT @Jennnnng: greatest grandmas ranked! +19) it’s +18) hard +17) to +16) rank +15) the +14) greatest +13) grandmas +12) because +11) they’re…" +06/30/2018,Actors,@nlyonne,"RT @thedailybeast: ""Not even Mussolini could have imagined concentration camps for babies. But that is where we are"" https://t.co/qD5TlhhFhF" +06/30/2018,Actors,@nlyonne,"Our struggles are all connected. Family separation anywhere—at the border, via the Muslim ban, via mass incarcerati… https://t.co/P6ptHwyChs" +06/30/2018,Actors,@nlyonne,RT @nowthisnews: Amsterdam will finally have a woman mayor after nearly 700 years of men in charge https://t.co/MW0GCFdZFL +06/30/2018,Actors,@nlyonne,RT @TheScaryNature: Insane reflexes https://t.co/qnyUdNgCKw +06/30/2018,Actors,@nlyonne,RT @repjohnlewis: The time is always right to do right. Find a way to get in the way and we will make a way out of no way. #goodtrouble +06/30/2018,Actors,@nlyonne,RT @MarkMacabre: @OITNB RELEASE THE TRAILER https://t.co/pLfoB8mwqt +06/30/2018,Actors,@nlyonne,RT @kerrywashington: Me! 👋🏾 #FamiliesBelongTogether FIND A MARCH NEAR YOU 👇🏾 https://t.co/yiXdUmpFmH https://t.co/dQMezH4sSA +06/30/2018,Actors,@nlyonne,I'm proud to support the thousands upon thousands of people taking to the streets on Saturday to say… https://t.co/NKbIxoYLGE +06/30/2018,Actors,@nlyonne,"RT @hannibalburess: Sorry to drop this today Drake. + +@turo https://t.co/dYMPpvFUvR" +06/29/2018,Actors,@nlyonne,"RT @JenAshleyWright: Us: Gun control? +GOP: NO +Us: Treatment for mentally ill? +GOP: NO +Us: Health care for bullet holes? +GOP: NO +Us: Anythin…" +06/29/2018,Actors,@nlyonne,RT @newscientist: Enceladus is spewing out organic molecules necessary for life https://t.co/9KDNzufQme https://t.co/wuCxIALD32 +06/29/2018,Actors,@nlyonne,@MichaelRobnalt Lol 🤥🤫🤔😕😒🧐 +06/29/2018,Actors,@nlyonne,RT @lsarsour: Urgent - we need to find 160 Spanish speaking attorneys to go to the border ASAP. If you can go and/or if you have a network… +06/28/2018,Actors,@nlyonne,RT @elizabethforma: We won't let @realDonaldTrump & @SenateMajLdr overturn Roe v. Wade & hand the rights of the American people back over t… +06/28/2018,Actors,@nlyonne,RT @MaddowBlog: “We were representing a 3-year-old in court recently who had been separated from the parents. And the child — in the middle… +06/28/2018,Actors,@nlyonne,RT @chelseaperetti: Gonna do an escape room solo. Think it will lift my spirits! +06/28/2018,Actors,@nlyonne,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/28/2018,Actors,@nlyonne,RT @UzoAduba: An honor. https://t.co/XvTRMj2nuB +06/28/2018,Actors,@nlyonne,RT @ditzkoff: Don’t you dare promise me a Mamma Mia sequel with dinosaurs and then not deliver a Mamma Mia sequel with dinosaurs https://t.… +06/28/2018,Actors,@nlyonne,@NYTimesWordplay Lol😎 +06/27/2018,Actors,@nlyonne,RT @oliviawilde: Let’s be clear: it is not a question of abortions or no abortions. It is only a question of whether women will die having… +06/27/2018,Actors,@nlyonne,New Gang Gang record #Kazuashita out now! Buy it! Listen to it!! Download your brains off! @GangGangDance… https://t.co/jG8c2d0oyI +06/27/2018,Actors,@nlyonne,"RT @Ocasio2018: This is the start of a movement. + +Thank you all." +06/27/2018,Actors,@nlyonne,RT @lurie_john: Starts out being one of the worst days in American history and then Alexandria Ocasio-Cortez happens. +06/27/2018,Actors,@nlyonne,Yes. https://t.co/tuATadwh3w +06/27/2018,Actors,@nlyonne,RT @ditzkoff: Seems about right https://t.co/3fSwiHUjtl +06/27/2018,Actors,@nlyonne,RT @TessaThompson_x: Every character I play is part Beyoncé. https://t.co/bVApMWlf3I +06/27/2018,Actors,@nlyonne,RT @kumailn: Please sign this @ACLU to fight the SCOTUS ruling on the Muslim Ban. https://t.co/g6sVzamVQx +06/26/2018,Actors,@nlyonne,RT @lsarsour: If u r ever a passenger on any flights leaving TX to any other US state - Assess your flight. 👀 Do u see groups of 6-7 kids u… +06/26/2018,Actors,@nlyonne,"RT @RinChupeco: Speaking as someone born in the last years of a dictatorship, you Americans are already several steps in one. + +Ferdinand Ma…" +06/26/2018,Actors,@nlyonne,"RT @WerewolfBathtub: Ice T, it is 8:30 in the morning https://t.co/RSpeVAwB8G" +06/26/2018,Actors,@nlyonne,"RT @perlapell: Hey Young Girls, don't ever let someone shame you for your power. It will save and elevate your life." +06/26/2018,Actors,@nlyonne,RT @WaywardWinifred: This. https://t.co/xklC8NNnrz +06/26/2018,Actors,@nlyonne,RT @HeerJeet: Finally some good news. https://t.co/s7DmZywwYS +06/26/2018,Actors,@nlyonne,RT @thedanieb: Yes it is. https://t.co/FTCmYTL12S +06/26/2018,Actors,@nlyonne,RT @openculture: Leonard Bernstein Introduces 7-Year-Old Yo-Yo Ma: Watch the Youngster Perform for John F. Kennedy (1962) https://t.co/7b3p… +06/26/2018,Actors,@nlyonne,RT @abbijacobson: Happy Pride ❤️ https://t.co/JtFP40a9om +06/25/2018,Actors,@nlyonne,RT @newscientist: What is consciousness? We're coming closer to cracking the biggest problem in neuroscience https://t.co/SCDGx9UzFe https:… +06/25/2018,Actors,@nlyonne,"RT @Sierra_Magazine: ""This mixing of racism and politics when it comes to climate change is especially dangerous because, historically, whe…" +06/25/2018,Actors,@nlyonne,RT @LeslyeHeadland: So grateful I was able to make it to the closing night of Cult of Love. I still can’t believe the “Pride” play closed o… +06/25/2018,Actors,@nlyonne,RT @Criterion: A Monday feeling: https://t.co/xQDIScQHfp +06/24/2018,Actors,@nlyonne,🔥🔥 https://t.co/hqbzWLlYz3 +06/24/2018,Actors,@nlyonne,@daddynichoIs Yas +06/24/2018,Actors,@nlyonne,"Happy Hometown Pride, NYC!! #pride 🌈🌈🌈🌈🌈♥️♥️♥️ https://t.co/dTeCwSMhXa" +06/24/2018,Actors,@nlyonne,#PossumPeople https://t.co/F1iSYC4GtB +06/24/2018,Actors,@nlyonne,@robdelaney https://t.co/AEg5Qf91li +06/24/2018,Actors,@nlyonne,RT @nicholebeattie: Something great to do today is watch @Hannahgadsby’s Nanette on Netflix. Wowzers. +06/24/2018,Actors,@nlyonne,RT @dodo: This tiny donkey’s so small he lives in the house — he even knows how to go outside with his dog siblings to pee! https://t.co/0p… +06/23/2018,Actors,@nlyonne,🔥 https://t.co/9ClzisFGxF +06/23/2018,Actors,@nlyonne,"RT @Jonny_Calderon_: dog carrier: $15 +goggles: $5 +being able to force my dog into spending time with me: priceless https://t.co/2TSaUGpIe4" +06/23/2018,Actors,@nlyonne,RT @chelseaperetti: THIS DEPRAVED PARTY HATES CHILDREN https://t.co/UAdTUVw4tQ +06/22/2018,Actors,@nlyonne,"Repost @LeslyeHeadland @mspackyetti ・・・ +A family concentration camp is still a concentration camp. +• +In my freshman… https://t.co/XFui65IXPR" +06/20/2018,Actors,@nlyonne,https://t.co/1TFG7tkvcE +06/20/2018,Actors,@nlyonne,Hbd Gena. 🎈♥️ https://t.co/iIH53w6IR0 +06/20/2018,Actors,@nlyonne,New York in the summer belongs to the rats and the roaches. +06/20/2018,Actors,@nlyonne,RT @GhostPanther: Our nation is being remade into a third world totalitarian Russian satellite country. https://t.co/NIiYJm9wuA +06/20/2018,Actors,@nlyonne,"RT @HalleyFeiffer: I often cringe at ""if childhood me could see me now"" posts so I'll just say that childhood me is sitting in the corner w…" +06/19/2018,Actors,@nlyonne,RT @laurenlapkus: I just called the number and followed the prompts and left a message for my senator. It felt a little awkward but I'm gla… +06/19/2018,Actors,@nlyonne,All-time dreamboat @MrGeorgeWallace 😍😍 all-time day. 🔥 https://t.co/lczKNflomZ +06/18/2018,Actors,@nlyonne,"RT @The_A_Prentice: Oh, to get the real illegal aliens. Got it. https://t.co/e9MWKScs3i" +06/18/2018,Actors,@nlyonne,"RT @ikebarinholtz: There needs to be a reckoning for this. Trump, Sessions, Miller should all be sent to the Hague. They are war criminals…" +06/17/2018,Actors,@nlyonne,RT @JoyAnnReid: More resources for those asking for ways to help separated migrant parents and children: https://t.co/36zwxfv4Qn +06/17/2018,Actors,@nlyonne,RT @TexasTribune: Here are photos of the tent city near El Paso that is housing immigrant children separated from their parents. Photos by… +06/17/2018,Actors,@nlyonne,RT @SarahKSilverman: Good lord https://t.co/z8kg8W57md +06/17/2018,Actors,@nlyonne,RT @kumailn: The biggest defense they have is that what they are doing is so horrific that you look like a fool talking about it. It’s beyo… +06/17/2018,Actors,@nlyonne,"RT @kumailn: There are going to be people, many people, who will be able to justify separating children from their families. They’ll say th…" +06/17/2018,Actors,@nlyonne,RT @kumailn: I don’t know what to do. Evil is being done right now and we are afraid to get too loud. This moment in time will define us fo… +06/16/2018,Actors,@nlyonne,RT @dodo: This dog is ALWAYS loyal to his best friend — except when pizza's involved 😂🍕 https://t.co/jVGR7e7WUZ +06/16/2018,Actors,@nlyonne,RT @KamalaHarris: Using kids as leverage to get billions for a wasteful border wall is outrageous and immoral. This is simple: the Administ… +06/16/2018,Actors,@nlyonne,"RT @eugenegu: As an American, it pains me to say this. + +The United Nations should investigate the United States of America for placing chi…" +06/16/2018,Actors,@nlyonne,RT @JenAshleyWright: My first book about the history of break-ups was always described as a fun beach read. The first chapter was about a h… +06/16/2018,Actors,@nlyonne,Hbd VZ 🎈 https://t.co/9vigyeqzXh +06/16/2018,Actors,@nlyonne,"RT @atlasobscura: Through his relentless experimentation, Louis Boutan created underwater photographs in the 19th century that the world ha…" +06/15/2018,Actors,@nlyonne,"RT @paulscheer: Please watch this. It shook me to my core to think of 4yr old children separated from their families, without any in charge…" +06/15/2018,Actors,@nlyonne,RT @Alyssa_Milano: The family separation policy that Trump has weaponized is Un-American and inhumane. The thread below has many resources… +06/15/2018,Actors,@nlyonne,RT @UzoAduba: I ❤️ NY. https://t.co/kqB5UX1Edo +06/15/2018,Actors,@nlyonne,RT @SarahKSilverman: Rad https://t.co/QeQctRY37b +06/15/2018,Actors,@nlyonne,"RT @TheRealDratch: Amy Poehler was named one of the 40 most powerful people in comedy and her answers to these questions are genius: +(Also…" +06/14/2018,Actors,@nlyonne,RT @SenKamalaHarris: Let’s call this policy what it is: a human rights abuse being committed by the United States government. https://t.co/… +06/14/2018,Actors,@nlyonne,RT @billyeichner: My God WTF is going on in this country? WHAT IS HAPPENING??? https://t.co/R0EAePznu7 +06/14/2018,Actors,@nlyonne,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Actors,@nlyonne,RT @oliviawilde: What do you really know about Rikers Island? Spend 8 mins getting to know the human side of this important issue. #CLOSEri… +06/14/2018,Actors,@nlyonne,Summer’s coming! 🎅🏽👨🏽‍🚀🌈 https://t.co/GVQ72ujkrj +06/13/2018,Actors,@nlyonne,July 27th is coming to town. @OITNB https://t.co/GoMM8tDhMM +06/13/2018,Actors,@nlyonne,Facts! 👇🏽👇🏽👇🏽👇🏽 https://t.co/E1P8qxpB11 +06/13/2018,Actors,@nlyonne,"RT @RuPaul: ""Everyone thinks of changing the world, but no one thinks of just wearing a Styrofoam head on top of their head”~Tolstoy https:…" +06/13/2018,Actors,@nlyonne,"RT @WesleyLowery: The President of the United States reportedly considering construction of a prison camp to hold up to 5,000 children http…" +06/12/2018,Actors,@nlyonne,"RT @SenSanders: We have a racist criminal justice system that costs us billions of dollars, ruins lives and allows private prisons to profi…" +06/12/2018,Actors,@nlyonne,@BrianStack153 Dm me for details +06/11/2018,Actors,@nlyonne,Me and Uzo going to the Emmys tonight.… https://t.co/WnpqMCkPjQ +06/11/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to comets, the sperm of outer space." +06/11/2018,Actors,@nlyonne,"RT @MrGeorgeWallace: Shout out to wrists, the neck of the arm." +06/10/2018,Actors,@nlyonne,Unmanageable. I do it for the #art. https://t.co/HcFoVp5AQU +06/10/2018,Actors,@nlyonne,RT @Rosie: FREE REALITY #JUSTICE4REALITY https://t.co/UqsDhmBVWe +06/10/2018,Actors,@nlyonne,"RT @ambermruffin: McDonald’s, you nasty. https://t.co/lDbdDPO1Pp" +06/10/2018,Actors,@nlyonne,"RT @disruptorawards: Disruptor Book of the Year Award goes too Michiko Kakutani 📖 +“This book is a passionate plea for reason” ""The Death o…" +06/10/2018,Actors,@nlyonne,RT @TheScaryNature: Tourists wake up to 3 lions licking water off their tent in Botswana https://t.co/xl6yx53ljy +06/10/2018,Actors,@nlyonne,RT @joshgondelman: I’m tired of every old timey show sounding British. I want a Game Of Thrones with over the top Italian accents. +06/10/2018,Actors,@nlyonne,"RT @MattMcGorry: Angelenos!!! Today and tomorrow at the last days to sign the @reformlajails petition!!! + +Unless you want continued lack of…" +06/10/2018,Actors,@nlyonne,RT @SarahKSilverman: This is pure evil. This makes me want to fight https://t.co/iaDsmZHKlA +06/10/2018,Actors,@nlyonne,“What is this thing called time?” -Nina Simone ♥️⚔️♥️ https://t.co/5weZeQm7c2 +06/09/2018,Actors,@nlyonne,@WaywardWinifred Nyc bb +06/09/2018,Actors,@nlyonne,RT @vausexblack: @nlyonne me all day everyday https://t.co/sPOsn0fMUb +06/09/2018,Actors,@nlyonne,Is doing nothing the best thing in the world? +06/09/2018,Actors,@nlyonne,Chilled so hard today. 🔥 +06/09/2018,Actors,@nlyonne,RT @hannibalburess: This is how I spend my downtime on movie sets. https://t.co/mck5j1MwAD +06/09/2018,Actors,@nlyonne,"Via @jjongholly Happy Pride, Warsaw!! And cool… https://t.co/NizAMebtoN" +06/09/2018,Actors,@nlyonne,"If you’re so inspired, kick in to ⁦@OITNB’s beloved script supervisor’s ⁩new children’s book! #LittleMossBigTree wr… https://t.co/2xoir0zvn5" +06/09/2018,Actors,@nlyonne,“I think the saddest people always try their… https://t.co/PxlgJJAOop +06/09/2018,Actors,@nlyonne,"In the Trump Administration, Science Is Unwelcome. So Is Advice. via @NYTimes Full tilt Idiocracy. https://t.co/QNW0AELOD6" +06/09/2018,Actors,@nlyonne,"This is why weekends exist. + +Via… https://t.co/30VfD17Cwv" +06/09/2018,Actors,@nlyonne,"RT @NickPinkerton: On @FilmLinc's Luchino Visconti retrospective, starting today, for @Artforum: https://t.co/pKifnJEDiZ" +06/09/2018,Actors,@nlyonne,@broadly @ShawkatAlia ♥️♥️♥️ +06/09/2018,Actors,@nlyonne,RT @nowthisnews: Meet the 11-year-old founder and CEO of this hair barrette company https://t.co/CScWTvpNi4 +06/09/2018,Actors,@nlyonne,"RT @BeauWillimon: Yesterday David Simon (@AoDespair) was banned from Twitter. Please read his post & share. When you do, tell @Jack to get…" +06/09/2018,Actors,@nlyonne,"RT @brainpicker: “Words are events, they do things, change things. They transform both speaker and hearer; they feed energy back and forth…" +06/09/2018,Actors,@nlyonne,Because of balloons maybe? 🎈 https://t.co/jJMhGbm4zv +06/09/2018,Actors,@nlyonne,RT @TEDTalks: 4 simple exercises to strengthen your attention and reduce distraction: https://t.co/8GxPOxBTeS https://t.co/4WaRzEzCAn +06/09/2018,Actors,@nlyonne,RT @FilmStruck: Due to the Production Code almost all of the homosexual themes from Tennessee Williams's original stage play were removed f… +06/09/2018,Actors,@nlyonne,"RT @ToledoXCTF: “If you put your mind and heart into what you want to do, you’ll be able to do more than you think is possible and you can…" +06/09/2018,Actors,@nlyonne,"RT @Jacksons: “And now I’m ready to show, that we can come together and think like one- come together now, live together underneath the sun…" +06/08/2018,Actors,@nlyonne,RT @GhostPanther: I’m heart broken. I’ve dealt with depression and some days it can get you like a beast. I encourage anyone struggling to… +06/08/2018,Actors,@nlyonne,"RT @ruths: ""In these current circumstances, one must pick a side. I stand unhesitatingly and unwaveringly with the women” https://t.co/vyVp…" +06/08/2018,Actors,@nlyonne,RT @AndyRichter: Thread https://t.co/1NsGhAd8EZ +06/08/2018,Actors,@nlyonne,"RT @PamelaPaulNYT: “And though I don’t really care about what people say about me when I’m gone, I guess Jerry Stahl would make an entertai…" +06/08/2018,Actors,@nlyonne,https://t.co/tiJX2N6p9G +06/08/2018,Actors,@nlyonne,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/08/2018,Actors,@nlyonne,RT @KamalaHarris: Let’s be clear about what this is — our government has mobilized a deportation force to break up families and deport immi… +06/08/2018,Actors,@nlyonne,RT @nowthisnews: Studies show dogs prevent more burglaries than guns — so this campaign wants you to swap your gun for a shelter dog https:… +06/08/2018,Actors,@nlyonne,"RT @ShaunKing: BREAKING: Colin Kaepernick's legal team is going to subpoena Donald Trump in the @NFL collusion case. + +Donald Trump and NFL…" +06/08/2018,Actors,@nlyonne,What am I looking at. https://t.co/hxtYpynjr5 +06/08/2018,Actors,@nlyonne,RT @MattOswaltVA: looking forward to Snooki convincing Trump to pardon Edward Snowden +06/08/2018,Actors,@nlyonne,Major babe 🔥 https://t.co/TFHVXwZGoj +06/08/2018,Actors,@nlyonne,"RT @RVAwonk: Hey, ever been pregnant? Taken medicine for acne or anxiety or asthma? Been injured? Had surgery? Or anything listed below? + +C…" +06/08/2018,Actors,@nlyonne,RT @TeganEffect: @nlyonne This is you! https://t.co/Insp1hBRty +06/08/2018,Actors,@nlyonne,Maybe I’m an alien from Mars and I’m just not telling you. +06/07/2018,Actors,@nlyonne,"RT @LaFamiliaFilm: The first lady attended a FEMA briefing, her first appearance in front of camera in almost a month. Melania did not spea…" +06/07/2018,Actors,@nlyonne,RT @agedhippiex: @nlyonne you don’t deserve to be verified +06/07/2018,Actors,@nlyonne,RT @BrandzyFoSheezy: @nlyonne Talk about it girl 💅🏽 +06/07/2018,Actors,@nlyonne,How come they’re not telling us about the aliens they know are there? +06/07/2018,Actors,@nlyonne,🤯🤯👈🏽 https://t.co/VdwHreFzkx +06/07/2018,Actors,@nlyonne,🤯👈🏽 https://t.co/YPF0UDz2gF +06/07/2018,Actors,@nlyonne,"RT @SheilaEdrummer: Happy birthday Prince. WE had some amazing times together. 38yrs of Love, Music, God. I miss you but I'm at Peace. I lo…" +06/07/2018,Actors,@nlyonne,*not sure what the teletubbies sound like +06/07/2018,Actors,@nlyonne,Zero chill. Did the teletubbies write this +06/07/2018,Actors,@nlyonne,Omg this Alaska Airlines safety song +06/07/2018,Actors,@nlyonne,RT @IncredibleCulk: Aren’t glasses are just really tiny telescopes you wear on your face? +06/07/2018,Actors,@nlyonne,"RT @WaywardWinifred: the cruelty coupled with incompetence is staggering. + +https://t.co/nbquhktmxt" +06/07/2018,Actors,@nlyonne,#mars #life #aliens +06/07/2018,Actors,@nlyonne,"RT @RuPaul: “When I was a boy and I would see scary things in the news, my mother would say to me, ‘Look for the helpers. You will always f…" +06/07/2018,Actors,@nlyonne,"RT @CookieRiverside: A massive THANK YOU PARTY awaits you -- in Hell. +Satan is baking you a cake. +Demons are painting your tiny cage bright…" +06/07/2018,Actors,@nlyonne,@LuciaAniello ♥️ +06/07/2018,Actors,@nlyonne,RT @LuciaAniello: The new me. Music videos only. RIP my tv and film career. https://t.co/DDul7ofcEx +06/07/2018,Actors,@nlyonne,RT @marykarrlit: Most any #suicide is killing the wrong person. One of the few to survive jumping off the Golden Gate Bridge said the minut… +06/07/2018,Actors,@nlyonne,"RT @christinawilkie: On April 11, I called Trump’s favorite architect to ask about jobs he did in Eastern Europe that recently drew Mueller…" +06/06/2018,Actors,@nlyonne,RT @jemimakirke: Still not convinced warren Beatty and Shirley MacLaine are siblings. +06/06/2018,Actors,@nlyonne,"RT @FilmStruck: Celebrate the life of Chantal Akerman on her birthday with SAUTE MA VILLE ('68), HOTEL MONTEREY ('72), JE TU IL ELLE ('75),…" +06/06/2018,Actors,@nlyonne,RT @fairuza: Thrilled to find “Joseph Campbell and the power of Myth” on Netflix!! Brilliant man. Yay! +06/06/2018,Actors,@nlyonne,RT @KarenKilgariff: I mean https://t.co/8q7L2DRRcQ +06/06/2018,Actors,@nlyonne,"RT @AHarmonyMusic: Ok, but let’s ultimately give the part to Janelle Monáe. https://t.co/nlzT7OyL1k" +06/05/2018,Actors,@nlyonne,Omg it just won’t end. Human race out to lunch. https://t.co/EGYN6Ldnzk +06/05/2018,Actors,@nlyonne,@shannonwoodward Ur tech unavail Bc theremin +06/05/2018,Actors,@nlyonne,"RT @SenSanders: It costs $30,000 to send a California student to UCLA for a year. To send someone to prison, it costs $75,000. + +We need to…" +06/05/2018,Actors,@nlyonne,@mradamscott @annieleibovitz She’s still got it. 🖖🏾 +06/05/2018,Actors,@nlyonne,I also plead the fifth. @OITNB @thedanieb #july27 @netflix 🧡 https://t.co/NIMwLwkKyv +06/05/2018,Actors,@nlyonne,RT @michaelianblack: Not a lawyer - is witness tampering bad? +06/05/2018,Actors,@nlyonne,RT @wesleysnipes: For everyone that sends me this photo 300 times a day ... I SEENT IT!!! I SEENT IT! I SEENT IT! 😂 https://t.co/u7vumefgO9 +06/05/2018,Actors,@nlyonne,😍😍 @shannonwoodward #biopic https://t.co/W26DSuTrLk +06/05/2018,Actors,@nlyonne,RT @brioneh: it’s that time of year again https://t.co/btFJrS2i3P +06/05/2018,Actors,@nlyonne,@johnlevenstein Lol +06/05/2018,Actors,@nlyonne,@WillWGraham Will! https://t.co/QIL2T90eDh +06/05/2018,Actors,@nlyonne,RT @BradWalsh: @nlyonne You can be a judge on So You Think You Can @ Me +06/05/2018,Actors,@nlyonne,I ♥️ this movie. https://t.co/W9tYJamOA6 +07/01/2018,Actors,@thedanieb,@steviekae Lol +07/01/2018,Actors,@thedanieb,@BL11Olivia @soulcycle I might be coming soon!! https://t.co/4ROm67b1ZP +06/30/2018,Actors,@thedanieb,Are you pulling my leg? #dumbomagic +06/30/2018,Actors,@thedanieb,Does this really work? #dumbomagic +06/29/2018,Actors,@thedanieb,Taking this message with me everyday. https://t.co/pK0QNUdVpw +06/29/2018,Actors,@thedanieb,She did NoT come to play congrats @aquariaofficial #DragRaceFinale https://t.co/F1sJfunbWU +06/29/2018,Actors,@thedanieb,Go head @monetxchange Of course your Ms. Congeniality #tbt #DragRaceFinale https://t.co/d5trG2xvR2 +06/29/2018,Actors,@thedanieb,@eurekaohara killed that first battle. You did not come to play!! #DragRaceFinale +06/29/2018,Actors,@thedanieb,Them bitches killed it!!! 3 different looks in 1 battle! Yes @eurekaohara https://t.co/hecXsF8jeN +06/29/2018,Actors,@thedanieb,Y’all are so rude lol https://t.co/B5bZwOoeEF +06/29/2018,Actors,@thedanieb,Damn I was rooting for her too lmao https://t.co/ut1cR15KMH +06/29/2018,Actors,@thedanieb,@_thatguyy20 Lmao +06/29/2018,Actors,@thedanieb,@asialove519 My thought exactly +06/29/2018,Actors,@thedanieb,Anybody else like me worried about the butterflies getting stepped on? #DragRaceFinale https://t.co/RpmuaDAyxW +06/29/2018,Actors,@thedanieb,Omg my heart is beating like I’m lip syncing right now! #LipSyncFinale +06/29/2018,Actors,@thedanieb,“Be yourself to free yourself” 💜💜@eurekaohara #DragRaceFinale +06/29/2018,Actors,@thedanieb,@CynthiaEriVo Girl you better find a live stream!! Now!!! +06/29/2018,Actors,@thedanieb,Love me some @AsiaOharaLand #DragRaceFinale and YESSSSS for this outfit! +06/29/2018,Actors,@thedanieb,MOTHER O!!!! #DragRaceFinale https://t.co/lFQTNRzeX7 +06/29/2018,Actors,@thedanieb,Honey they are working these dancers tonight lol if I was dancing for the finale this would be me during breaks LOL… https://t.co/jt0kBg3FEV +06/29/2018,Actors,@thedanieb,Errboday Say Love!!! #DragRaceFinale https://t.co/WfLQTpkBua +06/29/2018,Actors,@thedanieb,These queens did not come to play!!!!! I’m so ready!! @RuPaulsDragRace #DragRaceFinale https://t.co/8ReBwcrRZR +06/28/2018,Actors,@thedanieb,So lovely meeting the one and only @RepMaxineWaters last night!! She sets it straight! https://t.co/5jOb5pbNt2 +06/28/2018,Actors,@thedanieb,Had a blast chatting it up with “Stranger Things” ⁦@priahferguson⁩ She’s such an intelligent little lady! ⁦… https://t.co/JsDYvRmFig +06/25/2018,Actors,@thedanieb,"RT @strongblacklead: Last night was magical ✨ +Here's a look at how we brought Black History to Hollywood. https://t.co/Ry8QmNKMqG" +06/25/2018,Actors,@thedanieb,Yes it is. https://t.co/FTCmYTL12S +06/25/2018,Actors,@thedanieb,What a day this was... grateful for moments like these. @netflix strongblacklead https://t.co/Zpb5ttn0Jd +06/25/2018,Actors,@thedanieb,#BlackExcellence #BlackRoyalty #StrongBlackLead Why I love being apart of @netflix We all get to be authentically w… https://t.co/bORmpsWy5y +06/20/2018,Actors,@thedanieb,@michaelb4jordan @MatthewACherry @creedmovie I can’t wait +06/19/2018,Actors,@thedanieb,@DanaiGurira @WomensHealthMag @lizplosser @WattsUpPhoto @YashuaSimmons Love this +06/17/2018,Actors,@thedanieb,😍😍😍 https://t.co/aDkaYz01tL +06/17/2018,Actors,@thedanieb,Then ➡️ to now. To the man who keeps me laughing and whose words can wipe away any tear. To the man who always went… https://t.co/obmRPCHvx3 +06/17/2018,Actors,@thedanieb,I don’t know if I can handle ep 3 @QueerEye SOOO GOOOD @netflix +06/17/2018,Actors,@thedanieb,S2 Ep2 of @QueerEye had me on the floor https://t.co/jexDfkukoa +06/17/2018,Actors,@thedanieb,Season 2 episode 1 of @QueerEye had me bawling. https://t.co/xnXp3Nwzp7 +06/17/2018,Actors,@thedanieb,@jclee1230 @RuPaulsDragRace Lol hehe 🙃 +06/16/2018,Actors,@thedanieb,@jclee1230 @RuPaulsDragRace @jclee1230 explain JC Lee explain. The other queens are killing it but Eureka is super dope! +06/16/2018,Actors,@thedanieb,#TeamEureka To the moon!! @RuPaulsDragRace +06/14/2018,Actors,@thedanieb,Let ‘em know you ain’t average today. 😉 +06/13/2018,Actors,@thedanieb,@ArianaDeBose @prabalgurung @DonnaSummerBway @jennyanina She bad. +06/12/2018,Actors,@thedanieb,Thank you @Variety for keeping a girl’s dreams alive. #Emmys #EmmysContender @OITNB https://t.co/JOY9O3SY82 +06/12/2018,Actors,@thedanieb,When every day isn’t sunshine and rainbows... there is always poetry @najwazebian https://t.co/3SMUUgKA96 +06/12/2018,Actors,@thedanieb,@imannmilner Love this +06/12/2018,Actors,@thedanieb,@JonPeake @OITNB 😉 +06/11/2018,Actors,@thedanieb,I missed the opening number but I’m back on track! Omg that was close!!! This #theatrenerd almost had a serious meltdown!!! #TonyAwards2018 +06/11/2018,Actors,@thedanieb,Yo #TonyAward2018 is not coming through clearly and I’m trying not to freak out for God’s sake. Noooooooooo!!!! +06/11/2018,Actors,@thedanieb,Umm is it my tv or is something happening to everyone’s tv watching the #Tonys2018 +06/10/2018,Actors,@thedanieb,Happy #TonyAward2018 I’m so hype for all my friends nominated or performing tonight!! Rock out with your (heart) out! 😝 +06/09/2018,Actors,@thedanieb,I second what @nlyonne says. https://t.co/8Df0teM8sy +06/08/2018,Actors,@thedanieb,@kerrywashington @AmericanSonPlay @StevePasquale @iamKENNYLEON Welcome back! Can’t wait to witness. 😊 +06/08/2018,Actors,@thedanieb,"@rabaus Well from someone who has made many phone calls, having someone to talk to like a therapist or a counselor… https://t.co/5DncmSJT5m" +06/08/2018,Actors,@thedanieb,"@rabaus With loosing two major icons to suicide in one week, haven’t you noticed the “big earners” are human too?… https://t.co/FgDHutwkqt" +06/08/2018,Actors,@thedanieb,"Asking for help is a strength not a weakness. Don’t be afraid to reach out. National Suicide Prevention Hotline: +1-800-273-TALK (8255)" +06/08/2018,Actors,@thedanieb,I say the definition of... melanin. You say the definition of... ? https://t.co/5HS5X4bKuD +06/08/2018,Actors,@thedanieb,So happy for you @Oprah 💜💜 https://t.co/Rnnghu22vC +06/06/2018,Actors,@thedanieb,Umm I’m stealing this one. Lol 😂 https://t.co/RzEUleAqF3 +06/06/2018,Actors,@thedanieb,The dude with the coolest office goes to @MatthewACherry Stopped by @Monkeypaw and I’m sorry but I think they have… https://t.co/K35viuyoEV +06/05/2018,Actors,@thedanieb,@shadowandact @donaldglover Please let this be so. +06/05/2018,Actors,@thedanieb,I plead the fifth. @OITNB 🍊 https://t.co/SgdwiPxO78 +06/05/2018,Actors,@thedanieb,I’m here for this change. https://t.co/UUJHqO6mem +05/31/2018,Actors,@thedanieb,@TreshelleEdmond I’m so sorry for your loss Treshelle. Praying for you and your family. +05/30/2018,Actors,@thedanieb,"@JMunozActor @OITNB Yea you didn’t know, lol." +05/30/2018,Actors,@thedanieb,"Went out for a night on the town in my oh so comfy, oh so cute @ftfsnaps dress last night. Fell in love with this… https://t.co/ruxhxNuTmf" +05/29/2018,Actors,@thedanieb,Okay now that #RoseanneCancelled Can we please bring back #familymatters or do a #livingsingle reboot? +05/29/2018,Actors,@thedanieb,Yes! 🙌🏿 https://t.co/IeF0NrRfmu +05/29/2018,Actors,@thedanieb,@Coco_ChannelB We gotta plan something to hang out +05/29/2018,Actors,@thedanieb,@Coco_ChannelB Miss you and love you too +05/24/2018,Actors,@thedanieb,@pejvahdat I feel a hang coming soon +05/24/2018,Actors,@thedanieb,@pejvahdat love seeing on so many tv shows at one time!! Miss you bro! +05/23/2018,Actors,@thedanieb,@MrTonyHale Come through @MrTonyHale https://t.co/q0iBUcqtTC +05/22/2018,Actors,@thedanieb,Hey @KenneyGreen I think I’m gonna go to @mariescrisis Friday. Will you be there? 😊 +05/22/2018,Actors,@thedanieb,Keeping my cool. https://t.co/1RtQ1CvBjO +05/21/2018,Actors,@thedanieb,"RT @RebeccaJarvis: “All of these things that I’ve wanted to do, I’m doing because I’m saying I can and I will.” - @thedanieb on the #NoLimi…" +05/21/2018,Actors,@thedanieb,Turn up! Love the Obamas. https://t.co/ygsZqqi8TX +05/20/2018,Actors,@thedanieb,Sunday Kind of Love. 💕 https://t.co/YvG11Bul7N +05/19/2018,Actors,@thedanieb,@JaimePrimak Hey girl hey 👋🏿 +05/18/2018,Actors,@thedanieb,"Michael J. Woodard Sings ""Still I Rise"" by Yolanda Adams - Top 5 - Ameri... https://t.co/1CUcmHbIlX via @YouTube I… https://t.co/L0d4S1iVQa" +05/18/2018,Actors,@thedanieb,You are an angel Michael. It brought me so much joy to hear you sing @YolandaAdams I love how you keep God first an… https://t.co/AcG4AWcFIc +05/18/2018,Actors,@thedanieb,Woke up in the best mood 🎊 counting my blessings. +05/16/2018,Actors,@thedanieb,Closer to home means closer to him. 💕 +05/16/2018,Actors,@thedanieb,"@Churlynnn I understand and you shouldn’t stop fighting, but this is a battle that leads to a dead end. I’m on your… https://t.co/Jo3sZmgNuS" +05/16/2018,Actors,@thedanieb,"Sweetheart. Churlynnn... I deleted bc I wanted too, bc I get to choose the battles I feel are worth fighting. Tryin… https://t.co/XvFKvEPEdp" +05/16/2018,Actors,@thedanieb,"Playing @LeAndriaJ song “Better days are coming” while being stuck in the airport for over 7hrs, now I’m delayed at… https://t.co/dISrpfCI0K" +05/14/2018,Actors,@thedanieb,"It’s not always gonna be easy, but you gotta do what’s best for you." +05/14/2018,Actors,@thedanieb,"RT @seewhatsnext: #OITNB's @thedanieb on the “subconscious mentorship” that happens when women are in charge: ""When you see Jenji Kohan run…" +05/13/2018,Actors,@thedanieb,@Luvvie @NicoleArbour It’s so annoying. +05/13/2018,Actors,@thedanieb,"@TheRoot STOP!!!!! As someone that’s a woman and who’s black, I wish she would just stop! This cry for relevance is… https://t.co/uRe1ly42J7" +05/13/2018,Actors,@thedanieb,Thank you mommy for helping me become the woman I am today. Love you more than you’ll EVER know! 💕 https://t.co/p1gFOJsiac +05/13/2018,Actors,@thedanieb,@The_Oklahomie Lol. Even in flat shoes ? +05/13/2018,Actors,@thedanieb,@theSheenaB This was me. Lol and it wasn’t even that many steps to the next floor 😆 +05/13/2018,Actors,@thedanieb,@lydiajoy50 Lol +05/13/2018,Actors,@thedanieb,Bye Felicia’s. +05/13/2018,Actors,@thedanieb,@_audge_ Wrong answer lol https://t.co/hwvU0WWggF +05/13/2018,Actors,@thedanieb,I. Can’t. Wait. https://t.co/BQERHEGIec +05/12/2018,Actors,@thedanieb,This is the best thing I’ve seen all night lmbo. The #whitegirltears at the end had me rolling. 😂 https://t.co/cvfZm6IZlN +05/11/2018,Actors,@thedanieb,Thank you @essencemag Hope this encourages someone on their journey.💕 https://t.co/wmqeEoTiEr +05/11/2018,Actors,@thedanieb,If you’re a teenager or young adult don’t call me sweetie or hun. I will call you out on that ish. #petpeeve https://t.co/zHKNiF325p +05/11/2018,Actors,@thedanieb,Things to know this morning. @RepMaxineWaters I applaud you. https://t.co/1U812UkMzt +05/11/2018,Actors,@thedanieb,@Essence Shine on @Essence ✨ +05/10/2018,Actors,@thedanieb,"How do things like this just get to happen? Clearly by the way he so easily jacked him up, that officer clearly wa… https://t.co/WSnLEQWpse" +05/09/2018,Actors,@thedanieb,RT @Essence: .@thedanieb isn’t your typical fashion girl—and that’s part of her magic. https://t.co/wuhtqUHixf https://t.co/pqUJcyKi93 +05/08/2018,Actors,@thedanieb,@vulture Smart AF. +05/08/2018,Actors,@thedanieb,L.A. what time does American Idol come on? +05/08/2018,Actors,@thedanieb,@MatthewACherry Hilarious +05/07/2018,Actors,@thedanieb,"RT @Essence: .@thedanieb redefines beauty standards every time she hits the red carpet or slays the runway. Now, she's taking things a bit…" +05/07/2018,Actors,@thedanieb,@JSim07 Wow!! +05/07/2018,Actors,@thedanieb,Living fully in the grand moments! +05/06/2018,Actors,@thedanieb,Catch the message(s). https://t.co/ZTUltvdbpd +05/06/2018,Actors,@thedanieb,When you’ve told your driver you’ve been somewhere a hundred times and she still tells you the name of every block.… https://t.co/bwd1OZvl3N +05/03/2018,Actors,@thedanieb,@samirawiley Beautiful +05/03/2018,Actors,@thedanieb,I’m not gonna allow ignorance to stress me out today! Miss me with that. ☀️ https://t.co/fyKAlay4sp +05/02/2018,Actors,@thedanieb,Today is just one of them days... https://t.co/jRTsodPWUg +05/02/2018,Actors,@thedanieb,@BenSPLATT @MichaelJWoodard Totally 2nd this @BenSPLATT 😍😍he’s a winner! +05/01/2018,Actors,@thedanieb,Between this and the Kanye BS I just can’t today!!! Crazy 🤦🏿‍♀️ https://t.co/bgrplqcsuB +05/01/2018,Actors,@thedanieb,RT @JonBatiste: You’re the only version that exists. +04/30/2018,Actors,@thedanieb,Love late night karoake! https://t.co/zNZGWHZ8jS +04/28/2018,Actors,@thedanieb,@LeaMichele Congrats girl!!! +04/28/2018,Actors,@thedanieb,I’m completely obsessed with @MichaelJWoodard You have magic running all through your veins my friend. Continue to… https://t.co/kvzBvtGGFO +04/26/2018,Actors,@thedanieb,Speaking your truth so that all the “Dirty Computers” can!! Salute. https://t.co/I9XhvVfj4w +04/26/2018,Actors,@thedanieb,@IceIceHazy Watch away my friend!! 👍🏾 +04/26/2018,Actors,@thedanieb,Thank you @essence for letting me show off my vibrant style IN LIVING COLOR. Check out my 6 page spread in this mon… https://t.co/LfJtyyhCwa +04/24/2018,Actors,@thedanieb,@MadameNoire Thank you for the lovely article. +04/23/2018,Actors,@thedanieb,Sun-kissed. Wearing @CSiriano https://t.co/9mlTSN4VoJ +04/23/2018,Actors,@thedanieb,@jdgib @SpartanRace What’s your ig? Tried tagging you +04/22/2018,Actors,@thedanieb,I earned this baby!! My first @SpartanRace thank you to my amazing trainer for showing me their are more rewarding… https://t.co/Q30dE7l49Q +04/20/2018,Actors,@thedanieb,"Someone once said, “You teach people how to treat you.” Yelp, STOP second guessing me. https://t.co/JW8jxcl7MH" +04/17/2018,Actors,@thedanieb,RT @whenever: Looking for something AMAZING to do tonight? Come see @thedanieb and Ben Sinclair (@hmonhbo) on tonight's show! Get your tick… +04/16/2018,Actors,@thedanieb,Gonna be a good time. https://t.co/2f1KwkL5RP +04/16/2018,Actors,@thedanieb,Feeling good on this rainy Monday!! Hope you’re have a good day wherever you are in the world. +04/11/2018,Actors,@thedanieb,You’re one of the dopest women in Hollywood. 👑 great seeing you last night. https://t.co/GNp9TBrYRd +04/08/2018,Actors,@thedanieb,What @leslieodomjr said!!! https://t.co/miHxMF5vsn +04/07/2018,Actors,@thedanieb,"RT @universalstand: Q: are you ready for a new Brooks Overalls color? +A: yes, yes you are. +— +Designed by @thedanieb for you. #USxDB +Droppi…" +04/06/2018,Actors,@thedanieb,@PadmaLakshmi Hilariously perfect gif lol +04/04/2018,Actors,@thedanieb,@kymwhitley @LenaWaithe That’s been driving me crazy.. Mystery is solved! haha +04/04/2018,Actors,@thedanieb,"Maya Angelou, the original #PhenomenalWoman, would’ve been 90 years-old today. We’re here to remind all women, espe… https://t.co/yF2UKmWCdE" +04/04/2018,Actors,@thedanieb,Lord please let these eyelashes stay on todayyyyyy!! Intercede for the lashes Lord!! https://t.co/XROo2E7gbN +04/03/2018,Actors,@thedanieb,Story of my life 😂 https://t.co/qB474w9p0M +04/02/2018,Actors,@thedanieb,@Scarlet0o8 Take me back. +04/02/2018,Actors,@thedanieb,God wins the best April Fools prank on the ENTIRE city of New York. Yesterday I had on open toe shoes and now I got… https://t.co/yR39E1vXwy +03/30/2018,Actors,@thedanieb,Love this song by @yebbasmith called “Evergreen” Get into her. ❤️ https://t.co/3XFgzWKYBv +03/29/2018,Actors,@thedanieb,@NiaLong such a huge STANDOUT!! You were phenomenal in #RoxanneRoxanne PHE•NO•ME•NAL! +03/29/2018,Actors,@thedanieb,I’ve been on safari in Tanzania but if this happened to me. I just don’t know... 😱💀 https://t.co/5j9Z1XAAIs +03/29/2018,Actors,@thedanieb,@Essence @JoyAnnReid Of course she does!! 😊 +03/29/2018,Actors,@thedanieb,@kerrywashington Noooo!!! My heart. https://t.co/0oHiumQUqZ +03/29/2018,Actors,@thedanieb,My middle name is CrayCray. #tbt 🎥 @uptheamp https://t.co/X2fVcKLqZu +03/29/2018,Actors,@thedanieb,@Blacktress finally caught up and watched you on @2DopeQueens and you were so f**king phenom!!! 🔥 🔥 Just had to tell you! +03/28/2018,Actors,@thedanieb,Getting through the day. 🤪 +03/28/2018,Actors,@thedanieb,@annasale @Spotify Creating dreams in unexpected places. 💕 +03/26/2018,Actors,@thedanieb,@GlennJMurphy @OITNB Thank you +03/26/2018,Actors,@thedanieb,Rise and Grind. Back to work. +03/24/2018,Actors,@thedanieb,#wewantchange #EndGunViolence +03/24/2018,Actors,@thedanieb,#MARCHFOROURLIVES Listen to our youth and help them make change for the better!! +03/23/2018,Actors,@thedanieb,Great example of what it means to take care of our communities. #RP Anyone know where this kind of training is ava… https://t.co/9TwzMkqRjG +03/23/2018,Actors,@thedanieb,@MisterTrimmer @jpflannery Lovely meeting you. 💕 +03/22/2018,Actors,@thedanieb,Unconstitutional. I can’t believe this is real. https://t.co/lJOODcJJ0A +03/20/2018,Actors,@thedanieb,💋💋 https://t.co/Gu0j2bqrte +03/20/2018,Actors,@thedanieb,Come on Auntie!!! 🙌🏿 https://t.co/19LIV7HIVr +03/20/2018,Actors,@thedanieb,"When you sneeze twice, you say Excuse Me and your uber Driver doesn’t say Bless You... what I wanted to do 👇🏾lol https://t.co/jtgPJjXRbf" +03/19/2018,Actors,@thedanieb,Totally just forgot how to spell •Scissors• so I had to use the voice type feature on my 📱 to remember how to spell… https://t.co/wgntE3wS3h +03/19/2018,Actors,@thedanieb,@JohnWBrown1 @LenaWaithe @SHOTheChi Agreed lol +03/19/2018,Actors,@thedanieb,@IssaRae I am dead lol +03/19/2018,Actors,@thedanieb,"RT @universalstand: • staring down the week in style • +@thedanieb in the Dani sweater dress she designed for US. What are you looking forwa…" +03/18/2018,Actors,@thedanieb,@Love2244 Umm 😐 no I wasn’t. I had a film there but wasn’t able to make it. +03/18/2018,Actors,@thedanieb,NY ✈️ AUS ✈️ NY ✈️ DR ✈️ LA all in 3 weeks!! And I’m still standing! Say what!?! https://t.co/9R3SHLc7fB +03/18/2018,Actors,@thedanieb,Girl you made me laugh so hard. Thank you for being my blessing of the day! 😊 https://t.co/ggn0cZxGau +03/17/2018,Actors,@thedanieb,@adriennelwarren so proud of you girl!! Kill it out there in London!! +03/17/2018,Actors,@thedanieb,"RT @joshuahenry20: You could be on Broadway, in a 10 seat theater, or putting on a play in your backyard... When you’re surrounded by artis…" +03/14/2018,Actors,@thedanieb,"Sometimes you have to stand alone, but keep standing!! @justinlblackman Proud of your courage. https://t.co/bSrdjZW6p5" +03/14/2018,Actors,@thedanieb,"@JustinIBlackman Sometimes you have to stand alone, but keep standing!! @justinlblackman Proud of your courage." +03/14/2018,Actors,@thedanieb,I STAND WITH YOU ALL TODAY!! #nationalschoolwalkout +03/11/2018,Actors,@thedanieb,Miss you guys!! #sadiefilm @sxsw Wish I could be there premiering it up!! https://t.co/zS6KtYvstc +03/10/2018,Actors,@thedanieb,"These mosquitos making a full meal out of me in the DR, from my neck to my elbow to my babytoe 😭 lol" +03/09/2018,Actors,@thedanieb,Aww thanks Bud! https://t.co/vATCKK6R3d +03/09/2018,Actors,@thedanieb,HEY check this out! Artist • Activist. Is that you? 8 days left to apply to the Artist As Citizen Conference! AAC i… https://t.co/ZGg1Wh4zBQ +03/08/2018,Actors,@thedanieb,@dhalcombe I miss you. That’s it. ✌🏾 +03/07/2018,Actors,@thedanieb,My little brother knows what he’s talking about. https://t.co/b6GVdEtJsl +03/07/2018,Actors,@thedanieb,Sending so much love to Queen @ava today! So sad I’ll be missing the NY premiere of #WrinkleInTime!Sending so much… https://t.co/r1vRTgEDSV +03/07/2018,Actors,@thedanieb,@LauraBenanti @RuthieAnnMiles Just Heartbreaking. +03/07/2018,Actors,@thedanieb,Jetlagged. +03/06/2018,Actors,@thedanieb,This is everything. https://t.co/C4ntNT0yPa +03/05/2018,Actors,@thedanieb,@natasharothwell Good point +03/04/2018,Actors,@thedanieb,Gonna be my mood all week! Go head on @thebettygabriel 2 snaps for the Queen 👑 https://t.co/gE50OZZOql +03/04/2018,Actors,@thedanieb,I said I wasn’t gonna tweet about the #Oscars but the way #DeeRees just stepped out on this carpet tho!!! She looks… https://t.co/WrT742WoXy +03/03/2018,Actors,@thedanieb,"The way this DVR is set up, I can’t wait to get home. Lol https://t.co/TIRJDi2WOB" +03/03/2018,Actors,@thedanieb,"Australia, you wore me out... In the best way. ✌🏾until next time." +03/02/2018,Actors,@thedanieb,♥️♠️♥️ https://t.co/8EyeM22JkL +03/02/2018,Actors,@thedanieb,This is everything. https://t.co/hp986zpu9R +02/28/2018,Actors,@thedanieb,From Coogee to Bondi. Outchea Beachin’! 🏝 https://t.co/G56vuIoixP +02/28/2018,Actors,@thedanieb,@djbr00ks So proud of you baby brother @djbr00ks Keep striving for greatness!! +02/28/2018,Actors,@thedanieb,@jasminemihalski That works too 👍🏾 +02/27/2018,Actors,@thedanieb,"When asked where we was from, you already know... #WAKANDA ✊🏾 https://t.co/gHaWLGGgEa" +02/27/2018,Actors,@thedanieb,"Life is meant to be lived fully. I climbed the 1,654ft high Sydney Harbour Bridge yesterday. #worthit I smiled all… https://t.co/rz9XE9Hytx" +02/27/2018,Actors,@thedanieb,@steviekae @IMDb @theblackpanther Just found out it’s how many people visit their IMDb page +02/27/2018,Actors,@thedanieb,"Sydney, Australia I’m enjoying you. 🇦🇺" +02/26/2018,Actors,@thedanieb,How Cray! 🤪 We ran into @Coolio in Australia. Such a nice man. https://t.co/RMGZoCWR2Q +02/26/2018,Actors,@thedanieb,@luckyesteban Thanks for all your help today. 😎 +02/25/2018,Actors,@thedanieb,I see you @LOFT. Good move! #inclusion #stepforward +02/23/2018,Actors,@thedanieb,"Agreed, I second this. #BoycottNRA https://t.co/GBD7FL6VW1" +02/23/2018,Actors,@thedanieb,RT @NetflixANZ: Guess who's coming to Mardi Gras! https://t.co/CFzFk2B0vL +02/22/2018,Actors,@thedanieb,"On some real Prince shit, yet so uniquely her! Love it! https://t.co/nzk1VVBFwJ" +07/02/2018,Actors,@Lavernecox,"Lord have mercy, this is intense af #starzpower https://t.co/6F0VfzKDu3" +07/01/2018,Actors,@Lavernecox,@AlfreWoodard on the latest season of #LukeCage is pure unadulterated genius. Congrats to the entire cast and crew for an amazing season. +07/01/2018,Actors,@Lavernecox,RT @paolamendoza: A long time ago I made the choice to use my art to uplift the humanity of my people. I’ve had the honor to tell the stori… +06/30/2018,Actors,@Lavernecox,"RT @ACLwoo: We must love each other harder than ever before... JUSTICE is what LOVE looks like in public. No justice, no peace!! @Lavernec…" +06/30/2018,Actors,@Lavernecox,"RT @paolamendoza: Today, let’s march. +#FamiliesBelongTogether https://t.co/tvuXLRm9pk" +06/30/2018,Actors,@Lavernecox,RT @kerrywashington: Me! 👋🏾 #FamiliesBelongTogether FIND A MARCH NEAR YOU 👇🏾 https://t.co/yiXdUmpFmH https://t.co/dQMezH4sSA +06/29/2018,Actors,@Lavernecox,"RT @TessaThompson_x: Sometimes we cheer so loudly at someone speaking their truth, that we miss what they say. (Here’s looking at you media…" +06/29/2018,Actors,@Lavernecox,RT @itsgabrielleu: 👇🏾👇🏾👇🏾👇🏾👇🏾... Some people will never get it but not for a lack of info or 1st hand accounts but due to willful ignorance… +06/28/2018,Actors,@Lavernecox,@LaurenJauregui is celebrating her 22nd birthday by supporting the inaugural #stonewallday. Text STONEWALL to 24372… https://t.co/81dW6IpIwr +06/28/2018,Actors,@Lavernecox,"RT @ozy: OZY FEST 2018 SPRING SWEEPSTAKES +1. Like❤️ this post +2. Comment on this post with who you want to see most. +3. Tag a friend. +One l…" +06/27/2018,Actors,@Lavernecox,Let's keep holding on to each other tight and fighting back. Sending you lots of love https://t.co/rh7oGjgmTQ +06/27/2018,Actors,@Lavernecox,"Wow, just wow. As if things aren't already scary https://t.co/QTiPJrqQnl" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: ""Concerned citizens are encouraged to contact the Jacksonville Sheriff’s Office at (904) 630-2133."" Please follow @equalit…" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: Antash’a English and Celine Walker, both black trans women, were two earlier deaths, the latest victim is as of yet uniden…" +06/27/2018,Actors,@Lavernecox,"RT @SmartAssJen: I know we're all deluged with horrible news, but there's a crisis unfolding in Jacksonville, FL that needs more attention.…" +06/25/2018,Actors,@Lavernecox,RT @janetmock: Have y'all seen @theMAJORdoc about trans icon and pioneer Miss Major Griffin-Gracy? It makes for stellar #Pride viewing. Ava… +06/25/2018,Actors,@Lavernecox,#TransIsBeautiful https://t.co/ZZm8jr78V7 +06/25/2018,Actors,@Lavernecox,Congrats to all the winners and amazing performers at tonight's #BETAwards #BETAwards2018 +06/25/2018,Actors,@Lavernecox,@IamDebraLee congratulations and thank you for the work! #BETAwards2018 #BETAwards +06/25/2018,Actors,@Lavernecox,"RT @janetmock: To learn more about “pumping,” this article is a good primer/start. https://t.co/YusD4ucorD #posefx" +06/25/2018,Actors,@Lavernecox,RT @janetmock: This episode is about the body and our choice to do with it what we want. Though we never shame our characters for doing wha… +06/25/2018,Actors,@Lavernecox,RT @JSim07: #StrongBlackLead https://t.co/YVQ26MZXQu +06/25/2018,Actors,@Lavernecox,Thank you #PoseonFX for another gorgeous episode about the truths of our lives as #lgbtq+ people of color. #TransIsBeautiful +06/25/2018,Actors,@Lavernecox,RT @browneph: @netflix got the juice https://t.co/8XXSPlC2nO +06/24/2018,Actors,@Lavernecox,I know. I live! #PoseonFX https://t.co/0QSKTUI1h7 +06/24/2018,Actors,@Lavernecox,Just trying to stay in the moment and take it as it comes. I am super grateful for this moment. https://t.co/bbcjn4YlXF +06/24/2018,Actors,@Lavernecox,RT @paolamendoza: The crowd is gather in Tornillo to say kids don’t belong in cages. Kids don’t belong with cages with their moms either!… +06/24/2018,Actors,@Lavernecox,Beautiful https://t.co/SoXEOBdZgN +06/24/2018,Actors,@Lavernecox,When she was single she did not facetime. Bad lighting can take a girl out of the game. And taking the time to lig… https://t.co/ItLIpOmsWW +06/22/2018,Actors,@Lavernecox,"RT @TransLawCenter: ""There are many issues, but what’s always pressing on my heart is the need to prioritize the safety of Black and brown…" +06/22/2018,Actors,@Lavernecox,Yassss! #BeatForTheGods https://t.co/LyIsVRfL93 +06/22/2018,Actors,@Lavernecox,WE are loved out in the open. Can't wait for the next episode of #poseFX https://t.co/UAJ5I5Vd40 +06/22/2018,Actors,@Lavernecox,She did preach. Hallelujah! https://t.co/LR2s8DRsSt +06/22/2018,Actors,@Lavernecox,RT @them: How Billy Porter Is Crafting A Legacy For Queer Youth of Color #Queeroes2018 https://t.co/YWOyJfamZf https://t.co/0vFFf9G4t0 +06/22/2018,Actors,@Lavernecox,RT @them: How Reina Gossett Is Fighting for the Unruly Queers of the World #Queeroes2018 https://t.co/wBfGKvsq8u https://t.co/c6KhIH98dl +06/22/2018,Actors,@Lavernecox,RT @them: How Director Silas Howard Is Increasing Trans Representation Behind the Scenes #Queeroes2018 https://t.co/45XcPbBUC7 https://t.c… +06/22/2018,Actors,@Lavernecox,"RT @janetmock: No, I’m not crying. 😭 Such a gorgeous #queeroes2018 tribute by my lil sis @msevareign! #girlslikeus https://t.co/n0u7folxqB" +06/22/2018,Actors,@Lavernecox,RT @them: How Lena Waithe Is Bringing Black Queer Narratives to the Media Forefront #Queeroes2018 https://t.co/zYfZlS3EtK https://t.co/oYWv… +06/22/2018,Actors,@Lavernecox,RT @them: How Ali Stroker Is Making History as a Queer Disabled Person on Broadway #Queeroes2018 https://t.co/z4xcqPKpc6 https://t.co/GFeAo… +06/22/2018,Actors,@Lavernecox,One of my #queeroes indeed. @Peppermint247 Love you girl! #TransIsBeautiful https://t.co/7k48rcCqss +06/22/2018,Actors,@Lavernecox,"""Find what makes you feel most alive and human and never let go of it. You will come to learn that this matters mor… https://t.co/v8HgDB8CcH" +06/21/2018,Actors,@Lavernecox,RT @chasestrangio: White supremacy works by traumatizing generations and then blaming people of color for their trauma and acting as though… +06/20/2018,Actors,@Lavernecox,"RT @Alyssa_Milano: Grab the tissues and turn up the sound. REAL LOUD. + +When you’re finished watching this video please call (202) 224-3121…" +06/20/2018,Actors,@Lavernecox,RT @BirkbeckUnion: #Pride is not just a day to don the glitter and wear your most fabulous outfit - Its first and foremost a protest to dem… +06/18/2018,Actors,@Lavernecox,Thank you! https://t.co/LhNbdqwXFo +06/18/2018,Actors,@Lavernecox,Let's hope and prayer https://t.co/OXwrBttQZF +06/18/2018,Actors,@Lavernecox,Exactly what I was thinking honey. Good luck with that! https://t.co/uGMMo7PxgM +06/18/2018,Actors,@Lavernecox,RT @ourladyj: The stigma around HIV/AIDS is still alive and well in 2018. It has been the responsibility of a lifetime to humanize and empo… +06/18/2018,Actors,@Lavernecox,Amen Hallelujah! https://t.co/vA9vqlxLVx +06/18/2018,Actors,@Lavernecox,Category is...#FORYOURCONSIDERATION @theebillyporter #POSEFX. Bravo Billy +06/18/2018,Actors,@Lavernecox,@JohnnySibilly you were wonderful tonight on #PoseonFX . Congrats darling +06/18/2018,Actors,@Lavernecox,RT @luisapthomson: This answer by the great @Lavernecox for the @VanityFair proust questionnaire is so perfect and I can’t stop thinking ab… +06/18/2018,Actors,@Lavernecox,#PoseFX is telling stories about dating while trans I have wanted to tell for years. Thank you to the entire cast a… https://t.co/oOTMEVOS0L +06/18/2018,Actors,@Lavernecox,"Watching #PoseFX with my bf tonight,I said from experience, ""Angel needs to learn mistresses dont get the holidays.… https://t.co/9LZ7Xyz1iY" +06/18/2018,Actors,@Lavernecox,"""Let's wait a while"" is giving me my life #PoseFX" +06/17/2018,Actors,@Lavernecox,"@chasestrangio Happy #FathersDay darling. Sending love to Dad's of all gender identities, sexual orientations, rac… https://t.co/Ft1d3c2cYd" +06/17/2018,Actors,@Lavernecox,RT @chasestrangio: For this #FathersDay also a reminder that trans folks are parents too. 🙋🏻‍♂️ +06/17/2018,Actors,@Lavernecox,This thread👇 https://t.co/aZ6Vdnwkqh +06/17/2018,Actors,@Lavernecox,Amen sister https://t.co/3aVybRF0hj +06/15/2018,Actors,@Lavernecox,Yay Johnny! https://t.co/nBAdYfKSga +06/15/2018,Actors,@Lavernecox,RT @LenaWaithe: have you applied yet? no? why? let's stop chasing our dreams and start catching them muthafuckas. okay bye! https://t.co/dE… +06/14/2018,Actors,@Lavernecox,Love this https://t.co/Rc7x9GluUW +06/14/2018,Actors,@Lavernecox,RT @davidclark: “Believing you are unworthy of love and belonging — that w ho you are authentically is a sin or is wrong — is deadly. Who y… +06/14/2018,Actors,@Lavernecox,https://t.co/rWFK3xGAso +06/14/2018,Actors,@Lavernecox,RT @Into: We interviewed @RealTCooper about @ManMadeDoc - his new film that follows trans men preparing for an all transgender bodybuilding… +06/14/2018,Actors,@Lavernecox,@chernowa @cmcasarez Ha love it +06/13/2018,Actors,@Lavernecox,RT @SamFederFilm: BIG UPDATE! @Lavernecox has joined our team as Executive Producer! https://t.co/22HQqQPmPI +06/13/2018,Actors,@Lavernecox,"So excited about this project. #Transisbeautiful +https://t.co/ucbQIxl32w" +06/13/2018,Actors,@Lavernecox,RT @PopCulture: #OITNB co-star @Lavernecox helping spread positive message with @Airbnb experience: https://t.co/fElrP5X4mM https://t.co/kW… +06/12/2018,Actors,@Lavernecox,RT @yahoolifestyle: Transgender celeb @Lavernecox talks about her greatest challenge: 'Getting out of my own way' https://t.co/qZDKW1tk3y #… +06/12/2018,Actors,@Lavernecox,https://t.co/szCFyyt8Q1 +06/12/2018,Actors,@Lavernecox,"RT @Zac_Posen: Premiering my new series on @YahooLifestyle so you can now hear these inspirational women #LoudandClear, beginning with the…" +06/12/2018,Actors,@Lavernecox,"When @Zac_Posen asked me to share my message #LoudAndClear , I told him that my journey is proof that anything is… https://t.co/eCtRhqypuZ" +06/12/2018,Actors,@Lavernecox,RT @ChrisMichaelW: More people should watch @freakshowmovie!! It has a good message and filled with great stars like @BetteMidler and @Lave… +06/12/2018,Actors,@Lavernecox,RT @rosaclemente: .@Lavernecox We knew what was happening.We went to Puerto Rico and saw refrigerated trucks filled with cadavers.The preve… +06/11/2018,Actors,@Lavernecox,"RT @VanityFair: Which historical figure does @LaverneCox most identify with? ""Eartha Kitt."" https://t.co/F7zKjzGxtp" +06/11/2018,Actors,@Lavernecox,RT @LookDifferent: “Misgendering is a form of cultural & structural violence. This leads to direct violence against trans people which dimi… +06/11/2018,Actors,@Lavernecox,"RT @DiMAwards: Vote for Cosmopolitan with Laverne Cox on the cover, to win the Diversity in Media Moment of the Year. Visit our website, vo…" +06/11/2018,Actors,@Lavernecox,"""Do what you must and I'll defend as I have to"". I love Taylor Mason so much! @SHO_Billions #BillionsFinale #Billions" +06/11/2018,Actors,@Lavernecox,What a lesson @SHO_Billions teaches us about gender neutral pronouns! Everyone respects Taylor's preferred gender p… https://t.co/DIOLNyudYt +06/10/2018,Actors,@Lavernecox,RT @Alyssa_Milano: We need the #ERANow. https://t.co/oFlJAGam6z +06/10/2018,Actors,@Lavernecox,"RT @fusetv: Four years ago, @LaverneCox made history as the first transgender person to grace the cover of TIME magazine. Keep breaking thr…" +06/09/2018,Actors,@Lavernecox,"RT @NewsMuseumEN: On the 9th June 2014 @TIME published, for the first time, a cover featuring a trangender person. @Lavernecox is an actres…" +06/09/2018,Actors,@Lavernecox,"RT @DangerLove12: ""Different levels different devils. But I am still here. I keep on keeping on and that feels like a miracle today."" thank…" +06/08/2018,Actors,@Lavernecox,"RT @BreneBrown: The news of Kate Spade’s death was a cruel reminder about the realities of depression and anxiety, and about the dangerous…" +06/08/2018,Actors,@Lavernecox,Love you @Essence https://t.co/yZs9zKDyEp +06/06/2018,Actors,@Lavernecox,"RT @ValerieJarrett: Kalief was imprisoned on Rikers for three years, and spent time in solitary confinement, for stealing a backpack. Rele…" +06/06/2018,Actors,@Lavernecox,"RT @RachGoldstein: 3 years since Kalief Browder’s death and still no action. Now is the time to honor his memory. + +Take the pledge for Kali…" +06/06/2018,Actors,@Lavernecox,RT @bobbybennn007: https://t.co/f2wxZafiej this is something that you must listen to... Knowledge is power @Lavernecox @LGBTfdn @LGBT +06/06/2018,Actors,@Lavernecox,Yas! https://t.co/laG2aXKHrm +06/04/2018,Actors,@Lavernecox,RT @ChrisMichaelW: TOMORROW: The Awesome @freakshowmovie will be out on DVD and Blu-Ray!! Our family’s copy got pre-ordered and will be de… +06/04/2018,Actors,@Lavernecox,Oh yes! What a cast! Just this trailer inspires me to be better. I hear your call fellow artists. I hear your call.… https://t.co/XdANwK1s4s +06/04/2018,Actors,@Lavernecox,@candiscayne @PoseOnFX Always! You are everything! +06/04/2018,Actors,@Lavernecox,You can join me TODAY and support the Stonewall Inn Gives Back Initiative Auctionrunning now on Charitybuzz by bidd… https://t.co/5szMSyDG5F +06/04/2018,Actors,@Lavernecox,"So proud to announce I am a Stonewall Inn Ambassador, supporting the Stonewall Inn + Stonewall Inn Gives Back Initi… https://t.co/hiq03ynH0g" +06/04/2018,Actors,@Lavernecox,"RT @octopodians: in the words of @Lavernecox: ""It is revolutionary for any trans person to choose to be seen and visible in a world that te…" +06/04/2018,Actors,@Lavernecox,"RT @DuleHill: Approximately 22 Veterans a day commit suicide. + +Would at least 22 of my Twitter friends please copy and tweet? (Not RT.)…" +06/04/2018,Actors,@Lavernecox,Congratulations darling. What a truly wonderful show! https://t.co/1Ngmvs5SeU +06/04/2018,Actors,@Lavernecox,Tonight is the premiere of @PoseOnFX. https://t.co/Aa6yHe8uwk +06/03/2018,Actors,@Lavernecox,#Doubt was such a labor of love for all of us. Thanks so much for watching! https://t.co/h5lsZ5UGwx +06/03/2018,Actors,@Lavernecox,"RT @SVU_Diehards: ""SVU is the New Black"" Marathon beginning at 10:02 on @USA_Network https://t.co/F6HXK2yZmm" +06/02/2018,Actors,@Lavernecox,"RT @paolamendoza: Disgusting does not even begin to describe what is happening to this mother and her two children. + +A 2 yr old and a 7 yr…" +06/02/2018,Actors,@Lavernecox,"RT @ETCanada: .@Lavernecox reveals she underwent conversion therapy as a child, recalls experience as ""awful, horrible and shaming"" https:/…" +06/02/2018,Actors,@Lavernecox,RT @IAmAnImmigrant: Many of our nation's immigrant stories are not so different from those of families who are striving to be part of the A… +06/01/2018,Actors,@Lavernecox,Werk!!!!!!!! https://t.co/5r8tqgp7qx +05/31/2018,Actors,@Lavernecox,"RT @healinghonestly: The goddess @Lavernecox on te newsstands of Lima, Peru! https://t.co/DWIVh6jfmX" +05/31/2018,Actors,@Lavernecox,RT @TransLawCenter: “If you have an incoming immigrant that shows signs of medical distress – including being HIV positive and having pneum… +05/31/2018,Actors,@Lavernecox,Thank you so much! https://t.co/DsLdiVM5WI +05/30/2018,Actors,@Lavernecox,Thanks so much darling https://t.co/Pw1onQUlRf +05/30/2018,Actors,@Lavernecox,RT @GospelOfAndre: We agree! Thank you @Lavernecox. #GospelAccordingToAndre is now in theaters! Find a theater near you: https://t.co/BPmEp… +05/30/2018,Actors,@Lavernecox,Thanks so much darling! https://t.co/Wu3NxGKdwe +05/30/2018,Actors,@Lavernecox,Thank you so much darling. You are the best! https://t.co/gikoOMGpMK +05/30/2018,Actors,@Lavernecox,Things are shaping up. Awesome EB https://t.co/ltYhCWoUJc +05/29/2018,Actors,@Lavernecox,"RT @aishatyler: Kudos to @ABCNetwork for their quick, decisive actions. We live in a country where you can express yourself freely, but tha…" +05/29/2018,Actors,@Lavernecox,"RT @ozy: You may have seen her in Orange Is the New Black. Now you can see @Lavernecox live in NYC's Central Park this summer, along with @…" +05/29/2018,Actors,@Lavernecox,I'm in https://t.co/MzGcEdPYxM +05/29/2018,Actors,@Lavernecox,❤❤❤❤ https://t.co/Gt48CLafLm +05/29/2018,Actors,@Lavernecox,Thanks darling. Love you! https://t.co/SILsfKMnQ2 +05/29/2018,Actors,@Lavernecox,Thank you so much ❤❤❤ https://t.co/blLofNpoYH +05/29/2018,Actors,@Lavernecox,Thanks so much Ellen. Love you! https://t.co/HcLFj4KAgA +05/29/2018,Actors,@Lavernecox,❤❤❤❤❤ https://t.co/qRHD0rzqTx +05/29/2018,Actors,@Lavernecox,What a birthday gift watching @serenawilliams make her come back in that FIERCE #catsuit. Congratulations! We love… https://t.co/m6tmSw9C0s +05/29/2018,Actors,@Lavernecox,It's my birthday. To help me celebrate please consider making a donation to @antiviolence https://t.co/ROnyXe81Fk… https://t.co/KOgUH5NfmZ +05/29/2018,Actors,@Lavernecox,@GospelOfAndre is #Everything. Love you so much #AndreLeonTally. You are a national treasure and the epitome of… https://t.co/z0B22odzlq +05/28/2018,Actors,@Lavernecox,@LittleLostBoy01 @TexasChickenUSA This was recorded by my friend @TheLadyDejaD. It happened to her and a few of my other friends last night +05/28/2018,Actors,@Lavernecox,RT @LittleLostBoy01: (Video credit to @Lavernecox) Make this shit go viral. Absolutely disgusting display of discrimination against POC/Tra… +05/27/2018,Actors,@Lavernecox,"RT @workwthecoach: To protect your energy ... + +It’s okay to cancel a commitment. +It’s okay to not answer that call. +It’s okay to change yo…" +05/27/2018,Actors,@Lavernecox,@CaptKirkeisha @Beyonce Amen +05/27/2018,Actors,@Lavernecox,"Everytime I rewatched sections of #beychella I get exhausted thinking about how much work it was to conceive, rehe… https://t.co/GWzzgoejUi" +05/27/2018,Actors,@Lavernecox,Werk! https://t.co/2PC7HELbdr +05/27/2018,Actors,@Lavernecox,RT @wdytya: Did you miss @Lavernecox's powerful journey through her family's history on the season premiere of #WDYTYA? Download the #TLCgo… +05/26/2018,Actors,@Lavernecox,Amen https://t.co/0O6atVB1rw +05/26/2018,Actors,@Lavernecox,Thanks for writing it. I am in an intense and slow process of excavating the unknown traumas lying dormant in my ce… https://t.co/vftT4vWVj5 +05/26/2018,Actors,@Lavernecox,This does sound super cool https://t.co/qJozZOooYn +05/26/2018,Actors,@Lavernecox,"""Is the opportunity to let go of trauma a privilege?Trauma is inherently layered and nuanced.Trauma holds onto us t… https://t.co/ZX16EJO8jT" +05/26/2018,Actors,@Lavernecox,Thank you @GetSpectrum. I finally have cable and wifi https://t.co/oLjgrLNXqW +05/26/2018,Actors,@Lavernecox,Omg yes. That just made my day. https://t.co/brJmM21g5t +05/26/2018,Actors,@Lavernecox,@Neety_pie Wow. That's crazy +05/26/2018,Actors,@Lavernecox,I needed that laugh. Thank you! Laughter helps with perspective. Moving is just so stressful anyway when things go… https://t.co/ecjaFQzdjU +05/26/2018,Actors,@Lavernecox,Trust me. They are https://t.co/gysv3km6Wr +05/26/2018,Actors,@Lavernecox,Oh it’s so hard to stay calm in these situations. https://t.co/OQK7afd4ok +05/26/2018,Actors,@Lavernecox,I know I am not the only person who has gone through this. Let me know I am not alone. There are worse things going… https://t.co/CecVrZGEl9 +05/26/2018,Actors,@Lavernecox,So now I have to wait potentially til next Wednesday for another person to come out and install. Trying to be in a… https://t.co/psAs5cAqgf +05/26/2018,Actors,@Lavernecox,"The tech who came to install on Wednesday, who kept misgendering me btw, couldn’t find a signal. He said a wire was… https://t.co/htzpiSzw1y" +05/26/2018,Actors,@Lavernecox,I am in the middle of a @GetSpectrum installation nightmare. I have been trying to stay calm and spiritual about th… https://t.co/VF97BK3Urc +05/25/2018,Actors,@Lavernecox,❤❤❤ https://t.co/9i4gMF20Xa +05/25/2018,Actors,@Lavernecox,❤❤❤ https://t.co/BRxrYvfkQJ +05/25/2018,Actors,@Lavernecox,What wonderful work you did this season! Obsessed with what you have created. Obsessed with #DearWhitePeople https://t.co/bhNwaHG863 +05/25/2018,Actors,@Lavernecox,"""#RaquelettaMoss speaks in the third person because she survived her own personal holocaust by stepping out of her… https://t.co/9eFPMl05z5" +05/25/2018,Actors,@Lavernecox,You all are amazing. You all had me crying like a baby. https://t.co/cJbGIUb2lm +05/24/2018,Actors,@Lavernecox,Yes https://t.co/SpKeJA4MHC +05/24/2018,Actors,@Lavernecox,"""I can't handle the tooth"" finally Lionel. Finally! Thank God! #DearWhitePeople" +05/24/2018,Actors,@Lavernecox,Living for Brooke on @DearWhitePeople #DearWhitePeople. #leftyoumynumber +05/24/2018,Actors,@Lavernecox,RT @silentmjority: @Lavernecox ‘s WDYTYA episode should be required viewing in schools when teaching about America in the post Civil War er… +05/24/2018,Actors,@Lavernecox,The killings must end. #RIPGigiPierce #TransLivesMatter https://t.co/MzLKMWskRY +05/24/2018,Actors,@Lavernecox,RT @ACLU: BREAKING: A federal appeals court has upheld the policy of Boyertown School District in Pennsylvania allowing trans students to u… +05/24/2018,Actors,@Lavernecox,Another victory for our young people and for trans folks all over this country. #transrightsarehumanrights… https://t.co/mxJwWMGR12 +05/24/2018,Actors,@Lavernecox,I have asked for that as well. Love that show. I am waiting to watch season 2 when I have a full day. I watched s… https://t.co/SG50U2Rotx +05/24/2018,Actors,@Lavernecox,"RT @StevenCanals: For @thedailybeast, I write about the experience of bringing @PoseOnFX to TV. #PoseFX +https://t.co/le9NjhjPZp" +05/24/2018,Actors,@Lavernecox,Happy birthday darling. Miss you! Love you! https://t.co/8fYdOVu5fm +05/24/2018,Actors,@Lavernecox,Amen https://t.co/Xt0etuZAEX +05/24/2018,Actors,@Lavernecox,RT @sagaftra: #Repost @tasteofadrian “SAG-AFTRA is closer than ever to it’s first spanish language TV network union contract with Telemundo… +05/23/2018,Actors,@Lavernecox,Amen ❤❤ https://t.co/IZBNwyIJy2 +05/23/2018,Actors,@Lavernecox,RT @reformlajails: The gangs all here! @MattMcGorry @shailenewoodley and @kendrick38 are helping us #ReformLAJails by collecting signatures… +05/23/2018,Actors,@Lavernecox,RT @wdytya: Miss @Lavernecox on #WDYTYA? Watch her episode now! https://t.co/Q4UMADOClZ https://t.co/p1RK7unoTv +05/23/2018,Actors,@Lavernecox,RT @PPact: JUST IN: @realDonaldTrump just imposed a gag rule to cut funds to any health care provider that refers their patients for aborti… +05/23/2018,Actors,@Lavernecox,"RT @MichaelSkolnik: If you’re the smartest person in the room, then you’re in the wrong room." +05/23/2018,Actors,@Lavernecox,This case is hugely important. Thank you @GavinGrimmVA and thank you to all the everyday people standing up for you… https://t.co/1siludn6ZF +05/23/2018,Actors,@Lavernecox,Congratulations @staceyabrams https://t.co/uZxAYsVXwi +05/22/2018,Actors,@Lavernecox,"RT @chasestrangio: In 2015 when @JoshABlock filed @GavinGrimmVA’s case, Gavin had already fought so hard and carried so many burdens. Today…" +05/22/2018,Actors,@Lavernecox,"RT @MsIsisKing: Bold is beautiful! @sephora is launching Bold Beauty for the Transgender Community- a new, FREE beauty workshop for all gen…" +05/22/2018,Actors,@Lavernecox,"I love you @SirAriGold +https://t.co/MxUssQccUf" +05/22/2018,Actors,@Lavernecox,Congrats @GavinGrimmVA. Thank you for fighting the fight for all of us. Thank you to the Virgina federal court. Tha… https://t.co/yplaMwdWm6 +05/22/2018,Actors,@Lavernecox,https://t.co/VC59TN6xUa +05/22/2018,Actors,@Lavernecox,Tearing up again watching @wdytya #WDYTYA. It's just so deep. +05/22/2018,Actors,@Lavernecox,❤❤ https://t.co/QYI7JHaL3H +05/22/2018,Actors,@Lavernecox,Thank you. West coast. It's starting right now https://t.co/lSsnO5v935 +05/22/2018,Actors,@Lavernecox,RT @MichaelSkolnik: RT if you support an assault weapons ban. +05/22/2018,Actors,@Lavernecox,Very cool https://t.co/vL6RvpBVXY +05/22/2018,Actors,@Lavernecox,I am on the west coast. Can't wait to watch yours. https://t.co/gDiP52i0pW +05/22/2018,Actors,@Lavernecox,Thank you. You are a treasure https://t.co/y10Mm6whnU +05/22/2018,Actors,@Lavernecox,RT @AnaisTGrant: @Lavernecox the strength and activism in your family is strong #WDYTYA +05/22/2018,Actors,@Lavernecox,Ah❤❤ https://t.co/cdcg9yvz4B +05/22/2018,Actors,@Lavernecox,We only had an hour. There was tons more that didnt make it to television https://t.co/vBEgh5UAR6 +05/22/2018,Actors,@Lavernecox,"Yeah what a journey. I still haven't fully processed all I have learned. So ""wow"" is just a really good word https://t.co/ioZrNaknJM" +05/22/2018,Actors,@Lavernecox,It does https://t.co/J0f1BAR64P +05/22/2018,Actors,@Lavernecox,RT @floatingonward: This episode of #WDYTYA has such an impact on me since it is showing in my own state of Alabama. We hear and learn abou… +05/22/2018,Actors,@Lavernecox,Yeah that was just wow! https://t.co/hY5bzln89p +05/22/2018,Actors,@Lavernecox,RT @wdytya: Speechless. #WDYTYA https://t.co/3AafFsedPD +05/22/2018,Actors,@Lavernecox,RT @Aksannyi: Such a chilling reminder of how difficult it was for all of the former slaves. Freedom didn't make it all better. #WDYTYA +05/22/2018,Actors,@Lavernecox,RT @DainaRameyBerry: @Lavernecox talks with @ericaadunbar on #WDYTYA about labor after 1865. +05/22/2018,Actors,@Lavernecox,RT @rosaclemente: Women of color historians unite! So awesome to see us represented and telling @Lavernecox the history of her family in th… +05/22/2018,Actors,@Lavernecox,RT @wdytya: More documents! #WDYTYA https://t.co/ZRuiJJLpAF +05/22/2018,Actors,@Lavernecox,"RT @rosaclemente: So powerdul to see my former Professor at UMASS-Amherst, @ProfMSinha showing @Lavernecox her great great grandfathers his…" +05/22/2018,Actors,@Lavernecox,Its super devastating. I had to step away and cry for about 20 minutes https://t.co/xOtiaPpCXd +05/22/2018,Actors,@Lavernecox,RT @bibliophile89: I'm not keeping up with the drinking game. I'm too caught up in the story. #wdytya @Ancestry @wdytya +05/22/2018,Actors,@Lavernecox,That was my thought too https://t.co/gg2tthwXYs +05/22/2018,Actors,@Lavernecox,RT @kmwebott: Those of us that are constantly looking at old #genealogy documents often forget how amazing it is to work with those files.… +05/22/2018,Actors,@Lavernecox,RT @MyFamilyGenie: Native American ancestry in a family is such a popular legend. Great it was discussed here. #WDYTYA +05/22/2018,Actors,@Lavernecox,❤❤❤ https://t.co/qwU3JNf0hr +07/02/2018,Comedians,@chrisrock,Congratulations to the Boston Celtics next years eastern conference champions. +05/17/2018,Comedians,@chrisrock,@SpikeLee & @JordanPeele bring you BLACKKKLANSMAN. Coming soon. https://t.co/Aimu9QwOO8 +04/30/2018,Comedians,@chrisrock,Yes i did bout time somebody noticed. https://t.co/orpqxEMdXV +04/28/2018,Comedians,@chrisrock,@spacetime_1 Really appreciate it. I worked on all of them but this was the hardest. +04/28/2018,Comedians,@chrisrock,@spacetime_1 That’s a lot. +04/19/2018,Comedians,@chrisrock,RT @kanyewest: me and Cudi album June 8th +04/16/2018,Comedians,@chrisrock,Check out my homie @amyschumer new movie #ifeelpretty opening this Friday 4/20 https://t.co/8KDiRY6weV +03/19/2018,Comedians,@chrisrock,Free MeekMill. Such a sad story. https://t.co/ZGiTwptE3V +03/09/2018,Comedians,@chrisrock,"RT @JosephVecsey: Myself & @KrystynaHutch comedy album ""MAYBE IT'S YOU"" is bringing back songs & sketches and now available on I-Tunes & Ba…" +03/03/2018,Comedians,@chrisrock,Prayers for Rick Ross and family please. https://t.co/GVHxIZl05z +02/27/2018,Comedians,@chrisrock,"For anyone who needed proof that I’m a better father-in-law than @adamsandler, check out the trailer to our new mov… https://t.co/qEn5cCOse5" +02/27/2018,Comedians,@chrisrock,"RT @TheWeekOf: This wedding season, it’s dad vs dad vs everything else that could go wrong. https://t.co/hNECcq4irC" +02/27/2018,Comedians,@chrisrock,https://t.co/5a5nBUUAK8 +02/27/2018,Comedians,@chrisrock,"RT @BorjaGonzalvez: Just watched #Tamborine from @chrisrock in @netflix ,and I tell you one thing. If @DCComics wants be really bold with a…" +02/20/2018,Comedians,@chrisrock,RT @NetflixIsAJoke: A history lesson from @chrisrock. https://t.co/AVXUmtMHv8 +02/19/2018,Comedians,@chrisrock,The Allstar team at the allstar game. https://t.co/U3c9TKpVTb +02/18/2018,Comedians,@chrisrock,RT @NetflixIsAJoke: M-I-S-S-T-A-K-E. https://t.co/nF1Fhl5JLj +02/17/2018,Comedians,@chrisrock,"RT @DMFSaint: Chris Rock's new Netflix special, Tamborine, was directed by Bo Burnham. + +... what?" +02/17/2018,Comedians,@chrisrock,RT @AbrissErik: I talked to Bo Burnham about directing Chris Rock’s first stand-up special in 10 years #Tamborine https://t.co/dRRe2opUeJ h… +02/14/2018,Comedians,@chrisrock,https://t.co/5eacFbCaR1 +02/13/2018,Comedians,@chrisrock,Tomorrow. Tamborine. @netflixisajoke https://t.co/RPVhPv5mmq +02/13/2018,Comedians,@chrisrock,RT @RickeySmiley: #MartinLawrence's #LITAFTour line-up is crazy!! So happy to be a part of this awesome group!!!! @realmartymar https://t.c… +02/12/2018,Comedians,@chrisrock,RT @SInow: LaVar Ball said Lonzo won’t re-sign with the Lakers if they won’t sign his two brothers also https://t.co/BJZzPCdNbL +02/12/2018,Comedians,@chrisrock,RT @anthonyjeselnik: This portrait immortalizes my two favorite things about President Obama. He placed furniture wherever. And zero alle… +02/12/2018,Comedians,@chrisrock,Black Panther opening this weekend. https://t.co/NrcWzFAGB7 +02/12/2018,Comedians,@chrisrock,@InstantRHIplay @BarackObama Just saw the Presidential Portrait. Wow. Barack Obama is the real Black Panther. +02/12/2018,Comedians,@chrisrock,RT @InstantRHIplay: President @BarackObama's official presidential portrait has now been unveiled. Kehinde Wiley produced the 44th presiden… +02/12/2018,Comedians,@chrisrock,The Cavs right now are better team than the one that lost in the finals . +02/12/2018,Comedians,@chrisrock,"ICYMI: ""Reg E. Cathey has passed . RIP Dirty Dee. Great actor great Man."" https://t.co/fIZEwd8Nu3" +02/10/2018,Comedians,@chrisrock,Reg E. Cathey has passed . RIP Dirty Dee. Great actor great Man. https://t.co/EgvBPstSaI +02/09/2018,Comedians,@chrisrock,RT @atjeffreyjoseph: Black Panther The Album and pre-sales for the movie are so dope that Wakanda will probably become completely gentrifie… +02/06/2018,Comedians,@chrisrock,"RT @CrxTime: Comedian Joey Vega in +""AmeRican"" My Life Aqui y Alla, +coming to Allentown, Reading, Bethlehem… https://t.co/11iSod0Eik" +02/01/2018,Comedians,@chrisrock,The Week Of is coming to @netflix in time to warn you against wedding season. Also i’m not saying you want me inste… https://t.co/tTi63tLQEM +01/28/2018,Comedians,@chrisrock,#TotalBlackoutTour #TheEnd https://t.co/PiPcLqkIFR +01/28/2018,Comedians,@chrisrock,"RT @anthonyjeselnik: Greatest of all time. +https://t.co/E3vaS7ReQO" +01/28/2018,Comedians,@chrisrock,"RT @NegoTrue: Chris Rock at the 02 tonight was honestly hilarious and a great experience. + +No pictures, we all had to put our phones in so…" +01/27/2018,Comedians,@chrisrock,RT @realjeffreyross: When you decide to take the underground to the biggest show of the tour... @TheO2 @chrisrock @michelleisawolf @anthony… +01/27/2018,Comedians,@chrisrock,It goes down tonight and tomorrow in LONDON at @TheO2. Last two shows of the #TotalBlackoutTour 🎤 https://t.co/OkiCMScKHN +01/27/2018,Comedians,@chrisrock,RT @JordanW25: @realjeffreyross @michelleisawolf and @anthonyjeselnik set a huge bar last night at Wembley Arena and @chrisrock topped it.… +01/26/2018,Comedians,@chrisrock,RT @DJHyphen: Chris Rock with Jeff Ross and Anthony Jeselnik opening at Wembley tonight. So good. 🙌🏼🙌🏼🙌🏼 +01/26/2018,Comedians,@chrisrock,Finishing up the tour in London this weekend. Tonight it’s going down at the @ssearena. Tomorrow and Sunday at the… https://t.co/JlCWLcARev +01/26/2018,Comedians,@chrisrock,"RT @wembleypark: He's here!! Tonight @chrisrock brings his UK tour to the @ssearena, Wembley, and we couldn't be more excited! Will any of…" +01/26/2018,Comedians,@chrisrock,"RT @mrmarkmillar: Just back from Chris Rock in Glasgow, who was amazing, but @realjeffreyross stole the show. Did anyone here catch his roa…" +01/25/2018,Comedians,@chrisrock,RT @iamcolinquinn: Unlike many my biggest fear in comedy is not bombing. It’s getting too many laughs to where I can’t hear my next set up. +01/25/2018,Comedians,@chrisrock,RT @realjeffreyross: Headed to London for a few days to perform w Rock at the @TheO2 and @ssearena. What’s the best late night food for aft… +01/25/2018,Comedians,@chrisrock,Can’t wait to get to Birmingham tonight’s show. +01/25/2018,Comedians,@chrisrock,RT @Amy__Macdonald: I went to see @chrisrock tonight and it was great. I was sooo impressed by the little phone cases. How refreshing to no… +01/25/2018,Comedians,@chrisrock,RT @dommcl: @chrisrock last night was the up there with the funniest thing I've ever seen! @realjeffreyross roasting randoms was hilarious… +01/25/2018,Comedians,@chrisrock,RT @Paul_725: Chris Rock tonight at Birmingham Arena! 2 hours of being told white people are terrible awaits me +01/24/2018,Comedians,@chrisrock,Crazy... @TheSSEHydro https://t.co/hA4nVzWA4W +01/24/2018,Comedians,@chrisrock,RT @JimCarrey: 11 school shootings in 24 days. The new Norm! https://t.co/XHnXqOmTQu +01/16/2018,Comedians,@chrisrock,"RT @nealbrennan: In honor of MLK Day, hire or recommend a person of color for a job. Even a job where they're not especially looking to hir…" +01/15/2018,Comedians,@chrisrock,"RT @jonfavs: Say it over and over again, all week long: + +Trump is shutting the government down because the bipartisan deal to keep it open…" +01/13/2018,Comedians,@chrisrock,"RT @robertvoysey: @chrisrock Just watched chris rock at the bic! The BEST performance I’ve seen in my life, the way he controlled the audie…" +01/13/2018,Comedians,@chrisrock,"RT @themissmurphy: @chrisrock In Bournemouth was amazing! Knew it would be good but my face actually hurts from laughing so much, even roas…" +01/12/2018,Comedians,@chrisrock,RT @blsec: Great night at the Manchester Arena following the @chrisrock #BlackOut Tour as usual he was fantastic. Really enjoyed the no pho… +01/11/2018,Comedians,@chrisrock,@washingtonpost Wow +01/11/2018,Comedians,@chrisrock,@LasMansiones That’s not my house. Never was +01/09/2018,Comedians,@chrisrock,RT @Diddy: Put some respect on it!! When you look at us make sure you see royalty and super natural God sent glory!! Anything else is disre… +01/07/2018,Comedians,@chrisrock,Back in DC tonight. I heard some last minute tickets just became available! #TotalBlackoutTour https://t.co/OEt7RA7aVA +01/05/2018,Comedians,@chrisrock,"RT @chrisrock: It goes down tomorrow in warm South Florida. @HardRockHolly +Tix: https://t.co/9dtAIj7a3K https://t.co/dDifBqsB1R" +01/05/2018,Comedians,@chrisrock,"It goes down tomorrow in warm South Florida. @HardRockHolly +Tix: https://t.co/9dtAIj7a3K https://t.co/dDifBqsB1R" +01/02/2018,Comedians,@chrisrock,"RT @HardRockHolly: We're excited to have @chrisrock back at Hard Rock Live THIS FRIDAY! + +Get your tickets: https://t.co/2L5pKAWQo3 +#MCM #C…" +12/19/2017,Comedians,@chrisrock,"“South Florida, I coming back for a third show at @hardrockholly on 1/5! Make sure you get your tickets before they… https://t.co/CSti0M2yY9" +12/18/2017,Comedians,@chrisrock,@nealbrennan Agree +12/17/2017,Comedians,@chrisrock,"RT @aplusk: There’s a time to make statements, a time to ask question, and a time to shut up and listen to the experts. Option 3 should be…" +12/16/2017,Comedians,@chrisrock,"I'm helping #makeHIVhistory with @glblctzn and @JNJCares for #WorldAIDSDay. Watch this video, share the facts and… https://t.co/O9fobSPRb4" +12/15/2017,Comedians,@chrisrock,@ANTMVH1 @tyrabanks Yes can’t wait to ANTM. The best comedy on television. +11/28/2017,Comedians,@chrisrock,@lapis748 Michelle wolf +11/28/2017,Comedians,@chrisrock,"RT @Megalyn: On behalf of the #NavajoNation and the #CodeTalkers, the real men and hereos without whom your sorry ass might not even be her…" +11/26/2017,Comedians,@chrisrock,@KevinHart4real Not me +11/24/2017,Comedians,@chrisrock,Two shows tonight at the Borgata in Atlantic City. One will probably be funnier than the other. +11/17/2017,Comedians,@chrisrock,RT @JordanPeele: ‘Get Out’ is a documentary. +11/15/2017,Comedians,@chrisrock,This is a major accomplishment don’t sleep. https://t.co/Qcx0iDJP4g +11/12/2017,Comedians,@chrisrock,@realDonaldTrump The President of the United States Of American just released this statement wow. +11/07/2017,Comedians,@chrisrock,RT @Megalyn: Its pretty clear prayers aren't enough. They were at fucking church! They need common sense gun laws! https://t.co/bRUeoL1Loy +11/07/2017,Comedians,@chrisrock,RT @aparnapkin: starting to get the feeling that guns DO kill people +11/07/2017,Comedians,@chrisrock,"RT @SarahKSilverman: When a plane crashes, air travel becomes exponentially safer bc of the lessons learned. But 1 mass shooting after ano…" +11/07/2017,Comedians,@chrisrock,RT @mindykaling: Who needs an AR-15? Asking practically not emotionally. Like are you overrun by violent deer? Until the Purge is legal I d… +11/07/2017,Comedians,@chrisrock,RT @RealGilbert: Where do money orders come from? The Check Republic. I apologize and I.O.U. a better joke. +11/04/2017,Comedians,@chrisrock,"ICYMI: ""Deshaun Watson’s out for the year torn ACL. To bad there aren’t any Mobil quarterbacks available to take hi… https://t.co/Y0rCW6zBSJ" +11/02/2017,Comedians,@chrisrock,Deshaun Watson’s out for the year torn ACL. To bad there aren’t any Mobil quarterbacks available to take his place. https://t.co/8mL0O7nJQ3 +11/02/2017,Comedians,@chrisrock,RT @BrianReganComic: I expect “a lot of credit” will be given at the end of the #WorldSeries! #ThisTeam #EarnHistory @MLB https://t.co/C73R… +11/02/2017,Comedians,@chrisrock,RT @realjeffreyross: Does anyone know what time Game 8 starts tomorrow ? #WorldSeries +11/01/2017,Comedians,@chrisrock,"RT @TheDailyShow: Tonight at 11/10c, Sean Hannity reacts to Mueller’s indictments by delivering a master class in bullshit. https://t.co/AR…" +10/31/2017,Comedians,@chrisrock,"RT @BrianReganComic: With #WorldSeries happening, here are my thoughts on “Must Win” games from a @Letterman appearance. #ThisTeam #EarnHi…" +10/30/2017,Comedians,@chrisrock,RT @Megalyn: Wish I could tweet this a million times. Thank you @Vote_Richardson for articulating the truth to power. 👊🏾 https://t.co/eELn4… +10/30/2017,Comedians,@chrisrock,RT @HartPerez: Last night @DaveChappelle dropped in on @ChrisRock's show. Chappelle and Rock went on to share the stage for two hours. Unbe… +10/21/2017,Comedians,@chrisrock,"ICYMI: ""Insecure in the House. Amanda seales so funny . Total blackout tour. DC first show was 🔥 three more to go.… https://t.co/SO8UE0Q3NL" +10/20/2017,Comedians,@chrisrock,RT @MGMNatlHarbor: We are excited to have @chrisrock perform the first of his four sold-out shows tonight at The Theater. #LIVEatMGM https:… +10/19/2017,Comedians,@chrisrock,Insecure in the House. Amanda seales so funny . Total blackout tour. DC first show was 🔥 three more to go. https://t.co/78xElGdKoU +10/17/2017,Comedians,@chrisrock,RT @aparnapkin: white noise machines are gonna need a new name now that we have an actual one in office +10/17/2017,Comedians,@chrisrock,RT @Megalyn: This.... rightordoyle's photo https://t.co/uBDgi8Ydut +10/16/2017,Comedians,@chrisrock,RT @Megalyn: Required viewing. https://t.co/lfamlGwPaF +10/14/2017,Comedians,@chrisrock,"ICYMI: ""It's time for a new voice."" https://t.co/plfnCyhYsZ" +10/14/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Let's look on the bright side-- This last nine months is the longest Trump has gone without criticizing the President… +10/13/2017,Comedians,@chrisrock,RT @robinthede: I humbly request that you watch the premiere of @TheRundownBET tonight at 11p/10c and live tweet with us using the hashtag… +10/12/2017,Comedians,@chrisrock,"RT @VanJones68: What can we do to defend decency & democracy in America? 4 answers, check out my new book #BeyondtheMessyTruth here: https:…" +10/12/2017,Comedians,@chrisrock,It's time for a new voice. https://t.co/BadwVY7guV +10/08/2017,Comedians,@chrisrock,RT @ericandre: I’m opening up a brunch restaurant called Planet of the Crepes. +10/08/2017,Comedians,@chrisrock,Oslo was insane last night. Amsterdam tonight the tour continues. Can't wait. +10/04/2017,Comedians,@chrisrock,"ICYMI: ""Crazy day . See your heroes perform live while you have the chance your never know. Petty damn."" https://t.co/y719w7X8qU" +10/03/2017,Comedians,@chrisrock,RT @itsgabrielleu: This https://t.co/C2orAslQrw +10/03/2017,Comedians,@chrisrock,Crazy day . See your heroes perform live while you have the chance your never know. Petty damn. https://t.co/aVWp2vaRjQ +10/02/2017,Comedians,@chrisrock,"RT @rihanna: Saying a prayer for all the victims & their loved ones, also for the residents & visitors of Las Vegas! This was a horrific ac…" +09/25/2017,Comedians,@chrisrock,"Support @GOODPlusFdn & +@TheSMHF w/ me. Buy front-row tix on +@ifonly to an upcoming show of mine & meet me after! +https://t.co/OwWLwe7JgD" +09/25/2017,Comedians,@chrisrock,"ICYMI: ""It's only a privilege to play sports if you suck at sports. It is a privilege to be born a white child in A… https://t.co/CD5UEznI0s" +09/24/2017,Comedians,@chrisrock,RT @JoyAnnReid: Reminder: the president of the United States thinks protest is perfectly fine for neo-Nazis but a firing offense for black… +09/24/2017,Comedians,@chrisrock,RT @questlove: For real I'm not even a sports dude (still love you Philly) can we still remember Puerto Rico is STILL w/o electricity? +09/24/2017,Comedians,@chrisrock,RT @itsgabrielleu: This https://t.co/VXZEjQEDdU +09/23/2017,Comedians,@chrisrock,It's only a privilege to play sports if you suck at sports. It is a privilege to be born a white child in America t… https://t.co/WIZHWRw3J8 +09/22/2017,Comedians,@chrisrock,"ICYMI: ""Kids don't want to share you have to make them."" https://t.co/dbinp2LMfW" +09/20/2017,Comedians,@chrisrock,Kids don't want to share you have to make them. https://t.co/uxlrECrx5e +09/18/2017,Comedians,@chrisrock,"RT @netflix: There, we said it. https://t.co/CIf4LfGWgn" +09/17/2017,Comedians,@chrisrock,"RT @ShadowLeagueTSL: This clip of Max Kellerman speaking on Colin Kaepernick and racial injustice as a whole is a must-watch. +https://t.co/…" +09/16/2017,Comedians,@chrisrock,"ICYMI: ""Crazy year trump is president and the only good movies this year are horror movies . Get out and now Mother… https://t.co/26bpsZG9lj" +09/15/2017,Comedians,@chrisrock,Sorry about that last tweet. 3 great movies this year. Get out / girls trip and now mother. White film is back. +09/15/2017,Comedians,@chrisrock,@cocainenat Your right sorry about that girls trip was pretty good. +09/15/2017,Comedians,@chrisrock,Crazy year trump is president and the only good movies this year are horror movies . Get out and now Mother I just … https://t.co/oVe5oyNrd1 +09/15/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Congrats to Apple for naming their best-ever iPhone after Malcom X. +09/14/2017,Comedians,@chrisrock,"ICYMI: ""Never forget."" https://t.co/SG4dbKoCqP" +09/12/2017,Comedians,@chrisrock,Never forget. https://t.co/Wzb1UhKRS4 +09/12/2017,Comedians,@chrisrock,@DuaneFinleyMMA @GusSandberg @_naelaa @NikBos @GregSain Chapelle killing me softly is better than all of them. +09/10/2017,Comedians,@chrisrock,@Lewis_Lanee You can do it. +09/10/2017,Comedians,@chrisrock,RT @aliwong: Congrats Kamau!!!! https://t.co/idYOkAYyH5 +09/10/2017,Comedians,@chrisrock,RT @cthagod: Fuck is Randy Moss talking about?? Protesting Racism Makes You A Loser now? LOL. I know for a fact i'm living in the Matrix. +09/10/2017,Comedians,@chrisrock,@DavidSpade How about the smelless driver. +09/10/2017,Comedians,@chrisrock,RT @DavidSpade: Uber is soon going to be testing the driverless car. Lets first test the talkless driver and see how that goes +09/10/2017,Comedians,@chrisrock,"RT @MrGeorgeWallace: Shout out to the top 5 keys in the world, car, piano, Florida, Alicia and Mon." +09/10/2017,Comedians,@chrisrock,"ICYMI: ""Chicago theater 4 nights. Special guest the great Hannibal Buress ripped it tonight."" https://t.co/mDanlYHY1i" +09/09/2017,Comedians,@chrisrock,@marlena9966 Your welcomed +09/09/2017,Comedians,@chrisrock,Chicago theater 4 nights. Special guest the great Hannibal Buress ripped it tonight. https://t.co/qgrakB5yZw +09/08/2017,Comedians,@chrisrock,@CadillacGabe @hannibalburess Thanks +09/08/2017,Comedians,@chrisrock,@marlena9966 Thanks +09/06/2017,Comedians,@chrisrock,"ICYMI: ""Today's the birthday of the great Beyonce Knowles and schools are closed all over America. Thank you Presid… https://t.co/qCMswhpyUh" +09/06/2017,Comedians,@chrisrock,One night wasn’t enough... 4 shows in Chi town starting Thursday. #TotalBlackOutTour click https://t.co/OcHssAcuYx… https://t.co/YKh52jlnZR +09/05/2017,Comedians,@chrisrock,"RT @BarackObama: To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co…" +09/04/2017,Comedians,@chrisrock,"RT @TheDweck: Just passed by a ""Welcome to America"" sign at airport customs and it felt like when someone forgets to take down a Christmas…" +09/04/2017,Comedians,@chrisrock,RT @realjeffreyross: Legend #JoanRivers died 3 yrs ago today. Retweet if you'd like to see this great American's facelift on the $50 bill.… +09/04/2017,Comedians,@chrisrock,Today's the birthday of the great Beyonce Knowles and schools are closed all over America. Thank you President Trum… https://t.co/cV0WEWipOM +09/01/2017,Comedians,@chrisrock,RT @RealGilbert: RIP to the very funny Shelly Berman https://t.co/dBzeKprNNw +08/26/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Tonight Conor McGregor will make history by becoming the highest paid comedian of all time. +08/26/2017,Comedians,@chrisrock,RT @NAACP: Pardon of Arpaio is explicit embrace of the racist policing practices that leave communities fearful of very ppl who should prot… +08/26/2017,Comedians,@chrisrock,RT @TVietor08: Trump's presidency is defined by having no policy vision except opposing everything Obama did and being as vindictive as pos… +08/26/2017,Comedians,@chrisrock,"RT @KenTremendous: The President is a 71 year-old racist who, during a hurricane, pardoned an 85 year-old racist sheriff who'd been convict…" +08/24/2017,Comedians,@chrisrock,"RT @aparnapkin: DID U KNO: for all we're paying for trump's security, we're paying far more for his insecurity" +08/24/2017,Comedians,@chrisrock,"RT @nealbrennan: The ""Blacks for Trump"" guy looks like every open-micer who's ever tried to hand me a business card." +08/21/2017,Comedians,@chrisrock,RT @TheEllenShow: I just invested in an eclipse sunglass company. Does anyone know when the next one is? +08/21/2017,Comedians,@chrisrock,RT @aparnapkin: tough day for sunglasses +08/21/2017,Comedians,@chrisrock,RT @ConanOBrien: When the eclipse comes I’m going to borrow the special glasses my wife uses when I’m shirtless. +08/21/2017,Comedians,@chrisrock,RT @DavidSpade: Is it still ok to stare at the moon? Let me know if anything is changed on that front +08/21/2017,Comedians,@chrisrock,RT @MrGeorgeWallace: Dick Gregory and Jerry Lewis in a 12 hour span? That shit happens in threes. I'm rollin' up in bubble wrap and layin'… +08/21/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: No eclipse spoilers please! +08/20/2017,Comedians,@chrisrock,RT @nealbrennan: Trump wouldn’t be President If we’d had spelling bees instead of debates. +08/20/2017,Comedians,@chrisrock,"RT @diddy: On August 21, 2017, the anniversary of Nat Turner's rebellion, there will be a total solar eclipse. + +Are you ready?" +08/20/2017,Comedians,@chrisrock,ICYMI: Here's what I posted yesterday... https://t.co/0jqVrA4pPo +08/19/2017,Comedians,@chrisrock,RT @danieltosh: has anyone thought to line up all our old racist statues to make the border wall +08/19/2017,Comedians,@chrisrock,"RT @anthonyjeselnik: Why tear down statues? Just change all the plaques to read: ""Get a load of this dumb, dead asshole and his bullshit h…" +08/19/2017,Comedians,@chrisrock,I'm not sure this is news but my babies are beautiful. https://t.co/lBoOTD4rj2 +08/19/2017,Comedians,@chrisrock,If you fuck one goat your a goat fucker. https://t.co/JmajYeY9gm +08/18/2017,Comedians,@chrisrock,RT @aparnapkin: Why worry about history being erased when you're so busy repeating it? +08/18/2017,Comedians,@chrisrock,RT @ConanOBrien: I heard the iPhone 15 won't have any ports or jacks or a screen and it will just be a smooth steel ball and finally we'll… +08/17/2017,Comedians,@chrisrock,RT @Sethrogen: The idea that Nazis and people who oppose Nazis are somehow equatable is the most batshit fucking crazy shit I've ever fucki… +08/17/2017,Comedians,@chrisrock,RT @atjeffreyjoseph: Why don't we just put all these confederate statues in a coal mine and make everybody happy? +08/15/2017,Comedians,@chrisrock,"RT @soopervillain: @chrisrock Seriously, how the fuck do you twist yourself up defending THIS https://t.co/a04HfNTkPo" +08/15/2017,Comedians,@chrisrock,If 10 guys thinks it's ok to hang with 1 Nazi then they just became 11 Nazis. Alt right / white supremacist it's just nazis. Fuck Nazis. +08/15/2017,Comedians,@chrisrock,"RT @ianbremmer: ""The world is a dangerous place not because of the people who are evil, but because of the people who don't do anything abo…" +08/15/2017,Comedians,@chrisrock,"RT @KenTremendous: Trump is Ron Burgandy, just repeating whatever Fox and Friends puts on his personal mental teleprompter. https://t.co/SD…" +08/15/2017,Comedians,@chrisrock,RT @aparnapkin: trump is the ghost of racist statue present +08/15/2017,Comedians,@chrisrock,RT @BryanCranston: It felt like @realDonaldTrump read the TelePrompTer message condemning hate groups like a hostage forced to read a state… +08/12/2017,Comedians,@chrisrock,"RT @jemkeegs: @RobRuggio @JuliusGoat @TheGreyKing ""When you're accustomed to privilege, equality looks like discrimination.""" +08/12/2017,Comedians,@chrisrock,RT @JamarNeighbors: Lmaoooo somebody rammed they car into a gang of Nazis 😂😂😂😂😂😂😂😂😂😂😂😂😂😂 That's some shit I'd do. I mean I'd have to get a… +08/10/2017,Comedians,@chrisrock,RT @hannibalburess: Good morning to everyone except for people that ask to take a picture and then start taking a snapchat video. +08/10/2017,Comedians,@chrisrock,RT @ChrisIsDxpe: That Chappelle show Sunday was too fucking lit. Chris Rock was 🔥🔥Arsenio Hall was funny and Jeff Ross was wilding & Chappe… +08/10/2017,Comedians,@chrisrock,@TIME Why +08/09/2017,Comedians,@chrisrock,"ICYMI: ""This is about right."" https://t.co/KosJ9ctXmx" +08/08/2017,Comedians,@chrisrock,https://t.co/n7kbQRJIt1 @PaulyShore 😂🤣😂🤣 +08/08/2017,Comedians,@chrisrock,RT @Benminster: I liked a @YouTube video https://t.co/T4yM1VsPmz Epic rap battle Chris Rock VS. Supahot Fire! +08/08/2017,Comedians,@chrisrock,This is about right. https://t.co/PaSNAsvEZG +08/03/2017,Comedians,@chrisrock,"RT @Kreeah: @Megalyn It's Megalyn Echikunwoke Day! Megalyn played Penny, Theo's sister on The Following. A Serial Killer. Beautiful but Dea…" +08/02/2017,Comedians,@chrisrock,"ICYMI: ""Lunch with my girls Brooklyn style."" https://t.co/qc3GWBph7P" +07/31/2017,Comedians,@chrisrock,Lunch with my girls Brooklyn style. https://t.co/9RLqOZmxtI +07/29/2017,Comedians,@chrisrock,"ICYMI: ""Whitch one of us should run for president."" https://t.co/8oZ9Ge1JxN" +07/27/2017,Comedians,@chrisrock,"RT @HamillHimself: A salute to the 15,000+ transgender patriots now currently serving in the United States Military. #ThankYouLGBT #TransR…" +07/27/2017,Comedians,@chrisrock,Whitch one of us should run for president. https://t.co/49HdIDq1x6 +07/27/2017,Comedians,@chrisrock,RT @TIME: Watch President Obama's message to the 2010 Boy Scout Jamboree https://t.co/mhrz2rcChv https://t.co/kGfF2d2fIy +07/27/2017,Comedians,@chrisrock,RT @nottjmiller: Men are not funny. +07/27/2017,Comedians,@chrisrock,"RT @ConanOBrien: Trump hired Anthony Scaramucci because he thought his tan qualified him as a ""person of color.""" +07/27/2017,Comedians,@chrisrock,RT @Sethrogen: I'm starting to think they don't know what these letters actually stand for. https://t.co/ieznVV5Gio +07/27/2017,Comedians,@chrisrock,"RT @TheEllenShow: We should be grateful to the people who wish to serve, not turn our backs on them. Banning transgender people is hurtful,…" +07/27/2017,Comedians,@chrisrock,"RT @Megalyn: Hey all, so this hasn't gone away. It's only gotten worse as famine tends to if not addressed. Please get involved and share.…" +07/27/2017,Comedians,@chrisrock,RT @Megalyn: Hard to believe that in 2017 20 Million people are facing famine anywhere. There are so many… https://t.co/w7BdbiCCWz +07/20/2017,Comedians,@chrisrock,"RT @RealGilbert: OJ just told the judge ""I would kill to get out of here!"" #ojparole #OJSimpsonParole" +07/18/2017,Comedians,@chrisrock,"RT @JimGaffigan: They say laughter is the best medicine. +And it is +After you’ve received real medicine from a real medical professional." +07/18/2017,Comedians,@chrisrock,RT @cthagod: I just want to know if R. Kelly let those young ladies eat today. +07/18/2017,Comedians,@chrisrock,"ICYMI: ""The great Martin Landu has passed away. He's great in so many movies but Crimes and Misdemeanors is his bes… https://t.co/N58BNqHDhS" +07/18/2017,Comedians,@chrisrock,"ICYMI: ""Summer 17."" https://t.co/ExCjSIjlGA" +12/31/2009,Comedians,@JerrySeinfield,Check my website for new standup dates! +12/31/2009,Comedians,@JerrySeinfield,Just getting started on Twitter. Thanks to all you faithfuls. +07/02/2018,Comedians,@therealroseanne,https://t.co/Ed9mhrqnca +07/02/2018,Comedians,@therealroseanne,"RT @ASJBaloch: An amazing message from Iran! + +The people of #Iran and #Israel are not enemies. + +#IranRegimeChange #FreeIran https://t.co/Qf…" +07/02/2018,Comedians,@therealroseanne,follow: @HeshmatAlavi #FREEIRAN2018 +07/02/2018,Comedians,@therealroseanne,@Potus cancelled the immoral Iran deal of Obama and Jarrett and the result is the human beings are overthrowing the… https://t.co/BMkUKXQuQ4 +07/01/2018,Comedians,@therealroseanne,"I discuss Torah, Zohar and mind-control with @RabbiShmuley on his podcast: https://t.co/mC5KKjnyxn" +06/24/2018,Comedians,@therealroseanne,Podcast from day after show cancelation. Written transcript can be found in my pinned tweet: https://t.co/EzMd929juU +06/24/2018,Comedians,@therealroseanne,My interview with @jpostjewish the day after the show cancelation: https://t.co/8tCwfsDVGP +06/20/2018,Comedians,@therealroseanne,RT @fanimate: For @TheJuanWilliams to defend Peter Fonda and say it was a poorly worded tweet is inexcusable. @FoxNews to fire him! +06/20/2018,Comedians,@therealroseanne,@fanimate @RosennesWorld @TheJuanWilliams @FoxNews he slimed me tho +06/20/2018,Comedians,@therealroseanne,"RT @John_KissMyBot: Trump Signed A Executive Order To Keep Illegal Alien Families Together + +BECAUSE Chuck Schumer And The Democrats In Con…" +06/20/2018,Comedians,@therealroseanne,RT @HAGOODMANAUTHOR: The United States government placed an unknown number of Central American migrant children into the custody of human t… +06/20/2018,Comedians,@therealroseanne,"RT @canarymission: .@OhioState student senator Shukri Ahmed promised to fight for ""transparency"" at OSU. She then voted for a secret ballot…" +06/20/2018,Comedians,@therealroseanne,RT @tracybeanz: I love the comments on this tweet. The world is waking up. https://t.co/QIJGnNeBcx +06/20/2018,Comedians,@therealroseanne,RT @Jtruzmah: Sons of Zawari launch incendiary balloons from the Northern #Gaza Strip into #Israel earlier today. https://t.co/eKCfHAgl2a +06/20/2018,Comedians,@therealroseanne,RT @canarymission: .@OhioState student senator Paige Bennett sponsored a BDS resolution where 38 people spoke against and 8 spoke in favor.… +06/20/2018,Comedians,@therealroseanne,RT @TrumpAnon61233: @katiet121 @therealroseanne @elenochle @TheJordanRachel @Jordan_Sather_ @1ambecauseweare @jennajameson @Annakhait @kate… +06/20/2018,Comedians,@therealroseanne,RT @katiet121: @elenochle @TheJordanRachel @Jordan_Sather_ @1ambecauseweare @therealroseanne @jennajameson @Annakhait @kateordie @FedupWith… +06/20/2018,Comedians,@therealroseanne,@charliekirk11 they are. +06/20/2018,Comedians,@therealroseanne,RT @Joshnewcomb4: @gramma61 @lisabarone46 @charliekirk11 Trafficking is cruel and enabled because democrats kept the border wide open knowi… +06/20/2018,Comedians,@therealroseanne,@chessienda @jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 you're… https://t.co/Wo6tBLaKtw +06/20/2018,Comedians,@therealroseanne,@JeaneHasSpoken @justbav24 they r compromised. +06/20/2018,Comedians,@therealroseanne,@JimmySmagula @libbyannehess @Amirica24 @lisa63williams classist pretending to be against racism. +06/20/2018,Comedians,@therealroseanne,"RT @seanhannity: ***BREAKING*** @realDonaldTrump will sign executive order to ""keep families together""... https://t.co/iGw2t9OF7o" +06/20/2018,Comedians,@therealroseanne,RT @Gingrich_of_PA: Oh snap! Death of a talking point caught live on Fox #ObamaCages https://t.co/Qaa0MtxWMB +06/20/2018,Comedians,@therealroseanne,"RT @therealcornett: 🚨Video footage surfaces from 2014 showing that under Obama, family separations and holding centers were EXACTLY the sam…" +06/20/2018,Comedians,@therealroseanne,"RT @1776Stonewall: Hannity tonight will show pics, videos and articles proving that the separations at border where happening during Obama…" +06/20/2018,Comedians,@therealroseanne,RT @smoss319: President Trump signs executive order to end family separations. We will still have zero tolerance for illegal entry at the b… +06/20/2018,Comedians,@therealroseanne,"RT @ScottPresler: President Trump signed an executive order keeping illegal alien families together. + +Here's yet another instance of Trump…" +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: QED https://t.co/w0RXSy9cqo +06/20/2018,Comedians,@therealroseanne,"RT @DiamondandSilk: Amazing. ....Trump Finishes Speech, Walks Straight Over to American Flag, Then Let’s His True Patriot Come Out. https:/…" +06/20/2018,Comedians,@therealroseanne,RT @StandWithUs: That time when the #BDS supporting trade union accidentally tweeted a picture of JEWISH refugees from Arab countries and f… +06/20/2018,Comedians,@therealroseanne,i abandoned the left in 2012 after seeing the shocking and vile anti semitism there-LEAVE IF YOU DARE! +06/20/2018,Comedians,@therealroseanne,RT @JackPosobiec: Love trumps hate https://t.co/G644OPUJPF +06/20/2018,Comedians,@therealroseanne,"RT @alfrich_k: WoW!! + +Mark Meadows just name dropped who he believe is: + +Attorney 1 and Attorney 2 + +They work for Trish Anderson in the Of…" +06/20/2018,Comedians,@therealroseanne,RT @WalshFreedom: The men and women of @ICEgov do a thankless job and have disgusting things said about them on a daily basis (like this im… +06/20/2018,Comedians,@therealroseanne,"RT @bennyjohnson: Dear @TwitterSafety & @jack, + +Does being investigated by the Secret Service for multiple kidnapping & rape threats agains…" +06/20/2018,Comedians,@therealroseanne,RT @DiamondandSilk: .@Janefonda's brother @iamfonda needs to be arrested and detained for suggesting that something vile and vicious should… +06/20/2018,Comedians,@therealroseanne,"RT @charliekirk11: Why is no one asking about Obama emailing Hillary on her server? + +🤔" +06/20/2018,Comedians,@therealroseanne,"RT @realDonaldTrump: “FBI texts have revealed anti-Trump Bias.” @FoxNews Big News, but the Fake News doesn’t want to cover. Total corrupti…" +06/20/2018,Comedians,@therealroseanne,RT @Cernovich: “The Flores settlement prohibits the federal government from keeping children in immigration detention — even if they are wi… +06/20/2018,Comedians,@therealroseanne,@Chrissythecraft @libbyannehess @Amirica24 @lisa63williams never-like they never get my hitler picture-they r low info trolls +06/20/2018,Comedians,@therealroseanne,@pusherlovegirl @SiddonsDan @maddow hammy-no tears for kids trafficked thru arizona or out of haiti or libya tho. +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @jessica_vasicek @AngelaSellars7 @therealroseanne @ThankfulToday1 Actually, I'm not making that comparison; ""your"" gov't.…" +06/20/2018,Comedians,@therealroseanne,@libbyannehess @Amirica24 @lisa63williams i compared no one's looks to any animal. +06/20/2018,Comedians,@therealroseanne,@ScottAnthonyUSA @Jeepgrl188 @iamfonda @ICEgov @USBPChief it's hilarious2 C certain Hollywoodys speak against racis… https://t.co/rNFYNTesjf +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 no one needs to ask again if what happened in Germany could happen here. The underlying issue is that… https://t.co/cbFwyXyX9N +06/20/2018,Comedians,@therealroseanne,RT @RealWendyBelle: @therealroseanne Omg I’m do glad you’re back on twitter!! YES!! The revolution will not be televised! +06/20/2018,Comedians,@therealroseanne,RT @JohnnyArgent: @jonbyersphotos @nicholas_wiser @octopusmind141 @therealroseanne @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 YOU us… +06/20/2018,Comedians,@therealroseanne,"RT @wolferkitten: This is beyond TDS, for @iamfonda to say something like that is down-right vile verging on criminal and @SonyPictures is…" +06/20/2018,Comedians,@therealroseanne,@nlitvin @Honeybal yes and so was gaddafi +06/20/2018,Comedians,@therealroseanne,"RT @RepStevenSmith: A white male Hollyweirdo calls two women a ""lying gash,"" with one being ""worse than a cunt"" and suggests another be ""pu…" +06/20/2018,Comedians,@therealroseanne,RT @DonaldJTrumpJr: As an FYI @SonyPictures has a movie with him dropping in a few days. I wonder if they will apply the same rules to @iam… +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @NeverGiveUpWP @JohnnyArgent @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 i have as we say in Uta… https://t.co/DyTOSJlVOx +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @NeverGiveUpWP @JohnnyArgent @therealroseanne @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 When a woman has chutzpah,…" +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @NeverGiveUpWP @JohnnyArgent @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 it's an expression we u… https://t.co/CPqU9M41J3 +06/20/2018,Comedians,@therealroseanne,@jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 Rice lied about the… https://t.co/YwxZwqAC0x +06/20/2018,Comedians,@therealroseanne,@jonbyersphotos @JohnnyArgent @octopusmind141 @626Robyn @PinkPixySprite @DesslynStorm @MARS0411 I said susan rice was a MAN +06/20/2018,Comedians,@therealroseanne,@USMCSgtKnight you need discernment and facts to see it +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I've literally just had a (Greek) salad for lunch. Albeit with lashings of pitta bread. https://t.co/JVhfib1soV +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I'm specifically talking about the children taken from their parents. Totally unnecessary & horribly cruel. https://t.co/U… +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: That's sexist. https://t.co/OhKwa3gq7t +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Scotland would have scored 1000 on this pitch. #ENGvAUS +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Many thanks to Andrew Ridgeley for being such an insufferable dick today - much appreciated! ⁦@GMB⁩ https://t.co/WlxPDHLrme +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: Pathetic behaviour. https://t.co/Wol0UBMuBK +06/20/2018,Comedians,@therealroseanne,RT @piersmorgan: I’ve been exposed to too much Love Island crap - it’s damaged my brain. https://t.co/OMx8jChq6X +06/20/2018,Comedians,@therealroseanne,"RT @piersmorgan: Your feed does, yes. https://t.co/cZc7b67gMF" +06/20/2018,Comedians,@therealroseanne,"@piersmorgan yes, my feed pales in comparison to the great intellectual content of yours." +06/20/2018,Comedians,@therealroseanne,"@Silentlyl0ud_ @iamfonda it's their shame, not mine. I am for the Freedom of Iranian women, unlike the left." +06/20/2018,Comedians,@therealroseanne,@jane_kjane it was cia created-so....it was the original intention perhaps +06/20/2018,Comedians,@therealroseanne,RT @Mamapaws6: @therealroseanne @YouTube https://t.co/MH8BcmsnBW +06/20/2018,Comedians,@therealroseanne,does twitter exist to spread disinformation? +06/20/2018,Comedians,@therealroseanne,RT @bell_bellgon: @RodStryker @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @Donn… +06/20/2018,Comedians,@therealroseanne,RT @USAforPOTUS: @therealroseanne Shalom Israel🇺🇸🇮🇱 https://t.co/jmlOrQoot3 +06/20/2018,Comedians,@therealroseanne,RT @Catheri88706812: @therealroseanne Anyone really wanting to understand what is going on in the Muslim world needs to check out Dr. Zuhdi… +06/20/2018,Comedians,@therealroseanne,@matchpenalty1 it's a new day in saudi arabia tho-catch up. read. +06/20/2018,Comedians,@therealroseanne,"@TheNobby grow a brain, sheep" +06/20/2018,Comedians,@therealroseanne,@Xsquader so you're pro Hezbollah? go away +06/20/2018,Comedians,@therealroseanne,"@StopTrumpRegime get off yours-it's not working, psycho." +06/20/2018,Comedians,@therealroseanne,"@JCookDC that's your feeble minded Imperialist interpretation. stfu,psycho." +06/20/2018,Comedians,@therealroseanne,@RedRebelOfDeath anti semitic +06/20/2018,Comedians,@therealroseanne,@M44023448 suck my balls! enjoy! +06/20/2018,Comedians,@therealroseanne,RT @Alaskan_Gypsy: @therealroseanne I've been alerted to the uprising in Iran as a result of your infamous Tweet! Thank you! It cost you gr… +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: The solution is rather simple. https://t.co/eNfgncBjCm +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: Peter Fonda + +2009: Says Roman Polanski “is not a criminal” Polanski drugged & raped a 13 year old girl & fled the U.S. to…" +06/20/2018,Comedians,@therealroseanne,RT @LionelMedia: Really? https://t.co/8b9q65w5mj +06/20/2018,Comedians,@therealroseanne,My friends are at the KOTEL right now-praying for the complete healing of the world-IRAN is key! Good vs Evil. The time is NOW. +06/20/2018,Comedians,@therealroseanne,@ThomasWictor @realDonaldTrump i trust you too-let's double down now. We can tip the Beast over. +06/20/2018,Comedians,@therealroseanne,why did 23 #cardinals resign under this pope? +06/20/2018,Comedians,@therealroseanne,RT @Lrihendry: @therealroseanne @TwittaChicca ONLY because you dared to show support for President Trump! 63 million Trump supporters were… +06/20/2018,Comedians,@therealroseanne,@JeaneHasSpoken @FactThis1 don't argue w dividers. lets unite and keep on! +06/20/2018,Comedians,@therealroseanne,"@Lrihendry @TwittaChicca I FOUGHT to make sure a decent representation of Trump supporters was included, and knew i… https://t.co/PgtAJun3cV" +06/20/2018,Comedians,@therealroseanne,@PimpingPolitics blaming jewish kids for the holocaust is ok with you tho- +06/20/2018,Comedians,@therealroseanne,@silveraa yes-there are good and bad ppl-in every single race religion and group. +06/20/2018,Comedians,@therealroseanne,"RT @ISurvivior: @therealroseanne They stuck my father in prison and when he came out he was more violent, adopted racist views that are for…" +06/20/2018,Comedians,@therealroseanne,"@TheBestPrezEver that isn't what I said, racist." +06/20/2018,Comedians,@therealroseanne,Follow ME if you want to force our corrupt government to address the issue of child trafficking and what… https://t.co/iAl4XEntVI +06/20/2018,Comedians,@therealroseanne,Do not be divided. Both sides need to work together to stop the abuse of children in our hemisphere NOW. +06/20/2018,Comedians,@therealroseanne,vote out ALL reps compromised by human trafficking-both parties r compromised by it. Don't be fooled-it's Republica… https://t.co/MZAF4DJk5Y +06/20/2018,Comedians,@therealroseanne,Take the RED PILL and investigate who is behind Child Trafficking at our southern border. Do not allow the Left to control this narrative. +06/20/2018,Comedians,@therealroseanne,RT @Doc_FLEO: @therealroseanne can I please have this retweeted. Thanks! 🇺🇸 https://t.co/uohjwosRbD +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: THIS IS WHY CHILDREN ARE TAKEN FROM ADULTS (""parents"") AT THE BORDER. THIS +And people want to fight for these sick peop…" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: How can anyone have a problem with properly vetting these alleged families if it means saving a child? + +https://t.co/Z…" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: Children like Maria Elena, and younger, are part of those taken from their ""parents"" People who have zero documentation…" +06/20/2018,Comedians,@therealroseanne,"RT @RealJamesWoods: Simple. No DNA match, prison sentence. https://t.co/OkvfnRs3x0" +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: Under Hillary Clinton's State Dept. +Trafficking of Person's Report 2012 + +Knowing that there was an issue with trafficki…" +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: US Agencies Bust International Sex Trafficking Ring + +Group brought Tollywood and Kannada actresses into America to Indian…" +06/20/2018,Comedians,@therealroseanne,RT @kromst: @RodStryker @Bingosmurf @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU… +06/20/2018,Comedians,@therealroseanne,@RodStryker @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @DonnaWR8… https://t.co/WqTPmXPOSp +06/20/2018,Comedians,@therealroseanne,"RT @JeaneHasSpoken: @therealroseanne @OpinionOnion7 Strange as it sounds, our student enrollment is down and they claim it's due to the eco…" +06/20/2018,Comedians,@therealroseanne,"RT @SiddonsDan: .@maddow is verklempt w/#FakeOutrage meltdown + +Meanwhile The ""Three Strikes Law"" under Clinton sent 2 million American men…" +06/20/2018,Comedians,@therealroseanne,"RT @USAloveGOD: @glo_mojo Report this tweet immediately if you care about children! #PeterHenryFonda is promoting child kidnapping, hate,…" +06/20/2018,Comedians,@therealroseanne,@DesslynStorm @626Robyn @MARS0411 @JohnnyArgent hitler in drag isn't instantly recognizable? you're an idiot. +06/20/2018,Comedians,@therealroseanne,RT @626Robyn: @PinkPixySprite @JohnnyArgent @therealroseanne @DesslynStorm @MARS0411 Agree..she was pointing out her involvement with the M… +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @626Robyn @PinkPixySprite @therealroseanne @DesslynStorm @MARS0411 No doubt about it, Robyn... She regrets her word choic…" +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne #DeepState & #FakeNews MSM threatened to take away everything Roseanne created, but she didn't cower. + +Her…" +06/20/2018,Comedians,@therealroseanne,@elenochle @momofmonday of course! i love u! +06/20/2018,Comedians,@therealroseanne,we r the army of truth-wwg1wga +06/20/2018,Comedians,@therealroseanne,@WilliPete @HarmonyRachell @WWG1WGA_PATRIOT @elenochle @satya123v @TheJordanRachel @jennajameson @Annakhait… https://t.co/svGRvF979N +06/20/2018,Comedians,@therealroseanne,RT @RodStryker: @therealroseanne @charliekirk11 @MikeTokes @RealCandaceO @RubyRockstar333 @RealMattCouch @IWillRedPillU @DonnaWR8 @MAGANina… +06/20/2018,Comedians,@therealroseanne,i love u all so much! let's keep on! +06/20/2018,Comedians,@therealroseanne,@elenochle @momofmonday u do great work-don't get off track! +06/20/2018,Comedians,@therealroseanne,RT @OpinionOnion7: @therealroseanne I totally agree! I flip homes for investors in LA County and its very sad to see many lose their homes.… +06/20/2018,Comedians,@therealroseanne,@HarmonyRachell @WWG1WGA_PATRIOT @elenochle @satya123v @TheJordanRachel @jennajameson @Annakhait @katiet121… https://t.co/rnLgNRjvHf +06/20/2018,Comedians,@therealroseanne,@OpinionOnion7 i advocated for forgiveness for student loans too-i thought it would help to revive the housing market. +06/20/2018,Comedians,@therealroseanne,"RT @ScotchJLK: We would love to see, and would retweet the heck out of 5 minute vignettes: ""Rosie on the Couch"". Guest stars, monologues, a…" +06/20/2018,Comedians,@therealroseanne,@ScotchJLK you will be surprised very soon!! +06/20/2018,Comedians,@therealroseanne,"@Debradelai @gymbomom2 oh, he has a penis so it's ok to make fun of HItler." +06/20/2018,Comedians,@therealroseanne,"@granolamite @Amirica24 what exactly about Q is 'doofus""? Interested in your analysis. thanks" +06/20/2018,Comedians,@therealroseanne,"@dedreb @Amirica24 also, everyone on the left is so 'intelligent', they have few political references." +06/20/2018,Comedians,@therealroseanne,"@dedreb @Amirica24 yes, because most americans know nothing about Iran deal, capitalism, class system or anti semit… https://t.co/Oko7Xxn19S" +06/20/2018,Comedians,@therealroseanne,RT @tatobin2: @bhobunny @wfraser60 @therealroseanne @RickAnderson The Trump Administration has not separated children from their parents. T… +06/20/2018,Comedians,@therealroseanne,Occupy wall street got pissed at me bc I advocated for debt forgiveness. they preferred to ask ppl 2 finance a scam… https://t.co/h4noMbOhVq +06/20/2018,Comedians,@therealroseanne,@BeeBeeBeeLeaves @1TaxedOutSista @GREENESJ333 @robwrog @Fulcrum__News intellectual animals who survived inhuman deg… https://t.co/KhKX9BcFok +06/20/2018,Comedians,@therealroseanne,RT @GREENESJ333: @DeplorableGoldn @therealroseanne @redneckowl @robwrog @Fulcrum__News @POTUS They lied to us. It was a huge propaganda cam… +06/20/2018,Comedians,@therealroseanne,@GREENESJ333 @DeplorableGoldn @redneckowl @robwrog @Fulcrum__News @POTUS as they tried to screw Israeli elections w… https://t.co/ErLcLiraWa +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne MK ULTRA will not work on #FreeThinkers! + +Once you see the TRUTH you cannot unsee it. + +We are LIBERATED a…" +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @Amirica24 @therealroseanne Shall we be explaining the Book of Esther, next? Iran is the largest state sponsor of terror a…" +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @Amirica24 @therealroseanne ""The Iran deal was never about prevention of nuke device. It was a huge money laundering opera…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: Also Iowa. + +That's why I'm one-eighth Santee Sioux. + +Great-Grandpa had a very young Sioux maid, and everybody lied about…" +06/20/2018,Comedians,@therealroseanne,RT @elenochle: MONDAY JUNE 18TH NEWS BLAST @TheJordanRachel @Jordan_Sather_ @therealroseanne @jennajameson @Annakhait @katiet121 @1ambecaus… +06/20/2018,Comedians,@therealroseanne,@LJT_is_me i'm passionate about children because I'm human +06/20/2018,Comedians,@therealroseanne,RT @LJT_is_me: I didn't know..That explains why you have always been so passionate about this. I need to learn more. https://t.co/QAtf4QcI3x +06/20/2018,Comedians,@therealroseanne,"RT @GREENESJ333: @therealroseanne @redneckowl @robwrog @Fulcrum__News Yes, the information has been out there all along but so has the msm…" +06/20/2018,Comedians,@therealroseanne,"RT @wfraser60: @RickAnderson What a crock of shit, 90% of these children are unaccompanied, the rest god only knows who they are, they are…" +06/20/2018,Comedians,@therealroseanne,trafficked children are used as domestic workers. This happened in Utah when I was a kid-60% of native american kid… https://t.co/4gfSAJsapG +06/20/2018,Comedians,@therealroseanne,"RT @XluvnuX: @ThomasWictor They wonder why their tactics no longer work. Anyone who refuses see through this crap, is almost complicit at…" +06/20/2018,Comedians,@therealroseanne,"RT @mangelaron: @ThomasWictor @SavtheRepublic their fake Russia-Trump collusion, it's falling down, @realDonaldTrump obstruction of justice…" +06/20/2018,Comedians,@therealroseanne,RT @RettCopple: @ThomasWictor The infuriating part of all this is the constant and organized propaganda campaign comparing the US to Nazi G… +06/20/2018,Comedians,@therealroseanne,"RT @ToddKrieger1: @ThomasWictor They have never intended to actually help children, and never will. The Trump DACA legislation could be a g…" +06/20/2018,Comedians,@therealroseanne,THERE'S TRUTH AND THERE'S DISINFO-THERE IS A WAR ON FOR YOUR MIND. don't surrender bc you won't survive. +06/20/2018,Comedians,@therealroseanne,A Jew making fun of Hitler is now assumed to be 'racist'! HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA +06/20/2018,Comedians,@therealroseanne,RT @SaRaAshcraft: @SiddonsDan @therealroseanne @realDonaldTrump That is one of my favorites. So is this: https://t.co/ZRQLBD0AJG +06/20/2018,Comedians,@therealroseanne,"RT @KathySoltani: @therealroseanne On behalf of my Iranian family, I thank you." +06/20/2018,Comedians,@therealroseanne,"RT @MagniFieri: @therealroseanne Thank you for not standing down. +Thank you for not staying silent. + +The Iranian Regime is a terror organi…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: You're a better person than me, because I wasn't shocked. + +The only three people in the world I trust to never betray me…" +06/20/2018,Comedians,@therealroseanne,RT @libbyannehess: @therealroseanne Don't give these negative trolls the time of day. Block as soon as you see them. They can't handle the… +06/20/2018,Comedians,@therealroseanne,@redneckowl @GREENESJ333 @robwrog @Fulcrum__News they lack the references to understand my tweet-they are so stupid… https://t.co/qWp760NGz1 +06/20/2018,Comedians,@therealroseanne,"@1TaxedOutSista @GREENESJ333 @robwrog @Fulcrum__News it was about her politics, not her looks, genius." +06/20/2018,Comedians,@therealroseanne,@SistaCal @GREENESJ333 @robwrog @Fulcrum__News don't be upset that I ridiculed your hero. +06/20/2018,Comedians,@therealroseanne,@Oompaqueen @GREENESJ333 @robwrog @Fulcrum__News you can do your own research-it's all there. +06/20/2018,Comedians,@therealroseanne,RT @MrNashvilleTalk: @therealroseanne Exactly. Read up on it. People don’t do their homework and are so easily swayed. When our guards are… +06/20/2018,Comedians,@therealroseanne,"RT @rockriver_: @dsade2 @therealroseanne @RealCandaceO Yes, as a descendant, I found the holocaust references very ""offensive"". For starte…" +06/20/2018,Comedians,@therealroseanne,I was saddened & shocked that ppl who knew me 4 years accused me of being a racist 4 political points. I oppose cor… https://t.co/EZiRTeKjki +06/20/2018,Comedians,@therealroseanne,"I've corrected my mistake-which was to speak against an immoral regime-Iran, which throws gays off buildings & exec… https://t.co/WsJTGqzVrJ" +06/20/2018,Comedians,@therealroseanne,@Amirica24 i am sad that ppl like you lack the intellectual references to understand my tweet. It was not a racial… https://t.co/DpR0BQwulS +06/20/2018,Comedians,@therealroseanne,@fakenoooz i apologized to ppl who lacked the references to understand my tweet. bye! +06/20/2018,Comedians,@therealroseanne,RT @AyesHavit: @therealroseanne https://t.co/mtlL1tjEDr Pedophilia and Slavery is the product of those who do nothing and say nothing. Poli… +06/20/2018,Comedians,@therealroseanne,@dmoyeweirdnews huff post is an anti semitic rag. gtfo +06/20/2018,Comedians,@therealroseanne,@PossieElizabeth learn about reading comprehension. +06/20/2018,Comedians,@therealroseanne,"RT @jerrycalvert76: @therealroseanne Roseanne, if it's a show you wanted, well, you already did that, and better than most ever will! And n…" +06/20/2018,Comedians,@therealroseanne,"@Romideol it wasn't racist, moron-it was about a murderous Iranian regime. I'm not as stupid as you are." +06/20/2018,Comedians,@therealroseanne,"RT @JohnnyArgent: @DesslynStorm @626Robyn @MARS0411 @therealroseanne You DO know that photo shoot was for a Jewish magazine, Right? HEEB, a…" +06/20/2018,Comedians,@therealroseanne,"RT @shawnsteel1: Rescued Migrant Woman Was Not Mother of Children She Brought Across Border + +Does anyone care? + +It’s called Human Trafficki…" +06/20/2018,Comedians,@therealroseanne,"RT @LionelMedia: The question that no one ever asks is whether something is worthy of a top security clearance. Stated differently, what be…" +06/20/2018,Comedians,@therealroseanne,RT @RealJamesWoods: So sad. #SanFrancisco https://t.co/pdMbuN3ATH +06/20/2018,Comedians,@therealroseanne,@thecjpearson @AFreeBlackMan they are not brought here by parents! #Coyotes +06/20/2018,Comedians,@therealroseanne,"RT @Education4Libs: Racism didn’t work. +Sexism didn’t work. +Rigging the election didn’t work. +Russia didn’t work. +Gun control didn’t work.…" +06/20/2018,Comedians,@therealroseanne,"RT @AuthorAnnBaker: @ChadPergram You've got to ask yourself, why are these people so desperate to have 2k children, some that are being acc…" +06/20/2018,Comedians,@therealroseanne,RT @Thomas1774Paine: Fired-Up Gowdy scorches Comey in blistering opening statement at IG hearing https://t.co/SvSuhecotd +06/20/2018,Comedians,@therealroseanne,"RT @AmyMek: “Pick the target, freeze it, personalize it, & polarize it” Cut off the support network & isolate the target from sympathy. Go…" +06/20/2018,Comedians,@therealroseanne,"RT @canarymission: After @ucla refuses 2 prosecute violent disruptors of pro-Israel event, students pursue justice w/ LAPD. “This case is a…" +06/20/2018,Comedians,@therealroseanne,@VLPRESL and most have poorly paid staff too +06/20/2018,Comedians,@therealroseanne,RT @AFreeBlackMan: President Trump should test the sincerity of the media on this immigration issue. Pardon Michael Flynn tomorrow. If the… +06/20/2018,Comedians,@therealroseanne,"RT @HillelNeuer: Dear @UNHumanRights Chief Zeid: +Hamas just fired over 45 rockets last night at southern Israeli communities. I support Pal…" +06/20/2018,Comedians,@therealroseanne,the mid terms are so important! VOTE OUT ALL PRO-TRAFFICKING PPL! STUDY THIS ISSUE DO NOT BE FOOLED! KNOW WHAT IS REALLY HAPPENING! +06/20/2018,Comedians,@therealroseanne,"RT @AnOpenSecret: Pedophile Crackdown In Australia Stops ‘Hundreds’ Of Child Predators At Airports + +Sounds like a great idea for the U.S.A…" +06/20/2018,Comedians,@therealroseanne,"RT @TT45Pac: Bi-Polar Acting🏆 + +I guess he thinks his base is really stupid. +I know they are not. +Research people. +2008,2009,2010, 2011, 20…" +06/20/2018,Comedians,@therealroseanne,"RT @NabeelAzeezDXB: 🤔🤔🤔 Thoughts, @maddow? - More Than 2,300 Suspected Online Child Sex Offenders Arrested During Operation “Broken Heart”…" +06/20/2018,Comedians,@therealroseanne,"RT @SiddonsDan: Hillary there has never been anything like this. You get a subpoena, and after getting the subpoena you delete 33,000 email…" +06/20/2018,Comedians,@therealroseanne,@rnlynn1958 @michelle11502 G0D is working thru everyone these days-it's amazing to witness! +06/20/2018,Comedians,@therealroseanne,RT @ElderLansing: The new Buzz phrase used among Black Libnuts is that black conservatives have “sold our souls” because we support POTUS T… +06/20/2018,Comedians,@therealroseanne,RT @dsade2: @therealroseanne @RealCandaceO Do you find these Concentration Camp comparisons as offensive as I do? Rampant Anti-Semitism by… +06/20/2018,Comedians,@therealroseanne,"RT @Cernovich: A man stops at the border with an underage boy or girl: ""This is my child."" + +They have no paperwork or proof of this. + +Do yo…" +06/20/2018,Comedians,@therealroseanne,"RT @_ImperatorRex_: 10. They were all so certain Clinton would win, they lost their minds. + +Justice is coming. + +#MAGA + +The end." +06/20/2018,Comedians,@therealroseanne,"RT @LuetkeRachel: @therealroseanne @RealCandaceO lots of arrests and resignations and suicides .... think ppl + +..... Listen it's real sim…" +06/20/2018,Comedians,@therealroseanne,"RT @NBCchansen: If the left cares so much about children, then why has there been zero coverage of Operation Broken Heart? #Qanon #Pedogate…" +06/20/2018,Comedians,@therealroseanne,"RT @ThomasWictor: GUESS WHAT? + +Tourism in San Francisco is WAY DOWN. + +It turns out that people don't like being mugged, and they don't like…" +06/20/2018,Comedians,@therealroseanne,RT @DRUDGE_REPORT: Bill Clinton 'son' slams former president for showing compassion for immigrant children but 'abandoning his own'... +06/20/2018,Comedians,@therealroseanne,"RT @michaelbeatty3: HEARTBREAKING +Rachel Maddow breaks down while explaining late term abortion procedures. +She really cares about kids htt…" +07/01/2018,Comedians,@TheLewisBlack,RT @Ellisonx: Happy Canada Day @TheLewisBlack !!! https://t.co/dz16VTEpek +06/30/2018,Comedians,@TheLewisBlack,June 29 at the West Bank Cafe celebrating its opening forty years ago.Its been more than a restaurant to so many of… https://t.co/CZMTpZg1H5 +06/27/2018,Comedians,@TheLewisBlack,RT @TonyNocerino: @TheLewisBlack I found you at Disneyland https://t.co/EJkjoAM1Zi +06/26/2018,Comedians,@TheLewisBlack,"🇺🇸 Feeling Red, White, and Screwed? Express yourself in these red, white, and blue items for one-fourth off through… https://t.co/GI2vI86oUA" +06/25/2018,Comedians,@TheLewisBlack,"💢NEW show on sale to fan club members NOW!!! Sept 22 at @ColonialKeene in Keene NH. Fan Club Seats in first 4 rows,… https://t.co/2sHNE2EqvI" +06/23/2018,Comedians,@TheLewisBlack,Happy #NationalHydrationDay 💦 https://t.co/8QszeiAKSB +06/20/2018,Comedians,@TheLewisBlack,"RT @Brandonsbuddz: Happy 3rd Anniversary of Disney/Pixar's #InsideOut. This movie came out in theaters on June 19th, 2015. Featuring the vo…" +06/19/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: 2 wks ago he said Canada burnt down DC. He seriously thought that. Apologies Canada. Ur Crown Royal is delicious n Ban… +06/19/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Oh for Christ's sake. Most ppl dont wanna take their own kid on a long plane ride. Nobody's smuggling someone else's 2… +06/19/2018,Comedians,@TheLewisBlack,What we have been doing at the Border. Separating children from their parents is Indefensible. No set up. No pun… https://t.co/tEyDGJfjVY +06/17/2018,Comedians,@TheLewisBlack,A Happy Father's Day to my very happy father and all you other fathers too. https://t.co/2Um0ERmm94 +06/15/2018,Comedians,@TheLewisBlack,RT @TheDailyShow: Happy Friday! Here's a @TheLewisBlack outtake. #BetweenTheScenes https://t.co/V87hoD8To8 +06/14/2018,Comedians,@TheLewisBlack,"ICYMI: Lewis Black sounds off about the extreme safety measures used to handle mass shootings in U.S. schools, from… https://t.co/OT6RFOn3z3" +06/13/2018,Comedians,@TheLewisBlack,"TUNE IN TONIGHT!!! (Wed, June 13) for a hilarious New Back In Black segment on @TheDailyShow ​on @ComedyCentral, 11… https://t.co/AtyJlluMuo" +06/13/2018,Comedians,@TheLewisBlack,"For those of you who are fans of my parents, I was with them yesterday. They say hi. https://t.co/yyJmFLNhvq" +06/12/2018,Comedians,@TheLewisBlack,🤬 Mad about 👔 Dads & 🎓 Grads Bobblehead Sale - Dad doesn't need another stupid tie & who the hell knows what a Grad… https://t.co/qEFql0I85Y +06/12/2018,Comedians,@TheLewisBlack,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/09/2018,Comedians,@TheLewisBlack,"RT @ParamountHV: Grammy Award-winning comedian, @TheLewisBlack is coming to the Paramount in September! https://t.co/xDczxXFe1E" +06/09/2018,Comedians,@TheLewisBlack,This is a little late but I wanted to extend the moment. Congratulations to the Capitals. Thanks for a triumphant… https://t.co/MErbjQpAo5 +06/06/2018,Comedians,@TheLewisBlack,Looking forward to it. https://t.co/cq71WC3FHX +06/06/2018,Comedians,@TheLewisBlack,Thanks so much. Only College graduation speech I have ever given. It was at the Thurgood Marshall College at UCS… https://t.co/6Tzf1OGdH7 +06/06/2018,Comedians,@TheLewisBlack,⚕️ Help save lives + win tix + meet Lewis Black! ⏳Only a few days left to reach our goal for the #RunForRosogin fun… https://t.co/1a5esG6Mpw +06/05/2018,Comedians,@TheLewisBlack,🤬 Mad about 👔 Dads & 🎓 Grads Bobblehead Sale - You know Dad doesn't need another stupid tie & who the hell knows wh… https://t.co/6kwB7gDFy5 +06/01/2018,Comedians,@TheLewisBlack,It's #NationalDonutDay 🍩 https://t.co/CNw6HkGQ1z +05/31/2018,Comedians,@TheLewisBlack,#TBT from April 2002 - Lewis Black - Surviving https://t.co/6cNNbPTb0s via @comedycentral +05/29/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: I'm sick of unfunny shit being called ""jokes."" I work hard at ""jokes"" so let's not use ""it was just a joke"" when u jus…" +05/29/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: He ate it. He was rite. @TheLewisBlack https://t.co/m1lkl5Ay62 +05/26/2018,Comedians,@TheLewisBlack,Way too truuuuue!!!! https://t.co/FyR4fuwX1m +05/24/2018,Comedians,@TheLewisBlack,"ICYMI - Rant Replays from the last 3 shows at the @DCWarnerTheatre are available for viewing NOW, for a limited tim… https://t.co/dWLNu33nRv" +05/24/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Dunno how @TheLewisBlack expects greatness w 8 sweaters n a jacket on. W best caddie n drinkin pal @BrianLordan @oldhe… +05/23/2018,Comedians,@TheLewisBlack,"We're close to reaching our goal but need YOUR help to save lives! By donating, you'll have a chance for 2 comp tix… https://t.co/NwfnA7AgW6" +05/22/2018,Comedians,@TheLewisBlack,Watch Part 2 now! https://t.co/uongX5ZszR +05/20/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @DCWarnerTheatre in Washington DC: https://t.co/DKTBLOcMiZ https://t.co/Nu786I3N9t" +05/19/2018,Comedians,@TheLewisBlack,"RT @Linkville: Meet the Coleman's. ""One Slight Hitch"" opens this Friday! And runs for 4 weekends @Linkville Playhouse in Klamath Falls, OR!…" +05/19/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Washington DC: https://t.co/DKTBLOcMiZ https://t.co/1KAcUtZnx0" +05/17/2018,Comedians,@TheLewisBlack,"FINAL 3 Live-Screams til Fall start tonite, as first 1/2 of Joke's On US tour wraps up @DCWarnerTheatre. Submit ur… https://t.co/AGPNrCfH1H" +05/17/2018,Comedians,@TheLewisBlack,"RT @DCWarnerTheatre: Comedian @TheLewisBlack is back in DC for 3 shows here this Thursday, Friday & Saturday! Some great seats are still av…" +05/16/2018,Comedians,@TheLewisBlack,On way to D.C. for three shows and so I just got a chance to stop in and see the folks. Thats Frank next to me. W… https://t.co/xVMgFlXCw5 +05/16/2018,Comedians,@TheLewisBlack,A new generation of kids will know him as Anger in Pixar’s animated “Inside Out.” “My generation didn’t know it had… https://t.co/m7V7cKnWpQ +05/15/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: And me n @TheLewisBlack have made it our mission w our free time to find a cure! @CF_Foundation https://t.co/ghZvYrfU… +05/14/2018,Comedians,@TheLewisBlack,"YOU can help Team Lewis Black save lives! And have a chance for 2 comp tix, MEET Lewis & get collectibles (t-shirts… https://t.co/Dv88s84jR7" +05/13/2018,Comedians,@TheLewisBlack,And a happy mother's day to all you mothers. I'm on a plane but here's my Mom. https://t.co/k8SEKBqiLF +05/10/2018,Comedians,@TheLewisBlack,"NEW show on sale NOW! Due to demand, a second show has been added in Greensboro NC (showdate: Nov 4.) F.U.C.K.U. t… https://t.co/KcfHDVEzq5" +05/08/2018,Comedians,@TheLewisBlack,Mother's Day is THIS Sunday (May 13). She'll appreciate a gift that helps her on her way and gets her through her b… https://t.co/tTwr92zM9b +05/07/2018,Comedians,@TheLewisBlack,"RT @science2movies: @TheLewisBlack and Prof. @BGreene join @Faith_Salie to talk math jokes. + +https://t.co/aS4axAEDYS https://t.co/EkYZxNHIPB" +05/06/2018,Comedians,@TheLewisBlack,Thank you https://t.co/j4dEVMSQ50 +05/04/2018,Comedians,@TheLewisBlack,Happy Star Wars Day! May the Farce Be With You! #StarWarsDay #maythe4thbewithyou #princesslewis https://t.co/sQmGaypGS9 +05/04/2018,Comedians,@TheLewisBlack,ICYMI last night! Back in Black - The Primaries Are Working Their Stupid Magic https://t.co/fu6twzjmqq via @comedycentral +05/03/2018,Comedians,@TheLewisBlack,Looking for that perfect gift for Mom? We've got you covered. Order now to receive in time for Mother's Day (May 13… https://t.co/OjDTn2jLpH +05/03/2018,Comedians,@TheLewisBlack,"Had a lovely afternoon with the folks. They have redefined ""Keep on Truckin."" https://t.co/4bTiv0D6b4" +05/03/2018,Comedians,@TheLewisBlack,"RT @TheLewisBlack: TUNE IN UPDATE! Due to a last minute schedule change yesterday, my #BackInBlack segment will air tonight (Thurs, May 3)…" +05/03/2018,Comedians,@TheLewisBlack,"TUNE IN UPDATE! Due to a last minute schedule change yesterday, my #BackInBlack segment will air tonight (Thurs, Ma… https://t.co/7xfu77IlZl" +05/02/2018,Comedians,@TheLewisBlack,"TUNE IN ALERT! Tonight (Wed, May 2) @TheDailyShow on @ComedyCentral at 11pm/10pmC #BackInBlack https://t.co/Dg7B7tru9c" +05/02/2018,Comedians,@TheLewisBlack,"RT @cunytv: Comedian @TheLewisBlack and physicist@bgreene join forces to explain all the hidden #math puns in “The Simpsons” and “Futurama,…" +05/01/2018,Comedians,@TheLewisBlack,Fan Club tickets are on sale NOW for a NEW show on the Fall tour: Sept 23 @TheMahaiwe in Great Barrington MA. All… https://t.co/GYq2MqRxZ1 +04/30/2018,Comedians,@TheLewisBlack,Need to let off some steam? This little guy can help. Just push his button and he'll say one of five of your favori… https://t.co/ebodY8cmVT +04/30/2018,Comedians,@TheLewisBlack,"ICYMI - Rant Replays from the last 3 Texas shows are available NOW, for a limited time, for FREE at… https://t.co/hAFM9byYI9" +04/29/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @reventioncenter in Houston TX: https://t.co/DKTBLOcMiZ" +04/28/2018,Comedians,@TheLewisBlack,"RT @reventioncenter: TONIGHT — @TheLewisBlack - Joke’s on US Tour! Doors: 7PM, Show: 8PM. + +Info + tickets: https://t.co/7xfHT6h4Oj https:/…" +04/28/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @acllive in Austin TX: https://t.co/DKTBLOcMiZ https://t.co/1Q6OqQUP0t" +04/27/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from Dallas TX: https://t.co/DKTBLOcMiZ https://t.co/RDCRbAqlbS" +04/26/2018,Comedians,@TheLewisBlack,"Lewis Black on political humor, coffee - https://t.co/7GkE7U6Vpw #GoogleAlerts" +04/26/2018,Comedians,@TheLewisBlack,"35 years ago, @CityHarvest was founded by New Yorkers who came together to help our neighbors in need. Today, with… https://t.co/oQta0O1QUy" +04/25/2018,Comedians,@TheLewisBlack,"""This fundraiser means a great deal to me & my dear friend Steve Olsen. I hope a few of you will throw a couple buc… https://t.co/SUnPKHHKQd" +04/25/2018,Comedians,@TheLewisBlack,"Rant replays from the last 4 Colorado shows (Ft Collins, both nights in Denver & Colorado Springs) are up! Head ove… https://t.co/nvkessgIjL" +04/25/2018,Comedians,@TheLewisBlack,And the beat goes on. https://t.co/Gew6E3UGcv +04/24/2018,Comedians,@TheLewisBlack,Comedian Lewis Black Returns To The ‘End Of The Universe’…AKA Houston https://t.co/kJV5IoYFeZ +04/24/2018,Comedians,@TheLewisBlack,"""You don't get to say your way is the best way or it's your way or the highway... https://t.co/SxDPcGL6ha via @the_mixmaster" +04/23/2018,Comedians,@TheLewisBlack,@TylerDahl16 These lines are meant to be overlapping if that helps you +04/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @FoCoLincolnCtr in Ft Collins CO: https://t.co/DKTBLOunax https://t.co/g2AMUdNBWh" +04/22/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @ParamountCO in Denver: https://t.co/DKTBLOunax https://t.co/kEBrdyql1J" +04/21/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @ParamountCO: https://t.co/DKTBLOunax https://t.co/OCtwlGYfu3" +04/20/2018,Comedians,@TheLewisBlack,Team Lewis Black needs YOUR help to save lives! Benefiting the @rogosin Institute which helps people with kidney di… https://t.co/sGZz5Ccvbw +04/20/2018,Comedians,@TheLewisBlack,RT @kathleenmadigan: Me in a meeting w my accountant about taxes. https://t.co/dWJz5t1Px5 +04/20/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @PikesPeakCenter in Colorado Springs CO: https://t.co/DKTBLOunax https://t.co/raIfoRHbbV" +04/19/2018,Comedians,@TheLewisBlack,"Holy shit! Four 'The Rant Is Due' live-screams in a row this week from Colorado, starting tonight (Apr 19) thru Sun… https://t.co/9wjKzvkArp" +04/18/2018,Comedians,@TheLewisBlack,Thanks so much for that insanely great poster and deeply appreciate being one of your favorite artists. Good luck… https://t.co/O8LHSOpFGf +04/18/2018,Comedians,@TheLewisBlack,@DanaMW @YouTube Nope just telling people where I am going to be and making sure they get the best tickets. Since… https://t.co/OwuWkIBOrf +04/18/2018,Comedians,@TheLewisBlack,My very funny and talented friend @LouieAnderson wrote a funny book I think you'll like. https://t.co/IUTlZsEDlj +04/18/2018,Comedians,@TheLewisBlack,"Fan Club tix are on sale NOW ahead of the Fri, Apr 20 public on sale date. All seats within the first 10 rows of th… https://t.co/M0ylqovIQS" +04/17/2018,Comedians,@TheLewisBlack,"🔥 Lewis Black's ""The Joke's On US"" Fall Tour tickets on sale NOW for F.U.C.K.U. members! 🚯 Join & get tix:… https://t.co/nLUJqyKVfS" +04/17/2018,Comedians,@TheLewisBlack,"Sonofabitch! 2018 Fall Tour Dates have been announced & Fan Club ticket sales start tomorrow (Tue, Apr 17). All fan… https://t.co/mTNXdAPxKE" +04/16/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @gillioztheatre in Springfield MO: https://t.co/nry8Gu2xUZ https://t.co/hcqVMb0FA6" +04/15/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @hoytsherman in Des Moines IA: https://t.co/DKTBLOcMiZ" +04/14/2018,Comedians,@TheLewisBlack,"I meant April 14th, 2018. Today. https://t.co/9wuTrsXx5I" +04/14/2018,Comedians,@TheLewisBlack,"April 15th, 2018 on way from Rochester Minnesota to Des Moines Iowa. This isn't weather. It's bullshit. https://t.co/cOXJM76pIq" +04/14/2018,Comedians,@TheLewisBlack,RT @SevereHayley: Our granddaughter Rumi consulting the Oracle... @TheLewisBlack https://t.co/k780oh6Dw6 +04/14/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @MayoCivicCenter in Rochester MN: https://t.co/DKTBLOcMiZ" +04/14/2018,Comedians,@TheLewisBlack,"Judy, a member of F.U.C.K.U. recently purchased an item from Lewis' Black Market. It caused her some frustration, b… https://t.co/SkYXOm6RpO" +04/11/2018,Comedians,@TheLewisBlack,RT @HennessyHaole: Remember when @kathleenmadigan and Lewis Black @TheLewisBlack joined Judy Gold @JewdyGold and me in studio? Nothing but… +04/10/2018,Comedians,@TheLewisBlack,"NEW show on sale NOW! Oct 5, @OldNatlCentre Indianapolis IN. All fan club seats are within the first 7 rows:… https://t.co/AwwjqXE6nn" +04/09/2018,Comedians,@TheLewisBlack,"RT @PB_507: .@TheLewisBlack talks anger, the state of U.S. politics, and whether or not the level of absurdity in reality has rendered come…" +04/09/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @PalacePA in Greensburg PA: https://t.co/DKTBLOcMiZ https://t.co/BYb6VPf7Cb" +04/08/2018,Comedians,@TheLewisBlack,RT @ecpgh: See today's Entertainment Central Cool Picks: https://t.co/tfrhyf60hO @TheLewisBlack @livenationpgh @PalacePA @City_Theatre @Pir… +04/08/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @FillmoreDetroit in Detroit: https://t.co/DKTBLOcMiZ https://t.co/YR3pALbkZz" +04/07/2018,Comedians,@TheLewisBlack,"Join us tonight (Sat, Apr 7) for our FREE, end-of-show live stream from @FillmoreDetroit . Send in your rant sugges… https://t.co/vEQTSVlRq2" +04/07/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @rialtosquare in Joliet IL: https://t.co/DKTBLOunax https://t.co/54h27fM6Jp" +04/06/2018,Comedians,@TheLewisBlack,Did you miss us last week? We're back! 🤗 Free end-of-show live streaming tonite - Sun. Send in your rants NOW to… https://t.co/RxrSaalQrE +04/04/2018,Comedians,@TheLewisBlack,Viewer Melanie Ellis takes advantage of Lewis' worldwide megaphone to announce that she is with child. Congratulati… https://t.co/DiK68VMS2M +04/04/2018,Comedians,@TheLewisBlack,How Lewis Black's Righteous Anger Has Gotten Us Through Two Decades of Craziness https://t.co/01mvxescaw +04/02/2018,Comedians,@TheLewisBlack,Spent a wonderful afternoon with my folks who keep on trucking and continue to amaze me. https://t.co/qat3cUzHqc +04/02/2018,Comedians,@TheLewisBlack,Q&A: Comedian Lewis Black on how yelling is cathartic and why politics now really isn't funny https://t.co/ziUjaKmYhx via @Joliet_HN +03/29/2018,Comedians,@TheLewisBlack,"RT @chq: Attendees of our 2017 week on ""Comedy and the Human Condition"" won't want to miss this stunning new video introduction to the @Ntl…" +03/29/2018,Comedians,@TheLewisBlack,The clock is winding down on our March Madness sale but there is still time to save BIG on bundles and sale items!… https://t.co/iSzbNJLEyG +03/26/2018,Comedians,@TheLewisBlack,Happy Birthday! https://t.co/AxYXpk62Ob +03/25/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @PeabodyDaytona In Daytona Beach FL: https://t.co/DKTBLOcMiZ https://t.co/wREHaK7Y30" +03/24/2018,Comedians,@TheLewisBlack,For all those marching don't let anyone tell you that what you are doing isn't important. My heart is with you. My… https://t.co/Tb6aYS0njW +03/24/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @vanwezel in Sarasota FL: https://t.co/DKTBLOcMiZ https://t.co/q0uyK0W8x4" +03/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Ft Pierce FL: https://t.co/DKTBLOcMiZ https://t.co/JM5Ol4KcsC" +03/22/2018,Comedians,@TheLewisBlack,It's March Merch Madness! Save up to TEN FUCKING BUCKS on these bundles and other sale items!… https://t.co/HDFkTLqARV +03/22/2018,Comedians,@TheLewisBlack,"""It's been unbelievable. Comedy's not something I ever set out to do,"" said Black. King of rant Lewis Black set to… https://t.co/PaPJkC8Pvz" +03/22/2018,Comedians,@TheLewisBlack,"Tune in alert! ""The Rant Is Due"" Live Streaming starts tonite from @SunriseTheatre Ft Pierce FL & then tmrw from… https://t.co/YiAThPyzIT" +03/21/2018,Comedians,@TheLewisBlack,"Lewis Black on tackling Trump, 'The Daily Show,' 'Inside Out' https://t.co/tINFt1pL75" +03/18/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @BorgataAC in Atlantic City: https://t.co/DKTBLOcMiZ" +03/17/2018,Comedians,@TheLewisBlack,"@Pupster_2000 Sorry, glitch on the site! Working to fix it now. We hope you'll join us for tomorrow's rant. ~Lew's Crew" +03/17/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @BorgataAC in Atlantic City NJ: https://t.co/DKTBLOcMiZ" +03/15/2018,Comedians,@TheLewisBlack,ICYMI last night. Replay of Back in Black segment - Trump's Golfing Milestone https://t.co/H2hdNrvdoI via @comedycentral +03/14/2018,Comedians,@TheLewisBlack,Great room. Great food. Great wine. Great fun. Come see me tomorrow (Mar 15) @CityWineryNYC. Tix:… https://t.co/28HGiZuNsu +03/14/2018,Comedians,@TheLewisBlack,I am on @TheDailyShow tonight (at least for now). 11/10c on @ComedyCentral https://t.co/etWoUNR4fc +03/14/2018,Comedians,@TheLewisBlack,"#NationalWalkoutDay +https://t.co/y9PtCTItBm" +03/13/2018,Comedians,@TheLewisBlack,"Good luck Nick. If he doesn't take the Under Secretary of State job, you'll have a winner that's what happens when… https://t.co/vweVSAk9TQ" +03/13/2018,Comedians,@TheLewisBlack,"Thanks for those extremely kind words, it means a lot to me. https://t.co/Q1C9xEbS1N" +03/13/2018,Comedians,@TheLewisBlack,RT @CityWineryNYC: Mastermind @TheLewisBlack performs his ONLY #NYC TOUR DATE at #CityWineryNYC on March 15! Come have a mental breakdown w… +03/12/2018,Comedians,@TheLewisBlack,I stand w/@americans4arts as they take hundreds of arts advocates to Capitol Hill today for #ArtsAdvocacy Day. Arts… https://t.co/Pc2kCLhizW +03/11/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @Lvillepalace in Louisville KY: https://t.co/DKTBLOcMiZ https://t.co/OXXMJWZTnk" +03/09/2018,Comedians,@TheLewisBlack,See you tonight at the historic Ryman Auditorium! Due to unforeseen circumstances tonight’s live stream has been ca… https://t.co/P4BSOYqX4f +03/09/2018,Comedians,@TheLewisBlack,"RT @FilmNewsNos: 🎬MOVIE HISTORY: 27 years ago today March 8, 1991, the movie 'The Hard Way' opened in theaters! + +#MichaelJFox #StephenLang…" +03/09/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live from @ThePeel in Asheville NC: https://t.co/DKTBLOcMiZ https://t.co/O30UzFjhnl" +03/08/2018,Comedians,@TheLewisBlack,RT @CityWineryNYC: Mastermind @TheLewisBlack performs his ONLY #NYC TOUR DATE at #CityWineryNYC on March 15! Come have a mental breakdown w… +03/08/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @ThePeel in Asheville NC: https://t.co/DKTBLOcMiZ https://t.co/NbFYcrrFA8" +03/07/2018,Comedians,@TheLewisBlack,"Tune in alert! ""The Rant Is Due' end-of-show Live Streaming tonight thru Sun (Mar 10). That's 4 nights in a row! 😲… https://t.co/JfoMQoGane" +03/07/2018,Comedians,@TheLewisBlack,"RT @Lightning100: Ready for @TheLewisBlack @theryman on Friday? For your shot at tickets, just share your top 5 all time favorite comedians…" +03/06/2018,Comedians,@TheLewisBlack,"On sale now! Due to popular demand, a THIRD show @DCWarnerTheatre, Wash D.C. has been added. Fan Club tickets for t… https://t.co/KPkrAYfsx5" +03/05/2018,Comedians,@TheLewisBlack,"New show added and ON SALE NOW! Mar 15, 2018 City Winery New York. Get ur tix here: https://t.co/5oMt6o5Oy2" +03/05/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @GaillardCenter in Charleston SC: https://t.co/DKTBLOcMiZ https://t.co/xq8HCuHD8H" +03/04/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Roanoke VA: https://t.co/DKTBLOcMiZ https://t.co/drTE6gIpJT" +03/04/2018,Comedians,@TheLewisBlack,Do you wish more people would just fucking vote already? Well help make that happen by volunteering with… https://t.co/5Sx8FXBbyH +03/03/2018,Comedians,@TheLewisBlack,"""The Kids Are Marching"" (2/24/18 Kingston NY) | Lewis Black https://t.co/nPZ4NTqqS9 via @YouTube" +03/03/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @DOMEnergyCenter in Richmond VA: https://t.co/DKTBLOcMiZ https://t.co/is2Ec4Ubb5" +03/02/2018,Comedians,@TheLewisBlack,"RT @GaillardCenter: Sunday night, Grammy-award winning, stand up comedian @TheLewisBlack performs at the Gaillard for a night of irreverent…" +03/01/2018,Comedians,@TheLewisBlack,Lewis Black returns to Roanoke for Berglund show on Saturday https://t.co/Qore3YtZHn via @roanoketimes +03/01/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond TOMORROW and Berglund Cente…" +03/01/2018,Comedians,@TheLewisBlack,Only 1 more day to take advantage of our 🎱Lewis Black Magic Ball Sale - now $10 (was $15) thru Mar 1. Answers to y… https://t.co/vUBLNPRp1F +02/28/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond 3/2/18 and Berglund Center…" +02/27/2018,Comedians,@TheLewisBlack,"Watch replays of last weekends The Rant Is Due portion of the show (from Princeton NJ, Binghamton NY & Kingston NY… https://t.co/MecKkRhPqc" +02/26/2018,Comedians,@TheLewisBlack,"Comedian Lewis Black disses human stupidity, politicians, internet https://t.co/nY4a6rAwYL via @postandcourier" +02/26/2018,Comedians,@TheLewisBlack,RT @nytimestravel: Why @TheLewisBlack always brings The Week magazine with him when he travels https://t.co/IVeYqh48ao +02/26/2018,Comedians,@TheLewisBlack,"RT @LvillePalace: GIVEAWAY 😆 You could WIN 2 tickets to @TheLewisBlack: The Joke's on US Tour next Saturday, 3/10! This contest ends this W…" +02/26/2018,Comedians,@TheLewisBlack,RT @table4oneplease: @HeadCountOrg @TheLewisBlack Floridians can now register to vote online if they have a FL driver license or state ID.… +02/25/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @upac in Kingston NY: https://t.co/DKTBLOcMiZ https://t.co/0fCFLlT5cj" +02/24/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from Binghamton NY: https://t.co/DKTBLOcMiZ https://t.co/kFlmy6gUR6" +02/23/2018,Comedians,@TheLewisBlack,Today is the start of MLB spring training. Lewis looks forward to the baseball season. His feelings about the NY Ya… https://t.co/ywRxofWNvb +02/23/2018,Comedians,@TheLewisBlack,"It's been awhile since the last Road Report from our favorite behind-the-scenes guy, Lenny Hughes. Let's take an in… https://t.co/5NSxnK8Btv" +02/23/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @mccarter in Princeton NJ: https://t.co/DKTBLOcMiZ" +02/22/2018,Comedians,@TheLewisBlack,🎱 Lewis Black Magic Ball Sale - now $10 (was $15) from now thru Mar 1. Answers to your life's questions will be rev… https://t.co/QzPb0NTSfT +02/22/2018,Comedians,@TheLewisBlack,Listen to the interview...Lewis Black At UPAC In Kingston On 2/24 https://t.co/vAOGoQjS1I +02/22/2018,Comedians,@TheLewisBlack,"Lewis Black, ahead of UPAC show in Kingston, talks Trump, Facebook and how rants can be funny https://t.co/vUgDlXPh3q via @dailyfreeman" +02/21/2018,Comedians,@TheLewisBlack,RT @GregWarren: Very funny and very nice guy needs help. https://t.co/pDkm0RChGC +02/21/2018,Comedians,@TheLewisBlack,Thanks for making a great tee. https://t.co/hbde2mdahm +02/21/2018,Comedians,@TheLewisBlack,Comedian Lewis Black at UPAC hopes to step back from the 'madness' https://t.co/DlAwkCf4pT via @pokjournal +02/20/2018,Comedians,@TheLewisBlack,Watch replays of last weekends The Rant Is Due portion of the show (from Columbus OH and Skokie IL) for a limited… https://t.co/VPerLaeWco +02/20/2018,Comedians,@TheLewisBlack,"RT @LiveNationVB: Comedian @TheLewisBlack ""The Joke's On Us Tour"" is coming to Dominion Arts Center in Richmond 3/2/18 and Berglund Center…" +02/18/2018,Comedians,@TheLewisBlack,RT @OttoAndGeorge: George sits down with @TheLewisBlack -Stills from The Pig Roast interview. https://t.co/fCVKIfIV52 +02/18/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @NSCPAS in Skokie IL: https://t.co/DKTBLOcMiZ" +02/17/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @NSCPAS in Skokie IL: https://t.co/DKTBLOcMiZ" +02/16/2018,Comedians,@TheLewisBlack,The Lewis Black Interview https://t.co/JOEx8FUJD1 @991thewhale +02/16/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now from @CAPAColumbus in Columbus OH: https://t.co/DKTBLOcMiZ https://t.co/3bn3GSJ2fI" +02/15/2018,Comedians,@TheLewisBlack,Tune In Alert! The Rant Is Due end-of-show live streams start TONIGHT (Feb 15) in Columbus OH. Submit your rant sug… https://t.co/wNyLx6nf59 +02/14/2018,Comedians,@TheLewisBlack,"""The Joke's on US"" official tour design screenprinted in red and grey on a navy tee, cozy hoodie or jumbo tote. Is… https://t.co/WHT6uIMI6V" +02/14/2018,Comedians,@TheLewisBlack,"""The holiday doesn't belong in February. It's February. The most depressing month of the year."" +~ Lewis Black on V… https://t.co/McrdEXdpCF" +02/14/2018,Comedians,@TheLewisBlack,Today is his official birthday. A 100 years of Sam. https://t.co/giEJNEQ52r +02/13/2018,Comedians,@TheLewisBlack,"RT @desusandmero: We talk to @TheLewisBlack about saying whatever you want, the idea this presidency being ""great"" for comedy, his broke th…" +02/13/2018,Comedians,@TheLewisBlack,NEW items in the Black Market - Middle Finger Portrait Tee & Jumbo Tote... perfect for when you feel like flipping… https://t.co/sMAhRPUaD3 +02/13/2018,Comedians,@TheLewisBlack,My t-shirt said Read Banned Books. Had a great time with the very funny Desus and Moro. https://t.co/bx61dql4m8 +02/13/2018,Comedians,@TheLewisBlack,"RT @zerocool1984a: @desusandmero @TheLewisBlack Just want to say, hilarious interview and I called the rainbow..😂😎 https://t.co/6ObE6Mxfhk" +02/12/2018,Comedians,@TheLewisBlack,Tune-in Alert! Tonight (Feb 12) @ 11:00pm. Desus and Mero. Channel Finder: https://t.co/nW7mZPOLYq @desusandmero https://t.co/gvuemUJv09 +02/12/2018,Comedians,@TheLewisBlack,"RT @EricLagatta: ""I did a lot of hallucinogens as a kid, and I came up with all sorts of paranoid fantasies. This was not one of them"" + +I t…" +02/11/2018,Comedians,@TheLewisBlack,Last night I had the joy of celebrating my Dad's 100th birthday with family and friends. A lovely and principled m… https://t.co/L69BTCwpNT +02/09/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: It's finally here! Woohoo! My new CD from the Netflix special ""Bothering Jesus."" Available nowwww! https://t.co/QMdCqG…" +02/08/2018,Comedians,@TheLewisBlack,😭Bummed because there are no live-streams this weekend? No worries. Watch replays of last weekends The Rant Is Due… https://t.co/7JzcGtyXCy +02/07/2018,Comedians,@TheLewisBlack,"RT @FantasySprings: Comedian @TheLewisBlack is bringing his ""The Joke's On US"" tour to Fantasy Springs on Friday, May 11th! + +Tickets go o…" +02/06/2018,Comedians,@TheLewisBlack,Lewis Black Magic Ball - for answers to all of life's questions. Conjure up Lewis' wisdom whenever you please. Get… https://t.co/VWK4g8Y6YU +02/06/2018,Comedians,@TheLewisBlack,So how's the weather? #NationalWeatherpersonsDay https://t.co/7By9rWF1jD +02/05/2018,Comedians,@TheLewisBlack,"RT @kathleenmadigan: I'm pre-thanking you! It's final here! Woooohoooo! The audio CD from my latest Netflix special ""Bothering Jesus."" Limi…" +02/04/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @sdbalboa in San Diego CA: https://t.co/DKTBLOunax https://t.co/mGTIwf9sAx" +02/03/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @groveofanaheim in Anaheim CA: https://t.co/DKTBLOunax https://t.co/pbEwBmmqhW" +02/02/2018,Comedians,@TheLewisBlack,RT @theryman: ON SALE NOW: @TheLewisBlack at the Ryman March 9! >> https://t.co/sys1LMWA3i https://t.co/oZbbGgfDKX +02/02/2018,Comedians,@TheLewisBlack,RT @NtlComedyCenter: We are proud to announce the acquisition of the archive of ground-breaking comedian Shelley Berman. The archive was ca… +02/02/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @LargoLosAngeles in Los Angeles: https://t.co/DKTBLOunax https://t.co/7oqn3t1kIF" +02/02/2018,Comedians,@TheLewisBlack,🏈 Only a few more days! Scoop up some sweet gear on sale and score big savings 💰 in our Super Sale. Now through Feb… https://t.co/dY9aiJnWqZ +02/01/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From @LargoLosAngeles in Los Angeles CA: https://t.co/DKTBLOunax https://t.co/JGlFIxaCUL" +02/01/2018,Comedians,@TheLewisBlack,There' still time to grab tix for tonight! https://t.co/nhNBbzNIiR +01/31/2018,Comedians,@TheLewisBlack,"I congratulate and couldn't be more thrilled for my friend, the brilliant @JaneIraBloomSax, for her well deserved G… https://t.co/uA5EE34AuX" +01/31/2018,Comedians,@TheLewisBlack,"🏈 Super Sale Kick Off! Score big savings 💰 now through Feb 4, on these items plus more in the Lewis Black Market.… https://t.co/QNTwgUVE4r" +01/31/2018,Comedians,@TheLewisBlack,"Tune In Alert! Can you handle all the laughs? The Rant Is Due, end-of-show live streams start tonight in Los Angele… https://t.co/6lPoCZVL78" +01/30/2018,Comedians,@TheLewisBlack,"Comedian Lewis Black Weighs In On Legalization, Taxation and a Certain Four-Letter Word https://t.co/FFRMyzWxCR via @ocweekly" +01/30/2018,Comedians,@TheLewisBlack,Need a laugh? We've got you covered! Watch replays of last weekends The Rant Is Due portion of the show for a limit… https://t.co/Uffkmr9mwa +01/29/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live Now From Chico CA: https://t.co/DKTBLOunax https://t.co/9Zy4WiFe8i" +01/28/2018,Comedians,@TheLewisBlack,"""The Rant Is Due"" Live From @grandsierra in Reno NV: https://t.co/DKTBLOunax" +01/25/2018,Comedians,@TheLewisBlack,"If you're asking the question, ""Can I save 20% on the Lewis Black Magic Ball right now?"" The answer is ABSO-FUCKING… https://t.co/Nc5W0vkkaS" +06/27/2018,Comedians,@MelBrooks,I’ll be doing a live Q&A alongside a screening of Blazing Saddles live in London this July! Tickets are on sale now… https://t.co/GnTDEuEgn1 +06/04/2018,Comedians,@MelBrooks,RT @tcm: Thanks for coming out to the #TCMBigScreen 50th Anniversary celebration of @MelBrooks' THE PRODUCERS ('68)! ICYMI see the encore s… +05/23/2018,Comedians,@MelBrooks,Join me in London this July for ‘Back In The Saddle Again’. I’ll be doing a live Q&A alongside a screening of the f… https://t.co/D4hQXFjIrC +05/08/2018,Comedians,@MelBrooks,"RT @eventim_uk: Legendary @MelBrooks is Back In The Saddle Again at the @EventimApollo in July! Join him for an exclusive, inside look at h…" +04/30/2018,Comedians,@MelBrooks,"RT @BacklotProject: Join @MelBrooks at @NJPAC next Sunday, May 6, for an in-person conversation following a screening of SPACEBALLS! For m…" +04/11/2018,Comedians,@MelBrooks,"RT @carlreiner: If you're not doing anything tonight and even if you are, you might enjoy watching the premiere of ""G.I. Jews"" on PBS https…" +03/07/2018,Comedians,@MelBrooks,Congratulations @realrossnoble you got over the hump! Your very first Olivier nomination! I’m so very proud of you.… https://t.co/0vYQqqT5E0 +03/07/2018,Comedians,@MelBrooks,Congrats to @LesleyJosephTV on her Olivier nomination for her spectacular performance as Frau Blucher! (Whinnnnney!… https://t.co/bYZcC5Q3Ex +03/07/2018,Comedians,@MelBrooks,Congrats to the entire cast and crew of @youngfrankldn on the Olivier nomination for Best New Musical! Well done! I… https://t.co/SQl32ZYoCW +02/15/2018,Comedians,@MelBrooks,"Congrats to @cocoanglais on a great debut as Igor in @youngfrankldn. We’ve been sold out all week. By the way, if y… https://t.co/rWrj8sj2Jw" +01/30/2018,Comedians,@MelBrooks,"...to his heartbreakingly beautiful and Academy Award nominated score for The Elephant Man, he always elevated ever… https://t.co/yshYflerH3" +01/30/2018,Comedians,@MelBrooks,"John Morris, who was strangely unsung for being such a musical genius, scored almost every movie I ever made and he… https://t.co/3W6eRdrdb2" +12/21/2017,Comedians,@MelBrooks,RT @youngfrankldn: Mel Brooks behind the camera on the film set for Young Frankenstein. #ThrowbackThursday https://t.co/OHBy4nSLvD +12/14/2017,Comedians,@MelBrooks,RT @EW: Mel Brooks calls The Producers the 'miracle of my life' https://t.co/woHf76aUq5 +12/14/2017,Comedians,@MelBrooks,"RT @tcm: #TCMFF Alert! Opening night will feature a 50th Anniversary presentation of THE PRODUCERS (‘68) attended by @MelBrooks, & a tribut…" +12/13/2017,Comedians,@MelBrooks,Good news! My son @nickbrooks72 movie SAM - an hilarious sex mixup comedy - is streaming on Amazon Prime in the US! https://t.co/LITM0djAZ6 +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Ladies and Transylvanians we have been nominated for ‘Best New Musical’ at the @WhatsOnStage Awards! #WOSAwards https://… +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Congratulations to @hadleyfraser nominated for ‘Best Actor in a Musical’ at the @WhatsOnStage Awards! #WOSAwards https:/… +12/02/2017,Comedians,@MelBrooks,RT @youngfrankldn: Congratulations to @realrossnoble nominated for ‘Best Supporting Actor in a Musical’ at the @WhatsOnStage Awards! #WOSAw… +10/11/2017,Comedians,@MelBrooks,I am exploding with joy! Congratulations to our brilliant cast of @youngfrankldn —What a fantastic opening night. +10/10/2017,Comedians,@MelBrooks,RT @youngfrankldn: Legends @MelBrooks and Susan Stroman at the official opening night of #YoungFrankenstein in the West End ⚡️ https://t.co… +10/10/2017,Comedians,@MelBrooks,"RT @TimeOutTheatre: In photos: Mel Brooks' Young Frankenstein musical, opening TONIGHT at the Garrick https://t.co/CISAl3G3kc https://t.co/…" +09/25/2017,Comedians,@MelBrooks,Previews start this week! https://t.co/0g9eVu269x +09/23/2017,Comedians,@MelBrooks,"RT @JRossShow: DON'T MISS @rustyrockets, @MelBrooks, @LewisHamilton and @Palomafaith on the sofa with @wossy THIS SATURDAY at 09:15PM #TheJ…" +09/20/2017,Comedians,@MelBrooks,RT @youngfrankldn: Missed @MelBrooks and @HadleyFraser chatting with @GrahNort on @BBCRadio2? Catch up here! https://t.co/i97Y2v6u8Q +09/18/2017,Comedians,@MelBrooks,"You should watch me tonight on #ToTellTheTruth (@TellTruthABC) at 10|9c on ABC. Because to tell the truth, everybod… https://t.co/vDugmvN0hN" +09/14/2017,Comedians,@MelBrooks,"RT @PBSAmerMasters: In our latest podcast episode, listen to a previously unreleased interview with legendary comedian @MelBrooks: https://…" +08/23/2017,Comedians,@MelBrooks,Stunned by the news that my friend/co-writer Tom Meehan has died. I’ll miss his sweetness & talent. We have all los… https://t.co/LDiV4p0btt +07/27/2017,Comedians,@MelBrooks,Don't miss my son Max reading & signing his new book #MinecraftTheIsland this weekend at The Grove in LA! https://t.co/MgX56vEjyF +07/18/2017,Comedians,@MelBrooks,"The book is out! What are you waiting for?! +https://t.co/n4JqJ27NIT https://t.co/PhNj3JPtHU" +07/11/2017,Comedians,@MelBrooks,Bursting with pride for my talented son @maxbrooksauthor & his new #Minecraft novel Minecraft:The Island that comes out one week from today! +06/30/2017,Comedians,@MelBrooks,@EzioGreggio thanks for your crazy birthday wish. I beg to differ--you've got a much bigger nose than me! +06/28/2017,Comedians,@MelBrooks,When this movie first opened I was a bit player. Time has made me the star. https://t.co/M5az924n07 +06/08/2017,Comedians,@MelBrooks,Some words on the passing of my friend Ed Victor. https://t.co/sY4JJk72aa +04/25/2017,Comedians,@MelBrooks,RT @IndependentLens: Monday #IndieLensPBS: Has/will there ever be a topic so taboo no one will EVER find humor in it? @lastlaughfilm https:… +04/21/2017,Comedians,@MelBrooks,So happy for all the potent feelings I've stirred up among all the ardent horse racing fans with my rebuke of the @latimes - let's march! +04/18/2017,Comedians,@MelBrooks,To the @latimes - shame on you for eliminating daily coverage of horse racing (the sport of kings!) from your newspaper. +04/06/2017,Comedians,@MelBrooks,"Don Rickles. One of the bravest, funniest, and sweetest guys that ever performed. A dear pal that we will all sorely miss." +04/05/2017,Comedians,@MelBrooks,RT @nerdist: These 5 classic film comedies are not to be missed at this year's @TCM Film Fest: https://t.co/HxfqRXIpyp by @michelledeidre #… +03/15/2017,Comedians,@MelBrooks,"Thank you all for supporting the campaign raising money for the @GeffenPlayhouse. There’s 2 days left to buy at https://t.co/68lz2XEQt8 +" +03/10/2017,Comedians,@MelBrooks,There is one week left to support The @GeffenPlayhouse. You can buy the limited edition apparel at… https://t.co/Y8fHHP9bRo +03/02/2017,Comedians,@MelBrooks,"I could afford the sweatshirt, but the car is twice as much. https://t.co/utJb0KiedL" +03/01/2017,Comedians,@MelBrooks,It’s good to be the king! Get ltd. edition apparel raising money for the @GeffenPlayhouse. There’s 2 weeks to buy a… https://t.co/cVWwaAtpsp +01/28/2017,Comedians,@MelBrooks,No one could have played The Elephant Man more memorably. He carried that film into cinematic immortality. He will be sorely missed. +01/28/2017,Comedians,@MelBrooks,It was terribly sad today to learn of John Hurt's passing. He was a truly magnificent talent. +01/20/2017,Comedians,@MelBrooks,RT @hoffmanormouse: @taketwo and @kpccalex talks to THE Mel Brooks ... and it was exactly what you'd think it would be about https://t.co/S… +01/19/2017,Comedians,@MelBrooks,RT @TheAVClub: Mel Brooks didn’t try to pants the president https://t.co/hDfSjTu7jU https://t.co/4O60PhrPcw +01/18/2017,Comedians,@MelBrooks,SAM directed by my son @nickbrooks72 is on Amazon & iTunes! I talk about how much I love it here: https://t.co/54VmauGjn8 @Sibylsantiago +01/18/2017,Comedians,@MelBrooks,"If I were you, I wouldn’t miss me! Blazing Saddles & Mel Brooks in person. This Friday in Los Angeles. https://t.co/YmYr3CXxXS" +01/17/2017,Comedians,@MelBrooks,RT @KTLASpotlight: Win tickets to see @melbrooks at @RiotLA. https://t.co/DN2zKP8eYq https://t.co/zaLtcGZQhl +01/12/2017,Comedians,@MelBrooks,RT @billydiffer: Opening Nights - 25/12/2016 - @bbcradioscot still on I player @_AngelaLansbury @MelBrooks @stephenashfield ellainec https… +12/21/2016,Comedians,@MelBrooks,RT @LAmag: Riot LA Is the Comedy Showcase Our City Deserves: https://t.co/f1z4J8j41e https://t.co/wp1kxNldlv +12/14/2016,Comedians,@MelBrooks,RT @RiotLA: Break out your Sunday's Best.. @MelBrooks is at the Microsoft Theater on 1/20. https://t.co/C5x4iUwQJk https://t.co/8VUQFzW8g8 +12/14/2016,Comedians,@MelBrooks,RT @OnePerfectShot: Deal Alert: The Mel Brooks Collection on Blu-ray for $19. Preposterous: https://t.co/VmdcONNrFD https://t.co/l6ra3aXKUS +12/06/2016,Comedians,@MelBrooks,RT @RiotLA: Join us on opening night with a Q&A with Mel Brooks (!!!) + screening of Blazing Saddles on 1/20. https://t.co/vMNEX9vUnK +12/05/2016,Comedians,@MelBrooks,"RT @Studio360show: Our episode about parodies with @MelBrooks, @TheDavidZucker, Simon Pegg, @nickjfrost & @alyankovic https://t.co/waaOlphB…" +11/21/2016,Comedians,@MelBrooks,RT @OnePerfectShot: Young Frankenstein (1974) DP: Gerald Hirschfeld | Director: Mel Brooks https://t.co/fPv8cj0RPa +11/16/2016,Comedians,@MelBrooks,"RT @PasteMagazine: The surreal, singular relevance of @MelBrooks and ""Blazing Saddles"" in 2016: https://t.co/1Gxiqy32Us #film https://t.co/…" +11/04/2016,Comedians,@MelBrooks,Proud to say that the original comedy SAM - dir. by my son @nickbrooks72 is now available for your viewing pleasure https://t.co/iiuvVkFZsD +11/04/2016,Comedians,@MelBrooks,RT @JohnJMoser: How to get tickets to see @MelBrooks at Easton's @StateTheatrePA before they go on sale to the public. Read @mcall: https:/… +10/18/2016,Comedians,@MelBrooks,The YOUNG FRANKENSTEIN coffee table book is out today! I’m really proud of it. Please don’t spill any coffee on it. https://t.co/PZ4jIrooam +10/17/2016,Comedians,@MelBrooks,"RT @latimesmovies: Loud and lively at 90, Mel Brooks talks about Gene Wilder, political correctness and his classic movies https://t.co/GiD…" +10/15/2016,Comedians,@MelBrooks,RT @MSTheater: Tickets available NOW to see @MelBrooks live conversation & audience Q&A + viewing of #BlazingSaddles Tickets here: https://… +10/08/2016,Comedians,@MelBrooks,"RT @fathomevents: Back by popular demand, #YoungFrankenstein is coming back to the big screen w/ an intro from Mel Brooks 10/18. https://t.…" +10/05/2016,Comedians,@MelBrooks,"RT @fathomevents: Walk this way, Mel Brooks spooky spoof #YoungFrankenstein returns to the big screen tonight! https://t.co/Xxz1HvsnYq http…" +09/23/2016,Comedians,@MelBrooks,https://t.co/o1jKsYUBpr +09/22/2016,Comedians,@MelBrooks,"RT @DAVID_LYNCH: Dear Twitter friends, you could win 2 VIP passes to the Festival of Disruption! ENTER: https://t.co/klfV77FNs8 https://t.c…" +09/15/2016,Comedians,@MelBrooks,Want to see me at the Festival of Disruption? Win 2 VIP passes HERE: https://t.co/yC5kKOCb7r https://t.co/vFZJF1bgN8 +09/08/2016,Comedians,@MelBrooks,RT @nerdist: #YoungFrankenstein will return to theaters for one night! https://t.co/sf7YBs7z0Y https://t.co/wx9CuAz9Oi +09/08/2016,Comedians,@MelBrooks,"RT @PasteMagazine: ""Young Frankenstein"" returning to 500+ theaters in October, with intro from @MelBrooks https://t.co/8hhNnYFbcN https://t…" +09/08/2016,Comedians,@MelBrooks,RT @good: .@MelBrooks talks to GOOD about the incredibly moving tribute he's planned for Gene Wilder. https://t.co/cO1Xlr7ikM https://t.co/… +09/01/2016,Comedians,@MelBrooks,https://t.co/AwlhYdWzWo +08/31/2016,Comedians,@MelBrooks,RT @FallonTonight: .@MelBrooks remembers meeting Gene Wilder for the first time... #FallonTonight https://t.co/fiU0X9zCrY +08/31/2016,Comedians,@MelBrooks,I'm on @FallonTonight tonight! https://t.co/IIxpMc8eIa +08/29/2016,Comedians,@MelBrooks,Gene Wilder-One of the truly great talents of our time. He blessed every film we did with his magic & he blessed me with his friendship. +08/27/2016,Comedians,@MelBrooks,RT @RadioCity: RT & Follow for chance to win tix to see @MelBrooks here at @RadioCity on Sept 1! Sweepstakes ends 8/30 5pm! #MBSWP https://… +08/27/2016,Comedians,@MelBrooks,"We lost Jack Riley this week. One of the brightest, sweetest actors I've ever worked with. I will miss him so much." +08/23/2016,Comedians,@MelBrooks,Mel Brooks Looks Back: ‘Blazing Saddles’ Could Never Get Made Today https://t.co/RlFA0BHO28 via @thedailybeast +08/19/2016,Comedians,@MelBrooks,RT @nerdist: The one and only @MelBrooks is on @leonardmaltin's Maltin on Movies podcast today: https://t.co/IEfj8PKeW0 🎧 https://t.co/EChp… +08/19/2016,Comedians,@MelBrooks,"RT @carlreiner: Sept 1st Mel Brooks will be at NY Radio City Music Hall to screeh Blazing Saddles, 4500 of 6000 seats were sold so hurry.if…" +08/17/2016,Comedians,@MelBrooks,"RT @RadioCity: The one & only @MelBrooks heads to @RadioCity for a very special night on Sept 1! What's your favorite work of his? +https://…" +08/05/2016,Comedians,@MelBrooks,David Huddleston was sublime in Blazing Saddles. He helped make all those Johnsons of Rock Ridge immortal. He was one of a kind. +07/23/2016,Comedians,@MelBrooks,RT @BDLpub: Missed a shirt? 50 more #YoungFrankenstein tshirts tomorrow 10am @hachetteus booth #1116 #SDCC2016. Preorder a book https://t.c… +07/23/2016,Comedians,@MelBrooks,RT @brooklynvegan: Mel Brooks talking about and screening 'Blazing Saddles' at Radio City Music Hall https://t.co/fvB16PBity https://t.co/S… +07/22/2016,Comedians,@MelBrooks,RT @OnePerfectShot: SPACEBALLS (1987) DoP: Nick McLean | Dir: Mel Brooks | https://t.co/OJmBoFs01Y https://t.co/cYy0X5Innh +07/22/2016,Comedians,@MelBrooks,RT @marisaschein: Powerful words @MelBrooks & the Borscht Belt See what remains of the area where he got his start 10/4 @CornellPress https… +07/20/2016,Comedians,@MelBrooks,"We'll miss Garry Marshall. So talented, so funny--a sweetheart of a guy." +07/14/2016,Comedians,@MelBrooks,Loved last @SHO_RayDonovan -Terry & Daryll did a terrific word for word version of the Sheriff's hilarious scene from BlazingSaddles. Bravo! +07/14/2016,Comedians,@MelBrooks,And thanks to @EW for the great exclusive on the 'Young Frankenstein' book - just look at those photos! https://t.co/Kez6Sqa7Yq +07/13/2016,Comedians,@MelBrooks,"This book is not alive, but it is now available for pre-order! https://t.co/dC2cVpZgeD #YoungFrankenstein https://t.co/ZP59FVbJmK" +06/30/2016,Comedians,@MelBrooks,Thank you to all my friends & fans for remembering me on my birthday. I promise to remember all of you when you turn 90. +06/23/2016,Comedians,@MelBrooks,"I’ll be appearing at David Lynch's @FestDisruption in LA. Presale today, code: DISRUPT >> https://t.co/GWGoLUhnWA https://t.co/AnS2uWy3aN" +06/22/2016,Comedians,@MelBrooks,"I apologize, Taran is right. I vaguely remember someone sticking their face into an otherwise lovely picture. https://t.co/zklPP6DYb0" +06/22/2016,Comedians,@MelBrooks,"RT @DAVID_LYNCH: Dear Twitter Friends, I'm curating the first-ever @FestOfDisruption. Tickets on sale Friday! https://t.co/OuQJocfGpo https…" +06/22/2016,Comedians,@MelBrooks,Friends? I've never seen this guy before in my life. https://t.co/Qi72L0Y52c +06/06/2016,Comedians,@MelBrooks,"Attention Milwaukee! ""Mel Brooks brings 'Blazing Saddles' to Riverside"" https://t.co/clri8oxtFw" +06/01/2016,Comedians,@MelBrooks,This is a truly incredible story about filmmaking. Thanks to @blakejharrisNYC & @HDTGM for asking me to tell it. https://t.co/ha1V6Z2zjt +05/26/2016,Comedians,@MelBrooks,So proud of my son @nickbrooks72 - SAM has its European market debut @Festival_Cannes! Congrats to the whole cast & crew at @SittingCatProd +05/25/2016,Comedians,@MelBrooks,https://t.co/oCcucE7rVN +05/23/2016,Comedians,@MelBrooks,"RT @JoelGHodgson: Met my idol, the amazing Mel Brooks this weekend, he said, ""I love your show with the movies and the robots"" #bliss https…" +05/19/2016,Comedians,@MelBrooks,"RT @RadioCity: Access presale tix NOW to @MelBrooks HERE on 9/1! Use code ""SOCIAL"" thru Thurs at 10PM: https://t.co/fx2NmNJlEs +https://t.co…" +05/17/2016,Comedians,@MelBrooks,RT @mollyeichel: Pretty excited I got to talk to @MelBrooks. Even more excited I got farts on the cover https://t.co/vfUq3LUImB https://t.c… +05/17/2016,Comedians,@MelBrooks,"I'm told there are a few seats left to see Blazing Saddles with me in Hartford, CT this Sunday - don't miss it! https://t.co/QTeBSCtlgb" +05/13/2016,Comedians,@MelBrooks,RT @Jeff_Delgado: This is a good boy. @MelBrooks #youngfrankenstein https://t.co/NxXKULUjRB +05/12/2016,Comedians,@MelBrooks,"RT @TheArtsInPhilly: If you want to LOL with @MelBrooks, check out Mel Brooks: Back in the Saddle Again at @KimmelCenter May 21! https://t.…" +04/19/2016,Comedians,@MelBrooks,Today is the 15th anniversary of the opening night for 'The Producers’ on Broadway https://t.co/Rdm0l9ixaY +04/08/2016,Comedians,@MelBrooks,If you happen to be within 100miles of Denver tomorrow night don’t miss this amazing symphonic tribute to my music! https://t.co/2OWRIXu1iv +04/07/2016,Comedians,@MelBrooks,My appearance on the @david_steinberg podcast is now available wherever it is that one gets a podcast https://t.co/D8JO2wsTH1 +03/24/2016,Comedians,@MelBrooks,I'm flattered but have to decline-- there is enough comedy in the current collection of candidates. https://t.co/RqYXWa1Iwv +03/21/2016,Comedians,@MelBrooks,"Thank you @Jeopardy for naming an entire category on tonight's show ""We Love Mel Brooks."" Good move, I like that guy. #jeopardy" +03/21/2016,Comedians,@MelBrooks,A short clip from a long chat w/ pal @david_steinberg that will be available for your listening pleasure tomorrow - https://t.co/b9JjgTjPZ3 +03/21/2016,Comedians,@MelBrooks,RT @Karaszewski: @MelBrooks gets the crowd to sing Happy 94th Birthday to @carlreiner on Saturday night https://t.co/7ltUqlIDyR +03/11/2016,Comedians,@MelBrooks,RT @hbonow: Gene Wilder and Cleavon Little star in @MelBrooks' Blazing Saddles. #streamingNOW: https://t.co/79Zl2flobF https://t.co/YymV88V… +02/19/2016,Comedians,@MelBrooks,RT @tocap: Come laugh with #MelBrooks AND #BlazingSaddles @tocap 3/19/16 Pre-sale code: BROOKS https://t.co/P1DQ1qAocd https://t.co/qctM9xU… +02/19/2016,Comedians,@MelBrooks,RT @SegerstromArts: Look who's getting back in the saddle. Mel Brooks comes to OC next month. https://t.co/OJG294XnT4 #Comedy https://t.co/… +01/28/2016,Comedians,@MelBrooks,The Raisinets weren't free you know. You both owe me $1.19. https://t.co/QBMS3rnYjw +01/19/2016,Comedians,@MelBrooks,ALERT! Those fools at Amazon are practically giving away my box sets today. https://t.co/UrMhadTLsc +01/15/2016,Comedians,@MelBrooks,Great interview in @CreativeScreen with my son @nickbrooks72 taking about his wonderful film SAM! https://t.co/xrJ9RRaem2 +01/15/2016,Comedians,@MelBrooks,"RT @CreativeScreen: Hollywood icon Mel Brooks discusses his writing process, what makes a good story, and love of Fred Astaire films. https…" +01/14/2016,Comedians,@MelBrooks,Pass me the maple syrup...because I look delicious! https://t.co/RLHhOG4tRS +01/12/2016,Comedians,@MelBrooks,"Bring home the #1 Monster Comedy of the Year, #HotelT2, now on Blu-ray, DVD&VOD. https://t.co/vWIqeOKcx5" +01/08/2016,Comedians,@MelBrooks,"RT @david_steinberg: Comedy Mavens Alert! My new podcast sampler for 2016. With @MelBrooks #MartinShort +@Realeugenelevy https://t.co/…" +12/22/2015,Comedians,@MelBrooks,If you have yet to hear me as Vampa Vlad in #HotelT2 it is now available on Digital https://t.co/RZJR2ldQ7T https://t.co/BFRum2D3oK +12/18/2015,Comedians,@MelBrooks,"RT @hbonow: Get your #StarWars fix instantly. +#Spaceballs is #NOWstreaming on @HBO NOW: https://t.co/78dG6fEfwY https://t.co/PJ2YNd1XCA" +12/18/2015,Comedians,@MelBrooks,It's downright scary when sci-if become reality. https://t.co/8ka8Fo9wbu +12/17/2015,Comedians,@MelBrooks,"RT @kencen: Just Announced! This Feb, the one-and-only @MelBrooks joins us for a hilarious conversation: https://t.co/qSgHnSTpyR https://t.…" +12/17/2015,Comedians,@MelBrooks,This very tall man deserves a nomination for his Oscar-worthy performance in the terrific film @EndOfTourMovie https://t.co/TM0si1HkZ6 +12/16/2015,Comedians,@MelBrooks,Bert Fields has done it again. His new book SHYLOCK: HIS OWN STORY is one of the best portraits of that immortal character you'll ever read. +12/11/2015,Comedians,@MelBrooks,Oh I just love them. They are beautiful! https://t.co/nnyIiehWkh +12/06/2015,Comedians,@MelBrooks,RT @newbevmidnights: Mel Brooks' BLAZING SADDLES screens midnight tonight @newbeverly! https://t.co/m26n7IFKDe +12/05/2015,Comedians,@MelBrooks,"RT @carlreiner: Mel's son Nicholas Brooks's film is tilted ""SAM"" & when U see it listed at a theater near you, go there & enjoy an original…" +11/26/2015,Comedians,@MelBrooks,"I was hoping Brancusi or Jacob Epstein would take a crack at Spaceballs, but failing them you did a GREAT job Blain. https://t.co/zZRQ5gygtu" +11/24/2015,Comedians,@MelBrooks,I vant you to enjoy this: https://t.co/vWIqeOKcx5 https://t.co/bSrYAtug7W +11/17/2015,Comedians,@MelBrooks,I don't think you'll be surprised to know that this one is my favorite https://t.co/2vbCGjn4Un @nerdist @burgermike https://t.co/OdI10QffsX +11/13/2015,Comedians,@MelBrooks,.@EricBAnthony @HollywoodBowl And to get to see Gary Beach back in his Tony winning role as Roger DeBris-what a lucky audience! +11/13/2015,Comedians,@MelBrooks,No thank you! It was so wonderful to see my show performed under the stars at The Hollywood Bowl -a great memory. https://t.co/2k1vje6tH4 +11/11/2015,Comedians,@MelBrooks,I had a good time w/ the filmmakers & crew of SAM at @AFIFEST last night. Great job @nickbrooks72 & @SittingCatProd https://t.co/ALRRbKhmSK +11/05/2015,Comedians,@MelBrooks,Incredibly proud that my son @nickbrooks72 's film SAM will be shown this Monday in LA at the @AFIFEST ! More info: https://t.co/DuAUq8AWpX +11/05/2015,Comedians,@MelBrooks,People get us confused all the time. https://t.co/Xd8E1SlE1V +11/04/2015,Comedians,@MelBrooks,"I love it! But is it just me, or does your Igor look a bit like a grinning Dark Helmet? https://t.co/X1keUAm39u" +11/02/2015,Comedians,@MelBrooks,RT @Jeff_Delgado: Barf!! He's his own best friend! @MelBrooks #fanart #spaceballs #bucklethis #schwartz #johncandy https://t.co/vfzvxiAIG2 +10/29/2015,Comedians,@MelBrooks,The likeness in uncanny! That's one handsome cat. https://t.co/ppzYtJ28JB +10/23/2015,Comedians,@MelBrooks,@Jeff_Delgado @Cloris_Leachman I love it! +10/23/2015,Comedians,@MelBrooks,RT @Jeff_Delgado: Here's my painting of the incredible @Cloris_Leachman from #youngfrankenstein! @MelBrooks #Hewasmyboyfriend #Blücher http… +10/14/2015,Comedians,@MelBrooks,RT @StrazCenter: …but you WILL need a ticket. We have a few left to see @MelBrooks & Blazing Saddles tonight! http://t.co/ru7HfxdpRg http:/… +10/14/2015,Comedians,@MelBrooks,"RT @carlreiner: Folks who live in Nashville, Tampa, Newark & Schenectady are lucky. U can see Mel Brooks strut his comic stuff in your fair…" +10/12/2015,Comedians,@MelBrooks,"RT @SonyPicturesIRL: ""These two smell funny."" +Head over to @entertainmentIE to see @MelBrooks as Vlad! #HotelT2 http://t.co/op7bnX3Nfj http…" +10/10/2015,Comedians,@MelBrooks,RT @TheWallisBH: What an amazing evening with @MelBrooks & @david_steinberg. And our season just started! http://t.co/dFtjXc6KHE http://t.c… +10/08/2015,Comedians,@MelBrooks,A pleasure! https://t.co/omNaWjazqY +10/07/2015,Comedians,@MelBrooks,About to take the stage with my pal @david_steinberg at @TheWallisBH ! http://t.co/ZI6fFonvA3 +10/02/2015,Comedians,@MelBrooks,"The mad men @Harumphwines didn’t get a big enough HARUMPH the first time, so they've released a second vintage! http://t.co/t7WnnvlU7F" +09/30/2015,Comedians,@MelBrooks,...still doesn't make a lick of sense. https://t.co/L9itsOe13y +09/29/2015,Comedians,@MelBrooks,RT @latelateshow: Sooooo @MelBrooks found a cat in our studio last night. http://t.co/56C2gcjbS2 http://t.co/oJ5DTozAA1 +09/25/2015,Comedians,@MelBrooks,Vampa's still got it! #HotelT2 is IN THEATERS NOW! http://t.co/oGmIJrw97n +09/25/2015,Comedians,@MelBrooks,RT @IanKarmel: Today I got to act with @MelBrooks in a sketch I wrote. Gonna be hard to top this one. http://t.co/ulvvHtyebW +09/25/2015,Comedians,@MelBrooks,RT @JKCorden: Tonight! @MelBrooks @NotoriousROD plus Thursday night FOODBALL! CBS 12.35! PS(there might be dancing) sssshhhh x http://t.co/… +09/25/2015,Comedians,@MelBrooks,RT @latelateshow: Tonight we're joined by @NotoriousROD and the legendary @MelBrooks! #LateLateShow +09/25/2015,Comedians,@MelBrooks,Discussing very important and immensely serious official police business with @JKCorden #LateLateShow http://t.co/hUF46wLD9S +09/24/2015,Comedians,@MelBrooks,"Attention Twitter! I'll be with @JKCorden on the @latelateshow tonight! Watch it, record it, and then maybe watch it again tomorrow." +09/22/2015,Comedians,@MelBrooks,I had a great time at the Emmys last night. Congrats to everyone at VEEP on the win! (I'm never doing this again.) http://t.co/K7c3haMbUk +09/21/2015,Comedians,@MelBrooks,I nearly didn't get the role--they said I was too short! https://t.co/AFOfoWoCRS +09/21/2015,Comedians,@MelBrooks,RT @NerdistDotCom: Look at @OfficialJLD taking a selfie with @MelBrooks. @VeepHBO wins Best Comedy Series! #Emmys http://t.co/CyfVYnFbLj +09/21/2015,Comedians,@MelBrooks,RT @TheEmmys: Congrats @VeepHBO on your #Emmy win & who wouldn’t get a selfie w @MelBrooks +09/20/2015,Comedians,@MelBrooks,"RT @THR: “The CIA called me asking about the Cone of Silence,” says Mel Brooks of #GetSmart #THR100 http://t.co/9kgQo0VCpC http://t.co/NB4f…" +09/20/2015,Comedians,@MelBrooks,"You are too sweet-- also I'd misplaced that crown years ago, so nice of you to return it. https://t.co/tOGInqSAsU" +09/18/2015,Comedians,@MelBrooks,The Emmys can't get enough of me! So I'm presenting again Sunday night. (This might turn into a steady job...) https://t.co/V135yp7sNW +09/18/2015,Comedians,@MelBrooks,"RT @david_steinberg: Can't believe I do this for a living. +Oct 6th W @MelBrooks #BeverlyHills http://t.co/NlPdEwsRyF" +09/17/2015,Comedians,@MelBrooks,RT @BLUEOXPEDITION: @MelBrooks our #Spaceballs #cosplay group with @MaxBrooksUKnews . Heck of a nice guy. One of my fav pics of all time! h… +09/14/2015,Comedians,@MelBrooks,RT @FilmsInFilms: Mel Brooks’ Young Frankenstein (1974) in Dennis Dugan’s Big Daddy (1999) http://t.co/fnv2faMkZL @MelBrooks http://t.co/yq… +09/13/2015,Comedians,@MelBrooks,"Well, I lost. BUT! BUT! I managed to get on stage when a show that was ABOUT me won and I accepted the award gratefully on their behalf." +09/12/2015,Comedians,@MelBrooks,So nice meeting you both--big fan! https://t.co/e3FricOm7Q +09/12/2015,Comedians,@MelBrooks,Backstage at The Creative Arts Emmys! I'm told you'll be able to watch it next Sat on FXX (good luck finding that...) http://t.co/MmvMhBcEYa +09/11/2015,Comedians,@MelBrooks,"RT @NYTArchives: Read the 1974 review of Mel Brook's ""Young Frankenstein"" http://t.co/8xbmlo1XBk http://t.co/sA3UBvduRD" +09/03/2015,Comedians,@MelBrooks,"I love it- and your name isn't bad either! ""@FartyMeldmanEyz: I see this HATCHback every now and then @MelBrooks http://t.co/xXSkTIpda5”" +09/03/2015,Comedians,@MelBrooks,"It's twue! ""@Variety: .@melbrooks and @catdeeley are among the presenters at this year's Creative Arts Emmys http://t.co/LBIG52UgUX”" +08/31/2015,Comedians,@MelBrooks,.@soer68 I can't read a word of it--But I love it! Can I get a translation? +08/31/2015,Comedians,@MelBrooks,"RT @soer68: @MelBrooks - a Swedish newpaper thinks the #Spaceballs spaceship, is the best craft to pass a black hole with... http://t.co/o…" +08/27/2015,Comedians,@MelBrooks,"RT @GregProops: Young Frankenstein +Greg Proops Film Club +Friday 8pm @Filmhouse +Tix: http://t.co/MTm0ggxpD7 http://t.co/5Y5tvwZU3o" +08/27/2015,Comedians,@MelBrooks,"RT @TheVinylSugar: Coming Soon: Shaun of the Dead, Young Frankenstein & Fast Times at Ridgemont High Vinyl Idolz! http://t.co/NfZBTufc6C ht…" +08/21/2015,Comedians,@MelBrooks,RT @DrGotts: 'Three cross-eyed men walk into a bar...' One of my favourite shoots this year @MelBrooks @carlreiner @iammrvandy http://t.co/… +08/18/2015,Comedians,@MelBrooks,RT @dinnerpartydnld: Don't miss our parade of famous folks (like @MelBrooks) telling a few eye-roll worthy jokes http://t.co/YKQ9kRKhaz htt… +08/17/2015,Comedians,@MelBrooks,. @denisleary thank you! bless you. I know at least 2 jews who loved Rescue Me. +08/11/2015,Comedians,@MelBrooks,@EzioGreggio I just left Rudy. He's on the floor crying his eyes out. +08/07/2015,Comedians,@MelBrooks,A delicious treat for you all from @ShoutFactory & @ShoutFactoryTV -Their doc on The 2000 Year Old Man is now online! http://t.co/HHk6LOe98h +08/06/2015,Comedians,@MelBrooks,". @EzioGreggio I'm screaming ""MI MANCHI!"" When are you coming to America? When can I see your new nose?" +08/06/2015,Comedians,@MelBrooks,"RT @EzioGreggio: @MelBrooks I'm screaming ""I love youuuuu !!!"" And you ? #MelBrooks #eziogreggio #isgoodtobetheking #bignoses #MelN1 http:/…" +08/06/2015,Comedians,@MelBrooks,"Dear Jon Stewart (@TheDailyShow), What are @carlreiner and I supposed to do every night now?! Well, I guess it's back to McHale's Navy." +07/31/2015,Comedians,@MelBrooks,"RT @carlreiner: Informed Mel of response & said he'd Run With The Bulls if the Bulls & their agent can assure him that he wont be licked, t…" +07/31/2015,Comedians,@MelBrooks,".@carlreiner Thanks for the invite. But when it comes to running with bulls, as Samuel Goldwyn once said, ""Include me out!""" +07/23/2015,Comedians,@MelBrooks,. @jonahray @kcrw Thanks for the plug! Your money will be in the usual place. +07/23/2015,Comedians,@MelBrooks,"RT @jonahray: Today on @kcrw's guest DJ PROJECT I played @MelBrooks, Minor Threat (@dischordrecords), @theweakerthans, @Sleater_Kinney & @f…" +07/20/2015,Comedians,@MelBrooks,".@elonmusk -Super Bowl ad idea: I pull up to a gas station in my new Tesla & say to the attendant, ""Fill'er Up!"" Cut to his mystified face." +07/20/2015,Comedians,@MelBrooks,Loving the tweets from my fans re: @TeslaMotors news. Can't wait to try ludicrous mode on my new FREE car (please send to home address) +07/18/2015,Comedians,@MelBrooks,"RT @MarleyJayAP: Electric car maker @TeslaMotors will add ""ludicrous mode"" acceleration to its Model S. They must like @MelBrooks. http://t…" +07/17/2015,Comedians,@MelBrooks,"Louis CK and I are nominated for Emmys in the same 3 categories. I'm voting for him, but I'd like everybody else to vote for me." +07/16/2015,Comedians,@MelBrooks,"So happy that MEL BROOKS LIVE AT THE GEFFEN is nominated for 2 Emmys! Thank you, thank you! Who knew so many voters had such good taste?" +07/16/2015,Comedians,@MelBrooks,"RT @TheComedians: Congratulations, @MelBrooks! The legend scored a 2015 Emmy Nomination for Outstanding Guest Actor in a Comedy Series. htt…" +07/14/2015,Comedians,@MelBrooks,"So sorry to hear that we lost the great Roger Rees. He may have been my evil Sheriff, but he was one of the sweetest guys to work with." +07/10/2015,Comedians,@MelBrooks,RT @OnePerfectShot: HISTORY OF THE WORLD: PART 1 (1981) Director of Photography: Woody Omens | Director: @MelBrooks http://t.co/RTOUiAox7w +07/02/2018,Comedians,@JimCarrey,Happy Canada Day to all my friends and family up north. I love you dearly! ;^D +07/01/2018,Comedians,@JimCarrey,God Bless You Mr Rosenstein for bravely standing up to the likes of Jim Jordan and Trey Gowdy who seek to destroy t… https://t.co/9nXj9QHloM +06/30/2018,Comedians,@JimCarrey,"If you’re wondering why Fake President @realDonaldTrump doesn’t care about the suffering of children at the border,… https://t.co/XutuMann3I" +06/30/2018,Comedians,@JimCarrey,Laurel or Yanny? Black and blue or white and gold? Alex Jones or Curly from The Three Stooges? NOTHING IS CERTAIN A… https://t.co/b3OoPgt08M +06/28/2018,Comedians,@JimCarrey,https://t.co/PiqCpzMGzG https://t.co/FkKfHeR8uN +06/28/2018,Comedians,@JimCarrey,Mammonite Fundamentalist: Release your 2000 child hostages!! https://t.co/5hl49FAkW2 +06/25/2018,Comedians,@JimCarrey,So I fixed the controversial TIME Magazine cover. This is much more appropriate. You’re welcome @time https://t.co/VMDtGTj5Zy +06/25/2018,Comedians,@JimCarrey,"Christianity, Trump style: “Jesus was a loser. A failed carpenter. He's a savior because he was crucified. I like p… https://t.co/G56reenjz3" +06/24/2018,Comedians,@JimCarrey,I wonder how many Fortune 500 companies (cc: @Apple @PepsiCo @CocaCola @JPMorgan @Citi @Walgreens @GeneralElectric… https://t.co/NYnXao9rwz +06/22/2018,Comedians,@JimCarrey,Who needs NATO when our leader has so much more in common with Russia and North Korea. REGISTER TO VOTE!… https://t.co/XT3mTCIeaB +06/22/2018,Comedians,@JimCarrey,Nothing comforts a federally-abducted refugee child like a photo op with a Slovenian model wearing a coat that says… https://t.co/7bJnucsk3M +06/20/2018,Comedians,@JimCarrey,"40% of the US doesn’t care if Trump deports ppl, kidnaps their babies and uses them as political hostages. The time… https://t.co/Sr0dqAhLmb" +06/19/2018,Comedians,@JimCarrey,"“If the Democrats would just stop the Mueller investigation, build a wall, declare me a God and pass a special law… https://t.co/X8DLs61x9C" +06/19/2018,Comedians,@JimCarrey,And as the sun set upon the White House all its windows danced with glowing eyes — and demons’ voices growled to th… https://t.co/pV7Xz9kgPo +06/17/2018,Comedians,@JimCarrey,"Sanctioned, embraced, normalized by POTUS, evil is pushing the boundaries. Sociopaths have risen to the top. This F… https://t.co/mseqoBJ1ur" +06/14/2018,Comedians,@JimCarrey,Oh how I urine for this all to be over! https://t.co/uzLULtNPLE +06/13/2018,Comedians,@JimCarrey,https://t.co/a5ntyOMdgz +06/12/2018,Comedians,@JimCarrey,Let’s Make A Deal: You’ll be a real world leader. I’ll sway the midterm elections. And together we will save the wo… https://t.co/Ar5ECS1ErQ +06/09/2018,Comedians,@JimCarrey,"Ahhh Milwaukee...where the beer flows like wine! I gotta admit, when I saw this Dumb and Dumber tribute from the Br… https://t.co/NFkPi6JTg7" +06/08/2018,Comedians,@JimCarrey,Congratulations to the Washington Capitals on their Stanley Cup victory! There’s only one thing that would have mad… https://t.co/M5cOymM67x +06/07/2018,Comedians,@JimCarrey,“Give us your huddled masses yearning to breathe free...and we will lock their children in cages with tin-foil blan… https://t.co/an7179pTda +06/05/2018,Comedians,@JimCarrey,"We sit by as children are slaughtered by the hundreds in their classrooms, taken from their refugee parents and loc… https://t.co/HS4lXOdKlY" +06/02/2018,Comedians,@JimCarrey,Don’t worry folks. Melania is fine. They’re probably just reminding her how to play well with others. https://t.co/qwlyNneX0P +06/01/2018,Comedians,@JimCarrey,"The WORST TERROR a child can experience is being taken from their parents. Would blonde, blue-eyed children ever be… https://t.co/0abX65DBz9" +05/31/2018,Comedians,@JimCarrey,"“Hey Dirty Donald, Tricky Dick Nixon, here. The dark one likes the cut of your jib. Taking people’s children away a… https://t.co/GIxXFwyVV7" +05/30/2018,Comedians,@JimCarrey,"The “wall” he intends to build is in our hearts. If you help him, you will wear his mark and your reward will be di… https://t.co/K9RQtY0qte" +05/29/2018,Comedians,@JimCarrey,NFL -- who exploits players for 3yrs then abandons them to a lifetime of pain -- sided with a draft-dodging racist… https://t.co/MsoUXjNbpY +05/27/2018,Comedians,@JimCarrey,"1500 innocent children ripped from their mothers’ arms at our border. Lost in Trump’s “system”. Give us your tired,… https://t.co/Fge6DB8tZc" +05/25/2018,Comedians,@JimCarrey,"A word to the castrato Adam Schiff and other Democrats: If you can’t win a PR war against this mobbed up, dirty, ro… https://t.co/oE9d00ccQ2" +05/22/2018,Comedians,@JimCarrey,Every morning Trump makes special breakfast sandwiches for House Republicans. Devin Nunes eagerly finishes first an… https://t.co/5DA0MsXmAJ +05/21/2018,Comedians,@JimCarrey,New Pledge for a Generation Betrayed. https://t.co/yNM27Eq1dg +05/19/2018,Comedians,@JimCarrey,"And the devil said, “Thanks a bunch Goldilocks. Enjoy the show in Santa Fe tomorrow. Someday, real soon, I’ll have… https://t.co/MBwFXzkRwF" +05/17/2018,Comedians,@JimCarrey,"Robin Williams’ mind was a quantum computer. He was the fastest gun in the West. I loved, respected and admired his… https://t.co/uZTtvBHaQJ" +05/16/2018,Comedians,@JimCarrey,"""Just take the damn meeting and pretend you’re disarming so we can keep this stooge in the White House for another… https://t.co/pzWFHEJ7kb" +05/13/2018,Comedians,@JimCarrey,Someday they’ll say we turned a blind eye to the suffering and slaughter of our own children and gave ourselves ove… https://t.co/kgtJHglBHJ +05/13/2018,Comedians,@JimCarrey,"In his desperate and neverending quest for significance, bleaching the bottom teeth just wasn’t a priority. Giulian… https://t.co/A4i0dzCzGu" +05/11/2018,Comedians,@JimCarrey,Psycho Mike-O ;^P https://t.co/HtarEIER3Y +05/09/2018,Comedians,@JimCarrey,Scam-a-gram ;^P https://t.co/9VqAzfW1fX +05/08/2018,Comedians,@JimCarrey,https://t.co/jQZgiimFYz +05/07/2018,Comedians,@JimCarrey,https://t.co/yREuxCAO46 +05/05/2018,Comedians,@JimCarrey,And let’s not kid ourselves... rotting donkeys stink too. @DNC https://t.co/h5VG6d8YO2 +05/05/2018,Comedians,@JimCarrey,Elephants take a long time to decompose... and the stench can be unbearable. @GOP https://t.co/g9nUN5lh66 +05/03/2018,Comedians,@JimCarrey,"Ukraine stops investigating Manafort (who helped destroy their democracy, and maybe ours) in exchange for a missile… https://t.co/xaoIiX3n2X" +05/02/2018,Comedians,@JimCarrey,Hippocratic oaf ;^P https://t.co/sbCsnTkdVH +04/28/2018,Comedians,@JimCarrey,"“Beware of false prophets, who come to you in sheep's clothing but inwardly are ravenous wolves” + +                 … https://t.co/A6jwbOmHC8" +04/26/2018,Comedians,@JimCarrey,"Later there would be wedgies and wet willies in the Rose Garden. Macron, it seemed, was willing to suffer anything… https://t.co/ZMN2OZC8PR" +04/25/2018,Comedians,@JimCarrey,“Take it. It’s in the contract.” https://t.co/6SecQz84ej +04/25/2018,Comedians,@JimCarrey,I never thought I’d see a tragedy like this in beautiful Toronto. There’s no way to cover your eyes anymore. My hea… https://t.co/bQCTn4BpF8 +04/23/2018,Comedians,@JimCarrey,The road to Trump’s White House was paved with good intentions. ;^\ https://t.co/YzOnLjJsxk +04/22/2018,Comedians,@JimCarrey,Will we end with a bang -- or a cacophony of cow farts? Happy McEarth Day!! ;^) https://t.co/fT6mp4IKpa +04/20/2018,Comedians,@JimCarrey,"Ghouliani: Finally, a face we can trust! 8^¥ https://t.co/IU1IG8sf0T" +04/19/2018,Comedians,@JimCarrey,Auto-moronic ASSphyxiation. ;^P https://t.co/VA6mmkjtk0 +04/18/2018,Comedians,@JimCarrey,"Is there a short bus to take ""all the best people"" to prison? ;^P https://t.co/ooHaGvZqFZ" +04/17/2018,Comedians,@JimCarrey,Sean Manatee: some endangered species aren't worth saving! ;^P #SeanHannity https://t.co/UL2wHRAzJb +04/14/2018,Comedians,@JimCarrey,"“Bombing Syria should interrupt the news cycle for a day or two, Mr. President. Moscow has agreed to act like they’… https://t.co/YNy4t5Mkly" +04/14/2018,Comedians,@JimCarrey,Another great one passes through the doorway. Milos Foreman. What a force. A lovely man. I’m glad we got to play to… https://t.co/1twEwZDF2P +04/13/2018,Comedians,@JimCarrey,Entropy: A Love Story https://t.co/lbddfQagz1 +04/12/2018,Comedians,@JimCarrey,BEWARE THE UNLOVED https://t.co/TvrZ6eobGk +04/11/2018,Comedians,@JimCarrey,"The great Mitzi Shore, owner of the famous Comedy Store, has passed away. No words can express the gratitude I have… https://t.co/5X8wZwAfOp" +04/11/2018,Comedians,@JimCarrey,Congress gets a visit from planet Zuckerberg. “I shall prevent any further election meddling by destroying the Eart… https://t.co/rvcq1WWkAJ +04/10/2018,Comedians,@JimCarrey,"🎵If you’re screwed +and you don’t know +where to go to +why don’t you bomb +where Assad sits +PUTIN ON THE RITZ. 🎶 https://t.co/nEVtWS7oFV" +04/08/2018,Comedians,@JimCarrey,"Liar, liar, evidence on fire! https://t.co/eAby9qqFmW" +04/05/2018,Comedians,@JimCarrey,I looked on Trivago. The cheapest room in Washington is a youth hostel with bunkbeds at $81 a night. The $50 room S… https://t.co/OdUXQUPM5B +04/04/2018,Comedians,@JimCarrey,MLK. The Mountaintop. https://t.co/fzax8L7izE +04/03/2018,Comedians,@JimCarrey,"If u believe wrestling is real u may even believe Fox news, Info Wars and the robotic drones on Sinclair Broadcasti… https://t.co/7zuImOfQm2" +04/02/2018,Comedians,@JimCarrey,"Coming soon! +'National Security Adviser 2: Armageddon Boogaloo' https://t.co/29XgY9WV28" +04/01/2018,Comedians,@JimCarrey,Have A Happy New You ;^) https://t.co/Y46OvEhDvA +03/30/2018,Comedians,@JimCarrey,The story of Jesus is a perfect example of the journey toward salvation through honesty and courage in the face of… https://t.co/vgfLWQ5kwF +03/30/2018,Comedians,@JimCarrey,My soul is not contained within the limits of my body. My body is contained within the limitlessness of my soul. https://t.co/6mvatrfpSo +03/29/2018,Comedians,@JimCarrey,"Dear Smithsonian National Portrait Gallery @NPG, I know it’s early but I’d like to submit this as the official port… https://t.co/CtsLPk6Zn7" +03/28/2018,Comedians,@JimCarrey,They're saying the NRA took Russian money to support the Republican party in the last election. Maybe that's why Tr… https://t.co/ACV3u6nnsJ +03/28/2018,Comedians,@JimCarrey,#teamelephant https://t.co/L8sATd4FaK +03/27/2018,Comedians,@JimCarrey,Did anyone watch 60 minutes last night? Hell of a piece about a poor kid from Greece named Giannis Antetokounmpo wh… https://t.co/ktONsMc9uo +03/24/2018,Comedians,@JimCarrey,Today our nation's youth are demanding their basic human right to go to school without dying in the name of greed.… https://t.co/2FumdiXc1n +03/23/2018,Comedians,@JimCarrey,Fifty Shades of Decay https://t.co/aurfm22ru6 +03/22/2018,Comedians,@JimCarrey,Self-Unmade Man. https://t.co/jxNWfUsrTn +03/21/2018,Comedians,@JimCarrey,Lawyer and lucky charm Joe diGenovia hopes to put Dirty Donald's troubles in the rearview mirror. But the objects i… https://t.co/MZggu20CKb +03/20/2018,Comedians,@JimCarrey,Who are you sharing your life with? #regulatefacebook https://t.co/r7B7Ajkt0V +03/19/2018,Comedians,@JimCarrey,"If you liked my last cartoon you may also enjoy... + +""THE WICKED WITCH OF THE WEST WING AND PUTIN’S FLYING MONKEYS“ https://t.co/slBG7j1s8d" +03/17/2018,Comedians,@JimCarrey,This is the portrait of a so-called Christian whose only purpose in life is to lie for the wicked. Monstrous! https://t.co/MeYLTy1pqb +03/16/2018,Comedians,@JimCarrey,MSNBC does great work but they are acting irresponsibly by constantly going on about Mueller crossing Trump’s ridic… https://t.co/ghVK2pxyzu +03/14/2018,Comedians,@JimCarrey,"Cheers to you Stephen Hawking, the greatest mental athlete of our time. You are all that is! See you around, buddy!… https://t.co/mP7vBlnerC" +03/07/2018,Comedians,@JimCarrey,https://t.co/AOWrqRlBQl +03/06/2018,Comedians,@JimCarrey,https://t.co/R2JGNq1VDR +03/05/2018,Comedians,@JimCarrey,https://t.co/3t8rvxcZWU +03/04/2018,Comedians,@JimCarrey,https://t.co/IzqnypnSFT +03/03/2018,Comedians,@JimCarrey,https://t.co/wAt17RTXBE +03/02/2018,Comedians,@JimCarrey,https://t.co/bXjq38lsGw +03/01/2018,Comedians,@JimCarrey,https://t.co/iuKOBBbesS +02/28/2018,Comedians,@JimCarrey,https://t.co/3faYLZqGJk +02/27/2018,Comedians,@JimCarrey,https://t.co/YIioI2BoZL +02/26/2018,Comedians,@JimCarrey,I'll be fading into the everything for a while. See ya soon. https://t.co/dq6kMllTOr +02/25/2018,Comedians,@JimCarrey,"Oh say, can't you see?! https://t.co/SFAgo4MkgS" +02/24/2018,Comedians,@JimCarrey,Rubio‘s agenda is clear. Keep taking millions from the NRA and wash the blood of innocent children off his hands. A… https://t.co/RKTbEIaDNF +02/24/2018,Comedians,@JimCarrey,Rick Gates pleads GUILTY to CONSPIRACY AGAINST THE UNITED STATES. It’s real! The Trump campaign was CRIMINAL! https://t.co/Hws33Natuz +02/23/2018,Comedians,@JimCarrey,Great news! The President's answer to school shootings is to arm the glee club! ;^P https://t.co/spSnwTo4Hz +02/21/2018,Comedians,@JimCarrey,Some super genius on YouTube is saying I’m a member of the Illuminati. I guess that’s a weird kind of compliment. C… https://t.co/Ki4uAnXC18 +02/19/2018,Comedians,@JimCarrey,"It’s President's Day and Chief Little Hands has been busy tweeting from his golf resort, a chip shot away from the… https://t.co/hYdakmEH8U" +02/15/2018,Comedians,@JimCarrey,Pro-life?! https://t.co/4o5LKF9fvq +02/11/2018,Comedians,@JimCarrey,All who enter his crooked carnival with integrity are doomed to leave without it. General Kelly has been trampled b… https://t.co/H0eJns9Gx6 +02/10/2018,Comedians,@JimCarrey,"Can we continue to rely on the remains of dead animals for food or fuel? Are Big Oil, Coal and Cattle ancient dinos… https://t.co/Sjobbflirh" +02/09/2018,Comedians,@JimCarrey,"It should no longer be a surprise to people that Caveman Trump would hire a man like Porter, who’s accused of beati… https://t.co/Kb9wKMqqUu" +02/06/2018,Comedians,@JimCarrey,I’m dumping my @facebook stock and deleting my page because @facebook profited from Russian interference in our ele… https://t.co/ts3ZEElBD3 +02/05/2018,Comedians,@JimCarrey,Tone deaf Paul Ryan brags that his tax bill is going to make low income voters an extra $1.50 a week! That’s almost… https://t.co/XlagyATIPY +02/05/2018,Comedians,@JimCarrey,"That was one of the greatest Superbowls ever. David slew Goliath, but Goliath has nothing to be ashamed of. Brady i… https://t.co/8qfCWXMsls" +02/04/2018,Comedians,@JimCarrey,"I’ll have my hand on my heart during the anthem today, out of RESPECT for the IDEALS this GREAT NATION is supposed… https://t.co/s1icmt8p5i" +02/03/2018,Comedians,@JimCarrey,“White House delivery boy; can I take your order?!” ;^P https://t.co/PmNeHEIu3j +02/01/2018,Comedians,@JimCarrey,@rustyrockets The word relationship denotes duality - there are no two things. So it should be said that matter IS… https://t.co/2jXQzHmCgY +01/31/2018,Comedians,@JimCarrey,Another RAT leaps from the sinking ship. Swim Willard! SWIM! #TreyGowdy https://t.co/erfuVagGyo +01/31/2018,Comedians,@JimCarrey,“...and the blind shall see and the lame shall walk and the cheats shall inherit the earth!” #StateOfTheUnion https://t.co/BYuzgzLtZF +01/31/2018,Comedians,@JimCarrey,“It’s my party and I’ll cry if I want to!” #StateOfTheUnion https://t.co/5VDr66pbBo +01/30/2018,Comedians,@JimCarrey,STATE OF THE UNION https://t.co/PotdNCvYCX +01/30/2018,Comedians,@JimCarrey,Here’s your secret memo Comrade Nunes. The GOP and Dirty Donald are now a treasonous criminal syndicate; bent on mu… https://t.co/00PYa6K4HH +01/25/2018,Comedians,@JimCarrey,The demon is strong! Exorcism is America’s only option! https://t.co/N1keZNU2nn +01/24/2018,Comedians,@JimCarrey,11 school shootings in 24 days. The new Norm! https://t.co/XHnXqOmTQu +01/18/2018,Comedians,@JimCarrey,For my birthday I want for all of us to move through these difficult times together with grace and honor...and some… https://t.co/MdlZGyqpx7 +01/16/2018,Comedians,@JimCarrey,"Happy MLK day. At a time when hateful state-sanctioned racism is trying to reassert itself, I am thankful for the i… https://t.co/ALolXJPYXn" +01/15/2018,Comedians,@JimCarrey,"Speaking of laundering operations... Dear Mr. Mueller, please remove this unsightly stain from our flag before ther… https://t.co/vGQBvb3UiB" +01/13/2018,Comedians,@JimCarrey,"I woke up this morning in Hawaii with ten minutes to live. It was a false alarm, but a real psychic warning. If we… https://t.co/GuqRCIALgG" +01/13/2018,Comedians,@JimCarrey,The only ‘Sh*%hole’ Trump should worry about is the one under his nose from which he is constantly defecating.… https://t.co/YWF28BHHeD +01/13/2018,Comedians,@JimCarrey,"@iamcardib and @BrunoMars Great song, beautiful memories. Really gave me a kick. Spank you kindly! ;^) + +https://t.co/BCAg6KUaEl" +12/04/2017,Comedians,@JimCarrey,"A 10yr old Canadian boy sends a letter to Carol Burnett asking to be on her TV show and somehow, 45 years later, it… https://t.co/riwut9DVzp" +12/02/2017,Comedians,@JimCarrey,The Trump administration has become the new Donner party. Can’t wait to find out who’s for dinner. ?;^d https://t.co/l26tOEUOeS +11/29/2017,Comedians,@JimCarrey,"The GOP and WH have become sinister conclaves of souless traitors, liars and thieves - a gangrene we must remove so… https://t.co/5h3vrO1WAz" +11/28/2017,Comedians,@JimCarrey,"🎶Oh Susanna, don’t you vote for me, I’m a creep from Alabama with your daughter on my knee!🎵 https://t.co/nYOoTl5l9q" +11/19/2017,Comedians,@JimCarrey,"Tricky Mick, always making sure the devil is in the details. }8^¥ #KillTheBill https://t.co/eFslJCetRn" +11/12/2017,Comedians,@JimCarrey,"They bailed him out, set him up and made him their stooge. With Trump in the WH, Putin may win the 3rd World War wi… https://t.co/gescegeOz6" +11/11/2017,Comedians,@JimCarrey,1968 they backed the enemy. 2016 they put their stooge in the WH. Benedict Trump and his Russian pimp in Vietnam on… https://t.co/yvFcyQw8Ls +11/10/2017,Comedians,@JimCarrey,"I don’t know yet if Roy Moore is guilty of pedophilia, but these allegations along w/ his religious extremism and i… https://t.co/khlO2UqvX4" +11/10/2017,Comedians,@JimCarrey,"Alabama GOP, if u can’t vote 4 Doug Jones at least don’t vote for an alleged pedophile. Do the decent thing and jus… https://t.co/bMHWZQsw8c" +11/10/2017,Comedians,@JimCarrey,"I’m Steve Bannon and I endorse Roy Moore for US Senate.He stands accused of molesting a 14yr old girl,but at least… https://t.co/4QkU9msMFX" +11/03/2017,Comedians,@JimCarrey,Trump is the fear of utter worthlessness hiding in arrogance and brutality. #bewaretheunloved https://t.co/X2or7MuEEK +11/01/2017,Comedians,@JimCarrey,"“Fools! It is the sugary treats through which I will possess your child. Happy Halloween! Muahahahaha!!!” +}8^¥ https://t.co/ES4vZgLrEx" +10/21/2017,Comedians,@JimCarrey,"...and if u said I was nowhere in this picture, you would also be correct. This is a msg rising out of nothing and… https://t.co/X4iXD2IW1i" +10/21/2017,Comedians,@JimCarrey,Thanks MOMA for screening Jim+Andy (Nov 17 on @netflix.) Can u see where I am in this picture? If you said everywhe… https://t.co/uzt400cNAW +09/19/2017,Comedians,@JimCarrey,"While another storm heads r way, craven republican sock puppets in service of shameless greed, try AGAIN 2 ravage h… https://t.co/gUqTcrO3WG" +09/06/2017,Comedians,@JimCarrey,"This dream is so good, I'm tempted to keep sleeping. ;^> https://t.co/cxy9YFSetB" +08/27/2017,Comedians,@JimCarrey,Ain't it great how violence can still unite us all? #enjoythefight #humansarestupid ;^P https://t.co/plLP0BFWZD +08/23/2017,Comedians,@JimCarrey,You never looked better Charlottesville! ;^) https://t.co/lCBZ0hsGmD +08/21/2017,Comedians,@JimCarrey,"While watching the eclipse, I lifted my coffee cup and this is what I saw. Coincidence? I think not! Enjoy the toge… https://t.co/2Ux10bDQUk" +08/20/2017,Comedians,@JimCarrey,"That fool was no dummy. Jerry Lewis was an undeniable genius an unfathomable blessing, comedy's absolute! I am beca… https://t.co/dtERXbMqdo" +08/18/2017,Comedians,@JimCarrey,https://t.co/HgfsxWZ99C +08/16/2017,Comedians,@JimCarrey,WHAT WILL IT TAKE for the GOP to throw this madman overboard? HOW LOW MUST WE SINK before REPS become patriotic? 8^Q https://t.co/9EJVYD5qOP +08/15/2017,Comedians,@JimCarrey,"Welcome to the last gasp of toxic white insecurity. Woe to them who blame other races for their laziness, and lack… https://t.co/W6pmT80ckD" +08/13/2017,Comedians,@JimCarrey,"When evil is not strongly denounced by the state, this is where it leads, ""Mr. President""! ;^{ https://t.co/jPbcFAwfq7" +08/12/2017,Comedians,@JimCarrey,"Season finale of I'm Dying Up Here this Sunday! What a magical time it's been. My thanks to cast and crew, a stella… https://t.co/A5iPmRlT20" +08/08/2017,Comedians,@JimCarrey,Thx 4 ur kind words @KingJames.I'd be honored 2 hang with u any time.Can u imagine 2 King James' in the same room?Sss'make it happen! ?;^•} +08/03/2017,Comedians,@JimCarrey,Tonight in West Virginia @realDonaldTrump is expected to EAT A BABY on stage to the delight of his zombie base.… https://t.co/9wBexEFs4q +07/29/2017,Comedians,@JimCarrey,Spanks 2 @justforlaughs for hosting me and cast of @SHO_DyingUpHere. Always great 2 be around my twisted comedy kin. https://t.co/owXLdOcoq2 +07/23/2017,Comedians,@JimCarrey,I have no idea where this picture came from but I fully endorse this artistic reappropriation of my 1996 film The C… https://t.co/tGgxu1GHOD +07/17/2017,Comedians,@JimCarrey,Much love sweet Martin. You were one of the greats. Enjoy forever. ;^) https://t.co/IMAPeJXPCe +07/05/2017,Comedians,@JimCarrey,There is something wrong with our environment. Governors have begun beaching themselves! ?;^P https://t.co/BXhYIQ42Jy +06/26/2017,Comedians,@JimCarrey,"EAST COAST! You have 5 minutes until @SHO_DyingUpHere +WEST COAST! You still have 3 hours to get plastic surgery! HU… https://t.co/usmxnTRFc4" +06/23/2017,Comedians,@JimCarrey,"I don't mean to toot my own horn, but HONK watch @SHO_DyingUpHere Sunday at HONK 10pm. It's ""Hollywood brotha!"" ;^P https://t.co/F21YXuRjbe" +06/11/2017,Comedians,@JimCarrey,When I was a kid POW BLAM Adam West was Batman! With his pal Robin and his tongue planted firmly in his cheek he brought me so much joy. ;^} +06/02/2017,Comedians,@JimCarrey,Let's just get our priorities straight - this whole Kathy Griffin thing is covfefe. ;^P +06/01/2017,Comedians,@JimCarrey,So proud of @sho_dyinguphere -a new series I exec produced for @Showtime THIS Sun 10pm. Watch how we put the ‘fun'… https://t.co/j4qWXICIWA +05/31/2017,Comedians,@JimCarrey,@Eminem ?B^] https://t.co/r9yfOLkbvW +05/21/2017,Comedians,@JimCarrey,This is the guitar that Chris Cornell and Soundgarden gave to me the night we did SNL together. A very special man. https://t.co/waPpDdOWvx +05/09/2017,Comedians,@JimCarrey,TRUMP FIRES COMEY! ABSOLUTE OBSTRUCTION OF JUSTICE! ABSOLUTE EVIL! ?8^¥ +04/27/2017,Comedians,@JimCarrey,RT NEWS FLASH!TRUMP NEVER CARED ABOUT GOVERNING! He sees the world as his piñata and the presidency as a big stick!… https://t.co/O4HGCungFp +04/21/2017,Comedians,@JimCarrey,;^) https://t.co/C6yrCIiQFl +04/15/2017,Comedians,@JimCarrey,Happy Easter or Passover or whatever reason you can find to feel warm and fuzzy. =(:•} https://t.co/Q5f0KT0yhq +04/06/2017,Comedians,@JimCarrey,"Don once begged me for a couple of bucks then told me to twist myself into a pretzel. Ego slayer! Comic Everest! Spank you, Mr Rickles. ;^)" +04/04/2017,Comedians,@JimCarrey,MORE MORE MORE MORE! A mantra to the end of the world.  3^( https://t.co/dh5hXe69Ux +04/01/2017,Comedians,@JimCarrey,"Give me your tired, your poor, your huddled masses...APRIL FOOOOLS!!! ;^P +('No Vacancy,' acrylic and neon on canva… https://t.co/AIn45HKOdi" +03/31/2017,Comedians,@JimCarrey,"Every citizen under 45, watch ""All the President's Men,"" a genius film about the most corrupt White House in US his… https://t.co/Ig5t0kObaN" +03/31/2017,Comedians,@JimCarrey,"""I'm gonna make great deals. GREAT GREAT DEALS!"" ();^O https://t.co/31vvhDWUj3" +03/30/2017,Comedians,@JimCarrey,I'm no lifeguard but I know a drowning man when I see one. ;^P https://t.co/W5kGhD8uIO +03/29/2017,Comedians,@JimCarrey,Ugly American Bill O'Reilly and his enablers at the Fox misinformation factory have again shown their true colors -… https://t.co/dUBLV6RZky +03/28/2017,Comedians,@JimCarrey,The Trump Presidency is a botched Russian black op and these people are NOT helping. ;^P https://t.co/hkvd01iXbr +03/27/2017,Comedians,@JimCarrey,The rotting food in @PressSec Sean Spicer's teeth is distracting and makes it hard to absorb today's WH misinformat… https://t.co/8OA7yj4y8j +03/24/2017,Comedians,@JimCarrey,;^P https://t.co/OKmF3aAJ3U +03/21/2017,Comedians,@JimCarrey,A President under FBI investigation for treason should not get a Supreme Court appointment. ;^| https://t.co/b1f05HdL0W +01/25/2017,Comedians,@JimCarrey,"Voter fraud is misdirection from what's really happening in Trump's +America. Intimidation, repression and intoleran… https://t.co/wK4CItcar5" +01/24/2017,Comedians,@JimCarrey,@netnole I think you need a hug Mikey. ;^P +01/23/2017,Comedians,@JimCarrey,"Dear @BarackObama - Already, I miss your intelligence, integrity, elegance and humor. #RESPECT ;^} https://t.co/XBSM5v3Oqc" +11/16/2016,Comedians,@JimCarrey,I'm returning to love. Something I will always control. ;^P https://t.co/Qk71P9dOcn +11/15/2016,Comedians,@JimCarrey,"Don't worry. What we are is bigger than our differences, bigger than our president, bigger than our red, white and… https://t.co/FdKzquObg6" +11/09/2016,Comedians,@JimCarrey,"Don't worry folks as long as the Sun is revolving around the Earth, we'll be fine! ;^P https://t.co/TzJufTIJHm" +11/08/2016,Comedians,@JimCarrey,"Hey check out my new gig as cartoonist at @Awl and be sure to vote. ;^P +https://t.co/PTGYIAMLAk" +11/07/2016,Comedians,@JimCarrey,Vote for goodness' sake! ;^) https://t.co/WJmiY3KFjZ +11/02/2016,Comedians,@JimCarrey,"Hi @Adele. It's Jim from the other side. Weird coincidence, I dressed up as one of your roadies for Halloween. I ab… https://t.co/lTjqcrd8Uu" +10/26/2016,Comedians,@JimCarrey,"Vote for @HillaryClinton this election day or no pussy will be safe. ₍˄·͈༝·͈˄₎◞ +#StrongerTogether #HillaryClinton… https://t.co/cHPayblJfd" +10/20/2016,Comedians,@JimCarrey,"When you stand solidly with those who bring love and goodwill to the world,every challenge makes you stronger,deepe… https://t.co/NtX9oTOrIF" +08/29/2016,Comedians,@JimCarrey,Gene Wilder was one of the funniest and sweetest energies ever to take a human form. If there's a heaven he has a Golden Ticket. ;^) +07/15/2016,Comedians,@JimCarrey,Remember this old song? 8^} https://t.co/a8DlWzD8nj +07/14/2016,Comedians,@JimCarrey,Good news. ;^D https://t.co/PFNznuQduG +04/14/2016,Comedians,@JimCarrey,Save our vaccines! Save our kids! Let the truth be known! https://t.co/zM9jupHmkF https://t.co/8zphbim3xV https://t.co/24Ejz5XZNH +04/11/2016,Comedians,@JimCarrey,"I love LA and all the kooks who live here. If u read otherwise, it's just the mischief of those who weren't their parents' 1st priority.?;^P" +04/07/2016,Comedians,@JimCarrey,I saw #Hamilton last night on Broadway. An absolute work of genius. Restores your faith in humanity. The kingdom of heaven is among us. ;^D +03/30/2016,Comedians,@JimCarrey,"THEY’RE HEEEEEEEEERE!!! +#Paranormalsnacktivity =8^O https://t.co/QemZY99BB5" +03/26/2016,Comedians,@JimCarrey,This morning for breakfast I had 'Love' disguised as quinoa with almond milk and coconunt sugar. #YUMMYYYYY!!! ?;^d https://t.co/ZGKr0tijkg +03/18/2016,Comedians,@JimCarrey,"HEY DUMMIES, LEAVE ME OUT OF IT! ;^P #Americonundrum https://t.co/nI7Amohz5c" +03/10/2016,Comedians,@JimCarrey,"Thank you @KimKardashian for showing us where you poop, and what you poop with. You must have very big poops! ;^•" +03/07/2016,Comedians,@JimCarrey,Jeez... I take a few months off and the country turns into a zoo where the main attraction is an ape who flings his sh*t at people. \};^•) +08/31/2015,Comedians,@JimCarrey,This is who I really am and that's my body in the middle. ;^) http://t.co/35qO6b1fWD +08/20/2015,Comedians,@JimCarrey,Nice move @RealHughJackman Now watch me make a meal out of your biggest role. ;^> http://t.co/GUfHB2RR4L +08/12/2015,Comedians,@JimCarrey,Do flowers have feelings? ;^\ http://t.co/dyujcu3FPH +08/11/2015,Comedians,@JimCarrey,Cellphone picture of wall phone. Feel me? B^\ http://t.co/aXycanGOnt +07/01/2018,Comedians,@KevinHart4real,Thank you Salt Lake City.....I love & appreciate ya!!!! #irresponsibletour #comedicrockstarshit #makingtheworldlaugh https://t.co/57HlTIHFKa +07/01/2018,Comedians,@KevinHart4real,"The energy that I have been witnessing from my fans on my ""Irresponsible Tour"" has honestly been mind blowing. I ju… https://t.co/iouD93k0cn" +07/01/2018,Comedians,@KevinHart4real,I genuinely love & appreciate my fans!!!! All I can say is WOOOOOOOW!!!! This is definitely my best work to date!!!… https://t.co/jGN1UgIutU +07/01/2018,Comedians,@KevinHart4real,It's Showtime Salt Lake City #irresponsibletour #LilSwag #comedicrockstarshit https://t.co/7n5V8YCc0n +06/30/2018,Comedians,@KevinHart4real,I just touched down Salt Lake City....Tonight is going to be EPIC. #irresponsibletour #comedicrockstarshit… https://t.co/UsLAf7DbOA +06/30/2018,Comedians,@KevinHart4real,Let's gooooooooo Salt Lake City. I'm on my way damn it!!!!! It's going down tonight people....Get your tickets to m… https://t.co/BaWwSBdeTM +06/30/2018,Comedians,@KevinHart4real,Facial expressions are everything damn it😂😂😂😂 #comedicrockstarshit #irresponsibletour #DopePic https://t.co/qU8gHYoxA3 +06/30/2018,Comedians,@KevinHart4real,Great music @Drake ....Proud of you man. Congrats on another amazing album!!!!! https://t.co/Ac3j79WshE +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/pOl38CkwlY +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/PPgpi1UKx7 +06/30/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/o6bFdhvlg9 +06/30/2018,Comedians,@KevinHart4real,RT @ARGreen_Sr: Kevin Hart’s Irresponsible Tour 2018 | Denver — epic @KevinHart4real https://t.co/Z0BfXqtz6G +06/29/2018,Comedians,@KevinHart4real,Caption this 😂😂😂😂😂 #irresponsibleTour #ComedicRockStarShit https://t.co/EAeh1wHLmk +06/29/2018,Comedians,@KevinHart4real,Morning work #HustleHart #MoveWithHart #Progression https://t.co/DjHGGF8HHu +06/29/2018,Comedians,@KevinHart4real,It's a celebration bitches 🍹🍹🥃🥃🥃🔥🔥🔥🔥🔥🍻🍻🍻🍻🍻🤯🤯🤯🤯🤯🤯🕺🏾🕺🏾🕺🏾🕺🏾🕺🏾 https://t.co/sg5M0UFXgd +06/29/2018,Comedians,@KevinHart4real,#TBT Priceless moments #Harts https://t.co/cowWwKilXN +06/28/2018,Comedians,@KevinHart4real,My OFFICIAL bday party and #IrresponsibleTour after party is going down Friday July 6th at @draislv with a special… https://t.co/xp7MNYKiRH +06/28/2018,Comedians,@KevinHart4real,#TBT This was one of my favorite episodes from RHOH....I tried to replace my friends with what I thought were bette… https://t.co/gq16zMHbiq +06/27/2018,Comedians,@KevinHart4real,#WCW #Harts https://t.co/DmHo6B8coX +06/27/2018,Comedians,@KevinHart4real,NEW SERIES ALERT! What would happen if Hollywood (boulevard)'s not-so-favorite superheroes started turning up dead?… https://t.co/eMiaYR6eKy +06/25/2018,Comedians,@KevinHart4real,Major thank you to my ferrari family for getting my B Day gift to me in time. I appreciate ya thegoldenjew22 .....… https://t.co/uK33walBqc +06/25/2018,Comedians,@KevinHart4real,Stand Up Philadelphia.... #CityOfBrotherlyLove https://t.co/yWjV6zFb83 +06/25/2018,Comedians,@KevinHart4real,"RT @questlove: Illadelph @markellef & @kevinhart4real & @blackthought @questlove & liluzivert #BETawards #BlackExcellence. @ Los Angeles, C…" +06/25/2018,Comedians,@KevinHart4real,#LilSwag styled by @AshleyNorth https://t.co/EvsHpTusUY +06/25/2018,Comedians,@KevinHart4real,So happy & proud of my brother @MeekMill .....Great performance...Great message...STAND UP PHILADELPHIA!!!!! +06/25/2018,Comedians,@KevinHart4real,RT @cthagod: And best use of his platform tonight goes to Meek Mill. #BetAwards +06/25/2018,Comedians,@KevinHart4real,#dopepic ....Shot by kevinkwan327 https://t.co/IsIx5lyZ7L +06/24/2018,Comedians,@KevinHart4real,Sunday Funday with the family!!! Wishing u all a happy & blessed day. #Harts #LiveLoveLaugh #SundayFunday https://t.co/IFbyH2u0ds +06/24/2018,Comedians,@KevinHart4real,It's just different....The connection that I have with my fans while I'm on that stage is unbelievable....Thank you… https://t.co/4MQDhE5yDR +06/24/2018,Comedians,@KevinHart4real,#Brothers https://t.co/siV97nDHJX +06/24/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/8FLYQdzqvK +06/24/2018,Comedians,@KevinHart4real,"RT @2thisispablo: @KevinHart4real was amazing tonight!! +Definitely one of the best comedians #IrresponsibleTour" +06/24/2018,Comedians,@KevinHart4real,RT @AJenkins95: @KevinHart4real Haven’t laughed so hard in my life. My girlfriend literally peed herself. Well done 👏🏽 #IrresponsibleTour +06/24/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QZuwIpIqTD +06/24/2018,Comedians,@KevinHart4real,RT @Lovingmylife562: Went to @KevinHart4real #IrresponsibleTour in Irvine...omg it was hilarious...I literally cried from laughing so hard!… +06/24/2018,Comedians,@KevinHart4real,RT @Brandi_lynn87: @KevinHart4real was hilarious af tonight in Irvine. 🤣 #IrresponsibleTour #kevinhart +06/24/2018,Comedians,@KevinHart4real,It's Dravet Syndrome Awareness Day.....We love you so much Taylen. Watching our brother @spankhorton & sister mua_… https://t.co/RJYFm2yMme +06/23/2018,Comedians,@KevinHart4real,Let's gooooooooo Irvine Ca....Im headed your way damn it. Tonight's show will be a show to remember for ages people… https://t.co/fyihtGEfxu +06/23/2018,Comedians,@KevinHart4real,RT @pinksapphire84: So about last night... Got to see @KevinHart4real live! What an awesome show. He had me laughing the entire time. Thank… +06/23/2018,Comedians,@KevinHart4real,Hi...My name is Kevin Hart and I love making people laugh.... #irresponsibletour #comedicrockstarshit… https://t.co/eJ1bvTyeYa +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/bC2FUiktBG +06/23/2018,Comedians,@KevinHart4real,"RT @StevenAkabwayi: The show that had my hands up +I like the God given talent in you @KevinHart4real #irresponsibletour" +06/23/2018,Comedians,@KevinHart4real,"RT @planetneeese: Thanks for the laughs tonight, @KevinHart4real. New material was awesome!💯 #TheIrresponsibleTour https://t.co/WUcvbMqNE7" +06/23/2018,Comedians,@KevinHart4real,RT @SuperstarNini: Was “SO EXCITED!!!” To see @KevinHart4real tonight!!! Thanks for a great show!!!! +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/WdpwSZAz2E +06/23/2018,Comedians,@KevinHart4real,RT @QueenGruuuumpy: @KevinHart4real your show was worth walking up those hill in heels. #TheIrresponsibleTour #BucketListCheckOff ✅🤗💙 +06/23/2018,Comedians,@KevinHart4real,I appreciate you Concord Ca....Thank you for making tonight special. Love & laughter was definitely in the air. #IrresponsibleTour +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QsSZU2WyhM +06/23/2018,Comedians,@KevinHart4real,RT @keepitjaay: @KevinHart4real this show was unbelievable!!!!! 🔥🔥🔥🔥🔥 #TheIrresponsibleTour +06/23/2018,Comedians,@KevinHart4real,RT @Nickg_16: I’ve never laughed so much before until tonight! @KevinHart4real what a show! Dream come true to see you perform! #Irrespons… +06/23/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/LzoHGMGGO7 +06/23/2018,Comedians,@KevinHart4real,4 Nominations for this year's @teenchoicefox awards....WOOOOOOOW!!! Make sure y'all go to https://t.co/Juomy8fJUd a… https://t.co/Yom53O4dcm +06/22/2018,Comedians,@KevinHart4real,#Lilswag #comedicrockstarshit #irresponsibletour https://t.co/09S8Dv7dn4 +06/22/2018,Comedians,@KevinHart4real,Make sure y'all support my brother icecube by checking out season 2 of @thebig3. Im happy as hell for you man. I kn… https://t.co/Nb2CCWSP36 +06/22/2018,Comedians,@KevinHart4real,I'm well aware...Thats why I'm coming back. Can't wait to get back over there and deliver some more funny https://t.co/fzc9DRdrSZ +06/22/2018,Comedians,@KevinHart4real,Let's gooooooooo Singapore....Im coming your way damn it!!!!! #IrresponsibleTour https://t.co/4zkUex8T86 +06/22/2018,Comedians,@KevinHart4real,"Let's gooooooooo Concord Ca....My ""Irresponsible Tour"" is in your city tonight damn it!!!!! Get yo tickets ASAP!!!!! https://t.co/OGAE193OBr" +06/22/2018,Comedians,@KevinHart4real,Laugh damn it....It's good for your soul!!! Major thank you to Mountain View Ca....We had the shoreline amphitheatr… https://t.co/8e75eoTVyw +06/22/2018,Comedians,@KevinHart4real,RT @qu33nofhearts02: @kevinhart4real is too damn funny I was cracking up the whole time!! AMAZING SHOW!! #TheIrresponsibleTour +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/xExf1f3YVf +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/3sQsY3z4O0 +06/22/2018,Comedians,@KevinHart4real,RT @kavinm95: Kevin Hart’s #IrresponsibleTour was 🔥🔥🔥 well done @KevinHart4real https://t.co/lJuBIRBoai +06/22/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/Qj3Xr7UdpR +06/22/2018,Comedians,@KevinHart4real,RT @Official_tylerg: Best day EVER!!!!! MY DREAM CAME TRUE!!!! Mr. @KevinHart4real bought my PAINTING!!!!!!!!!!!! Thank you Mr. @SpankHorto… +06/22/2018,Comedians,@KevinHart4real,Hitting theaters everywhere sept 28th......Mark your calendars damn it!!!!! #ComedyAtItsBest #NightSchool https://t.co/TMfWoMLtNA +06/22/2018,Comedians,@KevinHart4real,Kevin Hart: Irresponsible Tour Live from San Jose CA https://t.co/FRYH1Qf5cu +06/19/2018,Comedians,@KevinHart4real,"Irvine CA I'm bringing my ""Irresponsible Tour"" your way this weekend damn it....Its going down this Saturday. GET Y… https://t.co/isz3QWnj9B" +06/19/2018,Comedians,@KevinHart4real,"RT @TKOCBS: Summer, @KevinHart4real, and a whole lot of competition. Are YOU ready? #TKO https://t.co/nssNKp8Naa" +06/19/2018,Comedians,@KevinHart4real,"Mountain View Ca I am heading your way this Thursday damn it....My ""Irresponsible Tour"" will be invading your city… https://t.co/eUWTfY2WfK" +06/17/2018,Comedians,@KevinHart4real,Happy Fathers Day! #Harts https://t.co/XdefVaQye2 +06/17/2018,Comedians,@KevinHart4real,"If you need to talk to a Dad, follow this link right now!!! https://t.co/bgR72m1jso 😂😂😂 #FathersDay" +06/17/2018,Comedians,@KevinHart4real,Happy Father's to me damn it 😂😂😂😂 #DaddySwag https://t.co/3resN1gvcH +06/17/2018,Comedians,@KevinHart4real,Happy Father's Day to my Dad & My brother.....I… https://t.co/RCQTt2yJGr +06/17/2018,Comedians,@KevinHart4real,"RT @livenationsg: WE 👏CAN'T 👏WAIT 👏 + +Here's the seat map for @KevinHart4real #IrresponsibleTour in Singapore! Save your spot now and access…" +06/17/2018,Comedians,@KevinHart4real,RT @kawalzz: man I haven’t laughed like that in ages. Thank you @KevinHart4real for that amazing and hilarious show!! Definitely worth all… +06/17/2018,Comedians,@KevinHart4real,RT @Kingkevin59: @KevinHart4real thank you for giving me value for my money still cracking up right now. You my man are a goat ...#Irrespon… +06/17/2018,Comedians,@KevinHart4real,RT @Amar_Ryan: @KevinHart4real put on an unreal show tonight! I don’t think I’ve laughed that hard in a while! #IrresponsibleTour https://t… +06/17/2018,Comedians,@KevinHart4real,"RT @aisling_laura: Laughed till I cried at @KevinHart4real tonight, nothing like a grest comedy gig 🙌🏻 #IrresponsibleTour" +06/17/2018,Comedians,@KevinHart4real,"RT @ryan_alcos: @KevinHart4real was friggen hilarious, had me crying! If you get the opportunity to go see him, I HIGHLY recommend!😂😂 https…" +06/17/2018,Comedians,@KevinHart4real,Thank you Vancouver.... #irresponsibletour… https://t.co/0cCwOK9Z32 +06/17/2018,Comedians,@KevinHart4real,"RT @ToniNehl: Seeing @KevinHart4real live was amazing, best way to end finals week! 12/10 highly recommend it #irresponsibletour" +06/16/2018,Comedians,@KevinHart4real,I'm a man of the people...I love my fans. I truly mean it when I say it!!!!! https://t.co/XaIWUzWnQe +06/16/2018,Comedians,@KevinHart4real,#irresponsibletour https://t.co/NIvlBOLkxi +06/16/2018,Comedians,@KevinHart4real,Walking around and getting it with my brothers… https://t.co/ehAHQnqbbg +06/16/2018,Comedians,@KevinHart4real,I'm on my way Vancouver .....Let's make tonight special damn it....If u don't have your tickets get them Noooowwwww… https://t.co/oggpQ6U9D9 +06/16/2018,Comedians,@KevinHart4real,I can’t wait for sept. This moving is funny as hell damn it!!!! Get ready people #NightSchool https://t.co/Hp6lg46Mc8 +06/16/2018,Comedians,@KevinHart4real,Wow...I genuinely appreciate you. That touched my heart. I’m hoping that she can make Vancouver as well https://t.co/puRuJCKUvt +06/16/2018,Comedians,@KevinHart4real,RT @kobebechtel20: @KevinHart4real and the Plastic Cup Boyz put on an amazing show tonight! Unbelievable! #IrresponibleTour +06/16/2018,Comedians,@KevinHart4real,They did such a good handling that situation. https://t.co/XLrfp2L6Te +06/16/2018,Comedians,@KevinHart4real,I was just told that she is doing much better...God is good https://t.co/CDue5FlnJV +06/16/2018,Comedians,@KevinHart4real,RT @krisi_stull: Just saw the Irresponsible Tour here in Portland!! @KevinHart4real did an amazing job ❤️❤️ I was laughing the whole way th… +06/16/2018,Comedians,@KevinHart4real,RT @KassAss21: Im pretty sure that for the first time ever I experienced a face cramp from laughing so hard thanks to @KevinHart4real 😂🤦🏻‍♀️ +06/16/2018,Comedians,@KevinHart4real,RT @brianhatch93: @KevinHart4real Wife and i came down to portland from seattle to watch #irrisponsible tour for our 9 year anniversary. Y… +06/16/2018,Comedians,@KevinHart4real,RT @kevjksull: I was so exxcciitttteeeddd to see @KevinHart4real tonight on the #irresponsibletour ! My whole face hurts from laughing the… +06/16/2018,Comedians,@KevinHart4real,RT @sammyseno: Kevin Hart is a true showman. One of the best shows I have ever seen. @KevinHart4real thanks for coming to Portland! +06/16/2018,Comedians,@KevinHart4real,RT @MattSanders132: @KevinHart4real was unreal tonight in Portland. 🙌🏻 Just what wifey and I needed. +06/16/2018,Comedians,@KevinHart4real,Thank you Portland....Tonight was dope as hell.… https://t.co/BB1mLsx2D6 +06/16/2018,Comedians,@KevinHart4real,It’s showtime Portland....Let’s goooooo… https://t.co/hYM4IdDtF6 +06/15/2018,Comedians,@KevinHart4real,Let’s gooooooo Portland....It’s almost showtime people....If u don’t have ur tickets get them NOOOOWWWW!!!! https://t.co/FbFzTMXUmp +06/15/2018,Comedians,@KevinHart4real,Thank you Seattle....Last night was amazing. As… https://t.co/dmAeQyQZ7c +06/15/2018,Comedians,@KevinHart4real,Shot by kevinkwan327 #DopePic https://t.co/bmrzCM3K1g +06/15/2018,Comedians,@KevinHart4real,Thank you Taylor....You are a true rockstar.… https://t.co/DaTSJMfo4s +06/14/2018,Comedians,@KevinHart4real,#TBT Me & My brother icecube ....That day was a… https://t.co/Uq4YrsJF7y +06/14/2018,Comedians,@KevinHart4real,Breaking news people....I think I grew a little bit. I just had to add a line on my height wall...This is HUGE! I a… https://t.co/vp2ok8lxZi +06/14/2018,Comedians,@KevinHart4real,Morning vibes .....Roxy X Baby Zo #Harts https://t.co/srSysXl5je +06/14/2018,Comedians,@KevinHart4real,#TBT #Harts https://t.co/d2aX5ELC8w +06/12/2018,Comedians,@KevinHart4real,Caption this 😂😂😂😂😂 #irresponsibletour… https://t.co/eK7WKFzjnx +06/12/2018,Comedians,@KevinHart4real,Tuesday morning dog work with @caliK9 ....So… https://t.co/bsMiXMdiib +06/12/2018,Comedians,@KevinHart4real,#DopePic https://t.co/RBk9poa07i +06/12/2018,Comedians,@KevinHart4real,#Facts https://t.co/JjiJIDuuD7 +06/11/2018,Comedians,@KevinHart4real,#dopepic #comedicrockstarshit #Lilswag https://t.co/5Rdf0EqPhL +06/11/2018,Comedians,@KevinHart4real,RT @olivia_136haney: for @KevinHart4real to make a whole room roll in laughter is such an amazing thing to see! Truly a blessing to see you… +06/11/2018,Comedians,@KevinHart4real,RT @cshaw_rx: @KevinHart4real was FANTASTIC tonight at the Idaho Center. Laughed hysterically the whole time! 😂 I literally cannot wait to… +06/11/2018,Comedians,@KevinHart4real,"RT @jerseyprincess6: I legit haven't laughed as hard as I did tonight in a long ass time, @KevinHart4real is amazing! What the world needs…" +06/11/2018,Comedians,@KevinHart4real,"RT @cheyannbartlett: @KevinHart4real Irresponsible Tour was so awesome 😎 funniest shit I’ve ever heard, I was crying laughing" +06/11/2018,Comedians,@KevinHart4real,RT @tinyrik: My face hurts from laughing non-stop for 3 hours! @KevinHart4real thanks for keeping it 💯. The #IrresponsibleTour was amazing! +06/10/2018,Comedians,@KevinHart4real,It's a celebration of laughter people!!!!!… https://t.co/huwUSQxIBP +06/10/2018,Comedians,@KevinHart4real,A quick recap of one of the biggest nights of my… https://t.co/orcN2nDcBb +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/ELB8VvuKyx +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/DQ2MxUcuzb +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/quMB0cKtMF +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/QL1rJlmK36 +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/fYepox6FgT +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/arrJb1a8bo +06/10/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/cQi60nQlRY +06/10/2018,Comedians,@KevinHart4real,RT @holly_gervais: @KevinHart4real & the plastic cup boyz did a phenomenal show 👌🏻 my stomach aches from laughing so hard #IrresponsibleTo… +06/09/2018,Comedians,@KevinHart4real,😂😂😂😂😂 This picture just makes me happy. Look at… https://t.co/q3vZT1B7EI +06/09/2018,Comedians,@KevinHart4real,Just touched down in Edmonton AB and I am beyond… https://t.co/1yTSgaHzXI +06/09/2018,Comedians,@KevinHart4real,"Boise ID my ""Irresponsible Tour"" will be in your city tomorrow night...Get your tickets and come laugh with me damn… https://t.co/UChY5hRsCa" +06/09/2018,Comedians,@KevinHart4real,Edmonton AB I am on my way damn it!!!! Let's… https://t.co/mopBs805fW +06/09/2018,Comedians,@KevinHart4real,Edmonton AB I am on my way damn it....If you don't have your tickets for tonight's show I suggest you get them NOOO… https://t.co/iuFmugAoFx +06/09/2018,Comedians,@KevinHart4real,There is no ELEVATOR to success people....You have to take the stairs!!!! Realest quote that I ever read which is why I had to repost it!!!! +06/09/2018,Comedians,@KevinHart4real,It's a great read....U will love it!!!! https://t.co/4Y8ORdDQPe +06/09/2018,Comedians,@KevinHart4real,Marathon #2 is right around the corner....While… https://t.co/qIwFDDMlhe +06/09/2018,Comedians,@KevinHart4real,#irresponsibletour #DopePic #Harts https://t.co/3eBhaPjMc1 +06/09/2018,Comedians,@KevinHart4real,RT @dominGOLDmonsta: BOOM! Brilliance strikes again! Thank you @KevinHart4real for setting off the comicalbomb and making me die of laughte… +06/09/2018,Comedians,@KevinHart4real,RT @19Stephd: @KevinHart4real I cried from laughing! My cheeks hurt! Thank you for coming #Calgary #IrresponsibleTour +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/057Xm55qNP +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/I6ejMKxgcc +06/09/2018,Comedians,@KevinHart4real,RT @DarylWilson98: Omg that was the funniest show ever @KevinHart4real #IrresponsibleTour +06/09/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/OkvZs08rIz +06/09/2018,Comedians,@KevinHart4real,Another 1.... I love my job!!!!… https://t.co/KmkUODlqWB +06/08/2018,Comedians,@KevinHart4real,#dopepic #irresponsibletour #LilSwag… https://t.co/iBIW99NQg9 +06/08/2018,Comedians,@KevinHart4real,Calgary AB I just touched down damn it.... OPERATION destroy this city with laughter is now in session!!!!! Let's g… https://t.co/i4fVPV2O58 +06/08/2018,Comedians,@KevinHart4real,#irresponsibletour #comedicrockstarshit… https://t.co/bmRIKWD3U3 +06/08/2018,Comedians,@KevinHart4real,I am still blown away from last night's… https://t.co/4hllB81gtV +06/08/2018,Comedians,@KevinHart4real,All I can say is WOW!!!!! History was made last… https://t.co/DZZHF8pP3R +06/08/2018,Comedians,@KevinHart4real,RT @shivamvyas1211: @KevinHart4real Amazing show brother you were hilarious as always . Enjoyed soo much .❤️❤️❤️ +06/08/2018,Comedians,@KevinHart4real,RT @KristinAlayna_: Thoroughly enjoyed the laughs! Thanks @KevinHart4real we had a great night! #IrresponsibleTour #hollywoodbowl https://t… +06/08/2018,Comedians,@KevinHart4real,RT @heyitsluis11: @KevinHart4real last night with @Jewel_ee was hilarious!! #irresponsibletour I was “sooo exciiiiited!” 😂😂😂 +06/08/2018,Comedians,@KevinHart4real,RT @amiraavee: @KevinHart4real irresponsible tourrr super littttt🤩😂😅😭😭🙌🏾 +06/08/2018,Comedians,@KevinHart4real,RT @alymartinezz__: Thank you @KevinHart4real!!!! You were amazing and hilarious as always! 😂😂💛 https://t.co/1oje4tbqDY +06/08/2018,Comedians,@KevinHart4real,RT @Cpt_Locc: @KevinHart4real yooooo #IrresponsibleTour had me dying of laughter 😂😂😂 I’m going to Japan now 😭😭😂😂😂 +06/08/2018,Comedians,@KevinHart4real,Everybody wants to be famous but nobody wants to… https://t.co/hLnYAtElYG +06/07/2018,Comedians,@KevinHart4real,Let's gooooooooo los Angeles Ca.....Its going down tonight at the Hollywood Bowl damn it!!!! Get your tickets ASAP!… https://t.co/JVCQXrXucm +06/07/2018,Comedians,@KevinHart4real,"Looking out into the future of ""Tommy John""… https://t.co/RqJS0L3D35" +06/07/2018,Comedians,@KevinHart4real,It's all about progression!!!!! Shoutout to my… https://t.co/jFXEq8Phqg +06/07/2018,Comedians,@KevinHart4real,#Harts https://t.co/WI2FldwBZP +06/06/2018,Comedians,@KevinHart4real,Me & my mini mini me #Harts https://t.co/lEvs01ALNT +06/06/2018,Comedians,@KevinHart4real,On the set of my Tommy John photoshoot for the… https://t.co/7kHa5EkmXI +06/06/2018,Comedians,@KevinHart4real,Los Angeles Ca it's going down tomorrow night… https://t.co/urdXWHynqu +06/06/2018,Comedians,@KevinHart4real,Let's gooooooooo Los Angeles Ca....Its going down tomorrow night at the Legendary Hollywood Bowl in Los Angeles Ca.… https://t.co/SeymFtXfJB +06/04/2018,Comedians,@KevinHart4real,RT @Shiekdon_64: The crew tonight 💜💜🎉🎉🎉 Wakanda Forever 🙅‍♂️🙅‍♀️ #IrresponsibleTour @KevinHart4real https://t.co/PW3Nkcrmlx +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: My sister was soooo Exciteeeddddd 😂😂😂😂 ❌❌ +#IrresponsibleTour @KevinHart4real https://t.co/FHEATzJ7e1" +06/04/2018,Comedians,@KevinHart4real,RT @tashenaelaine: I'm the kind of person that can't stop talking about things that excite me. So I won't stop talking about @KevinHart4rea… +06/04/2018,Comedians,@KevinHart4real,RT @mattdayman86: Great show tonight seeing @KevinHart4real Thanks for coming back to Regina! #IrresponsibleTour +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: 😂😂😂😂😂😂😂😭😭😭😢😭 I can't breath #IrresponsibleTour left me in tears😂😂 @KevinHart4real thank you for coming back to Regina,see…" +06/04/2018,Comedians,@KevinHart4real,RT @chrislorence: @KevinHart4real Thanks for another fantastic show in Regina. This was our second time seeing you here and it was even fun… +06/04/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/NyOTp6NZi8 +06/04/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/pDShdlxnxV +06/04/2018,Comedians,@KevinHart4real,"RT @Shiekdon_64: Incredible night, S/O to @KevinHart4real And the Plastic cup boyz😂😂🤣🤣👏👏👏👏 Please come back to Regina Soon💕 #Irresponsible…" +06/04/2018,Comedians,@KevinHart4real,It's Showtime Regina Saskatchewan.....Let's… https://t.co/dwnyQAeUTy +06/03/2018,Comedians,@KevinHart4real,RT @metronewyork: @TiffanyHaddish and @KevinHart4real will combine ’no-holds barred’ and nuanced comedy in #NightSchool https://t.co/bzUZVc… +06/03/2018,Comedians,@KevinHart4real,Nobody Knows what you are capable of more than YOU!!!!! Compete against you and nobody else damn it!!!! +06/03/2018,Comedians,@KevinHart4real,Sunday Morning motivation & inspiration!!!!!… https://t.co/y2P5W1EJgC +06/03/2018,Comedians,@KevinHart4real,"Los Angeles Ca....HISTORY will be made next week on June 7th at the ""Hollywood Bowl"" damn it....If you don't have y… https://t.co/rDBzax1S5V" +06/03/2018,Comedians,@KevinHart4real,"Mpho will definitely be coming your way on my ""Irresponsible Tour"" https://t.co/ugKAOv7O4w" +06/03/2018,Comedians,@KevinHart4real,RT @CJ7Ten: #IrresponsibleTour @KevinHart4real just keeps getting better and better #SK +06/03/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/w26npXx2t3 +06/03/2018,Comedians,@KevinHart4real,RT @roamdawg: Not ready for how much my face hurts after watching @KevinHart4real #IrresponsibleTour 🤣🤣🤣 https://t.co/1jkkNODIun +06/03/2018,Comedians,@KevinHart4real,"RT @kjrnahbexie: @KevinHart4real was amazing tonight! Had Saskatoon feeling so hype 🔥🔥 +Legend!! ❤️#IrresponsibleTour" +06/03/2018,Comedians,@KevinHart4real,RT @Shannzyy1: Kevin Hart was 🔥🔥🔥🔥tonight in Saskatoon!!! #IrresponsibleTour @KevinHart4real +06/03/2018,Comedians,@KevinHart4real,#IrresponsibleTour https://t.co/rdUBP1gVGO +06/03/2018,Comedians,@KevinHart4real,It's showtime Saskatoon Saskatchewan ....Lets… https://t.co/D1tvvlzLzw +06/02/2018,Comedians,@KevinHart4real,#irresponsibletour #comedicrockstarshit… https://t.co/4jRzQF5967 +06/02/2018,Comedians,@KevinHart4real,Let’s goooooooo Saskatoon SK .....I’m on my way damn it. Get yo tickets NOOOOOOWWWW https://t.co/QpJLuc3GIu +06/02/2018,Comedians,@KevinHart4real,#Mood 😂😂😂😂😂 #Harts #BabyZo https://t.co/X3IQAeMZdS +06/02/2018,Comedians,@KevinHart4real,#Harts https://t.co/GuylZ8mEsy +06/02/2018,Comedians,@KevinHart4real,Today's rule is simple....Wake up & be great! Enjoy ur day people +06/02/2018,Comedians,@KevinHart4real,So much fun man. Always a good time with you guys!!!!! https://t.co/rNliNDTUmR +06/02/2018,Comedians,@KevinHart4real,The real work starts after the work is done....Only the go getters will understand this tweet!!!! #Motivation #Inspiration #Focused +06/02/2018,Comedians,@KevinHart4real,Thank you for the love & amazing laughter… https://t.co/IFR3bKLeLk +06/02/2018,Comedians,@KevinHart4real,RT @kingmuyiwa: @KevinHart4real had winnipeg lit 🔥. Mad funny show #IrresponsibleTour +06/02/2018,Comedians,@KevinHart4real,RT @PREZcent: @KevinHart4real is a legend man.. Tore the MTS centre down!!! Made me die laughing! #irresponsibletour #winnipeg +06/02/2018,Comedians,@KevinHart4real,"RT @Mark_Nelson41: Got to see @KevinHart4real for the second time in Winnipeg tonight, my gut will definitely be sore in the morning #Irres…" +06/02/2018,Comedians,@KevinHart4real,"Saskatoon SK I will be in town tomorrow night damn it!!!! Get your tickets to my ""Irresponsible Tour"" Noooowwwwww https://t.co/A6H6zEKCR3" +06/02/2018,Comedians,@KevinHart4real,All I can say is WOW. My fans are literally the… https://t.co/dBNYIZ6kiQ +06/01/2018,Comedians,@KevinHart4real,RT @UniPicturesCAN: Night School is in session. Watch the trailer starring @KevinHart4real and @TiffanyHaddish now! In theatres September 2… +06/01/2018,Comedians,@KevinHart4real,RT @Fandango: .@TiffanyHaddish as our teacher? @KevinHart4real as our classmate? Sign us up for #NightSchool https://t.co/3CssF4R4B5 +06/01/2018,Comedians,@KevinHart4real,"RT @RottenTomatoes: Come for @KevinHart4real and @TiffanyHaddish, stay for @fatjoe. Watch the brand new trailer for #NightSchool https://t.…" +07/01/2018,Comedians,@hannibalburess,Outstanding. https://t.co/3KVyBulTDr +06/29/2018,Comedians,@hannibalburess,Produced by @TonyTrimm Directed by @Argo106 With @byronbowers +06/29/2018,Comedians,@hannibalburess,"Sorry to drop this today Drake. + +@turo https://t.co/dYMPpvFUvR" +06/29/2018,Comedians,@hannibalburess,"From podcast jingle to music video. @turo hop in the whip and you go. + +Track produced by @TonyTrimm Video… https://t.co/HNIY8Ad3Fe" +06/28/2018,Comedians,@hannibalburess,"Pop up show in Seoul tonight. + +VENUE: Club DGBG/ 홍대 DGBD +TIME: 8PM +TICKETS: 30,000W at the door +ADDRESS:: 마포구 서교… https://t.co/WJYE4ZVOLd" +06/27/2018,Comedians,@hannibalburess,@Beejoelay48 Absolutely. It was really funny to see because at first I thought he was just fed up with his job +06/27/2018,Comedians,@hannibalburess,Street promo in Seoul 😂 https://t.co/jKZ6QLgJFf +06/27/2018,Comedians,@hannibalburess,https://t.co/a20ItOs3kR +06/27/2018,Comedians,@hannibalburess,"Tomorrow night. + +Hannibal Buress stand-up in Seoul + +VENUE: Club DGBG/ 홍대 DGBD +TIME: 8PM +TICKETS: 30,000W at the… https://t.co/rgrMQ3QrAO" +06/27/2018,Comedians,@hannibalburess,I’m in Seoul. I want to do a guest verse on a big K-Pop song. How does one go about this? +06/27/2018,Comedians,@hannibalburess,@Umberellah They’re not sold out. +06/24/2018,Comedians,@hannibalburess,"RT @janellejcomic: Earth, Wind and Liar https://t.co/eowX5TsQmw" +06/22/2018,Comedians,@hannibalburess,@KOSTheProducer Mannnnn +06/21/2018,Comedians,@hannibalburess,https://t.co/jfyWOn5p03 +06/21/2018,Comedians,@hannibalburess,"Turoooooo produced by @TonyTrimm directed by Kris Merc @Argo106 + +@turo + https://t.co/vhs5IRPIq1" +06/21/2018,Comedians,@hannibalburess,@DrewFYTB @TonyTrimm Thank you for believing in me. +06/21/2018,Comedians,@hannibalburess,"RT @turo: When @hannibalburess goes out for burritos, he drives something bomb from Turo so he can stunt on everyone else in the drive-thro…" +06/21/2018,Comedians,@hannibalburess,The escalation of a podcast ad jingle. https://t.co/dJ6AKRfBp7 +06/21/2018,Comedians,@hannibalburess,"Detroit tonight. + +https://t.co/TTu0Q1Ulub https://t.co/WfPPW7At6f" +06/21/2018,Comedians,@hannibalburess,@TeaTvrtkovic @DesmundLighten Thank you 🙏🏿 +06/20/2018,Comedians,@hannibalburess,"Detroit- Tomorrow + +https://t.co/TQYuQojtVI" +06/20/2018,Comedians,@hannibalburess,It’s done https://t.co/BYkZJYTBQX +06/19/2018,Comedians,@hannibalburess,New episode of @HandsomeRambler with Jon Hamm #tagmovie in theaters now. +06/19/2018,Comedians,@hannibalburess,Detroit. Thursday. https://t.co/Vwwol2jAgY +06/19/2018,Comedians,@hannibalburess,@marievonboran @desusandmero Just go for it and have fun. Lots of action. Play with the settings. Play a song yo… https://t.co/QCnHXCYlao +06/19/2018,Comedians,@hannibalburess,RT @desusandmero: Watch the extended version of our interview with @hannibalburess here: https://t.co/Ft7rTLMXSo https://t.co/bZ1QpIFnJc +06/19/2018,Comedians,@hannibalburess,Shiny. https://t.co/4ibhcVr56L +06/19/2018,Comedians,@hannibalburess,Talking shit tonight with @desusandmero 11pm est on viceland https://t.co/LY6E6ZyY9Y +06/19/2018,Comedians,@hannibalburess,Here’s a clip from tomorrow’s @HandsomeRambler with Jon Hamm. Just a couple thespians talking art and process… https://t.co/schoNHr2NI +06/18/2018,Comedians,@hannibalburess,Solid point. https://t.co/Q7OSIRc1zb +06/18/2018,Comedians,@hannibalburess,i feel like it was helpful https://t.co/iIk9z6SgOl +06/17/2018,Comedians,@hannibalburess,@itschonzii happy birthday Alex! happy holidays. Happy fathers day. +06/17/2018,Comedians,@hannibalburess,"September and October tour dates + +LA, SF, Oakland, Santa Ynez, Dallas, Houston, Austin, Milwaukee, Minneapolis, Veg… https://t.co/Zy8f2ADODP" +06/16/2018,Comedians,@hannibalburess,Got something cooking for a Detroit show Thursday. I'll announce details Monday. +06/16/2018,Comedians,@hannibalburess,Yeahhhhhhh https://t.co/ACfx6sqF4o +06/16/2018,Comedians,@hannibalburess,"Bears Hawks Sox Bulls @serengetidave +https://t.co/LigHGJqNor" +06/16/2018,Comedians,@hannibalburess,"Here's the newest episode of @HandsomeRambler with @MrJakeJohnson #TagMovie + +https://t.co/8X0bTNR2PS" +06/16/2018,Comedians,@hannibalburess,RT @whitebearpr: .@Germaine_Franco discusses her work on scoring the newly released @newlinecinema film #TAGMovie with @Billboard: https:/… +06/16/2018,Comedians,@hannibalburess,RT @TonyTrimm: I did some red carpet interviews with @LilRel4 @Mike_Eagle @brianbabylon @WallisAnnabelle @hannibalburess @MrJakeJohnson @Ha… +06/16/2018,Comedians,@hannibalburess,Tony Trimm on the @tagthemovie Red Carpet with appearances. Lots of cameos! https://t.co/0lCdUA9KXl +06/15/2018,Comedians,@hannibalburess,Sunday on Netflix ! https://t.co/vQo04iMIxy +06/15/2018,Comedians,@hannibalburess,Today! https://t.co/P9VcRfTgNL +06/15/2018,Comedians,@hannibalburess,I also react when I hear two cats fighting in the street. https://t.co/QicBH1ZgNM +06/15/2018,Comedians,@hannibalburess,RT @roywoodjr: When ya drunk homeboy starts making a fool of himself trying to holla at women in the club https://t.co/ls6dZeMVCV +06/15/2018,Comedians,@hannibalburess,Yep! https://t.co/wFvsqMAD5n +06/15/2018,Comedians,@hannibalburess,"RT @JimmyKimmelLive: Tonight on #Kimmel Jon Hamm #TagMovie, Lil Rel Howery @LilRel4 #UncleDrew and music from @G_Eazy ft. @YoGottiKom & @YB…" +06/15/2018,Comedians,@hannibalburess,https://t.co/UVHHsEsRHA +06/15/2018,Comedians,@hannibalburess,New @HandsomeRambler with @MrJakeJohnson on the theremin. #TagMovie https://t.co/NLCSm5F7va +06/15/2018,Comedians,@hannibalburess,😂😂 https://t.co/rl5QasQrKz +06/14/2018,Comedians,@hannibalburess,"NYC press days recap. + +Shot and edited by @marcusprice + +Song - Flight of the flamingo by @MrFlamingosis https://t.co/KXsP0fKZ3O" +06/14/2018,Comedians,@hannibalburess,RT @brianbabylon: #TBT Last Thursday rolling with @hannibalburess at the #tagmovie premiere congrats to @mrtomsic on making his 1st movie.… +06/14/2018,Comedians,@hannibalburess,Talking with Tag director Jeff Tomsic on the latest @HandsomeRambler about “priest apparel licensing issues” https://t.co/A9U4acJm0F +06/14/2018,Comedians,@hannibalburess,"NEW TOUR DATES. + +Dallas, Houston, Austin, SF, Oakland, Minneapolis, Milwaukee, Madison, Eugene shows now on presale… https://t.co/fbTVniwDPK" +06/14/2018,Comedians,@hannibalburess,On @LateNightSeth tonight. https://t.co/GrqpCJIefu +06/13/2018,Comedians,@hannibalburess,"Full video episode of the podcast with @tagthemovie director Jeff Tomsic. + +https://t.co/pu2gziVVlX" +06/13/2018,Comedians,@hannibalburess,"We got the director of @tagthemovie Jeff Tomsic on the @HandsomeRambler + +https://t.co/4Ad0mkFyIa https://t.co/7HVGEViEX8" +06/13/2018,Comedians,@hannibalburess,Hannibal https://t.co/RwhdMDICR0 +06/13/2018,Comedians,@hannibalburess,@ericgwey Hannibal +06/13/2018,Comedians,@hannibalburess,@_woweewow_ I think it’s Hannibal +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs Nope. I got press. I’ll Venmo you. +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs Y’all should go get breakfast and come back. +06/13/2018,Comedians,@hannibalburess,@Joellegee @lauvsongs How long is the line now +06/13/2018,Comedians,@hannibalburess,🔥🔥🔥 https://t.co/8hqTfExbYP +06/12/2018,Comedians,@hannibalburess,Street preaching! Thanks for having me. https://t.co/BY5zB9xVHm +06/12/2018,Comedians,@hannibalburess,The process. https://t.co/iFbwa916IR +06/11/2018,Comedians,@hannibalburess,#TagMovie https://t.co/zxxwkmthnQ +06/11/2018,Comedians,@hannibalburess,Hot take. https://t.co/M7tLviJVam +06/11/2018,Comedians,@hannibalburess,Recruiting https://t.co/VPGa15yP4N +06/11/2018,Comedians,@hannibalburess,@JoeFreshgoods Man I hate that shit. +06/10/2018,Comedians,@hannibalburess,@GeriatricGenius Appreciated Bruce. +06/10/2018,Comedians,@hannibalburess,We tried to play Dennehy the Dennehy song by @serengetidave and he was not interested at all. https://t.co/4mW0mcjmA5 +06/09/2018,Comedians,@hannibalburess,This is how I spend my downtime on movie sets. https://t.co/mck5j1MwAD +06/09/2018,Comedians,@hannibalburess,".@TwitterSafety @TwitterSupport + +Please remove this man from the platform. It’s for the best. https://t.co/8cqf5kuVLI" +06/09/2018,Comedians,@hannibalburess,I’ll be on @JimmyKimmelLive after the sweep talking red carpet impersonators and watching sports on psychedelics.… https://t.co/kILoHKVAYm +06/09/2018,Comedians,@hannibalburess,Tonight! https://t.co/gg4FjCYHqM +06/08/2018,Comedians,@hannibalburess,Vegas tonight ! At the mirage. Get your tickets at one of those kiosks on the strip that have hella tickets https://t.co/dQnwRa4h4F +06/08/2018,Comedians,@hannibalburess,RT @Mike_Eagle: it doesnt get cold in LA and thats great. but 'for your consideration' season is kind of a winter of its own +06/07/2018,Comedians,@hannibalburess,RT @parthbrahm: ESPN truly has a stat for everything this guy does https://t.co/t9c9aWqNhD +06/06/2018,Comedians,@hannibalburess,Great stuff. https://t.co/rNSXszFaK7 +06/06/2018,Comedians,@hannibalburess,"RT @hcbrockmann97: #TagMovie is very funny. + +Everybody has their time to shine. +The whole cast is at their best when they’re bouncing off o…" +06/05/2018,Comedians,@hannibalburess,LA! https://t.co/dVYpbH45G8 +06/05/2018,Comedians,@hannibalburess,Canada! https://t.co/sAsq1Dd9XB +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 Bet. How much ? +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 Yep. +06/05/2018,Comedians,@hannibalburess,@TheLocksmith8 I’ll take that action. +06/04/2018,Comedians,@hannibalburess,.@TonyTrimm new YouTube channel https://t.co/ZvUMJLJ6EF +06/04/2018,Comedians,@hannibalburess,Me because I’m going to sit in silence and not bother you. https://t.co/6Efdff3PMJ +06/04/2018,Comedians,@hannibalburess,"Dallas! This is happening tomorrow. + +https://t.co/w0SiygOhgb" +06/02/2018,Comedians,@hannibalburess,Chicago! https://t.co/zeGfNgljvl +06/02/2018,Comedians,@hannibalburess,New @HandsomeRambler up with @sad13 from @speedyortiz. Listen in https://t.co/xjqeZNPmMP or check the video at… https://t.co/1Wmu56lkNd +06/01/2018,Comedians,@hannibalburess,"Outstanding + +https://t.co/Htv2igfyr7" +05/29/2018,Comedians,@hannibalburess,"Donate here to win a chance to go to the @tagthemovie premiere in LA June 7th. $10 gets you one entry. + +https://t.co/iqXBy2kCep" +05/29/2018,Comedians,@hannibalburess,"RT @WallisAnnabelle: Want to win a trip to the LA premiere of @tagthemovie on June 7th? Who knows, you might be tagged into the game! Every…" +05/25/2018,Comedians,@hannibalburess,blew it out cool too https://t.co/penvuhiesu +05/24/2018,Comedians,@hannibalburess,RT @JoeFreshgoods: 20 pop up shops tomorrow. Ha! 2 pm every city. History. https://t.co/eRsieGRqD8 +05/22/2018,Comedians,@hannibalburess,Vegas. June 8th https://t.co/bsEodm8fwF +05/19/2018,Comedians,@hannibalburess,@joshua_allon You think I didn’t know?? +05/19/2018,Comedians,@hannibalburess,@dizzyswank @BAM_Brooklyn @joyellenicole and @jermaineFOWLER +05/18/2018,Comedians,@hannibalburess,@roywoodjr https://t.co/7wmPDdH4T6 +05/17/2018,Comedians,@hannibalburess,"RT @adultswim: We've added @hannibalburess, @Thundercat and 22 more acts to the first ever Adult Swim Festival! For tix and more info go to…" +05/15/2018,Comedians,@hannibalburess,"Great story on @comicBaldheadP and his work with Readi Chicago. + +https://t.co/f4K5vfFFnI" +05/15/2018,Comedians,@hannibalburess,"Port Chester, Brooklyn, Philly, and Vegas shows coming up. + +https://t.co/exXgW4rGZa" +05/15/2018,Comedians,@hannibalburess,"RT @OldTakesExposed: FOH, you psychopaths https://t.co/vWnkHlCY7g" +05/15/2018,Comedians,@hannibalburess,https://t.co/Q1PiDzgeAF https://t.co/liiqwd7URY +05/14/2018,Comedians,@hannibalburess,Chicago! https://t.co/4KuMNOXKPa +05/12/2018,Comedians,@hannibalburess,@PROPAYNE_BEATZ Thanks for getting one +05/12/2018,Comedians,@hannibalburess,Salt lake tonight. https://t.co/ToiEFALKwM +05/12/2018,Comedians,@hannibalburess,DC! Janelle James is in town tonight and tomorrow at the Arlington Drafthouse. check her out. https://t.co/Uf7G5ExcxS +05/11/2018,Comedians,@hannibalburess,"A handful of tickets available at the door in Spokane tonight 7pm. with @ComicEricaClark and @TonyTrimm + +https://t.co/2qfVobheei" +05/10/2018,Comedians,@hannibalburess,🔥🔥🔥 https://t.co/sQw1wvTiZP +05/09/2018,Comedians,@hannibalburess,If the Jazz win tonight I’ll rock Stockton style shorts for my Salt Lake City show on Saturday.… https://t.co/FLa8wAj4zJ +05/08/2018,Comedians,@hannibalburess,Another banger from last week's @HandsomeRambler with special guest @lizzo. We're in Boise and Spokane at The Knitt… https://t.co/h8TZ8hB80h +05/08/2018,Comedians,@hannibalburess,@lizzo snappin on the theremin during last week's @HandsomeRambler. listen to the full episode at… https://t.co/TzwM2L7zER +05/08/2018,Comedians,@hannibalburess,Titties are beautiful by @lizzo beat by @TonyTrimm. Listen to the latest episode of @HandsomeRambler at… https://t.co/oUPMqXdqqV +05/07/2018,Comedians,@hannibalburess,Who knew @TonyTrimm was so passionate about pizza? Check out this clip from the latest @HandsomeRambler with specia… https://t.co/PizYbhSO1B +05/06/2018,Comedians,@hannibalburess,"Missoula, Boise, Salt Lake City, Denver, Spokane, Vegas, Brooklyn and Philly shows coming up. Get tickets here. + +https://t.co/exXgW4rGZa" +05/02/2018,Comedians,@hannibalburess,New episode of @HandsomeRambler with @lizzo is up now https://t.co/stGSaRiDz1 +04/27/2018,Comedians,@hannibalburess,@J_Rose007 appreciated man +04/27/2018,Comedians,@hannibalburess,RT @GLCTHEISM: #ism Honored to be a part of the growth of our great city. #Chicago #ChiStateOfMind #GoodInEnglewood #Englewood #GLC #TheBoo… +04/26/2018,Comedians,@hannibalburess,@senseofnickels @chaneybarton we're doing all 3. finishing up the particulars. +04/26/2018,Comedians,@hannibalburess,"Tour dates at https://t.co/ViJDpu8eMG + +Brooklyn, Philly, Denver, Vegas, Spokane, Missoula, Boise. + +Bay Area and T… https://t.co/vnDUiTeA1m" +04/25/2018,Comedians,@hannibalburess,https://t.co/086Fkhz8JM +04/25/2018,Comedians,@hannibalburess,@ComedyHype_ April 1st was 3 weeks ago. +04/20/2018,Comedians,@hannibalburess,@techieondeck Hopefully. We’ll see what it costs to license that. +04/20/2018,Comedians,@hannibalburess,He windmilled it for everybody that had over 205.5 and we appreciate him for it. https://t.co/DxPNioeKN9 +04/19/2018,Comedians,@hannibalburess,@KendallTEdwards @carlitosgueyyy That’s a lot of god damn jokes! +04/19/2018,Comedians,@hannibalburess,In theaters June 15th @tagthemovie https://t.co/xHnAGBVh0Y +04/19/2018,Comedians,@hannibalburess,"Me: + +Lyft: we have replaced your driver with a better match that’s 6 minutes further away than the initial drive… https://t.co/aJLbH0YGCd" +04/19/2018,Comedians,@hannibalburess,@count_nickula Marijuana -chrome sparks +04/18/2018,Comedians,@hannibalburess,"RT @fakeshoredrive: once you realize Keef's ""Love Sosa"" flow is a nod to Lord Infamous on ""Stomp"" then you'll understand just how far these…" +04/18/2018,Comedians,@hannibalburess,@Snipes_Jr nope but I'll have something else cooking soon +04/17/2018,Comedians,@hannibalburess,"Full video of @HandsomeRambler live from @thirdmanrecords with @natebargatze @kevinbozeman + +https://t.co/U49OG5V1qf" +04/16/2018,Comedians,@hannibalburess,@Channing_Frye Was that you in the corner mostly bored and sporadically sticking your hands out? +04/14/2018,Comedians,@hannibalburess,@atcoops451 @LaughscomedySEA @byronbowers +04/14/2018,Comedians,@hannibalburess,Portland on Sunday! https://t.co/wVjMW80wLo +04/14/2018,Comedians,@hannibalburess,🙏🏿 https://t.co/nDeFmbKRku +04/14/2018,Comedians,@hannibalburess,@christinanthony @Postmates I’ve fallen asleep multiple times before they got there They definitely eat it I think. +04/11/2018,Comedians,@hannibalburess,"New album from comedian @dcbenny + +awesome stories. check it out. + + https://t.co/e51W9wi1zB" +04/09/2018,Comedians,@hannibalburess,#WrestleMania https://t.co/C0ukUDtRqV +04/06/2018,Comedians,@hannibalburess,In Theaters today. I’m in there for couple minutes. Same dude. Different costume. https://t.co/MG250pwQWk +04/06/2018,Comedians,@hannibalburess,"RT @Martin_Boev: ""@QuelleChris and @JeanGreasy's new collaborative album 'Everything's Fine' is a charismatic, idiosyncratic and an incred…" +04/05/2018,Comedians,@hannibalburess,@chancetherapper Did you just hit the 30 million mark and it’s causing an existential crisis? +04/04/2018,Comedians,@hannibalburess,RT @TonyTrimm: Honored to be nominated twice for the #webbyawards this year. The other is for Comedy podcast. You can vote til April 19. ht… +04/04/2018,Comedians,@hannibalburess,yessir https://t.co/dGdxbS37kr +04/04/2018,Comedians,@hannibalburess,"Portland - April 15th + +https://t.co/Z148jYZ0iA" +04/04/2018,Comedians,@hannibalburess,khabib vs ggg +04/01/2018,Comedians,@hannibalburess,Reasonable. https://t.co/0U3RQvSC9x +04/01/2018,Comedians,@hannibalburess,RT @TonyTrimm: Off to Charlotte tomorrow. Gonna miss you Nashville. https://t.co/9j5WwZYs98 +03/31/2018,Comedians,@hannibalburess,@Ksully_61 Honestly I’m not sure. +03/31/2018,Comedians,@hannibalburess,Easter gifts https://t.co/dRtiMdpeZL +03/30/2018,Comedians,@hannibalburess,"During the daytime in Little Rock, I think I wrote a pretty solid usable hook for the Migos. Some other shit happe… https://t.co/cyKTHxjJvH" +03/29/2018,Comedians,@hannibalburess,@SaintDarrell That was the worst part. I had just come off a flight 😂😂 +03/28/2018,Comedians,@hannibalburess,Untitled tour show. https://t.co/o4AKwq2pOI +03/28/2018,Comedians,@hannibalburess,"RT @video_dave: Here’s your first look at your new favorite show. The Hannibal Buress Untitled Tour Show. + +Episode 1 is A Food Show in Lit…" +03/27/2018,Comedians,@hannibalburess,"Me on morning tv in Memphis today. + +https://t.co/lcB7UORdvW" +03/27/2018,Comedians,@hannibalburess,"Never too late for now. + +https://t.co/VyFkL5Ss9e" +03/26/2018,Comedians,@hannibalburess,😑 https://t.co/4dQRPDSvNs +03/26/2018,Comedians,@hannibalburess,"RT @Chuckisdope: I tend to eat pringles a lot more than other chips ... but I don’t really like them. + +I don’t know what kinda of marketin…" +03/26/2018,Comedians,@hannibalburess,@lovelivemusiclr Um what? +03/26/2018,Comedians,@hannibalburess,"RT @LilRel4: Yo if you would like to see the live taping of my new comedy pilot produced, written and… https://t.co/6V1FOyoOUk" +03/25/2018,Comedians,@hannibalburess,"New merch up now + +https://t.co/avCOVTBnGe" +03/25/2018,Comedians,@hannibalburess,#InvictaFC28 right now! https://t.co/vjf5xPY94y +03/24/2018,Comedians,@hannibalburess,@SheilaRose_xiii @HandsomeRambler @TonyTrimm Appreciate you Sheila. Thanks +03/24/2018,Comedians,@hannibalburess,RT @MrJakeJohnson: A great text from @hannibalburess https://t.co/rc3n1cuHkU +03/24/2018,Comedians,@hannibalburess,Check out #InvictaFC28 tonight. 8pm. Thanks @shanknapp for the opportunity to be a sponsor. +03/24/2018,Comedians,@hannibalburess,.@TonyTrimm spitting Chicago food bars on an upcoming podcast episode. @lizzo on the adlibs. https://t.co/3wYRZZcjHR +03/23/2018,Comedians,@hannibalburess,@moshekasher @HandsomeRambler @nealbrennan yeah man. life hurts. how's the young one? +03/23/2018,Comedians,@hannibalburess,"RT @tagthemovie: Based on a true story (we’re not kidding). This summer, some traditions never get old. #TagMovie in theaters June 15. http…" +03/23/2018,Comedians,@hannibalburess,"New @HandsomeRambler with @nealbrennan Full video + +https://t.co/EFm0RKB7aW" +03/23/2018,Comedians,@hannibalburess,Charlotte ! https://t.co/cvEfeJaSuy +03/23/2018,Comedians,@hannibalburess,@zzuhuurr Yep. Make a friend +03/23/2018,Comedians,@hannibalburess,@dicemoneypotts 3 hours ago +03/22/2018,Comedians,@hannibalburess,"New episode of @HandsomeRambler with @nealbrennan is up now. + +https://t.co/L0EQFBCa7T https://t.co/Yi8TB4Z5hL" +03/22/2018,Comedians,@hannibalburess,"RT @stupidDOPE: When we started #theUBUNTUproject, we knew that we wanted to help people & change lives. We never thought that four years l…" +03/21/2018,Comedians,@hannibalburess,Memphis. March 27th. Design by Guarab Thakali. https://t.co/zJBDiF48dW +03/20/2018,Comedians,@hannibalburess,"Quick clip from the @nealbrennan episode of @HandsomeRambler + +Dropping tomorrow. https://t.co/T3sdcrJNDa" +03/20/2018,Comedians,@hannibalburess,June 15th! https://t.co/fokbdiQ07m +03/20/2018,Comedians,@hannibalburess,"Yeah I agreed to the content restrictions for the Loyola. + +Who hasn’t lied at a job interview before?? 😂😂😂 + +Why… https://t.co/hX0UvouYFC" +03/20/2018,Comedians,@hannibalburess,https://t.co/jS9RSTUtiQ https://t.co/X4xMgEybv6 +03/20/2018,Comedians,@hannibalburess,RT @MrJakeJohnson: I think we all really stretched our acting muscles for this one. #TagMovie #Oscars https://t.co/bciWZm1lzo +03/20/2018,Comedians,@hannibalburess,"My acting range is on full display in the new trailer for Tag. + +https://t.co/vrIbplnaGL" +03/17/2018,Comedians,@hannibalburess,RT @VicMensa: Every time you use the hashtag #yourthing or #believechicago @ATT will donate to my foundation Savemoney Savelife !!! +03/17/2018,Comedians,@hannibalburess,RT @JoeFreshgoods: #SXSW pull up to empire control room today for Bric’s block party I got a few tees that won’t last long. Trying to sell… +03/17/2018,Comedians,@hannibalburess,i have the same feeling about tunnels. https://t.co/hDchx9YZVj +03/17/2018,Comedians,@hannibalburess,Loyola tonight. They’re in the second round of the tournament plus it’s St Patrick’s day. This might be interestin… https://t.co/4fQVKzklUg +03/17/2018,Comedians,@hannibalburess,@CzariCastle open mike eagle's latest one +03/17/2018,Comedians,@hannibalburess,@PageKennedy Chilling mane +03/17/2018,Comedians,@hannibalburess,Every time???? #yourthing #believechicago #yourthing #believechicago #yourthing #believechicago #yourthing… https://t.co/qveJmUULqn +03/15/2018,Comedians,@hannibalburess,Nyc tonight. https://t.co/Tzg6g3eYhv +03/15/2018,Comedians,@hannibalburess,@SPD_NASCAR that's my homegirl Constance. she shot the cover actually +03/14/2018,Comedians,@hannibalburess,@_needle_thread_ Awesome shot. +03/13/2018,Comedians,@hannibalburess,"RT @BootsRiley: Let's do it. #sorrytobotheryou + +In theaters in July. https://t.co/HaNginbemw" +03/11/2018,Comedians,@hannibalburess,@stubhubby @Nicole_Cliffe @SolidSoundFest @mavisstaples deep cut and great catch +03/10/2018,Comedians,@hannibalburess,John Oliver switched up his look to get an easy second revenue stream. https://t.co/3WWtALYLsB +03/09/2018,Comedians,@hannibalburess,March 15th NYC https://t.co/qkgQlUoEf4 +03/07/2018,Comedians,@hannibalburess,"RT @Mike_Eagle: Dead Ass is back for a second season. + +@video_dave somehow tricked @hannibalburess into playing along with one of his schem…" +03/07/2018,Comedians,@hannibalburess,"Florida Woman interrupts Comedy Show. + +https://t.co/jS9RSTUtiQ https://t.co/NCLNPI3VZ2" +03/07/2018,Comedians,@hannibalburess,"Drunk Florida Lady tries to have separate conversation with me during my set. + + https://t.co/5CHDwJiMgM" +03/06/2018,Comedians,@hannibalburess,Seattle Show added https://t.co/qpqfJ1F48R +03/05/2018,Comedians,@hannibalburess,On this #oscars night check out @aljackson giving a very scathing review to the movie Rudy on this episode of… https://t.co/7sd9UGltLh +06/29/2018,Comedians,@StephenAtHome,Happy to have you tag in! https://t.co/HRCAw8gNUV +06/28/2018,Comedians,@StephenAtHome,"If you're on a low carb diet you're in luck, because there ain't no way to sugarcoat this. https://t.co/HzijhzFbG5" +06/27/2018,Comedians,@StephenAtHome,"Well, sure, if you set aside everything he said, it's legal. https://t.co/JLd23FGHrR" +06/27/2018,Comedians,@StephenAtHome,Donald Trump and David Lynch: A match made in the darkest nether-scape of an abandoned malt shop while a naked woma… https://t.co/Q2KehD4G73 +06/27/2018,Comedians,@StephenAtHome,"But if Harley Davidson goes away, how will retired dentists in my neighborhood wake me up on Saturdays?" +06/27/2018,Comedians,@StephenAtHome,"There are a lot of things I want to call Neil Gorsuch, and none of them are ""Justice.”" +06/26/2018,Comedians,@StephenAtHome,"If it walks like a Muslim ban and quacks like a Muslim ban, then this Supreme Court decision is ducked up." +06/26/2018,Comedians,@StephenAtHome,There's still no announcement of what they're going to do to put these stolen kids back together with their parents. https://t.co/plHSiMKRjP +06/26/2018,Comedians,@StephenAtHome,"Sure, Trump wants to kick people out of America without due process. But look on the bright side: without due proce… https://t.co/zrGw0EUBHa" +06/26/2018,Comedians,@StephenAtHome,"Harley Davidson is going to move production to Europe to avoid tariffs. Comment dit-on ""midlife crisis?""" +06/26/2018,Comedians,@StephenAtHome,"Well, at least something good came out of this weekend. I finally figured out my band name: Filthy Canopies" +06/22/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: It's been a sad week for America but we had to ask, ""Is Trump really that bad?"" #LSSC https://t.co/fhkQ15QeX5" +06/22/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Brian Kilmeade on Fox News: ""Like it or not, these aren't our kids...it's not like [Trump] is doing this to the people…" +06/22/2018,Comedians,@StephenAtHome,The story of the week has been Donald Trump's pro-baby-snatching agenda. https://t.co/mRpnoiQk1n +06/22/2018,Comedians,@StephenAtHome,"Wow, she’s really starting to seem like the kind of person who would marry Donald Trump. https://t.co/LI6ZIjMEaT" +06/22/2018,Comedians,@StephenAtHome,Here’s an eye full of year! #LateShowFYC https://t.co/GWXAFzJrYp +06/21/2018,Comedians,@StephenAtHome,https://t.co/d6rXuYznlp +06/21/2018,Comedians,@StephenAtHome,#tbt https://t.co/hpPOz3RkzV +06/21/2018,Comedians,@StephenAtHome,Donald Trump has changed his mind and decided to keep families together. https://t.co/kSwJ53S5q4 +06/21/2018,Comedians,@StephenAtHome,"Trump signed ""something” to “keep families together.” Unfortunately, it wasn't resignation papers." +06/21/2018,Comedians,@StephenAtHome,Hey. You know Dino Stamatopoulos? He’s funny. He also has a band called Sorry About Everything. If you want to chec… https://t.co/IGeX9iNUlJ +06/20/2018,Comedians,@StephenAtHome,"Simba: Dad, wake up! Dad! +Corey Lewandowski: Womp womp" +06/20/2018,Comedians,@StephenAtHome,"When it comes to the news, let's face it: we don't want to face it. https://t.co/kKgIoCUmrB" +06/20/2018,Comedians,@StephenAtHome,"This flag just earned $130,000 https://t.co/BkSeEtNK7b" +06/19/2018,Comedians,@StephenAtHome,Here's my monologue from Monday's show: https://t.co/dtmPX4pls1 +06/19/2018,Comedians,@StephenAtHome,One thing I know for sure: no one on the right side of history has ever had to nitpick what the definition of “cage” is. +06/16/2018,Comedians,@StephenAtHome,"Paul Manafort has been ordered to jail, or as President Trump put it, “Never met the guy.”" +06/15/2018,Comedians,@StephenAtHome,https://t.co/JbPVCRuwqO +06/15/2018,Comedians,@StephenAtHome,"It's time for another installment of our long running segment ""Hillary Clinton: Impeachment Watch"" https://t.co/wnuvlpalbs" +06/15/2018,Comedians,@StephenAtHome,RT @colbertlateshow: The United States is using cruelty as a deterrent on our southern border. @StephenAtHome has something to say about it… +06/14/2018,Comedians,@StephenAtHome,Now Trump must deal with an even greater threat: Robert Mueller. https://t.co/zFIYidH0cP +06/14/2018,Comedians,@StephenAtHome,RT @colbertlateshow: TONIGHT! Scaramucci and Avenatti talk Cohen with Stephen. #LSSC https://t.co/JyEP6M5wlq +06/14/2018,Comedians,@StephenAtHome,He’s got my vote! https://t.co/e7XENAy4rM +06/13/2018,Comedians,@StephenAtHome,Yeah! https://t.co/7i4Wbvsb9p +06/13/2018,Comedians,@StephenAtHome,Yesterday we all woke up in a different world. https://t.co/xZqaTgdW6P +06/13/2018,Comedians,@StephenAtHome,Some analysts believe Kim Jong Un can actually speak fluent English. Others believe the same thing about Donald Trump. +06/13/2018,Comedians,@StephenAtHome,Here's a question I never thought I'd have to ask: does Canada have nukes? +06/12/2018,Comedians,@StephenAtHome,"Our relations with Canada have not been this bad since they stole the word ""bacon."" https://t.co/4L28Dlw31o" +06/12/2018,Comedians,@StephenAtHome,"“We will be fine!” says the man who just misspelled “missile” and “stopped."" https://t.co/GdVOt6qMvd" +06/09/2018,Comedians,@StephenAtHome,Trump made his first international visit to a hostile foreign power: Canada. https://t.co/FzOOI0LAXf +06/08/2018,Comedians,@StephenAtHome,"A bunch of racist nerds bullied Star Wars actress Kelly Marie Tran off social media. As Yoda would say, “Wrong with… https://t.co/ai7qNauQxb" +06/08/2018,Comedians,@StephenAtHome,"Donald Trump: When will people start saying, “thank you, Mr. President, for firing James Comey?” + +Struggling Bookst… https://t.co/ANIYppEqlr" +06/07/2018,Comedians,@StephenAtHome,Here's a sentence I don't often say: Donald Trump did something good. https://t.co/7KXD1jtj3g +06/07/2018,Comedians,@StephenAtHome,Calling Trump “Commander of Cheese” is the first factually accurate thing Kellyanne Conway's ever said. +06/06/2018,Comedians,@StephenAtHome,"@kumailn The end of Miller’s Crossing: “Goodbye, Leo.” +The “So you’d give the devil the benefit of law?!” scene in… https://t.co/lckZlMwuGy" +06/06/2018,Comedians,@StephenAtHome,Here's my monologue from last night's show! https://t.co/Afs7B3rHhq +06/06/2018,Comedians,@StephenAtHome,"Now that Miss America has ditched the swimsuits, I think it’s time the Pulitzer Prize dropped their wet t-shirt contest." +06/05/2018,Comedians,@StephenAtHome,Yes it is. https://t.co/NUF3g5LDZj +06/05/2018,Comedians,@StephenAtHome,Caught this unruly mob in my garden #quickbeforetheyfade https://t.co/uYgFcXnZuT +06/05/2018,Comedians,@StephenAtHome,We're back! https://t.co/zT1NcO9hjR +06/05/2018,Comedians,@StephenAtHome,"Reese Witherspoon has announced they're making ""Legally Blonde 3."" Please make it be about Elle Woods joining Mueller's team." +06/05/2018,Comedians,@StephenAtHome,"Fine, Donald Trump gets to pardon himself, but only if he can spell ""Special Counsel"" on the first try." +06/03/2018,Comedians,@StephenAtHome,"Sunday Cobbler, anyone? https://t.co/a1Z5HZIAb0" +06/02/2018,Comedians,@StephenAtHome,"@AndyRichter 1. Machine sounds, large metal squeaks, take 1 2. El… https://t.co/hnqB6liXyg" +05/31/2018,Comedians,@StephenAtHome,"@labruna a bee +staggers out +of the peony +~Basho" +05/31/2018,Comedians,@StephenAtHome,"@PONYPONY Far as I know, just the movies" +05/30/2018,Comedians,@StephenAtHome,There’s a fat-faced peony in the garden. Share your #BestBlossom https://t.co/QcRJ4u9Ojz +05/30/2018,Comedians,@StephenAtHome,@edmcellig18 Yes +05/30/2018,Comedians,@StephenAtHome,Get back to work! https://t.co/RAohbn3jzF +05/25/2018,Comedians,@StephenAtHome,Hey @realdonaldtrump: https://t.co/tuSFBxFRT6 +05/24/2018,Comedians,@StephenAtHome,"South Korean official response: “We are attempting to make sense of what, precisely, President Trump means.” + +Welcome to the fucking club." +05/24/2018,Comedians,@StephenAtHome,"Not so fast, Deep State. https://t.co/Z5pqrqUuoI" +05/24/2018,Comedians,@StephenAtHome,Say hello to the NFL's newest ref! https://t.co/qf1YMSdYcQ +05/23/2018,Comedians,@StephenAtHome,How did these people get under my desk? https://t.co/d8cv0drs0E +05/23/2018,Comedians,@StephenAtHome,"Tonight’s Late Show features a special appearance by Jon Stewart. But it's a surprise, so don’t tell him!" +05/23/2018,Comedians,@StephenAtHome,"Trump aides write his tweets with bad punctuation to match the President's style. Well, at least there's not grammar Nazis." +05/22/2018,Comedians,@StephenAtHome,@MovieLeagueMike @jenspyra Sounds good to me. https://t.co/6kMYVX7sQc +05/22/2018,Comedians,@StephenAtHome,The White House is determined to stop leaks at all costs. https://t.co/MYv0z8yCBY +05/18/2018,Comedians,@StephenAtHome,RT @colbertlateshow: The Mueller investigation is a year old and we have the perfect gift to celebrate. #LSSC https://t.co/aledtqlgoI +05/18/2018,Comedians,@StephenAtHome,Last night's show is up now! https://t.co/Cy7mBbER6u +05/17/2018,Comedians,@StephenAtHome,What would a jury of Donald Trump's peers look like? https://t.co/A7SSiqZ49B +05/17/2018,Comedians,@StephenAtHome,"Trying to understand why Kim Jong Un’s threatening to break off talks with the US. Did Trump cheat with a younger, hotter Korea?" +05/17/2018,Comedians,@StephenAtHome,"The White House must be upset about the Trump Tower transcripts coming out. Especially Mike Pence, who's uncomforta… https://t.co/0Oq5Ct9iCu" +05/17/2018,Comedians,@StephenAtHome,'Pop Quiz' With Jamie & Corinne Foxx https://t.co/U3A68F1c5S via @YouTube +05/17/2018,Comedians,@StephenAtHome,Tonight! #LSSC https://t.co/cKWV6DPhuG +05/16/2018,Comedians,@StephenAtHome,11:00- Yanny again. +05/16/2018,Comedians,@StephenAtHome,"A plastic bag was found at the bottom of the world’s deepest ocean trench. Hey scientists, while you’re down there,… https://t.co/CJQfUkDWvc" +05/16/2018,Comedians,@StephenAtHome,Tonight! Lighthearted high jinks with Deadpool! (Seen here strangling Vanisher.) @deadpoolmovie #LSSC #hear https://t.co/ButMgmBy7o +05/16/2018,Comedians,@StephenAtHome,5:30 - Yanny 9:30- Laurel What...is...happening? +05/16/2018,Comedians,@StephenAtHome,Just a regular ol’ Tuesday night with @iamjamiefoxx ! #LSSC https://t.co/kjb8TscZYS +05/15/2018,Comedians,@StephenAtHome,My monologue from Monday's show is up now! https://t.co/gPRQoMXm2N +05/15/2018,Comedians,@StephenAtHome,"When Trump and Hannity talk on the phone before bed each night, who do you think is the first to say, ""No you hang up first!”" +05/15/2018,Comedians,@StephenAtHome,"If all sports gambling is legal, what’s gonna stop Trump from using that almanac he stole from Marty McFly?" +05/13/2018,Comedians,@StephenAtHome,"Some things need no explanation. Happy Mother’s Day, @mindykaling https://t.co/AsugMb2xRX" +05/11/2018,Comedians,@StephenAtHome,Boston Dynamics’ new running robot is terrifying! Imagine a bleak future where we'll be forced to listen to robots… https://t.co/TNZfjnz1fK +05/11/2018,Comedians,@StephenAtHome,It's nice when you see good things happen in Trump's America. https://t.co/PKXxZTJXEL +05/10/2018,Comedians,@StephenAtHome,My monologue from Wednesday's show is up now! https://t.co/C9Rtn4Q0yN +05/10/2018,Comedians,@StephenAtHome,Feels like we haven't heard from Jared Kushner in a while. Are we sure a large bird didn't grab him? +05/09/2018,Comedians,@StephenAtHome,"After years of saying he was going to do it, he did it. https://t.co/WPv3HTI9zf" +05/08/2018,Comedians,@StephenAtHome,"Yes, indeed! Thank you, @CSiriano !!! https://t.co/yeZZN0SUUa" +05/08/2018,Comedians,@StephenAtHome,Two altar boys ready for the #MetGala! https://t.co/yH4T9QnRU8 +05/08/2018,Comedians,@StephenAtHome,"Speaking of natural disasters, Rudy Giuliani... https://t.co/BofNS4A3F1" +05/08/2018,Comedians,@StephenAtHome,Roy Moore and Don Blankenship. A threat to minors and miners alike. +05/05/2018,Comedians,@StephenAtHome,Happy Cinco de Mayo Eve! Don't forget to leave out a margarita and chips for Father Fiesta! +05/05/2018,Comedians,@StephenAtHome,NBC News has corrected their correction: Michael Cohen’s “phone” turned out to be a stale Pop Tart. +05/05/2018,Comedians,@StephenAtHome,I plan to celebrate #StarWarsDay by having roast porg for dinner. +05/04/2018,Comedians,@StephenAtHome,It's time for another edition of #StormyWatch! https://t.co/1CNIiVzBOL +05/04/2018,Comedians,@StephenAtHome,What if the FBI finds that Michael Cohen mostly just uses his phone to call his 15 other phones? +05/04/2018,Comedians,@StephenAtHome,"Make sure to change your Twitter password. And, if you know it, Kanye’s." +05/04/2018,Comedians,@StephenAtHome,Tonight! May the best Rudy win! https://t.co/bqratSutlP +05/03/2018,Comedians,@StephenAtHome,My monologue from last night's Late Show is up now! https://t.co/abIiX4twcV +05/03/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Today is huge because we have @StormyDaniels attorney @MichaelAvenatti joining our #StormyWatch and you got 5 mins unt… +05/03/2018,Comedians,@StephenAtHome,James Comey says he once sang Beyoncé during an FBI briefing. I guess it's not easy discussing Trump's stay at the… https://t.co/j8SIii1aUc +05/03/2018,Comedians,@StephenAtHome,"Goodbye, Cambridge Analytica! We hardly knew ye, though ye knew everything about us." +05/03/2018,Comedians,@StephenAtHome,At least now Ty Cobb has more time for his true passion: tossing gumdrops and candy canes from a hot air balloon. https://t.co/QI6hByHqL7 +05/02/2018,Comedians,@StephenAtHome,RT @Zac_Posen: Excited to have the new The Late Show merchandise in the #ZacPosen showroom! Thanks for the underwear @colbertlateshow 😜 Get… +05/02/2018,Comedians,@StephenAtHome,If Trump sees the questions in advance he'll cheat! https://t.co/3TmAv4qBrY +05/02/2018,Comedians,@StephenAtHome,Facebook is launching an online dating feature. Which is different from their current online dating feature of show… https://t.co/nSyEVpV2Yl +05/02/2018,Comedians,@StephenAtHome,"Mueller apparently has 49 questions he wants to ask Trump. 50, if you count, ""Seriously, what does it mean to 'move on her like a bitch’?""" +05/01/2018,Comedians,@StephenAtHome,Here's my monologue from Monday's Late Show: https://t.co/RGX1SQKOAY +05/01/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: TONIGHT: The White House is running very smoothly despite news that Trump's chief of staff called him an ""idiot"" and ""…" +04/28/2018,Comedians,@StephenAtHome,I just saw @DisobedienceMov produced and starring the brilliant Rachel Weisz. It’s a beautiful and challenging stor… https://t.co/Ug9o56KwVW +04/28/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Our buddy #MandyPatinkin just released an album, recorded with his buddy producer/pianist Thomas Bartlett. It's Mandy'…" +04/28/2018,Comedians,@StephenAtHome,Will I understand Infinity War if I saw only 17 of the previous movies? +04/28/2018,Comedians,@StephenAtHome,I don’t remember ever being this happy in my 20s... #oldheadshotday https://t.co/XKpx1zIx3A +04/27/2018,Comedians,@StephenAtHome,"“This is a “lure."" Normally I just use free condos or offer an appearance on the Apprentice.” https://t.co/hrdg4R2Uo4" +04/27/2018,Comedians,@StephenAtHome,RT @colbertlateshow: These as-worn-on-TV #LSSC undies are up for grabs on @eBay right now! Proceeds benefit @ETAForg. Thanks @Zac_Posen for… +04/27/2018,Comedians,@StephenAtHome,Donald Trump called in to Fox & Friends yesterday... https://t.co/WR00ghfG64 +04/27/2018,Comedians,@StephenAtHome,#DraftDay is trending so I assume Donald Trump is somewhere faking a limp. +04/26/2018,Comedians,@StephenAtHome,My monologue from Wednesday's show is up now: https://t.co/vA1SnAS8pe +04/26/2018,Comedians,@StephenAtHome,@HelloCullen @ArielDumas @anylaurie16 Wow +04/25/2018,Comedians,@StephenAtHome,"@hwinkler4real Thank you for being here, Henry! It was a Joy!" +04/25/2018,Comedians,@StephenAtHome,Bienvenue a Ratatouille! https://t.co/yzGWrEaWTy +04/25/2018,Comedians,@StephenAtHome,.@HankAzaria New Late Show in five minutes. Twitter explosion in act three. +04/25/2018,Comedians,@StephenAtHome,"Because... he's guilty? +https://t.co/iXSGdsZJ3a" +04/24/2018,Comedians,@StephenAtHome,The leader of the free world tweeted 25 times last weekend... https://t.co/4aZ967B5rr +04/24/2018,Comedians,@StephenAtHome,"Trump: ""There were gooooood boyyyyyyys on both sides."" +https://t.co/YCGWVERRNQ" +04/24/2018,Comedians,@StephenAtHome,"Congratulations to the new royal baby! He has his mother's eyes, and his father's hair." +04/19/2018,Comedians,@StephenAtHome,James Comey made some new friends at Late Show! https://t.co/R5wtlFvtY6 +04/18/2018,Comedians,@StephenAtHome,Watch my Tuesday monologue here! https://t.co/YOx2KhaRvd +04/18/2018,Comedians,@StephenAtHome,There was too much Comey to fit in the show! Hard choices where to cut. So here’s the whole damn thing. https://t.co/0eeL8pN6TO +04/18/2018,Comedians,@StephenAtHome,"Not saying that Trump has Hannity in the palm of his hand, but... https://t.co/ctJkjI62RW" +04/18/2018,Comedians,@StephenAtHome,@OfficialJLD Some of us know how to rock an asymmetrical hemline. https://t.co/iL14XCQJte +04/18/2018,Comedians,@StephenAtHome,High level summit! Tonight! #WuTangForever #Comey https://t.co/EjUakcIqjl +04/18/2018,Comedians,@StephenAtHome,"Stormy Daniels said that the mystery man who threatened her didn’t have a weapon, but I disagree: You could cut gla… https://t.co/HMt4flxlCh" +04/17/2018,Comedians,@StephenAtHome,"Always great talking to you, Father! https://t.co/jfl2g194aa" +04/17/2018,Comedians,@StephenAtHome,Ongoing troubles for the man who paid off Stormy Daniels... https://t.co/UHZuD6qfMD +04/17/2018,Comedians,@StephenAtHome,"NOT THE MOST PRESSING THING ON YOUR TO-DO LIST, GUYS! https://t.co/p8ZXh7BfrV" +04/17/2018,Comedians,@StephenAtHome,Funny how when James @Comey writes a book about the 2016 election and how he lost his dream job and drank wine nobo… https://t.co/8dCXooI0LS +04/17/2018,Comedians,@StephenAtHome,"Firing Comey last May must be Trump’s biggest regret, since it means he can’t fire him now." +04/17/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Sneak peek of 'Hannity' tonight... https://t.co/qud8et2cba +04/16/2018,Comedians,@StephenAtHome,Can't wait! https://t.co/mHxKlndExG +04/13/2018,Comedians,@StephenAtHome,"RT @SarahHuckabee: When you're attacking FBI agents because you're under criminal investigation, you're losing https://t.co/SIoAxatCjp" +04/13/2018,Comedians,@StephenAtHome,I’ve got a date for the weekend https://t.co/7pSayaJYcB +04/13/2018,Comedians,@StephenAtHome,Stop the presses! https://t.co/jY18IwmDvM +04/13/2018,Comedians,@StephenAtHome,ARE YOU MY SECRET LOVE CHILD I PAID A DOORMAN TO KEEP QUIET?! https://t.co/cL2irm9c2L +04/13/2018,Comedians,@StephenAtHome,"Chivalry isn't dead! +https://t.co/qzqsGepuYx" +04/13/2018,Comedians,@StephenAtHome,"Take it from me, @Comey, it is! https://t.co/X83xa2AWaW" +04/12/2018,Comedians,@StephenAtHome,The President is not happy... https://t.co/kEfHt0Ukz8 +04/12/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Stephen and Jon are writing a song in honor of Paul Ryan. What do you think of it so far? #RehearsalRewind https://t.c… +04/12/2018,Comedians,@StephenAtHome,"When you have a warrant, they let you do it. +https://t.co/7hQD40bcul" +04/12/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Grab your tickets now for Martin Short & Steve Martin, on the road together in their hilarious show 'An Evening You Wi…" +04/12/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: In honor of the House Speaker's decision not to seek reelection, #LSSC presents this look back at Paul Ryan's most cou…" +04/11/2018,Comedians,@StephenAtHome,RT @colbertlateshow: Cookie's Carpool #NationalPetDay #LSSC https://t.co/VayEAqQdGy +04/11/2018,Comedians,@StephenAtHome,My friends @MontclairFlim are putting the finishing touches on their Film and Education Center. Please consider mak… https://t.co/iCf8D3dVKj +04/11/2018,Comedians,@StephenAtHome,"""The porn is on the President"" https://t.co/J3dXUnslGY" +04/11/2018,Comedians,@StephenAtHome,Truth https://t.co/71rDSIL5Oo +04/11/2018,Comedians,@StephenAtHome,Almost feel bad for Zuckerberg. There’s no way he left that room full of old people without having to set up their wifi. +04/10/2018,Comedians,@StephenAtHome,"Hey look, we're back! https://t.co/lj4GQREpEI" +04/10/2018,Comedians,@StephenAtHome,Trump's lawyer got raided which means Trump's lawyer's lawyer should probably play it safe and get himself a lawyer. https://t.co/ZNEDQPh6CQ +04/09/2018,Comedians,@StephenAtHome,Carthago delenda est +04/03/2018,Comedians,@StephenAtHome,RT @MikeVanderbilt: RT these photos of character actor Mike Hagerty. https://t.co/y7zhSW6aIB +04/03/2018,Comedians,@StephenAtHome,"Reminder: @BandFlaw lays it all on the Line tomorrow @Spicolis Waterloo, Iowa (hope they play Payback) !!!!!!!Flaw!!!!!!! +#DeathGrind" +04/01/2018,Comedians,@StephenAtHome,Jinx! You owe me a Coke. https://t.co/bNitNTFAkt via @youtube +03/30/2018,Comedians,@StephenAtHome,Burn one with Kacey Musgraves! Kacey Musgraves Performs 'Slow Burn' https://t.co/Ei9Xmv6xDH via @YouTube +03/30/2018,Comedians,@StephenAtHome,"""Jefferson Beauregard Sessions III."" Just going to leave this here for anyone who needs to guess his name or he get… https://t.co/OE7JILfvzW" +03/30/2018,Comedians,@StephenAtHome,"I feel better already! Thanks @mbsings +John Bolton's Terrifying Ideas Sung By Michael Bolton https://t.co/qJhSsfBIAS via @YouTube" +03/30/2018,Comedians,@StephenAtHome,The whole damn thing! https://t.co/mSF2N0w8Rb +03/30/2018,Comedians,@StephenAtHome,The busiest person at the White House is whoever has to update the office contact list. +03/29/2018,Comedians,@StephenAtHome,"RT @BandFlaw: Playing Live: Waterloo, IA - Apr 3 at Spicoli’s https://t.co/ye1C1t5lEA" +03/29/2018,Comedians,@StephenAtHome,"Dana was very nice to credit me last night, but the Brokaw/Ford Obituary sketch was written by Robert Smigel, Louis… https://t.co/WLoTe7mILM" +03/29/2018,Comedians,@StephenAtHome,I am not making this up... https://t.co/b1iOXbaygp +03/29/2018,Comedians,@StephenAtHome,"He escaped arrest but still got sent to his room with no screen time. +https://t.co/EKXYJhG0GT" +03/29/2018,Comedians,@StephenAtHome,"Bolton seems nice, but his mustache is unhinged. @danacarvey stopped by, too! https://t.co/s0m7JBRV0D" +03/28/2018,Comedians,@StephenAtHome,The President has a new nickname! https://t.co/fKtPb6xWdj +03/28/2018,Comedians,@StephenAtHome,"The military's responsibilities according to Trump: +1. build walls +2. parades! +3. excuse bone spurs +4. war & misc." +03/28/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: Stephen Colbert invites his guest #SeanPenn to play #LSSC's newest game, where guests are asked to answer completely r…" +03/28/2018,Comedians,@StephenAtHome,"I know Mueller’s busy but… +https://t.co/0InGMZDM2M" +03/27/2018,Comedians,@StephenAtHome,Looking for Monday's Late Show? Start here! https://t.co/MAFggw6mQQ +03/27/2018,Comedians,@StephenAtHome,"“Also, don't sleep with a porn star who's way smarter than you.” +https://t.co/cFCbMHrnAP" +03/26/2018,Comedians,@StephenAtHome,I always get excited when there’s a @thetrevorpotter sighting! @CampaignLegal is working for all Americans- (D) and… https://t.co/UKjN6LoxoB +03/25/2018,Comedians,@StephenAtHome,"Take that, Sauron!" +03/24/2018,Comedians,@StephenAtHome,"Hey @realdonaldtrump I thought you said you'd run TOWARD the kids, not away from them! https://t.co/7hdX2MxX3b" +03/23/2018,Comedians,@StephenAtHome,Who would win in a fistfight? +03/22/2018,Comedians,@StephenAtHome,"They’re not imaginary, @mindykaling! They’re “Maybe Coming Soon!” Fingers crossed! https://t.co/hXRnd9YYWp" +03/22/2018,Comedians,@StephenAtHome,"@JakePlunkett Will you ever truly be known, even by those you love the most?" +03/21/2018,Comedians,@StephenAtHome,Did you catch last night's monologue? https://t.co/M1Y8PlxgAB +03/21/2018,Comedians,@StephenAtHome,"D.T. phone home. +https://t.co/m4YU0HONqe" +03/20/2018,Comedians,@StephenAtHome,My monologue from Monday's show is here! https://t.co/Loa4VwH4PU +03/20/2018,Comedians,@StephenAtHome,"""Cambridge Analytica"" sounds like the scientific name for ""John Oliver.""" +03/20/2018,Comedians,@StephenAtHome,"Baseball season is only ten days away, which means we’ll soon be able to measure the longevity of Trump’s cabinet members in innings." +03/20/2018,Comedians,@StephenAtHome,"Congrats to Vladimir Putin on winning his first election since November 8, 2016!" +03/20/2018,Comedians,@StephenAtHome,"Oh, we know there's no ""plan.” +https://t.co/QOsKcN6l19" +03/17/2018,Comedians,@StephenAtHome,This “happy ending” version of Danny Boy is simultaneously one of the most beautiful and most stupid things I ever… https://t.co/1iR0jJf6es +03/17/2018,Comedians,@StephenAtHome,Never https://t.co/BmxBTqRLfD +03/15/2018,Comedians,@StephenAtHome,Grace! https://t.co/wAVCaT8yL4 +03/15/2018,Comedians,@StephenAtHome,Help us raise some $ for Art Therapy! https://t.co/29zenDVnHH +03/15/2018,Comedians,@StephenAtHome,True. Honest but Weird. So happy with the weirdness. In tonight’s Act 2. Starts in about 5 min. https://t.co/OI6UkQcG4l +03/15/2018,Comedians,@StephenAtHome,"RT @colbertlateshow: TONIGHT: #PaulGiamatti talks the new season of @SHO_Billions, #SeanBean from @theoathcrackle, and a musical performanc…" +03/14/2018,Comedians,@StephenAtHome,"RT @NorthwesternU: NU EMERGENCY: Person with gun on Evanston campus. If on campus, seek shelter in safe place and stay until further notice…" +07/01/2018,Comedians,@billburr,"RT @allthingscomedy: Sad news today as we learned from @DougStanhope of the passing of ""Unbookable"" member Sean Rouse. A funny man gone too…" +06/29/2018,Comedians,@billburr,Ole freckles has a couple of lines in this talkie: https://t.co/hfT3qnFYTV +06/29/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast is up!! + +I interview Dave Elitch and apologize to The Specials. @thespecials… https://t.co/CZRmmbCUBW" +06/27/2018,Comedians,@billburr,RT @reuvenmoshe: @billburr @NHLBruins NHL’s first black player Willie O’Ree earns Hockey Hall of Fame induction /via @globeandmail https… +06/27/2018,Comedians,@billburr,Motorcyle doc from the 1980's: The Undrideables https://t.co/jC21IticWu These guys were fucking lunatics. +06/26/2018,Comedians,@billburr,People of Philly! Go check out the hilarious and always well dressed @_TomRhodes this week June 28-30th @punchlinephilly +06/25/2018,Comedians,@billburr,@davebrook I saw the Specials +06/25/2018,Comedians,@billburr,"the Monday Morning Podcast is up! + +I ramble about the great Vinnie Paul, music festivals, and hair transplant scars… https://t.co/zk1RCQLBad" +06/25/2018,Comedians,@billburr,RT @Danny_PJones: Jesuuuuuuuus this is terrifying @billburr https://t.co/qYL2ujE2D0 +06/25/2018,Comedians,@billburr,RT @damianfet: @billburr it happened. I'm in the garage and she brings that. Best day ever. @Ewla1986 #bestdayever https://t.co/MgiI95Z8l0 +06/25/2018,Comedians,@billburr,Fuck! I’m the worst! https://t.co/iXlQoDGpYQ +06/25/2018,Comedians,@billburr,"RT @TheMeltingPat: @billburr may have convinced me to get @butcherbox: ""If this had been around, there would be no Jeffrey Dahmer."" Gold @t…" +06/24/2018,Comedians,@billburr,RT @CoachNewman55: @billburr these animals are invading baseball games https://t.co/e85b8IR0Aa +06/24/2018,Comedians,@billburr,"Baltimore! Late show added at The Modell Lyric, October 18th. https://t.co/VPa9AMByAM" +06/23/2018,Comedians,@billburr,"RT @F1: Brollies down ✅ +Skies clearing ✅ + +Qualifying is coming your way! 🙌 + +#FrenchGP 🇫🇷 #F1 https://t.co/iTqo9swUkZ" +06/23/2018,Comedians,@billburr,"RT @sandrobot_: Tarantinos Cast 🔥 + +- Al Pacino +- Leo DiCaprio +- Brad Pitt +- Margot Robbie +- Timothy Olyphant +- Luke Perry +- Damian Lewis +-…" +06/23/2018,Comedians,@billburr,"RT @GarrisonToons: Martin Short in a brilliantly executed visual musical gag. + +Short silly-sweet. Perfect on 5 levels. + +@billburr @joerogan…" +06/23/2018,Comedians,@billburr,Devestated to hear the news of the passing of the great Vinnie Paul. Such an incredible musician and an even nicer… https://t.co/KhdXEB4bRI +06/21/2018,Comedians,@billburr,No way! https://t.co/5lycVGH9tU +06/21/2018,Comedians,@billburr,#ThursdayThoughts +06/21/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about flying home hungover, movie snobs, and Guns N… https://t.co/SC2SXTAMq2" +06/21/2018,Comedians,@billburr,"Charleston, SC!! Late show added at the Gaillard Center on September 16th. https://t.co/FofWdLguiS" +06/21/2018,Comedians,@billburr,"Houston, TX!! Late show added at the Revention Music Center July 27th. https://t.co/NIW8DWpNul" +06/20/2018,Comedians,@billburr,Thanks! https://t.co/GM1eISXJ6D +06/18/2018,Comedians,@billburr,Download the hilarious @RichVos roast here!... https://t.co/A1X2zwG3jX +06/18/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about his last days in Paris, Le Mans, and grounded sixteen year olds. https://t.co/2bpQW6CG8G" +06/18/2018,Comedians,@billburr,RT @joederosacomedy: The Roast Of @RichVos is available NOW. Go buy… https://t.co/U6W0JoHu8W +06/17/2018,Comedians,@billburr,"RT @joebartnick: Going to see Mr Rodgers movie , its PG -13 ?? +Does he tell Mr McFeely to go F himself??" +06/17/2018,Comedians,@billburr,RT @denisleary: My daughter knows how to melt my heart: https://t.co/xX3yr4Tjr0 +06/17/2018,Comedians,@billburr,"RT @SHO_DyingUpHere: When opportunity knocks, will you answer? #ImDyingUpHere #Showtime https://t.co/Q5ARuAFqgA" +06/17/2018,Comedians,@billburr,"RT @peteleetweets: I just woke up to the best Father’s Day gift in the world. +And that gift is that I’m not a dad." +06/17/2018,Comedians,@billburr,RT @TheComedyStore: Happy Father's Day Sammy and to all the dads out there! #thecomedystore #fathersday https://t.co/4dQdoNOzep +06/16/2018,Comedians,@billburr,Been watching Grizzy and the Lemmings. It’s incredible! https://t.co/VjYQNWPtDc +06/16/2018,Comedians,@billburr,R.I.P. Matt “Guitar” Murphy https://t.co/9Z1IFUpSBB +06/15/2018,Comedians,@billburr,@nshaner82 @thibsnation Those were draft picks. They didn’t all rent a yacht over the summer and then decide to pil… https://t.co/GDuP3HsBEc +06/15/2018,Comedians,@billburr,@nshaner82 @ajayi1987 @thibsnation Who did the Bulls bring in? Phil Jackson was just a former Knick turned coach wh… https://t.co/mXyEvN0Qm5 +06/15/2018,Comedians,@billburr,"RT @TheSoftServed: @billburr here is some evidence that us @theMMPodcast listeners do, in fact, listen to the ads! Saved me some cash on @t…" +06/14/2018,Comedians,@billburr,"RT @funnyordie: Jerry Seinfeld and @iamCardiB sit down with Zach Galifianakis for an interview without coffee, cars, or money moves. https:…" +06/14/2018,Comedians,@billburr,RT @bertkreischer: Hey @Uber why do I get charged 10 dollars to cancel a driver who isn’t picking up me or his phone??? https://t.co/SBnVby… +06/14/2018,Comedians,@billburr,RT @bonniemcfarlane: Um i believe that’s called the McFarlane https://t.co/m0c0urQmM5 +06/14/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about eating baguettes, speaking French, and kids l… https://t.co/imrOSJEq1h" +06/13/2018,Comedians,@billburr,Hahahaha!!!! https://t.co/8o75xwJQhS +06/12/2018,Comedians,@billburr,RT @WORLDSTAR: Robert Frank had a special guest during his Sunday night rant about LeBron James! 💪😳😂 @RobertFrank615 @SmoothSmith8 https://… +06/12/2018,Comedians,@billburr,Nice! https://t.co/bQvTr5im9i +06/12/2018,Comedians,@billburr,@thibsnation KD & OKC took you guys to a game 7 the year before and was the Warriors biggest obstacle to the finals… https://t.co/7HoQP2Y7y8 +06/12/2018,Comedians,@billburr,RT @thibsnation: @billburr Before you keep hating on the Warriors... They drafted 3 of those guys. So they got Durant. Who cares. +06/12/2018,Comedians,@billburr,@osheagt Does it send an SOS call once you’re out to sea or do you have to paddle back in? +06/11/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! + +I ramble about the French Open, evil mergers, and how to treat the wait staff. + +https://t.co/jcpJPfz26B" +06/11/2018,Comedians,@billburr,RT @Starting9: This man has life figured out https://t.co/AxyGs387i8 +06/11/2018,Comedians,@billburr,RT @ChristinaP: NYC almost sold out. San Diego too! Tix at https://t.co/2TPFLUZDnO https://t.co/mAtx3bubNK +06/11/2018,Comedians,@billburr,@StevenEYates Haha! +06/10/2018,Comedians,@billburr,"My wife untweeted my retweet because I didn’t leave a comment. So: “Of all the jerk faces in my life, you are my f… https://t.co/tCKBt0YlHv" +06/10/2018,Comedians,@billburr,"RT @bertkreischer: ALABAMA – I’ll be performing in Birmingham at the Stardome June 14, 15, & 16th + +Get your tickets here: +https://t.co/R5fb…" +06/10/2018,Comedians,@billburr,Thank you to everyone at ATC! https://t.co/4EdOXrqTbS +06/10/2018,Comedians,@billburr,@DJBazMati Haha +06/09/2018,Comedians,@billburr,@OscarRobertsUK Nice to see you didn’t get jumped! Thanks for coming out to the show! +06/09/2018,Comedians,@billburr,RT @mikepriceinla: Can LeBron join the Mets? +06/08/2018,Comedians,@billburr,"RT @o2academynewc: If you’re wondering who comedian @dougstanhope is after watching @frankieboyle's #BBC2 #NewWorldOrder, this is him and h…" +06/08/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about my performance at Royal Albert Hall. + +https://t.co/ei2oJdPXHe" +06/08/2018,Comedians,@billburr,"RT @NBCSCapitals: Hey @MGMResortsIntl remember when you promoted that whole ""#nocaps"" thing and then the @Capitals won and literally parade…" +06/08/2018,Comedians,@billburr,RT @Capitals: SHOW US YOUR TIGER EMOJIS!! #ALLCAPS #StanleyCup https://t.co/TBoia9Gb6O +06/08/2018,Comedians,@billburr,Congratulations to the @Capitals Stanley Cup championship! So great to see that organization and fan base finally r… https://t.co/aNoQqsBEC8 +06/08/2018,Comedians,@billburr,RT @Capitals: THE WASHINGTON CAPITALS ARE THE 2018 #STANLEYCUP CHAMPIONS! #ALLCAPS https://t.co/QNrMYcleBi +06/08/2018,Comedians,@billburr,RT @NickDiPaolo: Getting there guys....be with you soon. https://t.co/XhO0yWRk5O +06/08/2018,Comedians,@billburr,"RT @joerogan: MIT fed an AI data from Reddit, and now it thinks of nothing but murder https://t.co/QFb2UuKiEA via @Verge" +06/08/2018,Comedians,@billburr,RT @iFisforfamily: A few of the Voices behind F Is For Family @billburr @LauraDern @justinlong @DebiDerryberry @HaleyReinhart @FIFFNetflix… +06/07/2018,Comedians,@billburr,"RT @AJCassavell: The video is in, and it's glorious. Gabby DiMarco of San Diego, take a bow. https://t.co/CSbdAaValD" +06/07/2018,Comedians,@billburr,That's wheah I staaaaah-ED! https://t.co/yJvg1UA9nb +06/07/2018,Comedians,@billburr,Great meeting you last night. You killed it! https://t.co/SW4UqvU5H2 +06/06/2018,Comedians,@billburr,RT @shoegalshell: @dobcomedy was hilarious last night opening for @billburr ...... any Cork gigs coming up? +06/05/2018,Comedians,@billburr,Stand up comedian and bread baker @tompapa has written a hilarious new book! You can get a copy here: https://t.co/E2shnOZI4s +06/05/2018,Comedians,@billburr,RT @KamalaHarris: It is outrageous that a United States Senator would be barred from entering a federal facility while trying to check on t… +06/05/2018,Comedians,@billburr,RT @jerryferrara: July 1st is coming quick! #PowerTV @Power_STARZ https://t.co/o2SQFTp8XA +06/05/2018,Comedians,@billburr,"RT @barstoolsports: Just because you turned your tuxedo shirt into a soaking, transparent body condom doesn't mean you were on ecstasy +http…" +06/05/2018,Comedians,@billburr,"RT @ToddGlass: COMING TO THESE CITIES...CHECK MY WEBSITE TO SEE WHERE + +JUNE: +SPRINGFIELD, MO +BENTONVILLE, AR +HOPKINS, MN + +JULY: +HUNTINGBEAC…" +06/05/2018,Comedians,@billburr,RT @joebartnick: Vegas is hitting more pipes in Washington than Marion Berry +06/05/2018,Comedians,@billburr,RT @CormacComedy: Good laugh in the Comedy Shed tonight. Then @billburr shows up in the @ComedyCrunch! Unbelievable Jeff. #comedy #dublin h… +06/04/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about the Capitals, recliners, and the Irish News. https://t.co/k9U2NnGh03" +06/04/2018,Comedians,@billburr,@Breezy4sheezee @PETMpodcast @theMMPodcast @DanicaPatrick @allthingscomedy I’ll go out on a limb and say you’re projecting. Lol +06/02/2018,Comedians,@billburr,RT @MotoGP: You won't see a faster crash than this in #MotoGP!!! 😱😱😱 https://t.co/migPHdL898 +06/01/2018,Comedians,@billburr,RT @allthingscomedy: Tonight! @TinFoilHatCast is live in San Francisco @CobbsComedyClub with @samtripoli @eddiebravo @trezmala & Off the Gr… +06/01/2018,Comedians,@billburr,@Oscarbonill91 It’s all good until he locks his arm and then rolls with it underneath his body. That dude does a gr… https://t.co/YPxpXI3muU +06/01/2018,Comedians,@billburr,RT @MM_Center: Today is the first day of sale for @billburr LIVE and tickets are selling FAST!! Get your tickets before the show is SOLD OU… +06/01/2018,Comedians,@billburr,Brutal. https://t.co/BP7TpvjnDx +05/31/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast is up!! I ramble about Vegas pregame show, his temper, and nobody having the… https://t.co/93FTD7ulSK" +05/31/2018,Comedians,@billburr,RT @barstoolsports: STONEWALLED https://t.co/bjqxR2MqKm +05/31/2018,Comedians,@billburr,Very excited to be a small part of the amazing TJ Hooker reboot! https://t.co/BlHah8qIW6 #MMPodcast +05/29/2018,Comedians,@billburr,Fair enough https://t.co/0up3YyPlMO +05/29/2018,Comedians,@billburr,I think Broadway picked up a few new tricks there. https://t.co/Ko7FjTmpA6 +05/29/2018,Comedians,@billburr,"RT @JarrettBellini: @billburr I'm told it's hockey. +But I beg to differ." +05/29/2018,Comedians,@billburr,WTF am I watching? #VegasKnightsIntro +05/28/2018,Comedians,@billburr,RT @Jim_McMenamin: @billburr @theMMPodcast Wasn't Korean Foreskins a punk band from the late 70s/early 80s ? +05/28/2018,Comedians,@billburr,"RT @mamabakes3: @billburr @theMMPodcast A Babushka is a Russian or Polish old lady, but also a term of endearment for Grandma. https://t.co…" +05/28/2018,Comedians,@billburr,@ocrcove Lies! +05/28/2018,Comedians,@billburr,"the @theMMPodcast is up!! + +I ramble about losing Game 7, Hollywood vanity, and Korean Foreskins. + +https://t.co/t1g2Z5950i" +05/28/2018,Comedians,@billburr,@OldManPaLive Ok since you were a team we’ve won 6. Goidnighy +05/28/2018,Comedians,@billburr,@MarkdFL Take all those away and we STILL got 6. You have one title the Rock and Roll Hall of Fame. +05/28/2018,Comedians,@billburr,@Aaron_Torres @SGSFOX Jordan won 6 titles with Luc Longly and Bill Cartwright at Center. He completely changed the… https://t.co/MPDPcTOvYc +05/28/2018,Comedians,@billburr,You might want to go to a Cavs home game and look up at your barren rafters that are filled with division title and… https://t.co/9XTOtA2JNz +05/28/2018,Comedians,@billburr,@plkubiak Anyone but the Warriors is how I’m looking at it. +05/28/2018,Comedians,@billburr,@OCBeachDiamond Kobe wouldn’t have won with that team. He would’ve bitched to ownership the whole year. Kobe played… https://t.co/DGAXiXFrHH +05/28/2018,Comedians,@billburr,"RT @jrobhaha: @billburr When you go hard, but not like hard hard" +05/28/2018,Comedians,@billburr,I love your Game 7 face with the seatbelt on. https://t.co/7qfKl0x8Uc +05/28/2018,Comedians,@billburr,Fuckin LeBron James. Unreal. Funny thing is people will still trash him. Congrats to the Cavs. Future is bright for the Celtics. +05/27/2018,Comedians,@billburr,"RT @joerogan: US lost track of 1,500 undocumented children, but says it's not 'legally responsible' https://t.co/gheRqrlz7j" +05/27/2018,Comedians,@billburr,@mike_emerson @danielricciardo Ahhh sorry man. +05/27/2018,Comedians,@billburr,Congratulations to @danielricciardo on his first win at Monaco! +05/26/2018,Comedians,@billburr,Haha! https://t.co/4LHKDzbl33 +05/26/2018,Comedians,@billburr,Love that he’s doing a podcast! https://t.co/anhmzA5KQS +05/26/2018,Comedians,@billburr,"RT @PETMpodcast: Not sure how many of y'all listen to @billburr @theMMPodcast, but his Thursday edition this week (dude does two shows a we…" +05/25/2018,Comedians,@billburr,"thanks again @DanicaPatrick, @IMS, and @GoDaddy. give a listen if you haven't already! https://t.co/hkxEqO0Zdj" +05/25/2018,Comedians,@billburr,RT @BlindMike_: I'd recommend subscribing to the @allthingscomedy YouTube. They're putting out some funny shit like @billburr poker show an… +05/24/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I talked with professional race car driver @DanicaPatrick.… https://t.co/a9uMv9s1er" +05/23/2018,Comedians,@billburr,RT @allthingscomedy: Happy Birthday to host of Valley Vibes @brodyismefriend follow him and go watch episode 1! https://t.co/tm0LegkuLl #AT… +05/23/2018,Comedians,@billburr,That’s right! Old school flay-VAHS! https://t.co/N2wD5uahse +05/23/2018,Comedians,@billburr,@Defiant888 @A_JackElliott It was Joy Division +05/22/2018,Comedians,@billburr,RT @roseorosso: Caught a glimpse of some old @billburr standup and saw this guy with some red fuzz on the noggin! https://t.co/vam6ETs5i2 +05/21/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about Artisan ice cream, expansion franchises and the Royal Wedding. https://t.co/RhvKzanTse" +05/21/2018,Comedians,@billburr,"RT @Webster_Arena: Come laugh with Comedian @billburr at Webster Bank Arena on Saturday, October 6th! + +TICKETS: https://t.co/zR6oLHXEGu ht…" +05/21/2018,Comedians,@billburr,RT @LiveNationUK: EXTRA TICKETS RELEASED for @billburr at London's @RoyalAlbertHall next month! Be quick 👉 https://t.co/cQ41DB2WqS https://… +05/20/2018,Comedians,@billburr,Wow. https://t.co/u2gs3Y021W +05/20/2018,Comedians,@billburr,Close: “Millennial” https://t.co/rWDpgnIrhC +05/20/2018,Comedians,@billburr,"RT @Coach_Dugs: @billburr It’s a very uncommon play in the sport and specifically the league, so I get it." +05/20/2018,Comedians,@billburr,That asshole that stands up on every three point attempt. #STFDYMC +05/19/2018,Comedians,@billburr,Haha! https://t.co/tg1OVASRnn +05/18/2018,Comedians,@billburr,RT @theMMPodcast: tammp music 5-17: @Bob_Reynolds - Down South. https://t.co/kvsQ6AnkJj +05/17/2018,Comedians,@billburr,RT @questlove: yikes https://t.co/HFWFzUVM8z +05/17/2018,Comedians,@billburr,RT @FIFFNetflix: Recording ADR with @realphilhendrie and Sam Rockwell today. https://t.co/LguPpyDuaO +05/17/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! + +I ramble about San Francisco, keeping score, and… https://t.co/ly9e8wIze6" +05/16/2018,Comedians,@billburr,RT @Jake_speare: @billburr Not bad! I see your Lars Ulrich and raise you Tony Williams from the 1982 #Zildjian Day clinic https://t.co/tI8m… +05/16/2018,Comedians,@billburr,RT @stephenasmith: Line of the night delivered by Jeff Van Gundy: “The @Cavs eye-roll one another more than folks in a bad marriage! Haaaaa… +05/15/2018,Comedians,@billburr,as mentioned on today’s podcast: This is what I do when my team gets knocked out of the NHL playoffs. (Metallica dr… https://t.co/AUE959Dyj2 +05/15/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about museums, paper shredders, and getting a lawyer. https://t.co/A7uflxyRdc" +05/14/2018,Comedians,@billburr,Dave Anthony and Gareth Reynolds have a new episode of Trash Toons today on All Things Comedy! https://t.co/8ckymNTNNK +05/14/2018,Comedians,@billburr,RT @theblood85: Chuck Knox was one of the most influential men in the early days of my career. Great coach and an even better man. #RIPChuc… +05/13/2018,Comedians,@billburr,Check out Jason Reitman’s new film Tully after thanking your Mum for doing the hardest job on the planet. https://t.co/Jzc9GvH82W +05/12/2018,Comedians,@billburr,RT @theMMPodcast: hope you’re all enjoying this hilarious interview #gfys https://t.co/Afw9vry5yr +05/12/2018,Comedians,@billburr,RT @JasonLawhead: #TBT circa Sept 2006. Not even 2 years in doing stand up w/ two of my closest comedy life influences @Hilarities owner Ni… +05/10/2018,Comedians,@billburr,the Thursday Afternoon Monday Morning Podcast is up!! I sit down with Bill Hader to talk about his new @HBO show B… https://t.co/lZLC1VpMD7 +05/07/2018,Comedians,@billburr,RT @allthingscomedy: Who do you think has slept with more women? A brand new 🔥Something's Burning🔥 with @bertkreischer is up with guests @c… +05/07/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about steak houses, the Bruins, and legal tender. https://t.co/pAeSm6wky2" +05/05/2018,Comedians,@billburr,@StoneyCJones Nothing funnier than a white rapper +05/05/2018,Comedians,@billburr,@Billybry10 No they aren’t. They are all over the map. Either let them play or call everything. Even the announcers… https://t.co/fQl3ie5lJI +05/05/2018,Comedians,@billburr,@ItsRodStebbings All I’m asking for is consistency. When the broadcasters are questing the calls too there is a problem. +05/05/2018,Comedians,@billburr,@ItsRodStebbings I thought it was because we won all those championships. +05/05/2018,Comedians,@billburr,These referees have been absolutely brutal for three straight games. When will one of their shit calls go in our favor? +05/03/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about the Hollywood sign, shitty news outlets, and… https://t.co/iTeQdisEGR" +05/03/2018,Comedians,@billburr,"RT @TheMMphotoshop: ""How dare you put me in that position Mr. and Mrs. Delta Airlines!"" https://t.co/ccbrRJ8bY0" +05/02/2018,Comedians,@billburr,@The_Grump90 Taping it! +05/01/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about Talladega, First Class, and coyotes. https://t.co/HR2eD1Ok0X" +04/30/2018,Comedians,@billburr,Nice!!! https://t.co/LKnNP3nwTt +04/30/2018,Comedians,@billburr,RT @natebargatze: At #Talladega with @billburr. #RubbinsRacin #NASCAR https://t.co/eozQWgPtdm +04/27/2018,Comedians,@billburr,"RT @boblazarstory: @billburr get on this, Billy boy.......https://t.co/Di2gZg1B2m" +04/27/2018,Comedians,@billburr,RT @THELORDmusic: Need to go to Club 290 now and tell Tommy @billburr said to spin the wheel. +04/27/2018,Comedians,@billburr,RT @theMMPodcast: 'Boston-bred loud mouth balancing rage with self-deprecation.' https://t.co/ABeA1v7O6o +04/26/2018,Comedians,@billburr,"the Thursday Afternoon Monday Morning Podcast is up!! I ramble about the super cold, creating controversy and Her… https://t.co/j526CIeiTm" +04/25/2018,Comedians,@billburr,"RT @ktom8: @billburr There are two legs, one home and one away. The combined score of those two games wins. The Final however is just one g…" +04/25/2018,Comedians,@billburr,RT @ktom8: @billburr You qualify for the Champions League. You continue to play in your respectively league throughout the season but you a… +04/25/2018,Comedians,@billburr,"RT @ktom8: @billburr So every country in Europe has their own Soccer/Football League. The big 5 are The Premier League-England, La Liga-Spa…" +04/25/2018,Comedians,@billburr,"@theMMPodcast is up!! I ramble about the common cold, a 14 yr old’s dream, and being a navy seal in Australia. https://t.co/SxhdgzeLpF" +04/24/2018,Comedians,@billburr,@WMFC91 Wind knocks down Anderson. +04/24/2018,Comedians,@billburr,Every team flops but I have to give it up when a player adds the 360 pirouette! +04/24/2018,Comedians,@billburr,I’m guessing there are a lot of soccer fans on the Leafs. +04/24/2018,Comedians,@billburr,Ole freckles had to call in sick today. I will record podcast tomorrow. +04/23/2018,Comedians,@billburr,RT @DonMStahl: @billburr @IdHitThatPod great shot of Malcolm here! https://t.co/KAjXBE6EmU +04/22/2018,Comedians,@billburr,RT @oklasal81: @billburr. Animals in santa clarita https://t.co/sR6oTLNZm4 +04/22/2018,Comedians,@billburr,"RT @vikasjo: @BretErnst Heard you on @billburr podcast, checked out your special - Very funny, you have a fan in me now ! #Principal’s Offi…" +04/22/2018,Comedians,@billburr,Bridgeport CT! The @stressfactoryct opens May 3-5 with the incredible Jim Breuer! Get tickets here: https://t.co/Fm92VmlSm1 +04/20/2018,Comedians,@billburr,RT @BretErnst: Thanks to my good friend @billburr for having me on his podcast! Check it out here! https://t.co/QoG7lHwmvc +04/19/2018,Comedians,@billburr,the Thursday Afternoon @theMMPodcast is up! I sit down with comedian @BretErnst. https://t.co/HUzqRFIG4P +04/19/2018,Comedians,@billburr,RT @andrewTopHat: @billburr it goes on clear so you can see the stubble/hairs/etc otherwise you are just seeing a bunch of foam and shaving… +04/16/2018,Comedians,@billburr,"the Monday Morning Podcast is up!! I ramble about taxes, Syria and not being a rat. https://t.co/DGbvRDCCws" +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Let’s go!!! #RNR3. Starts at 7:15. Don’t miss this crew @billburr @BarstoolBigCat https://t.co/PCXh87CQKe http… +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Bill Burr is in the building. He's ready for something he's never seen before. Rough N Rowdy starts in about 2 hours.… +04/13/2018,Comedians,@billburr,Watch @kirkfox new special “That Guy” on Showtime tonight @10pm! https://t.co/vcQ2SgqHS3 +04/13/2018,Comedians,@billburr,RT @stoolpresidente: Prediction: Pain. 👀. And there is no way he has seen Rocky 3 either which makes it scarier. We got real life… +04/13/2018,Comedians,@billburr,"RT @PardonMyTake: OMTR is officially the biggest underdog in Rough n Rowdy history. No one is giving him a shot tonight. He's older, shorte…" +04/13/2018,Comedians,@billburr,tonight!! @barstoolsports @stoolpresidente @BarstoolBigCat https://t.co/FqRgtmC9ru https://t.co/EL8UQKzlCp +04/13/2018,Comedians,@billburr,RT @lunchbawks0: @billburr there's this Irish bar we can remember the name of.. its somethin o' somethin.. so we just call it Patrice O' Ne… +04/13/2018,Comedians,@billburr,RT @TallSoHard: If y’all don’t pregame tomorrow by watching Rough N Rowdy you’re doing it wrong!! @billburr @BarstoolBigCat @stoolpresident… +04/13/2018,Comedians,@billburr,Just want to thank the great Mitzi Shore for everything she did for stand up comedy. A true legend. It’s been such… https://t.co/vHsjW391EB +04/13/2018,Comedians,@billburr,"RT @GamblingPodcast: Bill Burr (@BillBurr) calls in to talk Rough N' Rowdy 3! #RNR3 @barstoolsports +w/ @seantgreen & @kramercentric + +LISTE…" +04/12/2018,Comedians,@billburr,"I just talked about my preparation for @roughnrowdy, how the fighters like their hash browns, and old school #UFC o… https://t.co/57Ze9iY6Zx" +04/12/2018,Comedians,@billburr,"the Thursday Afternoon @theMMPodcast up!! I ramble about toupees, clean living and baseball fights. https://t.co/oyI2eTpf2e" +04/12/2018,Comedians,@billburr,"RT @barstoolecu: You’re going to want to watch @roughnrowdy live from Charlotte, NC this Friday night! 40+ fights featuring guest announcer…" +04/12/2018,Comedians,@billburr,thanks! https://t.co/ySGPS3cxMT +04/12/2018,Comedians,@billburr,RT @LoisReitzes: @JudahWorldChamp is smart and hilarious. Fascinating to watch him onstage. His @netflix show is up for a webbie. Listen he… +04/12/2018,Comedians,@billburr,RT @FIFFNetflix: Final retake edit for S3 E1 tonight. https://t.co/SYXF0CJ7OR +04/12/2018,Comedians,@billburr,RT @attell: She was a legend in the biz. And there will never be another one like her.  Give it up for the late great Mitzi Shore.  You wil… +04/11/2018,Comedians,@billburr,RT @BarstoolRadio: Bill Burr called into Barstool Radio as #RNR3 approaches this Friday night https://t.co/aZHQrAzd0P https://t.co/OSZDPXhL… +04/11/2018,Comedians,@billburr,FridayNight!! https://t.co/vPtmPMi7ZL +04/11/2018,Comedians,@billburr,Nice! https://t.co/qDjUpq2Inh +04/11/2018,Comedians,@billburr,"RT @jeremymarksmith: @billburr F1 telecast is coming from the ""world feed"" So ESPN doesn't actually control the feed. It's based on the F1…" +04/10/2018,Comedians,@billburr,I will be on @BarstoolRadio talking @roughnrowdy with @stoolpresidente on @SIRIUSXM Power 85. https://t.co/Pvy786YF5P +04/10/2018,Comedians,@billburr,"RT @TheMMphotoshop: ""The whole point of making music is to do it with other fuckin' people. +It's like, I get it, you have no friends."" http…" +04/10/2018,Comedians,@billburr,@Pocket_Queen Major talent! Thanks for the vids! +04/10/2018,Comedians,@billburr,RT @LSUBarstool: THRILLRIDE IS READY. Just 4 days until the Barstool LSU @roughnrowdy watch party at @Fredsbar. Rough N Rowdy 3 is coming l… +04/10/2018,Comedians,@billburr,RT @RicFlairNatrBoy: Steve Austin In The House! WOOOOO! @steveaustinBSR https://t.co/MX5DxbRZcA +04/09/2018,Comedians,@billburr,RT @allthingscomedy: Watch @bertkreischer hurt himself again on a Brand New episode of Something's Burning with @WheelerWalkerJr & @leeannw… +04/09/2018,Comedians,@billburr,".@theMMPodcast is up!! I ramble about Rough N Rowdy, Billy 'no Vice', and lunatic Sheela. https://t.co/kbxdIt7Dgi" +07/01/2018,Comedians,@davidcrosss,@karengeier I keep the other two pairs in my limousine +07/01/2018,Comedians,@davidcrosss,Portland! Just got my replacement socks at the Target down the street and I'm ready to kick ass at this SRO show at… https://t.co/JTwp7FyfCu +07/01/2018,Comedians,@davidcrosss,"Richard! You pretty much have it (winking emoji). To be specific yours is, “TINY HANDS = TINY HEART” which, come on… https://t.co/mmpgzGeUAT" +06/30/2018,Comedians,@davidcrosss,"Ross, you've got it (I think). Yours reads, ""I LOVE MAIL ORDER BRIDES.” So...yes? Good job sir. #ohcomeon https://t.co/JESxsramit" +06/29/2018,Comedians,@davidcrosss,@mike_maas @amazon Dont do it +06/29/2018,Comedians,@davidcrosss,"Okay Shelley, I'll give you everything but the last word. Yours says: “MIKE PENCE IS EVEN _____ “ You take it from… https://t.co/wy1t87sqlC" +06/29/2018,Comedians,@davidcrosss,"Hey, the show I wrote and directed in the U.K. is finally coming to what used to be America! Info about how you can… https://t.co/mAyDoa3W0H" +06/29/2018,Comedians,@davidcrosss,"RT @TVietor08: Send this article to all of your friends in Maine, Alaska, Indiana, North Dakota, West Virginia, and Missouri and tell them…" +06/29/2018,Comedians,@davidcrosss,"RT @EugeneMirman: People are really grabbing the word fuck by the pussy, huh Senator? But in all seriousness, I think it became acceptable…" +06/29/2018,Comedians,@davidcrosss,https://t.co/Dk7Oc9Q2PZ +06/28/2018,Comedians,@davidcrosss,"RT @aravosis: ANDERSON COOPER: “Jeff, I heard you say earlier that within 18 months abortion could be illegal in as many as 20 states.” + +LE…" +06/28/2018,Comedians,@davidcrosss,Darci! How are you? Long time. You got one of my faves actually. I will tell you the first couple of words: “I DIRE… https://t.co/T3pxyvx8qN +06/28/2018,Comedians,@davidcrosss,"Come on Anthony! At least try. Here's a hint, ""DO NOT TRUST"" are the first words. There are two more. And no, Donal… https://t.co/y0VUrnQCKF" +06/28/2018,Comedians,@davidcrosss,"RT @TheWhitneyBrown: When a majority of 1 in the Senate, representing a third of the US population, can put a judge on the Supreme Court fo…" +06/28/2018,Comedians,@davidcrosss,RT @EricBoehlert: reminder: https://t.co/8UO5SAql9Z +06/28/2018,Comedians,@davidcrosss,"RT @staceyabrams: Not-so-fun-fact: Every year Georgia doesn’t expand Medicaid, we miss out on $3 billion (billion, with a “B”) federal doll…" +06/27/2018,Comedians,@davidcrosss,over here! https://t.co/IZnugkzd3V +06/27/2018,Comedians,@davidcrosss,Oh... https://t.co/76Mz5womly +06/26/2018,Comedians,@davidcrosss,"Oh man, drop what you are doing (well I guess you're checking Twitter but still...) read this thread. FUN! https://t.co/ZPBtfuR3xW" +06/26/2018,Comedians,@davidcrosss,Can we start with him? https://t.co/RYV7flcClf +06/26/2018,Comedians,@davidcrosss,@olegdavydkin Bots +06/26/2018,Comedians,@davidcrosss,@Nikolaiberry Nice! I'll try to find you. +06/26/2018,Comedians,@davidcrosss,@Tjonespoc In your mother's closet? +06/26/2018,Comedians,@davidcrosss,@HammerJoeBrooks During. Don't make it weird! +06/26/2018,Comedians,@davidcrosss,@nolafilm I'm also a D.A. in Eugene Oregon and have a drill bits store in Ft. Wayne IN. +06/26/2018,Comedians,@davidcrosss,@slimjimtx Ну вот! https://t.co/HfKopqfoSo +06/26/2018,Comedians,@davidcrosss,"Chris! You got it the second time, it's: SATANISTS FOR TRUMP. Wear that and feel proud. #OhComeOn #MuellerWitchHunt https://t.co/XPuBWJORdh" +06/26/2018,Comedians,@davidcrosss,"Scott! This one you should wear next time you're in #Russia . Or at least Brighton Beach. It reads, “2018 WORLD TOU… https://t.co/qvILKAlMFp" +06/26/2018,Comedians,@davidcrosss,"Brady! Ha. No. It's: ""TWITTER MAKES ME ERECT."" It exactly translates to, ""I Have it Standing for Twitter” which is… https://t.co/TVuvA4IlYg" +06/26/2018,Comedians,@davidcrosss,"Jennifer! That is my ABSOLUTE favorite guess so far. No, it's not, ""Cinnamon Toast Crunch Cereal"". It’s, “TOO DUMB… https://t.co/i5i1v9eRDg" +06/26/2018,Comedians,@davidcrosss,Of course he can be so blatant about it. Because his fans are *literally* too dumb to realize it. Even Trump can ga… https://t.co/Js89pjIxcE +06/25/2018,Comedians,@davidcrosss,"@Nikolaiberry Hey Nick, you got; ""THIS HOLDS MY HAIR ON."" Please wear it to your next MAGA rally, point, and smile.… https://t.co/UkzbXuptS5" +06/25/2018,Comedians,@davidcrosss,"RT @Lawrence: Please keep doing this, Andrew. Please. + +(Retweet if you want more reporters to do this.) https://t.co/3VBDiMfBg8" +06/25/2018,Comedians,@davidcrosss,"RT @blackfamilyunit: White people, no one is asking you to apologize for your ancestors. We are asking you to pull down and dismantle the s…" +06/25/2018,Comedians,@davidcrosss,RT @OhNoSheTwitnt: “Be civil to bigots and they’ll be civil to you” is the new “misogynists wouldn’t be like that if women would just have… +06/25/2018,Comedians,@davidcrosss,"Ileen, you truly are life's cheerleader, yes Eugene was correct, “GOLF WILL MAKE AMERICA GREAT AGAIN."" It truly wil… https://t.co/s8eQNKQDiH" +06/25/2018,Comedians,@davidcrosss,"Donald! Close, very close, but yours specifically translates to ""Jared's Cell Mate"". We were going for, ""bunk mate""… https://t.co/snr6NtXr1A" +06/25/2018,Comedians,@davidcrosss,"@_j_cole_w_ @ScottBaio @realDonaldTrump Cole, you got it! Well to be fair in Russian it can be swapped out for, ""br… https://t.co/dNjg7RnzkO" +06/25/2018,Comedians,@davidcrosss,Dylan! Yes. Nailed it. That's exactly what it is. Good job! #ohcomeon https://t.co/V6qSAkB6Z3 +06/25/2018,Comedians,@davidcrosss,RT @camillard: My Nana asked me how to Instagram and girl I think the fuck NOT. We let your generation on Facebook for 5 mins and got a Bre… +06/25/2018,Comedians,@davidcrosss,RT @JohnJHarwood: Rubio on Trump Feb 2016: “a con man pulling the ultimate con job on the American people” https://t.co/h2WLZkMXlk +06/25/2018,Comedians,@davidcrosss,@cwwmbm @dubdunk @realDonaldTrump Oh dear. Yes that is a mistake all right. There's no word like that in Russian. O… https://t.co/ybIy2N3Qix +06/25/2018,Comedians,@davidcrosss,"RT @virgiltexas: If a Trump supporter came into my dick sucking factory, I would REFUSE to serve them. #MAGA #Resistance" +06/25/2018,Comedians,@davidcrosss,Gary! Well done. That's exactly what yours says: UNDER HIS EYE. Give Mr. Honold an extra biscuit for sporting the h… https://t.co/raSsWRRGQx +06/25/2018,Comedians,@davidcrosss,"I do, Nick. You know I do. I always have. And I always will. #ohcomeon https://t.co/enXqZIaJAo" +06/25/2018,Comedians,@davidcrosss,"Paul, this is a good one. I'll tell you the first word is ""HYPOCRITES"" and the last word is ""TRUMP."" #OhComeOn… https://t.co/OmMUI9z60f" +06/25/2018,Comedians,@davidcrosss,"Kyle! You got one of my fave's, I will tell you the first three words, +""TRUMP: PROPERTY OF ..."" You'll have to figu… https://t.co/jxGSpUR3OH" +06/25/2018,Comedians,@davidcrosss,"Another important observation by Josh Marshall + +Against ‘Civility’ https://t.co/ny4E13j2YW via @TPM" +06/25/2018,Comedians,@davidcrosss,"RT @mrbenwexler: - It cost $36/day +- 99% of asylum seekers showed up for their court dates +- trump decided to separate families at a cost o…" +06/24/2018,Comedians,@davidcrosss,https://t.co/GYt7ekWc8E +06/24/2018,Comedians,@davidcrosss,"Chris! This is the very hat I was sewing in that pic (bonus points!). The hat reads as follows: ""REGISTERED SEX OFF… https://t.co/rymueodxqx" +06/24/2018,Comedians,@davidcrosss,"Yep. 65,853,514 is definitely more than 62,984,828 --- Ha, love that you tagged @ScottBaio in that.… https://t.co/V3kwRmleWr" +06/24/2018,Comedians,@davidcrosss,"@johnnykwuhhh Johnny, you get the gist but I'm going to give you the EXACT +translation (Google can only do so much)… https://t.co/hqhFqGkeVP" +06/24/2018,Comedians,@davidcrosss,"Hi Jon. Not exactly. More like, ""Tiny Hands = Tiny Brain."" #ohcomeon https://t.co/wyF0WlwhxC" +06/24/2018,Comedians,@davidcrosss,"Thank you! Well, I'll tell ya, it means, ""I BELONG IN PRISON"" but to be EXACT, it translates to,""Prison is Crying f… https://t.co/HM9Q82BqyV" +06/24/2018,Comedians,@davidcrosss,"@stevenfischerky Ha! Understood about having traceable Russian queries +on your computer. Okay, Steve, it translates… https://t.co/IWfgckPDSQ" +06/24/2018,Comedians,@davidcrosss,"Anupam! Wear this hat at the next @realDonaldTrump rally and confuse everyone +within sight. It reads: ""YEAH, BUT HE… https://t.co/czirkk2z65" +06/24/2018,Comedians,@davidcrosss,"RT @eod1140: #ohcomeon, https://t.co/kjAe0dUiLr" +06/24/2018,Comedians,@davidcrosss,@eod1140 Agreed. https://t.co/PFmUKLQ2Do +06/24/2018,Comedians,@davidcrosss,"@dubdunk @realDonaldTrump Will- you sir, are letting the Russian-speaking world know, that you are a Secret… https://t.co/s7kva2M7Q8" +06/24/2018,Comedians,@davidcrosss,@DekeReads Hi Deke. Totally cool to wear to school! Or church or playground or airport or rally or homeless shelter… https://t.co/GfhnioFUh1 +06/24/2018,Comedians,@davidcrosss,"Well now, Thomas (or Doug? I'm confused...) I can help you out with the first part, ""Small Hands = Small ____ ."" No… https://t.co/xm6THIpQZy" +06/24/2018,Comedians,@davidcrosss,"@lucksbane Stephen! Feel bad for Grandpa Joe but your hat translates to, ""72 Year-Old Baby"" so maybe he can wear it too? #OhComeOn" +06/24/2018,Comedians,@davidcrosss,"Close Rebecca! It's, ""Resident Trump."" But I like yours better to be honest. Let's just go with that. #OhComeOn https://t.co/pgoiZ5ycHq" +06/24/2018,Comedians,@davidcrosss,@theladybeav @jfreewright Ha. Didn't even catch that. +06/24/2018,Comedians,@davidcrosss,@EugeneMirman It's really great. Very relaxing too. +06/24/2018,Comedians,@davidcrosss,"I'd like to option this story and make a short movie about it and title it, ""The Sandra Bland Story"". https://t.co/6eKaNhzydD" +06/24/2018,Comedians,@davidcrosss,@EugeneMirman You can't eat there but go to the John Rylands Library in Manchester. One of my favorite places on ea… https://t.co/doZtr8ZdnW +06/24/2018,Comedians,@davidcrosss,RT @nycsouthpaw: It’s strange to talk about a guy who lost the popular vote by three million and has rarely seen an approval rating north o… +06/24/2018,Comedians,@davidcrosss,I know these are awful and soul killing times but in between bouts of deep depression and anxiety I have thoroughly… https://t.co/z6t9dl73TR +06/24/2018,Comedians,@davidcrosss,@StallmansBeard @Pornhub Odd +06/24/2018,Comedians,@davidcrosss,Wait?!?! You have it? Holy shit. This is HUGE! Listen to me closely- do not panic. You need to do two things RIGHT… https://t.co/tRnc28prgZ +06/24/2018,Comedians,@davidcrosss,"@jfreewright ""Riddle me this"". +His whole shtick is basically fleeting pop culture detritus, an, ""anti cool kids"" p… https://t.co/W9YoHUiBpw" +06/24/2018,Comedians,@davidcrosss,@thetigersez @OhNoSheTwitnt Mike Huckabee +06/24/2018,Comedians,@davidcrosss,There's no such thing as white privilege!!! https://t.co/fV9PM1G6BW +06/24/2018,Comedians,@davidcrosss,"RT @CassLovesToTan: @joshtpm Look, I have a closet full of clothes +I know of I'm wearing a tight dress +A shirt that shows cleavage +An outfi…" +06/24/2018,Comedians,@davidcrosss,Seeing this tweet again is like finding 20 bucks in an old pair of pants...then getting a call that your script go… https://t.co/gqnBhFteGc +06/24/2018,Comedians,@davidcrosss,Sad but true. Even my dog knows this: https://t.co/8ftDDqoVMU +06/24/2018,Comedians,@davidcrosss,@TheStrongIsland @_ethiopiangold @TreatWellHealth The irony... +06/24/2018,Comedians,@davidcrosss,@rini6 @punkscience8 Thanks Irene! +06/23/2018,Comedians,@davidcrosss,@easternberg @mmschocolate Yes +06/23/2018,Comedians,@davidcrosss,@bennettcain @ambertamblyn Disturbed it is then. I was just trying to figure out the pretentious part (which is mil… https://t.co/X56VK7C2L8 +06/23/2018,Comedians,@davidcrosss,RT @_ethiopiangold: So my little cousin was selling water and didn't have a permit so this lady decided to call the cops on an 8 year old.… +06/23/2018,Comedians,@davidcrosss,"RT @bust_magazine: We talked to @ambertamblyn about her debut novel, #AnyMan; her involvement with #TimesUp; and more: https://t.co/T2hWEyv…" +06/23/2018,Comedians,@davidcrosss,"@SuzyWong1945 Sorry Suzy, facts dont care about feelings. It's the truth." +06/23/2018,Comedians,@davidcrosss,@SusanMMiller129 I will DEFINITELY be in Dallas. Literally always a fun show. +06/23/2018,Comedians,@davidcrosss,"RT @davidcrosss: Ladies & Gentlemen, tickets are now on sale to the unwashed masses for my latest stand up tour. Go to https://t.co/VXkIfIj…" +06/23/2018,Comedians,@davidcrosss,@bennettcain Distance myself from my legacy? I dont understand. How? Because I talked about my kid? Because I did s… https://t.co/dNw8d1pRQw +06/23/2018,Comedians,@davidcrosss,RT @feministabulous: Two people ran the president's campaign. One of them just mocked the harrowing trauma experienced by a ten-year-old gi… +06/23/2018,Comedians,@davidcrosss,"RT @PoliteMelanie: I have two questions about Space Force: +1) When will Puerto Rico have electricity? +2) When will Flint have clean water?" +06/23/2018,Comedians,@davidcrosss,@pattonoswalt An angry vacuum +06/23/2018,Comedians,@davidcrosss,"RT @DonCheadle: and if msm (i know you’re not including @FoxNews) paid attn, perhaps more ppl would have even known about troubling practic…" +06/23/2018,Comedians,@davidcrosss,"Not sure what the big deal is, he was at Booth 129 at Dragoncon and was announced months in advance. $50 a pop. https://t.co/n8wgeydsmy" +06/23/2018,Comedians,@davidcrosss,"RT @sarahkendzior: US officials who have committed felonies -- provable felonies like lying on clearance forms, which should have led to th…" +06/22/2018,Comedians,@davidcrosss,RT @SteveFNMayer: Was hoping to get a hat quoting caligula. Sad. #fakehat #OhComeOn really though davidcrosss please tell me what it means… +06/22/2018,Comedians,@davidcrosss,"RT @NathanHRubin: The people who hid Anne Frank were breaking the law. + +The people who killed her were following it. + +“Following orders”…" +06/22/2018,Comedians,@davidcrosss,@bennettcain In what way(s)? +06/22/2018,Comedians,@davidcrosss,@mcdoobie Had to reschedule. Is now on jury 23rd. Sorry about that +06/22/2018,Comedians,@davidcrosss,@melaniazulm Yes July 23rd now. Apologies. +06/22/2018,Comedians,@davidcrosss,@kilmeade So that means you're upset that they are not on their way to being reunited with their parents and will s… https://t.co/apl6RyNUCj +06/22/2018,Comedians,@davidcrosss,"Philadelphia friends, looking forward to tomorrow night at The Fillmore! + +Fun fact about Philly: people from Philad… https://t.co/7i8iv8F6lV" +06/22/2018,Comedians,@davidcrosss,"Come on @cazartchronicle give it the ol' Google try at least! Okay here's a hint: the last word is,""puppet.""… https://t.co/ewnosREYjI" +06/22/2018,Comedians,@davidcrosss,"@SteveFNMayer Steve, you got the one that says, (roughly) ""Ahhhh, I get it now."" +You can proudly wear it when the… https://t.co/kr0nzz9sPL" +06/22/2018,Comedians,@davidcrosss,"Thanks Dr! I know what it means and the good doctor clearly does as well but do you? Ron Perlman, you got any ideas… https://t.co/JXKqcSoxlJ" +06/21/2018,Comedians,@davidcrosss,"RT @virgiltexas: In Charles Krauthammer’s honor, here are some links to his essays that are worth reading:" +06/21/2018,Comedians,@davidcrosss,@spmoran @FillmorePhilly Thanks Sean! +06/21/2018,Comedians,@davidcrosss,"@infinitegest Yes, sorry, rescheduled to mid July" +06/21/2018,Comedians,@davidcrosss,"@davedelaney Mostly dead Kennedys, minor threat ""political ""type stuff. But many different bands X, sex pistols, and lots of ""new wave"" too" +06/21/2018,Comedians,@davidcrosss,RT @MattNegrin: this is terrifying https://t.co/ElMnqhTkvn +06/21/2018,Comedians,@davidcrosss,"RT @JuddApatow: When you support any Fox product you support THIS. Let’s all shut off Fox. There are so many channels, so many movies.…" +06/21/2018,Comedians,@davidcrosss,RT @perlmutations: So...your fake president just pussied out. That’s right! He pussied out. Of course he always been a pussy. Because talki… +06/21/2018,Comedians,@davidcrosss,"RT @benwikler: When pressure is working, ramp it UP. + +The minute after the EO, thousands of kids will still be separated from their famili…" +06/21/2018,Comedians,@davidcrosss,"RT @RBReich: The Trump administration on family separations: + +1) It’s a deterrent, zero-tolerance. +2) It’s not happening. +3) The Bible say…" +06/21/2018,Comedians,@davidcrosss,@caycefayce Excellent work. Really. +06/21/2018,Comedians,@davidcrosss,"RT @FillmorePhilly: Calling all comedy fans, this comedian is no joke! 🤣 Only a few days left until @DavidCrosss - Oh Come On Tour takes th…" +06/21/2018,Comedians,@davidcrosss,@lyanrizotte I will be there in July. Sorry about that Ryan. +06/21/2018,Comedians,@davidcrosss,@zackruskin @clusterfest I think it's in mid to late August? +06/21/2018,Comedians,@davidcrosss,RT @OhNoSheTwitnt: Well who else was going to serve the coffee? https://t.co/C7snajuqS3 +06/21/2018,Comedians,@davidcrosss,Holy moly this is AMAZING! Everything about it. Whoever wrote and directed this is a genius. And MJ Hegar is pretty… https://t.co/uCghiM0Cgk +06/21/2018,Comedians,@davidcrosss,RT @classiclib3ral: How had Jordan Peterson never heard this extremely basic counter argument to his position before https://t.co/gTdLm166Hj +06/21/2018,Comedians,@davidcrosss,RT @blainecapatch: if you took my child from me i would eventually kill you +06/21/2018,Comedians,@davidcrosss,Sweetheart check your spelling. You're referring to the porn version. https://t.co/6BYUoUkYnM +06/21/2018,Comedians,@davidcrosss,@realVitaminG Thanks. That was fun. +06/20/2018,Comedians,@davidcrosss,"RT @SRuhle: “YOU HAVE TO UNDERSTAND, +THAT NO ONE PUTS THEIR CHILDREN IN A BOAT +UNLESS THE WATER IS SAFER THAN LAND...” +- Warsan Shire" +06/20/2018,Comedians,@davidcrosss,"RT @LibyaLiberty: If we get rid of the lot of you, we won’t face either choice. https://t.co/bP7riVjk0r" +06/20/2018,Comedians,@davidcrosss,Thread https://t.co/3sG69JtN4n +06/20/2018,Comedians,@davidcrosss,"Dont forget folks, this was the end game all along. This is what Bush tried to float but nobody had the stomach for… https://t.co/V5VxeUQRmy" +06/20/2018,Comedians,@davidcrosss,@iChrisSommers Good question! I think maybe this one. What do you think @MichaelAvenatti? Too soon? #BASTA… https://t.co/6KeMMnC6wt +06/20/2018,Comedians,@davidcrosss,"@Liz_Wheeler But I thought that, according to Trump, it's a ""democratic law"" requiring him to separate families. If… https://t.co/SozTAuT7KX" +06/20/2018,Comedians,@davidcrosss,From over a year and a half ago... https://t.co/6ZQtaqMZKe +06/20/2018,Comedians,@davidcrosss,"RT @misterbumface: The Holocaust was legal. Slavery was legal. Segregation was legal. + +The brave woman who cared for and hid my 6 year-old…" +06/20/2018,Comedians,@davidcrosss,"""IF YOU WERE A FLAG I'D HUG YOU!"" https://t.co/PCpIIMt2sq" +06/20/2018,Comedians,@davidcrosss,Like vinyl? Like treason? Well do I have a product for you!!! https://t.co/hxrBsgd32o https://t.co/L5N97DjWyI +06/20/2018,Comedians,@davidcrosss,RT @ikebarinholtz: Take a look at the republicans clapping and smiling while these toddlers are being locked in cages and know that the ONL… +06/20/2018,Comedians,@davidcrosss,RT @pattonoswalt: SIGNAL BOOST THIS TO THE RIM OF THE UNIVERSE EVERYONE https://t.co/ktFpvTVHqE +06/20/2018,Comedians,@davidcrosss,"RT @WilDonnelly: The Nazi collaborators making millions from ripping children and babies from their mothers and imprisoning them are: +Compr…" +06/20/2018,Comedians,@davidcrosss,"Portland thanks so much! And thanks for the lobster roll. Burlington, Janelle and I are headed your way. Still some… https://t.co/WBiPpeww2l" +06/19/2018,Comedians,@davidcrosss,...almost done… standby for more info tomorrow (and if you’re not already on my email list… https://t.co/NppsixEPyx) https://t.co/KHVQueWOW4 +06/19/2018,Comedians,@davidcrosss,RT @robdelaney: 3/3/17 https://t.co/Eu93vH3bPl +06/19/2018,Comedians,@davidcrosss,"RT @ikebarinholtz: Yes, we hate that Trump’s name is on the ground in front of a Lady Foot Locker and is always covered in spit and/or urin…" +06/19/2018,Comedians,@davidcrosss,"RT @ACLU: The FCC may let Sinclair Broadcasting Group become the largest owner of local TV stations in history. + +Sinclair has been exposed…" +06/18/2018,Comedians,@davidcrosss,"Or, you know, the exact opposite. https://t.co/qtXw8g86wD https://t.co/SrUb185svy" +06/18/2018,Comedians,@davidcrosss,"@ianslessor ""Two wrongs"" brother." +06/17/2018,Comedians,@davidcrosss,@normmacdonald I'm talking about little kids. *most* little kids dont know any of that stuff. Look I've read Lord o… https://t.co/UfwU9hHism +06/17/2018,Comedians,@davidcrosss,"RT @shannoncoulter: This is Phebe Novakovic. She's CEO of General Dynamics, which has a lucrative contract w/ Office of Refugee Resettlemen…" +06/17/2018,Comedians,@davidcrosss,RT @Slate: A running list of how to help fight family separation at the border: https://t.co/lPFwWxmUTG https://t.co/79h9XWaYSU +06/17/2018,Comedians,@davidcrosss,RT @kumailn: The family separation stuff is too much to process. It's much easer to push it away and not think about it. But that won't sto… +06/17/2018,Comedians,@davidcrosss,This Fathers day let's not let evil and selfishness win. 4 all the children who don't know what hate or nationalism… https://t.co/RTzPTcH7vJ +06/17/2018,Comedians,@davidcrosss,"RT @RVAwonk: Trump keeps trying to blame Democrats, but here's John Kelly in March 2017 talking about implementing forced separation for im…" +06/17/2018,Comedians,@davidcrosss,"@WWEGraves @jimandsamshow I think time and mass mutual experience (at this rate eventually everyone, at some point,… https://t.co/28flbeE1G9" +06/17/2018,Comedians,@davidcrosss,@drisc_peep Sorry. Truly sorry. I'm bummed too. +06/17/2018,Comedians,@davidcrosss,@fiorski I'm disappointed too. Hopefully I'll be able to get there at some point soon. +06/17/2018,Comedians,@davidcrosss,"It’s #FathersDay, but right now, Trump is ripping children away from their fathers at the border. Together we can s… https://t.co/yo1bunKife" +06/17/2018,Comedians,@davidcrosss,RT @MediatedReality: Looking for funny this morning and instead found a great conversation from @davidcrosss about poverty & disenfranchise… +06/17/2018,Comedians,@davidcrosss,@nalbeadz It totally did Tom! Been doing it ever since. God bless. You're a good man. +06/17/2018,Comedians,@davidcrosss,@easternberg @goliathtv Thanks sir. That was fun to do +06/17/2018,Comedians,@davidcrosss,@Splinterette @goliathtv @ambertamblyn @JordanPeele @chelseaperetti Bless +06/17/2018,Comedians,@davidcrosss,@nolafilm @janellejcomic Me too! +06/17/2018,Comedians,@davidcrosss,"Providence! That was a blast! Thank you so much. Really fun show. +Does anyone know what that one incoherent (drunk… https://t.co/u9Hb6NS09t" +06/16/2018,Comedians,@davidcrosss,RT @jaketapper: Thread https://t.co/EvtEjB64aV +06/16/2018,Comedians,@davidcrosss,RT @PoliteMelanie: Those who were mad at Michelle Obama because she said that kids should eat vegetables are completely fine with Trump put… +06/16/2018,Comedians,@davidcrosss,Providence here we come! The lovely miss Janelle James and I are I95 headed your way. Looking forward to tonight. T… https://t.co/LNlHJxVwaj +06/16/2018,Comedians,@davidcrosss,"Fairsley Foods strikes again. +https://t.co/iKdahevcVu" +06/15/2018,Comedians,@davidcrosss,"Tell those catchers to stop kneeling! +https://t.co/tddWzwtgOC + +Shared from my Google feed" +06/15/2018,Comedians,@davidcrosss,I really enjoyed doing this. Thanks Michael @michaelianblack https://t.co/q7Bjhoj9OR +06/15/2018,Comedians,@davidcrosss,Let's not forget that someone made millions of dollars coming up with Russian dressing. They mixed mayonnaise with… https://t.co/bvAeU2nfiS +06/15/2018,Comedians,@davidcrosss,"RT @staceyabrams: “Abrams’ platform draws from her own experiences and those of others struggling to attain better lives for themselves, th…" +06/15/2018,Comedians,@davidcrosss,"RT @krassenstein: BREAKING: Chrystia Freeland, the Canadian Foreign Minister said today that she has not ruled out the possibility of retal…" +06/14/2018,Comedians,@davidcrosss,@kumailn That's the last time I take you for chicken 'n' biscuits. +06/14/2018,Comedians,@davidcrosss,"RT @janellejcomic: Comedian pay is so arbitrary its like ""here's 300 bucks to write for the president or 10,000 to host this rooster pagean…" +06/13/2018,Comedians,@davidcrosss,"RT @michaelianblack: New episode of ""How to Be Amazing"" with @davidcrosss just out. We GO THERE!!! (I'm not sure what I mean by that.) http…" +06/13/2018,Comedians,@davidcrosss,RT @Rob_Hoffman: did you know @realDonaldTrump once cut off healthcare benefits to his *nephew* who had cerebal palsy while the family was… +06/13/2018,Comedians,@davidcrosss,"@danharmon @stalewaffles @_mandydee He had me at, ""help I don't understand humor"".💕💕💕" +06/13/2018,Comedians,@davidcrosss,RT @kenklippenstein: https://t.co/IIaGE9X5Rx +06/13/2018,Comedians,@davidcrosss,"""Those who say making 85 million dollars in one year through illegal and treasonous corruption can not be done, sh… https://t.co/TbTuritRwz" +06/13/2018,Comedians,@davidcrosss,"But going to camp is fun right? +Wonder what are the showers at this ""camp"" are like. https://t.co/zcMCU9Lq7S" +06/12/2018,Comedians,@davidcrosss,RT @danharmon: (this is your weekly reminder that my twitter feed is not a forum and I am not here in any type of service to you and I will… +06/12/2018,Comedians,@davidcrosss,RT @JohnFugelsang: People who cheered Trump for defunding Planned Parenthood are now cheering him for meeting w/a govt that forces women to… +06/12/2018,Comedians,@davidcrosss,"@MattOswaltVA Please don't tell me the ""B"" stands for burgers. That'd be worse than an all female Oceans 11 spinoff" +06/12/2018,Comedians,@davidcrosss,I love you. Marlow loves you. Good people love you. Oh and your book is amazing. Also I got you that mortadella tha… https://t.co/FV6Q1dFkdw +06/12/2018,Comedians,@davidcrosss,RT @mattyglesias: Liberal elites may have cheered this step forward for fairness but Real Americans in the Heartland felt their values were… +06/12/2018,Comedians,@davidcrosss,"I'm back on Twitter. +Been awhile. +Is America still a shining beacon of morality and a champion of basic, human ri… https://t.co/tgw5p3mArv" +05/24/2018,Comedians,@davidcrosss,I have been off Twitter at the behest of my wife. I have apologized to Jessica in private (the way I prefer to cond… https://t.co/a9h41zYyKb +05/23/2018,Comedians,@davidcrosss,"RT @OhNoSheTwitnt: Trump yesterday: All children are a gift from God. + +Trump today: Children look so innocent but the brown ones are evil.…" +05/23/2018,Comedians,@davidcrosss,@TheWhitneyBrown No you did! I was 18. We did stand up in...Augusta I want to say? +05/23/2018,Comedians,@davidcrosss,"The beauty of late night TV. You won't see this on GMA mothereffers. +https://t.co/dMdJ67cceW" +05/23/2018,Comedians,@davidcrosss,RT @LadyBusiness_: One Weird Trick To Getting Universal Healthcare That American Insurance Companies Don't Want You To Know https://t.co/Iv… +05/23/2018,Comedians,@davidcrosss,RT @jfreewright: So at least one person from each team do it. #Next https://t.co/oAj3hVbU98 +05/23/2018,Comedians,@davidcrosss,"Picked on CONSTANTLY, had pennies and dimes thrown at me as kids said, ""pick it up jew"", my sister was urinated on… https://t.co/GN4xC1cFer" +05/22/2018,Comedians,@davidcrosss,That was fucking fun! I'm on Late Night with Stephen Colbert tonight. Had a blast. I do love that guy. Check it out if you're so inclined. +05/22/2018,Comedians,@davidcrosss,@benschwartzy Thank you Ben +05/22/2018,Comedians,@davidcrosss,@JAdomian Ha! The heat of shame rising within. +05/22/2018,Comedians,@davidcrosss,"Well now here's something that everyone, rich or poor, conservative or liberal, white or of color, American by birt… https://t.co/LhbVrEreRG" +05/21/2018,Comedians,@davidcrosss,"RT @B_Ehrenreich: Why are people poor? Because they are uneducated? No, because (1) they are paid so little for their work and (2) the pitt…" +05/21/2018,Comedians,@davidcrosss,RT @kenklippenstein: https://t.co/BLnHlz9LEH +05/21/2018,Comedians,@davidcrosss,"RT @breebxtler: hey tonya, 10 of my classmates died yesterday and 10 others were injured. i would LOVE to lecture any texan on gun laws. ht…" +05/20/2018,Comedians,@davidcrosss,"RT @somethingawful: 2017 ALT RIGHT: there is no such thing as ""white male privilege!"" + +2018 ALT RIGHT: if women refuse to fuck us, we cann…" +05/19/2018,Comedians,@davidcrosss,RT @RacismFactory: https://t.co/P346uYoGMo +05/18/2018,Comedians,@davidcrosss,Me too. Gonna be fun. https://t.co/cInhavrQay +05/18/2018,Comedians,@davidcrosss,"RT @MarcHilberer: the number of school shootings that have happened since the year 2000 around the world: + +ENGLAND: 0 +GREECE: 1 +NETHERLAN…" +06/29/2018,Comedians,@ofctimallen,Could not have come as far as I have without the love and support of my family #family #MomAndDad #Siblings… https://t.co/wWZKQkmUrJ +06/28/2018,Comedians,@ofctimallen,Mark your calendar for Sept. 28th! @LastManStanding #LastManStanding https://t.co/JMHMFzXZ0R +06/27/2018,Comedians,@ofctimallen,As promised… the long and winding road of car fabrication https://t.co/SgAATshC8U #MetalWork #Handmade #Suspension #Custom @BodieStroud +06/26/2018,Comedians,@ofctimallen,"Summer is the perfect time to get active & enjoy some sunshine. With prices like the 80’s, there's no better time t… https://t.co/hf4diqqFse" +06/26/2018,Comedians,@ofctimallen,We had great shows in Appleton and Milwaukee and got an actual press review. Laughed at the description of one of m… https://t.co/z0bb4o3qzd +06/22/2018,Comedians,@ofctimallen,Mojay Lake; A heartbreaking documentary. Welcome to summer! #summerTime #michigan #cherries #familyVacation… https://t.co/EP8ZIvXGEJ +06/20/2018,Comedians,@ofctimallen,I love art and Tobin's work is some of my favorite. @realTobinSprout #TobinSprout #photorealism #expressionism #art https://t.co/mX3YwcgQgA +06/20/2018,Comedians,@ofctimallen,As promised...Keeping all the butts together #UseItOrLoseIt #welding #fender #bumper #line @BodieStroud https://t.co/8pVd8yQ6Jr +06/19/2018,Comedians,@ofctimallen,Dodge is auctioning off the last production Viper and Demon at Barrett-Jackson June 23rd. All proceeds will be dona… https://t.co/AsHznOPO7K +06/18/2018,Comedians,@ofctimallen,If I were to take one thing from this video it’s the art of sarcasm is not lost on Michiganders #sarcasm… https://t.co/EiUNc9OB1z +06/15/2018,Comedians,@ofctimallen,Happy father's day! Proud to be a father to all my scripted & unscripted children #fathersday #work… https://t.co/4PUfefvyeD +06/13/2018,Comedians,@ofctimallen,As promised...Vegas anyone?... Mirage?... July 28th? #roadtrip #Vegas #mileage #gas #coffee @BodieStroud https://t.co/T1DzdS5Xmg +06/11/2018,Comedians,@ofctimallen,Hands down the cleanest interview I’ve ever had #mondayMadness #manCrushMonday #motivationMonday #shower #clean… https://t.co/vJbf1OVLI4 +06/09/2018,Comedians,@ofctimallen,Wow still sinking in...we will be back making shows. We are all so geeked. +06/08/2018,Comedians,@ofctimallen,Here's from one of my crazy employees #flashbackFriday #CatBallou #HomeImprovement #ToolTime https://t.co/ZhKtVVb1Lx +06/06/2018,Comedians,@ofctimallen,As promised... every hot rod has a story https://t.co/ThcYcNrdA6 #custom #build #Ford #history #story @BodieStroud +06/04/2018,Comedians,@ofctimallen,Merry Christmas Monday because who doesn’t like Christmas in July? I mean June. #santaclause #bloopers #olympics… https://t.co/W1A9ElKfux +06/01/2018,Comedians,@ofctimallen,Current demo reel #FlashbackFriday #eggs #SillyPutty #local #Birmingham #Oldsmobile https://t.co/kH6gKNsZEG +05/30/2018,Comedians,@ofctimallen,As promised... Still amazes me the things humans are capable of making with their hands #customCar #handmade… https://t.co/y94dtU11hs +05/25/2018,Comedians,@ofctimallen,Looking forward to being back with the LMS family again #LastManStanding @LastManStanding @FOXTV https://t.co/FeWBp7YYHq +05/23/2018,Comedians,@ofctimallen,As promised... the build that never ends https://t.co/fuq3mUEvgF #custom #build #engine #horsepower #Ford… https://t.co/IXrvgrkr9q +05/21/2018,Comedians,@ofctimallen,Memory Monday...here's part of my journey https://t.co/nD2Nfoocuh #neverGiveUp #neverSurrender #DoTheWork +05/18/2018,Comedians,@ofctimallen,See you tonight San Diego! 8pm at Copley Symphony Hall https://t.co/vf0vzhVLn9 +05/18/2018,Comedians,@ofctimallen,"Friday funny flashbacks...Crazy on the Outside... +https://t.co/nBzgq5kUAO #FBF #fridayfunnies #gagReel" +05/18/2018,Comedians,@ofctimallen,"If you're looking for some laughs tonight, I'll be at the @TheLaughFactory in Hollywood 7:45pm https://t.co/clDvaDZyRa" +05/17/2018,Comedians,@ofctimallen,It's ON! Thanks for keeping on people. +05/16/2018,Comedians,@ofctimallen,"Come see me live-Thurs, Fri and Sat https://t.co/2tJlF3bmw2 @TheLaughFactory #CopleySymphonyHall +@TCCTucson… https://t.co/jH8Shgyt0x" +05/16/2018,Comedians,@ofctimallen,New episodes this fall #LastManStanding @FOXTV @LastManStanding https://t.co/9I40bslKkb +05/16/2018,Comedians,@ofctimallen,As promised... https://t.co/oGxY7vhJQe I'm super geeked to see what the motor looks like in the Vik #Ford… https://t.co/Egq6CPFwro +05/14/2018,Comedians,@ofctimallen,Just a teaser for you. Looking forward to this fall #LastManStanding @FOXTV @LastManStanding https://t.co/vWBRRMT1xR +05/14/2018,Comedians,@ofctimallen,"Takes a lot of people to make a movie. However, not even Travolta can make me put my camcorder down. Camcorder, di… https://t.co/JgW6QLtHq0" +05/11/2018,Comedians,@ofctimallen,New season this fall! https://t.co/qhSdY48WT2 #LastManStanding https://t.co/REYt6yYXbV +05/11/2018,Comedians,@ofctimallen,"Thanks to all you guys for the support. +We are back!" +05/10/2018,Comedians,@ofctimallen,A strong wind just filled our main sail. +05/09/2018,Comedians,@ofctimallen,As promised... https://t.co/IAryM4ipJ8 The art of welding @BodieStroud #welding #Ford #ElectricCar #FordVicky +05/09/2018,Comedians,@ofctimallen,Come see me next weekend in San Diego & Tuscon. https://t.co/2tJlF3bmw2 @SanDiegoSymph @TCCTucson https://t.co/zjWVhb1SdE +05/08/2018,Comedians,@ofctimallen,"Check out my youtube channel. Here's an easy way to get back to it and my other social media + Scan the QR code or c… https://t.co/WxTLLWp4VC" +05/03/2018,Comedians,@ofctimallen,They heard all your voices people!! LMS just might be a reality. Keep it up. Who wants more #LastManStanding ? +05/03/2018,Comedians,@ofctimallen,stay tuned +05/03/2018,Comedians,@ofctimallen,Here's some more horsepower. Check it out tonight! https://t.co/mZMmY9TVUy +05/02/2018,Comedians,@ofctimallen,As promised... more horsepower? https://t.co/fZa8UKOSOF #horsepower #ElectricCar @BodieStroud +05/02/2018,Comedians,@ofctimallen,Check it out tomorrow night. @LenosGarage Thursday at 10p ET on CNBC! #JayLenosGarage https://t.co/ew54mHO9gP +05/01/2018,Comedians,@ofctimallen,More behind the scenes- gag reel https://t.co/7acuwFEa48 #LastManStanding #gagReel +04/30/2018,Comedians,@ofctimallen,"Ok, so I'll play too. Here's one of my first headshots #OldHeadshotDay https://t.co/x7z3BpeFg5" +04/30/2018,Comedians,@ofctimallen,Jay and I are at it again. Check us out on Thursday! #JayLenosGarage https://t.co/oqNNIQlZT1 +04/27/2018,Comedians,@ofctimallen,Continued laughs with this crew https://t.co/0q2VquWIl2 #laughter #GagReel #LastManStanding +04/27/2018,Comedians,@ofctimallen,Hanging out with an alternate personality. https://t.co/5VZmOlp45p +04/26/2018,Comedians,@ofctimallen,RT @calvertwcsx: RRR! Tim Allen @ofctimallen is back home tonight to perform a benefit concert for Forgotten Harvest. My old buddy stopped… +04/25/2018,Comedians,@ofctimallen,As promised https://t.co/mV9G9tnqvx Anyone have questions about the progress so far? Get some of your answers in th… https://t.co/5Vw7Nmck41 +04/23/2018,Comedians,@ofctimallen,We really had some good laughs on this show. I loved working with these people. We really had some good laughs on… https://t.co/TiZDV5mqgr +04/21/2018,Comedians,@ofctimallen,"Motorcity +I saw Pryor kick this place up! +Hard to believe I am working same sold out venue. https://t.co/QQMfBqH5AN" +04/18/2018,Comedians,@ofctimallen,As promised ... https://t.co/jMgcCjDIqo #hotrod #electricCar #IRS #sound +04/16/2018,Comedians,@ofctimallen,Mid-afternoon Monday pick-me-up https://t.co/xVmfg0wyZ7 #gagReel #LastManStanding #socks +04/12/2018,Comedians,@ofctimallen,TONIGHT! @ComicTreStewart @frazercomedy @TheLaughFactory #comedy #standup https://t.co/2za3qNXSVB +04/11/2018,Comedians,@ofctimallen,As promised https://t.co/CYLioBLEdT Electric? Hot rod? What do you think? #hotrod #electricCar #pedicure +04/10/2018,Comedians,@ofctimallen,Bloopers are the best! So fun to look back on these good times. https://t.co/1zF7umAsVq #LastManStanding #gagReel #bloopers #branMuffin +04/10/2018,Comedians,@ofctimallen,Merry Christmas Monday! https://t.co/ZfLfAcBKlN #SantaClause #christmas +04/05/2018,Comedians,@ofctimallen,As promised https://t.co/peh6jsKqiS - check back next week to meet more of the people who are smart enough not to… https://t.co/aviPt8vZ2j +03/28/2018,Comedians,@ofctimallen,"As promised, part deux. Check back next week to find out why I named him Viktor https://t.co/2gNDMpJIoV #crownvictoria #vicky #Ford #30s" +03/21/2018,Comedians,@ofctimallen,"As promised, meet Viktor. Check back next week to see the progress. https://t.co/5wAgaKvkyo #crownvictoria #vicky #Ford #30s" +03/17/2018,Comedians,@ofctimallen,Doors just opened for first of two sold outs in Eugene. Great crew and cool venue. https://t.co/R2DaFkKoCG +03/17/2018,Comedians,@ofctimallen,All good tonite! https://t.co/Zxt3mtB2W2 +03/17/2018,Comedians,@ofctimallen,Ah.... those damn nice folks in Stockton left us a cake to enjoy. This was a hot crowd! Great venue. https://t.co/pkIP0g60nH +03/15/2018,Comedians,@ofctimallen,Hard to believe it's been about 30 years #tbt https://t.co/vCbtew9jXC +03/13/2018,Comedians,@ofctimallen,"Thanks for helping us sell out our show in Eugene, we added a second show at 5pm! Hope to see you there!… https://t.co/P8Ck6QKVO8" +03/11/2018,Comedians,@ofctimallen,"Doors just opened +Fill her up +Get them laughing https://t.co/6NVA0CsHha" +03/10/2018,Comedians,@ofctimallen,Oakland show finished sound check now it's close to showtime https://t.co/joa6gNYdVh +03/05/2018,Comedians,@ofctimallen,Hey Northern CA- I'll be in Oakland on Saturday. Hope to see you there. #standup #Oakland @OakParamount https://t.co/Y0D0iXdtN9 +03/02/2018,Comedians,@ofctimallen,Here's another from the archives. #boxing https://t.co/LCTnPgljYu +03/02/2018,Comedians,@ofctimallen,Need some weekend plans? I'll be at the Mirage tonight and Saturday night https://t.co/d1gALrLc9X @TheMirageLV… https://t.co/PDc5H3MLZT +02/27/2018,Comedians,@ofctimallen,"One of the biggest highlights of my career #standup #goals #JohnnyCarson #TonightShow +https://t.co/J9OGqTswSb" +02/26/2018,Comedians,@ofctimallen,"We have a debate in the office about posting this video. I think it's too weird, the office thinks it's just weird… https://t.co/36mZ01bd9b" +02/23/2018,Comedians,@ofctimallen,Some of you have asked for more car videos. Here you go- from high school. #movie #filmmaker #motion #Woodward… https://t.co/4WGpQpc4Jb +02/22/2018,Comedians,@ofctimallen,Cool ride with the Blue Angels during HI. Glad I didn't vomit. https://t.co/E3RaKjnSii #homeImprovement #BlueAngels #Aviators #Navy #Flying +02/20/2018,Comedians,@ofctimallen,Glad to report I am very happy with my purchase. Stay tuned for my 1934 Ford Vicky #2017FordGT #FordVicky @Ford https://t.co/hmemSfjKNm +02/20/2018,Comedians,@ofctimallen,"Space, the final frontier https://t.co/uBDpq7UFGM #LastManStanding #vlog" +02/15/2018,Comedians,@ofctimallen,"My heart is broken for the loss of life in Florida. My deep, deep sympathy to all those families." +02/14/2018,Comedians,@ofctimallen,"Nothing like the roar of an engine. ""Licorice Special"" by Steve Moal https://t.co/xwR1wId4s5 +@MoalInc #Moal #licorice" +02/13/2018,Comedians,@ofctimallen,"If anyone needs help with their workout today, here's some tips https://t.co/pSdCYIMUAv #workout #exercise #gym #getFit" +02/13/2018,Comedians,@ofctimallen,Prepping for my stand up back in the day. https://t.co/i1De7G6nIb @Sears @Craftsman #HomeImprovement #craftsman #serious #tools #standup +02/12/2018,Comedians,@ofctimallen,I'll be at the @TheLaughFactory this Thursday at 7:45pm with @ComicTreStewart @frazercomedy #comedy #standup https://t.co/4JgWawnjGB +02/09/2018,Comedians,@ofctimallen,A quick intro to my silver spaceship. How's my hair? https://t.co/s8kGxxPXMt #FordGT #Supercar #TimAllen #morepower #2017FordGT +02/04/2018,Comedians,@ofctimallen,Stage is set..... https://t.co/leeYUmvMer +02/04/2018,Comedians,@ofctimallen,Doors open! Show in 30min https://t.co/vEvvg56xPT +02/04/2018,Comedians,@ofctimallen,Backstage gift from great staff at the Peabody Opera House https://t.co/GFAXgdiXzc +02/03/2018,Comedians,@ofctimallen,https://t.co/pSJEyLRoHg +02/03/2018,Comedians,@ofctimallen,Kansas City....its showtime! https://t.co/MJnDfjt5uD +01/18/2018,Comedians,@ofctimallen,I added a video to a @YouTube playlist https://t.co/I6EKGp5gNm My Territory +01/18/2018,Comedians,@ofctimallen,I added a video to a @YouTube playlist https://t.co/6wG2YF1Cqg Women Accessorize +01/16/2018,Comedians,@ofctimallen,Who doesn’t love a classic Monday Morning Marching Band Pick-Me-Up? https://t.co/aLoPf7oN6O +01/14/2018,Comedians,@ofctimallen,Crowd coming in Denver https://t.co/6PI2iuxjlQ +01/10/2018,Comedians,@ofctimallen,Updating the Tim Allen website and came across these video clips. Good memories. https://t.co/6nNWHB5D5p via @YouTube +12/23/2017,Comedians,@ofctimallen,@ConorHurley007 @louisviuttondon Or I have big sore thumbs +12/20/2017,Comedians,@ofctimallen,Enjoying the Lions game. Lucky to be with coach Jim Caldwell & I’m guessing his grandchild that couldn’t care less… https://t.co/k5Ky8PrR5U +12/19/2017,Comedians,@ofctimallen,On Netflix now #MerryChristmas #ElCaminoChristmas @netflix https://t.co/UGUDAJmsWQ +12/08/2017,Comedians,@ofctimallen,Check it out tomorrow! #ElCaminoChristmas on @netflix https://t.co/Mq8XZnMn5X #MerryChristmas +12/03/2017,Comedians,@ofctimallen,Signing stuff for crowd out front https://t.co/WY0ehc9aqk +12/03/2017,Comedians,@ofctimallen,I am actually somewhat larger in person. https://t.co/LgwBuDWeij +12/03/2017,Comedians,@ofctimallen,Filling Kodak Center up here in Rochester NY #comedy#timallen#standup https://t.co/NdRfxvhVqI +11/22/2017,Comedians,@ofctimallen,El Camino Christmas on Netflix Dec. 8th. Just a note to parents... this isn't a movie for kids! Check out the trai… https://t.co/InyN6oikon +11/20/2017,Comedians,@ofctimallen,El Camino Christmas- December 8th on Netflix! https://t.co/s87nHimddl https://t.co/6ENzaLXRbj +11/17/2017,Comedians,@ofctimallen,"Great fun to be interviewed by Peter Billingsley https://t.co/6HVAXrb5hv +@OfficialPeterB Wednesday, Nov. 22 at 10… https://t.co/y1dlqvpzYA" +11/17/2017,Comedians,@ofctimallen,Oh boy https://t.co/aj2c2StV6t +11/17/2017,Comedians,@ofctimallen,My opening act some local band. https://t.co/Ad3Rg4vaQB +11/17/2017,Comedians,@ofctimallen,"It's Showtime Clearwater, Florida. https://t.co/Rup3dWbpyJ" +11/03/2017,Comedians,@ofctimallen,"@DanaPerino Miracle Whip and Peter Pan on Wonder Bread, never heard that before, A Denver boys favorite as a kid too." +10/21/2017,Comedians,@ofctimallen,Sound check Tacoma https://t.co/GzSzADQpOE +10/21/2017,Comedians,@ofctimallen,Almost Showtime Salt Lake City! https://t.co/EZUfSYzTU7 +10/20/2017,Comedians,@ofctimallen,RT @liveattheeccles: Meredith & AJ of @941kodj talk with @ofctimallen about his upcoming show #AtTheEccles 10/20 https://t.co/3VhpSWaSBs +10/20/2017,Comedians,@ofctimallen,"RT @RadiofromHell: Tim Allen is coming to the Eccles Theater this Friday, October 20th and chatted with Radio From Hell's Richie T.... http…" +10/20/2017,Comedians,@ofctimallen,See you tonight @liveattheeccles in UT and Sat night at Emerald Queen Casino in WA https://t.co/jCUQsKp2J8 +10/19/2017,Comedians,@ofctimallen,RT @ComedyCastle: Some familiar faces were at the club today. @jayleno & @ofctimallen filmed a spot for @LenosGarage. Look for it on air th… +10/19/2017,Comedians,@ofctimallen,RT @ComedyCastle: Who says men won’t stop and ask for directions? We had a great time filming for @LenosGarage with @ofctimallen and @jayle… +10/19/2017,Comedians,@ofctimallen,"RT @ComedyCastle: We had an early 80s class reunion last night after @ofctimallen's show. We may have less hair, but are still just as funn…" +10/18/2017,Comedians,@ofctimallen,Hey Salt Lake City- I'll be there this Friday Oct 20th! Hope to see you there. @ecclestheater 8pm #comedy #Standup https://t.co/SS2ZzITcuB +10/11/2017,Comedians,@ofctimallen,Heading to @icehousecomedy on Friday Oct 13th 8pm. Hope to see you! #comedy #standup @ComicTreStewart @frazercomedy https://t.co/0adfCmmYY8 +10/02/2017,Comedians,@ofctimallen,Deeply sad at the horrific killing in Las Vegas. +09/28/2017,Comedians,@ofctimallen,@TheLaughFactory @ComicTreStewart @frazercomedy will be there too +09/28/2017,Comedians,@ofctimallen,"I'll be in Kansas City, MO & St. Louis, MO in Feb 2018 https://t.co/RPazuWOKQ6 https://t.co/Tf9hM8mLQ7" +09/28/2017,Comedians,@ofctimallen,"@NANCI37 @TheLaughFactory I'll be in Rochester, NY 12/2/2017 https://t.co/RPazuWOKQ6" +09/28/2017,Comedians,@ofctimallen,TONIGHT! Hollywood @TheLaughFactory 7:45pm https://t.co/ctjurXGhnN +09/28/2017,Comedians,@ofctimallen,RT @TheLaughFactory: TONIGHT! @ofctimallen returns to the Laugh Factory! #comedy #thursday #hollywood TIX: https://t.co/KQfj9TyKAp https:/… +09/27/2017,Comedians,@ofctimallen,Hope to see you tomorrow in Hollywood! 7:45pm @TheLaughFactory https://t.co/1tMzAbngT9 +09/17/2017,Comedians,@ofctimallen,Pacing backstage. https://t.co/NipRHdFsDm +09/17/2017,Comedians,@ofctimallen,Almost showtime... https://t.co/Mg3LrrBXRg +09/16/2017,Comedians,@ofctimallen,The event staff made me a special snack treat marshmallow treats https://t.co/gjTH6jmyND +09/16/2017,Comedians,@ofctimallen,"The audience still loves me doing the #Tooltime grunt. So... +#RRR" +09/15/2017,Comedians,@ofctimallen,"Landed Ames Iowa, finished sound check in this bad ass theater the sold out Stephens Auditorium off to eat and get… https://t.co/eElvmlXgZS" +09/14/2017,Comedians,@ofctimallen,Tonight! 7:45pm @TheLaughFactory @ComicTreStewart @frazercomedy https://t.co/8jLZm6ZkYC +09/14/2017,Comedians,@ofctimallen,"RT @TheLaughFactory: ALMOST 24 HOURS UNTIL @ofctimallen! +Thursday at 7:45 pm; let the really advanced lying begin. https://t.co/tDgxbJxCfs" +09/11/2017,Comedians,@ofctimallen,The laughs are actually happening a little earlier... 7:45pm Thursday @TheLaughFactory @ComicTreStewart @frazercomedy +09/11/2017,Comedians,@ofctimallen,"RT @TheLaughFactory: Rumor has it we've got an exciting week ahead of us. +Maybe some @ofctimallen? +With a little bit of @moshekasher? +Did…" +09/11/2017,Comedians,@ofctimallen,Thursday! 8pm Hollywood @TheLaughFactory @ComicTreStewart @frazercomedy https://t.co/IGtCNmZo93 +09/07/2017,Comedians,@ofctimallen,"heading to Ames, IA next Friday Sept. 15. https://t.co/RPazuWOKQ6 @StephensAud Hope to see you there!" +08/31/2017,Comedians,@ofctimallen,I'll be in Salt Lake City at @liveattheeccles on Oct. 20th. Hope to see you there! +08/29/2017,Comedians,@ofctimallen,@AJRinDC maybe a few new vlogs soon +08/29/2017,Comedians,@ofctimallen,@C_Friedel88 Dec 1 Reading as close as this tour gets +08/29/2017,Comedians,@ofctimallen,@molaitdc might just be some NEW vlogs coming stay tuned +08/22/2017,Comedians,@ofctimallen,@manymirages if you have to ask..... +08/21/2017,Comedians,@ofctimallen,RT @SlickerSusan: @ofctimallen @HRRocksinoNP Loved your show last night was totally amazing +08/21/2017,Comedians,@ofctimallen,RT @howe_stacy: @ofctimallen @HRRocksinoNP Your show was hilarious 😂 +08/21/2017,Comedians,@ofctimallen,"RT @TaylorNoyes89: Thanks so much for taking the time out to meet with fans in Aurora! Im so happy i was able to meet you, your a great g…" +08/21/2017,Comedians,@ofctimallen,@bmarch84 Friday Oct 20 +08/21/2017,Comedians,@ofctimallen,@Garden_Warrior. Nov 16 Clearwater Ruth Eckerd Hall and then Naples at the Naples Hayes Hall the 17 Nov +08/20/2017,Comedians,@ofctimallen,RT @37christopher73: You killed it @ofctimallen. Haven't laughed that hard in quite awhile! I was in tears at one point! @ParamountAurora +08/19/2017,Comedians,@ofctimallen,Try this. If Jimmy cracked corn and no one's cares why did we sing a song about him. +08/19/2017,Comedians,@ofctimallen,Maybe I will do the ape evolved bit at the gig in the wonderful Paramount theater in IL https://t.co/GfUA7JWh5x +08/18/2017,Comedians,@ofctimallen,"Looking forward to @HRRocksinoNP in Northfield, OH Saturday night" +08/17/2017,Comedians,@ofctimallen,Comedy ain't pretty and to some not so funny +08/16/2017,Comedians,@ofctimallen,"Excited to come to the Paramount Theatre in Aurora, IL on Friday! +@ParamountAurora" +08/16/2017,Comedians,@ofctimallen,If we evolved from apes why are there still apes. +08/07/2017,Comedians,@ofctimallen,"I’m coming home Detroit! + +Get tickets for Sept 17th here! +See you @RoyalOakMusic https://t.co/igG2Usf0f7" +07/09/2017,Comedians,@ofctimallen,Somebody thinks I need a new direction https://t.co/dlOvQzGZ1T +07/09/2017,Comedians,@ofctimallen,Sound check done...showtime in four https://t.co/ePlXVq2BcZ +06/23/2017,Comedians,@ofctimallen,"excited for tonight Waukegan! +@GeneseeTheatre https://t.co/XxexMPqikq" +06/01/2017,Comedians,@ofctimallen,I'll be at the Laugh Factory in Hollywood tonight at 8pm @TheLaughFactory https://t.co/h5y4PCCKfC +05/16/2017,Comedians,@ofctimallen,Stunned and blindsided by the network I called home for the last six years. #lastmanstanding +05/07/2017,Comedians,@ofctimallen,Growing a beard for my role in a movie. I think I look like the most interestingly man in the world my opening act… https://t.co/9rBbSfHnkJ +04/09/2017,Comedians,@ofctimallen,Well well well look who is in Vegas this weekend https://t.co/b51msKaydQ +04/06/2017,Comedians,@ofctimallen,"Don Rickles is one of the biggest reasons I am a comic today. I feel bad, +mostly for everyone in Heaven who will no… https://t.co/q747UcMS6c" +03/17/2017,Comedians,@ofctimallen,Shared some great laughs with @JimmyKimmel last night https://t.co/9RLxYnM84G #KIMMEL https://t.co/DRVX01irE4 +03/09/2017,Comedians,@ofctimallen,"Two more shows to tape for this season,man time flys." +03/02/2017,Comedians,@ofctimallen,Thursday 8pm I'll be at @TheLaughFactory Hollywood https://t.co/bNkYOFBO86 +02/07/2017,Comedians,@ofctimallen,"@Sterlingstoe might want to watch it again, it was all about respect" +01/24/2017,Comedians,@ofctimallen,Thursday 8pm at @TheLaughFactory Hope to see you there https://t.co/9aqluiZUAM +01/23/2017,Comedians,@ofctimallen,@ScottWalker great to meet you and your family anyway +12/30/2016,Comedians,@ofctimallen,@coreyelam a steel statue in Mexico +12/29/2016,Comedians,@ofctimallen,Merry late Christmas and Happy new year to all yall https://t.co/evgynZxgFF +12/24/2016,Comedians,@ofctimallen,@HNLbob Sony RX100 V +12/19/2016,Comedians,@ofctimallen,@YourLocalRave thx for sharing +12/17/2016,Comedians,@ofctimallen,@DudeWithAGuita1 You answered your own question. +12/14/2016,Comedians,@ofctimallen,Check it out tonight- https://t.co/CZeiv95cEQ @LenosGarage #JayLenosGarage +12/10/2016,Comedians,@ofctimallen,@debitdoctor good eye +12/08/2016,Comedians,@ofctimallen,don't forget to vote! People's Choice Awards 2017 https://t.co/novajdEAII +12/06/2016,Comedians,@ofctimallen,"@DebBruce21 And loved the line"" committees ljke this don't want us to get along they're want us to go along""" +12/06/2016,Comedians,@ofctimallen,@mystarcollector its a 62 409 bubble top model just like the real one in my actual garage +12/01/2016,Comedians,@ofctimallen,"at the office, getting ready for Christmas https://t.co/twSTDTn6il" +11/25/2016,Comedians,@ofctimallen,RT @mulho2mj: Caption this. @KeeganMKey @ofctimallen #OnePride #LionsVikings #Lions https://t.co/3pDxpx2BK6 +11/18/2016,Comedians,@ofctimallen,"I like to constantly test out different phones (brands & models). More than often, I get to test and return devices… https://t.co/DkJVsAfrtP" +11/16/2016,Comedians,@ofctimallen,Catch me tomorrow talking with @IAmSteveHarvey https://t.co/XYr5dlVEoa +11/04/2016,Comedians,@ofctimallen,Vegas! tonight & tomorrow https://t.co/IO84EqUYrl @TheMirageLV +10/31/2016,Comedians,@ofctimallen,@samhuntington hey that's mine! +10/30/2016,Comedians,@ofctimallen,@AMBJanitorial yes went to Dora Moore elemtary +10/27/2016,Comedians,@ofctimallen,Walked by the dog's toy in my office & I felt like Sid from Toy Story had been here #ToyStory https://t.co/bKWQPWswGw +10/20/2016,Comedians,@ofctimallen,Sitting in in WGN morning show https://t.co/nXlGZiXA0I +10/09/2016,Comedians,@ofctimallen,RT @NathanBlixt: @ofctimallen great show! +10/09/2016,Comedians,@ofctimallen,RT @LunaCrist: @ofctimallen killed it in Vegas. Haven't laughed that hard in a while. +10/09/2016,Comedians,@ofctimallen,RT @WillisShepherd: @ofctimallen just saw your show in Vegas.... One of the funniest standup routines I've😂 ever seen in my life!!! Loved i… +09/26/2016,Comedians,@ofctimallen,Here's a clip from my ET interview with @nischelleturner https://t.co/Tipt9NzlUV +09/23/2016,Comedians,@ofctimallen,"season premiere of #LastManStanding, tonight at 8|7c on ABC! @NancyATravis @MollyEphraim @amandafuller27 … https://t.co/GsG8T6rplE" +09/22/2016,Comedians,@ofctimallen,TOMORROW! Season 6 premiere #LastManStanding @NancyATravis @MollyEphraim @amandafuller27 @KaitlynDever @StophSanders https://t.co/zU1opk999m +09/21/2016,Comedians,@ofctimallen,@buzzleys do I have chocolate in my teeth +09/21/2016,Comedians,@ofctimallen,Looking at audience for show number four https://t.co/fIGBrSEfaX +09/20/2016,Comedians,@ofctimallen,Look where I am today. Check your local listings to tune in @TheTalkCBS https://t.co/rwCqMAXJAg +09/15/2016,Comedians,@ofctimallen,@DidPatCallOut I have the entire Tool time set in my shop. +09/14/2016,Comedians,@ofctimallen,"Love our last Man set, feel like shopping here. https://t.co/27YN8Jw3bb" +09/09/2016,Comedians,@ofctimallen,Next Thursday I'll be at the Laugh Factory in Hollywood https://t.co/uriuFDBnuY @TheLaughFactory +09/08/2016,Comedians,@ofctimallen,"Got to test the new Blackberry DTEK50. Very light and streamlined. Quality feel, responsive & quick. With BlackBerr… https://t.co/OT5VXjZTFc" +09/02/2016,Comedians,@ofctimallen,Loved having these heroes on set #Navy #Marines #LastManStanding https://t.co/SItDYbUL8i +08/31/2016,Comedians,@ofctimallen,Fleet week guests on our Tuesday taping https://t.co/vij7ZpSyuq +07/01/2018,Comedians,@JimBreuer,"Sleep Apnea ? ... +https://t.co/p99vFNvvST" +06/28/2018,Comedians,@JimBreuer,RT @The7Line: Hang with @JimBreuer and @DarrenJMeenan on @orangebluething tomorrow night. 6pm EDT on FB Live and Periscope. https://t.co/w5… +06/27/2018,Comedians,@JimBreuer,"RT @joerogan: Pre-sale tickets for Philly and Columbus go on pre-sale today at 12pm local time. Password is: STRANGE +https://t.co/QaS20jiV…" +06/27/2018,Comedians,@JimBreuer,https://t.co/n9Kg7vj4pV +06/27/2018,Comedians,@JimBreuer,"RT @The7Line: Some say laughter is the best medicine, so we hit up our boy @JimBreuer for a little therapy this week. He'll be hanging in s…" +06/27/2018,Comedians,@JimBreuer,https://t.co/p99vFNvvST +06/25/2018,Comedians,@JimBreuer,"RT @StressFactoryNJ: Tomorrow!! Tues, June 26th! Come out to see the hilarious @JimBreuer “work it all out” His last two shows @Vinnie_Bran…" +06/25/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @Vinnie_Brand: It's #MondayMorning and I'm planning my week. Monday @Maddiebranddd graduates! Tues… +06/25/2018,Comedians,@JimBreuer,"RT @ComedyPlugs: RT @StressFactoryNJ: Tomorrow!! Tues, June 26th! Come out to see the hilarious @JimBreuer “work it all out” His last two s…" +06/25/2018,Comedians,@JimBreuer,@papazildjian Next time say hello :) +06/25/2018,Comedians,@JimBreuer,"RT @richmacleod: Hansel Robles made his Angels debut today, and allowed a go-ahead home run in the 10th inning. + +........he pointed. https:…" +06/17/2018,Comedians,@JimBreuer,@1zombie3 No sweeping in AZ :) MATZmerized +06/16/2018,Comedians,@JimBreuer,@Tinabobina808 This week +06/16/2018,Comedians,@JimBreuer,@TheGarofaholic @ImRobKelly Me too! +06/16/2018,Comedians,@JimBreuer,https://t.co/E9v9rHu0tK +06/15/2018,Comedians,@JimBreuer,@D10011980 Bring me over !!!! +06/15/2018,Comedians,@JimBreuer,@masonkeith25 Thank you ! +06/15/2018,Comedians,@JimBreuer,@gwenluv22 @train @patmonahan @TheParamountNY I’m especially looking forward to that one ! +06/15/2018,Comedians,@JimBreuer,@Tinabobina808 Soon ! I promise +06/15/2018,Comedians,@JimBreuer,@gwenluv22 @train @patmonahan Thanks Amy +06/15/2018,Comedians,@JimBreuer,@peterth90230029 Ha ha no ! +06/15/2018,Comedians,@JimBreuer,Train last night at MSG was amazing ! https://t.co/rM5f0h3szE +06/13/2018,Comedians,@JimBreuer,RT @TigersJUK: How have I never seen this with the audio before? https://t.co/SGg9KNZk2l +06/11/2018,Comedians,@JimBreuer,See you all TOMORROW NIGHT in NEW BRUNSWICK NJ for another night of “working it out “ at the Stress Factory ! +06/11/2018,Comedians,@JimBreuer,@MFaretty @MichaelMatolchi HOLY HOLY HOLY $&@% +06/11/2018,Comedians,@JimBreuer,@stewspringsteen Looking good ????? +06/11/2018,Comedians,@JimBreuer,@MPardoski @SoCalValerie @IAmJericho @jericho_cruise @JRsBBQ @RealDDP @FOZZYROCK @RealMickFoley @reymysterio… https://t.co/JiFLfSOufH +06/11/2018,Comedians,@JimBreuer,HEY METS FANS !!! Mets vs Yanks ? Is that a Bigfoot ? Or a Mets victory ? https://t.co/XQ6799VsqW +06/09/2018,Comedians,@JimBreuer,Mets fan THERAPY VENT https://t.co/PNGL0EMQmj +06/08/2018,Comedians,@JimBreuer,@danny10070222 You got it +06/08/2018,Comedians,@JimBreuer,@MikeDHernandez1 @Guitarmacist @StressFactoryNJ Giant Stadium ?? Parking lot ? Was that you ? +06/08/2018,Comedians,@JimBreuer,@OchoDeano Thank you - Netflix doesn’t want me .. +06/08/2018,Comedians,@JimBreuer,@Squale_63 I don’t even think about hits ??? +06/08/2018,Comedians,@JimBreuer,@Kellyc32674 @CitiField No - I can’t watch . +06/08/2018,Comedians,@JimBreuer,@BrentStaggs4 South Pacific +06/08/2018,Comedians,@JimBreuer,@The7Line @The7LineArmy GOD knows we ALL need the laughs !!! +06/08/2018,Comedians,@JimBreuer,"RT @The7Line: SAVE THE DATE! August 18th at the Paramount in Huntington. @JimBreuer reserved the entire upper mezz, lower mezz, and skybar…" +06/08/2018,Comedians,@JimBreuer,@djdemand @StressFactoryNJ @Vinnie_Brand @derick_stress See you Tues! +06/08/2018,Comedians,@JimBreuer,RT @Guitarmacist: Great night with @JimBreuer! His one man show in the works! I told him we camped out for tickets to the show. @StressFact… +06/08/2018,Comedians,@JimBreuer,@nic_linz That was a fun night too ! Thank you - hopefully see you again this Tues +06/08/2018,Comedians,@JimBreuer,@The7Line @The7LineArmy We’re gonna need to some LAUGHS by this MONDAY !!! +06/08/2018,Comedians,@JimBreuer,RT @The7Line: Thanks to @JimBreuer for setting aside special tickets for @The7LineArmy on August 18th at the Paramount out in Huntington. T… +06/08/2018,Comedians,@JimBreuer,@OchoDeano Thank you ! +06/08/2018,Comedians,@JimBreuer,RT @StressFactoryNJ: @JimBreuer IS BACK!!! June 12th at @Vinnie_Brand’s @StressFactoryNJ ! GET TIX ASAP!! Will sell out!! Go to: Stress htt… +06/08/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: @JimBreuer IS BACK!!! June 12th at @Vinnie_Brand’s @StressFactoryNJ ! GET TIX ASAP!! Will sell out!!… +06/08/2018,Comedians,@JimBreuer,@Guitarmacist Ha ha ha ... thank you .. +06/08/2018,Comedians,@JimBreuer,https://t.co/0TLCTsV4FM +06/05/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: Tuesday!!! @JimBreuer the most hilarious man on earth will be doing new material at @Vinnie_Brand ‘s… +05/25/2018,Comedians,@JimBreuer,@ultimatebrownie It is! +05/24/2018,Comedians,@JimBreuer,RT @Mighty1ne: @JimBreuer https://t.co/1be9rrjti6 +05/24/2018,Comedians,@JimBreuer,@Mighty1ne Omg Hilarious ! +05/24/2018,Comedians,@JimBreuer,@JuliaElleneSage Whoops ! Ok +05/24/2018,Comedians,@JimBreuer,@clydeallfie Easy +05/24/2018,Comedians,@JimBreuer,@theonlyjohnnyo @Slayer @Metallica See you in Madison ! +05/24/2018,Comedians,@JimBreuer,@FayeHunter @BigNoseKatesAZ Regulator ! +05/24/2018,Comedians,@JimBreuer,@BMSMaxContract Ahhhhhhhh +05/24/2018,Comedians,@JimBreuer,Watching the Mets Play https://t.co/PS9JrKAqGn +05/23/2018,Comedians,@JimBreuer,@ChrisFlanders8 @FigSNY I guess so - I’m not very bright you know ! +05/23/2018,Comedians,@JimBreuer,@joehates @FigSNY Ok +05/23/2018,Comedians,@JimBreuer,@BMSMaxContract My favorite song +05/23/2018,Comedians,@JimBreuer,@JerseyTerp @MrBrianKenny Long live Paint ! +05/23/2018,Comedians,@JimBreuer,@carnage526 @ryanBoucher7 Every metallica show +05/23/2018,Comedians,@JimBreuer,@jolojr55 @FigSNY Ha ha ha - I’m gonna Plunk him with my 53 MPH fastball! +05/23/2018,Comedians,@JimBreuer,@FigSNY Love Nelson Figueroa ! He should be a coach or analyst ! I can listen to him breakdown pitching mechanics &… https://t.co/H1X3xHMo0O +05/22/2018,Comedians,@JimBreuer,@JB511L94 That would of been cool +05/22/2018,Comedians,@JimBreuer,@Jfierro17 Hopefully ! +05/22/2018,Comedians,@JimBreuer,@ryanBoucher7 That’s a Metallica show . I’m not doing stand up comedy that night . Comedy yes ! Great rock game sho… https://t.co/ID7X2BABEQ +05/22/2018,Comedians,@JimBreuer,@Tinabobina808 Oh man! Heebie Geebies +05/22/2018,Comedians,@JimBreuer,A METS fan recap of tonight’s game https://t.co/iNoxP7O4PC +05/22/2018,Comedians,@JimBreuer,@GaffinSr @ScollinCollin Not stand up ! It’s a pre party Rock game show arena style ! +05/21/2018,Comedians,@JimBreuer,@cozcav “You’re welcome Canada !” Ha Ha Ha ha +05/21/2018,Comedians,@JimBreuer,@ngl0917 Family +05/21/2018,Comedians,@JimBreuer,"RT @Vinnie_Brand: You've been begging Me for @JimBreuer @StressFactoryNJ so here it is. + +One Show. June 5th. Jim is working out his one ma…" +05/21/2018,Comedians,@JimBreuer,"RT @Vinnie_Brand: You've been begging Me for @JimBreuer @StressFactoryNJ so here it is. + +One Show. June 5th. Jim is working out his one ma…" +05/21/2018,Comedians,@JimBreuer,@LarryCT @OpieRadio @JimNorton Sorry to hear about your mom . Glad I could help somehow :) +05/21/2018,Comedians,@JimBreuer,@Alex172005_ Ha ha the Vanisher ! +05/21/2018,Comedians,@JimBreuer,@treysuschrist Definitely ! +05/21/2018,Comedians,@JimBreuer,@ImRobKelly @ItsKaranSoni So many lines - I have to see it again +05/21/2018,Comedians,@JimBreuer,@NoCoothJoe Yes :) +05/21/2018,Comedians,@JimBreuer,@Beezer1971 Thank YOU +05/21/2018,Comedians,@JimBreuer,@ScollinCollin Ha ha ha - no it’s staged - it was a long time ago +05/21/2018,Comedians,@JimBreuer,@DonnieA21 Not at all! First one was hilarious too +05/21/2018,Comedians,@JimBreuer,"Ryan Reynolds kills it in Deadpool 2! +I thought it was FUNNIER than the first one !!!" +05/21/2018,Comedians,@JimBreuer,@odendog77 Thank you David! +05/21/2018,Comedians,@JimBreuer,@ngl0917 Just left Tampa! +05/21/2018,Comedians,@JimBreuer,@ajf5150 @pizzahut It’s staged :) +05/21/2018,Comedians,@JimBreuer,@Tinabobina808 Saw this ! +05/21/2018,Comedians,@JimBreuer,@DBREM81 Sorry for the sweep +05/21/2018,Comedians,@JimBreuer,@Toughmutter Have a safe flight :) +05/18/2018,Comedians,@JimBreuer,@Jfierro17 Possibly :) +05/18/2018,Comedians,@JimBreuer,@Tdot71 @JohnnyG_012 See you then ! +05/18/2018,Comedians,@JimBreuer,@ngl0917 Ha ha ha +05/18/2018,Comedians,@JimBreuer,"RT @Tinabobina808: @JimBreuer’s Podcast 88 spoke to me & my family’s fight with cancer. The insight Jim & Dee provided “heart felt, beautif…" +05/18/2018,Comedians,@JimBreuer,@Tinabobina808 @PAUmaui Done !!! +05/17/2018,Comedians,@JimBreuer,@JohnnyG_012 Wow !!! That was a few years back !!! At the end of the show +05/16/2018,Comedians,@JimBreuer,@wbd18258 Ha ha ha +05/16/2018,Comedians,@JimBreuer,@Tinabobina808 Podcast tomorrow ! You might want to listen . Hitting your life big time +05/16/2018,Comedians,@JimBreuer,@PizzaManJim @HRRocksinoNP See you then ! +05/15/2018,Comedians,@JimBreuer,@TarN8tion @vicdibitetto Yes I reached out after he started . Not sure how to pull it off but we may figure something out +05/15/2018,Comedians,@JimBreuer,@nytexpat @BComptonNHL This was last Saturday +05/15/2018,Comedians,@JimBreuer,@PeabodyBaseball It’s was time for both to move on +05/15/2018,Comedians,@JimBreuer,@nytexpat @BComptonNHL This past Saturday at the Paramount Huntington NY . We film every show :) +05/15/2018,Comedians,@JimBreuer,The state of METS & YANKEE FANS https://t.co/k96JqnUBpn +05/15/2018,Comedians,@JimBreuer,@PeabodyBaseball Thanks John +05/15/2018,Comedians,@JimBreuer,RT @PeabodyBaseball: Met fans vs Yankee fans by @JimBreuer https://t.co/cieEHoml6v +05/15/2018,Comedians,@JimBreuer,@loveg30 @bernieandsid @sidrosenberg Love their show +05/15/2018,Comedians,@JimBreuer,RT @BMSMaxContract: @JimBreuer on Mother's Day #BREUERRRRRRRR 🤣🤣🤣🤣 https://t.co/gm54vhY7SD +05/14/2018,Comedians,@JimBreuer,@RudyinQueens Sorry to hear about your Grandpa .. glad the goat cheered you uuuuuup +05/14/2018,Comedians,@JimBreuer,@nancy24195771 Thank YOU ! Hope so see you there again +05/12/2018,Comedians,@JimBreuer,@aderb66 No . They SOUND like them . Act like them +05/12/2018,Comedians,@JimBreuer,@DebbieYoung1 I did . I’d like to see how they grow +05/12/2018,Comedians,@JimBreuer,@ZepFan Same +05/12/2018,Comedians,@JimBreuer,@DebbieYoung1 Fair enough +05/12/2018,Comedians,@JimBreuer,@MScardinoJr I will see if I can make it +05/12/2018,Comedians,@JimBreuer,@AlexChipperson So far so good ..thanks for asking +05/12/2018,Comedians,@JimBreuer,@ajignatz Same +05/12/2018,Comedians,@JimBreuer,@RandaGary1 We did ! Lost three adults to injuries lol !! Not even kidding. +05/12/2018,Comedians,@JimBreuer,@MrWilliamTyler They were great . Curious to see their growth a year or two from now +05/12/2018,Comedians,@JimBreuer,RT @tweedrules: LONG LIVE PAINT!!!! @JimBreuer https://t.co/u3zNjrmMs7 +05/12/2018,Comedians,@JimBreuer,@ngl0917 Who knows ? Maybe a MONTH from now it’s back on the table ?! ..... yeah .. NO +05/12/2018,Comedians,@JimBreuer,Waiting at the Starland Ballroom . Can’t wait ! https://t.co/Pl0aaL2Z1w +05/11/2018,Comedians,@JimBreuer,@Baldassano Clearly he’s a tad slow.. +05/10/2018,Comedians,@JimBreuer,"Little Rascals ? No , Long Island kids back in the day https://t.co/pbaGyftaSe" +05/07/2018,Comedians,@JimBreuer,@curly_girl7326 That place was great ! +05/07/2018,Comedians,@JimBreuer,@RicKnight203 @StressFactoryCT Wow - I remember looking at that noggin of yours too! Glad you had a good time . Ev… https://t.co/34btZADTaZ +05/07/2018,Comedians,@JimBreuer,@BMSMaxContract Ha ha ha ha SUP +05/07/2018,Comedians,@JimBreuer,"@ngl0917 Yeah , I’m no dummy" +05/07/2018,Comedians,@JimBreuer,@EaglesAnarchy Text Breuer at 42828 to join the mailing list . Then you will know next time . See you then hopefully +05/07/2018,Comedians,@JimBreuer,@JMinichowski Yes it is :) +05/06/2018,Comedians,@JimBreuer,Mets fan - Yankees & Rehab https://t.co/iWwh3bf1Rb +05/03/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @JimBreuer: I will be at the Grand Opening is the Stress Factory Bridgeport Ct Thursday ! https://… +05/03/2018,Comedians,@JimBreuer,RT @991PLRFM: Exciting day in #Bridgeport as it was the big ribbon cutting ceremony at @Vinnie_Brand’s @StressFactoryCT Comedy Club. See @J… +05/03/2018,Comedians,@JimBreuer,"RT @959thefox: See @JimBreuer this grand opening weekend at the new +@Vinnie_Brand @StressFactoryCT in Bridgeport! +https://t.co/seqmcGMoZq…" +05/03/2018,Comedians,@JimBreuer,@PenzenikGeorge Ha ha ha +05/03/2018,Comedians,@JimBreuer,A Mets fan recap https://t.co/xSK0geqXNQ +05/02/2018,Comedians,@JimBreuer,RT @Vinnie_Brand: IT's here! @StressFactoryCT opens MAY 3- 5 @JimBreuer @garyowencomedy & @TheRealDiceClay @artiequitter @mariabamfoo @Titu… +05/02/2018,Comedians,@JimBreuer,"I will be at the Grand Opening is the Stress Factory Bridgeport Ct Thursday ! +https://t.co/i7lpaVXcy1" +05/01/2018,Comedians,@JimBreuer,Today I will be on MLB Network Live 4 pm https://t.co/kuseqRROR0 +05/01/2018,Comedians,@JimBreuer,@marty140722 Me too ! It was great to have you both there +05/01/2018,Comedians,@JimBreuer,@PenzenikGeorge This cracks me up every time I see it +05/01/2018,Comedians,@JimBreuer,@makeitepic @943TheShark @TheParamountNY It was nice to meet you the other morning +05/01/2018,Comedians,@JimBreuer,https://t.co/BAYtAtl5d4 +04/30/2018,Comedians,@JimBreuer,@CJBroschart Great to hear! +04/30/2018,Comedians,@JimBreuer,@ClosetsByML That was the best when I read that ! Thank you for the moment ! +04/30/2018,Comedians,@JimBreuer,"RT @AndoodTX: Woke up with this in my head. 🤘🤘Jim Breuer and the Loud & Rowdy ""Thrash"" https://t.co/DtG3zhN71t via @YouTube @JimBreuer" +04/30/2018,Comedians,@JimBreuer,@Mets4aces This week +04/30/2018,Comedians,@JimBreuer,@InfoSec_Brian Congrats ! I met her at Bernies . I remember +04/30/2018,Comedians,@JimBreuer,"@AndrewSuydam @StressFactoryNJ I’m opening Vinny’s New Place THIS weekend in Bridgeport Ct, I’ve played the State T… https://t.co/oG9lUY8zHB" +04/30/2018,Comedians,@JimBreuer,@BrosanMichael “My Bad!” Glad you had a good time +04/30/2018,Comedians,@JimBreuer,@ngl0917 Your team is a given . Mine is a hope :) +04/29/2018,Comedians,@JimBreuer,@FoodNetworkGuru That was a great spot ! +04/29/2018,Comedians,@JimBreuer,@WGCR Can’t wait to be back +04/29/2018,Comedians,@JimBreuer,@nsolddomains Bahhh +04/29/2018,Comedians,@JimBreuer,@AndrewSuydam Not in the near future :( +04/29/2018,Comedians,@JimBreuer,@laughrodite4u @FRESYEPP Ha ha ha +04/29/2018,Comedians,@JimBreuer,@janelliebelly See you next time hopefully +04/29/2018,Comedians,@JimBreuer,@nickley20 Nora - glad you both had a good time ! +04/29/2018,Comedians,@JimBreuer,@SundayLeith Don’t piss the GRIZZLY OFF +04/29/2018,Comedians,@JimBreuer,@leemooreTIS Thank YOU LEE +04/29/2018,Comedians,@JimBreuer,@garlicNonions Dani- glad you made it +04/29/2018,Comedians,@JimBreuer,@mikepmcs Mike ! Much appreciated +04/29/2018,Comedians,@JimBreuer,@chrisgojet Thank YOU for making me part of your night ! +04/29/2018,Comedians,@JimBreuer,@gnbrotz Thank YOU! +04/29/2018,Comedians,@JimBreuer,@janelliebelly Hope you had a great time !! Happy Birthday +04/29/2018,Comedians,@JimBreuer,See you all NEXT WEEKEND in BRIDGEPORT CT !!! Grand Opening of the STRESS FACTORY +04/27/2018,Comedians,@JimBreuer,RT @1023WBAB: Clear your schedule for the next hour. @RogerandJP are replaying their hang out with @JimBreuer from earlier this week now. L… +04/26/2018,Comedians,@JimBreuer,@Notsofunny78 And they went ! +04/26/2018,Comedians,@JimBreuer,@Thejoke_err Thanks Johnny ! Hopefully you can make it ! +04/23/2018,Comedians,@JimBreuer,@WGCR Unfortunately that’s not shared with anyone . +04/23/2018,Comedians,@JimBreuer,@EvansParreira @RobertDowneyJr @normmacdonald @iamcolinquinn Wow forgot about one . I liked when Norm was in sketch… https://t.co/eu18691Mx0 +04/23/2018,Comedians,@JimBreuer,@WGCR Garret you Metal Head !!! Glad I had a moment to say hello ! Thank you for being there brutha +04/23/2018,Comedians,@JimBreuer,@sobba564 @StanleyHotelCO Leo! It was Great to meet you and your lovely wife ! Thank you again !! +04/23/2018,Comedians,@JimBreuer,@PSCaramel @amazon Thank you ! Just made my morning +04/23/2018,Comedians,@JimBreuer,RT @PSCaramel: @JimBreuer I have watched your new special on @amazon three times now and every single time I have a headache and my ribs hu… +04/22/2018,Comedians,@JimBreuer,@CO_bunni @JoeSib Thank you for being there ! +04/22/2018,Comedians,@JimBreuer,@ThomasKetchum5 Working on it Thomas ! +04/22/2018,Comedians,@JimBreuer,@joeymook @TheRealDiceClay @StressFactoryCT See you then ! +04/22/2018,Comedians,@JimBreuer,@ynot_23 @DBS_BR No... +04/22/2018,Comedians,@JimBreuer,@robberger70 @Metallica Thank you ! See you in Vegas! Metallicaaaaaa +04/22/2018,Comedians,@JimBreuer,@PenzenikGeorge Ha ha ha +04/22/2018,Comedians,@JimBreuer,@ddouma75 Animals!! +04/22/2018,Comedians,@JimBreuer,RT @joeymook: @JimBreuer @TheRealDiceClay Looking forward to seeing you guys at the new @StressFactoryCT ! +04/22/2018,Comedians,@JimBreuer,Bill Burr you are a living legend ! Hope all is well in Burr World! https://t.co/kRkLmXfCf4 +04/22/2018,Comedians,@JimBreuer,Thank You Rich! https://t.co/yv22uGh9tb +04/22/2018,Comedians,@JimBreuer,"@DBS_BR 3-0 , 1st and 2 nd 1 our dick in the 8 th Dick" +04/22/2018,Comedians,@JimBreuer,@DBS_BR I am dick +04/22/2018,Comedians,@JimBreuer,This is how to PARTY AT 50!!! https://t.co/JhSBoTSxbb +04/20/2018,Comedians,@JimBreuer,@FreeSpirited001 @jennifermulson @StanleyHotel @tompapa Me too! +04/20/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryCT: RT @BizSuperstar: @JimBreuer to headline Bridgeport comedy club’s opening https://t.co/8UukAypnre #co… +04/19/2018,Comedians,@JimBreuer,@ngl0917 What do I get ? +04/19/2018,Comedians,@JimBreuer,"RT @jennifermulson: New pavilion @StanleyHotel in #estespark will offer robust entertainment lineup, including @JimBreuer and @tompapa this…" +04/19/2018,Comedians,@JimBreuer,"RT @WBESBrandonLowe: Huge guest announcement for next Tuesday's show. We will have . @JimBreuer +He is coming to Charles Town, WV April 28t…" +04/19/2018,Comedians,@JimBreuer,RT @Marisu62: @JimBreuer biggest fan ever!! love you Can you retweet please. For the Veterans. Check us out. Plllleeeease???? https:… +04/19/2018,Comedians,@JimBreuer,7 line Army RULES !!!! Thank YOU !!! Let’s Go Mets ! https://t.co/CXpoJk9ccX +04/18/2018,Comedians,@JimBreuer,RT @Tinabobina808: Dress up for your date. Bring it back to your first date! Dee you are so on it!!! I like to look pretty for my husband w… +04/18/2018,Comedians,@JimBreuer,RT @ComedyPlugs: RT @StressFactoryNJ: RT @BizSuperstar: @JimBreuer to headline Bridgeport comedy club’s opening https://t.co/8UukAypnre #co… +04/17/2018,Comedians,@JimBreuer,@peterth90230029 Ha ha ha +04/17/2018,Comedians,@JimBreuer,@Tinabobina808 @Mets @TommyBahama Love it !!! +04/17/2018,Comedians,@JimBreuer,Mets and Nationals .. fear https://t.co/QewbCzEML6 +04/16/2018,Comedians,@JimBreuer,House of Breu’s https://t.co/wo0wOHqSLA +07/01/2018,Comedians,@ericandre,I produced one of my favorite people’s show and it premiers tonight at midnight @adultswim #mostyl4millennials… https://t.co/BmNJzUwNVC +06/28/2018,Comedians,@ericandre,Starting a band with @TVCARNAGE and @Ocasio2018 🎸 🎶 🎷 https://t.co/7ZCgywrIcW +06/28/2018,Comedians,@ericandre,RT @philiplouie01: Going LIVE with @TVCARNAGE at NOON @BUILDseriesNYC and https://t.co/ul3lrtr4Bd! #Mostly4Millennials https://t.co/iwXy92r… +06/28/2018,Comedians,@ericandre,"RT @colbertlateshow: TONIGHT: Stephen sits down with @MMFlint, @ericandre and @TVCARNAGE talk #Mostly4Millenials, and we chat with @Ocasio2…" +06/28/2018,Comedians,@ericandre,"RT @BUILDseriesNYC: ""It was kismet, baby!"" - @TVCARNAGE reveals how he became friends with @ericandre. #Mostly4Millenials @adultswim https:…" +06/28/2018,Comedians,@ericandre,"Matt Groening’s ‘Disenchantment’ First-Look Teaser: Elf, Demon &amp; Party Princess https://t.co/HvfYXza74B via @deadline" +06/28/2018,Comedians,@ericandre,Disenchantment | Teaser [HD] | Netflix https://t.co/V5PCfaJurC via @YouTube +06/28/2018,Comedians,@ericandre,I’m performing in Madison! https://t.co/05Ub3ERlG6 +06/27/2018,Comedians,@ericandre,https://t.co/05Ub3ERlG6 +06/27/2018,Comedians,@ericandre,@VeraPapisova I saw at it at a wine bar. It’s called Salami 😂 +06/17/2018,Comedians,@ericandre,I’m back in Paris https://t.co/Y60P216M9J +06/15/2018,Comedians,@ericandre,I’m crying my eyes out watching this Mr. Rogers doc. 😭MISTER ROGERS' NEIGHBORHOOD | Lady Aberlin and Daniel Tiger T… https://t.co/C5gsdpt39W +06/13/2018,Comedians,@ericandre,Upgrade is a fucking incredible movie 🎥 🍿 +06/12/2018,Comedians,@ericandre,"RT @SenSanders: We have a racist criminal justice system that costs us billions of dollars, ruins lives and allows private prisons to profi…" +06/12/2018,Comedians,@ericandre,RT @morgan_murphy: why does the news tonight look like the exit confessional from a reality show called batshit house? https://t.co/tFLWTrX… +06/12/2018,Comedians,@ericandre,"RT @gray: Have to wait another three months for Matt Groening’s @disenchantment, but already obsessed with @ericandre’s personal demon, Luc…" +06/11/2018,Comedians,@ericandre,"RT @thefader: Watch a trailer for Adult Swim’s Mostly 4 Millenials, produced by @ericandre https://t.co/RzlphaH0VP https://t.co/g1F8dhjpSe" +06/11/2018,Comedians,@ericandre,RT @okayplayer: Watch the wild trailer for @ericandre's new Adult Swim TV series 'Mostly 4 Millennials.' https://t.co/411H7SPKc9 https://t.… +06/11/2018,Comedians,@ericandre,RT @PasteMagazine: Watch @joeyBADASS watch Derrick Beckles (@TVCARNAGE) get peanut butter licked off his feet in the batshit trailer for @e… +06/11/2018,Comedians,@ericandre,"RT @thefader: Watch a trailer for Adult Swim’s @ericandre-produced 'Mostly 4 Millenials.' +https://t.co/RzlphaH0VP https://t.co/usiAoXvSpo" +06/11/2018,Comedians,@ericandre,RT @okayplayer: Watch the wild trailer for @ericandre's new Adult Swim TV series 'Mostly 4 Millennials.' https://t.co/411H7SPKc9 https://t.… +06/11/2018,Comedians,@ericandre,@RuPaul I love you! +06/11/2018,Comedians,@ericandre,"@munchies Can you introduce me to Clovis! I'm headed to Paris! i want to DRINK +https://t.co/7KtGIBFTh4" +06/11/2018,Comedians,@ericandre,@munchies Introduce me to Clovis! I'm headed to Paris! thank you! https://t.co/7KtGIBFTh4 +06/06/2018,Comedians,@ericandre,Derrick Beckles and Eric Andre’s New Show Looks Insane and Disgusting https://t.co/75TnblP8g8 via @vulture +06/05/2018,Comedians,@ericandre,Vote 4 the Queen Gayle McLaughlin for Lt. Governor - CA! +06/02/2018,Comedians,@ericandre,Nardwuar's questions give priceless reactions https://t.co/Mqx4lh0pVD via @YouTube +05/23/2018,Comedians,@ericandre,"RT @rickkosick: Here’s another photo from @tonyhawk’s big 50th birthday party and this ones with @christianhosoi. Oh yeah, I’m also with @e…" +05/23/2018,Comedians,@ericandre,RT @thefader: .@ericandre to star in new cartoon from Simpsons creator Matt Groening. https://t.co/yutWx14DTT https://t.co/ptPEwFRc6G +05/23/2018,Comedians,@ericandre,RT @IndieWire: Matt Groening's new series #Disenchantment will premiere August 17 on @netflix. Here's your first look at the series which f… +05/23/2018,Comedians,@ericandre,"Netflix Sets ‘Disenchantment’ Premiere Date, Unveils First Look At Matt Groening Animated Series https://t.co/1GJXCT7eRg via @deadline" +04/17/2018,Comedians,@ericandre,How do we convince @iamcardib to give birth on stage? #freesyria +02/21/2018,Comedians,@ericandre,"RT @eric_sennse: Si vous croisez @ericandre à Paris, ce n'est pas moi ! Comme disait Coluche : ""un chapeau, pas de sac, c'est une faute de…" +02/19/2018,Comedians,@ericandre,Me and @alejodorowsky https://t.co/DdvtvKC0ES +12/16/2017,Comedians,@ericandre,Me and Freddy Mercury share the same opinion of Star Wars. +10/07/2017,Comedians,@ericandre,I’m opening up a brunch restaurant called Planet of the Crepes. +08/02/2017,Comedians,@ericandre,"""Yo Pierre you wanna come out here?"" is the ""Damn son where'd you find this?"" Of 2017" +07/16/2017,Comedians,@ericandre,"Real quick, what's everyone's political opinion?" +06/26/2017,Comedians,@ericandre,"Next year, I want Richard Dreyfuss to host the BET Awards." +06/04/2017,Comedians,@ericandre,They should have a cash cab option on uber. +05/18/2017,Comedians,@ericandre,Old health nut Roger Ailes passed away?!?! +05/04/2017,Comedians,@ericandre,"My drag name is Steve ""Shannon"" Bannon. @RuPaul do you approve?" +04/29/2017,Comedians,@ericandre,Taylor Swift assassinated Patrice Lumumba. +04/29/2017,Comedians,@ericandre,Taylor Swift helped put Pinochet in power. +04/27/2017,Comedians,@ericandre,Taylor Swift sold arms to Iran illegally then funneled the money into Nicaraguan contras. +04/26/2017,Comedians,@ericandre,@taylorswift13 is a hatchet man for a New World Order +04/26/2017,Comedians,@ericandre,Taylor Swift is an errand boy for grocery clerks sent to collect a bill +04/26/2017,Comedians,@ericandre,Taylor Swift is a false prophet +04/19/2017,Comedians,@ericandre,I actually thought Aaron Hernandez would replace Bill O'Reilly... 😳 +04/11/2017,Comedians,@ericandre,@united coach is like a fucking juggalo mosh pit. #fuckunitedairlines +04/11/2017,Comedians,@ericandre,Happy Sibling Day https://t.co/WnAvTUQqXy +04/03/2017,Comedians,@ericandre,With Jon Stewart gone I get most of my news from World Star's Instagram. +03/03/2017,Comedians,@ericandre,Washington Phillips is the Daniel Johnston of Robert Johnsons. +03/03/2017,Comedians,@ericandre,I'm the Super Nintendo In Charge. #hnic +11/09/2016,Comedians,@ericandre,"Really excited about Trump's cabinet: Christie, Gingrich, George Zimmerman, Robert Durst, Skeletor, & the Cobra Kai." +11/09/2016,Comedians,@ericandre,How do we get rid of the electoral college? Also who the fuck is in the electoral college? +11/09/2016,Comedians,@ericandre,I want to see @realDonaldTrump 'a birth certificate. +11/03/2016,Comedians,@ericandre,You think the owner of The Indians will pass out smallpox blankets if they lose? #retirechiefwahoo +11/01/2016,Comedians,@ericandre,Disappointed no one went as @hannibalburess brother for Halloween https://t.co/7DNkFZKixG +10/31/2016,Comedians,@ericandre,@KingJames can you convince your town to get rid of their racist ass baseball mascot? It's 2016. Tell Larry Dolan to read some Howard Zinn +10/28/2016,Comedians,@ericandre,How do I convince @hannibalburess to be Kimbo Slice for Halloween?? +10/27/2016,Comedians,@ericandre,https://t.co/BZSEw1GkvK +10/17/2016,Comedians,@ericandre,Did you know that everyone from the movie The Sandlot is dead...? +10/08/2016,Comedians,@ericandre,U'r right internet! Comedy & politics don't mix! Fuk u George Carlin! Richard Pryor! Bill Hicks! Lenny Bruce! What do u know about comedy! +09/24/2016,Comedians,@ericandre,I feel like The Civil War AND The Crusades never officially ended. I also feel like Eddie Murphy doesn't age. He looks fantastic! #Unrelated +09/11/2016,Comedians,@ericandre,Just saw American Sniper! They forgot to include Chris Kyle bragging about killing black people during Hurricane Katrina! That's his #1 hit! +09/04/2016,Comedians,@ericandre,Trying to patent a crystal meth Vape pen. Library of congress not responsive. +08/30/2016,Comedians,@ericandre,Leaked photo of a Bernie Sanders lemon party. Not photo shopped. 100% real. #wikileaks https://t.co/qRRAwouppb +08/02/2016,Comedians,@ericandre,Boba Tea in my lap and it's freezin my balls #ripeazye +07/28/2016,Comedians,@ericandre,@hannibalburess https://t.co/tuZ8379zwF +06/25/2016,Comedians,@ericandre,I just want to meet a woman who could butt chug a bong rip +06/23/2016,Comedians,@ericandre,How satisfying would it be to shave @RickRubin +06/16/2016,Comedians,@ericandre,What ever happened to El Chapo fighting ISIS? Kinda bummed that didn't happen. ;( +06/09/2016,Comedians,@ericandre,Christie Brinkley is 82 years old and still looks hotter than most 26 year olds. +05/23/2016,Comedians,@ericandre,What do you think Ariana Grande got on her SAT's? +05/20/2016,Comedians,@ericandre,Happy 5:20 bro https://t.co/uGhaVQIv9Z +05/19/2016,Comedians,@ericandre,Tyler Perry should remake Salo +05/15/2016,Comedians,@ericandre,If young metro don't shoot ya I don't trust you. #halloween #taliban +05/13/2016,Comedians,@ericandre,Can @rihanna write a song about kale please? 🌿 +05/11/2016,Comedians,@ericandre,I'm thinking about getting goat pupil contact lenses. +04/16/2016,Comedians,@ericandre,I can't believe it's 2016 and George Zimmerman hasn't been murdered yet. #zimmermanhollagramatcoachella? +04/09/2016,Comedians,@ericandre,I'm at the age where I still pick my nose but I throw my boogers in the garbage like a gentleman. +03/29/2016,Comedians,@ericandre,"I will join any band that asks me for, for one show." +03/27/2016,Comedians,@ericandre,I walked in on my parents 69'ing. +03/24/2016,Comedians,@ericandre,Let's make up new sex moves. #sexmoves 1. French Exit 2. Tuxedo Surprise. 3. Potato Boy +03/24/2016,Comedians,@ericandre,I'm just looking for a narcissist who looks better in pictures... +03/24/2016,Comedians,@ericandre,"Im just looking for a nice high maintenance girl who uses the dogface on snapchat, takes tons of selfies, and listens to Taylor Swift." +02/27/2016,Comedians,@ericandre,@kanyewest @adampally BILL COSBY IS A NARC!!!!! +02/10/2016,Comedians,@ericandre,JEFFREY DAHMERS INNOCENT!!! +01/19/2016,Comedians,@ericandre,Yo @hannibalburess You get that new Jared From Subway mix tape? +12/10/2015,Comedians,@ericandre,I bought a house. Now I just need a wife and a dog. Maybe I can just marry Air Bud. Kill two birds with one dog. https://t.co/FX1KcxTHcV +12/09/2015,Comedians,@ericandre,"You think I'll get sued if I name my comedy album, ""A Very Bieber Christmas."" ??" +11/27/2015,Comedians,@ericandre,Can someone photo shop Betty White with Fetty Wap? #BettyWap +08/06/2015,Comedians,@ericandre,I think I grew up hating Florida because everyone looked like Guy Fieri but acted like George Zimmerman. +05/18/2015,Comedians,@ericandre,"""Only I can judge God."" -Tupac" +05/10/2015,Comedians,@ericandre,Do you think Tom Cruise and David Miscavige fuck... or make love? #goingclear +05/10/2015,Comedians,@ericandre,I wanna fuck that ex machina robot +04/20/2015,Comedians,@ericandre,4/20 is the 311 of Cinco de Mayo. #420 #311 +03/19/2015,Comedians,@ericandre,I'm a B cup +03/18/2015,Comedians,@ericandre,Do you know that the first hipster was Otto the Caddy from Happy Gilmore? http://t.co/M1LVtv3frN +03/13/2015,Comedians,@ericandre,The worst time to go down on a woman is while she's giving birth. @TVCARNAGE +02/24/2015,Comedians,@ericandre,Tweet While Driving Day. #NewHolidays #celebratingitrightnow +02/24/2015,Comedians,@ericandre,Can drug dogs smell acid? +02/17/2015,Comedians,@ericandre,Im gonna get dog semen injected into my balls so my girlfriend can give birth to puppies. +02/03/2015,Comedians,@ericandre,http://t.co/KyBTsAit6V +01/19/2015,Comedians,@ericandre,"If the pope admits that all animals go to heaven, that'll mean heaven has roaches." +01/03/2015,Comedians,@ericandre,I want to start a petition that says it's illegal to marry @PamBondi #homophobia #Florida +01/03/2015,Comedians,@ericandre,20 bucks says that I hated The Theory of Everything. +01/03/2015,Comedians,@ericandre,20 bucks says that Stephen Hawking hated The Theory of Everything +01/01/2015,Comedians,@ericandre,Anyone know where I can buy the Stephen Hawking wheelchair? +01/01/2015,Comedians,@ericandre,I wanna start a band with R. Kelly & R. Crumb called The R's +12/11/2014,Comedians,@ericandre,I'm a Jew. Which is Hebrew for atheist. +11/17/2014,Comedians,@ericandre,Rita Ora sounds like an STD +11/05/2014,Comedians,@ericandre,I wanna make a cartoon called Bobby Shmurda's World +11/01/2014,Comedians,@ericandre,@SarahKSilverman I just uploaded a bunch of dick picks to my Friendster account. +07/10/2014,Comedians,@ericandre,My porn name is Sasha SW 13th Avenue. +07/06/2014,Comedians,@ericandre,@Madonna what's your email? +04/25/2014,Comedians,@ericandre,I'm trying to get Matthew Barney to wear a Barney the dinosaur outfit on my show and perform cremaster. +04/20/2014,Comedians,@ericandre,"Happy 4:20. Smoke a birthday blunt with Hitler, you fucking nazis! #Columbine" +04/15/2014,Comedians,@ericandre,My rap name is Lil' Yung +04/15/2014,Comedians,@ericandre,Dear Hollywood: Please stop making comic book movies. Comics are humorless and boring. Reading sucks. +04/08/2014,Comedians,@ericandre,CBS didn't want me to announce it but... I'm replacing Letterman. +03/24/2014,Comedians,@ericandre,I would've been the first runaway slave to jerk off while being lynched. #autoeroticlynching +03/12/2014,Comedians,@ericandre,Just had Dave Matthews Band release their tour bus septic tank all over me. Happy 311! +03/11/2014,Comedians,@ericandre,In the future everyone will be in Arcade Fire... for fifteen minutes. +03/11/2014,Comedians,@ericandre,Happy 311 y'all. +03/10/2014,Comedians,@ericandre,Happy 311 Eve! +03/09/2014,Comedians,@ericandre,Trying to start a conspiracy that Aaron Paul had Paul Walker killed. #NeedForSpeed +03/07/2014,Comedians,@ericandre,"You ever just text ""hi NSA!!"" To see if they'll text back. If they don't, just type #AlQaeda" +03/06/2014,Comedians,@ericandre,you guys mind if I jerk off to The Mouse and The Motorcycle? #BeverlyCleary +03/06/2014,Comedians,@ericandre,Where my polyamorous Brazilian atheists at?!! +03/03/2014,Comedians,@ericandre,I pee sitting down but I poop standing up. +02/27/2014,Comedians,@ericandre,I'm starting a kickstarter for a Zach Braff bio-pic. +02/27/2014,Comedians,@ericandre,R. Budd Dwyer is my biggest comedic influence +02/12/2014,Comedians,@ericandre,@heathercampbell 's notes from the season 3 writers room. #ericandreshow http://t.co/LPT8n4CG4J +02/08/2014,Comedians,@ericandre,Athlete's Foot? More like Athlete's VAGINA!!! +02/07/2014,Comedians,@ericandre,Peace in the Middle Yeast Infection +02/05/2014,Comedians,@ericandre,I want Pussy Riot to open up for the Russian Olympics. +01/20/2014,Comedians,@ericandre,what's the new silk road? i need speed!!!!!!! +01/16/2014,Comedians,@ericandre,Send me the most embarrassing talk show moments you can find! (besides my show) I need to do some research! +01/15/2014,Comedians,@ericandre,How do I get Kid 606 and Venetian Snares to write for season 3?????? +01/14/2014,Comedians,@ericandre,AM radio still exists.. +01/11/2014,Comedians,@ericandre,any new visual artists I should check out???? +01/09/2014,Comedians,@ericandre,I'm writing a screenplay called Oscar Bait. It's about a dying gay British Aristocrat sold into slavery. +01/09/2014,Comedians,@ericandre,"Dear auto correct: ""Hell"" and ""Yo"" are pretty common words. Please stop changing them to ""He'll"" and ""To"" #enoughisenough" +01/08/2014,Comedians,@ericandre,Working title for my stand up special: It's All Peaches and Kumail Nanjiani. (Note it has nothing to do with @kumailn ) +01/08/2014,Comedians,@ericandre,I want to start a really terrible band. Who's coming with me? +01/07/2014,Comedians,@ericandre,"I'm a parodox wrapped in an enigma stuffed inside another paradox wrapped in a taco shell, deep fried and beer battered... I'm hungry." +12/15/2013,Comedians,@ericandre,I just chugged a lava lamp +12/13/2013,Comedians,@ericandre,My mom just told me she didnt like South Park til she watched the Human Centipede one & now she loves it. She just blew the dick off my mind +12/08/2013,Comedians,@ericandre,I hope Kanye West's next album is just 45 minutes of him complaining. +12/01/2013,Comedians,@ericandre,Did you know that David Grohl is the lead singer of Haim +11/24/2013,Comedians,@ericandre,Make some noise if your parents still fuck!!!!!! +11/20/2013,Comedians,@ericandre,Abacuses are meaningless... +11/16/2013,Comedians,@ericandre,Am I the only one that thinks smoking crack isn't that big of a deal???? 4 more years Rob Ford!!!! +11/13/2013,Comedians,@ericandre,send me a song i've never heard before or a video i've never seen before +11/10/2013,Comedians,@ericandre,I wanna give Jay-Z molly. #TomFord +10/23/2013,Comedians,@ericandre,Did you know Miley Cyrus and Justin Bieber... are the same person??? +10/08/2013,Comedians,@ericandre,Always remember: No one that works at the airport gives a shit about you... +09/09/2013,Comedians,@ericandre,Legalize Silk Road!!!! +09/09/2013,Comedians,@ericandre,I wonder what Georgia O'Keeffe's vagina looked like... +09/07/2013,Comedians,@ericandre,"RT @Alfredlt: @ericandre STAY AWAY FROM ME + MY FAMILY YOU ARE SICK TRYING TO RENT AN APARTMENT IN MY BUILDING TO STALK ME, LEAVE ME ALONE" +09/07/2013,Comedians,@ericandre,"RT @Alfredlt: @ericandre Oh please, get some relevance and then talk about Madonna." +09/06/2013,Comedians,@ericandre,A hahahah so weird that madonna has this huge racist following! Who knew?! +09/06/2013,Comedians,@ericandre,RT @Alfredlt: #GetErikAndreAndBlackPeopleOutOfTwitter @ericandre +09/06/2013,Comedians,@ericandre,RT @Alfredlt: @ericandre Are you jealous because she has 30 years in the industry? And you can't be relevant after all this time v +09/06/2013,Comedians,@ericandre,RT @Amen_Madonna: @ericandre Suck it harder next time. Closet case. +09/06/2013,Comedians,@ericandre,RT @Amen_Madonna: @btsmgl @ericandre Not worked up! Obvi he wants to suck peen but can't cause he's in the closet. So he'd rather tell a ba… +09/06/2013,Comedians,@ericandre,"RIP Madonna - Aug 16, 1958 - September 6, 2013" +09/02/2013,Comedians,@ericandre,"Change ""bitch"" to ""cunt"" in any rap song to remind yourself how comfortable you've become with pop misogyny. #casualsexism" +09/01/2013,Comedians,@ericandre,Mom's mind being blown!!! http://t.co/8NblTirRa2 +08/31/2013,Comedians,@ericandre,Swear I didn't know the fashion police writers were striking!!! Power to the people! I'm sorry! +08/27/2013,Comedians,@ericandre,"NYC = New YUPPIE City, am I right?!?! #therentistoodamnhigh" +08/15/2013,Comedians,@ericandre,I have a theory that Futurama is always on at least one channel at all times. +08/08/2013,Comedians,@ericandre,poop +07/16/2013,Comedians,@ericandre,@twittels Rony Seikaly-Cell Anemia +07/15/2013,Comedians,@ericandre,"It's a strange country: We outcast Paula Deen for saying nigger, but we let people racially profile , stalk, & murder unarmed black children" +07/14/2013,Comedians,@ericandre,Can we arrest the jurors? +07/13/2013,Comedians,@ericandre,Every time someone farts an angel loses its wings. +07/12/2013,Comedians,@ericandre,I like going up to people with motorcycle helmets and asking them for Daft Punk's autograph. +07/12/2013,Comedians,@ericandre,I feel like procedural dramas are the elevator music of television +07/10/2013,Comedians,@ericandre,"People who say ""darn it"" instead of ""dammit"" weird me out" +07/09/2013,Comedians,@ericandre,Am I still an atheist if I believe in God Shammgod??? +06/22/2013,Comedians,@ericandre,I'm trying to pitch Celebrity To Catch A Predator to NBC. +06/03/2013,Comedians,@ericandre,"I'm the only superstitious atheist. I'm like, ""Bullshit there's a God--! Better not walk under this ladder...""" +05/21/2013,Comedians,@ericandre,Can we as a community just please please stop instagramming pictures of food?... Enough is enough. +05/08/2013,Comedians,@ericandre,I wanna pitch a show to the food network that teaches people how to cook speed #anarchistcookbooktv +05/01/2013,Comedians,@ericandre,I cant wait until French Montana and Hannah Montana go on tour... +04/26/2013,Comedians,@ericandre,Does anyone in the world understand the archaic pronounciation guides in dictionaries and encyclopedias? #(pron.: /ˈdɒmɨnɨk ˈmɒnəhæn/; ) +04/18/2013,Comedians,@ericandre,"the world is ending soon, right?" +04/09/2013,Comedians,@ericandre,out of all the drugs i've done i think that Tums is my favorite +04/04/2013,Comedians,@ericandre,I figured by 30 I'd stop huffing nitrous and jacking off by humping my pillow... Nope. +03/29/2013,Comedians,@ericandre,"Just over heard a homeless dude talking to himself say, ""yeah, the presidents black too, bitch.""" +03/28/2013,Comedians,@ericandre,"Whenever a girl tells me they're in long-distance relationship, I say ""Oh that's cool. I'm single too.""" +03/26/2013,Comedians,@ericandre,happy co-opted pagan equinox celebration! #zeitgeist +03/26/2013,Comedians,@ericandre,"just mass texted everyone with a Cohen last name in my phone ""Chag Pesach sameach"" #happypassover" +02/16/2013,Comedians,@ericandre,i just found out eye-ball tattooing is a real thing and had to sit down and softly weep for 20 minutes. +07/02/2018,Comedians,@SandraBernhard,RT @SenWarren: .@realDonaldTrump’s short list of Supreme Court nominees was hand-picked by right-wing extremists who want to criminalize ab… +07/01/2018,Comedians,@SandraBernhard,Oh yes Barack that’s the damn truth https://t.co/z7nEohae9N +07/01/2018,Comedians,@SandraBernhard,RT @AllMattNYT: BREXIT & RUSSIA EXCLUSIVE: Previously unreported emails suggest Brexit moneyman Arron Banks was more engaged with Russian d… +07/01/2018,Comedians,@SandraBernhard,RT @lizzwinstead: 👇🔥💜 https://t.co/Ubvj4nHBJN +07/01/2018,Comedians,@SandraBernhard,What do they want that they don’t already have? https://t.co/057gqLSA9S +07/01/2018,Comedians,@SandraBernhard,RT @TrueFactsStated: Yep. We’re going for subtle. https://t.co/Y35dAclY7d +07/01/2018,Comedians,@SandraBernhard,In solidarity with my brothers and sisters who deserve the promise of the American Dream #Resist ignorance greed an… https://t.co/phZBFVjlxe +06/29/2018,Comedians,@SandraBernhard,Thank you darling https://t.co/sY8tNq27r9 +06/29/2018,Comedians,@SandraBernhard,Go Elizabeth yes! https://t.co/kV5tuoHGQC +06/29/2018,Comedians,@SandraBernhard,Thank you darling Carole https://t.co/kWKq2MGHuS +06/29/2018,Comedians,@SandraBernhard,Thank you! https://t.co/JR2ZzIjCpV +06/29/2018,Comedians,@SandraBernhard,yes baby you are 100% correct https://t.co/dkU8YqKJB6 +06/28/2018,Comedians,@SandraBernhard,this Woman must seal her fate on this nomination or spend her life looking in the mirror of shame and regret… https://t.co/9srmFZArwY +06/28/2018,Comedians,@SandraBernhard,Madame do not let them force a new Supreme on us until the mid terms fight with all of your heart and soul https://t.co/qufQ7ika6s +06/28/2018,Comedians,@SandraBernhard,lets not imagine how many our #FakePresident has arranged and paid for that's for damn sure https://t.co/tpuTFiK81t +06/28/2018,Comedians,@SandraBernhard,"again and again and again ""thoughts and prayers"" like empty vessels filled with the dust of your insincerity and li… https://t.co/W0Qu2ofZHm" +06/28/2018,Comedians,@SandraBernhard,beat the guns into plowshares isn't that what the bible says? since that seems to be last word is government these… https://t.co/XpMihC5Pim +06/28/2018,Comedians,@SandraBernhard,Nancy you are so right on https://t.co/IfpUZvHib0 +06/28/2018,Comedians,@SandraBernhard,listen to Ahhnold on this one kids https://t.co/nUWoG0yJWU +06/28/2018,Comedians,@SandraBernhard,read it read it read it and remember it https://t.co/PokjHKVeTd +06/28/2018,Comedians,@SandraBernhard,and they never will it's a hoax a fakery of would be morality judgement hypocrisy racism misogyny contempt for the… https://t.co/OqAPKBxZhU +06/28/2018,Comedians,@SandraBernhard,Resist! https://t.co/dCp3qhitVf +06/28/2018,Comedians,@SandraBernhard,Ladies who know the score ⁦@debimazar⁩ keeping it fresh and real in #Sandyland that’s the truth baby ⁦@RadioAndySXM⁩ https://t.co/UaRUXxtFdd +06/28/2018,Comedians,@SandraBernhard,"RT @DanRather: To give in to despair, to be paralyzed by inaction, is to let them win. I've seen generations of Americans not give up on ou…" +06/28/2018,Comedians,@SandraBernhard,Yes Auntie Maxine my northern star your voice rises above the din of ignorance and we carry you upon our shoulders https://t.co/Wms2CVu5Vq +06/28/2018,Comedians,@SandraBernhard,RT @ChelseaClinton: The first comment. https://t.co/5Uo2oDmoBw +06/28/2018,Comedians,@SandraBernhard,Call call call! https://t.co/cpJq2MA38M +06/28/2018,Comedians,@SandraBernhard,Watching now essential viewing ⁦@Lawrence⁩ thank you for dropping into #Sandyland bringing your brilliance and grea… https://t.co/0RXznIBeDJ +06/28/2018,Comedians,@SandraBernhard,thank you can't wait to watch @dodo is an innovative respite from the cruelty of the human condition https://t.co/RYVZJjJboH +06/27/2018,Comedians,@SandraBernhard,agreed but you should still get out and do something to help the fight! https://t.co/V1cXU46HVJ +06/27/2018,Comedians,@SandraBernhard,this is not true i think wise people choose their words carefully there is great power in restraint and meditation… https://t.co/fGMsobGwAB +06/27/2018,Comedians,@SandraBernhard,come on Arizona blow everyone's mind stand like an ancient Saguaro and let them have it! https://t.co/Eqki6nVxWU +06/27/2018,Comedians,@SandraBernhard,to crush and control and walk over 99% of humanity this is the motivation of all these people to destroy happiness… https://t.co/3n2LxwUXpz +06/27/2018,Comedians,@SandraBernhard,its a Westward dystopian shit show Jeffrey but i know we will persevere thank you brilliant friend https://t.co/S1xjnDJPsF +06/27/2018,Comedians,@SandraBernhard,we need to advocate for ourselves with the support of fearless senators like you https://t.co/QUokDZbQoL +06/27/2018,Comedians,@SandraBernhard,Auntie Maxine is my northern star never stop warrior-ess @RepMaxineWaters let's get back to matters at hand reuniti… https://t.co/A2irIU6JPd +06/27/2018,Comedians,@SandraBernhard,progressive revolutionary game changing status quo killer go go go! https://t.co/PRHuQDtIi0 +06/27/2018,Comedians,@SandraBernhard,if this doesn't tear open you heart then nothing can! https://t.co/ceeUUBOYRX +06/27/2018,Comedians,@SandraBernhard,always classy! so glad he snuck into the White House! https://t.co/OJgmYofuuf +06/27/2018,Comedians,@SandraBernhard,a fight to the end of civilization is at hand https://t.co/xyAqjuMLuq +06/27/2018,Comedians,@SandraBernhard,a delight to have Mr ODonnell back in Sandyland always a calming force! https://t.co/YRrHgZOOr5 +06/27/2018,Comedians,@SandraBernhard,now more than ever you need to escape into #Sandemonium kids @GuildHall this Saturday June 30th see you there https://t.co/PdrzxPr27f +06/27/2018,Comedians,@SandraBernhard,if we can sleep soundly tonight than truly we have lost our moral compass we will continue to #StandWithMuslims unt… https://t.co/uP4tPYz84x +06/26/2018,Comedians,@SandraBernhard,S #Sandyland double header ⁦@LisaLeslie⁩ ⁦@theebillyporter⁩ bringing true beauty to the land ⁦@RadioAndySXM⁩ https://t.co/FCv1qkp4qC +06/26/2018,Comedians,@SandraBernhard,There’s no one more talented or chic than my friend @thebillyporter #PrayTell ⁦@PoseOnFX⁩ watch for us on episode 6… https://t.co/yF6802H7bJ +06/26/2018,Comedians,@SandraBernhard,"when we get to the edge of democracy will we persevere? i believe we will, but it's not going to be pretty. https://t.co/v4Bwu1pDGG" +06/26/2018,Comedians,@SandraBernhard,Words of wisdom from my brillian daughter https://t.co/woLGjFS7RQ +06/26/2018,Comedians,@SandraBernhard,go Jim go https://t.co/8LmrIAmQzR +06/26/2018,Comedians,@SandraBernhard,it's unforgivable and irreparable if we don't stand up now then no one can expect our support when the shit hits th… https://t.co/8i9OYNAB36 +06/26/2018,Comedians,@SandraBernhard,come see me this Saturday @GuildHall #Sandyland live kids! https://t.co/yXrXzWN9Kw +06/25/2018,Comedians,@SandraBernhard,The woman who lit up New York nights ⁦@amysacco⁩ entrepreneur moving it it all up #Sandyland summer Monday ⁦… https://t.co/0UBWAfUywQ +06/25/2018,Comedians,@SandraBernhard,as old as the republic we must be constantly vigilant https://t.co/IiyEV4kE3f +06/25/2018,Comedians,@SandraBernhard,this is brutal hard to take we must find some alternative to petroleum based products before we destroy the planet https://t.co/HyopR6dwCO +06/25/2018,Comedians,@SandraBernhard,we cannot back off this man made disaster keep calling your congress people and reunite these families asap https://t.co/FnGPvNUOGu +06/25/2018,Comedians,@SandraBernhard,Whew! just glad you'll still be bringing scents and scentsiblilty to NYC adore you kids come talk to me about perf… https://t.co/CqLM0s6aIm +06/25/2018,Comedians,@SandraBernhard,everyone needs to get woke now! https://t.co/sF2MFBxBiS +06/23/2018,Comedians,@SandraBernhard,boom https://t.co/phOBEk8FkP +06/23/2018,Comedians,@SandraBernhard,"RT @robreiner: This November Donald Trump is not on the ballot. But inhumanity is. So are racism, Incompetence, corruption, immorality and…" +06/23/2018,Comedians,@SandraBernhard,glad we made it home baby! https://t.co/MxxUz1IMJ8 +06/22/2018,Comedians,@SandraBernhard,This is what I keep imagining shattering https://t.co/X94ydDKKUT +06/22/2018,Comedians,@SandraBernhard,"RT @DannyZuker: Somehow, on their 1000 mile journey, these parents were able to protect their kids from gangs, human traffickers, rapist, m…" +06/22/2018,Comedians,@SandraBernhard,Give some sisters a break! #Sandyland was rich today darling ⁦@JeniferLewis⁩ ⁦@MacyGraysLife⁩ packed with righteous… https://t.co/fPH7LQz9Xr +06/21/2018,Comedians,@SandraBernhard,We demand to know what is happening to these children! https://t.co/gLFDIwTPxP +06/21/2018,Comedians,@SandraBernhard,Full disclosure we want to know what is happening to these children! https://t.co/DDfSc6qUYI +06/21/2018,Comedians,@SandraBernhard,I love the good heart if this country https://t.co/1WpOzxvpq8 +06/21/2018,Comedians,@SandraBernhard,RT @Lawrence: Anyone wanna bet against @MichaelAvenatti eventually revealing some important news with ICE whistleblowers? https://t.co/z4bT… +06/20/2018,Comedians,@SandraBernhard,RT @robreiner: The President of the United States is a monster. Decent loving Republicans must now stand up. America can not be a country t… +06/20/2018,Comedians,@SandraBernhard,Ellen can you believe this one chiming in? A Shonda https://t.co/7cEPRNKuEj +06/20/2018,Comedians,@SandraBernhard,Please check this out https://t.co/58p7vckV9S +06/20/2018,Comedians,@SandraBernhard,Yes brothef https://t.co/i451Ymnc6u +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: You will never hear this on @foxnews because immigration is a wedge issue to get people to vote for republicans so business… +06/20/2018,Comedians,@SandraBernhard,No shit they can’t find them https://t.co/PkhRkNzP98 +06/20/2018,Comedians,@SandraBernhard,"RT @ABC: Hugging a child, Rep. John Lewis vows action to stop practice of family separation. + +""Just tell me whatever you want me to do. I w…" +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: Now would be the time to cut the montage of how @FoxNews said he couldn’t fix it and then said he could when he made an adj… +06/20/2018,Comedians,@SandraBernhard,Don’t stop the music! https://t.co/0Fm9123nSa +06/20/2018,Comedians,@SandraBernhard,We went so deep in #Sandyland just getting back up with ⁦@ourladyj⁩ the discussion continues America we bring the g… https://t.co/iHMMRrJgFP +06/20/2018,Comedians,@SandraBernhard,RT @RepJoeKennedy: Arrived in Tornillo TX where first tent city for kids has gone up. Was refused entrance by HHS. Given amount of misinfor… +06/20/2018,Comedians,@SandraBernhard,RT @Bro_Pair: Simpering Nazi fuck Stephen Miller is smugly taking credit for the family separations. Maybe he wouldn’t like protestors at h… +06/20/2018,Comedians,@SandraBernhard,"RT @KamalaHarris: It’s time for Secretary Nielsen to resign. The government should be keeping families together, not tearing them apart. Ad…" +06/20/2018,Comedians,@SandraBernhard,RT @JamilSmith: You really have to be a special kind of motherfucker to mock a 10-year-old girl with Down syndrome separated from her immig… +06/20/2018,Comedians,@SandraBernhard,RT @American_Bridge: WATCH as attendees arrive at a fundraiser at Trump Hotel while the cries of children being ripped away from their pare… +06/20/2018,Comedians,@SandraBernhard,RT @JuddApatow: That’s right. Call @FoxNews and let them know you are boycotting all Fox businesses until they stop supporting all of this… +06/20/2018,Comedians,@SandraBernhard,The height of utter madness https://t.co/oiLtHXCNRU +06/20/2018,Comedians,@SandraBernhard,RT @jamieleecurtis: Child actor. Not a child actor. @AnnCoulter Shame on you. https://t.co/af9mEgTBfX +06/20/2018,Comedians,@SandraBernhard,RT @IMKristenBell: Something to do TODAY: CALL YOUR GOVERNOR AND ASK THEM TO DO THE SAME https://t.co/o7SGwXuBvc +06/20/2018,Comedians,@SandraBernhard,"RT @ABC: Experts say psychological impact of family separation on par with abuse: + +""No amount of colorful rooms with lots of great toys, r…" +06/20/2018,Comedians,@SandraBernhard,Listen to this then call your congress person and blast them into action https://t.co/sjohcYvcek +06/20/2018,Comedians,@SandraBernhard,"RT @MSNBC: ""If kids don’t eat in peace, you don’t eat in peace"" + +Demonstrators interrupted Homeland Security Sec. Nielsen’s dinner at an up…" +06/20/2018,Comedians,@SandraBernhard,RT @AndrewFeinberg: Not sure who’s tweeting for FLOTUS but this is another “Let then eat cake” moment https://t.co/Sarw3xGXgO +06/20/2018,Comedians,@SandraBernhard,RT @danagould: Congrats to Corey Lewandowski on the five second clip that will define his life. https://t.co/RXZXXohPvv +06/20/2018,Comedians,@SandraBernhard,Thank you Mr Avenatti https://t.co/aYi6CWmQqM +06/20/2018,Comedians,@SandraBernhard,RT @KamalaHarris: Secretary Nielsen must resign. The human rights abuses being committed against children — many are just toddlers — by the… +06/20/2018,Comedians,@SandraBernhard,Imagine how much further we’d be now if only @HillaryClinton had not been robbed of the presidency https://t.co/oYzGZdWgNS +06/20/2018,Comedians,@SandraBernhard,We second this motion https://t.co/lIzN0iHQYl +06/19/2018,Comedians,@SandraBernhard,"RT @business: “Modern Family” co-creator plans to leave 21st Century Fox’s TV studio, saying that he’s “disgusted” by the company’s ties to…" +06/19/2018,Comedians,@SandraBernhard,RT @NYMag: President Trump has reached a new rhetorical low https://t.co/0AUig6JZ1l +06/19/2018,Comedians,@SandraBernhard,"RT @MiaFarrow: ‘On the Texas side of the Mexican border today, thousands of children, by order of the Trump Administration, are learning wh…" +06/19/2018,Comedians,@SandraBernhard,"RT @BettyBuckley: Dear US Attorneys—Sue this horrid, monstrous regime for Child Abuse & the abuse of Human Rights! https://t.co/UYSV4yH8OK" +06/19/2018,Comedians,@SandraBernhard,"RT @nytimes: Here is what is happening to migrant families on the border, and what’s behind it https://t.co/1tItGvWcg8" +06/19/2018,Comedians,@SandraBernhard,@MonaHannaA brilliant new book https://t.co/v66m7PlYcz +06/19/2018,Comedians,@SandraBernhard,An American hero https://t.co/ZHoPJjeOTF +06/19/2018,Comedians,@SandraBernhard,This woman is an American hero her new book What The Eyes Don’t See is about the #FlintWaterCrisis is mandatory rea… https://t.co/jBD1cMBItz +06/19/2018,Comedians,@SandraBernhard,Won’t you join me June 30 #Sandyland live #GuildHall the Hamptons baby! https://t.co/flvIwDx66u +06/19/2018,Comedians,@SandraBernhard,Captain Winstead may i see you in the control room please. immediately. https://t.co/ntvhYxcm4t +06/18/2018,Comedians,@SandraBernhard,end of discussion https://t.co/WGRVxdxDBe +06/18/2018,Comedians,@SandraBernhard,This is America ⁦@AlexanderWangNY⁩ multicultural approach to fashion raising the conversation with a street edged e… https://t.co/72tXgQAwSt +06/18/2018,Comedians,@SandraBernhard,so proud to have you in #Sandyland Tuesday Mona how perfect that you were in discussion with the brilliant… https://t.co/EQTd8q3ARh +06/18/2018,Comedians,@SandraBernhard,Mr Clinton this would never have happened under your watch that's for damn sure https://t.co/Sket96YlsS +06/18/2018,Comedians,@SandraBernhard,lizz laughing and crying at the same moment over this https://t.co/WyryoJ8DgJ +06/18/2018,Comedians,@SandraBernhard,ice cold https://t.co/P4nwWnEHcF +06/18/2018,Comedians,@SandraBernhard,i will! can't wait for the new season of #TheAffair you are terrific https://t.co/5pvem1N0ey +06/17/2018,Comedians,@SandraBernhard,"RT @kylegriffin1: The United Methodist Church is calling on Jeff Sessions — who is Methodist — to ""immediately reverse"" the Trump admin's f…" +06/17/2018,Comedians,@SandraBernhard,The sickness is inoperable https://t.co/hufPVZNctV +06/17/2018,Comedians,@SandraBernhard,RT @IvankaTrump: My ♥️! #SundayMorning https://t.co/CN5iXutE5Q +06/17/2018,Comedians,@SandraBernhard,on fathers day everyday let's not stop until we've untied this hateful knot https://t.co/H87jWMPJMd +06/17/2018,Comedians,@SandraBernhard,you have to ask where did it all go so wrong for this person? and then you have to say we're not going to let him i… https://t.co/0UVBopsldi +06/17/2018,Comedians,@SandraBernhard,happy fathers day to my favorite dads on twitter @robreiner @DannyZuker @JuddApatow for your fearless defense on be… https://t.co/HfoHPXPyp8 +06/16/2018,Comedians,@SandraBernhard,chilling https://t.co/l7yNtEL6jY +06/16/2018,Comedians,@SandraBernhard,Danny never stop talking you hit it hard and deep every time thank you https://t.co/ckqeFuEKyx +06/16/2018,Comedians,@SandraBernhard,this is what he was fired for? that is tragic what a weak flimsy ego barely running this country sad really https://t.co/IRAKuU0OaL +06/15/2018,Comedians,@SandraBernhard,he is so cheap this man separate it kids all of it state and religion the twain shell never meet https://t.co/68yO9geiJ1 +06/15/2018,Comedians,@SandraBernhard,it's time to take a stand! https://t.co/k7PJvDtrxW +06/15/2018,Comedians,@SandraBernhard,you know we do B this is fantastic xo https://t.co/Q4n7gd5lGZ +06/15/2018,Comedians,@SandraBernhard,yes Rose i am very much alarmed and yet not at all surprised kindred spirits these two and all the other despots https://t.co/PPVDMWGJrl +06/15/2018,Comedians,@SandraBernhard,Mr Reiner we thank you https://t.co/DgZRDYPp9r +06/14/2018,Comedians,@SandraBernhard,thank you Christine this is a wonderful gift! https://t.co/lK57gTSiB3 +06/14/2018,Comedians,@SandraBernhard,RT @DannyZuker: Doing nothing in the face of monstrous acts is itself kind of monstrous. If you think tearing children from their parents’… +06/14/2018,Comedians,@SandraBernhard,read it and weep https://t.co/FJ7iN55j0c +06/14/2018,Comedians,@SandraBernhard,and start watching the streaming tonight @BroadwayHD break a leg baby! https://t.co/ziiq4y1dpW +06/14/2018,Comedians,@SandraBernhard,thank you for this i use all of these so i'll add in the gargle! you are lovely x sandy https://t.co/WQhuluSYTP +06/14/2018,Comedians,@SandraBernhard,The incredibly talented #AlexandraShiva with her new doc about Syrian refugees #ThisIsHome ⁦@EpixHD⁩ sure June 20… https://t.co/POv5zHp2oT +06/14/2018,Comedians,@SandraBernhard,The girls stepped into #Sandyland with panache! ⁦@LeaKThompson⁩ ⁦@maddiedeutch⁩ ⁦@zoeydeutch⁩ thank you ladies! ⁦… https://t.co/q25de9RCx2 +06/13/2018,Comedians,@SandraBernhard,i adore you both forever and ever! https://t.co/qx7Uvc0Uhr +06/13/2018,Comedians,@SandraBernhard,Bat wing dolman sleeve new moon in Gemini @mxjustinVbond weaves their magic in #Sandyland soul mates forever… https://t.co/i7ae8PTURI +06/13/2018,Comedians,@SandraBernhard,i adore you Chelsea you are really funny too smart we already knew! https://t.co/LRLseY8wNE +06/13/2018,Comedians,@SandraBernhard,this is brilliant! https://t.co/9dARFZeqmN +06/13/2018,Comedians,@SandraBernhard,bring it baby can't wait to see you in #Sandyland tomorrow @RadioAndySXM https://t.co/8Qqdl0eFC2 +06/12/2018,Comedians,@SandraBernhard,with that magnetic smile and smooth approach what woman could possible resist! https://t.co/8DYZswX6qw +06/12/2018,Comedians,@SandraBernhard,gas light time. https://t.co/fwvOWVVfs4 +06/12/2018,Comedians,@SandraBernhard,Yes children this the chic & fabulous ⁦@TayeDiggs⁩ he’s back in #Sandyland bringing style love this man ⁦… https://t.co/ASr5BF1Zb0 +06/12/2018,Comedians,@SandraBernhard,The divine ⁦@HollandTaylor⁩ in #Sandyland don’t miss her brilliant show #Ann streaming June 14 ⁦@BroadwayHD⁩ a tour… https://t.co/xwK2jFvePU +06/12/2018,Comedians,@SandraBernhard,The Hamptons darling a glass of Rose and #Sandyland live June 30 ⁦@GuildHall⁩ https://t.co/8uct5wTWVR +06/11/2018,Comedians,@SandraBernhard,someone doing something about the problem read this https://t.co/QILSI7BjgF +06/11/2018,Comedians,@SandraBernhard,he's a lousy little man Coretta Scott King called him out for his racist behavior years ago shows you what kind of… https://t.co/CilBFToXHB +06/11/2018,Comedians,@SandraBernhard,What like destroying our country? https://t.co/cUucedZFWR +06/11/2018,Comedians,@SandraBernhard,Let’s start now https://t.co/h2Za04gTvh +06/11/2018,Comedians,@SandraBernhard,This disgusting small man holds enough hatred for a giant https://t.co/zjKxCT50go +06/11/2018,Comedians,@SandraBernhard,Can’t wait to talk all about her tomorrow in #Sandyland Holland! @RadioAndySXM tune in! https://t.co/o0SqYqz5WL +06/11/2018,Comedians,@SandraBernhard,Send this racist fool into the desert https://t.co/znzjX6kRMu +06/11/2018,Comedians,@SandraBernhard,Yes please! https://t.co/1xfGPfP2sA +06/11/2018,Comedians,@SandraBernhard,She’s divine @arianatherose fab new music love of @britneyspears and summer fun #Sandyland Monday @RadioAndySXM https://t.co/XchnqrLWGh +06/11/2018,Comedians,@SandraBernhard,it was @britneyspears day in #Sandyland stay tuned https://t.co/OT0MMHzvZJ +06/11/2018,Comedians,@SandraBernhard,So thrilled for my friend #LaurieMetcalf on her #ThreeTallWomen @TheTonyAwards she is a superstar! +06/11/2018,Comedians,@SandraBernhard,you must read this #FlintWaterCrisis @MonaHannaA who will be my guest in #Sandylad June 19 @RadioAndySXM https://t.co/MMypx9gNJg +06/10/2018,Comedians,@SandraBernhard,"as the minutes sweep pass the face of the true moral justice clock we watch peoples lives tick away, how close to t… https://t.co/Ypsd6FQCxJ" +06/10/2018,Comedians,@SandraBernhard,breathing deeply waiting for the shoe to drop but when we ask when? https://t.co/D8iAF8NYXq +06/10/2018,Comedians,@SandraBernhard,thank you honey #GayPride DC was incredible thank you again #WashingtonBlade for a stellar night https://t.co/eJUQprC7qZ +06/10/2018,Comedians,@SandraBernhard,"RT @Shareblue: “They had to use physical force to take the child out of his hands.” +https://t.co/G5jdMTb0PP" +06/09/2018,Comedians,@SandraBernhard,"yes Jim and we all know how true that is now more than ever just look at our hmmm ""President""! https://t.co/5VVFLKEycB" +06/09/2018,Comedians,@SandraBernhard,Jeffrey thank you again https://t.co/fb9NHtVYf8 +06/09/2018,Comedians,@SandraBernhard,You begin to know people in a different way once they are gone what a terrible loss https://t.co/NS23Her7zL +06/09/2018,Comedians,@SandraBernhard,And never forget it https://t.co/yq6oZVPR6u +06/08/2018,Comedians,@SandraBernhard,Wearing your gold boots on stage rockin! https://t.co/pPP5heGQvE +06/08/2018,Comedians,@SandraBernhard,"RT @jfreewright: Throwing pardons around like paper towels to the rich in Puerto Rico - vicious song & dance politricks - when, outside, th…" +06/08/2018,Comedians,@SandraBernhard,Fabulous chat with #Veronica @abc7gmw #LGBTQ… https://t.co/fhjzGfphNL +06/07/2018,Comedians,@SandraBernhard,RT @MonaHannaA: This is cruel. This is abusive. This is an abject violation of human rights. This is the type of trauma a child may never r… +06/07/2018,Comedians,@SandraBernhard,RT @CharlesMBlow: I just can’t take this anymore. His green card app is in progress. His wife and kids are citizens. This is in my neighbor… +06/07/2018,Comedians,@SandraBernhard,Pigs are clean and highly intelligent as well Dick https://t.co/oYAtGIhmfR +06/07/2018,Comedians,@SandraBernhard,thank you for all of my wonderful birthday wishes you kids really know how to make a gal feel special love it! +06/07/2018,Comedians,@SandraBernhard,this is how i demand to be read! https://t.co/Atttyw3AWt +06/07/2018,Comedians,@SandraBernhard,to my soul brother who i adore always! thank you baby! https://t.co/VYaKbbPNcs +06/07/2018,Comedians,@SandraBernhard,i'm always in the mood for a little bit of Burt! https://t.co/ydJKk4Rxqx +06/07/2018,Comedians,@SandraBernhard,my gemini twin and generally great person https://t.co/TxdkpNhOwW +06/07/2018,Comedians,@SandraBernhard,love you Lois always a delight! https://t.co/WBOjxes9jj +06/07/2018,Comedians,@SandraBernhard,everyone get out to #Sandyland live tonight #Philly baby! https://t.co/kwdiRO1psX +06/07/2018,Comedians,@SandraBernhard,i love you both looking forward to so many more great matches! https://t.co/BxVzUGcWhD +06/06/2018,Comedians,@SandraBernhard,Thank you kids love you Beth and Mitchy! https://t.co/ldwodUyPVS +06/06/2018,Comedians,@SandraBernhard,My birthday show with dear friend @BettyBuckley guru virtuoso wisdom seeker her new album #Hope is a masterpiece ge… https://t.co/oVfb13hKrc +06/06/2018,Comedians,@SandraBernhard,you're up to bat Mikey happy early birthday to you! https://t.co/Vb5Ha3xOOt +06/06/2018,Comedians,@SandraBernhard,for my birthday let's fix #FlintWaterCrisis once and for all! https://t.co/wYELBCouWk +06/06/2018,Comedians,@SandraBernhard,im comin philly! #Sandyland live tomorrow night June 7th be there! https://t.co/KqzaiZycMA +06/06/2018,Comedians,@SandraBernhard,WMC you are the best what a sweetheart your friendship means the world to me! love you and Greg wow! https://t.co/3UiY05VxVg +06/06/2018,Comedians,@SandraBernhard,Philly get your asses in gear! #Sandyland live tomorrow don't let me down! https://t.co/9SrBtLyJ9e +06/06/2018,Comedians,@SandraBernhard,thank you! let's rock it x s https://t.co/CuoURg44hn +06/06/2018,Comedians,@SandraBernhard,you are a doll T love you baby thank you xo sandy https://t.co/B7rVgRy29H +06/05/2018,Comedians,@SandraBernhard,#90210 #Melroseplace #Younger #DarrenStar brings all his characters to life shining bright in #Sandyland… https://t.co/IeLRxUPKNj +06/05/2018,Comedians,@SandraBernhard,#WorldEnvironmentDay #BeatPlasticPolution @belindaofficial accepting your challenge! Inching toward a plastic free… https://t.co/npxyAORaZX +06/05/2018,Comedians,@SandraBernhard,Vote today https://t.co/7PHTLpFusd +06/05/2018,Comedians,@SandraBernhard,yes you know we do! https://t.co/rPBezbTgHZ +06/05/2018,Comedians,@SandraBernhard,bring it B! https://t.co/yFY34ydmmH +06/05/2018,Comedians,@SandraBernhard,and we are looking out for you! https://t.co/IF4i4ore2O +06/04/2018,Comedians,@SandraBernhard,yes that's right thank you @MsSarahPaulson for bringing your A game to the land of Sandy memorable funny brilliant! +06/04/2018,Comedians,@SandraBernhard,memo to #SupremeCourt we don't want those bleached white flour sugar cakes anyway we like to aim a little higher i'… https://t.co/YYrRMIVUjm +06/04/2018,Comedians,@SandraBernhard,A brilliant “two hander” in #Sandyland starring the one & only #sarahpaulson #Oceans8 baby she’s my friend & a supe… https://t.co/NMOIXnj5Hb +06/04/2018,Comedians,@SandraBernhard,get to #Sandyland live this thursday June 7 Philly baby! https://t.co/pfnxhWxm6q +06/04/2018,Comedians,@SandraBernhard,"someone stop the madness of ""King Donald"" in the name of democracy everywhere! https://t.co/bIgBFGol82" +06/03/2018,Comedians,@SandraBernhard,"watch me host tonight the fabulous https://t.co/gDTn3nUzaW +#Collection1 live streaming at 7:30 chic!" +06/02/2018,Comedians,@SandraBernhard,#GayPride #Sandyland live! June 8n https://t.co/xKFMpLZr9x +06/02/2018,Comedians,@SandraBernhard,happy birthday Andy here's to a new fabulous decade filled with fun love and adventures xo sandy https://t.co/2WPzxQVt2e +06/01/2018,Comedians,@SandraBernhard,Thank you Chelsea for rerouting this conversation back to what matters brilliant woman https://t.co/GPdQpbD9OF +06/30/2018,Comedians,@BillyCrystal,Cool! Where did yu get that? https://t.co/9nAjPYKxEW +06/30/2018,Comedians,@BillyCrystal,Thanks Scott- it’s my fav.#isaw https://t.co/LwazADjSQh +06/29/2018,Comedians,@BillyCrystal,"RT @ShaunKing: Of course @realDonaldTrump has endangered American journalists. + +He frequently says we are ""the enemy"" and the ""greatest thr…" +06/27/2018,Comedians,@BillyCrystal,RT @SenWarren: Mitch McConnell should follow the Mitch McConnell rule. Let the American people have a say when women’s health and equal rig… +06/27/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Anthony Kennedy to retire from Supreme Court. Let’s pray to God Putin appoints someone reasonable. +06/17/2018,Comedians,@BillyCrystal,Have a Monster Father’s Day! Disneyland I’ve got my eye on you.! https://t.co/u3HdVvbwXX +06/17/2018,Comedians,@BillyCrystal,RT @ShaunKing: Generations from now we will be talking about the awful camps and jails and detention centers where immigrant children were… +06/17/2018,Comedians,@BillyCrystal,RT @SenWarren: Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice heard and… +06/12/2018,Comedians,@BillyCrystal,Please watch! https://t.co/v73HK86FMS +06/12/2018,Comedians,@BillyCrystal,"RT @ShaunKing: The notion that this is irrelevant is outrageous. + +The man literally cheated and lied on all three of his wives. He broke h…" +06/12/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Trump was so pleased with his meeting with Kim Jong Un that he announced the United States will now hold peace talks with… +06/11/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: I really hope Trump makes friends with Kim because everyone else wants us dead. +06/11/2018,Comedians,@BillyCrystal,RT @SenSanders: I find it very strange that President Trump has such a hard time getting along with the leaders of the world's major democr… +06/10/2018,Comedians,@BillyCrystal,"RT @Amy_Siskind: Republicans in Congress- if you remain silent after yesterday’s debacle, you are truly cowards and traitors to our democra…" +06/10/2018,Comedians,@BillyCrystal,"RT @SenJohnMcCain: To our allies: bipartisan majorities of Americans remain pro-free trade, pro-globalization & supportive of alliances bas…" +06/09/2018,Comedians,@BillyCrystal,"Hey kid, “Vats Nu”? https://t.co/oWIxBInDZZ" +06/09/2018,Comedians,@BillyCrystal,That is from “Midnight Train to Moscow” HBO special. First American comedian to play the Soviet Union. #proud https://t.co/ykwMq5MocD +06/09/2018,Comedians,@BillyCrystal,RT @paulshipper: Latest artwork for @shoutfactory just dropped! I absolutely love this movie #CitySlickers! Big thanks to @billycrystal for… +06/06/2018,Comedians,@BillyCrystal,"RT @MMFlint: So he cancels the SuperBowl party at the WH, disinvites the PhiladelphiaEagles, says he’s holding a patriotic ceremony instead…" +05/30/2018,Comedians,@BillyCrystal,"RT @MMFlint: So @therealroseanne woke up this morning & posted hateful, slanderous tweets about me, Valerie Jarrett, George Soros & Chelsea…" +05/28/2018,Comedians,@BillyCrystal,Goat https://t.co/3aMI0ddaCu +05/25/2018,Comedians,@BillyCrystal,RT @jayleno: Taking my pal @BillyCrystal in Muhammad Ali's 1976 Alfa Romeo Spider. #JayLenosGarage https://t.co/uSWtamMMdC +05/25/2018,Comedians,@BillyCrystal,Had great time with Jay tonight at 10pm on@lenosgarage on CNBC #ali’s car +05/22/2018,Comedians,@BillyCrystal,"RT @LenosGarage: ""The Greatest"" boxer and sports car of all time. + +Don't miss Muhammad Ali's 1976 Alfa Romeo Spider on #JayLenosGarage Thur…" +05/09/2018,Comedians,@BillyCrystal,RT @BarackObama: There are few issues more important to the security of the US than the potential spread of nuclear weapons or the potentia… +05/09/2018,Comedians,@BillyCrystal,RT @AlbertBrooks: Breaking News: Trump to back out of Louisiana Purchase. +05/01/2018,Comedians,@BillyCrystal,RT @HenryMaxwellCHI: Wow @FXNetworks really dropped the ball with “The Comedians” @BillyCrystal and @joshgad are so funny. That’s show was… +04/29/2018,Comedians,@BillyCrystal,"RT @baseballhall: 17 years ago today, 61* made its debut. Thanks to donations from director @BillyCrystal and actor @ThomasJane, the movie'…" +04/19/2018,Comedians,@BillyCrystal,Please vote— this is for Don. https://t.co/IfLKeCr2Mm +04/19/2018,Comedians,@BillyCrystal,〈( ^.^)ノCheering for Dinner with Don Rickles in 2nd place in #Webby People’s Voice! RT + VOTE: https://t.co/pNLBbybO1Rヽ(^。^)丿 +04/05/2018,Comedians,@BillyCrystal,RT @BetteMidler: #DreamStillLives https://t.co/H62t8Psyzo +04/05/2018,Comedians,@BillyCrystal,my dream is that all the hate and violence we have seen can someday become compassion and acceptance.… https://t.co/xsIhvnIzCk +04/04/2018,Comedians,@BillyCrystal,https://t.co/Gfks9KcJpW +03/30/2018,Comedians,@BillyCrystal,“Have the unleavened experience of a lifetime”. Your friend Joe Franklin #snl84-85 https://t.co/tiAP67kcAx +03/24/2018,Comedians,@BillyCrystal,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Comedians,@BillyCrystal,Proud to march in solidarity. https://t.co/S7nikUz6km +03/17/2018,Comedians,@BillyCrystal,Your birthday tweets are great! Much appreciated. +03/14/2018,Comedians,@BillyCrystal,"Today is my 70th b’day. +Sending you my love and thanks for all the years of your support." +02/24/2018,Comedians,@BillyCrystal,"RT @MichaelSteele: The president and others promoting arming teachers are delusional. Wake the hell up people. There was a uniformed, armed…" +02/24/2018,Comedians,@BillyCrystal,RT @Emma4Change: Excuse me while I Sob https://t.co/ZDJCivwiEq +02/24/2018,Comedians,@BillyCrystal,"RT @SenBillNelson: Instead of listening to students & parents, Gov. Scott’s plan bows to the NRA’s demands. It does not expand criminal bac…" +02/23/2018,Comedians,@BillyCrystal,More Trump lies. https://t.co/EPmQ2mnSm1 +02/15/2018,Comedians,@BillyCrystal,RT @JamieOGrady: This cartoonist deserves an award. https://t.co/GZ6SQZHAJ4 +02/15/2018,Comedians,@BillyCrystal,"RT @AlbertBrooks: Another tragic school shooting. 18 just this year! Hey Congress, your thoughts and prayers aren't working. Try somethin…" +02/10/2018,Comedians,@BillyCrystal,@derek_del #inandofitself is the show you must experience . Saw it last night and it has stayed with me. +02/10/2018,Comedians,@BillyCrystal,"@derek_del This show is remarkable. +Magical, mystifying and ultimately moving as well. A great audience experience." +02/10/2018,Comedians,@BillyCrystal,RT @AlanZweibel: Had a great time (again) being entertained and totally mystified by Derek Delgaudiio @derek_del and his amazing show #inan… +02/02/2018,Comedians,@BillyCrystal,"@BaileeMadison @1010WINS Mr? That was my father. Love watching you grow B. +Billy" +02/02/2018,Comedians,@BillyCrystal,@1010WINS @BaileeMadison Thank you B... meant a lot to me. +01/09/2018,Comedians,@BillyCrystal,"RT @NickLaparra: America, your President—you know, the #MAGA guy—doesn’t know all the words to our national anthem. This is a gross display…" +12/29/2017,Comedians,@BillyCrystal,"RT @nytimes: President Trump cast doubt on the reality of climate change, but he appeared unaware of the distinction between weather and cl…" +12/16/2017,Comedians,@BillyCrystal,"RT @SenWarren: The FCC just voted to hand control of the internet over to giant internet companies, but this isn’t over. Congress must step…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: This is important. + +Mitch McConnell, who my late grandmother in Kentucky despised, just announced that he is going to refus…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Tonight was a complete repudiation if Donald Trump. + +He won Alabama by 28% last year. +Tonight Roy Moore lost by 2%. + +A 30…" +12/13/2017,Comedians,@BillyCrystal,RT @ShaunKing: The @NYDailyNews cover tomorrow https://t.co/oxtgKsgJ6O +12/13/2017,Comedians,@BillyCrystal,RT @BetteMidler: #DougJones has won the Alabama Senate seat vacated by #JeffSessions. I believe he will bring not just honor and pride to… +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Now that Republicans just lost a Senate seat in Alabama, think of just how outrageous it was for the Republican Party to bac…" +12/13/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Grateful that Doug Jones ended his speech tonight w/ this: “As Dr. King said, the moral arc of the universe is long but it b…" +12/13/2017,Comedians,@BillyCrystal,RT @ShaunKing: Looking at the numbers and young white people in Alabama rejected Roy Moore even though most of their parents and grandparen… +12/13/2017,Comedians,@BillyCrystal,What are you going to tweet now potus? https://t.co/Keobk4TBUk +12/13/2017,Comedians,@BillyCrystal,RT @AP: BREAKING: Democrat Doug Jones won election to the U.S. Senate from Alabama in a sharp blow to President Trump that narrows the GOP’… +12/11/2017,Comedians,@BillyCrystal,RT @nowthisnews: This father with a fatal disease could die if the GOP tax bill is passed — watch the emotional plea he makes to his senato… +12/04/2017,Comedians,@BillyCrystal,"RT @ShaunKing: To be clear, Trump has NO PROBLEM eliminating monuments. + +Strange how vehemently he defended Confederate monuments and how…" +12/02/2017,Comedians,@BillyCrystal,"RT @CharlesMBlow: Wait, WHAT?!!! https://t.co/DJZmPn8SW1 https://t.co/HKCGyrcYvg" +12/02/2017,Comedians,@BillyCrystal,RT @ShaunKing: Flynn did not plead guilty to lying to Pence or Trump. He plead guilty to lying to the FBI and for lying on multiple forms.… +11/29/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Yesterday North Korea launched a missile that went over 2,000 miles into outer space - fully capable of hitting the United S…" +11/29/2017,Comedians,@BillyCrystal,"RT @TheMuslimGuy: Dear @Twitter... + +By tweeting Anti-Muslim conspiracy theory videos which are fake... + +@RealDonaldTrump has violated your…" +11/29/2017,Comedians,@BillyCrystal,RT @RhonddaBryant: Donald Trump is inciting religious hatred in this country by retweeting the convicted racist Jayda Fransen's vile views.… +11/29/2017,Comedians,@BillyCrystal,Had a great time on @ModernFam watch it Wednesday night https://t.co/585KmmVa5F +11/25/2017,Comedians,@BillyCrystal,RT @seanhannity: I call total Bullshit on Time. Answer the question; did you or did you not call the WH and say @realDonaldTrump @POTUS was… +11/25/2017,Comedians,@BillyCrystal,"RT @ShaunKing: In all of my life, I don't think I have ever heard of a human being so cravenly desperate for praise and adulation like Dona…" +11/20/2017,Comedians,@BillyCrystal,Had great time with @rejectedjokes Ben Schwartz on @We are Unsatisfied our new film. He's hilarious. Excited about our pairing. +11/20/2017,Comedians,@BillyCrystal,"RT @djkevlar: Here’s a first behind the scenes look at #WeAreUnsatisfied, with @mattratner directing @BillyCrystal & @rejectedjokes. #VeryS…" +11/20/2017,Comedians,@BillyCrystal,Paul Reiser has a funny new show on Hulu. Here's the trailer. https://t.co/eWNzRN1IXE +10/24/2017,Comedians,@BillyCrystal,"Sad to hear of the passing of Robert Guillaume. He was a great support to me on ""Soap"". +Great timing, charisma and class. Rest in Peace." +10/18/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Trump said he spoke to every military family who lost a loved one. + +Turns out half have never heard from him. + +A blatant li…" +10/17/2017,Comedians,@BillyCrystal,"RT @DeliliaOMalley: .@realDonaldTrump When my brother was killed, Pres Bush listened while I screamed at him & then held me as I sobbed, yo…" +10/14/2017,Comedians,@BillyCrystal,RT @jilevin: What's he on? https://t.co/9dywxdwZ1i +10/14/2017,Comedians,@BillyCrystal,"RT @SenWarren: Cutting off payments that help low-income families afford health insurance is petty, cruel, & just plain dumb." +10/14/2017,Comedians,@BillyCrystal,"RT @SenWarren: Responsible nations stick to their agreements. Responsible Presidents put America's safety first. If this President won't, C…" +10/13/2017,Comedians,@BillyCrystal,"RT @pierre: This direct statement, which plainly repudiates the uncontroversial First Amendment, is evidence of his abandonment of his oath…" +10/13/2017,Comedians,@BillyCrystal,RT @ChristophGolden: Sheriff upset about his slaves being freed. Holy fucking shit. https://t.co/rZWmoZdO2g +10/12/2017,Comedians,@BillyCrystal,Amazing comeback. So happy for all my friends with the Yankees. https://t.co/yqjo2KTO6k +10/12/2017,Comedians,@BillyCrystal,"RT @BetteMidler: $242,000 to fly to Indiana to leave a football game? Are they fucking nuts??!?? https://t.co/XfisGx2ZqD" +10/11/2017,Comedians,@BillyCrystal,"RT @ShaunKing: We should never forget this. He should be asked about it at every press conference. + +Powerful men must not be given passes…" +10/11/2017,Comedians,@BillyCrystal,"The EPA says climate change is not one of their priorities In their new four year plan. +Scott Pruitt is a menace to our planet." +10/10/2017,Comedians,@BillyCrystal,My brother wrote a beautiful book about his recovery from heart surgery. https://t.co/QlcVLVHBBy +10/10/2017,Comedians,@BillyCrystal,"RT @SI_PeterKing: Pence2 +So @VP took a taxpayer-funded airplane knowing he’d be walking out right after the anthem to protest. Swell use of…" +10/07/2017,Comedians,@BillyCrystal,"RT @ShaunKing: Also, Stephen Paddock KILLED COPS. The Blue Lives Matter crew has said NOTHING. https://t.co/tkzIlGed8H" +10/06/2017,Comedians,@BillyCrystal,Looking forward to talking with @billmaher tonight on HBO +09/30/2017,Comedians,@BillyCrystal,"RT @SenWarren: The definition of ""poor leadership"" is sitting at your golf club while millions of US citizens beg for your help, @realDonal…" +09/27/2017,Comedians,@BillyCrystal,One of the funniest comedians ever. This is a classic. Take a knee and listen. https://t.co/fyLsnutWpH +09/25/2017,Comedians,@BillyCrystal,https://t.co/IEp72InOYt +09/25/2017,Comedians,@BillyCrystal,"RT @Variety: #ThePrincessBride turns 30: @RobReiner, @RealRobinWright, @BillyCrystal dish about making the cult classic https://t.co/0KNmQV…" +09/25/2017,Comedians,@BillyCrystal,RT @reelhoneymag: THE PRINCESS BRIDE turns 30 today! What's your favourite line from the cult classic? #PrincessBride30th (Photo: @EW) http… +09/25/2017,Comedians,@BillyCrystal,I had the honor of sitting with Don Rickles shortly before he passed away. https://t.co/SoCuS5ZKAq +09/20/2017,Comedians,@BillyCrystal,RT @AlbertBrooks: At the U.N. Trump threatened to totally destroy North Korea. And then everybody had lunch. +09/20/2017,Comedians,@BillyCrystal,RT @SenFranken: Help sound the alarm. New GOP health care bill to repeal the ACA is gaining steam. My response: https://t.co/2RaFSX5ssp +09/13/2017,Comedians,@BillyCrystal,Soap debuted 40 yrs ago today! https://t.co/UKWZN5Qf4L +09/12/2017,Comedians,@BillyCrystal,Join me @8pmET as the nation comes together to help those affected by Hurricane Harvey and Irma. Call 1-800-258-6000 or text GIVE to 80077 +09/04/2017,Comedians,@BillyCrystal,RT @tinyrevolution: Kudos to humanity for manuevering ourselves into a situation where all our lives depend on the wisdom of Kim Jong-un an… +09/03/2017,Comedians,@BillyCrystal,RT @ShaunKing: SHAME on the Salt Lake City Police Department for arresting and assaulting this nurse. She was following policy to protect h… +08/24/2017,Comedians,@BillyCrystal,"@thealisonmann @RealMegRyan @robreiner I love it! Next, "" Baby Fish Mouth""" +08/11/2017,Comedians,@BillyCrystal,3 years later and words still don't come easily. Think of Robin today and smile. +07/30/2017,Comedians,@BillyCrystal,RT @attn: President Trump should listen to this ex-cop about police brutality. https://t.co/kGay8ve8zR +07/30/2017,Comedians,@BillyCrystal,@ClaireSmith became the first woman sportswriter and the fourth African American voted into the Baseball Hall of Fame. Bravo. +07/28/2017,Comedians,@BillyCrystal,@Shananighan @JohnMcCain Absolutely -- admire people who stand up for what is good for the country and won't be bullied. +07/28/2017,Comedians,@BillyCrystal,Great respect to @JohnMccain who put country over party. +07/26/2017,Comedians,@BillyCrystal,RT @SenFranken: Paul Wellstone said politics is about improving people's lives. I urge GOP colleagues to reject health care plans that woul… +07/24/2017,Comedians,@BillyCrystal,@JimmyKimmelLive is repeating the show I did last week this coming Thursday. https://t.co/fWXqn0CT08 +07/24/2017,Comedians,@BillyCrystal,"RT @RealDanielStern: Felt inspired to write something when I heard about the passing of my friend, John Heard... https://t.co/zi7gdQZYOa" +07/16/2017,Comedians,@BillyCrystal,Looking forward to being on @JimmyKimmelLive Monday night. Been on a break since my tour ended. Time to get back to work. +06/30/2017,Comedians,@BillyCrystal,@IndecentBway the greatest bway experience I have ever had! Run to see it! https://t.co/jNaLXYBtBI +06/02/2017,Comedians,@BillyCrystal,RT @BernieSanders: With or without the support of Trump and the fossil fuel industry we must transition rapidly away from fossil fuels to r… +06/02/2017,Comedians,@BillyCrystal,"RT @MarkRuffalo: Shame on you @realDonaldTrump as people lose their lives, homes and economic opportunities to your childish refusal to hon…" +06/01/2017,Comedians,@BillyCrystal,RT @MMFlint: America First! Earth Last! #ParisClimateAccord +06/01/2017,Comedians,@BillyCrystal,Sending love to my dear friend @AlanZweibel who lost his sister Fran today. +05/14/2017,Comedians,@BillyCrystal,"@BillyJoel and Pink 2nite DodgerStadium I opened for BJ in '74 +One of my first gigs. +Awesome show tonight. https://t.co/hls1mI3gDI" +05/13/2017,Comedians,@BillyCrystal,RT @AllanMargolin: #Climate Movie Meme: Miracle Max Knows We MUST Storm The Castle Of Climate Denial - @RisingSign @rob_bieber @rosieperezb… +05/02/2017,Comedians,@BillyCrystal,"Tour ended last night thanks to all the awesome audiences. Loved working for you. +Nice to have a night off. bc https://t.co/C1qKmMMFP3" +04/28/2017,Comedians,@BillyCrystal,Look where I am https://t.co/zQjLtdvvlq +04/12/2017,Comedians,@BillyCrystal,Billy Crystal Remembers Don Rickles: ‘There Was No One Like Him’ https://t.co/U4b6DRP1Ks via @variety +04/06/2017,Comedians,@BillyCrystal,"Don Rickles has passed away. +A giant loss." +03/27/2017,Comedians,@BillyCrystal,Excited to be at the State Theatre Wednesday Nite in Cleveland.@KingJames are you in town? +03/18/2017,Comedians,@BillyCrystal,"Sorry to my fans in Philly for postponing my show dates. +Fighting a nasty flu. New dates are April 14-15." +02/27/2017,Comedians,@BillyCrystal,Amazing ending. Wish that had happened on Election Day. +02/27/2017,Comedians,@BillyCrystal,Loved what you did Jimmy! +02/25/2017,Comedians,@BillyCrystal,Can't wait for the show tonight at the Majestic Theatre in San Antonio! https://t.co/jmfNbh6afk +02/21/2017,Comedians,@BillyCrystal,"Honoured that Icon @Carol Burnett came to our show! +San Antonio next stop Friday. https://t.co/SdrcLra2qP" +02/21/2017,Comedians,@BillyCrystal,https://t.co/OoqDP56hUj check this out +02/10/2017,Comedians,@BillyCrystal,"Bay Area! Don’t miss me at @foxoakland on 3/1 doing what I love to do best, make you laugh! Get tickets at https://t.co/0Qhwany9Mt" +02/02/2017,Comedians,@BillyCrystal,RT @RealDanielStern: Mitch and Phil are finally reunited... at #Westworld! What could possibly go wrong? @funnyordie @BillyCrystal https://… +02/02/2017,Comedians,@BillyCrystal,RT @ptolemy: City \W/ Slickers! me and @Hemsdog take on two BAD hombres... (@RealDanielStern @BillyCrystal... comedy idols!) https://t.co/… +02/02/2017,Comedians,@BillyCrystal,RT @AngelaSarafyan: My dream came true when I got to work with @BillyCrystal and @RealDanielStern for a brief moment as Clementine in this… +02/02/2017,Comedians,@BillyCrystal,"Mitch & Phil from 'City Slickers' are back & they're in @WestworldHBO! Thanks, @funnyordie & @RealDanielStern! https://t.co/afiqigFYAb" +02/01/2017,Comedians,@BillyCrystal,Clearwater was fantastic last night. Orlando tonight. +01/28/2017,Comedians,@BillyCrystal,"RT @jerryspringer: Enjoyed seeing @BillyCrystal last night...the consummate entertainer...and gentleman. Oh, and did I say funny? https://t…" +01/25/2017,Comedians,@BillyCrystal,"RIP Mary Tyler Moore. +Love is all around you..." +01/24/2017,Comedians,@BillyCrystal,"3 new shows on sale Fri! +Oakland Fox Theatre 3/1 +Wallingford Ct Toyota Oakdale Theatre 3/25 +Atlanta Fox Theatre 4/27. See you there!" +01/24/2017,Comedians,@BillyCrystal,"RT @OakdaleTheatre: JUST ANNOUNCED -- @BillyCrystal on Saturday, March 25th! Tickets go on sale next Friday (1/27) at 10AM: https://t.co/la…" +01/24/2017,Comedians,@BillyCrystal,"RT @NelsonHicksWSB: The one and only @BillyCrystal returns to Atlanta at @TheFoxTheatre on Thursday, April 27. https://t.co/nTbUf0u2tc" +01/23/2017,Comedians,@BillyCrystal,"Excited to perform in Jacksonville Wednesday Night at the Times Union Center. Miami and W Palm have been great, so Jacksonville….no pressure" +01/09/2017,Comedians,@BillyCrystal,"RT @ChicagoTheatre: Due to overwhelming demand, @BillyCrystal has added a 2nd show at The Chicago Theatre on 4/2! Tix on-sale 1/13. +https:…" +12/31/2016,Comedians,@BillyCrystal,A New Year's wish for a peaceful and healing new year. Let's all work together to make this world the best that it can be. +12/27/2016,Comedians,@BillyCrystal,@TomMuench1 so shocked to hear this! Heard from him a few weeks ago. +12/27/2016,Comedians,@BillyCrystal,RT @mrgosling: A legend in Star Wars and hilarious in When Harry Met Sally. Another sad loss... #whenharrymetsally #StarWars #ripcarrie #mo… +12/27/2016,Comedians,@BillyCrystal,@Carrie Fisher's loss is devastating. Her wit-her inspiration to those with mental illness was monumental. Loved working on WHMS with her. +12/15/2016,Comedians,@BillyCrystal,Sad to hear about the loss of Craig Sager a real champion. https://t.co/5fQnN1m8D4 +12/15/2016,Comedians,@BillyCrystal,"RT @jarrodbcecil: Homemade coloring sheets, featuring Mike Wazowski from @DisneyPixar Monsters Inc! #drawsomething #freehand @billycrystal…" +12/15/2016,Comedians,@BillyCrystal,RT @Future_Beat: MARYLAND: presale for @BillyCrystal at @MGMNatlHarbor on April 29th & 30th is happening now! Purchase here: https://t.co/… +12/09/2016,Comedians,@BillyCrystal,"Happy Birthday to Kirk Douglas who is 100 yrs old today. +You will always be Spartacus!" +12/07/2016,Comedians,@BillyCrystal,"RT @latelateshow: Who's got ten fingers and a seat on the #LateLateShow couch tonight? Mr. @BillyCrystal, that's who. https://t.co/FZwm4xR2…" +12/07/2016,Comedians,@BillyCrystal,Great fun with @JKCorden tonight https://t.co/UqeuXtcEbP +12/06/2016,Comedians,@BillyCrystal,Going to have a great time tonight with @jkcorden +12/06/2016,Comedians,@BillyCrystal,Looking forward to being on @latelateshow tonight with @jamescordenreal +12/02/2016,Comedians,@BillyCrystal,"RT @TheRealPaolo_B: - I'm having some of the Academy over for dinner. Care to join me? +- Yes, anytime +@BillyCrystal @AnthonyHopkins #Academ…" +11/24/2016,Comedians,@BillyCrystal,Happy Thanksgiving to all. +11/18/2016,Comedians,@BillyCrystal,"RT @JennaCNguyen: Hi @BillyCrystal, can you please retweet to help us get books like yours in the hands of children across the US? #thegrea…" +11/17/2016,Comedians,@BillyCrystal,"Excited to be on @JimmyKimmelLive 2nite! +Last time was cool https://t.co/pVrfQjYPg3 #prop64" +11/15/2016,Comedians,@BillyCrystal,RT @Variety: Congrats @billycrystal! The comedian was honored at Women's Guild @CedarsSinai Annual Gala. https://t.co/5kJA9W2w1x https://t.… +11/15/2016,Comedians,@BillyCrystal,"RT @RuthEckerdHall: Don't miss your chance to see @BillyCrystal for his very first performance in the Tampa Bay area Tue, Jan 31! https://t…" +11/14/2016,Comedians,@BillyCrystal,Excited to start touring this show. 30 cities starting in Miami Jan.21. https://t.co/0gOxi0Ej29 +10/17/2016,Comedians,@BillyCrystal,I am hosting this event tonight that is being live streamed tonight.https://t.co/o8FGakw4WK +10/03/2016,Comedians,@BillyCrystal,https://t.co/EypUEZ5Zhc +09/12/2016,Comedians,@BillyCrystal,@chancetherapper do you want the President of FX's phone number? +09/12/2016,Comedians,@BillyCrystal,RT @gregorcorp: @mrbenwexler 👏👏👏 https://t.co/GoDAsgzgyJ +09/09/2016,Comedians,@BillyCrystal,RT @natecallens: I just finished @marcmaron's latest @WTFUpdate podcast w/ @BillyCrystal. I didn't want it to end! Check it out here: https… +09/09/2016,Comedians,@BillyCrystal,RT @guybannister: Great episode this week from @marcmaron with @BillyCrystal https://t.co/E4cTPVeXIj +09/08/2016,Comedians,@BillyCrystal,Great time talking with @MarcMaron https://t.co/3OMTqPqDON +09/08/2016,Comedians,@BillyCrystal,RT @MediaREDEF: WTF with Marc Maron: Episode 740 -- Billy Crystal (@marcmaron @BillyCrystal - @WTFpod) https://t.co/uatA567rVF +09/08/2016,Comedians,@BillyCrystal,RT @JayHemsworth: Not in on this podcast series @WTFpod ? This is a gr8 1 2 start U off #Comedian #interview @BillyCrystal @marcmaron https… +09/08/2016,Comedians,@BillyCrystal,RT @kevin_joachim1: @BillyCrystal Please retweet to help my friend with ALS. Every $ will help her family. Thank you Billy. https://t.co/H… +09/08/2016,Comedians,@BillyCrystal,RT @marcmaron: Today is @BillyCrystal day on @WTFpod! Legend! Great talk! Do it up! https://t.co/TRZkCfr7QU +08/29/2016,Comedians,@BillyCrystal,Gene Wilder was a giant of comedy. His legacy of films is inspiring. A true genius.. +08/22/2016,Comedians,@BillyCrystal,So proud of USA bball team..Deandre was awesome. https://t.co/DAQ00udVQW +08/12/2016,Comedians,@BillyCrystal,"RT @Rockettes: #TBT to sharing the @RadioCity stage with @BillyCrystal, @WhoopiGoldberg and the late, great #RobinWilliams in 1990. https:/…" +08/04/2016,Comedians,@BillyCrystal,Thank you Australia! This tour was one of the best times I've ever had. Sorry it's over. bc https://t.co/G4NCj7yYVE +08/02/2016,Comedians,@BillyCrystal,RT @TessNobile: I laughed. I cried. I now reflect. One of my favourite life moments. Thank you @BillyCrystal #beyondthewords https://t.co/c… +08/02/2016,Comedians,@BillyCrystal,"RT @TEGDAINTY: .@BillyCrystal Melbourne Live Review: ""Laughing all night long"" https://t.co/kM81wJhSxX https://t.co/7uZTDYV26x" +07/28/2016,Comedians,@BillyCrystal,"RT @DaintyGroup: .@BillyCrystal REVIEW: ""the packed house was doubled over with laughter"" https://t.co/NRSHVBj4f5 https://t.co/M2A42TMJn8" +07/24/2016,Comedians,@BillyCrystal,"Adelaide Australia tonight Perth 2morrow. +Fantastic audiences! https://t.co/prpKSitJQG" +07/19/2016,Comedians,@BillyCrystal,Thank you Brisbane! Great audiences! Auckland NZ next stop. +07/19/2016,Comedians,@BillyCrystal,"RT @twenty3group: .@BillyCrystal LIVE REVIEW: ""The best thing I've seen this year"" https://t.co/AmzfTVi314 https://t.co/l5Ymia3qCF" +07/19/2016,Comedians,@BillyCrystal,"RT @artscentremelb: ""★★★★★ As once-in-a-lifetime events go, it’s pretty impressive.” https://t.co/tOAYiywMpC + +@BillyCrystal will be on our…" +07/12/2016,Comedians,@BillyCrystal,Sydney – you’ve been fantastic! It's my last show tonight and we've released final tickets here: https://t.co/k9146lBRak +07/11/2016,Comedians,@BillyCrystal,"Now that's a crab! +Sydney has been great. Audiences sensational-wonderful people. Next show Wednesday. bc https://t.co/ZLSmyBXWRH" +07/06/2016,Comedians,@BillyCrystal,Great time at Taronga zoo in Sydney. https://t.co/o7a8HT3KlK +07/06/2016,Comedians,@BillyCrystal,Now that's a selfie https://t.co/P1FLPkLtjR +07/05/2016,Comedians,@BillyCrystal,I’ve landed in Australia! Why don’t you join me for a hilarious night of laughs? Get your tickets at https://t.co/9ve8LkbdPI +06/22/2016,Comedians,@BillyCrystal,My Adelaide show is on sale now: https://t.co/wgdviU1hcz. I’m looking forward to seeing you soon! +06/18/2016,Comedians,@BillyCrystal,"Hey Australia, I’ve added one special new show in Adelaide! Go to https://t.co/9ve8LkbdPI for all the details." +06/13/2016,Comedians,@BillyCrystal,RT @AlbertBrooks: Trump congratulates himself on being right on terrorism. That's how he responds after this horrific tragedy. Nuff said. +06/09/2016,Comedians,@BillyCrystal,"RT @thearcadeshow: The comedy City Slickers came out this day in 1991 w/ @BillyCrystal, @RealDanielStern, & won Jack Palance an Oscar. http…" +06/03/2016,Comedians,@BillyCrystal,For the greatest man I have ever known. https://t.co/OUZHVZWBHY +06/03/2016,Comedians,@BillyCrystal,Have a great retirement Joey. Miss seeing you in the finals. https://t.co/mJ1W0Qu9ou +05/30/2016,Comedians,@BillyCrystal,"@GarmanSports Mantle signed it that day and 21 yrs later I met him and he signed it again. +It was on Dinah Shore t.v show." +05/30/2016,Comedians,@BillyCrystal,60 years ago today I went to my first Yankee Game! Mickey hit homer off the old facade. Can still see it. https://t.co/lXJazBpnYV +05/25/2016,Comedians,@BillyCrystal,I’ve just added new shows in Melbourne and Sydney! Go to https://t.co/9ve8LjTCr8 for all the details. See you in July. +05/21/2016,Comedians,@BillyCrystal,RT @FallonTonight: .@BillyCrystal hasn't fully grasped modern technology yet... https://t.co/EKO0TeYNaV https://t.co/8V8gjifVn5 +05/21/2016,Comedians,@BillyCrystal,RT @KrisWilliams: This is freaking hilarious! 😂😂 https://t.co/3XrZfRxTRf @jimmyfallon @BillyCrystal Anyone else see this? +06/29/2018,Comedians,@arjbarker,@nickpahls u bet! +06/28/2018,Comedians,@arjbarker,@BetsyHodges thank you! +06/28/2018,Comedians,@arjbarker,Hello Denver!!! https://t.co/GpBEWdJZCx +06/23/2018,Comedians,@arjbarker,"@bakingnurple it’s totally fine. Like I said in the show, we don’t even know we’re taking our phone out half the time these days :)" +06/23/2018,Comedians,@arjbarker,@KBtheFirst we missed you too! :) +06/23/2018,Comedians,@arjbarker,@TomBarnardShow thanks for having us! Always great fun :) +05/21/2018,Comedians,@arjbarker,@PilsnerPodcast yeah sure I love Pilsner!! +05/18/2018,Comedians,@arjbarker,@jeetsheth thank you Jeet! +05/18/2018,Comedians,@arjbarker,Auckland! I’m home. 2 shows tonight and tomorro. Please do come along if you’re in town :) https://t.co/QXOJLNHu0H +05/17/2018,Comedians,@arjbarker,@BR4DY thank you for coming along! +05/17/2018,Comedians,@arjbarker,"@BR4DY a) as opposed to ‘figuratively this week…’? b) they didn’t eat the poor thing, only bit and shook to death." +05/03/2018,Comedians,@arjbarker,Beautiful shot! https://t.co/17vFHmMLMI +05/03/2018,Comedians,@arjbarker,@KingyDaSickC thank you! +04/21/2018,Comedians,@arjbarker,@Dhfnfkdirurndms have not! Any good? +02/21/2018,Comedians,@arjbarker,@dlean05 thank you! +02/21/2018,Comedians,@arjbarker,@HaStavrou thank you! +02/09/2018,Comedians,@arjbarker,Build your own INSANE Dog Stairs!!!: https://t.co/HuMPHNmkFt via @YouTube +02/04/2018,Comedians,@arjbarker,"Adelaide Fringe? Yes, please. :) https://t.co/dk9JM5bZdA" +02/04/2018,Comedians,@arjbarker,"Great to see you too, Pete :) https://t.co/k32gG6rdoG" +01/30/2018,Comedians,@arjbarker,"I’ll give $500 to any who calls the ‘president’ a racist during the speech (must be live, and he must hear you). #Trumpchallange" +01/26/2018,Comedians,@arjbarker,"@Alex__Briggs @ellen_briggs @GordonSouthern great meeting you, Alex! Safe travels :)" +01/21/2018,Comedians,@arjbarker,My pal Big Rob’s new album is ouuuuuuuuutttt!!! https://t.co/S3rAX32Eiy +01/11/2018,Comedians,@arjbarker,HONG KONG!!! https://t.co/I3mstO71fN +12/28/2017,Comedians,@arjbarker,The Holidays do have their ups and downs. https://t.co/HndO13itaX +12/28/2017,Comedians,@arjbarker,Ultra Shelf Party: https://t.co/ONpdGT8hOi via @YouTube +12/04/2017,Comedians,@arjbarker,"Nimbin, NSW https://t.co/1I09a01F6l" +12/01/2017,Comedians,@arjbarker,@ByClare @TheDanBarrett great restaurant huh? +11/24/2017,Comedians,@arjbarker,Land ho!! Happy to be in Sydney this weekend for 2 shows at the Stare theatre. If you’re in the… https://t.co/hSGgVr1si3 +10/27/2017,Comedians,@arjbarker,"The hilarious https://t.co/BdDodH09vE is touring oz right, don’t miss Canadas best!!" +10/25/2017,Comedians,@arjbarker,Ultra Shelf: Ultimate Garage Storage Vol 3/3: https://t.co/kQx5Kcue8C via @YouTube +10/22/2017,Comedians,@arjbarker,@mup_patricia thank u! Hope u had fun! +10/11/2017,Comedians,@arjbarker,Aussie friends don’t miss @chrisdelia when he’s here. Hilarious dude!! +09/23/2017,Comedians,@arjbarker,@aussie_abroad15 I only remember great acting all around :) see u soon! +09/14/2017,Comedians,@arjbarker,@LeonHuxtable see u there! +08/25/2017,Comedians,@arjbarker,"Sydney friends! Dont miss one of the best comedians on the planet: @_TomRhodes at the Comedy Store, Sat sept 2. https://t.co/wFwDpftuWI" +08/24/2017,Comedians,@arjbarker,Ultra Shelf: Episode 2 is here! https://t.co/JFDnqqmJuq +08/23/2017,Comedians,@arjbarker,Meme it up! #newhobby #moretocome https://t.co/fcbbcxGIGO +08/22/2017,Comedians,@arjbarker,"SPOILER ALERT +only look at my new meme if you’re caught up on GOT :)) xox arj https://t.co/nST0j8r2f7" +08/18/2017,Comedians,@arjbarker,@john_bspoke you aren’t even following me you LUN!!! +08/10/2017,Comedians,@arjbarker,@KBtheFirst @TomBarnardShow @AshleyJudd didn’t strike me as inappropriate:) hope all well! Good to see the gang! +08/06/2017,Comedians,@arjbarker,@therealhansds dang it! Ok thank u :) +08/05/2017,Comedians,@arjbarker,@therealhansds @hardwick @midnight did I get it!? +08/04/2017,Comedians,@arjbarker,@therealhansds that’s big! +08/04/2017,Comedians,@arjbarker,Yes! https://t.co/U997yLH6Cc +08/01/2017,Comedians,@arjbarker,MINNEAPOLIS here I come :) ACME all week with @tonycamin who’s onboard? +07/26/2017,Comedians,@arjbarker,@ItsTheBrandi great! See u soon :) +07/25/2017,Comedians,@arjbarker,@ocularnervosa I see :) thanks! +07/25/2017,Comedians,@arjbarker,@ocularnervosa @midnight how come? It wasn’t the last episode? +07/25/2017,Comedians,@arjbarker,@mustlovekittehs thank u! +07/22/2017,Comedians,@arjbarker,This was a fun day :) https://t.co/fjVE2eGS96 +07/21/2017,Comedians,@arjbarker,Can they be as awesome as the first night audience was? I hope so :)) https://t.co/dMQLilFccr +07/21/2017,Comedians,@arjbarker,Thanks Steve!! You kilt it!! :) https://t.co/cxzXAJq3py +07/20/2017,Comedians,@arjbarker,Shows start tonight in Montreal :) https://t.co/LNwSiOG5is +07/17/2017,Comedians,@arjbarker,@JesseFernandez @Brav3NewAmerica thanks Jesse! Enjoy your work too :) +07/15/2017,Comedians,@arjbarker,Only two more shows in the 6 #DrakeCountry https://t.co/AA1OQewRI8 +07/15/2017,Comedians,@arjbarker,@luiscoderque thanks Luis nice to meet u! +07/13/2017,Comedians,@arjbarker,On Comedy Central tonight :) https://t.co/FZnyUCJqOh +07/13/2017,Comedians,@arjbarker,@pennjillette great to work with you again after a few years :) best for your show tonight! +07/13/2017,Comedians,@arjbarker,Great to see you guys! When does our episode air? TONIGHT!! https://t.co/J58nxvhUCu +07/11/2017,Comedians,@arjbarker,@HotTub_Show thanks for having me that was lots of fun :) +07/10/2017,Comedians,@arjbarker,Toronto this weekend!! https://t.co/EEQOsJshnl +07/03/2017,Comedians,@arjbarker,@CobbsComedyClub pleasure! Thank you too :) see you next year! Xo +06/30/2017,Comedians,@arjbarker,I shaved before the show I promise!! https://t.co/Q0dD2294eu +06/29/2017,Comedians,@arjbarker,SF shows!! https://t.co/Ee1Qh3xOVw +06/27/2017,Comedians,@arjbarker,Sure why not! https://t.co/a0dJF16BVR +06/26/2017,Comedians,@arjbarker,SF I’m comin home! https://t.co/NuHVRAd17A +06/26/2017,Comedians,@arjbarker,Bethlehem PA Show :) https://t.co/UGaFaMgsPW +06/25/2017,Comedians,@arjbarker,Glad to hear. He’s a great dude!! Hope you and whole family are very well! https://t.co/i3K5GCvZTi +06/25/2017,Comedians,@arjbarker,@DustinCrandell it was a very last minute thing #popupshow +06/24/2017,Comedians,@arjbarker,Portland Show tonight :) https://t.co/bXtr1ylQkZ +06/24/2017,Comedians,@arjbarker,See you soon Holmes https://t.co/ejMdrSrC6j +06/23/2017,Comedians,@arjbarker,@willh21 thank you will! +06/22/2017,Comedians,@arjbarker,@Walshy thanks Dave see u soon! +06/22/2017,Comedians,@arjbarker,The Shpanthem!!!! https://t.co/mRvrnR4uw0 +06/17/2017,Comedians,@arjbarker,Seattle! I love you! Hope to see you :) https://t.co/MUzn6zNCXf +06/16/2017,Comedians,@arjbarker,See u there! https://t.co/2BckkgbEbr +05/29/2017,Comedians,@arjbarker,Lookout Toronto! https://t.co/yGg2yRrm0k +05/28/2017,Comedians,@arjbarker,Vancouver show! https://t.co/8ruBnDZFl5 +05/17/2017,Comedians,@arjbarker,Haha https://t.co/gxc6IUgW8Z +05/14/2017,Comedians,@arjbarker,Vancouver. Yes! https://t.co/7GKJsOG0eo +05/11/2017,Comedians,@arjbarker,"Melb! Come have a fun night and support Big Bros & Big Sis of Australia, a great org :) https://t.co/iTGK2HVFX2" +05/10/2017,Comedians,@arjbarker,@moniquesavin dan Dion thank you!! +05/09/2017,Comedians,@arjbarker,Toronto here I come https://t.co/DHfUUP578O +05/06/2017,Comedians,@arjbarker,The owners came and got him! Hope they more careful in the future 😬 +05/06/2017,Comedians,@arjbarker,Sydney Found Dog: Found this German Shepard wandering around Kent st in The Rocks alone and no id. Pls RT https://t.co/duwVTUNqUz +05/05/2017,Comedians,@arjbarker,Melbourne! This is a fun night for a great cause :) https://t.co/YpOJO0DO9C +05/05/2017,Comedians,@arjbarker,Baltimore here I come 😬 https://t.co/69cS5WzWzL +04/23/2017,Comedians,@arjbarker,"Waiheke Island, NZ https://t.co/JRqynn1ezE" +04/20/2017,Comedians,@arjbarker,"It’s true. I have new, informative web series. Enjoy! https://t.co/uth1jszN0h" +04/18/2017,Comedians,@arjbarker,Bay Area here I come! https://t.co/3Gi8Nnou8N +04/11/2017,Comedians,@arjbarker,Vancouver! https://t.co/QATrBVVayf +04/10/2017,Comedians,@arjbarker,Thank you Joanne :) https://t.co/0Pjjqu0ZCe +04/10/2017,Comedians,@arjbarker,@Defender1995 what’s that? +04/09/2017,Comedians,@arjbarker,"Lego Tower St Kilda, shot thru uber window #nofilter #organic https://t.co/7LzayJ4a9L" +03/30/2017,Comedians,@arjbarker,RT @ColumbusTheatre: JUST ANNOUNCED - @arjbarker on July 5th! Tickets on sale now at https://t.co/levlnljtfo . +03/26/2017,Comedians,@arjbarker,@AusBreweryTours good to meet you guys! +03/23/2017,Comedians,@arjbarker,@kinggizzardband thanks for awesome show!! https://t.co/nu1vsBH4X1 +03/23/2017,Comedians,@arjbarker,Shows in Ballina and Cairns this weekend. Then onto Melbourne! #Organic https://t.co/gWKJViJvYf xxx +03/20/2017,Comedians,@arjbarker,@markakaboz don’t think so :( one day tho! +03/19/2017,Comedians,@arjbarker,@squirrel_comedy we need to make new episodes!! @derriman +03/19/2017,Comedians,@arjbarker,@ComicConPod sure why not. Can Gatesy join? +03/10/2017,Comedians,@arjbarker,"@kinggizzardband comin to see you guys on 22 in melb. Can’t wait! If possible, can u please play rattlesnake? 🐍 ps congrats on new album!!" +02/15/2017,Comedians,@arjbarker,She makes me very proud and so should @AnimalsAsia be for what you do for these precious bears https://t.co/9bMVtkxR5v +01/15/2017,Comedians,@arjbarker,Yes! For one glorious weekend only :) I’ll put it on my site asap https://t.co/WC1BGXMOfR +01/10/2017,Comedians,@arjbarker,Hey man!! Are you in BC? I’m comin!! https://t.co/QXOJLNHu0H +01/09/2017,Comedians,@arjbarker,@Roger_Ca714 many thanks +01/09/2017,Comedians,@arjbarker,@Roger_Ca714 what’s his name? I had to look closely to see if you’d photoshopped that! +12/19/2016,Comedians,@arjbarker,PERTH don’t miss epic show with @mrcraigrobinson and the superb #TheNastyDelicious TONIGHT. i seen the show in melb and it’s amazing :)) +12/10/2016,Comedians,@arjbarker,@regandalyhaha classic! +12/08/2016,Comedians,@arjbarker,@AndrewGobbo you get most of the games for about 12 bucks on iOS called ‘lost treasures of infocom’ +12/08/2016,Comedians,@arjbarker,"@AndrewGobbo yes and no. I was either playing The Lurking Horror, or Enchanter. Both infocom games. As good as ever!" +12/07/2016,Comedians,@arjbarker,@cjdh87 thank you Chris! +12/07/2016,Comedians,@arjbarker,@ratebeer not at the moment. I’ll be back in jan tho! +12/03/2016,Comedians,@arjbarker,Glad to help! Well done everybody :) https://t.co/8TrgcsIenZ +12/02/2016,Comedians,@arjbarker,I’m excited! Look forward to meet you Pete :) https://t.co/FIdJ7q42po +11/28/2016,Comedians,@arjbarker,@jnelson01 thank you James! +11/23/2016,Comedians,@arjbarker,@lokie2189 I don’t think so. It’s possible tho +11/23/2016,Comedians,@arjbarker,@AshleighJade05 thank you! Hope alls well +11/19/2016,Comedians,@arjbarker,"@NickJon27328485 sure, one of these days :)" +11/17/2016,Comedians,@arjbarker,@penguinpunk 8 +11/13/2016,Comedians,@arjbarker,@xaeromarine @SarahMillican75 thank you :) +11/11/2016,Comedians,@arjbarker,@andyisyoda thank you very much! +11/11/2016,Comedians,@arjbarker,@hughp1970 thank you! +11/08/2016,Comedians,@arjbarker,All true! :) https://t.co/jRaZmSQzwd +10/26/2016,Comedians,@arjbarker,Oh Canada. Can’t wait! https://t.co/fSNnnr3NbQ +10/25/2016,Comedians,@arjbarker,@mindsight_tweet dm me +10/20/2016,Comedians,@arjbarker,Thank you guys. Lotsa fun :)) https://t.co/pw2Wz4X8ve +10/20/2016,Comedians,@arjbarker,@RoveAndSam great to see you two 😘 thanks for having me on the show! +10/18/2016,Comedians,@arjbarker,@MrSimonTaylor punchline green room? +10/08/2016,Comedians,@arjbarker,@TroyKinne great working with you Troy! Hilarious set! +10/05/2016,Comedians,@arjbarker,@tomallencomedy thank buddy! You killed it! Congrats :) +10/04/2016,Comedians,@arjbarker,"@SarahMillican75 thank you, you too! Glad I got to be on your show :)" +10/03/2016,Comedians,@arjbarker,@Iansmithcomedy you too Ian :) it was real nice thAnks! +10/02/2016,Comedians,@arjbarker,Thank you for having me in the show tonight! And for the dinner tip https://t.co/3mEzocLw28 +10/02/2016,Comedians,@arjbarker,Thank you for having me on the shows this week. Lotta fun :) https://t.co/BFgSocejhZ +09/21/2016,Comedians,@arjbarker,News to me too! I better start practicing :u Thanks Matt https://t.co/KieLBnLyNa +09/19/2016,Comedians,@arjbarker,@cam98_1 thanks cam! +09/09/2016,Comedians,@arjbarker,"My beauty treatment is nearly finished, just in time for Wagga show TONIGHT and Leeton tomoro.… https://t.co/fD3NYWQpry" +09/08/2016,Comedians,@arjbarker,Thanks for telling me! https://t.co/D53In86G5j +09/07/2016,Comedians,@arjbarker,Where's that goddamn house phone at?! https://t.co/Nktnj4lOvi +08/29/2016,Comedians,@arjbarker,@macgyverpete thanks! +08/28/2016,Comedians,@arjbarker,@macgyverpete thanks which special is it? What country you watching it in? +08/06/2016,Comedians,@arjbarker,¿ https://t.co/0Pz9e9jXN8 +07/20/2016,Comedians,@arjbarker,RT @AcmeComedyCo: Get ready to laugh because tonight we have @arjbarker @tonycamin @SayGCole 8pm show. 612-338-6393 #callnow #hotcomedy +07/19/2016,Comedians,@arjbarker,And @tonycamin !! https://t.co/2UXHodE8q9 +07/19/2016,Comedians,@arjbarker,Minneapolis! I’m stoked to be performing all this week at @AcmeComedyCo with legendary @tonycamin thru sat night! Hope to see you there :) +07/16/2016,Comedians,@arjbarker,@marnivinluan you’re welcome no prob :) +07/16/2016,Comedians,@arjbarker,@Randalroche do it :) +07/16/2016,Comedians,@arjbarker,@adamwrobinson thank u! +07/15/2016,Comedians,@arjbarker,@antitoxicalex thanks Alex. I was seriously not expecting to play a song with them! +07/14/2016,Comedians,@arjbarker,U know it https://t.co/A8W10FaLlw +07/14/2016,Comedians,@arjbarker,RT @realchillwall: Get ready to laugh #Minneapolis because @arjbarker is LIVE on July 19! Details: https://t.co/R38hhIRZ0L https://t.co/YwC… +07/10/2016,Comedians,@arjbarker,@BrianYogiDennis great meeting and working with you too Brian :) +07/09/2016,Comedians,@arjbarker,"@FunyunsNFugeez one day brother, one day. Hope alls well! Arj" +07/07/2016,Comedians,@arjbarker,#Portland what up dawg I’m doing one show at @mississippistudios this Sunday night. Hope to see you!! +07/07/2016,Comedians,@arjbarker,See you soon you beauty https://t.co/f2s8ZbwDHw +07/07/2016,Comedians,@arjbarker,Seattle come catch my show at @parlorlive with the great @tonycamin This weekend thru sat 😁 +07/07/2016,Comedians,@arjbarker,See u soon! https://t.co/dasJAmUXI9 +07/05/2016,Comedians,@arjbarker,@CobbsComedyClub thank you! Always great to see you too :) +06/28/2016,Comedians,@arjbarker,Cobbs SF this weekend :) https://t.co/2UQktxHJiV +06/28/2016,Comedians,@arjbarker,"2 of the best guys, warming up for the best show, in one of the best cities #sf… https://t.co/D3uK7DPrJx" +06/23/2016,Comedians,@arjbarker,Thank you! See u soon https://t.co/8eF0C23AxD +06/23/2016,Comedians,@arjbarker,RT @SportsGuyMike: @arjbarker joins me in studio tomorrow on The @SGMShow He'll be at @ComedyWorks Thu-Sat https://t.co/BXlCjia8vW https://… +06/23/2016,Comedians,@arjbarker,Thanks for having me on the show! https://t.co/CqMHtFwrH3 +06/23/2016,Comedians,@arjbarker,Thanks for having me on the show! https://t.co/mb9i5cgEwL +06/22/2016,Comedians,@arjbarker,I’m coming home. https://t.co/BGhbY3cvxY +06/22/2016,Comedians,@arjbarker,Hello Denver! https://t.co/orO1mvRSwN +06/17/2016,Comedians,@arjbarker,RT @changefurpaws: @arjbarker @theheraldsun @ABSCBNNews @SwannyQLD @ChinaMissionGva @okkimss @bbcchinese @PDChina @HuffPostUK https://t.co… +06/13/2016,Comedians,@arjbarker,"Soundcheck at the Wolf Trap, VA #flightoftheconchords #2016NorthAnericanTour https://t.co/kdEZ7P4ead" +06/13/2016,Comedians,@arjbarker,@faithie_g thank u! +06/13/2016,Comedians,@arjbarker,@MzKikii @AJemaineClement thank u! +06/13/2016,Comedians,@arjbarker,@ElisaBlessing thank u! +06/13/2016,Comedians,@arjbarker,@Case4Cleveland thank u! +06/13/2016,Comedians,@arjbarker,@Beuford2Beuford thank u! +06/12/2016,Comedians,@arjbarker,Wow. Cleveland audience was incredible!!!Makes you want to stay here forever. But The Road… https://t.co/sMWHe2hYcK +06/10/2016,Comedians,@arjbarker,An honor to play you :) https://t.co/1JaRiPnScn +06/10/2016,Comedians,@arjbarker,@yourenickaragon @142Throckmorton hope so! Great set too :) +06/10/2016,Comedians,@arjbarker,"Rockin crowd in Port Chester, NY as #flightoftheconchords kick off their 2016 North American… https://t.co/F57bjIs4zA" +05/23/2016,Comedians,@arjbarker,Ok drive safe brother! https://t.co/PA05r2KChH +05/22/2016,Comedians,@arjbarker,Love you Portland! https://t.co/mlUY9S8I8Y +05/20/2016,Comedians,@arjbarker,See you soon! https://t.co/WjW5pk9PKF +05/14/2016,Comedians,@arjbarker,@AlisonGrills ok fair enough. +05/14/2016,Comedians,@arjbarker,SF love #home https://t.co/pv5eXLWwCa +05/11/2016,Comedians,@arjbarker,I’m very psyched to be supporting Flight of the Conchords this summer in the states. All details at https://t.co/8a8OzUGq8D +05/09/2016,Comedians,@arjbarker,Portland! Yes! https://t.co/FAUkj8HgO6 +05/05/2016,Comedians,@arjbarker,@Pauly_Riordan @theprojecttv yeah I do actually. +05/05/2016,Comedians,@arjbarker,@LittleAussie_Me u bet +05/05/2016,Comedians,@arjbarker,@theprojecttv I said MAYBE the best city. I was careful to be diplomatic. Please don’t misquote me. My favourite city is wherever I am. +05/05/2016,Comedians,@arjbarker,@VickiWardMP @theprojecttv I didn’t actually state that. Please don’t misquote me. +05/05/2016,Comedians,@arjbarker,For the record I said Melb MAYBE the best city in Oz. And it was to set up a gag. I don’t pick faves. I enjoy everywhere I go. +05/05/2016,Comedians,@arjbarker,RT @theprojecttv: Tonight comedian @arjbarker joins us at #TheProjectTV desk! https://t.co/4LAyBoD5SL +05/01/2016,Comedians,@arjbarker,I thought that was you!!! https://t.co/hnfzuFwj9d +04/29/2016,Comedians,@arjbarker,@shootsbands thank u!! +04/29/2016,Comedians,@arjbarker,@Stormchaser__23 probably +04/28/2016,Comedians,@arjbarker,I hope I don’t end up having to explain my offshore YouTube acct. #panamapapers +04/28/2016,Comedians,@arjbarker,"@Zoe_inwondrland ok I’ll try again, thanks!" +04/28/2016,Comedians,@arjbarker,I’m interested in purchasing a last minute ticket to see Black Sabbath in Auckland tonight. Anybody got an extra? +04/22/2016,Comedians,@arjbarker,Thanks for having me on the show! Was fun :) https://t.co/deSEg4vhlm +04/20/2016,Comedians,@arjbarker,"https://t.co/377okXc6Mk +Self promoting sentence here." +06/30/2018,Comedians,@RealCarrotTop,Enjoying @FIFAWWC #soccer #worldcup ⚽️ @ Luxor Hotel and Casino https://t.co/NIArEbQAkj +06/30/2018,Comedians,@RealCarrotTop,Have you had your #VIP #CTMeetNGreet yet? Come on out tot he @LuxorLV for yours! tickets are available at the box o… https://t.co/2tE3qwLmO8 +06/30/2018,Comedians,@RealCarrotTop,"#botox at a #gasstation ? Ok FILLER... up! 💉⛽️😂 @ Las Vegas, Nevada https://t.co/pA5qDw8OYo" +06/29/2018,Comedians,@RealCarrotTop,"I know where I’m going tonight..👀🥕🔝 @ Las Vegas, Nevada https://t.co/S3CTGTrL8T" +06/27/2018,Comedians,@RealCarrotTop,Wanna escape the #vegas heat? Come on out to the @LuxorLV for the #VIP #CTMeetNGreet! #meetandgreet passes are avai… https://t.co/tekrEbWFNf +06/24/2018,Comedians,@RealCarrotTop,Bring your #SundayFunday to the @LuxorLV for the #CTMeetNGreet! #VIp #meetandgreet passes available at the box offi… https://t.co/qRiYRTSHqn +06/24/2018,Comedians,@RealCarrotTop,Wtf?.#cornhole #championships on espn ? Really??? https://t.co/wpXNrrZWO1 +06/21/2018,Comedians,@RealCarrotTop,It's the first day of #summer. Come on out to the @LuxorLV for the #CTMeetNGreet! Get yours today at the box office… https://t.co/99cHomeyRV +06/18/2018,Comedians,@RealCarrotTop,"It's Monday, Why not make the work week more fun by coming out to the #VIP #CTMeetNGreet at the @LuxorLV Tickets… https://t.co/SWhowwlBb4" +06/16/2018,Comedians,@RealCarrotTop,So great to see a #funny #friend #comic #legend… https://t.co/JzZcbTsSLU +06/16/2018,Comedians,@RealCarrotTop,😂✂️ #ponytail #dreads #dreadlocks @ Luxor Hotel… https://t.co/j1YMJVK9DD +06/15/2018,Comedians,@RealCarrotTop,What a great way to kick off your weekend with a #CTMeetNGreet at the @LuxorLV Get yours at the box office or… https://t.co/zKNprcADCi +06/14/2018,Comedians,@RealCarrotTop,Holy #tbt me and my #funny #friend Doug Doane… https://t.co/mGlu46MCFO +06/14/2018,Comedians,@RealCarrotTop,Love meeting the next generation of #fans. So… https://t.co/13Wmjh49rX +06/13/2018,Comedians,@RealCarrotTop,"Nice brisk day!🔥🔥🍳🔥🔥 @ Las Vegas, Nevada https://t.co/3VjpuCavrU" +06/12/2018,Comedians,@RealCarrotTop,True #love in #singapore . ❤️ this took time to… https://t.co/JQeBRtDoY3 +06/10/2018,Comedians,@RealCarrotTop,❤️🐾💋 @anythymelv https://t.co/EeEw7JpCEW +06/10/2018,Comedians,@RealCarrotTop,Time to shave my vegasgoldenknights #hockey… https://t.co/YnppkkO9LK +06/10/2018,Comedians,@RealCarrotTop,What a strange encounter at my #meetandgreet… https://t.co/5QEP4JxBFV +06/09/2018,Comedians,@RealCarrotTop,So awesome hanging with two great #friends and… https://t.co/hW9ahAa9ha +06/08/2018,Comedians,@RealCarrotTop,Gotta love #pottery shopping! 👀👀👀👀😂 @ Clay Arts… https://t.co/fHsR2ZeAte +06/08/2018,Comedians,@RealCarrotTop,How cute... little #bird on her #nest 🦅 @ Las… https://t.co/gkR7b8RqP2 +06/08/2018,Comedians,@RealCarrotTop,There's still a chance for our… https://t.co/x7r9O6wMO8 +06/06/2018,Comedians,@RealCarrotTop,Thank god my new #phonebook came in.. now I can… https://t.co/0daEWdSFrf +06/05/2018,Comedians,@RealCarrotTop,#vacation over.. ✈️back to #vegas https://t.co/CrQB0gDwW0 +06/01/2018,Comedians,@RealCarrotTop,Boom boom WHAAAT⁉️ https://t.co/GTRQ5LGhXE +06/01/2018,Comedians,@RealCarrotTop,https://t.co/wepcZoCPJO +06/01/2018,Comedians,@RealCarrotTop,#tbt @marilynmanson vinniepaul3 @djashba… https://t.co/qYjjDR8Y9T +05/30/2018,Comedians,@RealCarrotTop,"We're off this week, why not come out for the #CTMeetNGreet at the @LuxorLV when we get back! https://t.co/luYeEw9OU6" +05/30/2018,Comedians,@RealCarrotTop,amazon ..? You ripped me off! .😮😠😡😂 https://t.co/TsMuMXKyaB +05/28/2018,Comedians,@RealCarrotTop,#memorialday 🇺🇸 https://t.co/Ygb9rFASkl +05/27/2018,Comedians,@RealCarrotTop,Duhhhh! https://t.co/YHVTBJqeBt +05/26/2018,Comedians,@RealCarrotTop,This chicken didn't have a chance! Lunch with… https://t.co/1BeAeJ6ckM +05/25/2018,Comedians,@RealCarrotTop,Oops! 😂🌝🌚 https://t.co/NFIjLE5p2u +05/24/2018,Comedians,@RealCarrotTop,So great! @lateshow on @sethmeyers tonight! So… https://t.co/3Ylo9Rxr2A +05/22/2018,Comedians,@RealCarrotTop,Thanks again everybody for awesome #road… https://t.co/wYaAlnXsvI +05/20/2018,Comedians,@RealCarrotTop,Long day today #royalwedding #windsor #england… https://t.co/Vc9YkDjvu1 +05/19/2018,Comedians,@RealCarrotTop,#Utah #nevada #stateline https://t.co/y9SHizLSRd +05/18/2018,Comedians,@RealCarrotTop,Love all my #fanmail .. 📪📫✏️📝👨‍✈️ https://t.co/XPxfwc2oaI +05/17/2018,Comedians,@RealCarrotTop,On the #road .. see ya resortsatwendover and… https://t.co/AvsjHAn2P1 +05/16/2018,Comedians,@RealCarrotTop,Following #thelmaandlouise to #grandcanyon 🚘 https://t.co/UKnMU7HRiv +05/15/2018,Comedians,@RealCarrotTop,Loading out to do #roadshows . Come see us... @ Luxor Hotel and Casino https://t.co/wh4HHNURFz +05/14/2018,Comedians,@RealCarrotTop,"#election #billboards.. 🇺🇸 @ Las Vegas, Nevada https://t.co/yUm2mOIT0E" +05/13/2018,Comedians,@RealCarrotTop,So great my #brother and I can be with our #mother #happymothersday ❤️🌸 https://t.co/stRQog64Ik +05/10/2018,Comedians,@RealCarrotTop,Great having Jesse and dean from @CollectiveSoul and trey from… https://t.co/8PXCMUVkHy +05/08/2018,Comedians,@RealCarrotTop,Awesome news! @queenwillrock #queen @adamlambert 👏🎼🎹🎤 https://t.co/0DfRwiH5M4 +05/07/2018,Comedians,@RealCarrotTop,Thanks @anythymelv for my awesome new #espresso cups! nespresso https://t.co/MXVfbiMV23 +05/07/2018,Comedians,@RealCarrotTop,"#morning #run 🏃to find #shade @ Las Vegas, Nevada https://t.co/NT4vJ7T18J" +05/07/2018,Comedians,@RealCarrotTop,RT @croon1: I’m off to Texas today to do two things: 1) Do an interview about Angie and 2) Ask the Governor of Texas to issue a Sleep Apnea… +05/06/2018,Comedians,@RealCarrotTop,Thanks @nytimes for the great review! https://t.co/7jgYo8zMbK +05/06/2018,Comedians,@RealCarrotTop,Let watch our @GoldenKnights close out the @SanJoseSharks tonight! #goknightsgo #vegasborn #nhl #stanleycup… https://t.co/BCqRjNrJBY +05/06/2018,Comedians,@RealCarrotTop,Come see me resortsatwendover may 18 and sparksnugget may 19 🐴 https://t.co/ffVH92Md4H +05/05/2018,Comedians,@RealCarrotTop,Happy #cincodemayo 😂 @ Wolfgang Puck Bar & Grill Summerlin https://t.co/IrQ2l8c2xv +05/04/2018,Comedians,@RealCarrotTop,Hope to see you may 18 resortsatwendover #peppermill #show #roadtrip #comedy https://t.co/PpL6yqSarG +05/04/2018,Comedians,@RealCarrotTop,"RT @SteveMartinToGo: Marty Short and I will be on Fallon tonight. (This is the vanilla, pared-down, no-hype announcement. Flowery, all-hype…" +05/04/2018,Comedians,@RealCarrotTop,"RT @SteveMartinToGo: Here is the elaborate, thought-out announcement. https://t.co/HB2pNE7Lf6" +05/04/2018,Comedians,@RealCarrotTop,RT @SteveMartinToGo: I’m so ashamed. https://t.co/PfbvxSyD6x +05/04/2018,Comedians,@RealCarrotTop,@SteveMartinToGo legendary #comedy you and #Martinshort @jimmyfallon SO great!! #heros +05/03/2018,Comedians,@RealCarrotTop,"DfrxrcbnyfI'm not de @ Las Vegas, Nevada https://t.co/350RgqaDsI" +05/02/2018,Comedians,@RealCarrotTop,All flowered out thanks to @missdaisyfloral 🌸🌼🌺🌹 Awesome lunch at new place… https://t.co/uDxaLiH78p +05/02/2018,Comedians,@RealCarrotTop,Check out the #industrystandard #podcast with @BarryKatz with yours truly. Uncut and Uncensored. Head to the… https://t.co/BxaXLwI2mE +05/02/2018,Comedians,@RealCarrotTop,RT @BarryKatz: A unique & different look @ the career of CARROT TOP (Part 1of 2) @RealCarrotTop (31 Tonight Shows/Family Guy/Ellen/ESPN/CSI… +05/02/2018,Comedians,@RealCarrotTop,Had to get my last fix eltonjohn @caesarspalace 🎼🎤👏🎹 #legend #rocknroll… https://t.co/RT2ZFSPaa2 +05/01/2018,Comedians,@RealCarrotTop,It's #military appreciation month! All month long tickets are 1/2 off for all military! Head to the @LuxorLV box of… https://t.co/A1t0wEBKXT +04/28/2018,Comedians,@RealCarrotTop,"RT @NHLonNBCSports: There's nothing like @GoldenKnights hockey! + +Don't take it from us, ask @RealCarrotTop himself https://t.co/fP4iqzPdVY" +04/28/2018,Comedians,@RealCarrotTop,Went from a #run to a crawl with zippy_the_tortoise @ Wolfgang Puck Bar & Grill Summerlin https://t.co/4hLrWOyEvB +04/28/2018,Comedians,@RealCarrotTop,ronaldmcdonaldhouse_ 5k time 26:23 🏅🏃👍👏 @ Ronald McDonald House Charities of Greater Las Vegas https://t.co/xHecbR3HMI +04/28/2018,Comedians,@RealCarrotTop,Off to #run #5k ronaldmcdonald #charity @ Ronald McDonald House Charities of Greater Las Vegas https://t.co/KRQFJZrqkK +04/27/2018,Comedians,@RealCarrotTop,"What a fun lunch with 2 #funny #friends @louieanderson realnickswardson 😀 @ Las Vegas, Nevada https://t.co/4QH5IF6LoI" +04/27/2018,Comedians,@RealCarrotTop,Gotta love #gifts from #fans #tank #top 😂😂 https://t.co/YtQbKNVcWB +04/26/2018,Comedians,@RealCarrotTop,🥃+⛳️ @ Las Vegas National Golf Club https://t.co/i4xzKrVkjj +04/26/2018,Comedians,@RealCarrotTop,Fun #golf day for @southwestair #charity @queenwillrock helps!🎼⛳️ @ Las Vegas National Golf Club https://t.co/7U8RCxupLt +04/26/2018,Comedians,@RealCarrotTop,officialalanjackson's photo https://t.co/KGecdJ6VB5 +04/25/2018,Comedians,@RealCarrotTop,RT @croon1: Brian Evans and Jesse Stenger’s new song “A Beautiful Game” will be coming soon to #soccer fields around the world! Produced by… +04/23/2018,Comedians,@RealCarrotTop,Time for #maniquinmonday https://t.co/CbD5V5jrkH +04/23/2018,Comedians,@RealCarrotTop,How #awesome @tomfordintl https://t.co/bwQeDqWe8H +04/23/2018,Comedians,@RealCarrotTop,Come on out to the @LuxorLV for your #VIP #meetandgreet ! Tickets available at https://t.co/34TbZqM6NW. https://t.co/CrFhrjhxdc +04/22/2018,Comedians,@RealCarrotTop,Hanging w my #funny #friend @georgelopez @OgdenFoundation @ Red Rock Casino Resort & Spa https://t.co/iSrGgCli0g +04/22/2018,Comedians,@RealCarrotTop,Off to good start! @OgdenFoundation @ Red Rock Casino Resort & Spa https://t.co/Wt9vDjHqjX +04/22/2018,Comedians,@RealCarrotTop,Great to be part of @OgdenFoundation #bowling # wearing my @nfl #halloffame #ring https://t.co/JA5jGSw7bW +04/21/2018,Comedians,@RealCarrotTop,"Come on out to the May #roadshows starting in West Wendover at The Peppermill, @sparksnugget in Sparks then the… https://t.co/qxgaXdPC82" +04/21/2018,Comedians,@RealCarrotTop,New #prop for @starbucks #emplyees @ Luxor Hotel and Casino https://t.co/uP8Mg1OetF +04/20/2018,Comedians,@RealCarrotTop,Happy #420 https://t.co/FmEB7P3r6v +04/20/2018,Comedians,@RealCarrotTop,#fbf my #brother Garrett and omg..me on #beach in #Aruba ☀️ @ Aruba https://t.co/nqcacurEdh +04/19/2018,Comedians,@RealCarrotTop,"#tbt oh god!!! 19.. something 😂🎤🌸🌼🌺 @ Hampton Beach, New Hampshire https://t.co/kFoF9hnxKP" +04/19/2018,Comedians,@RealCarrotTop,"Got some #roadshows next month! In West Wendover at the Peppermill, the @SparksNugget in Sparks and the @FremontSLO… https://t.co/zVIZhosPjx" +04/18/2018,Comedians,@RealCarrotTop,Omg!!! vegasgoldenknights sweep!! #goknights @nhl #stanleycup 🏒🥃👏 #lasvegas https://t.co/C2i5pASru9 +04/17/2018,Comedians,@RealCarrotTop,"It's that time again... #flowers in your hair.🎼 🌸🌺🌼🌻 @ Las Vegas, Nevada https://t.co/uRrDDPU0AC" +04/16/2018,Comedians,@RealCarrotTop,Just watched... well READ a great #movie on americanair #bjornborg #johnmcenroe #tennis 🎾 https://t.co/jTajXBHL69 +04/15/2018,Comedians,@RealCarrotTop,"Goodbye #sunny #florida #home 🌞🚤 @ Orlando, Florida https://t.co/EMnK4d8cEe" +04/14/2018,Comedians,@RealCarrotTop,Pretty cool! Watching #rocket #launch #capecanaveral from my backyard. #orlando #florida 🚀 @… https://t.co/zVV6FKu23v +04/13/2018,Comedians,@RealCarrotTop,"My eltonjohn #glasses #project done.. or close to done! @ Winter Park, Florida https://t.co/bKAhcmpzS5" +04/13/2018,Comedians,@RealCarrotTop,"I found out what keeps waking me up.. little fucker! @ Winter Park, Florida https://t.co/1o8DZ6w15O" +04/13/2018,Comedians,@RealCarrotTop,"How do you spend your #vacation ? eltonjohn #glasses swarovski 🎼🎹👀👓🕶 @ Winter Park, Florida https://t.co/j5bPG6FhLl" +04/12/2018,Comedians,@RealCarrotTop,Head over to the @spreaker Website to catch the podcast i did with @Comickoz https://t.co/xgHSwUVp70 +04/11/2018,Comedians,@RealCarrotTop,"Great article by @Comickoz in the @VC_Reporter Check it out here... +https://t.co/6nMfIoDAIP" +04/11/2018,Comedians,@RealCarrotTop,#goknights @nhl #stanleycup #playoffs tonight on @nbc #hockey 🏒👏 @ Luxor Hotel and Casino https://t.co/uu0fNoM5Nq +04/10/2018,Comedians,@RealCarrotTop,🐾🥃✈️ @ McCarran International Airport https://t.co/uiWTfbxhbv +04/09/2018,Comedians,@RealCarrotTop,Having fun #backstage #movie #voiceover #nab #hollywood 🎤🎧🎬 thanks Tommy blaze. @ Luxor Hotel… https://t.co/1Z2aToOTLp +04/08/2018,Comedians,@RealCarrotTop,True #love ❤️ #stanleycup @nhl #playoffs begin April 11 on @nbc NBCSN @nhlonnbcsports… https://t.co/BegdfwQlNk +04/08/2018,Comedians,@RealCarrotTop,How awesome mercedesbenz #seat #toaster kelloggsus @poptarts411 #poptarts 👏 @ Luxor Hotel and… https://t.co/gp8oJKxdhB +04/07/2018,Comedians,@RealCarrotTop,Having a little fun with @crissangel #car 🚘 #stickers #lasvegas @ Las Vegas Strip https://t.co/iBp0kOAyHg +04/06/2018,Comedians,@RealCarrotTop,Brilliant! #cannabis #foodtruck #munchies #lasvegas @ Las Vegas Strip https://t.co/ILwC7DiPNy +04/05/2018,Comedians,@RealCarrotTop,Staying current w themasters #golf #augustanational pgatour ⛳️ @tigerwoods @ Luxor Hotel and Casino https://t.co/vy0uVcpe0W +04/03/2018,Comedians,@RealCarrotTop,Beautiful day for #golf! ⛳️ @anythymelv @ Angel Park Golf Club https://t.co/dxyyGoVAxR +04/03/2018,Comedians,@RealCarrotTop,Getting ready for themasters @tigerwoods #golf #pga ⛳️ @ Angel Park Golf Course https://t.co/RAPMq2xWyh +04/01/2018,Comedians,@RealCarrotTop,This is gonna be interesting.. #tsa #airport #security ✈️ @ Orlando International Airport (MCO) https://t.co/ZLmLBqm4rg +04/01/2018,Comedians,@RealCarrotTop,#happyeaster 🐰 https://t.co/F2W3npnB3q +04/01/2018,Comedians,@RealCarrotTop,"This is happening.. 25,years later. #speedo #sorry🏆🏊🏻🎪. @ Winter Park, Florida https://t.co/5t66xvYg7y" +03/31/2018,Comedians,@RealCarrotTop,"🐟🐠. #koi .. but all I see a 🦈 #shark ! @ Winter Park, Florida https://t.co/bYPXZoD5qj" +03/31/2018,Comedians,@RealCarrotTop,Now all I need is a stupid #teeshirt 👕 https://t.co/AIr4sWo0hk +03/30/2018,Comedians,@RealCarrotTop,"Look for some more upcoming #roadshows in West Wendover at the Peppermill, the @SparksNugget in Sparks and the… https://t.co/ulfksQTERL" +03/30/2018,Comedians,@RealCarrotTop,"Talk about a #birdseyeview .. cool #bird 🦅 pad. #orlando #florida 🌞 @ Winter Park, Florida https://t.co/EAnaI2Uafc" +03/28/2018,Comedians,@RealCarrotTop,A little @queenwillrock always helps a long #flight✈️ #queen #queenband #freddiemercury ❤️👍🎼🎹🎤🥁🎸🌈 https://t.co/j87RumIRWW +03/28/2018,Comedians,@RealCarrotTop,"I always keep my boo bear by me... even when I'm away from #home ❤️🐾 @ Winter Park, Florida https://t.co/lEgOgwpAIO" +03/27/2018,Comedians,@RealCarrotTop,Thank god #college 🏀 #basketball is down to #finallyfour #finalfour ncaabasketballtournament… https://t.co/DoNUh6Xb1E +03/27/2018,Comedians,@RealCarrotTop,Thanks everybody who came out to see us on the road.. on way back to @luxorlv #lasvegas 🚌 https://t.co/RrOsocyeIp +03/26/2018,Comedians,@RealCarrotTop,Great seeing my friend @BarrySobel and meeting dannyduncan69 at my show last night. Fun times!😄 https://t.co/TiTCduWPrb +03/26/2018,Comedians,@RealCarrotTop,Excited for tonight's show! @canyonconcerts #agorahills #california @ The Canyon Club & Special… https://t.co/A9j6z4ziml +03/25/2018,Comedians,@RealCarrotTop,"Awesome! Throwback #setlists from years #coachella #setlist #rocknroll @ Coachella, California https://t.co/8vPiifCPlw" +03/25/2018,Comedians,@RealCarrotTop,"Getting ready for #show tonight spotlight29casino #coachella @ Coachella, California https://t.co/1LmjbWxIHG" +03/24/2018,Comedians,@RealCarrotTop,"Rough day ! 🦆#duck #ducklife @ Palm Springs, California https://t.co/Mrs816qLtq" +03/23/2018,Comedians,@RealCarrotTop,"Mmmmmmmm! 😂 @ Palm Desert, California https://t.co/69Hagf7LtA" +03/23/2018,Comedians,@RealCarrotTop,On way to #coachella .. never rains in #california? ☔️ https://t.co/1YAibgwBbe +03/21/2018,Comedians,@RealCarrotTop,Well.. #tour starts tomorrow! Come say hi..🥕 https://t.co/550bfSRnFz +03/21/2018,Comedians,@RealCarrotTop,RT @croon1: Hope to see everyone at the show this Friday on Maui. I will be spending time in Las Vegas and Los Angeles to work on new music… +03/21/2018,Comedians,@RealCarrotTop,✌️❤️😊🌈.. https://t.co/wV2sVxQ93J +03/20/2018,Comedians,@RealCarrotTop,@anythymelv just sent me the cutest post from @theeverygirl_ ...why can't we all share this kind… https://t.co/p8f56t2ptW +03/19/2018,Comedians,@RealCarrotTop,Come too us next week on the #road new #merchandise #california #shows 🌞🥕 https://t.co/ZQrPcy5j4p +03/17/2018,Comedians,@RealCarrotTop,Happy #stpattysday 🍀🍀 #greenbeer 🍺 https://t.co/BLYVzfWhg9 +03/16/2018,Comedians,@RealCarrotTop,"Hi all, word just came down that the show in Beverly Hills just got canceled. Please come see me at the Canyon in S… https://t.co/iY7Ip7bXpm" +03/14/2018,Comedians,@RealCarrotTop,Can you guess which one is my #hair or #palmtree #dreads ✂️ https://t.co/D2Quco3m3a +03/13/2018,Comedians,@RealCarrotTop,Ok! Found the video.. playing #drums eltonjohn 🥁👍❤️ #bucketlist #dream @ The Colosseum at… https://t.co/dzoiYWX7nX +03/13/2018,Comedians,@RealCarrotTop,#happybirthday to my #nephew @lilcarrot__ 🎉🎂❤️ https://t.co/pz8mNGajs7 +03/10/2018,Comedians,@RealCarrotTop,Coming up soon. March 22 thecanyonsc #comedy #canyonclubsantaclarita #carrottop https://t.co/Y5RSeheU4n +03/09/2018,Comedians,@RealCarrotTop,Never imagine who I ran into.. @danreynolds @RealAjaVolkman @imaginedragons @hbo… https://t.co/uuTr99YB5g +03/05/2018,Comedians,@RealCarrotTop,Such a great day lvmotorspeedway @nascar @nascaronfox 🏁🏁 💯🏎 https://t.co/AlFxTu6dCN +03/04/2018,Comedians,@RealCarrotTop,Let's go #racing!🏁🏁 lvmotorspeedway https://t.co/VFjBcCD9a4 +03/04/2018,Comedians,@RealCarrotTop,RT @MLR1515: @RealCarrotTop Carrot Top hanging out with Michael Waltrip at the Las Vegas speedway.. . https://t.co/xlNS6mdEzH +03/04/2018,Comedians,@RealCarrotTop,"RT @LVMotorSpeedway: When in Vegas! + +@RealCarrotTop | @DylanMcDermott | #Pennzoil400 | #NASCARGoesWest https://t.co/PLRWG5jRRr" +03/04/2018,Comedians,@RealCarrotTop,RT @JonSchwartz1: Among those in attendance today at @LVMotorSpeedway are @DylanMcDermott @RealCarrotTop @AntronBrown #NASCARGoesWest https… +03/04/2018,Comedians,@RealCarrotTop,RT @xsthoughts: @CopaCavanna @AJDinger @RealCarrotTop I hear @AJDinger is a little guy. Don't think he's going to fit. +03/04/2018,Comedians,@RealCarrotTop,"RT @CopaCavanna: If @AJDinger needs a tag partner, @RealCarrotTop appears ready to go https://t.co/T77m0lY3WS" +03/04/2018,Comedians,@RealCarrotTop,RT @JTGRacing: .@AJDinger meeting @RealCarrotTop on the red carpet for the drivers meeting. https://t.co/OdqOky0shL +03/04/2018,Comedians,@RealCarrotTop,RT @TracksideShop: Look what @RealCarrotTop just found! @AJDinger has got some ‘splaining to do. 🤣🤣🤣 https://t.co/ZRPu5l1GIb +03/04/2018,Comedians,@RealCarrotTop,RT @JennChapple: Thanks @JeffMolitz for saying howdy and sending the pic of @AJDinger @RealCarrotTop @LVMotorSpeedway .. Hope to see ya in… +03/04/2018,Comedians,@RealCarrotTop,Thanks maverickhelicopters for the ride to lvmotorspeedway 🏎🚁🏁🏁 https://t.co/NvofwsPYwn +03/03/2018,Comedians,@RealCarrotTop,Just another normal day in #lasvegas feeding #llama Marley a 🥕 @FergusonsDT @ Downtown Las Vegas https://t.co/mMAm1vYCgI +03/02/2018,Comedians,@RealCarrotTop,🏂❄️.. this @shaunwhite thing will never end! Lol😂 @ Lee Canyon https://t.co/zyi60iQYdL +03/01/2018,Comedians,@RealCarrotTop,What a great #concert! eltonjohn 💯🎼🎻🎉 #legend #rocknroll @ The Colosseum at Caesars Palace https://t.co/Du6V9sfgEj +02/28/2018,Comedians,@RealCarrotTop,"RT @ekohmusic: how many other rappers do you know who have sang a hook on the back of a moped w/ @RealCarrotTop ? + +don’t worry, i’ll wait..…" +02/28/2018,Comedians,@RealCarrotTop,"RT @canyonconcerts: Carrot Top - March 25 +Carrot Top’s shows are a spectacle worthy of most arena rock bands and features lights, music, fo…" +02/28/2018,Comedians,@RealCarrotTop,"RT @SabanTheatre: Carrot Top - March 23 +Making audiences around the world laugh for more than three decades. Carrot Top has soared to succe…" +02/28/2018,Comedians,@RealCarrotTop,Surreal moment.. thanks John Mehon and eltonjohn for letting me play #drums 🥁🎼🎻. #eltonjohn… https://t.co/0tPQ5Q0SfY +02/27/2018,Comedians,@RealCarrotTop,Thanks for my surprise #birthday .. how many times can we say #cake? 🎂🎉 @ Luxor Hotel and Casino https://t.co/yU5WosgYnZ +02/25/2018,Comedians,@RealCarrotTop,Have you heard? I’ll be at the #canyonclub in #AgouraHills on March 25! Head to https://t.co/Jrh6UOBYkW to get your… https://t.co/7xWOTrM2sR +02/25/2018,Comedians,@RealCarrotTop,I'm gonna miss my #snowboard 🏂❄️ thanks buddy.❤ back to #Vegas ✈️ @ Reno-Tahoe International… https://t.co/aqj03Rp1w5 +02/25/2018,Comedians,@RealCarrotTop,"Awesome #birthday 🎂🥃 #laketahoe 🏂❄️🏂❄️ @ South Lake Tahoe, California https://t.co/VdfeOzqB2Q" +02/25/2018,Comedians,@RealCarrotTop,What an awesome #hotel @edgewoodtahoe #laketahoe 💯 @ Edgewood Tahoe https://t.co/I9f5luPvs6 +02/24/2018,Comedians,@RealCarrotTop,Ahh!!! 🏂❄️🥃 @ Heavenly Valley Ski Resort https://t.co/2pf0dsxNht +02/24/2018,Comedians,@RealCarrotTop,Can you feel the love at the @Spotlight29 on March 24! #tickets and #VIP #meetandgreet packages are available on… https://t.co/JAHYfcGieE +02/24/2018,Comedians,@RealCarrotTop,Don't try this at #home! Or on a #mountain..❄️🏂 https://t.co/XxQXT7UpeT +02/24/2018,Comedians,@RealCarrotTop,🏂❤❄️.... https://t.co/W0RESzUTTo +02/23/2018,Comedians,@RealCarrotTop,I’ll be at the @SabanTheatre on March 23! Get your #tickets and #VIP #meetandgreet at https://t.co/V0o1FPf0ea… https://t.co/6lDKLtdfeH +02/23/2018,Comedians,@RealCarrotTop,Hoping my #olmpics #nails will help my #snowboarding 🌈🏂❄️ @ Heavenly Valley Ski Resort https://t.co/nieydlpWjo +02/23/2018,Comedians,@RealCarrotTop,The #snow gods came! ❄️❄️🏂 @ Heavenly Mountain Resort https://t.co/VB3f9e7KN2 +02/23/2018,Comedians,@RealCarrotTop,"Hello? Yes, I’m Coming to @TheCanyonSC in Santa Clarita on March 22. Get your #tickets at https://t.co/Jrh6UOkmWm… https://t.co/vhsaRVk8ru" +02/23/2018,Comedians,@RealCarrotTop,Going for the gold! #laketahoe #snowboarding 🏂🥇 @ Heavenly Mountain Resort https://t.co/iPUU8RD3WH +02/21/2018,Comedians,@RealCarrotTop,Thanks @southwestair for great flight ❤️✈️ #vacation #laketahoe 🏂🌨❄️ https://t.co/xhts59YYMS +02/21/2018,Comedians,@RealCarrotTop,Oh SH....T! 👀👣 https://t.co/pElYPwYHK8 +02/20/2018,Comedians,@RealCarrotTop,Congratulations to marctheroberts and Kelly on your new #babygirl ❤️ @bluemangroup https://t.co/Fjio5t4TRg +02/19/2018,Comedians,@RealCarrotTop,😮😳💧 https://t.co/6R9zOJd7gw +02/18/2018,Comedians,@RealCarrotTop,Gotta love #winter in #lasvegas 76 ☀️☀️☀️ https://t.co/RFbY2TdgwV +02/17/2018,Comedians,@RealCarrotTop,Congrats again to me @shaunwhite @olympics #olympics 🏂🥇 https://t.co/oA8Fa5BPY1 +02/17/2018,Comedians,@RealCarrotTop,What a great #photo. 🌈👍❤️👣 https://t.co/eXErVZyC8S +02/16/2018,Comedians,@RealCarrotTop,#fbf #losangeles 199...? 😂 https://t.co/TLuHaGu021 +02/16/2018,Comedians,@RealCarrotTop,Perfect #song by @annemurray1 and #art by banksy ❤️🙏 https://t.co/j8NenQybks +02/16/2018,Comedians,@RealCarrotTop,🙏🙏 https://t.co/Rt2YXLi6kM +02/15/2018,Comedians,@RealCarrotTop,Come check me out on #tour. #road #shows 🎤🕺🥕 https://t.co/5TAKulhFx6 +02/14/2018,Comedians,@RealCarrotTop,Thanks @anythymelv for the awesome vase you made me! 💕 #happvalentinesday #handmadepottery https://t.co/ERchVEI6GV +02/14/2018,Comedians,@RealCarrotTop,#happyvalentinesday ❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/QGgYzczqjh +02/13/2018,Comedians,@RealCarrotTop,Come see me #valentinesday ❤️ code _4D @luxorlv .. #fb #photo from #Venice #Rome ❤️ https://t.co/F7eyZvOKxR +02/13/2018,Comedians,@RealCarrotTop,Very sad to hear the passing of #Marty Allen. He was a sweet #funny #legendary #comic and a… https://t.co/1h7Eb0Kfjm +02/12/2018,Comedians,@RealCarrotTop,Thanks to #freshballs for the awesome #asswipes! #bestfans 🍆🍌 https://t.co/VOLVMlowKh +02/11/2018,Comedians,@RealCarrotTop,Thanks @genesimmons for my awesome #vault #book #gift! 👋🕺🎸 https://t.co/360Ud4znfs +02/11/2018,Comedians,@RealCarrotTop,I think @genesimmons is asking ..why is #axlrose in this shot? https://t.co/Hk6dNdthPZ +02/10/2018,Comedians,@RealCarrotTop,This is starting to get creepy. @shaunwhite #chairmanoftheboard 🏂🏄 https://t.co/alrtpDTiww +02/10/2018,Comedians,@RealCarrotTop,These stairs should be an @olympics event! 👣🚶🏻‍♀️👟🥇 https://t.co/udrfqCC7U9 +02/10/2018,Comedians,@RealCarrotTop,Wish me luck tonight @olympics @shaunwhite 😂🏂 https://t.co/EG8pV4cp0I +02/09/2018,Comedians,@RealCarrotTop,Tour continues at the Canyon Club in Agoura on March 25! Get your #tickets at the @canyonconcerts box office or at https://t.co/Jrh6UOBYkW +02/09/2018,Comedians,@RealCarrotTop,Dear god!! thejerryspringershow #baggage #show gsntv 👋😂 https://t.co/nNlgqUaW1s +02/09/2018,Comedians,@RealCarrotTop,fiftyshadesmovie 🎬 @ Luxor Hotel and Casino https://t.co/YvBWiMhZYA +02/08/2018,Comedians,@RealCarrotTop,Love ❤️ my new shoes! I know they aren't for everybody! 🕺👟 https://t.co/RjFIjcKsUa +02/08/2018,Comedians,@RealCarrotTop,Come see me #valentines day❤️ Get your #tickets for 25% off with code _4D. @Luxorlv box office… https://t.co/EoToD3sTvp +02/07/2018,Comedians,@RealCarrotTop,Just posted a photo https://t.co/ceEkTONngZ +02/05/2018,Comedians,@RealCarrotTop,"#Repost @anythymelv with get_repost +・・・ +#goeagles !!!!!!!!! 🦅🦅🏈🦅🦅 https://t.co/KofNy1MFHl" +02/04/2018,Comedians,@RealCarrotTop,GO @eagles GO! @nfl #superbowl #nfl #football 🏈🦅 https://t.co/wThJxShcdq +02/04/2018,Comedians,@RealCarrotTop,You only see what your eyes want to see... Let them see me at the @29casino March 24. #tickets and #VIP… https://t.co/Pn8BoNc1gq +02/03/2018,Comedians,@RealCarrotTop,Thanks @converse for my #customshoes #customdesign 🥕👣👟 https://t.co/zaxiGAf45t +07/02/2018,Comedians,@PreacherLawson,A lot of people don’t know this but I’m actually a huge Lakers fan and HAVE been for a very long time! 27 minutes t… https://t.co/1PIJ4ShBKO +07/02/2018,Comedians,@PreacherLawson,A lot of people don’t know this but I’m actually a huge Lakers fan and HAVE been for a very long time! 27 minutes t… https://t.co/EEvwDUxRxk +07/02/2018,Comedians,@PreacherLawson,Awwwwwwww SNAP!!! @KingJames is coming to the @Lakers #YES #BeenAFanSinceDayOne #AsInTheFirstDayLebronCameToTheLakers #TeamBandwagon +07/01/2018,Comedians,@PreacherLawson,I’ll be honest for a second...I wouldn’t know how to spell bananas if it wasn’t for @gwenstefani +07/01/2018,Comedians,@PreacherLawson,Yoooooooo!!! Baggage Claim is hilarious 😂 #BaggageClaim #LAX #PeopleAreCrazy @ LAX https://t.co/cT5Ocxs168 +07/01/2018,Comedians,@PreacherLawson,How many of y’all get to do your dream job with your best friend? #Blessed #LawsonBrothers @ Stand Up Live - Phoenix https://t.co/ZE7w3E043e +07/01/2018,Comedians,@PreacherLawson,@bowink @gokaseygo @howiemandel See y’all soon 🙌🏾 +07/01/2018,Comedians,@PreacherLawson,RT @TXSDancer07: If y’all get the chance- go see @preacherlawson at @standuplive in Phoenix. I loved him on @agt but in person?!? SO. MUCH.… +07/01/2018,Comedians,@PreacherLawson,Just saw two squirrels either fighting or making up for lost time #SundayMorning +06/30/2018,Comedians,@PreacherLawson,"Awwwwwwwwwww SNAP!!! It’s evieclair y’all!!! Great seeing you! Glad you seen my show last night, keep killing it gi… https://t.co/4HWslniN1D" +06/30/2018,Comedians,@PreacherLawson,😂 https://t.co/Qk0N5Ng9mg +06/30/2018,Comedians,@PreacherLawson,@DarrenCarter HEY MAN!!! You in Phoenix?! +06/30/2018,Comedians,@PreacherLawson,LETS GO PHOENIX!!!! +06/30/2018,Comedians,@PreacherLawson,Guess who’s doing an ALL ages show in Los Angeles on July 8th...I’ll give you a hint he’s six foot four and his nam… https://t.co/arZTaV2X0o +06/29/2018,Comedians,@PreacherLawson,How was your last night? 😎 @OnlyBlackJustin #LawsonBros @ Copper Blues Rock Pub & Kitchen - Phoenix https://t.co/TqmuxAdPZN +06/28/2018,Comedians,@PreacherLawson,#TBT When I was 20 years old I lied on Craigslist and said I was Eddie Murphys nephew. So I could host a family reu… https://t.co/JrgGtrBplq +06/28/2018,Comedians,@PreacherLawson,"Shake that Laffy Taffy 😎🍬 + +#SeeYouThisWeekendPhoenix ☀️ @ Laugh Factory https://t.co/dWhphxhILp" +06/27/2018,Comedians,@PreacherLawson,RT @LisaKearth: Love this guy @PreacherLawson @AGT @BobHopeUSO @kearth101 #radiothon #flex4force #comedy #HumpDayHappiness https://t.co/Vqm… +06/26/2018,Comedians,@PreacherLawson,How To Make The GREATEST Green Juice EVER!!! - #CookingWithAComedian: https://t.co/ZZ4GsBNBwL via @YouTube +06/26/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/ZZ4GsBNBwL How To Make The GREATEST Green Juice EVER!!! - #CookingWithAComedian +06/26/2018,Comedians,@PreacherLawson,@PallaviGunalan You lost your tweeting privileges for the rest of the week +06/26/2018,Comedians,@PreacherLawson,@DPadrta lol I’ll be back in a two months +06/26/2018,Comedians,@PreacherLawson,THATS RIGHT!!! See you in a few days Phoenix!!! https://t.co/RVhMaCwLrV +06/26/2018,Comedians,@PreacherLawson,@RossBMR92 Working on it +06/26/2018,Comedians,@PreacherLawson,@TheRealEricMack https://t.co/tyGBngG3MC +06/26/2018,Comedians,@PreacherLawson,"@youngspice8 That doesn’t count! That’s like family guy, Simpson’s category" +06/26/2018,Comedians,@PreacherLawson,"@BobbyDigitaI @sreekyshooter First off I want to hear your best one, if it’s not spongebob..." +06/26/2018,Comedians,@PreacherLawson,@joeynajar I was JUST there last week!! +06/26/2018,Comedians,@PreacherLawson,Spongebob is the greatest cartoon of all time and I will fight anybody that disagrees!!! 👊🏾 +06/26/2018,Comedians,@PreacherLawson,"RT @Ali_Speaks: I am Back Cleveland @cleveimprov @cle_cavs_nation June 29-30th July 1 +#itsbiggerthanthesebars https://t.co/FJmRtu2HhS https…" +06/26/2018,Comedians,@PreacherLawson,"PHOENIX!!!! + +Get your tickets before we sell out this weekend!!! +https://t.co/dA1Fxb6CbO" +06/26/2018,Comedians,@PreacherLawson,Me: “Why are Flys called Flys but Horses aren’t called Gallops?! Huh am I right?! Nobody else thinks that’s weird?”… https://t.co/TmeA8B7QF2 +06/24/2018,Comedians,@PreacherLawson,Awwwwwwwww feel so good to be back home in my airplane chair #IMissedYou #SeriouslyThough… https://t.co/xatOHj3zrD +06/24/2018,Comedians,@PreacherLawson,North Carolina y’all were so dope 😊😍 +06/23/2018,Comedians,@PreacherLawson,"Haven’t been inside a gym in almost 3 months! Just body weight in hotel rooms LETS GET IT!!! 💪🏾 +#HotelWorkout… https://t.co/FH7VNH6GOk" +06/23/2018,Comedians,@PreacherLawson,"You can wear a shoe on your left foot, but there’s always a tomorrow that’ll never be found.... #Deep https://t.co/XVyUnUV6YQ" +06/22/2018,Comedians,@PreacherLawson,@mumbie12 Next time +06/22/2018,Comedians,@PreacherLawson,"@slyborg06 I meet everybody after the show, but I don’t think they’ll let her in because she’s 7. BUT just show the… https://t.co/pKWBqNAx7M" +06/22/2018,Comedians,@PreacherLawson,"RT @AndiCodes: @PreacherLawson Awesome show tonight! Can’t remember last time I laughed so damn hard, so please come back to Raleigh soon!!…" +06/22/2018,Comedians,@PreacherLawson,RT @ChefDSimpson: @PreacherLawson Amazing show tonight in Raleigh NC +06/22/2018,Comedians,@PreacherLawson,RT @JoshHagerNC: @PreacherLawson What an awesome show! I went and bought 2 Snickers bars afterward and I am now in my race car bed. You wer… +06/21/2018,Comedians,@PreacherLawson,NORTH CAROLINA!!!!! I’m here!!!! 🙌🏾😊 +06/21/2018,Comedians,@PreacherLawson,"RT @RenRaleigh: Get ready for a night filled to the brim with laughter! @PreacherLawson , as seen on America's Got Talent, is performing at…" +06/21/2018,Comedians,@PreacherLawson,Do it now so you don’t worry about it later +06/21/2018,Comedians,@PreacherLawson,THIS WEEKEND!!!!! https://t.co/KGPPcqCydP +06/20/2018,Comedians,@PreacherLawson,I’m having a blast co hosting on Access Live… https://t.co/LeW9PyFCGY +06/20/2018,Comedians,@PreacherLawson,@bbrownphotos88 @YouTube Thanks brother! 🙌🏾 +06/20/2018,Comedians,@PreacherLawson,@valerie_tosi Congratulations 🍾🎊🎈🎉 +06/20/2018,Comedians,@PreacherLawson,I’m on @accesslive 🙌🏾 +06/20/2018,Comedians,@PreacherLawson,This looks like me vs my alarm clock in he morning https://t.co/kDx9pGcMKu +06/20/2018,Comedians,@PreacherLawson,How To Make The Most AMAZING Vegan Burger of ALL TIME!!! #CookingWithAComedian: https://t.co/BbaReZdHVi via @YouTube +06/20/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/BbaReZdHVi How To Make The Most AMAZING Vegan Burger of ALL TIME!!! +06/20/2018,Comedians,@PreacherLawson,Happy 5 Year anniversary!!! I appreciate all the love you showed me! 🙌🏾 https://t.co/esQOn1k5tv +06/18/2018,Comedians,@PreacherLawson,GET READY!!! Because I’m about to randomly talk… https://t.co/roJjMadNna +06/18/2018,Comedians,@PreacherLawson,"RT @IntThings: 3 things to keep quiet.. + +1) Your love life. +2) Your income. +3) Your next move" +06/17/2018,Comedians,@PreacherLawson,@James_Metoudi LOOK AT EM!!! +06/17/2018,Comedians,@PreacherLawson,@animalchin24 😂🙌🏾 +06/17/2018,Comedians,@PreacherLawson,"Sucks when you’re a hugger around people that hate to be hugged 😫 + +WHO AM I GONE GIVE THIS LOVE TOO?! 😭" +06/17/2018,Comedians,@PreacherLawson,"I’m a GROWN man dad, I hate when you tickle me! Haha but you always find a way to make me laugh! Even if I don’t wa… https://t.co/EjnGI6CmvC" +06/17/2018,Comedians,@PreacherLawson,@GHurricane Yoooooooooooo!!!!! https://t.co/WWbmW6uOUZ +06/16/2018,Comedians,@PreacherLawson,Everybody should right now get on their knees… https://t.co/P7EgONol2G +06/16/2018,Comedians,@PreacherLawson,"What’s up BURBANK (Los Angeles) I’ll be headlining an all ages show July 8th get your tickets!! + +https://t.co/Sd9XwcPPsz" +06/16/2018,Comedians,@PreacherLawson,"@TheDrewLynch @CarrieHulon THATS RIGHT!!! + +The Drew and Preacher Show +💪🏾😂💪🏻" +06/16/2018,Comedians,@PreacherLawson,RT @SnwbrdrXoXo7: Here to see .@PreacherLawson! One of our favorites from #AGT! https://t.co/mtIyk7mkkU +06/14/2018,Comedians,@PreacherLawson,With my dog @thedrewlynch and his dog… https://t.co/Gh246XFlKW +06/13/2018,Comedians,@PreacherLawson,How To Make Amazing Hummus - #CookingWithAComedian: https://t.co/jO2QRyp4lv via @YouTube +06/13/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/jO2QRyp4lv How To Make Amazing Hummus - #CookingWithAComedian +06/13/2018,Comedians,@PreacherLawson,@rachklaus @SamuelJComroe @AGT Great job tonight!!! “I took that as a challenge” 😂🙌🏾 +06/13/2018,Comedians,@PreacherLawson,Level 10 +06/13/2018,Comedians,@PreacherLawson,RT @TheDrewLynch: International house of pancakes is changing to international house of burgers. We truly are in the darkest of times. +06/13/2018,Comedians,@PreacherLawson,Hey Ohio I know you lost a championship… https://t.co/O4I9JURG9x +06/12/2018,Comedians,@PreacherLawson,I’m changing my car alarm to gun shot sound effects. That way I’ll never get towed again 💡 +06/11/2018,Comedians,@PreacherLawson,Work hard be patient #GoodMorning 😊☀️ https://t.co/L93HbGycec +06/10/2018,Comedians,@PreacherLawson,Getting to do comedy with my brothers @woods_akeem @OnlyBlackJustin tonight!!! I can’t wait! #SittingInTheGreenRoom… https://t.co/zzJIfh3ncl +06/09/2018,Comedians,@PreacherLawson,😱😱😱😱 https://t.co/kska7CwmpL +06/09/2018,Comedians,@PreacherLawson,RT @KevinHart4real: There is no ELEVATOR to success people....You have to take the stairs!!!! Realest quote that I ever read which is why I… +06/09/2018,Comedians,@PreacherLawson,Just scooting through life like a gangsta 🛴🔥🙌🏾 https://t.co/BkQxvzivsT +06/09/2018,Comedians,@PreacherLawson,@weswillia Wat?! +06/08/2018,Comedians,@PreacherLawson,@Ian_Ex_Actor Doing great thanks bro +06/08/2018,Comedians,@PreacherLawson,@SeanConnaghan Hahahahahahaha +06/08/2018,Comedians,@PreacherLawson,They hit me so hard I missed spelled *Duct tape +06/08/2018,Comedians,@PreacherLawson,This lady hit me on my motorcycle and just to give you an idea how she drives. The duck tape was on the car BEFORE… https://t.co/dnoFQdR6mo +06/08/2018,Comedians,@PreacherLawson,RT @TheLaughFactory: Stop what you’re doing and get some @PreacherLawson in your life. You need a shot of his comedic energy. https://t.co/… +06/07/2018,Comedians,@PreacherLawson,@eshaknowsmma_ I agree 100% 🙌🏾 +06/07/2018,Comedians,@PreacherLawson,Hey everybody I was in @thedrewlynch cartoon and it was fun! Make sure you check out the full video on YouTube unde… https://t.co/bD6fiMQKhz +06/07/2018,Comedians,@PreacherLawson,I’m at icehouse Saturday doing an hour 😉 https://t.co/60j4OGrWJw +06/07/2018,Comedians,@PreacherLawson,Look everybody!!! I’m teaching everybody how to be hyper 😜🙌🏾 https://t.co/nFnEPXBIZR +06/05/2018,Comedians,@PreacherLawson,Hemp Milk: https://t.co/1fUYChzEtd via @YouTube +06/05/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/1fUYChi3BF Hemp Milk +06/05/2018,Comedians,@PreacherLawson,Crowd Makes Preacher Laugh: https://t.co/jO4Oz9fD1e via @YouTube +06/05/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/jO4Oz9fD1e Crowd Makes Preacher Laugh +06/04/2018,Comedians,@PreacherLawson,I love when the crowd catches me off guard with a good laugh! Fun times Chattanooga 😂🙌🏾 https://t.co/vUXEDvT81q +06/04/2018,Comedians,@PreacherLawson,Gooooooooooood MORNING!!!!!! +06/03/2018,Comedians,@PreacherLawson,@RonFunches 😂😂😂 +06/03/2018,Comedians,@PreacherLawson,It takes hours to make minutes look good #CookingWithAComedian 🙌🏾❤️ https://t.co/4w8qzN31qu +06/02/2018,Comedians,@PreacherLawson,"Don’t cry because it’s over, Smile because it happened" +06/02/2018,Comedians,@PreacherLawson,HEY EVERYBODY!!! I just did a hilarious cartoon with @TheDrewLynch check it out!! https://t.co/OvRD84h3J2 +06/02/2018,Comedians,@PreacherLawson,@JohnHeffron lol that’s insane +06/02/2018,Comedians,@PreacherLawson,GET YOUR TICKETS HERMOSA!!! https://t.co/DfUjVh75EI +06/02/2018,Comedians,@PreacherLawson,"Everybody has that one friend who they’ve known for years, but till this day can’t pronounce their name properly" +06/01/2018,Comedians,@PreacherLawson,Me watching the game last night... #JRSmith https://t.co/yprjN60FHq +06/01/2018,Comedians,@PreacherLawson,Y’all better get my little sisters album!!!!! 🙌🏾❤️ https://t.co/vwHxkxcWfx +06/01/2018,Comedians,@PreacherLawson,@CandaceMounts 100% ❤️ +06/01/2018,Comedians,@PreacherLawson,@yourgalHeather @EDC_LasVegas No ma’am +06/01/2018,Comedians,@PreacherLawson,@CandaceMounts Can you see that point of view Candace? https://t.co/6wgGOkxFxG +06/01/2018,Comedians,@PreacherLawson,@melissadlrosa You feel me 😡 +06/01/2018,Comedians,@PreacherLawson,@JackieVukovich I like it! +06/01/2018,Comedians,@PreacherLawson,"It’s bad when my first thought is + + “At least they didn’t shoot her..” https://t.co/oU4bha7dVY" +05/31/2018,Comedians,@PreacherLawson,@JohnHeffron Is that you?! +05/31/2018,Comedians,@PreacherLawson,@GHurricane Lol man leave me alone!! 😂 +05/31/2018,Comedians,@PreacherLawson,"@FollowTheMenace Bruh!!! 😂😂😂 + +I want to wait on Drake’s reply, I feel like he has to have something up his sleeve" +05/31/2018,Comedians,@PreacherLawson,"Most people know me from being a stand up comedian, but I have other hobbies and I encourage everyone to follow the… https://t.co/1KxCznmWep" +05/31/2018,Comedians,@PreacherLawson,@4FinalDraft @AGT @angiegreen @chasegoehring @angelicahale @Kechi @nbc #AGT12 gang!!! +05/31/2018,Comedians,@PreacherLawson,Hey everybody I did a podcast with @adamraycomedy and @funnybrad CHECK IT OUT!!! https://t.co/WxRlVjExn7 +05/30/2018,Comedians,@PreacherLawson,@analisa_ruiz27 @SimonCowell @AGT ❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@angiegreen @SimonCowell @AGT ❤️❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@stacyda30 @SimonCowell @AGT Good thing I’m a comedian that’s just joking +05/30/2018,Comedians,@PreacherLawson,That hurt my feelings @SimonCowell when you said on @Agt she was the funniest comedian on the show! Now I pray that… https://t.co/WblaRf93av +05/30/2018,Comedians,@PreacherLawson,"RT @ALNpodcast: The hilarious Preacher Lawson makes his ALN DEBUT to talk about what he was like growing up, (briefly) being homeless and l…" +05/30/2018,Comedians,@PreacherLawson,"I miss it too, but I PROMISE I’ll be on it again. Keep a look out 😉 https://t.co/JCCX3DKoWo" +05/30/2018,Comedians,@PreacherLawson,@ItsDarciLynne @AGT @nbc 😜❤️ +05/30/2018,Comedians,@PreacherLawson,@angiegreen @4FinalDraft @AGT @chasegoehring @angelicahale @Kechi @nbc Miss you back ❤️❤️❤️❤️ +05/30/2018,Comedians,@PreacherLawson,@KeonPolee Hahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha +05/30/2018,Comedians,@PreacherLawson,#BARS @Flaujae +05/30/2018,Comedians,@PreacherLawson,This is the greatest dancing grass I’ve ever seen! https://t.co/oV7DBLGdlK +05/30/2018,Comedians,@PreacherLawson,That’s what my mom did and I turned out fine! Good job @VickiBarbolak 🙌🏾 https://t.co/1HfyHOV2f3 +05/29/2018,Comedians,@PreacherLawson,Happy Tuesday all! If you haven't checked out my latest #CookingWithAComedian right now would be a great time! It's… https://t.co/QOHLLJWQYz +05/29/2018,Comedians,@PreacherLawson,Hey everybody!!! I did a freestyle rap for @AGT season premiere tonight!!! Watch it on @nbc 😉🙌🏾 https://t.co/xUwnCLMUDf +05/28/2018,Comedians,@PreacherLawson,"This was fun, take a listen 🙌🏾 https://t.co/lKYFqeldGq" +05/28/2018,Comedians,@PreacherLawson,@Princess_Tara79 @HeliumComedyPdx @OnlyBlackJustin +05/27/2018,Comedians,@PreacherLawson,RT @TaylorYeo1: Don’t think you’re too cool for your parents +05/27/2018,Comedians,@PreacherLawson,"You’re INSANE 😱 +Crushed it! Nice to meet you and anytime 🙌🏾 https://t.co/gRKA1V5UhE" +05/27/2018,Comedians,@PreacherLawson,@JohnHeffron Doing GREAT! Still in shock of how awesome my life is! I hope you’re doing just as well 🙌🏾 +05/26/2018,Comedians,@PreacherLawson,FAMILY TIME!!! Hanging with the sister Jenecia!… https://t.co/uCA8JlW7xU +05/26/2018,Comedians,@PreacherLawson,#Work 💡 https://t.co/X8jEd8dyBv +05/26/2018,Comedians,@PreacherLawson,@johnrodolfo That’s where I’m staying this weekend 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@RipCityRadio620 @dwightjaynes @AaronJFentress Thanks for having me 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@jennilutz I’m home! Gotta spend that time with family! But any other city I’m down! +05/25/2018,Comedians,@PreacherLawson,@zackgallinger See you soon buddy 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@deadbrew1 @ewjjr1 @TonyHinchcliffe Thank you brother!! Working on Houston in the next few months!! I promise I’m coming!!! 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,If you’ve heard of me within the last two… https://t.co/CeLvzDdLVo +05/25/2018,Comedians,@PreacherLawson,@HardcorePooper @HeliumComedyPdx @RipCityRadio620 100% take a picture and handshake! Can’t wait! 🙌🏾 +05/25/2018,Comedians,@PreacherLawson,@ewjjr1 @TonyHinchcliffe Doooooooooioipe!!! Can’t wait to see you man! Make sure you say what’s up after the show! +05/25/2018,Comedians,@PreacherLawson,"After y’all see me this weekend Portland, make sure you come back to watch the roast master @TonyHinchcliffe 🙌🏾 https://t.co/pwYuPK5IjH" +05/25/2018,Comedians,@PreacherLawson,@Janine Lol Stupid 😂 +05/25/2018,Comedians,@PreacherLawson,😜🙌🏾 https://t.co/ltfGY7dqjw +05/25/2018,Comedians,@PreacherLawson,@MryPunkin I say God Bless you too 😉 +05/25/2018,Comedians,@PreacherLawson,@PlatinumPerry @TWooodley I would pay money to see you say that in ANY hood. Punches can’t block bullets and darce… https://t.co/W0WTZ4ZRpe +05/25/2018,Comedians,@PreacherLawson,Thank you @tc73 for being me to @pdxmuaythai and beating me up today! My legs hurt from kicking! Thanks again! See… https://t.co/awP1c6rJMb +05/25/2018,Comedians,@PreacherLawson,@nicolebyer See you Saturday 😉 +05/25/2018,Comedians,@PreacherLawson,"Mom: If you don’t finish your plate you ain’t getting desert! + +Me: ... https://t.co/i4xXUQAHrz" +05/25/2018,Comedians,@PreacherLawson,YES!!! See you soon! 🙌🏾 https://t.co/BNbT9XIxxs +05/25/2018,Comedians,@PreacherLawson,@fusconed When?! I’m down! +05/25/2018,Comedians,@PreacherLawson,@nancynazari Haha the image in my head if you waiting is hilarious +05/25/2018,Comedians,@PreacherLawson,Hahahahaha just realized I can’t spell +05/25/2018,Comedians,@PreacherLawson,Vegan Jalapeno Poppers - #CookingWithAComedian: https://t.co/WNPJ6bxAwc via @YouTube +05/25/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/WNPJ6bxAwc Vegan Jalapeno Poppers - #CookingWithAComedian +05/25/2018,Comedians,@PreacherLawson,@CassidyQuinn @HeliumComedyPdx I got got a question! How about...what’s the address?! 🙃 +05/24/2018,Comedians,@PreacherLawson,"RT @francis_ngannou: From nobody to somebody !!! +#trust #believe #dreams #hope #goals ... https://t.co/QiDsXUNuGH" +05/24/2018,Comedians,@PreacherLawson,#TBT Yes I was ALWAYS like this! Trademarked my… https://t.co/8aG58e5amf +05/24/2018,Comedians,@PreacherLawson,"@jamiekilstein You’re a vegan, mma, comic?! 😱 + +Thanks my dude nice to meet you! 🙌🏾" +05/24/2018,Comedians,@PreacherLawson,PORTLAND OREGON LETS GAVE FUN THIS WEEKEND!!! @HeliumComedyPdx +05/24/2018,Comedians,@PreacherLawson,Who made the rule you only get one “Bless you” for sneezing +05/23/2018,Comedians,@PreacherLawson,RT @HollywoodImprov: .@the88show w/ @AveryFunny is back in #TheLab THIS WED at 10:15! @PreacherLawson @ArdenMyrin @jeremiahstandup & more h… +05/23/2018,Comedians,@PreacherLawson,RT @_TomRhodes: TRR Smart Camp #263 with @PreacherLawson! Get to know the first comedian ever to have abdominal muscles! I think he is pure… +05/23/2018,Comedians,@PreacherLawson,"PORTLAND OREGON!!!! +If we are not sold out ever show this weekend I will be HOT!!!! Come see your boy! #Helium… https://t.co/t2AV2gqgZR" +05/22/2018,Comedians,@PreacherLawson,🙌🏾❤️ https://t.co/EVmBHMbTtf +05/21/2018,Comedians,@PreacherLawson,"Me: “Take THIS life!” +Life: “.......” + +Hahaha… https://t.co/LlvNJdCFBj" +05/20/2018,Comedians,@PreacherLawson,@RandalNevin Thanks brother 🙌🏾 +05/20/2018,Comedians,@PreacherLawson,@USMAN84kg good work bruh 🤙🏾 +05/19/2018,Comedians,@PreacherLawson,@Jtaylor1040 Thank you for coming out! 🙌🏾 +05/19/2018,Comedians,@PreacherLawson,RT @IsobelKaraNight: Getting roasted by @PreacherLawson Tonight was the best!!! Add on top hearing a good new song to listen to because of… +05/19/2018,Comedians,@PreacherLawson,@ukpharmd06 You were great 🤙🏾 +05/19/2018,Comedians,@PreacherLawson,"Icehouse In Pasadena this Sunday +Hollywood Improv Tuesday 8pm +Hollywood Improv Wednesday at 10pm 🤙🏾 https://t.co/oE5yc9CIkX" +05/19/2018,Comedians,@PreacherLawson,RT @jeremiahstandup: I'm on this great show on Wednesday doing standup then an original song w/ @AveryFunny & @PreacherLawson @ArdenMyrin &… +05/19/2018,Comedians,@PreacherLawson,"RT @alharufai: Watch @PreacherLawson on YouTube, he light my life up" +05/18/2018,Comedians,@PreacherLawson,"That last move though 😂😂😂 +#ImDying https://t.co/0jPrtXBiUB" +05/18/2018,Comedians,@PreacherLawson,I needed a song for all them times I got fired 😂 https://t.co/HnWCeE3z0J +05/18/2018,Comedians,@PreacherLawson,@danhardymma Looking SHARP can’t wait to see you back in there 🤙🏾 +05/18/2018,Comedians,@PreacherLawson,@rianalorraine I still love you 😜❤️ +05/17/2018,Comedians,@PreacherLawson,RT @SeanSJordan: My mom just joined Insta. This is all I have left. +05/17/2018,Comedians,@PreacherLawson,If you take 100 selfies and 99 of them look the same...that’s how you look +05/16/2018,Comedians,@PreacherLawson,Nobody wants to SEE ME IN PULL UPS!!!!!!! #Nobody #GetYourWeightUp #ImAMagician #DoYouEvenLiftBro 😜💪🏾 https://t.co/Wo9CvanUMB +05/16/2018,Comedians,@PreacherLawson,Life’s a journey enjoy the ride 😉🏍 https://t.co/z1ntcR8jgQ +05/15/2018,Comedians,@PreacherLawson,Vegan Mushroom Tikka Masala - #CookingWithAComedian: https://t.co/sRu4I9j6CI via @YouTube +05/15/2018,Comedians,@PreacherLawson,I added a video to a @YouTube playlist https://t.co/sRu4I9j6CI Vegan Mushroom Tikka Masala - #CookingWithAComedian +05/14/2018,Comedians,@PreacherLawson,I look like a half brother that came back from over seas after my t… https://t.co/G6yp1CGTL3 +05/14/2018,Comedians,@PreacherLawson,RT @dasmith23: @PreacherLawson was everything I expected and more! Must see!!! +05/14/2018,Comedians,@PreacherLawson,@FakeMeats could y’all sponsor me already! I’m going broke buying all this jerky off of amazon! +05/14/2018,Comedians,@PreacherLawson,Hahahahahahahahahaha #This https://t.co/nB4GYTw0Ve +05/13/2018,Comedians,@PreacherLawson,#HappyMothersDay to my favorite mom! Thank you for being my biggest… https://t.co/fQnNVijzg0 +05/13/2018,Comedians,@PreacherLawson,Two sold out shows KANSAS Crossing Casino!!! Thank you I had a blast… https://t.co/1Gag0xcPQj +05/12/2018,Comedians,@PreacherLawson,Ever wake up in the morning and look in the mirror like “I’m getting in great shape!” To only realize you’re just starving +05/12/2018,Comedians,@PreacherLawson,@mattjack99 On April 1st bruh 😂 +05/12/2018,Comedians,@PreacherLawson,I appreciate the love brother 🙌🏾❤️ https://t.co/6ri4NtrTwI +05/12/2018,Comedians,@PreacherLawson,@AmandaRTubbs I love me some me ❤️ +05/12/2018,Comedians,@PreacherLawson,@djlando You da man 🤙🏾😊 +05/12/2018,Comedians,@PreacherLawson,@Lerette_Adam I’VE BEEN TO MAINE TWICE IN THE LAST 8 months!!! +05/12/2018,Comedians,@PreacherLawson,@mriahowson Thank you for coming out! I’ll be back! +05/12/2018,Comedians,@PreacherLawson,I live for this 🎤 https://t.co/PAxyr0QAcs +07/01/2018,Comedians,@attell,"He was so smart, fearless and just did not care what the crowd thought. It was beautiful.  .I loved him like a brot… https://t.co/cQMyTMeCmZ" +07/01/2018,Comedians,@attell,It took me a while to process the loss of Sean Rouse.  Sean was a great friend and probably one of the funniest guy… https://t.co/VXEXyzeahy +06/29/2018,Comedians,@attell,"RT @ComedyCellarUSA: When we do something special we do it BIG! This Friday, Saturday and Sunday @attell and @realjeffreyross are taking…" +06/24/2018,Comedians,@attell,Mohegan sun.  We did it!!!!!   #Bumpingmics fans rock!! https://t.co/Z8ajKVaaWP +06/23/2018,Comedians,@attell,RT @realjeffreyross: CONNECTICUT @MoheganSun TONIGHT 8pm. #BumpingMics with @attell & special guest @yamaneika !!! https://t.co/EvKb4qSXgc +06/23/2018,Comedians,@attell,"see yah at @BananasComedyNJ tonite! + +tix: https://t.co/ZwYEQSSscY +(more on https://t.co/C1JS5AVNa2) https://t.co/ts13IR6lC9" +06/16/2018,Comedians,@attell,Thank you Bruce for the cool painting. I love it!!! @goodnightscc #raleigh https://t.co/6r2Z7IZsxg +06/15/2018,Comedians,@attell,RT @realjeffreyross: NEW YORK FUCKIN CITY THIS MAKES ME SO HAPPY #BumpingMicsNYC @attell https://t.co/oSvtvFkTQS +06/10/2018,Comedians,@attell,RT @realjeffreyross: Watch your fingers kids. #bumpingmics Vegas tonight @TheMirageLV https://t.co/tx6YQMKXiW +06/04/2018,Comedians,@attell,Heading to @TheMirageLV Vegas w/ @realjeffreyross on June 9 & @ComixMoheganSun June 23 - tickets on my site:… https://t.co/KfyK02v6Gw +05/24/2018,Comedians,@attell,Comics rocked & crowds took it to a new level in Seattle & Portland. Thx to all the super comedy fans for making it… https://t.co/5ElzzbQDgx +05/23/2018,Comedians,@attell,"The next stop with @realjeffreyross on the #BumpingMics tour: +👑👑VEGAS June 9th!👑👑 +Tickets at… https://t.co/Mz2Mvtvmz3" +05/22/2018,Comedians,@attell,RT @realjeffreyross: Not sure how I got @attell to sit still for an hour but I did... Here’s our #BumpingMics podcast https://t.co/krnVT8dA… +05/18/2018,Comedians,@attell,RT @realjeffreyross: Come see us in Seattle tonight you coffee drinking umbrella carrying hippies #BumpingMics ! https://t.co/hJuCj9n5GV @a… +05/17/2018,Comedians,@attell,With @realjeffreyross in #Seattle tomorrow & #Portland Saturday - 2nd show added! #bumpingmics for tix… https://t.co/vZicnO3KkV +05/17/2018,Comedians,@attell,See yah in #Seattle & #Portland this weekend! #BumpingMics https://t.co/vJqDwgTbo7 +05/17/2018,Comedians,@attell,"RT @realjeffreyross: What cities should we come to next ? Anything’s gotta be better than Thackerville, Oklahoma? #BumpingMics @attell http…" +05/13/2018,Comedians,@attell,Congrats @amyschumer great job xox +05/09/2018,Comedians,@attell,"I had a blast on the podcast @realjeffreyross - can't wait for the live shows + +https://t.co/VuuGiQhC7F" +05/09/2018,Comedians,@attell,".@realjeffreyross IT’S ON! Can’t wait til we’re in Portland and Seattle +2 weeks away! +2 great towns! +3 awesome s… https://t.co/kerU2W7wzG" +05/07/2018,Comedians,@attell,"Way to go Dr @KenJeong!!!   You rock !!!  + +https://t.co/3rSVOzvI1L" +05/03/2018,Comedians,@attell,"Congrats on the new @StressFactoryCT club, @Vinnie_Brand ... @StressFactoryNJ is one of my favorites, and I can't w… https://t.co/SSHYf1b5Qc" +04/30/2018,Comedians,@attell,"RT @Stand4Heroes: Great news San Francisco! Dave Attell to join @billburr and @realjeffreyross for Stand Up for Heroes: Bay Area, May 17 at…" +04/30/2018,Comedians,@attell,Congratulations on the #WHCD @michelleisawolf!!!!  can’t wait to see the @netflix show! +04/21/2018,Comedians,@attell,Congrats on the new movie @amyschumer!! xox @IFeelPretty #IFeelPretty https://t.co/b4OUXLczCz +04/12/2018,Comedians,@attell,@StudioSheila @ComedyCentral @CarolinesonBway Wow i like it!!! thanks Sheila…I feel like the burger king’s king. +04/12/2018,Comedians,@attell,She was a legend in the biz. And there will never be another one like her.  Give it up for the late great Mitzi Sho… https://t.co/wsCQLFKrvJ +04/08/2018,Comedians,@attell,It’s great to be  back on the island doing shows at my favorite club  @ComedyGovs. It was a fun time and great week… https://t.co/65BmOl8tNP +04/06/2018,Comedians,@attell,RT @TheBonfireSXM: This week we had @attell on the show and talked to Chrissy from Long Island... Catch Dave Attell at @ComedyGovs this Fri… +04/04/2018,Comedians,@attell,Check out @artiequitter's new book – it's great! https://t.co/trU2L9yLFV +04/03/2018,Comedians,@attell,love it! https://t.co/XAoq8P1sRF +04/03/2018,Comedians,@attell,"Finally! The funnest club is opening in the funnest town! +Check it out @NYCComedyCellar is opening in #Vegas at th… https://t.co/FAWgrmY2PG" +03/23/2018,Comedians,@attell,Great time at the @CountBasieThtr in Red Bank NJ with @realjeffreyross & @yamaneika Saunders on the… https://t.co/W0Kckn70LK +03/18/2018,Comedians,@attell,Happy Saint Patrick's Day from the Bumping Mics tour! https://t.co/tlKnNalCbU +03/17/2018,Comedians,@attell,RT @realjeffreyross: Headed to Lake Tahoe for our big show tonight @MontBleuResort #BumpingMics @attell ⛷ https://t.co/YJTyDNwhsB +02/25/2018,Comedians,@attell,It was sooooo cool playing @americancomco again.  San Diego rocks!!! Thanks to some great comics and amazing crowds… https://t.co/eqP40apwN1 +02/22/2018,Comedians,@attell,"RT @nicoleaimee: SAN DIEGO! 5 shows starting tonight at one of my favorite comedy clubs ever, @americancomco with my favorite mensch @attel…" +02/21/2018,Comedians,@attell,This was a wild show for a great cause !!!  Give it up for the late great Patrice!  Miss you now and always https://t.co/Bck898ObYQ +02/19/2018,Comedians,@attell,Great time in Phoenix & Tempe check out this great crew of comics   It was awesome !!! Can’t wait to come back.  Ne… https://t.co/9xHdUU87IQ +02/18/2018,Comedians,@attell,"RT @PMendoza602: Mr. @attell I'm gonna teach my kids your fabulous recipe for Hobo Chili! An Onion, A shoelace and the @mrcoffee at home. Y…" +02/14/2018,Comedians,@attell,RT @PaulyPeligroso: #PHOENIX I'll be opening for @attell this Friday and Saturday at @tempeimprov and Sunday at @standuplive. Let's talk ab… +02/08/2018,Comedians,@attell,"Happy Birthday, @RussMeneve ! https://t.co/7YGC6ZIWUK" +01/28/2018,Comedians,@attell,"We rocked the mall, @IamJustinSilver , Valerie & @PeteDominick !!!  @LevityLive is an awesome club!!!  Next stop… https://t.co/0Q9v9HPLYl" +01/25/2018,Comedians,@attell,"See yah at @LevityLive this weekend, @IamJustinSilver https://t.co/43w413i6iK" +01/25/2018,Comedians,@attell,RT @military_family: @attell Check out this amazing #HarleyDavidson being auctioned tomorrow - proceeds support #MilitaryFamilies https://t… +01/19/2018,Comedians,@attell,"It was a great night! xox +@NYCComedyCellar @realjeffreyross @DaveJuskow @toddbarry @Sherrod_Small @NikkiGlaser… https://t.co/1EBZBEGWXB" +01/19/2018,Comedians,@attell,Yummers!!!! Great cake fun nite. Xox https://t.co/ln1tBPIRvN +01/16/2018,Comedians,@attell,RT @IamJustinSilver: These shows are gonna be “fire” as the kids say these days! I’ll be opening for the great @attell Jan 26th & 27th at… +01/09/2018,Comedians,@attell,Great time at the @NYCComedyCellar post-holiday party tonight! See yah on the road this weekend Jan 12-14 at… https://t.co/0ngOCbtiDd +01/01/2018,Comedians,@attell,Great show at @sfmasonic . It was blast from beginning to end w/ @nickvatterott @heybubbles @morgan_murphy &… https://t.co/mveacbxGCp +12/24/2017,Comedians,@attell,Holidays shows are always fun but at @Hilarities in Cleveland we took it to the next level big thanks to The crowds… https://t.co/FUVyqgEcd0 +12/22/2017,Comedians,@attell,RT @Hilarities: Uncle Dave has arrived to spread Christmas Joy to all good little boys & girls & tell tales of skanky memories past! The fa… +12/21/2017,Comedians,@attell,Happy holidays to all the @jimandsamshow listeners. You rock!!   See yah at a club sometime soon. (New dates up on… https://t.co/4r34tcMzxo +12/21/2017,Comedians,@attell,"RT @joemachi: I'll be opening for @attell December 27-30 @CarolinesonBway. +#fun #hashtag" +12/17/2017,Comedians,@attell,I had so much funny hitting the stage with @iamjustinsilver and @maryradzinski at the legendary @UNCLEVINNIESCC. … https://t.co/W5BqGbzX6R +12/13/2017,Comedians,@attell,RT @CarolinesonBway: Get tickets to see Dave @attell LIVE in NYC at Carolines on Broadway Dec 27 - Dec 30 HERE: https://t.co/hj13xMg8EJ!! h… +12/13/2017,Comedians,@attell,Added more dates - next stop @UNCLEVINNIESCC in NJ and @Hilarities in Cleveland - Tickets on https://t.co/C1JS5AVNa2 https://t.co/rUBVowT6ij +12/12/2017,Comedians,@attell,Congratulations @JuddApatow on your first hour special! Check it out on @netflix +12/03/2017,Comedians,@attell,RT @HeliumComedyBUF: Easily one of the best weekends we have had this year! Big thanks to @rjpurpura and @iamShaunmurphy and of course to t… +12/03/2017,Comedians,@attell,It was great to be back in buffalo i love the crowds and staff at the @HeliumComedyBUF club.  And it was a pleasure… https://t.co/9mjhquRSEs +12/03/2017,Comedians,@attell,Congratulations on the new @hbo special @michelleisawolf !! #MichelleWolfNiceLady https://t.co/V4zLG0YXq4 +12/01/2017,Comedians,@attell,RT @HeliumComedyBUF: Four shows left with the amazing @Attell! Best availability at the late shows! Grab yours here: https://t.co/WTAtL87yN… +12/01/2017,Comedians,@attell,Thanks for the delicious chocolate treats @howardcadmus @OhPourLamour https://t.co/Yzyacw7btU +12/01/2017,Comedians,@attell,It was a great start of the week @HeliumComedyBUF - the crowd was pumped. And super fan Howard brought some delicio… https://t.co/R3ZopVof0h +11/25/2017,Comedians,@attell,"I hope everyone had a Happy T Day. xoxo +Let's give it up for the troops it's rough being away from family over the… https://t.co/x0jyRgzE0r" +11/23/2017,Comedians,@attell,"Happy Thanksgiving! + +Gobble up these dates & I'll see yah on the road! +(Tickets at https://t.co/vC07ePilDC) https://t.co/ZjZUfGNDuF" +11/21/2017,Comedians,@attell,"Great weekend @WiseguysUtah in SLC.... love the new club - BIG thanks to the Wiseguys' staff! +Next stop...… https://t.co/Nr15FhcDlU" +11/17/2017,Comedians,@attell,.@realjeffreyross Goal!!!! Congratulations on the new special Jeff. Xox #roasttheborder +11/16/2017,Comedians,@attell,It was a weds show but it rocked like a Friday. Full tilt great show with comics Chris & @nicoleaimee . Thanks Bake… https://t.co/OQWQwJjOZV +11/15/2017,Comedians,@attell,"@joerogan @HollywoodImprov Always a fun hang, Joe. Great to see yah!" +11/15/2017,Comedians,@attell,RT @joerogan: Beautiful to run into my friend @attell at the @hollywoodimprov tonight! https://t.co/PuXpYx6JUg +11/11/2017,Comedians,@attell,.@NateRockQuarry Thank you for inviting me to @vetspeakPDX .  It was  a very moving experience.  Much respect to  a… https://t.co/zxTt6S5Yv6 +11/10/2017,Comedians,@attell,"@T_h_e_D_u_d_e_ will be in San Diego in Feb. +my site has info https://t.co/C1JS5AVNa2" +11/10/2017,Comedians,@attell,RT @HeliumComedyPdx: Five shows left with the amazing @Attell! Limited tickets remain for Sunday Night! Grab yours here: https://t.co/rJiG8… +11/07/2017,Comedians,@attell,.@JudahWorldChamp you did it!!!  Congratulations on the new special +11/07/2017,Comedians,@attell,You gotta love a good bingo nite !! For a great cause.  #TeamRubicon @TeamRubicon w/ Michael Che https://t.co/S4aE7uWG8t +11/05/2017,Comedians,@attell,Had a blast w/ @louiskatz & @nicoleaimee @IrvineImprov It’s a big club but we packed it out! Next stop Portland >… https://t.co/ZOmwpWFIRY +10/31/2017,Comedians,@attell,What a fun nite!!! Check out the living legend @RealGilbert's documentary. Gilbert.  I laughed I cried I wet the be… https://t.co/jmKEZPTg4Y +10/24/2017,Comedians,@attell,"Weekend went from good to great @VTcomedy when the king himself Elvis P, dropped by to hang w/ me & the other comic… https://t.co/niRWt5JLvt" +10/17/2017,Comedians,@attell,Me and @mikefinoia at one of my favorite clubs Always fun times - the staff and crowds rock.  Happy 25 years… https://t.co/ivHikpxgea +10/14/2017,Comedians,@attell,"comedy fans! My buddy @wilsylvince is making a film - it's really cool - check out the clip +https://t.co/Ba9O3WnSYl" +10/12/2017,Comedians,@attell,RT @mikefinoia: Washington D.C! I’ll be with @attell this weekend at @dcimprov Friday - Sunday. 5 shows. Almost… https://t.co/sCbJSS4FFD +10/12/2017,Comedians,@attell,.@artiequitter you made it!!! Happy birthday brother. Xox https://t.co/CktEfobJbK +10/06/2017,Comedians,@attell,The Road Gods have taken another great one... We miss you Ralphie!! +09/22/2017,Comedians,@attell,See yah tonight @Red5Nord ! https://t.co/FN499YkmHl +09/17/2017,Comedians,@attell,"RT @joemachi: Hey CT! I'm opening for @attell at Foxwoods 9/22! +https://t.co/CqIcicuxJW" +09/17/2017,Comedians,@attell,Me & @KingJasonAllen @ComedyZoneCLT - @cliffcashcomedy was also on the show but had to drive to next gig. Go see… https://t.co/LonDGFLlCR +09/17/2017,Comedians,@attell,"Drawn by one of the staff Sarah at the @ComedyZoneCLT + +Way to go Sarah P I love it!! https://t.co/jRo57XakAV" +09/15/2017,Comedians,@attell,RT @woodyandwilcox: Thnx again Dave. Always great. Go see @Attell @ComedyZoneCLT this wknd!! #ComedyLegend #Attell #Woodying https://t.co/B… +09/14/2017,Comedians,@attell,"Happy Birthday, @realjeffreyross ! 💕 https://t.co/Nw0t2eDdCX" +09/12/2017,Comedians,@attell,This will be a fun show. Check it out . https://t.co/iRm0uQeZNi +09/09/2017,Comedians,@attell,"RT @ArtieandAnthony: Check out today's episode of #TheAAShow w/ @artiequitter, @AnthonyCumiaxyz, @attell, & @robertkelly in the archives be…" +09/04/2017,Comedians,@attell,.@lacelarrabee & Jarrod Harris killed at @punchlinecomedy and are getting married!!!  Give em a hand!!! https://t.co/TTyugSJdaE +09/04/2017,Comedians,@attell,I made it!!   I had a great weekend playing the new @punchlinecomedy. Check out this club - The crowds rocked! https://t.co/FYuAs9bzYS +09/01/2017,Comedians,@attell,"RT @punchlinecomedy: This Weekend Dave Attell is only at The Punchline. Friday, Saturday, Sunday. Make your plans to see @attell https://…" +08/18/2017,Comedians,@attell,See yah tonight @ 8pm. Still a few tix left. https://t.co/Er9CxgHSsX +08/16/2017,Comedians,@attell,"Can't wait, @joemachi - it's gonna be a great night! https://t.co/hK9hGoQ7fN" +08/15/2017,Comedians,@attell,Check out this documentary... https://t.co/xwhUBn5tJs +08/07/2017,Comedians,@attell,RT @kevinbrennan666: @SteveTorelli @DaveJuskow @attell @RachelFeinstein @NYCComedyCellar That pos @attell can only like it? No retweet? Wha… +08/07/2017,Comedians,@attell,"It would be an honor & a privilege to write a blurb for your 2nd installment, @DougStanhope https://t.co/p1zyfYwBwv" +07/30/2017,Comedians,@attell,".@CraigyFerg you are the man!!! + +Thanks for doing the show!! https://t.co/AfLVZdhQkY" +07/24/2017,Comedians,@attell,"RT @TheBonfireSXM: FUN FACT! @ComicMikeV @louiskatz & @bigjayoakerson were all consultants on @attell's ""Dave's Old Porn""... https://t.co/L…" +07/21/2017,Comedians,@attell,RT @FoxwoodsCT: .@Attell is bringing the laughs to the #Foxwoods stage this fall! Don’t miss the comedian live on Sep 22 https://t.co/xdq6o… +07/19/2017,Comedians,@attell,RT @realjeffreyross: Nice piece about my upcoming live shows with my best pal @attell #BumpingMics at Montreal's @justforlaughs is next wee… +07/18/2017,Comedians,@attell,RT @realjeffreyross: Excited to share the stage w my brother @attell during the Montreal Comedy Festival next week @justforlaughs Info at h… +07/18/2017,Comedians,@attell,Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for doing the… https://t.co/0rEKhuXn2T +07/18/2017,Comedians,@attell,Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for doing the… https://t.co/W0Oo2pUCOh +07/18/2017,Comedians,@attell,RT @ChristineMEvans: Big thanks to @GlitterCheese @luisjgomez @SalVulcano @DanSoder @bigjayoakerson & Michael Che for @attell's Military Fa… +07/13/2017,Comedians,@attell,Great nite @NYCComedyCellar with one of the best of the best. My friend Artie Lange @artiequitter https://t.co/nRBQbHGV2Z +07/06/2017,Comedians,@attell,Thanks for letting me hang on @TheBonfireSXM today @bigjayoakerson & @DanSoder https://t.co/tKt74KZq4Y +07/06/2017,Comedians,@attell,Watch @DanSoder's @netflix special! https://t.co/WFfw1IqHWm +06/22/2017,Comedians,@attell,"See yah this Fri & Sat, Annapolis @RamsHeadOnStage + +https://t.co/QrkhxQuKyY https://t.co/kmq1gYGgQ1" +06/19/2017,Comedians,@attell,RT @TheBonfireSXM: .@bigjayoakerson & @DanSoder are on @attell's National Military Family Association benefit MON 7/17 @NYCComedyCellar htt… +06/19/2017,Comedians,@attell,See ya this weekend Annapolis @RamsHeadOnStage it's gonna be a hot one! https://t.co/LZOWfSRdQW +06/18/2017,Comedians,@attell,Me and the comics had a great one @HeliumComedySTL !!!  I love them St. Louis crowds.  Xox https://t.co/8UG1r1du3V +06/17/2017,Comedians,@attell,RT @NYCComedyCellar: July 17th @attell and friends at the Village Underground to support the @military_family tkts: https://t.co/9vhhE7U8… +06/15/2017,Comedians,@attell,"RT @justforlaughs: One stage might not be enough for these two... +@realjeffreyross and @attell: Bumping Mics July 26-28! +Tix: https://t.co/…" +06/15/2017,Comedians,@attell,RT @HeliumComedySTL: #TBT to an episode of The Up-and-Comer with @Attell at our Philly club a few years back! He'll be here all weekend! ht… +06/15/2017,Comedians,@attell,"@rainebates Hi,  Samantha .. I  really like your drawing..You nailed it, big time.  thanks again." +06/11/2017,Comedians,@attell,.@ComedyWorks Rocks!! #Denver https://t.co/MTc5nlJJso +06/07/2017,Comedians,@attell,"RT @bertkreischer: NEW PODCAST IS UP!!! + +#237 – @attell , @TomSegura, & ME https://t.co/Jti7hTHQfl" +06/06/2017,Comedians,@attell,Doing a show for @military_family at @NYCComedyCellar on 7/17. Tickets here: https://t.co/0oveM0IpZJ https://t.co/Tf15VCBqvM +06/05/2017,Comedians,@attell,See ya in Denver this weekend @ComedyWorks https://t.co/RkTkVsVWFD https://t.co/jdibhhSB1o +06/02/2017,Comedians,@attell,Happy Bday @amyschumer & @NikkiGlaser !! +06/02/2017,Comedians,@attell,Summer's here and I'm on the road. Check & see if I'm at a club near you. Tickets at https://t.co/vC07ePilDC xoxo https://t.co/j5PdZ9abp1 +05/24/2017,Comedians,@attell,3 Beards!!! Fun hanging with @bertkreischer & do the @bertcast . Check these guys out live.  They're great!!! https://t.co/NiXJbA8EGD +05/19/2017,Comedians,@attell,The llama crushed it! Next stop @Netflix! @funnybrad @CrapshootComedy https://t.co/F2gUZui4LI +05/14/2017,Comedians,@attell,It was a wet rainy nite but the Boston crowds came out in droves. @The_Wilbur is the best. Xox https://t.co/CEO4uWniz2 +05/12/2017,Comedians,@attell,Check Mark N’s 1st hour special tonite.  @marknorm is one of my favorites. He's a killer joke writer & I can’t wait… https://t.co/6N2etVSxcu +05/05/2017,Comedians,@attell,.@funnybrad it's just a few weeks till vegas @CrapshootComedy fest. After the show we are going for steaks !! My treat. +05/04/2017,Comedians,@attell,.@JimGaffigan I am thinking of you & your family and wishing @jeanniegaffigan a speedy recovery. +04/30/2017,Comedians,@attell,@NickLongworth08 Thanks for coming to the show. You and your crew were great!!! +04/28/2017,Comedians,@attell,"RT @StressFactoryCC: Doors are open for @attell's first show of the weekend! Still a few tickets left for tonight's shows, tomorrow is sold…" +04/28/2017,Comedians,@attell,". @Vinnie_Brand & @mikefinoia guys, Its gonna be a hot weekend at the club. I am pumped for the shows - https://t.co/PuusuKprmX" +04/27/2017,Comedians,@attell,"RT @StressFactoryCC: This Weekend - @Vinnie_Brand Thursday & @attell Friday & Saturday. Shows are selling out, so don't wait to get tickets!" +04/27/2017,Comedians,@attell,RT @mikefinoia: NJ! This fri & sat I'm opening for @attell at @StressFactoryCC get tix it's gonna be life changing https://t.co/hqSIwsqGWf +04/23/2017,Comedians,@attell,Amazing shows. I love this town!! @AcmeComedyCo https://t.co/xneBVee1rL +04/23/2017,Comedians,@attell,"RT @mikefinoia: New Jersey friends. Next fri & sat I'm opening for @attell at @StressFactoryCC 4 shows. Get tickets, poop, shower, eat, & c…" +04/21/2017,Comedians,@attell,Go to this - @RoryAlbanese taping his first 1-hr special - check him out live - https://t.co/3GncYlbGzV https://t.co/Uf38z2apdm +04/18/2017,Comedians,@attell,RT @DirJordanBrady: “I am Battle Comic” Documents Stand Up Comedy for Troops & Donates Ticket Sales to NMFA https://t.co/i3bR5I36PK w @geor… +04/11/2017,Comedians,@attell,It was a wild nite at the palace theatre. There is nobody better than Chris. It was an honor to be a part of the sh… https://t.co/f3UEvLpu6s +04/11/2017,Comedians,@attell,RT @chrisrock: Total blackout tour Albany NY. The great Dave Attell just ripped it. https://t.co/JyKZ4eUoSO +04/09/2017,Comedians,@attell,"4 sold out shows!!  Thanks Madison, Mike Stanley, & Nick Hart @ComedyOnState https://t.co/YFklZZcF0p" +04/07/2017,Comedians,@attell,"Another sad loss in the comedy world. Don was a hero of mine. He was fast, loose & never quit. + +https://t.co/OnDpRF9wRF" +04/01/2017,Comedians,@attell,"Great show jay and dave killed it!!   Check em out at @CarolinesonBway saturday & sunday +@bigjayoakerson… https://t.co/iXwGqS3d61" +03/30/2017,Comedians,@attell,.@bigjayoakerson 1st ever Carolines gig !!! https://t.co/DUsf1o08nX +03/27/2017,Comedians,@attell,Congrats @DaveJuskow on your episode of @CrashingHBO ! https://t.co/cx92Zsr1Hm +03/22/2017,Comedians,@attell,"RT @The_Wilbur: Presale: @attell 5/13 - Enter code ""WT22"" to get the best seats before the public! +TIX: https://t.co/9SbDeZsJk0 https://t.c…" +03/19/2017,Comedians,@attell,"The @BorgataAC .  This was great!!!  Two amazing shows!!! Me, @sammorril & @realjeffreyross https://t.co/rUp9iQO4g6" +03/17/2017,Comedians,@attell,"RT @realjeffreyross: I'm probably the first person ever to say ""I'm so excited to be in Bethlehem, PA!"" Big show at @Sands_Bethlehem with…" +03/06/2017,Comedians,@attell,RT @DirJordanBrady: .@artiequitter march 10th please tell your #Detroit fans to see @IAmBattleComic April 5th. Doc on comedy for troops w @… +02/27/2017,Comedians,@attell,What fun club. I had a blast. Thanks again @parlorlive https://t.co/xgwWwncwyd +02/24/2017,Comedians,@attell,It's gonna be a good night... https://t.co/twrTdkSmIo +02/18/2017,Comedians,@attell,"RT @CrashingHBO: He's lost everything but his sense of humor. #CrashingHBO premieres Sunday, Feb. 19 at 10:30pm. https://t.co/KrbiKADLnP" +02/13/2017,Comedians,@attell,Congrats @pattonoswalt on the Grammy win! +02/06/2017,Comedians,@attell,RT @luisjgomez: I'm opening for the great Dave @Attell at Levity Live in W Nyack NY all weekend! Come out! +02/05/2017,Comedians,@attell,The @RussMeneve Birthday Pre-Game! https://t.co/uKiiQFNvxb +01/27/2017,Comedians,@attell,RT @CrapshootComedy: @CrapshootComedy is proud to announce the addition of #DaveAttell to the 2017 lineup #Headliner #Legend https://t.co/J… +01/24/2017,Comedians,@attell,"TONIGHT: tix avail at the door starting at 6:30pm: $40 cash/credit + +https://t.co/XaG6ZmcMPX" +01/23/2017,Comedians,@attell,A rocking time in at @Magoobys. Big thanks to the crowds this weekend https://t.co/P4Hbv7cis6 +01/19/2017,Comedians,@attell,Thanks everybody for all the birthday shoutouts   Xox. https://t.co/HFXbrXpnN1 +01/10/2017,Comedians,@attell,"RT @dcimprov: Friday and Saturday, @ComicMikeV kicks off our Next Wave comedy series. Check him out: https://t.co/mt8xDPAx8T" +01/10/2017,Comedians,@attell,RT @dcimprov: Dave @attell picked @ComicMikeV for our Next Wave series ... and he's here Friday and Saturday! https://t.co/3GFlaC0F50 +01/10/2017,Comedians,@attell,Yessss https://t.co/SeCCU6xjrR +01/02/2017,Comedians,@attell,Happy New Year @kevinbrennan666 and Carrie thanks again for having me on your @mlcpodcast +01/01/2017,Comedians,@attell,"Cellar New Years Shows +#2017 +@nyccomedycellar +#happynewyear https://t.co/HJpnnVa52d" +12/31/2016,Comedians,@attell,One of the best shows of the year.  Big thanks to the staff and fans for coming down to @CarolinesonBway .   Have a… https://t.co/CUqkTTmvmG +12/27/2016,Comedians,@attell,"RT @RiotCast: A brand new @MLCPodcast, Happy Hanukkah with @Attell’ is up now on iTunes, Stitcher & https://t.co/eCA9Zg51F9!" +12/22/2016,Comedians,@attell,RT @DaveJuskow: Good morning everyone. It's an all new classic pcast to last you through the holidays with the great @attell :) +12/22/2016,Comedians,@attell,RT @CarolinesonBway: Dave @Attell headlines the week in between Christmas & New Years. Tickets are going fast! -> https://t.co/DUA3ATzvc5 h… +12/20/2016,Comedians,@attell,"RT @truTV: No more eggnog jokes. +@attell wrote the BEST ONE: + +“Eggnog, who thought that up? 'I wanna get a little drunk, but I also want…" +12/13/2016,Comedians,@attell,RT @jimandsamshow: Thanks to @jameyjasta and @attell for coming in! #JimandSam replay is on NOW! Sirius 206 / XM 103 https://t.co/0foUEQiBrw +12/07/2016,Comedians,@attell,"Happy Birthdays, @bigjayoakerson & @wilsylvince xox" +12/06/2016,Comedians,@attell,"The Grand Master of comedy, #RobertKlein!!! @laughforsight #benefit w/ @judahworldchamp + #gotham #nyc https://t.co/fckaSc9hIH" +12/06/2016,Comedians,@attell,At the @laughforsight #benefit with @JudahWorldChamp tonight. #gotham #nyc https://t.co/rRServ2vMw +12/06/2016,Comedians,@attell,Great night at the @laughforsight #benefit with @jimgaffigan & brian fischler https://t.co/LfGkM9cTTo +11/30/2016,Comedians,@attell,RT @luisjgomez: You wanted @attell. You got him! Tonight @LegionOfSkanks LIVE 9pm @creekandcave! Come hang out! +11/23/2016,Comedians,@attell,.@PaulMecurio Thanks paul. for having me on the show Have a great turkey day buddy +11/19/2016,Comedians,@attell,RT @RealBenBailey: Today's the day!!! NEW STAND-UP SPECIAL short films & new podcasts are all available at https://t.co/zsXrEHtzCq https://… +11/19/2016,Comedians,@attell,"RT @artiequitter: First time I've seen my name up in print for ""Crashing"". On HBO. Worked w Pete Holmes & Judd Apatow! Starts Feb 19! https…" +11/11/2016,Comedians,@attell,"RT @ComedyCastle: It's Friday and we are ready for the weekend with @attell, @nicoleaimee & Steve Sabo. 🎟: https://t.co/1eC1YsxVCU https://…" +11/10/2016,Comedians,@attell,RT @nicoleaimee: HEADS UP DETROIT! Doing 5 shows with @attell this weekend at @comedycastle! Come see us tell… https://t.co/JJ07qxmbgM +11/07/2016,Comedians,@attell,.@ChicagoImprov we did it!! https://t.co/3yYQji3TgX +11/03/2016,Comedians,@attell,Me and the guys at last night's Hedberg Vinyl Release show @RealGilbert @artiequitter https://t.co/R9nMs8t42H +11/02/2016,Comedians,@attell,The vinyl box set of the greatest of the great... https://t.co/Rvh3aH96aD https://t.co/UaWW5Rf81A +11/02/2016,Comedians,@attell,RT @ChristineMEvans: Had such a great time tonight at the live @TheBonfireSXM for @nycomedyfest w/ @bigjayoakerson @DanSoder & @attell!! #C… +10/30/2016,Comedians,@attell,Me and the comics at @Hilarities #Cleveland rocks !! https://t.co/nLufBUJcPO +10/29/2016,Comedians,@attell,Fan art from Mike @ the @Hilarities show tonite. Thanks  Mike!!  Super cool. Love it!! https://t.co/TONwFC28hJ +10/22/2016,Comedians,@attell,"Kevin Meaney was a classy guy on & off stage. One of my favorite bits, ""We're Big Pants People"" is timeless. https://t.co/ntwHGIysKT RIP" +10/21/2016,Comedians,@attell,Happy birthday @DanNaturman ! +10/15/2016,Comedians,@attell,All star show Tonite at the sun arena I was just glad to be a part of it.   Happy 20th anniversary @MoheganSun!!… https://t.co/tv2gEmfERD +10/14/2016,Comedians,@attell,RT @artiequitter: @attell thx Dave! I love this picture! Signed your favorite Ghostbuster Melissa Mcarthy! +10/13/2016,Comedians,@attell,What a meal!! What a nite!!  Happy birthday @artiequitter Xox https://t.co/bDPitAoHcu +10/11/2016,Comedians,@attell,Happy Birthday Artie L You made it ! Xox @artiequitter +10/09/2016,Comedians,@attell,Big thanks to the crowds and staff at @zaniesnashville The other comics on the show - @maryjayberger… https://t.co/8h6fX4SLIp +10/03/2016,Comedians,@attell,See yah this weekend @zaniesnashville https://t.co/LKeYPYACZN +09/18/2016,Comedians,@attell,RT @TimJDillon: Great night @dcimprov with @attell and @matty_litwack #comedy https://t.co/e7Yw7jO6Ux +09/14/2016,Comedians,@attell,RT @kevinbrennan666: Also special thanks to @robertkelly @RobSprance @DanSoder @ComicMikeV @attell @AnthonyCumia for all doing great @mlcpo… +07/02/2018,Comedians,@ElayneBoosler,@DAvallone Hahahahahahah. +07/02/2018,Comedians,@ElayneBoosler,"@johnpavlovitz I know there is pain there, but I also know you know you are doing the right thing." +07/02/2018,Comedians,@ElayneBoosler,RT @DearAuntCrabby: Exactly! https://t.co/EJu3splKFl +07/02/2018,Comedians,@ElayneBoosler,@JohnEdwardBake1 :( +07/02/2018,Comedians,@ElayneBoosler,@HeidiEly @BillSiddons I think the hat leaks. +07/02/2018,Comedians,@ElayneBoosler,@johnkensil @SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets… https://t.co/zOlWYsQOtf +07/02/2018,Comedians,@ElayneBoosler,@geoff9cow @Wonkette @commiegirl1 @DoktorZoom @EvanHurst @RobynElyse @DominicGwinn @5DollarFeminist @KillerMartinis… https://t.co/cPZWca0gZm +07/02/2018,Comedians,@ElayneBoosler,@ComedyMontreal Hello handsome little fella! #tailsofjoy https://t.co/YNSa5T1RMC +07/02/2018,Comedians,@ElayneBoosler,@Ellisonx And to you. Thank you. +07/02/2018,Comedians,@ElayneBoosler,"@CyrusMMcQueen You can, but it's like how your dog looks when he knows you have two cookies and you're only showing him one..." +07/02/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Yes! +07/02/2018,Comedians,@ElayneBoosler,"@stutteringjohnm @MichaelAvenatti Count on me for bail. You have done the country a great service, showing there is… https://t.co/tLdTRQ2itb" +07/02/2018,Comedians,@ElayneBoosler,"@Demandor @BillSiddons Aw, thanks." +07/02/2018,Comedians,@ElayneBoosler,"@HeidiEly @BillSiddons Of course! Ya gotta have the chin strap! and there's a way you have to break it in, in Canad… https://t.co/B3C42rX0FZ" +07/01/2018,Comedians,@ElayneBoosler,"RT @essenviews: Staff Of Capital Gazette Just Issued a Stunning Response To Trump: “We won’t forget being called an enemy of the people,”…" +07/01/2018,Comedians,@ElayneBoosler,@SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/gXq0uIvHL8 +07/01/2018,Comedians,@ElayneBoosler,@HeidiEly @TheWileyMiller Awwww.... +07/01/2018,Comedians,@ElayneBoosler,@SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/byaArSKFtM +07/01/2018,Comedians,@ElayneBoosler,@elbycloud @TheWileyMiller And why should you? +07/01/2018,Comedians,@ElayneBoosler,@TheAllisonJames I will. Thank you so much for having the great idea! +07/01/2018,Comedians,@ElayneBoosler,"@davidpom2000 @BillSiddons Brilliant lol. Excellent. Bill kept his citizenship for ""sh*t hitting the fan day"", whic… https://t.co/oW3xOrGDBk" +07/01/2018,Comedians,@ElayneBoosler,@SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @OWNERSOFTHEMETS @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/10i8Gst05S +07/01/2018,Comedians,@ElayneBoosler,"@HeidiEly @BillSiddons ANd I also bought a nor'easter hat, the yellow plastic. Should be good for winter in LA lol." +07/01/2018,Comedians,@ElayneBoosler,@geoff9cow @JohnnyArgent Done my friend. +07/01/2018,Comedians,@ElayneBoosler,@mcm04103 @BillinPortland Hahahaha. That is wonderful. +07/01/2018,Comedians,@ElayneBoosler,@stutteringjohnm @MichaelAvenatti They should give you a medal for exposing the flaws in our National Security. +07/01/2018,Comedians,@ElayneBoosler,Happy #CanadaDay. My Saskatoon born hubby and I recently returned from your land of very friendly people and amazin… https://t.co/qZMHaR5DN7 +07/01/2018,Comedians,@ElayneBoosler,@Shaler1967 @WayneKlineHere Awwww youuuuuu.... xoxoxoox +07/01/2018,Comedians,@ElayneBoosler,@DogmaKinja @gsdogrecovery I am glad you got past the bad stuff to get to the good stuff. Thank you again and Paws crossed! +07/01/2018,Comedians,@ElayneBoosler,@RedpineFour I know. It's on the short list. +07/01/2018,Comedians,@ElayneBoosler,@Snarkaroni Awesome! +07/01/2018,Comedians,@ElayneBoosler,@maraleia @AngryBlackLady Awesome. I could get there! +07/01/2018,Comedians,@ElayneBoosler,@RedpineFour Well I lobe them. +07/01/2018,Comedians,@ElayneBoosler,Calvin is a beauty!! And your wish... Here are Tails of Joy's signature cat totes! Art by @TheWileyMiller. They hol… https://t.co/1m4cZbnc2d +07/01/2018,Comedians,@ElayneBoosler,"@gregpliska I totally understand. +I just ate two Peppermint Patties. Can you find my car?" +07/01/2018,Comedians,@ElayneBoosler,@OWNERSOFTHEMETS @SteveMittleman @RandomMetsTweet @nypostsports @MetsBooth @nymworld88 @rage_mets @TheMetsSuckBOO… https://t.co/MS2xPFRQi1 +07/01/2018,Comedians,@ElayneBoosler,@DogmaKinja @gsdogrecovery Thank you for the great resource. I will forward it along. +07/01/2018,Comedians,@ElayneBoosler,@friendlysmilepi @WendyLiebman Happy Belated Birthday Phil! I hope it was a great day full of all the good stuff. Thanks for the cake! oxxo +07/01/2018,Comedians,@ElayneBoosler,"@lindsaygoldwert @RelktntHero I know, Meep! I love it." +07/01/2018,Comedians,@ElayneBoosler,@greatfailures @WayneKlineHere Yet you were such a cute couple. +07/01/2018,Comedians,@ElayneBoosler,"I just bought mine. What a perfect idea; benefits charity helping immigrants, and you get to wear your heart on you… https://t.co/rXHRklzmI4" +07/01/2018,Comedians,@ElayneBoosler,@RelktntHero @lindsaygoldwert Be still my heart. +07/01/2018,Comedians,@ElayneBoosler,@TheLadyAye Ohmygod are you ok? +07/01/2018,Comedians,@ElayneBoosler,@WayneKlineHere That's why I turned down The Descendants. I just couldn't spend all that time in a room with George Clooney again. +07/01/2018,Comedians,@ElayneBoosler,"Our friend @TheWileyMiller outdid himself today. We needed this love and joy in our lives this week, didn't we? A g… https://t.co/g8HqWxGHal" +07/01/2018,Comedians,@ElayneBoosler,"And it's the best religion there is! Pure love, kindness to all, and animals are family. TY Wiley, for being the Pa… https://t.co/cMAhdsFUuc" +07/01/2018,Comedians,@ElayneBoosler,"Lost Dog named Belgium. Bev Hills, LA area. Chipped, tags, family is devastated. Any sightings at all pls let me kn… https://t.co/vhT6YhNmMM" +07/01/2018,Comedians,@ElayneBoosler,"RT @votevets: US Marine Corps veteran Hazel Diaz put on the uniform and served America, and says she won’t allow Donald Trump to put someon…" +06/30/2018,Comedians,@ElayneBoosler,@EddieSarfaty You give me hope. xoxooxxoxoxo +06/30/2018,Comedians,@ElayneBoosler,@AngryBlackLady Spoilers!!!! +06/30/2018,Comedians,@ElayneBoosler,"Happy #Caturday. My nationwide Tails of Joy is funding the ""Bedford Cares TNR"" program in Lynchburg, VA, helping th… https://t.co/fq46NPtIJN" +06/30/2018,Comedians,@ElayneBoosler,@maraleia @AngryBlackLady Worth waiting for. +06/30/2018,Comedians,@ElayneBoosler,"@KoHoSo Yes, thank you so much! We're Tails of Joy in Studio City." +06/30/2018,Comedians,@ElayneBoosler,"@BluToonz Of course. You're not shopping, you're rescuing lol. https://t.co/jnWGcI17vr for Tails of Joy, Studio City. oxox" +06/30/2018,Comedians,@ElayneBoosler,"@Vondulce Well, some of us continue on, but thank you for the very lovely words. Have a beautiful weekend. oxox" +06/30/2018,Comedians,@ElayneBoosler,@gregpliska I was so young. But i remember us laughing a lot. He was a nice friend in those years. I collected unic… https://t.co/a1oQGHlsfF +06/30/2018,Comedians,@ElayneBoosler,@gregpliska Agreed. But he certainly left so much beauty and wonder behind. +06/30/2018,Comedians,@ElayneBoosler,"@bettinamhornsby @stutteringjohnm Ironically, this might be the only prank call where the receiver actually might h… https://t.co/3AAe5ZweEs" +06/30/2018,Comedians,@ElayneBoosler,"RT @billprady: Remember when everyone was upset that Hillary’s server was a security risk? + +Stuttering John just got through to the preside…" +06/30/2018,Comedians,@ElayneBoosler,Je suis Charlie. :( +06/30/2018,Comedians,@ElayneBoosler,@D0GSAREFAMILY Awesome! +06/30/2018,Comedians,@ElayneBoosler,@KennethWReid Yayyyy!!!!! +06/30/2018,Comedians,@ElayneBoosler,"@AngryBlackLady Repeat after me: Jodie Whittaker, Jodie Whittaker, Jodie Whittaker..." +06/29/2018,Comedians,@ElayneBoosler,Thank you so much! Every donation helps. Choose #tailsofjoy at https://t.co/jnWGcI17vr and they donate to us when y… https://t.co/DaZhFlQ0va +06/29/2018,Comedians,@ElayneBoosler,@AngryBlackLady Can't wait. They don't say when she's coming. +06/29/2018,Comedians,@ElayneBoosler,@Scone_Mason We did not shtup!!! We had some fun dates that didn't go further. :) +06/28/2018,Comedians,@ElayneBoosler,"When I was a young comic new to LA, I had a few dates w/ Harlan Ellison. Never went beyond friendship, & what a wor… https://t.co/ViHfu1nxMd" +06/28/2018,Comedians,@ElayneBoosler,@AngryBlackLady Bring on Jodie Whittaker! +06/28/2018,Comedians,@ElayneBoosler,"“I can’t wait for the vigilante squads to start gunning journalists down on sight."" -Muslim American now in jail fo… https://t.co/8V2cUdk0Ei" +06/28/2018,Comedians,@ElayneBoosler,@D0GSAREFAMILY Enjoy your wonderful new family!!!!!! +06/27/2018,Comedians,@ElayneBoosler,@wilkravitz @AARP We've seen this a lot. Dogs can get a bit of dementia when they're old. So sorry.. +06/27/2018,Comedians,@ElayneBoosler,"@wilkravitz @AARP My cousin wrote them down, but nothing tastes the way it did when she made it." +06/27/2018,Comedians,@ElayneBoosler,"RT @TopRopeTravis: When Joe Biden was refused service by a bakery in 2012, Republicans absolutely loved it. As a matter of fact, Paul Ryan,…" +06/26/2018,Comedians,@ElayneBoosler,@Camonghne Congratulations!! +06/26/2018,Comedians,@ElayneBoosler,@BettyBuckley Watched @PreacherAMC last nite. YOU ARE FANTASTICALLY AMAZINGLY SPELLBINDING!!!!!!! Loved it from top… https://t.co/PJPHzoDnM3 +06/26/2018,Comedians,@ElayneBoosler,@Shaddow13 @AARP I'm so glad you had a wonderful mother. oxxo +06/26/2018,Comedians,@ElayneBoosler,@BoutinJoan @AARP Thank you so much Joan. Food always saves the day. +06/26/2018,Comedians,@ElayneBoosler,@wilkravitz @AARP Sounds like a plan. Thank you for the kind words. +06/26/2018,Comedians,@ElayneBoosler,Sanity before civility. Then we can talk. +06/26/2018,Comedians,@ElayneBoosler,ICYMI A sweet story. https://t.co/68wgRea1qR https://t.co/QvR3VgD6uL +06/25/2018,Comedians,@ElayneBoosler,"RT @megan19: The sheer balls of the GOP to cry about ""civility"" when they openly support pedophiles, criminals and nazis is enraging, hypoc…" +06/25/2018,Comedians,@ElayneBoosler,@NicolleHunsberg @RedHenLex @PressSec LOLOL! +06/25/2018,Comedians,@ElayneBoosler,"@JohnEdwardBake1 @waitwait Oh, you are so kind. Thank you!" +06/25/2018,Comedians,@ElayneBoosler,@TGrant622 @DannyZuker i can live with that! +06/25/2018,Comedians,@ElayneBoosler,@KouklaKim Thanks Kimberly. So sad. +06/25/2018,Comedians,@ElayneBoosler,A personal short story for #DisruptDementia #MondayMotivation @AARP https://t.co/68wgRea1qR https://t.co/JNn6INMkTu +06/25/2018,Comedians,@ElayneBoosler,"Dear Sir, thank you for your service. May you rest in peace and may your memory be a blessing to your fellow firefi… https://t.co/ZKF683BjqG" +06/24/2018,Comedians,@ElayneBoosler,"It's fine. After @PressSec Sanders and her family left the @RedHenLex, they stopped off at Hobby Lobby, then went a… https://t.co/osN7IQEHAe" +06/24/2018,Comedians,@ElayneBoosler,"RT @BettyBuckley: “Preacher” is coming back! Tweet @PreacherAMC + #PreacherLore + 😜👊👍Season 3 starts tonight at 9 PM Central, 10 PM Eastern…" +06/24/2018,Comedians,@ElayneBoosler,@noradunn @washingtonpost @jamielbridgers @mogaffney @LALGBTCenter @maddow Are they kidding? He's busy letting the… https://t.co/TCw1SCQUEN +06/24/2018,Comedians,@ElayneBoosler,@BettyBuckley @RedHenLex @PressSec Miss you! oxxoxo +06/24/2018,Comedians,@ElayneBoosler,Hey right- wingers -freaking -out about the @RedHenLex politely asking @PressSec Sanders to leave. You can all calm… https://t.co/5iF0egznnF +06/24/2018,Comedians,@ElayneBoosler,"@alphawhiskey77 @RedHenLex @PressSec There is a space for a note to the restaurant, put it in there. Where it said… https://t.co/SeXh3rS5x8" +06/24/2018,Comedians,@ElayneBoosler,@Communic8n0w @DannyZuker Broadway in the 40's. +06/24/2018,Comedians,@ElayneBoosler,"@Communic8n0w @DannyZuker An orange ""shake""." +06/24/2018,Comedians,@ElayneBoosler,@TGrant622 @DannyZuker Miami is NY. +06/23/2018,Comedians,@ElayneBoosler,"Last one I promise, for New Yorkers: Orange Judas. + +#Restaurants4Sarah @DannyZuker https://t.co/a1gJxEdEsq" +06/23/2018,Comedians,@ElayneBoosler,"@renegadecop @RedHenLex @HoarseWisperer Ahh, well I saw your tweet. And now three of us bought gift certificates an… https://t.co/Q4uEHdZi4c" +06/23/2018,Comedians,@ElayneBoosler,@BluthX @DannyZuker Yes! +06/23/2018,Comedians,@ElayneBoosler,@DannyZuker No YOU! +06/23/2018,Comedians,@ElayneBoosler,RT @johnlundin: #SarahSanders 'Red Hen' https://t.co/lwx7MYBNF3 +06/23/2018,Comedians,@ElayneBoosler,@TimfromDa70s Do you know how much we drink? What are you telling us now for? +06/23/2018,Comedians,@ElayneBoosler,"RT @thistallawkgirl: How dare these parents try to bring their children to America in search of a better life. Who do they think they are,…" +06/23/2018,Comedians,@ElayneBoosler,Indeed her actions do. They say she is a true patriot @RedHenLex. That she believes so strongly in America hearing… https://t.co/P3E1ahYO5t +06/23/2018,Comedians,@ElayneBoosler,I just bought a gift certificate 2 @RedHenLex 2 support their patriotism. Donated it 2 them 4 the needy. They stood… https://t.co/6tjbUtMkfS +06/23/2018,Comedians,@ElayneBoosler,"Omarosa Steakhouse. Fact Checkers. White Supremacist Rally's. + +#Restaurants4Sarah @DannyZuker https://t.co/hid5Nl1kvi" +06/23/2018,Comedians,@ElayneBoosler,"KKKFC. +#Restaurants4Sarah @DannyZuker" +06/23/2018,Comedians,@ElayneBoosler,"Deny's. Menu: Build Your Own Grand Sham. + +#Restaurants4Sarah @DannyZuker https://t.co/Dkhe6s2hhY" +06/23/2018,Comedians,@ElayneBoosler,Great idea. I am buying a gift card now too. Donate it to a needy person who's hungry. Thanks @RedHenLex for being… https://t.co/YxrVyvoQQ1 +06/22/2018,Comedians,@ElayneBoosler,"RT @bslxo_: Instead of reposting that poor boy being abused and dying on the street, post the pictures of the ones who did this to him. #Ju…" +06/22/2018,Comedians,@ElayneBoosler,Study these photos. https://t.co/YbcbF1pyOv +06/22/2018,Comedians,@ElayneBoosler,"@DannyDeraney I think it means he loves only one person, and will kill everybody else." +06/22/2018,Comedians,@ElayneBoosler,"@Scareythoughts2 She doesn't ""have to"". She made a choice." +06/22/2018,Comedians,@ElayneBoosler,"Happy #TakeYourDogToWorkDay If u didn't have a doggie 2 take 2 work 2day, how bout beautiful Luna, a 2 yr old Cane… https://t.co/MNhwRWve8G" +06/22/2018,Comedians,@ElayneBoosler,@noradunn @mogaffney @janefmorris @UnCabaret @robreiner LOL. +06/22/2018,Comedians,@ElayneBoosler,@DrCherylllP Yay!!! +06/22/2018,Comedians,@ElayneBoosler,@davidpom2000 Serrated. +06/22/2018,Comedians,@ElayneBoosler,"You know, if The Third Lady really wanted to eliminate cyber bullying, she could take out 90% of it with a steak knife. #FridayFeeling" +06/22/2018,Comedians,@ElayneBoosler,@BettyBowers Bingo. +06/22/2018,Comedians,@ElayneBoosler,@Karoli @CNN Every time. +06/22/2018,Comedians,@ElayneBoosler,"@doughtywench Ah come on, nobody knits like you." +06/22/2018,Comedians,@ElayneBoosler,"@TheWileyMiller Hahaha. The happiest puppy in the world, and the cutest, with the cutest puppy bark. Thank you so m… https://t.co/qAfamRjDhw" +06/21/2018,Comedians,@ElayneBoosler,@valkyrie64 Thank you for the heads up. I will. +06/21/2018,Comedians,@ElayneBoosler,"Honey, you don't need to write it on your jacket. It lives on your face. #MelaniaTrump" +06/21/2018,Comedians,@ElayneBoosler,RT @AngryBlackLady: This by @Sonja_Drimmer is so vitally important. Do not fall for the administration’s attempts to cast Melania as the wo… +06/21/2018,Comedians,@ElayneBoosler,"RT @SantaInc: So now First Lady Melania Trump is going to the US/Mexico border to meet with immigrant children. + +Nice photo op. + +Anyways, h…" +06/21/2018,Comedians,@ElayneBoosler,Happy #NationalSelfieDay https://t.co/Fg2lGt1naI +06/20/2018,Comedians,@ElayneBoosler,@ComedyMontreal Labrador and Newfie would have made me 2/3 Canadian. +06/20/2018,Comedians,@ElayneBoosler,@ibookery I have to open it up first. +06/20/2018,Comedians,@ElayneBoosler,"@HeidiEly But Boxers are the comedians of the dog world, and they are so AWESOME and silly. I love Rotties too, the… https://t.co/A5SjGaJ0Mp" +06/20/2018,Comedians,@ElayneBoosler,@TheWileyMiller Are you kidding? Their entire focus is food. +06/20/2018,Comedians,@ElayneBoosler,@KennethWReid How great. She was an amazing sidekick and fantastic in Penny Dreadful. You must be a master as they… https://t.co/lqZv1r5A3W +06/20/2018,Comedians,@ElayneBoosler,"@HeidiEly I thought there would be some Boxer in there as well, a bit disappointed." +06/20/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Wellll.... that was very kind. Thanks. +06/20/2018,Comedians,@ElayneBoosler,@Evil_Ashe @DannyDeraney It is. It's always pivotal times in history mixed with sci fi. A perfect blend. And anti-v… https://t.co/WFEGUcBW7G +06/20/2018,Comedians,@ElayneBoosler,@LaPazzaFugata @Evil_Ashe @DannyDeraney True. I have the boxed set of the early years. +06/20/2018,Comedians,@ElayneBoosler,"@KennethWReid How excellent. Tennant and Smith were my favorite doctors, so jackpot. And Smith was incredible in Th… https://t.co/DHaOrKuRrT" +06/20/2018,Comedians,@ElayneBoosler,@kcory @FunctionalNerd Thanks! +06/20/2018,Comedians,@ElayneBoosler,@agilewavedoug Hahahaha. +06/20/2018,Comedians,@ElayneBoosler,"Decent human beings are so against separating children from their parents, we're going to put Eric, Ivanka and Don.… https://t.co/TRAD0mrxMd" +06/20/2018,Comedians,@ElayneBoosler,"I found out I'm Hungarian, Rumanian, and Labrador Retriever. #23andme" +06/20/2018,Comedians,@ElayneBoosler,"I didn't know we had so many Whovians in the house. In that case, not to make anybody jealous, but this is what I b… https://t.co/Ryq1wzHZoV" +06/20/2018,Comedians,@ElayneBoosler,@KennethWReid Oh my goodness how was THAT???!!!!!!!! Did you love it? +06/20/2018,Comedians,@ElayneBoosler,@Evil_Ashe @DannyDeraney It's the best. You have to. +06/20/2018,Comedians,@ElayneBoosler,@thesavageballet @kathygriffin Everybody does. No worries. :) +06/20/2018,Comedians,@ElayneBoosler,@literateartist @LenHochberg @LyleMSpencer It was. +06/20/2018,Comedians,@ElayneBoosler,@james0479 @kathygriffin Awwww **blushy blushy blush*** +06/20/2018,Comedians,@ElayneBoosler,@newcybersol xoxoxoxoox +06/20/2018,Comedians,@ElayneBoosler,@MsDarcyFarrow @HollandTaylor @BettyBuckley Mazel tov! +06/19/2018,Comedians,@ElayneBoosler,@TruthsMinister Thanks. I loved Matt Smith. Didn't care for Capaldi though. And loved ALL the women. +06/19/2018,Comedians,@ElayneBoosler,@DannyDeraney No. Sadly. +06/19/2018,Comedians,@ElayneBoosler,@Jar_O_Cats Would be good for rats and roaches. +06/19/2018,Comedians,@ElayneBoosler,@Lolly_Jean I have the teapot. No sound though. +06/19/2018,Comedians,@ElayneBoosler,"How old am I, right? The only souvenirs I brought back from Canada, and I was so excited. #DrWho #Ood… https://t.co/E14HHakldR" +06/19/2018,Comedians,@ElayneBoosler,@TheLadyAye It comes naturally to you because you are wonderful. +06/18/2018,Comedians,@ElayneBoosler,@DAvallone Well of course the republicans support separation of parents and kids. Look at their kids! +06/18/2018,Comedians,@ElayneBoosler,@krassenstein Hello beautiful sweet boy. +06/18/2018,Comedians,@ElayneBoosler,"@BOCArnie @BevVincent We see many ""Restrooms Are For Customers Only"" signs all across America." +06/18/2018,Comedians,@ElayneBoosler,"@bjb1124 Plus, they wash and wax your car before they tow it." +06/18/2018,Comedians,@ElayneBoosler,@MsDarcyFarrow We all have. The men's room is usually open. +06/17/2018,Comedians,@ElayneBoosler,"Another way in which Canada treats people better than America does. Snapped this last month on our trip, because it… https://t.co/hx5n0VSvAz" +06/17/2018,Comedians,@ElayneBoosler,@Jerry_at_Rick @nerdist @alisonhaislip @mlthaller @altonbrown @gordlittle Hahahahaha. Very bad Tardis. +06/17/2018,Comedians,@ElayneBoosler,@billscheft @NYTimesWordplay Thanks! +06/17/2018,Comedians,@ElayneBoosler,"@DebAmlen @billscheft @NYTimesWordplay Ok Bill, then we'll marry you." +06/16/2018,Comedians,@ElayneBoosler,"@noradunn @nytimes @nanhunt @jamielbridgers @mogaffney Oh god, they're turning into comedians." +06/15/2018,Comedians,@ElayneBoosler,Locking them up is too good for them. Lock them down. #FridayFeeling +06/15/2018,Comedians,@ElayneBoosler,@iammoshow @OregonHumane Love! +06/15/2018,Comedians,@ElayneBoosler,Support the Blue Wave. #FF. https://t.co/kkS1ranXfh +06/15/2018,Comedians,@ElayneBoosler,@Stonekettle May your memories of your courageous family keep you warm and proud. +06/15/2018,Comedians,@ElayneBoosler,"@thistallawkgirl Oh no, I'm so sorry. Did you go to that cake place?" +06/15/2018,Comedians,@ElayneBoosler,"@AngryBlackLady It's got the perfect ""Heil Hitler"" rhythm to it." +06/15/2018,Comedians,@ElayneBoosler,@greatfailures Beautiful. Happy Father's Day Steve. +06/15/2018,Comedians,@ElayneBoosler,@recovlitigator @HillaryClinton No doubt! +06/15/2018,Comedians,@ElayneBoosler,@HillaryClinton No more tweets. We have a winner. +06/15/2018,Comedians,@ElayneBoosler,"Quilts-a-Palooza! Pillow-Cases-Palooza! Our sewing angel Judy Isaacs outdid herself with these summer weight, handm… https://t.co/uJ9mcrD2jN" +06/15/2018,Comedians,@ElayneBoosler,@HillaryClinton i love you. Marry me. +06/14/2018,Comedians,@ElayneBoosler,@skjdrama Thank you! Be safe. +06/14/2018,Comedians,@ElayneBoosler,@atrupar @JoeWatchesTV Damage. More damage. +06/14/2018,Comedians,@ElayneBoosler,"RT @RepJoeKennedy: In @realDonaldTrump’s eyes, brutal dictators get the benefit of the doubt but parents & kids fleeing unimaginable violen…" +06/14/2018,Comedians,@ElayneBoosler,@BoringEnormous This made me laugh out loud. +06/14/2018,Comedians,@ElayneBoosler,@Globetoppers That's how I know my dogs will stay by me. As long as i fall down around 5pm. +06/12/2018,Comedians,@ElayneBoosler,"RT @JudyTenuta: Throwback Thursday, June 2014: ⁦@ElayneBoosler⁩ & ⁦@JudyTenuta⁩ celebrate the Summer with Princess Cake! #itcouldhappen #yu…" +06/12/2018,Comedians,@ElayneBoosler,@paddydee56 @QuiltingMuriel Well put and so true. oxxo +06/12/2018,Comedians,@ElayneBoosler,@noradunn @janefmorris @mogaffney @nanhunt @jamielbridgers LOL. +06/12/2018,Comedians,@ElayneBoosler,@newcybersol @QuiltingMuriel Thank you so much. She misses her as do we all. +06/12/2018,Comedians,@ElayneBoosler,Haven't seen @QuiltingMuriel's little Tiger for over 2 yrs. Muriel's wonderful daughter Marcia is in NYC visiting a… https://t.co/GZchL8VI9u +06/11/2018,Comedians,@ElayneBoosler,@KingRhiNOLa Oh yes. Such a deft touch. +06/11/2018,Comedians,@ElayneBoosler,@djdi Montawk Lawng Giland. +06/11/2018,Comedians,@ElayneBoosler,"@aerwaves_ If you don't take a minute to breathe every few years, you can't possibly keep on fighting. Liking a thi… https://t.co/NdyjuVcWgY" +06/11/2018,Comedians,@ElayneBoosler,@NYSF89 Antique carved wooden angels. +06/11/2018,Comedians,@ElayneBoosler,@BradTassell No. We tiptoed.. +06/11/2018,Comedians,@ElayneBoosler,"@Rickagain They re-created the original Stanford White house, down to the flaws and cracks in the floors. Truly amazing." +06/11/2018,Comedians,@ElayneBoosler,@davidpom2000 Did they make Chex Mix? +06/11/2018,Comedians,@ElayneBoosler,"Btw, just saw Deadpool 2 for a second time, so if you need a break from news stress and want to laugh for 90 minute… https://t.co/0WtIm2ylen" +06/11/2018,Comedians,@ElayneBoosler,Thanks amigo! Today is the last day for Guide Dogs for the Blind auction so check them out. And check us out too!… https://t.co/17kq3E7rhP +06/11/2018,Comedians,@ElayneBoosler,"We donated totes, earrings to Guide Dogs auction (https://t.co/x6WHFozpb8). Bids r already 3x higher than what we s… https://t.co/H02t1EddLQ" +06/11/2018,Comedians,@ElayneBoosler,A few more pix of Cavett's house. #MondayMotivation https://t.co/WqHpVuzFCH +06/11/2018,Comedians,@ElayneBoosler,Thought u might enjoy some pix of Dick Cavett's beautiful Montauk estate. #MondayMotivation https://t.co/62KrUxQZrL +06/11/2018,Comedians,@ElayneBoosler,Following IHOP's lead: FlapJacks in the Box. #IHOP #IHOB +06/11/2018,Comedians,@ElayneBoosler,@RobinShorr @villepique @LosFelizPodcast @morgan_murphy .@morgan_murphy and I are on for lunch when I get back to L… https://t.co/ONdlW7ltmB +06/29/2018,Comedians,@Ornyadams,@stevebyrnelive Congrats! +06/28/2018,Comedians,@Ornyadams,Just want to state for the record @HowardStern I love your show and so I don’t feel bad if I say it again — I’ve be… https://t.co/wBAJujIJ05 +06/27/2018,Comedians,@Ornyadams,RT @TheLaughFactory: #comedy #TheLaughFactory #Hollywood #Wednesday @JayDavisComedy @Ornyadams @donnellrawlings @DaneCook @TeamIanBagg… +06/27/2018,Comedians,@Ornyadams,@Sherm100 He can say it to my face! +06/27/2018,Comedians,@Ornyadams,I hate chase scenes in books. I hate chase scenes in movies. They are such overused over bloated unrealistic cliche… https://t.co/3paiGV0ClI +06/27/2018,Comedians,@Ornyadams,Hey @duranduran your version of Bowie's Starman just changed my entire day. Lifetime guest passes to any of my show… https://t.co/dn3ju5LGJf +06/26/2018,Comedians,@Ornyadams,I ate an impossible burger and it tasted very possible to me. +06/26/2018,Comedians,@Ornyadams,"I'm working on making cows taste more like plants. We will win this battle! And then I will have the ""Impossible salad"" made of cow." +06/26/2018,Comedians,@Ornyadams,I keep seeing restaurants serving a plant based “Impossible burger.” Is there anything more annoying than cocky veg… https://t.co/5hivpPOlCA +06/24/2018,Comedians,@Ornyadams,Anybody want to nominate this for a “Shot on iPhone X” billboard? https://t.co/TTmg3BKF3A +06/24/2018,Comedians,@Ornyadams,Can somebody please explain what’s going on here? Do I need to break this up? https://t.co/Y2cPLBZLA9 +06/23/2018,Comedians,@Ornyadams,Always enjoy talking with you Ron. Thanks for loving comedy so much. https://t.co/gaMRqQelRl +06/23/2018,Comedians,@Ornyadams,And tonight in LA @HollywoodImprov 8pm show. https://t.co/qWJ6TdqB1B +06/23/2018,Comedians,@Ornyadams,Tonight in LA @TheComedyStore 7pm show. https://t.co/kySWhaNuuY +06/22/2018,Comedians,@Ornyadams,My summer home Montreal! See you in a few weeks @justforlaughs #TheEthnicShow https://t.co/kqEwnKHUCq +06/21/2018,Comedians,@Ornyadams,@BillyTheG33 Great. Did you have a name of the reservation? +06/20/2018,Comedians,@Ornyadams,Tonight in LA @HollywoodImprov https://t.co/qiGr5hXSFa +06/19/2018,Comedians,@Ornyadams,Hey Kevin I appreciate this... thank you. https://t.co/VYQCyUa05N +06/18/2018,Comedians,@Ornyadams,Another dumb street sign. Who approves this stuff? #WhatsWrong https://t.co/okC4OcXc6g +06/18/2018,Comedians,@Ornyadams,Another dumb street sign. Who approves this stuff? https://t.co/uT5MknLLy2 +06/16/2018,Comedians,@Ornyadams,RT @HollywoodImprov: Don’t miss this 🔥🔥🔥 line up TMRW at 10:30! 🎟️🎟️https://t.co/PuJTZbwPtV https://t.co/R6XCaVHIKa +06/16/2018,Comedians,@Ornyadams,RT @TheLaughFactory: #comedy #TheLaughFactory #Hollywood #Saturday @JayDavisComedy @jeremypiven @tomdreesencomic @Face_Law @Ornyadams… +06/16/2018,Comedians,@Ornyadams,RT @TheComedyStore: 7pm Main Room A Surprise Guest with @steveo @iliza @Ornyadams @JuddApatow +more! Use promo code JUNE at checkout for di… +06/16/2018,Comedians,@Ornyadams,And also in LA tonight at 10:30pm @HollywoodImprov. I'll be wearing the same outfit for all LA shows tonight. https://t.co/iNEEQ4i1Fi +06/16/2018,Comedians,@Ornyadams,Tonight in LA I'll be on a 7pm show @TheComedyStore https://t.co/n83ZxsaT71 +06/16/2018,Comedians,@Ornyadams,Tonight in LA I'll be on a show at 7:30pm @TheLaughFactory https://t.co/4Ms3NtLMRM +06/15/2018,Comedians,@Ornyadams,"Why do I think the only people that will visit this are comedians to see if we’re in it? +https://t.co/mFLfh23ixK" +06/15/2018,Comedians,@Ornyadams,This is how I feel at weddings too. Fine dining? I pay more to eat so this doesn’t happen! https://t.co/ZCSqd1HSSw +06/14/2018,Comedians,@Ornyadams,I did a private show for @elavon last night. Heading home tomorrow. Maybe I’m coming to your city soon? Check my to… https://t.co/Xeg87snMj2 +06/14/2018,Comedians,@Ornyadams,If I had a family this is how I’d make them stand at the beach too. This is good parenting. Like we’re filming the… https://t.co/EBSJOY5iQe +06/14/2018,Comedians,@Ornyadams,Found half my Instagram followers here. (Kidding kids. Love you. Now eat your vegetables.) https://t.co/W7GeMTaMdd +06/14/2018,Comedians,@Ornyadams,Quick lesson on sea turtles for all you kids. https://t.co/uZLGhjbfsQ +06/14/2018,Comedians,@Ornyadams,Congrats buddy! https://t.co/B5H8uWs3IP +06/14/2018,Comedians,@Ornyadams,Am the only one who's iPhone thinks they're 12? Every time one of my lame friends texts me LOL it gives me emoji op… https://t.co/c3Wd27IKAe +06/13/2018,Comedians,@Ornyadams,See you tonight @atlantisbahamas rain or shine! https://t.co/m4LpBcxL8D +06/12/2018,Comedians,@Ornyadams,@LoniLove @StandUpLiveHSV I was just there. Great club. Great staff. Christian will take care of you. And there’s a… https://t.co/lq470H2R6L +06/12/2018,Comedians,@Ornyadams,Unless your job involves saving lives do it. Howard Stern used to say people would sit outside work listening to hi… https://t.co/38rWIn4gLU +06/12/2018,Comedians,@Ornyadams,I’ve been on @Spotify for years. I now have three comedy albums up there. Enjoy. Thanks. https://t.co/FkLQhzTYUa +06/12/2018,Comedians,@Ornyadams,RT @alley__jean: can now finally listen to my favorite comedian @Ornyadams thanks spotify. https://t.co/xkWkzCwh9n +06/12/2018,Comedians,@Ornyadams,This makes my day! Of course I’m flying all day so the bar is low. EXPECTATIONS LOWERED! But regardless I know my M… https://t.co/yMjpGVJPAk +06/11/2018,Comedians,@Ornyadams,@imangelalonzo @MTVteenwolf Yeah I think that would be cool! +06/11/2018,Comedians,@Ornyadams,@MaybeAWerewolf Thanks Cat! See you the next time I am @zaniesnashville --- bring more @MTVteenwolf fans. They deserve to NOT breathe too. +06/11/2018,Comedians,@Ornyadams,Well who the hell wears a Hawaiian shirt in Nashville! Only someone that is out to hurt me! Kidding. So glad you we… https://t.co/zNglW3h0jG +06/11/2018,Comedians,@Ornyadams,It was so nice meeting you guys in Nashville. Always fun meeting @MTVteenwolf fans all over the world. https://t.co/7pcaOg1Okc +06/10/2018,Comedians,@Ornyadams,@Uber_Support Done +06/10/2018,Comedians,@Ornyadams,@Uber why is my app stuck on this screen? Have deleted and reloaded app twice https://t.co/8rpcPMYlez +06/09/2018,Comedians,@Ornyadams,Just got my shoes repaired and now they look and sound like every other pair of shoes. Guess I went to the wrong pl… https://t.co/mchbUrWVrL +06/09/2018,Comedians,@Ornyadams,"Yes, after every show people line up and give me gifts like I am the leader of a communist regime. I present my han… https://t.co/Nvc3gBiFCe" +06/08/2018,Comedians,@Ornyadams,Thanks enjoyed talking with you today.... #Nashville https://t.co/2q6TPvCYBu +06/08/2018,Comedians,@Ornyadams,Fantastic! #Nashville https://t.co/EUn8rC1kUy +06/08/2018,Comedians,@Ornyadams,@green_fury77 @HarlandWilliams will come to your home and sing lullabies to your kids. +06/08/2018,Comedians,@Ornyadams,The best part about La-Z-boy is even the spelling is La-Z. +06/08/2018,Comedians,@Ornyadams,Any takers? https://t.co/OZXSF3oY1Z +06/08/2018,Comedians,@Ornyadams,I’m not too sure if I am going to make dvds on this one. Maybe I should just make thumb drives for the few people t… https://t.co/PXOjvjY5TF +06/08/2018,Comedians,@Ornyadams,@kyphur I’ll be back @StandUpLiveHSV and we’ll do it again. Thanks for the kind tweet! +06/08/2018,Comedians,@Ornyadams,@raerae_9500 @StandUpLiveHSV Thanks for the dirt shirt! Love it!!! See you the n ft one I’m in Hunty +06/08/2018,Comedians,@Ornyadams,You guys deserved 10. See you the next time I’m in Huntsville. @StandUpLiveHSV https://t.co/ap614LLmJ8 +06/08/2018,Comedians,@Ornyadams,@jfischervo Thanks Jerome. That was a fun show. We’ll do it again at @StandUpLiveHSV !!! +06/07/2018,Comedians,@Ornyadams,Great minds think alike— that’s what I think when I repeat myself. +06/07/2018,Comedians,@Ornyadams,Guns disguised as walking canes are the only illegal firearms in Alabama. Walker rocket launchers are permissible in all counties. +06/07/2018,Comedians,@Ornyadams,It’s 95 degrees in Huntsville. I don’t know what that is in kilometers but it’s hot. +06/07/2018,Comedians,@Ornyadams,@HaleyBakerWAFF @StandUpLiveHSV Thanks for the interview Haley! +06/07/2018,Comedians,@Ornyadams,Fantastic. Wish I saw more tweets like this. https://t.co/wGUf30Gxr3 +06/06/2018,Comedians,@Ornyadams,This plane takes off at 7:50pm from Atlanta and lands in Huntsville at 7:45pm. What should I do with this 5 minutes? +06/06/2018,Comedians,@Ornyadams,@raerae_9500 Looking forward to meeting you in Huntsville @StandUpLiveHSV +06/04/2018,Comedians,@Ornyadams,Here come the VILLES! NASHVILLE and HUNTSVILLE YOU'RE UP! Huntsville Alabama and surrounding areas this Thursday co… https://t.co/HCjPBZTeYA +06/04/2018,Comedians,@Ornyadams,I think I ate some bad soy. +06/04/2018,Comedians,@Ornyadams,About to start watching... can't wait for more gold like this https://t.co/x7U8FAn2iQ #90DayFiance +06/03/2018,Comedians,@Ornyadams,This week I’m doing shows in Huntsville Alabama and Nashville. Details are on on my website. +06/03/2018,Comedians,@Ornyadams,It’s my cheat day. The one day a week I diet. +06/03/2018,Comedians,@Ornyadams,I'd be happy to do a show you could attend JM... where do you suggest? https://t.co/VrO15KzfIg +06/03/2018,Comedians,@Ornyadams,@GoldfarbIrwin @StandUpLiveHSV Thanks Irwin... I appreciate hearing that. +06/02/2018,Comedians,@Ornyadams,"RT @StandUpLiveHSV: 🐺Teen Wolf's Coach!🐺 +@Ornyadams played Coach on Teen Wolf for 6 seasons, released his newest Showtime special ""More Tha…" +06/02/2018,Comedians,@Ornyadams,Me. Alabama. Thursday night. Huntsville. You. Go. Thank you. https://t.co/9DdsAIwaCq +06/02/2018,Comedians,@Ornyadams,@xoJohnD @Showtime Newest. Came out in December. +06/02/2018,Comedians,@Ornyadams,My current special MORE THAN LOUD is airing on @Showtime. Have you seen it!? It’s on demand too. https://t.co/ib0R4SbCKm +06/02/2018,Comedians,@Ornyadams,@brandbogard No dates. But that could change. +06/02/2018,Comedians,@Ornyadams,@vfp111 I don’t know about that... but thanks. +06/02/2018,Comedians,@Ornyadams,@CeliaR81 @Puce31 Hope to see you at one of my @justforlaughs shows in July. +06/02/2018,Comedians,@Ornyadams,"No, thank you Jeff. I’m just getting started. https://t.co/b332wbbS45" +06/02/2018,Comedians,@Ornyadams,@EMJW03092014 Thanks Elaine! +06/01/2018,Comedians,@Ornyadams,Google music’s got MORE THAN LOUD. Link below. https://t.co/JNArKE7Ss2 +06/01/2018,Comedians,@Ornyadams,SPOTIFY me. Link below for my new stand up special MORE THAN LOUD. Thanks Sarah for posting. https://t.co/RbPxXVmI2i +06/01/2018,Comedians,@Ornyadams,Is that @Spotify? I don't subscribe so if one of you subscribers could post a clean link to my new special ORNY ADA… https://t.co/dD4DF3omYU +06/01/2018,Comedians,@Ornyadams,Amazon Prime subscribers can listen to my newest stand up special MORE THAN LOUD for free! Available for download t… https://t.co/dfalXSdKV4 +06/01/2018,Comedians,@Ornyadams,My newest stand up special MORE THAN LOUD is now available on iTunes. It says explicit but that's now how I would d… https://t.co/HpJqIDjc1x +06/01/2018,Comedians,@Ornyadams,MORE THAN LOUD audio it’s everywhere as of right now. iTunes. Amazon. Spotify. And so on. +05/31/2018,Comedians,@Ornyadams,@showmesometatas I do that on planes. +05/31/2018,Comedians,@Ornyadams,I disagree I blame baby aspirin for everything that has gone wrong in my career. https://t.co/G59M0eAUNZ +05/31/2018,Comedians,@Ornyadams,Wow those were the days before the internet boom when we offended people blissfully unaware. You know it was lupus… https://t.co/0jKVmfG4BC +05/31/2018,Comedians,@Ornyadams,I apologize to anybody offended by my last tweet I took a baby aspirin earlier today and was baby aspirin tweeting. +05/31/2018,Comedians,@Ornyadams,I wonder if I was a doctor if every Uber driver would tell me “I’m a doctor too?” +05/29/2018,Comedians,@Ornyadams,It’s Tuesday. Keep that in mind when you’re parking. They don’t care that you thought it was Monday. +05/29/2018,Comedians,@Ornyadams,@green_fury77 Regardless I like your dad. Tell him Orny says hi. +05/28/2018,Comedians,@Ornyadams,90 Day Fiancé recapping when Mohamed left Danielle. I'm starting to think maybe this marriage isn't so real... https://t.co/Ci6yhzqhoW +05/27/2018,Comedians,@Ornyadams,@chachadawn Wasn’t that YEARS ago? +05/27/2018,Comedians,@Ornyadams,@CanyonDentalCen Thanks dentist Bob. Wish I had done my flossing joke now. Which show tonight @TheComedyStore or @HollywoodImprov? +05/27/2018,Comedians,@Ornyadams,I needed that. Thanks @TheComedyStore crowd. +05/27/2018,Comedians,@Ornyadams,Did you know Facebook and Google's analytics are so good they can predict what I'm going to complain about on stage before even I know? +05/26/2018,Comedians,@Ornyadams,RT @TheComedyStore: 7pm Main Room @DaneCook @steveo @bobbyleelive @Ornyadams @brianmonarch https://t.co/Q0hdesQ50q #thecomedystore +05/26/2018,Comedians,@Ornyadams,Let’s discuss this commercial. Now everyone’s doing dishwasher bits like me? https://t.co/EcMQRxrBPh +05/26/2018,Comedians,@Ornyadams,@legendnatalie1 @MickJagger Mick? +05/26/2018,Comedians,@Ornyadams,Listen @MickJagger you’ve done so much for my comedy. Let me repay the favor... let me write you some solid materia… https://t.co/myudYVXcXp +05/26/2018,Comedians,@Ornyadams,@tlynch2 Ditty mao! +05/26/2018,Comedians,@Ornyadams,Am I the only one live tweeting The Deer Hunter right now? I feel so alone. +05/26/2018,Comedians,@Ornyadams,Dozed off for a minute and now we’re in Vietnam. I missed something. Lots of pigs running around. No deers here either. +05/26/2018,Comedians,@Ornyadams,At 57 minutes. Insert of a deer running. Clearly a studio note “Hey guys maybe we should see a deer in the first ho… https://t.co/Aqbw5i22qW +05/26/2018,Comedians,@Ornyadams,49 minutes in and still haven’t scene a deer. Wedding is over! But now some guy is running down the street in his u… https://t.co/i5cljwxUlM +05/26/2018,Comedians,@Ornyadams,@ngildvilll Dammit +05/26/2018,Comedians,@Ornyadams,That’s right I’m live tweeting a movie that came out in 1979. +05/26/2018,Comedians,@Ornyadams,Anybody watching Deer Hunter right now wondering if this wedding scene is going to end before the end of Memorial D… https://t.co/ZMqT0BZiqb +05/26/2018,Comedians,@Ornyadams,@Dylan0addicted You’re my new favorite person. +05/26/2018,Comedians,@Ornyadams,I’m getting too old for this should not be my response to EVERYTHING. +05/25/2018,Comedians,@Ornyadams,RT @HollywoodImprov: Don’t miss this killer show TMRW at 8! @SherriEShepherd @KevinNealon @RafinhaBastos @OrnyAdams & @MaxComedian are taki… +05/25/2018,Comedians,@Ornyadams,Looking forward to it Nashville! https://t.co/o1YZYY0hi0 +05/25/2018,Comedians,@Ornyadams,Last night I almost posted a Michelangelo quote and I wasn’t even drunk. +05/24/2018,Comedians,@Ornyadams,90 day fiancé on TLC “The idiot.” Anybody else watching this train wreck? https://t.co/0QpSOmfI9f +05/24/2018,Comedians,@Ornyadams,"@CovinoandRich I’m sorry what part of my I DON’T GIVE COMPS TO DUDES policy don’t you guys get. Ok, I’ll see what I can do. Miss you guys!" +05/24/2018,Comedians,@Ornyadams,If you need help writing commercials that don't annoy so many of us... let me know https://t.co/DTnkqMl3V8 +05/24/2018,Comedians,@Ornyadams,@ImkenmacMaclean Thanks. Check out my other two-- I think they are online.... someplace. Audio for sure. +05/24/2018,Comedians,@Ornyadams,@Nancernoodle @grapecrime Being called a king by someone from the UK always means a LITTLE bit more. Thank you. +05/24/2018,Comedians,@Ornyadams,I can't believe I'm the same age as Bob Dylan. +05/24/2018,Comedians,@Ornyadams,What ever happened to that beret? https://t.co/qzZ8T0x6uj +05/24/2018,Comedians,@Ornyadams,What ever happened to that beret? https://t.co/KnlX3GruQz +05/24/2018,Comedians,@Ornyadams,In case you find yourself with 120 seconds and nothing to do in a world full of way too many distractions https://t.co/DTnkqMl3V8 +05/24/2018,Comedians,@Ornyadams,@DawnMDix I'm working on new material for one... +05/23/2018,Comedians,@Ornyadams,@519lucha Would you be willing to clone yourself to help me get more well known? +05/23/2018,Comedians,@Ornyadams,No! I’ve done enough for you people. https://t.co/yD0mMKh179 +05/23/2018,Comedians,@Ornyadams,Thanks. I have a youtube channel with plenty of content. Check it out. This is were I’d post a link to it if I wasn… https://t.co/pWF11fKTUW +05/23/2018,Comedians,@Ornyadams,@invisibleeggs I have a youtube channel with plenty of context. Check it out. +05/23/2018,Comedians,@Ornyadams,I didn't even know I was watching a car commercial. https://t.co/cFkKqvkFlC +05/21/2018,Comedians,@Ornyadams,It’ll be nice to be home. https://t.co/QudlyZVnmm +05/21/2018,Comedians,@Ornyadams,This made me laugh. Why do you even bother @Delta no one’s following the signs. I mean NOT one person using this bi… https://t.co/90DGz0QvMv +05/21/2018,Comedians,@Ornyadams,@loujo333 @YouTube Fantastic. Love hearing this. I’ll be in Montreal this summer for @justforlaughs if you wanna see me live. +05/21/2018,Comedians,@Ornyadams,Don’t kid yourself parents PICK ME A WINNER is nothing short of nose picker shaming and I won’t have it. These kids… https://t.co/PrkE2Pku2j +05/20/2018,Comedians,@Ornyadams,@519lucha You've lowered it THAT much? +05/20/2018,Comedians,@Ornyadams,@MelissaClaire93 Congrats! Not about my show being canceled but the other thing. +05/20/2018,Comedians,@Ornyadams,@ilavfd Why do you have to be so difficile? +05/20/2018,Comedians,@Ornyadams,About 45 minutes into my show alarms go off to remind old people to take their medication. +05/20/2018,Comedians,@Ornyadams,Yeah a lot of you Teen Wolf fans should be 21 by now... what's the hold up? https://t.co/Zj6V7bUJ8z +05/20/2018,Comedians,@Ornyadams,“Orny you must meet a lot of women after your shows.” Uhm not really... THIS IS MY FANBASE. https://t.co/Gp4ZAqrCdb +05/20/2018,Comedians,@Ornyadams,This is what my fan base has turned into. The good news is I can retire soon because it looks like my fans and I ha… https://t.co/xkDeqJzR6Y +05/20/2018,Comedians,@Ornyadams,Spies everywhere! I had never put Tobasco on my pancakes before and it is SO me. I'd like it named after me. Even i… https://t.co/5FoMNKUBVh +05/20/2018,Comedians,@Ornyadams,That's ONE vote for me. https://t.co/KdPiwvffri +05/20/2018,Comedians,@Ornyadams,Did you lose weight? https://t.co/QOr8rJceYw +05/20/2018,Comedians,@Ornyadams,Hey @howiemandel if I lose five pounds can I be one of the briefcase models? I feel like we talked about this at on… https://t.co/ijI6svsiOg +05/19/2018,Comedians,@Ornyadams,You'll be seeing mostly a new show tonight but I'll throw in a few favorites from #MoreThanLoud... hope that's ok.… https://t.co/HQrllFyCOS +05/19/2018,Comedians,@Ornyadams,Prepping for my shows tonight in Cleveland @Hilarities. https://t.co/MPjcrne2s3 +05/19/2018,Comedians,@Ornyadams,"Can you supply us with the exact percentage of POSITIVE @yelp reviews that are removed for NOT ""Including enough de… https://t.co/NfRiInsP0L" +05/19/2018,Comedians,@Ornyadams,@claybob7 @Hilarities I look forward to returning to Dallas sooooon! Glad you enjoyed my special. I think you can g… https://t.co/XtRjxepxd6 +05/19/2018,Comedians,@Ornyadams,Hope you enjoyed the show! 2 more tonight CLEVELAND and one tomorrow night @Hilarities downtown. https://t.co/OaP9B1j1Vk +05/18/2018,Comedians,@Ornyadams,For the record @yelp has NEVER deleted one of my positive reviews for not having enough details about my experience. +05/18/2018,Comedians,@Ornyadams,"Hey @yelp ""IT SUCKED AND THEY WERE RUDE"" is plenty of detail for a restaurant review. The problem with most yelp re… https://t.co/nGgQ7wSgbQ" +05/18/2018,Comedians,@Ornyadams,@ShaniCAWCAW @Yelp Yup just posted this-- Done with @Yelp they delete REAL negative reviews from actual customers w… https://t.co/oMfnxojMNu +05/18/2018,Comedians,@Ornyadams,Done with @Yelp they delete REAL negative reviews from actual customers who have had REAL experiences and let busin… https://t.co/PByEUraLHs +05/18/2018,Comedians,@Ornyadams,"Just got this from @Yelp for a review I left months ago ""I'm reaching out to let you know that our moderators remov… https://t.co/kiNcAkZIdu" +05/18/2018,Comedians,@Ornyadams,The dream continues. Now I'm in Cleveland doing shows this weekend @Hilarities downtown. Times and tickets https://t.co/wkzoYZklKG +05/18/2018,Comedians,@Ornyadams,Found this old picture of my great grandfather taking a selfie. https://t.co/Z3dGbogpqt +05/18/2018,Comedians,@Ornyadams,@itslizblanc @Hilarities @DowntownCLE Thanks Liz! We’re gonna have a great weekend @Hilarities!!! +05/18/2018,Comedians,@Ornyadams,@theHurt_Locker @Hilarities Glad you enjoyed my show! +05/18/2018,Comedians,@Ornyadams,@TheNolanNation @Hilarities @majic1057 Thanks for having me on. Had a blast. +05/17/2018,Comedians,@Ornyadams,I have a really crappy attitude about this royal wedding... am I supposed to care at all? +05/17/2018,Comedians,@Ornyadams,@rissy207 I can’t keep track of my schedule when was I supposed to be there? +05/17/2018,Comedians,@Ornyadams,@NoraPrinciotti I’ll be there alone too. Don’t feel self conscious. See you soon. +05/17/2018,Comedians,@Ornyadams,"RT @StandUpLiveHSV: Thursday, June 7! Fresh off of his Showtime special ""More Than Loud,"" @Ornyadams is coming to Rocket City for one night…" +05/15/2018,Comedians,@Ornyadams,I think I did and now it looks like I’m wearing braces. Do I have to explain this one? The melted plastic stuck to… https://t.co/ChBA7N231l +05/15/2018,Comedians,@Ornyadams,Ha! All new lazy low for @Starbucks... didn’t even take the pasty out of the plastic wrap. It’s ok I shouldn’t be e… https://t.co/1Ddqyfmzt1 +05/15/2018,Comedians,@Ornyadams,It keeps my comedy real https://t.co/RRk1UKM4ZN +05/15/2018,Comedians,@Ornyadams,Tomorrow night Rochester! Let’s go! https://t.co/UhtbftKCwf +05/15/2018,Comedians,@Ornyadams,Sometimes I look in the mirror and think I hope I look this good when I'm my age. +05/14/2018,Comedians,@Ornyadams,Absolutely. I’ll be around. https://t.co/pgCYmNWecv +05/13/2018,Comedians,@Ornyadams,But Castro is dead. Zuck is scarier than a dead person? I mean how many people are leaving America on flotillas to… https://t.co/Mtvfg5vCnu +05/13/2018,Comedians,@Ornyadams,@JonDonahue I am so grateful that stupid Budweiser strawberry festival brought us together last night! Thanks Jon. It was great to meet you. +05/13/2018,Comedians,@Ornyadams,@SandyStec @cannoncomedy @LevityOxnard It was such a pleasure working with you. I can not wait to do it again. Than… https://t.co/UE1pv8inrD +05/13/2018,Comedians,@Ornyadams,Whoever wrote this doesn’t understand me. https://t.co/bluhoyWaQI +05/12/2018,Comedians,@Ornyadams,The cheaper the hotel the louder the couples fight in room next door. Say what you want about rich people but they… https://t.co/1vcYlaRNUX +05/12/2018,Comedians,@Ornyadams,The cheaper the hotel the louder the couples fight in room next door. Say what you want about rich people but they… https://t.co/GTkAHeVPce +05/12/2018,Comedians,@Ornyadams,Yes Oxnard CALIFORNIA... 2 more shows tonight @LevityOxnard and if last night is any indication we are going to hav… https://t.co/uFRMEhP9az +05/12/2018,Comedians,@Ornyadams,It’s official Crest has run out health benefits to claim. Nothing like a bullshit gum detox that our gums have all… https://t.co/8eBavwKcVN +05/12/2018,Comedians,@Ornyadams,@SandyStec @LevityOxnard @maijareturns Great job last night Sandy! Thanks for being such a pro. Looking forward to tonight. +05/12/2018,Comedians,@Ornyadams,Guy on this show Safe has been dead for 4 days and gets pulled out of a lake and he looks better than me and I’ve b… https://t.co/u1PNXxeXhC +05/11/2018,Comedians,@Ornyadams,@JonDonahue @LevityOxnard Good news because you are verified you qualify to have @cannoncomedy valet your car for free too. +05/10/2018,Comedians,@Ornyadams,I am with these wonderful comedians this Friday and Saturday in Oxnard CA @LevityOxnard. And... free parking! https://t.co/YmIk71mrIk +05/10/2018,Comedians,@Ornyadams,@showmesometatas I'll be in Huntsville June 7th @StandUpLiveHSV if you still live close or know people who do... thanks! +05/10/2018,Comedians,@Ornyadams,Doing a show next month in Alabama and it got me thinking about boiled peanuts and the time I got pulled over in Do… https://t.co/UvQQ40rD1I +05/09/2018,Comedians,@Ornyadams,@gideonemery Now that I think about it Gideon sounds like something you catch in Vegas on one of those WHAT HAPPENS… https://t.co/P4764gKgYx +05/09/2018,Comedians,@Ornyadams,"I still consider myself a catch. Though, confidence waning." +05/08/2018,Comedians,@Ornyadams,I’m at this restaurant and this woman is staring at me. Finally she says hi. I said you’re looking at me like a pie… https://t.co/K11GjnnzVt +05/08/2018,Comedians,@Ornyadams,@SkinnerPm I’d prefer when you watch my stand-up comedy it not be when you’re naked soaking in your iron tub. Thanks. @NewYorker @bentaub91 +05/07/2018,Comedians,@Ornyadams,I have shows this FRIDAY/SATURDAY in Oxnard CA @LevityOxnard... info in tweet below. https://t.co/qo5EI9cp9f +05/07/2018,Comedians,@Ornyadams,I have the answer! START SWIMMING CLEVELAND. See you May 16-20th @Hilarities https://t.co/zNjegL5aZn https://t.co/nfrc7yv2f2 +05/05/2018,Comedians,@Ornyadams,"Everyone in this film @TheDaughterFilm deserves an award. Even the two girls in the bar. Spectacular writing, direc… https://t.co/pESHyrYfkU" +05/05/2018,Comedians,@Ornyadams,@GrandmaPams Thanks! I think you mean @Showtime +05/04/2018,Comedians,@Ornyadams,@schnelly2 @Hilarities START DRIVING NOW to @Hilarities +05/03/2018,Comedians,@Ornyadams,"It’s all heights! Cleveland, Ohio shows May 17-20 at Hilarities @Hilarities https://t.co/rcahMmlVOH" +05/03/2018,Comedians,@Ornyadams,@mariobosco @Hilarities And I look forward to meeting you one day too Mario-- especially after getting this tweet. +05/03/2018,Comedians,@Ornyadams,Next Fri/Sat doing shows in OXNARD CA! Yes! @LevityOxnard This club rocks! https://t.co/LKLykeVftI +05/03/2018,Comedians,@Ornyadams,Tickets for Cleveland @Hilarities https://t.co/TRbTfyH6eQ +05/03/2018,Comedians,@Ornyadams,Put on your bathing suit and start swimming to see my show in Cleveland May 17-20th @Hilarities https://t.co/lVvMOUDswB +05/02/2018,Comedians,@Ornyadams,Coming this fall Beacon Hills Elementary. Find out who was always dumb and annoying. #teenwolf @mtv @mtvteenwolf ..… https://t.co/Xaqkcsx5HL +06/27/2018,Comedians,@amyschumer,"I’m coming to @NtlComedyCenter in Jamestown, NY with my friends for #LucyComedyFest on 8/3! Get tix here https://t.co/KwLT2TGcOj" +06/25/2018,Comedians,@amyschumer,"In solidarity with the survivors of the Las Vegas shooting, I’m telling the ATF to ban bump stocks. The public comm… https://t.co/H0pRF1sdcr" +06/21/2018,Comedians,@amyschumer,It's official. We've launched! Check out #3Girls1Keith on @Spotify https://t.co/cDOepm2Iqx +06/20/2018,Comedians,@amyschumer,@NYCCuomo & political leaders have the power to protect farmworkers TODAY. Read why farmworker women have been wait… https://t.co/HcbfW4HJxg +06/20/2018,Comedians,@amyschumer,"Hey New York, I’m coming to @Pier17NY with my friends on 8/1! Tickets available here https://t.co/wNTBnIXmaT" +06/14/2018,Comedians,@amyschumer,"Make sure to tune into my @spotify Original Podcast Amy Schumer Presents: 3 Girls, 1 Keith on 6/21. #3Girls1Spotify https://t.co/5NE7elf0lX" +06/13/2018,Comedians,@amyschumer,"I’m coming to @WinStarWorld in Thackerville, OK with my friends on 7/28! Tickets available now! https://t.co/VvFUjDi9Mz" +05/29/2018,Comedians,@amyschumer,Come see me and my friends this weekend in San Fran! June 2nd at 9pm https://t.co/LKq0x8vZGV +05/15/2018,Comedians,@amyschumer,LA and NYC and the world don’t miss @kathygriffin she’s a true killer! https://t.co/L8mjnfEx5L +05/11/2018,Comedians,@amyschumer,I'm doing a few shows with my friends this Summer! Tickets on sale now! https://t.co/h2qfwlTuLL +05/07/2018,Comedians,@amyschumer,Tickets are on-sale THIS FRIDAY starting at 10AM EST for my summer tour! Get your tickets now! https://t.co/kGplNTY3Kw +05/05/2018,Comedians,@amyschumer,Please watch this https://t.co/NTPcQ91FB8 +05/04/2018,Comedians,@amyschumer,RT @LearyFF: The Second Annual Denis Leary FDNY Firefighter Challenge is in full force! #WeCanBeHeroes #FFChallenge #IFFD https://t.co/dofD… +05/02/2018,Comedians,@amyschumer,We're calling on corporations to cut all ties with R. Kelly and insist on safety and dignity for women of all kinds… https://t.co/ki0glwZNCV +04/24/2018,Comedians,@amyschumer,"Hear my full conversation with @Oprah in the latest Oprah's #SuperSoulConversation Podcast, out TODAY! @OWNTV… https://t.co/qaH3ws2568" +04/23/2018,Comedians,@amyschumer,"Hear my full conversation with @Oprah in the latest Oprah's #SuperSoulConversation Podcast, out TODAY! @OWNTV… https://t.co/tlcwwuINpQ" +04/19/2018,Comedians,@amyschumer,@IFeelPretty hits theaters TOMORROW! Get your tickets now: https://t.co/Zr84FZ2aYh https://t.co/YDJ6OZwLaP +04/19/2018,Comedians,@amyschumer,"RT @IFeelPretty: ""While I mostly feel good about myself now, I know plenty of other women don't. I wanted to make I Feel Pretty to empower…" +04/17/2018,Comedians,@amyschumer,Watch @emrata Aidy Brant and I show you the last thing on our phones @glamourmag https://t.co/kYrFlY9e3G +04/16/2018,Comedians,@amyschumer,@IFeelPretty is in theaters in 4 DAYS!!! Get your tickets now: https://t.co/TQykSePthJ https://t.co/FUnpR80L5T +04/14/2018,Comedians,@amyschumer,6 DAYS‼️‼️‼️‼️get your tickets NOW https://t.co/BXfFVDaRcD https://t.co/zSWCL7ZJ19 +04/13/2018,Comedians,@amyschumer,@IFeelPretty is out in theaters in ONE WEEK!! Get your tickets! https://t.co/TQykSf74Gj https://t.co/wZpIXv0vJ2 +04/10/2018,Comedians,@amyschumer,@katiecouric is unpacking the most complicated issues we're facing as a country today on #AmericaInsideOut. Join us… https://t.co/uz4DiFuZfy +04/10/2018,Comedians,@amyschumer,Get your tickets for @IFeelPretty now! Open in theaters April 20th! https://t.co/BXfFVDaRcD https://t.co/YWXj8cEIKV +04/06/2018,Comedians,@amyschumer,"No one tells funnier stories than my friend, old school comedian D.C. Benny, whose new album drops today. He's the… https://t.co/fYV6bZzaUA" +04/06/2018,Comedians,@amyschumer,RT @TommyMcFLY: Don’t call @amyschumer a “Lady Boss” she schooled me on how we should talk about women who lead. Thoughts? Thanks Amy Schum… +04/02/2018,Comedians,@amyschumer,Love a good TED talk https://t.co/fX6ZxmqSkL +04/02/2018,Comedians,@amyschumer,RT @jimmykimmel: this is extremely dangerous to our democracy https://t.co/D1T8Z7J2Wn +03/26/2018,Comedians,@amyschumer,We are @Twitter! #IFeelPretty https://t.co/EV3OG4QQO8 +03/25/2018,Comedians,@amyschumer,"RT @SenSchumer: Yesterday, I marched alongside amazing kids and worried families who are doing things Congress & NRA loyalists have long re…" +03/22/2018,Comedians,@amyschumer,Watch my homies!@RachelFeinstein @aparnapkin @ginayashere https://t.co/WWs94qcavm +03/14/2018,Comedians,@amyschumer,RT @emilymusilchrch: Stand with these students & @pvpspringfield today to hold @SmithWessonCorp accountable! #HowManyMore #BePartOfTheSolut… +03/14/2018,Comedians,@amyschumer,"On Saturday, March 24th, #IWillMarch in solidarity with Parkland students for common-sense gun safety laws. Will yo… https://t.co/o5ISuk3600" +03/03/2018,Comedians,@amyschumer,APRIL 20th! Woot woot! @IFeelPretty #ifeelpretty https://t.co/eSAMEv5puo +02/27/2018,Comedians,@amyschumer,Please call your congressperson today to vote YES on HR1865 #FOSTA #SESTA: https://t.co/ZjujurMiXT… https://t.co/SgZltpi9JE +02/23/2018,Comedians,@amyschumer,"The NRA’s media arm, NRATV, uses dangerous rhetoric to spread fear so people will buy more guns. + +Add your name to… https://t.co/i9d7ZR5sJL" +02/21/2018,Comedians,@amyschumer,RT @Lynetterice: Get a first look at the @JuddApatow documentary about the one and only Garry Shandling @HBODocs https://t.co/xj41kOLN59 ht… +02/18/2018,Comedians,@amyschumer,"On March 24, students are leading marches in DC & across the country to demand that lawmakers do their jobs and tak… https://t.co/895fFZt18q" +02/18/2018,Comedians,@amyschumer,"RT @AngeloRoefaro: SHOCKING BUT TRUE: Despite tragic mass shootings, just-released White House budget would cripple the gun background chec…" +02/14/2018,Comedians,@amyschumer,Get your tickets now for @clusterfest! https://t.co/YNJIdVUzpX +02/08/2018,Comedians,@amyschumer,"Change everything, without changing anything. Watch the trailer for my new comedy, I Feel Pretty – coming soon to t… https://t.co/OtQiPN38DM" +02/07/2018,Comedians,@amyschumer,Check out the poster for @IFeelPretty! Trailer tomorrow! https://t.co/b7ybRcXBgb +02/05/2018,Comedians,@amyschumer,"RT @ComedyCentral: Lady Doritos are here to kill satire. #InsideAmy +https://t.co/gg2ejiSRgc" +02/03/2018,Comedians,@amyschumer,RT @msjwilly: Heyyy Hoochies! Tonight is THE night! The first of our FOUR @2DopeQueens specials premieres this evening on HBO at 11:30pm!!… +02/01/2018,Comedians,@amyschumer,Thanks for having me on Katie! https://t.co/XgFIDwTwxA +02/01/2018,Comedians,@amyschumer,"RT @TIMESUPNOW: Members of Congress, standing for safety and equity in the workplace at the #SOTU. Across all industries, the message is st…" +01/30/2018,Comedians,@amyschumer,Please give what you can to help Luke! https://t.co/oQpHDYgvrU +01/30/2018,Comedians,@amyschumer,"RT @rosemcgowan: Today, I rise. ✊ +#CitizenRose #BeBrave https://t.co/2hV9WK6lij" +01/27/2018,Comedians,@amyschumer,Still don’t have a copy of #TheGirlWithTheLowerBackTattoo? Get the audiobook edition read by yours truly at the new… https://t.co/yGvBzj57Vr +01/23/2018,Comedians,@amyschumer,"Today's school shooting in KY was at least the 10th school shooting nationwide in 2018, and third in JUST TWO DAYS,… https://t.co/GzriVb1mhi" +01/18/2018,Comedians,@amyschumer,RT @shondarhimes: Just in case you’re wondering how to dismiss foolishness: https://t.co/ErvHKPsFF4 +01/16/2018,Comedians,@amyschumer,"RT @BBCNewsPR: In an interview with the BBC’s @StephenSackur, @AshleyJudd talks about the #MeToo movement, Weinstein and James Franco. For…" +01/14/2018,Comedians,@amyschumer,RT @ambertamblyn: Hi @Disney and @RobertIger . It looks like you’re about to have two seats open on your board of directors. We call on you… +01/12/2018,Comedians,@amyschumer,"Our fight for the rights of immigrants and #Dreamers is a fight for racial justice, for the end of anti-Blackness &… https://t.co/8QywUcAfGO" +01/11/2018,Comedians,@amyschumer,WATCH: https://t.co/SZI14o3THn JOIN US: We need to urge Congress to amend #CDA230 on National Human Trafficking Aw… https://t.co/gvQ5IMoreC +01/07/2018,Comedians,@amyschumer,"RT @AmericaFerrera: Grateful to our Activist Sisters for gracing the red-carpet today with their extraordinary work and voices, which repre…" +01/07/2018,Comedians,@amyschumer,RT @AmericaFerrera: Wonder Woman says #TIMESUP !!!!! #WhyWeWearBlack https://t.co/NJTsJ07CXW +01/04/2018,Comedians,@amyschumer,RT @MichelleObama: So proud of my friend and former chief of staff @TinaTchen and the other strong women banding together to fight sexual h… +12/27/2017,Comedians,@amyschumer,"New Orleans! Spend New Year’s Eve with me and @anidifranco, @RachelFeinstein, @vanessabayer and other special guest… https://t.co/lsHoq922gw" +12/26/2017,Comedians,@amyschumer,"""Thanks for loaning me the #Q7 @audi I loved it! """ +12/19/2017,Comedians,@amyschumer,"Tonight, I’m on #FindingYourRoots discovering my ancestry with @HenryLouisGates. We’ll be on your local @PBS statio… https://t.co/x0ymzrKRUg" +12/06/2017,Comedians,@amyschumer,"DEAR GOP: Pass the #DreamActNow or families will be destroyed. Watch this video feat @rosariodawson & tell + us whic… https://t.co/UuXom5PctF" +12/05/2017,Comedians,@amyschumer,"Right now, the NRA and its allies in Congress are pushing through a bill that would force YOUR state to abide by th… https://t.co/9q0hMo6wgo" +11/29/2017,Comedians,@amyschumer,New Orleans show on New Years Eve! Come see me and my favorite musician of all time @anidifranco and I’ll be perfor… https://t.co/uxblxrGuBu +11/19/2017,Comedians,@amyschumer,Republican tax bill includes tax break for those with private jets. Wonder if it comes with free peanuts? https://t.co/SAsPy7iNcc +11/17/2017,Comedians,@amyschumer,"HELL YES! @ambertamblyn released a collection with @mysisterorg to fight assault, exploitation and trafficking. 25%… https://t.co/NyTFwDwLV4" +11/15/2017,Comedians,@amyschumer,RT @SenWarren: The news just broke – Senate Republicans want to rip health insurance away from 13 million Americans... through the tax bill… +11/09/2017,Comedians,@amyschumer,Let’s share how Americans can get health insurance. Open enrollment happens now thru Dec. 15. If you aren't covered… https://t.co/IG8M0gAJf1 +11/06/2017,Comedians,@amyschumer,https://t.co/He1aR7N5kg Spread the word! This film has every element of what never giving up can do for you.… https://t.co/9zTtVUToFF +11/03/2017,Comedians,@amyschumer,"Do not miss my girl @rachelfeinstein taping her new @netflix special in LA this Sunday, Nov 5! Get free tickets here +https://t.co/xXyaLUaX28" +10/18/2017,Comedians,@amyschumer,"RT @MeteorShowerBwy: .@AmySchumer, @KeeganMKey, @LauraBenanti and @JeremyShamos challenge @Springsteen to the #WaitressPieChallenge for @Ko…" +10/18/2017,Comedians,@amyschumer,Tell Congress to #RejectTheNRA's radical agenda. Text REJECT to 64433 & @Everytown will connect you with your Rep. https://t.co/5JNMjSZ11U +10/17/2017,Comedians,@amyschumer,Watch me on @JimmyKimmel – Tonight on ABC! #KimmelINBrooklyn https://t.co/Q2ICQurtoY +10/06/2017,Comedians,@amyschumer,"FYI to @WhiteHouse: Mad-men era, when the boss decided what kind of hlthcare a woman is entitled 2 is thing of past! https://t.co/YKUvx4rF3c" +10/02/2017,Comedians,@amyschumer,"Today we mourn for Las Vegas, tomorrow we fight for them. +Join the movement to end gun violence: Text ACT to 64433.… https://t.co/RTrZjyoR1H" +09/13/2017,Comedians,@amyschumer,RT @ambertamblyn: My Open Letter to James Woods by Amber Tamblyn | Teen Vogue https://t.co/7LEzRc8q4M +09/06/2017,Comedians,@amyschumer,Call your Senator/Representative to amend #CDA230. Join me in supporting trafficking survivors. #IamJaneDoeFilm… https://t.co/4cG142358n +09/01/2017,Comedians,@amyschumer,Happy Labor Day weekend! Make sure to pack your copy of #TheGirlWithTheLowerBackTattoo. https://t.co/vdp6oT9G8s +08/27/2017,Comedians,@amyschumer,My girls and I have a new Girls Night tradition- putting our $ where our mouths are. Join us in donating #DACA… https://t.co/eW7dn0yMf0 +08/24/2017,Comedians,@amyschumer,Why yes my book is very artsy https://t.co/vdp6oT9G8s https://t.co/sLO43ZYBH1 +08/16/2017,Comedians,@amyschumer,Want to write your own version of #TheGirlWithTheLowerBackTattoo? Amy Libs: https://t.co/J5BNpdS5XS +08/12/2017,Comedians,@amyschumer,It’s my book on a table! I hope you get it too! https://t.co/vdp6oT9G8s https://t.co/Lx36EHeHhp +08/08/2017,Comedians,@amyschumer,#TheGirlWithTheLowerBackTattoo is out in paperback today! https://t.co/LrTGDaOnjr +08/07/2017,Comedians,@amyschumer,.@stevemartintogo wrote a hilarious play @MeteorShowerBwy & I get to do it w/ @KeeganMKey @LauraBenanti @AlanTudyk… https://t.co/UMW6HZVQOD +08/04/2017,Comedians,@amyschumer,The paperback of my book #TheGirlWithTheLowerBackTattoo comes out on Tuesday! Don’t forget to pre-order your copy. https://t.co/vdp6oT9G8s +07/26/2017,Comedians,@amyschumer,"CAN'T STOP WON'T STOP #SaveACA & protect care @PPFA - tweet your Senators +NOW and tell them to vote NO #StandwithPP https://t.co/PDaKJw8702" +06/26/2017,Comedians,@amyschumer,THIS WEEK millions of patients could lose health care access at @PPFA. Tell your Senator to #StandWithPP now! https://t.co/PDaKJwpIoC +06/22/2017,Comedians,@amyschumer,"Senate released #Trumpcare bill that ""defunds"" @PPFA. TWEET YOUR +SENATORS NOW & tell them to #StandwithPP https://t.co/PDaKJw8702" +06/14/2017,Comedians,@amyschumer,".@clairecmc🔥-calling out Senators secretly moving a bill that would gut healthcare & ""defund"" PP👎#StandWithPP https://t.co/ZxE1GaFWqd" +06/14/2017,Comedians,@amyschumer,Please consider donating to mental illness here and reading the story of my brothers childhood friend https://t.co/6VggAhZARH +06/05/2017,Comedians,@amyschumer,Climate change denier https://t.co/XC5HUWJVFY +06/05/2017,Comedians,@amyschumer,Boston! Go see @RachelFeinstein this Thurs thru Saturday! Get them tickets now https://t.co/Cb1DGF5ATZ +06/05/2017,Comedians,@amyschumer,Birth control! Such a great time for women! https://t.co/xsYCQahknH +06/05/2017,Comedians,@amyschumer,Dr. Congress https://t.co/Ys7zfWaE5m +06/02/2017,Comedians,@amyschumer,"I #WearOrange for Ronique Williams. One of the 93 killed, and hundreds injured by gun violence every day in America." +05/20/2017,Comedians,@amyschumer,Nyc go see @ambertamblyn in #CanYouForgiveHer @VineyardTheatre you will love every second like I did. https://t.co/md3eXGN13J +05/18/2017,Comedians,@amyschumer,Turn hashtags into action! Watch #ActivismIRL live panel https://t.co/O8rN9BbDUB 5pm ET. @iwillharness @Twitter… https://t.co/aaGEbPw6bq +05/14/2017,Comedians,@amyschumer,Mom always has your back. #SnatchedMovie🌴 is in theaters now! #MothersDay https://t.co/PvrUTIEJU1 +05/13/2017,Comedians,@amyschumer,#SnatchedMovie🌴 is now playing in theaters everywhere! https://t.co/5sVxJZR8Qy https://t.co/CFEtz6ycwp +05/12/2017,Comedians,@amyschumer,"RT @JuddApatow: Let's raise some money for @ACLU to fight Trump! May 17 at @LargoLosAngeles @ThatKevinSmith, FRED ARMISEN & more!!! https:…" +05/12/2017,Comedians,@amyschumer,"The local flavor, the third wheel and the survivor. See #SnatchedMovie🌴 in theaters today! https://t.co/5sVxJZR8Qy https://t.co/KSMaV5L49M" +05/12/2017,Comedians,@amyschumer,Don't know what to get Mom for Mother's Day? 👉 Get your #SnatchedMovie🌴 tickets now 🎟: https://t.co/5sVxJZR8Qy https://t.co/aPpvstMhiv +05/11/2017,Comedians,@amyschumer,Whale what? #SnatchedMovie🌴 is in theaters tonight! Get your tickets: https://t.co/5sVxJZR8Qy https://t.co/ypRLKqqhOu +05/10/2017,Comedians,@amyschumer,Get Snatched this Friday. Get your tickets now: https://t.co/5sVxJZR8Qy #SnatchedMovie🌴 https://t.co/444UpRSnbO +05/10/2017,Comedians,@amyschumer,Send thoughts and prayers… and wine. 🍷🙏 #SnatchedMovie🌴 https://t.co/Drvo2WgY0N +05/08/2017,Comedians,@amyschumer,"Watch Wanda and I get out a of a tough situation that was completely, 100% not my fault. #SnatchedMovie #May12… https://t.co/6KP7foL82Y" +05/04/2017,Comedians,@amyschumer,"🚨ALERT🚨 House just voted to repeal the ACA & ""defund"" @PPFA. Call your Senators to stop the bill→ +https://t.co/qDeHgGFq3o #IStandWithPP" +05/03/2017,Comedians,@amyschumer,Watch me with @stephenathome on @colbertlateshow tonight! https://t.co/Whtr5ZKbVJ +04/28/2017,Comedians,@amyschumer,Congratulations @maryjblige on your inspirational album #StrengthofaWoman https://t.co/l7JgauEp5A +04/18/2017,Comedians,@amyschumer,RT @ambertamblyn: Full trailer for PAINT IT BLACK is up. Get ready for two incredible performances by Janet McTeer and @ShawkatAlia https:… +04/13/2017,Comedians,@amyschumer,"RT @EW: .@amyschumer & @goldiehawn take us on the set of the summer’s funniest, wildest and blondest comedy #SnatchedMovie! https://t.co/CR…" +04/12/2017,Comedians,@amyschumer,"RT @Snatched_Movie: This is it. You’re in the middle of it. @AmySchumer & @ParkRandall star in this exclusive clip from #SnatchedMovie🌴, in…" +04/11/2017,Comedians,@amyschumer,"RT @ambertamblyn: OH LOOK. Teaser trailer for PAINT IT BLACK, the film I wrote/directed exploring women's grief is now live. Link in bio. I…" +04/05/2017,Comedians,@amyschumer,Proud to be on the cover of @instyle! Thank you @laurabrown99 @kimmykuppkakes @andrea_tiller @cristinaehrlich… https://t.co/gTeZ7BdH7R +04/04/2017,Comedians,@amyschumer,See what life is like with 20% less. Seem crazy? So is the gender pay gap. #20PercentCounts https://t.co/nTWbF24W9y +04/04/2017,Comedians,@amyschumer,#quitthisshit https://t.co/wY7zPWfban +03/30/2017,Comedians,@amyschumer,...It works! See me and @goldiehawn in #SnatchedMovie🌴 this Mother's Day https://t.co/0MdgiH6V8y +03/28/2017,Comedians,@amyschumer,Word to your Mother. See me and @GoldieHawn in #SnatchedMovie🌴 https://t.co/crVmif9rAt +03/25/2017,Comedians,@amyschumer,ahhhhhhhhhhhhhhhhh https://t.co/qdNcLQMO3G +03/23/2017,Comedians,@amyschumer,House couldn’t get their vote on today to “defund” @PPFA-so they’re trying tomorrow. Tweet your Rep. https://t.co/YdGCOJZ158 #IStandwithPP +03/21/2017,Comedians,@amyschumer,When your boss asks you to come in an hour early #SnatchedMovie🌴 https://t.co/hIyUb8sL7j +03/21/2017,Comedians,@amyschumer,Couldn't be prouder of my sisters https://t.co/3MzYuaESNw +03/20/2017,Comedians,@amyschumer,.@JimNorton's new special on Netflix is hilarious https://t.co/dapyscckGe +03/14/2017,Comedians,@amyschumer,Only thing better than getting the final rose? Drinking rose on a vacay with your momay #TheBachelor #SnatchedMovie… https://t.co/kJIf9m23Yr +03/13/2017,Comedians,@amyschumer,#Snatchedmovie poster is here! https://t.co/KTYYp2gVo5 +03/07/2017,Comedians,@amyschumer,"RT @Skype: Tonight till Fri, you're invited to chat all things comedy with @RachelFeinstein. Just add SkypeComedy as a contact to join #Sky…" +03/07/2017,Comedians,@amyschumer,Blow the whistle. #SnatchedMovie🌴 https://t.co/skdEOFgpRM +03/02/2017,Comedians,@amyschumer,Mom hugs 😬 #SnatchedMovie🌴 https://t.co/hty3FVSvKB +03/02/2017,Comedians,@amyschumer,Watch me tonight on @latenightseth #theleatherspecial https://t.co/XLEp0im9tn +03/01/2017,Comedians,@amyschumer,2 days til my show at @FoxwoodsCT. https://t.co/sENv7TAzS7 +02/28/2017,Comedians,@amyschumer,RT @enews: Lessons in posting a nude selfie: @amyschumer spills in a sneak peek of her new @netflix special. Tonight on #ENews! https://t.c… +02/28/2017,Comedians,@amyschumer,March 7th! #TheLeatherSpecial https://t.co/HeqgIm0ESS +02/28/2017,Comedians,@amyschumer,Going on vacation with your mother #SnatchedMovie🌴 https://t.co/NBvo0KGa9a +02/23/2017,Comedians,@amyschumer,This is an @oldnavy commercial I did about pants #oldnavystyle #aboutpants https://t.co/WzmhPGGePI +02/22/2017,Comedians,@amyschumer,NOT YOU. #SnatchedMovie🌴 https://t.co/HK5fuyWEeJ +02/22/2017,Comedians,@amyschumer,"LA, please help bring Milek home safely! Contact the police if you have any info! RT https://t.co/NOdtqEjU37" +02/07/2017,Comedians,@amyschumer,Watch me and @GoldieHawn get Snatched Mother’s Day Weekend. Watch the new trailer now. #SnatchedMovie🌴 https://t.co/KaWyzeuoX8 +02/03/2017,Comedians,@amyschumer,"Can't wait to see @katiecouric's #GenderRevolution. It airs Feb. 6 at 9/8c on @NatGeoChannel, don't miss it!! https://t.co/ZRwDtGmo5r" +02/03/2017,Comedians,@amyschumer,RT @SenGillibrand: .@AmySchumer Got your voicemail! Thanks for the call—and thanks to all NYers who gotten #offthesidelines to make calls.… +02/01/2017,Comedians,@amyschumer,"RT @SarahKSilverman: My friend @SuliMcCullough made DyingLaughing, w/ @amyschumer @chrisrock @KevinHart4real available 4 preorder: https://…" +01/29/2017,Comedians,@amyschumer,RT @Adweek: How Airbnb and Lyft are taking action against Trump’s immigration ban (as #DeleteUber becomes a trending topic): https://t.co/Q… +01/29/2017,Comedians,@amyschumer,RT @SenSchumer: The Elias Family has been in the US for a month. I asked Hazem what he wants to be when he grows up: A policeman. And his s… +01/24/2017,Comedians,@amyschumer,I am adding a 2nd show at FOXWOODS on March 2nd! Tickets on-sale now:https://t.co/hgIodtrHHU +01/20/2017,Comedians,@amyschumer,"I had the pleasure of hanging with @neiltyson, this video is not to promote anything but I hope it makes you smile https://t.co/w9tLvJrZXG" +01/17/2017,Comedians,@amyschumer,"RT @nowthisnews: This is the little-known history behind America's most famous health care provider – thanks to @lenadunham, @mindykaling a…" +01/14/2017,Comedians,@amyschumer,I'll be at FOXWOODS on March 2nd! Get tickets here: https://t.co/hgIodtrHHU +01/10/2017,Comedians,@amyschumer,RT @netflix: Totally fearless and always hilarious: @AmySchumer's new stand-up special debuts March 7 https://t.co/XR8dLwAyHd +12/16/2016,Comedians,@amyschumer,.@TheRock Thank you so much! Please camp out all night in your living room to simulate. +12/16/2016,Comedians,@amyschumer,Watch me get snatched with @GoldieHawn this Mother’s Day weekend. Watch the new trailer for #SnatchedMovie🌴 https://t.co/02IWiIx7af +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Rachel D'Avino, 29, had just started as a teacher's aide + +#SandyHook https://t.co/dyoJVJTCy4" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Dawn Hochsprung, 47, was the school principal + +#SandyHook https://t.co/OpPk76AWZl" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Teacher's aide Anne Marie Murphy, 52, was found having tried to shield one of the 6 year old students + +#SandyHook https://t…" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Lauren Rousseau, 30, was a teacher + +#SandyHook https://t.co/oj916yznSY" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Mary Sherlach, 56, was the school psychologist + +#SandyHook https://t.co/XmzGeyauMT" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: 1st grade teacher Victoria Leigh Soto, 27, was killed protecting her students + +#SandyHook https://t.co/VHJik6k0P5" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Charlotte Bacon, 6 + +#SandyHook https://t.co/bKUZsxRveX" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Daniel Barden, 7 + +#SandyHook https://t.co/9Oq2RcpqiC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Olivia Engel, 6 + +#SandyHook https://t.co/MOGCJDPa5E" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Josephine Gay, 7 + +#SandyHook https://t.co/mpw4x4glsS" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Dylan Hockley, 6 + +#SandyHook https://t.co/Vu0WWWp6BF" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Madeleine Hsu, 6 + +#SandyHook https://t.co/hVIBvIDwg2" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Catherine Hubbard, 6 + +#SandyHook https://t.co/1b7SmW9Q69" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Chase Kowalski, 7 + +#SandyHook https://t.co/uTCpfJTj5D" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jesse Lewis, 6 + +#SandyHook https://t.co/xXHWyCJpIC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Ana Márquez-Greene, 6 + +#SandyHook https://t.co/GByT82JFaC" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: James Mattioli, 6 + +#SandyHook https://t.co/hvAgW57rQj" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Grace McDonnell, 7 + +#SandyHook https://t.co/LZ8Ysf3axH" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Emilie Parker, 6 + +#SandyHook https://t.co/ShakzuvOOs" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jack Pinto, 6 + +#SandyHook https://t.co/VDq3NKNPNS" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Noah Pozner, 6 + +#SandyHook https://t.co/kxGifxAqzU" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Caroline Previdi, 6 + +#SandyHook https://t.co/s1aLnmDeVN" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Jessica Rekos, 6 + +#SandyHook https://t.co/Uv3ndK76qp" +12/15/2016,Comedians,@amyschumer,RT @jaketapper: Four years ago today. #SandyHook https://t.co/WTTvTCZes4 +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Avielle Richman, 6 + +#SandyHook https://t.co/G5xPTSrizz" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Benjamin Wheeler, 6 + +#SandyHook https://t.co/0BmMVGda9h" +12/15/2016,Comedians,@amyschumer,"RT @jaketapper: Allison Wyatt, 6 + +#SandyHook https://t.co/ZCHVZ8IbnP" +12/13/2016,Comedians,@amyschumer,Nothing worse than bumping into an ex while holiday shopping. How embarrassing for him. @oldnavy #oldnavystyle https://t.co/pdmo2CJOVV +12/12/2016,Comedians,@amyschumer,I'm on Ellen +12/12/2016,Comedians,@amyschumer,our movie has a title! @Snatched_Movie @goldiehawn https://t.co/A94Fw3fHM4 +12/12/2016,Comedians,@amyschumer,RT @TheEllenShow: OMG @AmySchumer is hilarious. Wait till you hear this story tomorrow. https://t.co/PeiLK54gsN +12/07/2016,Comedians,@amyschumer,I made a commercial with my sister who loves me and is very psyched to hang out with me @oldnavy #oldnavystyle https://t.co/wBNXOLBGiy +12/01/2016,Comedians,@amyschumer,Cousin @SenSchumer's law to stop cyber BOTS passed! Makes it easier for fans to see shows they love! #BOTSBeGone https://t.co/sk7ARFlZyb +12/01/2016,Comedians,@amyschumer,Today is World AIDS Day and this just happened. All for @RED!https://t.co/qAHbkqmHb8 +11/28/2016,Comedians,@amyschumer,.@IAmJericho just send me my call time #blessedtwin +11/19/2016,Comedians,@amyschumer,On the road reading material: @andy's #Superficial book. So GOOD! +11/19/2016,Comedians,@amyschumer,Renew your faith in humanity... grab @annakendrick47's new book #ScrappyLittleNobody +11/19/2016,Comedians,@amyschumer,Can't get over how good @joerogan's new stand-up special on Netflix. https://t.co/v6WLMTrl5Q +11/18/2016,Comedians,@amyschumer,My favorite thing I've seen all year @iamcolinquinn #TheNewYorkStory on @netflix +11/06/2016,Comedians,@amyschumer,Listen to @Lin_Manuel and make sure you vote on Tuesday. Find out where you can here: https://t.co/Zc9DGfrKLI https://t.co/F12pbefgRM +11/05/2016,Comedians,@amyschumer,RT @ambertamblyn: Nasty girls we nasty @AmericaFerrera @lenadunham @amyschumer #HillOrado #COPolitics https://t.co/cFE5cU7ILM +11/05/2016,Comedians,@amyschumer,.@TheRock I gotchu. But stay alive! +11/03/2016,Comedians,@amyschumer,#iwillvote.com https://t.co/1LDjOAxBie +11/02/2016,Comedians,@amyschumer,Louie knows what's up https://t.co/5lCs0aU9n7 also go cubs! +11/01/2016,Comedians,@amyschumer,RT @tweet_elva: @MomsDemand volunteers making tons of calls to #GOTV & having fun doing it! #ImWithHer #MomsDemandHillary https://t.co/kTF1… +11/01/2016,Comedians,@amyschumer,"RT @C_EmilyDurbin: MI moms register voters w @GloriaSteinem. ""Change comes from the bottom up"".#MomsDemandHillary @MomsDemand https://t.co/…" +11/01/2016,Comedians,@amyschumer,"RT @Rebecca_221B: Missouri @MomsDemand supporters in Springfield, Columbia & St. Louis got together today to get out the vote for @HillaryC…" +11/01/2016,Comedians,@amyschumer,RT @sbeergon: Beautiful day for phone bank! PDX @MomsDemand making calls for our Gun Sense Champ Rep Paul Evans #GunSenseMajority #MomsDema… +10/27/2016,Comedians,@amyschumer,"Information about My ""Formation"": https://t.co/xqZ4LGwxJl" +10/27/2016,Comedians,@amyschumer,I’ve picked your memoir title – find out what it is now! https://t.co/ZtdUxMz4Qo +10/24/2016,Comedians,@amyschumer,thank you @ELLEmagazine for including me! +07/02/2018,Comedians,@SarahKSilverman,😭😭😭😭😭😭 https://t.co/Xl2JKS7XAs +07/02/2018,Comedians,@SarahKSilverman,⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ https://t.co/CbR0mFvfGE +07/02/2018,Comedians,@SarahKSilverman,RT @stephenrahn13: Substitute Georgian for Texan and I am with you 100%! https://t.co/L7JdfMDrE8 +07/02/2018,Comedians,@SarahKSilverman,@p0peyelang As many could fit in my apartment. But they don’t want new parents they want THEIR parents +07/02/2018,Comedians,@SarahKSilverman,Go Ma go https://t.co/OlhSRsef3a +07/02/2018,Comedians,@SarahKSilverman,Who taught you that new messaging phrase “virtue signaling”? It’s how people who don’t stick their necks out for ot… https://t.co/nSP8ZG9prQ +07/01/2018,Comedians,@SarahKSilverman,RT @HCookAustin: Same. https://t.co/UA9W9wZelF +07/01/2018,Comedians,@SarahKSilverman,RT @HJBenjamin: Can we at least get one reverse angle of the person riding it ? https://t.co/Taq0ZNQHqN +07/01/2018,Comedians,@SarahKSilverman,RT @chrisinsilico: IMPORTANT: There is now a money trail that leads from Russia to Brexit. LeaveEU associates accepted huge financial deals… +07/01/2018,Comedians,@SarahKSilverman,"Friggin Sheen, always pandering for RTs https://t.co/QnVZ4ehucC" +07/01/2018,Comedians,@SarahKSilverman,We live in fucking insanity https://t.co/oIlGpXjcUW +07/01/2018,Comedians,@SarahKSilverman,@TriumphICDHQ @davidalangrier Yay!!! You wrote that!! You must have because I loved it +07/01/2018,Comedians,@SarahKSilverman,@jimvitola @_TheLeader @jdhlsc169 @Armi7119 @michaelianblack @DLoesch Every citizen of israel is trained to use a g… https://t.co/5Ucqnr6yzZ +07/01/2018,Comedians,@SarahKSilverman,"This hashtag is objective truth. As Mr Rogers says, “Love is at the root of everything… Love or the lack of it” https://t.co/8IdmJlIWlS" +07/01/2018,Comedians,@SarahKSilverman,"RT @bust_magazine: Sarah Silverman On ""I Love You, America"" And Trying To Understand Trump Supporters https://t.co/rl5RNj9alK https://t.co/…" +07/01/2018,Comedians,@SarahKSilverman,"RT @matthewjdowd: @SarahKSilverman @michaelianblack I am a gun-owning Texan, and want gun reform regulation, as do a majority of gun-owners…" +07/01/2018,Comedians,@SarahKSilverman,The acoustics were insane https://t.co/GsKPbHQhts +07/01/2018,Comedians,@SarahKSilverman,"I don’t think he’s talking about the members, the majority of whom want reasonable gun regulation. I think he’s tal… https://t.co/0lesnCXWeZ" +07/01/2018,Comedians,@SarahKSilverman,FUCK YOU TODD YOURE WHATS WRONG WITH HIS COUNTRY https://t.co/O6SNE5FoR2 +07/01/2018,Comedians,@SarahKSilverman,❤️ https://t.co/AmlF7LYGoZ +06/30/2018,Comedians,@SarahKSilverman,https://t.co/nqfwRuKCG3 +06/30/2018,Comedians,@SarahKSilverman,RT @lisang: Rabbi Waskow is the founder of the Jewish Renewal Movement. He was active in the civil rights movement and in the non violent p… +06/30/2018,Comedians,@SarahKSilverman,The politicians involved are mostly white men but YES- TRUTH - the same white women that voted Trump in office. As… https://t.co/lisOYDYzsv +06/30/2018,Comedians,@SarahKSilverman,♥️ https://t.co/4MK6pgt1ru +06/30/2018,Comedians,@SarahKSilverman,https://t.co/ecr059TMzX +06/30/2018,Comedians,@SarahKSilverman,The difference between humans and animals used to be that humans possess reason. Now it’s that animals have an ins… https://t.co/Er08oYpE7G +06/30/2018,Comedians,@SarahKSilverman,@chrissyteigen My first draft called him a pig’s twat but im tryin ta better myself❤️ +06/30/2018,Comedians,@SarahKSilverman,RT @dsam4a: The UK's National Health Service spared @robdelaney's family from financial stress while they endured the grief of losing their… +06/30/2018,Comedians,@SarahKSilverman,As a comic this is trite as fuck but IF MEN WERE THE ONES WHO GOT PREGNANT THIS WOULD BE A NON ISSUE https://t.co/JQ4VpEsYsX +06/30/2018,Comedians,@SarahKSilverman,"RT @billmaher: For Republicans, the Supreme Court is all about abortion - to which they remain staunchly opposed, right up to the moment th…" +06/30/2018,Comedians,@SarahKSilverman,"I hope when he cries you show him he’s loved, & I hope when he grows up he cares more about truth than winning. https://t.co/0DLX9hif3n" +06/29/2018,Comedians,@SarahKSilverman,@Weiss_Tea @jash Forwarded to head of jash he’ll def look into it and help in any way he can +06/29/2018,Comedians,@SarahKSilverman,The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships sta… https://t.co/DcfCgqPg4I +06/29/2018,Comedians,@SarahKSilverman,⬇️⬇️⬇️⬇️⬇️⬇️⬇️ https://t.co/FhZepiZ5Ig +06/29/2018,Comedians,@SarahKSilverman,3 days ago in South Carolina Trump said (once again) that journalists were the enemy of the people https://t.co/3dbpIvTbWV +06/28/2018,Comedians,@SarahKSilverman,RT @democracy4ppl: #Annapolis #NoNRAMoney https://t.co/6wQwcTWr9w +06/28/2018,Comedians,@SarahKSilverman,"RT @_rajdesai: Top 3 lazy nicknames: + +1. Big Guy +2. Boss +3. Dr. Eugene M. Devireau" +06/28/2018,Comedians,@SarahKSilverman,Our democracy is being murdered by frauds wearing american flag pins. HAVE A GREAT THURSDAY!! +06/28/2018,Comedians,@SarahKSilverman,"Show some emotion +Put expression in your eyes +Light up if you're feeling happy +But if it's bad then let those tears… https://t.co/z0jQQpMHN7" +06/28/2018,Comedians,@SarahKSilverman,"Trumps admin tells govt officials to lie. One wouldn’t, and quit. Intimidation followed. BE ON THE RIGHT SIDE OF HI… https://t.co/5Z7ZMdOiva" +06/28/2018,Comedians,@SarahKSilverman,"“The American people should have a voice in the selection of their next Supreme Court Justice."" @SenateMajLdr when… https://t.co/k80ghS9BD7" +06/27/2018,Comedians,@SarahKSilverman,"RT @misslaneym: This is why Ocasio-Cortez won. + + https://t.co/FbWyvAJHOq" +06/27/2018,Comedians,@SarahKSilverman,RT @iamcardib: LIVE YOUR BEST LIFE AND DRINK CRANBERRY JUICE !!! https://t.co/ReVW844aXb +06/27/2018,Comedians,@SarahKSilverman,Not giving a single fuck must be terrific. It puts the ick in terrific but I’m def jelly I’m middle aged +06/27/2018,Comedians,@SarahKSilverman,what changed? Attn: @VP https://t.co/Xw58RLnxdE +06/27/2018,Comedians,@SarahKSilverman,"RT @matthewstoller: I'm going to show you just who @Ocasio2018, Justice Democrats, and DSA beat tonight. it isn't @JoeCrowleyNY. It's the m…" +06/27/2018,Comedians,@SarahKSilverman,#FollowTheMoney https://t.co/WBz5nr4Vch +06/27/2018,Comedians,@SarahKSilverman,So @scotus ruled today that the religious right’s huge # of FAKE abortion clinics are allowed to continue purposely… https://t.co/D4ZetlACx7 +06/26/2018,Comedians,@SarahKSilverman,Yes https://t.co/jcB62scX5A +06/26/2018,Comedians,@SarahKSilverman,YO NASHVILLE!!! https://t.co/dkws88AXz8 +06/25/2018,Comedians,@SarahKSilverman,"RT @JuddApatow: I wonder if @FoxNews will air this information. Hey Lachlan, what will your children think of how you responded to this hu…" +06/25/2018,Comedians,@SarahKSilverman,RT @JamesMartinSJ: Here’s a list of organizations that are mobilizing to help immigrant children separated from their families https://t.co… +06/25/2018,Comedians,@SarahKSilverman,"RT @AndyRichter: “Decorum” is mostly a tool designed to keep the ppl w the power from losing power. You have the leverage, you fuck people…" +06/25/2018,Comedians,@SarahKSilverman,RT @Travon: The America I want to live in. https://t.co/6AKho5MLJH +06/25/2018,Comedians,@SarahKSilverman,RT @JuddApatow: This is what @realDonaldTrump doesn’t want you to read because if he doesn’t have the immigration issue to run on he loses… +06/25/2018,Comedians,@SarahKSilverman,"RT @ilyamerica: We’re back Sept 6, babies! https://t.co/6a2rOuxv26" +06/25/2018,Comedians,@SarahKSilverman,♥️ #ILoveYouAmerica ❤️https://t.co/kQMBT3jUtj +06/25/2018,Comedians,@SarahKSilverman,Why don’t they call fireworks what they really are: dog terrorists. Can y’all just google image fireworks? Maybe go… https://t.co/BROT3NKpmB +06/25/2018,Comedians,@SarahKSilverman,Ah haha https://t.co/OuncFRfBmP +06/25/2018,Comedians,@SarahKSilverman,First Sunday game with my sweet ass @MooreMaya #Jordan 11s #RookToQueen https://t.co/JweljHylEx +06/25/2018,Comedians,@SarahKSilverman,Yo r u kookoo bananas? He took a pic w the kids and declined a pic w a man complicit in consciously diminishing th… https://t.co/hBzrTkEviH +06/25/2018,Comedians,@SarahKSilverman,RT @Alyssa_Milano: Hey guess what everyone? @realDonaldTrump hired undocumented immigrants for $4 an hour for a demolition project. Here ar… +06/25/2018,Comedians,@SarahKSilverman,Look for the helpers⬇️⬇️⬇️ https://t.co/G4ikxfsgcK +06/25/2018,Comedians,@SarahKSilverman,Omg you guys would love orgasms +06/24/2018,Comedians,@SarahKSilverman,RT @JoeNBC: Trump’s Centralized State is even banning the Red Cross from visiting those infants and toddlers being incarcerated by Trump. W… +06/24/2018,Comedians,@SarahKSilverman,I’m so sorry but I have to say it is exhilarating to hear THE Christine Baranski say my name. #Legend… https://t.co/YoHghQwKNm +06/24/2018,Comedians,@SarahKSilverman,RT @guybranum: Things that white children do that are adorable become crimes when black and brown children do them. Crimes that create grou… +06/24/2018,Comedians,@SarahKSilverman,RT @ilyamerica: .@SarahKSilverman is here to talk about the hard stuff –– and to maybe make a difference along the way. #ILYAmerica https:/… +06/24/2018,Comedians,@SarahKSilverman,"RT @danrsena: @GovMikeHuckabee No, @GovMikeHuckabee. You got the wrong picture. These are the Hispanic staff at the @DCCC who are fighting…" +06/24/2018,Comedians,@SarahKSilverman,"Well gee u lie 2 us so much, and U defend a man who lies pathologically &commits crimes against humanity on the reg… https://t.co/aaNswsLYup" +06/23/2018,Comedians,@SarahKSilverman,RT @ilyamerica: .@SarahKSilverman knows how to handle tough conversations –– some might even call her work prophetic. #ILYAmerica https://t… +06/22/2018,Comedians,@SarahKSilverman,RT @WestWingReport: Safety problems with the water that U.S. military members and their families drink - and the White House and EPA chief… +06/22/2018,Comedians,@SarahKSilverman,RT @Variety: .@SarahKSilverman tells @joelmchale why she can't watch his @Netflix show with her dog https://t.co/LCNjzU5XXf https://t.co/lD… +06/22/2018,Comedians,@SarahKSilverman,RT @chelseaperetti: THIS DEPRAVED PARTY HATES CHILDREN https://t.co/UAdTUVw4tQ +06/22/2018,Comedians,@SarahKSilverman,"RT @TopherSpiro: Whoa conservative George Will: Vote against the GOP and flip both houses of Congress. ""Ryan traded his political soul for.…" +06/22/2018,Comedians,@SarahKSilverman,RT @DEADLINE: .@ilyamerica's @SarahKSilverman on breaking out of the echo chamber #DeadlineContenders https://t.co/e4S6ZtO7o0 +06/22/2018,Comedians,@SarahKSilverman,"Oh, Lil Marco, it’s very common to defend your abuser. (Not as common to defend the man guilty of crimes against hu… https://t.co/rCroC3V6e6" +06/22/2018,Comedians,@SarahKSilverman,This pastor really “Gets it”https://t.co/ap5Mi4dLrD https://t.co/nrELtG0QNN +06/22/2018,Comedians,@SarahKSilverman,"RT @vulture: .@SarahKSilverman on bridging seemingly impossible political divides, and how it's changed her view of (maybe) running for off…" +06/22/2018,Comedians,@SarahKSilverman,@KayKayCannon Kay! +06/22/2018,Comedians,@SarahKSilverman,"RT @hemantmehta: The video was removed, but a mirror is here: https://t.co/DgaZc9Nhao https://t.co/T0DHZiW5ym" +06/22/2018,Comedians,@SarahKSilverman,Trump sucks (Big Oil’s dick) (and tickles their balls) https://t.co/RbFbu9qz9v +06/22/2018,Comedians,@SarahKSilverman,"RT @MykeCole: I was activated and deployed to the gulf for Deepwater Horizon. We killed ourselves out there, up to our armpits in toxic che…" +06/22/2018,Comedians,@SarahKSilverman,"RT @birbigs: Today was my birthday. No gifts please. But if you like me and you're into reuniting families, maybe kick 5 or 10 bucks to the…" +06/22/2018,Comedians,@SarahKSilverman,Oh my. https://t.co/ap5Mi4dLrD +06/22/2018,Comedians,@SarahKSilverman,FYC https://t.co/TIr5xvzTfw +06/22/2018,Comedians,@SarahKSilverman,RT @ilyamerica: Dinner conversation just got a lot more interesting now that @SarahKSilverman is at the table. #ILYAmerica. https://t.co/0f… +06/22/2018,Comedians,@SarahKSilverman,RT @LibyaLiberty: We’re...we’re at number 8 aren’t we. https://t.co/fHTMcuuAIM +06/22/2018,Comedians,@SarahKSilverman,"RT @chrislhayes: First time illegal entry into the United States is a misdemeanor. + +Lying on or omitting materially relevant information fr…" +06/22/2018,Comedians,@SarahKSilverman,"RT @votevets: Today the House GOP voted to rip food away from the 1.5 million veteran and 23,000 active duty households who rely on SNAP be…" +06/21/2018,Comedians,@SarahKSilverman,What’s for dinner? Me https://t.co/vYnLUImwo4 #ILYA @HULU +06/20/2018,Comedians,@SarahKSilverman,"RT @RepJoeKennedy: You might not know this about me, but I'm a white guy. And as a white guy, I would encourage @realDonaldTrump & his fell…" +06/20/2018,Comedians,@SarahKSilverman,RT @ahamedweinberg: The season finale of Please Understand Me is out today starring @Punkiejohnson and my damn self #bitchonchristmas https… +06/19/2018,Comedians,@SarahKSilverman,RT @GavinNewsom: Trump tried to use DREAMers as bargaining chips. That didn't work. Now he's threatening a shutdown and using children — to… +06/19/2018,Comedians,@SarahKSilverman,RT @GeorgeTakei: For your consideration. I would appreciate a read—and a share. https://t.co/llCUna6kXB +06/19/2018,Comedians,@SarahKSilverman,RT @SteveLevitan: Let me officially join @SethMacFarlane in saying I’m disgusted to work at a company that has anything whatsoever to do wi… +06/19/2018,Comedians,@SarahKSilverman,"RT @GavinNewsom: This makes me sick to my stomach. Children separated from their parents, crying out for help. Border Patrol joking that th…" +06/19/2018,Comedians,@SarahKSilverman,"RT @thejoshpatten: Please enjoy this clip of Tucker Carlson, who went to a K-12 boarding school that costs $59,750/year, and a college that…" +06/19/2018,Comedians,@SarahKSilverman,RT @OshaDavidson: Here's another way to funnel outraged into action: Donate to @HumaneBordersAZ I just did. #KeepFamiliesTogether https://t… +06/18/2018,Comedians,@SarahKSilverman,"RT @jonfavs: Family separation isn’t just a Trump policy, it’s a Republican policy. They control both houses of Congress and haven’t lifted…" +06/18/2018,Comedians,@SarahKSilverman,"RT @SarahThyre: The world is watching us, and they are appalled. https://t.co/I4so7lYSha" +06/18/2018,Comedians,@SarahKSilverman,RT @ikebarinholtz: This motherfucker pardoned Dinesh D’Souza in five minutes but when it comes to stopping children from being caged his li… +06/18/2018,Comedians,@SarahKSilverman,RT @jzipple: I don't think drawing a moral equivalence between criminal activity & fleeing violence/poverty to save your family is the best… +06/18/2018,Comedians,@SarahKSilverman,"RT @JamesMartinSJ: Like many, I've resisted using this word but it's time: the deliberate and unnecessary separation of innocent children f…" +06/18/2018,Comedians,@SarahKSilverman,RT @jacobsoboroff: JUST IN: Video from inside our tour of the Border Patrol's processing station in McAllen -- the epicenter of family sepa… +06/18/2018,Comedians,@SarahKSilverman,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Comedians,@SarahKSilverman,"RT @hwinkler4real: ON this FATHER'S DAY i just cant stop thinking about the children we have locked up , who cant get a hug , who wonder w…" +06/18/2018,Comedians,@SarahKSilverman,CC: @MELANIATRUMP @FLOTUS #BeBest https://t.co/46ts4MZSAa +06/17/2018,Comedians,@SarahKSilverman,RT @KaivanShroff: FLASHBACK: “I don’t want to rip families apart. I don’t want to send parents away from children.” — @HillaryClinton stand… +06/17/2018,Comedians,@SarahKSilverman,Good lord https://t.co/z8kg8W57md +06/17/2018,Comedians,@SarahKSilverman,"RT @MattBors: Employee quits job at for-profit child prison camp after being told to order three siblings not to hug each other. + +“[they w…" +06/17/2018,Comedians,@SarahKSilverman,Yo! @BetoORourke currently leading a march to the detention center in Tornillo. Follow live on Beto’s FB page… https://t.co/rfrKtl36oZ +06/17/2018,Comedians,@SarahKSilverman,"RT @Pontifex: Children must be able to play, study and grow in a peaceful environment. Woe to anyone who stifles their joyful impulse to ho…" +06/17/2018,Comedians,@SarahKSilverman,Take a break from the madness and watch a turtle who thinks he’s a dog https://t.co/rh1tZRA5CD +06/17/2018,Comedians,@SarahKSilverman,RT @SenJeffMerkley: Children are being ripped away from their parents at the U.S. border. WATCH this video to learn how you can fight back… +06/17/2018,Comedians,@SarahKSilverman,Proof https://t.co/5xvrOJvv7z +06/17/2018,Comedians,@SarahKSilverman,"RT @ProudResister: Dear @GOP, + +Putting children in prison camps. +WE’LL REMEMBER IN NOVEMBER. + +Targeting preexisting conditions. +WE’LL REMEM…" +06/17/2018,Comedians,@SarahKSilverman,RT @LupeValdez: I’m proud to be joining @BetoORourke @vgescobar @latinovictoryus and other Texans to let the world know that we are against… +06/17/2018,Comedians,@SarahKSilverman,"RT @PolitiFact: 11 wrong or misleading statements from @realDonaldTrump's Friday morning with reporters. +https://t.co/fNhsFJDfaZ https://t.…" +06/17/2018,Comedians,@SarahKSilverman,RT @mradamscott: The children being held in cages at our border have fathers too. Fathers who don’t know where their children are. You are… +06/16/2018,Comedians,@SarahKSilverman,RT @GeorgeTakei: The lies are never ending. via @actdottv https://t.co/z5wzeFp4xF +06/16/2018,Comedians,@SarahKSilverman,"RT @JamesMartinSJ: Federal regulations will not protect anyone from the Last Judgment. +""I was a stranger and you did not welcome me."" (Mt.…" +06/16/2018,Comedians,@SarahKSilverman,"RT @DevonRomanoff: It hurts knowing this kid since he was in diapers & knowing he’s spending his young life, in prison, while this other fu…" +06/16/2018,Comedians,@SarahKSilverman,RT @pattonoswalt: Here's a link to help fund DACA recipients renewal fees. I've kicked in 1K. To my fellow godless Hollyweird colleagues --… +06/16/2018,Comedians,@SarahKSilverman,RT @ShaunKing: Tomorrow’s cover for the @NYDailyNews. https://t.co/vCRWwALxb3 +06/15/2018,Comedians,@SarahKSilverman,RT @BaltimoreBobby3: #EarlyVoting for @BenJealous! Maryland has an opportunity to elect a real progressive as our governor. Let’s do it! ht… +06/15/2018,Comedians,@SarahKSilverman,"RT @SRuhle: The average age of a Korean War vet is 87 +@realDonaldTrump has taken a tangible positive outcome from the #SingaporeSummit & tu…" +06/15/2018,Comedians,@SarahKSilverman,RT @fakedansavage: This fucking thread. https://t.co/i1b0XVrOTa +06/15/2018,Comedians,@SarahKSilverman,"RT @ASlavitt: Yes, you are reading this right. The gun lobby is trying to remove pre-existing condition protections. + +People need to know.…" +06/15/2018,Comedians,@SarahKSilverman,RT @JamesMartinSJ: Disgraceful. Do not use St. Paul to justify unjust laws and acts of cruelty. St. Paul was an apostle not of laws (we are… +06/15/2018,Comedians,@SarahKSilverman,Im gonna hold these children hostage until Dems agree to all the shitty things I want = this is on the Dems. You’r… https://t.co/867F4n74aF +06/15/2018,Comedians,@SarahKSilverman,It’s nuts- she’s blaming Dems 4not stopping Trump from making this pure-evil policy. Man -they repeatedly point2 D… https://t.co/MvpF0vC2du +06/15/2018,Comedians,@SarahKSilverman,Had fun on @latelateshow last night but didn’t wanna touch the audience’s cummy jizzy hands https://t.co/kQhtZmFSk5 +06/15/2018,Comedians,@SarahKSilverman,RT @rweb333: @SpeakerRyan @SteveScalise https://t.co/SyI94mc4jp +06/15/2018,Comedians,@SarahKSilverman,"Fucking bot. +(sept 6th- thanks!!) https://t.co/tGJMHJwBsK" +06/15/2018,Comedians,@SarahKSilverman,@Maddyjaykurtz We’re hard at work and start back sept 6 booboo +06/15/2018,Comedians,@SarahKSilverman,@Sethrogen Holy fucking shit I’m jellyyyy +06/15/2018,Comedians,@SarahKSilverman,RT @birbigs: These people in charge are real life monsters. https://t.co/A2ajxuICS2 +06/15/2018,Comedians,@SarahKSilverman,Wow https://t.co/hGi3TYGpVR +06/15/2018,Comedians,@SarahKSilverman,This is us https://t.co/bYUEx3x3zQ +06/15/2018,Comedians,@SarahKSilverman,Rad https://t.co/QeQctRY37b +06/15/2018,Comedians,@SarahKSilverman,"RT @SimonWDC: Grandfather, been in the US for 50 years, since he was 13. He’s a legal resident. Went to high school here. Taken away by…" +06/15/2018,Comedians,@SarahKSilverman,Ok someone made this extremely random montage of me and it made me laugh https://t.co/suGkWDdBXc +06/14/2018,Comedians,@SarahKSilverman,RT @RealRonHoward: Honest question to #MAGA minders. When was America at its greatest? Can you tell me an era that reflects the “Again” tha… +06/14/2018,Comedians,@SarahKSilverman,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Comedians,@SarahKSilverman,RT @latelateshow: This is your warning that the #LateLateShow with @SarahKSilverman and @mrbobodenkirk starts right now. https://t.co/Fv29k… +06/14/2018,Comedians,@SarahKSilverman,@WilliamMatt22 Thanks for making it. You did this. Thank you +06/13/2018,Comedians,@SarahKSilverman,RT @ahamedweinberg: My favorite episode of Please Understand Me is here! I made it with @stevenfeinartz @jetzotime and @SarahKSilverman and… +06/13/2018,Comedians,@SarahKSilverman,"RT @TelevisionAcad: Now LIVE: Our Summer Auction, benefiting the @TelevisionAcad Foundation's education programs. +➤Shop & bid by June 27th!…" +06/13/2018,Comedians,@SarahKSilverman,RT @SarahKSilverman: Yo - Watch this and Love America with me! Catch up ‘cause we’re back Sept 6 babieees https://t.co/tqF3Afn2pG +06/13/2018,Comedians,@SarahKSilverman,ATTN: @JeffBezos @tim_cook @amazon @Apple https://t.co/Ttv1mDq9Ut +06/13/2018,Comedians,@SarahKSilverman,RT @TheDailyShow: Sean Hannity EVISCERATES Sean Hannity https://t.co/EOxp0FSrAR +06/12/2018,Comedians,@SarahKSilverman,Yo - Watch this and Love America with me! Catch up ‘cause we’re back Sept 6 babieees https://t.co/tqF3Afn2pG +06/12/2018,Comedians,@SarahKSilverman,"RT @sportingnews: This high school pitcher held off celebrating with his teammates so he could console his childhood friend instead. + +(📹:…" +06/12/2018,Comedians,@SarahKSilverman,@SarahThyre Oh ya cbd cream! +06/11/2018,Comedians,@SarahKSilverman,He definitely has had 3 miracles. 1) could be when he got $20M government funding for public television /children’s… https://t.co/5ogMNxn5vv +06/11/2018,Comedians,@SarahKSilverman,For a really long time the comedy women did in movies was tripping/falling I’m so jazzed that’s over +06/11/2018,Comedians,@SarahKSilverman,i smell like tiger balm a lot +06/11/2018,Comedians,@SarahKSilverman,I love you so much George https://t.co/ossKrPiouo +06/11/2018,Comedians,@SarahKSilverman,https://t.co/HKvTAkQD4n +06/11/2018,Comedians,@SarahKSilverman,"I love Bruce Springsteen. He makes us all come from Freehold, NJ" +06/11/2018,Comedians,@SarahKSilverman,@dana_vesley @LPJLeague Omg I love this +06/11/2018,Comedians,@SarahKSilverman,"And just so you don’t think birthday girl @LauraJSilverman is just a comedy level singer, here she is singing her f… https://t.co/dollgCnaiK" +06/11/2018,Comedians,@SarahKSilverman,Another @LauraJSilverman birthday song from TSSP — “The Baby Penis in Your Mind” enjoy https://t.co/Q5qEv2ZeE7 +06/11/2018,Comedians,@SarahKSilverman,In honor of bday girl sissy @LauraJSilverman here is a song we sang on the Sarah silverman program in a scene where… https://t.co/46zj7vCqNT +06/11/2018,Comedians,@SarahKSilverman,It scrambles my brain that people clutch their mfing pearls bc a comedian used a crude word while speaking truth 2… https://t.co/d8096IW7cW +06/11/2018,Comedians,@SarahKSilverman,OMG @joshgroban & @SaraBareilles are KILLING it CHILLS #TonyAwards +06/10/2018,Comedians,@SarahKSilverman,"RT @elongreen: I remember when top reporters were chastising us for reading too deeply into Trump's remarks about immigrants and ""animals""…" +06/10/2018,Comedians,@SarahKSilverman,RT @sza: I’m not brave everyday but when i am its LIFE CHANGING ! PLEASE DONT WAIT TO GET OUT OF UR HEADS !! SAY WHAT U WANT NOW !! BE WHO… +06/10/2018,Comedians,@SarahKSilverman,RT @GhostPanther: Our modern media just isn’t built to handle a story as massive as global warming. Respectable journalists are reluctant t… +06/10/2018,Comedians,@SarahKSilverman,"I stand with Puerto Rico. Join me in making a donation to support Puerto Rico, @Google is matching up to $2M!… https://t.co/AjEX4T7gcE" +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @AmarilloKenja @phoenixkhost It’s a reaction to what we are seeing. How do you see these pictures and no… https://t.co/j7nnchXZn8 +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @shoeluver67 That’s what you get from watching this monologue or is that what you get from reading the h… https://t.co/nmTUfBeYge +06/10/2018,Comedians,@SarahKSilverman,@phoenixkhost @LeoRules1 Ha wrong. Your vision of my life is wrong. 1 br apartment baby. +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @AmarilloKenja @phoenixkhost No I think we’ve all been acknowledging that. It’s a heinous stain that Tru… https://t.co/o7W4Sq6NiL +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @daniepedia Touché my friend. That said- even if the adults we are talking about were criminals (they ar… https://t.co/u3d7Ob7sl4 +06/10/2018,Comedians,@SarahKSilverman,@LeoRules1 @daniepedia Why are you hanging onto this? Criminals are criminals. Who is lying about seeking asylum? T… https://t.co/H41AyES44U +06/10/2018,Comedians,@SarahKSilverman,This is pure evil. This makes me want to fight https://t.co/iaDsmZHKlA +06/10/2018,Comedians,@SarahKSilverman,"This is what divides us. People learn about who the left is by watching foxnews or reading breitbart, twitchy etc.… https://t.co/aJjkGUNDgq" +06/10/2018,Comedians,@SarahKSilverman,"RT @ChrisMurphyCT: For years Republicans said they would protect people with pre-existing conditions. They lied. + +Instead, the Trump admin…" +06/10/2018,Comedians,@SarahKSilverman,"@CurrentGiant @Butterwomp @LeoRules1 They are people seeking asylum. +You can say that’s not true or somehow decide… https://t.co/1xSGd6YH41" +06/09/2018,Comedians,@SarahKSilverman,@wyattcenac Aww! I agree that would be incredible +06/09/2018,Comedians,@SarahKSilverman,@LeoRules1 That’s how you see refugees? +06/09/2018,Comedians,@SarahKSilverman,RT @Alyssa_Milano: We need the #ERANow. https://t.co/oFlJAGam6z +06/09/2018,Comedians,@SarahKSilverman,This show is great ♥️Go Wyatt https://t.co/fBK5fz2aCV +06/09/2018,Comedians,@SarahKSilverman,Dad Performs Ballet With Stage-Fight Stricken Daughter ❤️❤️❤️https://t.co/WbxYbsYTns via @YouTube +06/09/2018,Comedians,@SarahKSilverman,"RT @THR: “If I’m an advocate for anything, it’s to move. As far as you can, as much as you can. Across the ocean, or simply across the rive…" +06/09/2018,Comedians,@SarahKSilverman,RT @LauraJSilverman: Sickle Cell Anemia is on this list. I have nothing else to say. https://t.co/3n93FKdhNw +06/09/2018,Comedians,@SarahKSilverman,"He’s a Republican, he‘s a devout Christian, and he’s my hero + +Every single person needs to go see WON’T YOU BE MY N… https://t.co/yaUU9QLnpV" +06/08/2018,Comedians,@SarahKSilverman,"RT @Lin_Manuel: Gmorning. +YOU ARE SO LOVED AND WE LIKE HAVING YOU AROUND. +*ties one end of this sentence to your heart, the other end to ev…" +06/08/2018,Comedians,@SarahKSilverman,I love the Ramadan Diary webisodes check this out babeees https://t.co/CRpqiNEpti +06/08/2018,Comedians,@SarahKSilverman,"RT @BenJealous: Dave’s comedy and my politics have the same origin: + +Growing up in an era when more black boys & young men were headed to…" +06/08/2018,Comedians,@SarahKSilverman,RT @ablington: Anthony Bourdain had one of the only shows on tv that tried with all its might to teach Americans not to be scared of other… +06/08/2018,Comedians,@SarahKSilverman,"RT @ShaunKing: It's genuinely baffling to see people who love Muhammad Ali but hate Colin Kaepernick. + +Or how people hate Black Lives Matt…" +06/08/2018,Comedians,@SarahKSilverman,@tallfreak @LauraJSilverman Hahaha he’s a Sara-sseur! +06/08/2018,Comedians,@SarahKSilverman,"RT @ACLU: A 5 year old boy named José was sobbing on the floor, asking for his mother and father. + +This isn’t the America we want to live i…" +06/08/2018,Comedians,@SarahKSilverman,Dear members of ICE: “just following orders” is what nazis said during the Nuremberg trials. It is YOU who are doi… https://t.co/oGdyCjFWF3 +06/08/2018,Comedians,@SarahKSilverman,Omg this is 100% right! HE’S SO SHOWBIZ https://t.co/32ttqnzESR +06/08/2018,Comedians,@SarahKSilverman,Who is the actor in this? He’s playing it way over the top https://t.co/dyV0vi5FlZ +07/01/2018,Comedians,@TheEllenShow,Happy #InternationalJokeDay! Share this with your favorite joke teller. https://t.co/yX3JPk0QXs +06/30/2018,Comedians,@TheEllenShow,Happy #SaturKay! @TheKalenAllen https://t.co/r8QgEJnRDf +06/29/2018,Comedians,@TheEllenShow,Remember to make some time for yourself this summer. https://t.co/AB7tgGqdvB +06/29/2018,Comedians,@TheEllenShow,Macey’s RV went to Las Vegas! Grandma went ziplining! Check out Episode 2 right here. #ThanksSponsor https://t.co/tV1ZLUNqBu +06/29/2018,Comedians,@TheEllenShow,".@AliWong is hilarious. Please, no one ever make me have a baby. https://t.co/B4Gom4PeA0" +06/29/2018,Comedians,@TheEllenShow,"West Coast, you’re gonna see this and so much more on tonight’s episode of #LittleBigShots! https://t.co/oLCQON5Oxr" +06/28/2018,Comedians,@TheEllenShow,.@TheMandyMoore is really bucking good at this game. https://t.co/VFwRG8gZVc +06/28/2018,Comedians,@TheEllenShow,Marrying Portia was the best thing I ever got to do. I hope everyone gets to experience that joy. (You can’t all ma… https://t.co/GyJIfhgu91 +06/28/2018,Comedians,@TheEllenShow,"Happy birthday, @KelliePickler! Nobody pickles like you." +06/28/2018,Comedians,@TheEllenShow,There’s nothing better on a hot summer day than some @TheKalenAllen and Snickers Ice Cream. #ThanksSponsor https://t.co/idptN645wk +06/27/2018,Comedians,@TheEllenShow,"Someone watching Go RVing with Macey on @ellentube is gonna win $25,000! Is it you? #ThanksSponsor https://t.co/Qqu1ihTnR4" +06/27/2018,Comedians,@TheEllenShow,"Sometimes, being true to yourself can feel like the biggest risk, but there’s no greater reward. @ellentube #Pride https://t.co/8QonEn1Ddu" +06/27/2018,Comedians,@TheEllenShow,Clear the beaches. https://t.co/mBraCW7AS9 +06/27/2018,Comedians,@TheEllenShow,"Someone watching my show this week is gonna win $10,000 in my Road to Riches app! If you watched, download it here… https://t.co/GwfuiI4BpU" +06/27/2018,Comedians,@TheEllenShow,#LittleBigShots is on tomorrow night! Get ready for some major talent from some minor performers. https://t.co/Fo8svt3h0m +06/27/2018,Comedians,@TheEllenShow,"Happy birthday, @khloekardashian! This tweet is good for one hour of babysitting from Auntie Ellen. (Offer excludes… https://t.co/TLiPtgo3zB" +06/26/2018,Comedians,@TheEllenShow,"Get a head start on your 4th of July gear in The Ellen Shop! +🇺🇸 Promo code: ellenjuly20 https://t.co/PeXDMNEw4d https://t.co/9VI6IMffe1" +06/26/2018,Comedians,@TheEllenShow,Who do we think will take home the final rose? Who will drink too much rosé? Find out on this week’s Bachelorette R… https://t.co/UFNusw8pIt +06/26/2018,Comedians,@TheEllenShow,Throwback to the first time Elton John was on my show. @eltonofficial #Pride2018 https://t.co/s7ElrEumlj +06/26/2018,Comedians,@TheEllenShow,"This is my producer Alissa’s dog, Fanny, named after Fanny Brice. This felt appropriate for #Pride Week. https://t.co/AwD3y3yZXe" +06/26/2018,Comedians,@TheEllenShow,I’ll never forget the moment when @BarackObama became the first sitting president to support marriage equality. Hap… https://t.co/ohVfXtPcu7 +06/26/2018,Comedians,@TheEllenShow,.@RuPaul brought the extravaganza eleganza to my show. Celebrating #Pride on @ellentube this week! https://t.co/CjL6oa52xf +06/26/2018,Comedians,@TheEllenShow,"Happy birthday, @SeanHayes and @ArianaGrande! You have so much in common. You’re gay icons, you can hit a high E ov… https://t.co/VQ8Ot4rQGT" +06/25/2018,Comedians,@TheEllenShow,"This week, you can pay forward the adoption fee for a dog or a cat in need. Seems like a great thing to do for $25.… https://t.co/F6pDIC2hyu" +06/25/2018,Comedians,@TheEllenShow,"Happy birthday, @RickyGervais! I hope you have a ball. https://t.co/8KSfvVp51O" +06/25/2018,Comedians,@TheEllenShow,"It’s so hot! How bad do you wish you could play ""Make It Rain"" right now? https://t.co/jl0ymjiDLG" +06/25/2018,Comedians,@TheEllenShow,"Claire and @DaveCrosby are about to take you, wonder by wonder. https://t.co/xa0MxsnJNX" +06/25/2018,Comedians,@TheEllenShow,This week on @ellentube is #Pride Week! We’ve come so far. We’ve helped so many. We’re ready to fight for what come… https://t.co/Kydt3NWor4 +06/24/2018,Comedians,@TheEllenShow,.@HeadsUp has a new soccer deck! Something tells me you might wanna play it today. #WorldCup https://t.co/A71CUsU09j https://t.co/27ipi4lVX9 +06/23/2018,Comedians,@TheEllenShow,Happy #NationalPinkDay! https://t.co/CneBM8RUmK +06/23/2018,Comedians,@TheEllenShow,"It wouldn’t be #SaturKay without @TheKalenAllen! + +Watch the full clip here: https://t.co/yezQ7MhisU https://t.co/or9ekXgBPI" +06/22/2018,Comedians,@TheEllenShow,Summer vibe. https://t.co/7x4r3BNzLk +06/22/2018,Comedians,@TheEllenShow,Macey is back on the road! Check out all the fun she had in San Francisco in the first episode of Season 2 of Macey… https://t.co/a8iuUZ8Kx8 +06/22/2018,Comedians,@TheEllenShow,Amy came here all the way from China to dance on my show. It was definitely worth the trip. https://t.co/qp3i468S6a +06/22/2018,Comedians,@TheEllenShow,"Happy birthday, Meryl Streep! I hope you have a wonderful day and don’t have to give birth while reporting on the t… https://t.co/WBwVPVelVi" +06/22/2018,Comedians,@TheEllenShow,Chacha is the world’s tiniest fitness guru. She’s a Fitbit. #LittleBigShots https://t.co/eedBLQmHdE +06/21/2018,Comedians,@TheEllenShow,Pool security. https://t.co/rzxD3SMuRj +06/21/2018,Comedians,@TheEllenShow,This @KobeBryant surprise was a slam dunk. @Arike_O https://t.co/258ruascEj +06/21/2018,Comedians,@TheEllenShow,"The first time Beyoncé was on my show, she was a single lady. #TBT https://t.co/XGd7fM9hbN" +06/21/2018,Comedians,@TheEllenShow,.@StephenCurry30 and @AyeshaCurry really know how to spice things up. https://t.co/VNXaAFs7cS +06/21/2018,Comedians,@TheEllenShow,"Happy birthday, @prattprattpratt. I’ll see you tomorrow. #JurassicWorld" +06/21/2018,Comedians,@TheEllenShow,"Happy #NationalSelfieDay, Bradley Cooper. https://t.co/BoUFC6ZHuD" +06/20/2018,Comedians,@TheEllenShow,These singers are ridiculously good. #LittleBigShots is on tomorrow night! https://t.co/1EFw39t8td +06/20/2018,Comedians,@TheEllenShow,She really is brielle-iant. https://t.co/3hGgZH02Pa +06/20/2018,Comedians,@TheEllenShow,"Happy birthday, Nicole Kidman! Did you know your husband @KeithUrban has his own online dictionary? I’m learning so much from it." +06/20/2018,Comedians,@TheEllenShow,Dwayne Johnson and Kevin Hart make me happy. @TheRock @KevinHart4real https://t.co/NRnl14Qzv3 +06/20/2018,Comedians,@TheEllenShow,It’s #WorldRefugeeDay. Do an act of kindness for a refugee today. https://t.co/0JYZBYmibu +06/20/2018,Comedians,@TheEllenShow,"Bruce @Springsteen, I love you. https://t.co/8Ta0aSGumU" +06/20/2018,Comedians,@TheEllenShow,"Rachel @Maddow is a brilliant journalist, but this news was too much for her. It’s too much for me too. https://t.co/EoZ4y5bIit" +06/19/2018,Comedians,@TheEllenShow,Sounds like @RyanGosling and Harrison Ford got along great. https://t.co/CRM3TefJLU +06/19/2018,Comedians,@TheEllenShow,Who watched #TheBachelorette this week? My recap is back! https://t.co/Ygsw42ZD9f +06/19/2018,Comedians,@TheEllenShow,"This photo haunts me, but I thank @JBMoorephoto for posting it, because it captures the heartbreaking truth of what… https://t.co/raGp3BWGaN" +06/19/2018,Comedians,@TheEllenShow,Now that’s some good material. https://t.co/aKlMgvkC8S +06/19/2018,Comedians,@TheEllenShow,Are you watching my show this week? Of course you are. Can you win $10K in my Road to Riches game? Of course you ca… https://t.co/5cC6ns7Lze +06/19/2018,Comedians,@TheEllenShow,I hope @KanyeWest is happy about this. @KimKardashian https://t.co/DOZVapr6KX +06/19/2018,Comedians,@TheEllenShow,"Happy birthday, @Macklemore! I’m popping tags in your honor. Whatever that means." +06/18/2018,Comedians,@TheEllenShow,#Summer https://t.co/JRL209OdS7 +06/18/2018,Comedians,@TheEllenShow,Maura’s Navy boyfriend wrote me a letter since he knew she was going to be in my audience. He wished he could be he… https://t.co/bQ5fUwInIN +06/18/2018,Comedians,@TheEllenShow,This one’s for all the dog lovers. https://t.co/uBsMwqltfW +06/18/2018,Comedians,@TheEllenShow,Ayrton and Alex have big dreams of going to college. Watching them come true was one of my favorite things this sea… https://t.co/NAhC7X0uhb +06/18/2018,Comedians,@TheEllenShow,"I don’t care what your politics are, we can’t be a country that separates children from their parents. Do something… https://t.co/4a52Tnzi8q" +06/18/2018,Comedians,@TheEllenShow,"Happy birthday, @BlakeShelton! I wanted you to have the biggest, most wonderful birthday gift, but you already have @GwenStefani." +06/17/2018,Comedians,@TheEllenShow,"Happy birthday, @kendricklamar. You won a Grammy and a Pulitzer this year. Good luck staying humble with all that." +06/16/2018,Comedians,@TheEllenShow,".@theKalenAllen has a whole new roundup of the internet’s best videos. #SaturKay + +Watch the full clip on @ellentube… https://t.co/yc4IwlgJR1" +06/15/2018,Comedians,@TheEllenShow,Who’s ready for the weekend? https://t.co/UoeYa0PVjo +06/15/2018,Comedians,@TheEllenShow,Happy birthday to my friend @CourteneyCox! I adore you. +06/15/2018,Comedians,@TheEllenShow,I thought this would make you extra joyful today. @TiffanyHaddish @Oprah https://t.co/djKfFJssbA https://t.co/GOkRFdG9UV +06/15/2018,Comedians,@TheEllenShow,#RelationshipGoals @ChrissyTeigen @JohnLegend https://t.co/0xAysQcYMJ +06/15/2018,Comedians,@TheEllenShow,"Maesi is an incredible young dancer. I’m a big fan. West Coast, it’s almost your turn! #LittleBigShots https://t.co/rLv7QhpT4w" +06/14/2018,Comedians,@TheEllenShow,Tonight’s episode of #LittleBigShots has some amazing little ninja warriors. Don’t miss it! +06/14/2018,Comedians,@TheEllenShow,@USFigureSkating @HeadsUp @KaitlinHawayek @jeanlucbaker #NewOlympicEvent +06/14/2018,Comedians,@TheEllenShow,It’s not every day a billionaire stops by your stage. @BillGates https://t.co/WtnNGwZZSG +06/14/2018,Comedians,@TheEllenShow,This is one of my favorite performances of the season. #Havana Ooh na na @Camila_Cabello https://t.co/aRcUxbwrcy +06/14/2018,Comedians,@TheEllenShow,"I’m doing my first standup shows in 15 years. I’m coming to Seattle, San Francisco and San Diego. Come see me.… https://t.co/69iyHZZgPo" +06/14/2018,Comedians,@TheEllenShow,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/13/2018,Comedians,@TheEllenShow,This little girl is a ninja. Seriously. Don’t miss #LittleBigShots tomorrow night! https://t.co/baAHDogUdX +06/13/2018,Comedians,@TheEllenShow,Threepee https://t.co/P9brJ0D8ks +06/13/2018,Comedians,@TheEllenShow,"I’m nominated for a #TeenChoice Award! You can vote for me right here, or Snapchat a GIF of a meme or something. I’… https://t.co/j987hL0Hou" +06/13/2018,Comedians,@TheEllenShow,.@TheKalenAllen is what the internet was created for. https://t.co/oQ16WIVdMZ +06/13/2018,Comedians,@TheEllenShow,Guess who’s taking over my show today? @thekalenallen https://t.co/msfoYjid5j +06/12/2018,Comedians,@TheEllenShow,There were two very special guests in my Bachelorette Recap this week. Find out what @AshleyIaco and @Haibon_Jared… https://t.co/0UYvemvNUD +06/12/2018,Comedians,@TheEllenShow,It doesn’t get much more adorable than father-daughter singing duo Claire and @DaveCrosby. https://t.co/wQVqrPawDy +06/12/2018,Comedians,@TheEllenShow,New episodes of #LittleBigShots start Thursday! Is your little big shot ready? https://t.co/ytYIooazJb +06/12/2018,Comedians,@TheEllenShow,Nate Seltzer has to be one of my favorite guests of the season. Watch this and you’ll see why. https://t.co/yTAa5LmNTu +06/12/2018,Comedians,@TheEllenShow,Much better. #Oceans8 Week https://t.co/DQbeJVNIhl +06/11/2018,Comedians,@TheEllenShow,Send me your cute summer photos! Summer great. Summer better than great. #ellen15 https://t.co/67LY5B2mGU +06/11/2018,Comedians,@TheEllenShow,".@HowieMandel told me about Meghan Markle’s days on ""Deal or No Deal."" + +Watch the full clip on @ellentube:… https://t.co/GiPzigOjGz" +06/11/2018,Comedians,@TheEllenShow,"I was unprepared for how funny @Shaq with tiny hands would be. + +Watch the full clip on @ellentube:… https://t.co/4mb05m9E8n" +06/11/2018,Comedians,@TheEllenShow,It’s #Oceans8 Week on @ellentube! I love these women. https://t.co/8L7xqnfZ3I +06/11/2018,Comedians,@TheEllenShow,The young people will win. #MarchForOurLives #RoadToChange https://t.co/hBI32F5Rqo +06/09/2018,Comedians,@TheEllenShow,"Nobody recaps the week on the internet like @TheKalenAllen. #SaturKay + +Watch the full clip on @ellentube:… https://t.co/783774bL7u" +06/08/2018,Comedians,@TheEllenShow,"#Oceans8 opens tonight, and next week on @ellentube is ""Ocean’s 8"" Week! You don’t wanna miss either.… https://t.co/ZFQeXF6JYB" +06/08/2018,Comedians,@TheEllenShow,"#FathersDay is next weekend! You know the old saying – dads love Ellen underwear. https://t.co/PeXDMNEw4d + +Discount… https://t.co/MLkGp9iiNT" +06/08/2018,Comedians,@TheEllenShow,Cousins. https://t.co/bIqr2LAC8w +06/08/2018,Comedians,@TheEllenShow,"It’s #WorldOceansDay. By 2050, there will be more plastic waste in the sea than fish. We can change this. Sign here… https://t.co/mSj2u00faJ" +06/08/2018,Comedians,@TheEllenShow,"To everyone who’s reading this... I see you. I know the world can be a dark place, but it's better with you in it.… https://t.co/Jy1KMgaDLz" +06/07/2018,Comedians,@TheEllenShow,Hanging out with elephants at @DSWT was a dream come true. #BeKindToElephants https://t.co/sjA1tMPlCl +06/07/2018,Comedians,@TheEllenShow,"It sounds like Anne Hathaway really bonded with @Rihanna. + +Watch the full clip on @ellentube:… https://t.co/cvoZO4jku7" +06/07/2018,Comedians,@TheEllenShow,.@DarrenCriss is good at everything. Accents included. @HeadsUp https://t.co/nkG0Wx9PrL +06/07/2018,Comedians,@TheEllenShow,"Anne Hathaway is fearless... except when you scare her. + +Watch the full clip on @ellentube: https://t.co/vcyPuSgEAP https://t.co/V2Wu8E86UV" +06/07/2018,Comedians,@TheEllenShow,I ❤ Prince. I miss him. https://t.co/1uEj5CMRPi +06/07/2018,Comedians,@TheEllenShow,@DarrenCriss @HeadsUp ❤️ +06/06/2018,Comedians,@TheEllenShow,"Happy #GlobalRunningDay, everybody! I know the best way to get people to start running. https://t.co/cLijj38LfW" +06/06/2018,Comedians,@TheEllenShow,"Apparently, the “L” in @SamuelLJackson stands for ""Language Alert.” https://t.co/CAP3bK4D2k" +06/06/2018,Comedians,@TheEllenShow,"In this game you have to taste foods blindfolded while your friend is on your back. If that sounds strange, it abso… https://t.co/CPUnwQsc43" +06/06/2018,Comedians,@TheEllenShow,".@SamuelLJackson can have as many seconds as he needs in this round of ""5 Second Rule."" + +Watch the full clip here:… https://t.co/5T1jxQ1Gjv" +06/06/2018,Comedians,@TheEllenShow,@DanReynolds I told you! ❤ +06/06/2018,Comedians,@TheEllenShow,@Imaginedragons @DanReynolds This was great. Next time bring dragons. +06/06/2018,Comedians,@TheEllenShow,".@DanReynolds' new documentary, “Believer,” details his questions about his Mormon faith, and his belief in LGBT eq… https://t.co/gw5JSl7ORT" +06/05/2018,Comedians,@TheEllenShow,#TheBachelorette Recap has a special guest star this week – @TheKalenAllen! https://t.co/4PhXz7rMqn +06/05/2018,Comedians,@TheEllenShow,"Sometimes, Tuesday can feel more like Sundae. https://t.co/7XfC69UeBO" +06/05/2018,Comedians,@TheEllenShow,This game combines Tic Tac Toe and hunks... if you’re into that kind of thing. https://t.co/ktw02VCHkA +06/05/2018,Comedians,@TheEllenShow,My friend Jim Parsons told me about his new role and his dogs. https://t.co/XqxUnTFVef +06/05/2018,Comedians,@TheEllenShow,#BurningQuestions with @Diddy! That’s what I’m talking about. https://t.co/85cubgtWIq +06/05/2018,Comedians,@TheEllenShow,"Young Dylan is humble. + +Watch the full clip here: https://t.co/cVouGhCL2m https://t.co/57HXY4UNfu" +06/05/2018,Comedians,@TheEllenShow,"Happy birthday, @MarkWahlberg. Today should be a national holiday. https://t.co/xg4rtx2XEh" +06/05/2018,Comedians,@TheEllenShow,"If you want to see change in our country, today is your chance. Get up. Get out. Vote. California, Montana, Alabama… https://t.co/2n7rXgJcQj" +06/05/2018,Comedians,@TheEllenShow,RT @mindykaling: “Act natural” @TheEllenShow https://t.co/UKzVTsfGnm +06/04/2018,Comedians,@TheEllenShow,"Thank you to all of the amazing people I met on my trip, who helped make it so special. https://t.co/w4sQop7yfR" +06/04/2018,Comedians,@TheEllenShow,"This is my foster elephant, Enkesha. She was found as a baby with her trunk caught in a snare. The David Sheldrick… https://t.co/9jJ7Afv6K5" +06/04/2018,Comedians,@TheEllenShow,@Michaelraymusic Come back soon please. Your new friend already misses you. +06/04/2018,Comedians,@TheEllenShow,This love story is so surprising and absolutely beautiful. https://t.co/fKZ08yBONE +06/04/2018,Comedians,@TheEllenShow,I love giving away big checks. I never thought about how to cash them. https://t.co/f1j9TXfnAR +06/04/2018,Comedians,@TheEllenShow,.@DavidSpade listing the things you won’t find in his house is the funniest thing you’ll see all day. https://t.co/OUd2r23rSr +06/04/2018,Comedians,@TheEllenShow,".@MindyKaling and I texted all the stars of #Oceans8. Guess who texted back. + +Watch the full clip here:… https://t.co/tlV2jNvg4n" +06/04/2018,Comedians,@TheEllenShow,"I loved meeting the President of Rwanda. Thank you, @PaulKagame, for supporting @EDWildlifeFund and gorilla conserv… https://t.co/9lkgpztvNO" +06/03/2018,Comedians,@TheEllenShow,"Thank you, Angela and Robert for an incredible day at the David Sheldrick Wildlife Trust @DSWT. What you’re doing t… https://t.co/KiZ4dmB6mq" +06/02/2018,Comedians,@TheEllenShow,"Kickin’ the weekend off right with @theKalenAllen. #SaturKay + +Watch it on @ellentube: https://t.co/mjA70aXqic https://t.co/1pdromXJFF" +06/02/2018,Comedians,@TheEllenShow,This was us about to start our three-mile trek up the mountain to see the gorillas. Every moment of it was incredib… https://t.co/08SvYWjGxF +06/01/2018,Comedians,@TheEllenShow,This trip has been pretty great sofari. https://t.co/CYi2QAAuvL +06/01/2018,Comedians,@TheEllenShow,I loved every minute of this new series with @official_tWitch. Watching him surprise these students made me very ha… https://t.co/zdVZfUJeiv +06/01/2018,Comedians,@TheEllenShow,Happy birthday to one of the funniest blondes I know. It takes one to know one. @AmySchumer https://t.co/thLHQ9p696 +06/01/2018,Comedians,@TheEllenShow,".@iamcardib is a lot of fun to talk to, like a lot of fun. https://t.co/a6dlw1eDDy" +06/01/2018,Comedians,@TheEllenShow,Everything is better with @JLo. https://t.co/YilegsYkAU +06/01/2018,Comedians,@TheEllenShow,".@KymDouglas, I’m sending you love, light, and healing thoughts. From me and everyone at my show. https://t.co/kMFHmhi6YW" +05/31/2018,Comedians,@TheEllenShow,This is Dian Fossey’s desk in Rwanda. Sitting here and helping carry on her mission moved me more than I can expres… https://t.co/0WZA3yu45E +05/31/2018,Comedians,@TheEllenShow,I’ve waited my whole life to make this trip. https://t.co/J2GNciu9Oy +05/31/2018,Comedians,@TheEllenShow,"I can’t imagine what it would be like to have @iamJamieFoxx as a dad, but it sounds amazing and scary at the same t… https://t.co/yHI8widiqD" +05/31/2018,Comedians,@TheEllenShow,"Lil' Mushroom is here all the way from China! Big Crouton was very excited about it. + +Watch the full clip here:… https://t.co/SrIO0vJrmU" +05/31/2018,Comedians,@TheEllenShow,".@FallOutBoy performed their new hit, “The Last of The Real Ones.” Watch it here. https://t.co/26GTHFycLp" +05/31/2018,Comedians,@TheEllenShow,"Happy birthday, Clint Eastwood and Colin Farrell. Seems like an extra-handsome day to be born." +05/31/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: Today is the last day you can enter to win a trip to visit a wildlife sanctuary with @EllenPompeo! We can’t imagine any… +05/31/2018,Comedians,@TheEllenShow,I asked @IMKristenBell to guest host my show. She wound up dangling 30 feet in the air with @iamjamiefoxx’s daughte… https://t.co/ZGnCmYmMvA +05/31/2018,Comedians,@TheEllenShow,.@IMKristenBell picked up my hosting duties perfectly. Step 1: Scare @AndyLassner. https://t.co/iRF6QgBC98 https://t.co/wpUlTJyXpg +05/31/2018,Comedians,@TheEllenShow,".@IMKristenBell is my guest host today, and she had a lot of questions to answer about Elsa. https://t.co/SPJl19Ux3G" +05/31/2018,Comedians,@TheEllenShow,"I love being a part of this video, and I love you, @AdamLevine. @Maroon5 #GirlsLikeYou https://t.co/Jn5ly9t5Yy" +05/31/2018,Comedians,@TheEllenShow,@DebraMessing @SeanHayes It worked for my DJ. +05/31/2018,Comedians,@TheEllenShow,@SeanHayes You were hilarious and charming and wonderful just like I knew you would be. +05/30/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: Spending time with these gorillas changed my life. Thank you to everyone who is helping Dian Fossey Gorilla Fund @Savin… +05/30/2018,Comedians,@TheEllenShow,"I can’t begin to describe what this experience was like, or how much it means to me. I’m so grateful. https://t.co/nuoRaPsVnu" +05/30/2018,Comedians,@TheEllenShow,We found them. @EDWildlifeFund @SavingGorillas https://t.co/MXpe7gudsA +05/30/2018,Comedians,@TheEllenShow,"Zoey is only 6, and she already knows more Shakespeare than @SeanHayes. https://t.co/elNxT01fY3" +05/30/2018,Comedians,@TheEllenShow,"It’s Wednesday, but it feels more like Munnday. @OliviaMunn @SeanHayes + +Watch the full clip here:… https://t.co/op344VTluh" +05/30/2018,Comedians,@TheEllenShow,.@SeanHayes is guest-hosting my show today... in case you’re confusing him with someone else. https://t.co/lw96pQ80fs +05/29/2018,Comedians,@TheEllenShow,"#TheBachelorette is BACK, and so is my staff recap! Who are your top picks this season? https://t.co/3h3wYfdSNg https://t.co/stngILAuCy" +05/29/2018,Comedians,@TheEllenShow,This new series with @official_tWitch may be one of our best ideas yet. Watch the whole #tWitchPlease episode this… https://t.co/QUPu26J1mI +05/29/2018,Comedians,@TheEllenShow,I demanded @BrandiCarlile to perform this on my show. She literally had no choice. https://t.co/pzUl76WL7B +05/29/2018,Comedians,@TheEllenShow,The only thing better than watching people on my Scary Go Round is watching teams of people on my Scary Go Round. https://t.co/bOsxHurvHH +05/29/2018,Comedians,@TheEllenShow,"Jon Hamm told me about his first acting gig, which happened to be with my wife! https://t.co/PfnQEmyXsf" +05/29/2018,Comedians,@TheEllenShow,"Happy birthday, @LaverneCox! I hope you’re somewhere dancing with Beyoncé." +05/29/2018,Comedians,@TheEllenShow,"RT @EDWildlifeFund: Ellen, Portia, Dr. Tara Stoinski in Rwanda working with Dian Fossey Gorilla Fund @SavingGorillas. You can help! Get you…" +05/28/2018,Comedians,@TheEllenShow,It’s an itsy bitsy teeny weeny coral polka dot bikini. https://t.co/4Irj0inwR8 +05/26/2018,Comedians,@TheEllenShow,"I love this amazing proposal @official_tWitch pulled off for this couple. Thank you, @Buick, for making this show p… https://t.co/JkotGpeEHh" +05/26/2018,Comedians,@TheEllenShow,Giraffes! #giraffemanor #discoverthesafaricollection https://t.co/5mzVASvPex +05/26/2018,Comedians,@TheEllenShow,Just ordering breakfast on our vacation. #giraffemanor #discoverthesafaricollection https://t.co/UlIZmkOIxL +05/26/2018,Comedians,@TheEllenShow,Quick question: Who likes a good deal? #MemorialDayWeekend2018 https://t.co/HDBOosvc6J https://t.co/tMfNdj7Xbh +05/26/2018,Comedians,@TheEllenShow,She could’ve used a little more rehearsal. https://t.co/166wcczuMs +05/25/2018,Comedians,@TheEllenShow,.@BTS_twt has an amazing army of followers. Even Panda Express is a fan. #ThanksSponsor #BTSxEllen https://t.co/5O9lOBg24z +05/25/2018,Comedians,@TheEllenShow,He’s gonna teach that baby so much... like where to get a perm. https://t.co/wcbBfVqs3O +05/25/2018,Comedians,@TheEllenShow,How did you do in this Weally Wacky Walmart Wace? #ThanksSponsor https://t.co/AwCGtzplpH +05/25/2018,Comedians,@TheEllenShow,@donnyosmond ❤️ +05/25/2018,Comedians,@TheEllenShow,.@official_tWitch helping this sweet guy propose is absolutely going to make your whole weekend. #tWitchplease https://t.co/g3UwMIgHUk +05/25/2018,Comedians,@TheEllenShow,"I played ""What’s in My Honeypot?"" with Ewan McGregor. You heard me. @mcgregor_ewan #WinnieThePooh https://t.co/eC8i6GUbw3" +05/25/2018,Comedians,@TheEllenShow,Raise your hand if you have real love for #FakeLove. @BTS_twt #BTSxEllen https://t.co/6BbmWlt9jw +05/25/2018,Comedians,@TheEllenShow,"Happy birthday, @OctaviaSpencer! I love everything you do, even though you asked that lady about her fish-boyfriend’s penis." +05/25/2018,Comedians,@TheEllenShow,"I scared the S out of BTS. @BTS_twt #BTSxEllen + +Watch the full clip here: https://t.co/yb6o0xw9dT https://t.co/a7nuSmZ6Pv" +05/25/2018,Comedians,@TheEllenShow,#WinniethePooh is back! Check out the exclusive #ChristopherRobin trailer debut right here. It’s in theaters August… https://t.co/ZoDBKEph9Q +05/25/2018,Comedians,@TheEllenShow,You are not gonna believe what happens tomorrow. @BTS_twt #BTSxEllen https://t.co/BU63ndELj7 +05/25/2018,Comedians,@TheEllenShow,"Happy 5th birthday, @HeadsUp! Check out all the exciting new content in our birthday update! https://t.co/DghgP4rqvB https://t.co/U2C93ZWqT8" +05/24/2018,Comedians,@TheEllenShow,"Amy Poehler and @Nick_Offerman are here with some lumber. + +Watch the full clip here: https://t.co/CKVza8To7K https://t.co/irUPvZPdKr" +05/24/2018,Comedians,@TheEllenShow,#RedNoseDay is tonight on @NBC. Don’t just donate because @official_tWitch is so adorable. Do it for the kids. But… https://t.co/DK0AA24qIj +05/24/2018,Comedians,@TheEllenShow,"Now I know exactly what I’m getting @TigNotaro’s twins for their birthday. Garbage. + +Watch the full clip here:… https://t.co/4FcFY6sgE3" +05/24/2018,Comedians,@TheEllenShow,.@SterlingKBrown told me the beautiful reason why he changed his name. https://t.co/XTvpELFXLW +05/24/2018,Comedians,@TheEllenShow,"@brandicarlile @nbc I love you, and I think you’re absolutely incredible." +05/24/2018,Comedians,@TheEllenShow,"Amy Poehler and @Nick_Offerman told me if they’d ever do another season of ""Parks and Rec."" https://t.co/EMpJD2YqQr" +05/24/2018,Comedians,@TheEllenShow,"We’ve been scaring people for at least 10 years, and @SterlingKBrown may be my favorite so far. + +Watch the full cli… https://t.co/tqu3IvgdyR" +05/24/2018,Comedians,@TheEllenShow,"Here’s the first look at the new #ChristopherRobin poster. I’m still not quite sure what a “pooh” is, but this is a… https://t.co/eqNZc7l80K" +05/23/2018,Comedians,@TheEllenShow,"@Ripple @aplusk @guyoseary @EDWildlifeFund If this is what they mean by the ripple effect, I’m into it and I’m so grateful to you." +05/23/2018,Comedians,@TheEllenShow,Two. More. Days. @BTS_twt #BTSxEllen https://t.co/YB8luHx7Gi +05/23/2018,Comedians,@TheEllenShow,".@MarkWahlberg on the #RoyalWedding. + +Watch the full clip here: https://t.co/2BVLX5JleN https://t.co/M1NOS4LV2K" +05/23/2018,Comedians,@TheEllenShow,I definitely think they can dance. #SYTYCD https://t.co/ZmHxtkWA4v +05/23/2018,Comedians,@TheEllenShow,"Dickson didn’t know he was a finalist in my Dance Dare Challenge, and he definitely didn’t know he was the winner.… https://t.co/PMXNg2K9Te" +05/23/2018,Comedians,@TheEllenShow,"Thank you, @NickiMinaj, for putting me in another music video. #ChunLi #Blessed + +Watch the full clip here:… https://t.co/DOe8Cn9DNt" +05/23/2018,Comedians,@TheEllenShow,"I don’t surprise easily, but this really got me. I am so grateful. I love you both so much. @aplusk @guyoseary https://t.co/BITMK0vF5E" +05/23/2018,Comedians,@TheEllenShow,West Coast! The season finale of #SplittingUpTogether is on! Then you’ll have all summer to get excited for season 2! +05/23/2018,Comedians,@TheEllenShow,The season finale of #SplittingUpTogether starts in 5 minutes! Stop looking at this little screen and start looking… https://t.co/5I6qySmspB +05/22/2018,Comedians,@TheEllenShow,RT @EDWildlifeFund: The new EDWF #EDEllenDeGeneres shoes are perfect for any occasion... like sitting on a couch and thinking about gorilla… +05/22/2018,Comedians,@TheEllenShow,OMG. I scared @bts_twt. #BTSxEllen https://t.co/wJMrZJoU0f +05/22/2018,Comedians,@TheEllenShow,"Chewbacca bouncin’ around, bouncin’ around, bouncin’. https://t.co/Fk4LG2vxqC" +05/22/2018,Comedians,@TheEllenShow,"I caught @JackBlack hiding in my audience today. + +Watch the full clip here: https://t.co/CnTIbcxilB https://t.co/v0G5q7H32I" +07/01/2018,Comedians,@chelseahandler,Good riddance. There should be zero tolerance for any racism in this country after what we did for 250 years to bla… https://t.co/LRVPDSPbAc +07/01/2018,Comedians,@chelseahandler,"People who stand up against these violations of basic human rights are necessary and should be applauded, because t… https://t.co/AgWlItJqm9" +07/01/2018,Comedians,@chelseahandler,"@AlyssaMastro44 @JFKairport Girl, Igor you a segway for a reason" +07/01/2018,Comedians,@chelseahandler,To tell him they’re sorry that our president is such a dumb ass. https://t.co/HXJLNOovdT +07/01/2018,Comedians,@chelseahandler,"RT @thebryanpaulk: Since you’re a Republican, have you tried putting him in a cage and separating him from his mother for 2 months? https:…" +07/01/2018,Comedians,@chelseahandler,You can also vote for @Lina4HC who is running for Harris County judge and who will do more to fix this broken syste… https://t.co/aNP72TNB4S +06/30/2018,Comedians,@chelseahandler,"Now more than ever, it's crucial that we elect more pro-choice Democratic women to the House and Senate who will de… https://t.co/QQJKFR4wOL" +06/30/2018,Comedians,@chelseahandler,I like this woman. Missouri’s 1st. @CoriBush https://t.co/uPfYVl8Pe7 +06/30/2018,Comedians,@chelseahandler,RT @tedlieu: House Republicans held an emergency hearing into the investigation of Hillary's emails. They did not hold a hearing on the tho… +06/30/2018,Comedians,@chelseahandler,We need to be focused on supporting the candidates who can win and change these terrible practices this administrat… https://t.co/iKhIkYYjsu +06/30/2018,Comedians,@chelseahandler,RT @emilyslist: The Supreme Court is at stake. We need to flip two seats to take back the Senate. And we've endorsed two pro-choice Democra… +06/29/2018,Comedians,@chelseahandler,Please retweet this and make sure thes “officers” lose their jobs. https://t.co/JMkmaomJBS +06/28/2018,Comedians,@chelseahandler,If anyone thinks comparing what’s happening in our country to the Holocaust or to the handmaids tale is “ridiculous… https://t.co/LvYRz2lZ8n +06/28/2018,Comedians,@chelseahandler,You have my support @JanzforCongress https://t.co/MOrfJFDG1X +06/28/2018,Comedians,@chelseahandler,"RT @cmclymer: Sweetie, white men make up 67% of Congress, 56% of Supreme Court seats, 94% of Fortune 500 CEOs, and 44 of 45 U.S. presidents…" +06/28/2018,Comedians,@chelseahandler,"Wait. #Progressive NJ @GovMurphy protected @PPACtionNJ, voting rights, toughened gun laws, sued Trump over Dreamers… https://t.co/EnmDjDscVl" +06/28/2018,Comedians,@chelseahandler,Trump and Putin are going to meet on July 16th in Finland… Which means Trump has two weeks to get in shape to fit i… https://t.co/Qo6Z6Nqelm +06/28/2018,Comedians,@chelseahandler,"After Joe Crowley's loss, the Center for American Progress and End Citizens United are calling for Democrats to ref… https://t.co/2yjzoJQZEH" +06/28/2018,Comedians,@chelseahandler,"RT @JackiSchechner: If @realDonaldTrump ever paid for your abortion, now would be a really good time to speak up." +06/28/2018,Comedians,@chelseahandler,"From @emilyslist +Here's some good news: Nine of our candidates on the ballot yesterday in Colorado, Maryland, and… https://t.co/Qh3dFeZ13x" +06/27/2018,Comedians,@chelseahandler,You inspire me. Thanks for reminding us of our voices and our duty of goodness to each other. https://t.co/d05dWuWkGZ +06/27/2018,Comedians,@chelseahandler,"Please vote, people. https://t.co/rE781IYzZU" +06/27/2018,Comedians,@chelseahandler,I want to hear from you. What issues matter most this election year? Take 30 seconds to record a video by following… https://t.co/N85UOpdK8h +06/27/2018,Comedians,@chelseahandler,It’s about time. https://t.co/9UjkvvPLK5 +06/27/2018,Comedians,@chelseahandler,RT @ava: Ignore the women of color replacing the old guard at your own peril. Three words: Alexandria Ocasio-Cortez. https://t.co/yoXFNb4Z… +06/27/2018,Comedians,@chelseahandler,Waking up to this woman gives me a lot of hope for the future of our party and for the future of our country.… https://t.co/pcNQHCqYTD +06/27/2018,Comedians,@chelseahandler,RT @emilyslist: Congrats to @RepDMB on winning her primary! https://t.co/Z8y6XSvyoF +06/27/2018,Comedians,@chelseahandler,Congratulations! https://t.co/QML7FV7wVq +06/27/2018,Comedians,@chelseahandler,"RT @funder: Republicans in Congress are a joke. + +They just moved to censure Maxine Waters and demand her resignation. For saying people wil…" +06/27/2018,Comedians,@chelseahandler,RT @emilyslist: Congrats to @JenaGriswold on advancing through her primary! https://t.co/uQwIQfhVxk +06/27/2018,Comedians,@chelseahandler,RT @GwenGraham: It is unbelievable that @realDonaldTrump is cutting off housing assistance for hundreds of Puerto Rican families in Florida… +06/27/2018,Comedians,@chelseahandler,"RT @PodSaveAmerica: ""For the first time in history, we have recruited a Democratic candidate for every single seat in the legislature. 77 o…" +06/26/2018,Comedians,@chelseahandler,Trump has reportedly told Sarah Huckabee that he is going to “grade” her appearances in public. What a fun time tha… https://t.co/SNo1UXMktR +06/26/2018,Comedians,@chelseahandler,"RT @rgoodlaw: Further plunge into civil rights nightmare for America: + +Leaked audio footage of employee at child migrant detention facility…" +06/26/2018,Comedians,@chelseahandler,"RT @swingleft: YOU: college student dedicated to putting a check on Trump and the GOP. +WE: will train and mobilize you for the midterm elec…" +06/25/2018,Comedians,@chelseahandler,"@tedlieu I know how much scotch you drink, and you’re right. It’s not a lot." +06/25/2018,Comedians,@chelseahandler,"New York, Maryland, Colorado. There is an election on Tuesday with these @emilyslist endorsed candidates running! T… https://t.co/w3bWzVmzNF" +06/24/2018,Comedians,@chelseahandler,"New York - Get out the vote for these three women running for the House this Tuesday, June 26. +@ErinCollier2018 @liuba4congress @RepMaloney" +06/24/2018,Comedians,@chelseahandler,"Sounds like we need more people of color in office. If the consequence of Obama is Trump, then the consequence of T… https://t.co/NIbtMmJFys" +06/24/2018,Comedians,@chelseahandler,@TimChap45336298 @RepDMB @CaryKennedy That’s right! +06/24/2018,Comedians,@chelseahandler,"There’s an election in Colorado Colorado - On Tuesday, June 26, vote for @RepDMB for representative and… https://t.co/TtKdtUP7Tr" +06/23/2018,Comedians,@chelseahandler,"Maryland, on Tuesday vote for @arunamiller for representative. https://t.co/1drFzVwAwl" +06/23/2018,Comedians,@chelseahandler,"Hey New York. Get out and vote for these three women running for the House this Tuesday, June 26. +@ErinCollier2018… https://t.co/sSex8MrWUe" +06/23/2018,Comedians,@chelseahandler,"@CNN Well, what in the fuck is he waiting for?" +06/23/2018,Comedians,@chelseahandler,"@JimmyV08070562 Well, that’s nice for you, but some people need to be reminded that there is a lack of diversity at the table." +06/23/2018,Comedians,@chelseahandler,@LobotomyForABC @FLOTUS She’s an idiot who is married to a wannabe dictator. I can promote women who are strong and… https://t.co/JS4tjLEnxD +06/23/2018,Comedians,@chelseahandler,@debsstar57 Why are you following me? Why do you spend your time like that? +06/23/2018,Comedians,@chelseahandler,Who is going to enforce the rules of “decorum” with our president? https://t.co/vcTI1rxyjz +06/23/2018,Comedians,@chelseahandler,RT @tedlieu: 2300 kids were ripped away from parents with no real plan to reunite them. I can't play the @ProPublica audio of their cries f… +06/22/2018,Comedians,@chelseahandler,"This weekend, join people across the country and #StandForKids by starting a lemonade stand to raise money for grou… https://t.co/NgCUpQHRc4" +06/22/2018,Comedians,@chelseahandler,"This is a woman of color who I’ve hosted at my house, too. She’s incredible. When people tell me not to mention whe… https://t.co/qDk40Ega9h" +06/22/2018,Comedians,@chelseahandler,@deann_soqui I have plenty of Texan reps who are running. Go to my Facebook or countable page and look up Lina hidalgo! +06/22/2018,Comedians,@chelseahandler,RT @DavidLeopold: Good morning @SecNielsen. Kids don’t sleep in peace. You don’t sleep in piece. https://t.co/ha7NiTXFSZ +06/22/2018,Comedians,@chelseahandler,RT @TopherSpiro: BREAKING: The House GOP just voted a budget bill out of committee that fast tracks ACA repeal and $2 TRILLION in cuts to M… +06/22/2018,Comedians,@chelseahandler,"As i sit on a layover in Frankfurt, Germany, i have been asked by multiple people- do Americans understand what thi… https://t.co/fhUWRzhZar" +06/21/2018,Comedians,@chelseahandler,@Alyssa_Milano Love this +06/21/2018,Comedians,@chelseahandler,Another badass female running in Texas #23. I had this woman at my house and she inspired the shit out of everyone… https://t.co/PyUobBT2qr +06/21/2018,Comedians,@chelseahandler,"@debidevens @FLOTUS No, DONALD trump expedited her immigration for her. Look it up" +06/21/2018,Comedians,@chelseahandler,Maybe she’s just talking to you. https://t.co/ejzz1OLlXu +06/21/2018,Comedians,@chelseahandler,"RT @ActivateAmerica: @chelseahandler @FLOTUS SEEN ON TWITTER: +""We need to pause for a moment to appreciate the absurdity of the First +Lady…" +06/21/2018,Comedians,@chelseahandler,"@MatthewEnders2 @FLOTUS @realDonaldTrump @POTUS You’re the same person who says you can’t just vote for a woman, be… https://t.co/69rrJFRLiM" +06/21/2018,Comedians,@chelseahandler,The hypocrisy of @FLOTUS going down to the border to speak broken English to our refugees in that dumb jacket is a… https://t.co/WkA71WnYCm +06/21/2018,Comedians,@chelseahandler,Please read this article whether or not you believe refugees should be allowed in this country. They are placing ch… https://t.co/VvyxVE8cAz +06/21/2018,Comedians,@chelseahandler,"Yeah, female veterans are running throughout our country in NOVEMBER. This woman is running in Texas. Get on board! https://t.co/vG8IHzrTRF" +06/20/2018,Comedians,@chelseahandler,This is the guy running against @tedcruz in Texas and has a very good chance of beating him. We need real progressi… https://t.co/k7mKqz8Woj +06/20/2018,Comedians,@chelseahandler,"When people send their children to countries alone, it is because they are desperate to save their children from th… https://t.co/Qdv1LoscVh" +06/20/2018,Comedians,@chelseahandler,RT @TopherSpiro: .@SecAzar is this why you signed up for public service? To run baby jails? Your reputation will forever be tarnished. You… +06/20/2018,Comedians,@chelseahandler,"Guys, this is not right. This could be human trafficking. https://t.co/2zNbCfeLBk" +06/20/2018,Comedians,@chelseahandler,Alyssa Milano Discusses Trump & Crimes Against Humanity https://t.co/IXyq65aMIw via @YouTube +06/20/2018,Comedians,@chelseahandler,RT @franklinleonard: @kumailn There's an argument to be made that they actually love them more since they've established a willingness to r… +06/20/2018,Comedians,@chelseahandler,@ikebarinholtz I can’t take this anymore +06/20/2018,Comedians,@chelseahandler,This is what a leader looks like. #ChildInternmentCamps https://t.co/2fFIX9MCFK +06/20/2018,Comedians,@chelseahandler,"We just quit the UN citing “human rights abusers.” Um..,hello? All women from Trump’s administration should resign. https://t.co/xyp51UZCUq" +06/20/2018,Comedians,@chelseahandler,And here’s the woman who can flip CA #45 @katieporteroc https://t.co/QGXRAq6yBM +06/20/2018,Comedians,@chelseahandler,This is the man to flip CA #49 https://t.co/WM6U20mYjo +06/19/2018,Comedians,@chelseahandler,@mobracing1 @IngrahamAngle @AnnCoulter Anyone sending their child to a foreign botder without them is desperate for… https://t.co/XuLysPN3JT +06/19/2018,Comedians,@chelseahandler,@kumailn Congrats +06/19/2018,Comedians,@chelseahandler,"Hey @IngrahamAngle, if these detention centers are “essentially summer camps” why don’t you send your children ther… https://t.co/RlVY8yI9Gc" +06/19/2018,Comedians,@chelseahandler,"RT @TopherSpiro: 🚨🚨 BREAKING: The House GOP just released a budget bill that fast tracks ACA repeal, massive Medicare and Medicaid cuts, an…" +06/19/2018,Comedians,@chelseahandler,I’m sure all those crying babies are MS-13 members. The way to ensure permanent damage and create criminals is by p… https://t.co/kX5POV4Jrh +06/19/2018,Comedians,@chelseahandler,"RT @marycmccormack: We are very aware of the seriousness of the situation, and we're just very lucky that our children weren’t in the car.…" +06/19/2018,Comedians,@chelseahandler,RT @JasonKander: 👁❤️🇺🇸 https://t.co/btuirrf2r2 +06/19/2018,Comedians,@chelseahandler,More voter suppression in Kansas City. Pence and Trump’s guy. ⁦@KrisKobach1787⁩ let’s vote this guy out. thank you… https://t.co/2wpxAneJqI +06/19/2018,Comedians,@chelseahandler,"RT @renato_mariotti: When you have to explain to people why your policies aren't exactly like Nazi Germany, it's time to rethink your polic…" +06/19/2018,Comedians,@chelseahandler,https://t.co/WjlzryGC57 +06/19/2018,Comedians,@chelseahandler,"RT @renato_mariotti: If you live near Chicago, join me and many others on June 30th to protest the Administration's policy of separating im…" +06/19/2018,Comedians,@chelseahandler,@billyeichner Agreed +06/18/2018,Comedians,@chelseahandler,"RT @Alyssa_Milano: You are the only senator in the Democratic Party that has not signed on to the #KeepingFamiliesTogetherAct, @Sen_JoeManc…" +06/18/2018,Comedians,@chelseahandler,@jonfavs Seriously. +06/18/2018,Comedians,@chelseahandler,@Craig_Deas It doesn’t matter. Kids can’t be put in cages. That’s how you create mental problems. The parents are o… https://t.co/emIvMtIBlc +06/18/2018,Comedians,@chelseahandler,@metalnv @waltshaub Just did. Thanks +06/18/2018,Comedians,@chelseahandler,@DearBelva @waltshaub Just did +06/18/2018,Comedians,@chelseahandler,@Onlyonelov3 @Schmol55 Go fuck your self. +06/18/2018,Comedians,@chelseahandler,@breezinnn There is annonuncement on all in with Chris Hayes tonight. A march announcement +06/18/2018,Comedians,@chelseahandler,@tamralee68 @waltshaub Just reached out. Thank you +06/18/2018,Comedians,@chelseahandler,@tamralee68 @waltshaub Will do. Thanks +06/18/2018,Comedians,@chelseahandler,@mdalcorobbo @SimpleeKatyLee @GlennonDoyle @togetherrising @AbbyWambach I know them both. Already reached out. +06/18/2018,Comedians,@chelseahandler,@SimpleeKatyLee @GlennonDoyle @togetherrising Thank you. +06/18/2018,Comedians,@chelseahandler,"@alexburnsNYT @maggieNYT Not much. Everyone who works for him that seems normal in the beginning, turns evil rather… https://t.co/YlIsaySZtA" +06/18/2018,Comedians,@chelseahandler,Can someone please DM who knows of an organized movement to revolt against this latest trump abomination at the bor… https://t.co/n2xmiir5sI +06/18/2018,Comedians,@chelseahandler,@Marcus_OTF @MichaelSkolnik My god. This country is in shambles. +06/18/2018,Comedians,@chelseahandler,"Puerto Rico, #BlackLivesMatter, brown babies and children being ripped from their mothers and put in cages. Notice… https://t.co/4KBzVdC8rp" +06/18/2018,Comedians,@chelseahandler,This organization is helping Latinos to why out the vote. We need Latinos to be mobilized all across the country an… https://t.co/soZ0IS2NOh +06/18/2018,Comedians,@chelseahandler,@TheTessMorris Someone is back! +06/18/2018,Comedians,@chelseahandler,@JohnFugelsang Ya think??? +06/18/2018,Comedians,@chelseahandler,Here’s a great candidate to get rid of @DevinNunes who has obstructed justice and will break any law in the name of… https://t.co/tYE0kG8qUg +06/18/2018,Comedians,@chelseahandler,How about you just call your husband from whichever room you’re trapped in? https://t.co/dID5Cuooko +06/16/2018,Comedians,@chelseahandler,Everyone with an early model Tesla needs to be aware of this. I have one that I will not be driving again. @Tesla… https://t.co/U7rkt6Gfdl +06/16/2018,Comedians,@chelseahandler,"RT @madlinbmek: New: @BetoORourke to lead a “March to Tornillo” on Sunday (Father’s Day), to protest separation of migrant kids from their…" +06/16/2018,Comedians,@chelseahandler,@madlinbmek @BetoORourke @elpasotimes Ok. Let me see if I can get down there. +06/16/2018,Comedians,@chelseahandler,"@FollowingDougK_ @marycmccormack @Tesla First of all, this has happened before. Many times. Look it up." +06/16/2018,Comedians,@chelseahandler,@DYINGtoLlVE @marycmccormack @Tesla Any car catching on fire for no reason is not acceptable. Are you saying they d… https://t.co/wzu1rIJ6Aq +06/16/2018,Comedians,@chelseahandler,This woman is running for a very important Harris county judge position. She would be charge of many issues in Texa… https://t.co/73JsV4Fmbw +06/16/2018,Comedians,@chelseahandler,"RT @tedlieu: Dear @realDonaldTrump: Um, what elections are you talking about? Since your relatively small inauguration, DEMS WON: + +-Alabama…" +06/16/2018,Comedians,@chelseahandler,"Schlimm noted that people often misuse the Bible. In fact, the same passage Sessions cited has been used to justify… https://t.co/EhpskWanWv" +06/16/2018,Comedians,@chelseahandler,It’s more than that. Every Republican is complicit in human rights violations. https://t.co/q7vB4jljFE +06/16/2018,Comedians,@chelseahandler,@MrRetroManiac @NatashaBertrand He should have been in one 5 years ago. +06/16/2018,Comedians,@chelseahandler,"RT @thehill: Cardinal Dolan fires back at Sessions: There is ""no Bible passage"" that would justify family separation https://t.co/HIbNVpOeN…" +06/16/2018,Comedians,@chelseahandler,RT @TomSteyer: Mr. Trump and his administration are locking children in prison camps and tearing families apart at our borders. That’s why… +06/16/2018,Comedians,@chelseahandler,"@LondonBreed @SFAAACC Go, girl" +06/16/2018,Comedians,@chelseahandler,"@thegarance @kevintripp @elonmusk @Tesla I use my megaphone for everyone. Not just people I know. If you know me, you know that." +06/16/2018,Comedians,@chelseahandler,This happened to my bff today. Who drives 3 girls daily in this car. @elonmusk @Tesla I have the same model and mak… https://t.co/8uPCoqzELr +06/16/2018,Comedians,@chelseahandler,"I can’t wait until there’s (more) irrefutable proof that trump has cheated, scammed the IRS, and colluded,—and the… https://t.co/jjtmlHzgCS" +06/15/2018,Comedians,@chelseahandler,"@Rosie @NicolleDWallace Yeah, she’s awesome." +06/15/2018,Comedians,@chelseahandler,This is the man who won his primary for #CA49 and will flip this seat blue. He is the kind of candidate I am prou… https://t.co/DDZSkwTQbc +06/15/2018,Comedians,@chelseahandler,"Hey syphilis brain. It’s nice you have such sympathy for high level criminals, yet not for kids being ripped from t… https://t.co/RtBbjNqbp1" +06/15/2018,Comedians,@chelseahandler,"I always knew orange was Paul Manafort’s color. See ya later, girl." +06/15/2018,Comedians,@chelseahandler,@jonfre75 Seriously +06/15/2018,Comedians,@chelseahandler,"@craigmccu Oh, fuck you. All I do is campaign and post and advocate for candidates who are positive and care about… https://t.co/ceN07qx8pR" +06/15/2018,Comedians,@chelseahandler,@mattrett We have got to get that turtle’s emails. +06/15/2018,Comedians,@chelseahandler,@fleccas Yeah. Nothing there as usual. Trump is the problem. Not someone who ran and lost. +06/15/2018,Comedians,@chelseahandler,@COostvogels Magazines worth. While those innocent children’s photos are spread all over the walls of his cell. +06/15/2018,Comedians,@chelseahandler,@stealth_singer I can’t take it. +06/15/2018,Comedians,@chelseahandler,"I hope that when you go to prison, someone has a flag and a pole. https://t.co/F6xDERuChS" +06/15/2018,Comedians,@chelseahandler,@AwesomeTSpears Or ketamine therapy. +06/15/2018,Comedians,@chelseahandler,@MadKarmaBomber Thank you. +06/15/2018,Comedians,@chelseahandler,@onesoldiersmom That doesn’t mean anything to me except the source that it’s coming from is bored and spending his… https://t.co/FwSFAPVhii +06/15/2018,Comedians,@chelseahandler,@acehanna54 Thanks. That looks about right +06/15/2018,Comedians,@chelseahandler,@manders42019 I believe that +06/15/2018,Comedians,@chelseahandler,"@therealFranGSF @howroute Agreed. I’m angry at how much of my day this administration robs me off, but not speaking… https://t.co/7o7y3SroST" +06/15/2018,Comedians,@chelseahandler,Im pretty sure we have something called a separation between church and state in this country. Why is our attorney… https://t.co/KF6Rf0EF71 +06/15/2018,Comedians,@chelseahandler,RT @SenWarren: Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice heard and… +06/14/2018,Comedians,@chelseahandler,Thank you @briankarem for calling her on her unconscionable complicity. I’m not a mother and I know how wrong this… https://t.co/ADCJzTsbYR +06/14/2018,Comedians,@chelseahandler,@HokiePolkie @jacobsoboroff @HHSGov @chrislhayes You’re a pig. +06/14/2018,Comedians,@chelseahandler,@funder Yeah! +06/14/2018,Comedians,@chelseahandler,This is what Fox News is talking about today. Oklahoma fishermen catch 'behemoth' alligator snapping turtle - Fox N… https://t.co/uaMHgJ0AKK +06/14/2018,Comedians,@chelseahandler,"RT @JoyAnnReid: This is a must-read thread, and incredibly disturbing... a child “detention center,” in America, complete with a Trump pro…" +06/14/2018,Comedians,@chelseahandler,@Newsweek That’s what your approval rating is when you’re held hostage. +06/14/2018,Comedians,@chelseahandler,@thehill Get it. The criminality is beyond. +06/14/2018,Comedians,@chelseahandler,"What kind of world is this? Why would any American including Democrats, Republicans, and everything in between—be o… https://t.co/K6u4atCTIR" +06/14/2018,Comedians,@chelseahandler,RT @RepAdamSchiff: Lawsuit against Trump Foundation for using charity money for campaign purposes highlights need to follow the money in Ru… +06/14/2018,Comedians,@chelseahandler,"@TheMainRyan85 Yeah, that means a lot." +06/14/2018,Comedians,@chelseahandler,"RT @MadKarmaBomber: @chelseahandler . +Confucious say... +. https://t.co/9ewkuNZqwt" +06/14/2018,Comedians,@chelseahandler,@BobWilliams2057 He is the grossest +06/14/2018,Comedians,@chelseahandler,@OldGibsonND He’s too unathletic to have any aim. +06/14/2018,Comedians,@chelseahandler,@JoeVito12 Sorry/ I don’t find being controlled by Russia funny. I don’t find children at our borders—in cages—funny. +06/14/2018,Comedians,@chelseahandler,@starlasworld I’m glad. +06/14/2018,Comedians,@chelseahandler,It was the great Ivanka Trump who made up and tweeted the Chinese proverb which isn’t a Chinese proverb—“those who… https://t.co/BgAnYWrc85 +06/14/2018,Comedians,@chelseahandler,@jiffywild Check your ambien +06/13/2018,Comedians,@chelseahandler,"We had major female wins last night. This is just Virginia. Virginia Breakdown: + 4/4 @emilyslist endorsed candidat… https://t.co/vA8ajpvQJm" +06/13/2018,Comedians,@chelseahandler,"We support @dconefairwage. #VoteYeson77 on June 19 in DC to support fair wages, decent working conditions & access… https://t.co/bC7jpTNRtD" +06/13/2018,Comedians,@chelseahandler,I can’t believe Farrah Abraham got arrested before Donald Trump. What a horrible day for reality stars. +06/13/2018,Comedians,@chelseahandler,"Women are going to win so much, we are going to be tired of winning. https://t.co/Q8Nbxr4CgY" +06/13/2018,Comedians,@chelseahandler,Only republicans try to prevent elections. They don’t even deserve a capital “R.” https://t.co/ODn8HW3bUs +06/13/2018,Comedians,@chelseahandler,@SarahEMcBride @laurenduca This is what we all need to read every day to remind people that there is good within ba… https://t.co/eYVqEIZPDR +06/13/2018,Comedians,@chelseahandler,"RT @JasonKander: Nevadans voted to make universal background checks the law of the land, and the state's current attorney general has refus…" +06/13/2018,Comedians,@chelseahandler,Tonight was a great night for @emilyslist and for women throughout the country. We will stand together and see this… https://t.co/3ddpigaiwY +06/13/2018,Comedians,@chelseahandler,RT @kurteichenwald: Gee what a surprise. A January piece in the Wall Street Journal - five months ago - reported that Trump had been told b… +06/13/2018,Comedians,@chelseahandler,RT @JohnFugelsang: People who cheered Trump for defunding Planned Parenthood are now cheering him for meeting w/a govt that forces women to… +06/13/2018,Comedians,@chelseahandler,RT @Acosta: Dear Brad.. dictatorships take away press credentials. Not democracies. https://t.co/TqgCHOW0t6 +06/12/2018,Comedians,@chelseahandler,@shannonrwatts @NRA @PattyMurray It’s sick. Not protecting our children from guns is tantamount to pulling the trigger. +06/12/2018,Comedians,@chelseahandler,Trump doesn’t need notes from his meeting with Kim Jong Un because he has “one of the great memories of all time.”… https://t.co/Q18f7K2L71 +06/12/2018,Comedians,@chelseahandler,SCOTUS has sided with vote suppressors. That's why we need to win the political fight for voting rights. Join me an… https://t.co/4SXSSPNESd +06/12/2018,Comedians,@chelseahandler,"RT @TomSteyer: We knocked on 10,000 doors with @NextGenAmerica in anticipation of today’s primary in Virginia, where voters are headed to t…" +06/12/2018,Comedians,@chelseahandler,This is an organization that is doing very important work to make sure that Latinos get out the vote and that we he… https://t.co/KhOX1Qp3DG +06/12/2018,Comedians,@chelseahandler,@krassenstein @Rosie Me +06/12/2018,Comedians,@chelseahandler,"@BetteMidler Because his plan is to become a dictator and with this Republican Congress, they’ll allow it." +06/12/2018,Comedians,@chelseahandler,Today is voting day. https://t.co/J1MSZrVeKO +06/12/2018,Comedians,@chelseahandler,For Nevada and Virginia. Today is voting day. https://t.co/2Lk7M1H6hp +06/12/2018,Comedians,@chelseahandler,Today’s election guide. https://t.co/SuOg39Ldem +06/12/2018,Comedians,@chelseahandler,The Supreme Court ruling that people who haven’t voted in past elections can have their names purged from voter reg… https://t.co/Cak5FlJwZP +06/12/2018,Comedians,@chelseahandler,You mean like making enemies with all of our allies and sucking a dictator’s ass? We won’t interrupt. https://t.co/BNB9EJRg3S +06/12/2018,Comedians,@chelseahandler,RT @JasonKander: An American President celebrates the disenfranchisement of eligible voters. UnAmerican. https://t.co/a7YTDPSen0 +06/12/2018,Comedians,@chelseahandler,RT @ajplus: What's happening to immigrant kids who are separated from their parents at the border? This U.S. Senator was blocked from findi… +06/12/2018,Comedians,@chelseahandler,There is only one political party that wants to prevent people from voting. They are the Republican Party. They ar… https://t.co/8KXsNifIaJ +06/12/2018,Comedians,@chelseahandler,@kcs7272 Go take a xanax +06/12/2018,Comedians,@chelseahandler,Was on a plane and just landed. Assuming trump fixed everything with kimmy? +06/12/2018,Comedians,@chelseahandler,I wonder how many “u up?” texts Putin is going to send Trump after his meeting with Kim Jong Un. #TrumpKimSummit +06/11/2018,Comedians,@chelseahandler,The only thing we can do to counteract this disgraceful administration is vote. We must get out the vote. Every min… https://t.co/ab4lgkamen +06/11/2018,Comedians,@chelseahandler,Maine! You've got your primary election on Tuesday. There are only two pro-choice Democratic women governors in the… https://t.co/YqeRvkK6Hc +06/11/2018,Comedians,@chelseahandler,"Here's this week's @emilyslist endorsements: +✅ @Deb4CongressNM in #NM01 (She could be one of the first Native Ameri… https://t.co/QkpujMGhRZ" +06/11/2018,Comedians,@chelseahandler,Putin is giving trump talking points and actions to take to help undermine the very country he is from. We have a… https://t.co/jvolk9ok4L +06/11/2018,Comedians,@chelseahandler,"RT @KevinMKruse: You know you're a member of the United States Senate, right? You can actually do a lot more than send out some sad tweets.…" +06/11/2018,Comedians,@chelseahandler,@SethAbramson Putin +06/11/2018,Comedians,@chelseahandler,"RT @katieporteroc: Ready to #FlipTheHouse in November? I know I am. +Current polling shows us beating @RepMimiWalters— +who has voted with T…" +06/10/2018,Comedians,@chelseahandler,Nevada! Your primary election is this Tuesday. Polls will be open between 7 a.m. and 7 p.m. Confirm your polling pl… https://t.co/IWcQT7Mx5w +06/10/2018,Comedians,@chelseahandler,It’s happening tonight. This big ball of hair @Riedle and I are @ImperialTheatre at 7. #civilizedlife https://t.co/M5HXt1YGpI +06/09/2018,Comedians,@chelseahandler,@WhitfordBradley It helps. +06/09/2018,Comedians,@chelseahandler,Virginia! Your primary election is Tuesday. Polls will be open between 6 a.m. and 7 p.m. Confirm your polling place… https://t.co/TuRNCOcqZB +06/09/2018,Comedians,@chelseahandler,Let’s please get @DevinNunes out of office. @JanzforCongress is the person we want to elect that isn’t compromised… https://t.co/vrE9617Byx +06/30/2018,Comedians,@TigNotaro,"I've been @drewjanda, and tweeting for Tig has been an honor. Be kind. I'll leave you with my favorite sketch serie… https://t.co/XjgDS2gJtX" +06/30/2018,Comedians,@TigNotaro,"Here's the thing about the movie Goodfellas: the ""fellas"" are actually bad" +06/30/2018,Comedians,@TigNotaro,"RT @drewjanda: Doctor: I'm sorry, your son is very cool +Me: my god. can he still go to school +doctor: I hate to be the one to say this" +06/30/2018,Comedians,@TigNotaro,"*An episode of Chopped: We Have Food At Home Edition* +Chefs, your ingredients are: + +one hamburger bun +hot dogs +tort… https://t.co/sBDU1K8D7M" +06/29/2018,Comedians,@TigNotaro,"Have you watched Tig's new special yet? It's called ""Happy To Be Here"" and it's streaming now on @netflix! https://t.co/yXhRm7RBnl" +06/29/2018,Comedians,@TigNotaro,"RT @TransWrites: RT so your trans followers can see! + +If you are a trans comedy writer, please send an email to gracethomas@transwrites.or…" +06/29/2018,Comedians,@TigNotaro,"RT @drewjanda: This land is my land +This Al is Borland https://t.co/GNIXnoc0vr" +06/29/2018,Comedians,@TigNotaro,Oh and the lady will be having the Bud Lite *Platinum* +06/29/2018,Comedians,@TigNotaro,"Hello, and welcome to Twitter. I'm @drewjanda, your Tig today. + +MY DREAM is to write for television. If you like m… https://t.co/j8qeCFWSfQ" +06/29/2018,Comedians,@TigNotaro,"This has been so fun! +You are all welcome to hire me as a standup comic or a writer for your shows. +I have an alb… https://t.co/nFjxWl1yCW" +06/29/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Sister: have you met any nice men lately? +Me: we are failing the Bechdel test." +06/29/2018,Comedians,@TigNotaro,"RT @JenniferJokes: *updates iOS* +*looks up from phone* +*finds herself chained to a million other slaves dragging monolith to the pyramids…" +06/29/2018,Comedians,@TigNotaro,RT @JenniferJokes: please dont be mean to me cause im very soft but also dont be nice cause i fall in love very easily +06/28/2018,Comedians,@TigNotaro,"Me: can I get pregnant from handjobs? +Doctor: *pinching bridge of nose, flipping to my age on the chart* +Me: I wen… https://t.co/eJz9PAlmUd" +06/28/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Instead of asking people to watch my laptop at a café, I just leave an open google search for “how to clean a yeast infe…" +06/28/2018,Comedians,@TigNotaro,As a Catholic I was raised to be so private about romance that I’m not even sure if my parents are dating +06/28/2018,Comedians,@TigNotaro,"RT @JenniferJokes: Her: what do you feel like? +Me: really sad all the time. idk what to do +Her: I meant for dinner +Me: OHH lol pizza would…" +06/28/2018,Comedians,@TigNotaro,"[pulls out easel with enormous notepad] + +Me: Welcome to my crafting workshop, using your period to show dominance on office furniture" +06/28/2018,Comedians,@TigNotaro,Hi! I’m Jennifer McAuliffe @jenniferjokes and I’m going to be tweeting for Tig today. As a stand up and writer I ta… https://t.co/WM1aCijPNr +06/28/2018,Comedians,@TigNotaro,"Here I am, driving away! Thank you for reading. May several really good things happen to you today, and, I don't kn… https://t.co/iVc5LogWhf" +06/28/2018,Comedians,@TigNotaro,"RT @abbycohenwl: Me (texting): Help I'm in the pantry hiding from the murderer +Murderer: Probably shouldn't have used speech-to-text" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: She: But WHY are you breaking up with me? Please tell me honestly. +He (sigh): Ok It's...your ""signature sex move"" +She: Jud…" +06/27/2018,Comedians,@TigNotaro,"For every million you make, the government lets you break a law. Can't wait to violate thermodynamics!" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: Realized I never said ""unquote"" after reciting a famous poem in 10th grade. Sorry if you thought everything I've said sinc…" +06/27/2018,Comedians,@TigNotaro,"Friend: She picked dare over truth +Friend2: Oh god, she’s doing it! +Me: *reveals my actual personality*" +06/27/2018,Comedians,@TigNotaro,"RT @abbycohenwl: How to apply mascara: +Pull wand from tube +Open your eyes like a haunted doll coming to life" +06/27/2018,Comedians,@TigNotaro,"Sadly, as one of many million Americans born with the Inability to Be Cool, I failed to mention my twitter handle.… https://t.co/qWY2lnOXdJ" +06/27/2018,Comedians,@TigNotaro,"As I was giving a dollar to a girl singing on the street today, I realized: it was Helen Henny, former vocalist fro… https://t.co/mUXp7ncpg8" +06/27/2018,Comedians,@TigNotaro,Not sure how I got the distinct privilege of tweeting for the incredibly fantastic Tig Notaro today! I hope I have… https://t.co/LVitelw1fJ +06/27/2018,Comedians,@TigNotaro,"Well folks, I’ve been @mikebigby and that’s a wrap! Thanks for the favs and, if you’re wondering if you should foll… https://t.co/kDA7J9kIY3" +06/27/2018,Comedians,@TigNotaro,RT @MikeBigby: Would be funny if like a guy who was a werewolf got mooned by some dudes ass and it worked +06/27/2018,Comedians,@TigNotaro,"It’s late and it’s dark so I threw something appropriately spooky together for you, enjoy! https://t.co/kzWrGBoKc3" +06/26/2018,Comedians,@TigNotaro,"RT @MikeBigby: u guys do know that when u say ""frig"" we ALL know what you mean? At this point u might as well just say ""frog pig"" its not e…" +06/26/2018,Comedians,@TigNotaro,"Hey @beyonce it’s me tig, your close personal friend, just wanted to let u know about this cool guy I discovered… https://t.co/HRz35XciRZ" +06/26/2018,Comedians,@TigNotaro,RT @MikeBigby: https://t.co/vFVrdb6QXe +06/26/2018,Comedians,@TigNotaro,"As well as jokes, I want to use this platform for something good, something I really care about - pressuring… https://t.co/Ny7Mg2PSMu" +06/26/2018,Comedians,@TigNotaro,"Again, Just kidding, I respect @lin_manuel. I respect him and he respects me. It’s mutual. He knows who I am. Don’t… https://t.co/TvPWVLWjSL" +06/26/2018,Comedians,@TigNotaro,"I’m just kidding, I’ve not seen Hamilton. I’m from the UK. Not heard of it? Oh, it’s just this little old place whe… https://t.co/nyPuPs3qfd" +06/26/2018,Comedians,@TigNotaro,"Got major stagefright, like when you’re trying really hard to pee but you can’t go because you feel like people are… https://t.co/rz26XY4bZQ" +06/26/2018,Comedians,@TigNotaro,Hey it’s ya boy @mikebigby or should I say mike TIGBY!! Off to a good start. Anyway my best friend tig and i were h… https://t.co/5vC9GDiKlD +06/26/2018,Comedians,@TigNotaro,"Hey everyone, it's been really awesome being Tig for a day. Be kind to each other! + +🌵💚 + +- Dave" +06/25/2018,Comedians,@TigNotaro,"RT @batkaren: LOOK AT ME, she screamed from a tiny corner on a speck of dust circling a small star, one of billions in a galaxy, one of bil…" +06/25/2018,Comedians,@TigNotaro,"After you die, do you get to see the deleted scenes from your life?" +06/25/2018,Comedians,@TigNotaro,"HIM: No sensible man will take you dancing in your bikini! +ME: It's OK. I'm going with a little moron." +06/25/2018,Comedians,@TigNotaro,"RT @Woody_B_: {Things I know about bears} +Bear in an ascot = sort of funny dork. +Bear in a hat and tie = funny bear who steals food. +Bear i…" +06/25/2018,Comedians,@TigNotaro,"ME: I'm building airplanes from these blueprints. +ROB: They'll never fly. +ME: Yeah, I have to fold them first." +06/25/2018,Comedians,@TigNotaro,RT @dave_cactus: A fart is a wish a butt makes. +06/25/2018,Comedians,@TigNotaro,"If a tree falls in the woods and no one is around, will anyone know? Yes, thanks to the TreeAlert™ Pendant!" +06/25/2018,Comedians,@TigNotaro,"Good morning! It's me, @dave_cactus, and today I'll be TIG NOTARO. + +T- The +I- Internet's +G- Greatest + +N- Nonsense +O… https://t.co/VlAiRaQ2pU" +06/23/2018,Comedians,@TigNotaro,"Friends, it's been my pleasure to entertain you today! If anyone is in the market for a silly writer, I strongly re… https://t.co/BKf9MI92M5" +06/22/2018,Comedians,@TigNotaro,RT @caraweinberger: 10 Women You Won't BELIEVE until a Man Says the Exact Same Thing +06/22/2018,Comedians,@TigNotaro,"Me: I have to pee +Dad: [pulling over] Go in the woods +Me: [walking through the woods for an hour] I don't see a sin… https://t.co/LpKRWY8ZJd" +06/22/2018,Comedians,@TigNotaro,Sometimes the big spoon is the most fragile spoon of all. +06/22/2018,Comedians,@TigNotaro,"RT @markedly: Always the ice tray refiller, never the ice cube enjoyer" +06/22/2018,Comedians,@TigNotaro,"RT @markedly: You're darn right I abuse drugs. I see a drug, I punch the crap out of it. Get lost, drugs." +06/22/2018,Comedians,@TigNotaro,"Hello, yes, I couldn't help noticing you from across the room. If it's not too forward, may I have the pleasure of… https://t.co/Yu4jk70ekg" +06/22/2018,Comedians,@TigNotaro,"RT @markedly: Spanish: The h is silent +English: Many letters can be silent +French: All letters are meaningless, every living thing is born…" +06/22/2018,Comedians,@TigNotaro,"Hiya, folks! This is @markedly tweeting for the amazing Tig Notaro and enjoying a persimmon for the first time ever… https://t.co/MkziN8O9Mu" +06/22/2018,Comedians,@TigNotaro,Heyyyyy Tulsa!!! https://t.co/C2rus1d78V +06/22/2018,Comedians,@TigNotaro,"RT @emilyrschmidt: It's so super easy to wear a jacket that *doesn't* say ""I don't really care,"" like, I've gone my whole life not even wea…" +06/21/2018,Comedians,@TigNotaro,"Friends, that’s it for me today!! This has been rad. Thanks for reading my words and looking at my dang face. + +Fol… https://t.co/96lecbKWBk" +06/21/2018,Comedians,@TigNotaro,RT @ohheyohhihello: stop naming your babies James. name him Jame. he is one Jame. +06/21/2018,Comedians,@TigNotaro,Walking out of a doctor's office and realizing you forgot how to get back to the lobby is one of those human experi… https://t.co/SEbhUUZ99A +06/21/2018,Comedians,@TigNotaro,"RT @ohheyohhihello: Today I drove through a huge puddle that splashed up under my car and laughed to myself as I whispered, ""car bidet.""" +06/20/2018,Comedians,@TigNotaro,"Friends, you deserve to be in love with someone who respects you, treasures you, and doesn’t order chicken tenders at every restaurant." +06/20/2018,Comedians,@TigNotaro,RT @ohheyohhihello: one or two questions about the third picture https://t.co/lrSxa2TEO9 +06/20/2018,Comedians,@TigNotaro,The bicycle was invented over 200 years ago and we still haven’t invented a seat that supports more than the middle third of a butt. +06/20/2018,Comedians,@TigNotaro,I recently met a girl who always carries an extra pair of underwear in her bag. Anyone with that level of crisis pr… https://t.co/GVFBKMCi6d +06/20/2018,Comedians,@TigNotaro,RT @ohheyohhihello: life hack https://t.co/y8Ia9P8cLc +06/20/2018,Comedians,@TigNotaro,Hellooooooo my friends! I’m @ohheyohhihello (or Kelly for short) and I have the pleasure of tweeting for Tig today!… https://t.co/IkwcarqhBe +06/20/2018,Comedians,@TigNotaro,"Whoooo I had a blast being Tig today thanks y'all +If you liked my jokes and are hungry for more, you can: head ove… https://t.co/iDWwOe4BPK" +06/20/2018,Comedians,@TigNotaro,RT @isabelzawtun: We cut open the cake at the gender reveal party and out spill thousands of fire ants. The guests howl. FIRE ANTS ARE MOST… +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: The local children surround me, trying to build a pyre. I'M NOT A WITCH, I shriek, my witch-like shrieking doing me no fa…" +06/19/2018,Comedians,@TigNotaro,"It's not WEIRD, eating 8 spiders per year makes me AVERAGE" +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: When I was 6 my uncle caught a moth in his mouth, walked outside, opened up and the moth flew away into the night. I thin…" +06/19/2018,Comedians,@TigNotaro,"""Oh, I don't want to be pushy, whatever you want is fine,"" I smile nervously + +The genie sighs, exasperated" +06/19/2018,Comedians,@TigNotaro,"The biggest baseball on record weighed 23 lbs and was thrown by Bo ""Meat Fist"" Jibbson, who missed home plate entir… https://t.co/NFInsqEoIv" +06/19/2018,Comedians,@TigNotaro,"RT @isabelzawtun: The scene in which The Little Mermaid learns the true purpose of a toilet, having lived her whole life bereft of a human…" +06/19/2018,Comedians,@TigNotaro,Excuse me but have you considered spending your entire day googling Russian glamour shots https://t.co/TnR7RMi029 +06/19/2018,Comedians,@TigNotaro,"Put your hands together for THE INDIGO GIRLS! Haha just kidding it's me, @isabelzawtun, freaky-fridaying with Tig t… https://t.co/FwLPEagCcQ" +06/19/2018,Comedians,@TigNotaro,"It's been amazing tweeting for Tig today! That's a picture of me and my fam below! If you liked the tweets today, f… https://t.co/Gshjj5zvhe" +06/19/2018,Comedians,@TigNotaro,"RT @AdamBroud: (Doctor's Office) +Me: So I guess some have innies and some just have outies huh? + +Gynecologist: No" +06/19/2018,Comedians,@TigNotaro,"Me: Welcome to my vegan zoo! + +Friend: This…this is just a garden + +Me: *holding up baby carrots* They've had a litter" +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: Me trying to communicate that I'd rather not do something: Sure +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: Person who loves LaCroix: *Eating a scented candle* this is also good +06/18/2018,Comedians,@TigNotaro,"Jesus: If your right eye offends thee, pluck it out. Like Carl here did. Right Carl? + +One-eyed Carl: Once again, I… https://t.co/D13Q2FnBBk" +06/18/2018,Comedians,@TigNotaro,RT @TheFoxTheatre: We're two days away from an unforgettable night of comedy with @IAmWandaSykes & @TigNotaro on 6/20 😂🤣 Secure great seats… +06/18/2018,Comedians,@TigNotaro,"RT @AdamBroud: HER:I love Tolstoy's take on the human moral struggle +ME:*Trying to impress* See I prefer Tolstoyee 3 where Woody was in the…" +06/18/2018,Comedians,@TigNotaro,RT @ppacutah: Get your laughs on for a good cause: @TigNotaro will be here next week! Get your tickets now before they are gone with code '… +06/18/2018,Comedians,@TigNotaro,"Scientist: Sure, we can discuss string theory + +Scientist that's actually a bunch of cats stacked in a lab coat: Oh hell yeah" +06/18/2018,Comedians,@TigNotaro,RT @AdamBroud: My hostages' family is going to eat this up. https://t.co/8mBTGdo7h4 +06/18/2018,Comedians,@TigNotaro,"I'm @AdamBroud and I'll be tweeting for Tig today! I perform improv at @ImprovBroadway, I write sketch for… https://t.co/JqvjOeTDMX" +06/16/2018,Comedians,@TigNotaro,"Hello, thank you for letting me (@sug_knight) tweet as Tig today. + +Here’s a picture of me when I looked most like… https://t.co/2KCCuucGIL" +06/16/2018,Comedians,@TigNotaro,"I'm writing a book, it's basically like War & Peace but it's not set in the napoleonic era & it's about snakes and the snakes are on a plane" +06/16/2018,Comedians,@TigNotaro,People who take fast showers just don't spend enough time pondering their own mortality while they're in there. +06/16/2018,Comedians,@TigNotaro,I don’t have anything I want to plug on here but I DO want to remind everyone that Alanis Morisette and Dave Coulie… https://t.co/hPPwK2xBaO +06/16/2018,Comedians,@TigNotaro,RT @sug_knight: https://t.co/qza1GO9Nzy +06/16/2018,Comedians,@TigNotaro,Oh it’s different than I remember but I trust the process https://t.co/ebk0WlLV10 +06/15/2018,Comedians,@TigNotaro,"RT @sug_knight: I’ll find you, Richard https://t.co/L6k7WolF3r" +06/15/2018,Comedians,@TigNotaro,What if true enlightenment is just accepting that abs are made in the kitchen? +06/15/2018,Comedians,@TigNotaro,"RT @sug_knight: Me: while you're up there let's do a Spider-Man kiss +My dental hygienist: still no" +06/15/2018,Comedians,@TigNotaro,"Hello everyone it’s me, @sug_knight, tweeting for Tig. Everything I say will be a subtweet at Taylor Dayne. EVERYTH… https://t.co/Z17U8UioCE" +06/15/2018,Comedians,@TigNotaro,guys I've been @zakagan and I'm done tweeting for today. A lot of people don't know this but I'm actually a minor-l… https://t.co/t15xCnQWhj +06/15/2018,Comedians,@TigNotaro,"toy story 3 would be more emotional if the toys were bionicles, and instead of Andy it was me, and [i’m sobbing now… https://t.co/wLSeoueVp9" +06/14/2018,Comedians,@TigNotaro,"it's cool when a dessert has a hint of something, like i'm biting into a tart and suddenly it goes ""your wife's death was not an accident""" +06/14/2018,Comedians,@TigNotaro,why does Charles Darwin always look like you could insert a CD-ROM into his mouth https://t.co/zMJXDYyJzs +06/14/2018,Comedians,@TigNotaro,why aren’t there more satanic masses at the pentagon? seems perfect for it +06/14/2018,Comedians,@TigNotaro,Tig is in Atlanta June 20! Tix here: https://t.co/Nuu3nI26II +06/14/2018,Comedians,@TigNotaro,"AVOCADO RIPENESS + +underripe = wet styrofoam +ripe = god's unsalted butter +overripe = sunscreen that's been cursed by a witch" +06/14/2018,Comedians,@TigNotaro,thought I would use this opportunity to share my tinder bio. looking for someone special!! https://t.co/tD5RqvfmCs +06/14/2018,Comedians,@TigNotaro,"RT @zakagan: Old M&M’s commercials: the chocolate that melts in your mouth, not your hand + +New M&M’s commercials: hey, maybe you can fuck t…" +06/14/2018,Comedians,@TigNotaro,hey gang I'm @zakagan and I'll be tweeting for Tig today. True story: I once got written up at work for listening t… https://t.co/SviOb91JPp +06/14/2018,Comedians,@TigNotaro,hi! this is still @freshhel 😈 if u liked all this nonsense please follow me On Here & maybe come to a show if you’r… https://t.co/EoRSXOwK7B +06/14/2018,Comedians,@TigNotaro,"is bi visibility an issue? yea +is it our fault for wearing so much camo? absolutely" +06/14/2018,Comedians,@TigNotaro,would love an ice cold glass of $700 +06/13/2018,Comedians,@TigNotaro,CARTOON CATS: WHO'S HOT & WHO'S NOT pt 2 https://t.co/TWz20QaUXj +06/13/2018,Comedians,@TigNotaro,CARTOON CATS: WHO'S HOT & WHO'S NOT pt 1 https://t.co/YuqEYrMcgU +06/13/2018,Comedians,@TigNotaro,"people think that being bi means you are confused. No, it means you wanna fuck the double dragon from Dragon Tales" +06/13/2018,Comedians,@TigNotaro,me stealing batteries from work to put in my vibrator: This Is What A Femnist Looks Like :) +06/13/2018,Comedians,@TigNotaro,"baby in flip flops: cute +5 yr old in flip flops: cute +10 yr old in flip flops: please keep this THING very far away from me !!!!!!" +06/13/2018,Comedians,@TigNotaro,hello it is me @freshhel 🚨 pictured here getting brunch with your mom https://t.co/vFTzeZY7HX +06/13/2018,Comedians,@TigNotaro,RT @DogDaysTheFilm: Unleash the love August 10 💙 Watch the official trailer for #DogDays now 🐾 https://t.co/VzYF9YnNs6 +06/13/2018,Comedians,@TigNotaro,"I've been @GraceGThomas. + +I'm a Senior Contributing Writer @ClickHole, I contribute to @TheOnion and I'm trans as h… https://t.co/4mQ61sapYr" +06/13/2018,Comedians,@TigNotaro,recent art project https://t.co/Wby92LpTVB +06/12/2018,Comedians,@TigNotaro,"When I visited the Pulse memorial last year, I was struck by how busy it was. Huge Wendy's across the street, a man… https://t.co/n3QECz6BPw" +06/12/2018,Comedians,@TigNotaro,We must stop Jim Davis from making Garfield real. https://t.co/sPMtUUEqgs +06/12/2018,Comedians,@TigNotaro,Utah!! Tig will be there supporting Planned Parenthood next week. Grab discounted tickets below! https://t.co/He7otijbHq +06/12/2018,Comedians,@TigNotaro,"Jackie Chan Killed My Dad But 'Rush Hour 2' Made Up For It + +Mr. Bekemeyer 2nd Hour Health Class - Mental Health Uni… https://t.co/dV7lAmfzhR" +06/12/2018,Comedians,@TigNotaro,"AM I TURNING INTO SPIDER-MAN? + +A Science Project For The 3rd Grade Science Fair + +By Grace Thomas https://t.co/RWcYUyM9aK" +06/12/2018,Comedians,@TigNotaro,"These are my notes on The Great Gatsby. + +Please let me know if I missed anything, the test is tomorrow!! https://t.co/S1P1xfi2tF" +06/12/2018,Comedians,@TigNotaro,RT @GraceGThomas: Man Caves are OUT! Genderless Crying Dens are IN! +06/12/2018,Comedians,@TigNotaro,"Wow, hello! I'm @GraceGThomas! Tig adopted me so that I'm legally required to manage her Twitter account. + +I'll be… https://t.co/FmNUFhsgDQ" +06/12/2018,Comedians,@TigNotaro,"What a wild ride it’s been! Thanks for tuning in. Folks, the terrible truth is that I’m a very talented painter, an… https://t.co/fFH9QD5IRP" +06/12/2018,Comedians,@TigNotaro,Imagining mr bean getting his huge ass stuck in a vase at the horse track. that guy is almost unbelievable +06/12/2018,Comedians,@TigNotaro,RT @coolturtleneck: This Trans Person's Selfies Before and After Transitioning Will Leave You Speechless... https://t.co/mR3yGdndJC +06/11/2018,Comedians,@TigNotaro,"Welcome to the kissing factory!! 😗 I’ll be ur foreman and shift manager :) :) :) +You may not join a union" +06/11/2018,Comedians,@TigNotaro,RT @rachel_kaly: me being sworn into the Supreme Court: I solemnly swear I am the femme Bruce almighty +06/11/2018,Comedians,@TigNotaro,"I want to b urban planner :) “Hello, mayor? Yes the train will go here... and of course it will be free. Any questions bich?”" +06/11/2018,Comedians,@TigNotaro,I live with my parents and just had a very real escalation with my dad that ended in me yelling “if you touch my p… https://t.co/hIwiliTNG6 +06/11/2018,Comedians,@TigNotaro,"Dear diary, + +I am jealous of every shark" +06/11/2018,Comedians,@TigNotaro,RT @coolturtleneck: Just got back from the gender summit. Cis ppl said trans ppl can get guaranteed safety in public spaces if we stop draw… +06/11/2018,Comedians,@TigNotaro,Good morning to my new friends and many new enemies! My name is Lukey Walden (@coolturtleneck) and due to circumsta… https://t.co/reEuXkGcFu +06/10/2018,Comedians,@TigNotaro,RT @Honda5gs: @TigNotaro @netflix I’m happiest when I’m grilling. https://t.co/fj9YU96X4V +06/10/2018,Comedians,@TigNotaro,"Have you watched Tig's new @netflix special ""Happy To Be Here""? Tweet a pic of the place where you're happy to be! #happytobehere" +06/09/2018,Comedians,@TigNotaro,this has been such a wild day for me....... the good news is that the high of this day will continue forever and i… https://t.co/bFYwgvFi94 +06/09/2018,Comedians,@TigNotaro,pic of me giving myself space to think about an emotionally turbulent day but then accidentally also thinking about… https://t.co/w3LFLcmW0X +06/09/2018,Comedians,@TigNotaro,i’m sorry everyone :((( the pressure got to me and all i could think to do was retweet tylenol promotional content… https://t.co/IN1dGfru8G +06/09/2018,Comedians,@TigNotaro,"a ship in a harbor is safe. the good news is that that is precisely what ships are for. if ur ship is in a harbor,… https://t.co/ulysk6Sw14" +06/08/2018,Comedians,@TigNotaro,BEST case scenario broadly speaking???? a cat and a bird become friends :) +06/08/2018,Comedians,@TigNotaro,today is a really hard day for a lot of ppl. i know that i am personally working to counter my negative thoughts wi… https://t.co/sqXLxL5NWY +06/08/2018,Comedians,@TigNotaro,RT @ALT1057FM: Go see @iamwandasykes and @tignotaro at @TheFoxTheatre for a Night of PRIDE Comedy! Your chance at tickets coming this hour!… +06/08/2018,Comedians,@TigNotaro,"this pic of mariah is all of us - living through pain, honestly and as best we can. not hiding it, but not letting… https://t.co/AhZo6hfBRe" +06/08/2018,Comedians,@TigNotaro,RT @chunkbardey: kinda absurd that I still constantly have to explain that Dora was a good explorer because of (not in spite of) her abilit… +06/08/2018,Comedians,@TigNotaro,hmmm i guess my VERY quick question is this: am i good enough +06/08/2018,Comedians,@TigNotaro,"RT @AM2DM: Full interview: @TigNotaro joins #AM2DM to talk about her new Netflix special, #MeToo, working with Jennifer Aniston, and more h…" +06/08/2018,Comedians,@TigNotaro,hello everyone i am @chunkbardey and i am tweeting for tig today. i know everyone is sad so i thought i would share… https://t.co/LeBJxcpxHC +06/08/2018,Comedians,@TigNotaro,"well folks.. i am @rachel_kaly and this has been a doozy! I’d like to quickly come out to my estranged father, a Mo… https://t.co/PrYaxMcUN4" +06/08/2018,Comedians,@TigNotaro,"RT @NetflixIsAJoke: .@tignotaro is the life of the party, but mainly when she doesn't know anyone there. Happy To Be Here, now streaming. h…" +06/08/2018,Comedians,@TigNotaro,"i am totally just like one of the guys! +1) my favorite hobby is posting a picture of my significant other on social… https://t.co/AqlzvJN3SS" +06/08/2018,Comedians,@TigNotaro,I actually originally pitched cash cab but da set up was diff: I hail every cab in NYC looking for my estranged fat… https://t.co/hVmAVeNBjI +06/07/2018,Comedians,@TigNotaro,"rough draft of my bucket list: +-get @KellyRipa to call me sir +-get an award for getting asthma from 9/11 or learn t… https://t.co/x6ScKF1qah" +06/07/2018,Comedians,@TigNotaro,RT @rachel_kaly: Hi sluts👋 im a thin and white 20-something girl who weArs sheer clothes so u can always see my nipples 🤷‍♀️ i co-opt black… +06/07/2018,Comedians,@TigNotaro,howdy.I have a new idea for episode of “friends” reboot. as it turns out chandler died as a roadie for Dane cook so… https://t.co/5ROSktVosF +06/07/2018,Comedians,@TigNotaro,"just got kicked out of the army bc all I knew in morse code was ""dam Daniel"" :( I understand why they let me go but I can still Be Upset :(" +06/07/2018,Comedians,@TigNotaro,"RT @rachel_kaly: doctor: do you have any history of eating disorders +me: no +doctor: ok well that’s g— +me: I have a HERstory of eating dis…" +06/07/2018,Comedians,@TigNotaro,#BentzenBall tickets are available now! Feat: @dopequeenpheebs @cameronesposito @jvn @RheaButcher @MichelleButeau… https://t.co/RExL7tH7Gw +06/07/2018,Comedians,@TigNotaro,I go to da Apple store and I raise my hand like it is school. Usually I will stay there all day and I do not get ca… https://t.co/izvKCstEYI +06/07/2018,Comedians,@TigNotaro,"hello, wats up, my name is @rachel_kaly and i will unfortunately for u being tweeting for tig today! tig and I have… https://t.co/QaQH6CuSWs" +06/07/2018,Comedians,@TigNotaro,RT @manicsocratic: @MonicaLewinsky @TigNotaro @colbertlateshow Snagged an HQ vrsion of the clip. Hope this helps! https://t.co/3mfPPk71g9 +06/07/2018,Comedians,@TigNotaro,RT @MonicaLewinsky: so. apparently the badass @TigNotaro said something generous about me last night on the @colbertlateshow but i can only… +06/07/2018,Comedians,@TigNotaro,"omg it wasn’t a bug LOL!!!! shaking my head ! i have to go make dinner for my Family and the neighbors + +Logging Off… https://t.co/jN7JoD7Dul" +06/06/2018,Comedians,@TigNotaro,this is my Fave part of #Hitch the movie -Tig N. https://t.co/R3Jne9E87i +06/06/2018,Comedians,@TigNotaro,KNew It!!!!!!! Jen is crazy!!!!! i’m gunna give her pink eye w my finger so we can be bedridden together (as i have… https://t.co/Tx3SfhecAk +06/06/2018,Comedians,@TigNotaro,okay...what the FUCK....WHO put this BABADOOK in my ROOM!!!! I am Not smiling this is a Strained face bc the bug l… https://t.co/YzGcYqi8MA +06/06/2018,Comedians,@TigNotaro,BREAKING NEWS!!! i will be playing Big Fuck in PENCIL: The Movie!!!!!!!!! omw 2 Dr. Plippy for the Bug has burrowed… https://t.co/6vLsYH7PYj +06/06/2018,Comedians,@TigNotaro,Tig was on @colbertlateshow last night talking @StarTrek! https://t.co/pzTN2XaJiO +06/06/2018,Comedians,@TigNotaro,MFW THE BUG IS CRAWLJNG AROUND THE PERIMETER OF MY HOLE NOW I COAXED IT OUT BY PLAYING HOT CROSS BUNS ON RECORDER L… https://t.co/y2vpCxgly8 +06/06/2018,Comedians,@TigNotaro,uhhhh ya.....there’s a story behind this candle...so my Wife and I were on a @CarnivalCruise and the Captain asked… https://t.co/fxbzIH8OFK +06/06/2018,Comedians,@TigNotaro,"LITERALLY HILARIOUS HOW THE #MEDIA #LIES 2 US!!!!!! +1.not vegan as I ONLY eat burger and peas +2. ALICIA SILVERST… https://t.co/3U40WVVvyA" +06/06/2018,Comedians,@TigNotaro,ok so dis baby farted and Jen Anniston wer like..Tig did U toot?? i were like no it were UR BABY! jen hit me &my ea… https://t.co/ymylY7EYPV +06/06/2018,Comedians,@TigNotaro,hi dis is actually tig today i’m in the garden thinking about a deliciosó pot sticker from @CheesecakeFactory and u… https://t.co/0Chf3iNdS2 +06/06/2018,Comedians,@TigNotaro,"RT @colbertlateshow: I have no idea what I’m saying on that show, all joking aside. - @TigNotaro who is on this new season of #StarTrek #LS…" +06/06/2018,Comedians,@TigNotaro,"goodbye.... this has been brian ffidymen... it sure was fun tweeting from this account for a while... + +tomorrows ju… https://t.co/DbgPSYuI66" +06/06/2018,Comedians,@TigNotaro,"self care night: +👍phone OFF +👍bottle of raspberry stoli +👍play nba 2k15 on easy + win by 90 points in my room (favorite light on) +👍4x a week" +06/05/2018,Comedians,@TigNotaro,Hope this is helpful. Guide to choosing a bank: https://t.co/gmD62X0DOs +06/05/2018,Comedians,@TigNotaro,I’ve had a really long day of being really calm y’all! needless to say now I am really pissed off... +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: Anyone care to explain this? #trumpsballproblem https://t.co/UiuBjE0Hu5 +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: i took the #DunkinDonutsChallenge https://t.co/HQUBnSLL11 +06/05/2018,Comedians,@TigNotaro,RT @brian4showbiz: 20 $ bank prank https://t.co/YmhGSWG5Bw +06/05/2018,Comedians,@TigNotaro,I hate tables. It’s stupid that you have to lean over it to get close enough to your friend to talk- usually knocki… https://t.co/EGZ07b7kMT +06/05/2018,Comedians,@TigNotaro,"RT @brian4showbiz: 2018 is the year that I finally do something that I’ve been meaning to for a while, carry my controller around https://t…" +06/05/2018,Comedians,@TigNotaro,"hello yall!!!! my name is brian fiddybment @brian4showbiz + +I’m very passionate about cardio, red wine, whatever re… https://t.co/UdI6uYTOaS" +06/05/2018,Comedians,@TigNotaro,"Alright folks. That’s all for me, @joecastlebaker ... all in all this day has been one of THE days of my life... Hi… https://t.co/RhOvcbkXqu" +06/05/2018,Comedians,@TigNotaro,"“Mom. Dad... I’m same sex...” -me coming out. + +I think Tig is really gonna like this one :)" +06/04/2018,Comedians,@TigNotaro,I just found out on Ancestry dot com that my great great grand pa was a golden retriever 🤯🤯🤯 +06/04/2018,Comedians,@TigNotaro,"I am so excited :) my pilot “What if Spider Man Was In World War 1” has just been picked up LinkedIn :-) + +I think… https://t.co/F4fqM06khn" +06/04/2018,Comedians,@TigNotaro,"RT @joecastlebaker: I hate how on HBO when a character's throat is slit, they die immediately. As someone whose throat has been slit countl…" +06/04/2018,Comedians,@TigNotaro,"Hello... I’m @joecastlebaker .... + +i’m tweeting for Tig tod ay :) + +A pic of me below... I think Tig is really gonn… https://t.co/wgX1JFd59o" +06/02/2018,Comedians,@TigNotaro,"""Soooooo... who's the bottom and who's the top?"" - me talking to a disassembled box. + +Happy pride month. This has b… https://t.co/IOUrV0171B" +06/02/2018,Comedians,@TigNotaro,"A fourth #comic, because everything I write needs visual aids. https://t.co/86h3SHk8qf" +07/01/2018,Comedians,@mariabamfoo,"RT @STAR999radio: Enter to win tix to @mariabamfoo playing @StressFactoryCT July 6th! + +https://t.co/SFYvaQffq4" +06/30/2018,Comedians,@mariabamfoo,RT @chrissyteigen: There are 600+ #FamiliesBelongTogether events happening TOMORROW. I’ll be speaking and introducing @johnlegend in downto… +06/30/2018,Comedians,@mariabamfoo,RT @wkamaubell: Whoah! #PrivateSchoolNegro on @NetflixIsAJoke is Revolutionary Ballet Dancer Approved! #RBDA https://t.co/GfTzFLDWrR +06/30/2018,Comedians,@mariabamfoo,"RT @MHKollock: Thank you so much for the laughs, @mariabamfoo and @jackiekashian! I am grateful for your visit to the Land of Enchantment.…" +06/30/2018,Comedians,@mariabamfoo,"RT @TransWrites: RT so your trans followers can see! + +If you are a trans comedy writer, please send an email to gracethomas@transwrites.or…" +06/29/2018,Comedians,@mariabamfoo,"Yay, team! https://t.co/BLYm3GF7mr" +06/29/2018,Comedians,@mariabamfoo,RT @MHKollock: I can’t believe I finally get to see the magical @mariabamfoo tonight here in #ABQ! She is by far my favorite professional f… +06/29/2018,Comedians,@mariabamfoo,Thank you for coming out to the CASINO! 7 and 9:40 (?) PM shows- we'll see you there. I have been to to kick ass… https://t.co/anxw5dy5aV +06/29/2018,Comedians,@mariabamfoo,So nice to meet you as well! We did it! https://t.co/XDkjvmSdGI +06/29/2018,Comedians,@mariabamfoo,"Thanks so much for coming out and listening to my act across a tiny coffee shop table, @awoo_crouse! Very fun. Saf… https://t.co/q7nT5ObpVK" +06/28/2018,Comedians,@mariabamfoo,@LWVNewMexico Hello! I'm a comedian who will be doing shows at the Santa Ana Casino! If you would like to register… https://t.co/fSs18pNETR +06/28/2018,Comedians,@mariabamfoo,RT @MeowWolf: @alynes @mariabamfoo @jackiekashian We'd love for y'all to be our guests here in Santa Fe. Four passes will be under Maria's… +06/27/2018,Comedians,@mariabamfoo,"RT @PickleCatShow: @mariabamfoo ABQkarting. +Always. +Be. +Qkarting. + +Put that down, Qkoffee is for Qklosers!" +06/27/2018,Comedians,@mariabamfoo,RT @SwoopNine: Maria Bamford at an ABQ casino? What luck! https://t.co/NWNcA8KuTd +06/27/2018,Comedians,@mariabamfoo,Its actually fine- it will help me rehearse! Fresh crowd! https://t.co/LXXHpWraiN +06/27/2018,Comedians,@mariabamfoo,"Of course. But no pastries. NO PASTRIES. Ok, 70/30 split on pastries. https://t.co/B1o4qYa4Nz" +06/27/2018,Comedians,@mariabamfoo,Yes! message me and I can do morning of Friday? I'll pick a place near me. https://t.co/TlaxzHdMV9 +06/27/2018,Comedians,@mariabamfoo,@awoo_crouse Hey Wyatt. Message me if you'd like to meet for coffee. I'm not joking! It is for reals. I always like to rehearse. +06/27/2018,Comedians,@mariabamfoo,7 AND 9 PM SHOWS!! New Mexico! Friday! https://t.co/Q49pmSetoq +06/27/2018,Comedians,@mariabamfoo,RT @OfTheRose6: @TerilynnS This will be an incredible show. If you don’t go at least get @jackiekashian latest album. https://t.co/1BELDcxW… +06/27/2018,Comedians,@mariabamfoo,"RT @bradengw: Drop everything, run downstairs (using the hand rail of course) and go see @mariabamfoo and @jackiekashian in @NewMexico @505…" +06/27/2018,Comedians,@mariabamfoo,"RT @zaniesnashville: 💥Here Comes Lady Dynamite!💥 +@mariabamfoo is heading to Zanies July 15 for one night only! Tickets are on sale now and…" +06/27/2018,Comedians,@mariabamfoo,RT @MattRogersTho: Today is very genuinely a great day 'cause @mariabamfoo is on @LasCulturistas and ya i guess it's an honor or whatever!… +06/26/2018,Comedians,@mariabamfoo,"RT @JFLLive: The star of @netflix's ""Lady Dynamite"", @mariabamfoo, will be LIVE in #Ottawa on September 26th at the @CentrepointeT! Tix: ht…" +06/26/2018,Comedians,@mariabamfoo,"Huh. That blows. I apologize for the limited thinking of my tour. If you can drive to a coffee shop, I will do t… https://t.co/qCX4tRXT2P" +06/26/2018,Comedians,@mariabamfoo,ABQkarting! Noted. https://t.co/Z30AQc5wmE +06/26/2018,Comedians,@mariabamfoo,NEW MEXICO! This FRIDAY at 7 PM w @jackiekashian! This is the only time I've been to New Mexico or Albuquerque. T… https://t.co/fKQpFiZsWm +06/26/2018,Comedians,@mariabamfoo,"@roryalsop Wowee! So nice to hear from you, Rory! Good times in Edinburgh basements!" +06/26/2018,Comedians,@mariabamfoo,RT @janetvarney: Any selfie that puts @mariabamfoo front-and-center is a.o.k. with me! @ifc #stanagainstevil https://t.co/GbnhJCFynN +06/26/2018,Comedians,@mariabamfoo,RT @RightOnPR: Need a laugh? @NPR recs comedy specials by @harikondabolu @solomongeorgio @cameronesposito @birbigs @mariabamfoo @guybranum… +06/26/2018,Comedians,@mariabamfoo,RT @ColorOfChange: RT to tell @amazon & @Apple to reject racism and protect the voting rights of Black and poor people in North Carolina. #… +06/23/2018,Comedians,@mariabamfoo,So cool to meet you and see your terrifying boot height! https://t.co/mhHvwfy4Jr +06/23/2018,Comedians,@mariabamfoo,"RT @Glibbyglopgloob: @asis @BuzzFeed @sweatmoustache @mariabamfoo +Let him do your hair next time! https://t.co/RQZDl7vPR2" +06/23/2018,Comedians,@mariabamfoo,It is true. I wish @angelcomedy was here. It's awesome. https://t.co/XCCgrttexn +06/23/2018,Comedians,@mariabamfoo,OHMIGOD! You give me hope that I can keep going. Happy you are a co-worker in the biz! Always room for more wonde… https://t.co/RYP0l7yPqU +06/23/2018,Comedians,@mariabamfoo,"This is a metaphor for Bamfooco, Inc. sales and marketing push. https://t.co/523QFHMtMl" +06/23/2018,Comedians,@mariabamfoo,RT @BellHouseNY: SEPT. 15: Few tickets remain for @mariabamfoo at The Bell House - get them while you can! https://t.co/OC6b0Y5F7Y https:/… +06/22/2018,Comedians,@mariabamfoo,RT @grantimahara: I’m doing an offbeat trivia show with @mariabamfoo called @GoFactYourPod this Sunday 6/24 at 7pm at Angel City Brewery in… +06/22/2018,Comedians,@mariabamfoo,"So saddened by this. Glad there were at least a few thousand, hardy protesters. https://t.co/pswQ1VrRzD" +06/22/2018,Comedians,@mariabamfoo,"RT @danagould: Willard’s Mill Hospital has a great staff. With Rob Cohen, @braunger and @mariabamfoo on the set of #stanagainstevil…" +06/20/2018,Comedians,@mariabamfoo,"RT @GoFactYourPod: https://t.co/lIdIi2IWK8 + +Los Angeles! + +5pm: @MattBesser vs. @lyricsaidwhaaa +7pm: @mariabamfoo vs. @grantimahara + +Plus…" +06/20/2018,Comedians,@mariabamfoo,"RT @bikebrh: @kathygriffin @jackiekashian @mariabamfoo @Anylaurie16 @LisaLampanelli and you. + +The @JackieandLaurie show has a great list of…" +06/20/2018,Comedians,@mariabamfoo,so nice to do! Putting a word in for my pal @jackiekashian and @JackieandLaurie ! https://t.co/7QT7ppaiPm +06/20/2018,Comedians,@mariabamfoo,"RT @amyschumer: Hey New York, I’m coming to @Pier17NY with my friends on 8/1! Tickets available here https://t.co/wNTBnIXmaT" +06/19/2018,Comedians,@mariabamfoo,"RT @J_Keith: I am excited for you to come see this show for free. + +Tickets here: https://t.co/i2D1MCxbDO + +@MattBesser @mariabamfoo @lyricsa…" +06/19/2018,Comedians,@mariabamfoo,RT @wkamaubell: What happens when someone is killed by law enforcement officers and there’s a lack of justice for this killing? How is the… +06/19/2018,Comedians,@mariabamfoo,RT @splcenter: Manuel Duran was simply doing his job as a journalist when he was unlawfully arrested and sent to a remote ICE detention cen… +06/19/2018,Comedians,@mariabamfoo,"RT @splcenter: In our efforts to provide legal representation to detained immigrants, we have seen multiple cases of fathers being separate…" +06/19/2018,Comedians,@mariabamfoo,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/19/2018,Comedians,@mariabamfoo,RT @barvonblaq: I don’t understand how a country obsessed with superhero movies doesn’t recognize supervillainy. +06/19/2018,Comedians,@mariabamfoo,"RT @pattonoswalt: Some audio while you joylessly chew on your KFC, @realDonaldTrump https://t.co/a6kkvVPFiI" +06/19/2018,Comedians,@mariabamfoo,"RT @wkamaubell: ""How is this not child abuse?"" - CNN's Jeff Zeleny +""Be more specific, please."" - Secretary Kirstjen Nielsen + +SHE👏🏿DOESN'T👏🏿…" +06/19/2018,Comedians,@mariabamfoo,RT @meganamram: Can some cool country please declare war on us and win?? +06/17/2018,Comedians,@mariabamfoo,RT @PortlandDSA: #AbolishICE https://t.co/Ye33GO87wC +06/17/2018,Comedians,@mariabamfoo,"Thanks for coming! Tonight @JoinTheDynasty, we raised $2,000 for the @ACLU_SoCal - so THANK YOU! https://t.co/G1LW43yum7" +06/17/2018,Comedians,@mariabamfoo,Thank you!!!! https://t.co/yo4WfXg8fL +06/17/2018,Comedians,@mariabamfoo,"RT @lapazylaunidad: If @netflix does not stop displaying the confederate flag on its home page every single day in order to promote ""White…" +06/16/2018,Comedians,@mariabamfoo,RT @thatsfunny: heyLA @JoinTheDynasty 8pm tonight @mariabamfoo 8:30pm @LargoLosAngeles @JuddApatow @BethStelling & more 10pm @ucbtla @guybr… +06/15/2018,Comedians,@mariabamfoo,@roadieric @jayemcbride @roadsidephil @rickoverton @PaulProvenza @jackiekashian @AniriaComedian @SarahKSilverman… https://t.co/2GlU3Hetob +06/15/2018,Comedians,@mariabamfoo,"RT @JFL42: .@JuddApatow describes @mariabamfoo as the ""funniest comedian in the world"" and who are we to disagree with that? Come see Maria…" +06/15/2018,Comedians,@mariabamfoo,Nice! https://t.co/Nj3y5QoRFU +06/15/2018,Comedians,@mariabamfoo,"@jcolburn1, I'm at Dynasty Typewriter downtown on Saturday and I'd love to make it a benefit for the @ACLU_SoCal. I… https://t.co/bSbGtwjU07" +06/14/2018,Comedians,@mariabamfoo,RT @DenofGeekUS: Stan Against Evil booked some seriously awesome guest stars to play monsters of the week in season three. https://t.co/oXb… +06/14/2018,Comedians,@mariabamfoo,RSVP to protest in your area! https://t.co/YqKXIAsYkg +06/14/2018,Comedians,@mariabamfoo,Just called! Let me know where to sit-in. https://t.co/bN65uz7OUR +06/14/2018,Comedians,@mariabamfoo,RT @emilynussbaum: Interesting thread https://t.co/DUlHtjWdcw +06/14/2018,Comedians,@mariabamfoo,GORGEOUS! https://t.co/yJcw1DKxaf +06/14/2018,Comedians,@mariabamfoo,RT @wkamaubell: My debut @NetflixIsAJoke stand-up comedy special #PrivateSchoolNegro comes out on June 26 WORLDWIDE! Here's a trailer NOW!… +06/14/2018,Comedians,@mariabamfoo,"RT @AFLCIO: Of the 10 most common jobs in Ohio, just two pay enough for a worker to afford a modest two-bedroom apartment. https://t.co/1ZB…" +06/14/2018,Comedians,@mariabamfoo,"RT @SenFeinstein: Happy #FlagDay! Today, let’s remember what our flag stands for: equality, opportunity, freedom and refuge for so many per…" +06/14/2018,Comedians,@mariabamfoo,"RT @SmartAssJen: I saw Cam do this live and was floored. It covers a lot of ground, goes in unexpected directions, is damn funny throughout…" +06/14/2018,Comedians,@mariabamfoo,"RT @TranslateRealDT: Imagine how much wasteful spending we’d save if we didn’t have... + +...Trump spending $67,000,000 on golf; +...Mnuchin s…" +06/14/2018,Comedians,@mariabamfoo,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Comedians,@mariabamfoo,"DULUTH, MN PROTEST TRUMP RALLY June 20th! It's happening! @perfectduluth https://t.co/MWH1Ii6W85" +06/14/2018,Comedians,@mariabamfoo,"Hilarious. Well, I'll ask around see what's going on in Duluth! I'd like to help. https://t.co/xmTTFvy1rg" +06/14/2018,Comedians,@mariabamfoo,"RT @JFLLive: The star of @netflix's ""Lady Dynamite"", @mariabamfoo, will be performing live for the first time in #Ottawa at the @Centrepoin…" +06/14/2018,Comedians,@mariabamfoo,DULUTH! @perfectduluth! https://t.co/MR5bla4au5 +06/14/2018,Comedians,@mariabamfoo,"RT @laurakrabappel: @mariabamfoo Hi Maria, There are protest actions planned across the US tomorrow in response to the Trump administration…" +06/14/2018,Comedians,@mariabamfoo,I feel similarly disappointed. I don't know what to do. https://t.co/nCvq5wriAK +06/14/2018,Comedians,@mariabamfoo,"RT @jacobsoboroff: Just finished tour, don’t even know where to start. + +One of the first things you notice when you walk into the shelter…" +06/14/2018,Comedians,@mariabamfoo,RT @cameronesposito: My new special is AVAIL NOW!! https://t.co/mrdDRgIvPt to stream free or purchase to benefit @RAINN https://t.co/bxied9… +06/14/2018,Comedians,@mariabamfoo,"YAY, @cameronesposito!!!!!!!!!! https://t.co/8HmU7BPawy" +06/14/2018,Comedians,@mariabamfoo,OH MY LORD. That's really disheartening. https://t.co/KhRsoNWm1l +06/14/2018,Comedians,@mariabamfoo,"My god, that is a typo. I do 60 minutes and then, tip into the nearest curtain. https://t.co/ZnC6oO9gkq" +06/12/2018,Comedians,@mariabamfoo,You look great! https://t.co/9lkGl7iEjU +06/12/2018,Comedians,@mariabamfoo,"RT @marcellacomedy: We have a super stacked and hilarious line up this week at Women Crush Wednesdays with Casey Balshem, Pallavi Gunalan,…" +06/12/2018,Comedians,@mariabamfoo,"RT @mindykaling: Guys! It's a good day! #Champions, the comedy show I wrote, produced, and star in, is now available on #Netflix internatio…" +06/12/2018,Comedians,@mariabamfoo,"RT @cameronesposito: Yesterday u raised $8k for @RAINN. What if we did it again today? + +Go to https://t.co/VfwqhnFlsz, watch ‘Rape Jokes’…" +06/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: Ophira Eisenberg is a national treasure and our accents are alike. See her in Philadelphia!! https://t.co/lpku4SzwnT +06/12/2018,Comedians,@mariabamfoo,RT @anylaurie16: https://t.co/TObKIG9esm https://t.co/zv45QJuxLB +06/12/2018,Comedians,@mariabamfoo,@drunkhistory @derekwaterss Have a drunk history pitch for the next season: The History of Alcoholics Anonymous. Th… https://t.co/e63zrfkTa6 +06/12/2018,Comedians,@mariabamfoo,"thanks for the shout-out, Dulce! So great seeing you on the Daily Show and killing it. https://t.co/fpQhMCSkFF" +06/12/2018,Comedians,@mariabamfoo,PHILLY! JULY 18th! My pal @ophiraeisenberg is coming to see you at 8 PM! She's WONDERFUL! https://t.co/GcB48blX2B +06/12/2018,Comedians,@mariabamfoo,RT @michaelianblack: Cameron is a goddamned national treasure is what she is. https://t.co/srCSXaZG2Y +06/12/2018,Comedians,@mariabamfoo,"RT @DivaDelux: Loving all the hilarious people on this list, especially @rileyjsilverman @chrissymeds @Party_Harderson @BisHilarious @Marga…" +06/12/2018,Comedians,@mariabamfoo,Very niiice! https://t.co/oY7cqgeftt +06/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: New hour from Esposito! You can stream it free from the website (https://t.co/jaWbpB4rZz) or donate to download a copy w… +06/12/2018,Comedians,@mariabamfoo,@cameronesposito NEW SPECIAL IS FREE! AND DONATES ALL PROCEEDES TO RAINN! ENJOY! https://t.co/JuTNLuLDXk +06/12/2018,Comedians,@mariabamfoo,Los Angeles! I'm at Dynasty Typewriter headlining downtown on SATURDAY! COME BY! Or take care of yourself and fal… https://t.co/i7R66CXbaG +06/12/2018,Comedians,@mariabamfoo,RT @andriakbarratt: Almost missed this! Don't make the same mistake! https://t.co/1Ce8ypt9ho +06/10/2018,Comedians,@mariabamfoo,"RT @guybranum: My book ""My Life As A Goddess"" was supposed to come out in June for #PrideMonth but I missed several deadlines! Pre-order it…" +06/10/2018,Comedians,@mariabamfoo,"Really loved this column by @SarajBenincasa (as well as her book, Real Artists Have Day Jobs!) https://t.co/lHDyApBQbn" +06/10/2018,Comedians,@mariabamfoo,"RT @thecomedybureau: #OnTheHorizon: +@jointhedynasty presents Season 1: The Prototype +https://t.co/M8pOKO12Hf https://t.co/ciLqWvohzp" +06/10/2018,Comedians,@mariabamfoo,"RT @pattonoswalt: National Suicide Hotline +1 800 273 8255 + +I’ve brushed up against this darkness and I know it’s a tempting exit but REACH…" +06/09/2018,Comedians,@mariabamfoo,"RT @SteelStacks: These 11 NEW SHOWS are ON SALE NOW including @mariabamfoo, @MavericksMusic, @traecrowder, @JewdyGold, @luccadoes & more! I…" +06/08/2018,Comedians,@mariabamfoo,RT @justforlaughs: Every. Time. #TBT to 2006 with @mariabamfoo. https://t.co/WIDCOqH5kO https://t.co/mGwgiKBfzK +06/06/2018,Comedians,@mariabamfoo,You can - any time. They are complete and I'll tweet my next daytime show where I'm trying the new hour. And when… https://t.co/FrqlPaMEaA +06/06/2018,Comedians,@mariabamfoo,Hello T-shirt Lovers/Psych facility supporters: These are the final numbers in this Awesome Style. I'll then move… https://t.co/BFk7N3GCUc +06/06/2018,Comedians,@mariabamfoo,You had a great set! I love your stuff! Heard about you on dork forest radio with my pal @jackiekashian! I love t… https://t.co/OCYVuSU2hm +06/06/2018,Comedians,@mariabamfoo,"If it was cafe de leche in Altadena, it was me! I have been here all day. Always say hello and hello to your bf. https://t.co/FnURm9mom1" +06/06/2018,Comedians,@mariabamfoo,"RT @JFLLive: #Ottawa! @mariabamfoo is coming to the @CentrepointeT! + +#PugLife #MondayMood #MondayMotivation https://t.co/PY93imMrxn" +06/05/2018,Comedians,@mariabamfoo,"RT @800273TALK: You are enough. If you find yourself struggling, remember that the Lifeline is here for you, 24/7, at 1-800-273-TALK (8255)…" +06/04/2018,Comedians,@mariabamfoo,@derekwaterss Hey Derek! Great to see you at the Clusterfest. I had a Drunk History pitch (just for fun- might be good for someone) +05/31/2018,Comedians,@mariabamfoo,Agh. Can't do it due to RICH PERSONAL LIFE! But thank you!!!!!! https://t.co/CD64FXfbA2 +05/31/2018,Comedians,@mariabamfoo,"RT @thetinashow: @aparnapkin hello funny lady. @mariabamfoo is coming to Ottawa in the autumn...can you be next, please? <3" +05/31/2018,Comedians,@mariabamfoo,"RT @hoperhenderson: @Mother_Faulkner also if you have a spotify account, there are some great stand-up albums on there - I forever love @ma…" +05/31/2018,Comedians,@mariabamfoo,RT @AcmeComedyCo: We’re SUPERSIZING our marketing game for the queen @mariabamfoo!!! Don’t miss her at @theordway on October 20th! Tickets… +05/31/2018,Comedians,@mariabamfoo,RT @nsilverberg: I'm so excited for @clusterfest!! @RachelWenitsky and I will be doing the @Reductress podcast with two of my favorite comi… +05/31/2018,Comedians,@mariabamfoo,RT @JFLMTL: Add @mariabamfoo's love of pugs to the list of the hundred things we love about her 🐾 😍 #ArtistoftheWeek #JFLMTL https://t.co/… +05/29/2018,Comedians,@mariabamfoo,TORONTO! I’ll be @JFL42 in September! Pre-sale passes available now w/password 42COMICS https://t.co/eHVCVMQZHG +05/29/2018,Comedians,@mariabamfoo,NASHVILLE! I’ll be @zaniesnashville Sun. July 15! Two shows – on sale now! https://t.co/JLkdX1C2TX +05/29/2018,Comedians,@mariabamfoo,ORLANDO! I’ll be at Plaza Live Sat. July 14! Tix on sale this Friday. https://t.co/ZXe1Hx0lAp +05/29/2018,Comedians,@mariabamfoo,RT @karlhungus76: @TheDallasBatman @mariabamfoo https://t.co/wAQadElFjP +05/29/2018,Comedians,@mariabamfoo,RT @JFLMTL: This week's #ArtistoftheWeek is one dynamite lady! See @MariaBamfoo shake things up in Montreal at #JFLMTL on July 27. https:/… +05/29/2018,Comedians,@mariabamfoo,RT @standup: Your Joke of the Day from @mariabamfoo. https://t.co/d2gzy6Y4Pf +05/29/2018,Comedians,@mariabamfoo,"RT @Proteautype: This festival has become a vital part of Toronto. And once again, the lineup rocks. The Bammer, @mariabamfoo! The honorary…" +05/29/2018,Comedians,@mariabamfoo,"RT @pksfrk: Woot! Just got tix to see @mariabamfoo at @zaniesnashville in July! I've lost track of how many times I've seen her now, but A…" +05/29/2018,Comedians,@mariabamfoo,RT @GregProops: @ouldsmobile @JFL42 @sethmeyers @Jokoy @iamwandasykes @hannibalburess @chrisdelia @kenjeong @anthonyjeselnik @mariabamfoo @… +05/28/2018,Comedians,@mariabamfoo,Was just there. Ah well. https://t.co/49efdjH0Aj +05/28/2018,Comedians,@mariabamfoo,"RT @clusterfest: Go ahead - get your mouth on! + +@Reductress is bringing @itsmouthtime to #Clusterfest with special guests @mariabamfoo and…" +05/28/2018,Comedians,@mariabamfoo,"Thank you for this- hilarious. I go down fairly quickly, but with a mixed green salad, fresh raspberries, pine nuts… https://t.co/FW97F8KUk3" +05/27/2018,Comedians,@mariabamfoo,Thanks for the kind words!!! https://t.co/89Anh9j275 +05/27/2018,Comedians,@mariabamfoo,"It stuck! I went to Dr. Rodney Boone in glendale, CA and he has a bunch of therapists that work with him. I don't… https://t.co/HDno7cqsRe" +05/27/2018,Comedians,@mariabamfoo,Great to meet you too! See you around comedy! https://t.co/PDlt1EZ53i +05/27/2018,Comedians,@mariabamfoo,I'm so sorry- we had a really early flight to Cincinnati the next morning and Mama get ti-ti! Apologies! https://t.co/zfHEnw8b2r +05/27/2018,Comedians,@mariabamfoo,Thanks for driving so far!!! https://t.co/eB8f5WJYUk +05/27/2018,Comedians,@mariabamfoo,"Wowee Albe! I've never been and though I am a few years older than the billboard, I feel hopeful that I will be rec… https://t.co/miIoCj4Tum" +05/27/2018,Comedians,@mariabamfoo,RT @jbendery: Harvard labor professor: The NFL’s “take a knee” ban is flatly illegal https://t.co/d8AjWXwiKn +05/27/2018,Comedians,@mariabamfoo,"Thanks so much for coming out! My cousins came and were very impressed with the crowd. So, GOOD JOB! https://t.co/93yMa6JvbY" +05/27/2018,Comedians,@mariabamfoo,Thanks so much for coming all the way! https://t.co/eB8f5WJYUk +05/27/2018,Comedians,@mariabamfoo,Thanks so much for coming! What a lovely crowd!! https://t.co/bwFZ2G6Fqq +05/25/2018,Comedians,@mariabamfoo,"RT @jackiekashian: if this is my last tweet: +Republicans are upset because kneeling players are disrespecting white supremacy. That’s what…" +05/25/2018,Comedians,@mariabamfoo,"RT @AWolfeful: @GreenFrieda @mariabamfoo Current needs include: a freezer to store donated meals, rent for shelter, bus passes, pillows, un…" +05/25/2018,Comedians,@mariabamfoo,Wowee! https://t.co/i1tx1z7qPc +05/25/2018,Comedians,@mariabamfoo,RT @jerseylightning: I just finished watching @TigNotaro new special on Netflix. Absolutely amazing. And I realized the last few specials… +05/25/2018,Comedians,@mariabamfoo,RT @moviesandcool: Review: #LadyDynamite: Season 2' - The best show on television that you're not watching. @Netflix @mariabamfoo https://t… +05/25/2018,Comedians,@mariabamfoo,RT @TaftTheatre: .@MariaBamfoo is an empath & advocate & also so so funny!! Don’t miss her show at the Taft THIS SATURDAY! https://t.co/u7z… +05/25/2018,Comedians,@mariabamfoo,"RT @GayHorseDerek: .@mariabamfoo making @MayaRudolph break on Comedy Bang Bang pitching a business idea as ""home free conservative"" Claire…" +05/25/2018,Comedians,@mariabamfoo,RT @metrotimes: A delightfully awkward conversation with comedian Maria Bamford https://t.co/Ly0GBDOwNG @mariabamfoo +05/23/2018,Comedians,@mariabamfoo,RT @CincinnatiUSA: Come laugh with us when @mariabamfoo comes to @TaftTheatre: https://t.co/97jrYNk1nL https://t.co/9wHzJN7k1e +05/23/2018,Comedians,@mariabamfoo,"Very true. I had a problem with that myself. I apologize! Also, everyone was wearing shoes and speaking to each o… https://t.co/4IIpbmYs9L" +05/23/2018,Comedians,@mariabamfoo,"RT @AWolfeful: For any folks who live in Highland Park/Eagle Rock/Glassell Park areas of Los Angeles, i.e. NELA, Recycled Resources is in d…" +05/22/2018,Comedians,@mariabamfoo,"HEY NYC AND PHILLY! Check this out @ellen_forney is coming!: NEW YORK +Wed, 5/23, 7:30PM +The Strand… https://t.co/vyJlL7zr6N" +05/22/2018,Comedians,@mariabamfoo,So sorry but need to cancel Clubhouse 1 pm show tomorrow (wednesday) due to work opportunity. #livebetterworkunion… https://t.co/WiViv8ECga +05/22/2018,Comedians,@mariabamfoo,I will end with a hat-trick. https://t.co/QMV4lRlSzV +05/22/2018,Comedians,@mariabamfoo,RT @billyeichner: Incomprehensibly cruel. Vote out all Republicans and Trump supporters on Nov. 6th. https://t.co/KPfEcrmLKx https://t.co/6… +05/22/2018,Comedians,@mariabamfoo,OTTAWA! I’ll be @CentrepointeT Sep. 26! Pre-sale code: BAMFORD https://t.co/Mssae8eOrl +05/22/2018,Comedians,@mariabamfoo,So sad to hear the passing of @sadikifuller. He was a great person and a wonderful comedian and I had the pleasure… https://t.co/1PIImIBMR9 +05/22/2018,Comedians,@mariabamfoo,RT @elizaskinner: If you are a comic - especially a new or female comic - and you’re not listening to @JackieandLaurie you’re missing out o… +05/22/2018,Comedians,@mariabamfoo,"RT @easternblot: @mariabamfoo And if you’re worried the movie dog might meet a tragic end, you can check https://t.co/R2TPs6JSwA before wat…" +05/21/2018,Comedians,@mariabamfoo,I registered to vote online in California at https://t.co/BsWFt3rm1T #VoteCalifornia. +05/21/2018,Comedians,@mariabamfoo,RT @billyeichner: California friends! TOMORROW (Monday May 21st) is the LAST day you can register to vote in order to vote in the CA primar… +05/21/2018,Comedians,@mariabamfoo,"RT @therealmollymcg: 🗣🗣🗣🗣🗣🗣toronto, don’t miss this angel!! https://t.co/5EzM306B5r" +05/21/2018,Comedians,@mariabamfoo,"RT @cameronesposito: Come see me tape a special this Thursday 7 & 9PM at @ucbtla! + +Tix: https://t.co/mrdDRgIvPt https://t.co/l5Jd05H9ks" +05/21/2018,Comedians,@mariabamfoo,Wow. @jackiekashian ? Lighting pull you? https://t.co/PiPqXF07vZ +05/21/2018,Comedians,@mariabamfoo,"RT @deenatypedthis: Thanks to @nikkidelamotte +from @clevelanddotcom for writing the story. Includes shoutouts to heroes @mariabamfoo and @M…" +05/21/2018,Comedians,@mariabamfoo,"RT @PortCityPCMH: Last call for Maria Bamford tickets at PCMH on July 7, only a handful left: https://t.co/u4K5YTt70P @mariabamfoo" +05/21/2018,Comedians,@mariabamfoo,DOES IT HAVE DOGS? Movie Reviews! So helpful. https://t.co/LZW3wAHAV9 +05/21/2018,Comedians,@mariabamfoo,"RT @MrEmilyHeller: SEATTLE! I'm shooting a special at the Showbox on June 16! NO MEN ALLOWED!!!!!!* +Early Show: https://t.co/aqe9dH5Py3 +La…" +05/21/2018,Comedians,@mariabamfoo,RT @ellen_forney: @AndyKindler How is it we didn’t get a photo with you me and @mariabamfoo at @vromans ?? So I photoshopped one!🤔✂️Eh? htt… +05/21/2018,Comedians,@mariabamfoo,That is a really nice couch. You are lucky. We have not thought out our couch system as well and it is seriously… https://t.co/av3uVtFwWQ +05/21/2018,Comedians,@mariabamfoo,Thank you. I will wear your t-shirt in solidarity. https://t.co/0fl2ha4r1e +05/21/2018,Comedians,@mariabamfoo,"RT @ellen_forney: Book tour update!! My favorite pic from Friday: me & @mariabamfoo @vromans. We agree that side effects suck, & @bpHopeMag…" +05/19/2018,Comedians,@mariabamfoo,"A PR person? I'd miss out on the social anxiety that is the internet! Only I will benefit! I like to ""like"" and ""f… https://t.co/SvwYGbQjRo" +05/19/2018,Comedians,@mariabamfoo,"FREE SHOW! Mon &Wed at 1 pm, I'll be doing my new hour at The Clubhouse 1607 N. Vermont Avenue, East Hollywood, CA,… https://t.co/m8u8JMKWcV" +05/19/2018,Comedians,@mariabamfoo,"She is an American (and had she competed in Eurovision and taken every prize, European) Treasure. A woman of iron… https://t.co/QFWHNwNCtX" +05/18/2018,Comedians,@mariabamfoo,You have set your bar at a leap-able height. https://t.co/Vt02RZc02Z +05/18/2018,Comedians,@mariabamfoo,"TONIGHT at 7 pm @vromans pasadena w ms @ellen_forney! Her new book ROCK STEADY is immensely helpful, hilarious and… https://t.co/XOZo6YLciC" +05/18/2018,Comedians,@mariabamfoo,Niiiice merch! Wahoo! https://t.co/AhZ4PUTrl9 +05/17/2018,Comedians,@mariabamfoo,"RT @JFLMTL: Just for Laughs is the world's largest stand up comedy festival and the biggest party in comedy. If last year looks fun, just w…" +05/17/2018,Comedians,@mariabamfoo,RT @fantagraphics: Los Angeles! Don't miss out on an amazing two-for-one show with cartoonist @ellen_forney and comedian @mariabamfoo FREE… +05/17/2018,Comedians,@mariabamfoo,So fun! Excited to see you on Friday at VROMANS! https://t.co/siMrayyITa +05/16/2018,Comedians,@mariabamfoo,Montreal! Join me at @JFLMTL July 27! Pre-sale code: JFLMTL https://t.co/2843ASWdU8 https://t.co/sSx2NvBBYz +05/15/2018,Comedians,@mariabamfoo,CINCY! (CINCINNATI) May 26th SATURDAY! @jackiekashian opens! We will be there at 7:30 PM but the show begins at 8… https://t.co/u6wyeOTjCi +05/15/2018,Comedians,@mariabamfoo,"DETROIT! ROYAL OAK! ONE NIGHT, ONE SHOW! TWO HEADLINERS FOR THE PRICE OF ONE! WHY AM I YELLING? FRIDAY MAY 25th… https://t.co/QNcYDUESVq" +05/14/2018,Comedians,@mariabamfoo,"RT @billmurraypub: Hey @mariabamfoo, you own a part of The Bill Murray now! Thank you for supporting us. You, Scott and the pugs are welcom…" +05/12/2018,Comedians,@mariabamfoo,THANK YOU!!!! so fun with Kate and Aaron! https://t.co/KxJm42vOnE +05/12/2018,Comedians,@mariabamfoo,RT @moshekasher: Literally a plot line from The Handmaids Tale. https://t.co/062p8cYJ60 +05/12/2018,Comedians,@mariabamfoo,RT @jackiekashian: First show last night @FlappersComedy I mentioned my dad is 81 and it got an applause break. Huh. So I stare at the audi… +05/12/2018,Comedians,@mariabamfoo,RT @goodgoodcomedy: #Philly! TONIGHT. 8:30 PM. Come see the hilarious @KateWillett & special guest @samlymatters. Cheap tix: https://t.co/W… +05/12/2018,Comedians,@mariabamfoo,GORGEOUS WORK! Strut with pride. https://t.co/Y6mLUHRBJQ +05/10/2018,Comedians,@mariabamfoo,Thanks for coming! https://t.co/JaUiaDHrmr +05/09/2018,Comedians,@mariabamfoo,Nope! https://t.co/EzvTSjAKBw +05/07/2018,Comedians,@mariabamfoo,PHILADELPHIA! 7:30 PM with Michelle Biloon! Tickets still available for general admit at $25. Come if you have th… https://t.co/MzucfjAZ0Y +05/07/2018,Comedians,@mariabamfoo,"RT @HeliumComedy: #ThisWeekAtHelium we graduate a new crop of students, one night with @SteveHofstetter, @TheJoeMatarese stops by for the w…" +05/07/2018,Comedians,@mariabamfoo,"RT @amiblue29: Love @mariabamfoo on #WorstCooks . . . . and, she is coming to Maine! Can't wait to see her at the @statetheatreME. . . . T…" +05/04/2018,Comedians,@mariabamfoo,"RT @elizaskinner: Thank you, Chad. You have impeccable taste in Comedy. https://t.co/QAGMRGi2WX" +05/04/2018,Comedians,@mariabamfoo,"RT @splcenter: 50 years ago, the Fair Housing Act sought to increase integration & end racial discrimination. But many of America's cities…" +05/04/2018,Comedians,@mariabamfoo,RT @billyeichner: Praying for Impeachment. #NationalDayOfPrayer +05/03/2018,Comedians,@mariabamfoo,I can’t believe I’m still in. Or maybe my hair and makeup are still in. They were definitely on fire. Thank you to… https://t.co/0PuoXn5sed +06/30/2018,Comedians,@margaretcho,Happy Saturday. #beauty #glam https://t.co/TQLazvfKVG +06/30/2018,Comedians,@margaretcho,"500,000 OF YOU TOLERATE MY TWITTER FEED! THANK YOU FOR THE LOVE AND SUPPORT! https://t.co/UNPdk5SzDV" +06/30/2018,Comedians,@margaretcho,Fixed it! https://t.co/njdV9noP8N +06/29/2018,Comedians,@margaretcho,RT @MAKERSwomen: Comedian @MargaretCho reflects on the resilience and sense of community she gained while growing up in San Francisco durin… +06/29/2018,Comedians,@margaretcho,RT @MikePMoffatt: @rywadams Amazing idea! My remake of Sanford and Son is starring @margaretcho and @IncredibleCulk. +06/29/2018,Comedians,@margaretcho,RT @steemee: ⁦@POTUS⁩ DID THIS! BLOOD ON HIS HANDS! ⁦@cher⁩ ⁦@Madonna⁩ ⁦@margaretcho⁩ ⁦@kathygriffin⁩ ⁦@DebraMessing⁩ ⁦@chelseahandler⁩ ⁦@… +06/29/2018,Comedians,@margaretcho,My face has really slimmed down from my @equinox workouts. It’s weird that’s where I lose weight! https://t.co/URfGIi37s2 +06/29/2018,Comedians,@margaretcho,@BruceDevlin @MontBleuResort REPLY +06/29/2018,Comedians,@margaretcho,TOMORROW NIGHT! Get ready Nevada. Tickets are still available. https://t.co/2MVf2NJpC0 @MontBleuResort +06/28/2018,Comedians,@margaretcho,"RT @KaleidoscopeFF: Margaret Cho: ‘Nobody Has Ever Really Accepted That I’m Truly Bisexual’ + +HuffPost #TheFutureIsQueer https://t.co/8EBigN…" +06/27/2018,Comedians,@margaretcho,"With Kennedy retiring, the right to access abortion in this country is on the line. Pres. Trump has promised to onl… https://t.co/usT6UZaZ2d" +06/27/2018,Comedians,@margaretcho,I don’t know about this. Purple glitter too much? https://t.co/bIvLtNpZFy +06/25/2018,Comedians,@margaretcho,Here’s me from the #LimestoneComedyFestival. I really look like a comedian. If you're in Nevada this Saturday the 3… https://t.co/QsU1ivgjw8 +06/24/2018,Comedians,@margaretcho,"To support @votolatino and #StopSeparation, @lenadunham and @JenniKonner will be matching your donations to Voto La… https://t.co/OKUCiDWQc2" +06/22/2018,Comedians,@margaretcho,RT @BillNyeSaves: .@BillNye and @MargaretCho welcome you to flavortown. https://t.co/lTlU9rT1lB +06/22/2018,Comedians,@margaretcho,"RT @Refinery29: We sat down with @jvn and @margaretcho to talk about #Pride, coming out, twerking and why the B in LGBTQ+ is still waiting…" +06/22/2018,Comedians,@margaretcho,RT @FARNOOSH: In convo with @margaretcho and how hamburgers fed her early money lessons. https://t.co/N85GrFrFWf #SoMoney https://t.co/6nj… +06/22/2018,Comedians,@margaretcho,RT @stvrsnbrgr: @robreiner @StephenAtHome @iamsambee @chelseahandler @kathygriffin @margaretcho @kathynajimy https://t.co/MtWxciEHi2 +06/22/2018,Comedians,@margaretcho,"It's Friday afternoon and I know you're not working, SO GO BUY YOUR TICKETS NOW! See you on the 30th at the… https://t.co/vxRjGEZQGz" +06/20/2018,Comedians,@margaretcho,Come see me June 30th at the @MontBleuResort You can buy your tickets here: https://t.co/SrlpCRGj4S https://t.co/FAhYujTwpM +06/20/2018,Comedians,@margaretcho,Happy #Pride Month! Check out this inspiring project I was part of with @LogoTV to highlight our LGBTQ+ family with… https://t.co/CcRAMJtppx +06/19/2018,Comedians,@margaretcho,Honored to be on the LOGO 30 https://t.co/yTnymwCDy9 +06/19/2018,Comedians,@margaretcho,RT @noahmichelson: I recently caught up with @MargaretCho to talk about Pride but the most powerful part was when she opened up about the s… +06/18/2018,Comedians,@margaretcho,Come see me at #JFL42! Tickets on sale at https://t.co/LQgWhz6XiQ https://t.co/cR3p49qa7y +06/15/2018,Comedians,@margaretcho,RT @ProudTimes: @margaretcho is still on tour! You won't want to miss this comedy queen! For more info on tickets check out https://t.co/er… +06/14/2018,Comedians,@margaretcho,RT @DanPasternack: Here's a @margaretcho Throwback Thursday to 1994. The 8th Annual American Comedy Awards with the great Jonathan Winters… +06/14/2018,Comedians,@margaretcho,RT @ProudTimes: Preview of our June issue -online tomorrow morning! We are so excited to bring you this issue with cover story @margaretcho… +06/11/2018,Comedians,@margaretcho,"Tickets available now for #JFL42 and I’ll be there 9/22!!! + +https://t.co/LQgWhz6XiQ https://t.co/ZN585prSzE" +06/10/2018,Comedians,@margaretcho,"HAPPY PRIDE TO ALL YOU LOVERS, LIVERS, AND LIFEGIVERS 🌈🌈🌈 https://t.co/NBGdgayjim" +06/08/2018,Comedians,@margaretcho,"RT @Jayson510: @BreedLittle @margaretcho A favor please, don’t use gay as a way to say lame or stupid. Thanks" +06/06/2018,Comedians,@margaretcho,THIS GIRL IS A FORCE TO BE RECKONED WITH AND THERE WILL BE NO SLANDER AGAINST HER NAME. #KellyMarieTran https://t.co/dbe1saJlDi +06/06/2018,Comedians,@margaretcho,RT @MAKERSwomen: Comedian @MargaretCho reflects on the resilience and sense of community she gained while growing up in San Francisco durin… +06/05/2018,Comedians,@margaretcho,"THIS FRIDAY & SATURDAY - JUNE 8 & 9TH!! IM BACK AT IT NEW JERSEY!!! HEADING TO @StressFactoryNJ, GET TICKETS TODAY… https://t.co/SDdRVWCDPy" +06/05/2018,Comedians,@margaretcho,Girl have you had dinner with her? I have. HMU for tips! https://t.co/R5A3IoAaGX +06/05/2018,Comedians,@margaretcho,RT @ComedyPlugs: RT @StressFactoryNJ: @margaretcho this FrI @ Sat at @Vinnie_Brand’s Stress Factory!! Come out for a hilarious night of com… +06/05/2018,Comedians,@margaretcho,"RT @DivaDelux: Thanks for the love @margaretcho 🙌🏾❤️ +I can't wait to perform with @SeleneLuna & @GregWalloch https://t.co/q9NQTbz6CK" +06/04/2018,Comedians,@margaretcho,Please check out my friend @seleneluna's show TOMORROW in LA. She's an amazing talent and this is going to be a gre… https://t.co/doiyIp5vhq +05/29/2018,Comedians,@margaretcho,"RT @JFL42: We're baaaaaaack! #JFL42 2018 coming at you HARD this September! We've got @sethmeyers, @JoKoy, @iamwandasykes, @hannibalburess,…" +05/25/2018,Comedians,@margaretcho,Share this! https://t.co/jyIdir3qLX +05/25/2018,Comedians,@margaretcho,Thanks for having me!😘 https://t.co/PbIBYBQmGr +05/25/2018,Comedians,@margaretcho,Hey-O https://t.co/dAzdMPnWg2 +05/22/2018,Comedians,@margaretcho,"RT @ahmedcomedy: Hey everyone Ep#2 of “LOLNOW” is up! I talk about @margaretcho show in KL, my comedy special picks of the week, Mitzi Shor…" +05/22/2018,Comedians,@margaretcho,Shut up https://t.co/q5d4eDCwXw +05/22/2018,Comedians,@margaretcho,RT @HRC: Out #bisexual comedian @MargaretCho uses her platform for #LGBTQ representation. @HRC is proud to honor her and many other incredi… +05/22/2018,Comedians,@margaretcho,"RT @MemphisMeats: .@BillNye after tasting our clean duck: ""This is just cool!"" The full episode—featuring @margaretcho and our CEO @UmaVale…" +05/19/2018,Comedians,@margaretcho,"ICYMI, I was a clue on @Jeopardy earlier this week! https://t.co/1G7bsWUaUH" +05/16/2018,Comedians,@margaretcho,"Thank you @TIME #FreshOffTheBloat +READ AND WATCH HERE: https://t.co/2nTgFXGAip https://t.co/Fyy85tr8il" +05/14/2018,Comedians,@margaretcho,Hey! I eat algae-shrimp and mealworms and SCORPIONS with @billnye on @billnyesaves. Season 3 on @netflix now!… https://t.co/9BGfjepGVD +05/14/2018,Comedians,@margaretcho,RT @lacomedylive: TAIWAN! Are you ready for @margaretcho’s debut show? It’s gonna be a night full of laughs so don’t miss out!! 🙏 https://t… +05/01/2018,Comedians,@margaretcho,HAPPY #MAYDAY! TOUR DATES IN ASIA FILLING UP FAST! #HONGKONG #SINGAPORE #KUALALUMPUR! https://t.co/hpB2vCceKS +04/28/2018,Comedians,@margaretcho,I like where your heads at. Sorry about you and Brittany. https://t.co/rTRi074E6Y +04/28/2018,Comedians,@margaretcho,Caption This. #OldHeadShotDay https://t.co/T4ppJmVV7L +04/26/2018,Comedians,@margaretcho,Had fun sitting with Tara from @next_fem! https://t.co/gGNqUQ1u0L +04/25/2018,Comedians,@margaretcho,Yassssssssss snap snap https://t.co/89hvoHNZrl +04/24/2018,Comedians,@margaretcho,"RT @ComedyPlugs: RT @GoodnightsCC: #ThisWeekAtGoodnights we've got Good Joke / Bad Joke Bingo, @margaretcho stops by for the weekend, and R…" +04/24/2018,Comedians,@margaretcho,"RT @lacomedylive: Check out @margaretcho's meeting with DIM SUM Magazines here!! 🙂 +https://t.co/7hzdwU7ApE https://t.co/SKjQstLjQF" +04/24/2018,Comedians,@margaretcho,Can’t wait to come to you! https://t.co/34tVypfNP0 +04/24/2018,Comedians,@margaretcho,👍🏼👍🏼👍🏼 https://t.co/ibfEMsAwIg +04/24/2018,Comedians,@margaretcho,Always a good time chatting with @outinjersey! Extending #FreshOffTheBloat (we're even going to Asia) (No North Kor… https://t.co/yPYq5QDx29 +04/23/2018,Comedians,@margaretcho,👄 🍒 https://t.co/RNVNpi65QV +04/23/2018,Comedians,@margaretcho,RT @MiikeyGrey: I finally get to see @margaretcho tonight at the Addison improv! I feel like this shirt would be super gay & appropriate!… +04/22/2018,Comedians,@margaretcho,"RT @lyndseyparker: In honor of #RecordStoreDay, here are some clips of me vinyl-shopping with awesome people. #RecordPlayers + +@MargaretCho…" +04/22/2018,Comedians,@margaretcho,THATS THE PLAN! LOVE YOU AND YOUR GUNT! https://t.co/T511Tupe2z +04/21/2018,Comedians,@margaretcho,It’s 4/20! Happy Margaret Cho Day! +04/21/2018,Comedians,@margaretcho,Special counsel? I dunno...what are words... https://t.co/fsOuaFAD6d +04/21/2018,Comedians,@margaretcho,RT @yashar: Big headlines re North Korea tonight and instead of reveling in the moment..... https://t.co/ORiHDKuUnU +04/21/2018,Comedians,@margaretcho,Can’t wait for this!!!! https://t.co/thRdJfmK1w +04/21/2018,Comedians,@margaretcho,We know he likes that tho. But let’s make sure he has a target! (NOT IT) https://t.co/0gMEHVtmXJ +04/21/2018,Comedians,@margaretcho,We don’t all know each other https://t.co/cpIg4onUgS +04/20/2018,Comedians,@margaretcho,"RT @leezy911: Getting to teach @MrEddieHuang’s hilarious and real memoir today with @margaretcho’s stand-up comedy - humor, politics, race,…" +04/20/2018,Comedians,@margaretcho,RT @AmandaGThang: @margaretcho you have inspired us to start our own queer run podcast called Near and Queer to My Heart (iTunes/Spotify) w… +04/18/2018,Comedians,@margaretcho,We're taking #FreshOffTheBloat to Singapore! I talked about it to @aprilmag - check it out here:… https://t.co/nyrCarbWeQ +04/12/2018,Comedians,@margaretcho,What's up Orlando? See you this weekend. #FreshOffTheBloat https://t.co/1F09tCkZ3z +04/12/2018,Comedians,@margaretcho,A very cute interview with #Meaww https://t.co/HtoypFblL4 https://t.co/RD1bpxqTlc +03/30/2018,Comedians,@margaretcho,I GOT THREE DATES IN ASIA COMING UP AND NONE OF THEM ARE KOREA CAUSE I AM TOO CONTROVERSIAL TO GET INTO THAT MESS R… https://t.co/x8VBs49Npd +03/27/2018,Comedians,@margaretcho,Had the pleasure of spending time with this extremely witty voice of a generation so I encourage you to making the… https://t.co/Ny2ejc6L9T +03/26/2018,Comedians,@margaretcho,"#HappyBdayStevenTyler!!! 70 YEARS YOUNG, BABY! https://t.co/OIrR7JHmFP" +03/22/2018,Comedians,@margaretcho,APOCALYPSE READY https://t.co/2PKMBRy2KF +03/19/2018,Comedians,@margaretcho,"RT @bowenyang: Look, @margaretcho and @roccocomedy are on this week and it’s a really special ep. Very very very thankful @mattrogerstho an…" +03/19/2018,Comedians,@margaretcho,Fun little interview with @michaelraver. READ IT HERE: https://t.co/MLQvrX3c7Q https://t.co/nBfgAm70fi +03/12/2018,Comedians,@margaretcho,"RT @PBImprov: The one and only @margaretcho takes the stage THIS WEEKEND, bringing her Fresh Off The Bloat Tour to Palm Beach! Get TIX: htt…" +03/12/2018,Comedians,@margaretcho,LOVE YOU @AnnaAkana <3 https://t.co/hN4S3nmLhK +03/09/2018,Comedians,@margaretcho,"🏝 WEST PALM BEACH 🏝 SHOW ME A GOOD TIME! I’m there next weekend, March 16/17 for #FreshOffTheBloat special engageme… https://t.co/72dxKnYggE" +03/09/2018,Comedians,@margaretcho,You help make it happen! https://t.co/7VRcItncyP +03/08/2018,Comedians,@margaretcho,The world is searching for “gender equality” on @Google more than ever before. Keep fighting for progress. Check ou… https://t.co/7YsjbiLTGh +03/02/2018,Comedians,@margaretcho,RT @WendyLowySloane: Special thx to @margaretcho for joining me this morning. Lots of laughs & great tease for what to expect tonight & tom… +03/01/2018,Comedians,@margaretcho,RT @mskason3: Share my daddy’s picture please https://t.co/V7QoEmtfqd +03/01/2018,Comedians,@margaretcho,Heading to Nyack Levity Live this weekend! TICKETS HERE IN THIS LINK HERE! (Don't live in Nyack? There's other date… https://t.co/9W0wSucwuE +02/28/2018,Comedians,@margaretcho,Can’t say don’t be a dick anymore because of you @DICKS. At least it’s for a good reason. #GunControlNow +02/28/2018,Comedians,@margaretcho,"I'm still #FreshOffTheBloat and ready to spread that magic all over you New York! Come one, come all - tickets stil… https://t.co/YYf1nKwYdd" +02/24/2018,Comedians,@margaretcho,RT @standuplive: THIS WEEKEND! Don't miss @margaretcho Friday and Saturday night! Get TIX: https://t.co/qEbYjw8673 https://t.co/OgqC3Teimk +02/19/2018,Comedians,@margaretcho,"THE FACE OF THE FUTURE HAS HAD ENOUGH OF YOUR BULLSHIT! Nothing but love for #EmmaGonzalez, a TRUE leader.… https://t.co/KOGmqdEAWI" +02/18/2018,Comedians,@margaretcho,MORE #FRESHOFFTHEBLOAT DATES! THIS WEEK IM IN PHOENIX! LAST DATES OF FEBRUARY! MORE DATES THRU JUNE!! COME GET TICK… https://t.co/2nE2yIKN4m +02/13/2018,Comedians,@margaretcho,If you’re in need of a red hot lovah this #ValentinesDay join me at the Improv in Hollywood for saucy uproarious la… https://t.co/xooLF7bZV9 +02/12/2018,Comedians,@margaretcho,"I think you'll like the vibe of this interview, I enjoyed sitting down with @SmashingIntvws I think you'll like thi… https://t.co/4Tj200t9Jr" +02/08/2018,Comedians,@margaretcho,It’s about time we prioritized female pleasure. Thanks @TrystNetwork and @JessicaBiel for spreading the word.… https://t.co/Uzbj822Elq +02/06/2018,Comedians,@margaretcho,🚨🚨🚨NEW U.S. DATES FOR #FRESHOFFTHEBLOAT!!! Tickets on sale now at https://t.co/1VdtmqDyjB!!! 🚨🚨🚨 https://t.co/Rihy15rsQ8 +02/05/2018,Comedians,@margaretcho,I sat with my longtime makeup artist @johntstapleton for a chat while he slapped up my mug using the best of… https://t.co/W5I7mfp3fs +02/02/2018,Comedians,@margaretcho,"You asked for it, INCOMING even MORE #FreshOffTheBloat including a VALENTINE'S DAY show for you Los Angeles… https://t.co/52BvU1dmIi" +01/31/2018,Comedians,@margaretcho,"RT @BenJealous: Trump was wrong to demagogue immigrant communities tonight. + +Period." +01/31/2018,Comedians,@margaretcho,RT @yashar: You are the last person in media that is allowed to speak about anything related to women ever again. https://t.co/Fxk0IzpN3S +01/30/2018,Comedians,@margaretcho,ICE HOUSE PASADENA - TOMORROW NIGHT!!! 8PM SPECIAL SHOW! DONT BE LATE! TIX HERE: https://t.co/69EQ4dCBqM #icehouse https://t.co/JSrwQuvgIk +01/25/2018,Comedians,@margaretcho,RT @GAYWhistler: A very special message to everyone in Whistler for #whistlerpride2018 from MARGARET CHO! Join us for the Night of Comedy W… +01/25/2018,Comedians,@margaretcho,Cause Frances McDormand would have that ass shook! https://t.co/xQVT6FMRGe +01/24/2018,Comedians,@margaretcho,RT @DanielNewman: Are you guys coming to snowboard with me Jan 24-28 at #Whistler? @margaretcho is coming! https://t.co/1OKfRFdOIZ +01/22/2018,Comedians,@margaretcho,"Fuck Nazis. I don’t care how cool your Christmas parties are. FUCK. YOU and the clique you claim. + +That’s all." +01/22/2018,Comedians,@margaretcho,"This wasn’t once or twice, this was constant interaction. I feel like @xychelsea used me and others because we are… https://t.co/gUU9pDFTog" +01/22/2018,Comedians,@margaretcho,"I supported @xychelsea through her ordeal and especially because I was consistently told she was either near death,… https://t.co/KLCoxsXKAN" +01/22/2018,Comedians,@margaretcho,RT @buddhistchick75: Important: @margaretcho needs your help to win the #ShortyAwards. Join me and vote https://t.co/y6rWGHWsM0 +01/21/2018,Comedians,@margaretcho,RT @LGBTPlusProud: Hate is far more of a choice... #NOH8 https://t.co/LhW7e0NDit +01/21/2018,Comedians,@margaretcho,#LetKathyBackIn https://t.co/AxwdRVNhg2 +01/19/2018,Comedians,@margaretcho,RT @beautycon: GIANNI VERSACE BROKE ALL THE RULES! LEARN HOW THE LATE FASHION MOGUL CHANGED GAME. #ACSVersace https://t.co/VYAIu6vLo1 +01/15/2018,Comedians,@margaretcho,RT @KendraHulbert: @margaretcho The Cranberries made my high school years more bearable. Very sad news today. +01/15/2018,Comedians,@margaretcho,"REST IN POWER #doloresoriordan - a voice like no other, a beauty like no other, a fierce resister that inspires all… https://t.co/CL3bhbaSEo" +01/04/2018,Comedians,@margaretcho,I start my mornings with @yashar and let it tumble from there. Always a treat! +01/04/2018,Comedians,@margaretcho,RT @jaketapper: Yesterday: https://t.co/cXCZAEtpKN +01/04/2018,Comedians,@margaretcho,I did die tho https://t.co/2EH0v6UWiT +01/04/2018,Comedians,@margaretcho,RT @arturo1gonz: Watched Margaret Cho's stand up comedy Beautiful on Hulu. Absolutely loved it. Love you @margaretcho 👅😘🙌👑 +01/04/2018,Comedians,@margaretcho,Not gonna be in Bright 2 but someone call Will Smith and lobby for it. Maybe I can be regenerated https://t.co/Y0nakdS9O0 +01/04/2018,Comedians,@margaretcho,"RT @Shmartemis: ARE YOU READY FOR SOME not FOOTBALL?! +Mother May I Dance With Mary Jane's Fist?: A Lifetone Original Movie for @adultswim…" +01/03/2018,Comedians,@margaretcho,I'm heading to Whistler because I want to freeze my tits off and heard this is the place to do that right now! I'm… https://t.co/D6SUIaVaZH +01/03/2018,Comedians,@margaretcho,Thanks to this amazing cover story from #OutinJersey! READ: https://t.co/vlAcrxHNol https://t.co/EpiFjmXJzH +12/20/2017,Comedians,@margaretcho,"Over 12,000 Dreamers are at risk of deportation TODAY because Trump ended DACA. That number will only keep growing.… https://t.co/P4kFm0ugQz" +12/19/2017,Comedians,@margaretcho,I'm on @michaelianblack's wonderful podcast @HTBA_Show which of course I am... https://t.co/49BQj0v81f +12/13/2017,Comedians,@margaretcho,"I cant stop watching this #DougJones congrats, #RoyMoore get lost! https://t.co/0EcXCKx8j9" +12/12/2017,Comedians,@margaretcho,RT @DarkMattersProj: .@margaretcho on Surviving Sexual Abuse and Evolving into a Political Comic https://t.co/3eEPdDcpTH https://t.co/0S6y7… +12/10/2017,Comedians,@margaretcho,"RT @broadly: @margaretcho ""With all the stuff about Harvey Weinstein and Louis CK—and what I talk about in my show now, too—is how we have…" +12/10/2017,Comedians,@margaretcho,"RT @o2sbe: Check out the @guardian's review of @margaretcho's wild show in Bristol!👏 https://t.co/Gci2J5JRZN +You just know her show 'Fresh…" +12/10/2017,Comedians,@margaretcho,"RT @HarvBlue: Fuck the snow, yo, we’re still coming to see you @margaretcho #rhyminggamestrong. #london" +12/09/2017,Comedians,@margaretcho,@farrah0000 @MooreSenate The character count! ❤️ +12/09/2017,Comedians,@margaretcho,"Hey @MooreSenate, the last time America was great was before AfAm were dragged here against their will, Native Amer… https://t.co/0fOuV9qBR5" +12/08/2017,Comedians,@margaretcho,COPENHAGEN! Lets get raw! #freshoffthebloat will begin shortly! https://t.co/C3Y5BkkCct +12/07/2017,Comedians,@margaretcho,Guess what? Let me record your new voicemail for you and proceeds from the auction will benefit @ACLU_SoCal! Bid on… https://t.co/UXr6anGu2B +12/04/2017,Comedians,@margaretcho,"Only 6 more shows, #Amsterdam #Antwerp #Copenhagen #London #Vienna #Oslo https://t.co/PZrIcoPY1L… https://t.co/vzuponimx4" +12/03/2017,Comedians,@margaretcho,ZING! 🤣 https://t.co/JNn5KuNyFK +11/27/2017,Comedians,@margaretcho,The #FashionPolice walks its final beat tonight on E! @e_FashionPolice - tune in at 8P EST! https://t.co/doHEv5xZQ3 +11/27/2017,Comedians,@margaretcho,Thank you Metro Edinburgh for the lovely review for #FreshOffTheBloat https://t.co/PVNhVQ4pzA https://t.co/AWrtz9YXX0 +11/23/2017,Comedians,@margaretcho,"Whoops, make that 11:45 y'all. #bbctw @bbcthisweek https://t.co/5ErRkCyniC" +11/23/2017,Comedians,@margaretcho,Happy Thanksgiving y’all and good evening London! I’m on “This Week” @bbcthisweek tonight on BBC One at 10:30 UK time! #bbctw 🦃 🇬🇧 +11/22/2017,Comedians,@margaretcho,"Before I head out on tour overseas for #FreshOffTheBloat, I had to share #WhatsInMyBag! +https://t.co/rxxukPZz1P https://t.co/pjyxAwCZl9" +11/17/2017,Comedians,@margaretcho,Good idea https://t.co/uycD9thYMO +11/17/2017,Comedians,@margaretcho,"RT @FestivalBristol: #Bristol #competitions win a pair of tickets to see @margaretcho new comedy show, Fresh Off The Bloat, @stgeorgesbris…" +11/16/2017,Comedians,@margaretcho,"Sorry #SouthDakota, we definitely tried. https://t.co/IZwJd63Hyg" +11/15/2017,Comedians,@margaretcho,#FreshOffTheBloat tix avail now click the link in my bio and join me in the UK and Europe! https://t.co/ERvwJjHP7V https://t.co/YLq3gweuYK +11/11/2017,Comedians,@margaretcho,Right. https://t.co/vG35IYwXeo +11/11/2017,Comedians,@margaretcho,I’m at @katyperry tonight in a sea of kids whose lives will be made better by the brave actions of a few #metoo +11/07/2017,Comedians,@margaretcho,Europe! UK! Special message for you 📫💌 https://t.co/PZrIcoPY1L https://t.co/5aBHY5fmcv +11/03/2017,Comedians,@margaretcho,Philly! Read my latest in @thephillyvoice ahead of my show this weekend! https://t.co/Iz79ZsF5eA https://t.co/PPMw9zPs9e +11/03/2017,Comedians,@margaretcho,"Be one of the first to #jointhedynasty, support an amazing new LA venue for comedy! https://t.co/xeCkJWhDkk" +11/03/2017,Comedians,@margaretcho,"Philly, I'm bringing my show ""FRESH OFF THE BLOAT"" to you this weekend! Get tickets here: https://t.co/PZrIcoPY1L https://t.co/AzKxeqI53S" +11/03/2017,Comedians,@margaretcho,Tickets are on sale for #FreshOffTheBloat in Europe and the U.K.! Go to my site to get them now:… https://t.co/HxRvjBFEQC +10/29/2017,Comedians,@margaretcho,"Hopefully tomorrow, from the mind of @1oneclone https://t.co/zWJh7bw1Xj" +10/28/2017,Comedians,@margaretcho,#Mueller time got me like...ayyyyyyy https://t.co/s2D9KdeVqx +10/27/2017,Comedians,@margaretcho,Always so fun running into old friends @tomgreenlive 😎 https://t.co/lwxIdOYowk +10/26/2017,Comedians,@margaretcho,OH YES⚡️⚡️ I want y’all in my coven ❤️ https://t.co/E5V0lIIT9z +10/22/2017,Comedians,@margaretcho,RT @AranORoe: Headed to see @margaretcho tonight! Loves her so much. +10/22/2017,Comedians,@margaretcho,RT @DowntownDonna69: Excited to see @margaretcho 'Fresh off The Bloat' @Castro_Theatre. Gonna be a great! https://t.co/k5eFTG8VIe +10/22/2017,Comedians,@margaretcho,"RT @ryanzhelp: Yay @MargaretCho! (@ Castro Theatre for Margaret Cho: Fresh Off the Bloat in San Francisco, CA) https://t.co/T2xSrPQY3O" +10/22/2017,Comedians,@margaretcho,RT @RickyTweetsToo: Second row to see @margaretcho tonight! Hilarious woman that constantly breaks the boundaries… https://t.co/EWGBwh0Lyt +10/22/2017,Comedians,@margaretcho,RT @Militant_Asian: Hey @margaretcho that was us cheering the Jesus joke stage right. Thank you for making us laugh our asses off. 💜 +10/22/2017,Comedians,@margaretcho,"RT @ChinHuaLu: Just saw @margaretcho perform: Not only was she hilarious, I could see her highlighter poppin' from the balcony damn 👏🏼 #Fre…" +10/22/2017,Comedians,@margaretcho,I wore my most Asian outfit for you San Francisco. See you tonight #FreshOffTheBloat https://t.co/Stc3YMuzVp +10/21/2017,Comedians,@margaretcho,RT @mitten82: I've always been a fan of @margaretcho so I designed this as a token of my love for Margaret. :) https://t.co/ILbu4bQ4K3 +10/21/2017,Comedians,@margaretcho,Thank you Santa Cruz! Love the neon 👌🏼💥⚡️ https://t.co/pB1VI3r2Iq +10/20/2017,Comedians,@margaretcho,Yessss!!!!😘 https://t.co/U3Y7Q46bbU +10/20/2017,Comedians,@margaretcho,RT @DIVAmagazine: The November issue starring @margaretcho is out now! Here's how to get your hands on a copy... #FridayFeeling 🎉 https://t… +10/20/2017,Comedians,@margaretcho,RT @centralcitydigs: @margaretcho thank you for the Sac show! Go #grrrl +10/20/2017,Comedians,@margaretcho,RT @mcespino: @margaretcho Thank you for an amazing show!!!! https://t.co/UVBKu0o5Ed +10/19/2017,Comedians,@margaretcho,"#SpiritDay, stop the bullying - don’t wait for Melania to finish her gloss and injections to tell you this. Thank y… https://t.co/ZbXzArBYlR" +10/19/2017,Comedians,@margaretcho,@Kevin_byDesign Come thru! +10/19/2017,Comedians,@margaretcho,"RT @bust_magazine: ""After more than 30 years in stand up, it is no exaggeration to say that @margaretcho is at the top of her game. "" https…" +10/19/2017,Comedians,@margaretcho,https://t.co/ERvwJjZpZt for tix!!! https://t.co/iRDdhB9pMK +10/19/2017,Comedians,@margaretcho,Can’t wait to see you either hunty https://t.co/kLE69mFVwd +10/19/2017,Comedians,@margaretcho,"Isss gone, girl https://t.co/lsSliKWltR" +10/19/2017,Comedians,@margaretcho,RT @OurMilkMoney: SO done w/ #toxicMasculinity & #patriarchy. #womenleaders this is how we #unite & #stopsilence https://t.co/5DT4WQnbts #s… +10/19/2017,Comedians,@margaretcho,"Prayers up, only got one or two AZN’s in the NBA and we need them all! #JEREMYLIN https://t.co/pdFBtivk90" +10/14/2017,Comedians,@margaretcho,Some fine words from @washingtonpost about #FreshOffTheBloat (it’s not #fakenews!) https://t.co/oWsqOnfiJ1 +10/13/2017,Comedians,@margaretcho,RT @DJchaotic: @margaretcho @GramercyTheatre You were on fire last night. Loved your set. Brought so much joy at a time when it's truly nee… +10/13/2017,Comedians,@margaretcho,Thank you to @HuffPost and fuck Harvey Weinstein. https://t.co/sovHCTDpg5 https://t.co/3u92wy3eme +10/13/2017,Comedians,@margaretcho,Thank you @GramercyTheatre and NEW YORK CITY! 🗽 #FreshOffTheBloat https://t.co/dIYtrJeNJ4 +10/13/2017,Comedians,@margaretcho,RT @patrickglee: @margaretcho thank u for tonite & for blazing a path. we were the gaggle of korean gays in front! also: our film on asians… +10/13/2017,Comedians,@margaretcho,RT @Kizzbeth: Tonight I went to see @margaretcho with @mimiferraro but we were laughing so hard we forgot to… https://t.co/ZdMkyQSv48 +10/13/2017,Comedians,@margaretcho,RT @tatianatenreyro: There is nothing more therapeutic than hearing @margaretcho call out rapists tonight during her set and talk about her… +10/13/2017,Comedians,@margaretcho,RT @jeremycolemusic: @margaretcho SLAYED per usual🙌🏼 loaughed so hard I couldn’t breathe 😂😂😂 #margaretcho #comedy… https://t.co/kqpBcJeLlG +10/13/2017,Comedians,@margaretcho,"RT @adith1801: With this crowd, @margaretcho's show might as well be sponsored by @Grindr" +10/13/2017,Comedians,@margaretcho,RT @gayinfj: Can’t wait to see @margaretcho tonight!! I have a feeling she will be exactly what I need after the last 10 months of this Tru… +10/13/2017,Comedians,@margaretcho,RT @FranciscoNYC: Over the top excited to see my inspiration for LIFE tonight: @margaretcho + @SeleneLuna!!!! https://t.co/aWgVYS2eOd +10/12/2017,Comedians,@margaretcho,"NEW YORK! You wanna get involved with a movement, come see me in #FreshOffTheBloat tonight at the Gramercy - tix:… https://t.co/mOAIW1k8Ys" +10/10/2017,Comedians,@margaretcho,"RT @BeautyconTweets: #BenAffleck done slipped up. https://t.co/Uar5XkkiRO +#HarveyWeinstein #WhyWomenDontReport https://t.co/qmBDw0LUFa" +10/06/2017,Comedians,@margaretcho,RIP Raphie May. Way too soon. Way too young. It just sucks. Love you. +10/06/2017,Comedians,@margaretcho,ShoutOUT I love you and you can beat this!!! ❤️ https://t.co/nIAJuPqb8r +10/06/2017,Comedians,@margaretcho,RT @heidyv: Getting my rofls on at @margaretcho and @SeleneLuna! Love these ladies! 😂😂😂😂 https://t.co/DX3KyF1NN3 +10/06/2017,Comedians,@margaretcho,"RT @RyTheGuy915: @margaretcho @SeleneLuna Thank-you for an amazingly hilarious show! It was my friend's first comedy show, and you made it…" +10/06/2017,Comedians,@margaretcho,RT @CurvyPervy: Hahahaha nalgas @margaretcho I love her. She's so real. @ The Wiltern https://t.co/9tNRS25iz5 +10/06/2017,Comedians,@margaretcho,"RT @jeffleach: Saw @margaretcho's 'Fresh Off The Bloat' live tonight and it was hilarious. Wonderful material, calmly executed. https://t.c…" +10/06/2017,Comedians,@margaretcho,RT @strawberrycindy: Saw @margaretcho's live stand-up comedy tonight. She's so hilarious and raunchy and seriously so perf. Thank u soo muc… +10/06/2017,Comedians,@margaretcho,RT @DJLisaFoxx: Cuz yesssss...@margaretcho was THAT FUNNY!!! thank uuu for the MUCH NEEDED giggles ;) oh and my date was fun too haa xoxo @… +10/06/2017,Comedians,@margaretcho,RT @cherryteresa: Fun times last night seeing @margaretcho and Selena Luna with Brad at the #Wiltern! #freshoffthebloat https://t.co/KAmZ8V… +06/05/2018,Comedians,@WhoopiGoldberg,Also last night @CFDA I saw the amazing @NaomiCampbell who got an award as did the wonderful @KimKardashian. It wa… https://t.co/81xJ3yE6f5 +06/05/2018,Comedians,@WhoopiGoldberg,"I was at the CFDA awards, @CSiriano decided to take me and put me in a bright beautiful color,THANK YOU so much 4 a… https://t.co/0p94fSqb6q" +05/22/2018,Comedians,@WhoopiGoldberg,"@NesterMt Umm, when John McCain says water boarding doesn’t work because he actually knows, also YOU care what I ha… https://t.co/Lr9bQmS14o" +05/01/2018,Comedians,@WhoopiGoldberg,Excited to bring my 9 animated shorts to @Tribeca ’s film festival this year to celebrate imaginative storytelling.… https://t.co/ouJZjAjJXO +04/26/2018,Comedians,@WhoopiGoldberg,Yesterday I spent the afternoon immersed in Summer the Donna Summer musical at the Lunt on Broadway. She had a 1 of… https://t.co/zuQnHqTzF2 +04/23/2018,Comedians,@WhoopiGoldberg,I just spent the whole day in the theatre watching Harry Potter & the Cursed Child pt 1 &2. The show is off the hoo… https://t.co/NsMLbfIq9c +03/09/2018,Comedians,@WhoopiGoldberg,"@KillerMartinis I read your piece in today’s @thedailybeast, story 3. I tried 2 post but I kept messing it up, hope… https://t.co/8jNyyWAlQC" +03/05/2018,Comedians,@WhoopiGoldberg,RT @LoriGreiner: Luv to laugh?! See what in the world @LouieAnderson & I are up to on the HILARIOUS TV comedy @BasketsFX w/ @galifianakisz… +02/24/2018,Comedians,@WhoopiGoldberg,"RT @Ike_Saul: Students have: + +- forced CNN town hall +- got new commitments from Rubio +- pressured POTUS to call for bump stock ban +- led a…" +02/24/2018,Comedians,@WhoopiGoldberg,RT @BetteMidler: And to you Hertz! Well done! https://t.co/b5uQZrdLKJ +02/24/2018,Comedians,@WhoopiGoldberg,"RT @helenhousandi: I've watched this GIF at least 100 times now, cry-laughing the entire time. https://t.co/Hih7VJe28T" +02/23/2018,Comedians,@WhoopiGoldberg,@FLGovScott THANK YOU for of choosing the well-being of Kids & Teachers FIRST https://t.co/JaNFzpvsHZ +02/14/2018,Comedians,@WhoopiGoldberg,@darlenebearden @auburnrunnermom @plusaphoto @ABC @TheView @JoyVBehar @foxandfriends @sunny @MeghanMcCain… https://t.co/3jb2hYvMN5 +02/14/2018,Comedians,@WhoopiGoldberg,@_Makada_ @delorose propaganda much Makada? If VP feels some type of way..he should not have attended the olympics… https://t.co/jT7n4rkufa +02/14/2018,Comedians,@WhoopiGoldberg,@JordanPeele @Ryyyanne Can I say this on the view? +02/14/2018,Comedians,@WhoopiGoldberg,@darlenebearden @ABC @TheView @JoyVBehar why are you watching Darlene you still have free will save yourself the ag… https://t.co/c0HsA4vee6 +02/14/2018,Comedians,@WhoopiGoldberg,"Oh hell AND Happy Valentine’s Day, these are for you all❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️… https://t.co/Sy11HFDv2q" +02/14/2018,Comedians,@WhoopiGoldberg,Kudos NOT kiddos +02/14/2018,Comedians,@WhoopiGoldberg,Kiddos.. not kiddos😱 +02/14/2018,Comedians,@WhoopiGoldberg,"kiddos to this director@RyanCoogler 4 getting it done damn well, Lupita, Dani, Letitia, & Florence r messing people… https://t.co/RoTm7tSicz" +02/14/2018,Comedians,@WhoopiGoldberg,"Just watched Black Panther, RUN 2 this Film, Chadwick Boseman, Michael B Jordan off the hook, & EVERY woman in thi… https://t.co/1x0qKpU0U3" +02/05/2018,Comedians,@WhoopiGoldberg,"RT @sallykohn: Trayvon Martin would have turned 23 years old today. George Zimmerman shot and killed him, but… https://t.co/XVvLV8eLvM" +01/31/2018,Comedians,@WhoopiGoldberg,RT @EdKrassen: Neil Gorsuch dined w/ high ranking GOP Senators at the home of GOP Senator John Cornyn. Why is it wrong for an FBI agent to… +01/31/2018,Comedians,@WhoopiGoldberg,"No mention of Niger or of Sgt LaDavid Johnson, no mention of those Soldiers. Why not.. just asking." +01/31/2018,Comedians,@WhoopiGoldberg,"RT @RepDwightEvans: President Trump talked a whole lot about the black unemployment rate, but has his aides misinformed–yet again—he should…" +12/21/2017,Comedians,@WhoopiGoldberg,I just was sent this from a friend& so I figured I’d Shae it with you..makes a great point.. https://t.co/61PlwbIzxt +12/19/2017,Comedians,@WhoopiGoldberg,"Hey everyone I feel I have been remiss in wishing +Happy Chanukah Merry Christmas, Happy Holidays +Happy New Year to… https://t.co/vG7aYDmpVJ" +10/05/2017,Comedians,@WhoopiGoldberg,https://t.co/xPdNWiaAMh +08/20/2017,Comedians,@WhoopiGoldberg,"I realize I may be late with all this but all know is,losing Dick Gregory & Jerry Lewis is a gain 4 heaven, but big loss for comedy" +08/20/2017,Comedians,@WhoopiGoldberg,"Jerry Lewis passed today,millions around the world loved him,millions of kids he helped w/his telethons. R.I.P. &condolences 2 his family" +08/20/2017,Comedians,@WhoopiGoldberg,"About being black in America Dick Gregory has passed away, Condolences to his family and to us who won't have his insight 2 lean on +R.I.P" +08/20/2017,Comedians,@WhoopiGoldberg,"Dick Gregory, Truth teller, make you fall on your face laughing Comedian, health man before it was cool & crazy expensive unapologetic" +08/16/2017,Comedians,@WhoopiGoldberg,U all R the reasons This behavior will NOT fly +08/16/2017,Comedians,@WhoopiGoldberg,"To ALL those denominations who continue2come out &protest wrongs you C,2 all U different races that come out &protest the wrongs U C THANK U" +08/16/2017,Comedians,@WhoopiGoldberg,The silence of the Christian Right about the Charlottesville Attack is deafening. +08/16/2017,Comedians,@WhoopiGoldberg,Allowing this hate a new place to fester with permission from the man in office.laying blame on both sides is LUDICROUS WTF +08/16/2017,Comedians,@WhoopiGoldberg,"Why R people surprised that ""new guy "" in office who started HIS run out w/hate speech that many overlooked in order to justify voting 4him" +08/07/2017,Comedians,@WhoopiGoldberg,"Hey there y'all have been on my mind and just wanted 2 say thank you 4 all your support over the years,& haven't said that you in a while🙂" +07/28/2017,Comedians,@WhoopiGoldberg,"@MarkReardonKMOX Mark, that's how u ask a question you want their ans. You ask, you don't tell them & Ur on the radio you know that" +07/28/2017,Comedians,@WhoopiGoldberg,To sit down and make ACA work for the majority and not respective parties.Bravo 2 those who remembered it's about the People NOT the Party +07/28/2017,Comedians,@WhoopiGoldberg,That was never done with ACA Mitch McConnell led his party into a stance not good for the https://t.co/I54jgf7NHl both side will have +07/28/2017,Comedians,@WhoopiGoldberg,"Thank2John McCain Claire McCaskill&Susan Collins,ACA was not perfect, no bill is, both sides then take it and make it work 4 the people" +07/25/2017,Comedians,@WhoopiGoldberg,"Congrats!!!!!! +https://t.co/Ptoo0geNJX" +06/30/2017,Comedians,@WhoopiGoldberg,"I'm crazy excited & amazed 2 b selected as 1 of the Board of Governors 4 @TheAcademy. I'm really thrilled!!! Thanks Academy, thanks voters!!" +05/17/2017,Comedians,@WhoopiGoldberg,Watch this powerful film by @JOSS Whedon & then join the fight to #StandWithPP → https://t.co/qi3aTTq08a +05/09/2017,Comedians,@WhoopiGoldberg,"So excited,1 of the smartest people I know launches Deadline:White House on MSNBC at 4 go @NicolleDWallace, can't wait to watch!!!" +04/06/2017,Comedians,@WhoopiGoldberg,"One of the all time great men & comics Don Rickles passed, always a class act & funny as hell. RIP condolences to his family & to America" +03/06/2017,Comedians,@WhoopiGoldberg,"Ben Carson..please read or watch Roots, most immigrants come here VOLUNTARILY,cant't really say the same about the slaves..they were stolen" +03/02/2017,Comedians,@WhoopiGoldberg,Important clarification about fake news attributed to me. Thank you @snopes for debunking #FakeNews:… https://t.co/auFP2yBFmj +03/01/2017,Comedians,@WhoopiGoldberg,"RT @FIRE_THE_FOOL: ""Education is civil rights issue of our time"" -45. I'd argue CIVIL RIGHTS is the civil rights issue of our time. #fireth…" +03/01/2017,Comedians,@WhoopiGoldberg,RT @waltb31: Been watching @MSNBC all day Not one mention of Rachel @maddow's blockbuster exposé of the Wilbur Ross Russian bank ties. Wond… +03/01/2017,Comedians,@WhoopiGoldberg,"RT @sallykohn: FACT CHECK: Obama actually CUT the deficit by almost three-quarters. + +https://t.co/YhyU42vK1N #JointAddress" +03/01/2017,Comedians,@WhoopiGoldberg,RT @thesherylralph: #THEGREATWALL Joshua fought the battle of Jericho and you know what happened! +03/01/2017,Comedians,@WhoopiGoldberg,"RT @PolitiFact: ""94 million Americans"" out of the labor force. That's misleading. https://t.co/hVBWNWBUAl https://t.co/h1CRYDswTx" +03/01/2017,Comedians,@WhoopiGoldberg,"RT @JCTheResistance: #DontGetTrumped +#BlackOutTrump + +Don't get complacent. + +Don't back down + +Stay pissed off. https://t.co/cGvTs62KNF" +03/01/2017,Comedians,@WhoopiGoldberg,A Great Great Wall? What the hell? +02/27/2017,Comedians,@WhoopiGoldberg,"I'm so honored to be part of #WhenWeRise, starting Tonight 9|8c on ABC. Hope you’ll check it out. https://t.co/tUKqpa2W8k" +02/25/2017,Comedians,@WhoopiGoldberg,“LETTER TO IVANKA” by @woke_nation https://t.co/EKqtalWK0t A beautiful request +02/22/2017,Comedians,@WhoopiGoldberg,"Hey everyone who re-tweeted that young man's info, @SherriEShepherd just let me know he's been found alive and he is now safe. YOU ALL ROCK!" +02/21/2017,Comedians,@WhoopiGoldberg,https://t.co/zrOj8JnYpQ +02/21/2017,Comedians,@WhoopiGoldberg,Hey @SherriEShepherd asked me to tweet this out & to get folks 2 retweet PLEASE HELP https://t.co/0Mtml6hgGP +02/17/2017,Comedians,@WhoopiGoldberg,"@StephenKing been re-listening 2 Salems Lot &into my dreams comesJohn Zacherley (also watched as a kid)message 2 U from him ""I am a story""" +02/16/2017,Comedians,@WhoopiGoldberg,"WellG'nite, I wish us all the good fortune 2 sleep & wake up tomorrow & do our best 4 R family & friends & the occasional stranger" +02/16/2017,Comedians,@WhoopiGoldberg,@Susang1979 @TiffanyATrump silly woman I said I would sit with her at any of the fashion shows do your home work +02/16/2017,Comedians,@WhoopiGoldberg,@Wyattladelle @TiffanyATrump omg do ur homework dude wtf r u talking about do u even know? You don't watch the show & now u look stupid. +02/16/2017,Comedians,@WhoopiGoldberg,"@BrentJManners @TiffanyATrump yes when she was a little girl," +02/16/2017,Comedians,@WhoopiGoldberg,@Argos5USA @TiffanyATrump sorry did u know that I said I would sit with her at the next fashion show?Nothing about the view.. do ur homework +02/16/2017,Comedians,@WhoopiGoldberg,"RT @EKeratsis: @WhoopiGoldberg How kind, your thoughts toward Tiffany Trump. I am no Trump supporter. DONALD Trump. But the kid? You're a m…" +02/16/2017,Comedians,@WhoopiGoldberg,@whoosdat @TiffanyATrump u have no idea what ur talking about do u? U heard something that u didn't bother to check +02/16/2017,Comedians,@WhoopiGoldberg,@JT3cool @TheDailyBeast_ @thedailybeast I mean no matter who you voted for does ANYONE think this is a good idea? +02/16/2017,Comedians,@WhoopiGoldberg,@BPoppel what? Look if ur going 2bitch bout the view at least know what your talking about & clearly U don't get your the facts right +02/16/2017,Comedians,@WhoopiGoldberg,@lemon_meringues thank you I'll try to remember that🙋🏾 +02/16/2017,Comedians,@WhoopiGoldberg,"@garza_anabella I hope people will continue to support them. +🙋🏾" +02/16/2017,Comedians,@WhoopiGoldberg,"Senate Does NRA’s Bidding, Lets 75,000 Mentally Ill People Buy Guns https://t.co/dcq34kAKfl via @TheDailyBeast_" +02/15/2017,Comedians,@WhoopiGoldberg,"I JUST saw this, I ADORED your dad!!& nice to say hi to you as well https://t.co/jj9yPhli6g" +02/15/2017,Comedians,@WhoopiGoldberg,@HeyMisfit he was the best +02/15/2017,Comedians,@WhoopiGoldberg,@Yuridianocun LOVE Cancun!! +02/15/2017,Comedians,@WhoopiGoldberg,@JT3cool hey Joe!! 😀 +02/15/2017,Comedians,@WhoopiGoldberg,"Whatever your belief's I wish for us and all our friends, lovers, kids, strangers a really good day and laughter somewhere in the day." +02/15/2017,Comedians,@WhoopiGoldberg,"@ru4boo if you wish it, hello my sister💃🏽" +02/15/2017,Comedians,@WhoopiGoldberg,"@melbourneminker nope I'm still here, I'd say check your facts, but if facts actually mattered to u, you'd have sent a smarter tweet" +02/15/2017,Comedians,@WhoopiGoldberg,RT @OhMyGOFF: Please RT 27-Year-Old Woman Reported #Missing In Maryland: https://t.co/zepagaM6Fj via @nbcwashington +02/15/2017,Comedians,@WhoopiGoldberg,"Fake News huh?..So Fake Mr.Flynn resigned..Wow does this mean all those u were blaming 4 Mr. Flynn's problems +was the actual FAKE news?" +02/15/2017,Comedians,@WhoopiGoldberg,@JuniorPoulton I was bitching then as welI &bitched only 1 group was being deported when it was supposed 2 be about folks here illegally +01/19/2017,Comedians,@WhoopiGoldberg,RT @FrenchGetem: My president is black today's the last day 😭retweet this😭 https://t.co/u83C7Z7wsa +01/11/2017,Comedians,@WhoopiGoldberg,U R the last President my mom & brother were alive 4 the last president we all shared so U will always represent the best of times 2me 😂❤🙋🏾 +01/11/2017,Comedians,@WhoopiGoldberg,"RT @WhiteHouse: “My fellow Americans, it has been the honor of my life to serve you.” —@POTUS #OamaFarewell" +01/11/2017,Comedians,@WhoopiGoldberg,And BOOM...THAT is the way a President drops the microphone and moves on down the road +01/11/2017,Comedians,@WhoopiGoldberg,WTF we are going frmPresident Obama's farewell address 2discussing possibility of prostitutes & Golden showers comprising the next prez +01/11/2017,Comedians,@WhoopiGoldberg,"RT @NARAL: ""It's about acknowledging that the effects of Jim Crow and Slavery didn't end in the 1960's."" #ObamaFarewell" +01/11/2017,Comedians,@WhoopiGoldberg,Not special treatment but equal treatment we as a nation have to try harder.. +01/11/2017,Comedians,@WhoopiGoldberg,This is what a REAL victory lap looks like and that only works if you have actually done something to to take a lap for. +01/06/2017,Comedians,@WhoopiGoldberg,"(9/9)I'm thrilled 2 b invited 2perform. I keep my fingers crossed, that these exchanges between us have given u some insight into me. +Whoop" +01/06/2017,Comedians,@WhoopiGoldberg,(8/9)more than perform because this is a quick trip that keeps my performance soul lubricated as being in just 1 place can feel constrained. +01/06/2017,Comedians,@WhoopiGoldberg,"(7/9)my life and where I come from & it might help u find a more gracious way to solicit a donation. +Unfortunately I won't be able to do" +01/06/2017,Comedians,@WhoopiGoldberg,"(6/9)b lost on me. Perhaps if u look me up & saw me as a real person instead of just some stereotype u disagree with, you'd know how I live" +01/06/2017,Comedians,@WhoopiGoldberg,(5/9)disabuse u of this idea that I don't know what it's like to work for a living or that somehow the work this school does would somehow +01/06/2017,Comedians,@WhoopiGoldberg,(4/9)employees & more taxes for the business. Understand I'll never make enough money 2 b entitled 2 NOT pay my taxes. I tell u all this 2 +01/06/2017,Comedians,@WhoopiGoldberg,"(3/9)2 folks who booked the show (agents), fees to 2 bus drivers & fuel. Also, I run a company & pay business managers, lawyers and 9" +01/06/2017,Comedians,@WhoopiGoldberg,"(2/9)a number was put out there by u, let's discuss. Because of my tax bracket, about 50% of that fee will go to state and local taxes, 10%" +01/06/2017,Comedians,@WhoopiGoldberg,"(1/9)Dear @WoodyWhite5, +Thank u 4 ur interesting & informative response. I don't normally discuss financial matters w/ strangers but since" +01/06/2017,Comedians,@WhoopiGoldberg,@ArthurRHill3 wishful thinking on many peoples part Arthur sorry 2 break hearts again😀 +01/06/2017,Comedians,@WhoopiGoldberg,"@zanne68 in fact it's the only time we HEARD him say it.. +Would u want someone 2 talk about u, your daughter or mother sister that way ever?" +01/05/2017,Comedians,@WhoopiGoldberg,(9/9)known as the man excusing the bad behavior of another grown man who should've known better. +01/05/2017,Comedians,@WhoopiGoldberg,"(8/9)if nobody buys tkts, I won't come, but u will lose all credibility as a 1st amendment guy - oh, wait, that's not u - u'll still be" +01/05/2017,Comedians,@WhoopiGoldberg,(7/9)thing then Im surprised u r OK w/ that & questioning me. It just makes me glad my mother raised me 2 know what is truly offensive. So +01/05/2017,Comedians,@WhoopiGoldberg,"(6/9) someone who thinks grabbing women by the genitalia and also saying out loud ""that if you are famous, woman will allow that kind of" +01/05/2017,Comedians,@WhoopiGoldberg,"(5/9) That's neither here nor there, but the fact that it would not occur to u that women & girls would be offended about the prospect of" +01/05/2017,Comedians,@WhoopiGoldberg,"(4/9) tho I don't expect u will because if u were interested in facts or truth, u wouldn't have had any basis for what u wrote about me." +01/05/2017,Comedians,@WhoopiGoldberg,(3/9)advantage to remain ignorant of the facts but for what it's worth I never said I would leave if Trump became President U can look it up +01/05/2017,Comedians,@WhoopiGoldberg,"(2/9) Well, if u r going 2 talk about me, get it right. I get that it's 2 ur" +01/05/2017,Comedians,@WhoopiGoldberg,(1/9) This appeared 2day & I want 2 set it str8 https://t.co/gF2VWGqry2 +12/31/2016,Comedians,@WhoopiGoldberg,"Debbie Reynolds once said to me surviving the bullshit requires a keen sense of self & of humor. condolences Todd Fisher &Billie Lourde +RIP" +12/27/2016,Comedians,@WhoopiGoldberg,"Carrie Fisher has passed, she was funnier&smarter than anyone had the right to be. Sail On Silver Girl. Condolences Debbie & Billie +R.I.P." +12/26/2016,Comedians,@WhoopiGoldberg,"R.I.P. George Michael... +Thankful for the music..." +12/12/2016,Comedians,@WhoopiGoldberg,Thankful for @rachaelray's generosity! She donated $10K to support @MainLineRescue. Follow her pet food brand @nutrish 4 more.#SantaPaws2016 +11/19/2016,Comedians,@WhoopiGoldberg,The fabulous Sharon Jones has passed tonight she & her band The DapKings made great music together & she sang her butt off. Condolences RIP +11/16/2016,Comedians,@WhoopiGoldberg,Show your support for #WorldCOPDDay by posting a Straw Selfie and tag @Philips #BreatheBoldly for #COPD #Sponsored https://t.co/JVD3sXhIKQ +11/13/2016,Comedians,@WhoopiGoldberg,"The magnificent Leon Russell amazing musician, true superstar ""Long ago and so far away,I fell in love with you..After the 2nd show"" R.I.P" +11/09/2016,Comedians,@WhoopiGoldberg,"RT @Crutnacker: 2016. We've lost Bowie, Prince, Gene Wilder, Muhammad Ali and the United States all in the same year. #ElectionNight" +11/08/2016,Comedians,@WhoopiGoldberg,"I do not think all those voting for Donald Trump are racist, but I do think ALL the racists will be voting." +11/01/2016,Comedians,@WhoopiGoldberg,Just tweeted a really wonderful article that was on @voxdotcom this email madness.. +11/01/2016,Comedians,@WhoopiGoldberg,https://t.co/yNp9tm7Viz via @voxdotcom +10/20/2016,Comedians,@WhoopiGoldberg,"RT @CNN: On Donald Trump's #DebateNight performance, @VanJones68 quotes @llcoolj: ""He lied about the lies that he lied about"" https://t.co/…" +10/20/2016,Comedians,@WhoopiGoldberg,"RT @kkalmes2: Jake Tapper: Trump saying he won't support election results is ""stunning... https://t.co/XIrtTVLl3Y via @YouTube" +10/20/2016,Comedians,@WhoopiGoldberg,OMG WHATS HAPPENING here??? +10/20/2016,Comedians,@WhoopiGoldberg,The wall too??? +10/20/2016,Comedians,@WhoopiGoldberg,"I want to know how many decisions he's been involved with in terms of abortion, what does he know about this?" +10/20/2016,Comedians,@WhoopiGoldberg,Bad hombres? +10/20/2016,Comedians,@WhoopiGoldberg,"RT @JoshElliott32: Hillary Clinton, on Roe v Wade: ""I will defend women's rights to make their own health decisions. We have come too far t…" +10/10/2016,Comedians,@WhoopiGoldberg,RT @BuzzFeed: https://t.co/HOCSP2KJeN +10/10/2016,Comedians,@WhoopiGoldberg,"New York suddenly lost Brooklyn D.A. Ken Thompson 2cancer, worked tirelessly for the rights of all people RIP& condolences 2 his family" +10/10/2016,Comedians,@WhoopiGoldberg,"RT @NorahODonnell: ""If Donald Trump was trying to broaden his appeal tonight, where in the speech did he do that?"" @bobschieffer @CBSNews" +10/10/2016,Comedians,@WhoopiGoldberg,at the end of the day we have to answer the question to whom are we willing to give the stewardship of America's credibility +10/10/2016,Comedians,@WhoopiGoldberg,Gee Donald do you think some of that hate is your fault? +10/10/2016,Comedians,@WhoopiGoldberg,RT @chrisrock: My mother is 71 years old. Black don't crack . https://t.co/l6jB7Ju8a8 +10/10/2016,Comedians,@WhoopiGoldberg,"RT @GeorgeTakei: NAFTA was signed by President Bush, you knucklehead." +10/10/2016,Comedians,@WhoopiGoldberg,WTF is he talking about my god.. Wait...that's Alec Baldwin!! +10/10/2016,Comedians,@WhoopiGoldberg,OMG!! It's like a really BAD high!! +10/10/2016,Comedians,@WhoopiGoldberg,When four former presidents say your not fit to be president.. +10/10/2016,Comedians,@WhoopiGoldberg,"When they go low, you go high!" +10/08/2016,Comedians,@WhoopiGoldberg,"@ananavarro out there telling truth tothe GOP, HER own party, not only is she saying ""he needs to drop out right now"" & then lays it out 4 u" +10/06/2016,Comedians,@WhoopiGoldberg,"Hey just want to say thank you all again for the support you've given the cast of Strut,@oxygen and me" +10/06/2016,Comedians,@WhoopiGoldberg,@HowardStern Howard thank you for making our cast of Strut feel like a jillion bucks and for having their back's it means the world 2 us all +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia I am your fan and yr student, thank you 4 being U🙋🏾" +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia Bird Set Free & California Dreaming r two that ur voice paints, ur artistry is thrilling, whatever u got from me you've given back 2me" +10/06/2016,Comedians,@WhoopiGoldberg,"@Sia First.. We adore you & yr talent, I can say ask so thank you for your kind words about our show,Strut & love that your watching it.🙋🏾" +10/06/2016,Comedians,@WhoopiGoldberg,RT @Sia: In love with the new reality tv show STRUT about our trans brothers and sisters trying to make it in the modeling biz! Love you gu… +10/02/2016,Comedians,@WhoopiGoldberg,@TyDurdz why not share it +10/02/2016,Comedians,@WhoopiGoldberg,"RT @mamatator1: @WhoopiGoldberg @nytimes The IRS went after Pete Rose, Wesley Snipes, Willie Nelson, and Redd Foxx. Why have they not arres…" +10/02/2016,Comedians,@WhoopiGoldberg,"Hell I forgot to thank everyone 4all the support you all have given Strut, I know how much help & love y'all have shown me & lot that I do🙋🏾" +10/02/2016,Comedians,@WhoopiGoldberg,"So this has been fun nice to connect to folk with a different opinion who don't call you names. +Good night y'all sleep well" +10/02/2016,Comedians,@WhoopiGoldberg,@Rayrobby11 in what country did he releases his taxes think @KellyannePolls his campaign manager would have mentioned it.oh well +10/02/2016,Comedians,@WhoopiGoldberg,"@Boch56 @nytimes hey boch it's been a long time!Family good, my best to everyone." +10/02/2016,Comedians,@WhoopiGoldberg,@jessie2u I work everyday Sharon I pay about close to 50 percent of my income and I don't get a return at the end is the year.. And you? +10/02/2016,Comedians,@WhoopiGoldberg,"@usmsmom it's not business call it what it is,the screwing of fellowAmericanswho don't get to blow off their cos of a bad year." +10/02/2016,Comedians,@WhoopiGoldberg,"@jessie2u you haven't annoyed me, +my mom worked hard made not a lot of money & SHE paid all her taxes sometime over time, why can't he" +10/02/2016,Comedians,@WhoopiGoldberg,@JT3cool @HillaryClinton Joe if people saw stuff in our past with today's eyes we WOULD b in jail😂 & thank u 4 honoring fallen soldiers btw +10/02/2016,Comedians,@WhoopiGoldberg,@jessie2u 4 everyone who clearly missed this & u keep tweeting the same question Answer: Clintons taxes were made public a long time ago +10/02/2016,Comedians,@WhoopiGoldberg,"@Richard555 tell that to the millions o people who struggle every day & still pay their tax, don't they'd like a loop hole too?" +10/02/2016,Comedians,@WhoopiGoldberg,Question Did u pay yr taxes hell yea Ans. #not wealthy enough for a loophole +10/02/2016,Comedians,@WhoopiGoldberg,@JT3cool @HillaryClinton not sure ur info is correct Joe but I'm sure someone will look into it as they have looked into everything else +10/02/2016,Comedians,@WhoopiGoldberg,@Chandra0816 girl I pay them every penny's they say I owe cos u know the IRS doesn't play😂 +10/02/2016,Comedians,@WhoopiGoldberg,"@jessie2u Clintons tax returns been public 4A while, yr 2nd question Yes I pay my tax all 50 percent of it, not wealthy enough for loop hole" +10/02/2016,Comedians,@WhoopiGoldberg,RT @WhoopiGoldberg: Trump Tax Records Obtained by The Times Reveal He Could Have Avoided Paying Taxes for Nearly Two Decades https://t.co/c… +10/02/2016,Comedians,@WhoopiGoldberg,@NicolleDWallace @nytimes hey Nichole a friend got the tinkle called me.. So I thought I'd share it.. Crazy right a trueWTF moment +10/02/2016,Comedians,@WhoopiGoldberg,Trump Tax Records Obtained by The Times Reveal He Could Have Avoided Paying Taxes for Nearly Two Decades https://t.co/cb0e4gCQaz +09/27/2016,Comedians,@WhoopiGoldberg,@strut episode 2 tonight on @oxygen 9pm/8central +09/27/2016,Comedians,@WhoopiGoldberg,"Proud of @HillaryClinton had a vision and a plan and did her thing, she was on point well done" +09/27/2016,Comedians,@WhoopiGoldberg,"I Think with all those emails everyone always talking about it's kind of amazing that no one has hacked her server," +09/27/2016,Comedians,@WhoopiGoldberg,"This is some crazy shit, wtf!! he's gone crazy. He just said i settled that lawsuit with no admission of guilt.." +09/21/2016,Comedians,@WhoopiGoldberg,Hey UK & Ireland! You can watch our new show #Strut on @hayu_uk every Wednesday! You can sign up at https://t.co/4Ogws6oAST. Enjoy! +09/20/2016,Comedians,@WhoopiGoldberg,(4/4) Was even possible doesn't make sense +09/20/2016,Comedians,@WhoopiGoldberg,(3/4) So the idea that anyone would think that I was making fun of the possible divorce without knowing if it +09/20/2016,Comedians,@WhoopiGoldberg,(2/4) The view it was unsubstantiated and therefore gossip - to me if u know anything about me you know I hate talking about +09/20/2016,Comedians,@WhoopiGoldberg,(1/4) I'm hearing that people thought I was making fun of the Angel/brad split 1 at 11 am when I was asked to do it on +09/14/2016,Comedians,@WhoopiGoldberg,You can watch the 1st episode of #Strut on my Facebook page before it premieres 9/20 8/9c on @oxygen https://t.co/sUKpPcXFKH +08/12/2016,Comedians,@WhoopiGoldberg,"one of my fav shoe spots is closing. Solestruck +had some of the shoes out there & u made my feet stand out so THANK U SOLESTRUCK" +08/09/2016,Comedians,@WhoopiGoldberg,"Here is a look at our new show #Strut premiering on @oxygen Tuesday, September 20th at 9/8c. Enjoy! https://t.co/pZFOdnskxB" +08/09/2016,Comedians,@WhoopiGoldberg,"We are announcing our new show #Strut today premiering Tuesday, Sept. 20 at 9/8c on @oxygen So proud! Hope you enjoy!" +08/03/2016,Comedians,@WhoopiGoldberg,"correction daily beast well done + +https://t.co/GyD4KcHARK" +08/03/2016,Comedians,@WhoopiGoldberg,Someone my age would do. For goodness sake the only botch fest is the one in talks minds.no fight here just clearing up an untruth +08/03/2016,Comedians,@WhoopiGoldberg,"Anything I think?? No daily mail I wouldn't, so if your going to continue to accuse me of doing this kind of thing could you make something" +08/03/2016,Comedians,@WhoopiGoldberg,Also daily mail knowing that people talk A lot do you honestly think I would talk or act in such a way that would give u ANY ability to know +08/03/2016,Comedians,@WhoopiGoldberg,"Rule the entire universe, I have enough to do in my life than to take mean girl pleasure at some one else WRONGLY perceived change." +08/03/2016,Comedians,@WhoopiGoldberg,I'm not responsible 4 firing or moving people around or negotiating my coworkers contracts. I LIKE having a gig and as much as I'd like to +08/03/2016,Comedians,@WhoopiGoldberg,"Contrary to what u might read in the I do NOT run ABC nor do I own or produce,not involved in hiring4 the View so don't send ur resumes" +07/28/2016,Comedians,@WhoopiGoldberg,So proud to support @amfAR & @kiehls for #LifeRide7. Join the conversation and help us find a cure! https://t.co/Se8KmPKFl9 +07/26/2016,Comedians,@WhoopiGoldberg,Ok @HilliaryClinton...History made...your turn now...Take care of business +07/12/2016,Comedians,@WhoopiGoldberg,"My friend Nicolle Wallace got some insight into Jeb Bush in her interview last night, Your STILL a Great interviewer & we miss u here.." +07/11/2016,Comedians,@WhoopiGoldberg,"Ok NOW it's official, I have re-upped for 1 year returning to @TheView 4 the 2016/2017 season. Will continue 2 annoy some, delight others" +06/23/2016,Comedians,@WhoopiGoldberg,"A little more on our new show + +https://t.co/fWFIYCjO5h" +06/23/2016,Comedians,@WhoopiGoldberg,"Our new show with @44blue for @oxygen. + +https://t.co/S7NLc0oFCn" +06/04/2016,Comedians,@WhoopiGoldberg,"RIP Muhammad Ali u elevated the art of the fight in the ring &out of it,a truly funny man,&remains the greatest my condolences to the family" +05/24/2016,Comedians,@WhoopiGoldberg,For all my young fans... https://t.co/kXx5PJgHIK +05/23/2016,Comedians,@WhoopiGoldberg,"RT @oxygen: Get ready for Strut, a new series about transgender models breaking down barriers! https://t.co/XbS90HOgAc https://t.co/xtm1PDX…" +05/23/2016,Comedians,@WhoopiGoldberg,@oxygen So proud of our new show! Coming Sept. #Strut https://t.co/8S5MJpFcEL +05/05/2016,Comedians,@WhoopiGoldberg,Today on The View https://t.co/PvL7DSaVER +07/01/2018,Comedians,@aparnapkin,RT @TheDweck: ICE is still so young it would be separated from its parents by ICE +07/01/2018,Comedians,@aparnapkin,RT @ashleyn1cole: Super cool that they are working together. Super not cool that the phrase “all three black senators” is a thing. https://… +07/01/2018,Comedians,@aparnapkin,"RT @ClintSmithIII: I’ve said it before but it can’t be said enough, so many of the people seeking refuge in the United States wouldn’t be d…" +07/01/2018,Comedians,@aparnapkin,"If I was on Queer Eye: + +Bobby: you made us enter through a vent +Jonathan: bangs shouldn’t go past your bellybutton,… https://t.co/qWBLQTpsRf" +07/01/2018,Comedians,@aparnapkin,"RT @MrFilmkritik: A new poll shows Beto O'Rourke is within 5 points of Ted Cruz in the Texas Senate race. + +A good sign, but don't let this…" +07/01/2018,Comedians,@aparnapkin,"if you respond to this with any version of NotAllBeckys, here is the sound of a door closing old-school AIM style" +07/01/2018,Comedians,@aparnapkin,hashtag let’s blame millennials for everything because that’s easier than acknowledging our deeply fractured societ… https://t.co/q12sYPYpP0 +07/01/2018,Comedians,@aparnapkin,"can white ladies please do a recall on your racist buzzkill line +https://t.co/duOnf2zAyG" +07/01/2018,Comedians,@aparnapkin,Every dog with face-framing ears has The Rachel. I will not be taking comments or questions. Press conference over. +07/01/2018,Comedians,@aparnapkin,"Ok, twitter, i’ll bite. here’s what YOU missed: *pan over to reveal real human friend, makes direct eye contact, feels actually seen*" +07/01/2018,Comedians,@aparnapkin,"RT @terrycrews: Why didn’t you say something? + +I did. + +Why didn’t you push him off? + +I did. + +Why didn’t you cuss him out? + +I did. + +Why did…" +07/01/2018,Comedians,@aparnapkin,RT @ericdadourian: WE HAVE TO START GIVING EACH OTHER HONEST AND REAL ETA’s OR NOTHING WILL CHANGE. +07/01/2018,Comedians,@aparnapkin,RT @SarahKSilverman: We live in fucking insanity https://t.co/oIlGpXjcUW +07/01/2018,Comedians,@aparnapkin,@CocoKur courtney!!! +07/01/2018,Comedians,@aparnapkin,RT @arvintgod: IF A BABY HANDS YOU A FAKE PHONE YOU BETTER ANSWER THAT SHIT +07/01/2018,Comedians,@aparnapkin,october bell houseeeee https://t.co/wE8PcIiIAm +07/01/2018,Comedians,@aparnapkin,oh my god https://t.co/Hg38FsSyFX +07/01/2018,Comedians,@aparnapkin,"RT @Todd_Spence: This just made my year. + +JURASSIC PARK, but everyone including the dinosaurs is wearing high heels. (source Imgur) https:…" +07/01/2018,Comedians,@aparnapkin,"RT @jonnysun: me, before the party: ok ok u got this. just try to fit in. talk to ppl. stay cool. dont turn into a big duck. ull be fine +me…" +06/30/2018,Comedians,@aparnapkin,@jonnysun jonny i love this so much thank you +06/30/2018,Comedians,@aparnapkin,@mattingebretson @corporate God is half shaved +06/30/2018,Comedians,@aparnapkin,takes one to know one https://t.co/QlNKOXyXWC +06/30/2018,Comedians,@aparnapkin,@mattingebretson @corporate Matt u finally found god +06/30/2018,Comedians,@aparnapkin,@morninggloria MS-13 came for my bilingual charter school core curriculum & then MSNBC came for my self-taught pundits +06/30/2018,Comedians,@aparnapkin,RT @RomancingNope: Maxine Waters has had to cancel events due to death threats. The Red Hen's owner has had to step down from a local leade… +06/30/2018,Comedians,@aparnapkin,Protests are a safe space for reading every sign that I pass out loud & I do not take it for granted +06/30/2018,Comedians,@aparnapkin,boyfriend took great pic. #familiesbelongtogether https://t.co/txXtxHyLhe +06/30/2018,Comedians,@aparnapkin,#familiesbelongtogether ❤️ great signs think alike (not sure who made this but it’s rul good!) https://t.co/6rNn9M5tab +06/30/2018,Comedians,@aparnapkin,Maybe everyone can clear up that their bigotry & calls for violence are sarcasm by finishing their thought with “pl… https://t.co/aW91drFB5R +06/30/2018,Comedians,@aparnapkin,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Comedians,@aparnapkin,"RT @Jordan_Morris: Sorry websites, I prefer to get my news the old fashioned way: With a bunch of other people crowded around the window of…" +06/29/2018,Comedians,@aparnapkin,Sometimes I will download so many podcasts it’s like “Are you even hearing yourself right now?” +06/29/2018,Comedians,@aparnapkin,RT @weismanjake: Today is the last day of shooting season 2 of @corporate. The cast and crew were incredible. You are going to fucking love… +06/29/2018,Comedians,@aparnapkin,@JoshRadnor the struggle is REAL +06/29/2018,Comedians,@aparnapkin,"""Just trolling"" means words don't matter. Words do matter. Journalism matters. Consequences matter. https://t.co/yPdtVgCbGF" +06/29/2018,Comedians,@aparnapkin,RT @SarahKSilverman: The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships start… +06/29/2018,Comedians,@aparnapkin,@words_is_money i felt lucky to see the incredible work being done! +06/29/2018,Comedians,@aparnapkin,@nolairfan so nice to meet you! +06/29/2018,Comedians,@aparnapkin,@JudahWorldChamp i believe it +06/28/2018,Comedians,@aparnapkin,Just texted my psychiatrist a “:(“ hello breakthrough +06/28/2018,Comedians,@aparnapkin,"@erikaabdelatif back in ny, sorry friend!" +06/28/2018,Comedians,@aparnapkin,Nothing destroys an otherwise functional relationship like trying to help someone parallel park +06/28/2018,Comedians,@aparnapkin,@IHeartApplejack @nytimesarts @nytimes thanks friend <3 +06/28/2018,Comedians,@aparnapkin,bloomington! hey! https://t.co/glbDZFLC0g +06/28/2018,Comedians,@aparnapkin,yeah she is! and i am as well! https://t.co/z3vydNRhZ4 +06/27/2018,Comedians,@aparnapkin,"My old gynecologist’s office just sent me an e-vite to a blow-dry party & it’s like “This isn’t your way back in, bb.”" +06/27/2018,Comedians,@aparnapkin,"RT @ACLU: UPDATE — +Just over 24 hours later, the court ordered: +✅ all children must be reunited within 30 days; +✅ children under five must…" +06/27/2018,Comedians,@aparnapkin,"PRIORITIES: +❌ Holding a rally for yourself +❌ Tweeting at late night hosts +❌ Listening to a podcast with said late n… https://t.co/B04K9pdRwP" +06/27/2018,Comedians,@aparnapkin,RT @GhostPanther: Very exciting. Time to create a New Democratic Party https://t.co/1ZiE0Y0C8o +06/27/2018,Comedians,@aparnapkin,"RT @KenTremendous: McConnell stole a SCOTUS seat, and now SCOTUS is gutting antitrust law, banning immigration based on religion, and uphol…" +06/27/2018,Comedians,@aparnapkin,"Grateful to have been a part of this & glad for what it’s helped to manifest! +https://t.co/gSjWSzNryA" +06/27/2018,Comedians,@aparnapkin,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/27/2018,Comedians,@aparnapkin,@VimanaRob yup i am also a tennis shoe +06/27/2018,Comedians,@aparnapkin,"@GregProops was just waiting for my assist, thank you, greg" +06/27/2018,Comedians,@aparnapkin,His name was Antwon Rose Jr. #BlackLivesMatter https://t.co/dRs7oDKBdD +06/27/2018,Comedians,@aparnapkin,RT @laurenduca: Fuck civility. https://t.co/oRn1R2mLLU +06/27/2018,Comedians,@aparnapkin,"World Cup, Super Bowl, wake me up when it’s time for the Intergalactic Gravy Boat" +06/26/2018,Comedians,@aparnapkin,RT @michaelianblack: Thank you to the good people at Breitbart for picking up my book announcement about masculinity. The responses have ma… +06/26/2018,Comedians,@aparnapkin,RT @washingtonpost: Amber Tamblyn’s novel about sexual assault will upset some people. She’s okay with that. https://t.co/erNIi14v9C +06/26/2018,Comedians,@aparnapkin,"the news is beyond terrible right now but dont forget, despite all your care & concern, to make a little room for y… https://t.co/7ChEkPn4bj" +06/26/2018,Comedians,@aparnapkin,RT @KarenKilgariff: This is THE SHIT https://t.co/ktaEt3ULZe +06/26/2018,Comedians,@aparnapkin,@weismanjake jake u r jazz +06/26/2018,Comedians,@aparnapkin,"“It’s not a Muslim ban, it’s just a ban against Muslim-majority countries” is gaslighting at its finest" +06/26/2018,Comedians,@aparnapkin,"RT @meganamram: New word: ""Civillain"" -- someone who is willing to throw the needs of innocent people and the country under the bus in an e…" +06/26/2018,Comedians,@aparnapkin,RT @chrislhayes: Hey New Yorkers: You've got an election day Tuesday! Lots of interesting races. Go vote! +06/26/2018,Comedians,@aparnapkin,"if you aren’t going to count trump’s bigotry in his decisionmaking, when exactly are you going to count it? recreational racists dont exist" +06/26/2018,Comedians,@aparnapkin,RT @CecileRichards: SCOTUS today: upholds the immoral Muslim ban and says it’s just fine for fake clinics paid for with tax $ to lie to wom… +06/26/2018,Comedians,@aparnapkin,RT @OhNoSheTwitnt: Pretty sure civility died the day Trump offered to pay legal fees for his supporters if they beat up protestors. +06/26/2018,Comedians,@aparnapkin,A supreme court is only as fair as how its members got there +06/26/2018,Comedians,@aparnapkin,"RT @voxdotcom: The 2014 election had the lowest turnout in 72 years, in part because a lot of Democrats didn’t think they mattered. Tuesday…" +06/26/2018,Comedians,@aparnapkin,@peteabides @Refinery29 @kingfirestorm ha! thanks pete! +06/26/2018,Comedians,@aparnapkin,"RT @joncoopertweets: Sonia Sotomayor condemns Trump’s “unrelenting attack on the Muslim religion and its follow­ers” + +Sotomayor read Trump’…" +06/26/2018,Comedians,@aparnapkin,"RT @ACLU: Despite what the Supreme Court just decided, Congress can pass legislation to rescind the president's Muslim ban. + +It's up to us…" +06/26/2018,Comedians,@aparnapkin,RT @brhodes: The breakdown in civility and our politics occurred when a sitting President couldn't even get a hearing on a Supreme Court no… +06/26/2018,Comedians,@aparnapkin,social media is such a great place to mute new people +06/26/2018,Comedians,@aparnapkin,@Gwionbach well he did say maybe gary johnson because of course everyone almost remembers gary johnson +06/26/2018,Comedians,@aparnapkin,"did David Lynch mean ""He could go down as one of the greatest PRECEDENTS in history because he has disrupted the th… https://t.co/OioSSXoZV2" +06/26/2018,Comedians,@aparnapkin,your right to #civility ended when you started taking away civil rights +06/26/2018,Comedians,@aparnapkin,RT @MikeDrucker: Fun that the people who spent 10 years complaining about PC culture are now deeply upset whenever someone dares be rude to… +06/26/2018,Comedians,@aparnapkin,"RT @laurenduca: At this point, Twitter is just Yelp for the presidency" +06/26/2018,Comedians,@aparnapkin,"RT @ohJuliatweets: Colin Jost is dating Scarlett Johansson and Pete Davidson is dating Ariana Grande and every female comedian is like, ""I…" +06/25/2018,Comedians,@aparnapkin,Via: @JenaFriedman. https://t.co/qnpSug7HbH +06/24/2018,Comedians,@aparnapkin,no shirt no conscience no service +06/24/2018,Comedians,@aparnapkin,You know who else came into this country illegally? The people who created the whole government so +06/24/2018,Comedians,@aparnapkin,"RT @NickMiroff: We finally know how many children were taken from their parents since May 5, when the govt says its separation system went…" +06/24/2018,Comedians,@aparnapkin,"RT @marcushjohnson: How you gonna be on Team Trump, team ""fuck you feelings,"" team ""let's hurt minorities,"" and then you get mad when other…" +06/24/2018,Comedians,@aparnapkin,RT @morninggloria: Weird that the president thinks he can reduce crime with border security measures he comes up with when he wasn’t even a… +06/24/2018,Comedians,@aparnapkin,happy pride. tolerance is free. acceptance is free. love is free. being yourself is priceless. https://t.co/OKIz67VgsX +06/24/2018,Comedians,@aparnapkin,"hey white women, can i speak to YOUR manager" +06/24/2018,Comedians,@aparnapkin,"RT @Shakestweetz: White People: Pull yourself up by the bootstraps! + +Black Girl: Okay. + +White People: *calls police* + +#PermitPatty" +06/23/2018,Comedians,@aparnapkin,"RT @morninggloria: Statistically, men in Jared Kushner's immediate family are much more likely to commit felonies than undocumented immigra…" +06/23/2018,Comedians,@aparnapkin,RT @mbieseck: BREAKING ⁦@AP:⁩ Immigrant children as young as 14 housed at a juvenile detention center in Virginia say they were beaten whil… +06/23/2018,Comedians,@aparnapkin,"Getting politely asked to leave a restaurant for human rights crimes still beats getting the cops called on you for existing, no?" +06/23/2018,Comedians,@aparnapkin,"@kimnewmoney this is a beautiful poem, kim" +06/23/2018,Comedians,@aparnapkin,"RT @guybranum: If you oppose gay marriage and immigration to this country, you don't get farm to table dining. You picked a side in the cul…" +06/23/2018,Comedians,@aparnapkin,does treating people respectfully not include separating families? https://t.co/vf3hxNSiiX +06/23/2018,Comedians,@aparnapkin,@dannystearns @elizaskinner thanks danny +06/23/2018,Comedians,@aparnapkin,I'm at a point in my life where I log out like I'm walking away from a burning car +06/22/2018,Comedians,@aparnapkin,@BebeNeuwirth Bebe!!! <333 +06/22/2018,Comedians,@aparnapkin,"Ever deflected a compliment so hard it falls to the ground, shatters & everyone just stares at it sadly" +06/22/2018,Comedians,@aparnapkin,@elizaskinner This was just so good i muttered it to myself +06/22/2018,Comedians,@aparnapkin,@RickyCarmona Ricky!!!!!!!!!! Cmon!!!!!!! +06/22/2018,Comedians,@aparnapkin,@elizaskinner Sloppy chests +06/22/2018,Comedians,@aparnapkin,RT @ksieff: It is shockingly difficult for immigration attorneys to locate children separated from their parents at the border. Today I spo… +06/22/2018,Comedians,@aparnapkin,Lance is the king!!!! https://t.co/ejafZ43938 +06/22/2018,Comedians,@aparnapkin,@reb_says_what @NetflixIsAJoke @ModCloth thanks for watching! +06/21/2018,Comedians,@aparnapkin,Who wore this statement worse? Melania Trump's jacket or Donald Trump's entire Presidency? https://t.co/rHJ3o4IkZ4 +06/21/2018,Comedians,@aparnapkin,RT @Susan_Hennessey: This is a good time to recall that we have never been given an even remotely satisfactory response to strong evidence… +06/21/2018,Comedians,@aparnapkin,"This is one of the most incredible, powerful, wrenching pieces of comedy and art I have ever seen. Watch, watch, wa… https://t.co/aJE7q6k6Ey" +06/21/2018,Comedians,@aparnapkin,"Thanks for getting in my head, @vulture & @e_alexjung! +https://t.co/tqZ0T4QfpV" +06/20/2018,Comedians,@aparnapkin,A refugee is a human being. Let’s start there. #WorldRefugeeDay +06/20/2018,Comedians,@aparnapkin,"RT @ACLU: We are systematically tearing apart thousands of families — to scare others from seeking refuge. + +Does THIS reflect the deeply he…" +06/20/2018,Comedians,@aparnapkin,o i see you are worried about “monsters” coming into the country and ruining everything because you were actually t… https://t.co/tqLflhGwrH +06/20/2018,Comedians,@aparnapkin,The Statue of Liberty should replace her torch with a gaslight until further notice +06/20/2018,Comedians,@aparnapkin,RT @laurenduca: Today Kirstjen Nielsen drafted executive action to end the policy of family separation that she said did not exist less tha… +06/20/2018,Comedians,@aparnapkin,@jayweingarten @KyleMizono remember when we performed in a bar +06/20/2018,Comedians,@aparnapkin,RT @AndyRichter: I hope that every Latinx US citizen is registering to vote today so that they can go to the polls & remember those who wer… +06/20/2018,Comedians,@aparnapkin,To borrow from “A Time to Kill”...now imagine if all the children in those detention centers were white +06/20/2018,Comedians,@aparnapkin,the sound of the last of your humanity leaving the body https://t.co/kVSJVqGYuw +06/20/2018,Comedians,@aparnapkin,RT @Geniusbastard: It positively chills you to the bone the degree to which white people will accept almost any atrocity if you convince th… +06/20/2018,Comedians,@aparnapkin,"RT @GhostPanther: This is what the jailing of kids, the racism, the xenophobia, homophobia, the assault rifles, attacks on education, all o…" +06/20/2018,Comedians,@aparnapkin,RT @ashleyn1cole: I still remember every single person (read: white man) who the day after the election told me to calm down it wasn't goin… +06/19/2018,Comedians,@aparnapkin,If you're still holding rallies for yourself when you're currently sitting on unchecked human rights abuses...U MIGHT BE A DICTATOR +06/19/2018,Comedians,@aparnapkin,"RT @laurenduca: Infest. To describe human beings. The president is an unabashed white supremacist, and journalists have no valid reason to…" +06/19/2018,Comedians,@aparnapkin,RT @ambermruffin: Celebrate Juneteenth by remembering they’re coming for you next! +06/18/2018,Comedians,@aparnapkin,"RT @davidhogg111: Human beings are not illegal +Human beings are not illegal +Human beings are not illegal +Human beings are not illegal…" +06/18/2018,Comedians,@aparnapkin,RT @HuffPost: The nearly eight-minute recording is of 10 Central American children who were separated from their parents last week by immig… +06/18/2018,Comedians,@aparnapkin,"RT @isi_kbreen: as more information about the child detention camps comes out, and more conservatives bend over backwards to defend them, i…" +06/18/2018,Comedians,@aparnapkin,"RT @JessicaValenti: It's funny, I haven't seen any outcry from ""pro-life"" organizations about the treatment of children at the border. Almo…" +06/18/2018,Comedians,@aparnapkin,"RT @LadyGodiva83: Hey Twitter family, if you’re in a position to - please donate to the #EurydiceDixon memorial fund. She was a brilliant c…" +06/18/2018,Comedians,@aparnapkin,RT @clementine_ford: 1. Some thoughts. It was not a lack of ‘situational awareness’ that ended the life of Eurydice Dixon - it was a person… +06/17/2018,Comedians,@aparnapkin,RT @itsmeheidi_h: Y’all this #Apeshit video has me losing my shit. This moment right here is the fulfillment of my art history degree. Beyo… +06/17/2018,Comedians,@aparnapkin,"in honor of father’s day, turn off google maps and ask your nearest dad for directions" +06/17/2018,Comedians,@aparnapkin,i’d rather be wrong about being concerned than be right about doing nothing +06/17/2018,Comedians,@aparnapkin,"RT @GeorgeTakei: If you think authoritarianism cannot happen here in America, I lived through a time when it already did: to 120,000 Japane…" +06/17/2018,Comedians,@aparnapkin,"RT @ZackBornstein: Remember when people didn’t vote bc they said there was no difference between Hillary and Trump, and now there are child…" +06/17/2018,Comedians,@aparnapkin,RT @kashanacauley: “Let’s spell immigration in a way that emphasizes how much we know about the issue.” https://t.co/JvIGfKp4wr +06/17/2018,Comedians,@aparnapkin,"Happy Father’s Day! Here are ways to take action against families being separated at the border: +https://t.co/VHScZ7Nx7n" +06/17/2018,Comedians,@aparnapkin,@aBerginthehand @washingtonpost @birbigs hahah +06/17/2018,Comedians,@aparnapkin,@mediocremujer ❤️ +06/17/2018,Comedians,@aparnapkin,@thelilynews i was a stage 5 clinger +06/17/2018,Comedians,@aparnapkin,@RebesaurusRex thanks for watching! +06/15/2018,Comedians,@aparnapkin,no one’s hands are tied when it comes to basic human rights. laws can change. children are not political capital an… https://t.co/RjbQWQS1Uj +06/15/2018,Comedians,@aparnapkin,@SamJayComic yay!!!! +06/14/2018,Comedians,@aparnapkin,RT @joshgondelman: Okay I finally get why they say New York is the greatest city in the world. https://t.co/iVD2Lp4bRn +06/14/2018,Comedians,@aparnapkin,"RT @leedsgarcia: I'm on a plane, so might as well do this. Feeling helpless about the family separations at the border? Guess what, there a…" +06/14/2018,Comedians,@aparnapkin,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Comedians,@aparnapkin,@jonnysun jonny!!! you’re always the best +06/14/2018,Comedians,@aparnapkin,@nkuchibhotla @washingtonpost hi! +06/14/2018,Comedians,@aparnapkin,@kramdas kavita ❤️❤️❤️ +06/14/2018,Comedians,@aparnapkin,@aspiegelnpr thanks alix :) +06/14/2018,Comedians,@aparnapkin,@motherseer @washingtonpost @wkamaubell !!! +06/14/2018,Comedians,@aparnapkin,@eleanortiernan I catch it breathlessly +06/14/2018,Comedians,@aparnapkin,@maevehiggins Marve!!! +06/13/2018,Comedians,@aparnapkin,Go lizz! And lady parts justice! https://t.co/DBp5HTFaH4 +06/13/2018,Comedians,@aparnapkin,@KennethWReid thanks ken ❤️❤️❤️ +06/13/2018,Comedians,@aparnapkin,"@_chrisgarcia @HollywoodImprov @washingtonpost Thanks, chris 🙃🙃🙃" +06/13/2018,Comedians,@aparnapkin,"Thank you, @washingtonpost, for this deep cut origin story profile! (I was bitten by my radioactive parents.) +https://t.co/xd7N4vxIW0" +06/13/2018,Comedians,@aparnapkin,Best new drama of 2018 https://t.co/Kjb99psF9C +06/13/2018,Comedians,@aparnapkin,"Probably a bad sign that I now watch ""The Handmaid's Tale"" to unwind from the news" +06/13/2018,Comedians,@aparnapkin,@K0h4ku @ROBOTCAITLIN @DailyZeitgeist @ROBOTCAITLIN is the cat's PJs! And the dog's nightie! +06/13/2018,Comedians,@aparnapkin,"RT @IndieWire: David Simon on Anthony Bourdain: ""To lose him now, amid so many fear-mongering, xenophobic tantrums by those engaged in our…" +06/13/2018,Comedians,@aparnapkin,"RT @SopanDeb: Uh, David Simon (Yes, from ""The Wire"") is banned from Twitter currently. It is very bizarre who is allowed to remain on this…" +06/12/2018,Comedians,@aparnapkin,Ocean’s 8 makes me feel seen as a woman but also as someone who has tried to organize anything with more than 3 people +06/12/2018,Comedians,@aparnapkin,"Keep it together, scones" +06/12/2018,Comedians,@aparnapkin,Shame recognize shame https://t.co/mbwtn6FqNl +06/12/2018,Comedians,@aparnapkin,dictator rule: be so bad they have no choice but to rave over things like you sitting quietly +06/12/2018,Comedians,@aparnapkin,dis a good ting ! https://t.co/WLeDo1g6rc +06/12/2018,Comedians,@aparnapkin,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/12/2018,Comedians,@aparnapkin,RT @nathanfielder: Emmy voting is now open. Good luck to all the shows! https://t.co/1UAG0qLOA9 +06/12/2018,Comedians,@aparnapkin,"@sejhammer thank you, friend 🤡🤡🤡™️" +06/12/2018,Comedians,@aparnapkin,@PictureThisShow @mexopolis I love all of this!!! ❤️🤡❤️ +06/10/2018,Comedians,@aparnapkin,@mikeymeitbual thank you! +06/10/2018,Comedians,@aparnapkin,@mikeymeitbual it was me +06/10/2018,Comedians,@aparnapkin,“‘...We need preventive public-health initiatives on managing depression and anxiety in the pre-crisis stage...’ We… https://t.co/Rot86mmsz4 +06/10/2018,Comedians,@aparnapkin,"HAPPY PRIDE, EVERYONE!!! Take this dog’s lead and express your truest self!!! 🌈🌈🌈🌈🌈🌈🌈 https://t.co/OLCfeIAzmJ" +06/10/2018,Comedians,@aparnapkin,@mexopolis @PictureThisShow you were so wonderful! what an honor 🙃 +06/08/2018,Comedians,@aparnapkin,"RT @toastasaurus: I met Anthony Bourdain only once, while waiting in line at a food festival. Instead of hello he said ""hey kid, you hungry…" +06/08/2018,Comedians,@aparnapkin,❤️ https://t.co/6DJGDzSuRp +06/08/2018,Comedians,@aparnapkin,RT @MikeDrucker: Depression isn’t a form of sadness. It’s not something that goes away if you just think about how good you have it or how… +06/08/2018,Comedians,@aparnapkin,"RT @Caissie: So many messages telling those who are struggling to reach out. Fair enough, but part of what depression does is mutes your ab…" +06/08/2018,Comedians,@aparnapkin,boy are you an indie movie because you are projecting a boldly unresolved narrative onto me +06/07/2018,Comedians,@aparnapkin,@nathanwpyle I knew this was real!!!! +06/07/2018,Comedians,@aparnapkin,@bassamshawl @jbrogie @brckhmptn @kevinabstract @merlynwood @JOBAISREAL Yes +06/07/2018,Comedians,@aparnapkin,I always feel sorry for the “dogs in blankets who look like tacos” who don’t crack the Buzzfeed list +06/07/2018,Comedians,@aparnapkin,RT @STLFoodbank: Just a few more hours (until 10p) to get in on the #HungerIsNoJoke pre-sale. Get your tickets now before they go on-sale t… +06/07/2018,Comedians,@aparnapkin,@jbrogie @brckhmptn @kevinabstract @merlynwood @JOBAISREAL I dont follow!!! +06/07/2018,Comedians,@aparnapkin,"@biloon @AndyKindler what is mojos, she asked earnestly" +06/07/2018,Comedians,@aparnapkin,@sejhammer 😍😍😍 +06/07/2018,Comedians,@aparnapkin,@mgiant the algorithm is gonna getchoo +06/07/2018,Comedians,@aparnapkin,@AndyKindler you don't miss a beat! +06/07/2018,Comedians,@aparnapkin,"since reality got canceled awhile ago, let's at least keep the quality programming https://t.co/OsdtTrVHDG" +06/07/2018,Comedians,@aparnapkin,"it’s not delivery, it’s depression" +06/07/2018,Comedians,@aparnapkin,"RT @davidhogg111: .@BetsyDeVosED as you are secretary of education I respect your decision. However, as a citizen and survivor of a school…" +06/07/2018,Comedians,@aparnapkin,@seawardt September i believe but emily is first!!! +06/07/2018,Comedians,@aparnapkin,@KyleFollett kyle we are soul horses +06/07/2018,Comedians,@aparnapkin,@Kito_Ashbey @vulture awwww ❤️❤️❤️💎⚡️🤡🌈 +06/07/2018,Comedians,@aparnapkin,@aidanisagirl STL !!!!! +06/07/2018,Comedians,@aparnapkin,@FrankConniff Frank you are frankly my favorite +06/07/2018,Comedians,@aparnapkin,RT @dylanmarron: Seeing brands go rainbow for pride is cool but it has the same bittersweet feeling of that popular person who ignored you… +06/21/2018,Comedians,@LisaLampanelli,"I love this interview! Thanks, @ThriveLouD https://t.co/sGMlcUGXFH" +06/20/2018,Comedians,@LisaLampanelli,"Within 10 minutes, one fan on the street said “you look greatl and the other one said “why’d you lose weight? I thi… https://t.co/iavrh5Y6EH" +06/20/2018,Comedians,@LisaLampanelli,"You know you wanna see me in CT! My storytelling show is happening @FTCPresents! Less than 400 tickets to spare, so… https://t.co/ueBUlwSXYS" +06/19/2018,Comedians,@LisaLampanelli,"Listen in, Thursday, folks! This guy is a great interviewer, and I'm, well . . . you know. https://t.co/8ELovdpNMh" +06/13/2018,Comedians,@LisaLampanelli,Just when you thought I gave it to that guy in SJ! Listen to this for an epic heckler story!!! https://t.co/zCMmoUzlp3 +05/11/2018,Comedians,@LisaLampanelli,There's only a few more hours until #Taskmaster on @ComedyCentral airs tonight at 11pm/10pm CT! https://t.co/Lrh3EBOiFG +05/11/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tonight at 11pm/10pm CT to see me on #Taskmaster! https://t.co/pFMrKcu4Dj +05/04/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tonight at 11/10c to see me on two brand-new episodes of #Taskmaster! https://t.co/WFB9ijDKOZ +05/01/2018,Comedians,@LisaLampanelli,"So proud of @amyschumer - TONY NOMINEE! You werk, mama! #GirlKnowsNoBounds" +04/29/2018,Comedians,@LisaLampanelli,Watch me on the #trumproast tonight on @ComedyCentral at 11/10c! https://t.co/qAWNcNSl7q +04/27/2018,Comedians,@LisaLampanelli,And THIS YouTube video by @2buffoons is why I can't be spiritual! https://t.co/JhOpWHPkJC https://t.co/WGiBB3rYP6 +04/27/2018,Comedians,@LisaLampanelli,Watch me tonight on @ComedyCentral at 11pm/10pm CT on its brand-new game show #Taskmaster! https://t.co/b6PJActozF +04/26/2018,Comedians,@LisaLampanelli,Tune in to @ComedyCentral tomorrow at 11pm/10pm CT to see me on its new game show #Taskmaster! https://t.co/39BDGl9DJO +04/12/2018,Comedians,@LisaLampanelli,"Looking forward to playing @WellmontTheater in Montclair, NJ on Sat, 4/14! https://t.co/r2ABdFRhbt" +03/24/2018,Comedians,@LisaLampanelli,Detroit! Come see me @MotorCityCasino on 4/19! Get your tickets now! https://t.co/at84N74diK +03/08/2018,Comedians,@LisaLampanelli,New Jersey! Come see me @WellmontTheater in Montclair on 4/14! https://t.co/dWLvQcVAXv +03/05/2018,Comedians,@LisaLampanelli,Atlanta! I’m coming back to see you on March 24. Tickets to my show @CenterStageATL are available now! https://t.co/lOCDxoDzmp +03/03/2018,Comedians,@LisaLampanelli,New fan of @ashleyprimis - author of amazing article on Gen Xers in 2/18 Philadelphia magazine. Great insights! Mad… https://t.co/G5F0Q9JN8D +02/23/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my shows on 5/18 and 5/19 at the Seneca Niagara Casino in Niagara Falls, NY! https://t.co/Eq3hMjve19" +02/23/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 4/13 show @20MonroeLive in Grand Rapids, MI! https://t.co/MKYJr0gae7" +02/21/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my Grand Rapids, MI show on 4/13! https://t.co/j7oKLTJ0bG" +02/02/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 5/5 show @rivercitycasino in St. Louis, MO! https://t.co/r0pMo3Htjc" +01/31/2018,Comedians,@LisaLampanelli,Pre-sale tickets are now available for my 5/5 show @rivercitycasino in St. Louis! https://t.co/8zQsxDmf9a +01/26/2018,Comedians,@LisaLampanelli,"Tickets are now available for my 3/23 show @AmeristarKC in Kansas City, MO! https://t.co/6ckoNkvvT6" +01/23/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my 3/23 show @AmeristarKC in Kansas City, MO! https://t.co/KKpPwAdavk" +01/14/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/1 show @ParamountHV in Peekskill, NY! https://t.co/xcPVFkQfSu" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/9 show @groveofanaheim in Anaheim, CA! https://t.co/wDY0P9YgpN" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 6/10 show @SJTheaters in San Jose, CA! https://t.co/Bg6JrZ2cy4" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 4/20 show @GeneseeTheatre in Waukegan, IL! https://t.co/itDPk6d7oX" +01/12/2018,Comedians,@LisaLampanelli,"Tickets are now on sale for my 5/12 show @theSBEC in Bethlehem, PA! https://t.co/pkCaybkGXI" +01/11/2018,Comedians,@LisaLampanelli,"Pre-sale tickets are now available for my show on 6/1 @ParamountHV in Peekskill, NY! https://t.co/KBhc3ACLDT" +01/10/2018,Comedians,@LisaLampanelli,"Pre-sales happening now for 5/12 Bethlehem, PA, 6/9 Anaheim, CA & 6/10 San Jose, CA! https://t.co/Eq3hMjve19" +12/22/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on April 14th @WellmontTheater in Montclair, NJ! https://t.co/dWLvQcVAXv" +12/22/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on March 24th @CenterStageAtl in Atlanta, GA! https://t.co/lOCDxoDzmp" +12/15/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on February 2nd @TheatreWestbury in Westbury, NY! https://t.co/wDDeF1UqGu" +12/08/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show on February 3rd @hardrockliveorl in Orlando, FL! https://t.co/PBCVGk6wlu" +12/05/2017,Comedians,@LisaLampanelli,"RT @centerstage_md: Comedy's Lovable Queen of Mean, @LisaLampanelli , is coming to Baltimore Center Stage for one night only! Don't miss…" +12/01/2017,Comedians,@LisaLampanelli,Tix are now on sale for my stand-up show at the Ohio Theatre @playhousesquare in Cleveland on 6/23! https://t.co/HDumtpLLCc +12/01/2017,Comedians,@LisaLampanelli,"Tix are now on sale for my stand-up show @FiveFlagsCenter in Dubuque, IA, on 3/31! https://t.co/ci3aUixee0" +11/28/2017,Comedians,@LisaLampanelli,Save more animal lives this #GivingTuesday by making a donation to my @AnimalLeague pals! Donate TODAY & @Zappos Fo… https://t.co/f7MP6RduR3 +11/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Stuffed will have its final performance tonight at 7pm! Get your tickets at https://t.co/3hYVkLHnFw for your last chance t… +11/15/2017,Comedians,@LisaLampanelli,"Barbara, Could love you, @nypost or this piece more! Thank you so so much! https://t.co/Nvy7JAYnTq" +11/10/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: .@LisaLampanelli takes @LaurenScala4NY from @newyorklivetv on a tour of her favorite NYC eateries, @PressedJuicery & @BBQN…" +11/10/2017,Comedians,@LisaLampanelli,Tune-in on @nbc’s @newyorklivetv for my interview about @StuffedPlay filmed at @PressedJuicery and @BBQNYC! https://t.co/4B68fponmW +11/08/2017,Comedians,@LisaLampanelli,RT @FeralAudio: talking body image & food stuff on a new GET STUFFED w/ @LisaLampanelli & guest @OHEden ! https://t.co/d82vBZHSKz +11/06/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Join @LisaLampanelli tomorrow at 2pm EST on @usweekly's page for a LIVE Q&A with @XtinaGaribaldi & @Heytravhey! https://t.… +11/04/2017,Comedians,@LisaLampanelli,RT @TimeOutNewYork: Comedian @LisaLampanelli is taking over our Instagram Story! Watch to see what happens backstage at @StuffedPlay: https… +11/03/2017,Comedians,@LisaLampanelli,Congratulations to @GreerBarnes1 on a great season of Red Oaks on Amazon. So proud of what an amazing actor you are!!! +11/02/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in on @NPR's @hereandnow to @LisaLampanelli's interview about #StuffedPlay! Click LISTEN LIVE on the left! https://t.… +11/01/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: @realdonjamieson @JaneGreen @clayaiken @Savage937 And some more pictures with @LisaLampanelli, @OHEden, @SayconSengbloh, @…" +11/01/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: In honor of last night's opening, here are some pictures from our @StuffedPlay celebration! https://t.co/QE3fTl0FQ3" +10/31/2017,Comedians,@LisaLampanelli,Love my new friends on the @stufdtruck! Come stop by get some bites and $30 tix tonight ONLY to @StuffedPlay! https://t.co/Lxn9caZo68 +10/31/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@LisaLampanelli coming at you LIVE from the @stufdtruck at the Westside Theatre! Come stop by for treats and $30 tix TONI… +10/31/2017,Comedians,@LisaLampanelli,Watch me on @Cheddar at 3:40pm ET #CheddarLive https://t.co/hSshqQo9jd +10/31/2017,Comedians,@LisaLampanelli,RT @andreaboehlke: Comedian @LisaLampanelli from @StuffedPlay stops by #PeopleNow to talk the importance of comedy in darker times 👉🏼 https… +10/31/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in LIVE on https://t.co/O7S4P89YAI at 1PM EST for @LisaLampanelli’s @Backstage interview on @StuffedPlay! https://t.c… +10/31/2017,Comedians,@LisaLampanelli,About to go on with @JrzyJoePiscopo on NY 970AM! Listen now!!! +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: A sneak peek at @LisaLampanelli's Roast Beef of the Week! View the full video on @StuffedPlay's Facebook. https://t.co/Z0T… +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: 1 day only! Get $30 tix to @StuffedPlay TOMORROW by using code STHW30 for performances 10/31-11/30. We'll have treats fro… +10/30/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tune in TODAY at 5:00pm on @TheCumiaShow for a Facebook LIVE interview with @LisaLampanelli on @ArtieandAnthony! https://t… +10/27/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: #FlashbackFriday to our very first performance at the Westside Theatre! https://t.co/80s5TUqviW +10/26/2017,Comedians,@LisaLampanelli,"Watch me on @People giving the full scoop about my journey with @StuffedPlay! +Check it out: https://t.co/p0voOkGtwo https://t.co/EdKgUpiaND" +10/24/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: TUNE IN TODAY at 5:30pm for a LIVE interview with @LisaLampanelli on @BroadwayWorld! Send questions with #AskLisaBWW—https… +10/20/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: Ready for her glamour shot and some doughnuts, it’s @OHEden! https://t.co/uYfF09YkMn" +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@LaurenABrickman is ready to take a bite! 🍩 https://t.co/Ef9FaY61RQ +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Here to get Stuffed and celebrate! 🍩 https://t.co/weqmstPXTF +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: We are kicking off the party with doughnuts at @BBQNYC!! 🍩 https://t.co/yBslnzcYHX +10/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: A bow to kick off our @StuffedPlay celebration!!! 🍩 https://t.co/3VnZZKQK3Y +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli is ready for a party! Chow down all night with #StuffedPlay! https://t.co/RL3Pq77oNJ +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Apprentice reunion! @clayaiken and @lisalampanelli and ready to chow down with @stuffedplay. 🍩 https://t.co/z6rj6GNHlS +10/19/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tonight is our celebration! Dig in on our Twitter & Instagram for a treat behind-the-scenes at the Westside Theatre & @BBQ… +10/18/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Tomorrow is our @StuffedPlay celebration so we gave @LisaLampanelli some healthy snacks to get her energy up. https://t.co… +10/18/2017,Comedians,@LisaLampanelli,Tomorrow is our @StuffedPlay celebration so the show gave me some healthy snacks for energy. Check out how THAT tur… https://t.co/5S2TlXJg2O +10/17/2017,Comedians,@LisaLampanelli,Love the new recipes @RoccoDiSpirito! Congrats on the new cookbook #RoccosHealthyAndDelicious! Get your copy here:… https://t.co/ItFb6Cj1dg +10/17/2017,Comedians,@LisaLampanelli,In honor of my mom's fave game show: Would you like to buy a vowel? https://t.co/W9dnAXXXP1 +10/16/2017,Comedians,@LisaLampanelli,"#MotivationMonday — drop the healthy snack and treat yourself. Have a donut or cupcake and tell 'em ""Lisa Made Me D… https://t.co/RyltPADMQE" +10/16/2017,Comedians,@LisaLampanelli,Thanks for coming @clayaiken 💚 https://t.co/JlXpcDn54T +10/10/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Today is #NationalCakeDecoratingDay. Special shout out to anyone who can make a cake look like a doughnut. https://t.co/TO… +10/10/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli takes over Instagram today! DOUGH-NOT miss out on a behind-the-scenes sneak peek. 🍩 https://t.co/56A1sVDf… +10/09/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Our assistant director is getting ready to dig in! Opening night is only 10 days away! https://t.co/NRb0UWvLv7 +10/08/2017,Comedians,@LisaLampanelli,My castmates @MarshaSBlake and @NikkiBlonsky agree – doughnuts are greater than salads. 🍩 🥗 https://t.co/GzIGKHRCNT +10/06/2017,Comedians,@LisaLampanelli,"It’s Friday, so you deserve a treat! Break out the cookies & come see @StuffedPlay. https://t.co/fNhkiELikj" +10/05/2017,Comedians,@LisaLampanelli,Listen to me chat with my pal @PaulMecurio about @StuffedPlay RIGHT NOW!! https://t.co/Tr108HIpPu +10/05/2017,Comedians,@LisaLampanelli,Thanks to @playbill I feel official!!! https://t.co/lvf8IXuszB +10/05/2017,Comedians,@LisaLampanelli,Proudest moment since I resisted an entire chocolate cake! Starting @stuffedplay previews TONITE! https://t.co/B1QdCGgEhK #dreamsdocometrue +10/04/2017,Comedians,@LisaLampanelli,Stay up late tonight and catch me on @CelebrityPageTV for an interview with @ArthurKade! Tune in at 1AM EST and 10P… https://t.co/CzPvhlehYC +10/04/2017,Comedians,@LisaLampanelli,Tune in right now to @BUILDseriesNYC for the scoop on @StuffedPlay! https://t.co/OWROerDVzp https://t.co/NISzTLJOHF +10/04/2017,Comedians,@LisaLampanelli,Everybody better tune in to @fox5ny #GDNY at 9:45am! I’m dishing out everything on my new play @StuffedPlay. https://t.co/FT0iOZYNEp +10/03/2017,Comedians,@LisaLampanelli,Returning to #GDNY tomorrow morning to chat about my play @StuffedPlay with @rosannascotto and @gregkellyfox5. Can'… https://t.co/Y87go4SYES +10/03/2017,Comedians,@LisaLampanelli,It’s @NikkiBlonsky from…my play @StuffedPlay! Took her a few tries to get it right. https://t.co/7BZqfNudZI +10/02/2017,Comedians,@LisaLampanelli,Take a bite of my new play @StuffedPlay during previews for only $30 through @TodayTix! https://t.co/3E9EL8dUFd +10/02/2017,Comedians,@LisaLampanelli,"A lil' bite of LL on @NewYorkLiveTV! I took @LaurenScala4NY around the city to my favorite places, including… https://t.co/rbMivd2qr2" +09/29/2017,Comedians,@LisaLampanelli,See what's pissing me off this week in my #RoastBeefoftheWeek @StuffedPlay. Pass it on! https://t.co/4csWA01s0h +09/29/2017,Comedians,@LisaLampanelli,"@Tom_Bergeron @DancingABC Such an honor to hear from you, @TomBergeron - u are my favorite host since Wink Martinda… https://t.co/m0SrCSlLym" +09/28/2017,Comedians,@LisaLampanelli,"This week's question: When you've tried to lose weight or lost weight, were your friends:" +09/28/2017,Comedians,@LisaLampanelli,"Listen now, folks!!! https://t.co/595sXPPeyP" +09/28/2017,Comedians,@LisaLampanelli,One long poem or one big grocery list for my show @StuffedPlay? #NationalPoetryDay! https://t.co/Qk1n2PaVTh +09/28/2017,Comedians,@LisaLampanelli,#ThrowbackThursday to our 1st reading of @StuffedPlay on Sept 7th! Only a week away from the 1st performance! Shoul… https://t.co/dUdHsPThF3 +09/27/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@lisalampanelli found herself on the street! See if you can spot our delicious new kiosks around NYC! https://t.co/KB9cGp… +09/27/2017,Comedians,@LisaLampanelli,Here it is! My new @DancingABC recap on @Vulture. What I learned from this episode? There’s a lot of dry-humping in… https://t.co/z3EMNMB4qp +09/26/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: A lifelong yo-yo dieter, a bulimic, a confident overweight gal, and a permanent size zero who can’t gain weight walk into…" +09/26/2017,Comedians,@LisaLampanelli,Check me out tonite at 8P EST with @KennedyNation on @FoxBusiness in celebration of #FreeSpeechWeek - and I don't even say CUNT!!! +09/26/2017,Comedians,@LisaLampanelli,Keep the stacks piled high — it’s National Pancake Day! Celebrate with some tickets to @StuffedPlay https://t.co/RPYZKCME0v +09/26/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show @The_Wilbur in Boston, MA on March 10th! Get your tix here! https://t.co/ieQyzzGYbw" +09/25/2017,Comedians,@LisaLampanelli,Guess who's got a new gig?!?! Hint: it's me!! Check it out! https://t.co/BLs5YGBcAq +09/25/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show @FoxwoodsCT in Mashantucket, CT on February 23rd! Get your tix here! https://t.co/TJhpHnOEOT" +09/25/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@mikeymusto from @NewNowNext sat with @LisaLampanelli to talk about a feast of titillating topics including @StuffedPlay!… +09/25/2017,Comedians,@LisaLampanelli,Nothing like a talk with @mikeymusto from @NewNowNext to remind me how much I love lettin' it all hang out! https://t.co/j4cuIBB3Vf +09/25/2017,Comedians,@LisaLampanelli,Listen to me live NOW on @SIRIUSXM 102 with my bud @SandraBernhard to talk @StuffedPlay +09/24/2017,Comedians,@LisaLampanelli,"RT @StuffedPlay: #ICYMI, @theatermania is excited to have a second helping of @StuffedPlay this Fall! +https://t.co/WQwrXvt2hk" +09/23/2017,Comedians,@LisaLampanelli,Sat down with my pal @ComedyDaddy for @KPCurtainCall to chat about @StuffedPlay ! Loved every second! Listen here: https://t.co/sf04fMCEzm +09/22/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: It’s the first day of Fall! You know what that means…give us all the pumpkin spiced treats. https://t.co/RgeYSCH7GO +09/22/2017,Comedians,@LisaLampanelli,"It’s the first day of fall, so you know what THAT means. Three words: PUMPKIN SPICED EVERYTHING! https://t.co/cK4f6LXn9C" +09/22/2017,Comedians,@LisaLampanelli,"Miss my podcast this week? Well, LISTEN NOW! It's about acceptance - and I DON'T accept you NOT listening! Go to: https://t.co/5Zx1qbRvzI" +09/21/2017,Comedians,@LisaLampanelli,RT @broadwaycom: We can't wait to chat with @LisaLampanelli about @StuffedPlay and more! https://t.co/dksGZiwzno https://t.co/LWJE613WCG +09/21/2017,Comedians,@LisaLampanelli,Getting ready to go LIVE on @broadwaycom at 5!!! Will take ur questions & dish about @StuffedPlay & me!!! https://t.co/B1QdCGyfGk +09/21/2017,Comedians,@LisaLampanelli,"Wanna big bite of LL in @StuffedPlay? Well, hurry! Just two weeks left until performances begin! https://t.co/VJ0SPKXA8z" +09/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: .@NikkiBlonsky & @LisaLampanelli are two peas in a pod at @StuffedPlay rehearsals. https://t.co/NRDR5sLYGW +09/20/2017,Comedians,@LisaLampanelli,Absolutely thrilled to join @GeffenPlayhouse for a good chat and a few laughs :) Listen on @PodcastOne https://t.co/eHodEvyhjn +09/19/2017,Comedians,@LisaLampanelli,"If you're not an @AudienceRewards member, join! My @StuffedPlay page has lots of treats for you at… https://t.co/tpIjyFRCFa" +09/19/2017,Comedians,@LisaLampanelli,The great gals on the great @ATWWDpodcast hosted me this week to talk @StuffedPlay ! Listen here for lots of laughs! https://t.co/nbC31PWAGG +09/18/2017,Comedians,@LisaLampanelli,"#MondayMotivation If you can get thru a Monday, you deserve a treat. https://t.co/BTW27E2qke" +09/17/2017,Comedians,@LisaLampanelli,"Ever since @StuffedPlay, my favorite day of the week is . . . Sundae! LIKE for a banana split or HEART for a milksh… https://t.co/A10BzdJxwJ" +09/15/2017,Comedians,@LisaLampanelli,All you Bway actresses need to back off! I'm the new triple threat in town! Check out my audition reel on @Playbill. https://t.co/C0zVK3GNxi +09/14/2017,Comedians,@LisaLampanelli,Don't forget to meet me at https://t.co/uiOw99wvV0 at 10 PM EST/7 PM PST for my live chat. Have your @StuffedPlay & podcast questions ready! +09/14/2017,Comedians,@LisaLampanelli,Break out the Boston Cream! It’s National Cream-Filled Donut Day! #ProofThatGodExists https://t.co/OAlfq6JInx +09/13/2017,Comedians,@LisaLampanelli,"Wanna talk? Go to https://t.co/uiOw99wvV0 Thurs at 10PM EST/7PM PST to talk @ my podcast, @StuffedPlay or to get some help from urs truly!" +09/13/2017,Comedians,@LisaLampanelli,"The 1st episode of my podcast, Get Stuffed, is here to help you get your life on track (or not). Get it on iTunes:https://t.co/BXRZi1X7cT" +09/12/2017,Comedians,@LisaLampanelli,My masterpiece @StuffedPlay is in the @broadwaycom Fall Preview! Wanna bite? Go to https://t.co/hBfqJfadk0. https://t.co/w8HNN2k0tl +09/12/2017,Comedians,@LisaLampanelli,Do you think therapy is: +09/12/2017,Comedians,@LisaLampanelli,"Only 1 more day until my podcast, ""Get Stuffed with Lisa Lampanelli"" is up & running. Go to https://t.co/5Zx1qbRvzI right now and subscribe!" +09/11/2017,Comedians,@LisaLampanelli,"Got a funny, interesting, horrifying or truly heinous story about therapy? Send it to https://t.co/hE4Z4n0M5U - u may end up on my podcast" +09/11/2017,Comedians,@LisaLampanelli,"Your pleas have been heard! My podcast ""Get Stuffed w/LL"" starts this week! Check out the preview & subscribe now at https://t.co/5Zx1qbRvzI" +09/10/2017,Comedians,@LisaLampanelli,Much to my amazement -- and delight -- you don't have to be dead to get your own chair at the @FriarsClub https://t.co/UiTk4oQBE9 +09/08/2017,Comedians,@LisaLampanelli,"Unlike in real life, you can pick only ONE dessert. Choose wisely! RETWEET for cupcakes or HEART for muffins! https://t.co/99L9hPlrEs" +09/08/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: First day of rehearsals at #StuffedPlay… welcome to the “circle of trust”. 🍩 https://t.co/nkGj18nE3U +09/07/2017,Comedians,@LisaLampanelli,"It's the first day of @StuffedPlay rehearsal, and I just ate my own placenta -- and I wasn't even pregnant. https://t.co/hBfqJfadk0 for tix" +09/07/2017,Comedians,@LisaLampanelli,#ThrowbackThursday - a taste-test of last week’s @StuffedPlay photoshoot with @JeremyDanielPix! More coming soon!! https://t.co/KAqUnMrbfp +09/07/2017,Comedians,@LisaLampanelli,Our pals at @playbill got a taste of what the @StuffedPlay cast has in store for u in Oct! https://t.co/krg1eBSJXP +09/05/2017,Comedians,@LisaLampanelli,1 MONTH til @StuffedPlay starts! To win a chance to meet ME get ur tix at https://t.co/B1QdCGyfGk & comment below w… https://t.co/6w7L3hWg7j +09/05/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: 1 MONTH until 10/5! Reply w/ the friend you're bringing for a chance to win a meet & greet with @LisaLampanelli! https://t… +09/01/2017,Comedians,@LisaLampanelli,"Thanks, guys!!! https://t.co/oLXhbtv7UG" +09/01/2017,Comedians,@LisaLampanelli,"Yassss, @playbill ! Thanks for the love!!! https://t.co/Rq5fEOQT6I" +09/01/2017,Comedians,@LisaLampanelli,"Bad Pun of the Day: Donut miss out! @StuffedPlay begins 10/5. For tix, go to https://t.co/B1QdCGyfGk! https://t.co/pR8EkmLaJx" +08/31/2017,Comedians,@LisaLampanelli,Thanks 2 @rdmcphee @TylerGMount & all the folks at @playbill for the 1st Look video of @StuffedPlay - watch it here! https://t.co/A6ZyBs6il7 +08/31/2017,Comedians,@LisaLampanelli,"With @StuffedPlay starting soon, wondering: What do you ""stuff"" yourself with -- food, booze, relationships, what? Weigh in, folks!" +08/30/2017,Comedians,@LisaLampanelli,QUESTION OF THE DAY: What have u tried to change about urself or ur life that u need to accept? And is acceptance powerlessness or power? +08/30/2017,Comedians,@LisaLampanelli,"A blast today at the @stuffedplay photoshoot! I'm FULL of laughs from my cast members @NikkiBlonsky, @MarshaSBlake,… https://t.co/DdyJ9qC5pu" +08/29/2017,Comedians,@LisaLampanelli,All my fans like 2nd helpings! So check out @broadwaycom & its story on our @StuffedPlay event! https://t.co/OtTgWadDlZ +08/27/2017,Comedians,@LisaLampanelli,"Had an amazing with the great @MorganSpurlock on the 3rd episode of is""Week in the Knees"" podcast! Listen here! https://t.co/XBFIlVIdnH" +08/27/2017,Comedians,@LisaLampanelli,Ms @ChristineBurr did it again on @PageSix - thx 4 the 2 gr8 pieces about @StuffedPlay -- https://t.co/hUj09JJMom & https://t.co/fl573fb4Q2 +08/25/2017,Comedians,@LisaLampanelli,"You @NikkiBlonsky are a pro! Even with laryngitis, you shined like the star you are last night at @FriarsClub - a million thanks & hugs!" +08/25/2017,Comedians,@LisaLampanelli,"Hey Ms. @MarshaSBlake - you are my dream ""Katey""! Thank you so much for signing on to do @StuffedPlay & for being at @friarsclub last nite!" +08/25/2017,Comedians,@LisaLampanelli,So excited that you @OHEden are part of @StuffedPlay - hanging with u last nite at @friarsclub was a dream! Can't wait to start! +08/25/2017,Comedians,@LisaLampanelli,"RT @theatermania: PIX: @LisaLampanelli, @NikkiBlonsky & the cast of @StuffedPlay meet the press → https://t.co/KtlbmpjDIj https://t.co/h9z9…" +08/25/2017,Comedians,@LisaLampanelli,"RT @BroadwayWorld: Get to know the cast of @LisaLampanelli's @Stuffedplay! +https://t.co/tLjEcauSdo" +08/25/2017,Comedians,@LisaLampanelli,RT @broadwaycom: .@LisaLampanelli & the cast of STUFFED prep for off-Broadway bow: https://t.co/YTPnef1JpH https://t.co/mYQoDwZ0QT +08/25/2017,Comedians,@LisaLampanelli,https://t.co/VahLuxftVP +08/25/2017,Comedians,@LisaLampanelli,https://t.co/BDqvuvLfMn +08/24/2017,Comedians,@LisaLampanelli,Yours truly will be LIVE tomorrow from Facebook HQ! Send ur questions about @StuffedPlay & all things ME for Friday… https://t.co/QP9PqouncJ +08/23/2017,Comedians,@LisaLampanelli,"Hey all got a question about food, weight loss, body image or @StuffedPlay ? Just tweet me by 10AMThurs & I might just answer u! Now, type!" +08/23/2017,Comedians,@LisaLampanelli,Wanna hear the inside scoop on @StuffedPlay? I gave an extra helping of truth to @ShelliSonstein on @iHeartRadio -… https://t.co/HUDIOZCRe6 +08/22/2017,Comedians,@LisaLampanelli,Big @StuffedPlay casting announcement! @OITNB alums @MarshaSBlake & @OHEden join me & @NikkiBlonsky! Beyond psyched… https://t.co/2ov8Ir7sdf +08/21/2017,Comedians,@LisaLampanelli,Don't let the sun eclipse your chance to meet a star! Buy tix for @StuffedPlay by midnite & win a chance to meet me! https://t.co/yWBQz6Vx1R +08/20/2017,Comedians,@LisaLampanelli,"Hey, @BenSPlatt - in the audience chomping at the bit to see you today in @DearEvanHansen - try not to disappoint me! Lol" +08/17/2017,Comedians,@LisaLampanelli,Loved doing this interview last year on @AOL @BUILDseriesNYC talking about how I created @StuffedPlay!… https://t.co/y4189fVyGk +08/16/2017,Comedians,@LisaLampanelli,It's National Tell A Joke Day so give me your CORNiest joke. Best ones get a shout out from @StuffedPlay! Holler no… https://t.co/vnAdldcxxD +08/15/2017,Comedians,@LisaLampanelli,I do believe @NYTimes is hungry for more of lil ol' me! Can’t wait for @StuffedPlay to return in October. Go to… https://t.co/PvJVJ2t2JW +08/14/2017,Comedians,@LisaLampanelli,Thanks @RealSway for the fun interview talking about two of my favorite things: food and @StuffedPlay! https://t.co/dbntPLf1oP +08/10/2017,Comedians,@LisaLampanelli,"Tickets are now on sale for my stand-up show at Sound Board @MotorCityCasino on 4/19 in Detroit, MI! https://t.co/at84N6MBUa" +08/10/2017,Comedians,@LisaLampanelli,Talk about making lemonade outta lemons! GORGEOUS!!! https://t.co/zINa1RGdb9 +08/08/2017,Comedians,@LisaLampanelli,Thank u for the amazing interview!!! https://t.co/Ibq1VIKXPV +08/08/2017,Comedians,@LisaLampanelli,"Girl, couldn't be prouder of you and your Emmy mom! Glad the world caught up to what we knew all along. https://t.co/1swvTSncZj" +08/08/2017,Comedians,@LisaLampanelli,"Pre-sale tickets are now on sale for my stand-up show at Sound Board @MotorCityCasino on 4/19 in Detroit, MI! https://t.co/y2Cit3WCxt" +08/02/2017,Comedians,@LisaLampanelli,Listen or else! XOXO Mom https://t.co/xTMmkem32f +07/28/2017,Comedians,@LisaLampanelli,"Hey, @NikkiBlonsky - we're on @PageSix ! Thanks, @ChristineBurr - so excited for @StuffedPlay ! Read about it here: https://t.co/PLCuwUfjyU" +07/27/2017,Comedians,@LisaLampanelli,My girl @NikkiBlonsky from Hairspray is doing @STUFFEDPlay! How f-in' cool is that?!? Get tix to see us at… https://t.co/xWCVcYSw2v +07/10/2017,Comedians,@LisaLampanelli,RT @SXMInsight: What was it like being on The Apprentice with @realDonaldTrump @LisaLampanelli talks with @wjcarter https://t.co/Pyrn8XU… +07/10/2017,Comedians,@LisaLampanelli,"An honor, Bill!!! XOXO https://t.co/xcDmOg5Bwc" +07/10/2017,Comedians,@LisaLampanelli,It's exactly two months til I start rehearsal for @StuffedPlay at the Westside Theatre NYC. How should I spend those last months of freedom? +07/07/2017,Comedians,@LisaLampanelli,"U da man, @RealSway https://t.co/68jIr8pTDN" +07/07/2017,Comedians,@LisaLampanelli,"Man, did I love talking to you guys!!! Thanks a million! https://t.co/bVMvFWnhYD" +07/07/2017,Comedians,@LisaLampanelli,"See u tonite at 9EST/6PST for a LIVE CHAT on https://t.co/uiOw99wvV0 - bring all ur weight, food, Trump, roast & @StuffedPlay questions." +07/05/2017,Comedians,@LisaLampanelli,So so thrilled to see my second favorite flag - the @StuffedPlay’s flag flying above the Westside Theatre in NYC! S… https://t.co/hiqAGQE7kW +07/05/2017,Comedians,@LisaLampanelli,What is the best subtitle for @StuffedPlay ? +06/30/2017,Comedians,@LisaLampanelli,"Tickets for my TWO stand-up shows at @VFCasinoResort in King of Prussia, PA, on 2/24 are now on sale! https://t.co/jLFtZJ83ke" +06/29/2017,Comedians,@LisaLampanelli,"Tickets are on sale now for my stand-up show @RegLenna on 8/5 in Jamestown, NY! #lucilleballcomedyfestival https://t.co/RIMASIKgsx" +06/26/2017,Comedians,@LisaLampanelli,Listen to me with @RealSway NOW on @Shade45 !!! +06/26/2017,Comedians,@LisaLampanelli,Wanna hear the joke @JimNorton liked best on the roast? Listen at 10A EST! @jimandsamshow @StuffedPlay +06/26/2017,Comedians,@LisaLampanelli,How cool is it that I'm talking @StuffedPlay w/@jimandsamshow at 10AEST! Haven't spent time w/ @JimNorton since the Gene Simmons roast! +06/23/2017,Comedians,@LisaLampanelli,Quick! Go to https://t.co/yQ4bPFg3gc or tune in to @Z100NewYork to hear us compare gunts & talk @StuffedPlay ! 8:35… https://t.co/hIhs2RTD8v +06/23/2017,Comedians,@LisaLampanelli,My pal @elvisduran & I laugh it up & talk @StuffedPlay at 8:35A. Listen in NY on @Z100NewYork & everywhere on https://t.co/yQ4bPFg3gc +06/23/2017,Comedians,@LisaLampanelli,"I love those puppies almost as much as I love all of you at @PIX11News - enjoy your new doggie, Dan! https://t.co/cgQPaTjQ4v" +06/23/2017,Comedians,@LisaLampanelli,Thanks for a truly fun-filled morning! XOXO https://t.co/OFG578sp1V +06/22/2017,Comedians,@LisaLampanelli,Excited to be talking @AnimalLeague & @StuffedPlay on @PIX11News w/ @TheBettyNguyen & @DanMannarino at 8:50A! https://t.co/JV4XrP40Z2 +06/20/2017,Comedians,@LisaLampanelli,"On Facebook Live @ 6 EST to talk weight struggles, life changes, political correctness & @StuffedPlay - go to https://t.co/IAvIEeICMO 2 chat" +06/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: Don’t wait to take a bite out of Stuffed! Tickets on sale now at https://t.co/3hYVkLHnFw. https://t.co/8Ip0n2TWC2 +06/20/2017,Comedians,@LisaLampanelli,RT @StuffedPlay: We're proud to celebrate and stand with our LGBTQ fans this week during NYC Pride Week! 🏳️‍🌈 https://t.co/AG1JOIlB5A +06/20/2017,Comedians,@LisaLampanelli,TONITE I'll be on Facebook Live 2 talk @StuffedPlay NYC! Chat with me at 6EST/3PST. And get ur tix for my play NOW https://t.co/zs99wEdB09 +06/20/2017,Comedians,@LisaLampanelli,Tickets are now on sale to the general public for @StuffedPlay! Returning to NYC in October! Get tickets here: https://t.co/zs99wEdB09 +07/02/2018,Comedians,@kathygriffin,@DebraMessing Where's my god damn invite @DebraMessing?! +07/02/2018,Comedians,@kathygriffin,I'm so glad to hear this. Everyone should watch @Hannahgadsby's special on @netflix https://t.co/8mTqSqrTHT +07/02/2018,Comedians,@kathygriffin,RT @RAICESTEXAS: Does anyone know the right person to speak to @Twitter @TwitterSupport to get our account verified? Please retweet to help… +07/02/2018,Comedians,@kathygriffin,RT @kylegriffin1: Trump has spent nearly 1 in 3 days as president at a Trump property and more than 1 in 5 days as president at a Trump gol… +07/02/2018,Comedians,@kathygriffin,You honestly think I’m gonna have my feelings hurt when you say this @ACTBrigitte? Why do you follow me if I’m so c… https://t.co/fa6FGzcEoX +07/02/2018,Comedians,@kathygriffin,Tweet wasn’t deleted motherfucker: https://t.co/WJckJjpa6k https://t.co/YfeAHkZxXG +07/02/2018,Comedians,@kathygriffin,Oh honey - you think my Twitter feed is meant for comedy? Seriously get a life @michaeljknowles - my fans know bett… https://t.co/9U0fhzFozV +07/02/2018,Comedians,@kathygriffin,RT @JuddApatow: Yes everyone— Rupert and Lachlan Murdoch are collaborators with all the evil happening. Daily. https://t.co/Z9KHuJu9H7 +07/02/2018,Comedians,@kathygriffin,"RT @billprady: @michaeljknowles @kathygriffin Now if I were to judge your ""tome"" solely upon your tweets, I would assume it was terrible —…" +07/02/2018,Comedians,@kathygriffin,RT @stutteringjohnm: I am meeting with the Secret Service tomorrow at 10am. @MichaelAvenatti I need your help. +07/02/2018,Comedians,@kathygriffin,RT @stutteringjohnm: I have just spoken to my new attorney @MichaelAvenatti who has agreed to represent me on this. Stay tuned. +07/02/2018,Comedians,@kathygriffin,RT @michaeljknowles: Sure. Likewise I suspect your Twitter doesn't give a false impression either. We present ourselves as polite producers… +07/02/2018,Comedians,@kathygriffin,And I am thankful for you! 💕💕💕 https://t.co/8ll3oVvrmz +07/02/2018,Comedians,@kathygriffin,RT @yashar: Again...why do people eat dark chocolate? Milk chocolate is soothing and creamy. Dark chocolate is bitter and dark. Ugh. +07/02/2018,Comedians,@kathygriffin,RT @TVietor08: This is the most pathetic oppo hit i have ever seen. You embarrassed yourself here @PageSix not @Ocasio2018 https://t.co/aMN… +07/02/2018,Comedians,@kathygriffin,RT @joanwalsh: Ugh. The person who wrote the story about @johnlegend in the @nytimes Sunday Styles section referred to his focusing on how… +07/02/2018,Comedians,@kathygriffin,cc: @IngrahamAngle he's still dribbling but thankfully he's not shutting up. https://t.co/4UEwatoUPG +07/02/2018,Comedians,@kathygriffin,"RT @louisvirtel: Woman Not Nice Enough to be Revolutionary, Says Random Acquaintance https://t.co/Eizp1DDIM4" +07/02/2018,Comedians,@kathygriffin,RT @chrissyteigen: told youuuu https://t.co/ENTrEuq0NC +07/02/2018,Comedians,@kathygriffin,"Just did two big shows at Radio City Music Hall and Carnegie Hall - along with shows in San Francisco Masonic, Seat… https://t.co/VmfrKhRJ2q" +07/02/2018,Comedians,@kathygriffin,RT @MichaelCastner: Seriously @SecretService ? @stutteringjohnm and @kathygriffin are what you consider threats to the republic? Ya might l… +07/01/2018,Comedians,@kathygriffin,Oh fuck you @AriFleischer you lied and leaked while you were in the White House and helped to sell a war we didn’t… https://t.co/9nfR4xngDv +07/01/2018,Comedians,@kathygriffin,RT @McFaul: Why did Putin fail to show up for arguably Russia's greatest football victory ever? Anyone know where he is today? +07/01/2018,Comedians,@kathygriffin,RT @AsiaArgento: This is an important read https://t.co/MWVPqTuydN +07/01/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: Breaking: Secret Service contacted me agent & wants me to meet with them tomorrow. Stay tuned, Avenatti, can you come…" +07/01/2018,Comedians,@kathygriffin,RT @KamalaHarris: Donald Trump wants to fill this SCOTUS vacancy with a justice who will overturn Roe v. Wade. Here’s what this is really a… +07/01/2018,Comedians,@kathygriffin,RT @JimCarrey: God Bless You Mr Rosenstein for bravely standing up to the likes of Jim Jordan and Trey Gowdy who seek to destroy the rule o… +07/01/2018,Comedians,@kathygriffin,"RT @kylegriffin1: Trump's nominee to run the IRS failed to disclose that he owns units in a Trump hotel, according to The Hill. https://t.c…" +07/01/2018,Comedians,@kathygriffin,Innocent or Guilty. I’ll let @darth be the judge. https://t.co/3XqsCKSryz +07/01/2018,Comedians,@kathygriffin,@mooretabithia31 Chocolates next to flowers +07/01/2018,Comedians,@kathygriffin,"Thank you @rachaelray!! What a beautiful and delicious surprise! + +Love, +KG https://t.co/x6Z6OLDGfX" +07/01/2018,Comedians,@kathygriffin,RT @goldengateblond: Everything you need to know about Susan Collins’ judgment is right here. https://t.co/boqnXgif49 +07/01/2018,Comedians,@kathygriffin,I’ve been a professional comic for 30 years. I’ve been studying comedy for even longer. I thought I had seen everyt… https://t.co/CDpQCCs9lK +07/01/2018,Comedians,@kathygriffin,"Bill is a catch! Brilliant, kind, and hilarious!! https://t.co/D8Pdhj1ciT" +07/01/2018,Comedians,@kathygriffin,Happy Canada Day!!! 🇨🇦🇨🇦🇨🇦 +07/01/2018,Comedians,@kathygriffin,"RT @kylegriffin1: It's official: For the second year in a row, the White House did not release a presidential proclamation marking Pride Mo…" +07/01/2018,Comedians,@kathygriffin,"RT @neeratanden: Just to state it, Gorsuch has voted a 100% with the hard right on the Court; there is no reason at all to think he would p…" +07/01/2018,Comedians,@kathygriffin,"RT @brianefallon: Susan Collins to @jaketapper: ""The President told me he would not ask that question"" about Roe. +He doesnt need to, Susan…" +07/01/2018,Comedians,@kathygriffin,RT @DebraMessing: You have to tag her @SusanSarandon if you want her to see it. Just helping out. https://t.co/AYmj5EJQYl +07/01/2018,Comedians,@kathygriffin,"RT @JimCarrey: If you’re wondering why Fake President @realDonaldTrump doesn’t care about the suffering of children at the border, the answ…" +07/01/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: I was told by someone close to me that this was a silly prank. I'm sorry I have to disagree,at the very least,this has…" +07/01/2018,Comedians,@kathygriffin,RT @maggieNYT: To be clearer here after a reader email - they’ve addressed their views on constitutionality of Roe v Wade previously. There… +07/01/2018,Comedians,@kathygriffin,Omg amazing https://t.co/OJw3Ol8hW7 +07/01/2018,Comedians,@kathygriffin,"RT @andylassner: Happy #CanadaDay!! + +Thank you for bearing with us during this highly embarrassing time for our country." +07/01/2018,Comedians,@kathygriffin,RT @MollyJongFast: Jared is as good at world peace as he is at switchboard operator. https://t.co/689eNxvz6U +07/01/2018,Comedians,@kathygriffin,"RT @Toure: In the picture below you see an adult woman screaming at a 14 yo child. She is Roslyn La Liberte, a MAGA zealot racist who runs…" +07/01/2018,Comedians,@kathygriffin,https://t.co/4tuBolSsyo +07/01/2018,Comedians,@kathygriffin,RT @EricHaywood: We been knew https://t.co/Kw87WEQWTs +07/01/2018,Comedians,@kathygriffin,"Last day of Pride! In honor of Pride, I’m donating $2 for every ticket sold on my US tour to the @TrevorProject whi… https://t.co/J36ZzJZcwY" +07/01/2018,Comedians,@kathygriffin,But of course https://t.co/dgsxblYXhx +07/01/2018,Comedians,@kathygriffin,RT @cher: I wish bots were funny +07/01/2018,Comedians,@kathygriffin,RT @davidmackau: threeeeeeeeeeeeead https://t.co/C3eDFqJKLX +06/30/2018,Comedians,@kathygriffin,RT @DebraMessing: https://t.co/xlyYZd0fpR +06/30/2018,Comedians,@kathygriffin,"Good...she is a brilliant, empathetic woman who should be our president. And just because she's not going to run fo… https://t.co/iFmLfRXbDR" +06/30/2018,Comedians,@kathygriffin,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/30/2018,Comedians,@kathygriffin,"RT @Diane_Warren: Oh shit, if she is picked we r fuuuuuucked. #handmaids #cantmakethisshitup https://t.co/g5GeE6Mk3o" +06/30/2018,Comedians,@kathygriffin,"RT @HoarseWisperer: MSNBC cancels Hugh Hewitt's show. + +Happy Saturday. + +https://t.co/BzGIecbr00" +06/30/2018,Comedians,@kathygriffin,RT @Sia: #stopseparation https://t.co/BtmcHOewti +06/30/2018,Comedians,@kathygriffin,RT @KrangTNelson: very powerful https://t.co/Qh8dN5ICJb +06/30/2018,Comedians,@kathygriffin,RT @shannonrwatts: This is a 40 year old @NRA lobbyist. My 17 year old wouldn’t even behave like this 👇 https://t.co/oePDej3d8j +06/30/2018,Comedians,@kathygriffin,👏🏻👏🏻👏🏻👏🏻 https://t.co/haskaVTtFi +06/30/2018,Comedians,@kathygriffin,RT @kenolin1: I get the feeling most Americans don’t like to see kids put in cages. +06/30/2018,Comedians,@kathygriffin,Harris/Booker 2020 +06/30/2018,Comedians,@kathygriffin,RT @KamalaHarris: We’ve already seen the President’s list of potential SCOTUS nominees — they are conservative ideologues who would put a w… +06/30/2018,Comedians,@kathygriffin,"RT @andylassner: Reminder: + +The President of the United States of America is such a colossal, fuck brain of a moron that he took a prank ca…" +06/30/2018,Comedians,@kathygriffin,"RT @AndrewKirell: In just the past year, @DineshDSouza has said C-Ville was “staged,” shared conspiracy that Vegas killer was anti-Trump, d…" +06/30/2018,Comedians,@kathygriffin,RT @DannyZuker: .@realDonaldTrump thinks you guys who still support him are SO stupid that he can lie to you this obviously and you won’t n… +06/30/2018,Comedians,@kathygriffin,"RT @stutteringjohnm: ""If it was that easy to dupe him, there's every chance in the world Putin duped him,"" says comedian ""Stuttering John""…" +06/30/2018,Comedians,@kathygriffin,"RT @WisePaxCat: How TF was this not ALREADY a hate crime????? + +3 Black U.S. Senators Introduce Bill to Make Lynching a Federal Hate Crime h…" +06/30/2018,Comedians,@kathygriffin,RT @MollyJongFast: Owning the libs by completely contradicting yourself 3 days later. https://t.co/rQR2FPT0U1 +06/30/2018,Comedians,@kathygriffin,"RT @Marmel: The word is “Lies.” +Shorter. +Less characters. +Why is that so hard? https://t.co/iiGLhO4WNP" +06/30/2018,Comedians,@kathygriffin,"RT @davidmackau: The Best, Most Creative Signs From The ""Families Belong Together"" Protests https://t.co/w0h0EPJAhr via @ambiej" +06/30/2018,Comedians,@kathygriffin,RT @MattNegrin: @realDonaldTrump hahahahahahah omg this is so sad +06/30/2018,Comedians,@kathygriffin,"RT @danpfeiffer: @realDonaldTrump If you don’t like Trump (or Sean Spicer), buy Yes We (Still) Can and a portion of the proceeds of every b…" +06/30/2018,Comedians,@kathygriffin,"RT @CharlesMBlow: #OnThisDay in 1917 the legendary entertainer and activist Lena Horne was born in Brooklyn, the original “livest one from…" +06/30/2018,Comedians,@kathygriffin,RT @yashar: Is This the Year Women Break the Rules and Win? https://t.co/initHFAxzh +06/30/2018,Comedians,@kathygriffin,"RT @rmayemsinger: if Stuttering John is able to prank Donald Trump and get a live call from Air Force One, what THE HELL IS VLADIMIR PUTIN…" +06/30/2018,Comedians,@kathygriffin,"RT @michaelianblack: Have never felt continual, daily dread about my country before. I wake up with it, go to sleep with it. It’s exhaustin…" +06/30/2018,Comedians,@kathygriffin,RT @michaelkruse: Nearly 200 anti-lynching bills were introduced in Congress from 1882 to 1986. None were approved. https://t.co/HRzvh4Fpmu +06/30/2018,Comedians,@kathygriffin,RT @rgay: I am so tired. +06/30/2018,Comedians,@kathygriffin,"Brilliant column by @KarenAttiah —-> + +I no longer have hope in white America https://t.co/EKTEWObHGE" +06/30/2018,Comedians,@kathygriffin,"RT @AmbassadorRice: Folks, this is huge, if true: NK has a secret, third nuclear facility. They have been hiding it. The US intell commu…" +06/30/2018,Comedians,@kathygriffin,"RT @BetteMidler: Yup. Trump and Putin are meeting in Finland next month. Which is more appropriate than you’d think, since if these two kee…" +06/30/2018,Comedians,@kathygriffin,RT @andylassner: @kathygriffin This is the dude that slept with both @IngrahamAngle and @AnnCoulter. What a delightful trio they make. +06/30/2018,Comedians,@kathygriffin,RT @Diane_Warren: Is this all just a fucking reality show to U? The show we r waiting for is American Indictments. And it's coming soon. ht… +06/30/2018,Comedians,@kathygriffin,RT @The_A_Prentice: Translation: “I tried to tell you motherfuckas” https://t.co/W7C63HPFJw +06/30/2018,Comedians,@kathygriffin,RT @maxwelltani: it's true do not ever exaggerate the physical harm you experience as a journalist https://t.co/PrjJc2kR6r +06/30/2018,Comedians,@kathygriffin,RT @brianklaas: Dinesh D’Souza has been retweeting some pretty vile hashtags while trying to promote his film. https://t.co/EamljeWC6c +06/30/2018,Comedians,@kathygriffin,Dinesh D’Souza says he did Nazi that someone used the hashtag #burnthejews in a tweet he retweeted. https://t.co/TAvXnvL36u +06/30/2018,Comedians,@kathygriffin,RT @jeremymstamper: Should @kathygriffin stop using the bad f-word in order to be more ladylike? +06/30/2018,Comedians,@kathygriffin,RT @THR: .@KathyGriffin jumps back to No. 1 on Top Comedians social media ranking https://t.co/WBkJffCld2 https://t.co/OablGZ9ixM +06/30/2018,Comedians,@kathygriffin,"RT @nadabakos: “Fear of Donald Trump is not enough for me to support Clinton, with her record of corruption.” +— Susan Sarandon https://t.co…" +06/30/2018,Comedians,@kathygriffin,Thank you! Kathy Griffin Jumps Back to No. 1 on Top Comedians Social Media Ranking https://t.co/yVvJV7tYGZ via @THR +06/30/2018,Comedians,@kathygriffin,RT @ParkerMolloy: .@dominicholden put together a list of anti-LGBT actions taken by the Trump administration. If you’re not completely glue… +06/30/2018,Comedians,@kathygriffin,RT @ira: I don’t need to hear Bon Jovi in a gay bar +06/30/2018,Comedians,@kathygriffin,RT @JoyAnnReid: Why NFL players kneel: https://t.co/cLCLXlMiSE +06/30/2018,Comedians,@kathygriffin,"RT @rosemcgowan: .@terrycrews You are a HERO! Assault happens to boys and Men too. You are brave, you are good, you are strong. I’m so plea…" +06/30/2018,Comedians,@kathygriffin,RT @JuddApatow: Lachlan Murdoch and his @FoxNews has no interest in bringing our country together with accurate information and thoughtful… +06/30/2018,Comedians,@kathygriffin,RT @MattOswaltVA: Milo Yiannopolous is what happens when you sprinkle glitter on Alex Jones https://t.co/ekKOWQuc5w +06/30/2018,Comedians,@kathygriffin,"RT @MattOswaltVA: waiting for Twitter to expand to 280,000 characters before I tackle this https://t.co/iOFT3RAeZI" +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: To everyone preaching “civility” just a friendly reminder that nothing anyone calls Trump is as bad as the worst thing p… +06/30/2018,Comedians,@kathygriffin,@Spencer4Texas @TrevorProject Thank you! 😘 +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: The guy who can’t stop talking about Hillary’s emails got prank called on Air Force One then called the prank call back… +06/30/2018,Comedians,@kathygriffin,ooops https://t.co/1SvOFwX3Kl +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: GREAT JOB SENATOR MENENDEZ WE’RE PROUD OF YOU https://t.co/GmkPbC9o1k +06/30/2018,Comedians,@kathygriffin,"RT @HillaryClinton: Given the news coming out of the Supreme Court this week, I'm excited to support @WeDemandJustice's critical work by we…" +06/30/2018,Comedians,@kathygriffin,"RT @andylassner: Keep fighting the good fight, Jim. + +You’re yelling at him for millions of us. https://t.co/RRykSe0hAN" +06/30/2018,Comedians,@kathygriffin,RT @BetteMidler: #JoeJackson is d-e-a-d- and Hallelujah!! A monster who ate his own children; like in an old Grecian myth. I hated every… +06/30/2018,Comedians,@kathygriffin,"Hmmmmm tbd on the meeting part - you just followed me so I’d like to see how you behave! + +As for Texas, I’m doing t… https://t.co/q7jIJ5YWpX" +06/30/2018,Comedians,@kathygriffin,RT @RepSwalwell: Scary. A constituent just confronted me and told me I support open borders. I told her that’s not true and I’ve never said… +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: It’s because he’s a fucking idiot how is this hard https://t.co/iE106KedHa +06/30/2018,Comedians,@kathygriffin,Her clients thought she was selling their homes...but she was selling them out. https://t.co/1kTwTYv5NE +06/30/2018,Comedians,@kathygriffin,RT @JuddApatow: This is where Lachlan Murdoch and @FoxNews are especially evil. This promotion of the idea that the next Supreme Court Jus… +06/30/2018,Comedians,@kathygriffin,RT @brianklaas: The guy who rode to the White House arguing that his opponent couldn’t be trusted with classified information runs such a t… +06/30/2018,Comedians,@kathygriffin,@robbie_couch You just saved yourself. @ParkerMolloy was kind enough to tell me what she thought of the show...sile… https://t.co/adErkmU1Ee +06/30/2018,Comedians,@kathygriffin,@robbie_couch did you make it to my show? +06/30/2018,Comedians,@kathygriffin,"RT @billprady: Remember when everyone was upset that Hillary’s server was a security risk? + +Stuttering John just got through to the preside…" +06/30/2018,Comedians,@kathygriffin,"RT @elijahdaniel: GOD HATES LIL PHAG + +PREORDER + NEW SINGLE DROPS JULY 13TH +FULL ALBUM DROPS JULY 27TH https://t.co/JLV5jKQwz6" +06/30/2018,Comedians,@kathygriffin,"RT @LibyaLiberty: Hey as long as you’re civil for the photo op, right? Ew. https://t.co/IHfhWVeXcx" +06/30/2018,Comedians,@kathygriffin,@maggieNYT @MZHemingway Fuck @MZHemingway - she’s just pro trump now cause it’ll get her attention and on TV. +06/30/2018,Comedians,@kathygriffin,RT @maggieNYT: Actually @MZHemingway I was making a totally different point re what my colleague was saying about both sides in a long pres… +06/30/2018,Comedians,@kathygriffin,Hungry for attention honey? Here it is. That photo was from a reality show taping many years ago. What’s your point… https://t.co/w3Tj3fxjJn +06/30/2018,Comedians,@kathygriffin,Provocateur? He’s not Madonna. He’s a racist asshole and a criminal. https://t.co/bb8rtPvIPz +06/30/2018,Comedians,@kathygriffin,RT @KamalaHarris: Women aren’t just marching — they’re running and fighting for our future. https://t.co/2zHSZsub7z +06/30/2018,Comedians,@kathygriffin,JESUS https://t.co/hoZhwqbgsT +06/30/2018,Comedians,@kathygriffin,"RT @selfstyledsiren: A visitor to Hollywood encounters incivility, 1938. https://t.co/13ph92EdXR" +06/30/2018,Comedians,@kathygriffin,Amazing https://t.co/n6mBTiwb6l +06/30/2018,Comedians,@kathygriffin,Like you give a fuck about immigrant communities @mschlapp https://t.co/uRpnb6yHJY +06/30/2018,Comedians,@kathygriffin,Forgive me...I should have included a comma.... https://t.co/XaiYP0S7aG +06/30/2018,Comedians,@kathygriffin,RT @shannonrwatts: How’s this going? https://t.co/G5I7pw04Nl +06/30/2018,Comedians,@kathygriffin,Brother and Sister ❤️ https://t.co/3rhfBH000m +06/30/2018,Comedians,@kathygriffin,RT @OhNoSheTwitnt: The Annapolis shooter once stalked and harassed a woman to the point where she fled the state. If you don’t want to blam… +06/30/2018,Comedians,@kathygriffin,RT @TVietor08: This asshole destroyed people’s lives when he spent four years demagoging the many Benghazi investigations. https://t.co/fM7… +06/30/2018,Comedians,@kathygriffin,RT @PreetBharara: Breaking: Dictators lie. Wannabe dictators lie too. https://t.co/kYmjPKNyx1 +06/30/2018,Comedians,@kathygriffin,RT @justinmclachlan: I'm so on board with I Don't Give a Fuck What Anyone Thinks Hillary https://t.co/sXy1HYyPBN +06/30/2018,Comedians,@kathygriffin,RT @PreetBharara: Yeah but North Korea denies it. So it’s ok. https://t.co/kYmjPKNyx1 +06/30/2018,Comedians,@kathygriffin,"Thank you @HillaryClinton for always saying what needs to be said. + +https://t.co/HY5bYi5XT4 https://t.co/YZcvHpdv45" +06/30/2018,Comedians,@kathygriffin,"RT @mehdirhasan: Worse: she said Hillary was more dangerous than Trump and still stands by that, even now. https://t.co/pchy6vUTFO" +06/30/2018,Comedians,@kathygriffin,"RT @kylegriffin1: Hillary Clinton on incivility: ""Give me a break! What is more uncivil and cruel than taking children away? It should be m…" +06/30/2018,Comedians,@kathygriffin,"RT @ava: Just so you know, @RTraister came to snatch all wigs and edges in this power-packed piece that had me in full black church call an…" +06/30/2018,Comedians,@kathygriffin,"RT @terrycrews: Why didn’t you say something? + +I did. + +Why didn’t you push him off? + +I did. + +Why didn’t you cuss him out? + +I did. + +Why did…" +06/30/2018,Comedians,@kathygriffin,But I thought there was little to no difference between Trump and Hillary? https://t.co/H6unxTAVVJ +06/29/2018,Comedians,@kathygriffin,"RT @andylassner: Yet you tweeted at me. +You’re bad at Twitter. https://t.co/tyAHqwRgSQ" +06/29/2018,Comedians,@kathygriffin,RT @MalcolmNance: BOT ALERT. This is hilarious when read with a Russian accent! Enjoy! #SaveDemocracy https://t.co/SUIMKjXn5F +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: Unspeakable. Don’t stop speaking about it. https://t.co/CgyuMfGoo0 +06/29/2018,Comedians,@kathygriffin,"Certainly not you bitch. + +@ACTBrigitte https://t.co/cneX2pmvSq" +06/29/2018,Comedians,@kathygriffin,RT @PattyArquette: I didn’t hear one hannity type condemn Milo or call it a bad joke like they did with Kathy Griffin. You know why? They k… +06/29/2018,Comedians,@kathygriffin,RT @SortaBad: When you call someone a pussy it’s actually short for the word pusillanimous which means timid. It doesn’t reference a body p… +06/29/2018,Comedians,@kathygriffin,"RT @freedominguez: Dear @marcorubio + +From one child of Cuban immigrants to another - where the fuck are the children ? And why are they sti…" +06/29/2018,Comedians,@kathygriffin,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Comedians,@kathygriffin,RT @yashar: Or maybe Kushner could listen to people for once and not think he’s the smartest man in the room as he often does? https://t.co… +06/29/2018,Comedians,@kathygriffin,You guys are hilarious - how about you get an administration that doesn't get fooled by a comedian. https://t.co/bAeWLfCqSZ +06/29/2018,Comedians,@kathygriffin,HAHAHAHAHAHAHA https://t.co/bAeWLfCqSZ +06/29/2018,Comedians,@kathygriffin,"My two LA shows are just around the corner! Both shows are at the Dolby Theatre! + +July 19th:… https://t.co/9V53oOwiYn" +06/29/2018,Comedians,@kathygriffin,"Go fuck yourself you useless, spineless piece of shit. Fuck you and Fuck Trump. https://t.co/jbedYvQQ1C" +06/29/2018,Comedians,@kathygriffin,RT @AlyssaMastro44: i have to be honest i am a polite person whose language has become more caustic bc I don’t believe in violence and it’s… +06/29/2018,Comedians,@kathygriffin,"RT @kenolin1: What is your deal? Your political career was a disaster. Your ethics are nonexistent. Your daughter is a liar, a bully, and a…" +06/29/2018,Comedians,@kathygriffin,Is this a fucking joke? https://t.co/Kl280uHyZR +06/29/2018,Comedians,@kathygriffin,RT @yashar: The Trump campaign just sent out this text-message to supporters. https://t.co/DkRmq381ne +06/29/2018,Comedians,@kathygriffin,"I'm doing three shows in Texas motherfucker. + +Get Tickets Here: https://t.co/Nq0HnqTHFK https://t.co/vLL0AreCvy" +06/29/2018,Comedians,@kathygriffin,"“Force for positive change..” + +😂😂😂 https://t.co/3oLfqjKwJC" +06/29/2018,Comedians,@kathygriffin,Yup...every other word https://t.co/fXHwOTMnph +06/29/2018,Comedians,@kathygriffin,"Chicago, thank you for an amazing welcome last night!!! + +Next up: Two shows in LA, San Diego, and Charlotte! + +Get… https://t.co/yFlXv9GQvs" +06/29/2018,Comedians,@kathygriffin,"RT @EricHaywood: Proposal: Let Black Twitter name everything from now on. + +#BBQBecky +#PermitPatty +#PoolPatrolPaula https://t.co/MZXYNudOgC" +06/29/2018,Comedians,@kathygriffin,"RT @thistallawkgirl: By your description, he sounds like he’ll make a perfect ninth husband for Kim Davis one day. https://t.co/JXPSPZqgCM" +06/29/2018,Comedians,@kathygriffin,Must be nice to spend time with your grandson...other people’s grandchildren are in internment camps. https://t.co/yZk114hOim +06/29/2018,Comedians,@kathygriffin,RT @ChelseaClinton: This is monstrous. https://t.co/spMcxNzYAe +06/29/2018,Comedians,@kathygriffin,"RT @BetteMidler: I don't believe #Trump cares one iota about abortion, nor would I be surprised to find out he owns stock in a coat-hanger…" +06/29/2018,Comedians,@kathygriffin,"RT @aparnapkin: ""Just trolling"" means words don't matter. Words do matter. Journalism matters. Consequences matter. https://t.co/yPdtVgCbGF" +06/29/2018,Comedians,@kathygriffin,RT @michelleisawolf: Hey @GOP thanks for the free publicity 😘 #Unhinged2018 https://t.co/jLcfGdXCbE +06/29/2018,Comedians,@kathygriffin,"RT @DrClawMD: Just checking in: When @kathygriffin does this it's ""unacceptable"" but when the @GOP uses it for more political mind games an…" +06/29/2018,Comedians,@kathygriffin,"RT @ColMorrisDavis: .@DLoesch and her @NRA collaborators are enemies of democracy and a clear & present danger. + +@Morning_Joe https://t.co/…" +06/29/2018,Comedians,@kathygriffin,"RT @ShaunKing: This police officer in Lancaster, Pennsylvania should be fired immediately. After he is fired, the District Attorney should…" +06/29/2018,Comedians,@kathygriffin,Thank you for coming! 🍿👑 https://t.co/O9MlBfVAAu +06/29/2018,Comedians,@kathygriffin,Thank you!! 💋❤️ https://t.co/ruwurMjb1W +06/29/2018,Comedians,@kathygriffin,A pleasure working for you! https://t.co/NqwzmIo8N0 +06/29/2018,Comedians,@kathygriffin,"RT @AndyRichter: McDonald's CEO scolds employees for making burgers ""too burgery"" https://t.co/rcFPxzK6DY" +06/29/2018,Comedians,@kathygriffin,"RT @dodo: Bear and Bull have a habit of getting into trouble, especially when mail carriers leave the door of their truck open. https://t.c…" +06/29/2018,Comedians,@kathygriffin,RT @rgay: lol Martha Stewart on this episode of chopped saying “it’s spicy” with such Caucasian disdain. https://t.co/LT9Qyy22jQ +06/29/2018,Comedians,@kathygriffin,"RT @JulieOwenMoylan: I tweet this every single time this issue is raised and I always lose some followers and I never care. + +Fact..There is…" +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: An unassuming-looking man with glasses is bigger and braver than most. A hero of the resistance. https://t.co/5md667whYm +06/29/2018,Comedians,@kathygriffin,RT @kimmasters: ❤️ https://t.co/hhLEeGFGUK +06/29/2018,Comedians,@kathygriffin,"RT @JuddLegum: Am eternally grateful to @capgaznews for the thoughtful way they covered my father's death two years ago. + +Thinking of ever…" +06/29/2018,Comedians,@kathygriffin,"@judois Yep! Friday, August 3rd! Come see me! https://t.co/yzvkFY84TF" +06/29/2018,Comedians,@kathygriffin,"RT @BetteMidler: Trump and Putin are meeting in Finland next month. That's a long way to travel for a blowjob, but hey -- Putin's got the m…" +06/29/2018,Comedians,@kathygriffin,RT @CorkyGirl32: Best night ever thanks to @kathygriffin!! 3 hours of truth telling and laughs. No one does stand up like her. https://t.co… +06/29/2018,Comedians,@kathygriffin,RT @JillWineBanks: Just laughed my head off with @kathygriffin at the Chicago Theater. Sold out show with an adoring audience. She is smart… +06/29/2018,Comedians,@kathygriffin,"RT @JillWineBanks: Can''t resist one more photo from the fun of being with @kathygriffin tonight. See her show. Also, met lots of enthusias…" +06/29/2018,Comedians,@kathygriffin,RT @SarahKSilverman: The job of a journalist is to find out what is true and report it to the people. Democracies end/dictatorships start… +06/29/2018,Comedians,@kathygriffin,Gowdy is one angry lady. Too many facials. https://t.co/eu8UYDuUSJ +06/29/2018,Comedians,@kathygriffin,@darrenhayes They save us. Thank you for giving him a great life. +06/29/2018,Comedians,@kathygriffin,RT @LilahMonster: .@kathygriffin was amazing tonight in Chicago. 3 hours of pure entertainment and tea spilling. 👏🏻✌🏻 +06/29/2018,Comedians,@kathygriffin,"So excited! I love playing Atlanta! + +Tickets here: https://t.co/qFQCNjvvnv https://t.co/1KnSCmA19d" +06/29/2018,Comedians,@kathygriffin,That means so much to me! thank you! https://t.co/puKzFyW9jC +06/29/2018,Comedians,@kathygriffin,@Culpepperthecat Thank you! +06/29/2018,Comedians,@kathygriffin,Thank you!! 😘😍 https://t.co/4gmsifZWzW +06/29/2018,Comedians,@kathygriffin,Thank you!! https://t.co/fWDroObxV4 +06/29/2018,Comedians,@kathygriffin,"RT @KaylaPekkala: When you literally have no fucks to give, you put on one hell of a show. + +So much name dropping and juicy gossip from @k…" +06/29/2018,Comedians,@kathygriffin,"RT @ParkerMolloy: Oh wow, this was a lot of fun! 3 hours(!!!) of jokes, stories, gossip, and more. Totally different than any other comedy…" +06/29/2018,Comedians,@kathygriffin,Thank you @ParkerMolloy!!! https://t.co/T5gSqUIa8c +07/02/2018,Comedians,@cameronesposito,"Here’s Rhea July 11, 2014 (LeBron back to Cavs day); excited to see their face when I get home https://t.co/ljfOGJQFcA" +07/02/2018,Comedians,@cameronesposito,"@NewsHour @RAINN Hey thanks for having me @NewsHour + +was a great convo" +07/02/2018,Comedians,@cameronesposito,"RT @NewsHour: How should comics tackle sensitive topics? ‘Lead with personal experience,’ says @cameronesposito, whose set ‘Rape Jokes’ has…" +07/01/2018,Comedians,@cameronesposito,"@PFTompkins @RheaButcher Bizkits dont bizquit + +what am i even doing" +07/01/2018,Comedians,@cameronesposito,This third base coach tho https://t.co/6eAkDhaWAD +07/01/2018,Comedians,@cameronesposito,"this older gay couple had our whole neighborhood over to do karaoke on their front lawn last night + +So that’s who I want to be" +07/01/2018,Comedians,@cameronesposito,"@callmegplease Lemme pitch an alt ending real quick: + +“And that’s how I met my wife!”" +06/30/2018,Comedians,@cameronesposito,"grateful to have friends who talk politics over dinner, wake up early to rally or march & generally give a shit" +06/30/2018,Comedians,@cameronesposito,#familiesbelongtogether https://t.co/VwWXqkw0l5 +06/30/2018,Comedians,@cameronesposito,"Queer as Folk finale was on. The final words of the series, from 2005 https://t.co/5LrTq1eTJz" +06/29/2018,Comedians,@cameronesposito,"Los Angeles: will u be at this tmo? + +Hope so!! #FamilesBelongTogether https://t.co/1I31SEgeNW" +06/29/2018,Comedians,@cameronesposito,"@martcw12 @MNUFC Stoked for you, Collin." +06/29/2018,Comedians,@cameronesposito,@albinokid @RheaButcher @ClubhousePod oh wow cannot wait to listen +06/29/2018,Comedians,@cameronesposito,"@flyFoxfromNJ it was a coincidence! It’s that rad? + +I’ve totally talked w/ @threebarebears about how happy it makes me" +06/29/2018,Comedians,@cameronesposito,@jackiekashian @elizaskinner @aparnapkin @MrEmilyHeller @anylaurie16 @mariabamfoo seconded! +06/29/2018,Comedians,@cameronesposito,IM A FUCKING JOKE PROFESSOR +06/29/2018,Comedians,@cameronesposito,"No, that’s not a joke + +Jokes use an emotional reaction to an event or phenomenon to point to universal human truths… https://t.co/gAWTLAraS1" +06/29/2018,Comedians,@cameronesposito,"woke Rhea up at 7AM by screaming + +“TESSA!!!”" +06/28/2018,Comedians,@cameronesposito,"i guess im asking every queer person to go to law school or run for office + +OR BOTH" +06/28/2018,Comedians,@cameronesposito,"can’t stop thinking about an entirely queer Supreme Court + +Where all the dissenting opinions are justices calling e… https://t.co/sMXQTwA3Hd" +06/28/2018,Comedians,@cameronesposito,"Last night we passed the $50k mark in donations to support @rainn!! + +Thank you, friends. + +Watch the rest of this… https://t.co/bLhMQjbzdJ" +06/27/2018,Comedians,@cameronesposito,"45 getting another SCOTUS seat makes me nauseated + +im w/ u, other queer folks & anyone who’s part of a marginalized… https://t.co/5cZGEdtHVh" +06/27/2018,Comedians,@cameronesposito,"@waxpancake this is rad, Andy. + +thanks" +06/27/2018,Comedians,@cameronesposito,Portland! Come see me at @xoxo. https://t.co/HcGoYA9584 +06/27/2018,Comedians,@cameronesposito,@jeannakadlec @brookshelley @xoxo uh I’m a Libra moon +06/27/2018,Comedians,@cameronesposito,@tedleo @RheaButcher @pyhtshow @knottyyarn @caseywley 💜💜💜💜🎟 +06/27/2018,Comedians,@cameronesposito,"Alexandria Ocasio-Cortez!!!!!! + +!!!!!!!!!!!!!!! 😁 + +okay. Goodnight." +06/27/2018,Comedians,@cameronesposito,@Lawthreeper Hahahaha +06/27/2018,Comedians,@cameronesposito,‘Rape Jokes’ has raised over $43k for @rainn!! Watch FREE & donate at https://t.co/mrdDRgIvPt https://t.co/JfXLwIXjgt +06/27/2018,Comedians,@cameronesposito,i *am* Big Dick Energy +06/26/2018,Comedians,@cameronesposito,"RT @skgway: Number One Feeling. + +(🎥: @cameronesposito #RapeJokes) https://t.co/6NhqWcAFW5" +06/26/2018,Comedians,@cameronesposito,@skgway Yes. Yes every day. +06/26/2018,Comedians,@cameronesposito,@IjeomaOluo damn ur good w/ words +06/26/2018,Comedians,@cameronesposito,"Did u know that if u get really mad that i talk about being gay, ill still talk about it but u’ll be a mad sad baby… https://t.co/RAL5VDw4fU" +06/26/2018,Comedians,@cameronesposito,"Whoa cool. + +‘Rape Jokes’ in @MsMagazine +https://t.co/0Oxmd2t0EX https://t.co/SAS2GxuQKN" +06/26/2018,Comedians,@cameronesposito,"obvs SCOTUS doesn’t actually give a shit about religious freedom (Muslim ban) + +I do think w/ abortion specifically… https://t.co/m4k5eqggkI" +06/26/2018,Comedians,@cameronesposito,"@carrie1ou @designsponge @queerycast to recommend something adjacent, my new standup special has captions + +It’s fre… https://t.co/N7zEIKUoDC" +06/26/2018,Comedians,@cameronesposito,"Faith is a personal + +Evangelism as medical care is not faith and today’s Supreme Court decision is bogus + +Access… https://t.co/eROheVBKRZ" +06/26/2018,Comedians,@cameronesposito,"Brokebutch Mountain, right?? Also see u tonight 8PM at @ucbtla https://t.co/GBRnSV22JQ" +06/26/2018,Comedians,@cameronesposito,@ColinAnder @carrie1ou @designsponge @queerycast Yes yes yes yes PLS DO pls do +06/26/2018,Comedians,@cameronesposito,RT @PFTompkins: ICYMI: Spontaneanation Ep 169 continues our #PrideMonth celebration with our old pals Rhea Butcher & Cameron Esposito! With… +06/26/2018,Comedians,@cameronesposito,RT @designsponge: Hands down the most personal discussion I’ve ever had publicly. Thank you to @cameronesposito for making me feel safe to… +06/26/2018,Comedians,@cameronesposito,@katekillet much love Kate! +06/26/2018,Comedians,@cameronesposito,"@hanawith1n Hahahaha + +🗣 T O W E R" +06/26/2018,Comedians,@cameronesposito,@notarealpigeon much love!! +06/26/2018,Comedians,@cameronesposito,watch the rest of this set FREE & donate to support @RAINN at https://t.co/mrdDRgIvPt +06/26/2018,Comedians,@cameronesposito,ive been asked if ‘rape jokes’ can be funny for yrs. A: joke about whatever u want but BE GOOD AT IT & assume there… https://t.co/MEocBWa9Cj +06/25/2018,Comedians,@cameronesposito,"You better BIRD + +- Cover Girl!!! - + +BIRD and Rap-ine-oooooh + +Do ur thing on the cover https://t.co/XpnVtL9lFc" +06/25/2018,Comedians,@cameronesposito,"shoutout to my long-haired butches + +i once walked amongst u https://t.co/qvCsM9MF3S" +06/25/2018,Comedians,@cameronesposito,"@designsponge @queerycast Grace! Keep going w/ ur work. + +I’m always following & I’m such a fan." +06/25/2018,Comedians,@cameronesposito,"RT @designsponge: This was so much fun. Talking about work, life, finding our own version of #pride and everything in between with @cameron…" +06/25/2018,Comedians,@cameronesposito,"@Felonious_munk i can do 28 pretty easily + +u have a strong foundation; now build!" +06/25/2018,Comedians,@cameronesposito,@Che3fNuggz NAME 37 LESBIANS +06/25/2018,Comedians,@cameronesposito,FACT: you can tell a straight man’s value by how many lesbian standup comics he can name +06/25/2018,Comedians,@cameronesposito,"RT @earwolf: Design*Sponge founder Grace Bonney (@designsponge) sits down with @cameronesposito to discuss her new magazine Good Company, s…" +06/25/2018,Comedians,@cameronesposito,Stoked ‘Rape Jokes’ is included as the only indie special on this list ✌️ https://t.co/kM6b73jFSW +06/25/2018,Comedians,@cameronesposito,@DaylorTavidson thanks Taylor. +06/25/2018,Comedians,@cameronesposito,@Jesse_Hirsch hey thanks Jesse. +06/25/2018,Comedians,@cameronesposito,@j_n_foster wow look at her. +06/24/2018,Comedians,@cameronesposito,@ConorWalshy @RAINN I know hahaha. +06/24/2018,Comedians,@cameronesposito,"In honor of Pride, here’s what it felt like to kiss a woman for the first time + +Watch the rest of my special ‘Rape… https://t.co/ZH4ksh95Nk" +06/24/2018,Comedians,@cameronesposito,"Last night there was a moment when rhea & I didn’t laugh but just said “that’s a really good joke.” + +Highest compli… https://t.co/Frs1H2i0bl" +06/24/2018,Comedians,@cameronesposito,"i refuse to not exist + +Or make myself smaller + +I’m up for listening and learning + +enjoying my time here + +And holding the door open" +06/24/2018,Comedians,@cameronesposito,"RT @ColinAnder: .@cameronesposito's new special is free to stream now, benefits @RAINN, and is a brilliant, thought-provoking, emotional an…" +06/24/2018,Comedians,@cameronesposito,@TheOpposition wow i can’t believe Jordan had Spike from Buffy as a guest. Big get!! +06/24/2018,Comedians,@cameronesposito,"RT @TheOpposition: .@cameronesposito explains why her new stand-up special ""Rape Jokes"" is so funny. ► https://t.co/gH72wK7lpL https://t.co…" +06/24/2018,Comedians,@cameronesposito,Got to be on my hometown radio w/ someone ive seen make a lot of art!! https://t.co/dnOOhrdeP4 +06/24/2018,Comedians,@cameronesposito,@anitasarkeesian thanks Anita! +06/24/2018,Comedians,@cameronesposito,"Finally, i remember the Speedos + +pls enjoy ur Pride, Chicago + +Send me photos of ur Speedos" +06/24/2018,Comedians,@cameronesposito,"this is a reminder for white ppl + +Obvs POC don’t need this white lesbian’s permission to exist" +06/24/2018,Comedians,@cameronesposito,"even at my first Pride, i noticed the division btwn the white dudes who lived in Boystown & POC who likely didn’t (… https://t.co/5W6FB34118" +06/24/2018,Comedians,@cameronesposito,i was still full-on Catholic. The bull-horned protestors w/ slur filled signs didn’t shock me but I was like “what… https://t.co/LHtagyZtFh +06/24/2018,Comedians,@cameronesposito,"my parents demanded that i not come out to my lil sis, then a young teen, & she wasn’t allowed to come w/ us to the… https://t.co/AY009YZEdN" +06/24/2018,Comedians,@cameronesposito,"When i was first coming out & my only access to the queer community was an L Word msg board, my older sister took m… https://t.co/kcyEHrhyd4" +06/24/2018,Comedians,@cameronesposito,@teganandsara 😘😘 +06/24/2018,Comedians,@cameronesposito,"Tonight: stream ‘Rape Jokes” free on https://t.co/mrdDRgIvPt + +Or tomorrow. Or Monday. + +And then donate to support @RAINN" +06/24/2018,Comedians,@cameronesposito,This Pride i hope u wear a rainbow bandana & are held next to a painting of yourself https://t.co/QAlD7Phiqo +06/23/2018,Comedians,@cameronesposito,"RT @junethomas: On this week's episode of The Waves, @c_cauterucci, @latifalyles, @veralynmedia, and I talked about the Carters' album, @ca…" +06/23/2018,Comedians,@cameronesposito,@trixiemattel @RheaButcher oh that was my “keep going” face +06/23/2018,Comedians,@cameronesposito,@trixiemattel @RheaButcher https://t.co/xm68fpnj9c +06/23/2018,Comedians,@cameronesposito,"i, a gay, refuse Sarah Sanders service in my bakery* + +also Kirstjen Nielsen + +And Stephen Miller + +*i don’t have a b… https://t.co/UalNFHZ9zV" +06/23/2018,Comedians,@cameronesposito,In ten yrs of standup & 15 yrs of professional comedy ive walked ppl once & it was earlier this yr bc i said tr*mp… https://t.co/xb7piNnJtF +06/22/2018,Comedians,@cameronesposito,"cannot believe i got to wear this outfit & say these words on tv + +Thanks @jordanklepper & @ComedyCentral https://t.co/c13643TwQr" +06/22/2018,Comedians,@cameronesposito,Blair & Rhea doing the work. ✊ https://t.co/yqn1OCfRdD +06/22/2018,Comedians,@cameronesposito,"@junethomas @c_cauterucci @latifalyles @veralynmedia this was rad to listen to! + +Thanks for the kind words." +06/22/2018,Comedians,@cameronesposito,"RT @JWhitePubRadio: Love that I got to talk to @cameronesposito about her new comedy special. Really fascinating convo about identity, surv…" +06/22/2018,Comedians,@cameronesposito,imagine having such a low opinion of women that u don’t think Melania can be criticized +06/22/2018,Comedians,@cameronesposito,"RT @RAINN: In her new comedy special (now with closed captioning), @cameronesposito discusses complex issues surrounding sexual violence, m…" +06/22/2018,Comedians,@cameronesposito,@leffjakin @thepinhook i love the Pinhook and I think the shows will def sell out - ur city is good indeed +06/22/2018,Comedians,@cameronesposito,"sooooo white folks: + +Call Senators. Be loud. Make sure ur ass is registered to vote & talk w/ ur family. + +Demand c… https://t.co/eU9lnyxUQf" +06/22/2018,Comedians,@cameronesposito,That thing where the president thinks he earned anything he has & that a crappy hotel and steak empire is worth pro… https://t.co/Ii8ztgIblh +06/22/2018,Comedians,@cameronesposito,Did u catch @jordanklepper & lil guest me on @TheOpposition tonight? We were adorable. https://t.co/SURfMdsYFR +06/22/2018,Comedians,@cameronesposito,"@TheOpposition I have a secret which is that u are kind & also nice + +Hahaha I’ve exposed u Mr Klepper + +And ur show" +06/22/2018,Comedians,@cameronesposito,"RT @chicagotribune: ""I thought of the title first,"" said comedian Cameron Esposito of her newest stand-up special. + +It’s called ""Rape Jokes…" +06/21/2018,Comedians,@cameronesposito,"RT @TheOpposition: Tonight's opponent is comedian and actor @cameronesposito. I prefer *my* Camerons ""Despacito."" https://t.co/KN6HTMhjCN" +06/21/2018,Comedians,@cameronesposito,"RT @HuffPost: ""It felt like this entire press cycle could potentially complete without ever exploring anything about the survivors."" –– @ca…" +06/21/2018,Comedians,@cameronesposito,"home tmo. wknd agenda for things to yell about w/ Rhea: + +- politics +- politics +- POLITICS +- Mackenzie Davis/Terminator set photos +- politics" +06/21/2018,Comedians,@cameronesposito,@lpolgreen Thanks Lydia. ‘ppreciate ya! +06/21/2018,Comedians,@cameronesposito,"@noahmichelson @RAINN Thank u Noah! Thanks for coming to see the show live, too. Cool of you." +06/21/2018,Comedians,@cameronesposito,RT @lpolgreen: Her hourlong comedy special “Rape Jokes” takes lessons from the Me Too movement as far as they will go. @cameronesposito is… +06/21/2018,Comedians,@cameronesposito,"Gun violence +Healthcare +Aging Boomer population +Mass incarceration +Automation replacing the worker +Integrating un… https://t.co/Ow7Fq64eyi" +06/21/2018,Comedians,@cameronesposito,@MaryKoCo @RAINN thanks Mary. (Sent from the east coast when this isn’t an ungodly early time) +06/21/2018,Comedians,@cameronesposito,@scalzi oh thank u sir! +06/21/2018,Comedians,@cameronesposito,@MaryKoCo @RAINN Mary! U are my friend & I like u! +06/21/2018,Comedians,@cameronesposito,"Today we hit $35k for @RAINN!! + +Stream ‘Rape Jokes’ free & donate if u can all via https://t.co/mrdDRgqUXV https://t.co/jIrIMLNsDi" +06/21/2018,Comedians,@cameronesposito,@rachelleetweets Thanks Rachel! +06/20/2018,Comedians,@cameronesposito,"@RheaButcher @RAINN Thanks for supporting me, human." +06/20/2018,Comedians,@cameronesposito,"RT @sealln: Thank you for this, @cameronesposito. Everyone watch. And donate! https://t.co/CmgPQoSTJM #rapejokes" +06/20/2018,Comedians,@cameronesposito,RT @smrtgrls: .@cameronesposito is using stand-up comedy to start a conversation about the difficult topic of sexual assault. All proceeds… +06/20/2018,Comedians,@cameronesposito,"Our jobs are: + +- CALL (202) 224-3121, enter your zip, state that u want Family Separation to end + +- MARCH June 30th… https://t.co/q1wIS0SVqP" +06/20/2018,Comedians,@cameronesposito,"Before standup, i worked at a home for kids who couldn’t be placed in foster care + +Vibrant, awesome kids & also war… https://t.co/OjcZ0VoWHU" +06/19/2018,Comedians,@cameronesposito,"RT @gibblertron: .@cameronesposito built this hilarious, touching performance on her personal trauma and is using that to help others and h…" +06/19/2018,Comedians,@cameronesposito,@gibblertron this is beautiful & thank u +06/19/2018,Comedians,@cameronesposito,I’m outta town so can u pls go see this human do standup tonight 8PM at @ucbtla?? I miss them. https://t.co/N3LF91JM31 +06/19/2018,Comedians,@cameronesposito,@ParkerMolloy not really in town - hanging w/ my folks in the burbs +06/19/2018,Comedians,@cameronesposito,A spot of brightness: pls enjoy my mom welcoming u to “Gayvy Pier” https://t.co/ih72p1Yulg +06/19/2018,Comedians,@cameronesposito,@kthawbaker great to meet you! +06/19/2018,Comedians,@cameronesposito,RT @UnapologeticAMC: Visit https://t.co/AwULsGMh39 to stream @cameronesposito’s new “Rape Jokes” special for free or donate to benefit @RAI… +06/19/2018,Comedians,@cameronesposito,took my dad to the @Cubs game & it was rained out but i got this photo of Theo Epstein & Dave Roberts 🤷‍♂️ https://t.co/SRlUAWWapp +06/19/2018,Comedians,@cameronesposito,I got to talk about my new special & why i think it’s important to focus on survivors on tv!! Watch tonight. https://t.co/Av3GWpKBpY +06/18/2018,Comedians,@cameronesposito,RT @brooklynvegan: Stream Cameron Esposito's 'Rape Jokes' special - it's free and you can purchase it to benefit RAINN: https://t.co/c8zhr5… +06/18/2018,Comedians,@cameronesposito,"‘Rape Jokes’ went live on my website one week ago today + +So far $30k raised for @RAINN + +My goal is $100k for rape… https://t.co/8gHEmos2AW" +06/18/2018,Comedians,@cameronesposito,@DueOrDie @RheaButcher 💜💜 always in ur corner +06/18/2018,Comedians,@cameronesposito,This week’s @queerycast guest is @Travon!! Second pic is evidence of how much i liked talking with him.… https://t.co/fF0ufpdkRV +06/18/2018,Comedians,@cameronesposito,"why i am an angry lesbian + +When I should be a furious one" +06/18/2018,Comedians,@cameronesposito,And our god is money. +06/18/2018,Comedians,@cameronesposito,"The U.S. is a + +1. Carry all pregnancies to term +2. But don’t expect support or insurance +3. And same sex couples… https://t.co/hpcDZyvyMR" +06/18/2018,Comedians,@cameronesposito,"👆posting in case this is helpful to anyone going thru shit w/ ur family of origin + +But also: if ur queer, ur my fam… https://t.co/Qu2vP7JJ0I" +06/18/2018,Comedians,@cameronesposito,"A few yrs ago i interviewed my dad about our relationship, Catholicism, my being gay. Father’s Day repost: +https://t.co/dECs490xMM" +06/17/2018,Comedians,@cameronesposito,"@JoCoCruise @RAINN Thank u, delightful cruise ship!" +06/17/2018,Comedians,@cameronesposito,follow-up: happy daddy’s day to me https://t.co/HGSKBCX7x5 +06/17/2018,Comedians,@cameronesposito,Happy Daddy’s Day to all butches. +06/17/2018,Comedians,@cameronesposito,RT @katemicucci: ❤️❤️❤️ Check out the wonderful @cameronesposito’s special and benefit @RAINN while you do! ❤️❤️ https://t.co/1N76sXYziU +06/17/2018,Comedians,@cameronesposito,@quietbonnie Hahahah amazing. +06/17/2018,Comedians,@cameronesposito,@ramona_von_punk @ayyy_bibii Bloomington +06/17/2018,Comedians,@cameronesposito,@DanEngler @RAINN @LALGBTCenter thanks Dan. +06/17/2018,Comedians,@cameronesposito,Feeling very welcome at this coffee shop in Indiana altho honestly i think it was scones that turned me https://t.co/IfwpwLk2Et +06/17/2018,Comedians,@cameronesposito,@shmemschmidt Ugh yes Carrie Fisher. +06/17/2018,Comedians,@cameronesposito,"RT @vulture: Watch @cameronesposito's new remarkable comedy special on rape jokes and sexual assault, here on @vulture https://t.co/pDKe8wh…" +06/17/2018,Comedians,@cameronesposito,"an older fella just told me i look like a young Denis Leary + +And I’m truly floored/grateful he saw me as the dude w… https://t.co/4Q7SBjHbik" +06/17/2018,Comedians,@cameronesposito,RT @laurenlapkus: Go watch @cameronesposito's new special and donate to @rainn!! https://t.co/zK5bHTV7h1 +06/16/2018,Comedians,@cameronesposito,"Me, when I ascend to heaven: https://t.co/zqgOUReZHl" +06/16/2018,Comedians,@cameronesposito,"@Galaxy_Allie @MsMagazine hey there! Followed u. + +Go ahead and DM me" +06/16/2018,Comedians,@cameronesposito,Had a great time talking w/ Larkin! https://t.co/6VlCMYTwCu +06/16/2018,Comedians,@cameronesposito,@amycbecker @RAINN thank u Amy. +06/16/2018,Comedians,@cameronesposito,@maureenjohnson @RAINN thnx Maureen! Appreciate u. +06/16/2018,Comedians,@cameronesposito,@CharmedChancer thanks for this Tristan! +06/16/2018,Comedians,@cameronesposito,"‘Rape Jokes’ now has captioning!! + +Stream free at https://t.co/mrdDRgqUXV https://t.co/FuJjDpsh5v" +06/16/2018,Comedians,@cameronesposito,"fellow white ppl: we ARE a country that separates black & brown children from parents + +that’s why telling POC to sh… https://t.co/T98Y0opUc5" +06/16/2018,Comedians,@cameronesposito,@caitlinrcruz wow congrats +06/16/2018,Comedians,@cameronesposito,@Pixiesnix @RAINN @IndieWire @Refinery29 @MotherJones @RealMickFoley definitely not weird. +06/16/2018,Comedians,@cameronesposito,@_AmyScanlon @RAINN hello to ur beautiful dog! +06/15/2018,Comedians,@cameronesposito,@Allison_Yvonne get over here! +06/15/2018,Comedians,@cameronesposito,"My standup special ‘Rape Jokes’ has raised $25k for @RAINN in 4 days + +It’s free on https://t.co/mrdDRgqUXV + +Give it… https://t.co/3Agyd9ZZfA" +06/15/2018,Comedians,@cameronesposito,@RheaButcher @RAINN guess what it’s now $25k 😎 +06/15/2018,Comedians,@cameronesposito,Dispatch from Indiana. It’s good to remember many businesses don’t want restrictive bathroom laws. https://t.co/HFuy07TDGu +06/15/2018,Comedians,@cameronesposito,"This wknd: Bloomington, IN + +And see you in July, Durham + +Lots of dates for fall. Info/tix here:… https://t.co/T2ws9mJO5J" +06/15/2018,Comedians,@cameronesposito,"RT @tweedmandan: At the end of @cameronesposito 's special, I simply refused to believe an hour had passed. I found myself scrolling back a…" +06/15/2018,Comedians,@cameronesposito,@CintaRose @RheaButcher wow we look like we love each other +06/15/2018,Comedians,@cameronesposito,"RT @wearewildfang: Go buy @cameronesposito's new standup special! It's heartfelt, brilliant and to top it off, all the proceeds go to @RAIN…" +06/15/2018,Comedians,@cameronesposito,@sierraackman this is EXACTLY RIGHT +06/15/2018,Comedians,@cameronesposito,"As Jesus said: “That’s not what the Bible means, asshole.” + +*this really applies to a lot" +06/15/2018,Comedians,@cameronesposito,"if offered the chance to go to the local queer bar, always always go https://t.co/HsLlXO8vEG" +06/15/2018,Comedians,@cameronesposito,@JenKirkman @jonahray @RAINN giving it a shot! +06/14/2018,Comedians,@cameronesposito,"Bloomington, IN! I’m in town all wknd + +Almost barfed going to the airport early this morn FOR YOU +https://t.co/KyvUlm3Lkp" +06/14/2018,Comedians,@cameronesposito,@janl Wow thanks for this Jan! +06/14/2018,Comedians,@cameronesposito,"You know I love you, @autostraddle. + +Thnx for covering ‘Rape Jokes’!! +https://t.co/XYRWIjjLV5" +06/14/2018,Comedians,@cameronesposito,@kyliesparks thanks Kylie! +06/14/2018,Comedians,@cameronesposito,@ElenaStofle Code is CAMERON +06/14/2018,Comedians,@cameronesposito,"@JustineEEgner @RAINN Whoa Justine; this is rad! + +where do u teach?" +06/14/2018,Comedians,@cameronesposito,"I’m floored by press for ‘Rape Jokes’ + +Stream free at https://t.co/mrdDRgIvPt + +Over $20k raised for @RAINN & rape c… https://t.co/IABSGjWQRs" +06/14/2018,Comedians,@cameronesposito,"RT @rosemakesart: A portrait of @cameronesposito, whose new work of comedy to benefit @RAINN just completely shattered me in all the best w…" +06/14/2018,Comedians,@cameronesposito,@rosemakesart @RAINN I love this! +06/14/2018,Comedians,@cameronesposito,"RT @janetvarney: Nice work, Ms. Esposito! https://t.co/Yo1gxiGnhn" +06/14/2018,Comedians,@cameronesposito,@SarahThyre I’d happily do cute bits instead +06/14/2018,Comedians,@cameronesposito,"RT @MikeBatesSBN: I watched this exceptionally funny +(free) special last night with my partner. This morning, she and I both made donation…" +06/14/2018,Comedians,@cameronesposito,@MikeBatesSBN hey thanks Mike +06/14/2018,Comedians,@cameronesposito,@showermanb thanks Brent. +06/14/2018,Comedians,@cameronesposito,@carolinefives that’s incredible. +06/14/2018,Comedians,@cameronesposito,"@ErinMayaDarke Erin! i loved meeting u today + +And thank u" +06/14/2018,Comedians,@cameronesposito,"i see u all tagging ur posts about ‘Rape Jokes’ #getintheway + +It’s beyond. Ur too much. I honestly didn’t know that… https://t.co/eozgl9ACcC" +06/14/2018,Comedians,@cameronesposito,"RT @Variety: Cameron Esposito on 'Rape Jokes,' her new comedy special tackling sexual assault and consent https://t.co/lBxGYQD9H0" +06/14/2018,Comedians,@cameronesposito,@mariabamfoo MARIA U R THE GREATEST +06/14/2018,Comedians,@cameronesposito,@livhewson thank u liv +06/14/2018,Comedians,@cameronesposito,@SmartAssJen @RAINN same my friend 💜 +06/13/2018,Comedians,@cameronesposito,"If i had a thesis for ‘Rape Jokes’ it’d be “she’s in control of her narrative, while challenging what it means to b… https://t.co/0qV2RUVqhN" +06/13/2018,Comedians,@cameronesposito,RT @teganandsara: Loved every minute of this. https://t.co/5zY7xE2HC0 +06/13/2018,Comedians,@cameronesposito,@SmartAssJen @RAINN Jen u just made me cry. +06/13/2018,Comedians,@cameronesposito,"RT @SmartAssJen: I saw Cam do this live and was floored. It covers a lot of ground, goes in unexpected directions, is damn funny throughout…" +06/13/2018,Comedians,@cameronesposito,"@teganandsara ugh u loved my art, artists i adore?!! + +Cool. That’s cool." +06/13/2018,Comedians,@cameronesposito,@JorCru thank u Jordan! +06/13/2018,Comedians,@cameronesposito,@bjcolangelo thanks BJ! +06/13/2018,Comedians,@cameronesposito,RT @TheAVClub: .@CameronEsposito’s Rape Jokes offers humor and empathy at a time when they’re most needed https://t.co/jzPqRI27Xn https://t… +06/13/2018,Comedians,@cameronesposito,RT @RheaButcher: My wife has raised $20k in 2 days putting out her completely independent special with NO NETWORK https://t.co/5CADLvDxLJ +06/13/2018,Comedians,@cameronesposito,@maureenjohnson thanks Maureen! +06/13/2018,Comedians,@cameronesposito,@carlylane thanks Carly! +06/13/2018,Comedians,@cameronesposito,@QueerXiChisme @RAINN yep! Working on it now. +06/13/2018,Comedians,@cameronesposito,"Stream my new special ‘Rape Jokes’ FREE or donate to benefit @rainn. + +So far $20k raised in 2 days!! + +Watch at… https://t.co/79yddTE7wv" +06/13/2018,Comedians,@cameronesposito,"@theadamgoldman @queerycast @tobinlow @_kathytu @SueYacka ooohh I’m gonna listen back to this, Adam + +Was a good chat!" +06/13/2018,Comedians,@cameronesposito,"RT @glaad: ""If you want to bust through but you don't want to hold the door, then I have nothing in common with you."" -@cameronesposito on…" +07/01/2018,Comedians,@WhitneyCummings,When did Instagram become Twitter? https://t.co/IMG3olcMQl +07/01/2018,Comedians,@WhitneyCummings,Please don’t forget I was on Tylenol PM by accident when I recorded this. https://t.co/kFkkJ4ZnIc +07/01/2018,Comedians,@WhitneyCummings,I love you. I’m so glad it’s over! ❤️ https://t.co/EN6zQDJiN3 +06/30/2018,Comedians,@WhitneyCummings,@marishannah Gah!!! Damn it! ❤️ +06/30/2018,Comedians,@WhitneyCummings,This made me cry so this day is already off to a banging start. https://t.co/jKlxc8B3B2 +06/30/2018,Comedians,@WhitneyCummings,🙌🏼Thank you 🙌🏼 https://t.co/h0bRAbXiNg +06/30/2018,Comedians,@WhitneyCummings,RT @billyeichner: We need to fight this with everything we’ve got. The vast majority of the country is Pro-Choice. And I can’t even imagine… +06/29/2018,Comedians,@WhitneyCummings,San Jose tickets are UP! https://t.co/L948Z0V5ug +06/28/2018,Comedians,@WhitneyCummings,💔 https://t.co/mEmhgFiQ4N +06/28/2018,Comedians,@WhitneyCummings,"RT @maddow: Real headline. + +https://t.co/SyRaPbgamC" +06/28/2018,Comedians,@WhitneyCummings,@robintran04 @TheoVon HAHAHAHAHAHAHAHAH +06/28/2018,Comedians,@WhitneyCummings,I took two Tylenol PM by accident and did Theo’s podcast. Enjoy! https://t.co/aIyKV4x4bR +06/27/2018,Comedians,@WhitneyCummings,"New York: tickets for July shows here. New material, old need to make drunk strangers laugh. https://t.co/Aruas7k0kq" +06/27/2018,Comedians,@WhitneyCummings,Is this administration one giant scam to get more people to buy blood pressure medication? +06/27/2018,Comedians,@WhitneyCummings,Okay yes I love the Handmaids Tale - that doesn’t mean I want to live in it. https://t.co/JkGnZbH088 +06/27/2018,Comedians,@WhitneyCummings,"This isn’t a party issue, this is a humanity issue. https://t.co/MME4Rhek96" +06/27/2018,Comedians,@WhitneyCummings,Well this made my day. Neurology and horses is my favorite combination of things next to Laverne and Shirley https://t.co/1yNQQ4H5Ep +06/27/2018,Comedians,@WhitneyCummings,🤦🏻‍♀️ https://t.co/r5NmXHPhtR +06/26/2018,Comedians,@WhitneyCummings,Melania is going to pay a second visit to immigration facilities and I’m on pins and needles about what she will we… https://t.co/vVE3NMVqLv +06/26/2018,Comedians,@WhitneyCummings,@GoodThymeHefe What is this company? +06/26/2018,Comedians,@WhitneyCummings,Lets go then. https://t.co/U12jhssGtO +06/26/2018,Comedians,@WhitneyCummings,I'm trying to find GOOD news online and so far this is all I've found https://t.co/2t4pNy7BlY +06/25/2018,Comedians,@WhitneyCummings,Now Walgreens sucks? I don’t know how much more i can take of this. +06/25/2018,Comedians,@WhitneyCummings,August 17/18 I’m doing shows in CHICAGO. Tix just went on sale my lovelies. https://t.co/TmzSK0qrwk +06/25/2018,Comedians,@WhitneyCummings,"So when we attack Trump, his approval rating goes up? 😞 https://t.co/hs5EbZmrII" +06/24/2018,Comedians,@WhitneyCummings,"Whoever is building these, please stop? https://t.co/SkaIMYiqO3" +06/24/2018,Comedians,@WhitneyCummings,Don’t know who made this...but exactly. https://t.co/UyTeM5pmxf +06/24/2018,Comedians,@WhitneyCummings,I didn’t realize how badly I needed this. https://t.co/fSDt6qOnnH +06/23/2018,Comedians,@WhitneyCummings,@carlyincontro HAHA that you noticed that! +06/23/2018,Comedians,@WhitneyCummings,Don’t cry! 😞 https://t.co/JnqXieeHe6 +06/22/2018,Comedians,@WhitneyCummings,"I’m starting to lose faith in CNN. It’s discouraging how click bait driven they’ve become, and now they aren’t even… https://t.co/SId1D5oBot" +06/22/2018,Comedians,@WhitneyCummings,Please sit in the front row. https://t.co/9f9dzEN6EC +06/22/2018,Comedians,@WhitneyCummings,Add to cart. https://t.co/TIglY89rQ1 +06/22/2018,Comedians,@WhitneyCummings,@dogtalesrescue hey I am doing shows there this weekend and would love to visit-possible? +06/22/2018,Comedians,@WhitneyCummings,@SarahKSilverman Is he from Gilead? +06/22/2018,Comedians,@WhitneyCummings,"Not gonna lie, I was a bit surprised to find out Melania shops at Zara. I'm a bit annoyed we have something in common." +06/22/2018,Comedians,@WhitneyCummings,I think the weirdest part of this jacket saga is that Melania was implying that at one point she did care? +06/21/2018,Comedians,@WhitneyCummings,Is this a joke? I literally can’t tell anymore. https://t.co/nOuPa1ufq6 +06/21/2018,Comedians,@WhitneyCummings,"If you're coming to Ontario shows this weekend, I will sign books if you bring them. I'll be there Friday, Saturday… https://t.co/fkkFrrqs5Q" +06/21/2018,Comedians,@WhitneyCummings,"There's no shortage of things we all need to read and watch, but this is worth the time. Take care of your body, be… https://t.co/SptEFFaIrV" +06/21/2018,Comedians,@WhitneyCummings,"I mean, I don't know why I'm even shocked anymore. Of course a pussy grabber would also be a baby snatcher." +06/21/2018,Comedians,@WhitneyCummings,"If you me thinking toddlers and parents should stay together makes me a “snowflake”, then... https://t.co/Tk7nNqeWfg" +06/20/2018,Comedians,@WhitneyCummings,"I may need to leave the internet. +https://t.co/i1OoTTjj6I" +06/20/2018,Comedians,@WhitneyCummings,For breaking news watch the Handmaids Tale https://t.co/rRfqMcqYA3 +06/20/2018,Comedians,@WhitneyCummings,Please call please call https://t.co/DATskZnvBz +06/20/2018,Comedians,@WhitneyCummings,👏🙌🏼 @KamalaHarris https://t.co/5IrlQqSlFo +06/20/2018,Comedians,@WhitneyCummings,I tend not to retweet too much because I assume anyone who follows me already knows this is sickening but what the… https://t.co/4B1UHMAJUa +06/20/2018,Comedians,@WhitneyCummings,Child actors have parents on set at all times and can only work in 8 hour increments. At least have the decency to… https://t.co/oFYM0rzSsm +06/19/2018,Comedians,@WhitneyCummings,Unconscionable. https://t.co/l5CLH5GksT +06/19/2018,Comedians,@WhitneyCummings,Separating children from their parents is traumatizing whether they’re put in cages or not. So yes the cages should… https://t.co/e5heuqYdAD +06/18/2018,Comedians,@WhitneyCummings,"Who is coming to Ontario, CA shows this weekend? https://t.co/QNmhZrOr1M" +06/17/2018,Comedians,@WhitneyCummings,@KathiaVC Hahahahahhaah +06/17/2018,Comedians,@WhitneyCummings,RT @joerogan: ‘America is better than this’: What a doctor saw in a Texas shelter for migrant children https://t.co/4fqHNpcHIy +06/16/2018,Comedians,@WhitneyCummings,"Next weekend I’ll be doing and hour of new material in Ontario - an hour from LA. Come for the comedy, stay for the… https://t.co/T0WvsTIo1q" +06/16/2018,Comedians,@WhitneyCummings,@kayeezus_ Got it now delete +06/16/2018,Comedians,@WhitneyCummings,@kayeezus_ Send me your address +06/15/2018,Comedians,@WhitneyCummings,"I’ll be performing in San Jose in August - all new material, all same weird dynamic of telling my secrets to strang… https://t.co/jwLlRr9dTt" +06/15/2018,Comedians,@WhitneyCummings,IHOB? Whoever came up with this new name please STOB making decisions +06/15/2018,Comedians,@WhitneyCummings,So we are just Gilead now? https://t.co/KgDr8shHG0 +06/15/2018,Comedians,@WhitneyCummings,It’s back up on digital 7/3! Right now it’s on planes 👋🏻 https://t.co/fbxVF2vXxU +06/15/2018,Comedians,@WhitneyCummings,@tiffanyredford @amazon @iTunes It’s back up on 7/3! It’s on planes right now! +06/14/2018,Comedians,@WhitneyCummings,@SebastianComedy Is that your house? +06/14/2018,Comedians,@WhitneyCummings,San Diego shows are sold out. Thank you my lovers. I will be down there again in September for the Kaboo festival a… https://t.co/Uu3we3RL3s +06/14/2018,Comedians,@WhitneyCummings,Just added shows in SAN JOSE the second week of August. who is coming? tix here. https://t.co/TIqO1siVAz +06/14/2018,Comedians,@WhitneyCummings,"WAIT. Did everyone but me know that Handmaids Tale was a MOVIE in 1990? +https://t.co/eQUgA7Ff8A" +06/14/2018,Comedians,@WhitneyCummings,New Handmaids Tale = me crying alone in my sports bra. This is all your fault @maxminghella https://t.co/1HQiMzk3Jl +06/13/2018,Comedians,@WhitneyCummings,Should we just start calling Ivanka Trump Mrs. Waterford? (IF YOU GET THIS YOU GET ME) +06/13/2018,Comedians,@WhitneyCummings,My “daily mix” on Spotify is really holding up a mirror I’d rather not look in +06/13/2018,Comedians,@WhitneyCummings,I never thought the day would come where I liked Delta. @nealbrennan https://t.co/qL1cZpNIEx +06/12/2018,Comedians,@WhitneyCummings,I’m performing @KAABOODelMar on SAT SEPT 15! Single and three-day passes are available at https://t.co/1h79u7PaEv… https://t.co/2bMFnJap4s +06/12/2018,Comedians,@WhitneyCummings,My bar for sanity has gotten so low I actually thought Dennis Rodman was making some sense. +06/11/2018,Comedians,@WhitneyCummings,The Trump administration just dropped protections for domestic violence victims. I would give anything for this to have surprised me. +06/11/2018,Comedians,@WhitneyCummings,"Come see me and my pals do some LOLs in Pasadena, CA June 27. https://t.co/lTFpda44tW https://t.co/k5nbZFEa3m" +06/11/2018,Comedians,@WhitneyCummings,"Per usual, I'm sorry about something. The Female Brain is now on planes, so not on iTunes and Amazon, but it will b… https://t.co/OtepktKp87" +06/11/2018,Comedians,@WhitneyCummings,The Parkland students singing Seasons Of Love just wrecked me so hard-goodbye forever dry eyes +06/11/2018,Comedians,@WhitneyCummings,"I can't with this. +https://t.co/4dIrb2znCh" +06/10/2018,Comedians,@WhitneyCummings,"Delta, in the past we’ve certainly had our differences, but now that you’re showing The Female Brain, I’ll forgive… https://t.co/7tAiTq6zeE" +06/10/2018,Comedians,@WhitneyCummings,@err_bear8 I love this! +06/09/2018,Comedians,@WhitneyCummings,When is United just going to admit that it’s Southwest? +06/09/2018,Comedians,@WhitneyCummings,Snippets of it are on my Instagram story 👍🏼 https://t.co/GQk4ExlIEW +06/08/2018,Comedians,@WhitneyCummings,Where did we land on muting people’s instagrams? Can we do that now? Need to know because it’s ruining some of my friendships thanks! +06/08/2018,Comedians,@WhitneyCummings,"PASADENA, CA. I'll be working on New Material with some pals this Sunday at the Ice House at 9pm. Come, let's navig… https://t.co/RDR9aaxeMl" +06/08/2018,Comedians,@WhitneyCummings,This is important. https://t.co/cv01WedUlc +06/07/2018,Comedians,@WhitneyCummings,Please consider signing this 🦄 https://t.co/usXRhLxVqI +06/07/2018,Comedians,@WhitneyCummings,Well at least I got this pal out of that whole mess. @sarahchalke https://t.co/5ITvW5C5F3 +06/07/2018,Comedians,@WhitneyCummings,@marisamode YES I WILL! CAN'T WAIT! +06/06/2018,Comedians,@WhitneyCummings,"San Diego, I'll be performing in you in two weekends, so come, let's be sunburnt and laugh together. Tix here https://t.co/aUiddxCD29" +06/06/2018,Comedians,@WhitneyCummings,@inthehenhouse @Variety No women are available they all have shows! +06/05/2018,Comedians,@WhitneyCummings,"That said, all man-babies are welcome at my shows! https://t.co/0bJbzLdHpm" +06/05/2018,Comedians,@WhitneyCummings,Don’t panic everyone. You can still find women in swimsuits on instagram whenever you want. https://t.co/aacRFldpgt +06/04/2018,Comedians,@WhitneyCummings,Every day on Facebook https://t.co/W9HCO3veql +06/03/2018,Comedians,@WhitneyCummings,Should we just start calling Melania OfDonald? +06/03/2018,Comedians,@WhitneyCummings,Weddings are super fun if you love hearing people talk about what time their flight got in +06/03/2018,Comedians,@WhitneyCummings,@Shteyngart I’m opening a competitor across the street called Beauty and the Yeast +06/03/2018,Comedians,@WhitneyCummings,@NikkiGlaser It’s the end of us +06/03/2018,Comedians,@WhitneyCummings,I have a feeling “active now” on instagram is going to ruin a couple relationships +06/03/2018,Comedians,@WhitneyCummings,What happened to stores having things? https://t.co/Oc8t6jqAIG +06/03/2018,Comedians,@WhitneyCummings,@msmashaarielle @BNBuzz @amazonprimenow Sorry! +06/02/2018,Comedians,@WhitneyCummings,This is the only way I can get through the Handmaids Tale without a complete emotional meltdown https://t.co/XsqJtfMdMI +06/02/2018,Comedians,@WhitneyCummings,I really feel like I cracked Instagram Live. https://t.co/kiX77y9yo1 +06/02/2018,Comedians,@WhitneyCummings,Why does throwing phones at walls feel so good? +06/01/2018,Comedians,@WhitneyCummings,RT @lcmoser: The thing that’s most fascinating about Samantha Bee is that 4600 people died in Puerto Rico. +06/01/2018,Comedians,@WhitneyCummings,@SebastianComedy This is off brand to say the least +05/31/2018,Comedians,@WhitneyCummings,@lizastrof Lol +05/30/2018,Comedians,@WhitneyCummings,"RT @Dictionarycom: The name Ambien is thought to come from the word ""ambient"" or similar words in French. Ambient does not mean ""prone to m…" +05/29/2018,Comedians,@WhitneyCummings,I love you Sara. https://t.co/77tHCzb29H +05/29/2018,Comedians,@WhitneyCummings,@MsDafneRuiz Yes! I love this! +05/28/2018,Comedians,@WhitneyCummings,thank you to everyone Tweeting me that they are watching The Female Brain today! Weird way to celebrate Memorial da… https://t.co/1lUCIv5kfm +05/28/2018,Comedians,@WhitneyCummings,I don’t program names into my phone because I like the thrill of getting texts like “I miss you” from some random number +05/28/2018,Comedians,@WhitneyCummings,Be nice to yourself! Being mean to yourself is so 90s. https://t.co/hVs83QTLe3 +05/26/2018,Comedians,@WhitneyCummings,@mke2112 Genius +05/26/2018,Comedians,@WhitneyCummings,AND he misspells my name?! https://t.co/6WoqSE8Zyv +05/26/2018,Comedians,@WhitneyCummings,🔥first date shirt https://t.co/AQQkoDsUzz +05/26/2018,Comedians,@WhitneyCummings,This is the greatest compliment I could ever get. https://t.co/XrrlDDG7uV +05/25/2018,Comedians,@WhitneyCummings,I just voted by mail and it’s very very easy so there is no excuse not to vote my lovers. Democracy is sexy 😛 https://t.co/7OGVAjv2mx +05/25/2018,Comedians,@WhitneyCummings,"OXNARD, CA. next weekend i'll be working on my new hour in your great city. also where is OXNARD? https://t.co/sKi0jaPbSU" +05/24/2018,Comedians,@WhitneyCummings,New Handmaids Tale! @maxminghella you did this! https://t.co/NehuRSCtB0 +05/23/2018,Comedians,@WhitneyCummings,I’m working on my new hour of stand up in NYC in July thank the good lord https://t.co/QNmhZrOr1M https://t.co/Ms3Xfb8YIE +05/23/2018,Comedians,@WhitneyCummings,If you had told me that the little toddlerl who I loved on Full House when I was ten would be charging me 200 dolla… https://t.co/rJpZkW1D2O +05/22/2018,Comedians,@WhitneyCummings,👋 https://t.co/7PW88A2PGL +05/20/2018,Comedians,@WhitneyCummings,@err_bear8 I LOVE YOU! what an honor to meet you. +05/19/2018,Comedians,@WhitneyCummings,Pre show ritual: hurt myself. https://t.co/ufLGKCHuHy +05/19/2018,Comedians,@WhitneyCummings,@nealbrennan You can’t be stopped! +05/18/2018,Comedians,@WhitneyCummings,A map of the shootings since Sandy Hook. Stay angry. https://t.co/3seFnV82IZ +05/18/2018,Comedians,@WhitneyCummings,"If you’re going to troll me about my feet, please just do me a favor and unfollow me. My feet are a size ten and ha… https://t.co/H3ZglndZm4" +05/17/2018,Comedians,@WhitneyCummings,I was just given this fruit plate. Is this sexual harassment? https://t.co/dgOfepECfL +05/17/2018,Comedians,@WhitneyCummings,@bluechuck49 To attack women’s biology and decision to have kids are not is not a left v right issue-it’s a human i… https://t.co/c93mrheBPn +05/17/2018,Comedians,@WhitneyCummings,@err_bear8 Come up after the show! +05/17/2018,Comedians,@WhitneyCummings,@doctorcherokee She apologized for that. focus on the other 30 years of her career as well. If people don’t want to… https://t.co/cYwD4QKn7H +05/17/2018,Comedians,@WhitneyCummings,@JoshRadnor @benleemusic @Qantas It’s so fancy! +05/17/2018,Comedians,@WhitneyCummings,@MelissaMermaid @RoseanneOnABC I was the liberal voice on the show +05/16/2018,Comedians,@WhitneyCummings,Regarding Laurel and Yanny: I hear the dress is blue +05/16/2018,Comedians,@WhitneyCummings,@johndfountain @PBImprov Yay +05/16/2018,Comedians,@WhitneyCummings,Be careful how fun you come off on instagram—you’re really setting yourself up for being underwhelming in person 👍🏼 +05/15/2018,Comedians,@WhitneyCummings,@kevingchristy Nightmare +05/15/2018,Comedians,@WhitneyCummings,I will sign books if y’all bring them to shows. See what cities I’m coming to on my website obvs. Who is coming to… https://t.co/YeOPTYcnhq +05/15/2018,Comedians,@WhitneyCummings,If you get this joke I love you. https://t.co/QEiaS7QI72 +05/14/2018,Comedians,@WhitneyCummings,@betsy7b golden goose +05/13/2018,Comedians,@WhitneyCummings,I can’t wait for the day that my kid wishes me a happy Mother’s Day via text after I spent tens of thousands of dollars on their education. +05/13/2018,Comedians,@WhitneyCummings,It’s nice to see so many of my friends posting how much they love their mom when all they do with me is complain about her 👍🏼 +05/11/2018,Comedians,@WhitneyCummings,"@MsJuneDiane I just spent some time on that guys Twitter page. His bio is just ""Seriously?!"" So. You won that round." +05/11/2018,Comedians,@WhitneyCummings,"Feminism just means women want suuuuper basic things like respect, safety, and to earn the same as men for the same… https://t.co/fktWqX7jd2" +05/11/2018,Comedians,@WhitneyCummings,"Fans freaking out that their show gets cancelled, but won’t watch the show when it airs, which is what makes it cancelled 🙄" +05/10/2018,Comedians,@WhitneyCummings,You can’t fart on a plane and have bad breath. You gotta pick one. +05/09/2018,Comedians,@WhitneyCummings,I feel like we are gonna reach a point where you text someone “how are you?” and they’ll just respond “link in bio” +05/09/2018,Comedians,@WhitneyCummings,Whenever people on twitter troll comedians I just want to yell at them “they’re giving you jokes for free!” What ot… https://t.co/e2FFEk0PHa +05/09/2018,Comedians,@WhitneyCummings,@nealbrennan God damn it now i have to go read whatever that is +05/09/2018,Comedians,@WhitneyCummings,@Mychasiw The late shows yes! +05/09/2018,Comedians,@WhitneyCummings,@FeldyNBCS you should be on list +05/09/2018,Comedians,@WhitneyCummings,@deandelray @CobbsComedyClub DUDE THANK YOU! I'LL BE WITH THE ONE AND ONLY @kevingchristy +05/09/2018,Comedians,@WhitneyCummings,"Let's stop eating palm oil? +https://t.co/cZcQ1eiyU5" +05/09/2018,Comedians,@WhitneyCummings,@FeldyNBCS Is it sold out? I’ll put your name on the list +05/09/2018,Comedians,@WhitneyCummings,@sirgregmoore iTunes! +05/09/2018,Comedians,@WhitneyCummings,Twitter making me angry about politics makes me miss the good ole days when twitter made me angry about people post… https://t.co/Gh2oUrlElw +05/08/2018,Comedians,@WhitneyCummings,Arizona. I’ll be running new material in your hot as hell state this summer. Tix avail now if you’re into comedy in… https://t.co/ogTp4xD2a4 +05/08/2018,Comedians,@WhitneyCummings,@fadedcalic0jack What! +05/08/2018,Comedians,@WhitneyCummings,"To the guy who just tweeted at me “I’m so sick of feminism.” Copy that, but think of feminism as women trying to ma… https://t.co/QVHxbreHEe" +05/07/2018,Comedians,@WhitneyCummings,Melania’s campaign for kids is called “Be Best.” Does she mean “Be THE Best?” Or is she just approaching grammar th… https://t.co/VtPYoF2Uhz +05/07/2018,Comedians,@WhitneyCummings,@shannonrwatts @Alyssa_Milano @NRA Sickening. +05/06/2018,Comedians,@WhitneyCummings,Trumps catch phrase used to be “you’re fired!” Now it’s “please don’t quit” +05/06/2018,Comedians,@WhitneyCummings,Anyone else feeling weirdly cat called by Instagram filters recently? https://t.co/5BixWbPqaf +05/05/2018,Comedians,@WhitneyCummings,"San Fran shows are next weekend! Let’s LOL, shall we? https://t.co/1pCBnHZHlO" +05/05/2018,Comedians,@WhitneyCummings,@kevingchristy You two got a lot of posts out of this face time sesh-congrats! +05/05/2018,Comedians,@WhitneyCummings,@Khushbu_Juneja What is the delay?! Let me know I you have a problem and I’ll send you one - dm your address +05/05/2018,Comedians,@WhitneyCummings,"I finished it in about 3,700 sittings🙋🏻‍♀️ https://t.co/UjbRBcJIud" +05/05/2018,Comedians,@WhitneyCummings,@DJWOLFD reming me closer to the date +05/05/2018,Comedians,@WhitneyCummings,@nealbrennan wasn't the pint that the audience is kind of the reviewer? +05/05/2018,Comedians,@WhitneyCummings,Is anyone else having insta accounts in their feed that you never chose to follow? There’s no way I followed this m… https://t.co/R04UjixshX +05/05/2018,Comedians,@WhitneyCummings,"The Kentucky Derby is terrible. This is a day that always hurts my heart. +https://t.co/gPYM0aoc85" +05/05/2018,Comedians,@WhitneyCummings,"I know everyone is upset DJ Khaled won’t go down on his wife, but i feel like that isn’t close to the biggest disap… https://t.co/s8cbePiCq0" +05/04/2018,Comedians,@WhitneyCummings,@tonya_nance thank u +05/04/2018,Comedians,@WhitneyCummings,@juliebeann_ grinberg method +05/04/2018,Comedians,@WhitneyCummings,"To the guy who was texting for most of the Bruce Springsteen Broadway show and ruined it for many people, including… https://t.co/yjsXzPHq7q" +05/04/2018,Comedians,@WhitneyCummings,@KateUpton @RuPaulsDragRace I am jealous +05/04/2018,Comedians,@WhitneyCummings,@brizmullen Yay! +05/03/2018,Comedians,@WhitneyCummings,@nealbrennan I’m dying to know why you thought of this +05/02/2018,Comedians,@WhitneyCummings,Why does Trumps doctor look like guy who puts up tents at Lollapalooza https://t.co/auc42vy1u2 +05/02/2018,Comedians,@WhitneyCummings,"I feel like the best way to get even with Kanye is to say “sit down, be humble.”" +05/02/2018,Comedians,@WhitneyCummings,"Kanye says “the world is my therapist."" No buddy, the world is why you get a therapist." +05/01/2018,Comedians,@WhitneyCummings,Kanye's meltdown is making me miss Britney's meltdown +05/01/2018,Comedians,@WhitneyCummings,"slavery wasn't a choice, but not buying Kanye's music anymore is?" +05/01/2018,Comedians,@WhitneyCummings,"I THINK this is a compliment. If you didn’t mean for it to be, thanks anyway! https://t.co/edtU4R3c2D" +05/01/2018,Comedians,@WhitneyCummings,"I realize I am a child but this was in my horoscope and it made me laugh: ""Uranus is usually explosive""" +04/30/2018,Comedians,@WhitneyCummings,"if conservatives want liberals to stop making fun of them so much, maybe stop doing so many ridiculous things that can be made fun of?" +04/30/2018,Comedians,@WhitneyCummings,"maybe if the journalists who were so offended by @michelleisawolf did their jobs as well as she did hers, people wo… https://t.co/PPGojALfkV" +04/30/2018,Comedians,@WhitneyCummings,I wish the right was half as outraged about school shootings as they are about Michelles jokes. +04/30/2018,Comedians,@WhitneyCummings,"who is coming to the San Fran shows and what should I do during the day while I'm there? +https://t.co/v93ZAWoAvR https://t.co/9tF7KxHWup" +04/30/2018,Comedians,@WhitneyCummings,"I think conservatives are so mad at Michelle Wolf because they realized that when liberals play their insult game,… https://t.co/2KzPSqKhFW" +04/30/2018,Comedians,@WhitneyCummings,It's so funny to me to picture Dennis Miller trying to write jokes about Michelle Wolf. +04/30/2018,Comedians,@WhitneyCummings,"I think conservatives are so mad at Michelle Wolf because they realized that when liberals play your insult game, w… https://t.co/srlrNl7yrQ" +04/30/2018,Comedians,@WhitneyCummings,"I know other people have mentioned this already, but in case you want to be mad at Michelle Wolf about talking abou… https://t.co/PQRVs1YInu" +04/30/2018,Comedians,@WhitneyCummings,Feminism isn't about walking on eggshells around other women that are doing silly things and giving them a free pas… https://t.co/9mHwCffvbT +04/30/2018,Comedians,@WhitneyCummings,Of course conservatives are upset about Michelle Wolf. They haven’t heard the truth in so long they forgot how rough it can be +04/29/2018,Comedians,@WhitneyCummings,Dragon Energy sounds like a shitty caffeine drink I would have paired with Popov vodka when I was 20 +04/29/2018,Comedians,@WhitneyCummings,@b_raeholla Yay! +04/29/2018,Comedians,@WhitneyCummings,I like you. https://t.co/vLQgJATDCr +04/29/2018,Comedians,@WhitneyCummings,@andrew_harmon Send me that video! +04/29/2018,Comedians,@WhitneyCummings,@andrew_harmon Hahahah amazing! +04/29/2018,Comedians,@WhitneyCummings,@karlikko @kevingchristy +06/19/2018,Comedians,@iamsambee,RT @FullFrontalSamB: A quick refresher. https://t.co/vo2TT9xiz6 +05/31/2018,Comedians,@iamsambee,I would like to sincerely apologize to Ivanka Trump and to my viewers for using an expletive on my show to describe… https://t.co/bwphm63ZAb +05/26/2018,Comedians,@iamsambee,RT @AllanaHarkin: .@FullFrontalSamB has been here for 7 hours waiting for the results. EXCITED!!! #repealthe8th #irelandreferendum #ta http… +05/25/2018,Comedians,@iamsambee,RT @FullFrontalSamB: Get your official Sam/Kim peace summit coin! It's definitely going to happen. https://t.co/fPALCv9KgK +05/23/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: And a fuck ton of women who will fight you. +https://t.co/fMx95ORTT9" +05/09/2018,Comedians,@iamsambee,"@SebGorka Aw, I thought we were friends 😥 https://t.co/P4qNZj2C5M" +05/01/2018,Comedians,@iamsambee,"When my BFF @davidduchovny told me he was writing a book about a smart, funny woman living in New York City I assum… https://t.co/vButUaao5R" +04/30/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: See @michelleisawolf, this is how you tell a non-offensive joke that everyone likes. https://t.co/JCQ3ii1h7H" +04/16/2018,Comedians,@iamsambee,RT @FullFrontalSamB: TONIGHT ON HANNITY: Are the endangered rhinos at the zoo TOO horny? +04/16/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: ""Jesus is my co-counsel."" https://t.co/coYCkk9aMv" +04/10/2018,Comedians,@iamsambee,RT @FullFrontalSamB: I don’t take normal #NationalLibraryWeek photos... https://t.co/ZFvtGQ8erT +03/29/2018,Comedians,@iamsambee,RT @FullFrontalSamB: There are many ways to help Puerto Rico. Buying a t-shirt from https://t.co/Z97dKW4Amp or moving your t-shirt producti… +03/28/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Thanks! We're pleased, too! #GreatAmericanPuertoRico https://t.co/z82w59N47t" +03/28/2018,Comedians,@iamsambee,My husband @jonesinforjason is a G-D force of nature and the season finale of @DetourTBS is 🔥 Tonight at 10:30 on @TBSnetwork. +03/24/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: We’re here and we have signs, chargers and love. #marchforourlives #neveragain #WeCallBS https://t.co/QweAQ1DpUq" +03/07/2018,Comedians,@iamsambee,Tonight’s @DetourTBS is in no way inspired by my actual marriage to @jonesinforjason. I hope. 10:30/9:30c on @TBSNetwork #getsome +02/28/2018,Comedians,@iamsambee,RT @FullFrontalSamB: When you hear Hope Hicks is resigning after testifying for just 8 hours. https://t.co/8POqm0Hzag +02/26/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 🤔 https://t.co/ZNU9b7s73B +02/13/2018,Comedians,@iamsambee,"Tonight on @DetourTBS @ToddPalinUSA fights @jonesinforjason and it wasn’t because of something I said on @FullFrontalSamB! +10:30 on @tbs" +02/12/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Dear @realdonaldtrump, hate to interrupt you while you're planning your big parade, but wanted to update you on the po…" +02/12/2018,Comedians,@iamsambee,RT @FullFrontalSamB: We're shooting a special in #PuertoRico and this happened. Not sure if there are enough paper towels to fix it. #black… +01/30/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 1. Denial 2. Guilt 3. Anger 4. Depression 5. Acceptance https://t.co/CH3t5z2WAs +01/24/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: New season of #TheDetour starts TONIGHT, starring the amazing @NatalieZea and Sam’s babysitter @jonesinforjason! Tune…" +01/15/2018,Comedians,@iamsambee,RT @FullFrontalSamB: 1) You would have called for him to be fired. 2) You wouldn't have rented an apartment to him. 3) You call the people… +01/15/2018,Comedians,@iamsambee,"RT @FullFrontalSamB: Three months ago, you walked out of an event in disgust because of a non-violent protest by black athletes. +https://t.…" +01/10/2018,Comedians,@iamsambee,Emissaries of peace @michaelsrubens @AllanaHarkin @ashleyn1cole @amy_hoggart Don’t forget to bring me back souvenirs! #apologyrace +01/10/2018,Comedians,@iamsambee,For 2 weeks we’ll go anywhere an apology is needed. Hint: it’s a lot of places #apologyrace https://t.co/JURMM961Cz +12/15/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Hey @PressSec were so excited about you and @AprilDRyan's pie conversation we wanted to share our favorite recipe! htt… +12/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Office cake is how we self care. Thanks @SenGillibrand! https://t.co/EoELAltzvk +12/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: May this tweet be @SenGillibrand's superhero origin story and ignite her 2020 campaign to replace your sexist ass. 🙏 h… +12/01/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Oh we are saying Merry Christmas now! https://t.co/JMS02GU16N +11/30/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We know. https://t.co/DG0qQxmp55 +11/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Our friend @JakeTapper is hosting an auction for the troops! Lots of pretty good items and one just absolutely excepti… +10/12/2017,Comedians,@iamsambee,RT @AllanaHarkin: Lit. @FullFrontalSamB https://t.co/lR7Q0iVe3r +10/08/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: “...And also because the cheerleaders made me feel wrong in my bathing suit area.” +https://t.co/ck1iAJ2amT" +10/03/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Republicans: Kneeling for the National Anthem is offensive. +Trump: What if I throw paper towels at hurricane survivor…" +09/29/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Safe travels, Secretary Price! +https://t.co/z2BIkKByo5" +09/29/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We've got to get #BigWater out of politics. https://t.co/rk7KKZoO97 +09/29/2017,Comedians,@iamsambee,@StephenAtHome @nickkroll This photo brought to you by Sun-In ™ and my grandma’s Liz Claiborne separates. #PuberMe… https://t.co/GxJPSL1VFv +09/27/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Lock her up. +https://t.co/MRMah4ibyt" +09/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Trump to Puerto Rico: See you next Tuesday https://t.co/pc7dLNbw4R +09/25/2017,Comedians,@iamsambee,"Everybody watch @TheOpposition tonight at 11:30 on Comedy Central, featuring my Mortal Enemy @jordanklepper" +09/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Just making sure we’ve got this straight. https://t.co/2Xs9eUQJMs +09/24/2017,Comedians,@iamsambee,"RT @BlitznBeans: * New Freedom of Speech Hours: + +Monday - Friday: 7pm - 7am + +Saturday and Sunday - CLOSED FOR GOLF + +(*does not apply to naz…" +09/22/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Wondering how you can help the people of Mexico and Puerto Rico? We were too, so we did some research. +https://t.co/YT…" +09/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We sent @AllanaHarkin and @MichaelsRubens to Netroots to find hope for 2018 and/or lean in to our misery. Produced by… +09/14/2017,Comedians,@iamsambee,RT @FullFrontalSamB: BREAKING: @missbreton's “Who Is Paying For The Wall” list has been updated. Please make a note. https://t.co/78mYaPtVvm +09/12/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Please stop circulating this image. It has been reported to Twitter and support has been contacted. https://t.co/nLuz4… +09/09/2017,Comedians,@iamsambee,@Travon AAAAAAHHHHH I LOVE IT! +09/06/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Savage @POTUS subtweet from @FLOTUS. https://t.co/rFSbC0G950 +08/18/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Leaving to spend more time with his pets. https://t.co/ClfrJXte8b +08/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Punching Nazis doesn't help. But you can put that energy somewhere that does. Feels just as good, we swear. +https://t.…" +08/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meet the Iraqi women who are queens of the land, bosses of alllll the shit, and whose fearlessness inspired us. Produc…" +08/04/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We went to the one place where Trump is universally beloved: Iraq. Produced by @RazanGhalayini_ #SamanthaBee https://… +08/03/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Sam went all the way to Iraq and met a Bernie Bro. Tune in tonight at 10:30/9:30c on TBS for more surprises from her t… +07/31/2017,Comedians,@iamsambee,RT @JMunozActor: Something's brewing....@FullFrontalSamB https://t.co/hobEzqVBY0 +07/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: .@Scaramucci, you forgot to delete this one. +https://t.co/w6ZWv57MeP" +07/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: After consultation with our staff, here is our current statement regarding @POTUS's transgender service tweets. ""FUCK…" +07/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meanwhile, at Full Frontal... https://t.co/qyDYmfM831" +07/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: “Sean Spicer crawled to freedom through five hundred yards of shit smelling foulness I can’t even imagine…” https://t.… +07/17/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Congratulations on Doctor Who, ladies, but stay vigilant. We’ve got a lot more work to do. https://t.co/eWALnfoJ8o" +07/16/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Hey @Delta, heard you ruined some poor woman's life. #MoreLegroomForNanCoulson +https://t.co/1NxkVeSFhD" +07/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Congrats, Beyoncé! Three gorgeous babies! 🙏🏽❤️👨🏽👩🏽👧🏽👶🏾👶🏾👨🏼 https://t.co/7EUiwwa1BP" +07/14/2017,Comedians,@iamsambee,I'll be chatting with my good friend @katiecouric on July 22nd LIVE in Central Park at #OZYFEST - get your tickets… https://t.co/QmcsnGk3QS +07/13/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Best day at work ever! Thanks to our team, our fans, and all the #NastyWomen and Thundercunts, wherever you are. #Emmy…" +06/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: No @PressSec at this White House briefing?? What are we supposed to do with this puppet then? https://t.co/85XwbMRd9n +06/20/2017,Comedians,@iamsambee,@AllanaHarkin @ashleyn1cole @michaelsrubens too late +06/20/2017,Comedians,@iamsambee,People you should definitely know--the BEST people @AllanaHarkin @ashleyn1cole @michaelsrubens https://t.co/5b5RcxpR8M +06/15/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: .@HannahAWright doesn’t normally reply to PR emails, but... https://t.co/0Up7rLrrvk" +06/02/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Thanks for all the new seasons, @POTUS and @ScottPruittOK! +https://t.co/7ail1hQL7i" +05/31/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Oh, hi @SenFranken! (Psst, new show tonight.) https://t.co/T1ygH2M4g2" +05/26/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""They may even call you a nasty woman."" Yasssss, @HillaryClinton. https://t.co/AFLBGeNGZs" +05/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Gianforte Campaign Statement (First Draft) https://t.co/f8pHrc7GBk +05/24/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""Can you please not post this on any social media? I don’t want my boss seeing.” - Pope Francis https://t.co/o4IKtD16Oj" +05/12/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: If you enjoyed the #NotTheWHCD, it’s because of @kevermantweets and @KimmieDisco. Show them some love! https://t.co/5R…" +05/12/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Florida: the surf, the sun, the sand, the fight for basic voting rights! #SamanthaBee https://t.co/KiaRBKhBI7" +05/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Tonight, we’re discussing Ivanka’s book. If you haven’t read it yet, don’t worry, we made you a guide. + +Download: http…" +04/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Trump’s almost 100 days in. Only @GeorgeTakei can express what we’re feeling. #NotTheWHCD https://t.co/6Og8a2F8Bx +04/24/2017,Comedians,@iamsambee,RT @FullFrontalSamB: When everyone has something to do on Saturday night but you. #NotTheWHCD https://t.co/7QvD1mNBHR +04/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: If you had a big bowl of chili for lunch and your memory’s a little fuzzy, here’s your friendly reminder that #NotTheW…" +04/21/2017,Comedians,@iamsambee,"My backstage ritual is ""looming over the tech crew."" #IWCTFF @Tribeca @IWC https://t.co/t64zXU5Kys" +04/19/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Resigning is a very funny response to being told to “Do your job.” https://t.co/9SBJTT3cDS +04/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Georgia! Don’t forget tomorrow’s special election. It’s either take one hour and vote or go to a town hall every week… +04/13/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: How Sean Spicer Should Quit: +9 Blaze-Of-Glory Ideas (That Have Nothing To Do With Hitler) https://t.co/uJmjSZmPpZ" +03/31/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: This conclusion to our original Rape Kits story was so good, we had to go full School House Rock on it. #SamanthaBee h…" +03/31/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Because nothing else has worked. https://t.co/VCyHZ7hKli +03/29/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@POTUS Fixed this tweet. https://t.co/vYvoufUr4B +03/27/2017,Comedians,@iamsambee,RT @AllanaHarkin: Happy #worldtheatreday @wecomefromaway! Long may your big jib draw! @iamsambee and I loved the show. photo: @mcoppola5/@G… +03/24/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Bye, Bill. #AHCA https://t.co/GGfVOpVob7" +03/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Delaying the health care vote today to try to figure out what a woman is. https://t.co/ezu5p4r40A +03/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Local journalism is failing and we need to save it! But what's in it for us? #SamanthaBee https://t.co/6iiejmZlZs +03/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: One of our staffers has been keeping an actual log of who's paying for Trump's wall. https://t.co/P1C6xW41vd +03/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@RachelFeltman We connected the whales. https://t.co/baZ6EVnt35 +03/15/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Sorry you're having trouble finding a new job, @PatMcCroryNC. Here, we wanted to help! https://t.co/jSSfugIHwN" +03/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Getting ready to spin those CBO numbers like... https://t.co/5FCN9dmlN5 +03/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: A new cornerstone of the conservative platform: media whiplash for all Americans! #SamanthaBee https://t.co/3IxtbPyRvp +03/09/2017,Comedians,@iamsambee,@meg_kelly16 We deeply apologize for offending you and @_that_kyle. We only learned of his condition today & have removed him from the piece +03/08/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: The Trump WH is so feminist, EVERY day is Day Without a Woman. https://t.co/rYZeYo04kn" +03/08/2017,Comedians,@iamsambee,Get some of #TheDetour TONIGHT at 10/9c. Watch in wonder as comedy BEAST @nataliezea shows us all how it's done. +02/28/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Fav if you're planning to shotgun Maalox through the whole thing. +https://t.co/NlSq6IfqBh" +02/28/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@VP Pence unveils his plan to be more likable than @JoeBiden in tonight's #JointSession. https://t.co/5T0UesGsyC http… +02/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@realDonaldTrump 🐔 +02/22/2017,Comedians,@iamsambee,"Climbing out of my panic bunker tonight to watch #TheDetour 2-ep season premiere at 10/9c on @TBSNetwork! +(Commercial free because eff it)" +02/21/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: We're on hiatus this week, but check out our Russia playlist on youtube! No reason in particular. https://t.co/9KQScaB…" +02/20/2017,Comedians,@iamsambee,"Doing a Q&A for #TheDetour @PaleyCenter Feb 21 at 6:30pm w/ @jonesinforjason & @nataliezea +(Like an ACA town hall but with *more* yelling)" +02/17/2017,Comedians,@iamsambee,RT @FullFrontalSamB: .@ScottPruittOK Congrats on your confirmation. They'll probably tell you this at orientation but just in case: climate… +02/17/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Did you know that handsome people can be bad, too? We've got just the Paul Ryan to prove it. https://t.co/wJGMMi1Bws" +02/16/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Watching this @POTUS presser. https://t.co/95Q9UOo5QJ +02/14/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Happy Valentine's Day, @POTUS! https://t.co/99dcuRbn2A" +02/14/2017,Comedians,@iamsambee,".@LindseyGrahamSC heyyyy, call me! https://t.co/VJ02WPijRo" +02/14/2017,Comedians,@iamsambee,RT @paleycenter: Hey NY! Come see @jonesinforjason @iamsambee & @nataliezea at the @DetourTBS premiere on 2/21! #TheDetour Tix: https://t.c… +02/14/2017,Comedians,@iamsambee,".@LindseyGrahamSC I have important info you need to hear! It's that I like you & think we should chat on the phone. (I'm serious, DM me)" +02/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Sending Trudeau to stand attractively next to Trump while speaking French is actually the closest thing Canada has to… +02/09/2017,Comedians,@iamsambee,RT @FullFrontalSamB: President Snowflake is feeling very unsafe in places where people are treated like people. #SamanthaBee https://t.co/P… +02/08/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We premiered one year ago today! Right before Sam was raptured into the current timeline. Working on a way to get back… +02/02/2017,Comedians,@iamsambee,@FullFrontalSamB All in on the #MuslimBan tonight. ALL THE FUCK IN. 10:30 on @TBSNetwork +02/01/2017,Comedians,@iamsambee,RT @FullFrontalSamB: LEAKED: The White House’s #BlackHistoryMonth Program Of Events https://t.co/qpQTeA9bg6 +01/29/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: ""You don't get to be the shining city on the hill by cowering in fear & putting your head in the sand..."" @philklay +h…" +01/27/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Are we done giving Trump a chance now? https://t.co/UpPBF2TAWT +01/26/2017,Comedians,@iamsambee,RT @FullFrontalSamB: A bunch of girls hurt Trump's feelings. #SamanthaBee https://t.co/1M3tKqUAXB +01/25/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We're still bringing you the hard-hitting reporting you've come to expect from a satire show. Tune in TONIGHT at 10:30… +01/23/2017,Comedians,@iamsambee,RT @FullFrontalSamB: National Park Service Temporarily Ordered To Stop Tweeting: Reactions From Wildlife https://t.co/iEfPHxW3Ry +01/22/2017,Comedians,@iamsambee,"RT @DetourTBS: Want to see what it's like to be stuck in a van with these guys for days on end? + +Binge Season 1 NOW, only on @Hulu: https:/…" +01/22/2017,Comedians,@iamsambee,RT @AllanaHarkin: @FullFrontalSamB represent! #WomensMarch https://t.co/PTPNVThkDE +01/21/2017,Comedians,@iamsambee,RT @FullFrontalSamB: We're giving away 1000 Feminist shirts at the bus this morning. Come find us! #WomensMarchWashington https://t.co/fgsd… +01/20/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Noticed you had to use an old Obama inauguration photo for your banner, so we fixed it for you. https://t.co/qTkPCuGUY9" +01/20/2017,Comedians,@iamsambee,RT @FullFrontalSamB: You can watch this as many times as you need to get through today. https://t.co/rkv4Gi3DbT +01/20/2017,Comedians,@iamsambee,"How I'm feeling. +https://t.co/7RvJmbDzca via @youtube" +01/19/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Even if the sky rains blood in D.C. on Saturday it will be more fun than this. #TrumpInauguration +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Is it just us or does that ""USA"" firework look suspiciously like ""USR?"" #TrumpInauguration https://t.co/4zktBfYArv" +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: We love @MashaGessen for so many things, but chief among them is her calming way of reminding us we're fucked. #Samant…" +01/19/2017,Comedians,@iamsambee,RT @MarkForwardd: How great would it be if the Lincoln statue got up and left. #Inauguration +01/19/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Meet Secretary of the Treasury and Swamp King, Steve Mnuchin. #SamanthaBee https://t.co/QulK72pr46" +01/13/2017,Comedians,@iamsambee,RT @FullFrontalSamB: Good luck to Giuliani on his new cyber security role! #RudyGiuliani https://t.co/N7jBkQ1mLr +01/11/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Quote of the day: ""I've never walked into an office where so many people are screaming at their TVs."" - Breakfast cate…" +01/10/2017,Comedians,@iamsambee,"RT @FullFrontalSamB: Trump's Movie Blurbs +https://t.co/qblj0CYBh3" +12/16/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We hired the nation's top linguists to translate what Putin's dog was saying to Japanese journalists. https://t.co/AGx… +11/27/2016,Comedians,@iamsambee,Looking down the barrel of the next four years like https://t.co/BKlxXRHXlr +11/14/2016,Comedians,@iamsambee,We are all Lesley Stahl. https://t.co/fDgQMEdJRk +11/10/2016,Comedians,@iamsambee,"So proud to present tonight's post election @FullFrontalSamB. Watch to the end, it's worth it I promise." +11/08/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Full Frontal's official endorsement of the baddest bitch ever to run for president. #SamanthaBee https://t.co/4GAp3ca1… +11/02/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Trump says Russia isn't influencing our election, and so do these Russian trolls who are being paid to influence our e…" +11/01/2016,Comedians,@iamsambee,RT @katiecouric: Did you catch @FullFrontalSamB last night? @iamsambee joined #CouricPodcast & had even more insight on #Election2016 https… +11/01/2016,Comedians,@iamsambee,RT @FullFrontalSamB: It's not a conspiracy theory if it's true. #TrumpCantRead #SamanthaBee https://t.co/RShLm5Za2B +11/01/2016,Comedians,@iamsambee,"New @FullFrontalSamB starts now! I went to Russia and everything, just for you." +11/01/2016,Comedians,@iamsambee,RT @TheMattWilstein: All I've got to say is watch @FullFrontalSamB's Facebook Live broadcast at 9:30pm tonight: https://t.co/LRsr6QTabR #Tr… +10/21/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: The Clinton Campaign Can Chill With The Emails +https://t.co/O2deh7gP8T" +10/21/2016,Comedians,@iamsambee,RT @FullFrontalSamB: This came straight from our private fax line with Julian Assange. Information has not been authenticated. https://t.co… +10/19/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: And now, an extra special Real or Fake with two GOP women whose votes Donald Trump did not manage to grab by the pussy…" +10/19/2016,Comedians,@iamsambee,RT @AllanaHarkin: My #debate drinking game for tonight is to do a shot every time Trump says something factual because I need to feel refre… +10/10/2016,Comedians,@iamsambee,Post debate mood https://t.co/tn7pP9Wzjn +10/06/2016,Comedians,@iamsambee,New @FullFrontalSamB tonight at 10:30 on @TBSNetwork! Prepare thyself +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@GOP finally figured out how to set their time machine to the future. https://t.co/2W5nUK9cLB +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@GOP has got to do better at the cyber. #VPDebate https://t.co/2MfrdAeQZ8 +10/04/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Let us allow Pence to reintroduce himself. #VPdebate #VPdebate2016 https://t.co/ifMBqDJaCp +09/29/2016,Comedians,@iamsambee,RT @AllanaHarkin: Well hi there Wednesday! TONIGHT at 10:30pm on @TBSNetwork @iamsambee brings you her @FullFrontalSamB oh so special debat… +09/28/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We fact-checked and Full Frontal's Debate Special is in fact on tonight at 10:30! #SamanthaBee +09/27/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We found the epicenter of an upsetting new hearing loss epidemic. https://t.co/3OjCyIboJL +09/21/2016,Comedians,@iamsambee,Workin' hard on next Wednesday's show! https://t.co/5hwsFv2yzx +09/20/2016,Comedians,@iamsambee,@iamTannenbaum @DonaldJTrumpJr Oh. The tweet that broke my heart... +09/15/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We got an exclusive first look at Trump’s medical records. https://t.co/muLWfudwrC +09/13/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Look who got kicked out of the TN house. Don’t let the bathroom door hit you on the way out. https://t.co/ZxCOjm3qhW +09/13/2016,Comedians,@iamsambee,.@DrJillStein @HillaryClinton https://t.co/1Ci7hsfcKf +09/12/2016,Comedians,@iamsambee,"Quivering with excitement to get back on the air tomorrow. QUIVERING. +New episode of @FullFrontalSamB Monday at 10:30." +09/07/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Donald Trump saw ""Letters to Hillary"" on Tumblr. This is his response. https://t.co/H2JPubIghb https://t.co/shNSViGhwf" +08/01/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Our staff, chasing celebrities as always! https://t.co/79kPKCrxQl" +07/29/2016,Comedians,@iamsambee,RT @FullFrontalSamB: .@realDonaldTrump Congrats! https://t.co/eLATz0FgNA +07/27/2016,Comedians,@iamsambee,RT @FullFrontalSamB: What could the Congressional Women's Caucus do to achieve greater hotness? #TrumpAMA +07/27/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: We couldn’t get into the #TrumpAMA, so here are some of the questions we wished we could have asked. Feel free to shar…" +07/27/2016,Comedians,@iamsambee,@asvokos @CoryBooker we know how to play this game +07/26/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Hello from the first night of #DemsInPhilly, or should we say Здравствуйте to our Russian friends reading this. +https:…" +07/26/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Congrats to Hillary on selecting Tim Kaine as Joe Biden! +https://t.co/F4jd3clMad" +07/26/2016,Comedians,@iamsambee,"Tonight's @FullFrontalSamB: feast your eyes on @AllanaHarkin @ashleyn1cole and @yrnameer, doing the lord's work on the floor of the RNC" +07/21/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Final night of #RNCinCLE! Looks like they’re bringing it home with a bang! https://t.co/gzkxFaZMyL +07/20/2016,Comedians,@iamsambee,Le gasp! https://t.co/Tc064I4dnB +07/19/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We got our hands on the speaker schedule for tonight at the #RNCinCLE. https://t.co/Xoqv3yzMKt +07/15/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Breaking the mattress of America. https://t.co/M4Cq62YS2c +07/13/2016,Comedians,@iamsambee,RT @tonygoldwyn: Thx @iamsambee for letting me into the sandbox. Chk out a special @FullFrontalSamB next Wed at 10:30 on @TBSNetwork https:… +06/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We conclude with an act of kindness and compassion more powerful than any high-capacity assault rifle. #SamanthaBee ht… +06/21/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: How weird. I sent my thoughts and prayers to the gun control bills today, and they failed. Guess that shit doesn't rea…" +06/09/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Other Female Firsts Covered Like Hillary’s Historic Nomination https://t.co/qzQxnplwp9 https://t.co/W6MlroPhui +05/26/2016,Comedians,@iamsambee,"RT @iTunesTV: Created by @iamsambee & Jason Jones, @DetourTBS is our hilarious #EditorsChoice. +https://t.co/XaIRy4lVZr https://t.co/wDX9fjQ…" +05/25/2016,Comedians,@iamsambee,"Extraordinary human being @AllanaHarkin makes a whole bunch of new friends on @FullFrontalSamB #letfreedomblow +https://t.co/gEqMBylvP8" +05/24/2016,Comedians,@iamsambee,ICYMI let the full episode of last night's @FullFrontalSamB wrap you in its warm embrace https://t.co/7v8vACpYvE +05/24/2016,Comedians,@iamsambee,@BrokenFiction YES +05/24/2016,Comedians,@iamsambee,I'm doing great thanks for asking https://t.co/f93MAcdAIg +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Our show got bumped to after Conan on the East Coast. It's fine. She's coping. https://t.co/xlMOKvwIS3 +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: It wasn’t us. https://t.co/C7ulRjf6BU +05/24/2016,Comedians,@iamsambee,RT @FullFrontalSamB: We will hunt down those responsible. #SamanthaBee https://t.co/QzzP0ihsuv +05/24/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: East Coast, our new episode is on after Conan. Trump tried to stop us from airing but his little hands were no match f…" +05/16/2016,Comedians,@iamsambee,@amyschumer I made you something! https://t.co/9Ju5awhDiR +05/09/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Full Frontal airs tonight at 10/9c AND 10:30/9:30c this week only! Set your eye clocks accordingly! #SamanthaBee https… +05/06/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: The Canadian Red Cross has a page to help evacuees from the terrible #FortMcMurray wildfire. RT, donate if you can: ht…" +05/03/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Make Your Own Lyin' Ted! We provide the Ted, YOU provide the background: https://t.co/QpSvLUJVvt #WhereIsLyinTed https…" +05/03/2016,Comedians,@iamsambee,RT @FullFrontalSamB: Pic from morning press conference in Indiana. Can't for the life of me figure out what's on the sign behind Carly. htt… +04/19/2016,Comedians,@iamsambee,Local satirist earnestly performs civic duty #NYPrimary https://t.co/bGzN4trjyQ +04/12/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Yachts, mansions, diapers—just some of the luxury lifestyle goods out of reach for low-income parents. #SamanthaBee +ht…" +04/04/2016,Comedians,@iamsambee,"The Detour sneak preview tonight @tbs featuring @jonesinforjason and his (preferred) second wife @nataliezea! +https://t.co/mLSyPGKl2Y" +03/16/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Ladies, it's very important that you #SmileForJoe. +https://t.co/hy6CBbLwdY https://t.co/Z8asKguNdv" +03/09/2016,Comedians,@iamsambee,"RT @FullFrontalSamB: Behavioral Difficulties +Please Stand By +#GOPDebate https://t.co/o11BDgQ6WN" +07/02/2018,Comedians,@chelseaperetti,love is so important https://t.co/Zggg7I2txx +07/02/2018,Comedians,@chelseaperetti,wow 😩😍😘u guys r too sweet https://t.co/pMTdxfJCOO +07/01/2018,Comedians,@chelseaperetti,RT @SenGillibrand: Take @realdonaldtrump at his word. He wants to “punish” women for exercising their reproductive freedom. He promised to… +07/01/2018,Comedians,@chelseaperetti,"RT @tedlieu: Dear @SecNielsen: You need to resign not just because you brazenly lied to the American people, but also because you are gross…" +07/01/2018,Comedians,@chelseaperetti,RT @RAICESTEXAS: Remember this: Children with representation are 5 times more likely to be successful in their case than children who go to… +06/30/2018,Comedians,@chelseaperetti,#FamiliesBelongTogether +06/30/2018,Comedians,@chelseaperetti,RT @lsarsour: NYC always shows up and shows out ♥️✊🏽♥️ #FamilesBelongTogetherMarch https://t.co/HzlZ5b4ChT +06/30/2018,Comedians,@chelseaperetti,@GovMikeHuckabee I bet you said this to someone in your family and they laughed so you got super excited to post it… https://t.co/2U09R8goj8 +06/30/2018,Comedians,@chelseaperetti,RT @tedlieu: House Republicans held an emergency hearing into the investigation of Hillary's emails. They did not hold a hearing on the tho… +06/30/2018,Comedians,@chelseaperetti,RT @fvmero: me commenting on @chelseaperetti’s Instagram photos like we’re friends https://t.co/VwdAWlSqRL +06/30/2018,Comedians,@chelseaperetti,@natica24 the audacity of nope +06/30/2018,Comedians,@chelseaperetti,"RT @TheAlanvargas: We deserve to be safe at school. +We deserve to listened to by our elected officials. +We deserve to be safe at a concert.…" +06/30/2018,Comedians,@chelseaperetti,Perfect photo of two asswipes https://t.co/S3mEYVJ9li +06/30/2018,Comedians,@chelseaperetti,RT @AyeshaASiddiqi: Simi Valley California https://t.co/SCcpAFjxSu +06/30/2018,Comedians,@chelseaperetti,"RT @AndyRichter: From Wikipedia: ""A curb stomp... is a form of assault in which a victim's mouth is forcefully placed on a curb and then st…" +06/30/2018,Comedians,@chelseaperetti,RT @abogada_laura: An attorney for ICE used info taken from their database and files to open lines of credit and get loans under the names… +06/30/2018,Comedians,@chelseaperetti,RT @missmayn: If I can’t go to Planned Parenthood for a routine pap smear without being screamed at and harassed by Christian protestors th… +06/30/2018,Comedians,@chelseaperetti,RT @lsarsour: Urgent - we need to find 160 Spanish speaking attorneys to go to the border ASAP. If you can go and/or if you have a network… +06/29/2018,Comedians,@chelseaperetti,@thepubhistorian @Brooklyn99FOX hi cutie! +06/29/2018,Comedians,@chelseaperetti,@WeaselShop @laurachese 😒nightmare for your students +06/29/2018,Comedians,@chelseaperetti,@maggiehutch14 @Taniel lol +06/29/2018,Comedians,@chelseaperetti,@bjaeger11 @SpeakerRyan lol +06/28/2018,Comedians,@chelseaperetti,RT @Alyssa_Milano: TRUMP SHOULD NOT BE ABLE TO CHOOSE A LIFETIME APPOINTEE WHILE HE IS UNDER FEDERAL INVESTIGATION. FULL STOP. +06/28/2018,Comedians,@chelseaperetti,@daxshepard MME +06/28/2018,Comedians,@chelseaperetti,@daxshepard ahhaha +06/28/2018,Comedians,@chelseaperetti,RT @aravosis: 10) So why aren’t we doing the same? +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 9) Had Pres. Hillary, at this late date, continued to take Russia’s side in the election hack, with another election on the h…" +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 8) Had Hillary done what Trump has done, the GOP would shut down Washington. They would shut down govt. They would refuse to…" +06/28/2018,Comedians,@chelseaperetti,RT @aravosis: 4) Defending the nation from foreign attack is a core requirement of the presidency. If Trump can’t even muster the patriotis… +06/28/2018,Comedians,@chelseaperetti,"RT @aravosis: 3) If Trump doesn’t think Russia hacked the election, then Trump doesn’t think Russia is STILL hacking our elections. That me…" +06/28/2018,Comedians,@chelseaperetti,RT @kurteichenwald: Having been subjected to hundreds of death threats from Republicans (as have many reporters) without Republican leaders… +06/28/2018,Comedians,@chelseaperetti,"RT @Sil_Lai: ""When we speak we are afraid our words will not be heard or welcomed. But when we are silent, we are still afraid. So it is be…" +06/28/2018,Comedians,@chelseaperetti,@JuddLegum @ChelseaClinton they simply lie +06/28/2018,Comedians,@chelseaperetti,"RT @JuddLegum: On June 20, Paul Ryan promised that the House of Representatives will vote to end family separation the very next day. + +It…" +06/28/2018,Comedians,@chelseaperetti,RT @NBCNews: LIVE: Police in tactical gear have moved in as agents dismantle protesters' makeshift blockade of ICE facility in P… https://t… +06/28/2018,Comedians,@chelseaperetti,"RT @nedprice: 2018 Bolton, who said yesterday that he'd ""like to hear someone say"" it's a bad idea to meet with Putin, should be introduced…" +06/28/2018,Comedians,@chelseaperetti,"RT @Taniel: updating big board for Automatic Voter Registration: +—is law: AK, CA, DC, IL, MD, NJ, OR, RI, VT, WA, WV +—passed one legislat…" +06/28/2018,Comedians,@chelseaperetti,"RT @ChristFinnegan: Dem senators, repeat after me: + +“The President of the United States is under investigation for collusion with a foreig…" +06/28/2018,Comedians,@chelseaperetti,RT @timheidecker: Good question! @MickJagger why do you allow your songs to be used at @realDonaldTrump rallies? https://t.co/pwUsFMONDd +06/28/2018,Comedians,@chelseaperetti,had a peanut butter sundae last night +06/28/2018,Comedians,@chelseaperetti,They will go over the few remaining items on their checklist of goals https://t.co/CYWXKPIRbR +06/28/2018,Comedians,@chelseaperetti,RT @PhilipRucker: An ICE whistleblower who resigned because his administration superiors told him to lie to the public had his CBS News int… +06/28/2018,Comedians,@chelseaperetti,"RT @JStein_WaPo: I put this together yesterday, but look at @Ocasio2018's reliance on small donors vs. that of the entire NYC Congressional…" +06/28/2018,Comedians,@chelseaperetti,"RT @ewg: .@EPAScottPruitt's EPA is doing the bidding of the chemical industry by giving it the green light to continue business as usual, a…" +06/28/2018,Comedians,@chelseaperetti,"RT @PreetBharara: Regarding the SCOTUS opening, this president and his enablers have zero standing to lecture others about norms, standards…" +06/28/2018,Comedians,@chelseaperetti,RT @danpfeiffer: I feel compelled to point out yet again that the man decrying the elites is the Ivy-league educated heir to a real estate… +06/28/2018,Comedians,@chelseaperetti,RT @csdickey: We are rapidly approaching the moment when we should stop referring to the American government and start referring to the Tru… +06/28/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: Less than 48 hours ago, we launched a portal for kids legal service providers to try and find parents of separated kids. W…" +06/28/2018,Comedians,@chelseaperetti,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/28/2018,Comedians,@chelseaperetti,RT @nytimes: A Kansas City immigration lawyer said she broke her foot after being pushed to the ground by an ICE officer. She was trying to… +06/28/2018,Comedians,@chelseaperetti,https://t.co/UGBzxauRX1 +06/28/2018,Comedians,@chelseaperetti,"RT @EricBoehlert: on eve of 2016 elections, Republicans vowed NEVER to confirm ANY justices nominated by Clinton if she won." +06/28/2018,Comedians,@chelseaperetti,"RT @PoliticusSarah: ""I tell you, the Dem base is wired now for a revolt. This will be trigger for it. They shouldn’t have a mtg w any of hi…" +06/28/2018,Comedians,@chelseaperetti,@apexwinter @buzzf82 @terrycrews im sorry for your pain. glad you have been able to get counselling ❤️stay strong +06/28/2018,Comedians,@chelseaperetti,@Jilli_Beans what was he like +06/28/2018,Comedians,@chelseaperetti,@JoelMcKMiller @UMDBulldogs dirk looks different +06/28/2018,Comedians,@chelseaperetti,RT @BuzzFeedNews: Do you know a family separated at the border? We're looking for information about the children held by the US government… +06/28/2018,Comedians,@chelseaperetti,@marieclaire .....thaaaanks? +06/28/2018,Comedians,@chelseaperetti,RT @fshakir: Guatemalan migrant alleges officers mockingly said 'Happy Mother's Day' before they separated her from 8-year-old daughter htt… +06/28/2018,Comedians,@chelseaperetti,NEVER APOLOGIZE TO THESE REPUBLICANS NEVER https://t.co/rIYm9ynyk9 +06/28/2018,Comedians,@chelseaperetti,AGREE SIR THANK YOU FOR STANDING STRONG IN FAIRNESS AND CONVICTION. THE AMERICAN PEOPLE APPRECIATE YOUR ETHICAL STA… https://t.co/2T2uxlcsp0 +06/28/2018,Comedians,@chelseaperetti,cnn is trash #basura 🚮🚮🚮🚮🚽 +06/28/2018,Comedians,@chelseaperetti,RT @davidhogg111: We WILL win. We WILL live. We WILL save lives. https://t.co/oYWULXjY1Y +06/28/2018,Comedians,@chelseaperetti,RT @ChrisMurphyCT: Let’s call it like it is: the Supreme Court is turning itself into a political arm of the Republican Party. Weakening or… +06/28/2018,Comedians,@chelseaperetti,WHAT JUDGES ARE ALLOWING THIS????? LOOKING AT A TODDLER ALONE AND DELIVERING SENTENCES? ITS DEMONIC https://t.co/5kzEPhyqw0 +06/28/2018,Comedians,@chelseaperetti,THANK YOU MAXINE WATERS FOR STATING WHAT SHOULD BE OBVIOUS TO THESE PEARL-CLUTCHING THEATRICAL MANIPULATIVE HYPOCRI… https://t.co/NJICfD1z9j +06/28/2018,Comedians,@chelseaperetti,RT @kathygriffin: Fuck civility https://t.co/2U54qpnZs5 +06/28/2018,Comedians,@chelseaperetti,"RT @Taniel: one remedy against the coming SCOTUS: elect govs who'll veto abortion restrictions & gerrymanders, state lawmakers who'll expan…" +06/28/2018,Comedians,@chelseaperetti,@evanasmith @KHNews @SecondLady @FLOTUS TODDLERS. +06/28/2018,Comedians,@chelseaperetti,RT @tedlieu: Dear @SecNielsen: Resign. https://t.co/xIj540VGLZ +06/28/2018,Comedians,@chelseaperetti,"RT @kylegriffin1: VICE has obtained audio of what they say is ""a distraught Guatemalan child call[ing] his mother from a U.S. immigration s…" +06/28/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: ""Immigrant children as young as three years old are being ordered into court for their own deportation proceedings"" + +https…" +06/28/2018,Comedians,@chelseaperetti,"RT @KevinMKruse: I'm sure @SenMajLdr, being a man of firm principle and clear honor, will refuse to hold any hearings on a SCOTUS nominee u…" +06/28/2018,Comedians,@chelseaperetti,WOKE UP AN HOUR AND A HALF BEFORE MY ALARM should be a great day +06/28/2018,Comedians,@chelseaperetti,RT @VincentIntondi: No nominee should be considered until after the Mueller investigation is complete. +06/28/2018,Comedians,@chelseaperetti,"RT @melissafumero: I don’t live in a gated community, but if I did and if someone jumped over my gate because they were running for their l…" +06/28/2018,Comedians,@chelseaperetti,Gonna do an escape room solo. Think it will lift my spirits! +06/28/2018,Comedians,@chelseaperetti,@buzzf82 @terrycrews stay strong and live in your truth - you didnt deserve it and you’re not alone ❤️ +06/28/2018,Comedians,@chelseaperetti,https://t.co/CCyNojyK2t +06/28/2018,Comedians,@chelseaperetti,@robdelaney did i get a role i sent tape +06/28/2018,Comedians,@chelseaperetti,@laurenleti @JordanPeele BBRO STARTS TONITE PLS RECORD +06/28/2018,Comedians,@chelseaperetti,need it more than ever JERSEY SHORE IS CURRENTLY MY DRUG OF CHOICE 😩😢 https://t.co/LOHSyYfgy3 +06/28/2018,Comedians,@chelseaperetti,"RT @matt_cam: UPDATE: Client arrested in #EastBoston court still in #ICE custody. Fighting to get him out, but that's not what this thread…" +06/28/2018,Comedians,@chelseaperetti,RT @BlairImani: I believe in retribution. Let’s go! https://t.co/oNVWoQQCk6 +06/28/2018,Comedians,@chelseaperetti,Couple next to me (Im dining solo) at a restaurant. He went to b room for a whiiiiile. Wud it b ok to ask him “Did u shit” +06/27/2018,Comedians,@chelseaperetti,how does meditation work +06/27/2018,Comedians,@chelseaperetti,Does anyone have the initials “BLT”? Wud be a pretty cool idea +06/27/2018,Comedians,@chelseaperetti,"RT @igorvolsky: If you care about preserving your access to abortion... + +If you care about protecting the rights of LGBT people to marry...…" +06/27/2018,Comedians,@chelseaperetti,"RT @IBJIYONGI: 1850s: this is the time period we need to study. In the years leading up to the Civil War, resistance to the Fugitive Slave…" +06/27/2018,Comedians,@chelseaperetti,RT @IBJIYONGI: We were sold a bag of rocks in the form of the American political dream (which was in fact a nightmare for so many around th… +06/27/2018,Comedians,@chelseaperetti,RT @IBJIYONGI: I want to call on folks who do social studies/ethnic studies/movement studies and who may consider themselves elders to thin… +06/27/2018,Comedians,@chelseaperetti,hell https://t.co/uiJ9tlc1SP +06/27/2018,Comedians,@chelseaperetti,"RT @WomenintheWorld: Woman, 26, first person charged by Trump administration with leaking, pleads guilty: +https://t.co/cNSpdlyAuk https://t…" +06/27/2018,Comedians,@chelseaperetti,"RT @ACLU: The appointment of a new Supreme Court justice determines our future as a nation of people whose humanity must be respected. + +We'…" +06/27/2018,Comedians,@chelseaperetti,"RT @slack2thefuture: Remember sitting in history, thinking “If I was alive then, I would’ve…” + +You’re alive now. Whatever you’re doing is w…" +06/27/2018,Comedians,@chelseaperetti,RT @KHNews: Defendants In Diapers? Immigrant Toddlers Ordered To Appear In Court Alone https://t.co/OKMFgBRpjV via @By_CJewett and @shefalil +06/27/2018,Comedians,@chelseaperetti,RT @MichaelSLinden: Will @SenatorCollins really cast the deciding vote to confirm a a supreme court justice who will overturn Roe V. Wade?… +06/27/2018,Comedians,@chelseaperetti,RT @JoyceWhiteVance: The Democratic Party has called for more accountability from Congresswoman Maxine Waters in the last 24 hours than the… +06/27/2018,Comedians,@chelseaperetti,RT @ikebarinholtz: .@CNN WHY DO YOU KEEP LETTING THIS INFECTED COCK ZIT ON YOUR AIRWAVES https://t.co/p9drm1xd4s +06/27/2018,Comedians,@chelseaperetti,"RT @ChrisMurphyCT: Wait, so the thing about “the American people should have a voice in the selection of their next Supreme Court Justice”…" +06/27/2018,Comedians,@chelseaperetti,"RT @JuddLegum: The good news is, since Mitch McConnell is a man of principle, the Senate won’t consider any Supreme Court nominee until aft…" +06/27/2018,Comedians,@chelseaperetti,@bthomas9 @peterdaou @CBSNews Insane response as usual. Be well +06/27/2018,Comedians,@chelseaperetti,ITS ALMOST AS IF THESE MOTHERS ARE *RUNNING FROM* THE GANGS TRUMP & HIS RACIST LACKEYS SAY THEY & ALL IMMIGRANTS *A… https://t.co/oHQfRLORHf +06/27/2018,Comedians,@chelseaperetti,RT @lsarsour: Separating black and brown families is the policy of this administration. Whether it be stripping babies from their mothers a… +06/27/2018,Comedians,@chelseaperetti,RT @AP: BREAKING: Pennsylvania police officer who shot unarmed black teenager charged with criminal homicide. +06/27/2018,Comedians,@chelseaperetti,I think of this daily in light of the children separated from their mothers. They wont be understood and it will ha… https://t.co/JucGCtq1JH +06/27/2018,Comedians,@chelseaperetti,"RT @WesleyLowery: You know, when you look at electoral results and ignore the political pundits, you almost get the sense that the Dems pat…" +06/27/2018,Comedians,@chelseaperetti,"RT @tedlieu: I predict that in the future, Congress will apologize for this discriminatory SCOTUS decision the same way Congress apologized…" +06/27/2018,Comedians,@chelseaperetti,HEY @SpeakerRyan *BABIES* ARE CRYING FOR THEIR MOTHERS IN *CAGES*- YOU SHOULD APOLOGIZE! YOU ARE SICKENING. YOU HAV… https://t.co/mrHIuoTrId +06/27/2018,Comedians,@chelseaperetti,RT @MatthewACherry: Nah we’re not doing this. https://t.co/LUT4i02I94 +06/27/2018,Comedians,@chelseaperetti,@peterdaou @CBSNews @SecondLady do something @FLOTUS visit is nothing to a child that wants her mother. These are b… https://t.co/4ukRfOvWNn +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: Heartbreaking. This cellphone image is of a crying girl who couldn't talk to her mother. (via @CBSNews) + +#ImmigrantChildren…" +06/27/2018,Comedians,@chelseaperetti,RT @anylaurie16: #MAGA is a suicide cult. https://t.co/m4n6QHK1bx +06/27/2018,Comedians,@chelseaperetti,"do the wives of republican politicians read the news? they read about moms being told “say bye” to their infants, b… https://t.co/3r3l03XX7n" +06/27/2018,Comedians,@chelseaperetti,"RT @slpng_giants: Still nothing from @united. + +Are your planes being used to fly children separated from their parents at the border or are…" +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: REMINDER: + +There is no Trump without McConnell. +No Trump without Ryan. +No Trump without Sessions. +No Trump without Pence. +No…" +06/27/2018,Comedians,@chelseaperetti,"RT @jacobsoboroff: Just before going on air with @Lawrence, @HHSGov got back to me to say they still *are* receiving newly-separated migran…" +06/27/2018,Comedians,@chelseaperetti,"RT @jonfavs: The only way to stop Trump from packing SCOTUS with more Trumpists is to win the Senate. + +Help @RosenforNevada, @kyrstensinem…" +06/27/2018,Comedians,@chelseaperetti,"RT @jonfavs: Truly one of the best ads of 2018, if you haven’t seen it yet https://t.co/VzNiNjr8k0" +06/27/2018,Comedians,@chelseaperetti,RT @ACLU: This is not the America we want to live in. https://t.co/X3oj0OamNK +06/27/2018,Comedians,@chelseaperetti,"RT @thedailybeast: After fleeing her abusive husband in Guatemala, Maria and her 12-year-old daughter sought asylum in the U.S. After cross…" +06/27/2018,Comedians,@chelseaperetti,"RT @thedailybeast: EXCLUSIVE: Border agent threatened to put immigrant's daughter up for adoption, ACLU says https://t.co/0y64CXWyJc" +06/27/2018,Comedians,@chelseaperetti,"Rape, harassment & assault are often approached as “womans issues” where boys and men are sidelined as silent victi… https://t.co/xTFu8Yxbnj" +06/27/2018,Comedians,@chelseaperetti,@kennfujioka do u put on repellant every time you leave your house? What about children +06/27/2018,Comedians,@chelseaperetti,REMINDER THAT EVEN ONE DAY WITHOUT KNOWING WHERE YOUR CHILD IS - IS HELL. one minute https://t.co/GcNx6reqiv +06/27/2018,Comedians,@chelseaperetti,RT @ACLU: These families thought they might never see each other again. Tonight's court ruling will change lives. #FamiliesBelongTogether h… +06/27/2018,Comedians,@chelseaperetti,"RT @ACLU: 📣 The judge ruled that the Trump administration must reunite separated families within 30 days, and children under 5 must be reun…" +06/27/2018,Comedians,@chelseaperetti,RT @dsam4a: Want to win? Here’s a tip: https://t.co/Lff4no2eWt +06/27/2018,Comedians,@chelseaperetti,"RT @Ocasio2018: “The people closest to the pain should be closest to the power.” + - @AyannaPressley. + +Vote her in next, Massachusetts. + +Th…" +06/27/2018,Comedians,@chelseaperetti,RT @AP: BREAKING: Judge orders US to reunite families separated at border within 30 days; sooner for children under 5. +06/27/2018,Comedians,@chelseaperetti,RT @SeanMcElwee: Alexandria Ocasio Cortez was one of the first candidates to support abolishing ICE. She led on the issue. Simple clear mor… +06/27/2018,Comedians,@chelseaperetti,"RT @robdelaney: I am a registered Democrat in Maxine Waters’ state & I stand with her, erect, with chest out. As do the 1.5 million #teens…" +06/27/2018,Comedians,@chelseaperetti,RT @laurenduca: Fuck civility. https://t.co/oRn1R2mLLU +06/27/2018,Comedians,@chelseaperetti,"RT @AyeshaASiddiqi: another anti ICE pro healthcare candidate, check out Megan Hunt in Nebraska 🎶 https://t.co/91CN4k2wts" +06/27/2018,Comedians,@chelseaperetti,RT @tedlieu: Dear @SecNielsen: Resign. https://t.co/cVSM1aSscQ +06/27/2018,Comedians,@chelseaperetti,"RT @theGregJohnson: I like when a shitty movie has 4+ writers. Man, all y’all fuckin bombed." +06/27/2018,Comedians,@chelseaperetti,"RT @peterdaou: We're in a fight for survival, and within lawful and non-violent limits, we MUST take unwavering stands in defense of our co…" +06/27/2018,Comedians,@chelseaperetti,RT @peterdaou: DEM FRIENDS: We need new leadership for our party that is willing to take strong progressive stands and willing to fight enc… +06/27/2018,Comedians,@chelseaperetti,@simbaspaw my heart is broken ❤️stay strong +06/27/2018,Comedians,@chelseaperetti,❤️ +06/27/2018,Comedians,@chelseaperetti,RT @maddow: ...the distraught child verbalized that he wanted to jump because he missed his parents. 12 other young kids who were separated… +06/27/2018,Comedians,@chelseaperetti,"RT @maddow: New York AG: ""A boy who was separated from his father at the border was rushed to the hospital because he was about to jump ou…" +06/27/2018,Comedians,@chelseaperetti,RT @PaulRieckhoff: Just when we all assumed tomorrow’s Senate confirmation hearings would be a breeze for Wilkie. This is ugly stuff. He ab… +06/27/2018,Comedians,@chelseaperetti,"RT @PaulSonne: NEW: Trump’s nominee to lead the VA defended Confederate insignia, attended Confederate memorial events, joined and then lef…" +06/27/2018,Comedians,@chelseaperetti,sleep well innocent babies +06/27/2018,Comedians,@chelseaperetti,sleep well racist demons +06/27/2018,Comedians,@chelseaperetti,"RT @Sifill_LDF: We need answers and information given UNDER OATH from Secys Azar, Sessions and Nielsen. It’s Congress’s job to compel that…" +06/27/2018,Comedians,@chelseaperetti,RT @Sifill_LDF: .@SenAlexander chairs the committee that has oversight of HHS (Azar). Sen @ChuckGrassley chairs the committee w/oversight o… +06/27/2018,Comedians,@chelseaperetti,RT @Sifill_LDF: I implore you to direct some attention to Congress which has the power to make @SecAzar account for these children & provid… +06/27/2018,Comedians,@chelseaperetti,RT @ft_variations: Take a look at this map of ICE facilities across the US to understand just how widespread this monstrous apparatus is.… +06/27/2018,Comedians,@chelseaperetti,"RT @rdevro: Those efforts are currently colliding with realities on the ground, including a clear legal prohibition against the prolonged d…" +06/26/2018,Comedians,@chelseaperetti,RT @mizsant: So Velveeta isn’t allowed to call itself “cheese” but an unlicensed crisis pregnancy center can pretend to be a medical facili… +06/26/2018,Comedians,@chelseaperetti,RT @KaraRBrown: ARE YOU SERIOUSLY WASTING OUR TIME WITH THIS STUPID BULLSHIT WHILE CHILDREN ARE LITERALLY IN CAGES AND A BOOTLEG SUPREME CO… +06/26/2018,Comedians,@chelseaperetti,"THANK YOU FOR STANDING BY YOUR MORAL CONVICTIONS, SIR! WE APPLAUD YOUR CONSISTENCY AND STRENGTH! https://t.co/UR1dq1uvqA" +06/26/2018,Comedians,@chelseaperetti,RT @KenTremendous: Agree! https://t.co/Yw66uhnlnC +06/26/2018,Comedians,@chelseaperetti,TALK BABIES AND THE WEAPONIZATION OF BABIES https://t.co/9hgDLYAeP1 +06/26/2018,Comedians,@chelseaperetti,"RT @Miajmerrill: @chelseaperetti While you're here, a progressive Congressional candidate for Maryland is @AllisonforMD" +06/26/2018,Comedians,@chelseaperetti,@srosner @LanghartCohen or both +06/26/2018,Comedians,@chelseaperetti,"@RachelRumbelow Hi Rachel, more useful to convince an apathetic liberal to vote than spend energy on someone who th… https://t.co/3u1SHA13DJ" +06/26/2018,Comedians,@chelseaperetti,RT @nyuravlivker: @chelseaperetti Two generations heeding the call! #MDvotes https://t.co/UPLtuT3qMy +06/26/2018,Comedians,@chelseaperetti,RT @SenSanders: Rep. @PeterWelch visited a border patrol “processing facility” in Texas holding hundreds of children. Here is what he saw.… +06/26/2018,Comedians,@chelseaperetti,RT @MrEmilyHeller: Hello my fellow touring stand ups! Now is a great time to start hitting up volunteers in every city we visit to register… +06/26/2018,Comedians,@chelseaperetti,PLEASE https://t.co/D1imTX2p4q +06/26/2018,Comedians,@chelseaperetti,RT @LanghartCohen: Remember the next president gets to pick the next Supreme Court justice when you vote in November! #SCOUTUS #CourtsMatte… +06/26/2018,Comedians,@chelseaperetti,"RT @JoyAnnReid: Muslim ban +Separating migrant parents and children, even babies +Planned internment camps +Puerto Rico & USVI left to suff…" +06/26/2018,Comedians,@chelseaperetti,RT @lsarsour: Sitting in my daughter’s high school graduation in tears. I have to tell my daughter who has been asking me for updates that… +06/26/2018,Comedians,@chelseaperetti,"RT @deray: Before the election, someone said that if Trump won that us trying to undo the damage would be like trying to un-ring a bell. Th…" +06/26/2018,Comedians,@chelseaperetti,RT @justinjm1: BREAKING: Immigration attorney tells @woodruffbets ICE broke her foot and locked her up this morning https://t.co/3J1eHqHpof… +06/26/2018,Comedians,@chelseaperetti,RT @michaelianblack: Wow. Thread. https://t.co/jhODCbh160 +06/26/2018,Comedians,@chelseaperetti,"RT @splcenter: When the #POTUS starts talking about taking due process rights away, we shouldn’t shrug it off as just rhetoric meant to ene…" +06/26/2018,Comedians,@chelseaperetti,"RT @HuffPost: ""What happened to me has happened to many, many other men... I have had thousands and thousands of men come to me and say, 'M…" +06/26/2018,Comedians,@chelseaperetti,RT @CREWcrew: A reminder that countries where Trump does business are not hit by the travel ban https://t.co/a0xg2kxdY3 +06/26/2018,Comedians,@chelseaperetti,@Simon_Wynne great point 🙄 +06/26/2018,Comedians,@chelseaperetti,"IF YOU ARE TRANSPORTING THE CHILDREN, BUILDING THEIR CAMPS, TEARING THEM FROM THEIR FAMILIES, RULING AGAINST THEIR… https://t.co/2FYUfnYHs8" +06/26/2018,Comedians,@chelseaperetti,WHO ARE THE HUMANS PHYSICALLY TAKING BABIES FROM THEIR PARENTS? WHAT DOES THAT DO TO YOUR SOUL? YOU HAVE TO KNOW YO… https://t.co/dQoFKDXZP6 +06/26/2018,Comedians,@chelseaperetti,"RT @EricHolder: Here’s another zero tolerance program for the Trump Administration: EVERY child, EVERY baby has to be reunited with his or…" +06/26/2018,Comedians,@chelseaperetti,"RT @ambiej: I spent today at the El Paso immigration court, where a 3-year-old boy who'd been separated from his father had his removal hea…" +06/26/2018,Comedians,@chelseaperetti,RT @Alyssa_Milano: President Trump tweeted that he advocates for eliminating due process for immigrants. What the president suggested was b… +06/26/2018,Comedians,@chelseaperetti,CAN THEY SAVE US???? https://t.co/F4ODRABAbN +06/26/2018,Comedians,@chelseaperetti,"RT @keithellison: Like the Korematsu decision that upheld Japanese internment camps or Plessy v. Ferguson that established ""separate but eq…" +06/26/2018,Comedians,@chelseaperetti,"RT @washingtonpost: ""Get your son ready, because we are taking him."" + +Parents describe being separated from their children at the border. h…" +06/26/2018,Comedians,@chelseaperetti,"RT @ezraklein: In 2014, Dem turnout was abysmal and Rs picked up 9 Senate seats. That gave them the votes to block Obama from replacing Sca…" +06/26/2018,Comedians,@chelseaperetti,RT @ACLU: We must make it crystal clear to our elected representatives: If you are not taking action to rescind and dismantle Trump's Musli… +06/26/2018,Comedians,@chelseaperetti,👀 https://t.co/EIC0a1Ql4e +06/26/2018,Comedians,@chelseaperetti,RT @robdelaney: 🚨#NY14! You are very powerful today. Get out there & vote for @Ocasio2018! Her policies are THE antidote to the for-profit… +06/26/2018,Comedians,@chelseaperetti,"RT @chrisgeidner: Sotomayor: ""History will not look kindly on the court's decision today, nor should it.""" +06/26/2018,Comedians,@chelseaperetti,"RT @HuffPost: Sonia Sotomayor and Ruth Bader Ginsburg say Trump's travel ban was ""motivated by anti-Muslim animus.” https://t.co/eme8uXNias" +06/26/2018,Comedians,@chelseaperetti,RT @UltraViolet: The Supreme Court just ruled that fake clinics can continue to lie to pregnant women about abortion. This is a disgraceful… +06/26/2018,Comedians,@chelseaperetti,RT @deray: nah. https://t.co/KMXubr16TZ +06/26/2018,Comedians,@chelseaperetti,RT @deray: I just keep thinking about all of the people who didn’t believe Trump during the election and who told people that the president… +06/26/2018,Comedians,@chelseaperetti,RT @RinChupeco: The first requirement when approaching any discussion with civility is that both sides must come to the table with it. The… +06/26/2018,Comedians,@chelseaperetti,"RT @RinChupeco: ""So much for the tolerant left."" This is why they say this all the fucking time. This is the bait they expect you to fall f…" +06/26/2018,Comedians,@chelseaperetti,RT @RinChupeco: People invested in putting kids in cages don't want your civility. They don't want you to extend them the same courtesy the… +06/26/2018,Comedians,@chelseaperetti,"RT @ananavarro: -#BarbecueBetty called cops on black fam grilling +-#PermitPatty called cops on black girl selling water +-#LandscapeLucy ber…" +06/26/2018,Comedians,@chelseaperetti,NEW YORK https://t.co/MVmEGMgwAd +06/26/2018,Comedians,@chelseaperetti,How is there such a lack of understanding re asylum? Why do you think a parent would undertake a journey with so mu… https://t.co/PBuWVu0WaF +06/26/2018,Comedians,@chelseaperetti,"RT @ACLU: Our government cannot be allowed to hold children hostage in order to sabotage the legal claims of people seeking refuge. +#Famili…" +06/26/2018,Comedians,@chelseaperetti,RT @robdelaney: Love it. Shut the country off for the day. (Except for essential services like the NHS & production on Catastrophe series 4… +06/26/2018,Comedians,@chelseaperetti,"RT @deray: If there is a hell, folks like Sarah Sanders will be scorched for eternity. https://t.co/lai9Fx3bOc" +06/26/2018,Comedians,@chelseaperetti,"RT @RAICESTEXAS: Young people will lead the way. + +A @Stand_for_Kids lemonade stand in Atlanta raised $13,000 for our work —$1,100 in perso…" +07/02/2018,Comedians,@mindykaling,Oh my god is it my queen @fortunefunny’s birthday? I love you Fortune! https://t.co/nXEK5yedG1 +07/02/2018,Comedians,@mindykaling,@tamara_fuentes @EmilyMomentx Hey. You could not be cuter. I love you guys. ❤️ https://t.co/GJJ4l60flP +07/02/2018,Comedians,@mindykaling,@MarkHarrisNYC Hugh Grant in Paddington 2 was better than Hugh Grant in Florence Foster Jenkins IMHO +07/02/2018,Comedians,@mindykaling,@SunnyBrunette @TheMindyProject This is a @MrSalPerez question but I remember saying to him “they need to special and so expensive it hurts” +07/01/2018,Comedians,@mindykaling,@zara915 You were so helpful and nice!!!! 👯‍♀️ +07/01/2018,Comedians,@mindykaling,It me. Anyone else? @yeahitschill https://t.co/3XmpLnxG1c +07/01/2018,Comedians,@mindykaling,@Yassir_Lester Disagree +06/29/2018,Comedians,@mindykaling,"Families belong together. Tomorrow, thousands of people across the country are wearing white and taking to the stre… https://t.co/QCQiX4S533" +06/28/2018,Comedians,@mindykaling,You got it! 👍🏾 https://t.co/vCRXhzs5Ja +06/28/2018,Comedians,@mindykaling,"Congratulations to @Ocasio2018, the nation is rooting for you! How can I help?" +06/28/2018,Comedians,@mindykaling,"@bjnovak This has to be a sponsored post, it’s sunglasses day, this is not real" +06/28/2018,Comedians,@mindykaling,"RT @HRC: .@HRC was proud to present actor J.J. Totah with the HRC Visibility Award at the 2018 HRC Salt Lake Gala. Thank you, @JJTotah, fo…" +06/27/2018,Comedians,@mindykaling,Because summer 🌞 and #NationalSunglassesDay 😎✌️🎉 https://t.co/4IIQn3dXaC +06/27/2018,Comedians,@mindykaling,#paulruddisawitch +06/27/2018,Comedians,@mindykaling,Paul Rudd has been handsome for 40 years and is somehow still like 32 +06/26/2018,Comedians,@mindykaling,👍🏾 this crew too! @TheAcademy ✨ https://t.co/XA1O9tWXKX +06/26/2018,Comedians,@mindykaling,It’s an incredible honor to be asked to join @theacademy! Thank you!!! 🙌 https://t.co/WCOnQfSRWY +06/26/2018,Comedians,@mindykaling,"Thank you, Seth! 💕❤️💕 https://t.co/CDfbSW9Doa" +06/25/2018,Comedians,@mindykaling,@LitsaDremousis @oceans8movie Thanks Litsa! So happy you liked it! +06/25/2018,Comedians,@mindykaling,@MatthewACherry Thank you!! 💕💕💕 +06/25/2018,Comedians,@mindykaling,@iamthepuma @nicolette819 @robsimonsen @TheAcademy ❤️❤️❤️ +06/25/2018,Comedians,@mindykaling,Whoa!!! Congrats @oceans8movie! $100 million!?! 💵 #SequelMuch https://t.co/xCPVhXETRK +06/25/2018,Comedians,@mindykaling,"@jimmyfallon I see the da Vinci code is not an option, I beg you to reconsider" +06/25/2018,Comedians,@mindykaling,@chrissyteigen @netflix I want Jonathan to help me find my inner diva with new bob and for Antoni to transform my s… https://t.co/1KT5zeK8mP +06/25/2018,Comedians,@mindykaling,I’m gonna say what we’re all thinking: whoever cast the @netflix #queereye did an incredible job +06/25/2018,Comedians,@mindykaling,@jimmyfallon Yaaaaaaasss +06/25/2018,Comedians,@mindykaling,My less important birthday wish is that Pepe the Frog would no longer be a symbol of hate groups. Pepe holding cham… https://t.co/GF4b7B3Zfq +06/25/2018,Comedians,@mindykaling,"Thank you for all the birthday wishes! I get to live with my daughter which is better than any present, and makes m… https://t.co/AuCyo9tfay" +06/25/2018,Comedians,@mindykaling,"Thank you, you know this gif is my favorite gif on the internet https://t.co/HYXyNulrjd" +06/24/2018,Comedians,@mindykaling,@Yassir_Lester I know! I felt like it seemed like I was angling for you to give me birthday greetings but it wasn’t!!! +06/24/2018,Comedians,@mindykaling,@PRanganathan Twins! +06/24/2018,Comedians,@mindykaling,"I love my Reese dawg, you are the personification of the 💯 emoji. https://t.co/ynCsGiQR2b" +06/24/2018,Comedians,@mindykaling,@daliaganz Yay! Thanks!! 💃🏻 +06/24/2018,Comedians,@mindykaling,"@bestofmindy Oh my god, thanks! I obvs love your take on the world heheheh" +06/24/2018,Comedians,@mindykaling,@cschleichsrun This is ridiculous +06/24/2018,Comedians,@mindykaling,I didn’t know anything about Sanfilippo Syndrome until I read about it here. It’s devastating. Help Carter and his… https://t.co/zHWEcwXa2B +06/23/2018,Comedians,@mindykaling,Oh my did I miss @Yassir_Lester’s birthday? I’m obsessed with him. +06/23/2018,Comedians,@mindykaling,Because of the twirl. #Werk https://t.co/iPX1jppLtw +06/22/2018,Comedians,@mindykaling,"This is so funny, I never wanted it to end. #SheReady alright https://t.co/6r9tmpczAz" +06/21/2018,Comedians,@mindykaling,@mullallying @MsSarahPaulson THANK YOU for blurring out all those other losers +06/20/2018,Comedians,@mindykaling,Go over to guiding light @Ava’s twitter feed right now to be inspired. It’s very special and reminds us that we wer… https://t.co/tFvXQG3zyv +06/20/2018,Comedians,@mindykaling,RT @ava: I look at myself as a girl and imagine having to travel unsafely in a quest for safety. Be forcibly separated from my mother. Cage… +06/20/2018,Comedians,@mindykaling,Oooh it’s @LaLigneNYC 👌🏾 https://t.co/HZB9tzWogY +06/20/2018,Comedians,@mindykaling,That feeling when you come home from work and you’re sure the baby is already asleep but she’s awake and babbling a… https://t.co/An1oJ9vaVb +06/19/2018,Comedians,@mindykaling,"As a mother and a daughter of immigrants, I am heartbroken about children being separated from their families at Am… https://t.co/lkggiCARZW" +06/19/2018,Comedians,@mindykaling,It's always sunny when you're visiting your friends on @alwayssunny #Season13 https://t.co/5LxgymfTSG +06/19/2018,Comedians,@mindykaling,"If it’s true that the arc of the moral universe bends towards justice, let’s please help it bend a little faster, f… https://t.co/AhMY58lP8k" +06/19/2018,Comedians,@mindykaling,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/19/2018,Comedians,@mindykaling,"RT @FridaGhitis: Under the orders of armed men, a mother pulls the shoestrings from her daughter's shoes before being dragged away from her…" +06/19/2018,Comedians,@mindykaling,"RT @SenFeinstein: UPDATE: 48 senators now support the Keep Families Together Act. We're making progress, but we still need Republicans to j…" +06/18/2018,Comedians,@mindykaling,Binged the entire season #KillingEve. May never sleep the same way again. Thank you...I think? @IamSandraOh… https://t.co/TGxCafnRZC +06/17/2018,Comedians,@mindykaling,"@MsSarahPaulson @FelicityHuffman Sarah and I were in another scene that got cut, Felicity you should come over, I will show you" +06/16/2018,Comedians,@mindykaling,So many great movies coming out this weekend but only one where you can see me take apart a $150 million dollar nec… https://t.co/CtquqwiYo9 +06/15/2018,Comedians,@mindykaling,"Eid Mubarak, my friend! And all my Muslim friends. ❤️ https://t.co/BFHQ5oBwyR" +06/14/2018,Comedians,@mindykaling,"In honor of my friend @davidstassen’s birthday, here he is doing all the things he’s best at: being in a writers ro… https://t.co/m2iafHRXAg" +06/14/2018,Comedians,@mindykaling,Awww @jjtotah @AndyFavs @ders808 @fortunefunny #ChampionsOnNetflix https://t.co/6PoLi1yLtB +06/14/2018,Comedians,@mindykaling,🤗🤗🤗 #ChampionsOnNetflix @AndyFavs https://t.co/CQFx6TuAot +06/14/2018,Comedians,@mindykaling,"London Premiere 💎 #Oceans8 +Styled by #JasonBolden +💁🏾‍♀️: #DayaRuci +💄: @kaymontano +👗: @albertaferretti +👠:… https://t.co/Vgt9Lxo4o1" +06/14/2018,Comedians,@mindykaling,@ultimatefan1 @cindy_2627 You were a delight (as usual!) +06/13/2018,Comedians,@mindykaling,🇬🇧 💎✌️#Oceans8 https://t.co/sJ7Eg336mc +06/13/2018,Comedians,@mindykaling,"I love this woman. She makes beautiful clothes, but more importantly, finds beauty in women of every background and… https://t.co/cedyQZRxSD" +06/13/2018,Comedians,@mindykaling,We love it! Catch us on @NetflixUK and tweet me what you think! ❤️ https://t.co/1RDtK4SQsu +06/13/2018,Comedians,@mindykaling,Party in my backyard? https://t.co/JtlyBKVlOD +06/12/2018,Comedians,@mindykaling,Loved seeing the iconic @StellaMcCartney in her gorgeous new London store! #23oldbond https://t.co/2LwrjpBOH1 +06/12/2018,Comedians,@mindykaling,Congrats @StellaMcCartney ❤️✨🇬🇧 https://t.co/NuhZC0KOgS +06/12/2018,Comedians,@mindykaling,Agree @jjtotah! #ChampionsOnNetflix forever! 🙌 https://t.co/iJqcxmIt9h +06/12/2018,Comedians,@mindykaling,RT @jjtotah: y’all can share me❤️ https://t.co/gHHumo5lHY +06/12/2018,Comedians,@mindykaling,I actually wish @jjtotah was my kid! He’s another nice woman’s child though 😩 https://t.co/1pYVaGGSvj +06/12/2018,Comedians,@mindykaling,@AndyFavs is the best. Episode 10 especially! Tweet me when you see it! https://t.co/OFuOKRc9Ie +06/12/2018,Comedians,@mindykaling,Working on it cutie https://t.co/qOJm9cHNQ1 +06/12/2018,Comedians,@mindykaling,I will if we come back for another season! 😘 https://t.co/I8wOMnMTln +06/12/2018,Comedians,@mindykaling,RT @CourtneyKofeldt: You need to be your own cheerleader 📣... and root for those around you! @mindykaling. Love this powerful message! http… +06/12/2018,Comedians,@mindykaling,"I'm in London, streaming #Champions! This is awesome! International folks - if you share photos & posts with the ha… https://t.co/5r6Z3oE1Dj" +06/12/2018,Comedians,@mindykaling,👍🏾👍🏾👍🏾 https://t.co/SyEAtQNFHS +06/12/2018,Comedians,@mindykaling,"Guys! It's a good day! #Champions, the comedy show I wrote, produced, and star in, is now available on #Netflix int… https://t.co/sVr9MljUYi" +06/12/2018,Comedians,@mindykaling,RT @theregos: OMG Champions is finally on @NetflixMENA! Eid binging sorted! @mindykaling https://t.co/fDUb6M1Cq7 +06/11/2018,Comedians,@mindykaling,@chrismcquarrie Three great scenes and no shitty ones! I love it! I love practical writing advice! Thank you! +06/11/2018,Comedians,@mindykaling,"@ConstanceWu @oceans8movie @awkwafina Thank you, my hilarious new friend. You’re the best." +06/11/2018,Comedians,@mindykaling,@awkwafina That all sounds fun but we miss you in London +06/10/2018,Comedians,@mindykaling,"Thank you @dartmouth, my Alma Mater, for welcoming me back to deliver today’s commencement speech. To say it was an… https://t.co/EvGI9I32CM" +06/10/2018,Comedians,@mindykaling,Back at @dartmouth! Oh heyyyy old dorm room ✌🏾 https://t.co/efdyjcVgEv +06/09/2018,Comedians,@mindykaling,@itsgabrielleu I travel with an economy sized eucerin +06/09/2018,Comedians,@mindykaling,@itsgabrielleu hahahahahahhahahaha until I die +06/09/2018,Comedians,@mindykaling,RT @ava: This matters. 🖤 https://t.co/z6JiPAO9fg +06/09/2018,Comedians,@mindykaling,It’s a party today at @POPSUGAR #POPSUGARPlayground https://t.co/hdQC4D1gB3 +06/09/2018,Comedians,@mindykaling,@willxcheng @dartmouth Thanks Will! Can’t wait to come to campus! Save some Hop fries for me. +06/09/2018,Comedians,@mindykaling,"Congratulations to Emma Thompson, who is now a dame commander of the order of the British Empire. She is also my fr… https://t.co/EmNiGcKch2" +06/08/2018,Comedians,@mindykaling,"I didn't know I needed this until now. Thanks, @tomlenk. https://t.co/3xJcAgmfdQ" +06/08/2018,Comedians,@mindykaling,"I saw #oceans8, it was so good. The ensemble is fantastic and the jeweler is particularly convincing! She sure know… https://t.co/kigpv8xn1H" +06/08/2018,Comedians,@mindykaling,RT @ikebarinholtz: I can’t wait to see #Ocean8Movie today starring my dear friend @mindykaling and my ex-girlfriend @rihanna +06/08/2018,Comedians,@mindykaling,@davidstassen Cerulean +06/07/2018,Comedians,@mindykaling,"Thanks for having me @TodayShow! 🌈 + +https://t.co/mPkHBGzq1m https://t.co/stgd4q1hkT" +06/07/2018,Comedians,@mindykaling,"THANK YOU, SCOTT https://t.co/ICXYNrpw9t" +06/07/2018,Comedians,@mindykaling,"I was at @TODAYshow all morning and would have stayed all afternoon but they were like “go home, Barry Manilow is n… https://t.co/8DJgK5RnDv" +06/07/2018,Comedians,@mindykaling,Crew’s all here. #Oceans8 https://t.co/20VePv4cme +06/07/2018,Comedians,@mindykaling,@anildash @prabalgurung ❤️❤️❤️❤️ +06/06/2018,Comedians,@mindykaling,🖤 #Oceans8 https://t.co/lSFGFi1dFX +06/06/2018,Comedians,@mindykaling,RT @DavidSpade: Katy at my book signing. I love this pic of her. So pretty. I dont think everyone knew how fucking funny she was... Its a… +06/05/2018,Comedians,@mindykaling,"All this sparkle, brought to you by @prabalgurung & @Cartier. Thank you, I love! 💎 #Oceans8 (Styled by… https://t.co/88lVjswUGC" +06/05/2018,Comedians,@mindykaling,"California, Montana, Alabama, Iowa, Mississippi, New Jersey, New Mexico, South Dakota - Get your vote on! https://t.co/LzMjq4xx0F" +06/05/2018,Comedians,@mindykaling,"I am heartbroken about the news of Kate Spade. I have worn her clothes many, many times. They were colorful, bold,… https://t.co/uvW3Housz7" +06/05/2018,Comedians,@mindykaling,Hugh Dane was one the funniest actors ever. I loved writing and acting with him. ❤️ https://t.co/kOlcofYxIn +06/04/2018,Comedians,@mindykaling,“Act natural” @TheEllenShow https://t.co/UKzVTsfGnm +06/04/2018,Comedians,@mindykaling,When I see @nickkroll is gonna be a nemesis in a movie I get https://t.co/y0jYQcA7fl +06/04/2018,Comedians,@mindykaling,"A shark named Meg? What’s next, a lion named Gretchen? Cmon" +06/04/2018,Comedians,@mindykaling,Uncle Drew is already my favorite movie of the year +06/03/2018,Comedians,@mindykaling,"❤️ this chat @bostonglobe. And see you soon @dartmouth!! 🙌 + +https://t.co/0M5mDKga2x" +06/03/2018,Comedians,@mindykaling,@TessaThompson_x Tell me more!! +06/03/2018,Comedians,@mindykaling,@cschleichsrun I have a very interested baby. I would love to get her in the DGA +06/02/2018,Comedians,@mindykaling,@MarkHarrisNYC But Mark I was gonna live-tweet Perestroika for my followers. Is that gonna be an issue +06/01/2018,Comedians,@mindykaling,It’s all happening today. #NationalDonutDay 🍩 https://t.co/O3tZKddmir +06/01/2018,Comedians,@mindykaling,"@carriecoon @people If you’re in it, I’ll watch it! https://t.co/o2lVUg5XSm" +06/01/2018,Comedians,@mindykaling,@davidstassen @ikebarinholtz Yeah maybe it was good actually +06/01/2018,Comedians,@mindykaling,@ikebarinholtz @davidstassen It’s pretty dumb +06/01/2018,Comedians,@mindykaling,@davidstassen Look at this old photo of him and his sons. I die https://t.co/KhayO2fIma +06/01/2018,Comedians,@mindykaling,@gracie_x24 @maht_in_chicago @MeCookieMonster It’s a great recommendation. Just might do it! +05/31/2018,Comedians,@mindykaling,These are promising but not for sale https://t.co/pgwjQBCboo +05/31/2018,Comedians,@mindykaling,"Guys I’m looking for a Cookie Monster cookie jar. Can anyone help me please, it’s v. important. @MeCookieMonster" +05/31/2018,Comedians,@mindykaling,"@ava Nothing would make me happier than to tell you, but I need it to be three days." +05/31/2018,Comedians,@mindykaling,@janna_joyner Whoa! Thank you so much! +05/31/2018,Comedians,@mindykaling,👏🏾👏🏾👏🏾👏🏾 https://t.co/NCem0WSPjD +05/30/2018,Comedians,@mindykaling,@CAPEUSA @IWGroup @Kollaboration @oceans8movie @awkwafina @OsricChau @ch8i @yoshi_sudarso @PeterSAdrian… https://t.co/gvsRQqemIa +05/30/2018,Comedians,@mindykaling,Thanks @time! We love @NBCChampions too! @ders808 @jjtotah @AndyFavs @CBGrandy https://t.co/DBLnuOeEkx +05/30/2018,Comedians,@mindykaling,Love this guy. Smart and dreamy. https://t.co/OuJeyq3PYO +05/30/2018,Comedians,@mindykaling,Laurie Metcalf and John Goodman let me write things for you +05/29/2018,Comedians,@mindykaling,@davidstassen I wrote on The Office! 😏 +05/28/2018,Comedians,@mindykaling,hahaha I’m an Annie stan https://t.co/NA3wvA4zUq +05/28/2018,Comedians,@mindykaling,RT @DaveKingThing: lebron is underrated +05/28/2018,Comedians,@mindykaling,“This is a close game.” - me just now about this game. @nba need a commentator? +05/27/2018,Comedians,@mindykaling,@chrissyteigen Beware! Tumeric was the death of my manicure. After I cook with it i look like a yellow nailed side… https://t.co/iDYVDVm4qB +05/27/2018,Comedians,@mindykaling,"Proud of Ireland for #RepealedTheEighth. Savita Halappanavar died because she did not have the right to choose, but… https://t.co/MKQUvL2EUs" +05/26/2018,Comedians,@mindykaling,RT @TorieTheriot: Did #champions just reference a baseball team as “Baton Rouge Humidity”?!?! @mindykaling ❤️ it! https://t.co/W2WRqu8kY6 +05/26/2018,Comedians,@mindykaling,RT @thestormwithin: Do not change the channel! There is another episode of #Champions! +05/26/2018,Comedians,@mindykaling,💁🏾‍♀️❤️ https://t.co/NoHgXDs4qC +05/25/2018,Comedians,@mindykaling,I didn’t ask him to tweet this! https://t.co/m0ukfmNnvf +05/25/2018,Comedians,@mindykaling,"RT @damianholbrook: two NEW episodes tonight! @NBCChampions +watch this show so we get more next season! + +#IdLikeFiveDrugsPlease https://t…" +05/25/2018,Comedians,@mindykaling,2 back-to-back episodes tonight - including the season finale of @NBCChampions! 8/7c! https://t.co/cDoR64KlQD +05/25/2018,Comedians,@mindykaling,@_juliescharf @MsSarahPaulson Paulson is my khaleesi and I am Jorah mormont +05/25/2018,Comedians,@mindykaling,Coming for ya @sethmeyers @LateNightSeth https://t.co/NgPYdwEcSR +05/25/2018,Comedians,@mindykaling,RT @hulu: #TBT to the set of Mindy. The show might be over but you can watch all episodes only on Hulu. https://t.co/4Y9B8fAXCo #FYC https:… +05/24/2018,Comedians,@mindykaling,All for clowning around especially for a good cause! Watch #RedNoseDay tonight on @nbc! Donate:… https://t.co/iOx1LXy4va +05/23/2018,Comedians,@mindykaling,"Not your typical LBD... @FallonTonight +👗: #celine +👠: @LouboutinWorld +💎: @KMD_Jewelry +😘😍 @jason_bolden @Marcmena… https://t.co/1YJ0bOfLzK" +05/23/2018,Comedians,@mindykaling,HIIIIiiiiiiiiiiiiii @FallonTonight @jimmyfallon https://t.co/utdT9f4VBR +05/23/2018,Comedians,@mindykaling,@jackburditt Don’t do it Jack!! +05/23/2018,Comedians,@mindykaling,SRSLY. Sandy brought shakes. ❤️❤️❤️ #Oceans8 https://t.co/Wj8g1gumLJ +05/23/2018,Comedians,@mindykaling,My heart hurts this kid is so cute https://t.co/ea2iEH72cU +05/23/2018,Comedians,@mindykaling,Posse. #Oceans8 https://t.co/paq5I03FEB +05/22/2018,Comedians,@mindykaling,Pearls on pearls on pearls for @oceans8movie press day. I play a jeweler after all. https://t.co/5rzYIRIgIe +05/19/2018,Comedians,@mindykaling,In custom Stella! https://t.co/D8BAXIW3rH +05/19/2018,Comedians,@mindykaling,The excitement on her face is heart crushing. This little girl could’ve been my daughter. We must do more than just… https://t.co/Gs5BmMZwaa +05/18/2018,Comedians,@mindykaling,Heartbroken by the news from #SantaFe Texas. #EnoughIsEnough +05/18/2018,Comedians,@mindykaling,@dannychun @ConstanceWu Me too! The decor and cocktail list are also so good. +05/18/2018,Comedians,@mindykaling,@ConstanceWu Selfridges! Gymkhana! 221b Baker Street! +05/18/2018,Comedians,@mindykaling,@DaveKingThing Are you fucking kidding me Dave. Forget it. Enemies +05/17/2018,Comedians,@mindykaling,The only person who can pull off tiny sunglasses https://t.co/EfvLiX3nFA +05/17/2018,Comedians,@mindykaling,@DaveKingThing Yanny and laurel has revealed a new layer to your comedy voice that I love so much +05/16/2018,Comedians,@mindykaling,I love retweeting Canada! And I extra love this insanely talented young woman! https://t.co/Kb99cEeB8j +05/16/2018,Comedians,@mindykaling,".@Shape_Magazine was like, “Cover?” and I was like, “YASS!” 🤩😍😘 https://t.co/BzKaLqGdNw https://t.co/vBM5MlcHrD" +05/16/2018,Comedians,@mindykaling,@megynkelly Feels so good to ignore. +05/16/2018,Comedians,@mindykaling,When they drag you just hoping you will @ them and you don’t https://t.co/CPYUWdfARB +05/16/2018,Comedians,@mindykaling,"Obsessed with this romper, @shivan_narresh are so talented. Love repping Indian fashion! ❤️ https://t.co/o1SUXaarCT" +05/16/2018,Comedians,@mindykaling,RT @SaltyShep: If you’ve had a tough creative day— remember it happens to everyone who creates art. Here’s Kubrick on 2001 set... https://t… +05/16/2018,Comedians,@mindykaling,@MiniB622 @GWillowWilson She’s incredible! Just want to support her any way I can! +05/16/2018,Comedians,@mindykaling,Yup! https://t.co/RMnqVOe8lf +05/16/2018,Comedians,@mindykaling,"Also it’s yanny not yanni, let’s not be cute about it" +05/16/2018,Comedians,@mindykaling,It’s Yanny https://t.co/p03ljzpomJ +05/16/2018,Comedians,@mindykaling,@yashar You’re insane. This is like me not seeing elephants in your posts about elephants +05/16/2018,Comedians,@mindykaling,@chrissyteigen I bought your cookbook. I loved it. And now you betray me? #yanny +05/16/2018,Comedians,@mindykaling,@SashaBanksWWE Hi! +05/16/2018,Comedians,@mindykaling,"Riz! I am obsessed with this comic book, I’ve read them all. I love Kamala Khan. https://t.co/f3PevhfUzv" +05/15/2018,Comedians,@mindykaling,2018 Graduation is lit. 🔥 Kelly would be proud. https://t.co/9Mzi6JPxuG +05/15/2018,Comedians,@mindykaling,Ain’t it shocking what love can do? https://t.co/PaqCAyMJUS +05/15/2018,Comedians,@mindykaling,The song that most encapsulates my soul is “So Emotional” by Whitney Houston. I was so lucky to grow up waiting for… https://t.co/fUVfIPjFAB +05/15/2018,Comedians,@mindykaling,@jackburditt @TraceyWigfield he would go on the ride and say loudly “that’s a lot of dinosaurs!” over and over. He needed to go +05/14/2018,Comedians,@mindykaling,I think we will regret this tiny sunglasses look +05/14/2018,Comedians,@mindykaling,"@AkashaRichmond hi Akasha, I love Akasha and miss Sambar. I wanted to get in touch with you! ❤️" +05/14/2018,Comedians,@mindykaling,"@ChrisEvans Oh my god, your mother is stunningly beautiful." +05/14/2018,Comedians,@mindykaling,@HAbbaraju What a wonderful message! She must be so proud of you! +05/14/2018,Comedians,@mindykaling,@BethGrantActor Oh I love this so much. Happy Mother’s Day Beth! ❤️ +05/14/2018,Comedians,@mindykaling,"Happy Mother’s Day to those of us who miss our moms. I have a kid now who is the joy of my life, but each year that… https://t.co/L85DBXpBk9" +05/13/2018,Comedians,@mindykaling,"I’ll just let this picture explain itself. Happy Birthday, @StephenAtHome 🎉 https://t.co/RP6BiirvFa" +05/13/2018,Comedians,@mindykaling,Saturday smoothness. Thanks to #FawltyTowers https://t.co/HwpMqSOUbO +05/12/2018,Comedians,@mindykaling,“WOOOOW! So PROUD of these women standing up for change! #TimesUp #Cannes https://t.co/bAYOHtlmlH +05/11/2018,Comedians,@mindykaling,THIS 👏🏾 IS 👏🏾 A 👏🏾 MOOD! 👏🏾 @JLo @rihanna https://t.co/qvlfyB5zLC +05/11/2018,Comedians,@mindykaling,RT @awkwafina: Man this is inspiring as hell https://t.co/PjKTvIB2jN +05/11/2018,Comedians,@mindykaling,"RT @xor: ""Marisa Tomei"" is an anagram for ""It's-a me, Mario""" +05/10/2018,Comedians,@mindykaling,Photo bombing is the worst. We didn’t want you in the photo!! +05/10/2018,Comedians,@mindykaling,It takes 8. #Oceans8 🎱 https://t.co/nyeKOBkCo8 +05/09/2018,Comedians,@mindykaling,@bjnovak your mailbox is full and I take it as a personal affront. Go get your mailbox. +05/09/2018,Comedians,@mindykaling,It is a beautiful night to walk home tipsy in New York City and that is precisely what I’m doing +05/08/2018,Comedians,@mindykaling,"After all, I gave my word....My @Cannes Jury lewks reviews is up now on my Insta-Story! 👀💁🏾‍♀️👠😍🌴🌟👯‍♀️👙🙌😘 https://t.co/tn5BsIc2r3" +05/08/2018,Comedians,@mindykaling,"It’s finally out! I love these two, I wrote the foreword to their book, pick up a copy today! https://t.co/fhZW1fC7SU" +05/08/2018,Comedians,@mindykaling,I SAT NEXT TO HIM! #WakandaForever https://t.co/bQfQWZv5zG +05/08/2018,Comedians,@mindykaling,My greatest joy of social media. @ikebarinholtz https://t.co/ZKnAC1XO9w +05/08/2018,Comedians,@mindykaling,#MetGala 🌟 https://t.co/mkdCyUdvw4 +05/08/2018,Comedians,@mindykaling,#MetGala 👋 https://t.co/ow7DA8nxlw +05/07/2018,Comedians,@mindykaling,"“You can be the king but watch the queen conquer.” 👑👑👑 #MetGala2018 Styled by @CristinaEhrlich +Makeup:… https://t.co/Infp4lOfWn" +05/07/2018,Comedians,@mindykaling,@RahulMishra_7 Love love loved this +05/07/2018,Comedians,@mindykaling,@PRanganathan Whoa. THANK YOU! what a dream you are +07/01/2018,Comedians,@dopequeenpheebs,"RT @nowthisnews: 'If you shoot me, you better shoot straight. There's nothing like a wounded animal.' — Rep. Maxine Waters had a powerful m…" +06/30/2018,Comedians,@dopequeenpheebs,"@mariluza_dias @daniDpVox @alison_wanders @U2 @U2Community One of my close friends, Alison! 😍" +06/29/2018,Comedians,@dopequeenpheebs,"So excited, boo boos! I teamed up with @Nordstrom to help celebrate their upcoming Anniversary sale. Early access f… https://t.co/RHVbrrZyxq" +06/29/2018,Comedians,@dopequeenpheebs,@Allie_Cat_Swag 🙏🏾🙏🏾🙏🏾🙏🏾 +06/27/2018,Comedians,@dopequeenpheebs,"OMG! First Phoebe Robinson & Friends sold out on Monday, so we’re adding a late show! Get your tix now before they’… https://t.co/5vUDJrWlgR" +06/27/2018,Comedians,@dopequeenpheebs,@mindykaling https://t.co/iYJptPAkjh +06/27/2018,Comedians,@dopequeenpheebs,@maggiebertram @HubSpot @2DopeQueens @LenaWaithe @INBOUND Omg! Bring your Bono is the highest honor. We must meet when I’m in town! +06/26/2018,Comedians,@dopequeenpheebs,@jayohtaytho I was there!!! Did you enjoy the show??? +06/25/2018,Comedians,@dopequeenpheebs,😑😑😑😑😑. Mar-a-lago had 15 health code violations and I 10000% hate that I had to go on Fox News’s Trash ass website… https://t.co/yC6k5GXZ5L +06/25/2018,Comedians,@dopequeenpheebs,Hi Q Hi! I’m doing a show at @UnionHallNY with some of my favorite ppl on July 24th. Get your tix now before they’r… https://t.co/S5Zh76DWFA +06/24/2018,Comedians,@dopequeenpheebs,"@klmenard Lmaooo. Not weird. Final confirmation that it’s me, boo boo!" +06/23/2018,Comedians,@dopequeenpheebs,“Illegally selling water without a permit.” That little girl is 8 years old. Motherfucking white kids are constantl… https://t.co/9DrqFeXRkM +06/23/2018,Comedians,@dopequeenpheebs,@lovesfiercely @FunnyAsianDude He was one of my all-time favorite guests. So funny and wise. I can’t wait for him t… https://t.co/wBzSvqpZqR +06/23/2018,Comedians,@dopequeenpheebs,"Biiiiiiiiiiiiiitch, can you assemble all the black & brown families who’ve had loved ones killed by police so they… https://t.co/6ZvIJOhJ9T" +06/23/2018,Comedians,@dopequeenpheebs,@icecreamtamales Masterchef Junior is sooooooo good! +06/22/2018,Comedians,@dopequeenpheebs,Who. 👏🏾 Da. 👏🏾 Fuck. 👏🏾 Said 👏🏾 This?! #Lies https://t.co/TqYimGAvBK +06/22/2018,Comedians,@dopequeenpheebs,"A day and woman we all need to celebrate. Also, let’s give her some royalties! 👏🏾👏🏾👏🏾 https://t.co/qimUaaqg5K" +06/21/2018,Comedians,@dopequeenpheebs,@rgay #Goals. Congrats! You’re so inspiring! https://t.co/gka9DSxVDZ +06/20/2018,Comedians,@dopequeenpheebs,"@MattRogersTho Lmaooooooo. This is so ignorant. Straight ppl, please sit down, shut the fuck up, and quit making it… https://t.co/mSMlYg3ued" +06/20/2018,Comedians,@dopequeenpheebs,ARE YOU KIDDING?! Here’s an idea! Stop putting babies in fucking cages. The audacity that you two have to be out in… https://t.co/YOUgPVQ8Xr +06/19/2018,Comedians,@dopequeenpheebs,@barberjohn @katiefward @YouDonKnowMe @vanessabayer @GillianJacobs @_richardmadden I loved THE BIG SICK so much! +06/19/2018,Comedians,@dopequeenpheebs,If this Keebler elf looking mofo doesn’t sit his ass down somewhere and read a damn book and understand that what h… https://t.co/TvkxZEMtmt +06/19/2018,Comedians,@dopequeenpheebs,RT @saladinahmed: these people are more upset seeing black athletes kneeling than they are hearing 4-year-olds screaming in terror. just *t… +06/19/2018,Comedians,@dopequeenpheebs,"@thunderup09 @msjwilly I would def do something ig. Jess would mostly do something pretty smart, but where’s the fun in that? Haha. 😜" +06/18/2018,Comedians,@dopequeenpheebs,"@JustDesmund @msjwilly @jessicabennett See ya there, boo boo!" +06/18/2018,Comedians,@dopequeenpheebs,"@nikkidjensen Welcome to the tribe, honey! https://t.co/a27MiOYlHt" +06/16/2018,Comedians,@dopequeenpheebs,"RT @thatonequeen: Sometimes Drag Race makes me realize other things about the world. NOT ALL, but a lot of the most popular queens fall int…" +06/16/2018,Comedians,@dopequeenpheebs,@ashleyn1cole https://t.co/WsxKlIAcze +06/15/2018,Comedians,@dopequeenpheebs,RT @cameronesposito: My new special is AVAIL NOW!! https://t.co/mrdDRgIvPt to stream free or purchase to benefit @RAINN https://t.co/bxied9… +06/15/2018,Comedians,@dopequeenpheebs,@aflorall 🤣🤣🤣🤣 +06/15/2018,Comedians,@dopequeenpheebs,@karilebby @netflix You can make it!! https://t.co/u2LohQWnr9 +06/14/2018,Comedians,@dopequeenpheebs,"RT @kendrickmaslany: some girl at my job said “I’m not scared to admit I’m homophobic”, so I told my superior and she got fired today lmao" +06/13/2018,Comedians,@dopequeenpheebs,@Marix82 THANK YOU! 😘 +06/12/2018,Comedians,@dopequeenpheebs,"🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣😭😭😭😭😭😭😭😭😭😭😭😭How you gonna try and drag him when you misspelled the word “too?” It’s three letters, bruh. https://t.co/1NQbuGo3GU" +06/11/2018,Comedians,@dopequeenpheebs,"@marenjmitchell I got invited to go, but I’m in Atlanta shooting a movie. Absolutely devastated!" +06/11/2018,Comedians,@dopequeenpheebs,@MorganJerkins @tylercoates https://t.co/4X0r52tMEz +06/11/2018,Comedians,@dopequeenpheebs,"RT @havingfunsaving: #ad OMG The Slay Team @ElizabethBanks, @LauraBellBundy, @ChrissieFit, @DopeQueenPheebs & Cecily Strong are totally ""Cr…" +06/10/2018,Comedians,@dopequeenpheebs,@ragsmurph @U2 Haha. I’m going to all the MSG shows! +06/09/2018,Comedians,@dopequeenpheebs,@JasonFarrJokes Totally. +06/09/2018,Comedians,@dopequeenpheebs,@ashleympetrey Resisting. Like how ppl act like MLK Jr.’s was mostly peaceful when the reality is he was under thre… https://t.co/YP082V3ij4 +06/09/2018,Comedians,@dopequeenpheebs,@ashleympetrey Exactly. Forgot to mention that part. Haha. I’m just so mad at #45. Idk who he thinks he’s fooling o… https://t.co/0rFLd3YbMN +06/09/2018,Comedians,@dopequeenpheebs,@AlePlaysWStars Lmaoooo. This was a very bad game. 🤣🤣😭😭 +06/08/2018,Comedians,@dopequeenpheebs,Huh? I guess he’s gonna pretend Ali’s didn’t protest America’s injustices. To consider this empty ass “gesture” whe… https://t.co/8VveDZjsEJ +06/08/2018,Comedians,@dopequeenpheebs,"@SymoneDSanders Ummmmm, this person is so ignorant. https://t.co/htPnlmDTtB" +06/08/2018,Comedians,@dopequeenpheebs,"RT @CBSThisMorning: .@GayleKing had an emotional reaction to the new #WatchingOprah exhibit at @NMAAHC: ""She really is a good human who jus…" +06/07/2018,Comedians,@dopequeenpheebs,@TheNelsman Thank you! “Zooropa” is such an overlooked album when it had so many amazing songs on it! 🙌🏾🙌🏾🙌🏾 +06/07/2018,Comedians,@dopequeenpheebs,@KristinDavis @SJP @KimCattrall @CynthiaNixon Congrats! What a beautiful photo and a beautiful show. You touched so… https://t.co/5gIckSHRVM +06/07/2018,Comedians,@dopequeenpheebs,@fee_therese @U2 ⚰️⚰️⚰️⚰️ +06/06/2018,Comedians,@dopequeenpheebs,@alladinsan3 @U2BROTHR OMG! Hi!!! +06/06/2018,Comedians,@dopequeenpheebs,@fee_therese @U2 😭😭😭😭😭😭🤣🤣🤣🤣🤣🤣 +06/06/2018,Comedians,@dopequeenpheebs,@laurensieben Yay! We like the same people! Aren’t we cute! +06/06/2018,Comedians,@dopequeenpheebs,"@shreyann 😘😘😘. I got you, boo!" +06/05/2018,Comedians,@dopequeenpheebs,"@Carrie_Bland @_bacongod_ @ashleydianette Oh! Didn’t know it was your tweet, Ashley! Thanks for the laughs!!!" +06/05/2018,Comedians,@dopequeenpheebs,🤣🤣🤣🤣😭😭😭😭⚰️⚰️⚰️⚰️ https://t.co/pn2xo6YdoQ +06/05/2018,Comedians,@dopequeenpheebs,@TinyT_I_M Thank you! It’s @StellaMcCartney!! +06/05/2018,Comedians,@dopequeenpheebs,@corriepurcell https://t.co/gdnSjo9XNS +06/04/2018,Comedians,@dopequeenpheebs,"RT @2DopeQueens: ""She could pull a full Beyoncé — speaking through her work expressly — without filtering her thoughts through an interlopi…" +06/04/2018,Comedians,@dopequeenpheebs,@curlycomedy 😘😘😘😘 +06/04/2018,Comedians,@dopequeenpheebs,@carsonfrae https://t.co/wvmBGndYEX +06/03/2018,Comedians,@dopequeenpheebs,@annadrezen @vanessabayer 😘😘😘😘 +06/03/2018,Comedians,@dopequeenpheebs,@jimwilbourne @2DopeQueens https://t.co/a4uBba8YRw +06/03/2018,Comedians,@dopequeenpheebs,RT @Travon: 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 4645 Puerto Ricans. 1500 kids. 464… +06/01/2018,Comedians,@dopequeenpheebs,@raeleejgrimm It’s the seas finale! +06/01/2018,Comedians,@dopequeenpheebs,@hellodcro https://t.co/0kTkz0SAlc +06/01/2018,Comedians,@dopequeenpheebs,@katietombstone Liked it better sleeveless* Jeez. Auto correct is a mess. +05/31/2018,Comedians,@dopequeenpheebs,"@katietombstone Hahaha. They cut the sleeves off because I liked it Breyer sleeveless, too! Send me a pic when you’re done!" +05/31/2018,Comedians,@dopequeenpheebs,@SimoneRSM Ooooh! I hope you like the movie! https://t.co/zvFuTwuWG5 +05/31/2018,Comedians,@dopequeenpheebs,@rachel_handler https://t.co/DAvan30FJZ +05/31/2018,Comedians,@dopequeenpheebs,All of the love and hugs to @adamlevine & @maroon5 for asking me to be a part of the amazing “Girls Like You” music… https://t.co/KK20MqqsrL +05/30/2018,Comedians,@dopequeenpheebs,@awkwafina https://t.co/YkZR3NlR9d +05/30/2018,Comedians,@dopequeenpheebs,@leonardmaltin @YouDonKnowMe @jessiemaltin @DanielleHope26 @NetflixUK @GillianJacobs @vanessabayer @_richardmadden… https://t.co/LAXJtwFNxO +05/30/2018,Comedians,@dopequeenpheebs,@MissNyle 😘😘😘😘 +05/30/2018,Comedians,@dopequeenpheebs,"@MorganJerkins Honestly, I tried reading it and got 50 pgs in and stopped. Never picked it up again. 🤷🏽‍♀️🤷🏽‍♀️🤷🏽‍♀️" +05/29/2018,Comedians,@dopequeenpheebs,BLOOP! I’m so pumped to join the cast of #WhatMenWant! Can’t wait for y’all to watch this!: https://t.co/gx2pUCtegd +05/29/2018,Comedians,@dopequeenpheebs,@ScottAukerman You are truly a gem! Please have me on more of your podcast so I can be a mediocre guest and laugh a… https://t.co/FbSITFpYrF +05/28/2018,Comedians,@dopequeenpheebs,@AmberSeva Link?!?! This is nuts! +05/28/2018,Comedians,@dopequeenpheebs,RT @BravoWWHL: TONIGHT at 11/10c it’s #WWHL w/ @GillianJacobs @vanessabayer & @dopequeenpheebs! https://t.co/5PUeV8DYEe +05/27/2018,Comedians,@dopequeenpheebs,@bekahparrish Just stare and scream. Haha. +05/26/2018,Comedians,@dopequeenpheebs,@NateMartinTO Ooooo! I like that! +05/25/2018,Comedians,@dopequeenpheebs,@iKeralot THANK YOU SO MUCH! +05/24/2018,Comedians,@dopequeenpheebs,Hell. Yes. None of us are equal until all of us are. @ONECampaign’s #PovertyisSexist movement is so vital that I’m… https://t.co/sxsWrlG8sw +05/23/2018,Comedians,@dopequeenpheebs,"Exciting news, boo boos! I went on @LateNightSeth to reveal the cover from my upcoming book “Everything’s Trash, Bu… https://t.co/e1gGWLWIcr" +09/26/2014,Comedians,@dopequeenpheebs,"RT @amandaseales: i need to publish a book of our greatest #scandal tweets cc: @Bossip +@MadameNoire @imcharlaface @PRobinsonComedy @Blacktr…" +09/24/2014,Comedians,@dopequeenpheebs,RT @amandaseales: Lookin like 4 sides of a Shea butter box! Laughs w/ @chescaleigh @PRobinsonComedy @msjwilly at @UCBTheatreEast http://t.c… +07/02/2018,Comedians,@iliza,#savedbythemax @ Saved By The Max - Saved By The Bell Pop Up Shop Diner & Bar https://t.co/IXiIme1aDE +07/01/2018,Comedians,@iliza,Re-enacting my wedding for the sold out @icehousecomedy shows last night. Thank you all so much for being 🔥… https://t.co/U05y2VztcQ +07/01/2018,Comedians,@iliza,This is tonight. Two shows. Gonna do my new hour twice. 🦊 will be there. ❤️🇺🇸🎉✌️ @ Ice House Comedy Club https://t.co/5pPtVZo9Ij +06/30/2018,Comedians,@iliza,@danielletbd @NetflixIsAJoke I would never leave her out! https://t.co/Ok7nSgrFY7 +06/29/2018,Comedians,@iliza,#montreal I will be doing ONE NIGHT @justforlaughs JULY 27! Get your tickets at https://t.co/zUHxXXLnfP and see me… https://t.co/RynSnQppWM +06/28/2018,Comedians,@iliza,RT @rejects: I’m all-in on the new @iliza. https://t.co/tksGOthSjP +06/28/2018,Comedians,@iliza,BREAK OUT YOUR RAZR PHONE AND TEXT YOUR FRIENDS TO WATCH MY NEW @NetflixIsAJoke SPECIAL #ElderMillennial on JULY 24… https://t.co/hrOlwZzapT +06/28/2018,Comedians,@iliza,@LucysGorge YES! Come see me in Maui or Honolulu! https://t.co/dxmHR7oaxt +06/28/2018,Comedians,@iliza,"Tonight, #partygoblin ©️ got to the her story of how she came to be. 💚It was tearful, true and super gross. Thank y… https://t.co/5osYNMGvy2" +06/27/2018,Comedians,@iliza,@bennallsop @NetflixIsAJoke @UGG @juicycouture @netflix soon +06/27/2018,Comedians,@iliza,@JenniMarie684 @channingtatum OH MY GOD AND GET A PICTURE!!!! +06/26/2018,Comedians,@iliza,Today @billnye gave me a pin off his own lapel and now I have space credentials and I’m gonna send a picture to my… https://t.co/j1ThwyNAaF +06/26/2018,Comedians,@iliza,"#dogfear Anytime, anywhere. https://t.co/HVOEtixOZu" +06/26/2018,Comedians,@iliza,"Today I showed @billnye the densest body in our galaxy, a star in the Lamb Cluster nebula, Star SmalliusRarian384… https://t.co/vtLdZpqy8X" +06/25/2018,Comedians,@iliza,"2 SHOWS THIS SATURDAY IN #PASADENA 🦊 WILL BE THERE! +#standupcomedy #comedy #lastandup #standup #eldermillennialtour… https://t.co/xMOLES1GqN" +06/25/2018,Comedians,@iliza,I’ll be at The Mirage @themiragelv for #4thofjuly weekend! Come see me and @hunter_hill and grab your VIP 🎟🤝 ❤️at… https://t.co/OOD6jMozNz +06/25/2018,Comedians,@iliza,@SrhHdlw Me and the people putting out all the artwork and promo stuff for the #ElderMillennial @NetflixIsAJoke special! +06/25/2018,Comedians,@iliza,"RT @_ChelseaChelsea: @hannahrae97 @brookespencer22 BOOM, Gladys. LET’S. PARTY. +-bags of deli turkey +-local pharmacy employees +-pregaming wi…" +06/25/2018,Comedians,@iliza,@HaydenCreates @dejecteddog hmmmmmmmmmmm? +06/25/2018,Comedians,@iliza,@jakesonaplane Force'em! +06/25/2018,Comedians,@iliza,Are you planning an #ElderMillennial watch party? We want to know about it! +06/25/2018,Comedians,@iliza,@urbostonceltics @EmersonCollege We actually were friends haha +06/25/2018,Comedians,@iliza,1997- Present: An autodidactic education in comedy. ❤️There is no right or wrong way to love comedy. Some people ha… https://t.co/32eIUSpRul +06/24/2018,Comedians,@iliza,We would get our fake IDs from #oklahoma because they didn’t have holograms so they were easy to replicate. “Just a… https://t.co/DIcoh2fvt0 +06/24/2018,Comedians,@iliza,Found my @emersoncollege senior yearbook. #boston #emerson #emersoncollege #yearbook #salad https://t.co/jxRZxlDZgh +06/23/2018,Comedians,@iliza,RT @Hunter_Hill: Two sold out shows @RecRoomHB w/ @iliza tonight! Super excited. +06/23/2018,Comedians,@iliza,"We have to start having real conversation with each other, not from anger but to further understanding.I don't like… https://t.co/vKh1h4yHRE" +06/23/2018,Comedians,@iliza,"@tyger429 I'm saying this not from a place of anger but education. You don't start with murder, you start with gal… https://t.co/iO1I2JHTXa" +06/22/2018,Comedians,@iliza,"And the saddest part is, you can't bring up immigration without people saying ""oh so just let them all in?"" or ""LET… https://t.co/rlBSnrS8o1" +06/22/2018,Comedians,@iliza,"I was not a Trade Unionist.Then they came for the Jews, and I did not speak out—Because I was not a Jew. Then they… https://t.co/cMMzw8HYuf" +06/22/2018,Comedians,@iliza,I can't believe this isn't the first time I've felt compelled to post this... Remember the words of Martin Niemölle… https://t.co/XQmJ0AEjYn +06/22/2018,Comedians,@iliza,never see your kid again and their life is ruined as well? That is insane. That's like cutting off a hand for steal… https://t.co/MgZHFrmjxJ +06/22/2018,Comedians,@iliza,Of course you should be punished for crossing illegally but... Do we not think these punishments are exceeding the… https://t.co/lfi5VBFYpo +06/22/2018,Comedians,@iliza,"He's creating an enemy, coming up with an excessive solution, having YOU pay for it as a tax payer and getting a pe… https://t.co/pDSppBJEGt" +06/22/2018,Comedians,@iliza,You can trot out 100s of people from any group and claim them as the face of a problem. The minority doesn't repres… https://t.co/fMBwWJSst3 +06/22/2018,Comedians,@iliza,This has all the makings of a Holocaust. It's not enough to keep saying #neveragain if we stand by. I'm all for bor… https://t.co/kBMuU7iP0Q +06/22/2018,Comedians,@iliza,RT @AmericanGreedTV: @iliza @HollywoodImprov @TheComedyStore Hey July 24th! What's keepin' ya? New @iliza Special on @netflix . +06/22/2018,Comedians,@iliza,TONIGHT! I'm @HollywoodImprov 8pm show and @TheComedyStore at 9:30! +06/22/2018,Comedians,@iliza,"Oh wow, this gets really good at 1:27!! + +https://t.co/KYrca7U9qs" +06/22/2018,Comedians,@iliza,@kimh0013 I never got through +06/22/2018,Comedians,@iliza,@Kristen_Bashaw That's a trend that's still alive and well in many suburbs of America +06/22/2018,Comedians,@iliza,"@BunsAndBites I cut up so many tights to go under my skirt, ugh" +06/22/2018,Comedians,@iliza,Thanks @Variety https://t.co/ZeA5tDyuM3 !! +06/21/2018,Comedians,@iliza,"4- And I could wake up with a full face of last night's make up, eat 2 burritos, do some odd job, 7 minutes of okay… https://t.co/xBzdqbTk3d" +06/21/2018,Comedians,@iliza,3- I had worn these like 20 dollar trash boots I had gotten at some garbage store on Melrose and they hurt my feet… https://t.co/qJ0THXWyxN +06/21/2018,Comedians,@iliza,"2- monster club promoter, this awful woman in, of course, a fedora, made me pay her for the carton, she wouldn't ev… https://t.co/nwOo5QECiv" +06/21/2018,Comedians,@iliza,"1 - Being an LA #Eldermillennial was gross. I got a job at the coat check for, what was, Pray (now Nightingale Plaz… https://t.co/iFCD1i5Xk2" +06/20/2018,Comedians,@iliza,My greatest #eldermillennial memory is being 23 and thinking we were crushing life because we got into garbage club… https://t.co/QtTZelahX9 +06/20/2018,Comedians,@iliza,@danielletbd THANK YOU FOR THE SUPPORT! +06/20/2018,Comedians,@iliza,"@danielletbd totally, you just have to whisper ""trademarked"" every time you say it." +06/20/2018,Comedians,@iliza,"@danielletbd Hey, thank you for not tagging me in that, I appreciate that. I have no idea how you ended up blocked,… https://t.co/VNsRQBGjvt" +06/20/2018,Comedians,@iliza,"@no_day_but_2day I'd always be like ""it's not Saved by the Bell, but it will do.""" +06/20/2018,Comedians,@iliza,RT @kittykatelc: Let me tell you about my girl crush @iliza and her latest comedy show #ElderMillennial https://t.co/rPLnVapNF4 https://t.c… +06/20/2018,Comedians,@iliza,@kittykatelc Hey! Thank you for this! +06/20/2018,Comedians,@iliza,"@AmberRetro so much, all over everyone." +06/20/2018,Comedians,@iliza,@dayvidgrad Bahahaha devil sticks on every outdoor promenade and in the quad of every college. +06/20/2018,Comedians,@iliza,@LisaKayyye Did? Do. Still do. +06/20/2018,Comedians,@iliza,"Well guys, I'm gonna use all my minutes calling you on my LG Chocolate because @ParisHilton liked my tweet. The… https://t.co/nmWojyk9dF" +06/20/2018,Comedians,@iliza,"#eldermillennial memories also included lot of lower belly exposure, wrist sweatbands, leopard print belts and thin… https://t.co/ypaKD8o254" +06/20/2018,Comedians,@iliza,"@heidig121011 hated handkerchief tops but loved butterfly clips. Ew yeah, those straps fooled no one." +06/20/2018,Comedians,@iliza,@TheHezzEffect Waiting for seconds at a time! +06/20/2018,Comedians,@iliza,"@kisoumcg She was the early 2000s, she guided us. @ParisHilton was our God." +06/20/2018,Comedians,@iliza,"@itschelsfoster And you'd always think ""oh great, I'll make all my calls then"" but somehow I never felt I got my money's worth" +06/20/2018,Comedians,@iliza,@BeingZhenya and roll over minutes +06/20/2018,Comedians,@iliza,"@TehSoundTehFury ""Mom, raving is a way of life. PLUR.""" +06/20/2018,Comedians,@iliza,@Sarah__Deline OMG THE WORST hahaha +06/20/2018,Comedians,@iliza,"What are some of your #eldermillennial memories? Mine are all nightmares: low rise jeans, body glitter, tinted sung… https://t.co/td0sxggH2h" +06/20/2018,Comedians,@iliza,My new and 4th @NetflixIsAJoke special comes out July 24th! So grab your @UGG boots and @juicycouture sweatsuits an… https://t.co/Cs7ZeVSQ4G +06/20/2018,Comedians,@iliza,I’m excited to announce the premiere date of my… https://t.co/vBduCFirzb +06/20/2018,Comedians,@iliza,"I have a very special announcement for you at all 11am PST tomorrow morning... + +https://t.co/1lDsjbte0U https://t.co/692Rp94hQV" +06/19/2018,Comedians,@iliza,HUNTINGTON BEACH! This SATURDAY! I’m running… https://t.co/FQV58M5BXB +06/19/2018,Comedians,@iliza,"@SaltLifeGirl14 Party Goblin says AGN498792O23^*OI&%ROH:HIONVWN'IO43[HOWIGBV;BVJN/LWNKL)*%) + +She has claws, she can't type" +06/19/2018,Comedians,@iliza,@ldisalmostfunny I was just there. I'll be back. Also that drink sounds amazing. +06/19/2018,Comedians,@iliza,Wow! At https://t.co/t3hNHRfBvs When you buy a 💚🦊🍤 pin set you… https://t.co/C4h3XE4IYF +06/19/2018,Comedians,@iliza,"#Newyork in November. 🦊🍁🍂 +See you… https://t.co/bB5GpERwuR" +06/18/2018,Comedians,@iliza,"#Boston 💚🦊🍤 +. +. +. +. +#boston #bostoncomedy… https://t.co/n4ha9uV5Gv" +06/18/2018,Comedians,@iliza,"Your #4thofjuly plans should be as follows: +1)… https://t.co/x1AOHMxbob" +06/16/2018,Comedians,@iliza,You just have to know what’s in these burritos… https://t.co/7tlARdnSgc +06/16/2018,Comedians,@iliza,Oooooo see me headline Kaaboooooo! Get tickets… https://t.co/PyKATezwcH +06/15/2018,Comedians,@iliza,@iliza only looked mildly worried about her… https://t.co/u6z9EYCQ24 +06/15/2018,Comedians,@iliza,NO ONE GETS TO HAVE BLONDE HAIR BUT ME! Jk. Fun… https://t.co/4EOVgPnmTF +06/15/2018,Comedians,@iliza,This was our wedding ode to Velasquez’s “Las… https://t.co/dxf5U3sW0B +06/15/2018,Comedians,@iliza,The one I posted before was blurry so here it is… https://t.co/2OWInsJm1q +06/15/2018,Comedians,@iliza,The one I posted before was blurry so here it is… https://t.co/yIT5jhsL5b +06/15/2018,Comedians,@iliza,Yes I put LED lights in my hair for our first… https://t.co/BOF5Nv4EEZ +06/15/2018,Comedians,@iliza,@wolfegrrl @netflix so soon +06/14/2018,Comedians,@iliza,"Priorities were- +1- Balloon cloud sculpture +2-… https://t.co/YBePcmMlP3" +06/14/2018,Comedians,@iliza,I picked my best friend and threw the bouquet… https://t.co/uiMB6HrEnT +06/14/2018,Comedians,@iliza,I loved my #chuppah - that room was so perfect… https://t.co/X5SEC6sxFO +06/13/2018,Comedians,@iliza,Our wedding 🤵🏻👰🏼🦊 and the full story is at… https://t.co/X6SzfhrMGN +06/12/2018,Comedians,@iliza,@MikeDrucker Putting this on a Father's Day card +06/12/2018,Comedians,@iliza,@cpmcclennan Fish vaginas! +06/12/2018,Comedians,@iliza,@1AndrewRose Such a long walk for the shortest sip of water +06/12/2018,Comedians,@iliza,"I'm HEADLINING kaaboodelmar on Saturday,… https://t.co/xe3hdR7xoW" +06/12/2018,Comedians,@iliza,@MyKneeShakes To let others know they are not alone! *Blows dust *disappears +06/12/2018,Comedians,@iliza,See me in #Montreal at @justforlaughs for one… https://t.co/mnQW9kL5GD +06/10/2018,Comedians,@iliza,"🎉TONIGHT🎉 +Come see me @thecomedystore… https://t.co/3BpynAnKCh" +06/08/2018,Comedians,@iliza,RT @TheComedyStore: 9pm Original Room tonight see @marcmaron @iliza @SklarBrothers @TheoVon +more til 2! Less than 20 tickets left: https:/… +06/08/2018,Comedians,@iliza,@JohnMZ91493 Thank you for reading! +06/07/2018,Comedians,@iliza,RT @lorigibbs: Calgary & Edmonton. I will be opening for @iliza… https://t.co/UEEON6UfEr +06/07/2018,Comedians,@iliza,Today’s… https://t.co/HHaMRbpkD8 +06/07/2018,Comedians,@iliza,RT @HollywoodImprov: TMRW! @Iliza @JamieKennedy @TheoVon @SklarBrothers @RafinhaBastos & @BrianMonarch are taking the stage! Get your ticke… +06/06/2018,Comedians,@iliza,So much rural #canada so little time.… https://t.co/WIXubi8jEQ +06/06/2018,Comedians,@iliza,THIS WEEK I'll be @TheComedyStore TONIGHT: 9:15. THURSDAY: 9:45 FRIDAY: 10:45 SATURDAY: 8:30 & 10:30 AND @HollywoodImprov THURSDAY at 10:15! +06/06/2018,Comedians,@iliza,@CB__Comedy Can't stop won't stop +06/05/2018,Comedians,@iliza,"When my friend @pbernon showed me this hilarious photo mix up in @THR today my first thought was ""Finkle is Einhorn… https://t.co/tZ0hUwsMUd" +06/05/2018,Comedians,@iliza,"May this sticker shame, inspire and or motivate… https://t.co/vXPPMdnShp" +06/04/2018,Comedians,@iliza,"SECOND SHOW ADDED IN PORTLAND! 🌲☕️🧘‍♀️🍻🌥👓🎒 +GET… https://t.co/k2W1nBzmBB" +06/04/2018,Comedians,@iliza,Me looking for places to go for our trip: “I… https://t.co/qqDwOKqTbn +05/31/2018,Comedians,@iliza,"I’M COMING TO EAT YOU, NEW YORK! BLANCHE IS… https://t.co/aHAjhYIPoh" +05/30/2018,Comedians,@iliza,https://t.co/UpNX7h5Bns for your 🎟&🤝 https://t.co/KT01qjxjcf +05/29/2018,Comedians,@iliza,"PORTLAND: We’ve added a second show! Tickets for August 25th go on sale this Friday, June 1st. 🎟 https://t.co/if1Pu3ZKnD" +05/29/2018,Comedians,@iliza,Loving #1968 @CNNOriginals - great history lesson/recap for #MemorialDayWeekend @CNN +05/29/2018,Comedians,@iliza,“The Shade Of It All” https://t.co/651qyHpA76 +05/28/2018,Comedians,@iliza,Add some beauty to your life and follow her… https://t.co/6I8VRWe05k +05/27/2018,Comedians,@iliza,Thank you to thejointstaff @the_uso for… https://t.co/xOk0Zkg5nh +05/27/2018,Comedians,@iliza,My fans remembered that a year ago today I got… https://t.co/oAX7whrvsU +05/26/2018,Comedians,@iliza,"@KelseyEIngram Nice try, pretty girl! 🤗😍" +05/26/2018,Comedians,@iliza,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 +Patrick Henry said “Give me… https://t.co/NgEZWRUmEs" +05/26/2018,Comedians,@iliza,@smallpools I AM ON MY HONEYMOON AND I AM SO SAD I MISSED THIS! I got your new single and will be listening to your… https://t.co/q3VaTTncbI +05/26/2018,Comedians,@iliza,RT @HOT107Edmonton: She is the only female and youngest comedian to hold the title of NBC's Last Comic Standing! @iliza Shlesinger will be… +05/24/2018,Comedians,@iliza,"#eldermillennialtour has bar laced its sneakers,… https://t.co/g4rTPLlqFw" +05/24/2018,Comedians,@iliza,"#eldermillennialtour has bar laced its sneakers,… https://t.co/ZZJv4R3GaN" +05/21/2018,Comedians,@iliza,The #eldermillennialtour is selling OUT! And we… https://t.co/fefJS2tTtP +05/18/2018,Comedians,@iliza,Tickets are now on sale for #JFLMTL! https://t.co/y02GKu9I5I https://t.co/MmbG1gRLQ8 +05/17/2018,Comedians,@iliza,"I can hear both. But if you never said “yanny” which isn’t a thing, everyone would hear Laurel. Just like when som… https://t.co/tqu9sbVjxF" +05/17/2018,Comedians,@iliza,@ditzkoff Oh wow I am very much looking forward to checking this out! Been a fan of yours for a while and this looks awesome!! +05/17/2018,Comedians,@iliza,"RT @exclaimdotca: Just for Laughs adds names to the #JFLMTL lineup, continues bid to become comedy's Coachella: https://t.co/TJAmkXNBS6 htt…" +05/17/2018,Comedians,@iliza,@CraigGeraghty Awwedding twins!!! +05/17/2018,Comedians,@iliza,MONTREAL! Every few years I return to your city… https://t.co/wT1OrwlA5I +05/16/2018,Comedians,@iliza,RT @iliza: Hey Party Goblins! Join me for Just For Laughs Montreal July 27th! Pre-sale tickets are available now with code JFLMTL. https://… +05/16/2018,Comedians,@iliza,It’s in print so it has to be true! Thanks @usweekly https://t.co/mmJYMsHpBY +05/16/2018,Comedians,@iliza,Hey Party Goblins! Join me for Just For Laughs… https://t.co/heGFtUxRGa +05/16/2018,Comedians,@iliza,Hey Party Goblins! Join me for Just For Laughs Montreal July 27th! Pre-sale tickets are available now with code JFL… https://t.co/NJvPkEqxLY +05/16/2018,Comedians,@iliza,RT @wlcmdistraction: #GirlLogic by @iliza is $1.95 on @audible_com TODAY ONLY!!! Go buy it now! You have no excuses... unless you're a chea… +05/16/2018,Comedians,@iliza,"@united can someone DM me about why, stuck in Austria, you guys kicked me off my flight and put me on a later fligh… https://t.co/C05uVDi3fE" +05/15/2018,Comedians,@iliza,RT @the_USO: Thanks @iliza for joining us as a Force Behind the Forces! #BeTheForce https://t.co/btUXarkV6X +05/15/2018,Comedians,@iliza,See you in a few weeks my special lamb. In 🇮🇹 you are piccolo e… https://t.co/DeBnE4vAmG +05/15/2018,Comedians,@iliza,I'm proud to wear my support of our service men & women! #BeTheForce Behind the Forces with @the_USO by supporting… https://t.co/O03dqxpaZs +05/14/2018,Comedians,@iliza,RT @GreyEagleResort: Congratulations to @iliza and @galuten on their beautiful wedding! Catch her in all her newlywed hilarity this August… +05/14/2018,Comedians,@iliza,"@KAABOODELMAR @galuten Aw, thank you. See you guys in September 🎤☀️🌴" +05/14/2018,Comedians,@iliza,RT @usweekly: Former 'Last Comic Standing' winner Iliza Shlesinger marries chef Noah Galuten https://t.co/FdzroQD99N @iliza @galuten +05/14/2018,Comedians,@iliza,And here are the 534 rhinestones and pearls I glued to my Nikes. Thanks for mentioning that detail @usweekly… https://t.co/ms85V6gJkd +05/14/2018,Comedians,@iliza,"Turns out, “Thanks so much for coming out tonight” applies to ending comedy shows and weddings. On behalf of me and… https://t.co/4wEYn5nYVb" +05/14/2018,Comedians,@iliza,@AmericanGreedTV @ChuckCNBC Thanks guys! +05/13/2018,Comedians,@iliza,"#Repost @usweekly with get_repost +・・・ +Comedian Iliza Shlesinger has… https://t.co/CErXyqYMxK" +05/13/2018,Comedians,@iliza,RT @usweekly: Comedian Iliza Shlesinger marries chef Noah Galuten https://t.co/FdzroQD99N @iliza @galuten +05/13/2018,Comedians,@iliza,Comedian Iliza Shlesinger Marries Chef Noah Galuten https://t.co/zPkDOFhDYk SMOKEY HUSKY HAS A REAL NAME!!! +05/12/2018,Comedians,@iliza,"RT @LilMsShrtCake: @iliza wanted2say Congrats🍾🍀👰🏼🎩I’ve been👀all ur adventures w Smokey @galuten he’s def the1, he truly adores U & Bebo💛 &…" +05/12/2018,Comedians,@iliza,21 Jumpsuit @ Drago Centro https://t.co/YWmGDKsMsI +05/10/2018,Comedians,@iliza,RT @RecRoomHB: Just announced & tickets are MOVING! Don’t miss our BFF @iliza! One night. Two shows. Share the gospel. https://t.co/8qEtl3Q… +05/10/2018,Comedians,@iliza,"RT @TheCrofoot: Did you hear? We're bringing @iliza to @michigantheater on September 28th. +Tix: https://t.co/fAYxhcXYUa https://t.co/XX8wuh…" +05/10/2018,Comedians,@iliza,"@BassTrilogy @jimjefferies Like a slow Phoenix, i will rise and return..." +05/10/2018,Comedians,@iliza,@UncleWolfox No bottled water. Most people are not that dehydrated that we need compacted water within arm’s reach at all times. +05/10/2018,Comedians,@iliza,@TheMrWulff12 Why would I have a lawn when there is a drought! Now step away from my SUV! +05/10/2018,Comedians,@iliza,"Smoking cigarettes looks cool, there is no denying it. But aside from that? It’s a vile selfish habit and you compo… https://t.co/My96wlnUvf" +05/10/2018,Comedians,@iliza,I did it. I finally said “try a trash can next time” to someone who threw their LIT cigarette into the street. I’m… https://t.co/O1kYNIbaEB +05/10/2018,Comedians,@iliza,@AmyKinLA No one who would carry that is actually eating that. +05/09/2018,Comedians,@iliza,LAS VEGAS! Come for the 🇺🇸 stay for the #partygoblin #4thofjuly… https://t.co/nBFXJui1Y1 +05/09/2018,Comedians,@iliza,"RT @GregLongstreet: Why are the closing credits to ""Predator"" like the opening credits to a 70s/80s era sitcom? https://t.co/n2xzqRxDFD" +05/09/2018,Comedians,@iliza,SECOND SHOW ADDED IN #Boston @the_wilbur GO TO https://t.co/H8ipefMDIP for 🎟 VIP… https://t.co/ULKXNMks8U +05/09/2018,Comedians,@iliza,"RT @rBostonComedy: Second show added to see +@Iliza: Elder Millennial tour at @The_Wilbur +Saturday, September 22nd - 9:45PM +Presale HAPPENIN…" +05/09/2018,Comedians,@iliza,"RT @rBostonComedy: Second show added to see +@Iliza: Elder Millennial tour at @The_Wilbur +Saturday, September 22nd - 9:45PM +Presale begins N…" +05/09/2018,Comedians,@iliza,"RT @Do617: ☀️ Good morning, millennials! LATE SHOW ADDED BY POPULAR DEMAND for @iliza #ElderMillenial at @The_Wilbur! Use Code DO617 to get…" +05/09/2018,Comedians,@iliza,"Thank you @WeAreTheMighty and @the_USO for using a picture of me when I had like, really good hair! Support our tro… https://t.co/TlECKRcMZY" +05/09/2018,Comedians,@iliza,Tonight was my last set as a non married woman and I'm glad I got it out of my system because I FUCKED THAT CROWD t… https://t.co/kr4knw8k9g +05/09/2018,Comedians,@iliza,@vanessa_dews YES! Hopefully this winter! (American winter) +05/09/2018,Comedians,@iliza,RT @TheComedyStore: 9pm Original Room @madflavor @realjeffreyross @iliza @SebastianComedy @bobbyleelive @thechrisspencer @SteveRannazzisi @… +05/08/2018,Comedians,@iliza,@unrulyhooly AND MY DOG! +05/08/2018,Comedians,@iliza,@drewmagary @mattufford Just read this- @drewmagary is hilarious and @mattufford i will now follow you into traffi… https://t.co/9c6YDudqvT +05/08/2018,Comedians,@iliza,"RT @drewmagary: Your FUNBAG guest host this week is the incomparable @mattufford, so dig in. https://t.co/n4MeShlhid" +05/08/2018,Comedians,@iliza,"@piersmorgan K, this is what white women would look like with payot... https://t.co/SUoMOZ77bV" +05/08/2018,Comedians,@iliza,I didn’t want to interrupt him while he was having a conversation so… https://t.co/Z9kkkOhHDI +05/08/2018,Comedians,@iliza,@davejorgenson @laurenduca Hahaha +05/08/2018,Comedians,@iliza,Tickets 🎟🎟 VIP 🤝 meet and greet for my #eldermillennialtour at… https://t.co/SQHUbnDXtv +05/08/2018,Comedians,@iliza,#MetGala https://t.co/THFxKOBr44 +05/07/2018,Comedians,@iliza,A “Good Vibes Only” sign in your business is a great way to let people know your staff is incapable but anyone who notices that too uptight. +05/07/2018,Comedians,@iliza,"SECOND SHOW ADDED TO #BOSTON +Venue Presale: Wednesday, 5/9 @ 12PM EST – Thursday, 5/10 @ 11:59PM EST +Presale Code:… https://t.co/Mn400kNAX4" +05/07/2018,Comedians,@iliza,"@hankypanty @JeeyaDhadkDhadk @TheComedyStore Oh wow, thank you!" +05/07/2018,Comedians,@iliza,@lorigibbs @thatonequeen What you need to know about her? ENTER THAT ROOM #PURSEFIRST 👛☝️ +05/06/2018,Comedians,@iliza,@lorigibbs @thatonequeen Also @TheBiancaDelRio is so witty and so quick she makes us look like we just woke up. She is an assassin! +05/06/2018,Comedians,@iliza,@lorigibbs @thatonequeen He is hilarious! +05/06/2018,Comedians,@iliza,@lorigibbs OH MY GOD CALL ME IF YOU HAVE ANY QUESTIONS ABOUT ANY EPISODE EVER +05/06/2018,Comedians,@iliza,@wyldride Omg that is genius hahahahahahah +05/06/2018,Comedians,@iliza,Just a close up of my wedding dress because I want the judgement to be granular and blossom into something I can ca… https://t.co/4w03jDeafo +05/06/2018,Comedians,@iliza,Making these for the honeymoon plane ride that way when i flip out at an airline and get detained in a foreign jail… https://t.co/E1D0Q71OCo +05/06/2018,Comedians,@iliza,"@jakesonaplane Hey man, thanks 🍤" +05/05/2018,Comedians,@iliza,RT @HOT107Edmonton: Iliza Shlesinger brings her Elder Millennial Tour to @RiverCreeCasino on August 18th! Enter now to win tickets to see c… +05/05/2018,Comedians,@iliza,RT @TheComedyStore: 7pm Main Room @DaneCook @marcmaron @iliza @brianmonarch +more! Only 39 tickets left: https://t.co/yvyhW7ekJ2 +05/05/2018,Comedians,@iliza,We overhype mediocrity because we look for anything to represent hope and change... and not all are always capable… https://t.co/qn3pr6SL03 +05/05/2018,Comedians,@iliza,RT @AccessVegas: Iliza Shlesinger Performing Live in #Vegas July 7. Tickets: https://t.co/VOHjpymiNl @iliza https://t.co/xJv9Augss3 +05/05/2018,Comedians,@iliza,I don’t care what a fucking DJ thinks. +05/04/2018,Comedians,@iliza,See you guys Saturday @TheComedyStore SATURDAY AT 9 and 10:30. Main Room. Get 🎟🎟 now. +05/03/2018,Comedians,@iliza,Hair inquiry and tutorial. #hair #bun #fashiom #juice #blonde #caleb… https://t.co/3U155lxEaA +05/02/2018,Comedians,@iliza,Get your tickets at https://t.co/t3hNHRfBvs and don’t yip at me about your city not being… https://t.co/64Oe31nYYj +05/02/2018,Comedians,@iliza,@Taurustempest Beautiful! +05/02/2018,Comedians,@iliza,"RT @Taurustempest: @iliza So happy you're coming to Indy! Tickets: bought! Now, do I make a new shirt or stick with the Kinnamon one? Hmmm.…" +05/02/2018,Comedians,@iliza,@MeganShook Pretty sure i already have this dog +05/01/2018,Comedians,@iliza,I’ll be @TheComedyStore this Saturday night for 2 shows. Starting at 9! +04/30/2018,Comedians,@iliza,🎟and 🍖🤝 (Tickets and meat and greet with 🦊) available for you at https://t.co/UpNX7h5Bns https://t.co/hVFBawLM2J +06/04/2018,Comedians,@aliwong,#FYC https://t.co/wy77yUlBL3 +05/30/2018,Comedians,@aliwong,!!!!!!!!!!! https://t.co/01YveutU2c +05/25/2018,Comedians,@aliwong,Is Sunday here yet????!!!! https://t.co/XMAlqjNQsl +05/21/2018,Comedians,@aliwong,This made my day! https://t.co/HV159BlzUW +05/16/2018,Comedians,@aliwong,Thank you for watching https://t.co/M6geV7jq0c +05/16/2018,Comedians,@aliwong,RT @ImMegDonnelly: WHO’S WATCHING #AMERICANHOUSEWIFE TONIGHT?!?!?!? 🤩🤩🤩 +05/15/2018,Comedians,@aliwong,RT @MadyColey: My mom trying to watch the new @aliwong Netflix special and DYING https://t.co/bXbpk2u5Nn +05/14/2018,Comedians,@aliwong,@mulaney 😭😭😭😭😭 +05/13/2018,Comedians,@aliwong,"Happy Mother’s Day to the true, original #HardKnockWife https://t.co/2KSfpqsW8P" +05/08/2018,Comedians,@aliwong,#fysee https://t.co/xeKs0kZNqK +05/07/2018,Comedians,@aliwong,RT @TheAVClub: .@aliwong joins @TiffanyHaddish in #BoJackHorseman team's new show https://t.co/1zvzogRmWD https://t.co/WWBoCVEdFt +05/05/2018,Comedians,@aliwong,I have watched this 10 times today. I plan on watching it 10 more times before I sleep. https://t.co/S0RMBV3P3a +05/03/2018,Comedians,@aliwong,@davidchang @uglydelicious @colbertlateshow !!!!!! +05/02/2018,Comedians,@aliwong,https://t.co/dqLshTINdY +05/02/2018,Comedians,@aliwong,RT @WendyMolyneux: Dennis Miller all night tonight figuring out those perfect Michelle Wolf burns for tomorrow. https://t.co/gapdqQsSOF +05/01/2018,Comedians,@aliwong,RT @ItsMeCathi: James Shaw Jr. is paying for the funeral of each of the four Waffle House shooting victims out of the gofundme monies raise… +04/30/2018,Comedians,@aliwong,"@mulaney sold out a bajillion shows at Radio City, and if you watch this special, you'll see why. i cannot wait. https://t.co/8wjsmSIyGP" +04/30/2018,Comedians,@aliwong,BOSTON! The first 3 shows are SOLD OUT but there are a few tix left for the 4th this Saturday. Tix here: https://t.co/8IazHOyzlr +04/30/2018,Comedians,@aliwong,RT @neiltyson: When did it become okay to be more offended by what someone with no power says than by what someone with power does? +04/29/2018,Comedians,@aliwong,@michelleisawolf was freaking AMAZING tonight at the #WHCD !!!!! +04/29/2018,Comedians,@aliwong,@michelleisawolf SHE WAS AMAZING!!!! https://t.co/TsrDvLP0Xh +04/29/2018,Comedians,@aliwong,RT @iamwandasykes: This man is a Hero! I want him in the next Black Panther movie! #bravery #compassion I ❤️ this dude! https://t.co/sEVz8… +04/29/2018,Comedians,@aliwong,RT @Emma4Change: my hero James Shaw Jr. https://t.co/BRnuYEURdv +04/19/2018,Comedians,@aliwong,@TheComedyStore THANK YOU!!! +04/19/2018,Comedians,@aliwong,"RT @anthonyjeselnik: Ali Wong is one of the absolute funniest comics working right now. And watching this trailer, it's impossible to see…" +04/18/2018,Comedians,@aliwong,@Bradleyduaneinc May 13! +04/17/2018,Comedians,@aliwong,THESE ARE MY FRIENDS AND I LOVE THEM SO MUCH! https://t.co/TGdpiIrH4N +04/16/2018,Comedians,@aliwong,My homie @amyschumer stars in a new movie #ifeelpretty opening this Friday!!!! https://t.co/41KwJhq0EM +04/13/2018,Comedians,@aliwong,RT @TheEllenShow: .@AliWong has suffered enough. https://t.co/O5FpB8GloO +04/13/2018,Comedians,@aliwong,"RT @NetflixIsAJoke: .@AliWong is back, she's twerking, and she's ready to deliver. Mother's Day 2018. #HardKnockWife https://t.co/afNg4ZTEkN" +03/30/2018,Comedians,@aliwong,Oh my gahds!!!!! https://t.co/RgUHshJowz +03/28/2018,Comedians,@aliwong,"RT @kumailn: ICE arrests have increased 30%. The fastest-growing category of arrests? Those with no criminal records. + +That's why I joined…" +03/27/2018,Comedians,@aliwong,RT @dianeguerrero__: The #WeHaveRights series by @ACLU empowers you to know and defend your rights in encounters with ICE. https://t.co/Iy… +03/26/2018,Comedians,@aliwong,"RT @kearnystreet: Celebrating 45 brave years @kearnystreet, the first multidisciplinary API arts org that has supported artists like @aliwo…" +03/23/2018,Comedians,@aliwong,RT @Variety: 'Fresh Off the Boat' showrunner Nahnatchka Khan is reteaming with @aliwong and @parkrandall for a @netflix romantic comedy htt… +03/23/2018,Comedians,@aliwong,🙌 https://t.co/WCTnmsAxue +03/15/2018,Comedians,@aliwong,@bader_diedrich 😘😘😘 +03/14/2018,Comedians,@aliwong,RT @KaplanAaron: Catch an all-new episode of @AmericanWifeABC TONIGHT at 9:30/8:30c on @ABCNetwork!! @KatyEMixon @bader_diedrich @ImMegDonn… +03/14/2018,Comedians,@aliwong,"RT @rBostonComedy: FOURTH SHOW ADDED to see @aliwong +at @TheChevalierMA Theatre in Medford +Saturday, May 5th - 9:45pm +Get tickets before an…" +03/14/2018,Comedians,@aliwong,@aparnapkin I ADORE U +03/13/2018,Comedians,@aliwong,🙌 https://t.co/FJUoORqL59 +03/13/2018,Comedians,@aliwong,"Everyone go see @aparnapkin live. She is and has always been, one of my favorites https://t.co/kkqaoUm6Pm" +03/07/2018,Comedians,@aliwong,RT @KaplanAaron: An all-new episode of @AmericanWifeABC airs TONIGHT on @ABCNetwork -- don't miss it! @KatyEMixon @bader_diedrich @DDiMaggi… +03/05/2018,Comedians,@aliwong,"While peeps spent the day getting ready for the Oscars, I was over here... https://t.co/neM4pAzy1c" +03/03/2018,Comedians,@aliwong,@MekitaRivas 2019 or 2020 +03/03/2018,Comedians,@aliwong,BOSTON! https://t.co/ks0cxUE2PU +02/28/2018,Comedians,@aliwong,BOSTON! https://t.co/lGCLiEMsQd +02/28/2018,Comedians,@aliwong,BOSTON! The presale for my May 4th show at the Chevalier Theatre begins now. Go to… https://t.co/5jijyc1kS2 +02/28/2018,Comedians,@aliwong,@lizamarie1022 CVR28 +02/22/2018,Comedians,@aliwong,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/19/2018,Comedians,@aliwong,I love this so much. Congrats! https://t.co/c1PmYJUyew +02/19/2018,Comedians,@aliwong,#AllStarWeekend #2kids #TheJoyOfMotherhood https://t.co/oPnZlRU34u +02/18/2018,Comedians,@aliwong,"RT @MichaelSkolnik: Emma Gonzalez. A student at Marjory Stoneman Douglas High School. + +An American Hero. + +Watch This. + +All of it. + +The…" +02/12/2018,Comedians,@aliwong,I CANNOT WAIT FOR THIS!!!!! https://t.co/vLL2O44XjU +01/21/2018,Comedians,@aliwong,@JohnTheCho All sorts of joy shooting through my heart! +01/08/2018,Comedians,@aliwong,"RT @goldenglobes: “I want all of the girls watching here now to know, that a new day is on the horizon.” @Oprah accepts the 2018 Cecil B. d…" +12/30/2017,Comedians,@aliwong,RT @aparnapkin: social media is just a long line of other people trying to sell you mixtapes of their mental demons +12/30/2017,Comedians,@aliwong,RT @JohnTheCho: https://t.co/MjaVc8q2f1 +12/25/2017,Comedians,@aliwong,"RT @dianaphamfatale: Forget Sheryl Sandburg, I take my motivational quotes from @aliwong. #tea #christmasjoy https://t.co/EeJv85K57p" +12/15/2017,Comedians,@aliwong,"RT @netflix: We’re disappointed in the decision to gut #NetNeutrality protections that ushered in an unprecedented era of innovation, creat…" +12/15/2017,Comedians,@aliwong,RT @jodikantor: Excellent questions from the wall of my daughter’s classroom. https://t.co/ntgKHYG9eU +12/14/2017,Comedians,@aliwong,"RT @JarettSays: #NetNeutrality could vanish in TWO DAYS!!!! + +PLEASE call Congress NOW: 202-759-7766 https://t.co/6g7hwCHRMa" +12/13/2017,Comedians,@aliwong,All new episode tonight! https://t.co/ddR6OjqpBa +12/13/2017,Comedians,@aliwong,RT @wkamaubell: Salma Hayek: Harvey Weinstein Is My Monster Too https://t.co/D56eysbHpT +12/13/2017,Comedians,@aliwong,RT @guybranum: I just want to wish everyone with Jewish lawyers a very happy Hanukkah. +12/13/2017,Comedians,@aliwong,WOOOOOOOOO HOOOOOOOOOOO!!!!! +12/12/2017,Comedians,@aliwong,"RT @ELLEmagazine: Jada Pinkett Smith: ""I have so much to say on why @TiffanyHaddish was not nominated for a Globe... but I won't"" + +Also Jad…" +12/11/2017,Comedians,@aliwong,RT @ong_going: I have never wanted a shirt more. @aliwong https://t.co/4Ga7bmREVC #colonizethecolonizer +12/08/2017,Comedians,@aliwong,RT @billyeichner: It's that time of year - the AMY POEHLER CHRISTMAS CAROL AMBUSH from BILLY ON THE STREET! A HOLIDAY CLASSIC! #tbt #Billyo… +12/07/2017,Comedians,@aliwong,"RT @LailaLalami: Woman reports a predator anonymously. +""Anonymous accusations aren't credible!"" +Woman reports under her name. +""She just wan…" +12/07/2017,Comedians,@aliwong,RT @goldengateblond: This photo belongs in the Louvre. https://t.co/oyrqrhpPSP +12/07/2017,Comedians,@aliwong,RT @LauraPrepon: #ThrowbackThursday to @NBCChelsea with my girl @AliWong who you can now see killing it on @AmericanWifeABC. #TBT https://t… +12/01/2017,Comedians,@aliwong,"RT @SInow: It is a rare person who gives up what he loves in exchange for what he believes. + +Colin Kaepernick is the winner of SI’s Muhamm…" +11/28/2017,Comedians,@aliwong,"RT @Todaysparent: .@aliwong has ""got the power"" in her hilarious new Instagram video. 😂💪🤰 —> https://t.co/CMXhTrUQaI https://t.co/o3DZiBzrJV" +11/28/2017,Comedians,@aliwong,RT @nowthisnews: President Obama said repealing net neutrality would ‘end the internet as we know it’ https://t.co/n5wn3JMgpu +11/28/2017,Comedians,@aliwong,"RT @MikeDrucker: Remember when we used to be mad that social media was mostly photos of people’s meals, and now when we see photos of peopl…" +11/25/2017,Comedians,@aliwong,"RT @clarewxy: Queen @aliwong just dropped her new #BabyCobra apparel line 👀 https://t.co/ktFospKIw9 + +""I don't want to lean in. I want to li…" +11/22/2017,Comedians,@aliwong,"If you haven’t already, watch this!!! One of my favorite movies this year. https://t.co/RiMzYBR0E3" +11/16/2017,Comedians,@aliwong,RT @AmericanWifeABC: Thanksgiving with the Ottos will definitely be stuffed with surprises. 🦃 https://t.co/kTErhwRojm +11/13/2017,Comedians,@aliwong,"RT @Kaepernick7: I'm honored to be recognized by @GQMagazine as Citizen of the Year. + +https://t.co/s6wBZTa6tH" +11/12/2017,Comedians,@aliwong,TIFFANY is on @nbcsnl TONIGHT TONIGHT TONIGHT! https://t.co/SNjfhT9BX1 +11/08/2017,Comedians,@aliwong,"RT @CNN: - Openly transgender candidates won races + +- Minneapolis: First openly transgender person of color elected + +- New Jersey: First Si…" +11/06/2017,Comedians,@aliwong,RT @Alyssa_Milano: Amazing news! Open enrollment happening right now at https://t.co/GE3NsxPjww! #GetCoveredNow https://t.co/76c9dHOQXZ +11/02/2017,Comedians,@aliwong,RT @oliviamunn: In 2011 it didn't matter enough to make a lasting effect 😕 Thank God it's a new day. ❤️❤️❤️🌤 https://t.co/fwKWGUbYh4 +11/02/2017,Comedians,@aliwong,Tonight after Modern Family! https://t.co/enozYrnWoy +10/31/2017,Comedians,@aliwong,RT @curlycomedy: I was so committed to playing @aliwong from her #BabyCobra special I got a real human to play the bump. #SchtickOrTreat #c… +10/31/2017,Comedians,@aliwong,I love this woman https://t.co/eLX6CXiEPF +10/30/2017,Comedians,@aliwong,RT @hannibalburess: 🔥 https://t.co/7kbsdaRXcb +10/30/2017,Comedians,@aliwong,YES YES YES https://t.co/lyvPommGuB +10/30/2017,Comedians,@aliwong,"RT @Alyssa_Milano: Need you to take 3 minutes out of your evening to watch this, get angry, and then HELP ME get #FreeRosa to trend NOW! ht…" +10/29/2017,Comedians,@aliwong,RT @RebsL: Wasssuuppp it’s Halloween 2017! @netflix @angryasianman @hasanminhaj @aliwong #lowbudget #aapi https://t.co/bP4jBzcPaN +10/29/2017,Comedians,@aliwong,RT @nokwestion: @aliwong sighting https://t.co/PUh4HRaDmp +10/27/2017,Comedians,@aliwong,RT @mcgboye: This boy's career path is already set. The parents shouldn't bother wasting their time and money. https://t.co/A2hCcx3nQZ +10/27/2017,Comedians,@aliwong,"RT @jemelehill: A quote that will make you cringe from Texans owners Bob McNair, re: anthem protests: “We can't have the inmates running th…" +10/27/2017,Comedians,@aliwong,RT @kumailn: Right. Cuz all brown people are famous. https://t.co/gyM1zsMZUJ +10/24/2017,Comedians,@aliwong,I cannot wait for this!!! Michelle is INCREDIBLE https://t.co/IpV3aFiQc8 +10/24/2017,Comedians,@aliwong,RT @GlennWhipp: UPDATE: 38 women contacted me for this story. That number has now doubled since it was published. https://t.co/beVGHWGOKM +10/23/2017,Comedians,@aliwong,"RT @bader_diedrich: Thanks for the great interview Jessica!! +I really went off the rails at the end there! + +But happy to talk about my quee…" +10/20/2017,Comedians,@aliwong,"RT @aparnapkin: As the daughter of a father, I think the lot of you could do better" +10/20/2017,Comedians,@aliwong,RT @ava: Saluting my sister @Lupita_Nyongo and all the women who speak out. And all the women who don't. All who survive this. And all who… +10/19/2017,Comedians,@aliwong,RT @davidchang: Incredible https://t.co/iJiyreuiYi +10/18/2017,Comedians,@aliwong,RT @AmericanWifeABC: We're itching to see how Katie handles everything tonight! #AmericanHousewife https://t.co/DbrYodDEVw +10/15/2017,Comedians,@aliwong,"RT @meganamram: Sometimes it's like, who's responsible: the victims or the person who's responsible?" +10/11/2017,Comedians,@aliwong,"RT @AmericanWifeABC: #AmericanHousewife’s Katie Otto is unapologetic and real. +Watch the best mom ever tonight at 9:30|8:30c on ABC! https…" +10/11/2017,Comedians,@aliwong,RT @BET: The FULL verse that EVERYBODY is talking about! @eminem BODIED THIS! #HipHopAwards https://t.co/zoS0wEwjQF +10/11/2017,Comedians,@aliwong,"RT @nytimes: An NYT reader's reaction to Gwyneth Paltrow, Angelina Jolie and +others saying Harvey Weinstein harassed them https://t.co/apUs…" +10/09/2017,Comedians,@aliwong,Rooting for #KellyMarieTran so hard!!! https://t.co/mdXaxburPK +10/08/2017,Comedians,@aliwong,"RT @aparnapkin: if you think taking a knee is unbelievably disrespectful, imagine what drove people to do it in the first place" +10/05/2017,Comedians,@aliwong,RT @laurenduca: MOM & DAD PLEASE COME HOME THE BABYSITTER IS REALLY WEIRD https://t.co/qBRnK3NhSl +10/05/2017,Comedians,@aliwong,"RT @jk_rowling: There is so much truth in this, it hurts. @MichelleObama on the fools who get free passes to the top table... + https://t.co…" +10/04/2017,Comedians,@aliwong,SF! Go see my dear friend @mulaney tonight. There are a few tix left. He's BRILLIANT. https://t.co/5vbDApydN9 +10/04/2017,Comedians,@aliwong,👑@KatyEMixon 👑 https://t.co/adjIwHEBqT +10/02/2017,Comedians,@aliwong,RT @nowthisnews: THIS is how you respond to racism https://t.co/Ebo4ohctlO +09/28/2017,Comedians,@aliwong,RT @MrTonyHale: We love this woman. https://t.co/EqvF6HXpj0 +09/28/2017,Comedians,@aliwong,RT @janetmock: Doreen (@dstfelix) writing about Cardi's ascendence to the TOP for @NewYorker has me in all my feels. YES! https://t.co/s0do… +09/27/2017,Comedians,@aliwong,"RT @thehill: ""All in the Family"" producer tweets message of solidarity with NFL protesters https://t.co/TBRpQBDBmY https://t.co/xSISToc9rF" +09/27/2017,Comedians,@aliwong,"RT @AmericanWifeABC: Today's the day! ❤️ +RT if you're excited for the premiere of #AmericanHousewife tonight! https://t.co/fg7HkFDnEc" +09/27/2017,Comedians,@aliwong,"RT @AmericanWifeABC: She may not be America's #1 mom, but she's our favorite. #AmericanHousewife returns tomorrow at 9:30|8:30c on ABC! htt…" +09/25/2017,Comedians,@aliwong,"RT @shondarhimes: I think: By kneeling, players don’t disrespect the flag.They ask US to respect the flag. They ask us to make the anthem t…" +09/24/2017,Comedians,@aliwong,"RT @OmarKelly: Dolphins safety Michael Thomas started breaking up when talking about Trump calling him ""a son of a b!tch."" https://t.co/Z4w…" +09/24/2017,Comedians,@aliwong,@morgan_murphy hi!!! missed you but see you in LA +09/22/2017,Comedians,@aliwong,This made my day!!!! https://t.co/EbbsXZsT9n +09/16/2017,Comedians,@aliwong,RT @KamalaHarris: Remember when we saved health care for millions of Americans? We have to do it again. Call your reps now: (202) 224–3121. +09/12/2017,Comedians,@aliwong,Houston! See you on Friday https://t.co/8kx4yFidu7 +09/10/2017,Comedians,@aliwong,Congrats Kamau!!!! https://t.co/idYOkAYyH5 +09/07/2017,Comedians,@aliwong,RT @nowthisnews: ‘I’m gonna be sent back to a country that I’ve ever been to and I’m gonna lose every opportunity that I have.’ https://t.c… +09/06/2017,Comedians,@aliwong,"RT @BarackObama: To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co…" +09/06/2017,Comedians,@aliwong,"RT @AmericaFerrera: Dreamers- you have led your own movement from the start w/ courage, dignity & beauty. I feel privileged to follow & sta…" +09/06/2017,Comedians,@aliwong,"RT @janetmock: Beautiful campaign, starring @Lavernecox! #Ivypark take my 💰 https://t.co/qO035Zh84x" +09/05/2017,Comedians,@aliwong,RT @kumailn: #TheBigSick is on all streaming platforms! iTunes. Amazon. On Demand. Google Play. Check out this rave review! https://t.co/aD… +09/05/2017,Comedians,@aliwong,RT @KamalaHarris: The heartless move to rescind DACA is a betrayal of our promise to Dreamers. It’s now on Congress to pass the Dream Act.… +09/02/2017,Comedians,@aliwong,RT @ELLEmagazine: This 8-year-old boy loves transforming into drag queen Lactatia—& he won't let other people stop him from doing what make… +08/31/2017,Comedians,@aliwong,RT @NPR: Still wondering how you can help those affected by #Harvey? Here is our list: https://t.co/ybaj4nsjl0 +08/30/2017,Comedians,@aliwong,RT @JarrettHill: THIS. https://t.co/NobnCCVJCF +08/30/2017,Comedians,@aliwong,RT @decider: .@RyanHamilton's #HappyFace is highly contagious. Watch it on @netflixcomedy: https://t.co/eib7MVv09N https://t.co/i1IqgB2xbM +08/29/2017,Comedians,@aliwong,RT @MichaelSkolnik: American hero. https://t.co/0z9nQ2RjTA +08/20/2017,Comedians,@aliwong,"RT @ShaunKing: We've provided authorities: + +7 videos. +142 images. +2 confirmed identities. +1 address. + +7 days later, NO ARRESTS. + +https://t.…" +08/19/2017,Comedians,@aliwong,RT @ChelseaClinton: The story of Lucifer-who rebelled against God-is part of many Christians' traditions. I've never been in a church with… +08/16/2017,Comedians,@aliwong,RT @VICE: Watch @vicenews' full report from the front lines in Charlottesville: https://t.co/6QgDdm0zF9 https://t.co/NJbxEd1FKL +08/16/2017,Comedians,@aliwong,"RT @StephenAtHome: ""I don't agree with the Nazis, but they had a permit for Normandy & the Allies didn't."" -Donald Trump https://t.co/0WeIM…" +08/15/2017,Comedians,@aliwong,"RT @THR: .@AliWong, @ParkRandall to star in Netflix feature romantic comedy https://t.co/wmWxTxNefg https://t.co/5rSCVqAmOU" +08/15/2017,Comedians,@aliwong,RT @nycjayjay: Amazing. https://t.co/jSCM8sDb5q +08/15/2017,Comedians,@aliwong,RT @Seth_Lemon: #UnionSquare https://t.co/ymqofeEPGa +08/14/2017,Comedians,@aliwong,EVERYONE WATCH THIS!!! Tiffany has been funny forever and she's also the most wonderful human being. https://t.co/AR1m0uc5xH +08/13/2017,Comedians,@aliwong,RT @MrGeorgeWallace: That little baby grew up believing in goodness and justice and standing up to hate. Heather Heyer. Say her name. https… +08/13/2017,Comedians,@aliwong,"RT @ShaunKing: Heather Heyer. + +An American martyr. A hero. My hero. + +Last words on FB ""If you're not outraged, you're not paying attentio…" +08/13/2017,Comedians,@aliwong,"RT @NYMag: “I want her death to be a rallying cry for justice and equality and fairness and compassion,” says Heyer's mother https://t.co/T…" +08/13/2017,Comedians,@aliwong,"RT @JohnDingell: I signed up to fight Nazis 73 years ago and I'll do it again if I have to. + +Hatred, bigotry, & fascism should have no plac…" +08/13/2017,Comedians,@aliwong,RT @JoeBiden: There is only one side. #charlottesville +08/12/2017,Comedians,@aliwong,RT @oliviamunn: 💔 #Charlottesville https://t.co/le6zTIMxR8 +08/12/2017,Comedians,@aliwong,RT @TheEllenShow: Is this America now? We cannot let this stand. #Charlottesville +08/02/2017,Comedians,@aliwong,"RT @sfmasonic: The 1st of 7(!) SOLD OUT shows with @aliwong is tonight! Doors open at 6, Kevin Camia starts things off at 7 & Ali Wong is o…" +08/02/2017,Comedians,@aliwong,"RT @ACLU: Happy birthday, James Baldwin! https://t.co/aw40QndS2O" +08/02/2017,Comedians,@aliwong,RT @kumailn: Thread. Must read. It's very good. https://t.co/nKZLZmoHzn +08/01/2017,Comedians,@aliwong,"My remaining stand up dates for the year. Few tix still left for DENVER, HOUSTON, DALLAS late… https://t.co/JoAQVZOHNN" +08/01/2017,Comedians,@aliwong,Please read this article. Thank goodness for @JanetMock https://t.co/nVOqL5sgqy +07/31/2017,Comedians,@aliwong,"RT @thepharcyde: 😂😂😂 GET THAT @aliwong #DemCrossoverMovesTho #ThePharcyde +・・・ +DALLAS! Pre sale for my second… https://t.co/4NWtpOTYxO" +07/28/2017,Comedians,@aliwong,"RT @KamalaHarris: Tonight health care was saved for millions of Americans. This is your victory. Your calls, letters, and courage made this…" +07/27/2017,Comedians,@aliwong,RT @tracelysette: In solidarity with the thousands of trans folk who are currently serving our country in the military. You are not expenda… +07/26/2017,Comedians,@aliwong,"RT @HamillHimself: A salute to the 15,000+ transgender patriots now currently serving in the United States Military. #ThankYouLGBT #TransR…" +07/26/2017,Comedians,@aliwong,"RT @TheEllenShow: We should be grateful to the people who wish to serve, not turn our backs on them. Banning transgender people is hurtful,…" +07/26/2017,Comedians,@aliwong,DALLAS! Pre sale for my second added show is on now. The first show sold out quick so I suggest… https://t.co/HflPiKoE8L +07/26/2017,Comedians,@aliwong,RT @smeagolsfree: My mom has Stage 4 breast cancer and will die without Medicaid. My rage is powerful and insane. They should be afraid of… +07/20/2017,Comedians,@aliwong,"RT @janetmock: Tiffany is a damn STAR, and a stellar storyteller. https://t.co/WBC3JSZQn2" +07/20/2017,Comedians,@aliwong,RT @AccessVegas: Ali Wong playing #Vegas October 7. Tickets: https://t.co/4Y3kH2UjVl @aliwong https://t.co/FMaGbGh7Gb +07/19/2017,Comedians,@aliwong,"RT @reventioncenter: PRESALE — @AliWong on Friday, September 15th! Use offer code TEMPO to lock down advanced tickets at https://t.co/D4i23…" +07/19/2017,Comedians,@aliwong,RT @hennepintheatre: Hurry! 36 hours only - get your presale tickets for @aliwong with code: BABY – October 14 at the State Theatre https:/… +07/19/2017,Comedians,@aliwong,Houston and Minneapolis! The presale has begun. Get your tickets now before the shows sell… https://t.co/XZ3DUhdZ04 +07/15/2017,Comedians,@aliwong,RT @SilverLegacy: Raise your hand if your seeing @aliwong tonight? 🙋 #SilverLegacy #AliWong #BabyCobra #ItsARenoThing https://t.co/ghsDwCyB… +07/08/2017,Comedians,@aliwong,That's because SHE IS! I fucking love @aparnapkin https://t.co/Ca8Sp61as6 +07/05/2017,Comedians,@aliwong,"RT @KamalaHarris: This #FourthofJuly, a reminder that eight immigrants signed the Declaration of Independence." +06/29/2017,Comedians,@aliwong,Atlantic City and Philadelphia! See you on Saturday https://t.co/CcrMgmS0mO +06/28/2017,Comedians,@aliwong,RT @iamwandasykes: It's time that more women held political office. @aliwong nominated…me! Who would you nominate to run? @ELLEmagazine #We… +06/26/2017,Comedians,@aliwong,Woooooooo!!!!! https://t.co/Gl9EY1igpL +06/22/2017,Comedians,@aliwong,"RT @sanfranmag: July cover story: How @aliwong grew up, cracked filthy jokes, got pregnant, and became the next big thing in comedy https:/…" +06/22/2017,Comedians,@aliwong,RT @sanfranmag: Our annual Best of SF issue drops soon! Cover story: @aliwong on how she shot to the top of comedy (and she's just getting… +06/20/2017,Comedians,@aliwong,RT @BorgataAC: We're ready to LOL with @aliwong at the Event Center on July 1! Purchase Tickets: https://t.co/JSk94Y6hiK https://t.co/Scdf… +06/17/2017,Comedians,@aliwong,"If you're looking for a summer read, pickup Jessi Klein's brilliant book. I savored every page.… https://t.co/Vtt6Nro5TZ" +06/17/2017,Comedians,@aliwong,"RT @TheKingCenter: Extol #PhilandoCastile's virtues, but know: Even if he didn't serve children, even if he didn't love his family, he shou…" +06/17/2017,Comedians,@aliwong,Imma watch this and I suggest you do too. Nikki is so fucking funny. https://t.co/zTMNePtEQk +06/15/2017,Comedians,@aliwong,@themodernageorg hi it's working now sorry for the glitch! +06/14/2017,Comedians,@aliwong,LAS VEGAS and THOUSAND OAKS! The presale has begun. Denver and Dallas tomorrow morning at 10am.… https://t.co/FNMxyPRRRp +06/09/2017,Comedians,@aliwong,Anaheim this weekend! https://t.co/XyElDTa9gD +06/02/2017,Comedians,@aliwong,"RT @MikeDelMoro: Countries committed to the Paris Climate Accord shaded in blue, via @mashable https://t.co/1RGVGjUUyu" +06/02/2017,Comedians,@aliwong,RT @EmmanuelMacron: https://t.co/3g5LYO9Osj +06/02/2017,Comedians,@aliwong,"RT @michelleisawolf: Congressman: god will take care of climate change. + +God: bitch I sent you scientists." +06/01/2017,Comedians,@aliwong,SANTA BARBARA! See you on Saturday. Few tix still left for the LATE show. https://t.co/DLA90Hgqud +06/01/2017,Comedians,@aliwong,This haircut is everything #happyinternationalChildrensDay https://t.co/TVCYOSp7DU +05/31/2017,Comedians,@aliwong,"RT @moshekasher: Ah I see now, ""covfefe"" is the guttural gurgle your grandchild will choke out as they are overtaken by rising sea water." +05/29/2017,Comedians,@aliwong,"RT @ChrisEvans: They did not die because of you. They died because of a hateful, ignorant, pathetic, EMBOLDENED piece of trash. https://t.c…" +05/29/2017,Comedians,@aliwong,RT @JoyAnnReid: We await their commander in chief's acknowledgement of them and their families. https://t.co/PzfspiIDge +05/28/2017,Comedians,@aliwong,"RT @resisterhood: 3 Americans were murdered this past week for standing up to white terrorists. + +Richard Collins III +Taliesin Myrddin Namk…" +05/28/2017,Comedians,@aliwong,RT @patrick_brice: I can't stop thinking about these guys. Our time on this planet is short and hard. Let's take care of each other. https:… +05/28/2017,Comedians,@aliwong,"RT @HillaryClinton: Heartbreaking. +No one should have to endure this racist abuse. +No one should have to give their life to stop it. +https:…" +05/27/2017,Comedians,@aliwong,RT @WendyMolyneux: I would just absolutely love it if someone would put a fake arm up their shirt sleeve and let Trump rip it off during on… +05/27/2017,Comedians,@aliwong,RT @aparnapkin: IDEA: marie kondo method to clean out the presidential cabinet. does this bozo bring me joy? no? then carefully mark as don… +05/27/2017,Comedians,@aliwong,RT @VanityFair: It’s enough to make Patti LuPone proud https://t.co/XlQTrgnngs +05/26/2017,Comedians,@aliwong,"RT @GranadaSB: Comedian, writer & actress @aliwong brings her incredibly hilarious stand-up performance to the Granada on Sat. 6/3! https:/…" +06/16/2018,Comedians,@msjwilly,@LashanaLynch @FlawlesslyGeeky Ahhh! Thank you queen! Can’t wait to see you in the movie!! +06/16/2018,Comedians,@msjwilly,@markhughesfilms @WonderWomanFilm @PattyJenks @jermainedesign This rules! I’ve gotta research. I don’t know much ab… https://t.co/AgMqFgZxAy +06/14/2018,Comedians,@msjwilly,@FantasticBeasts He da best! +06/14/2018,Comedians,@msjwilly,I *Really* want to play a superhero. I just want to kick some ass. And get in shape. Mostly I want to get paid to get in shape. #6feettall +06/14/2018,Comedians,@msjwilly,@chloedreyfus @BigBoyler Hahaha he didn’t tell me wtf? And thank you! It looks like y’all had a fun night. 😉 +06/14/2018,Comedians,@msjwilly,@eddiotsavant Hahahaha I’ll see what I can do! +06/14/2018,Comedians,@msjwilly,@molly_blooom She was amazing! It’s never too late for a good thing. +06/14/2018,Comedians,@msjwilly,@FlawlesslyGeeky @LashanaLynch THANK YOU. KEEP ME IN YOUR THOTS. I wanna play a superhero SO BAD. +06/14/2018,Comedians,@msjwilly,@TVElle Hahaha I loved that line. That Jessica was so extra. Thanks for watching! +06/14/2018,Comedians,@msjwilly,@AmandaGeisel That’s awesome Amanda! Thanks for letting me know! +06/14/2018,Comedians,@msjwilly,@choitotheworld @ClaraRose @TheCut Thank you lady! 😘 +06/14/2018,Comedians,@msjwilly,"@ClaraRose @choitotheworld @TheCut @BigBoyler THANK YOU! 😊 and yes, @bigboyler is aiight. 😉" +06/14/2018,Comedians,@msjwilly,@FantasticBeasts Y’all are getting me PUMPED! +06/08/2018,Comedians,@msjwilly,@christinefriar @itsjameskennedy Let them know! And Jesus no more take out orders +06/08/2018,Comedians,@msjwilly,@cameronesposito Hahahahaha this made me lol. +06/08/2018,Comedians,@msjwilly,@christinefriar ⚰️ I expect songs like this on our road trip. Thank you. +05/30/2018,Comedians,@msjwilly,"RT @the_wing: Hot and dewy off the presses, our #NOMANSLAND covergirl is @msjwilly !!! Issue 02 drops June 4th, but you can pre-order your…" +05/30/2018,Comedians,@msjwilly,"RT @the_wing: Don't know if you heard, but we made a magazine!!!! #NOMANSLAND!!! and @msjwilly is on our cover!!! and it drops June 4th but…" +05/19/2018,Comedians,@msjwilly,@Travon You’re a mad man! +05/19/2018,Comedians,@msjwilly,@Travon Hahahahaha +05/19/2018,Comedians,@msjwilly,@JohnMilhiser @TODAYshow hahaha his facial hair is wild. +05/09/2018,Comedians,@msjwilly,WE BOUTA MAKE A MOOVVVIE SHARON!!!! Hi @patrick_brice 💕 https://t.co/9NJOTitnQE +05/07/2018,Comedians,@msjwilly,RT @CecileRichards: Great news: There are still a few tickets left for this! Come join @msjwilly and me at the @92Y tomorrow night.👇🏻 https… +05/05/2018,Comedians,@msjwilly,@christinefriar Hahahahaha +04/24/2018,Comedians,@msjwilly,"@susanheyward @Jessie_BBA Y’all/ you were AMAZING! Congrats, sis!! 😍😍😍😍" +04/23/2018,Comedians,@msjwilly,@blanip @indieabby88 Lmaooo I’m ⚰️ +04/23/2018,Comedians,@msjwilly,@jk_rowling Yassss Ilvy!!!!!!!!!!!!!!!! 🙌🏾 +04/22/2018,Comedians,@msjwilly,RT @jk_rowling: Professor Eulalie (Lally) Hicks of Ilvermorny School of Witchcraft and Wizardry with some random woman during the interval… +04/17/2018,Comedians,@msjwilly,"RT @CecileRichards: Kind of can’t believe I get to say this: On May 8th, I’ll be sitting down with @msjwilly at @92Y to talk about activism…" +04/13/2018,Comedians,@msjwilly,@shanpop @SarahSlutsky hahaha it's ALWAYS Sephora's brand of blue eyeliner. Enjoy! ;] +03/13/2018,Comedians,@msjwilly,Yooo!! I LOVE my pack of rainbow dogs. And the best part? They don’t give me allergies! 🤓 @TheSims #ad… https://t.co/Zdhczc5yJg +03/10/2018,Comedians,@msjwilly,@lindseyweber Of course it was +02/23/2018,Comedians,@msjwilly,Heyyy! TONIGHT at 11:30pm is our FINAL episode of @2dopequeens on @hbo. @dopequeenpheebs and I… https://t.co/W2HzefwYei +02/16/2018,Comedians,@msjwilly,RT @corimurray: Returning with the newness: @dopequeenpheebs @msjwilly from @2DopeQueens are on #yesgirlpodcast #2DopeQueensHBO - https://t… +02/16/2018,Comedians,@msjwilly,DONT FORGET: AN ALL NEW EPISODE OF OUR 2 DOPE QUEENS @HBO SPECIALS AIR TONIGHT AT 11:30pm!… https://t.co/ZsC7MWMZDA +02/13/2018,Comedians,@msjwilly,@KristinDavis @2DopeQueens @TigNotaro @SJP @RheaButcher Omg thank you for watching @KristinDavis! 💕💕💕 you’ve made m… https://t.co/tkpXbIMZau +02/10/2018,Comedians,@msjwilly,@MichaelaAngelaD @fentybeauty 😂😂😍lmaooo I am all about @fentybeauty. Thanks for watching the second episode! +02/09/2018,Comedians,@msjwilly,Ayyy call up the squad & tell them to bring over the cocoa butter and the rosé because we have… https://t.co/oYgM6eR4Lg +02/09/2018,Comedians,@msjwilly,RT @RobinRoberts: We're celebrating #BlackHistoryMonth with a brand new series highlighting women who are game changers & showcasing their… +02/06/2018,Comedians,@msjwilly,"RT @TheDailyShow: Ayyyy see you at 11/10c, @msjwilly & @dopequeenpheebs! #2DopeQueensHBO https://t.co/OSsxpDbOqY" +02/05/2018,Comedians,@msjwilly,"RT @TheDailyShow: This week, Trevor welcomes @msjwilly & @dopequeenpheebs, @yford, the heroes and stars of @1517toParis, and @steveaoki! ht…" +02/03/2018,Comedians,@msjwilly,@PiaGuerra Ahh thank you! Damn. I love her. That would be my dream role! +02/03/2018,Comedians,@msjwilly,@jdry @2DopeQueens @dopequeenpheebs Thank you! It’s great!!! +02/03/2018,Comedians,@msjwilly,Lmaooooooo I know today is a crazy day but also Happy birthday to @TheSims! 🎉Thanks for an… https://t.co/rM2kiyGdsD +02/02/2018,Comedians,@msjwilly,"RT @davidcicilline: I’ve reviewed the Nunes memo and the Democratic memo (which Republicans are refusing to release). + +I can’t divulge the…" +02/02/2018,Comedians,@msjwilly,Hey Hoochies! Who else is staying in tonight to watch #2DopeQueensHBO? The first special starts… https://t.co/QZYoWQ5xmg +02/02/2018,Comedians,@msjwilly,Heyyy Hoochies! Tonight is THE night! The first of our FOUR @2DopeQueens specials premieres this evening on HBO at… https://t.co/y77VXYtPBb +02/01/2018,Comedians,@msjwilly,"RT @ditzkoff: My Q&A with the hilarious @dopequeenpheebs and @msjwilly, who are bringing @2DopeQueens to HBO. https://t.co/QvivvDHCGC" +01/31/2018,Comedians,@msjwilly,"RT @CBSThisMorning: Jessica Williams and Phoebe Robinson blend a unique brand of conversation, stand up comedy and storytelling in their po…" +01/31/2018,Comedians,@msjwilly,"RT @colbertlateshow: TONIGHT's #LSSC is LIVE following the #SOTU: @TVietor08, @jonfavs, and @jonlovett from @PodSaveAmerica, @dopequeenphee…" +01/19/2018,Comedians,@msjwilly,"RT @danikwateng: While y'all are skimming through the latest @Essence make sure to read my first in-book story!! + +I interviewed @dopequeen…" +01/12/2018,Comedians,@msjwilly,45 minutes after we took this photo my mother asked me to clarify what part the guy on the left played in the Harry… https://t.co/epvd9rg4Il +01/12/2018,Comedians,@msjwilly,RT @HBO: 2 dope hosts. 4 dope specials. @msjwilly and @dopequeenpheebs are the @2DopeQueens. Premieres February 2 on #HBO. https://t.co/8y2… +01/12/2018,Comedians,@msjwilly,@nealjustin hello Neal. : ] +01/11/2018,Comedians,@msjwilly,@WheresAmaya @jk_rowling hahahah i am pretty sure she has. (this is not confirmed by me but lmaooo) +01/11/2018,Comedians,@msjwilly,"Me with the shade when they give house points to Gryffindor at the last minute for being pretty reckless, thereby a… https://t.co/Sll9zWGFwl" +01/11/2018,Comedians,@msjwilly,Lmaoooo at #blackhogwarts trending. Screaming. #onbrand +01/02/2018,Comedians,@msjwilly,RT @Maccadaynu: When your Sims are waiting for instructions https://t.co/IqkGODapdL +12/19/2017,Comedians,@msjwilly,Serving while wearing this ruff around my neck! Our 4 @HBO specials start airing February 2nd at 11:30pm! See you t… https://t.co/Db54LzI5Fv +12/19/2017,Comedians,@msjwilly,Hey Hoochies! Our 4 @HBO specials start airing February 2nd at 11:30pm! (Definitely NOT after Game of Thrones.) See… https://t.co/RN1otdpjjv +12/15/2017,Comedians,@msjwilly,So excited to get to interview @HillaryClinton at the #Girlsbuild Summit today! This is amazing! And there are so m… https://t.co/RfUNhqpjcc +11/21/2017,Comedians,@msjwilly,Hiiiii! Check out me holding the Sims version of me in my hand! Thank you @TheSims for recreating my iconic comedic… https://t.co/pf7qC3iFe6 +11/17/2017,Comedians,@msjwilly,RT @TeenVogue: SAME. https://t.co/V6OotMBSHG +11/17/2017,Comedians,@msjwilly,@lindseyweber Dark! +11/16/2017,Comedians,@msjwilly,@jk_rowling That's hot. +11/16/2017,Comedians,@msjwilly,"RT @pottermore: A familiar world. A new story. Return to the Wizarding World with Fantastic Beasts: The Crimes of Grindelwald, coming late…" +11/01/2017,Comedians,@msjwilly,RT @2DopeQueens: Unbutton your pants. @marcmaron visits us this week from his podcast kingdom. https://t.co/XVlSjOjaQt +10/27/2017,Comedians,@msjwilly,@lindseyweber Yes. +10/12/2017,Comedians,@msjwilly,"RT @noredavis: I'm on @2dopequeens #41 JessBDshow! ❤️her& pheebs. Show🔥&link below. thx 2 new followers & who hit my Venmo🔌⚡️😎 + +https://t.c…" +10/11/2017,Comedians,@msjwilly,RT @noredavis: blessed to be on this episode and finally meet @msjwilly family who has adopted me & Jessica has to accept that❣️#HBD https:… +10/06/2017,Comedians,@msjwilly,"RT @jk_rowling: @msjwilly There's no purple heron emoji, so 🦉💕" +10/06/2017,Comedians,@msjwilly,@jk_rowling Hahaha! 😏 +10/06/2017,Comedians,@msjwilly,@jk_rowling Thank you thank you thank you. ⚡️✨⚡️❤️ +10/06/2017,Comedians,@msjwilly,@ditzkoff THIS IS NOT A DRILL DAVE!!! ⚰️ +10/06/2017,Comedians,@msjwilly,"RT @pottermore: @msjwilly Welcome to the Wizarding World family, Jessica!" +10/06/2017,Comedians,@msjwilly,@pottermore Thank you! https://t.co/8aQPwfmC2B +10/06/2017,Comedians,@msjwilly,HELLO THERE. I AM SCREAMING BECAUSE I AM GOING TO BE IN FANTASTIC BEASTS. 😩😃😃 https://t.co/k4UAT9y5gc +10/06/2017,Comedians,@msjwilly,@AlannaBennett Thank you!!!! 🎉🎊 https://t.co/SSTcbM83Wz +10/04/2017,Comedians,@msjwilly,@Pallystyle @TheSims https://t.co/NP513bOSml +10/04/2017,Comedians,@msjwilly,@stonercinderlla @TheSims Me too! https://t.co/JTMjjolst5 +10/04/2017,Comedians,@msjwilly,@hereforparrilla @TheSims Me too!!! Gonna be silly! +10/04/2017,Comedians,@msjwilly,@Pallystyle @TheSims It’s me! +10/04/2017,Comedians,@msjwilly,@davimachaado @TheSims You know what? Imma look into it. +10/04/2017,Comedians,@msjwilly,"RT @TheSims: Jessica Williams is taking over @TheSims Twitter this Friday, 10/6 at 11:30AM PDT! +More: https://t.co/WZ91yO4poz #JWillyAMA @…" +10/04/2017,Comedians,@msjwilly,RT @2DopeQueens: You've got 1 shot to see special guest co-host @Blacktress joining @msjwilly for a 2DQ show you'll never forget. Tix https… +09/25/2017,Comedians,@msjwilly,ITS SO GOOD AND BEAUTIFUL! https://t.co/KoESMS9agc +09/22/2017,Comedians,@msjwilly,RT @SaintHeron: Darling & daring comedy-sweetheart @msjwilly is headed to @Showtime where she will star in a self-written comedy. https://t… +09/22/2017,Comedians,@msjwilly,@kscoult @TheDailyShow Thank you so much! <3! +09/22/2017,Comedians,@msjwilly,"RT @DEADLINE: Jessica Williams To Topline Comedy In Works At Showtime, Jim Strouse To Direct https://t.co/KjF4YxI72H https://t.co/pZm18iJD5P" +09/15/2017,Comedians,@msjwilly,Due to POPULAR DEMAND WE'VE ADDED ONE MORE SHOW FOR OUR @2DopeQueens HBO SPECIAL TAPINGS NEXT MONTH. BUY NOW!! https://t.co/vPpulGPiHK +09/13/2017,Comedians,@msjwilly,RT @2DopeQueens: Queens! Oct 5 is date night with your girl @msjwilly! Come see 2DQ out in La La Land with guest co-host @Blacktress: https… +08/30/2017,Comedians,@msjwilly,@HollywoodDebi @fromoldharlem i got you Debi. Mistakes happen. Deleting your original tweet. Take care! +08/30/2017,Comedians,@msjwilly,@HollywoodDebi @bymeg waiiiiiittt what? so how is this what the situation is? You literally thought I was a complet… https://t.co/RV5Y1vAsZl +08/30/2017,Comedians,@msjwilly,@fredrickthomps6 No worries. Someone screen grabbed it earlier in this thread! +08/30/2017,Comedians,@msjwilly,@Guari1x Thank you. +08/26/2017,Comedians,@msjwilly,RT @KPCCInPerson: Watch @msjwilly and @Blacktress do their thing at the live taping of @2DopeQueens. Get your tickets now! https://t.co/bxX… +08/25/2017,Comedians,@msjwilly,@tkconch @UVA Thank you Tess! +08/25/2017,Comedians,@msjwilly,@ajLevy363 Yasss my maxxinister!!!!! Thank you for coming! +08/25/2017,Comedians,@msjwilly,@lmillernpr @ramenshopradio @2DopeQueens @JadAbumrad Yassssss!!! Y'all look cute! Thank you for coming! 😍 +08/22/2017,Comedians,@msjwilly,"ANNNNNNNNND HERE IS ANOTHER THE LINK TO OUR @2DopeQueens HBO special taping✨✨✨https://t.co/9zNCu2nt07 +HURRY!!" +08/22/2017,Comedians,@msjwilly,PRESALE Password is DOPE +08/22/2017,Comedians,@msjwilly,Link to our @2DopeQueens HBO SPECIAL TAPING https://t.co/1XlHVFZVr6 +08/21/2017,Comedians,@msjwilly,"RT @2DopeQueens: Set your alarm! Pre-sale for our special taping is happening tomorrow at 10amEST. Baes, you're getting the code first. ✅ i…" +08/21/2017,Comedians,@msjwilly,The partial darkness of this eclipse is my preferred lighting level tbh. #romanticdimlighting +08/21/2017,Comedians,@msjwilly,@iluvbutts247 Hahahaha +08/15/2017,Comedians,@msjwilly,Existing in a world where racism and hate grasp desperately for control while we fight and plead for something as simple as being free. +08/15/2017,Comedians,@msjwilly,"Being black in a country that was not made for me, I carry my sadness and anger with me always- responses to that which I cannot see." +08/15/2017,Comedians,@msjwilly,I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am angry I am hurt I am sad +08/13/2017,Comedians,@msjwilly,@rellativity @wocfilmclub ah okay! noted! thank you! +08/11/2017,Comedians,@msjwilly,RT @CharlieRoseShow: The incomparable @msjwilly is here tonight! Tune in on @PBS. https://t.co/Avra0XGq12 +08/10/2017,Comedians,@msjwilly,@HBOPR @2DopeQueens @dopequeenpheebs @HBO NOT A DRILL. THIS IS HAPPENING!!! +08/10/2017,Comedians,@msjwilly,"RT @HBOPR: Hit comedy podcast @2DopeQueens, from @msjwilly & @dopequeenpheebs, will come to @HBO next year: https://t.co/aQ0Bbmdb3F https:/…" +08/02/2017,Comedians,@msjwilly,"Ah, you're the best! Thank you Angelica. I REALLY appreciate the love! https://t.co/t8wKD4P76t" +08/02/2017,Comedians,@msjwilly,@jonweisman @SoWeirdonDisney Yes! MASSIVE fan! It was ahead of it's time! Can you tell me some cool fact about the show??? 😩😩😩 +08/02/2017,Comedians,@msjwilly,"RT @RottenTomatoes: New, captivating, & a star-making performance from @msjwilly has made The Incredible Jessica James #CertifiedFresh! + +ht…" +08/02/2017,Comedians,@msjwilly,@DevanshiDPatel @jk_rowling @BuzzFeed Lmaoooooo don't drag buzzfeed into this!!! 😩😂😂😂😂😂😂😂 +08/01/2017,Comedians,@msjwilly,RT @jk_rowling: .@msjwilly and I celebrating our birthday yesterday (my tiara really pinched). https://t.co/jf2vdILopS +07/31/2017,Comedians,@msjwilly,@evanrosskatz Oh wow thank you Evan!!! 😩😩😩 +07/31/2017,Comedians,@msjwilly,@hotpatooties @netflix Lmaoooooooooo thank you!!!! +07/31/2017,Comedians,@msjwilly,@TheEmperorJahi @TheRoot Yes! +07/31/2017,Comedians,@msjwilly,@urweedmom Hahahah Awww thanks beautiful! +07/30/2017,Comedians,@msjwilly,@LydiaDYork @TheRoot Me! +07/30/2017,Comedians,@msjwilly,"RT @radioopensource: Check out our own @susansmusings's ~subversive~illustrations in the new @msjwilly film, The Incredible Jessica James,…" +07/30/2017,Comedians,@msjwilly,"RT @StrouseJames: @omfgthelife @msjwilly These are my favorite songs from it: +William Onyeabar/Body and Soul, Fantastic Man +Sofi Tukker/Dr…" +07/30/2017,Comedians,@msjwilly,@vkeithley 🙌🏾🙌🏾🙌🏾yasss khaleesi!!!! Y'all look cute!! 😍 +07/30/2017,Comedians,@msjwilly,@matt_kleinmann 🙌🏾🙌🏾🙌🏾🙌🏾yasssss!! Thank you! +07/30/2017,Comedians,@msjwilly,@el_Rod_1976 @netflix OMG thank you SO much!! I appreciate it! +07/30/2017,Comedians,@msjwilly,@_LIVoutLOUD YESSSSSSS!!!! +07/30/2017,Comedians,@msjwilly,@katieislawsome Well thank you!!!!! +07/30/2017,Comedians,@msjwilly,@ohwhatevan Heyyyyyyyy girl!!!!!! +07/29/2017,Comedians,@msjwilly,@amoore9 Ahhhh You're just the best. Thank you love! #leolove +07/29/2017,Comedians,@msjwilly,"@mrbowline @jk_rowling Ahhhhh! Happy Early birthday, bb!!!!!" +07/29/2017,Comedians,@msjwilly,@techchickk Oh my gosh! I'm so sorry. I'm glad you're okay and thank you for the love. +07/29/2017,Comedians,@msjwilly,@k_bubbs THANK YOU!!! +07/29/2017,Comedians,@msjwilly,@ava Wow! Thank you! Happy Friday!! +07/28/2017,Comedians,@msjwilly,@igotawywitwords Thank you so much!!!! +07/28/2017,Comedians,@msjwilly,@nadiethebaddie @netflix THANK YOU!!! +07/28/2017,Comedians,@msjwilly,Hey Everybody! My new movie The Incredible Jessica James is out today! Check it out on @netflix ! Thank you for your support! +07/28/2017,Comedians,@msjwilly,@Laura_K_A Um.... I Adore this photo. thank you for watching!! +07/28/2017,Comedians,@msjwilly,RT @hunteryharris: hi i interviewed @msjwilly and she is regal https://t.co/H1M9031R0U +07/28/2017,Comedians,@msjwilly,@hunteryharris Thank you! You're such a great interviewer! +07/28/2017,Comedians,@msjwilly,"@QueenSurya No, love!" +07/28/2017,Comedians,@msjwilly,@eddiequintana @Sarahparga @CSzLA Lmaooooooook +07/27/2017,Comedians,@msjwilly,"RT @desusandmero: Tonight, comedian and former Daily Show correspondent @msjwilly. 11pm. https://t.co/SONjkQtcBy" +07/27/2017,Comedians,@msjwilly,@BenjaminJS Thank you!!!! +07/26/2017,Comedians,@msjwilly,@janetmock AHHHHHHH you're the best! Thank you Janet!! +07/26/2017,Comedians,@msjwilly,@anthony_gunk Thank you! Welcome!!! +07/26/2017,Comedians,@msjwilly,RT @gotagirlcrush: Have you chipped in to our @kickstarter yet? 4 days left! You can even get yr voicemail recorded by @msjwilly! https://t… +07/26/2017,Comedians,@msjwilly,"RT @TheDailyShow: Guess the ""T"" is silent? https://t.co/LTGUYJ6rxw" +07/25/2017,Comedians,@msjwilly,@troytheboyy @BellHouseNY NO WAY! Excited to hang!! +07/25/2017,Comedians,@msjwilly,"RT @nprfreshair: ""OK, Ter-Ter. I've always wanted to call you that."" @msjwilly with Terry Gross: https://t.co/HyCF4TuXIH" +07/25/2017,Comedians,@msjwilly,@pilothodge80 Thank you!! +07/25/2017,Comedians,@msjwilly,RT @TheGreeneSpace: 🚨 A few tix released for screening of @netflix's 'The Incredible Jessica James' + Q&A w @msjwilly + @StrouseJames: htt… +07/25/2017,Comedians,@msjwilly,"RT @KamalaHarris: Today’s the day. Keep focused: +Health care +Health care +Health care +Health care +Health care + +Call your Senators now at (20…" +07/25/2017,Comedians,@msjwilly,@veganshaun @nprfreshair @TheDailyShow @2DopeQueens Umm duh. Also thank you for you kind words! +07/25/2017,Comedians,@msjwilly,@sometimesJon @2DopeQueens @dopequeenpheebs Lmaooo DO IT +07/25/2017,Comedians,@msjwilly,"RT @RobertEFenton: . @msjwilly calling Terry Gross ""Ter-Ter"" on @nprfreshair is the best thing I think I've ever heard on this show." +07/25/2017,Comedians,@msjwilly,"RT @colbertlateshow: 🚨🚨 #LSSC TONIGHT:🚨🚨 @charlierose from @CBSThisMorning, @msjwilly of #IncredibleJessicaJames, and @maxbrooksauthor of @…" +07/25/2017,Comedians,@msjwilly,"RT @nprfreshair: TODAY: Jessica Williams @msjwilly on The Incredible Jessica James, getting her @TheDailyShow job at 22, and her podcast @2…" +07/24/2017,Comedians,@msjwilly,RT @nprfreshair: Recording now: Jessica Williams (@msjwilly) on her new @netflix film 'The Incredible Jessica James.' Airs tomorrow! https:… +07/19/2017,Comedians,@msjwilly,"RT @gotagirlcrush: Pledge $275 & you'll get an voicemail recording from our favorite funny woman & Issue 04 featured gal, @msjwilly! https:…" +07/18/2017,Comedians,@msjwilly,@Britnerene Jesus. Are you okay? +07/17/2017,Comedians,@msjwilly,@brooklynmag I just had a chicken salad while playing the sims & now I'm getting ready for my 2 Dope Queens show tonight. +07/17/2017,Comedians,@msjwilly,"@VivalaEmiliaa @brooklynmag AH, thank you!!!" +07/17/2017,Comedians,@msjwilly,"RT @TheRoot: Comedian @msjwilly has a new rom-com coming out on Netflix called ""The Incredible Jessica James."" + +Here's why you should be e…" +07/17/2017,Comedians,@msjwilly,@EvanRomano @brooklynmag @dopequeenpheebs @WNYC @2DopeQueens @TheDailyShow @Trevornoah @jordanklepper @hasanminhaj THANK YOU FOR HAVING ME! +07/17/2017,Comedians,@msjwilly,RT @brooklynmag: @msjwilly @dopequeenpheebs @2DopeQueens @TheDailyShow @Trevornoah @jordanklepper @WNYC Jessica Williams has a leading role… +07/17/2017,Comedians,@msjwilly,RT @brooklynmag: The cover star for our Summer 2017 issue is @msjwilly! https://t.co/jyV8OpwS2B https://t.co/O719BVRf09 +07/15/2017,Comedians,@msjwilly,@emilyvgordon THANK YOU EMILY!!! +07/14/2017,Comedians,@msjwilly,"RT @vulture: .@msjwilly is friggin’ dope in this new trailer for @netflix's ""The Incredible Jessica James"" https://t.co/RMlrbzKB98" +07/08/2017,Comedians,@msjwilly,RT @TheGreeneSpace: Just announced! Preview screening + talkback with @msjwilly and writer/director @StrouseJames: https://t.co/W8o8obVaSU +06/29/2017,Comedians,@msjwilly,RT @2DopeQueens: IT'S TIME! Get your tix to our 7/17 shows at @boweryballroom now! Early show: https://t.co/teMfg6eqe8 Late show: https://t… +06/25/2017,Comedians,@msjwilly,@SidneyCherubin Okay great! I just saw this and was worried!!! +06/25/2017,Comedians,@msjwilly,"RT @wmag: @MsJWilly's first trailer for ""The Incredible Jessica James"" is here: https://t.co/bTX7VBcqqL" +06/23/2017,Comedians,@msjwilly,RT @2DopeQueens: Stop whatever you're doing and watch @msjwilly's trailer for 'The Incredible Jessica James' right now 😍😍😍 https://t.co/2pg… +06/23/2017,Comedians,@msjwilly,RT @ELLEmagazine: EXCLUSIVE: Here's the first trailer for @netflix's 'The Incredible Jessica James' starring @msjwilly: https://t.co/WzHqyK… +06/22/2017,Comedians,@msjwilly,RT @SaintHeron: Next month on July 28th be sure to tune into @msjwilly's 'The Incredible Jessica James' on @netflix: https://t.co/FoSEuL0OX… +06/14/2017,Comedians,@msjwilly,RT @TimeOutNewYork: This week we talk to Jessica Williams on black roles and being a leading lady: https://t.co/H8xLVPKopX @msjwilly https:… +06/13/2017,Comedians,@msjwilly,KAMALA!!!!!! +06/13/2017,Comedians,@msjwilly,@danny_yu Thank you danny!!!!!!! It was such a fun shoot! +06/09/2017,Comedians,@msjwilly,RT @2DopeQueens: We're looking 💣💣💣 at #Bonnaroo2017! We're LIVE on Facebook! https://t.co/r2cXDtvRE1 https://t.co/1rHTWGxrd2 +06/03/2017,Comedians,@msjwilly,@abiolaismyname @CentralPictureH Yes!! See you there! +05/27/2017,Comedians,@msjwilly,@oneilllo @sundancefest @StrouseJames AHHHH THANK YOU @oneilllo!!!! I can't wait for you to see it! +05/27/2017,Comedians,@msjwilly,RT @sundancefest: #London: See the European premiere of @StrouseJames' THE INCREDIBLE JESSICA JAMES starring @msjwilly https://t.co/wS0vVIZ… +05/27/2017,Comedians,@msjwilly,RT @jk_rowling: Muahahahahaha... https://t.co/tjtCcSuYdt +05/26/2017,Comedians,@msjwilly,@anngav Yes! Just one but come through anyway!!! +05/26/2017,Comedians,@msjwilly,London! Come see me Sunday!!! https://t.co/CKDHuNMuLj +05/25/2017,Comedians,@msjwilly,@brocktalbot Yes! Thank you so much! see you there!!! +05/22/2017,Comedians,@msjwilly,Oy! UK! My new movie The Incredible Jessica James is coming to #SundanceLondon 1-4 June @CentralPictureH Tickets > https://t.co/JbhjWR5qqG +05/07/2017,Comedians,@msjwilly,NYC! Tonight at 6:30 I'm doing a staged reading of a REAL HOUSEWIVES OF NY EPISODE AT LITTLEFIELD IN BROOKLYN: https://t.co/cYpi1zGHFe +05/05/2017,Comedians,@msjwilly,"RT @GreggyBennett: This Sunday! Me, @msjwilly, @BrianJMoylan, @RyanHoulihan, @itgetsbedder & more read the RHONY Berkshires ep.Get tix: htt…" +05/04/2017,Comedians,@msjwilly,@anittygritty @Spotify @2DopeQueens It's a podcast. +05/04/2017,Comedians,@msjwilly,"@anittygritty @Spotify @2DopeQueens But...did you know that dope could mean...""very good""? We should be proud of that?" +05/04/2017,Comedians,@msjwilly,"@anittygritty @CapitolEthan @Spotify @2DopeQueens But...it is a usual genre for like, everyone? They have sold over… https://t.co/mdyYgMR2Q3" +05/04/2017,Comedians,@msjwilly,@anittygritty @CapitolEthan @Spotify @2DopeQueens They are literally one of the greatest rock bands in history. Do… https://t.co/rKZYv89dzP +04/29/2017,Comedians,@msjwilly,"@unfoRETTAble On it, khaleesi!" +04/10/2017,Comedians,@msjwilly,"RT @2DopeQueens: We're nominated for the #Webbys, and we're in third place. Come on. We can do better than that. https://t.co/sEqvxaHM4b ht…" +04/05/2017,Comedians,@msjwilly,@moochavsky Yaiansksns! (Yasssss in simlish) +04/05/2017,Comedians,@msjwilly,@MaggieSmet @2DopeQueens Yours too? Haha it's iconic!! +04/05/2017,Comedians,@msjwilly,RT @itsgabrielleu: Meet today's #WCW @msjwilly and @dopequeenpheebs! Read more about these incredible and hysterical ladies below. https://… +06/30/2018,Comedians,@JenKirkman,RT @MCSnugz: I find it endlessly amusing that I am wearing my “childfree” necklace (by @JenKirkman) in the photo that accompanies this awes… +06/30/2018,Comedians,@JenKirkman,@JElvisWeinstein @HollywoodImprov If has now become when +06/30/2018,Comedians,@JenKirkman,A very important person @robertAbooey just tweeted Baba booey https://t.co/ibpwB9wdS3 +06/30/2018,Comedians,@JenKirkman,No thank YOU! Super hilarious! And thanks to the great audience who came to laugh at our jokes about death and matc… https://t.co/uuvpzsOI1i +06/30/2018,Comedians,@JenKirkman,Hope you outgrow cruel jokes about a child. He’s probably worried that you’re a Republican. https://t.co/HqDZqsyI8A +06/30/2018,Comedians,@JenKirkman,@LaLaLandJen @guybranum Wait I was in the same room with @guybranum And didn’t know it??? +06/29/2018,Comedians,@JenKirkman,Huh. Tad Devine - former partner to Paul Manafort in electing Putin puppet in Ukraine - information the Senator kne… https://t.co/Fi9nR5xgxb +06/29/2018,Comedians,@JenKirkman,Read this thread. Find your state. Register to vote. Or add your state. Helps others register to vote. https://t.co/Mnd66HpBFM +06/29/2018,Comedians,@JenKirkman,"@ArleBear Simple easy read on how to register to vote in CALIFORNIA +https://t.co/OKj87G0uB9 + +And direct link to reg… https://t.co/6PbcMD9UNQ" +06/29/2018,Comedians,@JenKirkman,@TrumpPrisonDate I always forget the time travel option. I female feel better 😂 +06/29/2018,Comedians,@JenKirkman,“female pilot” 🤦🏻‍♀️ https://t.co/XdENbrelLj +06/28/2018,Comedians,@JenKirkman,RT @solomongeorgio: White Americans that are horrified by today’s SCOTUS news. This is a real good time to wield your privilege for the gre… +06/28/2018,Comedians,@JenKirkman,"RT @BilgeEbiri: Hitler propagandist Leni Riefenstahl denied service at Hollywood nightclubs and studios in 1938. Leaves fuming, her feeling…" +06/28/2018,Comedians,@JenKirkman,@lauferlaw @asmith702 @LouiseBagshawe @DrDenaGrayson @thespybrief @TheDemocrats It would be Devine if we didn’t have to wait a Tad longer +06/27/2018,Comedians,@JenKirkman,@SpicyFiles @LouiseMensch Me too. +06/27/2018,Comedians,@JenKirkman,@TheRickWilson @LouiseMensch We got your back. +06/24/2018,Comedians,@JenKirkman,@chelseaperetti But is there still gonna be a scene where a guy shows up a a lady’s wedding or something and says h… https://t.co/RCcCNqlqhx +06/24/2018,Comedians,@JenKirkman,@steveblats @Stapes It doesn’t. Go show your wife and kids this tweet. +06/23/2018,Comedians,@JenKirkman,@annielederman 👍 +06/22/2018,Comedians,@JenKirkman,@annielederman Aw thanks. Didn’t take four hours or anything for me to get the right sun lighting +06/22/2018,Comedians,@JenKirkman,Retweeting my podcast account @iseemfunpodcast https://t.co/BewLQtcNom +06/22/2018,Comedians,@JenKirkman,@PFTompkins God Bless it +06/22/2018,Comedians,@JenKirkman,@kelly_carlin And make an awesome daughter!! ❤️🙏🏻 with you today. +06/21/2018,Comedians,@JenKirkman,@anylaurie16 👌🏼👍 +06/21/2018,Comedians,@JenKirkman,@TrannaWintour @Alanis @10x10TO @michaelvenus @neverapartmtl Whoa!! Totally good look +06/20/2018,Comedians,@JenKirkman,@EugeneMirman Omg now everyone is gonna cancel their tix to Flight of the Concords Friday.... +06/18/2018,Comedians,@JenKirkman,@20committee @counterchekist @TheRickWilson I get it! And “I like it! Especially if it’s later in summer...” +06/18/2018,Comedians,@JenKirkman,@counterchekist ❤️🙏🏻👍👍👍👍 +06/18/2018,Comedians,@JenKirkman,@adriann_ramirez @lsqtheatre Ok cool 🧚‍♀️🧚‍♀️🧚‍♀️can you delete this tweet tho 😂 it’s ok for podcast but if I wante… https://t.co/EonZSNeAaG +06/18/2018,Comedians,@JenKirkman,👇🏼 (thread) https://t.co/Oxadgwzchy +06/18/2018,Comedians,@JenKirkman,Just in case any of you were still unclear about how comedians are prophets. https://t.co/kCmoczJai6 +06/17/2018,Comedians,@JenKirkman,@whocharted is there a pic of us from when I was on or a link or didn’t it air yet +06/17/2018,Comedians,@JenKirkman,@anylaurie16 😂😂😂😂😂😂😂😂😂😂 +06/17/2018,Comedians,@JenKirkman,Been trying to compose a ❤️tweet ❤️about Mamma Tammye for days. But I’ve lost fifty pounds in water weight from cry… https://t.co/ZVnu3pxvpg +06/16/2018,Comedians,@JenKirkman,@sedavenport I’m the luckiest girl. I don’t get cramps! +06/16/2018,Comedians,@JenKirkman,@JesseRikart It’s the everything. I don’t even watch the show but I’ve found him so appealing for decades +06/16/2018,Comedians,@JenKirkman,@notbeforenoon Yes. That’s what I mean and it’s not dawning on him that that’s wrong and not American +06/16/2018,Comedians,@JenKirkman,Guys wanna know how PMS feels? It's like the moment of provocation before a testosterone fueled bar fight and in th… https://t.co/Ko2xScBcgj +06/16/2018,Comedians,@JenKirkman,Why would you ever be happy to run into someone you only sort of know. +06/16/2018,Comedians,@JenKirkman,@michaelianblack “Accidentally” +06/16/2018,Comedians,@JenKirkman,@krazykernal Yeah I saw the transformation too on my end with people. It’s terrifying. +06/16/2018,Comedians,@JenKirkman,@lauferlaw That’s what I keep telling myself!! ❤️🙏🏻🙏🏻 +06/16/2018,Comedians,@JenKirkman,@TundraEatsYou I doubt my mom and him would appreciate that 😂 +06/16/2018,Comedians,@JenKirkman,@lauferlaw Why would those heavies that we need resign? Seems cutting off one’s nose....what then happens to the investigation +06/16/2018,Comedians,@JenKirkman,@TomArnold Why tmrw +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe Hey any excuse to toss up a caddy shack clip 😂 +06/15/2018,Comedians,@JenKirkman,"Me, as a get more confused about where America is headed. https://t.co/pZMnwWffn9" +06/15/2018,Comedians,@JenKirkman,Dear @HouseGOP @SenateGOP you can end this. https://t.co/K3P2ABDQW8 +06/15/2018,Comedians,@JenKirkman,@laurenduca @Allen Cc @mattbelknap +06/15/2018,Comedians,@JenKirkman,@KennethWReid 😂😂 +06/15/2018,Comedians,@JenKirkman,If his account were a purposeful parody of himself it would be genius. https://t.co/bZPuJdM4RC +06/15/2018,Comedians,@JenKirkman,@TheRickWilson I’ve been in bed since 630pm. No joke. +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe This is the most satisfying thing I have ever watched +06/15/2018,Comedians,@JenKirkman,@cameronesposito @jonahray @RAINN I can’t wait to watch!!!! I will so soon! +06/15/2018,Comedians,@JenKirkman,"She’s a hateful, hateful, gaslighting sociopath. https://t.co/rRVeeoppcv" +06/15/2018,Comedians,@JenKirkman,@cameronesposito @jonahray @RAINN 🙏🏻🙏🏻🙏🏻❤️👍👍 +06/15/2018,Comedians,@JenKirkman,@MrJonCryer I read this quickly and thought you wrote “anyone who doesn’t look like Anne Hathaway.” And I was like… https://t.co/YgeBm3iDiH +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe I’m greedy. I want both. +06/15/2018,Comedians,@JenKirkman,@ChiefCovfefe Hmm well ok then for “birthday weekend” 😂😂🎁🎁🎁🎁 +06/14/2018,Comedians,@JenKirkman,❓ https://t.co/jp0gEhqRUg +06/14/2018,Comedians,@JenKirkman,@jdouglaslittle @ryrysven @tarabea80 @Maggie_Klaus @thehill He didn’t even win a primary so save your kremlin talki… https://t.co/O71SvyTXUP +06/13/2018,Comedians,@JenKirkman,@DitMusic Please lemme know how it goes?????? +06/12/2018,Comedians,@JenKirkman,@DitMusic You’ve always been funnier than me so you’re gonna be amazing. Just open your mouth and say what you feel… https://t.co/NPA9V6LepL +06/12/2018,Comedians,@JenKirkman,"Hey @Newsweek a better headline would be “Just last year, Trump thought Kim Jong Un was his deceased father, Kim Jo… https://t.co/0vAlDptJOx" +06/12/2018,Comedians,@JenKirkman,@gametheorytoday Beta male start own business drop out of college interconnected.....do go on? +06/12/2018,Comedians,@JenKirkman,@MrJonCryer My guess? Destiny Pictures is a woman who is about to be represented by Michael Avenatti. +06/12/2018,Comedians,@JenKirkman,@donnabrazile @counterchekist @realDonaldTrump This is a fucked up thing to tweet Donna. RU serious +06/12/2018,Comedians,@JenKirkman,Who is the third Kim that Trump will meet with this month? +06/12/2018,Comedians,@JenKirkman,@Brotherwags I will never forget we kept saying “this is really gonna happen...” +06/12/2018,Comedians,@JenKirkman,@Hannahgadsby @netflix I’m so excited and so glad the world gets to see this. I tell everyone about it all the time! 🙏🏻❤️🙏🏻 +06/12/2018,Comedians,@JenKirkman,RT @Hannahgadsby: HERE IT IS! THE @netflix TRAILER FOR NANNETFLIX!! gosh.... https://t.co/qYpHDZ7gLm +06/12/2018,Comedians,@JenKirkman,Young people who came to see me on tour this year - remember when I told you guys about Dennis Rodman’s past with K… https://t.co/HKhNxvHZ2x +06/12/2018,Comedians,@JenKirkman,@allistillo @iseemfunpodcast How do I decide what to have for breakfast lunch tmrw. I need advice. +06/12/2018,Comedians,@JenKirkman,Omg https://t.co/wUAjNxma3f +06/12/2018,Comedians,@JenKirkman,@annielederman @AndyKindler 😂 +06/11/2018,Comedians,@JenKirkman,@JElvisWeinstein @AndyKindler Well if Andy is doing all of the speaking it sounds like the dummy DOES get to speak. #hey-o +06/11/2018,Comedians,@JenKirkman,@AuthorKimberley @NRA What a bunch of pussies (forgive use of word pussy) +06/11/2018,Comedians,@JenKirkman,@AndyKindler People often ask me “what’s it like being a woman in comedy”? This is my new answer. https://t.co/FYur0xuuAU +06/11/2018,Comedians,@JenKirkman,@AkilahObviously Omg 😮 the yelling part sounds horrifying and also just omg you poor thing. +06/11/2018,Comedians,@JenKirkman,@AkilahObviously Omg did you have to sit in the brace position for landing. And was it rough landing so glad all is ok 🙏🏻❤️ +06/11/2018,Comedians,@JenKirkman,I strongly feel the Never Trump Republicans and conservatives should make a documentary (much like the Fox News one… https://t.co/XTUvyryULs +06/11/2018,Comedians,@JenKirkman,@Caissie Bless you 🙏🏻❤️ +06/11/2018,Comedians,@JenKirkman,Delete your presidency. https://t.co/jrKBG6tqh3 +06/11/2018,Comedians,@JenKirkman,@kelly_carlin But I have a feeling DT will nuke us before NK does +06/11/2018,Comedians,@JenKirkman,@kelly_carlin You'll be so happy you didn't waste the 20 minutes of your life it takes to reach us worrying - you'l… https://t.co/00mR7XpGx0 +06/10/2018,Comedians,@JenKirkman,"Please wipe off your baby and cut the umbilical cord before you take the announcement pic, cool? Cool." +06/10/2018,Comedians,@JenKirkman,@JElvisWeinstein Shit. Now I’ve been activated. All I wanna do is think of more puns. +06/10/2018,Comedians,@JenKirkman,Indie-rock loving housewives sit around the house eating Bon-Bon..Ivers. +06/10/2018,Comedians,@JenKirkman,@ChrisFranjola “Jingle” is worse than “push pins” if you’re talking about old people expressions +06/10/2018,Comedians,@JenKirkman,@Brotherwags 😂😂😂 I don’t know if I’ve ever laughed so fucking hard +06/09/2018,Comedians,@JenKirkman,@sarahcolonna ❤️❤️❤️ +06/09/2018,Comedians,@JenKirkman,@janiehaddad I talk fast and it mostly confuses everyone then nothing happens 😂 +06/09/2018,Comedians,@JenKirkman,Please calm down. You don’t have to stand this far away from someone in a prescription line. He’s ruining the entir… https://t.co/KsHQoEfLK1 +06/09/2018,Comedians,@JenKirkman,@20committee @FelisDave Happy Caturday. My sister’s cat Mittens never takes a day off from trying to figure out the… https://t.co/uHfExmKvU5 +06/09/2018,Comedians,@JenKirkman,@DeanWardVenice @ChrisFranjola One time Chris wanted me to write a Porky Pig doesn’t wear pants joke +06/08/2018,Comedians,@JenKirkman,@ChrisFranjola Deep +06/08/2018,Comedians,@JenKirkman,@mrdavehill as #vip #celebs I bet we can still get into any cockpit we want tbh +06/08/2018,Comedians,@JenKirkman,@mrdavehill I really do. My dad took me on my first flight when I was 8 and before take off we walked in and pilot… https://t.co/FM3OInraxE +06/07/2018,Comedians,@JenKirkman,"This is important. And thank you @RepSwalwell for using common sense about, ya know, maybe not letting people help… https://t.co/D7xe6bbtCE" +06/07/2018,Comedians,@JenKirkman,I don't wanna alarm my parents but most of the music from your era involved men singing about wanting to have sex with teenaged girls. +06/07/2018,Comedians,@JenKirkman,@reznor68 @ACLU I’m sorry but you do not have correct Information on this. +06/07/2018,Comedians,@JenKirkman,@CandiceMcD Been vegetarian for 30 years so for me no +06/06/2018,Comedians,@JenKirkman,@roxydavis99 Wow. I didn’t know we were allowed to say all this. I must’ve missed the Deep State declassified meeti… https://t.co/aLMHC91j0G +06/06/2018,Comedians,@JenKirkman,@AndyKindler Did he use a word processor and then print it up on his DOT MATRIX printer? #choochoo +06/06/2018,Comedians,@JenKirkman,@michaelianblack @toddbarry I just said “omg watch this. Michael gonna eat this up.” +06/06/2018,Comedians,@JenKirkman,@michaelianblack @toddbarry IS it fun to goof around?? That’s the real question. +06/06/2018,Comedians,@JenKirkman,@toddbarry @michaelianblack @NBCNewsTHINK Todd what I text you privately while I’m tweeting must remain private. Thanks. Is this a DM +06/06/2018,Comedians,@JenKirkman,@michaelianblack @NBCNewsTHINK You’re a lovely human ❤️🙏🏻 +06/06/2018,Comedians,@JenKirkman,@Eviljohna @rbsmashp @joncoopertweets I asked him once on Twitter didn’t answer 😂 +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets I did a 92 point thread (no longer up but archived) about how trump and Bernie made sim… https://t.co/1BVw6G8geV +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets Russian indictments indicate B was helped and the media lets him go. Wife under FBI inv… https://t.co/zFvo8joZP6 +06/05/2018,Comedians,@JenKirkman,@ChrisFranjola You remind me of an old Dennis Miller +06/05/2018,Comedians,@JenKirkman,Biblical prophets haven't warned us of their prophecies with the intensity that Los Angeles cashiers deliver the ne… https://t.co/LVCQcaTs03 +06/05/2018,Comedians,@JenKirkman,@Eviljohna @joncoopertweets Been scream/asking this since late 2016. I. Don’t. Get. It. We heard whispers of every… https://t.co/6iFsQ91nil +06/05/2018,Comedians,@JenKirkman,@nemack007 @counterchekist @lukeobrien @subverzo I’m blocked too +06/05/2018,Comedians,@JenKirkman,@michaelianblack I hear she owns all the jails and that’s why she hasn’t been jailed yet. She gave speeches in jail… https://t.co/eNSsL4pJnB +06/05/2018,Comedians,@JenKirkman,@michaelianblack No. Not as bad as what Hillary did. +06/05/2018,Comedians,@JenKirkman,@aliasvaughn You can. But this isn’t some freestyle stuff. It’s a very choreographed dance that comes with a song c… https://t.co/6VxJ7bQqrQ +06/05/2018,Comedians,@JenKirkman,@aliasvaughn And then Manafort turns on Tad Devine and I do a happy dance. +06/05/2018,Comedians,@JenKirkman,@jean_yoon @marilyn555 @lauferlaw @sparkycollier 100% +06/04/2018,Comedians,@JenKirkman,@KenPlume Thank you ken!! I hope you have 200 friends +06/03/2018,Comedians,@JenKirkman,@JamesFourM @mattgreenfield @RVAwonk @Vbiii241 BAM 🔥 +06/03/2018,Comedians,@JenKirkman,@QeyeTDogbytes @Pinche_Pi Maybe he will once Mueller talks to him about Tad Devine +06/03/2018,Comedians,@JenKirkman,@anylaurie16 He talked to you that way in front of your son??????? +06/02/2018,Comedians,@JenKirkman,"“Jennifah, good talking to you. Your father says hi but he’s busy right now watching Crocodile Dundee.”" +06/02/2018,Comedians,@JenKirkman,@1WomanProblem @SaraJFruman Never does. Thanks for making me laugh....at my own joke I guess. 😂😂😂😂 +06/02/2018,Comedians,@JenKirkman,@BrianStack153 @anylaurie16 I know. Why do people talk in elevators or ask personal questions. Who cares. And he wo… https://t.co/b3LEqayuc2 +06/02/2018,Comedians,@JenKirkman,"Pilot of my flight is a woman. And she’s going through the aisles shaking hands, saying her name, and “I’m driving… https://t.co/IYBFzd1vnO" +06/02/2018,Comedians,@JenKirkman,@anylaurie16 Why would you ever answer anyone 😂 +06/02/2018,Comedians,@JenKirkman,@Brotherwags 6:33 am in nyc and I have learned to no surprise that I’ve already experienced some sexism +06/01/2018,Comedians,@JenKirkman,"@RelativelySane0 @counterchekist @KremlinTrolls So you're saying ""baby, he was born that way?""" +06/01/2018,Comedians,@JenKirkman,@lauferlaw @LouiseMensch BAM! +06/01/2018,Comedians,@JenKirkman,@Tru7hS33kR @counterchekist @KremlinTrolls This is why I ONLY wear Saran Cling Wrap hats +06/01/2018,Comedians,@JenKirkman,@counterchekist @KremlinTrolls Wait I'm OLDER than Alex Jones? He looks like shit +06/01/2018,Comedians,@JenKirkman,“I’m literally dead” - tombstones in the future +05/31/2018,Comedians,@JenKirkman,@fortunefunny Oh good. She’s having some fun. +05/31/2018,Comedians,@JenKirkman,@fortunefunny FIND MELANIA!!! +05/31/2018,Comedians,@JenKirkman,@Brotherwags NO +05/31/2018,Comedians,@JenKirkman,@Brotherwags And that this feckless cunt is LITERALLY selling out America because she's a Russian fucking agent +05/31/2018,Comedians,@JenKirkman,@MCSnugz totally. lol. who am i kidding. +05/31/2018,Comedians,@JenKirkman,@johnmoe 😢 +05/31/2018,Comedians,@JenKirkman,@BVPcomedy I was JUST thinking about you today - no lie. I'm STILL in NYC - and have been all year :( :( :( But OBV… https://t.co/cecJrYtSOc +05/31/2018,Comedians,@JenKirkman,Yup. Stopped myself in the middle of a Google search. I'm too old for adhesive hair jewels. +05/30/2018,Comedians,@JenKirkman,@AndyKindler @dvdjbrn You really need your agent to reach out. Your Russian agent +05/30/2018,Comedians,@JenKirkman,@TheRickWilson 😂 +05/30/2018,Comedians,@JenKirkman,"Oh, sure. I'll take that receipt and then complete an online survey about your service once I finish MAKING MY LIFE WHAT I WANT IT TO BE." +05/30/2018,Comedians,@JenKirkman,How come confetti or balloons don't fall from the ceiling when I put a whole dollar bill in the counter tip jar?!?!? +05/30/2018,Comedians,@JenKirkman,@dvdjbrn @AndyKindler Block all of them. You don’t want any of them able to read your posts as you’re just handing them their research +05/30/2018,Comedians,@JenKirkman,@AndyKindler @dvdjbrn Hot tip cuz I study this stuff due to having been attacked by Russian trolls for two years ha… https://t.co/tFJxewfcHW +05/30/2018,Comedians,@JenKirkman,I've been on Twitter since the beginning when it was in black and white and we had to put a rabbit ear antenna on top of the computer. +05/29/2018,Comedians,@JenKirkman,If you're going to put your home videos of your cat on YouTube - please take the dirty sheets that you use as curta… https://t.co/KnsCCth0DB +05/29/2018,Comedians,@JenKirkman,If @ABCNetwork had just made my pilot - maybe they could’ve avoided this Roseanne mess. https://t.co/rjERp9Sqof +05/28/2018,Comedians,@JenKirkman,Is it ok that today I’m also remembering https://t.co/tLWgsL07b4 +05/28/2018,Comedians,@JenKirkman,A lovely day of remembrance to everyone. From me & Fleet Week. Thanks to those who have sacrificed their lives for… https://t.co/sdQjokuyEB +05/27/2018,Comedians,@JenKirkman,What?? This sounds like fan fiction about a modeling agency. https://t.co/HWaiBjXApJ +05/26/2018,Comedians,@JenKirkman,"My podcast @iseemfunpodcast is now available on @Spotify - and here's how to find it! +https://t.co/ZmnwMnY5Mn" +05/25/2018,Comedians,@JenKirkman,I judge people who have to physically stop what they're doing to answer a question. +05/25/2018,Comedians,@JenKirkman,This isn’t an apology. https://t.co/I3namDtAD6 +05/24/2018,Comedians,@JenKirkman,"I have a ""white noise"" machine in my bedroom. It blares the sounds of people discussing how expensive and competiti… https://t.co/s07kibsPeG" +05/23/2018,Comedians,@JenKirkman,"🇬🇧 LONDON! 🇬🇧 +Me. June 22nd. One night only. One show only. +Tickets here: https://t.co/l1uFeItbAv +@lsqtheatre https://t.co/DVglZByD1W" +05/20/2018,Comedians,@JenKirkman,"I'm gonna be rich once I open this funeral home/florist shop franchise called ""Making Arrangements.""" +05/20/2018,Comedians,@JenKirkman,She was a teenager 30 years his junior. I’m so over this shit. Let’s get some new heroes. https://t.co/W5tbUNwr8w +05/20/2018,Comedians,@JenKirkman,Please do not pawn your snooze of a wife off on me at a party thinking that we'll have things in common because we are both gals. +05/17/2018,Comedians,@JenKirkman,"""CAN MUELLER INDICT A SITTING PRESIDENT OR NOT?"" https://t.co/Aypysst9pu" +05/17/2018,Comedians,@JenKirkman,"""Stella McCartney clothes are so affordable!"" - anyone named McCartney" +05/16/2018,Comedians,@JenKirkman,"""We have no space in our home."" ""What? You have tons of space! You just have too many kids."" -me, if I hosted any HGTV show." +05/16/2018,Comedians,@JenKirkman,"Guys, nevermind Yanny and Laurel. Let’s never forget Yanni and Linda. https://t.co/e7hSGOegQ6" +05/15/2018,Comedians,@JenKirkman,"This is a great thing about a terrible thing. +https://t.co/oQvEMvOP4m" +05/15/2018,Comedians,@JenKirkman,Incredible thread. Only YOU can screw up the 2018 midterms by not speaking up about propaganda aimed at Dems and by… https://t.co/33H6qMx57O +05/15/2018,Comedians,@JenKirkman,Thank God for texting so you can quickly Google a reference rather than getting caught pretending to know face to f… https://t.co/ifDvMNbkmb +05/14/2018,Comedians,@JenKirkman,"Sometimes I just sit around thinking about the time Robert Reed pronounced weekend as ""week-END"" in an episode of the Brady Bunch." +05/14/2018,Comedians,@JenKirkman,"Hearing someone's phone ring in the middle of the day and their ring is my wake-up alarm, is the most disorienting… https://t.co/a2MUFdS6Cy" +05/14/2018,Comedians,@JenKirkman,@michellelkeen I looked it up - it's near the commons on Bowdoin street - near the state house-ish +05/14/2018,Comedians,@JenKirkman,I would like to fix- I try to get this out every way I can. I was wrong. There is a sculpture of Mary Dyer in Bosto… https://t.co/BEHtnlnmhp +05/13/2018,Comedians,@JenKirkman,"My Mother’s Day Call with my mom: + +“Jennifah, I saw Tom Jones. He sang Sex Bomb and he sings, “‘take off your shoes… https://t.co/HwJGUUrPM5" +05/13/2018,Comedians,@JenKirkman,Men when us women take over the world and install Matriarchy we promise we won't creepily watch you eat in restaurants alone. We don't care. +05/13/2018,Comedians,@JenKirkman,Your yearly reminder that Mother’s Day was originally a proclamation by Julia Howe Ward that women worldwide unite… https://t.co/M3rIHQxoyK +05/12/2018,Comedians,@JenKirkman,"Summer here I come! My beach body is READY! I am made of sand, bird poop, and syringes." +05/12/2018,Comedians,@JenKirkman,We have shit to do. https://t.co/REGwugxlLo +05/12/2018,Comedians,@JenKirkman,Jared @comedyattic (my fave comedy club booker) secretly taking me doing my vocal warm up video. https://t.co/JbUJEcOeHc +05/11/2018,Comedians,@JenKirkman,Spiritual Melania: “Best Be.” +05/11/2018,Comedians,@JenKirkman,@Merrillmarkoe He looks cooler and more awesome than most dudes my age and younger. He would never be caught dead w… https://t.co/e3l7xST6zI +05/11/2018,Comedians,@JenKirkman,"I am overhearing two 20-somethings discuss Keith Richards. +“I think he’s like 95.” +“No. He just looks 95 but I thi… https://t.co/kVvcJI5rcc" +05/11/2018,Comedians,@JenKirkman,The only carefree thing I do is toss out the extra button that comes with some clothes. +05/10/2018,Comedians,@JenKirkman,"Just another morning at the airport where everyone is impeccably dressed, smelling nice and making healthy food choices!" +05/10/2018,Comedians,@JenKirkman,"Male TSA agent to me. ""You're flying all alone today?"" I said, ""God. I wish! But I think there's going to be 200 other people on the plane.""" +05/09/2018,Comedians,@JenKirkman,BROOKLYN - I added this additional show on 7/29 because 7/22 sold out within a week - so don't sleep on these ticke… https://t.co/63SONjp77N +05/09/2018,Comedians,@JenKirkman,Sometimes I wonder if I'm really a woman because I don't enjoy watching Law & Order or Breakfast at Tiffany's. +05/09/2018,Comedians,@JenKirkman,I couldn't be less interested in what day of the week it is and how you're feeling about it and what day you want it to be +05/09/2018,Comedians,@JenKirkman,If you have abused any women I will kick your fucking ass.... https://t.co/af8MQfCui2 +05/08/2018,Comedians,@JenKirkman,LOS ANGELES!! My show LAB TEST is back for 3 more dates in 2018. It's been selling out since 2017 and so who are yo… https://t.co/mTWa17L35C +05/08/2018,Comedians,@JenKirkman,If you can't take the heat - get out of my bitchin' +05/08/2018,Comedians,@JenKirkman,"Nobody ever makes inspirational wood carvings that say, ""If you love something set it free. It will be totally fine… https://t.co/XzyQJ2LxSz" +05/08/2018,Comedians,@JenKirkman,I was in a good mood until someone just reminded me of when Scarlett Johansson covered a bunch of Tom Waits songs. +05/07/2018,Comedians,@JenKirkman,I’m done arguing with idiots who don't know that Ray Parker Jr. is totally Dorothy Parker’s nephew. +05/07/2018,Comedians,@JenKirkman,It's been a long day and night & I'm too tired to go through the steps of washing my face. I'll just take an entire… https://t.co/yYMgRfypu0 +05/07/2018,Comedians,@JenKirkman,I'm looking for more of a farm-to-couch dining experience. +05/06/2018,Comedians,@JenKirkman,I bet necrophiliacs have good time management skills. They've taken the two things people obsess over every three minutes & combined them. +05/06/2018,Comedians,@JenKirkman,"I wanna close every last business that still says ""www"" when giving out their website over the phone." +05/06/2018,Comedians,@JenKirkman,"Well, one good thing that I think is happening on Twitter is that a lot less people are saying “like a boss” these days." +06/24/2018,Musicians,@taylorswift13,"Angels 😇 +@RobbieWilliams +https://t.co/A6rx5WA0ie" +05/25/2018,Musicians,@taylorswift13,Amazing @JamesBayMusic! 👏👏👏👏👏👏👏👏👏👏👏👏👏 https://t.co/9RDrCEbKBc +05/22/2018,Musicians,@taylorswift13,Thanks @vmagazine ❤️ See you tonight Seattle!! https://t.co/VB78rGXO7C +05/12/2018,Musicians,@taylorswift13,RT @Variety: Taylor Swift Dazzles on Opening Night of 'Reputation' Tour @taylorswfit13 https://t.co/lGp9dgDYSr +05/12/2018,Musicians,@taylorswift13,RT @RollingStone: Taylor Swift kicked off her 'Reputation' tour last night in Arizona. Rob Sheffield on why this trek is her finest yet htt… +05/12/2018,Musicians,@taylorswift13,RT @mercnews: Review: Taylor Swift delivers near-perfect pop show in Bay Area https://t.co/aOoOAMGCGV https://t.co/EQa5YuTRO9 +05/11/2018,Musicians,@taylorswift13,RT @charli_xcx: 💕CHARLI💕CAMILA💕TAYLOR💕 SEE U 2NIGHT SANTA CLARA !!!!!! https://t.co/dCaEIaFmRR +05/05/2018,Musicians,@taylorswift13,"RT @Camila_Cabello: ALSO ""10 SONGS FROM PAST ALBUMS"" MY HEAD IS SPINNING?!! WILL A HEY STEPHEN, OR CHANGE BE THROWN IN? ENCHANTED?! LONG LI…" +05/05/2018,Musicians,@taylorswift13,RT @Camila_Cabello: THERE’S FOUR DAYS TILL THE REPUTATION TOUR HOLD MY WIG +04/11/2018,Musicians,@taylorswift13,It's National Siblings Day! Check out Austin's movie 😁 https://t.co/Zqx5hLj6of +03/30/2018,Musicians,@taylorswift13,Vertical video for #Delicate out now. Only on @Spotify ✨ https://t.co/ZHvrH7k1PN https://t.co/nhcfIv97gR +03/29/2018,Musicians,@taylorswift13,New video for #Delicate at midnight EST tonight. Only on @spotify  ✨ https://t.co/AHEY6LOSTz +03/12/2018,Musicians,@taylorswift13,I know that it’s delicate... https://t.co/0H5EpgcFtd +03/11/2018,Musicians,@taylorswift13,DELICATE VIDEO WORLD PREMIERE ON @iHeartRadio MUSIC AWARDS ON @TBSNetwork!!! ✨💃✨ https://t.co/hhILI7bwn9 +03/05/2018,Musicians,@taylorswift13,✨✨✨✨✨✨✨✨✨✨✨✨✨ https://t.co/KHNRCaKfU0 +03/01/2018,Musicians,@taylorswift13,I have a very exciting update to share... @Camila_Cabello and @charli_xcx will be the opening acts on the… https://t.co/cN3Wfgbvb3 +02/05/2018,Musicians,@taylorswift13,"Songs I’m loving right now 🎶 +https://t.co/K62TYfJht6" +01/12/2018,Musicians,@taylorswift13,#EndGameMusicVideo out now. @edsheeran @1future https://t.co/z6EiFsLniY +01/11/2018,Musicians,@taylorswift13,"Tonight at midnight eastern. #EndGameMusicVideo +@1future @edsheeran https://t.co/XHRS02IXfY" +12/24/2017,Musicians,@taylorswift13,RT @taylornation13: #TheSwiftLife is now available for Android! Get it on Google Play now: https://t.co/qguJHJ3qPL https://t.co/93evBchcNl +12/16/2017,Musicians,@taylorswift13,RT @AppStore: .@taylorswift13's first app has arrived—and it’s only on the App Store. (Early reviews are in: Meredith and Olivia give it tw… +12/13/2017,Musicians,@taylorswift13,North American dates on sale now! https://t.co/o8bU3G9HMl https://t.co/4ZV2mczOPt +12/11/2017,Musicians,@taylorswift13,RT @RIAA: Congratulations @taylorswift13. #reputation is 3X Platinum + RIAA’s top certified 2017 album to date! @BigMachine https://t.co/D1… +12/11/2017,Musicians,@taylorswift13,RT @RIAA: There’s more! Look What You Made Me Do is 3X Platinum + ... Ready For It? is Platinum @taylorswift13! @BigMachine https://t.co/St… +12/11/2017,Musicians,@taylorswift13,RT @RIAA: #Fearless joins the RIAA 10X Diamond club! @taylorswift13! @BigMachine https://t.co/DSnfIt2Nmc +12/07/2017,Musicians,@taylorswift13,"RT @taylornation13: 🚗❤️🚨 The perfect road trip song! Watch @taylorswift13 find her “Getaway Car” breakthrough on #TaylorSwiftNOW, only from…" +12/07/2017,Musicians,@taylorswift13,"""...Ready For It?"" (@BloodPop ® Remix) out now - https://t.co/BhnUlUqUD7 https://t.co/rsKdAQzd2q" +12/04/2017,Musicians,@taylorswift13,"Thank you @Edward_Enninful, Mert Alas and Marcus Piggott for your passion, spirit and contagious laughter on set.… https://t.co/HTJMTNJlrt" +12/02/2017,Musicians,@taylorswift13,Absolutely stunning. https://t.co/6itJC1bk6W +11/30/2017,Musicians,@taylorswift13,RT @taylornation13: https://t.co/WWpP1tpRmU +11/16/2017,Musicians,@taylorswift13,This week has been unforgettable. I love you guys. Thanks a million 😉 https://t.co/qjspCA7NJ7 +11/15/2017,Musicians,@taylorswift13,The Making of #Delicate ✨ #reputation #TaylorSwiftNow https://t.co/tn78pMCoVV +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/CbTqn2F6Xs +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/JhZNUZ7MxK +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/f4135JnNhM +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/JtblVbBa5u +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/sAtTLVzfw3 +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation  ❤️ https://t.co/pOEpn6Dk5p +11/14/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/2OV2DvvIyN +11/14/2017,Musicians,@taylorswift13,RT @jimmyfallon: Taylor Swift performs 'New Year's Day' from her new album Reputation #FallonTonight https://t.co/20GPtmFWzf +11/13/2017,Musicians,@taylorswift13,RT @etnow: Taylor Swift defends her 'reputation' as a great 'SNL' musical guest with 2 epic performances. https://t.co/BGvqX6H1Sn https://t… +11/13/2017,Musicians,@taylorswift13,RT @people: Taylor Swift Takes SNL Stage with Snake-Shaped Mic In Hand — then Goes Acoustic https://t.co/cnH2ESn93x +11/13/2017,Musicians,@taylorswift13,RT @Metro_Ents: Taylor Swift slays the first live performances of the Reputation era on #SNL https://t.co/gYKn3UjLBW +11/13/2017,Musicians,@taylorswift13,RT @usweekly: Taylor Swift slays on 'SNL' and Tiffany Haddish makes history: see the best moments https://t.co/ZdWzK8e3Qj +11/13/2017,Musicians,@taylorswift13,RT @InStyle: Watch Taylor Swift crush her performances from last night's SNL. https://t.co/7zSCBEerxB +11/12/2017,Musicians,@taylorswift13,"THANK YOU SO MUCH!! AHHHH!!! PS, I ADORED your CMA performance 👏👏👏 https://t.co/RGEvOTYEhd" +11/11/2017,Musicians,@taylorswift13,"Tonight. + +📷: Mary Ellen Matthews https://t.co/mbQdDHz5Dn" +11/11/2017,Musicians,@taylorswift13,"My cousins in St. Louis sent this to me. I LOVE YOU @LauraKHettiger +https://t.co/OvC349nq8y" +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/WPWiwPodY1 +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/hEGz0GQFqc +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/PRkjzCmoAc +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/NPcA5WsgVL +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/hxD5n2KrxW +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/9n2rvbzXph +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/K3tUWVvmpd +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/18sg97Oshp +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/3p2sIX7WGU +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/z5HoBkxUQy +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/O8sznXy3vX +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/sygCHKoJvu +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/tDWpcN4MGx +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/eS6JDjsWuF +11/11/2017,Musicians,@taylorswift13,#reputaylurking #reputation ❤️ https://t.co/rOXGOsBDae +11/10/2017,Musicians,@taylorswift13,RT @babyhaim: give me dress all day everyday....dress dress dress dress yes yes yes yes @taylorswift13 https://t.co/0RfSI1QHpY +11/10/2017,Musicians,@taylorswift13,"RT @latimes: Taylor Swift's talent remains intact on ""Reputation,"" her most focused, most cohesive album yet https://t.co/9OWWyhLppb https:…" +11/10/2017,Musicians,@taylorswift13,RT @robsheff: good lord I love this album https://t.co/pUVZtUg4t5 +11/10/2017,Musicians,@taylorswift13,#reputation is out now. Let the games begin. https://t.co/oExj2XFGvH https://t.co/GzA6cTEwjf +11/10/2017,Musicians,@taylorswift13,RT @taylornation13: Get an exclusive first listen of ‘New Year’s Day’ at 9:29p ET tonight on @ABC and hang with us as we countdown to #repu… +11/09/2017,Musicians,@taylorswift13,"Waiting for #reputation like... + +https://t.co/oExj2XFGvH https://t.co/LCCRtKnQXz" +11/09/2017,Musicians,@taylorswift13,ABC tonight during Scandal #reputation #TGIT https://t.co/kOhx1vAXoV +11/09/2017,Musicians,@taylorswift13,In NYC for SNL rehearsals. I️ LOVE YOU @littlebigtown and CMAs. https://t.co/3QT7bX6yOe +11/09/2017,Musicians,@taylorswift13,"RT @GMA: CMA Awards Song of the Year: ""Better Man"" - @taylorswift13 + +@CountryMusic #cmaawards2017 #CMAawards https://t.co/QJlUQXHh64" +11/09/2017,Musicians,@taylorswift13,"Two days until #reputation. +https://t.co/oExj2XFGvH https://t.co/z4bk0thC5c" +11/08/2017,Musicians,@taylorswift13,"Three new behind-the-scenes videos available now. + +Only on @AppleMusic: https://t.co/nNtHaYzZrp https://t.co/a4E6cNaD3B" +11/08/2017,Musicians,@taylorswift13,RT @courtneyforce: Let the games begin! Running a @taylorswift13 FunnyCar w/ @AdvanceAuto & @BigMachine at @NHRA Finals! Taylors #reputatio… +11/08/2017,Musicians,@taylorswift13,Forgot to show the back of the Target magazines 😂 on Friday you can get your hands on this quality reading material… https://t.co/r626FRMtI2 +11/08/2017,Musicians,@taylorswift13,"3 days until #reputation. + +https://t.co/oExj2XFGvH https://t.co/sjr8hMqPxV" +11/07/2017,Musicians,@taylorswift13,"Two unique magazines. Poetry, paintings, lyrics & polaroids. +Available Friday: https://t.co/fPhRA1wB6F https://t.co/frFIILyrqa" +11/07/2017,Musicians,@taylorswift13,Inside the reputation Secret Sessions - https://t.co/aotQtPBzer +11/03/2017,Musicians,@taylorswift13,The #CallItWhatYouWant lyric video is out now! Watch it here: https://t.co/FKYJ3dADib +11/03/2017,Musicians,@taylorswift13,"“Call It What You Want” available now. @applemusic +Pre-order #reputation: https://t.co/oExj2XFGvH https://t.co/EWxoTpSzIT" +11/02/2017,Musicians,@taylorswift13,Call It What You Want. Midnight Eastern. https://t.co/nTmlQUzmFN +11/01/2017,Musicians,@taylorswift13,"RT @ATT: ⏰ The Making of a Song premieres 11/13 on @DIRECTVNOW, only from AT&T! https://t.co/emXplX8gjo #TaylorSwiftNOW https://t.co/VIXXYd…" +10/27/2017,Musicians,@taylorswift13,#ReadyForItMusicVideo https://t.co/HYBhBqNVo3 +10/02/2017,Musicians,@taylorswift13,There are no words to express the helplessness and sorrow my broken heart feels for the victims in Vegas and their families. +09/29/2017,Musicians,@taylorswift13,https://t.co/EIXRjnE9Gw +09/22/2017,Musicians,@taylorswift13,"RT @RollingStone: All 115 of Taylor Swift's songs, ranked https://t.co/mdD4f04rQ8 https://t.co/Bm317v6fib" +09/22/2017,Musicians,@taylorswift13,RT @TheEllenShow: #LookWhatYouMadeMeDo @TaylorSwift13 https://t.co/8rUDDtwbdH +09/22/2017,Musicians,@taylorswift13,😍😍😍 https://t.co/oIAruxj8ZH +09/07/2017,Musicians,@taylorswift13,😃☎️ @ATT https://t.co/I6mCnlan8g https://t.co/mjjELwz7L8 +09/07/2017,Musicians,@taylorswift13,Some real tough questions I had for Olivia. https://t.co/VeLIN3iYRY +09/07/2017,Musicians,@taylorswift13,Such a taxing day when they're like 'eat some cookie dough' and you're like 'ok I'll make this sacrifice for my art… https://t.co/oddvslRGXe +09/03/2017,Musicians,@taylorswift13,A second glance into #reputation...ready for it? https://t.co/e495xJi3M8 https://t.co/HF35pISj2N +08/28/2017,Musicians,@taylorswift13,The #LWYMMDvideo is out now - https://t.co/6ajIH45CnX +08/25/2017,Musicians,@taylorswift13,"Official #LWYMMDvideo world premiere. +Sunday 8/27 at the @vmas https://t.co/tjAxr8qdsY" +08/25/2017,Musicians,@taylorswift13,"New single #LookWhatYouMadeMeDo out now. Pre-order #reputation: https://t.co/oExj2XFGvH + +Merch & ticket info at… https://t.co/YFctYldpic" +08/23/2017,Musicians,@taylorswift13,https://t.co/xMBBukfZPs +08/23/2017,Musicians,@taylorswift13,https://t.co/xqhhDZ0y7c +08/22/2017,Musicians,@taylorswift13,https://t.co/12Rfi8bso4 +08/21/2017,Musicians,@taylorswift13,https://t.co/p2DyY0e2M3 +07/01/2018,Musicians,@ArianaGrande,i try my sweets 🍽 https://t.co/Qo7Ub3cZ4k +07/01/2018,Musicians,@ArianaGrande,yea it’s v exciting https://t.co/FSEf65zsjL +07/01/2018,Musicians,@ArianaGrande,= https://t.co/pcTmPpmIbS +07/01/2018,Musicians,@ArianaGrande,cloud > https://t.co/y7xu2YU0HD +07/01/2018,Musicians,@ArianaGrande,☁️ ♡ https://t.co/DKvvWZBm2T +07/01/2018,Musicians,@ArianaGrande,@ColleenB123 and teach your child all the strange space & marine biology facts it will never need to know +07/01/2018,Musicians,@ArianaGrande,@ColleenB123 i love u so much more i KNEW immediately. i cant wait to hug u. +07/01/2018,Musicians,@ArianaGrande,@Iouisrem omg hbd ! +07/01/2018,Musicians,@ArianaGrande,@sweetenerari hbd baby +07/01/2018,Musicians,@ArianaGrande,@agbdavidson so happy for her. and can’t wait to meet the tiny human ! +07/01/2018,Musicians,@ArianaGrande,@agbdavidson i knew it. for some reason. she was like hey can u call me ? and i was like omg pregnant. +07/01/2018,Musicians,@ArianaGrande,@goodnightdeIuxe the bottle comes out of the cloud ! it’s so cute +07/01/2018,Musicians,@ArianaGrande,love ʸᵘʰ i do +07/01/2018,Musicians,@ArianaGrande,@greedyillusion https://t.co/kLR5qK8BQH +07/01/2018,Musicians,@ArianaGrande,@arianapotion ʸᵘʰs i do +07/01/2018,Musicians,@ArianaGrande,@greedyillusion oooo i want to show u the packaging +07/01/2018,Musicians,@ArianaGrande,@biebbsspurpose i really havent ! y’all have usually heard waaaay more by now aren’t u proud of me +07/01/2018,Musicians,@ArianaGrande,@godisblazed i don’t mute y’all u my babies +07/01/2018,Musicians,@ArianaGrande,"@godisblazed no, rose" +07/01/2018,Musicians,@ArianaGrande,@buntybutera @tearsuscry happy giaw month to u baby ! +07/01/2018,Musicians,@ArianaGrande,@tearsuscry hmmmmm +07/01/2018,Musicians,@ArianaGrande,i logged on at the right time https://t.co/8sVTPVT7id +07/01/2018,Musicians,@ArianaGrande,love ʸᵘʰ more https://t.co/6A4UPBonKe +07/01/2018,Musicians,@ArianaGrande,omg https://t.co/jVIq1FTWGo +07/01/2018,Musicians,@ArianaGrande,🌫 ♡ https://t.co/KhNWi3jUTb +06/30/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 🌫 https://t.co/kgaHLWjUeK https://t.co/pi5FukIk0W +06/30/2018,Musicians,@ArianaGrande,@onelovesbutera me fuckin too but he’s busy being an eyebrow / lash extension king ! so proud of him +06/30/2018,Musicians,@ArianaGrande,@grandesliving ☕️ +06/30/2018,Musicians,@ArianaGrande,@arianasgrnds omg honeymoon ave duhhhhh +06/30/2018,Musicians,@ArianaGrande,@agbdavidson kb 100% +06/30/2018,Musicians,@ArianaGrande,@jonygrandee oh trust me so do we lmao 🙈 he’s very wonderful at what he does tho +06/30/2018,Musicians,@ArianaGrande,@bettersoffs sksjsjs don’t it’s ok i understand +06/30/2018,Musicians,@ArianaGrande,@blowsitaIl yuh yuh yuh ! +06/30/2018,Musicians,@ArianaGrande,@nyczach yooooo wanna hear something i was afraid to tell y’all bc i didn’t want u to worry but i didn’t even do th… https://t.co/iZ7zF9zGA7 +06/30/2018,Musicians,@ArianaGrande,luh you so much https://t.co/W9i76NWFGj +06/30/2018,Musicians,@ArianaGrande,sksjsjsj https://t.co/w4B87oxUdV +06/30/2018,Musicians,@ArianaGrande,oh ........... https://t.co/MIcTrVFgJY +06/30/2018,Musicians,@ArianaGrande,@bettersoffs @rightheresus good bb. love you guys. have a good night pls! +06/30/2018,Musicians,@ArianaGrande,@grandesrole @rightheresus thank u sm +06/30/2018,Musicians,@ArianaGrande,@rightheresus i’m like ...... pretty good +06/30/2018,Musicians,@ArianaGrande,@justgrandeit @ttylgrande mmm hmmmm ! +06/30/2018,Musicians,@ArianaGrande,@remdrops @theIightiscomin sksjsjsj we’ve literally been working on getting our lil dwt project to u nonstop ! thes… https://t.co/SHya6iWTTL +06/29/2018,Musicians,@ArianaGrande,@bigtitsariana IT WAS A BDAY GIFT +06/29/2018,Musicians,@ArianaGrande,@moonlightmiguel amdjsksjjsjs +06/29/2018,Musicians,@ArianaGrande,@fvocus . +06/29/2018,Musicians,@ArianaGrande,@rightheresus @notearsnjh @lightissgrande @blazedbyari @apeshitdeluxe indeed +06/29/2018,Musicians,@ArianaGrande,@notearsnjh @lightissgrande @blazedbyari @apeshitdeluxe yummy ones +06/29/2018,Musicians,@ArianaGrande,"@moonofari you’ll never know +only one +dw & be alright are tied" +06/29/2018,Musicians,@ArianaGrande,@lightissgrande @blazedbyari @apeshitdeluxe it’s so me +06/29/2018,Musicians,@ArianaGrande,@godisawomanag ! +06/29/2018,Musicians,@ArianaGrande,@grandekordei @blazedbyari @apeshitdeluxe collect me +06/29/2018,Musicians,@ArianaGrande,@defendgrande @blazedbyari @apeshitdeluxe 🍴 +06/29/2018,Musicians,@ArianaGrande,@minajcum @blazedbyari @apeshitdeluxe oof r we fighting +06/29/2018,Musicians,@ArianaGrande,@blazedbyari @apeshitdeluxe for now +06/29/2018,Musicians,@ArianaGrande,@bettersoffs for now +06/29/2018,Musicians,@ArianaGrande,@bettersoffs only one +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe i’m back & i feel like they’re tied although so very different +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe like i love u SO much im laughing +06/29/2018,Musicians,@ArianaGrande,@apeshitdeluxe omG you’re the meanest i love u so so so much tho even tho tasteless sksjsjshsks +06/29/2018,Musicians,@ArianaGrande,@behoeright @apeshitdeluxe @grandesliving anys i love u +06/29/2018,Musicians,@ArianaGrande,@gagasgrande omg love u. hugging u from here. +06/29/2018,Musicians,@ArianaGrande,@privilegedboca @JasperButera @sunkissedhanna i love u more +06/29/2018,Musicians,@ArianaGrande,@sidestoside @JasperButera @sunkissedhanna no but i love u sm +06/29/2018,Musicians,@ArianaGrande,@betteroffdeIuxe @JasperButera @sunkissedhanna ok all of them +06/29/2018,Musicians,@ArianaGrande,@grandesliving oooo i meant single +06/29/2018,Musicians,@ArianaGrande,@collectcaIls @JasperButera @sunkissedhanna ! +06/29/2018,Musicians,@ArianaGrande,@arianaclout @JasperButera @sunkissedhanna so r u my cutie omg +06/29/2018,Musicians,@ArianaGrande,@JasperButera @sunkissedhanna i don’t like to hype y’all up but a hundred percent +06/29/2018,Musicians,@ArianaGrande,@mariesweeteners @badcisions @jonygrandee you’ll see +06/29/2018,Musicians,@ArianaGrande,@Ieftstocry @badcisions @jonygrandee can’t +06/29/2018,Musicians,@ArianaGrande,@remslovato @badcisions @jonygrandee yea +06/29/2018,Musicians,@ArianaGrande,@buterassheesh @jonygrandee ok tru +06/29/2018,Musicians,@ArianaGrande,@badcisions @jonygrandee 🌘🌫👩🏼‍⚖️☁️🌎🕯🌙🐱🎨👼🏼🌌🐺 +06/29/2018,Musicians,@ArianaGrande,@jonygrandee babies it’s not that deep ! these are jus the emojis i like 🙈 +06/29/2018,Musicians,@ArianaGrande,⚡️ https://t.co/Q2qZE5DFBS +06/29/2018,Musicians,@ArianaGrande,i love u +06/29/2018,Musicians,@ArianaGrande,@sweetnrsus it’s coming +06/29/2018,Musicians,@ArianaGrande,@letmeIoveyou @GRANDESDEVOTlON ok werk even tho we’re celebrating at midnight. u in ? +06/29/2018,Musicians,@ArianaGrande,@sweetenersammy this ones jus for me 🙈😇 +06/29/2018,Musicians,@ArianaGrande,@GRANDESDEVOTlON is it 48 or 49 i- +06/29/2018,Musicians,@ArianaGrande,@bealrightdeluxe @notearsttocry @theway fuck i love y’all both sooooo much more fr +06/29/2018,Musicians,@ArianaGrande,@notearsttocry i cant tell u how hard we just laughed +06/29/2018,Musicians,@ArianaGrande,"@selfloveari hi it’s courtney +1. r.e.m. +2. better off +3. sweetener +4. pete +5. goodnight n go" +06/29/2018,Musicians,@ArianaGrande,@selfloveari omg inquiring now +06/29/2018,Musicians,@ArianaGrande,we could jus ... https://t.co/d172UF5KcS +06/28/2018,Musicians,@ArianaGrande,🌫 +06/28/2018,Musicians,@ArianaGrande,if u can beliiiieeeeeeeve mmmm you’re such a dream to me +06/28/2018,Musicians,@ArianaGrande,sleeeeeeeeeep +06/28/2018,Musicians,@ArianaGrande,yuh +06/28/2018,Musicians,@ArianaGrande,boy you’re sucha dream to me +06/28/2018,Musicians,@ArianaGrande,"RT @RepublicRecords: 𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 +𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 +𝐒𝐰𝐞𝐞𝐭𝐞𝐧𝐞𝐫 + +Pre-order @ArianaGrande's new album // Out 8.17 +↳ https://t.co/7rXownGX5Q https://t.c…" +06/28/2018,Musicians,@ArianaGrande,@RAINEGRANDE i do +06/28/2018,Musicians,@ArianaGrande,@grandemeester HAHAHAH +06/28/2018,Musicians,@ArianaGrande,@notearslexi omg my sometimes pants look great hello +06/28/2018,Musicians,@ArianaGrande,@ntltckay love u more +06/28/2018,Musicians,@ArianaGrande,@kelanigrande never +06/28/2018,Musicians,@ArianaGrande,@invisibleseas @sweetaner sksjsjskjsjsn +06/28/2018,Musicians,@ArianaGrande,@sweetaner i tried wearing jeans today i felt like my legs were braided. we’ll see. +06/28/2018,Musicians,@ArianaGrande,@minajcum i’m crying wtf is this +06/28/2018,Musicians,@ArianaGrande,i’d literally do this tonight if i could https://t.co/HbUodEXBqd +06/28/2018,Musicians,@ArianaGrande,@arianashijabi i’m pete +06/28/2018,Musicians,@ArianaGrande,hey i miss singing for u guys bye https://t.co/OpQuGtRovU +06/27/2018,Musicians,@ArianaGrande,hi love u more https://t.co/L4jM4iSQsh +06/27/2018,Musicians,@ArianaGrande,omg https://t.co/OiTSyRpWkn +06/27/2018,Musicians,@ArianaGrande,🌘 ♡ https://t.co/SzncBFvnqQ +06/27/2018,Musicians,@ArianaGrande,@juhaynatdjebara @shadeofari tis the whole intro :’) +06/27/2018,Musicians,@ArianaGrande,@sweetenerlilly yes :) +06/27/2018,Musicians,@ArianaGrande,@gotwelIsoon no u already have raindrops now ! my bad. this was confusing. i decided to give u raindrops last minut… https://t.co/rOFN9IjEGz +06/27/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs bundles https://t.co/8wbV2UN8yL https://t.co/cPDH2OqAsa +06/27/2018,Musicians,@ArianaGrande,bitch a mood https://t.co/7UNMLml7vQ +06/27/2018,Musicians,@ArianaGrande,i still don’t think y’all understand how much i love u ........ like .... at the fuck all +06/27/2018,Musicians,@ArianaGrande,issa countdown https://t.co/Us5T2AWutC +06/27/2018,Musicians,@ArianaGrande,@tbyarianagb thank u baby +06/27/2018,Musicians,@ArianaGrande,@grandesbenefit full mood i can’t wait +06/27/2018,Musicians,@ArianaGrande,@dangerousbwoman r we fighting +06/27/2018,Musicians,@ArianaGrande,@selrianarunpop omg cutie ! thank you ! i’m ......... the most excited for you to hear the rest ..... ever +06/27/2018,Musicians,@ArianaGrande,@grandesweeter love u way more +06/27/2018,Musicians,@ArianaGrande,@arianashijabi omg they’re so fun +06/27/2018,Musicians,@ArianaGrande,@flamesariana love u way more +06/27/2018,Musicians,@ArianaGrande,@cutepiegrande u too my sweet +06/27/2018,Musicians,@ArianaGrande,@knewitgrande missed u +06/27/2018,Musicians,@ArianaGrande,@touchedher the best ever i love u +06/27/2018,Musicians,@ArianaGrande,@aintnotearleft @sweetenerlilly i love u more +06/27/2018,Musicians,@ArianaGrande,@godisawomanag hi baby ! +06/27/2018,Musicians,@ArianaGrande,@sweetenerlilly the most grateful ever +06/27/2018,Musicians,@ArianaGrande,“i found the perfect dress for lafayette today” - a tipsy @victoriamonet +06/26/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 🌫 https://t.co/kgaHLW2iQa https://t.co/JOyKQL2iup +06/25/2018,Musicians,@ArianaGrande,@offlinehunk werk +06/25/2018,Musicians,@ArianaGrande,i’m so i’m so !!! +06/25/2018,Musicians,@ArianaGrande,caption dis https://t.co/O7EN8BNO9T +06/25/2018,Musicians,@ArianaGrande,remember when i was the SHADIEST BABY IN THE WORLD https://t.co/WWVqgTJzJM +06/25/2018,Musicians,@ArianaGrande,i - https://t.co/vqiHXSXdOu +06/25/2018,Musicians,@ArianaGrande,ily @troyesivan +06/25/2018,Musicians,@ArianaGrande,@grandekordei i already know qt +06/25/2018,Musicians,@ArianaGrande,@bottomlineari @grandekordei love u more +06/25/2018,Musicians,@ArianaGrande,@grandekordei sksjshakshaksj i love u more +06/25/2018,Musicians,@ArianaGrande,@grandekordei how tFYCK is this a drag i LOVE U and tweet u like 79 times a day relax i love u goodbye +06/25/2018,Musicians,@ArianaGrande,@joangrande @grandekordei @blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @NICKIMINAJ ur so cute i’m out +06/25/2018,Musicians,@ArianaGrande,@joangrande @grandekordei @blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @NICKIMINAJ “expand their mus… https://t.co/qj7YOKwlRJ +06/25/2018,Musicians,@ArianaGrande,ok i love u i gtg find troye +06/25/2018,Musicians,@ArianaGrande,@seattlekarev @teasybutera @nucleargrande @focusondiley @selfloveari which is also what i want on my tombstone btw +06/25/2018,Musicians,@ArianaGrande,@seattlekarev @teasybutera @nucleargrande @focusondiley @selfloveari a bitch ate +06/25/2018,Musicians,@ArianaGrande,@badlyariana i love u sm more always +06/25/2018,Musicians,@ArianaGrande,@teasybutera @nucleargrande @focusondiley @selfloveari sexual female empowerment & how women are literally everythi… https://t.co/xjsS4VrJov +06/25/2018,Musicians,@ArianaGrande,@whenyouready it’s the best +06/25/2018,Musicians,@ArianaGrande,@nucleargrande @focusondiley @selfloveari it’s so fun to like............ go places ! some days will always be bett… https://t.co/Anr67Cq88r +06/25/2018,Musicians,@ArianaGrande,@remsbutera bc at first i was nervous about like....... it coming true. if that makes sense. more honest than i was… https://t.co/QuDRjLXZYP +06/25/2018,Musicians,@ArianaGrande,@purposerealest @selfloveari duh +06/25/2018,Musicians,@ArianaGrande,@focusondiley @selfloveari me too ! it’s lit ! no anxiety ! who is she +06/25/2018,Musicians,@ArianaGrande,"@notearstocryy @selfloveari your humor, understanding, honesty & kindness ! and your ability to make me feel human… https://t.co/zaBD8IRzxp" +06/25/2018,Musicians,@ArianaGrande,@tearsleftocry @notearsalright oh fuck she’s in my favorites too +06/25/2018,Musicians,@ArianaGrande,@selfloveari yo same +06/25/2018,Musicians,@ArianaGrande,@Iouisrem @agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande fuck and borderline. i really c… https://t.co/Uz4Q39GBQH +06/25/2018,Musicians,@ArianaGrande,@notearsalright nope +06/25/2018,Musicians,@ArianaGrande,i know we’re not really doing snippets but i do wanna give u sum special for my birthday if that’s ok .... might po… https://t.co/pCoCDQXE8e +06/25/2018,Musicians,@ArianaGrande,@Iouisrem @agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande i don’t really have a top 5 i k… https://t.co/kwF0QtNLaY +06/25/2018,Musicians,@ArianaGrande,"@agbgetwellsoon @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande rosh says: +Not in order... can't do that.… https://t.co/kcBIxBAOS0" +06/25/2018,Musicians,@ArianaGrande,@leavemeloona @alemoonlightbae @arisweetwaffle @bealrightdeluxe @joangrande everyone’s sleeping ! i’ll ask him too +06/25/2018,Musicians,@ArianaGrande,"@blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande hi it’s doug!!! +- Better Off +- Get Better S… https://t.co/jVYlRNMYq6" +06/25/2018,Musicians,@ArianaGrande,@blowherminds @selfloveari @arisweetwaffle @bealrightdeluxe @joangrande handing phone over +06/25/2018,Musicians,@ArianaGrande,@alemoonlightbae @arisweetwaffle @bealrightdeluxe @joangrande i’ll ask him in a lil omg +06/25/2018,Musicians,@ArianaGrande,@selfloveari @arisweetwaffle @bealrightdeluxe @joangrande omG i’ll ask when she’s awake +06/25/2018,Musicians,@ArianaGrande,@Buterasbieberrx @arisweetwaffle @bealrightdeluxe @joangrande omg i’ll ask tonight +06/25/2018,Musicians,@ArianaGrande,"@arisweetwaffle @bealrightdeluxe @joangrande it’s frankie !!!! goodnight n go, no tears left to cry, light is comin… https://t.co/z5UM5d0h85" +06/25/2018,Musicians,@ArianaGrande,@arisweetwaffle @bealrightdeluxe @joangrande ok lemme ask +06/25/2018,Musicians,@ArianaGrande,@bealrightdeluxe @joangrande https://t.co/qbQqTqoB16 +06/25/2018,Musicians,@ArianaGrande,"@bealrightdeluxe @joangrande 1. No Tears, 2. God is a Woman, 3. Breathing, 4. Light is Coming, 5. Raindrops - from Joan" +06/25/2018,Musicians,@ArianaGrande,@onelovesbutera @joangrande omg my 3rd bday was Jaws themed & everyone left but i was lit +06/25/2018,Musicians,@ArianaGrande,@bealrightdeluxe @joangrande lemme text her & ask +06/25/2018,Musicians,@ArianaGrande,@joangrande oh my GOD i fucking remember that balloon mom i mentioned it yesterday that shit was so cool omg thank u +06/25/2018,Musicians,@ArianaGrande,@aintnotearleft @fIatlineari omg maybe ! that’d be fun +06/25/2018,Musicians,@ArianaGrande,@leighsometimes @fIatlineari a n x i e t y 🌫 +06/25/2018,Musicians,@ArianaGrande,@sweetaner @fIatlineari oh wow +06/25/2018,Musicians,@ArianaGrande,@fIatlineari bc it’s about people & their loud ass opinions making them deaf to others & the light +06/25/2018,Musicians,@ArianaGrande,@sweeteneramb @knewitgrande @tbyarianagb @touchyit ty ! excited for u to see the rest +06/25/2018,Musicians,@ArianaGrande,@knewitgrande @tbyarianagb @touchyit love u more +06/25/2018,Musicians,@ArianaGrande,@tbyarianagb @touchyit yo same +06/25/2018,Musicians,@ArianaGrande,@touchyit L ! so snuggly n dope +06/25/2018,Musicians,@ArianaGrande,https://t.co/M7ZWJNgZDS +06/25/2018,Musicians,@ArianaGrande,luv u +06/25/2018,Musicians,@ArianaGrande,@nyczach omg +06/25/2018,Musicians,@ArianaGrande,@wegotnotears 🌫👶🏼🙈 +06/25/2018,Musicians,@ArianaGrande,@joangrande what was da surprise i forgot bc it was 22 years ago +06/25/2018,Musicians,@ArianaGrande,https://t.co/DZHoPEHiCA +06/24/2018,Musicians,@ArianaGrande,@beereilish same tbh +06/24/2018,Musicians,@ArianaGrande,yuh https://t.co/oDZbkuGSNU +06/24/2018,Musicians,@ArianaGrande,(indeed the beat did get sicker) +06/24/2018,Musicians,@ArianaGrande,jus sneezed on beat god bless me +06/24/2018,Musicians,@ArianaGrande,be happy 🌫 +06/24/2018,Musicians,@ArianaGrande,grateful n so excited. still listening to sweetener. i’ve...... never been this excited ab anything ever. love u th… https://t.co/U3GARGGioz +06/24/2018,Musicians,@ArianaGrande,ɹǝuǝʇǝǝʍs 💭 preorder https://t.co/kgaHLWjUeK https://t.co/PhD87rBp3Y +06/24/2018,Musicians,@ArianaGrande,see u soon my sweet https://t.co/wKhBfnYGQi +06/24/2018,Musicians,@ArianaGrande,"RT @RepublicRecords: .@ArianaGrande ☾ 𝐒 𝐰 𝐞 𝐞 𝐭 𝐞 𝐧 𝐞 𝐫 ☾ Merch avail now ✨ + +Grab yours here: +https://t.co/LasjaSG58M https://t.co/zhoplLCB…" +06/24/2018,Musicians,@ArianaGrande,"universe must have my back, fell from the sky into my lap" +06/23/2018,Musicians,@ArianaGrande,ʞɹoʎ ʍǝu ǝʌol ᴉ +06/23/2018,Musicians,@ArianaGrande,☕️ ♡ +06/23/2018,Musicians,@ArianaGrande,yuh +06/23/2018,Musicians,@ArianaGrande,n girl you too you are so young n beautiful n so succcesssful +06/23/2018,Musicians,@ArianaGrande,listen bae +06/23/2018,Musicians,@ArianaGrande,love u have a good day +07/17/2017,Musicians,@edsheeran,"This year continues to be equally surreal and amazing. Watch out for this one, me and Lisa have… https://t.co/fNL3aOdkQ4" +07/17/2017,Musicians,@edsheeran,Just posted a photo https://t.co/2iJDDGH7bc +07/17/2017,Musicians,@edsheeran,"First time @itsbennyblanco has seen an episode, here's his review https://t.co/yKwpjetrL4" +07/17/2017,Musicians,@edsheeran,Throwback to the time I was a Lannister https://t.co/QEt6TiexbA +07/16/2017,Musicians,@edsheeran,"Sunday = cat picture. Also, watch Game of Thrones tonight x https://t.co/YG31hfqieH" +07/16/2017,Musicians,@edsheeran,Mohegan sun night #2 ! https://t.co/QC5xOkno1Z +07/15/2017,Musicians,@edsheeran,Filming something cool with @jamielawsonuk and jamesblunt today https://t.co/6W31sFaXRj +07/15/2017,Musicians,@edsheeran,Mohegan Sun ! https://t.co/vMpCqZucct +07/14/2017,Musicians,@edsheeran,Ur a long way from howum now seabiscuit buh https://t.co/CTZp9Mmo5T +07/13/2017,Musicians,@edsheeran,Philly night #2 ! https://t.co/pMqO9pBqYs +07/12/2017,Musicians,@edsheeran,Philly night #1 ! https://t.co/0lZxTEjOkb +07/10/2017,Musicians,@edsheeran,"More stadium dates going up tomorrow in Europe too, as pretty much all of that has gone too.… https://t.co/itFgkPXjrq" +07/10/2017,Musicians,@edsheeran,"More uk stadiums announced, this is bonkers x https://t.co/YzscG67TeJ" +07/10/2017,Musicians,@edsheeran,Buffalo ! https://t.co/S4OWtVsRDW +07/09/2017,Musicians,@edsheeran,Toronto night #2 ! https://t.co/eWbN8CyHUf +07/08/2017,Musicians,@edsheeran,"UK stadium tour sold out this morning so we are adding more dates due to overwhelming demand,… https://t.co/FIyjKl0XRv" +07/08/2017,Musicians,@edsheeran,Toronto night #1 ! https://t.co/LVNbmTdzjm +07/05/2017,Musicians,@edsheeran,"Q magazine is out now. Also loads of Hoo-har about me quitting stuff. I haven't quit anything,… https://t.co/pZqrifrFiW" +07/04/2017,Musicians,@edsheeran,Reppin' on July 4th https://t.co/MLLty4u2Xa +07/02/2017,Musicians,@edsheeran,Sunday Funday #giveitsomewelly https://t.co/TbboZhfAK2 +07/02/2017,Musicians,@edsheeran,St. Paul ! https://t.co/gz0Ifg2Eq7 +07/01/2017,Musicians,@edsheeran,Puerto Rico tour diary x https://t.co/sbXDUtLfVt +07/01/2017,Musicians,@edsheeran,Des Moines ! https://t.co/tUIYcebmIa +06/30/2017,Musicians,@edsheeran,"Check out @FuseODG's brand new banger #WindowSeat & campaign to build a school in Ghana https://t.co/4ryXJHU4GN +#NewAfricaNation" +06/30/2017,Musicians,@edsheeran,Kansas City ! https://t.co/cyClTGylLn +06/30/2017,Musicians,@edsheeran,"Got the fantastic jamesblunt opening up the whole USA tour, his set is brilliant, you're in for… https://t.co/UiRqBs34V9" +06/29/2017,Musicians,@edsheeran,"Starting the first leg of the North American tour today in Kansas, very excited. Also, check out… https://t.co/ScbOOJ7ycj" +06/28/2017,Musicians,@edsheeran,"That's not the end of the stadium tour, watch this space x" +06/28/2017,Musicians,@edsheeran,"Here are the dates for the European stadium tour, tickets on sale Saturday 8th of July -… https://t.co/CIxA7LKXCF" +06/28/2017,Musicians,@edsheeran,"Thank you to @tdtomdavies for making me loads of great specs, lad x https://t.co/JRwbR8bewU" +06/27/2017,Musicians,@edsheeran,🚀 https://t.co/6joHdTll4g +06/27/2017,Musicians,@edsheeran,Announcing UK and Europe stadium tour tomorrow. This was the only picture I could find at short… https://t.co/kBEqb141u6 +06/26/2017,Musicians,@edsheeran,"Anyway, great night, great atmosphere, family, friends, fun. Love you all x" +06/26/2017,Musicians,@edsheeran,"Never thought I'd have to explain it, but everything I do in my live show is live, it's a loop station, not a backing track. Please google x" +06/26/2017,Musicians,@edsheeran,Glastonbury ! https://t.co/iMf1Uo2pPS +06/25/2017,Musicians,@edsheeran,"Closing the Pyramid stage tonight at Glastonbury, tune in on BBC from 21:30pm x https://t.co/c0D7vI7mXJ" +06/24/2017,Musicians,@edsheeran,Bogota tour diary x https://t.co/O1OWsWHdAB +06/22/2017,Musicians,@edsheeran,Glasto warm up show at the O2 ! https://t.co/OHizXjK4RC +06/22/2017,Musicians,@edsheeran,"New merch on https://t.co/W2vnTwszLX, made by @hoax1994 - cruisin' https://t.co/p6GWKlgGS1" +06/21/2017,Musicians,@edsheeran,London Koko ! https://t.co/RI6YR3OgpI +06/17/2017,Musicians,@edsheeran,"Chuffed to be awarded an MBE for services to charity and music, thanks for all your lovely… https://t.co/XLVyGWRqtn" +06/15/2017,Musicians,@edsheeran,Rusty + Calippo https://t.co/UWmsILSQXx +06/15/2017,Musicians,@edsheeran,Monterrey ! https://t.co/iyEv0cqiC4 +06/15/2017,Musicians,@edsheeran,@FuseODG @killbeatz We dey vibe ! +06/15/2017,Musicians,@edsheeran,Sonny & ted https://t.co/ImOfqMVrwF +06/14/2017,Musicians,@edsheeran,Thanks to the lovely people at Jim Dunlop for sorting out my tour capo's and plectrums x https://t.co/Suy7yWNQSW +06/14/2017,Musicians,@edsheeran,Or any of these locations. Please give anything x https://t.co/p3miLUkZ5a +06/14/2017,Musicians,@edsheeran,"anyone with spare clothes/toys/supplies or anything they can part with, please donate to 210 Latimer Rd in West London as soon as you can x" +06/14/2017,Musicians,@edsheeran,Here's a picture of me with a taco and another margarita #mexico #believe #achieve #wot https://t.co/NGf6XSxECS +06/13/2017,Musicians,@edsheeran,Throwback to coconuts on the roadside in Ghana with @fuseodg and @killbeatz https://t.co/dAU65KlCvG +06/13/2017,Musicians,@edsheeran,Homeslice https://t.co/Kt1ZLSn4Pi +06/13/2017,Musicians,@edsheeran,Guadalajara ! https://t.co/szmLm5o0Yi +06/13/2017,Musicians,@edsheeran,Having a drink with this fine gent in Mexico https://t.co/N0yl217TQH +06/13/2017,Musicians,@edsheeran,"Ted, Tedd and Teddy https://t.co/3uDxNHwnFb" +06/11/2017,Musicians,@edsheeran,Mexico City ! https://t.co/g8xFiB0OW8 +06/07/2017,Musicians,@edsheeran,Carpool karaoke is finally here ! Check it out - https://t.co/yYNwLG5z6L +06/07/2017,Musicians,@edsheeran,San José ! https://t.co/6GVO7pgl26 +06/07/2017,Musicians,@edsheeran,Brazil diary x https://t.co/aYG4Lq9djo +06/05/2017,Musicians,@edsheeran,San Juan ! https://t.co/BoV9wTVT08 +06/04/2017,Musicians,@edsheeran,thinking of Manchester today x https://t.co/sobyTO5EH3 +06/03/2017,Musicians,@edsheeran,Bogota ! https://t.co/KNDyRlUw0K +06/02/2017,Musicians,@edsheeran,Argentina tour diary x https://t.co/5LAee1hCRs +06/01/2017,Musicians,@edsheeran,@JKCorden Woof +05/31/2017,Musicians,@edsheeran,@AnneMarieIAm Deep +05/31/2017,Musicians,@edsheeran,Belo Horizonte ! https://t.co/PMfKU7LyOm +05/29/2017,Musicians,@edsheeran,Sao Paolo ! https://t.co/DAC8r1eBLx +05/28/2017,Musicians,@edsheeran,"mini bar raid, pringles and m&m's for dinner don't stop me" +05/26/2017,Musicians,@edsheeran,Santiago diary x https://t.co/6O2Am0W4JQ +05/26/2017,Musicians,@edsheeran,No. No no no no no. https://t.co/fUguQ19cQE +05/26/2017,Musicians,@edsheeran,"New single by @ritaora, me and Steve Mac on writing duties, I love it, check it out people x https://t.co/0IJO3rgVWw" +05/26/2017,Musicians,@edsheeran,Rio ! https://t.co/20pkn8T7HH +05/24/2017,Musicians,@edsheeran,Curitiba ! https://t.co/XnQUiXG5yq +05/23/2017,Musicians,@edsheeran,So heartbreaking. Love and prayers for Manchester. https://t.co/hxTQQAnMfS +05/21/2017,Musicians,@edsheeran,Buenos Aires ! https://t.co/71Sajvi8Ij +05/20/2017,Musicians,@edsheeran,Lima tour diary x https://t.co/vb0r5WTh03 +05/19/2017,Musicians,@edsheeran,"For anyone that missed it, you can get my desert island discs on their podcast now for free x https://t.co/h0lfWyDEj9" +05/19/2017,Musicians,@edsheeran,Woof https://t.co/ToGAlma93A +05/19/2017,Musicians,@edsheeran,"This song came out today that I helped write, check it out x https://t.co/029eTuuOk3" +05/18/2017,Musicians,@edsheeran,Today is a sad day. Rest in peace. +05/18/2017,Musicians,@edsheeran,RT @sortrehearsals: We’ve scrapped our marketing budget to support unsigned bands instead. Here’s why: https://t.co/h7VqHlAZ5J Please RT!… +05/17/2017,Musicians,@edsheeran,Santiago night #2 ! https://t.co/O67w8Lai8j +05/16/2017,Musicians,@edsheeran,Santiago night #1 ! https://t.co/yMBvEZjhmK +05/15/2017,Musicians,@edsheeran,Kev doing a good deed for @greatormondst https://t.co/2vtoAgTBui +05/15/2017,Musicians,@edsheeran,"Pre-sale for my Australian & New Zealand tour starts Tuesday, all the details here x https://t.co/PXZJE1Lvm2 https://t.co/GXzrPuPk1b" +05/14/2017,Musicians,@edsheeran,"RT @JmeBBK: Remember, don't just vote for someone on recommendation. Do your own research. +BUT MAKE SURE YOU REGISTER: +https://t.co/OOXc9Ui…" +05/14/2017,Musicians,@edsheeran,"RT @JmeBBK: RT: Listed by process +Numbered by importance. + +2. Register to vote + +4. Know who you are voting for + +1. Know why you are voting…" +05/14/2017,Musicians,@edsheeran,Lima ! https://t.co/toOOeNllcw +05/13/2017,Musicians,@edsheeran,Machu Picchu https://t.co/scP52ZHWvk +05/13/2017,Musicians,@edsheeran,"'I wasn't made for rain, where's the sun!?' https://t.co/22sDqdnv7f" +05/05/2017,Musicians,@edsheeran,"off into the wilderness for a week, in a bit x" +05/04/2017,Musicians,@edsheeran,"Here's the Galway Girl video, shot by me, thanks to everyone who featured in it! x https://t.co/Z2xjzTSWvU" +05/03/2017,Musicians,@edsheeran,London night #3 ! https://t.co/BNgEpBHTzQ +05/03/2017,Musicians,@edsheeran,"Video for Galway Girl dropping tomorrow, look out for it x https://t.co/ui6q6HwhLL" +05/02/2017,Musicians,@edsheeran,Double pudding +05/02/2017,Musicians,@edsheeran,London night # 2 ! https://t.co/nCO8f5hMUm +05/02/2017,Musicians,@edsheeran,London night #1 ! https://t.co/Xu1h0nKIE3 +05/02/2017,Musicians,@edsheeran,Portrait of me by the wonderful Colin Davidson is on exhibition from tomorrow onwards at the… https://t.co/lxpTMqYHCm +05/01/2017,Musicians,@edsheeran,pudding +05/01/2017,Musicians,@edsheeran,@RyanTedder grabbin' yo nutz +04/29/2017,Musicians,@edsheeran,"@ashtonmiranda @Pret And I just had a dirty burger, the shame of it" +04/29/2017,Musicians,@edsheeran,Birmingham night #2 ! https://t.co/QHzYNOT13A +04/28/2017,Musicians,@edsheeran,@SianAnderson i got some competition it seems ! +04/28/2017,Musicians,@edsheeran,Birmingham night #1 ! https://t.co/KFNZ9659Jh +04/27/2017,Musicians,@edsheeran,@robdelaney watching catastrophe for the first time. ur funny +04/26/2017,Musicians,@edsheeran,Travelling to stage in style on @StuartCamp https://t.co/NHkWxDTFHX +04/26/2017,Musicians,@edsheeran,Nottingham night #2 ! https://t.co/nLC3QV1VBT +04/26/2017,Musicians,@edsheeran,Nottingham night #1 ! https://t.co/XWRJj0jPbs +04/26/2017,Musicians,@edsheeran,Manchester night #2 ! https://t.co/1WXsputL5K +04/24/2017,Musicians,@edsheeran,pre order yo x https://t.co/sh6xZHmdeQ +04/24/2017,Musicians,@edsheeran,Das Bollocks https://t.co/psh7jEeS90 +04/22/2017,Musicians,@edsheeran,Manchester night #1 ! https://t.co/BsQ9K5v4Cz +04/20/2017,Musicians,@edsheeran,Newcastle night #2 ! https://t.co/7UVEqUSNlG +04/20/2017,Musicians,@edsheeran,"Support act for my Central & South American dates will be @antoniolulic, get down early to check him out. Dates at https://t.co/Shphh4csSf" +04/20/2017,Musicians,@edsheeran,"@GreggsOfficial thanks for your gift. I ate 7 sausages rolls in a row and had to go to bed, I love you" +04/19/2017,Musicians,@edsheeran,Calippo is my mood https://t.co/bJyVvTaflK +04/19/2017,Musicians,@edsheeran,Newcastle night #1 ! https://t.co/1RdtkaKuuz +04/19/2017,Musicians,@edsheeran,Random clips from the first month of tour in Europe x https://t.co/NOyIly6mJ5 +04/19/2017,Musicians,@edsheeran,Playing Galway Girl with Beoga on Jools Holland - https://t.co/ZsWsvAW3Se +04/18/2017,Musicians,@edsheeran,big love to @beogamusic for always being amazing x +04/18/2017,Musicians,@edsheeran,"this was one of my favourite things i've done. May 7th, tune in x https://t.co/6ueYlvgmp1" +04/18/2017,Musicians,@edsheeran,"playing on Later... with Jools Holland tonight, 3 songs, BBC2 10PM live, tune in !x" +04/17/2017,Musicians,@edsheeran,"@zaralarsson fries on a pizza too, lets not forget that" +04/16/2017,Musicians,@edsheeran,Glasgow night #1 ! https://t.co/DBLYifpBKJ +04/14/2017,Musicians,@edsheeran,@BBCR1 genuinely am +04/14/2017,Musicians,@edsheeran,@AnneMarieIAm pure bantz +04/14/2017,Musicians,@edsheeran,whoop ! https://t.co/fbhtCa7q7X +04/13/2017,Musicians,@edsheeran,getting to play Nancy Mulligan and Galway Girl today and yesterday with @beogamusic in Dublin was something else +04/13/2017,Musicians,@edsheeran,Dublin night #2 ! https://t.co/asfJkVTlIR +04/12/2017,Musicians,@edsheeran,Dublin night #1 ! https://t.co/tbvbUUvbc8 +04/12/2017,Musicians,@edsheeran,Thank you to Galway and all the wonderful people in it for helping us shoot a music video… https://t.co/OfJUeQLohX +04/09/2017,Musicians,@edsheeran,playing Barcelona tonight in Barcelona was a moment. love you guys x +04/09/2017,Musicians,@edsheeran,@JazminSawyers this is awesome +04/09/2017,Musicians,@edsheeran,Barcelona ! https://t.co/cmlAET1SUb +04/09/2017,Musicians,@edsheeran,Madrid ! https://t.co/SKkGffXWHf +04/09/2017,Musicians,@edsheeran,@WimbledonHC congrats !x +04/09/2017,Musicians,@edsheeran,@WimbledonHC @cristacullen5 @stxhockey whoop !! +04/06/2017,Musicians,@edsheeran,Paris ! https://t.co/dkVdk3t4TR +04/05/2017,Musicians,@edsheeran,Loving discovering this tv show. Worth a watch X https://t.co/bgn5cJf1d4 +04/05/2017,Musicians,@edsheeran,Antwerp ! https://t.co/UAdUysSYZS +04/04/2017,Musicians,@edsheeran,This guy @ryanmcmusic is opening up my Europe tour alongside Anne Marie. Caught him practicing… https://t.co/OaQBGg8m8C +04/04/2017,Musicians,@edsheeran,Amsterdam night #2 ! https://t.co/GlFI7JvZ6h +04/03/2017,Musicians,@edsheeran,Amsterdam night #1 ! https://t.co/FVcxEhNd9p +04/01/2017,Musicians,@edsheeran,Herning ! https://t.co/DiQzQUXoSH +03/31/2017,Musicians,@edsheeran,thank you ! amazing x https://t.co/OfCKIvDPHE +03/30/2017,Musicians,@edsheeran,Stockholm ! https://t.co/0Nc9KkrlFR +03/30/2017,Musicians,@edsheeran,Just posted a photo https://t.co/yFmyHhvnhe +03/29/2017,Musicians,@edsheeran,Teenage cancer trust ! https://t.co/rv6PYgtSZS +03/27/2017,Musicians,@edsheeran,Berlin ! https://t.co/TJyNrfdocW +03/26/2017,Musicians,@edsheeran,Hamburg ! https://t.co/16pEGtOhJY +03/25/2017,Musicians,@edsheeran,@KuruptFM pleasure working with you boiz +03/24/2017,Musicians,@edsheeran,"Pussles reppin Red Nose Day, thanks for all who donated to such a great cause x https://t.co/aw3wgMOOtR" +03/24/2017,Musicians,@edsheeran,"Comic relief Red Nose Day today. Tune in tonight, il be on a fair bit, and so will lots of awesome people. BBC One, 7pm x" +03/24/2017,Musicians,@edsheeran,"Happy friday everyone. James Blunts new album is out today, I co wrote this one with him and… https://t.co/Gsz0a9dqXM" +03/23/2017,Musicians,@edsheeran,Cologne ! https://t.co/arA68apGXX +03/23/2017,Musicians,@edsheeran,CLASH magazine https://t.co/46feWE5tum +03/22/2017,Musicians,@edsheeran,Mannheim ! https://t.co/nJ3kVA0C5x +03/22/2017,Musicians,@edsheeran,Rupert you lad x - https://t.co/nNJdJYI84O +03/22/2017,Musicians,@edsheeran,#WorldWaterDay is TODAY - so lets help kids get #CleanWaterHere by lending your social voice here: https://t.co/i7klqoXkhF +03/20/2017,Musicians,@edsheeran,Munich ! https://t.co/lVHFUKaBPC +03/20/2017,Musicians,@edsheeran,Happy to announce my opening act on my North American tour is @jamesblunt x +03/19/2017,Musicians,@edsheeran,Zurich ! https://t.co/QOdI3Lfj3R +03/17/2017,Musicians,@edsheeran,Turin night #2 (sorry I missed night one !) https://t.co/aGJIrlqvtc +03/17/2017,Musicians,@edsheeran,"For anyone interested, here is the band that play on Galway Girl @beogamusic, and this is the song we sampled x - https://t.co/o5AJNb3X4K" +03/17/2017,Musicians,@edsheeran,"Got a lyric video for my next single Galway Girl, check it out x https://t.co/E8rrgOFeUB" +03/17/2017,Musicians,@edsheeran,Blimey https://t.co/98Hq4WuUGR +03/17/2017,Musicians,@edsheeran,Zara Larsson album out today. We wrote this song together and I love it. Check it out X https://t.co/R9fWKs04vc +03/16/2017,Musicians,@edsheeran,"Great way to start a tour, thank you Turin. Forgot to take a photo of the crowd though, sorry, tomorrow I shall remember. Love y'all x" +03/16/2017,Musicians,@edsheeran,Can't wait @glastofest x https://t.co/BGoKXVqUZp +03/16/2017,Musicians,@edsheeran,Tickets for my US tour on sale Friday at 10am local time. Links & details at https://t.co/DsQUFNY5Lt x https://t.co/ctOLhau3fM +03/15/2017,Musicians,@edsheeran,"@gregjames no worries, i tried to trend it with @JamesBlunt a week ago to no avail, you are my hero" +03/13/2017,Musicians,@edsheeran,This is insane. Thanks to everyone who has a copy xx https://t.co/emXSfqRKtA +03/13/2017,Musicians,@edsheeran,"RT @CHABUDDYGEEZY: ""I'm in love with Chabuddy"" - @edsheeran https://t.co/3IeYoPD7zx" +03/13/2017,Musicians,@edsheeran,Playing an extra show at @theO2 on 22nd June for their 10th Birthday shows. Tickets on sale at 5pm x https://t.co/bKrfdPyNPy +03/12/2017,Musicians,@edsheeran,guess the cats out the bag... https://t.co/9GCDUp9HPN +03/12/2017,Musicians,@edsheeran,"Blimey Milan, thanks for the warm welcome ! https://t.co/dW9cKdiXaA" +03/12/2017,Musicians,@edsheeran,"been working with @KuruptFM for @comicrelief, check it out - https://t.co/U0syjMyCwo" +03/11/2017,Musicians,@edsheeran,Munich to Milan +03/11/2017,Musicians,@edsheeran,Kev took a picture of me sleeping and I sleep with one eye open https://t.co/DN9WGNtsEP +03/11/2017,Musicians,@edsheeran,One more week of promo then tour starts and I can't wait +03/11/2017,Musicians,@edsheeran,@CalvinHarris ❤️ +03/10/2017,Musicians,@edsheeran,@gregjames absolutely bonks +03/10/2017,Musicians,@edsheeran,Did a secret show in NYC for @SIRIUSXM . Hear it on @SiriusXMHits1 and @SiriusXMPulse all weekend: https://t.co/tNQ8TUxSC7 +03/08/2017,Musicians,@edsheeran,"Coming to North American this summer, go here https://t.co/Hjpv5qcz1K for details on the fan pre-sale that starts t… https://t.co/DEtdGAdbv0" +03/07/2017,Musicians,@edsheeran,RT @StuartCamp: Come on down!!! https://t.co/YLgByPloSQ +03/07/2017,Musicians,@edsheeran,"Spent 2 weeks with @PatrickDoyleRS, we had ourselves a good time. Read all about it here x https://t.co/4NBMfaVNqN" +03/07/2017,Musicians,@edsheeran,"Going on Howard Stern today, tune in yo" +03/07/2017,Musicians,@edsheeran,"My first Rolling Stone cover, everywhere friday x https://t.co/H30VzjsiDN" +03/07/2017,Musicians,@edsheeran,Everything's coming up Milhouse +03/06/2017,Musicians,@edsheeran,"Happy Independence Day to Ghana! I had a wonderful time there with @FuseODG last year, such a wonderful, beautiful, vibrant place x 🇬🇭" +03/06/2017,Musicians,@edsheeran,"Thank you iheart, New York bound now X" +03/06/2017,Musicians,@edsheeran,Thank you ! https://t.co/ZNY77euZXW +03/05/2017,Musicians,@edsheeran,chicken for breakfast. wingz an dat +03/05/2017,Musicians,@edsheeran,"Just got to LA, iheart radio awards tomorrow, tune in !" +03/04/2017,Musicians,@edsheeran,Thank you to Blunty for presenting my Goldene Kamera award to me tonight in Hamburg https://t.co/dwWnQNqGxr +03/03/2017,Musicians,@edsheeran,@valstones this is beautiful and exactly the reason why I make music. Thank you x +03/03/2017,Musicians,@edsheeran,"RT @AtlanticRcrdsUK: Happy album release day to @edsheeran! It's been a long wait but '÷' is so worth it, have you listened yet? https://t.…" +03/03/2017,Musicians,@edsheeran,"Quitting music, found a new job. New album out now - https://t.co/zcIzlFOm8C https://t.co/mr0nJPb7gk" +03/03/2017,Musicians,@edsheeran,Lovely seeing all the reactions to the record. Keep sharing x +03/03/2017,Musicians,@edsheeran,@JamesBlunt lets celebrate our albums coming out this month with an album party ! #analbumparty +03/03/2017,Musicians,@edsheeran,RT @JamesBlunt: Fed up of @edsheeran in your feed? Here's a new song of mine to listen to instead. Oh... I wrote it with Ed. https://t.co/X… +06/30/2018,Musicians,@BrunoMars,Paris with the game changer @virgilabloh Before we rock Stade De France 🇫🇷 #24kmagicworldtour https://t.co/CmqeKgkjyP +06/29/2018,Musicians,@BrunoMars,I don’t know what this tweet says but this video makes me happy. I love you all!! https://t.co/dMKg4u2zQQ +06/27/2018,Musicians,@BrunoMars,Found this video in my phone. This is @BRODYTHEGR8 and I trying to figure out the groove for 24k Magic in 2015. W… https://t.co/ZTFkGONhGe +06/27/2018,Musicians,@BrunoMars,RT @Listenary: Bruno Mars. https://t.co/YDb00NIx43 +06/25/2018,Musicians,@BrunoMars,😂 https://t.co/68giC02s0j +06/25/2018,Musicians,@BrunoMars,Steady callin me out!! They act like they luuhhhh me but tweet otherwise. 😏Mmm mmm mmm #CruelWorld https://t.co/xEySzTdWbo +06/25/2018,Musicians,@BrunoMars,🎼 I don’t ever make a promise that I can’t keep 🎶 ~ Bruno Mars 😎 https://t.co/X183syoupW +06/25/2018,Musicians,@BrunoMars,@BET THANK YOU! THANK YOU! THANK YOU! I know I missed the party but I know I’ll see y’all real soon. 🥂 +06/25/2018,Musicians,@BrunoMars,Last night in Lisbon I got to sing for like 2 miliion people. Nah it was more like 1 million. I ain’t going less th… https://t.co/fLfncdvZoc +06/23/2018,Musicians,@BrunoMars,Don’t back pedal now baby we here! 😂 https://t.co/UkswejRij7 +06/23/2018,Musicians,@BrunoMars,Oh the ole what words should I say to get a reply trick huh 😒 https://t.co/UQ54aFWlcs +06/23/2018,Musicians,@BrunoMars,You always gonna twist my tweets and use it against me huh? 😒 https://t.co/DBBlzOYgso +06/23/2018,Musicians,@BrunoMars,You always got somethin to say 😏 https://t.co/f9pKLWho35 +06/23/2018,Musicians,@BrunoMars,"Yo I’m poppin in Madrid!! 😎 Thank you all for always bringin it at the concerts. Can’t wait to come back! Love, E… https://t.co/K96z9zmBI3" +06/22/2018,Musicians,@BrunoMars,😂 THE BEST! Drink lots of agua and say a prayer tonight Chicas. For El Capitan and his hermanos are showing up with… https://t.co/RzgLYiC321 +06/22/2018,Musicians,@BrunoMars,Madrid it is I. El Capitan 🔥. Feels good to be back. Tonight we dance! 🥂 #24KMagicWorldTour +06/21/2018,Musicians,@BrunoMars,Thank you Lucy. It was an honor to sing for y’all last night. ♥️ https://t.co/H787ncgl74 +06/17/2018,Musicians,@BrunoMars,The man that taught me everything I know. From… https://t.co/eeVcl12is6 +06/15/2018,Musicians,@BrunoMars,🎼 Daylight 🎵 https://t.co/wHl1OG7atJ +06/14/2018,Musicians,@BrunoMars,I love you Hawaii! ♥️ Thank You so much. The band and I are gonna have that stadium Shakin!!! https://t.co/PdvTv94sdB +06/11/2018,Musicians,@BrunoMars,One day imma figure out what to do with this… https://t.co/h5hadudLZJ +06/10/2018,Musicians,@BrunoMars,Shut up Dwayne! I shred that shit! https://t.co/NuDjmuYHhq +06/10/2018,Musicians,@BrunoMars,NAH! https://t.co/wIfIJ5ILnw +06/10/2018,Musicians,@BrunoMars,You right. https://t.co/1pT9eMyMOa +06/10/2018,Musicians,@BrunoMars,Nah! https://t.co/G2iS9MO3tS +06/10/2018,Musicians,@BrunoMars,😂😂😂😂😂 How Could I forget? https://t.co/uCKoJhVcnE +06/10/2018,Musicians,@BrunoMars,A song by Santana called Europa. The band will tell you. I play it every soundcheck. @jamareoartis always asks me… https://t.co/nZHAuR1Dbp +06/10/2018,Musicians,@BrunoMars,🙌♥️ https://t.co/Smur0SDV08 +06/10/2018,Musicians,@BrunoMars,Thank You Thank You Thank You! https://t.co/8iPr8XOTBd +06/10/2018,Musicians,@BrunoMars,Thank you 😊 see you soon. https://t.co/ck6kPCUyBd +06/09/2018,Musicians,@BrunoMars,Nah! https://t.co/7zbswauW10 +06/09/2018,Musicians,@BrunoMars,ITS COMING. I GOT YOU https://t.co/bPnE94U7db +06/09/2018,Musicians,@BrunoMars,Have no fear kissy face! Braddah gotta plan 😎 https://t.co/pBvSuKXTZv +06/09/2018,Musicians,@BrunoMars,HAWAII I HEAR YOU!! WERE DOING IT!!! TWO SHOWS AT ALOHA STADIUM!!! #CHEEEHOOOO 🤙 +06/09/2018,Musicians,@BrunoMars,🤔 https://t.co/uWLtMUfzmT +06/09/2018,Musicians,@BrunoMars,"RT @_palolooo: Yoooo @BrunoMars, you gotta add a second show in Hawaii for the homies my dude 🙏🙏🙏" +06/09/2018,Musicians,@BrunoMars,RT @CamMtess: @BrunoMars 2nd show please! Tickets sold out in 20 min. #showyourAloha 🤙🏼 +06/06/2018,Musicians,@BrunoMars,🙌 ♥️ https://t.co/WEUQqQrmOB +06/04/2018,Musicians,@BrunoMars,@DwayneDuggerII 😒 +06/04/2018,Musicians,@BrunoMars,@JoHnJohnThE1 😒 +06/02/2018,Musicians,@BrunoMars,Ok ok ok that’s enough. https://t.co/BpQwK1zUEF +06/02/2018,Musicians,@BrunoMars,Alright calm down 😂 https://t.co/h1vfBxV0Mu +06/02/2018,Musicians,@BrunoMars,👇It’s pretty close actually 😢 #Fuck +06/02/2018,Musicians,@BrunoMars,😒 https://t.co/bqDoQB0bGM +06/02/2018,Musicians,@BrunoMars,😒 https://t.co/D0xKVInZlg +05/31/2018,Musicians,@BrunoMars,TBT https://t.co/aC2wGFqkqs +05/30/2018,Musicians,@BrunoMars,😂 https://t.co/Hi8GlS3vDY +05/30/2018,Musicians,@BrunoMars,No scraps! All love! We’ll figure it out! Brada love da Aina and Aina love da brada! 🤙😜 https://t.co/hA0paMsffG +05/30/2018,Musicians,@BrunoMars,Live In Hawaii #24KMagicWorldTour https://t.co/TNXz9c4WVV +05/30/2018,Musicians,@BrunoMars,Super fail! I tried 😜 https://t.co/zjruCQxvWs +05/30/2018,Musicians,@BrunoMars,I’m https://t.co/MweCfxj6T4 +05/30/2018,Musicians,@BrunoMars,Home https://t.co/Yza3svl2dM +05/27/2018,Musicians,@BrunoMars,@JoHnJohnThE1 I can talk as loud as I want!! And if I choose to summer in Bruges best believe you gon hear about it! Thanks 💅 +05/26/2018,Musicians,@BrunoMars,NAH! https://t.co/EnbNTZeLz0 +05/21/2018,Musicians,@BrunoMars,Just posted a photo https://t.co/cpsd2scPhv +05/21/2018,Musicians,@BrunoMars,👑 https://t.co/aq0kKpfUkt +05/21/2018,Musicians,@BrunoMars,Ms. Jackson ❤️ https://t.co/4b5WbCFcew +05/19/2018,Musicians,@BrunoMars,But nah! https://t.co/n603cf39i5 +05/19/2018,Musicians,@BrunoMars,That was beautiful 😢 https://t.co/n603cf39i5 +05/19/2018,Musicians,@BrunoMars,han backwards is guess what? Nah! https://t.co/XN9frsqrUp +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/d0fT7TO20i +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/T5mtjr2soC +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/x45nPAYjAr +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/fURfenCcqU +05/19/2018,Musicians,@BrunoMars,Nah! https://t.co/3hyiMCyvLA +05/19/2018,Musicians,@BrunoMars,I’m in the shadows babbbbyyyy https://t.co/BtSFLWJyQ6 +05/19/2018,Musicians,@BrunoMars,"RT @E40: E-40 New album +“ THE GIFT OF GAB “ +June 29th 2018 🚀🚀🚀🚀🚀 https://t.co/gXdZA84Upg" +05/14/2018,Musicians,@BrunoMars,"*me: tells camera man to stop + +*also me: immediately posts on… https://t.co/0VhPFtSUYX" +05/14/2018,Musicians,@BrunoMars,*Serenaded 🤪 +05/14/2018,Musicians,@BrunoMars,You got it!!! If you ain’t here to party take yo ass back home!! And if you ain’t got yo phone out come get serinat… https://t.co/s6gcXXcLPF +05/13/2018,Musicians,@BrunoMars,Last show tonight in Hong Kong 🇭🇰 #24kmagicworldtour LETS GOOOOOO! https://t.co/rtdZCYsOXg +05/12/2018,Musicians,@BrunoMars,https://t.co/EtQave5NWl Morning inspiration. Tomorrow is not promised. Let’s Rebuild! I wanna see a glimpse before I exit. Don’t you? +05/07/2018,Musicians,@BrunoMars,Thank you all for another session of #AskTheDragon. Gotta get ready for tonight’s show in Singapore. Love on Love o… https://t.co/ugpEGmPdKc +05/07/2018,Musicians,@BrunoMars,Baby steps https://t.co/zXYkke1fK0 +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/oCS8HJMvge +05/07/2018,Musicians,@BrunoMars,Uuuuuhhhhh. https://t.co/Hbv6qJFWhD +05/07/2018,Musicians,@BrunoMars,Molly’s Game https://t.co/1GocAyL0bJ +05/07/2018,Musicians,@BrunoMars,He don’t return my calls no more 😒 after that basketball game shit ain’t never been the same. #RIP https://t.co/JA9NjGRP3Y +05/07/2018,Musicians,@BrunoMars,"The Beach Boys, Gucci Mane and last night the band and I were listening to nine inch nails, System of a Down and in… https://t.co/gpSl9IpUTj" +05/07/2018,Musicians,@BrunoMars,😂 https://t.co/yAob6u3oEm +05/07/2018,Musicians,@BrunoMars,Both of those are fire! Thank you https://t.co/lzIhUHAQC2 +05/07/2018,Musicians,@BrunoMars,E-panda https://t.co/sVBgQMpukf +05/07/2018,Musicians,@BrunoMars,Always! https://t.co/6JpVYqK9PJ +05/07/2018,Musicians,@BrunoMars,I haven’t written my best album yet https://t.co/duWjodkimr +05/07/2018,Musicians,@BrunoMars,Always! https://t.co/D8qfr9aNfH +05/07/2018,Musicians,@BrunoMars,What you mean?? It’s one of my favorites https://t.co/HV9rc36XHT +05/07/2018,Musicians,@BrunoMars,Two diffrent shows starring one magnificent unicorn. https://t.co/IZYGQ7Mn10 +05/07/2018,Musicians,@BrunoMars,Again It’s not true at all. I love Michael too much. If there was a song he wanted to release I’m sure it would’v… https://t.co/NFBzccWskY +05/07/2018,Musicians,@BrunoMars,Childish Gambino. From his show Atlanta to his music and new video. All around incredible. https://t.co/yooD3AHxir +05/07/2018,Musicians,@BrunoMars,No that is not true https://t.co/luCOpHqOS8 +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/L6hjWrzato +05/07/2018,Musicians,@BrunoMars,Everyone!! I wanna go on a collaboration spree. Jump from studio to studio and start writing again. https://t.co/s8ajCiw0X7 +05/07/2018,Musicians,@BrunoMars,I don’t know bout all that. but I will do my best to leave y’all wit something to rock to https://t.co/QgwYeXOjT6 +05/07/2018,Musicians,@BrunoMars,It’s been a while let’s do it!!! #AskTheDragon 🔥 🔥 +05/07/2018,Musicians,@BrunoMars,Shit https://t.co/bs5jqnOz0f +05/07/2018,Musicians,@BrunoMars,Yo Dwayne when I’m tweeting Back Back. https://t.co/wXKCoxmGod +05/07/2018,Musicians,@BrunoMars,BET! https://t.co/SE19gOUcwh +05/07/2018,Musicians,@BrunoMars,You really are. ✨ https://t.co/BGBatruVSK +05/07/2018,Musicians,@BrunoMars,Nah! https://t.co/10oWsmnI3i +05/07/2018,Musicians,@BrunoMars,Nah it’s not that serious. But the truth is why would I want to sing to a bunch of screens when I much rather be s… https://t.co/j02958iXYP +05/07/2018,Musicians,@BrunoMars,@kameronwhalum with the phone choreography! 😂 #PutYourPhoneDown!#FeelSomething! https://t.co/xHLwJKrbMf +05/06/2018,Musicians,@BrunoMars,Brace yourself Singapore. For I have returned. 😎 #24kmagicworldtour Tonight!! https://t.co/6595pYKVXI +05/06/2018,Musicians,@BrunoMars,Incredible 😂👏👏👏 https://t.co/hVMb1EoziE +05/06/2018,Musicians,@BrunoMars,Feelin myself in Manila 🇵🇭 #24kmagicworldtour https://t.co/xyIk2je0cF +05/01/2018,Musicians,@BrunoMars,Thank you Bangkok!!! #24kmagicworldtour https://t.co/h6UshK85Zw +04/30/2018,Musicians,@BrunoMars,https://t.co/pkIIb6e3Dl +04/23/2018,Musicians,@BrunoMars,I use to dream about this shit!! 😜🙌 #StillDreamin https://t.co/mYlaB0BU2z +04/21/2018,Musicians,@BrunoMars,Mood https://t.co/pvlRlJsyJM +04/19/2018,Musicians,@BrunoMars,Sending love and prayers to Bruno Sammartino’s family. He was such a gentleman when I met him & really meant a lot to my father & I. RIP👑 +04/17/2018,Musicians,@BrunoMars,💥💥💥💥💥💥music💥💥💥💥💥 +04/17/2018,Musicians,@BrunoMars,Congrats 2 @iamcardib on her #1 album 💥 Congrats 2 @kendricklamar for winning The Pulitzer💥 Congrats to @Beyonce for killin it @ Coachella 💥 +04/16/2018,Musicians,@BrunoMars,Cuz I can’t get a hold of Yoooooouuuuuu🎶 https://t.co/wI0jiLcUWq +04/13/2018,Musicians,@BrunoMars,You can’t stop what was meant to be +04/12/2018,Musicians,@BrunoMars,Thank You Tokyo!!! 🇯🇵 🎶 🍣 😴 https://t.co/BrO9sJ2AKm +04/10/2018,Musicians,@BrunoMars,日本の皆さん。 あなたがコンサートに参加しているのなら、明日は叫び、歌って、汗を流して一晩中踊ってください! パーティーしよう🇯🇵 #24KMagicWorldTour +03/29/2018,Musicians,@BrunoMars,When it comes to spittin that hot fire 🔥 I’m over koalafied! Thank you Australia for… https://t.co/rkynsNZcbR +03/26/2018,Musicians,@BrunoMars,It’s been great Sydney 🇦🇺! Thank you for 5 awesome shows #Hooligans #24kmagicworldtour https://t.co/3cshxYryns +03/25/2018,Musicians,@BrunoMars,Front row last night in Sydney. Her sign said “Brno Mars I think I want to marry you will you… https://t.co/9mDCVTDE1m +03/24/2018,Musicians,@BrunoMars,Everyone head over to snap and get your finesse on!! @iamcardib 🔥 https://t.co/BOZJIyshaV +03/24/2018,Musicians,@BrunoMars,tonight’s our last show in Sydney🇦🇺 Let’s go out in style! Thank you to everyone who showed up… https://t.co/SaSDb6RcpW +03/24/2018,Musicians,@BrunoMars,RT @AtlanticRecords: Limited Edition @BrunoMars & @iamcardib ‘Finesse’ Vinyl & $10.00 T-Shirt! Only Available until March 29th! https://t.c… +03/23/2018,Musicians,@BrunoMars,Who remembers this? https://t.co/sz0L2YcITV +03/23/2018,Musicians,@BrunoMars,I’m bumpin her song right now! That’s Just the way you make me feel 🎶 🎶 https://t.co/AHF6rRqx37 +03/22/2018,Musicians,@BrunoMars,Love this!!! Thank you ladies ❤️ https://t.co/Guf8WRTfkO +03/22/2018,Musicians,@BrunoMars,RT @BET: Look out! '@BrunoMars Presents: 24K Magic Live at the Apollo' hits BET this Saturday night at 8/7c! 🕺🏾💃🏽 https://t.co/c0H4yvq7kZ +03/22/2018,Musicians,@BrunoMars,"RT @lollapalooza: We’re bringing The Weeknd, Bruno Mars, Jack White, Arctic Monkeys + more to Grant Park for #Lolla 2018! Grab your 4-Day T…" +03/19/2018,Musicians,@BrunoMars,You know why I Love Australia? Everywhere I go they serve guava juice. What 👆this picture has to… https://t.co/oTAr9GFZWd +03/15/2018,Musicians,@BrunoMars,Thank you Brisbane 🇦🇺 #Hooligans #24kmagicworldtour https://t.co/JHELoquVu7 +03/13/2018,Musicians,@BrunoMars,Thanks for the love Melbourne 🇦🇺 #24kmagicworldtour 🥂 https://t.co/BD6WucXB7r +03/08/2018,Musicians,@BrunoMars,Melbourne 🇦🇺 #24kmagicworldtour https://t.co/jczXLZJ7ae +03/07/2018,Musicians,@BrunoMars,#24kMagicWorldTour makes its first appearance in Australia tonight 🇦🇺 ✨✨✨#Melbourne #NightOne. Its on!!! +03/05/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/htZmse9elH +03/03/2018,Musicians,@BrunoMars,RT @MissyElliott: I BELIEVE in the Power of Prayer Sending Prayers up for Rick Ross🙏🏾 +03/02/2018,Musicians,@BrunoMars,We must preserve the body roll at all cost. +02/28/2018,Musicians,@BrunoMars,RESPECT! https://t.co/NEznEVNR7V +02/27/2018,Musicians,@BrunoMars,And just like that... WE BACK! Thank you Auckland NZ 🇳🇿 Night 1✨✨ #24kmagicworldtour https://t.co/hnIvur7wiS +02/26/2018,Musicians,@BrunoMars,What an angel . Who knew this little boy would grow up and turn down an NBA contract just so he could pursue his mu… https://t.co/Owm9HigayY +02/26/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/WbBkxEgfjf +02/26/2018,Musicians,@BrunoMars,Hangin With Mr Cooper 🔥 https://t.co/DZ4SGIY5VI +02/26/2018,Musicians,@BrunoMars,This is my favorite gif 👇 https://t.co/h6ivYo6QZr +02/20/2018,Musicians,@BrunoMars,LIKED! https://t.co/JMBIZjMSib +02/20/2018,Musicians,@BrunoMars,https://t.co/SF3RUDjqv6 😂 https://t.co/xF64LX0zgU +02/20/2018,Musicians,@BrunoMars,No. You’re gonna need that. https://t.co/jWizw7CKOS +02/20/2018,Musicians,@BrunoMars,🤔 https://t.co/kgC7fMUO20 +02/20/2018,Musicians,@BrunoMars,Nah! https://t.co/PhtUR7j4My +02/20/2018,Musicians,@BrunoMars,One could argue they never left 😎 https://t.co/X8xbfMJctD +02/20/2018,Musicians,@BrunoMars,🔥🔥🔥 https://t.co/AtANFE3N5s +02/20/2018,Musicians,@BrunoMars,RT @ChantalSumiye: @BrunoMars Only good vibes 😎 +02/20/2018,Musicians,@BrunoMars,Oooohhhh word?!?!? 🍾🍾🍾🍾 I’m playing her whole album in her honor! Happy birthday @rihanna https://t.co/Vu6uRU8iLZ +02/20/2018,Musicians,@BrunoMars,What we talkin bout today twitter? We being positive and uplifting or we being weird? Let me know. 😎 +02/20/2018,Musicians,@BrunoMars,Uncle Quincy 🙌 https://t.co/1qwrdV7oPU +02/16/2018,Musicians,@BrunoMars,Tomorrow is the big day! I hope I see you all at the show and we can celebrate one last time! #24KMagicTour… https://t.co/wSnD4lhWIt +02/15/2018,Musicians,@BrunoMars,I love you Hooligans. Thank you so much. https://t.co/u1Hbbcz1og +02/14/2018,Musicians,@BrunoMars,When Beyonce is having a conversation with Jesus and you over here reflecting about all the… https://t.co/GGpFYVHPzV +02/13/2018,Musicians,@BrunoMars,Ayyyeee! Thanks @kobebryant! #LA https://t.co/cn0qmVFU38 +02/12/2018,Musicians,@BrunoMars,🚨🚨🚨 https://t.co/BqyF9O4tLv +02/08/2018,Musicians,@BrunoMars,Give Me timeeeeee 🎶 https://t.co/G9bytjMpEH +02/08/2018,Musicians,@BrunoMars,#AtlantaHipHopRoyaltyHalftime @NFL I can see it! 😎 https://t.co/p2cD3efTks +02/06/2018,Musicians,@BrunoMars,"GRACIAS MONTERREY, MEXICO CITY AND GUADALAJARA! 🇲🇽 WE HAD SO MUCH FUN IN YOUR COUNTRY. THANKS FOR THE LOVE. #24KMagicTour" +02/05/2018,Musicians,@BrunoMars,See! This the type of tweets that warm my heart. God bless you. ❤️ https://t.co/nIu8Q5HtqB +02/05/2018,Musicians,@BrunoMars,I really tried but there was no availability’s at the venues 😞 forgive me. https://t.co/FIl8XU9F1u +02/05/2018,Musicians,@BrunoMars,. @NFL all jokes aside please lets make that happen +02/05/2018,Musicians,@BrunoMars,". @NFL Shit I just wanna help curate that show, and I’ll only charge like a billion😂" +02/05/2018,Musicians,@BrunoMars,". @NFL Outkast. T.I Gucci, lil jon, Jeezy, Jermaine Dupri just to name a few. it would be the best party Tv has ever seen!" +02/05/2018,Musicians,@BrunoMars,. @NFL you have the opportunity to celebrate incredible Hip Hop Artist from Atlanta Next year. +02/05/2018,Musicians,@BrunoMars,Awesome! https://t.co/HjRH3JyBfs +02/05/2018,Musicians,@BrunoMars,Yo is it true that the next Super Bowl is in Atlanta? +02/05/2018,Musicians,@BrunoMars,The band and I had a lot of fun watching the Super Bowl last night in Mexico. Congrats to philly!! +02/05/2018,Musicians,@BrunoMars,Two sold out stadium shows in Mexico City! Thank you guys for welcoming us with so much love and… https://t.co/l2COEJMNt4 +02/04/2018,Musicians,@BrunoMars,Nah! https://t.co/XW9Z4OmOJB +02/04/2018,Musicians,@BrunoMars,🎥 Rehearsal @sb_jbwkz @tjlewis_916 https://t.co/i8O3jf7XlH +02/04/2018,Musicians,@BrunoMars,👑👑👑 https://t.co/JmTCk0uy0C +02/02/2018,Musicians,@BrunoMars,"The Finale. 🍾🥂 +#24kmagicworldtour https://t.co/LqRf3Zjsof" +02/02/2018,Musicians,@BrunoMars,Announcement Tomorrow! #24kMagicFinale #Hooligans 💥💥💥💥💥💥💥💥💥💥💥💥💥💥💥 I’m doin it! +02/02/2018,Musicians,@BrunoMars,Wooh!!!! 💥💥💥💥💥 +02/02/2018,Musicians,@BrunoMars,Annndddd...what if I told u imma bring my lil sis @iamcardib on tour so we can really turn your city upside down! Make this finale a party!! +02/02/2018,Musicians,@BrunoMars,To be honest maybe 10 to 12 years.... *slowly looks out the window and exhales 😞 #DramaQueen #StillGotIt 😜 https://t.co/QYGg7KMdMS +02/02/2018,Musicians,@BrunoMars,I promise I’m going into hibernation after this. https://t.co/SacDJO1Lp2 +02/02/2018,Musicians,@BrunoMars,And Denver I didn’t forget about you. 😉 +02/02/2018,Musicians,@BrunoMars,🤔 https://t.co/upszwGqaSZ +02/02/2018,Musicians,@BrunoMars,What if I told you I wanna do one more U.S tour so we could celebrate 24k Magic together one last time..... +02/02/2018,Musicians,@BrunoMars,A celebration must commence!! +01/30/2018,Musicians,@BrunoMars,Still on cloud 100! This shit right here was so fun!!! Thank you to everyone in attendance and… https://t.co/0HXu5g6BS0 +01/29/2018,Musicians,@BrunoMars,Unreal!! I love you all!!! ✨ https://t.co/EoDRh9Q5lp +01/25/2018,Musicians,@BrunoMars,Laugh at me all u want but I’m hittin the gym as we speak!!! And by gym I mean slim Jim. I just ate 14 slim Jim’s.… https://t.co/Teipdxl18a +01/24/2018,Musicians,@BrunoMars,If you missed us playing at the the world famous @apollotheater have no fear! CBS is re airing the show THIS FRIDAY… https://t.co/m3biYNzf41 +01/16/2018,Musicians,@BrunoMars,When you got one song in the top 10 but Cardi B got three.😂 LETS GO @iamcardib !!! Thank you to… https://t.co/BiwQ7QWBbf +01/15/2018,Musicians,@BrunoMars,.. @naacpimageaward Thank you for making me feel outstanding this morning. I’m beyond grateful for these awards. https://t.co/U5GozppMsi +01/15/2018,Musicians,@BrunoMars,A true leader. Happy #MLKDay https://t.co/KJF7datN9M +01/14/2018,Musicians,@BrunoMars,#Blessings 🥂 https://t.co/v2DFsi9kg2 +01/14/2018,Musicians,@BrunoMars,Jeez. https://t.co/b0FetmQBbE +01/14/2018,Musicians,@BrunoMars,For real though...What’s wrong with the one I got? What makes a good profile pic? https://t.co/BRJTJjehWk +01/14/2018,Musicians,@BrunoMars,Happy Sunday! ✨✨ https://t.co/TpyS2wmzAx +01/12/2018,Musicians,@BrunoMars,Absolutely! https://t.co/suIO1cmU1U +01/12/2018,Musicians,@BrunoMars,Exactly! I love it you too. https://t.co/kf1gcrscZg +01/12/2018,Musicians,@BrunoMars,Then u must teach the world sweet Delaney. Show them the powers of finesse & the joy it brings. Don’t do it for me.… https://t.co/753t21MPFh +01/12/2018,Musicians,@BrunoMars,"If you don’t know, I’m afraid you’ll never know. Good luck Kyle. I Wish you all the best. https://t.co/BoBlvSt92X" +01/10/2018,Musicians,@BrunoMars,💥💥💥💥💥💥💥💥💥💥💥💥💥 https://t.co/FWLyIT4kPa +01/10/2018,Musicians,@BrunoMars,Hopefully by morning we celebrate. 😎Goodnight beautiful people. +06/30/2018,Musicians,@selenagomez,"Families seeking safety in our country need protection, understanding and opportunity, not detention. This is a mor… https://t.co/9w0w0v6Eo5" +06/29/2018,Musicians,@selenagomez,"RT @HotelT: Grab some 🍿 and get your 🎟️🎟️’s to join Selena, Andy, Joe, and Keegan in #HotelT3 on July 13th! https://t.co/dA7RDCexPr https:/…" +06/21/2018,Musicians,@selenagomez,This is so beautiful thank you Chris https://t.co/XProHkb5Kj +06/13/2018,Musicians,@selenagomez,Help my friend @kidkelly get into the @RadioHOF by voting at https://t.co/OygZajk8vp +06/06/2018,Musicians,@selenagomez,"Donate to #savecarter if you can. If you can’t, please spread the word. Every bit helps! https://t.co/G8NmOlIdFD" +06/06/2018,Musicians,@selenagomez,RT @seewhatsnext: #13ReasonsWhy has been renewed for a third season. All 13 episodes will premiere in 2019. https://t.co/UPtOWyIvJq +06/05/2018,Musicians,@selenagomez,"You can never be too passionate. The video for Back To You Video is out now! +https://t.co/NmFG8RhDJm https://t.co/kkd5OCXw5F" +06/04/2018,Musicians,@selenagomez,Me when I finally get to tell you guys the #BackToYou Video is out tomorrow. 😁 https://t.co/nsamBO5mAX +06/04/2018,Musicians,@selenagomez,😜 https://t.co/aRu5KlJSOz +06/03/2018,Musicians,@selenagomez,(COMING SOON) https://t.co/aeQrrHIKH4 +06/02/2018,Musicians,@selenagomez,https://t.co/myvzHOdwzk +06/02/2018,Musicians,@selenagomez,https://t.co/wNhISpoDio +06/01/2018,Musicians,@selenagomez,https://t.co/p3f6shFw2l +06/01/2018,Musicians,@selenagomez,https://t.co/Dz4xSYbInU +05/31/2018,Musicians,@selenagomez,https://t.co/Pl9aOBsLjE +05/31/2018,Musicians,@selenagomez,https://t.co/A3g9Iurj9e +05/19/2018,Musicians,@selenagomez,My thoughts are with the families of #SantaFe who were supposed to be looking forward to summer break with their lo… https://t.co/g9IcMdeRim +05/19/2018,Musicians,@selenagomez,I am at a complete loss for words watching yet another school shooting. This time in my home state of Texas. Congr… https://t.co/K37Ox4TTdj +05/15/2018,Musicians,@selenagomez,Preorder exclusive @13reasonswhy soundtrack bundles and a portion of the proceeds will go to @TrevorProject and… https://t.co/4abfryhyj0 +05/13/2018,Musicians,@selenagomez,Excited that #BackToYou is the next #HitBound Song of the Week and on the @SiriusXMHits1 playlist! Thank you… https://t.co/v1d4j843EC +05/11/2018,Musicians,@selenagomez,"Thank you @spotify for featuring #BackToYou from @13ReasonsWhy on New Music Friday! +https://t.co/8C2HI06fis https://t.co/VsQm1tFoNK" +05/11/2018,Musicians,@selenagomez,"RT @amazonmusic: 💞 @selenagomez 💞 +🎧#BackToYou https://t.co/zy2xifR2Se https://t.co/2cgcq2QKsm" +05/11/2018,Musicians,@selenagomez,Check out #BackToYou on @AppleMusic’s Selena Gomez Essentials Playlist! https://t.co/uwSrgwqJJY +05/11/2018,Musicians,@selenagomez,Get #BackToYou out now on @AppleMusic 💫 https://t.co/nDiLJ8PZj8 https://t.co/NsLvVot8K9 +05/10/2018,Musicians,@selenagomez,Check out an exclusive vertical video (and a first look at the official video 👀 ) for #BackToYou on @Spotify!… https://t.co/NzDYuROkNi +05/10/2018,Musicians,@selenagomez,"#BackToYou is out now! Preorder the @13ReasonsWhy Season 2 Soundtrack and get it +instantly. 🔙… https://t.co/HcyYZHBLzU" +05/10/2018,Musicians,@selenagomez,"Tune in to @beats1 at 9 am PT to hear my interview with @ZaneLowe about #BackToYou. +https://t.co/KXAm08Dg7h https://t.co/u0psoxX3XU" +05/09/2018,Musicians,@selenagomez,"RT @Beats1: #Selenators! ❣️ +New music from @selenagomez is on the way. #BackToYou is Thursday's #WorldRecord. @zanelowe has it at 9AM LA /…" +05/04/2018,Musicians,@selenagomez,I wanna hold you when I’m not supposed to… https://t.co/Q03X6VCF64 +05/03/2018,Musicians,@selenagomez,Are you guys ready for @13ReasonsWhy Season 2 on May 18? Listen to all the music from the series on my @Spotify pla… https://t.co/6GpG0DemwM +05/02/2018,Musicians,@selenagomez,Presave #BackToYou and you’ll be entered to win a @Puma Phenom Lux Prize Pack!👟 https://t.co/RTnaL0ZAoX https://t.co/dpk6bAAd0x +05/01/2018,Musicians,@selenagomez,"#BackToYou. Out May 10th, part of the @13ReasonsWhy S2 soundtrack. I’m so excited for you guys to hear it.❣️ https://t.co/BsWAQEx0RW" +05/01/2018,Musicians,@selenagomez,RT @13ReasonsWhy: The tapes were just the beginning. May 18. https://t.co/MZczjM1fP3 +04/21/2018,Musicians,@selenagomez,So inspired by your work ♥️ https://t.co/bkQdReyjbZ +03/28/2018,Musicians,@selenagomez,RT @LupusResearch: Learn more about the @PUMA and @selenagomez collaboration benefiting Lupus Research Alliance https://t.co/1oRAjlTIRk htt… +03/26/2018,Musicians,@selenagomez,RT @HotelT: New adventures? ✅ New monsters? ✅ New trailer for #HotelT3? ✅ 🧛🚢 https://t.co/aqdbPEdHUD +12/20/2017,Musicians,@selenagomez,"Go behind the scenes of Wolves, directed by the amazing Colin Tilley. 💕 https://t.co/KP8aLfkbrW" +12/19/2017,Musicians,@selenagomez,Get a look behind the scenes of the Wolves video tomorrow! https://t.co/sOdGjBu3xt +12/01/2017,Musicians,@selenagomez,Thank you @billboard https://t.co/3zkRR6C5BO +11/20/2017,Musicians,@selenagomez,RT @LupusResearch: The @EmpireStateBldg has lit NYC skyline tonight in honor of our Breaking Through Gala celebrating lupus research & the… +11/18/2017,Musicians,@selenagomez,"RT @AMAs: .@selenagomez’s WOLVES VIDEO IS UP ON YOUTUBE! First LIVE performance is tomorrow at 8/7c on ABC. 🌑🐺 #SELENAxAMAs + +https://t.co/…" +11/17/2017,Musicians,@selenagomez,Wolves video x @marshmellomusic is out now! Watch it first on @applemusic. 🐺 https://t.co/gKCG3e9ef0 https://t.co/yaBVR97DSZ +11/17/2017,Musicians,@selenagomez,WOLVES video x @marshmellomusic tomorrow. Watch it first on @applemusic. https://t.co/dJ6Z1W1raX https://t.co/soW8kpzcG0 +11/16/2017,Musicians,@selenagomez,RT @HotelT: Kick back with the Drac pack in the all-new #HotelT3 teaser trailer now and don’t miss them in theaters next summer! 🧛🚢 https:/… +11/15/2017,Musicians,@selenagomez,RT @1027KIISFM: .@SelenaGomez loves seeing #Selenators give back 😊. Tweet a pic/vid completing today's KIISGiving task of telling someone a… +11/08/2017,Musicians,@selenagomez,"LA! Check out the Wolves Wall on Sunset & Stanley, now through the @AMAs on November 19th. Tag your photos of the m… https://t.co/ik58QdidCB" +11/06/2017,Musicians,@selenagomez,Here’s a first look at the music video for Wolves! Tune-in to the @amas Nov 19th to see me perform it live for the… https://t.co/7WGNWDp1CT +10/31/2017,Musicians,@selenagomez,Thank you @billboard! https://t.co/VVhjZjJQjN +10/28/2017,Musicians,@selenagomez,Love to @BBCR1 for making #Wolves their Tune of the Weekend 🐺 listen in to hear it https://t.co/TwcYr05pJ3 +10/27/2017,Musicians,@selenagomez,Thanks to everyone for listening to Wolves and to @spotify for all the support! https://t.co/9SVBJRULSW https://t.co/R2SuSTZTOn +10/27/2017,Musicians,@selenagomez,"RT @Beats1: #BestOfTheWeek headlines: +@selenagomez x @marshmellomusic +@samsmithworld +@cleanbandit +@tydollasign x @LaurenJauregui +https://t.…" +10/26/2017,Musicians,@selenagomez,Wolves x @MarshmelloMusic is out now! 🐺 https://t.co/vyXkNxLOJC https://t.co/oZA8d8gRWI +10/26/2017,Musicians,@selenagomez,Can't wait- 🐺 https://t.co/HG24wMONMh +10/25/2017,Musicians,@selenagomez,"Check out an exclusive visual for Wolves with @marshmellomusic, out now on @Spotify’s Today’s Top Hits Playlist.… https://t.co/c5iJ0LGA17" +10/24/2017,Musicians,@selenagomez,"Check out the official lyrics for Wolves x @marshmellomusic, before it's out tomorrow: https://t.co/ccVY1ERY64 https://t.co/urXYA72RFz" +10/24/2017,Musicians,@selenagomez,"RT @zanelowe: THIS IS BIG! New @selenagomez x @marshmellomusic +#WOLVES #WorldRecord. WEDNESDAY 9AM LA/12PM NYC/5PM LDN +📲 https://t.co/CpoxV…" +10/24/2017,Musicians,@selenagomez,Presave Wolves x @marshmellomusic now and tune in tomorrow for an exclusive vertical video on @Spotify.… https://t.co/rx5TvOwcMY +10/24/2017,Musicians,@selenagomez,Wolves is out tomorrow morning. @marshmellomusic https://t.co/1Gz7ZOVLu6 +10/23/2017,Musicians,@selenagomez,Presave my new song Wolves with @marshmellomusic to be the first to hear it on @spotify Wednesday!… https://t.co/Bz1AQ0aaoa +10/23/2017,Musicians,@selenagomez,"I've been running through the jungle, I've been crying with the wolves. 10.25. https://t.co/ZN9vZTcPnZ" +10/19/2017,Musicians,@selenagomez,Coming 10.25... WOLVES x @marshmellomusic https://t.co/DdctDKXgtc +10/19/2017,Musicians,@selenagomez,"Selenators, meet the mellogang. https://t.co/46Ed4x3Xg4" +09/20/2017,Musicians,@selenagomez,Praying for everyone in Mexico City. So devastated. +09/19/2017,Musicians,@selenagomez,Enter to win the @Coach Selena Grace bag by listening on @Spotify. Top Selenators get their name on my site! 😏… https://t.co/baWT96VtVp +09/04/2017,Musicians,@selenagomez,You can now listen to ‘Fetish’ (@WeAreGalantis Remix) on @spotify’s dancePOP playlist!! https://t.co/JOahGijb1W +08/30/2017,Musicians,@selenagomez,So devastated about the crisis in my home state of Texas. Let's all help- donating here in case you can too: https://t.co/ZTrYu04jAn +08/23/2017,Musicians,@selenagomez,Fetish (@WeAreGalantis Remix) is out now! Listen here: https://t.co/Vo7E89nmbW https://t.co/1deEHoWGLU +08/22/2017,Musicians,@selenagomez,Surprise! @wearegalantis remix of ‘Fetish’ comes out at midnight ET and YOU GUYS helped inspire the art.😝 Can’t wai… https://t.co/rHH0M3O8FQ +08/16/2017,Musicians,@selenagomez,Stream ‘Fetish’ to unlock an exclusive look behind the scenes of the Fetish video before anyone else.… https://t.co/mds1EtEx7j +08/14/2017,Musicians,@selenagomez,I have to run but maybe I should do this more often! Thx for hanging & listening to my music. xo #StreamWithSelena https://t.co/jwzIlxAjIZ +08/14/2017,Musicians,@selenagomez,My little sister Gracie. She's 4 and cooler than me. https://t.co/nYVSZCIMGL +08/14/2017,Musicians,@selenagomez,Depends on my mood! #streamwithselena https://t.co/u1zhynoOVn +08/14/2017,Musicians,@selenagomez,Remind myself what I stand for https://t.co/Do8pztYOLu +08/14/2017,Musicians,@selenagomez,Chocolate https://t.co/56EyYc3jyY +08/14/2017,Musicians,@selenagomez,"My experiences, people just help pull it out of me https://t.co/Im4rqdnYv7" +08/14/2017,Musicians,@selenagomez,Who's listening to 'Love You Like A Love Song' with me? #StreamWithSelena https://t.co/jwzIlxAjIZ +08/14/2017,Musicians,@selenagomez,Eat and talk about everything and nothing https://t.co/jc6NOQhs31 +08/14/2017,Musicians,@selenagomez,Alice in Wonderland https://t.co/U1FxVg5tiv +08/14/2017,Musicians,@selenagomez,Or 16 Candles https://t.co/Nae7ifyv67 +08/14/2017,Musicians,@selenagomez,Wizard of Oz https://t.co/Nae7ifyv67 +08/14/2017,Musicians,@selenagomez,Spanish would be my top but then French https://t.co/dqliHA7kQy +08/14/2017,Musicians,@selenagomez,French https://t.co/dqliHA7kQy +08/14/2017,Musicians,@selenagomez,Treat others how you wish to be treated. #streamwithselena https://t.co/FWkGt6KE3c +08/14/2017,Musicians,@selenagomez,Anything with cream cheese frosting https://t.co/l89MroxGHj +08/14/2017,Musicians,@selenagomez,I'll always go home. It's where my heart is. https://t.co/0QiQuWI7il +08/14/2017,Musicians,@selenagomez,Now Playing: The Heart Wants What It Wants 💕https://t.co/jwzIlxAjIZ https://t.co/pPAwL8BGZR +08/14/2017,Musicians,@selenagomez,Sometimes I have to even if it's not perfected https://t.co/2a4758R9dS +08/14/2017,Musicians,@selenagomez,Camouflage https://t.co/euALfE0Fe3 +08/14/2017,Musicians,@selenagomez,A deep blue https://t.co/VW5AJTWHDN +08/14/2017,Musicians,@selenagomez,Are you serious?!!!! I was literally just listening to her yesterday. She's SUCH a legend. #streamwithselena https://t.co/PHY3afxwxP +08/14/2017,Musicians,@selenagomez,A Heart Like His https://t.co/ViwliJSXQk +08/14/2017,Musicians,@selenagomez,"Up next: My favorite song from Revival, Me & The Rhythm (Sober was a close second.) #StreamWithSelena https://t.co/R1kHNK7hPh" +08/14/2017,Musicians,@selenagomez,Quail egg https://t.co/3ywFl1RVUB +08/14/2017,Musicians,@selenagomez,"I really like ""me and the rhythm"" https://t.co/LziNrkOpaq" +08/14/2017,Musicians,@selenagomez,Now playing: Hands To Myself! #StreamWithSelena https://t.co/dtJhwZfavf +08/14/2017,Musicians,@selenagomez,It was so much fun. I was in a room full of boys. They were all on their phones. https://t.co/0MNEGlEOvP +08/14/2017,Musicians,@selenagomez,"I like feeling like i'm creating a whole new sound each time I collaborate. @KygoMusic's sound is so unique, I love… https://t.co/rm4Q4BkFco" +08/14/2017,Musicians,@selenagomez,I don't have favorites. I have recents. I just watched Lake Mungo https://t.co/eVmaZ38UyJ +08/14/2017,Musicians,@selenagomez,I always have that on every album! https://t.co/x9Kz0OK2YL +08/14/2017,Musicians,@selenagomez,Slow Down https://t.co/KqK997ycfq +08/14/2017,Musicians,@selenagomez,Eminem! #StreamWithSelena https://t.co/3r1CMal9ar +08/14/2017,Musicians,@selenagomez,I love my Brazilian fans! https://t.co/SBSIATagUd +08/14/2017,Musicians,@selenagomez,I don't know. I have always preferred piano https://t.co/bLEqcoQTaE +08/14/2017,Musicians,@selenagomez,Now let’s listen to ‘It Ain’t Me’ with @kygomusic. This was such a fun one to make! https://t.co/jwzIlxAjIZ #StreamWithSelena +08/14/2017,Musicians,@selenagomez,Most of the time I am. I'm just really good at covering it up 😀 https://t.co/M5wlRtqhT2 +08/14/2017,Musicians,@selenagomez,Lately? That I'm moving to Europe... so random. #StreamWithSelena https://t.co/ioxlycLXCC +08/14/2017,Musicians,@selenagomez,The collaboration and being a part of their family #streamwithselena https://t.co/BecVPY5ICb +08/14/2017,Musicians,@selenagomez,"With confidence, you just have to believe it until it's natural. Don't just say it. Believe it. #StreamWithSelena https://t.co/bQ1trCjSrv" +08/14/2017,Musicians,@selenagomez,The album making process because I learned so much about myself as an artist #streamwithselena https://t.co/HkmD8BGiv6 +08/14/2017,Musicians,@selenagomez,Kill Em With Kindness is up next… a song that’s close to my heart now more than ever. https://t.co/jwzIlxAjIZ… https://t.co/Ebe3tpJvOR +08/14/2017,Musicians,@selenagomez,I have to always grow #streamwithselena https://t.co/OmCzml3Bzr +08/14/2017,Musicians,@selenagomez,Yes - there's one that is really special to me. It's ballad. https://t.co/uvTd2elMBi +08/14/2017,Musicians,@selenagomez,I got the most inspiration during seasons of change https://t.co/NVL5yTGdgs +08/14/2017,Musicians,@selenagomez,Connecting with my fans! And filters. https://t.co/lXXhrngwug +08/14/2017,Musicians,@selenagomez,Now let’s throw it back to Revival with Good For You. https://t.co/jwzIlxAjIZ #StreamWithSelena https://t.co/GRbCzRCkqe +08/14/2017,Musicians,@selenagomez,#GameOfThrones I finished the third season yesterday. No spoilers! #streamwithselena https://t.co/Mgc0lImL2r +08/14/2017,Musicians,@selenagomez,"I like ""Wild Thoughts"" with Rihanna https://t.co/4a12NuEbj9" +08/14/2017,Musicians,@selenagomez,Pieces by Amanda Cook https://t.co/oTBD2L7ode +08/14/2017,Musicians,@selenagomez,"Probably the mom character! It was such a twist at the end, I love how it all came together. #streamwithselena https://t.co/5I71V2Z9Nd" +08/14/2017,Musicians,@selenagomez,Being able to learn from someone else's sound and combining it with mine https://t.co/BU6i35L3gE +08/14/2017,Musicians,@selenagomez,Next on the playlist is Bad Liar! https://t.co/jwzIlxAjIZ #StreamWithSelena https://t.co/fgIIV8a3Mw +08/14/2017,Musicians,@selenagomez,I love being able to collaborate w/different artists & producers so every song is new and different. #streamwithsel… https://t.co/vKtVfmClC6 +08/14/2017,Musicians,@selenagomez,Not telling! https://t.co/9lRlcg2sMr +08/14/2017,Musicians,@selenagomez,"Yes, I can sing @gucci1017's part" +08/14/2017,Musicians,@selenagomez,Being able to work with @gucci1017 again. #goals +08/14/2017,Musicians,@selenagomez,"Here we go! Listen along on https://t.co/jwzIlxAjIZ. First up, Fetish ft. @gucci1017. #StreamWithSelena https://t.co/J5m2IUc8CD" +08/14/2017,Musicians,@selenagomez,#StreamWithSelena starts in 30 minutes. Get ready to push play on https://t.co/jwzIlxAjIZ on @spotify and tweet me… https://t.co/QsJ0OPNWrT +08/14/2017,Musicians,@selenagomez,Join me for a listening party and Q&A tmrw at 12 pm PT. Get ready by following https://t.co/jwzIlxAjIZ on @Spotify… https://t.co/jeeUARJ43E +08/10/2017,Musicians,@selenagomez,Press and hold on the @Snapchat camera when listening to “Fetish” to @Shazam and unlock my exclusive filter! 🍑 https://t.co/K7KzDpqHd6 +08/04/2017,Musicians,@selenagomez,TONIGHT! Watch #WEday on CBS at 8/7c. @wemovement https://t.co/1OvHa8rTM6 +08/03/2017,Musicians,@selenagomez,RT @voguemagazine: Why @SelenaGomez's new collaboration with @Coach is deeply personal. https://t.co/zVMt2lsmin +08/03/2017,Musicians,@selenagomez,Ahhh!💕thank you Instyle!! Wearing @coach for the @InStyle September cover and showing a sneak peek at my new bag I… https://t.co/XS9zt9seqf +08/03/2017,Musicians,@selenagomez,RT @MissPiggy: Watch moi & BFF @selenagomez at #WEday August 4th on CBS! Incredible kids changing the world… So inspiring that next year mo… +08/01/2017,Musicians,@selenagomez,"I push you out and you come right back… Watch Fetish now: + https://t.co/L8u81hszyO" +07/31/2017,Musicians,@selenagomez,Listen to ‘Fetish'🍑 out now on @applemusic.🍎 https://t.co/3Qts3qUdP1 https://t.co/eV2MXpiDlR +07/29/2017,Musicians,@selenagomez,Get exclusive merch inspired by the ‘Fetish’ video in my official store. https://t.co/du1Qxay1ZZ https://t.co/9IHOPCWS3W +07/26/2017,Musicians,@selenagomez,FETISH VIDEO. OUT NOW. @petracollins @gucci1017 https://t.co/CDu2oRMnY6 https://t.co/znGGr5g3h1 +07/26/2017,Musicians,@selenagomez,FETISH VIDEO. TOMORROW. https://t.co/vwDKVKqc08 +07/24/2017,Musicians,@selenagomez,The official video for Fetish… coming Wednesday. @gucci1017 @petracollins https://t.co/wf5LsQLCfg +07/22/2017,Musicians,@selenagomez,Thank you so much for all the birthday wishes! Asked my family and friends to make a donation -if you want to join: https://t.co/KONFIgjfRc +07/21/2017,Musicians,@selenagomez,Fetish video directed by @PetraCollins & ft. @gucci1017 drops next week. 🍑 https://t.co/vbFd93Ksku +07/20/2017,Musicians,@selenagomez,"I'm not surprised, I sympathize. https://t.co/NDXNsroShu" +07/14/2017,Musicians,@selenagomez,Don't see a point in blaming you... 🍑 https://t.co/Hq0MHRG86F https://t.co/YYixlYXsR0 +07/14/2017,Musicians,@selenagomez,@ddlovato Yes we have 😊 -just listening to Sorry Not Sorry! You slay as always. So happy for you! +07/13/2017,Musicians,@selenagomez,RT @Shazam: It's here! We made @selenagomez's new track #Fetish our Song of the Day!! Time to get the #Shazam party started: https://t.co/I… +07/13/2017,Musicians,@selenagomez,FETISH is here 🍑🍑🍑 @gucci1017 on @applemusic: https://t.co/DDhdmX7uY1 https://t.co/QnZpXvqHIv +07/13/2017,Musicians,@selenagomez,"FETISH, ft. @Gucci1017 out now. Watch the first visual on @Spotify: https://t.co/MnmD0obn33 https://t.co/BtR9KCHE7N" +07/12/2017,Musicians,@selenagomez,"RT @Genius: LYRIC PREMIERE: @selenagomez keepin' it a buck on her new single “fetish” with @gucci1017 💯 +https://t.co/gS40lxz0yb https://t.…" +07/11/2017,Musicians,@selenagomez,Fetish. Thursday. https://t.co/ddTsZSI2jJ +07/10/2017,Musicians,@selenagomez,Presave Fetish ft. @gucci1017 to be the first to hear it July 13th. 🍑 https://t.co/s6mcMkB78E +07/10/2017,Musicians,@selenagomez,You got a fetish for my love. https://t.co/x4rDhPJ4md +07/09/2017,Musicians,@selenagomez,"Thank you @OnAirRomeo & #MostRequestedLive, here's my #BadLiar @iHeartRadio @AskAnythingChat https://t.co/7aMy9RyiSY" +07/07/2017,Musicians,@selenagomez,JULY 13 https://t.co/0fJIwwqC8U +07/06/2017,Musicians,@selenagomez,FETISH https://t.co/wjCyId6ZsK +07/04/2017,Musicians,@selenagomez,Check out my Me & My Girls @Spotify playlist celebrating some of the amazing women topping the charts:… https://t.co/r98ujxfYmK +07/02/2017,Musicians,@selenagomez,RT @MostRequestLive: in 1 week watch our EXCLUSIVE @SelenaGomez #MostRequestedLive @AskAnythingChat w/ @OnAirRomeo. Send Q’s! https://t.co/… +06/25/2017,Musicians,@selenagomez,RT @MostRequestLive: We've got @selenagomez for a #MostRequestedLive @iHeartRadio @AskAnythingChat 7/8 w/@OnAirRomeo! Send q's https://t.co… +06/19/2017,Musicians,@selenagomez,When you get asked about Canada… love you guys 🇨🇦💕#WEdayCanada https://t.co/JGOnGn7Hjp +06/16/2017,Musicians,@selenagomez,RT @arainydream: #ShazamBadLiar supporting @selenagomez no matter what 🌟💜 @selenafanclub #BadLiar https://t.co/RHyt9kHIcv +06/16/2017,Musicians,@selenagomez,RT @worthingselena: #ShazamBadLiar #BadLiar iconic! I mean YAS 😍 https://t.co/Q3uQrkrj9V +06/15/2017,Musicians,@selenagomez,.@Shazam #BadLiar on @Snapchat to unlock exclusive Bad Liar filters! https://t.co/E5DPHm0e3V +06/15/2017,Musicians,@selenagomez,Get exclusive #BadLiar merch available now. https://t.co/GUrFQDsv5B https://t.co/jlxwnVcxSd +06/15/2017,Musicians,@selenagomez,#BadLiar music video is out by the way 😏 https://t.co/soMub0utR6 https://t.co/JcVxjNKy1n +06/12/2017,Musicians,@selenagomez,#BadLiar - a film. Coming Wednesday. https://t.co/E6j4BPJLf9 +06/10/2017,Musicians,@selenagomez,RT @iHRCountdown: Our girl @selenagomez is joining @OnAirRomeo to co-host the @iHeartRadio Countdown!Listen here: https://t.co/Z4VaBWXZAW #… +05/30/2017,Musicians,@selenagomez,RT @christiaannoval: When ur waaay to sleepy but you still wanna jam to @selenagomez .... #badliar #selenagomez #thiskid #musicislife https… +05/23/2017,Musicians,@selenagomez,My thoughts and prayers go out to everyone affected in Manchester. +05/19/2017,Musicians,@selenagomez,"AH, thank you!! https://t.co/ZFOX8yM1Rg" +05/18/2017,Musicians,@selenagomez,♥️ https://t.co/9UFy1hDMwz +05/18/2017,Musicians,@selenagomez,Watch an exclusive playlist video for 'Bad Liar' on @Spotify: https://t.co/YS9XpcTjyE #BadLiarOutNow https://t.co/ZpJo7HQuss +05/18/2017,Musicians,@selenagomez,All my feelings on fire... #BadLiar is out now. https://t.co/o4KYidITCr https://t.co/c2BboJKVtP +05/17/2017,Musicians,@selenagomez,"RT @Genius: .@selenagomez flipped a 1977 talking heads classic on her new single 💯 + +verified #badliar lyrics: https://t.co/DmOqzdTgmO https…" +05/17/2017,Musicians,@selenagomez,😏 https://t.co/2aTiaCaDhl +05/17/2017,Musicians,@selenagomez,#BadLiar 5.18 https://t.co/oohH9odA2E +05/15/2017,Musicians,@selenagomez,#BadLiar 5.18 https://t.co/T0pjPeexwY +05/13/2017,Musicians,@selenagomez,Pre-save #BadLiar on @Spotify to be the first to hear it when it comes out 5.18. https://t.co/JlTnPGbM4K https://t.co/dCcezFhQm8 +05/12/2017,Musicians,@selenagomez,#BadLiar. 5.18. https://t.co/7jFDhmgUIm +05/11/2017,Musicians,@selenagomez,#SGBadLiar https://t.co/7UNcqpse9i +05/04/2017,Musicians,@selenagomez,Something new is coming. Sign-up to be the first to know… https://t.co/Hbdo2uWOsM +04/25/2017,Musicians,@selenagomez,"RT @KygoMusic: It ain't me music video is out now!🎥 @selenagomez + +https://t.co/XZ3dKnO2h7" +04/01/2017,Musicians,@selenagomez,RT @SelenaFanClub: Our #13ReasonsWhy watch party is TODAY at 4p PST. We'll be watching Episode 1. Who's joining us?!? 🎉🎉🎉 https://t.co/J0qN… +03/29/2017,Musicians,@selenagomez,"2 days til @13ReasonsWhy… Here's a 1st listen to my cover of ""Only You” from the soundtrack, inspired by Hannah and… https://t.co/3qOAJpKGa1" +03/21/2017,Musicians,@selenagomez,RT @voguemagazine: What happened when @SelenaGomez answered #73Questions. https://t.co/vgqyhzMlAh +03/16/2017,Musicians,@selenagomez,Thrilled to share my first American @voguemagazine cover with you! Read the story and see the full spread:… https://t.co/BSdoZZuz0q +03/01/2017,Musicians,@selenagomez,RT @13ReasonsWhy: You can't bury the truth. #13ReasonsWhy revealed 3/31. https://t.co/LccZYtL8KB +02/27/2017,Musicians,@selenagomez,"RT @SelenaFanClub: .@selenagomez & all her hits (including the AMAZING new song, #ItAintMe). What more could you want?! +Listen here 👉 http…" +02/18/2017,Musicians,@selenagomez,"RT @AppleMusic: You know what to do. +@noyes, @TreySongz, #MeAndThatMan + more on the #BestOfTheWeek: https://t.co/QEAncfuZ5w https://t.co/1…" +02/16/2017,Musicians,@selenagomez,"To celebrate #ItAintMe, @KygoMusic and I took over the Teen Party playlist on @Spotify. Listen to our picks here:… https://t.co/5BGwbdiSxj" +02/16/2017,Musicians,@selenagomez,It's finally here! Listen to my new song #ItAintMe with @KygoMusic on @AppleMusic! https://t.co/jBKYNmM4GY +02/16/2017,Musicians,@selenagomez,RT @SelenaFanClub: Head over to @musicallyapp and create those #ItAintMe videos! You might get some goodies from Sel :) https://t.co/ExoJXP… +02/13/2017,Musicians,@selenagomez,#ItAintMe. Thursday. @KygoMusic https://t.co/YsB9N8CkcH +08/13/2016,Musicians,@selenagomez,"I love you, Christina. https://t.co/p2vUWvjbh0" +08/09/2016,Musicians,@selenagomez,Such a memorable show in Sydney tonight.. I'll never forget this one. Thanks for singing along with me-woke up with a sore throat 😕 I LOVE U +08/03/2016,Musicians,@selenagomez,After years of work from so many incredible people -I'm getting so excited/emotional about our show 13 Reasons Why https://t.co/qhk6VWeFaV +07/26/2016,Musicians,@selenagomez,Big news! I’m playing this year’s #GCFestival 9/24. Take action to earn your tickets https://t.co/Yxz04A6IcK https://t.co/YIuiG0Uole +07/23/2016,Musicians,@selenagomez,"I asked all my friends and family to make a donation for my birthday. If you want to, would love you for to join 💜 https://t.co/4M1SoL1GWR" +07/23/2016,Musicians,@selenagomez,"Did this on my birthday... coming soon. Thank you for all the love. I love you guys, God bless https://t.co/4Pb5usx2Pk" +07/18/2016,Musicians,@selenagomez,This industry is so disappointing yet the most influential smh +07/18/2016,Musicians,@selenagomez,"Truth is last thing we need right now is hate, in any form" +07/18/2016,Musicians,@selenagomez,There are more important things to talk about... Why can't people use their voice for something that fucking matters? +06/23/2018,Musicians,@katyperry,Was so proud to give the gift of #transcendentalmeditation to my tour mates last week lead by my beautiful friend… https://t.co/4EKlQMP9Wk +06/22/2018,Musicians,@katyperry,found my first skin tag today. I think I’m an adult now. #TGIF +06/21/2018,Musicians,@katyperry,"Never forget, everyone was once a child." +06/20/2018,Musicians,@katyperry,"My Aussies 🐨 & Kiwis 🥝! For the FINALE of #WitnessTheTour (that's right, shows #98-111 🙀), I'm bringing… https://t.co/tkXX44Dypk" +06/15/2018,Musicians,@katyperry,"I 👁 you, @RoarForJess, and I ❤ you, and I’m singing this one for you tonight!" +06/09/2018,Musicians,@katyperry,Scandinavians have figured it out. +06/09/2018,Musicians,@katyperry,Oi oi @JackGarratt remember when we locked ourselves in a room for a few days in Santa Barbara and wrote a rad song… https://t.co/qosnSJtTr0 +06/09/2018,Musicians,@katyperry,WITNESS IS 1⃣❗🎂 🎈 https://t.co/fz83TjrJUr https://t.co/KnC2OnWSSU +06/06/2018,Musicians,@katyperry,IM SCREAMINGOSBEJRMF$&2@!K https://t.co/SnRrHLSSLR +06/05/2018,Musicians,@katyperry,CALIFORNIANS! What’s important to you? Is it gun violence? Immigration? Women’s rights? Prison reform? The… https://t.co/tr8Pu9GmTO +06/02/2018,Musicians,@katyperry,"We just played our 80TH show for #WITNESSTHETOUR... 🤝🌎💪🏻🌍🙌🏻🌏❤️ #andwedontstop +#welloiledmachine #cookingwithgas 👵🏼" +06/02/2018,Musicians,@katyperry,bout to do Yoga to new Kanye record +06/01/2018,Musicians,@katyperry,Happy #PRIDE month. I see you and I love you 🌈❤️🧡💛💚💙💜🌈 +06/01/2018,Musicians,@katyperry,Imma #believer ♥️ https://t.co/BV2ZK9OeAX +06/01/2018,Musicians,@katyperry,Here’s something to believe in: @cynthialovely is really coming into her own 🌸 and just put out a 📹 to one of my fa… https://t.co/xQeBcn1mpl +05/30/2018,Musicians,@katyperry,RT @AmericanIdol: Did you think we were 'going going' to miss it?! Our Idol @MaddiePoppe will perform TONIGHT on @JimmyKimmelLive! #America… +05/29/2018,Musicians,@katyperry,"RT @repjohnlewis: Thank you, @ABCNetwork. You did the right thing. There is not any room in our society for racism or bigotry." +05/22/2018,Musicians,@katyperry,"Before this weekend’s American Idol finale, I… https://t.co/OcJnBWY5j5" +05/22/2018,Musicians,@katyperry,"Season 1 is ""Going, Going, Gone""! Congratulations, brilliant @MaddiePoppe ✨👏🏻 Click here for her ear 🍬:… https://t.co/wbpr1utAHc" +05/22/2018,Musicians,@katyperry,The couple that sangs together stays together... #AmericanIdolFinale https://t.co/3GPMGfRdym +05/22/2018,Musicians,@katyperry,WHEN A QUEEN MEETS ANOTHER QUEEN @adavox @mspattipatti 👑 👑 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,😭 WHAT THE WORLD NEEDS NOW IS ❤️ and more of you @michaelwoodard @YolandaAdams #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,"Look at you, you're sparkling ✨ @hashtagcatie #KatySquared #AmericanIdolFinale https://t.co/Cdek7uUi2J" +05/22/2018,Musicians,@katyperry,KATY SQUARED COMING SOON ‼️#AmericanIdolFinale https://t.co/OEss6MMn7u +05/22/2018,Musicians,@katyperry,😩LAYLAAAAA❗️DYXIIIEEEEE❗️TWO precious. God bless you @leannrimes 🙏🏼 +05/22/2018,Musicians,@katyperry,I can't believe y'all did that to me on live television @americanidol @tholmesmusic I'm coming for you next season 😈 +05/22/2018,Musicians,@katyperry,My angel @beberexha and the Idol BBs 😩 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,"Just a coupla old souls, sangin' @calebleemusic @dariusrucker #AmericanIdolFinale" +05/22/2018,Musicians,@katyperry,LAST LOOKS! #AmericanIdolFinale https://t.co/GGBChLkbpr +05/22/2018,Musicians,@katyperry,Speaking of 🔥: @CadeFoehner @dennislorenzo @GaryClarkJr #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,Me watching @MaddiePoppe and @KermitTheFrog https://t.co/r8Z6znw2XC +05/22/2018,Musicians,@katyperry,I BELIEVE MOST PEOPLE ARE GOOD TOOOOO 😩 @lukebryanonline @gabbybarrett_ +05/22/2018,Musicians,@katyperry,"I just caught up to Huntin, Fishin, Lovin, and now it's Sunrise 🌅, Sunburn 🔥, Sunset 🌅 @LukeBryanOnline? #americanidolfinale" +05/22/2018,Musicians,@katyperry,OMG is that OUR @Jurnee? 😱 #AmericanIdolFinale +05/22/2018,Musicians,@katyperry,OMG UNCLE LIONEL‼️ 😩 #AllNightLong #AmericanIdolFinale https://t.co/dQr8djp2Cc +05/21/2018,Musicians,@katyperry,It’s the ✨GRAND FINALE!✨😱 and my last show with uncle @LionelRichie and my cray brother @LukeBryanOnline this seaso… https://t.co/xJVnY5lZ8S +05/21/2018,Musicians,@katyperry,Just rewatched the 3 finale contestants' 1st auditions on the @AmericanIdol app. So proud of each of them & how far… https://t.co/nXMhGQsX7G +05/21/2018,Musicians,@katyperry,addicted/obsessed https://t.co/kHW2sRjyqz +05/21/2018,Musicians,@katyperry,🌼 @maddiepoppe Authentic AF. +05/21/2018,Musicians,@katyperry,NEVER WASTE A FRINGE @GabbyBarrett_ ☝🏻💁🏼 +05/21/2018,Musicians,@katyperry,🤠 @calebleemusic Don't Close Your Eyes is your essence and why we all fell in love with you months ago. Keep that c… https://t.co/eVhppIrGPO +05/21/2018,Musicians,@katyperry,"“Fake it until you make it and then when you make it, shake and bake it” -@LukeBryanOnline 😝🤦🏼‍♂️ #AmericanIdolFinale" +05/20/2018,Musicians,@katyperry,You can travel the 🌎 but nothing comes close to the SB coast🏠About to hit stage for a long awaited homecoming benef… https://t.co/EpTqldVs0r +05/18/2018,Musicians,@katyperry,Add me to the group of most. #gunreformnow https://t.co/14VN4jSmat +05/17/2018,Musicians,@katyperry,"#tbt to Lions and Frida and tacos, oh my! 🦁🌮😱 Mexico, I had so much fun with you. Te amo! You’re up next, Europe! 🔜 https://t.co/6My2GwoV9f" +05/17/2018,Musicians,@katyperry,"I don’t even say “I can’t wait...” anymore. That statement says I don’t have the patience and actually, I know I do… https://t.co/sLc7G0BZQo" +05/17/2018,Musicians,@katyperry,"Everything is energy, words are vibrations, remember words are ARE powerful. Change I can’t to I can. I won’t to I… https://t.co/m9YtMlXYJr" +05/16/2018,Musicians,@katyperry,"3⃣ more days until Witness: Coming Home, a benefit for the community of my ❤, Santa Barbara. Bid now for 🎟 to this… https://t.co/oAJag26DAx" +05/16/2018,Musicians,@katyperry,My 👑 queens 👑 @HookedOnDolls and my 😇 Angel 😇 @OhElleYeah are coming with me to Johannesburg! See you soon ‼️… https://t.co/wEgCELnJAh +05/16/2018,Musicians,@katyperry,LAURELLLLLLLLLLLLLLLLLL +05/16/2018,Musicians,@katyperry,@HighwayKatyCorn Pinot Noir +05/16/2018,Musicians,@katyperry,@colleenseleven No how cause I haven’t been on here in a min +05/16/2018,Musicians,@katyperry,*you’re (leaves twitter) +05/16/2018,Musicians,@katyperry,"Furthermore, it should be submitted to get its own national holiday. I’m over these made up holidays to sell more j… https://t.co/8TrrJUN5bv" +05/16/2018,Musicians,@katyperry,Honestly whoever named it a “lazy Susan” wasn’t giving it enough credit. That thing can serve several people in one… https://t.co/CN67rECqg3 +05/16/2018,Musicians,@katyperry,Who ate my snacks?! #EndARelationshipIn4Words +05/16/2018,Musicians,@katyperry,"WHAT 👏🏼 A 👏🏼 LINEUP❗️ +The #AmericanIdol finale is almost here and we are going out BIG! 💥 Watch 📺, vote ✅, and list… https://t.co/aIFnuCF4Rf" +05/14/2018,Musicians,@katyperry,AUSTRALIA! 🇦🇺 The final encore shows in Adelaide & Sydney are on sale now! Get your 🎟 at https://t.co/VNXmphRhJe an… https://t.co/jhIO18EKHx +05/14/2018,Musicians,@katyperry,Are you watching this Mother’s Day themed #AmericanIdol? I hope you’re tuning in and snuggling with your mama! ❤️… https://t.co/Y8HXzbM5YO +05/13/2018,Musicians,@katyperry,Things are HEATING UP🔥 Tune in at 5pm local time and ☑VOTE☑ for who you want to be in the #AmericanIdol FINALE! 🎤🏆 https://t.co/PdwtnPJJWu +05/13/2018,Musicians,@katyperry,Issa word 🤗👑♥️ https://t.co/fUfb0lfBTT +05/11/2018,Musicians,@katyperry,Don’t forget to take everything with a himayalain grain of salt AND laugh at the devil daily ♥️ +05/10/2018,Musicians,@katyperry,"✨3 Wise WOWmen ✨ + +#TBT 📸 @ronyalwin @ St Marks Hotel New York City https://t.co/le51JFMQX9" +05/10/2018,Musicians,@katyperry,Isn’t it so wonderful that with every new day there is a new opportunity to see things differently and live more gracefully? ♥️ +05/10/2018,Musicians,@katyperry,There’s only two states of being. Love or Fear. Which one will you choose? ♥️ +05/10/2018,Musicians,@katyperry,Love you too my Earth Angel. ♥️ https://t.co/peMHCfLNhW +05/09/2018,Musicians,@katyperry,Though I walk through the valley of the shadow of death...… https://t.co/VspKHAwjEt +05/08/2018,Musicians,@katyperry,"🇦🇺! You asked for it! I'm ADDING ✌🏼MORE SHOWS! See you in Adelaide on July 28 and Sydney August 17 +🎟 go on sale at… https://t.co/qcg5R40ayw" +05/08/2018,Musicians,@katyperry,Best dressed: Greta Gerwig #METGALA18 +05/07/2018,Musicians,@katyperry,I knew I wore that Donald Duck hat for a reason! 😝 https://t.co/Gcae66wS9O +05/07/2018,Musicians,@katyperry,Are you watching?! ♥️ #americanidol https://t.co/OxHNxCJleZ +05/07/2018,Musicians,@katyperry,“...when you gotta lil hitch in your giddy up...”- @LukeBryanOnline 😝🐴 #americanidol +05/07/2018,Musicians,@katyperry,TUNE IN NOW 📺 AND VOTE! ✅ #americanidol +05/05/2018,Musicians,@katyperry,"I need a Mai Tai, so f*ckin' sci-fi +Give me the password, to the fuckin' WiFi. (OMFG THESE LYRICS/LEWKS & VIDEO🚨IM… https://t.co/a7XGddT7d7" +05/04/2018,Musicians,@katyperry,Y’ALL! I’m having TWO ✌🏼 much fun to stop now... so why don’t we keep it going!? 🚨 🔈EXCITED TO ANNOUNCE that… https://t.co/lFerHehptK +05/03/2018,Musicians,@katyperry,#TBT This weekend marked the 10th anniversary of the release of I Kissed A Girl! 💋 Thank you for believing in me th… https://t.co/ew5vUSlmvF +04/30/2018,Musicians,@katyperry,Cindy lent me her shoes 🤷🏼‍♂️ https://t.co/2qCO8kJVyW +04/30/2018,Musicians,@katyperry,"dress for the job you want, not for the job you have... ✨ https://t.co/8SJxHOWdgW" +04/30/2018,Musicians,@katyperry,Someday my prince will come✨Today I got Happy and Dopey 😑 And now I'm Sleepy. 😴 See you next week 😘 #AmericanIdol https://t.co/9yp0MZeemR +04/30/2018,Musicians,@katyperry,VOTE ✅ VOTE ✅ VOTE ✅ https://t.co/MZVX4xCyJe @AmericanIdol @RyanSeacrest https://t.co/eejrP8Bmdm +04/29/2018,Musicians,@katyperry,"Not only is it #AmericanIdol, it's @DISNEY-THEMED so prepare for wigs to fly whilst ""letting it go"" ❄ and finding y… https://t.co/C7xDMo1oR0" +04/29/2018,Musicians,@katyperry,Honored to be in the presence of His Holiness @Pontifex's compassionate heart and inclusivity. Thank you to… https://t.co/qJXQFSZqaj +04/28/2018,Musicians,@katyperry,I’m inspired ✨ & encouraged 🤗today & grateful to share how meaningful transcendental meditation has been for me. I… https://t.co/nntQRFHRxO +04/27/2018,Musicians,@katyperry,Are you a BELIEVER❓Listen to @cynthialovely’s new song now https://t.co/q0lCHmz2yg and let me know if you’re a… https://t.co/8ICACAaFjl +04/26/2018,Musicians,@katyperry,🙌🏼🙌🏼🙌🏼 https://t.co/GGFyZwXXX9 +04/26/2018,Musicians,@katyperry,You wanna open a big door? Try the kindness key 🗝♥️ +04/24/2018,Musicians,@katyperry,"My ❤ has been on a roller coaster tonight 😭 Congratulations to the Top 🔟 America, if you truly are a fan of one of… https://t.co/wjfode9w5x" +04/24/2018,Musicians,@katyperry,"""It's time to change their minds."" THAT'S THE ATTITUDE, @dennislorenzo 🙌🏼 #americanidol" +04/24/2018,Musicians,@katyperry,One singer through 🎤 and two in the danger zone already. 😬 R! U! WATCHING ?? 👀hsiriehfjebdhdha #americanidol +04/23/2018,Musicians,@katyperry,You got the POWER✨Now you can VOTE! 🤝🇺🇸 #AmericanIdol https://t.co/HnRAo9oHBc +04/23/2018,Musicians,@katyperry,What do you mean you don't have the app yet ⁉️THE POWER IS IN YOUR HANDS (literally when you pick up the phone). VO… https://t.co/4nV0mZqVEg +04/23/2018,Musicians,@katyperry,"🚨TUNE IN TONIGHT AT 8/7c FOR YOUR FIRST CHANCE TO VOTE FOR YOUR #AMERICANIDOL⭐🚨 Download the app 📱, vote on… https://t.co/9CocdLMD9i" +04/22/2018,Musicians,@katyperry,"If the word ear is in Earth, maybe we should listen to it. Peace be with you on this beautiful #earthday 👂🏻🌎♥️" +04/21/2018,Musicians,@katyperry,"🌎 Day isn't until Sunday, but I'm proud to announce that @kpcollections will be donating 10% of your purchases from… https://t.co/ihjv75Qtiv" +04/19/2018,Musicians,@katyperry,SANTA BARBARIANS! 🌅 Join my friends at @AHASBCal in an amazing living art piece this SATURDAY! You have until noon… https://t.co/jCkkqQB0BV +04/19/2018,Musicians,@katyperry,I've officially e-scribed 🤝 https://t.co/CYRr0wr7ed +04/18/2018,Musicians,@katyperry,KatyCats! Remember that time I sent y’all on a 🕺disco ball🕺 scavenger hunt? 👀 Apparently it was cool enough to get… https://t.co/vo9G6TGFfs +04/18/2018,Musicians,@katyperry,@joshgroban go to bed dad you’re drunk +04/18/2018,Musicians,@katyperry,"high of the day: 0 cavities 🙏🏻 +low: @washingtonpost won’t deliver physical newspapers to my zip code. Alas, I guess… https://t.co/tBDKO4naeW" +04/18/2018,Musicians,@katyperry,talking and communicating are two different things - Rebecca Lynn @VCRebecca 🤝 +04/16/2018,Musicians,@katyperry,I have good news and bad news today - ☹️: I won’t be able to live stream #AmericanIdol today but 🙂: I CAN promise y… https://t.co/VSMnfhh1EG +04/15/2018,Musicians,@katyperry,"Ooh, almost time for another #americanidol! 👏🏼 Going live with my mama again in under an hour. Get ready for round… https://t.co/h5n4dRO3Nw" +04/15/2018,Musicians,@katyperry,And that’s a wrap on the Asian leg of Witness The Tour! Fell in love with many different cherry… https://t.co/3d7vpN0k75 +04/12/2018,Musicians,@katyperry,😍👃🏼 https://t.co/HnVSLRIwQD +04/12/2018,Musicians,@katyperry,"I had a wonderful chat with 👑 @dualipa for @vmagazine, coming soon to a newsstand near you. Nice catching up with h… https://t.co/D6F7CrazHN" +04/10/2018,Musicians,@katyperry,"even when you don’t believe in love, love believes in you. ❤️" +04/10/2018,Musicians,@katyperry,To @laylaspring @LegitDominique @BrandonDMusic @kaykaydna @TrevorMcBane just because your #americanidol journey has… https://t.co/dMZOgov6qL +04/10/2018,Musicians,@katyperry,Unfortunately we had to make a drastic cut of 5 😭 If the show is still stuck in your DVR you better press play! And… https://t.co/yNBh6z2spC +04/10/2018,Musicians,@katyperry,🤗@hashtagcatie gives good hugs! @DennisLorenzo sounds like a flock of beautiful doves! @jonnybrenns did ballet!💃🏻… https://t.co/eNcG8BTWPN +04/10/2018,Musicians,@katyperry,Caught up on #AmericanIdol on the ✈! Here are my highlights: +04/10/2018,Musicians,@katyperry,MFW when they tell us we have to send home 5 of the 12 contestants tonight 😩...BUT it’s time for ⭐ALL STAR DUETS⭐!… https://t.co/1AqyNy62PV +04/09/2018,Musicians,@katyperry,I can't wait for you to 👁witness👁 my baby bird @cynthialovely when she opens for me in Mexico!🎵❤Tickets at… https://t.co/nNOXNDlnDK +04/09/2018,Musicians,@katyperry,Who's ready for #americanidol ⁉️🙋🏼Live on Instagram from Singapore in 5 minutes! ⌚️ This Top 24 is so fresh n so cl… https://t.co/sFSu8jHvfK +04/07/2018,Musicians,@katyperry,"Zomg this is me everyday after I read the whole internet. Lucky, there’s so much to learn in nature... 🌳 https://t.co/s0xEcWFiqn" +04/07/2018,Musicians,@katyperry,V Cute! https://t.co/Dqgw5v9a13 +04/06/2018,Musicians,@katyperry,Oh this is just puurrfect #KatyKatGloss was named Best Lip Lustre in @InStyle's Best Beauty Buys of 2018! Thank you… https://t.co/g66qfU58bb +04/05/2018,Musicians,@katyperry,"On this day 50 years ago, they tried to silence his voice, but the #DreamStillLives ✌🏻 https://t.co/XMocaecbyI" +04/04/2018,Musicians,@katyperry,"was feeling homesick today, being on this leg of tour for over 4 weeks now and then I put on @KaceyMusgraves’s new… https://t.co/pb3WJ2hqIw" +04/03/2018,Musicians,@katyperry,❤️❤️❤️ @maddiezahm ❤️❤️❤️ #americanidol +04/03/2018,Musicians,@katyperry,You’re not going to miss this dance @effiepassero. #americanidol +04/03/2018,Musicians,@katyperry,"\m/ @CadeFoehner \m/ Keep that feather, keep catching those dreams. #americanidol" +04/03/2018,Musicians,@katyperry,HONEY! 🍯 #americanidol +04/03/2018,Musicians,@katyperry,👂🏻@calebleemusic WE ARE LISTENING 👂🏻AND WE LIKE WHAT WE HEAR! #americanidol +04/03/2018,Musicians,@katyperry,"✨@MaraJustine1 There’s not just glitter on your nails 💅🏼 It’s in every pore, and it comes out every time you sing ✨ #americanidol" +04/03/2018,Musicians,@katyperry,".@JonnyBrenns If your family being here meant that much to ME, I can only imagine how it felt to you. Nearly cried… https://t.co/Jr1dJ22GCV" +04/03/2018,Musicians,@katyperry,You DO belong here! And anywhere you want! @AdaVox #thatruntho #americanidol https://t.co/GX8B2CspFg +04/03/2018,Musicians,@katyperry,"Out of the ashes, rises the phoenix @AdaVox #americanidol" +04/03/2018,Musicians,@katyperry,"Your attitude will take you everywhere, @vmcqueenmusic 💔 I can’t wait to see what you do. #americanidol" +04/03/2018,Musicians,@katyperry,"My wig is waiting to be blown off even harder and farther next year, @noahdavis50 🌬💁🏼 #americanidol" +04/03/2018,Musicians,@katyperry,WHAT IS WITH THESE COMMERCIAL BREAKS @ABCNetwork ⁉️YOU KEEP ME HANGING LIKE ALL MY EXES #americanidol +04/03/2018,Musicians,@katyperry,@jurnee ➕ Ashley 4EVA 😭 #americanidol +04/03/2018,Musicians,@katyperry,Good luck @WillCasanovaDC. You’ll always have a leg up on the competition 👠 #americanidol +04/03/2018,Musicians,@katyperry,Are you over me @lukebryanonline? This gif looks like you are #americanidol https://t.co/FCvkLI99Pg +04/03/2018,Musicians,@katyperry,THAT IS NOT RIGHT @ABCNetwork I CAN’T BELIEVE YOU CUT TO COMMERCIAL AND KEPT PEOPLE HANGING #americanidol +04/03/2018,Musicians,@katyperry,"It’s true, I can get a little bit feisty when I’m fighting for something I believe in. Sorry not sorry @lukebryanonline #americanidol" +04/03/2018,Musicians,@katyperry,"I swear to tell the truth, the whole truth, and nothing but the truth 👏🏼 so 👏🏼 help 👏🏼 me 👏🏼 God 👏🏼 #americanidol" +04/03/2018,Musicians,@katyperry,Your dad is my hero @hashtagcatie #americanidol +04/03/2018,Musicians,@katyperry,Tears are salt. Salt is healing. Crying is good for your health. @hashtagcatie #americanidol https://t.co/mJAiGR46dK +04/03/2018,Musicians,@katyperry,DON’T TOUCH MY SAUCE! 🍝 @alyssaraghu #americanidol +04/03/2018,Musicians,@katyperry,101% IS RIGHT☝🏼@michellesussett #americanidol +04/03/2018,Musicians,@katyperry,"You are enough, and I still believe in you, put one foot in front of the other ❤ #ThaddeusJohnson #americanidol" +04/03/2018,Musicians,@katyperry,PS your dad is a beautiful man and your family deserves all the happiness in the world @gabbybarrett_ #americanidol +04/03/2018,Musicians,@katyperry,I AM READY TO BE CONVINCED! ❤ @gabbybarrett_ #americanidol +04/03/2018,Musicians,@katyperry,😭 Rest In Peace and see you in my dreams @tholmesmusic #americanidol +04/03/2018,Musicians,@katyperry,Hi Sierra 👋🏼😘 @tholmesmusic #americanidol +04/03/2018,Musicians,@katyperry,💪🏼 @LukeBryanOnline @MichaelJWoodard https://t.co/ZtxXHyx4x1 +04/03/2018,Musicians,@katyperry,.@MichaelJWoodard @LukeBryanOnline #americanidol https://t.co/XIbgd9Y7us +04/03/2018,Musicians,@katyperry,"Whenever I feel any anxiety, I just breathe through my nose and out through my mouth 💆🏼‍♀🤗" +04/03/2018,Musicians,@katyperry,🐣 Spring has SPRUNG! @LaylaSpring 🐣 #americanidol +04/03/2018,Musicians,@katyperry,Can we re-name this American IdolS? Because this is getting tough to boil it down to one person 😐 #americanidol +04/02/2018,Musicians,@katyperry,WEST COAST! I'm live-Tweeting #americanidol with you tonight before I catch a plane to Taipei. It's the FINAL JUDGMENT! +04/01/2018,Musicians,@katyperry,Catch all the feels 😍😭😳with me LIVE tonight on Instagram at 8p PT when @AmericanIdol is back for Hollywood Week sol… https://t.co/LxcLBCnnwu +04/01/2018,Musicians,@katyperry,my brokenness + God’s Divinity = my wholeness 🕊 @ Hong Kong https://t.co/8wWKmOr0N0 +03/31/2018,Musicians,@katyperry,Every day is a new opportunity to show up 🕊 +03/30/2018,Musicians,@katyperry,There's something in the 🌊: new arrivals at https://t.co/F1qKGOllSl (and buy one get one 50% off with code BUNNYHOP… https://t.co/wigQosvsTU +03/29/2018,Musicians,@katyperry,Sometimes your wig flies when you least expect it on @AmericanIdol. Today's #WigWednesday goes to @MichaelJWoodard.… https://t.co/71xaMpJsrq +03/28/2018,Musicians,@katyperry,Looking forward to performing “Act My Age” 👶🏼👧🏼👩🏼👵🏼 @ntv_sukkiri for 🌸Japan🌸! It’s going to be my first time perfor… https://t.co/rNA5IgBuCt +03/27/2018,Musicians,@katyperry,"I know it's uncouth to dip out in the middle of the show, but I must prep for my Tokyo show now. Good luck to every… https://t.co/nq4twXPdwG" +03/27/2018,Musicians,@katyperry,"TBH I still sleep everywhere - planes, trains, automobiles, corners of rooms, it doesn’t stop once you pop 💁🏼 #americanidol" +03/27/2018,Musicians,@katyperry,❗️FIND YOUR TRIBE❗️#americanidol +03/27/2018,Musicians,@katyperry,You've already won @_davidfrancisco ❤️ #americanidol +03/27/2018,Musicians,@katyperry,"When the whole world falls in love with you, this love triangle is going to turn into a rhombicosidodecahedron. Get… https://t.co/CdVlViEHZY" +03/27/2018,Musicians,@katyperry,Omg @DennisLorenzo who knew you were a gymnast #americanidol +03/27/2018,Musicians,@katyperry,Shoutout to #jurnee's wife. Thank you for your service 🙏🏼 🇺🇸 #americanidol +03/27/2018,Musicians,@katyperry,We all believe in you and it's written in the stars so trust the universe @jonnybrenns #americanidol +03/27/2018,Musicians,@katyperry,Shout out @samsmithworld. Love you buddy 🎶 #americanidol +03/27/2018,Musicians,@katyperry,"From now on, I'm not gonna say ""break a leg"" for every performance that you do @CadeFoehner, but I am kinda glad th… https://t.co/XvDwJGt667" +03/27/2018,Musicians,@katyperry,You are a dream 💘 @MaddiePoppe #americanidol +03/27/2018,Musicians,@katyperry,"I 👁 you, and I ❤️ you @zachdonofrio. Every time I wear my socks, I'll think of you #americanidol" +03/27/2018,Musicians,@katyperry,Find someone who looks at you like @hashtagcatie looks @zachdonofrio 😍 #americanidol +03/27/2018,Musicians,@katyperry,"Every time @LionelRichie cries, a dove dies 😔 #americanidol" +03/27/2018,Musicians,@katyperry,SHAKE AND BAKE AND IIIIII HELPED #MiloSposato #americanidol +03/27/2018,Musicians,@katyperry,.@noahdavis50 #americanidol https://t.co/oE5wIvaW6A +03/27/2018,Musicians,@katyperry,Take us to church 🙏🏼 @TrevorMcBane #americanidol +03/27/2018,Musicians,@katyperry,You're MY hero @AlyssaRaghu 😭 #americanidol +03/27/2018,Musicians,@katyperry,You can be like a 🌴 and you can bend and sway and you will not break @laylaspring #americanidol +03/27/2018,Musicians,@katyperry,"HOLY CRAP I'M NERVOUS. We are separating the singers from the superstars now, aren't we @LukeBryanOnline… https://t.co/gtcdanTLfT" +03/27/2018,Musicians,@katyperry,You did not just kiss your bicep @tholmesmusic 🤦🏼‍♀️ #americanidol +03/27/2018,Musicians,@katyperry,"Luck is when opportunity meets preparation, truer words were never spoken @RyanSeacrest #americanidol" +03/27/2018,Musicians,@katyperry,Welcome back! #americanidol +03/27/2018,Musicians,@katyperry,"Is it a 🦅? Is it a ✈️? No, it’s @LukeBryanOnline, @lionelrichie, @ryanseacrest and my enormous heads in an attempt… https://t.co/zeRfsMn1G5" +03/26/2018,Musicians,@katyperry,👏🏼 YOU 👏🏼 DID 👏🏼 NOT 👏🏼 COME 👏🏼 HERE 👏🏼 TO 👏🏼 PLAY 👏🏼YOU 👏🏼 CAME 👏🏼 HERE 👏🏼 TO 👏🏼 SLAY 👏🏼 @adavox #americanidol +03/26/2018,Musicians,@katyperry,Social media is a blessing and a curse. Don't let bullies behind a keyboard tell you what you're worth. Thank you f… https://t.co/vqVstlbU2w +03/26/2018,Musicians,@katyperry,"We work hard AND we play hard, right @LukeBryanOnline @LionelRichie @RyanSeacrest? (Well, not you, @RyanSeacrest. Y… https://t.co/WNrH28IJb4" +03/26/2018,Musicians,@katyperry,"It looks like you have arrived on the right path now, and we are with you on this journey @jurnee #americanidol" +03/26/2018,Musicians,@katyperry,.@lukebryanonline is the 👑 of bad dad jokes 🙌🏼 #americanidol +03/26/2018,Musicians,@katyperry,"Glad you could watch the big win 🏈 🙌🏼Now FOCUS on helping us find a big star ⭐️ on #americanidol, @LukeBryanOnline" +03/26/2018,Musicians,@katyperry,People listen with their eyes more than they listen with their ears. Truer words were never spoken. @DamianoScarfi #americanidol +03/26/2018,Musicians,@katyperry,I still think you got that sparkle 😉 ✨ #Orion #americanidol +03/26/2018,Musicians,@katyperry,Welcome to the city #SamuelSwanson. Serving up a slice of velvet pie! #americanidol +03/26/2018,Musicians,@katyperry,"Be encouraged, Lovely Rose 🌹 This is only the beginning of a beautiful journey for you #AyanaRoseLawson #americanidol" +03/26/2018,Musicians,@katyperry,"There is a ☀️ in you, and it’s lovely to see it rise. Let’s all dream the dream together with you and momma @carlymoffa #americanidol" +03/26/2018,Musicians,@katyperry,A beautiful mess @carlymoffa #americanidol +03/26/2018,Musicians,@katyperry,"Your father has fought this far for you and now we will join him on the front lines. Love you #BrielleRathbun, you… https://t.co/8teI9T0ibn" +03/26/2018,Musicians,@katyperry,"THAT’S the signature thrust, @lukebryan?? 🤔 #americanidol" +03/26/2018,Musicians,@katyperry,"Beauty can be a combination of glowing soul and skin deep and if you’ve got both, then ✨ #americanidol" +03/26/2018,Musicians,@katyperry,I’m absolutely IN LOVE with everything that is @michaeljwoodard ❤ #americanidol +03/26/2018,Musicians,@katyperry,From one weirdo to another I 👁 U #Jarom #americanidol +03/26/2018,Musicians,@katyperry,"Well, ya “zoomed” through to Hollywood @leeleevasi but be sure to keep your hands on the wheel so you don’t crash and burn ❤ #americanidol" +03/26/2018,Musicians,@katyperry,The difference between nerves and excitement is preparedness. #americanidol +06/30/2018,Musicians,@carrieunderwood,"@ChristinaLPro Happy birthday!!! I’m sorry you’re stuck in bed, but I do hope that the time you’re spending there i… https://t.co/QL2QppJve7" +06/30/2018,Musicians,@carrieunderwood,This was about 30 seconds before I went on stage tonight...❤️❤️❤️ @HardRockHCAC https://t.co/J0naKvpvJd +06/30/2018,Musicians,@carrieunderwood,"Had soooo much fun tonight playing the @HardRockHCAC !!! Atlantic City, you were so good to us!! ❤️🔥❤️ https://t.co/TtcaS7n7DW" +06/28/2018,Musicians,@carrieunderwood,"#Repost ・・・ +CELEBRATE 20 YEARS WITH @carrieunderwood! + +#deniutemuster #allroadsleadtodeni20 #carrieunderwood https://t.co/OSXJ1P7fxe" +06/27/2018,Musicians,@carrieunderwood,Tomorrow is your last chance to vote #CryPretty as your #ChoiceCountrySong. RT’s count! Vote @CarrieUnderwood… https://t.co/uyvXLnnTQN +06/27/2018,Musicians,@carrieunderwood,ICYMI: Carrie and @Ludacris performed #TheChampion for the first time together on the @RadioDisney music awards.… https://t.co/iZXgoxFhsx +06/26/2018,Musicians,@carrieunderwood,@VGcom @reba @DollyParton Ooh! Ooh! I know! Pick me!!! 😃 +06/26/2018,Musicians,@carrieunderwood,@DollyParton @EnterMissThang Congratulations!!! You continue to be a trailblazer and inspiration to us all! ❤️❤️❤️ +06/26/2018,Musicians,@carrieunderwood,"Dear London, I ❤️ you infinitely, but why does your 🌞 come up at 4:45AM? #CantAGirlGetSomeSleep #JetLag… https://t.co/jbrAS3EwXZ" +06/25/2018,Musicians,@carrieunderwood,"RT @TheLongRoadFest: Please give a warm, country welcome to our incredible headliner @carrieunderwood! One of country music’s biggest globa…" +06/24/2018,Musicians,@carrieunderwood,"Such an amazing, full circle night at the #RDMA !!! Got to perform with the incredible @Ludacris at the venue I won… https://t.co/xdQzpF7UJ4" +06/23/2018,Musicians,@carrieunderwood,Tune in tonight! Carrie is honored with the Hero award + performs #TheChampion with @Ludacris for the first time on… https://t.co/NBSjxXDg1g +06/22/2018,Musicians,@carrieunderwood,#CryPretty has been nominated for #ChoiceCountrySong! RT to vote for @CarrieUnderwood #TeenChoice… https://t.co/RD1OtqqWmG +06/21/2018,Musicians,@carrieunderwood,Behind the scenes of #CryPretty! 😭 #MusicVideo https://t.co/sjB61oIXnx +06/19/2018,Musicians,@carrieunderwood,@crowdermusic 😂 +06/19/2018,Musicians,@carrieunderwood,"Ummm...this is amazing! @prattprattpratt + +Chris Pratt is Our Generation Award Recipient | 2018 MTV Movie & TV Awar… https://t.co/VLJXoxsXS2" +06/19/2018,Musicians,@carrieunderwood,Reminder to vote for @CarrieUnderwood as your #ChoiceCountryArtist! Voting ends tomorrow at 9am PT… https://t.co/bUBVUnxIoH +06/18/2018,Musicians,@carrieunderwood,Happy Father’s Day to this handsome fella! “You… https://t.co/iXbf9fvX3V +06/15/2018,Musicians,@carrieunderwood,See Carrie in Vegas at the @iHeartRadio Music Festival on September 22nd! Get tickets + details now:… https://t.co/PkayJejwW8 +06/15/2018,Musicians,@carrieunderwood,#FBF to the set of the #CryPretty music video!! 🕶 https://t.co/ryVbINeB0m https://t.co/2IlGDz0Sb9 +06/15/2018,Musicians,@carrieunderwood,Tickets to see Carrie perform on July 4th at the @Spotify Hot Country Live concert at @Pier17ny in New York are now… https://t.co/JoJfdM84GV +06/14/2018,Musicians,@carrieunderwood,@ZMyersOfficial Congrats to you and your sweet family!!! ❤️❤️❤️ +06/14/2018,Musicians,@carrieunderwood,.@CarrieUnderwood is nominated for #ChoiceCountryArtist. RT to vote now! – TeamCU https://t.co/NDo1wDRYNC +06/14/2018,Musicians,@carrieunderwood,"RT @BBCRadio2: ✨ A seven-time Grammy Award winner. ✨ 64 million records sold around the world. ✨ +We are delighted to announce that @carrieu…" +06/13/2018,Musicians,@carrieunderwood,Visit https://t.co/tWEtpnBn4t to pre-order exclusive album packages! -TeamCU https://t.co/uct8C6Gofs +06/13/2018,Musicians,@carrieunderwood,Connect with Carrie on Spotify for a chance to fly away to New York and see her at the @Spotify Hot Country Live co… https://t.co/KhTc9Wu8Ku +06/12/2018,Musicians,@carrieunderwood,Just announced! Carrie will perform at @Spotify’s first ever Hot Country Live show on July 4th in New York! Tickets… https://t.co/CIw7zcZDmW +06/11/2018,Musicians,@carrieunderwood,❤️ these leggings!! @CALIAbyCarrie https://t.co/YbsOfRy04m +06/10/2018,Musicians,@carrieunderwood,#ICYMI – Watch Carrie’s #CMTAwards performance of #CryPretty now! -TeamCU https://t.co/ksRSoMbCNH +06/09/2018,Musicians,@carrieunderwood,RT @UMGNashville: Get an exclusive @carrieunderwood poster when you pre-order her new album at the UMGN Booth at Fan Fair X this weekend! 💖… +06/09/2018,Musicians,@carrieunderwood,Nighttime at #CMAFest 😭#timelapse #downtown #CryPretty https://t.co/gD1L0v1Uuo +06/09/2018,Musicians,@carrieunderwood,Sounds just like the original...🤪 #CryPretty https://t.co/7I0McAhutB +06/09/2018,Musicians,@carrieunderwood,#CMAfest 🔥 📸: @JeffJohnsonFilm https://t.co/rHWoLDjH7d +06/09/2018,Musicians,@carrieunderwood,"Holy hotness, Nashville! That stadium was on 🔥 🔥🔥 tonight! Dunno how I’m gonna sleep tonight after that show! #CMAfest" +06/09/2018,Musicians,@carrieunderwood,@CarriePerryFan @UMGNashville @cameronpremo @Tennessean @SPrivara 💧💧💧❤️❤️❤️😘😘😘 +06/09/2018,Musicians,@carrieunderwood,@Amanda022186 @CountryMusic I’ll keep a glitter eye out for ya’! +06/09/2018,Musicians,@carrieunderwood,@JesseHdz88 Love it!!! +06/08/2018,Musicians,@carrieunderwood,#FBF – Thanks to all the #CareBears for an amazing Fan Club Party this week! ❤️all the #CryPretty tears & Carrie-Ok… https://t.co/EQSUd0MQdk +06/08/2018,Musicians,@carrieunderwood,Stop by the @UMGNashville booth (#200) at Fan Fair X by 5pm to get your own Cry Pretty tears (available all weekend… https://t.co/hitgATorrv +06/08/2018,Musicians,@carrieunderwood,Sound check for tonight’s set at the stadium! Sooo pumped to see this place rockin’ later! #CMAfest @CountryMusic 📸… https://t.co/wXcz06xUSU +06/08/2018,Musicians,@carrieunderwood,RT @radiodisney: BREAKING NEWS! @carrieunderwood will be honored with the Hero Award at the #RDMA! And she'll be performing #TheChampion wi… +06/07/2018,Musicians,@carrieunderwood,@OfficialBoBice @ny4carrie Awww...thanks so much Bo!!! Sending you and your family lots of love ❤️❤️❤️ +06/07/2018,Musicians,@carrieunderwood,"About last night...the #CMTAwards were so much fun! Thanks, again, @ludacris for lending some of your magic to this… https://t.co/h1tjGl1Zrp" +06/07/2018,Musicians,@carrieunderwood,"Yay!!!!! I won a #CMTAward!!! Thank you, fans, for voting your fingers off! 😘 And congrats to all the other winners… https://t.co/GCXDhLBGTp" +06/07/2018,Musicians,@carrieunderwood,Congratulations to Carrie! Winner of the 2018 @CMT award for Female Video of The Year! #CMTAwards #TheChampion -Tea… https://t.co/11eZ0s6FJw +06/07/2018,Musicians,@carrieunderwood,Disco queen!!! #CMTAwards… https://t.co/X5uU0nDLcl +06/06/2018,Musicians,@carrieunderwood,Tonight! Carrie is nominated and performs on the #CMTawards! Tune in at 8/7c! -TeamCU https://t.co/y3olLXPkZD +06/06/2018,Musicians,@carrieunderwood,So glad you love it!!!  We will send you more!  😘 https://t.co/o12rRuSRUM +06/06/2018,Musicians,@carrieunderwood,@KelseaBallerini 😳 +06/06/2018,Musicians,@carrieunderwood,Thanks to everyone who came out to the @opry tonight!!! You all (and this dress) made me feel like an Opry princess… https://t.co/QCCNLKcXeM +06/06/2018,Musicians,@carrieunderwood,Soooo grateful for my fans who come from near and far to be at the Fan Club party year after year!! You guys are th… https://t.co/ZZTnqxZScG +06/05/2018,Musicians,@carrieunderwood,Anyone see this on the bridge today? Isaiah… https://t.co/Vlly1ZnIbH +06/03/2018,Musicians,@carrieunderwood,Don’t forget! Today is the last day to vote for the 2018 #CMTMusicAwards! Vote as many times as you want all day.… https://t.co/KTLMarvSYB +06/02/2018,Musicians,@carrieunderwood,❤️❤️❤️ https://t.co/O7H9CjYIk3 +05/31/2018,Musicians,@carrieunderwood,@KarrisInHaiti This is amazing! 😂 +05/29/2018,Musicians,@carrieunderwood,Just announced! Carrie will perform at the 2018 #CMTMusicAwards – TeamCU https://t.co/aDKzuvG0QK +05/25/2018,Musicians,@carrieunderwood,@CareBear4CU @ny4carrie I’m sorry...I’ve failed us all...😔🤦‍♀️🤪 +05/24/2018,Musicians,@carrieunderwood,"😭 #CryPretty +Watch: https://t.co/ryVbINeB0m     +Stream or download: https://t.co/S8iq7b92Br -TeamCU https://t.co/0Yw3nNxOcM" +05/23/2018,Musicians,@carrieunderwood,🏈🏈 The 2019 #NFLDraft is headed to Music City! Can’t wait!!! @visitmusiccity @NFL #TheFutureIsComing +05/22/2018,Musicians,@carrieunderwood,"Congratulations, @MaddiePoppe ! What a fun finale! You all should be so proud! Can’t wait to catch you out on the r… https://t.co/VgbgMyGGGB" +05/20/2018,Musicians,@carrieunderwood,Dearest @calebleemusic @GabbyBarrett_ and @MaddiePoppe ...best of luck and lots of ❤️ for the finale tonight! Whate… https://t.co/FRyrXD6rHE +05/19/2018,Musicians,@carrieunderwood,@CUfan1021 @liveinvineyard I can’t believe you guys traveled so far!!! Thanks for coming! ❤️❤️❤️ +05/19/2018,Musicians,@carrieunderwood,Carrie has been nominated for 4 #CMTMusicAwards! Voting is unlimited! Vote now and vote often at… https://t.co/gUgOYphiYb +05/18/2018,Musicians,@carrieunderwood,Summer vibes! 👙 😎☀️ @CALIAbyCarrie https://t.co/7sxHveA8Ix +05/18/2018,Musicians,@carrieunderwood,"RT @OklahomaHoF: Welcome to the Oklahoma Hall of Fame, class of 2018! #OKHighestHonor + +- Paul Allen +- Mo Anderson +- Charlie Christian +- Ree…" +05/17/2018,Musicians,@carrieunderwood,"What a great night! Thanks for having me, @liveinvineyard !🍷 https://t.co/a1VdO2q3FT" +05/14/2018,Musicians,@carrieunderwood,ICYMI: Carrie performed #CryPretty last night on @AmericanIdol. Click to watch now. -TeamCU https://t.co/yeV4Cgc0Ct +05/14/2018,Musicians,@carrieunderwood,Hear the hits performed on tonight’s @AmericanIdol as well as much more on the “Carrie Underwood: American Idol Pla… https://t.co/iWOIBwDsI0 +05/14/2018,Musicians,@carrieunderwood,These idols are BRINGING IT tonight!!! @AmericanIdol +05/13/2018,Musicians,@carrieunderwood,Carrie returns to @AmericanIdol as tonight's guest mentor + performs her new hit single #CryPretty! Tune in at 8e|5… https://t.co/TmvghUBpsx +05/13/2018,Musicians,@carrieunderwood,"Hey, Mom, I hope you feel like this today! Happy Mother’s Day!!! Love you so much!!!!! https://t.co/PUgvOwUQu9" +05/13/2018,Musicians,@carrieunderwood,"My shirt for today...unfortunately, my kid can’t read, so I have,… https://t.co/lRl3NQaOgl" +05/13/2018,Musicians,@carrieunderwood,At @AmericanIdol rehearsals today!!! So good to be back! Feels like coming home! Don’t forget to tune in tomorrow..… https://t.co/f4q1wriqgC +05/12/2018,Musicians,@carrieunderwood,Tomorrow night! 🎤🎉🎶@AmericanIdol https://t.co/bXClfIVcA7 +05/12/2018,Musicians,@carrieunderwood,"What an incredible night celebrating 10 years of being in this amazing @opry family. Thank you, @randytravis for al… https://t.co/apmmslTK8q" +05/12/2018,Musicians,@carrieunderwood,I am so blessed to be a part of this family!!! Thanks to all who made tonight happen! https://t.co/RH2RJ9Pp59 +05/12/2018,Musicians,@carrieunderwood,@CUnews4Fans @opry Yay!!! +05/12/2018,Musicians,@carrieunderwood,10 year anniversary #OprySelfie @opry ❤️❤️❤️ https://t.co/sEmabbpQIZ +05/12/2018,Musicians,@carrieunderwood,Soooo excited to play at the @opry tonight! Can’t believe it’s my 10 year anniversary! This is truly the ❤️ and sou… https://t.co/3wBGFwxbka +05/12/2018,Musicians,@carrieunderwood,"@DeannaRilling @goldenpipeslv @GoldenKnights Hey man, was just offering up my services as someone who loves me some… https://t.co/T82wQjZ54M" +05/11/2018,Musicians,@carrieunderwood,ICYMI: Carrie will be performing at the @HardRockHCAC on June 29th. Tickets + details: https://t.co/V2dlwEhlGq -Tea… https://t.co/h3urXXtQHN +05/11/2018,Musicians,@carrieunderwood,"@NashCntryDaily @reba I was looking for a gif about the elephant gun, but this’ll do... https://t.co/Hoq1qADUkY" +05/11/2018,Musicians,@carrieunderwood,"Oh my goodness, I NEED this in my life! Loved the original! Such a classic! This looks soooooo good! https://t.co/tUVaeIgN4Y" +05/11/2018,Musicians,@carrieunderwood,"And one last thing...if the @GoldenKnights need an anthem singer, I’m 2-0 in the playoffs...just saying...🤷‍♀️ + +Goo… https://t.co/1RvyVurD10" +05/11/2018,Musicians,@carrieunderwood,"PS, this @PredsNHL crowd was amazing tonight from beginning to end!!! So amazing and loud...like, REAL loud...you know what I mean. 😜" +05/11/2018,Musicians,@carrieunderwood,"And I’ll also say, until next season, I am officially a @GoldenKnights fan! I’ll enjoy seeing them make a little history!!" +05/11/2018,Musicians,@carrieunderwood,"Welp, to me & our 3 year-old, @mikefisher1212 is the greatest hockey player alive & the @PredsNHL are now & forever… https://t.co/NTzxyL1tYW" +05/08/2018,Musicians,@carrieunderwood,Congrats to Carrie on 4 @CMT Music Awards nominations!! Vote as often as you can here: https://t.co/2xYEzu3Znh… https://t.co/niVOhd7FGX +05/07/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Sometimes staying the path is spinning while your laundry is. https://t.co/XOIET4GJuO +05/07/2018,Musicians,@carrieunderwood,Carrie to return to @AmericanIdol May 13th as superstar guest mentor and to perform #CryPretty! Details:… https://t.co/RPcCuSAx2V +05/07/2018,Musicians,@carrieunderwood,"Congrats on the album, guys! You put on a great show tonight! Lots of love ❤️ from the Nashvegas crew! https://t.co/1rTirLDI5G" +05/07/2018,Musicians,@carrieunderwood,Watch the official #CryPretty music video now! -TeamCU https://t.co/ryVbINeB0m +05/06/2018,Musicians,@carrieunderwood,Watch @AmericanIdol tonight to get a worldwide exclusive look at my new music video for #CryPretty !! Live show sta… https://t.co/u3kvI6wUju +05/05/2018,Musicians,@carrieunderwood,Dear all @PredsNHL fans coming to the game tonight: accept the fact that you will not have a voice tomorrow. Bring… https://t.co/OCO9bdeOxu +05/05/2018,Musicians,@carrieunderwood,Watch @AmericanIdol on @ABCNetwork Sunday night at 8e/5p for a sneak peek of my new music video for #CryPretty ! https://t.co/dZorKrAvDk +05/05/2018,Musicians,@carrieunderwood,"An amazing group of women joined me, my mom, and @CALIAbyCarrie for an afternoon of fashion, fitness, and fun! Such… https://t.co/A3SD6Q7e9l" +05/05/2018,Musicians,@carrieunderwood,"Had a great time in NYC! If I can, when I’m there, I love to see talented people doing amazing things! So, naturall… https://t.co/At8CAV9TWp" +05/04/2018,Musicians,@carrieunderwood,Coming soon… #CryPretty https://t.co/Rc0ZotYYlC +05/01/2018,Musicians,@carrieunderwood,"As a child, I wanted nothing more than to make my parents proud of me...and… https://t.co/MehykVylsM" +04/30/2018,Musicians,@carrieunderwood,Glorious... +04/30/2018,Musicians,@carrieunderwood,@MattEaton1 @PredsNHL Right?! Mama needs to go night night...😜😴 I turn into a pumpkin at 9! +04/27/2018,Musicians,@carrieunderwood,Can’t wait!! June 5 @Opry 🎉🎉🎉 https://t.co/Iry9Qq0A3m +04/26/2018,Musicians,@carrieunderwood,New #CryPretty merch has been added to the Official Carrie Underwood Store. Shop now: https://t.co/iJDfjxchPe -Team… https://t.co/OEwWD80Y1F +04/25/2018,Musicians,@carrieunderwood,This @CALIAbyCarrie reversible tank top is one of my favorites! #StayThePath 🏋️‍♀️💪 https://t.co/m7HxvDccnB +04/24/2018,Musicians,@carrieunderwood,Want to see Carrie perform at this year’s @liveinvineyard festival? Enter now for your chance to win a flyaway trip… https://t.co/rqmJkvHIuT +04/24/2018,Musicians,@carrieunderwood,"Sometimes, you’re swinging on a tree swing in Oklahoma and you look up and think, “Wow, that’s beautiful.” ❤️😊 https://t.co/ON9juNTqA4" +04/23/2018,Musicians,@carrieunderwood,😁👍👊 https://t.co/LalHUqpPpb +04/21/2018,Musicians,@carrieunderwood,"Today, we celebrated my parents’ 50th anniversary...We listened to stories of how they met and… https://t.co/9RBcixThpZ" +04/21/2018,Musicians,@carrieunderwood,Ready to cheer on the boys tonight! Especially that #12! I hear he’s alright!😘 @mikefisher1212 @predsnhl… https://t.co/VGnWwsIWip +04/20/2018,Musicians,@carrieunderwood,✨Trying out new @CALIAbyCarrie #StayThePath✨ https://t.co/MvsNjjkJSg +04/20/2018,Musicians,@carrieunderwood,Looking forward to #CMAFest this year! #itstartswithME #musiceducation #CMAFoundation https://t.co/gaj6SII7J6 +04/18/2018,Musicians,@carrieunderwood,"RT @iHeartCountry: We just added @carrieunderwood's single ""Cry Pretty"" to our New Country Weekly Playlist! Listen here: https://t.co/VkGjJ…" +04/18/2018,Musicians,@carrieunderwood,#CryPretty the album…coming September 14!! 😭 💗 🎶 https://t.co/M1QVdbuquE https://t.co/UzoxBTc9Af +04/17/2018,Musicians,@carrieunderwood,It’s such an honor to be a part of the @Opry family! Can’t wait to celebrate 10 years! ❤️ https://t.co/IzVxuF8PLR +04/16/2018,Musicians,@carrieunderwood,ICYMI! Watch Carrie’s performance of #CryPretty from the #ACMawards below! -TeamCU https://t.co/T9I3ko2xFu +04/16/2018,Musicians,@carrieunderwood,"RT @ACMawards: And the winner for Vocal Event of the Year goes to... @KeithUrban and @CarrieUnderwood for “The Fighter"" #ACMawards https://…" +04/15/2018,Musicians,@carrieunderwood,Tune in tonight to watch the world television premiere of #CryPretty! @ACMawards -TeamCU https://t.co/bBXt6mS1ok +04/15/2018,Musicians,@carrieunderwood,My boys...(and Uncle @budfisher 😜) I wonder if he’ll remember seeing his daddy play...I sure… https://t.co/Sa87yJCdvH +04/15/2018,Musicians,@carrieunderwood,Had a great rehearsal for the @acmawards ! Can’t wait until tomorrow night! #CryPretty #ACMAwards https://t.co/hGLjmCdubn +04/14/2018,Musicians,@carrieunderwood,Amazing! @BradPaisley !!! Way to kick us off!!! Go Preds!!! +04/14/2018,Musicians,@carrieunderwood,"RT @pandoramusic: .@carrieunderwood returns with ""Cry Pretty"" -- as in, you can't. You can ""pretty lie"" and ""pretty smile,"" ""pretty much fa…" +04/14/2018,Musicians,@carrieunderwood,Getting ready for the weekend…#CryPretty #ACMawards @CALIAbyCarrie https://t.co/R2BX6QAvAK +04/14/2018,Musicians,@carrieunderwood,YES @Spotify #NewMusicFriday! ☺️😭🎉🎶#CryPretty #TimesSquare https://t.co/Zd4dD0kj59 https://t.co/vlN5iqpuH6 +04/12/2018,Musicians,@carrieunderwood,Check out Carrie Underwood’s Cry Pretty Playlist -TeamCU https://t.co/x7uASDtJdc https://t.co/RO0shCydIA +04/12/2018,Musicians,@carrieunderwood,@LoriMcKennaMA Tiny part...ha ha! You’re too humble! 😘 Thank you (and Liz and Hillary) for allowing me to be in the room with greatness! +04/11/2018,Musicians,@carrieunderwood,"@mrBobbyBones Thanks! Why isn’t there a hug emoji? 👻 This dude’s got his arms out, so he’ll do! You get it..." +04/11/2018,Musicians,@carrieunderwood,Lyric video for #CryPretty is available here: https://t.co/VuzoJ0Yphk -TeamCU https://t.co/5hHKYSQTvs +04/11/2018,Musicians,@carrieunderwood,It’s here! #CryPretty I hope you love it as much as I do!!! https://t.co/S8iq7b92Br https://t.co/YEgPodfYba +04/11/2018,Musicians,@carrieunderwood,So excited to perform #CryPretty at the @ACMawards this weekend!! https://t.co/k65hGmZzuV +04/11/2018,Musicians,@carrieunderwood,I can’t wait for you to hear my new single tomorrow! #CryPretty #iHeartCountry #WorldPremiere https://t.co/ZrAh0o4ssR +04/10/2018,Musicians,@carrieunderwood,Good morning! Just a couple of updates to share with you…😉 https://t.co/gfbFNEkP40 https://t.co/YuGXY4JkRK +04/09/2018,Musicians,@carrieunderwood,"This Wednesday, April 11. 6am ET. https://t.co/7n4eDMcfdd" +04/07/2018,Musicians,@carrieunderwood,"Whatever, girl, I voted for you! 😘 + +But seriously, I do wish more publications would just celebrate women’s succes… https://t.co/AYJNcPrEKq" +04/06/2018,Musicians,@carrieunderwood,Missed these guys. #bandrehearsals https://t.co/cB2hlxgCQM +04/06/2018,Musicians,@carrieunderwood,"Wow! Way to go, boys! So proud of you! https://t.co/nGmdXs51eq" +04/06/2018,Musicians,@carrieunderwood,"Yay! Congrats, guys!!! ❤️👊 https://t.co/sHCbrbgXTj" +04/05/2018,Musicians,@carrieunderwood,So proud of my sisters...Making a difference for the best reason...KIDS! Here’s hoping OK schools get the funding t… https://t.co/reyuTn21I8 +04/04/2018,Musicians,@carrieunderwood,https://t.co/2QDk7Dxqp6 +04/04/2018,Musicians,@carrieunderwood,"@mikefisher1212 I love you, baby! 😘" +04/04/2018,Musicians,@carrieunderwood,RT @RealKiefer: Dear @nhl I love you and I always will but @PredsNHL were robbed tonight. +04/04/2018,Musicians,@carrieunderwood,Yup... https://t.co/C68ItXkhtv +04/04/2018,Musicians,@carrieunderwood,"I am seriously livid. @NHL , fix this." +04/04/2018,Musicians,@carrieunderwood,"RT @TomAWillis: You decide on this one: + +#Preds | #NSHvsFLA https://t.co/h2JRuCWFM6" +04/04/2018,Musicians,@carrieunderwood,Biggest pile of 💩 ever! Preds we’re straight up robbed. https://t.co/sdr8kkMa1A +04/04/2018,Musicians,@carrieunderwood,"RT @budfisher: That was a good game that the @NHL ruined. + +Ghost goaltender interference. + +Can anyone explain this rule to me?" +04/04/2018,Musicians,@carrieunderwood,Goaltender interference? Are you out of your mind? On what planet? #WorstCallEver @PredsNHL #NSHvsFLA +04/02/2018,Musicians,@carrieunderwood,I put my kid down for “night nights” an hour and a half ago...why is he still rolling around in his bed singing son… https://t.co/kGoqMGIcUL +03/30/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Sometimes it’s spinning while your laundry is. Sometimes it’s turning work breaks into sweat breaks. How do you work it… +03/30/2018,Musicians,@carrieunderwood,"Can we all just agree that @Logancouture has the coolest name in the @NHL ??? That said, go @PredsNHL !!! This game… https://t.co/f4x7uupYac" +03/27/2018,Musicians,@carrieunderwood,@PS22Chorus @Ludacris Amazing!!!! Thank you!! ❤️🎶 +03/27/2018,Musicians,@carrieunderwood,Each and every one of you is most definitely a champion! So much love for the @PS22Chorus ❤️ This made my day!!!… https://t.co/tddiLfNhgm +03/26/2018,Musicians,@carrieunderwood,"Happy Birthday, Steven! ❤️🎂🎉 #sexyat70 #HappyBdayStevenTyler https://t.co/DxYCD7q5B0" +03/23/2018,Musicians,@carrieunderwood,#TheChampion https://t.co/2A0FyD8k9s @richchiassaro @SpecialOlympics @bethanyhamilton @ShalaneFlanagan… https://t.co/Tg8y5yWoZz +03/22/2018,Musicians,@carrieunderwood,Finally getting to catch up on this week’s @AmericanIdol !!! Love to see some more ❤️ for Checotah with @kenritt !… https://t.co/Gceoj6AAnn +03/17/2018,Musicians,@carrieunderwood,"Here we go again...congrats, boys! https://t.co/i9VhP9WrrM" +03/15/2018,Musicians,@carrieunderwood,This makes me cry every single time. Thank you for welcoming me into the family 10 years ago. ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/2rMk7G8ij1 +03/12/2018,Musicians,@carrieunderwood,This will definitely be my go-to bag for spring! #convertiblebag #backpack #tote #StayThePath 💐 https://t.co/PnIF2G33yG +03/11/2018,Musicians,@carrieunderwood,"Thanks so much, everyone, for the sweet birthday wishes! Can’t wait to share with you all the things I’ve been work… https://t.co/f17La1cD1j" +03/10/2018,Musicians,@carrieunderwood,"Happy Birthday, Carrie! +Take 15% off storewide today only using code CUBDAY15. +Plus free gift with orders over $35… https://t.co/xB6vy3dnhB" +03/09/2018,Musicians,@carrieunderwood,.@Spotify added an exclusive vertical version of #TheChampion to the #HotCountry playlist! Click here to watch 👀… https://t.co/hdSe0SCTVf +03/08/2018,Musicians,@carrieunderwood,RT @CALIAbyCarrie: Happy International Women’s Day to all the strong women out there! You continue to inspire us every day. 💕 https://t.co/… +03/07/2018,Musicians,@carrieunderwood,RT @PredsNHL: Franchise record win # NINE in a row for your #Preds. New guy Ryan Hartman with the GWG and Pekka with the shoutout. What a n… +03/07/2018,Musicians,@carrieunderwood,"@PredsNHL @ElectronicXpres I have lots of headphones at the house, but I would love it if you played A: “The Champion” 😜😆🤪" +03/04/2018,Musicians,@carrieunderwood,@KarrisInHaiti I knew you had to be bad at SOMETHING! 😜 +03/03/2018,Musicians,@carrieunderwood,@PredsNHL Hawt...I’d marry him! +03/02/2018,Musicians,@carrieunderwood,"Check out the brand new official music video for #TheChampion here! https://t.co/2A0FyD8k9s -TeamCU + +More info:… https://t.co/AwPjMccoa6" +03/02/2018,Musicians,@carrieunderwood,RT @TODAYshow: .@CarrieUnderwood debuts powerful new video for #TheChampion — watch it here https://t.co/Ops7WTfVly https://t.co/j538zOIXKc +03/02/2018,Musicians,@carrieunderwood,RT @TODAYshow: Coming up: A first look at @carrieunderwood’s official music video for #TheChampion! https://t.co/u03iy2vGCC +03/02/2018,Musicians,@carrieunderwood,Tune in! First look of #TheChampion’s official music video tomorrow morning on the @TODAYshow! -TeamCU https://t.co/rsGLrQdLNy +03/02/2018,Musicians,@carrieunderwood,Congratulations Carrie on your @ACMawards nominations - Female Vocalist of the Year and Vocal Event of the Year! -T… https://t.co/i77dVPHL6R +02/28/2018,Musicians,@carrieunderwood,How is my sweet baby 3 years old? Thank you all for the sweet birthday wishes for the little man! He knows he is loved! ❤️❤️❤️ +02/26/2018,Musicians,@carrieunderwood,Boo-Hooing at an episode of @TheWalkingDead like it’s an episode of This is Us... +02/25/2018,Musicians,@carrieunderwood,Forever a fan (and friend) of these guys! @TheSwonBrothers always love to hear new music from ya’! https://t.co/nCOhbidoF9 +02/25/2018,Musicians,@carrieunderwood,"RT @NBCOlympics: The #WinterOlympics have been filled with moments and memories that will last a lifetime. + +🎵: The Champion, @CarrieUnderwo…" +02/25/2018,Musicians,@carrieunderwood,Too cute to eat (but we did anyway)! @iveycakestore did it again!!! Isaiah loved his Mickey Mouse Clubhouse cake! T… https://t.co/xpDLGOEYTF +02/21/2018,Musicians,@carrieunderwood,"Amazing...Rest in the arms of the Lord. Surely right now He is saying “Well done, my son.” https://t.co/I6i62JQlvD" +02/18/2018,Musicians,@carrieunderwood,These. Are. Amazing! ❤️🐟 @mikefisher1212 @predsnhl https://t.co/K0MkDfasPc +02/17/2018,Musicians,@carrieunderwood,"Congrats, Annie! #TheChampion https://t.co/hyDRDw1uUk" +02/17/2018,Musicians,@carrieunderwood,"RT @NBCOlympics: Some of the best moments of the #WinterOlympics. + +And we've got more great moments coming your way! + +🎶: The Champion, @Ca…" +02/16/2018,Musicians,@carrieunderwood,So inspiring! Love seeing this little warrior go! #TheChampion https://t.co/jCzJ3673iW +02/15/2018,Musicians,@carrieunderwood,"Congrats, Amy and the Shamrocks! #FierceGirls #TheChampion https://t.co/8bHySjZqDy" +02/14/2018,Musicians,@carrieunderwood,What a comeback! @PredsNHL +02/14/2018,Musicians,@carrieunderwood,"Yes! #TheChampion as a hype song! Thanks, Gabby! https://t.co/FmGkXkyeOl" +02/13/2018,Musicians,@carrieunderwood,"RT @billboard: Fans upload videos using Carrie Underwood's triumphant ""The Champion"" as a soundtrack to overcoming struggle https://t.co/1I…" +02/13/2018,Musicians,@carrieunderwood,"Wow, so great to see how you start your day – thank you!! #okieschoolsrock #TheChampion https://t.co/ASjS9FgfTA" +02/11/2018,Musicians,@carrieunderwood,"Love seeing all the Champion-inspired posts! Keep them coming! Love this, Marqos! #TheChampion https://t.co/3hHYbVrhla" +02/11/2018,Musicians,@carrieunderwood,He is a TRUE champion! #Inspired #TheChampion https://t.co/GIwrKcJfMk +02/10/2018,Musicians,@carrieunderwood,"My boys make work outs fun (and a bit less productive, but that’s ok)! #StayThePath @CALIAbyCarrie 📸: @ErinOprea https://t.co/8oRPxAM9n6" +02/10/2018,Musicians,@carrieunderwood,"Congrats, Nicole! #StayThePath #TheChampion https://t.co/tH2rIAdECI" +02/09/2018,Musicians,@carrieunderwood,You guys inspire ME! #WallOfChampions #wilburinspired #TheChampion https://t.co/EME9aOFNc9 +02/08/2018,Musicians,@carrieunderwood,"RT @AppleMusic: From the #SuperBowl to the #WinterOlympics, #TheChampion is the ultimate anthem. Find out the inspiration from @carrieunder…" +02/05/2018,Musicians,@carrieunderwood,"Congrats, @Eagles and Eagles fans! That was a great game from the anthem to the halftime show to the confetti! So m… https://t.co/iMyGpuQdFo" +02/04/2018,Musicians,@carrieunderwood,"RT @SNFonNBC: .@carrieunderwood kicks us off on the biggest Sunday Night of them all. + +Watch the #SuperBowl now on NBC or stream: https://…" +02/04/2018,Musicians,@carrieunderwood,RT @SNFonNBC: Two teams enter #SBLII but only one can be #TheChampion https://t.co/ceaMgFZieI +02/03/2018,Musicians,@carrieunderwood,Are you ready for Super Bowl LII? #TheChampion will kick it all off tomorrow at 6pm ET/3pm PT! #SBLII… https://t.co/64uaIrN42w +02/03/2018,Musicians,@carrieunderwood,"RT @SNFonNBC: Champions will be crowned this month on NBC at #SBLII & the #WinterOlympics + + 🎵: @carrieunderwood #TheChampion https://t.co/P…" +02/02/2018,Musicians,@carrieunderwood,I’m so honored that you guys took the time to do this!! ❤️ #MyChampions #TheChampion https://t.co/cRMKAN1rZ2 +02/02/2018,Musicians,@carrieunderwood,Carrie has taken over @Spotify’s #Workout playlist. Listen here! https://t.co/pR8vSV2lDK -TeamCU #TheChampion https://t.co/IhrclYIMSc +02/01/2018,Musicians,@carrieunderwood,"#TheChampion, as featured on NBC’s Super Bowl LII and XXIII Winter Olympic Games, is available now! Download or add… https://t.co/JLV3TC2G25" +02/01/2018,Musicians,@carrieunderwood,You guys are amazing - this made my day! #TheChampion #ReadersAreLeaders https://t.co/o4YcREeC6n +07/02/2018,Musicians,@KeithUrban,"Happy #CanadaDay! 🇨🇦 Thanks for having us this weekend, Toronto! #GraffitiUWorldTour https://t.co/BTSLGn4SWf" +07/01/2018,Musicians,@KeithUrban,TORONTO 6.29 & 6.30 • #GraffitiUWorldTour • Happy #CanadaDay https://t.co/YIgWcW2Anl +07/01/2018,Musicians,@KeithUrban,"It’s gonna be a HUGE night tonight Toronto!!!!!! - KU +#GraffitiUWorldTour https://t.co/x98As9A9fG" +06/30/2018,Musicians,@KeithUrban,Mornin Toronto.... wakin up on bus backstage .... gonna be a kickass nite 2nite!!!! - KU https://t.co/bSNI1Hd9Z0 +06/29/2018,Musicians,@KeithUrban,Yo @DanAndShay.... It’s a great song!!!!!!! - KU https://t.co/mMtwuRvR4D +06/28/2018,Musicians,@KeithUrban,#TBT to the #GraffitiU Release Party with @iHeartRadio! ✨ Relive the party and performances:… https://t.co/igcUflPPwc +06/28/2018,Musicians,@KeithUrban,"Saratoga Springs, NY • 6.27.18 • #GraffitiUWorldTour https://t.co/W21qFg4gQd" +06/27/2018,Musicians,@KeithUrban,🚨 Please be aware of IMPOSTERS pretending to be artists on social media. Know how to spot the signs of fake account… https://t.co/vtrQSiY9JL +06/27/2018,Musicians,@KeithUrban,"RT @FallonTonight: Turn up that volume...@KeithUrban is performing ""Coming Home""! #FallonTonight https://t.co/C14EOGq1Fh" +06/26/2018,Musicians,@KeithUrban,"See u tonight on @jimmyfallon! - KU +#FallonTonight https://t.co/cXrjdxYA1O" +06/26/2018,Musicians,@KeithUrban,Get ready! 🎤 Keith is performing on @FallonTonight TONIGHT! 📺 https://t.co/FgjtR5g6iJ +06/26/2018,Musicians,@KeithUrban,"RT @FallonTonight: Tonight on the show: @SHAQ, @jennadewan, and music from @KeithUrban! #FallonTonight https://t.co/jsU5iWN3ar" +06/26/2018,Musicians,@KeithUrban,"RT @jimmyfallon: Tonight on the show: @SHAQ is here and @jennadewan stops by! Plus, a performance from @KeithUrban! #FallonTonight" +06/25/2018,Musicians,@KeithUrban,12 years of celestial synergized soul dancing. Happy anniversary Babygirl!!! I love you SO much. - KU https://t.co/sBwz7fvslO +06/25/2018,Musicians,@KeithUrban,Looking for the perfect way to commemorate seeing the #GraffitiUWorldTour?! 🎤 Now you can customize a 3D Souvenir T… https://t.co/hkLbtrJ7CR +06/24/2018,Musicians,@KeithUrban,"THANK YOU for having us this weekend, Detroit and Pittsburgh!!! ✨ +#GraffitiUWorldTour weekend 2 in the books! https://t.co/ISpcXgCB2k" +06/24/2018,Musicians,@KeithUrban,"Pittsburgh, PA • 6.23.18 • #GraffitiUWorldTour https://t.co/fxfFINeshg" +06/24/2018,Musicians,@KeithUrban,"We’re ready for a great night, Pittsburgh!!! #GraffitiUWorldTour https://t.co/DVvXKmJNIK" +06/23/2018,Musicians,@KeithUrban,"See you tonight, Pittsburgh!!! #GraffitiUWorldTour https://t.co/eC2f7ppEyE" +06/23/2018,Musicians,@KeithUrban,"Clarkston, MI • 6.22.18 • #GraffitiUWorldTour https://t.co/M8zp2oJ1iA" +06/22/2018,Musicians,@KeithUrban,"We're SO ready for another weekend of the #GraffitiUWorldTour!!! 🙌 +See you soon, Clarkston and Pittsburgh! https://t.co/P8kJ0PRXVD" +06/21/2018,Musicians,@KeithUrban,RT @opry: @KeithUrban There's only one Music City! ❤️🎶 #ComingHome https://t.co/7mbCzoOaqH +06/20/2018,Musicians,@KeithUrban,RT @xokatic: @KeithUrban Nothing like the Missouri hills. 😉💛 https://t.co/Y4Odpfm2Si +06/20/2018,Musicians,@KeithUrban,"RT @_DefyinGravity_: @KeithUrban Love my home state, Ky! Bluegrass music, UK basketball, horses, and fried chicken! Love the bluegrass stat…" +06/20/2018,Musicians,@KeithUrban,RT @countrymuzikfn: @KeithUrban There’s nothing like #ComingHome to Wisconsin. https://t.co/EvVnKQKicv +06/20/2018,Musicians,@KeithUrban,RT @nclement372: @KeithUrban What's not to love!!!!❤🏡#ComingHome #Canada https://t.co/MCHdRluxDW +06/20/2018,Musicians,@KeithUrban,RT @Whobugs: @KeithUrban I love that it shows how beautiful #Utah is in the summertime. If you look closely it shows how much we love summe… +06/20/2018,Musicians,@KeithUrban,"""There's nothing in the world that feels like coming home."" ✨ +Find the #ComingHome postcard for your home and shar… https://t.co/RrjIVPtDMM" +06/19/2018,Musicians,@KeithUrban,"Congrats to @leannrimes and @StevieNicks on BORROWED!!!!!! - KU +https://t.co/nsNb7ngeVu" +06/19/2018,Musicians,@KeithUrban,Keith and @JuliaMichaels are taking you behind the scenes of their music video for #ComingHome! 🎬 https://t.co/o8Y5hieidI +06/18/2018,Musicians,@KeithUrban,"THANK YOU for a killer opening weekend, St. Louis and Indy!!! 💥 #GraffitiUWorldTour https://t.co/KpyI22wJgK" +06/17/2018,Musicians,@KeithUrban,RT @LarkinPoe: The head-bang crew 💀💀💀 Round two with @KeithUrban tonight in Noblesville! #GraffitiU #larkinpoe https://t.co/d5AgVTtqhr +06/17/2018,Musicians,@KeithUrban,"Indianapolis, IN • 6.16.18 • #GraffitiUWorldTour • @larkinpoe https://t.co/7FFsvuEGIF" +06/16/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour officially kicked off last night! 🎤 We'll see you tonight, Indianapolis! 🙌 @ruoffmusicenter https://t.co/uwup11Urag" +06/16/2018,Musicians,@KeithUrban,"ST. LOUIS, MO • 6.15.18 • #GraffitiUWorldTour OPENING NIGHT https://t.co/JDZpj64kBq" +06/16/2018,Musicians,@KeithUrban,"RT @LarkinPoe: Tonight is the kick-off show of @KeithUrban’s #GraffitiU Tour! +St. Louis, we’re stoked to be here!@HollywoodAmpSTL #keithurb…" +06/15/2018,Musicians,@KeithUrban,"We had a crazy final day of rehearsals, but we're ready to ROCK the opening night of the #GraffitiUWorldTour in St.… https://t.co/URVVSfQVNR" +06/15/2018,Musicians,@KeithUrban,TOMORROW • #GraffitiUWorldTour https://t.co/HkMaAjelmP +06/14/2018,Musicians,@KeithUrban,"The setlist is finalized, the trucks are loaded, and we are ready to hit the road! 🙌 See you tomorrow, St. Louis! 🎸… https://t.co/a58GArClkl" +06/14/2018,Musicians,@KeithUrban,RT @people: Keith Urban Preps for Graffiti U Tour: All the Behind-the-Scenes Photos https://t.co/2DXLLlJY9E +06/14/2018,Musicians,@KeithUrban,#GraffitiUWorldTour • FRIDAY!!! https://t.co/yqN8pMqLt3 +06/14/2018,Musicians,@KeithUrban,We’re gettin’ ready to roll! 🙌 #GraffitiUWorldTour https://t.co/bZZD9i7QVw +06/13/2018,Musicians,@KeithUrban,A quick update from Keith from the #GraffitiUWorldTour rehearsals! 🎸🎤 https://t.co/AMHQxEiGAy +06/13/2018,Musicians,@KeithUrban,Celebrate the 4th of July with Keith! 🎆 Don't miss his #MacysFireworks performance this year on @NBC. https://t.co/bP5YLzxlsw +06/13/2018,Musicians,@KeithUrban,Keith and @JuliaMichaels are taking you behind the scenes of the #ComingHome music video! 🎬 WATCH:… https://t.co/Yggac3xpPd +06/13/2018,Musicians,@KeithUrban,"The bass(es) are loaded and we’re #ComingHome! 🎸😉 +#GraffitiUWorldTour https://t.co/bPbxfsTWYD" +06/12/2018,Musicians,@KeithUrban,RT @LarkinPoe: We’re excited to announce that @KeithUrban has asked us to join him as featured performers on his #GraffitiU World Tour this… +06/12/2018,Musicians,@KeithUrban,RT @KelseaBallerini: finishing #CMAFest and starting the #GraffitiUWorldTour!! My heart is happy. so ready for this @KeithUrban!! Who’s com… +06/12/2018,Musicians,@KeithUrban,RT @TasteOfCountry: The new video from @KeithUrban is so cool! Get a look behind the scenes with him and @JuliaMichaels. https://t.co/pUHq… +06/12/2018,Musicians,@KeithUrban,RT @SoundsLikeNash: Is @KeithUrban's #GraffitiU Tour coming to a city near you? https://t.co/BpDoXiEEpL +06/12/2018,Musicians,@KeithUrban,The band has some fun surprises in store for the #GraffitiUWorldTour! 🎸🎹🥁 Check it out: https://t.co/GpMhis8fhj https://t.co/0TdLwKXDbO +06/11/2018,Musicians,@KeithUrban,"“...like context in a modern debate, I just took it out.” - Sage commentary @Truman_Black - love the new song!! - KU" +06/11/2018,Musicians,@KeithUrban,RT @TasteOfCountry: Heck YES! @KeithUrban's tour kicks off this week and we are puuuumped! https://t.co/e668lnqbt4 +06/11/2018,Musicians,@KeithUrban,"We’re ready to rock, St. Louis! 🙌 +#GraffitiUWorldTour https://t.co/rx57tk3T0h" +06/10/2018,Musicians,@KeithUrban,Last day to find the #GraffitiU murals around #CMAfest! We can’t wait to see your pictures! https://t.co/RrSbnVRFg1 +06/10/2018,Musicians,@KeithUrban,#CMAfest • 6.9.18 • @CountryMusic https://t.co/dsc9awr4Aj +06/10/2018,Musicians,@KeithUrban,"RT @visitmusiccity: Sing it w/us! + +🎶 ""All That Wasted Ti-i-i-ime!"" 🎶 + +@KeithUrban #CMAfest https://t.co/okl7fEDij8" +06/10/2018,Musicians,@KeithUrban,RT @NissanStadium: No better way to end the night! #CMAfest https://t.co/RXET2k0dUr +06/09/2018,Musicians,@KeithUrban,"Less than a week to go! 🎹🙌 +#GraffitiUWorldTour https://t.co/XB2YFozNEl" +06/09/2018,Musicians,@KeithUrban,#CMAfest TONIGHT!!! https://t.co/D9MdecDsDl +06/08/2018,Musicians,@KeithUrban,One week from now we’ll be rockin’ the first night of the #GraffitiUWorldTour in St. Louis! 🎸🙌🎶 https://t.co/q2HSzyVC2r +06/08/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour kicks off ONE WEEK from today! 🎤 +Don't miss Keith and @KelseaBallerini out on the road thi… https://t.co/3w7Z7kPcrZ" +06/08/2018,Musicians,@KeithUrban,"“There’s a place that I know +where they all know me...” +#GraffitiUWorldTour +#ComingHome https://t.co/PmJEeD8e4b" +06/07/2018,Musicians,@KeithUrban,In Nashville for #CMAfest? ☀ Find the #GraffitiU murals around town and post a picture using #GraffitiU and… https://t.co/OXhKfmveNE +06/07/2018,Musicians,@KeithUrban,"We're headed into #CMAFest like... 🤟🎤 +#ComingHome @juliamichaels https://t.co/Cn8ldXzyLn" +06/07/2018,Musicians,@KeithUrban,The band is ready to get this show ON THE ROAD! 🎸 @Raderator #GraffitiUWorldTour https://t.co/khctn5st8P +06/06/2018,Musicians,@KeithUrban,"The first stop on the #GraffitiUWorldTour is just 9 DAYS away! 🙌 +Celebrate by tweeting us your favorite concert mem… https://t.co/RL7AXKxaGL" +06/06/2018,Musicians,@KeithUrban,RT @EW: Here's a behind-the-scenes look at @KeithUrban's 'Graffiti U' tour https://t.co/O559SHhdgZ +06/05/2018,Musicians,@KeithUrban,"🔟🎸🔟✨🔟🎤🔟🔥🔟🎶🔟 +#GraffitiUWorldTour https://t.co/5ouTz3oAh4" +06/04/2018,Musicians,@KeithUrban,"RT @RecordingAcad: GRAMMY winner @KeithUrban has released a brand-new video for his upbeat collaboration with @JuliaMichaels, ""Coming Home.…" +06/03/2018,Musicians,@KeithUrban,"Keith is taking you inside his studio to see how ""Coming Home"" was written and recorded! 🎶 @juliamichaels +FULL VIDE… https://t.co/u5roz1qgzI" +06/01/2018,Musicians,@KeithUrban,"2 WEEKS! 🎤 2 WEEKS! 🎤 2 WEEKS! +#GraffitiUWorldTour https://t.co/RXAfltYcG1" +06/01/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour is just 2 WEEKS AWAY! 🙌 Which song are you most excited to hear LIVE?! 🎤 +TICKETS:… https://t.co/6dXFil9FRL" +06/01/2018,Musicians,@KeithUrban,RT @ClaireHKU_Fan: HAPPY JUNE ☀️!!! THAT MEANS ONLY 15 DAYS UNTIL @KeithUrban EMBARKS ON HIS #GraffitiUWorldTour 💃🤩💥!!! BRING IT ON 🤘!!! +06/01/2018,Musicians,@KeithUrban,I got your back @NileRodgers ALWAYS! CONGRATS and love!!!! - KU https://t.co/567eqcdr5E +06/01/2018,Musicians,@KeithUrban,Congrats @BrandonRayMusic!!!! - KU https://t.co/O1khjLgXRd +05/31/2018,Musicians,@KeithUrban,Spotted at #GraffitiUWorldTour rehearsals... 🙌🎤 https://t.co/ND1Z5cIA1v +05/31/2018,Musicians,@KeithUrban,RT @Vevo: You know you're going to have a good night when you walk into a bar and @KeithUrban & @juliamichaels are performing. Watch their… +05/31/2018,Musicians,@KeithUrban,"RT @flickeringjulia: OMG THE COMING HOME MV IS OUT IM FLIPPING OUT + +@juliamichaels @KeithUrban https://t.co/eH6IrNYchs" +05/31/2018,Musicians,@KeithUrban,@flickerlives @juliamichaels Thanks for letting us know! We’re on it! - Team KU +05/31/2018,Musicians,@KeithUrban,@lucy_arden @juliamichaels Thanks for letting us know! We’re on it! - Team KU +05/31/2018,Musicians,@KeithUrban,Check out the brand new music video for #ComingHome featuring @juliamichaels! 🎤 https://t.co/VtIZoI17Rc +05/30/2018,Musicians,@KeithUrban,We want to know which songs YOU want to hear on the #GraffitiUWorldTour! 🎤 SURVEY: https://t.co/lIDwF3leMl https://t.co/mAtLCgWdyj +05/30/2018,Musicians,@KeithUrban,"LAST DAY to enter! 🚨 Join Keith's fan club for the chance to win a pair of 4-day passes to #CMAfestl! 🎟 +Enter HERE:… https://t.co/KloSM5YKg1" +05/30/2018,Musicians,@KeithUrban,#ComingHome • TOMORROW https://t.co/waqkasp2JP +05/29/2018,Musicians,@KeithUrban,"Have you heard Keith's version of @LittleBigTown's hit #BetterMan? 🎶 +https://t.co/Ub9xxFnuoW" +05/29/2018,Musicians,@KeithUrban,#ComingHome • 5.31.18 https://t.co/tviL9WLJwg +05/27/2018,Musicians,@KeithUrban,"Forest City, IA • 5.26.18 • @TreeTownFest https://t.co/bo7Y7zfLg7" +05/27/2018,Musicians,@KeithUrban,Deep into training for the #GraffitiUWorldTour!!!!! - KU https://t.co/U76GlBC2UR +05/25/2018,Musicians,@KeithUrban,We're coming for you @TreeTownFest! 🤘 Can’t wait to see you all there TOMORROW! 🎤 TICKETS: https://t.co/EXboQ3snqR 🎟 https://t.co/vAdvZjw1yF +05/25/2018,Musicians,@KeithUrban,Go inside Keith's studio and see how his current single #ComingHome was written and recorded! 🎶 https://t.co/2Y5cp3gIsv +05/24/2018,Musicians,@KeithUrban,#CMAfest is only 2 WEEKS AWAY! 🎉 Join Keith's fan club for the chance to win a pair of 4-day passes to the festival… https://t.co/5vZyqRg32D +05/24/2018,Musicians,@KeithUrban,"#TBT to this epic version of #TheFighter from the #CMTawards! +VOTE for it to win CMT Performance of the Year:… https://t.co/FE8ciwiNfQ" +05/23/2018,Musicians,@KeithUrban,"How awesome for all of us here in Nashville that the 2019 @NFL draft is coming to our town!!!!!!! - KU 🏈 +#NFLDraft… https://t.co/292KMHZrWB" +05/21/2018,Musicians,@KeithUrban,"Keith is #ComingHome to play @BrdgstoneArena in August, and you could win a trip to Nashville to see the show! ✈ EN… https://t.co/rg1ypbhH2F" +05/16/2018,Musicians,@KeithUrban,Keith chatted with @TheKellySutton about the songs of #GraffitiU! Check out their @TuneIn Conversation:… https://t.co/qMYdHRlgTc +05/16/2018,Musicians,@KeithUrban,"We'll see you on September 9th, #CCMAawards! 🎤 Tickets on sale now! 🎟 @CCMAofficial @CBCMusic 🇨🇦 https://t.co/0iLbum15JJ" +05/15/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour kicks off ONE MONTH from today! +TICKETS: https://t.co/ISgkDPKADz 🎤 +MERCH:… https://t.co/3GEJFy9QCd" +05/14/2018,Musicians,@KeithUrban,How about a little #ParallelLine from #GraffitiU on this #MusicMonday? 🎶 https://t.co/LOK4idqf5R +05/13/2018,Musicians,@KeithUrban,Happy #MothersDay! Use code MOTHERSDAY today to get 13% off of new #GraffitiUWorldTour merchandise and the rest of… https://t.co/WesjGWocOa +05/13/2018,Musicians,@KeithUrban,HAPPY MOTHER'S DAY MOM- and for Moms everywhere!!!!!!! - KU https://t.co/juHfwiwZ4H +05/11/2018,Musicians,@KeithUrban,We've got our shades on dancing with our hands up high! 🙌 Crank up #DropTop featuring @KassiAshton to get that… https://t.co/7ROycsLWNr +05/10/2018,Musicians,@KeithUrban,.@JESSICAMAUBOY - YOU ROCK GIRL!!!!!!!! - KU +05/10/2018,Musicians,@KeithUrban,"The #GraffitiUWorldTour is just around the corner! 🎶 Which songs would make it on to your dream set list?! +https://t.co/ZLh5twIUdu" +05/10/2018,Musicians,@KeithUrban,"RT @amazonmusic: ""He's the real deal."" @KeithUrban closes out his week guest hosting #SOTD w/ a track from @ericchurch! #JustAsk, ""Alexa, p…" +05/10/2018,Musicians,@KeithUrban,"RT @AppleMusic: When two of your faves collab. 🙌 +@KeithUrban talks working with @juliamichaels on #ComingHome. +Listen now to #GraffitiU: ht…" +05/09/2018,Musicians,@KeithUrban,A friendly reminder from Team KU: Beware of Keith Urban imposters on social media! 🚨 Tips on how to spot and report… https://t.co/ITvZtlkaGa +05/09/2018,Musicians,@KeithUrban,"☀ ""You gotta watch out for the shine blockers!"" ☀ +#WednesdayWisdom #MyWave +https://t.co/Ra3oLCU7av" +05/09/2018,Musicians,@KeithUrban,"RT @EMIMusicAU: Head down to Brekky Central this Friday, before 7am, for your chance to meet @KeithUrban. He'll be meeting fans on the red…" +05/08/2018,Musicians,@KeithUrban,Keith has two performances nominated for CMT Performance of the Year at the #CMTawards! 🏆 https://t.co/CONZdZmbUC https://t.co/UDFJhmTCqt +05/07/2018,Musicians,@KeithUrban,RT @cleanbandit: ty @KeithUrban for picking i miss you as @amazonmusic’s song of the day! #AskAlexa to play the song of the day to hear it… +05/07/2018,Musicians,@KeithUrban,"RT @amazonmusic: ""She is one of the great, great songwriters. Period."" @KeithUrban with the love for @taylorswift13! #JustAsk, ""Alexa, play…" +05/06/2018,Musicians,@KeithUrban,Back on #TexasTime 🎤 #iHeartCountry https://t.co/VpsdhTtGnG +05/06/2018,Musicians,@KeithUrban,"RT @bobbybonesshow: Don’t miss @KeithUrban performance coming up & he’s got a surprise collab you DON’T want to miss!!! + +watch live: https…" +05/06/2018,Musicians,@KeithUrban,"RT @iHeartRadio: TONIGHT! @LukeBryan, @KeithUrban and more take the stage at the #iHeartCountry Festival by @ATT! Watch now. +https://t.co/…" +05/05/2018,Musicians,@KeithUrban,We'll see you on the Plaza in August! 😎 @TODAYShow #KeithTODAY https://t.co/ntCD9dqBVr +05/05/2018,Musicians,@KeithUrban,"RT @Jason_Aldean: Thank you @KeithUrban for picking “You Make It Easy” as @amazonmusic’s Song of the Day! To check it out, just #AskAlexa “…" +05/05/2018,Musicians,@KeithUrban,The #iHeartCountry Festival starts TONIGHT! 🙌 Head over to @ATT at 8/7c to stream Keith performing new songs from… https://t.co/Y0JZ5fA85V +05/05/2018,Musicians,@KeithUrban,RT @TODAYshow: Here it is! The lineup for the Citi Concert Series! https://t.co/j6w3OH7OOQ +05/05/2018,Musicians,@KeithUrban,Can you feel it?! 🎶 Watch Keith perform #NeverCominDown from #GraffitiU on @LateNightSeth! https://t.co/Y5sv46KPtd +05/04/2018,Musicians,@KeithUrban,"#ComingHome is @AmazonMusic’s Song of the Day! 🎶 To check it out, just #AskAlexa “Play the Song of the Day.” #SOTD https://t.co/bsGAh3W3aw" +05/04/2018,Musicians,@KeithUrban,RT @LateNightSeth: Don’t miss @KeithUrban chatting with @SethMeyers and performing #NeverCominDown on #LNSM tonight! https://t.co/qOlM1UprOe +05/03/2018,Musicians,@KeithUrban,TONIGHT! • @LateNightSeth https://t.co/HYIHZngZHT +05/03/2018,Musicians,@KeithUrban,"RT @LateNightSeth: TONIGHT! Seth welcomes @KeithUrban and @iamstephbeatz! Plus, #ACloserLook! https://t.co/M1jsHAQFWd" +05/03/2018,Musicians,@KeithUrban,Hear Keith talk about the making of #ComingHome and working with @JuliaMichaels at his @iHeartRadio Album Release P… https://t.co/IOIwYYCPSL +05/03/2018,Musicians,@KeithUrban,".@DwightYoakam and @BrothersOsborne joined Keith on stage at @Stagecoach for a rockin' version of #FastAsYou! +https://t.co/dk3Sr4jChP" +05/03/2018,Musicians,@KeithUrban,Catch Keith performing songs from #GraffitiU on @LateNightSeth TONIGHT! 🎤 https://t.co/fmyNhnTDNC +05/02/2018,Musicians,@KeithUrban,RT @pandoramusic: Go to #GraffitiU with @KeithUrban as he works with a graffiti artist Troy Duff to bring his sound to life. Then listen to… +05/02/2018,Musicians,@KeithUrban,"RT @Spotify: Studio playdates with @KeithUrban sound like the best way to spend an afternoon 🙌 + +Watch the full episode on #HotCountry ⭐️ h…" +05/01/2018,Musicians,@KeithUrban,#ComingHome feat. @JuliaMichaels is on the #TheAListCountry Playlist on @AppleMusic! 🎶 Check it out:… https://t.co/JvY8AXDCfA +05/01/2018,Musicians,@KeithUrban,"RT @iHeartRadio: The iHeartRadio Artist Of The Week Is: @KeithUrban. Friday, the four-time Grammy winner dropped his 9th studio album, #Gra…" +05/01/2018,Musicians,@KeithUrban,Watch Keith perform songs from #GraffitiU on @JimmyKimmelLive TONIGHT at 11:35/10:35c! 🎤 https://t.co/ooXyx6YLDu +04/30/2018,Musicians,@KeithUrban,HUGE thx to @brothersosborne and @DwightYoakam for gracing our stage with your mythical mojo!!!!!! - KU 🎤… https://t.co/c38fHbumdC +04/29/2018,Musicians,@KeithUrban,#Stagecoach • 4.28.18 https://t.co/5KQ2rKgu80 +04/28/2018,Musicians,@KeithUrban,🙌 @STAGECOACH - IT IS GOIN DOWN TONIGHT!!!!!!!! - KU https://t.co/9gXD55uN9Q +04/28/2018,Musicians,@KeithUrban,Hey @barclayscenter... SO lookin forward to Oct 27 - it’s gonna be  OFF THE HOOK!!!!!!! - KU https://t.co/1PnPfJEYvF +04/27/2018,Musicians,@KeithUrban,LOS ANGELES • TONIGHT • FREE • 18+ https://t.co/wKFuUUWdfU +04/27/2018,Musicians,@KeithUrban,"RT @Spotify: ""You get a jeep! And you get a jeep! Everybody gets a jeep!"" Watch the full @KeithUrban episode on #HotCountry ⭐️ https://t.co…" +04/27/2018,Musicians,@KeithUrban,RT @Bose: Check out ‘Drop Top’ featuring @KassiAshton on @KeithUrban’s new album #GraffitiU. #QC35 II https://t.co/PHbMg1Kn2U https://t.co/… +04/27/2018,Musicians,@KeithUrban,"RT @AppleMusic: Eat. Sleep. Listen to @KeithUrban's new album. Repeat. #GraffitiU +https://t.co/wPpNQLRGQD" +04/27/2018,Musicians,@KeithUrban,RT @KassiAshton: ME ALL DAY HELLLOOOO #DROPTOP #GRAFFITIU @KeithUrban https://t.co/Z2BwWENDQA +04/27/2018,Musicians,@KeithUrban,Huge thanks to @Spotify for featuring #Horses from #GraffitiU on the #NewMusicFriday playlist! 🎶 Check it out:… https://t.co/8mS5qZxqJH +04/27/2018,Musicians,@KeithUrban,"RT @amazonmusic: NEW from @KeithUrban, get a hold of #GraffitiU! https://t.co/F8hGUWisvC #CountryHeat https://t.co/eM37JbmOau" +04/27/2018,Musicians,@KeithUrban,"RT @SIRIUSXM: Hear a special @KeithUrban performance this morning at 9am ET on @SXMTheHighway (Ch. 56)! +Click to listen now online and on t…" +04/27/2018,Musicians,@KeithUrban,#GraffitiU is finally here! 🎶 LISTEN: https://t.co/MCfsAhiCUv https://t.co/CqCW1G0jDJ +04/27/2018,Musicians,@KeithUrban,RT @TIDAL: 'Graffiti U' makes @KeithUrban's 9th studio album! Listen now on TIDAL: https://t.co/7XY2RP1HDd https://t.co/chzpcK2OUd +04/27/2018,Musicians,@KeithUrban,RT @lindsayell: When you are so excited for the new @keithurban album to come out.... you show up at #Walmart early.....#GraffitiU is now o… +04/26/2018,Musicians,@KeithUrban,"RT @RIAA: For 20 years, @KeithUrban has made #Platinum album after #Platinum album! Be sure to check out his latest, #GraffitiU, out TMRW #…" +04/26/2018,Musicians,@KeithUrban,#GraffitiU is available everywhere TOMORROW! 🙌 Which song are you most excited to hear? https://t.co/Ti285jep2H +04/26/2018,Musicians,@KeithUrban,LOS ANGELES • #GraffitiU https://t.co/szPyutHgLI +04/26/2018,Musicians,@KeithUrban,"Thank you, @iHeartRadio! #GraffitiU https://t.co/vUhwJ40WDU" +04/26/2018,Musicians,@KeithUrban,Watch LIVE as Keith celebrates the release of #GraffitiU with @iHeartRadio! 🎤 https://t.co/Y9Q8p2fZWk +04/26/2018,Musicians,@KeithUrban,#GraffitiU 🎤 https://t.co/Cx5030KTvl +04/25/2018,Musicians,@KeithUrban,"RT @iHeartRadio: Tonight we're celebrating @KeithUrban 's Album Release Party at 7PM PT / 10PM ET live from the @iHeartTheaterLA! + +Watch it…" +04/25/2018,Musicians,@KeithUrban,Let’s be lost and young. • #Horses feat. @LindsayEll • #GraffitiU out FRIDAY https://t.co/55cTKRilbG +04/24/2018,Musicians,@KeithUrban,Keith's new album #GraffitiU will be available everywhere FRIDAY! 🎤 https://t.co/MCfsAhiCUv https://t.co/6VbOnY3JAz +04/24/2018,Musicians,@KeithUrban,#ParallelLine • #SpotifyFansFirst • #GraffitiU https://t.co/9MEAsq6Su3 +04/24/2018,Musicians,@KeithUrban,"RT @TheEllenShow: I love @KeithUrban, and if you love him too, tell me why you should be here Thursday to see him perform live! keithurbano…" +04/23/2018,Musicians,@KeithUrban,RT @UMGNashville: Want a behind the scenes look at the making of @KeithUrban’s new album? Pre-order #GraffitiU in exclusive packages to get… +04/23/2018,Musicians,@KeithUrban,"RT @opry: #OpryMember @KeithUrban's new album #GraffitiU is out FRIDAY ... It's gonna be a good week! 🙌🙌 + +Pre-order the album 💿 here: https…" +04/23/2018,Musicians,@KeithUrban,"RT @NHL: The @PredsNHL are moving on to the Second Round and according to @KeithUrban, the city of Nashville is ready. #StanleyCup https://…" +04/22/2018,Musicians,@KeithUrban,Join Keith's email list and be the first to know about all things #GraffitiU and the #GraffitiUWorldTour! 📧 JOIN:… https://t.co/6PDNSMBrzU +04/22/2018,Musicians,@KeithUrban,"WE LOVE YOU PREDS! GOOD LUCK IN COLORADO!!!!! - KU +#StandWithUs @PredsNHL https://t.co/MqBBwDDM8F" +04/21/2018,Musicians,@KeithUrban,RT @iHeartRadio: We have your chance to celebrate @KeithUrban's #GraffitiU Album Release Party with us in the @iHeartTheaterLA on April 25!… +04/20/2018,Musicians,@KeithUrban,"Want to win a trip to Nashville to see the #GraffitiUWorldTour? 🎤 Stream, watch, and listen to earn your points for… https://t.co/WohZZZ6IMa" +04/19/2018,Musicians,@KeithUrban,Rock out to #ComingHome featuring @JuliaMichaels on @DigsterPlaylist's #CountryHits playlist on @AppleMusic! 🎶… https://t.co/9pcqLl4i6e +04/18/2018,Musicians,@KeithUrban,"""Yeah I know it's only one call away, but it's not the same..."" 🎶 #ComingHome @JuliaMichaels ✨… https://t.co/hjGqM2YggI" +04/17/2018,Musicians,@KeithUrban,We're celebrating the release of #GraffitiU with an @iHeartCountry Album Release Party at the @iHeartTheaterLA on A… https://t.co/cElRjunQYF +04/17/2018,Musicians,@KeithUrban,"RT @iHeartRadio: 🚨 @KeithUrban will be celebrating the release of his new album, #GraffitiU, with an @iHeartCountry Album Release Party at…" +04/16/2018,Musicians,@KeithUrban,"RT @ACMawards: And the winner for Vocal Event of the Year goes to... @KeithUrban and @CarrieUnderwood for “The Fighter"" #ACMawards https://…" +04/16/2018,Musicians,@KeithUrban,#ACMawards • #ComingHome • @JuliaMichaels https://t.co/RqbFZ6ngnf +04/15/2018,Musicians,@KeithUrban,Don't miss Keith and @JuliaMichaels performing #ComingHome at the #ACMawards TONIGHT at 8/7c on @CBS! https://t.co/f371NAN00d +04/14/2018,Musicians,@KeithUrban,Wishing @LorettaLynn a very happy birthday today! 🎂 #HappyBirthdayLoretta https://t.co/rUevvpUJ7H +04/14/2018,Musicians,@KeithUrban,At the iconic @CapitolRecords building in LA today and saw this in the hallway. Miss you Glen! - KU https://t.co/h5kE6swBfH +04/13/2018,Musicians,@KeithUrban,"The release of Keith's new album #GraffitiU is just 2 weeks away! 🎶 +Pre-order it in exclusive packages:… https://t.co/2hSg6H6id1" +04/11/2018,Musicians,@KeithUrban,JUST ANNOUNCED: @JuliaMichaels is joining Keith to sing #ComingHome at Sunday's @ACMawards! 🎤 https://t.co/R64dFypx9v +04/11/2018,Musicians,@KeithUrban,"RT @danceon: Serious question, are you thinking about the summer right now like we are? 😋#CountryMusic #YouCanDanceToCountry #StageCoach…" +04/09/2018,Musicians,@KeithUrban,RT @UMGNashville: .@KeithUrban's #GraffitiU is now available for pre-order. Get in on the action here: https://t.co/5OMer8PM86 https://t.co… +04/08/2018,Musicians,@KeithUrban,Hey Lindsay- can't wait for everyone to hear HORSES!!! And hey- we get to tour some too!!!!!! - KU https://t.co/UDGYWwiWiZ +04/08/2018,Musicians,@KeithUrban,"Ft. Lauderdale, FL • 4.7.18 • @FestivalTortuga https://t.co/wuzUaAfyBd" +04/06/2018,Musicians,@KeithUrban,The honor's all mine KA. You are THE REAL DEAL!!! - KU https://t.co/LGCMIkndmU +04/06/2018,Musicians,@KeithUrban,Pre-order #GraffitiU in exclusive packages and gain a first look at behind-the-scenes content in the Graffiti U Dig… https://t.co/a47AbxzIBV +04/06/2018,Musicians,@KeithUrban,PA & OH: The #GraffitiUWorldTour is coming to a city near you! 🎤 Tickets on sale TODAY: https://t.co/0hf0KmVUmq 🎟 https://t.co/TeYiQrdQ7V +04/06/2018,Musicians,@KeithUrban,TRACK LIST • GRAFFITI U • 4.27.18 https://t.co/wFRdeRvuJe +04/05/2018,Musicians,@KeithUrban,JUST ANNOUNCED: Keith's new album #GraffitiU will be available everywhere 4.27.18! 🎶 https://t.co/erYT9rRS8g +04/04/2018,Musicians,@KeithUrban,"Keith is playing the @GrandOleRager in Augusta, GA during #TheMasters TOMORROW, April 5th with Russell Dickerson &… https://t.co/neDD60QGZh" +04/04/2018,Musicians,@KeithUrban,"Likewise Russell....... on both!!!! - KU +@GrandOleRager https://t.co/1Cr8KTrRM5" +03/31/2018,Musicians,@KeithUrban,"Have you heard Keith's new single #ComingHome featuring @JuliaMichaels!? +🎶 https://t.co/yCieKtRDmj https://t.co/nteHHrigqw" +03/26/2018,Musicians,@KeithUrban,Last chance to get official merchandise from Keith's #ripCORDWorldTour! 🎸 On sale while supplies last:… https://t.co/wLNWMarbbm +03/25/2018,Musicians,@KeithUrban,"RT @AppleMusic: All the feels on #ComingHome from @KeithUrban x @imjmichaels. +Give it a listen. +https://t.co/EB1oganDYM" +03/24/2018,Musicians,@KeithUrban,"RT @TIDAL: #NowPlaying @KeithUrban's new song ""Coming Home"" on TIDAL: https://t.co/DsuJlPwqKQ https://t.co/lXLQfIrye0" +03/23/2018,Musicians,@KeithUrban,Check out #ComingHome on @AmazonMusic's #BrandNewMusic playlist! 🎧 https://t.co/Qk4DcjEEgv https://t.co/jRJulf9sLe +03/23/2018,Musicians,@KeithUrban,RT @festivaltortuga: Are you ready to Rock The Ocean?! By joining your favorite artists on the beach at #TortugaFest you're helping raise m… +03/23/2018,Musicians,@KeithUrban,"Keith is bringing the #GraffitiUWorldTour to a city near you! 🎤 +Tickets on sale TODAY: https://t.co/0hf0KmVUmq https://t.co/4PSMsuG5KI" +03/22/2018,Musicians,@KeithUrban,"Missed @SXSW? Check out Keith's conversation with @ScottLGoldman from The @GRAMMYMuseum! +https://t.co/lSlUF4jrDh" +03/22/2018,Musicians,@KeithUrban,"RT @Spotify: Nothin' feels like coming home, right @keithurban? Hear his new jam with @imjmichaels right here 👉 https://t.co/694KdTKcn4 htt…" +03/22/2018,Musicians,@KeithUrban,Keith is performing at @CountryMusic’s #CMAfest in support of the #CMAFoundation and music education in June! ☀… https://t.co/9ifOOl5CXx +03/21/2018,Musicians,@KeithUrban,"RT @etnow: Listen to @KeithUrban's collaboration with @imjmichaels, 'Coming Home'! https://t.co/0HrGRLDn92 https://t.co/uq0gsJ1uxd" +03/21/2018,Musicians,@KeithUrban,Check out the lyric video for #ComingHome on @Vevo! 🎶 https://t.co/1m3mIczEeo https://t.co/7sLJCTQiiT +06/30/2018,Musicians,@PaulMcCartney,"Paul during the recording of #EgyptStation at @AbbeyRoad, 2017 https://t.co/tgAfcxOAg8" +06/28/2018,Musicians,@PaulMcCartney,"Paul @AbbeyRoad during the recording of #EgyptStation, 2017 https://t.co/9Yi4VUV2Ph" +06/26/2018,Musicians,@PaulMcCartney,Paul during the recording of #EgyptStation at @AbbeyRoad 2017 https://t.co/MxlegiEwm3 +06/26/2018,Musicians,@PaulMcCartney,"RT @CapitolRecords: 🗣 All aboard, #Hollywood! + +Next stop: #EgyptStation. The journey begins September 7th 🎶 @PaulMcCartney https://t.co/De…" +06/25/2018,Musicians,@PaulMcCartney,'I Don't Know' taken from Paul's forthcoming album #EgyptStation. In stores 7th September. Listen / Download / Pre-… https://t.co/SpCH0JMtfx +06/25/2018,Musicians,@PaulMcCartney,"Paul during the recording of #EgyptStation @AbbeyRoad, November 2017 https://t.co/RWEtRQu5qf" +06/24/2018,Musicians,@PaulMcCartney,"""I saw you flash a smile"". Listen to Paul's new single 'Come On To Me' on @Spotify: https://t.co/J5CV5nJIsG https://t.co/cMVN6tNjqu" +06/23/2018,Musicians,@PaulMcCartney,"""I've got so many lessons to learn"". Listen to Paul's new single 'I Don't Know' on @Spotify:… https://t.co/3dDAriR7JW" +06/23/2018,Musicians,@PaulMcCartney,RT @YouTube: You need this. https://t.co/q3ny7VgDa4 https://t.co/NhCtqbwgkp +06/22/2018,Musicians,@PaulMcCartney,RT @diymagazine: .@PaulMcCartney talks new album 'Egypt Station' and working with @RyanTedder and @GregKurstin in an exclusive DIY intervie… +06/22/2018,Musicians,@PaulMcCartney,"RT @JKCorden: Ok, so here it is. Quite possibly the best #CarpoolKaraoke we’ve done so far. I hope you like it. I’ll never ever forget it.…" +06/21/2018,Musicians,@PaulMcCartney,'Come On To Me' taken from Paul's forthcoming album #EgyptStation. In stores 7th September. Listen / Download / Pre… https://t.co/DWXeNc7vyH +06/21/2018,Musicians,@PaulMcCartney,RT @BBC6Breakfast: LISTEN BACK to @matteveritt's extended chat with @PaulMcCartney - https://t.co/IYpUWUSDO8 https://t.co/BR9VYPpnxs +06/20/2018,Musicians,@PaulMcCartney,New album 'Egypt Station' arriving 7th September featuring singles ‘I Don’t Know’ and ‘Come On To Me'. Pre-order HE… https://t.co/ynIJUAFY94 +06/20/2018,Musicians,@PaulMcCartney,"RT @RadioX: TONIGHT. On the Evening Show. +@gordonsmart in conversation with the incredible @PaulMcCartney. +They talk new double A-side sing…" +06/20/2018,Musicians,@PaulMcCartney,"RT @BBC6Music: Woo! @PaulMcCartney speaks to @MattEveritt on the @BBC6Breakfast show, this Thursday from 8.30am. Not that anyone's getting…" +06/20/2018,Musicians,@PaulMcCartney,🎧 https://t.co/fD9898XWkE +06/19/2018,Musicians,@PaulMcCartney,Paul to release all-new double A-side single ‘I Don't Know’/‘Come On To Me’. Full details HERE!… https://t.co/qTHh9SsT8Q +06/18/2018,Musicians,@PaulMcCartney,#PaulMcCartney #EgyptStation https://t.co/40o6Mo81lB +06/18/2018,Musicians,@PaulMcCartney,https://t.co/351RbE9Agh +06/17/2018,Musicians,@PaulMcCartney,https://t.co/znKZ84KRH8 +06/17/2018,Musicians,@PaulMcCartney,https://t.co/ptpbhvghNt +06/16/2018,Musicians,@PaulMcCartney,https://t.co/3znWdt9yrF +06/15/2018,Musicians,@PaulMcCartney,https://t.co/XpyHOvKQtj +06/14/2018,Musicians,@PaulMcCartney,https://t.co/CwYXidsMnA +06/13/2018,Musicians,@PaulMcCartney,https://t.co/iLeL2UU45j +06/13/2018,Musicians,@PaulMcCartney,"RT @latelateshow: It’s happening! + +#CarpoolKaraoke with @PaulMcCartney premieres next week during our four nights in London! https://t.co/m…" +06/12/2018,Musicians,@PaulMcCartney,https://t.co/mZlAscFFq1 +06/11/2018,Musicians,@PaulMcCartney,https://t.co/hMdNSl36kw +06/10/2018,Musicians,@PaulMcCartney,https://t.co/TZ8VeKEv8f +06/08/2018,Musicians,@PaulMcCartney,I think it would be really nice to see this pregnant cow given a reprieve. She’s done nothing wrong. Join us if you… https://t.co/OaxF7qjCV3 +06/05/2018,Musicians,@PaulMcCartney,🌼#OTD in 1989 'Flowers in the Dirt' was released...🌼 What's your favourite track from the album? https://t.co/F46GGezPmE +06/03/2018,Musicians,@PaulMcCartney,"""It wasn’t like we were following a trend; we were in the trend..."" Paul talks about how @TheBeatles kept up with s… https://t.co/UyiipxrOjC" +06/02/2018,Musicians,@PaulMcCartney,#ICYMI Read the https://t.co/eEFPgd3GIu May newsletter HERE: https://t.co/n1OxusIoHw https://t.co/VuqOjM3DNM +05/31/2018,Musicians,@PaulMcCartney,Paul in Jamaica. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/bIDk50ctKk +05/30/2018,Musicians,@PaulMcCartney,"RT @ESA_History: Speaking of anniversaries, we see that congratulations are in order to Sir @PaulMcCartney, whose spacey titled #Wings albu…" +05/27/2018,Musicians,@PaulMcCartney,Ever wondered what happens backstage at Paul’s shows? Go behind-the-scenes with publicist Stuart Bell in his tour b… https://t.co/LfBIiPkjE0 +05/26/2018,Musicians,@PaulMcCartney,"#ICYMI Learn more about 'Eat At Home', taken from 'Thrillington' HERE: https://t.co/bSVwc5ck9g + +Get your reissue co… https://t.co/t61GkCuKel" +05/25/2018,Musicians,@PaulMcCartney,Did you know the album artwork for ‘Chaos and Creation in the Backyard’ features Paul’s name styled as an ambigram.… https://t.co/6hru1RQWz2 +05/23/2018,Musicians,@PaulMcCartney,🎧 https://t.co/UbcFyxb7Lg +05/18/2018,Musicians,@PaulMcCartney,"'NEW', 'Chaos and Creation in the Backyard', 'Wings Greatest' and 'Thrillington' are back in stores today in single… https://t.co/vFjirEouJW" +05/17/2018,Musicians,@PaulMcCartney,🤔 #ThrowbackThursday #TBT Photo by Linda McCartney #Thrillington https://t.co/KVEc7u1pHZ +05/16/2018,Musicians,@PaulMcCartney,"The story of ‘Eat At Home’ has had a fun telling, starting off life as a co-written song on Paul and Linda McCartne… https://t.co/Y8zdnvKeT7" +05/14/2018,Musicians,@PaulMcCartney,"""But darling, doesn't EVERYONE know Percy Thrillington?"" +In stores 18th May: https://t.co/e9bgu55aC4 https://t.co/MEsuUHMv5P" +05/13/2018,Musicians,@PaulMcCartney,Fond memories of my Mum. Happy Mother’s Day to all you Mothers! https://t.co/hEnEQRRIQ2 +05/12/2018,Musicians,@PaulMcCartney,“I'm the man on the flaming pie” What are your favourite songs from Paul’s 1997 album? #PaulMcCartney https://t.co/MSEEBENsBX +05/10/2018,Musicians,@PaulMcCartney,"""Bit flat, mate?"" #WingsGreatest #ThrowbackThursday #TBT +In stores 18th May: https://t.co/e9bgu55aC4 https://t.co/GzQRRbbG0a" +05/07/2018,Musicians,@PaulMcCartney,"""With A Little Love, We Can Lay It Down / Can't You Feel The Town Exploding?..."" +Available for the first time in li… https://t.co/pCaClzhgVU" +05/04/2018,Musicians,@PaulMcCartney,"This week in 1973, Wings released 'Red Rose Speedway' 🌹 What are your favourite songs from the album? https://t.co/05RFi8h6wJ" +05/04/2018,Musicians,@PaulMcCartney,Paul at Buckingham Palace earlier today where he was made a Companion of Honour by the Queen for services to music.… https://t.co/Il5DZ8O0zC +05/03/2018,Musicians,@PaulMcCartney,"Wrecked Car. Portugal, 1969 #ThrowbackThursday #TBT +One of 63 prints by Linda McCartney, donated by Paul and famil… https://t.co/LGgVsM8X3k" +05/02/2018,Musicians,@PaulMcCartney,"""I often think 'How did @thebeatles get together?'"" Does Paul believe in destiny or fate? Find out HERE:… https://t.co/QTuau6UdSU" +05/01/2018,Musicians,@PaulMcCartney,"Austin, Paul is coming to see you in October at #ACLFest! Get your tickets HERE: https://t.co/glEFCMAIS2 https://t.co/r9uqtTpwdM" +05/01/2018,Musicians,@PaulMcCartney,May your #MayDay be the best! https://t.co/6Xg693AIdz +04/30/2018,Musicians,@PaulMcCartney,"""With a little luck we can help it out / We can make this whole damn thing work out""... Dive a little deeper into '… https://t.co/8xDze10hJm" +04/27/2018,Musicians,@PaulMcCartney,"RT @virgisketch: Paul McCartney 🌹 + +portrait made with Prismacolor coloured pencils on Fabriano paper. + +#whatsnewpaul #PaulMcCartney #fanart…" +04/27/2018,Musicians,@PaulMcCartney,RT @treg817: #painting I did of @PaulMcCartney #FanArtFriday #beatles #macca #bass #guitar #wings #whatsnewpaul https://t.co/v6fl2iUltw +04/27/2018,Musicians,@PaulMcCartney,"RT @virgisketch: Paul McCartney ❤️ I drew it at school 😂 +#whatsnewpaul #PaulMcCartney #drawing #FanArtFriday #fanart https://t.co/rKBIT3eQ4K" +04/26/2018,Musicians,@PaulMcCartney,"Paul, Linda and Denny, 1977. Photo by Clive Arrowsmith #ThrowbackThursday #TBT #Wings https://t.co/AHrS6alY0g" +04/25/2018,Musicians,@PaulMcCartney,"""Looking through the backyard of my life / Time to sweep the fallen leaves away..."" Dive into 'Promise To You Girl'… https://t.co/yuAAU3onMa" +04/23/2018,Musicians,@PaulMcCartney,Happy George’s Day! #StGeorgesDay https://t.co/fqQYIGhHxX +04/22/2018,Musicians,@PaulMcCartney,Happy #EarthDay! There is a simple but significant way to help protect the planet and all its inhabitants and it st… https://t.co/ga0vedIiV4 +04/22/2018,Musicians,@PaulMcCartney,Happy #EarthDay! Help save it. 🌏 https://t.co/LbFXqbEIkQ +04/19/2018,Musicians,@PaulMcCartney,'Creating Chaos at @AbbeyRoad.' Photo by Richard Haughton #ThrowbackThursday #TBT https://t.co/wchG7F9Bju +04/18/2018,Musicians,@PaulMcCartney,"""But the day will come / Jenny Wren will sing / When this broken world / mends its foolish ways..."" +'Chaos and Crea… https://t.co/QNZFfe3OyH" +04/17/2018,Musicians,@PaulMcCartney,Remembering Linda with love today. Beautiful memories. https://t.co/sfREUMl0ey +04/16/2018,Musicians,@PaulMcCartney,"""On my way to work / But all the time I thought of you..."" #MondayMotivation 👣 💞 +Listen to 'On My Way To Work' HERE… https://t.co/DVOwwhlBhv" +04/13/2018,Musicians,@PaulMcCartney,#FanArtFriday by Instagram user eszterbudavari_art! Share your #fanart with the hashtag #whatsnewPaul! 🎨😎 https://t.co/lXmQhZ7eZz +04/12/2018,Musicians,@PaulMcCartney,Dive into Paul's track 'On My Way To Work' taken from his album 'New'... https://t.co/5FHOt40sQe....… https://t.co/iFyUu8ddqT +04/09/2018,Musicians,@PaulMcCartney,#ICYMI Read the https://t.co/eEFPgd3GIu March newsletter HERE: https://t.co/PMdCCn9XiO https://t.co/5PVoipKFJb +04/06/2018,Musicians,@PaulMcCartney,RT @THEmodmother: my #drawing of @PaulMcCartney for #FanArtFriday from a photo by @BaileyQuotes #whatsnewpaul #pencil #art #portrait htt… +04/06/2018,Musicians,@PaulMcCartney,"RT @Kunigami_Maaji: Love you @PaulMcCartney !! +#whatsnewPaul +@MJKIM_lalala Thank you for a wonderful photo !! https://t.co/vWYBLQuepS" +04/05/2018,Musicians,@PaulMcCartney,50 years ago on April 4th Dr. King’s life was cut short but his dream still lives. My dream is for everyone to live… https://t.co/Elkm9rOXni +04/05/2018,Musicians,@PaulMcCartney,The 'Chaos and Creation in the Backyard' album cover featured this photo taken by Paul's brother Mike at their home… https://t.co/GxcTs3v1c4 +04/04/2018,Musicians,@PaulMcCartney,"""I never knew what I could be / What I could do / Then we were new..."" +Available for the first time in limited edit… https://t.co/CMmftA2vzP" +04/01/2018,Musicians,@PaulMcCartney,Have a glorious Easter! #HappyEaster https://t.co/HAC1O1oslQ +04/01/2018,Musicians,@PaulMcCartney,Easter tweeting greeting! https://t.co/oiju9y4vh0 +03/29/2018,Musicians,@PaulMcCartney,'NEW' Abbey Road Recording Sessions. Photo by @maryamccartney #ThrowbackThursday #TBT https://t.co/hhsuejEKMD +03/28/2018,Musicians,@PaulMcCartney,"Paul will reissue four catalogue titles on 18th May via MPL/Capitol: 'NEW,' 'Chaos and Creation in the Backyard,' '… https://t.co/1fLVQ5De8l" +03/23/2018,Musicians,@PaulMcCartney,#FanArtFriday by @Instagram user babicheva_lerP ! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/I3ofshFXtY +03/22/2018,Musicians,@PaulMcCartney,"On the Bakerloo Line, London. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/oPGFl1GnZZ" +03/21/2018,Musicians,@PaulMcCartney,🌼 I’d rather be listening to McCartney 🌼 Listen to your favourite Paul McCartney songs on @Spotify:… https://t.co/NLPZg6BaHr +03/20/2018,Musicians,@PaulMcCartney,#InternationalDayOfHappiness https://t.co/NsluVcwyMr +03/20/2018,Musicians,@PaulMcCartney,Which song makes you feel the happiest? 😁 #InternationalDayOfHappiness +03/19/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: “What we’re doing with #MeatFreeMonday is urging people to just try it, because it will make a difference if the idea s…" +03/17/2018,Musicians,@PaulMcCartney,Go green on St Paddy’s Day! #StPatricksDay https://t.co/wujlCH90gY +03/16/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagram user moixonada ! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/okZ1dcxwO5 +03/16/2018,Musicians,@PaulMcCartney,"RT @ShineMsd: OUR SONG SHINE, which was performed live at the @CNN Town Hall, is now streaming everywhere! All proceeds will go to #ShineMS…" +03/15/2018,Musicians,@PaulMcCartney,"The McCartney's visit to East Hampton. New York, 1975 #ThrowbackThursday #TBT https://t.co/MPXDAEhOoq" +03/12/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: ""Nobody’s forcing anyone to do anything; you just try one day meat free, because it’s a good idea..."" Read @PaulMcCartn…" +03/12/2018,Musicians,@PaulMcCartney,Paul on Ken Dodd... https://t.co/ytd8SyRtip +03/11/2018,Musicians,@PaulMcCartney,Fond memories of my Mum. Happy Mother’s Day to all you Mothers! https://t.co/sKl5D94D9m +03/09/2018,Musicians,@PaulMcCartney,Paul playing guitar at home in London. Photo by Linda McCartney #FlashbackFriday https://t.co/NPtASvvkVk +03/08/2018,Musicians,@PaulMcCartney,"To all the women in my life. Happy International Women’s Day! You go, girls! #IWD2018 https://t.co/eLStqkbnpM" +03/07/2018,Musicians,@PaulMcCartney,“How many days will the wet weather last?” Download exclusive audio and other treats HERE! https://t.co/ZWME3UCzjq https://t.co/VDrYHD7zPN +03/05/2018,Musicians,@PaulMcCartney,#ICYMI Paul describes how he overcomes the effects of jet lag... https://t.co/2IULuw4eLx https://t.co/81o0SFX5HW +03/02/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagramuser https://t.co/XqWQ1q853V! Share your #fanart with the hashtag #whatsnewPaul! 🎨 https://t.co/YTX5K5JCsg +03/01/2018,Musicians,@PaulMcCartney,#ICYMI Catch up on all the latest from https://t.co/eEFPgd3GIu in February's newsletter: https://t.co/OXofXSJzK6 https://t.co/5bX0FVxOz0 +03/01/2018,Musicians,@PaulMcCartney,Paul in Nashville 😎 Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/Yys4PLO33T +02/28/2018,Musicians,@PaulMcCartney,"Paul answered, 'The Long and Winding Road.' What question do you think he was asked? Find out HERE:… https://t.co/fGclSvZHlP" +02/25/2018,Musicians,@PaulMcCartney,I just saw this great video that @WarChildUK have produced. They do such great work which is needed these days more… https://t.co/qXY74zsx1P +02/25/2018,Musicians,@PaulMcCartney,Happy Birthday Georgie. Wonderful memories. https://t.co/JklMJ79Zeo +02/23/2018,Musicians,@PaulMcCartney,RT @DarkSweetSadie: #drawing #fanartSaturday🌸 #PaulMcCartney #whatsnewpaul https://t.co/r7IbDxLjOL +02/22/2018,Musicians,@PaulMcCartney,Paul in Scotland. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/oc9tA52AEY +02/21/2018,Musicians,@PaulMcCartney,RT @MeatFreeMonday: #NowPlaying on #MeatFreeMusic: Let Me Spring Roll It – @PaulMcCartney 💚🎶🌿 https://t.co/PGcXBNzUwB +02/19/2018,Musicians,@PaulMcCartney,"“Someone's knocking at the door, somebody's ringing the bell. Do me a favour, open the door and let 'em in” Sign up… https://t.co/qdzIaSXrjL" +02/15/2018,Musicians,@PaulMcCartney,"Paul in London, 1969. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/UbUjrTROKp" +02/14/2018,Musicians,@PaulMcCartney,"“And she was right, this love of mine. My Valentine...” ❤️🌹 +Send Paul's song 'My Valentine' along with your own per… https://t.co/KmPeDwtK3t" +02/14/2018,Musicians,@PaulMcCartney,All the love in the world on Valentine's Day. Have a great one!🌹#14feb https://t.co/QCV0K7kvRx +02/13/2018,Musicians,@PaulMcCartney,Enjoy your pancakes! Happy Mardi Gras! 🙂 https://t.co/AAvshA3pra +02/12/2018,Musicians,@PaulMcCartney,If you had the chance to ask Paul one question - what would it be? 🤔 https://t.co/YszD6AuDlj +02/11/2018,Musicians,@PaulMcCartney,Explore a selection of Paul's lesser-known tracks in the online series 'Sticking Out Of My Back Pocket' 🧐 ...… https://t.co/V1C5zg6B6E +02/08/2018,Musicians,@PaulMcCartney,"In the bath. London, 1969. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/f3RfzZwdgX" +02/06/2018,Musicians,@PaulMcCartney,Congratulations to all of us on the 100th anniversary of the Suffragette movement. Amazing to think that #100years… https://t.co/GXx6qH05fE +02/04/2018,Musicians,@PaulMcCartney,"""We asked a group of 100 people: What is Paul’s favourite American TV show?"" Find out the answer in this month’s 'Y… https://t.co/ajvudpofAj" +02/03/2018,Musicians,@PaulMcCartney,"“A love so fine, My Valentine” ❤️🌹 https://t.co/zPTDdOfg9g https://t.co/i97sYqnMms" +02/02/2018,Musicians,@PaulMcCartney,#FanArtFriday by @Instagram user _charlizart! Submit your #fanart with the hashtag #whatsnewPaul on Twitter and Ins… https://t.co/5tEE7EOHRd +02/01/2018,Musicians,@PaulMcCartney,Paul at The 100 Club in 2010 #ThrowbackThursday #TBT #IVW18 https://t.co/9tnWs1WTrA +01/31/2018,Musicians,@PaulMcCartney,Hiya 2018 👋 Find out about Paul's favourite binge-worthy American TV shows and go behind-the-scenes of his… https://t.co/LFctaVEj9E +01/28/2018,Musicians,@PaulMcCartney,#ICYMI Read Paul's publicist Stuart Bell's touring diary 'For Whom The Bell Tells - Australia and New Zealand':… https://t.co/Mj8O2SoTTI +01/26/2018,Musicians,@PaulMcCartney,#FanArtFriday by @instagram user henrique_marinelli! Submit your #fanart with the hashtag #whatsnewPaul! https://t.co/stv2gacoSW +01/25/2018,Musicians,@PaulMcCartney,#ThrowbackThursday #TBT🕺 https://t.co/PjOrpcOHvi +01/24/2018,Musicians,@PaulMcCartney,A note from Paul about the work of @AustMarConsSoc and the fight for our reef... https://t.co/8IZs61ZnjS https://t.co/QveVrZVaHN +01/22/2018,Musicians,@PaulMcCartney,Paul's publicist Stuart Bell shares his wonderful experiences from Australia and New Zealand in the latest instalme… https://t.co/6CWLJTpf5b +01/18/2018,Musicians,@PaulMcCartney,"Paul. Venice, 1976. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/M9Wa6FxwHV" +01/17/2018,Musicians,@PaulMcCartney,#HumpDay remedy: https://t.co/VbzWuFWYZf https://t.co/OREaJueGiD +01/15/2018,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: ""We love the way @ArchersMark has captured the excitement of Meat Free Monday as well as the variety of colours and fla…" +01/14/2018,Musicians,@PaulMcCartney,Don't miss the last few days of the winter sale... https://t.co/uMyqh10Qrq https://t.co/JLr7Bi0feC +01/13/2018,Musicians,@PaulMcCartney,Is your favourite song on the 'Best Of' Paul McCartney @Spotify playlist? Listen HERE: https://t.co/KBsVzoPjpf https://t.co/fuR6SA9HJZ +01/12/2018,Musicians,@PaulMcCartney,"#FanArtFriday by Instagram users rachxnaomi, u.ndreamlike, maryamtdraws and https://t.co/XqWQ1q853V! Submit your… https://t.co/Zg7zQh8ycN" +01/11/2018,Musicians,@PaulMcCartney,Paul during the orchestral sessions for the ‘Thrillington’ album in New York #ThrowbackThursday #TBT… https://t.co/YXlSrMDzb5 +01/10/2018,Musicians,@PaulMcCartney,What song would you most like to see Paul perform live? Listen to the Paul McCartney Live @Spotify playlist HERE:… https://t.co/neBmtuLOS7 +01/06/2018,Musicians,@PaulMcCartney,Check out the winter sale HERE: https://t.co/uMyqh10Qrq https://t.co/Wf6Evj0Nhk +01/05/2018,Musicians,@PaulMcCartney,Live and Let's Diet #MakeASongLessInteresting +01/04/2018,Musicians,@PaulMcCartney,"Paul outside Trident Studios, London, 1968. Photo by Linda McCartney #ThrowbackThursday #TBT https://t.co/E0mnbMb40A" +01/03/2018,Musicians,@PaulMcCartney,"RT @UMG: Complete your @PaulMcCartney collection with the first 8 Paul McCartney Archive Collection titles, available on 180g black vinyl,…" +01/02/2018,Musicians,@PaulMcCartney,#ICYMI Read the December newsletter HERE: https://t.co/qmGKfwlEOE https://t.co/HUyp7UoUxe +01/01/2018,Musicians,@PaulMcCartney,"""Happy New Year! Should auld acquaintance be forgot... +I hope that everyone has a really brilliant New Year. And th… https://t.co/463bSJW3vp" +12/30/2017,Musicians,@PaulMcCartney,Huge congrats Sir Ringo! Sir Richard Starkey has a nice ring to it. Best drummer best pal! X Paul https://t.co/ew5PuxhEv1 +12/29/2017,Musicians,@PaulMcCartney,#ICYMI Download the Club Sandwich Quiz HERE! https://t.co/z1nXrO5KIw https://t.co/TA0tIFjGiL +12/26/2017,Musicians,@PaulMcCartney,There are 31 key moments from Paul's year hidden in our 2017 wordsearch. 🎄How many can you find? Download HERE:… https://t.co/pRPHZyzPRP +12/25/2017,Musicians,@PaulMcCartney,Happy Chrissie to y'all! I hope everyone has a really wonderful Christmas and has a great time with their loved one… https://t.co/OJSkqmQ3Yk +12/23/2017,Musicians,@PaulMcCartney,Paul tells us about his all-time best Christmas and shares his plans for 2018 in a special edition of 'You Gave Me… https://t.co/9R3GV325ik +12/22/2017,Musicians,@PaulMcCartney,"#FanArtFriday by Instagram users memeleine and halord_lalala, submit your #fanart with #whatsnewPaul! https://t.co/KwX7mB4dlm" +12/22/2017,Musicians,@PaulMcCartney,Find out which song I chose as my most precious childhood music memory for @HopeandHomes HERE:… https://t.co/b5hM3mf2kD +12/21/2017,Musicians,@PaulMcCartney,Can you spot the visual clues to 75 of Paul's song titles? #ThrowbackThursday #TBT https://t.co/z1nXrO5KIw https://t.co/yDCVlqyYPi +12/19/2017,Musicians,@PaulMcCartney,"One song, eight albums! Can you match the song to the album? Colour vinyl in stores now: https://t.co/2glcBidVDy https://t.co/DiysP8DV7z" +12/19/2017,Musicians,@PaulMcCartney,Get in the Christmas spirit with #HolidaysRule Vol. 2! 🎄Listen now: https://t.co/dWhOoNYTvQ https://t.co/95VTEq1JY0 +12/17/2017,Musicians,@PaulMcCartney,"""The party's on, the feeling's here"" 🎅🏼 https://t.co/6pV8QTjggt https://t.co/zKawDatnda" +12/14/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: 'Drive My Car'🚗 Please check your inbox to find out whether you've… https://t.co/Li7tzD0oSt +12/14/2017,Musicians,@PaulMcCartney,"Memories of Mexico! #ThrowbackThursday #TBT +Paul's publicist Stuart Bell shares some of Paul's fantastic experienc… https://t.co/LOWh3JWjIr" +12/14/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul #OneOnOne in Auckland 16th December by answering the following question: Paul ope… https://t.co/Ui0WixNWpD +12/14/2017,Musicians,@PaulMcCartney,Lovin NZ. Been a long time! x 🇳🇿 https://t.co/3K8j82ISeU +12/13/2017,Musicians,@PaulMcCartney,"'The party's on, the spirit's up...'🎄 Christmas merchandise available now: https://t.co/uMyqh10Qrq https://t.co/NT78gI6AfR" +12/13/2017,Musicians,@PaulMcCartney,Up on Sydney Harbour Bridge! Last day in Oz. Had a great time. Thanks! 🇦🇺 https://t.co/zZu6WvBuyk +12/12/2017,Musicians,@PaulMcCartney,Have the happiest of Hanukkahs! #HappyHanukkah https://t.co/tJbSXwKmw5 +12/11/2017,Musicians,@PaulMcCartney,Let us know if you're heading to see Paul's second show @qudosbankarena this evening and don't forget to use the… https://t.co/CQ89rgXoye +12/11/2017,Musicians,@PaulMcCartney,Rocking with Kyles in Syd 🇦🇺#oneonone https://t.co/5Vpd0ZnZC6 +12/11/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: The New World Tour. Please check your inbox to find out whether you… https://t.co/Xok28W280o +12/10/2017,Musicians,@PaulMcCartney,We’ve heard that the 1972 Wings tour bus is back on the road in the UK. Have info on this? Send us a DM! https://t.co/IZ7DUwZNiB +12/10/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul play #OneOnOne in Sydney 11th December by answering the following question: Paul… https://t.co/QgaLGyI4Jf +12/09/2017,Musicians,@PaulMcCartney,Take a look at my daughter Mary’s limited edition silk scarves and write Santa a note! https://t.co/av4wqX59nB https://t.co/56dV7xytlu +12/08/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: 1975! Please check your inbox to find out whether you've won a pair… https://t.co/ZZlpxsXtcb +12/07/2017,Musicians,@PaulMcCartney,Paul’s forthcoming #OneOnOne show in Brisbane will be his first solo performance in the city... #ThrowbackThursday… https://t.co/ifkhhL6OlL +12/07/2017,Musicians,@PaulMcCartney,Paul spoke with @zanrowe on Australia’s @triplej earlier this week: https://t.co/WkoDTGgbSp #OneOnOne https://t.co/3fujbQkVkL +12/07/2017,Musicians,@PaulMcCartney,Win a pair of tickets to see Paul play #OneOnOne in Brisbane 9th December by answering the following question: In w… https://t.co/Cd4wmzHiGH +12/06/2017,Musicians,@PaulMcCartney,RT @davidwalliams: Sir @PaulMcCartney paying tribute to @GeorgeHarrison by singing ‘Something’ https://t.co/MyapnsHXR0 +12/06/2017,Musicians,@PaulMcCartney,"RT @Melbourne: Two epic sell-out shows @aamipark, thank you Sir @PaulMcCartney. Love us #oneonone https://t.co/XIjaUimN79" +12/06/2017,Musicians,@PaulMcCartney,RT @frontiertouring: Just a few of you here at @AAMIPark tonight Melbourne! #OneOnOne @PaulMcCartney https://t.co/QhMHZDh31O +12/06/2017,Musicians,@PaulMcCartney,RT @AAMIPark: Seriously!!! @PAULMCCARTNEY is HERE!!!! 🙌 #AAMIPark #OneOnOne https://t.co/lqgr8zkXxy +12/05/2017,Musicians,@PaulMcCartney,Listen to Paul talk in-depth about five songs from his catalogue to @zanrowe on Australia’s @triplej Take 5 tomorro… https://t.co/FulutXp88b +12/04/2017,Musicians,@PaulMcCartney,Consider donating to @1010 and @NRDC at https://t.co/S8Nx2mb4h6 to help defend our planet from climate change and y… https://t.co/SjgbqTAjOl +12/04/2017,Musicians,@PaulMcCartney,The answer to yesterday's competition question: Sidney Myer Music Bowl! Please check your inbox to find out whether… https://t.co/c72pPUeVTj +12/03/2017,Musicians,@PaulMcCartney,Win tickets to see Paul play in Melbourne on 5th December by answering the following question: Name the Melbourne v… https://t.co/D0s3YIMdgV +12/03/2017,Musicians,@PaulMcCartney,Warm up by the fire with the #HolidaysRule Vol. 2 Yule Log video for 'Wonderful Christmastime'🎄https://t.co/95VTEq1JY0 +12/02/2017,Musicians,@PaulMcCartney,Bagpipes of peace in Perth #oneonone 🇦🇺 https://t.co/XhxUKp2kbg +11/30/2017,Musicians,@PaulMcCartney,"McCartney Recording Session, 1970. Photo by LindaMcCartney #ThrowbackThursday #TBT https://t.co/O9gUb6Fq3e" +11/28/2017,Musicians,@PaulMcCartney,“Help me to learn / Songs of joy instead of / Burn baby burn / Won’t you show me how to play / The pipes of peace..… https://t.co/qXxiZE6yfR +11/27/2017,Musicians,@PaulMcCartney,Climate change is a real issue and no effort is too small when it comes to protecting and preserving our planet. A… https://t.co/7WNu3Clt8i +11/24/2017,Musicians,@PaulMcCartney,Getting really excited about returning to Australia and New Zealand. Can’t wait to rock out with our Aussie and Kiw… https://t.co/UXVAjAmxxU +11/23/2017,Musicians,@PaulMcCartney,Happy Thanksgiving! Thanks for the support. Paul x https://t.co/ekF8pVvtoN +11/21/2017,Musicians,@PaulMcCartney,"""Take it away / Want to hear you play / Till the lights go down / Take it away / Don't you want to stay / Till ther… https://t.co/Q13CO0yoS1" +11/21/2017,Musicians,@PaulMcCartney,Don’t forget to support your local record store this Saturday and be part of the #ShopSmall movement founded by our… https://t.co/cOJWqKOkRI +11/19/2017,Musicians,@PaulMcCartney,"""You want a love to last forever / One that will never fade away / I want to help you with your problem / Stick aro… https://t.co/o8FZjJcQwq" +11/17/2017,Musicians,@PaulMcCartney,The first eight Archive Collection titles are available in stores or online today in limited edition 180g coloured… https://t.co/m49fwdP0fP +11/16/2017,Musicians,@PaulMcCartney,“Some people want to fill the world with silly love songs / and what’s wrong with that? I’d like to know cos here I… https://t.co/vg6p30RXN8 +11/14/2017,Musicians,@PaulMcCartney,"""A good friend of mine / Follows the stars – Venus and Mars / are alright tonight..."" What’s your favourite song fr… https://t.co/KrqGdrLa9D" +11/13/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: Be inspired to protect the planet from climate change! Start today with just #OneDayAWeek #MeatFreeMonday https://t.co/… +11/12/2017,Musicians,@PaulMcCartney,"""Well, the rain exploded with a mighty crash, As we fell into the sun..."" What’s your favourite song from the 'Band… https://t.co/0PBYCpVU2e" +11/10/2017,Musicians,@PaulMcCartney,"""Ram on, give your heart to somebody soon..."" What’s your favourite song from the 'RAM' album? #FlashbackFriday Com… https://t.co/tZGGQjSXPU" +11/10/2017,Musicians,@PaulMcCartney,"#FanArtFriday by @Instagram users https://t.co/pMr11odDsT, marmalade_skies_art_, izzy.ferraro and aljeensane! Share… https://t.co/c3bkjrd4Ug" +11/09/2017,Musicians,@PaulMcCartney,"When you see it… #ThrowbackThursday #TBT +What’s your favourite song from the 'McCartney' album? Complete your coll… https://t.co/bDKHHle06m" +11/08/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: Watch our new short film featuring @PaulMcCartney @maryamccartney @stellamccartney #EmmaStone and @WoodyHarrelson and t… +11/07/2017,Musicians,@PaulMcCartney,RT @MeatFreeMonday: #COP23 starts today! See why diet plays such a huge rule in #climatechange and watch our new documentary short HERE: ht… +11/06/2017,Musicians,@PaulMcCartney,Taken at the launch of @MeatFreeMonday's new documentary short #OneDayAWeek @lilycole @JoannaLumley Watch it HERE:… https://t.co/PQlPPWIesa +11/06/2017,Musicians,@PaulMcCartney,RT @GaryBarlow: An extremely important cause ! #MeatFreeMonday #OneDayAWeek https://t.co/u2pipO5R7D +11/06/2017,Musicians,@PaulMcCartney,RT @rickygervais: Watch #MeatFreeMonday’s short film narrated by @PaulMcCartney and go meat free #OneDayAWeek https://t.co/csfQgSpMqH +11/05/2017,Musicians,@PaulMcCartney,Happy Bonfire Night! 🔥 https://t.co/0CISQGgQs3 +11/05/2017,Musicians,@PaulMcCartney,Great fun rocking out last night with my friend @StevieVanZandt and his band at @RoundhouseLDN - Welcome to Britain guys 🇬🇧 +11/03/2017,Musicians,@PaulMcCartney,"RT @MeatFreeMonday: Watch #MeatFreeMonday’s new documentary short #OneDayAWeek with the McCartney family, Woody Harrelson and Emma Stone ht…" +06/29/2018,Musicians,@ladygaga,RT @THWofD: Cynthia Germanotta (@momgerm) explains what she learned about #mentalhealth from @ladygaga and why the @BTWFoundation has teame… +06/24/2018,Musicians,@ladygaga,#Pride Dance for your life. #equality https://t.co/8WZIHGUuMf +06/24/2018,Musicians,@ladygaga,#HappyPrideMonth #pride #equality https://t.co/lq5kjeGQs2 +06/24/2018,Musicians,@ladygaga,I love the lgbtq 🏳️‍🌈 community more than I can say. So I’ll sing it instead. Forever. And that’s a NY promise. One… https://t.co/CaojJolSxD +06/24/2018,Musicians,@ladygaga,HAPPY PRIDE THIS IS SUCH A WONDERFUL TIME TO CELEBRATE https://t.co/ioplYXfFZO +06/24/2018,Musicians,@ladygaga,"Loved performing and watching @itstonybennett sing last night. He’s a dream. That’s showbiz, baby! https://t.co/8YmhwIr07d" +06/22/2018,Musicians,@ladygaga,Untitled Original 11383 John Coltrane WOW 🎷🎼 +06/21/2018,Musicians,@ladygaga,RT @Variety: Exclusive Interview: @ladygaga on MTV documentary win and reinventing herself through the pain https://t.co/87R9pZmfiq https:/… +06/19/2018,Musicians,@ladygaga,So happy that #GagaFiveFootTwo won Best Music Documentary at the #MTVAwards! Thank u Little Monsters & @MTV!! 😘 https://t.co/Hba41WNgzM +06/17/2018,Musicians,@ladygaga,"RT @AMENARTPOP: 7 years ago today, Lady Gaga performed on The Paul O'Grady Show in London, UK. https://t.co/JiL7Q54jdg" +06/11/2018,Musicians,@ladygaga,"RT @allyslays38: I'm beautiful in my way +'Cause God makes no mistakes +I'm on the right track, baby +I was born this way +Don't hide yourself…" +06/11/2018,Musicians,@ladygaga,"My mother and I, as well as the whole @BTWFoundation wish you a HAPPY PRIDE !!! 🎉🌈💕 https://t.co/mIz0qVbyje" +06/06/2018,Musicians,@ladygaga,"It’s a dream come true and an honor to be a part of this incredible movie. Bradley's ability as a director, actor a… https://t.co/cgL9ROMGFn" +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Lady Gaga. #AStarIsBorn https://t.co/pYtRPed2bv +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Bradley Cooper. #AStarIsBorn https://t.co/JMAhnjpxGL +06/06/2018,Musicians,@ladygaga,RT @starisbornmovie: Bradley Cooper & Lady Gaga in #AStarIsBorn. In theaters October 5. https://t.co/03kSXHkoOF +06/05/2018,Musicians,@ladygaga,"RT @LadyGagaUpdates: Exactly 9 years ago today, Lady Gaga released the epic music video for ""Paparazzi"". It was directed by Jonas Åkerlund…" +06/02/2018,Musicians,@ladygaga,"RT @gagasyuyi: Lady Gaga 6 years ago: ""#HappyBirthdayMarilyn They'll never take our blonde hair and lipstick."" 💋 https://t.co/2QEDx7sRc3" +05/30/2018,Musicians,@ladygaga,"Nothing like New York, Baby https://t.co/4a60i6trQl" +05/27/2018,Musicians,@ladygaga,Happy Birthday to my manager and best friend @bobby_campbell love you to the moon and back. Thank you for taking su… https://t.co/uGkxFXztLD +05/23/2018,Musicians,@ladygaga,#HappyBirthdayBornThisWay https://t.co/Qp1jyqOazz +05/23/2018,Musicians,@ladygaga,I’m emotional. It’s been 7 yrs since the release of “Born This Way.” It’s a celebration of love & diversity that br… https://t.co/qJyLVBE7St +05/17/2018,Musicians,@ladygaga,That was the night @itstonybennett asked me to make a record with him. ❤️ Tony https://t.co/aXsgqdmbDf +05/16/2018,Musicians,@ladygaga,"#MentalHealthAwarenessMonth is an important time to learn how to be there for your friends, family and community me… https://t.co/AYSAR0Dx0E" +05/16/2018,Musicians,@ladygaga,"RT @GagaLoverNE: Lady Gaga’s documentary, Gaga: Five Foot Two is nominated for an MTV Movie and TV award in the ""Best Music documentary"" ca…" +05/15/2018,Musicians,@ladygaga,"This is the #MentalHealthMinute, an important message to support @heads_together & the UK’s… https://t.co/3YXG2EbIB9" +05/13/2018,Musicians,@ladygaga,Tiny Dancer flies to see the Rocket Man. 4 more show left baby. How wonderful life is while you’re in the world… https://t.co/2ZwPvYo6sq +05/10/2018,Musicians,@ladygaga,RT @weeklygaga: Have you voted today #LittleMonsters Remember you can vote daily for #ladygaga‘s “Gaga: Five Foot Two” for “Best Music Docu… +05/10/2018,Musicians,@ladygaga,Thank you so much for this award! We are so honored and grateful @bmi Thankful for Million Reasons that we have you… https://t.co/yTlhcQeVDm +05/07/2018,Musicians,@ladygaga,In honor of the Met Gala and its theme I’ll post the “Judas” video. Here we explored Christianity through fashion s… https://t.co/m4aMWRQLeW +05/07/2018,Musicians,@ladygaga,https://t.co/SLbwyiFdbr +05/07/2018,Musicians,@ladygaga,🙌 #ThisIsAmerica https://t.co/HGKTBa41OA +05/07/2018,Musicians,@ladygaga,"RT @LGMonsterFacts: 7 years ago today, after traveling around the world for 2 years and 203 performances, Lady Gaga played the last Monster…" +05/07/2018,Musicians,@ladygaga,Love. https://t.co/O31fOeiSNb +05/06/2018,Musicians,@ladygaga,💕💋 https://t.co/dQd7nldRZs +05/06/2018,Musicians,@ladygaga,RT @MTV: @ladygaga congrats!!! you've been nominated at the 2018 #mtvawards and can vote now at https://t.co/B6c16HKCG5 🌈 https://t.co/HQec… +05/03/2018,Musicians,@ladygaga,"RT @AMENARTPOP: Lady Gaga's documentary ""Gaga: Five Foot Two"" is nominated as Best Music Documentary at the 2018 MTV Movie & TV Awards! VOT…" +04/28/2018,Musicians,@ladygaga,"RT @gagasyuyi: • And after the show, some fans could meet and take pictures with Lady Gaga. 💕 https://t.co/evVqbCpVfB" +04/28/2018,Musicians,@ladygaga,It’s the 6 year anniversary of the Born This Way Ball. Such a special time and such a special show that I will neve… https://t.co/BuxO0Gfuzl +04/27/2018,Musicians,@ladygaga,Words from me that my mom spoke on my behalf receiving a Didi Hirsch Erasing the Stigma Leadership Award.… https://t.co/20b9en9Bbp +04/27/2018,Musicians,@ladygaga,So proud of my mom and The Born This Way Foundation. We can all learn more about suicide prevention and mental heal… https://t.co/ju8Wnw36F7 +04/26/2018,Musicians,@ladygaga,Making music n’ stuff. 💕 https://t.co/pfbzkWGDAG +04/25/2018,Musicians,@ladygaga,"RT @TheWebbyAwards: Congrats Monsters! ⚡️🙌🎉 @ladygaga won FOUR #Webbys! + +🏆 @LiveNationProds ➡️ https://t.co/Yq996ZchrJ + +🏆 @intel ➡️ https:/…" +04/22/2018,Musicians,@ladygaga,Do it https://t.co/hVUjE15KhO +04/19/2018,Musicians,@ladygaga,@boysnoize But then I resurrected it with a blow dryer it was a christening ☠️ +04/15/2018,Musicians,@ladygaga,"Love you #BeyHive @Beyonce Have fun celebrating all that love in the desert. When it’s dry and we are thirsty, musi… https://t.co/nDdDxt2HyL" +04/12/2018,Musicians,@ladygaga,So crazy!!! Happened in 2010! 💕🙏 https://t.co/2fGEHhPewF +04/11/2018,Musicians,@ladygaga,Don’t forget to watch!! I had so much fun performing for my pops! #EltonSalute #EltonREVAMP https://t.co/pR2kTySaop +04/11/2018,Musicians,@ladygaga,@tc_littles Fall down 9 times but I get up 10! @iamcardib SPEAK WOMAN.💕 https://t.co/KnqkjYGebb +04/11/2018,Musicians,@ladygaga,I LIVE @iamcardib 🙌❤️🔥 https://t.co/DFQXBO63tu +04/09/2018,Musicians,@ladygaga,This video is so cool!! Thank you for believing in me 💕 https://t.co/wumFjeA3GS +04/09/2018,Musicians,@ladygaga,I love you little monsters 4eva. The last decades been a blast I will never forget. I can’t wait for the next. If y… https://t.co/WGWVfDkKsq +04/08/2018,Musicians,@ladygaga,I can’t believe it’s been ten years since the release of Just Dance. It’s very emotional and I am so grateful to li… https://t.co/Bfehav2MC7 +04/06/2018,Musicians,@ladygaga,@iamcardib Love you girl. +04/01/2018,Musicians,@ladygaga,"HAPPY EASTER from me, my friends, family and especially Gustave! My swimming spotted Easter BunnyBatPig! 🐰🐣🌸 https://t.co/zUQmDv6wJ4" +04/01/2018,Musicians,@ladygaga,💕💕love you🧚‍♀️🧚‍♀️ https://t.co/Ls3FGzCpqm +03/29/2018,Musicians,@ladygaga,"HERE WE ARE!!! Here's my cover of one of the greatest songs of all time. Elton John and Bernie Taupin’s ""Your Song… https://t.co/U0B0ezTHhF" +03/28/2018,Musicians,@ladygaga,Thank you so much 🤗for all your beautiful birthday🎂messages. I love you so much. If you’re compelled to give me a g… https://t.co/SEvXlL5D1W +03/28/2018,Musicians,@ladygaga,Here’s me in 2007 right before I dyed my hair blonde and released Just Dance. It’s now 2018 and I’m so blessed to b… https://t.co/qkxtKsDUPL +03/26/2018,Musicians,@ladygaga,Happy Ten Year Twitter Anniversary! It’s been willlllld ride 🧚‍♀️ https://t.co/wljWKdXkwH +03/24/2018,Musicians,@ladygaga,"Today and every day, listen to young people. #MarchForOurLives #guncontrol. Follow @ChnlKindness for more reports f… https://t.co/ZIMvJ3PNM5" +03/24/2018,Musicians,@ladygaga,#March4OurLives we say #BeKind !! https://t.co/PUWghs405G +03/24/2018,Musicians,@ladygaga,DISARM HATE https://t.co/VNmeJunFy5 +03/24/2018,Musicians,@ladygaga,Proud to share these photos of the brave young people from #StreetCornerResources as they join with other youth lea… https://t.co/XyvwBKdVPQ +03/24/2018,Musicians,@ladygaga,"Our bus will be one of 17 buses, representing the lives lost in the Parkland shooting and those lost every day to g… https://t.co/JzVsTSAuo5" +03/24/2018,Musicians,@ladygaga,.@BTWFoundation & I believe in the power of young people to create a better future. We’re so proud to stand with… https://t.co/jtbOADrlRO +03/22/2018,Musicians,@ladygaga,💕🌈 https://t.co/r8e3jymlZC +03/19/2018,Musicians,@ladygaga,@Shout_LGaga Hang in there I love you +03/19/2018,Musicians,@ladygaga,"I miss you Sonja, everyday. #BreastCancerAwareness https://t.co/IDKndqIuhN" +03/19/2018,Musicians,@ladygaga,"RT @ladygagaIoo: Lady Gaga photographed in early 2008 by street photographer Geordie Wood. + +When he asked her name she said: ""I am Lady Ga…" +03/15/2018,Musicians,@ladygaga,❤️🤗 https://t.co/5zjaDBAbnN +03/14/2018,Musicians,@ladygaga,RT @BTWFoundation: Young people are powerful when they work together! So proud of the students nationwide today who peacefully came togethe… +03/11/2018,Musicians,@ladygaga,"RT @PopCrave: 8 years ago today, Lady Gaga & Beyoncé released the music video for their smash hit ""Telephone."" The video shook pop culture…" +03/10/2018,Musicians,@ladygaga,Happy Birthday to my precious angel of a sister. An artistic design genius and loyal caring woman. I feel exactly t… https://t.co/8N7Qcc2tS2 +03/10/2018,Musicians,@ladygaga,Thank you so much to all the little monsters who wrote these thoughtful lovely notes to me. I am deeply touched and… https://t.co/ncLSRFRJKJ +03/08/2018,Musicians,@ladygaga,Happy International Women’s Day to every single woman in the world. Cheers to your strength and bravery to thrive i… https://t.co/DUEih9Zg52 +03/05/2018,Musicians,@ladygaga,So wonderful to watch the joy of all these artists shine on that beautiful stage tonight. We are so lucky to have art in the world #Oscars +03/03/2018,Musicians,@ladygaga,🤷‍♀️🤦‍♀️ https://t.co/mEwf65rT83 +03/01/2018,Musicians,@ladygaga,@ladygaga_JWT Or what did I do to deserve to have all of you? 💕 Miss you all and that stage I call home. +03/01/2018,Musicians,@ladygaga,@maitemisonrisa I love you too 💕🐰 +03/01/2018,Musicians,@ladygaga,@moonrisejoanne I love you 😘 +03/01/2018,Musicians,@ladygaga,"I remember that day, it was so fun was with so much of my fashion family. https://t.co/bsqPJkTlp4" +02/26/2018,Musicians,@ladygaga,"RT @ladygaga_JWT: Lady Gaga on the cover of Billboard’s February 26, 2011 issue— 7 years ago today. Her single ‘Born This Way’ had just bec…" +02/22/2018,Musicians,@ladygaga,Thanks for remembering guys!! 💕 https://t.co/XErZpFvfSs +02/19/2018,Musicians,@ladygaga,Parkland Survivors and others that are standing up through the media are so brave and are true role models. I’m spe… https://t.co/MlZPTZB3is +02/19/2018,Musicians,@ladygaga,I miss u. #LittleMonsters https://t.co/lOTUiSQWdd +02/10/2018,Musicians,@ladygaga,RT @BTWFoundation: Friendly reminder to follow your dreams! Reply with your hopes + dreams for the week. 💭 https://t.co/lsAcvVBxFd +02/08/2018,Musicians,@ladygaga,RT @Ddleonardo: my little sister doing Lady Gaga's touch down in the super bowl @ladygaga #Halftime #SuperBowl https://t.co/VSPdAgp5ZV +02/07/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/NNkgmK9tBs +02/07/2018,Musicians,@ladygaga,It’s been just about 1 year since my Super Bowl Haltime show! Celebrate by watching here 🤗🐰💕https://t.co/mMGjxWT1rB +02/07/2018,Musicians,@ladygaga,While I’m resting I’ll be spending more time on our social media website/app for fans... get app for free here.… https://t.co/0YYCkj4Qlz +02/07/2018,Musicians,@ladygaga,A must watch....the littlest and sweetest #Joanne https://t.co/E7g7ptHPuS +02/05/2018,Musicians,@ladygaga,@antpats2videos @jaakemeIIor I am the luckiest girl in the world to have fans like you. +02/05/2018,Musicians,@ladygaga,https://t.co/iUe2fTmiUN +02/04/2018,Musicians,@ladygaga,Playing the Super Bowl last year was indescribable. It changed my life! So excited to see what Justin’s going to d… https://t.co/jF4PVm84zI +02/03/2018,Musicians,@ladygaga,https://t.co/w5mTZsSb0X +02/01/2018,Musicians,@ladygaga,Are you ready Birmingham? (watch the whole video) #JoanneWorldTourBirmingham https://t.co/ohmtFDdusA +02/01/2018,Musicians,@ladygaga,"RT @AppleMusic: She never disappoints. Listen to the 🎹 version of @ladygaga's #Joanne. +https://t.co/BbktTgmi15" +02/01/2018,Musicians,@ladygaga,"Thank you, Birmingham. This photo says it all. #JoanneWorldTour #JoanneWorldTourBirmingham https://t.co/JeaFwuV4EP" +01/31/2018,Musicians,@ladygaga,What an 👼 🐶. He just gave me a million reasons to love him!! https://t.co/XhK8WDEsaT +01/31/2018,Musicians,@ladygaga,We are filming the show tonight Birmingham so bring that little monster fire!!!!!! #JoanneWorldTour https://t.co/gb0YzSlOh6 +01/29/2018,Musicians,@ladygaga,Here’s the Piano Version of “Joanne” music video. I sang it in one take. In a way I think I sang it to myself. https://t.co/PqOp1SBQMp +01/29/2018,Musicians,@ladygaga,Thank you to the fans and #TheGrammys for such a special night. It was very emotional singing. Soul shaking and hum… https://t.co/pHy4N7Kb8l +01/28/2018,Musicians,@ladygaga,#GRAMMYS #FASHION Armani Privé @giorgioarmani I’m so excited to have been nominated twice tonight and to be a part… https://t.co/Uq6eQqI8M7 +01/28/2018,Musicians,@ladygaga,RT @enews: Where do you think you're going? Sit back down and watch @LadyGaga's Glambot at the #GRAMMYs. https://t.co/TVw9JPLvRb +01/28/2018,Musicians,@ladygaga,A message from me on the day of #TheGrammys with a picture of me and @MarkRonson writing #Joanne. I love you little… https://t.co/5ukO3yyJtV +01/28/2018,Musicians,@ladygaga,"Pre Grammy Night! Music music and more music. Rehearsal, food, friends, and FASHUN. #Grammys https://t.co/cgQo42o62E" +01/26/2018,Musicians,@ladygaga,"Buy or Stream The Song/Video of this new Piano Version of #Joanne. + +https://t.co/czJwynauHX" +01/25/2018,Musicians,@ladygaga,#Joanne https://t.co/rPvDUaAWEP +01/25/2018,Musicians,@ladygaga,"RT @ChnlKindness: Introducing our 2018 Class of #ChannelKindness Reporters! We can’t wait for you to read, watch, and listen to their amazi…" +01/24/2018,Musicians,@ladygaga,"Sneak Peek: +Joanne (Where Do You Think You’re Goin’?) Piano Version +#Joanne #music #video + +The +@LupusResearch All… https://t.co/EMqYv2QOel" +01/24/2018,Musicians,@ladygaga,I have a surprise. #Joanne +01/20/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/ppocaRFY3l +01/18/2018,Musicians,@ladygaga,CIAO ITALIA in custom @Versace love you Donatella. Tonight I met family I never met before because of this album “… https://t.co/wuUoSukZlV +01/18/2018,Musicians,@ladygaga,RT @BTWFoundation: BREAKING NEWS: We’re donating everything we raise through January 19th (that’s tomorrow!) to our #ChannelKindness tour p… +01/17/2018,Musicians,@ladygaga,Ciao Milano!!! We are here!! #JoanneWorldTour https://t.co/vAC29TLqBV +01/17/2018,Musicians,@ladygaga,#NewProfilePic https://t.co/xhtdFbJCvc +01/17/2018,Musicians,@ladygaga,"Adios Barcelona, Ciao Milano #JoanneWorldTour https://t.co/39rR3F6eVR" +01/16/2018,Musicians,@ladygaga,#JoanneWorldTourBarcelona https://t.co/OxNlmzYwGq +01/16/2018,Musicians,@ladygaga,I ‘ve decided to play the documentary made about me every night before the show. If you get there early it will be… https://t.co/APmOKJdvLl +01/15/2018,Musicians,@ladygaga,SOLD OUT!! And another one day after tomorrow ❤️ TE AMO BARCELONA https://t.co/2uPgj72e3Z +01/13/2018,Musicians,@ladygaga,#JoanneWorldTourBarcelona where’s the 🔥 at? @Versace https://t.co/16b0KawgYf +01/10/2018,Musicians,@ladygaga,RT @LGMonsterFacts: It’s been 2 years since legendary musician and artistic pioneer David Bowie passed away. His legacy will live on foreve… +01/08/2018,Musicians,@ladygaga,Oprah for president? She’s got my vote. +01/03/2018,Musicians,@ladygaga,"Happy New Year. To happiness. Health. Love. And to the simplicity of beautiful unforgettable nature, life. https://t.co/dpdN1eXeeS" +12/23/2017,Musicians,@ladygaga,Wishing you the happiest possible of holidays and remembering we’re all in this as one family: Humanity. #BeKind th… https://t.co/MdOT2IoOzn +12/19/2017,Musicians,@ladygaga,The rumors are true! I will have my own residency at MGM’s Park Theater. Get ready for a brand new show!! It’s been… https://t.co/qA0KBKaEvQ +12/19/2017,Musicians,@ladygaga,"Today is the anniversary of my father’s sister Joanne’s passing. 12-18-1974 +It also happens to be our last… https://t.co/0PEhP05OkF" +12/18/2017,Musicians,@ladygaga,RT @runs_w_woIves: Reveal https://t.co/ElbgNeG1H7 +12/18/2017,Musicians,@ladygaga,It’s holiday time baby! Wishing you all a beautiful time filled with smiles and wishes coming true in many forms! 💋… https://t.co/HhnhyE4VPt +12/15/2017,Musicians,@ladygaga,"When my mind begins to wander I spend it being creative with my friends. Much better place to put your dreams, in t… https://t.co/J5jPoVXKbT" +12/13/2017,Musicians,@ladygaga,Another killer sold-out show at #JoanneWorldTourDenver next stop 🛑 Salt Lake City! 😎 https://t.co/kgGSH0LsNF +12/12/2017,Musicians,@ladygaga,"I’ve seen a lot of rumors on the internet that for “A Star Is Born” I’ll be billed as Stefani, but that’s not the c… https://t.co/s4QUAx8lEB" +12/12/2017,Musicians,@ladygaga,My new babies ❤️🐴👼 https://t.co/s4ejQD6V4l +12/11/2017,Musicians,@ladygaga,Happy Holidays from the Germanotta sisters and the #HausOfGaga. Mrs. Claus and Mistress Claus. Can’t we all just ge… https://t.co/hOI8B3gs7u +12/10/2017,Musicians,@ladygaga,We made it from #Dallas to #JoanneWorldTourOklahomaCity can’t wait to get out there and have some real fun with you… https://t.co/LrXzggTOnf +12/09/2017,Musicians,@ladygaga,What a night Dallas! @Verizon Up members get your stage side tickets for Oklahoma City tomorrow! Come sing with me… https://t.co/zjLzGAZ2U2 +12/09/2017,Musicians,@ladygaga,Backstage at #JoanneWorldTourDallas getting ready for the show in Gianni @Versace circa 1990. I LOVE VINTAGE AND I… https://t.co/G6HtMqZHI6 +12/09/2017,Musicians,@ladygaga,ME<————who has the coolest bestest most monstrous fans in the whole world? #pawsup #LittleMonsters 🐾Up!… https://t.co/nhzhbWFb9h +12/08/2017,Musicians,@ladygaga,https://t.co/QRWTyeAbVm +12/08/2017,Musicians,@ladygaga,RT @BTWFoundation: We're partnering with @MHFirstAidUSA to provide a FREE #mentalhealth workshop in Denver next week. Register today! https… +12/06/2017,Musicians,@ladygaga,Saying a prayer and sending loving thoughts to those suffering in California due to these horrible fires. No one de… https://t.co/SqA7YgIx3Z +12/06/2017,Musicians,@ladygaga,This is where our party’s at tonight! ❤️ https://t.co/P7FQgCVDcK +12/04/2017,Musicians,@ladygaga,RT @BTWFoundation: Thank you so much to our amazing partners @Minted and everyone who’s helped us write thank you notes to first responders… +12/04/2017,Musicians,@ladygaga,Memories ❤️😭 https://t.co/VRrEmnasn3 +12/04/2017,Musicians,@ladygaga,"RT @BTWFoundation: Recovering - physically, mentally, emotionally- from natural disasters takes time + the work isn’t over yet. Thanks @Tea…" +12/04/2017,Musicians,@ladygaga,Before the #JoanneWorldTourHouston tonight me and @btwfoundation teamed up with @teamrubicon to do some demolition… https://t.co/mu9IJ6xZG6 +12/03/2017,Musicians,@ladygaga,"Sexy Sunday! + #HAUS #HausEditorial +Photographer @hannah_khymych +Hair @fredericaspiras +Makeup @sarahtannomakeup +S… https://t.co/HFJzn7gpss" +12/03/2017,Musicians,@ladygaga,#NewProfilePic https://t.co/E6vWZXJ4m2 +12/01/2017,Musicians,@ladygaga,#BlackLivesMatter  Section 112 in the concourse at the Amalie Arena has https://t.co/18dEhUwPBB tonight at my show.… https://t.co/AkrEzKQ9zN +12/01/2017,Musicians,@ladygaga,1 in 4 Black Residents are ineligible to vote in Florida: here’s your chance to give 1.6 million people the ability… https://t.co/sQneMWxrjF +12/01/2017,Musicians,@ladygaga,#JoanneWorldTourTampa here we come! 🌞 https://t.co/X0Qd1LchFE +11/30/2017,Musicians,@ladygaga,blond silver and gold curls with dark blond root. Feline flicker eyeliner with rose gold metallic mouth. #beauty… https://t.co/m8vcFQL0BT +11/30/2017,Musicians,@ladygaga,Favorite Mascara love to layer and layer it. @MarcBeauty Velvet Noir https://t.co/r60G8JJijq +11/30/2017,Musicians,@ladygaga,#JoanneWorldTourMiami https://t.co/FpV0jFZs88 +11/29/2017,Musicians,@ladygaga,RT @momgerm: Check out our curated store https://t.co/2mVCZ2kiA3 on our amazing partner @Minted website. They are doing amazing work and y… +11/29/2017,Musicians,@ladygaga,"So glad to be back on the #JOANNEworldtour tonight after Thanksgiving, thank u Atlanta 💖 If u couldn't get tickets… https://t.co/GChuS805AE" +11/29/2017,Musicians,@ladygaga,RT @BTWFoundation: We had the best time teaming up today with @PayAwayLayaway to surprise local families! YOU can help us spread kindness e… +11/28/2017,Musicians,@ladygaga,And a MASSIVE Congratulations to all @theGRAMMYs nominees!!!! What a night we will have to celebrate music. Cheers… https://t.co/mgleSDYGo8 +11/28/2017,Musicians,@ladygaga,I never knew her and she never knew me. But my knowledge of her strength in my ancestry through her struggle with… https://t.co/ZrZ64DGGgt +11/28/2017,Musicians,@ladygaga,RT @BTWFoundation: Today's the day! Will you be a part of our movement to build a kinder world this #GivingTuesday? https://t.co/topUJQbE7H… +11/28/2017,Musicians,@ladygaga,"Thank u @Starbucks & @Spotify for celebrating artists who #GiveGood with a donation to @BTWFoundation, and to great… https://t.co/E6JH9hdGnD" +11/28/2017,Musicians,@ladygaga,I’m humbled & grateful that my album “Joanne” was nominated & also my song “Million Reasons.” Thank u so much Monst… https://t.co/VN8EX19u1A +11/27/2017,Musicians,@ladygaga,"This Thanksgiving I thought a lot about all the blessings I have: my fanily, my friends and extended family, and al… https://t.co/fpeb9Gkd5w" +11/25/2017,Musicians,@ladygaga,RT @KensingtonRoyal: You can watch the #StopSpeakSupport campaign animation here → https://t.co/5A35bfGWfM +11/22/2017,Musicians,@ladygaga,"Watch “The Cure” HERE: +https://t.co/e10ddYfSDP" +11/21/2017,Musicians,@ladygaga,#NewProfilePic https://t.co/AV9xBe3dME +11/20/2017,Musicians,@ladygaga,RT @BTWFoundation: We're partnering with @Minted to #ChannelKindness this holiday season! Check out the beautiful cards we’re using to than… +11/20/2017,Musicians,@ladygaga,Behind the Scenes Last night getting ready for the #AmericanMusicAwards2017 show with Hair @faspiras Makeup… https://t.co/m7ZyViw1dC +11/20/2017,Musicians,@ladygaga,We had a killer time performing and I’m so honored that we won Favorite Pop/Rock female I was so surprised I “ugly… https://t.co/w6E3xw6Enl +11/20/2017,Musicians,@ladygaga,Last night was one of the best nights of my life! We loved performing “The Cure” I was honored to win… https://t.co/DG6OiYpk50 +11/20/2017,Musicians,@ladygaga,#AMAs #AMAsRedCarpet Me in #Alaïa and ready to perform!! https://t.co/xekuFGSYbD +11/19/2017,Musicians,@ladygaga,When the #AMAs brings the red carpet to you! #AMAsRedCarpet #AMAsxGAGA wearing the one and only #Alaïa https://t.co/qFroGBt4Fx +11/19/2017,Musicians,@ladygaga,Behind the scenes of #AMAs getting for my performance in #Alaïa https://t.co/C9Q5mpX6Bu +11/19/2017,Musicians,@ladygaga,"I’M SOOOO EXCITED TO PERFORM FOR YOU TONIGHT!!! #AMAs +If I Can’t Find #TheCure , I’ll Fix You With My L💓ve !!! https://t.co/ilWXhLH0Xe" +11/19/2017,Musicians,@ladygaga,"RT @LadyGagaPopNet: Exactly 8 years ago today, Lady Gaga released her Grammy winning EP “The Fame Monster”. An iconic album that defined, i…" +11/19/2017,Musicians,@ladygaga,These were my last moments w/ Azzedine Alaïa. He was just behind the door to my right as I sat on his stoop & sang… https://t.co/aeNSVUFvGN +11/18/2017,Musicians,@ladygaga,❤️ #AMAs https://t.co/WRZkDAYY6c +11/18/2017,Musicians,@ladygaga,https://t.co/DG4S1DjWuV +11/18/2017,Musicians,@ladygaga,My mom is the best. @BTWFoundation #BeKind Spread #Kindness & #Bravery https://t.co/qOPokXfr4I +11/18/2017,Musicians,@ladygaga,RT @ELLEmagazine: Gaga explains that her love for helping others and activism goes far beyond a pop star. https://t.co/oJVwGKlvjI +11/17/2017,Musicians,@ladygaga,"RT @BTWFoundation: Team @BTWFoundation is in DC this morning, talking the #BusinessOfKindness with @USCCFBiz4Good + @DeloitteUS. Tune in to…" +11/17/2017,Musicians,@ladygaga,#JoanneWorldTourStLouis ARE U READY?!!! I’m warming up ❤️#JOANNEWorldTour Let me see your costumes!!! https://t.co/p4T7rico4W +11/16/2017,Musicians,@ladygaga,Can’t wait! 💋 https://t.co/75stNXujcD +11/16/2017,Musicians,@ladygaga,#HAUS #HausEditorial Hair @faspiras Makeup @SarahTanno and me in Couture @JPGaultier Styled by @TomEerebout and San… https://t.co/QKMr6pgPn5 +11/16/2017,Musicians,@ladygaga,Happy Anniversary to my self-directed video. Triangle bangs in muscle cars 🤘fighting for my dream from the street t… https://t.co/Wld7NHC17o +11/16/2017,Musicians,@ladygaga,"Tonight was so killer +#JoaneWorldTourKansasCity #JoanneWorldTour https://t.co/GsFAKHfzJf" +11/16/2017,Musicians,@ladygaga,"@gagadaily More sweat, more focus, more drive and practice to spread a message of love. That’s what little monsters… https://t.co/sNZyEo9WRs" +11/15/2017,Musicians,@ladygaga,NOW THATS WHAT IM TALKIN’ ABOUT! #MarriageEquality https://t.co/AIVdbq7EEG +11/14/2017,Musicians,@ladygaga,#HappyTuesday wishing you a sunny day from the inside out. 🖤🤘 https://t.co/LUjVuC2e9b +11/14/2017,Musicians,@ladygaga,RT @AMAs: .@LadyGaga is bringing 'The Cure' from the #JoanneWorldTour to the #AMAs! 💥 She's performing this Sunday at 8/7c on ABC. #GAGAxAM… +11/13/2017,Musicians,@ladygaga,Happy #worldkindessday #WorldKindnessDay THIS IS THE BEST DAY EVER❤️ my wish is for you all to know how happy it ma… https://t.co/cVhU3A7WOA +11/13/2017,Musicians,@ladygaga,"RT @BTWFoundation: The students of @WMSFA, @LPASlou + everyone else @JCPSKY deserve ALL the applause for collecting more than +2K toiletrie…" +11/12/2017,Musicians,@ladygaga,On the road to Kentucky. Gas stop. Why do we look like 3 teenagers waiting for an adult to buy us 40s.… https://t.co/ohagYJIRJA +11/12/2017,Musicians,@ladygaga,Happy 4 yr Anniversary #ARTPOP Thank u for allowing me to release my rage & passion & fear into this music. “I️ try… https://t.co/7hpUYpxqTt +11/11/2017,Musicians,@ladygaga,Last show for #JoanneWorldTourConnecticut SOLD OUT LOVIN PERFORMIN 4 U! ❤️❤️lets see ur outfits!! #JoanneWorldTour… https://t.co/HSYVZEUkP3 +11/11/2017,Musicians,@ladygaga,You certainly did make me cry. https://t.co/mkwZIe5VQx +11/09/2017,Musicians,@ladygaga,"The show is tonight!! Get your #JoanneVibes ready for the +#JoanneWorldTourConnecticut #JoanneWorldTour @SarahTanno… https://t.co/HNQl0PJgkJ" +02/28/2018,Musicians,@bobdylan,"Check out @TheAvenerMusic’s rework of Masters of War, out this Friday. https://t.co/wtrTPUMX7B" +02/07/2018,Musicians,@bobdylan,"It’s Bob Dylan like you’ve never seen him. +'Trouble No More' premieres Monday, February 26 at 10PM on #Cinemax. https://t.co/0KL6D5uEXm" +02/05/2018,Musicians,@bobdylan,"Check out Bob Dylan’s performance of “It Takes a Lot to Laugh, It Takes a Train to Cry” with the @wyntonmarsalis Se… https://t.co/IQAIR3mIin" +11/10/2017,Musicians,@bobdylan,There’s a slow train comin’. ‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’ is available now. https://t.co/nvodovsQW5 +11/06/2017,Musicians,@bobdylan,Discover rare memorabilia from the period covered in ‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’:… https://t.co/MZMRolFvNm +11/03/2017,Musicians,@bobdylan,‘Trouble No More: The Bootleg Series Vol. 13/1979-1981’ is available today: https://t.co/n9phC2eJKF https://t.co/rtMMP4HvM6 +11/02/2017,Musicians,@bobdylan,"Trouble No More concert film screenings in five cities tonight! +https://t.co/816GQGl4WI…" +11/02/2017,Musicians,@bobdylan,"Esquire’s Jeff Slate: When Bob Dylan Saw God +https://t.co/a6JoUOWv5m" +11/02/2017,Musicians,@bobdylan,https://t.co/a16TZ5C0yN +11/01/2017,Musicians,@bobdylan,A clip featuring a performance of “What Can I Do For You?” can be viewed exclusively at The @nytimes: https://t.co/Jl1eRLyR1F +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +San Francisco: https://t.co/NVH0vEa0gP" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Philadelphia: https://t.co/xobPCjaKNi" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Chicago: https://t.co/QYqL7FzSGf" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +New York: https://t.co/c60bYiTtOd" +11/01/2017,Musicians,@bobdylan,"Exclusive screenings tomorrow night for the “Trouble No More” film: +Boston: https://t.co/ODEgrqK908" +10/29/2017,Musicians,@bobdylan,"Recorded live in London in 1981, this version features a faster tempo and two guitar solos. #SlowTrainSundays https://t.co/21PUpmaptx" +10/26/2017,Musicians,@bobdylan,Head to @NPR for an exclusive first listen to tracks from ‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’:https://t.co/iK1bgJk3zQ +10/26/2017,Musicians,@bobdylan,"“The Groom’s Still Waiting At the Altar” was originally a B-side to the single “Heart of Mine,” but was later added… https://t.co/9Mqsc8fOkb" +10/24/2017,Musicians,@bobdylan,https://t.co/0dYqI0jynH +10/22/2017,Musicians,@bobdylan,“It’s been coming a long time and it’s picking up speed...” #SlowTrainSundays https://t.co/Icrq9rJ3xP +10/19/2017,Musicians,@bobdylan,"If you bought the “Gotta Serve Somebody” single in Holland, your record would have come in this picture sleeve. https://t.co/OQ1d0DrvY1" +10/18/2017,Musicians,@bobdylan,“One of the finest songs to come out of that period.” https://t.co/sP9JvjkZGk +10/15/2017,Musicians,@bobdylan,This unique rehearsal version of “Slow Train” offers a fascinating listen of what could have been. #SlowTrainSundays https://t.co/IIquBO0NMq +10/12/2017,Musicians,@bobdylan,Hear never-before-heard performances on ‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’:… https://t.co/vk7LV4Ud2g +10/11/2017,Musicians,@bobdylan,“…A Lost Gospel Masterpiece…” https://t.co/ji5ELEXc0a +10/08/2017,Musicians,@bobdylan,"All through October, enjoy a series of “Slow Train Sundays,” featuring unreleased versions of “Slow Train.” https://t.co/YnGm3HppNz" +10/06/2017,Musicians,@bobdylan,‘Trouble No More: A Musical Film’ made its premiere this week at @TheNYFF. https://t.co/fvndsvF6da +10/05/2017,Musicians,@bobdylan,Here are the original LP and cassette art proofs for ‘Shot of Love.’ https://t.co/5dnfc0388n +10/05/2017,Musicians,@bobdylan,"This British ad for ‘Saved’ features the original cover, which was later changed to a painting of Dylan from the al… https://t.co/QJZeipeocZ" +09/26/2017,Musicians,@bobdylan,Bob Dylan’s singles have been heard all over the world. Here’s a Spanish release of the single “Heart of Mine” off… https://t.co/uqhd1qYtK6 +09/20/2017,Musicians,@bobdylan,‘Trouble No More - The Bootleg Series Vol. 13 / 1979-1981’ showcases one of the richest periods of Bob Dylan’s care… https://t.co/jpD6XyYoJU +09/11/2017,Musicians,@bobdylan,"Bob Dylan and his Band will tour the U.S. this Fall. + +Tickets on sale this week, Amex pre-sale on Wednesday.… https://t.co/I18d84Uhc3" +09/05/2017,Musicians,@bobdylan,"Joan Osborne’s excellent new album Songs of Bob Dylan is out now! Check it out! +https://t.co/JPq5F2Oyty https://t.co/wbTePBOem1" +08/21/2017,Musicians,@bobdylan,"Bob Dylan remembers rockabilly legend Roland Janes +https://t.co/hCpZk12rkk" +08/06/2017,Musicians,@bobdylan,"Girl From the North Country, one of the standout hits of the season on London’s West End. +https://t.co/hFQc8XwVrk… https://t.co/OvZeAwbvfS" +06/12/2017,Musicians,@bobdylan,"Girl From The North Country +The Old Vic, London +8 July to 7 October +https://t.co/jOmsixrfls https://t.co/YfcULMvvYy" +04/25/2017,Musicians,@bobdylan,"Bob Dylan’s new exhibition, The Beaten Path: The Silkscreen Collection, now open at @HalcyonGallery #DylanAtHalcyon… https://t.co/L8spK5wYUe" +04/07/2017,Musicians,@bobdylan,"Bob Dylan was presented with the Nobel Prize in Literature in Stockholm: + +https://t.co/Forbi304CO" +04/05/2017,Musicians,@bobdylan,Bob Dylan’s Triplicate is today’s album of the day on BBC 6 Music. Tune in throughout the day to hear tracks.… https://t.co/L3Rxirmh93 +04/02/2017,Musicians,@bobdylan,"Bob Dylan's new album Triplicate is available now. Get 30 brand new recordings of classic American songs on iTunes. +https://t.co/YWsYsRIKo3" +03/31/2017,Musicians,@bobdylan,RT @RollingStone: Bob Dylan's 'Triplicate' is majestic in its own right. Our review https://t.co/xj9XhooDaK https://t.co/jdp5v1urnu +03/31/2017,Musicians,@bobdylan,A limited number of Triplicate Deluxe Ltd Edition LPs in a numbered case are available now on the Bob Dylan Store:… https://t.co/5jwSAX6TN5 +03/31/2017,Musicians,@bobdylan,Bob Dylan's new 3-disc album 'Triplicate' is available now on @AmazonMusic. https://t.co/h9xbDF4t7p +03/31/2017,Musicians,@bobdylan,"Bob Dylan's new album 'Triplicate,' which features 30 recordings of classic American songs, is available now:… https://t.co/vyTcfTnzDy" +03/29/2017,Musicians,@bobdylan,"RT @nprmusic: #FirstListen: Stream selections from @bobdylan's new three-disc set, 'Triplicate,' before it's out. https://t.co/bJqggMOCpc h…" +03/24/2017,Musicians,@bobdylan,10 tracks from 'Triplicate' are now available to stream at @nprmusic. https://t.co/y2Lm30QWUu +03/23/2017,Musicians,@bobdylan,"RT @nprmusic: #FirstListen: Stream selections from @bobdylan's new three-disc set, 'Triplicate,' before it's out. https://t.co/bJqggMOCpc h…" +03/23/2017,Musicians,@bobdylan,"Exclusive to bobdylan .com, a new interview with Bob Dylan: + +https://t.co/HxlrZhCN5B" +03/10/2017,Musicians,@bobdylan,"Listen to ""Stardust"" off Bob Dylan's upcoming 3-disc album 'Triplicate' now on @AppleMusic. https://t.co/Q6RCb3hzcQ" +03/10/2017,Musicians,@bobdylan,"Pre-order the 3-disc album now to get ""Stardust"" and two more tracks instantly: https://t.co/VeBSNghcAI https://t.co/pZPGO83DYR" +03/10/2017,Musicians,@bobdylan,"""Stardust"" off Bob Dylan's upcoming three-disc album 'Triplicate' is available today. https://t.co/paFsPPbZUS" +03/06/2017,Musicians,@bobdylan,The Triplicate deluxe limited 180 gram vinyl comes in a numbered case-made book. Pre-order now:… https://t.co/9P5z6lJPKs +02/17/2017,Musicians,@bobdylan,"Pre-order #Triplicate on @AppleMusic to get ""My One and Only Love"" and ""I Could Have Told You"" instantly. https://t.co/XiuvpogUKj" +02/17/2017,Musicians,@bobdylan,'Triplicate' will be released on March 31. Pre-order now and get two tracks instantly. https://t.co/VeBSNghcAI +02/17/2017,Musicians,@bobdylan,"""My One and Only Love"" off Bob Dylan's upcoming 3-disc album 'Triplicate' is available now. https://t.co/Y9lLTisxIr" +02/08/2017,Musicians,@bobdylan,"Bob Dylan and his Band will perform at the London Palladium on April 28, 29 and 30. Tickets on sale Friday at 10AM:… https://t.co/TgXyC4C9wT" +02/07/2017,Musicians,@bobdylan,"RT @BNBuzz: RT by 12PMET Weds 2/8/17 for chance to win signed vinyl of @bobdylan's ""Fallen Angels""! #Sweeps Rules https://t.co/zzfq487lAL…" +01/31/2017,Musicians,@bobdylan,'Triplicate' is available to pre-order on CD and vinyl now in the https://t.co/2JlPRaopp9 store:… https://t.co/lqWOdgkoun +01/31/2017,Musicians,@bobdylan,"Pre-order 'Triplicate' now on @amazonmusic: https://t.co/h9xbDF4t7p + +3-LP Deluxe Vinyl Limited Edition:… https://t.co/CqK812Bw82" +01/31/2017,Musicians,@bobdylan,"'Triplicate' features 30 brand new recordings of classic American songs including ""I Could Have Told You"" https://t.co/UvcvdOhuFR" +01/31/2017,Musicians,@bobdylan,Bob Dylan’s first three-disc album — 'Triplicate' — set for March 31 release. Learn more: https://t.co/5u6QWz5sGl https://t.co/6KWOWgRbv0 +01/27/2017,Musicians,@bobdylan,Bob Dylan and his Band at Firefly Festival in June. Tickets on sale today! @LifeAtFirefly +12/13/2016,Musicians,@bobdylan,"Nobel Presentation Speech by Professor Horace Engdahl, 10 Dec 2016: +https://t.co/02uDEc6dKg" +12/08/2016,Musicians,@bobdylan,"Bob Dylan and his Band will tour the UK next May. Tickets to go on sale 13 December! + +Info here! +https://t.co/oNa4cWaknX" +11/30/2016,Musicians,@bobdylan,"Bob Dylan's ""Chronicles: Volume One"" on sale today only for $2.99 at the Kindle Store +https://t.co/mInAQXtlcK" +11/07/2016,Musicians,@bobdylan,"No Direction Home: Bob Dylan, the Deluxe 10th Anniversary Edition, available now for the first time on @iTunesMovies +https://t.co/Bl6ja3QCrg" +10/14/2016,Musicians,@bobdylan,"RT @POTUS: Congratulations to one of my favorite poets, Bob Dylan, on a well-deserved Nobel. https://t.co/c9cnANWPCS" +10/13/2016,Musicians,@bobdylan,Bob Dylan was awarded the 2016 #NobelPrizeLiterature “for having created new poetic expressions within the great American song tradition.” +10/04/2016,Musicians,@bobdylan,"No Direction Home: Bob Dylan, the Deluxe 10th Anniversary Edition to be released on October 28th. More info: https://t.co/g5f0GbZwwf" +09/28/2016,Musicians,@bobdylan,"The 1966 Live Recordings: +36 CD set to be released on Nov. 11. +Pre-order: https://t.co/IRaMpRLnbm" +08/15/2016,Musicians,@bobdylan,Bob Dylan's Fallen Angels blue vinyl is available now exclusively at @BNBuzz. #BNVinylDay https://t.co/zhkTZiwjni https://t.co/VYHagnWjNS +06/04/2016,Musicians,@bobdylan,"On Muhammad Ali: [2/2] + +“.. then he truly was the greatest. In every way he was the bravest, the kindest and the most excellent of men.”" +06/04/2016,Musicians,@bobdylan,"On Muhammad Ali: [1/2) + +“If the measure of greatness is to gladden the heart of every human being on the face of the earth…" +06/01/2016,Musicians,@bobdylan,.@courtneymelba shares her 5 essential Bob Dylan songs with @WFUV https://t.co/lnJ5lDbSSi +05/24/2016,Musicians,@bobdylan,"RT @AppleMusic: The story continues... +@bobdylan's 37th studio album #FallenAngels, now on #AppleMusic: +https://t.co/DfQiLpafjS https://t.c…" +05/22/2016,Musicians,@bobdylan,Exclusive “Fallen Angels” lithographs and bundles are now available here: https://t.co/29Azq2EGMz https://t.co/ou6KD02l6m +05/21/2016,Musicians,@bobdylan,Get the limited blue vinyl edition of “Fallen Angels” exclusively at @BNBuzz https://t.co/zhkTZiNUeQ +05/20/2016,Musicians,@bobdylan,“Young at Heart” from the new album Fallen Angels is featured on @AppleMusic’s Best of the Week Playlist https://t.co/xSJOcw51fF +05/20/2016,Musicians,@bobdylan,“Fallen Angels” is available now on @AppleMusic! https://t.co/3psdNaDGIe +05/20/2016,Musicians,@bobdylan,Get the new album “Fallen Angels” now on @amazonmusic https://t.co/AGz62mXyfc +05/18/2016,Musicians,@bobdylan,RT @ColumbiaRecords: Only two more days until the release of @bobdylan's album #FallenAngels! Pre-order here: https://t.co/ekIKd4xK0d https… +05/12/2016,Musicians,@bobdylan,"RT @nprmusic: First Listen: Bob Dylan, 'Fallen Angels' @bobdylan https://t.co/wCQ5JSa1Zf https://t.co/AMrWXAT2y3" +05/08/2016,Musicians,@bobdylan,#DesertTrip passes on sale tomorrow at 10am PT. https://t.co/4kV4HM3TJy https://t.co/zCi5dFlrgs +05/07/2016,Musicians,@bobdylan,#DesertTrip passes on sale Monday at 10am PT at https://t.co/4kV4HM3TJy https://t.co/KjA1hrFaVl +05/07/2016,Musicians,@bobdylan,"#DesertTrip passes on sale Monday at 10am PT at https://t.co/4kV4HLMikY +https://t.co/bfZAHShU20" +05/03/2016,Musicians,@bobdylan,"Passes on sale Monday, May 9, 10 am PT! https://t.co/EIqAH9Icjp" +04/30/2016,Musicians,@bobdylan,"RT @AppleMusic: Reimagining a Sinatra favorite, @bobdylan shares #AllTheWay. +#FallenAngels coming soon! +https://t.co/jszQlkCyJt https://t.c…" +04/30/2016,Musicians,@bobdylan,“All The Way” is featured on @AppleMusic’s Best of the Week Playlist! Listen here: https://t.co/xSJOcw51fF +04/29/2016,Musicians,@bobdylan,“All The Way” from Bob Dylan’s upcoming album #FallenAngels is now available on @AppleMusic: https://t.co/lFKmRn9DrK +04/29/2016,Musicians,@bobdylan,"October… +https://t.co/m2S0Mrh1xF" +04/29/2016,Musicians,@bobdylan,"Hear ""All The Way"" off #FallenAngels out May 20: https://t.co/wGqohxDcYw https://t.co/MSfrug79Vh" +04/16/2016,Musicians,@bobdylan,Celebrate @recordstoreday by picking up this rare 7” EP with songs from the upcoming album Fallen Angels! #RSD16 https://t.co/00UrtDgPrz +04/12/2016,Musicians,@bobdylan,Only 3 more days to save 30%-50% on select shirts at the https://t.co/zJo1wDxtrQ Spring Cleaning Sale! https://t.co/8xxWgrJRZi +04/11/2016,Musicians,@bobdylan,“Melancholy Mood” is featured on @AppleMusic’s Best of the Week Playlist! Listen here: https://t.co/xSJOcw51fF +04/07/2016,Musicians,@bobdylan,Bob Dylan's new studio album “Fallen Angels” to be released May 20: Pre-order today! https://t.co/mqqs1nAVv6 https://t.co/EMMcyTjtXL +03/16/2016,Musicians,@bobdylan,"@JeffBuckley's #YouAndI ft. a cover of ""Just Like A Woman"" is out now. +link: https://t.co/5d03iWHi4u" +03/14/2016,Musicians,@bobdylan,"Bob Dylan’s 7/8 show at Forest Hills Stadium in Queens, NY, on pre-sale for Amex holders: https://t.co/4sffWIwjkR +(corrected link)" +03/07/2016,Musicians,@bobdylan,"Bob Dylan summer tour with Mavis Staples. +Tix: https://t.co/oNa4cWaknX +Amex pre-sales start tomorrow! https://t.co/svLOZ1Ozgf" +02/15/2016,Musicians,@bobdylan,"The Basement Tapes: Complete, Grammy winner for Best Historical Album. + +Order: https://t.co/Pyjgb8B57g https://t.co/gyEbuEwKJO" +01/14/2016,Musicians,@bobdylan,"Listen now to @JeffBuckley’s cover of ""Just Like A Woman"" from his upcoming album 'You and I.' https://t.co/66VecmGdg5" +01/02/2016,Musicians,@bobdylan,The evolution of Bob Dylan’s “Sitting On A Barbed Wire Fence” #CuttingEdge https://t.co/dInNxt4OQR +12/30/2015,Musicians,@bobdylan,Exclusive: Check out the newly released “One of Us Must Know” stems with #CuttingEdge: https://t.co/HBnkZs8KGA https://t.co/Xh5NGpaczW +12/27/2015,Musicians,@bobdylan,Did any fans out there own these classic Bob Dylan albums on 8-track? #CuttingEdge https://t.co/VGRukDarAF +12/26/2015,Musicians,@bobdylan,"""It's very complicated to play with electricity..."" - Bob Dylan in the summer of '65 #CuttingEdge https://t.co/YQHSmCpL63" +12/24/2015,Musicians,@bobdylan,Learn where Bob Dylan shot the iconic cover to 'Blonde on Blonde' with @PopSpotsNYC​! #CuttingEdge https://t.co/r2hHDbc1aB +12/23/2015,Musicians,@bobdylan,The 3 Bob Dylan albums highlighted on #CuttingEdge are all on @RollingStone's 500 Greatest Albums of All Time. https://t.co/duYIYvyuU6 +12/22/2015,Musicians,@bobdylan,Bob Dylan and his Band will tour Japan in April 2016. Tix go on sale in January. See the dates: https://t.co/QF7rNUtq8l +12/21/2015,Musicians,@bobdylan,Go check out take 13 of “Stuck Inside of Mobile with the Memphis Blues Again” from #CuttingEdge: https://t.co/buACDLkfT9 +12/19/2015,Musicians,@bobdylan,Think you can sing like Bob Dylan? Experience Studio A. Revisited here: https://t.co/MafSaRIzwv #CuttingEdge https://t.co/ThY68y5HqX +12/18/2015,Musicians,@bobdylan,"""All I can be is me--whoever that is."" #CuttingEdge https://t.co/nie75Q3MKh" +12/17/2015,Musicians,@bobdylan,"Go watch “Visions of Johanna,” off Bob Dylan’s #CuttingEdge! https://t.co/2N33uxDFjm" +12/15/2015,Musicians,@bobdylan,"""...you almost might not notice that it’s poetry."" - Allen Ginsberg on Bob Dylan #CuttingEdge https://t.co/ENsTLlleae" +12/14/2015,Musicians,@bobdylan,Don’t be a complete unknown. Sing “Like a Rolling Stone” like Bob Dylan: https://t.co/Joax8CfUkR #CuttingEdge https://t.co/MPbqt2qawk +12/13/2015,Musicians,@bobdylan,Hear “Leopard-Skin Pill-Box Hat (Take 8)” from Bob Dylan’s #CuttingEdge https://t.co/RMbYfARI0I +12/12/2015,Musicians,@bobdylan,".@nprmusic on the twelfth installment of Bob Dylan’s Bootleg Series, #CuttingEdge. https://t.co/hC8YKyBx1G" +12/10/2015,Musicians,@bobdylan,Have you picked up your copy of Bob Dylan’s #CuttingEdge? Get it today: https://t.co/fcED104yDh https://t.co/UvPuddfXzi +12/09/2015,Musicians,@bobdylan,Watch the video for Bob Dylan’s “Subterranean Homesick Blues” featuring never-before-seen outtakes: https://t.co/Driyu0qk5E #CuttingEdge +12/08/2015,Musicians,@bobdylan,"""I wrote it. I didn't fail. It was straight."" -Bob Dylan on ""Like a Rolling Stone"" #CuttingEdge https://t.co/rGJW3gLlq2" +12/07/2015,Musicians,@bobdylan,'Shadows in the Night' and 'The Basement Tapes Complete' are nominated for @TheGRAMMYs! https://t.co/PzMpzthlas +12/05/2015,Musicians,@bobdylan,Here’s the new video for Bob Dylan’s “Just Like Tom Thumb’s Blues” #CuttingEdge https://t.co/6mEh83M1K8 +12/04/2015,Musicians,@bobdylan,Watch the premiere of the new video for “Just Like Tom Thumb’s Blues” off #CuttingEdge on @nprmusic: https://t.co/YaiS3Jyfdw +12/02/2015,Musicians,@bobdylan,Here’s how “Stuck Inside of Mobile with the Memphis Blues Again” developed to its final version. #CuttingEdge https://t.co/mq0hT1Qi3Y +11/30/2015,Musicians,@bobdylan,Celebrate today by listening to the original. #CuttingEdge https://t.co/254RY0YRny https://t.co/nI1YFsczOO +11/29/2015,Musicians,@bobdylan,A collection of Bob Dylan concert tickets throughout 1965. Have you attended any of these shows? #CuttingEdge https://t.co/j5hDX1YAq2 +11/28/2015,Musicians,@bobdylan,"""The closest I ever got to the sound I hear in my mind was on individual bands in the 'Blonde on Blonde' album."" https://t.co/uVGddrDy2Q" +11/27/2015,Musicians,@bobdylan,"Get the #CuttingEdge, Bob Dylan outtakes, rehearsals and more from the mid 60’s. https://t.co/254RY0YRny https://t.co/AIuO8y7qLY" +11/25/2015,Musicians,@bobdylan,"D. A. Pennebaker's Dylan documentary, 'Dont Look Back,' is now available in a new deluxe edition from @Criterion! https://t.co/g1F1P1njgE" +11/24/2015,Musicians,@bobdylan,Hear unheard Dylan outtakes and early versions of some of the greatest songs of all time on the #CuttingEdge! https://t.co/YALaMoiRih +11/23/2015,Musicians,@bobdylan,Listen to the previously unreleased 1st take of Subterranean Homesick Blues https://t.co/254RY1gsM8 #CuttingEdge https://t.co/BPVGOmGckh +11/21/2015,Musicians,@bobdylan,Studio is all yours! Play with the stems of “Like a Rolling Stone” just like it was 50 years ago. https://t.co/254RY0YRny #CuttingEdge +11/20/2015,Musicians,@bobdylan,What are your earliest memories of Bob Dylan? #CuttingEdge https://t.co/gKcFe7Kh2g +11/18/2015,Musicians,@bobdylan,Watch to find out where the cover of 'Highway 61 Revisited' was photographed. #CuttingEdge https://t.co/SzAuvnH6jo https://t.co/2TXRrIucM2 +11/17/2015,Musicians,@bobdylan,"""It's impossibly good…how can a human mind do this?"" - Phil Ochs on 'Highway 61 Revisited' #CuttingEdge https://t.co/B1dsZgS3oJ" +11/15/2015,Musicians,@bobdylan,#CuttingEdge highlights one of Dylan's most creative periods! Pick it up on @amazonmusic: https://t.co/SzAuvnpuUO https://t.co/ja5ddY2XOL +11/14/2015,Musicians,@bobdylan,"By '66, Bob Dylan was a musical icon, influencing not only how others sounded but how others dressed! #CuttingEdge https://t.co/m6BD5Lpx8D" +11/12/2015,Musicians,@bobdylan,#CuttingEdge documents Bob Dylan's transition from folk hero to rock and roll legend: https://t.co/SzAuvnpuUO https://t.co/jFTqGlZqor +11/11/2015,Musicians,@bobdylan,"You've never heard ""Subterranean Homesick Blues"" like this! + +#CuttingEdge out now: https://t.co/SzAuvnH6jo https://t.co/SayJFKObDc" +11/11/2015,Musicians,@bobdylan,"UK fans! Missed Paul Sexton playing tracks from #CuttingEdge on @BBCRadio2 over the weekend? Listen here: +https://t.co/2HiV3FBFJi" +11/10/2015,Musicians,@bobdylan,RT @amazonmusic: Bob Dylan collects alternate versions of his classic songs on 'The Best of the Cutting Edge' https://t.co/FMnOkVHDsK https… +11/10/2015,Musicians,@bobdylan,"UK! Want this limited edition of the ""Like A Rolling Stone"" 7”? Buy it from @hmvtweets & get £2 off #CuttingEdge https://t.co/LMWMWeA4Ae" +11/10/2015,Musicians,@bobdylan,#DidYouKnow most of 'Highway 61 Revisited' was recorded in 1 week? https://t.co/254RY0YRny #CuttingEdge https://t.co/Xoek1nxdrl +11/09/2015,Musicians,@bobdylan,#CuttingEdge features 100+ unreleased tracks and the full 16 takes of “Like A Rolling Stone.” Get it here: https://t.co/SzAuvnH6jo +11/09/2015,Musicians,@bobdylan,RT @SonyMusicIre: Ireland!! #CuttingEdge from @bobdylan is in @TowerDublin @HMVIreland @GoldenDiscs Preview: https://t.co/dcTW49ogws https:… +11/08/2015,Musicians,@bobdylan,"#CuttingEdge takes you inside the creative process of “Desolation Row” off ‘Highway 61 Revisited.’ + +gif via @Genius https://t.co/wKEm26ZFqz" +11/07/2015,Musicians,@bobdylan,The limited Collector's Edition of the #CuttingEdge is now available! Get yours here: https://t.co/kM4HGLSDAZ https://t.co/Pkq8vERhpB +11/06/2015,Musicians,@bobdylan,#Exclusive: Now you can make Bob Dylan's “Like a Rolling Stone” your own with #CuttingEdge: https://t.co/254RY1gsM8 https://t.co/aBiVOA9Rfv +11/06/2015,Musicians,@bobdylan,"RT @RollingStone: Remix Bob Dylan's ""Like a Rolling Stone"" using individual song parts on a new site https://t.co/hbCQywnToy https://t.co/K…" +11/06/2015,Musicians,@bobdylan,Bob Dylan's #CuttingEdge which features alternate versions of Dylan classics is out now! https://t.co/TpwEoW1a1l https://t.co/Z949SD0sVl +11/05/2015,Musicians,@bobdylan,UK fans! Buy the @hmvtweets exclusive of “Like A Rolling Stone” 7” single for £4.99 and get £2 off #CuttingEdge! https://t.co/zfiJAg3fSi +11/04/2015,Musicians,@bobdylan,"Listen to Take 3 of Bob Dylan’s ""It Takes a Lot to Laugh, It Takes a Train to Cry” off #CuttingEdge on @esquire​: https://t.co/t3qP6znCdt" +11/03/2015,Musicians,@bobdylan,Check out the premiere of the alt take of “Just Like A Woman” on @Vulture: https://t.co/ynmJnjODSV #CuttingEdge https://t.co/UWrmP9JQ4p +11/02/2015,Musicians,@bobdylan,Watch the world premiere of ‘Visions Of Johanna’ directed by John Hillcoat on @guardian: https://t.co/eoo5jx0mYd #CuttingEdge +11/01/2015,Musicians,@bobdylan,"Get an in-depth look at the limited Collector’s Edition of the #CuttingEdge, out 11/06. Watch here: https://t.co/PS5m62l72J" +10/31/2015,Musicians,@bobdylan,Here’s a closer look at the deluxe edition of Bob Dylan's upcoming #CuttingEdge: https://t.co/s6FC5OMrcK +10/30/2015,Musicians,@bobdylan,The release of Bob Dylan’s #CuttingEdge is one week away! Stream an exclusive sampler on @nprmusic: https://t.co/HSNe0NW5Hz +10/29/2015,Musicians,@bobdylan,Read @uncutmagazine's extensive review of Bob Dylan's #CuttingEdge: https://t.co/Fj51PMduJV https://t.co/TyVrDd2wkI +10/29/2015,Musicians,@bobdylan,"Bob Dylan's secret history! A bonus, 52-page Bootleg Series book comes w/ new @MOJOmagazine +https://t.co/p9x2HjTLII https://t.co/TWZB8y25JV" +10/28/2015,Musicians,@bobdylan,Exclusive Premiere! Listen to “Leopard-Skin Pill-Box Hat” off #CuttingEdge on @YahooMusic: https://t.co/HYWbVu9X4A https://t.co/PCzYh1Moto +10/27/2015,Musicians,@bobdylan,Photographer Jerry Schatzberg search for the 'Blonde on Blonde' cover location https://t.co/Wh8btSFLwO #CuttingEdge https://t.co/VETgTG8wHz +10/27/2015,Musicians,@bobdylan,"Watch the final album cover location video, The Story of the ‘Blonde on Blonde’ cover, on @RollingStone https://t.co/Wh8btSXmVo #CuttingEdge" +10/26/2015,Musicians,@bobdylan,"Earlier, @Genius released ‘Evolution of A Song’ dedicated to Dylan’s classics: https://t.co/hMJA1U5UZn #CuttingEdge https://t.co/smtNFyINYD" +10/26/2015,Musicians,@bobdylan,.@Genius explores the making of Dylan’s classics in new ‘Evolution of A Song.' More on @RollingStone: https://t.co/hMJA1U5UZn #CuttingEdge +10/25/2015,Musicians,@bobdylan,Pre-order your copy of Bob Dylan's #CuttingEdge today: https://t.co/TpwEoW1a1l https://t.co/UngncYwcdA +10/24/2015,Musicians,@bobdylan,"""I'm going back to New York City, I do believe I've had enough…"" + +#CuttingEdge out 11/6! https://t.co/SzAuvnH6jo https://t.co/IgIRrlpg43" +10/23/2015,Musicians,@bobdylan,"""The most influential album of its era..."" -Clinton Heylin on 'Bringing It All Back Home’ #CuttingEdge https://t.co/oTFo8pTdsp" +10/22/2015,Musicians,@bobdylan,#CuttingEdge offers an unprecedented journey into the 14 months in which Bob Dylan changed rock and roll! Pre-order: https://t.co/SzAuvnH6jo +10/21/2015,Musicians,@bobdylan,Priceless! Watch angry fans back in '66 complain about Dylan ‘going electric.’ #CuttingEdge https://t.co/s5Yt1O0ND7 https://t.co/MD4HNq5nlH +10/20/2015,Musicians,@bobdylan,Watch the unreleased version of “Subterranean Homesick Blues” on @coslive: https://t.co/W5iHJ85F4H #CuttingEdge https://t.co/zTFxUimqk9 +10/19/2015,Musicians,@bobdylan,Here’s another track off #CuttingEdge. Listen to Take 1 of “It Takes a Lot to Laugh It Takes a Train to Cry.” https://t.co/HDHQOenpM2 +10/18/2015,Musicians,@bobdylan,"Many covered Bob Dylan's songs in the '60s, but as this ad put it: No one sings Dylan like Dylan. #CuttingEdge http://t.co/YS6ShgKz1z" +10/17/2015,Musicians,@bobdylan,The 3-LP 180-G vinyl of Bob Dylan's #CuttingEdge is now available for pre-order! http://t.co/OtXsql2fyE http://t.co/kMMJbUwYT8 +10/16/2015,Musicians,@bobdylan,Here’s Take 1 of “Can You Please Crawl Out Your Window?” off the upcoming #CuttingEdge: https://t.co/0Mes2gpEW8 +10/15/2015,Musicians,@bobdylan,Watch @PopSpotsNYC​’s Bob Egan break down how the cover of ‘Highway 61 Revisited’ came about. #CuttingEdge https://t.co/ofS07zLugO +10/15/2015,Musicians,@bobdylan,You can now listen to “Can You Please Crawl Out Your Window” off #CuttingEdge exclusively on @thedailybeast: http://t.co/9UWl5xhAqW +10/13/2015,Musicians,@bobdylan,Watch the second album cover location video featuring Bob Dylan’s ‘Highway 61 Revisited’ on @RollingStone: http://t.co/awBHmL7ddH +10/09/2015,Musicians,@bobdylan,"Listen to “Sitting On A Barbed Wire Fence” off Bob Dylan’s upcoming Bootleg Series, The #CuttingEdge: http://t.co/xDUaVnYjdr" +10/08/2015,Musicians,@bobdylan,Listen to the premiere of the alternate version of “Sitting On A Barbed Wire Fence” off #CuttingEdge on @WSJ: http://t.co/Qi5TGuRfjO +10/07/2015,Musicians,@bobdylan,"#CuttingEdge includes the complete 16-take session of “Like A Rolling Stone."" Pre-order: http://t.co/5ZyM327L5S http://t.co/ch8WbWLEiG" +10/06/2015,Musicians,@bobdylan,Read @NYTimes’ coverage of Bob Dylan’s #CuttingEdge: http://t.co/GE9nD7Iq8i http://t.co/dWqs3hQZDz +10/05/2015,Musicians,@bobdylan,"In case you missed it, here’s the story of Bob Dylan’s upcoming Bootleg Series The #CuttingEdge: http://t.co/uJrEUjsmM3" +10/03/2015,Musicians,@bobdylan,#CuttingEdge out November 6th! Pre-order today: http://t.co/7Y3VHpyaOF http://t.co/Fhfak3raTG +10/02/2015,Musicians,@bobdylan,"""...a definitive look at the development of Dylan's plugged-in sound."" - @greeneandy, @RollingStone on #CuttingEdge http://t.co/bmLMXCaGdW" +09/30/2015,Musicians,@bobdylan,Watch the story of the cover of ‘Bringing It All Back Home’ #CuttingEdge http://t.co/ezgiWksgzZ +09/29/2015,Musicians,@bobdylan,Watch @PopSpotsNYC break down the cover of ‘Bringing It All Back Home’ on @RollingStone: http://t.co/qr2P9wugWP http://t.co/l4nvRcu1IV +09/24/2015,Musicians,@bobdylan,#CuttingEdge takes listeners into some of Bob Dylan's legendary studio sessions. Pre-order: http://t.co/7Y3VHpgzX7 http://t.co/31DKlc8Mz6 +09/24/2015,Musicians,@bobdylan,#CuttingEdge takes you inside the studio during the recording of three of Bob’s most iconic albums. http://t.co/uJrEUjaLUv +05/20/2015,Musicians,@bobdylan,"Watch Bob Dylan perform ""The Night We Called It A Day"" from Shadows In The Night on @Letterman: https://t.co/fUXZdibj04" +05/20/2015,Musicians,@bobdylan,Bob Dylan is about to close out The Late Show With David @Letterman. #Shazam to see the new video and more. http://t.co/BDs2Dqy9vP +05/20/2015,Musicians,@bobdylan,"Bob Dylan is performing on tonight’s penultimate episode of the Late Show with David @Letterman , starting now on CBS." +05/19/2015,Musicians,@bobdylan,Don’t miss Bob Dylan performing on The Late Show With David @Letterman tonight at 11:35pm EST on CBS. +05/15/2015,Musicians,@bobdylan,"In a rare TV appearance, Bob Dylan will perform on one of the final @LETTERMAN shows, Tuesday, May 19th at 11:35 PM ET/PT on #CBS." +03/16/2015,Musicians,@bobdylan,"Four live videos from The New Basement Tapes, just released: +http://t.co/DmxOAwU9rV" +03/02/2015,Musicians,@bobdylan,"""The Night We Called It A Day,"" the new video from Bob Dylan's album Shadows In The Night, directed by Nash Edgerton. http://t.co/R2yoYlbxrU" +02/13/2015,Musicians,@bobdylan,"Bob Dylan in conversation with Bill Flanagan, February 2015 + +http://t.co/HI0zXy70iS" +02/12/2015,Musicians,@bobdylan,"Bob Dylan and his Band will perform concerts in the U.S. in April and May + +Tickets on sale next week! + +http://t.co/QF7rNUtq8l" +02/11/2015,Musicians,@bobdylan,"""Shadows in the Night"" becomes a worldwide hit debuting in the top ten in 13 countries! Read more at http://t.co/PxkVlhNzQ6" +02/05/2015,Musicians,@bobdylan,Bob Dylan’s new album “Shadows In The Night” is available now at @BestBuy​. Find it in a store near you: http://t.co/zlgCcruNgd +02/03/2015,Musicians,@bobdylan,"Bob Dylan's new album Shadows In The Night is available now on CD, Vinyl and MP3 on @amazonmusic. Get it today: http://t.co/jXAXMAnT1G" +02/03/2015,Musicians,@bobdylan,"RT @iTunesMusic: Ol’ Blue Eyes would be proud. +@bobdylan goes Sinatra with Shadows In The Night +http://t.co/B0RGMfm2P2 http://t.co/uODOIZD…" +02/03/2015,Musicians,@bobdylan,"Bob Dylan’s first new album in three years, Shadows In The Night, arrives in stores and online today. http://t.co/jXAXMAnT1G" +06/27/2018,Musicians,@MileyCyrus,BFF’S @MarkRonson 🔥🔥🔥 https://t.co/YDJV04CIE3 +06/26/2018,Musicians,@MileyCyrus,https://t.co/8ohDGgIEei +06/26/2018,Musicians,@MileyCyrus,#EndFamilySeperation #KeepFamiliesTogether @happyhippiefdn @supportKIND https://t.co/Kv2lDFGMEn +06/25/2018,Musicians,@MileyCyrus,#ConversePride https://t.co/c13zJNwEjT +06/25/2018,Musicians,@MileyCyrus,thanks for showing your PRIDE rockin the Converse X Miley pride collection!! #ConversePride https://t.co/36loAcWuVu +06/23/2018,Musicians,@MileyCyrus,💚 @wizkhalifa https://t.co/yhUCXSH42X +06/21/2018,Musicians,@MileyCyrus,backstage before my #GeorgeClooneyAFI performance! Airs tonight at 10/9c on TNT! https://t.co/Ct1K6jGo5S +06/21/2018,Musicians,@MileyCyrus,https://t.co/Iq31XI7CAI +06/18/2018,Musicians,@MileyCyrus,NO ONE could ever love you more than I do! Even the thousands would never add up to how much space you take in my s… https://t.co/wrhR8QVk4U +06/17/2018,Musicians,@MileyCyrus,https://t.co/UQQv1fkJWB +06/17/2018,Musicians,@MileyCyrus,Happy Daddy’s Day to the best Dad on the planet! @billyraycyrus https://t.co/BW3wupu3Bx +06/13/2018,Musicians,@MileyCyrus,"RT @fweakysus: @StylishCyrus @MileyCyrus oh yes girllll, u already know i copped!!🌈💖 #ConverseXMiley @MileyCyrus https://t.co/snV3uXcE1C" +06/13/2018,Musicians,@MileyCyrus,Even my trees are GAY! Happy pride! https://t.co/vaIiBf5bud +06/13/2018,Musicians,@MileyCyrus,Stan legends @Wyattish @billyraycyrus https://t.co/8WvhXsRtfF +06/12/2018,Musicians,@MileyCyrus,RT @SofiaChiostri: @MileyCyrus ❤️❤️❤️❤️❤️❤️ https://t.co/JyJTMm3IRU +06/12/2018,Musicians,@MileyCyrus,RT @StylishCyrus: Who got their Miley x Converse Pride Merch?! Tweet me pics! 🌈🌈🌈 #ConverseXMiley @MileyCyrus https://t.co/8BAf4Ogu7w +06/12/2018,Musicians,@MileyCyrus,🌈 https://t.co/u7eEtng9dv +06/11/2018,Musicians,@MileyCyrus,RT @EleLovesBritney: Wrecking Ball @ RomaPride @MileyCyrus 🏳️‍🌈❤️ https://t.co/mJccCYQUjI +06/11/2018,Musicians,@MileyCyrus,"AN ICON + +AND THE FUCKING PRESIDENT https://t.co/newAEGMbYT" +06/11/2018,Musicians,@MileyCyrus,💖🌈 https://t.co/ibsNxt4AQA +06/10/2018,Musicians,@MileyCyrus,"IT’S STILL THE WEEKEND SO PARTY LIKE ME & MURRAY + +Watch us honor the bad ass life and career of George Clooney Jun… https://t.co/Mi0IO2cPFN" +06/09/2018,Musicians,@MileyCyrus,🌈🌈🌈🌈❤️❤️❤️ https://t.co/I4ErmvHRuK +06/09/2018,Musicians,@MileyCyrus,🌈🌈🌈🌈 https://t.co/K8DYuiJMTn +06/09/2018,Musicians,@MileyCyrus,"RT @elizabethforma: Get ready, #BostonPride – @metheridge and I are ready to dance! #RainbowResistance #Pride2018 https://t.co/qnucmd11qf" +06/09/2018,Musicians,@MileyCyrus,.@voguemagazine https://t.co/GlopaCsEdN 🌈 +06/09/2018,Musicians,@MileyCyrus,"RT @voguemagazine: .@MileyCyrus has debuted a special @Converse capsule collection dedicated to #Pride 2018, with all proceeds going to LGB…" +06/06/2018,Musicians,@MileyCyrus,"Share your #prideposterproject with us, and look out for these at your Pride parades. @happyhippiefdn @ItGetsBetter… https://t.co/br9RNhegMB" +06/05/2018,Musicians,@MileyCyrus,https://t.co/bzhwxzwwRX https://t.co/ywfltcUscG +06/05/2018,Musicians,@MileyCyrus,All net proceeds of the Converse Pride collection will support our LGBTQ+ youth community partners globally!… https://t.co/WmYBmL1wI7 +06/05/2018,Musicians,@MileyCyrus,"Happy Pride! 🌈 +@HappyHippiefdn and I support being yourself everyday, and Pride is an extra special time to celebr… https://t.co/Ak2nhZQOhO" +06/02/2018,Musicians,@MileyCyrus,"RT @Spotify: Hey @MileyCyrus, no one can resist the emotional power of ""Wrecking Ball."" Not even the two guys in our new commercial, enjoyi…" +06/02/2018,Musicians,@MileyCyrus,💚💚 @Spotify https://t.co/O7cMLvhICE +06/01/2018,Musicians,@MileyCyrus,Like nappin with floyd 🌈 https://t.co/O5dpgyU3sw +05/31/2018,Musicians,@MileyCyrus,"Always a beautiful start to the day +When a piece of art finds its right & grateful owner https://t.co/85AAH9ZK3H" +05/31/2018,Musicians,@MileyCyrus,step yo pussy up https://t.co/9oW87gfjuv +05/27/2018,Musicians,@MileyCyrus,"Happy Birthday 🎊 @BrandiCyrus +Throwback! Sissy time! Love you! https://t.co/Igh9bdmGwd" +05/25/2018,Musicians,@MileyCyrus,COME THRU 🌞 https://t.co/ntkYgF9CPi +05/24/2018,Musicians,@MileyCyrus,❤️🔥❤️🔥 https://t.co/hnCwRXeqmk +05/24/2018,Musicians,@MileyCyrus,❤️❤️❤️ @chrishemsworth https://t.co/Z2PJqEkRdr +05/22/2018,Musicians,@MileyCyrus,https://t.co/Tw5Dr0x4Ek @jimmykimmellive #kimmel https://t.co/phyNwSxHEr +05/22/2018,Musicians,@MileyCyrus,RT @aliciakeys: Calling every member of #TeamAlicia out there! 🌍 It's all led up to THIS! We need to work together to get @BrittonBuchanan… +05/22/2018,Musicians,@MileyCyrus,RT @jimmykimmel: A trespasser named @MileyCyrus breaks into my house in the middle of the night. #WreckingBall https://t.co/gYHEVvzPKd +05/21/2018,Musicians,@MileyCyrus,RT @JimmyKimmelLive: .@MileyCyrus invades Jimmy’s home TONIGHT! #Kimmel https://t.co/3wwRH5Xe8S +05/21/2018,Musicians,@MileyCyrus,https://t.co/yKbFDOi9UL +05/20/2018,Musicians,@MileyCyrus,"Face Mask ✔️ +Facts AF tee ✔️ +Weed Panties✔️ + +MC Sunday Checklist https://t.co/pIdv8tRkJv" +05/18/2018,Musicians,@MileyCyrus,RT @eltonofficial: Two surprise and very special guests at Elton's final @CaesarsPalace show last night! @MileyCyrus @LiamHemsworth #LasVeg… +05/18/2018,Musicians,@MileyCyrus,https://t.co/b1rVjO0MF1 +05/17/2018,Musicians,@MileyCyrus,Laurel Vs Yammy lol https://t.co/Ew6HwWV5Va +05/16/2018,Musicians,@MileyCyrus,"If this isn’t a definition of a “Time” i don’t know wtf + +#AnEra https://t.co/9EbBfgQHM9" +05/13/2018,Musicians,@MileyCyrus,3 Generations of GO GETTIN’ WOMEN. Happy mother’s day to ALL! https://t.co/CeTm4T2gZe +05/13/2018,Musicians,@MileyCyrus,https://t.co/8b51kKbuvb +05/13/2018,Musicians,@MileyCyrus,"Happy B-Day Mommy @TishCyrus! + +& Happiest Mother’s Day to mamas everywhere! https://t.co/58OjROdJpU" +05/11/2018,Musicians,@MileyCyrus,https://t.co/ZIAo4xhmL1 +05/11/2018,Musicians,@MileyCyrus,https://t.co/qi7obQE4mn +05/11/2018,Musicians,@MileyCyrus,Not killing animals is fucking hot! It’s so much cuter to NOT kill animals! ❤️ https://t.co/6nxrWEgx8d +05/10/2018,Musicians,@MileyCyrus,Kiley Cyrushian https://t.co/cXUxK6BtaG +05/09/2018,Musicians,@MileyCyrus,Happiest Birthday to my baby brother bear! @BraisonCyrus 🐻 🐻🐻🐻 https://t.co/5DgFUc6uw5 +05/09/2018,Musicians,@MileyCyrus,Been in this together since the beginning! Love ya sister @katyperry https://t.co/HPJ2apI8jL +05/09/2018,Musicians,@MileyCyrus,#sustainablestyle @StellaMcCartney https://t.co/uuhxmfHKL1 +05/09/2018,Musicians,@MileyCyrus,"RT @StellaMcCartney: Heavenly bodies! Stella, @MileyCyrus and @rihanna at the 2018 #MetGala last night. + +#HeavenlyBodies #StellaMcCartney h…" +05/08/2018,Musicians,@MileyCyrus,Thank you @StellaMcCartney for having me as your date & shining a bright light on sustainable non violent fashion! https://t.co/kmdeWymxmU +05/08/2018,Musicians,@MileyCyrus,RT @StylishCyrus: I’m dead at @MileyCyrus singing “Jolene” in the very beginning Kim Kardashian’s snap and you can hear her saying “I’m jus… +05/08/2018,Musicians,@MileyCyrus,https://t.co/CPK9OaFXwc +05/08/2018,Musicians,@MileyCyrus,.@StellaMcCartney girls!!! @ParisJackson https://t.co/24mTp37eLO +05/08/2018,Musicians,@MileyCyrus,https://t.co/Tg9ZcWTux6 +05/08/2018,Musicians,@MileyCyrus,https://t.co/iGWxJZTX1Y +05/08/2018,Musicians,@MileyCyrus,https://t.co/wi4txkYu5P +05/07/2018,Musicians,@MileyCyrus,Punk ball! Babies first MET! @marcjacobs 🍒 https://t.co/3hNT2vhRpU +05/07/2018,Musicians,@MileyCyrus,MET with @AlexanderWangNY a few years ago! https://t.co/qYp1be14pR +05/07/2018,Musicians,@MileyCyrus,Lol Bad A$$ @Converse edit! Throwback to my first MET! Can’t wait for tonight! #ConverseXMiley https://t.co/yz4zreGNBt +05/05/2018,Musicians,@MileyCyrus,You taught me how to LOVE without fear of loss... Every second of happiness together....was worth every minute of s… https://t.co/LXjQtQplnr +05/04/2018,Musicians,@MileyCyrus,MOOD AF https://t.co/WyUF4KH75F +05/04/2018,Musicians,@MileyCyrus,who got my #ConverseXMiley collection?? I wanna see y’all in the line!! https://t.co/wVJCHrUqI4 +05/04/2018,Musicians,@MileyCyrus,RT @arviedizon: #MileyXConverse serving Manila traffic some glits and fun. @MileyCyrus @Converse https://t.co/lhLljWrKm7 +05/04/2018,Musicians,@MileyCyrus,"My @Converse line is suppppper cute, you should totally swoop!!!! #ConverseXMiley https://t.co/0ehXp14G1o" +05/03/2018,Musicians,@MileyCyrus,RT @AliGutyy: @MileyOfficial @instagram @Snapchat #MileyXConverse @MileyCyrus ❤️ https://t.co/Y1beZt694m +05/03/2018,Musicians,@MileyCyrus,RT @MyFabulousMiley: @MileyOfficial @instagram @Snapchat I am living for the gifs #ConserveXMiley @Converse @MileyCyrus https://t.co/RXCJe5… +05/03/2018,Musicians,@MileyCyrus,RT @CyrusIsMyVirus: @MileyOfficial @instagram @Snapchat https://t.co/9cWSKmSiMw +05/03/2018,Musicians,@MileyCyrus,RT @MileyCyrusIntl: In Mexico it's also already on sale! 😍💜 #ConverseXMiley @MileyCyrus @Converse https://t.co/8bqwlNjCfb +05/03/2018,Musicians,@MileyCyrus,RT @lauramiley97: Look what I found!!!!! 😱❤️ #MILEYxCONVERSE @Converse @MileyCyrus #SPAIN https://t.co/jB8HTO9FPy +05/03/2018,Musicians,@MileyCyrus,"RT @zacheese1: Converse in SOHO went full out!!!! +Come party in NYC @MileyCyrus! https://t.co/Em9xBHqB1B" +05/03/2018,Musicians,@MileyCyrus,"RT @Francescapanda: OH MY GOD, Bershka in Milan, Italy @MileyCyrus @Converse #MileyXConverse https://t.co/Eclhtw8Mrp" +05/03/2018,Musicians,@MileyCyrus,Bts of my #ConverseXMiley @converse shoot on @Tumblr! https://t.co/Bj9FhlgtLq https://t.co/xomdajWOZC +05/03/2018,Musicians,@MileyCyrus,Don’t forget to check out my @converse collection out now! #ConverseXMiley https://t.co/7cMzAeVLV4 +05/03/2018,Musicians,@MileyCyrus,#ConverseXMiley @wonderlandmag https://t.co/sZhlXXxl3T +05/03/2018,Musicians,@MileyCyrus,RT @wonderlandmag: Who's that chick that's rockin' kicks? 💕 Our Spring cover babe @MileyCyrus has teamed up with @Converse to create the sh… +05/02/2018,Musicians,@MileyCyrus,my #ConverseXMiley @Converse collection is out NOW! https://t.co/soXhDEX5nR to get em!!! 🚨🎉💖 https://t.co/CIxi6zIFec +05/02/2018,Musicians,@MileyCyrus,RT @HeartBeatsMiley: I'm at a loss for words. I can't thank you enough @MileyCyrus for sending me this package and thinking of me. You're s… +05/02/2018,Musicians,@MileyCyrus,wanna thank my awesome fans who were a part of the campaign and everyone who’s got a pair of my #ConverseXMiley col… https://t.co/EdTGLatLr8 +05/02/2018,Musicians,@MileyCyrus,"YAY!!! The #ConverseXMiley @converse collection is out everywhere! + +Shop at https://t.co/soXhDEX5nR! + +❤️ 💰 🎉 https://t.co/Hrjx3eJyqd" +05/02/2018,Musicians,@MileyCyrus,Don’t forget to watch @jimmykimmellive #KIMMEL #ConverseXMiley https://t.co/nis0B0qwrD +05/02/2018,Musicians,@MileyCyrus,🚨 🚨 #ConverseXMiley COLLECTION DROPS AT MIDNIGHT 🚨🚨 @Converse https://t.co/69jc7BcbfM +05/02/2018,Musicians,@MileyCyrus,see y’all soon!! #ConverseXMiley https://t.co/JFFOEYSbQZ +05/02/2018,Musicians,@MileyCyrus,Headed to the grove soon! See ya there #ConverseXMiley https://t.co/YWvh89xIQ0 +05/02/2018,Musicians,@MileyCyrus,Excited to meet my fans @ nordstrom at the grove!!! #ConverseXMiley https://t.co/nGINbFz0Ge +05/01/2018,Musicians,@MileyCyrus,Yup! Bringing some for @JimmyKimmelLive tonight in HIS size! https://t.co/hFcOHK95jz +05/01/2018,Musicians,@MileyCyrus,Can’t wait for everyone to get their #ConverseXMiley!! if you’re in La meet @ the grove at 6! https://t.co/rhRQvJFF1a +05/01/2018,Musicians,@MileyCyrus,LA... Who’s headed to nordstrom at the grove later day?? see you there around 6 ;) #ConverseXMiley @Converse https://t.co/hqswMHvLm9 +05/01/2018,Musicians,@MileyCyrus,#ConverseXMiley https://t.co/KSiRoXHeBN +05/01/2018,Musicians,@MileyCyrus,my bad ass fans modeling my @converse collection! OUT MAY 2! #ConverseXMiley https://t.co/Be5IU8aKI8 +05/01/2018,Musicians,@MileyCyrus,CATCH ME ON @JimmyKimmelLive TONIGHT AT 11:35|10:35c TO TALK ABOUT MY @Converse COLLECTION 💖💖 (Ps how cute are my b… https://t.co/iCMehPr9Xt +05/01/2018,Musicians,@MileyCyrus,OUT MAY 2. #ConverseXMiley @Converse https://t.co/HfFtnebHUu +04/30/2018,Musicians,@MileyCyrus,#ConverseXMiley https://t.co/PuolTo2D82 +04/29/2018,Musicians,@MileyCyrus,"IM NOT SORRY + +Fuck YOU #10yearsago https://t.co/YTJmPHKwLX" +04/29/2018,Musicians,@MileyCyrus,Sooo Harpers Bazaar https://t.co/XFjuIdfiHB +04/29/2018,Musicians,@MileyCyrus,Feeling myself... I’ll never forget the day I got this shirt from Fred Segal https://t.co/jpQ3rAocHO +04/29/2018,Musicians,@MileyCyrus,A picture says 1000 words... but this one only says two... FUCK YOU https://t.co/57JJZIDCbV +04/29/2018,Musicians,@MileyCyrus,Being extra AF! Thanks mom! @tishcyrus https://t.co/1iiBnxjY3O +04/27/2018,Musicians,@MileyCyrus,Slay diva! https://t.co/u3QXEb01bQ +04/24/2018,Musicians,@MileyCyrus,"Partyin w @LykkeLi +Bringing her some cons as a “fuck yeah bad ass record” present https://t.co/OUtRcH3lL8" +04/24/2018,Musicians,@MileyCyrus,Last night w big sis was LIT @aliciakeys https://t.co/55tAsYYzj9 +04/22/2018,Musicians,@MileyCyrus,I fucking hate when he does this shit https://t.co/kpmcHnW4Cz +04/22/2018,Musicians,@MileyCyrus,Happy Sunday! Have fun and get as me$$y as my hurr! https://t.co/hshMSmbU3g +04/20/2018,Musicians,@MileyCyrus,Mood! BECUZZ ‘Party In The USA’ is now #BRITcertified Platinum! 👅🇬🇧💿 https://t.co/dEvuJdRgtu +04/18/2018,Musicians,@MileyCyrus,https://t.co/fG2oeeBDLB +04/16/2018,Musicians,@MileyCyrus,HomeCHELLA! https://t.co/6RnCq6jKEu +04/14/2018,Musicians,@MileyCyrus,Guess where I’m at! https://t.co/VhtEEcxmqz +04/11/2018,Musicians,@MileyCyrus,💋👅💋👅 @eltonofficial https://t.co/ilgFI86rcg +04/11/2018,Musicians,@MileyCyrus,"RT @eltonofficial: I didn’t know about those fabulous glasses until @MileyCyrus put them on. Needless to say, I wanted a pair for myself! E…" +04/11/2018,Musicians,@MileyCyrus,RT @eltonofficial: Here we go and what a way to start this #EltonSalute! @MileyCyrus gives her all to everything she does and she took the… +04/11/2018,Musicians,@MileyCyrus,RT @eltonofficial: A superstar #EltonSalute begins in one hour with Elton John: I'm Still Standing - A GRAMMY® Salute! 9/8pm CT only on @CB… +04/10/2018,Musicians,@MileyCyrus,Tune in tonight! @RecordingAcad CBS https://t.co/kTiGecZAZw +04/08/2018,Musicians,@MileyCyrus,Thanks for a rockin night @MFPLA !!!! https://t.co/NjWu9EoG0A +04/08/2018,Musicians,@MileyCyrus,"Freaking out! @jackblack +The MFP gala has only been over for an hour & “Dude... I totally miss you...” https://t.co/gM2akiOrHh" +04/06/2018,Musicians,@MileyCyrus,https://t.co/oQj5qr6bel https://t.co/EMm1jBhXO4 +04/06/2018,Musicians,@MileyCyrus,BTS up! https://t.co/X11tlJq1RH https://t.co/Q310ViWXPY +04/06/2018,Musicians,@MileyCyrus,two new @eltonofficial covers for my fans… hope you like! ❤️❤️ https://t.co/mKFKy0FxDa #EltonREVAMP +04/06/2018,Musicians,@MileyCyrus,"RT @eltonofficial: A #NewMusicFriday with @edsheeran, @ladygaga, @QOTSA, @MileyCyrus + many more superstars all on one album! Join our #Elt…" +04/06/2018,Musicians,@MileyCyrus,Check out my reimagined cover of ‘Don’t Let The Sun Go Down On Me’ taken from REVAMP an album celebrating the songs… https://t.co/VvwCRNbZ5n +04/06/2018,Musicians,@MileyCyrus,#EltonREVAMP @eltonofficial https://t.co/4BB7Fw5MnA +04/01/2018,Musicians,@MileyCyrus,@iHeartRadio ❤️🐰❤️🐰 +04/01/2018,Musicians,@MileyCyrus,https://t.co/Cx5VLbjBNY +04/01/2018,Musicians,@MileyCyrus,Hoppy Eastahhhhh! https://t.co/hDJInanRNg +04/01/2018,Musicians,@MileyCyrus,https://t.co/wwRqqyVlon +03/31/2018,Musicians,@MileyCyrus,Check out my tumblr https://t.co/6LZZIKjvRu for BTS pics from my Easter shoot! https://t.co/VaQRX8WPdA +03/30/2018,Musicians,@MileyCyrus,Have a Hoppy Easter!!! https://t.co/Q3uVmZrBWo +03/30/2018,Musicians,@MileyCyrus,https://t.co/bIVkuBYX88 +03/30/2018,Musicians,@MileyCyrus,❤️🐰❤️🐰 https://t.co/55atM9Coiz +03/30/2018,Musicians,@MileyCyrus,@Z100NewYork @ArianaTodayNet ❤️❤️❤️❤️ +03/30/2018,Musicians,@MileyCyrus,Hoppy Easter Erbody! https://t.co/kgc1y9wuW5 +03/30/2018,Musicians,@MileyCyrus,https://t.co/6jU6k55l5N +03/30/2018,Musicians,@MileyCyrus,https://t.co/xmdUN3x7xb +03/30/2018,Musicians,@MileyCyrus,🐰🐰🐰 https://t.co/jbmUcv1Rs1 +03/30/2018,Musicians,@MileyCyrus,https://t.co/A6dXCaJ7M1 +03/30/2018,Musicians,@MileyCyrus,https://t.co/WL6hyms8wF +03/30/2018,Musicians,@MileyCyrus,https://t.co/nrw7A7CQm3 https://t.co/9XDxWjiPkw +03/27/2018,Musicians,@MileyCyrus,👅 Like mommy like daughter... https://t.co/rsO1B6qrvt +03/26/2018,Musicians,@MileyCyrus,love to make it to a show 💖 https://t.co/6gVIOS0NoJ +03/25/2018,Musicians,@MileyCyrus,Never Again! Gonna post pics from DC on my tumblr ! ❤️ https://t.co/X11tlJq1RH https://t.co/lM72JXqTBc +03/25/2018,Musicians,@MileyCyrus,@TheEllenShow ❤️❤️❤️ +03/25/2018,Musicians,@MileyCyrus,Look at how beautiful everyone in this crowd is!!!! Singing with all their heart! Makes me so happy and honored to… https://t.co/jPXohFNPha +03/25/2018,Musicians,@MileyCyrus,"our open wounds , on all our hurt , anger and resentment..... it was a beautiful day to experience.... that stage h… https://t.co/EXAjDQfnpr" +03/25/2018,Musicians,@MileyCyrus,I will never forget this moment..... don’t forget this feeling of unity we had the joy of experiencing yesterday...… https://t.co/zukJwEYfBR +03/24/2018,Musicians,@MileyCyrus,Been friends forever & happy to stand with you on important days like this! https://t.co/gtb5GnFaDp +03/24/2018,Musicians,@MileyCyrus,https://t.co/BRtkTur1QE +03/24/2018,Musicians,@MileyCyrus,https://t.co/uqvQjYX4LN +03/24/2018,Musicians,@MileyCyrus,"RT @AMarch4OurLives: Watch LIVE as we #MarchForOurLives in the streets of Washington, DC to demand that we end gun violence and mass shooti…" +03/24/2018,Musicians,@MileyCyrus,"If you can't join us at #MarchForOurLives today, watch LIVE starting at 12pm EST on https://t.co/sxLIqHxnXN" +03/24/2018,Musicians,@MileyCyrus,Selfies and Licks w @noahcyrus ! It’s a very special morning #MarchForOurLives https://t.co/aWuFWweOKt +03/24/2018,Musicians,@MileyCyrus,Millennials taking over! 🖤 #MarchForOurLives https://t.co/Kuj2uBQYtB +03/24/2018,Musicians,@MileyCyrus,Surrounded by heroines! Lucky to be here at this moment in history with the ones I love! #MarchForOurLives https://t.co/xVF4sDVofh +03/24/2018,Musicians,@MileyCyrus,These lyrics mean more to me now than ever. I won’t ever give up & neither will the millions that march with us tod… https://t.co/ml9jAjww7e +03/24/2018,Musicians,@MileyCyrus,NEVER AGAIN! We call BS! Love Wins! https://t.co/cfA91u5tm8 +03/24/2018,Musicians,@MileyCyrus,Proud to be apart of the #MarchForOurLives here in DC! ❤️❤️❤️ https://t.co/ZXKnEFyR28 +03/23/2018,Musicians,@MileyCyrus,Meeting the amazing #SHINEMSD group! Can’t wait for their performance https://t.co/Ge9vbAhOu2 +03/23/2018,Musicians,@MileyCyrus,Be there!!! https://t.co/HsxTbsXYoM https://t.co/yc4NZEaxiX +03/23/2018,Musicians,@MileyCyrus,Big sissy day! So happy @BrandiCyrus is with me for such a special moment! #MarchForOurLives PS I Love DC! Such an… https://t.co/rdR8vuSmBr +03/23/2018,Musicians,@MileyCyrus,So excited to be here and apart of the @AMarch4OurLives! #MSDStrong #NeverAgain https://t.co/1XemF2VdgG +03/23/2018,Musicians,@MileyCyrus,Happiest Bday 2 THE dude! @MikeWiLLMadeIt My life is complete because you’re in it! Let’s keep makin HITz till we’r… https://t.co/VVrM38sCrp +03/20/2018,Musicians,@MileyCyrus,So inspired by the incredible students behind #MarchForOurLives. Can’t wait to join them in DC to perform and show… https://t.co/ViP9HFLw8R +03/20/2018,Musicians,@MileyCyrus,Thanks dude! ❤️❤️❤️❤️ https://t.co/1tQYaOuHha +03/20/2018,Musicians,@MileyCyrus,https://t.co/GtLNq6RqQe +03/20/2018,Musicians,@MileyCyrus,BE YOU 2 FUL #BeautyTime https://t.co/TVU5djA5BP +03/20/2018,Musicians,@MileyCyrus,Pamper YoSELF! #DateNightWithME! https://t.co/ZqenP7SWms +03/19/2018,Musicians,@MileyCyrus,RU-TOX! Perfect start to a week! Is watching old @RuPaulsDragRace episodes you’ve seen a million times and sweatin… https://t.co/MSPGjOBD1F +03/19/2018,Musicians,@MileyCyrus,"Fun is a rainbow +Friends are the pot of gold! https://t.co/TpGClsMeQq" +03/17/2018,Musicians,@MileyCyrus,https://t.co/nSGYWCImul +03/17/2018,Musicians,@MileyCyrus,RFD @OffsetYRN @iamcardib https://t.co/AOvYlJJThH +03/17/2018,Musicians,@MileyCyrus,https://t.co/RDzsP3FDWo +03/17/2018,Musicians,@MileyCyrus,Itszzzzz EZ being green! Happy St Pattys https://t.co/A8PCR0VAq0 +03/16/2018,Musicians,@MileyCyrus,https://t.co/42iunNnGeD https://t.co/VQzWOwMbIS +03/16/2018,Musicians,@MileyCyrus,.@shineMSD #MSDStrong #NeverAgain @AMarch4OurLives 💛💛💛 @happyhippiefdn +03/16/2018,Musicians,@MileyCyrus,"Please support the powerful message of change, unity and healing from student survivors of the #StonemanDouglas sho… https://t.co/B5jxkUd1vy" +03/16/2018,Musicians,@MileyCyrus,https://t.co/vv1scZaAhL +03/15/2018,Musicians,@MileyCyrus,"I’ve never wanted to be boxed in by anything, especially genre, and @eltonofficial gave me the freedom to participa… https://t.co/sKkKANr0gy" +03/14/2018,Musicians,@MileyCyrus,https://t.co/REXBbq1yfA +03/14/2018,Musicians,@MileyCyrus,"Proud of all of you! Never give up! You are THE change! + +So amazing to see young peo… https://t.co/sOiFn1EQAM" +03/13/2018,Musicians,@MileyCyrus,https://t.co/iu20fBpqi2 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack https://t.co/0tY7aAVfQ9 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack https://t.co/vUZvC3XLD0 +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack April 10th on CBS! @eltonofficial #ImStillStanding #GRAMMYSalute https://t.co/YGNcWWcSOJ +03/13/2018,Musicians,@MileyCyrus,"Proud to be opening the I’m Still Standing @eltonofficial #GRAMMYSalute April 10 at 9p.m., ET/PT on @CBS. Don't miss it! #BitchIsBack" +03/13/2018,Musicians,@MileyCyrus,#BitchIsBack Announcement today! @eltonofficial https://t.co/nmRBUwD6MD +03/08/2018,Musicians,@MileyCyrus,Happy International Women’s Day! https://t.co/PMOsOuwI86 +03/07/2018,Musicians,@MileyCyrus,https://t.co/Bj9FhlgtLq 💋 https://t.co/TevKrnXOZY +03/07/2018,Musicians,@MileyCyrus,Behind the scene of @wonderlandmag !!! Check out more pics on my tumblr! https://t.co/Bj9Fhly5a0 https://t.co/nGEzFERiBc +03/06/2018,Musicians,@MileyCyrus,https://t.co/wLOTq2SToc +03/05/2018,Musicians,@MileyCyrus,https://t.co/ahhHIv8KU6 +03/05/2018,Musicians,@MileyCyrus,https://t.co/ehLyA03vrx +06/29/2018,Musicians,@kelly_clarkson,Yaaasssss!!!! Please let me know when y’all play in LA!! So proud of y’all!!!! https://t.co/nHLeYeqyhn +06/26/2018,Musicians,@kelly_clarkson,"✨Well that was fun @radiodisney Music Awards! ✨ - Team KC + +https://t.co/fVjdNpbqgL" +06/26/2018,Musicians,@kelly_clarkson,Now we are ready for the 4th of July. Thanks @Macys 😜 🎆 – Team KC https://t.co/Vt1jU2voGG +06/23/2018,Musicians,@kelly_clarkson,Y’all ready?! The 2018 @radiodisney Music Awards airs tonight at 8:00 pm ET/PT on the @DisneyChannel ! – Team KC https://t.co/QjephGLhq4 +06/20/2018,Musicians,@kelly_clarkson,"🔥Have y’all seen this!? Watch Kelly perform “Heat” live in the studio! 🔥 – Team KC + +https://t.co/DNDoPlOnJH" +06/15/2018,Musicians,@kelly_clarkson,We love the @iHeartRadio Music Festival! It’s a great weekend and we hope to see you there! Get your… https://t.co/uYnjJFl5au +06/15/2018,Musicians,@kelly_clarkson,I’m thrilled to be part of this incredible track by @DanAndShay ! Check out #KeepingScore today and stay tuned for… https://t.co/wOAT1R43ZV +06/15/2018,Musicians,@kelly_clarkson,Is it odd that going to the bathroom for a parent feels sort of like a tiny vacation just for you away from tiny hu… https://t.co/gPteQcWaNN +06/14/2018,Musicians,@kelly_clarkson,"Make sure to watch the @radiodisney music awards #RDMA Saturday, June 23 at 8p on @DisneyChannel! – Team KC https://t.co/YbLCcrxQ20" +06/14/2018,Musicians,@kelly_clarkson,RT @boringcompany: We’re really excited to work with the Mayor and the City to bring this new high-speed public transportation system to Ch… +06/13/2018,Musicians,@kelly_clarkson,Y’all! Kelly is up for a #TeenChoice @TeenChoiceFox Award! RETWEET this to vote for @kelly_clarkson as… https://t.co/NEyRrbRzug +06/13/2018,Musicians,@kelly_clarkson,RT @TeenChoiceFOX: Get ready to move those thumbs — voting is officially OPEN for the 2018 #TeenChoice Awards! 🙌🎉 Submit your vote by tweet… +06/13/2018,Musicians,@kelly_clarkson,🤣🤣🤣💁🏼‍♀️ https://t.co/wzRZgMB4Mo +06/13/2018,Musicians,@kelly_clarkson,"Yes, but the first computer was enormous and now one fits in my back pocket.... so I’m just saying we can’t be that… https://t.co/1GVKOFoCw3" +06/13/2018,Musicians,@kelly_clarkson,Yes!! https://t.co/kq71MjObhU +06/12/2018,Musicians,@kelly_clarkson,Who wants to celebrate July 4th with us?! Don’t miss Kelly’s #MacysFireworks performance on @nbc ! 🎆 - Team KC https://t.co/c1l1rDpiEn +06/12/2018,Musicians,@kelly_clarkson,Once they do figure it out imagine the possibilities 4 not only all forms of transportation but solar everything. I… https://t.co/swCXz9nzuf +06/12/2018,Musicians,@kelly_clarkson,Ooh Audi is doing it! Thanks @jasonhalbert for the info. https://t.co/0Zvcbg1QLv +06/12/2018,Musicians,@kelly_clarkson,"Hahaha! Okay, but imagine all the money you spend regularly on gas. I haven’t been to a gas station in like 3 years… https://t.co/suIn3zlHWw" +06/12/2018,Musicians,@kelly_clarkson,This is probably a dumb question but why doesn’t @Tesla install their solar energy capabilities on their cars? Then… https://t.co/nBJ6LopaRc +06/09/2018,Musicians,@kelly_clarkson,Loving my recent pick. Great read! #KCBookClub #NerdsAreCool 😜 https://t.co/PfPi1eDbga +06/09/2018,Musicians,@kelly_clarkson,Proud of you @AlexaCappelli now go conquer the world! 😊🙌😎👣👩🏼‍🎓🎤 https://t.co/ymZ2ziTvlr +06/09/2018,Musicians,@kelly_clarkson,Congrats @BrittonBuchanan and proud mama @Sybuchanan1 😊🙌 https://t.co/2kqxIC5Emw +06/08/2018,Musicians,@kelly_clarkson,So proud of my girl @BrynnCartelli for killing it on @TODAYshow this morning. https://t.co/CDwv6LqGqi +06/08/2018,Musicians,@kelly_clarkson,Sweet.... where does one enter to sing with you? #AskingForAFriend 😏 https://t.co/cswrZ7jawn +06/08/2018,Musicians,@kelly_clarkson,Tonight’s the night for @americanwomantv ! Now we can watch the premiere tonight at 10/9c on @paramountnet . - Team… https://t.co/1tiklyndHI +06/07/2018,Musicians,@kelly_clarkson,"RT @Shazam: #Shazam @kelly_clarkson's performance on the @TODAYshow tomorrow morning for the chance to win a signed limited edition gold ""M…" +06/07/2018,Musicians,@kelly_clarkson,I FINALLY GOT BLAKE TO HOLD UP HIS END OF THE DEAL AND CALL ME QUEEN FOR WINNING!! 🤣🤣 LOVED that it happened at his… https://t.co/Lr7hkjDyVK +06/07/2018,Musicians,@kelly_clarkson,She is one of my favorites 😊 nothing like a girl in jeans simply singing a great song and creating an intimate envi… https://t.co/8J9YCOTvJl +06/06/2018,Musicians,@kelly_clarkson,In case you missed it! ✨ Kelly is officially performing at the @CMT Music Awards TONIGHT!! #AmericanWoman ✨ - Team… https://t.co/VlLX1PB3en +06/06/2018,Musicians,@kelly_clarkson,I’m gonna buy it on iTunes and vinyl!! #SupportArt #FanForLife 🙌💁🏼‍♀️ https://t.co/W6V9iI7KoH +06/06/2018,Musicians,@kelly_clarkson,Exactly! 😂 https://t.co/4gPkpqqpJv +06/06/2018,Musicians,@kelly_clarkson,Yaaassss!!! See y’all soon!! ❤️😊 https://t.co/c7e7LkiNZm +06/06/2018,Musicians,@kelly_clarkson,Yes and yes!!! From this video alone I am certain we could be friends 🤣💁🏼‍♀️😎 https://t.co/A2fTwqUzK7 +06/06/2018,Musicians,@kelly_clarkson,LOVE these two!! https://t.co/p07UU4y3CX +06/06/2018,Musicians,@kelly_clarkson,If it had anything to do with poking fun at me I full on give you permission 🤣💁🏼‍♀️ #LetBobbyTellHisJoke… https://t.co/Xm7jdexLOa +06/06/2018,Musicians,@kelly_clarkson,@ZacharyRob37 @carrieunderwood I’m so sorry. The love received from a four-legged friend is priceless. +06/05/2018,Musicians,@kelly_clarkson,Thank you @carrieunderwood This apparel cake idea was adorable! I’m just now receiving it because it’s been at Star… https://t.co/iifDDzFWdr +06/05/2018,Musicians,@kelly_clarkson,Um.... I am incredibly excited about this!! 🎉🙌❤️ https://t.co/pkQBgXwlwq +06/05/2018,Musicians,@kelly_clarkson,🌈 Happy Pride Month 🌈 Shop the Official Webstore now to get your FREE gift with any purchase at… https://t.co/krxpTXizyy +06/05/2018,Musicians,@kelly_clarkson,Come be in the PIT while Kelly performs at the 2018 CMT Music Awards on June 6! Request FREE tickets to join her v… https://t.co/JzsOwpvAFF +06/04/2018,Musicians,@kelly_clarkson,This little nugget has me wrapped around his little finger ❤️💁🏼‍♀️😊 #RemyB #FarmLife https://t.co/lK0C4GnD2d +06/04/2018,Musicians,@kelly_clarkson,Love it @JmpSings #LoveNHate get it girl!! 🙌❤️ https://t.co/0C0CzM6OPS +06/03/2018,Musicians,@kelly_clarkson,Thanks for having me again #WarriorGames It’s always an honor to perform for y’all and it’s always a great time!… https://t.co/kPgiuxT5UN +06/02/2018,Musicians,@kelly_clarkson,"Um.... YES!! Also, I can’t wait to see @gwenstefani in Vegas!!! https://t.co/b3EHwsWx99" +06/02/2018,Musicians,@kelly_clarkson,This might be my new favorite tweet 🤣 #ChristmasInJune #NeverTooSoon https://t.co/94ZsPANevf +06/02/2018,Musicians,@kelly_clarkson,Tweet 💁🏼‍♀️ https://t.co/5mfPm6cL6G +06/02/2018,Musicians,@kelly_clarkson,Yes ladies!! Can’t wait to do this live!! 😎 https://t.co/xzJAbe9NnE +06/01/2018,Musicians,@kelly_clarkson,Had such a great time @topgolf #Nashville 🙌❤️👍 if you haven’t been you HAVE to go!! #TheLeague #RockyRocks ❤️#IActuallyWasntHorrible 💁🏼‍♀️ +05/30/2018,Musicians,@kelly_clarkson,Absolutely nothing is wrong with natural. I sport it every day of my life unless I’m working because at the end of… https://t.co/LeKADYhy08 +05/30/2018,Musicians,@kelly_clarkson,Oh my gosh you’re hilarious! 🤣 if I could I would totally be there! Y’all go check out my boy @WILKESmusic 😎 https://t.co/RANoA1QnzM +05/30/2018,Musicians,@kelly_clarkson,Yes!!! #WalkMyWay @BrynnCartelli https://t.co/9AodXxsqXY +05/29/2018,Musicians,@kelly_clarkson,The night @BrynnCartelli won #TheVoice me & my glam squad decided show people the before/after so every little girl… https://t.co/Rh9NYYcxxB +05/29/2018,Musicians,@kelly_clarkson,Is it just me or is @ChrisStapleton looking at me in this picture longing to sing a duet with me?? 🤣💁🏼‍♀️😎… https://t.co/ZOAD1jBHhn +05/29/2018,Musicians,@kelly_clarkson,@jasonhalbert + @iamjessicollins = How that monologue happened 🙌❤️ and it was so much fun!! https://t.co/Omo7XDcuG8 +05/29/2018,Musicians,@kelly_clarkson,Yes!! 🎉🎉🎉❤️❤️❤️🙌🙌🙌😎😎😎 https://t.co/dyUW9XtmUh +05/29/2018,Musicians,@kelly_clarkson,"I think I’m gonna take a chance and kiss him ..... +💁🏼‍♀️ https://t.co/7SVApgP3KJ" +05/27/2018,Musicians,@kelly_clarkson,Thank you so much @IMS for having me!! Y’all know how to have good time 😜 #Indy500 https://t.co/bD0FUMPRN7 +05/27/2018,Musicians,@kelly_clarkson,YES WE CAN!!! C’mon y’all #SameOleJaneDoe https://t.co/2g7fhK8VRc +05/27/2018,Musicians,@kelly_clarkson,Oh my gosh I just saw @JohnMayer new video for #NewLight and it’s my favorite thing EVER!!! You are the funniest pe… https://t.co/aKyXZTdXBZ +05/27/2018,Musicians,@kelly_clarkson,Yes girl 😜 I call it the #ModernMullet https://t.co/5pUXVJWRqc +05/27/2018,Musicians,@kelly_clarkson,"Anyone trying out 4 #TheVoice next season that sounds remotely like this angel, I want u on my team! Please pick me… https://t.co/6m1BB8UiY4" +05/24/2018,Musicians,@kelly_clarkson,@BrynnCartelli @NBCTheVoice @TwitterLA #AskBrynn What are some of your favorite artists that I know you love but ma… https://t.co/PEVJGgWjem +05/24/2018,Musicians,@kelly_clarkson,"@kalebleemusic @itsjackieverna @BairdPryor I missed y’all on the finale BUT that’s okay, it just means I’ll have to… https://t.co/yMElE1iq3p" +05/23/2018,Musicians,@kelly_clarkson,@CedEntertainer is so competitive 😜🤣💁🏼‍♀️ https://t.co/7eH0rswhpb +05/23/2018,Musicians,@kelly_clarkson,"We did it.. and we couldn’t have done it without y’all!! As a special thank you, use code ‘BRYNNFORTHEWIN’ for a sp… https://t.co/4WTedqYRtC" +05/23/2018,Musicians,@kelly_clarkson,So lovely to see you girl! Love the new hair and you sounded amazing! https://t.co/sLpywQyotQ +05/23/2018,Musicians,@kelly_clarkson,"Y’all can now go behind the scenes of the “Meaning Of Life” music video! Check it out! + +Watch it here: https://t.co/q2oZ9UAkcq + +- Team KC" +05/23/2018,Musicians,@kelly_clarkson,We did it y’all!!! @BrynnCartelli is your Season 14 winner of @NBCTheVoice !! 🌟 - Team KC https://t.co/TgvEzXRyWs +05/23/2018,Musicians,@kelly_clarkson,✨We can’t wait for this y’all! Kelly is officially performing at the @CMT Awards!! #AmericanWoman ✨ - Team KC https://t.co/1lmkcvCaRP +05/23/2018,Musicians,@kelly_clarkson,OH MY GOSH I AM SO HAPPY FOR HER HODA!!!!! https://t.co/ULT4KAdIis +05/23/2018,Musicians,@kelly_clarkson,Because you’re always so supportive! Thank you for being so kind and funny 😊🙌😎❤️ https://t.co/5MlVkZ7mWU +05/23/2018,Musicians,@kelly_clarkson,"Um I completely rushed the stage to meet you because I’m such an uber fan! 🤣 Seriously, what an amazing gift it was… https://t.co/9OLKuTxgnE" +05/23/2018,Musicians,@kelly_clarkson,YAAASSSSS #TeamKelly thank y’all so much for making my world work and for being supportive and loving and such awes… https://t.co/GQxBbnSol3 +05/23/2018,Musicians,@kelly_clarkson,The Voice Finale outfit!! ✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Nails: @nailsbytsha Dre… https://t.co/YBpWmR0gNm +05/22/2018,Musicians,@kelly_clarkson,Yaaasssss @itsjackiefoster 🎉🎉🙌🙌❤️❤️ #WalkMyWalk https://t.co/VE3DFzpIh5 +05/22/2018,Musicians,@kelly_clarkson,"In case you missed the @BBMAs check out Kelly’s performance of “Whole Lotta Woman”! + +See it here: https://t.co/ApulU4MTyO + +– Team KC" +05/22/2018,Musicians,@kelly_clarkson,I can’t wait!! 😊🎉🙌💁🏼‍♀️❤️ https://t.co/mHomKwYMc3 +05/22/2018,Musicians,@kelly_clarkson,Yes. Yes it was. 🤣🤣🤣 https://t.co/9tJgcX0LVg +05/22/2018,Musicians,@kelly_clarkson,ABSOLUTELY YES!!!! https://t.co/AcrF5mY71Q +05/22/2018,Musicians,@kelly_clarkson,"Don’t mind me, just jammin’ to my girl @BrynnCartelli new single #WalkMyWay YAAASSSSS!!!! 🎉🙌❤️😎 I love this girl y’… https://t.co/qqu7UBNMdF" +05/22/2018,Musicians,@kelly_clarkson,The @NBCTheVoice finale is here! Do y’all remember the jersey’s that were given to contestants in the blind auditio… https://t.co/3TxroiU1Vf +05/21/2018,Musicians,@kelly_clarkson,Can’t wait to hang in New York soon! Miss y’all 😊💁🏼‍♀️❤️ #TodayShow #KathieLeeAndHoda #GoodTimesPartyForAll https://t.co/JZUp0TR2zv +05/21/2018,Musicians,@kelly_clarkson,I CANNOT WAIT FOR TONIGHT!BRYNN’S NEW SINGLE #WalkMyWay duet #DontDreamItsOver new cover #Skyfall BRYNN 4 THE WIN Y… https://t.co/FpxnIjS7te +05/21/2018,Musicians,@kelly_clarkson,"You and your team are so rad man! Everything you make me is so unique, sassy, and gorgeous!! Thank you again… https://t.co/JPYMF76M3V" +05/21/2018,Musicians,@kelly_clarkson,"Sir, coming from you that is quite the compliment 😊❤️ https://t.co/1Ufm62pZC2" +05/20/2018,Musicians,@kelly_clarkson,✨ Here we go @BBMAs ! #BBMAs ✨ -Team KC https://t.co/PE9U8RLjeP +05/20/2018,Musicians,@kelly_clarkson,I love this @ambersauer 🎉🎉🎉🙌❤️ https://t.co/s0F0nCSPMI +05/18/2018,Musicians,@kelly_clarkson,"Check this out! You can now duet with Kelly on @smule ! Sing ""I Don't Think About You"" and ""Whole Lotta Woman""! –… https://t.co/2b8stYYjoY" +05/18/2018,Musicians,@kelly_clarkson,I wish!! I loved y’alls performance! Y’all had me dancing and singing 😆🎉❤️ https://t.co/dHyU4QYHym +05/18/2018,Musicians,@kelly_clarkson,Love this ❤️ killer job @DBradbery https://t.co/gaWb27i8Ju +05/18/2018,Musicians,@kelly_clarkson,Are you guys ready for the @BBMAs this Sunday?! #BBMAs – TEAM KC https://t.co/G5O08ts0Wj +05/18/2018,Musicians,@kelly_clarkson,THANKS GIRL ❤️😊 I’ve been a fan since #Clueless https://t.co/sxAvRL15OH +05/18/2018,Musicians,@kelly_clarkson,My disco diva nailed her first performance ever!! #RiverRose #ProudMomAlert 😊❤️ kid concerts are the greatest! https://t.co/VSoUqKY3qM +05/17/2018,Musicians,@kelly_clarkson,✨The premiere of @AmericanWomanTV is almost here! Tune in June 7th at 10/9c on @Paramountnet #AmericanWomanTV ✨- T… https://t.co/bfM8s1iBy3 +05/16/2018,Musicians,@kelly_clarkson,This ❤️🙏😊 #TeamKalebForever https://t.co/0o10JSENyY +05/16/2018,Musicians,@kelly_clarkson,We are behind the scenes at the @BBMAs photoshoot! Catch Kelly hosting AND performing on MAY 20th! #BBMAs - Team KC https://t.co/v51SgofFks +05/16/2018,Musicians,@kelly_clarkson,I’m not even sad for @kalebleemusic tonight because this is just the beginning and he was incredible tonight! Thank… https://t.co/mGSehaOeM5 +05/16/2018,Musicians,@kelly_clarkson,RT @NBCTheVoice: Retweet to #VoiceSaveKaleb https://t.co/aS7tLQEL5K +05/16/2018,Musicians,@kelly_clarkson,Please y’all! Let’s save @kalebleemusic ! Make sure to use #VoiceSaveKaleb when the voting window opens! We need as… https://t.co/M1Q7PcozUR +05/16/2018,Musicians,@kelly_clarkson,Get ready to Instant Save @kalebleemusic on @NBCTheVoice !!! Wait until the voting window opens! Let’s save him! +05/15/2018,Musicians,@kelly_clarkson,YAAASSSS!!!! https://t.co/80xM7vo7Ar +05/15/2018,Musicians,@kelly_clarkson,I love all this female power and energy!! Yes ladies!! #TeamBrynn 😊❤️😎 https://t.co/yqlrDqZIfw +05/15/2018,Musicians,@kelly_clarkson,HELL YES!!!! https://t.co/8KqwB56Y4T +05/15/2018,Musicians,@kelly_clarkson,The lives got me like.. #VoteBrynn #VoteKaleb #TheVoice @nbcthevoice https://t.co/yn9qqMyqAY +05/15/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 MUA: @gloglomakeup Hair: @robertramoshair Jumpsuit: @temperleylondon Belt: @dolcegabbana Jew… https://t.co/d8Y1GXX67d +05/14/2018,Musicians,@kelly_clarkson,MY MIND IS BLOWN #Timeless ....I am so happy right now I don’t know what to do. How will I sleep? What in the world… https://t.co/Fz28xglQE5 +05/14/2018,Musicians,@kelly_clarkson,Watching #Timeless finale and I LOVE The General!! Yes!! This show is so cool. I can’t believe this might not be re… https://t.co/2ZTgTD9KmA +05/14/2018,Musicians,@kelly_clarkson,For Mother’s Day I am watching my 3 year old on her baby cam pacing her room and acting out times she’s been in tro… https://t.co/B9BpQucGbo +05/13/2018,Musicians,@kelly_clarkson,ACTIVATING @BBMAs ONE WEEK COUNTDOWN. 05.20 at 8 ET/5 PT on NBC. #KELLY_BBMAs - Team KC https://t.co/GVwPiafllm +05/13/2018,Musicians,@kelly_clarkson,"Happy Mother’s day to all the moms out there! Here is our gift to you! + +WATCH HERE: https://t.co/Rzy8BJW6sS +– Team… https://t.co/vPj1JuAVIW" +05/13/2018,Musicians,@kelly_clarkson,I LOVE THIS!!!! 😊 https://t.co/OADUd8iESy +05/12/2018,Musicians,@kelly_clarkson,"RT @people: Blake Shelton & Kelly Clarkson Team Up for @NBCTheVoice Edition of @hqtrivia to Help Fans Win $50,000 https://t.co/9gfdV7BPHn #…" +05/12/2018,Musicians,@kelly_clarkson,"WHAT IS LIFE??!!!!! I can’t believe I just ran into WYATT!!!!! Literally, best mother’s day weekend ever!!! +PLEASE… https://t.co/PBARTNS8YG" +05/11/2018,Musicians,@kelly_clarkson,"This whole experience is a beautiful moment that @BrittonBuchanan his mother, & his family are sharing. Please don’… https://t.co/Dsl1rv6cZK" +05/11/2018,Musicians,@kelly_clarkson,HACKED!! Big #TheVoice announcement from @IAMJHUD ... https://t.co/7ZSCSVF5HR +05/10/2018,Musicians,@kelly_clarkson,RT @IMS: BREAKING: Grammy Award-winning superstar @kelly_clarkson will perform the National Anthem before the start of the #102ndRunning of… +05/10/2018,Musicians,@kelly_clarkson,I’m so happy you like it! #madewithlovenotperfection 😜😂❤️💁🏼‍♀️ https://t.co/h0TrjXuC4B +05/09/2018,Musicians,@kelly_clarkson,We made it! 🙌 #Top8 #thevoice @NBCTheVoice https://t.co/36VsQx9kzm +05/09/2018,Musicians,@kelly_clarkson,Oh my gosh Dylan HAPPY BIRTHDAY!!!!!! 🎉🎂🎈#SameOleJaneDoe https://t.co/F2TLbkeAMQ +05/09/2018,Musicians,@kelly_clarkson,"✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Shirt & Skirt @gucci Belt @altuzarra +Shoes… https://t.co/GYIEe1wwZk" +05/08/2018,Musicians,@kelly_clarkson,"Go ahead with those sexy, mysterious cowboy poses @kalebleemusic 😎💁🏼‍♀️🙌 https://t.co/CtHY4CB1Zm" +05/08/2018,Musicians,@kelly_clarkson,🤣🤣🤣 we were going for that 80’s rock band ballad look 😜 miss hearing you on the show Wilkes! https://t.co/GOEaGha7QJ +05/08/2018,Musicians,@kelly_clarkson,"Stranger asking my mom: “What’s your name?” +Mom to Stranger: “I’m Kelly Clarkson’s mom.” 🤣🤣🤣 (by the way I wasn’t… https://t.co/2C56ZvwS02" +05/08/2018,Musicians,@kelly_clarkson,@tamyragray Thanks girl!! I literally just finished talking about you in an interview! +05/08/2018,Musicians,@kelly_clarkson,In case you missed the performance of “I Don’t Think About You” on @NBCTheVoice here you go!! ✨💕 - Team KC https://t.co/YLhVl0xIww +05/08/2018,Musicians,@kelly_clarkson,@ajgeagan5800 HAPPY BIRTHDAY 🎈 🎉🎂 +05/08/2018,Musicians,@kelly_clarkson,....the part where Joe Fox comes around the corner 2 meet Kathleen Kelly for the big reveal #YouveGotMail 😭💁🏼‍♀️❤️… https://t.co/U7NC52MObl +05/08/2018,Musicians,@kelly_clarkson,Yaaaassss! #quiltingismyjam ....but don’t look 2 closely because it sort of looks like a high school home economics… https://t.co/Y2MY5Viyl1 +05/08/2018,Musicians,@kelly_clarkson,Here is how to vote for @BrynnCartelli!! Get to voting!!! https://t.co/gmumDZ52sK +05/08/2018,Musicians,@kelly_clarkson,This girl is special y'all! Get your votes in for @BrynnCartelli https://t.co/w8hFk4R37M +05/08/2018,Musicians,@kelly_clarkson,@BrynnCartelli This girl is special y'all!! Get your votes in! https://t.co/w8hFk4R37M +05/08/2018,Musicians,@kelly_clarkson,✨ The Voice show look - Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @dolcegabbana Belt:… https://t.co/zujyJ7Wvsc +05/08/2018,Musicians,@kelly_clarkson,✨IDTAY performance look - Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @moniquelhuillier… https://t.co/kjo7DIRLZ0 +05/08/2018,Musicians,@kelly_clarkson,Remember that time I said vote for @kalebleemusic!!? #VoiceTop10 +05/08/2018,Musicians,@kelly_clarkson,Listen to @kalebleemusic! https://t.co/BWwCOnUP2e +05/08/2018,Musicians,@kelly_clarkson,Y'all better be voting for @kalebleemusic!! #VoiceTop10 https://t.co/XfINWQq3hC +05/07/2018,Musicians,@kelly_clarkson,"Make sure to @Shazam the performance of ""I Don't Think About You"" on @NBCTheVoice tonight for a chance to win a sig… https://t.co/pVfUVgWfau" +05/07/2018,Musicians,@kelly_clarkson,In case you missed it! Kelly is stepping out of the chair and onto @NBCTheVoice stage✨ TONIGHT ✨ to sing her single… https://t.co/rVlYO7opyu +05/07/2018,Musicians,@kelly_clarkson,You’re gonna kill it @brynncartelli 😜❤️🙌 #Vote https://t.co/0jzJOEISGg +05/07/2018,Musicians,@kelly_clarkson,Um 😐....hi 😊💁🏼‍♀️ ....and yes please! 😂 #IHopeYouEndUpWithFlynn ....I know you’re a real person but in my brain mov… https://t.co/9k2qjbZxlF +05/07/2018,Musicians,@kelly_clarkson,Exactly! ....nice pun 😎 live tweet #Timeless Let’s do this! I literally don’t know ANYONE on this show and have no… https://t.co/s5K0AFn1I1 +05/07/2018,Musicians,@kelly_clarkson,"@luanh2001 Super, thanks for asking 😜" +05/07/2018,Musicians,@kelly_clarkson,That’s the spirit!! 🤣 it’s so great! You should watch or DVR if you’re busy. I love it! #RenewTimeless https://t.co/GFqpU5Uv7B +05/06/2018,Musicians,@kelly_clarkson,#Timeless got me feelin’ like.... https://t.co/k4OftNlskq +05/06/2018,Musicians,@kelly_clarkson,"In a world where reality can be terrifying and depressing, isn’t it great to have a show on that is fun, historical… https://t.co/oHa5z7l50b" +05/06/2018,Musicians,@kelly_clarkson,#RenewTimeless https://t.co/L8PgBCwUI3 +05/06/2018,Musicians,@kelly_clarkson,You are 100% correct. I actually forgot the song #Timeless even existed 🤣🤣🤣 but thank you for the reference!… https://t.co/33rdOhLaF1 +05/06/2018,Musicians,@kelly_clarkson,I once recorded a duet titled #Timeless and although it was good it was nothing compared to #NBCTimeless the show.… https://t.co/2jKmIhqFHV +05/06/2018,Musicians,@kelly_clarkson,"Hosting the Billboard Awards on May 20th is gonna be #Timeless ....RENEW TIMELESS PLEASE 😊💁🏼‍♀️ ....yep, I’m not even close to being done." +05/06/2018,Musicians,@kelly_clarkson,Just sitting here thinking about how #Timeless #TheVoice is 😜 ....see what I did there. Oh yes there are so many mo… https://t.co/CJNgP0Hyex +05/06/2018,Musicians,@kelly_clarkson,"Y’all I love this show! Please everyone tweet tonight so they renew it! It’s creative, different from everything el… https://t.co/FIQDfzO5Ml" +05/04/2018,Musicians,@kelly_clarkson,"The Gold #MeaningOfLife Vinyl is available NOW! Pick up your Limited Edition copy today, only at… https://t.co/MwFx5XF7t7" +05/04/2018,Musicians,@kelly_clarkson,Um.... I feel I should apologize in advance if I ever see y’all around on the lot and totally nerd out 😬 ....and YE… https://t.co/9XqmBEKDUw +05/04/2018,Musicians,@kelly_clarkson,Yes!!! Vote Vote Vote!!! https://t.co/Xdj2TGRxrW +05/03/2018,Musicians,@kelly_clarkson,🤔 https://t.co/IrYiZIXey8 +05/03/2018,Musicians,@kelly_clarkson,YAAASSSS!!!! https://t.co/dIzyypBDdM +05/03/2018,Musicians,@kelly_clarkson,....because it’s great! #listentothepeople 😜💁🏼‍♀️ https://t.co/L6Hjzi8WIT +05/03/2018,Musicians,@kelly_clarkson,✨Hope y’all love the ‘American Woman’ cover for @AmericanWomanTV! We can’t wait for the premiere June 7th at 10/9c… https://t.co/N23h14XuQz +05/03/2018,Musicians,@kelly_clarkson,Mia might be one of the most beautiful babies I’ve ever seen! How precious is that face?! 😊❤️ https://t.co/xXSZyByQiN +05/03/2018,Musicians,@kelly_clarkson,Excited to announce that I am not just HOSTING the @BBMAs but I am PERFORMING as well! Tune-in May 20 at 8e|5p on N… https://t.co/40tSRIME6V +05/03/2018,Musicians,@kelly_clarkson,Okay somebody has got to get this man a pass 🤣🤣🤣 he deserves it! 😜💁🏼‍♀️ https://t.co/PQjLXe4JmH +05/03/2018,Musicians,@kelly_clarkson,I LOVE MY TEAM!!!!!!!! #Brynn #Kaleb ❤️❤️❤️ https://t.co/vlGXtgulTl +05/02/2018,Musicians,@kelly_clarkson,"These are some real heroes, y’all! Proud to announce Kelly will be performing for our service members at… https://t.co/nzWKi2g4aO" +05/02/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Leather: @balmain Dress: @dolcegabbana Shoes:… https://t.co/E9MU6nG43r +05/01/2018,Musicians,@kelly_clarkson,"Hey Los Angeles! Kelly is throwing a concert live from The Voice stage in LA and you can enter to attend!! + +Click… https://t.co/m3G96EWBws" +05/01/2018,Musicians,@kelly_clarkson,Yes and yes girl!!!!! https://t.co/oDk42EEWgy +05/01/2018,Musicians,@kelly_clarkson,✨Stylist: @cdicelove13 Mua: @gloglomakeup Hair: @robertramoshair Dress: @carolinaherrera Shoes: @valentino Belt:… https://t.co/gs7O4RH4Yb +04/30/2018,Musicians,@kelly_clarkson,Are y’all ready for Team Kelly tonight on @NBCTheVoice !!? – Team KC https://t.co/ubgRWpTfQB +04/30/2018,Musicians,@kelly_clarkson,Get it Dylan!!!! https://t.co/se6Riu9YC5 +04/29/2018,Musicians,@kelly_clarkson,Thanks girl! 😊 https://t.co/ZTz1bnis3L +04/28/2018,Musicians,@kelly_clarkson,Yes girl!! https://t.co/68CcXqNLqA +04/27/2018,Musicians,@kelly_clarkson,I just saw this!! Thanks @tishhayneskeys 😊 we miss you 😩 https://t.co/Ku2tnx82Gx +04/27/2018,Musicians,@kelly_clarkson,"RT @BBMAs: #BBMAs 05.20 ON NBC +_User: @DUALIPA /CONFIRMED https://t.co/FEGkqfWaSN" +04/27/2018,Musicians,@kelly_clarkson,"RT @BBMAs: #BBMAs 05.20 ON NBC +_User: @Camila_Cabello /CONFIRMED https://t.co/b2GBfjwlUG" +04/27/2018,Musicians,@kelly_clarkson,We ❤️ Team Kelly @NBCTheVoice - Team KC https://t.co/9PnpAAk9ef +04/26/2018,Musicians,@kelly_clarkson,"Make sure to Shazam the performance of ""I Don't Think About You"" on Ellen DeGeneres for a chance to win a signed go… https://t.co/ArRbyhVtu5" +04/26/2018,Musicians,@kelly_clarkson,"It may be over, but we are still celebrating with another Minute + Glass of Wine! 🍷🎂 🎉 - Team KC + +Watch here:… https://t.co/H0J5U4MT3d" +04/26/2018,Musicians,@kelly_clarkson,Hanging with the real @TheEllenShow this afternoon 😂 - Team KC https://t.co/6PYWIaO3dl +04/26/2018,Musicians,@kelly_clarkson,Thank you @BigSugarBakeshp for creating such amazing cakes for #TeamKC @NBCTheVoice and my birthday. They were beau… https://t.co/FnMSAUKJ6G +04/25/2018,Musicians,@kelly_clarkson,Did y’all catch the Team Kelly performance last night on the @NBCTheVoice !? ✨✨ – Team KC https://t.co/qv4MLdTbIu +04/25/2018,Musicians,@kelly_clarkson,Y’all were so great!! I forgot to say this last night but what an incredibly gifted group of singers y’all are?! Se… https://t.co/JijI8w05iq +04/25/2018,Musicians,@kelly_clarkson,Oh my gosh I just saw this! Thanks guys 😊 https://t.co/4189gZ1pVd +04/25/2018,Musicians,@kelly_clarkson,Y'all want to be a part of the Team Kelly Facebook Group? Click the link below to join! - Team KC… https://t.co/R6zeqjSDsI +04/25/2018,Musicians,@kelly_clarkson,@RyanSeacrest Thanks Ryan 😊 +04/25/2018,Musicians,@kelly_clarkson,Well that was a crap birthday present 😭😔😩 I can’t believe @DRKingnyc just went home. You will find him on stage wit… https://t.co/g4kfb9un1y +04/25/2018,Musicians,@kelly_clarkson,Please vote for @DRKingnyc #voicesaveDRking https://t.co/Cn2jenrf5x +04/25/2018,Musicians,@kelly_clarkson,RT @NBCTheVoice: Retweet to #VoiceSaveDRKing https://t.co/j7zKjJdwiW +04/25/2018,Musicians,@kelly_clarkson,It's time y'all let's save @DRKingnyc ! RETWEET THIS!!! #VoiceSaveDRKing +04/25/2018,Musicians,@kelly_clarkson,RT @kelly_clarkson: @DRKingnyc killed it! Get ready to save him! https://t.co/6c5Tt0DiZt +04/25/2018,Musicians,@kelly_clarkson,@DRKingnyc killed it! Get ready to save him! https://t.co/6c5Tt0DiZt +04/25/2018,Musicians,@kelly_clarkson,Y'all! Get ready to save @DRKingnyc !! https://t.co/xTrPuLgfaG +04/25/2018,Musicians,@kelly_clarkson,Yaaaaaas!!! It’s my birthday!! 🎉🎂✨#Stylist @cdicelove13 #Hair @robertramoshair #Mua @gloglomakeup #Dress:… https://t.co/7lrep5I15Y +04/25/2018,Musicians,@kelly_clarkson,Got to celebrate my birthday with a queen! @aliciakeys https://t.co/tRbhTdMOqV +04/24/2018,Musicians,@kelly_clarkson,Going live on FaceBook at 1:45 PST. Tune in! +04/24/2018,Musicians,@kelly_clarkson,You are literally one of my longest friendships haha! What year was this?? 2003?? https://t.co/DYMY6wj1ID +04/24/2018,Musicians,@kelly_clarkson,"""I Don’t Think About You” on @TheEllenShow !!? Ohh yes! Please! – Team KC https://t.co/McQ9VnaQtd" +04/24/2018,Musicians,@kelly_clarkson,Happy Birthday to another talented woman who shares the same birthday and also happens to have been my favorite cha… https://t.co/HIkpjcsRYp +04/24/2018,Musicians,@kelly_clarkson,#birthdaymood Happy Birthday to one of my favorites who happens to share the same birthday ❤️ #barbra #feelinfancy https://t.co/Eg1aqkipet +04/24/2018,Musicians,@kelly_clarkson,Thanks Jim 😊 https://t.co/ceepaayAkD +06/20/2018,Musicians,@StevieWonder,"Hey Western Mass, Boston & Connecticut! I want to personally invite you to my party, The Stevie Wonder Song Party:… https://t.co/6tit1bA1s5" +06/18/2018,Musicians,@StevieWonder,"Hey DMV! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love and Musi… https://t.co/QD8CSAZTr1" +06/15/2018,Musicians,@StevieWonder,"Hey Jersey, Philly & Delaware! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrati… https://t.co/O0YMcS9uYX" +06/13/2018,Musicians,@StevieWonder,"Hey Vegas & LA! I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love a… https://t.co/mYiBdARmYv" +06/11/2018,Musicians,@StevieWonder,"I want to personally invite you to my party, The Stevie Wonder Song Party: Celebrating Life, Love and Music. Get re… https://t.co/2Knm5RTHBc" +06/08/2018,Musicians,@StevieWonder,President @BarackObama and Mrs. @MichelleObama's dreams. Share your dream & post your own #DreamStillLives video.… https://t.co/orUV5ugSMP +06/06/2018,Musicians,@StevieWonder,.@DariusRucker's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/aSOyGSASMs +06/06/2018,Musicians,@StevieWonder,.@NaomiCampbell's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/oDrkc26Cgw +06/06/2018,Musicians,@StevieWonder,.@Lecrae's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/J03trrofZl +06/04/2018,Musicians,@StevieWonder,.@WhoopiGoldberg's full dream. Share your dream in the comments below or post your own Dream Still Lives video wit… https://t.co/eDi1hA2bs5 +06/04/2018,Musicians,@StevieWonder,.@MariahCarey's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/X5dm60BPke +06/04/2018,Musicians,@StevieWonder,.@RepRichmond's full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/w3xWegCSB0 +06/01/2018,Musicians,@StevieWonder,.@YaraShahidi's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/J0YCjmn14p +06/01/2018,Musicians,@StevieWonder,.@KirkFranklin's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/3rfLk43iq0 +05/30/2018,Musicians,@StevieWonder,.@ChadwickBoseman’s full dream. Share your dream in the comments below or post your own Dream Still Lives video wi… https://t.co/n2E4HLIfu9 +05/30/2018,Musicians,@StevieWonder,Senator @KamalaHarris' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread h… https://t.co/fipnuD2w5h +05/29/2018,Musicians,@StevieWonder,.@MarkRonson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/2V10MSuAIG +05/29/2018,Musicians,@StevieWonder,.@RevJJackson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/mkmYlKiQcr +05/29/2018,Musicians,@StevieWonder,Meryl Streep's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/f8TQfGlJTP +05/25/2018,Musicians,@StevieWonder,.@ddlovato's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/9ELjoX7FPO +05/25/2018,Musicians,@StevieWonder,.@RyanTedder's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bQaakZEDmN +05/25/2018,Musicians,@StevieWonder,.@SerenaWilliams' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/I01fxNvS6Q +05/23/2018,Musicians,@StevieWonder,.@Noah_Schnapp's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/kehkFfz6Aj +05/23/2018,Musicians,@StevieWonder,.@KeshaRose's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/naGpvMUadq +05/23/2018,Musicians,@StevieWonder,.@SadiqKhan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/iUP3tR8Llp +05/21/2018,Musicians,@StevieWonder,.@MarcMorial's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/odOhqwPvG0 +05/21/2018,Musicians,@StevieWonder,.@MeganNicole's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/O7H9wUgBGV +05/21/2018,Musicians,@StevieWonder,.@JKCorden's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/mdWdTPQeaz +05/18/2018,Musicians,@StevieWonder,Dr. Keith Black's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/1jXZSi3yDk +05/18/2018,Musicians,@StevieWonder,.@RitaWilson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/L115DNn4KA +05/18/2018,Musicians,@StevieWonder,Secretary @AntonioGuterres' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spr… https://t.co/7TkU5X8sEw +05/16/2018,Musicians,@StevieWonder,.@CarmeloAnthony's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/FZDSf1A5uu +05/16/2018,Musicians,@StevieWonder,.@IISuperwomanII (Lilly Singh)'s full dream. Share your dream & post your own #DreamStillLives video. Spread love.… https://t.co/xM9mJzrK7Z +05/16/2018,Musicians,@StevieWonder,.@Harry_Styles' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ZcGH3pr3G0 +05/14/2018,Musicians,@StevieWonder,.@LuisFonsi’s full dream. Share your dream in the comments below or post your own Dream Still Lives video with… https://t.co/lh8bAtauEj +05/14/2018,Musicians,@StevieWonder,.@HowardStern's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/REAHlBVLkj +05/14/2018,Musicians,@StevieWonder,.@MaryJBlige's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ZAi7LSl1vB +05/11/2018,Musicians,@StevieWonder,.@TylerOakley's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ph3hPxNKcv +05/11/2018,Musicians,@StevieWonder,.@SamuelLJackson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/TN7Era0BvG +05/11/2018,Musicians,@StevieWonder,.@itstonybennett's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/C4kkcFKAGR +05/09/2018,Musicians,@StevieWonder,.@TheChainsmokers' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/B0JGHxMDhH +05/09/2018,Musicians,@StevieWonder,.@Lupita_Nyongo's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/4jEaBY6jEc +05/09/2018,Musicians,@StevieWonder,.@GarthBrook's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/l14GMdWdCH +05/07/2018,Musicians,@StevieWonder,.@BTS_twt's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bV4U3SPSe5 +05/07/2018,Musicians,@StevieWonder,.@NickJonas' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/Xi3tnSRMMe +05/07/2018,Musicians,@StevieWonder,.@TrevorNoah's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/1qBRl6PAWP +05/04/2018,Musicians,@StevieWonder,Arturo Sandoval's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/o8SABxp8uh +05/04/2018,Musicians,@StevieWonder,.@LionelRichie's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/N57Sdv87cz +05/04/2018,Musicians,@StevieWonder,.@JimmyKimmel's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/RghLqGJNfB +05/02/2018,Musicians,@StevieWonder,.@Common's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/kJT4ifrTK9 +05/02/2018,Musicians,@StevieWonder,Sir @PaulMcCartney's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hop… https://t.co/rtnMeh1uNb +04/30/2018,Musicians,@StevieWonder,.@MichaelStrahan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/JA26bki933 +04/30/2018,Musicians,@StevieWonder,.@KatyPerry's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/dMeDRk5jCV +04/30/2018,Musicians,@StevieWonder,.@BonJovi's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/YoujfTVf0u +04/27/2018,Musicians,@StevieWonder,.@iamjamiefoxx's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/xp7O8hm7Jq +04/27/2018,Musicians,@StevieWonder,.@JanelleMonae's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/aPbWyH6ihc +04/27/2018,Musicians,@StevieWonder,.@CharliePuth's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope https://t.co/7sVzexlQvY +04/25/2018,Musicians,@StevieWonder,.@SZA's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/zePoRnkL1S +04/25/2018,Musicians,@StevieWonder,Bruce @Springsteen's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hop… https://t.co/yuZl7ZLbL7 +04/25/2018,Musicians,@StevieWonder,.@GloriaEstefan's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/yUKD8zkwuM +04/23/2018,Musicians,@StevieWonder,.@TigerWoods' full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/81AGG5dAX3 +04/23/2018,Musicians,@StevieWonder,.@GayleKing’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/uxzhPMsX8t +04/23/2018,Musicians,@StevieWonder,.@DaveMatthewsBnd's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/njd2z5ri0z +04/20/2018,Musicians,@StevieWonder,.@EvaLongoria’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/0F1LVmEneN +04/20/2018,Musicians,@StevieWonder,.@DaveChappelle’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/0BosqOOebv +04/20/2018,Musicians,@StevieWonder,.@BillieJeanKing’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/VP30vN96Yy +04/18/2018,Musicians,@StevieWonder,.@CondoleezzaRice's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/9urLJmDTYp +04/18/2018,Musicians,@StevieWonder,Berry Gordy’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/7BIes3QTz9 +04/18/2018,Musicians,@StevieWonder,.@Cher’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/p93J5wgNmb +04/16/2018,Musicians,@StevieWonder,.@Smokey_Robinson's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/qbpf8MsewP +04/16/2018,Musicians,@StevieWonder,.@CliveDavis’ full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/in39oy3XOb +04/16/2018,Musicians,@StevieWonder,.@BetteMidler's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/ENIPB9WPy5 +04/10/2018,Musicians,@StevieWonder,.@Tim_Cook's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/bvlsbXw1Qj +04/10/2018,Musicians,@StevieWonder,.@AndraDayMusic's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/AlBLf97o7c +04/10/2018,Musicians,@StevieWonder,.@EltonOfficial's full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/4uZVT2cijM +04/06/2018,Musicians,@StevieWonder,Robert De Niro’s full dream. Share your dream & post your own #DreamStillLives video. Spread love...spread hope. https://t.co/HvLKXbfRxR +04/05/2018,Musicians,@StevieWonder,"On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for h… https://t.co/XVJ9Gis9zp" +06/27/2018,Musicians,@kanyewest,https://t.co/keACtfDvtD +06/27/2018,Musicians,@kanyewest,https://t.co/hUzYzgu45U +06/23/2018,Musicians,@kanyewest,https://t.co/GFmMQMI2rI +06/22/2018,Musicians,@kanyewest,I love you brother congratulations https://t.co/bHZApDf3Ol +06/22/2018,Musicians,@kanyewest,https://t.co/gy60h56Izv +06/22/2018,Musicians,@kanyewest,the universe is on our side bro +06/22/2018,Musicians,@kanyewest,RT @TEYANATAYLOR: Teyana Taylor's album listening #KTSE https://t.co/WI9JxL0SVO +06/18/2018,Musicians,@kanyewest,rest in peace 🙏🙏🙏 I never told you how much you inspired me when you were here thank you for existing https://t.co/QU7DR3Ghbw +06/16/2018,Musicians,@kanyewest,😍😍😍 https://t.co/lRkpsQ94iN +06/16/2018,Musicians,@kanyewest,1...2...3...🔥🔥🔥🔥🔥 https://t.co/IPhCypJOhC +06/16/2018,Musicians,@kanyewest,https://t.co/sxOn37QP0h +06/15/2018,Musicians,@kanyewest,RT @Nas: My album release party tonight LIVE with @YouTubeMusic → https://t.co/KF1DIxFaw4 #NASIR +06/15/2018,Musicians,@kanyewest,RT @Nas: The Kids Are Our Future. NASIR out everywhere tomorrow! Executive Produced by @kanyewest #NASIR https://t.co/gpRUBT7FPU +06/14/2018,Musicians,@kanyewest,sometimes I have trouble saying no because I want to help everyone +06/14/2018,Musicians,@kanyewest,this is new for me but it’s just how I feel now. I don’t know why. I thought my ego protected me from doubters so t… https://t.co/pC1d7C5UkK +06/14/2018,Musicians,@kanyewest,Who or what is Kanye West with no ego? Just Ye +06/14/2018,Musicians,@kanyewest,I killed my ego +06/14/2018,Musicians,@kanyewest,your pride can be and will be used against you +06/14/2018,Musicians,@kanyewest,be great without pride +06/14/2018,Musicians,@kanyewest,give without pride +06/14/2018,Musicians,@kanyewest,https://t.co/GBaHHmLIL3 +06/14/2018,Musicians,@kanyewest,"RT @s_lomba1: Thank you for #KidsSeeGhosts , @KidCudi and @kanyewest . Reborn’s meaning is as beautiful as the album artwork. Thanks a bunc…" +06/14/2018,Musicians,@kanyewest,"RT @LuisRagon7: ""Everybody want world peace, till your niece gets shot in the dome-piece, then you go and get your own piece, hoping it'll…" +06/14/2018,Musicians,@kanyewest,😢🙏🙏🙏🙏 https://t.co/0Z5HDZFnx4 +06/14/2018,Musicians,@kanyewest,RT @Bubbabue: @kanyewest Your album #ye is an inspiration. I can completely relate to every song. I’m going through my own issues right no… +06/14/2018,Musicians,@kanyewest,RT @danicapelli: i remember tweeting about synchronicities but this whole era really takes the cake for me. this man call bipolar disorder… +06/13/2018,Musicians,@kanyewest,Leaders create leaders +06/13/2018,Musicians,@kanyewest,https://t.co/PEeKDDUrSl +06/13/2018,Musicians,@kanyewest,Supermoon YEEZY desert rat campaign shot by Eli Linnetz 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +06/13/2018,Musicians,@kanyewest,https://t.co/ZZyma1RDde +06/13/2018,Musicians,@kanyewest,https://t.co/D6ubUZF11o +06/13/2018,Musicians,@kanyewest,https://t.co/0rZFimqlOb +06/13/2018,Musicians,@kanyewest,https://t.co/bgaE5M6Pq0 +06/13/2018,Musicians,@kanyewest,https://t.co/hbtCFijEVT +06/13/2018,Musicians,@kanyewest,https://t.co/lUYf1h5MBe +06/13/2018,Musicians,@kanyewest,https://t.co/MU16ssRl6E +06/13/2018,Musicians,@kanyewest,https://t.co/N7RRqUiY0f +06/13/2018,Musicians,@kanyewest,https://t.co/pPafVRL2ai +06/13/2018,Musicians,@kanyewest,https://t.co/v0dMpbHO4s +06/13/2018,Musicians,@kanyewest,https://t.co/CLrZhCuPfV +06/13/2018,Musicians,@kanyewest,https://t.co/ldZmPj3ZL5 +06/13/2018,Musicians,@kanyewest,https://t.co/elaym8M5nD +06/13/2018,Musicians,@kanyewest,https://t.co/DxKBC17uLE +06/13/2018,Musicians,@kanyewest,https://t.co/t92ZyCK5Jv +06/13/2018,Musicians,@kanyewest,https://t.co/tElIvc7ujx +06/13/2018,Musicians,@kanyewest,https://t.co/9v3l7dAo2k +06/13/2018,Musicians,@kanyewest,https://t.co/9sp8bwb6Ko +06/13/2018,Musicians,@kanyewest,https://t.co/VdJKyDmcVJ +06/13/2018,Musicians,@kanyewest,https://t.co/ajULgsReUe +06/13/2018,Musicians,@kanyewest,https://t.co/tFwZXfZjH9 +06/13/2018,Musicians,@kanyewest,https://t.co/X4V2wyDhVq +06/13/2018,Musicians,@kanyewest,https://t.co/onz2qOLATS +06/13/2018,Musicians,@kanyewest,https://t.co/6bASsjft0i +06/13/2018,Musicians,@kanyewest,https://t.co/mrAGKDdxwo +06/13/2018,Musicians,@kanyewest,https://t.co/3F7rlUTQzS +06/13/2018,Musicians,@kanyewest,https://t.co/CJh6fxxT1W +06/13/2018,Musicians,@kanyewest,https://t.co/ahgFhhq9QD +06/13/2018,Musicians,@kanyewest,https://t.co/ZN5OHzjTsj +06/13/2018,Musicians,@kanyewest,https://t.co/wIReZapSje +06/13/2018,Musicians,@kanyewest,https://t.co/Qe113Iwx2N +06/13/2018,Musicians,@kanyewest,https://t.co/0ZwE3jnBw4 +06/13/2018,Musicians,@kanyewest,https://t.co/x4q8U34qUS +06/12/2018,Musicians,@kanyewest,freeeeeeeeeee https://t.co/ioKUaaVy2a +06/12/2018,Musicians,@kanyewest,I be taking naps +06/12/2018,Musicians,@kanyewest,Bloody Dior in Wyoming hoodie https://t.co/RkRAtb0BfL +06/12/2018,Musicians,@kanyewest,https://t.co/V7ZeBuufOB +06/12/2018,Musicians,@kanyewest,your guys writing and approach is so innovative … I love how you guys break the 4th wall… thank you for being innov… https://t.co/fkay133ewy +06/12/2018,Musicians,@kanyewest,I love both Deadpool movies🔥🔥🔥🔥🔥🔥🔥🔥🔥… I heard tracks in it that sound similar to mine… bro I would have cleared my music for Deadpool … +06/12/2018,Musicians,@kanyewest,Thank you to my wife for throwing me the most beautiful fun and intimate birthday party https://t.co/1ZR4DlCtMc +06/12/2018,Musicians,@kanyewest,https://t.co/bw7xN9wl8g https://t.co/ri1kM8GUEh +06/12/2018,Musicians,@kanyewest,Thank you to everyone who supported our 8th number 1 album 🙌🙌🙌🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 all love all great energy… https://t.co/AdUmHGnfd7 +06/12/2018,Musicians,@kanyewest,https://t.co/PsUa8R6g67 +06/12/2018,Musicians,@kanyewest,https://t.co/4wDx2pfzew +06/12/2018,Musicians,@kanyewest,😢 https://t.co/c5v5fuSBgz +06/12/2018,Musicians,@kanyewest,https://t.co/fopemnwiMI +06/11/2018,Musicians,@kanyewest,7 deadly sins https://t.co/YczOcBEMdY +06/11/2018,Musicians,@kanyewest,We’re trying new ideas without the fear of not being perfect… It’s just a gut feeling sometimes… just making stuff with your friends… +06/11/2018,Musicians,@kanyewest,We’re here creating in real time just having fun. I hear the albums blasting out of the cars when I walk down t… https://t.co/Btr6jZBeYP +06/11/2018,Musicians,@kanyewest,Just wanted to say I’m up in the morning working on the Nas album and I’m so humbled by all the love we’re getting… https://t.co/0KpWPPvzt0 +06/11/2018,Musicians,@kanyewest,😂 https://t.co/zD0cQryW3j +06/11/2018,Musicians,@kanyewest,😂 https://t.co/0cbuZDQSuO +06/08/2018,Musicians,@kanyewest,Download the @WAV_Media app https://t.co/HxSvFHiSrY to watch the livestream of the KIDS SEE GHOSTS listening party tonight @ 8pm PST +06/07/2018,Musicians,@kanyewest,RT @tylerthecreator: see if i was tryna relate to more people i would say im struggling with loving myself because that seems like a common… +06/07/2018,Musicians,@kanyewest,https://t.co/ssV4UeFpiL +06/07/2018,Musicians,@kanyewest,"RT @CNN: BREAKING: Alice Marie Johnson has just been released from prison after Trump commuted her sentence. ""I'm just so thankful. I feel…" +06/06/2018,Musicians,@kanyewest,RT @mic: BREAKING: President Trump has granted clemency to #AliceMarieJohnson after meeting with @KimKardashian West to talk about her case… +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: BEST NEWS EVER!!!! 🙏🏼🙏🏼🙏🏼 https://t.co/JUbpbE1Bk0 +06/06/2018,Musicians,@kanyewest,"RT @KimKardashian: So grateful to @realDonaldTrump, Jared Kushner & to everyone who has showed compassion & contributed countless hours to…" +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: I hope to continue this important work by working together with organizations who have been fighting this fight for much… +06/06/2018,Musicians,@kanyewest,RT @KimKardashian: The phone call I just had with Alice will forever be one of my best memories. Telling her for the first time and hearing… +06/06/2018,Musicians,@kanyewest,https://t.co/r2idQETRCQ +06/06/2018,Musicians,@kanyewest,RT @KidCudi: KIDS SEE GHOSTS ALBUM ART https://t.co/MVt5vIzlA1 +06/06/2018,Musicians,@kanyewest,https://t.co/bYVgnuMASB +06/06/2018,Musicians,@kanyewest,🙏🙏🙏 all love to her family https://t.co/p3cu3CUdw5 +06/06/2018,Musicians,@kanyewest,#1 in 83 countries 🙌🙌🙌 https://t.co/Z8FC9LPL7W +06/06/2018,Musicians,@kanyewest,https://t.co/FQUdTnViNC +06/04/2018,Musicians,@kanyewest,I feel so blessed. For everyone that didn't turn they back. I'm in tears right now. I love all of you https://t.co/8jwIALBsDu +06/03/2018,Musicians,@kanyewest,😍😍😍 https://t.co/PfxbSlZTNw +06/02/2018,Musicians,@kanyewest,"For all my dogs that stayed down, we up again 🙌🙌🙌 https://t.co/HSSyZeTI30" +06/02/2018,Musicians,@kanyewest,https://t.co/mramWmhY1S +06/02/2018,Musicians,@kanyewest,I’ve never been about beef    I’m about love    lines were crossed and it’s not good for anyone    so this is dead now +06/02/2018,Musicians,@kanyewest,https://t.co/gtu95VUe64 +06/02/2018,Musicians,@kanyewest,https://t.co/ngNMZjM7tN +06/01/2018,Musicians,@kanyewest,"https://t.co/SScskeUWQs + +https://t.co/qMCfkQTjLy + +https://t.co/pa0iHEIdZT" +06/01/2018,Musicians,@kanyewest,https://t.co/xYu7lH1rZ7 +06/01/2018,Musicians,@kanyewest,"Download the @WAV_Media app https://t.co/HxSvFHiSrY  to watch the livestream of my album listening tonight in Jackson Hole, Wyoming 7PM MDT" +05/25/2018,Musicians,@kanyewest,https://t.co/3YFh8MIHIH +05/25/2018,Musicians,@kanyewest,New Flacko 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/F3lAEVGX4A +05/25/2018,Musicians,@kanyewest,https://t.co/QAZmYHt4eA +05/25/2018,Musicians,@kanyewest,🔥🔥🔥 This is one of my favorite moments. https://t.co/LLhZlU7fAG +05/25/2018,Musicians,@kanyewest,gratitude and happiness best describe what my wife means to me. I’m deeply grateful and purely happy 😊 +05/24/2018,Musicians,@kanyewest,Daytona is the first project out of Wyoming. I’m really proud of what we put together. We’ve spent a year and a… https://t.co/rnQ2uXTSeE +05/24/2018,Musicians,@kanyewest,album 1 PUSHA T DAYTONA dropping 2mrw https://t.co/M1UPvax5fa +05/21/2018,Musicians,@kanyewest,before Edward Bernays Americans purchased things based off needs There was a a time in the 20s when women did… https://t.co/FQMq29vChC +05/21/2018,Musicians,@kanyewest,the century of self https://t.co/JVvJby2TFq It’s 4 hours long but you’ll get the gist in the first 20 minu… https://t.co/6h5mjB1qih +05/21/2018,Musicians,@kanyewest,Google dopamine +05/21/2018,Musicians,@kanyewest,there was a time when we completely operated without phones. We're addicted to our phones. +05/21/2018,Musicians,@kanyewest,Look at your phone as tool not an obligation. Would you walk around with a hammer in your pocket? You would p… https://t.co/U7lY1tRZXH +05/21/2018,Musicians,@kanyewest,Amma Mata had given over 32 million hugs https://t.co/OBotiHWZUU +05/21/2018,Musicians,@kanyewest,sometimes we all need hugs +05/20/2018,Musicians,@kanyewest,Very cozy. Sleeping in the studio https://t.co/hZk0UEW81G +05/17/2018,Musicians,@kanyewest,"🤣🤣🤣 +https://t.co/I8lcHB8gxf" +05/15/2018,Musicians,@kanyewest,https://t.co/o5GyOkB2hg +05/15/2018,Musicians,@kanyewest,for anyone whose tried to text or call me in the past 2 weeks I got rid of that phone so I could focus on these albums +05/14/2018,Musicians,@kanyewest,The United Nations introduced the Sustainable Development goals and platform in 2015 to transform the world by 2030 https://t.co/ufbZlURwPA +05/12/2018,Musicians,@kanyewest,rules are structure for people who can’t carve their own path successfully +05/11/2018,Musicians,@kanyewest,100% I love the way you think. I’ll reach out https://t.co/MVqBKd0vaM +05/10/2018,Musicians,@kanyewest,approved 700 V2 color way Q4 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/IWAzItCnEK +05/10/2018,Musicians,@kanyewest,https://t.co/eUnzwhr72z      This is the greatest news      This is my favorite show     I’ve seen every episode at least 5 times each +05/08/2018,Musicians,@kanyewest,free thinking is a super power +05/08/2018,Musicians,@kanyewest,🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/yEYJP7qrvf +05/07/2018,Musicians,@kanyewest,https://t.co/5Fe6LJqAQo +05/07/2018,Musicians,@kanyewest,https://t.co/y2DHIlfl9Q +05/07/2018,Musicians,@kanyewest,original 350 sample https://t.co/MVn5J579t8 +05/07/2018,Musicians,@kanyewest,It’s about the feeling first https://t.co/4x2wkCMidR +05/07/2018,Musicians,@kanyewest,I’m hyper focused on the now +05/07/2018,Musicians,@kanyewest,https://t.co/pRxvzbTu7c +05/06/2018,Musicians,@kanyewest,Childish Gambino - This is America https://t.co/sknjKSgj8c +05/06/2018,Musicians,@kanyewest,😂😂😂🔥🔥🔥 https://t.co/KmvxIwKkU6 +05/06/2018,Musicians,@kanyewest,we’re starting a Yeezy architecture arm called Yeezy home. We’re looking for architects and industrial designers wh… https://t.co/0DGrDZ9DEz +05/06/2018,Musicians,@kanyewest,naps are awesome +05/06/2018,Musicians,@kanyewest,All music coming out of Yeezy sound has to ride like the new Tesla Yeezy sound is Tesla radio +05/06/2018,Musicians,@kanyewest,hologram https://t.co/yx0N61hrcr +05/05/2018,Musicians,@kanyewest,I love the 700 V2s https://t.co/tVCUz4GZpL +05/05/2018,Musicians,@kanyewest,take a walk outside. Fresh air is healing +05/04/2018,Musicians,@kanyewest,"In a moment of inspiration, energy and excitement I had posted this sketch and would like to acknowledge the true c… https://t.co/e6rRdA9Ae4" +05/04/2018,Musicians,@kanyewest,Today I learned that a newly hired designer on the Yeezy team presented work that was not of their own. This person… https://t.co/56QUEjfpA7 +05/04/2018,Musicians,@kanyewest,enjoy the present +05/04/2018,Musicians,@kanyewest,if you’re in the way of your own life you’ll end up in the way of other people’s lives too +05/04/2018,Musicians,@kanyewest,I can’t wait for electric planes. Elon please hurry up with the ⚡️ jets😭 +05/04/2018,Musicians,@kanyewest,I can still feel the love +05/03/2018,Musicians,@kanyewest,@yeezy https://t.co/hVoaVm3EUY +05/03/2018,Musicians,@kanyewest,https://t.co/IxydIAseI0 +05/03/2018,Musicians,@kanyewest,https://t.co/5smCEzqTmA +05/03/2018,Musicians,@kanyewest,https://t.co/d3FttWufBL +05/03/2018,Musicians,@kanyewest,https://t.co/jZ62l9x8GV +05/03/2018,Musicians,@kanyewest,https://t.co/jCkREE9NzP +05/03/2018,Musicians,@kanyewest,https://t.co/MO7BYwIB0b +05/03/2018,Musicians,@kanyewest,https://t.co/IeNUbKXIZH +05/02/2018,Musicians,@kanyewest,https://t.co/cGFzbVSNS6 +05/02/2018,Musicians,@kanyewest,this is so helpful. I'm always a student. I'm learning about love https://t.co/IknblRx4Pk +05/02/2018,Musicians,@kanyewest,most fear is learned +05/02/2018,Musicians,@kanyewest,energy meeting. Beings from all different backgrounds https://t.co/iJteS5MMbY +05/02/2018,Musicians,@kanyewest,"when the media masses and scholars talk about what started today. Here's a title ... + +the overground hell road" +05/01/2018,Musicians,@kanyewest,in school we need to learn how magic Johnson built his business not always about the past. Matter fact I've never e… https://t.co/pbEjTJeCgR +05/01/2018,Musicians,@kanyewest,we are programmed to always talk and fight race issues. We need to update our conversation. +05/01/2018,Musicians,@kanyewest,the universe has a plan. I knew that TMZ would be awesome. +05/01/2018,Musicians,@kanyewest,we need to have open discussions and ideas on unsettled pain +05/01/2018,Musicians,@kanyewest,https://t.co/sq66Kaz3yc +05/01/2018,Musicians,@kanyewest,https://t.co/alJp679tHp +05/01/2018,Musicians,@kanyewest,Thank you Shade room for the love https://t.co/kiclvIpFSS +05/01/2018,Musicians,@kanyewest,we got love. Doing TMZ live with Harvey and Candace Owens https://t.co/yoZdHwpdis +05/01/2018,Musicians,@kanyewest,https://t.co/Br5kIafXtG Charlamagne interview also on YouTube +05/01/2018,Musicians,@kanyewest,https://t.co/V7ZeBuufOB Charlamagne interview +05/01/2018,Musicians,@kanyewest,Making of ye vs the people https://t.co/1xvft3175J +05/01/2018,Musicians,@kanyewest,stop thinking about things for a long time without saying what you think +04/30/2018,Musicians,@kanyewest,Eli with the drip https://t.co/FlNgliReGv +04/30/2018,Musicians,@kanyewest,Open letter from Jan Adams    This is amazing. Thank you so much for this connection brother. I can't wait to sit w… https://t.co/ZRRDi0r8GY +04/30/2018,Musicians,@kanyewest,we're starting WORLD LOVE 1 right now the opposite of a WORLD WAR +04/30/2018,Musicians,@kanyewest,Through speech it may be saying simply the word love at the end of a phone call or just saying much love. +04/30/2018,Musicians,@kanyewest,"I feel it was heavy handed for me to tell people to tell people ""I love you"" I would ask that we show love how eve… https://t.co/3HX9nQOMzu" +04/30/2018,Musicians,@kanyewest,We are all great artists. I said something ego driven in the Charlamagne interview that I'd like to update. I said… https://t.co/vOcA8SE8du +04/30/2018,Musicians,@kanyewest,https://t.co/sIVjyPJslJ +04/30/2018,Musicians,@kanyewest,Adi Shankar   We got love https://t.co/dyJyLRF79e +04/30/2018,Musicians,@kanyewest,https://t.co/KTgTcvfsAC +04/30/2018,Musicians,@kanyewest,love is infinite +04/30/2018,Musicians,@kanyewest,infinite possibilities https://t.co/SogcrHMmx3 +04/30/2018,Musicians,@kanyewest,https://t.co/kuyAZxv85h +04/30/2018,Musicians,@kanyewest,https://t.co/DMqCuG5DP8 +04/30/2018,Musicians,@kanyewest,Axel Vervoordt the globe +04/30/2018,Musicians,@kanyewest,Candace Owens wrote this at the Office yesterday https://t.co/3utFm74k75 +04/30/2018,Musicians,@kanyewest,https://t.co/HrkNlEAxMc +04/30/2018,Musicians,@kanyewest,we’re opening up the conversation to the psychologists sociologists and philosophers of the world and we're moving… https://t.co/AifFGXQd7f +04/30/2018,Musicians,@kanyewest,"Yeezy is also food shelter communication education and now a VC + +we've invested in 3 companies since last week" +04/30/2018,Musicians,@kanyewest,There has never been a Disney or Apple of apparel and now there is. We are hiring the greatest technical and indust… https://t.co/ybClLIhfeH +04/30/2018,Musicians,@kanyewest,"🔥🔥🔥 +this is where a YEEZY study for base layer starts. I'm so excited about our new design team. Yeezy is no longer… https://t.co/dKOcgLFGOE" +04/30/2018,Musicians,@kanyewest,🔥🔥🔥😊😊😊 just great energy bro 🐉 https://t.co/QYLzHkCLHg +04/30/2018,Musicians,@kanyewest,Try to avoid repetition do meetings in different places and at different times than the normal break the normal +04/30/2018,Musicians,@kanyewest,https://t.co/NmkDiG5IbM +04/30/2018,Musicians,@kanyewest,https://t.co/CeVEZmJBHb +06/16/2018,Musicians,@kendricklamar,Proud of the bro for this one. Growth. https://t.co/iSYFQ2uaew +06/09/2018,Musicians,@kendricklamar,🌊 https://t.co/2kiP5TAkM1 +06/05/2018,Musicians,@kendricklamar,RT @jayrock: Road to #Redemption Trailer https://t.co/sqUyjsnd6E +05/25/2018,Musicians,@kendricklamar,https://t.co/zg5m9qEf2D ☠️ +05/25/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +5/25 ATLANTA, GA | WISH | 453 MORELAND AVE NE, ATLANTA, GA 30307 | 11AM - 7PM | #TDE https://t.co/UDlZHnmlwd" +05/24/2018,Musicians,@kendricklamar,RT @inglewoodSiR: Tickets On Sale Starting Now @ArinRayCamp 🌊🌊🌊 https://t.co/zH6quCdkMl https://t.co/87HgmMyCxZ +05/22/2018,Musicians,@kendricklamar,RT @dangerookipawaa: Championship Tour Update... https://t.co/7w1i9q6WwZ +05/22/2018,Musicians,@kendricklamar,RT @jayrock: NEW ALBUM “REDEMPTION” COMING 06/15/18 #TDE 📷: @miyatola https://t.co/kwntXcFwum +05/19/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +5/19 - 5/20 HOUSTON, TX | SOCIAL STATUS | 1201 FANNIN ST, HOUSTON, TX 77002 | 9AM - 7PM | #TDE… https://t.co/4pOJnbBO4G" +05/18/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THECHAMPIONSHIPSHOP +5/18 AUSTIN, TX | SOUTH OF EVERYWHERE | 2324 S LAMAR BLVD,  AUSTIN, TX 78704 | 11AM - 7PM https://t.co…" +05/16/2018,Musicians,@kendricklamar,RT @dangerookipawaa: WIN WIN WIN. https://t.co/NGmRiZUqyW https://t.co/mbQCRLCzM3 +05/13/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THECHAMPIONSHIPSHOP +5/13 SAN DIEGO, CA | GYM STANDARD | 2903 EL CAJON BLVD, SAN DIEGO, CA 92104 | 11AM - 7PM https://t.co/…" +05/10/2018,Musicians,@kendricklamar,"LA, pull up. @Lyft enter the code CHAMPIONLA - get 25% off a ride to and from the Forum. #GiftfromLyft https://t.co/lDbWeGE68e" +05/10/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: Access to The Championship Shop - Los Angeles will be given on a FIRST COME, FIRST SERVED BASIS. All previously raffled wri…" +05/09/2018,Musicians,@kendricklamar,RT @TopDawgEnt: NIKE X TDE AT @blendsla TODAY. DOORS NOW OPEN. #TDE https://t.co/iNVuPnGve4 +05/08/2018,Musicians,@kendricklamar,"2DAY! #THECHAMPIONSHIPSHOP +05/08 OAKLAND, CA | @ OAKLANDISH | 1444 BROADWAY OAKLAND, CA 94612 | 11AM - 7PM #TDE https://t.co/jrYpEjrVwe" +05/07/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: At the first stop of the six-city TDE x NIKE Championship Shop Tour, Blends DTLA will host a live raffle for access to shop…" +05/06/2018,Musicians,@kendricklamar,"#THECHAMPIONSHIPSHOP +05/06 PORTLAND, OR | MACHUS | 542 E BURNSIDE ST. PORTLAND, OR 97214 | 11AM - 7PM #TDE https://t.co/67u9dS1exc" +05/04/2018,Musicians,@kendricklamar,RT @inglewoodSiR: D’Evils // 🎥 Dir. by Karena Evans https://t.co/ZqdO3sZe4Y // https://t.co/AcDP7la2Nr https://t.co/BTeDO0D6NT +05/03/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: FRI 05/04 #THECHAMPIONSHIPSHOP +5/04 VANCOUVER, BC | LIVESTOCK | 141 E PENDER ST, VACOUVER, BC V6A 1T6, CANADA | 11AM - 7PM…" +04/30/2018,Musicians,@kendricklamar,".@TOPDAWGENT Presents: The CHAMPIONSHIP Shop | Pop-Up shops across North America, select locations produced in conj… https://t.co/VUjgTAkCSc" +04/29/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: TICKETS ON SALE TODAY @kendricklamar #DAMN (AUSTRALIA/NEW ZEALAND) + +AUS: https://t.co/HTpnm9vXBN + +NZ: https://t.co/x8Y9Egf…" +04/27/2018,Musicians,@kendricklamar,RT @dangerookipawaa: . @TopDawgEnt Presents: “The CHAMPIONSHIP Shop” https://t.co/DfEOAAh6Kc #TDE https://t.co/TDAdbD8VoQ +04/17/2018,Musicians,@kendricklamar,RT @miyatola: #TDE 🏆 Tour - https://t.co/fIN30IwxLz +04/08/2018,Musicians,@kendricklamar,RT @dangerookipawaa: It’s time to show our fans some love! #TDE Fan Appreciation Free Tees!!! Follow my ig page… https://t.co/iyKepFF6I4 +04/06/2018,Musicians,@kendricklamar,https://t.co/TDvrcY6t3R 🌊🌊🌊 +03/29/2018,Musicians,@kendricklamar,RT @dangerookipawaa: Let’s get it DG #TDE https://t.co/qBsnNU1oVr +03/28/2018,Musicians,@kendricklamar,Big Mingo said pull up champion... https://t.co/aqGVNboR5p +03/26/2018,Musicians,@kendricklamar,https://t.co/l5F0aYwLDo 🔥🔥🔥 +03/10/2018,Musicians,@kendricklamar,RT @stro: Stro - Steal & Rob. #RIPBIG https://t.co/HAkevYrxbF https://t.co/Aa9fbPPQIN +03/10/2018,Musicians,@kendricklamar,RT @jayworthy142: https://t.co/FgxfiWeIxG +03/08/2018,Musicians,@kendricklamar,https://t.co/v1K8meoDX8 +03/01/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP FRI - 03/02 OSLO, NORWAY| STRESS | +KIRKGATA 34, 0153 OSLO, NORWAY https://t.co/L8yF0YlakC" +02/28/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP THUR - 03/01 COPENHAGEN, DENMARK | STORM | STORE REGNEGADE 1, 1110 COPENHAGEN, DENMARK https://t.co/Jv3shEj4XI" +02/27/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP TUES - 02/27 ANTWERPEN, BELGIUM | VIER | KAMMENSTRAAT 62, 2000 ANTWERPEN, BELGIUM https://t.co/BMFQOYAFK6" +02/26/2018,Musicians,@kendricklamar,https://t.co/DgtQnyPv94 +02/23/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP SAT 02/24 PARIS, FRANCE | NOUS | 48 ROU CAMBON, 75001 PARIS, FRANCE https://t.co/Ze6lDvlFIl" +02/22/2018,Musicians,@kendricklamar,@Luxxkjr Goodlookin on my watch brick head toddler...I'm on! +02/21/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP THU 02/22 - FRI 02/23/18 ROTTERDAM, NETHERLANDS| ANSH46 | VAN OLDENBARNEVELTSTRAAT 99, 3012 GS ROTTER… https://t.co/LItXZaMibP" +02/19/2018,Musicians,@kendricklamar,"#THEDAMNPOPUP TUES 02/20 - LONDON, UK | SELFRIDGES & CO.| 400 OXFORD ST., +MARLYLEBONE, LONDON, W1A 1AB U.K. https://t.co/DKl64uyOr5" +02/19/2018,Musicians,@kendricklamar,Honorable https://t.co/rs7aLqixWO +02/17/2018,Musicians,@kendricklamar,https://t.co/IHDNKhR27l +02/16/2018,Musicians,@kendricklamar,https://t.co/eV0h7S1k7N +02/15/2018,Musicians,@kendricklamar,"RT @dangerookipawaa: NEW VIDEO ""King's Dead"" https://t.co/f0FutwoWcG #TDE" +02/15/2018,Musicians,@kendricklamar,@Eazee OG Eazee +02/14/2018,Musicians,@kendricklamar,"RT @TopDawgEnt: #THEDAMNPOPUP 02/15 - FRANKFURT, GERMANY | THE LISTENER | STEPHANSTRAßE 3, 60313 FRANKFURT AM MAIN, GERMANY https://t.co/St…" +02/14/2018,Musicians,@kendricklamar,https://t.co/qpPL1oqlTV | EUROPE https://t.co/7ws81hMUDW +02/11/2018,Musicians,@kendricklamar,"Black Panther + +Respect to all the artist/producers that allowed me to execute a sound for the soundtrack. + +The con… https://t.co/UJ5BtdTWxa" +02/11/2018,Musicians,@kendricklamar,All-Star Weekend Night Game. https://t.co/7pKX7abYt5 https://t.co/rnzNkwfjlY +02/09/2018,Musicians,@kendricklamar,@Jayrhome_gh 😂 +02/09/2018,Musicians,@kendricklamar,https://t.co/v1K8meoDX8 https://t.co/m1uqjPJimj +02/06/2018,Musicians,@kendricklamar,https://t.co/RExuaFTtQc +02/06/2018,Musicians,@kendricklamar,"THIS FRIDAY, 2/9. https://t.co/v1K8meoDX8 https://t.co/3muVKs7zTg" +01/31/2018,Musicians,@kendricklamar,Black Panther The Album 2/9 https://t.co/MqhsEcj6iF +01/30/2018,Musicians,@kendricklamar,"RT @thefader: Meet Charm La’Donna, the unforgettable dancer Kendrick Lamar brought to the Grammys. https://t.co/UvkrUOq8id https://t.co/ZYh…" +01/24/2018,Musicians,@kendricklamar,Snapped! https://t.co/Q5Av09NDQR +01/24/2018,Musicians,@kendricklamar,@iambekon get with the times!https://t.co/WYO8Mcl9uQ +01/24/2018,Musicians,@kendricklamar,"@iambekon get with the times! + +https://t.co/WYO8Mcl9uQ" +01/22/2018,Musicians,@kendricklamar,Amazing https://t.co/a3LVkFKpOJ +01/22/2018,Musicians,@kendricklamar,RT @dangerookipawaa: . @TopDawgEnt PRESENTS: THE CHAMPIONSHIP TOUR https://t.co/UOCPJIcyQh +01/19/2018,Musicians,@kendricklamar,https://t.co/3FWQ23NJI8 +01/17/2018,Musicians,@kendricklamar,RT @inglewoodSiR: “Summer in November” directed by Karena Evans | https://t.co/tqfbnxteSW | https://t.co/0IgCTymW75 https://t.co/5RC1W15fbV +01/12/2018,Musicians,@kendricklamar,"RT @dangerookipawaa: Chess Moves 2018 ""King's Dead"" https://t.co/f3B3mURhuV @jayrock #TDE https://t.co/7LdLduLiMx" +01/10/2018,Musicians,@kendricklamar,@dopeboySHAKE Minor setbacks for major comebacks. Push through it. Culture will need you. More. +01/05/2018,Musicians,@kendricklamar,"RT @MarvelStudios: .@KendrickLamar, @DangerooKipawaa, and @TopDawgEnt will curate and produce #BlackPanther: The Album, Music from and Insp…" +01/04/2018,Musicians,@kendricklamar,RT @dangerookipawaa: 1st move of 2018. #TDE https://t.co/p49N4tOZEq +12/28/2017,Musicians,@kendricklamar,RT @pharoahemonch: My life is all I have. https://t.co/pgFGfEeDEc +12/27/2017,Musicians,@kendricklamar,RT @inglewoodSiR: Something Foreign https://t.co/1RPcKMT9Nz +12/22/2017,Musicians,@kendricklamar,https://t.co/N74YuZqAPW +12/20/2017,Musicians,@kendricklamar,RT @dangerookipawaa: 🎶 Schest nuts roash-ting on a open fyah... Jack Frossh nipping from your nosehhhh 🎶 @rihanna @E40 #TDEXMAS17 https://t… +12/19/2017,Musicians,@kendricklamar,DON'T TRIP. CORTEZ KENNY https://t.co/KK0FemMsH3 +12/15/2017,Musicians,@kendricklamar,RT @dangerookipawaa: We back home. 4th Annual @TopDawgEnt holiday concert n toy giveaway 12/21 #TDEXMAS17 https://t.co/TdTfbrS9xa +12/15/2017,Musicians,@kendricklamar,It’s snow season @jeezy #Pressure out now 💎 #TrustYaProcess https://t.co/v6iSPvkD5K https://t.co/vXILb3S3s4 +12/08/2017,Musicians,@kendricklamar,RT @kendricklamar: COLLECTORS EDITION. https://t.co/gxWq1aCVCn https://t.co/DzMtsAvv6L +12/08/2017,Musicians,@kendricklamar,COLLECTORS EDITION. https://t.co/gxWq1aCVCn https://t.co/DzMtsAvv6L +12/07/2017,Musicians,@kendricklamar,"RT @HotNewHipHop: Check out the latest from @kendricklamar collaborator @iambekon. #coldasice + +https://t.co/AqbJZXEeRn" +11/30/2017,Musicians,@kendricklamar,RT @TopDawgEnt: #THEDAMNPOPUP WARPED.12/9/17-12/10/17 (12-8PM) #TDE https://t.co/BTDEqaPifw +11/29/2017,Musicians,@kendricklamar,"RT @inglewoodSiR: https://t.co/3JwkkzcU98 +https://t.co/z71kZfhPnO https://t.co/kesAp6pR7I" +11/28/2017,Musicians,@kendricklamar,https://t.co/6Batsbiyfe +11/27/2017,Musicians,@kendricklamar,RT @TopDawgEnt: ALL NEW ORDERS 30% OFF #BLACKFRIDAY Use Discount code: TDEHOLIDAY17 NOW @ https://t.co/qdvbJlkGc3 #TDE https://t.co/pLHAUg… +11/20/2017,Musicians,@kendricklamar,https://t.co/GZmXVodkkI +11/09/2017,Musicians,@kendricklamar,"11/18 - 11/19/17 (11AM-7PM) #THEDAMNPOPUP - TOKYO, JAPAN - MONKEYTIME HARAJUKU 6-13-9 JINGUMAE SHIBUYA-KU, TOKYO 15… https://t.co/6vqmcqG63V" +11/07/2017,Musicians,@kendricklamar,"#THEDAMNPOPUP - TOKYO, JAPAN https://t.co/x2E1rOJ3vZ" +10/27/2017,Musicians,@kendricklamar,https://t.co/cphnbDbsuS 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +09/21/2017,Musicians,@kendricklamar,https://t.co/raOcufOxPd Rapsody at her best. +08/26/2017,Musicians,@kendricklamar,Cortez. Since day one. #teamnike #TDE @nike @nikelosangeles https://t.co/HEfReKy6zd +08/26/2017,Musicians,@kendricklamar,5th listen. +08/26/2017,Musicians,@kendricklamar,https://t.co/ovjuQN8weO listen to this album if you feel anything. raw thoughts. https://t.co/ovjuQN8weO +08/24/2017,Musicians,@kendricklamar,"2DAY: 08/24 (11AM-7PM) #THEDAMNPOPUP MONTREAL - 407 Saint Pierre St. Montreal, Quebec H2Y 2M3 https://t.co/nQBalBEH2u" +08/24/2017,Musicians,@kendricklamar,RT @dangerookipawaa: Another night in the stu with @jayrock & @MixedByAli .... we need y'all help.. who shud we feature on this trk? https:… +08/23/2017,Musicians,@kendricklamar,RT @TopDawgEnt: Be sure to download and use the @turnstilelive app to be ONE of several lucky winners to meet @KendrickLamar tonight @AirCa… +08/22/2017,Musicians,@kendricklamar,RT @Complex: A&R and music industry veteran @BrockyMarciano is on our latest episode of 'The Culture.' WEDNESDAY @ 10 AM. https://t.co/6v1p… +08/22/2017,Musicians,@kendricklamar,"2DAY: 08/22 (11AM - 7PM) #THEDAMNPOPUP DUBLIN, OH - @SOLECLASSICS 6391 SAWMILL ROAD DUBLIN, OH #TDE https://t.co/E0HpFy6ybW" +08/06/2017,Musicians,@kendricklamar,"2DAY: 08/06 (11AM) #THEDAMNPOPUP @BLENDSLA 725 S Los Angeles St. Los Angeles, CA 90014 https://t.co/gqw4CNAmhR" +08/05/2017,Musicians,@kendricklamar,"2DAY: 08/05 (11AM) #THEDAMNPOPUP LAS VEGAS - INSTITUTION 918 S Main St. Las Vegas, NV 89101 https://t.co/b4EMzVYmIj" +08/04/2017,Musicians,@kendricklamar,"2DAY: 08/04 (11AM) #THEDAMNPOPUP SAN FRANCISCO - 45 Wentworth Place San Francisco, CA 94108 https://t.co/66pjkYbgkX" +08/01/2017,Musicians,@kendricklamar,"2DAY: 08/01 (11AM-7PM) + +#THEDAMNPOPUP SEATTLE - ALIVE & WELL 705 E PIKE ST SEATTLE, WA 98122 https://t.co/7w0dxxRs9K" +07/29/2017,Musicians,@kendricklamar,"2DAY: 07/29 (11AM) + +#THEDAMNPOPUP DENVER - ABSTRACT 84 S BROADWAY DENVER, CO 80209 https://t.co/8cWZl4W8Mq" +07/28/2017,Musicians,@kendricklamar,LOYALTY. https://t.co/m3bUZONMqb +07/27/2017,Musicians,@kendricklamar,"2DAY: 07/27 (11AM) + +#THEDAMNPOPUP CHICAGO - NOTRE 118 N PEORIA 1N CHICAGO, IL 60607 https://t.co/pqbtaCOy3z" +07/25/2017,Musicians,@kendricklamar,"2DAY: 07/25 (11AM) + +#THEDAMNPOPUP TORONTO - LIVESTOCK 116 SPADINA AVENUE TORONTO, ON M5V 2K6 https://t.co/cBZGxjyPBv" +07/22/2017,Musicians,@kendricklamar,"2DAY: 07/22 (11AM) + +#THEDAMNPOPUP CAMBRIDGE, MA @ CONCEPTS - 9 JFK ST. CAMBRIDGE, MA 02138 https://t.co/StuUXV5DWj" +07/21/2017,Musicians,@kendricklamar,"2DAY: 07/21 (11AM) + +#THEDAMNPOPUP WASHINGTON, DC - UBIQ 3124 M ST NW WASHINGTON DC, 20007 https://t.co/QjQiWVd6NM" +07/20/2017,Musicians,@kendricklamar,"2DAY: 07/20 (11AM) + +#THEDAMNPOPUP NEW YORK - 39 Spring Street New York, NY 10012 #TDE https://t.co/s4z3zlWI5V" +07/19/2017,Musicians,@kendricklamar,"2DAY: 07/19 (11AM) + +#THEDAMNPOPUP PHILADELPHIA - UBIQ +1509 Walnut Street +Philadelphia, PA 19102 https://t.co/fyMf4gpJ1s" +07/17/2017,Musicians,@kendricklamar,"2DAY: 07/17 (11AM) + +#THEDAMNPOPUP +ATLANTA - 117 MLK JR. DRIVE SW ATLANTA, GA 30303 https://t.co/qiRDNuGl52" +07/15/2017,Musicians,@kendricklamar,"2DAY: 07/15 (11AM) + +#THEDAMNPOPUP +HOUSTON - The Tipping Point: 214 Travis St. Suite A Houston, TX 77002 https://t.co/O3X55uUHLr" +07/14/2017,Musicians,@kendricklamar,https://t.co/9dMG6l1sa7 Congrats champ. @TheJay305 +07/14/2017,Musicians,@kendricklamar,"2DAY: 07/14 (11AM) + +#THEDAMNPOPUP +DALLAS - Black Market USA: 5509 W. Lovers Ln Dallas, TX 75209 https://t.co/OALcvWfhJs" +07/13/2017,Musicians,@kendricklamar,THE WILDEST SHOW IS BROUGHT TO YOU BY KUNGFU KENNY TRAVIS SCOTT AND DRAM. ARIZONA. AMAZING START. +07/11/2017,Musicians,@kendricklamar,"RT @MackWop: ""if it wasn't for wayne' Mix on the Cizoud now!! + +play games like ya favorite rapper aint study him + +https://t.co/aEXAxKWd9E" +07/10/2017,Musicians,@kendricklamar,https://t.co/zuPd6pqkSx https://t.co/yxgejmZsdm +07/10/2017,Musicians,@kendricklamar,RT @TopDawgEnt: https://t.co/bOZMTafQ58 @daynnightfestoc #TDE https://t.co/Q0uiYvTqF8 +07/07/2017,Musicians,@kendricklamar,https://t.co/MO3qBpExO8 +07/06/2017,Musicians,@kendricklamar,https://t.co/iNYpzYFSlF +06/30/2017,Musicians,@kendricklamar,4:44. WOW. MASTER TEACHER. +06/27/2017,Musicians,@kendricklamar,https://t.co/ByaRPv7vL4 +06/20/2017,Musicians,@kendricklamar,RT @sza: drew barrymore ☺️✨ https://t.co/MnA0iKchy7 +06/20/2017,Musicians,@kendricklamar,JAY HALL OF FAME. NIPSEY MORE BLACK BUSINESS MOVES. LIL MEECH NAILED HIS PAC DEBUT. 2CHAINZ SNAPPIN THE WHOLE ALBUM. RAP RUN IT 4EVER! +06/15/2017,Musicians,@kendricklamar,Stellar performance and story telling. Very proud of this woman. @SZA https://t.co/KIAQz9oTqS +06/09/2017,Musicians,@kendricklamar,"RT @sza: I made this, here it go #Ctrl https://t.co/14S37bgAhN" +05/30/2017,Musicians,@kendricklamar,"RT @MikeWiLLMadeIt: 🚨🦍🚨 + +#PerfectPintsVideo is live + +FT: Kendrick Lamar, Rae Sremmurd, Gucci Mane + +#RANSOM2 + +https://t.co/bdV7egQDUK" +05/25/2017,Musicians,@kendricklamar,RT @dangerookipawaa: a word from RZA https://t.co/vKIMyOBscA +05/11/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +05/01/2017,Musicians,@kendricklamar,DAMN. https://t.co/QKX5FEEidd +04/25/2017,Musicians,@kendricklamar,RT @AmericanExpress: Card Members can get #AmexPresale tix now thru 4/27 to see @KendrickLamar! https://t.co/hj9o9EqRWa https://t.co/W5hDI0… +04/24/2017,Musicians,@kendricklamar,THE DAMN. TOUR https://t.co/RK89UlBayi +04/22/2017,Musicians,@kendricklamar,https://t.co/yRJKuUM8TH +04/22/2017,Musicians,@kendricklamar,RT @dshyman: Got the low down on the new Kendrick from his main man @SounwaveTDE for @GQMagazine https://t.co/hxXhzXBKO0 +04/21/2017,Musicians,@kendricklamar,KenFolk. ThankU 4 the desire of always anticipating new music of my own. None is coming. My work will be in our future TDE dates tho. 💯#DAMN +04/20/2017,Musicians,@kendricklamar,COMPTON. https://t.co/OGxQK6drtX +04/19/2017,Musicians,@kendricklamar,vinyl. https://t.co/fuRHqbg57B +04/19/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +04/18/2017,Musicians,@kendricklamar,RT @DonCheadle: DNA. https://t.co/vN15jKbh2r +04/18/2017,Musicians,@kendricklamar,physicals. https://t.co/334a2Jp27N +04/16/2017,Musicians,@kendricklamar,https://t.co/9aK87Qi8Dt +04/16/2017,Musicians,@kendricklamar,"RT @ESPNNBA: The NBA playoffs start at 3 ET on ABC. + +Something to sit down for, right @kendricklamar? https://t.co/QwXVyJx92x" +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/rWvi04oCTE +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/oJ9UDztNML +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/0nyaf30vtA +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/oqPIAkOCNL +04/14/2017,Musicians,@kendricklamar,DAMN. https://t.co/9aK87Qi8Dt +04/11/2017,Musicians,@kendricklamar,DAMN. by Kendrick Lamar. https://t.co/ucQcg0PuzG +04/06/2017,Musicians,@kendricklamar,HUMBLE. https://t.co/8WpQ628QIQ +04/04/2017,Musicians,@kendricklamar,"RT @trvisXX: GOOSEBUMPS VIDEO +https://t.co/13PW2RUwNk" +04/02/2017,Musicians,@kendricklamar,RT @S_C_: Kalief is a prophet. His story will save lives . You guys watching and your compassion made this happen. Thank you . https://t.co… +03/31/2017,Musicians,@kendricklamar,Mr. 1-5 +03/31/2017,Musicians,@kendricklamar,Kung Fu Kenny. +03/31/2017,Musicians,@kendricklamar,https://t.co/jAapTgpTEN +03/31/2017,Musicians,@kendricklamar,https://t.co/f5IoSdCANQ +03/31/2017,Musicians,@kendricklamar,https://t.co/y7wjvh5mZo +03/31/2017,Musicians,@kendricklamar,https://t.co/ODrJikuh19 +03/30/2017,Musicians,@kendricklamar,https://t.co/E2STAyQ7GT +03/30/2017,Musicians,@kendricklamar,RT @PROBLEM354: I've slept a total of 3 hours on the last 2 days +03/24/2017,Musicians,@kendricklamar,The Heart Part 4 https://t.co/XcDcxJtvCt +03/24/2017,Musicians,@kendricklamar,The Heart Part 4 https://t.co/C9M7ZH1o4v +03/01/2017,Musicians,@kendricklamar,RT @S_C_: This is important. spike tv 10pm/9c https://t.co/JkRZxJ1YHT +02/24/2017,Musicians,@kendricklamar,I love it Nicki Minaj. 😍👑🤕 +02/22/2017,Musicians,@kendricklamar,"RT @S_C_: By the way, this is a win for US. I remember when rap was said to be a fad . We are now alongside some of the greatest writers in…" +02/07/2017,Musicians,@kendricklamar,RT @dangerookipawaa: https://t.co/g8m5doKMtN @sza +01/21/2017,Musicians,@kendricklamar,RT @fatbellybella: Never Forget... https://t.co/fRvrSa6vcD +01/20/2017,Musicians,@kendricklamar,@potus We really gonna miss you champ. The good you've done & opportunity's you've given. Truly never know what we got til its gone. Thank u +01/19/2017,Musicians,@kendricklamar,RT @dangerookipawaa: Welcome home kid #JohnDoe2 @inglewoodSiR https://t.co/hvSE8rcoEl #TDE +01/13/2017,Musicians,@kendricklamar,@sza 😍. https://t.co/omjNdjjYx1 Amazing writer. Thank you. +12/20/2016,Musicians,@kendricklamar,2DAY. Family. #TDEXMAS2016 https://t.co/uJTOkTk1gl +12/15/2016,Musicians,@kendricklamar,"RT @ScHoolboyQ: #BlankFaceTour - Groovy Tony [EPISODE 5] +https://t.co/0pfFN4ndob" +12/15/2016,Musicians,@kendricklamar,"RT @abdashsoul: Do What Thou Wilt. +https://t.co/VvbDguXSsO" +12/14/2016,Musicians,@kendricklamar,next stop with @americanexpress… Brooklyn. https://t.co/4SNi3yFXBp +12/09/2016,Musicians,@kendricklamar,RT @abdashsoul: Not Ye. https://t.co/qSxcHhDLxi https://t.co/zaFzVeIuUE +11/30/2016,Musicians,@kendricklamar,Music Meets Art. My exclusive concert experience with @americanexpress and @Shantell_Martin Tomorrow. Miami.… https://t.co/3E3vfy49lV +11/27/2016,Musicians,@kendricklamar,RT @MoosaTDE: @KEMBE_X 'Oxygen' https://t.co/owKqy4jvUs +11/16/2016,Musicians,@kendricklamar,@VSattenXXL https://t.co/kpSk0zamJO +10/24/2016,Musicians,@kendricklamar,#LilSunnyTour #TDE https://t.co/671ca9NZ5s +10/20/2016,Musicians,@kendricklamar,RT @GQStyle: Kendrick Lamar covers the Holiday issue of GQ Style https://t.co/G2JUjjshE6 https://t.co/yMyttfiPqs +10/13/2016,Musicians,@kendricklamar,"RT @maroon5: The wait is over. Our new single #DontWannaKnow, Ft. @KendrickLamar​ is out now on @AppleMusic https://t.co/f4dsNRwVoE https:/…" +10/07/2016,Musicians,@kendricklamar,Look. https://t.co/Z6x9VRifW8 +10/03/2016,Musicians,@kendricklamar,https://t.co/cXU0aDNnAl +09/27/2016,Musicians,@kendricklamar,Pimp pimp! available now. https://t.co/uooPMbe3Qe https://t.co/TqR7hpamh0 +09/02/2016,Musicians,@kendricklamar,RT @isaiahrashad: Thanks for holding us down.. and thanks to our parents for keeping our phones on https://t.co/XOuMg2mxJw +08/24/2016,Musicians,@kendricklamar,Blonde and Endless. Encore to Frank. +08/05/2016,Musicians,@kendricklamar,"RT @skiiiwalker: ""All Stops"" https://t.co/OSoWQaWNBD" +07/29/2016,Musicians,@kendricklamar,RT @iamstillpunch: Shout out to Oran Juice Jones. He was pretty pissed when he caught his lady walking in the rain with that other nigga. L… +07/24/2016,Musicians,@kendricklamar,Isaiah Copper. Go young man! Go!https://t.co/pWzlKnxFKs +07/23/2016,Musicians,@kendricklamar,RT @TopDawgEnt: [NEW MERCH ALERT] @kendricklamar #PanoramaNYCFestival Purchase yours today and tmrw!!! #TDE https://t.co/rpqA6PwN5l +07/21/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: new video. joHn muir: https://t.co/a1eQtq21iZ +07/08/2016,Musicians,@kendricklamar,#BlankFaceLP https://t.co/KrV7Rwjz6X +07/08/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: THat OtHer Part. Black Hippy REMIX. #BlankFaceLP drops in 1Hr!!! https://t.co/Em7DvFuqmv https://t.co/lipjpQsrLw +07/04/2016,Musicians,@kendricklamar,tune in https://t.co/IxoEMyLOPG @WhiteHouse 645PM EST +06/25/2016,Musicians,@kendricklamar,"London. 7/2 @BSTHydePark +https://t.co/0gVYPdS18g https://t.co/mEcFS4pSDO" +06/16/2016,Musicians,@kendricklamar,RT @ScHoolBoyQ: OFFICIAL - JULY 8tH https://t.co/exxCxblb12 +05/11/2016,Musicians,@kendricklamar,. @skiiiwalker ? +05/01/2016,Musicians,@kendricklamar,@Luxxkjr gmoms food it is... +05/01/2016,Musicians,@kendricklamar,@Luxxkjr u must got a few dollas on you. Steak and lobster. Let me hold somethin. +04/14/2016,Musicians,@kendricklamar,No pressure. THE GREAT ONE. @kobebryant . Thank you for the journey champ. +04/12/2016,Musicians,@kendricklamar,.@JCrossover https://t.co/MEupLv6p32 +04/12/2016,Musicians,@kendricklamar,"RT @SportsCenter: ""How do empires last when there's no longer an emperor?"" + +@kendricklamar honors @kobebryant. https://t.co/iTWKDfY53M" +04/06/2016,Musicians,@kendricklamar,https://t.co/o711uZ7bBJ ....super. +04/06/2016,Musicians,@kendricklamar,Miles Ahead by the incredible @IamDonCheadle. Must see. +04/05/2016,Musicians,@kendricklamar,Q season. +07/01/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: Last day of 20% OFF! https://t.co/6Eh3zt5bZS +06/30/2018,Musicians,@OzzyOsbourne,"The North American leg of #NoMoreTours2 kicks off in just 2 MONTHS! + +Go to https://t.co/mlduswcZH5 to see the list… https://t.co/de69cH94V9" +06/29/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Warehouse Summer Sale! + +Get 20% OFF EVERYTHING in our @eBay Store now thru Sunday night! +https://t.co/pHLOvgnrE0 + +Plus 10%…" +06/29/2018,Musicians,@OzzyOsbourne,"on stage 1978 +#fbf https://t.co/WNgJlnvBB7" +06/29/2018,Musicians,@OzzyOsbourne,RT @DKMS_us: Thank you @OzzyOsbourne for supporting us in the fight against blood cancer. https://t.co/t9EVrKm4Sw +06/28/2018,Musicians,@OzzyOsbourne,https://t.co/RVhNph0rw0 +06/28/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: Cultureshock: @TheOsbournesTV airs July 2nd on @AETV +Set your DVR's and RSVP at https://t.co/vBjlfQ7ERP https://t.co/Uy…" +06/28/2018,Musicians,@OzzyOsbourne,"Please #GetOnTheList with @LHSF AND consider donating to help delete blood cancer! +@DKMS_us @DKMS_uk + +https://t.co/BahNozGIrr" +06/28/2018,Musicians,@OzzyOsbourne,"My life is free now, my life is clear +I love you sweet leaf—though you can’t hear. + +#tbt https://t.co/MpHQSUvslU" +06/27/2018,Musicians,@OzzyOsbourne,"RT @AETV: Watch Ozzy and Jack tonight at 9pm to welcome a new member to the A&E family, Minnie Theodora Osbourne! https://t.co/RQ2Lc3DmUT" +06/27/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: . @AETV's Cultureshock: @TheOsbournesTV airs July 2nd, Set your DVR's! +RSVP at https://t.co/kTN26dYmTB + + And don't for…" +06/27/2018,Musicians,@OzzyOsbourne,"RT @AETV: ""Namaste Dad!"" Keep up with @OzzyOsbourne and @KellyOsbourne tonight at 9 PM on #OzzyandJack. https://t.co/mgn5oybmMr" +06/27/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Grab the Ice Cream and get ready for an all new episode of #OzzyAndJack's and #Kelly’s World Detour TONIGHT on @AETV! ht… +06/27/2018,Musicians,@OzzyOsbourne,Get FIRED UP for an all new episode of @OzWorldDetour airing TONIGHT on @AETV! https://t.co/EwkLin5FcI +06/26/2018,Musicians,@OzzyOsbourne,"with Glenn Tipton a couple nights ago in Belgium + +Photo: @RossHalfin https://t.co/a4CfHqgO8y" +06/25/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: All new episode this Wednesday at 9pm on @AETV! #OzzyAndJack https://t.co/NkE4qi0QAj +06/25/2018,Musicians,@OzzyOsbourne,"Hey @Channel4 move to Birmingham + +#WMGeneration +@Channel4News +@BhamCityCouncil https://t.co/49h4IHjaSw" +06/25/2018,Musicians,@OzzyOsbourne,"""Hand of the Enemy"" + +https://t.co/dUowi7ABaZ https://t.co/KgQHM9cfXa" +06/24/2018,Musicians,@OzzyOsbourne,Tune in to Wednesday's all new @OzWorldDetour on @AETV! https://t.co/6zHD3kuZSY +06/23/2018,Musicians,@OzzyOsbourne,on stage 1977 https://t.co/yypZgUY1vA +06/23/2018,Musicians,@OzzyOsbourne,"RT @AETV: ICYMI: Last night on #OzzyandJack, @OzzyOsbourne and @KellyOsbourne head to Arizona and see sites that would make @JackOsbourne j…" +06/22/2018,Musicians,@OzzyOsbourne,Who would like to see @TheOzzfest happen in the New York area this year? Post your answers at… https://t.co/rB6zXAP4Jf +06/22/2018,Musicians,@OzzyOsbourne,1977 #fbf https://t.co/Y5yokOQ5Ju +06/21/2018,Musicians,@OzzyOsbourne,"on stage in Illinois 1974 + +I return to the Chicago area in only 3 MONTHS! #NoMoreTours2 + +https://t.co/wj6aIKJIuI https://t.co/fanhadaCPW" +06/21/2018,Musicians,@OzzyOsbourne,RT @AETV: Superhero Ozzy! #OzzyandJack https://t.co/pIhDgWRBEK +06/21/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: We're back tonight! Check out the hijinks at 9pm on @AETV! #OzzyAndJack https://t.co/n7GsE9pRjb +06/20/2018,Musicians,@OzzyOsbourne,On tonight’s episode of @OzWorldDetour on @AETV https://t.co/5Hh38m932v +06/19/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: On this week’s World Detour https://t.co/XZriQMTuzA +06/19/2018,Musicians,@OzzyOsbourne,RT @LHSF: Just about two months until #lovehopestrength… https://t.co/WOoKU8n6bf +06/19/2018,Musicians,@OzzyOsbourne,Traveled to the Prague show last week this @AudiUK #audiSQ7. Nice ride! https://t.co/2HZFZJtSms +06/18/2018,Musicians,@OzzyOsbourne,on stage in the early days https://t.co/UJBcsi5ce0 +06/17/2018,Musicians,@OzzyOsbourne,"Happy Father’s Day! + +Photo: @markweissguy https://t.co/4J9VzOJkmW" +06/17/2018,Musicians,@OzzyOsbourne,RT @JackOsbourne: Happy Father’s Day to this guy right here. He’s… https://t.co/BhHgx05arh +06/16/2018,Musicians,@OzzyOsbourne,Lazy Saturday at Home 1990 https://t.co/jQRWcdF2J7 +06/15/2018,Musicians,@OzzyOsbourne,"Just me and Johnny hanging in Prague + +Photo: @RossHalfin https://t.co/bJSvP3orMC" +06/14/2018,Musicians,@OzzyOsbourne,Great to see my old friend @JDavisOfficial when we were gigging together in Prague. https://t.co/rVTGrtX3Fu +06/14/2018,Musicians,@OzzyOsbourne,"June 13 & 14, 1986 +with @Metallica at Long Beach Arena +#tbt https://t.co/2QOCGCvnmg" +06/13/2018,Musicians,@OzzyOsbourne,"Season 3 of Ozzy & Jack's @OzWorldDetour begins TONIGHT on @AETV! + +#ozzyandjack https://t.co/NUOQAnfNZY" +06/12/2018,Musicians,@OzzyOsbourne,with my old friend Baldric https://t.co/xsWOtRHgir +06/12/2018,Musicians,@OzzyOsbourne,"RT @MSOPR: .@OzzyOsbourne hit it hard @DownloadFest in the U.K with 80,000 fans on hand. https://t.co/p6qtIJNwkV" +06/11/2018,Musicians,@OzzyOsbourne,RT @PCFnews: Thank you! https://t.co/q1Yo2ZjcQv +06/11/2018,Musicians,@OzzyOsbourne,"Released June 11, 2010 + +https://t.co/SpKHTOrJYl" +06/11/2018,Musicians,@OzzyOsbourne,RT @MrsSOsbourne: From @OzzyOsbourne’s show yesterday at @DownloadFest https://t.co/OixXJpMFVt +06/11/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @OzzyOsbourne at #Ozzfest 2001 https://t.co/10XCeg0eqP +06/11/2018,Musicians,@OzzyOsbourne,"at the @HollywoodBowl in 1975 + +I return to The Bowl in 4 MONTHS for #NoMoreTours2 on Oct 11 with @StoneSour… https://t.co/6xvx179ppJ" +06/11/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Thank you @DownloadFest. +I hope you had a great time, I know I did. + +Next stop for #NoMoreTours2 us the Czech Republic! h…" +06/10/2018,Musicians,@OzzyOsbourne,"Thank you @DownloadFest. +I hope you had a great time, I know I did. + +Next stop for #NoMoreTours2 us the Czech Repub… https://t.co/Hvg2BVuTOv" +06/10/2018,Musicians,@OzzyOsbourne,"TRI-STATE AREA! + +Less than 3 Months until #NoMoreTours2 at @NorthwellJBT followed by @PNCArtsCenter + +Show list:… https://t.co/MlBQs2iSpb" +06/09/2018,Musicians,@OzzyOsbourne,Season 3 of #OzzyAndJack’s @OzWorldDetour starts this Wednesday June 13th on @AETV https://t.co/tINlNf6Cqj +06/09/2018,Musicians,@OzzyOsbourne,RT @AETV: Buckle Up and watch this SNEAK PEEK from the upcoming season of #OzzyandJack premiering Wednesday June 13th at 9PM! https://t.co/… +06/08/2018,Musicians,@OzzyOsbourne,"Thank you and goodnight @SwedenRockFest! + +Next stop for #NoMoreTours2 is @DownloadFest on Sunday https://t.co/cBn4Vhhftd" +06/08/2018,Musicians,@OzzyOsbourne,RT @TheOsbournesTV: . #OzzyAndJack’s @OzWorldDetour Season 3 begins on WEDNESDAY on @AETV! https://t.co/CL46aqzOtL +06/08/2018,Musicians,@OzzyOsbourne,"June 8, 1984 edition of +The Weekend Dallas Times Herald +#fbf https://t.co/iyVRib1KxA" +06/07/2018,Musicians,@OzzyOsbourne,"Ozzy & Jack's @OzWorldDetour Season 3 Premier is this Wednesday June 13th on @AETV! + +#ozzyandjack https://t.co/bBIhzigufc" +06/07/2018,Musicians,@OzzyOsbourne,"RT @RollingStone: Ozzy Osbourne tells us about roadtripping with his kids, blowing stuff up and trying goat yoga https://t.co/RKUvuMWAmj ht…" +06/07/2018,Musicians,@OzzyOsbourne,"RT @AETV: Whose ready for a rockin' ride?! Ozzy, Jack, and Kelly are headed out on the road in the season premiere of #OzzyJack June 13th a…" +06/06/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts airing 1 WEEK from today on @AETV! https://t.co/uLelncLXk1 +06/06/2018,Musicians,@OzzyOsbourne,"BOSTON!! + +Only 3 MONTHS until #NoMoreTours2 hits the @XfinityCenter! + +https://t.co/wj6aIKJIuI https://t.co/WH9rCEZrAq" +06/06/2018,Musicians,@OzzyOsbourne,"RT @JackOsbourne: Season 3 of #OzzyandJack starts at 9PM Wednesday June 13th on @AETV! +#ozzyandjack https://t.co/zNGadi1FFz" +06/05/2018,Musicians,@OzzyOsbourne,"Thank you Russia for an amazing kickoff to the 2nd leg of #NoMoreTours2! + +Head to https://t.co/mlduswcZH5 to see a… https://t.co/MqaqgOA06M" +06/05/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Season 3 of @OzWorldDetour begins Wednesday June 13th on @AETV! + +https://t.co/NpObSjfBub + +#ozzyandjack https://t.co/VrDP4…" +06/05/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: In honor of June being Men's Health Month, 10% of all proceeds in the #Ozzfest @eBay Store will go directly to the Prostate…" +06/04/2018,Musicians,@OzzyOsbourne,"RT @OzzysBoneyard: NEW EPISODE of Ozzy Speaks!!! +Today @ 5 & 8pm ET hear @OzzyOsbourne @BillyMorrison #OzzySpeaks on Ozzy’s Boneyard! 🤘🏼 +Re…" +06/04/2018,Musicians,@OzzyOsbourne,New episode of #OzzySpeaks airs TODAY at 5pm ET/2pm PT on @SIRIUSXM @OzzysBoneyard! https://t.co/HbIH59QpCj +06/03/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts at 9PM Wednesday June 13th on A&E! https://t.co/N6yt4gH1tm +06/03/2018,Musicians,@OzzyOsbourne,"Street Plaques in 3 Countries: +Moscow, Russia; Hollywood, CA and Birmingham U.K. https://t.co/xYb6wLCbqb" +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Last night in Moscow. +Tomorrow night is St. Petersburg! https://t.co/mlduswcZH5 + +Photo: @RossHalfin https://t.co/VITekK7d…" +06/02/2018,Musicians,@OzzyOsbourne,"Last night in Moscow. +Tomorrow night is St. Petersburg! https://t.co/mlduswcZH5 + +Photo: @RossHalfin https://t.co/VITekK7dsd" +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzzysBoneyard: Ozzy Osbourne: ‘My problem, really, is I don’t remember I’m 70’ [He’s 69] https://t.co/vgWDHvY1Z0" +06/02/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack starts on Wednesday June 13th on @AETV https://t.co/gIRFGsTprx +06/02/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: Happy Friday! +#ozzyandjack https://t.co/26A9qnSKT1" +06/02/2018,Musicians,@OzzyOsbourne,"RT @TheOsbournesTV: Season 3 of @OzWorldDetour begins Wednesday June 13th on A&E! + +#ozzyandjack https://t.co/AQzCg72gc9" +06/01/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Yesterday at the Vegas Center in Moscow + +2 Russian Shows This Week: +Moscow Today and St. Petersburg on Sunday! +https://t.…" +06/01/2018,Musicians,@OzzyOsbourne,"Yesterday at the Vegas Center in Moscow + +2 Russian Shows This Week: +Moscow Today and St. Petersburg on Sunday!… https://t.co/LXBDnwFLvY" +06/01/2018,Musicians,@OzzyOsbourne,"RT @AETV: ""The Prince of Darkness...Look where I've ended up!"" The new season of #OzzyandJack begins June 13th at 9PM. https://t.co/DMpa2jW…" +06/01/2018,Musicians,@OzzyOsbourne,RT @axs: In two weeks The Dark Lords of Metal will shine their black sun upon @OzzyOsbourne! https://t.co/AofypCWVuU https://t.co/K4h7GWIzUg +06/01/2018,Musicians,@OzzyOsbourne,"RT @LIPALiverpool: Then this afternoon Ozzy and Sharon Osbourne chat to Noddy Holder about picking up the pieces after #BlackSabbath split,…" +05/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Less than 1 WEEK until https://t.co/2D2tbXx3Fy in Hyvinkää! + +TIX: https://t.co/egyqL8NGcL https://t.co/LVMVE7Hj5O" +05/31/2018,Musicians,@OzzyOsbourne,"Less than 1 WEEK until https://t.co/2D2tbXx3Fy in Hyvinkää! + +TIX: https://t.co/egyqL8NGcL https://t.co/LVMVE7Hj5O" +05/31/2018,Musicians,@OzzyOsbourne,"on stage at Cal Jam 1974 +#tbt https://t.co/1OkYV0M7FG" +05/31/2018,Musicians,@OzzyOsbourne,RT @MetalHammer: .@OzzyOsbourne is coming to the Golden Gods! https://t.co/WM0OqDhI4v +05/31/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: Announcing the #Ozzfest 2004 Lineup with @OzzyOsbourne @MrsSOsbourne @Slayer @JudasPriest @ZakkWyldeBLS @DownNola @Lacuna_C… +05/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Which show are you coming to? +https://t.co/mlduswcZH5 + + #NoMoreTours2 https://t.co/tw6IAzbDQv" +05/30/2018,Musicians,@OzzyOsbourne,"Which show are you coming to? +https://t.co/mlduswcZH5 + + #NoMoreTours2 https://t.co/tw6IAzbDQv" +05/30/2018,Musicians,@OzzyOsbourne,RT @TheOzzfest: . @OzzyOsbourne at #Ozzfest 2002 https://t.co/dclaLQvHRV +05/30/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: 35 Years Ago Today + +https://t.co/xdAXmzhkSq" +05/29/2018,Musicians,@OzzyOsbourne,"35 Years Ago Today + +https://t.co/xdAXmzhkSq" +05/28/2018,Musicians,@OzzyOsbourne,"Season 3 of @OzWorldDetour begins Wednesday June 13th on @AETV! + +https://t.co/NpObSjfBub + +#ozzyandjack https://t.co/VrDP4T9OHK" +05/27/2018,Musicians,@OzzyOsbourne,Pick up the current issue of @MetalHammer https://t.co/DqQJXCw4NU +05/26/2018,Musicians,@OzzyOsbourne,"Want to hear an episode of ""Ozzy Speaks"" but don't have @SiriusXM? Now is your FREE chance!! + +Head to the link bel… https://t.co/jzcqAoCvpq" +05/25/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: Season 3 of #OzzyandJack begins Wednesday June 13th on @AETV! https://t.co/4ZxXxgR8Ao +05/25/2018,Musicians,@OzzyOsbourne,"Only 1 WEEK until the next leg of #NoMoreTours2 kicks off! +Head to https://t.co/mlduswcZH5 to see the list of shows… https://t.co/yf4RIRBfY2" +05/25/2018,Musicians,@OzzyOsbourne,RT @WSJ: Ozzy Osbourne tells the story of the song that helped put him and Black Sabbath on the map https://t.co/eKpQ45kSRa +05/25/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Ozzy Osbourne - ""Perry Mason"" Live at Ozzfest 1996 https://t.co/e2XO63pb36" +05/24/2018,Musicians,@OzzyOsbourne,RT @OzWorldDetour: #ozzyandjack https://t.co/9q0iJ8YQY5 +05/24/2018,Musicians,@OzzyOsbourne,#tbt https://t.co/nd5QNjMC2j +05/24/2018,Musicians,@OzzyOsbourne,RT @MetalHammer: ...but that’s not all that’s inside our new issue. We got together some of metal’s biggest names to interview The Prince O… +05/23/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Thank you South America! +Next stop for #NoMoreTours2 is Russia! + +Upcoming shows http:/:https://t.co/mlduswcZH5 + +Photo: Al…" +05/23/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Released May 22nd 2007 + +https://t.co/uE5QvCo1M5" +05/22/2018,Musicians,@OzzyOsbourne,"Released May 22nd 2007 + +https://t.co/uE5QvCo1M5" +05/22/2018,Musicians,@OzzyOsbourne,"Thanks to my friends at @MetalCasino, I have 2 extra of the festival’s VIP tickets to Sweden Rock Festival! + +To win… https://t.co/dCzSvOYgp3" +05/22/2018,Musicians,@OzzyOsbourne,"Thank you South America! +Next stop for #NoMoreTours2 is Russia! + +Upcoming shows http:/:https://t.co/mlduswcZH5 + +Pho… https://t.co/yQFX0FxF7D" +05/22/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Don't forget you can roll to #NoMoreTears with a VIP Package! + +Europe: https://t.co/aEdD9AApiJ +North America: https://t.c…" +05/21/2018,Musicians,@OzzyOsbourne,Riffing into a Monday like... https://t.co/6rvT7TXI2a +05/20/2018,Musicians,@OzzyOsbourne,Time to read the Sunday paper https://t.co/4j0t8bWofb +05/19/2018,Musicians,@OzzyOsbourne,"Don't forget you can roll to #NoMoreTears with a VIP Package! + +Europe: https://t.co/aEdD9AApiJ +North America:… https://t.co/jFqwpu09yg" +05/18/2018,Musicians,@OzzyOsbourne,"on stage in the 70's +#fbf https://t.co/Dj0E6NrImw" +05/17/2018,Musicians,@OzzyOsbourne,"Double Picture Disc LP versions of 'Memoirs of a Madman' on sale TODAY at @PopMarketMusic! + +https://t.co/gur6xHglEj" +05/17/2018,Musicians,@OzzyOsbourne,"on the cover of Faces Magazine May 1984 +#tbt https://t.co/k5s0Bu56bi" +05/17/2018,Musicians,@OzzyOsbourne,RT @OzzysBoneyard: https://t.co/nDS7prehOK +05/17/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: RSVP to let us know you'll be watching! +https://t.co/yjsxWeshWm" +05/16/2018,Musicians,@OzzyOsbourne,"Wish you could check out @OzzysBoneyard for FREE? +Now is your chance - May 29th! +https://t.co/4GHZ4FybAx + +Your inac… https://t.co/cCXcMeoEO8" +05/15/2018,Musicians,@OzzyOsbourne,"On way to Curitiba for tomorrow's concert! +#NoMoreTours2 at Pedreira Paulo Leminski +https://t.co/mlduswcZH5 + +Photo:… https://t.co/RHrnkj3tvc" +05/15/2018,Musicians,@OzzyOsbourne,"RT @OzWorldDetour: SEASON 3 OF ‘OZZY & JACK’S WORLD DETOUR’ RETURNS WEDNESDAY, JUNE 13 AT 9PM ET/PT + +#OzzyandJack are back this summer on…" +05/15/2018,Musicians,@OzzyOsbourne,"RT @OsbournePodcast: Here’s a snippet of Jack interrogating his 6-year-old daughter, Pearl. When cornered, Pearl does the right thing and b…" +05/14/2018,Musicians,@OzzyOsbourne,Whaddya mean it’s Monday? https://t.co/TKU2Wk3Igt +05/13/2018,Musicians,@OzzyOsbourne,Happy #MothersDay @MrsSOsbourne! https://t.co/VbeeLrWGbO +05/13/2018,Musicians,@OzzyOsbourne,"CZECH REPUBLIC! + +Only 1 MONTH from today + +TIX: https://t.co/wdT16aRRxO + +VIP: https://t.co/eBBqC1QURA https://t.co/8gh6yBLzFR" +05/13/2018,Musicians,@OzzyOsbourne,"Tonight is the first of 4 #NoMoreTours2 concerts in Brazil! +https://t.co/mlduswcZH5 https://t.co/G5LbT02hJI" +05/11/2018,Musicians,@OzzyOsbourne,"Only 3 WEEKS until the 2nd leg of #NoMoreTours2 kicks off in Moscow! + +TIX: https://t.co/OhskNbOZ3j + +VIP Packages:… https://t.co/a4OFBZ839n" +05/10/2018,Musicians,@OzzyOsbourne,"on our way to #NoMoreTours2 in Argentina happening tomorrow at #EstadioObras +https://t.co/mlduswcZH5 + +Photo:… https://t.co/ieOK37d0GV" +05/09/2018,Musicians,@OzzyOsbourne,"SAN DIEGO! + +5 MONTHS until #NoMoreTours2 at @MattressFirmAmp with @StoneSour! + +TIX: https://t.co/wj6aIKJIuI + +VIP Pa… https://t.co/kJtAMMAQqu" +05/08/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: TONIGHT in Chile at @MoviStarArena! +https://t.co/mlduswcZH5 +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/wDItaDEnEC" +05/08/2018,Musicians,@OzzyOsbourne,Bid on a #NoMoreTours2 @VIPNation Meet & Greet Package with all proceeds benefiting the @ACLU! Available now on… https://t.co/rtqsHcgLyj +05/08/2018,Musicians,@OzzyOsbourne,"TONIGHT in Chile at @MoviStarArena! +https://t.co/mlduswcZH5 +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/wDItaDEnEC" +05/08/2018,Musicians,@OzzyOsbourne,"RT @MrsSOsbourne: Ozzy on his way to Mexico and performing in front of 80,000 people and I had to miss the whole thing as I forgot my passp…" +05/07/2018,Musicians,@OzzyOsbourne,"On way to Chile! + +Photo: @RossHalfin https://t.co/VROpCD1Rqu" +05/06/2018,Musicians,@OzzyOsbourne,"Last night in Mexico City. Next stop Chile! +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/Fnu9szxW2b" +05/05/2018,Musicians,@OzzyOsbourne,"Today at @HHFest! +#NoMoreTours2 https://t.co/iJlymawVIJ" +05/05/2018,Musicians,@OzzyOsbourne,"outside Las Ventas Bullring, Madrid April 1989 + +I return to Spain in July for @DownloadFestMad and @BCNRockfest https://t.co/tBADzhyHAf" +05/04/2018,Musicians,@OzzyOsbourne,"Tomorrow At @HHFest in Mexico City! +#NoMoreTours2 + +Photo: @RossHalfin https://t.co/5eXN7MvlBQ" +05/04/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: A Look Back at #Ozzfest 2016 +#tbt https://t.co/zChoNONc9P" +05/03/2018,Musicians,@OzzyOsbourne,"with Bernie Torme at @TheGarden on the Diary of a Madman Tour April 1982 +#tbt https://t.co/ec9Vr1krma" +05/02/2018,Musicians,@OzzyOsbourne,"TOMORROW on @OzzysBoneyard, @SiriusXM Ch 38, 5/3 at 5PM ET + +Hear an all new episode of #OzzySpeaks - Ozzy is joine… https://t.co/TTMyR317v9" +05/02/2018,Musicians,@OzzyOsbourne,RT @josemangin: Holy F moment of my Florida weekend...starting @OzzyOsbourne chant before The Prince Of Darkness @ZakkWyldeBLS & the guys s… +05/02/2018,Musicians,@OzzyOsbourne,On this week’s @OsbournePodcast available for FREE from @ApplePodcasts and https://t.co/rTvg75JlEc https://t.co/LadQXRiAnV +05/02/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: NEW MONTH = NEW CHARITY!! + +For the month of May, 10% of all proceeds from @TheOzzfest @eBay Store, containing mostly the la…" +05/01/2018,Musicians,@OzzyOsbourne,"1 MONTH TILL MOSCOW! + +TIX: https://t.co/OhskNbOZ3j + +VIP: https://t.co/Aeb24ptKqO https://t.co/3roHtBXKb7" +04/30/2018,Musicians,@OzzyOsbourne,"Thank you Ft. Lauderdale! +Next stop Mexico City on Saturday! #NoMoreTours2 + +Photo: @RossHalfin https://t.co/JsDWj47UCO" +04/29/2018,Musicians,@OzzyOsbourne,"Tonight #NoMoreTours2 in Ft. Lauderdale! + +Photo: @RossHalfin from Jacksonville, FL on Friday… https://t.co/v68xFVbP0m" +04/28/2018,Musicians,@OzzyOsbourne,"Thank you Jacksonville! +Tomorrow night in Ft. Lauderdale +#NoMoreTours2 +https://t.co/mldusvVoPx https://t.co/2ZVIOneSRp" +04/27/2018,Musicians,@OzzyOsbourne,Who is ready for the kickoff of #NoMoreTours2 today at @RockvilleFest with @FortRockFest performance on Sunday! https://t.co/BYVFBDo5Fq +04/27/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: #NoMoreTours2 starts tomorrow at @RockvilleFest and @FortRockFest on Sunday! +https://t.co/mldusvVoPx https://t.co/PJ0IHsb…" +04/26/2018,Musicians,@OzzyOsbourne,"#NoMoreTours2 starts tomorrow at @RockvilleFest and @FortRockFest on Sunday! +https://t.co/mldusvVoPx https://t.co/PJ0IHsbxkD" +04/24/2018,Musicians,@OzzyOsbourne,"The #NoMoreTours2 concerts start with 2 festivals in Florida this weekend! + +Show listings at… https://t.co/0FhzRuD5MW" +04/23/2018,Musicians,@OzzyOsbourne,"INDIANA! + +5 MONTHS until #NoMoreTours2 in Noblesville with @StoneSour! + +TIX: https://t.co/wj6aIKJIuI + +VIP:… https://t.co/Y4PvWatW6j" +04/22/2018,Musicians,@OzzyOsbourne,Flying High Again https://t.co/bk4vgqM6Wa +04/22/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: Last 5 of these @BlackSabbath patches from #TheEnd Tour! +https://t.co/pHLOvgnrE0 https://t.co/VjpwljRYC8" +04/21/2018,Musicians,@OzzyOsbourne,I wonder what's for lunch today... https://t.co/wz2RyZPDIU +04/20/2018,Musicians,@OzzyOsbourne,"Happy 420! +#fbf https://t.co/lCXNATXWKE" +04/20/2018,Musicians,@OzzyOsbourne,RT @T4FBizarro: No te pierdas la última oportunidad de disfrutar del sonido de @OzzyOsbourne en Chile este 8 de mayo en @movistararena . Co… +04/20/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: April 19, 1986 issue of Cashbox Magazine +#tbt https://t.co/IrdLpiVywG" +04/19/2018,Musicians,@OzzyOsbourne,"April 19, 1986 issue of Cashbox Magazine +#tbt https://t.co/IrdLpiVywG" +04/18/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until Ozzy in Belo Horizonte! + +#NoMoreTours2 + +https://t.co/EGplM9fsbH https://t.co/HMEh3m5FeK" +04/17/2018,Musicians,@OzzyOsbourne,on tour in 1978 https://t.co/dCv3L94jrZ +04/16/2018,Musicians,@OzzyOsbourne,New episode of The @OsbournePodcast featuring @RossHalfin available TODAY at @ApplePodcasts or… https://t.co/MHjbOCiNKz +04/16/2018,Musicians,@OzzyOsbourne,"RT @duffgoldman: We should #FlashbackFriday for this #CakeOfTheWeek: when @Charm_CityCakes made a cake for the Prince of Darkness himself,…" +04/15/2018,Musicians,@OzzyOsbourne,"Logo Magazine April 1989 +#UltimateSinSundays https://t.co/fBpZw9PxSj" +04/14/2018,Musicians,@OzzyOsbourne,April 1984 https://t.co/8hXh7F8avN +04/13/2018,Musicians,@OzzyOsbourne,"Loading in for #NoMoreTours2 rehearsals + +Show list: https://t.co/3lI792GbB3 https://t.co/mrb2Yo82WI" +04/13/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until Ozzy in São Paulo at @AllianzParque ! + +https://t.co/EGplM9fsbH https://t.co/50cRddSXjf" +04/12/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: 5 MONTHS from today is #NoMoreTours2 in Camden at @BBTPavilion! + +https://t.co/wj6aIKJIuI https://t.co/weg3zl5Bs3" +04/12/2018,Musicians,@OzzyOsbourne,"5 MONTHS from today is #NoMoreTours2 in Camden at @BBTPavilion! + +https://t.co/wj6aIKJIuI https://t.co/weg3zl5Bs3" +04/11/2018,Musicians,@OzzyOsbourne,"Only 1 MONTH until the concert in Chile! + +https://t.co/BPMEHnuSRq https://t.co/M0qgGF9GHJ" +04/10/2018,Musicians,@OzzyOsbourne,"On the road + +Upcoming #NoMoreTours2 concerts listed at https://t.co/3lI792GbB3 https://t.co/v71duoDjwU" +04/09/2018,Musicians,@OzzyOsbourne,New @OsbournePodcast episode released today!! Download for FREE from @ApplePodcasts or https://t.co/rTvg75JlEc https://t.co/brZgqkuCU7 +04/09/2018,Musicians,@OzzyOsbourne,Getting ready for the week like... https://t.co/tPgbI3DRaC +04/08/2018,Musicians,@OzzyOsbourne,"on the Diary of a Madman tour, April 1982 at @TheGarden + +I return to NY on Sept 8 +https://t.co/3lI792GbB3 https://t.co/ZfzxiSoEfI" +04/08/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 La despedida de los escenarios del gran icono del rock @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫📲 Tickets…" +04/08/2018,Musicians,@OzzyOsbourne,RT @T4FBizarro: @OzzyOsbourne nos deja esta reflexión. 8 de Mayo en Chile Más info en: https://t.co/cvf0m4Qkz3 #conciertost4fbizarro https:… +04/08/2018,Musicians,@OzzyOsbourne,"RT @VIPNation: Got your @OzzyOsbourne VIP yet? HURRY! + +https://t.co/QTcpNrYAUs & +https://t.co/qXSfHQHwX7 https://t.co/XugFlHhsVy" +04/07/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: NEW MONTH = NEW CHARITY + +10% of ALL proceeds in the #Ozzfest @eBay Store will go directly to @SoCalBulldog + +https://t.co/p…" +04/07/2018,Musicians,@OzzyOsbourne,"with Captain Lou Albano on April 7, 1986 at @WWE #Wrestlemania 2 https://t.co/htIgJJcMHp" +04/06/2018,Musicians,@OzzyOsbourne,"Fun with Funicello Part 2 +#fbf https://t.co/TAOmfidxp1" +04/05/2018,Musicians,@OzzyOsbourne,"Record Review April 1982 +#tbt https://t.co/X4YrX8iUzH" +04/04/2018,Musicians,@OzzyOsbourne,https://t.co/gMj0acAN7O +04/03/2018,Musicians,@OzzyOsbourne,"Classic Rock Russia April 2007 + +I return to Russia in less than 2 months +https://t.co/3lI792GbB3 https://t.co/UmyIKVWAKB" +04/02/2018,Musicians,@OzzyOsbourne,All new episode of The @OsbournePodcast released TODAY! Get it for FREE from @ApplePodcasts or the family podcast… https://t.co/eShuyioQ28 +04/01/2018,Musicians,@OzzyOsbourne,"RT @TheOzzfest: HAPPY #EASTER! + +Photo: @MarkWeissguy https://t.co/XXnTDKhDUZ" +04/01/2018,Musicians,@OzzyOsbourne,"HAPPY EASTER! + +Photo: @MarkWeissguy + +If you would like to be entered for a chance to win a FREE print of this phot… https://t.co/nSPmWcMB3N" +04/01/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 No te quedes afuera de este show que va a ser increíble @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫 Tickets…" +03/31/2018,Musicians,@OzzyOsbourne,Raging into the weekend like... https://t.co/T04bTQZkXO +03/31/2018,Musicians,@OzzyOsbourne,"RT @OzzyOsbourne: Just added to @TheOzzfest @eBay Store! +The very last of the @BlackSabbath The End 2016 baseball hats! +https://t.co/OvJRJ…" +03/30/2018,Musicians,@OzzyOsbourne,"Just added to @TheOzzfest @eBay Store! +The very last of the @BlackSabbath The End 2016 baseball hats!… https://t.co/7jqhitzY4i" +03/30/2018,Musicians,@OzzyOsbourne,"Metal Hammer March 1987 +#FBF https://t.co/l0qNs81MV3" +03/29/2018,Musicians,@OzzyOsbourne,"in Italy 1973 +#tbt https://t.co/HztQBT8Aul" +03/28/2018,Musicians,@OzzyOsbourne,Middle of the week vibes... https://t.co/kcYkIfkUU2 +03/28/2018,Musicians,@OzzyOsbourne,RT @OzzyOsbourne: LAST DAY to bid on this @VIPNation Meet & Greet Package for 2 People to an upcoming show on #NoMoreTours2 of their choosi… +03/27/2018,Musicians,@OzzyOsbourne,LAST DAY to bid on this @VIPNation Meet & Greet Package for 2 People to an upcoming show on #NoMoreTours2 of their… https://t.co/X42WjquDGf +03/27/2018,Musicians,@OzzyOsbourne,"RT @TicketekAr: #Recomendado 👉 No te quedes afuera de este show que va a ser increíble @OzzyOsbourne +📆 11 de mayo +📍 @gebaoficial +🎫 Tickets…" +03/27/2018,Musicians,@OzzyOsbourne,"at The Palladium in NYC 1981 + +Photo: @RossHalfin https://t.co/TLL89ENIEU" +03/26/2018,Musicians,@OzzyOsbourne,"New episode of @OsbournePodcast release today! +Get it for FREE at @ApplePodcasts or https://t.co/rTvg75JlEc https://t.co/vZ58PTux7K" +03/25/2018,Musicians,@OzzyOsbourne,Sunday lounging https://t.co/bAkqWdeneY +03/24/2018,Musicians,@OzzyOsbourne,It's the weekend! https://t.co/lEfWnwhsH7 +03/23/2018,Musicians,@OzzyOsbourne,"Just added to @theOzzfest @eBay Store: +The last remaining #Ozzy / #Ozzfest 2017 Long Sleeve Shirts! +Previously only… https://t.co/zZ53vNrijP" +03/23/2018,Musicians,@OzzyOsbourne,RT @LHSF: Don forget about meeting #ozzyosbourne to benefit #lhsf Meet Ozzy Osbourne with 2 Tickets to an Upcoming No More T... https://t.c… +03/23/2018,Musicians,@OzzyOsbourne,"Just added! +The last of the #Ozzy @TheOzzfest Long Sleeve Shirt! + +10% to @HealTheBay on everything in the store!… https://t.co/A5A16tAAYl" +03/22/2018,Musicians,@OzzyOsbourne,"Ozzy Flannels are perfect for cold snowy or rainy days +https://t.co/OvJRJLOTIt https://t.co/8jf2olbPRa" +03/22/2018,Musicians,@OzzyOsbourne,"with @ZakkWyldeBLS in Burrn! Magazine +March 1988 #tbt https://t.co/lqVgg9eHye" +03/22/2018,Musicians,@OzzyOsbourne,"RT @VIPNation: Go VIP to @OzzyOsbourne and ASK ANYTHING at the Q&A session in the Prince of Darkness' dressing room! + +https://t.co/QTcpNrY…" +06/14/2018,Musicians,@WillieNelson,In case you missed it Willie was featured on an episode of @WorldCafé from @NPRMusic. Listen as Willie sits for a w… https://t.co/U4RAdrbgiS +05/08/2018,Musicians,@WillieNelson,"RT @RaelynNelson: Aw Hell #mmhmm single: +https://t.co/A7oRQIug7k +https://t.co/fHxXeVzcXZ" +05/08/2018,Musicians,@WillieNelson,"RT @lukasnelson: STARTING TODAY - If you don't have a vinyl copy of our record yet, and you live near a @CrackerBarrel Old Country Store (o…" +04/30/2018,Musicians,@WillieNelson,"RT @lukasnelson: I would like to wish a very happy 85th birthday to my dad, @WillieNelson with this special @flyLAXairport rendition of “Bl…" +04/27/2018,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @WillieNelson #LastManStanding special #HappyBirthdayWillie w/ @PaulaNelsonBand @buddycannon @SIRIUSXM Ch59 & @SXMO… +04/18/2018,Musicians,@WillieNelson,"Help Willie, Go see #SuperTroopers2 on 4/20 + +https://t.co/wyFmcZMVJw" +04/15/2018,Musicians,@WillieNelson,Two Super Troopers inspect the bus before tonight's concert. #SuperTroopers2 https://t.co/EpSPyzfDwt +04/03/2018,Musicians,@WillieNelson,@BioAnnie1 @WillieN55660955 Thank you. Fraud! +04/03/2018,Musicians,@WillieNelson,@Shotnfreud @WillieN55660955 You are communicating with a fraud. +03/23/2018,Musicians,@WillieNelson,Support the work of @REVERBrocks by bidding on signed instruments and art from @WillieNelson and other artists. The… https://t.co/mLuM5cm840 +03/16/2018,Musicians,@WillieNelson,Last Man Standing at Luck https://t.co/PoLMaIEV0i https://t.co/i5dYzWGUbe +02/16/2018,Musicians,@WillieNelson,RT @gatlinbrothers: Good memories with our long-time friend @WillieNelson https://t.co/re5J9c0nFn +02/16/2018,Musicians,@WillieNelson,"Willie’s new album ‘Last Man Standing’ is available April 27! +Check out the title track here: +https://t.co/u24ec8BFMJ" +02/15/2018,Musicians,@WillieNelson,RT @MrChuckD: Had to pull car over having listened to a Flawless song written and sang by Willie Nelson called You Ought To Hear Me Cry. O… +02/15/2018,Musicians,@WillieNelson,@MrChuckD @SIRIUSXM Thank you @MrChuckD #SXMWillie @SXMWillie +01/25/2018,Musicians,@WillieNelson,Willie Nelson - Living in the Promiseland https://t.co/jl2IemC67Q via @YouTube +12/21/2017,Musicians,@WillieNelson,Nothing holds Willie back. So check out holiday deals to hear Willie present classic country his way on Willie’s Ro… https://t.co/QGAwgymcGM +11/21/2017,Musicians,@WillieNelson,"RT @FarmAid: Farm Aid founder @WillieNelson: On #Thanksgiving, remember family #farmers and their challenges. They're the economic bedrock…" +11/14/2017,Musicians,@WillieNelson,Have you seen this clip of @WoodyHarrelson as #LBJ? https://t.co/bTvHraziak +11/09/2017,Musicians,@WillieNelson,"Glen Campbell, Willie Nelson Win Musical Event of the Year at the 2017 CMAs https://t.co/eXpxw2hMb7 @tasteofcountry" +11/09/2017,Musicians,@WillieNelson,"Thank you! #GlenCampbell , Willie Nelson Win Musical Event of the Year at the 2017 #CMAs https://t.co/eXpxw2hMb7 @tasteofcountry" +11/07/2017,Musicians,@WillieNelson,Congratulations @lukasnelson and @POTR on your #1 record. https://t.co/j7r7oAch28 +11/07/2017,Musicians,@WillieNelson,". @WoodyHarrelson as #LBJ is creative. Take a look at the ""preview"" we just received https://t.co/NmNo7s6krC" +11/03/2017,Musicians,@WillieNelson,@TexasGalWaxi @SXMWillie @NelsonWillieFam @SIRIUSXM @PaulaNelsonBand @WillieN18997625 I am the real. +10/20/2017,Musicians,@WillieNelson,"RT @SXMWillie: TUNE IN: @WillieNelson #WillieAndTheBoys #Lukas #Micah album special @SIRIUSXM Ch59 w/ @PaulaNelsonBand info +here: https://…" +10/18/2017,Musicians,@WillieNelson,"Get a first look at the video to “My Tears Fall” at CMT. ‘Willie and The Boys,’ the new album is available Friday. https://t.co/oCstXUW2hJ" +10/17/2017,Musicians,@WillieNelson,Watch Willie Nelson and His Sons Detail Unbreakable Family Bond on Tour Bus https://t.co/u7sRD7NM8I +10/06/2017,Musicians,@WillieNelson,https://t.co/mGacGoikQV +09/29/2017,Musicians,@WillieNelson,"Check out Willie, #LukasNelson and #MicahNelson perform “Healing Hands of Time” The new album in stores Oct 20. https://t.co/oM7FccwWLf" +09/29/2017,Musicians,@WillieNelson,RT @TasteOfCountry: What a moment! When @WillieNelson and #KrisKristofferson join forces we're all the way in! https://t.co/FaOtXOkYt9 +09/27/2017,Musicians,@WillieNelson,Exclusive premiere: Watch Willie Nelson’s new video with sons Lukas and Micah https://t.co/JrM8EOSJ2P +09/23/2017,Musicians,@WillieNelson,RT @SkinAndTonicATX: I took this pic last night at the most AMAZING benefit show! @willienelson I love you!… https://t.co/jAuoCCyeXX +09/22/2017,Musicians,@WillieNelson,Tune-In & Donate tonight! #HarveyCantMessWithTexas via https://t.co/8ffZR5zRWm 9-10pm CT. Proceeds benefit Rebuild… https://t.co/wGS2CA9Uty +09/16/2017,Musicians,@WillieNelson,RT @AXSTV: We're ALL #FarmAid ALL Saturday! Make sure to set your DVR NOW! #SaturdayStack https://t.co/SodcittKOn +09/16/2017,Musicians,@WillieNelson,RT @FarmAid: Watch and listen to #FarmAid2017 live on Sept. 16. Get all the details at: https://t.co/a3OIFgnssl https://t.co/RB8gMvzhKp +09/15/2017,Musicians,@WillieNelson,"Willie Nelson sets Hurricane Harvey benefit concert + +https://t.co/Xa1I9XoHUL" +09/14/2017,Musicians,@WillieNelson,"Garth Hudson of The Band came by to join in on the fun with Willie and Family in Poughkeepsie, NY. https://t.co/MbmVeHZxGf" +09/13/2017,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @FarmAid 2017 concert broadcast SAT 9/16 @SIRIUSXM Ch59 noon-11:30pmET info here: https://t.co/d1mJ728J2K https://t… +09/06/2017,Musicians,@WillieNelson,".@FarmAid is working with partners in TX & LA to support the needs farmers & ranchers. +Donate today: https://t.co/y1NHQuiWnv #Harvey" +09/06/2017,Musicians,@WillieNelson,Living in the Promiseland https://t.co/jl2IemC67Q +08/25/2017,Musicians,@WillieNelson,RT @lukasnelson: Our new album is out TODAY! Get it here or at your favorite record store: https://t.co/594PZkuSHw +08/21/2017,Musicians,@WillieNelson,Willie Nelson - Darkness on the Face of the Earth (Live at Farm Aid 1998) https://t.co/KLeC4zxXus via @YouTube +08/20/2017,Musicians,@WillieNelson,Willie Nelson felt like an infinitely renewable resource at the Shrine https://t.co/qkb0Zbhl0j +08/20/2017,Musicians,@WillieNelson,@ShellyPicarella @SnoopDogg Willie has a statue in Austin Texas +08/20/2017,Musicians,@WillieNelson,Tonight @KaceyMusgraves and the band came to say goodbye after her set at The Greek Theater. https://t.co/WBHHJVd18Q +08/19/2017,Musicians,@WillieNelson,"We had a wonderful night in LA. +https://t.co/1GU6ajZB1H" +08/18/2017,Musicians,@WillieNelson,RT @lukasnelson: Check out this great review of the new record in @soundboard_blog! https://t.co/vQUOxR2VUT +08/18/2017,Musicians,@WillieNelson,RT @BioAnnie1: Hey @PaulBegala You should be here! Willie talking to @billclinton right now. Headed to a show. https://t.co/TRRCGY2qyG +08/18/2017,Musicians,@WillieNelson,RT @PEcom_news: Willie Nelson proves that he’s not quite dead yet with spirited set at the Shrine https://t.co/6KPOCKHR8z https://t.co/smft… +08/18/2017,Musicians,@WillieNelson,"RT @livepositive11: Once you replace negative thoughts with positive ones, you'll start having positive results. -Willie Nelson" +08/17/2017,Musicians,@WillieNelson,"RT @SXMOutlaw: WIN trip for 2 #OutlawMusicFestival 9/17 Camden, NJ @WillieNelson @ericchurch @SherylCrow @theavettbros +more! GO to https:/…" +08/16/2017,Musicians,@WillieNelson,"For Sinead O'Connor, Love Willie - Don't Give Up - https://t.co/xbFXnQsH3i via @YouTube" +08/14/2017,Musicians,@WillieNelson,This is Willie I am sorry to have to cut the SLC show short tonight The altitude got to me I am feeling better now & headed for lower ground +07/28/2017,Musicians,@WillieNelson,".@WillieNelson sat down with @washingtonpost @libcasey to talk about his historic career, @WilliesReserve and more https://t.co/l9afI35x3Z" +07/13/2017,Musicians,@WillieNelson,"We love you Loretta - +Loretta Lynn Postpones Release of New Album - Rolling Stone +https://t.co/wcn1ErZrUq" +07/12/2017,Musicians,@WillieNelson,Every musician hates canceling a show. https://t.co/lpoesPefew +07/11/2017,Musicians,@WillieNelson,An amazing album! https://t.co/jXpRbNH1lQ +07/11/2017,Musicians,@WillieNelson,"RT @WilliesReserve: Nice hat @SnoopDogg! +Get your #WilliesReserve official cap here: https://t.co/H6Uy5ouHrx +(( @TeamCoco )) +#CannabisCom…" +07/04/2017,Musicians,@WillieNelson,RT @SXMWillie: TUNE IN: @WillieNelson #4thOfJulyPicnic broadcast LIVE @Austin360Amp 4pm-1amET @SIRIUSXM Ch59 set times & more info: https:/… +06/27/2017,Musicians,@WillieNelson,Living in the Promiseland https://t.co/jl2IemC67Q +06/16/2017,Musicians,@WillieNelson,Don't miss your chance for a once in a lifetime VIP package to @FarmAid The auction is open for a limited time https://t.co/mbyw5BwXMA +06/13/2017,Musicians,@WillieNelson,"RT @FarmAid: Have you head the moos, er.... news! + +Farm Aid 2017 is coming to the Pittsburgh area! Join us on Saturday, Septemb… https://t.…" +06/05/2017,Musicians,@WillieNelson,@1DeborahHyde @WillieNelson000 @YouTube You are talking to a scamming account. Report it! +06/05/2017,Musicians,@WillieNelson,@1DeborahHyde @WillieNelson000 @YouTube @WillieNelson000 willienels is a fraud/ scam account +06/05/2017,Musicians,@WillieNelson,@Christy1043 @WillieNelson000 @YouTube This account is a scam account. +05/27/2017,Musicians,@WillieNelson,"RT @WilliesReserve: #PhotoContest @LivWellCannabis w/ a signed @WillieNelson guitar +#MemorialDay +Stapleton 10:30-12:30pm +Garden City 1:30…" +05/20/2017,Musicians,@WillieNelson,@Di3G02020 Better than ever +05/20/2017,Musicians,@WillieNelson,RT @NewYorkConcert: Don't miss the @willienelson at Battery Park on Jun 10! → https://t.co/uqEF0oSLw3 https://t.co/BMvAYX0doP +05/20/2017,Musicians,@WillieNelson,RT @GigsRaleigh: Did you know that @willienelson is ROCKING on Jul 14 in Cary? Don't miss this concert! → https://t.co/BpIGjVWYk6 https://t… +05/20/2017,Musicians,@WillieNelson,@awnaves That is a good question. +05/20/2017,Musicians,@WillieNelson,@bettyco33617316 Yup still not dead again. https://t.co/mPZqVR1XOa +05/20/2017,Musicians,@WillieNelson,@KJC135 @RollingStone It is priceless +05/20/2017,Musicians,@WillieNelson,@gunds_up It is a Good morning +05/20/2017,Musicians,@WillieNelson,"RT @MakeAWish: Ava, who has a GI disorder, wished to meet & play guitar with @WillieNelson, because his songs helped her get through her tr…" +05/20/2017,Musicians,@WillieNelson,RT @ReaperToolsInc: Willie Nelson explaining the dangers of #marijuana. https://t.co/0nUIL7qzP7 +05/20/2017,Musicians,@WillieNelson,"RT @ChuckCanady: Once you replace negative thoughts with positive ones, you'll start having positive results. - Willie Nelson #quote" +05/20/2017,Musicians,@WillieNelson,@StillerAndrew I Woke Up Still Not Dead Again https://t.co/mPZqVR1XOa +05/20/2017,Musicians,@WillieNelson,"RT @RollingStone: Willie Nelson discusses Trump, his marriage, why Jeff Sessions should try smoking pot and more https://t.co/Cla8XPF0sZ ht…" +05/20/2017,Musicians,@WillieNelson,"RT @thebootdotcom: .@WillieNelson gets write-in votes during elections, but don't expect to see him running for office for real: https://t.…" +05/20/2017,Musicians,@WillieNelson,"RT @FarmAid: Farm Aid's director Carolyn Mugar and co-founder @johnmellencamp introduced our film, Homeplace Under Fire, at @du… https://t.…" +05/20/2017,Musicians,@WillieNelson,RT @TerryVJennings: 1986 @WillieNelson @JohnnyCash Kris Kristofferson & @OfficialWaylon star in @CBS remake of the movie Stagecoach https… +05/20/2017,Musicians,@WillieNelson,RT @Linda_Colo: Why Colorado Tokers Love Red Headed Stranger @williesreserve @bioannie1 @willienelson https://t.co/SqIw5eiN16 via @denverw… +05/11/2017,Musicians,@WillieNelson,"Critics can’t get enough of ‘God’s Problem Child’! What do you think of Willie’s new album? + +https://t.co/N2z4Vr6UKZ https://t.co/PcKhrz3eTC" +05/11/2017,Musicians,@WillieNelson,"RT @RollingStone: Chris Stapleton on covering Willie Nelson on his new album, leaving Nashville and more https://t.co/sifqz1pB0G https://t.…" +05/11/2017,Musicians,@WillieNelson,"RT @livepositive11: Once you replace negative thoughts with positive ones, you'll start having positive results. -Willie Nelson" +05/11/2017,Musicians,@WillieNelson,RT @FarmAid: John Mellencamp and Oklahoma Farm Advocate Mona Lee Brock share a moment on the Farm Aid 30 stage in 2015. On Thur… https://t.… +05/05/2017,Musicians,@WillieNelson,"Willie Nelson's Birthday Party at the Bowl +https://t.co/ecVjSZa4UC" +04/28/2017,Musicians,@WillieNelson,‘God’s Problem Child’ is available today! https://t.co/rlrj3nN2gz https://t.co/W78ppFUIIj +04/27/2017,Musicians,@WillieNelson,"You’ve heard about the song, now check out the video for “Still Not Dead”! https://t.co/DmF6Ju5usy +https://t.co/cWTU0VMuLR" +04/26/2017,Musicians,@WillieNelson,"RT @SXMWillie: TUNE IN: @WillieNelson 84th birthday weekend #GodsProblemChild special @SIRIUSXM info here: https://t.co/FdQfWv1nBf +https:/…" +04/26/2017,Musicians,@WillieNelson,"“I woke up still not dead again today…” +https://t.co/mPZqVR1XOa" +04/24/2017,Musicians,@WillieNelson,RT @SnoopDogg: Shouts to @djwhookid with @willienelson biggn me up on @shade45 #BurnSlow mix 💨💨💨💨💨💨💨💨💪🏽 #whoolywoodshuffle +04/21/2017,Musicians,@WillieNelson,"Get your tickets for Willie Nelson's 4th of July Picnic in Austin, TX, onsale today! Tickets:… https://t.co/JPuGP0Daa0" +04/20/2017,Musicians,@WillieNelson,"Listen to the incredible new album ‘God’s Problem Child’ on NPR First Listen. +https://t.co/hPYZZfKMWZ" +04/18/2017,Musicians,@WillieNelson,"RT @thebootdotcom: Willie Nelson, Bob Dylan, Jason Isbell Set to Headline 2017 Outlaw Music Festival Tour https://t.co/CkIeiXgfqZ https://t…" +04/18/2017,Musicians,@WillieNelson,Willie Nelson Plans 44th Annual Fourth of July Picnic https://t.co/we8DTskAjQ @thebootdotcom +03/28/2017,Musicians,@WillieNelson,"The Daily Beast has the exclusive first look at the video to “Old Timer”! +https://t.co/Mq1ToOO05Y" +03/21/2017,Musicians,@WillieNelson,RT @FarmAid: Wildfires are ravaging over 2 mil. acres of ranch land. You can help by donating to our Family Farm Disaster Fund. https://t.c… +03/09/2017,Musicians,@WillieNelson,"Head to @latimes for an exclusive first look at Willie’s new video, “It Gets Easier,” from ‘God’s Problem Child’ +https://t.co/ILyChf7WYS" +03/08/2017,Musicians,@WillieNelson,"RT @FarmAid: Asked about retirement, @WillieNelson says ""Which would I give up: music or golf?"" Turns out farmers feel the same. https://t.…" +03/08/2017,Musicians,@WillieNelson,RT @sunherald: Reporter @thejeffclark spoke with @WillieNelson's harmonica player -- here's the skinny. https://t.co/hPbO69qTzZ https://t.c… +03/08/2017,Musicians,@WillieNelson,"Here’s a clip of “It Gets Easier” from Willie's upcoming new album ‘God’s Problem Child,’ -- full video tomorrow. https://t.co/aFRcmZHwsH" +03/05/2017,Musicians,@WillieNelson,.@DwightYoakam was on the show at the @PompanoAmp and dropped by the bus after his set. https://t.co/XPZu6Y8CBS +03/02/2017,Musicians,@WillieNelson,"Check out a sneak peak of the new track from 'God's Problem Child.’ https://t.co/0GDPo3v9f1 +Pre-Order: https://t.co/8bdg0UPboa" +03/01/2017,Musicians,@WillieNelson,RT @WilliesReserve: #WilliesReserve apparel is now available on our new website. And it's legal in all 50 states! Visit https://t.co/pxXnub… +02/21/2017,Musicians,@WillieNelson,RT @PinewoodBowl: JUST ANNOUNCED: @WillieNelson with special guest @DwightYoakam + Robert Earl Keen are coming to @PinewoodBowl 6/7. https:… +02/21/2017,Musicians,@WillieNelson,"RT @Southern_Living: ""I've never seen worrying about anything change it, so I decided not to do it."" —@WillieNelson https://t.co/AuLjvCaFER…" +02/21/2017,Musicians,@WillieNelson,Remember when Willie hosted SNL? Check out Redneck Tanning Parlor on https://t.co/p50vN92Vv9 — https://t.co/q33MgTv45F +02/17/2017,Musicians,@WillieNelson,"Willie and Bono Team for Miraculous Movie +https://t.co/x0s7Q1CMIf" +02/16/2017,Musicians,@WillieNelson,RT @BioAnnie1: williesreserveofficial's photo https://t.co/Bq3nGdQtxx @WilliesReserve @willienelson @jacmnelson3 #EndTheCannabisProhibiti… +02/14/2017,Musicians,@WillieNelson,"Happy Valentine’s Day! Video premiere of ""A Woman’s Love,"" from 'God’s Problem Child.' https://t.co/KPKnG9w5B8" +02/14/2017,Musicians,@WillieNelson,"Happy Valentine's Day! +https://t.co/It2n6IGqXX" +02/14/2017,Musicians,@WillieNelson,Willie is headed to Tx for 2 nights @ Whitewater Music Amp this April! Club Pre-Sale tixs & Pkgs on sale @ 10am CT! https://t.co/3neHJPpeNL +02/14/2017,Musicians,@WillieNelson,RT @SnoopDogg: True. 💨💨💨 https://t.co/jW6XgBLbdn https://t.co/vxCtFyntNN +02/13/2017,Musicians,@WillieNelson,"What an honor to win last night. + +https://t.co/9B1YimZ4gY" +02/13/2017,Musicians,@WillieNelson,RT @SnoopDogg: #Legend ✨ music video. world premiere !! Watch it right now @WORLDSTAR https://t.co/WfxmWubgjT #DoggyStyleRecords https://t… +02/13/2017,Musicians,@WillieNelson,"RT @SweetRelief: You can pre-order the NEW @WillieNelson album ""God’s Problem Child"" and get exclusive merchandise on @PledgeMusic! https:/…" +02/13/2017,Musicians,@WillieNelson,RT @colbertlateshow: Congratulations to our good friend @WillieNelson on his #GRAMMY win for Best Traditional Pop Vocal for #Summertime! ht… +06/30/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: .@JTimberlake shows off multiple ""Air Higher"" Air Jordan 3 JTH options. https://t.co/93q96tGdA8" +06/24/2018,Musicians,@jtimberlake,RT @TheSinnerUSA: A performance you won't forget. Consider @JessicaBiel for Outstanding Lead Actress in a Limited Series or Movie. #TheSinn… +06/15/2018,Musicians,@jtimberlake,Bwahahaha! My hero. https://t.co/Fy6Xyheti4 +06/15/2018,Musicians,@jtimberlake,"Yoooooo! “Right there, right there!” https://t.co/hiSH4bOuBW" +06/15/2018,Musicians,@jtimberlake,"Young yellow beanie vibes... lol + +🙌 https://t.co/ASAjEUwE6r" +06/15/2018,Musicians,@jtimberlake,👀 https://t.co/vzBHtE1Mlr +06/13/2018,Musicians,@jtimberlake,Thank you guys for nominating Say Something for a surfboard! We’re honored. Vote here ✔️ https://t.co/tSUgerlkyK… https://t.co/58wL5mRRrp +06/09/2018,Musicians,@jtimberlake,"RT @NBCSports: Hey @jimmyfallon, who do you want to win @BelmontStakes? + +Also... what’s your favorite @jtimberlake album? 😂 https://t.co/xg…" +06/07/2018,Musicians,@jtimberlake,GET’M PUFF!!! 💯💯💯 https://t.co/ABKveClsXG +06/06/2018,Musicians,@jtimberlake,"Hey man, when someone tells you they’ll make a drink based on a fake (but very real) fruit you made up…you just don… https://t.co/GVyNrVGGX3" +06/04/2018,Musicians,@jtimberlake,2 JT’s and a Wanamaker! 🙌 https://t.co/DzsoMSaaN8 +06/04/2018,Musicians,@jtimberlake,Thank you to Philly for helping us wrap up the last show of the first leg of #MOTWTOUR. We’re taking a little break… https://t.co/tuBCN4kGCp +06/03/2018,Musicians,@jtimberlake,Last chance! https://t.co/KWHICooMfC +05/28/2018,Musicians,@jtimberlake,🥃 @swish41 https://t.co/jq2YY2ig4z +05/27/2018,Musicians,@jtimberlake,"TEXAS STRONG + +https://t.co/wGcSWAVO6X https://t.co/6Vbs2k537G" +05/26/2018,Musicians,@jtimberlake,"RT @JJWatt: Cheers to good times with great friends and the beautiful city of Houston. +@jtimberlake https://t.co/93a6j6cL70" +05/25/2018,Musicians,@jtimberlake,"RT @brkicks: ""DETAILS"" @jtimberlake @virgilabloh https://t.co/zLFWwvLIs0" +05/25/2018,Musicians,@jtimberlake,".@JJWatt bro, you could really use a trip to the gym. Congrats to the 🚀!!! + +https://t.co/7v3e1XqgpX https://t.co/QBAgasoau0" +05/22/2018,Musicians,@jtimberlake,Google’s having a rough night. @SHAQ @NBAonTNT https://t.co/ehqGOxFeM5 +05/21/2018,Musicians,@jtimberlake,Why is the net already bracing for that dunk?!?! 😂 https://t.co/8ItjY7SNpq +05/20/2018,Musicians,@jtimberlake,"Custom 501’s in action last night. Thank you @Levis...Happy #501Day. + +https://t.co/w5RQADyKsG https://t.co/XYIyeWNJqX" +05/19/2018,Musicians,@jtimberlake,RT @adamblackstone: YUPPPP... ITS TRUE... I'm BACK rocking w @jtimberlake & my @THETNKIDS FAMILY 2NITE!!! Gonna have a great time here in… +05/19/2018,Musicians,@jtimberlake,😂 https://t.co/Ia1AUSNuJU +05/19/2018,Musicians,@jtimberlake,🙌 https://t.co/Hvt2aQTU0N +05/18/2018,Musicians,@jtimberlake,🔥 https://t.co/0kyvoa1twH +05/17/2018,Musicians,@jtimberlake,YES. https://t.co/smNRIbszi6 +05/15/2018,Musicians,@jtimberlake,"RT @TheFieldhouse: Dang @jtimberlake, we see you 👀 + +We'll have to get you on the @Pacers Practice Court when #MOTWtour comes to #Indy in De…" +05/15/2018,Musicians,@jtimberlake,"I should have put this thing on silent... + +https://t.co/bMyKEj4CT3 https://t.co/5WRBiOXAFL" +05/15/2018,Musicians,@jtimberlake,https://t.co/jClsoOdLFe +05/14/2018,Musicians,@jtimberlake,Three out of the four of us are moms! Celebrating my MVP’s today and everyday. Happy Mother’s Day! 🏆… https://t.co/gg13F5DyVl +05/12/2018,Musicians,@jtimberlake,Sounds like...@Jumpman23. S/O @virgilabloh @trvisXX https://t.co/oPrFG7ovJo https://t.co/gzo0HK2sh1 +05/11/2018,Musicians,@jtimberlake,Thank you to the one and only @ChrisStapleton for making an appearance last night in Nashville. Always honored to s… https://t.co/B6Ce0yHkO7 +05/09/2018,Musicians,@jtimberlake,Who’s coming? https://t.co/BOhjzhYz5f +05/08/2018,Musicians,@jtimberlake,"Last night. For the record, you were by far our loudest crowd so far, Columbus. + +https://t.co/HoH7bEBaW7 https://t.co/2LYxaPKEO7" +05/08/2018,Musicians,@jtimberlake,🙌 https://t.co/S3TaDIOAjG +05/08/2018,Musicians,@jtimberlake,RT @joywilliams: In exactly one week I’ll be getting ready to take the stage @eddiesattic to perform (mostly) new music for a sold out crow… +05/07/2018,Musicians,@jtimberlake,Thank you Tulsa! https://t.co/bgQWuk5wPB +05/05/2018,Musicians,@jtimberlake,"RT @Suns: JT keeping the court warm until the boys are back 👀 + +@jtimberlake https://t.co/K7ImYuZaeG" +05/03/2018,Musicians,@jtimberlake,BRASPBERRY. Google it. https://t.co/7ne1MFmTle +05/02/2018,Musicians,@jtimberlake,"Why’d I even ask. #OREOS + +https://t.co/S0fZ1IvLud https://t.co/11DbjSErmm" +05/01/2018,Musicians,@jtimberlake,🔥 https://t.co/1ZYf96D9xl +04/30/2018,Musicians,@jtimberlake,Wait for it 😂l https://t.co/TjSECg4q0x +04/30/2018,Musicians,@jtimberlake,Honored to be up here with my brothers today. Thank you #WalkofFame for the star...and thank you @TheEllenShow and… https://t.co/WVrSx9q3Do +04/30/2018,Musicians,@jtimberlake,"RT @TheEllenShow: Congratulations, @NSYNC! You got a star on the Walk of Fame! All without a vowel. Congratulations! https://t.co/QuRcHPglwP" +04/30/2018,Musicians,@jtimberlake,RT @theforum: JT backstage with our custom #MOTW neon sign. 🔥 @jtimberlake #JTForum #MOTWTour @THETNKIDS (📷: Mark Nguyen) https://t.co/b4ha… +04/29/2018,Musicians,@jtimberlake,"Time for round two, tonight at @theforum... https://t.co/41WKOOgcE8" +04/29/2018,Musicians,@jtimberlake,Check it out 💯 https://t.co/r5wRZeIr7o +04/27/2018,Musicians,@jtimberlake,RT @ComplexStyle: .@jtimberlake's Man Of The Woods Tour merch designed by @heronpreston + 4 exclusive products in collaboration with @RSVPG… +04/27/2018,Musicians,@jtimberlake,RT @RSVPGallery: RSVP GALLERY X JUSTIN TIMBERLAKE X HERON PRESTON POP-UP LIVE NOW. Exclusive collab merch by RSVP and tour merch from @jtim… +04/27/2018,Musicians,@jtimberlake,RT @Spotify: .@jtimberlake is changing it up on his #ManOfTheWoods tour. Get a taste with live performances 👉https://t.co/7UDWaCYmOt https:… +04/27/2018,Musicians,@jtimberlake,New videos up on @Spotify today! Check them out: https://t.co/sGxDvEf8qA https://t.co/m7K5GpIBDr +04/27/2018,Musicians,@jtimberlake,RT @wwd: .@jtimberlake's concert merch will be sold at L.A. boutique RSVP Gallery: https://t.co/8PHDxYk2Km https://t.co/P1wAaLCCii +04/24/2018,Musicians,@jtimberlake,We’re invading The Bay. See you tonight San Jose! https://t.co/pPL9jUFkYR https://t.co/drzdKK4iPE +04/22/2018,Musicians,@jtimberlake,"We’re so lucky to call this place home. #earthday + +https://t.co/mCLcd2wlEc https://t.co/yQ9EnwW73K" +04/20/2018,Musicians,@jtimberlake,"Dad life. His toys = my toys. @PJMasksUS + +https://t.co/x8sCRb8GZE https://t.co/qj4QAnVhWK" +04/18/2018,Musicians,@jtimberlake,What they said👇 https://t.co/kUnerWPCsy +04/16/2018,Musicians,@jtimberlake,"Thank you Vegas + +https://t.co/c2i022uqXm https://t.co/nCpCOqhk0J" +04/16/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: me every time I open new sneakers, @jtimberlake. 😂 https://t.co/qSgEEencVy" +04/14/2018,Musicians,@jtimberlake,🙌 https://t.co/Wjn2A0hVu4 +04/14/2018,Musicians,@jtimberlake,"Loved hanging out with you last night, Salt Lake! #MOTWTOUR https://t.co/3JXKSZ4Oal https://t.co/idSKEpewtK" +04/12/2018,Musicians,@jtimberlake,"RT @LEVIS: Our limited-edition flannels, co-designed with @jtimberlake, are part of the @AmericanExpress OUTSIDE IN shoppable mixed reality…" +04/12/2018,Musicians,@jtimberlake,"RT @HYPEBEAST: #hypebeastart: @Pharrell and @jtimberlake with their new BFFs. ""SEEING/WATCHING"" - @fyKAWS. https://t.co/xF88W205wF" +04/10/2018,Musicians,@jtimberlake,"Next stop: SLC... + +https://t.co/Ry9pUgkOXb https://t.co/3DJvQfdDBL" +04/06/2018,Musicians,@jtimberlake,RT @SoleCollector: .@JTimberlake's Air Jordan 3s releasing again today in LA and Boston: https://t.co/3VndNNfeES https://t.co/OTl1HstIBV +04/06/2018,Musicians,@jtimberlake,"So...now there's two of me? + +https://t.co/Vx5jREAU7m https://t.co/wsOeVStV1q" +04/06/2018,Musicians,@jtimberlake,"RT @freestylesteve: Who’s Next?? #MotwTour #DjLife @ Montreal, Quebec https://t.co/6bLZ5zVzza" +04/06/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake wearing the “UNDFTD” Nike Zoom Kobe 1 Protro in Boston #MOTWTOUR + +📸 @marklashark https://t.co/caL9YISCxS" +04/05/2018,Musicians,@jtimberlake,Night 2 @tdgarden #MOTWTOUR https://t.co/ydwCCfiZXJ +04/05/2018,Musicians,@jtimberlake,💯 https://t.co/NLm9pKbBw5 +04/05/2018,Musicians,@jtimberlake,"Happy birthday, brother. @Pharrell https://t.co/Yd1LT4Vy4Y https://t.co/wuM8s5VDZy" +04/05/2018,Musicians,@jtimberlake,Anything with you LEGEND! @jimmyfallon you can get your feature game up! https://t.co/bAwJ3IrYjp +04/05/2018,Musicians,@jtimberlake,🙌 https://t.co/DDJcyQnWbB +04/05/2018,Musicians,@jtimberlake,🙌 https://t.co/GswZPdEJHA +04/05/2018,Musicians,@jtimberlake,🔥⛳️ https://t.co/3FfeVCiDLF +04/03/2018,Musicians,@jtimberlake,"Detroit, we’re here... + +https://t.co/ZVm65fgAx8 https://t.co/CIyMZXTJ8l" +04/02/2018,Musicians,@jtimberlake,"See you soon, Detroit. https://t.co/iAG9881ejX" +04/02/2018,Musicians,@jtimberlake,Every kid deserves an equal education...but millions don't have access to the technology they need to succeed. I'm… https://t.co/wavKUuu3ne +04/01/2018,Musicians,@jtimberlake,"RT @BleacherReport: GOT EMM! + +@AntDavis23, Master #AprilFools prankster! https://t.co/V40Y18XGC7" +04/01/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: Nike boys in Cleveland. + +@jtimberlake in the mismatched ‘Equality’ LeBron 15s and @kingjames is a Red PE of the ‘Prime…" +04/01/2018,Musicians,@jtimberlake,"A MOMENT. Had no idea @kingjames was jumping on stage tonight. Thanks for celebrating with us, Cleveland...cheers!… https://t.co/e5rj7yZn1W" +03/31/2018,Musicians,@jtimberlake,RT @brkicks: Justin Timberlake at the Cavs game in the Nike LeBron 15 “Diamond Turf” https://t.co/LjzZOyToMB +03/30/2018,Musicians,@jtimberlake,"Sound on + +https://t.co/R57iBBY3aj https://t.co/zFXEcO00s9" +03/28/2018,Musicians,@jtimberlake,Legends never die https://t.co/fPSPmSNsyO +03/28/2018,Musicians,@jtimberlake,https://t.co/oVEl3e2nXe +03/27/2018,Musicians,@jtimberlake,RT @THETNKIDS: In case you missed it! “GUY time” OR “GOT time?” https://t.co/tDeyIUM6vZ +03/26/2018,Musicians,@jtimberlake,Get too close to the stage and I might steal your phone...https://t.co/SZvBc5qqsq +03/26/2018,Musicians,@jtimberlake,THANK YOU JERSEY! #MOTWTOUR https://t.co/vK3ERmoETO +03/26/2018,Musicians,@jtimberlake,On the road with @theshadowboxers for #MOTWTOUR and they just released their debut EP APOLLO. Check it out / put it… https://t.co/sKK5SmxVwA +03/25/2018,Musicians,@jtimberlake,RT @NBA: This week’s JAM SESSION on #InsideStuff features “Supplies” by @jtimberlake! https://t.co/Uh0vZAm6Qy +03/24/2018,Musicians,@jtimberlake,This is the future. So proud to see you all using your voices and marching today. #NeverAgain #MarchforOurLives… https://t.co/hfht1bf5jV +03/24/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake in the Off-White Air Jordan 1 at @TheGarden + +📸 @marklashark https://t.co/viaqBYboIa" +03/23/2018,Musicians,@jtimberlake,"RT @brkicks: Justin Timberlake performs wearing the Nike LeBron 15 ""Orange Box"" in New York City #MOTW https://t.co/XYqAw7hgYD" +03/23/2018,Musicians,@jtimberlake,"RT @THETNKIDS: New York, we love you. @jtimberlake @TheGarden #MOTWTOUR https://t.co/8cDBLXUaUT" +03/23/2018,Musicians,@jtimberlake,"RT @TheGarden: ""On top of the world at the greatest venue in the world, Madison Square Garden!"" - @jtimberlake + +#JustinTimberlakeMSG +(Phot…" +03/22/2018,Musicians,@jtimberlake,"Again, so sorry we had to postpone last night’s show. BUT we have a new date for our next concert at @TheGarden. I’… https://t.co/MG5MLABS8n" +03/21/2018,Musicians,@jtimberlake,I’m sorry to announce the show tonight at Madison Square Garden has been POSTPONED due to the snow. BUT we’re still… https://t.co/pvQjXeLyps +03/20/2018,Musicians,@jtimberlake,RT @Timbaland: Repost from @Tidal. You can't deny @jtimberlake and @timbaland's studio chemistry. Press play on their collaborations: https… +03/20/2018,Musicians,@jtimberlake,RT @brkicks: Justin Timberlake performs in the Kith x Nike LeBron 15 Lifestyle at Washington D.C. #MOTW https://t.co/TtHZeiuWjh +03/19/2018,Musicians,@jtimberlake,I’m so inspired by the #MarchForOurLives students out there owning their voices. We need to demand action. Get out… https://t.co/uv6uq78va2 +03/17/2018,Musicians,@jtimberlake,"RT @Jumpman23: ""Keep jumping."" - @jtimberlake + +Toronto got a first look at the new 🔥 from JT. https://t.co/1eMBfmQ0uO" +03/17/2018,Musicians,@jtimberlake,"Down time. #MOTWTOUR + +https://t.co/xauP4ixkst https://t.co/NXCManMJm3" +03/16/2018,Musicians,@jtimberlake,"That’s a wrap Toronto. We’d stay longer but DC’s callin’...#MOTWTOUR + +https://t.co/gtEQ0zr7yh https://t.co/2EPDDFD3DE" +03/15/2018,Musicians,@jtimberlake,Thank you @StellaMcCartney! https://t.co/18WcUsoAiD +03/15/2018,Musicians,@jtimberlake,"Surprised Toronto with some 2-Minute Warnings #MOTWTOUR + +https://t.co/F3NpBIRJur https://t.co/iwKgQSFOTN" +03/14/2018,Musicians,@jtimberlake,6:23 @Jumpman23 https://t.co/SW8oqsZSTD +03/14/2018,Musicians,@jtimberlake,"RT @ComplexSneakers: 🚨 EXCLUSIVE + +@jtimberlake + @Jumpman23 are celebrating the start of his tour by dropping a limited number of JTH 3s a…" +03/14/2018,Musicians,@jtimberlake,"RT @Jumpman23: 👟: @jtimberlake +📍: 306 Yonge St., Toronto +⏰: 6:23pm ET +📅: 3.14 https://t.co/TQFVyvcU2U" +03/14/2018,Musicians,@jtimberlake,"RT @Complex: 🚨 EXCLUSIVE 🚨 + +@jtimberlake's Jordan 3s release tonight in Toronto + +https://t.co/mFWaXmdljY https://t.co/F8EXpR9nia" +03/14/2018,Musicians,@jtimberlake,"RT @HYPEBEAST: The @jtimberlake x @Jumpman23 kicks are headed to the 6. +https://t.co/MOgSaFJcEf" +03/13/2018,Musicians,@jtimberlake,.@Jumpman23 https://t.co/yISACD4Hiq +03/13/2018,Musicians,@jtimberlake,"Goin’ on tour. #MOTWTOUR + +https://t.co/9TnZeau94A https://t.co/kqhgusmokp" +03/11/2018,Musicians,@jtimberlake,"GOAT @Jumpman23 + +https://t.co/ir25iTAeFX https://t.co/Wof5NZSTNS" +03/02/2018,Musicians,@jtimberlake,Was a honor to share the stage with my brother @ChrisStapleton at the @BRITs last week. Full performance of… https://t.co/E2JWsAEQbX +03/01/2018,Musicians,@jtimberlake,RT @brkicks: P.J. Tucker had options tonight 👀 https://t.co/clEkU82gtA +02/26/2018,Musicians,@jtimberlake,RT @BR_Kicks: P.J. Tucker wearing the Air Jordan 3 JTH against Denver https://t.co/MswcNfuVsO +02/22/2018,Musicians,@jtimberlake,After the show it’s the afterparty. Good times @Spotify #AboutLastNight https://t.co/v3dRQlC7yt +02/22/2018,Musicians,@jtimberlake,Thanks for having us @brits! 🙌 @thetnkids @chrisstapleton #MidnightSummerJam #SaySomething https://t.co/AhGLDfAeh0 +02/21/2018,Musicians,@jtimberlake,RT @BRITs: The Man of the Woods 🌲 is now Man of The #BRITs - we've taken over @jtimberlake's emoji! #JustinTimberlakeBRITs +02/21/2018,Musicians,@jtimberlake,"Here we go... @BRITs #JustinTimberlakeBRITs + +https://t.co/LqhblzG4vX" +02/21/2018,Musicians,@jtimberlake,Excited to be here... #BritAwards https://t.co/14lxTTdbX9 +02/20/2018,Musicians,@jtimberlake,#britawards tomorrow night... I’m the one in the beanie. https://t.co/C725A5fHhc +02/14/2018,Musicians,@jtimberlake,RT @BR_Kicks: P.J. Tucker in the Air Jordan 3 “Legends of the Summer” #Rockets https://t.co/609dk2wTVh +02/09/2018,Musicians,@jtimberlake,"Friday...Volume up! #MOTW +(Exclusive orange vinyl only Target​) +https://t.co/Q0NTBruMDZ https://t.co/iJC5p7kB5Z" +02/08/2018,Musicians,@jtimberlake,RT @pandoramusic: Mood:@jtimberlake's #MOTW. Listen now: https://t.co/rdFE5uWEKG https://t.co/iopMq8QNqb +02/08/2018,Musicians,@jtimberlake,"Behind ""Montana"" and more...... +#MOTW #DeconstructionWithJT on @AmazonMusic: +https://t.co/h4CEWOMF0B https://t.co/mtkFZ6A0Df" +02/07/2018,Musicians,@jtimberlake,"RT @TheEllenShow: Thanks for my secret signal, @JTimberlake. #SuperBowl https://t.co/RkfBc6Zjm8" +02/07/2018,Musicians,@jtimberlake,#MOTW @applemusic https://t.co/Po8obBEjho https://t.co/6nBvtAYca1 +02/07/2018,Musicians,@jtimberlake,"#ManOfTheWoods out now! + +https://t.co/L9yGfZpcbg https://t.co/2LhnVAdksZ" +02/06/2018,Musicians,@jtimberlake,"Thank you, THANK YOU #SBLII @nfl @pepsi! Congrats @Eagles🏆! We out!! @thetnkids #PepsiHalftime 🏈 https://t.co/xjcjqAyBAc" +02/06/2018,Musicians,@jtimberlake,About last night… @thetnkids and I just added more US and Canada #MOTWTour dates. Europe and UK announced!… https://t.co/57Y75ue4VT +02/06/2018,Musicians,@jtimberlake,"Love you, bro!! Thank you! https://t.co/cDZcxgdpOJ" +02/05/2018,Musicians,@jtimberlake,"#MOTW + +https://t.co/rMIkpl3yp3 https://t.co/nW9WVEvQTX" +02/05/2018,Musicians,@jtimberlake,.@THETNKIDS and I brought #Supplies onto @FallonTonight! ⚠️ Limited merch as seen in video available now for only 2… https://t.co/6zgTxmnLoE +02/05/2018,Musicians,@jtimberlake,#SuperBowlSelfie https://t.co/JAJWoDmUFc +02/05/2018,Musicians,@jtimberlake,RT @TheEllenShow: My friend @JTimberlake just killed it. #SuperBowl #JustinTimberlake https://t.co/oZv0YcxsrN +02/05/2018,Musicians,@jtimberlake,🙌🙌🙌 #SBLII #PepsiHalftime @Pepsi @NFL #MOTW @thetnkids https://t.co/blsaV3b8x8 +02/05/2018,Musicians,@jtimberlake,#SBLII #PepsiHalftime @Pepsi @NFL #MOTW https://t.co/EwZnemHzWU +02/05/2018,Musicians,@jtimberlake,#SBLII #PepsiHalftime @Pepsi @NFL #MOTW @thetnkids https://t.co/8RVE5pxW1D +02/05/2018,Musicians,@jtimberlake,⚠️ Two minute warning. ⚠️ @Jumpman23 #SBLII https://t.co/yBo3PZFAJJ +02/04/2018,Musicians,@jtimberlake,My band @theTNKids looking good @RamTrucks! 🙌#CountryBoy #SBLII https://t.co/pt4A2XcqYl +02/04/2018,Musicians,@jtimberlake,"I see you @Spotify #NYC #MOTW + +https://t.co/aOlte4eNgy https://t.co/b3tEJU42dN" +02/03/2018,Musicians,@jtimberlake,"Weekend plans? THIS VIBE. Playin’ all day long. #MOTW + +@AppleMusic +https://t.co/Po8obBmIpQ https://t.co/nmHMhhapZW" +02/03/2018,Musicians,@jtimberlake,"Love love love to you, sis!!!! You saaaang on that!! 🙌 https://t.co/8i2XF0K0qC" +02/03/2018,Musicians,@jtimberlake,"Casual Friday + +#SBLII https://t.co/wNhTMP9vwp" +02/02/2018,Musicians,@jtimberlake,Just made a #targetrun and got my limited edition vinyl there.. Also left a gift for 5 of y’all at the Super… https://t.co/SE7fazStl3 +02/02/2018,Musicians,@jtimberlake,"When @twitter makes your logo an emoji!!! + +#ManoftheWoods +#MOTW +#MOTWTour +#JustinTimberlake +#JTSuperbowl" +02/02/2018,Musicians,@jtimberlake,"RT @iHeartRadio: Yup, it's true! @jtimberlake is hooking you up! His entire new album ""Man Of The Woods"" is available for free with the iHe…" +02/02/2018,Musicians,@jtimberlake,The album & my interviews about the stories behind the songs up on @AmazonMusic now. https://t.co/h4CEWOv493 https://t.co/hSyr9YuaqF +02/02/2018,Musicians,@jtimberlake,"Man of the Woods music video. 🎥: #PaulHunter / @Prettybirdpic +https://t.co/TSJbPA4xle" +02/02/2018,Musicians,@jtimberlake,Man of the Woods... out now! https://t.co/L9yGfZpcbg https://t.co/jcSuUxHiX0 +02/02/2018,Musicians,@jtimberlake,Live from Paisley Park! Teamed up with @AmericanExpress to livestream my official album release – #ManoftheWoods https://t.co/beOZ4nqUPz +02/02/2018,Musicians,@jtimberlake,"Let’s GOOOO! I’m so excited for y’all to hear this all from top to bottom! + +This is a song called MIDNIGHT SUMMER J… https://t.co/9zkDoPb4Iu" +02/02/2018,Musicians,@jtimberlake,4 of 4. Man of the Woods music video out midnight ET. 🎥 : #PaulHunter / @Prettybirdpic https://t.co/q1DgjoCQov +02/01/2018,Musicians,@jtimberlake,Whooooo! It’s a VIBE y’all! ⚠️More New Music Alert⚠️ This is a song called MORNING LIGHT feat. @aliciakeys You bett… https://t.co/ulDCgoAbBC +02/01/2018,Musicians,@jtimberlake,What’s that? Oh yeah... we’re still partying. ⚠️More New Music Alert⚠️ This is a song called WAVE. @pharrell… https://t.co/iemcCqz239 +02/01/2018,Musicians,@jtimberlake,💪💪💪 @adamblackstone @SoiRodgers @BrianFrasierM & all @THETNKIDS https://t.co/TVjTowc8l8 +02/01/2018,Musicians,@jtimberlake,Still my bday!! I’m having too much fun! ⚠️More new music alert ⚠️ This is a song called HIGHER HIGHER. @Pharrell… https://t.co/0njI8nFsJi +02/01/2018,Musicians,@jtimberlake,"Gotta stay hydrated for bro biking, BRO! Btw... it’s COLD in MN. Snow-bro biking when you get here?? https://t.co/oE5ml5c97a" +02/01/2018,Musicians,@jtimberlake,@adamblackstone 🙌 +02/01/2018,Musicians,@jtimberlake,"Bday rehearsals. Still feeling myself..? YES. + +This is a song called MONTANA. @Pharrell @ChadHugo +Man Of The Woods.… https://t.co/QCIAW7EKVc" +02/01/2018,Musicians,@jtimberlake,Talked about the process of creating Man of the Woods with @amazonmusic. First 3 episodes are up now; stayed tuned… https://t.co/7BW82YgjtC +01/31/2018,Musicians,@jtimberlake,@tinyambo 🙌 +01/31/2018,Musicians,@jtimberlake,"I feel like @djkhaled right now!!! NEW SONG ALERT! Birthday vibes! +Thanks everybody for the bday love! https://t.co/Al1qonrZyK" +01/31/2018,Musicians,@jtimberlake,"Man of the Woods is out Friday. And yes, this is how cold it is in Minnesota right now 😉 + +https://t.co/L9yGfZpcbg https://t.co/Zo8ICyQ0g3" +01/30/2018,Musicians,@jtimberlake,#Superbowl #SBLII https://t.co/PEYofvPPlv +01/30/2018,Musicians,@jtimberlake,Excited to be performing #Brits! See you soon UK. https://t.co/KWg4JgoWLY +01/29/2018,Musicians,@jtimberlake,Behind: Say Something @ChrisStapleton https://t.co/QLLwVBeq9y +01/29/2018,Musicians,@jtimberlake,LET’S GO! #Superbowl #SBLII https://t.co/ub3h1ctRbl +01/29/2018,Musicians,@jtimberlake,"Congrats, Jedi!!!!! You all deserve it! https://t.co/xjG7Va94l1" +01/29/2018,Musicians,@jtimberlake,"Happy Bday, Big Spain! https://t.co/d5GIdztpNt" +01/28/2018,Musicians,@jtimberlake,I wish I could be there to support all of the artists on what will undoubtedly be a special night tonight. Sending… https://t.co/09lsQz4uak +01/28/2018,Musicians,@jtimberlake,So inspired by Jay’s words from last night’s pre-Grammy party (Congrats Hov! @S_C_ )...and it reminded me of times… https://t.co/ib8nH7Wjwy +01/28/2018,Musicians,@jtimberlake,#SaySomething acoustic version https://t.co/HXLgYnG05b +01/27/2018,Musicians,@jtimberlake,"It’s always a pleasure when we get to play tunes together, my friend. Honored! @ChrisStapleton… https://t.co/QfhtomXZeE" +01/27/2018,Musicians,@jtimberlake,"Thank you, bro!!! 🙌 https://t.co/wGW2tlIUJd" +01/26/2018,Musicians,@jtimberlake,#SaySomething from #ManoftheWoods up now on @AmazonMusic. Check it! https://t.co/h4CEWOMF0B https://t.co/riT49OCn5K +01/26/2018,Musicians,@jtimberlake,#Superbowl rehearsals are going well... @Jumpman23 #SBLII https://t.co/kuBEoIofIp +01/26/2018,Musicians,@jtimberlake,Aww. Honored to celebrate YOU! Happiest Born Day from me and @TheTNKids! @TheEllenShow #HappyBirthdayEllen https://t.co/IkyaoNdmGo +01/26/2018,Musicians,@jtimberlake,"Man that was fun! @ChrisStapleton @TheTNKids @blogotheque @artperezjr +#SaySomething https://t.co/u2u2dmMrMh https://t.co/GT1pR7yZAT" +01/26/2018,Musicians,@jtimberlake,"RT @blogotheque: ""Maybe one of the most ambitious video shoots I’ve ever been a part of. One take, live performance, in the Bradbury Buildi…" +01/25/2018,Musicians,@jtimberlake,"#SaySomething on @Spotify! +https://t.co/oSnRjHozC9 https://t.co/Ogz8aNIwGa" +01/25/2018,Musicians,@jtimberlake,"Say Something. 3 of 4. feat. @ChrisStapleton +https://t.co/KPzApHWFTG https://t.co/UfzTM4flL2" +01/25/2018,Musicians,@jtimberlake,"Folks, the #SaySomething song + video feat. @chrisstapleton is now up @applemusic... https://t.co/tLFlEo1uII https://t.co/W8MNFkK8zJ" +01/25/2018,Musicians,@jtimberlake,"""Say Something"" feat. @chrisstapleton. 🎥 @blogotheque @artperezjr. +https://t.co/SIe37byPIT" +01/25/2018,Musicians,@jtimberlake,🙌 https://t.co/SEgYusC55r +01/24/2018,Musicians,@jtimberlake,"#SaySomething. @ChrisStapleton +Tomorrow. 12 PM ET. https://t.co/F5vheaMpOZ" +01/24/2018,Musicians,@jtimberlake,.@ChrisStapleton and me. #SaySomething. Tomorrow! https://t.co/0iKwJAovUJ +01/23/2018,Musicians,@jtimberlake,“At a club? Are you f*cking crazy?” - @tylerthecreator #jerrodcarmichael #Supplies https://t.co/2MtTcTqFWh +01/23/2018,Musicians,@jtimberlake,"THANK YOU! Day changed. + +#StillPieOverCake https://t.co/gbyezn2hhs" +01/23/2018,Musicians,@jtimberlake,"Also... I prefer pie, I think." +01/23/2018,Musicians,@jtimberlake,"Random question: Can someone please explain the saying, “You just want your cake and to eat it too.” + +What else am… https://t.co/tiNyeiFVZC" +01/22/2018,Musicians,@jtimberlake,Behind : Supplies @Pharrell https://t.co/GahdZPIYzL +01/22/2018,Musicians,@jtimberlake,Me? 🙌 https://t.co/9hdLkknSHG +01/22/2018,Musicians,@jtimberlake,RT @adamblackstone: WHAT A WIN... IM SPEECHLESS.... this is like a dream come true... IM PLAYING SBOWL HALFTIME... ANNNNDDD MY TEAM IS PLA… +01/21/2018,Musicians,@jtimberlake,"Supply-eye-ies... + +https://t.co/PlAckfOawg https://t.co/CmFkb5V6yM" +01/19/2018,Musicians,@jtimberlake,"RT @Beats1: Let's go! +@jtimberlake x @zanelowe +#ManOfTheWoods + more. +👀 https://t.co/URmOxfJJGn https://t.co/osXQ48Av2r" +01/19/2018,Musicians,@jtimberlake,"RT @Beats1: ""I always want to write music. I always want to make movies. I always want to go on tour. I don't know how long my body will le…" +01/18/2018,Musicians,@jtimberlake,Supply-eye- ies!!!! 🙌 https://t.co/PFrL4kjv9p +01/18/2018,Musicians,@jtimberlake,🙌 https://t.co/Gnc0S2vyXt +01/18/2018,Musicians,@jtimberlake,"SUPPLIES. 🎥: @_DaveMeyers + +@eizamusica @pharrell + +https://t.co/vJQoPB7jbf" +07/02/2018,Musicians,@ShawnMendes,"With all of my heart. Thank you, Brazil. Te amo demas! X https://t.co/db5atuDI9x" +07/01/2018,Musicians,@ShawnMendes,Happy Canada day ❤️🇨🇦🇨🇦!!! +06/30/2018,Musicians,@ShawnMendes,Goiania xx https://t.co/MNcx2q9DdO +06/27/2018,Musicians,@ShawnMendes,❤️ +06/25/2018,Musicians,@ShawnMendes,Thank you #RDMAs! https://t.co/HsMybSBTGt +06/19/2018,Musicians,@ShawnMendes,"Brazil, see u soon. Can’t wait to play for you again. X" +06/19/2018,Musicians,@ShawnMendes,. @billieeilish i think you are just really crazy talented and everybody who hasn’t listened to your music is seriously missing out. +06/18/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnMendesCollection now available in select @UrbanOutfitters stores and online at https://t.co/EWswWsKSh8 https://t.co/… +06/18/2018,Musicians,@ShawnMendes,Honestly doesn’t get better than this!! @DanielCaesar https://t.co/rdjLSLmYqm +06/18/2018,Musicians,@ShawnMendes,"#ShawnMendesCollection launches with @urbanoutfitters today. In select stores in NY, LA, & Toronto and online at… https://t.co/RYWxOviKfF" +06/18/2018,Musicians,@ShawnMendes,RT @UrbanOutfitters: It’s here! Shop @ShawnMendes The Collection online now: https://t.co/jxvt8FVnjr https://t.co/bwD8omgwL5 +06/16/2018,Musicians,@ShawnMendes,#ShawnMendesFestivalTour this summer. Tickets https://t.co/bEmQqHS8Gq https://t.co/6nsVKox3Yg +06/16/2018,Musicians,@ShawnMendes,https://t.co/2PegoPX29v +06/16/2018,Musicians,@ShawnMendes,I ABSOLUTELY LOVE YOU GUYS. I REALLY REALLY LOVE U +06/15/2018,Musicians,@ShawnMendes,3rd London show is onsale now x https://t.co/qAZaGlclFv https://t.co/l3YxQ0uaqh +06/14/2018,Musicians,@ShawnMendes,https://t.co/G1zT7InoQV +06/13/2018,Musicians,@ShawnMendes,Hahaha thank you so much!!!! https://t.co/87Y2VrwF6q +06/13/2018,Musicians,@ShawnMendes,"Vamos, família! Força Portugal! 🇵🇹 ⚽️ ❤️❤️ @selecaoportugal" +06/13/2018,Musicians,@ShawnMendes,Did the official World Cup song for @selecaoportugal! Go watch here https://t.co/XUC4xcJeF8 #InMyBloodPortugal https://t.co/KXDHgQuoD7 +06/13/2018,Musicians,@ShawnMendes,RT @selecaoportugal: Notícia de última hora: Shawn Mendes chamado à Seleção de Portugal. Aqui está a sua música oficial de apoio à equipa p… +06/12/2018,Musicians,@ShawnMendes,Haha i love this!!!! ❤️ https://t.co/H7QGOdqE2N +06/12/2018,Musicians,@ShawnMendes,Performing @iHeartFestival Sept 22nd! X https://t.co/RcrUwNEzr5 +06/11/2018,Musicians,@ShawnMendes,"Go watch #NervousMusicVideo now! +https://t.co/Y6cj0lpZLR https://t.co/tz0D23WYKt" +06/11/2018,Musicians,@ShawnMendes,#NervousMusicVideo drops in full color at noon EST x https://t.co/WoyqtCWJa5 +06/10/2018,Musicians,@ShawnMendes,https://t.co/FNZObhEZn7 +06/10/2018,Musicians,@ShawnMendes,"If money comes my way, i wont be complaining, though it wouldn’t mean a thing without you" +06/09/2018,Musicians,@ShawnMendes,Thank you @capitalofficial for having me!!! ❤️ https://t.co/2SYOqxXXwM +06/08/2018,Musicians,@ShawnMendes,3rd London show added! https://t.co/qAZaGltX45 x https://t.co/4rqTgYEwBK +06/08/2018,Musicians,@ShawnMendes,https://t.co/t4dY6dzALm +06/08/2018,Musicians,@ShawnMendes,Perfectly wrong. https://t.co/SpAjNURnGZ +06/08/2018,Musicians,@ShawnMendes,#LateLateShawn final night tonight thank you @latelateshow @JKCorden for such a wonderful week https://t.co/uUeLoqvyWA +06/08/2018,Musicians,@ShawnMendes,"RT @JKCorden: Today @ShawnMendes made our entire staff #LateLateShawn merchandise! It was the sweetest gift from an incredibly kind, funny,…" +06/08/2018,Musicians,@ShawnMendes,📷: @JosiahVanDien https://t.co/NWdhtvMZoT +06/08/2018,Musicians,@ShawnMendes,"RT @latelateshow: That was awesome. Thanks for all the great questions! + +Be sure you join us tonight at 12:37/11:37c for the last night of…" +06/07/2018,Musicians,@ShawnMendes,RT @latelateshow: .@AidaWen3 #AskLateLateShawn https://t.co/5BuK0R1sDA +06/07/2018,Musicians,@ShawnMendes,"RT @latelateshow: It's been a crazy, wonderful week here at the #LateLateShow and we bet it's left you with some questions for @ShawnMendes…" +06/07/2018,Musicians,@ShawnMendes,RT @JKCorden: Me and @ShawnMendes both busk on the same subway. https://t.co/nAfgrafU2U +06/07/2018,Musicians,@ShawnMendes,“Like To Be You” with @juliamichaels on @latelateshow https://t.co/HquRhMfJj5 https://t.co/KU8uLkGLcj +06/07/2018,Musicians,@ShawnMendes,RT @latelateshow: This GIF of @ShawnMendes can actually save lives. #LateLateShawn https://t.co/kvH4zXya88 +06/07/2018,Musicians,@ShawnMendes,RT @JKCorden: Tonight’s @latelateshow might be one of my favorites of all time x @CBS 12.30 x #LateLateShawn +06/07/2018,Musicians,@ShawnMendes,Tonight night 3 of #LateLateShawn with @juliamichaels https://t.co/2vX8LrXnJw +06/07/2018,Musicians,@ShawnMendes,Cez and I got a flow https://t.co/HGOWkfUzY7 +06/06/2018,Musicians,@ShawnMendes,New campaign with @EmporioArmani coming soon x #EAwatches https://t.co/h0Y2vjCjEy +06/06/2018,Musicians,@ShawnMendes,RT @billboard: .@ShawnMendes returns to No. 1 on the Billboard Artist 100 chart https://t.co/1LK9gBOF2Q https://t.co/YgtaSc9Ixr +06/06/2018,Musicians,@ShawnMendes,“Lost In Japan”.. Thank you @latelateshow! Night 3 Tonight x https://t.co/YNLOKRPJO7 https://t.co/ivWgeN4L56 +06/06/2018,Musicians,@ShawnMendes,Im a sucker for a good topical joke Ben! https://t.co/YWSR3Jn0Bw +06/06/2018,Musicians,@ShawnMendes,Dan & Shay man!!!! Country music ! Im back baby! +06/06/2018,Musicians,@ShawnMendes,RT @latelateshow: 🎶 Do you got plans tonight? I'm a couple hundred miles from Japan. 🎶 #LateLateShawn https://t.co/2z850Etr4a +06/06/2018,Musicians,@ShawnMendes,😂 @latelateshow @JKCorden #LateLateShawn https://t.co/ftaMdeMhD4 +06/06/2018,Musicians,@ShawnMendes,"RT @whymutual: ""I'm your host, Shawn Mendes"" #LateLateShawn https://t.co/40axy9LoXD" +06/06/2018,Musicians,@ShawnMendes,"RT @latelateshow: It's time for the ""shawnologue"" with @ShawnMendes. #LateLateShawn https://t.co/iaeoTlKnhf" +06/06/2018,Musicians,@ShawnMendes,Night 2 of #LateLateShawn tonight! @latelateshow https://t.co/jdBL323gJ0 +06/05/2018,Musicians,@ShawnMendes,"RT @latelateshow: .@ShawnMendes CRUSHED this performance of ""Nervous"" on last night's show. https://t.co/BaWAEGJdqY" +06/05/2018,Musicians,@ShawnMendes,"RT @TwitterMusic: Looking through your timeline +Seeing all the Tweets 🎶 + +@ShawnMendes stopped by to read what fans are Tweeting.👇 https://t…" +06/05/2018,Musicians,@ShawnMendes,"RT @JKCorden: I swear if @ShawnMendes steals my parking spot again, it won’t end pretty. https://t.co/InNLqNxsn4" +06/05/2018,Musicians,@ShawnMendes,"RT @latelateshow: You know, this @ShawnMendes guy might have a future in the music biz. #LateLateShawn https://t.co/LvecfhgkSg" +06/05/2018,Musicians,@ShawnMendes,Thank you @latelateshow @JKCorden #ShawnCarpool x https://t.co/l35p1k74vp https://t.co/ToaTbLMaeS +06/05/2018,Musicians,@ShawnMendes,"RT @benwinston: His fans have been asking for this for a while and its finally here.... @ShawnMendes carpool, is carpool at its best. He is…" +06/05/2018,Musicians,@ShawnMendes,RT @Hopefully5sos: i was literally dying of laughter mood is james #ShawnCarpool #LateLateShawn https://t.co/YCoISIrd8e +06/05/2018,Musicians,@ShawnMendes,RT @latelateshow: But what Hogwarts house would @ShawnMendes be part of? #ShawnCarpool https://t.co/9Q1kaH5e1r +06/05/2018,Musicians,@ShawnMendes,#ShawnCarpool tonight on the first night of the week takeover @latelateshow #LateLateShawn x https://t.co/bPPcC0DDJs +06/05/2018,Musicians,@ShawnMendes,RT @latelateshow: It's official: Nobody will be needing stitches if @ShawnMendes and @JKCorden show up to a fight 🥊🙈😬 #ShawnCarpool https:/… +06/04/2018,Musicians,@ShawnMendes,RT @latelateshow: .@JKCorden and @ShawnMendes have a little something they’d like to tell you about tonight’s show... https://t.co/PbEG3Ceo… +06/04/2018,Musicians,@ShawnMendes,https://t.co/3bq5cCTM7P +06/04/2018,Musicians,@ShawnMendes,https://t.co/15fGZlwosw +06/04/2018,Musicians,@ShawnMendes,Its all about the connection. Truly is. +06/04/2018,Musicians,@ShawnMendes,https://t.co/u9dsKdrg6Z +06/04/2018,Musicians,@ShawnMendes,Unreal. Thank you to every single person who made this happen! I love u guys so much!!!!!!!!❤️❤️❤️❤️❤️❤️ https://t.co/AFGaSetCuU +06/03/2018,Musicians,@ShawnMendes,@latelateshow @JKCorden Great idea! Haha x +06/03/2018,Musicians,@ShawnMendes,@latelateshow @JKCorden @JKCorden @latelateshow https://t.co/meLHzjdHAQ +06/03/2018,Musicians,@ShawnMendes,RT @latelateshow: .@ShawnMendes #ShamesCorndes week starts tomorrow!! 🙌💃✨🎉 https://t.co/yqLK9st1rR +06/03/2018,Musicians,@ShawnMendes,"RT @iHeartRadio: TONIGHT. We relive all the best moments from the 2018 iHeartRadio Wango Tango AGAIN! + +Watch our #WangoTangoOnFreeform at…" +06/03/2018,Musicians,@ShawnMendes,@latelateshow .@JKCorden @latelateshow https://t.co/4HWFoNGRIT +06/03/2018,Musicians,@ShawnMendes,RT @1027KIISFM: OMG @shawnmendes is RIGHT THERE! 😭😭😭 #WangoTango https://t.co/Mh7Ij1sPyC +06/02/2018,Musicians,@ShawnMendes,!!!!!!!!!!!!!! 😍 https://t.co/WuntfHwfm9 +06/02/2018,Musicians,@ShawnMendes,Wow ❤️ https://t.co/pTzsTuAULx +06/02/2018,Musicians,@ShawnMendes,Unreal. Thank you. @govballnyc https://t.co/d2oPJuH2ns +06/01/2018,Musicians,@ShawnMendes,RT @TODAYshow: .@ShawnMendes is rocking the plaza! #ShawnTODAY https://t.co/1pAXTdJmjf +06/01/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnTODAY 8:30am ET tune in! +05/31/2018,Musicians,@ShawnMendes,Tomorrow performing on @TODAYshow come down to Rockefeller Plaza before 8am to watch! https://t.co/XgPtE4rNeC +05/30/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum - “Lost In Japan” x https://t.co/xfrqTMHH3h +05/30/2018,Musicians,@ShawnMendes,RT @billboard: .@ShawnMendes' new album is heading for No. 1 on the #Billboard200 chart https://t.co/TgkumAizk4 https://t.co/RPTSmJ5Okd +05/30/2018,Musicians,@ShawnMendes,Today come listen to the album on @Spotify with me https://t.co/rmlow132qi https://t.co/S0FrNyZplb +05/29/2018,Musicians,@ShawnMendes,https://t.co/gYlBGfAM0X +05/29/2018,Musicians,@ShawnMendes,"RT @pandoramusic: .@ShawnMendes gets real with us discussing how he is breaking down genres with his new self-titled album, #ShawnMendesThe…" +05/28/2018,Musicians,@ShawnMendes,Will be on at 5:25p @GovBallNYC this Friday go get tickets now at https://t.co/aDve3S2DhF x +05/28/2018,Musicians,@ShawnMendes,London Popup open today only x https://t.co/h40gIMWguV +05/27/2018,Musicians,@ShawnMendes,"RT @JaredLeto: Thx again for joining us on stage at #BiggestWeekend for #RescueMe, @ShawnMendes!! 🙏🏼 @30SECONDSTOMARS https://t.co/pTa1Yd29…" +05/27/2018,Musicians,@ShawnMendes,❤️ https://t.co/N8ukd5xpd8 +05/27/2018,Musicians,@ShawnMendes,https://t.co/IJnvRlj390 +05/27/2018,Musicians,@ShawnMendes,https://t.co/5TXuX8YerC +05/27/2018,Musicians,@ShawnMendes,https://t.co/LaGb685TGL +05/27/2018,Musicians,@ShawnMendes,"RT @BBCR1: Are you excited about @ShawnMendes? + +Because we SURE are 😱🎉 + +Watch the full performance on the @BBCiPlayer ➡️ https://t.co/pBz5i…" +05/27/2018,Musicians,@ShawnMendes,Limited vinyl at https://t.co/KEz4lLaNb4 https://t.co/fuiNvQmRE5 +05/27/2018,Musicians,@ShawnMendes,5:30pm BST tune in @BBCR1 x https://t.co/ewhp1hmhxj https://t.co/9Nh9moA3uq +05/26/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum Pt II. Get the album here x https://t.co/RRpkfGE1tC https://t.co/rqaDCqMsg4 +05/26/2018,Musicians,@ShawnMendes,Wow ive never seen so many different answers! That makes SO happy because they all are super important to me for different reasons ❤️ +05/26/2018,Musicians,@ShawnMendes,Okay favourite songs HIT ME! +05/26/2018,Musicians,@ShawnMendes,Secret pop-up shop in London on May 28th #ShawnLondonPopup https://t.co/zeWAtVejmQ https://t.co/V2fhcl0Eak +05/25/2018,Musicians,@ShawnMendes,https://t.co/oRA9dmRo2S +05/25/2018,Musicians,@ShawnMendes,RT @Target: #ShawnMendesTheAlbum is available now! Our Target exclusive includes extra songs. NY and LA @ShawnMendes has a surprise for you… +05/25/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum  packaging & credits. Thank you x https://t.co/tzLVMY7yk2 +05/25/2018,Musicians,@ShawnMendes,RT @andrewgertler: #ShawnMendesTheAlbum @ShawnMendes https://t.co/NyB53jin9C +05/25/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum Pt I below. Get the album here x https://t.co/JkjwPG2pEd https://t.co/xJgVhN7Jq1 +05/25/2018,Musicians,@ShawnMendes,"Go get the album on @applemusic #ShawnMendesTheAlbum + +iTunes: https://t.co/mnTsXhlJCq +AppleMusic:… https://t.co/OFCtxLw2Kh" +05/25/2018,Musicians,@ShawnMendes,Go stream the album & watch the “Nervous” vertical video on @Spotify! https://t.co/QNp4tNFHOz https://t.co/OmuOFSMcD0 +05/25/2018,Musicians,@ShawnMendes,"Thank you, with all of my heart thank you!! I LOVE YOU!!!! ❤️" +05/25/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawMendesTheAlbum out now! https://t.co/VVprIExL1g https://t.co/4o0N5rpUZQ +05/25/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum is out now go listen & download! x https://t.co/JkjwPG2pEd https://t.co/cZhAskqrXp +05/25/2018,Musicians,@ShawnMendes,my favorite lyrics is the first phrase I say in Like To Be You and the first phrase Julia says #ShawnMendesTheAlbum https://t.co/CSoeEBnEDq +05/25/2018,Musicians,@ShawnMendes,"Everything will be different, a new album lets me be creative with the show all over again. Also. Using lots of fl… https://t.co/7AsT7rzewH" +05/25/2018,Musicians,@ShawnMendes,I wanted to stamp this moment in time at 19 because ive never felt so true to myself #ShawnMendesTheAlbum https://t.co/GDjrMLAWY9 +05/25/2018,Musicians,@ShawnMendes,This is almost impossible to answer but if i had to choose it’d be a fight between In My Blood & where were you in… https://t.co/TGY9i9zV1G +05/25/2018,Musicians,@ShawnMendes,"Depends, some days a couple of hours and sometimes a few days! #ShawnMendesTheAlbum https://t.co/iJGsjAa8aJ" +05/25/2018,Musicians,@ShawnMendes,Im excited for people to see how ive grown and to listen to the stories ive wrote! https://t.co/m36xi7j0R7 +05/25/2018,Musicians,@ShawnMendes,Where were you in the morning!!!!!! #ShawnMendesTheAlbum https://t.co/a8cjbvsDyu +05/25/2018,Musicians,@ShawnMendes,"RT @shawnallofme: I'm very Excited for Midnight @ShawnMendes +#ShawnMendesTheAlbum" +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum Midnight https://t.co/C3oXJ4AOKF https://t.co/BPRFpbSEeV +05/24/2018,Musicians,@ShawnMendes,Twitter Q&A at 11pm ET send your questions with #ShawnMendesTheAlbum https://t.co/chU4sVTax8 +05/24/2018,Musicians,@ShawnMendes,RT @janzenstarr: MIDNIGHT!!!!! @ShawnMendes #ShawnMendesTheAlbum +05/24/2018,Musicians,@ShawnMendes,RT @mendesgoodness: You did it #ShawnMendesTheAlbum https://t.co/f5XnbgFaj3 +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum tonight at midnight x https://t.co/C3oXJ4AOKF https://t.co/cbjOhCcBkZ +05/24/2018,Musicians,@ShawnMendes,RT @nbtscarpenter: I CANT BELIEVE WE’RE GETTING SM3 AT MIDNIGHT IM SO HAPPY #ShawnMendesTheAlbum +05/24/2018,Musicians,@ShawnMendes,That was in my blood i think! Haha https://t.co/5rOW6I8RIJ +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum Midnight x. https://t.co/C3oXJ4AOKF https://t.co/TjmMX8YZmN +05/24/2018,Musicians,@ShawnMendes,"RT @ShawnAccess: #ShawnMendesTheAlbum +#ShawnMendesTheAlbum +#ShawnMendesTheAlbum" +05/24/2018,Musicians,@ShawnMendes,#ShawnMendesTheAlbum out tonight at midnight!!! https://t.co/C3oXJ4AOKF https://t.co/avP3AGBeoJ +05/23/2018,Musicians,@ShawnMendes,#ShawnSecretListening thank you @Bose x https://t.co/5PTzSAxi9I https://t.co/MK9vFWmDqE +05/23/2018,Musicians,@ShawnMendes,Limited tee collection available now x https://t.co/KEz4lLaNb4 https://t.co/J7oLKIO5Tx +05/23/2018,Musicians,@ShawnMendes,2 days until #ShawnMendesTheAlbum x https://t.co/C3oXJ4AOKF https://t.co/nkJKlfkGwW +05/23/2018,Musicians,@ShawnMendes,"New song #Nervous from the album, go download it now https://t.co/YWLwOFozbG" +05/23/2018,Musicians,@ShawnMendes,#Nervous out now x https://t.co/w1znlD9iIP https://t.co/7U6YiFNZJG +05/23/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum - “#Nervous” x Preorder now to get it at midnight https://t.co/C3oXJ4AOKF https://t.co/4r43dinxfK +05/22/2018,Musicians,@ShawnMendes,RT @lightsondoshawn: I'm #Nervous #Nervous #Nervous #Nervous ... +05/22/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #Nervous #Nervous #Nervous +05/22/2018,Musicians,@ShawnMendes,#Nervous Midnight https://t.co/6gMUiyYcXS +05/22/2018,Musicians,@ShawnMendes,3 days until #ShawnMendesTheAlbum! Pre-order now to get #Nervous at midnight tonight x https://t.co/C3oXJ4AOKF https://t.co/0rv8HMpY0z +05/22/2018,Musicians,@ShawnMendes,RT @shawnsmusical: NERVOUS https://t.co/Gh89iLRnKW +05/22/2018,Musicians,@ShawnMendes,RT @aliciakeys: Calling every member of #TeamAlicia out there! 🌍 It's all led up to THIS! We need to work together to get @BrittonBuchanan… +05/21/2018,Musicians,@ShawnMendes,#Nervous comes out Wednesday! Get it when you preorder the album https://t.co/C3oXJ4SpCd https://t.co/27Xpuz1uOr +05/21/2018,Musicians,@ShawnMendes,Making of #ShawnMendesTheAlbum “In My Blood” x https://t.co/C3oXJ4AOKF https://t.co/t2d5SR4rV7 +05/21/2018,Musicians,@ShawnMendes,Performing new music live outside from Rockefeller Plaza on @TODAYshow June 1st 8am ET. Come watch! x #ShawnTODAY https://t.co/kUUXYBpMmg +05/21/2018,Musicians,@ShawnMendes,"RT @billboard: Shawn Mendes & Khalid put on a powerful performance of ""Youth"" at the #BBMAs https://t.co/giS3J9FphU https://t.co/8IJYbEbS1Q" +05/21/2018,Musicians,@ShawnMendes,RT @ShawnAccess: VIP Ticketless Upgrades for all #ShawnMendesTheTour dates start today at 4pm local time! https://t.co/kydnQeKowN +05/21/2018,Musicians,@ShawnMendes,Love you. +05/21/2018,Musicians,@ShawnMendes,RT @TwitterMoments: The Marjory Stoneman Douglas Show Choir joined @ShawnMendes and @thegreatkhalid on stage for a powerful performance at… +05/21/2018,Musicians,@ShawnMendes,RT @BBMAs: Chills from this moving @ShawnMendes & @thegreatkhalid performance. A huge thank you to the Marjory Stoneman Douglas Show Choir… +05/21/2018,Musicians,@ShawnMendes,RT @BBMAs: 🌹🌹🌹 + 🎸+ @ShawnMendes + 'In My Blood' = 😍😍😍 #BBMAs #SHAWN_BBMAs https://t.co/a11LIery6G +05/20/2018,Musicians,@ShawnMendes,"RT @BBMAs: .@ShawnMendes looks AMAZING tonight, right Mendes Army?🤘#SHAWN_BBMAs https://t.co/zGw29Kt09f" +05/20/2018,Musicians,@ShawnMendes,Tonight tune in @BBMAs will be performing twice x +05/20/2018,Musicians,@ShawnMendes,You can watch #ShawnOneNightOnly now on @AppleMusic! x https://t.co/SCsUptGNIc https://t.co/af0eFHET96 +05/19/2018,Musicians,@ShawnMendes,https://t.co/EQP4CGerBG +05/19/2018,Musicians,@ShawnMendes,North America shows are onsale now! x https://t.co/qAZaGlclFv https://t.co/OUMPLDczC2 +05/19/2018,Musicians,@ShawnMendes,North America Public onsales start today at 10am local time x https://t.co/qAZaGlclFv +05/18/2018,Musicians,@ShawnMendes,UK & Europe shows are onsale now & 2nd Amsterdam date added! x https://t.co/qAZaGlclFv” https://t.co/E75H4LZtsH +05/18/2018,Musicians,@ShawnMendes,#InTheMorning out now x https://t.co/WK9bG4FNtr https://t.co/ujsrHQ1VTT +05/18/2018,Musicians,@ShawnMendes,#ShawnOneNightOnly live now x https://t.co/NGnWWPIYMX https://t.co/jktMrt6dvw +05/18/2018,Musicians,@ShawnMendes,"Watch now! X #ShawnOneNightOnly + +YouTube: https://t.co/NGnWWPIYMX +AppleMusic: https://t.co/vdX2l1OMKz https://t.co/vwmgB4iKvJ" +05/18/2018,Musicians,@ShawnMendes,RT @Shawn_M_Up: Tickets for #ShawnOneNightOnly 😻 https://t.co/jjuHtq9Qxg +05/18/2018,Musicians,@ShawnMendes,#InTheMorning Midnight x https://t.co/v5Uy7HRC8W +05/17/2018,Musicians,@ShawnMendes,RT @ShawnMendes: #InTheMorning Midnight x https://t.co/TG6wSl3Kfq +05/17/2018,Musicians,@ShawnMendes,#InTheMorning Midnight x https://t.co/TG6wSl3Kfq +05/17/2018,Musicians,@ShawnMendes,"Live concert + Q&A with @applemusic starts at 8:30PM PT tonight! Send me your questions with #ShawnOneNightOnly + +Wa… https://t.co/CT9ZSumyaJ" +05/17/2018,Musicians,@ShawnMendes,North America ShawnAccess presale for #ShawnMendesTheTour is happening now x https://t.co/qAZaGlclFv https://t.co/58ERDgsnrs +05/17/2018,Musicians,@ShawnMendes,"North America ShawnAccess presale starts today at 10am local time x +https://t.co/qAZaGlclFv" +05/17/2018,Musicians,@ShawnMendes,UK & Europe General fan presales for #ShawnMendesTheTour are happening now x https://t.co/qAZaGlclFv https://t.co/onwultjRlc +05/17/2018,Musicians,@ShawnMendes,UK & Europe General fan presale starts today at 10am local time x https://t.co/qAZaGlclFv +05/17/2018,Musicians,@ShawnMendes,#InTheMorning Friday! x https://t.co/raYGOCuQU8 https://t.co/6rWdCicnfa +05/17/2018,Musicians,@ShawnMendes,RT @ShawnAccess: Tomorrow make sure to tune into @ShawnMendes #OneNightOnly with @AppleMusic at 7:45pm PT for a live performance & special… +05/16/2018,Musicians,@ShawnMendes,Performing on @TheEllenShow tomorrow x https://t.co/uIMddyaodY +05/16/2018,Musicians,@ShawnMendes,Woa. Next friday. +05/16/2018,Musicians,@ShawnMendes,"FirstAccess presale for the UK & EU, & O2 Priority presale for the UK are happening now x https://t.co/qAZaGlclFv https://t.co/cAS2kUR3MB" +05/16/2018,Musicians,@ShawnMendes,Priority tickets for #ShawnMendesTheTour UK dates with @O2Music are on sale now at https://t.co/SZzStwEme2 https://t.co/6T7aDVBwqa +05/16/2018,Musicians,@ShawnMendes,"FirstAccess presale for UK & EU, & O2 Priority presale for the UK, start today 10am Local! Details at https://t.co/qAZaGlclFv" +05/16/2018,Musicians,@ShawnMendes,Thank youuuuuu ❤️❤️❤️ https://t.co/MTsBWMC1PR +05/15/2018,Musicians,@ShawnMendes,"RT @ShawnAccess: North America! For fans that did not get into the FirstAccess or General Presale via Verified Fan, we’re releasing more ti…" +05/15/2018,Musicians,@ShawnMendes,Thank you @BBMAs! Vote with #IVoteShawnBBMAs or at https://t.co/yMF4IJLaMF +05/14/2018,Musicians,@ShawnMendes,Thursday night performing new music + doing a Q&A live from the John Anson Ford Theater in LA for @applemusic… https://t.co/XWnVoWSu5Z +05/13/2018,Musicians,@ShawnMendes,Love you guys forever! X https://t.co/q1X5soguB2 +05/13/2018,Musicians,@ShawnMendes,All North America General Fan presales for #ShawnMendesTheTour are happening now x https://t.co/qAZaGltX45 https://t.co/4xRNKZwow2 +05/13/2018,Musicians,@ShawnMendes,North America General Fan and Merch presales for #ShawnMendesTheTour start today at 10am & 12pm local time x https://t.co/qAZaGltX45 +05/12/2018,Musicians,@ShawnMendes,All North America FirstAccess presales for #ShawnMendesTheTour are happening now x at https://t.co/qAZaGltX45 https://t.co/L4ePS7znmz +05/11/2018,Musicians,@ShawnMendes,#InMyBloodAcoustic out now x https://t.co/e45V3Uovu9 https://t.co/bklV43GFJi +05/10/2018,Musicians,@ShawnMendes,Thank you @wonderlandmag @TommyHilfiger. Preorder the summer issue at https://t.co/r37Fyv1ejc x https://t.co/3RPQt1j8lG +05/10/2018,Musicians,@ShawnMendes,RT @youthkhalid: @ShawnMendes we love manny THE legend himself +05/10/2018,Musicians,@ShawnMendes,"Old mans bday today, always learning from you. Thank you for being a friend as much as a dad. Love you x" +05/10/2018,Musicians,@ShawnMendes,❤️❤️❤️❤️ +05/09/2018,Musicians,@ShawnMendes,RT @ShawnAccess: You can now buy all of the limited tour prints to access a special merch presale at https://t.co/giwl9RtBJ9 https://t.co/w… +05/09/2018,Musicians,@ShawnMendes,Shot this amazing ad with @O2music for #ShawnMendesTheTour UK. Get priority presale ticket info at… https://t.co/s47YKzlG6t +05/09/2018,Musicians,@ShawnMendes,Sign up for verified fan for the North America presales here x https://t.co/GRdPFzAUMT +05/08/2018,Musicians,@ShawnMendes,"Promise for any cities not yet announced, there will be many more dates added later x #ShawnMendesTheTour" +05/08/2018,Musicians,@ShawnMendes,Ticket presales for #ShawnMendesTheTour start this weekend. All info at https://t.co/qAZaGltX45 https://t.co/N2DeBvOiEk +05/08/2018,Musicians,@ShawnMendes,#ShawnMendesTheTour dates & ticket info all at https://t.co/qAZaGltX45 https://t.co/uXiaIvTYIm +05/08/2018,Musicians,@ShawnMendes,RT @ShawnAccess: #ShawnMendesTheTour announces today. Follow along for each date reveal on @ShawnMendes’ IG story & here on @shawnaccess. A… +05/08/2018,Musicians,@ShawnMendes,#ShawnMendesTheTour today x https://t.co/xdbFX7j2OY +05/06/2018,Musicians,@ShawnMendes,it’s crazy to me that you can physically feel your heart skip when you see or hear something you really care about +05/04/2018,Musicians,@ShawnMendes,#Youth hoodie + Album collection available now. Will be donating a portion of all Youth collection sales to… https://t.co/980dK0JyYy +05/04/2018,Musicians,@ShawnMendes,https://t.co/iQZ2NgWg4D +05/04/2018,Musicians,@ShawnMendes,All the love on Youth! Thank you SO much! So proud of it!! X +05/04/2018,Musicians,@ShawnMendes,"RT @zanelowe: #Youth “I said when we get together, we have to make a statement. We have to move. We have to write about what’s going on in…" +06/26/2018,Musicians,@BritneySpears,I think he knew it was coming 😏🙃🙃🤓🙄 https://t.co/ciqC7lDYBI +06/26/2018,Musicians,@BritneySpears,😴🧚‍♀️✨🌸 🎀 https://t.co/ZEWlkEZkW0 +06/25/2018,Musicians,@BritneySpears,🐠🐠🐠 https://t.co/CAq44sJYWh +06/19/2018,Musicians,@BritneySpears,"Happy, happy birthday to my beautiful niece, Maddie!! Can’t believe this sweet girl is 10 years old 💕 https://t.co/zNchaLjgeG" +06/17/2018,Musicians,@BritneySpears,Wishing my daddy a very happy #FathersDay today!!! I love you! ❤️ +06/12/2018,Musicians,@BritneySpears,Love > Hate 🌈 We will not forget those we lost 2 years ago in Orlando 💛 #OrlandoUnited https://t.co/aah5fCRrXp +06/11/2018,Musicians,@BritneySpears,Great trip to Miami! Thank you @TheSetai 🌞 #thankyouforthisgift https://t.co/y8FIXVp5hk +06/11/2018,Musicians,@BritneySpears,Having the best time with my other half ❤️ https://t.co/9z58FfI3Rn +06/10/2018,Musicians,@BritneySpears,"Sending all my love to everyone at #LAPride today!! And wishing a very happy Pride Month to the brave, strong, and… https://t.co/Mk7tDfXojO" +06/09/2018,Musicians,@BritneySpears,Look who I found in Miami 🍎😻 https://t.co/XvVE5z4xnq +06/07/2018,Musicians,@BritneySpears,Magic is everywhere https://t.co/7Sd81F2AJT +06/07/2018,Musicians,@BritneySpears,When you make your kids your famous ice cream sundae and forget to put their favorite thing in it... the banana...… https://t.co/Qw1YfHaI1H +06/06/2018,Musicians,@BritneySpears,Me and Pres having a chill day at our favorite spot in Miami! 🎨🍒🍇🍎🌸🌼☘️🍀🐠🐯🐭👙👗👡 https://t.co/TeMmTLnBwD +06/04/2018,Musicians,@BritneySpears,"Cheering on my home away from home, Las Vegas in the #StanleyCup Finals! Best of luck to the @GoldenKnights in Game… https://t.co/zkSMHJk4qy" +06/04/2018,Musicians,@BritneySpears,Let’s play 🏀 https://t.co/tabt1uCTTP +06/04/2018,Musicians,@BritneySpears,My first photo with Portrait Mode just before having sushi with friends last night!!!!! 🍎👛🍎👠🍀🍏⭐️🌸🐯 https://t.co/rmKPapkEd1 +06/02/2018,Musicians,@BritneySpears,👛😜😜👛 #FBF https://t.co/rymGXwzvzn +06/01/2018,Musicians,@BritneySpears,It’s been way too long since I’ve seen these boys! Had an amazing time on set 😜😜🍎🍎👠🍎 https://t.co/pTyYjWjP4p +06/01/2018,Musicians,@BritneySpears,"Don’t you just love Pretty Woman!! +🍀🍏🍀🍎👠🍎 https://t.co/LYc4JdBzLL" +05/30/2018,Musicians,@BritneySpears,🍏🍎🍏 https://t.co/TVh2P3h40I +05/29/2018,Musicians,@BritneySpears,Love when we go to our favorite spot on Sundays 💕🥞 The boys are bigger than me now!!!!! 😜 https://t.co/p2EGNVFZrj +05/29/2018,Musicians,@BritneySpears,"This is great! + +🎥: @aaroncmusic_ https://t.co/d7jUontjc6" +05/25/2018,Musicians,@BritneySpears,"Don’t you just love jokes +🙃🧝‍♀️😂 https://t.co/RY0dhejFZP" +05/16/2018,Musicians,@BritneySpears,Painting feels so therapeutic to me! Getting to do this with my boys on a beautiful day like this is such a blessin… https://t.co/GWeVaECtyF +05/15/2018,Musicians,@BritneySpears,Love watching these boys succeed when they put their minds to something... even if they cheat on their pull ups 😉🙈🙊 https://t.co/3Z6HrRQ776 +05/15/2018,Musicians,@BritneySpears,Nothing makes me happier as a mom than watching these boys grow and smile and laugh!! They are my world and I love… https://t.co/CH6LRF9YWQ +05/05/2018,Musicians,@BritneySpears,Perfect start to the weekend!! 🍳🥓🍽 https://t.co/VphyJ91gcn +05/05/2018,Musicians,@BritneySpears,https://t.co/jTX03JvhuY +05/04/2018,Musicians,@BritneySpears,"👒👒👒 #fbf +📷: Gilles Bensimon https://t.co/2XvfKnnD0c" +05/04/2018,Musicians,@BritneySpears,"I’m so grateful for the guidance my mother has given me throughout my life! My intuition, will to be stronger and l… https://t.co/U1csZfN6OA" +05/03/2018,Musicians,@BritneySpears,Stronger together 👯‍♀️🍏👯‍♀️ https://t.co/wtXt10SclD +04/30/2018,Musicians,@BritneySpears,💃🏼💃🏼💃🏼 https://t.co/SR82xbZVi8 +04/28/2018,Musicians,@BritneySpears,#FBF 👠👠👠 photo by Steven Klein https://t.co/sGz207mCEL +04/27/2018,Musicians,@BritneySpears,"🎩 #tbt +📷: @EllenVUnwerth https://t.co/UPsSl2wv42" +04/25/2018,Musicians,@BritneySpears,RT @COTA: Gimme more. Tickets on sale Friday at https://t.co/JafXlc8WRR https://t.co/QjfBBgldUN +04/24/2018,Musicians,@BritneySpears,love getting to watch my boys at the skate park!! https://t.co/7m1mVZG3qY +04/24/2018,Musicians,@BritneySpears,Switching up my workout routine in the gym as I get ready for the #PieceOfMe Tour!! 🎀 https://t.co/dqZJkHzsRs +04/24/2018,Musicians,@BritneySpears,Sending my love to the people of Toronto and all those affected ❤️ https://t.co/sJW1D7Mr3F +04/21/2018,Musicians,@BritneySpears,This video shoot was incredible!!! What dreams are made of... #Slave4U https://t.co/XIvSzazUwH +04/19/2018,Musicians,@BritneySpears,Happy birthday to my big brother Bryan!!! He means the world to me and I hope he has the best b-day ever!!!! https://t.co/5SRfYHJckO +04/19/2018,Musicians,@BritneySpears,I think it's impossible for me to go a day without dancing 😜🌹 https://t.co/TQnNSZWdIU +04/18/2018,Musicians,@BritneySpears,RT @TheBritneyArmy: Don't miss @britneyspears on the @GLAAD Awards airing tonight on @logotv at 8/7c!! #GLAADawards https://t.co/9FnnSBQG0s +04/18/2018,Musicians,@BritneySpears,🍎✏️🍎✏️🍎 https://t.co/gBVJhtw7oO +04/17/2018,Musicians,@BritneySpears,🌸 https://t.co/DxjtIUjMpW +04/16/2018,Musicians,@BritneySpears,Channeling my inner Aretha Franklin - the woman has got so much soul!!!! ⭐️🍎⭐️ https://t.co/peq2KiOV0M +04/14/2018,Musicians,@BritneySpears,https://t.co/YaaKwCz6pT +04/14/2018,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/vHKsU8JVDl +04/13/2018,Musicians,@BritneySpears,some days you just got to dance! https://t.co/Lhc3s9C894 +04/13/2018,Musicians,@BritneySpears,What an incredibly moving evening celebrating love and acceptance at the #GLAADawards! I'm so proud to be an ally o… https://t.co/rhRa0fXRZx +04/13/2018,Musicians,@BritneySpears,✨@glaad awards tonight ✨ #GLAADawards https://t.co/dO5CBc1Txx +04/12/2018,Musicians,@BritneySpears,I could not be more excited to welcome baby Ivey to this world. Congrats to @jamielynnspears and the whole family -… https://t.co/ZNmLFxgnTS +04/05/2018,Musicians,@BritneySpears,"RT @glaad: Enter to win a chance to go to the #GLAADawards and see @britneyspears, @iamwandasykes, Jim Parsons and MORE! https://t.co/AufjU…" +04/04/2018,Musicians,@BritneySpears,Wishing my sister @jamielynnspears a very happy 27th birthday today!! 🎀💕 +03/31/2018,Musicians,@BritneySpears,Heaven gained a beautiful angel this week with the passing of Christopher Metsker. His strength and fighting spirit… https://t.co/LsAGbiBLGK +03/30/2018,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/73RuOK6HXc +03/26/2018,Musicians,@BritneySpears,Just want to wish happy birthday to my friend @iamstevent!!! You're a true rock star and inspiration!! Love you! 💕 #HappyBDayStevenTyler +03/24/2018,Musicians,@BritneySpears,"⭐️⭐️ +📷: Mark Seliger https://t.co/nRBkQC133x" +03/24/2018,Musicians,@BritneySpears,Found my white booty shorts 😉😉😉😉 https://t.co/CLcSChcVsm +03/23/2018,Musicians,@BritneySpears,🎀🌹🎀 https://t.co/wae4zvI3Zi +03/22/2018,Musicians,@BritneySpears,Support the #CleanWaterHere2018 campaign to help give children access to safe drinking water. Everyone deserves… https://t.co/k6zJei3qA5 +03/22/2018,Musicians,@BritneySpears,🌹 #tbt https://t.co/mxC3G0Usin +03/20/2018,Musicians,@BritneySpears,"La Collection Memento No2 from @KENZO +📷: @peterlindbergh #kenzolovesbritney #collectionmemento2 https://t.co/gC8C6WXAcB" +03/20/2018,Musicians,@BritneySpears,So excited to announce my new campaign for @KENZO’s La Collection Memento No2 shot by @peterlindbergh!!!… https://t.co/tMBr1tPvni +03/19/2018,Musicians,@BritneySpears,"☕️☕️☕️ +🎨: Make and Tell https://t.co/AVU0YEcdr3" +03/16/2018,Musicians,@BritneySpears,"Feeling so inspired by #SHINE, a song written and performed by students from Stoneman Douglas who survived the trag… https://t.co/NOW6SBCVsA" +03/16/2018,Musicians,@BritneySpears,"🎀🌹🎀 #tbt +📷: Mark Liddell https://t.co/tKLj6gMff7" +03/15/2018,Musicians,@BritneySpears,👒👯‍♀️☘️🕊☘️👯‍♀️👒 https://t.co/440RgEvlQh +03/15/2018,Musicians,@BritneySpears,🎀🎀🎀 https://t.co/Xv6H2DOKjz +03/09/2018,Musicians,@BritneySpears,"just give me a kiss, like this #tbt https://t.co/q4PaPhm2X3" +03/09/2018,Musicians,@BritneySpears,Talk this way https://t.co/CvB5DSB4t9 +03/08/2018,Musicians,@BritneySpears,Walk this way https://t.co/epO9LdGL3S +03/08/2018,Musicians,@BritneySpears,"💕#InternationalWomensDay +🎨: Kasi Turpin https://t.co/E47utGRwQt" +03/05/2018,Musicians,@BritneySpears,Sometimes you’re just trying to get out the door and go to your favorite restaurant when your girlfriend pulls out… https://t.co/7Fwc9JOKMQ +03/03/2018,Musicians,@BritneySpears,Filmed this with the boys and just noticed the guy on the TV says “Dream Within A Dream” at the beginning... that p… https://t.co/WvmG8lP6Ao +03/03/2018,Musicians,@BritneySpears,"Just a little game of tennis with my man!!! Not professional, but it’s really fun!!!!!!!!!!😉😉😉😉😉 https://t.co/JJjrrfmgcx" +03/03/2018,Musicians,@BritneySpears,🕊🕊🕊 https://t.co/bxi51ryazi +03/03/2018,Musicians,@BritneySpears,Going out tonight!! Found my red dress!!!!! 👠👠👠 https://t.co/DMGgKtP2Gv +02/27/2018,Musicians,@BritneySpears,Who doesn’t love Sinatra?? https://t.co/kZBXPzEA67 +02/27/2018,Musicians,@BritneySpears,…and this is the after! Thank you to all the people behind the scenes who help us look and feel beautiful - you are… https://t.co/G5ckccZtTw +02/27/2018,Musicians,@BritneySpears,Had to get a quick shot wearing my favorite dress right before I went into hair and makeup to get ready for the… https://t.co/ygWftHlYmB +02/26/2018,Musicians,@BritneySpears,Went hiking on one of my favorite trails and I looked up and saw this glow and it warmed my heart!!! 💖 https://t.co/HizD6bCvCv +02/23/2018,Musicians,@BritneySpears,Quite the goal by @jocelyneUSA17!! Congrats to the women’s @usahockey team on bringing home the #Gold!! #Olympics +02/17/2018,Musicians,@BritneySpears,"So proud of #TeamUSA!! Hey @guskenworthy, gimme, gimme more on the slopes today!! #ItsGusBitch 👍😉⛷" +02/17/2018,Musicians,@BritneySpears,I posted my leap over a year ago and had to see if I could go higher... well... I did!!! But I really should take a… https://t.co/yu0aUxzEWs +02/16/2018,Musicians,@BritneySpears,Who doesn't love to twirl all day?? 😉😉😉 https://t.co/z7gpLUb9it +02/16/2018,Musicians,@BritneySpears,"Hey @Adaripp.... I just wanted let you know that I am a fan, I am not in denial, and that you are THE MOST FUN!! Ke… https://t.co/0JrATIxdrO" +02/15/2018,Musicians,@BritneySpears,Just heard the tragic news about Florida. My heart breaks for the students of Marjory Stoneman Douglas High School.… https://t.co/0fHsqfWGky +02/14/2018,Musicians,@BritneySpears,Don't underestimate the power of batwoman!!! #happyvalentinesday ❤️❤️❤️ https://t.co/DXVwUDGd1B +02/13/2018,Musicians,@BritneySpears,Honored to be receiving the Vanguard Award at the @GLAAD Media Awards this year! The LGBTQ community means the abso… https://t.co/MkgvjHXLrq +02/09/2018,Musicians,@BritneySpears,Excited to announce that the talented @pitbull will be joining me on select #PieceOfMe shows this summer!! AND we’v… https://t.co/Bjrv9DpUl9 +02/09/2018,Musicians,@BritneySpears,Great day behind the lens!!!! https://t.co/1ATJ784pWD +02/08/2018,Musicians,@BritneySpears,Gearing up for summer!!! ⭐️🎀⭐️ https://t.co/91pzIh1phC +02/07/2018,Musicians,@BritneySpears,Wow! Thank you #HollywoodBeautyAwards!!! So honored to have Fantasy In Bloom named #FragranceoftheYear 💖 https://t.co/AMm9eW0auV +02/06/2018,Musicians,@BritneySpears,📷: Thierry Le Gouès https://t.co/2kxtfz5DNQ +02/05/2018,Musicians,@BritneySpears,I’ve been with this man for over a year... everyday he inspires me to be a better person and that makes me feel lik… https://t.co/nf2J5g2Ksf +02/01/2018,Musicians,@BritneySpears,Some things are just timeless 😉 Thank you for letting me be apart of your story @Pepsi! Watch the #SBLII commercial… https://t.co/1F7KSBx8CI +01/31/2018,Musicians,@BritneySpears,"YES!!! That is right @LouMTaylor!! You do step up every single day, and so do so many other ladies in the music bus… https://t.co/lq4tbQi6Mh" +01/30/2018,Musicians,@BritneySpears,This was from our lil trip to see Aladdin. What a great show!!!! https://t.co/1qFJwWpXpD +01/30/2018,Musicians,@BritneySpears,🎀 https://t.co/g3JRl9jEyA +01/30/2018,Musicians,@BritneySpears,🎀🍎🎀 https://t.co/zRpoOCJho9 +01/29/2018,Musicians,@BritneySpears,"I love cardio and sweating, but over doing anything just isn’t good. It’s been nice working out a little less these… https://t.co/iRyBEVmTEB" +01/27/2018,Musicians,@BritneySpears,Tickets and VIP packages are on sale now for all of the #PieceOfMe dates! 💖 https://t.co/SBF4WxXT31 https://t.co/qW3hTpGENk +01/26/2018,Musicians,@BritneySpears,Can’t wait for this summer!!!! Tickets for select #PieceOfMe dates will go on sale on Friday! All the details are a… https://t.co/lCntLyhmjN +01/25/2018,Musicians,@BritneySpears,RT @LucasMacha: Finally Britney is bringing her tour to Europe! 🔥👍🏻 Join the @britneyspears Tour Club so you’ll have chance to buy presale… +01/25/2018,Musicians,@BritneySpears,Awww thank you!!! See you this summer ❤️ https://t.co/y5RXDICW7X +01/25/2018,Musicians,@BritneySpears,@JericaSwag see you in the big apple!! 🍎🍎🍎✨💜 +01/25/2018,Musicians,@BritneySpears,RT @IfUSeekDrew: just joined the @britneyspears Tour Club so that i can score fan presale tickets for #PieceOfMe bright and early tomorrow… +01/25/2018,Musicians,@BritneySpears,UK + Europe... in case you missed this while you were sleeping❤️✨ https://t.co/EXaohqPzMo +01/24/2018,Musicians,@BritneySpears,Can’t wait to get back on the road this summer #PieceOfMe 🍏🍏🍏 https://t.co/fzcfD7z5Vp +01/23/2018,Musicians,@BritneySpears,"I'm so excited to announce that we're bringing the #PieceOfMe tour to select cities in North America, Europe and th… https://t.co/GP2aEctF0n" +01/18/2018,Musicians,@BritneySpears,🌊🌊🌊 #tbt https://t.co/wCppFRkDnO +01/18/2018,Musicians,@BritneySpears,My son is fantastic! 🎉🎉 https://t.co/6V7a61X8PF +01/15/2018,Musicians,@BritneySpears,Proud mommy moment! https://t.co/KeRYfwAnWv +01/14/2018,Musicians,@BritneySpears,Seriously though... what more could you ask for? 🔥👒😜 Nachos all the way!! https://t.co/EmUOf51FBl +01/11/2018,Musicians,@BritneySpears,🤓👠📚 https://t.co/kDXpNqtq8f +01/10/2018,Musicians,@BritneySpears,🐠🦋🐠 So much fun at this beautiful place https://t.co/9rKsn8Tp7u +01/07/2018,Musicians,@BritneySpears,👒🎀 https://t.co/LZoWB1mGmP +01/07/2018,Musicians,@BritneySpears,🏖🏖 https://t.co/aSEh0URVfA +01/06/2018,Musicians,@BritneySpears,👒🏖👒 Just a sprinkle of paradise!!!!!! https://t.co/ZEUPRDixJ8 +01/03/2018,Musicians,@BritneySpears,Me and my boys enjoying the warm weather!!! 🕶🌴🌊⭐️ https://t.co/3ElQb1lg5R +01/03/2018,Musicians,@BritneySpears,"Thank you, Vegas ❤️ +📷: Randee St. Nicholas https://t.co/MAAgeqN9V1" +01/01/2018,Musicians,@BritneySpears,2018 shenanigans with Sam 🤷‍♀️👒🤷‍♀️ https://t.co/1zGePhJoyM +01/01/2018,Musicians,@BritneySpears,"It’s almost showtime! I just want to say thank you to the #PieceOfMe cast and crew, the city of Las Vegas, and all… https://t.co/lKpeQgL5zT" +12/31/2017,Musicians,@BritneySpears,"Tonight is the night! Saying goodbye both to Vegas and 2017! It’s bittersweet, but I’m looking forward to an amazin… https://t.co/rZAUkaHGsc" +12/30/2017,Musicians,@BritneySpears,"RT @TheBritneyArmy: Get ready for @NYRE with the official @spotify playlist featuring @britneyspears!!! 🎉 #BRITNEYxRockinEve +https://t.co/O…" +12/29/2017,Musicians,@BritneySpears,Enjoying the holiday break! 👟🍎 https://t.co/iht7brTk9f +12/24/2017,Musicians,@BritneySpears,Maddie is going to be the best big sister!!! So happy for you @jamielynnspears!!!! Love you all sooo much!!! 💕 https://t.co/aTQnCrmh6V +12/24/2017,Musicians,@BritneySpears,Awwww your family is so adorable!!! Merry Christmas to you all ❤️🎄 https://t.co/Y83hpTUhBH +12/23/2017,Musicians,@BritneySpears,We are all Dreamers ✨ Tell Congress to pass the #DreamAct https://t.co/VRw2xORG97 https://t.co/TjAbL8UiYi +12/22/2017,Musicians,@BritneySpears,Denmark!! See you at @Smukfest on August 8th!! ✨ #SMUK18 https://t.co/MI3yu6DKq7 +12/21/2017,Musicians,@BritneySpears,🍎🍎🍎 https://t.co/txYPEpxIJK +12/21/2017,Musicians,@BritneySpears,Going to be ending 2017 with the last #PieceOfMe show ever and a special performance on @NYRE!! Tune in to ABC on 1… https://t.co/ouavykB0dD +12/19/2017,Musicians,@BritneySpears,https://t.co/7dmZe9a0QA +12/11/2017,Musicians,@BritneySpears,Today is the last day to enter to win a trip for 2 to Las Vegas and join me for the final #PieceOfMe show! Don’t mi… https://t.co/lDIonrOsdT +12/06/2017,Musicians,@BritneySpears,👠 https://t.co/h0XVqESSPI +12/05/2017,Musicians,@BritneySpears,👒👠👒 https://t.co/1V1s3Wz3Pf +12/03/2017,Musicians,@BritneySpears,"Thanks again for all the birthday love yesterday!!! For those who donated to the LSBA, show me a screenshot of your… https://t.co/7GivtUXnu2" +12/03/2017,Musicians,@BritneySpears,@TheEllenShow You always crack me up!!! Thanks Ellen!! ❤️ +12/03/2017,Musicians,@BritneySpears,@MileyCyrus Thanks Miley ❤️❤️❤️ +12/03/2017,Musicians,@BritneySpears,@charli_xcx Thanks girl!!!!! ✨ +12/03/2017,Musicians,@BritneySpears,@jamielynnspears Thanks sis!!! Love you 💕🎀 +12/02/2017,Musicians,@BritneySpears,I decided my birthday wish this year will be to make sure we help the Louisiana School Boards Association as much a… https://t.co/YKWTw71Qk2 +12/02/2017,Musicians,@BritneySpears,Couldn’t ask for a better way to kick off my birthday ❤️🎂 https://t.co/CnEXXw8lYB +12/02/2017,Musicians,@BritneySpears,❤️🌎 #WorldAIDSDay https://t.co/2xa2rLuwJN +12/01/2017,Musicians,@BritneySpears,🎄🎁👠🎄 https://t.co/d3Q5joFPGK +11/30/2017,Musicians,@BritneySpears,🎄🌹 https://t.co/2gWD2RDZ5V +11/28/2017,Musicians,@BritneySpears,Don’t miss your chance to hang out with me at the final #PieceofMe show in Vegas!! Donate to the Louisiana School B… https://t.co/jzUuR8HgA4 +11/23/2017,Musicians,@BritneySpears,My favorite boys at my house for Thanksgiving!!!! 🦃🦃 https://t.co/qwMDKEjFST +11/23/2017,Musicians,@BritneySpears,Happy Thanksgiving!!!! 🦃 https://t.co/h0RCDpve0i +11/23/2017,Musicians,@BritneySpears,Don’t you just love getting ready for the holidays?? I think I need another pumpkin spice latte 😜 ☕️ https://t.co/N6H687PBKA +11/22/2017,Musicians,@BritneySpears,Found this clip from a photoshoot with the kiddos from a few years ago... it got a little silly 🎀🎀🎀🍎🍎🍎 https://t.co/vwPdR55vaN +11/22/2017,Musicians,@BritneySpears,Can’t believe it’s been a year since the #SlumberParty video was released! This was my favorite scene and outfit!! https://t.co/7YzWb2IZ5l +11/21/2017,Musicians,@BritneySpears,Went for a hike the other day and this was my view... so beautiful 👒👒 https://t.co/XfaUhyimxQ +11/16/2017,Musicians,@BritneySpears,Always have a ball with this crew... so much fun!! #TBT 🎉🌺🎀🌸🤓😉 https://t.co/2zydCeHzH4 +11/15/2017,Musicians,@BritneySpears,Support the LSBA for the chance to join me in Vegas on New Year's for the FINAL #PieceofMe show! Donate today for y… https://t.co/t4avdUnvoo +11/14/2017,Musicians,@BritneySpears,🌺🍎🌺🍎 https://t.co/IO1qfB8yjJ +11/13/2017,Musicians,@BritneySpears,😳😳😳😳 https://t.co/y5cwLGGOyi +11/13/2017,Musicians,@BritneySpears,"Wow!!! So honored to be named Best Resident Performer, Best Production Show, Best Bachelorette Party and Best Bache… https://t.co/nXngqInGPh" +11/10/2017,Musicians,@BritneySpears,Secret project 😜🍎🌺🍎 https://t.co/tMKdlpGfD8 +11/09/2017,Musicians,@BritneySpears,We’re getting creative at our house lately... 🌺🌸🌷🌸🌺🌸🌷 https://t.co/Ju853q1cCb +11/09/2017,Musicians,@BritneySpears,"Tammy Richardson, one of the amazing volunteers from the @NVCCF is nominated for the @NASCAR_FDN #BJFHAward! Let's… https://t.co/FMJ9FZgXVx" +11/06/2017,Musicians,@BritneySpears,I’m gonna marry chocolate 👠 https://t.co/H8zJlCQDNK +11/06/2017,Musicians,@BritneySpears,Support the LSBA for your chance to win a trip to hangout with me in Vegas and see the final #PieceOfMe show on NYE… https://t.co/bg2DgeEzpo +11/05/2017,Musicians,@BritneySpears,My heart breaks over the news coming out of Texas 💔 My prayers are with the Sutherland Springs community 🙏 +11/05/2017,Musicians,@BritneySpears,Donny always makes me smile and happy 💗🍎💗 #PieceOfMe https://t.co/0DgnYR5P6L +11/05/2017,Musicians,@BritneySpears,Honored to be part of the grand opening of the new @NVCCF campus today!! This amazing facility is going to help so… https://t.co/aTng5eKefU +11/03/2017,Musicians,@BritneySpears,Always love getting to spend an afternoon at one of my favorite spots in Los Angeles 💓💓👠👠🎀 #tbt https://t.co/ZvkXemDDlX +11/02/2017,Musicians,@BritneySpears,Wow!! Look at these gorgeous heels!! Thank you so much @JLo!!!! 💋👠💎#GiuseppexJennifer https://t.co/uG8DGAQMu4 +11/02/2017,Musicians,@BritneySpears,Vegas always looks so pretty from above! Happy to be back! See you guys tonight!!!! https://t.co/QwMGi7TLxE +11/01/2017,Musicians,@BritneySpears,Sending my love to NYC and those affected by yesterday's senseless tragedy ❤️ +10/31/2017,Musicians,@BritneySpears,"So in love with this puppy 🐶 +🎃🎃👻🎃🎃 #HappyHalloween https://t.co/eHXfmtiwlb" +10/31/2017,Musicians,@BritneySpears,LOVE IS BLIND. https://t.co/BlPHzN5SQF +10/31/2017,Musicians,@BritneySpears,It’s almost Halloween... wonder what clever neighborhood scares there will be.. 😜😜😜😜😜😜😜😜 Trick or treat!! https://t.co/lQsK0ceTh8 +10/30/2017,Musicians,@BritneySpears,🖤💛🖤💗 #Blackout10 https://t.co/5rBjdtE6pZ +10/25/2017,Musicians,@BritneySpears,Wanted some candy 🍭🍡🍬🍭🍬🍡🎂but I ate an acorn instead 🍩🦋🦄👙💋😜🤓 https://t.co/0MCHx3u1jW +10/25/2017,Musicians,@BritneySpears,These hoodies are a huge hit at our house!! 🍎🎀🍎🎀🍎 https://t.co/DI0kEtPhqr +10/20/2017,Musicians,@BritneySpears,"I did this shoot two years ago with my friend @glennnutley... I remember being on my knees, making sure my sons’ ha… https://t.co/cKKlyBKFjI" +10/20/2017,Musicians,@BritneySpears,👯🍎👯 https://t.co/P97a8gO7Vd +10/20/2017,Musicians,@BritneySpears,Let's stand together against bullying and show our support the LGBTQ youth for #SpiritDay! Go purple! 💜  … https://t.co/McyVhaZjTH +10/19/2017,Musicians,@BritneySpears,Back on stage tonight! See ya soon!!!! 😜🤓🍎🎉 https://t.co/zN6UJiqOjf +10/18/2017,Musicians,@BritneySpears,🍎🍎 https://t.co/dNir4yE5YF +10/16/2017,Musicians,@BritneySpears,🎹🎻🌹C L A S S I C   M O O D 🌹🎻🎹 with Sam #mylove https://t.co/abmZyutp1K +10/16/2017,Musicians,@BritneySpears,"RT @glaad: On October 19th, join millions and go purple to take a stand against bullying for #SpiritDay. 💜 + +Are you in? Take the pledge no…" +10/13/2017,Musicians,@BritneySpears,Sometimes you just gotta play!!!!!! 🤓😜💋💅🏻👩‍🎨🎨👯👗👛👒👠🦄🦋🐠🌹💥💥 https://t.co/T3ne9oCZyc +10/13/2017,Musicians,@BritneySpears,https://t.co/943cwqOfWw +10/13/2017,Musicians,@BritneySpears,More from last night ✨#PieceOfMe https://t.co/trOXzIBSVm +10/12/2017,Musicians,@BritneySpears,"Vegas, we felt your love and your strength last night ❤️ #VegasStrong https://t.co/r2Sao8WmkO" +10/10/2017,Musicians,@BritneySpears,Dinner with the boys!!! 🍔🍔🍔 https://t.co/MEVaOf7bP9 +10/09/2017,Musicians,@BritneySpears,❤️🐶🐻 https://t.co/uP1VvRLloL +10/06/2017,Musicians,@BritneySpears,We’ll get through this together ❤️ See you Wednesday #VegasStrong https://t.co/tKqeFMfTiy +10/05/2017,Musicians,@BritneySpears,❤️ #VegasStrong https://t.co/3FkeMRAzj6 +10/02/2017,Musicians,@BritneySpears,Completely heartbroken over the news this morning. Keeping the victims of last night's tragedy in Las Vegas in my p… https://t.co/T3mbcNPmie +09/29/2017,Musicians,@BritneySpears,"When the crew came to town, we dressed alike, blabbed all day and danced at night to ""Tootsee Roll""!!!!! Here's to… https://t.co/uFgZW9jHdF" +09/26/2017,Musicians,@BritneySpears,👠👠👠👠👠💄💄💄💄💄💄 https://t.co/jV3oZprsLH +09/26/2017,Musicians,@BritneySpears,👙👠👗👯💃🏼💅🏻👅 https://t.co/uxGCcfdGvF +09/25/2017,Musicians,@BritneySpears,So... I totally have a girl crush on @EWagmeister! She seems so sweet and I think she is absolutely lovely 🌟 +09/22/2017,Musicians,@BritneySpears,Keeping the people of Puerto Rico and those affected by #HurricaneMaria in my thoughts ❤️🇵🇷 +09/20/2017,Musicians,@BritneySpears,"You never know who you’re going to meet at dinner parties!! 🎉 Great night! So much fun, thank you Cade! 🍃🍃 https://t.co/jFR4pzwmwZ" +09/19/2017,Musicians,@BritneySpears,Sending my love to Mexico ❤️🇲🇽 #PrayForMexico #FuerzaMexico https://t.co/m0oYhRj4pp +09/19/2017,Musicians,@BritneySpears,Fun day yesterday at gymnastics! So excited to hear the Olympics are coming to LA in 2028... already getting in the… https://t.co/23IiVeHfFS +06/29/2018,Musicians,@LukeBryanOnline,Thank you Raleigh #WhatMakesYouCountryTour https://t.co/k7ODtksJm7 +06/28/2018,Musicians,@LukeBryanOnline,Want to meet Luke backstage? Support the amazing work of St. Jude and enter to win: https://t.co/30rLjEY3II https://t.co/4TrXrNFDk0 +06/28/2018,Musicians,@LukeBryanOnline,Can't wait to see y'all on the #WhatMakesYouCountryTour this weekend https://t.co/bXpeEFlHAJ +06/28/2018,Musicians,@LukeBryanOnline,Can't wait to get back out on the farm. Tickets are on sale now for #FarmTour2018 https://t.co/RkUNIerfYw https://t.co/HJFjufysYM +06/27/2018,Musicians,@LukeBryanOnline,"RT @cb30music: When Brody forgets what today is 🤦🏻‍♂️ #NationalSunglassesDay +Listen to @LukeBryanOnline’s 🕶 playlist now to hear #LikeIts…" +06/27/2018,Musicians,@LukeBryanOnline,"RT @UMGNashville: We're celebrating #NationalSunglassesDay at the UMG Nashville office with @LukeBryanOnline! 😎☀️ + +Stream his custom playli…" +06/27/2018,Musicians,@LukeBryanOnline,"RT @carlypearce: Not only am I on @LukeBryanOnline's WHAT MAKES YOU COUNTRY tour this summer, but I am also on his #NationalSunglassesDay p…" +06/27/2018,Musicians,@LukeBryanOnline,"Hey Nashville, check out my Instagram Story to find out where we’ve hid some #SunriseSunburnSunset sunglasses. Post… https://t.co/ugMZUlkavB" +06/27/2018,Musicians,@LukeBryanOnline,We got your #NationalSunglassesDay playlist covered. Put on your shades and hit play. https://t.co/YhGXkJvtFD https://t.co/vKA2Xcw1gr +06/27/2018,Musicians,@LukeBryanOnline,"It’s #NationalSunglassesDay & we’ve got somethin’ for ya a little later on. Stay tuned, Nashville. https://t.co/BStBsIVLW4" +06/26/2018,Musicians,@LukeBryanOnline,"RT @mossycreekstore: #Repost @LukeBryanOnline (get_repost) +・・・ +Just happy. +@LukeBryanOnline with his first bass fishing his custom abelreel…" +06/22/2018,Musicians,@LukeBryanOnline,Want to win tickets to the What Makes You Country Tour? Enter Here: https://t.co/mFAYJeQN6A +06/22/2018,Musicians,@LukeBryanOnline,Good to be back in West Palm #WhatMakesYouCountryTour https://t.co/p3xh2bj1KP +06/21/2018,Musicians,@LukeBryanOnline,Can’t believe the #CrashMyParty video came out 5 years ago today. Always been one of my favorites. #TBT https://t.co/eyWBTuydVq +06/20/2018,Musicians,@LukeBryanOnline,Summertime is just fun and I wanted to showcase some people in my world doing just that. #SunriseSunburnSunset https://t.co/QEL1VkAQXH +06/19/2018,Musicians,@LukeBryanOnline,TOMORROW #SunriseSunburnSunset https://t.co/BYr2ovxJXm +06/19/2018,Musicians,@LukeBryanOnline,Want to win the ultimate Luke Bryan experience at Wrigley Field? Get Luke’s App to enter for your chance to win.… https://t.co/jKMJZHzu8P +06/18/2018,Musicians,@LukeBryanOnline,Excited to see where you go @MaddiePoppe https://t.co/tEj8jfMRgh +06/16/2018,Musicians,@LukeBryanOnline,Check out Luke’s gallery of Musical Notes to share with your dad on this #FathersDayWeekend. https://t.co/e95u09rsYN +06/16/2018,Musicians,@LukeBryanOnline,Everybody knew that was our summer. #SunriseSunburnSunset https://t.co/dO4UGbl2gJ +06/16/2018,Musicians,@LukeBryanOnline,RT @CMThot20: We're making waves at the @CCMFLive this weekend with your favorite stars @LukeBryanOnline @OldDominion @Michaelraymusic @Dea… +06/15/2018,Musicians,@LukeBryanOnline,Looking forward to playing the @iHeartRadio Music Festival in September. Tickets are on sale now:… https://t.co/FwWby73FfO +06/15/2018,Musicians,@LukeBryanOnline,"Thank you Columbia, MD #WhatMakesYouCountryTour https://t.co/Mlfo4yaOTr" +06/14/2018,Musicians,@LukeBryanOnline,We always love the #CMTawards. Thanks for having us. #tbt https://t.co/eV75fDEnsf +06/14/2018,Musicians,@LukeBryanOnline,Want to hang with Luke backstage in Lake Tahoe? Support the amazing work of St. Jude Children’s Research Hospital b… https://t.co/lROFRbTmXS +06/12/2018,Musicians,@LukeBryanOnline,Y’all ready for #FarmTour2018? Tickets are on sale now: https://t.co/RkUNIerfYw https://t.co/9vvLRgsWov +06/12/2018,Musicians,@LukeBryanOnline,Enjoyed surprising fans during #CMAFest with help from @Chevrolet. #ChevyCMA #Sponsored https://t.co/uQig7SREXF +06/12/2018,Musicians,@LukeBryanOnline,RT @TasteOfCountry: There's a lot of reasons why @LukeBryanOnline is crushing it. You may not have thought of this one 🤔 https://t.co/A3Ej5… +06/11/2018,Musicians,@LukeBryanOnline,What a great week at #CMAFest. #itstartswithME @ShearerPhoto @GettyImages https://t.co/MZg4kGWiVz +06/10/2018,Musicians,@LukeBryanOnline,Let’s close this thing out #CMAfest! https://t.co/WKVJAC4AV8 +06/10/2018,Musicians,@LukeBryanOnline,Don’t forget to tune in this morning on @cbssunday to get a BTS look at my @musiciansoncall visit. #MOConCBS +06/09/2018,Musicians,@LukeBryanOnline,Thanks for such an amazing day yesterday. Couldn’t do this with you. Love y’all. https://t.co/Nk7yh1Wbat +06/09/2018,Musicians,@LukeBryanOnline,Tune in to @CBSSunday 6/10 and go behind the scenes on my @musiciansoncall visit. What an honor to deliver the heal… https://t.co/btRc4MtrG4 +06/08/2018,Musicians,@LukeBryanOnline,"RT @dariusrucker: Had the best time stirring up a little trouble with my brothers @Jason_Aldean, @LukeBryanOnline and @CharlesKelleyLA! Y’a…" +06/07/2018,Musicians,@LukeBryanOnline,I want to meet one of y’all in Tahoe! Win tix to the show and meet me backstage—all by supporting St. Jude. ENTER:… https://t.co/txCWZYJbGM +06/07/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Warm up those vocal chords! 🎤🎶 Think you could be #TheNextIdol? Auditions are starting soon! 🚌 Visit https://t.co/2ruYWen… +06/07/2018,Musicians,@LukeBryanOnline,RT @TomCrean: The greatest orientation verse. EVER!! Our @universityofga student orientation group are not only great students but TALENTED… +06/06/2018,Musicians,@LukeBryanOnline,I’m taking over @Esquire’s IG Story tonight for the #CMTAwards. Follow along. https://t.co/dGetHWXpTI +06/06/2018,Musicians,@LukeBryanOnline,Luke’s new single #SunriseSunburnSunset is on @AppleMusic. Listen here: https://t.co/xc4MgBDcHs https://t.co/fvlZZsmuxx +06/05/2018,Musicians,@LukeBryanOnline,Thank you @Billboard for sharing my story and taking the time to get to know me. Appreciate the support and making… https://t.co/jPMghCwEkX +06/05/2018,Musicians,@LukeBryanOnline,"RT @extratv: Exclusive! We're with @lukebryanonline on his #whatmakesyoucountrytour, dishing on his kids, the #CMTawards & more! https://t.…" +06/04/2018,Musicians,@LukeBryanOnline,Excited to have #SunriseSunburnSunset as my next single. https://t.co/oysyFtvSHD +06/04/2018,Musicians,@LukeBryanOnline,"RT @TasteOfCountry: Massive, but somehow intimate 🤔 @LukeBryanOnline broke some personal records Saturday night! https://t.co/PGGcWzSqOQ" +06/03/2018,Musicians,@LukeBryanOnline,Shout out to Verizon Up for hooking fans up with stageside tickets tonight at MetLife. #VZup #ad… https://t.co/6IEBE4Xt6y +06/02/2018,Musicians,@LukeBryanOnline,"Harvest Time VIP Experiences are back. Get early entry, VIP viewing and restrooms plus charging station access and… https://t.co/LxyIzDiRp7" +06/02/2018,Musicians,@LukeBryanOnline,@Forever_TeamTLB You were great. So fun +06/01/2018,Musicians,@LukeBryanOnline,Presale tickets for #FarmTour2018 are available today. Get em’ https://t.co/irQYI9X5ef +05/31/2018,Musicians,@LukeBryanOnline,.@BayerUS presents the 10TH YEAR of Farm Tour. Fan club presale starts tomorrow. Join the Nut House now for access:… https://t.co/XodrNRsErM +05/30/2018,Musicians,@LukeBryanOnline,Get your votes in for #LightItUp at the #CMTAwards at https://t.co/M6IPRWGYjV https://t.co/u1JQtMf1iL +05/29/2018,Musicians,@LukeBryanOnline,#SunriseSunburnSunset Repeat. https://t.co/cJeN2efjCP +05/26/2018,Musicians,@LukeBryanOnline,We’ve got your summertime playlist covered. Listen to the #SunriseSunburnSunset playlist on @Spotify… https://t.co/sQ5EVYBRQ7 +05/25/2018,Musicians,@LukeBryanOnline,Our store exclusive. Available at https://t.co/Y67SPQEa2i @shorethingcigar https://t.co/TBcgztWM79 +05/25/2018,Musicians,@LukeBryanOnline,RT @BoogSciambi: Hey @LukeBryanOnline fans!!! How bout a chance to bid on two tix to his show at Fenway Park AND meet him!!! Proceeds go to… +05/25/2018,Musicians,@LukeBryanOnline,Luke Bryan’s Farm Tour presented by @Bayer is back! Tickets go on sale soon. #FarmTour2018 #HeresToTheFarmer… https://t.co/bLk2SRNuR0 +05/24/2018,Musicians,@LukeBryanOnline,Stay tuned... https://t.co/2kiUtbVuR9 +05/23/2018,Musicians,@LukeBryanOnline,"#ICYMI: I performed my new single, “Sunrise, Sunburn, Sunset” Monday night on #AmericanIdol. Listen here:… https://t.co/GgUyJLUUPk" +05/23/2018,Musicians,@LukeBryanOnline,I’ll be performing at this year’s @CMT Awards on June 6. Be sure to tune in. https://t.co/N6ijrcvAbo +05/23/2018,Musicians,@LukeBryanOnline,Excited that the 2019 @NFL Draft is coming to Nashville. Check out the official announcement here:… https://t.co/LmssrENwZk +05/23/2018,Musicians,@LukeBryanOnline,Tickets are on sale now for @CrashMyPlaya #5YearFiesta. See y’all in Mexico. https://t.co/fcD2EtVsFX +05/22/2018,Musicians,@LukeBryanOnline,Definitely learned the definition of WIG this season...@calebleemusic @maddiepoppe y’all are great together https://t.co/ozJzNX1aXE +05/22/2018,Musicians,@LukeBryanOnline,Amazing. https://t.co/V3lZeoJP5y +05/22/2018,Musicians,@LukeBryanOnline,Papa @lionelrichie has lost all control #AmericanIdol https://t.co/WD3WcFKD6z +05/22/2018,Musicians,@LukeBryanOnline,That was fun @GabbyBarrett_ #AmericanIdol #SunriseSunburnSunset https://t.co/CPaGaIemIJ +05/22/2018,Musicians,@LukeBryanOnline,"Just performed my new single “Sunrise, Sunburn, Sunset” on the #AmericanIdol Finale. How’d we do? https://t.co/862R7fjy4H" +05/22/2018,Musicians,@LukeBryanOnline,@jimmykimmel @AmericanIdol @RyanSeacrest @katyperry @LionelRichie See you soon +05/22/2018,Musicians,@LukeBryanOnline,#Americanidol got us like... https://t.co/YRLXtRffVH +05/22/2018,Musicians,@LukeBryanOnline,RT @katyperry: It’s the ✨GRAND FINALE!✨😱 and my last show with uncle @LionelRichie and my cray brother @LukeBryanOnline this season 😭 Turn… +05/21/2018,Musicians,@LukeBryanOnline,Performing my new single on #AmericanIdol tonight. Which song do you think it'll be? Tune in at 9/8c to find out. G… https://t.co/rlIrnMfyXz +05/21/2018,Musicians,@LukeBryanOnline,That’s a wrap on night one of the #IdolFinale. Tune in tomorrow at 9/8c to find out who your new @AmericanIdol is.… https://t.co/zgI4xwlClH +05/21/2018,Musicians,@LukeBryanOnline,I mean it is the #AmericanIdolFinale. https://t.co/IdSQa8Oh0N +05/21/2018,Musicians,@LukeBryanOnline,"Round 3, let’s see what you got @GabbyBarrett_ @MaddiePoppe @calebleemusic #americanidol #IdolFinale" +05/21/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Oh hayyyy night 1 @AmericanIdol finale! 🎉 @LukeBryanOnline @katyperry #americanidol https://t.co/sbHgzcAFlF +05/21/2018,Musicians,@LukeBryanOnline,"Fake it till you make it, when you make it, shake and bake it. Right @katyperry? #AmericanIdol https://t.co/9G62kqEkiD" +05/21/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: .@MaddiePoppe is going, going for the crown with a performance like that! Download her song here: https://t.co/iC7RUGnuH9…" +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Will @GabbyBarrett_ RISE UP to win the crown with that performance? She just might after that song! Download it here: htt… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: .@calebleemusic is ready to win America’s ❤️(and vote) with songs like that! Download it here: https://t.co/i1KooTnXaJ… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Walking to the set like... @katyperry @lionelrichie and @lukebryanonline are ready for #IdolFinale! 💃🏻🙌 https://t.co/B4y… +05/21/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: It’s time! It’s time for the Top 3 to take the stage! Our 2 Night Finale Event starts right NOW! #AmericanIdol #IdolFinal… +05/20/2018,Musicians,@LukeBryanOnline,You never know what will happen during the two night finale of #AmericanIdol. Tune in LIVE tonight starting at 8pm… https://t.co/8498mjwzyl +05/20/2018,Musicians,@LukeBryanOnline,"Wow, this one means a lot. Thank you to the fans for showing up. #BBMAs https://t.co/eS5RwwAejp" +05/17/2018,Musicians,@LukeBryanOnline,We're down to the Top 3. Follow their journeys to the finale with your @AmericanIdol backstage pass! https://t.co/zjgBsN4dEF +05/17/2018,Musicians,@LukeBryanOnline,"Excited to let y'all know I'll be the #CMAfest Artist of the Day on Friday, 6/8 at Music City Center! Get your tick… https://t.co/EY8NjFurs0" +05/16/2018,Musicians,@LukeBryanOnline,Monday is the #AmericanIdol finale and I’ll be performing. I promise you don’t want to miss this one. Special guest… https://t.co/tqUWVYBSMN +05/15/2018,Musicians,@LukeBryanOnline,#ICYMI my appearance on @JimmyKimmelLive is airing again tonight. Tune in at 11:35p ET https://t.co/sCu8rzzBYf +05/15/2018,Musicians,@LukeBryanOnline,Keep saying it like you say it brother! Proud of you and love listening to your music. https://t.co/43RQc6GiwJ +05/15/2018,Musicians,@LukeBryanOnline,Excited for another year of #CrashMyPlaya. Grab your friends and come on down to Mexico with us. https://t.co/Qu0nhF069S +05/14/2018,Musicians,@LukeBryanOnline,Excited for y’all. Congrats on making the #IdolTop3. https://t.co/durSmPBBdG +05/14/2018,Musicians,@LukeBryanOnline,That feeling when your mom surprises you on #AmericanIdol. https://t.co/Wp6agPI1W2 +05/14/2018,Musicians,@LukeBryanOnline,Beautiful performance @MaddiePoppe. I’ve loved seeing you grow throughout this process #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,I just got a glimpse into your future @calebleemusic #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,"I don’t know what’s happening, @MichaelJWoodard. I do know that performance was amazing. #AmericanIdol" +05/14/2018,Musicians,@LukeBryanOnline,Perfect song choice. That is exactly who you are @CadeFoehner...#AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,@LionelRichie Not so sure about glitter but I’m always in for a good black jacket +05/14/2018,Musicians,@LukeBryanOnline,"I don’t want to speak after that, but I can tweet. @GabbyBarrett_ that was incredible. Great job girl. #AmericanIdol" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @MaddiePoppe, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below! 👇…" +05/14/2018,Musicians,@LukeBryanOnline,#AmericanIdol night with my 2 other favorite judges. https://t.co/A6nbBJf3wY +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @calebleemusic, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below!…" +05/14/2018,Musicians,@LukeBryanOnline,@AmericanIdol @LionelRichie you can see him from a mile away. Ha #AmericanIdol +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @CadeFoehner, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below! 👇…" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @GabbyBarrett_, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below!…" +05/14/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: To vote for @MichaelJWoodard, download the American Idol app, go to https://t.co/zflQXnsvHE, or text using the info below…" +05/13/2018,Musicians,@LukeBryanOnline,The #AmericanIdol Top 5 need your votes. Tune in from coast to coast at 5pm PST / 8pm EST and vote until the end of… https://t.co/THeCPRdmfT +05/13/2018,Musicians,@LukeBryanOnline,Happy Mother’s Day to the best mama in the D worlds. https://t.co/dWsetuchNw +05/12/2018,Musicians,@LukeBryanOnline,RT to vote #LukeBryan for #TheBestest at the #RDMA’s! @radiodisney https://t.co/OJj291NzLt +05/11/2018,Musicians,@LukeBryanOnline,Make sure to catch the #AmericanIdol Top 7 on tour this summer. Tickets on sale now https://t.co/7h6Ku3v1JK https://t.co/SusDkmVHIy +05/08/2018,Musicians,@LukeBryanOnline,“Light It Up” is nominated for Male video of the Year at the #CMTAwards. Vote now: https://t.co/M6IPRWGYjV https://t.co/PnyNLAKWwF +05/07/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Nothing compares to #Prince! 💜Beautiful night on @AmericanIdol paying tribute to his music... @SheilaEdrummer @katyperry… +05/07/2018,Musicians,@LukeBryanOnline,I’ll be on @JimmyKimmelLive tonight. Make sure to tune in. https://t.co/61uchMUQkK +05/07/2018,Musicians,@LukeBryanOnline,.@Jurnee and @hashtagcatie are 2 special humans. The ride is just beginning. Good luck on the next chapter girls.… https://t.co/sES2MABoDt +05/07/2018,Musicians,@LukeBryanOnline,Waiting on #AmericanIdol results like... https://t.co/kkxHGYcrEa +05/07/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: The #AmericanIdolTour is hitting the road this summer! Pre-sales start Tues. at 10am local time & onsale is this Fri. at… +05/07/2018,Musicians,@LukeBryanOnline,It’s @CadeFoehner’s fault @LionelRichie...we just can’t control ourselves. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,True God given talent @MichaelJWoodard. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,When you can’t think of anything country to say to @MaddiePoppe...#AmericanIdol https://t.co/SpjCdAYYSS +05/07/2018,Musicians,@LukeBryanOnline,Way to keep getting better every week @calebleemusic. Good job buddy. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,"Maybe I need a hug from @nickjonas too, ha. Great job @hashtagcatie. Keep being you. #AmericanIdol" +05/07/2018,Musicians,@LukeBryanOnline,That was so special @GabbyBarrett_. Well done girl. #AmericanIdol +05/07/2018,Musicians,@LukeBryanOnline,.@jurnee kicking us off tonight like... #AmericanIdol https://t.co/ILJSIjaPsY +05/06/2018,Musicians,@LukeBryanOnline,RT @EW: .@LukeBryanOnline is taking over our Instagram Story from the #AmericanIdol set! Follow along here: https://t.co/ichtck6aAF https:/… +05/06/2018,Musicians,@LukeBryanOnline,Getting fired up for @AmericanIdol tonight. Y’all ready to tune for live voting? See you at 8pm EST / 5pm PST https://t.co/8k0ndJlX4S +05/06/2018,Musicians,@LukeBryanOnline,Thanks for having me. https://t.co/4AfdLiJZz9 +05/06/2018,Musicians,@LukeBryanOnline,"RT @iHeartRadio: TONIGHT! @LukeBryanOnline, @KeithUrban and more take the stage in Austin for the party of the year. Watch #iHeartCountry F…" +05/05/2018,Musicians,@LukeBryanOnline,"If you’re not in Austin, don’t worry - you can stream the #iHeartCountry Festival online tonight… https://t.co/9Q15sOegFY" +05/04/2018,Musicians,@LukeBryanOnline,It’s happening. Season 2. @americanidol https://t.co/SsNJTLFF6p +05/03/2018,Musicians,@LukeBryanOnline,RT @lukecombs: Make them turkeys go boom boom... @LukeBryanOnline https://t.co/E9l4SK24qF +05/03/2018,Musicians,@LukeBryanOnline,Announcing Luke’s MVP Stadium Experience for select stadium shows this year. Download Luke’s App now for more info:… https://t.co/qO4j1WRYuH +05/03/2018,Musicians,@LukeBryanOnline,"Austin, y’all coming out to @iHeartCountry Fest Saturday? #iHeartCountry https://t.co/3HLu13CYEa" +05/02/2018,Musicians,@LukeBryanOnline,Y’all go listen to @amazonmusic’s new #CountryHeat playlist that features #MostPeopleAreGood https://t.co/O15fktZdBq https://t.co/lxbyX0oRgF +05/02/2018,Musicians,@LukeBryanOnline,RT @iHeartCountry: The countdown is on! Only 4 more days until the #iHeartCountry Festival in Austin 🤠 Who are you most excited to see? htt… +05/02/2018,Musicians,@LukeBryanOnline,RT @dariusrucker: Ladies and Gentleman.....The Troublemakers!! https://t.co/XyPQ1iVPHI +04/30/2018,Musicians,@LukeBryanOnline,It’s #MusicMonday! Kick it off with Luke’s #MostPeopleAreGood playlist on @Spotify. Listen here: https://t.co/5FufQ3UFea +04/30/2018,Musicians,@LukeBryanOnline,"America, THIS is your Top 7: @Jurnee, @MaddiePoppe, @GabbyBarrett_, @HashtagCatie, @CadeFoehner, @MichaelJWoodard,… https://t.co/U7llBMYlff" +04/30/2018,Musicians,@LukeBryanOnline,".@AdaVox, @DennisLorenzo, @MichelleSussett so sad to see y’all go. Keep pursuing your dreams. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,"America, you have a tough job on your hands. I’m not jealous of ya tonight. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,Way to close out the Top 10 @DennisLorenzo. Great performance. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,.@hashtagcatie you were inspiring tonight. I’m speechless. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,You did @RandyNewman proud @calebleemusic. Way to bring it buddy #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,As magical as #DisneyNight itself @MichaelJWoodard. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,We aren’t having any fun tonight. #AmericanIdol #DisneyNight #VOTE https://t.co/qUf1JnZ87z +04/30/2018,Musicians,@LukeBryanOnline,You’ve got it all @GabbyBarrett_. Great job girl. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,RT @LionelRichie: Make sure to vote for your favorite everyone! What do you guys think so far?! @lukebryanonline #mickeymouse #AmericanIdol… +04/30/2018,Musicians,@LukeBryanOnline,Nailed it @MichelleSussett. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,.@AdaVox you’re truly honing your skills and your voice. Amazing performance. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,Shoutout to #DisneyNight for bringing that out of ya @CadeFoehner. Great job. #AmericanIdol +04/30/2018,Musicians,@LukeBryanOnline,"Keep dreamin’ and believin’ on your journey, @Jurnee. Ha. #AmericanIdol" +04/30/2018,Musicians,@LukeBryanOnline,Your voice is timeless @MaddiePoppe. I just want to keep listening. #AmericanIdol +04/29/2018,Musicians,@LukeBryanOnline,"RT @AmericanIdol: We're breaking new ground on #AmericanIdol with Disney Night, airing LIVE coast-to-coast! Join in the fun TONIGHT at 8e|5…" +04/29/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: It's going to be a magical night! #DisneyNight at #AmericanIdol starts LIVE coast-to-coast at 8e|5p! https://t.co/SaLjTWw… +04/29/2018,Musicians,@LukeBryanOnline,Catch Disney night on @AmericanIdol tonight with coast to coast live voting from 8/7c until the end of the show! https://t.co/wDkq3ycW1s +04/28/2018,Musicians,@LukeBryanOnline,Y’all go check out @cb30music’s new song. I’m very proud of them. #LikeItsABadThing https://t.co/PJiRodowgS https://t.co/7cQ9vU9xdo +04/25/2018,Musicians,@LukeBryanOnline,Can’t wait to see y’all out on the road this summer. Which show are ya comin’ to? https://t.co/Kt8QDt1IHQ +04/24/2018,Musicians,@LukeBryanOnline,".@MaraJustine1, @JonnyBrenns, @MarcioDonaldson, @Garrett_Jacobs_ y’all have come so far from the first time we hear… https://t.co/s9BSWFMUuo" +04/24/2018,Musicians,@LukeBryanOnline,"Congratulations @Jurnee, @MichelleSussett, and @DennisLorenzo we are so proud to see y’all in the Top 10. #AmericanIdol" +04/24/2018,Musicians,@LukeBryanOnline,Our final judgement. @LionelRichie @katyperry #AmericanIdol https://t.co/goq9RKHfQH +04/24/2018,Musicians,@LukeBryanOnline,"@hashtagcatie , you just keep bringing it girl. @AdaVox you are incredible. Welcome to the Top 10. #AmericanIdol" +04/24/2018,Musicians,@LukeBryanOnline,RT @liz_dae_: When you remember there can only be one #AmericanIdol 💔 https://t.co/LPVrIV9Sct +04/24/2018,Musicians,@LukeBryanOnline,Hi https://t.co/3fGDUxPy49 +04/24/2018,Musicians,@LukeBryanOnline,.@MichaelJWoodard so great to see ya make it through. Way to go #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@briaxbeauty @AmericanIdol https://t.co/0qofaJWCPU +04/24/2018,Musicians,@LukeBryanOnline,Huge congrats @CalebLeeMusic. Pumped to see ya in the Top 10 #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@_a_lwsn_ Don’t do that +04/24/2018,Musicians,@LukeBryanOnline,That was crazy fun @gabbybarrett_. Good job and welcome to the top 10. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,No Instagram Lives were ruined in the making of this pic #AmericanIdol https://t.co/fMcGfHCWHu +04/24/2018,Musicians,@LukeBryanOnline,Couldn’t be happier to see ya in the Top 10 @CadeFoehner. Congrats. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,@2DeCee @IdolTweethearts I mean...I’m here. +04/24/2018,Musicians,@LukeBryanOnline,Try being at the judges table #AmericanIdol https://t.co/Zl6EHot8RH +04/24/2018,Musicians,@LukeBryanOnline,Congrats @MaddiePoppe. Excited to see you in the Top 10. #AmericanIdol +04/24/2018,Musicians,@LukeBryanOnline,I’m with you Julia #AmericanIdol https://t.co/ZfjXAzZCWo +04/23/2018,Musicians,@LukeBryanOnline,When you’re about to be live on #AmericanIdol https://t.co/hEGR3nAkkz +04/23/2018,Musicians,@LukeBryanOnline,Catch the first live results show of this season’s @AmericanIdol TONIGHT! https://t.co/G2lUBUOmMG +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Which 10 will continue on to next week? Find out tonight at 8/7c! #AmericanIdol https://t.co/qR3g1q2zmj +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: That’s it for the Top 14! Be sure to vote for your favorites - then find out who is making it to the Top 10 tomorrow at 8… +04/23/2018,Musicians,@LukeBryanOnline,When you remember #AmericanIdol is on again tomorrow. Tune in at 8/7c. https://t.co/QHZeSx6zEX +04/23/2018,Musicians,@LukeBryanOnline,Best vocal performance of the night. Well done @GabbyBarrett_ #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,"You make us love you more and more each time, @MichaelJWoodard. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,"Somebody showed up. Amazing job, @jurnee. @jonnybrenns way to have fun and attack those notes. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,@garrett_jacobs_ tricky little underscore you've got at the end there buddy haha +04/23/2018,Musicians,@LukeBryanOnline,Did y’all feel that from @MaddiePoppe? #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,You definitely gave your mom something to be proud of @DennisLorenzo. #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,".@hashtagcatie that was amazing, but stop looking at the internet. @cadefoehner you never disappoint, but please st… https://t.co/mi2foCn9OE" +04/23/2018,Musicians,@LukeBryanOnline,"Biggest voice I’ve ever heard, @AdaVox. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,"Dynamic performance, @Garrett_Jacobs. #AmericanIdol" +04/23/2018,Musicians,@LukeBryanOnline,Keep showing us those layers @MarcioDonaldson & bring that emotion every night @MaraJustine1 #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,I think you made it obvious why you’re here @MichelleSussett #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,.@calebleemusic starting us off right! Good job buddy. #AmericanIdol +04/23/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: Voting is open now! Watch tonight and vote for your favorite contestant! 👇👇👇10 votes per contestant per method. #American… +04/22/2018,Musicians,@LukeBryanOnline,De-shined and ready for tonights show. Who’s watching? Let’s go! https://t.co/NxgWcJbvpN +04/22/2018,Musicians,@LukeBryanOnline,It’s your turn America. #VOTE #americanidol @LionelRichie https://t.co/ROQlzbSoOT +04/22/2018,Musicians,@LukeBryanOnline,Don’t miss the Top 14 of #AmericanIdol tonight at 8/7c. Be sure to tune in! https://t.co/9Jjna8vNGt +04/20/2018,Musicians,@LukeBryanOnline,We’ve had some good times so far on #AmericanIdol https://t.co/35lWQbzdQD +04/18/2018,Musicians,@LukeBryanOnline,Get ready for upcoming stadium dates with the #WhatMakesYouCountryXL playlist on @Spotify: https://t.co/JQx9RxlrA0 +04/18/2018,Musicians,@LukeBryanOnline,"RT @LionelRichie: Hey @LukeBryanOnline... how about this... is this ""cowboy cool""? #AmericanIdol https://t.co/zYi1jcf9xv" +04/17/2018,Musicians,@LukeBryanOnline,"ICYMI: You can watch Luke's @ACMawards performance of ""Most People Are Good"" here: https://t.co/knw9JROlkD" +04/17/2018,Musicians,@LukeBryanOnline,Excited to be nominated for this year's @BBMAs Top Country Tour! #BBMAs https://t.co/Rc9wLMr6hH +04/17/2018,Musicians,@LukeBryanOnline,".@AlyssaRaghu @AmeliaHammer @ShannonOhara @EffiePassero @RonBultongez, we love all of you and can’t wait to see wha… https://t.co/2Ofc1pHYNO" +04/17/2018,Musicians,@LukeBryanOnline,.@EffiePassero had us in the palm of her hands with @CamCountry’s #Diane. #AmericanIdol +04/17/2018,Musicians,@LukeBryanOnline,.@marajustine1 you definitely shined bright tonight with @RachelPlatten. Way to take what we’ve said and learn from… https://t.co/UmL7UQ86nY +04/17/2018,Musicians,@LukeBryanOnline,RT @AmericanIdol: That performance from @MaraJustine1 and @RachelPlatten got us like 😭#AmericanIdol #IdolDuets https://t.co/rfUVUN6ZPy +04/17/2018,Musicians,@LukeBryanOnline,"Keep taking those kinds of steps, @Garrett_Jacobs_ and you are going to go far. You brought it with @ColbieCaillat. #AmericanIdol" +04/17/2018,Musicians,@LukeBryanOnline,"I can’t stop saying effortlessness with you, @jurnee. I’m just floored by your performance with @LeaMichele. #AmericanIdol" +07/01/2018,Musicians,@SantanaCarlos,"POR LA GRACIA DE DIOS +ESTAMOS A QUI REUNIDOS +PARA CELEBRAR NUESTRA +PROPIA LUZ + +BY THE GRACE OF GOD +WE ARE RE UNITE… https://t.co/4iM3XHuCWw" +06/29/2018,Musicians,@SantanaCarlos,"ABOVE ALL WE ASPIRE TO HEAL OURSELVES AND THE WORLD +truth kindness compassion mercy oneness empathy unity harmony +T… https://t.co/lkvq0BJEAk" +06/29/2018,Musicians,@SantanaCarlos,"ABOVE ALL WE ASPIRE TO HEAL OURSELVES AND THE WORLD +truth kindness compassion mercy oneness empathy unity harmony +T… https://t.co/fTu3kxD0g9" +06/26/2018,Musicians,@SantanaCarlos,"Compassion mercy kindness is +The Living CHRIST WAY +The light of JESUS +Knows NOT words like +ALIEN REFUGEES nor IMM… https://t.co/AaSIBkQvdy" +06/19/2018,Musicians,@SantanaCarlos,"DIVINE LIGHT does not recognize space nor time +This why the frequency of the LIVING CHRIST +Is TOTALLY ALIVE TODAY +L… https://t.co/X3wox42Rhe" +06/19/2018,Musicians,@SantanaCarlos,"World CITIZENS open your HEART +CHRIST CONSCIOUSNESS is about HEALING +Being your SISTER and BROTHERs Keeper +Is the o… https://t.co/pFChptWCF9" +06/16/2018,Musicians,@SantanaCarlos,"IT IS SUBJECTIVE FOLKS +If you STOP and ask JIMI HENDRIX +Who’s your favorite guitar player +He most certainly will de… https://t.co/EsjALBx7uO" +06/16/2018,Musicians,@SantanaCarlos,"WE are ever so grateful for the opportunity +To be invited to come to London and share +Our music and energy with our… https://t.co/fD0R6iSO2C" +06/12/2018,Musicians,@SantanaCarlos,"MY LIGHT Will SEE ME THROUGH +Suicide prevention HOT LINE +Offering people words of wisdom that have +Light powers to… https://t.co/eGAxekeRAB" +06/08/2018,Musicians,@SantanaCarlos,"From Team Santana: +On Sunday, June 10 Santana’s iconic performance from the 1982 Us Festival will air on AXS TV 10:… https://t.co/gE40AXTkAq" +06/04/2018,Musicians,@SantanaCarlos,RT @drumstress: Carlos and I had a great time playing the #Anthem at the #NBA https://t.co/aQuYpl1e2x +06/04/2018,Musicians,@SantanaCarlos,Carlos Santana performs national anthem at Game 2 of 2018 NBA Finals | ESPN https://t.co/Nu1ZMsBHDX +06/02/2018,Musicians,@SantanaCarlos,"From Team Santana: The NBA Finals, presented by Youtube announced that Carlos Santana & Cindy Blackman Santana will… https://t.co/6jEUTEkw9a" +05/29/2018,Musicians,@SantanaCarlos,Fear is the parasite that infects the minds of those who have no awareness of their own spirit. Any business that p… https://t.co/QED2b63nBw +05/19/2018,Musicians,@SantanaCarlos,"COMPASSION MERCY FORGIVENESS +these words have the ingredient spiritual power +We desperately need to HEAL and bring… https://t.co/lOF24c02oE" +05/18/2018,Musicians,@SantanaCarlos,"WORLD CHANGE AGENT +1 Constantly creates effortlessly +For the highest good of ALL +2 think good thoughts and CHANGE… https://t.co/4perWYy84e" +05/17/2018,Musicians,@SantanaCarlos,"When you raise your consciousness +By MEDITATING PRAYING OR SELFLESS SERVICE +You see that EVERYONE and EVERYTHING +In… https://t.co/SwBXldNlKq" +05/16/2018,Musicians,@SantanaCarlos,From Team Santana: Own a stage played guitar from Carlos’ personal collection with proceeds going to the Milagro Fo… https://t.co/sPtGrJ51qj +05/12/2018,Musicians,@SantanaCarlos,"Woodstock nation Embody the frequency of a Planetary consciousness +The spiritual world breathing with unity And har… https://t.co/49FO48kNaF" +05/11/2018,Musicians,@SantanaCarlos,"The solution to all humanity’s problems +Raise your consciousness +The 60s slogan turn on tune in drop out +Simply mea… https://t.co/s4vwK970kd" +05/09/2018,Musicians,@SantanaCarlos,"Unwavering highest good is my hearts aim +Therefore the sound and feel of SANTANA +Will always BE a frequency of HEAL… https://t.co/gpYJ26D4r1" +05/05/2018,Musicians,@SantanaCarlos,"Looking through the EYES of GOD +We take the high road +Look at the aerial view +We see the BIG PICTURE +THE HIGHEST G… https://t.co/NAexVtSnnf" +05/03/2018,Musicians,@SantanaCarlos,"Yield real fruit of consciousness creativity +Collect your thoughts feelings emotions +Words deeds and arrange them l… https://t.co/gV30zRMvCq" +05/03/2018,Musicians,@SantanaCarlos,"Moments of awakening +When you realize your beyond the EGO laws +Of this planet plane +Beyond religion politics govern… https://t.co/LGOL8MK6Vj" +05/01/2018,Musicians,@SantanaCarlos,"GOOD to know +Our SALVATION is within Reach +Self realization is attainable and available +When we surrender our mind… https://t.co/Qqa3RjSqo7" +04/28/2018,Musicians,@SantanaCarlos,"Wealthy with wisdom +Some people have many many zeros +To the right yet .... they hardly know +The ONE on the left ..… https://t.co/mZMvFZdcUy" +04/22/2018,Musicians,@SantanaCarlos,"The human spirit / soul +does not complicate nor muddles +The universal oneness with all +The human mind however being… https://t.co/SFPUvmnZrj" +04/19/2018,Musicians,@SantanaCarlos,"FOR THE HIGHEST GOOD +Sentient benevolent autonomy +Meditate raise your consciousness +Activate your awareness knowing… https://t.co/SFc3MTN1aX" +04/07/2018,Musicians,@SantanaCarlos,"This side of heaven +1 CLARITY +2 INTEGRITY +3 GOOD HEALTH +4 PEACE OF MIND +5 JOY +We had a glorious glaring concert las… https://t.co/DKZXVGEti1" +03/27/2018,Musicians,@SantanaCarlos,"RT @billboard: .@SantanaCarlos says Dolores Huerta film will inspire ""sisters of all ages"" https://t.co/FnOzmMOXQQ https://t.co/UomN7R8Hao" +03/27/2018,Musicians,@SantanaCarlos,"RT @Dolores_Movie: .@Dolores_Movie is coming to @PBS! Tune into the TV premiere - Tuesday, March 27 at 9pm. Follow @IndependentLens for upd…" +03/26/2018,Musicians,@SantanaCarlos,"From Team Santana: From the inside out, Carlos by Carlos Santana Men’s Shoes are designed with you and your impecca… https://t.co/VKgAwHqtzI" +03/20/2018,Musicians,@SantanaCarlos,"War is not the answer +For only love can conquer fear +Brother Marvin Gaye + +War in the east War in the west +War up no… https://t.co/mnwi8ih7sI" +03/19/2018,Musicians,@SantanaCarlos,"From Team Santana: We invite you to catch up on the latest news from the Milagro Foundation. +#themilagrofoundation https://t.co/kYH0WG2Sfn" +03/12/2018,Musicians,@SantanaCarlos,"My spirits LIGHT floods my consciousness with +Illumination liberation wisdom power peace +Beauty grace strength... https://t.co/oXL5fXdk7T" +03/07/2018,Musicians,@SantanaCarlos,From Team Santana: We are proud to announce that Zappos has debuted the new Anthony Veer – Carlos by Carlos... https://t.co/VVmS5YkX3x +02/26/2018,Musicians,@SantanaCarlos,"Immutable impeccable indestructible incorruptible +Unwavering unyielding unaffected purity and innocence +At our... https://t.co/VPI1OI9Exb" +02/26/2018,Musicians,@SantanaCarlos,"We propose and present +a new movie rating +We have now +PG .. R .. and so on +We propose adding with accurate... https://t.co/dO79AvKLad" +02/21/2018,Musicians,@SantanaCarlos,"We are here to express the love of GOD +Let us BE present with the divine gifts of +Beauty grace excellence... https://t.co/eZ0SP2wtdH" +02/14/2018,Musicians,@SantanaCarlos,"With love in your heart +And belief in GOD +Anything is possible +Claim what is already yours +Miracles and... https://t.co/GN4cuGYSYc" +02/13/2018,Musicians,@SantanaCarlos,"Dance with the unknown +Take a leap of faith +Go out on a limb +Stick your neck out +Face your fears +Re invent... https://t.co/9tjDDn4e3D" +02/06/2018,Musicians,@SantanaCarlos,"The mechanics of spiritual code of conduct +Will help you build a powerful house +For your soul heart mind and... https://t.co/zDk4v5pVrN" +02/02/2018,Musicians,@SantanaCarlos,"GOD is the motor operandum +He allows us to get behind the drivers seat +And select an assign destination +Beauty and grace" +01/29/2018,Musicians,@SantanaCarlos,"THE LOVING HAND OF THE DIVINE +Last night …In my dream +My angel said don’t worry +Everything is going to be... https://t.co/w8L1pgaPhc" +01/22/2018,Musicians,@SantanaCarlos,"War starts with the letter W +Because it is Weak +Peace starts with the letter P +Because it is Powerful" +01/21/2018,Musicians,@SantanaCarlos,"This is the journey of remembrance +Regardless of your perceptions or beliefs +Regardless of your hue or... https://t.co/AvhOUkvFR9" +01/21/2018,Musicians,@SantanaCarlos,"Change the molecular structure +ALTER the DNA of this planet +Thoughts infected with fear worry anger sadness... https://t.co/dVyRGh2HD2" +01/17/2018,Musicians,@SantanaCarlos,"A Sentient being +is like a Christmas tree +What adorns him/her are these virtues +Honesty +Kindness +Compassion... https://t.co/QAoAnINHP1" +01/15/2018,Musicians,@SantanaCarlos,"1 Spontaneous Remission +2 Total restoration +3 Better than new +4 No Fear Here +5 Whole and sound +6 My recuperation... https://t.co/GiPjcQF0hS" +01/14/2018,Musicians,@SantanaCarlos,"Lead me from the unreal to the…REAL +Lead me from darkness to…LIGHT +Lead me from death to..IMMORTALITY" +01/14/2018,Musicians,@SantanaCarlos,"The LIGHT in us ONLY sees LOVE +FEAR does not see or feel beauty or GRACE what GOD created all around the WORLD... https://t.co/UdYaxtRhPO" +01/09/2018,Musicians,@SantanaCarlos,"YOU ARE DESIGNED TO BE AN EVER- EVOLVING CONSCIOUSNESS +IGNITE NEWNESS …TRANSFORM FEAR …EVERYWHERE +HEAL ALL AND... https://t.co/t94KLuVeme" +12/31/2017,Musicians,@SantanaCarlos,"Happy New Year 2018 +Let us go forward knowing we will +Heal all the wounds forgive all mishaps +restore all beauty... https://t.co/QOPWeKgt3n" +12/30/2017,Musicians,@SantanaCarlos,"Nightmares ... hound you +torture you torment you +Well ... let’s do something totally effective +About that ..,... https://t.co/JX73d0poXZ" +12/25/2017,Musicians,@SantanaCarlos,"Now is the time to invest in promoting +Respect honor spiritual values peace +Yielding with kindness on the road... https://t.co/cAWFmqPiyt" +12/21/2017,Musicians,@SantanaCarlos,"Happy birthday JELLI +May your SPIRIT guide you to your light +May your SOUL comfort you with LOVE +May your HEART... https://t.co/uYcU2uQL0i" +12/20/2017,Musicians,@SantanaCarlos,"I offer deepest gratitude +To the great spirit for allowing +Me to reason and understand +The ways of light love... https://t.co/N7gCGOG7QO" +12/04/2017,Musicians,@SantanaCarlos,From Team Santana: We are proud to announce the first dates of the 2018 ‘Divination' Tour! We just announced... https://t.co/SHoUpDVdog +11/20/2017,Musicians,@SantanaCarlos,"TIME STANDS STILL +For those that ascend into divine LOVE +For those that dance with grace +For those that sing the... https://t.co/vee5npMQax" +11/15/2017,Musicians,@SantanaCarlos,https://t.co/MamsZXflW0 +11/11/2017,Musicians,@SantanaCarlos,"Lower is a Slower frequency vibration +Higher is a faster velocity traction +It’s an individual choice selection... https://t.co/URlNBVImCQ" +11/09/2017,Musicians,@SantanaCarlos,RT @PBS: Ever looked inside the mind of a genius? Stream CHASING TRANE from @IndependentLens through 11/20. #IndieLensPBS https://t.co/KxW5… +11/01/2017,Musicians,@SantanaCarlos,"We are creatures of identification +When we see beauty grace elegance +Excellence integrity high consciousness... https://t.co/qxteNPiyka" +11/01/2017,Musicians,@SantanaCarlos,"The high road to excellence +is reached by every step of integrity +The eternal songs Have a perfect balance +Of... https://t.co/OEfX27Vprs" +10/31/2017,Musicians,@SantanaCarlos,"When you think of divine organizations +Like +DOCTORS WITH NO BORDERS +UNICEF …And others +I visualized a safety... https://t.co/06XSNa94U6" +10/30/2017,Musicians,@SantanaCarlos,"An opinion view and decision of one person +If is for the highest good of all +Should totally have merit and power... https://t.co/8laCCb32MX" +10/25/2017,Musicians,@SantanaCarlos,"Do you remember what was given to you +Before you were born ? +True essence … Light Divine +Perfect Perfection... https://t.co/UANscfrWy8" +10/25/2017,Musicians,@SantanaCarlos,"If you so desire with intense willingness +Please listen to SUN RA +“ Search light blues “ +Tenor saxophone +John... https://t.co/awzqXwQrGg" +10/20/2017,Musicians,@SantanaCarlos,https://t.co/g0dIwe7gPO +10/20/2017,Musicians,@SantanaCarlos,"Let’s be accurate and clear +I said ( during a recent interview )! What makes you think, +I am your poodle and I... https://t.co/Ym8D0QcCdA" +10/18/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: A tribute to an important woman who has received few tributes because she’s a woman | via @SFWeekly | https://t.co/t12CU… +10/18/2017,Musicians,@SantanaCarlos,Help members of music community affected by recent hurricanes. Donate to the @MusiCares Hurricane Relief Fund: https://t.co/cnMvWiroGt +10/18/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: See the story of #DoloresHuerta on the big screen → https://t.co/iCmwBmdkDJ https://t.co/33lHppQxiM +10/18/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #BootSeason is the best. #carlossantana #bootsale #ankleboots #fallfashion #weekendstyle #fashionblogger @lily_glam_ http… +10/18/2017,Musicians,@SantanaCarlos,RT @drumstress: Performing at @DailysPlace on October 24th with @SantanaCarlos and the Santana Band at 7pm. https://t.co/XIb5fU8xvZ +10/12/2017,Musicians,@SantanaCarlos,"Give yourself the gift of brilliant peace +calm clarity beauty grace and elegance +Stop take a deep breath and... https://t.co/0f6BdMuaDF" +10/09/2017,Musicians,@SantanaCarlos,"The Raiders and Kaepernick +are a winning combination" +10/08/2017,Musicians,@SantanaCarlos,"Oh, here is an idea......All of the property and money that is owned by the Las Vegas shooter should be forfeited... https://t.co/PAZ6qFAlgo" +10/05/2017,Musicians,@SantanaCarlos,"Carlos Santana, through his Milagro Foundation, is supporting UNICEF USA's work for children with a gift of... https://t.co/oBLOZBaDIw" +10/05/2017,Musicians,@SantanaCarlos,"Following three recent devastating earthquakes in Mexico, I am making a $100,000 donation through The Milagro... https://t.co/tIIgIHhF5M" +10/03/2017,Musicians,@SantanaCarlos,"Listen to +WHAT THE WORLD NEEDS NOW +MERCY MERCY ME +From the POWER OF PEACE CD +And be uplifted into a place of +QUALITY OF PEACE" +10/03/2017,Musicians,@SantanaCarlos,"My light will see me through +For honest to goodness +Clarity +I don’t belong to the left far left +Or right or far... https://t.co/E6DB8cfgxK" +10/02/2017,Musicians,@SantanaCarlos,"LOVE ONLY SEES LOVE +AINT NO FUTURE WITHOUT +FORGIVENESS +COMPASSION +MERCY" +10/02/2017,Musicians,@SantanaCarlos,"To everyone that lost loved ones in Las Vegas, we stand with you. To those of you who are wounded and hurt, we... https://t.co/pZHJBi5NEj" +10/02/2017,Musicians,@SantanaCarlos,"Congratulations to Mr. Clive Davis ! Your bigger than life movie, ""THE SOUNDTRACK OF OUR LIVES"", is a testament... https://t.co/o9DnWJDtKI" +10/01/2017,Musicians,@SantanaCarlos,DOLORES HUERTA DOCUMENTARY.......I would like to respectfully invite everyone to come and see the Dolores Huerta... https://t.co/iVlGwYqAa1 +09/26/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out this video about Carlos' Milagro Foundation, our Licensing... https://t.co/OZ98eREHoM" +09/26/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out this video to learn more about Carlos' Milagro Foundation, our... https://t.co/P9129MLppL" +09/25/2017,Musicians,@SantanaCarlos,"Last night in my dream +I was being honored by the Academy +Of Arts and Science +And just before they gave me the... https://t.co/e4N2RAqin2" +09/21/2017,Musicians,@SantanaCarlos,"We send our collective hearts, light, love and compassion to our sisters and brothers in Mexico. We feel your... https://t.co/gzUaadSe0P" +09/19/2017,Musicians,@SantanaCarlos,"This the +TIME SPACE AND PLACE + To + HEAL + The +TWISTED and... https://t.co/D1MiBqZ8lN" +09/18/2017,Musicians,@SantanaCarlos,RT @Cricketnation: No games here—enter for a chance to win a trip to see @SantanaCarlos in #LasVegas! https://t.co/Y6Y3Kmo9UM https://t.co/… +09/07/2017,Musicians,@SantanaCarlos,"FEEL SENSE BE TOTALLY AWARE +TAKE A DEEP BREATHE BE PRESENT +CRYSTALIZE YOUR PRIORITIES +GRASP THE NOTION WHOLLY... https://t.co/UwdNSlOA6C" +09/05/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""#DoloresHuerta is the real #WonderWoman,” says @SantanaCarlos via @sfchronicle https://t.co/FyPR2yxfMM (NOW PLAYING at…" +09/05/2017,Musicians,@SantanaCarlos,"RT @AliceRadio: The legendary Carlos Santana joins Sarah & Vinnie today at 8:00AM!! We talk ""DELORES"", music, and much more ONLY @ https://…" +09/05/2017,Musicians,@SantanaCarlos,"Above all INTEGRITY and HONESTY +FOR THE HIGHEST GOOD +COMPASSION FOR ALL AND EVERYTHING +IS the frequency of... https://t.co/a6N81Jw4Lm" +09/01/2017,Musicians,@SantanaCarlos,"RT @NBCLatino: Rock Legend @SantanaCarlos Gives Us ‘Power of Peace’ With New Album, Documentary https://t.co/tOiLpKLqQV https://t.co/vrwCFo…" +09/01/2017,Musicians,@SantanaCarlos,https://t.co/Xk52EX5BLM +09/01/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: #NYC, our 9/1 premiere is here! Q&A screening @IFCCenter w. #DoloresHuerta, filmmaker #PeterBratt + @monifabandele @msla…" +09/01/2017,Musicians,@SantanaCarlos,"RT @gretschdrums: . @drumstress 's ""Fun Party Splash"" is available for pre-order. Feat, @SantanaCarlos & co-written w/ @NaradaMWalden https…" +09/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Make a style statement with every stunning step.#carlossantana #mules #floralheels #statementshoes #embroideredshoes http… +09/01/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""In the fight for #socialjustice there is no 'right' time to act""—#BenjaminBratt. How #DoloresHuerta inspires him and hi…" +09/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Celebrate #LaborDay early with 20% OFF + #FreeShipping (#promocode CELEBRATE17) thru 9/4!👢👠 #carlossantana #shoesale http… +09/01/2017,Musicians,@SantanaCarlos,"Dear Friends of Dolores Huerta......In case you haven't heard, the life story of our beloved Dolores Huerta is... https://t.co/cqccUkf3wy" +08/25/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""Her contributions have gone unrecognized—until now"" | via @Latina | https://t.co/eSw8FJC3h2 +SCREENINGS: https://t.co/9…" +08/25/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: ‘Dolores’ the movie (opens Sept 1) seeks to inspire all generations → https://t.co/KOKA77oSuX via @monitornews #DoloresH… +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Join me at 3 pm PST on Facebook LIVE. I want to tell you about my new single FUN PARTY SPLASH! https://t.co/QVUtk7ayZI +08/25/2017,Musicians,@SantanaCarlos,"RT @Carlos_Shoes: Slide... into the weekend, in comfort & style! ➡️👡 #carlossantana #slidesandals #weekendready #slides #whitesandals http…" +08/25/2017,Musicians,@SantanaCarlos,https://t.co/ZU1IvEUZLJ +08/25/2017,Musicians,@SantanaCarlos,"RT @SFMFoodBank: Our newest members of the 🍏Brigrade: @SantanaCarlos & @Milagro_kids! Won't you join too? #HeartCore #FoodForAll + +https:…" +08/25/2017,Musicians,@SantanaCarlos,From Team Santana: Cindy Blackman Santana's Fun Party Splash Single is out today! We invite you to check it out.... https://t.co/PB7JFslVkm +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Today is the release of my new single. I am singing as well as playing drums. Let me know what you think! https://t.co/kbEX… +08/25/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: To @FBI she was a threat. To Sen. Robert Kennedy, she was a friend. See #DoloresHuerta’s remarkable story @IFCCenter htt…" +08/25/2017,Musicians,@SantanaCarlos,RT @drumstress: Thankful for all these great reviews of my new single https://t.co/1YoBJ50rC7 +08/24/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Step into the must-have #cowboyboot of the season… #carlossantana #cowgirlboot #westernboot #bootseason #studdedboot http… +08/23/2017,Musicians,@SantanaCarlos,"RT @AXSTV: This Saturday, we're hanging out with @SantanaCarlos & few of our other favs from the #SummerofLove. https://t.co/XsKiGHxmBg" +08/23/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""At 87, she’s the kind of wonder woman we should all admire and hope to emulate"" — @REMEZCLA on #DoloresHuerta. https://…" +08/23/2017,Musicians,@SantanaCarlos,"RT @Dolores_Movie: ""I cannot praise enough #PeterBratt’s @Dolores_Movie which opens in Sept"" | via @IndieWire | https://t.co/O2nJN6QKm4" +08/23/2017,Musicians,@SantanaCarlos,"RT @QuinnSullivan1: Words from the greatest, @SantanaCarlos lots of love https://t.co/MLmm854ufM" +08/23/2017,Musicians,@SantanaCarlos,RT @StanleyNelson1: Had the honor of hosting a lunch for @Dolores_Movie produced by legendary @SantanaCarlos and super talented director #P… +08/23/2017,Musicians,@SantanaCarlos,RT @Dolores_Movie: Reunited for a preview screening! @Dolores_Movie opens Sept. 1 at @IFCCenter. Tickets available NOW → https://t.co/30JCN… +08/23/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: I love #embellishedshoes… jewelry for your feet!✨👣 #carlossantana #slides #slidesandals #fromwhereistand #iloveshoes http… +08/23/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #IWish that every time I liked #shoes on Twitter they would magically appear in my closet.#carlossantana #cagedheels http… +08/23/2017,Musicians,@SantanaCarlos,"RT @drumstress: This Friday is release! Fun, Party, Splash https://t.co/GrEP78lQBg" +08/21/2017,Musicians,@SantanaCarlos,RT @BorgataAC: RT if you'll be jammin' with @SantanaCarlos at his SOLD OUT show at the Event Center tonight! https://t.co/2RQH2MpkNL +08/21/2017,Musicians,@SantanaCarlos,RT @QuinnSullivan1: Jamming with @SantanaCarlos last night! @MoheganSun https://t.co/qAijfGkaN1 +08/21/2017,Musicians,@SantanaCarlos,RT @drumstress: Photos from @MoheganSun https://t.co/GXJG5jQjwv https://t.co/hdrBcAZr8t +08/21/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Slide this-a-way... ➰💙👡 @shoes_sashimi #fashionblogger #slides #summerstyle #slidesandals #poolslides #carlossantana http… +08/21/2017,Musicians,@SantanaCarlos,https://t.co/SKE99bLYGi +08/20/2017,Musicians,@SantanaCarlos,"I feel a deep sense of GRATITUDE +This wonderful Sunday morning +Last night's concert filled me with +SUPREME... https://t.co/Aej0GmqXUH" +08/18/2017,Musicians,@SantanaCarlos,RT @nprmusic: Carlos Santana teamed up with The Isley Brothers for a new album dedicated to peace through music. https://t.co/1BKytR9Tjr ht… +08/18/2017,Musicians,@SantanaCarlos,RT @drumstress: Keep eye out in #NYC cabs for @CarlosSantana #IsleyBrothers clip on our album 50 years in the making https://t.co/6ABEv0EX… +08/17/2017,Musicians,@SantanaCarlos,RT @MoheganSun: Don’t miss the electric sound of @SantanaCarlos on 8/19 at #MoheganSunArena! https://t.co/AJY2U8ojtY https://t.co/Vy2fqa2tUK +08/17/2017,Musicians,@SantanaCarlos,"RT @LatinoVoices: Watch how Dolores Huerta inspired Barack Obama's ""Yes we can"" slogan https://t.co/goz3R2LwzF" +08/17/2017,Musicians,@SantanaCarlos,RT @LookingGlassSMM: She’s got that #magic in her sole... 🌸👢✨ @Carlos_Shoes #shoefie #floralboots #showusyoursole #magiclv #carlossantana h… +08/17/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: #Elvis wasn't the only rockin' Blue Suede shoes. Get inspired by the King today w/ our Royal Blue Suede “Spirit” #Penn… +08/17/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Last Day! Brighten up #summertofall with $20 OFF $100 + #FreeShipping (#promocode SUNNY17). #carlossantana #shoesale http… +08/17/2017,Musicians,@SantanaCarlos,RT @drumstress: I have released a vocal single- pre order is up now​:​https://t.co/kbEXO17NeQ​ thanks for all your support. https://t.co/A7… +08/16/2017,Musicians,@SantanaCarlos,"Dolores — in theaters beginning Sept. 1. +https://t.co/52xd4G2gnJ https://t.co/ZjUjWMlZFD" +08/15/2017,Musicians,@SantanaCarlos,RT @HOBLasVegas: ON SALE NOW — @SantanaCarlos dates for January & February 2018! Grab your tickets at https://t.co/Yn1baT6wGN https://t.co/… +08/15/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: .@SantanaCarlos' 'Shangó,' which featured the hit single “Hold On,” turns 35 today! Rediscover the album: https://t.co/…" +08/15/2017,Musicians,@SantanaCarlos,RT @MoheganSun: The legendary @SantanaCarlos comes to #MoheganSunArena on 8/19! https://t.co/AJY2U8ojtY https://t.co/4doqWAwgU2 +08/15/2017,Musicians,@SantanaCarlos,We invite you to check out the trailer for the movie 'Dolores' https://t.co/c4fFqaHKTY +08/14/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to check out the trailer for ‘Dolores’, a film close to Carlos’ heart about the... https://t.co/HRKFRyn6ae" +08/11/2017,Musicians,@SantanaCarlos,"Learn to SOAR +No matter what Gets in front of you +No matter who approves or disapproves +No matter where you... https://t.co/5KFgEfHaXI" +08/11/2017,Musicians,@SantanaCarlos,"From Team Santana: We invite you to pre-order the new single, by Cindy Blackman Santana, ""Fun Party Splash""... https://t.co/TDybWbLcPL" +08/09/2017,Musicians,@SantanaCarlos,"WHOLEHEARTEDLY Cindy and I +We LOVE sharing our LIGHT +With GOD the WORLD …PEOPLE +And we have the audacity to... https://t.co/myFLC46a5V" +08/08/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: We take pride in our designs. Would you? Browse our latest styles https://t.co/FEp0dkCXcv https://t.co/Xqc1X33rQo +08/08/2017,Musicians,@SantanaCarlos,RT @AnnWilson: Playing with @SantanaCarlos tonight! #awoh #rock #live https://t.co/gXJ2MPQ9qU +08/08/2017,Musicians,@SantanaCarlos,RT @drumstress: Information about the new album with @SantanaCarlos and @TherealRonIsley Brothers via @ABC7NY https://t.co/NkemsUD7Cv +08/08/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Cuz glamour never takes a day off…✨👡💯 #carlossantana #studdedsandals #weekendready #glamvibes #carlosbycarlossantana http… +08/08/2017,Musicians,@SantanaCarlos,RT @HOBLasVegas: JUST ANNOUNCED — New @SantanaCarlos date for January & February 2018! Tickets on sale Friday at 10AM: https://t.co/mAsKc0Z… +08/06/2017,Musicians,@SantanaCarlos,"What IF … +There is NO such thing as +DEVIL LUCIFER SATAN +What if you arrive at knowing +It's just DENSE... https://t.co/K2fuAgcfHj" +08/06/2017,Musicians,@SantanaCarlos,"""The poorest of the poor "" +Somewhere somehow +There is someone living in the street +With NO place to GO +And... https://t.co/TH1iVeo1Pu" +08/06/2017,Musicians,@SantanaCarlos,"""The poorest of the poor "" +Somewhere somehow +There is someone living in the street +With NO place to GO +And... https://t.co/ACEe4e6sml" +08/01/2017,Musicians,@SantanaCarlos,"RT @SonyMusicUK: When the Isley Brothers and @SantanaCarlos get together in the studio, magic happens 🎸✨ https://t.co/MMcJjOhMGJ https://t.…" +08/01/2017,Musicians,@SantanaCarlos,Power of Peace Available now! https://t.co/TcB115jbn2 https://t.co/qBGWqiGBF3 +08/01/2017,Musicians,@SantanaCarlos,RT @drumstress: Second stop in August is @BethelWoods Center for the Arts on August 5th at 8pm. https://t.co/bmtKCuYzct +08/01/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Who says you can’t wear #boots in the summer?! #summerboots #ankleboots #coolboots #summerstyle #carlossantana https://t.… +07/29/2017,Musicians,@SantanaCarlos,"RT @MomsRising: Produced by Peter Bratt & @SantanaCarlos, Dolores is a powerful #doc abt #feminist & labor activist #DoloresHuerta https://…" +07/28/2017,Musicians,@SantanaCarlos,"RT @CarlosShoes4Men: Introducing the ""Essential Collection"". Hand crafted #mens #shoes from music legend @SantanaCarlos https://t.co/akLD6z…" +07/27/2017,Musicians,@SantanaCarlos,"RT @HOBLasVegas: Pre-Order @SantanaCarlos’ new album (out this Friday): https://t.co/og4hXwyhCZ. See him in Sept & Nov, tix: https://t.co/…" +07/27/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: .@SantanaCarlos and #TheIsleyBrothers, together on one album. ‘Power of Peace’ is out tomorrow! Preorder now: https://t…" +07/27/2017,Musicians,@SantanaCarlos,"RT @CBSSunday: How did legends #TheIsleyBrothers & @SantanaCarlos end up collaborating on new album ""Power of Peace?"" Find out Sun! https:/…" +07/27/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: My #flipflops are cuter than yours! #carlossantana #cutesandals #strappysandals #silversandals #thursdaythought https://t… +07/25/2017,Musicians,@SantanaCarlos,"Dearest Mark Zuckerberg & Priscilla, + +Driving around the SF Mission District, I couldn't help but notice the... https://t.co/4OJKPQl4q1" +07/20/2017,Musicians,@SantanaCarlos,"Dearest ONES +Your outpouring of light / love +and sharing your highest wishes +Floods my heart with profound... https://t.co/HlnmOHnIlt" +07/20/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #LastChance to get 20% OFF all #CarlosSantana #shoes (#promocode 20SUMMER)! 👡⬇#shoesale #sandalsale #slidesandals https:/… +07/20/2017,Musicians,@SantanaCarlos,"From Team Santana: “Mercy Mercy Me"" showcases Ronnie Isley’s spectacular ballad singing on a song that is even... https://t.co/D0PwtixQbr" +07/20/2017,Musicians,@SantanaCarlos,We invite you to check out Mercy Mercy Me from Power of Peace on @npr https://t.co/wraqqTZPMQ +07/20/2017,Musicians,@SantanaCarlos,RT @AXSTV: Latin rock legend @SantanaCarlos is celebrating the big 7-0! We're happy to show his #BigInterview episode this morning at 10a/… +07/20/2017,Musicians,@SantanaCarlos,"RT @GuitarWorld: Happy 70th to @SantanaCarlos! Check out this clip of him jamming with +Stevie Ray Vaughan and @JimmieVaughan in 1988 https…" +07/19/2017,Musicians,@SantanaCarlos,Power of Peace - Available July 28th - Pre Order Today https://t.co/lrNdNMd4Hk https://t.co/voUcHcq3yF +07/19/2017,Musicians,@SantanaCarlos,"RT @JimMimna: . @SantanaCarlos played @RedRocksCO last week and I was there to photograph it! +@listenupdenver + +https://t.co/UjfQVQyTRJ ht…" +07/19/2017,Musicians,@SantanaCarlos,RT @caleresinc: Shoe of the Week: the @Carlos_Shoes Emma. https://t.co/i8JB9LWJH0 #shoeoftheweek https://t.co/1lB3Uq63Jr +07/19/2017,Musicians,@SantanaCarlos,RT @drumstress: Excited! W/ @SantanaCarlos @ErnieIsley and @TheRealRonIsley on a new album Power of Peace avail. 8/4 @SonyLegacyRecs https:… +07/19/2017,Musicians,@SantanaCarlos,RT @CarlosShoes4Men: We are thrilled to launch the @SantanaCarlos Shoes For Men website https://t.co/P3ULUTmWM6 #Legendary #Mensfashion #me… +07/19/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Sitting pretty in #CarlosSantana #sliponsneakers! #slipons #casualstyle #whitesneakers #fashionblogger @ginadiazh https:/… +07/17/2017,Musicians,@SantanaCarlos,"RT @RedRocksCO: Earlier this week, @SantanaCarlos was inspired by some serious air guitar shredding to share a special gift... #RedRocksCO…" +07/17/2017,Musicians,@SantanaCarlos,RT @TIDALHiFi: It's always a treat when legends come together. Check out “Are You Ready” by #TheIsleyBrothers & @SantanaCarlos: https://t.c… +07/17/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Preorder ‘Power of Peace,’ a collaboration between music legends @SantanaCarlos and #TheIsleyBrothers, out 7/28: https:…" +07/17/2017,Musicians,@SantanaCarlos,RT @drumstress: https://t.co/1sKM8c4zgk +07/17/2017,Musicians,@SantanaCarlos,RT @drumstress: https://t.co/KIwlAuKFYY +07/14/2017,Musicians,@SantanaCarlos,https://t.co/ir0uEpKXyP +07/12/2017,Musicians,@SantanaCarlos,From Team Santana: We would like to share the premiere of ‘Are You Ready’ from the forthcoming Santana - Isley... https://t.co/qsqkIj8GZG +07/12/2017,Musicians,@SantanaCarlos,From Team Santana: We would like to share the premiere of ‘Are You Ready’ from the forthcoming Santana - Isley... https://t.co/mInXYb5z9r +07/06/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Going gaga for GAMMA! #carlossantana #summerboots #redboots #suedeboots #anklebooties #thursdaythought https://t.co/yZRmC… +07/06/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Get a closer look at The Isley Brothers & @SantanaCarlos’ new album, ‘Power of Peace,’ available July 28: https://t.co/…" +07/06/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: All you need is a #recordplayer & #CarlosSantana. @noel_labb #bloggerstyle #ankleboots #cuteboots #vinylsoundsbetter http… +07/06/2017,Musicians,@SantanaCarlos,'Power of Peace' EPK Video Album available July 28th! @drumstress @TheRealRonIsley https://t.co/33qWsiKHW4 +07/05/2017,Musicians,@SantanaCarlos,"7 Steps to uplifting the consciousness of PLANET EARTH + +CO CREATE HEAVEN ON EARTH +1 ) MASTER YOUR THOUGHTS +2 )... https://t.co/TRL51IWKSJ" +07/02/2017,Musicians,@SantanaCarlos,"We are at the point in time +Where we see clearly +Faith is a blessing use it +Miracles are tangible apply them... https://t.co/sqYx0c42RC" +06/28/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Can't think of a better look in time for #CanadaDay than Dose of Haute's #Canadiantuxedo & #CarlosSantana #sneakers! http… +06/28/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Preorder ‘Power of Peace,’ a collaboration between music legends @SantanaCarlos and #TheIsleyBrothers, out 7/28: https:…" +06/27/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: #FlipFlops are my favorite #summershoes. #carlossantana #favoriteshoes #sandalweather #summerstyle #jeweledsandals https:… +06/27/2017,Musicians,@SantanaCarlos,"RT @SonyLegacyRecs: Music icons @SantanaCarlos and #TheIsleyBrothers join forces on ‘Power of Peace,’ out 7/28. Preorder here: https://t.co…" +06/26/2017,Musicians,@SantanaCarlos,"RT @rbgconcerts: Concert fans! are you ready for @SantanaCarlos this Wednesday? There is no opener, so be at the amphitheatre early to get…" +06/26/2017,Musicians,@SantanaCarlos,RT @Carlos_Shoes: Get a wedge up on the week in #CarlosSantana #corkwedges!🌞👡❤️ #wedgesandals #platformwedges #redsandals #summerstyle http… +06/26/2017,Musicians,@SantanaCarlos,"RT @drumstress: Fun gig tonight w/ @SantanaCarlos in Seattle !!!! Great crowd, thanks for your energy!!!!!🌺❤️🌺❤️ Photos- Jeff Ocheltree htt…" +06/22/2017,Musicians,@SantanaCarlos,"ABOVE ALL… Is imperative we elevate…raise higher… uplift ourselves +OUR COLLECTIVE CONSCIOUSNESS… into a... https://t.co/Cw5Z2hAkut" +07/02/2018,Musicians,@jlo,West coast! YOUR TURN! #shadesofblue tonight! Harlee’s nightmare is becoming a reality!! 😳😳😳 @nbc #SHADESOFBLUE 10/… https://t.co/Om1MzpVjYV +07/02/2018,Musicians,@jlo,Nooooooooooooooooo #shadesofblue +07/02/2018,Musicians,@jlo,"She was really in there trying on Harlee’s clothes. Girl, bye. 🙄 #shadesofblue" +07/02/2018,Musicians,@jlo,GIRL. Girl. 😳@nbcshadesofblue +07/02/2018,Musicians,@jlo,RT @EGTisme: Secrets have a way of coming out...Woz should embrace that philosophy before it's too late! @nbcshadesofblue https://t.co/h5DO… +07/02/2018,Musicians,@jlo,"RT @nbcshadesofblue: Stahl is really back, y'all! 😳 #ShadesofBlue https://t.co/EIeCMRKhYj" +07/02/2018,Musicians,@jlo,"Give it time, mami...give it time. #shadesofblue https://t.co/oI0ttO8e5v" +07/02/2018,Musicians,@jlo,Harlee and Christina forever 👩‍👧 +07/02/2018,Musicians,@jlo,Everyone’s Mom has told them this! If she doesn’t - tell HER! 🤣🤣🤣 https://t.co/wyL0NpT68W +07/02/2018,Musicians,@jlo,RT @WannaBeLikeJLo: @JLo do I believe that Stahl is dead? #ShadesOfBlue https://t.co/CF9LQWI5TJ +07/02/2018,Musicians,@jlo,I CANNOT DEAL WITH THIS RIGHT NOW #shadesofblue - I was so stuck I forgot to tell you all this. My bad. https://t.co/cNrP0MN23b +07/02/2018,Musicians,@jlo,NOT AT ALL #nononono https://t.co/z105UsBdCO +07/02/2018,Musicians,@jlo,I don’t trust those 💐 #shadesofblue https://t.co/V70YHGeBz2 +07/02/2018,Musicians,@jlo,Hmmm...is he telling the truth? #shadesofblue +07/02/2018,Musicians,@jlo,RT @BrittanyBeese: “Your gut is your best warning system” -woz. Ain’t that the truth #Shadesofblue @JLo +07/02/2018,Musicians,@jlo,Thoughts?? #shadesofblue https://t.co/FPMrNeHLIq +07/02/2018,Musicians,@jlo,RT @BrittanyBeese: Loving this mother daughter bonding #Shadesofblue @JLo +07/02/2018,Musicians,@jlo,RT @gpolson37: Im so proud😂 my mom is just as hooked as i am💙💙💙 @JLo #ShadesOfBlue https://t.co/MeZ1fF3wIy +07/02/2018,Musicians,@jlo,RT @TaylorJLover724: I don’t like this new FBI lady @JLo @EGTisme @nbcshadesofblue #SHADESOFBLUE +07/02/2018,Musicians,@jlo,“IT DEPARTMENT” #shadesofblue +07/02/2018,Musicians,@jlo,Karen not today! #shadesofblue +07/02/2018,Musicians,@jlo,BIG MOOD 😳 https://t.co/nHn9J5fAv2 +07/02/2018,Musicians,@jlo,SHE IS! Better than most. https://t.co/UMyEqW0zfX +07/02/2018,Musicians,@jlo,LORDT #shadesofblue +07/02/2018,Musicians,@jlo,👌🏼thismuch https://t.co/tOjHrsJv2W +07/02/2018,Musicians,@jlo,FR FR https://t.co/tcZsRbk8ud +07/02/2018,Musicians,@jlo,Woz not impressed. He could be paralyzed. Always being tough. #gluttonforpunishment #shadesofblue +07/02/2018,Musicians,@jlo,YOU KNOW WHAT TIME IT IS!! #SHADESOFBLUE https://t.co/SFFswzXoOa +07/02/2018,Musicians,@jlo,I AM. You ready? https://t.co/9oHimvaTkZ +07/01/2018,Musicians,@jlo,Bella Bella ✨♥️✨🗽 https://t.co/FgI5ldx0bw +06/30/2018,Musicians,@jlo,Hi. ✨ https://t.co/NZ5K1ypni2 +06/28/2018,Musicians,@jlo,"Luce sexy en todo momento con mi colección #JLOxCoppel +https://t.co/8OCOgVE5Jv https://t.co/wZY9bIEzlk" +06/27/2018,Musicians,@jlo,💔😢 #justiceforjunior https://t.co/br5FPQeMg0 +06/27/2018,Musicians,@jlo,"Which mood are you? +♥️😎 ♥️ +#NationalSunglassesDay https://t.co/GAIZejgIVc" +06/27/2018,Musicians,@jlo,THE SHOW MUST GO ON! AND IT WILL!!! WEST COAST YOURE UP! 10/9 @NBCWorldofDance #WORLDOFDANCE!!! https://t.co/i8MDeVbO7X +06/27/2018,Musicians,@jlo,It’s a pleasure! ♥️♥️♥️ https://t.co/S3iv7BFCEl +06/27/2018,Musicians,@jlo,She is bold. This is so dicey #worldofdance +06/27/2018,Musicians,@jlo,RT @EGTisme: I love @RoyalFluxDance on @NBCWorldofDance +06/27/2018,Musicians,@jlo,Oh no!! 🙈 #worldofdance +06/27/2018,Musicians,@jlo,STINKYFUNKY™️ https://t.co/vM8Nkjo6zz +06/27/2018,Musicians,@jlo,"RT @WannaBeLikeJLo: Dance doesn’t know age, borders, race, limits... it connects people in the most passionate way. @JLo @EGTisme this epis…" +06/27/2018,Musicians,@jlo,RT @NBCWorldofDance: .@silverbeatworld’s story is SO inspiring! #WorldofDance https://t.co/qfXMWN7D6K +06/27/2018,Musicians,@jlo,From now on it’s stinky funky everything. All day. 🙌🏼🙌🏼🙌🏼 #worldofdance https://t.co/CA2JzeiDug +06/27/2018,Musicians,@jlo,RT @jloverbby: #ShadesofBlue commercial YES!!! Hurry up Sunday! @JLo +06/27/2018,Musicians,@jlo,"RT @dredis92: Those kids are doing good, I love it! @JLo @NeYoCompound @derekhough @jennadewan #WorldOfDance" +06/27/2018,Musicians,@jlo,RT @Aly_Siragusa: it’s crazy how once you find your passion in life everything just opens up regardless of your circumstances #worldofdance… +06/27/2018,Musicians,@jlo,"When a momma cries, I cry 😢 #WorldOfDance" +06/27/2018,Musicians,@jlo,👠👠👠👠👠👠 https://t.co/JotZoxsllU +06/27/2018,Musicians,@jlo,You know I love a hair flip 💁🏻‍♀️ https://t.co/8O9wx0hd3L +06/27/2018,Musicians,@jlo,RT @Aly_Siragusa: Ohhh yes already feeling the girl power #WorldOfDance @JLo +06/27/2018,Musicians,@jlo,Elaine noticing you got me to notice this. Thank Elaine @egtisme 😘 https://t.co/39atFb8iqm +06/27/2018,Musicians,@jlo,What the world needs right now....TEN YEAR OLD BALLROOM DANCERS #worldofdance @alla_and_daniel +06/27/2018,Musicians,@jlo,"RT @NBCWorldofDance: CUTENESS OVERLOAD. @alla_and_daniel are mini ballroom royalty! +#WorldofDance https://t.co/HWhJmj0Dth" +06/27/2018,Musicians,@jlo,Look at them go! #worldofdance 🕺🏼 💃🏻 +06/27/2018,Musicians,@jlo,Derek’s mini me 😝 @derekhough #WORLDOFDANCE +06/27/2018,Musicians,@jlo,Watching dancers do what they love! 😘 https://t.co/d7zT8cWlD4 +06/27/2018,Musicians,@jlo,RT @KrystalAlese: They definitely made me a believer 😍 @NBCWorldofDance #WorldOfDance +06/27/2018,Musicians,@jlo,RT @NBCWorldofDance: We’re feeling inspired to take on the WORLD after that @JLo pep talk. 👑🔥#WorldofDance https://t.co/WOQmUhoJ3B +06/27/2018,Musicians,@jlo,"Loved the performance, choreography and power! Great job @Dance11Rudy 👌🏼👌🏼#WorldOfDance" +06/27/2018,Musicians,@jlo,Everyday! ♥️♥️♥️ https://t.co/t7XfZ1wJB7 +06/27/2018,Musicians,@jlo,LOOK AT RUDY!!!! 🙌🏼🙌🏼 https://t.co/Wk4bdpNRpn +06/27/2018,Musicians,@jlo,⚠️HERE I AM! LET’S GO!!! ⚠️ https://t.co/y5XgfMe8Gz +06/26/2018,Musicians,@jlo,#WORLDOFDANCE TONIGHT! STAKES ARE GETTING HIGHER AND THE PRESSURE IS TOO REAL! TUNE-IN AT 10/9c ON @NBC… https://t.co/io3rXsXSyu +06/26/2018,Musicians,@jlo,"Thank you @teenchoicefox for nominating #Dinero for #ChoiceLatinSong!!!! + +Voting is open NOW so LET’S GO! 💋👑💰… https://t.co/tWepFTXZP5" +06/26/2018,Musicians,@jlo,FAMILIA ♥️♥️♥️♥️♥️ https://t.co/emZKxc7azZ +06/25/2018,Musicians,@jlo,HAPPY PRIDE #loveislove ❤️🧡💛💚💙 https://t.co/6582A0l0Dx +06/25/2018,Musicians,@jlo,"♥️♥️♥️😘 thank you for watching, love doing this with you guys #shadesofblue https://t.co/AIHbly2sBb" +06/25/2018,Musicians,@jlo,"RT @LivinJENeration: ""It's good to be back."" OMFGGG. @JLo @EGTisme @nbcshadesofblue #ShadesOfBlue" +06/25/2018,Musicians,@jlo,RT @EGTisme: Now it's up to Harlee to find his killer and bring him/her/them to justice @nbcshadesofblue https://t.co/95nMtO3hxs +06/25/2018,Musicians,@jlo,"Christina...pure heart, true grit! ♥️👩🏻👧🏻 #shadesofblue" +06/25/2018,Musicians,@jlo,RT @EGTisme: Nava's dead and his killer probably wears a badge. @jlo @nbcshadesofblue +06/25/2018,Musicians,@jlo,"RT @nbcshadesofblue: ""Everything that I know is broken. I'M broken."" - Harlee Santos. 💔 #ShadesofBlue" +06/25/2018,Musicians,@jlo,"RT @WannaBeLikeJLo: “Not the terms you agreed on?” +Shady Harlee... @JLo @EGTisme #ShadesOfBlue" +06/25/2018,Musicians,@jlo,RT @nbcshadesofblue: Harlee's reached her breaking point. 💔 #ShadesofBlue https://t.co/73Dt8GKpDI +06/25/2018,Musicians,@jlo,🔦 down... #shadesofblue +06/25/2018,Musicians,@jlo,RT @sarahmjeffery3: When Harlee gives tough love but also defends her baby for standing tf up... 😭❤️ #shadesofblue @JLo @nbcshadesofblue ht… +06/25/2018,Musicians,@jlo,RT @ashjlover1102_: the fact the hr goes by to quick while watching #shadesofblue @EGTisme @jlo https://t.co/tLGiXWVTno +06/25/2018,Musicians,@jlo,"RT @BrittanyBeese: It’s the last laugh that counts, you know it when you hear it!! + +Yass woz #Shadesofblue @JLo" +06/25/2018,Musicians,@jlo,Thank you 🙏🏼👏🏼 https://t.co/43P9yLd6Ru +06/25/2018,Musicians,@jlo,RT @lovejlopez1: Okurrrrr Cristina don’t let them talk about ya mama like that @sarahmjeffery3 @JLo #Shadesofblue https://t.co/ats8N3OXDO +06/25/2018,Musicians,@jlo,Lookin our for her mama https://t.co/aYxW8wDhYt +06/25/2018,Musicians,@jlo,RT @WannaBeLikeJLo: “I confuse you with the furniture.” LOL gotta love Woz @JLo @EGTisme #ShadesOfBlue 💙😂 +06/25/2018,Musicians,@jlo,"Both of em! Maybe more, she’ll figure it out 😂🤣😂 https://t.co/WjtClCjyWP" +06/25/2018,Musicians,@jlo,RT @EGTisme: Tess has put the crew in hot water @nbcshadesofblue +06/25/2018,Musicians,@jlo,RT @megs_xo10: Ok imma really need Harlee to kick some ass cuz all these sad flashbacks make me want to personally take the intelligence te… +06/25/2018,Musicians,@jlo,Yep. https://t.co/I9dqF4SmBJ +06/25/2018,Musicians,@jlo,I 👏🏼 CANT! 👏🏼 #SHADESOFBLUE +06/25/2018,Musicians,@jlo,RT @EGTisme: With you! @nbcshadesofblue https://t.co/nQiycLlTva +06/25/2018,Musicians,@jlo,Can’t handle this #SHADESOFBLUE +06/25/2018,Musicians,@jlo,I wouldn’t. And that’s me. 🤣😂🤣 https://t.co/Xn8IVl3Htt +06/25/2018,Musicians,@jlo,Do you think Harlee saw Stahl? #SHADESOFBLUE +06/25/2018,Musicians,@jlo,.@EGTisme watch my next tweet https://t.co/pBkfGn8G6T +06/25/2018,Musicians,@jlo,OOH HARLEE SHOULDER CHECKED HER!!! OMG! SHE IS NOT PLAYIN! #shadesofblue +06/25/2018,Musicians,@jlo,Struggle! Ask @EGTisme she will be more objective!! https://t.co/6Gx7wLCUa7 +06/25/2018,Musicians,@jlo,Same. https://t.co/d0JRFSbJoi +06/25/2018,Musicians,@jlo,💔💔💔 https://t.co/uKNQBOpVrq +06/25/2018,Musicians,@jlo,This is gonna be a tough one...#shadesofblue +06/25/2018,Musicians,@jlo,“They took him from me!” 😭😭😭 #shadesofblue @EGTisme +06/25/2018,Musicians,@jlo,They don’t EVEN know! #ShadesofBlue https://t.co/Yj8JvSLntw +06/25/2018,Musicians,@jlo,RT @gpolson37: Im not crying youre crying!!! 😩😭😭 #ShadesOfBlue @JLo +06/25/2018,Musicians,@jlo,Tweet with me and @EGTisme ‼️ https://t.co/CG1TkTzzFz +06/25/2018,Musicians,@jlo,"RT @Gorgeous_jlo_: I was in a good mood waiting for Shades, but I remembered that Nava is dead and my heart broke all over again. 😫 nooooo…" +06/25/2018,Musicians,@jlo,TWEET WITH US! #SHADESOFBLUE IS BACK AND ITS ONLY GETTING STARTED! https://t.co/GMKj5MaE7n +06/24/2018,Musicians,@jlo,#SHADESOFBLUE STARTED OFF WITH A BANG...BUT THERE’S MORE TO COME‼️ TUNE-IN TOMORROW NIGHT FOR THE NEXT CHAPTER IN T… https://t.co/zFfACqUDx1 +06/22/2018,Musicians,@jlo,"RT @Univision: .@JLo descubre un punto débil de @AROD con una singular perdida (y así salvó a su ""macho bello"") https://t.co/tT6u2Vkj07 htt…" +06/22/2018,Musicians,@jlo,https://t.co/IfAtIqQhEu +06/22/2018,Musicians,@jlo,"RT @NBCWorldofDance: G - L - A - M - O - R - O - U - S = @JLO, obviously. ✨💅 #WorldofDance https://t.co/xdnOygyKZn" +06/22/2018,Musicians,@jlo,"ITS ALL IN OUR HANDS. Supporting one another in these troubled times, we can remain on the right side of history: t… https://t.co/bxqfIOMZxc" +06/21/2018,Musicians,@jlo,"but I also want you to remain hopeful—hold fast to hope, faith and Love. We first need to admit we have a problem b… https://t.co/j6Wfz8gNbt" +06/21/2018,Musicians,@jlo,"have concern for the lack of transparency about this disastrous display, in full view to the world in general, I e… https://t.co/Kl8XvZA8oe" +06/21/2018,Musicians,@jlo,"we and the people of all different races, roots, and culture have enriched this country. But the recent rhetoric an… https://t.co/1cLR4GMF6h" +06/21/2018,Musicians,@jlo,"I feel we will never forget this moment in time. Bearing witness to these atrocities and that’s what they are, I ca… https://t.co/LFqCd1ERnE" +06/21/2018,Musicians,@jlo,"Reading the news about the separation of children from their families, I can’t help but think about my own children… https://t.co/x8b1Q78k7T" +06/21/2018,Musicians,@jlo,"☀️ 😎 ✅ 🍗 🍖 ✅ 💰 💰 ✅ + +#SummerSolstice #TheLongestDay +#dinero #dinero #dinero https://t.co/Sbpv5ZWEGj" +06/21/2018,Musicians,@jlo,🌊 https://t.co/4pHltm0XBp +06/20/2018,Musicians,@jlo,#ballin’biggerthanlebron #WORLDOFDANCE #dancersareathletes #putsomerespectontheirnames +06/20/2018,Musicians,@jlo,Looking out and thinking how lucky I am...oh and yes these #Niyamasol leggings are becoming a staple to my… https://t.co/lmp0hdK0W1 +06/20/2018,Musicians,@jlo,"RT @MarioJimen69: @evaigo @JLo @evaigo Last year you were amazing. This year you are scaring me, and I mean that in a good way..😊😁😍 Congrat…" +06/20/2018,Musicians,@jlo,#relatable https://t.co/iaKYNh2BJU +06/20/2018,Musicians,@jlo,RT @theofficaltay: @JLo put some hood on off the chain sis said “off the chainezzzz” I fell out 🤣💗 #worldofDance @NBCWorldofDance @EGTisme +06/20/2018,Musicians,@jlo,RT @EGTisme: Gives me motivation too! @NBCWorldofDance https://t.co/XUi29fsPFs +06/20/2018,Musicians,@jlo,It’s a global movement 🙌🏼🙌🏼⚡️ https://t.co/oNiD09KlLc +06/20/2018,Musicians,@jlo,RT @jloverbby: #shadesofblue commercial making me want this week to fly by already!! Can’t wait😍 @JLo +06/20/2018,Musicians,@jlo,RT @theofficaltay: The fact @JLo started as a dancer and helping people achieve their goals on #WorldOfDance is truly a blessing 💗 we love… +06/20/2018,Musicians,@jlo,These kids don’t mess around. They come to play and come correct. I like that. 💥🔥🔥💥 https://t.co/POusVFCvhZ +06/20/2018,Musicians,@jlo,Incredible prowess. Loved!♥️ https://t.co/vMAuNZURwQ +06/20/2018,Musicians,@jlo,Thanks baby!! https://t.co/sypQV64veK +06/20/2018,Musicians,@jlo,Oh! @EGTisme - SEASON 4 💡??? https://t.co/EjQdTMaDkG +06/20/2018,Musicians,@jlo,Out of this world!! https://t.co/9RPv0Za29W +06/20/2018,Musicians,@jlo,Mine too. Keep it up. ♥️ https://t.co/Hzlk2hFRU5 +06/20/2018,Musicians,@jlo,RT @gpolson37: Dance is my safe haven and i dont know what id do without having dance a part of my life.Thank you #WorldOfDance for existin… +06/20/2018,Musicians,@jlo,RT @NBCWorldofDance: Tonight's #WorldofDance was filled with certified bops. 💯 What was your favorite song? 🎶 https://t.co/3QH2GJFLUy +06/20/2018,Musicians,@jlo,"RT @NBCWorldofDance: .@jonasterleckas and @rubylcastro are bringing that ballroom FIRE to @thescoremusic’s ""Legend!"" #WorldofDance +https:/…" +06/20/2018,Musicians,@jlo,"Have to hand it to my dynamite Co-panel of judges, they know it when they 👀 it!!! @NeYoCompound @derekhough https://t.co/Sbp8eBkjQM" +06/20/2018,Musicians,@jlo,"RT @EGTisme: So they found Jonas in Lithuania?!?? WOW, that's commitment right @jlo? These dances #jonasandruby mean business on @NBCWorldo…" +06/20/2018,Musicians,@jlo,Never want to discourage-only encourage! https://t.co/N0vA3oNS0h +06/20/2018,Musicians,@jlo,HERE WE GO! @EGTisme https://t.co/pMk5zzB3st +06/20/2018,Musicians,@jlo,"Everyone tonight, I felt that. Great job 👌🏼#WORLDOFDANCE https://t.co/bbL8yRp82v" +06/20/2018,Musicians,@jlo,Agree agree agree https://t.co/orCF9AXGX8 +06/20/2018,Musicians,@jlo,EVA! Whoooo! #worldofdance +06/20/2018,Musicians,@jlo,I know! Flies by doesn’t it? @EGTisme https://t.co/3f6Ch5L2Wg +06/20/2018,Musicians,@jlo,Oh you guys are gooooood https://t.co/MCdRuLJjEq +06/20/2018,Musicians,@jlo,"RT @NBCWorldofDance: We all were thinking it, @JLo said it. 👌 #WorldofDance https://t.co/tPS5nH49Ui" +06/20/2018,Musicians,@jlo,"RT @EGTisme: I mean, #expressionz are so in sync it's crazy. Those spins were wild on @NBCWorldofDance" +06/20/2018,Musicians,@jlo,RT @derekhough: Nailed it ! https://t.co/Imt5ausEPm +06/20/2018,Musicians,@jlo,♥️@NBC! https://t.co/QQEzozltyc +06/20/2018,Musicians,@jlo,RT @TaylorJLover724: Omg @JLo stopppp I can’t you’re too cute with these facial expressions on #WorldOfDance 😩😩😩❤️ PS They were INCREDIBLE +06/20/2018,Musicians,@jlo,"Savion Glover, Gregory Hines, Nicholas Brothers! World’s greatest tap men, Lucas has to work to get there. But he h… https://t.co/6hpR5PDy7A" +06/20/2018,Musicians,@jlo,Really hard! Don’t make me choose (yet!) 😉 https://t.co/q1SPyMGaKg +06/20/2018,Musicians,@jlo,Omg Lucas’ style! @EGTisme #WorldofDance +06/20/2018,Musicians,@jlo,Look at that @EGTisme @NeYoCompound @jennadewan @derekhough 👌🏼👌🏼 https://t.co/RcmaKciW8t +06/20/2018,Musicians,@jlo,RT @Gorgeous_jlo_: I like #TheBradas a loooottt. #WorldofDance @JLo sooo sick 😍👏🏼🔥 +06/20/2018,Musicians,@jlo,Wow! That bag was a helluva prop. FLAWLESS #WORLDOFDANCE https://t.co/waI6vckhb3 +06/20/2018,Musicians,@jlo,RT @EGTisme: thank you for noticing! Love tweeting and interacting with @jlo fans and fans of @NBCWorldofDance and @nbcshadesofblue https:… +06/20/2018,Musicians,@jlo,"Passion, intensity, technique. 👌🏼 #worldofdance https://t.co/XaTdO4mWja" +06/20/2018,Musicians,@jlo,"What do you think @EGTisme ? Rough, right? https://t.co/lWwtcYe2wD" +06/20/2018,Musicians,@jlo,Y’all ready for @evaigo?? #worldofdance +06/20/2018,Musicians,@jlo,Give me all the SPARKLE. You know I love a sparkle ⚡️ ✨ https://t.co/arskIcHTxg +06/20/2018,Musicians,@jlo,Sorry LeBron! @EGTisme and I love you tho! 🙌🏼 https://t.co/KWJGTKzV60 +06/20/2018,Musicians,@jlo,"Great performance, very strong. Intensity! https://t.co/M4fWwwCh5c" +06/20/2018,Musicians,@jlo,What a saucy duo Jonas and Ruby are #WORLDOFDANCE +06/20/2018,Musicians,@jlo,TWEET WITH US! https://t.co/JGRvmgBTsC +06/20/2018,Musicians,@jlo,GO TIME YALL #WORLDOFDANCE 💃🏻 https://t.co/DGGUY08nkd +06/19/2018,Musicians,@jlo,THE PASSION AND THE 🔥!!WE GOT IT! 👌🏼 #WORLDOFDANCE TONIGHT!! @NBC 10/9c https://t.co/Q1888Z8Tg3 +06/19/2018,Musicians,@jlo,A FAN FAVE IS BACK! CAN’T WAIT FOR YOU ALL TO SEE WHO IS BRING-ING IT‼️#WORLDOFDANCE TUESDAYS 10/9c ON @NBC 💃🏾 🕺🏻💃🏻… https://t.co/EL57Xr2lUy +06/18/2018,Musicians,@jlo,Thank u all for watching! WOW! Helluva season ahead #shadesofblue https://t.co/28pFZjKfiM +06/18/2018,Musicians,@jlo,Things will never be the same.... #SHADESOFBLUE +06/18/2018,Musicians,@jlo,Nava... 😢😢😢 +06/18/2018,Musicians,@jlo,SHOOK‼️ SHOOKETH‼️‼️ #shadesofblue +06/18/2018,Musicians,@jlo,Can’t have it both ways! #Shadesofblue +06/18/2018,Musicians,@jlo,"RT @EGTisme: Harlee: they killed one of their own men, WOZ. WOZ: so@did we... #ripsaperstein @nbcshadesofblue" +06/18/2018,Musicians,@jlo,"RT @TaylorJLover724: If you thought Harlee was badass before, clearly you were wrong. She just keeps getting better. Great job @JLo @EGTism…" +06/18/2018,Musicians,@jlo,🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️🏃🏻‍♀️ https://t.co/U2TPhGNRlJ +06/18/2018,Musicians,@jlo,Is having the time of her life rn 🤣🥊 https://t.co/lHeF45e7DS +06/18/2018,Musicians,@jlo,Yup @EGTisme https://t.co/fsBYkovDEK +06/18/2018,Musicians,@jlo,He knows...something...ok there you go #Shadesofblue +06/18/2018,Musicians,@jlo,RT @CJaskowski: @JLo happy fathers day to harlee!! +06/18/2018,Musicians,@jlo,Omg #ShadesofBlue +06/18/2018,Musicians,@jlo,But she’s being vulnerable too... https://t.co/rTkmJzr4Gc +06/18/2018,Musicians,@jlo,Gotta be 💪🏼 https://t.co/d83pNUnaIA +06/18/2018,Musicians,@jlo,I didn’t give him a chance to explain... #Harleesantos #shadesofblue +06/18/2018,Musicians,@jlo,Imagine going home to your novio and tell him about your day...Harlee is trying to ✌🏼keep it together✌🏼...she’s sti… https://t.co/ts6A4sPgH5 +06/18/2018,Musicians,@jlo,This scene! @EGTisme https://t.co/FEeoXPAQTK +06/18/2018,Musicians,@jlo,MORE INCENTIVE TO STAY TUNED‼️‼️ https://t.co/mFkMXk6ZZF +06/18/2018,Musicians,@jlo,WHELP!! #shadesofblue DAMN!!! +06/18/2018,Musicians,@jlo,Oh this is dark 👀 #ShadesOfBlue +06/18/2018,Musicians,@jlo,It be like that sometimes!🤷🏽‍♀️ https://t.co/EEM7AgQOMB +06/18/2018,Musicians,@jlo,So twisted. Beyond twisted. https://t.co/3Qac4UVwG4 +06/18/2018,Musicians,@jlo,Go watch with papi! I always say FAMILY FIRST...thennnn you watch #shadesofblue💙 https://t.co/8IeOENtOOb +06/18/2018,Musicians,@jlo,@jloverbby 👍🏼 +06/18/2018,Musicians,@jlo,RT @mlo_jlo: Let’s make #ShadesOfBlue trend before it start @JLo @EGTisme 💙💙 +06/18/2018,Musicians,@jlo,HARLEE BEEN THRU IT!! WHOOO!! 💙💙💙 #shadesofblue https://t.co/MySrQvzCqe +06/18/2018,Musicians,@jlo,Watch with me!💙💙💙 https://t.co/nEWUkKEZID +06/18/2018,Musicians,@jlo,"Appreciating you and loving you today and everyday for being our fearless leader, our everyday hero, for making us… https://t.co/5dVXnuHw5p" +06/18/2018,Musicians,@jlo,"HAPPY “FARTER” DAY FLACO 🤣🤣🤣 @MarcAnthony + +🥥 ♥️🥥 ♥️🕺🏻 https://t.co/WrlBz4x75U" +06/17/2018,Musicians,@jlo,FAMILY FIRST 💙@nbcshadesofblue RETURNS TONIGHT! 10/9c ON @NBC! #ShadesOfBlue https://t.co/naiHEVo2Ax +06/17/2018,Musicians,@jlo,"RT @nbcshadesofblue: One. Day. Away! 👏 + +Tell us what you're most excited to see in the final season of #ShadesofBlue. 👇 https://t.co/uSVZFA…" +06/16/2018,Musicians,@jlo,💯 MILLION @VEVO VIEWS AND ⬆️ MUCHAS GRACIAS MI GENTE/THANK YOU TO EVERYONE FOR SUPPORTING #ELANILLO ♥️🌟♥️ https://t.co/p3ydqeM9fW +06/16/2018,Musicians,@jlo,LET’S TALK ABOUT IT 🔥 https://t.co/EctRmnhXXC +07/02/2018,Musicians,@BebeRexha,My ears are so so so clogged. What do I do. +07/02/2018,Musicians,@BebeRexha,Sean Paul appreciation tweet. Let’s remember these hits. Gimme the light: https://t.co/dRiMQ81ndz Like Glue: https://t.co/y6kES494PR +07/01/2018,Musicians,@BebeRexha,I’m a mess. I’m a loser. I’m a hater. I’m a user. #ImAMess #MusicVideo #ComingSoon https://t.co/ZIMuV9VCpZ +07/01/2018,Musicians,@BebeRexha,RT @lenadunham: @BebeRexha Right back at you bebebaby. It’s gonna be a good life (at least that’s what my therapist say) +07/01/2018,Musicians,@BebeRexha,Needed it badly. I’m still very sick but feeling a bit better. I’m so sorry to have missed Summerfest but there was… https://t.co/ygifxFtNNZ +07/01/2018,Musicians,@BebeRexha,I just slept for 20 hours. +07/01/2018,Musicians,@BebeRexha,Omg. I love you so much @lenadunham. 😭 https://t.co/XHUR46putr +06/29/2018,Musicians,@BebeRexha,"Current mood: happy, over fuck boys, damn this iced coffee is good, my butt looks good in these jeans, this drake album is so good." +06/29/2018,Musicians,@BebeRexha,I’ve been so emotional lately and I’m not even pmsing. 💁🏼‍♀️ +06/29/2018,Musicians,@BebeRexha,RT @BebeRexhaHQ: Congratulations on the release of #Expectations @BebeRexha! We made this video to show you how proud and happy we are for… +06/29/2018,Musicians,@BebeRexha,"This a roley not a stopwatch, shit don't ever stop." +06/29/2018,Musicians,@BebeRexha,RT @MrsSOsbourne: . @BebeRexha is an absolute breath of fresh air. She is honest and talented with an energy and charisma that doesn’t sto… +06/29/2018,Musicians,@BebeRexha,@CBSDaytime ❤️🙏🏻 +06/29/2018,Musicians,@BebeRexha,❤️❤️❤️❤️ @JulieChen https://t.co/fe4i7BSacK +06/29/2018,Musicians,@BebeRexha,I adore you beyond words @MrsSOsbourne. I idolize you and your strength. Thank you for this. ❤️❤️❤️ https://t.co/8GDB9lJQfb +06/28/2018,Musicians,@BebeRexha,@justPEREZplay @kiss957 ❤️❤️❤️ +06/28/2018,Musicians,@BebeRexha,RT @justPEREZplay: Have you heard @BebeRexha's #ImAMess? I'm blastin it NEXT on @kiss957! 📻 https://t.co/HbXNXeaLlZ #BebeRexha https://t.co… +06/28/2018,Musicians,@BebeRexha,RT @PopCraveNet: Bebe Rexha tears up about being on 'The Talk': “I literally watched this show at home when I was in Staten Island trying t… +06/28/2018,Musicians,@BebeRexha,@livinqhere Yes babe +06/28/2018,Musicians,@BebeRexha,She wasn’t there. I missed you Queen @JulieChen 😞 https://t.co/XTQmjeLgoU +06/28/2018,Musicians,@BebeRexha,I had the time of my life today on @TheTalkCBS. Thank you to all of the amazing ladies and the whole team there for… https://t.co/85eTLEgmW6 +06/28/2018,Musicians,@BebeRexha,RT @jaymichaels13: Fav new song #ImAMess @BebeRexha 💥🔥🎉 @justtranter ❤️❤️❤️ @wbr https://t.co/iQoGuf1plB +06/28/2018,Musicians,@BebeRexha,@kiwisays ❤️🙏🏻 +06/28/2018,Musicians,@BebeRexha,"RT @MikeAdamOnAir: CONGRATS #BEBEREXHA!!! #Expectations, the first official studio album from @BebeRexha, has debuted in the top ten on iTu…" +06/28/2018,Musicians,@BebeRexha,"RT @Fresh1027NY: CONGRATS #BEBEREXHA!!! #Expectations, the first official studio album from @BebeRexha, has debuted in the top ten on iTune…" +06/28/2018,Musicians,@BebeRexha,Adore you @DellaCrews12 https://t.co/f16yn3Iy3i +06/28/2018,Musicians,@BebeRexha,@997now @ArianaGrande @STJOHNSOFIERCE Thank youuuuu #ImAMess +06/28/2018,Musicians,@BebeRexha,Omg I love all threeeee of you so much. @SofiaCarson @TanyaRad @paudacchar ❤️ https://t.co/HnugQDQOqu +06/28/2018,Musicians,@BebeRexha,@DDLECOURS ❤️❤️❤️❤️ +06/28/2018,Musicians,@BebeRexha,Standing united for equality and justice tonight on #TrailblazerHonors at 9:30/8:30c on @VH1. Tune in ❤️ (📸:… https://t.co/PHk2xLfimr +06/28/2018,Musicians,@BebeRexha,I’m A Mess this morning on @TheTalkCBS. Special versions of In The Name Of Love and Meant To Be on @VH1 #TrailblazerHonors tonight. ❤️ +06/28/2018,Musicians,@BebeRexha,RT @VH1: The girl can SING! We celebrated game changers and everyday activists for Trailblazer Honors. Catch @BebeRexha open #TrailblazerHo… +06/28/2018,Musicians,@BebeRexha,"RT @TheTalkCBS: TODAY: We're sizzling hot when the talented @BebeRexha joins us to perform music from her new album #Expectations! Plus, th…" +06/27/2018,Musicians,@BebeRexha,Happy birthday to the amazing @Shelley_Rome Thank you for always making me feel welcomed at the radio station 💕💕💕 +06/27/2018,Musicians,@BebeRexha,Love you Tanya. You’re the best ever https://t.co/IglKMMe9b8 +06/27/2018,Musicians,@BebeRexha,You Guys I’m so excited I saw the first incredibles this week and I was obsessed. now I’m gonna go watch the second one today in 3D woooo. +06/27/2018,Musicians,@BebeRexha,"RT @ChartsBebeRexha: 🇪🇸 iTunes: Spain + +38. @BebeRexha — “Shining Star” (+22) *peak #32* https://t.co/EZ6uBc6LH0" +06/27/2018,Musicians,@BebeRexha,RT @SiriusXMHits1: We had SO much fun with @BebeRexha! You are a firecracker girl!! We love ya and congrats on #Expecations 💖💖 https://t.co… +06/27/2018,Musicians,@BebeRexha,RT @SamarSamierr: Look who’s number one ☝️ in iTunes Egypt !! @BebeRexha https://t.co/FsCqlApE7O +06/27/2018,Musicians,@BebeRexha,Lolol https://t.co/93swW1PTpP +06/27/2018,Musicians,@BebeRexha,RT @BebeUpdater: Update| ‘Knees’ has now become the 4th best selling New Release of the week. https://t.co/CdyWApHzYG +06/27/2018,Musicians,@BebeRexha,WHAT https://t.co/J0bKcKFBBB +06/27/2018,Musicians,@BebeRexha,😱 what https://t.co/Fs6vF3Kl2u +06/27/2018,Musicians,@BebeRexha,RT @TeenChoiceFOX: .@BebeRexha + @FLAGALine = #ChoiceCountrySong. Is it Meant To Be? 🤷‍♀️ You can make it happen: RT to vote! #TeenChoice h… +06/26/2018,Musicians,@BebeRexha,"If someone tells you, you can’t. You don’t scream, you dont yell. You just do it and that will be the loudest thing they’ve ever heard." +06/26/2018,Musicians,@BebeRexha,"I can’t believe this.I finally put out an album.All the no’s I got, All the nonbelievers, All the haters.They never stopped me & never will." +06/26/2018,Musicians,@BebeRexha,It’s okay baby. Stream it online. I love you no matter what https://t.co/GgapUiUh57 +06/26/2018,Musicians,@BebeRexha,Lol. Do you guys want one? Let me talk to my team. Hold please. https://t.co/8sx5eyDpnH +06/26/2018,Musicians,@BebeRexha,😍😍😍. https://t.co/kv5kn13Wda +06/26/2018,Musicians,@BebeRexha,EXACTLY!!! https://t.co/sn57rhtMBd +06/26/2018,Musicians,@BebeRexha,Yay to being imperfect and a mess and a little crazy sometime! Woooo!!! +06/26/2018,Musicians,@BebeRexha,"RT @headlineplanet: Pop Radio Add Leaders: +1) @BebeRexha +2) @KygoMusic & @Miguel +3t) @nickiminaj & @ArianaGrande +3t) @alessiacara +5) @5sos…" +06/26/2018,Musicians,@BebeRexha,I just found out I’m A Mess is #1 Most Added at Top 40 today!!!!!!!!!!!!!!!!!!! Thank you to my incredible @wbr tea… https://t.co/bwZU0B4gpy +06/26/2018,Musicians,@BebeRexha,Best @Target run of my life. Thank you so much for supporting #Expectations ❤️❤️❤️ https://t.co/GRoqs9YrlN +06/26/2018,Musicians,@BebeRexha,I’m a mess for your love it ain’t new. +06/26/2018,Musicians,@BebeRexha,"RT @livycone: When Bebe Rexha said “I’m a Mess” +I felt that." +06/26/2018,Musicians,@BebeRexha,😱 https://t.co/m4zlMhHBi1 +06/26/2018,Musicians,@BebeRexha,Thanks @hmvtweets! #Expectations is out now xo https://t.co/ivlLOgPdE9 https://t.co/bX6Cmz4VGX https://t.co/EACD3Ivz1y +06/26/2018,Musicians,@BebeRexha,"RT @billboard: .@BebeRexha performs emotional new single ""I'm A Mess"" on ""The Tonight Show"" https://t.co/oQB8A7hSv2 https://t.co/mbFu8ZEtva" +06/26/2018,Musicians,@BebeRexha,I LOVED this performance so much. One of my favorite moments ever. “IM A MESS” LIVE: https://t.co/PWGSg1sejs +06/26/2018,Musicians,@BebeRexha,Woah https://t.co/yYKXPRDnDI +06/26/2018,Musicians,@BebeRexha,"RT @PFBRreal: Acompanhada de bailarinos e cenário hospitalar, @BebeRexha faz performance de “I’m a Mess” no The Tonight Show - https://t.co…" +06/26/2018,Musicians,@BebeRexha,Thank you https://t.co/kF3zRtYNiB +06/26/2018,Musicians,@BebeRexha,RT @xMusicMayhemx: WOW! @BebeRexha's performance on The Tonight Show Starring @jimmyfallon tonight was INCREDIBLE! 🔥😍 #IMAMESS #Expectation… +06/26/2018,Musicians,@BebeRexha,"RT @FallonTonight: .@BebeRexha debuts her new song ""I'm a Mess"" https://t.co/h84M68Xbe1 https://t.co/uoNoPkvUwa" +06/26/2018,Musicians,@BebeRexha,EAST COAST!!!! 2 mins until “I’m A Mess” on @FallonTonight. Turn on NBC right now!!!! +06/26/2018,Musicians,@BebeRexha,"RT @billboard: These are 6 of @BebeRexha's most intoxicating lyrics from new ""Expectations"" album https://t.co/O57mvK2857 https://t.co/H24t…" +06/26/2018,Musicians,@BebeRexha,I’ll be on Watch What Happens Live at 11pm Don’t miss it!!!! On @Bravotv https://t.co/MISf9kKHSY +06/26/2018,Musicians,@BebeRexha,RT @Andy: Tweet me Qs all night for MUSIC SUPERSTARS @BebeRexha & @bryanadams! They're on #WWHL tonight - live at 11! +06/26/2018,Musicians,@BebeRexha,RT @BravoWWHL: TONIGHT at 11/10c we’re LIVE w/ @BebeRexha & @bryanadams! Start tweeting in your questions to @Andy! https://t.co/ASWeyt4T5c +06/26/2018,Musicians,@BebeRexha,RT @BravoWWHL: Keep tweeting in your questions to @Andy for @BebeRexha & @bryanadams! +06/25/2018,Musicians,@BebeRexha,Tonighttttt https://t.co/Hyj3bNLIhd +06/25/2018,Musicians,@BebeRexha,😱😱😱😱 https://t.co/tvDpcH3DOH +06/25/2018,Musicians,@BebeRexha,"RT @BebeRexhaHQ: UK Top Albums Midweek Chart: +18. @BebeRexha - #Expectations +Keep buying, UK Rexhars!" +06/25/2018,Musicians,@BebeRexha,😱😱😱😱😱😱 https://t.co/q2oM0T702n +06/25/2018,Musicians,@BebeRexha,What’s your fav song on Expectations? +06/25/2018,Musicians,@BebeRexha,RT @arjanwrites: #ICMYI The state of Pop is strong... I'm playing you all the bops... Listen to this week's @Beats1 #AListPopLive on demand… +06/25/2018,Musicians,@BebeRexha,Okay. I’ve got to go to sleep now because I’m performing on @FallonTonight Tomorrow. Here is a clip of rehearsal fo… https://t.co/zvvTXVXMqJ +06/25/2018,Musicians,@BebeRexha,Forever. https://t.co/vw0CmHns6F +06/25/2018,Musicians,@BebeRexha,"Anyways, I’m always here. Just listen to my songs and I’m right there with you. Always." +06/25/2018,Musicians,@BebeRexha,"You are only really “alone,” unless you want to be. And sometimes I like it." +06/25/2018,Musicians,@BebeRexha,The truth is you’re never really alone. +06/25/2018,Musicians,@BebeRexha,I’m a mess https://t.co/nx7DNy0KCk +06/25/2018,Musicians,@BebeRexha,"Do you ever sleep, troubles in your head? Wrapped up in regrets? +Reaching for the help you gotta find inside yourself. Stuck inside a spell" +06/25/2018,Musicians,@BebeRexha,"Do you ever sit in silence all alone +Drowned out by your thoughts +Trying to get a grip but just keep on spiraling down +Voices getting loud" +06/25/2018,Musicians,@BebeRexha,"Baby Maybe, I’m just comfortable being sad." +06/25/2018,Musicians,@BebeRexha,Thank you Pete 💕🙏🏼 https://t.co/Rh9GHbPaj2 +06/25/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: iTunes WW 🌎 + +#3. Expectations (=) *peak #3 for 3 days* https://t.co/jmzvjHYQoj" +06/24/2018,Musicians,@BebeRexha,Ask Me Anything on @reddit: https://t.co/bgxCft9R1h https://t.co/kWYKUiGytX +06/24/2018,Musicians,@BebeRexha,🙇🏼‍♀️🙆🏼‍♀️🙏🏼 https://t.co/uCDnQxX3yM +06/24/2018,Musicians,@BebeRexha,😭 https://t.co/Ul68Sa2FzU +06/24/2018,Musicians,@BebeRexha,RT @simply__sarai: @BebeRexha It’s a stomach virus going around be careful y’all... +06/24/2018,Musicians,@BebeRexha,For real?! https://t.co/1rHdWIrCuO +06/24/2018,Musicians,@BebeRexha,😬 https://t.co/yKHGYaaYbq +06/24/2018,Musicians,@BebeRexha,I wonder if there is a virus going around +06/24/2018,Musicians,@BebeRexha,Okay. I’ve been throwing up all day and now my manager is sick. Hot Sweats and throwing up and all and we are on a plane. God help us. 🤮🤮🤮 +06/23/2018,Musicians,@BebeRexha,Playing @B96Chicago @Pepsi #SummerBash TODAY! Get tix at the Allstate Arena box office. Come party with me… https://t.co/TyGptonAlO +06/23/2018,Musicians,@BebeRexha,Just took my 53rd flight of the year +06/23/2018,Musicians,@BebeRexha,😭🙆🏼‍♀️🙇🏼‍♀️ https://t.co/NWarq17nvd +06/23/2018,Musicians,@BebeRexha,I want an owl 🙇🏼‍♀️ like the one Harry Potter has. But I wanna rescue one. I dunno. Is that weird? +06/23/2018,Musicians,@BebeRexha,The twist on Expectations. Every song is about bear. https://t.co/DrhJvIffTM +06/23/2018,Musicians,@BebeRexha,I’m A Mess https://t.co/gr633qpvMS +06/23/2018,Musicians,@BebeRexha,“Ferrari” https://t.co/fd421KOXWw +06/23/2018,Musicians,@BebeRexha,RT @pandoramusic: .@BebeRexha's anticipated debut album is here. Find out what 3 words the pop singer-songwriter chose to describe ‘Expecta… +06/23/2018,Musicians,@BebeRexha,Going to bed with the biggest smile on my face. I’ll never forget this day. Ever. Thank you to everyone around the… https://t.co/d55dwjkeBh +06/22/2018,Musicians,@BebeRexha,Got one. https://t.co/nZ2Hi0sGkS +06/22/2018,Musicians,@BebeRexha,Going to target on 34th street nyc to buy my album 🙇🏼‍♀️ +06/22/2018,Musicians,@BebeRexha,My mood all day @radiodisney #RDMAS https://t.co/TI15vbH27y +06/22/2018,Musicians,@BebeRexha,Holy shit #3 worldwide 🌎 🌍😭 https://t.co/pxFJT9gHjR +06/22/2018,Musicians,@BebeRexha,RT @GMA: SURPRISE! Congrats to @BebeRexha for winning #TheFreshest and #PlayItAgain at the #RDMA! Make sure to watch the @RadioDisney Music… +06/22/2018,Musicians,@BebeRexha,"RT @chartdata: US Certifications (@RIAA): @BebeRexha, Expectations Gold (500,000)." +06/22/2018,Musicians,@BebeRexha,Expectations is certified GOLD on the first day. I am speechless. Taking it all in. At breakfast with my family and friends. ❤️❤️❤️ +06/22/2018,Musicians,@BebeRexha,"RT @billboard: .@BebeRexha rocks Central Park with ""I'm a Mess"" performance on ""GMA"" https://t.co/cqMdsqi4wJ https://t.co/xp1ZNliw77" +06/22/2018,Musicians,@BebeRexha,RT @radiodisney: We have our first #RDMA winner! Congrats to @BebeRexha on winning #TheFreshest AND #PlayItAgain for #MeantToBe with @FLAGA… +06/22/2018,Musicians,@BebeRexha,"RT @Spotify: Everything you expected. +@beberexha's debut album is here. Listen now https://t.co/EyFjWT5Ank https://t.co/3YUiYD4Ad3" +06/22/2018,Musicians,@BebeRexha,RT @WhaleReport: Bebe Rexha’s just released her new album #Expectations and it has already reached the top ten in 47 countries around the w… +06/22/2018,Musicians,@BebeRexha,"RT @BBRexhaCharts: WE DID IT, REXHARS! + +@BebeRexha won two categories on Radio Disney Music Awards at the categories ""The Freshest: Best Ne…" +06/22/2018,Musicians,@BebeRexha,#Expectations is out everywhere now. https://t.co/y3ag0j8lKz https://t.co/XVW9GqW46b +06/22/2018,Musicians,@BebeRexha,"RT @GMA: STILL AHEAD ON @GMA: @BebeRexha performs LIVE in Central Park! GET TO A TV! + +RT if you're excited! + +Tweet us using #BEBEREXHAonGM…" +06/22/2018,Musicians,@BebeRexha,Just got to @GMA!!!!!! https://t.co/pzsmanVtt6 +06/22/2018,Musicians,@BebeRexha,Unreal. I’ll never forget this. https://t.co/FjvqgV74hN +06/22/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: .@BebeRexha's 'Expectations' is charting in the top 10 of 26 countries, including the UK." +06/22/2018,Musicians,@BebeRexha,"RT @amazonmusic: .@BebeRexha insta takeover happening NOW https://t.co/6nBtmpSoBA +#ExpectationsIsComing https://t.co/M8P5VJhLuo https://t.…" +06/21/2018,Musicians,@BebeRexha,"RT @GMA: GET READY. #BEBEREXHAonGMA tomorrow in Central Park! Who's excited?! + +See you bright and early, @beberexha! https://t.co/6qh1dgcrCQ" +06/21/2018,Musicians,@BebeRexha,😭🙏🏼 https://t.co/YVDzZ2Defo +06/21/2018,Musicians,@BebeRexha,"RT @eshaangill: @BebeRexha Congratulations! You’re already #1 at the Pop Charts on iTunes (India🇮🇳) +and +#4 on iTunes Chart (India🇮🇳) +In…" +06/21/2018,Musicians,@BebeRexha,RT @stylesmitchwll: @BebeRexha PLEASE LOOK THIS 😭😭😭😭 https://t.co/MHRFbvogyb +06/21/2018,Musicians,@BebeRexha,Okayyy UK. 😁😁😁 https://t.co/ZqLjjEhMJT +06/21/2018,Musicians,@BebeRexha,Wow https://t.co/ZLP6M7FC4X +06/21/2018,Musicians,@BebeRexha,🙇🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️ https://t.co/nUQkR1MGsF +06/21/2018,Musicians,@BebeRexha,"RT @BebeRexhaHQ: #Expectations is Top 10 in 7 countries already! @BebeRexha + +iTunes: +#2 Fiji +#4 New Zealand +#4 Taiwan +#6 Indonesia +#7 Aust…" +06/21/2018,Musicians,@BebeRexha,Yesssss. Airing next week though xoxo https://t.co/ZxHEbC4ZiI +06/21/2018,Musicians,@BebeRexha,Got you https://t.co/rsZ52qmjLw +06/21/2018,Musicians,@BebeRexha,My favoriteeeeee hoodie ever 😭 https://t.co/sRTd6roN1w https://t.co/wY3eOlsWeP +06/21/2018,Musicians,@BebeRexha,🛒 🛍 https://t.co/sRTd6roN1w +06/21/2018,Musicians,@BebeRexha,I always knew I loved Brazil 🙇🏼‍♀️ +06/21/2018,Musicians,@BebeRexha,"RT @RexhaBrasil: ITunes BR 🇧🇷: + +30. I'm a mess - @BebeRexha (+10) NEW PEAK + +#ExpectationsTomorrow https://t.co/m87xw5bYgT" +06/21/2018,Musicians,@BebeRexha,Me waiting for everyone’s reactions on expectations... https://t.co/bP50GahgQF +06/21/2018,Musicians,@BebeRexha,Pre-save #Expectations on @Spotify before it comes out TONIGHT: https://t.co/yBcnEr5xYW +06/21/2018,Musicians,@BebeRexha,Good morning everyone. My album comes out at midnight tonight. I’m low key freaking out. #Expectations +06/21/2018,Musicians,@BebeRexha,"RT @BebeRexha_Peru: Countdown: +#ExpectationsTomorrow +@BebeRexha https://t.co/8GjKJk5Nd6" +06/21/2018,Musicians,@BebeRexha,RT @gabriel5souza: 1 Day Expectations @BebeRexha https://t.co/roZc5NqT0S +06/21/2018,Musicians,@BebeRexha,RT @Andr3w_95: This album is like I Don’t Wanna Grow Up meets All Your Fault. It’s cohesive yet experiments. Honestly the album of 2018 😭😭😭… +06/21/2018,Musicians,@BebeRexha,Hear #Expectations the second it comes out on Friday 💗 Pre-add it now on @AppleMusic: https://t.co/no15DAEqt2 https://t.co/oFE2VRqc87 +06/20/2018,Musicians,@BebeRexha,Yes https://t.co/rY4pUXnoFg +06/20/2018,Musicians,@BebeRexha,Sometimes I just go to the bathroom and sit on the toilet to get away from everyone and have me time. +06/20/2018,Musicians,@BebeRexha,I’m cominggggggg @ElvisDuranShow stuck in a little traffic!!! Don’t miss it everyone!!!!! 8:35am est https://t.co/gfTOwAyFfj +06/20/2018,Musicians,@BebeRexha,RT @ElvisDuranShow: WEDNESDAY: We have our girl @beberexha 🔥😍 LIVE in-studio with us at 8:35 AM ET for some quality BFF time. 😊💯 Tune in: h… +06/20/2018,Musicians,@BebeRexha,@fcknjaaay you are amazing +06/20/2018,Musicians,@BebeRexha,RT @fcknjaaay: I heard it was the one year anniversary of @BebeRexha’s iconic instagram live so I had to do this 💀 if you’re a pervert get… +06/19/2018,Musicians,@BebeRexha,Thank you Rexhars #ImAMess https://t.co/4DMOMJ43dY +06/19/2018,Musicians,@BebeRexha,https://t.co/fHBv7avSBG +06/19/2018,Musicians,@BebeRexha,Thank you @BBCR1 for playing #ImAMess on Best New Pop 💗 https://t.co/AbwQxOOngl +06/19/2018,Musicians,@BebeRexha,😱OH MY GOD https://t.co/L5MrzVNyOP +06/19/2018,Musicians,@BebeRexha,https://t.co/4nmaxQFqRo +06/19/2018,Musicians,@BebeRexha,Lmfaoooooo 😂😂 https://t.co/l8906SUFUU +06/19/2018,Musicians,@BebeRexha,RT @chayennemjq: @BebeRexha What happens when you are in the store and ferrari comes on https://t.co/mp61ZCxRvl +06/19/2018,Musicians,@BebeRexha,3 days till expectations. +06/19/2018,Musicians,@BebeRexha,He banged on the door. Trust me the driver saw him. https://t.co/UFflSjSmGD +06/19/2018,Musicians,@BebeRexha,Power trip https://t.co/rB4c7dLA7U +06/19/2018,Musicians,@BebeRexha,I just saw someone run to the bus and literally touch the door and the driver closed the door on him and drove away. 😔 @MTA +06/19/2018,Musicians,@BebeRexha,"Dear @MTA bus drivers, if you see someone running for the bus, waiting 2 secs won’t kill you but will make someone’s day better." +06/19/2018,Musicians,@BebeRexha,Cool beans +06/19/2018,Musicians,@BebeRexha,🙆🏼‍♀️🙆🏼‍♀️🙆🏼‍♀️ https://t.co/2ll7dVh55c +06/19/2018,Musicians,@BebeRexha,Yay new Merch done. Comingggg +06/19/2018,Musicians,@BebeRexha,💕💕💕💕❤️ https://t.co/EGWY0Qse7t +06/19/2018,Musicians,@BebeRexha,RT @dirtydannyyy: me & my 2 bebe rexha mutuals next friday when the album comes out https://t.co/pHE2wHr15A +06/19/2018,Musicians,@BebeRexha,RT @vinrago5: Thanks @BebeRexha for coming back to Tville to talk to the Student Organization!! It was so great and inspirational to hear s… +06/19/2018,Musicians,@BebeRexha,"RT @nikki_hinz: thank you so much for coming to tottenville!! my friends and I had the best time ever, also btw you sound amazing live 💜💜💜💜…" +06/19/2018,Musicians,@BebeRexha,😌😌😌 https://t.co/eRx1KNLDOV +06/19/2018,Musicians,@BebeRexha,"RT @RoTierno: Today @TottenvilleSO18 had a Sing-a-Long with @BebeRexha , how was your day? @THSSTEAM @PirateTVTHS @SIBFSC #PirateFam #Pirat…" +06/18/2018,Musicians,@BebeRexha,"RT @TIDAL: Celebrate #Pride with playlists from @BebeRexha, @AnneMarie, @musicpronoun and more on https://t.co/DOEFADJLse https://t.co/OC33…" +06/18/2018,Musicians,@BebeRexha,"RT @lottieslilo: I made makeup inspired by #MeantToBe music video + +@BebeRexha I'm so proud of you, queen. You deserve everything that you…" +06/18/2018,Musicians,@BebeRexha,"I’m looking for allllll your #ImAMess videos. Covers, musicallys, reactions, dances, reply them to me 💞" +06/18/2018,Musicians,@BebeRexha,"RT @amazonmusic: Spend your #MusicMonday w. @BebeRexha! #JustAsk, ""Alexa, play the Song of the Day"" to stream ""I'm a Mess"" https://t.co/aZC…" +06/18/2018,Musicians,@BebeRexha,RT @stoesselsabby: i'm a mess by @BebeRexha is a masterpiece +06/18/2018,Musicians,@BebeRexha,RT @JDudleyRowe: Just finished watching @BebeRexha’s On the Record @AppleMusic film. I love her so much because she continues to inspire me… +06/18/2018,Musicians,@BebeRexha,RT @Jessie88967722: ‘I’m a mess’ by Bebe Rexha is actually amazing I recommend that everyone gives it a listen and downloads it she deserve… +06/18/2018,Musicians,@BebeRexha,"RT @IhlenAmber: Hey @BebeRexha I’m a mess over you and obsessed with your new single “I’m a mess” because it’s so relatable! +Coincidence? I…" +06/18/2018,Musicians,@BebeRexha,RT @Mbreezy_xo: I’m in love with song & i can’t wait for Friday @BebeRexha https://t.co/NX57mkKr21 +06/18/2018,Musicians,@BebeRexha,😱 https://t.co/OUV7xpmTsg +06/18/2018,Musicians,@BebeRexha,Yesterday. https://t.co/nnyKJsn3Ht +06/18/2018,Musicians,@BebeRexha,RT @UpdatesBeRexha: 📷| Bebe na ściance #Kiss108kissConcert 😍 https://t.co/NFJJvNDBz3 +06/18/2018,Musicians,@BebeRexha,@LokiIsOurKingxx My pleasure babe +06/18/2018,Musicians,@BebeRexha,Done. https://t.co/IkxoNV6p1l +06/18/2018,Musicians,@BebeRexha,@Austinn_Blakee ❤️❤️❤️ +06/18/2018,Musicians,@BebeRexha,"RT @CVanBramer: Honestly cannot stop listening to I’m a mess @BebeRexha , it’s such a bop!" +06/18/2018,Musicians,@BebeRexha,RT @_Cmnunez_: Can’t wait to hear her new album that’s coming up this Thursday and can’t wait to see her too at @GMA @BebeRexha 😭😭😭❤️❤️❤️💗😂… +06/18/2018,Musicians,@BebeRexha,@nickrvaz373 @Kiss108 Looooove +06/18/2018,Musicians,@BebeRexha,RT @loufromdonny: THIS WEEK WE FINALLY GOING TO HAVE EXPECTATIONS IN OUR HANDS AND MY WIG ISN’T READY @BebeRexha +06/18/2018,Musicians,@BebeRexha,"RT @BebeRexha_Peru: I'm a Mess = HIT +#ExpectationsIsComing 🔥 @BebeRexha https://t.co/cljcww4xoK" +06/18/2018,Musicians,@BebeRexha,Can’t wait. @B96Chicago @EBUNC1 https://t.co/kNzSWC2loC +06/18/2018,Musicians,@BebeRexha,RT @lizlyngad: ⁦@BebeRexha⁩ has made ⁦@blainelyngad⁩’s night she’s in TEARS!! IT IS LOVELY!! https://t.co/f7oZtbvmCU +06/18/2018,Musicians,@BebeRexha,@hargrove_carter Thank you so much for watching Babe. +06/18/2018,Musicians,@BebeRexha,RT @guivibo: I hope you’re able to read the letter I gave you! You made me so happy today! Til’ the next time ♥️🇪🇸 @BebeRexha https://t.co/… +06/18/2018,Musicians,@BebeRexha,@Scoots12 @Kiss108 ❤️❤️❤️ +06/18/2018,Musicians,@BebeRexha,RT @BadVitxhRexha: I absolutely cannot wait for the studio version of Shining Star 😍✨ actually I can’t wait for the whole album I’m so jitt… +06/18/2018,Musicians,@BebeRexha,RT @bebe_xcx: Bebe’s “I’m a Mess” is my life right now. It’s my therapeutic song now. Thanks @BebeRexha for releasing this +06/18/2018,Musicians,@BebeRexha,@KINGTUTTONB 😘😘😘 +06/18/2018,Musicians,@BebeRexha,@ohhjasminerose @Kiss108 @alessiacara @DUALIPA @backstreetboys 💕 +03/26/2018,Musicians,@imjmichaels,Little gems! I switched my twitter & Instagram handles to @juliamichaels today! Just giving you a heads up!!! +07/01/2018,Musicians,@CalvinHarris,Thank you to everyone supporting this song!!! https://t.co/u1j4xKfjy6 +06/30/2018,Musicians,@CalvinHarris,1 year today since Funk Wav Bounces Vol.1 came out! https://t.co/jLeseR6bFE +06/24/2018,Musicians,@CalvinHarris,Yes I’m Scottish but I don’t care the legend Harry Kane picked our song hahahahaha https://t.co/r0JclobgzN +06/22/2018,Musicians,@CalvinHarris,"Full One Kiss remix pack is out now with Extended, @R3HAB @Jauzofficial @OliverHeldens @ValentinoKhan… https://t.co/5UiA8qbpNz" +06/15/2018,Musicians,@CalvinHarris,"This guy is already a radio icon, make it official by voting for him to get in radio hall of fame : https://t.co/r6CFCXoM7N" +06/15/2018,Musicians,@CalvinHarris,The @ValentinoKhan mix of One Kiss is out now ! Listen here: https://t.co/0rgtNoj20E +06/13/2018,Musicians,@CalvinHarris,"One Kiss @ValentinoKhan remix is out Friday !! +Presave here: +https://t.co/O89pwabIGx" +06/08/2018,Musicians,@CalvinHarris,"One Kiss 8 weeks at number 1 in UK now! Back at number 1 WW iTunes. Unbelievable! So happy you’re enjoying it, than… https://t.co/QP5s57h8id" +06/06/2018,Musicians,@CalvinHarris,"One Kiss @R3HAB remix this Friday !! Presave here !! +https://t.co/4j9Nj4X38L" +06/02/2018,Musicians,@CalvinHarris,RT @DUALIPA: WHAT A DAY @CalvinHarris 💥💥 https://t.co/9mutRQUfFY +06/01/2018,Musicians,@CalvinHarris,https://t.co/gf95qr4iRg https://t.co/UbRQguG6YD +06/01/2018,Musicians,@CalvinHarris,"7 weeks at number 1 in UK now !! Magical +Thank u +@DUALIPA @Jessiereyez" +06/01/2018,Musicians,@CalvinHarris,RT @DUALIPA: 7 BABY 7!!!!! #ONEKISS COME ONNNNN @CalvinHarris https://t.co/bdvkbaUlbW +06/01/2018,Musicians,@CalvinHarris,"One Kiss @OliverHeldens remix is out now !! + +https://t.co/0w9ZdYC12d" +05/28/2018,Musicians,@CalvinHarris,"One Kiss @DUALIPA is the biggest song in the world rn number 1 global iTunes, Apple Music & Spotify thank you so much !!!!!! 🤯🤯🤯" +05/28/2018,Musicians,@CalvinHarris,"The @OliverHeldens remix of One Kiss is coming on Friday ... +https://t.co/O89pwabIGx" +05/28/2018,Musicians,@CalvinHarris,"Made a Funk Wav playlist for those of you who keep asking me where Vol 2 is + +https://t.co/DdZxB1sRNH" +05/26/2018,Musicians,@CalvinHarris,Spot on https://t.co/B2UcFcCT84 +05/25/2018,Musicians,@CalvinHarris,"RT @BBCR1: SIX WEEKS at the top of the #OfficialChart? + +@CalvinHarris and @DUALIPA have got it in the bag with 'One Kiss', which is going a…" +05/25/2018,Musicians,@CalvinHarris,Thank you ! https://t.co/PVaVNQvCtk +05/25/2018,Musicians,@CalvinHarris,RT @DUALIPA: Sooo #OneKiss w @calvinharris is number 1 for 6 weeks and has just gone PLAT PLAT 💿 I have been found staring into the abyss (… +05/25/2018,Musicians,@CalvinHarris,One Kiss @ZHUmusic remix is out now ! https://t.co/Uf1MW58via +05/22/2018,Musicians,@CalvinHarris,"One Kiss Zhu remix coming Friday ! @ZHUmusic + +Presave here https://t.co/uRHnPdhGyS https://t.co/nBqRfECG1t" +05/21/2018,Musicians,@CalvinHarris,"#1 global iTunes +#2 global Spotify +with @DUALIPA thank you world !!!! ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️" +05/19/2018,Musicians,@CalvinHarris,"RT @CalvinHarris: ONE KISS w/ @DUALIPA out now ! + +iTunes - https://t.co/krYlw0IF0z + +Apple Music - https://t.co/P94kZJ8FnD + +Spotify - https:…" +05/19/2018,Musicians,@CalvinHarris,Blessed to have put Frank and Migos on the same record #HumbleBragAboutSomething +05/18/2018,Musicians,@CalvinHarris,RT @Jauzofficial: ONE KISS REMIX IS OUT NOW!!! Thx @CalvinHarris @DUALIPA for letting me put my touch on such a dope record! OUT NOW EVERYW… +05/18/2018,Musicians,@CalvinHarris,5️⃣ !!!!!!!! https://t.co/7kImLJ6M4t +05/17/2018,Musicians,@CalvinHarris,"Thank you ! +Also how deep is your love on Jimmy Fallon was one of my favourites https://t.co/ZoknShQroP" +05/17/2018,Musicians,@CalvinHarris,Listen for the premiere of One Kiss @Jauzofficial Remix 10am EST tomorrow w/ @Ridanaser on #BPM @sxmelectro https://t.co/X7xv1oBIeW +05/15/2018,Musicians,@CalvinHarris,"Jauz remix coming ! + +One Kiss w @DUALIPA @Jauzofficial remix coming Friday presave here !! +https://t.co/uRHnPdhGyS https://t.co/tJUDqhyhWl" +05/15/2018,Musicians,@CalvinHarris,Back at #1 WW iTunes with @DUALIPA thank u world !!! xxx 🙏🙏🙏 +05/12/2018,Musicians,@CalvinHarris,Thank you!!!!! https://t.co/tCzppNAEcN +05/11/2018,Musicians,@CalvinHarris,4 weeks !!! https://t.co/63KXGqv4Ze +05/09/2018,Musicians,@CalvinHarris,https://t.co/QzZfZdrRZ9 One Kiss behind the scenes w @DUALIPA @emilnava +05/08/2018,Musicians,@CalvinHarris,5th in the world @Spotify that’s maddddd thank you !!! 🏴󠁧󠁢󠁳󠁣󠁴󠁿 https://t.co/kOw28UDou6 +05/08/2018,Musicians,@CalvinHarris,Thank you @KidKelly and @MikeyPiff for putting One Kiss on the @SiriusXMHits1 playlist !! 🙏🙏🙏 https://t.co/5xrm1WWZeL +05/05/2018,Musicians,@CalvinHarris,Looool https://t.co/FpxvTY6CWb +05/04/2018,Musicians,@CalvinHarris,Thank you!!!!!!! https://t.co/zwaQRXCPt4 +05/03/2018,Musicians,@CalvinHarris,NEW VIDEO ALERT @DUALIPA https://t.co/j9UUDgVHPz +05/03/2018,Musicians,@CalvinHarris,😀😀😀 https://t.co/1yXjQCvHqF +05/03/2018,Musicians,@CalvinHarris,I love this video thank you @emilnava https://t.co/j9UUDgVHPz +05/02/2018,Musicians,@CalvinHarris,Appreciate your confidence but I’m Scottish https://t.co/wrUyvejHjT +05/02/2018,Musicians,@CalvinHarris,RT @clockworkbea: @CalvinHarris King of holding a glass for 10 seconds +05/02/2018,Musicians,@CalvinHarris,Welcome 2 my world https://t.co/rSaMbvuzyT +05/02/2018,Musicians,@CalvinHarris,"ONE KISS VIDEO @DUALIPA + +https://t.co/bA5eoyzcph" +05/02/2018,Musicians,@CalvinHarris,Rollin platinum in US ! @thegreatkhalid @1future https://t.co/BhoYhJPPkB +05/02/2018,Musicians,@CalvinHarris,"RT @AppleMusic: The official video for #OneKiss is here! +@CalvinHarris x @DUALIPA +Watch now, only on Apple Music: https://t.co/o2igWNvhlJ h…" +05/01/2018,Musicians,@CalvinHarris,Official video for One Kiss w/ @DUALIPA now streaming exclusively on @AppleMusic https://t.co/lZGO9BE2Mr +04/30/2018,Musicians,@CalvinHarris,"One Kiss w/ @DUALIPA video premieres tomorrow on @AppleMusic ! +https://t.co/Waq9WdJKJf https://t.co/OgC8eCwpCS" +04/27/2018,Musicians,@CalvinHarris,Thank you !! https://t.co/EONApRrHNZ +04/27/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/6MWiVrJ6ud +04/27/2018,Musicians,@CalvinHarris,"RT @AppleMusic: The #Alone (@CalvinHarris Remix) with @halsey x @stefflondon needs to be on your weekend playlist. +https://t.co/NrSjK6StM0" +04/24/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS VIDEO W @calvinharris COMING VERY SOON!!! BUT 4 NOW STREAM IT LINK IT SHARE IT W YO FRENDS https://t.co/5vLjJSbyEO 💕💕… +04/24/2018,Musicians,@CalvinHarris,"One Kiss video on it’s way 🍸 + +https://t.co/6OGEyd3QOF https://t.co/TiDOCkF44W" +04/24/2018,Musicians,@CalvinHarris,👋 https://t.co/PjKFQc3iXT +04/23/2018,Musicians,@CalvinHarris,@LaidbackLuke Me too what a tune +04/23/2018,Musicians,@CalvinHarris,Thank you 🙏 @DUALIPA https://t.co/njdearbI0Z +04/20/2018,Musicians,@CalvinHarris,"Devastating news about Avicii, a beautiful soul, passionate and extremely talented with so much more to do. My hear… https://t.co/v4kho3FXmq" +04/20/2018,Musicians,@CalvinHarris,RT @DUALIPA: Catch @CalvinHarris and I on The Graham Norton Show TONIGHT on BBC One from 22:30! #OneKiss ❤️ https://t.co/b1KXZDZ15q +04/20/2018,Musicians,@CalvinHarris,RT @Ingrosso: @CalvinHarris @halsey Sick remix +04/20/2018,Musicians,@CalvinHarris,"RT @KDariiidah: 🚀🚀🚀🚀 + +@CalvinHarris is so legit. https://t.co/4mLg2apESs" +04/20/2018,Musicians,@CalvinHarris,RT @17xlm: .@CalvinHarris just keeps dropping banger after banger. 💥💥 https://t.co/7RGNCnM5AI +04/20/2018,Musicians,@CalvinHarris,😀 https://t.co/qMMvF4LLmU +04/20/2018,Musicians,@CalvinHarris,@Ingrosso @halsey Thank you and happy birthday !!!! +04/20/2018,Musicians,@CalvinHarris,"Brand new @halsey remix out now! + +Apple Music - https://t.co/iT3H6UQd0z + +Spotify - https://t.co/to8ziic4Or + +iTunes… https://t.co/GyK7jgGpyP" +04/20/2018,Musicians,@CalvinHarris,"RT @billboarddance: .@CalvinHarris teases killer remix of @Halsey's ""Alone"" feat. @StefflonDon https://t.co/QUMAx4saRI https://t.co/VL1dsMh…" +04/19/2018,Musicians,@CalvinHarris,RT @dancingastro: Welcome to Calvin Harris season 🔥 https://t.co/oyO9snYVaj +04/18/2018,Musicians,@CalvinHarris,My remix of @halsey Alone w/ @stefflondon is out this Friday ! https://t.co/DMggdFPS8z +04/17/2018,Musicians,@CalvinHarris,Ah thank you boss !! https://t.co/uJNgy4Eoy1 +04/17/2018,Musicians,@CalvinHarris,And thank U once again ! @BBMAs https://t.co/rojdEsZJOz +04/17/2018,Musicians,@CalvinHarris,Thank u very much @BBMAs https://t.co/py2oZFY1tN +04/17/2018,Musicians,@CalvinHarris,I can’t find the old man emoji https://t.co/Eeumaq3CkL +04/16/2018,Musicians,@CalvinHarris,🌞🌞🌞 https://t.co/ETaMIpZ8Zl https://t.co/oDVtt2hV5f +04/16/2018,Musicians,@CalvinHarris,RT @MTV: Pro-tip: Start off your day by blasting @DUALIPA x @CalvinHarris' #OneKiss 😘 https://t.co/TStab3qY5g +04/15/2018,Musicians,@CalvinHarris,@brothersosborne https://t.co/jaQRJC6Zxq +04/12/2018,Musicians,@CalvinHarris,RT @DUALIPA: This is craaaaazyyy!! Lets keep this up https://t.co/LCDMBzvi3w ❤️❤️ https://t.co/EBpVQwDtbp +04/11/2018,Musicians,@CalvinHarris,"Calvin Harris Radio is on Apple Music now too 🤠 +https://t.co/jn8yzokFCl" +04/11/2018,Musicians,@CalvinHarris,Wowwww thank you !!! https://t.co/bqmw1DrSaY +04/11/2018,Musicians,@CalvinHarris,2 songs i wish were on streaming platforms Cevin fisher burning up original mix & Snoop Dogg raphael saadiq midnight love +04/10/2018,Musicians,@CalvinHarris,Sharing link w my friends 😁 https://t.co/R7RdJLAdMe +04/10/2018,Musicians,@CalvinHarris,RT @ConnorBrosnan: @CalvinHarris @DUALIPA safe for releasing probably the biggest banger of the year❤️ +04/10/2018,Musicians,@CalvinHarris,RT @emilyhoban95: Well @CalvinHarris & @DUALIPA song is a little summer sizzler +04/10/2018,Musicians,@CalvinHarris,RT @Louisemoran30: Nice one @CalvinHarris and @DUALIPA I love it! ⭐️💕🎼🎤📀😘 +04/09/2018,Musicians,@CalvinHarris,"Calvin Harris Radio just updated + +New tracks from @djsnake @Jauzofficial @toddedwards3000 @DUALIPA & me 🤠 + +https://t.co/IxlDxR7ehB" +04/09/2018,Musicians,@CalvinHarris,Listen to One Kiss with @DUALIPA on @AppleMusic https://t.co/P94kZJ8FnD +04/09/2018,Musicians,@CalvinHarris,Lol https://t.co/6BVkgXPZFc +04/08/2018,Musicians,@CalvinHarris,RT @_patrii26: Just in love with this song🔥🔥🇮🇹 @CalvinHarris @DUALIPA this is insane man! https://t.co/zVASG6Tjfr +04/08/2018,Musicians,@CalvinHarris,RT @clockworkbea: Listening to one kiss by @CalvinHarris and @DUALIPA I’m so obsessed! +04/08/2018,Musicians,@CalvinHarris,RT @charewall: Obsessin' over ONE KISS 💋 @CalvinHarris @DUALIPA it's on repeat 🔥 https://t.co/vOwlgMMs5i +04/08/2018,Musicians,@CalvinHarris,"RT @_MJCN_: The track ""One kiss"" by @CalvinHarris & @DUALIPA is fire 🔥" +04/08/2018,Musicians,@CalvinHarris,RT @K3llzie: Little bit obsessed with One Kiss 😍 @DUALIPA @CalvinHarris +04/08/2018,Musicians,@CalvinHarris,RT @sarahmac_ox: in love with @DUALIPA and @CalvinHarris new tune; one kiss 💋 +04/08/2018,Musicians,@CalvinHarris,"Thank u +Refreshment is my primary aim ! https://t.co/10xf1rfBCe" +04/08/2018,Musicians,@CalvinHarris,RT @Too8oo: @DUALIPA and @CalvinHarris made a bop. One Kiss is my favorite song right now and I can't stop playing that song. What a great… +04/08/2018,Musicians,@CalvinHarris,RT @Found_Squilly: @DUALIPA x @CalvinHarris 👀🔥🔥🔥 +04/08/2018,Musicians,@CalvinHarris,"RT @ojas_gupta_: Was waiting so much for a new song to obsess with , one kiss ♥️♥️ thank you @CalvinHarris @DUALIPA" +04/08/2018,Musicians,@CalvinHarris,RT @vicctorlcc: I CAN’T STOP LISTENING ONE KISS @CalvinHarris and @DUALIPA 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 +04/08/2018,Musicians,@CalvinHarris,@jonjace24 @luiferarancibia @MrDkbza @samsheffer @rihanna I wrote the lyrics 🙃 +04/07/2018,Musicians,@CalvinHarris,RT @lifeofrickey: ONE KISS IS MY MOOD😭😭🙌 https://t.co/EKurjMHwzZ +04/07/2018,Musicians,@CalvinHarris,RT @DrewChadhall: That new @CalvinHarris @ @DUALIPA my goodness 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥💃💃💃💃💃💃💃💃💃💃💃💃 +04/07/2018,Musicians,@CalvinHarris,RT @arsenalking7: One kiss 🔥🔥🔥🔥 @CalvinHarris @DUALIPA +04/07/2018,Musicians,@CalvinHarris,RT @J18Jordan: Ok I am now hooked on the song “one kiss” @CalvinHarris @DUALIPA you done well #tune +04/07/2018,Musicians,@CalvinHarris,RT @fxckdelano: One kiss is so good tho @CalvinHarris @DUALIPA +04/07/2018,Musicians,@CalvinHarris,"RT @amazonmusic: #JustAsk, ""Alexa, play the Song of the Day"" & stream the new collab from @CalvinHarris & @DUALIPA, ""One Kiss"" https://t.co…" +04/07/2018,Musicians,@CalvinHarris,RT @DUALIPA: Ofcourse!! We’re very excited cc @CalvinHarris 💕💥 https://t.co/TsXrGHJkBV +04/07/2018,Musicians,@CalvinHarris,👋 https://t.co/RbWLGPV0CX +04/07/2018,Musicians,@CalvinHarris,RT @DuaReport: Check out the #OneKiss Snapchat filter available now! @DUALIPA @CalvinHarris 💋💥 https://t.co/8DZPAMNwsR +04/06/2018,Musicians,@CalvinHarris,"RT @Shazam: #OneKiss by @CalvinHarris & @DUALIPA will make you dance till your heart's content 💙💃🕺 + +Listen to our Song of the Day on @Appl…" +04/06/2018,Musicians,@CalvinHarris,"One Kiss w @DUALIPA is out today! Thank you @Spotify !!! +https://t.co/9OuOUKFRR2 https://t.co/LIRB3HgQbJ" +04/06/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS @CalvinHarris 🍒💥 https://t.co/sPsNU7FSWr +04/06/2018,Musicians,@CalvinHarris,"Listen to the world premiere of “One Kiss"" on @iHeartRadio https://t.co/TCq08fKwWa https://t.co/qwOZUy409B" +04/06/2018,Musicians,@CalvinHarris,😁❤️ https://t.co/PJe7JGl76M +04/06/2018,Musicians,@CalvinHarris,RT @BBCR1: Tonight's Hottest Record for @AnnieMac goes to the huge collab @CalvinHarris & @dualipa. Is this going to be big or what?! 😱🌶🌶🌶… +04/06/2018,Musicians,@CalvinHarris,Listen to One Kiss on @TIDAL !  https://t.co/Y4IMapPJUL +04/06/2018,Musicians,@CalvinHarris,Get #OneKiss with @DUALIPA on @AmazonMusic now: https://t.co/GbmwsBXPOr +04/06/2018,Musicians,@CalvinHarris,RT @Melvin_SK_: One Kiss by @CalvinHarris and @DUALIPA is the summer song I always wanted! 😍🍒🥥💖 +04/06/2018,Musicians,@CalvinHarris,"RT @AppleMusic: It's a bop. +Listen to @CalvinHarris x @DUALIPA's #OneKiss. +https://t.co/Fwz0Qbe85O" +04/06/2018,Musicians,@CalvinHarris,RT @harday: Listening to @CalvinHarris @DUALIPA #OneKiss for the 46th time this morning like https://t.co/4KzqdTr5jC +04/06/2018,Musicians,@CalvinHarris,RT @djalice1075: That new @DUALIPA x @CalvinHarris song though 🔥 +04/06/2018,Musicians,@CalvinHarris,RT @DUALIPA: ONE KISS w/ @CalvinHarris is out!! I hope this makes you wanna dance till your hearts content xxx https://t.co/5vLjJSt9wm http… +04/06/2018,Musicians,@CalvinHarris,RT @capliverpool: When you listen to the new @CalvinHarris and @DUALIPA 🔥😳😍 https://t.co/sM9298QrGz +04/06/2018,Musicians,@CalvinHarris,RT @__Avion__: This new @DUALIPA x @CalvinHarris is a fucking TUNE +04/06/2018,Musicians,@CalvinHarris,RT @itsAliStone: I’m loving “One Kiss” by @CalvinHarris & @DUALIPA 🙌🏻 let the House vibes in!!!! +04/06/2018,Musicians,@CalvinHarris,"RT @KarlaCardenas08: Thank you @CalvinHarris & @DUALIPA for blessing us with One Kiss + +2 of my absolute favs, I knew it’d be amaze 😍" +04/06/2018,Musicians,@CalvinHarris,RT @samuel_rider1: On repeat 😍 @CalvinHarris is a God of sound and @DUALIPA is an angel of vocals in this one. Don’t DM me #OneKissOutNow h… +04/06/2018,Musicians,@CalvinHarris,RT @waldosoboojie: OH MY GOD!! @DUALIPA @CalvinHarris WHAT DID YOU GUYS CREATE!!? THIS IS A BANGER! I LOVE IT 💥💥💥 https://t.co/sgFAcHdosE +04/06/2018,Musicians,@CalvinHarris,RT @zookepermusic: @CalvinHarris @DUALIPA you are a fuckin madman this record is so good goddamn +04/06/2018,Musicians,@CalvinHarris,RT @chemis_523: @DUALIPA @CalvinHarris best song I’ve heard in 2018 🤟🏻🤟🏻 https://t.co/6dXnYtYCHG +04/06/2018,Musicians,@CalvinHarris,RT @daniiiizle: @CalvinHarris @DUALIPA you guys did it 🤩🤩🤩 https://t.co/wXuXkA1wlw +04/06/2018,Musicians,@CalvinHarris,"ONE KISS w/ @DUALIPA out now ! + +iTunes - https://t.co/krYlw0IF0z + +Apple Music - https://t.co/P94kZJ8FnD + +Spotify -… https://t.co/rdUpCmw6Qn" +04/06/2018,Musicians,@CalvinHarris,https://t.co/P94kZJ8FnD +04/06/2018,Musicians,@CalvinHarris,RT @RaveenaSharma19: @CalvinHarris @DUALIPA One Kiss is everything & more than I expected it to be ! New Fav 💯💃🏻💋🙌🏻 +04/06/2018,Musicians,@CalvinHarris,RT @theknocks: oh fuck yeah @DUALIPA and @CalvinHarris coming with the eaaarly 90s house vibe +04/06/2018,Musicians,@CalvinHarris,"RT @itsmeluizfelipe: One kiss is all it takes, Fallin' in love with me @DUALIPA @CalvinHarris https://t.co/x2iX0uySgu" +04/06/2018,Musicians,@CalvinHarris,🙏🙏🙏❤️❤️❤️ https://t.co/31lJ45KG48 +04/05/2018,Musicians,@CalvinHarris,"🤠🤠🤠 +Presave here : +https://t.co/UjLPmsGEqu https://t.co/yhEQzTCIkg" +04/03/2018,Musicians,@CalvinHarris,https://t.co/UjLPmsGEqu +04/02/2018,Musicians,@CalvinHarris,"Soon! +@DUALIPA +Presave here +https://t.co/pVU0dHTrzQ https://t.co/fWCcnHekjv" +03/30/2018,Musicians,@CalvinHarris,"New record coming very soon . . . +Presave on Spotify here +https://t.co/O89pwabIGx" +03/27/2018,Musicians,@CalvinHarris,Lol exactly https://t.co/HKjHozHcts +03/27/2018,Musicians,@CalvinHarris,Whatever do u mean ? https://t.co/wfsNswl7Tl +03/27/2018,Musicians,@CalvinHarris,☄️☄️☄️ https://t.co/hQA9Aj7kEO +03/26/2018,Musicians,@CalvinHarris,@GrooveArmada Legend +03/21/2018,Musicians,@CalvinHarris,😁 https://t.co/9GtxmMYJfJ +03/20/2018,Musicians,@CalvinHarris,"Calvin Harris Radio updated 🏂 + +https://t.co/JXCVPWCqVC" +03/19/2018,Musicians,@CalvinHarris,😭 https://t.co/F4XufsiXys +03/17/2018,Musicians,@CalvinHarris,❤️ https://t.co/snSF7IZlUW +03/13/2018,Musicians,@CalvinHarris,"RT @billboarddance: .@CalvinHarris shares new Spotify playlist featuring @virtual_self, @FatboySlim & more https://t.co/kxhIWpn9lI https://…" +03/10/2018,Musicians,@CalvinHarris,@Ingrosso Big tune +03/09/2018,Musicians,@CalvinHarris,Follow my new playlist on Spotify to hear what I’m listening to .... this week tracks by @virtual_self @MarcKinchen… https://t.co/ncFYe6ApGQ +03/09/2018,Musicians,@CalvinHarris,Omnia Las Vegas tonight for my first Vegas show of the year ! 😵 +02/28/2018,Musicians,@CalvinHarris,Big tune https://t.co/l0OdqpbL7W +02/27/2018,Musicians,@CalvinHarris,"RT @CalvinHarris: NUH READY NUH READY +W/ @PARTYNEXTDOOR +Spotify https://t.co/JnkHHvDcn1 +Apple Music https://t.co/YhrOQllf05 +Video https://t…" +02/23/2018,Musicians,@CalvinHarris,Slide is 1 year old today ! 🎂🎂🎂 https://t.co/OwhesrXWZj +02/22/2018,Musicians,@CalvinHarris,🚨🚨🚨 https://t.co/PJDclqDxAf +02/20/2018,Musicians,@CalvinHarris,@kaskade That’s great i might start using that one +02/17/2018,Musicians,@CalvinHarris,Thanks Henry! https://t.co/tcBIw4pKuh +02/16/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/o5L4Uo691r +02/16/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/zByVNYORaZ +02/14/2018,Musicians,@CalvinHarris,RT @XXL: This video is extremely trippy https://t.co/rbGNpBV2sE +02/14/2018,Musicians,@CalvinHarris,2 songs on this list?!?! I’ve peaked https://t.co/rfQVnucj5W +02/14/2018,Musicians,@CalvinHarris,Thank you @AppleMusic ! Nuh Ready Nuh Ready is in the #BestoftheWeek playlist https://t.co/4OnyuSVFeK +02/14/2018,Musicians,@CalvinHarris,🙌❤️ https://t.co/KC065P2adM +02/11/2018,Musicians,@CalvinHarris,I love Through the keyhole with Keith lemon +02/09/2018,Musicians,@CalvinHarris,Thank you Annie !! https://t.co/VSAV7LZBMr +02/09/2018,Musicians,@CalvinHarris,"“Nuh Ready Nuh Ready” with @PARTYNEXTDOOR available on @Spotify !!!!!!! #NewMusicFriday +https://t.co/JnkHHvDcn1 https://t.co/JyMf7PRoCw" +02/09/2018,Musicians,@CalvinHarris,❤️ https://t.co/jfC1HsCzWJ +02/09/2018,Musicians,@CalvinHarris,🙏 https://t.co/iMztY4QxrE +02/09/2018,Musicians,@CalvinHarris,Thank you Pete ! https://t.co/TjmahhE1pw +02/09/2018,Musicians,@CalvinHarris,🇬🇧🇬🇧🇬🇧 https://t.co/TdakHWOFSq +02/09/2018,Musicians,@CalvinHarris,Thank u vevo ❤️ https://t.co/vuL6mnhCnz +02/09/2018,Musicians,@CalvinHarris,Thank you!!! https://t.co/IqQ34Mbptu +02/09/2018,Musicians,@CalvinHarris,Thank you!!! https://t.co/ORkZXXBuPJ +02/08/2018,Musicians,@CalvinHarris,"NUH READY NUH READY +W/ @PARTYNEXTDOOR +Spotify https://t.co/JnkHHvDcn1 +Apple Music https://t.co/YhrOQllf05 +Video… https://t.co/v8zOuFBsIO" +02/08/2018,Musicians,@CalvinHarris,https://t.co/JnkHHvDcn1 +02/08/2018,Musicians,@CalvinHarris,https://t.co/eoESolIHSJ +02/08/2018,Musicians,@CalvinHarris,https://t.co/wuvlmrR4Wc +02/08/2018,Musicians,@CalvinHarris,RT @billydakiduk: OMFG new @CalvinHarris @partynextdoor just hit the inbox and it's ABSOLUTE FIRE!!!! 🔥🔥🔥 +02/08/2018,Musicians,@CalvinHarris,RT @TODDLAT: Final eve of holdin it for @DJTarget on @1Xtra and gonna be chattin to @CalvinHarris about lots of random ish .. 📻🤷🏼‍♂️ .. 7pm… +02/08/2018,Musicians,@CalvinHarris,"RT @Beats1: 🚨 BREAKING NEW MUSIC! 🚨 +@CalvinHarris joins @zanelowe to talk 2018 + the new track #NuhReadyNuhReady! Listen: +11AM LA / 2PM NYC…" +02/08/2018,Musicians,@CalvinHarris,https://t.co/YhwljQaF9C +02/06/2018,Musicians,@CalvinHarris,"No sir, a whole new experience ⬆️ https://t.co/cFrpJ8z9Ed" +02/06/2018,Musicians,@CalvinHarris,"Thursday +Nuh Ready Nuh Ready +w/ @partynextdoor https://t.co/16EcGeDpE8" +02/04/2018,Musicians,@CalvinHarris,https://t.co/ihrRvdAe3Y +01/31/2018,Musicians,@CalvinHarris,"Now my beard is gone, the experiment completed and I can move forward with 2018! +God bless and thank you for your support !!!" +01/31/2018,Musicians,@CalvinHarris,"But unfortunately this weekend I learned that even a new beard has its limitations. +On Sunday I lost out to the in… https://t.co/7hAtpFkCBq" +01/31/2018,Musicians,@CalvinHarris,"Last year I grew a big ol beard in order to be taken seriously by the Grammys as a producer. +It worked to an exten… https://t.co/05GyZV3fWk" +01/27/2018,Musicians,@CalvinHarris,Amusement arcade in Moscow +01/26/2018,Musicians,@CalvinHarris,Eternally grateful +01/18/2018,Musicians,@CalvinHarris,In 2018 movin on from Funk Wav sound thank u for joining me on my musical journey haha +01/17/2018,Musicians,@CalvinHarris,Thank u!! https://t.co/Qr06PBIQqG +01/17/2018,Musicians,@CalvinHarris,@enterwboldness Unbelievable work x +01/17/2018,Musicians,@CalvinHarris,Thank you Danny ! X https://t.co/n0Yhu5CjqD +01/17/2018,Musicians,@CalvinHarris,🙏🙏🙏 https://t.co/mMV3ljdZm1 +01/17/2018,Musicians,@CalvinHarris,Belter x https://t.co/iMAZCWuurf +01/17/2018,Musicians,@CalvinHarris,Happy birthday to you too my friend 🎉🎉🎉 https://t.co/UK2vyoPXBK +01/17/2018,Musicians,@CalvinHarris,"Thank you for your birthday wishes +Been blessed with another year on earth !!! +Thank you universe !!!!!" +01/13/2018,Musicians,@CalvinHarris,Virtual self ghost voices is an absolute beast of a tune +01/13/2018,Musicians,@CalvinHarris,Inside the place +07/01/2018,Musicians,@DuaLipa,Woweeeee @CalvinHarris !!!! https://t.co/TzS9ZTazwQ +07/01/2018,Musicians,@DuaLipa,"Thank you San Francisco, love you forever ❤️ the self-titled tour, 30.06.2018 // shot by Pixie Levinson https://t.co/RDw0GByVoZ" +07/01/2018,Musicians,@DuaLipa,I KNEW THIS WOULD BE A GREAT SONG TO PLAY AFTER THE SHOW!! LOVE LOVE LOVE https://t.co/zDWGOzT6qu +07/01/2018,Musicians,@DuaLipa,We are a lil fam and i’m so lucky to have them https://t.co/jVDviBbLPV +07/01/2018,Musicians,@DuaLipa,RT @clairo: san francisco when i tell u this venue is big as hell.. it is big as hell +06/30/2018,Musicians,@DuaLipa,"RT @L0STlNDUA: my friend just sent me this from london! it makes me so happy seeing you everywhere, i’m so proud of you, have fun tonight a…" +06/30/2018,Musicians,@DuaLipa,"Thank you San Diego. Last night was the ultimate bounce back. Thank you for so much fun! The self-titled tour, 29.0… https://t.co/1D7OLKK5Ju" +06/30/2018,Musicians,@DuaLipa,San Diego pre-show 🖤 https://t.co/BIiMQSitLh +06/29/2018,Musicians,@DuaLipa,RT @ChartsDuaLipa: “One Kiss” has already sold over 3.5 million copies worldwide! Huge congrats @CalvinHarris & @DUALIPA. https://t.co/5C5H… +06/29/2018,Musicians,@DuaLipa,@heavenforgaves There are two more dates to be added in China but we can’t announce exactly where and what dates un… https://t.co/ULVIfXt8Tz +06/29/2018,Musicians,@DuaLipa,@vanillahalsey No m&g just a show rescheduling x +06/29/2018,Musicians,@DuaLipa,@aworldaIone No i’ll be doing some radio shows in the US then xx +06/29/2018,Musicians,@DuaLipa,Rescheduled Denver date xx https://t.co/MRxzYwB4g3 +06/29/2018,Musicians,@DuaLipa,"I love you guys. Thank you for being so caring, kind and sweet. Goodnight xx" +06/29/2018,Musicians,@DuaLipa,@tuliplipa @hotlightsiz It sucks but the painkillers help!! +06/29/2018,Musicians,@DuaLipa,@hotlightsiz Thanks iz i’ll try that tonight. Ive seen a doctor too and hopefully with your help and his I can go b… https://t.co/SES3JNyhzf +06/29/2018,Musicians,@DuaLipa,I can’t hear very well in my right ear due to the ear infection but ive been put on some medication that should hop… https://t.co/6Dgc4iYaqe +06/29/2018,Musicians,@DuaLipa,After a whole day in bed I went out on a sunset hike in Arizona and it was wonderful. 🌵🏜🌄💕 https://t.co/jO4mUidqt9 +06/28/2018,Musicians,@DuaLipa,❤️❤️❤️❤️ https://t.co/7JcnTn2ttX +06/27/2018,Musicians,@DuaLipa,No but now that im in bed for a couple days I would love some recommendations xx https://t.co/VfgtQQDaVq +06/27/2018,Musicians,@DuaLipa,With the prettiest girl @clairo ☁️ https://t.co/dOffyhAxAZ +06/27/2018,Musicians,@DuaLipa,Thank you for all your well wishes and hashtags they mean a lot. Still upset about last night and I wish it didnt i… https://t.co/8o8jsw9Z7R +06/27/2018,Musicians,@DuaLipa,RT @TeenChoiceFOX: Rule 1️⃣: You HAVE to retweet to vote for New Rules by @DuaLipa as #ChoiceSongFemaleArtist! #TeenChoice https://t.co/iDD… +06/27/2018,Musicians,@DuaLipa,RT @TeenChoiceFOX: One vote is all it takes. RETWEET now to vote One Kiss by @CalvinHarris and @DUALIPA for #ChoiceElectronicDanceSong! 😘 #… +06/27/2018,Musicians,@DuaLipa,@sighzach Happy Birthday darling!! Here’s to many more wonderful years! Love always xxx +06/27/2018,Musicians,@DuaLipa,Dua Diary - Atlanta https://t.co/4xezwYCPjh 💕 +06/27/2018,Musicians,@DuaLipa,Denver ❤️ https://t.co/8GCRnsyYkc +06/27/2018,Musicians,@DuaLipa,Somewhere over the rainbow https://t.co/zEAVDsPO2s +06/26/2018,Musicians,@DuaLipa,"My favourite poem. @rupikaur_ you are a force. It is truly all about togetherness, love, friends and family. What i… https://t.co/CUVY8L4V3O" +06/26/2018,Musicians,@DuaLipa,GRACIAS ESPAÑA ❤️❤️❤️❤️ https://t.co/SlxmqmzAVi +06/26/2018,Musicians,@DuaLipa,💓💓💓💓💓 https://t.co/NTYBAsTVoz +06/25/2018,Musicians,@DuaLipa,RT @vmagazine: Catch a glimpse inside @DUALIPA's V113 cover signing that shut down Soho. https://t.co/8l6lI2CttL https://t.co/9KtO8u2Jxf +06/25/2018,Musicians,@DuaLipa,"RT @DeezerFR: Gagnez vos places pour assister à la #DeezerSession de @DUALIPA le 4 juillet à Paris ➡️ https://t.co/HXKJBQrYMt 💃 +🎶 Concours…" +06/25/2018,Musicians,@DuaLipa,"Thank you Minneapolis, The self-titled tour, 24.06.2018 💖💥 // shot by Pixie Levinson https://t.co/WzQfSRw6Yk" +06/25/2018,Musicians,@DuaLipa,RT @dlipanews: Dua Lipa performing in Minneapolis tonight! (via huntr.elijah) https://t.co/GthjDXnr83 +06/25/2018,Musicians,@DuaLipa,RT @beech_lo: BIG MOOD @DUALIPA https://t.co/RgpYvbLwBT +06/25/2018,Musicians,@DuaLipa,My heart ❤️❤️❤️❤️❤️ https://t.co/jt0SjadGEQ +06/25/2018,Musicians,@DuaLipa,LOVE YOU GUYS! Tonight was sooo much fun! 💕💕💕 https://t.co/XstlLfGPAL +06/24/2018,Musicians,@DuaLipa,RT @CalvinHarris: Yes I’m Scottish but I don’t care the legend Harry Kane picked our song hahahahaha https://t.co/r0JclobgzN +06/24/2018,Musicians,@DuaLipa,Haaaa legend https://t.co/MZ2qVXt5eZ +06/24/2018,Musicians,@DuaLipa,We’ve released some extra tickets for the show tonight Minneapolis!! Come down after pride if you wanna party 💗💗 +06/24/2018,Musicians,@DuaLipa,"RT @henrywinter: ""One Kiss by Calvin Harris and Dua Lipa..."" Kane's choice after a Brazilian reporter tells him top player with a hat-trick…" +06/24/2018,Musicians,@DuaLipa,Ballerina batme for B96 Summer Bash 💗⚔️💗 shot by Pixie Levinson https://t.co/03CNVtkxrg +06/23/2018,Musicians,@DuaLipa,RT @PopCrave: “One Kiss” by @CalvinHarris & @DUALIPA now has over 300 MILLION streams on Spotify. This is Calvin’s tenth & Dua’s fourth son… +06/23/2018,Musicians,@DuaLipa,RT @deezeruk: Be in with a chance of winning a trip to Paris to see @DUALIPA perform an intimate Deezer Session on July 4th! Find out more… +06/23/2018,Musicians,@DuaLipa,RT @Spotify: When @dualipa met @shawnmendes... 🚗💚 https://t.co/Nv9axFQ410 +06/23/2018,Musicians,@DuaLipa,So sick!!! https://t.co/GEr6hBwaNm +06/23/2018,Musicians,@DuaLipa,Stopping traffic w @diplo in Chi https://t.co/68HknH08Ys +06/22/2018,Musicians,@DuaLipa,ABSOLUTELY!!!! My loves my heart my fam! Thank you xxxxx https://t.co/KcyrVHaTBG +06/22/2018,Musicians,@DuaLipa,My @youtubemusic fam holding down the fort in London town!! ITS ALL HERE ❤️❤️ @YouTube ❤️❤️ https://t.co/g7MmLycMcj +06/22/2018,Musicians,@DuaLipa,RT @DeezerDE: .@DUALIPA Fans aufgepasst! Wir schicken einen glücklichen Gewinner plus Begleitung nach Paris zur exklusiven #DeezerSession a… +06/22/2018,Musicians,@DuaLipa,Okkkkkkk chef!!! A BOOK! A COOK BOOK! the stuff we’d dream about ☁️☁️☁️☁️☁️☁️☁️☁️☁️ https://t.co/A6pb8BFBl5 +06/22/2018,Musicians,@DuaLipa,@frangilana Thank you!!! And Happy Birthday gorgeous girl have the best most extra day in the world! Big kisses xxxx +06/22/2018,Musicians,@DuaLipa,People of Tomorrow I'm ready for you! 🦋 @tomorrowland https://t.co/Zc30JDFYor +06/22/2018,Musicians,@DuaLipa,KISS 98.5 Radio show in Buffalo NY 💓 thank you xx // shot by Pixie Levinson https://t.co/c3gIV6t5eG +06/21/2018,Musicians,@DuaLipa,Melania makes first public appearance in 27 days... she shouldve stayed in hiding longer we probably would’ve liked her better that way. +06/21/2018,Musicians,@DuaLipa,#Chicago! I’m playing @B96Chicago #SummerBash June 23rd! Grab your tickets at the Allstate Arena box office and… https://t.co/YLkTXuiFve +06/21/2018,Musicians,@DuaLipa,"RT @vmagazine: Greeted by more than a thousand fans, V113 cover star @DUALIPA took over SoHo for a signing that Mercer Street will remember…" +06/21/2018,Musicians,@DuaLipa,More pix from pix @vmagazine ✨ https://t.co/WZsxNz7KiV +06/21/2018,Musicians,@DuaLipa,RT @headlineplanet: .@CalvinHarris & @DUALIPA's One Kiss is headed for the Top 10 at pop radio https://t.co/EgciD0uoEU +06/21/2018,Musicians,@DuaLipa,RT @lipasrules: @DUALIPA https://t.co/HzVZj4ruL6 +06/21/2018,Musicians,@DuaLipa,RT @renanwho: @DUALIPA I found these here: https://t.co/0yEwBB30hl https://t.co/iK2dSKHBaM +06/21/2018,Musicians,@DuaLipa,RT @cruelworId: @DUALIPA https://t.co/pN5xp3Cjsn +06/21/2018,Musicians,@DuaLipa,RT @MELLETMAGIC: @DUALIPA if you’re calling from outside the US add +1 before the phone number and say a random state https://t.co/z08shr4i… +06/21/2018,Musicians,@DuaLipa,RT @clairo: redownloaded twitter app to say that there are still many families who have already been separated and children that don’t know… +06/21/2018,Musicians,@DuaLipa,If there are any other ways to send help to those families please comment below and i’ll RT onto my feed. ❤️ +06/21/2018,Musicians,@DuaLipa,Everything thats happening in the world is breaking my heart. Children being seperated from their parents is the mo… https://t.co/MQ0pKJX2Ap +06/21/2018,Musicians,@DuaLipa,@godknowsilost Happy Birthday sugar pie xxxx +06/21/2018,Musicians,@DuaLipa,@L0STlNDUA @vmagazine Absolutely x +06/21/2018,Musicians,@DuaLipa,@perfectlplaces @vmagazine Not for a little while but im working on it babe! I’m really excited xxx +06/21/2018,Musicians,@DuaLipa,💋💋💋💋 https://t.co/0EJ7FLjKSx +06/21/2018,Musicians,@DuaLipa,Yesterday was so much fun! Thank you to my @vmagazine fam for giving me the chance to get to see my bbys in NYC! So… https://t.co/42F5n8YHQU +06/20/2018,Musicians,@DuaLipa,An angel and a light. Thank you for having me as a part of your world. You mean a lot to me xxx https://t.co/keuS7aXwmA +06/20/2018,Musicians,@DuaLipa,KRZ Summer Smash // 📸 Pixie Levinson https://t.co/7iz7TOmNx7 +06/20/2018,Musicians,@DuaLipa,Looking gorgey! See you soon xx https://t.co/OGcIB0U342 +06/20/2018,Musicians,@DuaLipa,Come meet me at 11 Mercer in SoHo today from 4-5:30pm to get your signed copy of my @vmagazine cover! AND CELEBRATI… https://t.co/lpiaguKoJL +06/19/2018,Musicians,@DuaLipa,@dualipanoticias @vmagazine This isnt correct. This whole segment is about the journalist who wrote the piece. Not about me. X +06/19/2018,Musicians,@DuaLipa,"RT @vmagazine: To clarify, admittance to meet @dualipa tomorrow is free! Special editions will be for sale, which will also come with a tot…" +06/19/2018,Musicians,@DuaLipa,@getalilhigh @begsforyou That whole segment is what the journalist said at the top of the article +06/19/2018,Musicians,@DuaLipa,I would never agree to anything like this so i have my team finding out but im sure its just a miscommunication. Th… https://t.co/8l8FAgpVT4 +06/19/2018,Musicians,@DuaLipa,@sighzach I dont know anything about this? Im doing this all for free. I don’t know who said any of this but i don’t think its true +06/19/2018,Musicians,@DuaLipa,RT @vmagazine: What @DUALIPA's success says about the immigrant dream. https://t.co/4RRQtuTT4Q https://t.co/bXgDsEUhSx +06/19/2018,Musicians,@DuaLipa,My bro @ActionBronson and I after his show in NYC. Come see us both this summer at Sunny Hill festival and in the w… https://t.co/Fej9XZc1ib +06/19/2018,Musicians,@DuaLipa,@angelsvices I was literally just at MoMA idk what im meant to explain +06/19/2018,Musicians,@DuaLipa,"RT @ChartsDuaLipa: “One Kiss” has now reached #1 on iTunes in 60 countries! Congrats @DUALIPA & @CalvinHarris, you did that. 🔥🌎 https://t.c…" +06/19/2018,Musicians,@DuaLipa,RT @sighzach: Dula Peep is finally doing IDGAF promo in NYC 😍✊❤️ https://t.co/cWuuRTnxpn +06/18/2018,Musicians,@DuaLipa,RT @vmagazine: 2 days... @DUALIPA https://t.co/Q2eOI9LTeg +06/18/2018,Musicians,@DuaLipa,WOW!!!! 😭😭😭 https://t.co/SOp2a0U5cH +06/18/2018,Musicians,@DuaLipa,"RT @angelsvices: look at those streams honey!!!!!!! that's insane. also, new rules has over 800 milli streams. damn ma. look at u <3 congr…" +06/18/2018,Musicians,@DuaLipa,Lady birdin’ https://t.co/Cu9irap2AN +06/18/2018,Musicians,@DuaLipa,Seee you sooon!!! ❤️❤️❤️❤️ https://t.co/DnKl9OwRuh +06/18/2018,Musicians,@DuaLipa,Last night at Kiss108 shot by Pixie Levinson ✨ https://t.co/Z8q4nQN3A5 +06/18/2018,Musicians,@DuaLipa,RT @jamietworkowski: To those with no pictures to post. To those recovering from his absence. To those recovering from his presence. To tho… +06/17/2018,Musicians,@DuaLipa,ZACH!!! 😭❤️ thank you for your kind words. Always! I’m proud of all of us together xxx https://t.co/2lNBYK5YRQ +06/17/2018,Musicians,@DuaLipa,"RT @dukagjinlipa: @caIIofduaty @DUALIPA We are looking into creating charter flights for the festival. 🤞 +Hopefully we can get a budget air…" +06/17/2018,Musicians,@DuaLipa,@caIIofduaty @dukagjinlipa Flights are really expensive because there is so rarely a direct flight. Hopefully soon… https://t.co/00X6ORb5AR +06/17/2018,Musicians,@DuaLipa,Wow thank you for the support! Cc @dukagjinlipa https://t.co/R7O0ck92d3 +06/17/2018,Musicians,@DuaLipa,Love it sidney xx https://t.co/dX8R6jq1TS +06/17/2018,Musicians,@DuaLipa,RT @vmagazine: Come meet V113 cover star @DUALIPA at V Magazine this Wednesday from 4 - 5:30pm! Get to 11 Mercer early because this signing… +06/17/2018,Musicians,@DuaLipa,"RT @MikeAdamOnAir: As an #Albanian, this makes me so, so proud... #DuaLipa and father created a festival for Kosovo. I love this. And on an…" +06/17/2018,Musicians,@DuaLipa,"RT @TwitterMoments: So, @dualipa and daddy Lipa @dukagjinlipa have created their own festival in Kosovo this summer. https://t.co/jP5VFBrnK2" +06/17/2018,Musicians,@DuaLipa,Tonight at KTUPhoria // shot by Pix 💕 https://t.co/TI8z9VAjj4 +06/17/2018,Musicians,@DuaLipa,THIS IS CRAZY! WOW! Thank you bb 💜💜💜 https://t.co/TKs0xOgrnE +06/17/2018,Musicians,@DuaLipa,Haaa the second half of this https://t.co/1fM2gtySIK +06/17/2018,Musicians,@DuaLipa,Such a surreal moment in my life https://t.co/4PrlKwbl6O +06/17/2018,Musicians,@DuaLipa,Beyonce is my favourite rapper +06/16/2018,Musicians,@DuaLipa,I just watched Sting perform. I wish I could frame that moment. It was an experience. +06/16/2018,Musicians,@DuaLipa,@MNEK Thank you bb! Miss u xxx +06/16/2018,Musicians,@DuaLipa,Thanks for coming to my Ted talk https://t.co/D5t3I4yuIb +06/16/2018,Musicians,@DuaLipa,Francesca Brazzo doing the absolute most https://t.co/abpy5vPumo +06/16/2018,Musicians,@DuaLipa,RT @AgonMaliqi: Giving back to the community back home in #Kosovo. Great job @DUALIPA @dukagjinlipa https://t.co/TNkEn8ubbm +06/16/2018,Musicians,@DuaLipa,Awwwww bby. This is so thoughtful. Thank you ✨✨✨✨ https://t.co/vSszMXxYq2 +06/16/2018,Musicians,@DuaLipa,Sunny Hill is the neighbourhood my parents grew up in Kosova. Its always been home to me and thats why its the name… https://t.co/fJ7Kx4eMe3 +06/16/2018,Musicians,@DuaLipa,I’ll post my full caption about Sunny Hill festival here bc twitter count isnt enough! Tickets on… https://t.co/tI2OSRjg9v +06/16/2018,Musicians,@DuaLipa,Sunny Hill festival is coming this summer to Germia Park!! I’m so excited to head down a few days prior to the fes… https://t.co/qNNF9ORyl2 +06/16/2018,Musicians,@DuaLipa,Thanks bb! Proud of this one ❤️❤️❤️ https://t.co/ChhPgihoeD +06/16/2018,Musicians,@DuaLipa,Nina 💓💓💓💓💓 https://t.co/wpLXc2Ifaq +06/16/2018,Musicians,@DuaLipa,LOVE YOU https://t.co/nraq2jT8eQ +06/16/2018,Musicians,@DuaLipa,Omg i remember when i posted this on twitter and my manager was like “dont panic but someone has leaked a pic from… https://t.co/rYajYDiIdd +06/16/2018,Musicians,@DuaLipa,Obsessed w nyc 💓 https://t.co/p7xKFE5GAr +06/16/2018,Musicians,@DuaLipa,💖 #BLISummerJam shot by Pixie Levinson https://t.co/bYmsYR5Adl +06/16/2018,Musicians,@DuaLipa,4EVER!! https://t.co/QgrvPWchvp +06/16/2018,Musicians,@DuaLipa,Sun in my eyes https://t.co/RnuLMyShuy +06/16/2018,Musicians,@DuaLipa,My bb @itsgracecarter has just released her EP!! Check it out my loves she’s a good one 💓 https://t.co/c4Yt39Zwtw +06/15/2018,Musicians,@DuaLipa,@itsmekaram Beauty queen +06/15/2018,Musicians,@DuaLipa,@tumultuousbrain I gave up babe it was fun for a day but I think im over it hahaha +06/15/2018,Musicians,@DuaLipa,"@lovelikelipa Hey Erin, im sorry you’re not feeling well! I hope you have a super speedy recovery and i’ll get to see you soon 💓💓💓" +06/15/2018,Musicians,@DuaLipa,@builtzara Idk baby a lady did them for me in Atlanta but the gel colour is peeling off ALREADY i cant believe it so i’m mad :( +06/15/2018,Musicians,@DuaLipa,@lovelylonds Wowee congrats hard working gal! Proud of u bb xx +06/15/2018,Musicians,@DuaLipa,@lovelylonds Hi babyyyy +06/15/2018,Musicians,@DuaLipa,@ale_alejandro I havent seen any on my TL really +06/15/2018,Musicians,@DuaLipa,@sighzach NEVER +06/15/2018,Musicians,@DuaLipa,@tragichaIsey Miss you lea xxxx +06/15/2018,Musicians,@DuaLipa,Awww Manu love this. Hope you’re feeling better. Xxx https://t.co/Gt1ywcVojQ +06/15/2018,Musicians,@DuaLipa,Queer Eye season 2. Today should be a national holiday. +06/15/2018,Musicians,@DuaLipa,Congrats bb angel xx https://t.co/zF6DpygpDu +06/15/2018,Musicians,@DuaLipa,@heartednotes I’m so confused maybe i said dual nationality but im not jewish. Where is this from?? +06/15/2018,Musicians,@DuaLipa,Eid Mubarak from our family to yours ❤️✨ +06/15/2018,Musicians,@DuaLipa,2 CUTE!! https://t.co/pychYDmNme +06/15/2018,Musicians,@DuaLipa,Safe to say i’ve never seen anyone throw cheese steaks into the crowd. My bro @ActionBronson killed it in NY tonigh… https://t.co/e3fswVpTgT +06/14/2018,Musicians,@DuaLipa,I like wines from Chateauneuf du Pape 🇫🇷 https://t.co/6shpPY0uUa +06/14/2018,Musicians,@DuaLipa,Wine mum in full effect https://t.co/NZuusStWju +06/14/2018,Musicians,@DuaLipa,An icon of our generation. An outspoken legend. https://t.co/aQ9tkKKvGH +06/14/2018,Musicians,@DuaLipa,Yes all the money goes to the UN foundation to support free & equal - A campaign for LGBTI equality 🌈💋 https://t.co/mYZqy7VJPT +06/14/2018,Musicians,@DuaLipa,🌈 HAPPY PRIDE ANGELS 🌈 we made a lil special pride IDGAF tank top and all proceeds go to united nations foundation… https://t.co/Qg7UZZ9SqV +06/14/2018,Musicians,@DuaLipa,Thank you Orlando!! We ❤️ you! The self-titled tour 13.06.2018 // shot by Pixie Levinson https://t.co/qqafzOJbM0 +06/14/2018,Musicians,@DuaLipa,Thinking of you London on this sad day. A year ago today. We will never forget. Justice for Grenfell. Forever in ou… https://t.co/VoFMxs1ZqK +06/14/2018,Musicians,@DuaLipa,I LOVE THEM!! This is actual goals!!! https://t.co/NfpuJSdR7g +06/13/2018,Musicians,@DuaLipa,That is my name https://t.co/eqEWrecZmX +06/13/2018,Musicians,@DuaLipa,I love the drama with uppercase way too much https://t.co/vPPTuh9mdY +06/13/2018,Musicians,@DuaLipa,Thanks bb xx https://t.co/CkZNMR5aWI +06/13/2018,Musicians,@DuaLipa,⚔️❤️⚔️❤️⚔️ https://t.co/pE4yJ2fP8E +06/13/2018,Musicians,@DuaLipa,LOL ITS IS MY BABY AFTER ALL https://t.co/4TyyTdkLVK +06/13/2018,Musicians,@DuaLipa,HEYOOOOO!!! THIS IS CRAZY!! https://t.co/O8qSEa7DyX https://t.co/ndlyEfpVDn +06/13/2018,Musicians,@DuaLipa,"We mustn’t encourange unkind words and bullying of any form! We must work together to encourage love, kindness and… https://t.co/ZEjlLNLHKp" +06/13/2018,Musicians,@DuaLipa,CRYING!!!! 📀✨✨✨✨ https://t.co/3x6TjCZj8Y +06/13/2018,Musicians,@DuaLipa,Hola Miami!!! We felt so lucky to play in an open-air amphitheatre last night. Felt like our own mini festival. Swe… https://t.co/zcc509xl1v +06/13/2018,Musicians,@DuaLipa,Soundcheck yday in Miami // shot by Pixie Levinson https://t.co/rCwDIYZfBl +06/13/2018,Musicians,@DuaLipa,"RT @dlipanews: .@DUALIPA's debut album 'Dua Lipa' is now certified GOLD in the US, 'IDGAF' is now certified GOLD in the US and 'Blow Your M…" +06/13/2018,Musicians,@DuaLipa,The happiest kid ever!!! https://t.co/9ZlN2060wP +06/13/2018,Musicians,@DuaLipa,I just found out i’m the #1 artist on youtube in the Netherlands 🇳🇱 ❤️ my dutchies I love you! You go hard. Thank you xxxx +06/13/2018,Musicians,@DuaLipa,Omg it was so hot MY KNEES WERE SWEATING!!! Miami you were unbelievable tonight ILY 💓💓 https://t.co/pb5JYvO1So +06/13/2018,Musicians,@DuaLipa,@sighzach Stress over what? +06/12/2018,Musicians,@DuaLipa,No please. Let us not. https://t.co/PlmDf6WCpO +06/12/2018,Musicians,@DuaLipa,For tonights show I need your help. Which song would you prefer to hear? GO 💥 +06/12/2018,Musicians,@DuaLipa,Woweeeee https://t.co/OR12VrdDmg +06/12/2018,Musicians,@DuaLipa,Thank you to all the radio stations that invited me over yesterday to perform for you all! I feel so lucky to get t… https://t.co/FyykI8AdzN +06/12/2018,Musicians,@DuaLipa,Beautiful Anna xx https://t.co/G5dF9Ltrzf +06/12/2018,Musicians,@DuaLipa,Love is the most wonderful thing in the world. Dont be afraid to love with all youve got. When it doesnt go your wa… https://t.co/JlwqiBAe1s +06/12/2018,Musicians,@DuaLipa,Oh my darling I think a bigger fear is allowing yourself to stay around toxic people for too long. You’ll recognise… https://t.co/O0TWYCJLqx +06/12/2018,Musicians,@DuaLipa,"You should keep your friends and loved ones close, trust your gut and go with your instinct. Never let go of the pe… https://t.co/xkDZ0K2gYX" +06/12/2018,Musicians,@DuaLipa,"RT @duadior: ""homesick"" vs ""new rules"" https://t.co/wBfQJDyW6I" +06/12/2018,Musicians,@DuaLipa,I got to meet so many sweethearts today! Love miami 💗💗 https://t.co/Uu3wl9gV0W +06/11/2018,Musicians,@DuaLipa,In Miami in that @NathalieBallout drip 💧 https://t.co/1CdT6j9Lgg +06/11/2018,Musicians,@DuaLipa,LOVE YOU BBYS 💕 +06/11/2018,Musicians,@DuaLipa,@frangilana Youre a special one Nat. You a real one 💕 +06/11/2018,Musicians,@DuaLipa,RT @frangilana: we are such babies!!!!! sticking with u forever sis https://t.co/wpPeeJds1O +06/11/2018,Musicians,@DuaLipa,I’m gonna follow some new people on twitter so put it on my feed who I should follow! Going into an interview but o… https://t.co/Yxm3gSVkxq +06/11/2018,Musicians,@DuaLipa,And I wrote ur tattoo x https://t.co/yAFGslzxHs +06/11/2018,Musicians,@DuaLipa,Omg in Chicago and you guys were so sweet and singing along to Thinking bout you you made me cryyyy!! Such a specia… https://t.co/nj0Z8q73sq +06/11/2018,Musicians,@DuaLipa,Thank you for the memories and the love you are all so special to me ❤️ +06/11/2018,Musicians,@DuaLipa,Ofcourse!!! https://t.co/JCEJ6T51Hf +06/11/2018,Musicians,@DuaLipa,Love you!! That was such a good day https://t.co/aOXTIKg733 +06/11/2018,Musicians,@DuaLipa,@newrulesdua Get well soon 💕 +06/11/2018,Musicians,@DuaLipa,You! I was like “awww cute she wanted me to get my daily potassium intake... they really care for my health” 😝😝😝 https://t.co/XzZD59Ans4 +06/11/2018,Musicians,@DuaLipa,ME! https://t.co/n6rMacVCmR +06/11/2018,Musicians,@DuaLipa,I LITERALLY SPOKE ABOUT THIS AT MY RADIO Q&A TODAY!! R U PSYCHIC https://t.co/WJU6q1LuUY +06/11/2018,Musicians,@DuaLipa,I’m lucky to do it with you all. I only wanna make you guys proud and happy xxx https://t.co/IoNLbAOkRT +06/11/2018,Musicians,@DuaLipa,Colline!!!! I remember this so well when! Love you xxx https://t.co/Oi9TXekL9c +06/11/2018,Musicians,@DuaLipa,Thanks @rulesdua for putting that onto my TL all those memoriesssss +06/11/2018,Musicians,@DuaLipa,Omggggg 😭😭💗💗 https://t.co/WtQaFbWZot +06/11/2018,Musicians,@DuaLipa,Bonnaroo that was crazy thank you so much 💥 10.06.2018 // shot by Pixie Levinson https://t.co/z7w9A0FBdg +06/11/2018,Musicians,@DuaLipa,Go on girlllll https://t.co/jA2ohLFL6z +06/11/2018,Musicians,@DuaLipa,RT @visitkingdoms: u always provide me w a night i’ll never forget @DUALIPA thank u 💓🌟 https://t.co/x8BLk1OSdW +06/11/2018,Musicians,@DuaLipa,"🧡 Join me, @aalayaheastmond, @breebxtler and @team_enough in the fight to prevent gun violence. Text “Roo” to 877-8… https://t.co/9faOK6WjnV" +06/11/2018,Musicians,@DuaLipa,RT @IzzyRosa216: EVERYONE KNOWS NOT TO GIVE A FUCK.🖕🏻@DUALIPA https://t.co/tm6zu8EGCA +06/11/2018,Musicians,@DuaLipa,WOOOH BONNAROO THAT WAS SWEATY AF!!! I WANNA DO IT AGAIN +06/11/2018,Musicians,@DuaLipa,RT @dlipanews: Dua Lipa via @RollingStone! https://t.co/Yb8Js5xnr6 +06/10/2018,Musicians,@DuaLipa,BONNAROO https://t.co/ZxZv9ACuU6 +06/10/2018,Musicians,@DuaLipa,I try to be here with you guys as much as I can! https://t.co/hLthqJ5LG7 +06/29/2018,Musicians,@JessGlynne,RT @hmvtweets: .@JessGlynne is back with a new album! Pre-order Always In Between & get a #hmvExclusive Blue Dreams box with art cards & po… +06/29/2018,Musicians,@JessGlynne,Im so excited that the the preorder for my new album Always In Between is live!!!! Another moment I can’t quite bel… https://t.co/KHYMseI6S3 +06/28/2018,Musicians,@JessGlynne,I can’t believe I’m finally announcing the new chapter... Always In Between my new album will be with you in just a… https://t.co/rCuEZFPP1p +06/15/2018,Musicians,@JessGlynne,"I can’t believe it! Truly blessed! As I said, I’ll keep giving you guys the music you deserve ... Some really huge… https://t.co/HoPlhl830L" +06/13/2018,Musicians,@JessGlynne,Just being real out here. Showing you the truth behind the scenes.. How you feel? 💋 https://t.co/sA0mkjX13j +06/13/2018,Musicians,@JessGlynne,I’ll Be There is #1 in the @bigtop40 for a 2nd week 🙌 https://t.co/ipsDtNSm52 +06/13/2018,Musicians,@JessGlynne,Thank you so much for having me @CapitalOfficial. To all my fans I love you X https://t.co/ud0rQyLoqX +06/13/2018,Musicians,@JessGlynne,"#2 in New Hits UK, thank you Deezer, my love is unconditional https://t.co/FfFvityQTE https://t.co/DAVAHOIMva" +06/13/2018,Musicians,@JessGlynne,"AND #1 in Hot Hits UK, thank you so much for your support @Spotify https://t.co/oWZzEhabea" +06/13/2018,Musicians,@JessGlynne,"I'll Be There #1 in Today's Hits, thank you so much @applemusic https://t.co/F8FfPPjibq https://t.co/OuZzLFZ6AA" +06/12/2018,Musicians,@JessGlynne,Can’t believe I’ll Be There is Number one in the midweeks.. I have so much warmth in my heart right now! https://t.co/3OvdU1AFDM +06/11/2018,Musicians,@JessGlynne,I promise you I don’t take one day of my life for granted. I am so grateful for all the support and love. I can’t t… https://t.co/8Ov3zO9B8G +06/08/2018,Musicians,@JessGlynne,So much love for @banxnranx for remixing I’ll Be There! 💙 y’all can listen here https://t.co/LADxGDZIOi +06/04/2018,Musicians,@JessGlynne,See you on 4th August Bedford Park! Can’t wait 😍 https://t.co/aGHwNHo2AQ https://t.co/qnDzupDdad +06/03/2018,Musicians,@JessGlynne,Thank you @BigTop40 I feel so blessed! I don’t know how to express how much these things mean to me. Just the fact… https://t.co/k1lkYKTiOu +06/03/2018,Musicians,@JessGlynne,@BigTop40 Thank you so much! To everyone who’s bought or streamed I’ll Be There... I can’t thank you enough and I’m… https://t.co/mWVHmPQmWm +06/03/2018,Musicians,@JessGlynne,"RT @BigTop40: The moment you find out you're No. 1... 😍 + +@JessGlynne has done it again! I'll Be There becomes her EIGHTH No. 1 on The Offic…" +06/01/2018,Musicians,@JessGlynne,Hope you guys like this acoustic version of I’ll Be There.. It’s out today. I really love this and I hope y’all lov… https://t.co/J8XnnGPokJ +05/31/2018,Musicians,@JessGlynne,Tomorrow morning I’ll be on the telly 📺 BBC Breakfast from 9 +05/25/2018,Musicians,@JessGlynne,See you tomorrow Swansea!!! https://t.co/2wVdhZSEKS +05/24/2018,Musicians,@JessGlynne,#TBT to the the I'll Be There launch party. Was so special.. Thank you everyone who came and shared that evening wi… https://t.co/xwjYouIm2u +05/22/2018,Musicians,@JessGlynne,Loved my Sunday morning! Go catch up on All 4 if you fancy 💜 https://t.co/PTWQQCnwOl +05/19/2018,Musicians,@JessGlynne,"Thank you for being with me on Thursday, it was a special night at the Jazz Cafe in London.. my Home. I don’t know… https://t.co/vb5C74qn5v" +05/17/2018,Musicians,@JessGlynne,Tonight... you coming? 💙 https://t.co/ql8pLllpM6 +05/14/2018,Musicians,@JessGlynne,I’m doing a special performance this Thursday at the Jazz Café in Camden. Very limited tickets available right now… https://t.co/r3WSNQGuBj +05/10/2018,Musicians,@JessGlynne,What a moment! Thank you everyone who came down to this.. you got me! 💕 https://t.co/qGrHve2GP3 +05/09/2018,Musicians,@JessGlynne,"On @BBCTheOneShow tonight tune in at 7 📺 Or come down and watch the performance, 7:45 pm at BBC Broadcasting house. https://t.co/ZArdXLM4lw" +05/09/2018,Musicians,@JessGlynne,.@Deezer put I’ll Be There in Brand New UK. Big up ❤ https://t.co/bjtNMfJiMT +05/08/2018,Musicians,@JessGlynne,Thanks @Spotify! X https://t.co/IljMIK1RyA +05/04/2018,Musicians,@JessGlynne,"A small hint to those that really want to come to the launch party. First come first serve, limited space X https://t.co/upN8qKv53y" +05/04/2018,Musicians,@JessGlynne,From day ONE I’m in Today’s Hits on @AppleMusic with I’ll Be There! Thank you so much x https://t.co/yLIVmLwHpx https://t.co/9h720qZD5a +05/04/2018,Musicians,@JessGlynne,Big love @Spotify for all the support! X https://t.co/Tihh6GzAzu +05/04/2018,Musicians,@JessGlynne,"My new single I’ll Be There is out now, and so is the video. It’s been a while and I’m so excited for you to hear i… https://t.co/l7wzdT9Gvw" +05/03/2018,Musicians,@JessGlynne,💙https://t.co/4KrWQUC2Ed https://t.co/slvnB5xjMb +05/02/2018,Musicians,@JessGlynne,See you in 2... 💧 https://t.co/ZHFAJcS838 +05/02/2018,Musicians,@JessGlynne,Hey my friends.. So this Friday I’m coming for you finally! I wanted to put on a special event for my fans and for… https://t.co/iZY1GHXkFu +05/01/2018,Musicians,@JessGlynne,When you're lost... I’ve got enough love for 2... https://t.co/4KrWQUC2Ed https://t.co/QAIwDzBbR7 +05/01/2018,Musicians,@JessGlynne,Ayyyy! Happy Birthday Land Rover! You guys have been too good to me 💙! @LandRoverUKPR #landrover70years 👅 https://t.co/9heRRI1CJG +05/01/2018,Musicians,@JessGlynne,New Single 04.05.18. PreOrder https://t.co/4KrWQUC2Ed https://t.co/fmtknXDOxN +04/30/2018,Musicians,@JessGlynne,I'll Be There https://t.co/8nEeV8ja5H +04/30/2018,Musicians,@JessGlynne,#ILLBETHERE https://t.co/Gpb6d6sbEn +04/30/2018,Musicians,@JessGlynne,"Can't wait! @CapitalOfficial's Summer Time Ball, see you soon! #CapitalSTB https://t.co/PCLbOyGC4r" +04/25/2018,Musicians,@JessGlynne,Thank you so much @SiriusXMHits1 for having These Days as their #HitBound Song of the Week!!! Big love to @KidKelly… https://t.co/3prUmsGCnn +04/03/2018,Musicians,@JessGlynne,This is so insane and kinda hard to believe... The love is so real! Thank you 💙 https://t.co/wq4ikadFqq +03/30/2018,Musicians,@JessGlynne,We Number 1!! Fully emotionally excited and so damn happy for everyone involved in this song… https://t.co/AaZmraMWik +03/29/2018,Musicians,@JessGlynne,Mind On It... go check it on YouTube now gorgeous people 💞 https://t.co/uGd4V2lpQv +03/26/2018,Musicians,@JessGlynne,Ain’t no one complaining out here FYI! Just singing my feels! Sometimes I just need to put my… https://t.co/U9XckEbCI6 +03/24/2018,Musicians,@JessGlynne,Never mind 💙 https://t.co/US7dhliGHG +03/22/2018,Musicians,@JessGlynne,"Please help play a part in turning the tide against one of our biggest killers, dementia. Simply watch and share th… https://t.co/Vl50mKcEAp" +03/15/2018,Musicians,@JessGlynne,Hey people.. Me and my friend @YungenPlayDirty have a little treat for you.. “Mind On It” will… https://t.co/oSbdaklh12 +03/13/2018,Musicians,@JessGlynne,"W O W so These Days is number 1 in the midweeks, I can’t believe it! Please show the love for… https://t.co/xw0drWsULH" +03/11/2018,Musicians,@JessGlynne,"Happy mummy’s day! No words can describe the love I have for you, my number 1 woman xxxx https://t.co/PWLFNxYeE8" +03/10/2018,Musicians,@JessGlynne,A moment for me 🌴 https://t.co/AUwF44FSCJ +03/08/2018,Musicians,@JessGlynne,WOMAN IS POWER! DON’T EVER FORGET IT! 💞 https://t.co/39IxLaaVKb +03/07/2018,Musicians,@JessGlynne,That time I wore that suit... 👅 https://t.co/sS4HYaBH1I +02/28/2018,Musicians,@JessGlynne,I am not perfect. https://t.co/YzNS5Oa439 +02/28/2018,Musicians,@JessGlynne,Insecure and I don’t care https://t.co/sYD1mnEelT +02/22/2018,Musicians,@JessGlynne,🕊 https://t.co/JZYb0mjuBD +02/22/2018,Musicians,@JessGlynne,I am a woman with a platform and I’m so grateful for where I stand. I didn’t go to the Brits… https://t.co/BGDPtprcig +02/22/2018,Musicians,@JessGlynne,2018 https://t.co/fHdHrqsy62 +02/19/2018,Musicians,@JessGlynne,These Days at Abbey Road with these lovely bunch of boys... @Rudimental @dancaplen @macklemore all the love! 👅 https://t.co/WJYRzipM9D +02/16/2018,Musicians,@JessGlynne,These Days acoustic out today 👅 https://t.co/IX44AIJdpE and the live video is out Monday hunnies https://t.co/aI3cFr9Cko +02/09/2018,Musicians,@JessGlynne,One step at a time... 👀 https://t.co/Hy0ygoNTDI +02/07/2018,Musicians,@JessGlynne,Get ready my people... I’m coming for you👅... #biggestweekend https://t.co/eHDW7kcXlo +02/06/2018,Musicians,@JessGlynne,Meet me tomorrow night 7pm.. bbconeshow 👅 https://t.co/AXRNiQQLJ9 +02/04/2018,Musicians,@JessGlynne,@BigTop40 @Rudimental @macklemore @dancaplen So blessed I can’t believe it! Big love everyone that is so special xxx +02/04/2018,Musicians,@JessGlynne,"RT @BigTop40: 🥇 Imagine romping up 12 places, to get the #BigTop40's No. 1 spot. 'Cause @Rudimental, @JessGlynne, @macklemore and @dancaple…" +01/31/2018,Musicians,@JessGlynne,My protector 💞 https://t.co/Muyc644Ytz +01/25/2018,Musicians,@JessGlynne,Hey people.. here’s a little video for you.. hope y’all like it 💞 https://t.co/7OMPKq7gcp +01/24/2018,Musicians,@JessGlynne,#THESEDAYS video soon come @rudimental @dancaplen @macklemore https://t.co/2uald2lK6G +01/22/2018,Musicians,@JessGlynne,I’m out here in the trees what y’all saying? https://t.co/1wGsKkwtmh +01/19/2018,Musicians,@JessGlynne,2018... slowly coming for you. Don’t be scared just be ready... https://t.co/TkZ1KHXNbq +01/19/2018,Musicians,@JessGlynne,"Listen up.. #TheseDays is out! Enjoy 👅 https://t.co/5obo8iV1lp + +@Rudimental @Macklemore @DanCaplen https://t.co/zBNgT8aetj" +01/18/2018,Musicians,@JessGlynne,I’m on a new tune with @Rudimental and y’all can get... #TheseDays at midnight!!! https://t.co/5obo8iV1lp https://t.co/1ZoygjhBHz +01/17/2018,Musicians,@JessGlynne,💙 https://t.co/kVUQmfy9ev +01/16/2018,Musicians,@JessGlynne,"T H E S E D A Y S + +#TheseDays https://t.co/kqJUpayTLC" +01/15/2018,Musicians,@JessGlynne,"Are you ready... +@Rudimental @macklemore @dancaplen #2018 https://t.co/dDBMSrL4UM" +12/31/2017,Musicians,@JessGlynne,So I hope everyone is ready for 2018 cause I am and I’m nearly ready to share the love. Let’s… https://t.co/X84OwZcubb +12/31/2017,Musicians,@JessGlynne,I’ve been doing me for a little minute finding some balance and I’ve also been working… https://t.co/vayIjc2Ocz +12/31/2017,Musicians,@JessGlynne,"Hey, it’s been a while... https://t.co/ZSbUbk4WDq" +09/26/2017,Musicians,@JessGlynne,I got you.. Don't rush me. I got you 💜 +09/23/2017,Musicians,@JessGlynne,When I say thank you I mean... Thank You from the bottom of my heart 🖤 https://t.co/teZ1s0rv7o +08/21/2017,Musicians,@JessGlynne,I am lying in my bed.. the washing machine is on and I am having a moment. I Cry When I Laugh… https://t.co/g4yvfjx91X +08/09/2017,Musicians,@JessGlynne,My mask... that's what I need right now x https://t.co/VwlERtW1uY +07/14/2017,Musicians,@JessGlynne,London I'm so excited to see you! We home & I'm bringing you some summer of love! Here's a little something for you 💗https://t.co/G0wg9NI2ZV +07/08/2017,Musicians,@JessGlynne,Happy Pride! Celebrate Love and be YOU!Today and every day. We are one my people! I LOVE YOU… https://t.co/Nahgo79fto +12/23/2016,Musicians,@JessGlynne,This journey so far has involved so much that I thought I would only dream of. I can't tell you… https://t.co/xUbCNmXUPK +12/22/2016,Musicians,@JessGlynne,I want to be like Helen Mirren when I'm older 💜 +12/20/2016,Musicians,@JessGlynne,Just say it how it is... makes life a lot simpler you know 👌🏼 +12/20/2016,Musicians,@JessGlynne,You cool? 👀 https://t.co/TbpDBmzYW8 +12/19/2016,Musicians,@JessGlynne,Have you heard about this oil? Honestly! The ONE!!!!!!!! 💜 https://t.co/OundOzm294 +12/17/2016,Musicians,@JessGlynne,Monster Munch 💜 +12/17/2016,Musicians,@JessGlynne,RT @Jolene_Henry: I love people +12/16/2016,Musicians,@JessGlynne,"I announced some new UK live dates over the past few weeks. They’re all below in case you missed any, tix & info at… https://t.co/gSMBFafuZV" +12/15/2016,Musicians,@JessGlynne,Thank you @belvederevodka for my bespoke bottle of vodka for the Take Me Home tour and thank you… https://t.co/wOAGcIINFf +12/15/2016,Musicians,@JessGlynne,https://t.co/D0BTMEcvfQ 💜 +12/13/2016,Musicians,@JessGlynne,Baes 💓 https://t.co/xVbtUNxMg7 +12/12/2016,Musicians,@JessGlynne,Kahlil Joseph | m.A.A.d https://t.co/QUij1al2rY +12/12/2016,Musicians,@JessGlynne,Bed 💜 https://t.co/OeKCMEnf7S +12/12/2016,Musicians,@JessGlynne,Chemical Brothers #robot https://t.co/xCIAxLpxwq +12/11/2016,Musicians,@JessGlynne,😂💜 https://t.co/RJvcNqBoHF +12/11/2016,Musicians,@JessGlynne,Wow thank you so much BBC Awards!! So grateful to be recognised!! So much love xxxx https://t.co/vF2k9jIXas +12/10/2016,Musicians,@JessGlynne,Nicole to win +12/10/2016,Musicians,@JessGlynne,Sleep deprived.. I'm so sad right now! +12/08/2016,Musicians,@JessGlynne,HAPPY BIRTHDAY TO A SPECIAL BANANA HEAD! May this next year bring you even more happiness and… https://t.co/1QZ5XS1Gz6 +12/08/2016,Musicians,@JessGlynne,When you know ... you know +12/07/2016,Musicians,@JessGlynne,@grimmers same page!!! +12/07/2016,Musicians,@JessGlynne,About that... 👄 https://t.co/ul4zna6JJt +12/05/2016,Musicians,@JessGlynne,Last night was nothing short of a big fat load of fun loving wilin' out!!!! Thank you to… https://t.co/e7LWx4uBgo +12/05/2016,Musicians,@JessGlynne,If you have my phone.. please can I have it back? Please 🙏🏻 +12/04/2016,Musicians,@JessGlynne,T O N I G H T 👌🏼 +12/03/2016,Musicians,@JessGlynne,Can someone help me out.. I want to go for dinner in town (London) but everywhere is booked up.. I know it's Saturday but come on!? +12/02/2016,Musicians,@JessGlynne,Thank you to every single person who came and joined me on the Take Me Home tour... I can't… https://t.co/qrJFS0QjUU +12/02/2016,Musicians,@JessGlynne,"Tickets on sale now for summer dates in Aintree, Wincanton, Carlisle, Newmarket, Llanelli, Newbury & York...… https://t.co/DSTjMfkkKc" +12/01/2016,Musicians,@JessGlynne,London you stole my heart last night. I can't even put it in to words. I will never forget… https://t.co/yDdAvaYrJv +11/30/2016,Musicians,@JessGlynne,LONDON ARE YOU READY!!?? 👅 https://t.co/H1X8fd5Vc5 +11/30/2016,Musicians,@JessGlynne,"Pleased to announce 4 very special summer dates! Tickets on sale Friday 2nd Dec. Presale starts tomorrow, sign up a… https://t.co/lXQPKhvTHd" +11/30/2016,Musicians,@JessGlynne,O2 Arena... I can't believe I am coming for you... 💜 https://t.co/Sx8VO8zXe2 +11/29/2016,Musicians,@JessGlynne,Late nights https://t.co/X88sAedM4i +11/29/2016,Musicians,@JessGlynne,Take Me Home https://t.co/NzhOSZsyos +11/27/2016,Musicians,@JessGlynne,Merch / Hoody Crew https://t.co/PQ245bqUK9 +11/27/2016,Musicians,@JessGlynne,See true https://t.co/2FoVW7mdj6 +11/27/2016,Musicians,@JessGlynne,Brighton... what you got for me 👄 +11/27/2016,Musicians,@JessGlynne,💜 https://t.co/E1w3UuWHdx +11/26/2016,Musicians,@JessGlynne,Apple Crumble and custard in Brighton 💜 +11/26/2016,Musicians,@JessGlynne,I'm yours 💜 https://t.co/Vf6GICuMX4 +11/26/2016,Musicians,@JessGlynne,@emily_JG_ I'm so sorry I didn't get to meet you. I hope you're ok and thank you for all your support. Sending you a big hug 💜Jx +11/25/2016,Musicians,@JessGlynne,'Love Me'. by nadineijewere https://t.co/TGeyzDRVNb +11/25/2016,Musicians,@JessGlynne,NEWCASTLE !!! I'm so excited 💜 +11/24/2016,Musicians,@JessGlynne,A few last min tickets for were just made available for the tour. QUICK Brighton https://t.co/OzxnZnER1O | Plymouth https://t.co/oclnY4I1jT +11/23/2016,Musicians,@JessGlynne,Amelia... I got you 💜 https://t.co/mCPKShRTFO +11/22/2016,Musicians,@JessGlynne,I see you 👁 https://t.co/pGEHlfG1qJ +11/22/2016,Musicians,@JessGlynne,💜 https://t.co/9wELTv5jyX +11/21/2016,Musicians,@JessGlynne,#TAKEMEHOMETOUR https://t.co/neDar1d2nJ +11/21/2016,Musicians,@JessGlynne,Liverpool!!!!!!! WOW!!!!!!! Thank you 💜💜💜💜💜 so loud and so special xxxxx +11/20/2016,Musicians,@JessGlynne,💜. Artwork @jolene_henry / Photo nadineijewere https://t.co/Me6RnQ03Da +11/20/2016,Musicians,@JessGlynne,Just posted a photo https://t.co/GAaUJvSXza +11/20/2016,Musicians,@JessGlynne,Aloha Liverpool 👀 +11/19/2016,Musicians,@JessGlynne,#TAKEMEHOMETOUR https://t.co/8tVrnxgZTw +11/19/2016,Musicians,@JessGlynne,Birmingham... I can't thank you enough for kicking this tour off with so much love! What a… https://t.co/jDbKdj0izx +11/18/2016,Musicians,@JessGlynne,Birmingham... I will be on stage at 8:15pm! You ready!? 💜 +11/18/2016,Musicians,@JessGlynne,BIRMINGHAM ARE YOU READY!!!??? https://t.co/0VNQmvhg9I +11/17/2016,Musicians,@JessGlynne,2 F***ING DAYS!!!!! 😱 https://t.co/RYdH9W4klr +11/16/2016,Musicians,@JessGlynne,T R E E J 💜 https://t.co/B0cv0nXemy +11/15/2016,Musicians,@JessGlynne,Bid on my shoes https://t.co/VFoEG9iQGZ in #CelebrityShoeAuction so @SmallStepsDocs can help kids on rubbish dumps https://t.co/zQzmv6IJOa +11/15/2016,Musicians,@JessGlynne,TOUR IS COMING!! Are you READY!? https://t.co/Scdiw7Xxz9 +11/14/2016,Musicians,@JessGlynne,Just posted a video https://t.co/xxbTmVcPTc +11/14/2016,Musicians,@JessGlynne,T M H T https://t.co/v0LTbcwquJ +11/13/2016,Musicians,@JessGlynne,We tried something like this.... 👄#mannaquinchallange https://t.co/6RlozqaIfy +11/12/2016,Musicians,@JessGlynne,@Jolene_Henry you're telling me +11/11/2016,Musicians,@JessGlynne,I’m working on a special project & need your help. If you’re coming to my tour I want to see where you’ve enjoyed m… https://t.co/SLv339n71b +11/08/2016,Musicians,@JessGlynne,Pull It https://t.co/rNmVA7E2Pe +11/07/2016,Musicians,@JessGlynne,Stand up for women! Let's make history... We didn't fight for nothing. Make sure you vote!… https://t.co/zXSvtHbAej +11/04/2016,Musicians,@JessGlynne,That time at Arsenal https://t.co/sZCzvrKqux +11/04/2016,Musicians,@JessGlynne,That time in America https://t.co/FH2FHCExUB +11/04/2016,Musicians,@JessGlynne,I only have a cup of tea so I can have a biscuit +11/02/2016,Musicians,@JessGlynne,Us / @itslyndell https://t.co/wa9c7ElDFt +11/01/2016,Musicians,@JessGlynne,So excited to announce the supports for my UK tour... We got mr @wretch32 and miss @raye... YOU READY!? X https://t.co/SdSAQMv6gJ +11/01/2016,Musicians,@JessGlynne,I tried... 👄 https://t.co/aivSXN9JlC +11/01/2016,Musicians,@JessGlynne,Just posted a photo https://t.co/fG4s6az1h8 +10/28/2016,Musicians,@JessGlynne,This girl!! @RayBLK_ https://t.co/qKaHXVt0rH 💜 +10/27/2016,Musicians,@JessGlynne,To NYC or NO? +10/26/2016,Musicians,@JessGlynne,Where is the ginger hair emoji? I think it's rude that there isn't one.. +10/26/2016,Musicians,@JessGlynne,Yo / https://t.co/PymD5QPPCk +10/25/2016,Musicians,@JessGlynne,Love #ChrisLevine https://t.co/H48moLGIAJ +10/25/2016,Musicians,@JessGlynne,Thank you R1 Teen Awards 💜 https://t.co/nUmIZx6dMK +10/25/2016,Musicians,@JessGlynne,Sometimes it just works +10/25/2016,Musicians,@JessGlynne,Had an amazing time with you all at the @BBCR1 #TeenAwards on Sunday! Watch it back 👉 https://t.co/NhvLb4Wg6A https://t.co/lXaA2FXkjP +10/24/2016,Musicians,@JessGlynne,Some of my loves 💜 https://t.co/zS01sijUKo +10/23/2016,Musicians,@JessGlynne,@JoFrostMakeUp @Eyeko what a dream!!! 💜 +10/23/2016,Musicians,@JessGlynne,G Y A L S 💓 https://t.co/g4YbIRxvsb +10/23/2016,Musicians,@JessGlynne,@TinieTempah thank you mr! 🙈x +10/22/2016,Musicians,@JessGlynne,3X PLATINUM ALBUM!!! I can't believe it!!!!!! THANK YOUUUUU 😭 +10/22/2016,Musicians,@JessGlynne,To my fans.. I got your cards and I read your messages and your tweets and I can't thank you enough for all the love and support you give! 💓 +10/22/2016,Musicians,@JessGlynne,"I have the best family, friends and team anyone could wish for! I've had the best birthday… https://t.co/FtNJ46Y9dj" +10/19/2016,Musicians,@JessGlynne,Thank you for having me Triumph! Beautiful bikes 💜@officialtriumph #brutalbeauty https://t.co/xZeuMU6n9S +10/18/2016,Musicians,@JessGlynne,@Sweetstix but I missssss YOU +10/17/2016,Musicians,@JessGlynne,👄 https://t.co/YPgM7aN5cE +10/16/2016,Musicians,@JessGlynne,Love my T big thank you nandes_clbb 💓 https://t.co/5TRK9wyM5v +10/14/2016,Musicians,@JessGlynne,@bbdiamond you are too funny!! 😂 +10/13/2016,Musicians,@JessGlynne,@Annarbanannar me too minus the hot choc! 💜 +10/13/2016,Musicians,@JessGlynne,@_kerry93 me too 💓 +10/13/2016,Musicians,@JessGlynne,@AliciaWoodwardx I'm ok xx +10/13/2016,Musicians,@JessGlynne,@bloodygalore xxx +10/13/2016,Musicians,@JessGlynne,How is everyone? 💜 +10/13/2016,Musicians,@JessGlynne,Did you vote? https://t.co/XqLKew15uU +10/13/2016,Musicians,@JessGlynne,"Watch my performance of “Take Me Home”, “Hold My Hand” and “Rather Be” on PBS’ Live at 9:30! https://t.co/pOfuvLJrbH https://t.co/FqUCVLL1DE" +10/12/2016,Musicians,@JessGlynne,"My Love from Austin City Limits ❤ +https://t.co/wLutTZLTUV" +10/10/2016,Musicians,@JessGlynne,@mtvema thank you! 💜 +10/07/2016,Musicians,@JessGlynne,O ok. https://t.co/Cp7UZkPSPu +10/06/2016,Musicians,@JessGlynne,"You can vote as many times as you like, so please take 5 mins to go and vote like crazy! https://t.co/XqLKew15uU" +10/06/2016,Musicians,@JessGlynne,"I'm nominated for the 'Best World Stage’ award at the @MTVEMA's, but I need your votes to win!… https://t.co/5zrLL4Accd" +10/06/2016,Musicians,@JessGlynne,Have you heard about @jinjinofficial and @lovefromcamille ... cause they just too much 👌🏼💜 +10/05/2016,Musicians,@JessGlynne,Salt fish patty and Orange Is The New Black 💓 #Ochiyougotme +10/04/2016,Musicians,@JessGlynne,Vegas 💸 https://t.co/QzuQ2O8BBI +10/04/2016,Musicians,@JessGlynne,Summer is officially done... I just have to say.. Thank you so much! Next stop... Arenas 😱🙈xxx https://t.co/frseNv3Ftq +10/03/2016,Musicians,@JessGlynne,Touch DOWN 🇬🇧 +10/03/2016,Musicians,@JessGlynne,I'm coming home! 🇺🇸✈️🇬🇧 ... +10/01/2016,Musicians,@JessGlynne,Austin!!! I LOVE YOU!!!! Thank you so much!!!!! Austin City Limits festival was such a treat… https://t.co/UV0FZtuehg +10/01/2016,Musicians,@JessGlynne,Not long now! 💜 https://t.co/R7MAbgsNNv +06/18/2018,Musicians,@EllaHenderson,🙌🏼 STUNNING @itsgracecarter https://t.co/SHhptomsGF +05/26/2018,Musicians,@EllaHenderson,Still best vocals in the game @samsmithworld @bbcr1 🎶❤️🙌🏼🙏🏼 #BiggestWeekend x E +05/19/2018,Musicians,@EllaHenderson,That moment you open your take out pizza box & they delivered to you with extra toppings & stuffed crust!! 🧡🙌🏼🍕😂… https://t.co/IBpTsUY8Vd +05/18/2018,Musicians,@EllaHenderson,Wishing @GabbyBarrett_ all the love & luck in the world for @AmericanIdol final!! ✍️ Loved writing #RiversDeep & yo… https://t.co/aGkYuGDBMk +05/18/2018,Musicians,@EllaHenderson,"RT @HollywoodRecs: ✨ @GabbyBarrett_'s #RiversDeep is out now! 🎶 Listen on @AppleMusic: https://t.co/MDfRDmyBwr + +The LIVE, two-night @Americ…" +05/18/2018,Musicians,@EllaHenderson,"RT @GabbyBarrett_: My new single “Rivers Deep” IS OUT RIGHT NOW! GO GRAB IT on Itunes, Spotify, ETC. ❤️ https://t.co/rWlkHLl1dD" +04/22/2018,Musicians,@EllaHenderson,RIP @Avicii 💔 https://t.co/vVkOZ6eTZq +03/08/2018,Musicians,@EllaHenderson,Feel honoured to be amongst some very incredible & inspiring women @adele @DUALIPA @littlemix .. here’s to making… https://t.co/MCX1wOESnT +02/23/2018,Musicians,@EllaHenderson,ᴛᴜɴᴇ ɪɴᴛᴏ ʏᴏᴜ🎛 https://t.co/u2EFT2lt8W +02/20/2018,Musicians,@EllaHenderson,Completely obsessed @JamesBayMusic 🙌🏼👏🏼 https://t.co/EGkszUCmaF +02/20/2018,Musicians,@EllaHenderson,ᴄʀᴇᴀᴛɪɴɢ✍️ @ArrowBenjamin x. E https://t.co/oZ49UaDYpL +02/20/2018,Musicians,@EllaHenderson,"RT @officialcharts: Loads of artists have assured us they're releasing new albums in 2018, including @EllaHenderson and @RitaOra. Full list…" +02/03/2018,Musicians,@EllaHenderson,RT @KinkyBootsUK: Ella + Kinky Boots = FABULOUS! ❤ https://t.co/n7adarUdhH +02/01/2018,Musicians,@EllaHenderson,HAPPY 10 YEARS @Fabulousmag 🙌🏼❤️😘💛 x. X Thank you for all your support throughout the years! Here’s to an exciting… https://t.co/btRVTwvEtj +01/29/2018,Musicians,@EllaHenderson,Congrats @alessiacara 🙌🏼 so well deserved!! X. E https://t.co/8xkIk8cxg0 +01/20/2018,Musicians,@EllaHenderson,AUSTRIA 🇦🇹 https://t.co/YEjuzqRcox +01/19/2018,Musicians,@EllaHenderson,"@ScarlettMoffatt Ps. You’re beautiful @ScarlettMoffatt ... your not a shape, size or a label... your a woman. ❤️" +01/19/2018,Musicians,@EllaHenderson,🙌🏼❤️ yess https://t.co/Mzvsd9b38i +01/12/2018,Musicians,@EllaHenderson,twenty- two⚜️ https://t.co/1LRs0cYrhZ +01/07/2018,Musicians,@EllaHenderson,sᴀʏ ᴛʜᴇ ᴡᴏʀᴅs... ᴇxᴀᴄᴛʟʏ ᴀs ᴛʜᴇʏ ᴀʀᴇ. #ᴀʟʙᴜᴍ2 https://t.co/oRrlKviwIs +01/06/2018,Musicians,@EllaHenderson,👀🙌🏼 https://t.co/zumcgz3kvw +12/21/2017,Musicians,@EllaHenderson,❤️ https://t.co/TjIbd6hVWa +12/21/2017,Musicians,@EllaHenderson,Driving home for Christmas ❄️🎄@LincsFM x. E https://t.co/K1nXnoQcUd +12/15/2017,Musicians,@EllaHenderson,Thank you @Spotify for an amazing 2017!! Here’s to wrapping up this year & to an exciting 2018 filled with new sou… https://t.co/TgDT9vkrmA +12/10/2017,Musicians,@EllaHenderson,Me when it snows... ❄️❄️❄️ https://t.co/NUWTZLzJlU +12/08/2017,Musicians,@EllaHenderson,Let’s gooo Fridayyy!!! 💋 https://t.co/3X8oQFdt3v +12/07/2017,Musicians,@EllaHenderson,Huge congrats to @JorjaSmith for winning the 2018 @BRITs #CriticsChoiceAward 🙌🏼❤️ ... yassss gurll!! X. E https://t.co/0IAqlgOosq +12/01/2017,Musicians,@EllaHenderson,First day off since tour... & watching @thismorning with @Rylan just makes me so happy ☺️. X x love waking up to you!! X haha. E x +12/01/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Last night of the tour tonight in Bournemouth! Big shout out to everybody who came!! and my amazing band and crew!! Spec… +11/29/2017,Musicians,@EllaHenderson,#EllaAlbum2 https://t.co/hOPSC0dVpZ +11/29/2017,Musicians,@EllaHenderson,GLASGOW ... you were unreal last night!! 🙌🏼💙 thank you Scotland! Xx. E https://t.co/AEoYeZruRw +11/27/2017,Musicians,@EllaHenderson,RT @candycain_: I really feel like 2018 is a good year for some new @EllaHenderson music +11/27/2017,Musicians,@EllaHenderson,Aww glad you enjoyed it!! ❤️🙏🏼 x. E. X x https://t.co/LY4enk3S6v +11/27/2017,Musicians,@EllaHenderson,RT @officialkione: @JamesArthur23 & @EllaHenderson you both were amazing tonight in Nottingham. Defiantly could not stop dancing. 😆 +11/27/2017,Musicians,@EllaHenderson,RT @hollyjames4: Amazing performances tonight by @JamesArthur23 and @EllaHenderson !! 🎶🎶 +11/26/2017,Musicians,@EllaHenderson,RT @gemma_geer: So amazing to see @EllaHenderson and @JamesArthur23 singing together. Beautiful! Thanks for an incredible show x +11/26/2017,Musicians,@EllaHenderson,❤️❤️❤️ https://t.co/IM4jycHXyw +11/26/2017,Musicians,@EllaHenderson,@meggyban 😘 xx E +11/25/2017,Musicians,@EllaHenderson,RT @ellastearn: What a brilliant way to kick off the night! @EllaHenderson was amazing and her new album is beaaaautiful! 🙌🏻❤️ #BackFromThe… +11/25/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Thanks E!! Xx https://t.co/v3pFKockvS +11/25/2017,Musicians,@EllaHenderson,"RT @sonyatvpubuk: #FollowFriday shout-out to just a few of the amazing live shows out & about this weekend +@damianlazarus @hello_operator @…" +11/25/2017,Musicians,@EllaHenderson,@DeanoG1234 😘🙌🏼 x E +11/25/2017,Musicians,@EllaHenderson,RT @DeanoG1234: My guilty pleasure @EllaHenderson rocked Dublin 🙌🏽👌🏼😍 +11/25/2017,Musicians,@EllaHenderson,RT @sonoffisher: @LauraFerns @GentingArena @EllaHenderson @JamesArthur23 Ella is making a comeback after two years away from the music scen… +11/25/2017,Musicians,@EllaHenderson,So glad you enjoyed tonight 😘 x. E https://t.co/idZQNfNQ9O +11/25/2017,Musicians,@EllaHenderson,Last night 🥂❤️ @NicoleScherzy @JamesArthur23 #BackFromTheEdgeTour x. E https://t.co/DXvr4YKa3M +11/24/2017,Musicians,@EllaHenderson,A little bit excited for tonight WEMBLEY!!! @JamesArthur23 #BackFromTheEdgeArenaTour x. E https://t.co/bwmSNLJKEY +11/24/2017,Musicians,@EllaHenderson,Late night tour bus drives just got a lot better ... @JamesArthur23 I can’t cope with you!! 😍😍 x. E… https://t.co/Mh74kH4B1y +11/24/2017,Musicians,@EllaHenderson,❤️ @JamesArthur23 https://t.co/oI8LCp0mMK +11/23/2017,Musicians,@EllaHenderson,"Dressing room vibes, Cardiff I’m a bit excited for tonight!! X @OfficialSteps @Ianhwatkins x. E https://t.co/oafdYsVIyy" +11/22/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Dublin you were sensational last night 🤘🏻 +11/22/2017,Musicians,@EllaHenderson,Last night in Dublin @JamesArthur23 x 🍀❤️ x E https://t.co/MzVOYDJM0m +11/22/2017,Musicians,@EllaHenderson,RT @Michaela_Langan: What a night that was at the 3Arena.. @JamesArthur23 & @EllaHenderson were so good last night 👏👏 +11/21/2017,Musicians,@EllaHenderson,DUBLIN🇮🇪 https://t.co/4D9VIdLP8P +11/21/2017,Musicians,@EllaHenderson,"BELFAST ... I ❤️U + +E x https://t.co/zYMJmWOXdo" +11/19/2017,Musicians,@EllaHenderson,NEWCASTLE ... you blew my mind last night! Thank you!! X. E #BackFromTheEdgeArenaTour https://t.co/AL7jdgmbJG +11/18/2017,Musicians,@EllaHenderson,NEWCASTLE! Who’s ready for tonight?! X I can’t wait! I’ll be on stage at 7:30pm... see you soon 😘 x. E x… https://t.co/uqFbFGGZC2 +11/17/2017,Musicians,@EllaHenderson,SO proud of this amazing woman & thank you for having be a part of writing on this record!! 🙌🏼❤️🎼 If you haven’t al… https://t.co/aNHNrFYFZs +11/17/2017,Musicians,@EllaHenderson,RT @samsmithworld: @EllaHenderson ❤️❤️❤️❤️❤️ +11/17/2017,Musicians,@EllaHenderson,LIVERPOOL who’s ready for tonight?! #BackFromTheEdgeTour x. E https://t.co/HzWNIP1v1a +11/17/2017,Musicians,@EllaHenderson,LEEDS #BackFromTheEdgeTour https://t.co/o3NPpNdOQf +11/17/2017,Musicians,@EllaHenderson,I can’t wait either! X x E https://t.co/fTyDfaBrVF +11/17/2017,Musicians,@EllaHenderson,@Jxrdd Ahhh 🙈🙌🏼🙌🏼😘 +11/17/2017,Musicians,@EllaHenderson,RT @Shaye_Rose: What a show!!!! @JamesArthur23 & @EllaHenderson were absolutely fantastic tonightt!!! What a great night!!! @gingercon97 ❤ +11/17/2017,Musicians,@EllaHenderson,@Chxrlotteclxy ❤️❤️❤️❤️❤️ +11/17/2017,Musicians,@EllaHenderson,@Chxrlotteclxy @JamesArthur23 🙌🏼 +11/17/2017,Musicians,@EllaHenderson,"RT @Chxrlotteclxy: You know you had a good night when you literally have lost your entire voice ✌ +And I got work tomorrow ✌ thanks for a si…" +11/17/2017,Musicians,@EllaHenderson,@katiebrough1023 Ahhh ... so glad you had an amazing night!! X. X big love ❤️ x. E +11/16/2017,Musicians,@EllaHenderson,It’s TOUR TIME!!!! X See you soon LEEDS! X #BackFromTheEdgeTour E x. https://t.co/4Bdh1W08Pk +11/13/2017,Musicians,@EllaHenderson,I CAN'T WAIT to get out on the road with my band in a few days time & perform some NEW music! #BackFromTheEdgeTour… https://t.co/waF3PzoDzX +11/12/2017,Musicians,@EllaHenderson,#LestWeForget 🙏🏼 +11/11/2017,Musicians,@EllaHenderson,Nope! 🙌🏼😍 https://t.co/v2MStiplTB +11/11/2017,Musicians,@EllaHenderson,About last night... LIVERPOOL you were AMAZING!! Felt amazing being back up on stage!! Thank you @RadioCity967 x E x https://t.co/yPAybF0oD6 +11/10/2017,Musicians,@EllaHenderson,❤️🙌🏼 I’ll be back soon ;) x. E https://t.co/MfrEaH6uea +10/18/2017,Musicians,@EllaHenderson,"Secondly, my words can’t even express how phenomenal @emelisande was tonight!! Thank you for being the soulful trut… https://t.co/7DMHicqFxv" +10/18/2017,Musicians,@EllaHenderson,First of all... tonight @calumscott you blew me away 🎵 those vocals!! Wowwww!! X can’t wait for the album Mr! X. E… https://t.co/YbybKdeQN4 +10/11/2017,Musicians,@EllaHenderson,All I can say is ... I can't bloody wait to get back out on that stage!! @RadioCity967 Xxx #ItsBeenAWhile x x. E https://t.co/YtKzMLJ2ti +10/11/2017,Musicians,@EllaHenderson,She inspires me everyday @theashleygraham 🙌🏼 #OwnWhoYouAre #SizeSexy x E. x https://t.co/jrhaU9772w +10/07/2017,Musicians,@EllaHenderson,Had so much fun yesterday on my first magazine shoot back 👀 https://t.co/X4vjaaMM9G +09/28/2017,Musicians,@EllaHenderson,@BBCR1 @JamesArthur23 The prank Tour War is on... starting from NOWWW! 👻 x E +09/28/2017,Musicians,@EllaHenderson,"RT @BBCR1: ""I can't do this anymore..."" 😂 + +Scott & Chris made @JamesArthur23 prank call tour mate @EllaHenderson using speech jammer and it…" +09/15/2017,Musicians,@EllaHenderson,Congrats @samsmithworld for going No.1 in UK!! ❤️❤️❤️ have an amazing show tonight 😘. E x https://t.co/GaY3lTFOqw +09/11/2017,Musicians,@EllaHenderson,So I watched 'IT' the movie last night in 4DX ... 🤡 I'm now officially terrified of clowns. https://t.co/AgPKRFSwED +09/11/2017,Musicians,@EllaHenderson,My thoughts & prayers are with you & your family gorgeous girl ❤️❤️❤️❤️❤️ xxx lots of love & a big hug ... Ella x https://t.co/XltZAjsDlk +08/18/2017,Musicians,@EllaHenderson,It's definitely that #FridayFeeling ... @annalingis !! X x. E. X https://t.co/QnuYIwr4hb +08/07/2017,Musicians,@EllaHenderson,@Annaloveskat @JessieWare @SpotifyUK @Spotify Love it 😍 +08/06/2017,Musicians,@EllaHenderson,Obsessed 😍🔥 @JessieWare @SpotifyUK @Spotify 🎵🎵 x E https://t.co/4eqHWBFUon +08/03/2017,Musicians,@EllaHenderson,RT @LincsFM: @EllaHenderson We can't wait to hear it! 😁 x +08/02/2017,Musicians,@EllaHenderson,Writing this album has & still is one of the most incredible creative processes I will ever go through in life... I can't wait for u to hear +08/02/2017,Musicians,@EllaHenderson,My two faves @thescript & @JPCooperMusic 🙌🏼🙌🏼 x. X. E https://t.co/C3l6v8TOo2 +07/18/2017,Musicians,@EllaHenderson,This makes me so happy... Because flaws are ok 👌🏼@ASOS x x. E https://t.co/YNrrqHmoQ1 +06/21/2017,Musicians,@EllaHenderson,Lets spread the LOVE today ❤️❤️❤️ .... https://t.co/pMssH17qOg xxx. E Donate here: https://t.co/J1KejsYUiG +06/20/2017,Musicians,@EllaHenderson,"RT @SimonCowell: As well as buying the single, we hope people can support those affected by the Grenfell fire by donating. https://t.co/071…" +06/20/2017,Musicians,@EllaHenderson,"RT @SimonCowell: Tomorrow at 8am across major UK radio stations, you will be able to hear Bridge Over Troubled Water. https://t.co/Bgg8u6oU…" +06/20/2017,Musicians,@EllaHenderson,"RT @officialcharts: .@SimonCowell confirms Grenfell Tower charity single, featuring @Louis_Tomlinson, @EllaHenderson & loads more: https://…" +06/01/2017,Musicians,@EllaHenderson,Amazing https://t.co/vH1rQ0iuFY +05/26/2017,Musicians,@EllaHenderson,@LincsFM Have a fabulous bank holiday!! Xx I'll come in to see you & play you the new music soon ;) x. Till then- e… https://t.co/1oNPD4JvTu +05/26/2017,Musicians,@EllaHenderson,Feels good to be home 🌳🍃🌺🌸Lincolnshire !! X @LincsFM x. E https://t.co/jVrYxQpNgj +05/25/2017,Musicians,@EllaHenderson,I just can't process this right now... my heart is broken. Love to all the families that have lost their loved ones… https://t.co/8lkJf5Qw3a +05/23/2017,Musicians,@EllaHenderson,🙏🏼 https://t.co/7OGmJgfzXN +05/23/2017,Musicians,@EllaHenderson,RT @ollyofficial: No one should go to a concert and never come home 💔 +05/22/2017,Musicians,@EllaHenderson,Sending love & prayers to anyone affected by the Ariana concert tonight 🙏🏼 #ConcertsShouldBeSafe x. E +05/22/2017,Musicians,@EllaHenderson,Excited to be part of the @fusionfest line up this year! Tickets go on sale this Friday!! Link here...… https://t.co/0yobTfMPhJ +05/19/2017,Musicians,@EllaHenderson,Time flies ... 5yrs on .. 🎼❤️ @nilerodgers @sonyatvpubuk x. E https://t.co/ib71kuqYnG +05/15/2017,Musicians,@EllaHenderson,"RT @MileyCyrus: #Malibu is available now!!! @AppleMusic - https://t.co/qAciiFlJcg +@Spotify - https://t.co/6aqG2oEfZs https://t.co/Sfx9GcxCjS" +05/15/2017,Musicians,@EllaHenderson,Fucking love this songgg!! I have to meet you one day @MileyCyrus ... So nice to see & feel honesty❤️ x. E https://t.co/PTzR84Je3a +05/10/2017,Musicians,@EllaHenderson,We're all human. Same wants ... same needs... similar desires... & we all love making love. 🌍❤️ x. E https://t.co/h79zD0ZRkq +05/06/2017,Musicians,@EllaHenderson,HAHAAAAA https://t.co/OoqN7uE0ZO +05/03/2017,Musicians,@EllaHenderson,RT @edsheeran: London night #3 ! https://t.co/BNgEpBHTzQ +05/03/2017,Musicians,@EllaHenderson,INCREDIBLE. As always @edsheeran ➗🎼💪🏼 X. E https://t.co/B9H1wcM4qO +05/02/2017,Musicians,@EllaHenderson,Love is a losing game ❤️ ... when Amy comes on in the cab & you're reminded that females can make such a difference to the world🎼 x E X +04/27/2017,Musicians,@EllaHenderson,Such an amazing week in Copenhagen X 🎼 x. E https://t.co/i0d9g08jO7 +04/20/2017,Musicians,@EllaHenderson,#1in4 of us will experience mental health issues. I’m helping @BBCR1 spread the message. Let's stop the stigma! x X… https://t.co/cG0v9RdQFc +04/17/2017,Musicians,@EllaHenderson,RT @CalvinHarris: This shouldn't work but somehow 🤔 https://t.co/4FOrCzxEiy +04/14/2017,Musicians,@EllaHenderson,RT @JamesArthur23: Great day in the studio today with @TMSLDN and @EllaHenderson thanks for drawing on my piano tonight Ella! #NBAAllStar 😉 +04/06/2017,Musicians,@EllaHenderson,@nadiadkins Love @zaralarsson ❤️ +04/06/2017,Musicians,@EllaHenderson,@NicoLovesElla Honesty +04/06/2017,Musicians,@EllaHenderson,@ShanMcA2 anything with Rachel Mcadams !!! ❤️❤️❤️😢😢😢 x. E +04/06/2017,Musicians,@EllaHenderson,@ohitskatieeee Well this tour... it will be performing the new music for the first time!! X +04/06/2017,Musicians,@EllaHenderson,@restyourlouve This song!!!! X obsessed 😍😍 https://t.co/xBDZGenO4e +04/06/2017,Musicians,@EllaHenderson,@ShanOdonnellX Yayyy!! X can't wait !! X. E +04/06/2017,Musicians,@EllaHenderson,@welshmixer_tich 😘😘 +04/06/2017,Musicians,@EllaHenderson,@SEXGRAHAM @JamesArthur23 Of course!!! It's gonna be such a good tour... you coming? X. E +04/06/2017,Musicians,@EllaHenderson,@enchantedlerrie @edsheeran ⭐️⭐️⭐️ +04/06/2017,Musicians,@EllaHenderson,@meganfowlerr12 Soon!! I can't give any specific date yet ...it's changing constantly ... but I feel like I'm bout… https://t.co/fGx42AqSVV +04/06/2017,Musicians,@EllaHenderson,💧💔👄 https://t.co/PqzAKPolH7 +04/06/2017,Musicians,@EllaHenderson,@NicoLovesElla I do 😘👀👀 !! You will know about it soon ! X. E +04/06/2017,Musicians,@EllaHenderson,@kardashianxslay ❤️❤️❤️ +04/06/2017,Musicians,@EllaHenderson,Ok ... 3 1/2 hours late ... but I'm here!! Hit me with the Qs !! X. E +04/06/2017,Musicians,@EllaHenderson,👧🏼 Have a good day guys 😘 x. E gonna be back for 12pm if anyone wants a chat! X. E https://t.co/22Pit2nO3b +04/05/2017,Musicians,@EllaHenderson,RT @stayceexa: Tickets purchased for @JamesArthur23 arena tour. Twice in one year #happylady cant wait to see @EllaHenderson 😍 +04/05/2017,Musicians,@EllaHenderson,Yes!! 🙌🏼 @Pharrell @ArianaGrande @CalvinHarris https://t.co/rz2V8F7SdB +04/04/2017,Musicians,@EllaHenderson,@culeix Hey Poland !! X 👋🏼 x. E +04/04/2017,Musicians,@EllaHenderson,@sjtn_514 I can't wait for you to hear it!! #EllaAlbum2 x. E +04/04/2017,Musicians,@EllaHenderson,For sure 😂😂😂 https://t.co/gwsXJ1KTP4 +04/04/2017,Musicians,@EllaHenderson,@jodeyagg @Sarahjanevg 🙌🏼🙌🏼🙌🏼. X E +04/04/2017,Musicians,@EllaHenderson,RT @All_stars92: @EllaHenderson Saw @JamesArthur23 perform live in London recently... night have to but more tickets to witness the great @… +04/03/2017,Musicians,@EllaHenderson,@mattycaplin 😘😘 +04/03/2017,Musicians,@EllaHenderson,"RT @EchoArena: NEWS: @JamesArthur23 brings his #BackFromTheEdge tour here on 17 November and will be joined by @EllaHenderson! +https://t.c…" +04/03/2017,Musicians,@EllaHenderson,"RT @hotpress: . @JamesArthur23 set for @3arenadublin with the help of @EllaHenderson +https://t.co/em8OrrLeQW" +04/03/2017,Musicians,@EllaHenderson,"RT @Georgie2306: Can't wait to recreate this one day, hopefully it will be soon 🙏🏻 miss you ❤️💜 @EllaHenderson https://t.co/yd1w4gVvbI" +04/03/2017,Musicians,@EllaHenderson,@ShanOdonnellX See you then 😘😘 (hopefully before 😉 #Album2 ) x X. E +04/03/2017,Musicians,@EllaHenderson,Album 2 .... is close ;) x. E https://t.co/F3KFfMAa8Q +04/03/2017,Musicians,@EllaHenderson,@Lucyell_xo Yesss!! 😘😘🎶🎶🙌🏼 x. E +04/03/2017,Musicians,@EllaHenderson,Yayyy!! We need to catch up way before then babe !! @DaniellePeazer X X. E https://t.co/6SqpgB22pN +04/03/2017,Musicians,@EllaHenderson,RT @unrealitytv: .@JamesArthur23 & @EllaHenderson are going on tour together! https://t.co/OPQ4Ebu9jd https://t.co/48BQ2AnffD +04/03/2017,Musicians,@EllaHenderson,Well this is gonna be fun... @jamesarthurinsta23 UK ARENA TOUR this November!! ... tickets go on sale this Friday!… https://t.co/fUKuJbQC0x +04/03/2017,Musicians,@EllaHenderson,🔥🔥🔥 https://t.co/5n2Bhc3Ja7 +04/01/2017,Musicians,@EllaHenderson,My winner .... @meeshjohn 👸🏽 wow... stunning voice & stunning woman 🙌🏼 @thevoiceuk x. E +03/21/2017,Musicians,@EllaHenderson,It's onnnn @Chris_Stark @scott_mills 💦💦 !! X E https://t.co/UREatF1c9P +03/21/2017,Musicians,@EllaHenderson,Ahhh @scott_mills @BBCR1 I'm so coming back for #InnuendoBingo Round 2 soon with #Album2 🙏🏼 xx E… https://t.co/1u1Cwspahn +03/21/2017,Musicians,@EllaHenderson,I'm ready when @cleanbandit are! 👀😘 x E https://t.co/42EUND0Lpl +03/20/2017,Musicians,@EllaHenderson,@shafiqnajib 😘 can't wait for summer 2017!! X x. E +03/17/2017,Musicians,@EllaHenderson,Happy St Paddys Day @thismorning 😂💚💚🍀 ... you never fail to have me breaking into laughter @Rylan !! #LoveYouAll x.… https://t.co/VBa6r0mqwY +03/07/2017,Musicians,@EllaHenderson,#Life https://t.co/XDmj98hKe0 +02/21/2017,Musicians,@EllaHenderson,RT @NeilOrmandy: @EllaHenderson @SILOMusicTV @StvnSolomon @PrettyGreenltd #studiotime 🇬🇧🤘🏻 https://t.co/E6jENanhOz +02/20/2017,Musicians,@EllaHenderson,That green lighting though... Shrek made me his Fiona!! Haha 😂 fun times with the family 💚@ShreksAdventure xx. E https://t.co/EBGFpLWnd3 +02/20/2017,Musicians,@EllaHenderson,Hope you all had a great Monday👊🏼 x. E https://t.co/52heIgbVA1 +02/19/2017,Musicians,@EllaHenderson,Family time❤️😝🍃 @RainforestCafe x. E https://t.co/NIcKJeJgdj +02/15/2017,Musicians,@EllaHenderson,"Drake, you have to be one of the best artists I've ever seen live!! Incredible show tonight! #StartedFromTheBottom… https://t.co/Ku4WXEQiwZ" +02/14/2017,Musicians,@EllaHenderson,😂 Happy Alentines Ay ❤️ xx E https://t.co/VnOoG0R3qg +02/03/2017,Musicians,@EllaHenderson,❤️🎶🎶🎶 was a pleasure! Let's catch up soon! X E https://t.co/fYI9MN4ZYR +01/27/2017,Musicians,@EllaHenderson,🎶 https://t.co/6dCXe7DHJs +01/11/2017,Musicians,@EllaHenderson,@MusicTvOfficial need to get myself over to Italy 🇮🇹... maybe for #EllaAlbum2 ;) x. E +12/20/2016,Musicians,@EllaHenderson,@isthatperryd aww haha!! Not to worry ! I'll be back! 🙌🏼❤️ x. E +12/15/2016,Musicians,@EllaHenderson,Oh Christmas Tree 🎄 https://t.co/SXVxKHpRCN +12/11/2016,Musicians,@EllaHenderson,❤️🙏🏼 #JustHoldOn Sending love & congrats on the new tune! ✨ @Louis_Tomlinson @steveaoki xxxx. E X. X +12/10/2016,Musicians,@EllaHenderson,@RagNBoneManUK @brits congrats Mr!!! 💛💛🙏🏼🙏🏼 x. E +12/10/2016,Musicians,@EllaHenderson,"RT @brits: It was tough, but the winner of #BRITs 2017 Critics' Choice Award is the amazing @RagNBoneManUK! Congratulations!! 🙌 https://t.c…" +12/10/2016,Musicians,@EllaHenderson,"Just watching back #CapitalsJBB & @BrynChristopher you absolutely smashed it!! Those vocals 🙌🏼🔥🔥 on ""Sweet Lovin"" @SigalaMusic !!! E. x." +12/03/2016,Musicians,@EllaHenderson,❤️❤️❤️ https://t.co/i9Cz7kxS7k +12/03/2016,Musicians,@EllaHenderson,Obsessed with this ... my mood right now @lizzo !! ❤️🌟🌎 https://t.co/K1aKvzeQwR +12/02/2016,Musicians,@EllaHenderson,🙏🏼 https://t.co/kqspfLCz8Y +11/29/2016,Musicians,@EllaHenderson,"🦄when I love, it's like fire in my bones https://t.co/HC845TmNHH" +11/22/2016,Musicians,@EllaHenderson,@BethanSellers need this for my Insta +11/16/2016,Musicians,@EllaHenderson,@ASCAPUK @ASCAP ❤️🙏🏼🙏🏼🙏🏼 xx E +11/15/2016,Musicians,@EllaHenderson,Me & my very first @ASCAPUK award!! Thank you so much 🏆🏅💛🙏🏼 x. X x makes me so excited for Album 2 now!! X. E https://t.co/djqKLyhp0S +11/14/2016,Musicians,@EllaHenderson,🙏🏼👀 https://t.co/sRHYcGnHe7 +11/11/2016,Musicians,@EllaHenderson,"RT @CapitalLONnews: Congrats to @yearsandyears, @MNEK, @JessGlynne & @EllaHenderson who have all won @ASCAPUK awards for songwriting #Capit…" +11/09/2016,Musicians,@EllaHenderson,🐶 https://t.co/veEcb7Ixx4 +11/06/2016,Musicians,@EllaHenderson,Sick performance!! 🙏🏼🙌🏼🙌🏼🙌🏼@mtvema @OneRepublic E. x +11/06/2016,Musicians,@EllaHenderson,RT @mtvema: What a DREAMY @OneRepublic performance ☔️💙☁️ https://t.co/av0Y7ApEdO +10/31/2016,Musicians,@EllaHenderson,Such a fun night @Tulleys_Shock 🎉👻☠️💛x. E https://t.co/ZdM3kCgWI2 +10/25/2016,Musicians,@EllaHenderson,@Rylan happy birthday gorgeous 🎈🎉🎉🎉 xx E +10/23/2016,Musicians,@EllaHenderson,Flawless performance @calumscott on #XtraFactor @TheXFactor tonight! X. E +10/22/2016,Musicians,@EllaHenderson,🔥🔥🔥 https://t.co/OvQdJGNoZh +10/21/2016,Musicians,@EllaHenderson,@thismorning @Rylan 💛 ... see you soon with Album 2 😘 x. E +10/21/2016,Musicians,@EllaHenderson,""" I once gave up bread- don't judge, I was frail"" - @emilywarrennnn 🙌🏼😂🙏🏼💛 x. E" +10/21/2016,Musicians,@EllaHenderson,Getting ready for studio today... & got @thismorning on in the background... @Rylan - YOU MAKE MY DAY😂😂😂 #TGIF x. E +10/19/2016,Musicians,@EllaHenderson,HUGE THROWBACK!! Two years ago today my album Chapter One went Number One in the UK official charts!! E. X https://t.co/9OaPp3Jjfp +10/12/2016,Musicians,@EllaHenderson,Bye Finland 👋🏼🇫🇮✈️...Until next time! X. E https://t.co/0the3EJdAK +10/11/2016,Musicians,@EllaHenderson,"RT @qatarairways: Helsinki, we've arrived! Our first flight to Finland has officially landed, and we can't wait to start exploring. #Helsin…" +10/11/2016,Musicians,@EllaHenderson,Had such a great time tonight performing at the @qatarairways #HelsinkiTogether gala. Can't wait to fly with them s… https://t.co/Br8wh6JwHA +10/08/2016,Musicians,@EllaHenderson,What an incredible evening dining with an elephant ❤️🐘 @RainforestCafe x E https://t.co/pX4lwWTH8l +10/04/2016,Musicians,@EllaHenderson,Too much talent ... can't handle @JoeJaniak x x E https://t.co/ORZI3qTtJf +10/04/2016,Musicians,@EllaHenderson,💯👊🏼 https://t.co/yrrJfOttaU +10/01/2016,Musicians,@EllaHenderson,Current vibes @JaxJones @ministryofsound #SaturdayNight x. E https://t.co/jSH8dJULO7 +10/01/2016,Musicians,@EllaHenderson,Good morning to the weekend ☕️ @NespressoUK x x. E https://t.co/ShXRRnN2fT +09/30/2016,Musicians,@EllaHenderson,@SeanKMooney love my 🍍🍍 it's in my fruit bowl !! X. E +06/30/2018,Musicians,@samsmithworld,Driver roll up the partition please https://t.co/tOFcVhSLl8 +06/29/2018,Musicians,@samsmithworld,So ready for this https://t.co/aHqHFr5h7t +06/29/2018,Musicians,@samsmithworld,MSG 🙌🏻 https://t.co/OCwjH2Adat +06/27/2018,Musicians,@samsmithworld,Boston. Had me in tears last night. Brooklyn tonight. Can’t fucking wait x https://t.co/Sh8XOMUJ5I +06/21/2018,Musicians,@samsmithworld,"Beautiful people. Me and my wonderful friends filmed a special video for Baby You Make Me Crazy in Verona, one of t… https://t.co/6aF2bi6wvx" +06/19/2018,Musicians,@samsmithworld,Montreal. The sun is out and we can’t wait for tonight x pic by @jamesmsbarber https://t.co/TaGMFDGuJe +06/17/2018,Musicians,@samsmithworld,Beautiful few weeks off in California. Ready to kick off our North American tour in @Drake‘s Kingdom - Toronto - TO… https://t.co/t9aBgu2PSL +06/17/2018,Musicians,@samsmithworld,"There's dread in my heart +And fear in my bones +I just don't know what to say https://t.co/p7tIllhWiz" +06/15/2018,Musicians,@samsmithworld,Too Good At Goodbyes. The Thrill Of It All 🖤 https://t.co/ox0CoCL0gm https://t.co/oMZMzS3hyf +06/14/2018,Musicians,@samsmithworld,💚Always and forever in our hearts https://t.co/xwu5U4t0QM +06/13/2018,Musicians,@samsmithworld,"Shanghai x +Bringing The Thrill Of It All World Tour to you this October. Tickets go on sale 10am local 22nd June 🖤 https://t.co/qajdM4PKCF" +06/13/2018,Musicians,@samsmithworld,THRILLS https://t.co/SLUNn8UCo2 +06/12/2018,Musicians,@samsmithworld,https://t.co/80njGEj0U1 +06/11/2018,Musicians,@samsmithworld,"#TheThrillOfItAllWorldTour North America +ONE WEEK!! +I've missed performing for you so much, can't wait to see all y… https://t.co/pwQra7nhss" +06/11/2018,Musicians,@samsmithworld,"Bangkok 🖤 +So excited to see you this October! Tickets go on sale June 30th x https://t.co/s08FFw75oy" +06/10/2018,Musicians,@samsmithworld,"Music was my first love, and it will be my last https://t.co/HQ2gb2lgXO https://t.co/JfzNtE6xSn" +06/07/2018,Musicians,@samsmithworld,"Bejing x +Tickets for my show at Cadillac Center have just gone on sale https://t.co/j7KEXaFGc8 See you in October 🖤 https://t.co/S5IVZSavMQ" +06/05/2018,Musicians,@samsmithworld,https://t.co/2elJz6hvAm +06/03/2018,Musicians,@samsmithworld,Why am I so emotional +06/01/2018,Musicians,@samsmithworld,This made me cry xx thank you so much xx https://t.co/fOdILPzBDj +05/31/2018,Musicians,@samsmithworld,"Beijing! So excited to bring The Thrill Of It All World Tour to you 🖤 Tickets go on sale 10am, June 7th x https://t.co/26DQOQVMJq" +05/29/2018,Musicians,@samsmithworld,‘Me and my confidence. We are now more than friends. We’re growing up slowly’ - @mariamena_no +05/27/2018,Musicians,@samsmithworld,"RT @BBCR1: We laughed, we cried (a lot) - that performance had it all @samsmithworld 👏 + +We're no good at goodbyes - so let's just say see y…" +05/27/2018,Musicians,@samsmithworld,RT @huwstephens: Last week I was in a shop in Swansea and the nice ladies there said ‘Can you deliver a Love Spoon to Sam Smith from our fr… +05/24/2018,Musicians,@samsmithworld,"SATURDAY 🖤 +@BBCR1 https://t.co/4z2xsN1QTM" +05/21/2018,Musicians,@samsmithworld,"Shooting PRAY. +Thank you to everyone watching the official video, over 10 million views 🖤 +https://t.co/HcJ1gbuou9 https://t.co/dFe7BFerfl" +05/21/2018,Musicians,@samsmithworld,"PRAY live on The Thrill Of It All World Tour x +These shows have been INCREDIBLE. North America next 🖤 https://t.co/GQ5LsZUHjz" +05/21/2018,Musicians,@samsmithworld,@adamlambert ❤️ +05/21/2018,Musicians,@samsmithworld,@TheEllenShow LOVE YOU ELLEN X +05/21/2018,Musicians,@samsmithworld,"RT @TheEllenShow: Happy birthday, @samsmithworld! I hope you have a year filled with joy and an album filled with heartbreak." +05/19/2018,Musicians,@samsmithworld,Thank you so much to everyone donating to @WarChildUK for my 26th Birthday. There’s still a few hours of the fundr… https://t.co/3MOJM6QY5X +05/19/2018,Musicians,@samsmithworld,Xx https://t.co/9HBKKRAmtU +05/19/2018,Musicians,@samsmithworld,Thank you x https://t.co/au1Oi9XsZx +05/19/2018,Musicians,@samsmithworld,TWENTY - SIX https://t.co/P1rSnELeL3 +05/19/2018,Musicians,@samsmithworld,It’s my birthday and I’ll cry if I want to https://t.co/BaGIeht1ad +05/17/2018,Musicians,@samsmithworld,Australia & New Zealand... the gorgeous @PalomaFaith will join me for my #TheThrillOfItAllWorldTour shows. Such an… https://t.co/Hlia20Cfow +05/17/2018,Musicians,@samsmithworld,THANK YOU SO MUCH to everyone who's donated to my 26th Birthday fundraiser for @WarChildUK... just two days to go!!… https://t.co/jJceE6FpMm +05/16/2018,Musicians,@samsmithworld,Blue https://t.co/V0VgaXmZ8r +05/15/2018,Musicians,@samsmithworld,🖤 @WarChildUK https://t.co/B1LDXwJzOW +05/14/2018,Musicians,@samsmithworld,"Italy x the last few shows have been out of this universe. Thank you for giving me your all. I’m so thankful, and f… https://t.co/8gntbI1JCh" +05/12/2018,Musicians,@samsmithworld,Thank you all so much for my birthday donations to @WarChildUK so far 🖤 Just one week left for us to hit our target… https://t.co/VXBL5lZbXd +05/11/2018,Musicians,@samsmithworld,"North America... x +So excited to see you again next month for The Thrill Of It All World tour! You can find shows… https://t.co/lmj9c40jNG" +05/11/2018,Musicians,@samsmithworld,RT @HYPEBEASTMusic_: .@samsmithworld and @Logic301's @Timbaland-produced single gets a reflective visual https://t.co/pGJ9Jh5sRr +05/10/2018,Musicians,@samsmithworld,Im not a saint. Im more of a sinner. https://t.co/HcJ1gbLZlH https://t.co/XHzzUlOyCS +05/10/2018,Musicians,@samsmithworld,"RT @RecordingAcad: What better music video backdrop for a spiritual track such as ""Pray"" than an Italian villa? Directed by @JoeVConnor, @S…" +05/10/2018,Musicians,@samsmithworld,BELLA VITA 🇮🇹 https://t.co/62pQGbm5fE +05/10/2018,Musicians,@samsmithworld,"Singapore! My October 2nd show has sold out, thank you all 🖤 We've just added a second date at Singapore Indoor Sta… https://t.co/WwM9smCODC" +05/09/2018,Musicians,@samsmithworld,"PRAY ft @Logic301 x +https://t.co/DNZcBpAAiM" +05/09/2018,Musicians,@samsmithworld,"I'm so happy to share this with you... the official video for PRAY ft @Logic301 https://t.co/HcJ1gbuou9 +The vision… https://t.co/IPAauIx0Aa" +05/09/2018,Musicians,@samsmithworld,"PRAY. +OFFICIAL VIDEO 6PM BST +@Logic301 https://t.co/LQntZfiuui" +05/08/2018,Musicians,@samsmithworld,CANNOT WAIT for you to see this. Pray feat. @Logic301 official video. TOMORROW https://t.co/B32oW7irMu +05/08/2018,Musicians,@samsmithworld,£26K – could support 85 families in Yemen for 4 months OR could pay for 300 children to attend a Child Friendly Space for a month. +05/08/2018,Musicians,@samsmithworld,"They can play, learn and gain the support of specialist child protection staff who can help them deal with all they have faced." +05/08/2018,Musicians,@samsmithworld,£10K - could pay for 150 children to attend a Child Friendly Space for a month. Keeping them off the streets and in… https://t.co/96EbUjGavi +05/08/2018,Musicians,@samsmithworld,5K - could save 5 children's lives by reuniting them with their family or being placed in a safe foster family. +05/08/2018,Musicians,@samsmithworld,"Please share this link, spread the word and donate what you can. +https://t.co/B1LDXwJzOW +Again, a huge thank you fo… https://t.co/DAlKpW0AvZ" +05/08/2018,Musicians,@samsmithworld,Guys... Thank you so so much for your donations. It means the world to see such incredible support for such an impo… https://t.co/JtAwJySvE5 +05/05/2018,Musicians,@samsmithworld,Release the leg type of day https://t.co/ty0n0eKdNj +05/04/2018,Musicians,@samsmithworld,"Pray feat @Logic301 +Thank you for all the love you've shown this track. It was amazing to collaborate with Logic, a… https://t.co/MRpqpYyTbJ" +05/03/2018,Musicians,@samsmithworld,TOMORROW @spotify @Logic301 https://t.co/P0OMvfgoqD +05/03/2018,Musicians,@samsmithworld,"RT @PearlThusi: Sam smith. Any time. ANY.TIME.!!!!!!! +“Nothing left for you.” @samsmithworld ❤️❤️❤️ https://t.co/jKmErX2de9" +05/02/2018,Musicians,@samsmithworld,"PRAY +https://t.co/m8xpKAiaG8 https://t.co/D3oMT0u1UL" +05/02/2018,Musicians,@samsmithworld,"Singapore, I’m so excited to bring The Thrill Of It All World Tour to you. Tickets are on sale now… https://t.co/uOVuQV4kF1" +05/01/2018,Musicians,@samsmithworld,Me and my divas https://t.co/a1eSEkG3LD +05/01/2018,Musicians,@samsmithworld,Paris🌹photo by @jamesmsbarber https://t.co/EiT8LB1uPD +05/01/2018,Musicians,@samsmithworld,Hello beautiful people.. Plans are underway to open an LGBTQ centre in East London - this will be a safe & support… https://t.co/RcxlJc68vr +04/30/2018,Musicians,@samsmithworld,"I'm Still Standing, the @eltonofficial Special, airs on @ITV tonight at 10.45pm. Such an honour to be a part of thi… https://t.co/tHyC43Ynx8" +04/29/2018,Musicians,@samsmithworld,...who have been affected both physically and mentally by war. Let’s keep donating and spreading the word. Love is… https://t.co/vQCIq8wvpZ +04/29/2018,Musicians,@samsmithworld,Happy Sunday everyone. I’m absolutely blown away and so touched by all your donations already! Thank you all for yo… https://t.co/suIsMtghOK +04/24/2018,Musicians,@samsmithworld,Day off in Berlin. Not leaving this spot https://t.co/aHOfoUpzga +04/24/2018,Musicians,@samsmithworld,Was so lovely to sit down with @george_ezra a few weeks ago and do his podcast xxxx it’s out now!! George Ezra and… https://t.co/clvcLIBi62 +04/24/2018,Musicians,@samsmithworld,Oslo. Thank you so much x I love you all. https://t.co/FZ25AGQjg9 +04/22/2018,Musicians,@samsmithworld,I want to live in Copenhagen https://t.co/buNE2AiuKN +04/22/2018,Musicians,@samsmithworld,@charlieputh Can’t wait to hear it sir x +04/21/2018,Musicians,@samsmithworld,@natashabdnfield ❤️😭❤️ +04/20/2018,Musicians,@samsmithworld,I have just found out that ‘Too Good At Goodbyes’ has sold 10 MILLION COPIES worldwide. My heart is crying right no… https://t.co/hph1QJEUIc +04/20/2018,Musicians,@samsmithworld,"RT @camcountry: Ok you asked for it, so I made my version of Palace available everywhere! (Spotify, iTunes, Apple Music, Google Play, Amazo…" +04/20/2018,Musicians,@samsmithworld,Last night in Stockholm x https://t.co/renJtSIKkJ +04/19/2018,Musicians,@samsmithworld,The European tour BEGINS 🚀 xx Stockholm that blew my mind. Thank you for singing your hearts out and coming away wi… https://t.co/ROJjcuWc1v +04/19/2018,Musicians,@samsmithworld,Me and my wonderful singing teacher Yvie Burnett x my life saver on this tour https://t.co/w4ADaxebPM +04/18/2018,Musicians,@samsmithworld,"Maybe I’ll pray... +https://t.co/m8xpKAiaG8 https://t.co/P85KCYivsP" +04/18/2018,Musicians,@samsmithworld,“Gratitude is riches. Complaint is poverty.” - Doris Day +04/18/2018,Musicians,@samsmithworld,"RT @BBCR1: 🔁 @claraamfo wants to rewind a @SamSmithWorld cover from the Live Lounge at midday, but which one to choose?! + +@EdSheeran, @Pin…" +04/18/2018,Musicians,@samsmithworld,"Seoul, so excited to bring The Thrill Of It All World Tour to you this October. Tickets are on sale now… https://t.co/Z7hCaKGWUX" +04/17/2018,Musicians,@samsmithworld,MANILA! Tickets for my show at @MOAArena are on sale now https://t.co/gKgYsJFfRa. So excited to see you x… https://t.co/WcrpZ1fLKs +04/16/2018,Musicians,@samsmithworld,Curls https://t.co/T5Isaban4g +04/15/2018,Musicians,@samsmithworld,❤️🌹@JohnNewmanMusic https://t.co/RzhzYaF3Ye +04/15/2018,Musicians,@samsmithworld,Beyoncé at coachella looks out of this world 🔥🌹❤️ +04/14/2018,Musicians,@samsmithworld,@aaronamoso03 See you there babe x +04/14/2018,Musicians,@samsmithworld,RT @aaronamoso03: gotta spoil your best friend sometimes😁 ready for @samsmithworld ! https://t.co/j3nDwl5YpL +04/12/2018,Musicians,@samsmithworld,I love these humans so fucking much. https://t.co/egWOX2ti35 +04/11/2018,Musicians,@samsmithworld,@AttitudeMag ❤️❤️❤️❤️❤️❤️❤️❤️ +04/11/2018,Musicians,@samsmithworld,@littlebigtown Thank you ❤️❤️ you guys are sensational 🌹🌹🌹🌹🌹🌹🌹🌹 +04/10/2018,Musicians,@samsmithworld,"TONIGHT. Watch the @eltonofficial special 'I'm Still Standing' from 9pm on @CBS, in celebration of the new album… https://t.co/bTDh4gOIia" +04/08/2018,Musicians,@samsmithworld,"RT @HenryFricker: @samsmithworld was just awe inspiring last night. One of the best concerts I’ve witnessed, thank you 🙏🏼 https://t.co/V65w…" +04/08/2018,Musicians,@samsmithworld,RT @jemmataylxr: Just when I thought I couldn’t love @samsmithworld more than I did. Last night was incredible 🖤 https://t.co/3kd8nTFGUe +04/08/2018,Musicians,@samsmithworld,"RT @camcountry: ✨ P A L A C E ✨ +Live from London tonight with @samsmithworld @TheO2 https://t.co/7RXNQ4VUIK" +04/07/2018,Musicians,@samsmithworld,En route x https://t.co/8SCPsi4plk +04/07/2018,Musicians,@samsmithworld,RT @MrBrunoMajor: Tonight will be my final arena show with @samsmithworld ...see you onstage at 7:45pm 🌙✨ 📸 @andytsv https://t.co/bRfWp9mOpL +04/07/2018,Musicians,@samsmithworld,RT @TfLRail: @SamSmithworld plays @TheO2 this evening. You may ask us How Will I Know travel plans to see him? That’s easy. Just click here… +04/07/2018,Musicians,@samsmithworld,@camcountry @TylerSamJ You are out of the world. Honoured to have you on stage & know you and call you a friend x +04/07/2018,Musicians,@samsmithworld,"RT @camcountry: Wrote #Palace with @samsmithworld & @TylerSamJ...and tonight, I got to sing it w/Sam for the 1st time...AT THE O2!!! 😭 + +Sam…" +04/07/2018,Musicians,@samsmithworld,RT @TheO2: That moment when #TheO2 lights up with @samsmithworld ✨😍 https://t.co/NQLoeNJlH6 +04/06/2018,Musicians,@samsmithworld,LONDON. LET’S GO https://t.co/Qo2rVLKRIp +04/06/2018,Musicians,@samsmithworld,#TheThrillOfItAllWorldTour https://t.co/oe6kLPTtBd +04/05/2018,Musicians,@samsmithworld,Gratitude +04/05/2018,Musicians,@samsmithworld,BIRMINGHAM 🌹Thank you so much for two beautiful shows xxxxxx I love you with all my heart. Singing scars in the cit… https://t.co/0nkKM2aKDy +04/05/2018,Musicians,@samsmithworld,@MrBrunoMajor I love you Bruno xx so honoured to tour with you man!! ❤️ +04/04/2018,Musicians,@samsmithworld,@paulaparsons45 @joeykanowee1 Love you xx miss you xx +04/03/2018,Musicians,@samsmithworld,RT @supadupastacey: @samsmithworld HIM was EVERYTHING! Love IS Love 🏳️‍🌈 my Him is a her and I too am PROUD 🏳️‍🌈❤️ +04/03/2018,Musicians,@samsmithworld,@_alicetilly ❤️thank you x +04/03/2018,Musicians,@samsmithworld,RT @caitlin_bean: i aspire to be as dramatic as @samsmithworld was tonight +04/03/2018,Musicians,@samsmithworld,"RT @amazonmusic: .@samsmithworld gives ""Pray"" a remix, with @Logic301 making a guest appearance. #JustAsk, ""Alexa, play the Song of the Day…" +04/03/2018,Musicians,@samsmithworld,MERCH https://t.co/llZMvCK4jc +04/03/2018,Musicians,@samsmithworld,Thank you @claraamfo. Pray feat. Logic is Tune of the Week on @BBCR1 🖤 +04/02/2018,Musicians,@samsmithworld,Take me to your river https://t.co/PMFG2v5vej +04/02/2018,Musicians,@samsmithworld,🖤 https://t.co/A5deGXHvOf +04/02/2018,Musicians,@samsmithworld,Be real. Be you. Start your week of with a smile and a coffee everyone xx +04/01/2018,Musicians,@samsmithworld,Happy Easter from me and my chicken wings https://t.co/Tjun9k0tc9 +04/01/2018,Musicians,@samsmithworld,I love singing so much +04/01/2018,Musicians,@samsmithworld,"I'm young and I'm foolish, +I make bad decisions https://t.co/zvXxSgRt3a" +04/01/2018,Musicians,@samsmithworld,Farewell Ireland xx I’ll miss you +04/01/2018,Musicians,@samsmithworld,Listening to the lord of the rings film music. Howard Shore is a genius x +03/31/2018,Musicians,@samsmithworld,You lift my heart up https://t.co/cjOFpJ8Y4r +03/31/2018,Musicians,@samsmithworld,007 called and said we need EXTRA drama https://t.co/VHl8kahXoV +03/30/2018,Musicians,@samsmithworld,Honoured to have @Logic301 join me on PRAY. I’m such a fan of his work & his inspiring lyrics. Thank you logic for… https://t.co/0fwrC2lgP9 +03/29/2018,Musicians,@samsmithworld,@krischin Successful +03/29/2018,Musicians,@samsmithworld,RT @Logic301: This is the most important feature I've ever done. Writing from the perspective of someone who feels unwanted and un accepted… +03/29/2018,Musicians,@samsmithworld,RT @AnnieMac: ❤️🚀 https://t.co/tnojcIYLH1 +03/29/2018,Musicians,@samsmithworld,". @AnnieMac @BBCR1 today from 7.30pm 🖤🖤 +https://t.co/VH4XU9h0Md https://t.co/kz357aDQTq" +03/29/2018,Musicians,@samsmithworld,RT @AmiyahYoung: best thing to wake up to 😍😍😍 https://t.co/gQJOBnqYQP +03/29/2018,Musicians,@samsmithworld,"RT @getstiggywidit: Already loved Pray @samsmithworld but Logic 👌 brilliant choice, can’t wait to see you next Friday 🙌" +03/29/2018,Musicians,@samsmithworld,"Gorgeous people... my new single Pray featuring @Logic301 is officially out now 🖤🖤🖤 +Listen at:… https://t.co/TRM7He4zLM" +03/29/2018,Musicians,@samsmithworld,@thedannybeard ❤️ +03/29/2018,Musicians,@samsmithworld,I love my job. Thank you for making this tour possible x https://t.co/sv3UDdZKND +03/28/2018,Musicians,@samsmithworld,"PRAY ft @LOGIC301 +TOMORROW https://t.co/D28N6wZDLK" +03/28/2018,Musicians,@samsmithworld,Manchester. I am floating after last nights show! The energy was OUT OF THIS UNIVERSE! ❤️ Thank you xx https://t.co/MTo8V5gmM8 +03/27/2018,Musicians,@samsmithworld,"My new single is PRAY feat. @Logic301 +I am so excited for you to hear this new version of one of my favourite trac… https://t.co/9zad0CPcav" +03/27/2018,Musicians,@samsmithworld,So happy to announce I've partnered with @PLUS1org so £1 from every ticket on #TheThrillOfOtAllWorldTour goes to… https://t.co/2yIWDqR7FK +03/27/2018,Musicians,@samsmithworld,https://t.co/cihdAqKoE7 +03/26/2018,Musicians,@samsmithworld,"So happy and overwhelmed by the The Thrill Of It All shows!! +Thank you for supporting me, it honestly means so much… https://t.co/jSkZYqT8bI" +03/25/2018,Musicians,@samsmithworld,Grammys 2018 @Logic301 🌹 https://t.co/o7H6gKlR0u +03/24/2018,Musicians,@samsmithworld,RT @nwiggins02: Love this @TheSSEHydro all rainbow for the man himself @samsmithworld which by the amazing concert!!! Yeah I will keep twee… +03/24/2018,Musicians,@samsmithworld,@MsnHeyder ❤️❤️ +03/24/2018,Musicians,@samsmithworld,RT @lisamcd2612: Sing song in the clyde tunnel leaving glasgow hydro after seeing the fabulous @samsmithworld 😍💖 @chris101285 https://t.co/… +03/24/2018,Musicians,@samsmithworld,RT @Kaaayss: @samsmithworld didn't think I could love you any more than what I did but you just blew my mind tonight .. incredible 💖 #Glasg… +03/24/2018,Musicians,@samsmithworld,RT @honestlyspn: One of the most emotional parts of tonight. Such an amazing night. Thank you @samsmithworld for coming to Glasgow and allo… +03/24/2018,Musicians,@samsmithworld,"RT @SammyMactaggart: Another concert over with.... girlies had a great night! Have to say, the staff at Hydro are great too!! Great seats!!…" +03/23/2018,Musicians,@samsmithworld,RT @katycatcaitlin: @samsmithworld 💕💕💕💕what a night !!!! https://t.co/MpZOfNWPTd +03/23/2018,Musicians,@samsmithworld,RT @Leeziooooo: @samsmithworld I am proud to call myself a gay man in this generation 🏳️‍🌈 you made us feel at home and welcome and I thank… +03/23/2018,Musicians,@samsmithworld,I can’t believe the SS HYDRO did this!! Has made me so emotional 🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈🏳️‍🌈… https://t.co/nHJz6WOFkQ +03/23/2018,Musicians,@samsmithworld,@wildfreckle It wasn’t me! It was the venue! So amazing 😭 +03/23/2018,Musicians,@samsmithworld,"RT @mandychic1: @samsmithworld iv been to loads of concerts, you have beaten them all by far !! what a night your voice gets you lost in th…" +03/23/2018,Musicians,@samsmithworld,RT @Jackkbbrennan: A full on spiritual experience at @samsmithworld tonight 🙌🏽 +03/23/2018,Musicians,@samsmithworld,RT @emilyosborneexo: @samsmithworld blew everyone away tonight!! So so amazing❤️❤️❤️ +03/23/2018,Musicians,@samsmithworld,"RT @PopCrave: 'The Thrill Of It All' by Sam Smith is now certified 2x PLATINUM in the UK. + +Congratulations, @samsmithworld! https://t.co/5F…" +03/23/2018,Musicians,@samsmithworld,"RT @EllieGelsthorpe: I have absolutely no words for how amazing @samsmithworld was tonight!! I’ve said it once and I’ll say it again, you c…" +03/23/2018,Musicians,@samsmithworld,"RT @AishaAToussaint: @samsmithworld Exceptional! You did it, I forgot about reality for the last two hours!" +03/23/2018,Musicians,@samsmithworld,"Pray holds a very very special place in my heart x +@Timbaland @JimmyNapes @AppleMusic https://t.co/yq9GhiWe4T" +03/23/2018,Musicians,@samsmithworld,For every show on the tour someone from my band or crew is choosing a record of the day. I'm so excited to be intro… https://t.co/HMAijFQspA +03/23/2018,Musicians,@samsmithworld,"RT @bpi_music: Big congrats to @samsmithworld as his latest album 'The Thrill Of It All' is now 2x Platinum in the UK! + +#bpiAwards + +💿🇬🇧 h…" +03/22/2018,Musicians,@samsmithworld,@ollielarrr Oh my gosh!! This is the most thing ever! CONGRATULATIONS. She is so beautiful 😭 I’m happy to have minorly helped Hahahaha +03/22/2018,Musicians,@samsmithworld,RT @ChenoaJanice: @samsmithworld so leave your history behind let's grab a bottle and ....❤️❤️ https://t.co/NIjZVbewpW +03/22/2018,Musicians,@samsmithworld,@george_ezra @JAMESMSBARBER ❤️ +03/22/2018,Musicians,@samsmithworld,"NEWCASTLE, you never ever ever disappoint. Last night was so wonderful x @JAMESMSBARBER #THETHRILLOFITALLUKTOUR https://t.co/GHuXMQVOxQ" +03/21/2018,Musicians,@samsmithworld,RT @jaimeGjrz: I really need to see @samsmithworld https://t.co/GVpItfFuJr +03/21/2018,Musicians,@samsmithworld,RT @NadineTaylor6: I didn’t think anyone would fill the void George left. Thanks @samsmithworld tonight in Newcastle you healed the pain x +03/21/2018,Musicians,@samsmithworld,RT @hollyjadee_x: Gutted I didn’t get to see @samsmithworld tonight in Newcastle 🙁 +03/21/2018,Musicians,@samsmithworld,RT @laugh_100: The biggest compliment I could pay @samsmithworld is that I felt whether he was playing to 5 or 5000 people tonight he would… +03/21/2018,Musicians,@samsmithworld,😂😂😂😂😂😂😂😂😂😂😂😂😂😩😩😩😩😩😩😩😩😩😩😩😩 https://t.co/1C1LqOy4WV +03/21/2018,Musicians,@samsmithworld,Sheffield. You took us to the moon and back. Thank you for taking #THETHRILLOFITALLUKTOUR's virginity 🖤 https://t.co/TXradfKizr +03/21/2018,Musicians,@samsmithworld,RT @JessicaEhallxxx: @samsmithworld I’m bringing my friend to your show tonight as she went last night and her boyfriend didn’t propose whe… +03/21/2018,Musicians,@samsmithworld,RT @liv_smiithx: Best night of my life watching @samsmithworld WOWOWOW i love him so much. So amazing live i'm crying😭😭😍😍 +03/21/2018,Musicians,@samsmithworld,"RT @victoriathorpes: So went to see @samsmithworld drank tea, sang a couple riffs and left the world behind for a couple hours. What a terr…" +03/21/2018,Musicians,@samsmithworld,@paulaparsons45 @lauraalison86 I LOVE YOU PAULA +03/20/2018,Musicians,@samsmithworld,RT @Jh9Hague: Ok but have you ever seen a more iconic t-shirt??? @samsmithworld https://t.co/kkBEaMOt3D +03/20/2018,Musicians,@samsmithworld,RT @AmieBradwell: My mascaras running and my voice has gone but I’ve just had the best night of my life @samsmithworld 😍😭🤪❤️❤️❤️(everyone p… +03/20/2018,Musicians,@samsmithworld,RT @_annaguest8: Swear we don’t deserve @samsmithworld what an amAZing opening night😭❤️ 🌈also: voice is officially gone +03/20/2018,Musicians,@samsmithworld,RT @chloetayls: .@samsmithworld puts on quite the show 👌🏻 https://t.co/znsFOrWjSV +03/20/2018,Musicians,@samsmithworld,RT @leah_till: @samsmithworld was unbelievable tonight... without doubt my favourite gig I've been to! ❤️❤️❤️ +03/20/2018,Musicians,@samsmithworld,RT @Shan12xox: The best night ever @samsmithworld thank you https://t.co/NiQ3zyNtsw +03/20/2018,Musicians,@samsmithworld,"WE HAVE LIFT OFF!! SHEFFIELD 🖤 +@jasonsherwooddesign #THETHRILLOFITALLUKTOUR https://t.co/MHlQAR71qP" +03/20/2018,Musicians,@samsmithworld,U.K TOUR LIFT OFF IS HOURS AWAY. LET’S GET SPIRITUAL ✨🖤 #THETHRILLOFITALLUKTOUR https://t.co/ghJJO7DZVc +03/19/2018,Musicians,@samsmithworld,FIFTH HARMONY!!!!! NO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +03/19/2018,Musicians,@samsmithworld,"TOMORROW ❤️🌈🇬🇧 +https://t.co/YO6uidRvHP #THETHRILLOFITALLWORLDTOUR https://t.co/6U2eYv2eJ7" +03/18/2018,Musicians,@samsmithworld,@MrBrunoMajor @Selimmunir @lithophyte_vw Fuck yeaaaaaaaaaaaaaah +03/18/2018,Musicians,@samsmithworld,@clairebooth3003 ❤️ I’ll see you Tuesday Claire xx your courage and bravery is so inspiring to me xx +03/17/2018,Musicians,@samsmithworld,Me and my dad https://t.co/rSJOWSRczy +03/17/2018,Musicians,@samsmithworld,"Three Days. #THETHRILLOFITALLWORLDTOUR 🖤🖤🖤 +If you'd like the chance to win a pair of tickets to one of my UK shows.… https://t.co/toenOYfZ8X" +03/16/2018,Musicians,@samsmithworld,4 DAYS 🌈🌈🌈🌈 #THETHRILLOFITALLWORLDTOUR https://t.co/RJGeT6IDHr +03/16/2018,Musicians,@samsmithworld,RT @TheGarden: Tickets are ON SALE NOW for @SamSmithWorld's newly-added second show due to phenomenal demand at The Garden on June 30! Don'… +03/16/2018,Musicians,@samsmithworld,"New US shows on sale from 9am local today 🖤 +https://t.co/YO6uidRvHP #THETHRILLOFITALLWORLDTOUR https://t.co/o6uo0v9B2T" +03/15/2018,Musicians,@samsmithworld,5 DAYS #THETHRILLOFITALLWORLDTOUR https://t.co/LD6K4jJwxS +03/14/2018,Musicians,@samsmithworld,"So honoured to receive this from the sensational @vincekamp, I am such a huge fan of his work. His paintings take m… https://t.co/6INtdq8QpE" +03/14/2018,Musicians,@samsmithworld,"‘Science is not only a disciple of reason but, also, one of romance and passion’ - what an incredible human. Every… https://t.co/Lk3ZtWP5RG" +03/14/2018,Musicians,@samsmithworld,Happy Birthday @QuincyDJones ❤️ Thank you for everything x +03/13/2018,Musicians,@samsmithworld,@andrew2themic Thank you for listening. Your voice sent shivers all over my body! Don’t you EVER EVER EVER stop singing! Ever! ❤️ +03/13/2018,Musicians,@samsmithworld,@merrellgomez This made me cry 😭 I can’t wait to see you gorgeous girl ❤️ I’ll be looking out for you xx +05/18/2018,Musicians,@TantrumJas,"Honored to be a part of Spotify’s Asian Pacific Heritage Month. Listen to my brand new playlist here +https://t.co/vI0qBB5TUR" +05/05/2018,Musicians,@TantrumJas,My cover of Avicii’s “Lonely Together” is available everywhere now. Listen at https://t.co/YPFlegQyAG https://t.co/WHilKBxD57 +05/03/2018,Musicians,@TantrumJas,"I'm going to LA next saturday 🌸 so excited for the sun, the beach and also going to write some more music while i'm out there 💛" +04/22/2018,Musicians,@TantrumJas,"@cowboyrobert @mrocznoduszki Haha yes of course, i need to get back into social media, i feel like i have been in m… https://t.co/6GEjm2yXtF" +04/22/2018,Musicians,@TantrumJas,@illegaljbieber I missed you too ❤❤ +04/22/2018,Musicians,@TantrumJas,"@mrocznoduszki Ahh, haha you are so sweet. I am doing really well, life is good and i feel so ready to do music. How are you??" +04/22/2018,Musicians,@TantrumJas,"@AliceSi67284770 I am good, feels amazing to be on youtube again. Hope you are good aswell" +04/22/2018,Musicians,@TantrumJas,@illegaljbieber Why on earth would i not remember you +04/22/2018,Musicians,@TantrumJas,In tribute to @Avicii. My cover of Lonely Together ft @RitaOra https://t.co/8TYGZOTXzB https://t.co/KTd6n7Gv4h +11/15/2017,Musicians,@TantrumJas,"Love you guys a lot, just need to spend some time focusing on home and being happy" +11/15/2017,Musicians,@TantrumJas,"Hey guys, sorry i have been unactive on social media recently. I've just been quite tired, and been trying not to go on my phone too much" +11/14/2017,Musicians,@TantrumJas,@LuckyShot2002 Aw ty hunny! Love u ❤️ +11/14/2017,Musicians,@TantrumJas,@chloelouiseh_x Love u too +11/14/2017,Musicians,@TantrumJas,@jasxjana Very!!! +11/14/2017,Musicians,@TantrumJas,@jasxjana Me too! +11/14/2017,Musicians,@TantrumJas,@jasxelle I’m so grateful ❤️ +11/14/2017,Musicians,@TantrumJas,@Ginny099 Love u BB +11/14/2017,Musicians,@TantrumJas,@levi_less Thank u Hun! +11/14/2017,Musicians,@TantrumJas,@TantrumLance Miss u too lance! +11/14/2017,Musicians,@TantrumJas,@Will_Hall_00 I’m good thank u! How r u will? +11/14/2017,Musicians,@TantrumJas,@TantrumLance Yeah! 💖 +11/14/2017,Musicians,@TantrumJas,@Hvandelft16 Ty Henk! +11/14/2017,Musicians,@TantrumJas,@tantrumemily Love u loads emi +11/14/2017,Musicians,@TantrumJas,@tantrumemily Seems like yesterday! +11/14/2017,Musicians,@TantrumJas,@chloelouiseh_x Aw yay! +11/13/2017,Musicians,@TantrumJas,Just wanted to do a lil shout out to everyone who was a part of this video for my birthday last week. I love you a… https://t.co/QwVareLyMf +11/13/2017,Musicians,@TantrumJas,Christmas came early 😜 Thanks so much for the beautiful gifts Michael!! https://t.co/3TGHySVqsa +11/13/2017,Musicians,@TantrumJas,Look what just arrived! This is the sweetest thing. Thanks so much @fede_bonatesta 😘 https://t.co/Z9C6LNe1YY +11/08/2017,Musicians,@TantrumJas,@RFMFrance Thank you!! ❤️❤️ +11/08/2017,Musicians,@TantrumJas,Wow! Dirk! These are so incredibly beautiful. Thank you so much❤️❤️❤️ https://t.co/bn9YDwR57w +11/08/2017,Musicians,@TantrumJas,@rufis313 Such a lovely message ❤️❤️❤️ +11/08/2017,Musicians,@TantrumJas,@TheOnyx3 Hope you’re okay honey x +11/08/2017,Musicians,@TantrumJas,@PulsefireLoL You’re not late 😂 +11/08/2017,Musicians,@TantrumJas,@Gimpanzee123 😂 +11/08/2017,Musicians,@TantrumJas,Smiling so much bby 😘😘 https://t.co/vj3EVasvsf +11/08/2017,Musicians,@TantrumJas,"So sweeeeeet ❤️ TySM Thys, @hvandelft16 & Ole https://t.co/Av5xee1Chm" +11/08/2017,Musicians,@TantrumJas,"Ahhh you guys, thank you for the birthday wishes. Love you guys 🌸" +11/08/2017,Musicians,@TantrumJas,@Dreamer_Colour THANK YOUUUU ❤❤❤ +11/08/2017,Musicians,@TantrumJas,"@jasxjana You are so kind! Thank you for writing such sweet words to me. Love you so much, and i am so happy to hear that we are family 💛" +11/08/2017,Musicians,@TantrumJas,@charlycarmona00 Thank you so much!!! Hope you are well 🌸💛 +11/08/2017,Musicians,@TantrumJas,@s_xrry Thank you ❤❤❤❤ +11/08/2017,Musicians,@TantrumJas,@lightseekerLegi Thank you so much ❤❤ +11/08/2017,Musicians,@TantrumJas,@ineedarishug__ ty marti! ❤️ +11/08/2017,Musicians,@TantrumJas,@AdelineEtLapsus I want to! +11/08/2017,Musicians,@TantrumJas,@livelifelively3 tysm!! +11/08/2017,Musicians,@TantrumJas,@ananasftluke @FelixJaehn yes poland!! +11/08/2017,Musicians,@TantrumJas,@jasxelle one day!! +11/08/2017,Musicians,@TantrumJas,@eliza2thompson thank u babe! +11/08/2017,Musicians,@TantrumJas,@cindyarcillo TYSM Cindy!! ❤️❤️❤️ +11/08/2017,Musicians,@TantrumJas,@Mhae_Putri thank youuuuu! +11/08/2017,Musicians,@TantrumJas,@hannienggggg this is the nicest thing ever ty 💕 +11/08/2017,Musicians,@TantrumJas,@hannienggggg Thank you so much BB +11/07/2017,Musicians,@TantrumJas,@dolcethompson just chilling with friends and fam! +11/07/2017,Musicians,@TantrumJas,@Dreamer_Colour Thank you so much!! 💕 +11/07/2017,Musicians,@TantrumJas,@dolcethompson I'm at home! :) x +11/07/2017,Musicians,@TantrumJas,@brinirescueme this is cool!! +11/07/2017,Musicians,@TantrumJas,@TantrumLance this is so sweet lance ty for everything 💕 +11/07/2017,Musicians,@TantrumJas,@marylouisse607 thank u so much 💕 +11/07/2017,Musicians,@TantrumJas,@WildGirl48 exciting!! +11/07/2017,Musicians,@TantrumJas,@jasthomps thank u so much hun 💕 +11/07/2017,Musicians,@TantrumJas,"@Dreamer_Colour this is so sweet, ily 💕" +11/07/2017,Musicians,@TantrumJas,@TheMayDJMH @galaxyart babe u r talented!! +11/07/2017,Musicians,@TantrumJas,@juanenr98274817 thank u honey! +11/07/2017,Musicians,@TantrumJas,@_selenasvojce_ ily2! +11/07/2017,Musicians,@TantrumJas,@cowboyrobert sending hugs Rob! +11/07/2017,Musicians,@TantrumJas,@pavlyuchenko37 im gd thank u sweetie how r u? +11/07/2017,Musicians,@TantrumJas,@JUCEGALU ur so sweet! +11/07/2017,Musicians,@TantrumJas,@pavlyuchenko37 that would be fun! +11/07/2017,Musicians,@TantrumJas,@BrunoSigwela happy studying! 😇 +11/06/2017,Musicians,@TantrumJas,@charlycarmona00 omg hope u feel better hun!! so glad my music can be there to soothe u right now. feel better real soon 💕 +11/06/2017,Musicians,@TantrumJas,@xitssxrx @jasxjana 😂 xx +11/06/2017,Musicians,@TantrumJas,@jasminefangroup night night hunny ❤️ +11/06/2017,Musicians,@TantrumJas,@Hvandelft16 good thank u honey how r u ? 💕 +11/06/2017,Musicians,@TantrumJas,@MaciejPasik night lovely! +11/05/2017,Musicians,@TantrumJas,@maravllrt @FelixJaehn aw this is so cute! +11/05/2017,Musicians,@TantrumJas,@TantrumLance ha! knew I'd never live this down 😂 princess from day 1 💁😂 +11/05/2017,Musicians,@TantrumJas,@JelieberPenguin wooo! +11/05/2017,Musicians,@TantrumJas,@Jasmine_Fanpage omgggg three years! +11/05/2017,Musicians,@TantrumJas,@Hvandelft16 gd thanks Henk how was urs? +11/05/2017,Musicians,@TantrumJas,@selenasnasty u ok hunny? we're here for u +11/05/2017,Musicians,@TantrumJas,@adrianpeter254 love that u love this song +11/05/2017,Musicians,@TantrumJas,@cindyarcillo thanks Cindy! hope you're well honey!! +11/05/2017,Musicians,@TantrumJas,@jasxjana it's been good thanks! reconnecting with a lot of my friends which has been so nice +11/05/2017,Musicians,@TantrumJas,@laurxpearce I knoooow it's come round so soon! +11/05/2017,Musicians,@TantrumJas,@jasxjana so cool! +11/05/2017,Musicians,@TantrumJas,@xitssxrx @jasxjana omg this makes me so so happy! +11/05/2017,Musicians,@TantrumJas,@xitssxrx aw thanks for the recommendation lovely! +11/05/2017,Musicians,@TantrumJas,@tantrumemily u can do it boo! +11/05/2017,Musicians,@TantrumJas,@JasThompson_Fan miss u too bb! +11/05/2017,Musicians,@TantrumJas,@radionob ok? +11/05/2017,Musicians,@TantrumJas,@ineedarishug__ haha so exciting! +11/05/2017,Musicians,@TantrumJas,@LNISHO_ @smule I love this! +11/05/2017,Musicians,@TantrumJas,@jasxjana that sounds so fun! +11/04/2017,Musicians,@TantrumJas,"@jasxelle Oh wonder, i'm so excited haha" +11/04/2017,Musicians,@TantrumJas,"@jasminefangroup It was alright, very chilled. What about you?" +11/04/2017,Musicians,@TantrumJas,"@Will_Hall_00 Heyyyy willllll!! Haha i am good thanks, how are you? Hope your weekend is going good" +11/04/2017,Musicians,@TantrumJas,"@WildGirl48 Miss you too, sorry i've been a little inactive on social media recently. Just needed to hibernate for a little bit haha" +11/04/2017,Musicians,@TantrumJas,"@jasxelle Haha, i'm just going to a concert. Not really going to do much this year, just spend time with friends" +11/04/2017,Musicians,@TantrumJas,@TantrumLance Why what is wrong? I'm sorry +11/04/2017,Musicians,@TantrumJas,"@MaciejPasik Haha yess, i finished it on the first day. Did you?" +11/04/2017,Musicians,@TantrumJas,"@Hvandelft16 Hey! I am good thanks, just spent the morning with my friends at home. How are you?" +11/02/2017,Musicians,@TantrumJas,@JUCEGALU twins! +11/02/2017,Musicians,@TantrumJas,😱😱😱TYSM Naba for sending this all the way from Indonesia! This is such a sweet bday present 😘😘 https://t.co/iey7nkTX13 +11/02/2017,Musicians,@TantrumJas,❤️❤️❤️ https://t.co/SN1msK5YlA https://t.co/XbCub4koap +11/02/2017,Musicians,@TantrumJas,Check out the video from my #GiveaHome performance last month in solidarity with refugees: https://t.co/SN1msJOnu2 @amnestyUSA @sofarsounds +11/01/2017,Musicians,@TantrumJas,@charlycarmona00 aw I miss u too honey! I'm always here 💕 +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan mmmmm this looks so good! +11/01/2017,Musicians,@TantrumJas,@tantrumemily @selenasnasty of course! I keep everything you guys send ❤️ +11/01/2017,Musicians,@TantrumJas,@Gimpanzee123 @WarriorWeirdoDK @Jasmine_Fanpage 😂😂😂 +11/01/2017,Musicians,@TantrumJas,@Will_Hall_00 omg! 😂😂😂😂😂 +11/01/2017,Musicians,@TantrumJas,@AshimGiri1 thank u Ashim! happy haloweeeen! +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan i love popcorn everything 😂 +11/01/2017,Musicians,@TantrumJas,@xlilouis my fans are awesome I'm so lucky +11/01/2017,Musicians,@TantrumJas,@Hvandelft16 ty Henk! +11/01/2017,Musicians,@TantrumJas,@TantrumAziza you too Aziza! ❤️❤️ +11/01/2017,Musicians,@TantrumJas,@JUCEGALU omg this looks so cool! +11/01/2017,Musicians,@TantrumJas,@selenasnasty ily2! happy halloween too lovely! +11/01/2017,Musicians,@TantrumJas,@PVerdina big love to indonesia!! +11/01/2017,Musicians,@TantrumJas,@JasThompson_Fan aw that's so sweet! ty! +11/01/2017,Musicians,@TantrumJas,@Gimpanzee123 @Jasmine_Fanpage 😂😂 +10/31/2017,Musicians,@TantrumJas,Happy Halloween everyone! ty Stefan for this edit! 🔥💀👻 https://t.co/qXYfm0QWgd +10/31/2017,Musicians,@TantrumJas,@radionob 😂😂😂 this makes me happy +10/30/2017,Musicians,@TantrumJas,@selenasnasty I ❤️ Love it +10/30/2017,Musicians,@TantrumJas,@BIC1YT I love reading them ❤️ +10/30/2017,Musicians,@TantrumJas,thank you for the lovely letters and gifts. Really grateful for you guys 💛 https://t.co/H5doprZZbr +10/30/2017,Musicians,@TantrumJas,@selenasnasty I am! +10/30/2017,Musicians,@TantrumJas,@Will_Hall_00 Good thanks will how are uuu? +10/30/2017,Musicians,@TantrumJas,@selenasnasty Good thank u bb +10/30/2017,Musicians,@TantrumJas,@jasminefangroup Night lovely ❤️ +10/30/2017,Musicians,@TantrumJas,@Dreamer_Colour Sending hugs!! +10/30/2017,Musicians,@TantrumJas,@xxmelcixx0612 I love America but England will always be home +10/30/2017,Musicians,@TantrumJas,@BrunoSigwela Aw this is a cute idea! +10/30/2017,Musicians,@TantrumJas,@TheMayDJMH @Dreamer_Colour @GalaxyArtt Mmmmm pizza 🍕 +10/30/2017,Musicians,@TantrumJas,@Hvandelft16 I always write every day! 😄 +10/30/2017,Musicians,@TantrumJas,@warrai711 this means so much ty ❤️ +10/29/2017,Musicians,@TantrumJas,@TantrumLance sending hugs bbe! +10/29/2017,Musicians,@TantrumJas,@TheMayDJMH @branxroeux @tumblr @taylorswift13 I'm not at the mo! :) +10/29/2017,Musicians,@TantrumJas,@adimeindc this means so much to hear ❤️ +10/29/2017,Musicians,@TantrumJas,"@jasxelle u're never alone babe, we're always here for u❤️" +10/29/2017,Musicians,@TantrumJas,@Hvandelft16 great thank u Henk! how was urs? +10/29/2017,Musicians,@TantrumJas,@Dreamer_Colour yay I love it when u guys hear my music out and about! 😘 thank u for being awesome!! +10/29/2017,Musicians,@TantrumJas,@SusydjPoesia thank u 😘😘 good night! +10/29/2017,Musicians,@TantrumJas,@MaciejPasik goodnight lovely +10/28/2017,Musicians,@TantrumJas,@selenasnasty kocham cie! +10/28/2017,Musicians,@TantrumJas,@nathgarces ❤️❤️ +10/28/2017,Musicians,@TantrumJas,@TheMayDJMH @Dreamer_Colour @GalaxyArtt hmmm maybe I need to revise for this one before I do... *turns on tetris* +10/28/2017,Musicians,@TantrumJas,@MaciejPasik sending huge hugs 💕💕 +10/28/2017,Musicians,@TantrumJas,@_RitaBright_ aw ur cute too! +10/28/2017,Musicians,@TantrumJas,@Dreamer_Colour ily2!! 💕 +10/28/2017,Musicians,@TantrumJas,"@GlindonDavids1 ty! I rly just wanted to sing about everything thats going on rn. its such a beautiful song, it's g… https://t.co/JXaLG4SGI0" +10/28/2017,Musicians,@TantrumJas,@AshimGiri1 this is so nice to hear ty 💕 +10/28/2017,Musicians,@TantrumJas,@loyalMaddians tysm hunny +10/28/2017,Musicians,@TantrumJas,@jasminefangroup ily2 😘 +10/28/2017,Musicians,@TantrumJas,@ineedarishug__ ty for always looking out for me hun 💕 +10/28/2017,Musicians,@TantrumJas,@Hvandelft16 yeah it's very autumnal in London atm! +10/28/2017,Musicians,@TantrumJas,@jasxelle hey lovely! long time no speaaakk! u ok? I've been gd ty! :D +10/28/2017,Musicians,@TantrumJas,@Dreamer_Colour @TantrumLance oh ... my ... god ... this genuinely made me feel a bit light headed 😅 hope he is ok!! +10/28/2017,Musicians,@TantrumJas,@jasxjana ah this was so fun! look how long my hair was!! +10/28/2017,Musicians,@TantrumJas,@JUCEGALU I knowww! omg this year has gone so fast. What should I do for my birthday?? +10/28/2017,Musicians,@TantrumJas,@jasxjana this is so sweet!! +10/27/2017,Musicians,@TantrumJas,@onewshii ❤️ ty for listening 😘😘 +10/27/2017,Musicians,@TantrumJas,@WarriorWeirdoDK goodnight hun! 💕 +10/27/2017,Musicians,@TantrumJas,@TheMayDJMH @Devon_k01 like an L - shaped tromino? think of tetris! 😂 (see - I knew playing video games would pay off one day) +10/27/2017,Musicians,@TantrumJas,@monsieuraudio @Mhae_Putri @Jasmine_Fanpage yes? 😂 +10/27/2017,Musicians,@TantrumJas,@eddierom205 tysm Eddie ❤️ +10/27/2017,Musicians,@TantrumJas,@jasthomps how r u ? +10/27/2017,Musicians,@TantrumJas,@jasthomps hey Nadya! woooo! I'm gd ty hun 💕 +10/27/2017,Musicians,@TantrumJas,@TantrumnatorUK omg amazzziiing!! +10/27/2017,Musicians,@TantrumJas,@TantrumLance miss u always Lance +10/27/2017,Musicians,@TantrumJas,@patrik_kara 😘😘😘 sounds like a good day! +10/27/2017,Musicians,@TantrumJas,@loyalMaddians sending HUGE love to Indonesia! +10/27/2017,Musicians,@TantrumJas,@tadeo_eleazar hey bb! ilysm tooooooo! +10/27/2017,Musicians,@TantrumJas,@DDaaash aw this is so sweet ha thanks! practice practice practice is all I can say! :D +10/27/2017,Musicians,@TantrumJas,@adam_adrac1 @Mhae_Putri @Jasmine_Fanpage mmm coffee +10/27/2017,Musicians,@TantrumJas,@TheMayDJMH @AshimGiri1 cool - what song r u singing??? +10/27/2017,Musicians,@TantrumJas,@tantrumemily u give me strength hunni +10/27/2017,Musicians,@TantrumJas,@_selenasvojce_ great song! ty for the suggestion +10/27/2017,Musicians,@TantrumJas,@selenasnasty Kocham Cie Milena! +10/27/2017,Musicians,@TantrumJas,@meggymic12 sending huge hugs! 😘😘😘 +10/26/2017,Musicians,@TantrumJas,@TantrumLance Great thanks ❤️ +10/26/2017,Musicians,@TantrumJas,@TheMayDJMH @Mhae_Putri @Jasmine_Fanpage Ty ☺️☺️ +10/26/2017,Musicians,@TantrumJas,@tantrumemily ily❤️ +10/26/2017,Musicians,@TantrumJas,@jasxjana Sending huggggss!!! +10/26/2017,Musicians,@TantrumJas,@navas_gertru @tantrumemily Happy birthday! +10/26/2017,Musicians,@TantrumJas,@Devon_k01 It’s ok honey! School is important! 💖 +10/26/2017,Musicians,@TantrumJas,@Dreamer_Colour So grateful for every view +10/26/2017,Musicians,@TantrumJas,@Dreamer_Colour Thats so sweet ty! +10/26/2017,Musicians,@TantrumJas,@WildGirl48 @SapphireSing @DoveCameron @TTBate Omg how exciting! Do u have an outfit? +10/26/2017,Musicians,@TantrumJas,@MaciejPasik Can’t believe it! +10/25/2017,Musicians,@TantrumJas,Yaaassss ❤️ https://t.co/2ZhSa23OEa +10/25/2017,Musicians,@TantrumJas,Lil fan mail from @tantrumemily ❤️❤️❤️ https://t.co/TnjO4f3WIo +10/24/2017,Musicians,@TantrumJas,@TantrumLance Congratulations!!!! So happy for you +10/24/2017,Musicians,@TantrumJas,@tantrumemily Love and miss you girly +10/24/2017,Musicians,@TantrumJas,"@dolcethompson It was good thank you, been writing new music, how are you?" +10/24/2017,Musicians,@TantrumJas,@Hvandelft16 Yours? +10/24/2017,Musicians,@TantrumJas,@Hvandelft16 Yellow haha +10/23/2017,Musicians,@TantrumJas,Thank you @Spotify for adding the remix of my track “Know Love” from @DVBBS to New Music Friday! Listen now!… https://t.co/rMsRXNLyKa +10/23/2017,Musicians,@TantrumJas,"Have you heard the amazing remix @DVBBS of my song “Know Love”? Listen to it now on @AppleMusic ! +https://t.co/SBr1PMXkjs" +10/23/2017,Musicians,@TantrumJas,@loyalMaddians Goodnight! I am okay thank you! Hope you are well +10/23/2017,Musicians,@TantrumJas,@TantrumLance @SINIZTER15 HAPPY BIRTHDAY!!! Hope you have an amazing day!! +07/01/2018,Musicians,@ParsonJames,P town tomorrowwwww +06/30/2018,Musicians,@ParsonJames,Happy belated to my angel!!! @NicoleScherzy https://t.co/np07l5cGus +06/30/2018,Musicians,@ParsonJames,Happy birthday to my beautiful mamaaaa! Constantly thankful and proud to have an outstanding woman like you in my l… https://t.co/4GIjMjuZsU +06/29/2018,Musicians,@ParsonJames,Baby!!!! https://t.co/eshiRv4t4s +06/29/2018,Musicians,@ParsonJames,@cheapyxo How dare u disrespect 1991 binch!!!! +06/29/2018,Musicians,@ParsonJames,Omg hearing Michael on this drake record just got me deeeeep in my feels 😩 +06/28/2018,Musicians,@ParsonJames,😘😘😘😘😘 Love love loveeee !! Best weekend! https://t.co/SonZa2N2lR +06/27/2018,Musicians,@ParsonJames,This incredibly important and powerful film is finally available everywhere. I had the privilege of seeing this fil… https://t.co/r9tMp5hihc +06/25/2018,Musicians,@ParsonJames,thank u @tommydorfman @glaad @ASOS for having me come perform in a literal boxing ring at @OverthrowNYC for #pride… https://t.co/NMOkuSMGnz +06/25/2018,Musicians,@ParsonJames,"RT @Fool_4_Music: This past week has been 🙌🏻. Got to support @ParsonJames at an amazing @amfAR event, got to see @ToveLo spread her message…" +06/25/2018,Musicians,@ParsonJames,literally have the time of my life performing with this beauty. #nycpride #Pride you were AMAZING!!! Thank you… https://t.co/83fuWO7PJw +06/24/2018,Musicians,@ParsonJames,"RT @diorexha: @ParsonJames @Daya okay oh my fucking shit they are so beautiful, look at these smiles softs. appreciation post" +06/23/2018,Musicians,@ParsonJames,Over 100k streams in one day :) thank you guys! @Spotify @CAZZETTE https://t.co/AP3srSaoFv +06/22/2018,Musicians,@ParsonJames,RT @musiqchild007: @ParsonJames https://t.co/DBcGcgSkVR +06/22/2018,Musicians,@ParsonJames,omg Hotel manager DMed me on IG happens to love my music and just upgraded me to a suite WHAT AN ICON +06/22/2018,Musicians,@ParsonJames,"RT @amfAR: Proud to have @ParsonJames lending his voice (literally!) to the fight for an HIV cure at last night's #amfARgenCURE. + +Are you…" +06/22/2018,Musicians,@ParsonJames,Missing You w/ @CAZZETTE is out now. https://t.co/bR0CYtfWZP https://t.co/2z2qxm0NuJ +06/22/2018,Musicians,@ParsonJames,What a fucking incredible privilege to be able to release music for a living. Sometimes in the midst of all the mad… https://t.co/Uwv5zBX4ec +06/22/2018,Musicians,@ParsonJames,The homieeeeeeee @jakemiller https://t.co/r8HABlsS9s +06/22/2018,Musicians,@ParsonJames,@drunkinjames 😘😘😘 +06/21/2018,Musicians,@ParsonJames,Let’s go @amfAR #amfARgenCURE ! Excited to perform tonight and raise money for a cure!!! 🌈🌈🌈💚🧡❤️💙💜 https://t.co/PnWsIQVEaa +06/21/2018,Musicians,@ParsonJames,I’ll be honest one time I bought IG followers when I was in a bind and just starting to release music do u love me less +06/21/2018,Musicians,@ParsonJames,@_Ollie2505 @fernlovesmcfly I felt this +06/21/2018,Musicians,@ParsonJames,@JHartMusic Noooo +06/21/2018,Musicians,@ParsonJames,@JHartMusic Our songs are gonna scissor sissy!! +06/21/2018,Musicians,@ParsonJames,@lex727 University and e 8th! At 12! +06/21/2018,Musicians,@ParsonJames,I’m way too fucked up ocer #koko dying 😩 +06/21/2018,Musicians,@ParsonJames,Tomorrow! @CAZZETTE x @ParsonJames ‘Missin You’ pre save on @Spotify meow https://t.co/WMryCAHAWd https://t.co/qX2ZkGeGZa +06/21/2018,Musicians,@ParsonJames,RT @prmdmusic: Out tomorrow! | @CAZZETTE feat. @ParsonJames - 'Missing You' | https://t.co/lJCE3XR7QH https://t.co/P9c2tZIjPt +06/21/2018,Musicians,@ParsonJames,Woo Chile the ghetto +06/21/2018,Musicians,@ParsonJames,@stivenhg Hahahaha aw! It’s okay! Literally everyone does that nice to meet u! +06/21/2018,Musicians,@ParsonJames,"RT @stivenhg: So I meet @ParsonJames today and he was super sweet even tho I called him “James Parson” +(Sorry I was really excited) https:…" +06/20/2018,Musicians,@ParsonJames,@noyes I don’t know how it slipped my mind hahahahahahah literally can’t stop laughing now +06/20/2018,Musicians,@ParsonJames,@noyes 😩😩😩 +06/20/2018,Musicians,@ParsonJames,Omg What show was it where the girl said u shouldn’t have called me a fat ass Kelly price 😂😩😭 +06/20/2018,Musicians,@ParsonJames,Flew in just in time to catch up with my baby muva last evening. Things got touchy feely per usual but it was a civ… https://t.co/3DzRn3Pr80 +06/19/2018,Musicians,@ParsonJames,On today’s episode of Parson crying on a plane we present hysterical tears featuring Pixar’s Coco. +06/19/2018,Musicians,@ParsonJames,"So excited to be performing at @amfAR ‘s #amfARgencure Solstice party this Thursday, June 21st. Raising funds and… https://t.co/tGEVEgXF4z" +06/18/2018,Musicians,@ParsonJames,@iamjojo OKAY JOANNA THIS FUCKING OUTFITTTTTTT BINCHHHH!!!!! +06/15/2018,Musicians,@ParsonJames,"Thanks so much for including me @BillboardPride ! Talking the moments that I associate with coming out, why you all… https://t.co/5P3diFZF23" +06/14/2018,Musicians,@ParsonJames,"RT @iamsheadiamond: Chattin and being cute with @billboard @BillboardPride ! + +https://t.co/yIt17BN4Fk" +06/14/2018,Musicians,@ParsonJames,"RT @amfAR: One week until our #amfARgenCURE Solstice party with a performance by @ParsonJames and music by @samantharonson. + +For a limited…" +06/14/2018,Musicians,@ParsonJames,"RT @LAFW: .@tovelo in designer @marymejimmypaul, as seen on the @lafw runway 🌈 this past @lapride ⚡️⚡️⚡️ft. @ParsonJames ✨ https://t.co/1sF…" +06/14/2018,Musicians,@ParsonJames,#BelieveinMEAF #MeafMafia https://t.co/hrnBlB9kzf +06/13/2018,Musicians,@ParsonJames,Aw omg thank you @TheSurfLodge https://t.co/OQuSQxjoxB +06/12/2018,Musicians,@ParsonJames,"RT @HOLLYWIRE: Watch @ParsonJames play Happy, Joyous and Free at #Pride as well as sharing the meaning behind #OnlyYou 🎼🎙️https://t.co/Pre…" +06/12/2018,Musicians,@ParsonJames,@Sairahnina Omg +06/12/2018,Musicians,@ParsonJames,@drunkinjames That is a loaded wu +06/12/2018,Musicians,@ParsonJames,y r we ok w our own farts but not farts of others +06/11/2018,Musicians,@ParsonJames,Full video of me & and @ToveLo performance from @lapride is up now! https://t.co/u9aI31GEgL +06/11/2018,Musicians,@ParsonJames,@ToveLo_Daily @almacyber @iconapop 💙💛💙 +06/11/2018,Musicians,@ParsonJames,"RT @ToveLo_Daily: You can now find some of LA Pride's performance highlights on my YT channel. 👀🎉🦄 + +https://t.co/4q9677nRH9 https://t.co/pI…" +06/11/2018,Musicians,@ParsonJames,Best fucking time ever w/ my angel unicorn @ToveLo last night!! Thank you for bringing me out for @lapride !!!! I w… https://t.co/mORXf7NVRD +06/09/2018,Musicians,@ParsonJames,"RT @amfAR: Tickets are now on sale for the #amfARgenCURE Solstice Party! Join us as we kick off summer with a performance by @ParsonJames,…" +06/08/2018,Musicians,@ParsonJames,@Ragenlov It’s not out! Chain Gang :) +06/07/2018,Musicians,@ParsonJames,THANK U FOR THE B DAY LOVE U ICONIC BUNCH OF BEAUTIES. IN NASHVILLE SMILING ABOUT TO PLAY A SHOW FOR @GLAAD W MY FA… https://t.co/wrmg0jR1JN +06/07/2018,Musicians,@ParsonJames,"Proud to be performing at @amfAR’s #amfARgenCURE Solstice Party on Thursday, June 21 in NYC. Come out and support a… https://t.co/xroTGW1DuR" +06/07/2018,Musicians,@ParsonJames,@PCA_Angel @glaad @calumscott Hahaha I’m DOWN! +06/07/2018,Musicians,@ParsonJames,@omfgbruce Aw!!!! Thank you! Just as I land in Nashville!! +06/07/2018,Musicians,@ParsonJames,Haha yasss! Thank you! https://t.co/dUFI49LSdQ +06/07/2018,Musicians,@ParsonJames,On the way to Nashville for @glaad #concertforloveandacceptance ! Give me hot chicken and kisses for my burfday Nashville! +06/07/2018,Musicians,@ParsonJames,RT @melalelou: Happy Birthday to the man who always steals the show with his great dance moves on stage!🕺🏼🎉I wish you continued success wit… +06/07/2018,Musicians,@ParsonJames,"RT @JDudleyRowe: Happy 2️⃣4️⃣ birthday to this incredible & inspiring legend king @ParsonJames! +I love you so much babycakes. +I hope you ha…" +06/07/2018,Musicians,@ParsonJames,RT @b_money_z: .@ParsonJames gracing spotify roof w motivational words and music that’s real 🌱💞 https://t.co/3Ch4qaodrQ +06/07/2018,Musicians,@ParsonJames,💛💛💛💛 love u thank u! https://t.co/pHlAXtZkqU +06/07/2018,Musicians,@ParsonJames,My birthday is tomorrow and I just played a show for @Spotify !!!! https://t.co/5sAbDsi2nY +06/06/2018,Musicians,@ParsonJames,"RT @GMA: JUST IN: Pres. Trump commutes the sentence of Alice Johnson, a 63-year-old great-grandmother, who has served almost 22 years in fe…" +06/06/2018,Musicians,@ParsonJames,literal love this playlist name & appreciate uuuu! 💛💛💛 https://t.co/m6TEyRqzQn +06/05/2018,Musicians,@ParsonJames,"RT @NewNowNext: Rest In Power, Antash'a English! https://t.co/VBeTDwiasD @HRC @TransEquality @equalityfl" +06/05/2018,Musicians,@ParsonJames,SO excited to be performing at the @GLAAD + @TyHerndoncom Concert for Love & Acceptance during #CMAFest on June 7!… https://t.co/EVVmp3VGZ3 +06/05/2018,Musicians,@ParsonJames,@lovelivelife811 @MordecaiNuccio All you have to do is refer to my past tweets before coming at me with a tweet lik… https://t.co/o79MXSBgjT +06/05/2018,Musicians,@ParsonJames,Didn’t realize we were almost b day twins !! Happy birthday Gemini bb! 💛💙 @troyesivan +06/04/2018,Musicians,@ParsonJames,RT @Jon_ALi: My June #QueerNecessities playlist is here!! ✨🏳️‍🌈✨ @MNEK @troyesivan @LelandOfficial @VINCINT_ @yearsandyears @kwaye @QueensC… +06/04/2018,Musicians,@ParsonJames,@OneCanDoLots Aw man that makes my heart swell. So glad you received the music in that way. Appreciate u +06/04/2018,Musicians,@ParsonJames,Yass thank you love! 💛💙💛🌈 https://t.co/vBXy1tSBo7 +06/04/2018,Musicians,@ParsonJames,@thefader Hung out w the cover girl yesterday. Insightful/Playful/Wild #bitch 😂 cc @ToveLo @elliphantmusic https://t.co/ZvxP5uL4cX +06/04/2018,Musicians,@ParsonJames,RT @thefader: .@ToveLo shares artwork for upcoming song “bitches.” https://t.co/C8GGusweZc https://t.co/EvXLAECrTK +06/03/2018,Musicians,@ParsonJames,RT @ArianaGrande: i literally woke up this morning with a sigh of relief and said to myself......... I’m really that bitch huh +06/02/2018,Musicians,@ParsonJames,Throwback to performing at @1027KIISFM #WangoTango ! Going to see some friends kill it today! Who’s going?? 💛💛💛💛 https://t.co/HlDysd2rmQ +06/02/2018,Musicians,@ParsonJames,HAPPY PRIDE IMMA THIQQ THOT https://t.co/bDX53L9zQT +06/02/2018,Musicians,@ParsonJames,@chrissyteigen Chrissy keeps this country together +06/02/2018,Musicians,@ParsonJames,😘😘😘😘 duh bitch. Congrats on release day!!!! https://t.co/YL5GBsnWpS +06/02/2018,Musicians,@ParsonJames,💛💛💛 https://t.co/DhEOQrI8yl +06/02/2018,Musicians,@ParsonJames,RT @noyes: reasons why I love June : ITS PRIDE MONTH!!!!!! 💖❤️💛💚💙💜Happy pride my loves! Shine bright like the diamonds that you are and be… +06/01/2018,Musicians,@ParsonJames,"My 🌈look alive, it’s pride🌈 playlist is up on @Spotify now! Head over to check out some of my fave LGBTQ+ and LGBTQ… https://t.co/ovLRbme9FE" +06/01/2018,Musicians,@ParsonJames,RT @VINCINT_: 🗣YOU’RE THE BEST ❤️💋 https://t.co/jJZHDHRi3l +05/31/2018,Musicians,@ParsonJames,@MordecaiNuccio Representation. I have had to fight double duty to also not have my blackness discredited just bc m… https://t.co/rYn3KU49Wj +05/31/2018,Musicians,@ParsonJames,@MordecaiNuccio I am a black man that like Adam and anyone else was invited with no + 1 and no view of the guest li… https://t.co/DPQkaCdMLh +05/30/2018,Musicians,@ParsonJames,Okay just did Pilates for the first time and she really is that bitch huh. I’m wobblin +05/30/2018,Musicians,@ParsonJames,Thanks @MartinGarrix for chucking broken love onto #themartingarrix show! 💛💛💛🙌🏽 https://t.co/zfNdR2Pjfw +05/30/2018,Musicians,@ParsonJames,SO excited to be performing at the @GLAAD + @TyHerndoncom Concert for Love & Acceptance during #CMAFest on June 7!… https://t.co/v3MqOtX7L4 +05/30/2018,Musicians,@ParsonJames,I AM SO EXCITED !!!! https://t.co/0hBUrHtCI1 +05/30/2018,Musicians,@ParsonJames,@TroyBlackwelljr 🙋🏽‍♂️ +05/29/2018,Musicians,@ParsonJames,@cheapyxo U know miss Barr been forever doing the most 😂 she beeeen blatantly racist but the she got got this mornting! +05/29/2018,Musicians,@ParsonJames,"@cheapyxo She out here calling people Apes, Wylin" +05/29/2018,Musicians,@ParsonJames,@kaggyj1 Thankfully flying domestic isn’t so bad without ID just had to do some verification things! Quite painless! +05/29/2018,Musicians,@ParsonJames,"RT @them: Let’s create a community where everyone is celebrated for who they love, who they are, and how they look. https://t.co/kRidkjTGTH" +05/29/2018,Musicians,@ParsonJames,we need that #BrokenLove New single out now via @SpinninRecords @thehim https://t.co/mf2S2WC3lw https://t.co/R3W8CYwVDW +05/29/2018,Musicians,@ParsonJames,DEVELOPMENT: I still got thru TSA https://t.co/cGep8tMq38 +05/29/2018,Musicians,@ParsonJames,Got pick pocketed at penn station yay no wallet or ID for my flight 😩 +05/28/2018,Musicians,@ParsonJames,Omg What !!! Thank you!!!! 😩😍 this is amazing ! https://t.co/tjl2htf5SQ +05/27/2018,Musicians,@ParsonJames,@Vintagecaption Omg Ily! +05/27/2018,Musicians,@ParsonJames,@Fool_4_Music @thehim ILY! +05/27/2018,Musicians,@ParsonJames,@PhoebeRyan @gladiusjames @JamesNewmanUk @AdventureJames @JamesBayMusic HAHAHAAAA ILYSM +05/26/2018,Musicians,@ParsonJames,MY SHOE GAME LOOKIN LIKE MY BOO GAMEEEE AYYYYY!!!! https://t.co/E5R6Vxxy4R +05/26/2018,Musicians,@ParsonJames,wow suddenly im a @LilMama Stan. https://t.co/ZAm5I1gkAX +05/26/2018,Musicians,@ParsonJames,@PothMaxwell @KeiynanLonsdale @JaredGelman @VINCINT_ @SUP3RFRUIT @jessesaintjohn @HeyItsMarioJose @LelandOfficial… https://t.co/RPRilHnrtl +05/26/2018,Musicians,@ParsonJames,!!!!!!!!!!!!!! https://t.co/AWwDeQJJuf +05/25/2018,Musicians,@ParsonJames,See u tomorrow @TheSurfLodge 💛💛 https://t.co/8CPUgVTxTU +05/25/2018,Musicians,@ParsonJames,omg crying bc this low key sounds like an eric vetro “ssss” exercise interrupted by cutting tf up 😩😩 https://t.co/37Bhg0BKjy +05/25/2018,Musicians,@ParsonJames,#BrokenLove with @thehim is out now via… https://t.co/iXNbzzYVZz +05/25/2018,Musicians,@ParsonJames,Thank you @spotify ! #BrokenLove is on #NewMusicFriday today! Go peep. Cc @thehim @SpinninRecords… https://t.co/4iaQ0TnytJ +05/25/2018,Musicians,@ParsonJames,RT @SpinninRecords: This new tune by @thehim ft. @ParsonJames is a definite must-have! https://t.co/G6HGvcuS4s +05/25/2018,Musicians,@ParsonJames,👏🏽👏🏽👏🏽🙌🏽🙌🏽🙌🏽 congrats @ShawnMendes !!!!! https://t.co/xgsj9Dz2qB +05/25/2018,Musicians,@ParsonJames,"RT @billboarddance: Thousands of ""Kids In Love"": How @KygoMusic became an arena act https://t.co/SZGV30XBo9 https://t.co/l8SmDMdsET" +05/25/2018,Musicians,@ParsonJames,"@alexx_reidd Haha I totally respect and value opinions and I’ll never be EVERYONES cup of tea, im realistic there!… https://t.co/KCrx9VrVFk" +05/25/2018,Musicians,@ParsonJames,@lex727 @thehim Haha I just landed !! Have some shows this weekend in hamptons :) and yassss +05/25/2018,Musicians,@ParsonJames,RT @JDudleyRowe: @ParsonJames @thehim https://t.co/JCfRXbqRlm +05/25/2018,Musicians,@ParsonJames,@alexx_reidd No worries man. All good 🙏🏽 +05/25/2018,Musicians,@ParsonJames,💔💔💔midnight💔💔💔 #BrokenLove @thehim https://t.co/OhmtOW1R8B +05/24/2018,Musicians,@ParsonJames,@cheapyxo IM LINING UP AND BRINGING MY OWN TUPPERWARE TO TAKE LEFTOVERS. +05/24/2018,Musicians,@ParsonJames,@JHartMusic mhm and i was smiling +05/24/2018,Musicians,@ParsonJames,"@alexx_reidd Lol mate go to bed. Must be quite bothered to provide such a dull opinion. Spell check, it’s “eccentri… https://t.co/ZHVdWLCn74" +05/24/2018,Musicians,@ParsonJames,"@Kris4Equity Hi! I am a black gay male (which I have to keep repeating for some reason), and my sentiments are quit… https://t.co/LYlompNoMl" +05/24/2018,Musicians,@ParsonJames,Flying economy but pooping in the first class bathroom rn lol +05/24/2018,Musicians,@ParsonJames,@UrGewdJoodie 😩😩😘😘😘😘💛💛💛 +05/24/2018,Musicians,@ParsonJames,@Into & ALL of our community and those extensions of it deserve and desperately NEED to be celebrated. we have SO f… https://t.co/Hs703dC1MX +05/24/2018,Musicians,@ParsonJames,@Into i did gain a lot of knowledge from this sit down and it was glaringly obvious from the jump what needed to be… https://t.co/oP7PuuKokm +05/24/2018,Musicians,@ParsonJames,"@Into just read ur article and agree wholeheartedly on many levels. I was invited, as a guest, no knowledge of the… https://t.co/pv3peQKQ8c" +05/23/2018,Musicians,@ParsonJames,@TheSurfLodge is about to be lit this #MemorialDayWeekend !!! I’m playing Saturday and the vocal BIBLE @JessieJ is… https://t.co/XJNCFISQH0 +05/23/2018,Musicians,@ParsonJames,RT @SpinninRecords: This absolute gem by @thehim ft. @ParsonJames is coming this Friday! https://t.co/RdHPNLcKNX +05/23/2018,Musicians,@ParsonJames,So much more to be done though. I am extremely thankful for this conversation starter and the opportunity to gather… https://t.co/44CyUS5uGB +05/23/2018,Musicians,@ParsonJames,I was there! & while it was definitely surprising to be the only POC at this initial event i am genuinely excited a… https://t.co/oxI2wKIaWP +05/22/2018,Musicians,@ParsonJames,@MJE4Peace @adamlambert Omg 😂 +05/22/2018,Musicians,@ParsonJames,@TheGlamourGuy @shirleyhalperin @Variety @troyesivan @adamlambert @justintranter16 @IlseyJ @ferras @TOMofLA… https://t.co/Ns8sjwCeVo +05/22/2018,Musicians,@ParsonJames,"RT @TheGlamourGuy: Grateful to @shirleyhalperin for letting me write about homophobia in the biz for @Variety! Thank you to @troyesivan, @a…" +05/22/2018,Musicians,@ParsonJames,Had a little Sunday brunch with some remarkable LGBTQ+ artists and writer and spoke to @Variety_Music @Variety abo… https://t.co/dmU6IKQZ3g +05/22/2018,Musicians,@ParsonJames,@zainab13rw Step away from my mans!!!! +05/22/2018,Musicians,@ParsonJames,@adamlambert 💛💛 so much love for u! +05/22/2018,Musicians,@ParsonJames,RT @adamlambert: What a wondering Sunday brunch ! And thanks for the kind words @ParsonJames !! https://t.co/YOOTe2hT5t +05/22/2018,Musicians,@ParsonJames,RT @jonboy79: “Forcing people into the closet - or making them feel that they can’t be themselves without facing some sort of criticism - c… +05/22/2018,Musicians,@ParsonJames,ILYSM 💛 https://t.co/kDfZ37FB02 +05/22/2018,Musicians,@ParsonJames,@LykkeLi IS PLAYING IN LA TOMORROW AND I AM JUST FINDING OUT!!! WHERE R THE TIX!!! OMG !!!! +05/22/2018,Musicians,@ParsonJames,@thatgirlbishop @jess_earnshaw @LarryFlick @Refinery29 @LiveKellyRyan @KellyRipa @SIRIUSXM Larry!!!!!! +05/21/2018,Musicians,@ParsonJames,RT @thehim: @ParsonJames @SpinninRecords F YEA!!!!! +05/21/2018,Musicians,@ParsonJames,Friday. 5/25. @thehim @SpinninRecords #brokenlove https://t.co/mN4JDgefyo +05/21/2018,Musicians,@ParsonJames,It’s Gemini seasonnnnnnnnnn! My crazy ass and all my other crazy ass Gemini’s are rejoicing! +05/21/2018,Musicians,@ParsonJames,omg @iamcardib shot her video in the same church as my first video it’s litttt. I miss this song. #Temple https://t.co/ppt6nyVyOF +05/19/2018,Musicians,@ParsonJames,Not again. #SanteFe 😢 +05/18/2018,Musicians,@ParsonJames,"RT @ChrChristensen: 22 years ago, a gunman entered Dunblane Primary School in Scotland, killing 16 kids and a teacher. The UK govt responde…" +05/18/2018,Musicians,@ParsonJames,"@TheSurfLodge is going to be lit this summer. Memorial Day weekend I’ll be singing you songs. Also, @JessieJ !!!! I… https://t.co/cOZqMzPaV1" +05/18/2018,Musicians,@ParsonJames,@HENRiAYO Thank you ! 💛💛💛 +05/18/2018,Musicians,@ParsonJames,My brother. We’ve seen the highest of highs and lowest of lows together and I truly love the shit out of you. You a… https://t.co/JtNmNwbsmc +05/17/2018,Musicians,@ParsonJames,RT @theacesofficial: SHAZAM OUR @LateNightSeth PERFORMANCE TONITE AND MAYBE WIN A DOPE AF VINYL BUNDLE @Shazam https://t.co/m4gOkk7Uks +05/17/2018,Musicians,@ParsonJames,RT @theacesofficial: LATE NIGHT ✔️ TUNE IN TONIGHT BABIES @LateNightSeth https://t.co/FkG4zICfio +05/16/2018,Musicians,@ParsonJames,@JSepulvedaNY It’s just time bro. It really hurt me when u said I looked like a fat ass Kelly price. +05/16/2018,Musicians,@ParsonJames,The last few months have brought forth some pivotal changes. All extremely crucial for me to move forward and learn… https://t.co/sLDbZx8kG3 +05/16/2018,Musicians,@ParsonJames,it’s fucking laurel https://t.co/J6e1b4Ly5E +05/16/2018,Musicians,@ParsonJames,"Oh fuck, u gotta go drop this shit like I haven’t walked out your show 4 times crying over this song https://t.co/0bpyzD2PKj" +05/15/2018,Musicians,@ParsonJames,This is me every day https://t.co/8oABr5gBrv +05/14/2018,Musicians,@ParsonJames,C u Memorial Day weekend @TheSurfLodge 💛 https://t.co/1ZLTqdxLJb +05/14/2018,Musicians,@ParsonJames,Whooo said dat???????? **RHOA VOICE** https://t.co/APOBsd12mb +05/14/2018,Musicians,@ParsonJames,What a fucking ride. Thank you to all the cities across the US who… https://t.co/1b0fwlpMo4 +05/13/2018,Musicians,@ParsonJames,#HappyMothersDay Queen. 💛 https://t.co/uiKoKAZOaA +05/13/2018,Musicians,@ParsonJames,@lilyallen HAHAHAHAH LILY! How iconic how progressive. I live +05/13/2018,Musicians,@ParsonJames,Happy Mother’s Day Queen. Not enough words in the world to describe… https://t.co/5C5GQ1UXKF +05/12/2018,Musicians,@ParsonJames,Thank you @barclayscenter you were absolutely magical and I’m still in shock. Tonight we close the tour in Boston’s… https://t.co/Alo4NtTrMH +05/12/2018,Musicians,@ParsonJames,@HeyItsMarioJose Omg my fucking queen ilysm +05/12/2018,Musicians,@ParsonJames,"RT @HeyItsMarioJose: #NowPlaying - “Only You” by @ParsonJames. + +A GODDAMN TUUUUUNE. +Love you, boo. 😍❤️❌💯" +05/12/2018,Musicians,@ParsonJames,I performed at Barclays center last night but immediately went to @MetropolitanBK and @BagelsmithNY after bc im👏🏽that👏🏽kinda👏🏽girl ! +05/12/2018,Musicians,@ParsonJames,@morgxn This !!!!!!!!!!! +05/11/2018,Musicians,@ParsonJames,Full @houseofsolomag spread on stands soon! 💛💛 thank you… https://t.co/rAW3ni7OoK +05/11/2018,Musicians,@ParsonJames,"RT @Fool_4_Music: Oh man, tonight’s gonna be a good night. Pumped for the @KygoMusic show with my bb’s @ParsonJames + @BonnieMcKee PLUS Bon…" +05/10/2018,Musicians,@ParsonJames,RT @BonnieMcKee: Check out @billboard’s premiere of my new single #MadMadWorld! I talked a little about the inspiration for the song and wh… +05/10/2018,Musicians,@ParsonJames,It’s ya boy! @houseofsolomag 💛💛💛 https://t.co/HQjnLtALzl +05/10/2018,Musicians,@ParsonJames,@houseofsolomag on stands soon! shot by @emighernandez 💛💛💛 @… https://t.co/SucExqeehC +05/10/2018,Musicians,@ParsonJames,Thanks for quoting me babes! 💛💛 @into https://t.co/AoGem4Ar0t +05/09/2018,Musicians,@ParsonJames,Tonight! My party returns to NYC’s @PublicHotels !! Will be a cute night of live music and surprises.… https://t.co/O21gB1vU3K +05/09/2018,Musicians,@ParsonJames,little ol me for @houseofsolomag shot by the wonderful Emilio Hernandez💛 full issue out soon!! https://t.co/xc6gLSaJF7 +05/08/2018,Musicians,@ParsonJames,Donald can I talk to u for a min imma make it quick @ The White House https://t.co/NwOHspxgoX +05/08/2018,Musicians,@ParsonJames,Wearing my formation tour jacket to the private White House tour im getting rn bc it’s what I need to do +05/07/2018,Musicians,@ParsonJames,RT @VINCINT_: @JaredGelman @jessesaintjohn There aren’t any ugly people! Just people who are led to believe that because they don’t have ce… +05/07/2018,Musicians,@ParsonJames,Missing my @artecareyes fam 😩💛 @ Careyes https://t.co/eCrLCN2eu5 +05/07/2018,Musicians,@ParsonJames,DC! I’m in You! Playing @TheAnthemDC this eve and tomorrow! 💃🏼💃🏼💃🏼💃🏼 what’s good in these parts?? Xx +05/07/2018,Musicians,@ParsonJames,🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/uBSOhaTQwh +05/06/2018,Musicians,@ParsonJames,@JHartMusic @LelandOfficial Omg +05/06/2018,Musicians,@ParsonJames,@ryankazmarek wow so then im actually heroic +05/06/2018,Musicians,@ParsonJames,@Chinfullthought 😂😂😂 +05/06/2018,Musicians,@ParsonJames,@Deedseramma Yas!!! +05/06/2018,Musicians,@ParsonJames,"RT @Deedseramma: Better gahtdamb believe it! The always will, and I'm more than okay with that. Love. My. Body. #BodyLove #SelfLove #ILoveM…" +05/06/2018,Musicians,@ParsonJames,"hats off to a beautiful Sunday. Amazing show in Chicago last night, now on to DC! 💛💛💛 https://t.co/54KpuX4kd3" +05/06/2018,Musicians,@ParsonJames,My thighs touch but I am still a good person +05/06/2018,Musicians,@ParsonJames,@pcrowl @glaad @jvn Go off!!!!!! 💛💛💛💛 +05/05/2018,Musicians,@ParsonJames,Billy Gilman is the OG Mason Ramsey +05/05/2018,Musicians,@ParsonJames,"RT @SheaCoulee: Happy Cinco De Mayo everyone! And by EVERYONE, I mean the individuals who are paying homage to Mexico's victory in the Batt…" +05/04/2018,Musicians,@ParsonJames,There are some points she has made https://t.co/nGVzlB9uO6 @NICKIMINAJ +05/04/2018,Musicians,@ParsonJames,. @NICKIMINAJ ate that +05/04/2018,Musicians,@ParsonJames,"Today is a significant learning lesson for me. On so many levels. Self care, relationships, responsibility. The bea… https://t.co/aoMgfekaCQ" +05/04/2018,Musicians,@ParsonJames,@hoecakegal Who said anything about race here? These are direct quotes from this man that contradict himself. It’s… https://t.co/S7AMTuMVhH +05/03/2018,Musicians,@ParsonJames,I just watched a video of @rihanna applying makeup for 10 mins and caught myself smiling a lot +07/01/2018,Musicians,@JamesArthur23,I love this World Cup +06/29/2018,Musicians,@JamesArthur23,"RT @JAShows_: 🎥 || @JamesArthur23 performing a cover of The Fugee’s ‘READY OR NOT’ at the Jounieh Summer Festival 2018 in Jounieh, Lebanon…" +06/29/2018,Musicians,@JamesArthur23,💖 https://t.co/WremTS2pJI +06/29/2018,Musicians,@JamesArthur23,"#YouDeserveBetterAcoustic + +https://t.co/TV54Zq7PII" +06/29/2018,Musicians,@JamesArthur23,"Thank you Lebanon you were electric tonight, you reminded me how much I’m still in love with the live aspect of the… https://t.co/BamXxFoHin" +06/29/2018,Musicians,@JamesArthur23,After this album I’m retiring. Love James x +06/29/2018,Musicians,@JamesArthur23,🐐 #Scorpion #Drake +06/28/2018,Musicians,@JamesArthur23,https://t.co/ywEuxdXN1D +06/28/2018,Musicians,@JamesArthur23,@ZingyTheRobot Of course we didn’t throw the game there’s a few highlights of us genuinely trying to score +06/28/2018,Musicians,@JamesArthur23,@ReochReoch Begging.. Or performing music in front of millions of people which takes balls big man 😂 there’s a diff… https://t.co/OJwug76nj7 +06/28/2018,Musicians,@JamesArthur23,RT @SpotifyUK: #TBT to when to @rudimental and @JamesArthur23 made us dance until sunrise. Get your #SummerRewind ☀️⏪https://t.co/pgm323EwJ… +06/28/2018,Musicians,@JamesArthur23,RT @CapitalOfficial: It's the #WorldCup match we've all been waiting for: #ENGBEL. ⚽️ Let's just hope the #ThreeLions don't get thrashed as… +06/28/2018,Musicians,@JamesArthur23,I’m the best there is https://t.co/TNU0mH2Q9F +06/28/2018,Musicians,@JamesArthur23,Do we really wanna win today 😕 #ENGBEL +06/27/2018,Musicians,@JamesArthur23,Nirvana nevermind still sounds so good in 2018 #Nirvana #Nevermind +06/27/2018,Musicians,@JamesArthur23,Head to https://t.co/nltKgE62Lw for details & tickets for all my upcoming live shows this summer! +06/27/2018,Musicians,@JamesArthur23,"#YouDeserveBetter @AppleMusic + +https://t.co/09RoHUdW43" +06/26/2018,Musicians,@JamesArthur23,@triglarrrrrrr And a record deal and the opportunity to work with some of the best musical minds in the world and a… https://t.co/MpJc87SZWT +06/26/2018,Musicians,@JamesArthur23,#YouDeserveBetter video coming soon! https://t.co/x2VnSWlqMk +06/26/2018,Musicians,@JamesArthur23,"RT @BBCR1: Set your reminders, @JamesArthur23 fans! 🗓 + +James will be joining us in the Live Lounge on Tuesday 3rd July at 12pm. What would…" +06/26/2018,Musicians,@JamesArthur23,RT @ShottyHorroh: Listen to #Shudehill on all streaming platforms now https://t.co/HM1l1HLnTJ https://t.co/iTgtaeoXSx +06/25/2018,Musicians,@JamesArthur23,"@triglarrrrrrr Pretty stupid comment, that was a competition with a completely different premise 🤨" +06/25/2018,Musicians,@JamesArthur23,@simybv81 I like Dani and jack they’re a cute little cockney couple +06/25/2018,Musicians,@JamesArthur23,@rosieheadland Hahaha I’m giving it a chance! Only watched a bit of tonight’s 😂 +06/25/2018,Musicians,@JamesArthur23,@JohannRed16 Yeah to be fair I’m not with the plot but I’m slowly picking it up +06/25/2018,Musicians,@JamesArthur23,@Lois_Talia Yeah I feel that +06/25/2018,Musicians,@JamesArthur23,Can someone explain to me why our country gets so excited about stuff like Love island? Tonight was my first night… https://t.co/dBvHQy4UsS +06/25/2018,Musicians,@JamesArthur23,"https://t.co/MX97Ve5YaY + +@ShottyHorroh You are just fucking sick bro" +06/25/2018,Musicians,@JamesArthur23,RT @Official_Jamal: Obsessed with @JamesArthur23 ‘s two new tunes 😍😍 +06/24/2018,Musicians,@JamesArthur23,Wow #EnglandvPanama +06/24/2018,Musicians,@JamesArthur23,See I knew he’d score!! #EnglandvPanama @JesseLingard +06/24/2018,Musicians,@JamesArthur23,"Rashford or vardy would be a so effective in that position Sterling is playing in, just my opinion #EnglandvPanama" +06/24/2018,Musicians,@JamesArthur23,One of the best pens I’ve ever seen 😕 #EnglandvPanama +06/24/2018,Musicians,@JamesArthur23,Jon stones first goal #EnglandvPanama 🙄 +06/24/2018,Musicians,@JamesArthur23,Lingard first goal #EnglandvPanama +06/23/2018,Musicians,@JamesArthur23,Had Belgium 5-1 Mexico 2-1 and Germany 2-1 today cashed out Belgium at 5-1 and had Toni kroos to score as well. Lov… https://t.co/YEX4Jk7mOh +06/23/2018,Musicians,@JamesArthur23,Phil Neville whispering the commentary on #BelgioTunisia love it #SaturdayMotivation +06/22/2018,Musicians,@JamesArthur23,😂 https://t.co/mzucNYU9Sk thanks for this dad @Neilarthur1Neil +06/22/2018,Musicians,@JamesArthur23,"Thanks so much @lorraine for having us on the show this morning, here is the interview https://t.co/Nto3GMJkS7 the… https://t.co/mSNDuJfHzG" +06/22/2018,Musicians,@JamesArthur23,"RT @MTVMusicUK: Check out this week's MTV Music (Sky 350/Virgin 310) playlist featuring new entries from... +@JamesArthur23 +@5SOS +@heyitsa…" +06/22/2018,Musicians,@JamesArthur23,Thank you for having me Lorraine! Always so nice to talk to you 🙂🙂😘😘 https://t.co/mooAeEwfSP +06/22/2018,Musicians,@JamesArthur23,RT @JAShows_: MAKE SURE you tune into @ITV to catch @JamesArthur23’s chat and performance on @lorraine this morning! 📺 https://t.co/odAke66… +06/21/2018,Musicians,@JamesArthur23,@Rickahir 😂😂 +06/21/2018,Musicians,@JamesArthur23,"Reach out to that friend you haven’t heard from in a while, you never know what they might be going through. We all… https://t.co/Af7gyxp8Tc" +06/21/2018,Musicians,@JamesArthur23,Happy 90th birthday to the vegan axe wielder @Rickahir your licks and beard get more ripe and juicy by the year.… https://t.co/5BHfPbr0p7 +06/20/2018,Musicians,@JamesArthur23,"RT @KissFMUK: It's that age-old question, #LoveIsland or the #WorldCup? @JamesArthur23's weighed in, where do you stand? 🤔 #POLSEN + +WATCH…" +06/18/2018,Musicians,@JamesArthur23,"RT @KissFMUK: TOMORROW we'll be chatting to @JamesArthur23 on #KISSBreakfast and it all kicks off from 7am! 🙌 + +LISTEN here 👉 https://t.co/…" +06/18/2018,Musicians,@JamesArthur23,#TheCarters album is Great +06/18/2018,Musicians,@JamesArthur23,"Summer 2018 issue for  +@euphoriazine #EUPHORIA8 +📸 @jackalexanderuk + +https://t.co/ytCYBfsyAB https://t.co/cCMZCfEFtL" +06/17/2018,Musicians,@JamesArthur23,Never has anybody eaten so many carbs in one weekend 😔 +06/17/2018,Musicians,@JamesArthur23,The whole world should be listening to the new @Miguel album #warandleisure +06/16/2018,Musicians,@JamesArthur23,"RT @Z100NewYork: Wanna know what @MaxwellsHouse is listening to this weekend?? Here are his 🖐🏾 NEW #MaxwellApproved tracks! + +@alessiacara -…" +06/16/2018,Musicians,@JamesArthur23,FUCK OFF FLY +06/15/2018,Musicians,@JamesArthur23,https://t.co/GtxYFfTyJi https://t.co/PBOoW6aGOZ +06/15/2018,Musicians,@JamesArthur23,I listen to the used when I meditate +06/15/2018,Musicians,@JamesArthur23,"RT @iHeartRadioAU: The @iHeartRadioAU artist of the week is @JamesArthur23 ❤️🎶 + +Tune into the #iHeartRadioCountdown this Sunday from 6pm AE…" +06/14/2018,Musicians,@JamesArthur23,"@dapperlaughs All good, no hard feelings. Much respect for apologising takes a big man." +06/14/2018,Musicians,@JamesArthur23,The World Cup opening later getting me through this grey arse morning in London +06/13/2018,Musicians,@JamesArthur23,"RT @BBCRadio2: 🎶 New to the Radio 2 Playlist this week... + +🆕 @KylieMinogue +🆕 @LennyKravitz +🆕 @JamesArthur23 + +Find out more about the mus…" +06/13/2018,Musicians,@JamesArthur23,@finers9 @dapperlaughs I was also in Marbella last night so.. +06/13/2018,Musicians,@JamesArthur23,@dapperlaughs To be fair mate back in 2012 she could well hv got DM’d along with the rest of the babestation cast b… https://t.co/a7WVNxRNXM +06/13/2018,Musicians,@JamesArthur23,"I promise! And I promise to sing it better + +Better + +Better ..🙄 https://t.co/G75dxdLiCe" +06/13/2018,Musicians,@JamesArthur23,@DanielTheFiRowe @dapperlaughs That and multi platinum records yeah 😂 read a book mate +06/13/2018,Musicians,@JamesArthur23,"@dapperlaughs Mugged your mate off? I did a meet a greet with all 500 people that were there off my own back, how a… https://t.co/rqvo0PpjP4" +06/12/2018,Musicians,@JamesArthur23,"RT @MTVMusicUK: 🚨 If you've always wanted to ask @JamesArthur23 something, THIS IS YOUR CHANCE! Head here >>> https://t.co/7oTX36awVF and J…" +06/12/2018,Musicians,@JamesArthur23,"RT @SonyMusicUK: Were you lucky enough to see @JamesArthur23 perform to this HUGE crowd at @CapitalOfficial's #capitalSTB? + +What an incredi…" +06/12/2018,Musicians,@JamesArthur23,"#AtMyWeakest +https://t.co/VpAyWl3ynL" +06/11/2018,Musicians,@JamesArthur23,RT @Pressparty: .@JamesArthur23’s “Back From The Edge” went straight to No.1 in the UK charts & has gone multi platinum worldwide https://t… +06/10/2018,Musicians,@JamesArthur23,"#capitalSTB @CapitalOfficial + +https://t.co/ivo0LrPH2g https://t.co/ZonvwnCBIo" +06/09/2018,Musicians,@JamesArthur23,Thank you @CapitalOfficial 🙌🏻 #SummerTimeBall https://t.co/zhekEtKW37 +06/09/2018,Musicians,@JamesArthur23,"RT @officialcharts: Check out this week's Official Singles Chart in full, incl. You Deserve Better, a definite future hit from @JamesArthur…" +06/08/2018,Musicians,@JamesArthur23,@GeorgiaGarrod97 Happy birthday x +06/08/2018,Musicians,@JamesArthur23,"RT @AppleMusic: Two amazing singles from @JamesArthur23. Listen now. +#YouDeserveBetter +#AtMyWeakest +https://t.co/a6pO1R4Qmb" +06/08/2018,Musicians,@JamesArthur23,Thank you very much! https://t.co/gMdz7NCJyD +06/07/2018,Musicians,@JamesArthur23,Big love Australia ! ❤️ https://t.co/mXqB7KQ8hh +06/06/2018,Musicians,@JamesArthur23,"RT @Pressparty: .@JamesArthur23’s ""Say You Won’t Let Go” has sold more than 9.6 million copies globally https://t.co/y6FlwGbLNS https://t.c…" +06/06/2018,Musicians,@JamesArthur23,🎥 #YouDeserveBetter https://t.co/gIVbWEXJMs +06/06/2018,Musicians,@JamesArthur23,@pandoratweets @KissFMUK Thank you :) x +06/05/2018,Musicians,@JamesArthur23,"RT @Sianwelby: Get ready, he’s here! 😝@JamesArthur23 on the show next! @thisisheart #YouDeserveBetter https://t.co/Zy5ifwuehr" +06/05/2018,Musicians,@JamesArthur23,".@AmazonMusicUK + +https://t.co/tcMFPdcUNO https://t.co/IVoJSfKxAP" +06/05/2018,Musicians,@JamesArthur23,RT @officialcharts: The UK believes that @JamesArthur23's new single 'deserves' a spot on the Official Trending Chart! Listen to You Deserv… +06/05/2018,Musicians,@JamesArthur23,"#NewMusicFriday MusicFriday @Spotify + +https://t.co/OzLMqKpWuf https://t.co/hgXX40fq2l" +06/04/2018,Musicians,@JamesArthur23,RT @JAShows_: 🎥 || CHECK OUT @ShawnMendes telling his fan base to check out @JamesArthur23's new song #YouDeserveBetter 🎵 - (via: @BeIlasMe… +06/04/2018,Musicians,@JamesArthur23,"You deserve better, better... @TheVoiceAU https://t.co/SDJnHBSkzu" +06/04/2018,Musicians,@JamesArthur23,"RT @ColumbiaRecords: Two new songs from @JamesArthur23? Yes, please! https://t.co/RPVvgBlLwS https://t.co/ICFM3ks4Js" +06/03/2018,Musicians,@JamesArthur23,@redrose7221 @TheVoiceAU The last post chorus of the song needed to be on track so that I could sing the signature… https://t.co/aH3cPrwFDU +06/03/2018,Musicians,@JamesArthur23,Thank you @TheVoiceAU #YouDeserveBetter https://t.co/s1UyypS871 +06/03/2018,Musicians,@JamesArthur23,RT @SonyMusicAU: See @JamesArthur23's world premier performance of #YouDeserveBetter tonight on @TheVoiceAU | starts at 7pm AEST 🕺 https://… +06/03/2018,Musicians,@JamesArthur23,TONIGHT! @TheVoiceAU #YouDeserveBetter https://t.co/BGznk7xszw +06/02/2018,Musicians,@JamesArthur23,RT @syco: 🎶 You Deserve Better 🎶 @JamesArthur23 👌 https://t.co/16QPf8RRQu https://t.co/tw98ljknN4 +06/02/2018,Musicians,@JamesArthur23,RT @_kris_ashley_: When you’re in the car listening to @JamesArthur23 ‘s new shit and the MF in the car with you won’t shut TF up! 🤬 #YouDe… +06/02/2018,Musicians,@JamesArthur23,Beyond belief https://t.co/nuiCOoFt6E +06/02/2018,Musicians,@JamesArthur23,Thanks! Im glad you’re feeling it x https://t.co/pXU4a9iCiY +06/02/2018,Musicians,@JamesArthur23,"RT @AilsaBailliex: 'And I hope you find somebody else +That'll love you like nobody else' 🎧 @JamesArthur23 #YouDeserveBetter is 🔥🔥" +06/02/2018,Musicians,@JamesArthur23,"RT @stanecy: @JamesArthur23 Loving the Song!!! ❤️❤️😍 +Feel like this album is going to be So Much Of Your Style - Like how you first came ou…" +06/02/2018,Musicians,@JamesArthur23,"Yo! Are you all enjoy #YouDeserveBetter ? + +https://t.co/yOmhv9wS2R" +06/02/2018,Musicians,@JamesArthur23,RT @MTVMusicUK: The video of the week on @ClubMTV is 'You Can Cry (ft. @JamesArthur23)' by @marshmellomusic x @therealjuicyj 💚 Watch it her… +06/02/2018,Musicians,@JamesArthur23,RT @SonyMusicAU: Tune in to @TheVoiceAU tomorrow night to see the world premier live performance of @JamesArthur23’s new bop #YouDeserveBet… +06/02/2018,Musicians,@JamesArthur23,RT @syco: .@JamesArthur23 releases two brand new songs today 'You Deserve Better' and 'At My Weakest'! 🎶 Out now everywhere! 🙌 https://t.co… +06/02/2018,Musicians,@JamesArthur23,"RT @chunxlix: I- @JamesArthur23 boiii it's sick i love it +#YouDeserveBetter https://t.co/idxacofCeb" +06/01/2018,Musicians,@JamesArthur23,I see :) thank you xxxx https://t.co/J1wXfMXlp1 +06/01/2018,Musicians,@JamesArthur23,"RT @Charllouiseox: My timeline is such a happy place and it's all thank to you @JamesArthur23! ❤ + +#YouDeserveBetter + #AtMyWeakest are both…" +06/01/2018,Musicians,@JamesArthur23,❤️💗 https://t.co/b1uazsY4cO +06/01/2018,Musicians,@JamesArthur23,RT @TrollopeLucy: i think I’ve found a voice i will listen to for the rest of my life - @JamesArthur23 +06/01/2018,Musicians,@JamesArthur23,"This is what it’s all about. I hope your daughter gets well soon, thanks for the love x https://t.co/6ZDCDrTtNr" +06/01/2018,Musicians,@JamesArthur23,RT @zaynabmm: #YouDeserveBetter and #AtMyWeakest are beyond perfect. @JamesArthur23 never fails to amaze me 😭💜💜💜 +06/01/2018,Musicians,@JamesArthur23,RT @SienPuttemans: Even if @JamesArthur23 will never notice me. He will forever be the best artist in my opinion. And he did it again #YouD… +06/01/2018,Musicians,@JamesArthur23,RT @nygmarose: Omg what is this magic?!?? Everything by @JamesArthur23 are magical!! I wanna cry coz it’s so beautiful 😭 followed him for s… +06/01/2018,Musicians,@JamesArthur23,I see you 💗 https://t.co/n3lUyWlfIr +06/01/2018,Musicians,@JamesArthur23,RT @INKEDSTYLES94: @JamesArthur23 literally me after hearing #YouDeserveBetter for the first time https://t.co/jSzx9hw8Ta +06/01/2018,Musicians,@JamesArthur23,RT @okokTJ: @JamesArthur23 new album in the works? 😏 cause #YouDeserveBetter and #AtMyWeakest are complete bangers 😍 +06/01/2018,Musicians,@JamesArthur23,RT @iscoftramos: you killed it love @JamesArthur23 #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,RT @SassyTexan: This week really sucked. The release of the video for #YouCanCry and the songs #YouDeserveBetter and #AtMyWeakest were the… +06/01/2018,Musicians,@JamesArthur23,Yep hahahahaha https://t.co/MqbQugJwoD +06/01/2018,Musicians,@JamesArthur23,RT @nadhira86: @JamesArthur23 Jamie our son loves your song!!! #YouDeserveBetter I am so proud of you!! You are incredibly talented https:/… +06/01/2018,Musicians,@JamesArthur23,RT @MacarenaEC: Que no sé si me quedo con #YouDeserveBetter o #AtMyWeakest!! 😍 Las dos tan diferentes y tan geniales al mismo tiempo... Muy… +06/01/2018,Musicians,@JamesArthur23,RT @neonbelle: @JamesArthur23 After hearing #YouDeserveBetter #Atmyweakest can’t wait to hear the new album and see how your music has ev… +06/01/2018,Musicians,@JamesArthur23,"RT @Esbranza: @JamesArthur23 +In my eyes you’re a fabulous flawless man you can never do wrong, I love & adore you and i see your music as…" +06/01/2018,Musicians,@JamesArthur23,Aw thank you!! ❤️ https://t.co/pprnZgrjsj +06/01/2018,Musicians,@JamesArthur23,RT @LBannatyne: @JamesArthur23 only way i can describe it is beautiful!👌 #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,I’m here 😜 thanks for all your comments ❤️ https://t.co/cBAgB3FG50 +06/01/2018,Musicians,@JamesArthur23,☺️ thanks mate https://t.co/7daFOryk1k +06/01/2018,Musicians,@JamesArthur23,Thank you so much I’m very glad you like them x https://t.co/dktBB09FiC +06/01/2018,Musicians,@JamesArthur23,"RT @https_breeze: I loved the songs very much,your music is art and beautiful!!! #YouDeserveBetter #AtMyWeakest @JamesArthur23 ❤😍 @Jame…" +06/01/2018,Musicians,@JamesArthur23,RT @Niallirish_lad: My 2 favorites love them your music is amazing you diserve everything you got you are truly amazing @JamesArthur23 http… +06/01/2018,Musicians,@JamesArthur23,RT @DeanJohnWilson: Big Congratulations to the Talent and friend @JamesArthur23 on his two new releases which are nothing short of #RI-DOPE… +06/01/2018,Musicians,@JamesArthur23,RT @MrsRow: When you did all your best #YouDeserveBetter tweets this morning and @JamesArthur23 hasn't noticed them but you're too tired to… +06/01/2018,Musicians,@JamesArthur23,"RT @allana1309: @JamesArthur23 +Loved you from the get go... You just keep getting better and better ♥ +#YouDeserveBetter +#AtMyWeakest +Canno…" +06/01/2018,Musicians,@JamesArthur23,Haha 😂 you’re too kind x https://t.co/Ozvnpu2DzD +06/01/2018,Musicians,@JamesArthur23,Haaa yes please https://t.co/pkCCrJbZHU +06/01/2018,Musicians,@JamesArthur23,RT @tomnye9: @JamesArthur23 hope you get to number 1 man with #youdeservebetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,RT @MabroukaC: @JamesArthur23 I fell even more in love with you today ❤️❤️ the new tracks are 🔥🔥🔥 #youdeservebetter #atmyweakest +06/01/2018,Musicians,@JamesArthur23,RT @aanahernandes: Thank you for release the song on my birthday @JamesArthur23 ❤️ #YouDeserveBetter #Atmyweakest https://t.co/CdBRil6kiV +06/01/2018,Musicians,@JamesArthur23,"RT @JoLArroyo: @JamesArthur23 #YouDeserveBetter on repeat and a challenge to sing. Keep it up, can't wait to see you live. 👏🏻" +06/01/2018,Musicians,@JamesArthur23,RT @albaadp: I’m quite excited for @JamesArthur23 new musical era this year! Those new songs are so good 💗 #AtMyWeakest #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,"RT @btwtay: @JamesArthur23 I’ve only just been able to listen and all I can say is I’m in loveeee, release the album soon pls :)) x #AtMyWe…" +06/01/2018,Musicians,@JamesArthur23,RT @introsbutera: @JamesArthur23 i'm obsessed with your new songs....good job 👏🏻💥☄ #YouDeserveBetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,Thank you ❤️ https://t.co/ySObOcGnV3 +06/01/2018,Musicians,@JamesArthur23,RT @parkerhllnd: @JamesArthur23 i'm so proud of you and the masterpieces you always do like really thank YOU for blessing us with your musi… +06/01/2018,Musicians,@JamesArthur23,Now 🙋🏼‍♂️ https://t.co/yhKWqfqurJ +06/01/2018,Musicians,@JamesArthur23,Thank you love you to! X https://t.co/w6wjTB5rLE +06/01/2018,Musicians,@JamesArthur23,"RT @agicampos: @JamesArthur23 +Brazil loves its music. So happy with new songs! #YouDeserveBetter" +06/01/2018,Musicians,@JamesArthur23,Thank you ! https://t.co/xkIbXZ2BEo +06/01/2018,Musicians,@JamesArthur23,Thank you brother much love and respect to you x https://t.co/pivsGeVTkv +06/01/2018,Musicians,@JamesArthur23,😍 https://t.co/ZBWUBcVR68 +06/01/2018,Musicians,@JamesArthur23,RT @Andreathatgirl: @JamesArthur23 I am proud of you. I love your new songs so much. Come to Spain soon please! 🙏🏻🙏🏻#YouDeserveBetter #AtM… +06/01/2018,Musicians,@JamesArthur23,Thank you so much for listening and supporting me. Much love and respect x https://t.co/ULycvhbfnh +06/01/2018,Musicians,@JamesArthur23,Bless you x https://t.co/MqIDluML2D +06/01/2018,Musicians,@JamesArthur23,Thanks bro! https://t.co/rQ0ZrFCH7b +06/01/2018,Musicians,@JamesArthur23,"RT @_heyitsgem: @JamesArthur23 at it again boy, smashing it👊🏽😍 #YouDeserveBetter #AtMyWeakest" +06/01/2018,Musicians,@JamesArthur23,RT @megss_1412: Literally hooked on #youdeservebetter and #atmyweakest literally didn’t think this man could get any better 😍 you surprise… +06/01/2018,Musicians,@JamesArthur23,"RT @ChloeRGoodridge: Didn’t know I could love @JamesArthur23 anymore, but then he brought out #AtMyWeakest and #YouDeserveBetter 😍😍😍😍 xx" +06/01/2018,Musicians,@JamesArthur23,"RT @buzolerrie: you deserve better is such a bop, i love it so much i can’t get it out of my head. great job @JamesArthur23 🙌🏼😻 #YouDeserve…" +06/01/2018,Musicians,@JamesArthur23,"RT @Arta_Styles: @JamesArthur23 ok I have to confess this after all this time , I'm in love with you and your angelic voice, bye. #YouDese…" +06/01/2018,Musicians,@JamesArthur23,"RT @dudebaker123: #YouDeserveBetter is a BOP , I am so excited to hear your new album . You are so talented and you have an AMAZING voice .…" +06/01/2018,Musicians,@JamesArthur23,RT @BeckyJaaynee97x: @JamesArthur23 I’ve had you deserve better in my head all day! Absolutely LOVE IT BRING ON THE ALBUM😍😍😍 +06/01/2018,Musicians,@JamesArthur23,"RT @MARCH006: @JamesArthur23 +#YouDeserveBetter I can not wait for your new album ... your music blow my mind !!... Thanks for composing for…" +06/01/2018,Musicians,@JamesArthur23,RT @ssami_: . @JamesArthur23 just keeps on giving us amazing songs. This is such a catchy tune! 🎶 https://t.co/RnPcPmE2P5 +06/01/2018,Musicians,@JamesArthur23,RT @JArmySpain: You’re doing an amazing job @JamesArthur23. You always put all your soul in your songs and that’s what make them even more… +06/01/2018,Musicians,@JamesArthur23,RT @OutsidersMel: @JamesArthur23 I’m gonna be listening #YouDeserveBetter & #AtMyWeakest non stop. Amazing👏🏻♥️ +06/01/2018,Musicians,@JamesArthur23,RT @ElliexGuy: Sorry but every song @JamesArthur23 brings out is an absolute banger! #YouDeserveBetter #AtMyWeakest +06/01/2018,Musicians,@JamesArthur23,RT @dionsellars1: @JamesArthur23 I’ve converted my mates 😍 #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,You’re so kind! Album is coming this year I promise x https://t.co/ANlF172sDw +06/01/2018,Musicians,@JamesArthur23,😘 https://t.co/gCplLhLuWM +06/01/2018,Musicians,@JamesArthur23,RT @TheJarmyRules: This new @JamesArthur23 music gets me so excited for the new album🙌 #AtMyWeakest #YouDeserveBetter +06/01/2018,Musicians,@JamesArthur23,RT @SarahhPerezz3: Literally everything to me😍 @JamesArthur23 https://t.co/88dMlwnf3D +06/01/2018,Musicians,@JamesArthur23,RT @sarcitrin: hi @JamesArthur23 i just wanna day i will have these two songs on repeat for the next year ok great that’s it — they’re amaz… +06/01/2018,Musicians,@JamesArthur23,RT @GottaBeNere: I adore @JamesArthur23’s tunes. They’re masterpieces. #AtMyWeakest. 😍 https://t.co/z9lLQIM7uC +06/01/2018,Musicians,@JamesArthur23,"RT @sara_ankersen: the king @JamesArthur23 is back with new music, and im in love !!#atmyweakest #youdeservebetter https://t.co/WgnT1sBijB" +06/01/2018,Musicians,@JamesArthur23,RT @ilwethh: @JamesArthur23 “you deserve bettet” totally became my summer song thx😍 +06/01/2018,Musicians,@JamesArthur23,Thank you 👊🏻 https://t.co/jx0y3C2QXi +06/01/2018,Musicians,@JamesArthur23,RT @jesshedrick: @JamesArthur23 Honestly can’t wait for this album of yours!! These SINGLES ARE AMAZING😍😍😍 #AtMyWeakest Hits you right in t… +06/01/2018,Musicians,@JamesArthur23,RT @harri_purd1e: @JamesArthur23 you deserve better is such a bop and I bloody love it!!!😆😆 +06/01/2018,Musicians,@JamesArthur23,RT @TheBestRombout: @JamesArthur23 so so proud of you. Absolutely love your new songs. Come to New Zealand please!!! #YouDeserveBetter #AtM… +06/01/2018,Musicians,@JamesArthur23,RT @mckenzi54389989: @JamesArthur23 #AtMyWeakest #YouDeserveBetter been on repeat all day! In love with them both 😍💓 +06/01/2018,Musicians,@JamesArthur23,RT @emmaPmcewanx: One of the best ❤️❤️ @JamesArthur23 https://t.co/QX1jYeKwmq +06/01/2018,Musicians,@JamesArthur23,Haha ❤️❤️ https://t.co/quDsBHwaiH +06/01/2018,Musicians,@JamesArthur23,"RT @cerys_harvey: I am officially in love....with @JamesArthur23 new songs #YouDeserveBetter and #AtMyWeakest +James, thank you so much for…" +06/01/2018,Musicians,@JamesArthur23,Thank you!! Xx https://t.co/ceAiy0CFMK +06/01/2018,Musicians,@JamesArthur23,RT @TameraKirkwood: I don't have a favorite song @JamesArthur23 You have made me fall in love with these two songs from the first tune! 😍🎤🎶… +06/01/2018,Musicians,@JamesArthur23,I am proud to give you both I suppose it depends on what mood your in :) that’s the beauty of 2 ends of the spectru… https://t.co/eLtMKYb762 +06/01/2018,Musicians,@JamesArthur23,"RT @kellyW2480: @JamesArthur23 #Youdeservebetter is such a banger , your music keeps evolving, love it 😍🙌🏻🙌🏻" +06/01/2018,Musicians,@JamesArthur23,❤️❤️❤️❤️❤️ https://t.co/KlTaWAEWxS +06/01/2018,Musicians,@JamesArthur23,"RT @A_n_g_e_l_i_e_: @JamesArthur23 ‘s RT spree are making me dizzy!! Love it! So happy and digging your new songs!! +#YouDeserveBetter…" +06/01/2018,Musicians,@JamesArthur23,RT @TheScript_Fan3: @JamesArthur23 I completely idolize you and and have quickly fallen in love with these two new amazing tunes!! 💙💙💙 #You… +06/01/2018,Musicians,@JamesArthur23,RT @sarcitrin: @JamesArthur23 really puttin me in my feels #atmyweakest #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,RT @narry_my_love: Catch me getting down to this song 24/7 @JamesArthur23 #youdeservebetter +06/01/2018,Musicians,@JamesArthur23,Thank you that means a lot x https://t.co/z0rZ6LrGSa +06/01/2018,Musicians,@JamesArthur23,RT @geraldine96Lew: @JamesArthur23 just listened to your brand new song #YouDeserveBetter what an amazing song love it love it!!😍 +06/01/2018,Musicians,@JamesArthur23,Thank you sir https://t.co/TKZOYEwrJR +06/01/2018,Musicians,@JamesArthur23,RT @TheXFactor: It changed @JamesArthur23’s life and it could change yours too! #XFactor Open Auditons are happening this weekend! Sunday 3… +06/01/2018,Musicians,@JamesArthur23,RT @ClaireJayneJLS: @jamesarthur23 #NowPlaying #YouDeserveBetter JAMES YOU HAVE TOTALLY OUTDONE YOUURSELF THESE TRACKS ARE FANTASTIC https:… +07/01/2018,Musicians,@ddlovato,"I’m taking over the beach in Atlantic City on Thursday, July 26! ! Get your tickets today before it’s too late… https://t.co/8Y9IrUClAG" +07/01/2018,Musicians,@ddlovato,Who wants a signed guitar from my Core photoshoot!? 💙🎶 All you have to do is follow https://t.co/gzocGmvojg and he… https://t.co/9t76mb5rhg +06/29/2018,Musicians,@ddlovato,Sister I am slayed. 😍 https://t.co/BwVRX7P3VF +06/27/2018,Musicians,@ddlovato,"To my fans, my family, and my supporters, the ones who never left me, you are my light. I am forever grateful 🙏🏻 https://t.co/0BVzp5wP8p" +06/26/2018,Musicians,@ddlovato,#Sober 🖤https://t.co/RArIHOpNNq https://t.co/f0kaRDkn2t +06/26/2018,Musicians,@ddlovato,🔋💚💪🏼 @Fabletics Nori Outfit #Demi4Fabletics https://t.co/t8YYlLunqV https://t.co/DGDBxBiEm2 +06/26/2018,Musicians,@ddlovato,"I’m celebrating Pride by raising money for GLAAD, an organization that has been fighting for LGBTQ+ inclusion and j… https://t.co/foe05LMySl" +06/25/2018,Musicians,@ddlovato,"RT this to vote for me or tweet ""My #TeenChoice for #ChoiceSnapchatter is Demi Lovato @ddlovato” https://t.co/wm86nmfbjc" +06/25/2018,Musicians,@ddlovato,"RT this to vote for me or tweet ""My #TeenChoice for #ChoiceLatinSong is Échame La Culpa @LuisFonsi @ddlovato” https://t.co/G9pXnQNWA3" +06/25/2018,Musicians,@ddlovato,"I got three more Teen Choice Nominations! RT this to vote for me or tweet ""My #TeenChoice for… https://t.co/EHVb2hrC1z" +06/24/2018,Musicians,@ddlovato,"Tonight I took the stage, a new person with a new life. Thank you to everyone who has supported me throughout this… https://t.co/CaDgNiWe1O" +06/21/2018,Musicians,@ddlovato,"My truth... https://t.co/tmDhhBGLNQ +#sober out now https://t.co/Uwfg6PFPk9" +06/20/2018,Musicians,@ddlovato,My heart is broken with what’s going on in the US right now. +06/19/2018,Musicians,@ddlovato,Zaddy issues 💁🏻‍♀️ https://t.co/2Y9ya1eUp5 +06/19/2018,Musicians,@ddlovato,Did you hear the acoustic version of Solo with @cleanbandit? Love the vibe. https://t.co/3YaNtb3Uyn https://t.co/DGl78V3cmZ +06/18/2018,Musicians,@ddlovato,Solo with @cleanbandit is #1 on the UK mid-week chart! Let's make sure it stays there until Friday 🙏🏼… https://t.co/afkg8HNlR6 +06/16/2018,Musicians,@ddlovato,Manchester.. it was an honor to perform for you all. Thank you for being such an incredible audience.. you are so strong.. 🙏 +06/15/2018,Musicians,@ddlovato,Sorry Not Sorry was nominated for #ChoiceSongFemaleArtist! Let’s win this thing. RT to vote for me or tweet “My… https://t.co/i0S2Oy0ZHs +06/15/2018,Musicians,@ddlovato,"Thank you so much for the Teen Choice Nomination for #ChoiceFemaleArtist! 😍 RT this to vote for me or tweet ""My… https://t.co/VnX56snAUE" +06/15/2018,Musicians,@ddlovato,.@xtina this ALBUM!!! 😍 Guys it’s sooo good. Do yourself a favor and listen here: https://t.co/IPPSO1911X… https://t.co/Xv2QoyRRnb +06/15/2018,Musicians,@ddlovato,Feeling cute in my @Fabletics Stretto II 🌊☀️ https://t.co/LTXFrCiNHU https://t.co/Rpe69XOXVJ +06/14/2018,Musicians,@ddlovato,Who else can’t sleep? +06/14/2018,Musicians,@ddlovato,Is it bad that I can’t focus on it because of how hot the son Todd is? +06/14/2018,Musicians,@ddlovato,Watching the staircase on Netflix... it’s sooooo good. Anybody else watching it? +06/14/2018,Musicians,@ddlovato,RT @tatted_up_dolly: https://t.co/SyCb0T4ybA. Please help support a good cause! We are a local recovery center in… +06/14/2018,Musicians,@ddlovato,Life is a balancing act. Had so much fun working with @COREdrinks on this new campaign. Check it out. … https://t.co/1prF3NS5V7 +06/13/2018,Musicians,@ddlovato,Well guys I made it through the show!! I’ve never sang in falsetto so much in my life but I still had fun!! Thank you Glasgow!!! ❤️ +06/13/2018,Musicians,@ddlovato,I still have to protect my voice so y’all may have to hit the high notes for me tonight 😜😝 +06/13/2018,Musicians,@ddlovato,"I feel sooooo much better, thank you for all your well wishes!!!! You guys are the best!!!" +06/13/2018,Musicians,@ddlovato,At the venue... so ready to get back on stage!!! Who’s ready?!! +06/11/2018,Musicians,@ddlovato,Still less invasive than paparazzi +06/11/2018,Musicians,@ddlovato,I’m so bored I might start playing fortnite +06/11/2018,Musicians,@ddlovato,Most exciting part of my day? Getting a camera shoved up my nose and down my throat to look at my vocal chords 😑 +06/11/2018,Musicians,@ddlovato,"This seriously sucks.. haven’t left my hotel room in 2 days now. Sick, bored and bummed out." +06/11/2018,Musicians,@ddlovato,I’m literally gutted that I have to postpone this next show in Birmingham.. I’ve never had to miss shows due to my… https://t.co/P0PjfUsDW4 +06/10/2018,Musicians,@ddlovato,My fans are seriously the best... I can’t believe how much love and support I’ve received today.. the video of my f… https://t.co/fip5YJLb2l +06/10/2018,Musicians,@ddlovato,❤️ https://t.co/QpkPZtMXyP +06/10/2018,Musicians,@ddlovato,💔 https://t.co/Rs7ZWMCvcQ +06/09/2018,Musicians,@ddlovato,Loving the Canon II from @Fabletics. Pretty in pink 🌸 #Demi4Fabletics https://t.co/EcSO0BkW0i https://t.co/J7yWHmZBZU +06/09/2018,Musicians,@ddlovato,Help me get @kidkelly in the @RadioHOF by texting the number 200 to 96000 (and also voting at https://t.co/BMxzD3LNzJ) – he deserves it! +06/09/2018,Musicians,@ddlovato,RT @xtina: It sets a tone of returning to the youthful innocence and feeling of limitless possibility that 'Liberation' is all about. Shout… +06/08/2018,Musicians,@ddlovato,"I loved working on my room, Power Parlor, for #29Rooms and can't wait to share it with all of my Chicago friends.… https://t.co/wZNA1ltkgT" +06/08/2018,Musicians,@ddlovato,RIP Anthony Bourdain.. I always wanted to meet you and talk jiu jitsu with you. May you sleep with the angels now. 🙏🏼 +06/07/2018,Musicians,@ddlovato,Hey guys!!! #TheFour is BACK!!! Tune in tonight at 8/7c on FOX! https://t.co/NRWFCSvqyl +06/07/2018,Musicians,@ddlovato,So psyched about these new @Fabletics styles! What do you think of this one? #Demi4Fabletics https://t.co/uhCeVYTQmt +06/05/2018,Musicians,@ddlovato,So excited to announce that @iambeckyg is supporting the #TellMeYouLoveMeTour in Argentina and Brazil!❤️ 🇧🇷 https://t.co/TXPBowyJF3 +06/03/2018,Musicians,@ddlovato,That’s just the thing... people DON’T know my full story.. https://t.co/0x8uU7gdDv +06/03/2018,Musicians,@ddlovato,So sorry if anyone was offended 😔 +06/03/2018,Musicians,@ddlovato,"For all of those coming at me rn, listen to the lyrics of Warrior and maybe you’ll have more compassion for someone… https://t.co/Su4tu6KsDD" +06/03/2018,Musicians,@ddlovato,@iamwithjb Listen to warrior and the lyrics. Maybe you’ll have more compassion for a simple mistake. +06/03/2018,Musicians,@ddlovato,I swear I could tweet something about craving jelly beans and it would offend someone. +06/03/2018,Musicians,@ddlovato,I can remember what I was wearing on this day 5 years ago but I can’t remember if I’ve ever milked a cow.. +06/03/2018,Musicians,@ddlovato,Okay guys I gotta go!! I love you all! +06/03/2018,Musicians,@ddlovato,Stop tweeting https://t.co/RZFUOiCJJ2 +06/03/2018,Musicians,@ddlovato,The fact that people in other countries know the words to my songs 😭 https://t.co/OepWlfSP0s +06/03/2018,Musicians,@ddlovato,The one coming out soon https://t.co/xkMphF44JY +06/03/2018,Musicians,@ddlovato,I DREAMT ABOUT THAT LAST NIGHT https://t.co/9YHxXejXOf +06/03/2018,Musicians,@ddlovato,I love this https://t.co/e3parnwxsW +06/03/2018,Musicians,@ddlovato,Nah https://t.co/F6ZVHt48MU +06/03/2018,Musicians,@ddlovato,I did! https://t.co/3XL1vh1Whb +06/03/2018,Musicians,@ddlovato,Lions... duh 😝 https://t.co/lr9j8dLBYl +06/03/2018,Musicians,@ddlovato,Yes!! I love horses https://t.co/YwsW3C9jn4 +06/03/2018,Musicians,@ddlovato,Poot is locked up. She’s allergic to sunlight. https://t.co/NCOUU2btBI +06/03/2018,Musicians,@ddlovato,I legit can’t remember if I have..... is that weird? https://t.co/Has9kTRnVJ +06/03/2018,Musicians,@ddlovato,Pink 💗 https://t.co/HqvggzqJVH +06/03/2018,Musicians,@ddlovato,Night in https://t.co/7LiS8tUiJT +06/03/2018,Musicians,@ddlovato,I haaaaaaate scuba diving https://t.co/PvqTCknndg +06/03/2018,Musicians,@ddlovato,Batman. He’s my first born so naturally he’s my favorite. #savage https://t.co/Bnv0YAvK0O +06/03/2018,Musicians,@ddlovato,"I can’t... they’re amazing, non-judgemental, funny, loyal... etc. https://t.co/x2ckiH4p5K" +06/03/2018,Musicians,@ddlovato,I think so 😊 https://t.co/N8EE7pxIy4 +06/03/2018,Musicians,@ddlovato,THANK YOU https://t.co/BBiD1Dcj6B +06/03/2018,Musicians,@ddlovato,I don’t think so https://t.co/9XRWXAJ8Sa +06/03/2018,Musicians,@ddlovato,Of course boo https://t.co/ig436uB6LW +06/03/2018,Musicians,@ddlovato,Bora bora 😍 https://t.co/T63fvmFb8n +06/03/2018,Musicians,@ddlovato,Yes!! I want to go in Dubai!! https://t.co/wr766mZhxc +06/03/2018,Musicians,@ddlovato,Their loyalty 😍 https://t.co/oHnSagHIL8 +06/03/2018,Musicians,@ddlovato,That I leak my own pictures/captions from my private account 🙄 https://t.co/KDb82J2VU6 +06/03/2018,Musicians,@ddlovato,😏 https://t.co/DCiVBJSCMb +06/03/2018,Musicians,@ddlovato,The fans and the architecture https://t.co/j6GfC8IFqM +06/03/2018,Musicians,@ddlovato,😳 https://t.co/NJzxDwGpp6 +06/03/2018,Musicians,@ddlovato,Savage https://t.co/ev6ujGzso6 +06/03/2018,Musicians,@ddlovato,Cereal first https://t.co/G6My87x8BE +06/03/2018,Musicians,@ddlovato,Yes!!! I love Amsterdam!! https://t.co/c6XakrJEQc +06/03/2018,Musicians,@ddlovato,C*** https://t.co/HawkMES9IR +06/03/2018,Musicians,@ddlovato,Not in the iPhone 😩😩😩 https://t.co/C31FsVNcBc +06/03/2018,Musicians,@ddlovato,Yes!!! I know what I’m getting too 😁 https://t.co/R8zAAzBCMv +06/03/2018,Musicians,@ddlovato,"Raw, emotional, heavy https://t.co/aOM5fWMK52" +06/03/2018,Musicians,@ddlovato,The one where he texts me back https://t.co/q2xLl5z4sH +06/03/2018,Musicians,@ddlovato,Is this a trick question? https://t.co/a843NzpOEa +06/03/2018,Musicians,@ddlovato,I love girls period https://t.co/V65tB7EUXr +06/03/2018,Musicians,@ddlovato,I’m always sane at work... except when I have to do video liners. (Those videos where I have to memorize shit and s… https://t.co/RmnpoHZFdW +06/03/2018,Musicians,@ddlovato,Teenage dream.... good memories to that one https://t.co/yJg5rIjQF0 +06/03/2018,Musicians,@ddlovato,YES https://t.co/wrw2UiveI7 +06/03/2018,Musicians,@ddlovato,JPG (@jillpowellglam) https://t.co/Bko86OAmwD +06/03/2018,Musicians,@ddlovato,Being myself 😁🌈 https://t.co/MAMD1pVWFt +06/03/2018,Musicians,@ddlovato,I wish 🙁 https://t.co/YwZco97HBe +06/03/2018,Musicians,@ddlovato,Yessssss 😍 https://t.co/v6YAYwALVe +06/03/2018,Musicians,@ddlovato,I wish 😩😩😩 https://t.co/hLlPdZx8pU +06/03/2018,Musicians,@ddlovato,Thank you!! I just need a beat and I’ll write to t. When I write by myself it always ends up country now 😂 https://t.co/aDuqfQqqhE +06/03/2018,Musicians,@ddlovato,You can’t always trust people who you once thought saved you https://t.co/RP35m52hOT +06/03/2018,Musicians,@ddlovato,Coffee & workout! https://t.co/cKrZRunQZH +06/03/2018,Musicians,@ddlovato,I want Brazilian girls 😍 https://t.co/H1iFSODcXY +06/03/2018,Musicians,@ddlovato,I hate Swedish meatballs yesterday! https://t.co/DMEMGnVwoo +06/03/2018,Musicians,@ddlovato,AMA’s last year https://t.co/CFPhy8Mct4 +06/03/2018,Musicians,@ddlovato,Red 😂 https://t.co/YkDd840ZsZ +06/03/2018,Musicians,@ddlovato,Sparking water with lemon or pineapple juice https://t.co/0nwJbqHBkQ +06/03/2018,Musicians,@ddlovato,Margot Robbie and Dua Lipa https://t.co/k3NRtl3LDm +06/03/2018,Musicians,@ddlovato,Not next week but maaaayyyyybbbbeeeeee the week after............. https://t.co/QdDuFO4VmY +06/03/2018,Musicians,@ddlovato,Getting better but still not great ☹️ https://t.co/tKXleZklK7 +06/03/2018,Musicians,@ddlovato,Gummy bears https://t.co/bfDS87OSPK +06/03/2018,Musicians,@ddlovato,I’m not in Paris yet! https://t.co/H319T6LKG1 +06/03/2018,Musicians,@ddlovato,Ask me questions!!! Let’s do a q&a!!! +06/03/2018,Musicians,@ddlovato,Help me I’m bored +06/03/2018,Musicians,@ddlovato,@LarryCsgo @hellgrnemelie So cute!!! +06/03/2018,Musicians,@ddlovato,"RT @LarryCsgo: Celebrated 1 year wedding anniversary with @hellgrnemelie together with Queen @ddlovato + +Even our August baby (same as @ddlo…" +06/03/2018,Musicians,@ddlovato,Never trust a website that claims they’re posting from my private account with captions and everything. It’s called photoshop. +06/02/2018,Musicians,@ddlovato,Ps. I’ve known @druidDUDE for almost 20 YEARS NOW.... WTFFFFFF +06/02/2018,Musicians,@ddlovato,"Stockholm.. you were gorgeous, incredible and amazing. I love you 💗" +06/01/2018,Musicians,@ddlovato,I feel like I’ve grown more in the past two months than I have in years. I feel like a new woman and I’m so grateful for my life today. +06/01/2018,Musicians,@ddlovato,OSLO!!! You were incredible.. what a night!! +06/01/2018,Musicians,@ddlovato,I wanna wear heels already 😩😩😩 +06/01/2018,Musicians,@ddlovato,NEWMARKET! I can't wait to headline Summer Saturday Live for a special outdoor show on 9th June! 💕Tickets on sale n… https://t.co/elkbDD3tGN +05/31/2018,Musicians,@ddlovato,The video is out for SOLO with @cleanbandit!! Hope you guys love it. https://t.co/FjZvgbnIWU https://t.co/HVscb35Lsc +05/31/2018,Musicians,@ddlovato,💚 #Demi4Fabletics https://t.co/mdv9313pSX https://t.co/sMMERAlYDe +05/31/2018,Musicians,@ddlovato,RT @cleanbandit: THE SOLO VIDEO IS OUT NOW @ddlovato ➡ https://t.co/Yt0KTk5hsY +05/30/2018,Musicians,@ddlovato,RT @cleanbandit: TOMORROW 10am BST https://t.co/eR4I7veMjt +05/30/2018,Musicians,@ddlovato,Hahahahaha https://t.co/Z5sh2tz6ur +05/30/2018,Musicians,@ddlovato,Can you handle the truth? #newmusiccomingsoon +05/30/2018,Musicians,@ddlovato,Sometimes you have to end an era to begin talking about a new chapter of your life. #D7 +05/29/2018,Musicians,@ddlovato,Some of you may not like or understand my truth but it’s me.. take it or leave it.. +05/29/2018,Musicians,@ddlovato,I’ll share my truth soon +05/29/2018,Musicians,@ddlovato,"There’s nothing like the truth. The honest to God, uncomfortable and shocking truth. Sometimes you have to share yo… https://t.co/5eMNMbiJ0N" +05/29/2018,Musicians,@ddlovato,I’m just gonna let my lyrics say it all... new music coming very soon +05/29/2018,Musicians,@ddlovato,You’re so vain you probably think this tweet is about you 😂😂😂 +05/29/2018,Musicians,@ddlovato,😝😊🤗 https://t.co/xzZVf4FOLS +05/29/2018,Musicians,@ddlovato,What do you guys think of this @Fabletics Flare outfit? #Demi4Fabletics https://t.co/t8YYlLunqV https://t.co/YYLxCDRYCe +05/29/2018,Musicians,@ddlovato,Yes please!!! https://t.co/5CK5bTIAFA +05/29/2018,Musicians,@ddlovato,Today marks two years without my Mimaw... I’m still heartbroken because she was my world but she’s in a better plac… https://t.co/gJdnlmT3Yw +05/29/2018,Musicians,@ddlovato,Okay guys! Thanks for keeping me company.. gotta go! Love you all +05/29/2018,Musicians,@ddlovato,"True friends don’t ask anything of you.. they don’t take, they give... nothing but love, acceptance and loyalty" +05/29/2018,Musicians,@ddlovato,Matthew Scott and Sirah https://t.co/XLfRBG1JrP +05/29/2018,Musicians,@ddlovato,Beach always https://t.co/LPTO8moP8R +05/29/2018,Musicians,@ddlovato,Lion https://t.co/2WUCIiXuNr +05/29/2018,Musicians,@ddlovato,HA https://t.co/AGJjfAnWwZ +05/29/2018,Musicians,@ddlovato,iPhone https://t.co/Q9EJdBeX7f +05/29/2018,Musicians,@ddlovato,Yes 😑 https://t.co/JxVSNCbVOO +05/29/2018,Musicians,@ddlovato,Too embarrassing to say https://t.co/7Hb8BRC9ar +05/29/2018,Musicians,@ddlovato,Waffles https://t.co/fNB5nqvwRF +05/29/2018,Musicians,@ddlovato,Production issues https://t.co/0swBn7qSmA +05/29/2018,Musicians,@ddlovato,Be careful https://t.co/qkTJLloN2y +05/29/2018,Musicians,@ddlovato,It was to a really cute boy 😝😍 https://t.co/0KviivSFGG +05/29/2018,Musicians,@ddlovato,Nope https://t.co/wYlJGkAsv2 +05/29/2018,Musicians,@ddlovato,My babies Batman and Cinderella https://t.co/1ReIX6oR2Z +05/29/2018,Musicians,@ddlovato,Skittles https://t.co/82bgpLEe8E +05/29/2018,Musicians,@ddlovato,Pizza https://t.co/xGP4oOXMS5 +05/29/2018,Musicians,@ddlovato,🤢🤮 https://t.co/bXxwjkTdWU +05/29/2018,Musicians,@ddlovato,NARS https://t.co/DbSUgaq03V +05/29/2018,Musicians,@ddlovato,Very VERY soon.... could be a matter of weeks actually https://t.co/vOciaHp5mD +05/29/2018,Musicians,@ddlovato,Barbecues with family and friends https://t.co/AdkGYFbnK3 +05/29/2018,Musicians,@ddlovato,Concealer!! https://t.co/4yKVpx8D7J +05/29/2018,Musicians,@ddlovato,Everything and more https://t.co/0DQFNPuCAZ +05/29/2018,Musicians,@ddlovato,You have to be able to make me laugh... https://t.co/1xJgy4F8Qn +05/29/2018,Musicians,@ddlovato,"Right now, yes https://t.co/mYsVBGjrjL" +05/29/2018,Musicians,@ddlovato,😩😩😩 https://t.co/FjfnARF7WC +05/29/2018,Musicians,@ddlovato,Speechless by Dan + Shay https://t.co/LNdXdrf1Jc +05/29/2018,Musicians,@ddlovato,LAUREL https://t.co/23AwoXMCWA +05/29/2018,Musicians,@ddlovato,Dogs are better https://t.co/DTwmKlhxda +05/29/2018,Musicians,@ddlovato,Miss Dior https://t.co/ReUhY0QnP5 +05/29/2018,Musicians,@ddlovato,Nope https://t.co/vkWPtjBzhi +05/29/2018,Musicians,@ddlovato,I’m the happiest I’ve ever been in my life... #free https://t.co/CIFwodGTTI +05/29/2018,Musicians,@ddlovato,😉 https://t.co/CfWsxiIxvq +05/29/2018,Musicians,@ddlovato,Nearly peed my pants https://t.co/cZf9VFT6aV +05/29/2018,Musicians,@ddlovato,Yes!! I plan on getting back into acting this next year https://t.co/kx6hzPo04c +05/29/2018,Musicians,@ddlovato,Someday I hope!! I love her 💖☁️ https://t.co/4IQ2R3o4AQ +05/29/2018,Musicians,@ddlovato,I can skateboard but I don’t because I’m clumsy as fuck https://t.co/0642id1cf1 +05/29/2018,Musicians,@ddlovato,Pretty much... I have so much new music to release very VERY soon!!! https://t.co/EaAaiJ4mjD +05/29/2018,Musicians,@ddlovato,@ConfidentGirl65 Single! +05/29/2018,Musicians,@ddlovato,A brand new song called........ https://t.co/jbgx6dU1MI +05/29/2018,Musicians,@ddlovato,Batman is with my mom!! I miss him soooooo much. And cinderella https://t.co/obmHiARtyX +05/29/2018,Musicians,@ddlovato,It’s on the mend. I wanted to try it out to see how it felt without the boot. We’ll see https://t.co/X4zZfFBBn6 +05/29/2018,Musicians,@ddlovato,I’m loving Fall In Line.. I just wish Christina was with me to perform it every night! https://t.co/oKKS3IvvZu +05/29/2018,Musicians,@ddlovato,Ask me questions! I’m bored. Hahaha +05/29/2018,Musicians,@ddlovato,Wide awake on the bus this morning.. what are y’all up to? +05/28/2018,Musicians,@ddlovato,You should see the other guy.... 😜 jk.. thanks for understanding Antwerp!!!! Incredible audience tonight!! I love you!! 😎😎😎 +05/28/2018,Musicians,@ddlovato,"To every brave soldier and individual who gave their lives and service to ensure our freedom, thank you and Happy M… https://t.co/pGz8hSUQq1" +05/28/2018,Musicians,@ddlovato,@DDNCLA I love you all!! +05/28/2018,Musicians,@ddlovato,RT @DDNCLA: @ddlovato We’re waiting for you babe #tellmeyoulovemetourantwerp https://t.co/9Su1OJGoAt +05/28/2018,Musicians,@ddlovato,I don’t think I’ve ever felt happier or more free... +05/26/2018,Musicians,@ddlovato,I love you Dublin +05/25/2018,Musicians,@ddlovato,BTS from my shoot with @COREdrinks. 💦 More coming soon! https://t.co/eEZDc1Xsnp +05/25/2018,Musicians,@ddlovato,Love wearing activewear as regular clothes. Lazy yet fierce. Featuring @Fabletics Stretto II #Demi4Fabletics… https://t.co/QDbtLZPC5l +05/25/2018,Musicians,@ddlovato,Btw wouldn’t y’all rather have NEW songs from a NEW album and choose a NEW single from that?! +05/25/2018,Musicians,@ddlovato,And no that’s not the next single... just my life right now +05/25/2018,Musicians,@ddlovato,I fucking love Belfast... thank you guys for an awesome first show!!! +05/25/2018,Musicians,@ddlovato,You don’t do it for me anymore +05/24/2018,Musicians,@ddlovato,Surprise! Spotify and I teamed up to create this exclusive crop-hoodie for my fans on @Spotify. Check your email to… https://t.co/0xyuio8H8d +05/24/2018,Musicians,@ddlovato,Tickets are now on sale for my ONLY East Coast show of the summer - July 26th on the beach in Atlantic City with sp… https://t.co/7NgJXCkxOd +05/24/2018,Musicians,@ddlovato,RT @xtina: Fall In Line is as much about supporting each other as it is about self-empowerment. I wanted to convey that in this video by vi… +05/24/2018,Musicians,@ddlovato,@LaurenJauregui @xtina Love you tons girl.. so happy you understood the message 💗💗💗 +05/24/2018,Musicians,@ddlovato,RT @LaurenJauregui: So powerful. @xtina @ddlovato you two have been such huge inspirations for me since I️ was a child. Christina was my fi… +07/01/2018,Musicians,@ollyofficial,"I’ve got a new job.... @ Ibiza, Spain https://t.co/brn8CELjMF" +06/30/2018,Musicians,@ollyofficial,Fly-Dab-boarding head first 😝 https://t.co/4qLv6TEIZq +06/30/2018,Musicians,@ollyofficial,Life’s for living 🙌🏻 https://t.co/3k0QnpXeUd +06/27/2018,Musicians,@ollyofficial,Get involved 😝😝😝 hope to see you men and ladies later this year 🤞🏻😝 https://t.co/e98koVAuyD +06/27/2018,Musicians,@ollyofficial,@c_haynesbrown1 @joshuapolard755 Got beaten by me in everything ✅ +06/27/2018,Musicians,@ollyofficial,Size of my forehead 🙄😂could cook ya dinner on it https://t.co/T2O7h0aozg +06/27/2018,Musicians,@ollyofficial,@MarkWright_ Need my hairdryer back! Hairs in bits! 😝😂 +06/27/2018,Musicians,@ollyofficial,😂😂😂 most likely https://t.co/UyTqlhqvr2 +06/27/2018,Musicians,@ollyofficial,Did I just hear I’m nominated for two awards 🤔what are we saying 😝👌🏻🤷🏻‍♂️ +06/27/2018,Musicians,@ollyofficial,Can’t be arsed it’s Wednesday face 😝 https://t.co/ht54GiemOp +06/26/2018,Musicians,@ollyofficial,😂😂 you don’t scare me 😂 https://t.co/b4AmsZRmjs +06/26/2018,Musicians,@ollyofficial,@milliemarrison1 @MelanieCmusic @GeriHalliwell @victoriabeckham @EmmaBunton But Mills you’ve got about 1000 pictures with me 😝 +06/26/2018,Musicians,@ollyofficial,@lauragwales @MelanieCmusic @GeriHalliwell @victoriabeckham @EmmaBunton I’ve met her but never got a picture I don’t think 🤔 +06/26/2018,Musicians,@ollyofficial,Nearly..... 1 more to go!! 😝😉 https://t.co/82AQAKJhRM +06/26/2018,Musicians,@ollyofficial,4th spice girl added to my collection... GINGER SPICE! one more to go! #ifyouknowyouknow 🔥❤️😘 https://t.co/wcIkRQKBrV +06/25/2018,Musicians,@ollyofficial,But on a serious note! To get 9 awesome years in this mad world called Showbiz is not something I take for granted! Love ya long time ❤️😘 +06/25/2018,Musicians,@ollyofficial,@maybeitsmurs 😂😂 +06/25/2018,Musicians,@ollyofficial,#9YearsOfMe ain’t you lot lucky 😉😝🤷🏻‍♂️ +06/25/2018,Musicians,@ollyofficial,Me: Jamie I have an idea 🤔 50 shades of Murs? 😝🤷🏻‍♂️🤪 https://t.co/e38UwOp8lO +06/24/2018,Musicians,@ollyofficial,"@EssexPR Fantastic day mate! Roast dinner on point, football on point, drinks on point! Was great to see ya 👍🏻 I’ll… https://t.co/Qrm3h6grUO" +06/24/2018,Musicians,@ollyofficial,This shirt is never coming off now specially after winning 6-1 😱🔥 https://t.co/lH3aVmZXcR +06/24/2018,Musicians,@ollyofficial,Come on England 🏴󠁧󠁢󠁥󠁮󠁧󠁿 we go again #ENG #ThreeLions #WorldCup https://t.co/ogTQC8xwnv +06/24/2018,Musicians,@ollyofficial,@ToniKroos Unreal! Superb Toni 🔥 +06/24/2018,Musicians,@ollyofficial,Fantastic night at the Horan&Rose 2018 event! Huge amounts raised that will benefit and help so many children / fam… https://t.co/SlWEFtTrT1 +06/23/2018,Musicians,@ollyofficial,"I’m not weird, I’m limited edition 👍🏻" +06/23/2018,Musicians,@ollyofficial,@aliceeeeee_xo I’m not weird I’m limited edition 😝 +06/23/2018,Musicians,@ollyofficial,Missing this 😵 https://t.co/yrDPUf3XW5 +06/22/2018,Musicians,@ollyofficial,https://t.co/A4Egx87PlY +06/22/2018,Musicians,@ollyofficial,Nice day for a dip 😎☀️💦 https://t.co/cAToFrGhJN +06/22/2018,Musicians,@ollyofficial,It’s Friday people... Last day in the office 😝😜🤪 https://t.co/pkMDjP6CIY +06/22/2018,Musicians,@ollyofficial,@JKCorden Phenomenal!! 🔥 wow at the end “hey Jude” 😭❤️ +06/21/2018,Musicians,@ollyofficial,Got a tenner on this lad getting Golden Boot at the #Worldcup Come on @HKane can’t wait for the game Sunday #tbt… https://t.co/IuCnNGJwRp +06/21/2018,Musicians,@ollyofficial,Check out my little announcement with a special guest... ⁉️ 🏃🏻‍♂️🏃‍♀️@Great_Run @Mo_Farah @fayzeewoo_loves… https://t.co/CRkAGtULBq +06/21/2018,Musicians,@ollyofficial,All about the beauty spots @NiallOfficial 😝😂 wicked seeing ya! https://t.co/GoCEs4Q3Zb +06/21/2018,Musicians,@ollyofficial,Check out these crackers 😝😂🙈 #niallhoran https://t.co/fiXjHpZ8k3 +06/20/2018,Musicians,@ollyofficial,@officialdonel @LaurenBannon1 Love you both! 👍🏻🔥😘 +06/19/2018,Musicians,@ollyofficial,Every Red light 🔴 gotta say an England player!… https://t.co/Vq4Z7NSYNQ +06/19/2018,Musicians,@ollyofficial,@PeteBlay @Mo_Farah @lewis_damian @usainbolt Love Harry! Top guy and absolutely buzzing he rates me as a player 👍🏻 +06/18/2018,Musicians,@ollyofficial,@EssexPR @England @HKane @TheThreeColts Next one I’m there son 👍🏻🏴󠁧󠁢󠁥󠁮󠁧󠁿💯 +06/18/2018,Musicians,@ollyofficial,Unreal scenes tonight! Loved it @England Some great positives to take from the game! Captain @HKane you legend! Wel… https://t.co/GQvZsocz5f +06/18/2018,Musicians,@ollyofficial,I’m hoping this is the ENGLAND team talk tonight!! Get @JKCorden in there!! This gets me pumped every time... geniu… https://t.co/E37cJrR7WA +06/18/2018,Musicians,@ollyofficial,Come on ENGLAND 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🦁🦁🦁 #worldcup https://t.co/glcVf5M2Fc +06/17/2018,Musicians,@ollyofficial,Love ya dad 😘❤️ https://t.co/NwMMsXbrvN +06/17/2018,Musicians,@ollyofficial,Happy #FathersDay to all the awesome dads out there today but also to those who aren’t here with us 💯❤️🙏🏻 +06/15/2018,Musicians,@ollyofficial,Finally the #WorldCup2018 is here What a game! @Cristiano this guy 🔥🔥 +06/15/2018,Musicians,@ollyofficial,Next album cover Rob? 😝🤷🏻‍♂️ https://t.co/SOpFXOjcny +06/15/2018,Musicians,@ollyofficial,Loved it thanks for having me! 😘👍🏻 https://t.co/bAqXjoWujv +06/14/2018,Musicians,@ollyofficial,How many songs could we put over @davidguetta ft @justinbieber 2U 🤔 loved this @ConorMaynard #TBT https://t.co/Y5bCwmvzoS +06/13/2018,Musicians,@ollyofficial,"After an emotional, exhausting, unbelievable weekend... THIS is the reason we do @socceraid and we can’t thank you… https://t.co/YafV5d0frD" +06/13/2018,Musicians,@ollyofficial,❤️ this photo #ProudUncle 😭 https://t.co/plpnmbEIDb +06/13/2018,Musicians,@ollyofficial,😂😂😂 love this Starky! Can I give you my USA 94 panini sticker album please?! any chance you can finish that NOW tha… https://t.co/LQhfwzCXBY +06/12/2018,Musicians,@ollyofficial,"This picture says it all... + +Highest attendance ever ✅ + +Over £5.5 million raised ✅ + +England Win ✅ + +This is… https://t.co/i9w4q7i5Ae" +06/12/2018,Musicians,@ollyofficial,"RT @SportsBreakfast: ""I've been playing with Ozil for many years"" 😂😂 + +@ollyofficial talks us through THAT #SoccerAid assist for @DarrenBent…" +06/12/2018,Musicians,@ollyofficial,@ChristinaHibbs Eh what you chatting about +06/12/2018,Musicians,@ollyofficial,"Missing the lads already, not sure they’re missing me 😂😝 @PaddyMcGuinness @socceraid https://t.co/5wj9va5skH" +06/11/2018,Musicians,@ollyofficial,@Rudimental @socceraid Yes lads! For sure 😂😂 thanks for the message! 👌🏻 +06/11/2018,Musicians,@ollyofficial,Just a casual shoot dance after we scored last… https://t.co/5FWqEwdC1O +06/11/2018,Musicians,@ollyofficial,When ya nephew dabs on TV 😂😝 #legend… https://t.co/X7YVgyj2wX +06/10/2018,Musicians,@ollyofficial,"Love this photo! What a night! +Thank you to everyone who donated and supported @socceraid this year! We’ve raised… https://t.co/sW0UfxSHaF" +06/10/2018,Musicians,@ollyofficial,😂😂😂 https://t.co/nIENOmBdOK +06/10/2018,Musicians,@ollyofficial,@AndersonNatalie Indeed it does 🙌🏻👍🏻❤️ +06/10/2018,Musicians,@ollyofficial,"It’s big, it’s round, it’s shiny and I’ve Finally got my hands on it #winners #captain 😝🍾🏆⚽️ https://t.co/V8yK4OmPF6" +06/10/2018,Musicians,@ollyofficial,COME ON ENGLAND!! 👍🏻🔥😝#TeamRobbie https://t.co/4lexUkrk4N +06/10/2018,Musicians,@ollyofficial,THE KING IS HERE “Oh Ah CANTONA” 👌🏻🔥 https://t.co/Go7NOtFmz5 +06/09/2018,Musicians,@ollyofficial,Riding solo 🎩🍾🇬🇷😉 https://t.co/zV4DRYz77s +06/09/2018,Musicians,@ollyofficial,"One’s the fastest person in the world +One runs the country and another has almost completed tinder! +I’ll let you d… https://t.co/lU2p4VxsHQ" +06/08/2018,Musicians,@ollyofficial,Yesssssss @robbiewilliams loved it! Let’s get on stage together soon mate 😉😝👍🏻 https://t.co/nF8ZdYVLRD +06/08/2018,Musicians,@ollyofficial,Look at these right couple of mugs 😂😝 @loosewomen vs #loosemen @itv @socceraid special today at 12.30pm!! Don’t mis… https://t.co/nHABrJvtS0 +06/07/2018,Musicians,@ollyofficial,Heads up @TheF2 😂😂 https://t.co/5oMhkCo3xX +06/07/2018,Musicians,@ollyofficial,Pads only got Sir @Mo_Farah 😂😂😂 https://t.co/c2gDcASgBm +06/07/2018,Musicians,@ollyofficial,My favourite part of the week @MarkWright_ ‘s NOT so favourite 😂😂 https://t.co/1ZmWhbJADg +06/07/2018,Musicians,@ollyofficial,All the gear no idea 😝 @socceraid @UNICEF_uk 👍🏻🔥 https://t.co/jNgwOaPTZ0 +06/07/2018,Musicians,@ollyofficial,RT @GranadaReports: @socceraid stars met the PM ahead of their game at Old Trafford this weekend. @ollyofficial was well impressed with th… +06/06/2018,Musicians,@ollyofficial,Honoured to be at No.10 Celebrating the partnership between @socceraid for @UNICEF_uk and the governments aid match… https://t.co/mOCl1qKh9R +06/06/2018,Musicians,@ollyofficial,"RT @DailyMirror: Olly Murs visited African tip and met kids who are his Soccer Aid inspiration +https://t.co/ME1EdsUaPg https://t.co/GfXS0p1…" +06/06/2018,Musicians,@ollyofficial,That moment when ya beating @usainbolt at… https://t.co/RarBHenl5D +06/06/2018,Musicians,@ollyofficial,"Unbelievable afternoon at 10 Downing Street for @socceraid +@UNICEF 👍🏻⚽️ https://t.co/NtmEbUox3q" +06/06/2018,Musicians,@ollyofficial,New boyband alert 👍🏻😝🔥 https://t.co/m9e8gCVNma +06/06/2018,Musicians,@ollyofficial,So the week begins @socceraid 👍🏻🔥 https://t.co/5ClwzChclu +06/05/2018,Musicians,@ollyofficial,RT @JustinRose99: Last chance #Team🌹for earlybird tickets! Offer ends on Sunday 10th June with up to 30% savings. @british_masters @waltonh… +06/04/2018,Musicians,@ollyofficial,Tribute to my showbiz dad on his birthday… https://t.co/w8TrMluNVk +06/04/2018,Musicians,@ollyofficial,Oooooooooo it’s nearly here!! 6 days till @socceraid @UNICEF whose coming?!?! 😉👍🏻 https://t.co/ZD4cf8whU8 +06/04/2018,Musicians,@ollyofficial,RT @loosewomen: SCORE! Don't miss the Loose Women & Men @socceraid special this Friday with @robbiewilliams @ollyofficial @BrendanCole & @P… +06/02/2018,Musicians,@ollyofficial,@KamilleXX I was with you aswell and I must say I hope we can sort out our differences and can you love me again please Kamille 😝😉 +06/01/2018,Musicians,@ollyofficial,😂😂 @louis_tomlinson It works every time 😂😂… https://t.co/fzfMwyOXHn +05/30/2018,Musicians,@ollyofficial,This guy! The winner of #BGT this year for me! Just watched it back about 4times! Absolutely brilliant! 👏🏻 https://t.co/cnEOtWNqCr +05/30/2018,Musicians,@ollyofficial,@aboutIeigh Excuse me I’m doing alrite thanks 😂 Im with RCA 😝👍🏻 but appreciate the concern +05/29/2018,Musicians,@ollyofficial,I will never break up with gym we just seem to “workout” 😉😝 https://t.co/vGQHGMqTSC +05/28/2018,Musicians,@ollyofficial,@OllyMursMemes 😂😂😂 +05/27/2018,Musicians,@ollyofficial,@EchoArena Loved it! Top night +05/27/2018,Musicians,@ollyofficial,Wow met the main man @danawhite everything I expected & more! What a guy!! Top night & congrats to @darrentill2… https://t.co/iC2S2sShYv +05/27/2018,Musicians,@ollyofficial,IBIZA is calling me!! I’ll be over soon... ☀️🍹🏖😎 https://t.co/Dw1Otssvcb +05/24/2018,Musicians,@ollyofficial,"I’m not going to say good luck Saturday for obvs reasons 😂🙈🙄but I must say top guy, great banter and loved chatting… https://t.co/w5SIhzsl0P" +05/23/2018,Musicians,@ollyofficial,"So 😂🙈 Here’s my attempt at @DFID_UK ‘s keepy-uppy challenge! Challenge yourself, raise money for @SoccerAid for… https://t.co/sd4jBUrn4x" +05/22/2018,Musicians,@ollyofficial,https://t.co/1RTOxoV5jE +05/22/2018,Musicians,@ollyofficial,Loved surprising the amazing @RaysofSunshine Children’s Choir today! (Good job they knew the lyrics 😂) They were th… https://t.co/mgbJCzeyyN +05/22/2018,Musicians,@ollyofficial,Never forgotten and always in our hearts! What happened that day 1 year ago will live with us forever! No one shoul… https://t.co/RSwIcXkqiR +05/22/2018,Musicians,@ollyofficial,RT @ManUtd: Always Remember. Never Forget. Forever Manchester. #ManchesterTogether https://t.co/TFOVM0Cx1S +05/22/2018,Musicians,@ollyofficial,RT @GranadaReports: Here's how #Manchester will mark one year since the terror attack at the city's Arena which killed 22 people. #Manchest… +05/21/2018,Musicians,@ollyofficial,Eh actually buzzing.... 🤪 https://t.co/bXgpWYUHe3 +05/21/2018,Musicians,@ollyofficial,Well well well what can I say #Deadpool2 was everything I wanted and more after the 1st one!! I love @VancityReynolds what a guy! 👍🏻💯🔥 +05/21/2018,Musicians,@ollyofficial,"Awwww what a night with the @CoggeshallTown boys this was Saturday😝🔥💯 + +Thanks @sugarhut for having the best looking… https://t.co/4Rl74dLTak" +05/21/2018,Musicians,@ollyofficial,Only 3 weeks till @socceraid @UNICEF_uk bloody excited about it!! Are you????? 😆👍🏻💯🔥 https://t.co/6HNZ3C4ULB +05/20/2018,Musicians,@ollyofficial,"RT @socceraid: Just 3️⃣ weeks to go until @robbiewilliams’ England take on @usainbolt’s World XI 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽️🌎 + +🎟 Don’t miss a game like no ot…" +05/20/2018,Musicians,@ollyofficial,@JasonManford @howlettspark 😂😂😂 +05/19/2018,Musicians,@ollyofficial,On my way to @sugarhut with the @CoggeshallTown last night till we hit pre-season 🔥😝👍🏻 +05/19/2018,Musicians,@ollyofficial,Ffs lost my keys again 🤷🏻‍♂️ https://t.co/N9QyceYmlX +05/18/2018,Musicians,@ollyofficial,@Sianwelby 😂😂😂 +05/18/2018,Musicians,@ollyofficial,@CapitalOfficial @MarvinHumes Just you wait and see 😝👍🏻 +05/17/2018,Musicians,@ollyofficial,@officialroycey Happy birthday Roycey ❤️😘 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Thanks babe see ya soon! Make sure you have Hooch next time 😝👌🏻 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Classic keyboard warrior and never said anything! I’m gutted you have plenty to say 😂😂 +05/17/2018,Musicians,@ollyofficial,@hvneydukes Cheers 😂🤷🏻‍♂️👌🏻 +05/16/2018,Musicians,@ollyofficial,RT @CoggeshallUtd: Our team are seeking a kit sponsor for the coming 2 seasons. If interested please message us for details. please RT akke… +05/15/2018,Musicians,@ollyofficial,@officialroycey Love ya mate! ❤️👍🏻 check ya dms +05/15/2018,Musicians,@ollyofficial,"Stop making me laugh your make me @PUMA pants 😝 + +Great meeting & exciting to work with you guys @pumafootball movin… https://t.co/LiXr0F5QP8" +05/15/2018,Musicians,@ollyofficial,"Woke up this morning and it just hit me that you lot.... + +Thanks for every tweet yesterday! Best fans ever! Love ya… https://t.co/8NRQ1f6bk1" +05/15/2018,Musicians,@ollyofficial,@VasJMorgan Thanks Vas 😊👍🏻 +05/15/2018,Musicians,@ollyofficial,@EssexPR Thanks brooksy 😘 +05/15/2018,Musicians,@ollyofficial,@Popprince Thanks kev 😘 +05/15/2018,Musicians,@ollyofficial,@BroadcastMoose Thanks moose 👍🏻 +05/15/2018,Musicians,@ollyofficial,@Tallia_Storm Cheers Tallia +05/15/2018,Musicians,@ollyofficial,@RickyRayment Thanks Ricky +05/14/2018,Musicians,@ollyofficial,@BRITs Thanks Brits ❤️😘 +05/14/2018,Musicians,@ollyofficial,Thanks official charts see you soon 😏😉😘 https://t.co/UhKAzvSclz +05/14/2018,Musicians,@ollyofficial,Awwww thanks you lot ❤️❤️❤️ https://t.co/TpQPQjw0j6 +05/14/2018,Musicians,@ollyofficial,Keeping it cool since 1984!! Thanks for all the love today! You lot are awesome!! Love ya ❤️😘 https://t.co/VmDRhXpa2H +05/14/2018,Musicians,@ollyofficial,@Luke_Wilson89 @CoggeshallTown Thanks skipper 😝 +05/13/2018,Musicians,@ollyofficial,😂😂😂 @sueperkins killed me there 👏🏻 But very funny!! #BAFTATV +05/13/2018,Musicians,@ollyofficial,I’ve had so many nightmares over this since last soccer aid! Can’t believe I missed it 🙈 https://t.co/INxEqhWtUC +05/12/2018,Musicians,@ollyofficial,"Winners smile tonight 😝 +@thurlownunnECL presentation night!! 👍🏻⚽️⚫️🔴⚫️🔴 https://t.co/Qd22eVMbLy" +05/11/2018,Musicians,@ollyofficial,"Wow what a final day of the season for us @CoggeshallTown 🔥💯😝 + +Big thanks to @joshfilmmaker for this video he did!… https://t.co/yMEi3ZpAOs" +05/11/2018,Musicians,@ollyofficial,Oh F%#k !! Can’t believe it!! What a honour It will be to meet this legend... OH AH CANTONA 🙌🏻🔥💯 https://t.co/hGTSsBbyOp +05/09/2018,Musicians,@ollyofficial,@undateables_jb @Withamtownfc @CoggeshallTown Was it nice seeing a team lift a trophy??! 😝 nah only messing was gre… https://t.co/k9qO8L58RW +05/09/2018,Musicians,@ollyofficial,"RT @socceraid: When you realise there’s 3️⃣6️⃣ days until the @FIFAWorldCup but only 3️⃣2️⃣ days until #SoccerAid 😁 + +🎟 https://t.co/ihLTUR4…" +05/09/2018,Musicians,@ollyofficial,@JoeKnightyy9 @scotthiskey Great season actually! You melons 🍉 🍉🍉🍉🍉🍉🍉🍉🍉🍉 +05/08/2018,Musicians,@ollyofficial,@JoeKnightyy9 Shame you get Injured every 5mins 😂😂 +05/07/2018,Musicians,@ollyofficial,"RT @BBCEssexSport: ICYMI: “These are the moments you will cherish for the rest of your life.” + +@ollyofficial on @CoggeshallTown’s promotion…" +05/06/2018,Musicians,@ollyofficial,@BBCEssexSport @CoggeshallTown @ThurlowNunnFL Thanks for all the support 👍🏻💯🔥 +05/06/2018,Musicians,@ollyofficial,"RT @BBCEssexSport: “We’re not th biggest club in the world but it’s been a great season.” + +@ollyofficial reflects on @CoggeshallTown becom…" +05/06/2018,Musicians,@ollyofficial,@IainvanderRee @rickandrews65 You guys yesterday were an embarrassment singing and swearing in front of all the kid… https://t.co/eclOdxJqkp +05/06/2018,Musicians,@ollyofficial,@rickandrews65 😂😂👍🏻🏆you can have Division 1 will take the Premier 🔥💯🤣 +05/05/2018,Musicians,@ollyofficial,"RT @CoggeshallTown: WE ARE THE CHAMPIONS‼️ @CoggeshallTown 2017/18 @thurlownunnECL + +#SeedGrowers 🔴⚫️👍🏻🔥💯 https://t.co/yqo7DbLa3B" +05/05/2018,Musicians,@ollyofficial,Taken me all year to get my hands on this biggun 😝💯🔥#seedgrowers #champions https://t.co/9lSjZ4aAMG +05/05/2018,Musicians,@ollyofficial,"What a day! Sun is out, legs are out +Back home and straight over to… https://t.co/pzTslD3tIA" +05/04/2018,Musicians,@ollyofficial,Note to self 🤔 Tequila was a bad choice🤷🏻‍♂️😂🙈 @ The Highlight Room https://t.co/ZInoYnWPxW +05/04/2018,Musicians,@ollyofficial,"RT @5liveSport: ""Me and my brother had Cantona shirts, a Sharpe shirt and a Giggs shirt"" + +@Ollyofficial on his love of #MUFC growing up.🔴⚪…" +05/04/2018,Musicians,@ollyofficial,Flossing’ell 😝‼️ https://t.co/3HYVlhsQxD +05/04/2018,Musicians,@ollyofficial,Me & Wrighty out out ! His killing me for my shirt? What we saying... 😝 https://t.co/mpM8pICjvp +05/03/2018,Musicians,@ollyofficial,Buckle up you lot! Rest of this year gunna be fun 😝😝👊🏻🔥 https://t.co/OG4hRDJfsv +05/03/2018,Musicians,@ollyofficial,Doing the Harlem Shake 😂 #family #birthdaymonth #TBT https://t.co/kDwa6bXPVY +05/01/2018,Musicians,@ollyofficial,RT @CoggeshallTown: Excitement is electric and we can’t wait to lift the trophy on Saturday at Home. Can’t wait to see you all there. Huge… +05/01/2018,Musicians,@ollyofficial,"One word “CHAMPIONS” +@CoggeshallTown 🏆 #SeedGrowers 🔴⚫️🔴⚫️⚽️ https://t.co/KyQfqJGSEx" +05/01/2018,Musicians,@ollyofficial,"Gutted lads @CoggeshallTown I won’t be there tonight against @Felixseasiders I only turn up for the big games 😝 +Nah… https://t.co/N06GvquRVl" +05/01/2018,Musicians,@ollyofficial,In case you was wondering... https://t.co/hyZS1Sk7eX +04/30/2018,Musicians,@ollyofficial,Soccer aid June 4th..... er no it’s June 10th @GordonRamsay 🤣 plus @MarkWright_ send me a postcard next time bud 😝🤣… https://t.co/6Ojxjz8Ksx +04/29/2018,Musicians,@ollyofficial,I’ve got my Sunday smile on!! https://t.co/fgqdgVr2kM +04/29/2018,Musicians,@ollyofficial,Put your filthy hands all over me 😝 @ Justin Timberlake Man of the Woods https://t.co/AAw95hRTca +04/29/2018,Musicians,@ollyofficial,What a show this was 🔥💯👍🏻 https://t.co/yIaRJ1yOTn +04/28/2018,Musicians,@ollyofficial,"Loving it mate @NiallOfficial 😝👊🏻🔥 + +https://t.co/yUjqEa7mpG" +04/28/2018,Musicians,@ollyofficial,What a little star 🌟 yes I’ll sort out a signed pic for the little man! 👍🏻💯 https://t.co/9d6suipIuE +04/28/2018,Musicians,@ollyofficial,"@foreverourolly 😂 but truth is you gotta learn to love yourself before you can love another + +or I’m just abit of a loner 🤣" +04/28/2018,Musicians,@ollyofficial,@loubeylou What a little star 🌟 +04/28/2018,Musicians,@ollyofficial,@ZoeSoraff_OM Oh sorry Grammar police 🙄can’t help it! It’s what I do 😝 +04/28/2018,Musicians,@ollyofficial,@ged_coyne @warwickroad69 Just abit of banter lads 😂😂 +04/28/2018,Musicians,@ollyofficial,I’ll be watching Kaano! 🔥💯👊🏻 https://t.co/WQZx7LlzWQ +04/28/2018,Musicians,@ollyofficial,@jamier1977 That’s the joke 😂😂 +04/27/2018,Musicians,@ollyofficial,I’m READY for the weekend are YOU⁉️😝 https://t.co/VBrZ8szNob +04/27/2018,Musicians,@ollyofficial,Yessssssss #PrinceLouis great name choice but I’m afraid ive already got my own Prince Louis and he loves selfies w… https://t.co/MOoiYIOBlF +04/27/2018,Musicians,@ollyofficial,@ourrachblogs Worse!! I was reading her a blog about abstaining in April about crisps 😂😝 +04/27/2018,Musicians,@ollyofficial,@ourrachblogs That’s what she said last night 😝😂😏 +04/27/2018,Musicians,@ollyofficial,@ourrachblogs Oh well thanks for listening Rach👌🏻appreciate your positive feedback😂 Shame I didn’t come to you earl… https://t.co/9c5u1Sv6ZM +04/27/2018,Musicians,@ollyofficial,"Well, for future reference this is my serious face 😝👊🏻 https://t.co/DimlXbYIki" +04/26/2018,Musicians,@ollyofficial,"Yesterday’s gone, Tomorrow is a Mystery, Today is a gift! LIVE IT 🔥💯👊🏻 https://t.co/4KSUab0m8v" +04/26/2018,Musicians,@ollyofficial,@TheXFactor 😂😂😂 +04/26/2018,Musicians,@ollyofficial,@officialroycey Sending you my love mate 😘☹️ +04/26/2018,Musicians,@ollyofficial,A random picture outside A random door 😝 @ Warner Bros. Entertainment https://t.co/WocXF4wLRi +04/25/2018,Musicians,@ollyofficial,Last time the Eithad was full 😂😝 #robbiewilliams #tour #2013 #troublemaker https://t.co/uheDlDv15V +04/25/2018,Musicians,@ollyofficial,@eddiebrett @CoggeshallTown Thanks Eddie 🤓 +04/25/2018,Musicians,@ollyofficial,Don’t you chicken curry! New music is coming... 😝🔥💯 https://t.co/9hCwAoR63m +04/24/2018,Musicians,@ollyofficial,Big hand selfie 👋🏻😎🇺🇸 https://t.co/S5q5Nhrp7m +04/24/2018,Musicians,@ollyofficial,"Let’s just enjoy the next 3 games lads! What will be will be! +Promotion was what we wanted @CoggeshallTown & we’ve… https://t.co/OmGPYTV2ie" +04/24/2018,Musicians,@ollyofficial,"RT @CoggeshallTown: PROMOTION FOR THE #SeedGrowers🔥💯👊🏻 + +What an effort from the lads with back to back promotions!Unbelievable! + +The hosts…" +04/24/2018,Musicians,@ollyofficial,Wow 😮 see you there 😝🔥‼️ https://t.co/TWVJ6UVhQU +04/24/2018,Musicians,@ollyofficial,3rd wheeling at its finest! You just can’t compete with @realsirtomjones ☹️😂💯 https://t.co/z7ZVSreZAF +04/23/2018,Musicians,@ollyofficial,"New Monday, New Week, New sneaks! LETS DO THIS 💯😝👊🏻 https://t.co/9ljvnLc9TR" +04/23/2018,Musicians,@ollyofficial,@VickNHope 😂😂 +04/22/2018,Musicians,@ollyofficial,#LondonMarathon 💯👍🏻🔥 +04/22/2018,Musicians,@ollyofficial,Yesssss @JBransgrove our GK @CoggeshallTown is doing it today @LondonMarathon I’m watching mate! His doing it for… https://t.co/6WMnwaE32Q +04/22/2018,Musicians,@ollyofficial,To everyone running the london marathon today! Nothing but love and respect! The hard work / dedication you’ve put… https://t.co/hfxu06uKXH +04/21/2018,Musicians,@ollyofficial,"RT @ManUtd: Wembley is red. + +#MUFC #EmiratesFACup https://t.co/f6wrsU8v4P" +04/21/2018,Musicians,@ollyofficial,"RT @ManUtd: FT: #MUFC 2 Tottenham 1. + +Goals from @Alexis_Sanchez and @AnderHerrera see the Reds into the #EmiratesFACup final... + +Let the c…" +04/21/2018,Musicians,@ollyofficial,"Huge guys!! Get in!! +Can’t be more prouder of the effort & dedication you lads have put in! 23pts behind and we are… https://t.co/JnLHUj0UiT" +04/21/2018,Musicians,@ollyofficial,Oops Morning 🙊😝🤪 https://t.co/JIFa9fj5q1 +04/20/2018,Musicians,@ollyofficial,@LiamPayne 🤪💯👍🏻 +04/20/2018,Musicians,@ollyofficial,YESSSSS @LiamPayne ‼️🔥TUNEEEEE MATE! #Familiar https://t.co/JY4T6dbgp9 +04/20/2018,Musicians,@ollyofficial,@mynameisbrooke @bekahxlouise_ 😂😂😂❤️ +04/20/2018,Musicians,@ollyofficial,@EssexPR Dya remember ‘Shadow’ ?! He used to rip geezers heads off in dual! +04/20/2018,Musicians,@ollyofficial,Without a shadow of a doubt yes! Only if “Jet” is back doing it 😝 https://t.co/5XB3F4gMuq +04/20/2018,Musicians,@ollyofficial,My reaction to Arsene Wenger saying his leaving arsenal! Nooooooooooo 😂😝 #MUFC https://t.co/zEiMHEp8uZ +06/29/2018,Musicians,@elliegoulding,"RT @marcocaselli_: @elliegoulding and @duttypaul 's new song is a BOP +#Badlove https://t.co/49QGzpqdje" +06/29/2018,Musicians,@elliegoulding,❤️ https://t.co/DKcqgL5Z3l +06/29/2018,Musicians,@elliegoulding,"RT @caitlinmoran: And so it has been left to Danny Dyer to speak the simplest and greatest truth about Brexit. Especially with the second ""…" +06/27/2018,Musicians,@elliegoulding,RT @duttypaul: @JheneAiko @elliegoulding @iambeckyg @MAJORLAZER @stefflondon @Migos @torylanez @DUALIPA!!! SOON COME!!! #madloveEP RRR!!! +06/26/2018,Musicians,@elliegoulding,It was a privilege to visit @NordoffRobbins1 yesterday to take part in a music therapy session! The sessions are fr… https://t.co/hjM5j2UnhJ +06/26/2018,Musicians,@elliegoulding,RT @NordoffRobbins1: Congratulations to the incredible @elliegoulding for winning the @lizhobbs_group Best Female Award at this year's @Nor… +06/25/2018,Musicians,@elliegoulding,"RT @CaroRance: Disgraceful result from Westminster tonight as 415 MPs vote to approve #Heathrow third runway, approve unabated climate chan…" +06/25/2018,Musicians,@elliegoulding,Until I’m back I just gotta keep doing the right thing! https://t.co/gTZnzZTi5g +06/25/2018,Musicians,@elliegoulding,RT @Ed_Miliband: We owe it to future generations not just to have good environmental principles but to act on them. That is why I will be v… +06/25/2018,Musicians,@elliegoulding,I like you Matthew https://t.co/S6ByFDT5no +06/25/2018,Musicians,@elliegoulding,"RT @mtpennycook: I’ll be voting against #Heathrow expansion later today. The project is expensive, risky, and the financing still doesn't a…" +06/25/2018,Musicians,@elliegoulding,"RT @HomeHouseLondon: We are delighted to announce The Marylebone Project as our charity for 2018/19, London's largest women only homeless p…" +06/25/2018,Musicians,@elliegoulding,@mytaxiuk Improve your app +06/23/2018,Musicians,@elliegoulding,Congrats @akalamusic https://t.co/Av4PXPQ2VM +06/21/2018,Musicians,@elliegoulding,@Benfogle Fair play! +06/20/2018,Musicians,@elliegoulding,“Bestie” “supper” “yummy” 😷 https://t.co/YNgcfLxKsx +06/19/2018,Musicians,@elliegoulding,"RT @AmnestyUK: If you don't have #humanrights, you don't have humanity. https://t.co/yAp6EHFN2I" +06/18/2018,Musicians,@elliegoulding,RT @MarylebonePrjct: Happy #RefugeeWeek2018 We are going to be taking part in the 20 #SimpleActs Here we have shared our welcome banner & a… +06/18/2018,Musicians,@elliegoulding,"RT @TheNewsAtGlenn: I really took @elliegoulding to task here. It's like Paxman. Move over, Dimbleby, Moore's in town. https://t.co/VrK55sX…" +06/14/2018,Musicians,@elliegoulding,"RT @UN_EMG: Are YOU ready for World Sea Turtle Day? #BeatPlasticPollution #SDG14 + +Watch this video with @UNEnvironment Goodwill Ambassador…" +06/14/2018,Musicians,@elliegoulding,@grimmers Haha +06/14/2018,Musicians,@elliegoulding,@GabrielleAplin Vaseline around the inside of your nostrils 😂 +06/08/2018,Musicians,@elliegoulding,@alisonleung1989 No +06/08/2018,Musicians,@elliegoulding,Indeed. https://t.co/QC73FDTiDW +06/07/2018,Musicians,@elliegoulding,Amazing! Kudos to the teachers!!!! 👏🏼👏🏼👏🏼 https://t.co/jOerynW0uH +06/07/2018,Musicians,@elliegoulding,@elliehamilton38 @reallorraine Hahaha +06/06/2018,Musicians,@elliegoulding,@RowForTheOcean @lucysiegle @UNEnvironment You are AWESOME +06/06/2018,Musicians,@elliegoulding,"RT @RowForTheOcean: @elliegoulding @lucysiegle @UNEnvironment Hey Ellie, we are rowing 3,000 miles across the Atlantic to spread the messag…" +06/05/2018,Musicians,@elliegoulding,RT @halcyon_leah: @elliegoulding We stand together! +06/05/2018,Musicians,@elliegoulding,Let’s do Instagram tagging tomorrow? Been a long studio day 🤯 Goodnight beautiful people x #BeatPlasticPollution +06/05/2018,Musicians,@elliegoulding,They were super early supporters of me. Thank you @Lookmagazine ❤️ https://t.co/b3U3DdwyIJ +06/05/2018,Musicians,@elliegoulding,🤩 https://t.co/N7y7kqfkYZ +06/05/2018,Musicians,@elliegoulding,"RT @GeorgeMonbiot: In the midst of a climate emergency, the government is imposing a 3-line whip on its MPs, to force acceptance of a Third…" +06/05/2018,Musicians,@elliegoulding,RT @CarolineLucas: Can't quite believe Chris Grayling's statement on #Heathrow didn't mention climate change even once. The biggest crisis… +06/05/2018,Musicians,@elliegoulding,Seeing as few politicians are brave enough to try to implement any kind of serious planet 🌍 saving legislation (blo… https://t.co/971aXsRrQh +06/05/2018,Musicians,@elliegoulding,Later on I want you to tag me in your #beatplasticpollution pics on insta pleeeease will let you know when x @UNEnvironment +06/05/2018,Musicians,@elliegoulding,Happy World Environment Day to all my beautiful fans and beyond. Remember you can still be a bad b*tch and care abo… https://t.co/Mh096hJoIA +06/04/2018,Musicians,@elliegoulding,Shoutout to anyone making a difference +06/04/2018,Musicians,@elliegoulding,@bittersweeteg That’s because these pictures are not supposed to be out +06/03/2018,Musicians,@elliegoulding,RT @guardian: Whale dies from eating more than 80 plastic bags https://t.co/iTImrYhcES +06/01/2018,Musicians,@elliegoulding,@Tonygardner I wouldn’t have got that +06/01/2018,Musicians,@elliegoulding,🎉🎉🎉 https://t.co/70AEL86Ayd +06/01/2018,Musicians,@elliegoulding,RT @Dania_H_: Whatever is going through @elliegoulding s mind right now-I can 100% relate to that. +05/31/2018,Musicians,@elliegoulding,RT @guardian: Avoiding meat and dairy is ‘single biggest way’ to reduce your impact on Earth https://t.co/pejsoEG7uD +05/31/2018,Musicians,@elliegoulding,"RT @Channel4News: No, this viral video doesn't show Muslims attacking cars in Britain. + +They're football hooligans in Switzerland. https://…" +05/31/2018,Musicians,@elliegoulding,@grimmers ❤️ +05/30/2018,Musicians,@elliegoulding,https://t.co/YTLU8dk7W8 +05/30/2018,Musicians,@elliegoulding,Amazing ❤️ https://t.co/eb3RHKaNST +05/30/2018,Musicians,@elliegoulding,@jamal_andreas @_AndyGrover That headshot tho +05/30/2018,Musicians,@elliegoulding,@YogaWorks it has legit taken me about an hour just to try and book a class online/on the app 😕 still havnt managed to! +05/29/2018,Musicians,@elliegoulding,@nikla_1 Crikey +05/28/2018,Musicians,@elliegoulding,@herminecornish_ Lately I’ve been finishing songs! :) +05/26/2018,Musicians,@elliegoulding,"This is just wonderful, Ireland 💚" +05/26/2018,Musicians,@elliegoulding,RT @CalvinHarris: Spot on https://t.co/B2UcFcCT84 +05/25/2018,Musicians,@elliegoulding,@cattleyaEG I am good! ❤️ +05/25/2018,Musicians,@elliegoulding,RT @AnnieMac: I'm feeling the tension in Ireland all the way over here in London. Sending love and solidarity to all those women and men fe… +05/21/2018,Musicians,@elliegoulding,@HEAVYCR0WN Yes is fake x +05/21/2018,Musicians,@elliegoulding,"RT @dpcarrington: Since the rise of human civilisation, 83% of wild land mammals, 80% of marine mammals and 50% of plants have been lost ht…" +05/21/2018,Musicians,@elliegoulding,"RT @dpcarrington: “I would hope this gives people a perspective on the very dominant role that humanity now plays on Earth,” Prof Ron Milo…" +05/21/2018,Musicians,@elliegoulding,RT @guardian: Human race just 0.01% of all life but has destroyed over 80% of wild mammals – study https://t.co/xNu6DTLr9U +05/17/2018,Musicians,@elliegoulding,"@ellieandbanks Bless you, not long x" +05/17/2018,Musicians,@elliegoulding,"RT @vaughnwallace: Our latest @NatGeo cover is one for the ages + +#PlanetorPlastic https://t.co/NssiHOtaYc" +05/16/2018,Musicians,@elliegoulding,Excited to headline @RockCorpsJapan concert on Sept 1st. Sign up here to earn your ticket! https://t.co/YnNTVzdgTM… https://t.co/5qTcj7UYcH +05/15/2018,Musicians,@elliegoulding,@ThisLully Cheers +05/15/2018,Musicians,@elliegoulding,@ThisLully https://t.co/xidxLFCjj7 +05/13/2018,Musicians,@elliegoulding,@JasminRicard 😘 +05/13/2018,Musicians,@elliegoulding,"RT @elliegoulding: @goulding_eg4 Until I spend the next three years fully immersed in my new music, for now, ain’t nothing wrong with a par…" +05/13/2018,Musicians,@elliegoulding,"@goulding_eg4 Until I spend the next three years fully immersed in my new music, for now, ain’t nothing wrong with… https://t.co/St8gnaKJmb" +05/10/2018,Musicians,@elliegoulding,@getglucky @CalvinHarris U missin London guh +05/09/2018,Musicians,@elliegoulding,@JessicaAlstonxx ❤️ +05/08/2018,Musicians,@elliegoulding,@fieldsofgould 🙂 +05/08/2018,Musicians,@elliegoulding,@goulden_heart Thank you! +05/07/2018,Musicians,@elliegoulding,@DILLONFRANCIS @IntrigueVegas Haha +05/04/2018,Musicians,@elliegoulding,https://t.co/VeGXXhNpGT +05/03/2018,Musicians,@elliegoulding,@leahdarmanin Lyrics!! +05/01/2018,Musicians,@elliegoulding,@CSuonATC :) +05/01/2018,Musicians,@elliegoulding,@salihughes Realising that something switched mentally and physically months after being veggie. I felt much more a… https://t.co/IoOFTrLkkz +05/01/2018,Musicians,@elliegoulding,RT @NosaIsabor: .....keep messing with nature and see what happens https://t.co/z90aWKeqkk +04/25/2018,Musicians,@elliegoulding,RT @karliekloss: Goulden Hour 🌞 cc @elliegoulding https://t.co/vrEbtGX14C +04/24/2018,Musicians,@elliegoulding,"RT @Kwabs: Yo @IvyChelsGarden, at this point you ought to give out some sort of public response to Raye that explains your position undismi…" +04/22/2018,Musicians,@elliegoulding,"RT @UNFCCC: How much do you know about #ClimateChange? https://t.co/GZMa8Y73oc This #EarthDay, take this #climate quiz and get informed abo…" +04/22/2018,Musicians,@elliegoulding,RT @narendramodi: I compliment all those individuals and organisations who are working towards promoting harmony with nature and ensuring s… +04/22/2018,Musicians,@elliegoulding,@Shelter Legends!! +04/22/2018,Musicians,@elliegoulding,Sending good vibes to all the London Marathon runners today. You are brilliant x +04/20/2018,Musicians,@elliegoulding,"Rest easy Avicii, you inspired so many of us. Wish I could have said that to you in person x" +04/20/2018,Musicians,@elliegoulding,No brainer smh https://t.co/3LuOcFALfn +04/20/2018,Musicians,@elliegoulding,"RT @goul_ding: @elliegoulding said ""I need your love I need your time"" + +Well, I say ""I need your fucking new music now"" + +Bye 🐒" +04/19/2018,Musicians,@elliegoulding,@martindavis111 ❤️ +04/18/2018,Musicians,@elliegoulding,@MelissaHooker3 Thank you! +04/18/2018,Musicians,@elliegoulding,I did that! Seemed like a fun idea at the time 🤷🏼‍♀️😷 https://t.co/XjssFlGyIj +04/17/2018,Musicians,@elliegoulding,@SoccerAM @EddieHearn Ha! +04/17/2018,Musicians,@elliegoulding,@grimmers Ha ive had a few grumpy-ish texts saying the same 😬⛈💦🌧🌦 +04/16/2018,Musicians,@elliegoulding,"RT @JonathanBadyal: Great evening at the UK reception for the Commonwealth Forums and Heads of Government meeting 2018. + +Opened by the Duke…" +04/16/2018,Musicians,@elliegoulding,OMFG Gordon https://t.co/y9507jvPPz +04/16/2018,Musicians,@elliegoulding,"RT @tictoc: Buckingham Palace has been transformed into a rainforest, as part of a global conservation initiative led by the @RoyalFamily's…" +04/15/2018,Musicians,@elliegoulding,RT @richardbranson: By 2050 there is going to be more plastic (by weight) than fish in the sea. Learn about this - and more ocean plastic f… +04/15/2018,Musicians,@elliegoulding,These are really good https://t.co/yoyKBJkN40 +04/14/2018,Musicians,@elliegoulding,RT @YeomanMichael: @keyofDom @elliegoulding @timkubart @sesamestreet @bshe Beautiful message for children including my son# earth is the on… +04/14/2018,Musicians,@elliegoulding,Ugh I love you guys so much for GETTING IT xxx https://t.co/XIlPlZL5Hz +04/14/2018,Musicians,@elliegoulding,RT @keyofDom: So excited that this is in the universe. @timkubart and I wrote this song a while back and it's such a dream to hear @elliego… +04/10/2018,Musicians,@elliegoulding,@getglucky @SylviaObell Me on every night out #foreverTired +04/10/2018,Musicians,@elliegoulding,RT @LouieBanks: Hi @instagram you seem to have deleted my account (@louiebanksshoots) and I believe it to be an error. I’d hugely appreciat… +04/10/2018,Musicians,@elliegoulding,"@claraamfo Oh wow, 😔❤️" +04/10/2018,Musicians,@elliegoulding,@hollandnigel @BBCR1 @claraamfo Huh?! +04/07/2018,Musicians,@elliegoulding,@JustinTrudeau ? https://t.co/a4CiYDR6Go +04/07/2018,Musicians,@elliegoulding,@kndrptr 😃 +04/04/2018,Musicians,@elliegoulding,@ConorMcDPhoto @BBCR1 @AnnieMac @benhowardmusic Do you like Ben Howard? I never knew that +04/04/2018,Musicians,@elliegoulding,@foolishm0rtals ❤️❤️❤️ +04/03/2018,Musicians,@elliegoulding,RT @GabrielleAplin: I wish we didn't treat other beings like such shite. Humans and animals. Elephants are so peaceful I hate seeing footag… +04/02/2018,Musicians,@elliegoulding,@cqmerqn The Blaze and George Fitzgerald +04/02/2018,Musicians,@elliegoulding,@Gouldingoddess Really good thank you! ❤️ +04/01/2018,Musicians,@elliegoulding,Wishing everyone a lovely lovely Easter 😊 +04/01/2018,Musicians,@elliegoulding,"Finally watched the fight, congratulations @anthonyfjoshua 🙏🏼 much respect as ever! Why do Brits love to boo so much tho 😑" +03/29/2018,Musicians,@elliegoulding,https://t.co/xsFnJVrq3B +03/27/2018,Musicians,@elliegoulding,"RT @guardian: John Bercow, the Speaker of the House of Commons, tells off foreign secretary Boris Johnson for using 'inappropriate and sexi…" +03/25/2018,Musicians,@elliegoulding,RT @BarackObama: Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading us forw… +03/24/2018,Musicians,@elliegoulding,@Dania_H_ Fair play 😂❤️ +03/23/2018,Musicians,@elliegoulding,RT @sarfow11: the great cake-eating saga on @elliegoulding’s instagram story is pretty much the only thing keeping me going rn. they NEED t… +03/23/2018,Musicians,@elliegoulding,Um.... yeah! https://t.co/LG0zsG1X6y +03/21/2018,Musicians,@elliegoulding,"RT @DesiJV: @elliegoulding What a Dame! Ellie's devotion to inspire, challenge, impact, and change the way our world thinks and works is so…" +03/21/2018,Musicians,@elliegoulding,@shannonn2323 Bless you ❤️ I’ll be back soon x +03/20/2018,Musicians,@elliegoulding,RT @StylistMagazine: . @elliegoulding shares her tiny tips for saving the planet https://t.co/q7HF67gvNj #earthhour #climatechange #plastic… +03/18/2018,Musicians,@elliegoulding,Cool 😑 https://t.co/7l3xzaPuUa +03/18/2018,Musicians,@elliegoulding,Why are you so great Pret https://t.co/SzTp4d7c9t +03/16/2018,Musicians,@elliegoulding,RT @StreetsofL: Thank you to everyone who placed a bid/bought items in our recent eBay auction of signed memorabilia + a big thank you to e… +03/15/2018,Musicians,@elliegoulding,@mccordsbutera 😘 +03/15/2018,Musicians,@elliegoulding,@halcyonsdays Hi 🐶 +03/15/2018,Musicians,@elliegoulding,RT @BronteFarenden: The lovely @elliegoulding doing her thing by sharing this - there’s no reason why we can’t all do our bit to help reduc… +03/15/2018,Musicians,@elliegoulding,RT @Dania_H_: A concept; @elliegoulding in oversized shirts. +03/15/2018,Musicians,@elliegoulding,"RT @paulocoelho: Don't panic +Loneliness, when accepted, is a gift that will lead us to find a purpose in life." +03/15/2018,Musicians,@elliegoulding,Back to the stars for Stephen Hawking 💫 Thank you for your remarkable intelligence and perseverance. As a pioneer i… https://t.co/I8trmLjmBw +03/15/2018,Musicians,@elliegoulding,RT @ConorMcDPhoto: BEN HOWARD JUST POSTED A TEASER VIDEO https://t.co/GCHkJrmp1v +03/14/2018,Musicians,@elliegoulding,@JessicaAlstonxx @Everlast_ Caspar and I are very grateful for the beautiful flowers x +03/13/2018,Musicians,@elliegoulding,@gouldingglitter Have a wonderful birthday ☺️ +03/12/2018,Musicians,@elliegoulding,Impossible burger 😍😍😍😍😍 https://t.co/e3BdSoz3r3 +03/10/2018,Musicians,@elliegoulding,@AAllexl I’m glad!! You should! ❤️ +03/09/2018,Musicians,@elliegoulding,#HappyInternationalWomenDay To the courageous women who paved the way for us to thrive today. To all the hardworkin… https://t.co/2PXge69vcG +03/07/2018,Musicians,@elliegoulding,"We need to act now, World https://t.co/6JsKg1z8hs" +03/06/2018,Musicians,@elliegoulding,RT @jennypackham: Ellie Goulding wearing the Calypso gown from the AW18 Collection to the 2018 Vanity Fair Oscar Party @elliegoulding #jenn… +03/05/2018,Musicians,@elliegoulding,You absolutely smashed it @AndraDayMusic ❤️ #Oscars +03/03/2018,Musicians,@elliegoulding,Happy World Wildlife Day! 🦁💚🌏 https://t.co/N7dKDhWfFv https://t.co/x4GNU8zV0U +03/03/2018,Musicians,@elliegoulding,RT @GlobalGoalsUN: Big cats are under threat but you can do something about it. On #WorldWildlifeDay join a team like @elliegoulding & supp… +03/03/2018,Musicians,@elliegoulding,Ps Am already in LA that was for someone else :) ☔️☔️☔️ +03/02/2018,Musicians,@elliegoulding,@Hanaranah Unfortunately it’s true +03/02/2018,Musicians,@elliegoulding,@Gouldingoddess 💕💕💕 +03/02/2018,Musicians,@elliegoulding,My sister saw comments on @herefordtimes and was upset by it. Not sure why people are so obsessed with criticising.… https://t.co/vOtDJZxe2Q +03/02/2018,Musicians,@elliegoulding,@ellieandbanks ❤️❤️❤️ +03/02/2018,Musicians,@elliegoulding,Epic auction alert for an amazing cause... You are wonderful @StreetsofL x https://t.co/Qt0Ivf0U8y +03/02/2018,Musicians,@elliegoulding,@FrankAnne1 @HTnewsroom This a classically ignorant response. So depressing +03/02/2018,Musicians,@elliegoulding,"Thank you, and yes, that was the aim. I don’t know why Herefordians are always so quick to the negative before the… https://t.co/n1PO5FDSKr" +03/01/2018,Musicians,@elliegoulding,RT @ohmygouldness: @elliegoulding I think I remember seeing that Street Link doesn’t work in Scotland however there are these 2 numbers for… +03/01/2018,Musicians,@elliegoulding,"RT @Tell_StreetLink: If you see rough sleepers out in the snow during daytime hours, please remember that you can use our app to locate the…" +02/28/2018,Musicians,@elliegoulding,RT @UNEP: Are you ready to rise up for people and planet? We're looking for the next Young Champions of the Earth to tackle the world's env… +02/28/2018,Musicians,@elliegoulding,Best album https://t.co/mSNnUVBFAI +02/27/2018,Musicians,@elliegoulding,@djsaraht @Spotify I will make another! 😘 +02/27/2018,Musicians,@elliegoulding,@DarpinoLaura @PanteneUK Will sort x +02/27/2018,Musicians,@elliegoulding,RT @rarohde: The North Pole is warmer than much of Europe right now. https://t.co/7hWpF0EysY +02/26/2018,Musicians,@elliegoulding,@AskTSA Can you DM me? Thanks +02/26/2018,Musicians,@elliegoulding,@TSA @AskTSA Yes!! +02/26/2018,Musicians,@elliegoulding,@AskTSA Is this active?! +02/23/2018,Musicians,@elliegoulding,"RT @lcoynearmet: @elliegoulding covering ‘Vincent’ (aka, one of my top 10 favorite songs EVER) by @donmcleanonline is THE BEST PART OF MY D…" +02/23/2018,Musicians,@elliegoulding,Same difference x https://t.co/u7lgqiP4jw +02/23/2018,Musicians,@elliegoulding,I did not give Marine Le Pen permission to use my song at the CPAC. @MLP_officiel Do not use my music in future. +02/22/2018,Musicians,@elliegoulding,@jackwhitehall Nailed it +02/21/2018,Musicians,@elliegoulding,@ladyhaja I love her +02/21/2018,Musicians,@elliegoulding,"@Aliina57 Please don’t say things like that, I spread love, not “shade” 🤦🏼‍♀️" +02/21/2018,Musicians,@elliegoulding,@ohmygouldness @DineGouldDigger @Nick_Pettigrew I don’t shade. I said what I was told to say. I wouldn’t ever say a… https://t.co/y4KR0I8gQf +02/21/2018,Musicians,@elliegoulding,So so proud to celebrate British Music tonight. Such a fantastic evening... #BRITs #80sB*tch +02/21/2018,Musicians,@elliegoulding,@DineGouldDigger @Nick_Pettigrew Guys like that need a wee punch! Happy to offer! +02/21/2018,Musicians,@elliegoulding,@Nick_Pettigrew Piss off +02/21/2018,Musicians,@elliegoulding,@LaureRoosen Haha 😜😇 +02/21/2018,Musicians,@elliegoulding,@Metro_Ents Haha noooo ❤️ +02/18/2018,Musicians,@elliegoulding,https://t.co/35rA2QpBgr +02/18/2018,Musicians,@elliegoulding,@destiny_lanee What app?! +02/18/2018,Musicians,@elliegoulding,RT @Dania_H_: @elliegoulding uhhh you forgot these https://t.co/XggFOEdBPq +02/18/2018,Musicians,@elliegoulding,https://t.co/XtBKZKTwLn +02/18/2018,Musicians,@elliegoulding,https://t.co/c7KTXhea9T +02/16/2018,Musicians,@elliegoulding,"RT @BBCScienceNews: '100,000 orangutans' killed in 16 years https://t.co/XATqq3yjEs" +02/16/2018,Musicians,@elliegoulding,RT @ClassicJpow: .@elliegoulding’s cover of “Vincent” has been the only thing to keep me sane through all the madness. +02/16/2018,Musicians,@elliegoulding,RT @EllieGWiki: NEWS: Ellie Goulding has now reached 50 MILLION Shazams & is now 1 of the 3 ONLY female artists to reach this milestone alo… +02/15/2018,Musicians,@elliegoulding,@ellieandbanks Yes x +02/15/2018,Musicians,@elliegoulding,RT @BradleyKShelton: @elliegoulding cover of #Vincent by @donmcleanonline is a touching tribute. Ellie’s one of the only artists who cover… +02/14/2018,Musicians,@elliegoulding,"@donmcleanonline Thank you so much Don , that means a lot. No one could ever sing it like you! Please never forget… https://t.co/38SZ00mPaM" +02/14/2018,Musicians,@elliegoulding,RT @donmcleanonline: Hello @elliegoulding... Vincent is not an easy song to sing and you sing it very beautifully. Please know that I am de… +02/14/2018,Musicians,@elliegoulding,"Happy Valentines Day to my incredible fans. Any of you who feel lonely, single or not, I promise you’re not alone,… https://t.co/jgrY3F5Sa8" +02/14/2018,Musicians,@elliegoulding,"My album isn’t ready yet, but for the best fans in the world, here’s my offering for Valentines Day, a tribute to D… https://t.co/SK9qxjVibD" +02/14/2018,Musicians,@elliegoulding,@matheusmaus12 @chrisketley Me! +02/13/2018,Musicians,@elliegoulding,@MandiieeTS13 I’m always up for a @BBCR1 live lounge 🤓 +02/13/2018,Musicians,@elliegoulding,@DarpinoLaura I think I’m allowed a year off festivals :) +02/13/2018,Musicians,@elliegoulding,@LaureRoosen Exactly! ❤️ +02/13/2018,Musicians,@elliegoulding,@cononrwalsh No x +02/13/2018,Musicians,@elliegoulding,❤️ https://t.co/cQIl1i1FCB +02/12/2018,Musicians,@elliegoulding,"RT @RachhLoves: Dear social media apps: +PLEASE STOP MESSING WITH CHRONOLOGICAL ORDER. We live our lives chronologically, so when it jumps a…" +02/11/2018,Musicians,@elliegoulding,RT @TheDweck: Me when I say I’m five minutes away https://t.co/IcL42swdf1 +02/09/2018,Musicians,@elliegoulding,@nikla_1 That’s exactly right +02/07/2018,Musicians,@elliegoulding,RT @benhowardmusic: https://t.co/Fh9p1rWYYn +02/06/2018,Musicians,@elliegoulding,👍🏼👍🏼 @elonmusk https://t.co/gJyEDT3MdN +02/06/2018,Musicians,@elliegoulding,@RobdaBank Ok +02/06/2018,Musicians,@elliegoulding,SICK! https://t.co/pUgchN6vO5 +07/01/2018,Musicians,@IGGYAZALEA,Damn im about to. hold the line. https://t.co/zaP4ckKVPH +07/01/2018,Musicians,@IGGYAZALEA,"at least four times a week i say +""well... they had to sew sandy into her pants on grease! so- "" +in regards to why… https://t.co/hybFvYnUlz" +07/01/2018,Musicians,@IGGYAZALEA,If you consider the fact my life revolved around the movie grease as a child i think everything else really becomes self explanatory. +06/30/2018,Musicians,@IGGYAZALEA,I heard you say that to all the girls. . . +06/30/2018,Musicians,@IGGYAZALEA,https://t.co/HOT02f2bTi +06/29/2018,Musicians,@IGGYAZALEA,RICH BITCHES DONT DIE. +06/29/2018,Musicians,@IGGYAZALEA,ALWAYS. 🥰 https://t.co/UMhw2PY8YA +06/28/2018,Musicians,@IGGYAZALEA,I cant stop looking at it on 'maps' and thinking about all the times i would walk down the streets that are now jus… https://t.co/A4JjVg8f2d +06/28/2018,Musicians,@IGGYAZALEA,RT @SHANE_TMUK_NM4: @IGGYAZALEA Full circle moment. STS is going to be everything. Im so exited!!!!! Love u +06/28/2018,Musicians,@IGGYAZALEA,"awwwww, dream iggy thanks you and so does the real one. https://t.co/SKIK6io1gn" +06/28/2018,Musicians,@IGGYAZALEA,"I literally am fucking SHOOK right now. I just saw the address to somewhere that im going, and its randomly (or may… https://t.co/40iIDECI4S" +06/27/2018,Musicians,@IGGYAZALEA,"Im not going to let anything ruin my good mood or creative happy space im in lately. NOPE! +Im having my fun and im… https://t.co/Y1kahN1Dqk" +06/27/2018,Musicians,@IGGYAZALEA,"""We said modeling"" +I didnt ask for your order. +I didnt even make you a plate. +I'll serve up whatever the fuck i… https://t.co/6DnGKUKaRq" +06/26/2018,Musicians,@IGGYAZALEA,Ughhh you both always kill it. its too muchhhhhhhhh. 😍 https://t.co/np1zLQAduA +06/25/2018,Musicians,@IGGYAZALEA,RT @incufiend: @IGGYAZALEA I’ve legit cried cuz I spilled the ramen noodle seasoning packet. +06/25/2018,Musicians,@IGGYAZALEA,Love you guys. The single artwork says kream because that is the name of the song. i dont know any Norwegian DJs bu… https://t.co/NLJrrT1dzQ +06/25/2018,Musicians,@IGGYAZALEA,LMAO WHY DO I GET SO MAD ABOUT FOOD. CAN YOU RELATE?! https://t.co/VsrKhy7yHM +06/25/2018,Musicians,@IGGYAZALEA,JULY SIX. https://t.co/SN3HaC94jE +06/24/2018,Musicians,@IGGYAZALEA,RT @leflower: I’ll just leave this right here https://t.co/7eypJYPplG +06/24/2018,Musicians,@IGGYAZALEA,@Thee_LoLaMonroe 🧡 +06/24/2018,Musicians,@IGGYAZALEA,"Have a lovely day ladies! lets all be about our business and prosper. +I love you all. 🧡🧡🧡" +06/23/2018,Musicians,@IGGYAZALEA,"A shark in the water, how you found me." +06/23/2018,Musicians,@IGGYAZALEA,@illumedbeauty @JackieA025 @AdanPartida @ROBUARYY ive been battling loosing my voice all week. just worn out +06/23/2018,Musicians,@IGGYAZALEA,"FUCK. +IM LOOKING AT SOME CASTING VIDEOS FOR A VIDEO. +IF YOU ARE A DANCER WHO AUDITIONED, I JUST WANT TO SAY. +YOU… https://t.co/LpZRt9XqKl" +06/22/2018,Musicians,@IGGYAZALEA,JULY SIX. YOU WONT SURVIVE THE SUMMER. https://t.co/ePEnBnEaIL +06/21/2018,Musicians,@IGGYAZALEA,when i bounce it. drop a thousand. while you all talk. an im bout it. https://t.co/M5FfaPfXBf +06/21/2018,Musicians,@IGGYAZALEA,RT @edodb8: I got big fish money he gon’ bite the bait 🦈 https://t.co/tRzthbKkm8 +06/21/2018,Musicians,@IGGYAZALEA,"I was there the day we sung you happy birthday for 6 years sober. +I jumped a random persons fence in my PJs to com… https://t.co/cq6ZEAJltf" +06/21/2018,Musicians,@IGGYAZALEA,"waking up listening to @ddlovato ""sober"". +Im proud of you for having the guts to reveal your truth to the world ag… https://t.co/s46BrJyzcP" +06/20/2018,Musicians,@IGGYAZALEA,"@fondue4kill i be fair, i actually love the design aspect but no, i dont understand much about the functionality so… https://t.co/JTjJjnBDS4" +06/20/2018,Musicians,@IGGYAZALEA,I love.... pipes? i think. https://t.co/7WDOqHtJht +06/20/2018,Musicians,@IGGYAZALEA,"guys are so funny. someone literally just showed me an exhaust and said ""isnt this so cool"" i dunno. is it? im a gi… https://t.co/EngYnmyPYZ" +06/20/2018,Musicians,@IGGYAZALEA,"mom, if your reading this; send mini banana candies to america asap ive eaten them all already from breakfast." +06/20/2018,Musicians,@IGGYAZALEA,RT @THEmale_madonna: @IGGYAZALEA Well alrighty then. Bring on July!!!!!! https://t.co/H88BpDVVyE +06/20/2018,Musicians,@IGGYAZALEA,Anyway just know im really happy and excited but occasionally a lil overwhelmingly nervous - just cause who knows!?… https://t.co/xrDfKTQiae +06/20/2018,Musicians,@IGGYAZALEA,All the less eyebrows a bitch gotta draw on her face anTway. its less stressful. +06/20/2018,Musicians,@IGGYAZALEA,You ever have someone facetime you every call yall have for months; then suddenly only wanna regularly call yo ass… https://t.co/VfamWOcmKU +06/20/2018,Musicians,@IGGYAZALEA,Jurassic park is the first movie i ever watched that made me want to piss my pants. It was great. I wish i could be… https://t.co/GwQce58HwX +06/20/2018,Musicians,@IGGYAZALEA,RT @1D_memoriez: @IGGYAZALEA I feel the same way!!! https://t.co/Q0eSLkGL7s +06/20/2018,Musicians,@IGGYAZALEA,I dont care how many of those movies they make vs. how many of them i end up liking. they can get my money everytim… https://t.co/N0G3hJubZp +06/20/2018,Musicians,@IGGYAZALEA,jurassic park is coming jurrassic park is coming jurasicxdsijcominggggggggg ahhhhhhhhhhhhhhhhhhhhhhhh!!!!!!!!!!! +06/19/2018,Musicians,@IGGYAZALEA,Its not easy when you are fundamentally someone who struggles with depression and anxiety but im hopefull still eve… https://t.co/2lteBgSpSH +06/19/2018,Musicians,@IGGYAZALEA,im getting to the point now where i start to try to foresee the outcome of whats about to happen (an impossible thi… https://t.co/M69zbUyDPN +06/19/2018,Musicians,@IGGYAZALEA,because if it were up to me id be releasing songs at the same rate i post pictures. I really care about music and a… https://t.co/BGy6sReeq0 +06/19/2018,Musicians,@IGGYAZALEA,"and maybe its silly, but it really has been helping me lately to feel more postive and just keep my mind in a creat… https://t.co/Er0mQ0uJ6Y" +06/19/2018,Musicians,@IGGYAZALEA,"Say what you want about me posting pictures on instagram but honestly, +it gives me something else creative i can f… https://t.co/yfR6oQIOnd" +06/19/2018,Musicians,@IGGYAZALEA,Being spoiled spoils life. +06/19/2018,Musicians,@IGGYAZALEA,@jazalean SICK! +06/18/2018,Musicians,@IGGYAZALEA,"Also, unrelated but - im hungry." +06/18/2018,Musicians,@IGGYAZALEA,July 6th is so close yet so far away and i cannot stop thinking about it. +06/13/2018,Musicians,@IGGYAZALEA,I love you! the ULTIMATE SUPREME. https://t.co/pDekL0vPVa +06/12/2018,Musicians,@IGGYAZALEA,RT @IggysUpdates: Help @IGGYAZALEA & @eBay support the LGBTQ+ community by bidding Iggy’s Signed Cheerleading Uniform From BBMAS! All Proce… +06/10/2018,Musicians,@IGGYAZALEA,"@illumedbeauty @XZXIEXN @High_Mayyy @HotThocket @IGGYAZMALEA @Slave4Iggy @kremeclassic iam aware the GP likes ass, yes. lol" +06/10/2018,Musicians,@IGGYAZALEA,Did you know i laughed out loud about 22 times today? I swear to God. +06/09/2018,Musicians,@IGGYAZALEA,"@digitaIfon @fentyshole i did, dont worry." +06/09/2018,Musicians,@IGGYAZALEA,@Adidas_Head88 july 6. 😇 +06/08/2018,Musicians,@IGGYAZALEA,"@rightheresus it means, you can show someone how to help themselves - but sometimes they are so full with their own… https://t.co/eADVYoVLAc" +06/08/2018,Musicians,@IGGYAZALEA,"@DDistortion12 @DUASBOY After, i dont want anything else coming out until my full EP is out July 6th." +06/08/2018,Musicians,@IGGYAZALEA,You can lead a horse to water; but sometimes its already been drinking its own kool aid. +06/08/2018,Musicians,@IGGYAZALEA,"Also - Since i cant seem to speak about anything without being asked - +when is the EP dropping: S.T.S is dropping July 6th. #TheMoreYouKnow" +06/08/2018,Musicians,@IGGYAZALEA,Thankyou for all the birthday wishes yesterday. 🧡 +06/04/2018,Musicians,@IGGYAZALEA,https://t.co/PGXTiFpRuo +06/04/2018,Musicians,@IGGYAZALEA,https://t.co/B4SVTA9GTU +05/20/2018,Musicians,@IGGYAZALEA,"@IggyAzaleaHQ1 oh yeah you cant do that, you gotta keep your eye on it the whole time. shit gets outta hand real fa… https://t.co/XJwtAX3nfP" +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 the timing thing is really the biggest hurdle with it. the brown sugar makes it volatile. +05/20/2018,Musicians,@IGGYAZALEA,I have memories from early childhood of my mother literally running for her life alongside the parade like a crazed… https://t.co/GsvsEJ45s7 +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 yup you did! bring it to boil on medium while you stir and then let it simmer for 4mins on low heat… https://t.co/2AJkslNPxW +05/20/2018,Musicians,@IGGYAZALEA,"If you felt overwhelmed watching your timeline talk about the royal wedding today, imagine how i felt witnessing my… https://t.co/umBeJMYHVO" +05/20/2018,Musicians,@IGGYAZALEA,@IggyAzaleaHQ1 what are they ? +05/19/2018,Musicians,@IGGYAZALEA,https://t.co/xaGRTKuV7v +05/17/2018,Musicians,@IGGYAZALEA,but i say all this to say i met up and spoke to an old friend/creative person i work with last night and we spoke f… https://t.co/i0c6UI2q2P +05/17/2018,Musicians,@IGGYAZALEA,Sometimes i feel a little overwhelmed by how many little pieces i have to get sorted out before i can say music and… https://t.co/plOYYfw1vn +05/17/2018,Musicians,@IGGYAZALEA,"Nonchalant an i kill em +team captain of the villains +they don't wanna see me winning +and i don't wanna see you live bitch" +05/15/2018,Musicians,@IGGYAZALEA,"Yup, I’m gonna take twitters advice... just drink out of cups and chill." +05/15/2018,Musicians,@IGGYAZALEA,"I really think I hurt my hand, it’s been a week and I still can’t open a bottle or water with it. I hate going to t… https://t.co/gXf53wLxVx" +05/14/2018,Musicians,@IGGYAZALEA,How to break an addiction. Decide to live. +05/14/2018,Musicians,@IGGYAZALEA,RT @newsdistortion: @IGGYAZALEA f*** me https://t.co/WuWIGR8JJC +05/14/2018,Musicians,@IGGYAZALEA,@ricktrbl @lggysBae I literally am but okay.... +05/13/2018,Musicians,@IGGYAZALEA,"27. Is where it’s at. +Just... tell them you’re sunburnt 🤔 https://t.co/5W3b2Wzvc7" +05/13/2018,Musicians,@IGGYAZALEA,Ambition & Hyperfemininity +05/12/2018,Musicians,@IGGYAZALEA,"@youllneverknow Ahhh no, it’s not. It’s love. +I think it’s “delete it fat” “she made some points” “I don’t know h… https://t.co/JtJVW3292w" +05/12/2018,Musicians,@IGGYAZALEA,@SWEETENER_18 😂😂😂 too funny. 💜 +05/12/2018,Musicians,@IGGYAZALEA,If they called me at 5am in the rain I would put my slippers on and go to the studio- even if they got wet. https://t.co/hcFbuyMOXa +05/12/2018,Musicians,@IGGYAZALEA,Hey @Meghan_Trainor you looked beautiful yesterday 💜 +05/11/2018,Musicians,@IGGYAZALEA,"Whelp, just watched wild wild country on Netflix and i finally know what was up with my neighbors as a child. lol. random." +05/10/2018,Musicians,@IGGYAZALEA,Whilst also doing normal shit that feels natural so as not to become an Android. +05/10/2018,Musicians,@IGGYAZALEA,I’m just tryna live my private life as privateLY as possible. +05/09/2018,Musicians,@IGGYAZALEA,@HausOfIggz @thynewcIassic i tweeted it weeks ago. 🤣 you know i love to tweet and delete! +05/09/2018,Musicians,@IGGYAZALEA,"Do you ever see your friend online and youre like... +thats some really great advice, but i happen to know your per… https://t.co/uJnKJKg5q6" +05/07/2018,Musicians,@IGGYAZALEA,@hourgIassfigure I’m getting ready to go out but watching until I have to leave +05/07/2018,Musicians,@IGGYAZALEA,"Jasmine sanders is fucking doing IT people! I am getting my life! That fabric, the hair!" +05/07/2018,Musicians,@IGGYAZALEA,"Grey smoke bellowing back... +Are we on fire?" +05/06/2018,Musicians,@IGGYAZALEA,@outfagged A concept! +05/06/2018,Musicians,@IGGYAZALEA,@lustforlfie @britneyspears I was never not on good terms. The internet tried to make a beef that never existed and I truly mean that. +05/06/2018,Musicians,@IGGYAZALEA,RT @mxchxen: @IGGYAZALEA Me after fucking things up +05/06/2018,Musicians,@IGGYAZALEA,RT @levels_player: @IGGYAZALEA A scientist. What’s your favorite area to experiment sis +05/06/2018,Musicians,@IGGYAZALEA,I only make poor life choices as experiments. I swear. +05/05/2018,Musicians,@IGGYAZALEA,@lustforlfie @britneyspears Bitch can dream. I still Stan. +05/05/2018,Musicians,@IGGYAZALEA,"I’m going skating on Monday and I’ve already decided that yes, a 40 inch wig is entirely appropriate for the occasion." +05/05/2018,Musicians,@IGGYAZALEA,@CupcakKe_rapper @JDudleyRowe Thicka than a Strippa but if she clap it ima tip ha 🗽 +05/04/2018,Musicians,@IGGYAZALEA,"@itsBrandonLamar Yes, June 7. And yes, I’m a serial killer." +05/04/2018,Musicians,@IGGYAZALEA,Hmmmmm? Could be great. I like the energy. https://t.co/xqk8ivApvy +05/04/2018,Musicians,@IGGYAZALEA,@rachelpage_ She looks preppy & organized. https://t.co/yKyBuROQtN +05/04/2018,Musicians,@IGGYAZALEA,@rachelpage_ No but I see you have a dog & I don’t know if they’re already employed but one of my dogs needs an ass… https://t.co/tYLNAj8OY6 +05/04/2018,Musicians,@IGGYAZALEA,"It’s May, which means it’s almost June... which means it’s practically Halloween & Everyone needs to start planning… https://t.co/Vxx4yEdWsv" +05/04/2018,Musicians,@IGGYAZALEA,RT @Phoenix_Stone09: This era Iggy is coming for blood https://t.co/obhrEUyRmm +05/03/2018,Musicians,@IGGYAZALEA,RT @silizzzle: @IGGYAZALEA GANGANG +05/03/2018,Musicians,@IGGYAZALEA,"RT @Shazam: Beauty, brains and talent 👉 @IGGYAZALEA https://t.co/SUueIx6drp" +05/01/2018,Musicians,@IGGYAZALEA,I feel my energy really coming back these days. +05/01/2018,Musicians,@IGGYAZALEA,"no exaggeration, the only thing I love more than doing my own thing... is helping girls I believe in do theirs. I j… https://t.co/YrqNMQXaZV" +04/30/2018,Musicians,@IGGYAZALEA,In other news I’m in the mood for tacos. +04/30/2018,Musicians,@IGGYAZALEA,I’m not judging I’m just watching. +04/30/2018,Musicians,@IGGYAZALEA,@PettyJBlige 😩🙂 +04/30/2018,Musicians,@IGGYAZALEA,@PettyJBlige Girl that’s just called being a picky eater 😝 +04/30/2018,Musicians,@IGGYAZALEA,Iam an endless fountain of vagina metaphors and punchlines. +04/30/2018,Musicians,@IGGYAZALEA,"Let me feel myself, yeah daddy know im cocky." +04/29/2018,Musicians,@IGGYAZALEA,"reasons to believe +dont feel like reasons at all +love i lie in the dark +light me up when you call" +04/28/2018,Musicians,@IGGYAZALEA,"If you betray anothers trust & good faith in order for us to share a secret. +The only secret I’m actually burdened… https://t.co/tWWhBe3QPd" +04/28/2018,Musicians,@IGGYAZALEA,I cannot come to grips with the fact my finger nail is entirely gone. https://t.co/bCgw6V2XLz +04/28/2018,Musicians,@IGGYAZALEA,RT @jurai: @IGGYAZALEA bad feels +04/28/2018,Musicians,@IGGYAZALEA,When you stop texting each other goodnight it’s... +04/27/2018,Musicians,@IGGYAZALEA,60% of my thoughts are pure smut. +04/27/2018,Musicians,@IGGYAZALEA,"control is safe + +but + +love is not control + +Love is + +200mph on the freeway with the door open and no seatbelts." +04/27/2018,Musicians,@IGGYAZALEA,I’m still looking for you. +04/26/2018,Musicians,@IGGYAZALEA,RT @igorehaofficial: @IGGYAZALEA https://t.co/gRfLRIhImV +04/26/2018,Musicians,@IGGYAZALEA,Profound +04/26/2018,Musicians,@IGGYAZALEA,"I have so many introspective things I’d like to lament on when it comes to men... + +But since this is Twitter & it’… https://t.co/K25zeOzeaQ" +04/22/2018,Musicians,@IGGYAZALEA,RT @slaylikeiggy: @IGGYAZALEA you're literally an insane person im ctfu this is pure gold 😂💕 +04/22/2018,Musicians,@IGGYAZALEA,"Happiness is having something to look forward to. + +And that’s it." +04/21/2018,Musicians,@IGGYAZALEA,I live in seasons that refuse to change. +04/20/2018,Musicians,@IGGYAZALEA,I know it’s still April but I just booked my birthday vacation and I’m already OD excited. Haha. +04/20/2018,Musicians,@IGGYAZALEA,"@callieazalean @ositopapasito I love you but please, I’m not giving updates on social media about my project. Thanks 🙏" +04/20/2018,Musicians,@IGGYAZALEA,"@ItsVonTae Thanks man & I agree. +Never force your pen." +04/20/2018,Musicians,@IGGYAZALEA,"The reason we have polarizing personas making up larger artistic generations is to create balance. + +Everyone shoul… https://t.co/EhnXPibBP3" +04/20/2018,Musicians,@IGGYAZALEA,@killianwjackson 😂 https://t.co/TT8V2RjOnp +04/19/2018,Musicians,@IGGYAZALEA,"I said all this to say: + +If anyone needs a freelance writer to do a think piece on chicken nuggets - + +Im available." +04/19/2018,Musicians,@IGGYAZALEA,"RULE OF THUMB + +If youre speaking about it with friends at home, you MAY care. + +If youre talking about it on your s… https://t.co/e7Pj8V8djg" +04/19/2018,Musicians,@IGGYAZALEA,@Str8witGayTaste I believe in confirmation bias +04/19/2018,Musicians,@IGGYAZALEA,Time to make a mood board. +04/19/2018,Musicians,@IGGYAZALEA,My house keeper filmed it & made me make a wish on it. She seemed sure it was scientifically valid. https://t.co/R4UrhPudJs +04/19/2018,Musicians,@IGGYAZALEA,There was a humming bird in my house today. I’m going to have good luck. Can’t tell me shit all week! Lol. +04/19/2018,Musicians,@IGGYAZALEA,RT @SARATONlN: yes https://t.co/wJZp3cbZ8w +04/15/2018,Musicians,@IGGYAZALEA,Okay now tory 🙏🙂 https://t.co/hEG6OaFswl +04/15/2018,Musicians,@IGGYAZALEA,I don’t think I’ll ever see a better show then the one I just watched Beyonce perform tonight. Iam shaken to my bones. +04/12/2018,Musicians,@IGGYAZALEA,@thynewclassic Truuuuuueeee +04/12/2018,Musicians,@IGGYAZALEA,@soares_mateus00 @iggzrey @itsiggyiggzz @ElizeuGomez9 @FranciscoAzalea @pussypowerglory @jaygoodie_ Okay +04/12/2018,Musicians,@IGGYAZALEA,@iggzrey @itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ Yup +04/12/2018,Musicians,@IGGYAZALEA,@7teenmilli @itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ 28 +04/12/2018,Musicians,@IGGYAZALEA,@itsiggyiggzz @ElizeuGomez9 @soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ https://t.co/p5melVerEd +04/12/2018,Musicians,@IGGYAZALEA,@itsiggyiggzz Lmao 😆 you crazy 14! +04/12/2018,Musicians,@IGGYAZALEA,@IggyPty @igorehaofficial @thenewwclassic @nicocarciochi Okay 👌 +04/12/2018,Musicians,@IGGYAZALEA,@soares_mateus00 @FranciscoAzalea @pussypowerglory @jaygoodie_ No I’ve been on a meal plan this week although they… https://t.co/CdAKVRdHE8 +04/12/2018,Musicians,@IGGYAZALEA,@igorehaofficial @thenewwclassic @nicocarciochi 31 +04/12/2018,Musicians,@IGGYAZALEA,@pussypowerglory @bangerzantii @jaygoodie_ Lmao +04/12/2018,Musicians,@IGGYAZALEA,@Riguistan @thenewwclassic @nicocarciochi 22 +04/12/2018,Musicians,@IGGYAZALEA,@thenewwclassic @nicocarciochi Hey 46! +04/12/2018,Musicians,@IGGYAZALEA,"@iggzrey @nicocarciochi Yes, it’s on iTunes ! Ha!" +04/12/2018,Musicians,@IGGYAZALEA,"@nicocarciochi No not yet, but I read the book so that has to count for something. +I don’t go to the movies much I… https://t.co/6fumnL26Hk" +04/12/2018,Musicians,@IGGYAZALEA,@azillions I love talking about my vagina and pizza on the Internet with everyone but you know what I mean... there’s levels. +04/12/2018,Musicians,@IGGYAZALEA,"@LotteLDN That’s true! Success is dealing with rejection, it’s part of it. I was more so referring to people ie. lo… https://t.co/B2YhBOzRk0" +04/12/2018,Musicians,@IGGYAZALEA,@LaKreme2LaKreme Totally!!!! Pride is crazy. +04/12/2018,Musicians,@IGGYAZALEA,"Rejection is such a funny emotion. +It’ll trick you into feeling sad you didn’t walk away with something you never wanted anyway." +04/09/2018,Musicians,@IGGYAZALEA,I wish I could keep you safe. +04/09/2018,Musicians,@IGGYAZALEA,"@SurvivingDevone Just because I cut my hair doesn’t mean I won’t still slay a wig etc etc. +this is just what I’m d… https://t.co/DZQU6X0e2Z" +04/08/2018,Musicians,@IGGYAZALEA,"@mxchxen @SummerSurvival @iggyoutsold If you can’t laugh at yourself then life will be long and hard. I promise you, it’s all love." +04/08/2018,Musicians,@IGGYAZALEA,@SummerSurvival @iggyoutsold Why do y’all care so much? I think it’s extremely funny or I wouldn’t have made the jo… https://t.co/nVRbdKoHOK +04/07/2018,Musicians,@IGGYAZALEA,"RT @CaMidStateFair: JUST ANNOUNCED: Demi Lovato, with special guest Iggy Azalea, to perform at the #MidStateFair | JULY 22 | Tickets on sal…" +04/05/2018,Musicians,@IGGYAZALEA,@MoBounceDD @biblical_dildo they have to come to me naturally i cant force them. +04/05/2018,Musicians,@IGGYAZALEA,@biblical_dildo i really think you should its literally the best thing ive thought of in days. +04/05/2018,Musicians,@IGGYAZALEA,@digitalfon biblical_dildo +04/04/2018,Musicians,@IGGYAZALEA,"@DropNM4Nicki @thynewclassic Anddddd that’s why I fuck with you. +If you like something listen, if ya don’t? All good! +It’s logical." +04/04/2018,Musicians,@IGGYAZALEA,@nphucas This is exactly my feelings every time I log on and see “what you need to do is......” like can we please.… https://t.co/5Zd28louQt +04/04/2018,Musicians,@IGGYAZALEA,@nphucas Lmao well I love all 60 of you; I just want to come online and have fun conversations with you guys. I don… https://t.co/GcBLpH0WhR +04/03/2018,Musicians,@IGGYAZALEA,"Im on a meal plan and they really cut up a grilled chicken breast and named it ""chicken tenders"" i - + +im not cut out for this life!" +04/03/2018,Musicians,@IGGYAZALEA,@stainediggy @thynewclassic Iam so sick of these pap drones. its out of control. +04/02/2018,Musicians,@IGGYAZALEA,"@IggyPty @wdangst Yes, but the topic at hand isnt ""do you agree or disagree with non-traditional relationship dynam… https://t.co/msJjBZmbxF" +04/02/2018,Musicians,@IGGYAZALEA,@wdangst Im talking about love and sexuality in 2018; not my ex boyfriends. +04/02/2018,Musicians,@IGGYAZALEA,"@Budah96 Totally agree, i just think its funny so see so many conversations about gender and sexuality but not as m… https://t.co/BLeum9bjIf" +04/02/2018,Musicians,@IGGYAZALEA,@Azaleans_Israel I think thats an unfair thing to say. For me; its not something im personally open to in my relati… https://t.co/iHwZlAuPAI +04/02/2018,Musicians,@IGGYAZALEA,@SurvivingDevone no i order candy bars on there! +04/02/2018,Musicians,@IGGYAZALEA,@SurvivingDevone nothing +04/02/2018,Musicians,@IGGYAZALEA,"@IGGYAZMALEA yes, and you wont." +04/01/2018,Musicians,@IGGYAZALEA,"emotional co-dependancy is literally the scariest thing of all time. +Aliens could beam me into their space ship and id be less afraid." +03/31/2018,Musicians,@IGGYAZALEA,@CupcakKe_rapper @MiamiHooookah let your clit do the talking for you sis. +03/31/2018,Musicians,@IGGYAZALEA,@lcslanzzani these are not song lyrics... you're not in any danger of lack of surprise. 🙂 +03/31/2018,Musicians,@IGGYAZALEA,SAME. HELP?! https://t.co/TIe1ejEVXe +03/31/2018,Musicians,@IGGYAZALEA,RT @beccajj: @IGGYAZALEA https://t.co/TWqjWqKvid +03/31/2018,Musicians,@IGGYAZALEA,"I have legitimately drunk at least 8 bottles of water today. +Iam a fish." +03/30/2018,Musicians,@IGGYAZALEA,@IggysSaviors @AzaleaKingdom @ddlovato @KeshaRose @QuavoStuntin to clarify the qauestion asked was 'who has persona… https://t.co/yKC0a10lxt +03/30/2018,Musicians,@IGGYAZALEA,"@jasonlipshutz I really appreciate that you were fair to me, you gave me a voice and a chance to show i'm just human. Thanks Jason." +03/30/2018,Musicians,@IGGYAZALEA,Hey @MileyCyrus just wanted to say that im in completely love with your pink hair in these easter pics!!!! 😍 +03/30/2018,Musicians,@IGGYAZALEA,@ussefm @vulture IM GREAT ! 😊 +03/30/2018,Musicians,@IGGYAZALEA,"@vulture Its was because i suffered from depression, and im only writing this to you because you may be unaware but… https://t.co/EF4Oi0Q9U5" +03/29/2018,Musicians,@IGGYAZALEA,"big phantom grill, cook the streets like hibachi" +03/23/2018,Musicians,@IGGYAZALEA,NYC BTS Part 2. https://t.co/p9t0PcWr41 +03/23/2018,Musicians,@IGGYAZALEA,NYC BTS Part 1. https://t.co/LvFOhUthwM +03/23/2018,Musicians,@IGGYAZALEA,Im sorry Ale. But this is going public. https://t.co/I5m4ByD03G +03/23/2018,Musicians,@IGGYAZALEA,Probably a little too soon. https://t.co/WA3eBej98b +06/26/2018,Musicians,@TinieTempah,Nigeria vs Argentina tonight woooii +06/26/2018,Musicians,@TinieTempah,RT @Shaneduncan_: This is Peckham is out now / https://t.co/MnPG3KmebK https://t.co/DhC7Ivu1XB +06/25/2018,Musicians,@TinieTempah,Who’s Josh and how did he get into my wardrobe?? 🤔😂 +06/18/2018,Musicians,@TinieTempah,YES ENGLAND!!!!!!!!!!!!!! +06/13/2018,Musicians,@TinieTempah,TONIGHT! ⚡️ @ushuaiaibiza https://t.co/ILilxshmiW +06/13/2018,Musicians,@TinieTempah,Yesterday at the What We Wear ‘HAT TRICK’ Spring/Summer 19 Runway show in London. Love to everyone who came out to… https://t.co/ReqT1yWraG +06/12/2018,Musicians,@TinieTempah,What We Wear Spring/Summer 19 HAT-TRICK ⚽️ Many thanks to @Dailypaper_ & @FillingPieces on the collab runway music… https://t.co/xK5k5baYDW +06/10/2018,Musicians,@TinieTempah,LOND0N FASHI0N WEEK!!! @whatwewear__ M0NDAY 5PM!!!!!!! +06/10/2018,Musicians,@TinieTempah,Money heist on Netflix has got me moving like a squatter that don’t wanna leave the house. +06/06/2018,Musicians,@TinieTempah,Praise the Lord mama raised me right. Disturbing Ibiza opening party tonight! +05/28/2018,Musicians,@TinieTempah,Big up that guy from Mali that did the impossible in Paris the other day. I thought I was fit boy. +05/07/2018,Musicians,@TinieTempah,"RT @JmeBBK: CHILDISH GAMBINO + +https://t.co/Hzq29apjJS" +05/04/2018,Musicians,@TinieTempah,Minds clearer than ever. Heart’s purer than ever. +04/28/2018,Musicians,@TinieTempah,I miss @SIRSPYRO https://t.co/cDSJgEbBSc +04/28/2018,Musicians,@TinieTempah,"RT @HardyCaprio: Hardy Caprio - Naij +https://t.co/kV9efpsy8L + +warming up https://t.co/Mkb4xLb732" +04/24/2018,Musicians,@TinieTempah,Maybach SUV 😩🤤 +04/19/2018,Musicians,@TinieTempah,This is too sick bro @Dynamomagician https://t.co/MTSTEAAKcy +04/19/2018,Musicians,@TinieTempah,Watched Caroline or change at the Hampstead Theatre last night. Everyone needs to go watch it! +04/06/2018,Musicians,@TinieTempah,https://t.co/pq1otSPLWF https://t.co/KlfxMZgu2f +04/05/2018,Musicians,@TinieTempah,RT @BritishGQ: An exclusive first look at @tinietempah new @whatwewear__ collection. https://t.co/FQJTZxfieT +04/05/2018,Musicians,@TinieTempah,"48 people murdered in London already in 2018. My heart goes out to all their families and to the youts, don’t waste… https://t.co/jn9OfSxa1x" +03/27/2018,Musicians,@TinieTempah,"Shudda been on my way to Hong Kong for @ArtBasel right now, I know it’s gonna be so sick" +03/26/2018,Musicians,@TinieTempah,🔥🔥🔥🔥🔥 https://t.co/MzkBe3aKTA +03/17/2018,Musicians,@TinieTempah,Happy St Patrick’s Day. 🙏🏾🍀🇳🇬🇮🇪 +03/16/2018,Musicians,@TinieTempah,"RT @yxngbane: Out now!!! I need every1 to go crazy wit it! #Vroom we go again!! + +https://t.co/AjnyHiEEmp + +❤💎💫 https://t.co/Rb1c9dGgeg" +03/16/2018,Musicians,@TinieTempah,RT @wizkidayo: Smash on smash on smash!🔥🔥 +03/15/2018,Musicians,@TinieTempah,DXB!!!! 🇦🇪 +03/15/2018,Musicians,@TinieTempah,RT @Not3sofficial: NEW MUSIC VIDEO ALERT 🚨 Out In A Piece... Myself ft @MaleekBerry- SIT BACK DOWN 🤙🏾 More Tunes Out Soon https://t.co/NUxN… +03/14/2018,Musicians,@TinieTempah,RT @MusicWeek: 'It's like a brand new day': Tinie Tempah's hopes for the next generation of UK rap stars https://t.co/KvXmTQckO8 [📷 @paul_h… +03/12/2018,Musicians,@TinieTempah,In the flesh. https://t.co/ihzncPFCoO +03/12/2018,Musicians,@TinieTempah,God has blessed me and my family abundantly. All praise to the most high +03/05/2018,Musicians,@TinieTempah,RT @1crazysingh: Last week we were honoured to be asked by @TinieTempah to support the ww.wear pop up store at… https://t.co/yPk0jRjk0s +03/05/2018,Musicians,@TinieTempah,RT @Not3sofficial: The internet misleads the blind and the sheep 🐑 +03/02/2018,Musicians,@TinieTempah,RT @Drilloski_hs: Loski - cool kid Out now 🌪🌪 https://t.co/PGLuh8k3VX https://t.co/NLxugKc6cs +03/01/2018,Musicians,@TinieTempah,A2 sold out KOKO tonight yo!!! @A2Artist 👏🏾💪🏾 +03/01/2018,Musicians,@TinieTempah,"RT @BritishGQ: Model, activist and businesswoman @NaomiCampbell and breakthrough grime artist @Skepta talk race, sex, love and black power…" +03/01/2018,Musicians,@TinieTempah,"RT @Santandave1: 465,000 in a day. Thank you all for my most viewed video in 24 hours." +02/27/2018,Musicians,@TinieTempah,RT @Santandave1: Dave- Hangman Out Now https://t.co/MYtEvbVE7M +02/26/2018,Musicians,@TinieTempah,Save the date. 28/02/18 @whatwewear__ https://t.co/KyF4bc4D9l +02/22/2018,Musicians,@TinieTempah,"RT @HardyCaprio: First release of the year... + +Hardy Caprio - Rapper + +cc: @CallMeTheKidd @YomsTV + +https://t.co/7ul1AVf1QW https://t.co/L8…" +02/22/2018,Musicians,@TinieTempah,"RT @Not3sofficial: April 17th is My Birthday and The London date to my tour in KOKO, Camden. For the sake of the pain my mum went through o…" +02/21/2018,Musicians,@TinieTempah,@TheNotoriousMMA @mcgregorsfast 🤣🤣🤣 +02/21/2018,Musicians,@TinieTempah,RiRis 30!! Time flies when you’re enjoying life.. birthday blessings! @rihanna +02/20/2018,Musicians,@TinieTempah,"Growing up I didn’t see many films where the protagonists were the same skin tone as me especially, a super hero mo… https://t.co/K09NdUK6KG" +02/17/2018,Musicians,@TinieTempah,Manchester tonight! Eubank Jr Vs Groves 💥 +02/08/2018,Musicians,@TinieTempah,Shed your skin +02/04/2018,Musicians,@TinieTempah,Spoke too soon. +02/03/2018,Musicians,@TinieTempah,Emirates is levels man. Some of these other airlines need to step their game up..quickly! +02/02/2018,Musicians,@TinieTempah,Robo ske ske robo ske ske +02/02/2018,Musicians,@TinieTempah,🏆 https://t.co/O5e35033xV +02/02/2018,Musicians,@TinieTempah,RT @BigTobzsf: #StillWinning out right now ! https://t.co/Fzmoq6i0wj https://t.co/vxvLbcMwcL +02/02/2018,Musicians,@TinieTempah,Dubai we back!!!! Disturbing Dubai tonight!!! @whitedubaiclub https://t.co/3YeMtCtriA +01/28/2018,Musicians,@TinieTempah,You shudda said Hi 👋🏾 🤣 https://t.co/ziKn4Sz4b9 +01/26/2018,Musicians,@TinieTempah,RT @Not3sofficial: I JUST GOT THE CALL......SOLD OUT TOUR IN 15 MINUTES 😩 +01/23/2018,Musicians,@TinieTempah,RT @Not3sofficial: Proud to announce my second headline UK tour!! Tickets on sale from Friday at 10am 💥https://t.co/76Fy3Pz3tT 🤘🏾3️⃣ https:… +01/23/2018,Musicians,@TinieTempah,I need to start watching stranger things them little kids are everywhere! +01/22/2018,Musicians,@TinieTempah,You like that song by Yxng Bane & Kojo so I wrote a tune for you.. +01/20/2018,Musicians,@TinieTempah,Paris. +01/15/2018,Musicians,@TinieTempah,Wet January. +01/13/2018,Musicians,@TinieTempah,.@dolcegabbana Live Stream Now. +01/08/2018,Musicians,@TinieTempah,💛 https://t.co/w7dxv3kJp5 +01/08/2018,Musicians,@TinieTempah,"RT @whatwewear__: LOOK 1, 2, 3, 4 #AW18 #REALWORLD #WHATWEWEAR https://t.co/6H3RqlDkJQ" +01/04/2018,Musicians,@TinieTempah,Casting! @whatwewear__ +01/01/2018,Musicians,@TinieTempah,Back to the future! +12/31/2017,Musicians,@TinieTempah,Stepping into 2018 like.. https://t.co/AT5B5X9Sld +12/31/2017,Musicians,@TinieTempah,"RT @Not3sofficial: Not3s X Mabel - My Lover Remix Video Out Now 3️⃣💯💪🏾 +https://t.co/wL0XXh1YNz" +12/27/2017,Musicians,@TinieTempah,"RT @MayorofLondon: As a proud feminist at City Hall, I’m committed to taking real action to tackle gender inequality in London in 2018 - an…" +12/26/2017,Musicians,@TinieTempah,Happy Boxing Day from Barbados! X +12/25/2017,Musicians,@TinieTempah,Merry Christmas to all the fans. R.I.P to my dear friend Daniele. +12/21/2017,Musicians,@TinieTempah,Time flies on instagram boy. +12/17/2017,Musicians,@TinieTempah,This Bangs! ❄️❄️❄️ https://t.co/XKCVvFotLc @Official_Romzy +12/15/2017,Musicians,@TinieTempah,"RT @SpotifyUK: Forever is the new track by @sigmahq, feat. @QuavoStuntin, @TinieTempah, @yxngbane, & @SebastianKole. +Listen now. +https://t.…" +12/15/2017,Musicians,@TinieTempah,.@fredo @Not3sofficial ❄️❄️❄️❄️ https://t.co/nLtvFhayq1 +12/13/2017,Musicians,@TinieTempah,Ed Sheeran has clocked the game. Eminem and B in the same month. Madness. ✅✅✅ +12/13/2017,Musicians,@TinieTempah,Put God first. +12/13/2017,Musicians,@TinieTempah,RT @complex_uk: Not3s (@Not3sofficial) is up next: https://t.co/o7oT63SiY1 https://t.co/EjmJxhGxo5 +12/11/2017,Musicians,@TinieTempah,I’m hungry. +12/10/2017,Musicians,@TinieTempah,Ice cream in the snow ❄️❄️❄️ +12/08/2017,Musicians,@TinieTempah,RT @BritishGQ: Take style cues from @TinieTempah and don a shearling coat to stay warm and dapper at your black tie Christmas events. https… +12/07/2017,Musicians,@TinieTempah,"RT @donaeo: You can watch my new video “My Team” now +Click Here : https://t.co/DaxE2XE2D1 https://t.co/a9VtdJjSQ5" +12/07/2017,Musicians,@TinieTempah,Available Everywhere @JBLaudio ⚡️ https://t.co/gxylnytnSo +12/07/2017,Musicians,@TinieTempah,https://t.co/nw7GmLYIvj 🎁 +12/05/2017,Musicians,@TinieTempah,Great day raising money @ICAPCharityDay supporting @centrepointuk and homeless young people in the UK 🇬🇧 https://t.co/7af9F99hWR +12/05/2017,Musicians,@TinieTempah,"RT @Burberry: .@Stormzy1 dressed in a @Burberry tuxedo with @TinieTempah in @Burberry Tartan trousers, outerwear and Topstitched Derby shoe…" +12/03/2017,Musicians,@TinieTempah,Disturbing Manchester. 🚨 2/12/17 @Not3sofficial @DanielSturridge @Gfrsh @BigTobzsf https://t.co/wwTlt7aXCw +11/29/2017,Musicians,@TinieTempah,Good luck to everyone at the @MOBOAwards tonight! +11/28/2017,Musicians,@TinieTempah,Maybach 😍😍😍 @MercedesBenzUK +11/28/2017,Musicians,@TinieTempah,RT @DisturbingLDN: Big congratulations to @yxngbane for being listed on the official @bbcmusic #Soundof2018 longlist. This is only the star… +11/28/2017,Musicians,@TinieTempah,RT @JmeBBK: Stunting on your headteacher. +11/27/2017,Musicians,@TinieTempah,Try to live the kind of life someone might wanna make a movie about one day. Make your mark. +11/25/2017,Musicians,@TinieTempah,🙌🏾🙌🏾🙌🏾 https://t.co/ipPhWxUMTT +11/24/2017,Musicians,@TinieTempah,Happy Thanksgiving American family. +11/23/2017,Musicians,@TinieTempah,New drop tomorrow. https://t.co/nw7GmLYIvj @whatwewear__ https://t.co/NKB34q6q6L +11/23/2017,Musicians,@TinieTempah,👏🏾🙏🏾❤️ https://t.co/hNE5nxzhWA +11/21/2017,Musicians,@TinieTempah,RT @Fahim__k: No Drama is a pure banger 💪@iAmShakka @Not3sofficial @TinieTempah +11/20/2017,Musicians,@TinieTempah,Congrats @NiallOfficial on winning an American Music Award. 💪🏾🇬🇧 +11/19/2017,Musicians,@TinieTempah,"RT @FuseODG: Boa Me Official Video OUT NOW + +https://t.co/INyVYvR5T2 + +Watch, Enjoy and Share 🙏 + +@edsheeran +@mugeezxmugeez +@killbeatz + +#Ne…" +11/17/2017,Musicians,@TinieTempah,Let’s go my G! 👑🙏🏾💪🏾 @Not3sofficial 📝📝📝 #TAKENOT3S https://t.co/2bB6Tv4EcO +11/14/2017,Musicians,@TinieTempah,New Joint from my bro. @Reblah_Artist https://t.co/Jxx47URbeB +11/14/2017,Musicians,@TinieTempah,"RT @TheBugzyMalone: Man like Big Shaq in the 0161 🔥 +Watch full video >>> https://t.co/54PYN2nJ3Q @MichaelDapaah https://t.co/po4JhSn9S3" +11/13/2017,Musicians,@TinieTempah,I got four hours to kill in Trindad and Tobago. Where the roti spots at? +11/13/2017,Musicians,@TinieTempah,Santiago has been vibey. +11/12/2017,Musicians,@TinieTempah,RT @AlexAdeosun: Always good to have little victories that let you know you’re making progress! Catch myself alongside @Leomie_Anderson and… +11/12/2017,Musicians,@TinieTempah,💥 https://t.co/MvVk1z8g9j +11/11/2017,Musicians,@TinieTempah,The other night at @IkoyiLondon 💉❤️ https://t.co/r8IZlIHUll +11/10/2017,Musicians,@TinieTempah,RT @officialAvelino: Proud 2 present the 'No Bullshit' the playlist. I put my heart & soul into this shit & it made gr8ness. 1 Love https:/… +11/10/2017,Musicians,@TinieTempah,"RT @yxngbane: HBK D.TOUR|@yxngbane x @dopechef collab tee dropping Monday 13th November 8PM on https://t.co/hxXmlo88J7 + +In Distressed Or Re…" +11/05/2017,Musicians,@TinieTempah,My lil bro just hit another MILLION views with 'My Lover' @Not3sofficial 👏🏾 https://t.co/vap4uokcXa +11/03/2017,Musicians,@TinieTempah,RT @Santandave1: Super happy to say Game Over is finally out. Listen to it here. https://t.co/jPTk11wnkq +11/03/2017,Musicians,@TinieTempah,You've gotta give it to the guy. Hats off to you man. Definitely one for the book collection. https://t.co/WIvt8kcUxU +11/02/2017,Musicians,@TinieTempah,"'If I hit it one time Ima pipe her, if it hit it two times then I like her..'" +10/31/2017,Musicians,@TinieTempah,Working towards that Billion. https://t.co/2OGPTKK29J +10/31/2017,Musicians,@TinieTempah,Man like Oluwatobi! @BigTobzsf https://t.co/CLbDx9kC9F +10/27/2017,Musicians,@TinieTempah,It wasn't me. https://t.co/ZoY0Jn3xYT +10/27/2017,Musicians,@TinieTempah,"RT @YungenPlayDirty: *NEW VIDEO* + +YUNGEN FEAT MR EAZI - ALL NIGHT 🌚🌚 + +https://t.co/nMQF9kQaXI + +@mreazi + +RT!! + +AVAILABLE TO BUY AND STREAM…" +10/25/2017,Musicians,@TinieTempah,"RT @marshmellomusic: Never be afraid to create what you want to create. What one person may dislike, ten others may love ❤" +10/24/2017,Musicians,@TinieTempah,That's my cousin on the Phone. Wo Wo Wo +10/24/2017,Musicians,@TinieTempah,😂😂 https://t.co/oAnPxf21La +10/24/2017,Musicians,@TinieTempah,I'm so proud of this guy. 4 years on. @je1bc 💪🏾🙏🏾 https://t.co/MYkZ5sjKM7 +10/24/2017,Musicians,@TinieTempah,💪🏾💪🏾💪🏾 https://t.co/wBancr7Asd +10/23/2017,Musicians,@TinieTempah,Pop immigrants. +10/22/2017,Musicians,@TinieTempah,Wrist cudda got froze. ❄️❄️❄️ +10/22/2017,Musicians,@TinieTempah,Deeply profound. She might be onto something. 😂😅 https://t.co/hPTNpJIIGm +10/22/2017,Musicians,@TinieTempah,Celebrate your happiness & achievements with your ppl and enjoy your success in peace that's what Its about yo. +10/22/2017,Musicians,@TinieTempah,"RT @yxngbane: #FROZE. OUT TONIGHT 6PM +LETS GO CRAZY!!! +🇬🇧💎🇬🇧!! +VIA @linkuptv https://t.co/LPvOo3uHsg" +10/19/2017,Musicians,@TinieTempah,"RT @GRMDAILY: 💪 @Callmecadet takes names in ""RMF"" freestyle + +➡️ https://t.co/cVejtSPhc1 https://t.co/sKcpS2gaAE" +10/19/2017,Musicians,@TinieTempah,At lot of institutions teach ppl in their workforce to be assholes or to feel entitled because of a position. I'm doing things so different +10/19/2017,Musicians,@TinieTempah,Voting for the whole gang at the @MOBOAwards this year. Let's bring home some trophies 💪🏾🏆 +10/13/2017,Musicians,@TinieTempah,Amsterdam with the gang. +10/13/2017,Musicians,@TinieTempah,🏌🏾🏌🏾🏌🏾 https://t.co/sL3UDvarus +10/13/2017,Musicians,@TinieTempah,🙏🏾 https://t.co/YQT2BK9ZlP +10/11/2017,Musicians,@TinieTempah,Mental health is real. +10/07/2017,Musicians,@TinieTempah,"RT @ajtracey: HAPPY SECURE THE FUCKING BAG DAY! 🎒 + +https://t.co/uPFcRVOn0M https://t.co/0dkR4b0Xo9" +10/06/2017,Musicians,@TinieTempah,At @OneYoungWorld in Bogota. Tune in here from 10pm BST for my keynote and Q&A. https://t.co/LVb9ISzziJ +10/06/2017,Musicians,@TinieTempah,Oh shit!!! #BESTIE is officially in the top 10 congratulations brothers @YungenPlayDirty @yxngbane here's to many m… https://t.co/H12P20QpOt +10/05/2017,Musicians,@TinieTempah,RT @DisturbingEvent: Manchester… We’ll be bringing the🔥to @VicWarehouse on Sat 2nd Dec! Tickets here 👉https://t.co/4V3dGxyRSw https://t.co/… +10/04/2017,Musicians,@TinieTempah,"Just touched down in Bogota, Colombia to talk to some of our generations future leaders. @OneYoungWorld #YOUTH2017 🇨🇴" +10/03/2017,Musicians,@TinieTempah,Thanks. 👍🏾 https://t.co/SEmyFC7A8t +10/03/2017,Musicians,@TinieTempah,@ClareParslow That's my good deed done for the week. What was the question? +10/03/2017,Musicians,@TinieTempah,"RT @Y2SHAF: ""Granddad"" is a funny way of spelling terrorist https://t.co/RX72IA4LNR" +10/03/2017,Musicians,@TinieTempah,RT @DGGroupUK: 8 weeks to go 4 the party of all time & final race of season.Headlining Sat @TinieTempah @djcharlesy & Sun @AleshaOfficial @… +10/02/2017,Musicians,@TinieTempah,RT @DisturbingLDN: 🔊Seven years of Disc-Overy. What was your favourite track from @TinieTempah's debut album? https://t.co/KN7PEVC5Rl +10/02/2017,Musicians,@TinieTempah,I hear that. 😌 https://t.co/btVpUaCwsS +10/02/2017,Musicians,@TinieTempah,Damn. What is this world coming to? Prayers go out to anyone affected by the shootings in Las Vegas. +10/02/2017,Musicians,@TinieTempah,The insane help keep the sane sane. +10/01/2017,Musicians,@TinieTempah,Free up all my aunties and uncles. +10/01/2017,Musicians,@TinieTempah,Nigerian Eagle. 🦅🇳🇬 Happy Independence Day to all my people dem. +09/30/2017,Musicians,@TinieTempah,From people who aren't genuine yes. https://t.co/KR55bxcCR2 +09/30/2017,Musicians,@TinieTempah,"I can't stop I'm a busy man, holding fire for hella man." +09/29/2017,Musicians,@TinieTempah,"RT @Yungfumelitm: "" Yung Fume Alot On My Back "" 😰 + +OUT NOWWWWWW ................. + +@linkuptv - https://t.co/EvNpYCJWCz. https://t.co/m8KaYj…" +09/27/2017,Musicians,@TinieTempah,Vote for me to win best Video at this years @GRMDAILY awards for my 'Lightwork' video if you feel like it. Thanks https://t.co/8RuxzTNCx7 +09/27/2017,Musicians,@TinieTempah,RT @thebobpalmer: @ShortList I talked to @TinieTempah about his favourite trainers of the last ten years https://t.co/mCQcKJnkY1 +09/26/2017,Musicians,@TinieTempah,RT @MichaelDapaah: *ATTENTION* Mans Not Hot -is officially OUT ! Click this link 👉🏾: https://t.co/WnqTAZo1ij Thank you my G's in advance #M… +09/26/2017,Musicians,@TinieTempah,RT @robynxcole: @TinieTempah @whatwewear__ 😎 #whatwewear https://t.co/mDaVfzd0xr +09/26/2017,Musicians,@TinieTempah,".@whatwewear__. For a chance to WIN a pair of the new socks in black, follow the page and tweet me a screenshot wit… https://t.co/d0DdTqzhGf" +09/26/2017,Musicians,@TinieTempah,. @VanessaKingori now I'm gonna get onto twitter about making sure they give you that blue tick! +09/26/2017,Musicians,@TinieTempah,Superstar Status. 👑 Congratulations @VanessaKingori @BritishVogue https://t.co/upEdFVXWJX +09/25/2017,Musicians,@TinieTempah,RT @je1bc: A year ago I emailed the CEO of @NandosUK about connecting with more young people! Today we launched a project at the HQ! So tha… +09/25/2017,Musicians,@TinieTempah,.@kidekomusic X Tinie Tempah X @iambeckyg… #DUMDUM. Out NOW. Check it out here. https://t.co/0QjRTRQir2 https://t.co/XoVm07Tkbp +09/25/2017,Musicians,@TinieTempah,There can never be another me.. just like there can never be another you. +09/22/2017,Musicians,@TinieTempah,My first Friday off in a while. Feels weird. #IbizaBlues +09/22/2017,Musicians,@TinieTempah,Big love to @Scott_Mills for dropping #DUMDUM. @kidekomusic @iambeckg @BBCR1 +09/21/2017,Musicians,@TinieTempah,RT @DisturbingEvent: We've made some amazing memories this summer… https://t.co/7Vacl23emw +09/21/2017,Musicians,@TinieTempah,#FR32 🎈 +09/20/2017,Musicians,@TinieTempah,RT @wizkidayo: Ft @1future https://t.co/Rw9tEDqM1i +09/20/2017,Musicians,@TinieTempah,"#DisturbingIbiza 2017. 15 shows. 70 artists. 50,000 people. Same again next year? https://t.co/ZnjICqR4AQ" +09/19/2017,Musicians,@TinieTempah,RT @kidekomusic: Pre-save my new single w/ @TinieTempah and @iambeckyg on @Spotify! Might get yourself 2 tix to @WHP_Mcr 😉 https://t.co/Seq… +09/19/2017,Musicians,@TinieTempah,@MisguidedMinx You sure can. +09/19/2017,Musicians,@TinieTempah,Anyone can be anything they want in this world...especially on Instagram. +09/18/2017,Musicians,@TinieTempah,.@kidekomusic X Tinie Tempah X @iambeckyg… #DUMDUM. Out on Friday. https://t.co/HBoUajdVoN +09/15/2017,Musicians,@TinieTempah,#DisturbingIbiza https://t.co/yC57l6Je8u +09/15/2017,Musicians,@TinieTempah,One last time... Times for tonight. #DisturbingIbiza. Who are you most excited to see? https://t.co/9Q2ZmXiXIA +09/15/2017,Musicians,@TinieTempah,Follow me to #DisturbingIbiza… https://t.co/zpaKFUCNab +09/13/2017,Musicians,@TinieTempah,RT @DisturbingEvent: THIS is how we're lining up for our FINAL #DisturbingIbiza this Friday... IT's MUAD 🔥👇 https://t.co/X23pEBC7qb +09/13/2017,Musicians,@TinieTempah,"RT @TheBugzyMalone: Bugzy Malone - We Don't play (Official Video) +https://t.co/5h4g9nlxaB 🎞" +09/13/2017,Musicians,@TinieTempah,"RT @realmostack: Not3s x MoStack - Celebration. + +VIDEO OUT NOW ON GRM DAILY. https://t.co/TRgSvMWE7O" +09/12/2017,Musicians,@TinieTempah,"RT @DisturbingEvent: When it's 5am in Ibiza and your mate says 'let's head back' ! "" +@TinieTempah https://t.co/vXccW7oF1C" +09/11/2017,Musicians,@TinieTempah,RT @LethalBizzle: New Dench Fragrance advert. RT for a chance to win a signed bottle 😆💥🌹👊🏾 https://t.co/I6zkwiCLeI +09/10/2017,Musicians,@TinieTempah,Narcos S3 +09/09/2017,Musicians,@TinieTempah,Penultimate night #DisturbingIbiza Happy birthday @djcharlesy. One of my closest friends for the last 9 years. https://t.co/5Vhkdz5HvL +09/09/2017,Musicians,@TinieTempah,24hrs +09/09/2017,Musicians,@TinieTempah,RT @joel_duncan89: Last night was a movie @TinieTempah @Kwame_Augustine @DrewMula #disturbingIbiza https://t.co/DTa8Isxfxq +09/08/2017,Musicians,@TinieTempah,RT @DisturbingEvent: 💥💥 @TinieTempah shutting down Ushuaia #DisturbingIbiza💥💥 ... Who's joining us next week at our last #DisturbingIbiza e… +09/08/2017,Musicians,@TinieTempah,Here are the set times for the Penultimate #DisturbingIbiza today. Who are you excited to see the most. Vote with t… https://t.co/S8eOh7KRgY +09/08/2017,Musicians,@TinieTempah,Big love to everyone who's bought YOUTH on vinyl. Still chance to win one by following my @Spotify playlist here.… https://t.co/5OkXAu9lqM +09/07/2017,Musicians,@TinieTempah,"RT @OneAcen: U might be the one I been 👀 for! + +#Verified ✔️🦋 +prod. by me & @CallMeTheKidd +https://t.co/fbcMcXbAgA + +Gang pleaseee RT & enjo…" +09/06/2017,Musicians,@TinieTempah,RT @MOBOAwards: So much excellence in one pic 🙌🏾🙌🏾🙌🏾 https://t.co/C5WnH3JpwW +09/06/2017,Musicians,@TinieTempah,RT @cnbcipr: Don't forget to tune into #Trailblazers tonight on @CNBCi at 10PM BST. @TaniaBryer is in #London with @TinieTempah https://t.c… +09/06/2017,Musicians,@TinieTempah,RT @mrdavidhaye: Always good catching up with my brother @TinieTempah 😎👌🏾 https://t.co/VnsnDMFVl3 +09/06/2017,Musicians,@TinieTempah,https://t.co/pd2RKOWxq0 👔 https://t.co/JT48RcakBO +09/05/2017,Musicians,@TinieTempah,RT @DisturbingEvent: Your girl watching our ting 😏 #DisturbingIbiza WEEK 14 line-up... https://t.co/0RCrnETLtY +09/05/2017,Musicians,@TinieTempah,Join me and @TaniaBryer on Wednesday night on @CNBCi's. Trailblazers. Tune into Sky 505 from 10pm. https://t.co/c265SlqP3e +09/04/2017,Musicians,@TinieTempah,RT @cnbcipr: Don't miss a very special episode of #Trailblazers this Wednesday at 10PM BST on @CNBCi... @TaniaBryer meets music legend @Tin… +09/04/2017,Musicians,@TinieTempah,UnFazed +09/04/2017,Musicians,@TinieTempah,Gibraltar was sick @MTVUK 🌪🌪 https://t.co/rDVktndlEf +09/04/2017,Musicians,@TinieTempah,"RT @fusionfest: Music, events, fashion and vehicles - is there anything @TinieTempah can't do?! See what he had to say in his interview wit…" +09/04/2017,Musicians,@TinieTempah,RT @LizzieBriggerz: I've waited over ten years to see @TinieTempah live and he did not disappoint 🔥😍🔥#bestofgib +09/04/2017,Musicians,@TinieTempah,RT @MTVMusicUK: IT 👏🏻 WENT 👏🏻 OFF for @TinieTempah at @MTV_Presents Gibraltar Calling! 🔥🔥🔥🔥🔥🔥🔥🔥 https://t.co/7EtSEm51Am +07/02/2018,Musicians,@chrisbrown,DALLAS TONIGHT!!!#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sW8A1Sb1yL +07/01/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUXGr1 https://t.co/jYzFm8Sq6G +06/29/2018,Musicians,@chrisbrown,AUSTIN!!! WE HERE! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/s60hp1xrK1 +06/29/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/xTbRJ14G8t +06/29/2018,Musicians,@chrisbrown,"Woodlands, TX TONIGHT! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/tAdZQbfppb" +06/28/2018,Musicians,@chrisbrown,When GOD knows what he’s doing!❤️ IM SO IN LOVE WITH THIS LITTLE GIRL. Thank YOU https://t.co/yhu8FwKbmX +06/26/2018,Musicians,@chrisbrown,https://t.co/mg37Mp7HQ5 +06/26/2018,Musicians,@chrisbrown,https://t.co/qCv0bJ6FaU +06/26/2018,Musicians,@chrisbrown,https://t.co/4IRtjBkVRd +06/26/2018,Musicians,@chrisbrown,Do shit yourself so if you ever fail you can be ok with it because you have given it your all. LEARN AS FAST OR AS… https://t.co/f7xLGJkgya +06/24/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUXGr1 https://t.co/yv6dT3SoVh +06/22/2018,Musicians,@chrisbrown,RT @Vevo: This is the kind of Breezy we like to hear! Here's a quick addition to your #QuietStorm playlist for the night. Watch @chrisbrown… +06/22/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/7WHbYW6TbH +06/22/2018,Musicians,@chrisbrown,#TOMYBED @Vevo https://t.co/4hvSFUG52r https://t.co/yV2czay12Q +06/21/2018,Musicians,@chrisbrown,CONCORD TONIGHT! #HeartbreakOnAFullMoonTour https://t.co/fccn78riKK https://t.co/VfgLvNR2Mj +06/21/2018,Musicians,@chrisbrown,#TOMYBED VIDEO WORLD PREMIERE! @Vevo https://t.co/4hvSFUG52r +06/19/2018,Musicians,@chrisbrown,SEATTLE!!! First show is tonight! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/Ovn4H11MRS +06/17/2018,Musicians,@chrisbrown,#HOPEYOUDO. @Vevo https://t.co/jDDjJA0ioc +06/12/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/vLJjWVXvBx +06/12/2018,Musicians,@chrisbrown,“HOPE YOU DO” I hope you STREAM REQUEST DOWNLOAD PURCHASE https://t.co/jDDjJA0ioc +06/10/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/mcRpd9Fhui +06/08/2018,Musicians,@chrisbrown,#HOPEYOUDO. https://t.co/jDDjJAhTfK +06/08/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/SmlN43e604 +06/07/2018,Musicians,@chrisbrown,RT @Shazam: .@chrisbrown always comes thru with the moves! 🔥 Watch his brand new music vid for #HopeYouDo now ---> https://t.co/HQmnTQ29S8… +06/06/2018,Musicians,@chrisbrown,RT @RCARecords: 🔥🔥 OUT NOW! The world premiere for @chrisbrown's #HopeYouDo 🔥🔥WATCH HERE>>> https://t.co/W6Xg4SDvRu https://t.co/LZomXipfRA +06/06/2018,Musicians,@chrisbrown,"RT @Vevo: ""Hope You Do"" is basically four minutes of @chrisbrown's best dance moves and we're here for it. 🙌🏽 https://t.co/8MyuEfbtRQ https…" +06/06/2018,Musicians,@chrisbrown,"RT @RIVETING_ENT: #HopeYouDo video out now! + +Directed by @chrisbrown + @DanielCzerni + +Produced by @RIVETING_ENT + +https://t.co/h9OYm6PJXC…" +06/06/2018,Musicians,@chrisbrown,https://t.co/DwpbluVesW +06/06/2018,Musicians,@chrisbrown,#HopeYouDo WORLD PREMIERE!!! @Vevo https://t.co/jDDjJAhTfK +06/06/2018,Musicians,@chrisbrown,https://t.co/DxlswETOiI +06/04/2018,Musicians,@chrisbrown,https://t.co/nhwLXH7joG +06/04/2018,Musicians,@chrisbrown,https://t.co/igGQZEyqu2 +06/03/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sFbHv5gBTS +06/02/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/gjt7D70W1o +06/02/2018,Musicians,@chrisbrown,https://t.co/nAnmYDES8l +05/31/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/pqRagWAVzf +05/31/2018,Musicians,@chrisbrown,https://t.co/kI6TDdjxUR +05/30/2018,Musicians,@chrisbrown,https://t.co/pNm6StART0 +05/30/2018,Musicians,@chrisbrown,Started the SUMMER off right! +05/30/2018,Musicians,@chrisbrown,RICK AND MORTY https://t.co/uUM3HbOj4I +05/28/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! https://t.co/fccn78riKK https://t.co/acCPfqqMxF +05/28/2018,Musicians,@chrisbrown,https://t.co/vZzK49FxMS +05/23/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/lSTAivDcQK +05/23/2018,Musicians,@chrisbrown,https://t.co/aHfiQPvtvX +05/22/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/dGxW6je1Zb +05/21/2018,Musicians,@chrisbrown,https://t.co/P9MOIc2sza +05/21/2018,Musicians,@chrisbrown,https://t.co/DzypC7Nh2Q +05/20/2018,Musicians,@chrisbrown,https://t.co/vc3jz07afs +05/20/2018,Musicians,@chrisbrown,Directing BTS with @RIVETING_ENT https://t.co/cplycku87D +05/19/2018,Musicians,@chrisbrown,THANK U TO THE FANS AND THE PEOPLE WHO LOVE WHAT WE CREATE! ❤️ https://t.co/vuGRuKKL4N +05/19/2018,Musicians,@chrisbrown,https://t.co/B70e0XUJC0 +05/19/2018,Musicians,@chrisbrown,RT @ellamai: *sings taina theme song* https://t.co/5dmQW2ygws +05/18/2018,Musicians,@chrisbrown,Think positive.... it will be what it will be. The goal is happiness! ❤️ https://t.co/MDDAHwS2CU +05/17/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/QCarmPObSb +05/17/2018,Musicians,@chrisbrown,Which city are you coming to?! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/oiqC3mJde0 +05/16/2018,Musicians,@chrisbrown,https://t.co/TnfgX3QQ5A +05/16/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/FWp3WyI7LK +05/15/2018,Musicians,@chrisbrown,https://t.co/PMf2llb7CD +05/14/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/LKUWHcNhef +05/14/2018,Musicians,@chrisbrown,HAPPY MOTHERS DAY! https://t.co/MzEoe74Nku +05/12/2018,Musicians,@chrisbrown,TOUR! #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/jLOrk3R0oj +05/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/KWCeVxCk9f +05/11/2018,Musicians,@chrisbrown,❤️💝❤️ https://t.co/WOwIpoLVoJ +05/09/2018,Musicians,@chrisbrown,SUMMER TOUR #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/D9uH53Br4n +05/09/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/taihC9flUT +05/08/2018,Musicians,@chrisbrown,Almost done. SUMMER TIME https://t.co/ABTyOqQvqc +05/08/2018,Musicians,@chrisbrown,We on some shit!!! 🔥🔥🔥🔥🔥 https://t.co/xe7fWUb1nx +05/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/ripjxP9KxE +05/06/2018,Musicians,@chrisbrown,SUMMER. #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/xG2vttmdAl +05/04/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/5EGsAcRMda +05/04/2018,Musicians,@chrisbrown,RT @Tee_Grizzley: One of my favorite songs https://t.co/mp6WevgT5D +05/03/2018,Musicians,@chrisbrown,GET YOUR TICKETS NOW! #HeartbreakOnAFullMoonTour! https://t.co/fccn78IU9k https://t.co/Q5mETZ2dEG +05/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/zMzSFW1zdA +05/03/2018,Musicians,@chrisbrown,DOUBLE DRAGONS https://t.co/6mZV6dZiJY +05/03/2018,Musicians,@chrisbrown,RT @JoynerLucas: They wanna see us dead... @chrisbrown https://t.co/qqdaPIaz8m +05/03/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour Tickets: https://t.co/fccn78IU9k https://t.co/WtQgyXw7Fg +05/02/2018,Musicians,@chrisbrown,#IDONTDIE @JoynerLucas https://t.co/JBEEX3m9PG +05/02/2018,Musicians,@chrisbrown,“I DONT DIE” IS OUT!!! Thoughts? https://t.co/KFfiunH8D6 +05/02/2018,Musicians,@chrisbrown,https://t.co/uKeEHY8TcU +05/01/2018,Musicians,@chrisbrown,Whenever u ready.... SO AM I🔥 https://t.co/rHAxGPWSfT +04/30/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/IIQWHhpYQj +04/30/2018,Musicians,@chrisbrown,https://t.co/MhiiDdEOLQ +04/30/2018,Musicians,@chrisbrown,GET YOUR TICKETS NOW! #HeartbreakOnAFullMoonTour! https://t.co/fccn78IU9k https://t.co/C6Nhb6Ox8s +04/29/2018,Musicians,@chrisbrown,Getting to it . https://t.co/MPPpG6e9P5 +04/29/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! Tickets: https://t.co/fccn78IU9k https://t.co/oBFkit3Agi +04/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/KKszkazhfD +04/25/2018,Musicians,@chrisbrown,JUST CANT WAIT TO BE KING 👑! ( in my simba voice) https://t.co/1NFgNSZx6k +04/24/2018,Musicians,@chrisbrown,❤️ LA https://t.co/hZLemvFRay +04/23/2018,Musicians,@chrisbrown,#HeartbreakOnAFullMoonTour! Tickets: https://t.co/fccn78IU9k https://t.co/xxTEqo1wpE +04/23/2018,Musicians,@chrisbrown,TEEN TITANZ OHB. EXPRESSION https://t.co/mMQliDtRUs +04/19/2018,Musicians,@chrisbrown,Be creative. LET NOTHING STOP YOU. Don’t put yaself in a box unless it’s your funeral! I’m thankful to have a team… https://t.co/mphiZQiHGZ +04/19/2018,Musicians,@chrisbrown,See what’s happening. LOVE YA TIME TO SHINE! #OHB https://t.co/nlbK3aWGb3 +04/18/2018,Musicians,@chrisbrown,🌊https://t.co/4Iq2qt9WVS https://t.co/NH93xrqSB3 +04/18/2018,Musicians,@chrisbrown,🙌 https://t.co/pDskAHXCZS +04/17/2018,Musicians,@chrisbrown,The BOYZ ARE BACK IN TOWN https://t.co/aC8XJPbk6U +04/17/2018,Musicians,@chrisbrown,Get your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/sRC4BVBzbY +04/16/2018,Musicians,@chrisbrown,‘I DON’T DIE’ video coming soon... @JoynerLucas https://t.co/giZdwIazb5 +04/16/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/Jzm427OYor +04/15/2018,Musicians,@chrisbrown,#Tempo https://t.co/2wOmw9FW5s https://t.co/1Ux6YJvloD +04/12/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/vwZ5pyvbir +04/10/2018,Musicians,@chrisbrown,Tickets available now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/GiUTFewsce +04/10/2018,Musicians,@chrisbrown,https://t.co/12t7KDse6Y +04/09/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/a72SNNh0k1 +04/09/2018,Musicians,@chrisbrown,YOU ARE MORE THAN WHO THEY WANT U TO BE https://t.co/cR8ICRKobJ +04/09/2018,Musicians,@chrisbrown,100 MILLION!! @lildickytweets #VevoCertified https://t.co/WQ64lwBuAA +04/08/2018,Musicians,@chrisbrown,❤️ https://t.co/d5M5dScG3l +04/06/2018,Musicians,@chrisbrown,RT @officialcharts: It's Freaky Friday! @lildickybeats and @chrisbrown's body swap collaboration claims Number 1 on this week's Official Si… +04/05/2018,Musicians,@chrisbrown,"RT @HERMusicx: I can’t wait for this summer! #HeartbreakOnAFullMoonTour tickets are available everywhere now! + +Visit https://t.co/RyFR710V…" +04/04/2018,Musicians,@chrisbrown,Tickets available now! #HeartbreakOnAFullMoon https://t.co/fccn78IU9k https://t.co/xSUblCIgNF +04/04/2018,Musicians,@chrisbrown,https://t.co/gJNy7VnqWn +04/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/i4rmSSfbAQ +04/03/2018,Musicians,@chrisbrown,New painting https://t.co/9M60jrCkAP +04/02/2018,Musicians,@chrisbrown,🙏🏽 https://t.co/8FkakQ2vfE +04/02/2018,Musicians,@chrisbrown,Which show are you going to?! #HeartbreakOnAFullMoonTour Tickets: https://t.co/fccn78riKK https://t.co/lrV9q7RcIv +04/02/2018,Musicians,@chrisbrown,RT @lildickytweets: My track “Freaky Friday (feat. Chris Brown)” made #TheBeats1List. Hear it on @Beats1 this week! https://t.co/W3HiyS8jsZ +04/01/2018,Musicians,@chrisbrown,Grab your tickets now! #HeartbreakOnAFullMoonTour https://t.co/fccn78IU9k https://t.co/TCqdc9InTJ +03/30/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/6sqIX8nEqD +03/30/2018,Musicians,@chrisbrown,TICKETS ARE AVAILABLE EVERYWHERE NOW! https://t.co/fccn78IU9k #HeartbreakOnAFullMoonTour https://t.co/9rrTVhLTD9 +03/28/2018,Musicians,@chrisbrown,PRESALE starts today! Enter presale code “HEARTBREAK” for exclusive early access to tickets for the tour.… https://t.co/kqQDEFF61M +03/28/2018,Musicians,@chrisbrown,"RT @LiveNation: JUST ANNOUNCED: @chrisbrown is heading out on the Heart Break On A Full Moon Tour with @6LACK, @HERMusicx, and @richthekid…" +03/27/2018,Musicians,@chrisbrown,https://t.co/2vHEssXV9u +03/27/2018,Musicians,@chrisbrown,"TOUR!!! Excited to be heading out on the road for the Heartbreak On A Full Moon Tour with @HERMusicx @6LACK, and… https://t.co/1ksDoSsmlz" +03/27/2018,Musicians,@chrisbrown,"RT @billboardhiphop: .@LilDickytweets scores his first #Hot100 top 10, as ""Freaky Friday,"" featuring @chrisbrown, debuts at No. 9! https://…" +03/26/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/bkML6SmmmO +03/25/2018,Musicians,@chrisbrown,#TEMPO https://t.co/2wOmw9FW5s +03/25/2018,Musicians,@chrisbrown,https://t.co/LVazVJvIS7 +03/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/m09daUK7tS +03/24/2018,Musicians,@chrisbrown,RT @billboardhiphop: .@lildickytweets' #FreakyFriday featuring Chris Brown is aiming for a top 20 #Hot100 debut https://t.co/nwTzfuMRDA htt… +03/23/2018,Musicians,@chrisbrown,https://t.co/g0E2WcGeFi +03/23/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/XB4bMGJRvg +03/23/2018,Musicians,@chrisbrown,https://t.co/cJlsxXl5tE +03/22/2018,Musicians,@chrisbrown,The GREATEST 🔥SQUAD LIT https://t.co/Ix842oJIJd +03/20/2018,Musicians,@chrisbrown,https://t.co/oDnAYmWc9b +03/20/2018,Musicians,@chrisbrown,Take time to recharge 👍🏾 https://t.co/yTWmncvLf9 +03/19/2018,Musicians,@chrisbrown,😂😂😂https://t.co/WQ64lwT5Za +03/19/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/iL2E3wxdM0 +03/17/2018,Musicians,@chrisbrown,555. 333. 11.11 https://t.co/SfUJlpeST5 +03/16/2018,Musicians,@chrisbrown,#FREAKYFRIDAY @lildickytweets https://t.co/WQ64lwBuAA +03/16/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9XwX0 +03/15/2018,Musicians,@chrisbrown,I woke up in @lildickytweets body??? 🧐 #FreakyFriday https://t.co/O2QIjTnknn +03/15/2018,Musicians,@chrisbrown,https://t.co/waOBnT81r1 +03/13/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s +03/13/2018,Musicians,@chrisbrown,A🎉 https://t.co/BrJgLmNO73 +03/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/6pfg6QRQDq +03/10/2018,Musicians,@chrisbrown,Can I switch up the #Tempo? https://t.co/2wOmw9XwX0 +03/10/2018,Musicians,@chrisbrown,Flyest 3year old On EARTH https://t.co/MbILUvzNO5 +03/10/2018,Musicians,@chrisbrown,👀 https://t.co/gSSW8qMvNn +03/09/2018,Musicians,@chrisbrown,RT @WorIdOfDancing: Rock Your Body 😍 https://t.co/raJCLr7Uy3 +03/08/2018,Musicians,@chrisbrown,#GIRLPOWER #tempotakeover 😳🔥🔥🔥🔥🔥https://t.co/2wOmw9FW5s https://t.co/sd697Xhbd8 +03/07/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s https://t.co/Aq08sEmvwS +03/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/yJ5RszoFKK +03/06/2018,Musicians,@chrisbrown,MOOD https://t.co/FecS06uWKj +03/05/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9XwX0 +03/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qsSlxi https://t.co/B1P9icLh2k +03/03/2018,Musicians,@chrisbrown,#TempoTakeover https://t.co/2wOmw9FW5s +03/02/2018,Musicians,@chrisbrown,#TEMPO VIDEO WORLD PREMIERE!!! Available everywhere now. #TempoTakeover https://t.co/2wOmw9XwX0 +03/01/2018,Musicians,@chrisbrown,TEMPO VIDEO WORLD PREMIERE COMING FRIDAY #tempotakeover https://t.co/QC2glx490n +03/01/2018,Musicians,@chrisbrown,https://t.co/sAmpYFv8xF +02/27/2018,Musicians,@chrisbrown,.@JakeMiosge :PHOTO https://t.co/Ko5oI3mrpU +02/26/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/g3WemzBqEd +02/25/2018,Musicians,@chrisbrown,#STRANGERTHINGS @JoynerLucas https://t.co/JSl2RbSc4y +02/25/2018,Musicians,@chrisbrown,"“ STRANGER THINGS “ X @JoynerLucas on @AppleMusic, @Spotify & @TIDAL NOW! https://t.co/Yvgw8T8kMt" +02/25/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/uCZhUMVgF3 +02/24/2018,Musicians,@chrisbrown,💔🌕 https://t.co/DSgT1oHFQG https://t.co/D96U7kfabS +02/22/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/LpHBYu1FzV +02/22/2018,Musicians,@chrisbrown,Clone 👽 https://t.co/jnxOxxaiLu +02/19/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/pmHKv7Rz2X +02/19/2018,Musicians,@chrisbrown,LOVED THE FILM https://t.co/YZkW3O07TZ +02/18/2018,Musicians,@chrisbrown,BRUDDAH https://t.co/BTh3kG8urY +02/18/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/bydNPWFgc5 +02/18/2018,Musicians,@chrisbrown,https://t.co/ejAxiYepd1 +02/16/2018,Musicians,@chrisbrown,https://t.co/zMd4cNax2g +02/14/2018,Musicians,@chrisbrown,RT @RealRemyMa: #MELANINMAGICVIDEO out now! @chrisbrown https://t.co/mcPfGAibS9 https://t.co/MApRMOTxCI +02/13/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/V7wtvHkdTu +02/13/2018,Musicians,@chrisbrown,SAY WHAT U WANT... really wouldn’t matter at this point. ❤️🏆. GREATNESS DEFENDS AND SPEAKS FOR ITSELF https://t.co/nCJfHwComY +02/12/2018,Musicians,@chrisbrown,https://t.co/dLl3sQDDjt +02/12/2018,Musicians,@chrisbrown,ALLSTAR @snoopdogg they gone get this work! https://t.co/9v97s7Hlea +02/11/2018,Musicians,@chrisbrown,Excited for the THINGS TO COME https://t.co/moY95SQ1lz +02/11/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/duYlYFB4OT +02/10/2018,Musicians,@chrisbrown,TEMPO.... COMING SOON 😏 https://t.co/La7ACqiwIm +02/09/2018,Musicians,@chrisbrown,NAME THIS GROUP.... https://t.co/bRSDot7uVc +02/09/2018,Musicians,@chrisbrown,"Just thinking.... A CRAZY WORLD TOUR would BEYONCE, RIHANNA, BRUNO MARS, CHRIS BROWN. “2 for 2”. And if y’all deci… https://t.co/7RTls3wnT5" +02/09/2018,Musicians,@chrisbrown,MUSIC ALL IN MY HEAD... can’t record fast enough “ SIDE NIGGA OF THE YEAR” 😂 https://t.co/pMedznwVeX +02/07/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/UXFEwHrkE0 +02/07/2018,Musicians,@chrisbrown,😳 https://t.co/wDyWHaRopp +02/06/2018,Musicians,@chrisbrown,#TEMPOTAKEOVER https://t.co/FsWyJDfgio +02/05/2018,Musicians,@chrisbrown,LATE NIGHT https://t.co/qn4e6s2er3 +02/04/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/iTXlYnO2mi +02/03/2018,Musicians,@chrisbrown,💔🌕 https://t.co/DSgT1oHFQG https://t.co/d1hyfn39eG +02/03/2018,Musicians,@chrisbrown,RT @jtimberlake: Man of the Woods... out now! https://t.co/L9yGfZpcbg https://t.co/jcSuUxHiX0 +02/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/QznSGAAov2 +02/03/2018,Musicians,@chrisbrown,❤️ https://t.co/1Ll5OA3GT3 +02/03/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/GWm4WB8kPx +02/01/2018,Musicians,@chrisbrown,When u realize it’ll be too late https://t.co/1swAYQhZwY +01/31/2018,Musicians,@chrisbrown,"""State Of The Union"" available on my soundcloud now https://t.co/vlFZpgfhrA" +01/31/2018,Musicians,@chrisbrown,🙏🏽 https://t.co/qOCDnpzHDd +01/30/2018,Musicians,@chrisbrown,#TEMPOTAKEOVER https://t.co/FsWyJDfgio +01/30/2018,Musicians,@chrisbrown,https://t.co/7Wh0kmd69K +01/29/2018,Musicians,@chrisbrown,https://t.co/eGJ9XC9AYv +01/29/2018,Musicians,@chrisbrown,https://t.co/4Iq2qt9WVS https://t.co/zWUXNC57z1 +08/18/2015,Musicians,@justinbeiber,Who else is excited? http://t.co/aJuH3466Kx +01/16/2014,Musicians,@justinbeiber,RT @IslandRecords: Help to complete @JustinBieber's #Journals here - http://t.co/jNuS5RAqOv +01/15/2014,Musicians,@justinbeiber,check out my main man when it comes to reviews: @XerexusReviews follow him on a roll tonight. ans be ready for #BelieveMoviePremiereJBAO +01/15/2014,Musicians,@justinbeiber,"RT @XerexusReviews: This is my twitter. Here I will do updates on what reviews I will be coming up with next. So check my tumblr blog ""xere…" +07/30/2012,Musicians,@justinbeiber,"https://t.co/a3r5t2sa the beautiful talents I wish I could meet. I'm a fan of theirs, you guys should check out their videos and follow too!" +07/18/2012,Musicians,@justinbeiber,http://t.co/Exo2u7XT #YouDontKnowStruggle check this out guys. +07/01/2018,Musicians,@jasonderulo,Shmood when I get that Caribbean food in Miami https://t.co/WcGk3qpxSw +06/30/2018,Musicians,@jasonderulo,#DeruloLive https://t.co/EHFszywiHZ +06/29/2018,Musicians,@jasonderulo,RT @motorpoint: JASON DERULO | To celebrate that #FridayFeeling Motorpoint is giving away its last pair of complimentary tickets to see @ja… +06/28/2018,Musicians,@jasonderulo,RT @LIVmiami: Let’s get WILD with @IRIE @irieweekend this SATURDAY! Live performances by @jasonderulo @JustineSkye and guest appearance by… +06/28/2018,Musicians,@jasonderulo,https://t.co/Ye8PRk7Nok +06/27/2018,Musicians,@jasonderulo,Best caption gets a FaceTime tomorrow #LiveMore https://t.co/XO7nFYVGXR +06/26/2018,Musicians,@jasonderulo,Mood for the summer ??Smile or Smize ➡️ https://t.co/sqSh5r2ufn +06/25/2018,Musicians,@jasonderulo,Miami I'm coming home to perform live @irieweekend for the @Sprint BBQ Beach Bash presented by @Samsungmobileusa on… https://t.co/b0o4i4AABW +06/23/2018,Musicians,@jasonderulo,The comeback is always more important than the set back +06/23/2018,Musicians,@jasonderulo,@im_so_cash Well I co-wrote it 🤷🏾‍♂️ 9 yrs ago +06/21/2018,Musicians,@jasonderulo,"You calling the shots for 4 days, where we sailing to? https://t.co/iSWgj8DT3y" +06/20/2018,Musicians,@jasonderulo,The World Cup is ON! And #Colors is the @CocaColaCo anthem for the 2018 @FIFAWorldCup To celebrate enter now for a… https://t.co/CWZMG1vFAP +06/18/2018,Musicians,@jasonderulo,Ice nearly passed out at Runyon Canyon this morning. Tried to bring Ghost too but he ain’t friendly enough to be am… https://t.co/HdhlDyeWUm +06/16/2018,Musicians,@jasonderulo,Imagine yourself surrounded by ancient tombs in a desertlike landscape where the only sounds are waves crashing on… https://t.co/sFh72flcid +06/15/2018,Musicians,@jasonderulo,Family! I collaborated with @stingraymusic to curate my own channel FOR THE SECOND TIME! All my favorite songs are… https://t.co/3dRNVuKaT8 +06/15/2018,Musicians,@jasonderulo,"Not everything needs an explanation... + +Don’t believe everything you read ✈️ +https://t.co/Oh5AqlE0fy https://t.co/3fqk8OSRWv" +06/12/2018,Musicians,@jasonderulo,THIS IS AMERICA 🇺🇸 and this is what happens when me n broski @MattSteffanina got 15 mins by my pool in Miami to coo… https://t.co/OmVBirXmhU +06/11/2018,Musicians,@jasonderulo,"Summer Ready?? +No shirt shawty allll summer long starting in 2 weeks. It’s hot af!!!! https://t.co/WyKRu7vVdg" +06/10/2018,Musicians,@jasonderulo,"3 mins before show time but first.... DRIP + +Stage Ready +Designed by the legend +@forthestarsfashionhouse Jacob https://t.co/44WCdz9KdZ" +06/10/2018,Musicians,@jasonderulo,@Kryp04 Errrthing you could possibly imagine.. +06/08/2018,Musicians,@jasonderulo,Миллион голосов поёт со мной! Эту песню поёт свобода. Я люблю тебя #russia #stbasilscathedral… https://t.co/dhqTCHGv0X +06/04/2018,Musicians,@jasonderulo,RT @bobbybonesshow: So @FLAGALine is working on collabs with @Jason_Aldean & @jasonderulo + looking for a female artist for a collab all on… +06/03/2018,Musicians,@jasonderulo,"It’s Time for that Switch Up +Anticipation is killing me #2Sides #Album #Tour https://t.co/JQjhC8gM2Z" +06/02/2018,Musicians,@jasonderulo,Chk the new Coca Cola commercial #colors #WorldCup https://t.co/06jI5902GV +05/28/2018,Musicians,@jasonderulo,Appreciate 🙏🏾🙏🏾the love https://t.co/cH2A1NYmwd +05/28/2018,Musicians,@jasonderulo,I’m into it https://t.co/u3kKy1MvzL +05/28/2018,Musicians,@jasonderulo,"@LVLXIII_BRANDS x @LuisaViaRoma +https://t.co/VDK9JEv4FX https://t.co/wekQz4ktzO" +05/27/2018,Musicians,@jasonderulo,RT @eventim_uk: Get ready to Wiggle as @jasonderulo tours the UK in September –if you enjoyed his BBC Biggest Weekend performance then grab… +05/25/2018,Musicians,@jasonderulo,RT @MTVMusicUK: Calling all @jasonderulo fans! 🗣 We need your help! Head here to submit your questions for him & they might be answered on… +05/24/2018,Musicians,@jasonderulo,Ever wanted to see the Cayman Islands?! Come see me perform at @KAABOOCayman on Feb 15th & 16th 2019. Plus use the… https://t.co/Ce9EG1V6Kv +05/23/2018,Musicians,@jasonderulo,"2Sides Tour Arena +Tickets Avail Now! +https://t.co/0sQXHDmzKI https://t.co/emGmvxMefL" +05/21/2018,Musicians,@jasonderulo,🤫Sshhh https://t.co/saILwgN2ka +05/18/2018,Musicians,@jasonderulo,Are y’all ready to show your pride during the @FifaWorldCup! I wanna see you represent your country on this one 🔥… https://t.co/c30Z2p64xQ +05/14/2018,Musicians,@jasonderulo,Still carrying me 28yrs strong after those 1st 9 months. I love you mommma & sending big love to all moms out there… https://t.co/rdOZn8lc1U +05/13/2018,Musicians,@jasonderulo,"RT @LuisaViaRoma: @jasonderulo in store +15 May 17.00-19.00 +See you there! https://t.co/YlMfbwFnqj" +05/13/2018,Musicians,@jasonderulo,I want you.. I can’t lie.. Imma give it to you.. Hang tight.. https://t.co/uIu0ezD0o5 +05/11/2018,Musicians,@jasonderulo,Better late than never love😘 https://t.co/HareUbWobL +05/11/2018,Musicians,@jasonderulo,@Elizabethkayem Love u more +05/11/2018,Musicians,@jasonderulo,I’m wheezing!!!!!😂😂😂 ya’ll are INSANE! 👏🏾👏🏾👏🏾Someone pls help me find him. #jasonderulokid #internetisundefeated https://t.co/S4lNA0vTzC +05/10/2018,Musicians,@jasonderulo,I’m so excited to announce I’ll be coming back to the beautiful island of Malta for @IsleofMTV. Can’t wait to perf… https://t.co/fd6nChdSBR +05/10/2018,Musicians,@jasonderulo,I wrote “Ridin Solo” in my cousins basement at 3am on a couch we found in the street. I wrote “Whatcha Say” in a bo… https://t.co/qGUF7csTMD +05/10/2018,Musicians,@jasonderulo,"Bruhhh 😂😂😂😂 I’m dead +#metgala https://t.co/h9OyKdu6fL" +05/09/2018,Musicians,@jasonderulo,Don’t you worry bout the seasons... cause we gon’ fly out every weekend https://t.co/URRxbPKn0z +05/04/2018,Musicians,@jasonderulo,RT @CassperNyovest: .@jasonderulo feat Cassper Nyovest - Colours (Official Music Video) https://t.co/1nUzXtD4ru +04/30/2018,Musicians,@jasonderulo,"Dogs or Cats + +#Ghost #Ice https://t.co/IwwoDXKw2g" +04/28/2018,Musicians,@jasonderulo,"Portugal-I'll be performing at @MEOSudoeste on August 9th! See you there! + +https://t.co/ixCuFHe11g https://t.co/f2aRc6nrZu" +04/27/2018,Musicians,@jasonderulo,🔥 https://t.co/Hc1PCdthhY +04/27/2018,Musicians,@jasonderulo,"3 more months till tour, what city am I meeting you in? https://t.co/Q1IzSk7Ey0" +04/26/2018,Musicians,@jasonderulo,What country has the best beaches? https://t.co/zjmybfe8bp +04/21/2018,Musicians,@jasonderulo,"Grand prize winner for #colorschallenge is flying to the WORLD CUP with me! +I’ll also be posting tons of… https://t.co/Scb9fcmR2a" +04/21/2018,Musicians,@jasonderulo,Check out my latest insta post to see how you can fly with me to the World Cup! https://t.co/C8LWEX7IH7 +04/21/2018,Musicians,@jasonderulo,"Bout that green +Ever golfed? https://t.co/vSQJ8Uy9kz" +04/19/2018,Musicians,@jasonderulo,Too lit bro bro https://t.co/Kr309qGvGO +04/18/2018,Musicians,@jasonderulo,How long does it take u to get date ready? https://t.co/E4tm8lJJp0 +04/16/2018,Musicians,@jasonderulo,Drip drip 💦 https://t.co/qPllzqS1ye +04/15/2018,Musicians,@jasonderulo,New band who dis @ShawnMendes https://t.co/exP6dOffyV +04/14/2018,Musicians,@jasonderulo,Derulo & @maluma new video out now! #colors #worldcup https://t.co/aupwtVgpGj +04/14/2018,Musicians,@jasonderulo,Derulo & @maluma go see the new video posted today https://t.co/LfetbWW3cH +04/14/2018,Musicians,@jasonderulo,"RT @maluma: Video oficial disponible en @Vevo +#Colors @jasonderulo / available on @vevo #HandsUpForYourColors https://t.co/iCXDgT52b0" +04/13/2018,Musicians,@jasonderulo,Golden Carpet #echoawards #germany https://t.co/twpXVxuTlz +04/12/2018,Musicians,@jasonderulo,"Look How Far We've Come! Colors video is out now! Watch & Comment https://t.co/1YDHcZmThD +Colors is the @CocaColaCo… https://t.co/tMIMiRFECD" +04/11/2018,Musicians,@jasonderulo,My brother!! https://t.co/BmY3pPeGMe +04/11/2018,Musicians,@jasonderulo,Darlin I’m here in Germany & there’s diversity here. Ur missing the entire point of the song. It’s all about unity… https://t.co/4hcDkqNSS2 +04/11/2018,Musicians,@jasonderulo,"COLORS OFFICIAL VIDEO OUT NOW! https://t.co/1YDHcZmThD +The Coca-Cola Company Anthem for the 2018 @FIFA World Cup https://t.co/C3zHhFsp3i" +04/10/2018,Musicians,@jasonderulo,C O L O R S Video Dropping Tomorrow @ 7am PST!! Colors is the @CocaColaCo anthem for the 2018 @FIFAWorldCup https://t.co/Ua8VZ4IS87 +04/10/2018,Musicians,@jasonderulo,Let’s get it @RitaOra 🔥 https://t.co/mGxbHo0zzf +04/07/2018,Musicians,@jasonderulo,You can tell I' been workin #beardgang https://t.co/UhFsVuP56Q +04/06/2018,Musicians,@jasonderulo,Have you raised your flag yet?! #RepYourCOLORS now and watch the new lyric video for COLORS on… https://t.co/2OC573MI1I +04/06/2018,Musicians,@jasonderulo,RT @AllThingsSNT: .@jasonderulo will Perform in the End Of the Show Show for the #SaturdayNightTakeaway Finale Tomorrow - Aaron https://t.c… +04/05/2018,Musicians,@jasonderulo,Love more #unity https://t.co/nVqF1RY6bQ +04/03/2018,Musicians,@jasonderulo,Congrats kings.. Welcome to Miami #michaeljordan #derekjeter https://t.co/MRoLDIkjXl +04/02/2018,Musicians,@jasonderulo,Last Night https://t.co/C7BXpvx0Ch +03/27/2018,Musicians,@jasonderulo,RT @Marlins: #OpeningDay keeps on getting better! @jasonderulo will perform the first National Anthem of the season. Be there: https://t.co… +03/23/2018,Musicians,@jasonderulo,Hands Up For Your Colors! Represent your country - Represent your flag. @TheCocaColaCo anthem for the 2018… https://t.co/AyhEtA0w8v +03/22/2018,Musicians,@jasonderulo,@maluma ready? #colors https://t.co/Hsc3ReNah3 +03/16/2018,Musicians,@jasonderulo,Tune into the brand new music series #LiveAtTheBBC tonight! I’ll be co-hosting and performing. Premieres on… https://t.co/v6erCMM9lO +03/16/2018,Musicians,@jasonderulo,"C O L O R S Lyric Video live now! +https://t.co/OunUQmtMzV" +03/15/2018,Musicians,@jasonderulo,https://t.co/Jfgf7mTVZA +03/15/2018,Musicians,@jasonderulo,RT @billboard: .@jasonderulo made a surprise visit to a Boys and Girls Club in Miami https://t.co/TgX4vDHhvF https://t.co/HcMOLwcPbM +03/12/2018,Musicians,@jasonderulo,Thank God for family https://t.co/1B3W6cSb7S +03/11/2018,Musicians,@jasonderulo,Excuse me if I get you W E T 💦 https://t.co/khHTnJAmkI +03/09/2018,Musicians,@jasonderulo,.@DonaldTrump. We're all united in the fact that we're different. Hands up 4 my #colors Haiti🇭🇹 RT YOUR FLAG https://t.co/FYo2Meqnx5 +03/09/2018,Musicians,@jasonderulo,@Shazam got #Colors (The Coca-Cola Anthem for the 2018 FIFA World Cup) as the Song of the Day! https://t.co/GayuB1Hg0c +03/09/2018,Musicians,@jasonderulo,@DonaldTrump We're all united in the fact that we're different. Hands up for my #colors Haiti🇭🇹 Rep YOUR country RT… https://t.co/VwMI3tNye3 +03/09/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag +Be proud of where you're from & who you are. +#Ready… https://t.co/XQfFF0fR5R" +03/08/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag +Be proud of where you’re from & who you are. +@CocaColaCo An… https://t.co/z76EEy5FSZ" +03/08/2018,Musicians,@jasonderulo,"If this was a movie, what we callin it??? +#Miami https://t.co/yCnKzFdqNV" +03/06/2018,Musicians,@jasonderulo,"C O L O R S +Represent your country-Represent your flag. +Be proud of where you're from. World Cup Anthem 2018… https://t.co/u5wbA4prda" +03/05/2018,Musicians,@jasonderulo,"Home Sweet Home +You ever been to #miami? +#southbeach #oceandrive https://t.co/9QpPhG9fPD" +03/03/2018,Musicians,@jasonderulo,Happy B-day Baby Noah uncle got you https://t.co/hhFc7rhHTi +03/01/2018,Musicians,@jasonderulo,I try to humble myself enough to know there’s always room to grow. https://t.co/wZVhhxcCO5 +02/28/2018,Musicians,@jasonderulo,@TonyAguilarOfi @SoSofiaReyes @Del40al1_es @DeLaGhettoReal Much love +02/27/2018,Musicians,@jasonderulo,W O N D E R O U T https://t.co/YGJ4wdzw0Q +02/26/2018,Musicians,@jasonderulo,Best caption gets a FaceTime https://t.co/uoUTWfsVCT +02/24/2018,Musicians,@jasonderulo,Live like there’s no tomorrow https://t.co/TOAZIO7u5R +02/19/2018,Musicians,@jasonderulo,"You wanna meet me in Dubai this week??? Comment & tag a friend to get that chance + +#beautifuldestinations… https://t.co/vSneOVz2UE" +02/18/2018,Musicians,@jasonderulo,@TwitterMusic @CocaColaCo Classic man +02/14/2018,Musicians,@jasonderulo,Also who tf is taking playa advice from you lame$??? https://t.co/nZFa2QQCnu +02/14/2018,Musicians,@jasonderulo,Stop posting old news @playaspoint! That’s y u only have 100 followers. Every1 now knows I was on the tv show… https://t.co/Q0WghZrqup +02/14/2018,Musicians,@jasonderulo,@fijiwawta My +02/14/2018,Musicians,@jasonderulo,@fijiwawta Relax ppl I was on the tv show #safeword smh. The show hacked me pages +02/09/2018,Musicians,@jasonderulo,Candace sheesh 👐🏼👐🏼👐🏼 !!!!!! #TheFour what's your thoughts on this @djkhaled +02/09/2018,Musicians,@jasonderulo,Holly shit evvie wow #TheFour +02/09/2018,Musicians,@jasonderulo,RT @Diddy: My brother @FrencHMonTanA is about perform. Tune in!!! #TheFour +02/09/2018,Musicians,@jasonderulo,Who y'all got this final round ? #TheFour +02/09/2018,Musicians,@jasonderulo,Yoo @diddy you can’t send Zaviah home yet she just came wit it !!!!#TheFour @thefouronfox +02/06/2018,Musicians,@jasonderulo,Yuuup🔥🔥🔥 https://t.co/aD0UA5YTCp +02/05/2018,Musicians,@jasonderulo,Family WE reached 1 Billion Views on Swalla today! We now have about 5 Billion views on my YouTube page!!! That's w… https://t.co/kJlEWP7pVc +01/30/2018,Musicians,@jasonderulo,That’s a Insensitive af. I broke my neck last time I cancelled which was 5 YRS AGO. Sorry you’re upset but it hurts… https://t.co/bwjQiFGLUy +01/30/2018,Musicians,@jasonderulo,Pls send him my apologies and tell him I can’t wait to meet him https://t.co/yh1MW4EAt2 +01/30/2018,Musicians,@jasonderulo,Good Mawninn! +01/29/2018,Musicians,@jasonderulo,I C E & G H O S T https://t.co/IkX5qekKpO +01/26/2018,Musicians,@jasonderulo,Chest day https://t.co/W0Kh6PMCQb +01/25/2018,Musicians,@jasonderulo,"@MattSteffanina and crew dancin to #TipToe! 🔥 +https://t.co/HoOMCMEBkb" +01/24/2018,Musicians,@jasonderulo,😂😂🕺🏾 https://t.co/ODNd1qD3s9 +01/23/2018,Musicians,@jasonderulo,Check me out teaching a @zumba class! #TipToeZumba https://t.co/UfnYugVvUg +01/21/2018,Musicians,@jasonderulo,2 days vacation to whatever location.. where u goin? https://t.co/TTgif6ZnFD +01/20/2018,Musicians,@jasonderulo,Shmood or nah? https://t.co/hFKEv4IiRF +01/20/2018,Musicians,@jasonderulo,First emoji that comes to mind https://t.co/pasCDHtBjU +01/19/2018,Musicians,@jasonderulo,RT @officialcharts: .@JasonDerulo has tip-toed his way to a 13th UK Top 10 single! His latest single makes a big climb on this week's Offic… +01/19/2018,Musicians,@jasonderulo,Crazy leg day! @SimeonPanda put the boys through a monstrous one. I love training with different ppl everyone has t… https://t.co/NXSvzEK9FS +01/18/2018,Musicians,@jasonderulo,https://t.co/KoinBm55QD +01/17/2018,Musicians,@jasonderulo,RT @MTVMusicUK: Say hello to this week's Official Trending Chart No.1 - it's #TipToe from @jasonderulo & @FrencHMonTanA! Check out this wee… +01/17/2018,Musicians,@jasonderulo,Just crashed the @zumba with my friends and taking over LA Beatbox Los Angeles #tiptoewithzumba… https://t.co/5SLRJ0ORCC +01/16/2018,Musicians,@jasonderulo,It's my dawg birthday! Follow @JaeMurphy https://t.co/hiUrYg22Mi +01/15/2018,Musicians,@jasonderulo,We celebrate you https://t.co/BAoW9R7hET +01/15/2018,Musicians,@jasonderulo,Writing Camp https://t.co/iG4V0dOIm6 +01/12/2018,Musicians,@jasonderulo,Damn where tf am I supposed to get my black t-shirts? 😂 https://t.co/B9Y016mgc0 +01/09/2018,Musicians,@jasonderulo,Yes I did thank u for letting us know first🙌🏾🙌🏾 https://t.co/Yga6df47KD +01/09/2018,Musicians,@jasonderulo,It begins family!!! Top ten in the UK. #TipToe 🙏🏾 let’s take it to #1 #blessup https://t.co/lLXLkSW99j +01/09/2018,Musicians,@jasonderulo,"""Tip Toe” Zumba Takeover has begun #TipToe #TipToeWithZumba https://t.co/V7IseuB0wz" +01/08/2018,Musicians,@jasonderulo,https://t.co/Lfd7BkEEgh +01/06/2018,Musicians,@jasonderulo,Good job homie. #blessup https://t.co/5JQtRwxZ9N +01/06/2018,Musicians,@jasonderulo,"Crazy!!!!! This is ""Our accomplishment"" 🙏🏾 #16andcounting #TipToe https://t.co/VhDDjglMeh" +01/05/2018,Musicians,@jasonderulo,I love you more than you know 😩 https://t.co/zGgLTZwlhj +01/04/2018,Musicians,@jasonderulo,Thank u for making me one of the most listened to artists on Spotify so consistently! 🙏🏾#TipToe made a huge jump af… https://t.co/x6UjvBH51d +01/04/2018,Musicians,@jasonderulo,Just before this photo I was milly rockin tryna get the bats out my face https://t.co/s8Y39LwGbt +01/03/2018,Musicians,@jasonderulo,"They say your New Year’s Eve KISS sets the tone for the New Year. +#tagyours #tagwhoshouldvebeen https://t.co/EijoLpcujE" +01/02/2018,Musicians,@jasonderulo,First emoji that comes to mind https://t.co/Os38ZWGhfY +01/01/2018,Musicians,@jasonderulo,Everyone that asks always thinks they’re the first https://t.co/qvxI7Eyk7A +01/01/2018,Musicians,@jasonderulo,just so u know on my New Years evening I took 200+ pics honestly. Them denying is just Me trying 2make it 2my bed.… https://t.co/GdoQ1pINTC +12/31/2017,Musicians,@jasonderulo,Finish this caption 2018 is gonna be... https://t.co/E8Uu7XNR3f +12/28/2017,Musicians,@jasonderulo,#TBT #Phillipplein https://t.co/jvLZdEogTx +12/27/2017,Musicians,@jasonderulo,RT @jasonderulo: What city has the best beach in the world? https://t.co/lIKwoWhFW4 +12/27/2017,Musicians,@jasonderulo,What city has the best beach in the world? https://t.co/lIKwoWhFW4 +12/26/2017,Musicians,@jasonderulo,Merry Christmas from Miami https://t.co/zqM6TpgysP +12/25/2017,Musicians,@jasonderulo,Miss my Christmas Day show on @BBCR1? You can listen back right here:https://t.co/Pur12wcPD6 +12/25/2017,Musicians,@jasonderulo,What’s Up people! I’ll be taking over @BBCR1 on Christmas Day from 2pm GMT– listen here:https://t.co/Pur12wcPD6 +12/25/2017,Musicians,@jasonderulo,Where are we going for Christmas dinner? https://t.co/wnzvMNSNzI +12/23/2017,Musicians,@jasonderulo,S/O to @AtariLife for the exclusive SpeakerHat 🔥 Now how did @JaeMurphy get his before me!!! #Speakersinthebrim… https://t.co/EagDpSEJEj +12/18/2017,Musicians,@jasonderulo,@MoonPie Your page is amazing +12/18/2017,Musicians,@jasonderulo,"RT @BestCoverEver: Where our #derulers at!? Name this @JasonDerulo #BestCoverEver song without the sound. RT w/ your answer. + +(Need help? A…" +12/17/2017,Musicians,@jasonderulo,"RT @XXL: Watch @frenchmontana and @jasonderulo team up in the new video for ""Tip Toe"" https://t.co/oXWUzhTzZG https://t.co/lg4OUMrozH" +12/16/2017,Musicians,@jasonderulo,"RT @Fact: A person who sleeps too much, sits too much and isn’t physically active enough is more than 4 times as likely to die early." +12/15/2017,Musicians,@jasonderulo,🙏🏾 https://t.co/HKVKneN94I +12/15/2017,Musicians,@jasonderulo,RT @LiamPayne: .@JasonDerulo your uncle is a Legend 🤣🤣🤣 https://t.co/A7eF92Y5OU +12/15/2017,Musicians,@jasonderulo,RT @Popdust: We love Jason Derulo's new music video. It's W I L D ! ( #📷 @jasonderulo via @latermedia ) https://t.co/EjRpWk1TGe +12/13/2017,Musicians,@jasonderulo,Thank you God for waking me up this morning https://t.co/55nxXlnifm +12/13/2017,Musicians,@jasonderulo,"#thiscouldbeusbutitswinter +Tag who would like this https://t.co/gBiI5oTY3W" +12/13/2017,Musicians,@jasonderulo,@PopeDave8 😂 +12/12/2017,Musicians,@jasonderulo,When you’re about to raise 10’s of thousands for charity @KekePalmer https://t.co/VD7GwTOTCw +12/12/2017,Musicians,@jasonderulo,Share the joy and #ShareYourEars! Help make wishes come true this holiday with Disney parks and Make-A-Wish. For ev… https://t.co/9rx1ij8Txx +12/12/2017,Musicians,@jasonderulo,"RT @BBCR1: 🎄 BIG FESTIVE NEWS 🎄 + +We've invited some of your favourite stars to take over Radio 1 on Christmas Day! + +Get ready for Superstar…" +12/11/2017,Musicians,@jasonderulo,I’ll be at your door at 8. Then we’ll take a jet to anywhere you wanna go. WHERE WE GOIN? https://t.co/8pPHD6KCnA +12/09/2017,Musicians,@jasonderulo,"Proud new owner of my 2nd horse. +What should I name this beauty?? https://t.co/9cSTYUf41h" +12/09/2017,Musicians,@jasonderulo,What time zone are you in? Is it bedtime? Or breakfast in bed time? https://t.co/YwYASinCPM +12/07/2017,Musicians,@jasonderulo,"RT @DJcity: ""Tip Toe"" was DJcity’s 4th most-downloaded song of November. + +https://t.co/o1LglHFUZE" +12/07/2017,Musicians,@jasonderulo,"RT @idolator: .@jasonderulo's ""Tip Toe"" video is a sexy, choreography-filled adventure: https://t.co/n1bmNAi5FN https://t.co/sCsEP2Dnyz" +12/07/2017,Musicians,@jasonderulo,RT @SincereShow: @jasonderulo w/ Another On #Tiptoevideo Out Now Ft. @frenchmontana https://t.co/xXZZtx8yIM +12/07/2017,Musicians,@jasonderulo,"RT @DoctorMusicTuit: Selva, nieve y calaveras doradas en el vídeo oficial de #TipToe de @jasonderulo y @FrencHMonTanA 🐯🌴❄️⛩️ https://t.co/k…" +12/07/2017,Musicians,@jasonderulo,RT @WarnerMusicBR: .@JasonDerulo tem mais uma dança irresistível no clipe de “Tip Toe”! Vem ver e se jogar com o hitmaker: https://t.co/MQu… +12/07/2017,Musicians,@jasonderulo,"RT @ComplexMusic: Premiere: Watch @jasonderulo's new video for ""Tip Toe"" f/ @FrencHMonTanA. https://t.co/D85l5tgt7v https://t.co/biKmvvtnKM" +12/07/2017,Musicians,@jasonderulo,"Official Video for Tip Toe feat. @FrencHMonTanA O U T N O W https://t.co/zSqaQThtdE +https://t.co/CzrMwhr38B https://t.co/cuVK6t3PLd" +12/05/2017,Musicians,@jasonderulo,Peanut-butter or chocolate? https://t.co/3JHBDQZYcb +12/05/2017,Musicians,@jasonderulo,A G E N T: #777 need protection? https://t.co/jwainpFAos +12/03/2017,Musicians,@jasonderulo,https://t.co/wRWd9VVbA7 +12/02/2017,Musicians,@jasonderulo,Comment with two emojis https://t.co/3EeFyUlhvX +12/01/2017,Musicians,@jasonderulo,@km_hamilton15 😘thanks love. I'm a sucker for falsetto +12/01/2017,Musicians,@jasonderulo,So glad to hear that. Peace be with u https://t.co/nVAn6Ua2pB +12/01/2017,Musicians,@jasonderulo,RT @jamiebirdie13: @jasonderulo has an incredible voice omg 😍😭 +12/01/2017,Musicians,@jasonderulo,"RT @RyanBartholomee: Such range and such a beautiful tone, @jasonderulo! ""Silent Night"" was 🔥🔥🔥! 👏🏽👏🏽👏🏽 #DisneyHolidayCelebration" +12/01/2017,Musicians,@jasonderulo,RT @Mack2death: @jasonderulo better sing! Lol taking them to church #DisneyHolidayCelebration +12/01/2017,Musicians,@jasonderulo,RT @kellss_XO: Can we talk about @jasonderulo vocals performing silent night 😍😍😍😍😍😍 +12/01/2017,Musicians,@jasonderulo,A D I O S C H I L E. 🇨🇱 Tag who you ridin in your Lambo wit. #thispiclit https://t.co/UCWVO3gCTx +11/30/2017,Musicians,@jasonderulo,If today was f$cked up. It's all good cuz there's always a fresh start in the morning. +11/29/2017,Musicians,@jasonderulo,Say good morning in your native language https://t.co/4vFmpDkmAa +11/29/2017,Musicians,@jasonderulo,Breaking bad #WalterBlack https://t.co/L3pTDIQgO1 +11/28/2017,Musicians,@jasonderulo,M U S C L E https://t.co/trEL30cVub +11/26/2017,Musicians,@jasonderulo,Just landed in #Chile 🇨🇱 first things first 💦 https://t.co/KOijGSVFPQ +11/25/2017,Musicians,@jasonderulo,Summertime in #Chile 🇨🇱 with my niece skylar https://t.co/OgNSJAmnV8 +11/24/2017,Musicians,@jasonderulo,Stopped by a random shelter today in Detroit to give back. Shoutout to https://t.co/oy5QZRymzl 🙌🏾🙌🏾 https://t.co/JETxRSRiyp +11/24/2017,Musicians,@jasonderulo,Thankful 🙏🏾 https://t.co/htxAS9t5VK +11/23/2017,Musicians,@jasonderulo,🙌🏾 https://t.co/3L6csDQUd2 +11/23/2017,Musicians,@jasonderulo,RT @_OfficialFree: @jasonderulo Great performance at the game bro 💯 #DetroitLions +11/23/2017,Musicians,@jasonderulo,RT @JosieAve: The best part of the whole Lions/Vikings game is @jasonderulo halftime show 🤷🏻‍♀️😍 #sorrynotsorry +11/23/2017,Musicians,@jasonderulo,RT @idfkrow: here I am bawling my eyes out bc jason did so good at the halftime show today I MISS HIM holy shit what a great highlight to m… +11/22/2017,Musicians,@jasonderulo,Pls don't trust these mf's. If it's not from my verified account it's not from me. https://t.co/CTcEo9VF9q +11/22/2017,Musicians,@jasonderulo,@JaeMurphy Family bro! Excited to make history wit u bro +11/22/2017,Musicians,@jasonderulo,It takes a village. You're only as strong as the ppl you surround yourself with. I Love my team 🙌🏾 https://t.co/VEK4ap1B4N +11/21/2017,Musicians,@jasonderulo,"Turkey with a side of #TipToe and #WantToWantMe, on Thanksgiving day! Halftime Performance @Lions https://t.co/G7R7oC40Jm" +06/28/2018,Musicians,@MeekMill,Watch the entire live performance of #StayWoke from the #BETAwards: https://t.co/9yoRoZV3pX https://t.co/jJJ3KSBgBL +06/28/2018,Musicians,@MeekMill,"RT @MeekMill: ""The odds against you and they double stacked...stay woke"" + +Listen to #SayWoke ft. @Miguel now: https://t.co/iA3SWlaICH https…" +06/28/2018,Musicians,@MeekMill,"""The odds against you and they double stacked...stay woke"" + +Listen to #SayWoke ft. @Miguel now:… https://t.co/Hp2lPxvIcB" +06/27/2018,Musicians,@MeekMill,Follow my #StayWoke playlist on @Spotify: https://t.co/cMo0V7blYf https://t.co/PIaQTksJlE +06/27/2018,Musicians,@MeekMill,Shout out #TheBeats1List for including Stay Woke. Hear it on @Beats1 this week https://t.co/rkQwl9BIHH https://t.co/zU1jSrhvn2 +06/27/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke with @Miguel on #RapCaviar: https://t.co/P4uxy6C8SX @Spotify https://t.co/oU6U5oXmtP +06/27/2018,Musicians,@MeekMill,RT @MeekMill: #StayWoke on @AppleMusic A List Hip-Hop: https://t.co/Qe37dgB61r https://t.co/VVpVKCbPZ6 +06/27/2018,Musicians,@MeekMill,"👁 @KingJames 👁 + +Listen to #StayWoke: https://t.co/cMo0V7blYf https://t.co/nfkXwncd3S" +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke on @TIDAL's THORO playlist: https://t.co/3sLdx7cMKh https://t.co/PyIHCMzf2e +06/25/2018,Musicians,@MeekMill,#StayWoke on @AppleMusic A List Hip-Hop: https://t.co/Qe37dgB61r https://t.co/VVpVKCbPZ6 +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke with @Miguel on #RapCaviar: https://t.co/P4uxy6C8SX @Spotify https://t.co/oU6U5oXmtP +06/25/2018,Musicians,@MeekMill,"RT @SpotifyUSA: Motivation music 💪 +Stream @MeekMill's new track #StayWoke with @Miguel on #RapCaviar now https://t.co/e0ZMe0Powq https://t.…" +06/25/2018,Musicians,@MeekMill,"RT @AppleMusic: Brand new @MeekMill featuring @Miguel. Listen to #StayWoke. +https://t.co/7V0TguR8vm" +06/25/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke ft. @Miguel now on @Spotify: https://t.co/4j8Vyhystg https://t.co/YpP6vRv3kE +06/25/2018,Musicians,@MeekMill,RT @MeekMill: Listen to #StayWoke ft. @Miguel now on @AppleMusic: https://t.co/MRRTkRkmSi https://t.co/T6guMPLvZz +06/25/2018,Musicians,@MeekMill,"RT @MeekMill: #StayWoke ft. @Miguel 👁 + +Listen now: https://t.co/inBU60WCnh https://t.co/3kQYWUDSbm" +06/25/2018,Musicians,@MeekMill,RT @KevinHart4real: So happy & proud of my brother @MeekMill .....Great performance...Great message...STAND UP PHILADELPHIA!!!!! +06/25/2018,Musicians,@MeekMill,"Kept the hood motivated, this the thanks I get? + +#StayWoke: https://t.co/iA3SWlaICH https://t.co/Q6VuRykeby" +06/25/2018,Musicians,@MeekMill,"I stay way from them clowns, watch how I move thru the circus + +#StayWoke: https://t.co/iA3SWlaICH https://t.co/wTbVuwzvFw" +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @AppleMusic: https://t.co/MRRTkRkmSi https://t.co/T6guMPLvZz +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @Spotify: https://t.co/4j8Vyhystg https://t.co/YpP6vRv3kE +06/25/2018,Musicians,@MeekMill,Listen to #StayWoke ft. @Miguel now on @TIDAL: https://t.co/HOk9wCaf3K https://t.co/uEJ4y5GR2t +06/25/2018,Musicians,@MeekMill,"#StayWoke ft. @Miguel 👁 + +Listen now: https://t.co/inBU60WCnh https://t.co/3kQYWUDSbm" +06/25/2018,Musicians,@MeekMill,"RT @RocNation: ⚡️ “Meek Mill - Stay Woke” by @RocNation + +https://t.co/36odNVICfA" +06/25/2018,Musicians,@MeekMill,#StayWoke ft. @miguel out tonight 👁 !!! +06/24/2018,Musicians,@MeekMill,RT @NYjusticeleague: Thanks to our brother @MeekMill for designing these #Woke tees exclusively for @PUMA —& donating the proceeds to #TheG… +06/24/2018,Musicians,@MeekMill,#staywoke https://t.co/qI30ggGeNg +06/23/2018,Musicians,@MeekMill,RT @RocNation: .@MeekMill is performing tonight at the #BETExperience at @STAPLESCenter in Los Angeles. https://t.co/hQtrlJbgaz +06/23/2018,Musicians,@MeekMill,#staywoke https://t.co/7ush13RKkh +06/22/2018,Musicians,@MeekMill,#staywoke https://t.co/WrFyc96yhS +06/19/2018,Musicians,@MeekMill,"RT @pandoramusic: For #BlackMusicMonth, we’re celebrating iconic artists who have over a billion spins on Pandora and we've passed the aux…" +06/16/2018,Musicians,@MeekMill,RT @NYjusticeleague: #Philly come thru!! On Monday @MeekMill and local community leaders will be at the Philly Criminal Justice Center call… +06/15/2018,Musicians,@MeekMill,RT @NYjusticeleague: We're going back to #Philly. And we're gonna keep going back til we get #Justice4Meek. Come out and show support and… +06/15/2018,Musicians,@MeekMill,"RT @NYjusticeleague: When @S_C_ says ""probation is a trap"" -that's TRUTH! After finally being released from prison for a probation violatio…" +06/09/2018,Musicians,@MeekMill,🚁🏍🎤🎬 LEGENDS OF THE SUMMER! Stream my #SummerJam performance tomorrow on @TIDAL at https://t.co/30WvWTJINs https://t.co/4Gk7Cj6IuB +06/06/2018,Musicians,@MeekMill,I’m taking over @BET weekend. Performing at #BETAwards and #BETX in LA https://t.co/iwBjZWflnK +06/06/2018,Musicians,@MeekMill,Listen to the Litty City playlist on @AppleMusic for #BlackMusicMonth https://t.co/HCavkU8uSs https://t.co/1EbekvsMIZ +05/28/2018,Musicians,@MeekMill,RT @BleacherReport: Cavs singing @meekmill’s “Dreams & Nightmares” in the locker room after the win 🔥 *NSFW* (Via @jordanclarksons) https:/… +05/14/2018,Musicians,@MeekMill,RT @TIDAL: M.I.A. in Miami this past weekend for #RollingLoud? Relive @MeekMill's comeback performance at the festival with this: https://t… +05/13/2018,Musicians,@MeekMill,"RT @RollingStone: Watch Meek Mill's surprise, first post-jail concert at Rolling Loud https://t.co/xayiDLTBHS" +05/13/2018,Musicians,@MeekMill,RT @Diddy: WELCOME HOME @MEEKMILL https://t.co/bzACRSrPCQ +05/10/2018,Musicians,@MeekMill,RT @RocNation: Tune into @espn to see @MeekMill live on @FirstTake right now! +05/10/2018,Musicians,@MeekMill,RT @fox5ny: Rapper @MeekMill tells his story of incarceration and now freedom to @rosannascotto @loristokes during #GDNY Watch online at th… +05/09/2018,Musicians,@MeekMill,"RT @Deena_CNN: Check out my CNN interview with @meekmill ahead of his speech at the @Innocence Project gala: ""Meek Mill's fight is not fini…" +05/08/2018,Musicians,@MeekMill,RT @TIDAL: .@angiemartinez is sitting down with @MeekMill today at 12pm EST. Watch the livestream exclusively on https://t.co/tPvxVkHkao ht… +05/08/2018,Musicians,@MeekMill,RT @CBSThisMorning: COMING UP: Rapper @MeekMill will join us LIVE on @CBS. https://t.co/yPDM509nUp +05/07/2018,Musicians,@MeekMill,"RT @billboard: TIDAL announces new series special ""One of One"" with Angie Martinez. + +The first guest will be rapper Meek Mill! https://t.co…" +05/07/2018,Musicians,@MeekMill,"RT @TIDAL: ""These are the vibes that kept my spirits up while I was incarcerated feeling like I was in a situation that was hell on earth.""…" +05/07/2018,Musicians,@MeekMill,"RT @billboard: Watch Meek Mill's interview with ""Dateline NBC"" detailing his incarceration https://t.co/sXFlY4ivLU https://t.co/NUpVUdE1kt" +05/07/2018,Musicians,@MeekMill,RT @TIDAL: .@angiemartinez is going live on TIDAL with @MeekMill tomorrow. Watch the livestream at 12pm EST/9am PST. For more info visit ht… +05/07/2018,Musicians,@MeekMill,RT @angiemartinez: going live on TIDAL with @MeekMill. 🙌🏼TOMORROW watch the livestream at 12pm EST/9am PST. for more info visit https://t.c… +05/07/2018,Musicians,@MeekMill,Going live with @angiemartinez tomorrow on @TIDAL. Watch the livestream at 12pm ET/9am PT. For more info visit… https://t.co/Rlb1uuEQrd +05/07/2018,Musicians,@MeekMill,"RT @DatelineNBC: NOW: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @LesterHo…" +05/06/2018,Musicians,@MeekMill,RT @RocNation: https://t.co/iivNdpfquI +05/06/2018,Musicians,@MeekMill,"RT @ColorOfChange: If you’re on probation you can go to prison for: + +-Missing a meeting with your probation officer. +-Having a work commi…" +05/06/2018,Musicians,@MeekMill,RT @NYjusticeleague: We also have to remember the initial arrest has been contested from jump. In @MeekMill own words... #Dateline #MeekMi… +05/06/2018,Musicians,@MeekMill,"RT @cut_50: ""I had 8 years probation. it turned into 16 years of probation. I'm still doing time for that case."" Watch the exclusive interv…" +05/06/2018,Musicians,@MeekMill,Tune into @DatelineNBC now in EST and CST timezones to watch “Dreams and Nightmares: The Meek Mill Story.” (Airs 6p… https://t.co/VLPMsSq1Zq +05/06/2018,Musicians,@MeekMill,"Tune into @DatelineNBC tonight at 7e/6c to watch “Dreams and Nightmares: The Meek Mill Story."" Hosted by… https://t.co/9QQeaPgHD3" +05/06/2018,Musicians,@MeekMill,RT @NBCNews: Why rapper Meek Mill wants to fix broken justice system https://t.co/4IYDzIQrcn +05/06/2018,Musicians,@MeekMill,"RT @DatelineNBC: Tonight on #Dateline at 7/6c, @LesterHoltNBC talks with rapper @MeekMill about the new path he's charting to reform the U.…" +05/06/2018,Musicians,@MeekMill,RT @TIDAL: Celebrate the warmer weather with @MeekMill's Pool Party playlist on https://t.co/Azgv5ZEpUs https://t.co/PhutrfrcNn +05/06/2018,Musicians,@MeekMill,"RT @LesterHoltNBC: Tune in to @DatelineNBC tonight at 7p/6c for “Dreams and Nightmares: The Meek Mill Story,” my exclusive in-depth interv…" +05/06/2018,Musicians,@MeekMill,"RT @NBCNightlyNews: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @LesterHolt…" +05/06/2018,Musicians,@MeekMill,RT @DatelineNBC: He had a dream that a helicopter was going to pick him up when he got out of prison. Go inside @MeekMill’s chopper ride fr… +05/05/2018,Musicians,@MeekMill,"RT @sixers: .@MeekMill, @questlove, @MNightShyamalan and @ZERTZ_86 in the house for today’s game! + +#PhilaUnite x #HereTheyCome https://t.c…" +05/05/2018,Musicians,@MeekMill,"RT @FairPunishment: .@MeekMill: ""A lot of these laws are made to keep most of these minorities trapped forever. … Let’s retire the #FreeMee…" +05/05/2018,Musicians,@MeekMill,RT @DatelineNBC: Musicians @questlove and @blackthought from @theroots talk about rapper @MeekMill’s place in Philadelphia’s hip-hop histor… +05/04/2018,Musicians,@MeekMill,RT @angiemartinez: talking to @LesterHoltNBC on air about sunday’s #Dateline #meekmill special. tune in on @Power1051 +05/04/2018,Musicians,@MeekMill,"RT @DatelineNBC: Rapper @MeekMill tells @LesterHoltNBC: ""It's about chasing your dreams no matter what you do in life."" Watch more of Meek'…" +05/04/2018,Musicians,@MeekMill,RT @billboard: Meek Mill & Pennsylvania Gov. urge criminal justice reforms https://t.co/ufPqyIudgM https://t.co/cYnOHYb6Gj +05/04/2018,Musicians,@MeekMill,RT @BostonGlobe: New England Patriots owner Robert Kraft chatted with rapper Meek Mill in their courtside seats at Game 2 of the Celtics NB… +05/04/2018,Musicians,@MeekMill,"RT @SBNation: Just Gucci Mane, Robert Kraft, and Meek Mill having a conversation https://t.co/ZGZbDeagXB" +05/04/2018,Musicians,@MeekMill,RT @NBCPhiladelphia: .@meekmill is in the building as the @sixers take on the @celtics #PhilaUnite #HereTheyCome https://t.co/oQxCfchrqN +05/04/2018,Musicians,@MeekMill,"RT @sixers: .@MeekMill in the building! + +#PhilaUnite x #HereTheyCome https://t.co/8PQ8DyLO49" +05/03/2018,Musicians,@MeekMill,RT @DatelineNBC: He had a dream that a helicopter was going to pick him up when he got out of prison. Go inside @MeekMill’s chopper ride fr… +05/03/2018,Musicians,@MeekMill,RT @RollingStone: Is the Meek Mill case a sign of substantial criminal justice reforms on the way? https://t.co/qgTyDYEJe4 https://t.co/Xjm… +05/03/2018,Musicians,@MeekMill,RT @tictoc: ⚡️ @MeekMill is calling for criminal justice reform in Pennsylvania to “speak for the voiceless” https://t.co/ffHk1GBpI1 +05/03/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: I’m proud to join state legislators, @sixers co-owner @MichaelGRubin, and artist @MeekMill today to announce proposals…" +05/03/2018,Musicians,@MeekMill,"RT @GovernorsOffice: Today at 11:00 AM, @GovernorTomWolf will join @RepDwightEvans, @sixers co-owner @MichaelGRubin, artist @MeekMill, and…" +05/03/2018,Musicians,@MeekMill,RT @EW: Meek Mill teaming with Amazon for six-part docuseries https://t.co/PtM2Our6au +05/03/2018,Musicians,@MeekMill,RT @RIAA: .@MeekMill's latest album Wins & Loses is officially Gold. It's Meek's third RIAA Album Award: https://t.co/ohedbtVnA4 @Atlantic… +05/02/2018,Musicians,@MeekMill,"RT @DatelineNBC: EXCLUSIVE: In his first in-depth sit-down interview since being released from prison, rapper @MeekMill tells NBC News’ @Le…" +04/29/2018,Musicians,@MeekMill,"RT @TIME: Rapper Meek Mill will be released from prison on bail +https://t.co/tz4jsojiXn" +04/27/2018,Musicians,@MeekMill,"RT @RollingStone: In one of his first post-jail interviews, Meek Mill reflects on the toll of prison https://t.co/mKHDS4oW2Y https://t.co/D…" +04/26/2018,Musicians,@MeekMill,RT @NBCNightlyNews: WATCH: Rapper Meek Mill speaks out to @LesterHoltNBC in an exclusive interview following his release from prison. https… +04/25/2018,Musicians,@MeekMill,"RT @RepKarenBass: There are thousands of men and women in jail right now for the same, unjust reasons that Meek Mill was put in jail for. I…" +04/25/2018,Musicians,@MeekMill,"RT @LesterHoltNBC: In an exclusive interview for an upcoming @DatelineNBC , Philadelphia rapper Meek Mill talks to me about his release fro…" +04/25/2018,Musicians,@MeekMill,RT @djkhaled: Bless up meekmill God is The Greatest 🙏🏽 https://t.co/19Jh2JvjTF +04/25/2018,Musicians,@MeekMill,RT @NYjusticeleague: “Ain’t this what we been waiting for?!” MEEK MILL IS FREE!!! Read this statement from Meek on his release. This is who… +04/25/2018,Musicians,@MeekMill,RT @KevinHart4real: Back like we never left....Welcome home meekmill ....Lets gooooooooo Sixers #PhillyStandUp… https://t.co/aLgGWH60Tv +04/25/2018,Musicians,@MeekMill,"RT @Spotify: Welcome home, Meek Mill 🙏 +https://t.co/92e0izlkJk https://t.co/aMRng5LdI1" +04/25/2018,Musicians,@MeekMill,RT @TIDAL: #MeekMill is finally a free man 🙌. RT if you’re blasting “Dreams and Nightmares”: https://t.co/DUpqAKYGD4 https://t.co/oc6P1TZL0D +04/25/2018,Musicians,@MeekMill,"RT @amazonmusic: ""I roared with the lions."" Here's to Philly's own Meek Mill! #MeekisFree https://t.co/Qlbm1llAxF https://t.co/U8FOqfsMo0" +04/25/2018,Musicians,@MeekMill,RT @TG3II: Yessirrr welcome home @MeekMill https://t.co/F5nz0VxXlL +04/25/2018,Musicians,@MeekMill,"RT @billboard: JAY-Z on Meek Mill prison release: ""A son of Philadelphia is a free man"" https://t.co/V2kVAgmUah https://t.co/9d9WZYpte7" +04/25/2018,Musicians,@MeekMill,"RT @RollingStone: Jay-Z celebrates Meek Mill's release from prison: ""Today, Meek Mill, a son of Philadelphia, is a free man"" https://t.co/j…" +04/25/2018,Musicians,@MeekMill,"RT @NBA: Joined by @KevinHart4real, @MeekMill rings the 🔔 in Philadelphia ahead of @MiamiHEAT/@Sixers Game 5! #NBAPlayoffs https://t.co/dOr…" +04/24/2018,Musicians,@MeekMill,"In the meantime, I plan to work closely with my legal team to overturn this unwarranted conviction and look forward… https://t.co/TVE1J7AD4Z" +04/24/2018,Musicians,@MeekMill,"To the Philly District Attorney’s office, I’m grateful for your commitment to justice. I understand that many peopl… https://t.co/nKUemVQLWJ" +04/24/2018,Musicians,@MeekMill,"I’d like to thank God, my family, and all my public advocates for their love, support and encouragement during this… https://t.co/2cQXcKgip7" +04/24/2018,Musicians,@MeekMill,RT @TMZ: Kevin Hart Visits Meek Mill in Philadelphia Prison https://t.co/6lnUfjiEM7 +04/24/2018,Musicians,@MeekMill,RT @Tip: #FreeMeek https://t.co/ekEbIc6rRu +04/24/2018,Musicians,@MeekMill,"RT @ShannonSharpe: Meek Mill didn’t kill anyone and can’t get a bond, but that’s none of my business. https://t.co/TTdtlSFlk1" +04/22/2018,Musicians,@MeekMill,RT @XXL: Boxer @Gervontaa wears a @MeekMill shirt in the ring after knocking out Jesus Cuellar https://t.co/6WUWGGXW6M +04/21/2018,Musicians,@MeekMill,"RT @RickRoss: #FreeMeek + +RT." +04/20/2018,Musicians,@MeekMill,RT @thefader: Meek Mill gives statement on cases involving his arresting officer being dismissed. https://t.co/6PW4IMoavi https://t.co/iQnI… +04/18/2018,Musicians,@MeekMill,"RT @TheRevAl: Attorney @TacopinaLaw talks about his client Meek Mill, the criminal justice system, policy reform, and more at the 2018 Nati…" +04/18/2018,Musicians,@MeekMill,RT @breakfastclubam: Meek Mill's Lawyer Discusses The Judge's Obsession & Unfair Treatment https://t.co/hEPEpIWbiy +04/18/2018,Musicians,@MeekMill,".@MeekMill's Lawyer, Joe Tacopina, Discusses The Judge's Obsession & Unfair Treatment In The Courtroom on… https://t.co/EWbARAnj2b" +04/18/2018,Musicians,@MeekMill,RT @breakfastclubam: We got #meekmills lawyer #joetacopina in the building >> he’s updating us and letting us know… https://t.co/M0jLcwQpGl +04/18/2018,Musicians,@MeekMill,RT @angiemartinez: so here’s what i learned today about the @meekmill case.... https://t.co/rL1P03sCfy +04/18/2018,Musicians,@MeekMill,RT @djenvy: meekmill attorney Joe Tacopina is here discussing everything going on with his case... Tune… https://t.co/UL0IEOIfxQ +04/18/2018,Musicians,@MeekMill,"RT @angelayee: We have meekmill lawyer Joe Tacopina giving us the details of meek’s case, the corrupt officer… https://t.co/DaAnRfbqC1" +04/18/2018,Musicians,@MeekMill,"RT @breakfastclubam: .@MeekMill's lawyer, Joe Tacopina joins The Breakfast Club tomorrow morning to discuss Meek's case. Make sure to tune…" +04/18/2018,Musicians,@MeekMill,".@MeekMill's lawyer, Joe Tacopina, will be on @breakfastclubam tomorrow morning to discuss Meek's case. https://t.co/gTZoTR3kHn" +04/17/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: When Meek Mill was resentenced to prison for parole violations, his case brought hundreds of thousands to call for cha…" +04/17/2018,Musicians,@MeekMill,"RT @XXL: Watch Meek Mill's interview with CNN +https://t.co/HmlAY5Hq0M" +04/17/2018,Musicians,@MeekMill,RT @okayplayer: #FreeMeekMill https://t.co/egJjSD2MzS +04/17/2018,Musicians,@MeekMill,"RT @FairPunishment: Meek Mill's case has been plagued by a staggering number of allegations of judicial, police, and prosecutorial miscondu…" +04/16/2018,Musicians,@MeekMill,"""Black lives matter but the system is consistently saying they don't."" - Angelo Pinto #FreeMeekMill #Justice4Meek… https://t.co/U2ZspW5ieP" +04/16/2018,Musicians,@MeekMill,RT @nytimesarts: The Philadelphia district attorney’s office threw its support behind a campaign to overturn the conviction of the rapper M… +04/16/2018,Musicians,@MeekMill,RT @XXL: The Philly D.A. is standing behind Meek Mill in support of his release from prison https://t.co/DPZcjk9chf +04/16/2018,Musicians,@MeekMill,"RT @CBSNews: Rapper Meek Mill's convictions should be vacated, Philadelphia district attorney says, arguing that he should have a new trial…" +04/16/2018,Musicians,@MeekMill,"RT @TIME: Rapper Meek Mill's conviction should be thrown out, prosector says https://t.co/tI4DSvpdmf" +04/16/2018,Musicians,@MeekMill,RT @DeSeanJackson11: Young Papi !! 💪🏾💪🏾 #freemeek https://t.co/yZ7FAagkqj +04/16/2018,Musicians,@MeekMill,RT @vicenews: Philadelphia DA is backing a new trial for rapper Meek Mill https://t.co/OHwD9ZEj7u +04/16/2018,Musicians,@MeekMill,RT @HipHopDX: 🗣 In the hood yelling #FreeMeek! The Philly DA has apparently agreed to a retrial for Meek Mill! https://t.co/TUWPGMYH6f +04/16/2018,Musicians,@MeekMill,RT @RocNation: https://t.co/t85kkJrqis +04/16/2018,Musicians,@MeekMill,"""The time is really now to create change"" - @Angelopinto720 #Justice4Meek #FreeMeekMill #ReformPhilly… https://t.co/ixDfJHr4Ao" +04/16/2018,Musicians,@MeekMill,"RT @Phillyfreezer: PHILADELPHIA – Join hundreds of community members, elected officials, celebrities, and professional athletes this Today…" +04/16/2018,Musicians,@MeekMill,RT @NBCNews: Supporters of rapper Meek Mill begin gathering outside of a Philadelphia court to rally and demand a judge overturn his convic… +04/16/2018,Musicians,@MeekMill,RT @ColorOfChange: #FreeMeekMill https://t.co/SiCSvVfYXF +04/16/2018,Musicians,@MeekMill,RT @NYjusticeleague: Listen to @marclamonthill ask the right questions!!! #FreeMeekMill https://t.co/fS5Zdfton7 +04/16/2018,Musicians,@MeekMill,"RT @RocNation: “I pledge to you, I will not rest until we reform this system...We need to free Meek!"" @SenSharifStreet @MeekMill #Justice4M…" +04/16/2018,Musicians,@MeekMill,"RT @RocNation: “Justice needs to be blind and it hasn't been...We need sanity, we need love, we need fairness."" @LtGovStack #ReformPhilly #…" +04/16/2018,Musicians,@MeekMill,"""Everyone needs to stand up for justice"" @LtGovStack #ReformPhilly #Justice4Meek #FreeMeekMill… https://t.co/RskLERAcb2" +04/16/2018,Musicians,@MeekMill,Come out to the Philadelphia Criminal Justice Center today from 8am – 12pm to show support for criminal justice ref… https://t.co/ZwrR9OCuY1 +04/15/2018,Musicians,@MeekMill,#FreeMeek https://t.co/KWzOdH3M1G +04/15/2018,Musicians,@MeekMill,RT @darrenrovell: Free Meek Mill shirts all over tonight in Philly ahead of 76ers game as grassroots effort to release the Philly born rapp… +04/14/2018,Musicians,@MeekMill,RT @ColorOfChange: What’s happening to #MeekMill is just one example of how our criminal justice system entraps thousands of Black ppl ever… +04/14/2018,Musicians,@MeekMill,RT @cut_50: Show support for @MeekMill and #CJreform nationwide by joining this rally at the Philadelphia Criminal Justice Center on MONDAY… +04/14/2018,Musicians,@MeekMill,"RT @AtlanticRecords: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MON…" +04/14/2018,Musicians,@MeekMill,"RT @Tyrese: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MONDAY from…" +04/14/2018,Musicians,@MeekMill,RT @PageSix: Frustrated Meek Mill speaks out from prison: I am a political prisoner https://t.co/yModn4sFXE https://t.co/FGCQZYtC6i +04/14/2018,Musicians,@MeekMill,RT @KevinHart4real: Just got off the phone with meekmill ....I love my guy...He’s in a really good space and wanted… https://t.co/9Z3Ff7WWnH +04/13/2018,Musicians,@MeekMill,"RT @RocNation: PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this MONDAY fr…" +04/13/2018,Musicians,@MeekMill,"PHILADELPHIA – Join thousands of community members, elected officials, celebrities, and professional athletes this… https://t.co/xRoXFy8zGZ" +04/13/2018,Musicians,@MeekMill,"RT @CNN: ""Who is Meek Mill and why do we want to free him?"" Someone, somewhere, is in dire need of this article. https://t.co/W1ZFulgEtY ht…" +04/13/2018,Musicians,@MeekMill,RT @jasoncollins98: #FreeMeekMill https://t.co/lBCQ4ySl3V +04/13/2018,Musicians,@MeekMill,RT @NYjusticeleague: Did u see @MeekMill last night w @LesterHoltNBC talking about his push for criminal justice reform & vowing 2use his… +04/13/2018,Musicians,@MeekMill,RT @donlemon: Visited @MeekMill today. Stay tuned. #MeekMill https://t.co/pTNKKa3XdF +04/13/2018,Musicians,@MeekMill,RT @thefader: Watch Meek Mill’s interview from prison with NBC’s Lester Holt. https://t.co/GFOhaNgcEN https://t.co/ZejDHDWehd +04/13/2018,Musicians,@MeekMill,"RT @RollingStone: Meek Mill talks ""helping minorities that come from these situations like myself"" in new interview https://t.co/wxibf33j9x…" +04/13/2018,Musicians,@MeekMill,RT @KameronBennett: Free Meek +04/13/2018,Musicians,@MeekMill,RT @RickRoss: #FreeMeekMill @NBCPhiladelphia https://t.co/ZBsxCZNRlb +04/13/2018,Musicians,@MeekMill,RT @billboard: Meek Mill tells Lester Holt he always thought his probation would bring him back to prison https://t.co/oqZVgPjycf https://t… +04/12/2018,Musicians,@MeekMill,Show support for criminal justice reform across the country by joining us for a rally and sit in at the Philadelphi… https://t.co/9tXNvfM0nV +04/12/2018,Musicians,@MeekMill,RT @NYjusticeleague: Join us and Philadelphia’s criminal justice community as we give court support & rally & sit in to #FreeMeekMill ! Mor… +04/12/2018,Musicians,@MeekMill,RT @MalcolmJenkins: #FreeMeek https://t.co/gxXE8cbMox +04/12/2018,Musicians,@MeekMill,RT @NBCNightlyNews: WATCH: Rapper Meek Mill was jailed for violating probation in a case that has received national attention and calls for… +04/12/2018,Musicians,@MeekMill,RT @KevinHart4real: #FreeMeek https://t.co/09zq1EJn2U +04/12/2018,Musicians,@MeekMill,RT @LesterHoltNBC: In Philadelphia speaking by phone with imprisoned rapper Meek Mill. Why his case has drawn attention and support from Ja… +04/12/2018,Musicians,@MeekMill,"RT @NBCNightlyNews: TONIGHT on @NBCNightlyNews: ""It was always a thought in the back of my mind that ten years of probation would bring me…" +04/12/2018,Musicians,@MeekMill,"RT @ComplexMusic: Wale sends love to Meek Mill: ""It's really deeper than rap."" + +https://t.co/YCeIkFEFrE https://t.co/t5gnwwGImF" +04/12/2018,Musicians,@MeekMill,"RT @GovernorTomWolf: When Meek Mill was recommitted to prison, hundreds of thousands of people signed petitions requesting that I step in t…" +04/11/2018,Musicians,@MeekMill,RT @billboard: Wale pens a heartfelt message about brotherhood after speaking with Meek Mill https://t.co/TC4jW0j96y https://t.co/kzHoIYinWV +04/11/2018,Musicians,@MeekMill,"RT @NBCPhiladelphia: BREAKING: @PhillyMayor visited Meek Mill in state prison today, says the rapper ""would better serve the community outs…" +04/11/2018,Musicians,@MeekMill,"RT @XXL: Meek Mill is visited in prison by the New England Patriots owner Robert Kraft and Philadelphia 76ers co-owner Michael Rubin +https…" +04/11/2018,Musicians,@MeekMill,RT @GenoSmith3: #FreeMeek +04/11/2018,Musicians,@MeekMill,RT @BleacherReport: Pats owner Robert Kraft visits Meek Mill in prison https://t.co/WZkT6aM0yb https://t.co/l2ZbwUmPZU +04/09/2018,Musicians,@MeekMill,"RT @TIDAL: Watch @MeekMill's new video for ""1942 Flows"" now on https://t.co/Azgv5ZEpUs https://t.co/s0XU2jX1SK" +04/09/2018,Musicians,@MeekMill,https://t.co/olpvgBtNvj NOW! https://t.co/9hRoBP17px +04/06/2018,Musicians,@MeekMill,"RT @VibeMagazine: The Supreme Court to look into Meek Mill’s bail release case +https://t.co/3k6zZdpMNr https://t.co/fH4CsoXpig" +04/06/2018,Musicians,@MeekMill,.@MeekMill Gets Prison Visit from 76ers Star Rookies https://t.co/bJzmKbuGTn https://t.co/B9cfoBbLNy +04/06/2018,Musicians,@MeekMill,RT @TMZ: Meek Mill Gets Prison Visit from 76ers Star Rookies https://t.co/2YQr55lt39 +04/06/2018,Musicians,@MeekMill,"RT @RollingStone: Philadelphia District Attorney ""does not oppose"" Meek Mill's bail request in new motion https://t.co/MCNeQieNvq https://t…" +04/06/2018,Musicians,@MeekMill,RT @djkhaled: meekmill https://t.co/37APtoahLW +04/05/2018,Musicians,@MeekMill,RT @Complex: Philadelphia DA officially files no opposition to releasing Meek Mill on bail: https://t.co/RZ9K0dvNC5 https://t.co/CVaSYNvGcf +04/05/2018,Musicians,@MeekMill,RT @thefader: Philadelphia D.A. files no opposition to releasing Meek Mill at the state supreme court level. https://t.co/fvth9k2S7g https:… +04/03/2018,Musicians,@MeekMill,RT @NBCSports: wow everybody wants to #FreeMeek ! https://t.co/nlWnP8TMKM +03/29/2018,Musicians,@MeekMill,"RT @spotifyartists: In the midst of the #FreeMeekMill movement, the one voice we’ve been missing is the Philly rapper himself. In this powe…" +03/28/2018,Musicians,@MeekMill,RT @youngthug: I miss my brada @MeekMill +03/28/2018,Musicians,@MeekMill,"RT @RickRoss: Meek Mill's mother pens emotional letter to Lady Justice: ""You've taken his innocence and abused his pride"" https://t.co/AG94…" +03/26/2018,Musicians,@MeekMill,"RT @thefader: Read Meek Mill’s mother’s op-ed, addressed to “Lady Justice."" https://t.co/Djl3kyHf21 https://t.co/cE2acizvgK" +03/26/2018,Musicians,@MeekMill,"RT @billboardhiphop: Meek Mill's mother's plea to Lady Justice: ""You've taken his innocence and abused his pride."" https://t.co/5m5FcGsUgs…" +03/26/2018,Musicians,@MeekMill,RT @REVOLTTV: #FreeMeekMill: Philadelphia D.A. says there is a “strong likelihood” @MeekMill’s conviction could be reversed. ➡️ https://t.c… +03/25/2018,Musicians,@MeekMill,RT @RickRoss: Free Meek Mill +03/25/2018,Musicians,@MeekMill,RT @BILLBELLAMY: Pennsylvania Governor Supports Meek Mill's Release From Prison https://t.co/ha1e6ESjMS +03/24/2018,Musicians,@MeekMill,RT @billboard: Pennsylvania governor Tom Wolf supports Meek Mill's prison release https://t.co/7ryvmQaoTw https://t.co/4pmKU8AG0A +03/24/2018,Musicians,@MeekMill,RT @RollingStone: Pennsylvania governor supports Meek Mill's release from prison https://t.co/0nDBFdHH9h +03/23/2018,Musicians,@MeekMill,"RT @TMZ: Meek Mill Gets Shout Out, Support from Pennsylvania's Governor Wolf https://t.co/Q2kWFDaBxd" +03/23/2018,Musicians,@MeekMill,RT @RepHarris: I stand with @GovernorTomWolf & @Krasner4DA in fighting for a more equitable justice system. It's time we ensure that the co… +03/23/2018,Musicians,@MeekMill,RT @GovernorTomWolf: But more needs to be done. I am calling on the PA General Assembly to pass the Justice Reinvestment II reforms to the… +03/23/2018,Musicians,@MeekMill,RT @GovernorTomWolf: I support D.A. Larry Krasner’s position in the case of Robert Williams (Meek Mill). Our criminal justice system is in… +03/21/2018,Musicians,@MeekMill,RT @WendyWilliams: Meek Mill might be a free man soon! https://t.co/EeGNgIdQfk https://t.co/8ibiSQuTPu +03/19/2018,Musicians,@MeekMill,RT @chrisrock: Free MeekMill. Such a sad story. https://t.co/ZGiTwptE3V +03/18/2018,Musicians,@MeekMill,RT @lildurk: FREE MEEK ⏰ +03/16/2018,Musicians,@MeekMill,"RT @RickRoss: Meek Mill addresses corrupt prison system & moving to Atlanta in rare prison interview with ""Rolling Stone"" https://t.co/wwJP…" +03/15/2018,Musicians,@MeekMill,RT @RollingStone: Watch Meek Mill's cousins recall the rapper's horrific arrest https://t.co/N1gcI9O0hO https://t.co/3291rNEC4W +07/01/2018,Sports_celeb,@Jumpman23,"Built for the blacktop. + +The #WhyNot Zer0.1 Low 'Black' is available now." +06/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 3 'International Flight' + +Shop 🇺🇸 https://t.co/fp1wZtfzaJ https://t.co/1hRXu9O4l0" +06/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 10 'White/University Red' + +Shop 🇺🇸 https://t.co/uOCJ7Fs3J0 https://t.co/Jbap55fzXO" +06/29/2018,Sports_celeb,@Jumpman23,"Frequent flyer. + +Explore the International Flight Collection, which pays tribute to three moments MJ elevated his g… https://t.co/MZFu3eFCYB" +06/28/2018,Sports_celeb,@Jumpman23,"Game for summer. + +Introducing the @RussWest44 #WhyNot Zer0.1 Low 'Black', dropping Sunday. https://t.co/mu4jolMKuW" +06/27/2018,Sports_celeb,@Jumpman23,"For the class of ’06. + +Inspired by @RussWest44’s high school days, the #AirJordan X ‘White/University Red’ drops Sa… https://t.co/tdf8R9tWxn" +06/26/2018,Sports_celeb,@Jumpman23,"RT @hornets: OFFICIAL: @KembaWalker is the 2017-18 NBA Sportsmanship Award Winner! + +⭐️⭐️ CONGRATS KEMBA! ⭐️⭐️ + +#BuzzCity x #NBAAwards http…" +06/26/2018,Sports_celeb,@Jumpman23,"RT @NBAonTNT: Russ has a message to all his fans that voted him for the 2017-2018 ""Best Style"" Award! https://t.co/zSjFQMfgVh" +06/26/2018,Sports_celeb,@Jumpman23,"""I took the doubt people had in me and let it fuel my fire."" - @VicOladipo  + +Learn how this year’s Most Improved Pl… https://t.co/Hwlsx3UfjR" +06/25/2018,Sports_celeb,@Jumpman23,"Designing a legacy. + +Discover the details behind the Jordan Legacy 312 and what this shoe means to designer Don C. #JUMPMAN" +06/25/2018,Sports_celeb,@Jumpman23,"Center stage. + +Explore how @billieeilish’s unique style starts with Jordans at Paris Fashion Week. #JUMPMAN" +06/23/2018,Sports_celeb,@Jumpman23,"Combining passion with performance. + +Explore the second #WhyNot collection from @RussWest44, debuted during Paris Fashion Week. #JUMPMAN" +06/23/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 12 'Michigan' + +Shop 🇺🇸 https://t.co/EbN8hyFc2c https://t.co/gUZF4287KC" +06/22/2018,Sports_celeb,@Jumpman23,Fit for fall. https://t.co/rcYNmX4IIi +06/22/2018,Sports_celeb,@Jumpman23,"Inspired by the court, led by the culture, built for the community. + +Russell Westbrook, Don C, and Billie Eilish br… https://t.co/xpFELPe9ai" +06/18/2018,Sports_celeb,@Jumpman23,"Flying high. + +Find out how the Wings Scholars Program is helping 26 incoming freshman begin their college journeys." +06/18/2018,Sports_celeb,@Jumpman23,"RT @aardodson: 26 high school students from across the country were recently named @Jumpman23 Wings Scholars, and awarded full rides to att…" +06/16/2018,Sports_celeb,@Jumpman23,"RT @russwest44: #FASHION KING 🔥🔥 These for you Mom, Thank you for inspiring me and showing me how fashion is done!!! #whynot In stores now!…" +06/16/2018,Sports_celeb,@Jumpman23,"Bow down. + +The @RussWest44 #WhyNot Zer0.1 'Fashion King' is available now." +06/14/2018,Sports_celeb,@Jumpman23,"On this day 20 years ago, the Boss won his 6th and final championship with a clutch jumper. + +In honor of that mome… https://t.co/gUKawnn5xK" +06/13/2018,Sports_celeb,@Jumpman23,"RT @TheNBPA: (7 of 12). + +The NBPA Best Side Hustle Award + + Can’t Knock the Hu$tle. Congrats @russwest44!! + +@purehoop illustrates The Brodi…" +06/12/2018,Sports_celeb,@Jumpman23,"All on the line. + +The #AirJordan XIV 'Last Shot' drops Thursday, 6/14 to celebrate the 20th anniversary of the Bos… https://t.co/GwWCy53TBw" +06/09/2018,Sports_celeb,@Jumpman23,RT @MooreMaya: It’s that time of year....Red Velvet cake Birthday shoes!!!!! So fun! Watch us hoop vs the Sun today at 2pm ET on NBA TV!! h… +06/09/2018,Sports_celeb,@Jumpman23,"Clutch gene. + +The #AJXXXII Low 'Last Shot' is available now." +06/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The Travis Scott x @Jumpman23 Air Jordan 4 + +Shop 🇺🇸 https://t.co/7HXjLecwv4 https://t.co/sA8eOtIK5q" +06/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 2 'Melo' + +Shop 🇺🇸https://t.co/vLkyGQFGAD https://t.co/I7sp51ToxG" +06/08/2018,Sports_celeb,@Jumpman23,"Fresh heat. + +The Women's #AirJordan III 'Particle Beige' is available now." +06/07/2018,Sports_celeb,@Jumpman23,"The closer. + +The #AirJordan XIV 'Last Shot' drops Thursday, 6/14 on the 20th anniversary of the Boss' final champi… https://t.co/8Qt9ahyT7E" +06/07/2018,Sports_celeb,@Jumpman23,"Back in style. + +See how @AlealiMay used classic LA hoops and the 90s as inspiration for this summer's hottest drops. #JUMPMAN" +06/07/2018,Sports_celeb,@Jumpman23,"Fully fitted. + +Preview the next two Jordan x @LEVIS collaborations, launching this month. https://t.co/RrpDIokJ0L" +06/07/2018,Sports_celeb,@Jumpman23,RT @dennyhamlin: Fireproof suede is hard to come by.. We have several different color variations but this is the material and shoe it’s cut… +06/06/2018,Sports_celeb,@Jumpman23,RT @trvisXX: JACK 4 HTX BLOCK PARTY https://t.co/wNEdhcllby +06/04/2018,Sports_celeb,@Jumpman23,"Coming up clutch. + +The #AJXXXII Low 'Last Shot' drops Saturday: https://t.co/MioWbRt7E7. https://t.co/ZCpcEN7JH9" +06/03/2018,Sports_celeb,@Jumpman23,"Back to '03. + +The #AirJordan II 'Melo' drops Saturday: https://t.co/WIPSqgQlAc. https://t.co/23VkuO4XG2" +06/02/2018,Sports_celeb,@Jumpman23,"All about the process. + +Explore how @bloody_osiris combines nostalgia and authenticity to style the #AirJordan XIV 'Last Shot'." +06/02/2018,Sports_celeb,@Jumpman23,"Taking it to the next level. + +Pulling inspiration from his brother’s graduation jacket and tie, the @RussWest44… https://t.co/K2D2U0CbU3" +06/01/2018,Sports_celeb,@Jumpman23,"Repping his hometown, @trvisXX introduces his first Jumpman collab. + +The #AirJordan IV 'Travis Scott' drops 6/9:… https://t.co/yd5Oy4qZAe" +06/01/2018,Sports_celeb,@Jumpman23,RT @russwest44: I am always inspired by you Brodie! The #WhyNot Zer0.1 “Masters” is dedicated to all the hard work you put in getting your… +06/01/2018,Sports_celeb,@Jumpman23,"Keep it real. + +The Michael Jordan Icon Edition Authentic Jersey is available now in North America:… https://t.co/4UbObkVfjO" +06/01/2018,Sports_celeb,@Jumpman23,"This is when it becomes a game of lasts. +Last games, last possessions, last shots. +To Love the Game is to own the… https://t.co/ycj88FbFoH" +06/01/2018,Sports_celeb,@Jumpman23,"Love the pressure. +Live for the Last Shot. https://t.co/R4f3cRgV69" +05/31/2018,Sports_celeb,@Jumpman23,"RT @TheNBPA: (3 of 12). + +The NBPA Freshest Award + +Style 👑. Congrats @russwest44!! + +Artist @purehoop, illustrates a portrait honoring the…" +05/28/2018,Sports_celeb,@Jumpman23,RT @NBA: 🙌 Jeff Green is an inspiration to all of us! #ThisIsWhyWePlay 🙌 https://t.co/193iSBDJzZ +05/27/2018,Sports_celeb,@Jumpman23,"🏆🏆🏆🏆🏆🏆 + +Pay tribute to the Boss and his final championship season with a limited edition jersey, available in North… https://t.co/KYVPam5oQo" +05/26/2018,Sports_celeb,@Jumpman23,"RT @GGGBoxing: My new official @Jumpman23 gear is still available, get yours before they run out again. +https://t.co/xYbhucnvTb https://t.…" +05/26/2018,Sports_celeb,@Jumpman23,"Made to impress, on and off the court. + +Read more about how the #AirJordan XI is suited for celebrating the journey." +05/26/2018,Sports_celeb,@Jumpman23,"Top honors. + +The #AirJordan XI 'Cap and Gown' is available now." +05/25/2018,Sports_celeb,@Jumpman23,"Made for medals. + +Get a closer look at the Jordan Zoom Tenacity 88 'Jasari' colorway, inspired by the shoe that dominated the '96 Olympics." +05/25/2018,Sports_celeb,@Jumpman23,"Fit for success. + +The #AirJordan XI 'Cap and Gown' drops tomorrow: https://t.co/Lf4IoKrdwK. https://t.co/yFJnaVJ9zZ" +05/25/2018,Sports_celeb,@Jumpman23,Can't beat heart. https://t.co/1hv7Gl8KyW +05/24/2018,Sports_celeb,@Jumpman23,"Stay authentic. + +The Michael Jordan Icon Edition Authentic Jersey drops in North America on 6/1:… https://t.co/t8qLngSqmk" +05/24/2018,Sports_celeb,@Jumpman23,RT @okcthunder: Thunder duo makes All-NBA. Russ (2nd team) for the 7th time and PG (3rd team) for the 4th time. #ThunderUp⚡️ https://t.co/0… +05/24/2018,Sports_celeb,@Jumpman23,"RT @spurs: LaMarcus Aldridge has been named to the league’s All-NBA Second Team. + +Read → https://t.co/fPsqSzioby https://t.co/A9VktSF7fM" +05/24/2018,Sports_celeb,@Jumpman23,"RT @Pacers: Add 2017-18 All-NBA Third Team to Vic's list of accomplishments this year ✅ + +A big congratulations to @VicOladipo! https://t.co…" +05/24/2018,Sports_celeb,@Jumpman23,"RT @Timberwolves: For the second-straight season, @JimmyButler is All-NBA. 🏅 https://t.co/v4BTnfzDB7" +05/24/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Art of a Champion + +The Women's @Jumpman23 Air Jordan 11 Low 'Rook to Queen' + +Shop 🇺🇸https://t.co/tHI2oF8HhM https://t.co/hy6…" +05/23/2018,Sports_celeb,@Jumpman23,"Top of the class. + +The #AirJordan XI 'Cap and Gown' drops Saturday: https://t.co/n54QmPbZhT. https://t.co/R4QmKeL6TV" +05/23/2018,Sports_celeb,@Jumpman23,"RT @Pacers: 🔒Led the NBA in steals and now named to the 2017-18 NBA All-Defensive First Team. + +Congrats Vic! https://t.co/eMxh1L8W4n" +05/23/2018,Sports_celeb,@Jumpman23,"👑 status. + +The Women's #AirJordan XI Low 'Rook to Queen' drops tomorrow: https://t.co/PKAQ7NDKHP. https://t.co/Sct0rtivxj" +05/23/2018,Sports_celeb,@Jumpman23,Doing it for H-Town. https://t.co/fgxgOIX61E +05/23/2018,Sports_celeb,@Jumpman23,"RT @MooreMaya: Oh, how far we’ve come! So excited to share this with the world & soar higher with my Jordan Brand Family https://t.co/CmPHs…" +05/22/2018,Sports_celeb,@Jumpman23,"@Raymondkenneth Hey @Raymondkenneth, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@doeyjavis Hey @doeyjavis, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@BenOlsem Hey @BenOlsem, +We got you. DM us with your shipping address and we'll take care of the rest." +05/22/2018,Sports_celeb,@Jumpman23,"@kcantu20 Hey @kcantu20, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us with y… https://t.co/9cZIwIEUhB" +05/22/2018,Sports_celeb,@Jumpman23,"@BWash_22 Hey @BWash_22, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us with… https://t.co/8wYynVSoMP" +05/22/2018,Sports_celeb,@Jumpman23,"@AnnieB1513 Hey @AnnieB1513, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us wi… https://t.co/hT4ST8lucY" +05/22/2018,Sports_celeb,@Jumpman23,"@Morgs_theONE Hey @Morgs_theONE, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/D4rfzfjEo1" +05/21/2018,Sports_celeb,@Jumpman23,"@MsKathleenPerry Hey @MsKathleenPerry, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster… https://t.co/C25mMe5dSp" +05/21/2018,Sports_celeb,@Jumpman23,"@luramccoy81 Hey @luramccoy81, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM us… https://t.co/HQ9t7lDApV" +05/21/2018,Sports_celeb,@Jumpman23,"@Lynx_Dynasty Hey @Lynx_Dynasty, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/yxux3DZT07" +05/21/2018,Sports_celeb,@Jumpman23,"@CoachWolfe13 Hey @CoachWolfe13, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/6Ujm5KuEf7" +05/21/2018,Sports_celeb,@Jumpman23,"@allieware22 @minnesotalynx @LA_Sparks @MooreMaya @WNBA Hey @allieware22, +We see you showing ❤️ to Maya Moore and w… https://t.co/kVS5PqDvTh" +05/21/2018,Sports_celeb,@Jumpman23,"@sportsiren @MooreMaya Hey @sportsiren, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poste… https://t.co/GSTMcmPcSO" +05/21/2018,Sports_celeb,@Jumpman23,"@Coach_LB_Brown Hey @Coach_LB_Brown, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster.… https://t.co/tnDv2zFtIB" +05/21/2018,Sports_celeb,@Jumpman23,"@ed_young_iii Hey @ed_young_iii, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/oA174Hxlkw" +05/21/2018,Sports_celeb,@Jumpman23,"@justicesikakane @WNBA @MooreMaya @minnesotalynx Hey @justicesikakane, +We see you showing ❤️ to Maya Moore and want… https://t.co/0AvZXfnpi4" +05/21/2018,Sports_celeb,@Jumpman23,"@houseofhenry Hey @houseofhenry, +We see you showing ❤️ to Maya Moore and want to send you an exclusive poster. DM u… https://t.co/FmquTkpnFK" +05/21/2018,Sports_celeb,@Jumpman23,"The late Gary Warnett’s candid and prolific sneaker commentary made him one of the culture’s best writers. + +Read mo… https://t.co/BsaJmCSL4q" +05/20/2018,Sports_celeb,@Jumpman23,RT @SLAMonline: Time to soar. https://t.co/jkFRo8HRrw +05/20/2018,Sports_celeb,@Jumpman23,"No bird soars too high, +If she soars with her own wings. https://t.co/OVLkKlkoVi" +05/19/2018,Sports_celeb,@Jumpman23,"Where it all started. + +The #AirJordan I 'Homage to Home' is available now." +05/19/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 32 Low 'Neo' + +Shop 🇺🇸https://t.co/vGglzuSNIs https://t.co/8U2yIUPLyr" +05/19/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Fresh Take. + +The Women’s @Jumpman23 Air Jordan I Rebel XX + +Shop ‘Top 3’ 🇺🇸 https://t.co/ukkvrxHi5p + +Shop ‘Chicago’ 🇺🇸 htt…" +05/18/2018,Sports_celeb,@Jumpman23,"Ready to soar. + +4-time WNBA Finals Champion, @MooreMaya, is poised to build onto her legacy. https://t.co/aSgfm5rjAB" +05/18/2018,Sports_celeb,@Jumpman23,"Suited for summer. + +The #AirJordan I High Zip 'Mica Green' is available now." +05/16/2018,Sports_celeb,@Jumpman23,"New look, classic colorway. + +The Women's #AirJordan I Rebel XX 'Top 3' drops Saturday: https://t.co/HflFO059yO. https://t.co/0239r0lFGW" +05/16/2018,Sports_celeb,@Jumpman23,"Solidifying a title, a legacy and a legend. + +Celebrate the Boss’ last game as a Chicago Bull with a limited edition… https://t.co/W2OxPL3cxh" +05/16/2018,Sports_celeb,@Jumpman23,"Chi-town shoutout. + +The Women's #AirJordan I Rebel XX 'Chicago' drops Saturday: https://t.co/5NdmPElbAX. https://t.co/ycdpQAk2Rz" +05/15/2018,Sports_celeb,@Jumpman23,"Bringing it back. + +The #AirJordan I 'Homage to Home' drops Saturday: https://t.co/5jdM2cfRhT. https://t.co/rNuvQ25UO7" +05/15/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 14 'Desert Sand' + +Shop 🇺🇸 https://t.co/bScES5AVpC https://t.co/RQ68w2Yaw4" +05/15/2018,Sports_celeb,@Jumpman23,"This is the show before the show. +When conferences are claimed, +And each win is a step closer to history." +05/14/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 11 Low 'Binary Blue' + +Shop 🇺🇸https://t.co/PgGJi6fxQf https://t.co/rWaa7rJ3Zm" +05/12/2018,Sports_celeb,@Jumpman23,RT @russwest44: This one for My ManMan!! Make sure y’all grab the “NoNo” color way. Out Now!!! Love you Son! #nono #manman #whynot https://… +05/12/2018,Sports_celeb,@Jumpman23,"For Noah. + +Inspired by his son's birthstone, the @RussWest44 #WhyNot Zer0.1 'No No' is available now." +05/12/2018,Sports_celeb,@Jumpman23,"Next chapter. + +The #AirJordan III 'White/Red' is available now." +05/09/2018,Sports_celeb,@Jumpman23,"Next up. + +Cultural icon Edison Chen introduces the world to his protege and fashion up-and-comer, Elle Hu. #JUMPMAN" +05/09/2018,Sports_celeb,@Jumpman23,"This is when the Point God soars to new heights, +With sights set on a ring. https://t.co/kGI38tnOGN" +05/09/2018,Sports_celeb,@Jumpman23,Persistence pays off. Go get yours @CP3. https://t.co/vIrFgUTxes +05/07/2018,Sports_celeb,@Jumpman23,"A community cornerstone. + +The #AirJordan III 'White/Red' drops Saturday: https://t.co/sPGCHyiVpj. https://t.co/mvd5sp1u6O" +05/07/2018,Sports_celeb,@Jumpman23,"@cjallday_7 Cap ✅ +Gown ✅ +Kicks ✅" +05/06/2018,Sports_celeb,@Jumpman23,"When the stage gets bigger, +and momentum swings with every second." +05/05/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The Women's @Jumpman23 Air Jordan 1 'Satin Shattered Backboard' + +Shop 🇺🇸 https://t.co/coqBz3LOxF https://t.co/FXYplThTdW" +05/04/2018,Sports_celeb,@Jumpman23,"Made for those who shatter expectations. + +The Women's #AirJordan I 'Shattered Backboard' drops tomorrow:… https://t.co/lP4MSDefak" +05/03/2018,Sports_celeb,@Jumpman23,"Iconic inspiration. + +Reina Koyano describes how Jordans play an integral part in her illustrations. #JUMPMAN" +05/03/2018,Sports_celeb,@Jumpman23,@RedSox Mookie making noise. +05/02/2018,Sports_celeb,@Jumpman23,"Heat wave. + +The Women's #AirJordan I Premium 'Desert Sand' is available now." +05/01/2018,Sports_celeb,@Jumpman23,RT @russwest44: Do You. #whynot 🤷🏾‍♂️ Tag me when you customize your pair .... get creative cause @Jumpman23 is sending out Why Not? Tshirt… +05/01/2018,Sports_celeb,@Jumpman23,All that matters is you do you. #WhyNot https://t.co/Vc8wxKIx31 +05/01/2018,Sports_celeb,@Jumpman23,"Freestyle or stay the course. Make a statement with markers, pens or paint. #WhyNot https://t.co/Tp8ilrlTPs" +05/01/2018,Sports_celeb,@Jumpman23,"Start with a blank canvas. + +The @RussWest44 #WhyNot Zer0.1 'Do You' is available now. https://t.co/Kd1I9W4fig" +05/01/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 1 + +Shop 'Blue Moon' 🇺🇸 https://t.co/oh9ghTBg8X + +Shop 'Clay Green' 🇺🇸 https://t.co/l16CO4ORhT https…" +04/30/2018,Sports_celeb,@Jumpman23,"Late birthday present, @trvisXX. + +Coming soon. https://t.co/UlhHr5Y5KS" +04/30/2018,Sports_celeb,@Jumpman23,"@trvisXX Happy born day, fam." +04/30/2018,Sports_celeb,@Jumpman23,"Make it your own. + +The @RussWest44 #WhyNot Zer0.1 ‘Do You’ drops tomorrow with customization markers in every box. https://t.co/0txThvenAE" +04/30/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 3 'Tinker' + +Shop 🇺🇸 https://t.co/stcxqvlCzo https://t.co/MP0IhwJno0" +04/29/2018,Sports_celeb,@Jumpman23,"This is the second act. +When the field gets narrower, +And the margin for error gets even smaller." +04/29/2018,Sports_celeb,@Jumpman23,"RT @Jumpman23: This is when you leave it all on the court, +Or spend the summer wishing you did." +04/28/2018,Sports_celeb,@Jumpman23,"This is when you leave it all on the court, +Or spend the summer wishing you did." +04/28/2018,Sports_celeb,@Jumpman23,"Top flight. + +The #AirJordan XI Low 'Cool Grey' is available now." +04/28/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Art of a Champion + +The @Jumpman23 Air Jordan 1 'Pass the Torch' + +Shop 🇺🇸 https://t.co/ntsqWyhyEG https://t.co/JgaVosHYLn" +04/28/2018,Sports_celeb,@Jumpman23,“Series ain’t over.” - @VicOladipo https://t.co/Ou1xIYz83L +04/28/2018,Sports_celeb,@Jumpman23,.@VicOladipo means business. https://t.co/WL0q4IZkYG +04/27/2018,Sports_celeb,@Jumpman23,"More than a shoe. + +Discover the #AirJordan III’s journey from PE to the Hall of Fame and why its impact off the cou… https://t.co/KijwuIGgqF" +04/27/2018,Sports_celeb,@Jumpman23,"Thank you for your dedication to the next generation of flight, Mr. Lara. We're honored to be a part of your classr… https://t.co/dRcWFXNeCO" +04/27/2018,Sports_celeb,@Jumpman23,"RT @nikestore: MOP + +The @Jumpman23 Air Jordan 9 Melo + +Shop 🇺🇸 https://t.co/599hmzRhDu https://t.co/xVb4DMY0lY" +04/26/2018,Sports_celeb,@Jumpman23,RT @JabariParker: Humbled to be named a finalist for this year's NBA Community Assist Award for my work with @MilwaukeeMPS. Show your suppo… +04/26/2018,Sports_celeb,@Jumpman23,RT @mconley11: Honored to be recognized as a finalist for the #NBACommunityAssist Award again! I would love your support by sharing this an… +04/26/2018,Sports_celeb,@Jumpman23,Brodie’s not done yet. https://t.co/GXE6w9EpAU +04/26/2018,Sports_celeb,@Jumpman23,What he said 👇 https://t.co/HwkNMmS88H +04/25/2018,Sports_celeb,@Jumpman23,"This is when failure becomes fuel for next season, +And glory can be short lived." +04/24/2018,Sports_celeb,@Jumpman23,"Showing out. + +@AlealiMay talks summer looks as she and her friends gear up for festival season. #JUMPMAN" +04/24/2018,Sports_celeb,@Jumpman23,"RT @aardodson: Since 2015, @Jumpman23's Wings Program has given over 200 kids full rides to college. + +Getting there once seemed bleak for…" +04/24/2018,Sports_celeb,@Jumpman23,Dimes on dimes. https://t.co/jscHRDSRQG +04/23/2018,Sports_celeb,@Jumpman23,"Cool and collected. + +The #AirJordan XI Low 'Cool Grey' drops Saturday: https://t.co/KcFSBTaIKN. https://t.co/TivtqmeGv6" +04/23/2018,Sports_celeb,@Jumpman23,One Moore for the trophy case. https://t.co/lPfeaOPK7G +04/22/2018,Sports_celeb,@Jumpman23,Keeping the dream alive. https://t.co/ujOPFPLQNx +04/22/2018,Sports_celeb,@Jumpman23,Rising to the occasion. https://t.co/GKhrt6xc7a +04/20/2018,Sports_celeb,@Jumpman23,"For Chicago. + +Discover how classic colorways combine to make up the Boss' signature look on the Air Jordan I 'Homag… https://t.co/3m8D0hRa32" +04/20/2018,Sports_celeb,@Jumpman23,"A classic returns. + +The #AirJordan X 'Shadow' is available now." +04/19/2018,Sports_celeb,@Jumpman23,"Highlight reel. + +The Best Hand in the Game collection introduces four new takes on the Air Jordan I. https://t.co/wQAsG3rG4x" +04/19/2018,Sports_celeb,@Jumpman23,Take notes. https://t.co/uVSNh8qC3M +04/19/2018,Sports_celeb,@Jumpman23,Thunder and lightning. https://t.co/Tfyvfq4UCS +04/18/2018,Sports_celeb,@Jumpman23,'Tis the season. https://t.co/De4FaK8N8J +04/18/2018,Sports_celeb,@Jumpman23,"Championship fit. + +The #AirJordan X 'Shadow' drops Friday in full family sizing: https://t.co/n6GTtgqN49. https://t.co/PjVeDjshPB" +04/17/2018,Sports_celeb,@Jumpman23,Everyone wants to be Brodie. https://t.co/kvWq8wk1mf +04/17/2018,Sports_celeb,@Jumpman23,".@GGGBoxing has only one special ingredient. +#JUMPMAN https://t.co/1SsyTf5BYL" +04/16/2018,Sports_celeb,@Jumpman23,"Different mindset. + +Discover what drives @CarmeloAnthony and how he adjusted his game to get back to the playoffs. #JUMPMAN" +04/16/2018,Sports_celeb,@Jumpman23,Let 'em talk. https://t.co/3En2ETaYcr +04/16/2018,Sports_celeb,@Jumpman23,"RT @PlayersTribune: .@VicOladipo knows a thing or two about winning in Indiana. + +He and the @Pacers are looking to make some noise in the…" +04/15/2018,Sports_celeb,@Jumpman23,Ice runs through @VicOladipo’s veins. https://t.co/OqUorNTRps +04/15/2018,Sports_celeb,@Jumpman23,"RT @carmeloanthony: FROZEN MOMENT - NEW CHAPTER +@Jumpman23 +#STAYME7O +#JUMPMAN https://t.co/6tXrviSCi6" +04/14/2018,Sports_celeb,@Jumpman23,The season starts now. #NBAPlayoffs +04/14/2018,Sports_celeb,@Jumpman23,"This is when the Love of the Game shines through. +From stadium to street court, +Blacktop to your own backyard;" +04/14/2018,Sports_celeb,@Jumpman23,"This is when process meets proving ground, +Pressure meets opportunity, +And patience pays off." +04/14/2018,Sports_celeb,@Jumpman23,This is when lights get brighter and fans get louder. +04/14/2018,Sports_celeb,@Jumpman23,"This is when MVP’s become champions, +idols become rivals, +And careers become legacies." +04/14/2018,Sports_celeb,@Jumpman23,To those who Love the Game… +04/14/2018,Sports_celeb,@Jumpman23,"Standout. + +The #AirJordan I 'Shadow' is available now." +04/13/2018,Sports_celeb,@Jumpman23,"Golden rule. + +The Women's #AirJordan XI Low 'Rose Gold' is available now." +04/12/2018,Sports_celeb,@Jumpman23,"Original one. + +The #AirJordan I 'Shadow' drops Saturday: https://t.co/VGJgVLuCWy. https://t.co/xCTCkZ0dWd" +04/12/2018,Sports_celeb,@Jumpman23,"If you don’t want it, @russwest44 is gonna get it. + +The Brodie has the triple-double crown, now he’s going for a r… https://t.co/JBpfLChIzN" +04/12/2018,Sports_celeb,@Jumpman23,Reign on. #WhyNot https://t.co/mvm5IrspIV +04/12/2018,Sports_celeb,@Jumpman23,"Made for this. + +Celebrate the Brodie and his triple-double legacy with the @RussWest44 #WhyNot Zer0.1 '3D King'." +04/11/2018,Sports_celeb,@Jumpman23,"Giving back. + +Chris Young and Roy Walker talk about the values of mentorship and how the community is built around… https://t.co/9SVnZTlrAm" +04/11/2018,Sports_celeb,@Jumpman23,"@KristineLeahy @russwest44 We see you, Kristine. The ‘Why Not’ Tour shirts were hot, but we have the last one in a… https://t.co/3k0YRtISF1" +04/10/2018,Sports_celeb,@Jumpman23,"Original remastered. + +Three iconic colorways return in the Women's 2018 Summer collection. https://t.co/8FBkG3HITb" +04/10/2018,Sports_celeb,@Jumpman23,"RT @NBA: Clinched! + +The @okcthunder come back from 18 down for the 115-93 W and a playoff berth! + +Russ: 23 PTS, 18 REB, 13 AST +PG: 27 PTS…" +04/10/2018,Sports_celeb,@Jumpman23,"A look back on the legendary day that @RussWest44 took the triple-double 👑. + +https://t.co/VUOaL6ZXEC" +04/09/2018,Sports_celeb,@Jumpman23,"Why not break records? + +On 4.9.17 @RussWest44 made history. Recognize greatness with the #WhyNot Zer0.1 ‘3D King’:… https://t.co/7yWHObwAIp" +04/09/2018,Sports_celeb,@Jumpman23,"Path to glory. + +Take a closer look at the moments that inspired the Art of a Champion collection. https://t.co/USQE0pBKnO" +04/09/2018,Sports_celeb,@Jumpman23,"RT @nikestore: On this day last year, @RussWest44 changed history forever. Celebrate the day the Brodie became the Triple-Double King with…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Hand over the crown. + +@EmmittWilliams6 drops 44 points, passing @KingJames for the most ever in the Boy's Jordan Brand…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 144 +⚫️: 136 + +Victory royale. The Home team wraps up the win in the 17th annual Jordan Brand Classic. #NEXTvsNEXT htt…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 86 +⚫️: 81 + +Crunch time. The boys teams are leaving it all on the floor with 14 minutes left in the game. #NEXTvsNEXT" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 89 +⚫️: 88 + +Comeback season. The Home team overcomes a double-digit deficit to lock up the W. #NEXTvsNEXT https://t.c…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: ⚪️: 54 +⚫️: 44 + +On the clock. The girls teams are putting in work with one half to go. #NEXTvsNEXT" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Calm before the storm. #NEXTvsNEXT + +Girls: 2:30pm ET on WatchESPN +Boys: 5:00pm ET on ESPN2 and WatchESPN https://t.co/Bs…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: New 🔥 + +The Class of XXXII is set for the main stage in their AJXXXII PEs. #NEXTvsNEXT https://t.co/rUnE5HmfZ7" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Ready for the spotlight. + +Watch the top prospects in the country battle for bragging rights at 5:00pm ET on ESPN2 and Wa…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Gametime. + +Watch the top prospects in the country battle for bragging rights at 2:30pm ET on WatchESPN. #NEXTvsNEXT htt…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Ready to ball. + +The boys from the Class of XXXII scrimmage in preparation for tomorrow’s game at 5:00pm ET on ESPN2 and…" +04/08/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Gameday prep. + +The girls from the Class of XXXII hit the court one more time before tomorrow’s tip-off at 2:30 ET. #NEXT…" +04/07/2018,Sports_celeb,@Jumpman23,"Under the radar. + +The #AJXXXII 'Stealth' is available now." +04/07/2018,Sports_celeb,@Jumpman23,"RT @nikestore: The @Jumpman23 Air Jordan 18 'Gym Red/Black' + +Shop 🇺🇸 https://t.co/qfv7k0pvBv https://t.co/mhB9S7DL6V" +04/07/2018,Sports_celeb,@Jumpman23,"RT @JordanClassic: Welcome to JBC. + +Peep our Instagram Story to see the next wave kick it off court. #NEXTvsNEXT https://t.co/82e9uJjmlh" +04/06/2018,Sports_celeb,@Jumpman23,Summer heat. 🔥 https://t.co/OSs5MKDK23 +04/06/2018,Sports_celeb,@Jumpman23,"RT @nikestore: Icons Evolved + +The Women's @Jumpman23 @nikesportswear 'The 1 Reimagined' Collection + +Shop 🇺🇸 https://t.co/Hd7tmUDFP6 https:/…" +04/06/2018,Sports_celeb,@Jumpman23,"No shortcuts to the top. + +@CP3 talks playing JV ball and his journey to the league. #JUMPMAN" +04/06/2018,Sports_celeb,@Jumpman23,The closer. https://t.co/SGdUvyY7Xa +04/05/2018,Sports_celeb,@Jumpman23,"RT @NickDePaula: Inside the delayed timeline and process of designing Chris Paul’s newest Jordan sneaker, the CP3.11. + +@CP3 becomes just th…" +04/03/2018,Sports_celeb,@Jumpman23,Going for history. #GoBlue https://t.co/XSTJ1IUzvT +04/02/2018,Sports_celeb,@Jumpman23,"High key. + +The Women's #AirJordan I Lifted 'Rose Gold' is available now: https://t.co/mc51UU0tW7. https://t.co/Q0HaBJGxs6" +04/01/2018,Sports_celeb,@Jumpman23,Not done yet. #GoBlue https://t.co/5jHRRB4Ivo +03/31/2018,Sports_celeb,@Jumpman23,"Leave it on the floor. + +@umichbball is ready to earn their spot in the National Championship. #GoBlue" +03/31/2018,Sports_celeb,@Jumpman23,Call him a Hall of Famer. https://t.co/6gpNOS20Fh +03/31/2018,Sports_celeb,@Jumpman23,"Searching for baskets. + +The #AirJordan XI Low 'Iridescent' is available now." +03/29/2018,Sports_celeb,@Jumpman23,"Ready for the show. + +The Jordan Baseball roster is geared up for Opening Day. https://t.co/H1yKmFUjGv" +03/29/2018,Sports_celeb,@Jumpman23,"RT @SLAMonline: The new all-time leading scorer in Hornets history! + +Congrats to @KembaWalker https://t.co/OJT2fCAbSF" +03/29/2018,Sports_celeb,@Jumpman23,"Proving ground. + +Al Jafiliya is where players in Dubai put their love for the game on full display." +07/02/2018,Sports_celeb,@kobebryant,Welcome to the family @KingJames #lakers4life #striveforgreatness @JeanieBuss @MagicJohnson and RP well done!!! 🙌🏾 +06/26/2018,Sports_celeb,@kobebryant,Hydration fit for an MVP. Congrats @JHarden13. Check @DrinkBODYARMOR for your limited-edition bottle.… https://t.co/DVnyOBTzqr +06/22/2018,Sports_celeb,@kobebryant,Accept that the present is made to learn from the past. Watch the latest episode of Musecage Basketball Network her… https://t.co/Heqm9LU6L3 +06/22/2018,Sports_celeb,@kobebryant,My man @icecube getting back at it with the second season of @thebig3! https://t.co/mNM0yNKKEJ +06/22/2018,Sports_celeb,@kobebryant,"Attention @NBADraft Class of 2018, your first assignment is to watch tonight’s episode of #Detail. We’re going back… https://t.co/awhZBUKsWV" +06/12/2018,Sports_celeb,@kobebryant,"It's a wrap on the @warriors @cavs #NBAFinals so for the next episode of #DETAIL, we're looking ahead to next seaso… https://t.co/ShYBw349Cd" +06/12/2018,Sports_celeb,@kobebryant,RT @ZachLowe_NBA: What does Kevin Durant want? https://t.co/h11FglePQ6 +06/11/2018,Sports_celeb,@kobebryant,"RT @AlexKennedyNBA: .@KobeBryant discussed his influence on today's NBA players, whether teams have tried luring him out of retirement, how…" +06/11/2018,Sports_celeb,@kobebryant,"WE had to face the Spurs EVERY post season pretty much. Not to mention the first super team in Boston but hey, what… https://t.co/SgLpYOJfJz" +06/10/2018,Sports_celeb,@kobebryant,Will power https://t.co/BO9zTSmI2k +06/05/2018,Sports_celeb,@kobebryant,Wow 🙌🏾 https://t.co/r29Jqv18qo +06/03/2018,Sports_celeb,@kobebryant,On tonight's episode of DETAIL... We're breaking down @kevinlove's defensive looks in this @cavs @warriors series.… https://t.co/xaX0NU9Ky3 +06/01/2018,Sports_celeb,@kobebryant,Athletes as creators? Yep. Met another one this week. Congrats @MalcolmJarod on your children's book about having a… https://t.co/WE1FQFRU3s +06/01/2018,Sports_celeb,@kobebryant,💩 play. Flush it. Move on #nbafinals2018 +05/31/2018,Sports_celeb,@kobebryant,#growup https://t.co/6kVVV7bzSa +05/31/2018,Sports_celeb,@kobebryant,"It's time for the #NBAFinals and the next episode of DETAIL is up on @espn+. This time, we're looking at how… https://t.co/3JeoxKb3SI" +05/29/2018,Sports_celeb,@kobebryant,"""The Mamba Mentality: How I Play"" book comes out October 23, 2018! Learn how I approached the process and the craft… https://t.co/uUOymSgLKk" +05/28/2018,Sports_celeb,@kobebryant,"RT @alexbazzell24: First look of @PHEEsespieces new, release point. @kobebryant can validate this isn’t a fluke lol she hit 20+ in a row w/…" +05/28/2018,Sports_celeb,@kobebryant,#Annie #Oscar #Emmy safe to say I’m focused on another mountain but I’m guessing it’s hard to fathom athletes suppo… https://t.co/3YQpCHhH67 +05/28/2018,Sports_celeb,@kobebryant,We can enjoy one without tearing down one. I love what he’s doing. Don’t debate what can’t be definitively won by a… https://t.co/MHjvujWPuB +05/28/2018,Sports_celeb,@kobebryant,#Lebranium 👏🏾 +05/28/2018,Sports_celeb,@kobebryant,🙏🏾 https://t.co/X9K8jHnkmQ +05/28/2018,Sports_celeb,@kobebryant,#mambamentality 🙏🏾 #Congrats https://t.co/pQdn0mISDH +05/27/2018,Sports_celeb,@kobebryant,"RT @ConnecticutSun: New career high ✔️ + +@rachelbanham_1 showed up to work last night, locking in 14 points. https://t.co/2ZQ4yhyzNk" +05/26/2018,Sports_celeb,@kobebryant,Get em lil sis 🙌🏾 #goldmamba https://t.co/rAwJhtT8as +05/25/2018,Sports_celeb,@kobebryant,👀 @FCHWPO We're looking at the @celtics pushing hard in transition vs the @cavs in the next episode of DETAIL. It'… https://t.co/h8VLBfCeIm +05/25/2018,Sports_celeb,@kobebryant,"RT @ZachLowe_NBA: ""There is no way we can do what we do without him."" What Trevor Ariza, always playing and rarely discussed, means to the…" +05/22/2018,Sports_celeb,@kobebryant,👀 @StephenCurry30. Check out the newest Detail on the @ESPN+ app from Sunday's @warriors @HoustonRockets game. We… https://t.co/BgNnUtFrIQ +05/20/2018,Sports_celeb,@kobebryant,🙌🏾 https://t.co/g1pbTIYoZz +05/19/2018,Sports_celeb,@kobebryant,Un grande. Un mito @gianluigibuffon @juventusfc #buffon #juve +05/18/2018,Sports_celeb,@kobebryant,"RT @DrinkBODYARMOR: Basketball Legend @DianaTaurasi is #ObsessedWithBetter. 🏀🔥🐐 +Welcome to #TeamBODYARMOR. #BODYARMORLYTE +cc: @KobeBryant 🔈…" +05/17/2018,Sports_celeb,@kobebryant,Many thanks to @TheView for inviting me to the show to meet the amazing Thompson family. I'm honored to help them r… https://t.co/CLhBxUfBhq +05/17/2018,Sports_celeb,@kobebryant,🙏🏾 despite me calling them the evil empire while I was playing lol @espn has been a GREAT partner #moretocome https://t.co/DKfGC5lVlG +05/17/2018,Sports_celeb,@kobebryant,Why? Because I am incapable of coming up with and writing an idea on my own? #dearbasketball #detail #myideas… https://t.co/BjNnPEqtDq +05/17/2018,Sports_celeb,@kobebryant,👀@jaytatum0 is the next subject of DETAIL. Watch my analysis from Game 2 of the Eastern Conference Finals on the E… https://t.co/ar4wYFUgLc +05/13/2018,Sports_celeb,@kobebryant,Thank you. Will do #Detail https://t.co/JvT2cOhR1R +05/13/2018,Sports_celeb,@kobebryant,🙏🏾 #detail https://t.co/SUTvXhU3B8 +05/13/2018,Sports_celeb,@kobebryant,Haha that’s a good look @Arike_O #mambabarking lol https://t.co/rqPxTM2x1I +05/13/2018,Sports_celeb,@kobebryant,Yup #bookem https://t.co/4uTIH9N68G +05/12/2018,Sports_celeb,@kobebryant,"👀@KingJames In the next episode of Detail, I take a look at Cavs/Celtics regular season games before they head into… https://t.co/LugzwXEdBg" +05/12/2018,Sports_celeb,@kobebryant,💯 https://t.co/FwaOi0ftwJ +05/12/2018,Sports_celeb,@kobebryant,Tomorrow https://t.co/rk1mMEMK3e +05/11/2018,Sports_celeb,@kobebryant,🙌 @paugasol https://t.co/FYVk5odSHF +05/06/2018,Sports_celeb,@kobebryant,👀 @Jrue_Holiday11 is the focus for DETAIL's newest episode. Watch my analysis of Friday night's game now on the ESP… https://t.co/KfafKgOEWe +05/03/2018,Sports_celeb,@kobebryant,Lol Saturday #Detail https://t.co/5ftIsJeAOX +05/01/2018,Sports_celeb,@kobebryant,👀 @spidadmitchell is the focus for DETAIL's newest episode. Watch my analysis of yesterday's game now on the ESPN+… https://t.co/nMRpyALeEF +04/23/2018,Sports_celeb,@kobebryant,@BelieveInBlopp Sunday #Detail +04/22/2018,Sports_celeb,@kobebryant,Hahaha #congrats #round2 https://t.co/8aR028E0F4 +04/20/2018,Sports_celeb,@kobebryant,Ha! Next #detail episode will be the 30th. I haven’t decided which player will be the focus. https://t.co/N0zVcSZJUq +04/19/2018,Sports_celeb,@kobebryant,🙏🏾 #coachpop +04/18/2018,Sports_celeb,@kobebryant,"Thanks @Gatorade, @DrinkBODYARMOR will take it from here... #ObsessedWithBetter #ObsessionIsNatural @JHarden13… https://t.co/A2P5mk4VP5" +04/18/2018,Sports_celeb,@kobebryant,#ObsessedWithBetter #obsessionisnatural @DrinkBODYARMOR @darrenrovell https://t.co/CQRP827nbi +04/17/2018,Sports_celeb,@kobebryant,Nah... I coach with content #Detail https://t.co/X8z7i4UJp8 +04/17/2018,Sports_celeb,@kobebryant,My man (Denzel voice) #DETAIL https://t.co/sD2aKshSws +04/17/2018,Sports_celeb,@kobebryant,That’s what I LOVE to hear @mrcramher If he can start understanding these concepts at 12 then how high will his bas… https://t.co/EUtAiZRgzO +04/17/2018,Sports_celeb,@kobebryant,🙏🏾 #detail https://t.co/Gor8FfD4CS +04/16/2018,Sports_celeb,@kobebryant,👀 @demar_derozan #Detail. Watch Episode 2 now on ESPN+ https://t.co/qzWPnGEJUa +04/15/2018,Sports_celeb,@kobebryant,#BEYCHELLA +04/12/2018,Sports_celeb,@kobebryant,"Determination wins games, but Detail wins championships...Check out Detail, our new show from Granity Studios, on E… https://t.co/HdZUd5izg1" +04/11/2018,Sports_celeb,@kobebryant,LOVE IT https://t.co/H80FOjRuhm +04/09/2018,Sports_celeb,@kobebryant,Congrats @ivypochoda 🙌 https://t.co/nkMq703BZ5 +04/06/2018,Sports_celeb,@kobebryant,"RT @TheEllenShow: Just shooting some hoops with the star of the NCAA season @Arike_o, @KobeBryant and @IceCube. No big deal. https://t.co/D…" +04/05/2018,Sports_celeb,@kobebryant,"RT @VandyWBB: What @kobebryant said 👇🏽👇🏽👇🏽 + https://t.co/SmrYab39P9" +04/04/2018,Sports_celeb,@kobebryant,Wow! Dear Basketball nominated for three Sports Emmys and a Webby! Thank you for keeping the love going for our an… https://t.co/KKl22R3UNF +04/03/2018,Sports_celeb,@kobebryant,Congrats @NovaMBB #champs 🙌 https://t.co/2xySr5rhCA +04/02/2018,Sports_celeb,@kobebryant,WOW! @Arike_O #lifecomplete #MambaMentality +04/02/2018,Sports_celeb,@kobebryant,@Arike_O WOW +03/31/2018,Sports_celeb,@kobebryant,Shoutout to two of my all time fav @UConnWBB players on the end of an amazing collegiate career @KayNurse11 @MochaTrapuccino 🙌🙌 +03/31/2018,Sports_celeb,@kobebryant,Nah... it’s complete by finishing the job on Sunday @Arike_O #MambaMentality https://t.co/pvL95JCZHn +03/31/2018,Sports_celeb,@kobebryant,@NancyLieberman @ncaawbb Great to catch up with you @NancyLieberman and witness two epic games. The future of women… https://t.co/HGiIsUvpUd +03/31/2018,Sports_celeb,@kobebryant,Big time shot Arike! We are a @UConnWBB family but we love seeing great players making great plays. I know my lil s… https://t.co/pH6cpKARhA +03/30/2018,Sports_celeb,@kobebryant,From the Book of Antetokounmpo: The greatest gift is understanding HOW to use the gifts we’ve been given.… https://t.co/qKLB96eyAY +03/22/2018,Sports_celeb,@kobebryant,👀 @DeMar_DeRozan #kobe360 #MambaArmy https://t.co/jSuvuO3LTY +03/16/2018,Sports_celeb,@kobebryant,I LOVED IT 🙌 https://t.co/o4cfzMlh3c +03/16/2018,Sports_celeb,@kobebryant,Well deserved @tomi_adeyemi I read it in just about a day!! LOVED it #ChildrenofBloodandBone #congrats https://t.co/8wTh0OwKq2 +03/09/2018,Sports_celeb,@kobebryant,Jimmy dresses up my Oscar and I talk about what’s coming next - tonight on ABC #KIMMEL #DearBasketball https://t.co/OS2gZrZJnb +03/04/2018,Sports_celeb,@kobebryant,🙏🏾🙏🏾 https://t.co/5KH8psknD0 +03/03/2018,Sports_celeb,@kobebryant,🙌 @33katielou @UConnWBB https://t.co/mDLwSnF2cE +03/02/2018,Sports_celeb,@kobebryant,RT @judyseto: You too can get championship care for your injuries and help to prevent future ones. #GetPT1st @MoveForwardPT @kobebryant htt… +03/01/2018,Sports_celeb,@kobebryant,"When the world stops, there’s only one option - #ChooseGo #Nike https://t.co/JKJsrBpbBU" +03/01/2018,Sports_celeb,@kobebryant,Cheryl Boone Isaacs 🙌 #ICONMANN https://t.co/iHCRPNJ8AV +03/01/2018,Sports_celeb,@kobebryant,Lace up. Get out. #ChooseGo https://t.co/Yem7pKthUW +02/16/2018,Sports_celeb,@kobebryant,On my way LA! https://t.co/TZUWXqpTo3 +02/15/2018,Sports_celeb,@kobebryant,"Shark or Seal, Lion or Gazelle, Wolf or Sheep...which one are you? Watch the latest episode of Musecage Basketball… https://t.co/SVWmlY1hMY" +02/13/2018,Sports_celeb,@kobebryant,"RT @UConnWBB: BIG NEWS! CD will be inducted into the Women's Basketball Hall of Fame!! Congrats CD!! + +@WBHOF // #UConnNation // #DemandMor…" +02/12/2018,Sports_celeb,@kobebryant,Proud to have my own Granity Studios be a part of the Evolve Entertainment Fund. L.A. is a global hub of creativity… https://t.co/SzEklCEDrd +02/12/2018,Sports_celeb,@kobebryant,"Happy birthday to the 🐐, my muse, my mentor and friend @RealBillRussell" +02/09/2018,Sports_celeb,@kobebryant,Much luv to @JordanClarksons and @Larrydn22 two of my fav young guns. Do great things! You know where to find me sh… https://t.co/kVBqH4glfw +02/08/2018,Sports_celeb,@kobebryant,RT @Eagles: Watch live as the World Champion Philadelphia Eagles celebrate the city's first-ever Super Bowl. https://t.co/sctJ7uEuDp +02/08/2018,Sports_celeb,@kobebryant,I wish I could be there @greengoblin but building a studio from the ground up got me in #Mambamode not to mention m… https://t.co/fDBShmMf9N +02/07/2018,Sports_celeb,@kobebryant,Loved all the Protro thoughts. @BrianPatrickP @ImGeraLd @AirMikey were fastest and closest. Congrats and please hit… https://t.co/dJKTWszLLF +02/07/2018,Sports_celeb,@kobebryant,Dream Big things then Do Big things @WNBAPrez the @WNBA future is bright https://t.co/DrpdN2SbQh +02/07/2018,Sports_celeb,@kobebryant,Kobe 1 Protro. 2005 design. Modern day technology. Drops Feb. 17. #yourewelcome https://t.co/ltNbRYqBM2 +02/07/2018,Sports_celeb,@kobebryant,Protro = Performance Retro +02/07/2018,Sports_celeb,@kobebryant,🙏🏾 https://t.co/6lHlUpKV19 +02/06/2018,Sports_celeb,@kobebryant,"RT @jemelehill: Spent this morning chatting w/ legend @kobebryant. Got his thoughts on his relationship w/ Bill Russell, the evolution of b…" +02/06/2018,Sports_celeb,@kobebryant,"RT @TheUndefeated: Be a part of our live audience taping for our BHM special #DearBlackAthlete in Birmingham, Ala. on Feb. 7. +Doors open a…" +02/05/2018,Sports_celeb,@kobebryant,What does the word “Protro” mean? 🤔 Special prize to the first to reply with the correct guess. +02/05/2018,Sports_celeb,@kobebryant,YES!!!!!!!!!!!! #EAGLES #SUPERBOWLCHAMPS #PHILLY YES!!!!!!!!!!!!!!!!! +02/04/2018,Sports_celeb,@kobebryant,It’s go time #EaglesNation #FlyEagleFly +02/04/2018,Sports_celeb,@kobebryant,🙌 https://t.co/bMubNoZTZ0 +02/04/2018,Sports_celeb,@kobebryant,💪 https://t.co/gp5JbAZx2h +02/03/2018,Sports_celeb,@kobebryant,🙌 @VULions https://t.co/3SIgKM1VgF +02/02/2018,Sports_celeb,@kobebryant,Yup! I LOVE it @DrinkBODYARMOR #fam #ObsessionIsNatural https://t.co/Qq599gJq14 +02/01/2018,Sports_celeb,@kobebryant,Congrats and well deserved @SerenaWinters wish you nothing but epicness!! #laker4life #brightfuture https://t.co/b4sIB2VYbx +02/01/2018,Sports_celeb,@kobebryant,@MilesBrown 👍 #Blackish +02/01/2018,Sports_celeb,@kobebryant,Thank you for having me! I learned so much in just the one day!@violadavis you are truly one of the greats 🙌… https://t.co/oe8OD8w8TU +01/31/2018,Sports_celeb,@kobebryant,Rest In Peace my brother 🙏🏾#RasualButler +01/31/2018,Sports_celeb,@kobebryant,@JHarden13 #60 #tripdub @DrinkBODYARMOR #obsessionisnatural +01/30/2018,Sports_celeb,@kobebryant,Great to witness the whole @shondarhimes family doing work today. Happy early bday @kerrywashington! https://t.co/ZPJuWP8vBV +01/29/2018,Sports_celeb,@kobebryant,Congrats to my man @kendricklamar on a big night last night #GrammyAwards #damn +01/28/2018,Sports_celeb,@kobebryant,Simple @rogerfederer = 🐐 #AustralianOpen +01/27/2018,Sports_celeb,@kobebryant,Get healthy @boogiecousins You will comeback stronger. If you need anything on my end just holla 🙏🏾 +01/24/2018,Sports_celeb,@kobebryant,From #Akron to #30k @KingJames well done my brotha +01/23/2018,Sports_celeb,@kobebryant,What?? This is beyond the realm of imagination. It means so much that the @TheAcademy deemed #DearBasketball worthy… https://t.co/dC7Yxkcioo +01/22/2018,Sports_celeb,@kobebryant,Getting there wasn’t the goal @Eagles let’s finish the job #focus #superbowl +01/21/2018,Sports_celeb,@kobebryant,RT @serenawilliams: I've conquered a lot of things... blood clots in my lungs- twice... knee and foot surgeries... winning grand slams bein… +01/21/2018,Sports_celeb,@kobebryant,#clutch https://t.co/W2d1gdP0eI +01/19/2018,Sports_celeb,@kobebryant,"RT @MSU_WBasketball: 👀 the alternate @Nike uni’s and @kobebryant AD’s 👟 we’ll be rocking on Saturday 🔥 +#GoGreen #SwooshFam #Nike https://t…" +01/16/2018,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: Congrats to @Maddie_Mastro on qualifying to rep the USA in PyeongChang. 🇺🇸🇺🇸🇺🇸 #TeamBODYARMOR https://t.co/HSVMmmI6O0 +01/15/2018,Sports_celeb,@kobebryant,🙌 https://t.co/4wsJCmOuGL +01/15/2018,Sports_celeb,@kobebryant,Keep moving! #ThankYouMLK50 https://t.co/tdbHQlQb3s +01/12/2018,Sports_celeb,@kobebryant,"""Detail"" - my new show from Granity Studios - hits ESPN in March. Viewers can expect to learn how the pros better… https://t.co/TWVweCfePz" +01/12/2018,Sports_celeb,@kobebryant,Have you seen #DearBasketball yet? Let me know what you think below and check out the #BTS documentary!… https://t.co/Rcy0Kh9WMF +01/11/2018,Sports_celeb,@kobebryant,#16 https://t.co/7xS5IKVrWl +01/05/2018,Sports_celeb,@kobebryant,"“You gave a six-year-old boy his Laker dream, and I’ll always love you for it.” https://t.co/J0hxcfGtLW… https://t.co/I2ykijUseH" +01/05/2018,Sports_celeb,@kobebryant,Catch #Kimmel tonight on ABC! #DearBasketball https://t.co/fYb5FZbsrm +01/04/2018,Sports_celeb,@kobebryant,Shooting is the key that opens every door the game has to offer. Watch the latest episode of Musecage Basketball Ne… https://t.co/pU8oVw9sL6 +01/03/2018,Sports_celeb,@kobebryant,#DeRozan https://t.co/iowndyuCwQ +12/30/2017,Sports_celeb,@kobebryant,Working with @GlenKeanePrd & John Williams on #DearBasketball was surreal. So much heart and soul went into this sp… https://t.co/1fQRdzYWbi +12/28/2017,Sports_celeb,@kobebryant,RT @ramonashelburne: I always love when @ZachLowe_NBA nerds out on jerseys. But nothing about the Lakers new 🐍 uniforms nerdy. https://t.co… +12/28/2017,Sports_celeb,@kobebryant,RT @espn: Mamba Mentality inspired. https://t.co/WdMioPOtFk +12/23/2017,Sports_celeb,@kobebryant,Evolution or extinction...this is the way of ‘The Arc’. Watch the latest episode of Musecage Basketball Network her… https://t.co/OpEghnmbF2 +12/23/2017,Sports_celeb,@kobebryant,A new season of Musecage Basketball Network premieres tonight on @espn after the game! #MBN https://t.co/2H8Ml1N6nN +12/22/2017,Sports_celeb,@kobebryant,I couldn’t imagine anyone else directing and animating something so personal to me. Thank you @glenkeaneprd… https://t.co/CN2upGzeEg +12/22/2017,Sports_celeb,@kobebryant,Relive history this holiday season with #NBA2K18 w/ limited new MyTEAM cards featuring different points of my caree… https://t.co/Tu24xtX5wd +12/21/2017,Sports_celeb,@kobebryant,💪 https://t.co/tpeVb4vqk2 +12/21/2017,Sports_celeb,@kobebryant,Geno the #GOAT @UConnWBB #1000 +12/19/2017,Sports_celeb,@kobebryant,Great to see you tonight my brother. https://t.co/nf61mDG3L7 +12/19/2017,Sports_celeb,@kobebryant,"Thanks to the Lakers organization and the best fans in the world. You gave a six-year-old boy his Laker dream, and… https://t.co/3ysIsNysyE" +12/18/2017,Sports_celeb,@kobebryant,#8v24 https://t.co/DUuSb1fsup +12/18/2017,Sports_celeb,@kobebryant,"Different animal, same beast. https://t.co/1VEmcfG4Be" +12/18/2017,Sports_celeb,@kobebryant,"My love letter to basketball, Directed & Animated by @GlenKeanePrd, Original Score by John Williams. Watch it here!… https://t.co/jydH0q0mhx" +12/15/2017,Sports_celeb,@kobebryant,“You asked for my hustle - I gave you my heart.” #DearBasketball #ComingSoon @GlenKeanePrd https://t.co/ojjafQ4CMd +12/13/2017,Sports_celeb,@kobebryant,Always good to catch up with my man Coach Geno https://t.co/4V4pOdX9cQ +12/13/2017,Sports_celeb,@kobebryant,RT @judyseto: Just finished “Performing Under Pressure” course for @ACUMHPS Masters degree in High Performance Sport. Great info that appli… +12/10/2017,Sports_celeb,@kobebryant,RT @Hargraves24: This is what @kobebryant said. Don't click on @ESPN. https://t.co/mbSuZJPQl5 +12/10/2017,Sports_celeb,@kobebryant,Nope https://t.co/9qSgqC1ywT +12/10/2017,Sports_celeb,@kobebryant,RT @travelinglao: @espn @RichBTIG I'm starting to think you are right on about @espn they are getting desperate for clicks and viewership;… +12/10/2017,Sports_celeb,@kobebryant,👏 @SpectrumSN https://t.co/lLqD50hx4d +12/09/2017,Sports_celeb,@kobebryant,He and they will be just fine. They will do the necessary work and yrs from now none of u will remember the struggl… https://t.co/SRcowY1gUO +12/08/2017,Sports_celeb,@kobebryant,My man 💪 🙌 https://t.co/XjHGndD2gN +12/05/2017,Sports_celeb,@kobebryant,🙏🏻 https://t.co/jFrMKuNu9Y +12/01/2017,Sports_celeb,@kobebryant,RT @iamrapaport: If you’re looking for one or the greatest in depth athlete interviews in the history of podcasting then look no further th… +11/29/2017,Sports_celeb,@kobebryant,It’s been 2 years already? @PlayersTribune #timehaswings https://t.co/EXHypqbuZT +11/29/2017,Sports_celeb,@kobebryant,👌💪 @Djawadi_Ramin https://t.co/lTJ5IDqhtm +11/28/2017,Sports_celeb,@kobebryant,👏 @KlayThompson @DrinkBODYARMOR https://t.co/lLLmbbVHc0 +11/20/2017,Sports_celeb,@kobebryant,Maybe but Coach Smith stopped recruiting me. He thought I would go pro and wished me luck. Coach K kept at it. https://t.co/xS6OD8SmEV +11/20/2017,Sports_celeb,@kobebryant,Duke https://t.co/RDyzJ0PMUw +11/20/2017,Sports_celeb,@kobebryant,"Little known fact, I did one year of summer school at @ucla after my rookie year but now I hire @usc film students… https://t.co/wGur9fp7Du" +11/18/2017,Sports_celeb,@kobebryant,RT @MarucciBaseball: Every player in the United States should watch this video of Altuve. https://t.co/NG3lmnGYkC +11/18/2017,Sports_celeb,@kobebryant,RT @CalSwish_Nike: Thanks @kobebryant for working with us today in practice . Our @VULions loved it and learned a ton. Loved the teaching… +11/10/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/FI062fp89r +11/06/2017,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: #TeamBODYARMOR #ObsessionIsNatural 🏀🏆💥 https://t.co/nkes5HqRHd +11/06/2017,Sports_celeb,@kobebryant,#ObsessionIsNatural @JHarden13 @DrinkBODYARMOR 💪 https://t.co/As3hEuBJMs +10/24/2017,Sports_celeb,@kobebryant,The team @15SOF delivers your World Series TV appearances. Let's make some memories. Go LA! Get the app here: https://t.co/b3GXC47J0d +10/20/2017,Sports_celeb,@kobebryant,Lil bit haha @winnieharlow @neymarjr good times https://t.co/Ui076ILLNj +10/20/2017,Sports_celeb,@kobebryant,#gracias #merci 👍 https://t.co/31sUJZpFZd +10/16/2017,Sports_celeb,@kobebryant,We LOVED the match @uscwomensvolley and @StanfordWVB #MambaMentality Thank you for the hospitality #USC https://t.co/XkoxSEd4cz +10/06/2017,Sports_celeb,@kobebryant,Thank you. I had a great time on the podcast with you @ScottFeinberg https://t.co/AHTNbC5GH2 +10/05/2017,Sports_celeb,@kobebryant,RT @DrinkBODYARMOR: ❗️BREAKING: BODYARMOR is NOW the OFFICIAL Sports Drink of #UFC. 👊 #Switch2BODYARMOR #ObsessionIsNatural @UFC @UFCPI htt… +10/05/2017,Sports_celeb,@kobebryant,She’s a beast https://t.co/EgKgG6o6ro +10/05/2017,Sports_celeb,@kobebryant,Congrats to @minnesotalynx 4 championships in 7 seasons is 🙌 #wnbachamps +10/04/2017,Sports_celeb,@kobebryant,@EvMatic https://t.co/aC6jjmMP0m +10/04/2017,Sports_celeb,@kobebryant,BUT @DrinkBODYARMOR had a HOT🔥 summer! Up over 110%+ in Convenience stores @darrenrovell #gofigure… https://t.co/4Nh4DqP2h0 +10/02/2017,Sports_celeb,@kobebryant,"RT @LVMPD: For families looking to locate missing loved ones, please call 1-866-535-5654." +10/02/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/5sn9taFK7z +10/01/2017,Sports_celeb,@kobebryant,RT @ramonashelburne: When @kobebryant called @Candace_Parker and helped a kindred spirit learn how to win. https://t.co/lJmSiFmcUW +09/30/2017,Sports_celeb,@kobebryant,"Thank u Coach Frank for your deep understanding of the game, your patience & for challenging me to defend @ the hig… https://t.co/IhPuvWHhzA" +09/30/2017,Sports_celeb,@kobebryant,RT @serenawilliams: Without Billie Jean King I don't know if any of us female athletes would be here. Don't miss the… https://t.co/BBnqZhRU… +09/26/2017,Sports_celeb,@kobebryant,🙏🏾 https://t.co/itdHqK1kqS +09/26/2017,Sports_celeb,@kobebryant,Thank you for the opportunity to talk about our film. To even hear Oscar contender next to Dear Basketball is beyon… https://t.co/TFsijvz0Uu +09/23/2017,Sports_celeb,@kobebryant,#mambamentality https://t.co/xzFcEmOLEH +09/23/2017,Sports_celeb,@kobebryant,"A #POTUS whose name alone creates division and anger. Whose words inspire dissension and hatred can't possibly ""Make America Great Again""" +09/20/2017,Sports_celeb,@kobebryant,"RT @paulocoelho: MEXICO, TE AMAMOS https://t.co/lhwyp8dh1Z" +09/20/2017,Sports_celeb,@kobebryant,🙏🏾 #dearbasketball https://t.co/1vo5PNQQ54 +09/20/2017,Sports_celeb,@kobebryant,RT @15SOF: Not a rumor anymore. 15 Seconds of Fame has partnered with @NFL to deliver your TV appearances at all NFL games through the Supe… +09/18/2017,Sports_celeb,@kobebryant,Just a lil daddy/daughter time #proudpappa https://t.co/DSktefRDoB +09/18/2017,Sports_celeb,@kobebryant,Gigi working on that @DianaTaurasi stroke #wristwork #wnbafinals we r hype for the rematch! https://t.co/Ly6pEjLuZS +09/15/2017,Sports_celeb,@kobebryant,Happy #2KDay You pick... play as 8 or 24 in @NBA2K! https://t.co/BrGl7dFiN0 https://t.co/AhOSgh6N9V +09/15/2017,Sports_celeb,@kobebryant,Great to be back in China earlier this week to help announce the NBA Academy @missionhillscn. I continue to be grat… https://t.co/STKesdpIhN +09/11/2017,Sports_celeb,@kobebryant,#NeverForget911 https://t.co/5ltFzooAse +09/10/2017,Sports_celeb,@kobebryant,Well deserved Tmac. You were a beast in every aspect of the game. I hope your kids know and appreciate how cold their pops was #HallOfFame +09/09/2017,Sports_celeb,@kobebryant,RT @SportsCenter: Tracy McGrady: High school star to NBA Hall of Famer. https://t.co/Mbq3pcGetP +09/07/2017,Sports_celeb,@kobebryant,Congrats hermano #grandepau https://t.co/N9SH4j3Xfw +09/06/2017,Sports_celeb,@kobebryant,RT @CNN: Read Bill Clinton's full statement on the Trump administration's DACA decision https://t.co/ndGYBfwDHY +09/02/2017,Sports_celeb,@kobebryant,RT @jewellloyd: I don't call her Legend for nothing 🙌🏽👏🏽 https://t.co/EdeuKpCfCT +09/02/2017,Sports_celeb,@kobebryant,Never thought I'd be on stage w/ the great JOHN WILLIAMS @HollywoodBowl to perform the #DearBasketball animated sho… https://t.co/kjr4UKYWYh +08/29/2017,Sports_celeb,@kobebryant,Claro #primomamba #mambasangre https://t.co/Udo2vJpZ0Q +06/30/2018,Sports_celeb,@raylewis,"Seek improvement, not perfection. Take it one step at a time." +06/29/2018,Sports_celeb,@raylewis,RT @HamiltonESPN: #ESPN300 & 2019 Under Armour @AllAmericaGame RB @Emery4____ hanging with @raylewis & @TwentyER at Ed Reed Foundation Camp… +06/29/2018,Sports_celeb,@raylewis,The words you speak become the House you live in. - Hafiz +06/28/2018,Sports_celeb,@raylewis,My heart breaks for all in Annapolis in this senseless tragedy. Praying for families and friends of those lost toda… https://t.co/eyrVD0TdM2 +06/28/2018,Sports_celeb,@raylewis,make a difference. leave your mark +06/28/2018,Sports_celeb,@raylewis,"RT @Ravens: .@raylewis to appear in upcoming Baltimore-based movie. +📰: https://t.co/caQZV66UhK https://t.co/28wU0sqlWD" +06/28/2018,Sports_celeb,@raylewis,RT @DylanMathiot: @SNFonNBC @raylewis you inspired me to play football 🏈 https://t.co/Vn2PMJmqEL +06/28/2018,Sports_celeb,@raylewis,Stay committed +06/26/2018,Sports_celeb,@raylewis,https://t.co/FAjZzuSw96 +06/26/2018,Sports_celeb,@raylewis,"RT @Ravens: ""When it comes to Hall of Fame, you have to define the position. And @raylewis, in today's game, did just that."" -@CoachBillick…" +06/26/2018,Sports_celeb,@raylewis,RT @NFLAlumni: They say humans would never stand a chance against dinosaurs. We think we know a guy…. @RayLewis #JurassicWorld #NFLAlumni… +06/25/2018,Sports_celeb,@raylewis,chase greatness. you have to go after it! +06/22/2018,Sports_celeb,@raylewis,The greatest enemy of progress is your last success. keep grinding 💪🏿 +06/21/2018,Sports_celeb,@raylewis,to Love Is to selflessly serve. https://t.co/dwTzkpXxiG +06/21/2018,Sports_celeb,@raylewis,who remembers? 💥💥💥 https://t.co/qyniYUlzXL +06/19/2018,Sports_celeb,@raylewis,You gonna believe them?? https://t.co/q9XREAeSzF +06/19/2018,Sports_celeb,@raylewis,"RT @IMGAcademy: “Any vision that is not written is a dream.” -@raylewis + +#MotivationMonday https://t.co/7E51AqrE7w" +06/17/2018,Sports_celeb,@raylewis,RT @UAFootball: No excuses at the @raylewis Academy. #IWILL https://t.co/pv7H9tNaYC +06/17/2018,Sports_celeb,@raylewis,"family is bigger than you think, men. Stand in the gap - lead #happyfathersday https://t.co/d1LxFT737d" +06/17/2018,Sports_celeb,@raylewis,RT @DemetricDWarren: 🗣LBs Listen Up! Ray Lewis @raylewis is teaching about “Reading the Triangle” Alabama LB Mack Wilson @iam__mw3o & Michi… +06/17/2018,Sports_celeb,@raylewis,RT @EByner: Great to see #EdReed and @raylewis @IMG for #52 special linebacker camp. @Ravens https://t.co/onDC0DHGBs +06/17/2018,Sports_celeb,@raylewis,"RT @zacharylovett10: Had fun this past weekend at the Ray Lewis academy putting in work on and off the field to become better athletes,man,…" +06/17/2018,Sports_celeb,@raylewis,RT @Footdoctor_Mata: Thankful for the opportunity @raylewis & @UnderArmour https://t.co/EQboIwyETU +06/17/2018,Sports_celeb,@raylewis,"RT @RobVellinga: We need men who are fine with being MEN. - @RayLewis + +#Mentoring +#Fatherhood +#Dadfest + +@WillowCreekCC" +06/17/2018,Sports_celeb,@raylewis,RT @CarManCarl: @raylewis sharing the LOVE!!! @WillowCreekCC https://t.co/grjjaaTzoL +06/17/2018,Sports_celeb,@raylewis,"RT @RobVellinga: When I came to the RIGHT it was for the Father. +When I can to the LEFT it was for the Son. +When I came through the CENTE…" +06/17/2018,Sports_celeb,@raylewis,RT @CarManCarl: @raylewis @steveryancarter rocking the house @WillowCreekCC by challenging men to be men!!! +06/17/2018,Sports_celeb,@raylewis,"RT @WillowCreekCC: We're here with @steveryancarter & @raylewis this morning! Join us for #DadFest at 9 a.m. or 11:30 a.m.! +#WillowCreekCC…" +06/17/2018,Sports_celeb,@raylewis,Sharing from my heart today at @WillowCreekCC watch online: https://t.co/ZsyrbauL64 #HappyFatherDay +06/16/2018,Sports_celeb,@raylewis,can't wait for this hug https://t.co/LSUszvfwps +06/15/2018,Sports_celeb,@raylewis,Keep at it 🔥 the result is worth the sacrifice +06/14/2018,Sports_celeb,@raylewis,Effort. https://t.co/CD0tPFvNoU +06/14/2018,Sports_celeb,@raylewis,Stay ready +06/13/2018,Sports_celeb,@raylewis,pain. is. temporary - hang in there +06/13/2018,Sports_celeb,@raylewis,RT @jaesonma: One of the Greatest Speeches Ever | Ray Lewis https://t.co/y3WPVBnb3y via @raylewis #painistemporary +06/13/2018,Sports_celeb,@raylewis,Hope is seeing light even in the middle of darkness +06/12/2018,Sports_celeb,@raylewis,🔥🔥🔥 https://t.co/qQx4jhITo7 @ThatOtherLewis +06/12/2018,Sports_celeb,@raylewis,Book a seat with my buddy Patrick Day’s company Flyfoxtrot to the US Open and he will get you there for $695 a seat. https://t.co/k0hbJh3gRc +06/12/2018,Sports_celeb,@raylewis,discipline is choosing what u want most over what you want now +06/11/2018,Sports_celeb,@raylewis,let your work speak loudly +06/11/2018,Sports_celeb,@raylewis,https://t.co/McrsDEfOOT +06/09/2018,Sports_celeb,@raylewis,You can change the outcome +06/08/2018,Sports_celeb,@raylewis,Work to be good. Study to be great. Commit to be a legend. +06/07/2018,Sports_celeb,@raylewis,RT @JohnMichaels929: Me and the best college LB of all time @raylewis #LetsGoCanes #TheU https://t.co/eBNeIhC9Vy +06/07/2018,Sports_celeb,@raylewis,"RT @JTWilcoxSports: ICYMI +Erickson, @DanMorganJr & @raylewis Added To 2019 College HOF Ballot + +https://t.co/AL69JQK39d +(via @TribuneMiami)…" +06/07/2018,Sports_celeb,@raylewis,someone is going to be strengthened one day by your story - don't give up. +06/05/2018,Sports_celeb,@raylewis,"Work, even when no one else sees you #effort" +06/05/2018,Sports_celeb,@raylewis,If you want others to be happy - practice compassion. If you want to be happy - practice compassion +06/04/2018,Sports_celeb,@raylewis,RT @CanesFootball: Congratulations to these three Miami greats who’ve been named to the @cfbhall ballot! https://t.co/XIp24S51gM +06/04/2018,Sports_celeb,@raylewis,Giving up means you never really wanted it +06/01/2018,Sports_celeb,@raylewis,You’ve got what it takes but it will take everything you’ve got. #effort +05/31/2018,Sports_celeb,@raylewis,No one ever achieved greatness by hesitating. Pursue your goals. +05/29/2018,Sports_celeb,@raylewis,Who wants to be in a movie with me? I’ll be conducting casting calls June 24th! 🎬 https://t.co/UwsNkUTm7U +05/28/2018,Sports_celeb,@raylewis,#MemorialDay2018 https://t.co/yx4U3WBmov +05/27/2018,Sports_celeb,@raylewis,https://t.co/RKd2uKWQoD +05/27/2018,Sports_celeb,@raylewis,https://t.co/1tUEl97P5E +05/26/2018,Sports_celeb,@raylewis,Even in El Salvador - #52 - thanks for the pic my man @BrockESPN keep up the good work! https://t.co/u5F14v9lkZ +05/26/2018,Sports_celeb,@raylewis,"RT @NFLUK: Super Bowl 58 is heading to New Orleans 🎉 + +The last Super Bowl at New Orleans saw @raylewis last dance for the @Ravens 👏 + +Legend…" +05/26/2018,Sports_celeb,@raylewis,Never let a stumble be the end of your journey +05/24/2018,Sports_celeb,@raylewis,"RT @NFLFilms: WHAT ABOUT RIGHT NOW?! +🗣 @raylewis spittin’ that #WednesdayWisdom https://t.co/2OtL0ysPwq" +05/22/2018,Sports_celeb,@raylewis,effort https://t.co/WuzMxc1svu +05/22/2018,Sports_celeb,@raylewis,heat right here 🔥 talkin shop & more: https://t.co/Rh2QB44dbq https://t.co/iIeZvE15Pe +05/22/2018,Sports_celeb,@raylewis,RT @msslimgdy: @raylewis Thank you so much for sharing your wisdom & being an inspiration! +05/22/2018,Sports_celeb,@raylewis,RT @zacharylovett10: Honored to be invited to the Ray Lewis camp this summer @pbhs_football @raefsu23 @Neefy87 @EjMayes23 @raylewis https:/… +05/22/2018,Sports_celeb,@raylewis,"RT @1wayjaay: Very Thankful 🙏🏽 to be Invited to the 2018 Ray Lewis Academy‼️🦍 +@HamiltonESPN @raylewis https://t.co/zAdEks7mTJ" +05/22/2018,Sports_celeb,@raylewis,Stay focused. 🎯 +05/21/2018,Sports_celeb,@raylewis,truth https://t.co/yLcvhsk5SL +05/21/2018,Sports_celeb,@raylewis,when Lights Out stops over for some 💥 https://t.co/N1WohR05fP +05/21/2018,Sports_celeb,@raylewis,Never lessen your dream to equal your reality. Keep aiming beyond what you can see right now. +05/19/2018,Sports_celeb,@raylewis,🔥 https://t.co/MLXPOap9Q5 +05/19/2018,Sports_celeb,@raylewis,RT @Lj_era8: I should’ve did the whole thing just gave a little something 😈 https://t.co/yzRC3MTS52 +05/18/2018,Sports_celeb,@raylewis,Struggling is one thing. Quitting is another. Stick with it through the struggle. +05/16/2018,Sports_celeb,@raylewis,"RT @NFLFilms: Join us in celebrating 2018 HOF inductee, @raylewis' birthday today! 🎉🎉🎉 + +@Ravens @ProFootballHOF https://t.co/za5FiFbkWj" +05/16/2018,Sports_celeb,@raylewis,"RT @NFL: 2x @SuperBowl champion. 2x DPOY. +13x Pro Bowler. 10x All-Pro. +And @ProFootballHOF Class of 2018. + +Join us in wishing @raylewis a H…" +05/16/2018,Sports_celeb,@raylewis,"RT @NFL: One of the greatest linebackers EVER. +And soon to be enshrined into the @ProFootballHOF. + +In honor of his 43rd birthday, @raylewis…" +05/16/2018,Sports_celeb,@raylewis,"RT @Ravens: In honor of his birthday, relive the moment @raylewis officially learned what we all knew. +He is a Hall of Famer. https://t.co/…" +05/16/2018,Sports_celeb,@raylewis,@NFLOffical @SuperBowl @ProFootballHOF Thank you!! +05/16/2018,Sports_celeb,@raylewis,you know it’s yours. 💪🏿 https://t.co/qH3bwpaUzY +05/16/2018,Sports_celeb,@raylewis,The fear you refuse to face becomes your limit. +05/14/2018,Sports_celeb,@raylewis,there is power. https://t.co/MHcMuf6WYU +05/14/2018,Sports_celeb,@raylewis,Appreciate those who don’t give up on you +05/13/2018,Sports_celeb,@raylewis,RT @evanpryor3: Blessed to be invited to the 2018 Ray Lewis Academy !! @CarolinaXposure @HamiltonESPN @JibrilleFewell @raylewis https://t.… +05/13/2018,Sports_celeb,@raylewis,Happy Mother’s Day to all the Moms ♥️ +05/12/2018,Sports_celeb,@raylewis,RT @TwentyER: This is so dope https://t.co/r2YY7qCqmk +05/12/2018,Sports_celeb,@raylewis,destroy distractions. Commit https://t.co/HFRxdvVCei +05/11/2018,Sports_celeb,@raylewis,You choose. Invest in you. #effort +05/09/2018,Sports_celeb,@raylewis,Effort beats talent. +05/07/2018,Sports_celeb,@raylewis,https://t.co/cNnHWloaP5 +05/06/2018,Sports_celeb,@raylewis,RT @thecheckdown: Ray's last dance was literally lit 🔥 @raylewis (via bosnog/YT) https://t.co/5vGGZfic7z +05/06/2018,Sports_celeb,@raylewis,Let your results drive you. #effort +05/05/2018,Sports_celeb,@raylewis,worry ends where belief begins +05/04/2018,Sports_celeb,@raylewis,say it 🔥 https://t.co/5pMfW3rqeu +05/03/2018,Sports_celeb,@raylewis,it’s a slow process but quitting won’t speed it up. keep pushing through +05/02/2018,Sports_celeb,@raylewis,Hustle until your haters ask if you’re hiring. +05/02/2018,Sports_celeb,@raylewis,Master the skill of believing & you’ve mastered your legacy. https://t.co/bUYfFLnbP6 +05/01/2018,Sports_celeb,@raylewis,You don’t grow when things go easy. You grow when you face challenges. +04/30/2018,Sports_celeb,@raylewis,greatness right here! #pfhof18 #goldjacket #HallOfFame https://t.co/HVJIaCWx5D +04/30/2018,Sports_celeb,@raylewis,You make your future by what you do now. #leaveyourmark +04/30/2018,Sports_celeb,@raylewis,Have the courage to take risks. But keep the discipline to stay committed to your goals. +04/30/2018,Sports_celeb,@raylewis,RT @BelindaBalleng1: @raylewis No man can judge effort...its between you and you .....awesome #motivational words @raylewis +04/30/2018,Sports_celeb,@raylewis,RT @atgbowers: Reminiscing on Ravens 1st draft! Hoping this year is just as great! #ravens @raylewis https://t.co/E5QIB4MXS9 +04/29/2018,Sports_celeb,@raylewis,It’s yours for the taking. Go get your greatness! #effort https://t.co/oip1EZc8Mn +04/29/2018,Sports_celeb,@raylewis,"Make an effort, not an excuse." +04/29/2018,Sports_celeb,@raylewis,"RT @gladi8r013: @raylewis One of the best motivational speeches I’ve ever heard. The one when you spoke to the Miami Hurricanes +https://t…" +04/28/2018,Sports_celeb,@raylewis,RT @Power52Official: Get your tickets today for Power52 LIVE Fundraiser!! https://t.co/M5R8mNOhjU +04/28/2018,Sports_celeb,@raylewis,"RT @Muthead: Ultimate Legend @raylewis: + +https://t.co/ATiEJAUO2Q +. https://t.co/uW7lWzQ25o" +04/28/2018,Sports_celeb,@raylewis,https://t.co/kUpzhjZrlL +04/28/2018,Sports_celeb,@raylewis,Effort can take you further than talent. +04/27/2018,Sports_celeb,@raylewis,Success sits outside of your comfort zone. You have to go get it. +04/27/2018,Sports_celeb,@raylewis,"RT @Ravens: ""The first thing I thought about was me and @raylewis doing that commercial, how he made me do his laundry. And now, it's proba…" +04/26/2018,Sports_celeb,@raylewis,RT @alohajamz: @raylewis is a once in a generation player I wonder now that @raylewis is a HOF player. Who will be the next Ray Lewis that… +04/26/2018,Sports_celeb,@raylewis,RT @ThePostGame: Draft day 1996: @raylewis is second pick in @Ravens history (@jonathanogden75 went earlier in first round). #NFLDraft #TBT… +04/26/2018,Sports_celeb,@raylewis,"RT @NFL: Every #1 overall pick from the last 16 years! + +Who’s next?! + +2018 #NFLDraft starts TONIGHT (8pm ET) on NFLN/FOX/ESPN! https://t.co…" +04/26/2018,Sports_celeb,@raylewis,"the work you put in now is the legacy you live out later. +congratulations to everyone who steps into their legacy t… https://t.co/jDcUalT2l6" +04/26/2018,Sports_celeb,@raylewis,We ready! 🏈💪🏿 #NFLDraft2018 @NFL https://t.co/kpp36a9pIL +04/26/2018,Sports_celeb,@raylewis,"Let your pain push you to a greater level of power. Focus it. Use it, for good." +04/25/2018,Sports_celeb,@raylewis,It is better to be respected than liked. +04/25/2018,Sports_celeb,@raylewis,RT @MarcusAllenHOF: New Jersey! The @GTSportsMkt show is back! This wknd April 27-29 Come meet @drewbrees @raylewis @Jerryrice @deshaunwats… +04/25/2018,Sports_celeb,@raylewis,"RT @SiriusXMNFL: Who are a few Linebackers that @RoquanSmith1 enjoyed watching in the NFL? + +@raylewis and @Bwagz + +#NFLDraft https://t.co/jy…" +04/25/2018,Sports_celeb,@raylewis,Be so great that they have to notice. +04/25/2018,Sports_celeb,@raylewis,RT @Ravens: One call led to the Hall. #NFLDraft https://t.co/Xvl1AGUdRu +04/25/2018,Sports_celeb,@raylewis,Belief enables the power to achieve. +04/25/2018,Sports_celeb,@raylewis,@coachjkirk 💪🏿💥 +04/25/2018,Sports_celeb,@raylewis,RT @coachjkirk: @raylewis down here in TX trying to #ShowMeYourRay https://t.co/mSziNxh6K1 +04/24/2018,Sports_celeb,@raylewis,Dreams don’t work unless you do. Proud of you baby boy! 💯 https://t.co/Qnqo2n5nIS +04/24/2018,Sports_celeb,@raylewis,Those genes are strong. #Legacy #LionOrder https://t.co/JvnEpXXUhs +04/24/2018,Sports_celeb,@raylewis,RT @JerryRice: New Jersey! Come meet me and other legends @raylewis @kaj33 @drewbrees @EmmittSmith22 and more at @GTSportsMkt show April 2… +04/24/2018,Sports_celeb,@raylewis,Go on! You deserve that dance!! #ShowMeYourRay https://t.co/8oN2WSbWgK +04/24/2018,Sports_celeb,@raylewis,RT @jbenjaminblom: I graduate from dental school in two weeks and my mom pimped out my suit jacket for me. Can’t decide...squirrel dance ac… +04/24/2018,Sports_celeb,@raylewis,@jbenjaminblom @Ravens definitely the squirrel dance - congrats! +04/24/2018,Sports_celeb,@raylewis,"RT @DLineVids: ""Blueprint"" by #TheU alum & #NFL Hall of Famer @raylewis 💯 https://t.co/KwKBUBLXvb" +04/24/2018,Sports_celeb,@raylewis,"Almost time 2 break out those threads, men! 💥 @NFL #NFLDraft #TheFutureIsNow https://t.co/clUoCaGtGm" +04/24/2018,Sports_celeb,@raylewis,The wolf on the hill is never as hungry as the wolf climbing the hill. Never stop. Keep aiming higher. +04/24/2018,Sports_celeb,@raylewis,"RT @Thuzio: During the @Ravens' #SuperBowl season of 2000-2001, Brian Billick relied on @raylewis and @ShannonSharpe to be gatekeepers in t…" +04/24/2018,Sports_celeb,@raylewis,"RT @NFL: Top 10 @NFLDraft Classes of the Past 25 Years: + +1. ’96 @Ravens +2. ’95 @Buccaneers +3. ’04 @Chargers +4-10. https://t.co/X6j5eV484p…" +04/24/2018,Sports_celeb,@raylewis,"RT @CanesFootball: The @NFL ranked the best draft pick of all-time at every slot, from Nos. 1 to 32, and Miami has SEVEN listed — more than…" +04/20/2018,Sports_celeb,@raylewis,Achieve everything they said you never would. +04/20/2018,Sports_celeb,@raylewis,Who is ready to #partywithapurpose with us? @power52official https://t.co/DOo39DB4qD +04/20/2018,Sports_celeb,@raylewis,Two weeks! @power52official https://t.co/Wp7fMHYWJE +04/20/2018,Sports_celeb,@raylewis,"Where there is peace, there is prosperity. #RaysWords #RL52 https://t.co/YnX7RhPZ7A" +04/20/2018,Sports_celeb,@raylewis,You got to be willing to walk in a storm. #RaysWords #RL52 https://t.co/iYeXyeibZF +04/20/2018,Sports_celeb,@raylewis,"Man believes in the possible, God believes in the impossible. #RaysWords #RL52 #legends52 https://t.co/IkEF9fsinm" +04/17/2018,Sports_celeb,@raylewis,"Awesome performance at the Mountain Moving Men Summit @CityofPraiseMD +Many are called, few are… https://t.co/aKP3yrILuA" +04/15/2018,Sports_celeb,@raylewis,What comes easy doesn’t always last. What comes through difficulties & effort leaves a legacy. +04/13/2018,Sports_celeb,@raylewis,RT @SFY: .@RayLewis reacts to Odell Beckham Jr.'s (@OBJ_3) Instagram post responding to his criticism https://t.co/cApwS4vtbA +04/13/2018,Sports_celeb,@raylewis,"RT @undisputed: ""I look at Odell as a son of mine, so am I hurt? Absolutely. Why wouldn't I be hurt?"" + +@raylewis explains his comments rega…" +04/13/2018,Sports_celeb,@raylewis,Hidden in every challenge you face is an opportunity. Find it. +04/12/2018,Sports_celeb,@raylewis,Courage begins the moment you decide to be true to yourself. +04/10/2018,Sports_celeb,@raylewis,"RT @FOXSports: ""So many people saying they know so much about him [OBJ] have never had one phone call with him."" + +-- @RayLewis believes OB…" +04/09/2018,Sports_celeb,@raylewis,"Live selflessly. We all have a greater purpose, but we often have to look outside ourselves to… https://t.co/S9KsgWjqfI" +04/08/2018,Sports_celeb,@raylewis,Sometimes life is about risking everything for a dream no one can see but you. +04/05/2018,Sports_celeb,@raylewis,RT @cmorrow322: I am thankful for people that care & use their celebrity to spread a great message and make a difference . @raylewis & @Mar… +04/05/2018,Sports_celeb,@raylewis,#RaysWords #pfhof18 #legends52 #ravensnation #RL52 #IWILL #nfl #football https://t.co/kAa2jTWMQD +04/05/2018,Sports_celeb,@raylewis,"RT @AthleteNet: Advice straight from @RayLewis: ""Put your plan together & then work the plan."" https://t.co/QN0C1n3rou @fromglorydays #keep…" +04/05/2018,Sports_celeb,@raylewis,"RT @DenverGreg_: https://t.co/qiJ2Wnw1eD + +Little Thursday morning motivation. “Effort is between you and you.” @raylewis let’s get it!" +04/05/2018,Sports_celeb,@raylewis,Write your destiny. #pfhof18 #RL52 https://t.co/UjVs9LDA7C +04/02/2018,Sports_celeb,@raylewis,"One month from tomorrow, join us for our annual fundraiser! @power52official #power52 @… https://t.co/MwZuaswUPF" +04/02/2018,Sports_celeb,@raylewis,"The Power behind Power52! @power52official +robdwallace #power52 #pfhof18 #RL52 #solarpower… https://t.co/zdHodRl5C2" +04/02/2018,Sports_celeb,@raylewis,"#Repost @power52official +・・・ +Just in case you missed it!! Get your tickets today!… https://t.co/X3zGdH4Ai9" +04/01/2018,Sports_celeb,@raylewis,“He then began to teach them that the Son of Man must suffer many things and be rejected by the… https://t.co/AKzYCXgphI +04/01/2018,Sports_celeb,@raylewis,"Happy Easter, He is risen. Rejoice in His name. #amen #blessings https://t.co/ylR07Q3XIg" +04/01/2018,Sports_celeb,@raylewis,Hope is here! You’re going to make it. Only believe. +03/31/2018,Sports_celeb,@raylewis,"RT @drewbrees: Hey New Jersey! Come see me, @raylewis @shaunwatson4 jerryrice and more! @GTSportsMkt show at… https://t.co/AdYXGkzMEP" +03/31/2018,Sports_celeb,@raylewis,"Hang in there, it’s going to get better. Keep moving forward." +03/30/2018,Sports_celeb,@raylewis,#ITISFINISHED https://t.co/QAtwvJ9jVM +03/29/2018,Sports_celeb,@raylewis,#QOTD No time like the present. #RaysWords https://t.co/W3LiPy1p4Z +03/29/2018,Sports_celeb,@raylewis,"The legend and the leader. #legends52 + +📸: @thebrewergroup https://t.co/UCcq829Grm" +03/27/2018,Sports_celeb,@raylewis,Discipline is required even when no one is looking. #RaysWords #RL52 #ravensnation #pfhof18 https://t.co/GMJ52H0mDK +03/27/2018,Sports_celeb,@raylewis,@CityofPraiseMD #RL52 https://t.co/TQEf1wedhy +03/26/2018,Sports_celeb,@raylewis,"RT @Ravens: The journey to Canton. + +The first installment of our Ray Lewis Timeline series is live. + +From Bartow, Fla. to to college recr…" +03/26/2018,Sports_celeb,@raylewis,💥 https://t.co/mBhahStjfj +03/25/2018,Sports_celeb,@raylewis,"@power52official provides employment training for at-risk adults, returning citizens, and… https://t.co/qN7vqZ5OUz" +03/25/2018,Sports_celeb,@raylewis,Congratulations to the 15 trainees who graduated from our Power52 Energy Institute Baltimore… https://t.co/V7YF6A9rBJ +03/25/2018,Sports_celeb,@raylewis,RT @Gr4yson_: For my favorite player and the 🐐 MLB. Made this when the Class of 2018 was announced but never posted it. Can't wait for the… +03/24/2018,Sports_celeb,@raylewis,The Power52 Family invites you to join us for our premier event of the year Power52LIVE! “After Five”. Tickets ca… https://t.co/FkGnxECHch +03/24/2018,Sports_celeb,@raylewis,Don't rush away from something just because it's uncomfortable. Grow in it and through it. +03/24/2018,Sports_celeb,@raylewis,People only rain on your parade because they are jealous of your sun. +03/23/2018,Sports_celeb,@raylewis,I had to GRIND every day. #RL52 #legends52 #pfhof18 #GoldJacket #legends52 https://t.co/QRhfh6uRQw +03/22/2018,Sports_celeb,@raylewis,RT @andres_cadena11: “The greatest opportunity in the world is found in today” @raylewis +03/22/2018,Sports_celeb,@raylewis,RT @Houston_TheReal: @raylewis @Ravens No player I've ever seen played football with more passion and leadership than 52. Point. Blank. PER… +03/22/2018,Sports_celeb,@raylewis,RT @UsmcBobLeeSwag: That shoestring theory by @raylewis via his podcast really hit home. Thank you for that wisdom @raylewis +03/21/2018,Sports_celeb,@raylewis,Life is about being a versatile athlete and training in all realms of life. #RaysWords #RL52… https://t.co/BZNRLHbt1k +03/21/2018,Sports_celeb,@raylewis,Working towards a new type of greatness! 52legendsandleaders #legends52 https://t.co/cKjY3ApM5y +03/21/2018,Sports_celeb,@raylewis,Don’t walk through life just playing football. Don’t walk through life just being an athlete.… https://t.co/GdUVaVkUFm +03/21/2018,Sports_celeb,@raylewis,Represent! 💥 #PFHOF18 @UnderArmour collection: https://t.co/EMRiX83Fky https://t.co/DqUZs0tMGZ +03/21/2018,Sports_celeb,@raylewis,Know your mission. #RL52 https://t.co/MB1ELOETXA +03/20/2018,Sports_celeb,@raylewis,The road to Canton. #PFHOF18 #GoldJacket #RavensFlock @Ravens https://t.co/zY9aH7gLe3 +03/20/2018,Sports_celeb,@raylewis,RT @UAFootball: 😜 #IWILL https://t.co/HrVshQAzGm +03/20/2018,Sports_celeb,@raylewis,"RT @UAFootball: Speak volumes by repping a legend. #IWILL + +Snag your official @raylewis @UnderArmour collection: https://t.co/TCFfdH61Fr ht…" +03/19/2018,Sports_celeb,@raylewis,"Speak volumes without saying a word. #Family #WeWill #IWILL @UAFootball #HallofFame +https://t.co/a4KimtDYzH https://t.co/kEJmYzgr1e" +03/19/2018,Sports_celeb,@raylewis,The number one skill for success - never quit. +03/19/2018,Sports_celeb,@raylewis,Giving up means you never truly wanted it. Push through. +03/19/2018,Sports_celeb,@raylewis,Accept what is. Let go of what was. Have faith in what will be. #GodisGod +03/19/2018,Sports_celeb,@raylewis,💥 @Rolando21897 https://t.co/MUrso362Yu +03/18/2018,Sports_celeb,@raylewis,The most amazing things in life often happen right when you are about to give up. Hang in there. +03/18/2018,Sports_celeb,@raylewis,RT @Sdarley14: @raylewis https://t.co/f9CoSpsS8X this goes down in the books #grindin #3amworkouts +03/18/2018,Sports_celeb,@raylewis,You can overcome whatever you put your mind to. +03/17/2018,Sports_celeb,@raylewis,RT @RobMaaddi: Here’s the latest episode of @FaithOnTheField Show titled “The Faithful Pursuit” featuring a powerful interview with Hall of… +03/17/2018,Sports_celeb,@raylewis,"RT @kurt13warner: Virginia and all Football Fans! I will be appearing @Gtsportsmkt show in Sterling, VA with @MarcusAllenHOF @DougFlutie @r…" +03/17/2018,Sports_celeb,@raylewis,RT @RyanShazier: Thanks all the support helps me through this. 💯 https://t.co/OvExGW8koE +06/10/2018,Sports_celeb,@FloydMayweather,Play on the WinView Sports app today to have a chance to win a signed boxing glove ! #PlayPredictWin… https://t.co/juSXDhj4Vm +06/05/2018,Sports_celeb,@FloydMayweather,https://t.co/tUWTAiZ5Sn +06/03/2018,Sports_celeb,@FloydMayweather,"I challenge you! Score 15k+ points in any QTR on https://t.co/4yPtxJ9YQq for a share of $5,000! #NBAfinals https://t.co/dh1gEfzeLG" +06/03/2018,Sports_celeb,@FloydMayweather,"In boxing, I'm undefeated, but can you beat me in poker? Download and play my game @WildPokerTXHold… https://t.co/FKjJDzD9gK" +06/02/2018,Sports_celeb,@FloydMayweather,@MizzMelissia https://t.co/jVKqhNMObf +06/02/2018,Sports_celeb,@FloydMayweather,"Life is a game of chess & all I do is make power moves +Photo Credit: @mssunray https://t.co/049IBNZOS4" +06/02/2018,Sports_celeb,@FloydMayweather,"#mood +video credit: @moneyyaya +Music by: @otgenasis https://t.co/snEsqseex5" +06/01/2018,Sports_celeb,@FloydMayweather,"I’m so proud of my son @kingkoraun for doing something that I didn’t do, and that’s graduate high school. When I️ w… https://t.co/fGflOAwEAa" +06/01/2018,Sports_celeb,@FloydMayweather,"Great is Great ! No matter what, I’m a natural born hustler! https://t.co/VL0jOXGcZV" +05/26/2018,Sports_celeb,@FloydMayweather,No one makes more money watching sports than me! Come play against me at https://t.co/4yPtxJrzHY and watch the NBA… https://t.co/8AE5OfCksI +05/24/2018,Sports_celeb,@FloydMayweather,#mugshot https://t.co/W7SRNrijGC +05/24/2018,Sports_celeb,@FloydMayweather,"Royal treatment...private massage on my private jet. Y’all talking about a prince with one princess, I’m a King wi… https://t.co/fMPimntha5" +05/24/2018,Sports_celeb,@FloydMayweather,I post pictures like this to motivate my haters to get money. https://t.co/NF7Kh4Fulk +05/24/2018,Sports_celeb,@FloydMayweather,"Another one of my timepieces I designed and got customized by @mr.gregyuna . + +Photo Credit: @moneyyaya https://t.co/TnWEvNoZgQ" +05/24/2018,Sports_celeb,@FloydMayweather,"Leaving LA, heading to Las Vegas to get ready for Memorial Day Weekend. 🎥 video credit: @moneyyaya https://t.co/r7IdOIoqDg" +05/20/2018,Sports_celeb,@FloydMayweather,FOLLOW & WISH my daughter @moneyyaya a HAPPY 18th BIRTHDAY!!! https://t.co/CD631jc6TY +05/19/2018,Sports_celeb,@FloydMayweather,"Follow and wish @mayweatherpromotions ‘ fighter, @badoujack good luck as he looks to capture his 3rd World title.… https://t.co/yQRIAFVar7" +05/19/2018,Sports_celeb,@FloydMayweather,Peace & Tranquility https://t.co/tXQTHZaInb +05/19/2018,Sports_celeb,@FloydMayweather,At another private island somewhere close by the equator #photography #photooftheday #photographer https://t.co/EO5631dqae +05/19/2018,Sports_celeb,@FloydMayweather,"Sitting back smirking, making millions sitting on my ass. You can smell the bag through the photo and I’m not talki… https://t.co/pz3nmycr01" +05/18/2018,Sports_celeb,@FloydMayweather,Check out my latest interview with Fight hype https://t.co/ycABb8r6SL +05/10/2018,Sports_celeb,@FloydMayweather,"Stopped by the Wat Pho Buddhist Temple in Bangkok, Thailand. Next… https://t.co/YZt0obO0Yb" +05/05/2018,Sports_celeb,@FloydMayweather,"Bali, Indonesia. Swipe to the left👈🏽 #temple #bali #indonesia + +Photo Credit :… https://t.co/D12QFV5NSp" +05/05/2018,Sports_celeb,@FloydMayweather,"Swipe to the left ⬅️ I made a pit stop in Bali, Indonesia +#Bali +#Indonesia… https://t.co/U69a3NwdFN" +05/05/2018,Sports_celeb,@FloydMayweather,"Pool party on top of the world. + +#marinabaysands +#airmayweather @ Singapore https://t.co/mdVuDg7Wvs" +05/05/2018,Sports_celeb,@FloydMayweather,"I was bored today so I decided to fly to Singapore... Stay tuned, I’ll be in… https://t.co/ZYi9zdjNb7" +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video @ Dubai Desert https://t.co/aaInGnMJxi +05/05/2018,Sports_celeb,@FloydMayweather,Feeding the giraffes #wildlife #dubai https://t.co/MxSiNwJu0a +05/05/2018,Sports_celeb,@FloydMayweather,"Feeding Teddy Bear #wildlife #dubai @ Dubai, United Arab Emirates https://t.co/OTVIqztVjU" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing, always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/YK0n6xJd6n" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing,always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/xHx0w0UPo9" +05/05/2018,Sports_celeb,@FloydMayweather,"Laughing, always having fun #DUBAI @ Dubai, United Arab Emirates https://t.co/SgWipyuXA1" +05/05/2018,Sports_celeb,@FloydMayweather,"Traveling the world, having fun with my brother @theharlemhotboy #dubai @… https://t.co/O6YMDb9cMW" +05/05/2018,Sports_celeb,@FloydMayweather,"In living color + +#BurjAlArab +#yacht + +Photo Credit : _franktmt @ Dubai, United… https://t.co/zWqeovpGOl" +05/05/2018,Sports_celeb,@FloydMayweather,I can do this shit with no effort. @ Mayweather Boxing Gym https://t.co/wfE8GDNU59 +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video @ Mayweather Boxing Gym https://t.co/sVPUsaQGHl +05/05/2018,Sports_celeb,@FloydMayweather,"Jumped off Air Mayweather, checked into my presidential suite at the tallest… https://t.co/3gRQeBzq5N" +05/05/2018,Sports_celeb,@FloydMayweather,Just posted a video https://t.co/k8fUQ0HqKy +05/05/2018,Sports_celeb,@FloydMayweather,I just purchased 4 more Richard Mille timepieces from @rafaelloandco. Shop… https://t.co/VtG2fAPbjF +05/05/2018,Sports_celeb,@FloydMayweather,"Baby Face Little Floyd @ Grand Rapids, Michigan https://t.co/34IGHiE3te" +05/05/2018,Sports_celeb,@FloydMayweather,Time to take AIR MAYWEATHER worldwide and country hop. 🎥Credit :… https://t.co/8QsyMFbKRS +04/23/2018,Sports_celeb,@FloydMayweather,"I’m blessed! No baby mama drama @MizzMelissia + +FOLLOW @MizzMelissia https://t.co/9MxTu07Rc3" +04/23/2018,Sports_celeb,@FloydMayweather,Where should I travel to next ? https://t.co/6k4L4CQVdB +04/23/2018,Sports_celeb,@FloydMayweather,"One thing about me, I’m self made! My Dad taught me how to box and I perfected the boxing business, made my own mon… https://t.co/syDt63BvWz" +04/08/2018,Sports_celeb,@FloydMayweather,"I don't know nothing about tomorrow but I'm living for today. + +Photo Credit: @moneyyaya https://t.co/H7HC12hZGv" +04/04/2018,Sports_celeb,@FloydMayweather,"Follow one of the best pound 4 pound boxers in the world today @badoujack + +Instagram @badoujack + +Facebook Badou Jack https://t.co/zDsauAiyxA" +03/30/2018,Sports_celeb,@FloydMayweather,https://t.co/RcVFjbJgXF +03/30/2018,Sports_celeb,@FloydMayweather,https://t.co/GTEUYdULsq +03/29/2018,Sports_celeb,@FloydMayweather,Everybody follow and wish my son @zion_mayweather a Happy Birthday ! I love you Mush! https://t.co/UzfyobNklg +03/27/2018,Sports_celeb,@FloydMayweather,"Hate me or love me, you see me! https://t.co/VBfY42zwkA" +03/22/2018,Sports_celeb,@FloydMayweather,"Join me Tuesday, April 3rd at the 10th Annual Minnie’s Feed Just One Gala. Enter the fight at this epic event featu… https://t.co/aFzK0e6pDm" +03/08/2018,Sports_celeb,@FloydMayweather,Early morning selfie. https://t.co/js3pSQfUsb +03/04/2018,Sports_celeb,@FloydMayweather,Pretty Boy Floyd https://t.co/PoEmSjDPIh +03/01/2018,Sports_celeb,@FloydMayweather,https://t.co/ham7HHocux https://t.co/l6KkvVMvMF +03/01/2018,Sports_celeb,@FloydMayweather,These TMT Hublot time pieces will only appreciate in value. Go to your nearest @hublot boutique and shop right now… https://t.co/ghlvPPd2rG +03/01/2018,Sports_celeb,@FloydMayweather,Big Bottles For Those Big Moments... https://t.co/dtstgGZtIT +03/01/2018,Sports_celeb,@FloydMayweather,"Floyd Mayweather, you’re a show off. https://t.co/MgS4Zriov7" +03/01/2018,Sports_celeb,@FloydMayweather,"If you live in or are visiting Las Vegas, make sure to check out. @subzerorecovery and explore the benefits of cryo… https://t.co/bi0G55Ufxp" +03/01/2018,Sports_celeb,@FloydMayweather,I fuckin’ love my life. https://t.co/Dorf2duH4V +03/01/2018,Sports_celeb,@FloydMayweather,Buckle Up! #beltbuckle https://t.co/pDR9DXHwdf +03/01/2018,Sports_celeb,@FloydMayweather,https://t.co/XoUVKdyP26 +03/01/2018,Sports_celeb,@FloydMayweather,Unconditional Love https://t.co/zsdYrI2DDG +02/28/2018,Sports_celeb,@FloydMayweather,"The grass only gets greener on this side. +#AirMayweather +Photo Credit: @moneyyaya https://t.co/FV7fPEzJz3" +02/27/2018,Sports_celeb,@FloydMayweather,Fifty Shades of May. https://t.co/q1G30F9UKL +02/27/2018,Sports_celeb,@FloydMayweather,Mr. Chandelier Man. https://t.co/C3otqvUiNT +02/27/2018,Sports_celeb,@FloydMayweather,"I got a new jet for my birthday #AirMayweather #TMT +Photo Credit: @tmtpilot https://t.co/oDUGmD4XOR" +02/27/2018,Sports_celeb,@FloydMayweather,"I heard Chris Paul had his cowboy swag on today and so did I. I guess great minds think alike, be outside the box. https://t.co/HJ8ulpuPYI" +02/17/2018,Sports_celeb,@FloydMayweather,"Honored to launch my Big Bang Unico TMT with @HUBLOT! Shop at your nearest Hublot boutique! +#HublotMayweather #TMT… https://t.co/IgjptA41qm" +02/14/2018,Sports_celeb,@FloydMayweather,REAL TALK. #HappyValentinesDay https://t.co/vpOg4FhNBo +02/14/2018,Sports_celeb,@FloydMayweather,https://t.co/Z6RhMbgFXy +02/11/2018,Sports_celeb,@FloydMayweather,Certified Killa vs Certified Bitch https://t.co/N0GcWrycEL +02/10/2018,Sports_celeb,@FloydMayweather,"If you’re here in Las Vegas, I’m inviting you to come join me, @hublot & my team as we unveil the LIMITED EDITION… https://t.co/ro4Rv2shNE" +02/10/2018,Sports_celeb,@FloydMayweather,"Fooling around, playing my cousin Roy on my $30,000 crystal glass ping pong table. https://t.co/2PN9VbnQhI" +02/10/2018,Sports_celeb,@FloydMayweather,"Fooling around, playing my cousin Roy on my $30,000 crystal glass ping pong table. https://t.co/9nUtlyEnYd" +02/09/2018,Sports_celeb,@FloydMayweather,"Me, TMT and @hublot. Stay tuned https://t.co/WFWxyIuLEz #hublot #mayweather #tmt #tbe" +02/08/2018,Sports_celeb,@FloydMayweather,I know you can barely see me because my kitchen is bigger than your house. Can you hear the echo by looking at the… https://t.co/Aj5Rj9vkdm +02/05/2018,Sports_celeb,@FloydMayweather,"I see some of you are making comparisons to the custom $100,000.00 chinchilla fur coat I wore last night to the off… https://t.co/5uyZKEYB9d" +02/03/2018,Sports_celeb,@FloydMayweather,"@mannyfernandez You""re right ! You're muthafuckin' right!" +02/03/2018,Sports_celeb,@FloydMayweather,Billion Dollar Man https://t.co/8Vv4y1QpFK +02/01/2018,Sports_celeb,@FloydMayweather,"Come at the king, you best not miss... https://t.co/uHx4SJngHx" +01/30/2018,Sports_celeb,@FloydMayweather,https://t.co/JqWbuJ43eQ +01/30/2018,Sports_celeb,@FloydMayweather,#MCM Mayweather Crushes McGregor. https://t.co/i6p1K2QjGG +01/26/2018,Sports_celeb,@FloydMayweather,Some say there’s a difference between being smart and intelligent. Everyone knows that common sense isn’t so common… https://t.co/ct2mMZEhuo +01/26/2018,Sports_celeb,@FloydMayweather,https://t.co/Z0NWdsx3aS https://t.co/4VKWxNBcKK +01/24/2018,Sports_celeb,@FloydMayweather,Just heard a crazy song from @MaitreGims. This is why his music #1 in France. Now let’s do a crazy video for… https://t.co/2rBqIaaeeu +01/10/2018,Sports_celeb,@FloydMayweather,I already fucked you up in 2017 now they about to fuck you up in 2018. You’re about to start your new year off with… https://t.co/I8RR6oujD6 +01/09/2018,Sports_celeb,@FloydMayweather,BLACK IS BEAUTIFUL https://t.co/Q2Q1u3qg74 +01/04/2018,Sports_celeb,@FloydMayweather,Young Money May https://t.co/m6ACbbw8ol +12/26/2017,Sports_celeb,@FloydMayweather,Happy Holidays To Everyone. https://t.co/Dl9CBoBnmp +12/25/2017,Sports_celeb,@FloydMayweather,HAPPY HOLIDAYS! https://t.co/c5Cw9iRmWw +12/24/2017,Sports_celeb,@FloydMayweather,"It’s nothing like giving back to children, @icedoutbarber ,I’m so proud of you! You will always have my support.… https://t.co/Oilko743io" +12/24/2017,Sports_celeb,@FloydMayweather,"@keithandjames +#keithandjames https://t.co/FxHcSP4S68" +12/20/2017,Sports_celeb,@FloydMayweather,It’s always MONEY season. https://t.co/vdOC5xPrqB +12/15/2017,Sports_celeb,@FloydMayweather,https://t.co/zuxkthsSYK https://t.co/6jptzgl0Kw +12/10/2017,Sports_celeb,@FloydMayweather,https://t.co/tWxQCMX5Wl https://t.co/15DHdkCYmo +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/ayAbzkm6sv https://t.co/3qMnZkPRuB +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/yxhGSR1rpx https://t.co/nuwVV0PTtV +12/09/2017,Sports_celeb,@FloydMayweather,https://t.co/dyIA3zeqwS https://t.co/yZ2liznMvq +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/H58AXl4mJJ +R.I.P. Taylor https://t.co/t1j8HLZ0mt" +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/Writg5mVrF +R.I.P. Taylor https://t.co/DwLVRQKP1F" +12/08/2017,Sports_celeb,@FloydMayweather,"https://t.co/w3j65h2ddF +R.I.P. Taylor https://t.co/Z4ASqPyoTq" +12/07/2017,Sports_celeb,@FloydMayweather,Taking a little food break in between gambling while on a quick visit to Macau. https://t.co/ku3fA4lTVW +12/07/2017,Sports_celeb,@FloydMayweather,https://t.co/hWA2fAXkS1 https://t.co/kvOqOSg6Yq +12/03/2017,Sports_celeb,@FloydMayweather,"Victoria Peak +Hong Kong, China +「金錢團隊」 https://t.co/LU0PQ8mXIb" +12/03/2017,Sports_celeb,@FloydMayweather,"Hong Kong, China +「金錢團隊」 https://t.co/PyZinWowSs" +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/6mBifyx7TF https://t.co/VADQ33MI61 +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/mU9kmLzjuS https://t.co/BurrqMGBi2 +12/03/2017,Sports_celeb,@FloydMayweather,https://t.co/Z1FRO8UK43 https://t.co/Z2aC3OHRS4 +12/02/2017,Sports_celeb,@FloydMayweather,https://t.co/KlXdoEVw6x https://t.co/Er4vpYNhf6 +11/20/2017,Sports_celeb,@FloydMayweather,https://t.co/XT987hqilw https://t.co/pCGLPR6JzS +11/17/2017,Sports_celeb,@FloydMayweather,"I want to wish my son, @kingkoraun a HAPPY BIRTHDAY! +Everyone FOLLOW and WISH @kingkoraun A HAPPY 18th BIRTHDAY! https://t.co/smzgkQIRIV" +11/15/2017,Sports_celeb,@FloydMayweather,RIP Grand Dad. I️ will always love you. https://t.co/ZBLBrmyFSK +11/13/2017,Sports_celeb,@FloydMayweather,"I Will Be In China In Two Weeks. +Can’t Wait!!!! See You Guys Soon https://t.co/jCF7uCgvGR" +11/09/2017,Sports_celeb,@FloydMayweather,If you’re in Las Vegas next Saturday (11/18) meet me at the Chelsea inside the Cosmopolitan to watch an exciting ni… https://t.co/UsPVP0biRM +11/08/2017,Sports_celeb,@FloydMayweather,"Let's Start Your Christmas Shopping Early And Visit @RickiBrazil Ladies Treat Yourself To Something Nice, And Fella… https://t.co/zNWlP4PIKt" +11/02/2017,Sports_celeb,@FloydMayweather,https://t.co/K7DY9vbPYk https://t.co/H0BrtadOoO +10/27/2017,Sports_celeb,@FloydMayweather,https://t.co/xwx16yD8WP https://t.co/CZ8KO5h6jS +10/23/2017,Sports_celeb,@FloydMayweather,"I got that bag...literally & figuratively. + +#Hermes +#HermesHac +#HermesDiamondHac https://t.co/8X6E4M9NQz" +10/23/2017,Sports_celeb,@FloydMayweather,"“ROCK-A-BYE-BABY” +https://t.co/E04XN3A9VV https://t.co/e5HF5jRw50" +10/23/2017,Sports_celeb,@FloydMayweather,With 3 of my 4 children at the home opener for The Clippers vs. The Lakers game. They are all grown up now & are s… https://t.co/YupLauXpO5 +10/23/2017,Sports_celeb,@FloydMayweather,https://t.co/jWUzerRgSs https://t.co/ocs170AURW +10/20/2017,Sports_celeb,@FloydMayweather,"Support my girl @keyshiacole and get her new album #1111Reset now! +@keyshiacole!! you did it! Get her new album… https://t.co/cnzluhhdWT" +10/19/2017,Sports_celeb,@FloydMayweather,https://t.co/WgwicxJ9HX +10/18/2017,Sports_celeb,@FloydMayweather,https://t.co/z6BVbn660t +10/09/2017,Sports_celeb,@FloydMayweather,Like fine wine https://t.co/AsOZxFTbIk +10/06/2017,Sports_celeb,@FloydMayweather,Best Mouthguard In The Game @IcebergGuards For $99. We Send You A Personal Kit So You Can Have A Custom Fit Guard… https://t.co/tK8NBEUWUq +10/06/2017,Sports_celeb,@FloydMayweather,Born ready. https://t.co/FVliki6lnj +10/05/2017,Sports_celeb,@FloydMayweather,"“MR. UNDEFEATED” +50-0 +‘Undefeated’ +Music by Friyie @artofvangogh +NOW AVAILABLE on iTunes +GO BUY NOW! https://t.co/OGvXljvQgw" +10/04/2017,Sports_celeb,@FloydMayweather,"My love for the city of Las Vegas is unconditional! +I put this city on my https://t.co/g9aYEl1IrH https://t.co/BLbYiVjc37" +10/04/2017,Sports_celeb,@FloydMayweather,Billion Dollar Business https://t.co/BVy2PxCxsk +09/30/2017,Sports_celeb,@FloydMayweather,EVERYONE FOLLOW & WISH @MizzMelissia A VERY HAPPY BIRTHDAY! https://t.co/ywtRyh7hTL +09/26/2017,Sports_celeb,@FloydMayweather,"Exclusive timeless artwork in my Beverly Hills home + +#BeverlyHills + +#90210 + +#TBE + +#TMT https://t.co/o4IVZZTmpu" +09/20/2017,Sports_celeb,@FloydMayweather,"On behalf of The Money Team and Myself, I want to send my sincerest condolences to the families of Mexico and to… https://t.co/Za3AZ3mmN9" +09/18/2017,Sports_celeb,@FloydMayweather,"Centra's (CTR) ICO starts in a few hours. Get yours before they sell out, I got mine https://t.co/nSiCaZ274l https://t.co/dB6wV0EROJ" +09/18/2017,Sports_celeb,@FloydMayweather,"When it comes to luxury timepieces, Hublot is in a class of its own! As a collector of great watches,… https://t.co/hTcHcLVAzh" +09/15/2017,Sports_celeb,@FloydMayweather,Spending bitcoins ethereum and other types of cryptocurrency in Beverly Hill https://t.co/q9VZ3MzpK8 https://t.co/BYyOFUnm8W +09/15/2017,Sports_celeb,@FloydMayweather,https://t.co/rFIUcblFIh https://t.co/YBjI7XnlOV +09/13/2017,Sports_celeb,@FloydMayweather,"RT @lelepons: This video is so good @FloydMayweather @awkwardpuppets @rudymancuso!!!!! + +https://t.co/Je7MkSPNn8" +09/13/2017,Sports_celeb,@FloydMayweather,"RT @tubefilter: Fresh Off His Big Win, @FloydMayweather Sits Down With @rudymancuso’s ‘@AwkwardPuppets’ https://t.co/Qn3LVPXK8H" +09/13/2017,Sports_celeb,@FloydMayweather,RT @shots: Best @FloydMayweather Interview by @awkwardpuppets via Shots Studios: https://t.co/0Z1npYb95D https://t.co/U7K0mAOR5K +09/12/2017,Sports_celeb,@FloydMayweather,I truly love & appreciate my fans. This tattoo artist is unbelievable https://t.co/oJ2kHPoXAb +09/12/2017,Sports_celeb,@FloydMayweather,I truly love & appreciate my fans. This tattoo artist is unbelievable https://t.co/w1ltFwVg4u +09/11/2017,Sports_celeb,@FloydMayweather,"Check your local TV listing on NBC today; Monday, Sept 11, 2017 and tune in on The Steve Harvey Show for my 1st TV… https://t.co/3cH7eEFAFA" +09/11/2017,Sports_celeb,@FloydMayweather,https://t.co/ve7zkkGqId https://t.co/0TL2QW7fpN +09/09/2017,Sports_celeb,@FloydMayweather,Ladies love to be spoiled. 10 Hermes Birkin Bags cause I can. #hermes #birkin #tmt #tbe https://t.co/zx7Iz4DNQt +09/08/2017,Sports_celeb,@FloydMayweather,"I do it all for them. Unconditional love. +#family #children + +https://t.co/CtdEjfq8QJ https://t.co/LnpLrZNu3K" +09/07/2017,Sports_celeb,@FloydMayweather,Follow my playlist on @Spotify https://t.co/vJUKEwz9zH +09/07/2017,Sports_celeb,@FloydMayweather,Check Out @IcebergGuards To Get The Best Mouth Guard For Athletes. #BreatheAbility https://t.co/dd0j1vE6I3 +09/05/2017,Sports_celeb,@FloydMayweather,RT @awkwardpuppets: I have the first interview with the Champ @floydmayweather since #MayweatherMcGregor fight. It's coming soon to https:/… +09/05/2017,Sports_celeb,@FloydMayweather,"Texting Bruce, my driver. https://t.co/m78dnq0ivC" +09/04/2017,Sports_celeb,@FloydMayweather,"Las Vegas, come visit @girlcollection 7 days a week. [Song is Will I See You by @Anitta] https://t.co/bhQqjJS39z" +09/04/2017,Sports_celeb,@FloydMayweather,RT @HugoGloss: O @floydmayweather bem maravilhoso no stripclub dele usando #WillISeeYou de trilha no stories!! https://t.co/vQkGVOzYR5 +09/04/2017,Sports_celeb,@FloydMayweather,RT @rudymancuso: Coming soon @FloydMayweather @awkwardpuppets @john @shots https://t.co/IJVtgFw4u9 +08/31/2017,Sports_celeb,@FloydMayweather,I'm going in the Guinness Book of World Records for that heist. @PhilippPlein78 #TMT #TBE https://t.co/2d5AdmA9lg +08/31/2017,Sports_celeb,@FloydMayweather,Smile because life is great. #TMT #TBE https://t.co/GAblmczXj6 +08/31/2017,Sports_celeb,@FloydMayweather,RT @john: thank you @idris_erba https://t.co/OzxTNAtWtB +08/29/2017,Sports_celeb,@FloydMayweather,RT @MaiaMitchell: https://t.co/Nq0qUlI0iu +08/27/2017,Sports_celeb,@FloydMayweather,@dathanvp Thank you family. +08/27/2017,Sports_celeb,@FloydMayweather,50 - 0 +08/27/2017,Sports_celeb,@FloydMayweather,Thank you to the great country of Ireland and all the countries around the world for supporting me. +08/27/2017,Sports_celeb,@FloydMayweather,@ddlovato Thank you. +08/27/2017,Sports_celeb,@FloydMayweather,Thank you everyone in Las Vegas and everyone at home who ordered PPV. Thank you @SHOsports and my team… https://t.co/7kwPA2NXRo +08/27/2017,Sports_celeb,@FloydMayweather,"Without God, none of this is possible. THANK YOU" +08/27/2017,Sports_celeb,@FloydMayweather,RT @JBALVIN: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @Anitta: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,What were the odds on that? #paddypower #alwaysbetonblack ☘️ https://t.co/EPsbCygfaR +08/26/2017,Sports_celeb,@FloydMayweather,RT @lelepons: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @rudymancuso: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @inanna: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @HannahStocking: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @ElJuanpaZurita: #TeamMayweather ⚡️🔝 +08/26/2017,Sports_celeb,@FloydMayweather,RT @awkwardpuppets: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,RT @shots: #TeamMayweather +08/26/2017,Sports_celeb,@FloydMayweather,"Head to the theaters tonight to witness me make history! For locations near you, go to https://t.co/lXsQk9LZN2" +08/26/2017,Sports_celeb,@FloydMayweather,#TeamMayweather https://t.co/vtUvv0hUOp +08/26/2017,Sports_celeb,@FloydMayweather,Thank you @hublot for the unconditional support over the years https://t.co/n6MPnqSkgD +08/26/2017,Sports_celeb,@FloydMayweather,Talking doesn't win fights. +08/26/2017,Sports_celeb,@FloydMayweather,RT @john: The official weigh-in with @FloydMayweather. https://t.co/wdqUbAeK4G +08/26/2017,Sports_celeb,@FloydMayweather,"RT @LEllerbe: Unbelievable atmosphere at the weigh-in, can't wait until tomorrow!!!!!" +08/25/2017,Sports_celeb,@FloydMayweather,https://t.co/tOZDszQ2Sk +08/25/2017,Sports_celeb,@FloydMayweather,Weigh-in is at 3pm PT today. Make sure to watch it live. +08/25/2017,Sports_celeb,@FloydMayweather,Conor and I take will take the center stage tomorrow. Live on PlayStation®4 (PS4™). Order #MayweatherMcGregor today https://t.co/ZTqGuv9Gst +08/24/2017,Sports_celeb,@FloydMayweather,Watch me fight on @DISH Pay-Per-View. Go to https://t.co/00sSmir6JM for details on how to order #MayweatherMcGregor +08/24/2017,Sports_celeb,@FloydMayweather,"God believes in me, America believes in me, even the Irish believe in 🤜☘️ https://t.co/0W6jFFfr6B" +08/24/2017,Sports_celeb,@FloydMayweather,"I chose @TequilaAvion, Worlds Best Tequila to commemorate my 50th fight. Grab a bottle of Avion Tequila for fight n… https://t.co/icJA5SaGcm" +08/23/2017,Sports_celeb,@FloydMayweather,RT @ConorMaples: This @Spotify workout playlist from @FloydMayweather will get you amped for the gym — or for watching the fight https://t.… +08/23/2017,Sports_celeb,@FloydMayweather,You can call me Floyd Crypto Mayweather from now on #HubiiNetwork #ICO starts tomorrow! Smart contracts for sports?… https://t.co/u5ahtljk3B +08/23/2017,Sports_celeb,@FloydMayweather,What are you waiting for? Order the fight NOW on @verizonfios and you can win a trip to a future boxing event! https://t.co/2wdaI1L7jo +08/23/2017,Sports_celeb,@FloydMayweather,https://t.co/ZLirM3UUBi +08/18/2017,Sports_celeb,@FloydMayweather,I know everyone's excited to see my biggest fight ever... but blowing up my phone isn't going to get you anywhere..… https://t.co/Azo8HoIHBL +08/17/2017,Sports_celeb,@FloydMayweather,I don't only bring the action inside the ring! Watch me on the #LateLateShow w/ @JKCorden tonight at 12:37/11:37c o… https://t.co/SvsAyTmOOL +08/16/2017,Sports_celeb,@FloydMayweather,RT @Isaiah_Thomas: Always good to see my brother @FloydMayweather. Aug 26th he will be 50-0 #TMT #TBE +08/15/2017,Sports_celeb,@FloydMayweather,RT @MayweatherPromo: What makes @FloydMayweather vs @TheNotoriousMMA intriguing https://t.co/pPV6ceP6dz +08/12/2017,Sports_celeb,@FloydMayweather,"Tune in for The Third Episode +Of Four-Part Series. Premieres Tonight at 10p.m. ET/ 7p.m. PT + On SHOWTIME… https://t.co/Qyy8LgMut1" +08/06/2017,Sports_celeb,@FloydMayweather,new photo on bigboymansion's IG https://t.co/FkUsYkZwcs +08/05/2017,Sports_celeb,@FloydMayweather,#TMT +08/05/2017,Sports_celeb,@FloydMayweather,https://t.co/zHQaFxFw1c https://t.co/IGXDiDHdC7 +08/04/2017,Sports_celeb,@FloydMayweather,@billboard @Anitta Congratulations. +08/01/2017,Sports_celeb,@FloydMayweather,https://t.co/3uljFZ24hC https://t.co/TOF5iBPoHu +08/01/2017,Sports_celeb,@FloydMayweather,"Just shooting around, working on my midrange jumper #nba +@iam_jcraw +@Alonzo_Earle +@nba https://t.co/ssDhS1DdQ4" +07/02/2018,Sports_celeb,@SHAQ,Check out my homegirls on Claws tonight on TNT at 9pm ET. Hopefully they can help me get my pedicure right” hey @karrueche +07/01/2018,Sports_celeb,@SHAQ,The @rootsoffight summer sale is live! Save big on select styles now until noon PT July 5th. #CelebrateTogether… https://t.co/k5XRXcI4pN +06/28/2018,Sports_celeb,@SHAQ,"RT @DeepakChopra: Join me in supporting @RealAfroScholar's efforts to bring @amazon's #HQ2 to #Newark, NJ. He's helping to create a more pe…" +06/28/2018,Sports_celeb,@SHAQ,MIAMI. 305. I am coming home and promise you this one is going to be legendary. Grab your tickets while you still c… https://t.co/adEGwRClLt +06/28/2018,Sports_celeb,@SHAQ,"RT @GetUpESPN: Regarding a rap battle re-match, @kenjeong has a message for you @SHAQ: https://t.co/1OAkDB3LVC" +06/27/2018,Sports_celeb,@SHAQ,"Had to do it big for last night, thanks for helping me up my suit game @jcpenney #ad https://t.co/hBAKKn9GWr" +06/27/2018,Sports_celeb,@SHAQ,"It's summertime, baby! Stay cool, hydrated, and energized with @TheRealEnergice now at every @myfamilydollar store… https://t.co/zZ5yHad6FM" +06/27/2018,Sports_celeb,@SHAQ,Congratulations to Coach Johnny Jones the head coach of Texas Southern University we wish you well brother +06/27/2018,Sports_celeb,@SHAQ,"RT @MayorLevine: .@Shaq is on #TeamLevine, are you? This is our year to change the direction of Florida! + +Growing up I worked every job, fr…" +06/26/2018,Sports_celeb,@SHAQ,Suns out guns out...Summer of SHAQ starts now @BillboardDance 🔥💪 https://t.co/fPpdHKnbsJ https://t.co/xkbEal70IQ +06/24/2018,Sports_celeb,@SHAQ,DJ DIESEL AND bayati_music HAD @chateaulv ROCKING LIKE A MUG https://t.co/gKvI8WgSqW +06/23/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: NBA draft news, MLB updates, NFL insider info... + +PodcastOne Sports along w/ @SHAQ and many others bring you all the lates…" +06/22/2018,Sports_celeb,@SHAQ,Atlantic City I am coming for you July 14 🔥🔥 Jersey Shore get ready to Turn Up!! Tickets: https://t.co/eZrigt3RKb https://t.co/JcZiJ6LB4f +06/22/2018,Sports_celeb,@SHAQ,@MikeGoldFool @PostMalone Gonna miss u to +06/22/2018,Sports_celeb,@SHAQ,Congratulations @MB3FIVE and welcome to Sacramento. You've got a big career ahead of you. Already starting in style… https://t.co/lKXClkHzTy +06/21/2018,Sports_celeb,@SHAQ,"Can’t wait to visit Wisconsin on Friday. Big day of @ChampionsTour golf, #DJShaq and more. Check out my… https://t.co/oush5LHWnX" +06/20/2018,Sports_celeb,@SHAQ,"My new game Shaq Slam is on @myVEGAS Facebook baby! Here’s some chips for you to spin & win: +Facebook –… https://t.co/cr0iTHGbj0" +06/17/2018,Sports_celeb,@SHAQ,"Enough said, y’all need to check this out, a… https://t.co/ulsxmwnLk9" +06/16/2018,Sports_celeb,@SHAQ,Caught up with @MB3FIVE at the studio to show him the ropes. @JCPenney followed us around to capture it all. Watch… https://t.co/85lq5Qp7ki +06/15/2018,Sports_celeb,@SHAQ,Thanks @dubmagazine for hooking my cars up with your new @dubirtint #tintwithtechnology installed by @aesouthbay +06/14/2018,Sports_celeb,@SHAQ,Meet Big Fella! Check me out in #UncleDrew In theaters June 29 https://t.co/rBzSVjb6DK https://t.co/qQbbEDpdj5 +06/14/2018,Sports_celeb,@SHAQ,@theofficialhesh Just send me the heat 🔥🔥🔥 and I will drop that bass cuz +06/13/2018,Sports_celeb,@SHAQ,Thank you for sending your questions. See @UncleDrewFilm in theaters June 29! #AskShaq https://t.co/VEyzO3fy2l +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @kaylaxabby .@kaylaxabby #AskShaq https://t.co/i2jwEin49H +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @RishiK19 .@RishiK19 #AskShaq https://t.co/mhnay7FX0V +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @TheMasonGaming .@TheMasonGaming #AskShaq https://t.co/CaIWS3NuWq +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @spiros602 @TwitterMovies .@spiros602 @TheGeneralAuto #AskShaq https://t.co/hhLA51r26w +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @RishiK19 .@rishik19 #AskShaq https://t.co/c38uIHidiV +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @BALLnROLL .@BALLnROLL #askshaq https://t.co/RAzeStgqNe +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @neverheardabout @UncleDrewFilm .@neverheardabout #askshaq https://t.co/jakRW5jQoi +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @AmeliaEarhart1 .@AmeliaEarhart1 @nate_robinson #AskShaq https://t.co/Rv1M7zpM9w +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @JesseAndClarke .@JesseAndClarke @KyrieIrving #AskShaq https://t.co/BQZMjGIpdS +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @LisaLeslie .@LisaLeslie #AskShaq https://t.co/FkSRdDSCVT +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @Dyl5nSmith .@Dyl5nSmith #AskShaq https://t.co/ICVMkqCWQJ +06/13/2018,Sports_celeb,@SHAQ,RT @SHAQ: @ChaoticProdigy_ #AskShaq https://t.co/VlX8PwEz4x +06/13/2018,Sports_celeb,@SHAQ,@kaylaxabby .@kaylaxabby #AskShaq https://t.co/i2jwEin49H +06/13/2018,Sports_celeb,@SHAQ,@RishiK19 .@RishiK19 #AskShaq https://t.co/mhnay7FX0V +06/13/2018,Sports_celeb,@SHAQ,@TheMasonGaming .@TheMasonGaming #AskShaq https://t.co/CaIWS3NuWq +06/13/2018,Sports_celeb,@SHAQ,@spiros602 @TwitterMovies .@spiros602 @TheGeneralAuto #AskShaq https://t.co/hhLA51r26w +06/13/2018,Sports_celeb,@SHAQ,@RishiK19 .@rishik19 #AskShaq https://t.co/c38uIHidiV +06/13/2018,Sports_celeb,@SHAQ,@BALLnROLL .@BALLnROLL #askshaq https://t.co/RAzeStgqNe +06/13/2018,Sports_celeb,@SHAQ,@neverheardabout @UncleDrewFilm .@neverheardabout #askshaq https://t.co/jakRW5jQoi +06/13/2018,Sports_celeb,@SHAQ,@AmeliaEarhart1 .@AmeliaEarhart1 @nate_robinson #AskShaq https://t.co/Rv1M7zpM9w +06/13/2018,Sports_celeb,@SHAQ,@JesseAndClarke .@JesseAndClarke @KyrieIrving #AskShaq https://t.co/BQZMjGIpdS +06/13/2018,Sports_celeb,@SHAQ,@LisaLeslie .@LisaLeslie #AskShaq https://t.co/FkSRdDSCVT +06/13/2018,Sports_celeb,@SHAQ,@Dyl5nSmith .@Dyl5nSmith #AskShaq https://t.co/ICVMkqCWQJ +06/13/2018,Sports_celeb,@SHAQ,@ChaoticProdigy_ #AskShaq https://t.co/VlX8PwEz4x +06/13/2018,Sports_celeb,@SHAQ,#AskShaq https://t.co/16aHnuPA19 +06/13/2018,Sports_celeb,@SHAQ,Please help my friends in Gwinnett County. Shelter is full! Adopt a new family member! This month all dogs and cats… https://t.co/LE0KigY789 +06/13/2018,Sports_celeb,@SHAQ,Who wore the 'stache better? #BigFella or #LilG #ad https://t.co/dUMOW08FMK +06/12/2018,Sports_celeb,@SHAQ,I’m answering your Uncle Drew questions live on Wednesday! Tweet them to me now using #AskShaq! https://t.co/carNdIgaLR +06/11/2018,Sports_celeb,@SHAQ,@j_spag @svddendeathdub That track had the crowd getting sick as fuh... send me some more of that fire cuz +06/10/2018,Sports_celeb,@SHAQ,In the studio with @KingsGuardGG. #SHAQramento 👑🎮 https://t.co/lNSBqxqQjO +06/09/2018,Sports_celeb,@SHAQ,Forget @FortniteGame and play a real game! Shaq Fu: A Legend Reborn is out now. U gonna love it. https://t.co/YJ3f5ZKoFh +06/09/2018,Sports_celeb,@SHAQ,Get that #FridayFeeling!!! Pick up Shaq Fu: A Legend Reborn for the weekend. It's time to settle the score of '94! https://t.co/YJ3f5ZKoFh +06/06/2018,Sports_celeb,@SHAQ,Boom! The wait is finally over and the Shaq Attack is in full effect! Grab a copy of Shaq Fu: A Legend Reborn today… https://t.co/Dqa8EI14li +06/05/2018,Sports_celeb,@SHAQ,"THE BIG DAY HAS ARRIVED!!! Shaq Fu: A Legend Reborn is available now on PS4, Xbox One, Nintendo Switch, & Steam. St… https://t.co/jK3aD1Y1tq" +06/05/2018,Sports_celeb,@SHAQ,Was such an honor to represent @NBA2K as their Legend Edition cover athlete last year. Can’t think of anyone better… https://t.co/DffoanFK7e +06/05/2018,Sports_celeb,@SHAQ,RT @espn: On This Date: @kobebryant threw it up and @SHAQ slammed it down in Game 7 against the Blazers. https://t.co/VA7rjCcsJE +06/04/2018,Sports_celeb,@SHAQ,Nice work @StephenCurry30 on getting in the #nbafinals record books! You inspired me to add a new look to my alread… https://t.co/xlla5Sovjx +06/03/2018,Sports_celeb,@SHAQ,RT @TheRealMikeEpps: Youngster got that swag 😂👌🏾 https://t.co/sgxeWAOhmb +06/01/2018,Sports_celeb,@SHAQ,RT @krispykreme: It's free. Why not? #NationalDoughnutDay is June 1st. https://t.co/77y6SENjzP +05/29/2018,Sports_celeb,@SHAQ,"Shaq's Fun House aimed to create the most legendary event on the planet. The best DJ's in the world, carnival attra… https://t.co/337RtApuuu" +05/29/2018,Sports_celeb,@SHAQ,Who could turn down a free doughnut? Not me! Head to @KrispyKreme June 1 to snag a free one of your choice for… https://t.co/fzm1pSqGG6 +05/28/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ says Chris Paul should ""man up"" and play the rest of this #HOUvsGSW series despite his hamstring injury. + +Listen to…" +05/24/2018,Sports_celeb,@SHAQ,RT @WiredP: *Announcement* We’ve teamed up with @Shaq to bring an extremely limited (just 500 in the world!) Shaq FU: A Legend Reborn Colle… +05/24/2018,Sports_celeb,@SHAQ,@jtimberlake @NBAonTNT When you need a handsome baritone It’s gonna be me @realjoeyfatone baby bye bye bye +05/24/2018,Sports_celeb,@SHAQ,RT @jtimberlake: Google’s having a rough night. @SHAQ @NBAonTNT https://t.co/ehqGOxFeM5 +05/23/2018,Sports_celeb,@SHAQ,"Big news today! As The BIG Guy in charge at @CarnivalCruise AKA CFO, I’m honored to introduce our newest ship:… https://t.co/5JS3wVec3g" +05/23/2018,Sports_celeb,@SHAQ,"RT @shaqtin: “Nominee Numba 1! Draymond Green!” -@SHAQ, probably #Shaqtin 😂 https://t.co/glMW8zSdku" +05/23/2018,Sports_celeb,@SHAQ,DC I am coming for you!! Throwing down with my boys @cashcash at Washington’s best club @echostage. Tix on sale Thu… https://t.co/nJIqwXAiMV +05/22/2018,Sports_celeb,@SHAQ,RT @PC1Sports: Before tonight's #WarriorsVSRockets game 4 @SHAQ dropped by to give a quick message about @PodcastOne! https://t.co/mkASmeiq… +05/22/2018,Sports_celeb,@SHAQ,RT @PC1Sports: 👀👀 what is @SHAQ up to with us today? https://t.co/QTOyDv35XL +05/22/2018,Sports_celeb,@SHAQ,Last chance to come hang with me in Vegas! Enter here and support the SAGERSTRONG Foundation:… https://t.co/AVx9777mGD +05/22/2018,Sports_celeb,@SHAQ,.@TheRealEnergice helps me stay hydrated and energized. Find #Energice in every @DollarGeneral store nationwide! #ad +05/22/2018,Sports_celeb,@SHAQ,"RT @NBAonTNT: ""I've come a long way since Kazaam!"" + +@SHAQ stars in Shaqanimal Shaqkingdom. https://t.co/Ch6ly9ooKt" +05/20/2018,Sports_celeb,@SHAQ,RT @richeisen: For your weekend listening: the newest “Eyes On Sports” where Suzy and I welcome two guests — @notthefakeSVP on our old ESPN… +05/19/2018,Sports_celeb,@SHAQ,Headed to The Bay this weekend #nbaplayoffs #warriors #rockets what up @G_Eazy where dem Bay Area ballers @E40… https://t.co/QuCRktI4XA +05/17/2018,Sports_celeb,@SHAQ,RT @RealBillRussell: #shaqinafool @NBAonTNT I once had an inbound pass that hit the guide wire that should qualify. @shaq +05/17/2018,Sports_celeb,@SHAQ,I’m back baby on @myVEGAS! Play my new game Shaq Slam. Here’s some chips to get you started:… https://t.co/lg1RnzPtTz +05/17/2018,Sports_celeb,@SHAQ,@kingjames I thought it was you brother but it… https://t.co/ha1yFxqh7O +05/16/2018,Sports_celeb,@SHAQ,"Me, Chuck Boy, @TheJetOnTNT and @TurnerSportsEJ back in #Houston tonight for game 2 @NBAonTNT… https://t.co/8T3OjxZ4qG" +05/16/2018,Sports_celeb,@SHAQ,‘It’s time to settle the score of ’94! I’m back baby! Pre-order the new and improved #ShaqFu at @GameStop and be re… https://t.co/AVQHGZVSiO +05/15/2018,Sports_celeb,@SHAQ,RT @JustinLockhart_: Extremely honored and blessed to have received an offer from Utah State! #GoAggies https://t.co/5Lt4chZAyG +05/09/2018,Sports_celeb,@SHAQ,"Y'all better step aside, cause @TheGeneralAuto and I have arrived! 🏀 + +Get your first look at #BigFella and #LilG p… https://t.co/H0VzrCGLrq" +05/07/2018,Sports_celeb,@SHAQ,RT @PC1Sports: A listener of The Big Podcast had a question for @SHAQ - which superstar would he choose to make NBA title runs for the next… +05/06/2018,Sports_celeb,@SHAQ,"Ready to flex on em tonight. Got something big with @jcpenney coming for you guys, catch me on @NBAonTNT #AllAtJCP… https://t.co/noZu4OlmZr" +05/06/2018,Sports_celeb,@SHAQ,Can't believe this was 25 years ago #ROOKIEOFTHEYEAR Who you got this year? https://t.co/zOazz1c4mp +05/05/2018,Sports_celeb,@SHAQ,RT @JustinLockhart_: Blessed to say I have received my 2nd offer and 1st Pac 12 offer from the University of Utah! #GoUtes https://t.co/hLY… +05/05/2018,Sports_celeb,@SHAQ,"@JalenRose you tell @paulpierce34 that’s was a different Shaq, come on truth lol I’m watching you @ paulpierce34 great job fellas" +05/04/2018,Sports_celeb,@SHAQ,"DJ Diesel X @steveaoki X @dimmak +Stay tuned this motion picture is to be continued... https://t.co/py5YZ2trdB" +05/03/2018,Sports_celeb,@SHAQ,What @mcuban used to play every time I went to the free throw line hillarious https://t.co/XYMXRgTLFN +05/03/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ makes his BOLD prediction where @KingJames & @Yg_Trece will be playing next year! + +Hear the rest of this conversation…" +05/02/2018,Sports_celeb,@SHAQ,I’m looking for a VIP... and it could be YOU! For your chance to party with me in Vegas & support a great cause go… https://t.co/rU9G5KOR0U +05/01/2018,Sports_celeb,@SHAQ,I made chuck go into his MATRIX #NBAONTNT https://t.co/0CaupkxZtG +04/30/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: A new episode of The Big Podcast with @SHAQ is out! + +Here's a clip of Shaq talking about his NBA Playoff curfew rules when…" +04/29/2018,Sports_celeb,@SHAQ,My main man ceowacko142 just hook me up with 100 dope t shirts check him out… https://t.co/MddNMeJ03T +04/28/2018,Sports_celeb,@SHAQ,Got this @G_Eazy @yogottikom and @YBNNahmir on repeat! And you know it’s from the #UncleDrew Soundtrack. Get it: https://t.co/ETPrPdHfbu +04/27/2018,Sports_celeb,@SHAQ,"RT @TheGeneralAuto: Okay, #BigFella! You know who to call if you need a 6th man for the geriatric squad, @SHAQ 😉 + +#GetBuckets #UncleDrew h…" +04/26/2018,Sports_celeb,@SHAQ,Let’s GO! The new trailer for #UncleDrew is here! See the crew in theaters June 29. uncledrewfilm https://t.co/dEtNcUExdz +04/26/2018,Sports_celeb,@SHAQ,Let’s GO! The new trailer for #UncleDrew is here! See the crew in theaters June 29: https://t.co/h2fu9SH19A @UncleDrewFilm +04/26/2018,Sports_celeb,@SHAQ,I didn’t know they had sharks and alligators in MINNESOTA LAKES they tried to attack me America… https://t.co/5F9MaR0d8S +04/25/2018,Sports_celeb,@SHAQ,"What's going on with Kawhi in San Antonio? Here's what I think went down, from this week's #Shaqcast.… https://t.co/sU40E6d6UY" +04/25/2018,Sports_celeb,@SHAQ,"When I go to Vegas, I go big. Think you can handle it? Support @SagerStrong & enter to be my VIP:… https://t.co/nVHZM35LXb" +04/25/2018,Sports_celeb,@SHAQ,"RT @MikeGoldFool: Dear @KingJames & @JoelEmbiid, here is how you can avoid winning Shaqtin MVP: + +1) tweet Shaq something nice and funny +2)…" +04/25/2018,Sports_celeb,@SHAQ,"RT @UncleDrewFilm: Squad up! Check out the new official poster for #UncleDrew in theaters June 29! Starring @KyrieIrving, @LilRel4, @Shaq,…" +04/24/2018,Sports_celeb,@SHAQ,Meek Mill Boards Chopper Heading to 76ers Game! via @TMZ https://t.co/0lKqOdHQGO https://t.co/HswaJ2EKRk +04/23/2018,Sports_celeb,@SHAQ,"RT @PC1Sports: .@SHAQ gives his thoughts on what he thinks went down between Kawhi Leonard and the Spurs + +Listen to the full episode here:…" +04/23/2018,Sports_celeb,@SHAQ,Be yourself be different be the best be whatever you want. https://t.co/sZwG77ui95 +04/22/2018,Sports_celeb,@SHAQ,@sickickmusic does it again the guy is crazy I seen him do it in real life daaaaaaam https://t.co/NRRUJHreTF +04/21/2018,Sports_celeb,@SHAQ,@Grabbitz had me jammin like a mug https://t.co/LZ79RfVhHR +04/19/2018,Sports_celeb,@SHAQ,"From basketball to big business, it's all about fun. Thanks to @RealSportsHBO for the feature: https://t.co/rZGvAjDK6B" +04/18/2018,Sports_celeb,@SHAQ,I want to fly you out to Vegas to live it up with me! It’s gonna be 🔥🔥🔥 Support #SAGERSTRONG & enter to win:… https://t.co/TTSizc16Yv +04/15/2018,Sports_celeb,@SHAQ,"Watch me battle @kenjeong on the premiere of @DropTheMic tonight at 10:30 on TBS."" https://t.co/1zqdQH8awX" +04/13/2018,Sports_celeb,@SHAQ,Catch us on the @latelateshow! @victoriabeckham @JKCorden Tonight at 12:37/11:37c on CBS #LateLateShow https://t.co/dCastQddNU +04/10/2018,Sports_celeb,@SHAQ,"@krispykreme Hey, what about me?! #KrispyKremePartner" +04/09/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: .@SHAQ calls out the Hall of Fame committee for not letting Chris Webber into the Hall again this year, which sparks a spir…" +04/07/2018,Sports_celeb,@SHAQ,🚨 My man @andrewhypes and I produced a crazy remix to @iamcardib “Bartier Cardi” to celebrate… https://t.co/x8JJVRMECd +04/07/2018,Sports_celeb,@SHAQ,🚨 My man @andrewhypes and I produced a crazy remix to @iamcardib “Bartier Cardi” to celebrate the release of her de… https://t.co/3WeFxjDLPo +04/06/2018,Sports_celeb,@SHAQ,RT @RoParrish: .@KGArea21 Shaq + KG choppin it up with Yours Truly @RoParrish — talkin whips 4 @KumhoTireUSA @NBAonTNT RT https://t.co/a8k7… +04/05/2018,Sports_celeb,@SHAQ,"Our squad is stacked and about to run this league. Let’s get it, @KingsGuardGG! 💯 #Shaqramento https://t.co/l4baQSUPj6" +04/04/2018,Sports_celeb,@SHAQ,Its OVER! RANE changed the GAME No Needles let’s go @IRIE @atrak @djkhaled @djcarnage @steveaoki @diplo @RaneDJ… https://t.co/ZxzKSjc5nl +04/02/2018,Sports_celeb,@SHAQ,Get ready NBA 2K League... I’m the new GM of @KingsGuardGG and we’re about to reign supreme! 👑 🎮 #Shaqramento https://t.co/TZ1ipE5Xdn +04/01/2018,Sports_celeb,@SHAQ,Just posted a video https://t.co/D7K7mHCYz8 +03/30/2018,Sports_celeb,@SHAQ,"RT @UncleDrewFilm: #GetBuckets with @KyrieIrving, @LilRel4, @SHAQ, @RealChrisWebber, @ReggieMillerTNT, @Nate_Robinson, @LisaLeslie, @TheEri…" +03/28/2018,Sports_celeb,@SHAQ,Congrats to my friend MARK EATON great book https://t.co/rDkp3uuu5S +03/28/2018,Sports_celeb,@SHAQ,"Had a wild ride to shaqsfunhouse last weekend thanks to @Lyft #ad"" https://t.co/fDCj57XZfn" +03/28/2018,Sports_celeb,@SHAQ,"Had a wild ride to shaqsfunhouse last weekend thanks to @Lyft #ad"" https://t.co/q2Fnq0y0JR" +03/28/2018,Sports_celeb,@SHAQ,RT @RealSportsHBO: TONIGHT on #RealSports (10:30 PM ET/PT): @BernardGoldberg finds out how @SHAQ turned a HOF @NBA career into a business e… +03/27/2018,Sports_celeb,@SHAQ,Listen up! Something big (and tall) is coming your way soon. @jcpenney #AllAtJCP #ad https://t.co/4yFJco8q2C +03/24/2018,Sports_celeb,@SHAQ,"Shaq X @steveaoki #MiamiMusicWeek +https://t.co/WdwsKssC1j #shaqsfunhouse https://t.co/Qwzu5LSmhg" +03/23/2018,Sports_celeb,@SHAQ,@steveaoki X SHAQ #miamimusicweek #miamiultra https://t.co/WdwsKsb19L #shaqsfunhouse https://t.co/Qwzu5LALpI +03/23/2018,Sports_celeb,@SHAQ,@Drewo93 Who said you were not good enough? +03/23/2018,Sports_celeb,@SHAQ,"I’m bringing my talents to South Beach this weekend #ShaqsFunHouse +#MiamiMusicWeek https://t.co/udzPKyt1Ed" +03/22/2018,Sports_celeb,@SHAQ,RT @shaqtin: 🚨 TRAGIC BRONSON ALERT 🚨 https://t.co/PLrisbpRfJ +03/21/2018,Sports_celeb,@SHAQ,#SnowDay so what? I'm getting my hydration on with @TheRealEnergice frozen ice bars. Now at @myfamilydollar #ad https://t.co/q1XEBPFjMh +03/21/2018,Sports_celeb,@SHAQ,Yup https://t.co/Wpfa0d9TNb +03/19/2018,Sports_celeb,@SHAQ,Only a few spots left on my guest list to the first ever @shaqsfunhouse this Friday 🎧🎡🏀 RSVP & VIP TABLE reservatio… https://t.co/JImzcwmSlH +03/18/2018,Sports_celeb,@SHAQ,@TheJetOnTNT glad u got rid of the ugly fat guy and got a sexy underwear model next to you hey Wallace ZIBIAK +03/17/2018,Sports_celeb,@SHAQ,"@TRAEABN and @youngthug team up for a melodic new track “Don’t Know Me” +https://t.co/nopqOF4zqY #HometownHero https://t.co/1jqcVyvy6N" +03/17/2018,Sports_celeb,@SHAQ,@ClarkKelloggCBS and GREG GUMBLE how y’all gonna fire @TheJetOnTNT and replace him with a aborcombie and Fitch unde… https://t.co/K9xuVuVRIB +03/17/2018,Sports_celeb,@SHAQ,"Hey Barkley and @TheJetOnTNT first the Virginia loss killed my bracket, then I just saw a TURTLE RAT" +03/17/2018,Sports_celeb,@SHAQ,"“I'm Still Laughing” my newest All-Stars comedy w/Bruce Bruce, Huggy Lowdown, Aida Rodriguez & Brian ""Da Wildcat"" S… https://t.co/yirDJEu2uJ" +03/16/2018,Sports_celeb,@SHAQ,The steph curry robot he never misses like steph curry https://t.co/9i6OVSZM3O +03/16/2018,Sports_celeb,@SHAQ,"Part Festival, Part Carnival…I'm launching @ShaqsFunHouse in Miami next week alongside the world’s best DJ’s. Y’all… https://t.co/NgwwZn6Lzp" +03/15/2018,Sports_celeb,@SHAQ,Flex on 'em after your workout with @TheRealEnergice #ad https://t.co/xL4JgA2TuG +03/15/2018,Sports_celeb,@SHAQ,"Yo #Shaqcast listeners time for you to vote for your favorites in the 2018 #Borderline Bracket, your winners will m… https://t.co/KM8L8eWiSz" +03/14/2018,Sports_celeb,@SHAQ,The #BigFella dominates this time every year. Me and the @UncleDrewFilm cast challenge you to use #UncleDrewBracket… https://t.co/13Awrs4eX2 +03/13/2018,Sports_celeb,@SHAQ,"RT @NRGgg: Samsung #GalaxyS9 & @LogitechG Keyboard, Mouse and Headset #Giveaway +-Tag Your Friends +-RT, Like & Follow @NRGgg +Click Here: ht…" +03/13/2018,Sports_celeb,@SHAQ,Would like to thank THE JEFFERSON AWARDS COMMITTEE for choosing me as award winner for… https://t.co/Nf4nM86CVo +03/12/2018,Sports_celeb,@SHAQ,The WALDORF ASTORIA AND PENNINSULA HOTEL IN NEW YORK ARE MY FAVORITE SPOTS IN NEW YORK +03/12/2018,Sports_celeb,@SHAQ,Think you can beat me and @RobRiggle? Compete against the PC1 hosts in the #PodcastOneSportsNet Bracket Challenge.… https://t.co/trBmMI0qwC +03/10/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: .@Shaq and other #PodcastOneSportsNet hosts are competing in a #BracketChallenge this year, and you can join in! Do you hav…" +03/08/2018,Sports_celeb,@SHAQ,I am proud to support the incredible students behind #marchforourlives. Join us on March 24 as we march on Washingt… https://t.co/ZIX0Y960vi +03/08/2018,Sports_celeb,@SHAQ,"Yes, you can get an @oreo Chocolate Candy Bar even if you’re not Laura McPingleton in the #OreoBirthdayGiveaway #ad… https://t.co/wPHEk2sXv3" +03/07/2018,Sports_celeb,@SHAQ,Good news: I finally found my phone. Even better news: I’m giving away 1 Million @oreo Chocolate Candy Bars!… https://t.co/VtuDFtGhDJ +03/06/2018,Sports_celeb,@SHAQ,Thanks for all the birthday wishes #moneyballonchallenge https://t.co/14qiOMNwtH +03/06/2018,Sports_celeb,@SHAQ,.@oreo and I share a birthday … and a love of giving away 1 Million free OREO Chocolate Candy Bars!… https://t.co/Hv1W9f6yEz +03/05/2018,Sports_celeb,@SHAQ,RT @Skye_chanel: @SHAQ Oh Lawd here comes the Kazaam animated short film from Dreamworks that nobody asked for😒 https://t.co/AA5aqHS4m7 +03/05/2018,Sports_celeb,@SHAQ,"Congrats to KOBE first Oscar that’s big bro #dearbasketball. Proud of you, Big honor for you and your family. I’m jealous lol" +03/04/2018,Sports_celeb,@SHAQ,Dj diesel rockin the crowd in San Antonio Texas @VeroTrueSocial https://t.co/fHXG9a8djy +03/02/2018,Sports_celeb,@SHAQ,Had to put some music to this one woo weeee dam Gina https://t.co/cmzC8V7oyP +03/02/2018,Sports_celeb,@SHAQ,"@chadwickboseman you are incredible brother , I am literally your biggest fan may you have continued success brother https://t.co/uD5vkmbQ0H" +03/01/2018,Sports_celeb,@SHAQ,"I have the coolest treehouse ever... don’t miss Watching me and @TheTreehouseMan tomorrow, Friday at 9p ET on… https://t.co/xEEWTsYriD" +03/01/2018,Sports_celeb,@SHAQ,"As Carnival CFO, I’d like to welcome royalty to the family! @IAMQUEENLATIFAH congrats on being named Godmother of… https://t.co/RBEVbfiYPi" +02/28/2018,Sports_celeb,@SHAQ,"Next month, you could win a fan's dream: a trip to San Antonio to play on MY team in a celebrity game! Don't miss y… https://t.co/5ZFN5AoiC1" +02/28/2018,Sports_celeb,@SHAQ,Since y’all scared the las #familydancechallenge I challenge @kingjames @kevinhart4real @diddy… https://t.co/zKyHrCwaPD +02/25/2018,Sports_celeb,@SHAQ,"I like my new line of kids shoes so much, I had them made in King size. #ShaqShoes #CheckThemOut https://t.co/LYl4lruSBv" +02/25/2018,Sports_celeb,@SHAQ,“Proud to Exec Produce a powerful documentary about saving the kids in the inner cities. Check it out on @Netflix “A WEEK IN WATTS”. +02/24/2018,Sports_celeb,@SHAQ,[MT] #DamnSonWheredYouFindThis: F*ck How It Turn Out Edition:: #GetItLIVE! https://t.co/gFcwR9wqqR @LiveMixtapes… https://t.co/lvHVYPMaVM +02/24/2018,Sports_celeb,@SHAQ,HQPPY BIRTHDAY TO MY NEPHEW @shaq_morris keep it going big homie u almost at the finish line https://t.co/HQNe8kXi5h +02/23/2018,Sports_celeb,@SHAQ,This needs to be a show. What do you think https://t.co/qa1jEpm56Y +02/22/2018,Sports_celeb,@SHAQ,Here is a Throwback Thursday for ya 🎤Me and Fu-Schnickens on @arseniohall 💪🏾💪🏾💪🏾 Don’t call it comeback🎤I’ve been h… https://t.co/fT6zwZPOyD +02/22/2018,Sports_celeb,@SHAQ,"When you’re 7 feet tall, you eat your #PringlesStack 7 chips tall. Vote for your chance to play on my Team… https://t.co/4WHBwOv4yG" +02/22/2018,Sports_celeb,@SHAQ,"See why @bluhazl is sleeping better with @casper +https://t.co/BBLD7wWSj1" +02/22/2018,Sports_celeb,@SHAQ,SHAQTIN A FOOL MIDSEASON AWARDS COMIN IN FIVE MINUTES DONT MISS IT +02/21/2018,Sports_celeb,@SHAQ,"U know u got nothin better to do tonight than watch my show.... dont miss it. +#ShaqtinAwards #NBATV https://t.co/W0OiVKtj3S" +02/21/2018,Sports_celeb,@SHAQ,RT @BET: Wishing a happy birthday to the amazing @rihanna! Enjoy your day sis. https://t.co/hZpdVcLrRg +02/21/2018,Sports_celeb,@SHAQ,RT @danawhite: I’m gonna knock that smirk right off your face!!! #fightweek https://t.co/e0P5UIidv2 +02/21/2018,Sports_celeb,@SHAQ,Happy birthday to the great Charles Barkley https://t.co/EnjTzJ8wBB +02/19/2018,Sports_celeb,@SHAQ,RT @MooreAshleyE: Now y’all know the #Fergie National wasn’t worse than when Carl Lewis thought he could sing it before the Bulls game... l… +02/19/2018,Sports_celeb,@SHAQ,If you haven’t seen black panther you better go now @chadwickboseman did his thing this is the… https://t.co/enWZRT4e97 +02/18/2018,Sports_celeb,@SHAQ,RT @RoParrish: .@NBATV Donovan Mitchell didn't disappoint during the dunk contest… #NBAAllStar #TakeNote https://t.co/ogVi2eSqOy +02/17/2018,Sports_celeb,@SHAQ,LA! Come hang with me at @ShoePalace tomorrow https://t.co/VpGPQrEJGB +02/16/2018,Sports_celeb,@SHAQ,Can’t wait to join #XboxLiveSessions at #OneCourt to play #XboxOneX and discuss all things #NBAAllStar. Make sure t… https://t.co/nFeFYpIKcC +02/15/2018,Sports_celeb,@SHAQ,I need to get one of these for my house. Reserve your spot now for this amazing @AmericanExpress Experience! … https://t.co/jKk0oBr3Pp +02/14/2018,Sports_celeb,@SHAQ,It’s almost time for the Big Fella to shine! Watch the brand new #UncleDrew trailer right here! The movie busts ont… https://t.co/4lr709Pazd +02/14/2018,Sports_celeb,@SHAQ,See you there https://t.co/9G5PZxIuxe +02/12/2018,Sports_celeb,@SHAQ,"Happy Birthday to the ALL TIME 🐐 +11✖️@nba 🏆 Bill Russell much love and respect https://t.co/7oyCRHF1Jj" +02/12/2018,Sports_celeb,@SHAQ,"The bigger we are, the harder we ball. Meet the #BigFella when #UncleDrew hits theaters June 29! @UncleDrewFilm https://t.co/2fdotuTGTE" +02/11/2018,Sports_celeb,@SHAQ,Fun video of my boys thanks to @overtime #overtimechallenge https://t.co/usdcRhn0Hi +02/10/2018,Sports_celeb,@SHAQ,Happy Birthday to THE SHARK @SharkGregNorman https://t.co/5qVMNXvJrK +02/09/2018,Sports_celeb,@SHAQ,I rather be blind then to not sing my favorite artist beyonce song #beyoncesbiggestfanliterally https://t.co/e2HxIjO9Kk +02/09/2018,Sports_celeb,@SHAQ,BEAT DONUTS EVER #krispykreme #krispykremedoughnuts https://t.co/BwHSri21ka +02/08/2018,Sports_celeb,@SHAQ,"RT @PodcastOne: Look at that, Gunner and @SHAQ are the same size 😂 Don't miss his cameo on #MakeSpeidiFamousAgain with @spencerpratt & @hei…" +02/07/2018,Sports_celeb,@SHAQ,Excited to continue my partnership with @TheGeneralAuto on our mission to #MakeLifeEasier for customers! https://t.co/xB3vYoF5vD +02/07/2018,Sports_celeb,@SHAQ,RT @SHAQ: @amiller @JimmyRollins11 @ryanhoward @SFShock Let’s do this! Join me in the #BabyBayChallenge to support our commitment to youth… +02/07/2018,Sports_celeb,@SHAQ,@amiller @JimmyRollins11 @ryanhoward @SFShock Let’s do this! Join me in the #BabyBayChallenge to support our commit… https://t.co/qfv1Pi0WTS +02/07/2018,Sports_celeb,@SHAQ,Check out a young Shaq Daddy sparking the biggest rap war the NBA has ever seen in this weeks episode of… https://t.co/8OmXdgZW2x +02/06/2018,Sports_celeb,@SHAQ,Want a chance to be coached by yours truly? Then get to https://t.co/I2xfxR4XQ3 and vote for Team @Pringles!… https://t.co/uv6hIaFEQG +03/02/2018,Sports_celeb,@larrybirddaily,"PLAYER COMPARISON '13 LeBron James and '86 Larry Bird. + +Both players won MVP in their respective seasons.☘️🏀 https://t.co/7E7iUvCmo6" +02/07/2018,Sports_celeb,@larrybirddaily,"(1980) Back in days.. + +☘️Larry with Pistol🔫 https://t.co/CbWhffTeuD" +01/26/2018,Sports_celeb,@larrybirddaily,RT @tatonka44: @LarryBirdDaily Still my favorite https://t.co/VmFlHIyULS +01/26/2018,Sports_celeb,@larrybirddaily,RT @jeffstripp: Don’t let winning make you soft. Don’t let losing make you quit. Don’t let your teammates down in any situation. – Larry B… +01/26/2018,Sports_celeb,@larrybirddaily,"RT @designbyduncan: ""Push yourself again and again. Don't give an inch until the final buzzer sounds."" -Larry Bird @LarryBirdDaily https://…" +01/16/2018,Sports_celeb,@larrybirddaily,Three Letter Man MVP ☘️ https://t.co/UV07dkTFk1 +01/09/2018,Sports_celeb,@larrybirddaily,"""The lefty game"" Prior to a game against the Blazers, Larry Bird told the media that he was saving his right hand f… https://t.co/pKxxD1OvYk" +01/06/2018,Sports_celeb,@larrybirddaily,RT @PigasusPictures: It's safe to say it's always #NationalBirdDay in Indiana https://t.co/7Rv9AabMpK +01/06/2018,Sports_celeb,@larrybirddaily,(1987) Good old days☘️ https://t.co/50kcY89yLe +01/04/2018,Sports_celeb,@larrybirddaily,"(1979) Back in days.. + +Red & Larry☘️ https://t.co/SftxISc3Kj" +01/04/2018,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 26 years ago today in NBA History + +January 4, 1992 + +Boston's Robert Parish became the fifth player in NBA history (along wit…" +01/02/2018,Sports_celeb,@larrybirddaily,"Larry Bird's career free throw percentage☘️ + +🏀% 88.6🏀 https://t.co/W1fjfw08rh" +01/01/2018,Sports_celeb,@larrybirddaily,Larry Legend 1979☘️ https://t.co/O2mFjmvx8p +12/31/2017,Sports_celeb,@larrybirddaily,Happy new year everyone🎄☘️ https://t.co/nlsWyjzE2W +12/28/2017,Sports_celeb,@larrybirddaily,"The Historic Rivalry.. + +Magic vs. Larry, NBA style, began 38 years ago today☘️ https://t.co/Ct2ypVTP7K" +12/26/2017,Sports_celeb,@larrybirddaily,"Good old days.. + +(1977) Larry Bird and Indiana State Cheerleaders☘️ https://t.co/yxSn7bjyPJ" +12/25/2017,Sports_celeb,@larrybirddaily,"RT @CWalt419: @LarryBirdDaily +Merry Christmas Larry. Hope you and your family have a great one 😘 https://t.co/AfkIktXXez" +12/25/2017,Sports_celeb,@larrybirddaily,Merry Christmas Everyone🎄🎅 https://t.co/66cOXVGnp8 +12/24/2017,Sports_celeb,@larrybirddaily,The greatest thing about being from Boston is that you have no shortage of sports heroes.☘️ https://t.co/mJqFwdvKTS +12/23/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/uX5k2jcnl5 +12/21/2017,Sports_celeb,@larrybirddaily,💚3⃣3⃣💚 https://t.co/8vFTVom5g0 +12/19/2017,Sports_celeb,@larrybirddaily,Pick your decade? https://t.co/GnB3MSc1UP +12/19/2017,Sports_celeb,@larrybirddaily,Which behind the backboard shot was the best? https://t.co/AbonmTPzcP +12/16/2017,Sports_celeb,@larrybirddaily,1983☘️ https://t.co/L3EVYQ6n6M +12/13/2017,Sports_celeb,@larrybirddaily,Biggest 3☘️☘️☘️ https://t.co/QwUrxaOs0L +12/11/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +Larry Legend teaching us how to shoot a basketball🏀☘️ https://t.co/U3HxfGEWkN" +12/11/2017,Sports_celeb,@larrybirddaily,"I've got a theory that if you give 100% all of the time,somehow things will work out in the end.☘️ https://t.co/8Y79gsu2Hj" +12/11/2017,Sports_celeb,@larrybirddaily,Bird vs Jordan🎮 https://t.co/aZxuzvohS6 +12/09/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +(1986) Bird & Jordan https://t.co/rG8jhwbojH" +12/08/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird - Mini Biography + +📹https://t.co/OKIQEhZKFE 📹 https://t.co/sz1lZsHrhZ" +12/07/2017,Sports_celeb,@larrybirddaily,Happy 61st Birthday Legend☘️ https://t.co/sft1g12dRM +12/05/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird (29-11-12) vs. Hakeem (19-13-0) 1986 Finals Gm 6 - Bird Dominates, Finals MVP☘️ + +📹… https://t.co/m5h8HSBzrL" +12/04/2017,Sports_celeb,@larrybirddaily,"(1979) Back in days.. + +Larry Bird cuts down the net after Indiana State University won the championship game in th… https://t.co/rc6MvsqKeC" +12/03/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Good old days.. + +☘️Larry & Magic✨ https://t.co/9WmLxFPffX" +12/03/2017,Sports_celeb,@larrybirddaily,☘️Best Celtics player of all time? https://t.co/2koxDHUBYK +12/01/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +⚕️Dr. J & Larry Legend☘️ https://t.co/vJn36yOeaT" +11/30/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: ☘️27 years ago today, November 30, 1990 + +Larry Bird scored his 20,000th career point in the Celtics' 123-95 win over Washing…" +11/30/2017,Sports_celeb,@larrybirddaily,(1985) Larry Bird drops 60 points against the Hawks. Just look at the reactions on Atlanta's bench. Unbelievable☘️ https://t.co/c4le1M4Gvn +11/29/2017,Sports_celeb,@larrybirddaily,Choose your weapon🔫 https://t.co/xbY1SaV903 +11/28/2017,Sports_celeb,@larrybirddaily,Larry's last season..☘️ https://t.co/GGq1fQjHCP +11/27/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird talks about Michael Jordan's 63 points versus Celtics + +📹https://t.co/XaR6nuLNNy📹 https://t.co/PpluY0Yihj" +11/27/2017,Sports_celeb,@larrybirddaily,Bird vs Dirk☘️ https://t.co/NnHtE4SzuS +11/26/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird and Bill Walton: Basketball Magic (1986 Boston Celtics) + +📹https://t.co/r4X6caz2yS📹 https://t.co/Nu9qLVBAap" +11/26/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Yes or No? https://t.co/0X12eBWFua +11/26/2017,Sports_celeb,@larrybirddaily,RT @JasonFisher01: My son Davis snagged a picture with Larry Bird's MVP trophy while visiting family this weekend in French Lick! @LarryBir… +11/25/2017,Sports_celeb,@larrybirddaily,"1985 NBA Finals, Game 4: Larry Bird Dominates The 4th Quarter + +📹https://t.co/t65jNk11RU📹 https://t.co/JL1ewhBN5G" +11/25/2017,Sports_celeb,@larrybirddaily,"""1992"" #UsaDreamTeam https://t.co/rZBsydPBRd" +11/24/2017,Sports_celeb,@larrybirddaily,Larry Bird hits an incredible three-quarter court shot👊 https://t.co/M6Ug8wcCAn +11/23/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird schools Hakeem Olajuwon + +📹https://t.co/wE5P12M63k📹 https://t.co/ZsDrthICNe" +11/23/2017,Sports_celeb,@larrybirddaily,Old school Larry Bird sketch card☘️#ArtWork https://t.co/2HlDDym1jU +11/23/2017,Sports_celeb,@larrybirddaily,Larry Bird & Dominique Wilkins #ArtWork https://t.co/bXO5C5g3DT +11/23/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: WATCH: (1985) Magic Johnson vs. Larry Bird + +📹https://t.co/DzMfGorzgx📹 https://t.co/rKbzjNGqdn" +11/22/2017,Sports_celeb,@larrybirddaily,Larry Bird vs Detroit's Bad Boys https://t.co/OYEWgiK5H8 +11/22/2017,Sports_celeb,@larrybirddaily,"RT @WashNews: Decorated my tree last night. Only needed one ornament. Feeling good about my decision... and my @celtics.🎄☘️ + +#larrybird #ce…" +11/21/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: (1987) Larry Bird - 41/7/7 vs. Jordan's Bulls. Classic 👌 + +📹 https://t.co/VdUTxs8QE0📹 https://t.co/7hCFf3B724" +11/21/2017,Sports_celeb,@larrybirddaily,Dr. J & Larry Legend #ArtWork https://t.co/n9jHP08hfZ +11/20/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: “I hate to lose more than I like to win.” + +-Larry Bird☘️ https://t.co/DIvbwGZaI2" +11/20/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird is/was better than LeBron James (who is an inconsistent shooter) + +📹https://t.co/MtI3ivwb2P📹 https://t.co/29oWDndDh5" +11/20/2017,Sports_celeb,@larrybirddaily,"""Leadership is diving for a loose ball, getting other players involved. + +It's being able to take it as well as dish… https://t.co/xT6XI29xDE" +11/20/2017,Sports_celeb,@larrybirddaily,"WATCH: Scottie Pippen Defense on Larry Bird - 1990/91 Season + +📹https://t.co/QErxeiy6pH📹 https://t.co/k2uNoywJkL" +11/19/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird's incredible behind the backboard shot👽 + +That classic play happend during a 1986 preseason game against the Houst…" +11/19/2017,Sports_celeb,@larrybirddaily,Larry Bird helps up Magic Johnson during the 1979 NCAA Championship🤝☘️ https://t.co/l6CcjjIKzk +11/17/2017,Sports_celeb,@larrybirddaily,"Larry Bird Springs Valley High School highlights + +📹https://t.co/cD9lKdC60a📹 https://t.co/oIiZAKXvcJ" +11/17/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird asked his competitors this question before winning the 3 point contest; + +- So who is coming in second? https://t.…" +11/16/2017,Sports_celeb,@larrybirddaily,"Larry Bird - 32/18/9/4 vs. Magic's Lakers (1983) + +☘️https://t.co/6NQssWDeSI☘️ https://t.co/Ncj74ikkGV" +11/15/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Larry Bird talks about the '86 Celtics☘️ + +🎧https://t.co/iprJbvnrkj🎧 https://t.co/8fJ9hnPXfq" +11/14/2017,Sports_celeb,@larrybirddaily,"With his warm-up jacket, Larry Bird put on a 3-point contest show at Chicago 1988 NBA All-Star, winning his third t… https://t.co/3KtyQ2awLu" +11/14/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird & Robert Parish ''Basketball Clinic'' vs Miami Heat (1991) + +📹https://t.co/xTkBBBU86F📹 https://t.co/ZUDjHpln3o" +11/13/2017,Sports_celeb,@larrybirddaily,"WATCH: Pistol Pete Maravich - Last game of his NBA career, rookie Larry Bird☘️ + +📹https://t.co/2wxwSaKi5K📹 https://t.co/jXcav6hqdg" +11/13/2017,Sports_celeb,@larrybirddaily,One of the best shooter in NBA History☘️ https://t.co/zgHVeMRGwf +11/13/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +(1995) NBA Looney Tunes McDonald's Commercial🍔🍟 https://t.co/Ufm6agTnQb" +11/12/2017,Sports_celeb,@larrybirddaily,Where the rivalry began.. https://t.co/XuqHtVdjDP +11/11/2017,Sports_celeb,@larrybirddaily,We never forget..☘️ https://t.co/yUOnSEJ8kh +11/11/2017,Sports_celeb,@larrybirddaily,Who is the Best SF of All Time? https://t.co/G3t7avKXR1 +11/10/2017,Sports_celeb,@larrybirddaily,"Larry Bird: ""Passing Skills Compilation""☘️ + +📹https://t.co/wf0m04TZ8L📹 https://t.co/M0vUqFIUcx" +11/10/2017,Sports_celeb,@larrybirddaily,"On This Day in 1989, Larry Bird crossed Dominique Wilkins 2 times on same night, dropped 50 points 13 rebounds 7 as… https://t.co/joOpLmWrTS" +11/10/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 36 years ago today, November 9, 1981 + +Larry Bird on Sports Illustrated Cover #LarryLegend☘️ https://t.co/uCpaxlzwgV" +11/09/2017,Sports_celeb,@larrybirddaily,"33 years ago today in NBA History + +November 9, 1984 + +Larry Bird dropped 42 points on an aging Julius Erving and to… https://t.co/P99eUwaARS" +11/09/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Celtics vs Lakers (Regular Season) +- 287 games +- 159 wins BOS +- 128 wins LAL + +Celtics vs Lakers (NBA Finals) +- 74 games +-…" +11/09/2017,Sports_celeb,@larrybirddaily,"Larry Bird - Smartest NBA Player Ever, High Basketball IQ + +📹https://t.co/nJbOcXRpxY📹 https://t.co/CmvHQv9NBT" +11/07/2017,Sports_celeb,@larrybirddaily,"Drazen was the type of Player I love. I played against him a lot of times, he was a fantastic Shooter. -Larry Bird https://t.co/U4JJRjAjj7" +11/07/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird in Space Jam + +📹https://t.co/EVqPm3kWRE📹 https://t.co/oS9f1viA2V" +11/06/2017,Sports_celeb,@larrybirddaily,1992.. https://t.co/6yNo5mUH0x +11/05/2017,Sports_celeb,@larrybirddaily,"""When I was young, I never wanted to leave the court until I got things exactly correct. + +My dream was to become a… https://t.co/ofikt04z27" +11/05/2017,Sports_celeb,@larrybirddaily,"Larry Bird Top 10 Game Winners + +📹https://t.co/YjZnQl8SUF📹 https://t.co/tN3I40OV9Q" +11/04/2017,Sports_celeb,@larrybirddaily,"WATCH: Larry Bird - The Clutch Shots and Buzzerbeaters + +📹https://t.co/RfV1c50Nvq📹 https://t.co/lJ0pHRmyjm" +11/03/2017,Sports_celeb,@larrybirddaily,Peter Griffin vs Larry Bird for a Big Mac🍔 https://t.co/8DPAyfpBTR +11/03/2017,Sports_celeb,@larrybirddaily,"WATCH: He was one steal away from a 30 point quadruple-double before he decided to sit the 4th quarter. + +📹… https://t.co/HMSRSwmxgZ" +11/02/2017,Sports_celeb,@larrybirddaily,Larry Bird's first game and last game ☘️ https://t.co/vbJgp0zYrc +11/02/2017,Sports_celeb,@larrybirddaily,Larry Bird & Magic Johnson #NBA2K18 https://t.co/aJCkNyLx00 +11/01/2017,Sports_celeb,@larrybirddaily,Always great to see Larry Legend! (Yesterdays @ Pacers-Kings game) https://t.co/mAsFQOxEFn +11/01/2017,Sports_celeb,@larrybirddaily,💥Bill Lambier Vs Larry Bird💥 https://t.co/sWnErtqMg6 +11/01/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 📌DeMarcus Cousins is 1st player since Larry Bird ('87-'88) to average 30 points, 10 rebounds & 5 assists through 1st 6 game…" +11/01/2017,Sports_celeb,@larrybirddaily,RT @KarlTowns: @World_Wide_Wob “You never make any of the shots you never take.”- Larry Bird +11/01/2017,Sports_celeb,@larrybirddaily,RT @taylormade2fit_: @MagicJohnson @LarryBirdDaily https://t.co/ze9osWkKkt +11/01/2017,Sports_celeb,@larrybirddaily,10 years old fan loves Larry Legend💚☘️ https://t.co/XOgdQyekdG +11/01/2017,Sports_celeb,@larrybirddaily,Push yourself again and again☘️ https://t.co/c20bKMhF9s +10/31/2017,Sports_celeb,@larrybirddaily,1992 Barcelona Olympics https://t.co/g186DF6MK6 +10/29/2017,Sports_celeb,@larrybirddaily,Luke Walton on Larry Bird's unselfish passing.☘️ https://t.co/7Q3Zzt7vOC +10/29/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: WATCH: Legends Show! + +Larry Bird 38 PTS 💥 Michael Jordan 42 PTS (1988) + +📹https://t.co/zdxguNcnX5📹 https://t.co/wRxbG83HSQ" +10/29/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Remembering Red Auerbach🙏 + +11 years ago today on October 28, 2006 Legendary Boston Celtics coach Red Auerbach died at the a…" +10/28/2017,Sports_celeb,@larrybirddaily,"Boston's attempt to make Larry Bird a dynamic ""Mini-Me"" failed when he couldn't shoot or dribble so they just let h… https://t.co/M7nrpYupZg" +10/28/2017,Sports_celeb,@larrybirddaily,"Larry Bird demonstrates why the red, white and blue ABA ball will always be cooler☘️ https://t.co/B0qZOAd89w" +10/27/2017,Sports_celeb,@larrybirddaily,Larry Bird How to Fake an Entire Team Out 😎 https://t.co/QZqbF9HJ5B +10/26/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird was faking everybody easily! Passing Skills were LIT🔥💥 https://t.co/s4Zdx0M6V5 +10/26/2017,Sports_celeb,@larrybirddaily,RT @DWilkins21: #TBT Hmmm...Wonder what's going thru our minds? 🤔 https://t.co/DFV5zsHVki +10/26/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Top 10 Craziest Larry Bird Stories😮 + +☘️https://t.co/QnrLDDebB1☘️ https://t.co/x8IWKWfS3e" +10/25/2017,Sports_celeb,@larrybirddaily,"(1979) Pistol was at the end of the line, but it's still pretty damn cool Pete Maravich and Larry Bird were teammat… https://t.co/laZ4mKrswC" +10/25/2017,Sports_celeb,@larrybirddaily,"WATCH: 1991 Playoffs, Game 5.. Larry Bird's 32pts vs. Indiana Pacers + +☘️https://t.co/g92BrTtQLe ☘️ https://t.co/rqBUgyIX9S" +10/25/2017,Sports_celeb,@larrybirddaily,Happy 69th Birthday Dave Cowens☘️ https://t.co/HdiJUNHCUN +10/23/2017,Sports_celeb,@larrybirddaily,"(1981) Back in days.. + +☘️Larry Bird Vs. Dr. J https://t.co/y6u4CHZ7YA" +10/22/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: At Pacers practice, if Larry Bird misses a free throw, all the coaches run sprints! Bird missed on purpose😆 https://t.co/pj1…" +10/22/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird Top 10 Dunks of his Career☘️ https://t.co/cm6X2hDBRO +10/21/2017,Sports_celeb,@larrybirddaily,"Back in days.. + +Dennis & Larry☘️ https://t.co/gr3mNFFwku" +10/18/2017,Sports_celeb,@larrybirddaily,Jayson Tatum is the first Celtics player to record a double-double in their NBA debut since Larry Bird (1979). https://t.co/mXDLR0c1ZI +10/18/2017,Sports_celeb,@larrybirddaily,Back in days.. (1984) https://t.co/YTHOSIMG29 +10/16/2017,Sports_celeb,@larrybirddaily,"WATCH: Rookie Larry Bird (36pts/7rebs/4asts) vs. Clippers (1980) + +☘️https://t.co/rh56euEPuO☘️ https://t.co/sUFWN2iTsJ" +10/14/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/sIVfWkS3cv +10/12/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 38 years ago today.. + +On this date in 1979, Larry Bird made NBA debut☘️ https://t.co/vHmfuOw3YV" +10/12/2017,Sports_celeb,@larrybirddaily,"""1979"" https://t.co/Kz9r5dBtTG" +10/11/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Back in days.. + +1981 Eastern Conference All-Stars🌟 https://t.co/2LASeEi0DM" +10/10/2017,Sports_celeb,@larrybirddaily,"""1981"" + +Larry Bird vs Bill Willoughby https://t.co/NLT1WecpWZ" +10/10/2017,Sports_celeb,@larrybirddaily,"March 1979 + +Sports Illustrated Cover https://t.co/1Srhl0WVVU" +10/10/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: Good old days.. (1988 Eastern Conference Semifinals) + +Larry Legend Vs Nique https://t.co/Cgz4t9hCKH" +09/29/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/QwxWMIPwSJ +09/29/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/yuCvf3K2sL +09/28/2017,Sports_celeb,@larrybirddaily,"""1985"" + +Larry Bird had 30 pts, 12 rebs, 12 asts and 9 steals, almost the only Quad-Dbl in NBA history, in just 33 M… https://t.co/hJu30eWEJ5" +09/28/2017,Sports_celeb,@larrybirddaily,Rank the best duos in NBA history! https://t.co/hbYXDUnTem https://t.co/QUX2TPZ7fT +09/28/2017,Sports_celeb,@larrybirddaily,"Stephen King on his 70th birthday: In 80s, I was shooting free throws in the driveway pretending I was Larry Bird… https://t.co/Lqyf8DO7vv" +09/28/2017,Sports_celeb,@larrybirddaily,WATCH: What If MAGIC AND BIRD Played in the Modern NBA? https://t.co/5yCqoFz3oD https://t.co/DoCL8EZP3l +09/28/2017,Sports_celeb,@larrybirddaily,3⃣3⃣BEST 3⃣3⃣ https://t.co/MZ2L5ZbUkb +09/28/2017,Sports_celeb,@larrybirddaily,"On Indiana's legendary shoe tree, Larry Bird's sneakers could be hanging next to yours https://t.co/ZXWBKHhPGL https://t.co/si5bYw2mD1" +09/28/2017,Sports_celeb,@larrybirddaily,Converse’s NBA All Star Chuck Taylor Collection Pays Tribute To Basketball History https://t.co/uLOhsgmfBM https://t.co/KRG7MR6agy +09/28/2017,Sports_celeb,@larrybirddaily,1982 NBA Media Day https://t.co/TZiZy4tNYk +09/26/2017,Sports_celeb,@larrybirddaily,Legends☘️ https://t.co/UL1YZNf2vf +09/26/2017,Sports_celeb,@larrybirddaily,Missing those days.. https://t.co/6hXjdJPTKo +09/25/2017,Sports_celeb,@larrybirddaily,Larry Legend☘️ https://t.co/2JdNvYd6JG +09/25/2017,Sports_celeb,@larrybirddaily,"WATCH: What If MAGIC AND BIRD Played in the Modern NBA? + +https://t.co/5yCqoFz3oD https://t.co/T1eANIGGR7" +09/25/2017,Sports_celeb,@larrybirddaily,3× NBA Most Valuable Player🎖️🎖️🎖️ https://t.co/UWsKUYDenn +09/25/2017,Sports_celeb,@larrybirddaily,"""1979"" + +Red & Larry https://t.co/XYWkedZA0Z" +09/24/2017,Sports_celeb,@larrybirddaily,Agree or disagree? https://t.co/8R27kCyxhu +09/23/2017,Sports_celeb,@larrybirddaily,Legends! https://t.co/vGfwhoHLg1 +09/23/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Larry Bird was LIT!🔥🍀 https://t.co/4urR4363HG +09/23/2017,Sports_celeb,@larrybirddaily,(1979) Larry Legend & Pistol Pete☘️ https://t.co/sMnLzzMUK8 +02/16/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: Have Good Day Everyone! #hisairness #NbaHistory https://t.co/mrwF5oi5Xt +01/26/2017,Sports_celeb,@larrybirddaily,"RT @NbaOldies: June 23, 1992 - Team USA, Summer Olympics + +Larry Bird, Michael Jordan and Magic Johnson https://t.co/OrOYojlDbZ" +01/17/2017,Sports_celeb,@larrybirddaily,RT @NbaOldies: 56 years ago in #NbaHistory https://t.co/phujLGbgD6 +12/13/2016,Sports_celeb,@larrybirddaily,"RT @NbaOldies: 23 years ago in #NbaHistory + +Dec. 13, 1983 + +Pistons 186, Nuggets 184 / Highest Scoring NBA Game Ever! + +https://t.co/QQtKKKTB…" +12/10/2016,Sports_celeb,@larrybirddaily,"Hawks erase 20-point deficit for victory over Bucks! + +https://t.co/WQVg6ZHspH https://t.co/APrCCq6ehX" +12/09/2016,Sports_celeb,@larrybirddaily,"Larry Bird's career filled with amazing accomplishments + +https://t.co/9GM3DcaLNv https://t.co/V443OG1W2q" +12/06/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Klay Thompson's 60 Points in 3 Quarters (HD VIDEO) https://t.co/U1OiFlJMco https://t.co/K2wiWa0tYp" +12/02/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Steph Curry's Circus Sitdown Layup Won't Count (HD VIDEO) https://t.co/TAE5iMIYGM https://t.co/6jjlEdjuI2" +12/01/2016,Sports_celeb,@larrybirddaily,"DeMarcus Cousins and John Wall To Boston Celtics! + +4-Team Deal Between Celtics, Kings, Nets And Wizards;… https://t.co/r1ywD6bY1a" +12/01/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!!! + +Isaiah Thomas with the H.O.R.S.E Shot After the Whistle (HD VIDEO) https://t.co/Y5j5TS3UkB https://t.co/XMY7xo93q0" +12/01/2016,Sports_celeb,@larrybirddaily,"Shumpert to the Warriors: “We gon bust your ass. Period.” | KNBR-AM +https://t.co/xqlqRhOBiA" +11/30/2016,Sports_celeb,@larrybirddaily,"Shaquille O’Neal Has Message For NBA Free Agents: Trust Me, Boston Is Great +https://t.co/jm3soAq8LD https://t.co/17dRSejgvg" +11/30/2016,Sports_celeb,@larrybirddaily,"Thon Maker Made Chris Andersen Look Silly On This Step Back Jumper :) + +WATCH: https://t.co/go8uhuLlti https://t.co/YnhVaGbCOa" +11/08/2016,Sports_celeb,@larrybirddaily,"RECORD ALERT!!! + +Steph Curry's Record Breaking 13 3-Pointers (HD VIDEO) https://t.co/LuwgvFkxV4 https://t.co/nDIsSSfnct" +10/29/2016,Sports_celeb,@larrybirddaily,RT @EreenTuncay: Oyuna havası sezdim ama orada bile skor üretiyor :( https://t.co/VhWYyzwPKU +10/09/2016,Sports_celeb,@larrybirddaily,"AMAZING... + +Top 10 Longest NBA Shots of All Time (HD VIDEO) https://t.co/K4FRSdZhWo https://t.co/XzmJAzrHqj" +10/06/2016,Sports_celeb,@larrybirddaily,"MUST WATCH!! + +Best 2016 Season Bloopers In 16 Minutes! (HD VIDEO) https://t.co/B04OkAldIl https://t.co/DNciCGHX6j" +09/25/2016,Sports_celeb,@larrybirddaily,Kevin Garnett's Top 50 Plays of His Career (HD VIDEO) https://t.co/0OoE8x8nWf https://t.co/er007i5y6m +09/18/2016,Sports_celeb,@larrybirddaily,Steve Nash's Top 13 Plays on the Suns (HD VIDEO) https://t.co/B0R4x6X6NZ https://t.co/tlBHbYtzbZ +09/12/2016,Sports_celeb,@larrybirddaily,Toronto Raptors' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/wa1Su7wns6 https://t.co/vf5wHR2CIa +09/11/2016,Sports_celeb,@larrybirddaily,Portland Trail Blazers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/MLqORX2ESx https://t.co/7CqmLL3ia1 +09/10/2016,Sports_celeb,@larrybirddaily,Los Angeles Clippers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/KTSQ9rPhd8 https://t.co/bbLnyMw2Pv +09/09/2016,Sports_celeb,@larrybirddaily,Indiana Pacers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/j5MVKv59Cb https://t.co/d7uPb4s3Hi +09/08/2016,Sports_celeb,@larrybirddaily,Oklahoma City Thunder's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/qUvh8kWrsc https://t.co/deuthzSN9z +09/07/2016,Sports_celeb,@larrybirddaily,Minnesota Timberwolves' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/rPbmZl31x8 https://t.co/e3fnghwauB +09/06/2016,Sports_celeb,@larrybirddaily,Chicago Bulls' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/IEVcNqhKrD https://t.co/IZWfpT1q0J +09/05/2016,Sports_celeb,@larrybirddaily,San Antonio Spurs' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/MsyVE9Jzxx https://t.co/RUOiCsbW9G +09/04/2016,Sports_celeb,@larrybirddaily,Phil Jackson Considered Trading Kobe Bryant for Grant Hill https://t.co/3odfueyQPO https://t.co/bK7Vz7cQyQ +09/04/2016,Sports_celeb,@larrybirddaily,Utah Jazz's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/3ExAPlFSiR https://t.co/oAdAJaFRu4 +09/03/2016,Sports_celeb,@larrybirddaily,New York Knicks' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/iexKWg0K99 https://t.co/zCCI3hgWZg +09/02/2016,Sports_celeb,@larrybirddaily,Denver Nuggets' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/kYqudJ2Lq4 https://t.co/Nhy4yWQALf +09/01/2016,Sports_celeb,@larrybirddaily,Top 50 Clutch Shots: 2016 NBA Season (HD VIDEO) https://t.co/666mQz6MAx https://t.co/A550TKz38k +08/31/2016,Sports_celeb,@larrybirddaily,Cleveland Cavaliers' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/HXSbPAnPM1 https://t.co/guBINNQ3FU +08/30/2016,Sports_celeb,@larrybirddaily,Golden State Warriors' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/7RJTF61Ey9 https://t.co/MXGWlzC6yT +08/29/2016,Sports_celeb,@larrybirddaily,Top 50 Blocks: 2016 NBA Season (HD VIDEO) https://t.co/7SuzhYtoH5 https://t.co/JYOyip4Ulk +08/28/2016,Sports_celeb,@larrybirddaily,New Orleans Pelicans' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/ysk8HDBfDE https://t.co/AjohabZWcK +08/27/2016,Sports_celeb,@larrybirddaily,Top 10 Putback Dunks of the 2015-2016 Season (HD VIDEO) https://t.co/nzvLzdGfeO https://t.co/xjSbwNde7V +08/26/2016,Sports_celeb,@larrybirddaily,Memphis Grizzlies' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/mqBfSj45uC https://t.co/Utoca6c5ZI +08/25/2016,Sports_celeb,@larrybirddaily,Houston Rockets' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/U9Jju0G14u https://t.co/VxrnOiTDK3 +08/24/2016,Sports_celeb,@larrybirddaily,Dallas Mavericks' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/V8jDhGf8HP https://t.co/nphSD9toSf +08/23/2016,Sports_celeb,@larrybirddaily,Top 50 Assists: 2016 NBA Season (HD VIDEO) https://t.co/AyIco4jXAo https://t.co/mlHyy04dG8 +08/22/2016,Sports_celeb,@larrybirddaily,Washington Wizards' Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/nU95Wm0sY7 https://t.co/CMsVPA4soV +08/21/2016,Sports_celeb,@larrybirddaily,Orlando Magic's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/LvuuCH9Uxb https://t.co/tLyeonYEBx +08/20/2016,Sports_celeb,@larrybirddaily,Miami Heat's Top 10 Plays of the 2015-2016 Season (HD VIDEO) https://t.co/gD0POjKSXH https://t.co/EXE9BPjkE1 +08/19/2016,Sports_celeb,@larrybirddaily,Top 10 Alley-Oops of the 2015-2016 Season (HD VIDEO) https://t.co/3SePT3DzgD https://t.co/ySb5Z9KlRD +08/19/2016,Sports_celeb,@larrybirddaily,"Warriors-Spurs, Cavs-Knicks headline opening day + +https://t.co/xTMv8wF47Y https://t.co/GFnl16pllj" +08/19/2016,Sports_celeb,@larrybirddaily,"Q&A with Celtics guard Thomas on the Olympics, KD and what makes Boston so special http:// + +https://t.co/kL5TDFTVWO https://t.co/pJ3PO8l9sd" +08/19/2016,Sports_celeb,@larrybirddaily,"Durant: ""We’re just so separated, man. It’s sad to see. I just hope... + +https://t.co/g8LzTP5i3f https://t.co/qhYrSy8Vmc" +08/19/2016,Sports_celeb,@larrybirddaily,"Lakers season preview: They project them to finish at No. 13 in the Western Conference. + +https://t.co/w5nxppJTLm https://t.co/NeYrJP91oX" +08/19/2016,Sports_celeb,@larrybirddaily,"Will Timberwolves have 3 straight Rookie of the Year winners? + +https://t.co/eMmCNYBFOa https://t.co/3LgiJqunwo" +08/19/2016,Sports_celeb,@larrybirddaily,"Caron Butler says he’d love to play for Knicks this season, do they want him? + +https://t.co/yRCwbkNpD9 https://t.co/XLX2WNY9hs" +08/19/2016,Sports_celeb,@larrybirddaily,"USA vs. France 2016 Rio Olympics final score: Sylvia Fowles comes up big in 86-67 win + +https://t.co/ERroMRXyVM https://t.co/P0RpEc7clM" +08/19/2016,Sports_celeb,@larrybirddaily,"Caron Butler eyeing New York! + +https://t.co/FqqrV6p8qk https://t.co/pTXabJJWLV" +08/19/2016,Sports_celeb,@larrybirddaily,"Lakers hold free agent minicamp with a few familiar faces in attendance + +https://t.co/bYt6plppGk https://t.co/wqANUe1bo1" +08/18/2016,Sports_celeb,@larrybirddaily,"LeBron James has plenty of respect for Kawhi Leonard! + +https://t.co/JUvOtitHte https://t.co/FJVGMrFY9s" +08/18/2016,Sports_celeb,@larrybirddaily,"Sit back & enjoy the Top 10 Putback Dunks from 2015-16! + +https://t.co/UVV8Id7CLL https://t.co/K73cBpDGR5" +07/01/2018,Sports_celeb,@RealBillRussell,Today I picked the winner of the framed & signed Jersey. Congrats @CalzonaKerBear you are the latest #WINNER in m… https://t.co/cJaOuNYIZh +06/29/2018,Sports_celeb,@RealBillRussell,Getting ready to watch it now @CBS @colbertlateshow @MMFlint @StephenAtHome https://t.co/eVBZuHcjDd +06/27/2018,Sports_celeb,@RealBillRussell,"Gongrats Grant, enjoy & please tell all your kids I say hello. https://t.co/yT8rYf7Ueg" +06/27/2018,Sports_celeb,@RealBillRussell,"Well this was PERFECT timing, when we got home today our very good friend had sent us a gift that was very fitting.… https://t.co/6dAH9cbyic" +06/26/2018,Sports_celeb,@RealBillRussell,"Only a handful of days left, then I give out a signed autographed framed Jersey to one lucky follower. Follow & RT… https://t.co/UJtQCJz4n2" +06/26/2018,Sports_celeb,@RealBillRussell,"Sorry everyone, I forgot it was live TV & I can’t help myself whenever I see Charles it just is pure instinct.… https://t.co/4Bpdov6oKN" +06/26/2018,Sports_celeb,@RealBillRussell,". #NBAAwards show just getting started, our host @anthonyanderson is wearing shorts it looks like he rode in on a… https://t.co/PDRydRKQsD" +06/24/2018,Sports_celeb,@RealBillRussell,"It is beyond words to think this is happening in America. Sorry, @realDonaldTrump this is far from America being g… https://t.co/vnjDDvgFZx" +06/23/2018,Sports_celeb,@RealBillRussell,Looking forward to attending the 2nd annual @NBA #Awards awards show on Monday. Happy to be there to support my lon… https://t.co/RmvhqNiOmk +06/17/2018,Sports_celeb,@RealBillRussell,". #Congratulations to our nephew, #Grad2018, we had a fun time today at your #graduation bbq. I think your #mom m… https://t.co/oLkzkn9xLv" +06/14/2018,Sports_celeb,@RealBillRussell,This month for my #8straightgiveaway in honor of #FathersDay I will be giving away a framed & signed Jersey to one… https://t.co/zxJSwENEoW +06/14/2018,Sports_celeb,@RealBillRussell,"Just heard the sad news of #AnneDonovan passing, my thought are with her loved ones. She was a great champion for… https://t.co/nW8vml2Aup" +06/09/2018,Sports_celeb,@RealBillRussell,People are giving @KDTrey5 a hard time for not shaking my hand. I know how it feels to get caught up in the energy… https://t.co/zODLPcY1JJ +06/09/2018,Sports_celeb,@RealBillRussell,Congratulations to #DubNation on #BackToBack Championships. @warriors @NBA #NBAfinals @StephenCurry30 @KDTrey5 https://t.co/fEm8iyyxKx +06/09/2018,Sports_celeb,@RealBillRussell,. #Game4 I’m in the building. Hope to see a good game. #GSWvsCAVS @cavs @warriors @nba #NBAFinals #quickenloans +06/07/2018,Sports_celeb,@RealBillRussell,https://t.co/upEwHZXvib +06/07/2018,Sports_celeb,@RealBillRussell,Sorry we will miss you Miles. I remember the first time we met at the @NBA All Star game a few years ago. @jrnba… https://t.co/W8wOIYbajO +06/07/2018,Sports_celeb,@RealBillRussell,Well looks like I’m heading to #Cleveland May have to give out the Bill Russell MVP Trophy. @warriors @cavs #NBAFinals @NBA @NBAonABC +06/07/2018,Sports_celeb,@RealBillRussell,Respect is a two way street. If @realDonaldTrump won't show it why sould he expect it. Very proud of these young… https://t.co/GQWty26vq8 +06/06/2018,Sports_celeb,@RealBillRussell,Well said my friend! https://t.co/Sb0xtaTy5f +06/06/2018,Sports_celeb,@RealBillRussell,. @realDonaldTrump wages war on @NFL players for being unpatriotic & disrespectful to flag & country when he him se… https://t.co/iGPHqRW38x +06/06/2018,Sports_celeb,@RealBillRussell,The best thing that happened to @Eagles since winning the #superbowl is @realDonaldTrump uninviting them to the… https://t.co/YTnmpf3b6h +06/04/2018,Sports_celeb,@RealBillRussell,Thank you @TraegerGrills for helping my wife get our grill up & running today. Getting ready to our game time grub… https://t.co/fnL0pZFSV6 +06/03/2018,Sports_celeb,@RealBillRussell,Thank you for sharing this. He was a true friend #onegreathuman https://t.co/WtI3DNYsgP +06/03/2018,Sports_celeb,@RealBillRussell,"@IsiahThomas Thanks for the follow, I follow you back. Always my pleasure my friend. @NBATV @NBA" +06/03/2018,Sports_celeb,@RealBillRussell,Getting my Pre-game Fix @NBATV with @realgranthill33 @TheJetOnTNT @BillSimmons & @IsiahThomas Should be another Gr… https://t.co/yJc5wC4dC3 +06/02/2018,Sports_celeb,@RealBillRussell,Congratulations @gedwards30 you are the winner of my #8straightgiveaway an autographed #basketball Thanks to… https://t.co/cf5Sf5FoKm +06/01/2018,Sports_celeb,@RealBillRussell,"I may have heart problems if all the #NBAFInals #CavsVsWarriors games are like this first one, OMG. What a game… https://t.co/mWURTDOQ9z" +06/01/2018,Sports_celeb,@RealBillRussell,Tomorrow I am giving away a signed Basketball for my #8straightgiveaway follow & RT I have seen a lot of bad info… https://t.co/X4KWuHVvgW +06/01/2018,Sports_celeb,@RealBillRussell,Never a doubt in my mind that was going in. @StephenCurry30 Big 3 to end the half. What a game #WarriorsvsCavs… https://t.co/8Y3Y0jibMy +05/28/2018,Sports_celeb,@RealBillRussell,This is worth repeating on #MemorialDay @SenJohnMcCain is a true Hero. #ThankYou to him & all others who serve & h… https://t.co/V4g96lPxnA +05/26/2018,Sports_celeb,@RealBillRussell,Let see some good D tonight @celtics Get that W! #CUsRise @espn @NBA #BOSvsCLE #NBAFinals @CelticsLife +05/25/2018,Sports_celeb,@RealBillRussell,#MemorialDayWeekend watch Portrait of an American Hero about @SenJohnMcCain @HBO 8pm. Agree or disagree with him h… https://t.co/razIGtORxz +05/24/2018,Sports_celeb,@RealBillRussell,Great WIN @celtics #CUsRise #CelticsVsCavs be sure to follow & RT me. I am giving away a autographed basketball th… https://t.co/8CD1OmDAiP +05/22/2018,Sports_celeb,@RealBillRussell,Check out my interview with @DangeRussWilson The LEGENDS Series Premiers 5-22-18 @TraceMe_App We had a really grea… https://t.co/sddz6eUsAT +05/21/2018,Sports_celeb,@RealBillRussell,"#NationalRescueDogDay we love our crazy girl, we adopted her 8 yrs ago. Best decision ever! Puppy love - mans best… https://t.co/rcCDmvgB4j" +05/19/2018,Sports_celeb,@RealBillRussell,I decided this month for my #8straightgiveaway I will give away a signed Basketball Follow & RT me. @espn… https://t.co/HhPymEnOYx +05/19/2018,Sports_celeb,@RealBillRussell,Back home got my water getting ready for the #CelticsVsCavs Go get a win @celtics @celticslife @nbcsports @si @espn… https://t.co/6xNRKASgLo +05/19/2018,Sports_celeb,@RealBillRussell,"Thank you everyone for the kind thoughts, yes I was taken to the hospital last night & as my wife likes to remind m… https://t.co/gyht9vvwVH" +05/17/2018,Sports_celeb,@RealBillRussell,#shaqinafool @NBAonTNT I once had an inbound pass that hit the guide wire that should qualify. @shaq +05/16/2018,Sports_celeb,@RealBillRussell,"Sorry @smart_MS3 could not find you, congratulations @celtics. Great Win" +05/16/2018,Sports_celeb,@RealBillRussell,#marcussmart has it correct always stick up for your teammates. #CelticsNation #CelticsVsCavs @Al_Horford @NBA… https://t.co/TndLUozo0x +05/16/2018,Sports_celeb,@RealBillRussell,Great playing @celtics keep up the pressure. Get that WIN! Go #CelticsNation #CelticsVsCavs @NBA @espn +05/09/2018,Sports_celeb,@RealBillRussell,. @SHAQ took a page out of my fashion playbook tonight @NBAonTNT @TheJetOnTNT @NBA https://t.co/LdhEBJyzJH +05/05/2018,Sports_celeb,@RealBillRussell,"Good game between #BOSvsPHI but in OT my $$ is on #Boston +GO @celtics @NBA @sixers are playing great though" +05/01/2018,Sports_celeb,@RealBillRussell,Thank you so much to my favorite Italian women & our favorite Italian Restaurant @2sistersnebo for an amazing lunch… https://t.co/ipeq15B7Sf +05/01/2018,Sports_celeb,@RealBillRussell,Congratulations @DaAnsahonSports you are the lucky winner of a cap with my personal logo in my #8straightgiveaway… https://t.co/QcvuIqFnJW +05/01/2018,Sports_celeb,@RealBillRussell,"#TuesdayThoughts It’s #8straightgiveaway Day, Follow & RT to be entered to win. It was a good night @celtics WIN! H… https://t.co/WRlcwEpEeL" +05/01/2018,Sports_celeb,@RealBillRussell,"I know Charles @NBAonTNT would never say he could guard me, he has a better chance of getting struck by lightning… https://t.co/yBp9XTfymU" +05/01/2018,Sports_celeb,@RealBillRussell,I’m here! Let’s go @celtics @NBA @tdgarden @NBAonTNT https://t.co/LbA0lvArWn +04/30/2018,Sports_celeb,@RealBillRussell,Hey #boston got a surprise for you tonight stay tuned. @celtics @NBA @BostonGlobe @NBCSBoston +04/29/2018,Sports_celeb,@RealBillRussell,Way to go @celtics great win! Keep up the good team play. @NBA @NBAonTNT +04/29/2018,Sports_celeb,@RealBillRussell,"Sorry I could not make it to the game tonight, but I am watching. GO @celtics @nba @nbaplayoffs2018 @NBAonTNT" +04/28/2018,Sports_celeb,@RealBillRussell,"Happy #SaturdayMorning I’m @ 99 Fordham Rd Wilmington, MA meet me @ 12-1 today & tomorrow. Meet Oscar Robertson, n… https://t.co/j5mmQPVd8l" +04/26/2018,Sports_celeb,@RealBillRussell,"RT @ Follow me to qualify, Just a handful of days left before I pick from my #8straightgiveaway list & send off ano… https://t.co/Wvq7U7o0Tu" +04/26/2018,Sports_celeb,@RealBillRussell,"Congrats to @warriors, my wife & puppy are 2 of your biggest fans! @nba @KDTrey5 Looking forward to @celtics mee… https://t.co/jxmf5YQFci" +04/20/2018,Sports_celeb,@RealBillRussell,My apologies to my very dear friend @RickWelts on my delayed Congratulations for your #18HoopClass. I am so proud o… https://t.co/8Mcmo5YWjB +04/19/2018,Sports_celeb,@RealBillRussell,I was shocked and saddened to hear on @NBAonTNT of the passing of #ErinPopovich wife of @spurs head coach Gregg Pop… https://t.co/Fk5fYfHY8D +04/19/2018,Sports_celeb,@RealBillRussell,"Looking forward to being in #Boston next week for the @RichAltmanHWC show come on out to see me, maybe get an autog… https://t.co/m4arXQydFC" +04/19/2018,Sports_celeb,@RealBillRussell,Say what!! @NBAonTNT how in the world did @TheJetOnTNT get in that play?? It reminded me of Mike TV from Willie Wo… https://t.co/04eTrIDE56 +04/18/2018,Sports_celeb,@RealBillRussell,It was a pleasure in my life to have met former First Lady #BarbaraBush. Our thoughts are with her family & friend… https://t.co/pnpZ29edme +04/16/2018,Sports_celeb,@RealBillRussell,Sad to hear of the failing health of former First Lady #BarbaraBush. Our thoughts are with the Bush Family. Once… https://t.co/C0WVioV2UC +04/16/2018,Sports_celeb,@RealBillRussell,Happy Birthday @kaj33 Enjoy your day! +04/08/2018,Sports_celeb,@RealBillRussell,Thanks to @RichAltmanHWC for getting the first #giveaway prize of my #8straightgiveaway out. RT & make sure to fol… https://t.co/TKSh7cCwks +04/08/2018,Sports_celeb,@RealBillRussell,WoW anyone who is missing the @TheMasters is really missing some amazing golf by @JordanSpieth started 9 back now t… https://t.co/DBqASwCtZP +04/08/2018,Sports_celeb,@RealBillRussell,. @JoyAnnReid enjoyed you interview with #ElginBaylor just now on @amjoyshow It was great to see all my old frien… https://t.co/9gcsB2J24G +04/07/2018,Sports_celeb,@RealBillRussell,What a great surprise to see my old friend @JoyAnnReid in LA at #ElginBaylorStatue @msnbc @NBA https://t.co/zl0QgEyj7v +04/07/2018,Sports_celeb,@RealBillRussell,So true! Great looking #ElginBaylorStatue @Lakers @celtics @NBA https://t.co/qA5JUZbpmr +04/07/2018,Sports_celeb,@RealBillRussell,"At @LALIVE ready to honor my good friend #ElginBaylorStatue +@Lakers @nba @STAPLESCenter @NBAonTNT https://t.co/rJmWpC2XrK" +04/06/2018,Sports_celeb,@RealBillRussell,Thank you for reminding me @davidaxelrod & #CharlesBarkley I have to set Charles straight so often I forgot about… https://t.co/mebd2pHBvm +04/04/2018,Sports_celeb,@RealBillRussell,"I still feel that was the correct decision, I did not want to take away from his hard work. #MLK50 https://t.co/j23cilDHGO" +04/04/2018,Sports_celeb,@RealBillRussell,"50 yrears ago today Humanity lost a great friend, and so did I. #MLK50 @Lawrence @MSNBC @NBA @celtics @espn https://t.co/UIRhSGkmJo" +04/04/2018,Sports_celeb,@RealBillRussell,Get in on this very rare chance for a photo with a really tall guy with a few extra rings. I will be in #Boston in… https://t.co/SvAqN7rvbF +04/01/2018,Sports_celeb,@RealBillRussell,Wishing everyone a #HappyEaster & #HappyPassover From the Russell's https://t.co/cAW9q677r9 +04/01/2018,Sports_celeb,@RealBillRussell,. @davidhogg111 @Emma4Change @NeverAgainMSD 1 Register & vote 2 Bullies will come for you when you make them uncomf… https://t.co/iwPTOk8fTU +03/31/2018,Sports_celeb,@RealBillRussell,Congratulations @suzyqjinx you won the first prize in my #8straightgiveaway. An 8x10 autographed photo. (Item #3)… https://t.co/gnoWRJ0hBr +03/31/2018,Sports_celeb,@RealBillRussell,RT & #follow Today I pick the first winner in my #8straightgiveaway Check out @RichAltmanHWC for all your memorabi… https://t.co/TxAsBpa6wi +03/30/2018,Sports_celeb,@RealBillRussell,"It may have evolved a bit, but nothing has changed. This is from 1 of my books & my experience in #LosAngeles… https://t.co/3FIDIProdR" +03/30/2018,Sports_celeb,@RealBillRussell,#ThursdayThoughts This is why I #TakeAKnee #StephonClark https://t.co/XMe9qSLzMY +03/30/2018,Sports_celeb,@RealBillRussell,I am so sorry for Stephon Clarks family & friends having to lay to rest their loved one This is why we #TakeAKnee… https://t.co/dPufc8xJwn +03/29/2018,Sports_celeb,@RealBillRussell,#redsox @MLB opening day. @RedSox 2016 I had the honor of throwing out 1st pitch with @davidortiz #BobbyOrr… https://t.co/7a3eadGkOK +03/29/2018,Sports_celeb,@RealBillRussell,Thank you @celtics. AM I really that old? SMH. @NBA https://t.co/cg5bJNjESO +03/28/2018,Sports_celeb,@RealBillRussell,#WednesdayWisdom A few days left for the 1st giveaway of autographed memorabilia. RT & follow 4 a chance to win. If… https://t.co/N9480hePGl +03/26/2018,Sports_celeb,@RealBillRussell,Wow I missed this dunk by @Giannis_An34 https://t.co/jD4M7IdF9o via @youtube really enjoyed getting to know his sto… https://t.co/cYSh0lL4P0 +03/26/2018,Sports_celeb,@RealBillRussell,"Thank you @MENTORnational for this supportive piece, for #MarchforOurLives held yesterday. I can always count on yo… https://t.co/nIFTyWEGqn" +03/25/2018,Sports_celeb,@RealBillRussell,If you missed #HopeAndFury last night it will replay #tonight @ 9 on @MSNBC a must see. It will not interfere watch… https://t.co/ADjrmDRGJr +03/25/2018,Sports_celeb,@RealBillRussell,#HopeAndFury I have for years told my wife we are not far from what was going on 50 yrs ago. This is a must see f… https://t.co/hGDbdYum8h +03/24/2018,Sports_celeb,@RealBillRussell,Spread the word! We will be heard! We are going to be a great generation! - Yolanda Renee King Your Grandfather wh… https://t.co/3YOVIMfMQi +03/24/2018,Sports_celeb,@RealBillRussell,Amen Zach https://t.co/hBXGayfu3q +03/24/2018,Sports_celeb,@RealBillRussell,"Thank you for the RT. You and @itsgabrielleu are making real change by standing for what is important, keep up the… https://t.co/1RX4hHiL4l" +03/24/2018,Sports_celeb,@RealBillRussell,Way to go my man Miles https://t.co/rk8azn415o +03/24/2018,Sports_celeb,@RealBillRussell,If you can get out & support @AMarch4OurLives today I am proud of this generation standing up for injustice & havin… https://t.co/Ie9MiIFoHb +03/21/2018,Sports_celeb,@RealBillRussell,RT & follow me there are only 10days left before I give away the first of my #8straightgiveaway autographed memorab… https://t.co/4VPjpjmzQo +03/21/2018,Sports_celeb,@RealBillRussell,My wife & I really enjoyed our visit last year. One of the best museum experiences I have had. The sweet home Cafe… https://t.co/A3V5EyYAWj +03/20/2018,Sports_celeb,@RealBillRussell,Happy #firstdayofspring2018 and #InternationalHappinessDay. This is my happy puppy. Princess Leaha. @NBA… https://t.co/gNZ9BUe1KP +03/19/2018,Sports_celeb,@RealBillRussell,Looking forward to seeing my good friend Oscar Roberton in Boston for @RichAltmanHWC Boston Show Come on in if you… https://t.co/7aZF1ASNoH +03/18/2018,Sports_celeb,@RealBillRussell,What a great game! @ZagMBB & @OhioState_WBB gotta love @marchmadness #marchmadness Its hard to say who will end up… https://t.co/v4BYPvG9Ut +03/17/2018,Sports_celeb,@RealBillRussell,"So sorry to hear of your families great loss. They really are part of the family, best friends, protectors & uncond… https://t.co/7m1mPWVfDL" +03/16/2018,Sports_celeb,@RealBillRussell,You got the same chance as everyone else. Good luck Miles live what you are doing for @jrnba @NBATV https://t.co/msBb4Ow69e +03/16/2018,Sports_celeb,@RealBillRussell,Enjoyed giving away a signed pair of shoes on my Bday I'm doing it again but bigger celebrating my 8 Straight champ… https://t.co/rjJdUGLZdV +03/15/2018,Sports_celeb,@RealBillRussell,Happy Birthday @StephenCurry30 It has been fun watching you progress year after year. Remember I only give the guys… https://t.co/PQ96web4mJ +03/15/2018,Sports_celeb,@RealBillRussell,"So proud of all the brave students that made the decision to participate #nationalwalkoutday with your voice, and d… https://t.co/XZzuJeRRkJ" +03/09/2018,Sports_celeb,@RealBillRussell,"Did you do something to celebrate #InternationalWomenDay ? My wife is one of the strongest women I know, so was my… https://t.co/Pg0O0qiAou" +03/05/2018,Sports_celeb,@RealBillRussell,Great job @JordanPeele on your #Oscars way to go! Keep up the good work +03/05/2018,Sports_celeb,@RealBillRussell,"Congratulations to @kobebryant on his Oscar for #DearBasketball way to go Kid! Very proud, Never #ShutUpAndDribble… https://t.co/DsuBZxtxPn" +03/04/2018,Sports_celeb,@RealBillRussell,Having a hard time picking a favorite sketch @nbcsnl #CharlesBarkley is doing great. @AlecBaldwin killed it!… https://t.co/6qANfZqp4F +03/04/2018,Sports_celeb,@RealBillRussell,"Going to take a quick nap so I can watch my good friend #CharlesBarkley Host @nbcsnl for the 4th time, that’s grea… https://t.co/bIS8XVqCjj" +03/02/2018,Sports_celeb,@RealBillRussell,Having my #morningcoffee enjoying Wilt 100 @NBATV One thing I know for sure He would have never got 100 on me! Ch… https://t.co/sl9XyrIAhw +02/22/2018,Sports_celeb,@RealBillRussell,I remember this well. Red & Walter only wanted to WIN. @NBA @NBAHistory https://t.co/dBBbmd18Q9 +02/19/2018,Sports_celeb,@RealBillRussell,"Thank you for the birthday wishes, it was great seeing you at #NBAAllStar I did not see this sooner FYI I’m on Twit… https://t.co/SqL4E768Vt" +02/19/2018,Sports_celeb,@RealBillRussell,Nice kicks Miles sorry we missed you this year https://t.co/JCTErkB2Dy +02/19/2018,Sports_celeb,@RealBillRussell,Lacing up before the game @StephenCurry30 @nba @NBAonTNT #NBAAllStar https://t.co/R4dHETzxTt +02/19/2018,Sports_celeb,@RealBillRussell,Hanging with the guys #JerryWest @kaj33 @JuliusErving ready for #NBAAllStar Game @nba @STAPLESCenter https://t.co/1KF5L71SMh +02/19/2018,Sports_celeb,@RealBillRussell,Thank you it was a real honor https://t.co/6LinjoOyaO +02/18/2018,Sports_celeb,@RealBillRussell,My thoughts exactly Thank You @Giannis_An34 This is very dear to my heart. @ nba https://t.co/CAJbifDZXu +02/18/2018,Sports_celeb,@RealBillRussell,Congratulations @realgranthill33 & Good Luck https://t.co/UwV0DDg20y +02/18/2018,Sports_celeb,@RealBillRussell,Having a laugh at the @NBA #legendsbrunch with @BillyCrystal . #NBAAllStar https://t.co/L5PkOzyQ8b +02/18/2018,Sports_celeb,@RealBillRussell,Proud of @KingJames & @KDTrey5 for speaking truth against racism ! I have never & would never #ShutUpAndDribble T… https://t.co/g4S95d748q +02/18/2018,Sports_celeb,@RealBillRussell,Well said Yara! @NBA #BlackHistoryMonth2018 https://t.co/4nAmlJO2ts +02/18/2018,Sports_celeb,@RealBillRussell,"Thanks Miles, hope to see you at the @nba #legendsbrunch #NBAAllStarWeekend https://t.co/FqayknKY6j" +02/18/2018,Sports_celeb,@RealBillRussell,Great dunk by @LarryNanceJr7 @NBA #SlamDunkContest #NBAAllStarWeekend https://t.co/AznkRjNkA9 +02/18/2018,Sports_celeb,@RealBillRussell,Warming up for #3PointContest https://t.co/1hhW4G913u +02/18/2018,Sports_celeb,@RealBillRussell,Just sat down courtside for the @NBA on @NBAonTNT #AllStarWeekend #NBAAllStars skills challenge https://t.co/ERbPw5feaw +02/17/2018,Sports_celeb,@RealBillRussell,"Super! I like the Boston flag, enjoy them. @celtics @NBA https://t.co/5JdFFMvpiZ" +02/16/2018,Sports_celeb,@RealBillRussell,"Thanks Sam, Sorry I missed this. Hope to see you at #NBAAllStar https://t.co/OWyH7Ldd9B" +02/14/2018,Sports_celeb,@RealBillRussell,"""To love someone is nothing, to be loved by someone is something, to love someone who loves you is everything"" - Bi… https://t.co/KaCMfuGdWQ" +02/13/2018,Sports_celeb,@RealBillRussell,Thank you so much for the #birthday wishes. You are a great leader for @MENTORnational https://t.co/cU7YPnqvFC +02/13/2018,Sports_celeb,@RealBillRussell,"Thanks Bill, see you at #NBAAllStar Bill Lucky for you twitter added more characters. Lol https://t.co/R04BjUsmBq" +02/13/2018,Sports_celeb,@RealBillRussell,Congratulations @Jordan_VanBeek you are the WINNER of the #BillRussellBdayGiveAway enjoy! #winner #NBAAllStar2018… https://t.co/WHPRRiUFfO +02/12/2018,Sports_celeb,@RealBillRussell,Thank you to @UnderArmour for the #StephenCurry shoes for my #BillRussellBdayGiveAway #nba #UnderArmour I am pickin… https://t.co/RSDjjH7WiF +02/12/2018,Sports_celeb,@RealBillRussell,Thank you to my great marketing team for all your hard work it is a pleasure working with all of you. https://t.co/T2ZNBypDcA +02/12/2018,Sports_celeb,@RealBillRussell,Thank you https://t.co/Uum3cto4Ko +02/12/2018,Sports_celeb,@RealBillRussell,Thank you! https://t.co/GLftsoXLZp +02/12/2018,Sports_celeb,@RealBillRussell,Thank You! https://t.co/P8iQVFuNap +02/12/2018,Sports_celeb,@RealBillRussell,THANK YOU to everyone for all the #birthday wishes. I am picking 1 FOLLOWER today to win a pair of autographed sne… https://t.co/GU5bhpfWWm +02/11/2018,Sports_celeb,@RealBillRussell,"Today is the last chance, Don't miss out. I will be picking one lucky follower for an autographed pair of sneakers… https://t.co/qeN1bbMuou" +02/11/2018,Sports_celeb,@RealBillRussell,Congratulations to @PaulPierce34 #TheTruth on a GREAT career! Very proud to have you as part of my @celtics family… https://t.co/UGKp5VnSHc +02/10/2018,Sports_celeb,@RealBillRussell,Only 2 days left before my #birthday & my BillRussellBDay #Giveaway 1 lucky follower will win a pair of autographe… https://t.co/aT7co0fxRT +02/09/2018,Sports_celeb,@RealBillRussell,Always a good laugh listening to my guys #NBAonTNT If I could get Charles to follow me he might win a autographed… https://t.co/LAIm8CUqv9 +02/06/2018,Sports_celeb,@RealBillRussell,"Looking forward to seeing my good friend ""The Big O"" at the show. https://t.co/kEB5CR9WJq" +02/05/2018,Sports_celeb,@RealBillRussell,Let #GoPats get your game face on!! #SuperBowl52 https://t.co/vw6JNdtziG +02/04/2018,Sports_celeb,@RealBillRussell,Getting ready for #superbowl GO #patriots ! Remember follow me to have a chance to win an autographed pair of shoe… https://t.co/Gc8kyaUVnG +02/02/2018,Sports_celeb,@RealBillRussell,"Follow & RT me for a chance to win an autographed pair of shoes. I will pick a winner on my birthday, February 12th… https://t.co/zhjBzhc1nb" +01/26/2018,Sports_celeb,@RealBillRussell,". @NBAonTNT Not only did I win multiple championships as player coach, a little know fact I did not have any assistant coaches." +01/24/2018,Sports_celeb,@RealBillRussell,"Congratulations, @KingJames with 30,000 points, 7,000 rebounds and 7,000 assists. THAT IS @NBAHistory #LeBronJames @NBA @NBAcom" +01/24/2018,Sports_celeb,@RealBillRussell,"Follow & RT to make sure you hear about my big announcement next week, you don't want to miss it. #NBA #sports… https://t.co/cuNgphUljE" +01/21/2018,Sports_celeb,@RealBillRussell,WOW! #JAXvsNE what a game. Congratulations to #Patriots #AFCChampionship #NFLPlayoffs +01/21/2018,Sports_celeb,@RealBillRussell,Please support @davidortiz wonderful charity and buy a cookbook @ https://t.co/8t83P2n7Mh Lots of NE legends… https://t.co/N4fiMaCET0 +01/21/2018,Sports_celeb,@RealBillRussell,.@davidortiz I'm Getting ready for #ChampionshipSunday My wife is https://t.co/8t83P2n7Mh Check out my Moms recipe… https://t.co/sxi7Nx24ZI +01/19/2018,Sports_celeb,@RealBillRussell,".@KGArea21 & @NBAonTNT @paulpierce34, Paul is correct he handled it better than what I would have. #petty" +01/18/2018,Sports_celeb,@RealBillRussell,"Hey @KevinHart4real how is this for working out? Getting in shape for @NBAAllStar See you there, if you can recogn… https://t.co/v2YWuJAvBx" +01/18/2018,Sports_celeb,@RealBillRussell,"It was my great pleasure to have worked for many years with Keith, he made my job easier. My condolences to Keith… https://t.co/xNd0PobPM4" +01/17/2018,Sports_celeb,@RealBillRussell,Today would have been my good friend & fellow activist @MuhammadAli 76th Birthday #HappyBirthdayAli You are deeply… https://t.co/R8boC9nkzO +01/17/2018,Sports_celeb,@RealBillRussell,Maybe we can get in some golf. https://t.co/X1eFtXhste +01/17/2018,Sports_celeb,@RealBillRussell,"Extremely sad to hear about the passing of @Hoophall @Celtic Great JoJo White, lost his fight with cancer. He wa… https://t.co/zYS8c92KPq" +01/16/2018,Sports_celeb,@RealBillRussell,"Congratulations @blackishabc outstanding comedy series, @anthonyanderson - actor, @TraceeEllisRoss - actress &… https://t.co/1UAhHaCpC9" +01/15/2018,Sports_celeb,@RealBillRussell,Will said my friend. https://t.co/kfRL49ClVp +01/15/2018,Sports_celeb,@RealBillRussell,“And so the challenge which confronts all of us is to respond to our circumstances with strength and courage rather… https://t.co/Ry7ZCiwXUl +01/15/2018,Sports_celeb,@RealBillRussell,"The most insidious type of #racist labels countries full of black and brown people #shitholes one day, while purpor… https://t.co/21dVmyB5Ua" +01/14/2018,Sports_celeb,@RealBillRussell,January is #mentoring month @MENTORnational #NBA @celtics @RedSox https://t.co/y66keT9T6J +01/14/2018,Sports_celeb,@RealBillRussell,"Great Job @Patriots nice defense, & I know defense. Keep up the good work @NFL @NFLonCBS #TENvsNE #NFLPlayoffs" +01/14/2018,Sports_celeb,@RealBillRussell,Let GO @Patriots https://t.co/24h4wbBChI +01/13/2018,Sports_celeb,@RealBillRussell,"Congratulations @TheShaneMissler enjoy the journey and HAVE FUN! At least you will live long enough to spend it,… https://t.co/2bxB8RfrZS" +01/13/2018,Sports_celeb,@RealBillRussell,Agreed https://t.co/Pbj995D7nD +01/13/2018,Sports_celeb,@RealBillRussell,Thank You @JoyAnnReid #AMjoy for bringing awareness to all the contributions made to OUR country by Immigrants from… https://t.co/5vu3CuGdPk +01/13/2018,Sports_celeb,@RealBillRussell,"As do I, Thank you David & everyone who helps to runs @MENTORnational Anyone who mentors someone across the globe… https://t.co/4RmLnRXRYo" +01/13/2018,Sports_celeb,@RealBillRussell,"@kaj33 this is the best compliment @realDonaldTrump could have ever given you. Can't stop laughing Best Wishes,… https://t.co/RDTQqL1RjB" +01/13/2018,Sports_celeb,@RealBillRussell,Love this my Friend https://t.co/GTfgb3qIij +01/12/2018,Sports_celeb,@RealBillRussell,The struggle continues even today for many in Haiti. Difficult to imagine 8 years have passed https://t.co/Uf3TiLvQpC +01/12/2018,Sports_celeb,@RealBillRussell,Well said https://t.co/2sTDHFgpLH +01/12/2018,Sports_celeb,@RealBillRussell,"RT @SenJohnMcCain: People have come to this country from everywhere, and people from everywhere have made America great. Our immigration po…" +01/12/2018,Sports_celeb,@RealBillRussell,"Thank you Sir for standing up against racism, and doing what is best for our Country. https://t.co/umJqGY2U6z" +01/12/2018,Sports_celeb,@RealBillRussell,"Is @realDonaldTrump aware the first people to come here from #""SHIThole"" countries did not come willingly, they cam… https://t.co/B65sNLv3xO" +01/10/2018,Sports_celeb,@RealBillRussell,Praying for all who may be in harm's way. https://t.co/A68BCn23pM +01/10/2018,Sports_celeb,@RealBillRussell,@SenFeinstein @maddow @MSNBC @Lawrence @CNN https://t.co/FZ8u445oji +01/10/2018,Sports_celeb,@RealBillRussell,Thank you #brave @SenFeinstein for #ReleaseTheTranscript 300+ pages #FusionGPS testimony of Glenn Simpson. My read… https://t.co/CjwRxBGI1a +01/10/2018,Sports_celeb,@RealBillRussell,Enjoyed the @michaeljackson ONE @cirque show in #LasVegas @MandalayBay Thank You to our security detail for the qui… https://t.co/lc4C6W3Fk4 +01/07/2018,Sports_celeb,@RealBillRussell,"Had a great time in #LasVegas for #NYE. Thank you to my good friends at @southpointlv, as always we had a great time there." +01/01/2018,Sports_celeb,@RealBillRussell,With family & friend this #NewYearsEve2017 wishing Everyone a Happy & Healthy #NewYear2018 Be safe tonight #NYE +12/26/2017,Sports_celeb,@RealBillRussell,"When I was little I wish I could sing, now I wish @NBAonTNT could sing" +12/26/2017,Sports_celeb,@RealBillRussell,"@NBAonTNT Little known fact #FrankRobinson & I were class mates & team mates. Yes, he still looks the same." +12/26/2017,Sports_celeb,@RealBillRussell,my 4 fav announcers @NBAonTNT always keep me entertained @TheJetOnTNT @SHAQ @TurnerSportsEJ #CharlesBarkley… https://t.co/tvbINWbW0E +12/26/2017,Sports_celeb,@RealBillRussell,52 yrs ago I went behind the Iron Curtain for the State Dept and I took a picture with this young man. Today on… https://t.co/lbYq074cFg +12/25/2017,Sports_celeb,@RealBillRussell,"I am very happy to have my good friend and favorite President @BarackObama, say it for me #MerryChristmas @NBA… https://t.co/iTpGZvZgQn" +12/25/2017,Sports_celeb,@RealBillRussell,Thanks for sharing this. https://t.co/foOAAPFch7 +12/23/2017,Sports_celeb,@RealBillRussell,"When I saw this in the sky this evening I felt like the poor folks on the video, I had NO idea what this was. Happy… https://t.co/jeSVWA2tA2" +12/23/2017,Sports_celeb,@RealBillRussell,@johncusack @SamuelLJackson Thanks John for not making fun of the blurry photo I put up. I’m new at this people! +12/22/2017,Sports_celeb,@RealBillRussell,Great @TheDailyShow reunion last night on @colbertlateshow @StephenAtHome reminded me of this Sam on Your Side: Bil… https://t.co/B4FvnMsYBK +12/22/2017,Sports_celeb,@RealBillRussell,Uplifting story about how having a second chance is always worth the time Reminds me of the great work… https://t.co/JUBhdw2VDe +12/22/2017,Sports_celeb,@RealBillRussell,"Do not want the day to go by without saying #HappyBirthday to my good friend @SamuelLJackson. I’m sure I beat you,… https://t.co/tUDMVdxDBV" +12/19/2017,Sports_celeb,@RealBillRussell,@kobebryant @kobebryant Thank you for allowing me to share in your special moment. Be well my friend +12/19/2017,Sports_celeb,@RealBillRussell,"Thank you @KDTrey5 for being so kind to my wife today. I had a great time watching a really good game tonight,… https://t.co/2TlUTbVqUB" +12/19/2017,Sports_celeb,@RealBillRussell,Always a fun time @kaj33 #NBA https://t.co/8hiDgOEAfo +12/19/2017,Sports_celeb,@RealBillRussell,Had a great time tonight with my good friend @kaj33 I was happy to be at #LakerNation #LakeShow to support & honor… https://t.co/PBMBgLsotK +12/18/2017,Sports_celeb,@RealBillRussell,"https://t.co/wThAX67mvX +Congrats @kobebryant I want to officially welcome you to the legend's club! #Ko8e24, they r… https://t.co/LLbSAZaC9y" +12/13/2017,Sports_celeb,@RealBillRussell,RT @1MrBigShot: With a heavy heart I send my condolences to Megan Klindt’ family. I had the pleasure of spending some time w Megan a few yr… +12/13/2017,Sports_celeb,@RealBillRussell,Congratulations @GDouglasJones. #Alabama you made the country proud. Great to see all the diversity on stage with… https://t.co/CDbN5p83fv +12/09/2017,Sports_celeb,@RealBillRussell,"Hey Steph, I know when I played at Defremery Park they can always use goodies. I love my SC @UnderArmour shoes. Ke… https://t.co/i8IvA4eIa6" +12/09/2017,Sports_celeb,@RealBillRussell,It brings me great joy to say Happy Birthday to @JoyAnnReid. I would have sent a video but did not want to ruin yo… https://t.co/8Ca3GXEyj3 +12/09/2017,Sports_celeb,@RealBillRussell,Happy to hear about the opening of CivilRightsMuseum. I stand by & with the decision of @repjohnlewis & any others… https://t.co/F7n6UwaTp1 +06/29/2018,Sports_celeb,@tonyparker,"Photo souvenir à l'occasion de la première pierre de la #TPAA, merci aux équipes de l'@ASVEL_Basket, l’… https://t.co/21RPlHUlLr" +06/29/2018,Sports_celeb,@tonyparker,"Retrouvez-moi aujourd'hui à partir de 15h pour la pose officielle de la première pierre de la @TP_A_A , à suivre en… https://t.co/yvr9bQpFqL" +06/25/2018,Sports_celeb,@tonyparker,Super moment partagé avec la famille #TeamASVEL https://t.co/7hFgLyqY88 +06/22/2018,Sports_celeb,@tonyparker,@Puressentiel a créé un kit spécial avec mes trois produits préférés 😃👌 Retrouvez la sélection sur :… https://t.co/sYLxxQPTkV +06/18/2018,Sports_celeb,@tonyparker,RT @TonyESTANGUET: Merci @tonyparker de ta présence ce matin avec #Paris2024 🏀 et les jeunes de @unss. Welcome on board for such an amazing… +06/18/2018,Sports_celeb,@tonyparker,"Fier d’être l’ambassadeur de l’éducation pour les Jeux Olympiques et Paralympiques ! #Paris2024 +Proud to be Ambass… https://t.co/rcbR9Exmm2" +06/15/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Quel bel événement lancé officiellement ce matin ! ✨ La @villedelyon accueillera en septembre la 1ère édition du Festival… +05/28/2018,Sports_celeb,@tonyparker,Happy Memorial Day #SpursCity 🇺🇸 +05/24/2018,Sports_celeb,@tonyparker,"Découvrez mon quotidien auprès de l’@ASVEL_Basket, @ASVEL_Feminin et la @TP_A_A grâce à ce documentaire. Merci aux… https://t.co/vSFWIGcnl0" +05/22/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: @ajslaughter8 @CKahudi5 VICTOIRE 💪 #MSBASVEL #PlayoffsJeepELITE https://t.co/xLvExHvV5H +05/18/2018,Sports_celeb,@tonyparker,"Merci beaucoup @Puressentiel ! Si vous avez un ami qui est né le même jour que moi, n'hésitez pas à le taguer sur c… https://t.co/yi2uhAHZeu" +05/18/2018,Sports_celeb,@tonyparker,"RT @TISSOT: A very happy birthday #TissotAmbassador @tonyparker! +#HappyBirthday #Tissot #TonyParker https://t.co/pB24qWZykM" +05/18/2018,Sports_celeb,@tonyparker,Merci à tous pour vos messages d’anniversaire ! Thanks to everybody for your bday wishes ! 3️⃣6️⃣ 🎂 +05/18/2018,Sports_celeb,@tonyparker,"RT @ASVEL_Feminin: 🎉 Bon anniversaire au Président @tonyparker ! + +#TeamASVEL https://t.co/R1f5uhgclH" +05/18/2018,Sports_celeb,@tonyparker,"RT @ASVEL_Basket: Nous souhaitons aujourd'hui un joyeux anniversaire à notre Président, @tonyparker ! 😀✌ #TeamASVEL https://t.co/qqxtfgiXJt" +05/10/2018,Sports_celeb,@tonyparker,Bravo pour cette saison ! 👍🏼@ASVEL_Feminin #TeamASVEL https://t.co/wtHttHsn2k +05/04/2018,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: Retrouvailles avec le Président @tonyparker avant le départ des Lionnes pour la demi-finale aller à @BourgesBasket ! 🔜💪… +05/04/2018,Sports_celeb,@tonyparker,"De retour en France, ça fait du bien ! 😬👍🏼 +In France for a couple of days, good to be back! 🇫🇷" +05/02/2018,Sports_celeb,@tonyparker,BRAVOOOOOOO @ASVEL_Feminin https://t.co/iz8itwDJN9 +04/23/2018,Sports_celeb,@tonyparker,💪🏼 @manuginobili #spursnation https://t.co/Xhrb8JeHce +04/23/2018,Sports_celeb,@tonyparker,"RT @spurs: With tonight’s win, Tony Parker and Manu Ginobili become the winningest duo in NBA Playoff History. + +Tony Parker and Manu Ginob…" +04/22/2018,Sports_celeb,@tonyparker,"RT @NBAFRANCE: Votre #NBASundays en grand, en très grand !! 🍿🎥 + +Le game 4 du premier tour des #NBAPlayoffs entre #DubNation et #GoSpursGo s…" +04/10/2018,Sports_celeb,@tonyparker,"Amazing Broadway Musical! Time for Playoffs now, 17 in a row!!! +#WifeyDateNoKids #SpursFamily +@MeanGirlsBway… https://t.co/df5tcRmupq" +04/08/2018,Sports_celeb,@tonyparker,Félicitations @TonyYoka 💪🏽 https://t.co/dvuoB2mkgG +04/02/2018,Sports_celeb,@tonyparker,"RT @NBA: Congrats to @tonyparker of the @spurs for moving up to 19th on the NBA’s ALL-TIME ASSISTS list! + +#GoSpursGo #ThisIsWhyWePlay http…" +04/01/2018,Sports_celeb,@tonyparker,#FinalFour #AlmaMater @LoyolaChicago 🙌🏾 https://t.co/lBWyLMP5l5 +03/30/2018,Sports_celeb,@tonyparker,YAAASS https://t.co/2aJv8J9srb +03/25/2018,Sports_celeb,@tonyparker,"Super moment avec Elodie et Sylvain, les deux gagnants du jeu concours avec @Puressentiel! +#PurChampions https://t.co/smYOH1IMYT" +03/25/2018,Sports_celeb,@tonyparker,"RT @TP_A_A: Dans le cadre de notre partenariat avec le @GroupeAdequat, Céline (Adéquat Toulon) et son client sont actuellement à San Antoni…" +03/06/2018,Sports_celeb,@tonyparker,"RT @spurs: Bringing some 🔥 off the bench + +Tony Parker scored a team-high 23 points vs Memphis #GoSpursGo https://t.co/CS455KqYLv" +03/06/2018,Sports_celeb,@tonyparker,AHAHA old pic @alexisrambur 😂 https://t.co/kmxpT1iJKh +02/25/2018,Sports_celeb,@tonyparker,"RT @NBAFRANCE: Quand le triple champion #NBA Bruce @Bowen12 revient dans son club d' @ALMEvreux ​ ! + +Il nous parle de son expérience en Fr…" +02/16/2018,Sports_celeb,@tonyparker,"RT @Puressentiel: Pour les 10 ans du Roller A&M, on vous envoie à San Antonio rencontrer @tonyparker ! Pour partir 5 jours au soleil et ass…" +02/16/2018,Sports_celeb,@tonyparker,Happy Lunar New Year to all my friends in China ! ⛩ 🇨🇳 🎊 +02/08/2018,Sports_celeb,@tonyparker,@kmoreland14 @spurs Awesome ! +02/08/2018,Sports_celeb,@tonyparker,🙌🏼 https://t.co/dTg3uCdTcX +02/08/2018,Sports_celeb,@tonyparker,👌 https://t.co/6FlkU6JVX7 +02/07/2018,Sports_celeb,@tonyparker,"RT @spurs: two years ago today. 💁🏽‍ + +CC: @selenagomez https://t.co/qCebkDPDSi" +02/07/2018,Sports_celeb,@tonyparker,"Enjoy the video that we did in #BuenosAires a few month ago, my stay there was fantastic, I really hope to come bac… https://t.co/lJODVQFBlc" +01/29/2018,Sports_celeb,@tonyparker,"Votez @MakeAWishFrance ! +Cette association qui réalise les vœux d'enfants atteints d'affections graves a été pré-sé… https://t.co/4hFxQ1s9W5" +01/24/2018,Sports_celeb,@tonyparker,RT @spurs: Tony Parker right now... https://t.co/DEnMZUV8xH +01/23/2018,Sports_celeb,@tonyparker,"Je suis heureux de vous annoncer que je rejoins la team Fruit Shoot France pour encourager les enfants à bouger, à… https://t.co/W2RuFQzlO3" +01/01/2018,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Nous avons ce soir une très forte pensée pour Fred Forte du @limogescsp +12/31/2017,Sports_celeb,@tonyparker,"Happy New Year ✨ +Bonne Année ✨ +Feliz Año ✨" +12/25/2017,Sports_celeb,@tonyparker,"Merry Christmas from my family to yours! Joyeux Noël à tous🎄🎅🏼 +#xmas #familytime" +12/22/2017,Sports_celeb,@tonyparker,#teamwork @manuginobili 🤣 https://t.co/K3wDn5nFA4 +12/19/2017,Sports_celeb,@tonyparker,😬 https://t.co/VHZKtuzeIg +12/19/2017,Sports_celeb,@tonyparker,Congrat's on your career @kobebryant ! #Ko8e24 #Goat #Mamba +12/19/2017,Sports_celeb,@tonyparker,"RT @spurs: TP was cookin' tonight 🔥 + +16 points +7 assists +2 steals https://t.co/E5k1OtSS3A" +12/17/2017,Sports_celeb,@tonyparker,"RT @LNBofficiel: Lancement officiel des #JournéesdeNoëlLNB à l'Astroballe en compagnie de @leafrancoisoff, de Gaëtan Muller et de Sébastien…" +12/17/2017,Sports_celeb,@tonyparker,💪🏼🔥 https://t.co/eBdkmenwOF +12/17/2017,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: Coup d'envoi dans 3 minutes !🏀🔥 #ASVELBLMA #TeamASVEL https://t.co/96EK0K17Py +12/06/2017,Sports_celeb,@tonyparker,"Une rock star s’en est allée... RIP @JohnnySjh⭐️🎸🎤 +Toutes mes condoléances à sa famille! #légende" +11/29/2017,Sports_celeb,@tonyparker,"RT @spurs: ""I feel very lucky and very blessed."" + +@cayleighgriffin caught up with @tonyparker following his season debut last night: https…" +11/28/2017,Sports_celeb,@tonyparker,RT @spurs: Squad was pumped to have @tonyparker back tonight. https://t.co/9lNMnfKDfv +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: “No, it was just a lot of emotion but almost, almost. I’m always amazed by all the love from the Spurs fans.” - TP on if he shed…" +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: After seven months, @tonyparker made his return to the court last night. + +#WelcomeBackTP https://t.co/qBu1zZmwEQ" +11/28/2017,Sports_celeb,@tonyparker,"RT @spurs: 🙌 + +#WelcomeBackTP https://t.co/iomb2C1ugL" +11/28/2017,Sports_celeb,@tonyparker,Thanks Bala 👍🏽 https://t.co/LfjBFrTxzq +11/28/2017,Sports_celeb,@tonyparker,Thank you 👌🏼 https://t.co/DGDEZPfBn8 +11/28/2017,Sports_celeb,@tonyparker,Thank you my man! 🙏🏻 https://t.co/4q1N9V0p76 +11/23/2017,Sports_celeb,@tonyparker,Happy Thanksgiving y’all 🍁🦃🍰 +11/03/2017,Sports_celeb,@tonyparker,"Match contre @nicolas88batum ce soir à San Antonio, mais avant match des filles @ASVEL_Feminin! 1er match pour… https://t.co/8wv18YL23D" +11/01/2017,Sports_celeb,@tonyparker,"RT @spurs: 16 years ago today, a 19-year old @tonyparker made his @NBA debut! https://t.co/W6Fp9RtYpC" +10/31/2017,Sports_celeb,@tonyparker,💪🏽 #PurChampions https://t.co/x1r0U04KKN +10/28/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/jZNehlQ0sJ +10/19/2017,Sports_celeb,@tonyparker,@Puressentiel Pensez-vous que @JonnyWilkinson ait une chance contre moi ? #TeamTony #PurChampions https://t.co/22ZuSbNbim +10/19/2017,Sports_celeb,@tonyparker,We are back #SpursNation ⚪️⚫️ +10/12/2017,Sports_celeb,@tonyparker,👍🏼😍 https://t.co/o1DwbxYBqP +10/12/2017,Sports_celeb,@tonyparker,Merci les amis @Puressentiel ! 😬✌🏻 https://t.co/4gwdQ7UIOF +10/11/2017,Sports_celeb,@tonyparker,RT @GroupeAdequat: Notre nouvelle campagne cosignée avec @TonyParker et la @TP_A_A #Adéquat #SimplementPourVous #TPAA #LEJobAdéquat #TonyPa… +10/09/2017,Sports_celeb,@tonyparker,Joyeux anniversaire à Jean-Marc Brun et au @GroupeAdequat ! Ce n’est que le début de grandes aventures ensemble avec la @TP_A_A 😉 +10/06/2017,Sports_celeb,@tonyparker,Retour sur ce moment sympa passé il y a un an déjà avec @JonnyWilkinson et @Puressentiel #purchampions… https://t.co/8WLqQ6hAhB +10/04/2017,Sports_celeb,@tonyparker,"Concentré sur le match des filles! Match dans 10 minutes, allons chercher notre deuxième victoire ✌🏻 https://t.co/iFJmAlMiBe" +10/01/2017,Sports_celeb,@tonyparker,RT @spurs: All smiles on set today as we shoot another round of everyone's favorite @HEB commercials https://t.co/QmacRBq1OV +09/30/2017,Sports_celeb,@tonyparker,Très content du début de saison ! #OpenLFB #ASVELTGB 👌🏽🏀 https://t.co/Lg8WWs07Vb +09/30/2017,Sports_celeb,@tonyparker,Go @ASVEL_Basket 👍🏼 #ASVELCB https://t.co/aWMWBHpYsB +09/26/2017,Sports_celeb,@tonyparker,GO ASVEL GO ! https://t.co/iVjtFFwAiU +09/26/2017,Sports_celeb,@tonyparker,I tried out #RenaultTimeCapsule. You too travel to the future thanks to #RenaultSYMBIOZ https://t.co/IEeWsxoBPa https://t.co/fGfAhHChm4 +09/25/2017,Sports_celeb,@tonyparker,"RT @spurs: ""That was my main goal all summer... to be back at the level I was in the playoffs"" - @tonyparker https://t.co/U07bR87FOI" +09/24/2017,Sports_celeb,@tonyparker,Premier match de la saison pour les verts 😬🏀 #GoAsvelGo #ASVELCSP +09/24/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: H-1 ! Prêts pour le premier RDV de la saison ? 🔥🏀 #ASVELCSP https://t.co/ACQEWr7Tny +09/13/2017,Sports_celeb,@tonyparker,"RT @Paris: Notre rêve devient réalité, @Paris2024 se concrétise 😍 Les Jeux Olympiques de 2024 sont une chance pour la France🇫🇷 #ANousLesJeu…" +09/13/2017,Sports_celeb,@tonyparker,"Bravo à toute la délégation pour avoir décroché les Jeux Olympiques en France. 🇫🇷🎉 +#ANousLesJeux #Paris2024" +09/13/2017,Sports_celeb,@tonyparker,"RT @Paris2024: #ANousLesJeux 🎉 La #France accueillera les Jeux #Paris2024 🥇 +WE DID IT – 🇫🇷 will host the 2024 #Olympic and #Paralympic Game…" +09/02/2017,Sports_celeb,@tonyparker,"RT @FRABasketball: Les Bleus s'imposent face à la Grèce 95-87 💪 #GREFRA +#teamfrancebasket #EuroBasket2017 https://t.co/nOMCjvTHGZ" +09/02/2017,Sports_celeb,@tonyparker,Bravo 💪🏼🥋 https://t.co/Rt4iQeE1Ke +08/31/2017,Sports_celeb,@tonyparker,"RT @FRABasketball: Prolongations !!!!! #FRAFIN +Le scénario de 2015 se répète +#GoFrance 💪🔵⚪️🔴 +#TeamFranceBasket" +08/31/2017,Sports_celeb,@tonyparker,@FRABasketball @EvanFourmizz @basketfinland @BasketAvecCanal @EspritBasket Allez les Bleus 💪🏽🏀 #Eurobasket17 +08/31/2017,Sports_celeb,@tonyparker,"RT @Sandrine_Gruda: Légende de notre sport 🇫🇷👌 +@tonyparker https://t.co/CKN30aB1wc" +07/26/2017,Sports_celeb,@tonyparker,Super événement @GRDF ! 👍🏼😊 #GenerationBasket https://t.co/0TU6c47A2J +07/26/2017,Sports_celeb,@tonyparker,"Beijing, here I am ! Thank you @peaksportsUSA 🇨🇳🏀" +07/21/2017,Sports_celeb,@tonyparker,👍 https://t.co/wBOIOulBu9 +07/21/2017,Sports_celeb,@tonyparker,Buenos tiempos con @RenaultArg ! #TonyParkerxRENAULT https://t.co/4yY8qgsSFl +07/20/2017,Sports_celeb,@tonyparker,RT @RenaultArg: ¡Bienvenido @tonyparker a la #Argentina! 💪🏀 Seguí el paso a paso de su visita desde nuestras redes sociales. #TonyParkerxRE… +07/19/2017,Sports_celeb,@tonyparker,"RT @manuginobili: 🇦🇷Seguiré vistiendo la #20 un tiempito más!! #sigaelbaile #elpibede40  +🇺🇸Back with the @Spurs for another season #thrille…" +07/19/2017,Sports_celeb,@tonyparker,MANU IS BACK !! So happy @manuginobili ⚪️⚫️ #GoSpursGo #SpursNation +07/16/2017,Sports_celeb,@tonyparker,👏👏 https://t.co/ibAf9rSwp5 +07/14/2017,Sports_celeb,@tonyparker,"Joyeux 14 Juillet à tous ! 🇫🇷 +Happy Bastille Day ! 🇫🇷 https://t.co/BCWhHgzOWA" +06/27/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/vxsZePUFGU +06/27/2017,Sports_celeb,@tonyparker,RT @RRG_fr: @tonyparker est arrivé sur les lieux et découvre le Nouveau #RenaultKoleos https://t.co/v7IWxTgSZD +06/27/2017,Sports_celeb,@tonyparker,RT @ASVEL_Feminin: @tonyparker @ASVEL_Basket @TP_A_A @villedelyon @nicolas88batum Photo de famille pour clôturer la conférence de présentat… +06/26/2017,Sports_celeb,@tonyparker,"RT @TP_A_A: RDV demain pour une conférence de presse de @tonyparker, Gaëtan Muller et @nicolas88batum sur les grands projets ASVEL #TPAA" +06/09/2017,Sports_celeb,@tonyparker,Fier d’avoir vu l'@ASVEL_Basket ne faire qu’UN durant ces Playoffs. Merci à tous nos soutiens et rdv l’année prochaine ! #Conquerthefuture +06/09/2017,Sports_celeb,@tonyparker,Thank you @spurs 💪🏼😎 https://t.co/QKmp9dOne8 +06/04/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: AHOU !! Allez l'@ASVEL_Basket ! 👊🏼 #ASVELSIG #WeAreASVEL https://t.co/UK46lv26pK +05/30/2017,Sports_celeb,@tonyparker,YES !!! 💪🏼 On to the next one @ASVEL_Basket #WeAreASVEL https://t.co/KUf9A46cey +05/26/2017,Sports_celeb,@tonyparker,"Fier de mon équipe @ASVEL_Basket ! Prochaine étape, la 1/2 face à @sigstrasbourg 🏀 #PlayoffsLNB #ObjectifBack2Back" +05/26/2017,Sports_celeb,@tonyparker,Dernière ligne droite ! #GoasvelGo https://t.co/NrxQ9l5wQa +05/24/2017,Sports_celeb,@tonyparker,ALLEZ @ASVEL_Basket je regarde le match en direct de San Antonio ! 🏀 #PlayoffsLNB #ObjectifBack2Back #GoAsvelGo https://t.co/QGL1YvseSH +05/24/2017,Sports_celeb,@tonyparker,"RT @spurs: All of this is nothing without you by our side. From the bottom of our hearts, thank you #SpursFamily for all your support. We l…" +05/23/2017,Sports_celeb,@tonyparker,Thank you for all the support during this season #SpursNation ! @spurs +05/17/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Happy birthday Président @tonyparker ! 😉🎉 #TeamASVEL https://t.co/rYHwKd8XMl +05/17/2017,Sports_celeb,@tonyparker,RT @LYONBF: Bon anniversaire à notre président @tonyparker ! 🎉 🎂🏀 #LBFamily +05/17/2017,Sports_celeb,@tonyparker,RT @NBA: Join us in wishing @tonyparker of the @spurs a HAPPY 35th BIRTHDAY! #NBABDAY #GoSpursGo https://t.co/qtXIHWcL6X +05/17/2017,Sports_celeb,@tonyparker,Thank you ! #GoSpursGo https://t.co/WvVPrtTglN +05/12/2017,Sports_celeb,@tonyparker,Western Conference Finals !!! #gospursgo +05/10/2017,Sports_celeb,@tonyparker,What a win! So proud of my teammates! #gospursgo +05/02/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: .@CB_officiel @CKahudi5 #CBASVEL #ProA https://t.co/2KAHqaSs7E +05/02/2017,Sports_celeb,@tonyparker,Félicitations à nos filles du @LYONBF !!! On reste en Ligue 1 ! Hâte d'être à l'année prochaine 🏀 +05/01/2017,Sports_celeb,@tonyparker,Je compte sur le public lyonnais pour faire vibrer Mado Bonnet et soutenir le @LYONBF ce mardi en finale des #PlaydownsLFB ! #MissionLFB +04/29/2017,Sports_celeb,@tonyparker,"Joyeux anniversaire Josh ! Déjà trois ans, le temps passe vite 🎂 +Happy birthday to my big boy Josh, already three y… https://t.co/0uPfxLoHRe" +04/28/2017,Sports_celeb,@tonyparker,"On to Round 2 #SpursNation ! +💪🏼👨🏽‍🍳🔥 @spurs" +04/28/2017,Sports_celeb,@tonyparker,RT @spurs: 🔥 TONY 🔥 PARKER 🔥TONIGHT 🔥 https://t.co/qcwTllyA6i +04/28/2017,Sports_celeb,@tonyparker,RT @SamuelLJackson: Tony Parker Yalllllll!!! +04/28/2017,Sports_celeb,@tonyparker,RT @DavidtheAdmiral: Vintage @tonyparker tonight. Hitting big shots all night. #Clutch +04/26/2017,Sports_celeb,@tonyparker,"Mon gars @edjacks c'est définitivement le #MVPMovistar de la @ACBCOM. Jamais un français ne l'as fait, aidez le à écrire l'histoire !! 🔥👌🏀" +04/23/2017,Sports_celeb,@tonyparker,RT @NBA: Congrats to @tonyparker of the @spurs on moving up to 6th on the #NBAPlayoffs Games Played list with 217! https://t.co/F5azjTrtw5 +04/21/2017,Sports_celeb,@tonyparker,👍 https://t.co/an4k8W4LD6 +04/15/2017,Sports_celeb,@tonyparker,"That happy face when you know today is #PlayoffsDay ! @spurs +#GoSpursGo https://t.co/rpO1n0u8cy" +04/15/2017,Sports_celeb,@tonyparker,#NBAPlayoffs 🏀 https://t.co/f9OdyDBfFd +04/06/2017,Sports_celeb,@tonyparker,Thank you for being the Best Fans in the world ! ❤️ #SpursFAN @spurs https://t.co/rPmroEiYMV +04/06/2017,Sports_celeb,@tonyparker,RT @spurs: Happy Birthday @mattbonner_15! 🎉 https://t.co/xBS7U2KkTU +04/03/2017,Sports_celeb,@tonyparker,Merci pour le soutien @AntoGriezmann ! 😊 https://t.co/spQggkRSOh +03/29/2017,Sports_celeb,@tonyparker,Très heureux d'annoncer l'arrivée de @nicolas88batum au sein de mon club de l'@ASVEL_Basket ! Une nouvelle aventure commence ensemble... +03/14/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Welcome back Casper ! 😉 #TeamASVEL https://t.co/BvmOOI4j30 +03/10/2017,Sports_celeb,@tonyparker,RT @jpsiutat: Bravo à @tonyparker nouveau président et propriétaire majoritaire de Lyon Basket Féminin ! @ffbasketball @basketlfb +03/10/2017,Sports_celeb,@tonyparker,Très fier de pouvoir officialiser l'achat du @LYONBF ! Une nouvelle aventure commence ... #lfb #basket #feminin +03/02/2017,Sports_celeb,@tonyparker,The documentary #asveldidit is now online. Le documentaire Asvel Did It est en ligne. Enjoy ! https://t.co/HSyBMvJyRB +02/26/2017,Sports_celeb,@tonyparker,"RT @spurs: Pretty nifty, @tonyparker https://t.co/k27W6PI5mv" +02/26/2017,Sports_celeb,@tonyparker,Look who came to the game ! #CasperWare #Asvel #FranceChampion2016 cc. @ASVEL_Basket https://t.co/1q8zBhkLNn +02/26/2017,Sports_celeb,@tonyparker,"RT @spurs: Okay, TP, okay! https://t.co/v86mmZsT30" +02/24/2017,Sports_celeb,@tonyparker,Family Time in L.A. 👌🏼cc. @unistudios #theparkers #love https://t.co/ymemYzQnfE +02/23/2017,Sports_celeb,@tonyparker,Concept store sympa ! Allez rencontrer des sportifs et découvrez mes vêtements @WapTwo 👌cc. @tsonga7 @lucabalo… https://t.co/NFj0auKMt9 +02/20/2017,Sports_celeb,@tonyparker,"Got to stay in shape, even during the All-Star break! Great times at Enchanted Rock. 💪🏼 https://t.co/5jj7emxMKl" +02/19/2017,Sports_celeb,@tonyparker,RT @ASVEL_Basket: Place à la finale #ProA !! #MonacoASVEL #LeadersCup https://t.co/12kKlkV8CV +02/12/2017,Sports_celeb,@tonyparker,Go @HollyHolm ! #ufc208 https://t.co/sGBBwPqnXZ +02/11/2017,Sports_celeb,@tonyparker,"Défiez moi sur les jeux #bootcamp #RenaultSport ! Try to challenge my scores on @RenaultSport #bootcamp games! +➡️ https://t.co/mWD92MtOEv" +02/10/2017,Sports_celeb,@tonyparker,"RT @gerardcollomb: Confidence de @tonyparker : ""Je suis tombé amoureux de #Lyon !"" +C'est réciproque, cher Tony. 😉 +🏀 Longue vie à la Parker…" +02/10/2017,Sports_celeb,@tonyparker,"RT @GroupeAdequat: Adéquat est fier de devenir partenaire de la future ""Tony Parker Adéquat Academy"" #TPAA #Adéquat #TonyParker https://t.c…" +02/10/2017,Sports_celeb,@tonyparker,https://t.co/aT5UCrJJEM 👍🏼 +02/10/2017,Sports_celeb,@tonyparker,Je suis fier de vous présenter le nom de ma future academy : la TONY PARKER ADEQUAT ACADEMY #TPAA #Adéquat @TP_A_A… https://t.co/LdQGjaFfxU +02/09/2017,Sports_celeb,@tonyparker,Retrouvez-moi demain à 15h pour l’annonce du nom de la @TP_Academy_ … #staytuned #TPAcademy #ASVEL +02/08/2017,Sports_celeb,@tonyparker,Retour des #CGB en Février ! @GRDF 👍🏻 https://t.co/PSIRGQ3Wlk +02/08/2017,Sports_celeb,@tonyparker,#GOAT 🏀 https://t.co/pfDkJkT1fK +02/06/2017,Sports_celeb,@tonyparker,RT @spurs: And #SpursRRT begins. We're Memphis bound! https://t.co/ZlPim1frnt +02/05/2017,Sports_celeb,@tonyparker,"RT @NBAHistory: Gregg Popovich #1,128; journey back to Pop's first win as @Spurs head coach https://t.co/sVHU5JUL0m" +02/05/2017,Sports_celeb,@tonyparker,"Congratulations to Coach Pop, made history yesterday with 1,128 wins as head coach! #proud @spurs" +02/04/2017,Sports_celeb,@tonyparker,"RT @NBA2K: Big news! 4x NBA champ @TonyParker joins #NBA2KCast 2/7, 4 PM PST for the @Tissot 24 Second Challenge #ThisIsYourTime https://t.…" +02/01/2017,Sports_celeb,@tonyparker,👍🏼 https://t.co/ecxC6guMEY +01/30/2017,Sports_celeb,@tonyparker,Congrats to my friend @rogerfederer ! So happy for you #goat #tennis #tbt https://t.co/aBGStmDisO +01/29/2017,Sports_celeb,@tonyparker,Merci @gadelmaleh pour ce super show hier soir ! Amazing show from my friend @gadelmaleh yesterday evening un Austi… https://t.co/SZ3yl2HivL +01/18/2017,Sports_celeb,@tonyparker,Always a great time at Coach Pop dinner for @safoodbank ! #championsagainsthunger https://t.co/zc3sKeHunf +01/18/2017,Sports_celeb,@tonyparker,"RT @spurs: Tricky, tricky @tonyparker.. https://t.co/XLKTllLwLH" +01/13/2017,Sports_celeb,@tonyparker,Amazing pic of @Thom_astro from the space ! Thanks for sharing it with me ! Huge @spurs fan ! https://t.co/kSupw5YAhl +01/13/2017,Sports_celeb,@tonyparker,Merci @Thom_astro de m'avoir envoyé cette photo ! J'espère que tout se passe bien dans l'espace avec ton nouveau po… https://t.co/fY5RMEbOHG +01/01/2017,Sports_celeb,@tonyparker,RT @lequipe: Le doc #ASVELdidit sur l'épopée de l'@ASVEL_Basket de @tonyparker en Pro A vous donne RDV dans 5mn sur @lachainelequipe ! http… +12/31/2016,Sports_celeb,@tonyparker,Happy New Yeare everyone ! Bonne année ! ✨ +12/29/2016,Sports_celeb,@tonyparker,RT @spurs: Tony was cookin' tonight. https://t.co/4LZIZQs0fd +12/28/2016,Sports_celeb,@tonyparker,A 17h50 sur @lachainelequipe découvrez « Asvel Did It » un docu sur l’@ASVELbasket et les Finales LNB 2016 ! #asveldidit @waptwo @OckeFilms +12/25/2016,Sports_celeb,@tonyparker,Joyeux Noël ! Merry Christmas ! Feliz Navidad ! 🎄🎅🏽✨ +12/24/2016,Sports_celeb,@tonyparker,I got what was at the top of my wish list! #Tissot Chemin Des Tourelles https://t.co/2F06goClmX +12/22/2016,Sports_celeb,@tonyparker,Proud to show you the amazing job made by @WapTwo recording the best moments to the Finals of my french club… https://t.co/dsDkSPQxf7 +12/18/2016,Sports_celeb,@tonyparker,"RT @spurs: 30 minutes till tipoff. Y'all ready?! + +#GoSpursGo https://t.co/NiRgmujp8P" +12/18/2016,Sports_celeb,@tonyparker,"Wearing these socks in honor of #Timmy tonight ! +Spéciale dédicace à #TD ce soir ! +#21 #spurs #ThankYouTD @spurs https://t.co/KgZ5NXF3lb" +12/15/2016,Sports_celeb,@tonyparker,RT @NBAonTNT: We are forever #SagerStrong https://t.co/t9C3x6znkb +12/11/2016,Sports_celeb,@tonyparker,Super photo @Thom_astro ! Merci du soutien en direct de l'espace 🚀✨ +12/11/2016,Sports_celeb,@tonyparker,Thank you @Thom_astro for your support of the @spurs ! Amazing picture from space 🚀 #sanantoniobynight +12/11/2016,Sports_celeb,@tonyparker,RT @Thom_astro: Good game to my friend @tonyparker & @spurs playing at home tonight in San Antonio TX. I'm a huge @NBA fan & I follow the s… +11/28/2016,Sports_celeb,@tonyparker,Fier de présenter la nouvelle collection capsule @WapTwo pour @zkidsofficial Shop ---> https://t.co/ADl6JiToXw #waptwo #Zkids #collection +11/25/2016,Sports_celeb,@tonyparker,"RT @spurs: Wherever home is for you, we hope you're enjoying time there today ❤️ https://t.co/7QjlXa22Ar" +11/24/2016,Sports_celeb,@tonyparker,"Happy Thanksgiving to everyone ! I'm thankful for my wonderful family, my friends and for you #spursnation 🙏🏻 🍁 🦃 @spurs" +11/24/2016,Sports_celeb,@tonyparker,💪🏼 @manuginobili https://t.co/7w8U1M8of5 +11/24/2016,Sports_celeb,@tonyparker,RT @spurs: .@tonyparker came up clutch with this three late in the fourth! https://t.co/oOh1JVt4p1 +11/23/2016,Sports_celeb,@tonyparker,"RT @Thom_astro: Thanks everybody for this video: it means a lot to me, and when I got to the rocket I felt fantastic https://t.co/9v4HiHRpCC" +11/18/2016,Sports_celeb,@tonyparker,Great times at George's personal court at Warner Brothers ! 🏀📽 https://t.co/URs6EvEgag +11/17/2016,Sports_celeb,@tonyparker,"RT @FRABasketball: .@tonyparker et @theborisdiaw aux côtés de @Thom_astro avant son départ pour l'espace 💫 🚀 +https://t.co/HHuVlC7QOn https:…" +11/17/2016,Sports_celeb,@tonyparker,"Bonne chance @Thom_astro pour la mission ""Proxima"" ! 🚀 +On se voit à ton retour ✨" +11/17/2016,Sports_celeb,@tonyparker,RT @Thom_astro: L-0: Lancement aujourd’hui! Tout est expliqué dans cette vidéo. Moi je connais ça par cœur ;) https://t.co/hxnfcXLPa7 +11/15/2016,Sports_celeb,@tonyparker,RT @spurs: Tony talks defense and Manu talks Tony: https://t.co/kLdSKXp1kC +11/12/2016,Sports_celeb,@tonyparker,RT @spurs: Basketball meets soccer. https://t.co/Pz1drHVbIu +11/12/2016,Sports_celeb,@tonyparker,RT @NBAFRANCE: @tonyparker a de la visite ce soir! @10APG https://t.co/PvV2Z8eAhy +11/12/2016,Sports_celeb,@tonyparker,Very happy to see you @10apg at the AT&T Center ! #spurs #tigres #france 🇫🇷👍🏼 https://t.co/oYuQxqErt0 +11/11/2016,Sports_celeb,@tonyparker,Happy #VeteransDay Spurs Nation ! +11/11/2016,Sports_celeb,@tonyparker,"RT @spurs: Tonight we honor those who have served with a special #SpursSalute game. + +#VeteransDay 🇺🇸 https://t.co/U4US3NWHQw" +11/04/2016,Sports_celeb,@tonyparker,"RT @spurs: “It’s incredible to see the way basketball has grown around the world since I was a rookie."" - @tonyparker https://t.co/jeOBtOF…" +11/01/2016,Sports_celeb,@tonyparker,Game Day #SpursNation ! #vsjazz #GoSpursGo +10/31/2016,Sports_celeb,@tonyparker,"RT @spurs: .@tonyparker has been a Spur for 44% of his life + +more fun stuff » https://t.co/jnor54AHaz https://t.co/VVRsYP0wC1" +10/31/2016,Sports_celeb,@tonyparker,RT @spurs: 💯 https://t.co/BXkr3aOCF4 +10/31/2016,Sports_celeb,@tonyparker,You can never be too accurate #TeamTissot #ThisIsYourTime https://t.co/e6yfyprJkS +07/01/2018,Sports_celeb,@Cristiano,"O vosso apoio foi e sempre será fundamental para nós. +Obrigado Portugal 🇵🇹 https://t.co/qjKNNp6skN" +06/27/2018,Sports_celeb,@Cristiano,"High @sleepscore. ✅ +Game day ready. ✅ +Try out this new app today! +https://t.co/bcfa1BItoD #WhatsYourSleepScore https://t.co/dwmu9lnVqj" +06/27/2018,Sports_celeb,@Cristiano,"Happy to launch my new #Mercurial Chapter 6 Edição Especial that celebrate 85 goals for 🇵🇹⚽️👍🏽 +Coming soon at… https://t.co/UQ6aPURYXz" +06/25/2018,Sports_celeb,@Cristiano,Objectivo cumprido. Unidos e focados para os oitavos de final. Vamos Portugal💪🏽🇵🇹 https://t.co/fEdKbFB9X8 +06/24/2018,Sports_celeb,@Cristiano,Mood👌🇵🇹💯 https://t.co/q43fbu6jsJ +06/24/2018,Sports_celeb,@Cristiano,"Leaving home at 12 was the hardest thing I ever did... but I believed. +Believe. #justdoit @nikefootball https://t.co/9ZWsz95CAz" +06/22/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/Awb3DLFAib +06/20/2018,Sports_celeb,@Cristiano,Vitória importante. Continuamos focados no nosso objectivo.⚽️🇵🇹 https://t.co/tceQUIEfFO +06/19/2018,Sports_celeb,@Cristiano,"WHEN I TALK TO THE BALL, IT LISTENS. + +BELIEVE. #JUSTDOIT @NIKEFOOTBALL https://t.co/gUSFBj26b8" +06/16/2018,Sports_celeb,@Cristiano,Feliz por ter sido eleito o melhor em campo. Bom trabalho de equipa!🇵🇹👍🏽 https://t.co/EjLIZxp3Dm +06/15/2018,Sports_celeb,@Cristiano,Vamos família!👍🏽🇵🇹 https://t.co/YjfMbdx8xN +06/14/2018,Sports_celeb,@Cristiano,Celebrating World Blood Donor Day and the start of the World Cup! Feeling strong with my young blood donors team! R… https://t.co/ihAnq4wz7N +06/14/2018,Sports_celeb,@Cristiano,"I’m so glad I went for it - it was the greatest goal I’ve ever scored. +Believe. #justdoit @nikefootball https://t.co/iSFRsSW4nc" +06/13/2018,Sports_celeb,@Cristiano,"In my mind, there’s only one winner. + +Believe. #justdoit @nikefootball https://t.co/7Z1btfgSHI" +06/10/2018,Sports_celeb,@Cristiano,Sonhar é humano …. e somos do tamanho dos nossos sonhos! @MEOpt https://t.co/8SM7UQW8Op +06/10/2018,Sports_celeb,@Cristiano,🇵🇹💪🏽😜 https://t.co/7jTQVbgrR7 +06/09/2018,Sports_celeb,@Cristiano,Guess who’s back on the cover of @EASPORTSFIFA! 😉 #FIFA19 #ChampionsRise 🎮⚽️🏆 https://t.co/7jb1euX5Fu +06/09/2018,Sports_celeb,@Cristiano,"Time to pack! +Let’s do it, team! ⚽ + +#AmericanTourister #BringBackMore https://t.co/chjLBaU4tc" +06/09/2018,Sports_celeb,@Cristiano,Good morning🇵🇹😜 https://t.co/ZoVWW8Xk5B +06/08/2018,Sports_celeb,@Cristiano,Unidos 🇵🇹👌 https://t.co/RQljR0ShqR +06/07/2018,Sports_celeb,@Cristiano,"When you believe you achieve. +@nikefootball #nikefootball #JustDoIt https://t.co/ptLV2VzhMx" +06/06/2018,Sports_celeb,@Cristiano,Ready 🇵🇹👌 https://t.co/8jwT3lbaAl +06/06/2018,Sports_celeb,@Cristiano,I’m bringing together some of the coolest heroes on the planet for my very own Super-Team. Stay tuned for… https://t.co/NjxkGECGSV +06/05/2018,Sports_celeb,@Cristiano,Os meus bebés Eva e Mateo cumprem hoje o seu primeiro aniversário! Parabéns meus queridos filhos!👏🏽🎂😘😘 https://t.co/BZuLX0OkH2 +06/04/2018,Sports_celeb,@Cristiano,The world is watching. Let’s go to work #HerbalifeNutrition #BehindTheResults #sponsored https://t.co/HSPjsRJ7JK +06/02/2018,Sports_celeb,@Cristiano,Vencedores 👌🏆 https://t.co/SN3oNC8xLY +06/01/2018,Sports_celeb,@Cristiano,"Never finished 🇵🇹 ⚽ 💪 + +Shop my latest #Mercurial in my personal store at https://t.co/E2zLOUFGP6 #Nike… https://t.co/DUgODwkruM" +05/31/2018,Sports_celeb,@Cristiano,"Are you donating blood and plasma regularly? Guess who could be next to you next time you donate!☝🏼☝🏼 BE THE 1. +Sa… https://t.co/AjD0DANeyT" +05/29/2018,Sports_celeb,@Cristiano,Família. Momentos inesquecíveis 💪🏽❤️ https://t.co/d9wa3tcFnb +05/28/2018,Sports_celeb,@Cristiano,🏆❤️ https://t.co/cNVIXvzpvk +05/28/2018,Sports_celeb,@Cristiano,História 🌎🏆 https://t.co/vhAitaP2Aw +05/27/2018,Sports_celeb,@Cristiano,🏆🏆🏆🏆🏆 https://t.co/5MhvvArz1b +05/26/2018,Sports_celeb,@Cristiano,"Believe It Done. #JustDoIt +-- +#Nike #NikeFootball #NikeSoccer https://t.co/HJSlxDRJI0" +05/24/2018,Sports_celeb,@Cristiano,"If you believe, why not? +#NIKEFOOTBALL #NIKESOCCER #MERCURIAL #BORNMERCURIAL #JUSTDOIT https://t.co/p0CnaLz5EH" +05/24/2018,Sports_celeb,@Cristiano,A caminho de Kiev 👌✈️ https://t.co/2s6bxDfov1 +05/23/2018,Sports_celeb,@Cristiano,Don’t miss my sisters Elma Aveiro e @KatiaAveiro at Madeira Fashion Weekend on June 2 and 3! The party goes on at… https://t.co/BvspSy3SBg +05/23/2018,Sports_celeb,@Cristiano,My perfect shoes for the gym.💪 #Nike #Niketraining @niketraining https://t.co/qqtYbR1lDF +05/23/2018,Sports_celeb,@Cristiano,Can’t wait to work with @Herbalife Nutrition for another 3 years! Proud to call them my partner in performance… https://t.co/2zehRd4266 +05/22/2018,Sports_celeb,@Cristiano,Good morning ☀️ ☀️ ☀️ ☀️ https://t.co/MTAHJKerh8 +05/19/2018,Sports_celeb,@Cristiano,👌⚽️ https://t.co/meWZy2b9nM +05/18/2018,Sports_celeb,@Cristiano,Paz e amor 💕 https://t.co/IUbJ7lOqNu +05/18/2018,Sports_celeb,@Cristiano,"We’ve made it last year in Funchal, let’s do it for Lisbon this year! +Click here: https://t.co/PfvzZ5oaCJ vote ;)… https://t.co/YnYKGvoVP5" +05/17/2018,Sports_celeb,@Cristiano,Pleased with this great partnership with #egyptiansteel @ahmedabohashima #A_New_Generation_Of_Steel https://t.co/4h4OHy365u +05/17/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/OXizqFk0PS +05/16/2018,Sports_celeb,@Cristiano,"Muito contente por anunciar o gesto do meu amigo @enriqueiglesias em doar 7⃣% das receitas do concerto em Lisboa,ao… https://t.co/R3Hy08T6gZ" +05/15/2018,Sports_celeb,@Cristiano,👌 https://t.co/uTmxndlUJi +05/12/2018,Sports_celeb,@Cristiano,Back on track 👌👋💪 https://t.co/WkhDmp8rAZ +05/05/2018,Sports_celeb,@Cristiano,"My thoughts and prayers are with you, my dear friend. Be strong, Boss! https://t.co/kmih28Xpsq" +05/04/2018,Sports_celeb,@Cristiano,"Madeira Island, the place where I was born, is nominated for Europes’s Leading Island Destination! Let’s all vote?… https://t.co/XuwXKOpcmb" +05/03/2018,Sports_celeb,@Cristiano,Ready for Russia? The FIFA #WorldCup comes to #FIFA18 on May 29th 🎮👌 @easportsfifa https://t.co/42DLu8MXWN https://t.co/T1VbAdifja +05/01/2018,Sports_celeb,@Cristiano,Final 👌 https://t.co/A0xnTPUPKH +04/30/2018,Sports_celeb,@Cristiano,"The perfect boot for my biggest matches. ⚽ 💪 +Get yours on https://t.co/Td9BJOXwaj. #Mercurial #Nikefootball https://t.co/yU9dTFXuHo" +04/29/2018,Sports_celeb,@Cristiano,Soon UCL ⚽️ https://t.co/BsVWt5toQw +04/25/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽 https://t.co/73bMhzwxEk +04/21/2018,Sports_celeb,@Cristiano,Chill in my hotel with my baby❤️ https://t.co/ySPQ9BP566 +04/20/2018,Sports_celeb,@Cristiano,Relaxing 👌 https://t.co/fcFt2AGsBH +04/16/2018,Sports_celeb,@Cristiano,⚽️👀 https://t.co/1wY275ywgr +04/14/2018,Sports_celeb,@Cristiano,O Cristiano foi o melhor marcador da escola! Parabéns filho!👏🏽🔝👌🏽 https://t.co/pRTxLdkxNO +04/14/2018,Sports_celeb,@Cristiano,Congratulations @egyptiansteel for the opening in “Al Ain Al Sokhna”using the newest eco-friendly technology in the… https://t.co/6Jrk1sozcK +04/13/2018,Sports_celeb,@Cristiano,Please support @able2uk today as the disabled awareness organisation celebrates its 17th anniversary #able2uk +04/12/2018,Sports_celeb,@Cristiano,Vamos equipo!!👍🏽 https://t.co/6v0jEZaX8T +04/09/2018,Sports_celeb,@Cristiano,👌 https://t.co/bTFbcvVFhw +04/06/2018,Sports_celeb,@Cristiano,"Preparing my suitcase for a new trip! Which colors look best on me? +Travel in style with #AmericanTourister… https://t.co/dHbNDGIVQx" +04/03/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽⚽️⚽️⚽️ https://t.co/NXoulxYVjU +04/02/2018,Sports_celeb,@Cristiano,UCL⚽️ https://t.co/FmU9tDJCzC +04/01/2018,Sports_celeb,@Cristiano,Feliz Páscoa!🐣 https://t.co/l77dlVmyhR +03/29/2018,Sports_celeb,@Cristiano,Double trouble ;p @cr7underwear https://t.co/1HGbZRwrPB +03/24/2018,Sports_celeb,@Cristiano,Results don’t happen overnight. It takes daily commitment. Watch my #BehindTheResults video with #HerbalifeNutrition https://t.co/1jwQxJIfmv +03/24/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/VetQvKxFAs +03/22/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/b0SUaPwbdU +03/21/2018,Sports_celeb,@Cristiano,🇵🇹 https://t.co/vknrvyNRW1 +03/20/2018,Sports_celeb,@Cristiano,"Fight as one, rise together !⚽ +The new @Portugal National Team Collection, available on +March 23rd on… https://t.co/jrCUzseIWh" +03/19/2018,Sports_celeb,@Cristiano,⚽️7 https://t.co/rvYAhaDLN7 +03/18/2018,Sports_celeb,@Cristiano,Vamos Equipo!👍🏽💪🏽 https://t.co/8BTu6Fwsvw +03/17/2018,Sports_celeb,@Cristiano,😂😂 https://t.co/mcoAIPPWgm +03/17/2018,Sports_celeb,@Cristiano,"Dedicated SINCE the Beginning. #BornMercurial +Get THE Mercurial superFly 360 now at https://t.co/pzHBG6y9o5 https://t.co/497HZTdNeB" +03/15/2018,Sports_celeb,@Cristiano,"Hola Madrid, +we are on the way! #pestana #pestanacr7 #cr7 #2019 #pestanacr7madrid #spain #madrid https://t.co/Z94V4BaVba" +03/14/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/LcWYOyOR0m +03/13/2018,Sports_celeb,@Cristiano,Be strong. Have faith. Never give up. #7WordsForSyria @SavetheChildren https://t.co/WjGltzXhSV +03/12/2018,Sports_celeb,@Cristiano,Still legendary together. 10 years and counting. #ClearMen #WorldNo1MenShampoo https://t.co/9n5Ccwy3DE +03/11/2018,Sports_celeb,@Cristiano,That feeling when you reach your goal 💪 See how @herbalife is helping people achieve their goals… https://t.co/UG2amgrD7V +03/10/2018,Sports_celeb,@Cristiano,Vamos Equipo!👍🏽💪🏽 https://t.co/TU1TkArQ8W +03/09/2018,Sports_celeb,@Cristiano,Fast meets Fast ⚡ Great to meet you brother! #bornmercurial #mercurial #nikefootball https://t.co/Kfp3acbLRm +03/08/2018,Sports_celeb,@Cristiano,My SS18 CR7 Underwear campaign launches today! Go to https://t.co/D3TT7ERIz0 to check it out. ;) https://t.co/mnsPjMaewI +03/08/2018,Sports_celeb,@Cristiano,My SS18 @CR7Underwear campaign launches today! Go to https://t.co/Vlium6FXZ6 to check it out. ;) https://t.co/hnQg3EGb0N +03/06/2018,Sports_celeb,@Cristiano,Una victoria importante en Paris. Vamos Equipo!💪🏽 https://t.co/hOPilXXUgN +03/05/2018,Sports_celeb,@Cristiano,Let's go 💪👌 https://t.co/H0KgDnfECO +03/04/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/qm0fUiOjLb +03/03/2018,Sports_celeb,@Cristiano,Vamos equipo!!👍🏽 https://t.co/mJ9lu3xufv +03/01/2018,Sports_celeb,@Cristiano,🐆 #bornmercurial https://t.co/Ce55ar3ysT +03/01/2018,Sports_celeb,@Cristiano,💪Jr say daddy I'm gonna be like you!!! What do you think?? 😂🤔 https://t.co/wL7KVyCkaF +02/25/2018,Sports_celeb,@Cristiano,To more mornings like this at my @PestanaCR7 Lisbon hotel https://t.co/NBouh25NXH +02/25/2018,Sports_celeb,@Cristiano,⚽️ https://t.co/kGyIW7xvrE +02/24/2018,Sports_celeb,@Cristiano,Feliz por haber alcanzado los 300 goles en la Liga Española por el Real Madrid. Vamos equipo!👍🏽 https://t.co/KBizM5OTdb +02/23/2018,Sports_celeb,@Cristiano,Best of luck to #Egyptian_Steel latest addition...The soon to open “AL AIN AL SOKHNA” steel plant @ahmedabohashima… https://t.co/4zHRAVzIib +02/22/2018,Sports_celeb,@Cristiano,"Try to Keep Up 🐆 #BornMercurial + +Introducing the Mercurial Superfly 360, available February 26 at… https://t.co/0CwkXBl1v2" +02/20/2018,Sports_celeb,@Cristiano,Love is in the air ❤️❤️ https://t.co/cwyBIQNaBQ +02/18/2018,Sports_celeb,@Cristiano,"Juntos, a seguir luchando!💪🏽 https://t.co/WJuUOD84ko" +02/15/2018,Sports_celeb,@Cristiano,One 🌍 where we all ❤ our children. Please help. #Rohingya #Refugee @SavetheChildren https://t.co/t2eJN244Jl https://t.co/9ZPwe5olJC +02/14/2018,Sports_celeb,@Cristiano,Vamos equipo!👍🏽💪🏽 https://t.co/Z1Hon6cihl +02/13/2018,Sports_celeb,@Cristiano,I love this game 😂😄❤️😉 https://t.co/6k3CElTIy1 +02/11/2018,Sports_celeb,@Cristiano,Nice to see you bro. 👌💪 https://t.co/MMqLZDsEgJ +02/07/2018,Sports_celeb,@Cristiano,Me and my boy 💙 Rocking our @cr7limitless & @cr7junior gear | https://t.co/rIL6OxcBQk #CR7Denim #CR7Jeans #CR7Squad https://t.co/wGuGCAP2mg +02/06/2018,Sports_celeb,@Cristiano,#bornmercurial @nikefootball https://t.co/ugnl0Ef6Xb +02/06/2018,Sports_celeb,@Cristiano,#NovaFotoDoPerfil https://t.co/36nZtKDiMQ +02/05/2018,Sports_celeb,@Cristiano,"Thanks @Nike for this amazing birthday gift!🎁👟👌🏽🔝 +#24kgold #AF1 #CR7 https://t.co/LYDy58Vs13" +02/05/2018,Sports_celeb,@Cristiano,Job done with a special partner on my birthday!💪🏽❤️#livelifefit https://t.co/4hGRRssTZv +02/05/2018,Sports_celeb,@Cristiano,33!🎂🥂Thank you all for your birthday messages https://t.co/YUJGDZCsAe +02/05/2018,Sports_celeb,@Cristiano,"Not bad for my first time playing football 💪🏼 +https://t.co/oAaLFOnMn8" +02/04/2018,Sports_celeb,@Cristiano,#NovaFotoDoPerfil https://t.co/XrUiPnpEqk +02/02/2018,Sports_celeb,@Cristiano,👌 https://t.co/saZsfm4Qrp +02/01/2018,Sports_celeb,@Cristiano,New jersey. Thoughts? 😉 #Ad https://t.co/7icciDe4UR +01/31/2018,Sports_celeb,@Cristiano,#CR7Fragrance the perfect scent for Valentines day! https://t.co/gNubub7SDE +01/31/2018,Sports_celeb,@Cristiano,❤️❤️❤️ https://t.co/Njzma7SeyY +01/30/2018,Sports_celeb,@Cristiano,Denim on denim 👖 living in my CR7 jeans 👌 Get yours now on https://t.co/rIL6OwV0rK @cr7limitless #CR7Denim #CR7Jeans https://t.co/pc6ippbitm +01/30/2018,Sports_celeb,@Cristiano,"Esta noche no te pierdas “En el corazón de la 12”, en RMTV (22:30h) https://t.co/dWGZdy2sd6" +01/29/2018,Sports_celeb,@Cristiano,Glad to win the award of the 懂球帝(All Football) 2017 best player. Thanks to the Chinese fans who have voted on me. https://t.co/B92Os5fbXx +01/27/2018,Sports_celeb,@Cristiano,Vitoria importante. Juntos vamos continuar a ganhar! https://t.co/zpw72rOkZp +01/25/2018,Sports_celeb,@Cristiano,Ánimo equipo. Ánimo madridistas. Aún nos quedan muchas batallas por ganar. https://t.co/xkbCAMYmpk +01/21/2018,Sports_celeb,@Cristiano,Vamos equipo https://t.co/Sh8B2IYZdM +01/20/2018,Sports_celeb,@Cristiano,"You might see the shots I take on the field, but you don’t see what’s behind those results - countless hours of tra… https://t.co/glBAXhkRVO" +01/19/2018,Sports_celeb,@Cristiano,🇵🇹❤️☀️ https://t.co/KUdnB7iR4B +01/19/2018,Sports_celeb,@Cristiano,9️⃣9️⃣! Highest-rated player in the @easportsfifa Team of the Year! Thanks for picking me 🙌 https://t.co/ak34v7CWBe… https://t.co/ZKzJSrkK5C +01/16/2018,Sports_celeb,@Cristiano,Honored to be nominated for the 2017 Laureus Sportsman of the Year Award. This is only possible because of the grea… https://t.co/Q9wJaAxbak +01/15/2018,Sports_celeb,@Cristiano,Wearing my Signature CR7 Steel Shirt 👌 Comfort is the new luxury. Find yours now on https://t.co/rIL6OxcBQk… https://t.co/IZcXuJiYmR +01/11/2018,Sports_celeb,@Cristiano,"The wait is over, my AF1 CR7 is launching today! Now available Globally on https://t.co/hiajNcJH0B, the Nike SNEAKR… https://t.co/XKrNeXk30l" +01/10/2018,Sports_celeb,@Cristiano,Practice 👌 https://t.co/VQ5jqj55cz +01/05/2018,Sports_celeb,@Cristiano,Home away from home #pestanacr7lisbon https://t.co/LB4KiKpK13 +01/03/2018,Sports_celeb,@Cristiano,A new year can mean new goals 🏆. What are yours? #BehindTheResults https://t.co/KuCbOJswpZ +01/02/2018,Sports_celeb,@Cristiano,Quando jogava nas ruas da Madeira e sonhava chegar ao topo não pensei que tiraria uma foto assim. Dedico este momen… https://t.co/vIYRS2pZ5x +12/30/2017,Sports_celeb,@Cristiano,Celebration time…Join me and give a gift for life! Sign up to donate blood and plasma at https://t.co/4kjqXfhE25 https://t.co/yIWgzp5PZG +12/28/2017,Sports_celeb,@Cristiano,Late night chats by the pool #PestanaCR7Funchal https://t.co/sfFLYF011E +12/27/2017,Sports_celeb,@Cristiano,Gala CR7 2017!👌🏽🎉❤️ https://t.co/xnm4cYJYkX +12/27/2017,Sports_celeb,@Cristiano,Wherever. Whenever. Arrive in style. Get the full @cr7limitless look now on https://t.co/rIL6OxcBQk #CR7Denim… https://t.co/fGsG460dCJ +12/26/2017,Sports_celeb,@Cristiano,Estou PRESO a estes bebés lindos ahahahah ❤️❤️❤️ https://t.co/RogaRwDJra +12/24/2017,Sports_celeb,@Cristiano,"Feliz Natal,paz,amor Deus e saúde =FAMÍLIA❤️❤️❤️❤️❤️❤️❤️❤️❤️ https://t.co/7PjMs4sdJu" +12/22/2017,Sports_celeb,@Cristiano,We are ready 👌 https://t.co/n8eNd125IM +12/20/2017,Sports_celeb,@Cristiano,I truly value the commitment to make a meaningful difference in people’s lives and this is what #Egyptian_Steel is… https://t.co/L7Awj16PWw +12/19/2017,Sports_celeb,@Cristiano,My new #CR7Fragrance one of my favourite presents to give my friends and family this Christmas! 🎁 https://t.co/2rAwJXQVCI +12/18/2017,Sports_celeb,@Cristiano,🏆 https://t.co/zapVkPkpVa +12/18/2017,Sports_celeb,@Cristiano,Dynamic and united…my new team of young blood and plasma donors are motivated! Like @BETHE1Donor​… #BETHE1Donor… https://t.co/UIth4ErR5X +12/17/2017,Sports_celeb,@Cristiano,🏆 https://t.co/crsE7HUXhK +12/17/2017,Sports_celeb,@Cristiano,Campeones❤️🥇 https://t.co/aPjiyE6NMI +12/16/2017,Sports_celeb,@Cristiano,Proud!!! Champions of the world ⚽️ https://t.co/HpRRty01r2 +12/15/2017,Sports_celeb,@Cristiano,Focused ⚽️ https://t.co/lRAjjkOQTy +12/14/2017,Sports_celeb,@Cristiano,"My Mercurial Quinto Triunfo is out now.👌 Find them at https://t.co/DVqPiekKju +Hurry, they're likely to go even fast… https://t.co/bHJal4yQ8d" +12/13/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/Vog9rm99C2 +12/13/2017,Sports_celeb,@Cristiano,😋 https://t.co/4FWHtcPrwh +12/12/2017,Sports_celeb,@Cristiano,Mercurial Quinto Triunfo. Coming soon. The perfect way to celebrate my fifth 🏆 . 👌 Sign up for a reminder at… https://t.co/TdJ1KAe0OA +12/10/2017,Sports_celeb,@Cristiano,⚽️👌 https://t.co/fTw1QriXnm +12/09/2017,Sports_celeb,@Cristiano,😉❤️ https://t.co/7WQ9lhxneL +12/08/2017,Sports_celeb,@Cristiano,❤️ https://t.co/TsSqSBXg2j +12/08/2017,Sports_celeb,@Cristiano,Be your own rival. 🏆 #CR7 #NikeFootball #PlayFree https://t.co/g5tv70viEP +12/07/2017,Sports_celeb,@Cristiano,"Another dream come true. Unbelievable feeling. Thanks to my family, friends, teammates, coaches and everyone that s… https://t.co/R7QvR8quhI" +12/07/2017,Sports_celeb,@Cristiano,Flying in style!!👌🏽🔛 https://t.co/QvPHhMmRRQ +12/07/2017,Sports_celeb,@Cristiano,"My AF1 CR7’s launch today on the Nike SNEAKRS app! #AF1#CR7 +Go to https://t.co/adIUxXBRvm https://t.co/4Enyjf4dw6" +12/04/2017,Sports_celeb,@Cristiano,Next up! My Air Force 1 CR7 launching on 7th December 🙌🏻 Download the Nike SNEAKRS App to find out more… https://t.co/iCHQ4v3BkK +12/01/2017,Sports_celeb,@Cristiano,"As a thank you, I am offering my fans a flash sale on all my ROC headphones, the perfect holiday gift :) Go to… https://t.co/rFayVjMQla" +11/30/2017,Sports_celeb,@Cristiano,#ThrowbackThursday to my launch event in Madrid! #CR7Fragrance 🙌🏻 https://t.co/qq0cKkSHjC +11/30/2017,Sports_celeb,@Cristiano,Nothing is coincidence 🙌🤗⚽️ https://t.co/VrFSKuC30R +11/28/2017,Sports_celeb,@Cristiano,❤️ https://t.co/9lbC3DzpEm +11/27/2017,Sports_celeb,@Cristiano,Get all your favorite CR7 Denim gear with our Cyber Monday special 👉🏼 https://t.co/yxYL0ZWATi @cr7limitless… https://t.co/UdjPNWHomo +11/26/2017,Sports_celeb,@Cristiano,"The ultimate #SportsBar in town +#PestanaCR7Lisbon #CR7Corner https://t.co/Vezs4LYO2Y" +11/25/2017,Sports_celeb,@Cristiano,The best spot in town with the best company!👌🏽😍 https://t.co/tRPgEQwVf3 +11/23/2017,Sports_celeb,@Cristiano,Get ready for the weekend 🙌CR7 Mens & Boys Collection available on https://t.co/rIL6OwV0rK @CR7limitless #BFCM… https://t.co/kV7H4nfpQW +11/22/2017,Sports_celeb,@Cristiano,"Music is part of my life. It's part of me. ROC is my headphone brand, go to https://t.co/sFd4IXi33N and see them no… https://t.co/Dz2sIa7cAn" +11/22/2017,Sports_celeb,@Cristiano,🙌 https://t.co/kroGIz44oK +11/22/2017,Sports_celeb,@Cristiano,Trabalho feito 👌 https://t.co/8sHMyw6nNc +11/21/2017,Sports_celeb,@Cristiano,⚽️ https://t.co/EFxGK7rY7e +11/20/2017,Sports_celeb,@Cristiano,Os 3 mosqueteiros 👌👌👌 https://t.co/hajkSBkcuT +11/17/2017,Sports_celeb,@Cristiano,"If you missed out on the first drop of my Mercurial CR7 Melhor, you can get them again now in Europe here … https://t.co/JfyN9ao8iF" +11/15/2017,Sports_celeb,@Cristiano,Score goals with me wherever you go with the new FIFA Mobile season 📱🎮⚽ Download for free now!… https://t.co/AqerzrKgTN +11/15/2017,Sports_celeb,@Cristiano,Focado 👌 https://t.co/F2JmxphRm8 +11/12/2017,Sports_celeb,@Cristiano,A Alana Martina acaba de nascer! Tanto a Geo como a Alana estão muito bem! Estamos todos muito felizes! ❤️ https://t.co/nMT4rYc32U +11/12/2017,Sports_celeb,@Cristiano,"Living it up in the CR7 Suite. +#PestanaCR7Lisbon https://t.co/IWHlrHdx0L" +11/12/2017,Sports_celeb,@Cristiano,Genes 👌👌👌 https://t.co/ctVAuXhuzu +11/10/2017,Sports_celeb,@Cristiano,"Vamos preparar bem o Mundial e ajudar as vítimas dos incêndios. Bom jogo, malta! #tudoporportugal https://t.co/haGwRbMwh4" +11/10/2017,Sports_celeb,@Cristiano,Special guest today in training ground 👌👌👌❤️ https://t.co/M0mG9Cueu9 +11/09/2017,Sports_celeb,@Cristiano,#CR7Junior IS LIVE 👖 ⚽ Now available on 👉 https://t.co/rIL6OwV0rK @CR7limitless #PressPlay #CR7Denim https://t.co/MWGzbQXnUu +11/08/2017,Sports_celeb,@Cristiano,Like father like son 😜 We are excited to launch our #CR7Junior denim collection. Now live on 👉… https://t.co/HGlyqVOqKb +11/07/2017,Sports_celeb,@Cristiano,Work done ✈️👌👌👌 https://t.co/ezyjWr70Tf +11/06/2017,Sports_celeb,@Cristiano,"Building projects with green steel is a real innovation. @egyptian_steel +@AhmedAbuHashima https://t.co/3joVu2xNO0" +11/06/2017,Sports_celeb,@Cristiano,"💎👌⚽ +Chapter 5: available on https://t.co/3dYSJ5Yb4C +#mercurial #CR7 @nikefootball https://t.co/mrQYBzOQvB" +11/03/2017,Sports_celeb,@Cristiano,"Learn the secrets to my success at  +https://t.co/4uhloqwgnO  #ROCliveLifeLoud #headphones" +11/03/2017,Sports_celeb,@Cristiano,CLEAR Men: World’s #1 Men Shampoo ☝🏼 https://t.co/YdGkG2tS9f +11/02/2017,Sports_celeb,@Cristiano,✌️ https://t.co/2VgVvtirSb +10/30/2017,Sports_celeb,@Cristiano,"Loving my new CR7 woven shirt 👔Styles for everyday. https://t.co/rIL6OwV0rK 💪@CR7Limitless +#CR7Denim… https://t.co/uAYo3Lka4z" +10/30/2017,Sports_celeb,@Cristiano,Positive mind 👌✌️ https://t.co/UxAxTn5DBq +10/28/2017,Sports_celeb,@Cristiano,"I vote for my hometown, Madeira, as the world’s leading Island Destination 2017. Are you with me? +VOTE HERE:… https://t.co/z2Cjqz1HpO" +10/27/2017,Sports_celeb,@Cristiano,Camo style! 👍🏼 @CR7Underwear #CR7Underwear https://t.co/bkbElQM8X3 +10/27/2017,Sports_celeb,@Cristiano,Good times at my hotel in Lisbon! #PestanaCR7Lisbon https://t.co/ao2BsBKsaD +10/25/2017,Sports_celeb,@Cristiano,"Ensinando aos meus 2 filhos com talento, trabalho e dedicação e a única forma de chegar a ser o número 1❤️❤️🇵🇹 https://t.co/gZIKpydF2p" +10/25/2017,Sports_celeb,@Cristiano,Not bad 11 😉😉😉😉😂😂 https://t.co/Ww0rCnU3Cv +10/24/2017,Sports_celeb,@Cristiano,❤️ https://t.co/60uQL39qpX +10/24/2017,Sports_celeb,@Cristiano,❤️❤️❤️❤️❤️❤️❤️ https://t.co/OTsB8kG1u6 +10/23/2017,Sports_celeb,@Cristiano,"Amazing feeling to have won this award again. Want to dedicate to my family, my friends, my teammates and coaches f… https://t.co/5dOhWOoptL" +10/23/2017,Sports_celeb,@Cristiano,Here we go again!!👍🏽 https://t.co/R6FXROynbh +10/23/2017,Sports_celeb,@Cristiano,"My Air Max 97 CR7’s are available exclusively on the Nike SNEAKRS app today! #Airmax #CR7 +Go to… https://t.co/7XXwYNw60B" +10/21/2017,Sports_celeb,@Cristiano,👌 https://t.co/Ue5mENXs6i +10/19/2017,Sports_celeb,@Cristiano,👌 https://t.co/I3BocNEkMk +07/01/2018,Sports_celeb,@serenawilliams,Ok..... this is going to pentality shots! Who’s watching the football (soccer) #WorldCup2018 +07/01/2018,Sports_celeb,@serenawilliams,"1 day until #Wimbledon + +In this moment, 22 was the greatest feeling, but ultimately getting to 23 was even better.… https://t.co/uwGy2rfKWK" +06/30/2018,Sports_celeb,@serenawilliams,"2 days until #Wimbledon + +Just in case no one’s told you yet today, I want to remind you that you are greater than y… https://t.co/eN64JqX6FM" +06/29/2018,Sports_celeb,@serenawilliams,"3 days until #Wimbledon + +Mood for the weekend. +Mood for Wimbledon. +One giant leap for womankind. https://t.co/jBc1rm1YFh" +06/28/2018,Sports_celeb,@serenawilliams,"4 days until #Wimbledon + +Would you believe me if I told you the girl on the left always dreamed of becoming the wo… https://t.co/9fn7MDRy8N" +06/28/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Wimbledon ready 🎾 Introducing the limited edition ‘S’ London tee, exclusively available at https://t.co/e2LGLxv8Nh +Let’s ta…" +06/27/2018,Sports_celeb,@serenawilliams,🖐🏾 days until #Wimbledon https://t.co/C7RAAwGsrh +06/27/2018,Sports_celeb,@serenawilliams,Excited to be on the August cover of @InStyle…an amazing publication that captures all women so beautifully in all… https://t.co/bgZ4YZE80W +06/26/2018,Sports_celeb,@serenawilliams,"6 days until #Wimbledon + +15 years ago a boy from Switzerland and a girl from the US, both 21, shared the stage at W… https://t.co/ydkhfL2Ia5" +06/25/2018,Sports_celeb,@serenawilliams,"7 days until #Wimbledon + +It's hard to believe it's been 16 years since my first title in London. What I remember mo… https://t.co/MofToguV7f" +06/24/2018,Sports_celeb,@serenawilliams,Some more fun ways to wear @ShopSerena. I get so excited to see the looks you come up with so please keep taking pi… https://t.co/k85u545Yu2 +06/24/2018,Sports_celeb,@serenawilliams,LOVE seeing you guys in your @serena pieces!! Please keep sharing these pics and tagging us! #BeSeenBeHeard… https://t.co/VRzcis1Gcu +06/23/2018,Sports_celeb,@serenawilliams,RT @alexisohanian: That's the one. My babygirl needs to know I'll always be there for her; and her papa got betrayed by his jealous busines… +06/23/2018,Sports_celeb,@serenawilliams,@KenyaMoore I tried to keep myself insanely busy +06/23/2018,Sports_celeb,@serenawilliams,Watched Coco with @alexisohanian for the first time. I looked over in the middle of the film and he was sobbing lik… https://t.co/MDeiHFh4Zj +06/21/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: https://t.co/Cl6lkkBbmp +06/21/2018,Sports_celeb,@serenawilliams,"Yesterday in NYC, with my partners @PurplePurse, I was proud to help kick off a national street art campaign to mak… https://t.co/exdPBJHJSt" +06/18/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: @rstuhlmann looking amazing in our Varsity Zipper dress! Keep tagging and sharing how you’re wearing Serena. We hear and se… +06/17/2018,Sports_celeb,@serenawilliams,#SerenaShareSunday here are some of my fav pics from this week. Tag @ShopSerena to be featured next week!!!! https://t.co/9okcNtjXas +06/14/2018,Sports_celeb,@serenawilliams,I will be live on instagram @ShopSerena account it’s @Serena on Instagram... who’s joining? +06/14/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: .@serenawilliams is going LIVE tonight on Instagram at 8pm EST and she wants to hear how YOU are seen and heard. Drop your… +06/13/2018,Sports_celeb,@serenawilliams,"As Board Chairwoman, I'm excited to celebrate @oath's 1st anniversary by giving back to the community and supportin… https://t.co/xAMkxEOQLS" +06/12/2018,Sports_celeb,@serenawilliams,"At first, I was so uncomfortable with the look and feel of my scar. Then I discovered @neodyneembrace and now my sc… https://t.co/tK0rsxnPgN" +06/12/2018,Sports_celeb,@serenawilliams,Goodnight world.... yes it’s 8:39pm and I’m going to bed. Because when I wake I’ll have a beautiful smart strong su… https://t.co/JUg6F24505 +06/08/2018,Sports_celeb,@serenawilliams,"Excited to see the best of the best show what they’ve got! #MadeDefiant +Watch the whole @beatsbydre film here:… https://t.co/dl0ItPJ3JP" +06/08/2018,Sports_celeb,@serenawilliams,The @leroyalmonceau has been such a joy. They have the coolest mirrors and decor! Inspiring decor https://t.co/cnYk4QUrFa +06/03/2018,Sports_celeb,@serenawilliams,That @LeRoyalMonceau life https://t.co/sCUukE7fZa +06/02/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Saturday’s with the squad. Shop our Signature S Bralette and high waisted brief at https://t.co/oR9OUKEWG9 💋 +#BeSeenBeHear…" +06/02/2018,Sports_celeb,@serenawilliams,"Never basic 😏 Shop my Signature S Bralette and high waisted brief at https://t.co/4tHKDgNgX9 +#BeSeenBeHeard https://t.co/a3aE60bpZV" +06/01/2018,Sports_celeb,@serenawilliams,"When I needed the best support off the court for my best performance on the court, @neodyneembrace rose to the chal… https://t.co/rJrM2XhhkN" +06/01/2018,Sports_celeb,@serenawilliams,I love my partner @Venuseswilliams https://t.co/nICwQOae1l +06/01/2018,Sports_celeb,@serenawilliams,RT @ShopSerena: Always stay reppin’. Shop the first of many S tees to come. #BeSeenBeHeard https://t.co/oR9OUKEWG9 https://t.co/teHo6EgyTH +05/30/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: The wait is over! @ShopSerena is officially here. + +Be the first to rep S. #BeSeenBeHeard👇🏻👇🏼👇🏽👇🏾👇🏿 + +https://t.co/oR9OUKEW…" +05/30/2018,Sports_celeb,@serenawilliams,#BeSeenBeHeard https://t.co/4tHKDgNgX9 https://t.co/XHb6gp5Nhg +05/30/2018,Sports_celeb,@serenawilliams,Never stop believing in yourself. You’re worth it. https://t.co/8lzFQeDcD2 +05/30/2018,Sports_celeb,@serenawilliams,"Today, I am excited to introduce @ShopSerena, my own online shop: https://t.co/4tHKDgNgX9 https://t.co/uoY0EvurBz" +05/30/2018,Sports_celeb,@serenawilliams,"23 Grand Slam titles later, I assembled my power team and we got to work. We designed and we planned. I wanted to b… https://t.co/SyicbS2Y6W" +05/30/2018,Sports_celeb,@serenawilliams,"Here I was, a spokeswoman for women, telling them to never give up and believe in themselves when no one else does.… https://t.co/1pqcuFsYYj" +05/30/2018,Sports_celeb,@serenawilliams,"One day, I was encouraging my best friend to invest in herself and pursue a dream of hers. A light bulb went off wh… https://t.co/EUlWccjiBm" +05/30/2018,Sports_celeb,@serenawilliams,"15 years of false starts and people telling me “no” was frustrating, but also made me more determined. If you know… https://t.co/0MxWZTtJyN" +05/30/2018,Sports_celeb,@serenawilliams,Every time I would go into a department store to present a collection it would always end up with - we love it but we are going to pass... +05/30/2018,Sports_celeb,@serenawilliams,I tried many times to align with people who could help me get things off the ground while I played tennis worked wi… https://t.co/elDH4tPuSt +05/30/2018,Sports_celeb,@serenawilliams,"That was 2001. I had a vision to create a fashion line unrelated to tennis, but soon realized the complexities of m… https://t.co/UaoWIEj2aq" +05/30/2018,Sports_celeb,@serenawilliams,"They say life is about timing. I learned this lesson at age 18, when I chose to play a light tennis schedule becaus… https://t.co/3x334u4XRb" +05/30/2018,Sports_celeb,@serenawilliams,"RT @ShopSerena: Strong. Sexy. Sophisticated. + +Be the first to rep Serena tomorrow! 👆🏻👆🏼👆🏽👆🏾👆🏿#BeSeenBeHeard + +https://t.co/oR9OUKEWG9 https:…" +05/29/2018,Sports_celeb,@serenawilliams,"Catsuit anyone? For all the moms out there who had a tough recovery from pregnancy—here you go. If I can do it, so… https://t.co/wycharHRC0" +05/25/2018,Sports_celeb,@serenawilliams,"It’s National Heat Awareness Day, grab your @missionathlete MAX cooling towel and stay cool and safe all summer lon… https://t.co/SNW98d0CJ3" +05/23/2018,Sports_celeb,@serenawilliams,@HBO tonight #beingserena don’t miss this epic episode +05/23/2018,Sports_celeb,@serenawilliams,New shoe for Roland Garros Blazer Mid SW Went -to La Grande Arche in Paris with @nikecourt and surprised some reall… https://t.co/IE7QBE9nvw +05/21/2018,Sports_celeb,@serenawilliams,And...... just like that anti doping is here ....again... second time this week. proud to participate to keep the… https://t.co/ts5QfVlMp1 +05/20/2018,Sports_celeb,@serenawilliams,I just put Olympia to sleep.... and I am already looking at pictures of her missing her. #beingserena Wednesday’s on @HBO 10pm +05/20/2018,Sports_celeb,@serenawilliams,Little known fact: I often wear sneakers under my evening gown. These @maisonvalentino @pppiccioli gave to me last… https://t.co/wS7psHu9t7 +05/19/2018,Sports_celeb,@serenawilliams,Thank you Pierpaolo for making me look special on this special evening. @MaisonValentino https://t.co/w2m6lEMyST +05/19/2018,Sports_celeb,@serenawilliams,"RT @Essence: If an employer/school ever makes a comment about your twits, braids, or cornrows reply with, “if it’s good enough for a #Royal…" +05/19/2018,Sports_celeb,@serenawilliams,Ready for my friend’s wedding. #beingserena @alexisohanian https://t.co/PSIYvpXlaV +05/19/2018,Sports_celeb,@serenawilliams,IG- instagram +05/19/2018,Sports_celeb,@serenawilliams,Check out my IG stories today. I’m getting ready for my friends wedding https://t.co/Y3Xy1JdhM6 +05/19/2018,Sports_celeb,@serenawilliams,Follow my IG stories today to see me getting… https://t.co/ZKiAVJNftr +05/18/2018,Sports_celeb,@serenawilliams,Just sitting on this incredibly #rochebobois couch. I’m obsessed with them. I could have passed out for hrs but wor… https://t.co/zbKbTRirAm +05/16/2018,Sports_celeb,@serenawilliams,Tonight!!!! @hbo #beingserena 10pm +05/15/2018,Sports_celeb,@serenawilliams,@ForeverKhadijah @AqueelahR @LEGOLAND_CA Aww I’m sorry. Love you sis +05/15/2018,Sports_celeb,@serenawilliams,#beingserena @hbo Wednesday nights 10pm https://t.co/mz8KnVf5Fi +05/14/2018,Sports_celeb,@serenawilliams,My baby has a Mohawk. I love it. Watch #beingserena on @HBO this Wednesday at 10pm part 3. +05/11/2018,Sports_celeb,@serenawilliams,I just put her to bed.... she did not wrestle as hard. I kinda missed it. I miss her. #beingserena @hbo wednesday N… https://t.co/HKt8WumvNf +05/11/2018,Sports_celeb,@serenawilliams,I’m very excited to play in San Jose for the first time at the @MubadalaSVC this summer. Looking forward to seeing… https://t.co/K4StiTQGus +05/11/2018,Sports_celeb,@serenawilliams,#beingserena @hbo https://t.co/4QOYN7jQ2K +05/09/2018,Sports_celeb,@serenawilliams,Last night after bath time with Olympia I had to put on her PJ’s We wrestled for 20 mins. She was flipping like a f… https://t.co/poo7R0OdeU +05/09/2018,Sports_celeb,@serenawilliams,@BrooklynDecker What??? Lol +05/09/2018,Sports_celeb,@serenawilliams,It’s back on tonight! 10pm #beingserena who’s watching part two? https://t.co/UKG3HothlP +05/08/2018,Sports_celeb,@serenawilliams,Guess what everyone. #BeingSerena is back on @hbo tomorrow night. Part 2.. you do not want to miss this episode! +05/07/2018,Sports_celeb,@serenawilliams,Olympia ice skates better than @alexisohanian #beingserena +05/03/2018,Sports_celeb,@serenawilliams,Sometimes I serve on the moon. How did you like #beingserena on. Hbo last night? Are you ready to tune in next week… https://t.co/nplsMWXam7 +05/02/2018,Sports_celeb,@serenawilliams,Mama bear and baby cub #beingSerena @hbo https://t.co/lX88EZYRNp +05/02/2018,Sports_celeb,@serenawilliams,@alexisohanian Dats ma Baby!!!!!!!!!! +05/02/2018,Sports_celeb,@serenawilliams,I had so much fun thank you all for he great questions. Be sure to tune in tonight on @hbo #beingserena starts TONIGHT! 10pm +05/02/2018,Sports_celeb,@serenawilliams,I feel doubled in the air... do you?? #beingserena https://t.co/nRyCBKPdxa +05/02/2018,Sports_celeb,@serenawilliams,Yes I love Disney. I’m their biggest fan. Can’t wait to take Olympia there every weekend. It’s the reason I live in… https://t.co/HjMtTw8T5V +05/02/2018,Sports_celeb,@serenawilliams,.@meganKarmstrong #beingserena https://t.co/7NFf25Q971 +05/02/2018,Sports_celeb,@serenawilliams,She never quits. And I mean NEVER quits. I love it #beingserena https://t.co/uE2gYbmxWH +05/02/2018,Sports_celeb,@serenawilliams,Patience.... and how to say the word husband. Lol #beingserena https://t.co/3LZYYE6ufN +05/02/2018,Sports_celeb,@serenawilliams,The non meat stuff??? I can eat that!! #beingserena https://t.co/ABpueYFINz +05/02/2018,Sports_celeb,@serenawilliams,I just get into a zone... like I can’t describe it. It just come over my whole self. It’s like I become a diff pers… https://t.co/iV7BiOVUGf +05/02/2018,Sports_celeb,@serenawilliams,Honestly prob venus. She’s better more natural than me. #beingserena https://t.co/y9kwgj1zLf +05/02/2018,Sports_celeb,@serenawilliams,.@bowden_saint #beingserena https://t.co/6GAdqNdtUR +05/02/2018,Sports_celeb,@serenawilliams,I can’t say because if I have more kids they may have those names #beingserena https://t.co/v44hrRhPKR +05/02/2018,Sports_celeb,@serenawilliams,Accepting the bad with the good and not deleting the bad!! It’s really real and open #beingserena https://t.co/4oGEmBfYws +05/02/2018,Sports_celeb,@serenawilliams,I need one. I’ve been asking all my friends?? Help please!!!! #beingserena https://t.co/mYmCvhPazv +05/02/2018,Sports_celeb,@serenawilliams,@CaroWozniacki of course!! #beingserena https://t.co/wxFm5hy2Wf +05/02/2018,Sports_celeb,@serenawilliams,Again anything @iamcardib #beingserena https://t.co/wGfqzwZdcK +05/02/2018,Sports_celeb,@serenawilliams,It’s funny you ask I’m working on that myself. Anyone out there have tips? @milosraonic #beingserena https://t.co/nmX7rtZ3lO +05/02/2018,Sports_celeb,@serenawilliams,Viewers can expect me to meet @OlympiaOhanian for the first time!!! How exciting #beingserena https://t.co/WiQxT6UOze +05/02/2018,Sports_celeb,@serenawilliams,Anything from CardiB #beingserena https://t.co/BOX8VprGQW +05/02/2018,Sports_celeb,@serenawilliams,Really just getting to see the final product. And seeing the project come to life. That was and is rewarding.… https://t.co/SbCmMDPi9B +05/02/2018,Sports_celeb,@serenawilliams,I don’t wanna say..... #beingserena https://t.co/o5pJ8e1RT3 +05/02/2018,Sports_celeb,@serenawilliams,It keeps changing. Now I would say a biz woman. Ceo/founder of course #beingserena https://t.co/18OZBSwQNh +05/02/2018,Sports_celeb,@serenawilliams,The physical. What u put ur body through for 9months of pregnancy and you have2 suddenly come back it’s a lot of ph… https://t.co/GO6W01wbqA +05/02/2018,Sports_celeb,@serenawilliams,Hummmmm lol let’s just say a lot of hard court tournaments leading up to the grand slam finale #beingserena https://t.co/wW0P6UD6jH +05/02/2018,Sports_celeb,@serenawilliams,I was afraid. I did not.... hey wait watch the show lol #beingserena https://t.co/OtJ2Klvgg6 +05/02/2018,Sports_celeb,@serenawilliams,Love you thanks!!! #beingserena https://t.co/MPOIVtBwks +05/02/2018,Sports_celeb,@serenawilliams,Honestly about a week later.... but I did not accept it or believe it until we got married lol. @alexisohanian https://t.co/gx5BMrieKE +05/02/2018,Sports_celeb,@serenawilliams,Run my fashion line and VC #beingserena https://t.co/1CFcacg1is +05/02/2018,Sports_celeb,@serenawilliams,I do! But I need a good show? Help recommend one to me please?? #beingserena https://t.co/4hwvxRSV6Y +05/02/2018,Sports_celeb,@serenawilliams,If Leo would like that!! Haha I’m not sure if Olympia will choose tennis but we will see!!! @vika7 #beingserena https://t.co/IDWVfF95g5 +05/02/2018,Sports_celeb,@serenawilliams,Olympia my parents my sisters #beingserena https://t.co/GntZ9oMnlI +05/02/2018,Sports_celeb,@serenawilliams,Formula one and ice skating ⛸ #beingserena https://t.co/5oCKm4Tqy1 +05/02/2018,Sports_celeb,@serenawilliams,Starting my fashion brand launching soon. AND launching my VC firm.. Interested more to come on both in the future… https://t.co/CejbtKtx6z +05/02/2018,Sports_celeb,@serenawilliams,Ugh you are tough. I would say 23 orrrrr I dunno 22? I can’t really remember the rest 🙈🙈🙈 #beingserena https://t.co/aILzecn8Gw +05/02/2018,Sports_celeb,@serenawilliams,When my coach. @PatrickMouratoglou asked me why I only wanted 18 and told me to think and dream bigger. Thanks Patr… https://t.co/y2B629Ypln +05/02/2018,Sports_celeb,@serenawilliams,Well I’m thinking popcorn (it’s my fav) and watermelon slices. 🤷🏾‍♀️ #beingserena https://t.co/M3PFqJzIhu +05/02/2018,Sports_celeb,@serenawilliams,There is more much more that can be done should be done and eventually will be done. #beingserena https://t.co/f4u7oplLX4 +05/02/2018,Sports_celeb,@serenawilliams,Self doubt is fear. Fear breeds failure... throw that self doubt in the garbage. ignore and disassociate with negat… https://t.co/egbnhXioZm +05/02/2018,Sports_celeb,@serenawilliams,Hummmmmmm I dunno there is one on the street my dad lives on a truck I love that taco truck maybe there.… https://t.co/VQenFxupIX +05/02/2018,Sports_celeb,@serenawilliams,Just a ton of hard work really. It has to be your life. #beingserena https://t.co/HeQV0C8ufX +05/02/2018,Sports_celeb,@serenawilliams,I would transport myself. Across country. I hate flying. It’s so long and takes a lot of time. So this seems a lot… https://t.co/C6q6EymZK6 +05/02/2018,Sports_celeb,@serenawilliams,It’s a small world but once you can get in there are friends and there are plenty of loving caring helping advocate… https://t.co/d2BaiyP3e8 +05/02/2018,Sports_celeb,@serenawilliams,What a pleasure to tweet to you. An honor really but my fav depends I like slow love songs or 80’s rock songs!!… https://t.co/UeIGzIExJU +05/02/2018,Sports_celeb,@serenawilliams,I can’t choose so I have to say all of them. Really all of them are super special #beingserena https://t.co/AGimv7pZ0q +05/02/2018,Sports_celeb,@serenawilliams,.@SWBlade #beingserena https://t.co/NwTbCjYK5M +05/02/2018,Sports_celeb,@serenawilliams,Become the avatar of course🤺 #beingserena https://t.co/tcGrOUj4Hc +05/02/2018,Sports_celeb,@serenawilliams,If I can be any marvel character I would be the Haulk I think you couldn’t be Black widow and @jsmoll is clearly Th… https://t.co/Bak69YIAG3 +05/02/2018,Sports_celeb,@serenawilliams,Medicare Mackie @MackieShilstone is the best we hope to hit the studio as soon as I get back from Europe LOL… https://t.co/mWkpQFgPOt +05/02/2018,Sports_celeb,@serenawilliams,As soon as I can find my superpowers #beingserena https://t.co/vw3zCPzy1y +05/02/2018,Sports_celeb,@serenawilliams,.@Waitin4theBeast https://t.co/nsSltb1rVA +05/02/2018,Sports_celeb,@serenawilliams,I don’t have one. I need one for our one year anniversary any suggestions?? https://t.co/KtKrzPW9nc +05/02/2018,Sports_celeb,@serenawilliams,Because you are always stealing my orthotics and socks and ur always late 🤷🏾‍♀️ #beingserena https://t.co/n9MviYTyqO +05/02/2018,Sports_celeb,@serenawilliams,"I wish I had her return, she has an unbelievable return. And Chip is much better than Alexis. #beingserena https://t.co/ZaP4SVOB9R" +05/02/2018,Sports_celeb,@serenawilliams,"I had never thought about it, but maybe I’ll write one with Olympia #beingserena https://t.co/ePaN5OH3jN" +05/02/2018,Sports_celeb,@serenawilliams,Humility. To always have a humble heart. #beingserena https://t.co/0AEzzKKtzJ +05/02/2018,Sports_celeb,@serenawilliams,"Chips. Any type of chip - I’m a chip connoisseur. One flavour at a time, but boy... #beingserena https://t.co/ddHWuD7foH" +05/02/2018,Sports_celeb,@serenawilliams,Ace. Because there’s just something so powerful about it. All my aces at the Olympics - particularly the gold medal… https://t.co/sX53bsR1kn +05/02/2018,Sports_celeb,@serenawilliams,"All the stuff I do off the court with my philanthropy, trying to inspire, help and motivate people. Rather that tha… https://t.co/pRilmcdpxq" +05/02/2018,Sports_celeb,@serenawilliams,Ice. It would be really fast! And with really cute sequined ice skater outfits. #beingserena https://t.co/KhyRleDUgN +05/02/2018,Sports_celeb,@serenawilliams,Myself. I’m motivated and inspired by my personal goals and that’s the only reason I’m still continuing.… https://t.co/RDOpjlkLNP +05/02/2018,Sports_celeb,@serenawilliams,"Every day is my favorite moment, just breastfeeding was by far one of my favorite moments. Just every day.… https://t.co/wNoZoX7pNS" +05/02/2018,Sports_celeb,@serenawilliams,"I’d play tennis, because everything in my life is here because of it, I don’t know where I’d be without it and I li… https://t.co/6yDyIVnYdo" +05/02/2018,Sports_celeb,@serenawilliams,"I don’t think he’s jealous, he’s more in ignore mode. She loves him, all she wants to do is play but he doesn’t wan… https://t.co/ArND8VnrNG" +05/02/2018,Sports_celeb,@serenawilliams,Moana because I watched it when I was pregnant and so she watched it with me. And The Little Mermaid ride!… https://t.co/1rRbBmFv00 +05/02/2018,Sports_celeb,@serenawilliams,Hey everyone ask me anything in celebration of my premiere epsoide of being Serena on @hbo tonight! Add #beingserena hashtag for me2reply +05/02/2018,Sports_celeb,@serenawilliams,Me: you really like my leopard print shoes? Him: yes check out moments like… https://t.co/kXrVjR6Ij2 +05/02/2018,Sports_celeb,@serenawilliams,"My Q&A starts at 12PM PST/3PM EST, last call for questions! #BeingSerena" +05/01/2018,Sports_celeb,@serenawilliams,One more day until the premiere of my new show on @HBO Being Serena. Today I… https://t.co/7DKHWeuGqv +05/01/2018,Sports_celeb,@serenawilliams,"I'm going to be doing a Twitter Q&A tomorrow in honor of the premiere of my HBO series, Being Serena. Send me your… https://t.co/iINbdEq3i5" +04/30/2018,Sports_celeb,@serenawilliams,"Watch me on @TheView talk about @HBO Being Serena, how @neodyneembrace helped me with my come back and more. I had… https://t.co/XzHkvsap81" +04/30/2018,Sports_celeb,@serenawilliams,@bonappetit Thank you!!! +04/30/2018,Sports_celeb,@serenawilliams,I just bathed her and put her I bed. Now I feel lonely and like crying cause I miss her so much. When does that go… https://t.co/IfsoNURM0N +04/30/2018,Sports_celeb,@serenawilliams,Hey everyone. Can someone out there teach me how to Mack cacio and Pepe pasta? Thanks in advance!!!! Post a link pleaseeeee +04/30/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/ZDnA9sCFeg +04/29/2018,Sports_celeb,@serenawilliams,I can’t sleep when she cries or is upset +04/29/2018,Sports_celeb,@serenawilliams,Singing @SmashingPumpkin bullet with butterfly wings on Selexis day with @alexisohanian I’m just… https://t.co/YqB9baOtHJ +04/29/2018,Sports_celeb,@serenawilliams,@kmcme17 Wait what?? +04/29/2018,Sports_celeb,@serenawilliams,Changing @OlympiaOhanian diaper has gotten to be so challaning I need a Dramamine afterwards! She’s a mover!!! +04/28/2018,Sports_celeb,@serenawilliams,That side eye to Jill https://t.co/VRSXubEEMM +04/28/2018,Sports_celeb,@serenawilliams,Cheers https://t.co/plfrV8yqAq +04/27/2018,Sports_celeb,@serenawilliams,I’m not a fan of decorative pillows. They look pretty but if you are exhausted (me every night) they are a pain to… https://t.co/PZdGTyakwZ +04/27/2018,Sports_celeb,@serenawilliams,Once a year @alexisohanian and I have what we call Selexis day. It can fall on any day out of… https://t.co/0UTmnKVKlS +04/26/2018,Sports_celeb,@serenawilliams,With the handsome @alexisohanian https://t.co/Qu3yLipeSQ +04/26/2018,Sports_celeb,@serenawilliams,Was great chatting with you Robin! @robinroberts @GMA https://t.co/LGL3NHBp41 +04/26/2018,Sports_celeb,@serenawilliams,My ladies. My loves. @gigihadid bellahadid Thanks for the support. Love you two dearly. And that… https://t.co/jc7YorkAa4 +04/26/2018,Sports_celeb,@serenawilliams,Being Serena Premire last night @hbo https://t.co/tmTgGqqd3M +04/26/2018,Sports_celeb,@serenawilliams,@RenasArmy @alexisohanian Gosh wow I still don’t remember it. Crazy +04/25/2018,Sports_celeb,@serenawilliams,Casually jumped into a ball pit. #beingSerena. @Hbo may 2 https://t.co/JOAer5fkl9 +04/25/2018,Sports_celeb,@serenawilliams,I’ve been so good... but does anyone know any good beignet places in nyc? +04/21/2018,Sports_celeb,@serenawilliams,Filling out paper work for @olympiaohanian Mom is a Jock dads a Nerd #beingserena coming to @HBO… https://t.co/0M69trtt4N +04/21/2018,Sports_celeb,@serenawilliams,@alexisohanian @vr_drifter I hope you are having th best day ever #selexis day +04/19/2018,Sports_celeb,@serenawilliams,If I were proactive I would get up and start packing. Instead I’m gonna turn on the golden girls. #beingserena @hbo #may5 +04/18/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/PtRlfCrPcx +04/16/2018,Sports_celeb,@serenawilliams,Night night +04/15/2018,Sports_celeb,@serenawilliams,@geniebouchard @bri_sull Right???!!!!! +04/15/2018,Sports_celeb,@serenawilliams,Sooooo I need a dollar lol I had to ask my friend @bri_sull for a dollar to pay for my Valet parking. #whoCarriesCash ? I don’t!! +04/13/2018,Sports_celeb,@serenawilliams,I’m not perfect. But I’m perfectly Serena. #beingSerena @hbo https://t.co/L6c9Wshjk9 +04/13/2018,Sports_celeb,@serenawilliams,I need some clones. One to play tennis. One to sit on company boards. One to design my new fashion line. One to des… https://t.co/7qBWsKgorA +04/12/2018,Sports_celeb,@serenawilliams,Sitting here waiting on @OlympiaOhanian to wake up +04/12/2018,Sports_celeb,@serenawilliams,@alexisohanian @TOMFORD @ElisabethGarvin Maybe a reg tie? U always do bow tie +04/11/2018,Sports_celeb,@serenawilliams,Excited to share the trailer for my upcoming documentary series #BeingSerena – starting May 2 on @HBO. Check it out! https://t.co/ibGW5bIEeB +04/10/2018,Sports_celeb,@serenawilliams,Great to see @starbucks and their commitment to pay equity. #EqualPay https://t.co/yuOfvckcAH +04/10/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/HKxdXz3dun +04/09/2018,Sports_celeb,@serenawilliams,Soooooo every time I have to go to the bathroom at night I think a snake is going to bite me. So I always leave the lights on. #beingserena +04/06/2018,Sports_celeb,@serenawilliams,Mother may I? https://t.co/2OJaCi3B03 +04/06/2018,Sports_celeb,@serenawilliams,I never understood why on chopped there is only one ice cream maker. #beingSerena +04/05/2018,Sports_celeb,@serenawilliams,"My story. My words. My @HBO documentary series, #BeingSerena, starting May 2. Find out more: https://t.co/kmiVBe45ev https://t.co/0INKTYzJiu" +04/05/2018,Sports_celeb,@serenawilliams,She really does need pockets. Who agrees with me she can keep a snack in them! https://t.co/3KwLlziZTT +04/05/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/4jPKf6g0Xs +04/05/2018,Sports_celeb,@serenawilliams,"RT @StevieWonder: On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for his dre…" +04/05/2018,Sports_celeb,@serenawilliams,50 years ago on April 4th Dr. King's life was cut short but his dream still lives. My dream is equal opportunities… https://t.co/I193Vou5PZ +04/03/2018,Sports_celeb,@serenawilliams,SWIPE RIGHT: Superhero by day family man at night. @alexisohanian @olympiaohanian https://t.co/GWTwHeEoTj +04/01/2018,Sports_celeb,@serenawilliams,Her first memorial last night @venuseswilliams https://t.co/WdUN6qx62G +03/28/2018,Sports_celeb,@serenawilliams,You inspire me to #EmbraceAmbition @Venuseswilliams . Join the @ToryBurchFdn movement & celebrate the women who hav… https://t.co/OLlfPQyj0G +03/26/2018,Sports_celeb,@serenawilliams,My @hbo documentary called Being Serena premieres May 2. I can't wait to share what I have been… https://t.co/FFB8PBmhKR +03/26/2018,Sports_celeb,@serenawilliams,Just posted a photo https://t.co/oaOdzlvNUC +03/25/2018,Sports_celeb,@serenawilliams,Our sons and daughters shouldn’t fear for their lives while at school. I’m proud of all the young people who are pe… https://t.co/FwQxi872AA +03/24/2018,Sports_celeb,@serenawilliams,@AudemarsPiguet Stunning +03/24/2018,Sports_celeb,@serenawilliams,"RT @AudemarsPiguet: The winter landscapes of the Vallée de Joux. Forever an inspiration for our watchmakers. #RoyalOakConcept +https://t.co/…" +03/24/2018,Sports_celeb,@serenawilliams,Is it normal to have a super low everything your baby goes to sleep? I feel like crying. I miss her and I can't wai… https://t.co/bTg3Rd3DMV +03/24/2018,Sports_celeb,@serenawilliams,Olympia hates naps. I'm trying to be a strong parent but I keep cracking +03/23/2018,Sports_celeb,@serenawilliams,Why is it that pimples on the eyebrows hurt the most? 🤔 +03/22/2018,Sports_celeb,@serenawilliams,4 months ago I could not walk to my mailbox... but I will keep going forward and I'll get there.… https://t.co/nH9Y02AOnO +03/21/2018,Sports_celeb,@serenawilliams,"As my next chapter begins, I’m ready to see how far I can go. @LincolnMotorCo #ad https://t.co/2UFD9TkaMy" +03/20/2018,Sports_celeb,@serenawilliams,@AudemarsPiguet Love this! +03/20/2018,Sports_celeb,@serenawilliams,@dinethuw_811 Got it thanks!!! It's been wracking my brain for so long +03/20/2018,Sports_celeb,@serenawilliams,@scotty_13_ @dinethuw_811 Ohhhhhh ok got it +05/29/2018,Sports_celeb,@YaoMing,Congratulations to the Rockets on an excellent season. This is a great team with a bright future. Houston should be proud. 🚀 +03/31/2018,Sports_celeb,@YaoMing,RT @WildAid: 70 species of #sharks are at risk of extinction. We work with @YaoMing & other ambassadors to reduce demand for shark fin soup… +03/31/2018,Sports_celeb,@YaoMing,@YaoFamilyWines Happy Easter everyone! +03/31/2018,Sports_celeb,@YaoMing,Congratulations to my friend @SteveNash and the rest of the 2018 HOF class! +01/06/2018,Sports_celeb,@YaoMing,https://t.co/nt3gRm9edj +12/07/2017,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: JUST RELEASED! 2016 Yao Ming Napa Valley Brut Sparkling Wine. Limited edition, only available at our tasting room and o…" +11/02/2017,Sports_celeb,@YaoMing,Houston. 👊🏼 +10/22/2017,Sports_celeb,@YaoMing,Houston. 👊🏼 +10/13/2017,Sports_celeb,@YaoMing,Sending condolences to the victims of the Napa fires & gratitude to the firefighters and everyone working to save the beautiful Napa Valley. +08/30/2017,Sports_celeb,@YaoMing,My thoughts are with the people of Houston today. Wishing everyone wellness and safety. Stay safe and stay strong Houston. +06/21/2017,Sports_celeb,@YaoMing,"RT @PrincessCruises: We're honored to announce that basketball legend @yaoming and his wife, Ye Li, will officially name #MajesticPrincess…" +05/18/2017,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: It's #WineWednesday and our #Spring Newsletter is on our #blog! Read about the latest, including our new partnership wi…" +02/03/2017,Sports_celeb,@YaoMing,RT @HoustonRockets: .@YaoMing's first 3-pointer! We are retiring #11 to the rafters tonight at halftime. #ThankYouYao https://t.co/hTjSdcNW… +02/03/2017,Sports_celeb,@YaoMing,Thank you @HoustonRockets fans for everything! Honored to have my #11 jersey retired today. A Rocket for life.… https://t.co/WH12DPlpy5 +02/02/2017,Sports_celeb,@YaoMing,"No, Coach Van Gundy, the honor was all mine. https://t.co/V1X56cK3hI" +02/02/2017,Sports_celeb,@YaoMing,"RT @PlayersTribune: As the @HoustonRockets retire @YaoMing's jersey, Jeff Van Gundy remembers his former center's greatness: https://t.co/Z…" +11/13/2016,Sports_celeb,@YaoMing,"Did you know that illegal wildlife trade trails only gun, drug and human trafficking? When the buying stops the killing can to. @WildAid" +10/20/2016,Sports_celeb,@YaoMing,Thanks to Forbes For the kind words! https://t.co/lUFsLha9Of +09/29/2016,Sports_celeb,@YaoMing,@BearGrylls @WildAid @YaoFamilyWines I will be ready! +09/29/2016,Sports_celeb,@YaoMing,Always good to be in Napa Valley during harvest. @YaoFamilyWines https://t.co/HEDmErNr7y +09/12/2016,Sports_celeb,@YaoMing,Thank you for my birthday wishes. I'm trying to stay young so I am now on Instagram. https://t.co/Vd1bYYwY0M +09/11/2016,Sports_celeb,@YaoMing,The best moments this week were with old friends like @officialmutombo @BillWalton @HoustonRockets CD coach Rudy & coach Van Gundy. #blessed +09/11/2016,Sports_celeb,@YaoMing,It was great to see u again @alleniverson @SHAQ & @SherylSwoopes . I am honored to be part of the class of 2016 with such greatness. +09/10/2016,Sports_celeb,@YaoMing,RT @JLin7: Congrats to @YaoMing on the Hall of Fame!! https://t.co/LOCfyckNHs +09/10/2016,Sports_celeb,@YaoMing,Thank you Hall of Fame for the private tour today. It was incredible to see such history. https://t.co/arGN8tyEJh +09/10/2016,Sports_celeb,@YaoMing,RT @PlayersTribune: READ: The full transcript of @YaoMing’s 2016 Hall of Fame speech. https://t.co/jZubWCEL5r +09/09/2016,Sports_celeb,@YaoMing,Thank you to my Rocket brother @SteveFranchise3 in the great @PlayersTribune story on a very special night. https://t.co/ly6ByxlLf4 +08/24/2016,Sports_celeb,@YaoMing,"Join me at the Hall of Fame ceremony next month in Springfield, MA. And help raise money for two wonderful causes. https://t.co/pcdjQ8bX3l" +08/21/2016,Sports_celeb,@YaoMing,RT @PlayersTribune: One picture taught former @HoustonRockets center @YaoMing the meaning of the @Olympics. https://t.co/VfN7lGawiv https:/… +08/21/2016,Sports_celeb,@YaoMing,"As #Rio2016 comes to a close, I'm thinking of my own Olympic memories. One picture comes to mind. https://t.co/kolKpO93Py @PlayersTribune" +08/12/2016,Sports_celeb,@YaoMing,"On #WorldElephantDay remember: When the buying stops, the killing can too. #JoinTheHerd Photo: Chrystina Geagan https://t.co/srQeAwzqA5" +08/10/2016,Sports_celeb,@YaoMing,Want to join me at the Hall of Fame ceremony? You can! https://t.co/2jPtkVYu7X +07/19/2016,Sports_celeb,@YaoMing,I learned many things during my rookie season driving around Houston w Steve Francis. @PlayersTribune https://t.co/LK8LLnmO2T. +07/12/2016,Sports_celeb,@YaoMing,Congratulations to one of the all time greats Tim Duncan! +06/22/2016,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: In case you missed it, here's the excellent CCTV piece on the Yao and the new tasting room:... https://t.co/dj9zErIX9x" +06/08/2016,Sports_celeb,@YaoMing,RT @WildAid: We’re getting ready for #WorldOceansDay. Check back tomorrow for an announcement from #WildAid (Photo: Laura Wais) https://t.c… +06/06/2016,Sports_celeb,@YaoMing,RT @PaulGAllen: Announced U.S. ivory ban means that elephants have a better chance to avoid extinction: https://t.co/5lhSx2MpJd https://t.c… +06/06/2016,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Thanks to @Terroiristblog for the excellent recommendation of our 2015 Napa Crest #sauvignonblanc! https://t.co/biywrO… +06/02/2016,Sports_celeb,@YaoMing,Thank you. There is much more to do. https://t.co/QvMBky6gie +05/24/2016,Sports_celeb,@YaoMing,"How the Elephant Became the Newest Celebrity Cause, via @nytimes https://t.co/yEVrvPCh8P" +12/25/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Merry Christmas! https://t.co/CYq2C090IZ +11/11/2015,Sports_celeb,@YaoMing,Funny guy! https://t.co/p3UYC6gvJ1 +09/25/2015,Sports_celeb,@YaoMing,Happy to share this great news. WildAid | US and China Agree to Halt Ivory Trade http://t.co/cjpMwEA4KD +08/21/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Cheers to our founder! Yao Ming helps China wins bid to host 2019 FIBA World Cup | ProBasketballTalk http://t.co/EfMHK9… +08/05/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: 2012 scores are in: @JamesSuckling 95/93/88! @RobertMParkerJr 96/90/87! A big NI HAO from YFW! Request allocation at h… +08/04/2015,Sports_celeb,@YaoMing,http://t.co/GFm1rjLaGF +04/09/2015,Sports_celeb,@YaoMing,RT @YaoFamilyWines: High Stakes: Yao Ming’s Wine Has a Good Shot at Its Crowdfunding Goal http://t.co/za1SV6fNiO via @LA_mag +03/14/2015,Sports_celeb,@YaoMing,RT @billsanders: NBA legend Yao Ming has pulled $2m worth of crowdfunders in to share his love of red wine | Business Insider http://t.co/g… +12/24/2014,Sports_celeb,@YaoMing,"Wishing you and your loved ones a very Merry Christmas, happy holidays and happy new year." +11/17/2014,Sports_celeb,@YaoMing,Heading back to China after a week supporting #IvoryFree. Please watch our @WildAid film on Tuesday night. Thank you for living #IvoryFree +11/17/2014,Sports_celeb,@YaoMing,RT @deandean: Be ivory free with @YaoMing. Great job @WildAid - Let's all help save Africa's Giants. http://t.co/ievMbkzh3z +11/16/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Look who loves our Napa cab! @yuanyuanTan9 prima ballerina! http://t.co/wnF1qKnoio +11/16/2014,Sports_celeb,@YaoMing,RT @boderek: Looking forward to meeting my fellow @WildAid member and my hero in sports and conservation @YaoMing tonight. http://t.co/FvJ8… +11/14/2014,Sports_celeb,@YaoMing,About to tape @MorningEdition on the last stop of the #IvoryFree New York media your. Join me http://t.co/MP0fyhsuIM http://t.co/K1aL0UlP6U +11/14/2014,Sports_celeb,@YaoMing,About to go on @Morning_Joe to discuss #IvoryFree +11/13/2014,Sports_celeb,@YaoMing,About to go on @cnni with @WildAid Peter Knights to talk about living@#IvoryFree http://t.co/MP0fyhsuIM +11/13/2014,Sports_celeb,@YaoMing,I travel a lot. But these guys are @Globies http://t.co/TZxmLnRfe8 +11/13/2014,Sports_celeb,@YaoMing,And sign the petition at http://t.co/1kPdzXrfkr. Thank you for joining us. +11/13/2014,Sports_celeb,@YaoMing,"Over 30,000 elephants are killed every year for ivory. I'm #ivoryfree. Please RT if you are with me." +11/12/2014,Sports_celeb,@YaoMing,RT @SatOnMeeting: @Schultz_Report @HuffPostLive What inspired @YaoMing 2get involved in protecting elephants & rhinos from poachers? #Savin… +11/12/2014,Sports_celeb,@YaoMing,Getting ready to go on @HuffPostLive. Bring me your best questions. A-game only! +11/12/2014,Sports_celeb,@YaoMing,Talking hoops and elephants on @SInowLIVE today at 1 PM Eastern. #ivoryfree +11/12/2014,Sports_celeb,@YaoMing,Happy to be joining Fox and Friends to begin promoting #ivoryfree http://t.co/duiboZFoQa +11/10/2014,Sports_celeb,@YaoMing,1 elephant is killed every 15 minutes. Please watch my @AnimalPlanet special on 11/18 & join me in the pledge to be #ivoryfree +11/07/2014,Sports_celeb,@YaoMing,RT @AnimalPlanet: RT @gm_tortie: I'm going #IvoryFree. Will you? Take the pledge with @WildAid and @AnimalPlanet. http://t.co/F4tiC4FTZ4 +10/10/2014,Sports_celeb,@YaoMing,RT @rogerfederer: Hard not to look up to the great @YaoMing. Amazing athlete and national hero http://t.co/iWvi4GrY0Z +10/03/2014,Sports_celeb,@YaoMing,"#Retacked from @imcrazyaha via @HashtackApp + #instasize #yaoming 😌#爸爸去哪儿 http://t.co/45VHc0MkYY http://t.co/fSjrxAXgdq" +09/13/2014,Sports_celeb,@YaoMing,Thanks everyone for all of the nice birthday wishes. +08/26/2014,Sports_celeb,@YaoMing,RT @youtholympics: Social media chat with @yaoming at the Youth Olympic Games http://t.co/rkJTcbO3Ve #nanjing2014 #yogambassador +08/24/2014,Sports_celeb,@YaoMing,Thinking of our good friends in Napa Valley today. +08/20/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: #Chicago + great #steaks + our #NapaValley #CabernetSaivignon = @gibsonssteak! #Thanks for putting us on the list! +08/14/2014,Sports_celeb,@YaoMing,RT @nytimes: Sinosphere Blog: A Plea to Shun the Ivory Trade From Yao Ming http://t.co/as7y44wbLb +07/09/2014,Sports_celeb,@YaoMing,RT @CCTV_America: @JohnKerry talks with retired Chinese #NBA star @YaoMing about efforts against international #wildlife #trafficking http:… +06/19/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Proud to be a part of the @foodandwine Classic in Aspen! How to drink wine like a millionaire http://t.co/qDPTIssyUY v… +06/07/2014,Sports_celeb,@YaoMing,“@JackiePipkins: Why so tall @YaoMing http://t.co/pTenq8oQoR” Why so surprised? +06/07/2014,Sports_celeb,@YaoMing,@JackiePipkins +06/07/2014,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: A beautiful evening at La Casa Havana, Singapore. Tom Hinde w/ Jimmy Ng and a few bottles of our finest. #singapore htt…" +05/15/2014,Sports_celeb,@YaoMing,RT @WildAid: The fiery view from inside the rotary kiln...962 degrees celsius. 35 drums at 35 kg each go in today. #HKIvoryBurn http://t.co… +04/20/2014,Sports_celeb,@YaoMing,Let's go @HoustonRockets! +04/12/2014,Sports_celeb,@YaoMing,"RT @sportsuncorked: @YaoMing @YaoFamilyWines talks how he can change the wine world He already has in the @NBA http://t.co/Ndg2bdMr0e +#wine…" +03/24/2014,Sports_celeb,@YaoMing,"RT @jewelsdolphins: @YaoMing @WildAid Thank you Yao Ming for making meaningful change in the world! +http://t.co/HKX0FZ173p" +03/24/2014,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Wine Enthusiast Magazine Awards 2010 Yao Ming® Family Reserve Cabernet Sauvignon Highest Rating In April 2014 http://t.… +03/01/2014,Sports_celeb,@YaoMing,I enjoyed meeting the great wine critic @RobertMParkerJr in Shanghai. Thanks for your kind words for @YaoFamilyWines! http://t.co/fpQ5oMQZFn +11/25/2013,Sports_celeb,@YaoMing,"RT @YaoFamilyWines: .@YaoMing stays busy in retirement with college, winemaking and owning the Shanghai Sharks http://t.co/95PqyZsWFj" +11/18/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Thanks @BinnysBev for having us. Proud to be in your shelves. http://t.co/ViZScKAQFh +11/18/2013,Sports_celeb,@YaoMing,Here's a great piece on our visit to Spec's Wines Spirits & Fine Foods. Thanks to Spec's for carrying @YaoFamilyWines http://t.co/VWWtIFBvik +11/04/2013,Sports_celeb,@YaoMing,With @kobebryant http://t.co/AwhF7kXvi1 +09/26/2013,Sports_celeb,@YaoMing,"When people in China know what's happening with the illegal ivory trade, they will say no to these products @WildAid http://t.co/d2KWfVb1Z5" +07/19/2013,Sports_celeb,@YaoMing,Enjoying a beautiful day in Napa Valley @YaoFamilyWines http://t.co/6DPMWeFE5k +07/15/2013,Sports_celeb,@YaoMing,I feel so happy that @DwightHoward chose the @HoustonRockets +03/01/2013,Sports_celeb,@YaoMing,"Now I won't be the tallest Yao in Houston RT @ShernMinKHOU Hou Zoo named the baby giraffe you saw during Allstar week ""Yao""! Any comment?" +02/26/2013,Sports_celeb,@YaoMing,Say “No” to Rhino Horns! http://t.co/vFbnty1iKy +02/25/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Proud to be featured here! Wineries find success exporting California wines to Asia http://t.co/gs6p45uLYv +02/18/2013,Sports_celeb,@YaoMing,Thank you for a great All-Star Weekend Houston. I had a wonderful time. http://t.co/OVSZtlKk +02/18/2013,Sports_celeb,@YaoMing,"RT @HoustonRockets: PHOTO: Rockets Royalty. Of course Hakeem the Dream, @YaoMing and Les Alexander are here courtside http://t.co/cM9QGg3V" +02/18/2013,Sports_celeb,@YaoMing,"Had a very special day at Retired Players Brunch. Great honor to be awarded along with The Dream, Coach T, Dike, Clyde, Horry and others" +02/16/2013,Sports_celeb,@YaoMing,Great spending time today with @RealJayWilliams http://t.co/hzUSzrXB +02/15/2013,Sports_celeb,@YaoMing,RT @HoustonRockets: .@YaoMing officially named Houston Goodwill Ambassador & given key to the city by Mayor Parker. http://t.co/Q2ZxD01U +02/15/2013,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Today Yao Ming was presented the key to the city by Houston mayor Annise Parker. In return guess what she received? ... +02/13/2013,Sports_celeb,@YaoMing,RT ‏@JJWatt: Great lunch with @YaoMing today. Have a feeling he could knock down a pass or two... http://t.co/SRmAsgSB +11/13/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Honored at Robb Report’s – Robb Choice · Best of the Best 2012 http://t.co/KeH6qOyY +10/22/2012,Sports_celeb,@YaoMing,It was fun watching the Clippers and Heat play in Beijing last week. I got to see many friends including Bill Russell http://t.co/YNQLfIEm +08/27/2012,Sports_celeb,@YaoMing,I came face to face with a large black rhino http://t.co/VTj5HKIo +08/24/2012,Sports_celeb,@YaoMing,"Bonding w/ Kinango, a 2-wk-old orphaned elephant whose mother was lost to poaching http://t.co/EClYlPUa" +08/23/2012,Sports_celeb,@YaoMing,Just saw a collection that's not to be proud of http://t.co/XUUPnCR8 +08/21/2012,Sports_celeb,@YaoMing,I was very close to becoming a meal for lions. Probably not so tasty. http://t.co/Z3Qb2B8d +08/20/2012,Sports_celeb,@YaoMing,Scouted local basketball talent in Samburu Village and managed to break the hoop! http://t.co/1BtyS5GZ +08/19/2012,Sports_celeb,@YaoMing,I never thought I'd become an honorary Samburu warrior: http://t.co/EVpPbSsw +08/16/2012,Sports_celeb,@YaoMing,"While in Namunyak, Northern Kenya, I come across a sight I will not soon forget… http://t.co/rlwXUQFP" +08/14/2012,Sports_celeb,@YaoMing,"Met Najin and Suni, two of the world's remaining seven Northern White Rhinos http://t.co/0n5HmdOi" +08/14/2012,Sports_celeb,@YaoMing,RT @nbacares: .@YaoMing films anti-poaching documentary in Kenya... http://t.co/qsRT7VfI +08/10/2012,Sports_celeb,@YaoMing,Follow my journey to Africa with @wildaid http://t.co/jkjlg8qt +06/07/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Wins Silver Medal in the 2012 Decanter World Wine Awards http://t.co/BRLNac4A +05/16/2012,Sports_celeb,@YaoMing,RT @YaoFamilyWines: Yao Family Wines Receives Top Scores From @WineEnthusiast Magazine! http://t.co/UjIds9OE +05/15/2012,Sports_celeb,@YaoMing,RT @WSJpop: VIDEO: The Business of Being Yao Ming http://t.co/TKw33TlC +04/27/2012,Sports_celeb,@YaoMing,Thank you to Baccarat and Pernod Ricard for your donation to my foundation. The dinner was very enjoyable http://t.co/wAGgVmWJ +02/26/2012,Sports_celeb,@YaoMing,Vote for Budinger #SpriteSlam +02/26/2012,Sports_celeb,@YaoMing,RT @HoustonRockets: Aaaaaaaaahhhhhhh! Chaaaaasssse! Vote vote vote! #SpriteSlam Budinger +02/26/2012,Sports_celeb,@YaoMing,Budinger #SpriteSlam +02/26/2012,Sports_celeb,@YaoMing,Getting ready to vote Budinger #SpriteSlam +02/22/2012,Sports_celeb,@YaoMing,Looks like Chase has an interesting dunk for the contest. Funny guy! http://t.co/xOBpuC5B +02/16/2012,Sports_celeb,@YaoMing,I'm excited to see my former teammate @CBudinger in the Dunk Contest. I've seen it. Chase can fly! http://t.co/JbaAb9vy +01/26/2012,Sports_celeb,@YaoMing,At the taping of the Chinese Lunar New Year television special http://t.co/zsB2PIQS +01/04/2012,Sports_celeb,@YaoMing,I am on the 2012 cover issue of GQ China http://t.co/UOl716B2 +11/29/2011,Sports_celeb,@YaoMing,Happy that the website http://t.co/z8pfUE9M and twitter page has launched for @YaoFamilyWines +11/28/2011,Sports_celeb,@YaoMing,"Very happy that my first bottle of wine helped raise 150,000 RMB (about $20,000) for Special Olympic http://t.co/ts75sd7n" +11/08/2011,Sports_celeb,@YaoMing,"I chose Jiaotong University instead of private tutors, because I want to feel the atmosphere on campus http://t.co/sBp5uky7" +10/21/2011,Sports_celeb,@YaoMing,RT @SHAQ: I'm wit the greatest center ever Yao ming http://t.co/RHJc52ix +10/21/2011,Sports_celeb,@YaoMing,Flying on board the first A380 airbus felt exceptionally comfortable and there was a lot of space for me http://t.co/N1c9BrXm +10/19/2011,Sports_celeb,@YaoMing,I had a great time at the China Open in Beijing watching the tennis http://t.co/Gh4Td4zi +10/17/2011,Sports_celeb,@YaoMing,I received the “Outstanding Contribution Award” at the 6th Annual China Top 10 Laureus Awards http://t.co/PXC1SVDe +10/10/2011,Sports_celeb,@YaoMing,Happy to hear California has banned shark fin soup http://t.co/tdKh0CSk +10/08/2011,Sports_celeb,@YaoMing,Sorry to hear about the passing of Steve Jobs. A great creative leader. http://t.co/e6654LhI +10/07/2011,Sports_celeb,@YaoMing,This is a picture of me in Australia learning about how pearls are made http://t.co/cKtrI91t +10/03/2011,Sports_celeb,@YaoMing,I attended the Cable Beach Invitational in Australia this weekend. It was a great combination of basketball and be http://t.co/cAF76sF6 +09/28/2011,Sports_celeb,@YaoMing,My friend Richard Branson is helping me with a campaign against eating shark fins in Shanghai this past weekend http://t.co/2wX7P9wB +09/26/2011,Sports_celeb,@YaoMing,Congratulations to the Chinese basketball team for qualifying for the 2012 London Olympics +08/22/2011,Sports_celeb,@YaoMing,I met Coach K today http://t.co/Fvoic5H +08/03/2011,Sports_celeb,@YaoMing,Me playing golf http://twitpic.com/60iwj4 +07/20/2011,Sports_celeb,@YaoMing,"Nine years ago I came to Houston as a young, tall, skinny player, and the entire city and the team changed me to a grown man. Thank you." +07/20/2011,Sports_celeb,@YaoMing,"Special thanks to my friends overseas, especially to fans in Houston. I would like to thank you for giving me great nine years." +07/19/2011,Sports_celeb,@YaoMing,My press conference will air on @NBATV tonight at 2am ET/ 11pm PT. Tune in! +06/04/2011,Sports_celeb,@YaoMing,Congratulations to Li Na for making history today at the French Open +06/02/2011,Sports_celeb,@YaoMing,Congratulations to @Shaq on an incredible career. He was a great champion and player. I wish him success and happiness. +05/19/2011,Sports_celeb,@YaoMing,Me and the Loyd family at Hunters Creek Elementary. It was a great visit. http://twitpic.com/4zqy9d +05/17/2011,Sports_celeb,@YaoMing,"RT @RocketsJCF: Video: A Houston-area student wins at show-and-tell, brings Yao Ming to school for the day: http://on.nba.com/j56uid" +05/12/2011,Sports_celeb,@YaoMing,Pictures from the @WildAid PSA shoot and gala http://on.fb.me/lWGwGu +05/10/2011,Sports_celeb,@YaoMing,My @WildAid award. I had a great time at their event. http://twitpic.com/4w0j5i +05/07/2011,Sports_celeb,@YaoMing,"My agent Bill Duffy feeding ""Beans"" the Oakville heifer who loves tortillas http://twitpic.com/4ur7b9" +05/06/2011,Sports_celeb,@YaoMing,"Hey @leodicaprio, sorry I missed you at the @WildAid event last night. I hear you do lots of great work with them." +05/05/2011,Sports_celeb,@YaoMing,Talking with public radio on the subject of shark fin soup. http://twitpic.com/4tttgr +05/05/2011,Sports_celeb,@YaoMing,Back in the US. I am looking forward to attending the Wild Aid function tonight. I continue to enjoy working with them. +03/31/2011,Sports_celeb,@YaoMing,I went to @jordanchill43 and Chase's bowling event. It was a great event for the kids http://twitpic.com/4fddr8 +03/23/2011,Sports_celeb,@YaoMing,I had a video shoot today in Houston http://twitpic.com/4cj9gs +03/21/2011,Sports_celeb,@YaoMing,Congratulations to Kyle for winning player of the week. Well deserved +03/01/2011,Sports_celeb,@YaoMing,Welcome to all the new Rockets +02/03/2011,Sports_celeb,@YaoMing,Happy Chinese New Year 新年快樂! http://on.fb.me/hQwjr8 +01/28/2011,Sports_celeb,@YaoMing,Its an honor to be voted as a starter for the All-Star Game. I would like to thank everyone who has supported me as I continue to rehab +12/15/2010,Sports_celeb,@YaoMing,"Im waiting for the green light, but I won't push the trainer or the doctor. They are finding the best way for me to get back on the court" +10/01/2010,Sports_celeb,@YaoMing,It's our 5th day in Austin. I practiced about the same time today I've been doing all week. Now at the hotel. Sat. is last Austin practice +09/29/2010,Sports_celeb,@YaoMing,"Back at the hotel now after today's workout with the team. I went about halfway through the scrimmage, which is normal." +09/10/2010,Sports_celeb,@YaoMing,Just got done with my workout. Meeting with trainer now. Training camp starts in about 2 weeks. Looking forward to those workouts. +08/20/2010,Sports_celeb,@YaoMing,Videos posted from the charity tour late last month. Great highlights. Thanks to all who made the tour a success. http://facebook.com/yao +08/04/2010,Sports_celeb,@YaoMing,Video working out last week in Taipei shooting baskets on the court. http://youtu.be/g4FcNGovnqo +07/01/2010,Sports_celeb,@YaoMing,"@ChrisBosh, Hey Chris, hopefully you'll play with us (Rockets) next season. I'll be healthy and I'd really look forward to playing together" +06/29/2010,Sports_celeb,@YaoMing,Video of Yao interview after announcing today he won't opt out of contract and will remain a Rocket next season: http://bit.ly/9WmB5r +06/26/2010,Sports_celeb,@YaoMing,I'm still working out 5 days a week. I'm running on a real treadmill 20-30 minutes each time. I don't need the Alter-G treadmill any more. +06/18/2010,Sports_celeb,@YaoMing,I watched Game 7 last night. Unbelievable series. I am happy for Ron having a great year. Hopefully next year it will be us in Houston. +05/22/2010,Sports_celeb,@YaoMing,Happy to announce the arrival of our daughter. This is a very special moment in our lives. We thank everyone for their kindness and support. +05/07/2010,Sports_celeb,@YaoMing,"I worked out at Toyota Center this morning. Luis Scola and Jermaine Taylor were in there, too. http://twitpic.com/1ludd4" +04/24/2010,Sports_celeb,@YaoMing,Congrats to Aaron Brooks for winning the Most Improved Player Award. You deserved it. Thanks for your effort this season. +04/11/2010,Sports_celeb,@YaoMing,"...I am very proud of my players and their efforts. We have great fans, a great city, and I am already looking forward again to next season." +04/11/2010,Sports_celeb,@YaoMing,Congrats to the Guangdong Tigers for their series win over my Sharks today. They showed everyone they are a great team... +02/07/2010,Sports_celeb,@YaoMing,"I'm packing today. Flying to China early Monday for Chinese New Year, my first time back for it since signing w/Rockets. I'm back late Feb." +02/06/2010,Sports_celeb,@YaoMing,"Welcome to the NBA Joey Dorsey! You looked great last night in Memphis, your college town. 7 points, 12 rebounds and a block in 19 minutes!" +01/31/2010,Sports_celeb,@YaoMing,"Sorry I've been silent for a few weeks. Back from China. In Houston for 10 more days. At Toyota Center for workout, then Suns game tonight." +12/11/2009,Sports_celeb,@YaoMing,"Today my Esquire interview about ""What I've learned"" was posted online. http://bit.ly/5DTmw8" +11/28/2009,Sports_celeb,@YaoMing,Please join me to stop discrimination of people with HIV and AIDS. http://bit.ly/70mdY0 +11/18/2009,Sports_celeb,@YaoMing,Yesterday I announced my Foundation and the Museum of Fine Arts will throw a celebrity gala on January 30th in Houston. http://bit.ly/3fpWjY +11/16/2009,Sports_celeb,@YaoMing,A great win against the Lakers tonight in LA. I'm very proud of my teammates. Go Rockets! +11/15/2009,Sports_celeb,@YaoMing,"I hear Obama is in Shanghai, my hometown. Welcome to China. Hope you enjoy. Like NYC, the best food is sold on streets (I know u r busy tho)" +11/13/2009,Sports_celeb,@YaoMing,"George Bush (the father) lives in Houston. He gave me his book ""China Diary"" from his time there. It's good. My first English book to read." +11/08/2009,Sports_celeb,@YaoMing,I signed the new Rocket jerseys yesterday at Toyota Center. Good to see the fans. Thanks for coming out. My foot is feeling better every day +10/30/2009,Sports_celeb,@YaoMing,This afternoon I met with John from YaoMingMania. Tomorrow I will be at Houston's home opener at Toyota Center against Portland. +10/27/2009,Sports_celeb,@YaoMing,"I like David Andersen, our new center. We played each other in international games.I think he will fit Coach Adelman's style very well." +06/27/2018,Sports_celeb,@rogerfederer,🔙 at @Wimbledon 🎾 https://t.co/NkavzmjDOO +06/26/2018,Sports_celeb,@rogerfederer,RT @BelindaBencic: Team Switzerland is back 🇨🇭 Can’t wait to play @HopmanCup again with @RogerFederer in @WesternAustralia #HopmanCup #just… +06/18/2018,Sports_celeb,@rogerfederer,RT @GERRYWEBERWORLD: Bitte direkt zu uns! 😃Wir und die Zuschauer freuen sich schon riesig. 🎉#gwo #gerryweberopen https://t.co/L9gpZaXAnI +06/18/2018,Sports_celeb,@rogerfederer,"Where shall I go? +😄 https://t.co/vRFn7SnKT5" +06/17/2018,Sports_celeb,@rogerfederer,😄 https://t.co/aphf69Yqtv +06/17/2018,Sports_celeb,@rogerfederer,Thank you 🙏 https://t.co/G9ACJrPjqf +06/17/2018,Sports_celeb,@rogerfederer,"RT @AdvFederer: He’s commenting! +He’s retweeting! +This is not a drill, people! GO! GO! GO! #RogerFederer @rogerfederer https://t.co/hzkwEXr…" +06/17/2018,Sports_celeb,@rogerfederer,Unlucky? https://t.co/FPGLG8AkNR +06/17/2018,Sports_celeb,@rogerfederer,"RT @tugcege: @rogerfederer He’s a father of four, I don’t think he’d do something that would put his or anyone else’s life at risk." +06/17/2018,Sports_celeb,@rogerfederer,RT @tesssjimmie: @rogerfederer Waiting impatiently for you in Halle #RFmatchingshirts https://t.co/F8rE7ggLrh +06/17/2018,Sports_celeb,@rogerfederer,RT @Pollyannina: @rogerfederer Did you see three girls who waved at you like crazy and hitchhiked when you left? 🧚🏼‍♀️🧚🏼‍♀️🧚🏼‍♀️👋🏻👍🏻💚🎾🔙🔛🔝🏆@… +06/17/2018,Sports_celeb,@rogerfederer,No speed limit in Germany in some places 😋 https://t.co/IEq3ECz0kG +06/17/2018,Sports_celeb,@rogerfederer,"RT @TennisMajesty: @rogerfederer Going by the blurry trees out the window, it looks like you’re driving over the speed limit Rog. 😏🤣" +06/17/2018,Sports_celeb,@rogerfederer,🤨 https://t.co/UKbsUzbUMB +06/17/2018,Sports_celeb,@rogerfederer,"Made it back home on time +⚡️🏎💨 +to watch 🇨🇭 vs 🇧🇷 +Great effort team Switzerland, +good luck Brazil for the rest o… https://t.co/iwSwNIzUF7" +06/17/2018,Sports_celeb,@rogerfederer,"So happy! +Thank you Stuttgart ❤️ https://t.co/zdL3AcRK99" +06/17/2018,Sports_celeb,@rogerfederer,Good day 🇨🇭 +06/16/2018,Sports_celeb,@rogerfederer,🔙🔛🔝 https://t.co/lr5zWpmF0U +06/16/2018,Sports_celeb,@rogerfederer,big day 🙌🏼🎈 https://t.co/wgzivEq0Sv +06/12/2018,Sports_celeb,@rogerfederer,@Biryukova15 Those things I knew! +06/12/2018,Sports_celeb,@rogerfederer,finally he is out of the house https://t.co/PhNIjs7FgX +06/12/2018,Sports_celeb,@rogerfederer,@fedangels1 can't wait for Thursday. Switzerland might win it 🧐 +06/12/2018,Sports_celeb,@rogerfederer,@Exposure_Sport chillaaaax +06/12/2018,Sports_celeb,@rogerfederer,@luca_sporting https://t.co/Pw5VN3icLu +06/12/2018,Sports_celeb,@rogerfederer,What did I miss? +06/12/2018,Sports_celeb,@rogerfederer,@swatifederer @Wimbledon @WimbledonRoof have you enjoyed your offseason? +06/12/2018,Sports_celeb,@rogerfederer,@fedangels1 @Wimbledon missed you all too! +06/12/2018,Sports_celeb,@rogerfederer,"RT @Wimbledon: After a second year of construction work, No.1 Court is ready for The Championships 2018 🙌 + +#Wimbledon https://t.co/HMrh2x18…" +04/27/2018,Sports_celeb,@rogerfederer,"RT @rogerfedererfdn: The film to the visit of Roger in Zambia during the last days. Great people, high emotions, true impact. +https://t.co/…" +04/26/2018,Sports_celeb,@rogerfederer,"👋 Zambia 🇿🇲 + +I enjoyed your beautiful country and meeting the amazing people here. Hope to return soon with the… https://t.co/CO5efJkfkD" +04/24/2018,Sports_celeb,@rogerfederer,"Learning the dance 🕺 moves here in Zambia 🇿🇲, while visiting community schools with the @rogerfedererfdn… https://t.co/xR47GWjxpO" +04/24/2018,Sports_celeb,@rogerfederer,"@rogerfedererfdn visit in Zambia 🇿🇲 +#educationempowers +👋 https://t.co/plV0O9pgA9" +04/24/2018,Sports_celeb,@rogerfederer,🤓 https://t.co/3M4B6ELY3k +04/23/2018,Sports_celeb,@rogerfederer,Very happy to be in Zambia 🇿🇲 working with the @rogerfedererfdn. It’s my first time here! https://t.co/SUKMnHwtQ7 +04/22/2018,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: Thank you for hosting us. We look forward to further collaboration in accelerating acces to early childhood education… +04/20/2018,Sports_celeb,@rogerfederer,"Thank you for the kind words, @BillGates. Honored. @TIME https://t.co/eGmBhS3NZv" +03/23/2018,Sports_celeb,@rogerfederer,Loved being in Chicago and can’t wait to return for the @LaverCup in September... Hope you can join me there. Ticke… https://t.co/HquTuv1f4r +03/21/2018,Sports_celeb,@rogerfederer,"RT @rogerfedererfdn: Roger besucht Kinder des Programms ""Empowerment"", ein Förderfond für ausserschulische Bildung der Winterhilfe. Jedes 1…" +03/20/2018,Sports_celeb,@rogerfederer,"RT @ScottiePippen: Welcoming @NickKyrgios and the GOAT @rogerfederer to Chicago and the @UnitedCenter, home of this year’s #LaverCup 🎾 http…" +03/19/2018,Sports_celeb,@rogerfederer,Good Morning Chicago! The countdown to the #LaverCup 2018 starts here! Follow the action live on Twitter and Perisc… https://t.co/UOZLgbO74I +03/19/2018,Sports_celeb,@rogerfederer,"What a battle today. Congrats on a fantastic tournament and match, @delpotrojuan https://t.co/bqf4LyL1B8" +03/17/2018,Sports_celeb,@rogerfederer,@maya_iyer 💐 +03/17/2018,Sports_celeb,@rogerfederer,@maya_iyer https://t.co/aJ47jn5JmC +03/17/2018,Sports_celeb,@rogerfederer,@Exposure_Sport https://t.co/tzaqLTkJqN +03/17/2018,Sports_celeb,@rogerfederer,@TrueNorth4 @BNPPARIBASOPEN Thanks for coming! 🙏🏼 +03/17/2018,Sports_celeb,@rogerfederer,Thanks Rocket 🚀! https://t.co/3emo6dhOug +03/17/2018,Sports_celeb,@rogerfederer,17-0! So thrilled to have fought my way into the finals at @BNPPARIBASOPEN 💪🏻😅 https://t.co/otsiZr97g8 +03/17/2018,Sports_celeb,@rogerfederer,Are you ready for Chicago😉💯🔝?@nickkyrgios @rodlaver #LaverCup #TeamEurope https://t.co/Izp2UasglU +03/15/2018,Sports_celeb,@rogerfederer,@vynndawg you're welcome! +03/15/2018,Sports_celeb,@rogerfederer,@naveenbaskaran7 are you still fed up? 🙂 +03/15/2018,Sports_celeb,@rogerfederer,@madhuchak No +03/15/2018,Sports_celeb,@rogerfederer,"RT @counterfeitaura: ┏┓ +┃┃╱╲ in this +┃╱╱╲╲ house +╱╱╭╮╲╲ we +▔▏┗┛▕▔ +╱▔▔▔▔▔▔▔▔▔▔╲ + love and support + @rogerfederer +╱╱┏┳┓╭╮┏┳┓ ╲╲…" +03/15/2018,Sports_celeb,@rogerfederer,@antonellaf70 https://t.co/jH9NlANmj2 +03/15/2018,Sports_celeb,@rogerfederer,@beafabregas Chilllaaaax +03/15/2018,Sports_celeb,@rogerfederer,RT @nnniicole: Staying up late has its perks... like watching @rogerfederer interact with his fans in real time 😭 https://t.co/A2Y11lxUPJ +03/15/2018,Sports_celeb,@rogerfederer,"I'm on the massage table.. so, close! https://t.co/UcFrF8F4pQ" +03/15/2018,Sports_celeb,@rogerfederer,RT @rand_luu: I would say @rogerfederer is a legend on Twitter with how he interacts with his fans. 🐐 +03/15/2018,Sports_celeb,@rogerfederer,@ClaytonHoffard Now you need some more things for your list! +03/15/2018,Sports_celeb,@rogerfederer,@lodotennis https://t.co/PAueLUxFl3 +03/15/2018,Sports_celeb,@rogerfederer,Good to know. I've never had deep dish 🍕 What's the best place to try in Chicago? https://t.co/nHlzIB8Luf +03/15/2018,Sports_celeb,@rogerfederer,@SaraParetsky Thank you for the recommendations! +03/15/2018,Sports_celeb,@rogerfederer,@QuienTengaOidos 😳 +03/15/2018,Sports_celeb,@rogerfederer,@rhondaygans Thanks for the suggestions! +03/15/2018,Sports_celeb,@rogerfederer,@DCaramanidis Tell me more https://t.co/5CU4qgAjaM +03/15/2018,Sports_celeb,@rogerfederer,@dianne9m @lincolnparkzoo Good idea! +03/15/2018,Sports_celeb,@rogerfederer,@mari_moraes_rs From where do you recommend? +03/15/2018,Sports_celeb,@rogerfederer,Can’t wait to visit #Chicago for the first time next week. What shall I do while I am in town? #LaverCup 🤔 https://t.co/OMFSu04mXK +03/13/2018,Sports_celeb,@rogerfederer,@NateCourtright 🙃 +03/13/2018,Sports_celeb,@rogerfederer,@nnniicole Thank you! +03/13/2018,Sports_celeb,@rogerfederer,@TenistaDeSanz https://t.co/ptaQnaWIJi +03/13/2018,Sports_celeb,@rogerfederer,RT @eriq_spin: @rogerfederer liking and replying to fans tweets at 10pm has me like https://t.co/8ARvNbW9rv +03/13/2018,Sports_celeb,@rogerfederer,@neerajrd19 engineering isn't dull! you build things from scratch 🤯 +03/13/2018,Sports_celeb,@rogerfederer,@mikhailara Nice 📸! +03/13/2018,Sports_celeb,@rogerfederer,@KasiTennis Thanks for watching! +03/13/2018,Sports_celeb,@rogerfederer,Gotta stay on your toes 😋 https://t.co/6fZuOqYNta +03/13/2018,Sports_celeb,@rogerfederer,Had a nice day at the office with no ☔️ and all ☀ https://t.co/8puTjgh377 +03/12/2018,Sports_celeb,@rogerfederer,1⃣0⃣th🌴🌌🎾🌧☔🙅🏻‍♂🍝😴1⃣1⃣th🌄🎾🌞🙌🏼🏁 +03/11/2018,Sports_celeb,@rogerfederer,1️⃣2️⃣ million 🙏🏼 https://t.co/OmNtNBl5nr +03/11/2018,Sports_celeb,@rogerfederer,"RT @BNPPARIBASOPEN: When life gives you a rain delay… + +Tweet a video of @RogerFederer playing art critic with a batch of miniature (and ad…" +03/09/2018,Sports_celeb,@rogerfederer,👑 @TommyHaas13 https://t.co/w6nHrwvQK4 +03/07/2018,Sports_celeb,@rogerfederer,RT @BillGates: Most people know @rogerfederer as one of the greatest tennis players of all time. But his work off the court is also impress… +03/06/2018,Sports_celeb,@rogerfederer,About to go on #MatchforAfrica https://t.co/u0MTB2CNCd +03/06/2018,Sports_celeb,@rogerfederer,Carbo loading before #MatchForAfrica https://t.co/FvwNJkMroe +03/05/2018,Sports_celeb,@rogerfederer,Was great to sit down with @BillGates and @SavannahGuthrie to talk about why #MatchforAfrica is so important to us.… https://t.co/5aXYsdZZCU +03/05/2018,Sports_celeb,@rogerfederer,RT @TODAYshow: We can't wait to watch @savannahguthrie and @JackSock take on @rogerfederer and @billgates in the #MatchforAfrica! https://t… +03/01/2018,Sports_celeb,@rogerfederer,Oh hey @SavannahGuthrie. See you guys on the court! #YouCantSeeMe #MatchForAfrica https://t.co/FJDZZb2UCe +02/26/2018,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: We made an effort to present the new Roger Federer Foundation Annual Report 2017 as early as possible. Have a look and… +02/24/2018,Sports_celeb,@rogerfederer,⛷🇨🇭🥇🤩🤩🤩🤩🤩 https://t.co/OOLMNJzcvX +02/24/2018,Sports_celeb,@rogerfederer,🏂🇨🇭🥇🎇🎆🎇🎆🎇 https://t.co/94Raa8YEI6 +02/23/2018,Sports_celeb,@rogerfederer,🥌 🇨🇭 🥉 🍾https://t.co/wqyOEvupep +02/23/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥉👊💥 https://t.co/FWTXi2cdQt +02/23/2018,Sports_celeb,@rogerfederer,Excited to be heading to Monaco for the @LaureusSport Awards! Good luck to all the Nominees 💪 see you next week 😃 #Laureus18 +02/22/2018,Sports_celeb,@rogerfederer,"🎿🇨🇭🥇🤩 Michelle 🎯 +🎿🇨🇭🥉😃 Wendy 🥂 + https://t.co/t2PtDinlvi" +02/22/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈🕺👍 https://t.co/6rPhYOog2x +02/21/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈Cmoooon 👊💥 https://t.co/N9pchngfR2 +02/18/2018,Sports_celeb,@rogerfederer,😂 https://t.co/nvP1IMWXP2 +02/18/2018,Sports_celeb,@rogerfederer,@GoldenChild621 Thank you for coming! +02/18/2018,Sports_celeb,@rogerfederer,Thank you Rotterdam! You broke the record for attendance.. 120k people! It was an amazing atmosphere 👊🏼👏🏼 https://t.co/yAVl8woRgH +02/17/2018,Sports_celeb,@rogerfederer,🤗 https://t.co/ifSCxR3vd8 +02/17/2018,Sports_celeb,@rogerfederer,🗣 magnifique 🇨🇭🥈😃 https://t.co/SLl2QSWU5j +02/17/2018,Sports_celeb,@rogerfederer,💪💪💪🇨🇭🤩🥇 https://t.co/g76JaN7EWg +02/17/2018,Sports_celeb,@rogerfederer,"It's been a long road, and sometimes windy, but feels surreal to be back at the top. I'm just happy to be healthy a… https://t.co/g0q4mIKI6f" +02/16/2018,Sports_celeb,@rogerfederer,Apparently I'm the oldest tennis player with a #1️⃣ ranking. Somebody might have mentioned that to me already but I… https://t.co/sZ3NFoddzk +02/16/2018,Sports_celeb,@rogerfederer,🇨🇭🥇 woooooow @dariocologna https://t.co/Nr79FCQ9lg +02/16/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈 @BeatFeuz yeaaaahhhhh https://t.co/53VlXTogYt +02/16/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥈💪 Congratulations Wendy https://t.co/MCiMrmx74Q +02/15/2018,Sports_celeb,@rogerfederer,🎿🇨🇭🥉Super Beat https://t.co/rtXBmE1OKO +02/13/2018,Sports_celeb,@rogerfederer,🥌 🇨🇭 🥈 Gratulation https://t.co/FXszdzAJ2E +02/01/2018,Sports_celeb,@rogerfederer,Thank you to all the amazing fans who greeted me and Norman🏆 back in 🇨🇭 https://t.co/Me5oqTcPzD +02/01/2018,Sports_celeb,@rogerfederer,"Thank you Australia for the support, the passion and all the epic memories. Can't wait until next year. #RF20… https://t.co/OvgXgKfHVp" +01/29/2018,Sports_celeb,@rogerfederer,Norman looks even more shiny in the daytime 🌞 #RF20 https://t.co/VzmAOpattj +01/29/2018,Sports_celeb,@rogerfederer,Norman joined us on the car ride home #NormanInTheTrunk #RF20 https://t.co/1SS1pVa8vB +01/29/2018,Sports_celeb,@rogerfederer,"Seve, me & Norman 🏆 #RF20 https://t.co/PG1cBzeTrK" +01/29/2018,Sports_celeb,@rogerfederer,My first moment reunited with the family & team after last night #RF20 https://t.co/ZAPQ4NmcnG +01/28/2018,Sports_celeb,@rogerfederer,Going to sleep well tonight. Thank you to everyone for the love and support. It means more than I could possible de… https://t.co/nGhjs88dl8 +01/28/2018,Sports_celeb,@rogerfederer,🏆20. ❤️ https://t.co/WqUiSo3fd5 +01/25/2018,Sports_celeb,@rogerfederer,"I noticed the ball went out but yes, very intimidating @SavannahGuthrie 😉 .. @BillGates and I will be ready with ou… https://t.co/tJZUDYD9pf" +01/22/2018,Sports_celeb,@rogerfederer,enjoyed my match in outer space yesterday 🌌😳 https://t.co/EXzemd2Rlo +01/21/2018,Sports_celeb,@rogerfederer,Post match smolderview 🤨 https://t.co/xW80lFBk1X +01/21/2018,Sports_celeb,@rogerfederer,🙌🏻 https://t.co/9RreCC3cVO +01/21/2018,Sports_celeb,@rogerfederer,"Thanks, skydiverer https://t.co/kAXud4bxIj" +01/17/2018,Sports_celeb,@rogerfederer,#SmoldeRF @TheRock https://t.co/WHXlSE6UWp +01/16/2018,Sports_celeb,@rogerfederer,"Great to see you back +#Stanimal 💪👊 + https://t.co/VAQoi7m6Kc" +01/16/2018,Sports_celeb,@rogerfederer,🤔 https://t.co/mFaavI4hyX +01/16/2018,Sports_celeb,@rogerfederer,😳 wow https://t.co/zgWzi2gmik +01/16/2018,Sports_celeb,@rogerfederer,😉 https://t.co/DAkwabNoe9 +01/16/2018,Sports_celeb,@rogerfederer,"Being back on Rod Laver Arena was so nice after last year, Thank you 🙏🏼 https://t.co/deWFYFtvWF" +01/15/2018,Sports_celeb,@rogerfederer,@CrackedRacquets 😂 so good +01/15/2018,Sports_celeb,@rogerfederer,@ajshaheed 😂👏 +01/15/2018,Sports_celeb,@rogerfederer,@Benji9588 🦇 +01/15/2018,Sports_celeb,@rogerfederer,@kiran_aravelli 👏😳 +01/15/2018,Sports_celeb,@rogerfederer,Paging @RealHughJackman https://t.co/KmQH9UzHJt +01/15/2018,Sports_celeb,@rogerfederer,@NYC212516 👏 +01/15/2018,Sports_celeb,@rogerfederer,RT @brohit_98: @rogerfederer Captain Roger Federer #PhotoshopRF https://t.co/T0odUYOVm4 +01/15/2018,Sports_celeb,@rogerfederer,😂 https://t.co/wnk6yzKHt2 +01/15/2018,Sports_celeb,@rogerfederer,I doubt that... but let's give it a shot.. been awhile since the last #PhotoshopRF. Let's see your best/funniest ph… https://t.co/JSzAdjEjwt +01/14/2018,Sports_celeb,@rogerfederer,🐜🕷🇨🇭🕸🔨 https://t.co/zvy6itZoDm +01/14/2018,Sports_celeb,@rogerfederer,@ItsOana https://t.co/bm8RkFM7Cn +01/14/2018,Sports_celeb,@rogerfederer,@Ashish__TV https://t.co/QgwSxsCqkL +01/14/2018,Sports_celeb,@rogerfederer,Hey Spiderman can you string my racket? 🕸🎾 https://t.co/UUjiPkNotu +01/14/2018,Sports_celeb,@rogerfederer,Getting ready to ruuuumble for the @AustralianOpen https://t.co/YzkRfhz8ry +01/12/2018,Sports_celeb,@rogerfederer,"Hey @TheRock, am I doing the ""Smoldering Intensity"" right? 🤔 https://t.co/5A5ILEXYNK" +01/11/2018,Sports_celeb,@rogerfederer,RT @AustralianOpen: An exclusive look into a pre-tournament video shoot with our five-time champion @rogerfederer.#AusOpen https://t.co/f8G… +01/06/2018,Sports_celeb,@rogerfederer,"RT @CoryKarma: Team Switzerland 🇨🇭🎾🇨🇭 + +@rogerfederer @BelindaBencic + +#HopmanCup 🏆 https://t.co/TqaHMgtmZU" +01/06/2018,Sports_celeb,@rogerfederer,"Thank you Perth +#Thank you @BelindaBencic +Great week, it was so much fun. +You played phenomenal 🇨🇭🎾👊🏼 https://t.co/fSgLSsFkox" +01/06/2018,Sports_celeb,@rogerfederer,"Selfie time +😉 https://t.co/mHbJWITq0q" +01/06/2018,Sports_celeb,@rogerfederer,RT @FanOfBencic: Congrats @BelindaBencic @rogerfederer !! #Benderer 🇨🇭🙌🏻😍#HopmanCup https://t.co/xjsEOXEQ1q +01/06/2018,Sports_celeb,@rogerfederer,RT @FanOfBencic: HOPMAN CUP CHAMPIONS🇨🇭🙌🏻🙌🏻🙌🏻 #BENDERER https://t.co/Fi1Elt4mcB +01/04/2018,Sports_celeb,@rogerfederer,"Jumping into the finals like.... +@BelindaBencic +@hopmancup +#Benderer +🎾🇨🇭 https://t.co/L9ftI8lCPO" +01/02/2018,Sports_celeb,@rogerfederer,"Great match +Super partner +🎾🇨🇭 https://t.co/NKzFhcwmJW" +01/02/2018,Sports_celeb,@rogerfederer,Gotcha ☝️😉 https://t.co/et1SkoggPc +01/02/2018,Sports_celeb,@rogerfederer,Classic 😂🤣https://t.co/UmEVn7FmVl +01/02/2018,Sports_celeb,@rogerfederer,RT @7tennis: Not many shots leave @rogerfederer like 😮 but this one certainly did. Simply amazing @NastiaPav!! #HopmanCup https://t.co/7ZQX… +12/31/2017,Sports_celeb,@rogerfederer,RT @BelindaBencic: Happy New Year from Perth! #benderer 🇨🇭 https://t.co/Gct4okj02q +12/31/2017,Sports_celeb,@rogerfederer,"Happy new year from Perth everyone, 2017 was unreal. 2018 here we come. +🎇🎆 https://t.co/nFtTfNlpjQ" +12/30/2017,Sports_celeb,@rogerfederer,"Ha! + https://t.co/t02gOLJKNi" +12/29/2017,Sports_celeb,@rogerfederer,"Team Swiss 🇨🇭 +🧀 🐮🍫🏔🕰 +#benderer https://t.co/Kv0wyMA4oJ" +12/29/2017,Sports_celeb,@rogerfederer,"1h practice from 5-6pm + https://t.co/yQ14cxJlB9" +12/28/2017,Sports_celeb,@rogerfederer,"Great to be back in Perth, +See you tomorrow at 5pm +🎾 https://t.co/YeLT1SJ8UK" +12/28/2017,Sports_celeb,@rogerfederer,🏖 https://t.co/ZvqtRajRj9 +12/28/2017,Sports_celeb,@rogerfederer,"Meet my new furry friend. +So happy to be back down under 🙃#HappyQuokka @westernaustralia #justanotherdayinWA https://t.co/YvgdMCs13u" +12/28/2017,Sports_celeb,@rogerfederer,My first day cooking. See how I did… 🎾 ➡️ 🍅 #MastersOfPasta 🍝 @Barilla @davideoldanido #ad https://t.co/dFo3ht9vx8 +12/27/2017,Sports_celeb,@rogerfederer,Thanks for taking the time to put this together 🙌🏻 https://t.co/Scp3ZIaipq +12/10/2017,Sports_celeb,@rogerfederer,"Congratulations on coach of the year in Switzerland 🇨🇭, So well deserved, lucky 🍀 to have you on my team. You’ve be… https://t.co/CyNlisQaEy" +12/10/2017,Sports_celeb,@rogerfederer,So honored to have won this award. Sharing this with my entire team.. I wouldn’t be where I am and who I am without… https://t.co/wO5rOcijIO +12/09/2017,Sports_celeb,@rogerfederer,Honored to be nominated for the @CreditSuisse Swiss Sports person of 2017 🇨🇭🥇🥈🥉 ⚽🎾🏒🥅🚵🏻 🎿 https://t.co/Cljei207QJ +12/07/2017,Sports_celeb,@rogerfederer,"Gym time +🏋️ 💦 https://t.co/9Z0s9Nvsi0" +12/06/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: How can children learn when they are constantly hungry? School feeding is crucial in particular for younger children.… +11/23/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: All Children have a Right To Education. This is our obligation. The @rogerfedererfdn has almost reached one million ch… +11/22/2017,Sports_celeb,@rogerfederer,"Words can’t possibly describe this incredible moment for this club, wow!!!! +Congrats to the team 🎉 +https://t.co/qvEOCHoSmN" +11/12/2017,Sports_celeb,@rogerfederer,Next time... 🍑🎯 https://t.co/vZh9UbXAAw +11/10/2017,Sports_celeb,@rogerfederer,Press day at the @ATPWorldTour Finals 💃 https://t.co/3EeC7oEIvV +11/10/2017,Sports_celeb,@rogerfederer,I’ll have my revenge! 🧛‍♂️ https://t.co/h3NcXTmvo9 +11/08/2017,Sports_celeb,@rogerfederer,Starting on Sunday @ 2pm vs Jack Sock +11/08/2017,Sports_celeb,@rogerfederer,Ready? 🎾 https://t.co/rfJbOuonTt +11/07/2017,Sports_celeb,@rogerfederer,Great to see you back on court @andy_murray .. thanks for having me in Glasgow https://t.co/PNdMmibrqF +11/07/2017,Sports_celeb,@rogerfederer,"RT @Ashish__TV: Roger Federer's 1HBH, but in a kilt. + +#AndyMurrayLive https://t.co/apNt9jkxMN" +11/07/2017,Sports_celeb,@rogerfederer,Kilterer 💪🏼 https://t.co/yVqvrmq9od +11/07/2017,Sports_celeb,@rogerfederer,@andy_murray Can’t get a warmer welcome than this. Thanks @andy_murray ... is this your usual pre-match routine? 🍪 https://t.co/mWntwqvDPA +11/07/2017,Sports_celeb,@rogerfederer,In Glasgow for the evening to play in @andy_murray’s charity match. Scotland is beautiful even from the air! https://t.co/ueLU2FLBqr +10/29/2017,Sports_celeb,@rogerfederer,8 is gr8 🏆💪🏼 https://t.co/pWmMjFQARE +10/20/2017,Sports_celeb,@rogerfederer,"Basel ❤️ +So happy to be back in 🇨🇭 +Here with my man the MC @mchiudinelli33 https://t.co/mU6U4aPGZC" +10/15/2017,Sports_celeb,@rogerfederer,What a wild week here in Shanghai. Thanks to all the fans and the tournament and staff for making it so special ✌🏻❤️ https://t.co/jVWxtnh0pD +10/15/2017,Sports_celeb,@rogerfederer,🇨🇳🏆😘 https://t.co/T31a6xthSf +10/13/2017,Sports_celeb,@rogerfederer,Sounds like a challenge to me @KlayThompson 😉 https://t.co/5ZhDBe5JN1 +10/13/2017,Sports_celeb,@rogerfederer,"RT @SoleCollector: #SoleWatch: @RogerFederer wearing the ""Atmos"" NikeCourt Zoom Vapor RF x AJ3 in Shanghai. https://t.co/mBX6GRAlWi" +10/10/2017,Sports_celeb,@rogerfederer,@LaverCup @tomasberdych We’re already scheming against #TeamWorld for @lavercup in Chicago 😈 +10/10/2017,Sports_celeb,@rogerfederer,We all missed @LaverCup so much that we had to have a reunion in Shanghai 🇨🇳 ...@tomasberdych we saved you a seat! https://t.co/lnt2ixCDBi +10/09/2017,Sports_celeb,@rogerfederer,HardcoRFans 🙏❤️ https://t.co/hhH1rC2xD5 +10/09/2017,Sports_celeb,@rogerfederer,We’re basically the same height https://t.co/OX7XSmv6t8 +10/09/2017,Sports_celeb,@rogerfederer,"RT @NBA: Prior to today's #NBAChinaGames action in Shanghai, @RogerFederer visited with Golden State! (📹 @Warriors) https://t.co/G6AM9SKQO8" +10/05/2017,Sports_celeb,@rogerfederer,My kind of shoe delivery https://t.co/X6QBEp00LX +10/04/2017,Sports_celeb,@rogerfederer,Last visit to Tokyo was 11 years ago… excited to be back! 🇯🇵 🗼 https://t.co/fViAVKFFBq +10/04/2017,Sports_celeb,@rogerfederer,Japan! https://t.co/rYkwxqVyOq +10/03/2017,Sports_celeb,@rogerfederer,RT @rogerfedererfdn: To reach sustainability is our biggest challenge. Listen to Roger in the full version of the Foundation Talk https://… +09/28/2017,Sports_celeb,@rogerfederer,👔🎬🎥 https://t.co/OPLU5kILuy +09/27/2017,Sports_celeb,@rogerfederer,"Already can't wait until next year, in Chicago 2018. https://t.co/X5wNWumOw2" +09/27/2017,Sports_celeb,@rogerfederer,But we made it in the end! https://t.co/qBb4aSL2NA +09/27/2017,Sports_celeb,@rogerfederer,And some lows... https://t.co/gy89afDXok +06/26/2018,Sports_celeb,@KingJames,#JamesGang👑 More to come in a couple weeks at Nationals https://t.co/FwSMjHm2lF +04/14/2018,Sports_celeb,@KingJames,Preach “PrimeTime”! Once u understand that you’ll be better off. #Facts #HandleYourBusiness ✊🏾🙏🏾 https://t.co/YMwYp1m77d +04/10/2018,Sports_celeb,@KingJames,RT @FOXSportsOH: LeBron James becomes the only player in NBA history to win 10 straight division titles 👑 https://t.co/tNPkyc5TnY +04/10/2018,Sports_celeb,@KingJames,"RT @NBA: Power in #PhantomCam + +#AllForOne https://t.co/tXIHjCkVc1" +04/10/2018,Sports_celeb,@KingJames,All love and respect Young King 🤴🏾! Good luck with the draft and do work at the next level. 🙏🏾 https://t.co/E0lG7xXjbx +04/09/2018,Sports_celeb,@KingJames,"Just heard a new @jerreau track! SHEESH!! “Y’all big lame, probably run your own fan page. My wave man made and I a… https://t.co/YeYRWXuylg" +04/07/2018,Sports_celeb,@KingJames,@MikeMiller_13 Thanks my brother!!! 🙏🏾 +04/05/2018,Sports_celeb,@KingJames,Can’t wait to go see it! Wife and I be waiting so patiently. #HorrorHouseWeHave https://t.co/0R9Lg9om9B +04/05/2018,Sports_celeb,@KingJames,"RT @bycycle: LeBron’s documentary on the Civil Rights Movement debuts tonight. + +Another step toward a media empire. https://t.co/6DkHwbpNBT" +04/05/2018,Sports_celeb,@KingJames,Nick the Quick was a Animal out there! Go check the highlights +04/05/2018,Sports_celeb,@KingJames,🔥🔥🔥🔥🔥🔥🔥🔥. https://t.co/hdP1K0mSk5 +04/04/2018,Sports_celeb,@KingJames,Yes Tonight! Very important ✊🏾 https://t.co/VS6BWoaqgy +04/04/2018,Sports_celeb,@KingJames,"RT @SpringHillEnt: #MLK: ""Our lives begin to end the day we become silent about things that matter."" + +Today we honor Martin Luther King Jr.…" +04/04/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: ✨Lights 🎥 Camera 🎬Action! +Our 6th Graders are on and behind the scenes at our favorite news station @WKYC! Students ar…" +04/03/2018,Sports_celeb,@KingJames,I shed a tear or 2 every single time this episode comes on! Can’t help it🤷🏾‍♂️. I’ve had that same feeling my whole… https://t.co/adnMBfPKI6 +04/02/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: Dressed and ready to impress!💃Another successful PROM PROMISE hosted by Savannah. + +Each Prom PROMISE participant rece…" +04/02/2018,Sports_celeb,@KingJames,@verizon Yesssss!!! 👏🏾👏🏾 @Verizon the future is NOW! We’re on board 💪🏾🖥💻 @LJFamFoundation #IPS #WeAreFamily https://t.co/rZRQzwayjV +04/02/2018,Sports_celeb,@KingJames,Yes sir!! Best 🍕 pies in the world @BlazePizza. Congrats on your day too @QuavoStuntin! 🙏🏾 https://t.co/2nON8ujtLJ +04/01/2018,Sports_celeb,@KingJames,"RT @ComplexSneakers: Nike boys in Cleveland. + +@jtimberlake in the mismatched ‘Equality’ LeBron 15s and @kingjames is a Red PE of the ‘Prime…" +04/01/2018,Sports_celeb,@KingJames,"RT @jtimberlake: A MOMENT. Had no idea @kingjames was jumping on stage tonight. Thanks for celebrating with us, Cleveland...cheers! 🎥: http…" +04/01/2018,Sports_celeb,@KingJames,🏆🏆🏆🏆🏆🏆🏆🏆 Looks about right! #1 All-Time in Ohio for state championships. 🤷🏾‍♂️😜 #IrishPride🍀 https://t.co/46BzPzmbEX +04/01/2018,Sports_celeb,@KingJames,The reason I wore #9 at wideout in HS! Congrats Peter Warrick! https://t.co/IPwnnKggE5 +03/31/2018,Sports_celeb,@KingJames,So proud to announce this project and to partner with @stanleynelson1!! This story and their struggle feels more im… https://t.co/aiBWwY6Eec +03/31/2018,Sports_celeb,@KingJames,CONGRATS Codey!!!! #BlackBoyFly https://t.co/0Zi9ovtVbI +03/29/2018,Sports_celeb,@KingJames,And we now know that black boys need black men in their lives. Doesn't even need to their father. Thank you to ev… https://t.co/GU3lI12ZJy +03/29/2018,Sports_celeb,@KingJames,Everyone should take time to listen to this. Really deep look at what young black men go through. The idea that it'… https://t.co/zwDrt26nmt +03/28/2018,Sports_celeb,@KingJames,"RT @SpringHillEnt: Congrats to @OceanSky18, @KingJames, @mavcarter, @uninterrupted & @FS1 on the #SportsEmmy nomination for #89Blocks 🏆 htt…" +03/27/2018,Sports_celeb,@KingJames,👀🔥🔥🔥 https://t.co/Z09qqhJZY8 +03/26/2018,Sports_celeb,@KingJames,HAPPY #AirMaxDay!!! Which ones will I wear today 🤔🤷🏾‍♂️😁 +03/26/2018,Sports_celeb,@KingJames,Appreciate you @michaelstrahan!! 🙏🏾 Good to see you today and thanks for taking time to come watch me at work. Keep… https://t.co/7032p5OAaa +03/25/2018,Sports_celeb,@KingJames,RT @BonusSports: 💍💍BACK TO BACK State Champs!!! @STVMAthletics are the most Winningest School is Ohio History.. 8 Rings 😱🔥🔥 s/o to @CoachDr… +03/25/2018,Sports_celeb,@KingJames,@DruOnDemand @scottywaltz7 YES SIR Scott!! Congrats young fella. #CarryOnTradtition #BannerWalk #IrishPride +03/25/2018,Sports_celeb,@KingJames,EXTREMELY PROUD!!!! 🙏🏾 https://t.co/2KxyJs60gF +03/24/2018,Sports_celeb,@KingJames,SUPER GEEKED UP!!!! https://t.co/YB1R9bIQaH +03/24/2018,Sports_celeb,@KingJames,Carry On Tradition!! Congrats Boys and @CoachDruJoyce!!!! #IrishPridd 🏆🏆🏆🏆🏆🏆🏆🏆 https://t.co/BroJ0t2m79 +03/24/2018,Sports_celeb,@KingJames,#MarchForOurLives Salute the youth making a REAL impact!! ❤️❤️ +03/23/2018,Sports_celeb,@KingJames,Well guess what the inner #IrishPride woke me up 2 mins before tipoff anyways! Let’s go Irish ☘️ https://t.co/GRWrljzw8B +03/21/2018,Sports_celeb,@KingJames,🙈😵 https://t.co/YQpxQ6HGj4 +03/21/2018,Sports_celeb,@KingJames,That’s exactly the face! 😁👍🏾 https://t.co/AIuXIF4AQV +03/19/2018,Sports_celeb,@KingJames,Super Throwback. Same mindset as when I was a teenager though! #StriveForGreatness🚀 https://t.co/D79KA9VfUP +03/19/2018,Sports_celeb,@KingJames,@timelesssports_ What y’all missing is how gangster he was to even take 28 FGA’s after taking off a year and a half. Straight savage!! +03/19/2018,Sports_celeb,@KingJames,Absolutely FACTS!! The whole squad!! The original true blue ones with icy outsoles. Congrats @Iam1Cent. https://t.co/ajEkGbvhAs +03/19/2018,Sports_celeb,@KingJames,Good luck boys!! Carry On Tradition #bannerchasers #GoIrish🍀🍀 https://t.co/JEz2126c00 +03/19/2018,Sports_celeb,@KingJames,"Well for the younger generation who missed out, I feel for you but guess what!?!? I’m bringing it back to the big s… https://t.co/TvuYomddrs" +03/17/2018,Sports_celeb,@KingJames,That’s all we know!! 🍀🍀 #bannerchasers #GoIrish https://t.co/fdLY859X2x +03/16/2018,Sports_celeb,@KingJames,@BlazePizza Well that’s the real question. 🤔Maybe do 2 pies. The usual and something too to try out. +03/16/2018,Sports_celeb,@KingJames,Just got to Chicago and @BlazePizza sounds so amazing to me right now! May have to make a stop in there! 🍕 🍕 +03/16/2018,Sports_celeb,@KingJames,😭😭😭😭😭 at my crazy teammates!! Luckily we didn’t get a technical for being on the court! https://t.co/SY8Z87TgJ9 +03/16/2018,Sports_celeb,@KingJames,👀🤦🏾‍♂️💪🏾😤🤷🏾‍♂️🙏🏾👑 https://t.co/DINaYlCTqi +03/14/2018,Sports_celeb,@KingJames,Helleva career @joethomas73!!! Next stop Canton for you brother!! 🧥 https://t.co/QtoT0DKUwP +03/14/2018,Sports_celeb,@KingJames,@CassidyHubbarth @joevardon @clevelanddotcom @FSOAllieOop Damn right she gone kill it! Super excited for her and Al… https://t.co/ZkNK14aneN +03/14/2018,Sports_celeb,@KingJames,🤦🏾‍♂️Don’t know what the hell he was thinking!! 🤔Well actually he wasn’t thinking. 🤷🏾‍♂️ #YallWannaSeeADeadBody https://t.co/2lGdH1jRoO +03/12/2018,Sports_celeb,@KingJames,🔥☝🏾💪🏾 #Vinsanity!!! https://t.co/wiXFzM1oLY +03/11/2018,Sports_celeb,@KingJames,👌🏾 #BronnyYoungKing🤴🏾 #JamesGang👑 https://t.co/7zvGeFwvz8 +03/10/2018,Sports_celeb,@KingJames,👀👀👀🔥🔥🔥🔥👑👑👑 https://t.co/sYCqBmMHql +03/09/2018,Sports_celeb,@KingJames,"Definitely not going today without saying #HappyInternationalWomensDay!! Thank you for being loving, caring, powerf… https://t.co/6hoXSs4pLe" +03/09/2018,Sports_celeb,@KingJames,Prayers sent to you right now and up Jalen Brown!!!! Glad to see you walk off on your own 🙏🏾 +03/08/2018,Sports_celeb,@KingJames,Yo @Royceda59!!!!! No more freestyles man! People gotta pay for those bars! @funkflex it’s your fault! SHEESH 🔥🔥🔥🔥🔥🔥🔥 +03/07/2018,Sports_celeb,@KingJames,Congrats bro on passing the Logo on the All-Time scoring list!! @carmeloanthony +03/06/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: From Akron ➡️ Austin, we love talking about how incredible our kids are anywhere we go. Today, we did just that at @SX…" +03/06/2018,Sports_celeb,@KingJames,You’re even more powerful now than ever before @kevinlove!!! Salute and respect brother! ✊🏾💪🏾🙏🏾 https://t.co/6nL6WoZMCm +03/05/2018,Sports_celeb,@KingJames,#JamesGang👑 Plus they won the whole thing too! https://t.co/Z4TEsZlosO +03/05/2018,Sports_celeb,@KingJames,Congrats!!! Loved “Get Out”!! Keep it going 🙏🏾 https://t.co/8tbjOtJRIX +03/05/2018,Sports_celeb,@KingJames,"RT @nikebasketball: Sport takes us beyond the lines. Congrats, @kobebryant for your award for #DearBasketball 🏆🏆🏆🏆🏆🏆 https://t.co/ljeOqzSuBM" +03/05/2018,Sports_celeb,@KingJames,Salute @kobebryant on that Oscar!! #WeAreMoreThanShutUpDribble #UJustContinueToSitBackAndWatch +03/03/2018,Sports_celeb,@KingJames,Straight up man!! Prayers up to the homie @RickRoss 🙏🏾 https://t.co/YpzSFbgm4Y +03/02/2018,Sports_celeb,@KingJames,🤷🏾‍♂️ The young generation would say I was in my bag and haters will say it’s fake. https://t.co/hCXa7OctWR +03/01/2018,Sports_celeb,@KingJames,@swish41 Congrats man on 31K. Same damn spot on the court as 30K. Haha! Amazing!! +03/01/2018,Sports_celeb,@KingJames,That’s super dope!! @StephenCurry30 need to get those framed for sure. https://t.co/vw3Dl9Ms0N +03/01/2018,Sports_celeb,@KingJames,Love what @KDTrey5 is doing in his hometown with that up and coming learning center! Means a lot to those kids. Salute G! 🙏🏾 +03/01/2018,Sports_celeb,@KingJames,RT @MiamiHEAT: 👀 https://t.co/F3Q2W2eI2q +03/01/2018,Sports_celeb,@KingJames,@MiamiHEAT #CLASSIC!!!!!!!!!!! +02/28/2018,Sports_celeb,@KingJames,🙏🏾 #StriveForGreatness🚀 #LLTK👑 https://t.co/7bL0X1cATJ +02/28/2018,Sports_celeb,@KingJames,What a night last night! #StriveforGreatness🚀 #LLTK👑 https://t.co/rVTachBHBV +02/28/2018,Sports_celeb,@KingJames,Appreciate it Boiiiiiiiiii!! Hurry up and get back so I can get more assist! https://t.co/Jpf95LzI5X +02/27/2018,Sports_celeb,@KingJames,RT @mcten: LeBron James’ ringing endorsement of Black Panther: https://t.co/t5iDDzMik8 +02/27/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: Proud to announce the official appointment of @akronschools’ Rockstar, Principal Brandi Davis, as the principal of the…" +02/26/2018,Sports_celeb,@KingJames,RT @SLAMonline: A new multicolor LeBron 15 is making its debut today. https://t.co/hxmareQaQE +02/26/2018,Sports_celeb,@KingJames,"RT @SLAMonline: ""Fruity Pebbles"" LeBron 4 x ""Fruity Pebbles"" LeBron 15. https://t.co/065xYUvyIe" +02/24/2018,Sports_celeb,@KingJames,Work out Bronny!!! Let’s keep improving and making others better. #JamesGang👑 https://t.co/khNmb6adJp +02/22/2018,Sports_celeb,@KingJames,@RAVIEB @pr_RWTW They look so good! Palm trees 🌴 +02/20/2018,Sports_celeb,@KingJames,@AntDavis23 @verizon 💯we’ll be playing an ASG like this one day. Sheesh!! 😎 https://t.co/0FOjSmkJ9h +02/18/2018,Sports_celeb,@KingJames,RT @KlutchSports: Great times celebrating at our annual “The Game Is Everything” All-Star Dinner! @BenSimmons25 @RealTristan13 @JohnWall @K… +02/18/2018,Sports_celeb,@KingJames,RT @NBATV: The @Warriors' @Money23Green gives NBA TV a behind-the-scenes tour of @mavcarter's @uninterrupted studio in Los Angeles! #NBAAll… +02/18/2018,Sports_celeb,@KingJames,Super dope and crazy varsity jacket @kevinlove!! 🔥🔥🔥 https://t.co/WnTdkaFo04 +02/18/2018,Sports_celeb,@KingJames,RT @BlazePizza: @LJFamFoundation @KingJames Thanks for the love! So glad you stopped by and we hope everyone had a great time! +02/18/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: ALL-STAR | @Blazepizza with the #CLUTCH HOOK UP 💪🔥. To @kingjames, you’re a favorite spot, but to his 330 Ambassadors,…" +02/18/2018,Sports_celeb,@KingJames,RT @LJFamFoundation: #NBAAllStar | @kingjames continues to use All-Star as a vehicle to bring one-of-a-kind experiences to his 330 Ambassad… +02/18/2018,Sports_celeb,@KingJames,Freaking amazing man!!!!! Unbelievable time for father and son! WOW https://t.co/b0PoumJ3eM +02/18/2018,Sports_celeb,@KingJames,"RT @LJFamFoundation: #NBAAllStar | 👀👀 LeBron’s 330 Ambassadors take a hard-earned break to watch @teamlebron practice. After all, it wouldn…" +02/18/2018,Sports_celeb,@KingJames,Something lite bro!!!! 🤷🏾‍♂️ https://t.co/beqhWFwYei +02/17/2018,Sports_celeb,@KingJames,#wewillnotshutupanddribble https://t.co/LyenGRKTUE +02/16/2018,Sports_celeb,@KingJames,Thank you Love you @YaraShahidi!! #LoveOurBlackWomen. All of you are special! ✨⭐️ please remember and know that 👸🏽… https://t.co/5VRFJZ4HBk +02/15/2018,Sports_celeb,@KingJames,RT @KDTrey5: Rolling with @carichampion @kingjames: https://t.co/uRkwepGMc0 https://t.co/cmEE5YHpef +02/15/2018,Sports_celeb,@KingJames,💯 https://t.co/RkO6JzYHli +02/15/2018,Sports_celeb,@KingJames,🙏🏾✊🏾💪🏾👑 https://t.co/HeFzH647fv +02/13/2018,Sports_celeb,@KingJames,This is gonna be fun!! Stephen and Jamal are so talented. Very excited to work with them on this. Stay tuned!… https://t.co/VMAshhXCXD +02/13/2018,Sports_celeb,@KingJames,Beautiful Black Empowered Women!! Love y’all!! ❤️ https://t.co/dTXqTNeceV +02/10/2018,Sports_celeb,@KingJames,🔥🔥🔥🔥🔥🔥🔥. Yeah glad you kept those tucked https://t.co/Y1eocdAIZI +02/10/2018,Sports_celeb,@KingJames,RT @NBA: LeBron's #NBAKicks in ATL. https://t.co/3m94adb4sH +02/10/2018,Sports_celeb,@KingJames,"RT @SoleCollector: #SoleWatch: @KingJames debuts the ""Diamond Turf"" Nike LeBron 15 in red. https://t.co/cgTbMYsR28" +02/09/2018,Sports_celeb,@KingJames,👀👀👀💵🔥😍💪🏾 https://t.co/S3YpaAig4R +02/09/2018,Sports_celeb,@KingJames,"HUGE s/o to @StowStudCo & @STVMAthletics. Cheer, student section, community, men’s & women’s bball, the whole famil… https://t.co/otoK1AiwVo" +02/08/2018,Sports_celeb,@KingJames,Happy Gday my G!! 🙏🏾🎂🎊🎉💯 https://t.co/JU74XvZF0I +02/07/2018,Sports_celeb,@KingJames,#Facts 💯 Embrace the struggle! Salute and congrats on that performance and Ring in the big dance @NFoles_9 https://t.co/i4fq9QcSge +02/07/2018,Sports_celeb,@KingJames,Was hoping for the best news when I saw the play after the game. 🤦🏾‍♂️!! Best wishes and have a speedy healthy reco… https://t.co/BlHCfVS5Z4 +02/06/2018,Sports_celeb,@KingJames,50K mins played though @swish41?!?!? Sheesh bro that’s insane. Congrats man! That’s what you call punching in your clock daily! +02/05/2018,Sports_celeb,@KingJames,@Eagles @LG_Blount *Wait +02/05/2018,Sports_celeb,@KingJames,"Hold What A Min, Y’all thought I was finish! #FreeMeek, Congrats @Eagles and the whole city of Philadelphia on thei… https://t.co/GaYHUce723" +02/05/2018,Sports_celeb,@KingJames,#FreeMeek +02/05/2018,Sports_celeb,@KingJames,This is one incredible game to say the least obviously!! AMAZING #SuperBowl2018 +02/05/2018,Sports_celeb,@KingJames,WOW!!!!!!! +02/04/2018,Sports_celeb,@KingJames,Best of luck to both the @Patriots & @Eagles today in the Granddaddy of them all! May the best team be victorious 🙏🏾 #SuperBowl +02/04/2018,Sports_celeb,@KingJames,Salute and congrats to two of my favorites of All-Time @RandyMoss & @terrellowens on the HOF nod! Well damn deserve… https://t.co/uMngrzllVH +02/01/2018,Sports_celeb,@KingJames,S/o to all my #ipromise kids & families ☝🏾🙏🏾🙌🏾💪🏾💪🏾💪🏾🔥!! @ljfamfoundaton #WeAreFamily https://t.co/rTRBNpcHMl +01/31/2018,Sports_celeb,@KingJames,Congrats to my bro @DwyaneWade on passing Larry the Legend Bird in the all time scoring list! #FlashDance⚡️ +01/31/2018,Sports_celeb,@KingJames,C’mon @JHarden13!!! Now that’s insane G! 60 point Triple Dub. Sheesh!!! 🔥🔥🔥🔥🔥 +01/29/2018,Sports_celeb,@KingJames,"Happy Gday to one of my day 1s @DruOnDemand!!! Love bro, enjoy your day my brother!! #LiveLaughLove" +01/29/2018,Sports_celeb,@KingJames,Happy Bday Coach Pop!! One of the best to ever do(in my opinion thee best) and even more great guy! #Respect +01/28/2018,Sports_celeb,@KingJames,@JColeNC *aint the same +01/28/2018,Sports_celeb,@KingJames,Happy Bday to one of the best MC’s ever @JColeNC! All we know they sit the same 🙏🏾✊🏾👑 https://t.co/XnFWtqpsI8 +01/28/2018,Sports_celeb,@KingJames,I do get to pick who starts on my #TeamLeBron team since I had an injury on my team correct?!?! By the @Yg_Trece happy to have u bro!! +01/28/2018,Sports_celeb,@KingJames,@KyrieIrving & @StephenCurry30 just simply amazing!! Sheesh man! 🔥🔥🔥🔥🔥🔥🔥 +01/27/2018,Sports_celeb,@KingJames,Prayers sent to @FlyDre21! Hope you gone be good homie. 🙏🏾 +01/27/2018,Sports_celeb,@KingJames,25K large!!!!! Congrats my brother @carmeloanthony #WalkingBuckets +01/27/2018,Sports_celeb,@KingJames,#WeAreFamily👊🏾 https://t.co/0wiGGUus5k +01/27/2018,Sports_celeb,@KingJames,🙏🏾 https://t.co/CoBg8t2ktz +01/27/2018,Sports_celeb,@KingJames,Thoughts out to @boogiecousins! Hope you good big fella. 🙏🏾 +01/26/2018,Sports_celeb,@KingJames,RT @uninterrupted: 👀 https://t.co/pUeSSelR0V +01/25/2018,Sports_celeb,@KingJames,🙏🏾 https://t.co/tBML5X6WYa +01/25/2018,Sports_celeb,@KingJames,Thank you! 💪🏾 https://t.co/iMGofUVHNq +01/25/2018,Sports_celeb,@KingJames,☝🏾 #StriveForGreatness 🚀 https://t.co/u5jMoUEN79 +01/25/2018,Sports_celeb,@KingJames,Yo @StephenCurry30 that was fun!! Definitely should’ve been televised. 🤷🏾‍♂️ #AllStarDraft⭐️ +01/24/2018,Sports_celeb,@KingJames,"Thank you, Thank you, Thank you to all my family, friends, colleagues, business partners and fans for reaching out… https://t.co/LobQVjOaIh" +01/23/2018,Sports_celeb,@KingJames,Yo @boogiecousins chill out man!! Sheesh!!! Super sick stat line +01/20/2018,Sports_celeb,@KingJames,🤣🤣🤣🤣🤣🤣! U forgot Teen 🐺 too. https://t.co/lUGigkAJL9 +01/20/2018,Sports_celeb,@KingJames,Just trying to be remembered and leave a mark on the game. Truly honored and blessed! 🙏🏾👑#StriveForGreatness🚀 https://t.co/I0ZULtrILJ +01/19/2018,Sports_celeb,@KingJames,🤩🤷🏾‍♂️👑 https://t.co/Qj24sUqUNN +01/19/2018,Sports_celeb,@KingJames,Man was I garbage tonight! 🤢💩🤮😷!!!! Thank God for teammates. Appreciate it fellas ✊🏾🙏🏾#StriveForGreatness🚀 +01/17/2018,Sports_celeb,@KingJames,Happy Gday to my brother from another @DwyaneWade!! Been my dog since we started this journey almost 15 years ago.… https://t.co/1v85vm2brW +01/15/2018,Sports_celeb,@KingJames,-Injustice Anywhere Is A Threat To Justice Everywhere- Our Lives Begin To End The Day We Become Silent About Thing… https://t.co/YgsYFMa4wb +01/14/2018,Sports_celeb,@KingJames,"In my own words, unscripted. 👑UNTIL WE ALL WIN #EQUALITY https://t.co/iy3fF40az8" +01/13/2018,Sports_celeb,@KingJames,Man just landed back in Cleveland and I have to say in the 29 years I've lived here this is the coldest I've felt i… https://t.co/aZE2in9sIw +01/13/2018,Sports_celeb,@KingJames,Definitely stepped out by a tiny bit after seeing it over again! Great call. Needed to be in OKC on that drive. Lol. Live and you Learn +01/12/2018,Sports_celeb,@KingJames,"RT @AC360: ""Let me be clear.... the people of Haiti have been through more, withstood more, fought back against more injustice... than our…" +01/12/2018,Sports_celeb,@KingJames,"RT @CNN: ""Not racial. Not racially charged. Racist. ... The sentiment the President expressed today is a racist sentiment."" Anderson Cooper…" +01/11/2018,Sports_celeb,@KingJames,#NBAVote my lil bro @BenSimmons25! He definitely got next +01/11/2018,Sports_celeb,@KingJames,#NBAVote my bro aka Yellow @carmeloanthony!! +01/11/2018,Sports_celeb,@KingJames,#NBAVote my brother aka the Point God @CP3! +01/11/2018,Sports_celeb,@KingJames,@KDTrey5 Congrats G on 20K!! Lots and lots of buckets! Easy too +01/10/2018,Sports_celeb,@KingJames,Going to be one of the greatest days of my life and my kids when this happens! #WeAreFamily https://t.co/U9KcXv7iyO +01/09/2018,Sports_celeb,@KingJames,Hope the homie @Klow7 is straight! Thinking about you G! 🙏🏾 +01/09/2018,Sports_celeb,@KingJames,@Rachel__Nichols U get a full time Tequila bar I'm coming on the show!! 🤣🤣🤣🍸🤷🏾‍♂️ +01/08/2018,Sports_celeb,@KingJames,"#NBAvote my brother from another, day 1 @DwyaneWade" +01/08/2018,Sports_celeb,@KingJames,#NBAvote My lil pit bull @isaiahthomas!! +01/08/2018,Sports_celeb,@KingJames,@djmeel I saved you money! Lucky I didn't bet you. U know better. #GoIrish☘️ +01/07/2018,Sports_celeb,@KingJames,@Channing_Frye Hahahahaha!!!! +01/07/2018,Sports_celeb,@KingJames,#NBAVote @kevinlove to the All-Star game! I mean just look at his monster year so far! I see you working boooooiiiiii!! +01/06/2018,Sports_celeb,@KingJames,Happy Gday to my brother from day 1 @SianCotton85!! 🙏🏾💪🏾✊🏾👑 +01/05/2018,Sports_celeb,@KingJames,Man I just had the GREATEST Thai massage of all time!! Got me feeling like a slinky. Straight up!! +01/05/2018,Sports_celeb,@KingJames,Congrats to my G @russwest44 on his signature shoe!! Welcome to the gang bro! 🙏🏾✊🏾💪🏾👑 +01/03/2018,Sports_celeb,@KingJames,Retro coming soon..??? Just maybe 🤷🏾‍♂️😐💪🏾👑 https://t.co/i4oJcDLtzG +01/02/2018,Sports_celeb,@KingJames,Let's go!!! 🙏🏾💪🏾👑 #WeAreFamily https://t.co/ZpkmagrjX9 +12/31/2017,Sports_celeb,@KingJames,🙏🏾✊🏾💪🏾👑. THANK YOU https://t.co/iWozwH9QPk +12/30/2017,Sports_celeb,@KingJames,🙏🏾💪🏾👑 https://t.co/z0XkOSTaeN +12/30/2017,Sports_celeb,@KingJames,Love you guys! Thanks! 🙏🏾 https://t.co/cpiiCFhdaI +12/30/2017,Sports_celeb,@KingJames,My G appreciate it! 🙏🏾 https://t.co/ah7jHapKuS +12/30/2017,Sports_celeb,@KingJames,My G appreciate it! 🙏🏾 https://t.co/iexBPp6GpG +12/25/2017,Sports_celeb,@KingJames,Being away from my family for the Holidays for work is the absolute worst! Love what I do and wouldn't change it fo… https://t.co/jOHHYy38lA +12/25/2017,Sports_celeb,@KingJames,Family ties! We push each so we can stand alone when needed but we move as 1 unit so it makes us even stronger! 💪🏾✊… https://t.co/iKrPciNROi +12/24/2017,Sports_celeb,@KingJames,Yes sir!! Oh I already know https://t.co/WVUulTpyUB +12/24/2017,Sports_celeb,@KingJames,RT @SLAMonline: LeBron's Christmas Day highlight package. 🔥🔥🔥 https://t.co/eR0RrDJhYl +12/23/2017,Sports_celeb,@KingJames,👌🏾🔥 #StriveForGreatness https://t.co/qxU6lImbBt +12/23/2017,Sports_celeb,@KingJames,"It's 6 o'clock in the morning, let's get these pads lit up!🔥🚨🏆💪🏾👌🏾#StriveForGreatness🚀 https://t.co/qBFA7z9bCO" +12/22/2017,Sports_celeb,@KingJames,You damn right y'all are!! Beautiful Powerful Smart Black Women! ✊🏾🙏🏾👸🏾 https://t.co/m2WP0o6UJ9 +12/22/2017,Sports_celeb,@KingJames,Go check it out now. Lots of insight from of my closest that has seen the journey. https://t.co/4WuwzXMloC 👑🦁🙏🏾… https://t.co/3EPKXrkAn4 +12/21/2017,Sports_celeb,@KingJames,✊🏾🙏🏾👑 https://t.co/T4HSM0zjBH +12/21/2017,Sports_celeb,@KingJames,Well she actually has more game than me! Amazing examples inside our Kingdom! Queen 👸🏾 James get it girl!!… https://t.co/8k2CMXb7EW +12/21/2017,Sports_celeb,@KingJames,RT @GQMagazine: These 4 pairs got Nike its mojo back https://t.co/11TwSVP3vM https://t.co/LSNc9XrXTx +12/21/2017,Sports_celeb,@KingJames,"RT @LJFamFoundation: You never know who it’ll be when the bell rings! Last night, a team of #EastOhio @Chase elves visited five #IPromise f…" +12/21/2017,Sports_celeb,@KingJames,RT @LJFamFoundation: 🥁🥁🥁🚨🔥👨‍⚕️👩‍⚕️🏆💪👍!!!! Translation: we’re proud to announce our long term partnership with #CrystalClinic Orthopaedic Ce… +12/20/2017,Sports_celeb,@KingJames,@shonrp2 You already know! ✊🏾💪🏾👑 +12/20/2017,Sports_celeb,@KingJames,@PCampbell21 Yes sir!! ✊🏾💪🏾👑 +12/20/2017,Sports_celeb,@KingJames,Congrats young 👑 @shonrp2!!! Keep going. #StriveForGreatness🚀 #OH https://t.co/Cn3LduD7Xr +12/20/2017,Sports_celeb,@KingJames,That's amazing!!! Keep going young 👑 @PCampbell21!! #IrishAlumProud☘️ #OH https://t.co/v63yIFJET8 +12/19/2017,Sports_celeb,@KingJames,"This hurts my heart but HUGE s/o to Gracie, @stowstudco & the entire #Stow community. You guys were unbelievable. A… https://t.co/tgMrevJK6W" +12/19/2017,Sports_celeb,@KingJames,"Congrats @kobebryant!! Dayuumm man NOT1, NOT 2.. ok it is 2 jerseys going up! Amazing G and appreciate the inspirat… https://t.co/YruxajNGLj" +12/18/2017,Sports_celeb,@KingJames,👀👀👀😐 YOU DIDN’T HAVE TO DO ‘EM LIKE THAT EB!! That’s not right. Smh. #GETMYMANON #SCTOP10 #WingfootsClassic… https://t.co/3yogswIIfu +12/18/2017,Sports_celeb,@KingJames,So proud of everyone at @LJFamFoundation!! This is your story. Thank you! https://t.co/bCiVoMUiS3 +12/18/2017,Sports_celeb,@KingJames,The move was cool but what's the best part of the whole thing is my guys @kevinlove and Kyle reaction!! 🤙🏾 https://t.co/SqGyLjCeLp +12/16/2017,Sports_celeb,@KingJames,@blackthought Went in something crazy on @funkflex!! SHEESH!! Went for 10 mins straight. Always been a fan of his style and bars. #HipHop101 +12/16/2017,Sports_celeb,@KingJames,Yeah that pretty much sums it up! @CP3 @TrevorAriza https://t.co/ffKGvIiDw3 +12/16/2017,Sports_celeb,@KingJames,Man this game is NUTS!!!!! #OKCvsPHI #AFansTreat +12/15/2017,Sports_celeb,@KingJames,Yes they are!!! 🔥🔥🔥🔥 https://t.co/xwVh3efXPh +12/15/2017,Sports_celeb,@KingJames,👀👀👀 y’all got me in there singing the wrong alma mater!! Man - vicious. Pumped for you guys. Hope you're enjoying t… https://t.co/tVqtLSxUzZ +12/15/2017,Sports_celeb,@KingJames,WHO DID THIS!!!?Let them know I'm looking for them😂😂😂😂 #StriveForGreatness🚀 https://t.co/d8DJ9EGAEF +12/15/2017,Sports_celeb,@KingJames,It ain’t no game out here with @stowstudco. Turning the #WingfootsClassic into a war. Y’all LUCKY I like pups… https://t.co/pcuny6qQzN +12/15/2017,Sports_celeb,@KingJames,RT @SpringHillEnt: #DoOrDare is LIVE!!! You won't believe the CRAZY dare @Usher and @jermainedupri do to win money for their favorite chari… +12/14/2017,Sports_celeb,@KingJames,Of course they are! Let's go ladies! #GoIrish☘️ https://t.co/1xmjsvw6uw +12/14/2017,Sports_celeb,@KingJames,Yes they are ready!! #GoIrish☘️ https://t.co/lA7XXZscGv +06/25/2018,Sports_celeb,@carmeloanthony,"I can go on and on, but at the end of the day, to make a long story short, HAPPY BORN DAY!!! Love ❤️ You" +06/25/2018,Sports_celeb,@carmeloanthony,The way you hold our family down is Remarkable. I know you’ve been through a lot. Somethings people just would neve… https://t.co/MiuCHGoi0v +06/25/2018,Sports_celeb,@carmeloanthony,I want to acknowledge A VERY SPECIAL PERSON on A VERY SPECIAL DAY!!! @lala It’s very hard to put in words how speci… https://t.co/eeSbaKh783 +06/24/2018,Sports_celeb,@carmeloanthony,"Oh You Mad, Huh? 😂 “Take A Step Back, Evaluate, What Is Important, And Enjoy Life” +#STAYME7O https://t.co/emlzaQr5pH" +06/24/2018,Sports_celeb,@carmeloanthony,"So You Mean To Tell Me...NVRMND +#STAYME7O https://t.co/pRcawCJqzI" +06/23/2018,Sports_celeb,@carmeloanthony,"😲 OH WORRRDDD? 😆😂😝 +#STAYME7O https://t.co/2bxvcxAJXq" +06/21/2018,Sports_celeb,@carmeloanthony,"BLACK EFFECT +“What’s Understood Doesn’t Need To Be Spoken on” +This is 🔥. Thanks 🙏 sis @beyonce +#STAYME7O https://t.co/cShI3xVlAK" +06/21/2018,Sports_celeb,@carmeloanthony,"BULLETPROOF DIARIES *coming soon +#STAYME7O https://t.co/kw8nZ84huR" +06/20/2018,Sports_celeb,@carmeloanthony,"“Fashion Has Always Been A Repetition Of Ideas, But What Makes It New Is The Way You Put It Together” +#STAYME7O https://t.co/whBQtZICXb" +06/20/2018,Sports_celeb,@carmeloanthony,"Front Row Shenanigans +@MaisonValentino https://t.co/GjKN2ixFhc" +06/20/2018,Sports_celeb,@carmeloanthony,“For All The Low Hangin Fruit. You Get Your Work Done Early So You Can Enjoy The Fruit Of Your Labour” 😝… https://t.co/udiimvM0r1 +06/20/2018,Sports_celeb,@carmeloanthony,"“Life Can Only Be Understood Backwards; But It Must Be Lived Forward” +#STAYME7O https://t.co/JfuCzDoAc6" +06/18/2018,Sports_celeb,@carmeloanthony,"*Mood +“All Critics Can Duck Sick” +#STAYME7O https://t.co/mJfSWP9kYC" +06/18/2018,Sports_celeb,@carmeloanthony,"We Live On A Blue Planet 🌎 That Circles Around A Ball Of Fire 🔥 Next To A Moon 🌚 That Moves The Sea 🌊, And You Don’… https://t.co/xTAEVptSSC" +06/17/2018,Sports_celeb,@carmeloanthony,"IF YOU KNOW ME, YOU KNOW!!! +@nas +#STAYME7O https://t.co/nta9Lh519b" +06/06/2018,Sports_celeb,@carmeloanthony,#STAYME7O @kingjames @NBA2k cover athlete #Brotherhood https://t.co/hmcy5qUHOD https://t.co/R1R9ShdpbF +05/29/2018,Sports_celeb,@carmeloanthony,PROUD FATHER Moment!!! #STAYME7O https://t.co/eEgCRfHsMj +05/29/2018,Sports_celeb,@carmeloanthony,"Proud of My New NYC 5th grade AAU team #BlackOpsCadets +GREAT Weekend at The Memorial Day TAKEOVER Tournament. Lost… https://t.co/69cA3p6m7X" +05/24/2018,Sports_celeb,@carmeloanthony,"AJ2 MELO #rebirth @finishline +#STAYME7O + +Early footwear release available: +Grand Opening 5/26 @ 8AM +Finish Line Par… https://t.co/YAwE8gQx4J" +05/21/2018,Sports_celeb,@carmeloanthony,"""The Dream Is 🆓, The Hustle Sold Separately"" +BLACK Ops +#STAYME7o https://t.co/Eynhu5Trz0" +05/14/2018,Sports_celeb,@carmeloanthony,"Happy Mother’s Day to the strongest and bravest woman I know!!! Thanks for being our rock @lala +#STAYME7O https://t.co/WmPZMYybIl" +05/03/2018,Sports_celeb,@carmeloanthony,"Congrats @aeneas_dicosmo on narrowing it down, big decisions ahead. https://t.co/lwCRcVA0VH" +04/15/2018,Sports_celeb,@carmeloanthony,"FROZEN MOMENT - NEW CHAPTER +@Jumpman23 +#STAYME7O +#JUMPMAN https://t.co/6tXrviSCi6" +04/13/2018,Sports_celeb,@carmeloanthony,INSPIRATION 🙏🏽 @cp3 #STAYME7O https://t.co/vDrf02SL5R +04/11/2018,Sports_celeb,@carmeloanthony,"Happiness is to be found within your own life, in your thoughts at this very moment. You yourself are most noble an… https://t.co/1TcxKIzkHa" +04/05/2018,Sports_celeb,@carmeloanthony,"The #DreamStillLives… What’s yours? +#STAYME7O https://t.co/WbqUdgUmq6" +04/05/2018,Sports_celeb,@carmeloanthony,"RT @StevieWonder: On April 4th, 1968 at 7:05 p.m. central time, Dr. King’s life was cut tragically short. 50 years later a need for his dre…" +04/04/2018,Sports_celeb,@carmeloanthony,The #IAmMLKJr documentary…catch it tonight 9/8c @paramountnet #MLK50 https://t.co/zQfeDfizgI +04/04/2018,Sports_celeb,@carmeloanthony,"""Injustice anywhere is a threat to justice everywhere.” - #MLK50 #STAYME7O https://t.co/toHzA8Ea4f" +03/27/2018,Sports_celeb,@carmeloanthony,"""TRIUMPH"" - in theaters until 3/29 NYC & LA +#PerryWallaceFilm +#STAYME7O +https://t.co/SWDw2gcVaU https://t.co/AvYyKMF0zQ" +03/23/2018,Sports_celeb,@carmeloanthony,"Partnering with @MTV @NAACP and my city of Bmore to support #MarchForOurLives. + +Sending over 4,500 kids from Balti… https://t.co/8S4k6JQ47x" +03/19/2018,Sports_celeb,@carmeloanthony,"“Haters Gonna Say This Is Photoshopped” +Sorry @Money23Green +#STAYME7O https://t.co/URMKDX9vMp" +03/15/2018,Sports_celeb,@carmeloanthony,"I’m sure we made The whole MHP and McHP(Those who know, know) proud. B’MORE period was represented to the world. On… https://t.co/26eyLby2qZ" +03/15/2018,Sports_celeb,@carmeloanthony,One of the greatest days of my life. Playing against my best friend first round of NCAA tourney. We sat in my house… https://t.co/KR0EmoTArh +03/15/2018,Sports_celeb,@carmeloanthony,"Squad Up +One Down!!! +Sorry @JHarden13 😂 +#STAYME7O https://t.co/noJUPIm9rg" +03/11/2018,Sports_celeb,@carmeloanthony,RT @DwyaneWade: They need our help! I'm asking my NBA fam to join us in raising money to send kids from underserved communities to March….@… +03/11/2018,Sports_celeb,@carmeloanthony,RT @DwyaneWade: Spoke to my brother @carmeloanthony & we're standing w/ students from MSD. We both come from communities where gun violence… +03/10/2018,Sports_celeb,@carmeloanthony,I'm giving and supporting to my community and the students of Baltimore. @TheNBPA Foundation will match up to $25k… https://t.co/oZjKAED0xB +03/10/2018,Sports_celeb,@carmeloanthony,.@DwyaneWade and I on the same page... Standing with the students of MSD - both of us come from hometowns where the… https://t.co/QsCrGAMAeA +03/08/2018,Sports_celeb,@carmeloanthony,"Happy Born Day 👑 +""If I Could Give You One Thing In Life, I Would Give You The Ability To See Yourself Through My Ey… https://t.co/9y5WG5D6qA" +03/01/2018,Sports_celeb,@carmeloanthony,"“The Future Is In Good Hands” +Young Kings 👑 +@Diddy +#STAYME7O https://t.co/Y6sWSM2dll" +02/27/2018,Sports_celeb,@carmeloanthony,"We each move forward, secure on our own earth, not the earth of others. Happiness is something we must create for o… https://t.co/LD082sodJ6" +02/24/2018,Sports_celeb,@carmeloanthony,“Breath of fresh air” #STAYME7O @espn @okcthunder #ThunderUP https://t.co/RcVUJPlWA8 +02/24/2018,Sports_celeb,@carmeloanthony,"📷hat: “Sage Camo” +#FreshGreens +#STAYME7O https://t.co/V0gCpFSj6X" +02/24/2018,Sports_celeb,@carmeloanthony,"📷 Hat: “Everyday Camo” +MELOxGoorinBros +#FreshGreens +#STAYME7O https://t.co/5JFfjsw57R" +02/24/2018,Sports_celeb,@carmeloanthony,"New Collection “Fresh Greens” +MELOxGoorinBros. +📷 hat: Melo Mint +#STAYME7O https://t.co/lkangZXTIi" +02/21/2018,Sports_celeb,@carmeloanthony,"TRUST:NOBODYs +RED Vibes 👂 🔊🔊”BLUE LACES” +#VictoryLap +#STAYME7O https://t.co/qh1Pz5rZfY" +02/18/2018,Sports_celeb,@carmeloanthony,Tune in tonight @NBAonTNT 7p ET ‘Sports & Society’ #STAYME7O https://t.co/TkL74fMwJY +02/18/2018,Sports_celeb,@carmeloanthony,"RT @NBAonTNT: #NBAAllStar pregame coverage will include a special Sports & Society roundtable show featuring Dwyane Wade, Chris Paul & spec…" +02/17/2018,Sports_celeb,@carmeloanthony,"“We Will Never Rush The Hands Of Time” +#STAYME7O https://t.co/MFlzaYxrye" +02/16/2018,Sports_celeb,@carmeloanthony,Sports & Society...airing Sunday 2/18 7p ET on TNT #StayMe7o https://t.co/TzUHmFdURY +02/14/2018,Sports_celeb,@carmeloanthony,"***❤️ MINE FOREVER!!! +HAPPY VALENTINES DAY to MY WIFE @lala +#STAYMe7O https://t.co/lbUzpcOpV3" +02/02/2018,Sports_celeb,@carmeloanthony,"All Praise Due 🙏 +#STAYME7O https://t.co/uTFy6Oplgt" +01/28/2018,Sports_celeb,@carmeloanthony,RT @TeamMe7o: Big ups @carmeloanthony on hitting 25k points! Going strong 💪💪 #StayMe7o https://t.co/3465XfoCZr +01/28/2018,Sports_celeb,@carmeloanthony,.@Yg_Trece congrats on it 🙏 #NBAallstar +01/27/2018,Sports_celeb,@carmeloanthony,"“When The Music Changes, So Does The Dance” *AfrikanProverbs +#STAYME7O https://t.co/Te1WZaVUng" +01/24/2018,Sports_celeb,@carmeloanthony,Big ups to my guy @russwest44 🙏🏾 #NBAAllstar #ThunderUP +01/22/2018,Sports_celeb,@carmeloanthony,Congrats @kingjames 🙏🏽 #NBAAllStar captain leading the East #StriveforGreatness #StayMe7o +01/21/2018,Sports_celeb,@carmeloanthony,"“Canadian Tux” +Yeah Ehhh, Dun Kno! 😆 +#STAYME7O https://t.co/avYjkZbEsA" +01/17/2018,Sports_celeb,@carmeloanthony,"“Its The Repetition Of Affirmations That Leads To Belief. And Once That Belief Becomes A Deep Conviction, Things Be… https://t.co/dR690D6qdq" +01/15/2018,Sports_celeb,@carmeloanthony,"“Progress Will Always Be Uncomfortable And Noisy” +#MLKDay +#STAYME7O https://t.co/SaVCF1Yuks" +01/15/2018,Sports_celeb,@carmeloanthony,"EQUALITY @Jumpman23 + +MELO AJ1: https://t.co/OYSn9yfWX5 + +#Hoodieszn: https://t.co/u3i9tSB1CK + +#STAYME7O https://t.co/gBhjsxsBis" +01/15/2018,Sports_celeb,@carmeloanthony,Proud of our work with the W.K. Kellogg Foundation. Tune in tomorrow at 6:30pm CST to celebrate our common humanity… https://t.co/VpH44KKxhC +01/14/2018,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/TWGW4dBTUL +01/13/2018,Sports_celeb,@carmeloanthony,Vote @CP3 @KingJames @DwyaneWade @russwest44 @Yg_Trece #NBAAllStar https://t.co/Km4eG8FZXc #StayMe7o +01/04/2018,Sports_celeb,@carmeloanthony,New #MeloMoji's are live...check them out at https://t.co/27tQpZL3OU & https://t.co/h72GW44ZFN #ThunderUp #StayMe7o https://t.co/3b1hieFpEV +12/27/2017,Sports_celeb,@carmeloanthony,"GRA7EFUL +#STAYME7O https://t.co/ITD69kiFHj" +12/14/2017,Sports_celeb,@carmeloanthony,Respect. #YearInSearch @google #StayMe7o https://t.co/1zwbOKrdE1 +11/21/2017,Sports_celeb,@carmeloanthony,Thank u @footlocker... #Greatnessdoesgood New shoes donated in the USA will be sent directly to Puerto Rico for thi… https://t.co/GrafWrrF2r +11/19/2017,Sports_celeb,@carmeloanthony,"INNER-PEACE +#STAYME7O https://t.co/Ss6rX2d8hU" +11/18/2017,Sports_celeb,@carmeloanthony,Proud of @jessomatt on all the hard work she’s put in with #UnchartedPower - big time POWER play @upowerco #StayMe7o https://t.co/bUoQGFJl9t +11/16/2017,Sports_celeb,@carmeloanthony,Working with @footlocker give back to my people in Puerto Rico. Join us in this fight https://t.co/PtprbCOCgI… https://t.co/gVd6MggTJB +11/15/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/2JiB1lTJlG +11/14/2017,Sports_celeb,@carmeloanthony,"Me7o Monday’s +#STAYME7O https://t.co/qPxZU9W5D5" +11/14/2017,Sports_celeb,@carmeloanthony,"“Be The Reason Someone Smiles” +#800Families800ReasonsToSmile +#STAYME7O https://t.co/hRyLUioD3Z" +11/11/2017,Sports_celeb,@carmeloanthony,"#HoodieSzn + +https://t.co/MgNCeD0Fd3 https://t.co/4iwh4DQkYu" +11/09/2017,Sports_celeb,@carmeloanthony,"#HoodieSzn #StayMe7o + +https://t.co/1Iapu7hLUg https://t.co/bCn5s5veDo" +11/05/2017,Sports_celeb,@carmeloanthony,"Always Remember Someone Is Looking Up To You!! +#STAYME7O https://t.co/hc9uIKNJcF" +10/31/2017,Sports_celeb,@carmeloanthony,We distributed 100k lbs of food and water to the families & children of #PuertoRico... Join us @Youcaring #StayMe7o… https://t.co/rHDnsy7q0E +10/23/2017,Sports_celeb,@carmeloanthony,"#ValentinoResort2018 +@MaisonValentino +#STAYME7O https://t.co/XEQfJwbnl5" +10/23/2017,Sports_celeb,@carmeloanthony,"@MaisonValentino +#valentinoresort18 “Just The Beginning” +#STAYME7O https://t.co/fWZVQfllGd" +10/21/2017,Sports_celeb,@carmeloanthony,"RT @manuel_aj_laboy: Despite of current challenges, Puerto Rico responded to #AmazonHQ2 RFP. Our message is bold and clear: We will emerge…" +10/19/2017,Sports_celeb,@carmeloanthony,"“You Watched Me Walk Through Hell, Now Watch Me Walk Up Out It” +#STAYME7O https://t.co/w9h0LgAqv4" +10/13/2017,Sports_celeb,@carmeloanthony,We need to focus on tragedies that don't always get the attention they deserve. #PuertoRico @youcaring… https://t.co/hdLOA02so6 +10/11/2017,Sports_celeb,@carmeloanthony,"At The Center of YOUR Being, You Have The Answer. You Know Who You Are And You Know What You Want!!! +#STAYME7O https://t.co/R7H7Ofx8b7" +10/09/2017,Sports_celeb,@carmeloanthony,I'm working w @feedthechildren to make sure all those affected by #HurricaneMaria in #PuertoRico get the supplies t… https://t.co/DS2mfcw4gs +10/09/2017,Sports_celeb,@carmeloanthony,Much love to Earl Lloyd for paving the way for me to play in this league. #TheFirstToDoIt in theatres February 2018… https://t.co/5ya2Sm536g +10/06/2017,Sports_celeb,@carmeloanthony,"Mad I missed Laundry day. +Kiyan w/ the Spin Cycle!!! +#STAYME7O https://t.co/ofd7PXnM1h" +10/05/2017,Sports_celeb,@carmeloanthony,Help aid the relief efforts of #HurricaneMaria by donating to my @youcaring page. #PuertoRico needs help. #StayMe7o… https://t.co/Th1vv6sHIx +10/03/2017,Sports_celeb,@carmeloanthony,"Tune in to #FindingYourRoots, season 4, with @HenryLouisGates premiering tonight, Oct 3 at 8/7c on @PBS #StayMe7o" +09/30/2017,Sports_celeb,@carmeloanthony,"Puerto Rico is without power, but NOT powerless. Teaming up w/ #CarmeloAnthonyFoundation to aid the relief efforts.… https://t.co/z8Wig39Za3" +09/29/2017,Sports_celeb,@carmeloanthony,Talking ball & style with @GothamMag... Check the Fall issue cover story out now #StayMe7o https://t.co/qd1gDLcGwG https://t.co/Ur092LzExG +09/28/2017,Sports_celeb,@carmeloanthony,"Road to recovery in #PuertoRico won't be easy, +but I'll be there every step of the way. Visit my @youcaring page… https://t.co/Y4l8mWswjv" +09/25/2017,Sports_celeb,@carmeloanthony,"Dear NEW YORK, + +From the day I first met you, I knew we were meant to be together... https://t.co/0kFojmkrve https://t.co/iMbLpTmZtk" +09/22/2017,Sports_celeb,@carmeloanthony,"I’ve set up a @YouCaring page to aid the relief efforts in Puerto Rico. We need your help in this fight. + +Donate:… https://t.co/XjjT8kAoSv" +09/18/2017,Sports_celeb,@carmeloanthony,"If you lose today, win tomorrow. In this never-ending spirit of challenge is found the heart of a victor.… https://t.co/hrc9rlH1ea" +09/14/2017,Sports_celeb,@carmeloanthony,"""People do not grow when they are not challenged. It is in the midst of suffering & hardship that strength of chara… https://t.co/xi1Giw4Ue1" +09/12/2017,Sports_celeb,@carmeloanthony,"Can't Make Sense Out Of Non Sense! +""A certain darkness is needed to see the stars."" +@espn Don't be so Blatant with… https://t.co/S1zH47aUSY" +09/11/2017,Sports_celeb,@carmeloanthony,"Another Day At The Office!!! +M7 Black Ops +#STAYME7O https://t.co/oKegElbOjr" +09/11/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/01ivvhr0EK +09/06/2017,Sports_celeb,@carmeloanthony,#STAYME7O https://t.co/S30oMVAgTm +09/06/2017,Sports_celeb,@carmeloanthony,"""Celebrating All Woman All Sizes"" @lala Words Can't explain how Proud I am of YOU. Always setting the bar higher. L… https://t.co/NoDdsjVzip" +09/04/2017,Sports_celeb,@carmeloanthony,"""You shouldn't imitate those who came before. You must discover, manifest, & share what makes You- & ONLY YOU- exce… https://t.co/MqvkTtjwFq" +08/26/2017,Sports_celeb,@carmeloanthony,"""When we have a clear purpose in life we can overcome anything. WITHOUT a sense of purpose, our lives begin a slow… https://t.co/2krsuLzEGF" +08/21/2017,Sports_celeb,@carmeloanthony,"""The Wolf 🐺 On The Hill Is Not As Hungry As The Wolf 🐺 Climbing The Hill"" +#STAYME7O https://t.co/P4DqengFzk" +08/20/2017,Sports_celeb,@carmeloanthony,"NOBODY's FC⚽️ +#STAYME7O https://t.co/SrfWtmSikP" +08/16/2017,Sports_celeb,@carmeloanthony,"Pt.4 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/iuRveKPjjs" +08/16/2017,Sports_celeb,@carmeloanthony,"PT.3 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/sPb5sDT5oV" +08/16/2017,Sports_celeb,@carmeloanthony,"PT.2 +M7 #AcademyBasketball BLACK OPS Session +#STAYME7O https://t.co/pxnaYJTH6P" +08/15/2017,Sports_celeb,@carmeloanthony,"""Positive Energy Always Create Elevation"" +M7 #AcademyBasketball BLACK OPS Session PT.1 +#STAYME7O +PT.2 Coming soon https://t.co/ZvU9zGCl62" +08/12/2017,Sports_celeb,@carmeloanthony,"To strive even higher, to do even better—the creative process is a desperate struggle to go beyond what we were yes… https://t.co/mjcAMjDti9" +08/05/2017,Sports_celeb,@carmeloanthony,New 2-pack options now live on https://t.co/XFKXbshHHK. Max comfort where it counts #Frigo #iwearfrigo… https://t.co/H54Sfc11CU +08/03/2017,Sports_celeb,@carmeloanthony,2 million dollars on the line tonight... tune in on @ESPN at 7p ET for the @thetournament https://t.co/IcplA1ag8m… https://t.co/6YPZuC7jFz +07/30/2017,Sports_celeb,@carmeloanthony,👀❤️🌏 https://t.co/RdwwMdBkcR +07/30/2017,Sports_celeb,@carmeloanthony,Couple days until @thetournament Championship game in Baltimore. Tune in @ESPN at 7p ET. More info here:… https://t.co/xQdLL9fCWT +07/23/2017,Sports_celeb,@carmeloanthony,Good luck to Cuse. The dream is still alive. Win this one and I'll see you in Baltimore! #TBT2017 +04/14/2017,Sports_celeb,@carmeloanthony,"REALLY 😂😂 +#StayMe7o https://t.co/Y9Vky2zgLh" +04/14/2017,Sports_celeb,@carmeloanthony,Paving the way for those to come. Catch @JordanClassic #NEXTvsNEXT tonight on ESPN. #FBF https://t.co/cOS11a6l32 +04/04/2017,Sports_celeb,@carmeloanthony,Discover your own color. Mine is Sungmoon... What's yours? Thanks @SamsungTV #FindYourColor here:… https://t.co/Obw6W5Qm49 +03/30/2017,Sports_celeb,@carmeloanthony,"""Baltimore will always have a special place in my heart, and I'm excited to bring @thetournament to this city.""… https://t.co/6YtLREs1Bn" +03/16/2017,Sports_celeb,@carmeloanthony,Congrats to the @PolyBoysBball team for bringing home that State Championship #StayMe7o @dreperry22 @thedmj1 @CoachSamBrand @CoachFitz40 +03/15/2017,Sports_celeb,@carmeloanthony,#StayMelo https://t.co/JAjq9I13tV +03/13/2017,Sports_celeb,@carmeloanthony,"""Nyctophilia"" +(n.) Love of darkness or night. Finding relaxation or comfort in darkness. +#StayMe7o https://t.co/kjyO6a2Hpw" +03/10/2017,Sports_celeb,@carmeloanthony,"Thank you @NintendoAmerica for The Nintendo switch. I get the BEST DaD award now 😂 +#NintendoSwitch +#StayMe7o https://t.co/VoIH3MH16H" +03/02/2017,Sports_celeb,@carmeloanthony,RT @VICESports: .@carmeloanthony meets up with WBA Middleweight champ @DanielJacobsTKO to get a tour of Brooklyn's boxing Mecca. https://t.… +02/21/2017,Sports_celeb,@carmeloanthony,Excited for things to come! Soundbite from #MeloMoji - https://t.co/gQ6NoeOXWB https://t.co/CNpy6txNUq https://t.co/rmv33G2WND +02/21/2017,Sports_celeb,@carmeloanthony,"RT @VICESports: In this episode of #StayMelo, @carmeloanthony visits the nationally ranked MLK High School boys soccer team. https://t.co/I…" +02/18/2017,Sports_celeb,@carmeloanthony,#StayMe7o https://t.co/uitJ6mKY9F +02/18/2017,Sports_celeb,@carmeloanthony,"""Way of Life"" +#StayMe7o https://t.co/6RreNenXN8" +02/15/2017,Sports_celeb,@carmeloanthony,"Happy Valentines Day +#StayMe7o https://t.co/EVd8UZremZ" +02/14/2017,Sports_celeb,@carmeloanthony,Clock's ticking... https://t.co/A2P9CPFUsE ends at 7pm. You could win a trip for 2 to @NYKnicks vs. @Warriors! https://t.co/DS0GnLR7Sw +02/13/2017,Sports_celeb,@carmeloanthony,Last chance to win a trip to meet me for @NYKnicks vs. @Warriors! https://t.co/A2P9CPFUsE https://t.co/SxE0LpfJ4y +02/06/2017,Sports_celeb,@carmeloanthony,Feeling strong and ready for LA tonight thanks to @HSpecialSurgery. Check out this video about my journey with HSS:… https://t.co/62IxPON6Z3 +01/31/2017,Sports_celeb,@carmeloanthony,Running away from things you find unpleasant causes suffering. But facing and challenging such situations will enri… https://t.co/tuSFgeUcQs +01/30/2017,Sports_celeb,@carmeloanthony,"Only 2 weeks left to win a trip to NYC to meet me, get tix for @NYKnicks vs. @Warriors & come to shoot-around too https://t.co/A2P9CPFUsE" +01/30/2017,Sports_celeb,@carmeloanthony,"Prouder than ever to support @lyft, a company that stands behind its values. #TeamLyft #DeleteUber https://t.co/2rTgzx9I6t" +01/26/2017,Sports_celeb,@carmeloanthony,You can still sign up for my @EliteSportsCon2 Youth Basketball Camp @PacPlex in Brooklyn https://t.co/Snk8vXUvfM https://t.co/QDNeW0GbQh +01/24/2017,Sports_celeb,@carmeloanthony,"In this episode of #StayMelo, I explore some of the best views in Brazil and the favelas of Rio with @VICESports:… https://t.co/iOGtiA4OXm" +01/17/2017,Sports_celeb,@carmeloanthony,Looking forward to stepping on the court with NY's young talent @EliteSportsCon2 Youth Basketball Camp. Sign up now… https://t.co/Kw0NEIBcM8 +01/15/2017,Sports_celeb,@carmeloanthony,"Be More +""The One"" +@gervontaa https://t.co/1Obw061Sws" +01/14/2017,Sports_celeb,@carmeloanthony,I'm Thankful for ALL of it. The Highs. The Lows. The Blessings. The Lessons. The Setbacks. The Comebacks. The Love.… https://t.co/FNYREkXPHh +01/14/2017,Sports_celeb,@carmeloanthony,Hoping to see you in New Orleans. #FBF #NBAVOTE Carmelo Anthony https://t.co/Yf4n6fMSvI +01/14/2017,Sports_celeb,@carmeloanthony,"RT @NykInsider: Kristaps Porzingis 🦄 +Derrick Rose 🌹 +Carmelo Anthony 🎖🎖🎖 + +#NBAVOTE +(every Retweet counts as one vote) https://t.co/Bm0g79Lb…" +01/12/2017,Sports_celeb,@carmeloanthony,Don't text your friends. Let me talk to them. DL MeloMoji & #StayMe7o all day iOS: https://t.co/27tQpZL3OU Android:… https://t.co/R7lAzQ1ftO +01/12/2017,Sports_celeb,@carmeloanthony,Donate to the Carmelo Anthony Foundation & you could win a trip to NYC to meet up with me for @NYKnicks v.… https://t.co/mJA8vCmCip +01/11/2017,Sports_celeb,@carmeloanthony,"THANK YOU!!! +#StayMe7o https://t.co/vsM8SJW60q" +01/10/2017,Sports_celeb,@carmeloanthony,Excited to announce my upcoming @EliteSportsCon2 Youth Basketball Camp in BKLYN! Sign up now https://t.co/Snk8vXUvfM https://t.co/12tfLb48cC +01/10/2017,Sports_celeb,@carmeloanthony,"Al-ḥamdu lillāh +#StayMe7o https://t.co/IFYA7oVW72" +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @DwyaneWade +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @kporzee +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @drose +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @CP3 +01/09/2017,Sports_celeb,@carmeloanthony,#NBAVote @kingjames +01/07/2017,Sports_celeb,@carmeloanthony,"Grateful to be here. Humbled to look back. Hopeful for the future. #NBAVote Carmelo Anthony + +Thx @NBA for the video. https://t.co/IWbH6Ct4XE" +01/06/2017,Sports_celeb,@carmeloanthony,"RT @nyknicks: 9X @NBAAllStar @carmeloanthony. + +RT to #NBAVote! #NYKtoNOLA https://t.co/slSYKOyZeq" +01/06/2017,Sports_celeb,@carmeloanthony,"RT @Guhlarzzza: #NBAVote Derrick Rose +#NBAVote Carmelo Anthony +#NBAVote Kristaps Porzingis" +01/04/2017,Sports_celeb,@carmeloanthony,Forever proud to wear these colors. #NBAVote Carmelo Anthony https://t.co/r8ywW7PeYw +01/04/2017,Sports_celeb,@carmeloanthony,RT @whatsupmelo9: I want to see Carmelo Anthony play at the ASG2017. #NBAVote https://t.co/9wkoF8s53I +01/03/2017,Sports_celeb,@carmeloanthony,RT @KnicksPassion: CARMELO ANTHONY #NBAVOTE https://t.co/sHqxGdkSTn +01/03/2017,Sports_celeb,@carmeloanthony,RT @Vic_Anthony7: #NBAVOTE I want to see Carmelo Anthony play in the NBA All-Star Game 2017 ! https://t.co/i2z4GIDsR6 +12/31/2016,Sports_celeb,@carmeloanthony,Your support is appreciated more than you know. https://t.co/8c0ZQZKsFG #NBAVote Carmelo Anthony https://t.co/CX3NeYXQ0L +12/31/2016,Sports_celeb,@carmeloanthony,"RT @nyknicks: Vote Melo to New Orleans! + +RT Carmelo Anthony #NBAVote #NYKtoNOLA + +Or visit https://t.co/EiWlaP9FS7 https://t.co/aM3BvpbyVM" +12/31/2016,Sports_celeb,@carmeloanthony,Hope to see everyone in New Orleans. NBA AllStar voting is open. Tweet #NBAVote Carmelo Anthony https://t.co/1h8LnPboJ7 +12/30/2016,Sports_celeb,@carmeloanthony,"RT @NBAAllStar: 16 days left... 2017 #NBAAllStar Voting presented by @Verizon ends January 16th! + +https://t.co/7SYpaqHa1f or the NBA app h…" +12/30/2016,Sports_celeb,@carmeloanthony,"RT @NBAAllStar: Vote for the 2017 #NBAAllStar teams right here on Twitter! + +Tweet #NBAVote + player first & last name or twitter handle. *l…" +12/23/2016,Sports_celeb,@carmeloanthony,Feeling strong & ready for the C's this weekend. Thanks @hspecialsurgery. See how they help keep me healthy here:… https://t.co/7SnWm1JK3v +12/22/2016,Sports_celeb,@carmeloanthony,A Very Melo Christmas with future leaders! Made possible by @regalmovies @jumpman23 @thebridgedirect @singmovie… https://t.co/XKWZWx2J89 +12/22/2016,Sports_celeb,@carmeloanthony,Thank you @UniversalPics for setting us up with #SingMovie for A Very Melo Christmas https://t.co/c4EnwXg089 +12/20/2016,Sports_celeb,@carmeloanthony,Watching #SingMovie for A Very Melo Christmas 2016. #CarmeloAnthonyFoundation @Singmovie #SageBusinessGroup +12/19/2016,Sports_celeb,@carmeloanthony,"Sophisticated Elite +@rockwell_group #YayolKusama +#StayMe7o https://t.co/AkNoSkwlmq" +12/15/2016,Sports_celeb,@carmeloanthony,"""Rest In Peace"" +One of The Greatest Fighters Ever. A True Inspiration +#TheSagerLegendContinues +#StayMe7o https://t.co/5n2p09HZiN" +12/09/2016,Sports_celeb,@carmeloanthony,Giving a @Bevel shave system to the follower who knows how many times I medaled w/ Team USA. Answer w/ #JoyOfBevel. https://t.co/ERCAzZnlNw +12/08/2016,Sports_celeb,@carmeloanthony,"UN-Phased +(MyLifeSummedUpInOnePhoto) +#StayMe7o https://t.co/LUtdSxhOTE" +12/08/2016,Sports_celeb,@carmeloanthony,"EGO is the only requirement to destroy any relationship. So, be a BiGGER person, skip the ""E"" and let it ""GO""… https://t.co/ncmKA2I4aD" +12/07/2016,Sports_celeb,@carmeloanthony,Teamed up with @feedthechildren @avoninsider for a special community event here in NYC https://t.co/5b6iaMkdln +12/05/2016,Sports_celeb,@carmeloanthony,"I'm joining @serenawilliams, @neymarjr, @MarceloM12, and global champions to ask students to try the #HourOfCode. https://t.co/03GX8ph17p" +12/01/2016,Sports_celeb,@carmeloanthony,https://t.co/5npxQ09xpJ +12/01/2016,Sports_celeb,@carmeloanthony,"GREAT TEAM WIN!!! +""It Is The Mark of An Educated Mind To Be Able To Entertain A Thought Without Accepting It""… https://t.co/b3RHEhWxJN" +11/30/2016,Sports_celeb,@carmeloanthony,"""We Are Not A Team Because We Work Together. We Are A Team Because We Respect, Trust, And Care For Each Other""… https://t.co/ThbDYH2Ewo" +11/29/2016,Sports_celeb,@carmeloanthony,Thanks to the #RedhookInitiative for producing the #BQX video. Bright futures ahead for #Redhook. #StayMe7o https://t.co/2KPNCVW85q +11/22/2016,Sports_celeb,@carmeloanthony,Thank you to @feedthechildren @avoninsider and @brucebeck4NY for helping us provide 800 families with essentials be… https://t.co/70WYngtNXN +11/22/2016,Sports_celeb,@carmeloanthony,RT @BruceBeck4NY: This is my 6 pm piece on the fine work by the @carmeloanthony Foundation in Harlem! https://t.co/VzgOaUSB6V https://t.co/… +11/16/2016,Sports_celeb,@carmeloanthony,@_frankiefjr_ @footlocker No Distractions. #DestiNY #StayMe7o +11/16/2016,Sports_celeb,@carmeloanthony,@NickyPetrucelli Greatness is a Mindset. Greatness is the Legacy You Leave Behind. +11/16/2016,Sports_celeb,@carmeloanthony,Sound off in the comments after you check out my @footlocker #WeekofGreatness spot https://t.co/SQRT91N1FH +11/08/2016,Sports_celeb,@carmeloanthony,Stand Together In Solidarity. Tune in now to #ESPN2 and watch The Clubhouse. https://t.co/J2QcOrlXal +10/31/2016,Sports_celeb,@carmeloanthony,Salute To My Toy Soldier!!! @lala You killed this ☝️ 😂😂😂 #StayMe7o https://t.co/sy7lS16yqK +10/21/2016,Sports_celeb,@carmeloanthony,"P-Positive +E-Energy +A-Activates +C-Constant +E-Elevation +#StayMe7o https://t.co/1LZJ2IjqMj" +10/07/2016,Sports_celeb,@carmeloanthony,Had a great time playing #GearsOfWar @Xbox loft. Check it out on Oct 11th. https://t.co/aladNOFeO8 +10/06/2016,Sports_celeb,@carmeloanthony,Catch me tonight on @TheDailyShow with @Trevornoah at 11pm EST +10/05/2016,Sports_celeb,@carmeloanthony,Check out #LaGrata Pizzeria in #SouthBronx for that authentic slice https://t.co/wRYCeBtylG +10/05/2016,Sports_celeb,@carmeloanthony,"Watch my show #StayMelo on @VICELAND, starting right now: https://t.co/o7oqSpTSrf" +10/04/2016,Sports_celeb,@carmeloanthony,My episode of #StayMelo: Puerto Rico airs tonight at 11:00PM on @VICELAND. Watch the full series now on @VICESports… https://t.co/oMyeAoh3b9 +10/04/2016,Sports_celeb,@carmeloanthony,Watch #StayMelo tomorrow at 11:00PM ET on @VICELAND where I visit the streets of San Juan and explore Puerto Rico's… https://t.co/JkBc3vuVCZ +10/03/2016,Sports_celeb,@carmeloanthony,A good year to all my friends celebrating Rosh Hashanah #5777 #StayMe7o https://t.co/P6TyGuykV2 +10/01/2016,Sports_celeb,@carmeloanthony,"""Don't Be Afraid To Embrace Your DestiNY"" #StayMe7o https://t.co/X1MtVNCkbp" +09/27/2016,Sports_celeb,@carmeloanthony,Text 47246 for more info on how to vote during #Election2016! https://t.co/j6IqADbONg +09/27/2016,Sports_celeb,@carmeloanthony,Take a behind the scenes look at this year's A Very Melo Weekend in Puerto Rico #AVMW2016 #CAF #sagebusinessgroup… https://t.co/D0u9OnFpy6 +09/27/2016,Sports_celeb,@carmeloanthony,#NYKMediaDay #DestiNY https://t.co/LVCFf6yqBz +09/26/2016,Sports_celeb,@carmeloanthony,Trust The Process. Enjoy the Journey. Embrace Your Destiny. #StayMe7o https://t.co/2vKylEgobR +06/26/2018,Sports_celeb,@KDTrey5,"Thank u to the @NBA, the fans and my KDCF/KD Enterprises team for all the support. https://t.co/vybMqLTp8x" +06/22/2018,Sports_celeb,@KDTrey5,"RT @acorns: Introducing Acorns Spend - the only checking account and debit card that saves, invests and earns for you! #FutureIsYours #Grow…" +06/13/2018,Sports_celeb,@KDTrey5,"RT @RonConway: Kudos to @laurenepowell who is working tirelessly on education reform, immigration reform, and so many more worthwhile cause…" +06/13/2018,Sports_celeb,@KDTrey5,"RT @PlayersTribune: All-Access Bay Bash with @KDTrey5. +https://t.co/nUMzmea45z" +06/13/2018,Sports_celeb,@KDTrey5,"More on the colorways and design @nikebasketball #KD11 +https://t.co/19STMAsHJs" +06/13/2018,Sports_celeb,@KDTrey5,First look at the #KD11 on my @youtube w @IAmJayJones : https://t.co/NXIjSIJL2L +06/13/2018,Sports_celeb,@KDTrey5,RT @PlayersTribune: Inside the Warriors championship parade with Finals MVP @KDTrey5. https://t.co/AgcQ2geWk6 +06/12/2018,Sports_celeb,@KDTrey5,RT @IAmJayJones: MIND MATTERS E:2 with Kevin Durant| Discussing the NIKE KD11: https://t.co/auvPwqENVC via @YouTube +06/12/2018,Sports_celeb,@KDTrey5,RT @IAmJayJones: KD’s video: First Look at the KD 11 https://t.co/6wJRjbLMPf +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “You can accomplish any goal by rising & grinding: nothing worth having will come easy. It’s important for our youth to know th… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “There are so many heroes in my community that allow me to be here today. We grind through so many things & this is our opportu… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: “We don’t do this for recognition. We don’t do it for the shine. We do it for the community. But it feels good to get recognize… +06/12/2018,Sports_celeb,@KDTrey5,RT @NikeSF: @nikebasketball @KDTrey5 @warriors “We work hard to build a foundation for our kids. To be able to lift & empower people is mag… +06/12/2018,Sports_celeb,@KDTrey5,"RT @NikeSF: Rise. Grind. Shine. Again. + +To celebrate the championship, we’re celebrating Champions of Oakland, community members who sacrif…" +06/12/2018,Sports_celeb,@KDTrey5,Tonight on @jimmykimmel https://t.co/36kAXE0j2D +06/10/2018,Sports_celeb,@KDTrey5,Let’s go #DubNation! I’ll be on @jimmykimmel Monday night (tomorrow) to celebrate our B2B championships🏆🏆 +06/08/2018,Sports_celeb,@KDTrey5,"RT @pieology: One assist deserves another. For every assist @KDTrey5 gets during tonight’s game, @Pieology donates $1,000 to his foundation…" +06/04/2018,Sports_celeb,@KDTrey5,💯 Very cool to watch this come together https://t.co/ZdRaUifC1g +05/31/2018,Sports_celeb,@KDTrey5,Checking in with y'all on @YouTube before Game 1...let's go #DubNation https://t.co/pW7slAQ0Sf +05/30/2018,Sports_celeb,@KDTrey5,"RT @thirtyfivemedia: Stay tuned for our latest project, ""Q Ball"", executive produced by @KDTrey5 & @richkleiman in conjunction w/Fox Sports…" +05/30/2018,Sports_celeb,@KDTrey5,RT @AlaskaAir: Thank you to our entire team! We’re celebrating our 11th consecutive J.D. Power award for “Highest in Customer Satisfaction… +05/22/2018,Sports_celeb,@KDTrey5,"RT @lonelywhale: ""Your sipping habits at 33,000 feet are about to get a makeover: Today, @AlaskaAir became the first U.S. airline to ban si…" +05/22/2018,Sports_celeb,@KDTrey5,RT @darrenrovell: I sat down with @KDTrey5 to discuss is growing business empire https://t.co/H6FnKfwo4b +05/19/2018,Sports_celeb,@KDTrey5,RT @Essence: Two women make history as first Black female pilots to fly for Alaska Airlines. https://t.co/vxUuEpLa7R https://t.co/PiP7ERSSw1 +05/03/2018,Sports_celeb,@KDTrey5,"RT @pgcps: RT to vote for #KevinDurant for the #NBACommunityAssist Award! + +The Durant Charity Foundation recently committed $10 million to…" +04/30/2018,Sports_celeb,@KDTrey5,"RT @warriors: #KevinDurant is making a difference on & off the court 💙💛 + +RETWEET to vote for him for the #NBACommunityAssist Award! https:/…" +04/29/2018,Sports_celeb,@KDTrey5,"Great home win last night, thank you #DubNation for always bringing the energy and to my guys @pieology for sending pizza for the team!" +04/29/2018,Sports_celeb,@KDTrey5,RT @AlaskaAir: We’re flying high into the semifinals with @KDTrey5. We’re giving two lucky fans a chance to win an autographed Kevin Durant… +04/25/2018,Sports_celeb,@KDTrey5,"Thanks to everyone who’s voting, this one really means a lot to me https://t.co/y9SFme3Ppw" +04/25/2018,Sports_celeb,@KDTrey5,Proud of all the work we're doing in the Bay with @AlaskaAir - check the BTS of our shoot on my YouTube now:… https://t.co/ESwXCoPTb4 +04/21/2018,Sports_celeb,@KDTrey5,Year 1 of my fantasy camp at the @warriors practice facility was one for the books - sign up is open now for this y… https://t.co/IoOK2A4oVW +04/21/2018,Sports_celeb,@KDTrey5,RT @overtime: THIS IS WHAT YOU DO 🚨🚨🚨 @teamdurantaau @KDTrey5 @RMBWilliams https://t.co/3VKTJ0Upz5 +04/19/2018,Sports_celeb,@KDTrey5,Big honor for me to be on this year's #TIME100 list. Thanks @cue for the kind words! https://t.co/OlcoRZMggj +04/12/2018,Sports_celeb,@KDTrey5,Some of the best from @javalemcgee Parking Lot Chronicles through the season - watch em all if you missed them… https://t.co/RKwtSUivnY +04/12/2018,Sports_celeb,@KDTrey5,RT @warriors: A message from @KDTrey5 & @D_West30. #StrengthInNumbers #DubNation https://t.co/oZBbqp99Lz +04/06/2018,Sports_celeb,@KDTrey5,Congratulations to my friend @CoachOG on becoming the next head coach for UT Arlington.  He is the true definition… https://t.co/74TNm3wcMY +04/04/2018,Sports_celeb,@KDTrey5,RT @jack: I can’t imagine what our friends at YouTube are feeling and dealing with right now. We‘re here for you and your families and frie… +04/04/2018,Sports_celeb,@KDTrey5,RT @RonConway: Another senseless shooting in our own backyard @YouTube. After #Parkland we said #Enough & #NeverAgain & we #MarchedForOurLi… +04/02/2018,Sports_celeb,@KDTrey5,RT @teamdurantaau: First episode of 35 Degrees with LT! Follow the teams with LT throughout the season. Don't miss out!... https://t.co/quZ… +03/31/2018,Sports_celeb,@KDTrey5,"RT @PlayersTribune: ""This should’ve been the best year of my life — and it was, for a while. Until I turned it into a nightmare."" + +@Dardoch…" +03/28/2018,Sports_celeb,@KDTrey5,@MikeWiLLMadeIt you already know how it is!! 💯💯 +03/24/2018,Sports_celeb,@KDTrey5,"RT @warriors: ""Just that her name is in the sneaker world & the basketball world, it rings louder & louder every year."" - @KDTrey5 on the @…" +03/24/2018,Sports_celeb,@KDTrey5,RT @RonConway: In Washington DC for the #MarchForOurLives! Proud to join these national leaders and the #Parkland students fighting to stem… +03/20/2018,Sports_celeb,@KDTrey5,Checking out who's got next! Part 3 with @overtime https://t.co/ukJ5iQdBW9 +03/20/2018,Sports_celeb,@KDTrey5,"RT @overtime: Kevin Durant Breaks Down Top HS Players Part 3 | KD on Mac McClung, Jordan McCabe, Bol Bol, Andre Ball & Tyler Herro 🔥 Full V…" +03/19/2018,Sports_celeb,@KDTrey5,Had some fun with the Google Assistant in their new ad...#HeyGoogle remind me to order more gummy bears. https://t.co/wLD2pPEubD +03/15/2018,Sports_celeb,@KDTrey5,RT @thirtyfivemedia: Watch the Oscar-worthy season finale of Parking Lot Chronicles with @JaValeMcGee & @KDTrey5 now: https://t.co/mRDrUNOG… +03/15/2018,Sports_celeb,@KDTrey5,Parking Lot Chronicles season finale!! Show @javalemcgee some love https://t.co/9rfC982eTD +03/14/2018,Sports_celeb,@KDTrey5,Don't sleep on my first video with @michaelrapaport. Got a new episode of Parking Lot Chronicles coming this week f… https://t.co/rqKFF7atTD +03/12/2018,Sports_celeb,@KDTrey5,@SteveCahill12 someone’s upset +03/12/2018,Sports_celeb,@KDTrey5,"@boggerVB didn’t mean to hurt u this morning, I’ll unlike immediately. 🐍💪🏿🙏🏾🐍🐍" +03/12/2018,Sports_celeb,@KDTrey5,@ZaayWoop u mad I liked a post on Twitter? Really bruh? +03/12/2018,Sports_celeb,@KDTrey5,@Irishodonnell5 🤘🏿🐍 no doubt! Thanks for coming to the game +03/09/2018,Sports_celeb,@KDTrey5,Got to check in on progress at the Durant Center on our trip to DC - crazy to watch it come to life… https://t.co/hE3ePSU1E4 +03/08/2018,Sports_celeb,@KDTrey5,My guy @MichaelRapaport talks a big game but at the end of the day you know he's a fan. Watch #Rapaport:… https://t.co/pDmBBLN7Wj +03/05/2018,Sports_celeb,@KDTrey5,Here we go!! Watch the new @michaelrapaport series here: https://t.co/5VQSSBnMpJ +03/03/2018,Sports_celeb,@KDTrey5,RT @MichaelRapaport: Special Guest @KDTrey5 joins us on a brand new episode of the #ShameGame @deanrcollins COMING SOON https://t.co/BFhogr… +03/02/2018,Sports_celeb,@KDTrey5,New series on my @YouTube with @MichaelRapaport!! https://t.co/bHEFZhrKBU +02/23/2018,Sports_celeb,@KDTrey5,"The Durant Center has been a dream of mine for a long time, excited to announce it's finally happening in Prince Ge… https://t.co/KahquEdMbg" +02/22/2018,Sports_celeb,@KDTrey5,RT @SteveNash: I'm so inspired by the young people in America standing up for their future. I really believe it's our best chance to see ch… +02/16/2018,Sports_celeb,@KDTrey5,"LJ and I are locked in for #NBAAllStar: https://t.co/efYJH7YKCV +#rollingwiththechampion https://t.co/2cAJVjEhB9" +02/16/2018,Sports_celeb,@KDTrey5,More from my ride with @CariChampion @KingJames up on my YouTube now https://t.co/PGIQipcNxn +02/15/2018,Sports_celeb,@KDTrey5,Thanks for the love @nytimes https://t.co/oh3WP3XjWR +02/15/2018,Sports_celeb,@KDTrey5,Rolling with @carichampion @kingjames: https://t.co/uRkwepGMc0 https://t.co/cmEE5YHpef +02/15/2018,Sports_celeb,@KDTrey5,"RT @SkydioHQ: Skydio R1 understands and acts in the world through the Skydio Autonomy Engine, which combines breakthrough technology in adv…" +02/14/2018,Sports_celeb,@KDTrey5,"RT @THR: Sports media startup Overtime raises $9M from Andreessen Horowitz, @KDTrey5 https://t.co/TqpEvS1OTN https://t.co/yfJo8g0Czs" +02/13/2018,Sports_celeb,@KDTrey5,RT @THR: .@KDTrey5 is prepping a scripted basketball drama for @Apple https://t.co/4Zp9a8K182 https://t.co/oWxxlvabbb +02/13/2018,Sports_celeb,@KDTrey5,So excited to partner with Imagine and Apple on this series...much more to come @richkleiman @thirtyfivemedia https://t.co/ZC21fSkXIe +02/13/2018,Sports_celeb,@KDTrey5,"RT @SkydioHQ: This is Skydio R1 Frontier Edition: a self-flying camera that knows what to film and flies itself to get the best shot, letti…" +02/10/2018,Sports_celeb,@KDTrey5,New Parking Lot Chronicles alert!! @javalemcgee @derekcarrqb @casspi18 https://t.co/xaobuGk7IF +02/08/2018,Sports_celeb,@KDTrey5,RT @RMBWilliams: It’s Official @KDTrey5 @TeamDurantAAU has joined the @NikeEYB & will be Playing 16’s this Summer! #KevinDurant #NBA #NBAAl… +01/30/2018,Sports_celeb,@KDTrey5,Big episode of PLC up now! @javalemcgee @stephencurry30 @michaelrapaport @imanitrishawn_ https://t.co/sbn116GqWp +01/25/2018,Sports_celeb,@KDTrey5,"RT @TheUndefeated: As we continue our State of the Black Athlete series, @KDTrey5 pens a letter to his neighborhood, and reflects on growin…" +01/24/2018,Sports_celeb,@KDTrey5,RT @CNTraveler: The Alaska Airlines/Virgin America merger has the potential to be one of the best airlines in the country https://t.co/6OCh… +01/22/2018,Sports_celeb,@KDTrey5,Great day in the bay! What up? +01/22/2018,Sports_celeb,@KDTrey5,"This was a fun one, check it out: https://t.co/hqZAmtofZh https://t.co/Ywni5ReShA" +01/20/2018,Sports_celeb,@KDTrey5,RT @richkleiman: Check it out https://t.co/NuXjDCITff +01/18/2018,Sports_celeb,@KDTrey5,"RT @nealmohan: Thrilled to partner with Thirty Five Media, @richkleiman and @KDTrey5 to help sports stars launch YouTube channels and creat…" +01/18/2018,Sports_celeb,@KDTrey5,RT @KarlTowns: I finally made a @YouTube channel! Check it out for all access to my life on & off the court & more. Subscribe & enjoy! htt… +01/17/2018,Sports_celeb,@KDTrey5,Thank you for all that you do brother @Kaepernick7 https://t.co/1KYcjBEqdY +01/17/2018,Sports_celeb,@KDTrey5,RT @FastCompany: .@KDTrey5 will assist other athletes questing for YouTube stardom https://t.co/c0HVprK6qp https://t.co/NnV6QqDAF2 +01/17/2018,Sports_celeb,@KDTrey5,"RT @thirtyfivemedia: We're excited to continue our partnership with @YouTube to create athlete channels, new series, and more https://t.co/…" +01/15/2018,Sports_celeb,@KDTrey5,New Parking Lot Chronicles ⬇️ https://t.co/m5Zl0sGDuL +01/13/2018,Sports_celeb,@KDTrey5,@Postmates thanks for the love! +01/12/2018,Sports_celeb,@KDTrey5,Got a chance to catch up and answer some great fan q's this week on my @YouTube 📹: https://t.co/f1TOuoUs1z +01/11/2018,Sports_celeb,@KDTrey5,"RT @AlaskaAir: Kevin Durant just scored a HUGE milestone—20,000 career points. To celebrate @KDTrey5's achievement, we're giving one lucky…" +01/06/2018,Sports_celeb,@KDTrey5,Yesterday was amazing @UTAustin @TexasMBB! Video from the day: https://t.co/w1wegYjtcE #HookEm #Longhorn4Life +01/03/2018,Sports_celeb,@KDTrey5,RT @RonConway: Tribute to Ed Lee in Time Magazine - how fitting and well deserved for him and his family: https://t.co/P0Cco1UmHm +01/02/2018,Sports_celeb,@KDTrey5,Taking a look back on 2017 and wishing everyone a happy New Year https://t.co/Hf4ficMQ5x +12/25/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles ep 6 is out! Happy holidays @JaValeMcGee @QCook323 https://t.co/d6TJ0bgGMA +12/22/2017,Sports_celeb,@KDTrey5,New video up from one of my favorite days of the year visiting Oakland Elizabeth House again and meeting the youth… https://t.co/5YPjJg733w +12/21/2017,Sports_celeb,@KDTrey5,"RT @warriors: Get your votes in early for #NBAAllStar 👇🏽 + +💻 » https://t.co/dI40RybctL +📱» https://t.co/1GLNiOaLcx https://t.co/REuZ6NILY5" +12/19/2017,Sports_celeb,@KDTrey5,Big things to come @Overtime #TheDurantCompany https://t.co/6KSIOL8oxL +12/16/2017,Sports_celeb,@KDTrey5,RT @JaValeMcGee34: NEW EPISODE OUT! Parking lot chronicles feat @Money23Green https://t.co/lXCj55HQXl +12/15/2017,Sports_celeb,@KDTrey5,The boy @JaValeMcGee34 is back! Parking Lot Chronicles Ep 5 with @Money23Green https://t.co/xFBwt4QUwq +12/12/2017,Sports_celeb,@KDTrey5,"RT @PlayersTribune: “He did not like rules. And I don’t just mean fashion rules.” + +The wild, unpredictable, courageous life of Craig Sager.…" +12/05/2017,Sports_celeb,@KDTrey5,RT @NickSwagyPYoung: The best show on YouTube when I’m on it lol 😂👀😂 JaVale McGee's Parking Lot Chronicles: Episode 4 https://t.co/PSaiYdi2… +12/05/2017,Sports_celeb,@KDTrey5,"RT @JaValeMcGee34: New Episode of Parking Lot Chronicles feat. @1jordanbell n @NickSwagyPYoung https://t.co/3dcTqiMwGL +Check on @KDTrey5 Y…" +12/05/2017,Sports_celeb,@KDTrey5,"Parking Lot Chronicles Episode 4 is up now, best one yet @JaValeMcGee34​ https://t.co/41vghbo2yc" +11/29/2017,Sports_celeb,@KDTrey5,New video up! Reviewing some of the best high school ballers on @Overtime​ https://t.co/Bm7SjcO8qd +11/28/2017,Sports_celeb,@KDTrey5,"@nealmohan I’m into it. Gonna pop on later this week to check in with my fans, been a great experience for me so far" +11/28/2017,Sports_celeb,@KDTrey5,Got word that the @YouTube Community tab I've been talking to you guys on is opening up to more creators this week. @nealmohan true? +11/25/2017,Sports_celeb,@KDTrey5,Good luck to the USA Men’s World Cup Qualifying Team tomorrow in Greensboro #FIBAWC #DefendTheCup https://t.co/yNSOdzv92n +11/20/2017,Sports_celeb,@KDTrey5,All-basketball Q&A session up now! Gonna keep doing these for you guys throughout the season https://t.co/ABl1hHsgfd +11/19/2017,Sports_celeb,@KDTrey5,New vid going up tomorrow answering some of your 🏀 q’s. Watch @javalemcgee34's Parking Lot Chronicles first https://t.co/ZAuOUEULc9 +11/19/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Kevin Durant on His Legendary Game at Harlem’s Rucker Park | GQ https://t.co/C4treZRPZt via @YouTube +11/18/2017,Sports_celeb,@KDTrey5,RT @warriors: 📷 @KDTrey5 for @GQMagazine » https://t.co/AYc2gyyEcT https://t.co/HFkDdi4iZb +11/16/2017,Sports_celeb,@KDTrey5,Cool animation @GQMagazine on my Rucker game https://t.co/k6F27k2sTE +11/16/2017,Sports_celeb,@KDTrey5,Tune in and show some love https://t.co/REYatmcvhq +11/16/2017,Sports_celeb,@KDTrey5,Behind the scenes of my @GQMagazine shoot up now on YouTube https://t.co/FxKDM7IupF +11/16/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: Kevin Durant is just heating up https://t.co/ZRQNpJwfRl #GQMOTY https://t.co/CwibVCeB7H +11/16/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: Our Champion of the Year: @KDTrey5 https://t.co/IlOUK9Lr48 #GQMOTY https://t.co/D1BaD7qGAm +11/15/2017,Sports_celeb,@KDTrey5,RT @richkleiman: JaVale McGee's Parking Lot Chronicles: Episode 3 https://t.co/oQfHm5aqdi via @YouTube +11/14/2017,Sports_celeb,@KDTrey5,"RT @YTCreators: You might know him from the @NFL, but check out @RSherman_25's @YouTube channel where you'll get a behind the scenes look i…" +11/14/2017,Sports_celeb,@KDTrey5,"RT @nealmohan: Welcome to @YouTube, @RSherman_25! https://t.co/piLoOwRPnB" +11/13/2017,Sports_celeb,@KDTrey5,This story is a must-read...honored & humbled to share a cover w you @Kaepernick7 https://t.co/QFtIFj7DL5 +11/13/2017,Sports_celeb,@KDTrey5,RT @GQMagazine: .@Kaepernick7 will not be silenced https://t.co/NxQFCxdf1L #GQMOTY https://t.co/jBIa1cHwPm +11/13/2017,Sports_celeb,@KDTrey5,In good company! Thank you @GQMagazine for the honor https://t.co/SiB5AkTeYU +11/13/2017,Sports_celeb,@KDTrey5,Watch on my @YouTube channel https://t.co/ZAuOUEULc9 https://t.co/he84jiPPYR +11/11/2017,Sports_celeb,@KDTrey5,"RT @PlayersTribune: “In 2017, in America, silence is no longer an option.” + +@StephenCurry30 in his own words. https://t.co/1RNiZjUoEe" +11/11/2017,Sports_celeb,@KDTrey5,RT @JaValeMcGee34: NEW EPISODE OF THE PARKING LOT CHRONICLES EPISODE 3 IS OUT ON @KDTrey5 YOUTUBE. https://t.co/lc0lD88pNP +11/11/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles is back! New one with @javalemcgee34 @klaythompson @e40 @AR510 https://t.co/ZAuOUEULc9 +11/10/2017,Sports_celeb,@KDTrey5,Follow my business partner’s new IG https://t.co/qDOBcO2mPQ https://t.co/M2vLHUl3xk +11/10/2017,Sports_celeb,@KDTrey5,Gearing up for another Q&A vid - get your questions in here: https://t.co/tTqTDE73vS +11/10/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Parking lot chronicles 3 coming soon https://t.co/T8oYAqXvuu https://t.co/lTgUe3WhQ8 +11/10/2017,Sports_celeb,@KDTrey5,🔥🔥🔥 https://t.co/YMXUZJ3W39 +10/29/2017,Sports_celeb,@KDTrey5,"RT @richkleiman: Make sure not to miss it!! +JaVale McGee's Parking Lot Chronicles: Episode 2 https://t.co/4P5Nf65QJe via @YouTube" +10/25/2017,Sports_celeb,@KDTrey5,RT @RonConway: #BandTogetherBayArea 11/9 @ATTPark - proud to support #northbayfire relief w/ @Metallica @davematthewsbnd @G_Eazy https://t.… +10/25/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles @Javalemcgee34 Episode 2 is up! Including a special appearance from yours truly https://t.co/cj0gf0abfw +10/24/2017,Sports_celeb,@KDTrey5,Subscribe to my channel to get updates - we got a new @JaValeMcGee34 episode coming up too! https://t.co/wwzZJsEO7e +10/24/2017,Sports_celeb,@KDTrey5,New vid up from opening night and the ring ceremony https://t.co/5LzVZ8aNDY +10/22/2017,Sports_celeb,@KDTrey5,ICYMI: First episode of @JaValeMcGee34 Parking Lot Chronicles is up now! Episode 2 hits next week https://t.co/MqUEi4Un3D +10/20/2017,Sports_celeb,@KDTrey5,Hard Work @beatsbydre #1of1 https://t.co/ixyF4DCMkL +10/19/2017,Sports_celeb,@KDTrey5,Parking Lot Chronicles Ep 1 w/@JavaleMcGee34 @andre @NickSwagyPYoung https://t.co/MqUEi4Un3D +10/17/2017,Sports_celeb,@KDTrey5,Here we go...the first episode of Parking Lot Chronicles with @JaValeMcGee34 is up now! https://t.co/MqUEi4Un3D presented by @beatsbydre +10/17/2017,Sports_celeb,@KDTrey5,Thank you!! Appreciate the love https://t.co/xXunye9p5X +10/16/2017,Sports_celeb,@KDTrey5,What happens when you give @JaValeMcGee34 a camera crew @OracleArena. Parking Lot Chronicles starts tomorrow https://t.co/Oqjk5n3Tl1 +10/16/2017,Sports_celeb,@KDTrey5,💯 https://t.co/7KoOh9793X +10/16/2017,Sports_celeb,@KDTrey5,"My @FastCompany article is out now, this one is really special to me. Read it here: https://t.co/utqW7Gy86V https://t.co/pEJKaiMwSM" +10/14/2017,Sports_celeb,@KDTrey5,"RT @warriors: #DubNation, check out @KDTrey5 on the cover of @FastCompany & his Q&A over on his YouTube » https://t.co/We8D95qxlv https://t…" +10/14/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Make sure to watch KD Fan Q&A and Fast Company Cover reveal https://t.co/v1RKLIx0bi +10/14/2017,Sports_celeb,@KDTrey5,RT @FastCompany: Our Nov issue features NBA star Kevin Durant's nascent business empire. Get a sneak peak and insights from @KDTrey5: https… +10/13/2017,Sports_celeb,@KDTrey5,On the cover of @FastCompany - story out next week! Sharing the moment & answering your Q's on my Youtube:… https://t.co/GPn2GPaSsd +10/10/2017,Sports_celeb,@KDTrey5,New court launch in Redwood City! S/o to @AlaskaAir for the grand prize. Watch: https://t.co/99pRs9uN3F +10/09/2017,Sports_celeb,@KDTrey5,RT @darrenrovell: JUST IN: @KDTrey5’s investment company has taken a stake in upstart fast casual pizza biz @pieology https://t.co/4L3A0zHE… +10/03/2017,Sports_celeb,@KDTrey5,Some thoughts on getting ready for the season and a look inside @Warriors training camp: https://t.co/24rVUWespF +09/29/2017,Sports_celeb,@KDTrey5,New Nike x NBA connected jersey 🔥 Check the bts from the launch on my YouTube https://t.co/9WODbGxNDE https://t.co/4WA7TmZAxH +09/28/2017,Sports_celeb,@KDTrey5,RT @richkleiman: San Francisco Magazine | Modern Luxury | KD and the VCs: How Kevin Durant Became a Made Man in Silicon Valley https://t.co… +09/28/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Kevin Durant is newest MVP for Alaska Airlines https://t.co/cDz7PIqTOU +09/25/2017,Sports_celeb,@KDTrey5,Back to the grind...some thoughts on coming back to the Bay and from the NBA x Nike jersey launch https://t.co/9WODbGgcM6 +09/21/2017,Sports_celeb,@KDTrey5,"New #KDCF court, vid coming soon. Thanks to @AlaskaAir for hooking our B&G Club winner up, more on our partnership… https://t.co/lDS8IPfnTO" +09/21/2017,Sports_celeb,@KDTrey5,RT @richkleiman: .@laurenepowell & @ronconway urge #TCDisrupt audience to call Congress & tell them to pass the #DREAMAct https://t.co/WIWe… +09/20/2017,Sports_celeb,@KDTrey5,Yesterday's talk @TechCrunch Disrupt with @richkleiman https://t.co/8e8iQk5Ksb +09/19/2017,Sports_celeb,@KDTrey5,Thanks @sanfranmag for the love - cover story out now https://t.co/1YgWF29vWb https://t.co/jYehjf6llE +09/19/2017,Sports_celeb,@KDTrey5,On my way to TechCrunch Disrupt SF this am w @richkleiman to talk business #TCDisrupt +09/18/2017,Sports_celeb,@KDTrey5,Shooting contest with Chris Mullin up now on @YouTube​ https://t.co/8HqlqDmlh3 +09/18/2017,Sports_celeb,@KDTrey5,Officially part of the @AlaskaAir team. Looking fwd to doing great things in the Bay & beyond #ThirtyFiveMedia https://t.co/DXBxdbIg8m +09/17/2017,Sports_celeb,@KDTrey5,"Good win skins. Cowboys, pass the sticks" +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga you have to start wording shit like this a little better, I'm confused lol" +09/16/2017,Sports_celeb,@KDTrey5,"@codywallace1244 no, I just deleted it." +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga I see u, well it's a bet" +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga https://t.co/sgtZKHFxI5 +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga and my 5 racks +09/16/2017,Sports_celeb,@KDTrey5,"@OprahSideNigga wen I win, Ima need u to take the caps lock off and wear full warrior gear all the way down to the socks, for a whole day." +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga you do NOT wanna lose 5 racks to me. +09/16/2017,Sports_celeb,@KDTrey5,@OprahSideNigga u trash +09/16/2017,Sports_celeb,@KDTrey5,@NickSwagyPYoung https://t.co/C0ClFWS0bN +09/16/2017,Sports_celeb,@KDTrey5,Q&A from Nike campus with @SteveNash​ https://t.co/c84CK7pv26 +09/15/2017,Sports_celeb,@KDTrey5,It's time for my fantasy camp weekend - you can still help make an impact even if you're not there in person:… https://t.co/AeybM99Kq5 +09/15/2017,Sports_celeb,@KDTrey5,RT @richkleiman: Looking forward to @TechCrunch Disrupt SF on Tues w @KDTrey5. More info: https://t.co/xhHNnLLHwP #TCDisrupt #ThirtyFiveMed… +09/14/2017,Sports_celeb,@KDTrey5,@Bmaggia you're just upset. I get it lol. I love you too +09/14/2017,Sports_celeb,@KDTrey5,@CKiepert I bring out the ya mama jokes on occasion. Be on the look out +09/14/2017,Sports_celeb,@KDTrey5,"@Bmaggia scenario: u tell a joke on me, I laugh, I make a joke about u, u call me soft?? 🤔🤔 makes zero sense to me. Who's the soft one?" +09/13/2017,Sports_celeb,@KDTrey5,@incarceratedbob @Stugotz790 same man that uses amazon instead of going to the mall. Lmao +09/12/2017,Sports_celeb,@KDTrey5,@Mohsin_35_313 thanks bro!! +09/10/2017,Sports_celeb,@KDTrey5,@Smailing07 @OGZaves didn't know I played golf +09/10/2017,Sports_celeb,@KDTrey5,@OGZaves I now play for every team in every league. Mission accomplished! Winning rings every year until I retire +09/09/2017,Sports_celeb,@KDTrey5,"@zoolander8816 I don't get this one. I think u mean Atlanta or to be even funnier, the patriots 🗣 HA" +09/08/2017,Sports_celeb,@KDTrey5,@deusoc17 so you're tellin me what I was thinking? +09/08/2017,Sports_celeb,@KDTrey5,@thehappydaze u said 81 and I gave u somebody else that didn't have 81 and u backtracking. Think before u tweet me lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest everyday, I don't think about if we are gonna win or lose a game. Every single day I think about my individual skills tho" +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest I play for more than one reason. If anybody tell u they don't then it's just a lie +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest a coach is suppose to put me in position to maximize what i do best. That's why more than one person wins a ring. +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest i play to be the best individual talent I can be, that's why u work out by yourself." +09/08/2017,Sports_celeb,@KDTrey5,@Jason_Stateman it is. +09/08/2017,Sports_celeb,@KDTrey5,@thehappydaze mj? +09/08/2017,Sports_celeb,@KDTrey5,@channooo3 thank u lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest if u do the eye test, u would know that mac was different." +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest t mac could do it all. Don't get it twisted. He was booked in for 30-6-5 every night. Nobody could stop him bro lol +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest I'm on here arguing about TMac. What has the world come to, guess he's not the ""two way player"" u want." +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest u don't know basketball so you don't get it +09/08/2017,Sports_celeb,@KDTrey5,"@waldorfsfinest he played with mutumbo when he was the oldest player in the league and grant hill got hurt a few times, so did Yao!" +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest he got traded for franchise. Know your history +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest oh yea I know that +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest it's always been about winning. U get more buckets than the other team and u win +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest I don't get what u tryna say. +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest u like assist and rebounds right? U make a pass so that u can score right? U rebound an attempted shot right? +09/08/2017,Sports_celeb,@KDTrey5,@waldorfsfinest elaborate +09/08/2017,Sports_celeb,@KDTrey5,@blazeisbaseball he wore number 1 on his jersey +09/08/2017,Sports_celeb,@KDTrey5,"The game will always be about buckets. When it comes to buckets, there was nobody like T-Mac. FOH, number 1 in the HOF. Respect OG" +06/29/2018,Sports_celeb,@alleniverson,"To all my fans, I wish @JahlilBeats much success with his event in Chester. Please come out and support it!" +06/25/2018,Sports_celeb,@alleniverson,"9 years ago today, the King of Pop passed away!! #TheGreatest https://t.co/BpSJ61kXnt" +06/21/2018,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: The best player in the NBA Draft tonight is Collin Sexton from Alabama. He has .... https://t.co/zt0DCZcMDn https://t.c… +06/07/2018,Sports_celeb,@alleniverson,"Due to scheduling conflicts, I have informed the… https://t.co/njdvsZak53" +05/23/2018,Sports_celeb,@alleniverson,Me X Kith X Mitchell and Ness https://t.co/Xb5HoknUUS +05/21/2018,Sports_celeb,@alleniverson,"Coming to see all my fans at the Chicago Sports Spectacular in Rosemont, IL, on Saturday, June 9th, at the Donald E… https://t.co/0C5THcD1hy" +05/06/2018,Sports_celeb,@alleniverson,Love champ!! RT @JCrossover: One of the King's of this thing. More influence on my game than anyone else.… https://t.co/Vhm6SSapwo +05/05/2018,Sports_celeb,@alleniverson,Happy birthday Lil homie!! @kevinporterjr https://t.co/eX5PoytJcs +04/24/2018,Sports_celeb,@alleniverson,Tune in!! I'm up next on @firstTake talking @sixers and more!!! +04/20/2018,Sports_celeb,@alleniverson,Next Up!!! #Georgetown #PracticeGreatness #IversonClassic iversonclassic @ Souderton Area High… https://t.co/GDZJekhUz8 +04/20/2018,Sports_celeb,@alleniverson,#PracticeGreatness #IversonClassic iversonclassic @ Souderton Area High School https://t.co/R6GTlPZnlm +04/20/2018,Sports_celeb,@alleniverson,Witnessing jaw dropping talent #PracticeGreatness #IversonClassic 📸: @Suav5 @ Souderton Area… https://t.co/7WM5UCnUtV +04/20/2018,Sports_celeb,@alleniverson,Me and the Philly legend! 📸: @Suav5 @ Souderton Area High School https://t.co/ksfhncIN54 +04/20/2018,Sports_celeb,@alleniverson,Me and the rock reminiscing!!! 📸: @Suav5 @ Souderton Area High School https://t.co/zJy9niTnrp +04/20/2018,Sports_celeb,@alleniverson,Save up to 50% on my collection & across the entire @RootsofFight store in their huge #SpringCleaningSale event rig… https://t.co/WhLxuPNIIF +04/19/2018,Sports_celeb,@alleniverson,Prayers and condolences go out to Gregg Popovich and his family!! +04/18/2018,Sports_celeb,@alleniverson,My exclusive shoe for the best high school players in the country #YouWereChosen @iversonclassic @Reebok https://t.co/vKWvkE4r5F +04/17/2018,Sports_celeb,@alleniverson,SIXERS 4 LIFE! https://t.co/FWUalfjBE5 +04/17/2018,Sports_celeb,@alleniverson,With the Philly guys!!! https://t.co/UDe97goBbQ +04/14/2018,Sports_celeb,@alleniverson,#HereTheyCome #PhilaUnite https://t.co/DBghp5uzaV +04/13/2018,Sports_celeb,@alleniverson,Happy bday lil dude!!! https://t.co/f4EKYK04E5 +04/13/2018,Sports_celeb,@alleniverson,RT @iversonclassic: .@alleniverson said: Only the strong survive! America’s most competitive games begin in Philly in 6 days! https://t.co/… +04/02/2018,Sports_celeb,@alleniverson,RT @SLAMonline: Love the game. https://t.co/LXgUqfGKuj +04/02/2018,Sports_celeb,@alleniverson,Only the strong survive!!!... ticket link for @iversonclassic in bio https://t.co/3pksnyIH8Y +03/27/2018,Sports_celeb,@alleniverson,Welcome to the @Rootsoffight family @BretHart & @ReyMysterio Two legends joining #AndreTheGiant in the new… https://t.co/JJ0U7lUQsX +03/23/2018,Sports_celeb,@alleniverson,This is it! The 2018 #IVERSONCLASSIC roster is here! Get ready for the most competitive game in America.… https://t.co/wFaUkSB3Au +03/11/2018,Sports_celeb,@alleniverson,"RT @fanthropic: Hey, @sixers Fans! Wanna be a #Sixer for a day & hang with #76er legend @alleniverson? Thanks to #Fanthropic & #SixersYouth…" +03/10/2018,Sports_celeb,@alleniverson,I did not grant my name and likeness to be used as promotion for this event. I will not be in… https://t.co/kfwHQ40uOk +02/17/2018,Sports_celeb,@alleniverson,I THANK YOU!!!! https://t.co/qIumUfonA0 +02/17/2018,Sports_celeb,@alleniverson,"#EnoughSaid #IDidItMyWay #AsLongAsMyFamilyFriendsAndFansLoveIt #GodBless ... + Get this jacket from @rootsoffight… https://t.co/lHgX19ivRB" +02/16/2018,Sports_celeb,@alleniverson,All-Star for LIFE!!! #RedAuerbach https://t.co/thcr4ca9jg +02/15/2018,Sports_celeb,@alleniverson,"Oh yea, we in good hands!!! @sixers https://t.co/wmyoyPQ08u" +02/09/2018,Sports_celeb,@alleniverson,Go get your Ai bomber today!!! https://t.co/beSCnIKgGm https://t.co/BlL3sx0afF +01/31/2018,Sports_celeb,@alleniverson,Rest easy my brother. See you when I get there!!! https://t.co/Npsnib7k5t +01/11/2018,Sports_celeb,@alleniverson,"However you want it, you can get it!!! #FittyPiece ... @TeamLou23 https://t.co/soTd7DWk6T" +01/03/2018,Sports_celeb,@alleniverson,Congratulations to the “Game Changer” award winners of the #CrossoverHolidayShowcase for winning the Ai Melton jack… https://t.co/QCXt33nLgC +12/26/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Tomorrow we start up the 3rd annual Crossover High School Christmas holiday showcase!!! A family friendly event that you… +12/24/2017,Sports_celeb,@alleniverson,Give the gift of crossovers this holiday season with #NBALIVEMobile! For .... https://t.co/VJHg3GhPqx https://t.co/3Ly3BaygXh +12/22/2017,Sports_celeb,@alleniverson,"Sometimes you gotta play the best to be your best. Game 1 in the 2001 finals, @shaq & myself went after it!! It was… https://t.co/nCIGYXLXSg" +12/18/2017,Sports_celeb,@alleniverson,Congrats!!! #Str8SerialKilla @kobebryant https://t.co/m2LhIAGp9W +12/07/2017,Sports_celeb,@alleniverson,When I was coming up I used to take inspiration from these guys and now I’m being included amongst them. Proud to a… https://t.co/Ms4fWA0pTw +12/06/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: The 3rd annual #CrossoverHolidayShowcase is upon us! Dec 27th make sure you come out and see some of the best talent in t… +11/25/2017,Sports_celeb,@alleniverson,My partners @rootsoffight have their #BlackFriday sale rolling right now!! Go check i.... https://t.co/l4XJP74pRt https://t.co/TEVqgsX6Bz +11/08/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: Our episode of @Complex Sneaker Shopping with the legendary @alleniverson and our good friend @JLaPuma airs on MSG at 1… +11/03/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Press Release: “Allen Iverson champions need for new gymnasium floor at Newport News Boys & Girls Club” https://t.co/mkmU… +11/02/2017,Sports_celeb,@alleniverson,Check out my cut off from my @rootsoffight collection! It just dropped and is available now! #RootsofBasketball… https://t.co/RN3O9ifpln +10/31/2017,Sports_celeb,@alleniverson,Make sure you go to https://t.co/7ZCGQIQaLb to get your pair of the new #AnswerIV @ReebokClassics https://t.co/cOlXv7JeuD +10/27/2017,Sports_celeb,@alleniverson,RT @PCFriarsmbb: Dickens with the exclamation point #gofriars https://t.co/KZ1BgLP3vR +10/20/2017,Sports_celeb,@alleniverson,Out now! New T with @RootsofFight just launched. #KnowyourRoots #RootsofBasketball https://t.co/9RtTCjWXo2 https://t.co/pgIMfZJJAj +09/22/2017,Sports_celeb,@alleniverson,Happy 58th ma! & many more to my special lady!!! https://t.co/44taB4v0K6 +09/08/2017,Sports_celeb,@alleniverson,Loyal to the core!!!#My Chinese fans https://t.co/MH05YDFNgn +08/23/2017,Sports_celeb,@alleniverson,Happy birthday killa!!! @kobebryant https://t.co/ZzCTvqlsgr +08/13/2017,Sports_celeb,@alleniverson,"#Repost @thebig3 +・・・ +He's back! Come see 3's Company fight for a playoff spot today at Staples… https://t.co/KUl1Ioqp3M" +08/01/2017,Sports_celeb,@alleniverson,Just posted a photo https://t.co/8SyNOJpaSI +07/29/2017,Sports_celeb,@alleniverson,I see you haters! https://t.co/snHKnQ45TS +07/26/2017,Sports_celeb,@alleniverson,RIP PRODIGY... LONG LIVE MOBB DEEP https://t.co/NfGGsIpPMi +07/26/2017,Sports_celeb,@alleniverson,I love interacting with my fans @thebig3 Chicago 🎬: @kaptain_kai https://t.co/gWjjtFG9KW +07/25/2017,Sports_celeb,@alleniverson,I Love this man...Thanks coach!!! https://t.co/1QivLVxKWF +07/25/2017,Sports_celeb,@alleniverson,@prettichuckie FAMILY!!💯 https://t.co/GrxJ0HW6kq +07/25/2017,Sports_celeb,@alleniverson,Looking at the ppl scared to be who they really are! Im comfortable & blessed to be who i am… https://t.co/rns5EThLB5 +07/24/2017,Sports_celeb,@alleniverson,Happy gday to one of the greatest players I know @GaryPayton_20 and my young bull ao20buckets https://t.co/YP9xcQpsco +07/24/2017,Sports_celeb,@alleniverson,I will cherish this moment FOREVER! https://t.co/7COKeKl4Er +07/23/2017,Sports_celeb,@alleniverson,Happy Birthday to my big bro! https://t.co/S5SfUp9kg3 +07/21/2017,Sports_celeb,@alleniverson,Congrats Lil bruh!! #winsandlosses meekmill out today! https://t.co/9tWVAjl6qk +07/19/2017,Sports_celeb,@alleniverson,RT @coachmhagans: Always reppin' for Uncle Chuck @alleniverson🐐 https://t.co/croxM84Lyz +07/16/2017,Sports_celeb,@alleniverson,Just posted a video @ Wells Fargo Center https://t.co/PyNoNftKS3 +07/16/2017,Sports_celeb,@alleniverson,Tomorrow night at B Side!!! https://t.co/qcpQ3XsoGt +07/15/2017,Sports_celeb,@alleniverson,Get to @RUVILLA right now! First 10 fans to purchase spend $75 on Big 3/AI merchandise get a special invitation to… https://t.co/qbio9q9MdJ +07/15/2017,Sports_celeb,@alleniverson,"All my Philadelphia fans, I'm coming home tomorrow! Stop by @ruvilla on 12th and Chestnut… https://t.co/V0f9Q45Eac" +07/13/2017,Sports_celeb,@alleniverson,Daddy work https://t.co/SWkBL3Nh3C +07/13/2017,Sports_celeb,@alleniverson,#reallove #louwillcamp https://t.co/Rrm8RfZrKz +07/13/2017,Sports_celeb,@alleniverson,My lil man @teamlou23 doin it for the kids #louwillcamp https://t.co/QVKVzWf6lx +07/10/2017,Sports_celeb,@alleniverson,FAMILY! Only the ones that care for REAL understand!!! Love y'all! WE US!!!!!!!! https://t.co/lJADnjubMC +06/28/2017,Sports_celeb,@alleniverson,Mommy! https://t.co/vZFnwCqvYG +06/27/2017,Sports_celeb,@alleniverson,Fam https://t.co/RGeAuceXV3 +06/27/2017,Sports_celeb,@alleniverson,Fam https://t.co/RGeAubXmwt +06/27/2017,Sports_celeb,@alleniverson,Til Death... https://t.co/7H6dTNcQpQ +06/27/2017,Sports_celeb,@alleniverson,The guys https://t.co/gGm0Ms7G5V +06/27/2017,Sports_celeb,@alleniverson,theofficialai3's photo https://t.co/VGAbFL1b6q +06/24/2017,Sports_celeb,@alleniverson,"RT @SportsCenter: If Allen Iverson could play with one player in the BIG3, he says: Kobe. https://t.co/wABxL9ZtOi" +06/24/2017,Sports_celeb,@alleniverson,RT @ToddRadom: Big3 media day in NYC. The. Answer. https://t.co/tTL0FHFs1e +06/24/2017,Sports_celeb,@alleniverson,"RT @MichaelRapaport: Dreaming while awake with AI +@alleniverson @thebig3 +#TheAnswer https://t.co/qqu3yNNXYt" +06/23/2017,Sports_celeb,@alleniverson,RT @barclayscenter: Great seats just released for @thebig3 here this Sunday! Don't miss out: https://t.co/cGH5H7oEk4 #Big3BKLYN #Big3 https… +06/23/2017,Sports_celeb,@alleniverson,RT @thebig3: BIG3 has The Answer: we’re changing the game https://t.co/LE4lp1pbTw +06/22/2017,Sports_celeb,@alleniverson,Oxygen please !!!!! 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/N5BaGEUBml +06/22/2017,Sports_celeb,@alleniverson,Getting major flashbacks! Lol 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/PIHxPIYe3S +06/22/2017,Sports_celeb,@alleniverson,putting in the work! 📸: @Suav5 @ Bethel High School (Virginia) https://t.co/rtCa7a3eh2 +06/18/2017,Sports_celeb,@alleniverson,I'm the best father in the world because they said so! I love being a part of the real fathers… https://t.co/s4ZXhIPer5 +06/16/2017,Sports_celeb,@alleniverson,11 days till Brooklyn!!! #BallinAgain @thebig3 https://t.co/pSgtKD9sJg +06/16/2017,Sports_celeb,@alleniverson,Happy birthday Big bro!!!..... see you in Brooklyn next week for the Big 3! Enjoy your day! https://t.co/UC1Pp6MN57 +06/07/2017,Sports_celeb,@alleniverson,RT @Hoophall: RT to wish #16HoopClass member @alleniverson a Happy Birthday! #HOFBdays https://t.co/plLkID73DW +06/07/2017,Sports_celeb,@alleniverson,"RT @ComplexSneakers: Happy 42nd Birthday to The Answer 🙌 + +We went 'Sneaker Shopping' with @alleniverson in Philly: https://t.co/HpJzxOxt7…" +06/07/2017,Sports_celeb,@alleniverson,RT @Hoophall: #OTD @alleniverson & @SHAQ both went the distance in each scoring 40+ PTS in Game 1 of the 2001 NBA Finals. #NBAFinals https:… +06/07/2017,Sports_celeb,@alleniverson,RT @thebig3: Happy Birthday @alleniverson from the #BIG3! https://t.co/h1Mthz3AUl +06/07/2017,Sports_celeb,@alleniverson,"RT @sixers: Happy birthday to the one, the only, @alleniverson! 🎉🎂 https://t.co/0t0fkcIZZf" +06/07/2017,Sports_celeb,@alleniverson,"RT @GeorgetownHoyas: Happy Birthday to @GeorgetownHoops, @NBA and @Hoophall legend, @alleniverson! https://t.co/XuwHq0A2vj" +06/07/2017,Sports_celeb,@alleniverson,Chillin wit my big baby on my day! tiaurai https://t.co/W72kIMVTBW +06/07/2017,Sports_celeb,@alleniverson,"RT @espn: The icon, the Hall of Famer, the Answer. + +Whatever you want to call him, @alleniverson turns 42 today. https://t.co/usYAYsm37F" +06/07/2017,Sports_celeb,@alleniverson,"RT @LapstoneHammer: $150 in-store and online, 11am, Friday. FCFS. Any remaining pairs from in-store release will be added to online availab…" +06/07/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: Happy birthday and best wishes to our good friend @alleniverson - you are a legend! Look forward to seeing you Friday e… +06/07/2017,Sports_celeb,@alleniverson,"RT @rootsoffight: #HBD to #TheAnswer @AllenIverson Today only, take 20% off our entire #AI3 collection. Use code: AIJB20 https://t.co/16FYA…" +06/05/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Special thanks to Coaches Steve Joyner Sr. and Jr. and Johnson C Smith University for hosting… https://t.co/MKGJvsYTIr +05/27/2017,Sports_celeb,@alleniverson,RT @LapstoneHammer: The legendary @alleniverson & @PostMalone rocking with our Lapstone & Hammer x @mitchell_ness Black Destructed Denim Co… +05/26/2017,Sports_celeb,@alleniverson,The culture has no boundaries! https://t.co/Oyu2SoQc62 +05/25/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: You have to be willing to do whatever it takes to make sure they get the message #YouGotIt #HOF… https://t.co/ooybrYjaCZ +05/25/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: A true mentor wants more for the mentee than for himself. It's been an honor to stand in your… https://t.co/6x1pFXcEPX +05/25/2017,Sports_celeb,@alleniverson,RT @ColinCowherd: Special moment meeting @alleniverson. Never heard anyone say that about LeBron and MJ https://t.co/m1JVzvJj6L +05/25/2017,Sports_celeb,@alleniverson,RT @ColinCowherd: Great meeting Allen Iverson today. Could not have been nicer or more authentic. https://t.co/gnWnmuxq7x +05/25/2017,Sports_celeb,@alleniverson,@ColinCowherd It was a pleasure! Thanks for the opportunity. +05/25/2017,Sports_celeb,@alleniverson,It's all coming together! Happy workings with these pros. https://t.co/VI5jNOyJQh +05/24/2017,Sports_celeb,@alleniverson,RT @TheHerd: .@alleniverson: It shows what type of player LeBron is that you can compare him to Black Jesus... I can't put anybody before M… +05/24/2017,Sports_celeb,@alleniverson,"RT @FS1: Who talked the most trash? @MichaelRapaport interviews @alleniverson. + +@thebig3 premieres June 26th on FS1 https://t.co/i6zaWYQa2w" +05/24/2017,Sports_celeb,@alleniverson,The Big 3 will fun for us & the fans! https://t.co/aJlUUFuahw +05/24/2017,Sports_celeb,@alleniverson,Me & big homie working https://t.co/0Kye9KCGnE +05/03/2017,Sports_celeb,@alleniverson,"RT @MooreMgmtEnt: You heard it here first... That was then, this is NOW! https://t.co/F1NQfpUifk" +05/03/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Big Time Players make Big Time Plays. 1ST I-3 NOW COMES I-4. Look out World! https://t.co/YHRhfWXFWn +05/01/2017,Sports_celeb,@alleniverson,"Congratulations on a first ballot Hall of Fame careeer. Paul ""The Truth"" Pierce https://t.co/MgaSSx3OsC" +04/27/2017,Sports_celeb,@alleniverson,You have to get the real answer #UpYourGame https://t.co/b4XghH1YBh +04/26/2017,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: All in a day's work - https://t.co/zohqi9GrtG +04/26/2017,Sports_celeb,@alleniverson,"RT @Adweek: .@AllenIverson pitches @BleacherReport as sports culture, not just scores, in its first national spot: https://t.co/iE7huAGbEk…" +04/25/2017,Sports_celeb,@alleniverson,RT @BleacherReport: The Answer opens up about facing Michael Jordan #BRmag https://t.co/sVb4dx3inm https://t.co/L0prgRxOq5 +04/25/2017,Sports_celeb,@alleniverson,15 years later you need to get the real answer to get the game. 4.26.17. #UpYourGame @Bleacherreport #ad https://t.co/dFSZdmckm4 +04/23/2017,Sports_celeb,@alleniverson,"Proud to be playing a key part in an ol skool basketball game. Switch, Xbox, PS4 and PC. I'm… https://t.co/et5m7y7MRl" +04/23/2017,Sports_celeb,@alleniverson,Much love Kobe https://t.co/VKyTWeYYDl +04/23/2017,Sports_celeb,@alleniverson,Me & the 1 https://t.co/rJ6CcJ4vUc +04/23/2017,Sports_celeb,@alleniverson,Happy Birthday to my Uncle Stevie https://t.co/kPSQijk6YA +04/20/2017,Sports_celeb,@alleniverson,VA's finest https://t.co/oJooV67VQa +04/20/2017,Sports_celeb,@alleniverson,"A lot of good young talent at the @iversonclassic ... +https://t.co/9WHHeuYN2o" +04/20/2017,Sports_celeb,@alleniverson,Great first day at the @iversonclassic ... https://t.co/eG6Vc3q082 +04/13/2017,Sports_celeb,@alleniverson,"RT @ComplexSneakers: .@alleniverson told us how proud he was to see @kobebryant and @KingJames wear his signature sneakers. + +WATCH: https:…" +04/13/2017,Sports_celeb,@alleniverson,Check my collection from my friends @rootsoffight. The Spring Cleaning sale is this week only! #RootsOfBasketball… https://t.co/AEfzWaHU96 +04/10/2017,Sports_celeb,@alleniverson,Always nice shopping with the good people at @LapstoneHammer and had a great convo with @Complex Sneaker Shopping.… https://t.co/hUkqP4xu6X +04/01/2017,Sports_celeb,@alleniverson,"Congratulations @Real_T_Mac, well deserved killa!! https://t.co/UQ83CzQi3J" +03/20/2017,Sports_celeb,@alleniverson,Swift! Love u & your family CHAMP...Cherish tomorrow. https://t.co/jcc1as4WS7 +03/19/2017,Sports_celeb,@alleniverson,Sis just got busy in my home town...God is good! @MonicaBrown https://t.co/QHQlNOBAJE +03/10/2017,Sports_celeb,@alleniverson,"RT @SiriusXMNBA: ""The nucleus of talent is off the chain."" @alleniverson on the current @Sixers. Hear the FULL interview w/@TinaCervasio to…" +03/10/2017,Sports_celeb,@alleniverson,RT @TheSource: Mitchell And Ness Unveiled Their Revamped Brand Shop At The @NBAStore With Help From @AllenIverson https://t.co/9pOXUkvHqb h… +03/10/2017,Sports_celeb,@alleniverson,Thank you!!! @mitchell_ness +03/10/2017,Sports_celeb,@alleniverson,"RT @mitchell_ness: 🅰️ℹ️ but we call him Chuck @alleniverson! Special thanks to the @NBASTORE & @NBA, as well as all of the media & fans who…" +03/10/2017,Sports_celeb,@alleniverson,#Repost @nba ... @alleniverson greets fans at the launch of the @mitchell_ness shop at the… https://t.co/r01pqQmLwS +03/08/2017,Sports_celeb,@alleniverson,"#Repost @divineuniversal ... +Tomorrow in 🗽 at the @nbastore with the 🐐 @alleniverson... https://t.co/MoUarmjUpT" +03/08/2017,Sports_celeb,@alleniverson,Family https://t.co/8ZwqXs1DEI +03/08/2017,Sports_celeb,@alleniverson,Me and my lil bro doing it for #SixersYouthFoundation https://t.co/y608oE9Cj4 +03/03/2017,Sports_celeb,@alleniverson,Me & Lil Big Man!!! @Isaiah_Thomas https://t.co/efojWkYrDQ +03/03/2017,Sports_celeb,@alleniverson,A Angel's son! https://t.co/clEEsYZ24A +03/02/2017,Sports_celeb,@alleniverson,Greatest Sniper of All-Time @StephenCurry30 https://t.co/Srjg1LHKKP +03/01/2017,Sports_celeb,@alleniverson,Control your own destiny and do it your way. Try Stash. Use my link for a $5 bonus to start:… https://t.co/9lZAZaDLoa +02/21/2017,Sports_celeb,@alleniverson,Shop my collection #TheAnswer on SALE NOW at https://t.co/xgDSgZI9ed #rootsofbasketball https://t.co/ruxfm0pjny +01/13/2017,Sports_celeb,@alleniverson,"RT @NBA: Showing off his @Hoophall 💍 + +@alleniverson courtside at @chicagobulls/@nyknicks! https://t.co/EBGTwkN3Jm" +01/12/2017,Sports_celeb,@alleniverson,Let's help get @Isaiah_Thomas into the 2017 @NBAAllStar Game in New Orleans. Retweet to vote! #NBAVOTE #NBAAllStar… https://t.co/wJIaFHeDsF +01/07/2017,Sports_celeb,@alleniverson,#Sixers fans! Let's help get @JoelEmbiid into the 2017 @NBAAllStar Game in New Orleans. Retweet to vote! #NBAVOTE @Sixers #NBAAllStar #nba +01/07/2017,Sports_celeb,@alleniverson,#NBAVote for the lil homie joelembiid https://t.co/bF7kUUmesJ +12/21/2016,Sports_celeb,@alleniverson,RT @HRVarsity: .@alleniverson gives back to Boys and Girls Club of Greater Hampton Roads https://t.co/Ar7xB90uHm via @jfmcgrath @visualDP h… +12/21/2016,Sports_celeb,@alleniverson,@DP_Sports @jfmcgrath @visualDP thanks for coming out. +12/21/2016,Sports_celeb,@alleniverson,RT @DP_Sports: .@alleniverson gives back to Boys and Girls Club of Greater Hampton Roads https://t.co/f8qreVAAyM via @jfmcgrath @visualDP h… +12/21/2016,Sports_celeb,@alleniverson,@PhillyMayor thank you for your love and support. +12/21/2016,Sports_celeb,@alleniverson,RT @PhillyMayor: Thank you @alleniverson for your continued support of the people of Philadelphia and @PhillyPAL! https://t.co/sZ14Q9ZtZU +12/21/2016,Sports_celeb,@alleniverson,@BobbyScott Thank you for coming. +12/21/2016,Sports_celeb,@alleniverson,RT @BobbyScott: Proud to support Hall Of Famer @alleniverson & @BGC_VAPeninsula for their Bring Home Christmas For Hometown Youth event htt… +12/20/2016,Sports_celeb,@alleniverson,"Special thanks to the City of Portsmouth, Grove Church, Portsmouth Redevelopment and Housing and… https://t.co/UfT2bJFpM8" +12/20/2016,Sports_celeb,@alleniverson,RT @ChenueHer: The legend himself @alleniverson is in the building! #TheAnswer https://t.co/TSkDv7YaTf +12/20/2016,Sports_celeb,@alleniverson,@AdamWinkSports @WTKR3 thank for coming out! +12/20/2016,Sports_celeb,@alleniverson,"RT @AdamWinkSports: Think Hampton native @alleniverson loves #Virginia? (Hint: Yes. Yes he does.) + +More from A.I. tonight on @WTKR3. + +https…" +12/16/2016,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: December 29-30 we'll be having the 2nd annual #CrossOverHoopsShowcase at the Hampton Coliseum. Tickets https://t.co/QRhGR… +12/16/2016,Sports_celeb,@alleniverson,Next week stay tuned for my holiday give back in the Hampton Roads area --> https://t.co/PWfmYBe030 +12/16/2016,Sports_celeb,@alleniverson,RT @MooreMgmtEnt: Join Allen Iverson next week as he gives back to the Hampton Roads community this Christmas --> https://t.co/09ni3JCt6O +12/15/2016,Sports_celeb,@alleniverson,Rest In Peace to Craig Sager. My condolences go out to his family and friends. We lost a great… https://t.co/eOits3OfvV +12/08/2016,Sports_celeb,@alleniverson,"My latest tee from @rootsoffight just dropped #TheAnswer #PHILA +Check it out at https://t.co/M5r6bbfGRh https://t.co/DV4B1iLU7t" +11/25/2016,Sports_celeb,@alleniverson,Head to https://t.co/voCpv1A0uO to check it out. https://t.co/55CovKSFOS +11/25/2016,Sports_celeb,@alleniverson,My collection from @rootsoffight is on sale this weekend for #BlackFriday #Cyber Monday. +11/18/2016,Sports_celeb,@alleniverson,Check out my new collab with @rootsoffight part of their #RootsOfBasketball collection. Shop… https://t.co/0CRQhpu5S5 +11/17/2016,Sports_celeb,@alleniverson,My #RootsofBasketball collection from @rootsoffight comes out tomorrow. #TheAnswer https://t.co/MqCfPHkJMt +11/13/2016,Sports_celeb,@alleniverson,The champ 📸: @therealbl https://t.co/Hm6paO6V2K +11/12/2016,Sports_celeb,@alleniverson,Great win guys!!!! +10/18/2016,Sports_celeb,@alleniverson,RT @SoleCollector: .@BaitMeCom's ice cold Reeboks honor @AllenIverson: https://t.co/sR2ei5hvdt https://t.co/KUL79JJuI8 +10/18/2016,Sports_celeb,@alleniverson,RT @VibeMagazine: Check out @BaitMeCom's take on @alleniverson's Reebok Question Mid https://t.co/OS5AEfn35u https://t.co/sx4eZSKPoJ +10/07/2016,Sports_celeb,@alleniverson,Georgetown Made Me https://t.co/L5ntAh9xRv +09/21/2016,Sports_celeb,@alleniverson,RT @GeorgetownHoops: Always great having @alleniverson on campus!! #H4L #WeAreGeorgetown https://t.co/NGy2mHqBFJ +09/19/2016,Sports_celeb,@alleniverson,A real one! @50cent https://t.co/3LoCxtmXlZ +09/16/2016,Sports_celeb,@alleniverson,#QuestionMidPacker Shoe Release. @packershoes @reebokclassics #NYC https://t.co/Rx0MvBTwsM +09/15/2016,Sports_celeb,@alleniverson,Thank you for having me @colbertlateshow !! +09/12/2016,Sports_celeb,@alleniverson,"RT @PlayersTribune: A bond bigger than basketball, Aaron McKie's stories on the @AllenIverson you don’t know: https://t.co/y1zjZWE6hX https…" +09/08/2016,Sports_celeb,@alleniverson,Looking forward to a great weekend! https://t.co/3ZeyBRMLId +08/25/2016,Sports_celeb,@alleniverson,"RT @SLAMonline: Despite an unspectacular supporting cast, @alleniverson took the Sixers to the Finals in 2001. #TBT @mitchell_ness https://…" +08/24/2016,Sports_celeb,@alleniverson,RT @stance: 👍 @alleniverson https://t.co/VqHcIAoeRo +08/24/2016,Sports_celeb,@alleniverson,"RT @Sixers: Enter to win some @alleniverson socks from @stancehoops 🔥 + +[ 🗳 » https://t.co/c6pao4xSpI ] https://t.co/4Rl6zyY3FX" +08/22/2016,Sports_celeb,@alleniverson,"RT @TheHarlemHotBoy: Standing Room ONLY‼️ +@alleniverson 🏀 https://t.co/CTWZFmEoWz" +08/22/2016,Sports_celeb,@alleniverson,"RT @ReebokClassicCA: @alleniverson + @Therealkiss = Reebok Question ""A5"". Available now in Canada! #thisISclassic #Question20 https://t.co/…" +08/18/2016,Sports_celeb,@alleniverson,RT @dlynamCSN: Walking through #rittenhousesquare I was tempted to buy this painting of #HOF @alleniverson… https://t.co/Hr9iVjX6qW +08/16/2016,Sports_celeb,@alleniverson,"RT @Footaction: Find the @stancehoops X @alleniverson ""Aces"" and ""Winning Taste"" @stance sock designs in stores now! #OwnIt https://t.co/Sq…" +08/16/2016,Sports_celeb,@alleniverson,RT @mitchell_ness: 2001 Allen Iverson ASG jersey @alleniverson @nbaallstar @nba #TheANSWER #2001ASG https://t.co/10vSQ64Rh9 https://t.co/8u… +08/12/2016,Sports_celeb,@alleniverson,"RT @Therealkiss: ""LIVIN LEGENDS"" ALLEN IVERSON & JADAKISS https://t.co/bZwCRlKFqP" +08/12/2016,Sports_celeb,@alleniverson,"RT @Therealkiss: #LIVINLEGENDS +#ALLENIVERSON +#JADAKISS +#SORASPY +#REEBOK https://t.co/wKN80evOK1" +08/12/2016,Sports_celeb,@alleniverson,RT @ReebokClassics: OUT NOW: @alleniverson x @TheRealKiss Question A5 - https://t.co/qQcX8p5O2G https://t.co/9Kis2dMUe9 +08/12/2016,Sports_celeb,@alleniverson,"RT @Footaction: Hook those A5s up with the @stancehoops X @alleniverson ""Money Bags"" socks - in stores now! #OwnIt https://t.co/tbNO5AdQuP" +08/10/2016,Sports_celeb,@alleniverson,We lost a great one today. Long live John Saunders! +08/10/2016,Sports_celeb,@alleniverson,If you haven't grabbed a pair of my new @stancehoops socks get them today. Link in my bio… https://t.co/iKWupL8rrh +08/10/2016,Sports_celeb,@alleniverson,Thanks to What's Up Energy! #AICSC https://t.co/788IStYMpV +08/08/2016,Sports_celeb,@alleniverson,RT @Ballislife: (VIDEO) Allen Iverson & Larry Hughes Reenacted A 1999 NBA Commercial This Past Weekend https://t.co/mY9CxV4DMO https://t.co… +08/08/2016,Sports_celeb,@alleniverson,"RT @SLAMonline: Over the weekend, @alleniverson, @therealkiss and @myfabolouslife posted up at the @mitchell_ness party in Philly. +https://…" +06/28/2018,Sports_celeb,@TheNotoriousMMA,RT @BurgerKing: 😝 #whassup @budweiserusa https://t.co/uEGLmiqq7D +06/24/2018,Sports_celeb,@TheNotoriousMMA,Ireland baby I love you. IE Monsters 🍀 https://t.co/SOK61vQIse +06/20/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/VZStTUVxQf +06/13/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: Legend #ConorMcGregor https://t.co/VNbpzHeEVa +06/12/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/Dc1TI5meVR +06/09/2018,Sports_celeb,@TheNotoriousMMA,"Congrats @CianCowley from the cells to the stadiums. Not a scratch. They done nothing. +Jet leaves Tuesday my broth… https://t.co/zt1t98tscg" +06/07/2018,Sports_celeb,@TheNotoriousMMA,"I took up two jobs. +Where there is a will. There is a way. +Keep grinding 🙏 https://t.co/fBvohKCKxX" +06/06/2018,Sports_celeb,@TheNotoriousMMA,Solid work tonight because 4th place doesn’t get… https://t.co/SpgiGS3Rwz +06/06/2018,Sports_celeb,@TheNotoriousMMA,thinking about all of your belts 🍆 https://t.co/KLu1YJcxGF +06/06/2018,Sports_celeb,@TheNotoriousMMA,Made it to number 4 on the Forbes list this… https://t.co/nt45hs8ZbM +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @MariahMorrison7: Goals...Stubborn , Patience, Diligence,Persistence &Hard Work = this successful smile. @TheNotoriousMMA keep it up htt…" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @KristinaCarrino: @TheNotoriousMMA this is a picture of my son Connor, he’s called “Little Notorious One” by all his instructors. We lov…" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"I will usually work towards the temple, but… https://t.co/GllvrSoPoD" +06/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @KingMcgregorFC: From Nothing , to something , to everything. @TheNotoriousMMA https://t.co/vkPsV5YRh9" +05/30/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/sp1FfUVeIw +05/29/2018,Sports_celeb,@TheNotoriousMMA,Out for a nice fly https://t.co/OqBWhtXZf2 +05/25/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: .@Relentlessward says if @50cent wants to have a go at fighting, he's happy to meet him. + +Full Interview: https://t.co…" +05/23/2018,Sports_celeb,@TheNotoriousMMA,"Keep your dukes up when you see me. +See you soon. https://t.co/M2KX5HZ90F" +05/23/2018,Sports_celeb,@TheNotoriousMMA,Respect. https://t.co/Bttk9rzdYo +05/22/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/MTLPp5lexa +05/22/2018,Sports_celeb,@TheNotoriousMMA,"Zoom in on the tie, it says fuck you. +Zoom in the cuff, it says who it’s from. +@AugustMcGregor https://t.co/JnK7WFn5Hz" +05/21/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Does @WonderboyMMA mind playing the villain? Not exactly. + +(Full interview: --> https://t.co/NnoLhzJUpe) https://t.co/…" +05/20/2018,Sports_celeb,@TheNotoriousMMA,Thank you Rock! Your work ethic is inspiring to… https://t.co/YOU8BELmXa +05/19/2018,Sports_celeb,@TheNotoriousMMA,"RT @SevereMMA: Video - Finish from Peter Queally vs David Khachatryan at FNG 88 + +https://t.co/AMrfIpXnfI #IrishMMA https://t.co/Sb2eh64JNI" +05/19/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Peter Queally: The reason I stay so calm in fights is because I’m used to sparring with Conor McGregor | https://t.co/… +05/19/2018,Sports_celeb,@TheNotoriousMMA,RT @liamgallagher: I've just watched your film Conor McGregor biblical I want you to be in my new music video as you were LG x +05/15/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: 60 Gs BABYYY @TheNotoriousMMA https://t.co/treIYTz0IE +05/12/2018,Sports_celeb,@TheNotoriousMMA,Watching the Late Late show last night and on comes this young man… https://t.co/Z9WT4vaJlf +05/12/2018,Sports_celeb,@TheNotoriousMMA,RT @KingMcgregorFC: Champ @TheNotoriousMMA Enjoying with the little champ 😍😍😍 @DeeDevlin1 #conormcgregor https://t.co/rJxN7zbjPc +05/12/2018,Sports_celeb,@TheNotoriousMMA,"RT @HansMolenkamp: I enjoy shooting photos of legendary people. +@TheNotoriousMMA 👑 +———$—$———- +#ConorMcGregor #TheNotoriousMMA #Mölenkamp ⚔️…" +05/11/2018,Sports_celeb,@TheNotoriousMMA,RT @John_Kavanagh: best of luck to my long time student @TheHotWheels93 walking the #DarknessintoLight in the early hours of tomorrow. cont… +05/11/2018,Sports_celeb,@TheNotoriousMMA,"RT @danfar93: Another @amazon Alexa Skill I've been playing around with for @MacTalkApp + +@TheNotoriousMMA  + +#McGregorSportsAndEntertainmen…" +05/09/2018,Sports_celeb,@TheNotoriousMMA,McGregor Sports and Entertainment. https://t.co/EDYRM4ETnT +05/03/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor (@thenotoriousmma) & SBG inspire disabled athlete Craig Rankin (@TheHotWheels93) to achieve his goals 👊… +04/26/2018,Sports_celeb,@TheNotoriousMMA,RT @TheHotWheels93: Yesterday the best fighter on the planet @TheNotoriousMMA helped me get through 3500 metres doin so with the use of one… +04/14/2018,Sports_celeb,@TheNotoriousMMA,"It is only a lesson if you learn from it. +I learn everyday. https://t.co/vg7CpK9xYg" +04/10/2018,Sports_celeb,@TheNotoriousMMA,❤️ https://t.co/6FXVQkwGs1 +04/05/2018,Sports_celeb,@TheNotoriousMMA,You’s’ll strip me of nothing you’s do nothing cunts. +04/03/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor vs. Nate Diaz II voted best fight in UFC history | https://t.co/X986fy1dRa https://t.co/YXV5SpMHzM +04/03/2018,Sports_celeb,@TheNotoriousMMA,"RT @ufc: The Greatest UFC fight of all-time - as voted on by YOU! + +🏆 @NateDiaz209 vs @TheNotoriousMMA 2 - UFC 202 - Aug. 20, 2016 🏆 + +#UFC2…" +04/02/2018,Sports_celeb,@TheNotoriousMMA,"Feeling strong on the @mcgregorsfast program. +Sign up today at https://t.co/AR8mnmdlay https://t.co/VtBdIRcBSk" +04/02/2018,Sports_celeb,@TheNotoriousMMA,These fools pull out more times than I do with my dick. +03/31/2018,Sports_celeb,@TheNotoriousMMA,"What an inspiration and true legend you are Arnold @Schwarzenegger! +It is great to hear you are back in good healt… https://t.co/O0QCE7LHo4" +03/30/2018,Sports_celeb,@TheNotoriousMMA,"Solid work with phenomenal young wrestler Kosti. +Another great Moldovan in the stable. +Up Moldova 🇲🇩 https://t.co/vF9uMZvRJ9" +03/29/2018,Sports_celeb,@TheNotoriousMMA,💪🏼🇮🇪 https://t.co/vQaq7ecTf7 +03/24/2018,Sports_celeb,@TheNotoriousMMA,Stay ready. +03/23/2018,Sports_celeb,@TheNotoriousMMA,"Sit down Dana, I'm the real boss. The Champ Champ 🇮🇪. #BeatTheBoss #ad + +Up to 35% off for a limited time 👉… https://t.co/bksBOMmK3B" +03/21/2018,Sports_celeb,@TheNotoriousMMA,"Today is World Down Syndrome Day! A day to celebrate abilities in everyone. +In honour of the… https://t.co/GGWbq91MwV" +03/21/2018,Sports_celeb,@TheNotoriousMMA,🐋🐳 https://t.co/RrXSyYpjZB +03/20/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Ahead of MMA debut, Dillon Danis finds motivation in training alongside Conor McGregor | https://t.co/L4RFnEHg31 https…" +03/17/2018,Sports_celeb,@TheNotoriousMMA,"Happy St Patrick's day everyone 🍀 +Conor Jr. went to his first parade today and he was absolutely… https://t.co/WGccbYxNqR" +03/16/2018,Sports_celeb,@TheNotoriousMMA,Let's go Jimi boy! Team @Betsafe #UFCLondon https://t.co/1BsAqTUg6C +03/16/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: 10 Years in the Making: In anticipation of his fight at this weekend’s UFC London, The Mac Life caught up with Jimi Ma…" +03/15/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Dana White now a playable character in EA UFC 3 | https://t.co/FOqDAHW86I https://t.co/xqmKSM3piS +03/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @EASPORTSUFC: The ultimate boss battle comes to the Octagon. #BeatTheBoss #BeTheBoss #EAUFC3 + +Up to 35% off for a limited time 👉 https:/…" +03/15/2018,Sports_celeb,@TheNotoriousMMA,RT @MonsterGaming: Get in the game and play as the GOAT! https://t.co/jCOpucYWQH +03/12/2018,Sports_celeb,@TheNotoriousMMA,You will never beat the McGregor's. https://t.co/qE3EbFWkee +03/12/2018,Sports_celeb,@TheNotoriousMMA,"RT @BurgerKing: it's an honor to meet this King, from one King to another...@TheNotoriousMMA #spicycrispychickensandwich https://t.co/ldXkc…" +03/09/2018,Sports_celeb,@TheNotoriousMMA,1 Euro. https://t.co/GdLPottQw2 +03/09/2018,Sports_celeb,@TheNotoriousMMA,"The conormcgregorfast conditioning program is the true animal. +10 TRUE weeks long this camp was.… https://t.co/OXUZTPcTgm" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"Happy international Women's day everyone! +Get your tits out for the lads ladies. We love you… https://t.co/2rRn1TNPXq" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"170 years ago today Ireland's Tri-colour was first raised! +I've raised it high and with pride… https://t.co/P1p68oGetW" +03/08/2018,Sports_celeb,@TheNotoriousMMA,"WHAT A HISTORY! +WHAT A FUTURE! +IRELAND FIRST 🍀 https://t.co/AFZw0F2AUJ" +03/08/2018,Sports_celeb,@TheNotoriousMMA,Standing next to the Original declaration of Ireland's independence with my son Conor McGregor Jr. https://t.co/A9QoJ0rvt7 +03/07/2018,Sports_celeb,@TheNotoriousMMA,"Underneath Ireland's GPO. +Those in power, proceed with caution. +This is an Irish pedestrian area. https://t.co/CUqjXFsEBg" +03/07/2018,Sports_celeb,@TheNotoriousMMA,Dons under 30. https://t.co/MHuUnZBHcw +03/07/2018,Sports_celeb,@TheNotoriousMMA,Thanks for the cheese. Actually no give me all your cheese. https://t.co/hT2EH6LUk1 +03/05/2018,Sports_celeb,@TheNotoriousMMA,"Making deals and TAKING deals! +Kings recognise Kings! +Congrats to jayz on his number 1 takeover… https://t.co/ienY2VHUc0" +03/05/2018,Sports_celeb,@TheNotoriousMMA,The Undisputed Champ Champ and the Undisputed Spicy Champ #spicycrispychickensandwich @burgerking #ad https://t.co/cd9yR0SgHe +03/05/2018,Sports_celeb,@TheNotoriousMMA,There are two kings in this picture and only one in the fight game. Forget the rest. Big news on the way.… https://t.co/mfUCgYu9sA +03/05/2018,Sports_celeb,@TheNotoriousMMA,"@TonyFergusonXT You are a sad bastard, mate." +03/05/2018,Sports_celeb,@TheNotoriousMMA,"@BlessedMMA @FrankieEdgar Kid, you bounced. Leave it." +03/04/2018,Sports_celeb,@TheNotoriousMMA,"Frankie's career deserved for that to be against me tonight. +Respect Frankie. +Love and respect always! +A true fighters fighter ❤" +03/01/2018,Sports_celeb,@TheNotoriousMMA,Happy birthday kid. https://t.co/wlmpKE6SHT +03/01/2018,Sports_celeb,@TheNotoriousMMA,You are all handy bread. https://t.co/yM9qFUrH19 +02/22/2018,Sports_celeb,@TheNotoriousMMA,"I am fighting again. Period. +I am the best at this. +I put my name forward to step in at UFC… https://t.co/fbxOL8l4JL" +02/22/2018,Sports_celeb,@TheNotoriousMMA,"RT @SixOClockShow: Straight off the dance floor and into our studio, .@GregorErin will be with us tonight! Any questions? Get them in! http…" +02/22/2018,Sports_celeb,@TheNotoriousMMA,"Harry Kane, Sergio Aguero and Mo Salah are lighting up this year's Premier League. We want to know who you think wi… https://t.co/U9tqcnLCmL" +02/21/2018,Sports_celeb,@TheNotoriousMMA,"At the @mcgregorsfast Sports Institute staying sharp and staying ready. +We are leading Ireland to a better tomorro… https://t.co/a5YJZ8W5Gp" +02/20/2018,Sports_celeb,@TheNotoriousMMA,"At the conormcgregorfast Sports Institute staying sharp and staying ready. +We are leading… https://t.co/ZheGI2JHOj" +02/20/2018,Sports_celeb,@TheNotoriousMMA,🦍 @mcgregorsfast https://t.co/dT8LKHvdtc +02/20/2018,Sports_celeb,@TheNotoriousMMA,RT @BetsafeRacing: A great day of racing ahead at @WetherbyRaces! Check out our Acca Boosts for today's action: https://t.co/7rIPVjOZGS htt… +02/20/2018,Sports_celeb,@TheNotoriousMMA,RT @RTEOne: 'From good to to GREAT!' well done @GregorErin & @RYANMCS! #DWTSIrl https://t.co/inBViX2PhT +02/19/2018,Sports_celeb,@TheNotoriousMMA,True Irish Whiskey is forming in the barrels as we speak. https://t.co/DLI7igJK9Z +02/18/2018,Sports_celeb,@TheNotoriousMMA,I am happy for Floyd and his recent announcement that he is out of these current fight… https://t.co/EfTBJXf4RK +02/17/2018,Sports_celeb,@TheNotoriousMMA,RT @iamblazen: @TheNotoriousMMA No ref is gonna save Floyd when he starts shaking his A$$ at Conor in the #UFC ⚰️🔨 https://t.co/fegS0C0HNx +02/17/2018,Sports_celeb,@TheNotoriousMMA,"This was just moments after I tore my ACL in a fight in Boston Massachusetts. +It was when I… https://t.co/hrkuUVOCKd" +02/16/2018,Sports_celeb,@TheNotoriousMMA,Controlling the human head. https://t.co/0Ktgp4CvZz +02/16/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: John Kavanagh (@John_Kavanagh) on McGregor/Mayweather in MMA: ‘We could fit it in on the night of Conor’s real fight’… +02/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @btsportufc: The Russian Hammer is back! 👊 + +And #UFC223 just keeps on stacking up... + +Watch it live on BT Sport HD on April 7th 📺 https:…" +02/15/2018,Sports_celeb,@TheNotoriousMMA,"RT @HansMolenkamp: (Hans Photo Vault) 2015 +The undisputed King of the fight game and life pretty much. 💰🏅 +@TheNotoriousMMA at one of our fi…" +02/14/2018,Sports_celeb,@TheNotoriousMMA,Walking into the place of battle like it is the place of breakfast. https://t.co/xR7ErsyAtB +02/11/2018,Sports_celeb,@TheNotoriousMMA,A real elbow in a real fight. https://t.co/9kZ7Opw8Zl +02/08/2018,Sports_celeb,@TheNotoriousMMA,RT @PrettyGreen: Strong start to the day - @SportIndustry nomination for ‘Best Use of PR’ for our @Betsafe @TheNotoriousMMA campaign #BTSIA… +02/08/2018,Sports_celeb,@TheNotoriousMMA,RT @Betsafe: Betsafe are delighted to have been nominated in the ‘Best Use of PR’ category @SportIndustry for our PR campaign with @TheNoto… +02/07/2018,Sports_celeb,@TheNotoriousMMA,"5 years ago today, I signed a contract with the UFC. +When the call came, I would have been… https://t.co/Il0vbfXdN2" +02/07/2018,Sports_celeb,@TheNotoriousMMA,"RT @MMAHistoryToday: Feb7.2013 + +5 years ago today, + +The UFC signed Conor McGregor to a multi fight contract. https://t.co/BWW4CJJ9ei" +02/05/2018,Sports_celeb,@TheNotoriousMMA,"Standing next to a rare signed photo of Muhammad Ali and Joe Frazier. +Two fighting greats who… https://t.co/7XUYts14Fk" +02/05/2018,Sports_celeb,@TheNotoriousMMA,"🍀🇮🇪🇺🇸❤🍀1 +@themaclifeofficial https://t.co/vH9Qsq887J" +02/05/2018,Sports_celeb,@TheNotoriousMMA,RT @SophiaHelwani: If Conor McGregor ever wants to become a pop singer he could be Justin Timberlake's doppelganger. @jtimberlake @TheNotor… +02/05/2018,Sports_celeb,@TheNotoriousMMA,Thank you to everyone voting and supporting my sister on Dancing with the stars. Yup the… https://t.co/PsdyUGiLRu +02/04/2018,Sports_celeb,@TheNotoriousMMA,Boo https://t.co/mDvS8DpAcU +02/04/2018,Sports_celeb,@TheNotoriousMMA,"Text ""Erin"" to 53125 NOW! +What a performance this week @erinmcgregor123 on Dancing with the Stars! +#TeamMcGregor… https://t.co/KqdVee0UF7" +02/03/2018,Sports_celeb,@TheNotoriousMMA,When there is no referee to save you. https://t.co/5XXA7G5uCq +02/03/2018,Sports_celeb,@TheNotoriousMMA,The game. https://t.co/v5P3qp7nmY +02/02/2018,Sports_celeb,@TheNotoriousMMA,Think you can take me? You'll do NOTHING! @EASPORTSUFC 3 is out now 👉 https://t.co/kX0BYy5t2V #ad https://t.co/q1pLwU3Ehe +02/02/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Conor McGregor ""delighted"" for Ronda Rousey in WWE move | https://t.co/ABkIPrlOuU https://t.co/rO1q4N2FDT" +02/02/2018,Sports_celeb,@TheNotoriousMMA,RT @Eemsoshea: Conor McGregor @TheNotoriousMMA &many more shone a bright light for @CMRFCrumlin in NY this wk @ 7th Best of Ireland Gala Di… +02/02/2018,Sports_celeb,@TheNotoriousMMA,💪🏼 https://t.co/bOPh8KUyZz +02/02/2018,Sports_celeb,@TheNotoriousMMA,I run New York. https://t.co/TjxNjbGBGo +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor honoured for his charitable work for Dublin children’s hospital | https://t.co/mQvMUNhAa2 https://t.co/… +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @Maclifeofficial: Conor McGregor was the United States’ most Googled athlete in 2017 | https://t.co/E3hhd1Djbe https://t.co/qDxit7r4e1 +02/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @Maclifeofficial: Conor McGregor on Floyd Mayweather's MMA posts: 'If he doesn't do it, it'll follow him for the rest of his days' | htt…" +02/01/2018,Sports_celeb,@TheNotoriousMMA,It was an honour to support Our Ladies Children's Hospital of Crumlin at the 7th Annual 'Best of… https://t.co/GzkENlxIAN +02/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @DamonMartin: A new study shows Conor McGregor as the most Googled athlete in the U.S. with Ronda Rousey at No. 7. Take a look — +#UFC…" +02/01/2018,Sports_celeb,@TheNotoriousMMA,RT @arielhelwani: Conor McGregor is in New York tonight. He’s being honored at the New York’s Children Medical Research Foundation 7th Annu… +01/31/2018,Sports_celeb,@TheNotoriousMMA,RT @EASPORTSUFC: Are you ready fight fans?! RT and tag a friend for a chance to both win #EAUFC3 Champions Edition codes and play today! ht… +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Comfort on the commercial flight! +Rocking my custom made 'NOTORIOUS' @beatsbydre headphones!… https://t.co/Bi7W1gT8PD" +01/31/2018,Sports_celeb,@TheNotoriousMMA,Stay hydrated. https://t.co/wYbpibNmkG +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Accepting my UFC fighter of the year award at the awards ceremony in Las Vegas in 2016. +I called in through phone… https://t.co/QE4mqCdbDA" +01/31/2018,Sports_celeb,@TheNotoriousMMA,"Accepting my UFC fighter of the year award at the awards ceremony in Las Vegas. +I called in… https://t.co/z0K5GnUka4" +01/30/2018,Sports_celeb,@TheNotoriousMMA,Fuck the Mayweathers. https://t.co/1E4MQTWoUr +01/30/2018,Sports_celeb,@TheNotoriousMMA,"Hahahaha very good. Keep up the good work my son. +Yours sincerely, +Senior. https://t.co/Qk3U69isTS" +01/29/2018,Sports_celeb,@TheNotoriousMMA,Neck work. https://t.co/60LQ9ib7jS +01/29/2018,Sports_celeb,@TheNotoriousMMA,"Attacking the standing back. +This is the equivalent of being wrapped around by a boa… https://t.co/3pWNszzOKo" +01/29/2018,Sports_celeb,@TheNotoriousMMA,I'm on top. https://t.co/x5iZwfOpFU +01/28/2018,Sports_celeb,@TheNotoriousMMA,"Congrats @GregorErin on Dancing with the stars tonight! +You killed it again! +Vote 'Erin' to… https://t.co/DWoCnBRV9e" +01/27/2018,Sports_celeb,@TheNotoriousMMA,I am so everywhere I am behind you. https://t.co/diq4sQWlgH +01/27/2018,Sports_celeb,@TheNotoriousMMA,Yum yum. https://t.co/q4i4ab7HJh +01/26/2018,Sports_celeb,@TheNotoriousMMA,God bless us all 🙏 https://t.co/i4h2pZOhUI +01/25/2018,Sports_celeb,@TheNotoriousMMA,"We are having lunch on the jet on our way to Ibiza, and he is still after the watch too. +My… https://t.co/Z1mwPMaqgU" +01/19/2018,Sports_celeb,@TheNotoriousMMA,Testosterone. https://t.co/szD4xOnVnK +01/19/2018,Sports_celeb,@TheNotoriousMMA,"In a parallel universe could we have seen this? +Follow my media empire @Maclifeofficial on all… https://t.co/sbpIdFvMBL" +01/19/2018,Sports_celeb,@TheNotoriousMMA,RT @Betsafe: That #FridayFeeling. 💯🔥 https://t.co/milMUmSypE +01/19/2018,Sports_celeb,@TheNotoriousMMA,RT @JaredDudley619: Just got done watching @TheNotoriousMMA new Movie!!! 🔥🔥🔥🔥 Hate him or Love him but after watching that movie you will r… +01/19/2018,Sports_celeb,@TheNotoriousMMA,White teeth in 10 minutes with @hismileteeth. Go to https://t.co/rKIK9Dm9WA to get yours #ad https://t.co/mGh4F4Xvgu +01/18/2018,Sports_celeb,@TheNotoriousMMA,Fresh and solid. You bet your bollox I can play Centre half hahah https://t.co/Ij9IDFrfBV +01/18/2018,Sports_celeb,@TheNotoriousMMA,"Working on the ""Blitz"" tonight at @SBG_Ireland. +An underrated technique until it goes through… https://t.co/vIOjO3VzO7" +01/16/2018,Sports_celeb,@TheNotoriousMMA,The White Knight. https://t.co/dEYPhaBZZ6 +01/16/2018,Sports_celeb,@TheNotoriousMMA,Proud of the newest members of @beatsbydre. Keep pushing boundaries! #abovethenoise https://t.co/sa9dTKLk3Z +01/16/2018,Sports_celeb,@TheNotoriousMMA,The home of the champ champ. https://t.co/UlSYRGkxMQ +01/15/2018,Sports_celeb,@TheNotoriousMMA,Driving out the compound these women are animals. https://t.co/zRM29Lp6na +01/15/2018,Sports_celeb,@TheNotoriousMMA,https://t.co/OinS5sQjyt https://t.co/BtloiWrfSl +01/14/2018,Sports_celeb,@TheNotoriousMMA,The Rich list. https://t.co/cjseZSJJfG +01/14/2018,Sports_celeb,@TheNotoriousMMA,"Great job on Dancing with the stars @GregorErin!! #Proud +Voting lines are now open everyone!… https://t.co/j0nTbt41OQ" +01/13/2018,Sports_celeb,@TheNotoriousMMA,Taasty! https://t.co/yFeTvLb10V +01/12/2018,Sports_celeb,@TheNotoriousMMA,"Fighting pure is a different gravy. +Looking at the landscape of my current opponents, everyone… https://t.co/aKEjNDnn01" +01/12/2018,Sports_celeb,@TheNotoriousMMA,Control that wrist and let rip into the temple with the free hand. Stay ready always. https://t.co/mzcrykyLA0 +01/12/2018,Sports_celeb,@TheNotoriousMMA,Great rounds with my brother sergey_pikulskiy tonight at @SBG_Ireland! https://t.co/KfmY1Xd8Vq +01/12/2018,Sports_celeb,@TheNotoriousMMA,Back at the gym floyds a rat. https://t.co/FT5Zea2z8N +01/12/2018,Sports_celeb,@TheNotoriousMMA,"This is the new @marquedelux range. +The one in the back is my range. https://t.co/QJW5EC7jOc" +01/11/2018,Sports_celeb,@TheNotoriousMMA,"My latest time piece. +The pink gold skeleton. https://t.co/c64QJQAuwu" +01/10/2018,Sports_celeb,@TheNotoriousMMA,Plunder. https://t.co/QpLdbXNOJr +01/10/2018,Sports_celeb,@TheNotoriousMMA,With the Baroness lady Mone of Mayfair. https://t.co/6ybjrmoDWP +01/10/2018,Sports_celeb,@TheNotoriousMMA,"Face off with Mr. Branson. +He is not a knighted Sir on this soil. https://t.co/LQBC1zYhP1" +01/10/2018,Sports_celeb,@TheNotoriousMMA,@FloydMayweather I am the cartel. +01/10/2018,Sports_celeb,@TheNotoriousMMA,RT @MichelleMone: Totally love this guy!! @TheNotoriousMMA https://t.co/qHH4Fg9Fx9 +01/10/2018,Sports_celeb,@TheNotoriousMMA,"Pulling into the back of the convention centre to collect some award. +Handy. Thanks. https://t.co/nBCAO4wV3H" +01/10/2018,Sports_celeb,@TheNotoriousMMA,Buzzing with my auntie Joan at Eddie Rockets hahah ❤ https://t.co/kRvDw85HsI +01/10/2018,Sports_celeb,@TheNotoriousMMA,Yup the Moore's ❤ https://t.co/hBDR7jLQKK +01/09/2018,Sports_celeb,@TheNotoriousMMA,"The road to becoming the GOAT goes through me #EAUFC3 #EASponsored + +Get Champions Edition 👉 https://t.co/JUNlKeiqAv https://t.co/pZcG1xr3yt" +01/09/2018,Sports_celeb,@TheNotoriousMMA,"This is a happy young man in the midst of it all! +God bless this life. Truly god bless. https://t.co/izlrYNwFwx" +01/09/2018,Sports_celeb,@TheNotoriousMMA,"Great to meet this little man tonight. +My training partner Ciaran Maher, his son and his wife.… https://t.co/mRwyMIlpa3" +01/09/2018,Sports_celeb,@TheNotoriousMMA,The only Q in the place. https://t.co/Lk0FL8twuo +01/09/2018,Sports_celeb,@TheNotoriousMMA,"I shut down funderland tonight, for my family and friends to have fun on this fresh January… https://t.co/1DHxX3j2b9" +01/08/2018,Sports_celeb,@TheNotoriousMMA,The people of Ireland I love you 🍀❤ https://t.co/mC7a7Ueq04 +01/06/2018,Sports_celeb,@TheNotoriousMMA,"This moment was survived. +The arm was kept locked out straight as pictured, allowing the… https://t.co/W0rgQvbue2" +01/06/2018,Sports_celeb,@TheNotoriousMMA,McGregor rules. https://t.co/dWCD7PlD5f +01/06/2018,Sports_celeb,@TheNotoriousMMA,"Great work with my brother and head coach of sbgdublin24 The Hooligan @paddyholohanmma +yup the… https://t.co/hUHf1TrjPQ" +01/06/2018,Sports_celeb,@TheNotoriousMMA,Late night trim feeling so good. https://t.co/OdwvCQitRe +01/05/2018,Sports_celeb,@TheNotoriousMMA,Shut your weasel mouth. Who gives a fuck about the North American numbers when we are the GLOBAL KINGS you shmuck.… https://t.co/fdE7hL1z8r +01/05/2018,Sports_celeb,@TheNotoriousMMA,Solid https://t.co/Py7PFTpl3X +01/05/2018,Sports_celeb,@TheNotoriousMMA,Great work with my brother @richie_smullen today at @SBG_Ireland. Look out for him on the next… https://t.co/zh6qFEQhNY +01/04/2018,Sports_celeb,@TheNotoriousMMA,"RT @John_Kavanagh: Starting on Monday one of my first Black Belts, Nerigus, will be coaching full time at HQ. He started with me more than…" +01/04/2018,Sports_celeb,@TheNotoriousMMA,A lot of great buzzes in this mad life but none greater or madder than this buzz right here… https://t.co/6FY9Ggm0x0 +01/04/2018,Sports_celeb,@TheNotoriousMMA,🍆 @CalvinKlein https://t.co/leFoCBBvLV +01/03/2018,Sports_celeb,@TheNotoriousMMA,"""Smiles every time my face is up in the source!"" +Whatever you do in this life, do it for your… https://t.co/oHHX0KOoDU" +01/03/2018,Sports_celeb,@TheNotoriousMMA,"RT @ConormcGregor5: A Irish woman didn't take too kindly to being clamped so she removed the clamp herself & left this message + +'You'll do…" +01/02/2018,Sports_celeb,@TheNotoriousMMA,"""The Flatley"" +With sharp peripheral vision and big balls of steel, you too can master this… https://t.co/EfgSbLEIwg" +01/02/2018,Sports_celeb,@TheNotoriousMMA,I slaughter your pets and wear them as coats. And I only wear them once. https://t.co/5IMAc3ysgN +01/02/2018,Sports_celeb,@TheNotoriousMMA,The super hero villain. @beatsbydre https://t.co/Ln2gr1wVa3 +01/01/2018,Sports_celeb,@TheNotoriousMMA,Now get your Diddy's out and beg. +01/01/2018,Sports_celeb,@TheNotoriousMMA,And that's Diddy bread on top of already Diddy bread. +01/01/2018,Sports_celeb,@TheNotoriousMMA,"Truly truly truly get on your fucking knees and beg me. Otherwise I don't give a bollox. +My whiskey is out this year and thats Diddy bread." +01/01/2018,Sports_celeb,@TheNotoriousMMA,Shin bone to the cheek bone. The rule set kept you out the funeral home. https://t.co/chJ5ieUQvQ +01/01/2018,Sports_celeb,@TheNotoriousMMA,That Dagestani was dog shit the other night you's are all nuts. Game full of sloppy bums asking to be slept. Pay me my worth and Kings back. +01/01/2018,Sports_celeb,@TheNotoriousMMA,"RT @CageWarriors: One shot. @TheNotoriousMMA has been putting people away with this left hand since the early days! 👌 + +#McGregorTakeover ht…" +01/01/2018,Sports_celeb,@TheNotoriousMMA,#2017BestNine ❤ https://t.co/zkAcbcImkB +12/30/2017,Sports_celeb,@TheNotoriousMMA,Big Mickey https://t.co/fyZLFGgt3X +12/26/2017,Sports_celeb,@TheNotoriousMMA,"Happy Christmas everyone ❤️ +I had a special day with my son, my family and my friends! +I hope… https://t.co/buwkiiHpz5" +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @ashbabyxx24xx: Best Christmas present ever. Can’t wait to settle down and watch @TheNotoriousMMA tonight. Im@proud to be half Irish ☘️… +12/25/2017,Sports_celeb,@TheNotoriousMMA,"RT @joshtetlow: Watching the @TheNotoriousMMA Movie, Fire lit, Whisky in hand. A Merry Christmas to all the Tebow lovers and haters! 🎥 🥃🎄 h…" +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @ryannevanssNo9: Going to be a good rest of the day 🤴🎁@TheNotoriousMMA https://t.co/TAhDLXZ5pz +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @StephenMcMinter: People always tell me they dunno what to buy me and then they roll up with a hand signed @TheNotoriousMMA photo. Clear… +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @stan_cargill: @TheNotoriousMMA brothers favourite Christmas present ... https://t.co/et927Tcfin +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @Vince_Costello: @TheNotoriousMMA best Christmas gifts ever! https://t.co/MyYQf0y44L +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @AdamB156: Santa knew what’s up! @TheNotoriousMMA https://t.co/lxN2XPIc8k +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @James_Hoare2301: All I wanted for Christmas was the @TheNotoriousMMA movie and I got it ❤️ It’s the small things that count... Merry Ch… +12/25/2017,Sports_celeb,@TheNotoriousMMA,RT @jordhall6: What a christmas present this is!!! Over the moon with it!! Unreal best christmas ever!! @TheNotoriousMMA @DeeDevlin1 @John_… +07/02/2018,Sports_celeb,@TigerWoods,"Tiger finishes tied for 4th @QLNational, making this his second-best showing of the season. - TGR +https://t.co/PKxCmT14iZ" +07/02/2018,Sports_celeb,@TigerWoods,"Congrats @F_Molinari on a great win @QLNational! Thanks to the fans, volunteers, @TPCPotomac and my @TGRLiveEvents… https://t.co/iMVMTbepm6" +07/01/2018,Sports_celeb,@TigerWoods,Tiger tees off tomorrow at 1:20 p.m. ET with hopes that the course plays firm and tough. – TGR https://t.co/VvVK5ansgZ +06/30/2018,Sports_celeb,@TigerWoods,The camo bag used in today’s round will be signed and entered into an auction where the proceeds will benefit… https://t.co/SxUb2MS2v1 +06/30/2018,Sports_celeb,@TigerWoods,"“I was thinking something in the mid-to-high 60’s would have been a good score, and I was able to do that,” said Wo… https://t.co/yghaNw1j0X" +06/29/2018,Sports_celeb,@TigerWoods,"Woods tees off tomorrow morning at 8:20 a.m. ET - TGR +https://t.co/7mi2QlFeA4" +06/28/2018,Sports_celeb,@TigerWoods,Go check out @TGRFound’s Activity Zone at @QLNational this weekend! - TGR https://t.co/SgXmdzVPTB +06/28/2018,Sports_celeb,@TigerWoods,"“Fun Pro-Am round today. Excited to be back in DC playing at the @QLNational supporting @TGRFound.” #MomentsMadeHere +https://t.co/NsgbMifWBq" +06/27/2018,Sports_celeb,@TigerWoods,I am proud to continue the tradition of honoring and supporting our nation’s military at the @QLNational.… https://t.co/w4n1636dEI +06/26/2018,Sports_celeb,@TigerWoods,RT @TGRFound: Check out this great article via @usatoday: @TigerWoods wants to level the playing field in education one child at a time htt… +06/17/2018,Sports_celeb,@TigerWoods,"Happy Father's Day everyone. +I'm blessed and proud to be Sam's and Charlie's dad." +06/16/2018,Sports_celeb,@TigerWoods,"Tiger heads home after missed cut at U.S. Open but looks forward to upcoming events, including the @QLNational. - T… https://t.co/zETwWpCaQh" +06/15/2018,Sports_celeb,@TigerWoods,"Tiger tees off at tomorrow morning at 8:02 a.m. ET on the 10th hole with Johnson and Thomas. - TGR +https://t.co/eW5ZKmwaBx" +06/13/2018,Sports_celeb,@TigerWoods,"Upon arrival at Shinnecock, Woods practices with fellow competitors and friends who touch on how his game is lookin… https://t.co/JBnWD7B7zg" +06/13/2018,Sports_celeb,@TigerWoods,"It’s been 10 years since Woods won the U.S. Open. He’s back with hopes of a fourth win, this time at Shinnecock Hil… https://t.co/ad39RLr9fe" +06/04/2018,Sports_celeb,@TigerWoods,"“Overall, my game is where it needs to be heading into the U.S. Open, and that’s something that’s very positive,” s… https://t.co/qJLA7VEhzf" +06/03/2018,Sports_celeb,@TigerWoods,"“I’m in a position where if I shoot another good round like I had the last two days, I’ve got a chance,” said Woods… https://t.co/bP5yrUTpjm" +06/02/2018,Sports_celeb,@TigerWoods,"“I was in the rhythm of the round,"" said Woods after making an eagle on the 11th hole. Finishing today at 5-under-p… https://t.co/SvfI5qGZ9E" +06/01/2018,Sports_celeb,@TigerWoods,"Tiger, who ended Round 1 at even par, will tee off tomorrow at 1:16 p.m. ET with Dufner and Rose. - TGR +https://t.co/KIG0Xuu4AZ" +05/30/2018,Sports_celeb,@TigerWoods,"“This one is very special to all of us for what he has done,” said Woods of tournament founder and host, Jack Nickl… https://t.co/lftr1OJkyf" +05/30/2018,Sports_celeb,@TigerWoods,Fun playing with Peyton today. Now time to do some work @MemorialGolf https://t.co/YuhCTiMpMi +05/30/2018,Sports_celeb,@TigerWoods,Excited to be back at The Memorial. New @TaylorMadeGolf #MGwedge going in the bag this week. https://t.co/wq83blgY20 +05/29/2018,Sports_celeb,@TigerWoods,"Here today at Shinnecock, and grateful every day to the men & women who sacrificed their lives to give us our freed… https://t.co/bUBxAIk63F" +05/23/2018,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Loved having our friends from @ChiGolfAlliance in the office yesterday. Wonderful to hear @MarkRolfingGC and @TigerWood… +05/23/2018,Sports_celeb,@TigerWoods,So proud of @TGRFound for being recognized as a leader in leveraging tech and talent to promote social good. - TGR https://t.co/h5pI7HASaO +05/21/2018,Sports_celeb,@TigerWoods,"""Joe, take the day off."" @TGRFound supporter to caddie for Woods Wednesday at #HeroWorldChallenge for $50,000 donat… https://t.co/eLDNrMynY7" +05/20/2018,Sports_celeb,@TigerWoods,"Thank you @LarryFitzgerald, @ReggieBush and all of the guests who came out to #TigerJam to support @TGRFound this w… https://t.co/ksdTtgKfji" +05/20/2018,Sports_celeb,@TigerWoods,What a great show by @train at #TigerJam. Thank you for supporting @TGRFound https://t.co/UbGjiZ6Nnn +05/20/2018,Sports_celeb,@TigerWoods,Glad to have @TGRFound scholar Desiree Simms share her story with the #TigerJam guests. Such an inspiration! https://t.co/XwysAknQQq +05/18/2018,Sports_celeb,@TigerWoods,Excited to celebrate 20 years of #TigerJam this weekend. This event has been vital to the impact @TGRFound has had… https://t.co/40dMGox4Nw +05/18/2018,Sports_celeb,@TigerWoods,Fun time teeing it up for guests at Shadow Creek for the 20th #TigerJam today! https://t.co/u0dKi7rako +05/14/2018,Sports_celeb,@TigerWoods,"“I felt good in basically every facet of my game,” said Woods, who finished The Players tied for 11th. - TGR +https://t.co/A28ay0SelN" +05/13/2018,Sports_celeb,@TigerWoods,"Happy Mother’s Day everyone. Thank you Mom for giving me the strength to chase after my dreams in school, golf, lif… https://t.co/xhy2qQjxW8" +05/13/2018,Sports_celeb,@TigerWoods,"Rising up the leaderboard, Tiger finishes Saturday’s round at 7-under-par 65. - TGR +https://t.co/op8DKddLaJ" +05/12/2018,Sports_celeb,@TigerWoods,"Woods heads into the weekend at The Players, teeing off tomorrow at 9 a.m. ET. - TGR +https://t.co/H4t0r0cPVv" +05/11/2018,Sports_celeb,@TigerWoods,"“I gotta drive it a lot better than I did today and obviously hit it closer,” said Woods, who tees off tomorrow mor… https://t.co/L1qqh2iU8c" +05/09/2018,Sports_celeb,@TigerWoods,"“I think it’s going to be fun playing with him again,” said Woods of Mickelson. The two, alongside Rickie Fowler, w… https://t.co/YQDDc4nM5t" +05/07/2018,Sports_celeb,@TigerWoods,"Woods finishes tied for 55th and is already looking forward to next week. - TGR +https://t.co/0MKPwljGac" +05/06/2018,Sports_celeb,@TigerWoods,"Having not played at the @WellsFargoGolf in six years, it really meant a lot to me to receive so much love and supp… https://t.co/F7Box8S1ga" +05/06/2018,Sports_celeb,@TigerWoods,"“I’m hitting the ball well enough to contend, to win this golf tournament,” said Woods, who tees off tomorrow at 11… https://t.co/JYX8zw4ZZs" +05/05/2018,Sports_celeb,@TigerWoods,"“I just need to make the adjustments,” Woods said in regards to the firm greens. With a birdie on the final hole, h… https://t.co/48JdUyW9dx" +05/04/2018,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: #MayThe4thBeWithYou https://t.co/DtEgDRHsno +05/04/2018,Sports_celeb,@TigerWoods,"Woods finishes the opening round with an even par. He will tee off tomorrow morning at 7:40 a.m. ET - TGR +https://t.co/g9OqXxNKRA" +05/02/2018,Sports_celeb,@TigerWoods,"Tiger arrives at the Wells Fargo Championship with new irons and high hopes for the weekend. - TGR +https://t.co/ROjYaLBuYk" +05/01/2018,Sports_celeb,@TigerWoods,Phase 1 of irons development with @TaylorMadeGolf is complete. Looking forward to teeing it up this week! https://t.co/Msgkyu4K0t +04/26/2018,Sports_celeb,@TigerWoods,Break over. Time to get back to work at @WellsFargoGolf and @THEPLAYERSChamp. See you out there. +04/25/2018,Sports_celeb,@TigerWoods,"RT @BluejackNation: Two years ago today, we celebrated the grand opening of @BluejackNation with @TigerWoods and @tgrdesignbytw. As we refl…" +04/24/2018,Sports_celeb,@TigerWoods,"Inspiring day working with my @TGRFound team and meeting Pratima Sherpa, an amazing young woman from Nepal. We can… https://t.co/xYcHSKQg6s" +04/17/2018,Sports_celeb,@TigerWoods,Had a great time with the kids at @GolfBigCedar's Junior Clinic this afternoon. Nice way to end the day. https://t.co/1bqtYZaqam +04/17/2018,Sports_celeb,@TigerWoods,Great to be back at Payne's Valley with my @tgrdesignbytw team and @GolfBigCedar. https://t.co/4Qd9vlppjc +04/09/2018,Sports_celeb,@TigerWoods,"Bittersweet ending for Tiger as he finished the last round at The Masters. - TGR +https://t.co/emtXFyum45" +04/09/2018,Sports_celeb,@TigerWoods,Congrats @PReedGolf! At worst you have assured yourself a captain’s pick for next year’s @PresidentsCup. +04/08/2018,Sports_celeb,@TigerWoods,"""I wish this weekend would have been a little bit better,"" Woods said, hopeful for a strong finish. - TGR +https://t.co/EhMpaEgkwK" +04/07/2018,Sports_celeb,@TigerWoods,"Tiger continuing into weekend thankful to be a part of it all. - TGR +https://t.co/LTXEwYSOao" +04/06/2018,Sports_celeb,@TigerWoods,"""There's a lot of holes left to be played,"" said Woods, who will tee off today at 1:27 p.m. ET. - TGR +https://t.co/fLzA64UKDP" +04/05/2018,Sports_celeb,@TigerWoods,"The wait is over. - TGR +https://t.co/7hwq04UfkY" +04/04/2018,Sports_celeb,@TigerWoods,"Tiger tees off Thursday at 10:42 a.m. ET, and we can hardly wait. - TGR +https://t.co/8Vl9t3WBSN" +03/30/2018,Sports_celeb,@TigerWoods,"Just a few more days until Augusta. I'm excited! +https://t.co/BzD70K3V5o" +03/26/2018,Sports_celeb,@TigerWoods,"Excited to be back in D.C. this summer and looking forward to playing in @TheNationalDC. + +https://t.co/NGkpoveZ8y" +03/19/2018,Sports_celeb,@TigerWoods,It was a great two weeks of being in contention again. I feel like I'm getting a little better. Great playing by Ro… https://t.co/5aljwJC54B +03/13/2018,Sports_celeb,@TigerWoods,The @PresidentsCup has always been special to me and I'm so excited for the opportunity to lead the U.S. Team in 20… https://t.co/M6nDOj0XFs +03/12/2018,Sports_celeb,@TigerWoods,"Wow, what an amazing week...people, atmosphere, adrenaline, back nine on Sunday, man I’ve missed this. Getting bett… https://t.co/EYk1wAtE22" +03/02/2018,Sports_celeb,@TigerWoods,After a good recovery week I’m committing to play in the @ValsparChamp and @APinv next two weeks. +02/25/2018,Sports_celeb,@TigerWoods,Happy 80th bday Phil. Thanks for believing in me and always being someone I could trust. +02/19/2018,Sports_celeb,@TigerWoods,"Thanks to @GenesisUSA, the fans, volunteers and my @TGRLiveEvents staff for an amazing @genesisopen week. https://t.co/Q1JXTQAj4z" +02/19/2018,Sports_celeb,@TigerWoods,Congrats @bubbawatson on winning the @genesisopen. Proud to add you once again to the impressive list of champions… https://t.co/3MenMORmp3 +02/15/2018,Sports_celeb,@TigerWoods,Frank likes his new bag. #GenesisOpen https://t.co/9IvLgJF3Re +02/15/2018,Sports_celeb,@TigerWoods,"Enjoyed the Pro-Am today at Riviera. Looking forward to round 1 of @genesisopen. + +https://t.co/G2GZuM4dKH" +02/14/2018,Sports_celeb,@TigerWoods,I had a great time getting to know one of #TGRFoundation's Earl Woods Scholars Andy Ho. Shout out to Western High f… https://t.co/XzpSW4j5zy +02/13/2018,Sports_celeb,@TigerWoods,"“Over the last 21 years, my foundation has grown to be bigger than just me and today I'm excited to announce the ne… https://t.co/haMv5sK7e5" +02/01/2018,Sports_celeb,@TigerWoods,Riviera has always been a special place for me. Looking forward to playing in the Genesis Open. https://t.co/bKDzF98TRS +01/29/2018,Sports_celeb,@TigerWoods,Can’t thank the San Diego fans enough. I scrambled my butt off but happy with my first event back. See you at Riv! +01/25/2018,Sports_celeb,@TigerWoods,Great session @TaylorMadeGolf. New M3 is dialed in and ready to go. #m3driver https://t.co/xkESziPm8l +01/23/2018,Sports_celeb,@TigerWoods,RT @genesisopen: We went 1-on-1 with @TigerWoods and asked all the hard hitting questions like 'what would your walk up song be?' Watch now… +01/18/2018,Sports_celeb,@TigerWoods,Welcome to the crew @Lexi https://t.co/2eWBpU7X37 +01/16/2018,Sports_celeb,@TigerWoods,Busy few weeks testing @TaylorMadeGolf’s #TwistFace technology. Really like what I’m seeing. Here’s why: https://t.co/AqUzpgHvOG +01/15/2018,Sports_celeb,@TigerWoods,Happy MLK Day everyone https://t.co/AFmU482Gfd +01/09/2018,Sports_celeb,@TigerWoods,He’s back! #RaiderNation https://t.co/cHvjXqqn5m +01/04/2018,Sports_celeb,@TigerWoods,Excited to start my season off in SoCal at @FarmersInsOpen and @genesisopen. https://t.co/TaX9wjAeFN +01/01/2018,Sports_celeb,@TigerWoods,Happy birthday to myself :) Nothing like shooting a cobia and an amberjack. https://t.co/fqff602bk3 +12/29/2017,Sports_celeb,@TigerWoods,"Reflecting on 2017, optimistic about 2018. https://t.co/hKxk8eluWR" +12/22/2017,Sports_celeb,@TigerWoods,By TW https://t.co/uudaN5hP31 +12/21/2017,Sports_celeb,@TigerWoods,RT @KidRock: #TBT Tiger Jam 2013 https://t.co/nq2LkSBKu4 +12/20/2017,Sports_celeb,@TigerWoods,There’s nothing better than working with great partners. Thanks @DiamanteCabo https://t.co/njJTwtRoq9 +12/18/2017,Sports_celeb,@TigerWoods,Proud to support @tgrdesignbytw friend Johnny Morris’s @WOWaquarium and his efforts on conservation.… https://t.co/Nr98F1KGek +12/16/2017,Sports_celeb,@TigerWoods,Thank you @KenJowdy and @DiamanteCabo members for a special few days. Excited about the #oceanclubcabo & our new… https://t.co/NSLaaKXctz +12/15/2017,Sports_celeb,@TigerWoods,"Great to be back @DiamanteCabo with @tgrdesignbytw - Busy, fun day ahead!" +12/14/2017,Sports_celeb,@TigerWoods,Pretty cool event @BluejackNation this week for a great cause. https://t.co/8wRnJeVDPW +12/06/2017,Sports_celeb,@TigerWoods,Great being with my team @BridgestoneGolf. Gearing up for an even better… stronger 2018. #DareToBeBetter https://t.co/R0tcOplyDH +12/05/2017,Sports_celeb,@TigerWoods,Excited to be back for our 20th year of #TigerJam https://t.co/Wf2JJoZyDH +12/03/2017,Sports_celeb,@TigerWoods,Congratulations to @RickieFowler on an unforgettable victory at the #heroworldchallenge! https://t.co/1OtqSopZeW +11/30/2017,Sports_celeb,@TigerWoods,Excited to be back and teeing it up with Bridgestone Golf’s TOUR B XS https://t.co/NYZI07uMti +11/30/2017,Sports_celeb,@TigerWoods,Time to go to work. #M2driver @TaylorMadeGolf https://t.co/esXjSZ28fP +11/29/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: “My dad and I had this idea of having this event and I just think that over these years that my dad would have been very… +11/28/2017,Sports_celeb,@TigerWoods,"RT @TWFoundation: We INSPIRE youth to THRIVE in school & beyond. TOGETHER, we can make the future shine bright! GIVE: https://t.co/KMt09uQv…" +11/28/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: Catch @TigerWoods live talking all things #heroworldchallenge on @GolfChannel during @GCMorningDrive at 8:30 a.m. ET htt… +11/27/2017,Sports_celeb,@TigerWoods,Looking forward to a great week at Albany for the #heroworldchallenge https://t.co/unFzOFIY3R +11/26/2017,Sports_celeb,@TigerWoods,RT @TGRLiveEvents: Welcome to the 2017 #heroworldchallenge | @TigerWoods https://t.co/p4MfWOyz32 +11/25/2017,Sports_celeb,@TigerWoods,Bryce Love is THE best player in college football. Period. Show some #HeismanLove for @Blovee_20. +11/11/2017,Sports_celeb,@TigerWoods,"Happy Veterans Day to the men & women, including my Pop, who selflessly served our great country and gave us our freedom. #VeteransDay" +11/06/2017,Sports_celeb,@TigerWoods,Another W. Just win baby!!!!!! +11/06/2017,Sports_celeb,@TigerWoods,"There’s only ONE Nation, #RaiderNation https://t.co/Nvy2vqy2OK" +11/03/2017,Sports_celeb,@TigerWoods,RT @GenoPodcast: Episode 2 featuring @TigerWoods is LIVE. Click the link to listen! https://t.co/M2iRy5MXBK +11/02/2017,Sports_celeb,@TigerWoods,Not the result we wanted after a great season. We will be back to the Series soon. Proud to be a Doyer fan. +11/01/2017,Sports_celeb,@TigerWoods,We own game 7. Go Doyers!!!! #WorldSeriesGame7 +10/31/2017,Sports_celeb,@TigerWoods,"RT @TGRLiveEvents: What is @tigerwoods favorite #Halloween costume? Well, he has TWO. + +#TGRLive #HappyHalloween https://t.co/g0MeFMYpdJ" +10/30/2017,Sports_celeb,@TigerWoods,I’d like to thank the committee of 1 for picking myself and Daniel Berger to play in this years #HeroWorldChallenge. https://t.co/z5tn5aARUY +10/26/2017,Sports_celeb,@TigerWoods,"I last went to the #WorldSeries with my Dad in 1988, also game 2. Amazing to be back almost 30 years later. Let’s g… https://t.co/HR3pF5vnZB" +10/23/2017,Sports_celeb,@TigerWoods,Return of the Stinger. #starwars https://t.co/R7srIDGXjl +10/19/2017,Sports_celeb,@TigerWoods,"What a dream night. All 3 of my teams are playing. Raider Nation, The Doyers and the Lake Show!!!!!!!!! Just win baby!" +10/15/2017,Sports_celeb,@TigerWoods,Making Progress https://t.co/I3MZhJ74kI +10/13/2017,Sports_celeb,@TigerWoods,What an amazing 3 days of golf at #TWInvitational. Thank you to @usli150 and everyone who supported @twfoundation a… https://t.co/L2OfRUPvKb +10/10/2017,Sports_celeb,@TigerWoods,A huge thank you to @kevin_chappell for joining me on the range for a fun exhibition with #TWInvitational guests… https://t.co/34PfvfugBU +10/10/2017,Sports_celeb,@TigerWoods,Both the @TWFoundation and I are thrilled to have Earl Woods Scholar Tony Armas join us at tonight’s… https://t.co/vuWWzwbwkL +10/07/2017,Sports_celeb,@TigerWoods,Smooth iron shots https://t.co/v9XLROZnfW +09/27/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Here’s a first look at The Playgrounds @jacksbayclub in the beautiful Bahamas. We’re excited about the golf & amazing lo… +09/22/2017,Sports_celeb,@TigerWoods,Looking forward to the @PresidentsCup in NYC next week. https://t.co/V0mZQ2KcOv +09/12/2017,Sports_celeb,@TigerWoods,Thinking about my friends and fellow Floridians throughout the state. I pray everyone is safe and your recovery is as quick as possible. +09/01/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: We're excited for the future & to be a part of the restoration at Jackson Park & South Shore golf courses - great articl… +08/31/2017,Sports_celeb,@TigerWoods,Dr. gave me the ok to start pitching https://t.co/tboq1L3Xdn +08/28/2017,Sports_celeb,@TigerWoods,Heartbreaking images from Houston and throughout TX. Thinking about the brave & resilient people there & my friends at @BluejackNation +08/26/2017,Sports_celeb,@TigerWoods,RT @tgrdesignbytw: Great day working on Payne's Valley with @TigerWoods & Johnny Morris of @BassProShops followed by a fun night @BigCedarL… +08/25/2017,Sports_celeb,@TigerWoods,Great to be back @BigCedarLodge. Excited to see all the progress being made on Payne’s Valley. https://t.co/TRIhhdRGGJ +08/21/2017,Sports_celeb,@TigerWoods,My daughter Sam took a great pic from her phone while we were in Tennessee for the eclipse. #EclipseSolar2017 https://t.co/TVZ5IOUQWr +08/20/2017,Sports_celeb,@TigerWoods,What an amazing day for @Lexi and the @SolheimCupUSA team. That was some inspirational golf. Congrats on winning the Cup. +08/17/2017,Sports_celeb,@TigerWoods,"RT @TWFoundation: Want to see @TWFoundation at @SXSWedu? VOTE NOW to get our 6 sessions through! #TWFatSXSWedu #PanelPicker + +https://t.co/6…" +08/16/2017,Sports_celeb,@TigerWoods,"Good luck to everyone this week at #USAmateur at Riv, home of @TGRLiveEvents @GenesisOpen. -TGR" +08/15/2017,Sports_celeb,@TigerWoods,Got to have a great dinner with the PGA champion @JustinThomas34 and his family and friends. https://t.co/QwVo5aJ0bg +08/14/2017,Sports_celeb,@TigerWoods,A great honor for @StewartCink to be named this year's #PayneStewartAward winner pres. by @SouthernCompany. Well de… https://t.co/luOG0FSS6K +08/13/2017,Sports_celeb,@TigerWoods,Congrats JT!!!! Way to rise above the carnage and out execute everyone on that back nine. @JustinThomas34 +08/10/2017,Sports_celeb,@TigerWoods,"Contrary to the false Daily Mail article, Kristin Smith and I are no longer dating and haven’t since last year." +08/08/2017,Sports_celeb,@TigerWoods,Really like & support decision by PGA & the Tour. A big event every month and flexibility with schedule including the FedExCup. +08/04/2017,Sports_celeb,@TigerWoods,Nothing like free diving with the kids for lobster at Albany. https://t.co/QgdvrMYnPX +07/30/2017,Sports_celeb,@TigerWoods,Thank you to Messi and Suarez for meeting my kids and their best friends. #ElClasico https://t.co/9PqPQoR6Vb +07/23/2017,Sports_celeb,@TigerWoods,What an incredible way to comeback and win. Many congrats @JordanSpieth +07/21/2017,Sports_celeb,@TigerWoods,New cloth for the pool table. https://t.co/ARcsiGNmuH +07/04/2017,Sports_celeb,@TigerWoods,Happy Birthday America and thank you to all who defend it!! - By TW +07/03/2017,Sports_celeb,@TigerWoods,By TW https://t.co/AfHewS2uRL +07/03/2017,Sports_celeb,@TigerWoods,"Thank you @QuickenLoans & all the fans, players, volunteers, @TPCPotomac & @TGRLiveEvents staff for making this year’s @QLNational a success" +07/02/2017,Sports_celeb,@TigerWoods,Congratulations to @kylestanleygolf on your @QLNational win. Proud to call you our champion. - TW +06/19/2017,Sports_celeb,@TigerWoods,By TW https://t.co/AuX6PEgNQ1 +05/24/2017,Sports_celeb,@TigerWoods,Updates on Tiger Jam and my recovery. https://t.co/BFtv1y5v1J +05/21/2017,Sports_celeb,@TigerWoods,A huge thank you to my friend @dariusrucker for making #TigerJam 2017 an epic night to remember. -TW https://t.co/uDb9dfeS7T +05/21/2017,Sports_celeb,@TigerWoods,"So proud of Adrian Arias, our first #EarlWoodsScholar graduating with a law degree. These scholars are unrelenting.… https://t.co/OMcmzgVHz6" +05/20/2017,Sports_celeb,@TigerWoods,Thank you @KateUpton @phil_hellmuth & guests for playing poker at #TigerJam. Your support of the @TWFoundation is m… https://t.co/Y1zbgzMYgD +05/14/2017,Sports_celeb,@TigerWoods,"Thanks for the miles you drove, the courses you walked and the hugs we still share. Love you mom. -TW" +05/09/2017,Sports_celeb,@TigerWoods,"Hard to believe my first #FedExCup was almost 10 years ago now. What do you say, @vijaysinghgolf? https://t.co/1GhFGwM6um" +05/06/2017,Sports_celeb,@TigerWoods,"So close, this is why you aim for the impossible.-TW https://t.co/BTmcEh4AkF" +05/05/2017,Sports_celeb,@TigerWoods,"Proud to launch new sites for TGR, Tiger Woods Ventures. Check out what we're doing on and off the course. -TW… https://t.co/7xa6HofxfA" +04/25/2017,Sports_celeb,@TigerWoods,This was a very memorable day & milestone for me & TGR Design. Congrats to the team at Bluejack National & continue… https://t.co/hGHwaDqH1o +04/20/2017,Sports_celeb,@TigerWoods,https://t.co/tg8neDwNYt +04/18/2017,Sports_celeb,@TigerWoods,TGR Design & I are excited to partner with Johnny Morris on our first public golf course @BigCedarLodge. https://t.co/9rURWnUnKw +04/12/2017,Sports_celeb,@TigerWoods,"I’ve always wanted to design a public course, and I’m very happy that my TGR Design company will make a big announcement next week. -TW" +04/09/2017,Sports_celeb,@TigerWoods,Congrats @TheSergioGarcia. Well earned. +04/05/2017,Sports_celeb,@TigerWoods,Excellent night at the Champions dinner. Good friends and great memories. https://t.co/zEHpFq62i9 +04/03/2017,Sports_celeb,@TigerWoods,"Viewers at home should not be officials wearing stripes. Let's go @Lexi, win this thing anyway." +03/31/2017,Sports_celeb,@TigerWoods,"Champions dinner with friends Tuesday, but not tournament ready to play Augusta. https://t.co/ip14qY7sTM" +03/25/2017,Sports_celeb,@TigerWoods,"RT @nikegolf: It's going down on April 2. And you're invited. +Come play with us. #NikeGolfClub + +https://t.co/vygBECq98D https://t.co/HowVUF…" +03/23/2017,Sports_celeb,@TigerWoods,"Golfers often use the most played ball, rather than the superior one. Find your edge with @bridgestonegolf – TW… https://t.co/YGQd9LCn8T" +03/20/2017,Sports_celeb,@TigerWoods,"Great day in NYC & thankful to those who attended my book signing of The 1997 Masters, My Story.… https://t.co/O2gDuOWeDq" +03/15/2017,Sports_celeb,@TigerWoods,The most rewarding things you do in life are often the ones that look like they cannot be done – Arnold Palmer. Thi… https://t.co/6UTD93hdCt +03/14/2017,Sports_celeb,@TigerWoods,"TGR Design to design a short course at @jacksbayclub at Rock Sound on Eleuthera Island, Bahamas.… https://t.co/3oseLZGQ5b" +03/09/2017,Sports_celeb,@TigerWoods,Sadly missing the 2017 API. I really wanted to be there. My best wishes to the Palmer family & everyone at Bay Hill. https://t.co/xkbvfohcxA +03/08/2017,Sports_celeb,@TigerWoods,The 1997 Masters My Story is out in under 2 weeks (3/20). Fun reliving a very special tournament and time. https://t.co/NRDdTFzRCF +03/07/2017,Sports_celeb,@TigerWoods,Great to have @JimFuryk join @stevestricker as a Captain’s Assistant for #TeamUSA in the 2017 @PresidentsCup! +03/01/2017,Sports_celeb,@TigerWoods,Lots of thought & hard work by @USGA and @RandA to modernize our rules. Great work to benefit the game. +02/23/2017,Sports_celeb,@TigerWoods,Proud to call Billy our @qlnational champion. https://t.co/Mabj1CtBCU +02/22/2017,Sports_celeb,@TigerWoods,"Thanks to Genesis, Riviera, our TGR Live staff, amazing volunteers and the fans for making @genesisopen such a succ… https://t.co/R7cVvsY5qP" +02/12/2017,Sports_celeb,@TigerWoods,"IF WE CAN BE EQUALS IN SPORT, WE CAN BE EQUALS EVERYWHERE. https://t.co/NJCNn3nzcC" +02/10/2017,Sports_celeb,@TigerWoods,"Really looking forward to seeing everyone @genesisopen open next week, unfortunately I won't be able to play. https://t.co/DSGq6okmhu" +02/08/2017,Sports_celeb,@TigerWoods,Had a great talk on life and golf with my old friend Peter Dawson at Dubai’s Burj Al Arab. Watch the video! - TW… https://t.co/JP95ceMCjS +01/30/2017,Sports_celeb,@TigerWoods,Can you find me hitting off the Burj Al Arab’s helipad in 2004? Look for a video of me back again before Dubai Dese… https://t.co/GajIJxWbJN +01/26/2017,Sports_celeb,@TigerWoods,It’s round one of Tiger’s 2017 season. We know where we’ll be watching. #thewoodsjupiter https://t.co/KhYpx4EgM6 +01/25/2017,Sports_celeb,@TigerWoods,Can you guess Tiger's favorite memory at Torrey Pines? #SeeYouatTorrey https://t.co/x2jqdVoCS6 +01/25/2017,Sports_celeb,@TigerWoods,"After several months of testing and all brands to choose from, the choice is clearly @TaylorMadeGolf. Proud to join… https://t.co/kmq5mpVfYw" +01/25/2017,Sports_celeb,@TigerWoods,"RT @PGATOUR: 79 wins? That's crazy good. + +@TigerWoods, your thoughts? + +#HowGoodIsThat https://t.co/cpzow9yw9Q" +01/24/2017,Sports_celeb,@TigerWoods,Big decision made. Find out tomorrow. -TW https://t.co/7Ll6LUngIc +01/24/2017,Sports_celeb,@TigerWoods,What’s your favorite memory of Tiger at Torrey Pines? +01/23/2017,Sports_celeb,@TigerWoods,I’m so proud the #GenesisOpen offers the diversity exemption honoring my hero Charlie Sifford. – TW https://t.co/INM4t3LwSj +01/23/2017,Sports_celeb,@TigerWoods,We’re at The Riviera Country Club kicking off Tiger’s 2017 season with @GenesisOpen media day. https://t.co/s5MW2hGGID +01/21/2017,Sports_celeb,@TigerWoods,"Happy birthday to a living legend, @jacknicklaus" +01/20/2017,Sports_celeb,@TigerWoods,We like our options when it’s happy hour at The Woods. https://t.co/OitA2Z1JNk +01/19/2017,Sports_celeb,@TigerWoods,One week from today: the Boss is back in action! https://t.co/jfTeaNCOUA +01/18/2017,Sports_celeb,@TigerWoods,"New ventures, programs and partnerships. See what @TWFoundation has planned for 2017. https://t.co/Foc0WTYqjM https://t.co/VWkIg9RR7N" +01/17/2017,Sports_celeb,@TigerWoods,"RT @BluejackNation: @Golfweek praises @TigerWoods for @BluejackNation, a course that is ""an awful lot of fun"" and ""family-friendly"" https:/…" +01/16/2017,Sports_celeb,@TigerWoods,#MLKDAY #mondaymotivation https://t.co/2zTPh2BVg8 +01/13/2017,Sports_celeb,@TigerWoods,Behind the scenes from today's TGR photo shoot. #weareTGR https://t.co/vRBPZd322B +01/12/2017,Sports_celeb,@TigerWoods,Lots of action at The Woods today capturing picture-perfect cuisine. #thewoodsjupiter https://t.co/CdG9A3SdDn +01/09/2017,Sports_celeb,@TigerWoods,Thanks @discoveryed for helping us take the 1st step of our vision to reach millions of kids around the world.… https://t.co/aHAk9jbrn2 +01/07/2017,Sports_celeb,@TigerWoods,Scholars from around the country are at the TGR Learning Lab today. Work hard and pursue all your dreams guys! So p… https://t.co/duYLC01JXd +01/05/2017,Sports_celeb,@TigerWoods,"Read what has Tiger excited about 2017.#weareTGR +https://t.co/LSo2AtPClM https://t.co/yekRUP3tO7" +01/04/2017,Sports_celeb,@TigerWoods,We’re setting our intentions for 2017. What are you committing to? #weareTGR https://t.co/5IQ1kHxN3G +01/02/2017,Sports_celeb,@TigerWoods,Welcome to the Nike Golf Club @JDayGolf. - TW https://t.co/CyPjgtm1ao +12/31/2016,Sports_celeb,@TigerWoods,Thanks for the birthday wishes. Looking forward to a great 2017. -TW https://t.co/zH0Fa0DiD8 +12/30/2016,Sports_celeb,@TigerWoods,Hoping @StanfordFball gives me a win for my birthday. – TW #GoStanford https://t.co/2srmiOf7jT +12/27/2016,Sports_celeb,@TigerWoods,How many rounds will you get in over the holiday break? +12/24/2016,Sports_celeb,@TigerWoods,Hope you're all celebrating with loved ones this holiday season. Merry Christmas from the TGR family to yours. https://t.co/wGuAzEIBWX +12/22/2016,Sports_celeb,@TigerWoods,Xmas tradition that my kids love. Mac Daddy Santa is back! -TW https://t.co/pCWZNNKPRG +12/22/2016,Sports_celeb,@TigerWoods,"This was an awesome Christmas, plaid pants and all. – TW https://t.co/izaWXbE8hU" +12/20/2016,Sports_celeb,@TigerWoods,"RT @TWFoundation: We're certain Marcus' legacy will live on through all those he touched. #UnexpectedChampion + +https://t.co/aUcvr3XWUV" +06/30/2018,Sports_celeb,@OBJ_3,😂😂😂✊🏿 https://t.co/2uXKz96BYD +06/29/2018,Sports_celeb,@OBJ_3,Downloading.... +06/28/2018,Sports_celeb,@OBJ_3,I promise they not ready for that 🦂🦂🦂🦂 #sheeeesh +06/28/2018,Sports_celeb,@OBJ_3,I kno u kno la brudda ! https://t.co/MPTxDMjsHI +06/27/2018,Sports_celeb,@OBJ_3,"Harrell park , where u get murkkkked by the slidin boards! https://t.co/zdETZLksKu" +06/27/2018,Sports_celeb,@OBJ_3,Throw em up buss em up https://t.co/jZqLLkmiSp +06/24/2018,Sports_celeb,@OBJ_3,@famouslos32 Lol I seeeeen u +06/17/2018,Sports_celeb,@OBJ_3,Thank you to @pizzahut for supporting my annual youth @ProCamps. Congratulations to the Pizza Hut Supreme Effort aw… https://t.co/XwMXrWCS3p +06/17/2018,Sports_celeb,@OBJ_3,"RT @JosinaAnderson: @OBJ_3 posing with all his look-a-likes. If your hair is not the same, for this specific photo, you didn’t make the cut…" +06/17/2018,Sports_celeb,@OBJ_3,Thank you @CitiPrivatePass for your support on my 3rd annual Football @ProCamps #CloserToPro https://t.co/HT4oCDz929 +06/16/2018,Sports_celeb,@OBJ_3,@D1PRIMO1 Keep grindin young! +06/15/2018,Sports_celeb,@OBJ_3,@TiyahnnB 💯 +06/15/2018,Sports_celeb,@OBJ_3,RT @saquon: “I wanna see my brothers flourish to they… https://t.co/j8zBGEhR06 +06/15/2018,Sports_celeb,@OBJ_3,@calebwilson81 @iammsuzy We seeeeeesss you! +06/07/2018,Sports_celeb,@OBJ_3,Lol I really be playin round at the wrong time https://t.co/dssglzIxgR +06/07/2018,Sports_celeb,@OBJ_3,😂😂😂😂 https://t.co/oOfLthBNMH +06/04/2018,Sports_celeb,@OBJ_3,Happy bday shawtyyy! Enjoy ur day https://t.co/kbaBuML6gF +06/04/2018,Sports_celeb,@OBJ_3,Spots in my @CitiPrivatePass Youth 🏈 @ProCamps are filling up fast! Click 👇 for details and to register.… https://t.co/Yh9OLq86OM +06/01/2018,Sports_celeb,@OBJ_3,100... easy! God bless u! https://t.co/BYsZi2Eo4z +05/31/2018,Sports_celeb,@OBJ_3,"Lil bra , just let it happen 😂😂 https://t.co/H8lOGQ8vpv" +05/31/2018,Sports_celeb,@OBJ_3,"I believe , keep grinding ! https://t.co/Itf1GiZt2h" +05/31/2018,Sports_celeb,@OBJ_3,Lol exactly Saquads is sticking forever!! @saquon https://t.co/bPEhkWhiGc +05/30/2018,Sports_celeb,@OBJ_3,Much love my dude! And happy happy birthday !! https://t.co/VgvDe2KyHO +05/29/2018,Sports_celeb,@OBJ_3,RT @AYungManRick: My grad cap still the best out there @OBJ_3 @Drake https://t.co/z6htqMwtMv +05/26/2018,Sports_celeb,@OBJ_3,Bale’s goal was ridiculous. 👀 +05/19/2018,Sports_celeb,@OBJ_3,😂😂😂 thanks for havin me! https://t.co/7KDTSl4fuS +05/16/2018,Sports_celeb,@OBJ_3,RT @YvesJNK: immune to negativity...thanking the Lord for my serenity @OBJ_3 +05/13/2018,Sports_celeb,@OBJ_3,I just got off the phone with mine. #CallMom #ad https://t.co/1VrNrBigpC +05/04/2018,Sports_celeb,@OBJ_3,Tell me why I paid my postmates for 3 pizzas and my man here brought me 30 😂😂 Happy Cinco de Mayo tomorrow y’all! https://t.co/Z1IGijPBPJ +04/30/2018,Sports_celeb,@OBJ_3,Been supporting for a min! Much love https://t.co/CKOHqPA2YL +04/29/2018,Sports_celeb,@OBJ_3,😂😂😂 https://t.co/s2bI7lNzL6 +04/27/2018,Sports_celeb,@OBJ_3,"@SageRosenfels18 lol I kno u just wanted me to tweet u back!! Ur a hater bro, damn that’s crazy! I can’t even be ex… https://t.co/0PrGPcnkxr" +04/27/2018,Sports_celeb,@OBJ_3,"@Lj_era8 congrats brudda ! Im watching u for life, u remind me of my favorite player ever ... @MichaelVick" +04/27/2018,Sports_celeb,@OBJ_3,God is so good. @RyanShazier i love u brother +04/27/2018,Sports_celeb,@OBJ_3,A problem. LAWD! +04/27/2018,Sports_celeb,@OBJ_3,@Lj_era8 is one of the realest things I’ve ever seen. How has nobody taken him? +04/27/2018,Sports_celeb,@OBJ_3,Btw 26 in the big blue jersey WILLL be the number one sellin Jersey in America next year. Takin all bets!!!? @saquon can’t wait Lil brudda +04/27/2018,Sports_celeb,@OBJ_3,"Um , of course !!!!!!!" +04/26/2018,Sports_celeb,@OBJ_3,"My idol. @KingJames u are what I aspire to be like, in every way ! 1 closer! Let’s rock #HATECOMININ321go" +04/22/2018,Sports_celeb,@OBJ_3,ChArlo is difffferenttt !!! +04/22/2018,Sports_celeb,@OBJ_3,GERVONTAAAA 🦍🦍🦍🦍🦍🦍🦍🦍🦍 +04/22/2018,Sports_celeb,@OBJ_3,It feeels so good to be HOME... +04/20/2018,Sports_celeb,@OBJ_3,I’m on my GRINDDDD!!! #comebackSZN +04/14/2018,Sports_celeb,@OBJ_3,Happy bday https://t.co/tvqJEM48Vc +04/14/2018,Sports_celeb,@OBJ_3,"Bro I respect that , and this is part of the reason I do it, let’s be better together I do my best to not set a bad… https://t.co/b4I4bePkAN" +04/13/2018,Sports_celeb,@OBJ_3,My @CitiPrivatePass Youth 🏈 @ProCamps is back for Year 3! Make sure you sign up at https://t.co/3iFiqSfXpE before… https://t.co/eDMjbErF5b +04/10/2018,Sports_celeb,@OBJ_3,“U make friends wit mike n gotta A.I em for ur survival.....damn” https://t.co/T1Hsrq4TCj +04/09/2018,Sports_celeb,@OBJ_3,😭😭😭😭🙏🏽 “you straight” go for anything https://t.co/o0lmNHMmId +04/09/2018,Sports_celeb,@OBJ_3,U next kinfolk !! https://t.co/0DoAEnyMEt +04/06/2018,Sports_celeb,@OBJ_3,Keep workin yung! https://t.co/qI9Z0UlnTs +04/05/2018,Sports_celeb,@OBJ_3,@jalenramsey @Jaguars 😂😂😂😂 u a fooo...Lol brudda u the coldest! We gotta get this work in regardless the situation!… https://t.co/MyOLeeUraY +04/03/2018,Sports_celeb,@OBJ_3,"Lol Man U makin it tough when u ask this way!!! If I can’t make it , I just wanna let u kno in advance HAPPY birthd… https://t.co/EETxC6GnPn" +04/02/2018,Sports_celeb,@OBJ_3,"I just wanna thank y’all, I can feel it in my soul. This is part of my purpose , I don’t think I ever got those glo… https://t.co/FMrbpHn3FA" +04/02/2018,Sports_celeb,@OBJ_3,RT @J_Roz69: @OBJ_3 my 6 year old son wanted me to share his catch with you. We’re in Houston area. He’s trying to model his game after yo… +03/26/2018,Sports_celeb,@OBJ_3,@Jakebeast35 I’m wr https://t.co/WImTWkHoqi +03/26/2018,Sports_celeb,@OBJ_3,God bless u bro! https://t.co/aWG5SfVYUr +03/09/2018,Sports_celeb,@OBJ_3,Appreciate the love and support !! https://t.co/OrSVOOuNwR +03/09/2018,Sports_celeb,@OBJ_3,https://t.co/IqT1aUTuXk yalll check my bro out !!! +03/09/2018,Sports_celeb,@OBJ_3,Old news still makes a good story....I guess. #CatchUpWereIn18’ +03/03/2018,Sports_celeb,@OBJ_3,U showed me the way. I’m proud of u blood. Been strong thru it all when all they wanted was to see u fall! The next… https://t.co/jPH0QYZyzJ +03/01/2018,Sports_celeb,@OBJ_3,Let’s see how to make this happen https://t.co/aTkoWG90EN +03/01/2018,Sports_celeb,@OBJ_3,"Run like the world depends on it. Because it does. #ChooseGo +#Nike #TeamNike https://t.co/OdmeSa8wug" +02/28/2018,Sports_celeb,@OBJ_3,I'm on Von Miller's Studio 58 tonight on Facebook Watch!  Check out me and my brother LIVE @ 8pm EST /5pm PST.… https://t.co/lcutlLAAK2 +02/27/2018,Sports_celeb,@OBJ_3,RT @JZACMusic: Ima blow up in 2018 +02/26/2018,Sports_celeb,@OBJ_3,@salafox1 @kustoo @Heskicks @RealSethFowler @FinishLine @nikestore it's real. +02/24/2018,Sports_celeb,@OBJ_3,"That’s alll I wanna do. What if we lived in a world where we did nothin but encouraged others, kept it real at the… https://t.co/VZvVt5mgeh" +02/24/2018,Sports_celeb,@OBJ_3,Grow up. Please. I’m tryna do the same. +02/24/2018,Sports_celeb,@OBJ_3,"People take things a little too serious sometimes... quick to write a story , but hey anything for a couple of like… https://t.co/8q1QznKP5i" +02/24/2018,Sports_celeb,@OBJ_3,0 https://t.co/86lS0V2FFL +02/22/2018,Sports_celeb,@OBJ_3,"RT @AllenPopper: @OBJ_3 yesterday I ran into you while I was on crutches going to doc. You saw I had difficulty, asked for my camera, and a…" +02/19/2018,Sports_celeb,@OBJ_3,Working with @Nike on some custom #AF1’s at Room72 https://t.co/12Ho77dgu4 +02/19/2018,Sports_celeb,@OBJ_3,😂😂😂 no why I meant it for real Lowkey @KDTrey5 https://t.co/d8BvTYfBgM +02/18/2018,Sports_celeb,@OBJ_3,RT @MarlonWayans: This dude just happy as fuck at all times. @obj_3 aka THE ODBJ https://t.co/HiPeIuB96d +02/18/2018,Sports_celeb,@OBJ_3,"I believe with every ounce of my body ... that God has got me. Every step of the way, I just know in my soul that h… https://t.co/BNr0nQwfgR" +02/17/2018,Sports_celeb,@OBJ_3,On my life this is what makes me wake up everyday and deal wit chaos! Lol I’ll work on those gloves and cleats for… https://t.co/cKQL05sSo2 +02/17/2018,Sports_celeb,@OBJ_3,"RT @2chainz: Appreciate the support bru @obj_3 💪🏿 @ Los Angeles, California https://t.co/FNGEVOnBMS" +02/15/2018,Sports_celeb,@OBJ_3,New Vapor 🔥 #GetGone @USNikeFootball https://t.co/Wk1xewLBGo +02/15/2018,Sports_celeb,@OBJ_3,RT @thecheckdown: Manziel and @OBJ_3 workin like it’s #Comebackszn 👀 (via @JManziel2) https://t.co/2fyP5K9bd4 +02/14/2018,Sports_celeb,@OBJ_3,"Welcome to the @HeadShoulders fam, @GusKenworthy. Good luck at the Olympic Winter Games! #ShouldersofGreatness #ad https://t.co/a2pOsGRwzf" +02/13/2018,Sports_celeb,@OBJ_3,"Introducing @CampbellsChunky Maxx Smoked Turkey & Bacon Corn Chowder w/ Wild Rice soup. Go on, #FillUp! #ad https://t.co/2dYLHApMbb" +02/12/2018,Sports_celeb,@OBJ_3,"RT @famouslos32: We live y'all ✊🏾 + +Who Got Next ? Ep. 1 Ft. @Jxmmi !! + +WATCH HERE : https://t.co/pNustsis4z https://t.co/x0q9X71Hr3" +02/09/2018,Sports_celeb,@OBJ_3,RT @usnikefootball: 2.15 #GetGone 😏 https://t.co/WAYQUrlupj +02/07/2018,Sports_celeb,@OBJ_3,@kporzee prayin for u fam. NY comin back strong next year! +02/05/2018,Sports_celeb,@OBJ_3,I gottta have it... I swear +02/05/2018,Sports_celeb,@OBJ_3,This call will be detrimental for what is a “catch” or not a catch for the remainder of NFL history. +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/5DVtntGjoB +Much respect to the #WPMOY #NFLHonors" +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/fchXveOzPn +@DangeRussWilson intercepted at #NFLHonors. Great seeing you bro!" +02/04/2018,Sports_celeb,@OBJ_3,"https://t.co/J7JWJ2EMtA + +Taking over the @HeadShoulders 360 Hair Cam at the #NFLHonors Red Carpet, let’s see who’s… https://t.co/KnqyOslAhL" +02/04/2018,Sports_celeb,@OBJ_3,See what happens next during #SBLII https://t.co/m1nU8Bn7cN +02/03/2018,Sports_celeb,@OBJ_3,There’s still time to get the ingredients to make those @Welchs #GrapeJellyMeatballs ahead of the Big Game! I’ve g… https://t.co/ty8DMneVJc +02/03/2018,Sports_celeb,@OBJ_3,Fam! Much love https://t.co/QsAIDySsPS +02/03/2018,Sports_celeb,@OBJ_3,Legendary https://t.co/Ujifv37zWT +02/02/2018,Sports_celeb,@OBJ_3,My mom and I added some special hot sauce to our @Welch’s #GrapeJellyMeatballs recipe! Comment below with your favo… https://t.co/3ADFrFLncZ +02/01/2018,Sports_celeb,@OBJ_3,Soon as my ankle back to 100 it’s on!!! https://t.co/6c10Tll6gk +02/01/2018,Sports_celeb,@OBJ_3,Broo u NBA traveled!!! https://t.co/6c10Tll6gk +02/01/2018,Sports_celeb,@OBJ_3,Since the gig’em days brother. I support u for life. #ComebackSZN https://t.co/n56zxMniCC +01/31/2018,Sports_celeb,@OBJ_3,RT @NFL: Nothing and no one will stop @TheHumble_21 from having a good time. Tune into #SBLII to see what gets him dancing. https://t.co/te… +01/31/2018,Sports_celeb,@OBJ_3,#FillUp on @CampbellsChunky Maxx Grilled Sirloin Steak soup. It has 40% more meat so you can hustle 40% more of the… https://t.co/xfK1PUB95s +01/31/2018,Sports_celeb,@OBJ_3,Had fun making my @Welchs #GrapeJellyMeatballs recipe! Comment below with your favorite special ingredient. #ad https://t.co/KbxmrhXWb4 +01/31/2018,Sports_celeb,@OBJ_3,Got a big appetite for the big game? I’ve got you covered. Check out these @Welchs #GrapeJellyMeatballs I whipped… https://t.co/mycWejmy0R +01/29/2018,Sports_celeb,@OBJ_3,@JeremyHill33 hey whatd u say about playin for the giants !?!? #ReunitedNitfeelsSoGood😂😂 BRUDDDA BRUDDDA +01/29/2018,Sports_celeb,@OBJ_3,RT @JManziel2: All the hating only fuels me more. Nothing but positive vibes on this end +01/29/2018,Sports_celeb,@OBJ_3,2:19 🤣🤣🤣🤣🤣🤣🤣 https://t.co/YQP6wsdou8 +01/25/2018,Sports_celeb,@OBJ_3,U think there’s anything u could of done better on that route? https://t.co/RdBp2AoX1N +01/25/2018,Sports_celeb,@OBJ_3,Stopppp him! Why u do em like that! https://t.co/RdBp2AoX1N +01/24/2018,Sports_celeb,@OBJ_3,They on it already brudda @Drake https://t.co/aetiqHA5sw +01/24/2018,Sports_celeb,@OBJ_3,Lol y’all boys really stupid if believe this click bait. There is an appeal process that has been more than fair. U… https://t.co/DH8KehmPbW +01/23/2018,Sports_celeb,@OBJ_3,@AB84 😂 https://t.co/XjBane3Beg +01/20/2018,Sports_celeb,@OBJ_3,U can pick the route for me! That no safety help been dead lil brudda 😭😭 https://t.co/5EmrYeJO38 +01/20/2018,Sports_celeb,@OBJ_3,Good luck bro! https://t.co/7tqd0KmHeZ +01/19/2018,Sports_celeb,@OBJ_3,Introducing @CampbellsChunky Maxx Dark Meat Chicken & Spicy Andouille Sausage Gumbo. #FillUp with yours before the… https://t.co/msuryRFNnX +01/19/2018,Sports_celeb,@OBJ_3,@God_Son80 ayeeeee man!!! U already kno what we talked about +01/19/2018,Sports_celeb,@OBJ_3,RT @God_Son80: “Prayers drowning out Opinions” +01/18/2018,Sports_celeb,@OBJ_3,Congrats @NFLPA and @opendorse for extending your partnership. The platform lets me make moves off the field that m… https://t.co/1cnq04q3tI +01/18/2018,Sports_celeb,@OBJ_3,"“To all you artists out there, who don't wanna be on a record label where the executive producer's...all up in the… https://t.co/t1s4tgFY1c" +01/17/2018,Sports_celeb,@OBJ_3,@God_Son80 “if u don’t like ur... then come to death row” 🙂😂😂😂 https://t.co/6qbNhzWjnQ +01/16/2018,Sports_celeb,@OBJ_3,RT @TeamVic: I love the reminders in life that let you know what you’re doing and the decisions you’re making are absolutely correct. +01/16/2018,Sports_celeb,@OBJ_3,U kno how I’m comin!! @horseisbk https://t.co/jk7CwkoCqc +01/15/2018,Sports_celeb,@OBJ_3,God really works in mysterious ways....let the journey begin.... I’m geeeked https://t.co/3tbOTPcSl1 +01/15/2018,Sports_celeb,@OBJ_3,Wow +01/12/2018,Sports_celeb,@OBJ_3,RT @theshiggster: When You Beat A Football Player In Madden 😂😂😂😂 @OBJ_3 https://t.co/axNMZdanpC +01/11/2018,Sports_celeb,@OBJ_3,Mannnn I gotta make that up for the women out there who were ready for that. It was the day after surgery I still w… https://t.co/9wMzafCA0I +01/08/2018,Sports_celeb,@OBJ_3,@EliApple13 Love brudda ! Let’s get up this off season ! +01/08/2018,Sports_celeb,@OBJ_3,"@EliApple13 Just hear me out... it’s really not worth it. Please bro, this what they want.... back to the drawin board . Let’s get it !" +01/08/2018,Sports_celeb,@OBJ_3,"@EliApple13 Brooooo I kno it feels good to tell these ppl off , trust me I would love nothin more than to do the sa… https://t.co/cckFeXDpv5" +01/08/2018,Sports_celeb,@OBJ_3,@EliApple13 stopppp wasting ur energy on these ppl. Please bro. +01/06/2018,Sports_celeb,@OBJ_3,U kno u inspired me thru this whole process. How to be strong! I thank u bro. And bringgg it home for the LAND. I s… https://t.co/2yltbpkx8s +01/06/2018,Sports_celeb,@OBJ_3,Yooo I’m cryinnn 😭😭👌🏽 https://t.co/5o2eQJ547P +01/03/2018,Sports_celeb,@OBJ_3,Honest question...What Friday was the best ???? 😭 +01/01/2018,Sports_celeb,@OBJ_3,In 2018 I’m just prayin for the world to be more positive. Real shxt. We all have to make a consitant efffort to wa… https://t.co/V5hzooNMgX +12/28/2017,Sports_celeb,@OBJ_3,"@AB84 lol we not coo no mo big tymerrrr , check ur phone .. meanin text messages 🤬" +12/28/2017,Sports_celeb,@OBJ_3,Hip pocket* https://t.co/3xW11YnUa6 +12/28/2017,Sports_celeb,@OBJ_3,"Lol bruh back up, always tryna be on the hop. We tryna create separation Pat. Stay tuned, I’m there this offseason. https://t.co/3xW11YnUa6" +12/28/2017,Sports_celeb,@OBJ_3,Itssss a must !!! That’s the goal! Let’s get up this off season. And btw (I kno u wanted that balll to stickkkk in… https://t.co/EqP5QQAJwh +12/25/2017,Sports_celeb,@OBJ_3,RT @ccopeland81: I live in Seattle and love our @Seahawks but my 5 year old cried when he finally got the @OBJ_3 jersey he's been begging f… +12/25/2017,Sports_celeb,@OBJ_3,I had this one circled on the calendar. Smh +12/24/2017,Sports_celeb,@OBJ_3,"Dear Santa, I wish I could be playin in this game. That’s all. Thanks" +12/24/2017,Sports_celeb,@OBJ_3,Ur too late https://t.co/e4UZQGBjEG +12/24/2017,Sports_celeb,@OBJ_3,@OttoLewis_ 👀👀👀👀👀👀 merry Christmas !! Keep eatin #3ftIn no need for review +12/22/2017,Sports_celeb,@OBJ_3,RT @_serina_2: @OBJ_3 McCabe turns seven today and all he wanted was your jersey! His wish came true and he was on the moon! He’s your supe… +12/21/2017,Sports_celeb,@OBJ_3,Good morning. 😀 +12/21/2017,Sports_celeb,@OBJ_3,How many of us have sat on the toilet too long and ur leg felll asleeep ? 😂😂😂😂😂 +12/21/2017,Sports_celeb,@OBJ_3,RT @DhaSickest: ❤️ @OBJ_3 +12/21/2017,Sports_celeb,@OBJ_3,Been waitin since he wore 7. He’s that guy. Big bro been waitin to put the clamps on since LSU https://t.co/dQgy7umUcT +12/19/2017,Sports_celeb,@OBJ_3,Love brudda ! Never changin https://t.co/bMEaiDdDRD +12/18/2017,Sports_celeb,@OBJ_3,"Lil bro ! It’s only the beginning, everything we talked about . Grip strength , drills . Lol loookkk atcha much luv… https://t.co/84PkElKmA3" +12/17/2017,Sports_celeb,@OBJ_3,We neeeeed it! +12/17/2017,Sports_celeb,@OBJ_3,Make a play!! Leegooo ! We need it ! Get this W! +12/17/2017,Sports_celeb,@OBJ_3,Amen ! https://t.co/QTm0Jo8wT5 +12/14/2017,Sports_celeb,@OBJ_3,"RT @tylerwaltonc4: SEASON HIGHLIGHTS FINALLY HERE. IM HERE TO WAKE EVERYONE UP💍💍💍🎊🎊🎊🎊 +- https://t.co/YJkulu6Ybg" +12/12/2017,Sports_celeb,@OBJ_3,I tollddddd u today was the day !!!! @God_Son80 +12/12/2017,Sports_celeb,@OBJ_3,They don’tttt want that pressure 14....head down! Eattttt @God_Son80 +12/11/2017,Sports_celeb,@OBJ_3,I remember the conversation like it was yesterday .... keep pushing u right there ...@AB84 +12/11/2017,Sports_celeb,@OBJ_3,I loveeeee it!!!!!! @AB84 +12/11/2017,Sports_celeb,@OBJ_3,Neeeed them toe taps bruddda!!! Next time we in there !! @AB84 +12/08/2017,Sports_celeb,@OBJ_3,"@PapaBearRU34 For the kids bro, I’d do anything . We’ll figure it out" +12/08/2017,Sports_celeb,@OBJ_3,"Thank u for understanding. Personally I never understood why we, as a socieity, complicate things or confuse them f… https://t.co/OVKlMk8481" +12/08/2017,Sports_celeb,@OBJ_3,I CANNNNT waitt to be back in Met Life Sunday . It’s time to get this train back on the right track. 10.... leadddd… https://t.co/wHIbInqoTC +12/04/2017,Sports_celeb,@OBJ_3,"“Without a response from me, u really fail to exist...” @Drake" +12/04/2017,Sports_celeb,@OBJ_3,Stop wastin ur time tweetin me today. Negativity im blind to it. I can’t see that . The amount of time and energy s… https://t.co/S5fcXkA0F9 +12/04/2017,Sports_celeb,@OBJ_3,@Sean_Lyric God bless everybody! Today let’s make the world a better place!😀 +12/04/2017,Sports_celeb,@OBJ_3,Lol bro u have no idea what u started . Now u got all these critics with no credibility mentioning me to try to gai… https://t.co/dAWb2b6NeQ +12/04/2017,Sports_celeb,@OBJ_3,"I learned from him. This is the 🐐. So I’m following his lead, I just may not know how to express it the same way. B… https://t.co/7zHk2kJT3C" +12/04/2017,Sports_celeb,@OBJ_3,"Or ....immmaturity , or “needs to grow up” or “selfish” or... umm what else is it exactly that ‘they’ say.... or “u… https://t.co/CL2EuYLmK2" +12/04/2017,Sports_celeb,@OBJ_3,Listen when I say this is the craziest thing someone ever has tweeted or posted to me because I LITERALLY had this… https://t.co/hgln2Z8l0b +12/02/2017,Sports_celeb,@OBJ_3,"RT @BretJPriest: Yo, @OBJ_3 can your boy get a shoutout on his 24th birthday? 🙏🏼" +12/02/2017,Sports_celeb,@OBJ_3,RT @richardmasao: When your @OBJ_3 Air Force 1’s come in yesterday and run into him the next when you wear them. What is life. #OBJ https:/… +11/30/2017,Sports_celeb,@OBJ_3,@Ezekephyzeke_84 I’m not livin in the past*** +11/30/2017,Sports_celeb,@OBJ_3,"@Ezekephyzeke_84 Lol it’s a funny thing bro. I shouldn’t even tweet u back , I’ll prolly get in trouble or be the b… https://t.co/4cfWSnEyGa" +11/30/2017,Sports_celeb,@OBJ_3,RT @Ezekephyzeke_84: @Patricia_Traina Unfortunately this has become the narrative when things go bad with the team. People somehow look for… +11/27/2017,Sports_celeb,@OBJ_3,The greatest ! #ForeverLSU https://t.co/iX64uRkEkJ +11/25/2017,Sports_celeb,@OBJ_3,"RT @famouslos32: O like dat ! Use promo code 15LOS for 15% off the entire store ‼️ @OBJ_3 + +https://t.co/jIj9An63NQ https://t.co/Roxlnct3Yh" +11/24/2017,Sports_celeb,@OBJ_3,#hmmm... that is funny. But Lil bruh u kno we live in a world full of hypocrites.… https://t.co/pZ4xP3CJNK +11/24/2017,Sports_celeb,@OBJ_3,"I love it let’s go. Good ball movement, solid defense. This is what we do. Points points. Keep pushin! #Giants" +11/24/2017,Sports_celeb,@OBJ_3,"Thankful for it happy , happy thanksgiving https://t.co/GvX26vOGUn" +11/24/2017,Sports_celeb,@OBJ_3,"RT @footlocker: .@OBJ_3 stopped by the #Sneakeasy this week to debut his first lifestyle shoe the Nike SF Air Force 1 Mid ""OBJ"". Make sure…" +11/24/2017,Sports_celeb,@OBJ_3,RT @SNFonNBC: Happy 3rd birthday to @OBJ_3's one-handed catch! https://t.co/jrxkSEe24Y +11/23/2017,Sports_celeb,@OBJ_3,"RT @LSUfootball: Thanksgiving is about family. Odell remembers his in Purple and Gold! Forever LSU! + +@OBJ_3 x @Nike x #AF1 https://t.co/…" +11/22/2017,Sports_celeb,@OBJ_3,RT @TeamVic: Kings stand tall through everything. No matter how bleek things may seem. @obj_3 and I have… https://t.co/1QmfIqYI6m +11/21/2017,Sports_celeb,@OBJ_3,"RT @OttoLewis_: big brudda dem convos we have never go unnoticed... dream it, visualize it, live it... 🙏🏿 #GodSpeed https://t.co/5rR8H0okFz" +11/21/2017,Sports_celeb,@OBJ_3,"@David_Alaba I just cried bruh, loook how sickkkk these people are! Im in tears 😂😂😂 https://t.co/8tD0fPuxy1" +11/21/2017,Sports_celeb,@OBJ_3,"Some things are NY made. +Others were made for NY. +@Nike X OBJ X #AF1 https://t.co/E3X4UA0m90" +11/19/2017,Sports_celeb,@OBJ_3,@OttoLewis_ that’s how we delivery brudda !! Locked n loaded for next week. It’s that time Redd +11/18/2017,Sports_celeb,@OBJ_3,RT @RSherman_25: @OBJ_3 IR battle huh. Lmao I appreciate you bro we will get together for sure +11/16/2017,Sports_celeb,@OBJ_3,"NY simply cultivated what Louisiana raised. I am OBJ. Read the Label. +@nikesportswear X @footlocker #AF1 https://t.co/5rxUQF4Wvc" +11/15/2017,Sports_celeb,@OBJ_3,@RSherman_25 bruddda!! Wassup wit the 1 on 1s right now! I think I could get u a few times now 😂😂 real talk tho I’m… https://t.co/yyo9V6O6hW +11/09/2017,Sports_celeb,@OBJ_3,RT @OttoLewis_: today a young 🐐 was born happy birthday my brudda...always speaking real they jus caught this on camera @OBJ_3 #GodSpeed ht… +11/09/2017,Sports_celeb,@OBJ_3,"@jRenzy Love fam, I’m doin well. Ain’t nothin but a lil adversity , we been here before. God pulls me thru every time" +11/07/2017,Sports_celeb,@OBJ_3,Got to play @EAMaddenNFL on the new #XboxOneX last night! @Xbox even gave me one of the first ever custom NFL contr… https://t.co/Lru5bJhpnH +11/06/2017,Sports_celeb,@OBJ_3,Wilder vs Joshua would be......👀👀👀 +11/06/2017,Sports_celeb,@OBJ_3,Luv brotha. And helluva game https://t.co/ZIuqM3fMNw +11/05/2017,Sports_celeb,@OBJ_3,Thankful to see 25... I’m just countin the blessings. +11/02/2017,Sports_celeb,@OBJ_3,"RT @TeamVic: I️ can’t even front. I️ miss the game.. @obj_3 🙏🏾 @ Paterson, New Jersey https://t.co/mUkPEKrpiT" +11/02/2017,Sports_celeb,@OBJ_3,@KDN13_ Keep grinding! +11/02/2017,Sports_celeb,@OBJ_3,"RT @MikeQReports: Yo @OBJ_3, show my boy Jared some love & accept his dance challenge!! He says you’re one of his favorites despite the tra…" +10/31/2017,Sports_celeb,@OBJ_3,Last thing ... @NFL @God_Son80 make it happpen.... idc how. SuperTeamNBA SuperTeamNFL +10/31/2017,Sports_celeb,@OBJ_3,@k_obrand @SportsCenter @NFL @God_Son80 make it happen ... ok im done ! +10/31/2017,Sports_celeb,@OBJ_3,"https://t.co/LRkgW4xtVW now they got my reminiscing !!!! If it’s gods plans , it’ll happen !! SomeHow, somewayyyy! I believe @God_Son80" +06/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Abilene Paradox +06/28/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/7FeacTTA6f +06/28/2018,Sports_celeb,@Kaepernick7,"RT @haymarketbooks: “Come celebrate with me that every day something has tried to kill me and has failed.” —Lucille Clifton, born June 27,…" +06/28/2018,Sports_celeb,@Kaepernick7,"RT @thecrisismag: ""Don't you run around here trying to make friends with somebody who's depriving you of your rights. They're not your frie…" +06/26/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “The rise of Western capitalism is rooted in the global seizing of the land, resources, and labor people of color by viol…" +06/26/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/op8JCbQR1n +06/25/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: My two-year-old is out here reppin’ for the culture: https://t.co/UoLgADPnov +06/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: What is also clear is that the NFL, Donald Trump, and all of the other random racists that have a problem with players pr…" +06/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: I’m guessing that the racist that took the time to paint “Boycott the NFL,” on the back of his pickup, fully decorated wi…" +06/23/2018,Sports_celeb,@Kaepernick7,RT @_ethiopiangold: So my little cousin was selling water and didn't have a permit so this lady decided to call the cops on an 8 year old.… +06/23/2018,Sports_celeb,@Kaepernick7,RT @lsarsour: #PermitPatty 🤦🏻‍♀️ https://t.co/3HjUtDqXlW +06/23/2018,Sports_celeb,@Kaepernick7,"RT @therealstylesp: https://t.co/oaMNDWELod . HIP HOP'S HEALTH STORE +Black seed oil +Oil of oregano +Cbd tincture/cbd vape juice +Healing so…" +06/21/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: What becomes important to take from this clip is its centering on white women and their investment in the maintenance of… +06/21/2018,Sports_celeb,@Kaepernick7,RT @Phil_Lewis_: Saw this on Facebook: 1964 news clip of white citizens reacting to the proposed civil rights bill. https://t.co/j8yM00hEgB +06/21/2018,Sports_celeb,@Kaepernick7,RT @WoodstockFarm: Did you hear the news @Kaepernick7? We named one of our newly rescued baby calves after you! For your social activism an… +06/19/2018,Sports_celeb,@Kaepernick7,RT @E_Reid35: There is something gravely wrong w/ the leadership of our country. This weekend I held my kids to celebrate father’s day & to… +06/19/2018,Sports_celeb,@Kaepernick7,"RT @ava: For those that want more background on the current tents and cages that Trump and friends are keeping kids in, this clip shares ba…" +06/19/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Children are being ripped from their parents at the border. These are their cries. (warning: distressing themes) https://t… +06/19/2018,Sports_celeb,@Kaepernick7,RT @ReutersWorld: U.S. to withdraw from U.N. human rights body: source https://t.co/QlvCByHxyk +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: Less than one year in and you’ve already nailed it! #happyfathersday @CFPetrella! Thank you for playing such a big role… +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: #HappyFathersDay to Queen Isa’s dad @oldmanebro 🤗💕 We love you guys so much!! #family https://t.co/psZkGqLgyD https://t… +06/17/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #HappyFathersDay to Lead Speaker of #KYRC, @LeftSentThis! Shoutout to footcandles for capturing these beautiful moments…" +06/17/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: Our brother @E_Reid35 with his wife (our sister and KYRC member) jaidybaby and their beautiful children 😍 #happyfathers… +06/17/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Black Fathers | Fathers Day: https://t.co/VvSISyqrwP +06/16/2018,Sports_celeb,@Kaepernick7,"#EidMubarak to all of the brothers and sisters, Muslim and non-Muslim, around the world who participated in the mon… https://t.co/IyhEhx2wtN" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Also, when these police propaganda pieces centered on police ride-alongs hit the airwaves, they’re ALWAYS one-sided, and…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Also, these entertainers/athletes participating in police ride-alongs, act as if the police are REALLY going to terrorize…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Entertainers (who are usually Black men) that go on ride-alongs with cops, and then report to the public that, “the polic…" +06/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “Merely by describing yourself as black you have started on a road towards emancipation, you have committed yourself to f…" +06/10/2018,Sports_celeb,@Kaepernick7,"The Queen! + +RP @nessnitty Thinking about releasing THE OFFICIAL #imwithkap jersey ...What y’all think???? @hot97… https://t.co/VHLNevijRI" +06/10/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Check out my latest piece on something that I think is being overshadowed by Kaepernick and Eric Reid’s protest against p… +06/09/2018,Sports_celeb,@Kaepernick7,"RT @common: ""People sometimes forget that love is at the root of our resistance. My love for my people serves as the fuel that fortifies my…" +06/06/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: The hijacking of the protest is not just taking place by Trump. +06/06/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Post reading the article that I just posted on Kaepernick and the power of Black silent protest, listen to him in his own…" +05/25/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Listen to Colin Kaepernick explain why he took a knee — and why it's essential that others like him have the right to chal… +05/25/2018,Sports_celeb,@Kaepernick7,RT @Wale: Run that back 🌙 https://t.co/p2HRTkNXIS +05/24/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Colin Kaepernick explained why he sacrificed his career in the NFL to stand against systemic racism as he received Amnesty… +05/24/2018,Sports_celeb,@Kaepernick7,RT @markgeragos: Winning! https://t.co/qTUh3LJNxR +05/23/2018,Sports_celeb,@Kaepernick7,RT @markgeragos: #nflcollusion https://t.co/R1c5Mdqqg6 +05/23/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Being inside of a system doesn’t necessarily change it, more often than not, you become absorbed in it until the system t…" +05/22/2018,Sports_celeb,@Kaepernick7,RT @CFPetrella: Finally out of the archives and proud to share the first words I've penned for *Crimes of this Guilty Land: Histories of Wh… +05/21/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: ‘Highly Offended’ White Teacher Kicked My 9-Year-Old Son Out of Class for Taking Knee During Pledge https://t.co/XbFgvRUf… +05/21/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: OUR FUTURE!! ✊🏾✊🏿✊🏽 #RP rugamcfly: For the people!!! Thank You Kaep!!! #imwithkaepernick #knowyourrights #GradSZN #gr… +05/20/2018,Sports_celeb,@Kaepernick7,"RT @haymarketbooks: Haitian revolutionary Toussaint L’Ouverture was born May 20, 1743. https://t.co/EH8UR2igZ1" +05/19/2018,Sports_celeb,@Kaepernick7,RT @marielaregal: Happy Birthday Malcolm! ✊🏾🎂Truly an honor to have given a college and career awareness workshop at the Audubon Ballroom n… +05/19/2018,Sports_celeb,@Kaepernick7,"Happy Birthday El-Hajj Malik El-Shabazz, your spirit lives on! #MalcolmX https://t.co/E3JDtwSpxh" +05/19/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: The cast of ""Rise"" is full of diversity, something @rosieperezbklyn has been longing for since she started acting. Catch @ne…" +05/15/2018,Sports_celeb,@Kaepernick7,RT @NBCSWarriors: .@chamillionaire is with @Kaepernick7 https://t.co/80vxsfrXBB +05/14/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: We are witnessing an abhorrent violation of international law & human rights in #Gaza. 38 confirmed dead, including 6 children…" +05/11/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Stop trying to reform institutions that should be abolished. +05/11/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: We had to share another one of @OzTheMentalist’s tricks with @nessnitty! Check him out this Saturday after SNL on @1stlookt… +05/11/2018,Sports_celeb,@Kaepernick7,RT @KWestSavali: My 9-year-old son was put out of class for taking a knee during the pledge. His teacher told him that she boycotted teams… +05/11/2018,Sports_celeb,@Kaepernick7,RT @NYDNVideo: “Colin Kaepernick took a knee for US!”: The invisible rage of mothers who lost children to police violence @chuckmodi1 https… +05/10/2018,Sports_celeb,@Kaepernick7,RT @ChuckModi1: Mothers whose children were killed by police have been fighting to get their stories heard have been sharing their ❤️ for… +05/10/2018,Sports_celeb,@Kaepernick7,"RT @ChuckModi1: “Kaepernick Took a Knee 4 US!” +Mothers whose children were killed by police have been fighting to get their stories heard…" +05/09/2018,Sports_celeb,@Kaepernick7,"“Love is at the root of our resistance!” +via @nytimes Opinion Section https://t.co/Isf6j56cet" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @nessnitty: I hope you feel motivated to make this world a better place. Thank you @Kaepernick7 for everything, Young King! Here’s a sni…" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: When @nessnitty sat down with superstar mentalist @OzTheMentalist, she wasn’t prepared to have the shock of her life. And yo…" +05/09/2018,Sports_celeb,@Kaepernick7,"RT @CentralOhioIWOC: BREAKING - Work Stoppage at Largest Maximum Security Prison in the U.S. + +C-Block prisoners at Louisiana State Penitent…" +05/08/2018,Sports_celeb,@Kaepernick7,RT @nessaonair: ❤️😍 https://t.co/6kb2f5ntLp +05/08/2018,Sports_celeb,@Kaepernick7,RT @nessaonair: #RP @nessnitty: Some of the incredible children we met during our Know Your Rights Camp Amsterdam version. Thankful for @am… +05/07/2018,Sports_celeb,@Kaepernick7,"Catch #DearMamaVH1: A Love Letter To Moms TONIGHT 9/8c on @VH1! +📸: @KarlFergusonJr https://t.co/zoNb0YmQNW" +05/07/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: If you haven’t watched the video embedded in this article, WATCH NOW! Phenomenal job @nytimes https://t.co/rHBwLsfFJL" +05/07/2018,Sports_celeb,@Kaepernick7,"RT @mikefreemanNFL: If you haven’t seen this, it will be worth your time. https://t.co/cjTyGWOOUr" +05/06/2018,Sports_celeb,@Kaepernick7,RT @AmnestyThailand: Colin Kaepernick: ‘Love Is at the Root of Our Resistance’ https://t.co/U6MA4c5D2h via @nytimes #humanrights #Ambassado… +05/05/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: We are ignoring the haters with the help of @mariashriver! @nessnitty is sitting down with her and other inspirational women… +05/04/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: LOVE THIS!!! All true! @Kaepernick7 @E_Reid35 greatest brotherhood ❤️ https://t.co/sFeogN20a9 +05/04/2018,Sports_celeb,@Kaepernick7,"RT @TheAthleticSF: Loggins: The brotherhood of Colin Kaepernick and Eric Reid (this story is free) +https://t.co/9WJmGrfTh3" +05/04/2018,Sports_celeb,@Kaepernick7,RT @nytopinion: “How can you not be in a rage when you know that you are always at risk of death in the streets or enslavement in the priso… +05/04/2018,Sports_celeb,@Kaepernick7,"RT @aaaj_alc: “I’ve realized that our love, that sometimes manifests itself as Black rage, is a beautiful form of defiance against a system…" +05/04/2018,Sports_celeb,@Kaepernick7,RT @amnesty: Colin Kaepernick's (@Kaepernick7) Ambassador of Conscience acceptance speech in the @nytimes. https://t.co/vHx3WduIKO +05/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/IjU2bC3zYR +05/02/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Amazing time teaming w @amnesty to bring a version of our Know Your Rights Camp to Amsterdam! Empowering youth internationa… +05/02/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyKenya: We have said this before but to ensure any avoidance of doubt, @Kaepernick7 is one of the bravest people we are proud to…" +05/02/2018,Sports_celeb,@Kaepernick7,RT @ajplus: Eric Reid filed a grievance against the NFL. He charges them of colluding to keep him unsigned because he joined Colin Kaeperni… +05/02/2018,Sports_celeb,@Kaepernick7,"RT @SportsCenter: Former 49ers safety Eric Reid has filed a collusion grievance against the NFL over his employment status, a source told @…" +04/30/2018,Sports_celeb,@Kaepernick7,"RT @USA_Network: Your favorite @nbc stars stop by on this week's Talk Stoop! Tune in to see @nessnitty chat with @JoshRadnor, @rosieperezbk…" +04/26/2018,Sports_celeb,@Kaepernick7,“Our love is not an individualized love—it is a collective love. A collective love that is constantly combating col… https://t.co/I8qs8uUVo2 +04/26/2018,Sports_celeb,@Kaepernick7,"“As police officers continue to terrorize Black and brown communities, abusing their power, and then hiding behind… https://t.co/PBJzIPOPdC" +04/25/2018,Sports_celeb,@Kaepernick7,"“It was James Baldwin who said, to be Black in America, “and to be relatively conscious is to be in a rage almost a… https://t.co/amwj3gJ4GJ" +04/25/2018,Sports_celeb,@Kaepernick7,“That word courage is exactly the word I would use to describe https://t.co/4eG0XH78vP was a courageous act to begi… https://t.co/byFZTbCPKj +04/25/2018,Sports_celeb,@Kaepernick7,"“It’s ironic that the stand Colin&I took was not 2 stand at all,but it was 2 take a knee.Colin didn’t kneel in prot… https://t.co/NKrEvSM7gE" +04/25/2018,Sports_celeb,@Kaepernick7,I couldn’t ask for a better Brother @E_Reid35 to share this journey and @amnesty Ambassador of Conscious Award with… https://t.co/ax2g4yIGEZ +04/25/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/S1YONlFHGX +04/24/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #RP @E_Reid35: Thank you for all that you stand for and congratulations on receiving the @amnesty ‘s highest honor, The…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AztecaDeportes: ¡Gran trabajo de @Kaepernick7 en su lucha contra el racismo!😱👏 + +https://t.co/Avx8x3jglm" +04/23/2018,Sports_celeb,@Kaepernick7,"“Seeking the truth, finding the truth, telling the truth and living the truth has been, and always will be what gui… https://t.co/AHOL67jFtM" +04/23/2018,Sports_celeb,@Kaepernick7,RT @AmnestyKenya: @amnesty @irunguhoughton @Kaepernick7 Our @amnesty chairperson @MwikaliN and @Kaepernick7 Speak truth to power always! ht… +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: He confronted injustice. He inspired others. He took a knee, refusing to ignore or accept racial discrimination. Meet our new…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnestyusa: You refused to compromise. +You confronted injustice. +You inspired others. +Thank you, Colin Kaepernick https://t.co/pmZqsBH0…" +04/23/2018,Sports_celeb,@Kaepernick7,RT @GQMagazine: .@Kaepernick7 accepts Amnesty International's highest honor https://t.co/6oNVIrBzKV +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyThailand: Colin Kaepernick @Kaepernick7 is the latest recipient of the Ambassador of Conscience Award, joining Nelson Mandela an…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @AmnestyUK: ICYMI: This weekend, we presented athlete and activist Colin Kaepernick (@Kaepernick7) with the Amnesty #AmbassadorOfConscie…" +04/23/2018,Sports_celeb,@Kaepernick7,"RT @amnestyPL: W sobotę przyznaliśmy nagrodę Ambasadora Sumienia Colinowi Kaepernickowi, b. zawodnikowi NFL, aktywiście, który przeciwstawi…" +04/22/2018,Sports_celeb,@Kaepernick7,"“I would like 2 thank Amnesty International 4 The Ambassador of Conscience Award.But in truth,this is an award that… https://t.co/Tg9p5x91Cn" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnestyusa: He confronted racial injustice. +He refused to compromise. +He inspired others. + +Colin Kaepernick is our #AmbassadorOfConscie…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: ""It is only fitting that I have the honor of Eric Reid (@E_Reid35) introducing me for this award. In many ways, my recognition…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: You confronted racial injustice. +You refused to compromise. +You inspired others. + +Thank you, @Kaepernick7, Ambassador of Consc…" +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty: He confronted racial injustice. +He refused to compromise. +He inspired others. + +Athlete and activist Colin Kaepernick (@Kaepern…" +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnestyusa: We are honored to present this year’s #AmbassadorOfConscience Award to Colin Kaepernick (@Kaepernick7). Colin embodies the… +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnestyusa: We're thrilled to present athlete and activist Colin Kaepernick—who refused to ignore or accept racial discrimination—with… +04/21/2018,Sports_celeb,@Kaepernick7,RT @amnesty: We're honored to present athlete and activist Colin Kaepernick (@Kaepernick7)—who refused to ignore or accept racial discrimin… +04/21/2018,Sports_celeb,@Kaepernick7,RT @AmnestySverige: Idrottsmannen och aktivisten Colin Kaepernick hedras med @amnesty Ambassador of Conscience Award 2018! Han riskerade al… +04/21/2018,Sports_celeb,@Kaepernick7,RT @AmnestyCIJ: Sometimes standing up for justice is kneeling against injustice @amnesty @amnestynl @nfl @Kaepernick7 https://t.co/L5QQNqoQ… +04/21/2018,Sports_celeb,@Kaepernick7,"RT @amnesty_de: Wir freuen uns sehr, den Sportler und Aktivisten Colin Kaepernick mit dem #AmbassadorOfConscience Award 2018 auszuzeichnen!…" +04/20/2018,Sports_celeb,@Kaepernick7,RT @JColeNC: ATM video. KOD https://t.co/VgVLu5GcSU +04/20/2018,Sports_celeb,@Kaepernick7,RT @JColeNC: KOD the album. https://t.co/XHTS0SnCNl +04/16/2018,Sports_celeb,@Kaepernick7,https://t.co/pg71tJl7z3 +04/14/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: .@RyanSerhant, we have some questions ... What's your skin care routine? And when is Ry-Glow hitting the shelves? See his sh…" +04/13/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Fashion designer @Zac_Posen is giving us life 🙌. Catch his full interview this weekend with @nessnitty. Check your local lis… +04/13/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: Is the romance gone between @FredrikEklundNY and his husband @derekkaplanart? Well, @Bethenny did warn him! See more of thes…" +04/12/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: This link between @GlennHowerton & @nessnitty is too funny! Catch @NBCAPBio tonight at 8:30/7:30c on @nbc. https://t.co/vj… +04/12/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: Sending thanks and appreciation for the support. I will continue to strive to be the best man of God, husband, father, and at…" +04/12/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: CARDI B!! She is everywhere right now and @nessnitty and @SteveMadden can't help but gush about her on the stoop! https://t.… +04/11/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: .@nessnitty and her partner @Kaepernick7 are working on their smize and they recruited @tyrabanks, the expert and host of @A…" +04/11/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: Source: Mike Brown questioned Eric Reid about anthem kneeling during his recent Bengals visit https://t.co/ivvRXO7BdS +04/11/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: Eric Reid never got a formal offer from 49ers; he'd sign a one-year deal for his 2017 salary there https://t.co/kY5UxZ… +04/11/2018,Sports_celeb,@Kaepernick7,"RT @Kaepernick7: My brother, @E_Reid35 continues to train like the Elite Probowl safety he is! Keep an eye on him, as he goes through free…" +04/11/2018,Sports_celeb,@Kaepernick7,"RT @CFPetrella: .@LeftSentThis & I wrote this for @washingtonpost: + +""Wherever one stands on the issue of gun ownership, one must recognize…" +04/10/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: WOW... via #nydailynews: +The sheriff of a California county with an outsized number of police shootings once said that…" +04/08/2018,Sports_celeb,@Kaepernick7,RT @lsarsour: Don’t turn a blind eye. https://t.co/wU1GaCbftF +04/07/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Let’s Go!!!! @TalkStoop https://t.co/6AdMXsBVM7 +04/07/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Catch @nessnitty's premiere tonight on #talkstoop! Check your local listings for her interviews with Hollywood legends @rosi… +04/06/2018,Sports_celeb,@Kaepernick7,RT @Mathieu_Era: E Reid & Kenny V still aren't signed... think about that !!! FRFR! They too good of men & players! +04/06/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: The creators of @NBCChampions are having a little fun with their actors! Star @AndyFavs tells @nessnitty how he stays on his… +04/06/2018,Sports_celeb,@Kaepernick7,RT @nessnitty: Chatting w THE LEGENDARY @rosieperezbklyn about @iamcardib ❤️ #InvasionOfPrivacy out now! Catch us on @TalkStoop NBC Station… +04/06/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: In this exclusive clip, @nessnitty and @ForestWhitaker chat about people's evolving perceptions of Africa, the setting of hi…" +04/06/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: Will there be an In Living Color reunion?!?! For more, watch @NBCRise's @rosieperezbklyn this weekend on Talk Stoop with @ne…" +04/05/2018,Sports_celeb,@Kaepernick7,RT @NBCUniversal: Nessa Diab Is Named Host of Popular Television Program @TalkStoop for 2018 Season https://t.co/fU2xBPMwQ0 https://t.co/Kc… +04/05/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: Can @nessnitty get @WhosBenFeldman of @NBCSuperstore to crack and reveal some upcoming storylines? Have your mind blown toni… +04/05/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Free ALL of the political prisoners who literally put their lives on the line to protect the Black community from state s… +04/05/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: It took 27 seconds for four cops (three of which were in plainclothes) to hop out of an unmarked car, as one witness said…" +04/04/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: America decided to love Martin Luther King Jr. AFTER he was assassinated and no longer a threat to disrupting order and c… +04/04/2018,Sports_celeb,@Kaepernick7,"RT @Michael31Thomas: A God fearing man, a loving husband & father, and a great community leader. Not to mention a top 5 Safety in the NFL.…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/RYskdI2oT3 +04/03/2018,Sports_celeb,@Kaepernick7,"RT @TalkStoop: This spring, @nessnitty will sit down with @tyrabanks, @erikajayne, @TheRitaMoreno, @rosieperezbklyn, Dennis Quaid, @marias…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: The book is stores today right? https://t.co/WlLdqPcsO2 +04/03/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: Pay attention! 👀 #Repost @kaepernick7 - My brother, @e_reid35 continues to train like the Elite Probowl safety he is! K…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @HOT97: HUGE Congratulations to our girl @nessnitty - the new host of NBCU’s ‘Talk Stoop’ 👏🏾 - https://t.co/aoljC0cklH https://t.co/A2TQ… +04/03/2018,Sports_celeb,@Kaepernick7,"My brother, @E_Reid35 continues to train like the Elite Probowl safety he is! Keep an eye on him, as he goes throug… https://t.co/wG2QawfJRP" +04/03/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Like Eric Reid, Kenny Vaccaro was aware of the fact that his support of Colin Kaepernick, and his own protesting of polic…" +04/03/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: I am hopeful that the NFL owners are not going to add Eric Reid and Kenny Vaccaro to their Kaepernick’d list (as in playe… +04/03/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Eric Reid and Kenny Vaccaro have four things in common: + +1. They’re two of the top safeties in the NFL + +2. Both are unsi…" +04/02/2018,Sports_celeb,@Kaepernick7,RT @TalkStoop: .@nessnitty let’s make this Dennis Quaid-@LilTunechi duet happen! https://t.co/yGfutQaUh1 +04/02/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/voy8eUodBr +04/02/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: You have to ask yourself why they hated Nelson Mandela when he was incarcerated, and celebrated him upon his release." +04/02/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Winnie Mandela was a revolutionary. +04/02/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: “All I wanna say is that they don’t really care about us” +You ain’t lying Michael" +04/02/2018,Sports_celeb,@Kaepernick7,RT @haymarketbooks: “Palestine under Israeli occupation is the worst possible example of a carceral society.” —Angela Davis https://t.co/tQ… +04/01/2018,Sports_celeb,@Kaepernick7,RT @ryan_s_clark: Here at Safeco Field where an elementary school sung the anthem and two students took a knee while performing. https://t.… +03/30/2018,Sports_celeb,@Kaepernick7,"More historical context on America’s “involvement” in Africa. +#KnowYourHistory + +BBC News - Four more ways the CIA h… https://t.co/K2L4a3i8Dv" +03/30/2018,Sports_celeb,@Kaepernick7,"From a historical perspective, the Ghanaian people have every reason to protest America's ""involvement"" in their co… https://t.co/pWlej2Gj5x" +03/30/2018,Sports_celeb,@Kaepernick7,"RT @Delo_Taylor: “Ghana First"": US Military deal erupts into mass protest, as citizens fear loss of sovereignty. #HandsOffAfrica #IntelGrou…" +03/30/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: If the government can get away with stealing $21 Trillion, without an uproar, God only knows how many miscellaneous milli…" +03/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/Bsvk1AOZim +03/29/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Watch how many of the same people celebrating their Parkland peers demonize or completely ignore the legitimacy of these… +03/28/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: ❤️❤️❤️ #Repost @janellacuyler - “I want to be like Colin Kaepernick because he stands up for people and for their right… +03/27/2018,Sports_celeb,@Kaepernick7,RT @E_Reid35: 🤬😢This cycle is WAY too old! My heart hurts for Alton’s family. https://t.co/8LhVg4ZJkI +03/27/2018,Sports_celeb,@Kaepernick7,State sanctioned lynching by means of gun violence! https://t.co/s9L7RZ5vuq +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: There are no publicly supported marches for Black folks, nationwide, that have been victims of, “state sanctioned lynchin…" +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Claude McKay penned this poem in 1919. https://t.co/IHF9fjG76h +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Free all political prisoners that put their lives on the line for the liberation of Black folks. +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Not only do the police LEGALLY have the right to kill US with impunity, but they do so while being paid, in a system that…" +03/27/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Y’all better stop letting your enemies decide who your heroes are. +03/27/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “Neighbors were surprised that a shooting would take place at such an expensive store.” + +https://t.co/pGQ61ZGl5c" +03/25/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: A leader cannot lead without those willing to follower, thus Kaepernick’s personal protest could only become a movement b…" +03/25/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: #Repost @francismmaxwell - When a rifle has more rights than an unarmed black 22 year old, there is a problem. #blackli…" +03/24/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: It’s interesting which protest/gatherings become sanctioned by society, safe from police aggression and agitation." +03/23/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: Bodycam footage shows the moments before cops fired 20 shots at unarmed 22-year-old Stephon Clark (warning: distressing im… +03/23/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: This is the Eric Reid that they want you to hate for protesting systemic oppression that allows the police to kill with i… +03/22/2018,Sports_celeb,@Kaepernick7,"“I am a feminist, & what that means to me is much the same as the meaning of the fact that I am Black; it means tha… https://t.co/gNuK5rFSzL" +03/22/2018,Sports_celeb,@Kaepernick7,RT @yourrightscamp: ✊🏾 thank you!! #RP jaypoppins615: Just got my #ImWithKap hoodie I’m riding with @kaepernick7 no matter what ✊🏿 https://… +03/21/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: The 22-year-old black man fatally shot by Sacramento police in his own backyard Sunday night was carrying a cellphone,…" +03/20/2018,Sports_celeb,@Kaepernick7,"""I do want to create art beyond rage. Rage is a place to begin, but not end... I do want to devour my demons—despai… https://t.co/wc2u0Ju7rI" +03/17/2018,Sports_celeb,@Kaepernick7,"RT @yourrightscamp: When it comes to support, we’ve never had to doubt yours 🙌🏾 HAPPY BIRTHDAY @oldmanebro!!! https://t.co/RaVajjSsfM" +03/16/2018,Sports_celeb,@Kaepernick7,RT @TMZ_Sports: Colin Kaepernick All Smiles After Legal Showdown with Texans Owner https://t.co/kCPMHBCmQS +03/16/2018,Sports_celeb,@Kaepernick7,RT @ProFootballTalk: The silence on Eric Reid in free agency is deafening https://t.co/VEtGhClWcf +03/16/2018,Sports_celeb,@Kaepernick7,RT @nowthisnews: 600 students at this Atlanta school took a knee for 17 minutes yesterday to honor Parkland and say #ENOUGH https://t.co/k9… +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: GMs aren’t the hold up broski. It’s ownership. People who know football know who can play. People who know me, know my charac…" +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: Your assumption is false. After Navorro went to the Raiders, there was a LB shortage and I was asked to pick up the slack. No…" +03/16/2018,Sports_celeb,@Kaepernick7,"RT @E_Reid35: The notion that I can be a great signing for your team for cheap, not because of my skill set but because I’ve protested syst…" +03/15/2018,Sports_celeb,@Kaepernick7,Let em know Queen! https://t.co/16DKlFbThQ +03/15/2018,Sports_celeb,@Kaepernick7,Turning up the heat!🔥🔥🔥 https://t.co/VI4CxdHPX3 +03/14/2018,Sports_celeb,@Kaepernick7,They did to @MeekMill what they've done to young black men and women and people of color forever. Read… https://t.co/U9cWW2vgzc +03/14/2018,Sports_celeb,@Kaepernick7,"RT @ladybrettgm: Student sign says: As a black boy, I hope one I day I have as many rights as a gun. #nationalschoolwalkout https://t.co/Pu…" +03/14/2018,Sports_celeb,@Kaepernick7,RT @JamilesLartey: Students at Booker T Washington High School in Atlanta talking a knee as part of the #NationalWalkoutDay protests. https… +03/14/2018,Sports_celeb,@Kaepernick7,"RT @ShaunKing: #DraylenMason. + +This is the brilliant 17 year old brother who was murdered yesterday by the package bomb brought to his home…" +03/13/2018,Sports_celeb,@Kaepernick7,"“Love is an expression of power. We can use it to transform our world.” - Ericka Huggins + +#KnowYourHistory… https://t.co/73EMlhZ62H" +03/13/2018,Sports_celeb,@Kaepernick7,RT @shondarhimes: Wow. “Black-ish Episode About Kneeling Athletes Will Never Be Aired” https://t.co/VocQoxRxDf +03/12/2018,Sports_celeb,@Kaepernick7,RT @Schultz_Report: Here's why Eric Reid is the most intriguing free agent on the market: https://t.co/v0enz3XiBa @E_Reid35 #49ers #FreeAge… +03/12/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: From 1940 until his death in 1966, Walt Disney served as a secret informer for the Los Angeles office of the Federal Bure…" +03/11/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: https://t.co/OG9kEKBSfg +03/11/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: Blackish has covered everything from, ""Trump’s election, the N-word, postpartum depression, and police brutality,"" but wh…" +03/09/2018,Sports_celeb,@Kaepernick7,". @Ava showed out when she made A Wrinkle in Time. The shots, images and messaging are phenomenal. Take your loved… https://t.co/rjj0JNwxEA" +03/09/2018,Sports_celeb,@Kaepernick7,"RT @LeftSentThis: “To be Black is not revolutionary. When you begin to stress culture without politics, people can become so hooked up in t…" +03/09/2018,Sports_celeb,@Kaepernick7,"RT @ShaunKing: I saw a list today of the top 200 free agents in the @NFL. + +Colin Kaepernick wasn't even on the list. + +I saw HORRIBLE QBs…" +03/09/2018,Sports_celeb,@Kaepernick7,RT @MindyBe: Terry Crews: 'I Still Have to Send a Check to My Molester' https://t.co/UYnceVHlRy +03/08/2018,Sports_celeb,@Kaepernick7,Thank you @ava for inviting me and @nessnitty to the premiere of your brilliant film A Wrinkle in Time! Continue to… https://t.co/baQxxBP8cS +03/08/2018,Sports_celeb,@Kaepernick7,"“Revolution is a serious thing, the most serious thing about a revolutionary’s life. When one commits oneself to th… https://t.co/gqIBxTKucT" +03/08/2018,Sports_celeb,@Kaepernick7,RT @LeftSentThis: Prosecutors decide not to file charges against a talent agent whom actor Terry Crews says groped him at a Hollywood party… +07/01/2018,Sports_celeb,@MariaSharapova,Ураааа!! Молодцы 👏🏻👊🏻#FifaWorldCup2018 https://t.co/UQcY2VaILJ +07/01/2018,Sports_celeb,@MariaSharapova,It’s almost... Day #1 of Wimbledon 🤗📸 by getty https://t.co/Ze1ou3xRJS +07/01/2018,Sports_celeb,@MariaSharapova,10am - 8pm ⏰ #12ChurchRoad #PovaPopUp https://t.co/pryF0A2bu8 +06/30/2018,Sports_celeb,@MariaSharapova,12 Church Road 🤓 https://t.co/TAMP15voaQ +06/30/2018,Sports_celeb,@MariaSharapova,"RT @WimbledonVil: Grabbing some candy at the pop-up shop @Sugarpova @MariaSharapova + +#Candy #Sugarpova #mariasharapova #WimbledonVillage #…" +06/29/2018,Sports_celeb,@MariaSharapova,Boomerang game at #PovaPopUp #12ChurchRoad @Sugarpova https://t.co/72sXzxMDVM +06/29/2018,Sports_celeb,@MariaSharapova,RT @Sarahwinterman: She did that 😻🍬 @MariaSharapova @Sugarpova #PovaPopUp https://t.co/7UFrlZ8imk +06/29/2018,Sports_celeb,@MariaSharapova,Thank you!! 🙋🏼‍♀️🍬 https://t.co/FKHIInCANM +06/29/2018,Sports_celeb,@MariaSharapova,RT @WimbledonFoodie: Where candy grows on trees... @Sugarpova in #Wimbledon Village. What a treat! #foodie #wimbledonfoodie https://t.co/N2… +06/28/2018,Sports_celeb,@MariaSharapova,Loving this suit dress by @31philliplim 📸🖤 https://t.co/a0XXjtXiVB +06/28/2018,Sports_celeb,@MariaSharapova,RT @BillieJeanKing: .@ejaf celebrated 25 years of helping to fight AIDS. Lovely to spend our first evening in the UK at the Argento Ball wi… +06/28/2018,Sports_celeb,@MariaSharapova,I ❤️ this place. #wimbledon https://t.co/WvEewzWWfW +06/28/2018,Sports_celeb,@MariaSharapova,With the incredible Marina Abramovic at last nights @ejaf evening 📸getty https://t.co/zFmhBJj3NN +06/27/2018,Sports_celeb,@MariaSharapova,I love this!! Thank you for visiting 🙋🏼‍♀️🍬 #PovaPopUp https://t.co/oTSU5JA2Mf +06/27/2018,Sports_celeb,@MariaSharapova,"RT @Sugarpova: We are open! #PovaPopUp @ 12 Church R, Wimbledon Village https://t.co/5vLXacp6Xq" +06/27/2018,Sports_celeb,@MariaSharapova,Thank you for a great #Wimbledon 🎾 warmup!! https://t.co/lKKC29rEkY +06/25/2018,Sports_celeb,@MariaSharapova,A little tour of #Wimbledon with Sidney Crosby 🎾🏒 https://t.co/l5vYazaTFl +06/25/2018,Sports_celeb,@MariaSharapova,🍫🍬🍭 #PovaPopUp #Sugarpova https://t.co/kk9DtbPoLI +06/24/2018,Sports_celeb,@MariaSharapova,Exceeded any expectations at the fair. And yes...we are #children 🎈🐻😊 https://t.co/ARG6Wp1GDN +06/24/2018,Sports_celeb,@MariaSharapova,"A little glimpse of @Sugarpova candy lounge under construction, getting ready for a Wednesday opening 🤗 #PovaPopUp… https://t.co/qGYHuZL2H9" +06/20/2018,Sports_celeb,@MariaSharapova,RT @the_ink_factory: Ink Factory is about to go next-level! We're honored to be accepted into the @NAWBONational + @MariaSharapova Women's… +06/20/2018,Sports_celeb,@MariaSharapova,I'm thrilled to announce the 7 finalists have been selected for my Women's Entrepreneur Program in partnership with… https://t.co/XKuBSp3MCi +06/19/2018,Sports_celeb,@MariaSharapova,Ed Ruscha at #NationalGallery #London https://t.co/nodHvsekpe +06/19/2018,Sports_celeb,@MariaSharapova,Can we please hire you?? 😍 https://t.co/drQhFbzEDh +06/18/2018,Sports_celeb,@MariaSharapova,As Seen In @HauteLivingMag https://t.co/WfO6OQVmyz +06/17/2018,Sports_celeb,@MariaSharapova,Thank you!! https://t.co/7YNVjs3A4x +06/11/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Make your home improvement project a little sweeter with our truffles. Available now at @Menards stores nationwide #truffle… +06/08/2018,Sports_celeb,@MariaSharapova,The scene made it in the movie?!🤓😎 going to the theater asap 🙃 #Oceans8 🎥 https://t.co/1UvMpvTdjI +06/08/2018,Sports_celeb,@MariaSharapova,"Unstoppable, Mon Autobiographie 🇫🇷 is now on shelves throughout France. It is now in over 20 different language t… https://t.co/KfNbi1v2jv" +06/02/2018,Sports_celeb,@MariaSharapova,Happy 📸😊 from today https://t.co/A4dVVCojlY +06/02/2018,Sports_celeb,@MariaSharapova,🤗 https://t.co/9WoaNzWFSt +06/01/2018,Sports_celeb,@MariaSharapova,"Special to be back here, Paris. Love playing in front of you ❤️ https://t.co/Kg5Q7W9NU6" +05/28/2018,Sports_celeb,@MariaSharapova,I made a guest appearance (along w @Sugarpova ) on SHOWTIME on #Billions alongside Damian Lewis &John Malkovich. W… https://t.co/fe42eJCDfy +05/25/2018,Sports_celeb,@MariaSharapova,Musée de Picasso https://t.co/Znsicm7b6c +05/24/2018,Sports_celeb,@MariaSharapova,RT @jen172334: @MariaSharapova @Nikecourt I got mine today from Tennis Warehouse. It’s beautiful!❤️🎾 https://t.co/TBClUpu7Xt +05/23/2018,Sports_celeb,@MariaSharapova,The 👗 for Paris 😍@Nikecourt https://t.co/BaNdcFTFx2 +05/23/2018,Sports_celeb,@MariaSharapova,"The @Sugarpova team is hard at work showing our latest and greatest (chocolate covered gummy lips, anyone?? 🙋🏼‍♀️)… https://t.co/Ya9yUARbOr" +05/23/2018,Sports_celeb,@MariaSharapova,Back at it 👊🏻 #Paris https://t.co/ek17QOgO6a +05/22/2018,Sports_celeb,@MariaSharapova,Bonjour 🤗 https://t.co/A7znfmoY07 +05/20/2018,Sports_celeb,@MariaSharapova,Just a few weeks left to get those applications in for the Women's Entrepreneur Program on which I've partnered wit… https://t.co/5hlKGBIBcZ +05/18/2018,Sports_celeb,@MariaSharapova,3.11hrs on court. Loved every bit of it. Thank you Roma for the ❤️ https://t.co/3d3UfK8PBy +05/15/2018,Sports_celeb,@MariaSharapova,"Unstoppable, in Italian debuts today🇮🇹 🤗 https://t.co/HV710KcrIy" +05/14/2018,Sports_celeb,@MariaSharapova,Two minutes on court with the GOAT 🐐 @RafaelNadal #BucketList Was so nervous 😱😬 https://t.co/mfUO2Xx79l +05/07/2018,Sports_celeb,@MariaSharapova,🤣 https://t.co/g8IY68saIA +05/06/2018,Sports_celeb,@MariaSharapova,"Hola, Madrid! 👋🏼 Loved playing in front of you today 👊🏻🇪🇸 https://t.co/JCGGTFtAfV" +05/05/2018,Sports_celeb,@MariaSharapova,RT @JJlovesTennis: .@MariaSharapova signs autographs at the @MutuaMadridOpen https://t.co/wjmWzDSpUH +05/04/2018,Sports_celeb,@MariaSharapova,Huh? 👀 https://t.co/qGXcOjycvU +05/01/2018,Sports_celeb,@MariaSharapova,Thank you!😊 https://t.co/bDKwT8rmO7 +04/30/2018,Sports_celeb,@MariaSharapova,Introducing @evianwater new Fruits & Plants plum lemongrass flavor. Another delivery that arrived minutes before my… https://t.co/0YZTy98uIy +04/21/2018,Sports_celeb,@MariaSharapova,Not sure what to think of this comment AussieGrit 🤔 https://t.co/uofupTeVHb +04/21/2018,Sports_celeb,@MariaSharapova,This is GOLD 🤣 @Porsche @AussieGrit https://t.co/YniKyuZhOV +04/21/2018,Sports_celeb,@MariaSharapova,RT @PorscheNewsroom: Fast laps on the #Porsche test track in Weissach: @AussieGrit negotiated the circuit with @MariaSharapova in a #911gt2… +04/21/2018,Sports_celeb,@MariaSharapova,RT @PorscheTennis: It´s shooting time for our brand ambassador @MariaSharapova! 📸 #porschetennis https://t.co/BnkfeP9J2D +04/20/2018,Sports_celeb,@MariaSharapova,One way to battlejet lag. A full throttle lap with Mark Webber in a @porsche GT2RS upon arrival. No biggie 🤷🏼‍♀️😵 https://t.co/pHaoND36eB +04/19/2018,Sports_celeb,@MariaSharapova,"Three cakes, 2.5 candles later. 😉Happpy puppy. Thank you for all the beautiful messages, wishes and ❤️ https://t.co/953jORLt3a" +04/18/2018,Sports_celeb,@MariaSharapova,Let’s make it to Stuttgart first 😂🤷🏼‍♀️ https://t.co/JAb7MgBY0w +04/17/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Delicious truffles are now available on https://t.co/GhBtUccrJz in time for #MothersDay ! Free shipping on orders of $75+ #… +04/17/2018,Sports_celeb,@MariaSharapova,Coming out of retirement @TommyHaas13 ? 🤷🏼‍♀️🤔 https://t.co/v7nNFrxxKf +04/16/2018,Sports_celeb,@MariaSharapova,RT @MubadalaSVC: We’re thrilled to announce that five-time Grand Slam champion @MariaSharapova has committed to play in San Jose this year.… +04/16/2018,Sports_celeb,@MariaSharapova,Third live show I’ve seen of Judah Friedlander. He’s a world champ and an athlete. Also a comedian. Watch him on Ne… https://t.co/VKPTbT4I7g +04/12/2018,Sports_celeb,@MariaSharapova,"RT @AmsterdAmik: Кто бы сомневался @MariaSharapova 😎😏🤙🏼 +#МосковскийДомКниги https://t.co/RKhBjxwJ5D" +04/11/2018,Sports_celeb,@MariaSharapova,🛫PDX Nike HQ’s https://t.co/Yz1HPFl26k +04/10/2018,Sports_celeb,@MariaSharapova,Sliding into...Tuesday 🤓 https://t.co/Y78jfKbwHu +04/09/2018,Sports_celeb,@MariaSharapova,RT @NAWBONational: APPLY TODAY: Attention all women business owners who are really ready to grow! Five-Time Grand Slam tennis champion and… +04/06/2018,Sports_celeb,@MariaSharapova,"Met this brilliant and wickedly humble lady, CJ Hendry who just happens to be an amazing artist, currently with a s… https://t.co/jRSRV0Fqce" +04/02/2018,Sports_celeb,@MariaSharapova,Nick told us this morning in 1957 he charged 3.75$ an hour. Today’s price was $900 but I wiggled a discount 🤷🏼‍♀️ https://t.co/rBphLhyU1d +04/01/2018,Sports_celeb,@MariaSharapova,Easter’s version of Happy Hour courtesy of Rum Cherry Truffles @Sugarpova 😉🍒🤷🏼‍♀️ https://t.co/n0n8Ebg8c6 +03/30/2018,Sports_celeb,@MariaSharapova,Prepping for an Easter Egg hunt 🐥 https://t.co/uWL1lOBjVa +03/30/2018,Sports_celeb,@MariaSharapova,"RT @darienlibrary: Borrow it: https://t.co/gTiS1TruTl + +@MariaSharapova https://t.co/balljunoLa" +03/30/2018,Sports_celeb,@MariaSharapova,RT @Dent29Dent: Enjoying reading #Unstoppable by @MariaSharapova whilst on holiday in #Mauritius 😎 https://t.co/HCG6n0V8J7 +03/29/2018,Sports_celeb,@MariaSharapova,RT @Asia_Burzynska: @MariaSharapova Finally got it in Poland! ❤ https://t.co/XYBGofkVkv +03/29/2018,Sports_celeb,@MariaSharapova,"RT @IMGAcademy: 👀 who we found at @imgacademy putting in the hard work before the clay court season begins! You got this, @MariaSharapova!…" +03/24/2018,Sports_celeb,@MariaSharapova,RT @NetJets: Ace! #NetJets Owners enjoyed a private clinic with tennis legend @MariaSharapova. #OnlyNetJets https://t.co/T0yISqnDBp +03/23/2018,Sports_celeb,@MariaSharapova,Thanks for making it so fun! 👊🏻 https://t.co/FgimNteBem +03/22/2018,Sports_celeb,@MariaSharapova,Incredible. 👊🏻🙌🏻 https://t.co/VYQ7omHYIU +03/20/2018,Sports_celeb,@MariaSharapova,"Oh yeah, Day 2. 👊🏻 https://t.co/wGomYY4Sbr" +03/20/2018,Sports_celeb,@MariaSharapova,@daniil_ndg https://t.co/46B2iGtYGR +03/20/2018,Sports_celeb,@MariaSharapova,"RT @team_sharapova: 2012 👶🏼 +2018 👧🏼 +#Godmother 🤗❤️ https://t.co/gY747CUUdL" +03/20/2018,Sports_celeb,@MariaSharapova,I like your style 😉 https://t.co/uMq4CuTqPq +03/08/2018,Sports_celeb,@MariaSharapova,As seen in @Forbes https://t.co/F1WJkPpz7T +03/08/2018,Sports_celeb,@MariaSharapova,"Happy #InternationalWomensDay! Thrilled to partner with @NAWBONational on a new program for female entrepreneurs, k… https://t.co/ufTh5E7TWu" +03/06/2018,Sports_celeb,@MariaSharapova,RT @WhoWhatWear: .@MariaSharapova told us how to style her elegant new @Nike sneakers in L.A. vs NY https://t.co/uIkxZgJ7FA https://t.co/Bo… +03/06/2018,Sports_celeb,@MariaSharapova,Shenanigans on set with @head_tennis and Zverev. New Instinct out in 2019 😳👏🏼 https://t.co/AcMuz0jjyh +03/04/2018,Sports_celeb,@MariaSharapova,"RT @NikeLA: ""The La Cortez has followed me around the world. From Abu Dhabi to Paris, back to LA. It's timeless."" + +@MariaSharapova joins Ni…" +03/03/2018,Sports_celeb,@MariaSharapova,"LA Cortez Launch at Nike Store, The Grove https://t.co/92LDdIvaCV" +03/03/2018,Sports_celeb,@MariaSharapova,RT @KarenCivil: Congratulations @MariaSharapova on the release of your @nikewomen’s “La Cortez” https://t.co/SntN9NFl14 +03/03/2018,Sports_celeb,@MariaSharapova,@daniklup @Nike @nikewomen @nikevault Thank you for hosting such a nice evening! 👏🏼 +03/02/2018,Sports_celeb,@MariaSharapova,Damien Hirst ‘The Veil’ at the Gagosian. https://t.co/Q23OfqHfvK +03/02/2018,Sports_celeb,@MariaSharapova,RT @SNKRDrops: .@MariaSharapova x Nike LA Cortez is now available on Nike SNKRS --> https://t.co/OBa72EPLpj https://t.co/vBDALDcFiw +03/02/2018,Sports_celeb,@MariaSharapova,"Los Angeles!! I’ll be at Nike @TheGroveLA TONIGHT to launch and talk +about the limited-edition LA Cortez X Maria Sh… https://t.co/R2oycAJ3j7" +03/02/2018,Sports_celeb,@MariaSharapova,"RT @daniklup: So excited to host an event alongside @MariaSharapova TOMORROW at the Grove with @nikewomen! 🎾👟 + +These “la Cortez x Maria” be…" +03/01/2018,Sports_celeb,@MariaSharapova,"RT @TheSoleWomens: Take a closer look at Nike x @MariaSharapova's effortlessly chic LA Cortez 💘 + +https://t.co/a4n7G7xIRB https://t.co/iEFS…" +03/01/2018,Sports_celeb,@MariaSharapova,"RT @SOLELINKS: .@MariaSharapova x Nike LA Cortez is now available via Nordstrom => https://t.co/8ZjYfX3bXH + +(releasing tomorrow on SNKRS) h…" +03/01/2018,Sports_celeb,@MariaSharapova,So excited to share the LA Cortez with you! The shoe captures everything I love most about this city. Available TOD… https://t.co/aQZ9qh7yFZ +02/28/2018,Sports_celeb,@MariaSharapova,"I got to design one of my favorite Nike classics, the Cortez. Ta dahhh...LA Cortez X Maria Sharapova. On March 2nd,… https://t.co/M3GDRcHKH4" +02/28/2018,Sports_celeb,@MariaSharapova,RT @SBDetroit: @MariaSharapova releasing her own Nike Cortez https://t.co/IL5JDm5PyE https://t.co/rV1kgWkT1j +02/28/2018,Sports_celeb,@MariaSharapova,"RT @hype_bae: .@Nike teams up with @MariaSharapova on a luxe LA Cortez. +https://t.co/vqMCzMvGhw https://t.co/xoWUA60XZ8" +02/28/2018,Sports_celeb,@MariaSharapova,"RT @Sneakerologue2: .@MariaSharapova x Nike Cortez ""LA"" +Inspiré de la sneaker préférée de Maria Sharapova et de sa ville préféré. +La Nike C…" +02/27/2018,Sports_celeb,@MariaSharapova,"RT @TheGroveLA: On March 2nd, join us for a special night with @Nike & @MariaSharapova to celebrate the new LA Cortez . RSVP at https://t.c…" +02/27/2018,Sports_celeb,@MariaSharapova,That’s really nice! Thank youuu 😊 https://t.co/lkNGvydZOH +02/24/2018,Sports_celeb,@MariaSharapova,That Friday feeling after the sand dunes... 🤸🏼‍♂️ https://t.co/mcLOZYhG9R +02/23/2018,Sports_celeb,@MariaSharapova,Thank you! https://t.co/g9OQyNeC2e +02/23/2018,Sports_celeb,@MariaSharapova,Ураааааааа 👏🏼👏🏼👏🏼 Zagitova 🥇 Medvedeva 🥈молодцы!!! #Olympics2018 +02/23/2018,Sports_celeb,@MariaSharapova,CookiesN Cream ➡️👩🏼‍🍳🍪🥛#myfave https://t.co/RO1B5MiuId +02/19/2018,Sports_celeb,@MariaSharapova,"Long days on the court require me to keep up my hydration throughout. With soft, smooth water of course 😉 #evian https://t.co/aBMI44CC0k" +02/16/2018,Sports_celeb,@MariaSharapova,Tom Wesselmann knew all about emojis before we ever did 💄🕶 #Gagosian https://t.co/IKqPFaU3lt +02/05/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Free Ground Shipping on https://t.co/r2cLs2PpHe guaranteed delivery by #ValentinesDay Last chance.! Use code VDSHIP at chec… +02/05/2018,Sports_celeb,@MariaSharapova,Alex’s 🦅’s loyalty became infectious this season and I somehow became an #Eagles cheerleader tonight 🤷🏼‍♀️… https://t.co/Jwu8DnO9jq +02/01/2018,Sports_celeb,@MariaSharapova,#Unstoppable spotted in Czech Republic 🇨🇿 https://t.co/Kq3c6SYFRu +02/01/2018,Sports_celeb,@MariaSharapova,"RT @BillieJeanKing: While I was in Australia, it was wonderful to catch up with @MonicaAce93 and hear about the ongoing efforts in Puerto R…" +01/31/2018,Sports_celeb,@MariaSharapova,BTS from today’s new cover shoot 📸 https://t.co/qJDkC7EPZp +01/29/2018,Sports_celeb,@MariaSharapova,Thank you! Funny 📸 https://t.co/IC4LvxpK4I +01/18/2018,Sports_celeb,@MariaSharapova,RT @head_tennis: .@MariaSharapova focused and determined as ever. See you in round three! #AusOpen https://t.co/DHden9EO0s +01/18/2018,Sports_celeb,@MariaSharapova,"RT @AustralianOpen: ""I love being in the city. I love Australia. I love the summertime...A lot of things to smile about."" + +-@MariaSharapova…" +01/16/2018,Sports_celeb,@MariaSharapova,Round 1 👊🏻 #AusOpen ❤️ This Dress https://t.co/d7MXpsE461 +01/16/2018,Sports_celeb,@MariaSharapova,"RT @AustralianOpen: Off to work. + +@MariaSharapova business like as she makes her way onto court. + +#AusOpen https://t.co/pee3k2lMAr" +01/15/2018,Sports_celeb,@MariaSharapova,"The Aussie summers get so warm, during which the body can lose over a liter of water an hour! Crazy, right?! Always… https://t.co/HwQyeBOG67" +01/13/2018,Sports_celeb,@MariaSharapova,#AusOpen just around the corner 🤗 https://t.co/PZRa6HlYhO +01/13/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Traveling in or out of @flyLAXairport this weekend? Don't forget to stop by Treat Me Sweet store in Tom Bradley Internationa… +01/11/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Sugarpova is now available in all @TennisPlaza locations! Stop by if you are in Florida #tennisshop https://t.co/QFy5bYvnav +01/10/2018,Sports_celeb,@MariaSharapova,RT @team_sharapova: #KeepGrinding 💁🏼💪🏻🎾🇦🇺 #AusOpen https://t.co/0M0blQFZXG +01/08/2018,Sports_celeb,@MariaSharapova,RT @AustralianOpen: A closer look at @MariaSharapova getting #AusOpen ready this morning 👀 https://t.co/UAHgRwZoIb +01/06/2018,Sports_celeb,@MariaSharapova,RT @Sugarpova: Thank you @TennisPlaza 😍 https://t.co/4cFNDnsDmC +12/31/2017,Sports_celeb,@MariaSharapova,I spy...with my little 👁 #ShenzhenOpen https://t.co/uVmBTIvxOn +12/29/2017,Sports_celeb,@MariaSharapova,First practice in Shenzhen.... Hey #SharaFamilyChina 🙋🏼🇨🇳 https://t.co/dYZDwWVylL +12/28/2017,Sports_celeb,@MariaSharapova,Shenzhen arrivals 🇨🇳 https://t.co/ZGY8lXHrF7 +12/24/2017,Sports_celeb,@MariaSharapova,Spice Guuurl https://t.co/FHnqYunrMO +12/24/2017,Sports_celeb,@MariaSharapova,RT @LarissaBatta: In the middle of the Gulf of Mexico enjoying Unstoppable by @MariaSharapova Merry Christmas to you all! https://t.co/ru… +12/22/2017,Sports_celeb,@MariaSharapova,Time flies ❤️ https://t.co/d4dE0LyCDz +12/22/2017,Sports_celeb,@MariaSharapova,"RT @MadalynSklar: Love this quote from @MariaSharapova in @tferriss’ book #TribeOfMentors. + +""’Be original.’ It’s straightforward. It..."" fr…" +12/21/2017,Sports_celeb,@MariaSharapova,🤷🏼‍♀️ https://t.co/zhQVPQYdjm +12/17/2017,Sports_celeb,@MariaSharapova,Sunday's 📸 https://t.co/8AdBGCvg5C +12/17/2017,Sports_celeb,@MariaSharapova,"""Who eats it like that"" 😂Max not entirely happy with how I taste test new @Sugarpova truffles 🍬🍫🍭 https://t.co/bYoA7WdpLo" +12/15/2017,Sports_celeb,@MariaSharapova,RT @Sugarpova: Last minute gift shopping on Amazon? Don't forget to pick up a Sugarpova candy and chocolate. Now part of Prime offering on… +12/15/2017,Sports_celeb,@MariaSharapova,Personalized Air Force 1's at Nike Soho with art inspired lingo 👟 https://t.co/Rdiolze2DX +12/13/2017,Sports_celeb,@MariaSharapova,Getting in the golden Holiday spirit despite the heat wave in Cali! Thanks @evianwater and @KusmiTea for sending yo… https://t.co/3St6bkolfZ +12/08/2017,Sports_celeb,@MariaSharapova,Floyd 🙋🏼📸 https://t.co/uJJbgcs69W +12/07/2017,Sports_celeb,@MariaSharapova,📷 https://t.co/bpRTXvF9QT +12/07/2017,Sports_celeb,@MariaSharapova,Had so much fun designing the Limited Edition @evianwater X MariaSharapova bottle now exclusively sold on… https://t.co/Jub3cIrMdv +11/30/2017,Sports_celeb,@MariaSharapova,A fun afternoon with @PorscheNewsroom at the LA Auto Show. The new 718 Boxster GTS is 😍🚗 https://t.co/1IlhXaPhnD +11/29/2017,Sports_celeb,@MariaSharapova,Hey #LAAutoShow 🤗@Porsche https://t.co/cyaRcGisLN +11/27/2017,Sports_celeb,@MariaSharapova,Thank you 💝 https://t.co/DPY21K3zdb +11/27/2017,Sports_celeb,@MariaSharapova,"Congrats on a phenomenal season @lewishamilton. 🏆 @ Abu Dhabi, United Arab Emirates https://t.co/erX4nHJTA0" +11/26/2017,Sports_celeb,@MariaSharapova,So much fun!! ✌🏻 https://t.co/YYKfjuVzK7 +11/26/2017,Sports_celeb,@MariaSharapova,"24 hours ago in Abu Dhabi at a Cuban themed gala, tonight playing in front of 15,000 spectators in Istanbul. Such a… https://t.co/6PvOPGFDwJ" +11/26/2017,Sports_celeb,@MariaSharapova,😍 https://t.co/ViAL0TmCjj +11/26/2017,Sports_celeb,@MariaSharapova,Of course I don't know where to go... 🙈 https://t.co/PVrILZTSpi +11/25/2017,Sports_celeb,@MariaSharapova,First @F1 race experience ✔️ https://t.co/G9lMaXYsrK +11/25/2017,Sports_celeb,@MariaSharapova,Whoopsie doopsie 🤔 https://t.co/Hbv3a7yC98 +11/25/2017,Sports_celeb,@MariaSharapova,✌🏻 https://t.co/t7NIaD31XW +11/25/2017,Sports_celeb,@MariaSharapova,Look who's here at @F1!! @AussieGrit 🤗@Porsche 🚗 https://t.co/vDrqboALNt +11/25/2017,Sports_celeb,@MariaSharapova,Sticking to our original sports 🤔@nico_rosberg https://t.co/hLSuGoQS9i +11/24/2017,Sports_celeb,@MariaSharapova,💃 https://t.co/a6a8DBfaaJ +11/24/2017,Sports_celeb,@MariaSharapova,Abu Dhabi Louvre designed by Jean Nouvel https://t.co/Zf66WSiYPA +11/24/2017,Sports_celeb,@MariaSharapova,Yessss https://t.co/zrcZCxIAIX +11/23/2017,Sports_celeb,@MariaSharapova,"So excited to play in front of you this weekend, Istanbul. Just heard it is a 13,000 sold out stadium 😱 #SeeYouSoon… https://t.co/BCuN7kmkDc" +11/23/2017,Sports_celeb,@MariaSharapova,❤️ https://t.co/KDbdnkceUy +11/22/2017,Sports_celeb,@MariaSharapova,Up to 500m...how about you?😉 Give it a go here: https://t.co/gioEibqnaK #mountainquest #evian #oversize https://t.co/N5Bih7wWAE +11/21/2017,Sports_celeb,@MariaSharapova,With sleeve or no sleeve 🤔 https://t.co/ai3ETUWpFN +11/21/2017,Sports_celeb,@MariaSharapova,I signed thousands of copies of UNSTOPPABLE just in time for #BlackFriday. Head to @BNBuzz on Friday to get a hand-… https://t.co/1qbeVlCpvW +11/20/2017,Sports_celeb,@MariaSharapova,Toodles ✌🏻✈️ https://t.co/fDML64qtfO +11/18/2017,Sports_celeb,@MariaSharapova,I just ran 300m...can you beat me? 😉 Give it a go here: https://t.co/YG0kSM5f8c #mountainquest #evian #oversize https://t.co/LT14MRuokG +11/18/2017,Sports_celeb,@MariaSharapova,"I got you, Friday 👀 https://t.co/NP8AvicWta" +11/17/2017,Sports_celeb,@MariaSharapova,📸 https://t.co/eqSlNxgM6Q +11/16/2017,Sports_celeb,@MariaSharapova,RT @First1Break: Busy Lil 🐝🐝🐝 #Unstoppable #booksigning #mariasharapova 💙🎾 #first1break #inspired 🏁#thankyouthursday #letsgoplay #girlsdayo… +11/16/2017,Sports_celeb,@MariaSharapova,Started the day with these smiles 😊 https://t.co/d3SPVc0F5p +11/16/2017,Sports_celeb,@MariaSharapova,Thank you 😊 https://t.co/0v84T32XqP +11/15/2017,Sports_celeb,@MariaSharapova,"RT @Sugarpova: Say ""Thank You"" with something Sweet! Free Shipping on https://t.co/r2cLs2PpHe (orders of $30+) Plus all proceeds go direct…" +11/15/2017,Sports_celeb,@MariaSharapova,"Чёрное море, Сочи 😍❤️ https://t.co/9H8oh3qeMO" +11/14/2017,Sports_celeb,@MariaSharapova,🤷🏼‍♀️ https://t.co/KPPbjEITCi +11/14/2017,Sports_celeb,@MariaSharapova,"When you get tricked alongside @JessieJ, Jack Ma, and Nicole Kidman 😱 https://t.co/mQR2J2YhTP" +11/13/2017,Sports_celeb,@MariaSharapova,This is so sweet❤️ #bookclub https://t.co/3QYaTZhImr +11/10/2017,Sports_celeb,@MariaSharapova,RT @AlibabaGroup: Nicole Kidman and @MariaSharapova take the stage at the #Double11 gala! https://t.co/QsK20OYJdH +11/10/2017,Sports_celeb,@MariaSharapova,"About to go live in front of an 300MIL+ tv audience in 🇨🇳 for #Double11 @AlibabaGroup Tune in, I'm in a running co… https://t.co/8nhvuvjBJp" +11/10/2017,Sports_celeb,@MariaSharapova,An honor meeting Jack Ma at @AlibabaGroup #Double11 event today. Thank you for inviting me back to Shanghai! 🇨🇳 https://t.co/CaI8joukKy +11/10/2017,Sports_celeb,@MariaSharapova,Last night at rehearsals for Double 11 event in 🇨🇳...was napping 2 minutes prior to this 📸 so the fog makes sense..… https://t.co/YCPRNywthc +11/08/2017,Sports_celeb,@MariaSharapova,RT @Sugarpova: Back in stock!#sporty https://t.co/R0MHdW0B7E https://t.co/LDvPFzpHUy +11/08/2017,Sports_celeb,@MariaSharapova,"See you soon, Shanghai 🇨🇳 🤗@AlibabaGroup #Double11 https://t.co/RpuaZ1Kjge" +11/07/2017,Sports_celeb,@MariaSharapova,"RT @voguemagazine: ""This is a matter of life and death,"" says @MonicaAce93. https://t.co/pXOSGSVspp" +11/06/2017,Sports_celeb,@MariaSharapova,RT @AlibabaGroup: We're so excited to have @MariaSharapova at our #Double11 gala this year! The countdown to the biggest shopping day in th… +11/03/2017,Sports_celeb,@MariaSharapova,Just in time for the Oscars 🤷🏼‍♀️ https://t.co/0WOtSVR6sL +11/02/2017,Sports_celeb,@MariaSharapova,RT @SportByFort: One of the best brands in sport. Worth reading the @adage article about @MariaSharapova - https://t.co/Fn4TgBL76z https://… +11/02/2017,Sports_celeb,@MariaSharapova,🐢🌊 https://t.co/xgrYvXi6WA +10/31/2017,Sports_celeb,@MariaSharapova,RT @artnet: Is Nike the New Medici? Curator Neville Wakefield Says Brands Are Our 21st Century Patrons: https://t.co/0fAkHkXMkj https://t.c… +10/31/2017,Sports_celeb,@MariaSharapova,Congrats @LewisHowes on your book launch today! I know a few people that could use this book #MaskOfMasculinity 😜 https://t.co/K8XwCEkXe0 +10/31/2017,Sports_celeb,@MariaSharapova,In case you missed it - photos by Robert Trachtenberg from @adage shoot. Story here: https://t.co/2knQyRW4iH https://t.co/CTamKKujkR +10/31/2017,Sports_celeb,@MariaSharapova,When they say you can't do #2inarow for the 🎥...#HORSEchamp 🏆😏 https://t.co/7jrx7KCrqf +10/30/2017,Sports_celeb,@MariaSharapova,Take me there 🙃🙋🏼 https://t.co/6yUfYhI3Ph +10/30/2017,Sports_celeb,@MariaSharapova,RT @Meisarch: Announcing my new partnership with @MariaSharapova today. Very excited to be working with her! https://t.co/vajleFZMjm +10/30/2017,Sports_celeb,@MariaSharapova,"RT @adage: .@MariaSharapova returns to to winning, and building her brands https://t.co/Z9io5tOkk5 https://t.co/IsSlDeStFv" +10/29/2017,Sports_celeb,@MariaSharapova,Reunited #🍟 https://t.co/vDwlTAnH4s +10/27/2017,Sports_celeb,@MariaSharapova,"RT @PlayersTribune: Unidos por Puerto Rico 🇵🇷 + +This week @MariaSharapova and @MonicaAce93 helped distribute supplies in Puerto Rico: https:…" +10/27/2017,Sports_celeb,@MariaSharapova,RT @CNNEE: .@MonicaAce93 y @MariaSharapova apoyan a Puerto Rico tras huracán María https://t.co/xJJ2MvW4W5 https://t.co/45dFxH4zFN +10/26/2017,Sports_celeb,@MariaSharapova,"My @CFDA event diary, as seen in @voguemagazine https://t.co/T9EpbOCdTm" +10/26/2017,Sports_celeb,@MariaSharapova,CFDA Fashion Fund Show/Vogue wearing @DerekLamNYC https://t.co/wfjtVTgt3A +10/26/2017,Sports_celeb,@MariaSharapova,RT @TennisChannel: .@MariaSharapova and @MonicaAce93 lend a hand to Hurricane Maria victims: https://t.co/mPa4RPqwtf https://t.co/ikpiF1sXeg +10/25/2017,Sports_celeb,@MariaSharapova,Thank you! 🇵🇷 https://t.co/zEPAjjUHy5 +10/25/2017,Sports_celeb,@MariaSharapova,"RT @PlayersTribune: On Monday, @MariaSharapova and @MonicaAce93 helped distribute supplies to Hurricane Maria victims. + +How to help: https:…" +10/25/2017,Sports_celeb,@MariaSharapova,Ready for @adage 💃 https://t.co/AgT28YEzt9 +06/30/2018,Sports_celeb,@MiaHamm,"RT @NWSL: Look who's here! 👋 @HeatherOReilly catches up with @katemarkgraf before her new team takes the pitch. + +#ORLvNC | #NWSL https://t…" +06/30/2018,Sports_celeb,@MiaHamm,RT @slammersfc: National Champions 3 out of the last 4 seasons!!! https://t.co/hP4XMUiCQw +06/29/2018,Sports_celeb,@MiaHamm,RT @DrColleenHacker: https://t.co/3iiPJVgYIc +06/28/2018,Sports_celeb,@MiaHamm,"RT @PlayersTribune: We remember the life of the legendary Pat Summitt today. + +https://t.co/mpEnH5mDno" +06/24/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: Thank you to all the women of The 3252 and LAFC who help bring life to the beautiful game. + +#LAFC +#The3252 +#ShoulderToShould…" +06/24/2018,Sports_celeb,@MiaHamm,RT @caitlinbuckley2: Briana Scurry received a lifetime achievement award from the Black Soccer Membership Association at halftime +06/22/2018,Sports_celeb,@MiaHamm,RT @KristineLilly: So fun to be @Steward event in Salt lake w/ these two @beckysauerbrunn @KyleBeckerman https://t.co/O1lnh3rIQR +06/22/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: ARoooooooo!!!! https://t.co/jvI5Vy1Myn +06/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: WHAT A FINISH! + +On to the @opencup Quarterfinals to host @TimbersFC. https://t.co/goGkCVWKP6" +06/21/2018,Sports_celeb,@MiaHamm,"RT @openStadiums: Women/families finally entered to Azadi stadium after 37 years of ban, to watch #IRNESP on screen. https://t.co/oSBXHMWI…" +06/19/2018,Sports_celeb,@MiaHamm,RT @DrColleenHacker: The Eternal Light Of Tony DiCicco @PositiveCoachUS https://t.co/5lZ0RrUKQk +06/19/2018,Sports_celeb,@MiaHamm,"RT @Lcole22: Still feels like yesterday we lost this great man. An amazing father, coach, leader, my mentor and friend. Miss you everyday.…" +06/19/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: My Dad died a year ago. My brothers and I have spent the last 365 sharing the lessons of his life. As we work to incorpo… +06/19/2018,Sports_celeb,@MiaHamm,"RT @BeastModeSoccer: to me Tony personified a great coach. A phenomenal amount of knowledge, a winner, yet would sit down for a coffee with…" +06/18/2018,Sports_celeb,@MiaHamm,"Congratulations to you and the family , Alex. https://t.co/EtwZzN0yMQ" +06/18/2018,Sports_celeb,@MiaHamm,RT @ussoccer_mnt: Look back on the #USMNT's historic 1950 upset of England through the eyes of Walter Bahr » https://t.co/YXQee9Z3vH https:… +06/18/2018,Sports_celeb,@MiaHamm,RT @FIFAWWC: Wow what a hectic day! Just finished an interview with @EeshFerguson an Aussie International who played at 2 @FIFAWWC and 1 @O… +06/18/2018,Sports_celeb,@MiaHamm,"RT @RobStoneONFOX: Walter Bahr, thank you for all you did to kickstart US Soccer history. Your contributions will be felt for generations.…" +06/18/2018,Sports_celeb,@MiaHamm,RIP Mr Bahr. He was a true gentleman and ambassador of our game. He always took the time to say hello and ask how y… https://t.co/9zoVbQFoV0 +06/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Come support your Club & Country. + +Wear your Black & Gold gear tomorrow to @yeoldekingshead for the official #LAFC @FIFAWorldCup…" +06/17/2018,Sports_celeb,@MiaHamm,RT @LAFC: Happy #FathersDay from LAFC. https://t.co/tbUwTZVwC0 +06/17/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: And a special acknowledgement to my brother Alex, celebrating his First after he and Nicole welcomed Aiden earlier this…" +06/17/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Watch @11carlosV and @miseleccionmxEN take on Germany tomorrow at the official #LAFC @FIFAWorldCup Watch Party. + +📍 The Parlor +📆…" +06/16/2018,Sports_celeb,@MiaHamm,"Congratulations, Aly!! Leading the way. https://t.co/NdfAfOg4qf" +06/16/2018,Sports_celeb,@MiaHamm,RT @alywagner: You guys are the cutest! Thank you for the tears🙈 and thank you for supporting me in this. It is too much. 😘 https://t.co/AT… +06/16/2018,Sports_celeb,@MiaHamm,RT @alexmorgan13: I’d like to thank the soccer gods for blessing us with beautiful soccer for the last 90 minutes. #PORvESP +06/15/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: TeamFirst is heading to @BerkySoccer in 9. days. Very few spots are left, but if you are a female soccer player going into…" +06/15/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Wear your Black & Gold gear and come support your Club & Country. + +Join us at the #LAFC @FIFAWorldCup Watch Parties. + +💻 https://…" +06/15/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Immigrants Feed America +w @chefjoseandres https://t.co/AydEDGiDoF" +06/15/2018,Sports_celeb,@MiaHamm,What team plays this formation? https://t.co/qL56RhsAb4 +06/15/2018,Sports_celeb,@MiaHamm,"RT @Dodgers: Just announced: @LAFC Night at Dodger Stadium on August 20! + +Purchase a ticket pack at https://t.co/057G22NH4S to get this exc…" +06/15/2018,Sports_celeb,@MiaHamm,RT @MenInBlazers: Godspeed to @RobStoneONFOX and @AlexiLalas and all our colleagues at Fox. To broadcast a World Cup is both an honor and a… +06/13/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: I so love this. I second everything here @Catchin24. #pureclass https://t.co/GMtoe3OPGp +06/13/2018,Sports_celeb,@MiaHamm,RT @ussoccer_mnt: 1994 laid the foundation. 2026 will ignite the passion of a new generation. Welcoming the @FIFAWorldCup back to our home… +06/13/2018,Sports_celeb,@MiaHamm,"RT @united2026: Diego Lainez 🇲🇽 +Brianna Pinto 🇺🇸 +Alphonso Davies 🇨🇦 + +The future of our game knows no limits in North America. #United2026 h…" +06/13/2018,Sports_celeb,@MiaHamm,"RT @FOXSoccer: What a moment! + +@AlexiLalas and @RobStoneOnFOX give their immediate reaction to the USA-Mexico-Canada united bid winning th…" +06/13/2018,Sports_celeb,@MiaHamm,Congrats to the entire committee for your tireless work . https://t.co/siR6UhiMs2 +06/13/2018,Sports_celeb,@MiaHamm,"RT @ESPNFC: The moment Canada, Mexico and the U.S. discovered they would be hosting the 2026 World Cup. https://t.co/BNnAbF9EFh" +06/13/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: 👑s of @Concacaf! + +Introducing your undefeated 2018 #CU17W Champions! 🏆🎉 https://t.co/rqA97L9yDg" +06/12/2018,Sports_celeb,@MiaHamm,RT @EeshFerguson: Absolute magician and the reason I started supporting the Gunners. https://t.co/PLmcXJ0s5w +06/11/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: 🎶 We're going to the 'ship! 🎶 + +U-17 WWC berth clinched, now we play for the #CU17W 🏆 on Tuesday! https://t.co/AvebPTy0oZ" +06/11/2018,Sports_celeb,@MiaHamm,RT @Concacaf: Haiti 2 - 3 United States Highlights | @fhfhaiti @ussoccer #CU17W https://t.co/xVBuwOgFxm +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: INSANE! + +#The3252 +#LAFC +#ShoulderToShoulder https://t.co/uRn15msvcv" +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC: COMING HOME WITH 3 POINTS + +#SJvLAFC https://t.co/4GHOGXWoOB" +06/10/2018,Sports_celeb,@MiaHamm,"RT @LAFC: 90+7’ | GOOOOOOOOOAAALLLL JOAO MOUTINHO!! + +MOUTINHO and LAFC have stolen 3 points in San Jose! + +#SJvLAFC 3-4 https://t.co/ouEsj…" +06/09/2018,Sports_celeb,@MiaHamm,RT @ChancellorFolt: Congratulations @DiamondHeels! What a game - onward to OMAHA! #GDTBATH https://t.co/D9oIaVQ92S +06/09/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Congratulations to @warriors and #LAFC owners Peter Guber, Kirk Lacob, Harry Tsao, Rick Welts, and Brandon Schneider on another @…" +06/08/2018,Sports_celeb,@MiaHamm,"RT @cnnbrk: Anthony Bourdain is dead. The chef, storyteller and Emmy-winning host of CNN's ""Parts Unknown"" is dead of suicide at age 61. ht…" +06/08/2018,Sports_celeb,@MiaHamm,"RT @CBSSports: He'll never forget it. Washington will never forget it. Hockey will never forget it. + +Ovi, finally, lifts the Cup. https://…" +06/07/2018,Sports_celeb,@MiaHamm,"RT @NWSL: 3️⃣6️⃣5️⃣ days to go until the first kick of #FIFAWWC! + +Everything you need to know ➡️ https://t.co/UvWoTsUSnt https://t.co/XqvIP…" +06/07/2018,Sports_celeb,@MiaHamm,"I miss my coach, I miss my friend. https://t.co/1ReR5I0WgL" +06/07/2018,Sports_celeb,@MiaHamm,"RT @ASRomaEN: A love that transcends time, a passion beyond measure. 💛❤️ + +Happy birthday #ASRoma, 91 years young! 🐺 https://t.co/PZsK0zLJFb" +06/07/2018,Sports_celeb,@MiaHamm,RT @KristineLilly: Thank you to my hometown for this wonderful honor and great to meet these young strong girls! #WiltonCt. #hometown https… +06/07/2018,Sports_celeb,@MiaHamm,RT @Ath4Hope: Wow! https://t.co/MYYEqHHzuw +06/04/2018,Sports_celeb,@MiaHamm,"RT @LAFC: It's official: @11carlosV and @omargaber are headed to the @FIFAWorldCup. + +🇲🇽🇪🇬 https://t.co/baifg9Sk8k https://t.co/w5AmHUagAn" +06/01/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_ynt: One week until #CU17W resumes in Florida! Three games stand between the U-17 #USWNT and the World Cup. + +https://t.co/vyyX…" +06/01/2018,Sports_celeb,@MiaHamm,"RT @anthonydicicco: Is there a soccer club (youth or adult) in Flint, Michigan? Who knows someone? Or knows someone who knows someone? I wa…" +05/31/2018,Sports_celeb,@MiaHamm,"RT @GrantWahl: Congrats to new National Soccer Hall of Fame members: Brad Friedel, Tiffeny Milbrett, Cindy Parlow Cone, Don Garber, Dr. Bob…" +05/31/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: MOOD! #USWNT #NSHOF18 https://t.co/06tZX1WB4m +05/31/2018,Sports_celeb,@MiaHamm,"Congrats, Millie. So skilled, so smooth, and so deserving of this honor. 👏🏼🇺🇸 https://t.co/rlTgm6gUUY" +05/31/2018,Sports_celeb,@MiaHamm,RT @katemarkgraf: I am so excited and honored to be inducted into… https://t.co/bXfls31jTW +05/31/2018,Sports_celeb,@MiaHamm,"RT @ncwomenssoccer: It's a great day to be a Tar Heel. Congratulations to 3-time National Player of the Year, 2-time NCAA champion and 2-t…" +05/31/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_wnt: The @soccerhof came calling! + +Congrats to World Cup Champ and two-time Olympic 🥇 medalist @cone_cindy on her #NSHOF18 ind…" +05/31/2018,Sports_celeb,@MiaHamm,RT @katemarkgraf: Honored to be part of class of @MSHOF 2018 https://t.co/Lwm9YD0F8q +05/30/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Amazing. https://t.co/MOdKcM54UG +05/30/2018,Sports_celeb,@MiaHamm,"RT @AbbieNews8: “I believe I can beat cancer, I believe in magic”- this brave princess Kalea has a rare form of Leukemia. Since she is mixe…" +05/30/2018,Sports_celeb,@MiaHamm,RT @RandyGyllenhaal: We are spending this morning with Sydney — a 17-year old suffering from Leukemia in Philly. She wants to go to nursing… +05/29/2018,Sports_celeb,@MiaHamm,"RT @AmericanOutlaws: Congrats to @cpulisic_10 our 2017 member-voted AO #USMNT Player of the Year! + +#HereForTheFuture #PuliSICK https://t.c…" +05/28/2018,Sports_celeb,@MiaHamm,RT @LeeNguyen24: Lesgoooo @thewalkerzim what a header! 🇺🇸🇺🇸 +05/28/2018,Sports_celeb,@MiaHamm,RT @RobStoneONFOX: One of my all time favorites when I covered the Mutiny https://t.co/L6JmurrSck +05/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Today and every day, we remember and honor those who gave their lives defending our country. + +#MemorialDay https://t.co/PombDQt2…" +05/27/2018,Sports_celeb,@MiaHamm,"RT @TRongen: While several very generous, loving people have stepped up to be tested for kidney donation, still NO MATCH has been found for…" +05/26/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Matchday 12. + +Gates Open - 5:30pm +Showtime - 6:45pm +Kick Off - 7pm + +#LAFCvDC https://t.co/8jBkPUFITd" +05/26/2018,Sports_celeb,@MiaHamm,RT @Dodgers: Sisters and Olympians @hannahbrandt16 and @marissabrandt22 are here tonight for the #Dodgers’ Sixth Annual Adoptee Night! http… +05/23/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: This just in: The Chef is catering the group date and joining us at the show 😋 +#MoreOfUs +https://t.co/pFmd0rCfKU https://t.…" +05/22/2018,Sports_celeb,@MiaHamm,"So excited to celebrate all the amazing student/athletes tonight in Jackson,MS for the Clarion Ledger Sports Awards." +05/22/2018,Sports_celeb,@MiaHamm,"RT @LAFC: See you tonight, @BVB. + +Catch #LAFCvBVB ⬇️ https://t.co/Zs1ZmwaH2l" +05/21/2018,Sports_celeb,@MiaHamm,"RT @ExtremeSRO: This is one of the most EPIC speeches I’ve ever heard. Thank you @AbbyWambach for reminding us that we are WOLVES, and for…" +05/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Tomorrow night. + +Don't miss #LAFC vs. @BVB at @BancStadium. + +🎟 https://t.co/aYdbx6ciPc + +(🎥 @COPA90US) https://t.co/sEvFRj7BAj" +05/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: 🇧🇪 Congrats, @LaurentCiman23! 🇧🇪 https://t.co/nqCY98fVEF" +05/21/2018,Sports_celeb,@MiaHamm,"RT @FCBarcelona: A legend departs and his legacy begins +#infinit8iniesta https://t.co/AEpefaJQVv" +05/21/2018,Sports_celeb,@MiaHamm,RT @sportsiren: Started crying when I saw this giant @MooreMaya billboard downtown Minneapolis. “No bird soars too high when she soars with… +05/20/2018,Sports_celeb,@MiaHamm,"This ride is for you,Tony! Miss you! @TourdePier 2018 https://t.co/Tf6M7WIYMc" +05/20/2018,Sports_celeb,@MiaHamm,I spy @RobStoneONFOX on stage of @TourdePier . Ride On. +05/20/2018,Sports_celeb,@MiaHamm,Mr @AlexiLalas doing his part @TourdePier https://t.co/wI9wJ65OlN +05/20/2018,Sports_celeb,@MiaHamm,Here in MB and @TourdePier kicking cancer's ass! https://t.co/sGYf9BS9Sm +05/20/2018,Sports_celeb,@MiaHamm,"RT @TourdePier: The big weekend is here!!! Tomorrow we ride to remember those we’ve lost, to celebrate those fighting cancer and to work to…" +05/19/2018,Sports_celeb,@MiaHamm,RT @uncwlax: FINAL FOUR BOUND! Carolina will make its 7th trip to the NCAA semifinals in 10 years. https://t.co/hUHABmUDG7 +05/18/2018,Sports_celeb,@MiaHamm,"RT @CNN: When doctors told him his blood has unique, disease-fighting antibodies, he started donating plasma every week. For 60 years. He’s…" +05/16/2018,Sports_celeb,@MiaHamm,I'm in! https://t.co/WeDJGCQaeV +05/15/2018,Sports_celeb,@MiaHamm,RT @BeTheMatch: Another #ProGolfer just swung into our life-saving mission and joined the registry! Thanks @JordanSpieth…we think you’re pr… +05/15/2018,Sports_celeb,@MiaHamm,"RT @LAFC: ""It's the best feeling in the world."" + +@MarcoUrenaCR on making the @FIFAWorldCup roster for @fedefutbolcrc. https://t.co/LFDawFRq…" +05/14/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: And January 26th, she became a Grandmother to Aiden and she’s incredible at that too! We’re blessed. https://t.co/Sli0TY…" +05/13/2018,Sports_celeb,@MiaHamm,"RT @NWSL: ""It just makes me appreciate what mothers are capable of doing and, I guess, how strong we are."" + +@lifetimetv x @sydneyleroux htt…" +05/11/2018,Sports_celeb,@MiaHamm,"RT @SeedsofPeace: ""With enough faith, time, and tending, the Seeds you all planted will grow, and our children and grandchildren will till…" +05/09/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: YES. YES. YES. The General is the ultimate pro and just so SILKY SMOOTH. Congrats Bob! https://t.co/AJJyq150MA +05/09/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: @thegoalkeeper Thanks for sharing Jonathan. Nice of the @sportsemmys to recognize him. Our family is grateful. +05/09/2018,Sports_celeb,@MiaHamm,"RT @mimiv42: Soccer legend Zhang Ouying is fighting serious illness, please spread the word in the soccer community. She has been devoted…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @BAWSI: In case you weren't able to join us at our event Friday, here is the video we premiered showcasing both our BAWSI Girls and BAWS…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @si_soccer: Along with Fox's Aly Wagner, Telemundo’s Viviana Vila is set to break a broadcast barrier for women by calling a men's World…" +05/08/2018,Sports_celeb,@MiaHamm,"RT @LAFC: More ⚽️ in the Heart of Los Angeles. + +Thank you to everyone who helped build a brand new futsal court at Menlo Avenue Elementary…" +05/08/2018,Sports_celeb,@MiaHamm,RT @espn: This moment between Jrue Holiday and his daughter is everything 😍 https://t.co/cvu8nocYBb +05/06/2018,Sports_celeb,@MiaHamm,RT @ASRomaEN: Club president Jim Pallotta and all at #ASRoma are hoping and praying Sir Alex Ferguson makes a full and speedy recovery afte… +05/05/2018,Sports_celeb,@MiaHamm,RT @moyadodd: Another record broken.... 'cos nobody wants to watch women play football 😉⚽️❤️ #womensfootball https://t.co/BQLWfZ7B2i +05/05/2018,Sports_celeb,@MiaHamm,"RT @AimeeCho4: ""I'M JUST SO THANKFUL"": 19-year-old leukemia survivor Carly Nguyen meets Gerard Bao, the bone marrow donor who saved her lif…" +05/04/2018,Sports_celeb,@MiaHamm,"RT @TourdePier: 12-year-old, 2-time cancer fighter Marley & her family know that the Tour de Pier is more than just an event, it is an amaz…" +05/02/2018,Sports_celeb,@MiaHamm,Congrats!! https://t.co/6KDBpAOwKQ +05/02/2018,Sports_celeb,@MiaHamm,RT @LAFC: Skydive into our home-opener at @BancStadium with the @NavyLeapFrogs! https://t.co/VWLCLV7S23 +05/01/2018,Sports_celeb,@MiaHamm,RT @LAFC: #LAFC and @LAFC3252 do not support or condone the use of offensive language and inappropriate chants. We stand shoulder to should… +04/30/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: I was told Mia is the only female owner in @MLS when in fact there are 3 others (& hopefully that # keeps growing). Kay Raw… +04/30/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Los Angeles, we’re home. + +#LAFCComesHome https://t.co/Fkvu9ShVxM" +04/30/2018,Sports_celeb,@MiaHamm,"RT @BeastModeSoccer: Today we said goodbye, but we know you will always be with us. You made me a better person. Siempre mi hermano. #LoveT…" +04/30/2018,Sports_celeb,@MiaHamm,"RT @LAFC: #LAFCvSEA Player spotlight @LaurentCiman23 + +Presented by @McDonalds https://t.co/rJQ82EGtzP" +04/29/2018,Sports_celeb,@MiaHamm,Game day @LAFC and @BancStadium ! Can't wait to hear @LAFC3252 at our home. We are LAFC! +04/29/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Where to watch #LAFCvSEA + +📆 Today, 4/29 +⏰ 6 PM +📺 @FS1 (ENG) +📺 @FOXDeportes (SP) +📻 @ESPNLosAngeles 710 (ENG) +📻 @980lameramera (S…" +04/29/2018,Sports_celeb,@MiaHamm,RT @PeterGuber: our goal has been to make @LAFC a club that reflects the lifeblood of #LosAngeles … the creativity resilience energy and pa… +04/29/2018,Sports_celeb,@MiaHamm,RT @pkedit: Friday's Tigres-Monterrey game (Liga MX Femenil) set a modern record for the largest crowd at a domestic women's match. Seven o… +04/28/2018,Sports_celeb,@MiaHamm,"RT @socceramerica: Sarina Wiegman, former @ncwomenssoccer teammate of @MiaHamm of @KristineLilly, is steering Dutch women's team to new hei…" +04/28/2018,Sports_celeb,@MiaHamm,"RT @T3Aus: The legends are humble. And that’s why they’re greats of the game + +“When I was 13 years old, my father fled his salary for 3 mon…" +04/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: In loving memory of #23 Tommy Mark, an original member of the first @LAFCAcademy team in Club history. + +To donate to the Tommy M…" +04/27/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: This is the real stuff from @Jrue_Holiday11! When you know what matters and you infuse love into everything you do, you…" +04/27/2018,Sports_celeb,@MiaHamm,RT @NBCSports: .@usahockey's @HilaryKnight showed her grandma her gold medal and the reaction was ❤️❤️ https://t.co/HGON4jly51 +04/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC3252: Thanks for the housewarming party @lafc, you haven’t seen anything yet. On Sunday, Los Angeles will never be the same. +#Shou…" +04/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Let's all have fun on Sunday. + +Please be safe and respectful and abide by the Fan Code of Conduct. + +📰 https://t.co/4OjyCSwQX2 + +#L…" +04/25/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: So grateful for moments like this one from February, 2017. My thoughts and prayers are with Dick’s family. His wife is o…" +04/25/2018,Sports_celeb,@MiaHamm,RT @11carlosV: Estoy listo para jugar con los @Dodgers ⚾️⚾️⚾️ ( no la llegue 🤣🤣🤣) https://t.co/s9djTY6CPD +04/25/2018,Sports_celeb,@MiaHamm,"RT @JulieFoudy: Yes indeed. And all for a great cause. Maybe even @brandichastain will re-enact Rose Bowl July 10, 1999. #justsayin https:/…" +04/23/2018,Sports_celeb,@MiaHamm,"RT @LAFC: What's in store at our home-opener this Sunday. + +The #LAFC Watch Party at @BancStadium, presented by @Delta and @Aeromexico https…" +04/22/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Shoulder to shoulder at @BancStadium + +#LAFC https://t.co/MB4p95X2JR" +04/22/2018,Sports_celeb,@MiaHamm,RT @BeastModeSoccer: Thank you @LAGalaxy for Tommys minute of applause. Respect 👊 https://t.co/WjESffJ4NW +04/22/2018,Sports_celeb,@MiaHamm,"RT @DiCiccoMethod: When she played she didn’t talk much. But when she did, her teammates listened. Now, she doesn’t tweet much, but Joy is…" +04/21/2018,Sports_celeb,@MiaHamm,RT @frankmSounders: #OTD 1998 – FIFA announce that Seattle's Michelle Akers–still an active player who would win a 2nd WC a year later–to r… +04/21/2018,Sports_celeb,@MiaHamm,RT @LAFC: LAFC complete the comeback in Montreal to end a six-game road trip with four wins. https://t.co/s5FuvzTXkm +04/21/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Fulltime whistle. + +#MTLvLAFC 3-5 https://t.co/nudVKqSNsV" +04/21/2018,Sports_celeb,@MiaHamm,RT @WSUasa: Kelly Smith has Chance to Score and then Heads the ball to Raul to score the opening Goal in the Match for Solidarity featuring… +04/21/2018,Sports_celeb,@MiaHamm,RT @ussoccer_wnt: RT if this made you smile 😊 https://t.co/NbCvv20XBn +04/20/2018,Sports_celeb,@MiaHamm,RT @RobStoneONFOX: This hurts. Bad. https://t.co/4jHGNtvlD9 +04/20/2018,Sports_celeb,@MiaHamm,RT @LAFC3252: The time has finally arrived! Meet your fellow #LAFC supporters as The 3252 marches with chants and drums into our new home b… +04/20/2018,Sports_celeb,@MiaHamm,"RT @UEFA: Tomorrow, a galaxy of stars, both men and women, will line up in support of charity at the first ever #MatchForSolidarity in Gene…" +04/20/2018,Sports_celeb,@MiaHamm,RT @TomPennLAFC: The Banc getting louder and louder by the second! #LAFC #the3252 https://t.co/Iz9ezO3Ul6 +04/19/2018,Sports_celeb,@MiaHamm,RT @ussoccerfndn: ICYMI- #USWNT stars @lindsaytarpley and @LoriLindsey6 recently joined our team as ambassadors! Check out their bios: http… +04/18/2018,Sports_celeb,@MiaHamm,"RT @ExpoOriginals: We are heartbroken to hear of the passing of young Tommy Mark + +Tommy was an LAFC Academy original, responsible for some…" +04/18/2018,Sports_celeb,@MiaHamm,RT @MayorOfLA: L.A. is a global sports capital — and a city where teams find a home and put down roots. Congratulations @LAFC on opening yo… +04/18/2018,Sports_celeb,@MiaHamm,RT @LAFC: First training at @BancStadium 👌 https://t.co/IddtoXpwuA +04/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: We couldn't have done this without you, @MayorOfLA! https://t.co/TF1k2LBrcf" +04/18/2018,Sports_celeb,@MiaHamm,RT @MagicJohnson: .@LAFC @BancStadium https://t.co/HirIe51IDP +04/18/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Good to be home. + +#LAFC https://t.co/EqxAaeWinL" +04/18/2018,Sports_celeb,@MiaHamm,RT @BarackObama: Our statement on the passing of Former First Lady Barbara Bush: https://t.co/MhTVYCL9Nj +04/18/2018,Sports_celeb,@MiaHamm,RT @matthewamiller: This was such a moving tribute by @NicolleDWallace. https://t.co/HXAAfcGrLz +04/18/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: Tomorrow. Register for this one. Can't begin to tell you how much I've learned from @BeastModeSoccer over the past 5 yea… +04/17/2018,Sports_celeb,@MiaHamm,We will be cheering you on! Go USA! https://t.co/DjLWINEkeU +04/17/2018,Sports_celeb,@MiaHamm,"RT @AlyssaNaeher: Absolutely one of the best, love this! 🙌😊 https://t.co/De56GCsKdH" +04/17/2018,Sports_celeb,@MiaHamm,"RT @TeamUSA: In true @TatyanaMcFadden fashion, the Paralympic legend claims her 5️⃣TH #BostonMarathon win AND record-setting 22nd victory i…" +04/16/2018,Sports_celeb,@MiaHamm,"RT @NBCOlympics: .@TatyanaMcfadden wins her 5th #BostonMarathon push rim race! + +Catch all the action NOW on @NBCSN https://t.co/7X5j8UX9gM" +04/15/2018,Sports_celeb,@MiaHamm,RT @DiCiccoMethod: https://t.co/P6CthFCVJF +04/14/2018,Sports_celeb,@MiaHamm,RT @LAFC: Back on track. https://t.co/rpcahyYJ9K +04/12/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: Less than 4 weeks away from our camp in Knoxville, TN. Let's keep the momentum going from our great camp last weekend in H…" +04/12/2018,Sports_celeb,@MiaHamm,"RT @LAFC: One Club. One family. + +#LAFC https://t.co/9snowhXE4k" +04/11/2018,Sports_celeb,@MiaHamm,RT @Yael_Averbuch: Our game on May 5 in Portland is part of a fundraiser for the Crohn’s & Colitis Foundation! Nearly 1 in 200 Americans li… +04/11/2018,Sports_celeb,@MiaHamm,RT @sethmeyers: Just the best https://t.co/P2RU7UD2vj +04/11/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Talia!!!!!! https://t.co/dXxCoN1ptP +04/10/2018,Sports_celeb,@MiaHamm,"RT @ASRomaEN: 83' - GOOOOOOOAAAAAAAAAAALLLLLLLLLLLL!!!!!!!!!!!! KOOOOOOSTTAAAAASSSS!!!!!! YEEEEEEEEEEEEEESSSSSSSSS!!!!!!!!!!! + +#RomaBarca…" +04/10/2018,Sports_celeb,@MiaHamm,RT @LRUWSOC: Amazing experience having the @TeamFirstSA on LR's campus this weekend. 🐻⚽️ #teamfirst #gobears #soccerlegends @KristineLilly… +04/09/2018,Sports_celeb,@MiaHamm,"RT @TeamFirstSA: Thank you Hickory! What an awesome weekend of camp. Swipe➡️to see our campers of the day,… https://t.co/h1UEymt3Er" +04/08/2018,Sports_celeb,@MiaHamm,RT @ChancellorFolt: Today friends & family came together to celebrate & remember the remarkable life & legacy of the legendary Woody Durham… +04/08/2018,Sports_celeb,@MiaHamm,Congrats @CarliLloyd on 100. Amazing accomplishment. Go USA! +04/08/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: This is amazing. Coyner!!!! https://t.co/H8gB07nOQi +04/07/2018,Sports_celeb,@MiaHamm,"RT @MonAfterMasters: The Dye Club at Barefoot Resort is looking 💯 per usual! Getting ready for the MOST FUN DAY of the YEAR! +#MAM2018 https…" +04/07/2018,Sports_celeb,@MiaHamm,RT @JSB_TV: I used to live in Saskatchewan and cover the Humboldt Broncos. I always felt enveloped in the widespread love and support from… +04/06/2018,Sports_celeb,@MiaHamm,RT @moyadodd: Another historic moment in Jordan ... the Women's Asian Cup comes to West Asia #WAC2018 ⚽️❤️ https://t.co/dgUQjrVZI1 +04/05/2018,Sports_celeb,@MiaHamm,Here we go @ussoccer_wnt ! +04/05/2018,Sports_celeb,@MiaHamm,"RT @EPFinitiative: After a 90km football trek across Jordan to promote gender equality in sport, on April 5 we’ll play a match at the lowes…" +04/05/2018,Sports_celeb,@MiaHamm,"RT @NWSL: Raise your hand if you're ready for #USAvMEX tonight. + +⏰ 7:30 p.m. ET +🏟️ @EverBankField +📺 @FS1/UDN + +🇺🇸 roster: https://t.co/w…" +04/05/2018,Sports_celeb,@MiaHamm,RT @EPFinitiative: It’s game day! 🇺🇸: Tune into @SportsCenter at 745am ET/145pm Jordan time see our players right before we kickoff and set… +03/31/2018,Sports_celeb,@MiaHamm,RT @LAFC: .@LAFC3252 is ready 👌 https://t.co/2lSC0NlBt8 +03/31/2018,Sports_celeb,@MiaHamm,RT @NWSL: #NWSL ❌ 3️⃣ for you today. https://t.co/dxwAVJCdA2 +03/31/2018,Sports_celeb,@MiaHamm,RT @MyaMelody7: I really hope more people become familiar with @gracewebermusic.. her new track is heavenly. https://t.co/gSYpjF47Ov +03/31/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Have fun tomorrow. + +Be loud and be safe. ✌️ https://t.co/wOUM3zObe3" +03/28/2018,Sports_celeb,@MiaHamm,Legend! https://t.co/7m7PhNnyHn +03/28/2018,Sports_celeb,@MiaHamm,RT @MLS: Happy birthday to the one and only Matt Reis! 🎉 https://t.co/nbybB5gQjp +03/28/2018,Sports_celeb,@MiaHamm,"RT @LAFC: Come by to grab some #LAFC gear and meet @Tymiller01, @thewalkerzim, @CMallace10, and @aokovar! https://t.co/4dgMYTl82q" +03/27/2018,Sports_celeb,@MiaHamm,"RT @LAFC: .@AndreHorta8 is Black & Gold. + +@SLBenfica ➡️ #LAFC + +📰 https://t.co/SYO2IrENp1 https://t.co/HEaQUh5mKo" +03/27/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_mnt: Good morning from Cary! Settle in for 90 minutes tonight on @FS1, @UniMas & UDN. Match preview » https://t.co/nmrZl5qQ6t…" +03/27/2018,Sports_celeb,@MiaHamm,"RT @SoccerGrlProbs: #Repost @rubytex.soccer +・・・ +Who else is PUMPED for the new SGPxNIKE shirts?! 🙋🏼😍Go get yours at https://t.co/iwaPWut5j…" +03/26/2018,Sports_celeb,@MiaHamm,RT @RobinRoberts: Incredibly thankful to all those who register to be a bone marrow donor. Unfortunately almost half don't go through w/ th… +03/25/2018,Sports_celeb,@MiaHamm,"RT @SportsCenter: Not long after leading Butler to back-to-back NCAA title games, Andrew Smith lost his fight with cancer. Today his legacy…" +03/25/2018,Sports_celeb,@MiaHamm,RT @longlivekcx: I know for a fact coach feis would be so proud of all of us. https://t.co/xySzuB5tBW +03/24/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Good morning. +I’m really trying not to sing @BenSPLATT’s part today. +#MarchForOurLives #FoundTonight https://t.co/nScP5kDX…" +03/24/2018,Sports_celeb,@MiaHamm,RT @mariaCBS5: Meet Baby Bruno. He was born with a rare immunodeficiency condition that attacks the blood cells. Only a bone marrow transpl… +03/24/2018,Sports_celeb,@MiaHamm,RT @longlivekcx: happy birthday to this sweet angel. Today I march for you. #marchforourlives #neveragain https://t.co/fc6cfAFImh +03/23/2018,Sports_celeb,@MiaHamm,RT @NCFC_Youth: We're excited to welcome former @ussoccer_wnt team player and @NWSL coach @cone_cindy as the newest member of our #NCFCFam!… +03/23/2018,Sports_celeb,@MiaHamm,RT @alywagner: And so it begins. 🤩 https://t.co/XJLyaH5Ip7 +03/22/2018,Sports_celeb,@MiaHamm,"RT @ussoccer_wnt: ⏰ 92nd minute +⚖️ Tie game +🤯 @laurenholiday12 + +#USAvMEX renews two weeks from tonight in Jacksonville » https://t.co/Tg55m…" +03/22/2018,Sports_celeb,@MiaHamm,RT @Lin_Manuel: Yeah we will. #MarchForOurLives https://t.co/wIm1YjjEHP +03/21/2018,Sports_celeb,@MiaHamm,RT @JulieFoudy: Go get it sister! This is so great... congrats! https://t.co/eUsO6nqdkV +03/21/2018,Sports_celeb,@MiaHamm,RT @Austin_Police: APD is asking the public to remain vigilant and report anything suspicious. If you come across ANYTHING that looks suspi… +03/21/2018,Sports_celeb,@MiaHamm,RT @SportsCenter: He's waited his whole life for this moment! #SCtop10 https://t.co/rSIFefLNAC +03/21/2018,Sports_celeb,@MiaHamm,RT @mduggan10: 👏🏻👏🏻👏🏻👏🏻 https://t.co/q7iNUqv5Rd +03/20/2018,Sports_celeb,@MiaHamm,"RT @BeTheMatch: In 2016, Riley was diagnosed with Acute Lymphoblastic Leukemia (ALL) and is searching for her match. Riley is known for he…" +03/20/2018,Sports_celeb,@MiaHamm,"RT @Lin_Manuel: Good morning 🌍! +Here's the music video for Found/Tonight, your March #Hamildrop! +#MarchForOurLives #FoundTonight +https://t…" +06/23/2018,Sports_celeb,@HollyHolm,Such a fun day!!!! Getting dunked with my peeps @JacksonWinkMMA for incredablemma . https://t.co/6GJ4iUJOkv +06/23/2018,Sports_celeb,@HollyHolm,Come join me now @JacksonWinkMMA !! Fundraiser for incredablemma ! I’ll be there til 2! I’m getting dunked in the d… https://t.co/287YDzcS2h +06/23/2018,Sports_celeb,@HollyHolm,⚔️ 🗡 🤷🏼‍♀️🤷🏼‍♀️ https://t.co/bINNy9UgbG +06/22/2018,Sports_celeb,@HollyHolm,My first time to do 3 muscle ups in a row and I was just kinda proud. Now time to work on 4.. 😁 #flexfriday teamtur… https://t.co/LTRbiEvTNx +06/22/2018,Sports_celeb,@HollyHolm,My first time to do 3 muscle ups in a row and I was just kinda proud. Now time to work on 4.. 😁 #flexfriday teamtur… https://t.co/tWQnPgfJSc +06/21/2018,Sports_celeb,@HollyHolm,I was told it was as #internationalselfieday… https://t.co/VB2b22H9PJ +06/21/2018,Sports_celeb,@HollyHolm,Suuuuuuper duuuuuper movie!!!! Got to watch… https://t.co/JPzNSWGKcx +06/19/2018,Sports_celeb,@HollyHolm,These Sandia mountains have the best trails. I… https://t.co/eqBxOtV8rN +06/19/2018,Sports_celeb,@HollyHolm,These Sandia mountains have the best trails. I… https://t.co/Kq1sy6mhn9 +06/17/2018,Sports_celeb,@HollyHolm,Happy Father’s Day:) I was blessed with the… https://t.co/z5EsFrputT +06/16/2018,Sports_celeb,@HollyHolm,POSTPONED!!!!!! incredablemma is having a… https://t.co/GMgMhTsqUV +06/15/2018,Sports_celeb,@HollyHolm,I’m getting dunked tomorrow at noon for Adaptive… https://t.co/mfnxwhg06A +06/13/2018,Sports_celeb,@HollyHolm,Feeling happy and enjoying my Wednesday. Wishing… https://t.co/3BeQuv2meo +06/11/2018,Sports_celeb,@HollyHolm,🚤 #sundayfunday https://t.co/Vru60H9lDO +06/10/2018,Sports_celeb,@HollyHolm,Too much love ❤️ https://t.co/Gncqm1weg5 +06/10/2018,Sports_celeb,@HollyHolm,Not enough words to express. I just love my… https://t.co/Wzg3ICHJZm +06/07/2018,Sports_celeb,@HollyHolm,Best open workout partner.....EVER!! #ufc225… https://t.co/VFWBeW0YKg +06/07/2018,Sports_celeb,@HollyHolm,Best open workout partner....... EVER!!!!… https://t.co/cAh3s4XbzL +06/05/2018,Sports_celeb,@HollyHolm,Leaving to Chicago with good feels 🤗 thank you… https://t.co/DuO1qz9ugz +06/02/2018,Sports_celeb,@HollyHolm,Best coach in the world. 👊🏼@mmacoachwink .. last… https://t.co/GwKfs96MRY +05/25/2018,Sports_celeb,@HollyHolm,My little lion 🦁 https://t.co/4OcjZypxdp +05/23/2018,Sports_celeb,@HollyHolm,Just finished a great run in the foothills in… https://t.co/j6BsGN5Sx7 +05/22/2018,Sports_celeb,@HollyHolm,Hope everyone is having a Great Monday! Hope you… https://t.co/ZzRrP8bjV5 +05/01/2018,Sports_celeb,@HollyHolm,“What do you do for strength training?” Is always a common question. I do a… https://t.co/GkXieQCJNt +04/25/2018,Sports_celeb,@HollyHolm,Can’t tell you how much I appreciate the gifts! I am ready to get to work! Here are some… https://t.co/t9TVjimmjE +04/24/2018,Sports_celeb,@HollyHolm,On my way to the local press conference to talk about my upcoming fight #ufc225 in Chicago June… https://t.co/82fb8pNlqA +04/17/2018,Sports_celeb,@HollyHolm,My bud. https://t.co/zLQOxvioHR +04/15/2018,Sports_celeb,@HollyHolm,We here! @jtimberlake #cantstopthefeeling https://t.co/M0mVVwexOR +04/13/2018,Sports_celeb,@HollyHolm,Thursday night looks a little like this 😜 I know I’ve said it a ton ...but... I’ll say it… https://t.co/d3p7A0d30F +04/11/2018,Sports_celeb,@HollyHolm,#happysiblingsday best friends since day one. I am blessed. 🙂they even loved me even when I had… https://t.co/VgqW2ZzUBA +04/04/2018,Sports_celeb,@HollyHolm,"I loved being part of @tiffanyandco and sharing what I feel is strength.. +Strength has many… https://t.co/ghG3qxJOb0" +03/30/2018,Sports_celeb,@HollyHolm,Such a tragedy. Our friends are looking for their son. They went to Fort Morgan for spring break… https://t.co/qkXSPtupUC +03/30/2018,Sports_celeb,@HollyHolm,Late night boxing rounds with the team. Love this team... this family 🙂 https://t.co/JBVPzaz5zM +03/29/2018,Sports_celeb,@HollyHolm,RT @IzzyStyle: Who wants to wrestle on new @DollamurWrestle mats? @HollyHolm @JonnyBones @Cowboycerrone @Showtimepettis @sergiopettis @FloW… +03/26/2018,Sports_celeb,@HollyHolm,My credit card got stolen yesterday and I totally forgot I cancelled it until I went to pay for… https://t.co/mfzLIKxxJt +03/23/2018,Sports_celeb,@HollyHolm,Friends for over 30 years. #blessed with these beautiful souls kaholden3 irishpacker13 https://t.co/H4oJH3D1vn +03/03/2018,Sports_celeb,@HollyHolm,#bootcamp #coaches teamturningpoint shandadiantonio eatfitabq 💪🏼👊🏼🏋️ https://t.co/e7rIxhfizD +02/25/2018,Sports_celeb,@HollyHolm,And just like that. State champions. So proud. @IzzyStyle @mikeb197 @reaIwoods @joeymelendez33… https://t.co/eymMseiGx5 +02/21/2018,Sports_celeb,@HollyHolm,@paulbuceta 📷 https://t.co/eL34u0eHSh +02/19/2018,Sports_celeb,@HollyHolm,My Monday challenge. My first time trying these. Give it a go sometime !:) #mondaymotivation https://t.co/fcj8JwCHHa +02/18/2018,Sports_celeb,@HollyHolm,Yes. Yes to all of this. 👊🏼 thinking of all my teammates tonight. @cowboycerrone @goutithibault… https://t.co/Krs9BvJWZt +02/13/2018,Sports_celeb,@HollyHolm,Feeling a little sluggish today but not every day feels great... no excuses. came in to get some… https://t.co/aVxC75f7m7 +02/12/2018,Sports_celeb,@HollyHolm,Monday 👊🏼 yanamma @JacksonWinkMMA https://t.co/YJysE7GYtc +02/12/2018,Sports_celeb,@HollyHolm,📝 Note to self..... don’t lay on the closet floor in the middle of putting laundry away. You… https://t.co/L1bBRMDCte +02/10/2018,Sports_celeb,@HollyHolm,Yum yum!! Homemade egg rolls for my Friday night!! Thank you Kim! I’m going home to cook these… https://t.co/Ap0L1upN0c +02/08/2018,Sports_celeb,@HollyHolm,Talk about a throwback... here’s my #tbt ... Ran out of time to share more but this is a great… https://t.co/GNPPlLkfdp +02/07/2018,Sports_celeb,@HollyHolm,My finisher for today. Give it a try sometime! 👊🏻 thank you teamturningpoint @alexgard51 https://t.co/vmnrbwJbEL +02/05/2018,Sports_celeb,@HollyHolm,Going to the @jtimberlake concert in Vegas and this halftime show got me wishing April was here… https://t.co/gywGiZiYJG +02/04/2018,Sports_celeb,@HollyHolm,My big brother. Looking out for me since day one. https://t.co/HH3S4UTfrN +02/04/2018,Sports_celeb,@HollyHolm,Meeting up with some of our roots from Iowa. https://t.co/i7BBxULEEe +02/03/2018,Sports_celeb,@HollyHolm,#saturdayvibes https://t.co/2e8iFrdQ3D +02/03/2018,Sports_celeb,@HollyHolm,Fans from the beginning. Brought memories of a pivotal fight in my boxing career. Thank you for… https://t.co/LkyGuWzt3l +02/02/2018,Sports_celeb,@HollyHolm,Come see me at bluecloverdistillery tomorrow and Saturday. (Feb 2nd and 3rd). If you come find… https://t.co/fcRFVvSnKX +01/31/2018,Sports_celeb,@HollyHolm,😁 https://t.co/jys0BRlVo1 +01/31/2018,Sports_celeb,@HollyHolm,Smiling but really we are hurting inside. 😜 love these faces https://t.co/2NyBGxddpS +01/28/2018,Sports_celeb,@HollyHolm,Sporting my hat for bluecloverdistillery Excited to go to scottsdale this weekend!!! Come join… https://t.co/6Erd3WGfW2 +01/27/2018,Sports_celeb,@HollyHolm,I absolutely love meeting new people. Especially when they are simply fabulous. 😊 I really did… https://t.co/FYdw2wlgMM +01/26/2018,Sports_celeb,@HollyHolm,Haven’t been here since my UfC debut. Memories .... https://t.co/w67aLmXqOe +01/23/2018,Sports_celeb,@HollyHolm,Frisbee with the team is about to go down. https://t.co/6OmcI5TH9q +01/23/2018,Sports_celeb,@HollyHolm,Looking forward to my workouts today👊🏻 #teamhitech hitechpharma https://t.co/urKeqBKYeA +01/21/2018,Sports_celeb,@HollyHolm,It’s a beanie and coffee kind of day. Well... every day is a coffee kind of day 😜 but it seems… https://t.co/24Kn3lBbs2 +01/20/2018,Sports_celeb,@HollyHolm,A throwback for treesa321 birthday from our epic trip to Cancun. Love you T! https://t.co/M7VtQwvTae +01/16/2018,Sports_celeb,@HollyHolm,My Monday night.... watching Ratatouille and eating ice cream sandwich...es. 😬😋 and yes....… https://t.co/bES3rZVUto +01/13/2018,Sports_celeb,@HollyHolm,#teamhitech hitechpharma https://t.co/ahKuC7jFOv +01/07/2018,Sports_celeb,@HollyHolm,Ice cream date with these special girls 😊 https://t.co/IIPmQFit24 +01/06/2018,Sports_celeb,@HollyHolm,Winks Gym on Paseo Del Norte and Wyoming! 9 am. Be there! Get a good workout in to start your… https://t.co/NZ0vm4pY1m +12/28/2017,Sports_celeb,@HollyHolm,Fight week #ufc219 @ufc https://t.co/mf1mPFrA8s +12/25/2017,Sports_celeb,@HollyHolm,Merry Christmas 🎄 🎁!! @JacksonWinkMMA https://t.co/PxXXIpqONW +12/25/2017,Sports_celeb,@HollyHolm,Love these girls and this time of year❤️ https://t.co/4cgjwWc3rW +12/24/2017,Sports_celeb,@HollyHolm,My team. My coaches. This is only a portion of who has helped me prepare. My whole team is the… https://t.co/p8myXgPc7W +12/22/2017,Sports_celeb,@HollyHolm,34 degrees and dark but I actually enjoyed my late night run. #teamhitech hitechpharma https://t.co/PUQ77MTSps +12/08/2017,Sports_celeb,@HollyHolm,A little core finisher work for #flexfriday. Try it sometime. 👊🏻 today’s finisher was 4 sets of… https://t.co/7m4z70yeWW +12/08/2017,Sports_celeb,@HollyHolm,A little core finisher work for #flexfriday. Try it sometime. 👊🏻 today’s finisher was 4 sets of… https://t.co/0nLMeqiT9l +12/02/2017,Sports_celeb,@HollyHolm,3 Manzano High graduates ! Sending love to the Monarchs in their championship football game… https://t.co/aZdULl9l2i +12/02/2017,Sports_celeb,@HollyHolm,I am surrounded by great people and I am always motivated by my team. Great night of fights at… https://t.co/kYs8oY6a2z +12/02/2017,Sports_celeb,@HollyHolm,"Did everyone else get the memo for nude heels, jeans and a taupe sweater? 🤔😉 swear it wasn’t… https://t.co/vAVX6n4LIX" +12/01/2017,Sports_celeb,@HollyHolm,JacksonWink fight night at Isleta tomorrow night! 7 pm. I promise you.... this fight card is… https://t.co/XDr5zW9x9q +12/01/2017,Sports_celeb,@HollyHolm,Quick 24 hour trip to Detroit. On my way back home to keep on the grind. Getting prepared for… https://t.co/CKYgI196rz +11/30/2017,Sports_celeb,@HollyHolm,"See you soon, Detroit. https://t.co/gTLoOulLww" +11/19/2017,Sports_celeb,@HollyHolm,Going live on Instagram tomorrow evening at 5:15 pm mountain time. check out how I got started… https://t.co/7KKbuXR6ad +11/13/2017,Sports_celeb,@HollyHolm,😎 😎😎 Finley styled my hair too 😉 https://t.co/xfjE3SP8fL +11/12/2017,Sports_celeb,@HollyHolm,When you're on your way to watch the fights and can't decide if it's warm or a little chilly...… https://t.co/PzYCFIa7QG +11/11/2017,Sports_celeb,@HollyHolm,I know it's super late I just wanted to post this picture from Mr. Olympia with the hitechpharma… https://t.co/ViATj6hNg7 +11/09/2017,Sports_celeb,@HollyHolm,I try to explain how great our team and coaches are. I always say they are my family. I say they… https://t.co/Kb1N9KQZmu +11/05/2017,Sports_celeb,@HollyHolm,Love to pester this guy at night. #goodthingheputsupwithme https://t.co/DeTYPzen2X +11/02/2017,Sports_celeb,@HollyHolm,I couldn't be more proud of you abreg_1 . Congratulations to you and the team. You have worked… https://t.co/4D3Dn1pvEd +10/27/2017,Sports_celeb,@HollyHolm,Great time getting to know @mjkeenan and watching him perform at Tingley Wednesday. Thank you… https://t.co/WjegN5AkPX +10/26/2017,Sports_celeb,@HollyHolm,#beforeandafter #sparring #teamhitech hitechpharma https://t.co/xAptApXpME +10/21/2017,Sports_celeb,@HollyHolm,Sending my love to Poland for my teammates tomorrow. I excited to see the hard work pay off. I… https://t.co/qX3foClspH +10/20/2017,Sports_celeb,@HollyHolm,"bluecloverdistillery .....Scottsdale, AZ. Getting closer and closer. I'll keep you updated on… https://t.co/xRUrtqGHc0" +10/20/2017,Sports_celeb,@HollyHolm,A little vacation workout. Gotta love humidity 😅 https://t.co/RcVbWIVlXO +10/18/2017,Sports_celeb,@HollyHolm,At Albuquerque Parq Central doing a podcast.... taking in the view of the sandias and loving… https://t.co/VHDpiFxAB1 +10/17/2017,Sports_celeb,@HollyHolm,When your mom comes over for dinner and brings more old photos. Yes I used to have a perm ;)… https://t.co/woSkZI7Ufr +10/11/2017,Sports_celeb,@HollyHolm,Wednesday wrestling practice 👊🏻 #jacksonwinkmma https://t.co/4ldmIz3ic8 +10/10/2017,Sports_celeb,@HollyHolm,A little down time between sparring and mitt work;) the most procrastinated project ever 😬 I… https://t.co/MH3gq6wE6v +10/06/2017,Sports_celeb,@HollyHolm,Some core work today #flexfriday hitechpharma #teamhitech 👊🏻 https://t.co/p11rQAZ5Rl +10/04/2017,Sports_celeb,@HollyHolm,My finishing set from my workout today. 30 second sprint… https://t.co/5YEMTojNQR +09/30/2017,Sports_celeb,@HollyHolm,It's Friday! 😁 Photo credit @paulbuceta MUA monicakalra https://t.co/nBmHXrmqqy +09/29/2017,Sports_celeb,@HollyHolm,It's Friday !!! 😁 photo credit @paulbuceta https://t.co/yp3u2MdlJP +09/29/2017,Sports_celeb,@HollyHolm,It's Friday!! 😁 photo credit @paulbuceta https://t.co/Zn1na2jbiP +09/25/2017,Sports_celeb,@HollyHolm,Finally got to trap @paulbuceta and get a photo shoot 😁 and awesome to meet @nicolemwilkins… https://t.co/fc77zND5om +09/25/2017,Sports_celeb,@HollyHolm,What a great weekend in Chicago @IzzyStyle grand reopening. It's always great to be here. Now… https://t.co/ulhJMXqrKK +09/16/2017,Sports_celeb,@HollyHolm,On my way to Mr Olympia! Come visit me at booth 512. I'll be there from 11-12:30 and 2-3:30. See… https://t.co/P8DeIflEy1 +09/14/2017,Sports_celeb,@HollyHolm,Going to be talking on JW Raw at noon mountain time today. Come join in on the Jackson Wink… https://t.co/eZnDek4f5B +09/14/2017,Sports_celeb,@HollyHolm,"I took 41 pictures of the kitties tonight.... don't worry, I'm only posting a handful. Hey… https://t.co/wFdN3xklEG" +09/07/2017,Sports_celeb,@HollyHolm,Doing a giveaway for the first person that can answer the question. I'll send the winner a… https://t.co/LfMe6GSr9x +09/06/2017,Sports_celeb,@HollyHolm,A little work from today. 👊🏻 https://t.co/rnh0vdaG4z +09/05/2017,Sports_celeb,@HollyHolm,My brothers are opening a restaurant/distillery and we are sporting our new bluecloverdistillery… https://t.co/Nxh31bzKBF +09/04/2017,Sports_celeb,@HollyHolm,Congratulations munzie03 and brandini26 😊 So blessed to be a part of your beautiful day. https://t.co/I6nZFiwUhz +09/01/2017,Sports_celeb,@HollyHolm,Congratulations yanamma 👊🏻👊🏻 all the hard work paid off. strong work team! @mmacoachwink… https://t.co/QIeVKNd5v3 +08/31/2017,Sports_celeb,@HollyHolm,I was recently given some tools from someone who knew I loved to do projects at home. Thought… https://t.co/KtrYN37WmN +08/30/2017,Sports_celeb,@HollyHolm,Great rounds this morning in wrestling. 👊🏻 https://t.co/Hjy9UtQPBw +08/29/2017,Sports_celeb,@HollyHolm,Doing some work with hitechpharma today. Hoping everybody is having a great Tuesday:) 👊🏻… https://t.co/pB3jECVHwY +08/29/2017,Sports_celeb,@HollyHolm,Getting some work in for hitechpharma today. Hope everyone is enjoying their Tuesday:)… https://t.co/ANI14JK7pj +08/26/2017,Sports_celeb,@HollyHolm,Some different variations of my ring workout today. Dips are getting a little weak at the end… https://t.co/M1vweUL8v3 +08/25/2017,Sports_celeb,@HollyHolm,I did this handstand drill on my story but wasn't long enough and some of you have asked for the… https://t.co/UrdmHtqFmp +08/16/2017,Sports_celeb,@HollyHolm,Good morning ☀️ I'll be going live on collide at 11:30 mountain time. Come join me. I'll be… https://t.co/rFTp44BWO9 +08/15/2017,Sports_celeb,@HollyHolm,Just finished some mitt work with @mmacoachwink at our gym here @JacksonWinkMMA and I'm excited… https://t.co/rjViaaEzkJ +08/15/2017,Sports_celeb,@HollyHolm,In between trainings. Enjoying my Tuesday and hoping everyone is enjoying their day as well.… https://t.co/QPgKU2e7Dt +08/07/2017,Sports_celeb,@HollyHolm,Just got done watching a private screening of The Hitman's Bodyguard with my friends and family.… https://t.co/RXzfuyKXKx +08/04/2017,Sports_celeb,@HollyHolm,👊🏻 https://t.co/p22hMxyrHq +08/04/2017,Sports_celeb,@HollyHolm,Come join me on collide today at 3 pm mountain time !👊🏻👊🏻 download the app and follow me:) https://t.co/hTv54Zh1rf +08/02/2017,Sports_celeb,@HollyHolm,Been doing busy work all day... now off to the gym. Ready to get some of my kind of work in 👊🏻… https://t.co/otQlUnfpsj +07/28/2017,Sports_celeb,@HollyHolm,Hey guys. I am here in Anaheim and Getting pumped for the weekend - be sure to download the… https://t.co/7vPG8ho1FD +07/13/2017,Sports_celeb,@HollyHolm,HAPPY BIRTHDAY gallegos.megan !!!!!!!!! 🎉 🎈 https://t.co/Aq7f47XngL +07/12/2017,Sports_celeb,@HollyHolm,I am extremely proud of @Wrestlingzlife . He has worked so hard and put so much passion into his… https://t.co/0eMnCknKXI +07/04/2017,Sports_celeb,@HollyHolm,Happy 4th everybody! 🇺🇸 I love this country. Have a blessed day. #america https://t.co/k7I9fNuRzn +07/01/2017,Sports_celeb,@HollyHolm,2 for 2.... even with that ugly swing😂 just doing a lil demo work for my brothers restaurant and… https://t.co/Uw3u2CScMu +06/28/2017,Sports_celeb,@HollyHolm,I'm back on the grind trying to be ready for whatever is next. Thank you for your constant… https://t.co/f3LTody1GW +06/24/2017,Sports_celeb,@HollyHolm,Home sweet home. Buster loves taking photos 😜 https://t.co/wfeLssFcil +06/18/2017,Sports_celeb,@HollyHolm,Some of the many beautiful views at the Marina Bay Sands in Singapore. I can't help but feel… https://t.co/s15YHgkjwx +06/15/2017,Sports_celeb,@HollyHolm,One last run around the bay. #ufc #singapore https://t.co/6q2J5RNB0k +06/15/2017,Sports_celeb,@HollyHolm,This guy. Always good to see my friend… https://t.co/gxndMuyud7 +06/13/2017,Sports_celeb,@HollyHolm,"#Repost @IzzyStyle (via @repostapp) +・・・ +Singapore 🇸🇬 #teamholm #izzystyle #barataplata https://t.co/S4yJGhc5IN" +06/12/2017,Sports_celeb,@HollyHolm,Lunch with my favorite ninja and an amazing view over Singapore ... izzystyle where are you ? https://t.co/gkv7eQUyAc +06/11/2017,Sports_celeb,@HollyHolm,Went for a little evening run here in Singapore and found myself running by an orchestra as I… https://t.co/eSNt5nj00M +06/05/2017,Sports_celeb,@HollyHolm,Working with the best coach in the world. @mmacoachwink and thanks for the photobomb… https://t.co/5LvIFfJhaR +06/03/2017,Sports_celeb,@HollyHolm,Happy Saturday from Buster and I 🐱 https://t.co/pcwfHWFxbI +05/19/2017,Sports_celeb,@HollyHolm,A little fuel before the afternoon workouts. #teamhitech hitechpharma https://t.co/A8fOqyuTjn +05/15/2017,Sports_celeb,@HollyHolm,Met my family for lunch..... and left with some old memories. Rocked some pretty awesome haircuts 😜 https://t.co/L3Fnti0DgO +05/14/2017,Sports_celeb,@HollyHolm,Riding to the fights in style. 9 #gangsters.... 1 golf cart. @cowboycerrone @IzzyStyle… https://t.co/5cU6uJRcij +05/10/2017,Sports_celeb,@HollyHolm,On my way to Sandia BMW to take care of some things. They're always taking care of me 😀 it's… https://t.co/W5vU9H4dbz +05/10/2017,Sports_celeb,@HollyHolm,"Middle of the week grind. 👊🏻 #Repost @celinehaga (via @repostapp) +・・・ +Wednesday is without a… https://t.co/ey3AqCX4q4" +05/05/2017,Sports_celeb,@HollyHolm,I'd say a little change in weather from Saturday... enjoying all that Albuquerque has to offer. https://t.co/rRnhjhMFrY +04/17/2017,Sports_celeb,@HollyHolm,Proud to wear my @karatehottiemma shirt. I admire the person she is and she definitely motivates… https://t.co/Tr8NXRxR6t +04/14/2017,Sports_celeb,@HollyHolm,All awesomeness in the picture #freckles #redhead #graciebarra #brazilpants #lululemon #pilates… https://t.co/2H04g8N1x6 +04/10/2017,Sports_celeb,@HollyHolm,Happy siblings day to the two that have supported me through thick and thin my entire life. Have… https://t.co/OJ4k02sy7A +04/08/2017,Sports_celeb,@HollyHolm,Team👊🏻 no excuses.... How can you not learn from this group? I love my @jacksonwinkmma and… https://t.co/fWesFsqEM3 +03/29/2017,Sports_celeb,@HollyHolm,Up to 80 degrees last week and this morning there is snow. Albuquerque spring is always… https://t.co/9nVFYmc4Km +03/28/2017,Sports_celeb,@HollyHolm,"A hot shower, ice cold water... and my Recovery Pump boots are just what the doctor ordered. Is… https://t.co/QIKeqK8YEx" +03/26/2017,Sports_celeb,@HollyHolm,My heart is happy. 😊 way to go @jodieesquibel !!! much love little sister. https://t.co/WH65PnJAvU +03/21/2017,Sports_celeb,@HollyHolm,This world is full of beautiful people and I really do love my homies with extra chromies ❤… https://t.co/sSyM5AP5YE +03/20/2017,Sports_celeb,@HollyHolm,Clowning around at the PBR. It wouldn't be the same without Flint. Always a good time. pbr #pbr https://t.co/BRjhiOU01K +03/20/2017,Sports_celeb,@HollyHolm,"Just finished a private screening for the movie ""Life"". Not only was the movie good but I got to… https://t.co/srLHqHRsXq" +03/18/2017,Sports_celeb,@HollyHolm,Happy St. Patty's Day everybody! Enjoy your night! ☘️🍀 #stoat ricksday #stpattysday #irish https://t.co/KiQm6tKAYG +03/17/2017,Sports_celeb,@HollyHolm,Who's ready for Friday? I'm sore and I am definitely feeling this week's training...... so I… https://t.co/KIwaa4pX9X +03/13/2017,Sports_celeb,@HollyHolm,Sandia BMW... still loving the 435. 🎶 https://t.co/5S1lb7ynU2 +03/08/2017,Sports_celeb,@HollyHolm,A little strength and conditioning for my afternoon👊🏻 thank you teamturningpoint https://t.co/TU8nnY3GZo +03/01/2017,Sports_celeb,@HollyHolm,Hanging out in my new @GrrrlClothing before I head to my next workout. When the weather can't… https://t.co/dOFi1RUrj2 +02/23/2017,Sports_celeb,@HollyHolm,#ninjaskills with eatfitabq and @jodieesquibel . 👊🏻👊🏻 https://t.co/HokqN2b90v +02/21/2017,Sports_celeb,@HollyHolm,A little of my strength and conditioning today. Getting back in the swing of things. https://t.co/KTYeEl2kX1 +02/21/2017,Sports_celeb,@HollyHolm,Back from Peru and excited for training tomorrow. I always look forward to coming back to the… https://t.co/XJeRUVvi18 +02/18/2017,Sports_celeb,@HollyHolm,Everybody keeps asking me if @ironladymma and I will rematch.......... I sure hope so. I know… https://t.co/bjnJX10cBX +02/10/2017,Sports_celeb,@HollyHolm,"I don't know if I should refer to him as my coach, my friend, or a legend.... but tell me he… https://t.co/eicmgia458" +02/08/2017,Sports_celeb,@HollyHolm,Super fun morning with some of my favorite people. Thank you @livekelly for having us! We had a… https://t.co/XXBTZOgPER +02/05/2017,Sports_celeb,@HollyHolm,"When you are trying to get ready and Buster thinks he's not getting enough attention.... ok,… https://t.co/p1a20pAVoJ" +02/05/2017,Sports_celeb,@HollyHolm,RT @mariashriver: Check out what my friend Trevor of @Moawad_Group says about the mind of a champion. Hint: its not just for athletes! http… +02/02/2017,Sports_celeb,@HollyHolm,hitechpharma thank you for a great year. I am excited for 2017! https://t.co/QxRuilBL8Q +01/20/2017,Sports_celeb,@HollyHolm,Still love this 435. https://t.co/Ufrg2CBKjv +01/14/2017,Sports_celeb,@HollyHolm,👊🏻 https://t.co/CF4hogysu8 +01/10/2017,Sports_celeb,@HollyHolm,Another day in the books. #teamhitech hitechpharma https://t.co/pdFO58wteV +01/04/2017,Sports_celeb,@HollyHolm,When your friends are your team and your team is going to do damage @jodieesquibel in invictafc… https://t.co/r1i8m7yoWu +01/04/2017,Sports_celeb,@HollyHolm,Tuesday night work with my ninjas 👊🏻👊🏻👊🏻 @baratafreitas @IzzyStyle @johndodsonmma https://t.co/eCeTE4Q83D +12/24/2016,Sports_celeb,@HollyHolm,Merry Christmas Eve from all of us at Winks gym!! 🎄☃️⛄️🎅🏻 https://t.co/h3rlhF05tO +12/22/2016,Sports_celeb,@HollyHolm,#ninjaskills with @thefranklester https://t.co/M0nhDRtquY +12/22/2016,Sports_celeb,@HollyHolm,Trying to learn from these badasses. Thank you for the rounds. @baratafreitas @jodieesquibel… https://t.co/jOMzCZpKqR +12/20/2016,Sports_celeb,@HollyHolm,I hope everyone is enjoying their Week leading up to Christmas. I wish you all a Merry Christmas… https://t.co/R2p6Go4FDK +12/18/2016,Sports_celeb,@HollyHolm,Had to take my own photos with the man himself. Everybody keeps coming up pumped to meet the man… https://t.co/8v6qeTUtv9 +12/08/2016,Sports_celeb,@HollyHolm,"hitechpharma is doing a giveaway if you would like to enter:) (via repostapp) +・・・ +GIVEAWAY: Win… https://t.co/OX4CPSh9jg" +12/03/2016,Sports_celeb,@HollyHolm,"Friday evening 👊🏻 graciebarranm @jacksonwinkmma (via repostapp) +・・・ +Friday night went like that… https://t.co/z5TfyKgftA" +12/01/2016,Sports_celeb,@HollyHolm,https://t.co/p4LuKCDBqD This inspires me.… https://t.co/EwkuSwSY5Y +11/28/2016,Sports_celeb,@HollyHolm,Have a sweet tooth? Make a protein milkshake instead of reaching for the candy bars. 👊🏻… https://t.co/lJBnaHvb9p +11/18/2016,Sports_celeb,@HollyHolm,Happy Friday everyone 👊🏻 @GrrrlClothing https://t.co/YYAcTnKtMX +11/14/2016,Sports_celeb,@HollyHolm,Monday afternoon Grrrind ... thanks @mmacoachwink for the mitt session. @GrrrlClothing https://t.co/4fkm7A0k1r +11/13/2016,Sports_celeb,@HollyHolm,Excited for this bantamweight fight and the rest of the card. Watching with family and friends.… https://t.co/zQJqdRkbL4 +11/12/2016,Sports_celeb,@HollyHolm,Just relaxing Friday night. #teamhitech #hitechpharma hitechpharma https://t.co/gTyrecqggs +11/10/2016,Sports_celeb,@HollyHolm,#ninjaskills with @tomfirekid #JCVD #tomfirekid https://t.co/cMbqkEsPhR +11/08/2016,Sports_celeb,@HollyHolm,My Monday motivation. Every Monday I get to work out with this amazing woman. She shows… https://t.co/K3etKKjF3R +11/07/2016,Sports_celeb,@HollyHolm,Congratulations to my brothers @baratafreitas and @DiegoSanchezUFC with their victories this… https://t.co/UW7fZ5BVKC +11/04/2016,Sports_celeb,@HollyHolm,And thanks for the new shorts @GrrrlClothing https://t.co/nIdPeSOm0z +11/04/2016,Sports_celeb,@HollyHolm,It's been a progress getting my strength back since surgery but it's almost there. Strict muscle… https://t.co/oqjWvVwTe1 +11/02/2016,Sports_celeb,@HollyHolm,"Our weather has been so nice for being November, but there's still that chill in the air during… https://t.co/rIHXl3Xwh5" +10/29/2016,Sports_celeb,@HollyHolm,Sometimes trying to get stuff done in the house is impossible because Buster keeps laying in… https://t.co/F1rVbOppUb +10/29/2016,Sports_celeb,@HollyHolm,What my Friday night party looks like.... no bake protein bars and a photobomb by Buster. Using… https://t.co/M1deMDBXlk +10/27/2016,Sports_celeb,@HollyHolm,Finished with some great training this morning 👊🏻 love my team. https://t.co/bwJ7CrE0UQ +10/19/2016,Sports_celeb,@HollyHolm,On my way to run. Thanks for the new gear @GrrrlClothing https://t.co/WeeajNAcUu +10/18/2016,Sports_celeb,@HollyHolm,#ninjaskills with @timkennedymma #koalified https://t.co/KVKufNHTGX +10/17/2016,Sports_celeb,@HollyHolm,My Monday motivation goes to Randy. He's been a friend of mine since childhood. He won several… https://t.co/4T7k29s0d2 +10/15/2016,Sports_celeb,@HollyHolm,Excited to share my video for @verabradley where I teach @RealTomHankz how to throw a punch and… https://t.co/8lzhaOQkVq +10/14/2016,Sports_celeb,@HollyHolm,#thursdaynightfootball bummer we didn't win. Looking forward to the next game. broncos https://t.co/tH3pGgDFfD +05/09/2018,Sports_celeb,@Sara_McMann,Photo shoot for Sports Illustrated 💪👊 I will posting these great… https://t.co/GUAFq3lFlw +04/15/2018,Sports_celeb,@Sara_McMann,Look at the life YOU live in based on the comments you leave online. Now there’s a thought.… https://t.co/4u5Lnwe1J2 +04/02/2018,Sports_celeb,@Sara_McMann,I am a terrible girlfriend. I’m also fully understand the war I’ve started. Worth it 😆😆😆… https://t.co/HjjWrvESzV +03/20/2018,Sports_celeb,@Sara_McMann,Testing at the UFC Performance Institute in Vegas! Little known fact: I have the densest bones… https://t.co/xeLfeJTQcG +02/12/2018,Sports_celeb,@Sara_McMann,Don’t fall for the guy who only buys you flowers and chocolate on Valentine’s Day. Fall for the… https://t.co/TNSQ3aU582 +02/08/2018,Sports_celeb,@Sara_McMann,😄😄😄 unfortunately I had BOTH of these terrible hairstyles 🤦🏻‍♀️🤷🏻‍♀️ https://t.co/LsOkOhO4Hk +02/02/2018,Sports_celeb,@Sara_McMann,Yay!! #EAUFC3 is out 👏👊💪 It’s always fun when people I know pick me in the game😄 https://t.co/Bnb3wdQOT7 +01/29/2018,Sports_celeb,@Sara_McMann,Happy birthday to this awesome guy that stole my heart ♥️ I hope I get to spend every one… https://t.co/hVfmQ1V2u5 +01/27/2018,Sports_celeb,@Sara_McMann,I GOT FILI!!! 👊💪 @touchyfili #teamalphamale #tamvseverybody #outcastsandunderdogs #koheadkick @… https://t.co/Fh1adk8eYn +01/17/2018,Sports_celeb,@Sara_McMann,"Four years old, kindergarten pictures. The best part is that I had the same mullet for like 10… https://t.co/0ulX5paez0" +01/12/2018,Sports_celeb,@Sara_McMann,FBF to Opening Ceremonies with telaodonnell in 2004 Olympics! This reminds me of living at the… https://t.co/q4kPwCuEi2 +01/12/2018,Sports_celeb,@Sara_McMann,Check out marcelogarciajiujitsu on Instagram!!! 👏👏👏🙌🙌🙌 One of the few people in the world I view… https://t.co/ZvWQSlTwFe +01/04/2018,Sports_celeb,@Sara_McMann,Excited to announce my next fight Feb. 24 in Orlando against Lana Kunitskaya 😃 #ufc… https://t.co/diIZAQkLeh +12/31/2017,Sports_celeb,@Sara_McMann,Wish @HollyHolm would have gotten the win. Great person and great fighter 👊💪 #ufc219 +12/28/2017,Sports_celeb,@Sara_McMann,One of the most amazing things about this life. I plan on reaching my goals and starting fresh… https://t.co/3ZDhPH4oIN +12/23/2017,Sports_celeb,@Sara_McMann,It appears that one of my “fans” really needs some attention. He posted this on a pic of my… https://t.co/jamGn20Nco +12/22/2017,Sports_celeb,@Sara_McMann,Bella reached her goal of being able to put both feet flat and raise her head. When she puts her… https://t.co/wQr9273CIj +12/18/2017,Sports_celeb,@Sara_McMann,Wicked artwork by chaotic_substance 👏🙌 Thank you 🙏 #ufc #fanart #badass #grateful https://t.co/0Uuu92fmMK +12/14/2017,Sports_celeb,@Sara_McMann,I bet this is the last time alexandermunoz55 shows me how to get more height on my single leg… https://t.co/8C9MS9Vl28 +12/10/2017,Sports_celeb,@Sara_McMann,"The smallest things make the biggest difference over time. Proper nutrition, hydration, good… https://t.co/5JWj5C6MeD" +12/10/2017,Sports_celeb,@Sara_McMann,WAR @savage_530 Benito Lopez 💪👊 @ufc debut and ready to dominate!!! #teamalphamale… https://t.co/Yf8fJiM3vS +12/06/2017,Sports_celeb,@Sara_McMann,WOMEN’S WEEK!! Pretty sweet to get a free week and watch some sick fighters 😁 #ufc #fightpass… https://t.co/ocqCSsYGwr +12/05/2017,Sports_celeb,@Sara_McMann,Miss these awesome coaches more than I can express!! I love bonding with my new team and coaches… https://t.co/Pxxgb0SOK6 +12/03/2017,Sports_celeb,@Sara_McMann,"Bad stuff out, good stuff in 😊 @teamusana #usana #healthpak #vitaminsandminerals #recovery @… https://t.co/krufvdOKnj" +11/22/2017,Sports_celeb,@Sara_McMann,"Awesome Gi class with this animal!! Don’t be fooled by his No Gi preference, this guy is super… https://t.co/UxqkolQJqx" +11/21/2017,Sports_celeb,@Sara_McMann,Why do I look like I’m possessed by the devil?!?! 😳😆 I hope to have something scheduled soon!… https://t.co/D9UNGKUUua +11/15/2017,Sports_celeb,@Sara_McMann,I have no shame at all being a fangirl for Jean Claude Van Damme 😍 I grew up watching Bloodsport… https://t.co/FrMymR94jT +11/12/2017,Sports_celeb,@Sara_McMann,"Cool coffee shops ☕️ , hard practices 🤼‍♂️ , and chasing galaxies 🌌 💗💕You’re my favorite person… https://t.co/Cps37VmyDz" +11/10/2017,Sports_celeb,@Sara_McMann,I love this feeling. Moments before competition is the most intense feeling of focus and… https://t.co/WmilvNhcdW +11/08/2017,Sports_celeb,@Sara_McMann,"Wrestling, MMA, and gymnastics. 3 of the toughest sports in the world🌎 We only climb the highest… https://t.co/N55rRC2oCQ" +11/07/2017,Sports_celeb,@Sara_McMann,"If you can abide by these 2 quotes, you are 90% on your way to having a much better life. https://t.co/8aqIZAhMfS" +11/04/2017,Sports_celeb,@Sara_McMann,WAR @cody_nolove @tylerd1amond @sanchez__145 👊💪☝️ my @TeamAlphaMale teammates are going to… https://t.co/SUjMgvz29z +11/04/2017,Sports_celeb,@Sara_McMann,Big thanks to @BetaAcademy for having me teach alongside Murilo Santana today at the… https://t.co/Jt0fRqPZPJ +11/02/2017,Sports_celeb,@Sara_McMann,Let’s go @lancepalmer 💪👊 #teamalphamale #wsof #champion #wrestling #usawrestling #fightday https://t.co/JoWxLh20wh +11/01/2017,Sports_celeb,@Sara_McMann,"LumberJane? LumberJill? Ax murderer? Who knows, just gimme the candy and no one gets hurt 😃 https://t.co/bOVV8niOLH" +10/20/2017,Sports_celeb,@Sara_McMann,I’m too lazy to look up some inspirational quote about life. But here’s me doing a handstand for… https://t.co/X090hFpRkN +10/18/2017,Sports_celeb,@Sara_McMann,Great work with my teammate alexandermunoz55 this morning! Working out sneaky set ups and our… https://t.co/RXhhlguvjM +10/12/2017,Sports_celeb,@Sara_McMann,Hope that these fires get contained soon. It's caused so much heart ache and damage already 😢 https://t.co/7zDsfbT0LC +10/11/2017,Sports_celeb,@Sara_McMann,The USADA lady gave me a cool towel when I was tested today 😁 I'm glad they don't only test when… https://t.co/2WxcRdSbN8 +10/06/2017,Sports_celeb,@Sara_McMann,"I really love this quote. I'm proud of where I have gotten in life, but I started far behind a… https://t.co/MtJ665u6KT" +10/05/2017,Sports_celeb,@Sara_McMann,Relaxing at Capitol Park with my favorites 💕 Wayne chasing squirrels while Bella climbs trees 🌲… https://t.co/Egn3c8t7DY +10/02/2017,Sports_celeb,@Sara_McMann,Awesome box of goodies from a great gal Chrystal at rebelliaclothing 💕 I can't wait to try out… https://t.co/LlZBua1anZ +10/01/2017,Sports_celeb,@Sara_McMann,Shout out to my good friend sobhanworld and all of the great work he is doing for @cssandover !… https://t.co/U3GjYDIbwv +09/25/2017,Sports_celeb,@Sara_McMann,Super excited to get my Sports Pak vitamins from USANA!! These have helped me compete at a high… https://t.co/GWT74W4HMc +09/24/2017,Sports_celeb,@Sara_McMann,Today's my birthday and I am happy to be alive and loving what I do. I have great friends &… https://t.co/9S1JR2f1yj +09/23/2017,Sports_celeb,@Sara_McMann,The royal treatment 👑 fo @brooke13_mayo before her fight for @bellatormma !!! @fabiopradobjj and… https://t.co/lpBt0q7RqG +09/23/2017,Sports_celeb,@Sara_McMann,WAR @teruto_ko !!!! @TeamAlphaMale is behind you!!! #beast #teamalphamale #tamvseverybody #ufc… https://t.co/3ErNeZYVhh +09/20/2017,Sports_celeb,@Sara_McMann,"I ALWAYS miss the pic at the end, so I made sure I didn't wander off this time 🤣 I'm loving my… https://t.co/bJlXNN3tm9" +09/16/2017,Sports_celeb,@Sara_McMann,Happy Friday!! Carpe Diem 😁😁😁 https://t.co/coFqAbbtOb +09/15/2017,Sports_celeb,@Sara_McMann,Come check out @urijahsuf tomorrow from 10-5pm!! I'll be there!! 😁 #urijahfabersultimatefitness… https://t.co/VufSjCT1iG +09/10/2017,Sports_celeb,@Sara_McMann,Last night didn't yield the outcome that I wanted. I gave the best of myself and came up short.… https://t.co/oCuDmfK9HK +09/09/2017,Sports_celeb,@Sara_McMann,Ready to leave it all in the cage and give every ounce of myself tonight!!! I love what I do!!… https://t.co/lbtXOaW8m2 +09/06/2017,Sports_celeb,@Sara_McMann,Awww @suzesuzeq did such an amazing job on my hair and makeup!!! She knows I don't like a… https://t.co/oxkVWGZ9JS +09/05/2017,Sports_celeb,@Sara_McMann,Riding with the man who's about to make history!! I've been a longtime fan of @MightyMouseUFC… https://t.co/9OdiMfXU8a +09/03/2017,Sports_celeb,@Sara_McMann,No make up and letting my crazy curls loose. It's a great day after my last hard work out for my… https://t.co/jVq3WHTeWg +09/02/2017,Sports_celeb,@Sara_McMann,"This is such a great quote because no matter what you've done in the past, the here and now is… https://t.co/XfMLDXslX9" +08/30/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/sgBWzYI78H +08/30/2017,Sports_celeb,@Sara_McMann,Got some great work in with this beast tonight! @cyn_calvillo #teamalphafemale #ufc215… https://t.co/GAYNbIwOvO +08/28/2017,Sports_celeb,@Sara_McMann,"Faster, stronger, better!!! Thank you @brooke13_mayo and Niko for the great drills 😁… https://t.co/UfFlF3PM50" +08/27/2017,Sports_celeb,@Sara_McMann,Cool down with some light shadow boxing and movement drills. Feeling relaxed and ready for the… https://t.co/9HA8iKIzGg +08/27/2017,Sports_celeb,@Sara_McMann,All respect to @TheNotoriousMMA for stepping into Floyd's arena and giving it is all. #UFC #boxing #allheart +08/26/2017,Sports_celeb,@Sara_McMann,I hope he goes in there and shocks the entire world. #mcgregorvsmayweather #ufc #boxing… https://t.co/EKVrXj3uAY +08/25/2017,Sports_celeb,@Sara_McMann,Super proud of @rafajj for getting silver medal at Master's Worlds in IBJJF! He had a tough call… https://t.co/4NJdedKaBX +08/24/2017,Sports_celeb,@Sara_McMann,"Coaches be like, ""Your opponent is taller, go with him to prepare"" 😂😂😂 Not to brag, but I almost… https://t.co/YcaVvtXiIc" +08/23/2017,Sports_celeb,@Sara_McMann,Awesome sparring day!! Thanks to @brooke13_mayo for the kicks that were on 🔥 and and… https://t.co/2l3QfaxytA +08/23/2017,Sports_celeb,@Sara_McMann,Got a visit from #usada today! I love that they take blood and urine samples. It's a huge… https://t.co/31QGdJYu7d +08/20/2017,Sports_celeb,@Sara_McMann,"Strawweight, flyweight, and bantamweight. We're comin for them all!! #murderersrow #ufc #bjj… https://t.co/XQrjYmEIlO" +08/17/2017,Sports_celeb,@Sara_McMann,Great sparring with @cyn_calvillo today!! #teamalphafemales #ufc215 @ Urijah Fabers Ultimate… https://t.co/qXmXFdMjXO +08/12/2017,Sports_celeb,@Sara_McMann,First day of practice in my new home @TeamAlphaMale and I'm surrounded by excellence!! I'm so… https://t.co/zJ8cvglGJk +08/02/2017,Sports_celeb,@Sara_McMann,"To gain strength, you have to break down and repair properly. Thanks @teamusana for giving my… https://t.co/QPnjWKkLbd" +08/01/2017,Sports_celeb,@Sara_McMann,"After two different date changes, I'm happy to announce that I'm fighting Ketlen Vieira on… https://t.co/CvR0WwOwoL" +08/01/2017,Sports_celeb,@Sara_McMann,You know who you are. #keyboardwarrior #cantloseifyounevertry #mommasbasement #bitchtits… https://t.co/X94jd7aRCW +07/30/2017,Sports_celeb,@Sara_McMann,"Amazing artist, check her out https://t.co/Np5bWz0NGX" +07/30/2017,Sports_celeb,@Sara_McMann,Just posted a photo @ Alliance Champions Training Center https://t.co/X7zxO7Kw06 +07/29/2017,Sports_celeb,@Sara_McMann,WAR JARRED!! @the_monkeygod #ufc #ufc214 https://t.co/xsiQapl0Cb +07/28/2017,Sports_celeb,@Sara_McMann,I've always loved this. I wouldn't be anything without all of the help I've received in sports… https://t.co/v1UD7BUJh0 +07/27/2017,Sports_celeb,@Sara_McMann,Ladder drills and footwork. I could do this stuff in my sleep 😴 #allianceofgreenville… https://t.co/xQNbGABU7K +07/26/2017,Sports_celeb,@Sara_McMann,Super sweet pic of Bella and I after her gymnastics practice 😁 Thank you tlsandys for this… https://t.co/RHNtwot403 +07/25/2017,Sports_celeb,@Sara_McMann,Another great pic from the article. @ Alliance Champions Training Center https://t.co/sG7CqQd42l +07/24/2017,Sports_celeb,@Sara_McMann,Awesome article in thewashingtonpost if anyone wants to check it out. Big thanks to romanstubbs_… https://t.co/qfLbRmOAMK +06/28/2017,Sports_celeb,@Sara_McMann,"@DiabloBlanco29 hey, what are you doing?" +06/24/2017,Sports_celeb,@Sara_McMann,Phil Nurse showing all the young guns how to throw down!! Speed and footwork on point 😁 @WATNYC… https://t.co/EcbcO9B6ek +06/14/2017,Sports_celeb,@Sara_McMann,Some of my lifts yesterday. Thanks to dan_scanlan94kg and @teamusana for all of the things that… https://t.co/Kwt58mHQoZ +06/13/2017,Sports_celeb,@Sara_McMann,Always sure to get my @teamusana Sports Pak in the morning and evening. I can't believe how much… https://t.co/GSSCCmG0Yr +06/11/2017,Sports_celeb,@Sara_McMann,Picture with a legend masterjacare since we are #alliancefamily ❤️ #bjj #atlanta #alliance #legend https://t.co/krJqwVnsZR +06/11/2017,Sports_celeb,@Sara_McMann,Beautiful cross choke from mount by @rafajj at the #fighttowinpro36 !! alliancechampions… https://t.co/X1sHQTtxs8 +06/11/2017,Sports_celeb,@Sara_McMann,Awesome kneebar by cbinghambjj at the #fighttowinpro36 !! alliancechampions #bjj #kneebar… https://t.co/MnGXQUrNpH +06/05/2017,Sports_celeb,@Sara_McMann,My new sponsor rejuvenate.wellness2400 did a new treatment called Skin Classic to treat skin… https://t.co/hpfAGlPZN6 +06/02/2017,Sports_celeb,@Sara_McMann,Special thank you to the woman responsible for keeping my body from falling apart 😂 tfisherlmt65… https://t.co/1hO5Qx9AD0 +06/02/2017,Sports_celeb,@Sara_McMann,"A) her back is not broken. B) this is not some form of medieval punishment. That's right, she is… https://t.co/CaIOSdqz9e" +06/01/2017,Sports_celeb,@Sara_McMann,"So, they announced my next fight!!! 😁😁😁 I am happiest when I'm preparing for a fight and as soon… https://t.co/zDAXgKjsZm" +05/29/2017,Sports_celeb,@Sara_McMann,Words fail to express the gratitude I have for the sacrifices that soldiers and families make to… https://t.co/gOm8gO8G6P +05/24/2017,Sports_celeb,@Sara_McMann,So excited to have my @teamusana supplements and vitamins arrive!! The best athletes need the… https://t.co/JOVZYs71Bn +05/22/2017,Sports_celeb,@Sara_McMann,Thank you @dominickcruz for letting me pick your brain about how to become a guest fighter (and… https://t.co/gEdrfB9Ued +05/21/2017,Sports_celeb,@Sara_McMann,A couple of the amazing things we saw at #ufcar17 in #lasvegas!! So honored to hear from… https://t.co/3eXdXgGnxJ +05/14/2017,Sports_celeb,@Sara_McMann,Happy for all of the great experiences I get to have with this sweet little girl. I've never… https://t.co/7FMQNV04VN +05/13/2017,Sports_celeb,@Sara_McMann,I don't even know how her back doesn't break! 😂 #handstand #gymnastics #diamondtheives… https://t.co/TMdTpx9fCZ +05/11/2017,Sports_celeb,@Sara_McMann,Giving a little bit back to my poor body after punishing it with 10 days without a day off 😳… https://t.co/QpjyClEppd +05/11/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/Z2eYgoMWcW +05/07/2017,Sports_celeb,@Sara_McMann,"Who's my next fight? I'd love to fight any one of these women, but my picks are A and C 😁 #ufc… https://t.co/GjI2R8F4JQ" +05/07/2017,Sports_celeb,@Sara_McMann,Super fun training with my girl cdbannie and maryska404 😁She should definitely be in invictafc… https://t.co/MLoC90Fy8L +05/01/2017,Sports_celeb,@Sara_McMann,Awesome drills with @JustinBuchholz at @TeamAlphaMale a couple of weeks ago! Can't wait until I… https://t.co/ZiISgLGT7P +04/26/2017,Sports_celeb,@Sara_McMann,This is my serious face 😈 Thanks for picking one of my favorite pics @teamusana #sharkeyes… https://t.co/vjFcqRaCiE +04/25/2017,Sports_celeb,@Sara_McMann,Super happy to have joined @usanainc team!! Can't wait to receive my first box of supplements 😁… https://t.co/OA9KkQSE6p +04/15/2017,Sports_celeb,@Sara_McMann,Love the training out here at @TeamAlphaMale with @cyn_calvillo #teamalphamale #ironsharpensiron… https://t.co/BGYZ6fj1E2 +04/14/2017,Sports_celeb,@Sara_McMann,Having a great time @TeamAlphaMale 😁 Super cool group of fighters who have fun pushing each… https://t.co/nz6BazJXhF +04/13/2017,Sports_celeb,@Sara_McMann,The internet kills me!! I saw so many good ones but this was irresistible… https://t.co/6rNxCo4Quu +04/10/2017,Sports_celeb,@Sara_McMann,Cool pic from this weekend! And thanks dklinedesign for posting it to @ibjjf 😁 I'm still… https://t.co/SSBxgM9xpX +04/09/2017,Sports_celeb,@Sara_McMann,I had a great time at my first @ibjjf competition!! Thanks to amandaleve_bjj for the awesome… https://t.co/yhjHh9nggt +04/07/2017,Sports_celeb,@Sara_McMann,Eeeekkk! I don't know if you can tell but I was so excited to learn some tips and tricks from… https://t.co/WBWdBigU8Y +04/04/2017,Sports_celeb,@Sara_McMann,When you secretly buy all of the @ryanhallbjj DVD's to use his own moves against him!!… https://t.co/Z5bswEtcEh +04/03/2017,Sports_celeb,@Sara_McMann,Thank you to adambenayoun and crock_stock for the goes earlier today. Super excited for more… https://t.co/1rHYW2TyIO +03/31/2017,Sports_celeb,@Sara_McMann,One of the cool pics @piperwarlick took for a feature in styleblueprintcharlotte !!! It was… https://t.co/c4F6rhexpX +03/27/2017,Sports_celeb,@Sara_McMann,It always surprises me how much I enjoy the Gi classes! Typically wrestlers aren't big fans of… https://t.co/ZwaWIaGkSR +03/26/2017,Sports_celeb,@Sara_McMann,"Huge thanks to a wonderful fan @jeepney6 for this coffee!!! I really can't wait to try it, it… https://t.co/fq3vY2q4hG" +03/24/2017,Sports_celeb,@Sara_McMann,I get the privilege of training with these killers almost every day 😁😁😁 @Parisi_Speed… https://t.co/hzK9r5msnq +03/20/2017,Sports_celeb,@Sara_McMann,Just posted a photo https://t.co/UgsOTOdYXH +03/20/2017,Sports_celeb,@Sara_McMann,"RT @LeonardWheeler7: Worked out today with Sara ""The Beast"" McMann. I'm so proud of this young lady. Olympic Medalist, UFC & Great Friend!…" +03/19/2017,Sports_celeb,@Sara_McMann,Pushed to the max in my work out run by the one and only leonardwheeler7 😁 Thank you for making… https://t.co/vetFdBgJ0Y +03/19/2017,Sports_celeb,@Sara_McMann,If you aren't watching #ncaawrestlingchampionships what are you even doing with your life??… https://t.co/53pkPH7kZh +03/16/2017,Sports_celeb,@Sara_McMann,It's Wrestling Heroes Day for #wrestlingweek and my hero is the legendary John Smith. He's a 6X… https://t.co/u4p2w3dgTF +03/15/2017,Sports_celeb,@Sara_McMann,WRESTLE LIKE A GIRL DAY!! I started when I was 14 and have loved it every day since then! ❤️❤️❤️… https://t.co/rFMF9ZyXpp +03/14/2017,Sports_celeb,@Sara_McMann,Last training session with jwo51 before she goes back to being smart and saving lives 😁 Thanks… https://t.co/tAZZAUVNdM +03/13/2017,Sports_celeb,@Sara_McMann,Working on my explosive power!! You can't tell but in the barbell pic I'm actually off of the… https://t.co/kV5nRORHip +03/10/2017,Sports_celeb,@Sara_McMann,My sweet friend gave me some wicked work out pants ❤️❤️❤️ Thank you jwo51 for the thoughtful… https://t.co/KMMjz4qCBU +03/10/2017,Sports_celeb,@Sara_McMann,"There will never be a time that we aren't navigating our own set of challenges, but I believe we… https://t.co/2oIT5bO8kD" +03/09/2017,Sports_celeb,@Sara_McMann,Can't wait for this seminar!!! I love sharing knowledge with the young girls coming up!!… https://t.co/UrYWKOudiE +03/08/2017,Sports_celeb,@Sara_McMann,"""Here's to strong women. May be know them, may we be them, may we raise them.""… https://t.co/JgoMC5pR8C" +03/08/2017,Sports_celeb,@Sara_McMann,"Red for International Women's Day!! Even my coach, Jimmy Fowler, supports women today 😂😂😂… https://t.co/DIjn2M6WlW" +03/07/2017,Sports_celeb,@Sara_McMann,"No, I'm not actually pregnant here!! I'm on set for @SubmissionFilm and was having fun with the… https://t.co/ELd4bAoiiL" +03/06/2017,Sports_celeb,@Sara_McMann,Beautiful pics from #redrockcanyon with dan_scanlan94kg 😁I've been to Vegas over 20 times and… https://t.co/YUvMru3cXV +03/05/2017,Sports_celeb,@Sara_McMann,I had a great time catching up with @cody_nolove in between filming for @metropcs 😁… https://t.co/JgVnrY6TKN +03/05/2017,Sports_celeb,@Sara_McMann,Totally my favorite part of the night!!! Can't believe I met my favorite actress @charlizeafrica… https://t.co/XspHTgMVbJ +03/05/2017,Sports_celeb,@Sara_McMann,First time doing the @metropcs show before #ufc209 😁 thanks to @forrestgriffin @cody_nolove… https://t.co/55EtpfWvkl +03/05/2017,Sports_celeb,@Sara_McMann,"Comeback of the year!!!! Omg, @DarrenElkinsMMA is the epitome of ""never give up"" #UFC209" +03/04/2017,Sports_celeb,@Sara_McMann,"I had such a good time at the #mmaawards this year! Half of me likes dressing up, the other half… https://t.co/4hee7O27zy" +03/04/2017,Sports_celeb,@Sara_McMann,Had a great lift at @averagebroz 😁 had to pick this platform since it had the #2004olympics… https://t.co/xKa5GmYyih +03/04/2017,Sports_celeb,@Sara_McMann,Awesome seeing @bisping at the weigh ins for #ufc209 😁 #ufc #ufcchampion #reddress @ T-Mobile Arena https://t.co/GO51jZHdWX +03/03/2017,Sports_celeb,@Sara_McMann,Just arrived at the #mmaawards2017 and can't wait for the show to start! #venetian #lasvegas… https://t.co/YDKvuUurNF +02/27/2017,Sports_celeb,@Sara_McMann,Another great pic from #fallsparkonthereedy in #greenvillesc 😁😁😁 #besties #roots #beautifultrees… https://t.co/1BD0xE8Kh3 +02/26/2017,Sports_celeb,@Sara_McMann,Help @thugjitsumaster raise money for his mother's battle with cancer! https://t.co/9BnFMulocA +02/24/2017,Sports_celeb,@Sara_McMann,My other meditation tool ❤️ I still have to wait a little longer for all of the repairs to my… https://t.co/w0o3aE3lVo +02/23/2017,Sports_celeb,@Sara_McMann,Laughing and hiking with my bestie @DollFaceIFC115 at #fallsparkonthereedy in #greenvillesc ...… https://t.co/c9fMiImGNz +02/23/2017,Sports_celeb,@Sara_McMann,The secret to my success in sports? Mental and physical recovery! I have always been a hard… https://t.co/EXOFlJAHco +02/22/2017,Sports_celeb,@Sara_McMann,"This is one of my new favorite pics!! I respect every one of my opponents. Before I fight, I… https://t.co/wKnr9MUiQV" +02/20/2017,Sports_celeb,@Sara_McMann,Last night was surreal!! I had such a great weight cut and recovery. My warm up and preflight… https://t.co/SX1LDNgj0C +02/20/2017,Sports_celeb,@Sara_McMann,"Super happy in the back with my coach, Jimmy Fowler!! He's been with me thru my whole career and… https://t.co/6ovAk81hjE" +02/18/2017,Sports_celeb,@Sara_McMann,#UFC #halifax #destroytheopposition #breaktheirwill #pushthepace #getwhatyouveearned https://t.co/bpCgi7i88w +02/18/2017,Sports_celeb,@Sara_McMann,One step closer!! And now.... more coffee ☕️😍😁 and carbs #mynewbestfriend #justfortoday #UFC… https://t.co/q6HqqXn5vZ +02/18/2017,Sports_celeb,@Sara_McMann,Weigh in pic 🎉🎊I actually weighed 135 because the sauna was so awesome 😂 I've had so many carbs… https://t.co/pOe0i9uFcx +02/18/2017,Sports_celeb,@Sara_McMann,Made weight and feeling very good 😊 My opponent missed weight by 3.5 pounds but I'm not upset… https://t.co/DXMLGXA36r +02/12/2017,Sports_celeb,@Sara_McMann,One week out for my fight! Thanks Wanda Koch Photography! ❤️ #ufc #reebok #strongmindandbody https://t.co/cc4Nr8bJ8C +02/10/2017,Sports_celeb,@Sara_McMann,"I love boxing with my @hayabusafight gloves!!! ❤❤❤ They are comfortable and protect my hands,… https://t.co/sxQl0pKihc" +02/09/2017,Sports_celeb,@Sara_McMann,Thank you so much to wandakochphotography for the beautiful pics of Bella and I. We ❤ them!! https://t.co/RSFZv8gDq1 +02/07/2017,Sports_celeb,@Sara_McMann,"Omg, this was too funny thing my share https://t.co/S4TgmbxdP8" +02/03/2017,Sports_celeb,@Sara_McMann,My opponent has changed on short notice. Big thanks to Gina Mazany for accepting the fight so… https://t.co/8qEoUWRtmp +01/30/2017,Sports_celeb,@Sara_McMann,Thank you @hayabusafight for the fight swag! I think I've become 10% faster with my fresh new… https://t.co/1Oke5i3SaI +01/22/2017,Sports_celeb,@Sara_McMann,"This is how you raise a spider monkey 😂@pai_cpa says, ""oh no, don't fall Bella!"" And she giggles… https://t.co/UTS3KfugND" +12/23/2016,Sports_celeb,@Sara_McMann,TBT to my photo shoot with the @UFC when I was as lean as I can be (without dying 😂) and they… https://t.co/fQ7vvE3siK +10/19/2016,Sports_celeb,@Sara_McMann,Super excited for this fight!!! Dec. 3 TUF Finale https://t.co/s2mqKItjRm +09/30/2016,Sports_celeb,@Sara_McMann,Just finished watching The Hurt Business and it was awesome!!! +09/08/2016,Sports_celeb,@Sara_McMann,https://t.co/80mYzkbMwt +09/04/2016,Sports_celeb,@Sara_McMann,"Check out the float tank at @glowspanow in Mt. Pleasant, SC. The experience is surreal!! https://t.co/bXV28rJvY9" +08/26/2016,Sports_celeb,@Sara_McMann,A pic with my sweet❤️ https://t.co/so9h6OCt0D +08/24/2016,Sports_celeb,@Sara_McMann,Women's wrestling Olympic medalists https://t.co/1uG4PfCo7u +08/24/2016,Sports_celeb,@Sara_McMann,https://t.co/cJGnx9F0ww +08/22/2016,Sports_celeb,@Sara_McMann,Photo shoot a couple of yrs ago. Thank you FotoFlo https://t.co/d5sNDSW6gY +08/16/2016,Sports_celeb,@Sara_McMann,"Best of luck tomorrow to @hayaugello , @helen_maroulis @AdelineGray and @e_pirozhkova #rio2016 #usawrestling https://t.co/9f1cBIpyfy" +07/25/2016,Sports_celeb,@Sara_McMann,https://t.co/wG9mEhVX0s +07/23/2016,Sports_celeb,@Sara_McMann,Flex Competition with Ean and @gatorboyrb ... I think Ean has us beat!! @ufc #fightlikeean https://t.co/G6XPk669sp +07/22/2016,Sports_celeb,@Sara_McMann,This is my little hero!! https://t.co/avFe4VAI1x +07/18/2016,Sports_celeb,@Sara_McMann,This is pretty cool 😊 https://t.co/7BgnWqIj9s +07/15/2016,Sports_celeb,@Sara_McMann,Just finished my 1st table read ever!! Excited 2 Bart of this movie!! @SubmissionFilm @ufc @RevolutionMMASC https://t.co/dtHysVTCBD +07/13/2016,Sports_celeb,@Sara_McMann,@MieshaTate @BryanCaraway check your DM +07/13/2016,Sports_celeb,@Sara_McMann,RT @toppscards: A day after winning The Ultimate Fighter season 23 @ElDirteSanchez has fun with @Sara_McMann at the Topps UFC booth https:/… +07/11/2016,Sports_celeb,@Sara_McMann,The documentary I'm in is being released soon! Here is the trailer: https://t.co/S4lVNVSfSA https://t.co/mPlMTsBLdF +07/10/2016,Sports_celeb,@Sara_McMann,I want to fight @VenezuelanVixen @ufc make it happen!!! We will put on a great show!!! +07/09/2016,Sports_celeb,@Sara_McMann,Now time for my boy @ElDirteSanchez to finish his opponent!!! @ufc #TUFFinale +07/09/2016,Sports_celeb,@Sara_McMann,Beautiful d'arce choke @TSPMMA115 @ufc +07/09/2016,Sports_celeb,@Sara_McMann,Can't wait for @TSPMMA115 to win her rightful place in the UFC!!! WAR Tatiana!!! @ufc #wrestling #usawrestling #UFCVegas +07/09/2016,Sports_celeb,@Sara_McMann,Beautiful KO by @KoreanSuperBoy7 !!! Love it +07/06/2016,Sports_celeb,@Sara_McMann,Honored to be in the Collectors Edition of @people !! https://t.co/InQ6f55q56 +06/29/2016,Sports_celeb,@Sara_McMann,Yay! My shirts are in and ready to ship! Visit https://t.co/1RqVlCmMZX if you'd like to order them! https://t.co/HCCQvClTmq +06/22/2016,Sports_celeb,@Sara_McMann,"I'm already preparing for my next fight @ufc ! Give me another top 5fighter, I want to beat the best! #ufc #reebok https://t.co/oaMlVRsklc" +06/18/2016,Sports_celeb,@Sara_McMann,Great training at Fitness Edge MMA in Myrtle Beach! Thanks @derrickakadk https://t.co/1obLiAKWbI +06/16/2016,Sports_celeb,@Sara_McMann,RT @DarkMoon_MMA: Get your @Sara_McMann Tees here !! https://t.co/QblochEcOO https://t.co/khgRp1eZ6y +06/16/2016,Sports_celeb,@Sara_McMann,"https://t.co/r5CNa2ykcj completely lied about my coach, Blake Grice, and it needs to be exposed!!!https://t.co/RXDwGPFzWL" +06/05/2016,Sports_celeb,@Sara_McMann,Beautiful title fight! Non stop action from start to finish. Loved it @ufc +06/04/2016,Sports_celeb,@Sara_McMann,Awesome Grand Opening! Chris Bedenbaugh is the best chiropractor!! https://t.co/XC9Mt8T3MI +06/01/2016,Sports_celeb,@Sara_McMann,Thnx again @TheFightDocs 4 the awesome weight loss plan! Easiest weight cut and best recovery I've ever had!! https://t.co/30ylVjrxNz +05/31/2016,Sports_celeb,@Sara_McMann,Hope everyone had a safe Memorial Day. Much gratitude 2 those not present but always in our hearts ❤️ https://t.co/5yVBgkxs29 +05/30/2016,Sports_celeb,@Sara_McMann,My poor coaches 😕 https://t.co/J4bzmU7RNb +05/30/2016,Sports_celeb,@Sara_McMann,In the zone 😍😍😍 @ufc https://t.co/9ioAGhWfFG +05/27/2016,Sports_celeb,@Sara_McMann,Weight is on point! Thank you @TheFightDocs !!! https://t.co/LSV6MXtmRO +05/27/2016,Sports_celeb,@Sara_McMann,Shadow boxing for the UFC promo 😊@ufc https://t.co/LbExzHbm9D +05/26/2016,Sports_celeb,@Sara_McMann,More excited for this fight than I've been in a long time!! 😃😃😃 can't wait for Sunday!! https://t.co/VE8eBZIDse +05/14/2016,Sports_celeb,@Sara_McMann,Big thanks to @TheFightDocs for the supplements that help my work out intensity and recovery! https://t.co/6yRTqtasgj +05/12/2016,Sports_celeb,@Sara_McMann,Hard 8 min. goes with top level black belts! ❤️ bjj at Alliance in Geeenville! https://t.co/9YmLAgl04s +05/12/2016,Sports_celeb,@Sara_McMann,RT @HectorCastroESM: Gettin ready to watch @ElDirteSanchez to do his thing on @UltimateFighter & #TUFTalk tonight on @FS1 #TimeToGetDirte h… +05/10/2016,Sports_celeb,@Sara_McMann,I am officially a USADA peeing pro. Whole process done in less than 15 min. 😄 +06/27/2018,Sports_celeb,@Bharper3407,RT @BlindBarber: .@Bharper3407 Win a trip to the All-Star Game! Enter now https://t.co/WI276ya8Ro https://t.co/byvgaASjoz +06/13/2018,Sports_celeb,@Bharper3407,"Let’s support @LLSusa! + +$10/ticket helps fight cancer. Winner's charity gets a $5,000 grant! + +CODE: TeamBryce // https://t.co/FGqLL4m8VS" +06/08/2018,Sports_celeb,@Bharper3407,"I’m excited to partner with @TMobile in supporting our military & vets! Join me by tweeting with #HatsOff4Heroes,… https://t.co/qrTtseTDAl" +06/08/2018,Sports_celeb,@Bharper3407,#GoKnightsGo +06/08/2018,Sports_celeb,@Bharper3407,I think it would only be fitting for us the @Nationals to rock the red tmrw night in support of the @Capitals winni… https://t.co/sIP2uQilIL +06/08/2018,Sports_celeb,@Bharper3407,I’m so proud to be born and raised in Las Vegas and so proud to call the @GoldenKnights my team! To be able to root… https://t.co/JnvnGW4eQu +06/08/2018,Sports_celeb,@Bharper3407,"Congrats not only to the @Capitals and the players, but to the whole City of DC. What a year, what a series, and so… https://t.co/PF5jaKkuGU" +05/26/2018,Sports_celeb,@Bharper3407,The Harper 3 Low!🔥 #MemorialDayWeekend https://t.co/m8D7ITI3Rl +05/05/2018,Sports_celeb,@Bharper3407,"RT @Nationals: Bryce Harper: Dedicated + +Bryce Harper Field: Also dedicated https://t.co/U66z5yigsK" +05/03/2018,Sports_celeb,@Bharper3407,"RT @GoldenKnights: Thanks for the gifts @Bharper3407!! + +⚾️🏒 + +#VegasBorn https://t.co/MUwWviIp2p" +05/02/2018,Sports_celeb,@Bharper3407,Nobody believes in us more than this man right here!🙌🏻 #Habit #DM4 https://t.co/kUuaFCGVT6 +05/01/2018,Sports_celeb,@Bharper3407,Could you imagine a @GoldenKnights vs. @Capitals Stanley Cup?🙌🏻 #Epic +05/01/2018,Sports_celeb,@Bharper3407,Wild Bill!🙌🏻 #GoKnightsGo +04/29/2018,Sports_celeb,@Bharper3407,Another Vegas kid making his stamp on the game! Congrats to @NickKingham on an absolutey stellar debut! Happy for you big man🙌🏻 +04/29/2018,Sports_celeb,@Bharper3407,"RT @TMobileArena: This is what 18,000 @GoldenKnights fans sound like from #Vegas! #KnightUp https://t.co/hyMQ6GxjTc" +04/29/2018,Sports_celeb,@Bharper3407,Heck yea! The big 8 8 🙌🏻 #Vegasborn +04/28/2018,Sports_celeb,@Bharper3407,6 years ago today!🙌🏻 #19to25 https://t.co/cjt2C1cDzp +04/27/2018,Sports_celeb,@Bharper3407,Let’s go boys! Lay it on all night🙌🏻 #VegasBorn #VGK #GoKnightsGo +04/17/2018,Sports_celeb,@Bharper3407,RT @BlindBarber: @Bharper3407 put together his favorite Blind Barber products for his Bryce Harper Selects Gift Set. Pick up one today and… +04/16/2018,Sports_celeb,@Bharper3407,What a W!🔥 #VegasBorn +04/16/2018,Sports_celeb,@Bharper3407,Stud. Wild Bill. #VegasBorn +04/12/2018,Sports_celeb,@Bharper3407,I'm excited to announce that I am now a part of the @blindbarber family! We had a blast shooting this video! Stay t… https://t.co/bK7AB6VsCd +04/12/2018,Sports_celeb,@Bharper3407,"RT @BryanHarper45: Hey @Bharper3407, one hair dryer wasn't enough? 😂 https://t.co/l8hbpUWI7E" +04/12/2018,Sports_celeb,@Bharper3407,RT @darrenrovell: Unreal scene in Vegas tonight for @GoldenKnights first ever playoff game. https://t.co/CFPLJqutNm +04/12/2018,Sports_celeb,@Bharper3407,Best fans and atmosphere in sports!🙌🏻 #GoKnightsGo #VegasBorn https://t.co/EHeCX3s84t +04/12/2018,Sports_celeb,@Bharper3407,Let’s get this started! @NHLonNBCSports 🙌🏻 #GoKnightsGo #VegasBorn +04/02/2018,Sports_celeb,@Bharper3407,You can get FREE https://t.co/Uqg9f5Ez8g for the entire season thanks to @TMobile! Today is the last day to sign u… https://t.co/6G4FCph7pQ +03/31/2018,Sports_celeb,@Bharper3407,Live your best life. https://t.co/NEyhx0g903 +03/28/2018,Sports_celeb,@Bharper3407,"Can’t wait to get it started!🙌🏻 #OpeningDay +https://t.co/Vdor6PBXJs" +03/19/2018,Sports_celeb,@Bharper3407,What’s it’s all about!🐟 #BassForDays https://t.co/R1GLxBJ7VT +03/14/2018,Sports_celeb,@Bharper3407,Congrats again! That was one of the cooler things I’ve ever done🙌🏻 So happy for you! Heard Harper is a great name h… https://t.co/3xMDKjUMpQ +03/05/2018,Sports_celeb,@Bharper3407,@Gatorade Pumped to be partnering with @Gatorade and helping a great program! #GatoradePartner +02/27/2018,Sports_celeb,@Bharper3407,#VegasBorn https://t.co/qCY6GMgSCP +02/26/2018,Sports_celeb,@Bharper3407,RT @lvwildcats: LVHS alumni representing in MLB and other than being Wildcats they all have one more thing in common ... a great high schoo… +02/24/2018,Sports_celeb,@Bharper3407,Woke up to another @GoldenKnights win! Oops🙌🏻 #GoKnightsGo +02/22/2018,Sports_celeb,@Bharper3407,Waking up to the news that our US woman’s hockey team has won gold fires me up! So happy for you ladies..Congratula… https://t.co/gKc9TVJUP5 +02/22/2018,Sports_celeb,@Bharper3407,Baseball is back!😂 https://t.co/EsSxy4hq0j +02/19/2018,Sports_celeb,@Bharper3407,It’s a family game!🙌🏻 #Harperx2 https://t.co/Gvdqx7EVjl +02/18/2018,Sports_celeb,@Bharper3407,Congrats to my man @austindillon3 on the Daytona 500!🙌🏻 #DAYTONA500 +02/14/2018,Sports_celeb,@Bharper3407,Since pitchers and catchers report dates are tmrw...I thought I would throw it back! Big man @JTaillon19 throwing a… https://t.co/sS6DqmyY9W +02/14/2018,Sports_celeb,@Bharper3407,😮 #FlyingTomato +02/11/2018,Sports_celeb,@Bharper3407,RT @NewEraCap: Our lightest #MLB on-field product ever. Spring Training Low Profile PROLIGHT #59FIFTY. https://t.co/LM6kJDpml7 https://t.co… +02/11/2018,Sports_celeb,@Bharper3407,The Happiest place on earth with my own little Minnie!😍 https://t.co/xWmzl5tI6v +02/06/2018,Sports_celeb,@Bharper3407,Training just got a lot easier with the Spring Training PROLIGHT Low Profile #59FIFTY cap! Excited to start the spr… https://t.co/5aTrLYH8Y2 +02/05/2018,Sports_celeb,@Bharper3407,Baseball already? Well that was way too fast!🤦🏼‍♂️ +02/02/2018,Sports_celeb,@Bharper3407,What a game! Wow😮 @GoldenKnights #GoKnightsGo #VGK +01/31/2018,Sports_celeb,@Bharper3407,"Maybe I’m crazy, but how do you get rid of @KirkCousins8? Isn’t he good? Like really good? Just a thought! #DC https://t.co/lIY4ZeU0fT" +01/29/2018,Sports_celeb,@Bharper3407,Speechless. #1october #GRAMMYs +01/26/2018,Sports_celeb,@Bharper3407,"Everybody has a hero if that’s an athlete, artist, actor, or anybody you look up to, but this man right here… https://t.co/tGVqmJwSuQ" +01/24/2018,Sports_celeb,@Bharper3407,Congrats to the @WashWizards @JohnWall and @RealDealBeal23 on the All-Star nod! Much deserved fellas🔥 #DCfamily https://t.co/4hGPLsj1ac +01/21/2018,Sports_celeb,@Bharper3407,Did anybody ever doubt that was going to happen? Brady is the G.O.A.T🔥 #Patriots #TeamUA +01/18/2018,Sports_celeb,@Bharper3407,This years leather!🔥 #BHxPablo https://t.co/Jf23mS0ue5 +01/18/2018,Sports_celeb,@Bharper3407,What a group!🔥 #TeamUA https://t.co/acaiBuG1oI +01/18/2018,Sports_celeb,@Bharper3407,"RT @UnderArmour: .@MichaelPhelps, @JordanSpieth and @Bharper3407 are looking for a 4th. Must need a medal, major or MVP to join. 😉 #Spieth2…" +01/18/2018,Sports_celeb,@Bharper3407,RT @JordanSpieth: Waiting on the rest of the team here to break in their new #Spieth2's.... https://t.co/Tb4LxSNNEo +01/17/2018,Sports_celeb,@Bharper3407,"RT @BryanHarper45: Seeing what happen to Tyler Hilinski last night really hit home. I’ve had family and friends end their lives, and suicid…" +01/17/2018,Sports_celeb,@Bharper3407,"RT @TerpsBaseball: The #Harper2, Maryland style. + +@UABaseball x #DirtyTerps https://t.co/qKiQbByER8" +01/16/2018,Sports_celeb,@Bharper3407,"RT @LDSquotable: ""The best is yet to come."" - President Eyring" +01/09/2018,Sports_celeb,@Bharper3407,Wow..True freshman to True freshman to win the National Championship!🙌🏻 #RollTideRoll +01/05/2018,Sports_celeb,@Bharper3407,Pops was money today!🔥 #Soonish https://t.co/CYyrZz2r9M +01/04/2018,Sports_celeb,@Bharper3407,"Decided to bundle up, go to the mountains and take some photos in the snow! Enjoying this cold… https://t.co/6d6izKc4SF" +01/03/2018,Sports_celeb,@Bharper3407,"I grew up loving Gordon B. Hinkley, but was a little to young to understand what a prophet was… https://t.co/9tHNfI7zuA" +01/01/2018,Sports_celeb,@Bharper3407,Happy New Years from The Harpers!🎉🤟🏼 #2018 https://t.co/0crHouhBdB +12/31/2017,Sports_celeb,@Bharper3407,Who’s ready for New Years Eve Las Vegas style? The crew over @stitchedlife got me covered as always! ❌❌❌❌ #nye2017 https://t.co/T0GUMMe7yF +12/29/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Sorry bout it!! We are for real! #BoldInGold #GoKnightsGo +12/28/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: 50!!! Yeah 50!!! @GoldenKnights https://t.co/laeqjZ9SZz +12/28/2017,Sports_celeb,@Bharper3407,Way to go boys!🙌🏻 #GoKnightsGo +12/27/2017,Sports_celeb,@Bharper3407,Why don’t the @Nationals have a jersey that says The District across it like the @WashWizards jerseys? That new “ci… https://t.co/K247NQZk6F +12/25/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: Merry Christmas Everyone 🎄❤️ https://t.co/JIZ8rQ098I +12/25/2017,Sports_celeb,@Bharper3407,Merry Christmas to my amazing parents. They deserve the world! Want to give a huge shout out to @polarisorv for mak… https://t.co/sFqYEccEkK +12/25/2017,Sports_celeb,@Bharper3407,Merry Christmas y’all!🎄❄️☃️ https://t.co/r1wjjRDZRz +12/24/2017,Sports_celeb,@Bharper3407,“I need some pool toys!” Nate Schmidt #GoKnightsGo https://t.co/zk88DTDr5p +12/23/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Can’t wait for the @GoldenKnights game tonight!! Hope we can convert some of the @Nationals fans? #GoKnightsGo +12/23/2017,Sports_celeb,@Bharper3407,"RT @GoldenKnights: The tradition of Festivus begins with the airing of...a Golden Knights hockey game, presented by @Topgolf. https://t.co/…" +12/20/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Holy shit what a game!! What a team! What a league!! #VGK @GoldenKnights +12/20/2017,Sports_celeb,@Bharper3407,WOW!!!!!😮 @GoldenKnights +12/20/2017,Sports_celeb,@Bharper3407,Boom baby!!! Go Knights Go🙌🏻 #VegasHockey +12/16/2017,Sports_celeb,@Bharper3407,"One year ago today I married my best friend! Your smile, laugh, freckles, and appetite has stolen my heart each and… https://t.co/dFuGj7n75O" +12/16/2017,Sports_celeb,@Bharper3407,"RT @DuckFootball: ""This is so much more than a game to me,"" said Tyrell Crosby, who will wear No. 58 Saturday to honor the shooting victims…" +12/14/2017,Sports_celeb,@Bharper3407,Temple Square last night!🙌🏻🎄 #SLC https://t.co/lbQbJ2k8sA +12/14/2017,Sports_celeb,@Bharper3407,"RT @Nationals: Bryce Harper was one of the top trending @MLB players of 2017 according to #YearInSearch. + +🔗: https://t.co/oM0srJUPsP https:…" +12/08/2017,Sports_celeb,@Bharper3407,"RT @DanielPlatzman: That time @benamckee and I sang “Viva Las Vegas” with @Bharper3407 into @MrTeller ‘s mic +#vegasstrong https://t.co/AUyi…" +12/08/2017,Sports_celeb,@Bharper3407,And it has started. I couldn’t care less what anybody says! The @LasVegasNFR is the greatest event of the year!🐎🐃 #CowboyUp +12/06/2017,Sports_celeb,@Bharper3407,RT @NASCARONFOX: Kurt Busch and Bryce Harper are #VegasStrong. https://t.co/cs7lwG94C2 +12/06/2017,Sports_celeb,@Bharper3407,I see you @RealDealBeal23 with the 51!😱 #DCfamily +12/06/2017,Sports_celeb,@Bharper3407,RT @RyanShazier: Thank you for the prayers. Your support is uplifting to me and my family. #SHALIEVE +12/05/2017,Sports_celeb,@Bharper3407,RT @Nationals: Join @Bharper3407 in helping to keep #VegasStrong! https://t.co/f0XjwRYRWG +12/05/2017,Sports_celeb,@Bharper3407,Prayers out to @RyanShazier!🙏🏼 #THE +12/03/2017,Sports_celeb,@Bharper3407,Eric Harlow the hero we all need!🌰 #TurfForDays #THE +12/02/2017,Sports_celeb,@Bharper3407,#VegasStrong https://t.co/opk3uk8TLH +11/29/2017,Sports_celeb,@Bharper3407,Show your support for #Vegas with an evening of incredible entertainment at the #VegasStrong Benefit Concert at… https://t.co/Qo9TGu9eXh +11/26/2017,Sports_celeb,@Bharper3407,RT @brittharppete: Hi friends!!! Go vote today please! Today and everyday!!! She’s the best! https://t.co/8rOBD7xp7f +11/26/2017,Sports_celeb,@Bharper3407,Best thing I’ve seen in a long time! On top of that @ovi8 with the hat trick for him was icing on the cake🎂… https://t.co/NkqZ1LSO0m +11/25/2017,Sports_celeb,@Bharper3407,RT @DickieV: @Bharper3407 Ppl in basketball better keep a keen eye on @SharkTank702 @Bharper3407 is a big hoops fan / I just want to be Bry… +11/25/2017,Sports_celeb,@Bharper3407,Great win by the boys tonight..Vegas is turning gold!🙌🏻 #GoKnightsGo https://t.co/2au0RgdVTM +11/20/2017,Sports_celeb,@Bharper3407,#GoKnightsGo +11/19/2017,Sports_celeb,@Bharper3407,"RT @NASCAR: ""I wanna be a race car driver some day."" — @DaleJr + +#Appreci88ion https://t.co/IVL48O4aUz" +11/19/2017,Sports_celeb,@Bharper3407,"RT @momofsevenMOS: @Bharper3407 @Nationals @MLB @NASCAR Thank you so much Bryce, and thank you for all you do for the kids! Vote everyday u…" +11/19/2017,Sports_celeb,@Bharper3407,"Calling all @Nationals, @MLB, @NASCAR, and my fans please take 2 min to vote for my friend Tammy Richardson!… https://t.co/6jgEkUlv1A" +11/17/2017,Sports_celeb,@Bharper3407,RT @nationwide88: Throwing it back to when @DaleJr met @Bharper3407 at @DISupdates. #CelebrateThe88 https://t.co/EOBouYdWzE +11/16/2017,Sports_celeb,@Bharper3407,The @unlvrebelgirls need your vote. There are only two teams left in the competition! Head to… https://t.co/20ftkBUF8t +11/11/2017,Sports_celeb,@Bharper3407,"Congrats to @Holts170 for career win number 200. What an amazing accomplishment, but of course many more to come!🙌🏻 #Caps" +11/06/2017,Sports_celeb,@Bharper3407,Man @KirkCousins8 you’re a stud!🙌🏻 #DCfamily +11/01/2017,Sports_celeb,@Bharper3407,I gotta say that’s a pretty good flip🙌🏻😂 What a stud! https://t.co/KWBTRSDD94 +10/30/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: O-H https://t.co/WrRo7Ey66Y +10/28/2017,Sports_celeb,@Bharper3407,Big time win by @OhioStateFB and big time day by @JT_theQB4th!💯🌰 #OH +10/28/2017,Sports_celeb,@Bharper3407,Boom!!🔥 #OH +10/25/2017,Sports_celeb,@Bharper3407,Me and the wife (@kayyharper8) had a great time tonight at our first @GoldenKnights game! Thanks for having us🙌🏻… https://t.co/PRpboTiUrA +10/24/2017,Sports_celeb,@Bharper3407,Pops trippin man! #findjujusbike✌🏼 @TeamJuJu https://t.co/wAasAMCFOA +10/07/2017,Sports_celeb,@Bharper3407,"RT @Nationals: To offer support or make a donation, please visit https://t.co/iKCYv8FdOI. + +#VegasStrong https://t.co/o8Z90Cl4V7" +10/05/2017,Sports_celeb,@Bharper3407,Vegas this is for you!💯 #VegasStrong https://t.co/QujvvVOMc6 +10/05/2017,Sports_celeb,@Bharper3407,RT @masnNationals: #Nats @Bharper3407 in a #VegasStrong hoodie during today's workout. #IBackTheNats https://t.co/MeFz8SIc8a +10/04/2017,Sports_celeb,@Bharper3407,What a first inning!🔥 #YankeesTwins +10/03/2017,Sports_celeb,@Bharper3407,RT @bigleaguestew: Give credit where it's due -- that was @Bharper3407's idea for baseball. https://t.co/8sTPxw3iNS +10/03/2017,Sports_celeb,@Bharper3407,Yes the @NBA did!🤔 #HarperThoughts https://t.co/eCpNkHnYK3 +10/03/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: #PrayersForLasVegas #RT #GodBless https://t.co/8LKxDb3hFL +10/02/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: Whole Foods on GVP a donation center right now. UHaul truck full of water and snacks. #PrayersForVegas +10/02/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: 7 hr wait at the United Blood Service in Henderson. Not turning away but recommending to come back tomorrow and rest of… +10/02/2017,Sports_celeb,@Bharper3407,RT @Rebeksy: Don't play politics w/ OUR city. Just HELP. Donate blood. Volunteer at a donation center. Watch someone's kid so they can dona… +10/02/2017,Sports_celeb,@Bharper3407,RT @kayyharper8: https://t.co/oDvjYX0k2f +10/02/2017,Sports_celeb,@Bharper3407,...My thoughts and prayers go out to the families that have been affected by this and to all the people that have l… https://t.co/LXtXKdYGPv +10/02/2017,Sports_celeb,@Bharper3407,The pride of Vegas runs deep when you are born and raised in such a great town. I can't fathom the horrific event that has taken place! ... +09/19/2017,Sports_celeb,@Bharper3407,RT @SVogt1229: Anyone that can help please let me know!!! https://t.co/rkqVwy9Ht2 +09/18/2017,Sports_celeb,@Bharper3407,Oh how I've missed this feeling!🔥 #5oclockplayer https://t.co/2hwsLn2Jwe +09/17/2017,Sports_celeb,@Bharper3407,15 in a 30!🔥 https://t.co/VG7UutKwjI +09/16/2017,Sports_celeb,@Bharper3407,RT @UnderArmour: From one slugger to another. @Bharper3407 shows his support for @canelo in advance of tonight’s title bout. #TeamUA #IWILL… +09/14/2017,Sports_celeb,@Bharper3407,"RT @barstoolsports: Whoever runs the Vegas Golden Knights Twitter account is a savage +https://t.co/rw1equO2Js https://t.co/Yg2Lgn9d51" +09/12/2017,Sports_celeb,@Bharper3407,RT @carolmaloney4: A story I've wanted to bring to the screen for 3 years now.. coming up on NBC4 later tonight. @Bharper3407 https://t.co… +09/11/2017,Sports_celeb,@Bharper3407,RT @masnNationals: Watch @Bharper3407 chat in the clubhouse after the #Nats clinched the NL East title! https://t.co/TDUV2IhI07 #IBackTheNa… +09/10/2017,Sports_celeb,@Bharper3407,RT @Nationals: ARE YOU NOT ENTERTAINED?! https://t.co/3XQiLSe1R6 +09/10/2017,Sports_celeb,@Bharper3407,#WeDemBoyz +09/09/2017,Sports_celeb,@Bharper3407,Congrats to @SloaneStephens on her win at the @usopen! What an incredible job she did🙌🏻 #UAfamily +08/31/2017,Sports_celeb,@Bharper3407,RT @Brutus_Buckeye: @Bharper3407 I-O from your FAVORITE 🌰!!!! 😉 #GoBucks https://t.co/XCPf5zJh31 +08/31/2017,Sports_celeb,@Bharper3407,O-H😜 #BuckeyeNation +08/30/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: The UA #Harper2 “Silent Service” Edition. Built with every weapon to light it up. + +Light up your game: https://t.co/71sQCU…" +08/28/2017,Sports_celeb,@Bharper3407,RT @Nationals: Be like @Bharper3407. Show us a photo of you with your favorite Starting Lineup figure today! https://t.co/JXRGQQg3A4 https:… +08/27/2017,Sports_celeb,@Bharper3407,They are both rich. They are both insanely good at what they do. And Floyd is the best ever! What a fight💯 #MayweatherMcGregor +08/26/2017,Sports_celeb,@Bharper3407,Come on Big Kid!🙌🏻 #PlayersWeeked https://t.co/8I5sipQxfe +08/26/2017,Sports_celeb,@Bharper3407,Favorite Emoji's and the Lumber!🙌🏻🍑🔥😂 #PlayersWeekend https://t.co/riqIDCuqE1 +08/26/2017,Sports_celeb,@Bharper3407,Tie Dye!🌈 #PlayersWeeked https://t.co/1oLVnjMH3D +08/26/2017,Sports_celeb,@Bharper3407,Eye of the Tiger!🐯 #PlayersWeeked https://t.co/ToXTwrYAqE +08/25/2017,Sports_celeb,@Bharper3407,Just landed in DC! Great scheduling👍🏻 +08/24/2017,Sports_celeb,@Bharper3407,"RT @Nationals: The @Bharper3407 Starting Lineup commercial '90s kids never knew they've always wanted. + +🎟️: https://t.co/mivoNHSUD0 https:…" +08/24/2017,Sports_celeb,@Bharper3407,Where's Billy Chapel when you need him?😳 #YanksTigers +08/22/2017,Sports_celeb,@Bharper3407,Baseball I miss you! https://t.co/l0JZoaQFwF +08/18/2017,Sports_celeb,@Bharper3407,"RT @theknot: Exclusive! MLB player Bryce Harper and his wife, Kayla, tell us everything about their wedding. See the album: https://t.co/g0…" +08/09/2017,Sports_celeb,@Bharper3407,"RT @MLB: Your favorite stars, their favorite gear. + +Get to know @MLB stars even better on #PlayersWeekend. https://t.co/Ydk9bZHkOf https://…" +08/01/2017,Sports_celeb,@Bharper3407,The Harper 2's ready to light it up for you! Head to the link to pick yours up today🔥 https://t.co/bSo6Kcq23y https://t.co/aDDeTs09M9 +08/01/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: 8/1 is near, and @Bharper3407 wants to know if you’ve signed up to get the #Harper2. + +https://t.co/4zJ8BlG8yf https://t.co/…" +07/29/2017,Sports_celeb,@Bharper3407,So proud to have the UA All-Americans lacing up the Harper 2's tonight in Chicago! Go get em fellas #uaallamerica https://t.co/LnFB6F9Q0Q +07/27/2017,Sports_celeb,@Bharper3407,"RT @Logic301: @Bharper3407 fam, just go from 5AM to I am the greatest. Or ballin. Keep killin it!" +07/27/2017,Sports_celeb,@Bharper3407,USA USA USA!!!!🇺🇸 #GoldCup +07/26/2017,Sports_celeb,@Bharper3407,@SharkWeek YUP!!!👋🏻 +07/26/2017,Sports_celeb,@Bharper3407,Shark week!! So epic🙌🏻 https://t.co/foj7L85AJF +07/24/2017,Sports_celeb,@Bharper3407,RT @barrysvrluga: Bryce Harper was taken first overall. Bryan Harper was taken 907th. Two brothers. Two paths. Teammates some day? https://… +07/19/2017,Sports_celeb,@Bharper3407,"RT @Cut4: Yunel Escobar greeted former teammate @Bharper3407 with the ol' ""slide the hand off the bag"" trick: https://t.co/6didTytUGd https…" +07/15/2017,Sports_celeb,@Bharper3407,Doubles in tennis has got to be one of my favorite events in sports! Watch your face💥💯 #Wimbledon2017 +07/12/2017,Sports_celeb,@Bharper3407,"RT @nflnetwork: We see you, @Bharper3407! https://t.co/hLIJ4GpKFQ" +07/12/2017,Sports_celeb,@Bharper3407,RT @SInow: Yadi did the hair flip in front of Bryce Harper 😂 https://t.co/2hgVqlC3yl +07/11/2017,Sports_celeb,@Bharper3407,For you Nino!💯 #JDF https://t.co/jBWxNERwjs +07/11/2017,Sports_celeb,@Bharper3407,RT @MLB: #MiamiBryce and his wife looking stellar on the #ASGRedCarpet. https://t.co/qOdR3HJPWG +07/11/2017,Sports_celeb,@Bharper3407,I grew this facial hair for fun! #Miami https://t.co/MHbkDbhEw2 +07/11/2017,Sports_celeb,@Bharper3407,RT @UnderArmour: .@Bharper3407 knows how to throw a party. Introducing the Miami Bryce #Harper2. #ASG https://t.co/ZYKsQuI1Z9 +07/06/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: In 4 days, we flip the switch and unleash the all-new UA #Harper2. + +Sign up for updates now: https://t.co/sD9hsr2vbm https:…" +07/06/2017,Sports_celeb,@Bharper3407,"RT @Nationals: Only 3 hours left to #VoteRendon! + +We're so excited! We're so excited! We're so ... scared... https://t.co/9CUUuSWAd7" +07/06/2017,Sports_celeb,@Bharper3407,Last chance to get your votes in for Sleepy!💯 Let's get it #VoteRENDON https://t.co/CaZJrCmQCf +07/04/2017,Sports_celeb,@Bharper3407,What a Country! Happy 4th of July🇺🇸 #USAUSAUSA https://t.co/1EO3KO4J8W +07/03/2017,Sports_celeb,@Bharper3407,Let's go Nats fans! It's time to get to work💯🙌🏻 #VoteRendon #MLBAllStarGame +06/22/2017,Sports_celeb,@Bharper3407,RT @BryanHarper45: It’s official!! Welcome to the @GoldenKnights MARC-ANDRE FLEURY!!! +06/22/2017,Sports_celeb,@Bharper3407,@MLB take notes on the @NHL's award show..The way it should be done! Celebrate the players💯👌🏻 #AmericasPastime +06/18/2017,Sports_celeb,@Bharper3407,Happy #FathersDay!! Join @neweracap and I in celebrating all dads with the @mlb Father's Day Collection. 🙌🏻🔥 https://t.co/zp8hyGSnOI +06/17/2017,Sports_celeb,@Bharper3407,RT @ABC: This 5-year-old boy has had 3 heart surgeries in his short life. Watch his incredible reaction as he finds out he's leaving the ho… +06/14/2017,Sports_celeb,@Bharper3407,My thoughts & prayers are w/ the victims & their families effected by the senseless act of violence at the Congressional Baseball Practice! +06/14/2017,Sports_celeb,@Bharper3407,RT @Nationals: 💪 #HarpersHeroes https://t.co/2sOuOOSFLb +06/11/2017,Sports_celeb,@Bharper3407,Let's go USA!!!🇺🇸⚽️ +06/11/2017,Sports_celeb,@Bharper3407,Nationals Dream Gala! What an incredible night out👏🏻 #Table1 https://t.co/qdrNjI4BdA +05/29/2017,Sports_celeb,@Bharper3407,RT @SoConSports: When you realize there's four more games tomorrow #currentmood #SoConBB https://t.co/vM4WBaczcT +05/29/2017,Sports_celeb,@Bharper3407,"RT @UABaseball: In order to honor those who have served, @Bharper3407 debuted the #Harper2 this weekend. + +Sign up & get details: https://t.…" +05/27/2017,Sports_celeb,@Bharper3407,The HARPER 2 coming at you! Memorial Day edition🙌🏻🔥 https://t.co/uGtpGMJNfL +05/27/2017,Sports_celeb,@Bharper3407,"RT @IngrahamAngle: Just now: @Bharper3407 to Little Leaguers: ""I don't care what they say. Winning is good...losing isn't fun. No participa…" +05/27/2017,Sports_celeb,@Bharper3407,This #MemorialDay weekend we honor those who have made the ultimate sacrifice for our freedom !! 🇺🇸 @NewEraCap https://t.co/HTefvPkUDQ +05/24/2017,Sports_celeb,@Bharper3407,Congrats and good luck to the CSN Coyotes baseball team on getting back to Grand Junction! Get you a title boys🙌🏻 #Yotes #JCWS +05/14/2017,Sports_celeb,@Bharper3407,"RT @espnW: ""You held my hand as a child but you will hold my heart forever."" + +@Bharper3407's letter to his mom: https://t.co/cGPFS00knl" +05/13/2017,Sports_celeb,@Bharper3407,"JWall you are an absolute stud! Talk about Clutch..Wow!🏀 On to the next #DCfamily ""I ain't going home"" -@JohnWall" +05/09/2017,Sports_celeb,@Bharper3407,"Dear Mom, I love you!👀❤️U + +https://t.co/i5RS3MIa95" +04/17/2017,Sports_celeb,@Bharper3407,"Baseball games ending in a tie? Sounds like a lot of lost excitement to me⚾️💥 +https://t.co/088Ek350hq" +04/01/2017,Sports_celeb,@Bharper3407,RT @BrodyLogan: Bryce Harper looking like Captain America https://t.co/Zy1xBbDK4T +04/01/2017,Sports_celeb,@Bharper3407,RT @Cut4: Real recognize real. https://t.co/Bl0FJSVwkA +04/01/2017,Sports_celeb,@Bharper3407,"RT @NavyAthletics: From the Brigade of Midshipman, thank you for showing off your talents today @Nationals @Bharper3407 #GoNavy https://t.c…" +04/01/2017,Sports_celeb,@Bharper3407,RT @MLB: .@Bharper3407 showing his support for the troops at the @NavalAcademy. 🇺🇸 https://t.co/5oi6QKtQz1 +04/01/2017,Sports_celeb,@Bharper3407,RT @TMobile: Don't want to miss a game? No problem ⚾ Download the #TMobileTuesdays app for a FREE subscription to @MLBTV Premium. https://t… +03/31/2017,Sports_celeb,@Bharper3407,It's as comfortable as it looks! #TMobileONEsie ! Thanks @JohnLegere and @TMobile! https://t.co/CFdRNa4VBq +03/29/2017,Sports_celeb,@Bharper3407,RT @wapodesign: Wednesday is a Bonus Day for The Post print subscribers. A few of the treats we're delivering – baseball section + extra Fo… +03/26/2017,Sports_celeb,@Bharper3407,Get your #CapsOn ! Head to your local @Lids and step up your cap game with @NewEraCap to get ready for Opening Day… https://t.co/Lv1RL6u3PX +03/21/2017,Sports_celeb,@Bharper3407,The Gramps @D_Ross3 absolutely killed it on his first dance tonight! I see ya👀 #DWTS +03/16/2017,Sports_celeb,@Bharper3407,Riding through last year’s Spring training like @JaguarUSA 💯 #JaguarXE #TBT https://t.co/6f6JffAlze +03/12/2017,Sports_celeb,@Bharper3407,@MStrooo6 you is a baaaaaaddd man!🇺🇸 #StruttinStroman +03/11/2017,Sports_celeb,@Bharper3407,I see you Jonesy!!! USA USA USA🇺🇸 #ForGlory +03/11/2017,Sports_celeb,@Bharper3407,Crawford is way to good! So smooth💯 #USA +03/10/2017,Sports_celeb,@Bharper3407,Good luck to the boys as they start in the @wbcbaseball today! Have some fun and represent The USA well🇺🇸… https://t.co/2OFuamPlL8 +05/22/2018,Sports_celeb,@TheJudge44,Practice makes perfect! 😂 https://t.co/43lokmrVuE +05/11/2018,Sports_celeb,@TheJudge44,RT @KoltenWong: Aloha everybody! Please join my Gofundme campaign in an effort to provide assistance for all those affected by the ongoing… +04/18/2018,Sports_celeb,@TheJudge44,Loving that follow through!! #HRswing 👊👊 https://t.co/6IsZPm8j5J +04/11/2018,Sports_celeb,@TheJudge44,Who loves opening @topps cards?  Did you get to pull this card yet?! #ToppsPartner https://t.co/2GYzc9twP0 +04/04/2018,Sports_celeb,@TheJudge44,@DidiG18 You got me...😂 https://t.co/8hRPyUc296 +04/04/2018,Sports_celeb,@TheJudge44,⚔️⚔️⚔️ https://t.co/UQ41zFdGKM +03/27/2018,Sports_celeb,@TheJudge44,Welcome to the takeover. Can’t wait to rock with @adidasbaseball & rep those 3 stripes! #teamadidas https://t.co/ql93HKKq5M +02/27/2018,Sports_celeb,@TheJudge44,Humbled to be playing with one of baseball's living legends. That doesn't mean I'm going easy on him in @MLBTheShow… https://t.co/DFCnqiubn0 +02/12/2018,Sports_celeb,@TheJudge44,@JakeCave8 Hahaha😂😂 +02/09/2018,Sports_celeb,@TheJudge44,@dbolasky6 @TrentonThunder 😂😂 +02/05/2018,Sports_celeb,@TheJudge44,@TorresGleyber Whoaaa....👨🏽‍⚖️👀 +01/19/2018,Sports_celeb,@TheJudge44,@c_coshow Just wait till spring brotha! 😂 +01/19/2018,Sports_celeb,@TheJudge44,Big shout out to my man @Teacherman1986 Thank you for all the hard work and dedication to transform my swing in 201… https://t.co/koa5ZkZBwn +01/09/2018,Sports_celeb,@TheJudge44,Wow... 👊 @Tuaamann_ +01/09/2018,Sports_celeb,@TheJudge44,@Brett_Phillips8 @PaulieViz Let’s do it!!👊👊 +12/09/2017,Sports_celeb,@TheJudge44,Hey @Giancarlo818....👊 https://t.co/0542MWBIpv +11/19/2017,Sports_celeb,@TheJudge44,"Aye, put a finger in the sky if you want it! #dreamville @JColeNC https://t.co/illsAl3Owc" +11/17/2017,Sports_celeb,@TheJudge44,M-V-P!!! Nobody more deserving than you!! Congrats on an unforgettable 2017!! @JoseAltuve27 https://t.co/tEMy9u8qGc +11/13/2017,Sports_celeb,@TheJudge44,"This week, I had the chance to surprise @Pepsi employees at their office. They gave me a warm welcome as I join the… https://t.co/xNiUNgiwIW" +11/07/2017,Sports_celeb,@TheJudge44,Honored to be on the cover for #TheShow18 @MLBTheShow #ad https://t.co/aNrXVA7k3I https://t.co/yXpvyO0cyN +10/24/2017,Sports_celeb,@TheJudge44,"I would like to thank the Yankees organization, my teammates and the greatest fans in the world for an unforgettabl… https://t.co/Tj3NxKUEjn" +10/04/2017,Sports_celeb,@TheJudge44,RT @DRob30: I've never felt another man's pain more 😂 https://t.co/DNHzXeLjaU +09/30/2017,Sports_celeb,@TheJudge44,@MStrooo6 Much respect @MStrooo6!! Love your fire and passion for this game!! Keep that chip on your shoulder!!👊👊 +09/29/2017,Sports_celeb,@TheJudge44,RT @derekcarrqb: Praying for you @tae15adams ! +09/27/2017,Sports_celeb,@TheJudge44,"RT @YESNetwork: RT if you can't watch this @AaronHicks31 grand slam-robbing catch enough. + +@Yankees #YANKSonYES https://t.co/HOPAw2q0wU" +09/24/2017,Sports_celeb,@TheJudge44,RT @Yankees: We'll give Didi a pass on his postgame tweet tonight. 😂 https://t.co/zTDsG8r5EI +09/24/2017,Sports_celeb,@TheJudge44,2017 postseason #notdoneyet 👎🍾 https://t.co/DJKvuZgzAr +09/20/2017,Sports_celeb,@TheJudge44,👎 https://t.co/iGsaGr4IpJ +09/15/2017,Sports_celeb,@TheJudge44,RT @_tylerwade: 😂😂😂 https://t.co/mQcPJ7oFyw +09/11/2017,Sports_celeb,@TheJudge44,"Best blanket in the game!! +https://t.co/Dq0wkJTjcr 👌 https://t.co/afY4Bio1zV" +08/15/2017,Sports_celeb,@TheJudge44,Hey guys I'm excited to announce I've teamed up with @fanatics as my exclusive memorabilia partner! Check them out!… https://t.co/RD0IRkhFst +07/28/2017,Sports_celeb,@TheJudge44,RT @Yankees: This Gardy Party is LIT. 💯 https://t.co/O9lM1HIcgl +07/22/2017,Sports_celeb,@TheJudge44,Had a great time at @bungie checking out @DestinytheGame 2. Thanks for having us! https://t.co/bRSESpTjwv +07/17/2017,Sports_celeb,@TheJudge44,@rchealy25 @JackieBradleyJr https://t.co/3UlTooRufs +07/06/2017,Sports_celeb,@TheJudge44,RT @Gumbynation34: Everyone vote and get @DidiG18 the the All Star game! #SirDidi4Sure +07/03/2017,Sports_celeb,@TheJudge44,@JakeCave8 Thanks Jake!!🌚👊 +07/03/2017,Sports_celeb,@TheJudge44,"RT @DidiG18: 🛩➡️🏝⚾️🏖??? 🤔 +#SirDidi4Sure" +07/03/2017,Sports_celeb,@TheJudge44,@_KendallColeman Appreciate the love Kendall!!👊 +07/03/2017,Sports_celeb,@TheJudge44,@LuisCessaMx Thanks brotha!👊 +06/28/2017,Sports_celeb,@TheJudge44,RT @_tylerwade: Extremely blessed to have had my dream come true yesterday. Couldn't be more excited for this journey. Thank you to everyon… +05/15/2017,Sports_celeb,@TheJudge44,@T1721Austin 🌚🙌 +05/14/2017,Sports_celeb,@TheJudge44,"RT @CC_Sabathia: Not just a teammate. Not just a friend. You are family. To me, to the Yankees organization, to all of the game of baseball…" +05/06/2017,Sports_celeb,@TheJudge44,😂😂👊 https://t.co/90tZTwGl85 +04/29/2017,Sports_celeb,@TheJudge44,What a game!! https://t.co/LiEfn2x2c5 +04/26/2017,Sports_celeb,@TheJudge44,"RT @PlayersTribune: Voting is LIVE for these three @Yankees. + +Bird: https://t.co/Lb6C8ZAOl8 + +Torreyes: https://t.co/9hQQlk7hlb + +Headley: ht…" +04/16/2017,Sports_celeb,@TheJudge44,Happy Easter everyone! He is Risen! ☀️ +03/27/2017,Sports_celeb,@TheJudge44,RT @LuisSeverino94: Having fun with the guys @DBetances68 @CC_Sabathia @starlincastro12 @TheJudge44 @AaronHicks31 https://t.co/EFoKSXN8vn +03/27/2017,Sports_celeb,@TheJudge44,It's going to be a fun year! #2k17 https://t.co/WwUw0pbKYy +03/19/2017,Sports_celeb,@TheJudge44,@C_Reed24 Please tell me you've listened to this....🔥🔥🔥 https://t.co/EsgrkQas3x +03/18/2017,Sports_celeb,@TheJudge44,Yes!! 🔥🔥🔥 https://t.co/I9488Q0t1t +03/02/2017,Sports_celeb,@TheJudge44,@NEEKSFSU 😂😂👊 +03/02/2017,Sports_celeb,@TheJudge44,@LA_Swiftness yes!!😂👊 +03/02/2017,Sports_celeb,@TheJudge44,RT @T1721Austin: It was a lifelong dream to have my own rookie card! Check it out with 2017 Topps Baseball! #ToppsPartner @Topps https://t.… +03/01/2017,Sports_celeb,@TheJudge44,RT @Topsheff42: Takin in knowledge from big brodie @CC_Sabathia https://t.co/cMgsBWuOX4 +02/26/2017,Sports_celeb,@TheJudge44,@rileyjones23 👊👊 hope all is well brotha! +02/13/2017,Sports_celeb,@TheJudge44,😂😂 love it!! https://t.co/gyxyk7yVCD +02/08/2017,Sports_celeb,@TheJudge44,That feeling you get when you know the boys are back in town!! #ST2K17 ⚾️ https://t.co/GIsTn1g8Kd +02/06/2017,Sports_celeb,@TheJudge44,Every kid dreams for a game like this!!! Wow.....And with that it's time for some baseball!! 👊👊 +02/06/2017,Sports_celeb,@TheJudge44,@thekillaj1986 tell me about it!!! https://t.co/72QezWL7el +02/06/2017,Sports_celeb,@TheJudge44,RT @LA_Swiftness: Brady 🐐 +02/06/2017,Sports_celeb,@TheJudge44,Wow!!😳 +02/06/2017,Sports_celeb,@TheJudge44,@_KendallColeman @MichaelONeill10 https://t.co/8RHnMqdhQz +01/06/2017,Sports_celeb,@TheJudge44,@AndreNichole Hope you enjoy the city! Make sure you check out a Broadway show! 🌃🗽 +01/06/2017,Sports_celeb,@TheJudge44,@Rob_Refsnyder @Khaynes30 Hammer Haynes and Rally Rob here to get you fired up for the 9th inning! +01/05/2017,Sports_celeb,@TheJudge44,@Rob_Refsnyder 🔥🔥 +12/31/2016,Sports_celeb,@TheJudge44,@JoshRogers13 @MichaelONeill10 https://t.co/hUUJpBe7SZ +12/25/2016,Sports_celeb,@TheJudge44,Going to bed knowing it's Christmas tomorrow! 🎄🎅🏼 #ChristmasEve https://t.co/7FnALipx48 +12/25/2016,Sports_celeb,@TheJudge44,@BlakeRuth2 It's a Wonderful Life... https://t.co/GVUa7RVYHf +12/20/2016,Sports_celeb,@TheJudge44,@_tylerwade congrats man! She's one lucky lady! 🌚👏🏽 +12/11/2016,Sports_celeb,@TheJudge44,@JakeCave8 100%🌚 +12/08/2016,Sports_celeb,@TheJudge44,@nciuffo14 😂👊 +12/06/2016,Sports_celeb,@TheJudge44,What a night! Great performance by the @Rockettes! #ChristmasInNewYork https://t.co/To5OifhlVb +11/25/2016,Sports_celeb,@TheJudge44,@24mljones @tai_walker do it!👌 #99 +11/17/2016,Sports_celeb,@TheJudge44,Always fun working on the craft! #arizonalivin https://t.co/y9KRBX9QgO +11/03/2016,Sports_celeb,@TheJudge44,"RT @swbrailriders: Congrats to RailRider Jake Cave, earning the #MiLBY for 2016's Top Home Run! https://t.co/7CenYjFFHF https://t.co/0Zfclz…" +11/01/2016,Sports_celeb,@TheJudge44,Every athlete young and old needs to read this!! Wow! https://t.co/CigCAFybM5 +10/30/2016,Sports_celeb,@TheJudge44,@T_Garrison11 👀👀 whoaaaaa!!! +10/29/2016,Sports_celeb,@TheJudge44,😂😂 https://t.co/9tpBiZBcqD +10/15/2016,Sports_celeb,@TheJudge44,"RT @steinersports: There's no better feeling than meeting your heroes on a beautiful Saturday afternoon. 💯 + +#BabyBombers™ making dreams com…" +10/05/2016,Sports_celeb,@TheJudge44,Thanks for all the amazing support during my @Esurance #CallUpWorthy season in the Bronx. Can’t wait for 2017! https://t.co/uud0Byz9Oz +09/21/2016,Sports_celeb,@TheJudge44,RT @swbrailriders: Torres FLIES TO RIGHT!!! YOUR RAILRIDERS ARE GILDAN TRIPLE-A NATIONAL CHAMPIONS! A 3-1 FINAL IN MEMPHIS! https://t.co/B3… +09/19/2016,Sports_celeb,@TheJudge44,Check out my latest timepiece! Thanks @boldrwatches #warhawk #beboldr https://t.co/rvQKZaPPiJ +09/15/2016,Sports_celeb,@TheJudge44,@theprestonb15 great meeting you yesterday! Good luck in the tourney!👊 +09/09/2016,Sports_celeb,@TheJudge44,Excited to support such a great cause! All proceeds go to the Kids Place in Tampa! https://t.co/GW0puDAlg2 https://t.co/G5foeZr54p +09/09/2016,Sports_celeb,@TheJudge44,RT @Its_all_Goody41: #TA. 👆🏽👆🏽 +08/27/2016,Sports_celeb,@TheJudge44,RT @BenHeller21: Thank you to everyone for the support tonight! Making my debut was even better than what I've always dreamed it of being!… +08/26/2016,Sports_celeb,@TheJudge44,Dreamed of playing ball at the highest level since I was a kid. Honored to be @esurance #CallUpWorthy in The Bronx! https://t.co/nopf4uUBqB +08/19/2016,Sports_celeb,@TheJudge44,No words to describe the moment when you are @esurance #CallUpWorthy Shout out to everyone for the support this week https://t.co/MNXZjg3oIM +08/17/2016,Sports_celeb,@TheJudge44,RT @MLBNetwork: One of the Baby Bombers! The @Yankees' @T1721Austin joins #MLBCentral right now https://t.co/qAA3i5GznI +08/04/2016,Sports_celeb,@TheJudge44,"RT @Its_all_Goody41: BIG CONGRATS to my brother @ElGarySanchez on his first hit! Couldn't be happier!! 2,999 to go #vamo" +08/02/2016,Sports_celeb,@TheJudge44,"Make a difference, Lord willing! https://t.co/oXzYwapR5Y" +07/29/2016,Sports_celeb,@TheJudge44,RT @JDiazZone: @NickSwisher thanks brother!! https://t.co/zMFcYwnf4N +07/04/2016,Sports_celeb,@TheJudge44,RT @ov_1: @TheJudge44 how fun was this night? We won that dinger derby! @CollegeHRDerby https://t.co/Lb0BPVeD5s +06/26/2016,Sports_celeb,@TheJudge44,"RT @MiLB: #Yankees catcher @the_higster has two homers, a career-high seven RBIs for @TrentonThunder. https://t.co/WtbatSqk6R https://t.co/…" +06/25/2016,Sports_celeb,@TheJudge44,What a night!!💪 @T1721Austin https://t.co/YF00wTMeSN +06/16/2016,Sports_celeb,@TheJudge44,RT @Cut4: .@Yankees prospect @JakeCave8 went yard yesterday … onto the roof of an apartment building: https://t.co/P0swXQkcmk https://t.co/… +06/10/2016,Sports_celeb,@TheJudge44,RT @JakeCave8: Some travelaid for this long bus trip @LifeAIDBevCo https://t.co/pnaR1BtXnk +06/09/2016,Sports_celeb,@TheJudge44,#tbt #MLBDraft https://t.co/P95TavuGdd +06/07/2016,Sports_celeb,@TheJudge44,"RT @MiLB: #Yankees No. 8 prospect Tyler Wade is learning second base, leading by example in Double-A https://t.co/OtKsFH95Tj https://t.co/D…" +06/05/2016,Sports_celeb,@TheJudge44,@JakeCave8 🌚... +05/29/2016,Sports_celeb,@TheJudge44,@LA_Swiftness 🤔 #SplashBrothers +05/17/2016,Sports_celeb,@TheJudge44,"RT @YESNetwork: The @Yankees don't just have one player making his MLB debut tonight... + +Introducing: Conor Mullee! #YANKSonYES https://t.c…" +05/12/2016,Sports_celeb,@TheJudge44,#Throwback https://t.co/3beQJpabzL +05/11/2016,Sports_celeb,@TheJudge44,RT @E_Jagielo: 500 retweets and I shave my head! +05/10/2016,Sports_celeb,@TheJudge44,RT @YESNetwork: Ben Gamel records his first career MLB base hit! Better hang onto that ball. #YANKSonYES https://t.co/dfC3IpwbsU +05/10/2016,Sports_celeb,@TheJudge44,Atta boy Benny!! #FirstKnock +05/01/2016,Sports_celeb,@TheJudge44,"RT @TYRadioGuy: T-Yanks @MarkPayton2 (3-for-4, R) recorded his 3rd 3-hit game of the season and is batting .329. #Yankees" +05/01/2016,Sports_celeb,@TheJudge44,RT @TYRadioGuy: T-Yanks @MichaelONeill10 (1-for-3) is now on a 6-game hitting streak and owns a .338 batting average. #Yankees +04/27/2016,Sports_celeb,@TheJudge44,There is nothing better then getting a win on your birthday! Thank you to everyone for the happy birthday wishes. +04/22/2016,Sports_celeb,@TheJudge44,"@TheDA53 anytime brother, glad I could help!" +04/21/2016,Sports_celeb,@TheJudge44,I met a lot of future Yankees tonight! #Railriders @swbrailriders https://t.co/N1DMgtKND6 +04/15/2016,Sports_celeb,@TheJudge44,RT @StevenOleksy: Thank you to the @swbrailriders I had a blast&met some true professionals @TheJudge44 @NickSwisher @heathcott_slade https… +04/15/2016,Sports_celeb,@TheJudge44,RT @the_higster: @TheJudge44 @A_Smitty38 @EvanRutckyj pretty stoked to get on @TheDivisionGame with you guys @Ubisoft https://t.co/h4KfqjtR… +04/14/2016,Sports_celeb,@TheJudge44,What a game! #MambaDay +04/12/2016,Sports_celeb,@TheJudge44,RT @PlayersTribune: The inside stories that define @kobebryant from those who know him best. https://t.co/8OKwBHaeHl https://t.co/tmaORIrE09 +04/10/2016,Sports_celeb,@TheJudge44,@Rob_Refsnyder and I are having a strong debate here and we need some help... +04/04/2016,Sports_celeb,@TheJudge44,@HOHLin1 @watCanBROWNdo4 Thanks Brady!! Hope all is well with you guys! #Pilots +04/04/2016,Sports_celeb,@TheJudge44,RT @swbrailriders: Look who's locker is ready to go....@TheJudge44 #MiLBisback https://t.co/Ko22r5iIYK +03/27/2016,Sports_celeb,@TheJudge44,He is Risen! +03/22/2016,Sports_celeb,@TheJudge44,RT @LoHudYankees: Meet Dan Fiorito: Your favorite prospect's favorite prospect https://t.co/uzcB1n4ZTJ +03/17/2016,Sports_celeb,@TheJudge44,@JakeCave8 we need to talk....🌚 https://t.co/jIU30FNEpW +03/13/2016,Sports_celeb,@TheJudge44,@Fresno_State is going dancing! #GoDogs +03/06/2016,Sports_celeb,@TheJudge44,Go Bolts!! @TBLightning https://t.co/oTekzsaDA4 +03/01/2016,Sports_celeb,@TheJudge44,Thank you @JamesKaprielian and @_tylerwade for locking me and @MichaelONeill10 into the #TheBachelor 🌹 +02/29/2016,Sports_celeb,@TheJudge44,RT @Brett_Phillips8: Oh goodness he's back 😑 that guy has an ugly laugh smh https://t.co/AH5w9xuWRg +02/25/2016,Sports_celeb,@TheJudge44,RT @_tylerwade: Best time of the year is back! #springtraining2016 who's ready ? https://t.co/CrRGxiuxjb +02/24/2016,Sports_celeb,@TheJudge44,@EddyRodriguezU hahaha😂 +02/14/2016,Sports_celeb,@TheJudge44,@SuaveCF1 hahaha stoppp😂 +02/12/2016,Sports_celeb,@TheJudge44,RT @StephenCurry30: Aiming for the back to back. Lacing up in the new #CurryTwo Energy. #PlayForMore. https://t.co/Gx2Wm2en7J +02/11/2016,Sports_celeb,@TheJudge44,RT @JamesKaprielian: Bryson Tiller live as usual @elijahsteen7 @kyleholder22 @TheJudge44 @_tylerwade +02/07/2016,Sports_celeb,@TheJudge44,Yesss!!😂 https://t.co/iKkt0vpVIR +02/07/2016,Sports_celeb,@TheJudge44,@JakeCave8 😢 +01/30/2016,Sports_celeb,@TheJudge44,"RT @TYRadioGuy: Happy #Gasparilla day, #TampaBay!" +01/30/2016,Sports_celeb,@TheJudge44,@jp_crawford I'll see you at Spring Training brother! 💪 +01/19/2016,Sports_celeb,@TheJudge44,@AaronHicks31 @JJRedick 🔥🔥🔥 +01/14/2016,Sports_celeb,@TheJudge44,@Mark_Gawenus @MLB 👌👌 +01/12/2016,Sports_celeb,@TheJudge44,@t_dugas1 🌚 #incredible +01/12/2016,Sports_celeb,@TheJudge44,RT @masonkatz58: Well dang. What a great game +01/12/2016,Sports_celeb,@TheJudge44,@Montanez_10 🤔 +01/12/2016,Sports_celeb,@TheJudge44,"RT @Mike_Anthony13: @TheJudge44 my family sends thanks for being 7foot11 and in yellow, made it easy for them to find me in this😂😂 https://…" +01/12/2016,Sports_celeb,@TheJudge44,@Mike_Anthony13 glad I could help!!😂 haha #bigbird +01/12/2016,Sports_celeb,@TheJudge44,@_tylerwade good call!😎 +01/11/2016,Sports_celeb,@TheJudge44,@t_dugas1 @CoachMurph35 I know you and @A_Smitty38 are #ALLIN too right? +01/11/2016,Sports_celeb,@TheJudge44,@CoachMurph35 🌚 #ALLIN +01/11/2016,Sports_celeb,@TheJudge44,#NationalChampionship  tonight who you guys going for you? #ALLIN  #RollTide +01/10/2016,Sports_celeb,@TheJudge44,RT @MiLB: Color this week's Podcast Red w/guests @E_Jagielo & dir. of player development Jeff Graupe. https://t.co/hl2up15u2x https://t.co/… +01/10/2016,Sports_celeb,@TheJudge44,RT @MLBPipeline: Tons of future stars at @MLB's Rookie Career Development Program. Who can you spot? Top 100: https://t.co/Z9gx7UiSxD https… +01/03/2016,Sports_celeb,@TheJudge44,What a half!! #alamobowl #LeaveItAllOnTheField +12/31/2015,Sports_celeb,@TheJudge44,What a time! #2015 https://t.co/mnPoRn3BYr +12/26/2015,Sports_celeb,@TheJudge44,@Joshuapoytress Merry Christmas poyt! +12/26/2015,Sports_celeb,@TheJudge44,Merry Christmas everyone! Remember the reason for the season and always count your blessings! #MerryChristmas +12/24/2015,Sports_celeb,@TheJudge44,@Stuivailala wrapping!! +12/23/2015,Sports_celeb,@TheJudge44,@jtfiles5 what have you been up to man!? +12/20/2015,Sports_celeb,@TheJudge44,@saigeypoo11 @JakeCave8 @SamBrack_ this is what happens when I get on the keys...🔥🔥🔥 https://t.co/ERpzgVZo89 +12/19/2015,Sports_celeb,@TheJudge44,@JakeCave8 @rutckyj_ the force is strong with this one! +12/19/2015,Sports_celeb,@TheJudge44,Time for #StarWarsTheForceAwakens @rutckyj_ have you seen it yet?!? +12/15/2015,Sports_celeb,@TheJudge44,RT @YESNetwork: #Yankees sign Hall of Famer & 12-time All-Star RF Dave Winfield on this day in 1980: https://t.co/jBy7U56KJq https://t.co/E… +12/15/2015,Sports_celeb,@TheJudge44,@_GBIRD33 @ReverandLorenz 🙌🙌 +12/13/2015,Sports_celeb,@TheJudge44,#monicagotrobbed https://t.co/79qN7yv2iv +12/12/2015,Sports_celeb,@TheJudge44,#monicagotrobbed https://t.co/Gne9YbWrYW +12/10/2015,Sports_celeb,@TheJudge44,Congrats to @JakeCave8 and @rutckyj_ ! Gonna miss ya guys but well deserved! #Reds #Braves +12/06/2015,Sports_celeb,@TheJudge44,@rutckyj_ @_GBIRD33 @RollerKyle @the_higster @EA @starwars already got it man!!! We need to play ASAP! +12/06/2015,Sports_celeb,@TheJudge44,"@Munz16 It's a Wonderful Life, come on man!!" +12/06/2015,Sports_celeb,@TheJudge44,Time for the best movie during the holidays!! 🙌 https://t.co/O7g1CCT7JB +12/06/2015,Sports_celeb,@TheJudge44,"@Meyer17A haha we might have to set up a game!! Hope all is well brotha, happy holidays to you as well!" +12/06/2015,Sports_celeb,@TheJudge44,"Getting the arm loose with a football today, where you at @heathcott_slade?! https://t.co/bZUlpJN1Uq" +12/03/2015,Sports_celeb,@TheJudge44,@_GBIRD33 finally!!! #Bird +12/01/2015,Sports_celeb,@TheJudge44,@chuckiefick better late than never!! 😂Hope all is well! +11/26/2015,Sports_celeb,@TheJudge44,RT @Yankees: We are thankful today and every day that we have the greatest fans. #PinstripePride https://t.co/eP0WpCVjJL +11/26/2015,Sports_celeb,@TheJudge44,"Happy Thanksgiving everyone!! Thankful for my family, friends and all of God's blessings! #HappyThanksgiving 🦃" +11/26/2015,Sports_celeb,@TheJudge44,@JakeCave8 how's the winter league been?? https://t.co/ecjoETroV5 +11/12/2015,Sports_celeb,@TheJudge44,@MurphsLaws hahaha I was just telling that story the other day!!😂 #Dangit +11/07/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder so you got jokes now...? +11/07/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder great!! Can't wait to stop by!! +10/13/2015,Sports_celeb,@TheJudge44,RT @MLBPipeline: The Great Gary! @Yankees' Sanchez hits 3-run bomb in opening inning of @MLBazFallLeague: http://t.co/0zkSawOOaF http://t.c… +10/06/2015,Sports_celeb,@TheJudge44,RT @Yankees: The #WildCard scene is set. #ChaseFor28 http://t.co/ax0lQKhIbc +10/03/2015,Sports_celeb,@TheJudge44,RT @SuaveCF1: 1st career at bat = 1st career hit #waaaayyyyup #BLESSED 🙏☝️ •… https://t.co/WWhg6ZvfjQ +09/26/2015,Sports_celeb,@TheJudge44,"My friend Lee is running half an IronMan to raise money for a little girl in need named Valeria, please check it out! http://t.co/VrqhHKLkEu" +09/15/2015,Sports_celeb,@TheJudge44,Slade!! #clutch #GreatMohawk +09/13/2015,Sports_celeb,@TheJudge44,@JakeyReed5 you watching this game?!? #UOvsMSU +09/12/2015,Sports_celeb,@TheJudge44,"RT @tylerbeede: ""What no eye has seen, what no ear has heard, and what no human mind has conceived"" — the things God has prepared for those…" +09/11/2015,Sports_celeb,@TheJudge44,RT @MLBNetwork: Never forget. http://t.co/CPZr06ztb2 +09/05/2015,Sports_celeb,@TheJudge44,@applextree thanks for the help tonight! +09/05/2015,Sports_celeb,@TheJudge44,RT @MiLB: Now on http://t.co/h5NSY7VuJN: Ben Gamel comes up with a diving catch for @swbrailriders. http://t.co/DszgWBi5ae +09/04/2015,Sports_celeb,@TheJudge44,RT @Its_all_Goody41: champagne showers @swbrailriders @GrantCagle2 @johnny_barbato @heathcott_slade @TheJudge44 @blail3 @SnapDragonMonty ht… +09/03/2015,Sports_celeb,@TheJudge44,RT @SuaveCF1: Thanks for making this road easier for me Brother #prepared #selfless #relentless https://t.co/9tTOEGcBnq +09/01/2015,Sports_celeb,@TheJudge44,"RT @YankeesPR: INF/OF Ackley, RHP Bailey, RHP Cotham, OF Noel, LHP Pazos, INF Pirela, INF Refsnyder & C Romine will be added to the active …" +08/31/2015,Sports_celeb,@TheJudge44,RT @TampaYankees: Congrats @MichaelONeill10 & @Gumbynation34 - The @FloridaStateLg Player & Pitcher of the Week! http://t.co/IFNbOWypb3 htt… +08/31/2015,Sports_celeb,@TheJudge44,RT @YankeesonDemand: Outfielder Ben Gamel has had a breakout season with the @swbrailriders: http://t.co/RA8tPlCDnM http://t.co/2V07YsPBDD +08/27/2015,Sports_celeb,@TheJudge44,@sean__ob great seeing you as well OB!! #BrewCrew +08/25/2015,Sports_celeb,@TheJudge44,@Rob_Refsnyder http://t.co/6QgG3Cb6L1 +08/24/2015,Sports_celeb,@TheJudge44,It's always great having a Yankee legend in town!! #MrOctober http://t.co/TZkg2yzikC +08/23/2015,Sports_celeb,@TheJudge44,"Thank you @Khaynes30 for showing me @getpopkey, if you don't have it yet you are missing out!! #gamechanger" +08/23/2015,Sports_celeb,@TheJudge44,RT @Justan_Mitchell: We'll stick to chocolate @DippinDots @TheJudge44 #Homer #Bombs +08/20/2015,Sports_celeb,@TheJudge44,RT @SportsNation: Yankees fans this morning #BirdIsTheWord https://t.co/lGxcT4zMMn +07/01/2018,Sports_celeb,@davidortiz,Grand Slam for my boy Rafael Devers and another great pitching performance by Chris Sale. Collect these great… https://t.co/ntdeiX2mZ3 +06/29/2018,Sports_celeb,@davidortiz,July 14th @ Fenway!! https://t.co/lOfHjT9lrk https://t.co/p8bXXYUw3h +06/28/2018,Sports_celeb,@davidortiz,JD Martinez continues to rakeee... no. 25 for my boy FLACO! Collect this great #TOPPSNOW moment for a limited time:… https://t.co/PjeI47FZXf +06/23/2018,Sports_celeb,@davidortiz,Hate 2 hear it...RIP 🙏🏿 https://t.co/SJOIt34DZF +06/23/2018,Sports_celeb,@davidortiz,Look out for Trout! He’s on his way to be one of the best. Check out these stats on this #TOPPSNOW card… https://t.co/NV3FIDGTAS +06/22/2018,Sports_celeb,@davidortiz,Summer. Baseball. Hanging with my boys. There are plenty of reasons to spark up the grill with @Kingsford. What’s y… https://t.co/QVUzMfLbID +06/21/2018,Sports_celeb,@davidortiz,Yesssir!! @toriihunter48 https://t.co/OwoRgHTbwJ +06/21/2018,Sports_celeb,@davidortiz,"RT @RedSox: A tribute to #NationalSelfieDay: + +First up, a 🐐 selfie... https://t.co/CNRniXAeyT" +06/15/2018,Sports_celeb,@davidortiz,This weekend only 😎 https://t.co/M6OCwbAaMe https://t.co/vaNX4sLZOV +06/15/2018,Sports_celeb,@davidortiz,Lookin forward 2 seeing the final product...check us out... https://t.co/CL56uEtfuc +06/14/2018,Sports_celeb,@davidortiz,Big news to share. I’m comin back to the game to work for @Topps. Check me out this season as the new lead scout fo… https://t.co/Ivy0M374ZN +06/13/2018,Sports_celeb,@davidortiz,My pleasure https://t.co/lZpLmLCzPa +06/13/2018,Sports_celeb,@davidortiz,LAST CHANCE! U & and guest are invited to golf with me @simplyaj10 n @joshwolfcomedy in the Dominican Republic. Thr… https://t.co/bx2rpNyWls +06/09/2018,Sports_celeb,@davidortiz,"Being a Father is not easy man 😂 but there is nothing better than getting to be a dad... + +make sure you show you da… https://t.co/xsZtrozDYv" +06/09/2018,Sports_celeb,@davidortiz,Love it when u call me big papi. Get the shirt n save lives: https://t.co/cdUaP5864D https://t.co/TJkswtG6Np +06/08/2018,Sports_celeb,@davidortiz,"RT @YankeeSpirits: Meet baseball legend, David ""Big Papi"" Ortiz! Just purchase one of 250 mixed cases of Arias Wine from the Yankee Spirits…" +06/07/2018,Sports_celeb,@davidortiz,I love golfing with my boys @joshwolfcomedy & @SimplyAJ10 but would RATHER hang with you this year. Enter an all-ex… https://t.co/IqEnbP4zRB +06/04/2018,Sports_celeb,@davidortiz,back home...en la casaaaa https://t.co/pPBe57hyz1 +06/02/2018,Sports_celeb,@davidortiz,Album drops Father’s Day 😂😂 Get the shirt + help raise $ for children in need: https://t.co/cdUaP5864D https://t.co/n8f0f0EfwE +06/01/2018,Sports_celeb,@davidortiz,Did u enter?? Win an all expenses paid trip for 2 to golf with me @SimplyAJ10 & @joshwolfcomedy in the Dominican Re… https://t.co/V80kgzDvZU +05/25/2018,Sports_celeb,@davidortiz,"20% ALL weekend! Use code: memorialday20 + +🇺🇸 https://t.co/zNMsaBLYqJ https://t.co/PGiJgoKlZ2" +05/22/2018,Sports_celeb,@davidortiz,Big news....Me n my boys @joshwolfcomedy & @SimplyAJ10 want you to win the #bestfathersdayever. Join us for an all… https://t.co/rztFZ9Dt6J +05/19/2018,Sports_celeb,@davidortiz,👉👉 https://t.co/HukDADNmOu 👈 👈 https://t.co/S373hv32uB +05/16/2018,Sports_celeb,@davidortiz,Lets get ittt ☘️☘️☘️ https://t.co/xteMOaGjBO +05/15/2018,Sports_celeb,@davidortiz,Back home... https://t.co/P23VnMM8NY +05/10/2018,Sports_celeb,@davidortiz,¿Quień me acompañará en la parrillada de @Kingsford antes de los partidos de béisbol esta semana? #Patrocinado https://t.co/dipzaYSNt4 +05/05/2018,Sports_celeb,@davidortiz,My brother super proud of calling my self your friend and being able to play and watch one of the best that ever pl… https://t.co/0tsN2ckEwh +05/02/2018,Sports_celeb,@davidortiz,Mookie....😳😳😳 +05/01/2018,Sports_celeb,@davidortiz,Check this out!!!! https://t.co/g7SzjcUAks +04/26/2018,Sports_celeb,@davidortiz,Life's good. #XLStyle https://t.co/KrKn9weqHW https://t.co/XA1KeQ6LDN +04/26/2018,Sports_celeb,@davidortiz,"RT @DavidOrtizFund: #Teampapi completed the @BostonMarathon collectively raising $145,957 for 29 ❤️ surgeries. Let’s push 1️⃣ more mile for…" +04/24/2018,Sports_celeb,@davidortiz,Feel like the environment is in the bottom of the 9th? Make sure green wins by voting to help 4 earth-friendly caus… https://t.co/3YO4pdmd7j +04/24/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: Day 2 of the #TheBigPapiStory jersey sweepstakes with @DavidOrtiz. + +Follow this link to enter: https://t.co/wTzrtcp7ZX…" +04/24/2018,Sports_celeb,@davidortiz,RT @Bachy5: Just got my @davidortiz gear and love it. Check it out and definitely make a purchase at https://t.co/1QMMpNPZwQ! #GR34TNESS #B… +04/23/2018,Sports_celeb,@davidortiz,PapiFit #XLStyle https://t.co/8KohrmPeFS +04/23/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: The curse was broken. @DavidOrtiz was a big reason why. + +Check out #TheBigPapiStory on @ApplePodcasts: https://t.co/5x…" +04/21/2018,Sports_celeb,@davidortiz,Uptown girl and a kid from the Dominican. Great time last nite @ #MLBfoodfest @SeaBrinkley proud partner… https://t.co/NONbxooAsP +04/20/2018,Sports_celeb,@davidortiz,@DougFlutie and I want to wish a happy 200th birthday to our friends at @easternbank ...celebrate with us and comme… https://t.co/GNIzXfudLF +04/20/2018,Sports_celeb,@davidortiz,"RT @RedSox: [Insert tweet about Mookie’s leadoff HR, Devers’ 3-hit night, E-Rod’s quality start, another sweep, the 16th win, etc.] https:/…" +04/19/2018,Sports_celeb,@davidortiz,"RT @SpotifyUSA: From growing up in the Dominican Republic to becoming a @RedSox legend, listen to the in-depth story of @davidortiz in #The…" +04/19/2018,Sports_celeb,@davidortiz,"Sharing some of my raw and unscripted thoughts on the marathon bombing, as we remember the victims and everyone sti… https://t.co/NZ9EVVfTz2" +04/19/2018,Sports_celeb,@davidortiz,Beautiful day at home cleaning my toys 🌞 https://t.co/E48JuETkf8 +04/18/2018,Sports_celeb,@davidortiz,Finally....style meets comfort. #XLStyle https://t.co/KrKn9weqHW https://t.co/qIscF9sH3t +04/18/2018,Sports_celeb,@davidortiz,My journey to #Fenway was not an easy one but I’m very thankful for my compadre @45PedroMartinez .. If it weren’t f… https://t.co/B4Sa6wVbPN +04/17/2018,Sports_celeb,@davidortiz,"RT @PlayersTribune: .@DavidOrtiz recalls how the #BostonMarathon bombing gave @RedSox motivation to ""kick ass"" that season. + +Subscribe now…" +04/17/2018,Sports_celeb,@davidortiz,I wanna see if this kid Ohtani is really thaaat good tonite against MY boys.... +04/17/2018,Sports_celeb,@davidortiz,"Coming to the U.S. meant more than just an education in baseball, it meant learning a whole new way of life. David… https://t.co/llkwRpLf1Q" +04/16/2018,Sports_celeb,@davidortiz,I was just a kid from Santo Domingo 🇩🇴 with a dream of playing #baseball. Let’s start at The Beginning. David Orti… https://t.co/SjvZLs2Eux +04/16/2018,Sports_celeb,@davidortiz,TeamPapi - @bostonmarathon - COMPLETE!!! Dayle Solomont Hillary Throckmorton n Roberta Ruiz bringing us home!!! ver… https://t.co/6zxVAMHSD7 +04/16/2018,Sports_celeb,@davidortiz,another wave of TeamPapi finishes the @bostonmarathon ...way to go Nick Jacoby Sergio Tortora Demetri Tsolakis Jill… https://t.co/XK8KKNXdxH +04/16/2018,Sports_celeb,@davidortiz,Team Papi starting 2 finish the @bostonmarathon ...congrats Daron Holloway Brian Reh n Craig Wilke. Job well done. #pinchrunforpapi +04/16/2018,Sports_celeb,@davidortiz,Proudly cheering my Pinch Runners in the Boston Marathon today. Stay safe n know Papi is behind u all the way. Get… https://t.co/bUzbK6j5LR +04/15/2018,Sports_celeb,@davidortiz,Go C’s 🍀 +04/15/2018,Sports_celeb,@davidortiz,5 years later IT’S STILL OUR F*ING CITY! Help @RobGronkowski and me raise money for the kids of Boston and get your… https://t.co/JRqheAvftB +04/13/2018,Sports_celeb,@davidortiz,"Coming soon: My journey, my story. David Ortiz: The Big Papi Story is out on #PatriotsDay. Subscribe now on… https://t.co/KVGE1rnfyT" +04/13/2018,Sports_celeb,@davidortiz,Proud to team up with one of Boston’s finest....my brother @RobGronkowski ...we created this t-shirt to raise $ for… https://t.co/Eb0n0lQn2U +04/13/2018,Sports_celeb,@davidortiz,10-2....keep it rollinnnn boys 😁😁 +04/12/2018,Sports_celeb,@davidortiz,This rite here gave me chills.. https://t.co/8PElVNh1Yo +04/12/2018,Sports_celeb,@davidortiz,Activo activooo. Feelin good this morning. Travis Scott I see u lil bro 👌🏿👌🏿 https://t.co/nW59A1iW9v +04/11/2018,Sports_celeb,@davidortiz,@SimplyAJ10 know how to have fun but know how to play the game.. giving u a chance to win tickets to the Sox vs Ori… https://t.co/JJ4OblNYs9 +04/10/2018,Sports_celeb,@davidortiz,My #pinchrun4papi campaign rasied over $100K so far and our auction ends today at 6pm EST. Proceeds go to #34 kids… https://t.co/yBLemFtyMv +04/10/2018,Sports_celeb,@davidortiz,"RT @DavidOrtizFund: 🚨 UPDATE Your efforts have helped us raise $101,371 so far. Visit our online auction to bid on exclusive packages inclu…" +04/09/2018,Sports_celeb,@davidortiz,A winning combination. #xlstyle https://t.co/bblsk5gr83 +04/07/2018,Sports_celeb,@davidortiz,Thats my guy!!! https://t.co/hJ9stuNNj3 +04/06/2018,Sports_celeb,@davidortiz,"Look good, feel good. #XLstyle https://t.co/KrKn9weqHW https://t.co/ptTP7uaqB0" +04/06/2018,Sports_celeb,@davidortiz,"Got a couple tickets to Red Sox vs Orioles Sunday, April 15th at Fenway. Go grab gear from my store and I might jus… https://t.co/4YEL29KVQG" +04/05/2018,Sports_celeb,@davidortiz,RT @MLB: Champions. 🏅🏆 https://t.co/fT00umKABQ +04/05/2018,Sports_celeb,@davidortiz,Submit ur little baseball stars best swing for a chance to win a big VIP weekend at the All-Star game with… https://t.co/oHQZfs14QD +04/04/2018,Sports_celeb,@davidortiz,"RT @bigpapiprod: Who's ready for the #SeasonFinale of Big Papi Needs a Job? Tonight, David channels his roots and learns how to salsa from…" +04/04/2018,Sports_celeb,@davidortiz,So happy I could join the kids from the Hurley School today 2 help kick off the season...these caps from @JetBlue n… https://t.co/UXa68ENUMD +04/02/2018,Sports_celeb,@davidortiz,My Style. #XLStyle https://t.co/KrKn9weqHW https://t.co/h71gRGxmvG +03/30/2018,Sports_celeb,@davidortiz,The best brands. Great Styles. Unrivaled fit. That’s DXL. #XLStyle https://t.co/KrKn9weqHW https://t.co/CZk5mnfdnC +03/29/2018,Sports_celeb,@davidortiz,Biggg day for baseball - #OpeningDayisBack! Get ur grills fired up and celebrate with @Kingsford https://t.co/3EYOMkh0oo #Sponsored +03/28/2018,Sports_celeb,@davidortiz,Big Papi the Trainer 😂💪🏿 https://t.co/SOW06LZHEW +03/28/2018,Sports_celeb,@davidortiz,Don’t get stuck in the office – I’ve signed your permission slip to take tomorrow afternoon off to grill and celebr… https://t.co/Yf897qPTg5 +03/26/2018,Sports_celeb,@davidortiz,"Important message from @DavidOrtizFund ...for a LIMITED time, your $150 donation to @DavidOrtizFund earns you a vou… https://t.co/h8EcEeQyeo" +03/23/2018,Sports_celeb,@davidortiz,"RT @FansAuthentic: RT to spread the word! @Fanatics & the @RizzoFoundation, along with our partners, have come together to help the familie…" +03/21/2018,Sports_celeb,@davidortiz,Walk slowly n don't panic they said....but man deconstructing a bomb ain’t that easy!! Thankfully I had the bomb sq… https://t.co/Ooi2D07niM +03/20/2018,Sports_celeb,@davidortiz,I gotta show luv for my boy Tewks...his book comes out today. will make u look at baseball totally different...Nine… https://t.co/NbIy6zKuPt +03/14/2018,Sports_celeb,@davidortiz,U may kno I have my own cigar line... but this week on @fusiontv I'm learning what it takes to actually make them..… https://t.co/tkmLLCUimY +03/14/2018,Sports_celeb,@davidortiz,"RT @RedSox: Chris Sale looking like Chris Sale. + +5.0 IP, 2 H, 0 R, 0 BB, 7 SO https://t.co/i2bdqan5f2" +03/14/2018,Sports_celeb,@davidortiz,Sorry 2 hear this....my prayers are with u and your fam https://t.co/HnxufDPuxO +03/14/2018,Sports_celeb,@davidortiz,#OpeningDayisBack! Check it out and get fired up! https://t.co/3EYOMkh0oo @Kingsford #Sponsored +03/10/2018,Sports_celeb,@davidortiz,spend $50 = FREE t-shirt! https://t.co/wGW4xlNOS9 https://t.co/Xy31elWTSg +03/07/2018,Sports_celeb,@davidortiz,Taste testing @SamuelAdamsBeer in the morning?? Thats my kinda job... #BigPapionFUSION returns tonite @ 8PM ET/PT o… https://t.co/HSsCCQmigw +03/07/2018,Sports_celeb,@davidortiz,Gym flow 💪🏿 https://t.co/BKJ1YZLrHu +03/07/2018,Sports_celeb,@davidortiz,RT @fusiontv: These Little Leaguers will have the coolest story to tell at practice thanks to @DavidOrtiz and his batting cage tips. #BigPa… +03/06/2018,Sports_celeb,@davidortiz,How bout 34 bonus points 😂😂 u better all pass!!!! Much luv https://t.co/7683esVPgK +03/05/2018,Sports_celeb,@davidortiz,Important......ALL proceeds will go to Stoneman Douglas victims. Bid today @Fanatics to win a 60 minute batting les… https://t.co/1Qgi1u7Xqr +03/04/2018,Sports_celeb,@davidortiz,He didn’t like the ‘Yankee’ part of the @TheYankeeCandle 😂😂 but each purchase raises $ for children that need heart… https://t.co/8qFt8P48Lc +03/02/2018,Sports_celeb,@davidortiz,😂😂😂 yall are funny...u def watched the show tho!!! https://t.co/qZQQUyiD4G +03/01/2018,Sports_celeb,@davidortiz,Hurry! Last chance to win tickets to Red Sox vs Yankees March 3rd at Jet Blue Park. Head over to the store while th… https://t.co/QIfn7sQIWn +03/01/2018,Sports_celeb,@davidortiz,It's never too late to support Heart Health Month. Get sum cool merch & help the kids https://t.co/WQawQIjH9q… https://t.co/9jzgsDnnPL +02/28/2018,Sports_celeb,@davidortiz,Running into burning buildings to save lives is one of the many reasons I admire @BostonFire .. I got big boots to… https://t.co/1injJinyIc +02/27/2018,Sports_celeb,@davidortiz,Who wants tickets?! March 3rd @ Jet Blue Park. All you gotta do is grab some gear and I might pick you🌴… https://t.co/JeJ8xbFEFO +02/27/2018,Sports_celeb,@davidortiz,Un día como hoy nuetra patria se convirtio en libre e independiente gracias a esos hombres de orgullo y mucho valor… https://t.co/Us2eghPHfT +02/27/2018,Sports_celeb,@davidortiz,"RT @fusiontv: Is @DavidOrtiz ready for his toughest opponent yet? + +Check out the jobs he'll be doing Wednesdays @ 8PM ET/PT. #BigPapionFUSI…" +02/22/2018,Sports_celeb,@davidortiz,Me and my boy rite here...these Capuchin monkeys are tougher than u think!! Watch my adventure as a zookeeper tonig… https://t.co/cxcGRWLZ78 +02/21/2018,Sports_celeb,@davidortiz,With my man gallo at elite athletes performance doing it + my brother placido polanco #retirenotexpire https://t.co/BGDuzm4oRE +02/17/2018,Sports_celeb,@davidortiz,Ready for the long weekend? Get 25% off everything on my site now thru Monday! #PresidentsDay #PapiApproved… https://t.co/xIQsgr8I8H +02/14/2018,Sports_celeb,@davidortiz,"""If you can’t stand the heat, get out of the kitchen.” Cooking is a hard job bro...check out what I mean on… https://t.co/9H4oXYb3is" +02/14/2018,Sports_celeb,@davidortiz,"RT @fusiontv: Big Papi: ""Man, I'm nervous."" +Customer: 'Whoah, that is not what I want to hear right now."" + +Will @DavidOrtiz make the cut?…" +02/07/2018,Sports_celeb,@davidortiz,Tonite 8pm on @fusiontv #BigPapiOnFusion https://t.co/IYCziUw8KR +02/04/2018,Sports_celeb,@davidortiz,"Who wore it best? Big Papi, the most trusted coach of all time, or the most trusted battery of all time? #notdone… https://t.co/MLwYvIERE8" +02/03/2018,Sports_celeb,@davidortiz,Yuppp @Duracell always does its job. Just like the most trusted coach of all time and my boys in red n blue #letsgo… https://t.co/WDLaamjCo0 +02/01/2018,Sports_celeb,@davidortiz,I see u Danielle!! sounds like the job is #NotDone yet. We ready for #SBLII #FootballFeelings @Bose https://t.co/sHSpTuJs0s +02/01/2018,Sports_celeb,@davidortiz,RT @fusiontv: More cowbell! Watch as #BigPapi @DavidOrtiz learns to play percussion after his @MLB retirement. Tonight is the premiere of #… +01/22/2018,Sports_celeb,@davidortiz,RT @RealBillRussell: Please support @davidortiz wonderful charity and buy a cookbook @ https://t.co/8t83P2n7Mh Lots of NE legends #redsox… +01/12/2018,Sports_celeb,@davidortiz,RT @fusiontv: .@DavidOrtiz is on the job hunt after his @MLB retirement. What job do you think he should pick up? Tweet at us using #BigPap… +01/04/2018,Sports_celeb,@davidortiz,"RT @fusiontv: .@DavidOrtiz officially retired from the baseball field in 2016, but now he's looking for a job #BigPapiOnFUSION https://t.co…" +01/02/2018,Sports_celeb,@davidortiz,RT @FansAuthentic: PUBLIC SIGNING ✍🏾 | #FanaticsExclusive athlete @DavidOrtiz will be appearing @SteinerSportsNY on Jan. 22. 📞(516) 739-058… +01/02/2018,Sports_celeb,@davidortiz,Thx 2 Tiziano De Stefano for the pic #NewProfilePic https://t.co/MkKyz4HQeQ +01/02/2018,Sports_celeb,@davidortiz,This is important!! NEED u all to help out my friend Andy...he needs to get this surgery ASAP. Im making a donation… https://t.co/1buXwxL5zv +12/22/2017,Sports_celeb,@davidortiz,"Cooking With The Pros book is out yall. All my boys involved too... @RobGronkowski, Troy Brown, The Allens,… https://t.co/rVJEg6Wrzf" +12/19/2017,Sports_celeb,@davidortiz,"RT @bigpapiprod: Tune in January 31st at 8pm for #BigPapionFUSION! Check your local listings here: https://t.co/H6atXgA3oV. + +@davidortiz @…" +12/18/2017,Sports_celeb,@davidortiz,Big congrats 2 my boy @kobebryant on the the jersey retirement tonite... well deserved Mamba!!! this video is a gr… https://t.co/yDmbadUffH +12/14/2017,Sports_celeb,@davidortiz,Help Give the Precious Gift of Health to Children in Need. Support the @DavidOrtizFund by purchasing this limited e… https://t.co/UZfqXrk5np +12/12/2017,Sports_celeb,@davidortiz,Perfect holiday gifts...bid on items donated by my boys @NKOTB @BusterPosey @PujolsFive #CarltonFisk n more...$$ go… https://t.co/v11XQF49h9 +12/10/2017,Sports_celeb,@davidortiz,My boy @garysheffield is all about #October2004 😂😂😂. Buy a shirt + save a life: https://t.co/7LQzDOZNuz https://t.co/AwsP0OLYec +12/05/2017,Sports_celeb,@davidortiz,Changing the conversation around mens #XLstyle...how do you XL? Follow @DestinationXL to see more of what we’re doi… https://t.co/CRZKu4pgIm +12/03/2017,Sports_celeb,@davidortiz,"#October2004 Game 7: 3/6, 2 HR, 6 RBI + +Aint no comeback w/out my boy @JohnnyDamon ... + +Save lives + buy an… https://t.co/NAFDrarl0T" +12/03/2017,Sports_celeb,@davidortiz,RT @MLB: The @davidortiz Celebrity Golf Classic = #SquadGoals https://t.co/U7qJyA7iYu +12/02/2017,Sports_celeb,@davidortiz,Only a couple hours left for the auction...help us out!!! 🙏🏿 https://t.co/oa798bZ06w +12/01/2017,Sports_celeb,@davidortiz,Luv u 2 bro...thx for helpin the @DavidOrtizFund https://t.co/dcto2xPnr0 +12/01/2017,Sports_celeb,@davidortiz,. @stoolpresidente @Jared_Carrabis @FeitsBarstool where you at?! Nothin but love for the @Patriots but u forget abo… https://t.co/U5dOVGC4A0 +11/30/2017,Sports_celeb,@davidortiz,Shouts 2 @JustinThomas34 for the auction items...much appreciated bro.. https://t.co/oa798bZ06w +11/30/2017,Sports_celeb,@davidortiz,U better make sure ur checkin https://t.co/oa798bZ06w ....we add new items every day. Just added a great US Open ex… https://t.co/7IovNS6QMY +11/28/2017,Sports_celeb,@davidortiz,I’m excited to help my friends @EasternBank for #GivingTuesday ...were looking for ideas to help Grow the Good in o… https://t.co/bKMXRqnomf +11/28/2017,Sports_celeb,@davidortiz,Its about that time!!! Help us out ... 🙏🏿 https://t.co/9xHePLIUlr? @DavidOrtizFund +11/25/2017,Sports_celeb,@davidortiz,I'm extending my #BlackFriday sales an extra day! Better hurry https://t.co/fNB7KAxVXj #PapiApproved https://t.co/33uojCvmxx +11/24/2017,Sports_celeb,@davidortiz,Happy #BlackFriday! Get FREE wristbands when you shop in my store today: https://t.co/oSUNJNSRg1 https://t.co/cZUneDqBqi +11/22/2017,Sports_celeb,@davidortiz,Hey @AROD ..u had it comin!! #Masterpass 😂😂 https://t.co/u1SuG2WQsI +11/22/2017,Sports_celeb,@davidortiz,It’s time to XL...had to snap the pic!! Check out @DestinationXL to see what we doin... #XLstyle https://t.co/2FPgih5fBJ +11/22/2017,Sports_celeb,@davidortiz,Get your holiday shopping done early! 🎁 https://t.co/VqtX6GXQsV #PapiApproved https://t.co/wi2T7VYWWN +11/17/2017,Sports_celeb,@davidortiz,"RT @ariaswines: You heard it here first, Pumpkin and Cranberry Arias Wine! Get yours while supplies last at https://t.co/8dkPRABeja https:/…" +11/16/2017,Sports_celeb,@davidortiz,"RT @ariaswines: Want insider info from Big Papi, special offers & a chance to win limited edition merch? Sign up for the wine club https://…" +11/16/2017,Sports_celeb,@davidortiz,"RT @isaiahthomas: Grindin all my life. The marathon continues. + +#BookOfIsaiah2, Chapter One: https://t.co/88pDuqiXkT +@NipseyHussle @TeeJa…" +11/16/2017,Sports_celeb,@davidortiz,"Join my official newsletter to get access to exclusive content and all my latest updates! + +Sign up today:… https://t.co/nQkBOQ2A9o" +11/12/2017,Sports_celeb,@davidortiz,‘Frozen ropes’ 😂😂😂😂 https://t.co/jZKovRnG7f +11/10/2017,Sports_celeb,@davidortiz,"RT @bigpapiprod: Some lucky Boston locals giving David ideas for #BigPapiNeedsAJob, airing this fall on @ThisIsFusion. @davidortiz @Matador…" +11/10/2017,Sports_celeb,@davidortiz,RT @SInow: Get ready for Red Sox-inspired hockey jerseys on David Ortiz Night with the AHL’s Thunderbirds https://t.co/3pQfPTnc1z +11/07/2017,Sports_celeb,@davidortiz,RT @ariaswines: Will you be joining us and legends @davidortiz and @RayBourque77 at @TrescaNorthEnd tomorrow? https://t.co/avB4AOnTrf +11/06/2017,Sports_celeb,@davidortiz,It is officially time to XL...u gotta follow them @DestinationXL to keep up with what we got goin on... #XLStyle https://t.co/wVH0F2A6Wv +11/02/2017,Sports_celeb,@davidortiz,H-TOWN EN LA CASA!! congrats to my boys on the win...very deserved ⚾️🏅 https://t.co/DCkU1MlIDi https://t.co/AZU5OG0HKw +11/01/2017,Sports_celeb,@davidortiz,Dodger blue en la casaaa +10/31/2017,Sports_celeb,@davidortiz,Thx for the love @BenReiter https://t.co/JALVWEkCVu +10/30/2017,Sports_celeb,@davidortiz,Boston #smallbiz owners its not easy calling the shots but NOW is ur chance! Enter ur biz @ https://t.co/eSyrdm4kdS #GrowYourBizContest #Ad +10/29/2017,Sports_celeb,@davidortiz,.@BillSimmons thinks I should have my own reality show? Wayy ahead of U man. BIG PAPI NEEDS A JOB premieres on Nov 29th @ 8:30 ET @fusiontv +10/28/2017,Sports_celeb,@davidortiz,"N’that house H town & LA haha... +En la casa H town & LA 😎 + +https://t.co/9htqiirvTg https://t.co/1EOqUXdjcM" +10/28/2017,Sports_celeb,@davidortiz,RT @ariaswines: Join us at @TrescaNorthEnd w/ @davidortiz & @RayBourque77 for a🍷 and cigar night benefiting @DavidOrtizFund & the Bourque F… +10/27/2017,Sports_celeb,@davidortiz,My boys may not be in it but Im still watching this crazy #WorldSeries on FOX with @YouTubeTV. You can 2 → https://t.co/x5WWhJzubt #ytspon +10/27/2017,Sports_celeb,@davidortiz,All smiles #OnThisDay in 2004 with my g unit hat 😆 read why winning in 04 was the most special to me ➡️… https://t.co/or5VIrpV9q +10/26/2017,Sports_celeb,@davidortiz,"RT @MagicJohnson: Hanging out on the FOX set during the World Series with baseball royalty @AROD, Big Papi @davidortiz, @TheBigHurt_35 and…" +10/25/2017,Sports_celeb,@davidortiz,RT @celtics: #GetWellGordon 💚 https://t.co/uKHeuGmfS6 +10/24/2017,Sports_celeb,@davidortiz,"RT @LasMayores: No se pueden olvidar que hoy es #LunesDeLeyenda. +¿Recuerdan el 1er HR del ""Big Papi"" en una #SerieMundial? +¡Qué momento! 😳😎…" +10/21/2017,Sports_celeb,@davidortiz,@kevinburkhardt @SueBnKB @Seratelli @AROD @TheBigHurt_35 Not at all😬...... 5hit haha ...... sorry my fault 🙌🏿 +10/20/2017,Sports_celeb,@davidortiz,It may seem farfetched but I just tried being a dog walker 😂. What should I do next as a #RetirementRookie with… https://t.co/rIxYdcSdjR +10/18/2017,Sports_celeb,@davidortiz,RT @DavidOrtizFund: We're partnering w/@cocacola for the 10th Annual @DavidOrtiz Celebrity Golf Classic Nov 30 - Dec 3. Register here https… +10/17/2017,Sports_celeb,@davidortiz,The list grows...tenemos otra!! join us - https://t.co/bOXSpuCS6Y https://t.co/qU0ASw5tET +10/17/2017,Sports_celeb,@davidortiz,"#OnThisDay in 2004, I had a game changing walk-off. lets see who remembers: https://t.co/GvR5NuBiwQ https://t.co/dwyDEH4xtW" +10/16/2017,Sports_celeb,@davidortiz,my boy Hanley comin....are u?? tix --> https://t.co/bOXSpuCS6Y https://t.co/EKaPhg7Tmc +10/14/2017,Sports_celeb,@davidortiz,"Please help my boy Jonny gomes to raise money for the crazy fires in north California. Every little bit helps. + +https://t.co/EQqjrAgUMD" +10/11/2017,Sports_celeb,@davidortiz,RT @BostonPoliceFnd: The 4th Annual Boston Police Foundation Gala is scheduled for November 8th at the Boston Marriott Copley Place.... htt… +10/07/2017,Sports_celeb,@davidortiz,Every connection counts on and off the field...celebrating relationships and teamwork... #CXDay w/ @DellTech #DellCX https://t.co/bUkX488Y3s +10/06/2017,Sports_celeb,@davidortiz,#FBF to when I announced that I’ve partnered with @easternbank for GOOD. Excited to give back to the community...… https://t.co/KGofqhmyDK +10/03/2017,Sports_celeb,@davidortiz,Yo @SHAQ where u at?? Thought u were comin to #DellCX day....@Dell https://t.co/cjtlVrff2V +10/02/2017,Sports_celeb,@davidortiz,"YA ESTAN A LA VENTA LOS BOLETOS PUERTO RICO SOMOS UNO EL CONCIERTO 19 DE OCTUBRE AMWAY CENTER ORLANDO FL. +https://t.co/AdAw968kdy?" +09/30/2017,Sports_celeb,@davidortiz,Congrats boys ☝🏾 +09/28/2017,Sports_celeb,@davidortiz,"RT @UNICEFUSA: 🎳 to help kids! THANKS Tiffany+@davidortiz, Shannon+#RayAllen for #TheProsBowl — fundraising for families affected by recent…" +09/28/2017,Sports_celeb,@davidortiz,Don't forget to grab one my Dominican Pride shirts to support hurricane relief & recovery efforts!… https://t.co/IBCcu0d5Cu +09/27/2017,Sports_celeb,@davidortiz,If you cant bowl w/ Ray Allen n me tonite @ #TheProsBowl in #Miami make sure to donate to help hurricane victims.. https://t.co/tQvvN1ZLlG +09/26/2017,Sports_celeb,@davidortiz,U coming to bowl with Ray Allen n me?? We’ll be raising $ for hurricane victims at #TheProsBowl @Kings_dine https://t.co/tQvvN1ZLlG +09/25/2017,Sports_celeb,@davidortiz,Woww I gotta show love. Big congrats to A Judge on homer #50....thats impressive stuff. My Sox still rolllin tho!! 😂😂 +09/25/2017,Sports_celeb,@davidortiz,"#MIAMI: On Wednesday, me and Ray Allen are raising $ for hurricane victims thru @UNICEF #TheProsBowl tix:… https://t.co/b0C6dlHRuw" +09/22/2017,Sports_celeb,@davidortiz,Challenging @max_domi @27BrettCecil to donate $5K 2 support those affected by #Irma & #Maria… https://t.co/YNwcEDKXsk +09/22/2017,Sports_celeb,@davidortiz,RT @MLBONFOX: “We were obsessed with the Red Sox.”- @AROD to @davidortiz on the Yankees. https://t.co/oN7TsLJmBm +09/20/2017,Sports_celeb,@davidortiz,RT @carlosbeltran15: Mi gente tomen las precauciones adecuadas. En la oración la unión y la acción está la fuerza.… https://t.co/MRBa3fn2AG +09/20/2017,Sports_celeb,@davidortiz,Praying for my home country🙏🏿 Portions of my Dominican pride shirts go straight to hurricane relief… https://t.co/zYJSiwGrx8 +09/16/2017,Sports_celeb,@davidortiz,RT @kevinburkhardt: It’s a Yankee/Red Sox flavor on #MLBWhiparound tonight. @arod & @davidortiz together! Top of the hour @FS1 +09/15/2017,Sports_celeb,@davidortiz,Thats what I'm talkin about New Hampshire!!! https://t.co/PGZUwgCyzt +09/15/2017,Sports_celeb,@davidortiz,RT @MLB: .@BigPapiProd will be co-producing the Ted Williams documentary in the @PBSAmerMasters series. https://t.co/WVTJly00sN @davidortiz… +09/14/2017,Sports_celeb,@davidortiz,Launching my production company has been a dream come true...and it's only right that we kick it off by honoring a… https://t.co/FiVHHueRKN +09/14/2017,Sports_celeb,@davidortiz,Donations for #Irma being matched up to $25K https://t.co/Yy6SZ0JorH. Thx @easternbank for kicking this off w/ an incredible $10K donation +09/12/2017,Sports_celeb,@davidortiz,"RT @easternbank: Excited to be the official #NewEngland bank of @davidortiz! Today, David will #JoinUsForGood & surprise customers as our 1…" +09/12/2017,Sports_celeb,@davidortiz,Boston!! I'm getting ready to do some GOOD...keep your eye out for a surprise announcement...u just might run into Papi today...👀 +09/09/2017,Sports_celeb,@davidortiz,RT @JackieBradleyJr: Always great getting to hang with big bro @davidortiz #HASBRO #HASCON https://t.co/7h5YVgZ5tM +09/08/2017,Sports_celeb,@davidortiz,Repping @ariaswines in Saratoga ...thx u @MagicofSPAC for having me https://t.co/mxcXy6SS2p +09/08/2017,Sports_celeb,@davidortiz,"Prayers up for everyone affected by #HurricaneIrma ... if you want to help, donate here ------->… https://t.co/Zk10kgZyHW" +09/08/2017,Sports_celeb,@davidortiz,My boy https://t.co/vsEw9icxc8 +09/07/2017,Sports_celeb,@davidortiz,My bro @RobGronkowski is the man to watch in Foxboro. Watch him earn that stink AND spike Tonight! @Tide… https://t.co/21Pj7Ak3ZE +09/06/2017,Sports_celeb,@davidortiz,Do u know why i was so excited #OnThisDay in 2005? 👉 https://t.co/rfdLO4ttIh https://t.co/0FTgLmdDnC +09/06/2017,Sports_celeb,@davidortiz,Wishing u luck lil bro...ill b watching https://t.co/mTTHryxCnn +09/04/2017,Sports_celeb,@davidortiz,Last chance #PapiNation 15% today only!! 👉🏾 https://t.co/lwjzlEcnZg https://t.co/wkOiFQqYc9 +09/01/2017,Sports_celeb,@davidortiz,RT @HasbroNews: ICYMI: @DavidOrtiz is coming to #HASCON! See him on 9/9 in @providenceRI! Tickets: https://t.co/iLKLrlUdek https://t.co/QAy… +08/31/2017,Sports_celeb,@davidortiz,Labor Day Sale is #PapiApproved https://t.co/HyI129a9Ec https://t.co/mxDzZVSNIx +08/30/2017,Sports_celeb,@davidortiz,a breakfast and a bike ride....and as always with my spy in the photo 👀🐩 https://t.co/uS0WyhnB6z +08/30/2017,Sports_celeb,@davidortiz,RT @KYouk_2036: So beautiful to see Americans supporting each other in a time of need. Let's never lose sight of this love & support for on… +08/28/2017,Sports_celeb,@davidortiz,Nuevos zapatos nueva hobby @SKECHERSUSA https://t.co/ABbpIHokvt +08/23/2017,Sports_celeb,@davidortiz,"“I live for today. Tomorrow belongs to God.” Sum wise words to live by...🙏🏿 😔 +https://t.co/nZdsYVDdoh https://t.co/GWBVTkEu1L" +08/21/2017,Sports_celeb,@davidortiz,RT @FansAuthentic: Who envisions @DavidOrtiz wearing these ski goggles to watch the #SolarEclipse today? #GOLDBOTTLES https://t.co/ibg5Wv9q… +06/29/2018,Sports_celeb,@JeterTurn2,Last night our New York #JetersLeaders celebrated the graduating seniors and welcomed the program's newest inductee… https://t.co/zkA4wAql2W +06/29/2018,Sports_celeb,@JeterTurn2,RT @CC_Sabathia: My team ready!!!! #CCSoftball https://t.co/iE7oKs6Kv8 +06/28/2018,Sports_celeb,@JeterTurn2,RT @PitCChInFdn: Here at @yankeestadium getting ready for game time! #CCSoftball is just a few hours away! 🎟: https://t.co/Vs4KBC38VU https… +06/28/2018,Sports_celeb,@JeterTurn2,".@sjeter2 shares her story behind #TheSTUFFMovement with @Kzoo_Gazette. +@StuffMovement @DrSampsonDavis @GalleryBooks https://t.co/GPwBEeecTr" +06/28/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 is on team @CC_Sabathia for tonight’s #CelebritySoftballGame at @yankeestadium, benefitti… https://t.co/WgzTwuRWGu" +06/27/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 sat down with @KirkMasonWWMT of @WWMTNews to discuss #TheSTUFFMovement, the… https://t.co/uIqRLguZz8" +06/26/2018,Sports_celeb,@JeterTurn2,RT @KirkMasonWWMT: Great to talk with ⁦@sjeter2⁩ The cancer survivor co-authored a book about battling adversity. The charity she runs that… +06/26/2018,Sports_celeb,@JeterTurn2,Today is International Day Against Drug Abuse and Illicit Trafficking. As a foundation rooted in motivating young p… https://t.co/S5AXOA7IId +06/26/2018,Sports_celeb,@JeterTurn2,Wishing a very #HappyBirthday to #Turn2 founder Derek Jeter! https://t.co/3Xg8bGlQqh +06/22/2018,Sports_celeb,@JeterTurn2,"We are excited to welcome our newest class of Kalamazoo #JetersLeaders, and we look forward to a great four years w… https://t.co/c7Ac8G3veu" +06/21/2018,Sports_celeb,@JeterTurn2,"#TBT to when the #JetersLeaders met young entrepreneur Spencer Zied, who co-founded @habits_365. Spencer spoke to t… https://t.co/iZ7BMbiCVF" +06/18/2018,Sports_celeb,@JeterTurn2,"On Saturday, our Kalamazoo #JetersLeaders attended a Youth Leadership Summit at the University of Michigan Detroit… https://t.co/0cs4K9nJUJ" +06/17/2018,Sports_celeb,@JeterTurn2,Happy #FathersDay to all fathers and father figures who serve as positive role models to young people. #Turn2 https://t.co/tnCClsHhYt +06/14/2018,Sports_celeb,@JeterTurn2,"#TBT to the 2018 Derek Jeter Celebrity Invitational, where @blaironeal shared important advice with young people.… https://t.co/ZM80oXirG3" +06/13/2018,Sports_celeb,@JeterTurn2,"Congrats to #JetersLeaders alumna & @jrfoundation scholarship recipient Chelsea Miller, who recently graduated from… https://t.co/jXPQixUI5h" +06/12/2018,Sports_celeb,@JeterTurn2,"Yesterday, members of our #Turn2 Us program wrapped up a successful baseball season with an exciting championship g… https://t.co/Zk6jQSydgy" +06/06/2018,Sports_celeb,@JeterTurn2,"""Seek the help you need to achieve greatness and reach your highest #goal."" -Alexi, #Kalamazoo #JetersLeader Class… https://t.co/NEKfYeJZxC" +05/30/2018,Sports_celeb,@JeterTurn2,"""Your biggest competition is yourself, not those around you."" - Michael, #NewYork #JetersLeaders Class of 2018… https://t.co/HYS51ypBPR" +05/28/2018,Sports_celeb,@JeterTurn2,Today we honor the men and women who devoted themselves to serving our country. #MemorialDay https://t.co/1IM3S8tewP +05/25/2018,Sports_celeb,@JeterTurn2,Yesterday our #Kalamazoo #JetersLeaders volunteered at the Girls on the Run 5K. The event #inspires girls to recogn… https://t.co/Wx5hJs6xl4 +05/22/2018,Sports_celeb,@JeterTurn2,"""Let's face it: none of us lives successfully on our own. We all receive help. And when we in turn help others, we'… https://t.co/rIRVMokLL7" +05/21/2018,Sports_celeb,@JeterTurn2,"""The greatest path to #success is not only being true to yourself, but also staying dedicated and having the same… https://t.co/K6YRhb0YZs" +05/17/2018,Sports_celeb,@JeterTurn2,"#tbt to last month, when our #NYC #JetersLeaders volunteered at the @nycparks 11th Annual Street Games, presented b… https://t.co/yEucnmuiWd" +05/17/2018,Sports_celeb,@JeterTurn2,"We’re proud to support @samhsagov's National Prevention Week, which focuses on the promotion of mental health and p… https://t.co/vmtlEF6F41" +05/16/2018,Sports_celeb,@JeterTurn2,#Turn2 president @sjeter2 and @DrSampsonDavis discuss the launch of @StuffMovement & tackling life’s biggest challe… https://t.co/4lfTLHWHyT +05/16/2018,Sports_celeb,@JeterTurn2,“Don’t let fear stop you from overcoming.” #Turn2 president @sjeter2 shares her journey & discusses @StuffMovement… https://t.co/Ph2WFgxg6q +05/15/2018,Sports_celeb,@JeterTurn2,"Exciting news! #TheSTUFF, a book co-authored by #Turn2 president @sjeter2 and @drsampsondavis, is officially out! B… https://t.co/zlaLvW9aHD" +05/15/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 discussed the inspiration behind her new book, @StuffMovement, with the @nypost. Read mor… https://t.co/ga7tmTCnn5" +05/13/2018,Sports_celeb,@JeterTurn2,To all of the strong women inspiring their children to make a difference in the world - Happy #MothersDay! https://t.co/bCAFiI9swo +05/12/2018,Sports_celeb,@JeterTurn2,"""I tell the kids, somebody's gotta win, somebody's gotta lose. Just don't fight about it. Just try to get better.""… https://t.co/Ucbyr8Q1kO" +05/10/2018,Sports_celeb,@JeterTurn2,"Today is National Children's Mental Health #AwarenessDay2018, which seeks to raise awareness about the importance o… https://t.co/KAmE7mmoCE" +05/08/2018,Sports_celeb,@JeterTurn2,"We’re so excited for the release of #TheStuff, co-authored by #Turn2 president @sjeter2 & @DrSampsonDavis. The book… https://t.co/bzp6TkaEyn" +05/07/2018,Sports_celeb,@JeterTurn2,It's senior #DraftDay for the #JetersLeaders! Check out our #InstagramStories at @jeterturn2 to see where these stu… https://t.co/M20s5OpbUu +05/03/2018,Sports_celeb,@JeterTurn2,"We joined @RBC in #NYC today for #rbctradeforthekids, which benefited more than 40 youth charities around the world… https://t.co/VtVsXhfS9T" +05/02/2018,Sports_celeb,@JeterTurn2,Looking forward to joining @RBC tomorrow for #rbctradeforthekids – a celebration of philanthropy and volunteerism a… https://t.co/NHcvBMb39l +05/01/2018,Sports_celeb,@JeterTurn2,"In celebration of #CollegeDecisionDay, we are so proud to recognize our senior #JetersLeaders for being accepted in… https://t.co/yzdRlG7G9P" +04/30/2018,Sports_celeb,@JeterTurn2,So many amazing applicants for the #JetersLeaders Class of 2022! We're so #inspired to see young people be passiona… https://t.co/s5H8geBXcE +04/25/2018,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: Whatever you do, do not look down. 😂 + +#DJCI #Turn2 @jeterturn2 @NBATVAhmad @RealWinkyWright @brandichastain @KMillar15…" +04/23/2018,Sports_celeb,@JeterTurn2,Another fantastic #DJCI in the books! This year’s event contributed $1M to #Turn2. Big thanks to our partners… https://t.co/RCyb9gs4Tt +04/22/2018,Sports_celeb,@JeterTurn2,RT @PlayersTribune: We brought a living statue to Derek Jeter's golf tournament and the reactions are priceless. #DJCI #Turn2 @JeterTurn2 @… +04/20/2018,Sports_celeb,@JeterTurn2,"Day two of #DJCI action is underway, as Derek Jeter tees off! #DJCI2018 #Turn2 https://t.co/U2pydO57S1" +04/20/2018,Sports_celeb,@JeterTurn2,"RT @TheJetGuy: Great day @JeterTurn2 ⛳️ +@BLAIRONEAL @GretzkySchool +#DerekJeterCelebrityInvitational #WheelsUp #ShadowCreek #LasVegas https…" +04/20/2018,Sports_celeb,@JeterTurn2,RT @JoeTorre: With Derek at his @JeterTurn2 celebrity invitational golf tournament in Las Vegas #DJCI #TURN2 #DJCI2018 https://t.co/NZo5w68… +04/20/2018,Sports_celeb,@JeterTurn2,"""For more than 21 years, Turn 2 has moved the needle, making a difference in communities nationwide...but what’s mo… https://t.co/ucHJX3Cp26" +04/19/2018,Sports_celeb,@JeterTurn2,Ready to kick off #DJCI2018 at #ShadowCreek this morning! We’re looking forward to an exciting day one of the Cele… https://t.co/Wh28PlCs2T +04/19/2018,Sports_celeb,@JeterTurn2,RT @BLAIRONEAL: Looking forward to playing in #DerekJeter golf tournament again & supporting @JeterTurn2 #foundation this week 🙌🏼 in Vegas… +04/19/2018,Sports_celeb,@JeterTurn2,The Derek Jeter Celebrity Invitational has begun! #DerekJeter & @sjeter2 have arrived on the red carpet at @AriaLV… https://t.co/apu0FidFl7 +04/15/2018,Sports_celeb,@JeterTurn2,"RT @JRFoundation: 71 years ago today, Jackie Robinson made his @MLB debut as a Brooklyn Dodger & became the first African American to play…" +04/12/2018,Sports_celeb,@JeterTurn2,"We are excited to announce that multi-platinum selling, global superstar @JasonDerulo will be performing at the Der… https://t.co/Zo1qZDMdEG" +04/11/2018,Sports_celeb,@JeterTurn2,"""Helping others is just as important as helping yourself."" #WednesdayWisdom #JetersLeaders #Turn2 https://t.co/tH9bihVtHv" +04/09/2018,Sports_celeb,@JeterTurn2,"RT @MiamiSup: Thank you Derek Jeter, @JeterTurn2, @jorgeposada_20 for donating furniture to the Redlands Migrant Camp, helping hundreds of…" +04/06/2018,Sports_celeb,@JeterTurn2,"During their trip to Miami this week, the #JetersLeaders also experienced a glimpse of college life during a specia… https://t.co/Z8NpWUHiyA" +04/05/2018,Sports_celeb,@JeterTurn2,"""Spread Kindness"" is just one of the many #inspirational murals that now fill @josediegoms in Miami, as #DerekJeter… https://t.co/EWsvQ1NurC" +04/04/2018,Sports_celeb,@JeterTurn2,"""The time is always right to do what is right.” – Martin Luther King Jr. Celebrating the legacy of Martin Luther Ki… https://t.co/1DQTeeyaLc" +04/04/2018,Sports_celeb,@JeterTurn2,Last night the #JetersLeaders had a blast watching the @marlins take on the #Boston @redsox! #Turn2 https://t.co/kqLnfHSbe4 +04/04/2018,Sports_celeb,@JeterTurn2,"Our #JetersLeaders are teaming up with #DerekJeter, #Turn2 president @sjeter2 and @GoldmanSachs Community TeamWorks… https://t.co/6QY2bCWNEd" +04/02/2018,Sports_celeb,@JeterTurn2,"""Goals not only give you something to look forward to and build on, but they give you a chance to make your dreams… https://t.co/OCD8nIrQdy" +03/29/2018,Sports_celeb,@JeterTurn2,"Exciting projects are in the works for our #JetersLeaders! Throughout the month, the New York Leaders worked togeth… https://t.co/GwZoeJ7WXs" +03/28/2018,Sports_celeb,@JeterTurn2,"""Being a #leader means you try your best, #inspire others, and show empathy."" #WednesdayWisdom #JetersLeaders #Turn2 https://t.co/yftFqwZ6II" +03/23/2018,Sports_celeb,@JeterTurn2,#Turn2 president @sjeter2 is proud to support the #MagicOfStorytelling initiative by @Disney and @FirstBook! For ev… https://t.co/ZdgiXt8o1T +03/21/2018,Sports_celeb,@JeterTurn2,"RT @garysheffield: It was such a great time out there talking to the kids at @JeterTurn2 baseball camp last week! + +If one kid can walk awa…" +03/19/2018,Sports_celeb,@JeterTurn2,"""Life is not about what happened yesterday, but what you are going to make happen in the future."" #MondayMotivation… https://t.co/vkDVuw4kuP" +03/16/2018,Sports_celeb,@JeterTurn2,That's a wrap on the 11th Annual #Turn2 Tampa Baseball Clinic! Special thanks to @GarySheffield for joining us as g… https://t.co/Sqz2MqT9Mi +03/15/2018,Sports_celeb,@JeterTurn2,Our thoughts and prayers are with @FIU and the entire community. +03/15/2018,Sports_celeb,@JeterTurn2,Special guest speaker @GarySheffield inspires participants to work hard to achieve their #goals at the #Turn2 Tampa… https://t.co/LTQxJrQYVN +03/14/2018,Sports_celeb,@JeterTurn2,"""#Communication is the key that unlocks many doors, no matter the combination."" #WednesdayWisdom #JetersLeaders… https://t.co/ecZJyeMFwe" +03/13/2018,Sports_celeb,@JeterTurn2,"#Tampa children are taking the field to learn #baseball fundamentals and important #lifelessons, as we kick off our… https://t.co/D0L6PesBif" +03/09/2018,Sports_celeb,@JeterTurn2,"RT @sjeter2: Feeling so inspired by all of you who came to samsung837!! My message for all women is: ""When… https://t.co/GeqP11Q53F" +03/08/2018,Sports_celeb,@JeterTurn2,Today we celebrate all women who #empower youth to create #positivechange and lead in their communities.… https://t.co/pzvH3j87LP +03/07/2018,Sports_celeb,@JeterTurn2,RT @sjeter2: Loved taking part in this event! https://t.co/8ThjFZ8tjh +03/06/2018,Sports_celeb,@JeterTurn2,RT @JeterPublishing: It's Launch Day for Double Play! Pick up your copy now! https://t.co/z6LiK8brsq #JeterPublishing @timgreenbooks https:… +03/04/2018,Sports_celeb,@JeterTurn2,RT @PosadaLifeCoach: Team Posada teamed up with @JeterTurn2 to donate hundreds of items to students Miami Dade College and @FIU who relocat… +03/02/2018,Sports_celeb,@JeterTurn2,#DerekJeter & #Turn2 president @SJeter2 teamed up w/ @jorgeposada_20 & @posadalifecoach to donate furniture to… https://t.co/uzYrQJYkaC +03/01/2018,Sports_celeb,@JeterTurn2,"Throughout the month of February, the Kalamazoo #JetersLeaders had the opportunity to #mentor local children at the… https://t.co/zBOGIyR8Dp" +02/26/2018,Sports_celeb,@JeterTurn2,"These students are #college ready! Over the weekend, the Kalamazoo #JetersLeaders toured @RooseveltU, @UChicago,… https://t.co/NvnUUiQ3jp" +02/22/2018,Sports_celeb,@JeterTurn2,"That's a wrap! The #Turn2 Mid-Winter #College Tour with #NYC #JetersLeaders capped off with visits to @HowardU,… https://t.co/6heMFeBmRU" +02/20/2018,Sports_celeb,@JeterTurn2,The #Turn2 Mid-Winter #College tour has begun! Our #NYC #JetersLeaders kicked off the week with visits to the @UNCF… https://t.co/CTOOJilLzg +02/19/2018,Sports_celeb,@JeterTurn2,Last weekend our Kalamazoo #JetersLeaders attended the Day of Radical Youth Development as part of the System of Ca… https://t.co/ZoDXYDk4DC +02/13/2018,Sports_celeb,@JeterTurn2,"We’re looking forward to returning to Las Vegas for the 2018 Derek Jeter Celebrity Invitational in April, in partne… https://t.co/2TXl2hhVtn" +02/07/2018,Sports_celeb,@JeterTurn2,"Today marks the 32nd Annual National Girls & Women in Sports Day. This past Saturday, our #NYC #JetersLeaders parti… https://t.co/xgw6T8EiiK" +02/05/2018,Sports_celeb,@JeterTurn2,"""Believe in yourself, because at the end of the day no one knows you like you know yourself."" - Jacky, Kalamazoo… https://t.co/feV9B72ofa" +02/02/2018,Sports_celeb,@JeterTurn2,"#Turn2 president @sjeter2 discussed the growth of the Foundation, the #JetersLeaders & the importance of #mentoring… https://t.co/Nj2CVyViiq" +02/02/2018,Sports_celeb,@JeterTurn2,"RT @OWNTV: .@Luvvie, @VanJones68, @sjeter2 and more! Dream protectors who are walking the walk 👣 and talking the talk! 🗣 #DreamFearlessly h…" +02/01/2018,Sports_celeb,@JeterTurn2,"This month, we are celebrating all African American trailblazers who inspire us to serve as leaders and create posi… https://t.co/bCGelBv4QL" +01/29/2018,Sports_celeb,@JeterTurn2,"Last weekend, our New York #JetersLeaders participated in fun winter activities with children in @CentralParkNYC as… https://t.co/f8CNgal5Ki" +01/26/2018,Sports_celeb,@JeterTurn2,RT @JDCHospital: Backstage at the Joe DiMaggio American Icon Award with @_Derek_Jeter2 . The former Yankee captain and current Marlins CEO… +01/25/2018,Sports_celeb,@JeterTurn2,“My AP world history teacher has helped me see the world more vividly while motivating me to excel every day.” - Ha… https://t.co/jmEXZcUYca +01/25/2018,Sports_celeb,@JeterTurn2,"“My mother has had a tremendous impact on my life. Without her, I wouldn’t be where I am today. She has helped me r… https://t.co/Yt2EK3srPQ" +01/25/2018,Sports_celeb,@JeterTurn2,"""Mentoring has always been about helping those around your community. That's a powerful idea that needs to be sprea… https://t.co/gLimnXQTK1" +01/25/2018,Sports_celeb,@JeterTurn2,"“My grandpa is my mentor…he taught me that even on bad days, there's something positive happening.” - Ariel Brown,… https://t.co/T7HpyuAjkx" +01/25/2018,Sports_celeb,@JeterTurn2,“My mom is my biggest mentor. She's always been there to pick me up when I fall and make sure that I keep getting s… https://t.co/RVY9SxJbQ6 +01/25/2018,Sports_celeb,@JeterTurn2,"As part of #ThankYourMentor Day, our #JetersLeaders reflected on the mentors in their lives and how they've helped… https://t.co/lTEmLFuFTL" +01/24/2018,Sports_celeb,@JeterTurn2,"""In the end it won't matter what you did in your life, but how you chose to live it."" #JetersLeaders… https://t.co/FuCr5ODTy3" +01/22/2018,Sports_celeb,@JeterTurn2,"Our Kalamazoo #JetersLeaders recently attended STOMP, the Broadway musical that creates unique music with found obj… https://t.co/Iu8rJ8xxqD" +01/17/2018,Sports_celeb,@JeterTurn2,"""Mentoring is a critical component of a young person's life. When youth have reliable role models they can turn to… https://t.co/S00lGgpcia" +01/15/2018,Sports_celeb,@JeterTurn2,"In honor of MLK Day, our NY #JetersLeaders distributed sandwiches at a local church today with children at the Jack… https://t.co/EX5vRxTOeO" +01/15/2018,Sports_celeb,@JeterTurn2,Today we celebrate the legacy of Martin Luther King Jr. and his profound impact on our country. #MLKDay #MLK https://t.co/BezHwMvZ6M +01/10/2018,Sports_celeb,@JeterTurn2,"""Needing help doesn't make you weak; accepting help makes you strong."" #JetersLeaders #WednesdayWisdom #Turn2 https://t.co/4XzrhkCrpa" +01/03/2018,Sports_celeb,@JeterTurn2,"Learn more about our partnership with @EstatesACQ, @JORGEPOSADA_20 and @PosadaLifeCoach to help families affected b… https://t.co/u8s38CTadf" +01/03/2018,Sports_celeb,@JeterTurn2,"“Volunteering strengthens communities, and brings young people from different backgrounds together to make a differ… https://t.co/QZQtci0d1B" +01/02/2018,Sports_celeb,@JeterTurn2,Congratulations to @hodakotb on being named co-host of @TODAYshow! We wish you the best. https://t.co/23RT1ftifg +01/01/2018,Sports_celeb,@JeterTurn2,"Wishing everyone a #HappyNewYear! 2017 was a great year for us, and we look forward to an exciting and successful 2… https://t.co/Ce5nLWaCr0" +12/28/2017,Sports_celeb,@JeterTurn2,#TBT Our NY #JetersLeaders & program alumni gathered at the Jackie Robinson Recreation Center to celebrate the holi… https://t.co/dL1nV1LXnu +12/22/2017,Sports_celeb,@JeterTurn2,"As part of our partnership with @JorgePosada_20 & @PosadaLifeCoach, the furniture donated by @EstatesACQ arrived to… https://t.co/x7mSTVp3pu" +12/21/2017,Sports_celeb,@JeterTurn2,"#TBT to our Holiday Gift Wrapping Party earlier this month, where the NY #JetersLeaders assembled more than 1,100 g… https://t.co/KLDN0fNSKi" +12/20/2017,Sports_celeb,@JeterTurn2,"The Kalamazoo #JetersLeaders and program alumni celebrated the holidays earlier this week with bowling, arcade game… https://t.co/ZX42NrNI1J" +12/20/2017,Sports_celeb,@JeterTurn2,"“Being a leader doesn’t require a title, and having a title doesn’t make you one.” #WednesdayWisdom #JetersLeaders https://t.co/LtpOfosQM7" +12/19/2017,Sports_celeb,@JeterTurn2,#HappyHolidays from the #Turn2 Foundation family to yours! https://t.co/IqfxN9scu6 +12/18/2017,Sports_celeb,@JeterTurn2,“Don’t short-change yourself. Keep working to get better.” #MondayMotivation https://t.co/nM97VC3nKY +12/15/2017,Sports_celeb,@JeterTurn2,"The Kalamazoo #JetersLeaders spread holiday cheer yesterday at St. Augustine’s Eleanor House, where they shared gif… https://t.co/PsPGzIZq7j" +12/15/2017,Sports_celeb,@JeterTurn2,Learn more about #Turn2 and our Foundation’s work in the 2017 Turn 2 Magazine! https://t.co/OtdJ5j7wnf https://t.co/zpZFcPOkjP +12/14/2017,Sports_celeb,@JeterTurn2,Last week our #NY #JetersLeaders attended an exclusive performance of @WICKED_Musical as part of @Movado ’s Evening… https://t.co/3N8qfZfYy9 +12/13/2017,Sports_celeb,@JeterTurn2,Earlier this month children from the Turn 2 Us program kicked off the holiday season with a special annual celebrat… https://t.co/NK3XZNgpih +12/12/2017,Sports_celeb,@JeterTurn2,We're proud to partner with @EstatesACQ and Jorge Posada & @PosadaLifeCoach's Foundation for Puerto Rico to donate… https://t.co/GAThQOmHLd +12/08/2017,Sports_celeb,@JeterTurn2,"#Turn2 president Sharlee Jeter talks balancing work & family, and walks through her typical day with @Refinery29.… https://t.co/p5QJt6oUFA" +12/06/2017,Sports_celeb,@JeterTurn2,“Setting goals will put you on a path to living successful and healthy lifestyles.” #WednesdayWisdom #JetersLeaders https://t.co/FllaYT6TLU +12/05/2017,Sports_celeb,@JeterTurn2,"We’re excited to return to Shadow Creek for the 2018 #DerekJeter Celebrity Invitational with our partners, @JPSENET… https://t.co/43Ag4KeNQq" +12/04/2017,Sports_celeb,@JeterTurn2,“I’m not the one to sit around and be satisfied about something. I can always get better.” #MondayMotivation https://t.co/6pOUVBe2LT +12/02/2017,Sports_celeb,@JeterTurn2,Our #JetersLeaders & program alumni had a blast at the @threedoctors Foundation Holiday Health Basketball Benefit t… https://t.co/pEJLjhL67D +11/30/2017,Sports_celeb,@JeterTurn2,"Special thanks to our sponsors, @RookieUSA and @Yankees, for their generous donations! https://t.co/MAUkIWpdUx" +11/29/2017,Sports_celeb,@JeterTurn2,"Our NY #JetersLeaders worked together to assemble 1,100 gift bags that will make the holidays brighter for children… https://t.co/glIwOG5MbK" +11/29/2017,Sports_celeb,@JeterTurn2,“Goals are important because they give us both long- and short-term aspirations that will always better us.”… https://t.co/nWl1ymT4zO +11/28/2017,Sports_celeb,@JeterTurn2,"“When I think of the Jeter’s Leaders program, I think of opportunity.” By donating to our programs, you can help pr… https://t.co/AOXHaE0Po5" +11/27/2017,Sports_celeb,@JeterTurn2,"Meet Kendall, a Kalamazoo Jeter’s Leaders alumna. Kendall’s advice? “Don’t be afraid to put yourself out there.” By… https://t.co/pXFcxFDw5v" +11/23/2017,Sports_celeb,@JeterTurn2,"Happy #Thanksgiving, from the #Turn2 Foundation! https://t.co/1mkpVd1Hsc" +11/22/2017,Sports_celeb,@JeterTurn2,New York Jeter’s Leader alum Sharod plans to continue helping others in any way he can. Your support this… https://t.co/sqk1Rmw96R +11/22/2017,Sports_celeb,@JeterTurn2,“You don’t have to be famous to create change. Words and actions create change.” #WednesdayWisdom #JetersLeaders https://t.co/zdyfwvt9Cf +11/21/2017,Sports_celeb,@JeterTurn2,"Your support has allowed us to provide young people, like Chase, with the resources they need to reach their full p… https://t.co/QP0lYbHIyj" +11/20/2017,Sports_celeb,@JeterTurn2,“I don’t sit here every day and think about what I accomplished in the past…I’m always focusing on what I can do to… https://t.co/2I7Zn9GC1H +11/15/2017,Sports_celeb,@JeterTurn2,"""Challenge yourself and put all of your effort in everything you do."" #WednesdayWisdom https://t.co/nMp1kch3gp" +11/13/2017,Sports_celeb,@JeterTurn2,Happy #WorldKindnessDay! Celebrate by giving back to your community and helping others in need. #Turn2 https://t.co/TYsSRNBMze +11/13/2017,Sports_celeb,@JeterTurn2,RT @JoeTorre: At Rawlings Gold Glove dinner with Donnie baseball and Derek who was honored for his @JeterTurn2 Foundation. Great being with… +11/11/2017,Sports_celeb,@JeterTurn2,#DerekJeter will receive the Joe DiMaggio Icon Award by @JDCHospital in January for his contributions to society. https://t.co/E5DzzSFCbY +11/10/2017,Sports_celeb,@JeterTurn2,"Tonight, our KZ #JetersLeaders had the chance to see @WondertheMovie, an inspiring story reminding us to… https://t.co/ADSIS8yyIO" +11/09/2017,Sports_celeb,@JeterTurn2,A look back at our 21st Annual Dinner. Thanks to all attendees for helping us raise $1M to make a positive impact o… https://t.co/F3wUK2U3Cz +11/08/2017,Sports_celeb,@JeterTurn2,“Let people in and allow them to help you. You can’t do it alone.” #WednesdayWisdom #JetersLeaders https://t.co/Z7Q2OVnh58 +11/06/2017,Sports_celeb,@JeterTurn2,"“We have to be confident and secure enough to make the proper choices, regardless of what the people around us are… https://t.co/dPpHDjDAjL" +10/31/2017,Sports_celeb,@JeterTurn2,"On Saturday the #JetersLeaders heard from Cheryl Washington about her 20-yr career in news, effective communication… https://t.co/SPwLmJmD9g" +10/30/2017,Sports_celeb,@JeterTurn2,"""Don't focus on what the negatives might be...you can always find a positive in any situation."" #MondayMotivation https://t.co/kU6npj5dnL" +10/26/2017,Sports_celeb,@JeterTurn2,Today we celebrated 16 yrs of promoting #mentalwellness through our #Turn2 Us program in #WashingtonHeights with ou… https://t.co/9K0XkCL1bk +10/25/2017,Sports_celeb,@JeterTurn2,"“Nothing comes easily in life. If you want something, you have to work hard to achieve it.” #WednesdayWisdom… https://t.co/TAlJ2ioX9y" +10/23/2017,Sports_celeb,@JeterTurn2,"“Don’t let your past achievements, no matter how significant they may be, obscure the visions and goals you still h… https://t.co/urxsY6nYZh" +10/18/2017,Sports_celeb,@JeterTurn2,"“You eventually have to face your fear. Once you overcome it, life gets better. #WednesdayWisdom #JetersLeaders https://t.co/02GLrzqPxP" +10/16/2017,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: A look back at the 21st Annual #Turn2Gala, including a conversation on women in sports featuring @sportsiren, Derek Jet…" +10/16/2017,Sports_celeb,@JeterTurn2,"“We all make our own goals, so we all devise our own ceilings, too. If you feel that something is attainable, it is… https://t.co/KtxekVw8ab" +10/12/2017,Sports_celeb,@JeterTurn2,The 21st Annual #Turn2Gala raised $1 million to support our programs. Thanks to all who joined us & made this year’… https://t.co/O9II7tcB1z +10/12/2017,Sports_celeb,@JeterTurn2,Special thanks to the legendary @boyziimen for tonight’s unforgettable performance! #Turn2Gala https://t.co/U4ccN4jEWi +10/12/2017,Sports_celeb,@JeterTurn2,"Congratulations to our 2017 #Turn2 MVP, Chick Lee of ICON International! Thank you for your support. #Turn2Gala https://t.co/4gA037NBoO" +10/12/2017,Sports_celeb,@JeterTurn2,"RT @PlayersTribune: When Derek Jeter was a rookie he created the @JeterTurn2 Foundation. + +Tonight we celebrate 21 years of giving back at t…" +10/12/2017,Sports_celeb,@JeterTurn2,"""Over the course of 21 years, Turn 2 has given back more than $27 million. That is astounding."" @hodakotb #Turn2Gala https://t.co/IBL5cHGjId" +10/12/2017,Sports_celeb,@JeterTurn2,"The 21st Annual #Turn2Gala has begun! We’re on the red carpet with Derek Jeter, Sharlee Jeter & the #JetersLeaders.… https://t.co/b7PI2Sjbdo" +10/11/2017,Sports_celeb,@JeterTurn2,"“People should set goals for themselves, and also motivate themselves to keep going when times get tough.”… https://t.co/kKOQcabCw1" +10/09/2017,Sports_celeb,@JeterTurn2,“...You can help yourself by taking an extra second to ponder how you should react to it.” #MondayMotivation https://t.co/7MlLR6vgIf +10/04/2017,Sports_celeb,@JeterTurn2,“Determination and dedication are the keys to success.” #WednesdayWisdom #JetersLeaders https://t.co/Vkl8a88Z3b +10/03/2017,Sports_celeb,@JeterTurn2,"New York #JetersLeaders grad Sharod is attending @Morehouse this fall, & has goals of becoming a district attorney.… https://t.co/ROG6m9JTSQ" +10/02/2017,Sports_celeb,@JeterTurn2,"""Don't dwell in the past. Don't feel that you've achieved something and now you can relax...” #MondayMotivation https://t.co/PzX5YtTXBL" +09/29/2017,Sports_celeb,@JeterTurn2,"NY #JetersLeaders grad Jordana is off to @syracuseu in the fall, where she will study TV, film & radio production.… https://t.co/EfQdsqP7SK" +09/28/2017,Sports_celeb,@JeterTurn2,#TBT to the NY #JetersLeaders retreat! They planned their 2017-18 program year at @Live_Unaddicted &later worked as… https://t.co/EYhvuRI3fj +09/27/2017,Sports_celeb,@JeterTurn2,“Be proud of the hard times that brought you to where you are today.” #WednesdayWisdom #JetersLeaders https://t.co/ElbsaTbCMU +09/26/2017,Sports_celeb,@JeterTurn2,"Congrats to New York #JetersLeader George! He is off to @StJohnsU to study biology, & strives to become a pharmacis… https://t.co/FWVxoimwNi" +09/25/2017,Sports_celeb,@JeterTurn2,"“Listen better and display more respect for people, and see how much smarter and gracious you become.”… https://t.co/Unye6T05QG" +09/22/2017,Sports_celeb,@JeterTurn2,NY #JetersLeaders grad Connor is off to @hofstraU this fall to study mechanical engineering & has goals to earn his… https://t.co/vdFJbqwcbz +09/21/2017,Sports_celeb,@JeterTurn2,"RT @Live_Unaddicted: Whether you are in recovery or you simply support people who want to get help, you’re important to the #LiveUnaddicted…" +09/20/2017,Sports_celeb,@JeterTurn2,Today the NY #JetersLeaders spoke at #WEDAY about service & how everyone can help after disasters like the recent h… https://t.co/SYPxfwQ5qA +09/20/2017,Sports_celeb,@JeterTurn2,"“You learn, you win & you lose. But you always get up."" #JetersLeaders #WednesdayWisdom https://t.co/HiQTgZQ80R" +09/19/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Darius! He is off to @FullSail to study film & has goals of becoming a su… https://t.co/EGSzm1kgOp +09/18/2017,Sports_celeb,@JeterTurn2,"“You’ve only got one life, so you should be proud of what you do.” #MondayMotivation https://t.co/4drE1ZrVYy" +09/13/2017,Sports_celeb,@JeterTurn2,Our hearts go out to those affected by Hurricane Irma. @usatoday has details on how you can help: https://t.co/CGicgNatd9 +09/13/2017,Sports_celeb,@JeterTurn2,“Young people should set goals for themselves so they can improve and discover new things.” #WednesdayWisdom… https://t.co/v0usoQsJlF +09/12/2017,Sports_celeb,@JeterTurn2,"Congrats to Kalamazoo #JetersLeaders grad Chase! He’ll attend @WesternMichU, & has goals of becoming an aerospace e… https://t.co/DoW8qMQjUh" +09/12/2017,Sports_celeb,@JeterTurn2,"Remembering those who lost their lives 16 years ago. #NeverForget +Photo credit: @646kb (via Instagram) https://t.co/zGr7fObF8g" +09/08/2017,Sports_celeb,@JeterTurn2,"RT @YESNetwork: The Captain shares his thoughts & condolences for the late Gene ""Stick"" Michael. https://t.co/e5SYLsiBZd" +09/06/2017,Sports_celeb,@JeterTurn2,"Proud to unveil new #JetersLeaders jerseys! Designed by @Jumpman23 + inspired by #RE2PECT line, they represent the… https://t.co/ejDAv23EyI" +09/06/2017,Sports_celeb,@JeterTurn2,"“Find your weakness, turn it into strength, and be sure to take risks.” #WednesdayWisdom #JetersLeaders https://t.co/lpxMc9HbBI" +09/04/2017,Sports_celeb,@JeterTurn2,“Don’t talk about doing something to help people. Just do it. We all have the ability to do things for others.”… https://t.co/ViOAYV8yQb +08/31/2017,Sports_celeb,@JeterTurn2,.@HoustonFoodBank is providing meals to displaced Houston residents. Every $1 = 3 meals. https://t.co/8d1K1oqKxF https://t.co/DqiDVpAvx8 +08/31/2017,Sports_celeb,@JeterTurn2,Congrats to New York #JetersLeader Marc on his graduation from @mckinneyssa! He has goals of becoming a nurse or do… https://t.co/11jjJ8PWus +08/31/2017,Sports_celeb,@JeterTurn2,.@HouUnitedWay established a Flood Relief Fund to help with recovery needs of those impacted. Donate here:… https://t.co/FUW1DrMDdu +08/30/2017,Sports_celeb,@JeterTurn2,.@TXDIAPERBANK will distribute emergency diaper kits to affected families. Donate here: https://t.co/4BsnVoCBsA https://t.co/DqiDVpAvx8 +08/30/2017,Sports_celeb,@JeterTurn2,So many incredible organizations across Texas that can use our support in this heroic rescue + recovery effort. Please give what you can! +08/30/2017,Sports_celeb,@JeterTurn2,“Setting goals will help you to fulfill your dreams.” #WednesdayWisdom #JetersLeaders https://t.co/8Ty8HUj7hd +08/29/2017,Sports_celeb,@JeterTurn2,"Our hearts are w/ Houston & those affected by devastation in Texas & Louisiana. Stay strong, take care of each other & #lookforthehelpers." +08/29/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Kendall! She will be attending @LifeAtPurdue in the fall to study food sc… https://t.co/2sp8TtvX2R +08/28/2017,Sports_celeb,@JeterTurn2,"“We should all want to continue learning, because no one knows all they need to know...” #MondayMotivation https://t.co/3JOO8Q454T" +08/24/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Ca’Jon! He’ll attend @WesternMichU & has goals of working in public relat… https://t.co/mkm3VJdbYJ +08/23/2017,Sports_celeb,@JeterTurn2,"“Stay positive, work hard, and you will have a bright future ahead of you.” #JetersLeaders #WednesdayWisdom https://t.co/i6gQzkOrSM" +08/22/2017,Sports_celeb,@JeterTurn2,"Congrats to New York #JetersLeaders grad Sata! She will attend @UnionCollegeNY in the fall, and has goals of travel… https://t.co/b0zHZilPzt" +08/21/2017,Sports_celeb,@JeterTurn2,"“It’s a nice feeling when the work you’ve been doing provides results before your eyes..."" #MondayMotivation https://t.co/iY47pq7Ekz" +08/19/2017,Sports_celeb,@JeterTurn2,Exciting projects are in the works with our #JetersLeaders and @WeMovement! Stay tuned. #Turn2 https://t.co/IuNdAV7V4M +08/17/2017,Sports_celeb,@JeterTurn2,Congrats to Kalamazoo #JetersLeaders grad Ben! He's off to @michiganstateu & has goals of becoming a financial mana… https://t.co/ttVEBtx5qo +08/16/2017,Sports_celeb,@JeterTurn2,“You have the power to create positive change.” #WednesdayWisdom #JetersLeaders https://t.co/8vGy0ZdGzu +08/15/2017,Sports_celeb,@JeterTurn2,"RT @JRFoundation: ""What motivated me? Sisterhood. That turned into my non-profit, WEBelieve, Inc."" Chelsea Miller. @Columbia. Sponsor: @Jet…" +08/14/2017,Sports_celeb,@JeterTurn2,"“You have to accept the fact that there are going to be new challenges for you every day..."" #MondayMotivation https://t.co/z9Wuc2NPbq" +08/10/2017,Sports_celeb,@JeterTurn2,Get ready for the 21st Annual #Turn2Gala! @BoyzIIMen will perform & @HodaKotb will emcee. https://t.co/auZRFq4W3l f… https://t.co/81cm2of92a +08/09/2017,Sports_celeb,@JeterTurn2,"Today our #JetersLeaders visited @turner, where they learned about the interview process + #careers, and also toure… https://t.co/5iGL4wJszO" +08/07/2017,Sports_celeb,@JeterTurn2,"“Obviously, you’re known for what you do. But you still want to be known as a good person...” #MondayMotivation https://t.co/pX4vy4Wh8Z" +08/04/2017,Sports_celeb,@JeterTurn2,Thanks to the @RitzCarlton for hosting us for the #Turn2 #SocialChange Project in #NewOrleans! We are grateful for… https://t.co/7gDtglK8C7 +08/04/2017,Sports_celeb,@JeterTurn2,The #JetersLeaders had a great week at the 2017 #SocialChange Project. We are so proud of their commitment to makin… https://t.co/KsRh4Pv5NV +08/04/2017,Sports_celeb,@JeterTurn2,"The #JetersLeaders wrapped up the 2017 #SocialChange Project with #college visits to @TulaneNews, @du1869 +… https://t.co/foELthiw8w" +08/03/2017,Sports_celeb,@JeterTurn2,Our #JetersLeaders worked together to transform Einstein Charter School in #NewOrleans as part of the #SocialChange… https://t.co/9dNIIoo0V0 +07/02/2018,Sports_celeb,@AROD,@xSaraLynn23 Thank you Sara! +07/01/2018,Sports_celeb,@AROD,"On #SundayNightBaseball, Matt, Jessica, Buster and I had a lengthy discussion about Bryce Harper's at-bats, specifi… https://t.co/Aw6RWPoM6O" +07/01/2018,Sports_celeb,@AROD,"It’s finally here! Introducing my AROD GS25 bat feels like hitting my 697th home run, maybe even a little better. W… https://t.co/nNWHATzcHU" +06/29/2018,Sports_celeb,@AROD,Excited to be co-hosting @GetUpESPN see you at 8am @MichelleDBeadle @Espngreeny @JalenRose @SHAQ +06/29/2018,Sports_celeb,@AROD,RT @Yankees: Even Mo 💙’s J-Rod. https://t.co/v55l4hBnmt +06/27/2018,Sports_celeb,@AROD,RT @Ben_ESPN: .@AROD will co-host @GetUpESPN this Fri in studio from 8-10 a.m. ET to kick off a big weekend in New York which will culminat… +06/25/2018,Sports_celeb,@AROD,@Master_Raskul Thank you Scotty. Appreciate the compliment. +06/25/2018,Sports_celeb,@AROD,"@BenBinek @DaleMurphy3 @espn He was a phenomenal player, Ben. Thanks for your tweet." +06/25/2018,Sports_celeb,@AROD,@GableCR @SundayNightMLB Thank you for the nice compliment! +06/25/2018,Sports_celeb,@AROD,@FiascoShow Thank you for the compliment. +06/25/2018,Sports_celeb,@AROD,@TravisBevelaqua Thank you Travis. +06/25/2018,Sports_celeb,@AROD,@KHolman2012 Thank you Keith. +06/25/2018,Sports_celeb,@AROD,@wxmc @jessmendoza Thank you Mike. +06/25/2018,Sports_celeb,@AROD,@bopper33 Thank you for the compliment. +06/25/2018,Sports_celeb,@AROD,@JeffWirth2002 Thank you Jeff. +06/25/2018,Sports_celeb,@AROD,@Jay48240137 Appreciate the kind words. +06/25/2018,Sports_celeb,@AROD,@alexahnod @espn Thank you so much. +06/25/2018,Sports_celeb,@AROD,@pdotruck @tonyromo Thank you for the kind words. +06/25/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Red Sox vs. the Yankees on Sunday Night Baseball July 1. Recently, MLB's competition committee discussed pos…" +06/24/2018,Sports_celeb,@AROD,"Posse out — so long, Idaho. https://t.co/RBgdfhFSRU" +06/21/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: On Sunday Night Baseball June 24, we'll have the Phillies at the Nationals. With that in mind, what's the best of MLB's in…" +06/20/2018,Sports_celeb,@AROD,#WorldOfDance #Perfection @JLo @EGTisme https://t.co/aiAqGsYE2t +06/14/2018,Sports_celeb,@AROD,Rockin’ to some @rickspringfield on the way to see our girls’ recital. #JessiesGirl #80sNerd… https://t.co/x5xbRo5YGD +06/13/2018,Sports_celeb,@AROD,"What a great treat to hear one of my heroes, Hank Aaron. I could listen to him talk baseball all day. #legend @espn… https://t.co/bfaqvnU85O" +06/11/2018,Sports_celeb,@AROD,@darrenrovell @BarstoolBigCat @ronberk1 @RyanRuocco No. Just a 3 week time out. +06/10/2018,Sports_celeb,@AROD,"Tonight on SNB you will see the new & improved Severino. He has gone from the 1 pitch, cant miss prospect, to the 3… https://t.co/rnqrQouMmF" +06/10/2018,Sports_celeb,@AROD,Corp Quarterly Retreat. @BarstoolBigCat #ARodCorp https://t.co/V108xAcott +06/08/2018,Sports_celeb,@AROD,Many of you have been very gracious and complimentary about my analysis on @mlbonfox pregame shows. I guess it’s ti… https://t.co/5xUT652BoA +06/08/2018,Sports_celeb,@AROD,Tune into @GetUpESPN! I’ll be live in 5! https://t.co/i7sBNGyBsE +06/07/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Mets and Yankees on Sunday Night Baseball June 10. If MLB expands to 32 teams, with an equal number of teams…" +06/04/2018,Sports_celeb,@AROD,"When you spend a few years as a full-time DH and then a broadcaster, any chance you get to put on a glove ... you t… https://t.co/0PsuaRnGFr" +06/04/2018,Sports_celeb,@AROD,My little nephew...not so little as he gets ready for the #MLBDraft tomorrow! #proud @Nick__silva17 https://t.co/E4KX97CcXx +06/04/2018,Sports_celeb,@AROD,RT @Nick__silva17: Made it up to the booth! #SundayNightBaseball @AROD https://t.co/0X4Lqhw6T7 +06/03/2018,Sports_celeb,@AROD,Who’s ready for @espn #SundayNightBaseball? #bosvshou #letsgo #gettowork @barstoolbigcat https://t.co/p7H89Tqq0t +06/03/2018,Sports_celeb,@AROD,"RT @darrenrovell: The Brett Favre Draft Day photo gets all the love, but the @AROD Draft Day Photo, taken 25 years ago today when he was pi…" +05/30/2018,Sports_celeb,@AROD,Watch the Yankee game with me. I’m going to go live in a few on @instagram- get your questions ready! +05/28/2018,Sports_celeb,@AROD,".@BarstoolBigCat Thanks, Dan. Don’t forget- team meeting tomorrow, 8AM at HQ. Did you finish the financial model? https://t.co/R8Um6nMh2K" +05/28/2018,Sports_celeb,@AROD,".@BarstoolBigCat You may need earmuffs, kid https://t.co/WDxerIBSJB" +05/27/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: We've got the Red Sox and the Astros on Sunday Night Baseball June 3, from Houston. With that in mind, here's this week's…" +05/20/2018,Sports_celeb,@AROD,#FeelingTheLove #GroupHug #FamilyTime https://t.co/ZY30yvteYm +05/15/2018,Sports_celeb,@AROD,"Join me July 13th in Anaheim, CA at Relentless 2018 hosted by @dannymorel! Purchase tix: https://t.co/MDpyeC902o https://t.co/unWNc9g9Th" +05/15/2018,Sports_celeb,@AROD,RT @ABCSharkTank: .@AROD will officially be coming back as a guest shark next season! https://t.co/ITHHeCqlGc +05/13/2018,Sports_celeb,@AROD,"Always great seeing my friend this week, the amazingly talented @jimmyfallon. Did you see us “face off” swinging th… https://t.co/uVxQZpYdWR" +05/12/2018,Sports_celeb,@AROD,"Speaking at the Wall Street Journal “The Future of Everything” Festival alongside @fanatics CEO, @MichaelGRubin.… https://t.co/FWFnNlEIyB" +05/10/2018,Sports_celeb,@AROD,"Wow. They really, really love this game. +#LifeNeedsSports + +https://t.co/r7shYCQkqv" +05/08/2018,Sports_celeb,@AROD,RT @Buster_ESPN: We've got the Nationals vs. the Diamondbacks for our Sunday Night Baseball broadcast May 13. With this in mind... poll que… +05/06/2018,Sports_celeb,@AROD,"RT @MLBPipeline: Joe Dunand, a power-hitting shortstop like Uncle @AROD, leads the FSL in total bases and hits and represents the #Marlins…" +05/03/2018,Sports_celeb,@AROD,"RT @GerryMatalon: “The game is like a great meal,” said Matalon, who runs the media training company Matalon Media. “Announcers are servers…" +05/02/2018,Sports_celeb,@AROD,"Me and @kevinolearytv at the Milken Conference #FacebookLive +https://t.co/gEkGKVx5Ys" +04/30/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: For Sunday Night Baseball May 6, we will have Cubs vs. Cardinals. Our poll question for that game is about Yadier Molina's…" +04/27/2018,Sports_celeb,@AROD,"#ElAnillo pa cuando...well I keep asking her! +#HailToTheQueen @JLo" +04/25/2018,Sports_celeb,@AROD,"RT @Buster_ESPN: The Angels will host the Yankees in our next Sunday Night Baseball broadcast, on April 29th, in a game of stars. Among tho…" +04/24/2018,Sports_celeb,@AROD,@kevinmillar I forgot how good looking you used to be. 😉 https://t.co/hUzheaCkpi +04/12/2018,Sports_celeb,@AROD,RT @Inc: Publicist for Jay Z and A-Rod values creating relationships and building contacts @DarrenHeitner https://t.co/zR9Uqg6t4w +04/05/2018,Sports_celeb,@AROD,"RT @ForbesLife: Four years after being in baseball purgatory, Alex Rodriguez is finding redemption as one of the sport's most respected ana…" +04/01/2018,Sports_celeb,@AROD,Checking in on my boys @kevinburkhardt @DTrainMLB @TheBigHurt_35 ... great show guys! https://t.co/gLGP5UuU86 +03/30/2018,Sports_celeb,@AROD,Thank you guys. https://t.co/D46kwDIF3j +03/30/2018,Sports_celeb,@AROD,@TheOscGonzalez Thank you Oscar. +03/30/2018,Sports_celeb,@AROD,@yet_another_day @espn @Dodgers @SFGiants Thank you Larry. +03/30/2018,Sports_celeb,@AROD,Thanks Brian. https://t.co/Td77HOTQAZ +03/30/2018,Sports_celeb,@AROD,@reidrattlecage Thanks Tony. +03/30/2018,Sports_celeb,@AROD,@TheIanSolomon @espn Thank you Ian for the kind words. +03/30/2018,Sports_celeb,@AROD,@chrisdigerolamo @espn @SFGiants @Dodgers Thank you Chris. +03/30/2018,Sports_celeb,@AROD,@Ruinerof_Days @_jessicamendoza Thank you so much. +03/19/2018,Sports_celeb,@AROD,"We always strive to be the best, but it helps when you also can learn from the best. Tim McCarver is one of my base… https://t.co/vkQILu9VzB" +03/18/2018,Sports_celeb,@AROD,"Congrats @joedunand on your homer today. So great to watch you playing at a high level. Aim for the bushes, reach f… https://t.co/DO7YJTO448" +03/14/2018,Sports_celeb,@AROD,"Get back on your feet, get back to work, be stronger than your excuses. @cnbc #BackInTheGame #ARodCNBC" +03/13/2018,Sports_celeb,@AROD,"See if I can help former NBA star, @JoeBeast95, get back on his feet out in my new show, Back in the Game. + +Premie… https://t.co/RcnFXkfiJ5" +03/12/2018,Sports_celeb,@AROD,"Hey, #SXSW! I‘m talking baseball, business and redemption with @CNBC today at 9:30a CT. #ARodCNBC" +03/08/2018,Sports_celeb,@AROD,"Very proud of this project! #ProjectDestined + +https://t.co/E8CC3BqesG" +03/05/2018,Sports_celeb,@AROD,"Everyone loves an epic comeback story. + +See if I can help former NBA star, @JoeBeast95, get back on top. Watch my… https://t.co/Ne5Uft5ZDH" +03/04/2018,Sports_celeb,@AROD,"ICYMI: SNL “The Champions” + +https://t.co/ZU7W4iAsU3" +03/03/2018,Sports_celeb,@AROD,.@BarstoolBigCat No days off at #TheCorp https://t.co/kyycvniD4o +03/03/2018,Sports_celeb,@AROD,".@barstoolbigcat only 1,000 more to go. @barstoolsports https://t.co/jzzqQj2S07" +02/16/2018,Sports_celeb,@AROD,"RT @SportsCenter: The Cubs' Anthony Rizzo, a graduate of Marjory Stoneman Douglas High School, fought through tears as he delivered a heart…" +02/15/2018,Sports_celeb,@AROD,#HappyValentinesDay everyone!! ❤️❤️💕💕 https://t.co/PA40KpxEhq +02/07/2018,Sports_celeb,@AROD,RT @ElNidoFamily: Great advice!! “Shoot for the President; shoot for the CEO; don’t shoot for #2.” -@AROD https://t.co/XWL19AROsT +02/04/2018,Sports_celeb,@AROD,"Hmmm. Sounds good, Coach. Not sure about that logo though. I can’t place it exactly but I feel like I’ve seen it be… https://t.co/N2f4Y1Dkxn" +02/04/2018,Sports_celeb,@AROD,Just one more selfie. I just found out what the Superzoom does. https://t.co/sounGYtnlj +02/04/2018,Sports_celeb,@AROD,"“Dad, go stand behind the tree. You’re embarrassing us.” #SuperBowl #Minnesota #ella https://t.co/qCAF3ilc22" +02/03/2018,Sports_celeb,@AROD,"RT @CBBonFOX: ""You lived your dream of playing ball, I've been able to live my dream of coaching ball."" + +@DukeMBB's Coach K sits down with…" +02/03/2018,Sports_celeb,@AROD,Off to Minneapolis. ✈️ 🏈 https://t.co/vCkis3UQMz +02/02/2018,Sports_celeb,@AROD,"My 2018 ‘game plan’ for real estate investing. #CNBC #RealEstate #Investing @CNBC +https://t.co/h3jfZw55HF https://t.co/ETAAOFoOfT" +02/01/2018,Sports_celeb,@AROD,"RT @CBBonFOX: Coach K on this year's @DukeMBB team: ""They have so much to learn in a condensed period of time."" + +@AROD x Coach K... Saturda…" +02/01/2018,Sports_celeb,@AROD,"This is for every woman who works till 1am to get it right, who has the grit to get up when it’s not, and who shows… https://t.co/664uG7Ov44" +02/01/2018,Sports_celeb,@AROD,I had the honor of sitting down with Coach K. Catch the full interview Saturday on @CBBonFOX https://t.co/LgJepawxBA +01/31/2018,Sports_celeb,@AROD,"Happy birthday @barstoolbigcat. Here at the Corp we would usually give you the day off, but since it's a busy time… https://t.co/n8zg1qnxoV" +01/30/2018,Sports_celeb,@AROD,Quick break during rehearsals at @nbc @unistudios before we head to #Minneapolis for @jlo’s Super Bowl Saturday nig… https://t.co/xjJjGiEpA4 +01/29/2018,Sports_celeb,@AROD,Thanks for tuning in tonight to @ABCSharkTank! There’s another episode airing now! Do not go anywhere! +01/29/2018,Sports_celeb,@AROD,"Done deal! Congrats Martin! You’ve got, not 1, not 2, but 3 sharks backing @SnapClips! @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,Bet you didn’t see that coming… @MCuban is also in! Making that a 3-way offer of $150k for 30%. @SnapClips @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Surprise! I’m in on the deal with @LoriGreiner! @SnapClips +01/29/2018,Sports_celeb,@AROD,We have @LoriGreiner’s offer- $150k for 50% of @SnapClips. @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Quit school?! 😳 @SnapClips @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"$150,000 for 15% equity for @SnapClips. Who will make the deal? @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,Boom! @MCuban made the deal with Nick and Dan of #Changed! Congrats fellas! @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Now @MCuban is in for $250k for 25% of #Changed with no room for negotiation. @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Highway robbery @RobertHerjavec! $250k for 48%?! #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,No competitive advantage. I’m out. Best of luck to Nick and Dan. #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"2 brothers, raised by a single- mother who emigrated from Poland and worked 3 jobs to support her kids. #Inspiration #Changed @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,I’m always interested to see where people come from and hear their stories. @ABCSharkTank #Changed +01/29/2018,Sports_celeb,@AROD,Americans owe $1.3 trillion in student loan debt?! #Changed @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,$250k for 15% of #Changed. Which shark will get the deal done? @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"RT @BarbaraCorcoran: Who else loves @AROD’s definition of a PHD? Poor, Hungry and Driven! I do! I had PHD myself when I was starting out. #…" +01/29/2018,Sports_celeb,@AROD,"RT @TheSharkDaymond: “I love to work with entrepreneurs who have a PHD – Poor, hungry and driven.” - @Arod #SharkTank" +01/29/2018,Sports_celeb,@AROD,Best of luck to you guys. Never stop hustling. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"“You’re only as good as your team.” It’s okay if you’re the creative or visionary of your company, but always have… https://t.co/mFyqgPWfXi" +01/29/2018,Sports_celeb,@AROD,"Whoa, whoa, whoa.. let’s hear those numbers again. #KnowYourNumbers @ShowerPill @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Impressive resumes, fellas. @ShowerPill @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,“Shower to the people.” I like the sound of that. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,These look like my kind of guys. @ShowerPill @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"“Never take ‘no’ for an answer.” Congrats to @TheBouqsCo for your unconventional, yet inspiring @ABCSharkTank story! @robertherjavec" +01/29/2018,Sports_celeb,@AROD,"Congratulations @BarbaraCorcoran, Ondrea & Marquez on your deal! Best of luck! #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"What?! @LoriGreiner, you can’t do that to me! We’re sticking to 30%! #Partners #TheDoughBar" +01/29/2018,Sports_celeb,@AROD,Didn’t see that coming! @BarbaraCorcoran drops her offer to 25%! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,"Let’s make a deal! $400,000 from me AND Lori for 30% of #TheDoughBar! @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"My turn! “I love to do business with people who have a PHD… Poor, Hungry, & Driven.” @ABCSharkTank #TheDoughBar" +01/29/2018,Sports_celeb,@AROD,"Next: @LoriGreiner’s offer- $300,000 for 20%.. Things are getting interesting… #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"First up: @BarbaraCorcoran is in with her offer- $300,000 for 30% #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"As entrepreneurs, you should always think about the EXIT. #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Marquez, I too grew up with a single parent. My mom inspired me to go for my dreams like your dad did for you! #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"$1.2M in sales since 2015?! 280,000 doughnuts sold?! Very impressive. #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,"Well said @RobertHerjavec, “sell us on the numbers.” #TheDoughBar @ABCSharkTank" +01/29/2018,Sports_celeb,@AROD,“Wow!” Is right.. they really were delicious! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,A doughnut with 11 grams of protein?! Now that’s something even I would eat! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Whoa! You want to give @BarbaraCorcoran a heart attack?! #TheDoughBar @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,We have a great episode for you guys tonight!!! Tune in NOW! @ABCSharkTank +01/29/2018,Sports_celeb,@AROD,Who’s ready to step into the Tank with me? Tune in at 9ET for an all-new @abcsharktank! #SwimmingWithTheSharks https://t.co/XGfoQrGy5Q +01/28/2018,Sports_celeb,@AROD,RT @JLo: You don't want to miss @AROD on all NEW @ABCSharkTank TONIGHT on @ABCNetwork #SharkTank +01/28/2018,Sports_celeb,@AROD,Join me tonight at 9pm ET! I’ll be live tweeting during my episode of @ABCSharkTank. Who is tuning in? +01/27/2018,Sports_celeb,@AROD,"RT @GMA: ""It is important early on to set the standard for your kids... don't shoot for number 2."" @AROD talks family, @ABCSharkTank and mo…" +01/27/2018,Sports_celeb,@AROD,"RT @MLB: A hitting contest between @AROD and young prodigy Asher Willig on @FallonTonight. + +Who ya got? 🤔 🤔 https://t.co/nf74u8La3M https:/…" +01/27/2018,Sports_celeb,@AROD,"RT @Yankees: Cool things about this video ranked: + +1. Asher's adorableness (and skills) +2. @AROD batting lefty +3. Asher winning (spoiler al…" +01/26/2018,Sports_celeb,@AROD,RT @CNBCClosingBell: .@AROD is coming up in the next hour to talk about his latest investments. What do YOU want to ask him? Tweet us your… +01/26/2018,Sports_celeb,@AROD,Excited to be on @cnbcclosingbell today at 4:20pm! @_ARodCorp +01/24/2018,Sports_celeb,@AROD,Check out @fallontonight with @jimmyfallon right now! Hopefully I won’t have to smash eggs on my face tonight like… https://t.co/j3p0d3Owu8 +01/23/2018,Sports_celeb,@AROD,. @barstoolbigcat hope you learned your lesson. Week’s up. See you bright and early at The Corp. #BackToTheGrind +01/21/2018,Sports_celeb,@AROD,Dinero. Dinero. Dinero. #comingsoon #smash #Calibash @jlo https://t.co/TTlCcLK5hr +01/20/2018,Sports_celeb,@AROD,Game on @NRGgg!! https://t.co/jEglffK9wL +01/20/2018,Sports_celeb,@AROD,I’ll be on @fs1 tonight during #IndvsMSU soon! Great college basketball atmosphere here! +01/18/2018,Sports_celeb,@AROD,#wheelsup #10dayroadtrip #6cities #busy2018 #arodcorp @steph_mas in the back buried in emails #youcanthide #goteam https://t.co/XDQS9ADGiC +01/15/2018,Sports_celeb,@AROD,Fight for what you believe in. #MLKDay #CivilRights #ABetterAmerica @mlb https://t.co/6NlUs03trE +01/15/2018,Sports_celeb,@AROD,. @BarstoolBigCat I just told the team the news. I expect you to be back at the CORP next Monday #BigCatSuspended https://t.co/5j0wvuxFAl +01/15/2018,Sports_celeb,@AROD,@BarstoolBigCat NO EXCUSES. https://t.co/KCrA2IiYEM +01/15/2018,Sports_celeb,@AROD,RT @BarstoolBigCat: THIS IS MY NIGHTMARE https://t.co/SJIoMHX4eM +01/14/2018,Sports_celeb,@AROD,Saturday groove. #Tashi #DaddysGirl #GrowingUpSoFast https://t.co/GLFTHTu9mo +01/11/2018,Sports_celeb,@AROD,Looking forward to my keynote @AjamuGroupMulticulturalMedia Luncheon powered by @Toyota during @naias on Jan 18th… https://t.co/lz8Kdf5QjF +01/09/2018,Sports_celeb,@AROD,Still thinking about our day in Puerto Rico. Inspiration to last a lifetime. @boldworldwide @goodmorningamerica… https://t.co/3jA65ljkwP +01/06/2018,Sports_celeb,@AROD,Get after it. https://t.co/nFcZp18gxe +01/05/2018,Sports_celeb,@AROD,"Easy decision ... let’s get the 3Peat, boys! @NRGgg https://t.co/6b31aBs8A2" +01/03/2018,Sports_celeb,@AROD,Gym bound @TruFusion https://t.co/WvBX3xRDjb +12/31/2017,Sports_celeb,@AROD,2018👊🏽 https://t.co/wGNCO9v8Ek +12/31/2017,Sports_celeb,@AROD,"Hey @BarstoolBigCat. If @BadgerFootball wins, you get next week off at #ARodCorp. In other words, see you bright an… https://t.co/08CvETpoVB" +12/27/2017,Sports_celeb,@AROD,#DayAfterChristmas #WhatIsGoingOnHere https://t.co/V9UghfSsZI +12/27/2017,Sports_celeb,@AROD,Proud of the work my friend @marcuslemonis is doing to help and bring awareness to those in need in Puerto Rico. Ch… https://t.co/uTKdGnYIVI +12/25/2017,Sports_celeb,@AROD,So much for my attempted photobomb. #Blocked #Nametag #HiMyNameIsAlex #TrustMeIAmBackThere https://t.co/tmMIFxzLG4 +12/25/2017,Sports_celeb,@AROD,"To all of our family, friends, and amazing fans and supporters, have a happy, healthy and safe holiday. Merry Chri… https://t.co/SfHif0R2nj" +12/23/2017,Sports_celeb,@AROD,You can do anything. Wishing everyone a happy and healthy holiday season. #nolimits #yesyoucan #2018 #goforit… https://t.co/JR63tEj6vK +12/22/2017,Sports_celeb,@AROD,RIP Dick Enberg. True professional with a great voice and Iove of sports. Thank you for being so kind to me and my… https://t.co/uKu6S70f5G +12/21/2017,Sports_celeb,@AROD,"Here’s to two of my lifelong heroes, @imisiahthomas & @magicjohnson. Like so many, I loved watching them play baske… https://t.co/IFWkomhrcB" +12/20/2017,Sports_celeb,@AROD,Baseball / Business - 5 ways how they are alike https://t.co/YzuyEJFsN4 +12/19/2017,Sports_celeb,@AROD,You would think by now I might have a cordless phone in my office #Retro #Stuckin1990 #Mondays #OfficeLife https://t.co/LYIbGhcG5i +12/17/2017,Sports_celeb,@AROD,Gorgeous winter day in the mountains. Perfect for an outdoor hike. https://t.co/5IwTJioapm +12/17/2017,Sports_celeb,@AROD,"Talented group of guys who helped out today! + +Adell pick no. 10, for the Angels +Downs pick no. 37 for the Reds +Joe… https://t.co/Iq5q7EqUmC" +12/17/2017,Sports_celeb,@AROD,"Shoutout to head coach Melendez and his son MJ, for an incredible event for the kids, the community, and the Boys a… https://t.co/ooqZkJK7aT" +12/14/2017,Sports_celeb,@AROD,Yu Darvish is a great free-agent talent and huge value for whomever signs him. Once he figures out his World Series… https://t.co/qp3p2ARyMi +12/13/2017,Sports_celeb,@AROD,Wow! What an incredible journey conveyed through music and storytelling tonight from Bruce @Springsteen. He is one… https://t.co/lDP2FiVzf9 +12/13/2017,Sports_celeb,@AROD,"Nice prank, @davidortiz. Hats off to #Masterpass for the assist. 😂 #Sponsored https://t.co/YowWgCn6O0" +12/12/2017,Sports_celeb,@AROD,"Good times. Even better company. From our families to yours, have a safe and festive holiday season. https://t.co/KjEojq8wZC" +12/12/2017,Sports_celeb,@AROD,So much fun visiting the set of #SecondAct. Can’t wait to see this movie. @jlo @vanessahudgens #nyc #212… https://t.co/ZX9EUIMbPt +12/06/2017,Sports_celeb,@AROD,RT @barstoolsports: Another day at Barstool HQ. #ArodCorp https://t.co/lH0VqACcde https://t.co/rJ0uy7zFHy +11/29/2017,Sports_celeb,@AROD,https://t.co/koDRGL3BCH +11/29/2017,Sports_celeb,@AROD,Excited to announce that I have joined the @wmespeakers group! Looking forward to opportunities to speak with enthu… https://t.co/c4WsBLg5HW +11/28/2017,Sports_celeb,@AROD,"You got jokes, @davidortiz. But I'll get the last laugh with #Masterpass. #Sponsored https://t.co/EHeKY6ZP7z" +11/28/2017,Sports_celeb,@AROD,"Happy birthday Elaine. Incredibly passionate, loyal & loving human being. Lucky to call you a friend. @EGTisme https://t.co/nMUPr0kcz7" +11/27/2017,Sports_celeb,@AROD,Finally got some copies of the December @vanityfair cover. Signed a few for charity. What do you guys think? https://t.co/0NyNtMH4ri +11/25/2017,Sports_celeb,@AROD,Perfect day to take the girls for some ice cream #hamptons #holidayweekend https://t.co/TFbS6mfBYH +11/22/2017,Sports_celeb,@AROD,"For everyone who does their part to pay it forward for the next generation, thank you. I’m grateful for all of you.… https://t.co/kwAButhW5b" +11/22/2017,Sports_celeb,@AROD,Girls at work.  #secondact #nyc #tashi13 https://t.co/Xn7lLjXZQm +11/22/2017,Sports_celeb,@AROD,"You're not the only one with #Masterpass, @davidortiz. https://t.co/HxlcAr5RqI" +11/17/2017,Sports_celeb,@AROD,Going live on my #Instagram @AROD from the Dubai concert! +11/14/2017,Sports_celeb,@AROD,With the great Chef Nobu Matsuhisa in Dubai! https://t.co/x1Z5nTsY6D +11/14/2017,Sports_celeb,@AROD,RT @NRGgg: A birthday wish from @AROD and @JLo ?!?! Check that off the bucket list... https://t.co/Bukj0CZ0xk +11/14/2017,Sports_celeb,@AROD,I’m proud to support @caribu’s donation of their app to all currently serving military during this holiday season.… https://t.co/zKAI9tHpGa +11/12/2017,Sports_celeb,@AROD,The swagger is back! @miamihurricanes #ItsAllAboutTheU 🙌 @unclelukereal1 #TurnBackTheClock #305 #GoCanes https://t.co/E7CeXOVUhw +11/11/2017,Sports_celeb,@AROD,Thank you @DesmondHoward @ReceDavis @LeeCorso and @KirkHerbstreit for hosting me today on @collegegameday! #GoCanes… https://t.co/dSQq6sdJ85 +11/11/2017,Sports_celeb,@AROD,Miami vs Notre Dame. @collegegameday #GoCanes https://t.co/sZiamqI4em +11/10/2017,Sports_celeb,@AROD,Looking forward to the weekend like... #tgif https://t.co/cI5WByPiEW +11/10/2017,Sports_celeb,@AROD,There’s no place I’d rather be on Saturday morning than making some picks on @CollegeGameDay in my hometown of Miami! Tune in! #THEU 🙌 +11/10/2017,Sports_celeb,@AROD,Thanks to @Yankees & Jason Zillo for hosting the Q&A today at the @Harman store event. Great talking to so many fa… https://t.co/lUkIRVN19c +11/08/2017,Sports_celeb,@AROD,Sad to hear about the passing of Roy Halladay today. Tremendous competitor. Prayers go out to his family. https://t.co/qhAZeWaVyG +11/06/2017,Sports_celeb,@AROD,RT if you tuned in to @ABCSharkTank tonight! What was your favorite pitch? +11/06/2017,Sports_celeb,@AROD,"As a business scales, it gets a lot more challenging... @ABCSharkTank #SharkTank" +11/06/2017,Sports_celeb,@AROD,Never let your fear stand in the way of your dreams. @GloveStix @ABCSharkTank #SharkTank +11/06/2017,Sports_celeb,@AROD,Your competitive advantage is what sets you apart. @ABCSharkTank #SharkTank +11/06/2017,Sports_celeb,@AROD,Wrong sport... wish they would have brought a bat!!! #Basketball @hoopsmaps @ABCSharkTank +11/06/2017,Sports_celeb,@AROD,Always keep it simple. #SharkTank @BravoTipOrPay +11/06/2017,Sports_celeb,@AROD,Who is tuning in to @ABCSharkTank tonight? Only 10 more minutes until another brand new episode! I’ll be watching and tweeting with you. +11/06/2017,Sports_celeb,@AROD,Who is excited for two hours of #SharkTank tonight? @ABCSharkTank +11/05/2017,Sports_celeb,@AROD,#MySunday. Ice cream in the afternoon and then home to catch @ABCSharkTank! Tweet along with me during the show! https://t.co/2LjTsOeWQ7 +07/07/2017,Sports_celeb,@AmericanRaceTNT,"The progress he sought wasn’t happening, so @AttorneyGriggs stepped up and led his community to create change.… https://t.co/AiwmDbcuFz" +07/07/2017,Sports_celeb,@AmericanRaceTNT,"When examining the racial issues of today, @wendycarrillo emphasizes the importance of historical context leading u… https://t.co/k50sRK8u2C" +07/06/2017,Sports_celeb,@AmericanRaceTNT,"“Hashtag revolution” isn’t much of an inspiring phrase, but as @amandaseales says, they are key to spreading awaren… https://t.co/6iNjBKJNUp" +07/06/2017,Sports_celeb,@AmericanRaceTNT,"Six states: California, Texas, Florida, New York, New Jersey, & Illinois account for 59% of undocumented immigrants… https://t.co/eNQtG53BHa" +06/30/2017,Sports_celeb,@AmericanRaceTNT,Does Hollywood have a whitewashing problem? @icecube & other entertainment professionals explore in episode 3 of #AmericanRaceTNT +06/30/2017,Sports_celeb,@AmericanRaceTNT,The conversation must persist beyond the last episode of #AmericanRaceTNT. We all have to do our part. https://t.co/FdLxufPFqS +06/30/2017,Sports_celeb,@AmericanRaceTNT,"1 in 7 US infants (14%) were multiracial in 2015, three times the amount from 1980. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"Exposure to other faiths is low but rising. 21% of US adults were raised in mixed religious homes, compared to 79% single. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"In the 2nd #AmericanRaceTNT Roundtable @hodakatebi, @PeterJaeNYLA, @julissaarce & @missandrealewis talk immigration: https://t.co/tPLHBGHTpy" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"57% of Americans favor same-sex marriage, while 39% oppose it. The rest have no strong opinions one way or the other. #AmericanRaceTNT" +06/30/2017,Sports_celeb,@AmericanRaceTNT,"""Minorities are always trying their best to fit in, to belong. That’s where the patriotism comes from."" -… https://t.co/VyiAOF0ZQJ" +06/30/2017,Sports_celeb,@AmericanRaceTNT,5% of Americans in 1965 were foreign-born. Today it's 14%. How will this rising number of immigrants affect US iden… https://t.co/IPSFXYVaRb +06/30/2017,Sports_celeb,@AmericanRaceTNT,Rewatch #AmericanRaceTNT episodes 1 through 4 on the TNT app or on https://t.co/XrvB6lfS0a +06/29/2017,Sports_celeb,@AmericanRaceTNT,"ICYMI, the #AmericanRaceTNT Roundtables tackle immigration, Islam & representation. Check them out on Facebook: https://t.co/tPLHBGHTpy" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"In episode 1 of #AmericanRaceTNT, @byDVNLLN explains how the Baltimore Uprising inspired him. See it on https://t.co/XrvB6lfS0a" +06/29/2017,Sports_celeb,@AmericanRaceTNT,The best parts of the U.S. comes from the variety of cultures that inhabit it. To make it uniform is to make it ste… https://t.co/5Bhen2kTEw +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Since 2000, the immigrant population rose about 30% to a record 43.6 million in 2014. #AmericanRaceTNT" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Social media is a vital tool in activism, as supported by @amandaseales & @byDVNLLN in the 1st #AmericanRaceTNT Roundtable." +06/29/2017,Sports_celeb,@AmericanRaceTNT,"Asian immigrants are projected to overtake Hispanic immigrants by 2065, becoming 38% of the foreign-born population… https://t.co/Jm1x3hcaeh" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"In the 2nd episode of #AmericanRaceTNT, attorney @WBillyMurphy airs out the sordid history of police brutality. https://t.co/wc6af3W6d2" +06/29/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT episode 3 displays the harsh, limited reality of being a minority working in Hollywood. #whitewashing #diversity #poc" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"49% of Hispanics consider themselves a ""typical American."" 44% think they're ""very different."" The rest fall in-between. #AmericanRaceTNT" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"If you missed the conversation, you can still watch the four-part docu-series #AmericanRaceTNT on-demand. https://t.co/jgPOpprhyi" +06/28/2017,Sports_celeb,@AmericanRaceTNT,"""What does it mean to say 'Muslim is the new Black?"" @hodakatebi & @missandrealewis answer this in the 2nd #AmericanRaceTNT Roundtable." +06/28/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT approaches the conversation without bias. See all 4 episodes at https://t.co/XrvB6lfS0a & on the TNT app. +06/28/2017,Sports_celeb,@AmericanRaceTNT,".@ShaunKing holds the idea that, for all the social media criticism, there are far more instances of its positive r… https://t.co/nV2pacBYZi" +06/28/2017,Sports_celeb,@AmericanRaceTNT,One of the largest issues surrounding undocumented residents in the U.S is the unfortunate effect it has on their k… https://t.co/wSqsMyX6Av +06/28/2017,Sports_celeb,@AmericanRaceTNT,68% of black social media users are likely to say that they see racial posts online. #AmericanRaceTNT +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Prof. #JodyArmour hosts two #AmericanRaceTNT Roundtables w/ panelists @ShaunKing, @amandaseales, @hodakatebi & more. https://t.co/4ivMNIxWha" +06/27/2017,Sports_celeb,@AmericanRaceTNT,All #AmericanRaceTNT episodes available for download with the TNT app. +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Islam is a divisive topic in Irving, Texas. The 2nd episode of #AmericanRaceTNT explores this divide from both sides." +06/27/2017,Sports_celeb,@AmericanRaceTNT,Let's continue the conversation. Surround yourself with diverse-minded people & strive for a better future.… https://t.co/oCckwZmJkd +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Minorities are the most likely to live in multi-generational homes, & at 27%, Asians are the largest of these groups. #AmericanRaceTNT" +06/27/2017,Sports_celeb,@AmericanRaceTNT,"Episode 4 of #AmericanRaceTNT dives into immigration. If you missed it the first time around, find it on… https://t.co/RKKYC8WNBl" +06/27/2017,Sports_celeb,@AmericanRaceTNT,"In the 1st #AmericanRaceTNT Roundtable @ShaunKing, @amandaseales, @wendycarillo & @byDVNLLN discuss police brutality https://t.co/xHl6MrWTQZ" +06/27/2017,Sports_celeb,@AmericanRaceTNT,RT @NABJ: .@NABJSports welcomes Charles Barkley of @AmericanRaceTNT and @simone_manuel of @USASwimming to #NABJ17. See more: https://t.co/D… +06/27/2017,Sports_celeb,@AmericanRaceTNT,Episode 4 of #AmericanRaceTNT takes a deep dive into immigration and how it affects American citizens. Watch it at https://t.co/XrvB6lfS0a +06/26/2017,Sports_celeb,@AmericanRaceTNT,There’s few things more damaging to Muslim public image than the overwhelmingly negative portrayal in media.… https://t.co/7Y2Ywp5t0N +06/25/2017,Sports_celeb,@AmericanRaceTNT,President Trump’s consistent anti-Mexican rhetoric has naturally unsettled Latinos across the country to varying de… https://t.co/yiQDYRhvFy +06/24/2017,Sports_celeb,@AmericanRaceTNT,Conservative. Liberal. Everything in between or neither. #AmericanRaceTNT tackles the issues important to everyone. https://t.co/AfVEHlNDYV +06/24/2017,Sports_celeb,@AmericanRaceTNT,"For decades, Asians have witnessed the same tired stereotypes in fiction, and rapper @dumbfoundead refutes them as… https://t.co/I9lURTjja9" +06/23/2017,Sports_celeb,@AmericanRaceTNT,All episodes of #AmericanRaceTNT are ready to watch on-demand and on @tntdrama digital platforms. https://t.co/vesBNwVSey +06/23/2017,Sports_celeb,@AmericanRaceTNT,Get inspired and extend the conversation beyond the show. @PeterJaeNYLA lets you know how. #AmericanRaceTNT https://t.co/09ObgUIg8n +06/22/2017,Sports_celeb,@AmericanRaceTNT,Rewatch all 4 episodes of #AmericanRaceTNT on https://t.co/3VE9C7gwKQ and the TNT app +06/22/2017,Sports_celeb,@AmericanRaceTNT,"Diversity in Hollywood is a crucial topic to be breached, and @icecube explains what he sees as issues in the indus… https://t.co/QFgPH9EYDD" +06/22/2017,Sports_celeb,@AmericanRaceTNT,"The amount of anti-Muslim hate groups in the U.S. tripled in 2016, according to the @splcenter. #AmericanRaceTNT https://t.co/27MMtxGe3g" +06/22/2017,Sports_celeb,@AmericanRaceTNT,"Different communities may seek different things, but at the end of the day, progress is the singular goal.… https://t.co/D1nUxR91pJ" +06/21/2017,Sports_celeb,@AmericanRaceTNT,"An idealized America should not only accept, but celebrate, the variety of cultures that comprise it.… https://t.co/FBDHB9TxRh" +06/21/2017,Sports_celeb,@AmericanRaceTNT,Sometimes the conversation leads to understanding. Sometimes it just reveals how deep a divide this country has.… https://t.co/XKc0yaNZY5 +06/21/2017,Sports_celeb,@AmericanRaceTNT,"Activist and blogger @hodakatebi believes in a limit to free speech. Do you agree &, if so, where does the threshol… https://t.co/eH1OBYq9mR" +06/21/2017,Sports_celeb,@AmericanRaceTNT,Perception of journalistic integrity has eroded in recent times. Professor @trbhsk cites fake news as the source… https://t.co/7Wz3GgiCRY +06/20/2017,Sports_celeb,@AmericanRaceTNT,"Many Americans may go their entire lives without meeting certain minorities, leaving the media to properly represen… https://t.co/2YV3iioPQI" +06/19/2017,Sports_celeb,@AmericanRaceTNT,Sometimes the conversation leads to understanding. Sometimes it just reveals how deep a divide this country has.… https://t.co/JPBbpHt2VX +06/19/2017,Sports_celeb,@AmericanRaceTNT,RT @AttorneyGriggs: I want to thank #AmericanRaceTNT @americanracetnt for the lovely gift. #justicefighter https://t.co/r326XFYnYg +06/19/2017,Sports_celeb,@AmericanRaceTNT,"Religion's significance in the U.S. is waning, a trend that's projected to continue. Is this a cause for concern?… https://t.co/6UkVzlhfGS" +06/16/2017,Sports_celeb,@AmericanRaceTNT,Relive the #AmericanRaceTNT conversation on TNT digital platforms. https://t.co/NzKhKvktky +06/15/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT is on tonight at 11pm PST. Tune-in and continue the conversation about race, religion & stereotype… https://t.co/lDtWVcypqu" +06/14/2017,Sports_celeb,@AmericanRaceTNT,How likely are you to see a film if an actor's ethnicity is inconsistent with their character's? #AmericanRaceTNT https://t.co/4rH0Ywbven +06/14/2017,Sports_celeb,@AmericanRaceTNT,"Due to a large influx of Asian & Hispanic immigrants, Millennials are the most diverse generation in US history.… https://t.co/EJKgZFujzr" +06/14/2017,Sports_celeb,@AmericanRaceTNT,"The US prides itself on being a melting pot, yet minorities like @julissaarce are being told every day to shed thei… https://t.co/rUjXXiIOxt" +06/13/2017,Sports_celeb,@AmericanRaceTNT,"Dr. @darnell_hunt’s research illustrates major racial discrepancies in media, preventing diverse stories from being… https://t.co/mxC1dviskR" +06/11/2017,Sports_celeb,@AmericanRaceTNT,.@AttorneyGriggs boldly shares the Black American experience with white supremacist Richard Spencer in episode 4 of… https://t.co/0un7v3kwTO +06/10/2017,Sports_celeb,@AmericanRaceTNT,The conversation needs to start today for a richer America tomorrow. Rewatch #AmericanRaceTNT on the TNT app. +06/08/2017,Sports_celeb,@AmericanRaceTNT,".@pewresearch: Muslims are the youngest major US religious group with a median age of 24, as well as the quickest growing. #AmericanRaceTNT" +06/08/2017,Sports_celeb,@AmericanRaceTNT,All four episodes of #AmericanRaceTNT are waiting for you on TNT’s digital platforms on-demand. https://t.co/6YPye0sEpA +06/08/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT spans the country, spreading a long overdue conversation where it's needed most. Rewatch the action on the TNT app." +06/08/2017,Sports_celeb,@AmericanRaceTNT,"With #AmericanRaceTNT now on-demand, witness the conversation and the passion of the people across the country. https://t.co/BhmkZvFuPx" +06/08/2017,Sports_celeb,@AmericanRaceTNT,Racial tensions come to a head as representatives of two opposing communities discuss the state of race in America.… https://t.co/4HDCgMUcEc +06/07/2017,Sports_celeb,@AmericanRaceTNT,Necessary. Powerful. And a long time coming. #AmericanRaceTNT is all the talk online. Find the conversation at… https://t.co/QmxXCygKyh +06/07/2017,Sports_celeb,@AmericanRaceTNT,"If you missed the initial run of #AmericanRaceTNT, don't worry. Download the TNT app and can continue the conversation." +06/07/2017,Sports_celeb,@AmericanRaceTNT,One of the only things holding back the country socially is a lack of dialogue. Tune into #AmericanRaceTNT on-demand and see the change. +06/07/2017,Sports_celeb,@AmericanRaceTNT,The rise of a globally connected internet gives a platform to those who before had no way to speak their minds.… https://t.co/s6fLCGQM8K +06/06/2017,Sports_celeb,@AmericanRaceTNT,"One officer’s negative actions can put an entire police force in a negative light, but still officers strive to be… https://t.co/5HMDSpICIZ" +06/06/2017,Sports_celeb,@AmericanRaceTNT,Conventional movie wisdom maintains that white leads sell better than non-white leads overseas. New data shows othe… https://t.co/2sKCAcylTG +06/06/2017,Sports_celeb,@AmericanRaceTNT,@PamRdrqs Thank you for watching and being part of the conversation. This series is only the beginning. +06/04/2017,Sports_celeb,@AmericanRaceTNT,"Entertainer @amandaseales clarifies that Black Pride’s intent is to live on its own, not in opposition to whites.… https://t.co/VV5BahMSSO" +06/03/2017,Sports_celeb,@AmericanRaceTNT,"To compensate for a lack of Asian-American male role models, @dumbfoundead stepped up and became one himself. #AmericanRaceTNT" +06/02/2017,Sports_celeb,@AmericanRaceTNT,"When it comes to casting in Hollywood, too many minority roles still rely on tired stereotypes, frustrating many actors. #AmericanRaceTNT" +06/02/2017,Sports_celeb,@AmericanRaceTNT,"If you have the TNT app, you can continue the #AmericanRaceTNT conversation." +06/01/2017,Sports_celeb,@AmericanRaceTNT,An undocumented citizen in #AmericanRaceTNT risks a 10-year exile if she applies for US citizenship - a risk many refuse to take. +06/01/2017,Sports_celeb,@AmericanRaceTNT,"To ease the minds of her citizens, @IrvingMayor banned Sharia Law in the city. This in turn alienated the Muslim community. #AmericanRaceTNT" +06/01/2017,Sports_celeb,@AmericanRaceTNT,Rewatch the conversation and questions posed on-demand and on the TNT app. #AmericanRaceTNT +06/01/2017,Sports_celeb,@AmericanRaceTNT,"Every week, a vigil is held before Baltimore City Hall in honor of victims of police brutality. #AmericanRaceTNT" +05/31/2017,Sports_celeb,@AmericanRaceTNT,"62% of Americans get news from social media & these platforms often find themselves filled with fake news, deluding many. #AmericanRaceTNT" +05/31/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT is available to stream now on-demand at https://t.co/XrvB6lfS0a and the TNT app. +05/31/2017,Sports_celeb,@AmericanRaceTNT,Charles sits down with television legend @TheNormanLear to talk about his massive influence in promoting media diversity. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,"#AmericanRaceTNT has always been about learning and growing, for both viewers and Charles himself." +05/30/2017,Sports_celeb,@AmericanRaceTNT,A Baltimore town hall meeting illuminates the brutal reality many of its citizens live every day. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,Kindness is a trait gained by spending time with people unlike yourself. Talk to a stranger and make tomorrow better. #AmericanRaceTNT +05/30/2017,Sports_celeb,@AmericanRaceTNT,@JamesPearson6 Catch up on #AmericanRaceTNT on-demand at https://t.co/XrvB6lfS0a or download the TNT app. +05/30/2017,Sports_celeb,@AmericanRaceTNT,Catch up on #AmericanRaceTNT on-demand at https://t.co/XrvB6lfS0a or download the TNT app. +05/29/2017,Sports_celeb,@AmericanRaceTNT,"Irving has one of the most diverse zip codes in the US, and #AmericanRaceTNT explores how diversity has brought tension to the city." +05/29/2017,Sports_celeb,@AmericanRaceTNT,"If those you speak to remain the same every day, month and year, your perspective won't grow. Join a wider conversation. #AmericanRaceTNT" +05/29/2017,Sports_celeb,@AmericanRaceTNT,Download the TNT app or head to https://t.co/XrvB6lfS0a to watch #AmericanRaceTNT and further the dialogue. +05/29/2017,Sports_celeb,@AmericanRaceTNT,Informal separation of cultures in society is one of the biggest obstacles in moving forward in America. #AmericanRaceTNT +05/28/2017,Sports_celeb,@AmericanRaceTNT,The conversation is vital to the progress of this country. Download the TNT app and watch #AmericanRaceTNT today. +05/27/2017,Sports_celeb,@AmericanRaceTNT,"Day in and day out, thousands of undocumented families live in fear of deportation. Episode 3 features one. #AmericanRaceTNT" +05/27/2017,Sports_celeb,@AmericanRaceTNT,"In episode one of #AmericanRaceTNT, Charles spends time with Baltimore PD to understand both sides of the conflict." +05/27/2017,Sports_celeb,@AmericanRaceTNT,RT @markchironna: Charles Barkley does a masterful job on the docu-series on TNT @AmericanRaceTNT - so needed and so well done - we all owe… +05/26/2017,Sports_celeb,@AmericanRaceTNT,"Being American means staying true to your faith, no matter what faith that is. #AmericanRaceTNT https://t.co/OolCIxeTNo" +05/25/2017,Sports_celeb,@AmericanRaceTNT,What happens when the thing you're promised never gets delivered? You may get irritated. @PeterJaeNYLA is.… https://t.co/6q1W6881JH +05/24/2017,Sports_celeb,@AmericanRaceTNT,Can humor stir discussions that may not happen otherwise? @MattBesser seems to think so. #AmericanRaceTNT https://t.co/OAXGy5oK69 +05/24/2017,Sports_celeb,@AmericanRaceTNT,"Radical Islam can take any form, not just the ones we’re familiar with. #AmericanRaceTNT https://t.co/PoIC1cxPKD" +05/24/2017,Sports_celeb,@AmericanRaceTNT,Episode 4 of #AmericanRaceTNT tackles the growing influence of fake news. See the conversation on-demand. +05/24/2017,Sports_celeb,@AmericanRaceTNT,"Breaking bread means breaking down walls, which allows true progress to happen. #AmericanRaceTNT https://t.co/UIwQZAoKVF" +05/24/2017,Sports_celeb,@AmericanRaceTNT,@FLSMagazine Thank you for doing your part to keep this important conversation going. +05/24/2017,Sports_celeb,@AmericanRaceTNT,RT @Dee_T_Knight: Norman Lear on @AmericanRaceTNT is everything...Made me tear up a little. 🙌🏾 +05/23/2017,Sports_celeb,@AmericanRaceTNT,"The US is projected to grow more colorful each day, yet no steps are taken to reflect this in Hollywood.… https://t.co/f9oT8cOBGQ" +05/23/2017,Sports_celeb,@AmericanRaceTNT,"RT @NPRCodeSwitch: In 'American Race,' Charles Barkley Is A True Believer In The Power Of Dialogue (by @GeeDee215) + +https://t.co/9pJFhvKU…" +05/23/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT poses a discussion that this country needs to have. Download the TNT app and watch the entire docu-series today. +05/22/2017,Sports_celeb,@AmericanRaceTNT,The conversation continues on-demand and on the TNT app. Check out all 4 episodes today. #AmericanRaceTNT +05/21/2017,Sports_celeb,@AmericanRaceTNT,The 3rd episode of #AmericanRaceTNT asks why minorities seem to be so misrepresented in the entertainment industry. +05/20/2017,Sports_celeb,@AmericanRaceTNT,"Whispered, spoken, or shouted, the conversation must happen. And it has to happen now. #AmericanRaceTNT https://t.co/KxPCXdQiG0" +05/20/2017,Sports_celeb,@AmericanRaceTNT,Hear the conversation. From all sides. #AmericanRaceTNT https://t.co/tuobeB3UyW +05/20/2017,Sports_celeb,@AmericanRaceTNT,Episodes one through four of #AmericanRaceTNT are available online at https://t.co/XrvB6lfS0a as well as the TNT app. Stream today. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Stream all 4 episodes of #AmericanRaceTNT at https://t.co/XrvB6lfS0a and on the TNT app. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Download the TNT app today to stream the entire #AmericanRaceTNT docu-series and get involved in the conversation. +05/19/2017,Sports_celeb,@AmericanRaceTNT,The Islamic Center of Irving alarmed many residents in #AmericanRaceTNT. Should it? See it for yourself in episode 3 on-demand. +05/19/2017,Sports_celeb,@AmericanRaceTNT,Journalism professor Hank Klibanoff has noted the historical trend of leaders rousing people with hateful words.… https://t.co/NQ5e34hrjz +05/18/2017,Sports_celeb,@AmericanRaceTNT,"RT @TeamCornersLC: Corners was featured on TNT's American Race, episode +4, The Divided States of America. Watch it here https://t.co/IOw9C…" +05/18/2017,Sports_celeb,@AmericanRaceTNT,RT @doravldz: .@AmericanRaceTNT was really well done. Good job #CharlesBarkley! Everyone should watch. 👏🏼👏🏼 +05/17/2017,Sports_celeb,@AmericanRaceTNT,RT @LSahba: @CharlesBarkIey as player/entertainer you've been fun to watch. But @AmericanRaceTNT made u important to watch and listen to.… +05/16/2017,Sports_celeb,@AmericanRaceTNT,"When it comes to the diversity conversation in America, Asians often don’t feel like they have a voice.… https://t.co/rqanswrmwP" +05/15/2017,Sports_celeb,@AmericanRaceTNT,Starting the conversation today promises change tomorrow. #AmericanRaceTNT. https://t.co/DTPAnbo5Kh +05/15/2017,Sports_celeb,@AmericanRaceTNT,Continue the #AmericanRaceTNT conversation and let us know your thoughts: https://t.co/8fbVTH3T2U +05/14/2017,Sports_celeb,@AmericanRaceTNT,Starting the conversation today promises change tomorrow. #AmericanRaceTNT. https://t.co/DDRAeYaFqE +05/13/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT covered many stories and voices. Now it's your turn. Tell us your thoughts: https://t.co/sHX7vzugcU +05/13/2017,Sports_celeb,@AmericanRaceTNT,"If you missed out on #AmericanRaceTNT, you can catch up with all four episodes on-demand. It’s never too late to st… https://t.co/7gLT99dS0p" +05/13/2017,Sports_celeb,@AmericanRaceTNT,America fails to be a melting pot when even one of its communities is marginalized. #AmericanRaceTNT https://t.co/H1XabtpDsE +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @dumbfoundead: I'm TNT's @AmericanRaceTNT show go check it out. In Korea about to drop a new project in about a week! Yeeee enjoy! +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @garretdillahunt: Lemme rephrase--watch @AmericanRaceTNT +05/13/2017,Sports_celeb,@AmericanRaceTNT,RT @JohnnyGalante: @AmericanRaceTNT Well done. Appreciate that you show both sides of the issues. +05/13/2017,Sports_celeb,@AmericanRaceTNT,"RT @GrieserSteve: @CharlesBarkIey, thank you for hosting @AmericanRaceTNT. It's a must watch" +05/13/2017,Sports_celeb,@AmericanRaceTNT,Tonight we journey to Atlanta on the second-night of our national conversation on American Race. https://t.co/FYxqCr57Dd +05/12/2017,Sports_celeb,@AmericanRaceTNT,Professor Hank Klibanoff expresses his concerns about the unfortunate direction of news media in episode 4 of… https://t.co/IZ2btp6Ka6 +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @missandrealewis: Tune-in now to @AmericanRaceTNT Facebook Roundtable. We will be discussing immigration & whitewashing in Hollywood. ht… +05/12/2017,Sports_celeb,@AmericanRaceTNT,"The #AmericanRaceTNT FB Live panel with @PeterJaeNYLA, @hodakatebi, @julissaarce and @missandrealewis starts now: https://t.co/7rOTyxqT7I" +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @julissaarce: Tune in @ 10am PST for a conversation with @hodakatebi @missandrealewis for @AmericanRaceTNT https://t.co/uBGCpzG3b9 https… +05/12/2017,Sports_celeb,@AmericanRaceTNT,Actor @peternyla knows firsthand how Hollywood treats diverse roles. Meet him on the #AmericanRaceTNT FB Live 5/12… https://t.co/XPLkCo188N +05/12/2017,Sports_celeb,@AmericanRaceTNT,.@hodakatebi bridges American and Middle East experiences through fashion. Meet her on the #AmericanRaceTNT FB Live… https://t.co/TpIsqXzzGS +05/12/2017,Sports_celeb,@AmericanRaceTNT,"The conversation continues tonight as #AmericanRaceTNT journeys to Baltimore, MD and Irving, TX https://t.co/nczBvUsZOE" +05/12/2017,Sports_celeb,@AmericanRaceTNT,RT @BaltMediaBlog: #AmericanRaceTNT (@AmericanRaceTNT) will feature #BaltimoreRising TONIGHT at 9pm on @tntdrama https://t.co/RpX9GoykJK +05/12/2017,Sports_celeb,@AmericanRaceTNT,"RT @ThePostGame: Charles Barkley's @AmericanRaceTNT includes Ice Cube, Richard Spencer, Khizr & Ghazala Khan, CT Vivian, Norman Lear https:…" +05/11/2017,Sports_celeb,@AmericanRaceTNT,Should the security of all come at the expense of the few? A question #AmericanRaceTNT seeks to answer. https://t.co/5NLsFecGNq +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Hollywood’s approach to diversity is a controversial issue, and one that @icecube has a lot to say about.… https://t.co/GWRIcvPMRi" +05/11/2017,Sports_celeb,@AmericanRaceTNT,.@USC Professor Jody Armour studies the intersection of race and legal decision-making. Watch him on our FB Live 5/… https://t.co/yiNym4TmJQ +05/11/2017,Sports_celeb,@AmericanRaceTNT,.@julissaarce went from undocumented to Wall Street and fighting for immigrant rights. Meet her on our FB Live 5/12… https://t.co/HnMxOXl7xK +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Jonathan Park tackles longtime Asian-American issues as rapper @dumbfoundead, securing a place as an Asian role mod… https://t.co/eUNcgcKvrf" +05/11/2017,Sports_celeb,@AmericanRaceTNT,"Before you tune-in tonight to the series premiere of #AmericanRaceTNT, watch Charles Barkley today on @CNN at 3pm ET/PT." +05/10/2017,Sports_celeb,@AmericanRaceTNT,".@icecube climbed his way to stardom from humble beginnings. In episode 3 of #AmericanRaceTNT, he and Charles talk… https://t.co/AiR6rX1DjU" +05/10/2017,Sports_celeb,@AmericanRaceTNT,"Tune-in on May 11, the dialogue begins, and arguments turn into conversations. #AmericanRaceTNT https://t.co/mYq3XBis2a" +05/09/2017,Sports_celeb,@AmericanRaceTNT,RT @AttorneyGriggs: Starting the conversation on Race is much needed in America! #AmericanRaceTNT @tntdrama May 11 and 12 @ 9 On Demand Now… +05/09/2017,Sports_celeb,@AmericanRaceTNT,"Many deemed the chaos left in the wake of Freddie Gray’s death a riot, @byDVNLLN considered it a necessary uprising… https://t.co/mK3EgzewIs" +05/08/2017,Sports_celeb,@AmericanRaceTNT,@davidbanner Let us know what you think: https://t.co/aVerPR2PWH +05/08/2017,Sports_celeb,@AmericanRaceTNT,"Tonight, Charles Barkley continues his journey, hungry for the answers this country needs. #AmericanRaceTNT https://t.co/GxzuCaFfca" +05/08/2017,Sports_celeb,@AmericanRaceTNT,RT @amandaseales: Watch me on @AmericanRaceTNT's live Facebook Roundtable it starts at 10amPST! https://t.co/knfDgG7Zja +05/08/2017,Sports_celeb,@AmericanRaceTNT,"The #AmericanRaceTNT FB Live panel with @ByDVNLLN, @WendyCarrillo, @ShaunKing and @AmandaSeales starts now: https://t.co/xHl6MseuIx" +05/08/2017,Sports_celeb,@AmericanRaceTNT,"You just saw #AmericanRaceTNT on-demand, now join us on FB Live as we unpack everything with our roundtable of experts and influencers." +05/07/2017,Sports_celeb,@AmericanRaceTNT,"Tune into our FB Live Roundtable, where we’ll dive deeper with the issues presented in the series. #AmericanRaceTNT https://t.co/tRObzePqHX" +05/07/2017,Sports_celeb,@AmericanRaceTNT,"For many, black lives have been reduced to social media sensations, but even more are fighting this image.… https://t.co/lL7hro6Z1v" +05/07/2017,Sports_celeb,@AmericanRaceTNT,"""I think, in America, we kind-of forgot how to be good neighbors."" - Charles Barkley #AmericanRaceTNT https://t.co/2NghqqFEyc" +05/07/2017,Sports_celeb,@AmericanRaceTNT,Witness the conversation tonight after @NBAonTNT before you continue the journey on #AmericanRaceTNT tomorrow. https://t.co/GfhZ2rHzTh +05/06/2017,Sports_celeb,@AmericanRaceTNT,One day left until #AmericanRaceTNT navigates the country’s biggest social and racial issues. https://t.co/fGPcp2aFy4 +05/06/2017,Sports_celeb,@AmericanRaceTNT,"On May 7th, don’t miss TNT’s exploration of race in America. #AmericanRaceTNT https://t.co/WSZo842Bdg" +05/05/2017,Sports_celeb,@AmericanRaceTNT,RT @CBSThisMorning: Charles Barkley gets real on race in America in new series: https://t.co/1G4Efgm62S +05/05/2017,Sports_celeb,@AmericanRaceTNT,"The US has a wealth of communities, but is more divided than ever. #AmericanRaceTNT aims to open a dialogue to clos… https://t.co/XKvpkhQbzJ" +05/05/2017,Sports_celeb,@AmericanRaceTNT,"Charles Barkley sparks the #AmericanRaceTNT conversation, tonight with @colbertlateshow https://t.co/YZHoh6lm5C" +05/04/2017,Sports_celeb,@AmericanRaceTNT,There’s only 3 days left until #AmericanRaceTNT starts the conversation. https://t.co/7ODDCvvFNs +05/04/2017,Sports_celeb,@AmericanRaceTNT,What role does Hollywood play in its portrayal of minorities and stereotypes? LA is the place to find out more. #AmericanRaceTNT +05/04/2017,Sports_celeb,@AmericanRaceTNT,There are few places more conflicted than Baltimore when it comes to police-community relations. #AmericanRaceTNT visits for a closer look. +05/04/2017,Sports_celeb,@AmericanRaceTNT,"Sharmina Zaidi is a mother, business owner, Muslim, and American. Meet her in episode 2 of American Race.… https://t.co/8FFKMS1OSO" +05/04/2017,Sports_celeb,@AmericanRaceTNT,"Baltimore erupted into chaos in 2015, and photographer @byDVNLLN captured the Uprisings' most harrowing moments. #AmericanRaceTNT" +05/04/2017,Sports_celeb,@AmericanRaceTNT,RT @corimurray: Current situation: @AmericanRaceTNT panel with #CharlesBarkley x @Bakari_Sellers #AmericanRaceTNT https://t.co/fSTy0sIt5X +05/04/2017,Sports_celeb,@AmericanRaceTNT,RT @Essence: Currently live at the #AmericanRaceTNT panel about race relations w/ #CharlesBarkley @Bakari_Sellers and local activists. Stay… +05/04/2017,Sports_celeb,@AmericanRaceTNT,"RT @colbertlateshow: TONIGHT on #LSSC: Charles Barkley of @AmericanRaceTNT, Debra Winger from @theloversmov, comedy from @stollemache, and…" +05/03/2017,Sports_celeb,@AmericanRaceTNT,Starting a conversation is one of the most vital components to moving past the racial issues plaguing the country.… https://t.co/c6R57cmeGM +05/03/2017,Sports_celeb,@AmericanRaceTNT,Racial divisions are fracturing America. #AmericanRaceTNT takes the first step towards healing by opening a dialogue in four key cities. +05/03/2017,Sports_celeb,@AmericanRaceTNT,Do you think comedy helps heal or divide? Episode 3 of #AmericanRaceTNT explores the question at @ucbtla +05/03/2017,Sports_celeb,@AmericanRaceTNT,"To better understand the racial issues splintering the country, #AmericanRaceTNT visits four key cities central to the conversation." +05/03/2017,Sports_celeb,@AmericanRaceTNT,.@byDVNLLN is a photographer/activist whose shots of the Baltimore Uprising galvanized the city. Meet him in episod… https://t.co/3ljkhknL9d +05/02/2017,Sports_celeb,@AmericanRaceTNT,The number of prisoners skyrockets each year. Join Charles Barkley as he explores the root of the issue.… https://t.co/FLXS68gPx9 +05/02/2017,Sports_celeb,@AmericanRaceTNT,"Catch a preview of #AmericanRaceTNT May 7th after the @NBA Playoffs and share your own experiences about race, religion and stereotypes" +05/02/2017,Sports_celeb,@AmericanRaceTNT,"Join the conversation on May 8, watch all four episodes of #AmericanRaceTNT on demand at @tntdrama.com" +05/02/2017,Sports_celeb,@AmericanRaceTNT,"With the country racially divided--conversation is more important than ever. On May 8, Watch all 4 episodes of #AmericanRaceTNT On Demand." +04/29/2017,Sports_celeb,@AmericanRaceTNT,"Baltimore. Irving. LA. Atlanta. On May 8, watch Charles Barkley explore the division in these cities in #AmericanRaceTNT on demand." +04/28/2017,Sports_celeb,@AmericanRaceTNT,There’s no right or wrong on these issues. Just two sides in need of dialogue. #AmericanRaceTNT https://t.co/cpHAHxo1Oo +04/27/2017,Sports_celeb,@AmericanRaceTNT,"If pictures are worth 1,000 words, then truly poignant art can open impactful dialogue. #AmericanRaceTNT https://t.co/0xL9uZsy2D" +04/27/2017,Sports_celeb,@AmericanRaceTNT,A harsh divide exists between police and the community in Baltimore. #AmericanRaceTNT looks to open a dialogue between the two sides. +04/27/2017,Sports_celeb,@AmericanRaceTNT,Follow Charles Barkley crossing the country to start a conversation about race. Catch the @TNTDrama sneak peek on May 7 #AmericanRaceTNT +04/26/2017,Sports_celeb,@AmericanRaceTNT,"America’s got something to say. On May 7th, it’s time to listen. #AmericanRaceTNT https://t.co/lmfL1kTH8o" +04/26/2017,Sports_celeb,@AmericanRaceTNT,.@TNTDrama American Race tackles hard-hitting questions about race in #America. Catch a preview of the conversation May 7 #AmericanRaceTNT +04/26/2017,Sports_celeb,@AmericanRaceTNT,#AmericanRaceTNT tackles hard-hitting questions about race in America. Catch a preview of the conversation May 7th… https://t.co/g6FLUcWq4L +04/24/2017,Sports_celeb,@AmericanRaceTNT,"On May 7th, voices will be heard and conversations will be had. #AmericanRaceTNT https://t.co/QxOLe98l33" +04/22/2017,Sports_celeb,@AmericanRaceTNT,Charles Barkley will take you across a troubled nation. #AmericanRaceTNT https://t.co/4Y1kwjTIX9 +04/21/2017,Sports_celeb,@AmericanRaceTNT,"Coming May 7, the things that divide us will be given a fresh perspective. #AmericanRaceTNT https://t.co/AB4TV6HZpv" +04/20/2017,Sports_celeb,@AmericanRaceTNT,"Don’t miss Charles Barkley’s four part docu-series about race, religion and stereotypes. #AmericanRaceTNT https://t.co/4ZqTnPfDLy" +06/28/2018,Sports_celeb,@MichaelPhelps,RT @poolsafely: Anyone who has watched @MichaelPhelps at the Olympics has seen him dominate the Individual Medley. Named after his signatur… +06/08/2018,Sports_celeb,@MichaelPhelps,Thankfully this story has a happy ending... please remember to always be water safe...esp during the summer months!… https://t.co/C4SAQb0Kw8 +05/22/2018,Sports_celeb,@MichaelPhelps,RT @cityofStCharles: Our town shined last night with @MichaelPhelps and @JDayGolf as headliners in @ALESolutionsInc second annual @GolfGive… +04/24/2018,Sports_celeb,@MichaelPhelps,"RT @CoachJim4UM: The @MichaelPhelps Swim Spa is still sturdy & working great after three years, Thanks @HotTubLeisure https://t.co/xzmyi2xr…" +04/24/2018,Sports_celeb,@MichaelPhelps,This is a pic I came across the other day and I had to share. It just made me lol🙈 #mattkuchar #rio https://t.co/ard1T15niB +04/12/2018,Sports_celeb,@MichaelPhelps,#TBT to taking over Times Square with an important message to save water on #WorldWaterDay. A lot of people have ac… https://t.co/M4DPnIcZok +04/10/2018,Sports_celeb,@MichaelPhelps,"#OMEGAGolf / #OMEGAmychoice +Great day on the links with my friends at @OMEGAwatches! The Road to St. Louis for the… https://t.co/QDdhUW1s7m" +04/05/2018,Sports_celeb,@MichaelPhelps,It’s here!!! #themasters2018 +03/22/2018,Sports_celeb,@MichaelPhelps,Did you know today is #WorldWaterDay? So make sure you remember that #EveryDropCounts. Joining @Colgate for the sec… https://t.co/3FwfuL1sZL +03/18/2018,Sports_celeb,@MichaelPhelps,All I gotta say is.... LETS GO BLUE!!! @umichbball #marchmadness +03/11/2018,Sports_celeb,@MichaelPhelps,Pumped for golf today.... @TigerWoods 1 shot back and in the Sunday red! +03/08/2018,Sports_celeb,@MichaelPhelps,"This is an important issue in every sport, and I encourage all adults to join me in completing this program. @Aly_Raisman" +03/08/2018,Sports_celeb,@MichaelPhelps,Thx Aly Raisman for making this program available and free!  Each of us needs to do our part to make all sports saf… https://t.co/qExoob8ITK +02/26/2018,Sports_celeb,@MichaelPhelps,Great article!! https://t.co/EKGpmRr7C9 +02/14/2018,Sports_celeb,@MichaelPhelps,Let’s go @shaunwhite !!! Way to go man!! Nothing like a good comeback right?? Redemption always feels great!! #usa #OlympicGames2018 +02/10/2018,Sports_celeb,@MichaelPhelps,"RT @medibio_limited: In our efforts to help break the stigma that surrounds the discussion of mental health, we applaud @MichaelPhelps comf…" +02/10/2018,Sports_celeb,@MichaelPhelps,RT @NBCSports: See why @shaunwhite sees parallels between himself and @MichaelPhelps. https://t.co/YBip7JCJzg https://t.co/dPCVvmzHdp +02/10/2018,Sports_celeb,@MichaelPhelps,So fun!! Way to go Greg! https://t.co/zPa8UDGUt5 +01/16/2018,Sports_celeb,@MichaelPhelps,Sorry for swimming into your story Greg!! Keep up the progress! Check out Greg’s @lovemysilk commercial. 🏊… https://t.co/ZIgqwjdmCl +01/11/2018,Sports_celeb,@MichaelPhelps,"#tbt to a fun day of golf with @KRAVEjerky, snacking on their Honey Habanero Chicken #KRAVEbetter in 2018! https://t.co/ONeTrk4g1Z" +01/08/2018,Sports_celeb,@MichaelPhelps,#ColgatePartner. I want to encourage everyone to make #2018 count by joining me & @Colgate to save water by turning… https://t.co/dCLpOl5hm9 +01/01/2018,Sports_celeb,@MichaelPhelps,Wow....I’m speechless ... #nextyear +12/23/2017,Sports_celeb,@MichaelPhelps,Love it dude!!! Happy holidays! https://t.co/ZEsX2C9DeT +12/23/2017,Sports_celeb,@MichaelPhelps,Can’t wait!!! See ya there!! https://t.co/6mNIY5jj3M +11/30/2017,Sports_celeb,@MichaelPhelps,Pumped to be watching @TigerWoods back out there!!! +11/28/2017,Sports_celeb,@MichaelPhelps,"As a #ColgatePartner, I’m encouraging everyone to save water by turning off the faucet when they brush.… https://t.co/BOyq6mmfDH" +11/16/2017,Sports_celeb,@MichaelPhelps,RT @leesasleep: Thanks to Leesa Sleep Ambassador @michaelphelps for joining us for our Night of Dreams Party to celebrate our launch of in… +11/01/2017,Sports_celeb,@MichaelPhelps,"I'm a #ColgatePartner. On #NationalBrushingDay, protect your teeth by brushing and the planet by turning off the fa… https://t.co/DtVNJMSWaq" +10/26/2017,Sports_celeb,@MichaelPhelps,"Nothing spooky about my fall treat, going all-natural with @KraveJerky #trickortreat #youhavetotryit #amazing https://t.co/gwE6jCCuuh" +10/21/2017,Sports_celeb,@MichaelPhelps,#ColgatePartner I went back to school to teach the next generation #EveryDropCounts. These kids are our newest… https://t.co/ewbstG8XFx +10/19/2017,Sports_celeb,@MichaelPhelps,RT @TODAYshow: WATCH: “It just hit way too close to home.” @MichaelPhelps talks about being at the Las Vegas concert the Friday before the… +10/19/2017,Sports_celeb,@MichaelPhelps,"RT @AM2DM: TODAY ON #AM2DM @MichaelPhelps will tell us why #EveryDropCounts and answer your best non-swimming q's live @ 10:30! +https://t.c…" +10/19/2017,Sports_celeb,@MichaelPhelps,RT @MegynTODAY: .@MichaelPhelps on struggle with anxiety: ‘I didn’t want to be alive anymore’ https://t.co/qTqDJhl9ag https://t.co/PKLqn4U7… +10/07/2017,Sports_celeb,@MichaelPhelps,Hope I make it over the plate!! https://t.co/7aRmWCFdaf +10/06/2017,Sports_celeb,@MichaelPhelps,The ANGST film has 1 goal: to start a conversation about anxiety.I know how much talking about it helps. https://t.co/t6N9nRU5tP #AngstMovie +10/05/2017,Sports_celeb,@MichaelPhelps,RT @people: See Michael Phelps Open Up About His Anxiety Battle in New Film: ‘I Just Didn’t Like Who I Was’ https://t.co/pE0M8NfuNQ +10/05/2017,Sports_celeb,@MichaelPhelps,RT @Therealfixer: Proud of our community. Over $9 million raised. Keep donating: https://t.co/pckDkGjz8o #vegasstrong +10/03/2017,Sports_celeb,@MichaelPhelps,Welcome to the fam !!! https://t.co/Re8pbruOwm +10/01/2017,Sports_celeb,@MichaelPhelps,@darrenrovell do you happen to know what the record is for most consecutive games for throwing a interception?? Is it #flacco @10? +10/01/2017,Sports_celeb,@MichaelPhelps,Well let's hope @Ravens have a better 2nd half ... +09/25/2017,Sports_celeb,@MichaelPhelps,Amazing memories.... how insane!! Thanks for the amazing read from @Paul_Casey https://t.co/ugku40SXLt +09/23/2017,Sports_celeb,@MichaelPhelps,Come on big blue!!!! #goblue +09/21/2017,Sports_celeb,@MichaelPhelps,Just amazing @bykaren !! https://t.co/EeZhkWmkTK +09/19/2017,Sports_celeb,@MichaelPhelps,"RT @NuloPetFood: “Their nutrition is our responsibility. We Decide.” - @MichaelPhelps 🐾 +Join our mission at: https://t.co/h2Q3QIZO3l https:…" +09/19/2017,Sports_celeb,@MichaelPhelps,Their nutrition is our responsibility. We Decide. Join our mission at https://t.co/aMhipzQdAu @nulopetfood https://t.co/OMuZFT4y2R +09/09/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! @UMichFootball +09/09/2017,Sports_celeb,@MichaelPhelps,"RT @MPMichaelPhelps: Briefs = RT 🔄 +Jammers = Like ❤️ + +#MPswim #JoinTheTeam https://t.co/klwxeh0mtZ" +08/30/2017,Sports_celeb,@MichaelPhelps,"RT @ScottMGleeson: When athletes (@MichaelPhelps @BMarshall @Highway_30) share mental health battles, it transcends https://t.co/RVEnlGPdRR…" +08/29/2017,Sports_celeb,@MichaelPhelps,All of this talk... Should we race as well?? @TheNotoriousMMA https://t.co/l3JoMgb1qT +08/27/2017,Sports_celeb,@MichaelPhelps,Hats off to @TheNotoriousMMA ...... amazing competitor and unreal athlete...congrats to @FloydMayweather 50-0 congrats! #legend +08/27/2017,Sports_celeb,@MichaelPhelps,50-0.....wow +08/13/2017,Sports_celeb,@MichaelPhelps,Big shout out to @JustinThomas34 !!! Congrats homie! Hell of a final round !#PGAChampionship2017 +08/10/2017,Sports_celeb,@MichaelPhelps,Big good luck to @JordanSpieth !! #gogetthat @underarmour https://t.co/YLL7o2bq6P +08/10/2017,Sports_celeb,@MichaelPhelps,RT @RickyBerens: Good day out on the course with this crew! Not even a FOREEEEE!!!! @MichaelPhelps @omegawatches https://t.co/GOdCrQwsSj +08/09/2017,Sports_celeb,@MichaelPhelps,Great day out there with the boys!! @pscpwm @rcberens @omega https://t.co/AQDSWHSNUY +08/08/2017,Sports_celeb,@MichaelPhelps,Flashback to one year ago! #goldmedal #usa @caelebdressel @Nathangadrian @heldilox https://t.co/0pkO1svNAi +08/06/2017,Sports_celeb,@MichaelPhelps,RT @Stephen_Logan: Great insight into the mindset of @MichaelPhelps via @matthewsyed in The Greatest. https://t.co/u3DlZJsDwf +08/06/2017,Sports_celeb,@MichaelPhelps,"@SHAQ I hear you want to race again??? Any truth to this? Def not coming outta retirement but I'll def give you a chance to ""try"" to win😁" +08/03/2017,Sports_celeb,@MichaelPhelps,#tbt with ‘Doc’ Dr. Samuel Gruber a legend of shark science @VIKTREsocial https://t.co/iDTChnqhNh +07/30/2017,Sports_celeb,@MichaelPhelps,So damn fun to watch buddy!!!!@caelebdressel https://t.co/5MjNEE0RFa +07/29/2017,Sports_celeb,@MichaelPhelps,@boomerrphelps @mrs.nicolephelps @arschmitty are watching and cheering like hell!! https://t.co/IduMgUuvYA +07/28/2017,Sports_celeb,@MichaelPhelps,"Had a great time talking leadership, mental health and water safety @SAP #mywinningmove https://t.co/xPEjTRNoBD" +07/26/2017,Sports_celeb,@MichaelPhelps,"Talking everything from Shark week, my swimming career, and booms! https://t.co/V8gXcMuSIB" +07/25/2017,Sports_celeb,@MichaelPhelps,Are sharks man eaters? Are we on the menu? https://t.co/icGIjpaM3K +07/24/2017,Sports_celeb,@MichaelPhelps,And course while filming I had to take a little break for some fun😁 #ringbubbles https://t.co/1ElUcQzhDF +07/24/2017,Sports_celeb,@MichaelPhelps,I would like to thank @tristanguttridge and @sharksneedlove in advance for their support https://t.co/fGy6sd4p6u +07/24/2017,Sports_celeb,@MichaelPhelps,@boomerrphelps helping us turn off the faucet when brushing #Colgate #EveryDropCounts https://t.co/kv7h3k4fk3 +07/24/2017,Sports_celeb,@MichaelPhelps,Rematch? Next time..warmer water. #SW30 @Discovery @SharkWeek +07/23/2017,Sports_celeb,@MichaelPhelps,RT @ABC4EXPLORE: Wooohooo!!! @SharkWeek 2017 with @MichaelPhelps is finally here and it's going to be epic!!! Tune-in tonight at 8pm to wat… +07/23/2017,Sports_celeb,@MichaelPhelps,RT @Discovery: Yes! This is happening. ReTweet if you're watching #PhelpsVsShark tonight at 8p! #SharkWeek https://t.co/tJP8AGWCKI +07/23/2017,Sports_celeb,@MichaelPhelps,Big congrats to @JordanSpieth !! Well done dude!! @UnderArmour +07/23/2017,Sports_celeb,@MichaelPhelps,It's important to get the next generation into the habit of turning off the faucet while brushing.@Colgate… https://t.co/HJyPlSgeZt +07/22/2017,Sports_celeb,@MichaelPhelps,Beach day with booms!!! https://t.co/smviz77Foi +07/21/2017,Sports_celeb,@MichaelPhelps,Pumped to be a part of #mywinningmove with @SAP on Monday! Make sure you tune in at 4pm PST https://t.co/tzdKptoIU6 https://t.co/iX0zsSL7ho +07/14/2017,Sports_celeb,@MichaelPhelps,Can't wait till we get to bring @boomerrphelps here in a couple years!! #kidschoicesports https://t.co/oeSz1Szjtv +07/13/2017,Sports_celeb,@MichaelPhelps,What a great way to celebrate all that has happen in the year of sports! Thanks to @ESPN and the espys for bringing us all together!!! +07/12/2017,Sports_celeb,@MichaelPhelps,Two days ago we celebrated our 10 year anniversary of meeting at the #espys #happybday https://t.co/YotGoB2ylw +07/12/2017,Sports_celeb,@MichaelPhelps,I’m proud to be a part of the @SpecialOlympics movement #EKS #ESPYS2017 #ChangeTheGame +07/12/2017,Sports_celeb,@MichaelPhelps,Eunice Kennedy Shriver was a true champion & pioneer of inclusion. There’s no 1 more deserving of this #ESPYS award. +07/11/2017,Sports_celeb,@MichaelPhelps,I wanna do it again!! https://t.co/Zy2ku8YvWp +07/10/2017,Sports_celeb,@MichaelPhelps,Last nights dinner @blueapron Pork chops spinach farro and goat cheese! #ad @VIKTREsocial https://t.co/cOORTXLmxv +07/08/2017,Sports_celeb,@MichaelPhelps,"RT @ABC: Massive whale shark takes fisherman's breath away after it swims leisurely next to boat off Ocean City, Maryland. https://t.co/O0p…" +07/08/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""All that we are is the result of what we have thought. The mind is everything. What we think we become."" - Buddha" +07/06/2017,Sports_celeb,@MichaelPhelps,#tbt in honor of July 4th! #family https://t.co/G9voYQCeal +07/02/2017,Sports_celeb,@MichaelPhelps,Family fun day on the boat!!! #familytime https://t.co/ehnaFPXHb4 +06/30/2017,Sports_celeb,@MichaelPhelps,So blessed to have these two amazing ppl with me to celebrate my 32 bday!!! #family https://t.co/vWrG8hTZjp +06/28/2017,Sports_celeb,@MichaelPhelps,Lunch is served!! @blueapron shrimp and pasta with some squash olives & parsley #ad https://t.co/szvZm7K7ac +06/27/2017,Sports_celeb,@MichaelPhelps,Dinner time! @mamaphelpsh20 sent us some amazing crabs for my early bday!! @jimmysseafood https://t.co/k0S8bvgZWb +06/26/2017,Sports_celeb,@MichaelPhelps,Family pool day! #familyisthebest https://t.co/oTKkq1vRR9 +06/26/2017,Sports_celeb,@MichaelPhelps,What a blast in the pool with #mpwinner Alex and his sister jasmine last month!! https://t.co/7nb4Ww2h2j +06/19/2017,Sports_celeb,@MichaelPhelps,Play time with booms in his new teepee ! Thanks @mamaphelpsh20 https://t.co/FTIBIeRSa4 +06/16/2017,Sports_celeb,@MichaelPhelps,Roasted beef and farro salad with sweet peppers summer squash and olives or... https://t.co/WyzF2mco6L +06/14/2017,Sports_celeb,@MichaelPhelps,One year ago I married my best friend. Love you!!! https://t.co/OugVo9sC72 +06/12/2017,Sports_celeb,@MichaelPhelps,Happy #nationaljerkyday from the road! Pumped to have my new Honey Habanero flavored chicken jerky from @kravejerky… https://t.co/RiTnzYBGMX +06/12/2017,Sports_celeb,@MichaelPhelps,Dream come true. Thanks y'all!!! https://t.co/N47eMJArv6 +06/11/2017,Sports_celeb,@MichaelPhelps,I was able to do something that I had always wanted to do! https://t.co/2CJplWMkMP +06/08/2017,Sports_celeb,@MichaelPhelps,Happy bday to my other other sister @arschmitty https://t.co/HwgH9nwIAY +06/08/2017,Sports_celeb,@MichaelPhelps,.@Colgate & I remind you turn off the faucet when you brush to save water. #ad #EveryDropCounts https://t.co/0JbU968VMX +06/05/2017,Sports_celeb,@MichaelPhelps,Summers here!!! #sunsoutgunsout https://t.co/LcvpMbrTNa +06/05/2017,Sports_celeb,@MichaelPhelps,Hmm... Can't wait to taste it!!! https://t.co/9rwoouqsYA +06/05/2017,Sports_celeb,@MichaelPhelps,Family workout day!! @mrs.nicolephelps @arschmitty @grant__hackett https://t.co/kJg82lHmhU +06/03/2017,Sports_celeb,@MichaelPhelps,RT @Huggies: .@MichaelPhelps is partnering with Huggies Little Swimmers to help babies everywhere become the best swimmers they can be. #Tr… +06/02/2017,Sports_celeb,@MichaelPhelps,@boomerphelps with his Steph Currys on!!@underarmour” #nbafinals https://t.co/xQzV6ZMtf2 +05/30/2017,Sports_celeb,@MichaelPhelps,Thank you to those who have lost their lives fighting #homeofthebrave #memorialday https://t.co/03K3p4Jclc +05/29/2017,Sports_celeb,@MichaelPhelps,Gotta love being with my best friend! https://t.co/VvdvQhSQ73 +05/25/2017,Sports_celeb,@MichaelPhelps,Father son time! https://t.co/l9lLklRnYt +05/23/2017,Sports_celeb,@MichaelPhelps,Why put a limit to anyhting? https://t.co/mDlbJZn7LT +05/22/2017,Sports_celeb,@MichaelPhelps,Its great to have friends @lukebryan ... amazing show! Thanks buddy! #mpswim @mpfoundation https://t.co/6CM4OMjY7X +05/21/2017,Sports_celeb,@MichaelPhelps,Take the pledge!! https://t.co/2YGw9V3mDl +05/21/2017,Sports_celeb,@MichaelPhelps,"A little rusty... nah, still got it! https://t.co/fIta3n3DHJ" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @bygbyrd8: My niece Georgia is in Houston fighting cancer and got a really cool visit. Thanks @MichaelPhelps https://t.co/gmS4o5THPh +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @poolsafely: While @MichaelPhelps teaches a swim lesson, @JoshsFoundation & @mrsnicolephelps teach more kids about water safety w/ Josh…" +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @joshsfoundation: Lifesaving mamas! Debbie Phelps, Nicole Phelps and Josh's Mom Kathy reading JTO!@joshsfoundation @MPFoundation @Michae…" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @SanchezBGCA: 16 year supporter of @BGCA_Clubs and G.O.A.T. @MichaelPhelps out supporting Clubs with swimming. Thanks for all you do to… +05/20/2017,Sports_celeb,@MichaelPhelps,"RT @poolsafely: ""I’ve taken the Pledge, Olympian @katieledecky took it & I'd like to invite @MichaelPhelps to take it."" - @USCPSC Commissio…" +05/20/2017,Sports_celeb,@MichaelPhelps,RT @CPRParty: #watersafetywarriors @mrsnicolephelps @MichaelPhelps @MamaPhelpsH20 U R leading this movement & saving lives w/every tweet &… +05/20/2017,Sports_celeb,@MichaelPhelps,RT @SpecialOChi: Thanks to @MichaelPhelps and @MPFoundation for visiting with us and sharing tips on water safety! #watersafetymonth https:… +05/16/2017,Sports_celeb,@MichaelPhelps,Pumped to be a member of Baywatch!! @therock put me through a bunch of tests and I passed!!! @baywatchmovie… https://t.co/2NXJSQaZ6o +05/16/2017,Sports_celeb,@MichaelPhelps,You are what you eat!! https://t.co/QYtHIUaEKM +05/16/2017,Sports_celeb,@MichaelPhelps,Home on the range! https://t.co/zTFxfyQVAZ +05/16/2017,Sports_celeb,@MichaelPhelps,She's got game!! https://t.co/U3tpPC3hcO +05/15/2017,Sports_celeb,@MichaelPhelps,Good luck tonight @Simone_Biles !!! Get your votes in!! https://t.co/3d6MDKj3I2 +05/10/2017,Sports_celeb,@MichaelPhelps,Watch out!!!! @mrs.nicolephelps is getting fitted now.... @pxg_xperience https://t.co/viRqZaWm8c +05/10/2017,Sports_celeb,@MichaelPhelps,First bday party for @boomerrphelps !!! What an amazing birthday cake!!!@heartsweetcakes” https://t.co/cHDXqyubLL +05/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Anyone who has never made a mistake has never tried anything new."" - Albert Einstein" +05/09/2017,Sports_celeb,@MichaelPhelps,#MyYoungerSelf Campaign Update! https://t.co/ivDVPpt3lX +05/07/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""You can't build a reputation on what you are going to do."" - Henry Ford" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""You can't build a reputation on what you are going to do."" - Henry Ford" +05/05/2017,Sports_celeb,@MichaelPhelps,RT @samhsagov: .@MichaelPhelps: “I'm so glad we both found the courage to ask for help.” #HeroesOfHope https://t.co/C7BE7QBP5s +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @samhsagov: ""I truly encourage everybody to ask for help or reach out to someone you trust just to talk."" -@MichaelPhelps #HeroesOfHope" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @StampStigma: ""I truly encourage everybody to ask for help or to reach out to someone you trust just to talk."" - @MichaelPhelps #HeroesO…" +05/05/2017,Sports_celeb,@MichaelPhelps,"RT @WashWizards: Awesome to have @MichaelPhelps and @arschmitty in the building for a #WizCeltics win! 🇺🇸 + +#DCFamily https://t.co/PhXf40ou6D" +05/04/2017,Sports_celeb,@MichaelPhelps,TONIGHT @ 7 p.m. EDT is @samhsagov’s “Awareness Day Live!” webcast. Join the convo using the hashtag #HeroesofHope. https://t.co/W3kjbeBzRy +05/01/2017,Sports_celeb,@MichaelPhelps,RT @UnderArmour: @agar_john @MichaelPhelps @JustinVerlander We’re all rooting for you johnny! Go #TeamAgar! +04/29/2017,Sports_celeb,@MichaelPhelps,Following your dreams starts with an amazing night’s sleep. @Leesasleep #leesa #sleepbetterfeelbetter #ad https://t.co/JlaT34KPO0 +04/28/2017,Sports_celeb,@MichaelPhelps,Welcome to Baltimore @marlon_humphrey !! +04/27/2017,Sports_celeb,@MichaelPhelps,Can't wait to see who the @Ravens pick tonight!!!! Who goes #1 ?? #letsgoravens +04/27/2017,Sports_celeb,@MichaelPhelps,Amazing!!! Enjoy!!! https://t.co/POZWP783ad +04/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""What is not started today is never finished tomorrow."" - Johann Wolfgang von Goethe" +04/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""If we are together nothing is impossible. If we are divided all will fail."" - Winston Churchill" +04/22/2017,Sports_celeb,@MichaelPhelps,AD Water is our most precious resource. This #EarthDay & every day pls turn off the faucet when brushing ur teeth… https://t.co/KD2KtMdLN9 +04/18/2017,Sports_celeb,@MichaelPhelps,Proud to partner w/ @Colgate to remind everyone to turn off the faucet when brushing your teeth; saves up to 4gallo… https://t.co/sjb7BiMQfI +04/09/2017,Sports_celeb,@MichaelPhelps,Pretty sweet way to finish @TheMasters .... congrats @TheSergioGarcia ... well deserved buddy!!! +04/09/2017,Sports_celeb,@MichaelPhelps,Masters Sunday!!! Who wins down the back stretch?? #masters +04/08/2017,Sports_celeb,@MichaelPhelps,RT @MamaPhelpsH20: An inspirational woman on the west coast who is a ray of sunshine. @AcbjEvents #confidencecodegirls https://t.co/07F17aK… +04/08/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Be not afraid of greatness: some are born great, some achieve greatness, and some have greatness thrust upon them."" -…" +04/05/2017,Sports_celeb,@MichaelPhelps,RT @agar_john: I had an awesome chat with @MichaelPhelps just a little while ago! He gave me a pep talk for my upcoming Florida 1/2 @IRONMA… +04/05/2017,Sports_celeb,@MichaelPhelps,"Anything is possible, the bigger you dream the further you get. Good luck this weekend Johnny I'm pulling for you!!! #konahereyoucome" +04/05/2017,Sports_celeb,@MichaelPhelps,Thank you Johnny for being such an inspiration to us all. Love your version of #RuleYourself. +04/01/2017,Sports_celeb,@MichaelPhelps,#aprilfools I'm not actually coming back😁 sorry for getting some of yalls hopes up🙊 https://t.co/GOp7osXCBF +04/01/2017,Sports_celeb,@MichaelPhelps,Some dreams/goals you just can't get rid of...been doing a lot of thinking n I've decided that I'm going 2 make another comeback! #tokyo2020 +04/01/2017,Sports_celeb,@MichaelPhelps,RT @SimplyAJ10: I've missed you so much. See ya soon sweetheart https://t.co/iBOMARK53B +03/29/2017,Sports_celeb,@MichaelPhelps,Epic night last night!!!! @ericchurch What an amazing show.... just awesome!! https://t.co/tf1pwF2Y5M +03/24/2017,Sports_celeb,@MichaelPhelps,Lunch is served!!! @blueapron #ad https://t.co/Avct5u4qQa +03/24/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! #goblue @boomerrphelps https://t.co/TroQPvAyqW +03/24/2017,Sports_celeb,@MichaelPhelps,"RT @MPMichaelPhelps: Have you joined the #team yet? #jointheteam #MPswim +Find out more: https://t.co/R1J82LBj2h https://t.co/emV1YtBT88" +03/21/2017,Sports_celeb,@MichaelPhelps,Amazing couple days buddy!!! Love hanging ... see ya next door #didwejustbecomebestfriends https://t.co/qGANMEjMAV +03/21/2017,Sports_celeb,@MichaelPhelps,Interesting names on our Starbucks cups today 😁🙊made us all laugh #hiltonvillage https://t.co/QaW4CFJ7Io +03/20/2017,Sports_celeb,@MichaelPhelps,So good to catch up!!!! https://t.co/baRy2LgZAc +03/18/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Destiny is not a matter of chance; but a matter of choice."" - William Jennings" +03/18/2017,Sports_celeb,@MichaelPhelps,RT @DanHicksNBC: Most important piece to the wardrobe today @apinv #theking https://t.co/pMmdmb2MOB https://t.co/oSwlZNV9g1 +03/18/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Efforts and courage are not enough without purpose and direction."" - John F. Kennedy" +03/17/2017,Sports_celeb,@MichaelPhelps,Let's go blue!!! #GoBlue +03/16/2017,Sports_celeb,@MichaelPhelps,This little man is just the best! https://t.co/kBBE8r2CCI +03/15/2017,Sports_celeb,@MichaelPhelps,RT @RickieFowler: Legends never die!! Honored to be here this week at the @apinv to celebrate a life well played!! To The King👍 https://t.c… +03/15/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""I've failed over and over and over again in my life and that is why I succeed."" - Michael Jordan" +03/15/2017,Sports_celeb,@MichaelPhelps,RT @KraveJerky: Which #KRAVEjerky Fit Your Flavor Fit Kit is for you? Enter to win a @MichaelPhelps @CarliLloyd or @runMeb kit: https://t.c… +03/13/2017,Sports_celeb,@MichaelPhelps,Booms and I got to watch our first spring training game together #buildingmemoriestogether https://t.co/kz6Bk2kFf2 +03/13/2017,Sports_celeb,@MichaelPhelps,Love these days!!! #sundayfunday https://t.co/HQFQcomt5k +03/12/2017,Sports_celeb,@MichaelPhelps,Big win for #bigblue today!! #goblue https://t.co/WKz7vaPTVW +03/12/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""The best way to cheer yourself up is to try to cheer somebody else up."" - Mark Twain" +03/12/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It's kind of fun to do the impossible."" - Walt Disney" +03/11/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Never, never, never give up."" - Winston Churchill" +03/10/2017,Sports_celeb,@MichaelPhelps,Visit https://t.co/rDuswbfyh0 or call 855-802-9842 for more info sponsorships or to register https://t.co/4LIMi5AE17 +03/10/2017,Sports_celeb,@MichaelPhelps,Thank you for clarifying @NBCSports .... you can tell how passionate I am about this topic !!! https://t.co/59vNYkyRPk +03/10/2017,Sports_celeb,@MichaelPhelps,Welcome to Baltimore!! https://t.co/ENtRSAWpc8 +03/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""At first dreams seem impossible, then improbable, then inevitable."" - Christopher Reeve" +03/10/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""No great man ever complains of want of opportunity."" - Ralph Waldo Emerson" +03/10/2017,Sports_celeb,@MichaelPhelps,Awesome! https://t.co/hI0wgTpZv9 +03/09/2017,Sports_celeb,@MichaelPhelps,Legend!! We lost #biggie 20 years ago.... #skyisthelimit #rip https://t.co/zLzsIgWKQi +03/06/2017,Sports_celeb,@MichaelPhelps,Boomer and me on the range today #amazing https://t.co/UzfaXm0ZXR +03/03/2017,Sports_celeb,@MichaelPhelps,Welcome!! https://t.co/a6rTLH4nzN +03/02/2017,Sports_celeb,@MichaelPhelps,Pre flight shenanigans with @boomerrphelps !!! #lovethisdude https://t.co/gvw33mQCjJ +03/02/2017,Sports_celeb,@MichaelPhelps,You can see I'm passionate about this subject!! #cleansport https://t.co/PH1tHGGGXg +02/28/2017,Sports_celeb,@MichaelPhelps,looks like someone needs a little 💤💤💤💤 https://t.co/5Yjs8BUgqc +02/27/2017,Sports_celeb,@MichaelPhelps,#msjuno and I were sleepy heads this am.... @mrsnicolephelps snuck a pic of us🙈 https://t.co/g3dgMtVoCD +02/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Change your thoughts and you change your world."" - Norman Vincent Peale" +02/27/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Yes, I sometimes fail, but at least I'm willing to experiment."" - Bono" +02/27/2017,Sports_celeb,@MichaelPhelps,Nice win today kid! @RickieFowler +02/26/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.""…" +02/25/2017,Sports_celeb,@MichaelPhelps,Checking in! https://t.co/GBQ4f3Obcd +02/24/2017,Sports_celeb,@MichaelPhelps,Listen up. Get the new #BeatsX from @BeatsByDre. #GotNoStrings https://t.co/qtdW6IqP6Z +02/24/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""Success or failure is caused more by mental attitude than by mental capacity."" - Walter Scott" +02/24/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""The greatest achievement is to outperform yourself."" - Denis Waitley" +02/24/2017,Sports_celeb,@MichaelPhelps,RT @bgcmuncie: These young men graduated from #PassportToManhood last night! Please help us congratulate them! #GreatFutures https://t.co/D… +02/24/2017,Sports_celeb,@MichaelPhelps,We're having a race? When? Where? I'm in!! Haha https://t.co/LmGMQ0jJhg +02/23/2017,Sports_celeb,@MichaelPhelps,I'm not sure what else to say but just amazing..... #happiness https://t.co/0rL9Rj1kHi +02/22/2017,Sports_celeb,@MichaelPhelps,https://t.co/1YIKn8GtIT +02/22/2017,Sports_celeb,@MichaelPhelps,"RT @GreatestQuotes: ""It's how you deal with failure that determines how you achieve success."" - David Feherty" +02/22/2017,Sports_celeb,@MichaelPhelps,Dinner is served!! @blueapron #ad https://t.co/I3xNFOClyt +06/30/2018,Sports_celeb,@gabrielledoug,@queenpam93 😂😘💛 +06/30/2018,Sports_celeb,@gabrielledoug,@_Ahreeahnah 😂🤗💛 +06/30/2018,Sports_celeb,@gabrielledoug,@earthXplorer 😂😂♥️♥️ +06/30/2018,Sports_celeb,@gabrielledoug,@JanieLanham8 ♥️♥️♥️♥️ +06/30/2018,Sports_celeb,@gabrielledoug,@Mommaforreal @RoxxyRocketfire 😂😘💛 +06/30/2018,Sports_celeb,@gabrielledoug,@RoxxyRocketfire 😂😂😂😘 +06/25/2018,Sports_celeb,@gabrielledoug,@MakeAWish @SkyspaceLA @makeawishla @MakeAWishNM Such a cutie +06/11/2018,Sports_celeb,@gabrielledoug,"RT @TellTruthABC: All @gabrielledoug does is win! +#ToTellTheTruth https://t.co/036yu7440Y" +06/11/2018,Sports_celeb,@gabrielledoug,RT @UrsTruly_Kierra: Watching @gabrielledoug on #ToTellTheTruth +06/11/2018,Sports_celeb,@gabrielledoug,TUNE IN TUNE IN!!! 💛💛 https://t.co/hp4Scc0HHA +06/11/2018,Sports_celeb,@gabrielledoug,🙈🙈😂😂😂 https://t.co/psjOtDTTT3 +06/10/2018,Sports_celeb,@gabrielledoug,"RT @Barbie: Gabby Douglas shows girls everywhere that with hard work and lots of self-confidence, #YouCanBeAnything! 🥇 #MoreRoleModels #Mon…" +05/30/2018,Sports_celeb,@gabrielledoug,@Mister_GQ lolol haha! 💛💛 +05/24/2018,Sports_celeb,@gabrielledoug,"RT @ABC_Publicity: New Release: Host @AnthonyAnderson and the beloved game show @TellTruthABC both return on Sunday, June 10, at 10|9c with…" +05/24/2018,Sports_celeb,@gabrielledoug,"RT @FMNATV: .@TellTruthABC returns on Sunday, June 10 at 10/9c on @ABCNetwork with celeb panelists @octaviaspencer, @gabrielledoug, @nikkig…" +05/14/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: An undercover @gabrielledoug gets emotional after a meaningful chat with super dad Ken at his workplace. https://t.co/I… +05/13/2018,Sports_celeb,@gabrielledoug,@SullivanNicole @undercover_cbs 😂😂😂😭😘 +05/13/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: Watch @gabrielledoug tumble into the lives of some very lucky young gymnasts on the premiere of #CelebrityBoss. Stream… +05/12/2018,Sports_celeb,@gabrielledoug,@PapaRandlicious @undercover_cbs thanks soo much! +05/12/2018,Sports_celeb,@gabrielledoug,@ReseeStevens @undercover_cbs 😭 thank you for this mesage. so sweet. +05/12/2018,Sports_celeb,@gabrielledoug,"How did you guys like my episode of #CelebrityUndercoverboss ? @undercover_cbs RT of Fav if you did! 💚 + +x" +05/12/2018,Sports_celeb,@gabrielledoug,♥️♥️♥️ this moment 😭 https://t.co/vYq2u2AWFA +05/12/2018,Sports_celeb,@gabrielledoug,😫😭😭 https://t.co/M3QMe8y12x +05/12/2018,Sports_celeb,@gabrielledoug,haha! ayeee https://t.co/ZqFcGsgWFb +05/12/2018,Sports_celeb,@gabrielledoug,@Racci13 @undercover_cbs haha! thanks!! +05/12/2018,Sports_celeb,@gabrielledoug,@Chris_Bigga 😂😂 +05/12/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: Would you be able to recognize @gabrielledoug beneath this #CelebrityBoss disguise? Tune in NOW to watch the season pre… +05/12/2018,Sports_celeb,@gabrielledoug,LOLOL https://t.co/3DSJsmwTcH +05/11/2018,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Tulum ,Mexico ❤️😍 https://t.co/aPjOor4qp5" +05/10/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: There's no doubt that @gabrielledoug can recognize strength when she sees it. Watch her go undercover on #CelebrityBoss… +05/08/2018,Sports_celeb,@gabrielledoug,"RT @etnow: .@gabrielledoug, @idinamenzel and more will star in the first-ever 'Undercover Boss: Celebrity Edition'! https://t.co/v1QCI5CkTV…" +05/01/2018,Sports_celeb,@gabrielledoug,@FunmiSomoye lolz +04/26/2018,Sports_celeb,@gabrielledoug,RT @undercover_cbs: The first season of #CelebrityBoss will feature Olympic champion @gabrielledoug when it premieres on May 11 at 8/7c. Fi… +04/25/2018,Sports_celeb,@gabrielledoug,"feeling like a superhero 😎♥️ join the boing team #shox +x https://t.co/4iMNzRCLRp" +04/20/2018,Sports_celeb,@gabrielledoug,@peta 😍😍😍😍😍😍 can they come to la lol +03/30/2018,Sports_celeb,@gabrielledoug,@Makenziegandee cutie +03/30/2018,Sports_celeb,@gabrielledoug,"If you don’t like something, change it! In honor of Women’s History Month, let’s continue to inspire one another to… https://t.co/O26gPY1yyC" +03/30/2018,Sports_celeb,@gabrielledoug,😍😍😍♥️♥️ https://t.co/RELBVlYCZO +03/30/2018,Sports_celeb,@gabrielledoug,this is sooo cute 😍 all the best to you! so honored! x https://t.co/KqYtj096ia +03/19/2018,Sports_celeb,@gabrielledoug,On behalf of all the young girls around the world with big dreams I’m thrilled to support this statement from… https://t.co/UEmoxzor3p +03/09/2018,Sports_celeb,@gabrielledoug,@Lonnie175 😩🧡🧡 +03/07/2018,Sports_celeb,@gabrielledoug,@nikkimickey04 haha🧡 ily2 +03/06/2018,Sports_celeb,@gabrielledoug,@slotmoorerchine clever +03/06/2018,Sports_celeb,@gabrielledoug,@ohthatsjusdanny @KevinHart4real i legit cannot. 😂😂 +02/25/2018,Sports_celeb,@gabrielledoug,😂😂🙈🧡 https://t.co/o2NhkNAabS +02/25/2018,Sports_celeb,@gabrielledoug,RT @LOLNetwork: #RunItBack! @gabrielledoug and @KevinHart4Real hit the ice to roast each other 😂 Find out who wins in the full episode of #… +02/25/2018,Sports_celeb,@gabrielledoug,@ieathersoul i cannot 😂😂😂😂🙈 +02/02/2018,Sports_celeb,@gabrielledoug,RT @amfam: Kicking off #BlackHistoryMonthِ inspiring youth with @EuniqueJG @gabrielledoug @ajani_carr @lilicecreamdude @jdmccrary #dreamfea… +01/17/2018,Sports_celeb,@gabrielledoug,"RT! i❤️ to see other brave athletes chase their dreams-especially from my home state of VA! Polar Plunge, the bigge… https://t.co/VvgQxGgfkE" +01/17/2018,Sports_celeb,@gabrielledoug,@the_USO thank you so much for having me! x it was amazing +01/17/2018,Sports_celeb,@gabrielledoug,RT @the_USO: #BeTheForce with Olympic gold medalist @gabrielledoug who spent last week visiting service members and their families in Guam… +01/17/2018,Sports_celeb,@gabrielledoug,"RT @caafoundation: .@gabrielledoug started out the new year by visiting our troops, touring their bases & holding a gymnastics clinic for m…" +01/14/2018,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Amsterdam, Netherlands 🇳🇱 https://t.co/14lGi97Tev" +01/11/2018,Sports_celeb,@gabrielledoug,it was a natasha kinda day #tb @RPGshow @ShearPhysique ☀️✨💛 https://t.co/NujG5Dc2NU +01/11/2018,Sports_celeb,@gabrielledoug,"RT @the_USO: Welcome to Guam, @gabrielledoug! The Olympic gold medalist visited Andersen Air Force Base, where she toured the Andersen Secu…" +12/26/2017,Sports_celeb,@gabrielledoug,looking for a new look this season? check out my @RPGshow custom line #audrey #natasha #sasha 💁🏽 https://t.co/Dyo1MlExpM +12/26/2017,Sports_celeb,@gabrielledoug,@AuthorJoeMac ❤️❤️❤️ +11/30/2017,Sports_celeb,@gabrielledoug,@chizarachinelo 😍❤️ i love uuuu xx +11/22/2017,Sports_celeb,@gabrielledoug,"love you so much. so glad you know i would never attack you and that i support you too- because united we stand, di… https://t.co/dpEVWRRoW2" +11/18/2017,Sports_celeb,@gabrielledoug,i didn’t correctly word my reply & i am deeply sorry for coming off like i don’t stand alongside my teammates. reg… https://t.co/YW2PFdcO43 +11/17/2017,Sports_celeb,@gabrielledoug,@dwtsfishovskiy it goes both ways. +11/17/2017,Sports_celeb,@gabrielledoug,@dwtsfishovskiy u misunderstood me. not blaming the victim at all. no man should look at any woman that way. +11/17/2017,Sports_celeb,@gabrielledoug,@haterethaa ? girl what r u talking about ? +11/17/2017,Sports_celeb,@gabrielledoug,@DrArtmanSRU @slipperyrockU @SRUPB haha!!! thanks for having me ! xx +11/16/2017,Sports_celeb,@gabrielledoug,ayeee https://t.co/51mWkFNm6D +11/15/2017,Sports_celeb,@gabrielledoug,change nothing and nothing changes +11/15/2017,Sports_celeb,@gabrielledoug,"RT @GoodDoctorABC: Everything. +#TheGoodDoctor https://t.co/KNmAMN8Fn5" +11/12/2017,Sports_celeb,@gabrielledoug,RT @Essence: Shout out to @TiffanyHaddish for making history as the first black female commedienne to host #SNL! Keep shining boo. 😘 https:… +11/12/2017,Sports_celeb,@gabrielledoug,RT @GoodDoctorABC: Meet Dr. Murphy back in the OR tomorrow night for an all-new #TheGoodDoctor! https://t.co/vqULyCedwX +11/12/2017,Sports_celeb,@gabrielledoug,"kindness is free +sprinkle that stuff everywhere 💖" +11/10/2017,Sports_celeb,@gabrielledoug,change your life by changing your heart +11/10/2017,Sports_celeb,@gabrielledoug,"RT @beautybakerie: This is me with my daughter, Jasmyn. Different levels of melanin. Felt bad when I️ could find my shade at stores but not…" +11/08/2017,Sports_celeb,@gabrielledoug,RT @HomesteadMiami: THIS JUST IN: Multiple-gold winning Olympic gymnast and author @gabrielledoug will serve as the Honorary Starter at the… +11/08/2017,Sports_celeb,@gabrielledoug,"change is hard at first, messy in the middle, but gorgeous at the end." +11/03/2017,Sports_celeb,@gabrielledoug,"forget the mistake +remember the lesson" +11/02/2017,Sports_celeb,@gabrielledoug,@jordyn_wieber righttt +11/01/2017,Sports_celeb,@gabrielledoug,"good days give happiness +bad days give experience +worst days give lessons and +best days give memories ❤️" +10/31/2017,Sports_celeb,@gabrielledoug,ily. we should hang next time i'm in nyc xx https://t.co/TKNp5MGHK0 +10/31/2017,Sports_celeb,@gabrielledoug,RT @GoodDoctorABC: An all-new episode of this season’s #1 drama #TheGoodDoctor starts now. Please retweet if you’re watching. https://t.co/… +10/27/2017,Sports_celeb,@gabrielledoug,"RT @MVCC_UticaRome: Olympic gold medalist @gabrielledoug will be at our Utica Campus on Saturday, Nov. 4! Get your tickets at https://t.co/…" +10/26/2017,Sports_celeb,@gabrielledoug,@socialmagazine haha!!! no problem!!! i love it ! +10/26/2017,Sports_celeb,@gabrielledoug,@giftedkordei u so silly 😂😂 +10/25/2017,Sports_celeb,@gabrielledoug,i love this. generations inspire the next! xx https://t.co/tyxSfFcLJO +10/19/2017,Sports_celeb,@gabrielledoug,RT @NastiaLiukin: #WSFAnnualSalute @gabrielledoug @lzhernandez02 ✨❤️ https://t.co/UWqKLpmNIN +10/19/2017,Sports_celeb,@gabrielledoug,@ZayaTheProphet i can't +10/18/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: Just a beauty inside and out! Love our Gabby💕 https://t.co/syNZKUZHsG +10/18/2017,Sports_celeb,@gabrielledoug,@TheLemWiley @_kendallen haha +10/18/2017,Sports_celeb,@gabrielledoug,@_kendallen 😂😂😂😂😂😂😂 +10/18/2017,Sports_celeb,@gabrielledoug,"anyone up for a follow spree ? +rt" +10/18/2017,Sports_celeb,@gabrielledoug,RT @TheWorldStories: Fall in the alpine ❤️ https://t.co/bbxeyp4JqJ +10/18/2017,Sports_celeb,@gabrielledoug,@lydmarie95 rightttt. i love itttt tooo +10/18/2017,Sports_celeb,@gabrielledoug,@WilliamAdoasi @VitaeLondon would love one xx +10/17/2017,Sports_celeb,@gabrielledoug,RT @CW_TheFlash: #TheFlash is back and better than ever. Don't miss a new episode TONIGHT at 8/7c on The CW. https://t.co/baG9cZmWlQ +10/17/2017,Sports_celeb,@gabrielledoug,@AkilahObviously @geniuskitchen luhh uuuuu xx +10/17/2017,Sports_celeb,@gabrielledoug,RT @AkilahObviously: Did an Olympic medalist teach you how to stick the landing? Cause @gabrielledoug JUST TAUGHT ME!! 😍 @geniuskitchen htt… +10/16/2017,Sports_celeb,@gabrielledoug,@highlighthunnie @McJesse 🤓🤓🤓 +10/16/2017,Sports_celeb,@gabrielledoug,@McJesse LOLOLOLOLOL +10/16/2017,Sports_celeb,@gabrielledoug,@McJesse @highlighthunnie NOOO... I'm donneeee +10/16/2017,Sports_celeb,@gabrielledoug,@DualSpires i'm doneeee +10/16/2017,Sports_celeb,@gabrielledoug,RT @chadwickboseman: The revolution will be live. #BlackPanther https://t.co/gakhMRYHLT +10/13/2017,Sports_celeb,@gabrielledoug,RT @StephenAmell: It's been a long hiatus. Arrow is back. RIGHT NOW! +10/13/2017,Sports_celeb,@gabrielledoug,RT @EraseSoul: Gabrielle Union and Dwyane Wade are goals 😍 https://t.co/yqAf0XeBEZ +10/13/2017,Sports_celeb,@gabrielledoug,@musicfeign @beautybakerie YEP!! YEP !! YEP!! +10/11/2017,Sports_celeb,@gabrielledoug,RT @FLASHtvwriters: We're back!! #TheFlash +10/10/2017,Sports_celeb,@gabrielledoug,@TyBridg3 @CW_TheFlash rrllyyy 😂 +10/10/2017,Sports_celeb,@gabrielledoug,@TyBridg3 @CW_TheFlash i'm soooo done. +10/10/2017,Sports_celeb,@gabrielledoug,"RT FOR A FOLLOW 💛 + +also, who else is excited for @CW_TheFlash tonight ? + +x" +10/09/2017,Sports_celeb,@gabrielledoug,RT @MissTeenUSA: #MissTeenUSA and Olympic athlete @gabrielledoug guest speak at the largest global gathering of girls and influencers #GIRL… +10/09/2017,Sports_celeb,@gabrielledoug,RT @CW_TheFlash: The West family returns Tuesday at 8/7c on The CW! #TheFlash https://t.co/DymHzuv2ey +10/08/2017,Sports_celeb,@gabrielledoug,nope. THANK U SOO MUCH FOR HAVING ME. X https://t.co/KodlZLHoP1 +10/08/2017,Sports_celeb,@gabrielledoug,"RT @girlscouts: ""You can't please everyone. You have to be true to yourself."" 👑@gabrielledoug https://t.co/cmdE9b9Fkb" +10/02/2017,Sports_celeb,@gabrielledoug,"my prayers & sympathies are with all the victims and loved ones of this disgusting, hateful act. #stopthehate #VegasShooting" +09/28/2017,Sports_celeb,@gabrielledoug,RT @jacobsartorius: blowing out someone else's candle doesn't make yours shine any brighter. +09/28/2017,Sports_celeb,@gabrielledoug,"RT @RoyalCaribbean: Today Adventure of the Seas will dock in Puerto Rico, the first stop in a series of three to drop off relief supplies &…" +09/28/2017,Sports_celeb,@gabrielledoug,RT @ChloeGMoretz: Riverdale is back October 11th.. that’s all +09/24/2017,Sports_celeb,@gabrielledoug,@Havekiddoswill thankkk uu x +09/24/2017,Sports_celeb,@gabrielledoug,"RT @NFL: TOM BRADY. BRANDIN COOKS. + +WOWWWWWWWW. https://t.co/mYeno62uY4" +09/24/2017,Sports_celeb,@gabrielledoug,RT @Patriots: Tom. Brady. https://t.co/fVhqS9bpGy +09/24/2017,Sports_celeb,@gabrielledoug,and in the end we only regret the chances we didn't take. +09/24/2017,Sports_celeb,@gabrielledoug,"RT @younghollywood: In this episode of #BeyondtheAthlete, we hang with @gabrielledoug, @RobGronkowski and more, off the field! https://t.co…" +09/20/2017,Sports_celeb,@gabrielledoug,#goodvibes with a splash of triple berry mousse ! @beautybakerie x https://t.co/Jjdk0EjQdw +09/19/2017,Sports_celeb,@gabrielledoug,"😫 +mexico city, i'm praying for you + +x" +09/19/2017,Sports_celeb,@gabrielledoug,@bkitmedical @musicallyapp 😂😂😂😂 pls +09/18/2017,Sports_celeb,@gabrielledoug,"RT @musicallyapp: Same @gabrielledoug, same. 😂 https://t.co/XBiBPdqKTh" +09/18/2017,Sports_celeb,@gabrielledoug,😂😂 https://t.co/5KTiSpQHA4 +09/17/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: Single life! Now u can get @gabrielledoug set as singles! Smudge-free and comfy to wear! Shown: Hazelnut Swirl 🌰https://… +09/17/2017,Sports_celeb,@gabrielledoug,RT @OurMilitaryKids: Don't let gravity stop you from flying. Happy #NationalGymnasticsDay https://t.co/UzmQpB3YtK +09/14/2017,Sports_celeb,@gabrielledoug,@Imactuallybebs @drefromjerz @Iildevil LOLOLOL +09/14/2017,Sports_celeb,@gabrielledoug,@drefromjerz @sama_luv3 DONE +09/14/2017,Sports_celeb,@gabrielledoug,RT @beautybakerie: On the Menu: Triple Berry Mousse by Gabby Douglas x Beauty Bakerie: https://t.co/A0q7sIGkAP via @YouTube +09/13/2017,Sports_celeb,@gabrielledoug,RT @ChloeLukasiak: There are so many tv shows I wish I had never watched just so I could watch them for the first time again +09/13/2017,Sports_celeb,@gabrielledoug,ayee. u a G ! https://t.co/aNcPCvfnqz +09/12/2017,Sports_celeb,@gabrielledoug,if this isn't my dog .. https://t.co/Y3z0lkau4s +09/10/2017,Sports_celeb,@gabrielledoug,"RT @ThiruHR: Almost 700,000 animals died in Hurricane Katrina. Don't leave your animals behind, take them to safety with you. #HurricanIrma…" +09/10/2017,Sports_celeb,@gabrielledoug,congrats congrats congratzzzz ❤️ https://t.co/du2gO1hHsY +09/08/2017,Sports_celeb,@gabrielledoug,RT @BarackObama: Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/08/2017,Sports_celeb,@gabrielledoug,"i'm continuing to pray for everyone in the affected areas of TX & now Caribbean Islands, FL, GA, SC & Mexico! pls be safe!😢#Harvey #Irma" +09/08/2017,Sports_celeb,@gabrielledoug,RT @TIME: Gabby Douglas is the first American gymnast to win solo and team all-around gold at one Olympics #SheIsTheFirst https://t.co/pbIn… +09/06/2017,Sports_celeb,@gabrielledoug,"RT @espn: Venus ✅ +Serena ✅ +Sloane ✔️ https://t.co/SAQEhR67Z4" +09/04/2017,Sports_celeb,@gabrielledoug,"guys, treat your girls like queens" +09/04/2017,Sports_celeb,@gabrielledoug,i love this https://t.co/Go7UNl1Idw +09/04/2017,Sports_celeb,@gabrielledoug,WHAT..... https://t.co/AvBw5Oxnmt +09/01/2017,Sports_celeb,@gabrielledoug,"RT @PennStateIFC: With the current devastation in Houston, we are pledging $0.15 for every RT this gets! Please forward this along to help…" +08/30/2017,Sports_celeb,@gabrielledoug,@Deacon_Schiele 😂. how about john cena? +08/30/2017,Sports_celeb,@gabrielledoug,@evie_lution 😂😂😂 +08/30/2017,Sports_celeb,@gabrielledoug,"how many tickles does it take to make an octopus laugh? + +ten-tickles + +szxwkp🙊.. LOL get it" +08/29/2017,Sports_celeb,@gabrielledoug,"well, you reap what you sow" +08/29/2017,Sports_celeb,@gabrielledoug,@ItsDumbTweets 😂😂😂😂😂 +08/28/2017,Sports_celeb,@gabrielledoug,@ThtWavyGuy so done😂 +08/28/2017,Sports_celeb,@gabrielledoug,*fighting the urge to be petty +08/28/2017,Sports_celeb,@gabrielledoug,@MyImmatureMind https://t.co/j8Ohci1oGx +08/28/2017,Sports_celeb,@gabrielledoug,RT @lilpochaco: every day i catch her stealing fruits from the counter. pls stop https://t.co/0dlXsIAJW8 +08/27/2017,Sports_celeb,@gabrielledoug,@DakotaHonor @nicksaysgo 😂😂😂😂😂😂😂 +08/27/2017,Sports_celeb,@gabrielledoug,*starts training for boxing https://t.co/epGLUHszzT +08/27/2017,Sports_celeb,@gabrielledoug,RT @EchoK: #Arrow just got picked up for season 6! Woohoo!!! ☺😂😍🎊🎉👍🏾🙏🏾🔥💯 +08/25/2017,Sports_celeb,@gabrielledoug,"oh babe, u are so much more than they say" +08/25/2017,Sports_celeb,@gabrielledoug,@lovebscott 😛😛😛😛 +08/25/2017,Sports_celeb,@gabrielledoug,"it's not wether an upright man shows his true honesty in public, it's what he does when no one is watching." +08/24/2017,Sports_celeb,@gabrielledoug,RT @Mattel: @chizarachinelo @gabrielledoug @Barbie This is a Barbie Collector exclusive. Contact them for info on UK shipping: https://t.co… +08/24/2017,Sports_celeb,@gabrielledoug,😂😂 THERE'S AMAZON !!! https://t.co/bJgs3n8RkN +08/23/2017,Sports_celeb,@gabrielledoug,"RT @_teewrex: When the activities that you were about to find an excuse not to attend, gets cancelled. https://t.co/qcXZA7kaZk" +08/23/2017,Sports_celeb,@gabrielledoug,i never lose; i either win or learn +08/22/2017,Sports_celeb,@gabrielledoug,Confidence=beauty. The Cortez by A.L.C. is 4 all the ladies & the many dimensions that make up who we are. #cortez… https://t.co/g5uUEewU6Q +08/22/2017,Sports_celeb,@gabrielledoug,"RT @Power1051: Looks like @gabrielledoug wants to be Marvels new Superhero 🔥 +https://t.co/0GcMzb6e5p https://t.co/wfbaQrnsjF" +08/20/2017,Sports_celeb,@gabrielledoug,"@McKaylaMaroney LMBO +love ya babe 💛" +08/19/2017,Sports_celeb,@gabrielledoug,💛💛 https://t.co/fEkkJUfKji +08/16/2017,Sports_celeb,@gabrielledoug,"RT @peoplestyle: .@KaiaGerber is now a denim model for @HudsonJeans, @GabrielleDoug Is the face of @Nike, and more celebrity ads https://t.…" +08/15/2017,Sports_celeb,@gabrielledoug,RT @Postit: We had a blast w/ @gabrielledoug yesterday as she made the day for hundreds & showed them how she makes her goals stick with #P… +08/14/2017,Sports_celeb,@gabrielledoug,RT @KingJames: Our youth deserves better!! Flat out +08/14/2017,Sports_celeb,@gabrielledoug,praying for all the victims of this hate-filled attack. in the face of all this evil - let's all embrace love even… https://t.co/k5plYaTnoj +08/13/2017,Sports_celeb,@gabrielledoug,all this hate is disgusting. +08/13/2017,Sports_celeb,@gabrielledoug,banging https://t.co/qwF8UOJz1o +08/13/2017,Sports_celeb,@gabrielledoug,"be nice +because it's cool." +08/11/2017,Sports_celeb,@gabrielledoug,they suree aree 😂 thank you. 💛 https://t.co/oi0UHXYDUA +08/08/2017,Sports_celeb,@gabrielledoug,RT @ItsFoodPics: I need pumpkin flavored EVERYTHING https://t.co/ma5mI22mOu +08/07/2017,Sports_celeb,@gabrielledoug,RT @ItsFoodPics: WANT...WANT...WANT https://t.co/MNoP8MTgLI +08/07/2017,Sports_celeb,@gabrielledoug,😂😂😂😂 https://t.co/mr17elAPqo +08/07/2017,Sports_celeb,@gabrielledoug,RT @humbxrtoo17: Me shooting my shot https://t.co/TZqjQJqg4R +08/07/2017,Sports_celeb,@gabrielledoug,👏👏👏 https://t.co/BuQLSvI7MQ +08/06/2017,Sports_celeb,@gabrielledoug,"RT @TheWorldStories: Dolomites, Italy https://t.co/D1QHzVo1kD" +08/06/2017,Sports_celeb,@gabrielledoug,RT @Postit: Huge thanks to champion gymnast @gabrielledoug for sharing how she sets and achieves her goals at yesterday’s event in Cali. #M… +08/04/2017,Sports_celeb,@gabrielledoug,bruh. i'm 5'3 in a half https://t.co/zjF7nFTMBR +08/04/2017,Sports_celeb,@gabrielledoug,but.. can u handle 3 gabby's ? https://t.co/AHKTKXvMfR +08/03/2017,Sports_celeb,@gabrielledoug,"omg. 5 years ago i became the first african american to win the aa title in gymnastics. wow. time flies + +#honored" +08/03/2017,Sports_celeb,@gabrielledoug,@SpannyTampson cryin. thank u x +08/02/2017,Sports_celeb,@gabrielledoug,ayeee https://t.co/hjcVJajmlY +08/02/2017,Sports_celeb,@gabrielledoug,👀👀👀 https://t.co/MfPW7L8cfc +08/02/2017,Sports_celeb,@gabrielledoug,RT @Postit: Dreaming isn’t enough to become a champion. It takes serious planning. See how @gabrielledoug achieves her dreams. https://t.c… +08/02/2017,Sports_celeb,@gabrielledoug,RT @TheWorldStories: Coast of Croatia https://t.co/Z2R562oucZ +08/02/2017,Sports_celeb,@gabrielledoug,RT @em_shapiro13: oh hi gabby https://t.co/CmpYLT8a7n +08/01/2017,Sports_celeb,@gabrielledoug,hmmm. i'm diggin it. https://t.co/OwGzVAZsvA +08/01/2017,Sports_celeb,@gabrielledoug,RT @dmo1025: Audrey found @gabrielledoug at @Staples while we were school supply shopping.... https://t.co/qTJAYCbmPs +07/28/2017,Sports_celeb,@gabrielledoug,lolol. i can't with myself https://t.co/H2ZEMWVdYF +07/28/2017,Sports_celeb,@gabrielledoug,😂😂😂😂😂😂😂 https://t.co/D328PaeEKX +07/26/2017,Sports_celeb,@gabrielledoug,i look so rough. 😂 loveee uuuu x https://t.co/5yBtxg6c58 +07/25/2017,Sports_celeb,@gabrielledoug,omg. 😫🙌 https://t.co/6XwyxMrDfF +07/02/2018,Sports_celeb,@Simone_Biles,oh you sure got me !!!!!!!! https://t.co/pabJsX6y1T +07/01/2018,Sports_celeb,@Simone_Biles,baecation at the river 🤪 https://t.co/XkVafwkMHb +07/01/2018,Sports_celeb,@Simone_Biles,"RT @KimLavine: ""You got to train your mind to be stronger than your emotions or else you'll lose every time."" +@Simone_Biles + +#startup #Mon…" +06/30/2018,Sports_celeb,@Simone_Biles,road trip means drakin’ and drivin https://t.co/xicsU6p5k4 +06/30/2018,Sports_celeb,@Simone_Biles,RT @AndreaRussett: i’m willing to throw hands at anyone who doesn’t think my dog is cute +06/30/2018,Sports_celeb,@Simone_Biles,when you have a good hair day but you have to put it up for gym .... +06/30/2018,Sports_celeb,@Simone_Biles,cardi B typa morning +06/30/2018,Sports_celeb,@Simone_Biles,"I cannot wait to come to London for this huge new event next year, appearing alongside Max Whitlock and lots more g… https://t.co/t2zL9ZCcD0" +06/28/2018,Sports_celeb,@Simone_Biles,RT @lorsace: this how i look back at people that won't stop staring at me https://t.co/z1tsp2eO6g +06/27/2018,Sports_celeb,@Simone_Biles,RT @Amierrrrrr_: We get called mean https://t.co/qcbKYzFbry +06/27/2018,Sports_celeb,@Simone_Biles,I did a full floor routine yesterday for the first time - that’s a good start +06/25/2018,Sports_celeb,@Simone_Biles,RT @Colt3FIVE: My spirit animal is a sloth +06/25/2018,Sports_celeb,@Simone_Biles,my baby💛 https://t.co/roPRJ2v7nO +06/24/2018,Sports_celeb,@Simone_Biles,RT @jennhoww: if ur a 2 dating an 11 retweet dissss +06/24/2018,Sports_celeb,@Simone_Biles,🗣 https://t.co/bKiTpdMf3T +06/23/2018,Sports_celeb,@Simone_Biles,I lost ALL of my photos from the Olympics #OlympicDay +06/23/2018,Sports_celeb,@Simone_Biles,"RT @Indians: Nailed it, @Simone_Biles. https://t.co/Z6i987mvI2" +06/23/2018,Sports_celeb,@Simone_Biles,RT @yuneicyaguirre: Thank you @Simone_Biles for stopping by and taking a picture w/ my level 1/2 class 💕 https://t.co/ut41WmM4Li +06/23/2018,Sports_celeb,@Simone_Biles,just another problem to add to my list of problems +06/22/2018,Sports_celeb,@Simone_Biles,"RT @papermagazine: After taking a year off from competition, Olympic gold medal-winning gymnast @Simone_Biles is back in the gym! https:/…" +06/21/2018,Sports_celeb,@Simone_Biles,RT @imabackhaus: hit the boyfriend jackpot for sure +06/21/2018,Sports_celeb,@Simone_Biles,💭 https://t.co/7qRObg9QUK +06/21/2018,Sports_celeb,@Simone_Biles,actually no hahaha the twisties are the ABSOLUTE worse. I walked out of a practice for the first time in my career.… https://t.co/3uPs6heBj2 +06/21/2018,Sports_celeb,@Simone_Biles,RT @rachm528: missing my bff right about now 💋 https://t.co/cNqdZ8QzN7 +06/20/2018,Sports_celeb,@Simone_Biles,the last two weeks I’ve had a mental block on full twists and I wouldn’t go for any tumbling or skills bc I picture… https://t.co/Yx02fb6op8 +06/20/2018,Sports_celeb,@Simone_Biles,RT @DohaGym2018: 4 x Olympic and 10 x World Champion @Simone_Biles is making her come-back this year. Will she make the US team in Doha thi… +06/19/2018,Sports_celeb,@Simone_Biles,RT @Olympics: The only one that can do this. @Simone_Biles @gymnastics @TeamUSA https://t.co/VEp8U6d86h +06/17/2018,Sports_celeb,@Simone_Biles,"RT @GymCastic: If UH adds gymnastics, Simone Biles would consider coaching https://t.co/r2CYfQKPOA + +Do you need more incentive? https://t.c…" +06/17/2018,Sports_celeb,@Simone_Biles,RT @pxyonce: This is so asthectically pleasing. Like wow https://t.co/6RNaYw8RJA +06/16/2018,Sports_celeb,@Simone_Biles,RT @MollsRita: Come on @UHouston @UHCougars and @NCAA ! 😍 https://t.co/AiMBCdzgt8 +06/16/2018,Sports_celeb,@Simone_Biles,"if UofH (university of houston) gymnastics team got NCAA approved in the future, I’d consider coaching gymnastics after my career! 👀" +06/14/2018,Sports_celeb,@Simone_Biles,if you ever need a baby sitter in the near future hit me up @iamcardib +06/13/2018,Sports_celeb,@Simone_Biles,"Yes, I’m all good! It worked for me and no scars or anything https://t.co/TYwFdLLYz5" +06/13/2018,Sports_celeb,@Simone_Biles,laser hair removal is a lifesaver +06/13/2018,Sports_celeb,@Simone_Biles,@staceyervinjr me 😂❤️🎶 https://t.co/aQhLcjFK0a +06/13/2018,Sports_celeb,@Simone_Biles,"I’ve lost my boyfriend to fortnite. It’s fine, I’m fine" +06/12/2018,Sports_celeb,@Simone_Biles,"New clothes = new confidence. See how you can #Donate4FosterKids during @MattressFirm’s clothing drive. + +https://t.co/UUswrVQegZ" +06/12/2018,Sports_celeb,@Simone_Biles,RT @isaabel_tavarez: everytime I see my man: https://t.co/0JJoaMnSt0 +06/12/2018,Sports_celeb,@Simone_Biles,RT @lil_livkay: 5 beam routines is easier than 3 bar routines https://t.co/QYhfZ3b2h2 +06/10/2018,Sports_celeb,@Simone_Biles,talk to my boyfriend @staceyervinjr https://t.co/iudgJdVfhl +06/08/2018,Sports_celeb,@Simone_Biles,gonna start doing me more and caring less +06/07/2018,Sports_celeb,@Simone_Biles,"am I allowed to say + +that msu needs to just shut the hell up +y’all disgust me + +oops .... just did https://t.co/Osjoi6dNm2" +06/06/2018,Sports_celeb,@Simone_Biles,RT @shanAlise_: Hey please help us get an A ! @Simone_Biles 💗 https://t.co/ERRExzNFxp +06/05/2018,Sports_celeb,@Simone_Biles,kinda crazy to think that I compete next month +06/02/2018,Sports_celeb,@Simone_Biles,RT @staceyervinjr: I’ve got a theory that this is going to be legendary. 🌊 🤼‍♂️ https://t.co/mJo6D2fOJb +05/31/2018,Sports_celeb,@Simone_Biles,RT @jea_nte: @Simone_Biles has the best eye roll tho. 🙄 +05/31/2018,Sports_celeb,@Simone_Biles,I’m in disbelief that that’s actually GALVESTON in all of the pictures. Someone please confirm ... ?! True or not +05/29/2018,Sports_celeb,@Simone_Biles,I LOVE SLEEP +05/29/2018,Sports_celeb,@Simone_Biles,RT @pizzahut: 🍷+ 🍕+ 🌹= A good way to end a long weekend. +05/29/2018,Sports_celeb,@Simone_Biles,RT @staceyervinjr: Me too 😏💭 https://t.co/W3viq1E6ND +05/28/2018,Sports_celeb,@Simone_Biles,daydreaming about my future slim thick days +05/28/2018,Sports_celeb,@Simone_Biles,sunday funday ☀️ https://t.co/BDH2RjtxKa +05/26/2018,Sports_celeb,@Simone_Biles,RT @breatheevenIy: Me https://t.co/mxgjOF3MZh +05/26/2018,Sports_celeb,@Simone_Biles,"RT @nutellaANDpizza: ""Fix your attitude or leave."" +Me: https://t.co/EkaN0kkKjj" +05/26/2018,Sports_celeb,@Simone_Biles,RT @gritandddgrace: us or us?? 😂 @Simone_Biles https://t.co/LgBByMj2Zo +05/25/2018,Sports_celeb,@Simone_Biles,I’m honestly crying & I couldn’t breathe while reading these! THE TACOS RECIPE GOT ME - 😂 kids are my favorite wow!… https://t.co/xRLb1xEcSX +05/25/2018,Sports_celeb,@Simone_Biles,🖤🖤🖤🖤MISS YOU MORE https://t.co/4PlFgpzKi8 +05/23/2018,Sports_celeb,@Simone_Biles,another gym mirror selfie https://t.co/L15noVANHW +05/23/2018,Sports_celeb,@Simone_Biles,I woke up thinking it was Friday +05/22/2018,Sports_celeb,@Simone_Biles,"RT @BodyofBex: When I ask my friends to take a pic, I mean take THE pic. Take 15 photos, get on the floor, climb a tree, try flash and no f…" +05/22/2018,Sports_celeb,@Simone_Biles,RT @Colt3FIVE: I have a tendency to smile/laugh in serious moments +05/22/2018,Sports_celeb,@Simone_Biles,RT @Sal_Perez4: Bro I had to be the dumbest preschooler out there😐 https://t.co/0AGIk1tBa9 +05/22/2018,Sports_celeb,@Simone_Biles,@Lawmorgan10 us 💕 https://t.co/rxHzmMvCbK +05/22/2018,Sports_celeb,@Simone_Biles,"RT @alisonpool_: When someone has seen the worst parts of you & still decides to stay, that's when you know they’re worth keeping. Not ever…" +05/22/2018,Sports_celeb,@Simone_Biles,"VOTE @SashaFarber 💙 + +https://t.co/uFBb78Ztmr" +05/20/2018,Sports_celeb,@Simone_Biles,"physically, mentally, and emotionally drained" +05/19/2018,Sports_celeb,@Simone_Biles,big loss for usagym. you will be missed Scott ❤️ thank you for everything! showing a side of me that people don’t u… https://t.co/LFNeWPtH0f +05/19/2018,Sports_celeb,@Simone_Biles,RT @itshaleyo: This is me @Simone_Biles 😂 https://t.co/bdGaPLod3R +05/18/2018,Sports_celeb,@Simone_Biles,I need a chick flick movie night +05/18/2018,Sports_celeb,@Simone_Biles,RT @QuoteBeauties: Do you? https://t.co/IIdflC38J5 +05/17/2018,Sports_celeb,@Simone_Biles,RT @WCCentre2014: 💥THE NEWS IS OUT! 💥Registration is now OPEN! 🏆Pre-Registration forms are available on our website. Pre-Registration is re… +05/17/2018,Sports_celeb,@Simone_Biles,❤️love you babe https://t.co/tm6FGfXmox +05/17/2018,Sports_celeb,@Simone_Biles,RT @ItsFoodPorn: Chocolate Fudge Brownie Ice Cream. https://t.co/ABeb26BH3W +05/16/2018,Sports_celeb,@Simone_Biles,@gurlwithaccent @MIKOHSWIMWEAR +05/16/2018,Sports_celeb,@Simone_Biles,@kisseswdw YANNY +05/16/2018,Sports_celeb,@Simone_Biles,dog mom 🐾 https://t.co/O5lMGwp3zH +05/15/2018,Sports_celeb,@Simone_Biles,reggae music all day +05/15/2018,Sports_celeb,@Simone_Biles,RT @iatemuggles: this video is therapeutic https://t.co/SHB69kKVSn +05/14/2018,Sports_celeb,@Simone_Biles,"my eye has been twitching for days + +H E L P" +05/14/2018,Sports_celeb,@Simone_Biles,happy mother’s day momma biles🖤 https://t.co/D5JCNgsvBA +05/12/2018,Sports_celeb,@Simone_Biles,"Rise, then shine. ☀️ @MattressFirm #partner https://t.co/sDfkk401JX" +05/12/2018,Sports_celeb,@Simone_Biles,me today x13894947392 https://t.co/oQbOMqk1W3 +05/10/2018,Sports_celeb,@Simone_Biles,"RT @InsideGym: All in favor of putting Lilo on our cover, raise your hand 🙋🏼‍♀️🙋🏼‍♀️🙋🏼‍♀️ https://t.co/1JKeU2rEWZ" +05/09/2018,Sports_celeb,@Simone_Biles,"🙌🏾🙌🏾🙌🏾🔥🔥🔥 The best, I’m obsessed 🍕❤️🤪 https://t.co/CFAnp8xYpD" +05/07/2018,Sports_celeb,@Simone_Biles,G A L A ✨ https://t.co/De1rGiS5DR +05/06/2018,Sports_celeb,@Simone_Biles,every day I still choose you 💋 https://t.co/R6uto0GBPK +05/05/2018,Sports_celeb,@Simone_Biles,RT @omeezy_: when you waiting for bae to answer your facetime call https://t.co/3zWm8KwhwE +05/04/2018,Sports_celeb,@Simone_Biles,"RT @XPiel_Morena: Wow I Took My Daughter To A Photoshoot, Never Again 😭😭 https://t.co/YdS4jAlbMR" +05/03/2018,Sports_celeb,@Simone_Biles,"RT @MasAbukar: Me: Opens laptop and notebook + +My procrastination: + + https://t.co/Wou94gDBnE" +05/03/2018,Sports_celeb,@Simone_Biles,@caaitelizabeth alone 😭😭😭💔💔💔 +05/02/2018,Sports_celeb,@Simone_Biles,RT @TeamJuJu: It takes years to be an overnight success... +05/02/2018,Sports_celeb,@Simone_Biles,"RT @Adaripp: @Simone_Biles I’ve seen your boyfriend on Instagram, you’re good girl... but also, okay, let’s do it 💍" +05/01/2018,Sports_celeb,@Simone_Biles,the dancing with the stars elimination music still makes me so nervous +05/01/2018,Sports_celeb,@Simone_Biles,"VOTE FOR @SashaFarber +VOTE FOR @SashaFarber +VOTE FOR @SashaFarber +VOTE FOR @SashaFarber + +🖤🖤🖤 @DancingABC" +05/01/2018,Sports_celeb,@Simone_Biles,@bthouston11 @Adaripp ........ I KNOW....... +05/01/2018,Sports_celeb,@Simone_Biles,I WANNA MARRY @Adaripp 💛 +04/30/2018,Sports_celeb,@Simone_Biles,summer bod is here ☀️🍯💛 https://t.co/EW5h3uge8Q +04/28/2018,Sports_celeb,@Simone_Biles,@PeytonErnst THANK YOU PEYTON 💓 +04/27/2018,Sports_celeb,@Simone_Biles,RT @ashton_locklear: I need some life in my life... +04/27/2018,Sports_celeb,@Simone_Biles,"I am not to be labeled by Larry Nassars abuse. Nowhere in this video did I talk about it. Take this down. + +My sig… https://t.co/HdAiNDFjiR" +04/24/2018,Sports_celeb,@Simone_Biles,"oooohhhh lemme join 👑💕😍 +get it girls !!! https://t.co/hPJ6ZT4XBQ" +04/24/2018,Sports_celeb,@Simone_Biles,dude this is how my frenchie gets out too 🐾🤦🏾‍♀️ hahahaah! https://t.co/8CJsXHU081 +04/24/2018,Sports_celeb,@Simone_Biles,"RT @chrissyteigen: I don’t call out people I’ve had weird run-ins with because I have bad days, too. I’d be bummed if someone used one inte…" +04/23/2018,Sports_celeb,@Simone_Biles,"RT @Peter_Back: Always a pleasure, @Simone_Biles. Let @sbregman87 and I know when we can come back! https://t.co/NNIPpkINcs https://t.co/mT…" +04/23/2018,Sports_celeb,@Simone_Biles,M I N E.... smh https://t.co/wbzXcnqLoF +04/23/2018,Sports_celeb,@Simone_Biles,"RT @USAGym: .@Simone_Biles is back. + +Watch our update with the four-time Olympic champ who expects to return to competition this summer! ht…" +04/22/2018,Sports_celeb,@Simone_Biles,"they don’t need me, they’re absolutely killing it 💙 im so proud & happy for them!!! WAHOO GO UCLA BABYYYYY! https://t.co/hLDDIc5ind" +04/21/2018,Sports_celeb,@Simone_Biles,"happy pup in the pit 🐾 +(she jumped in herself) https://t.co/q33qufdOzY" +04/21/2018,Sports_celeb,@Simone_Biles,@gritandddgrace hahahaa this is so funny!!!! literally needed +04/21/2018,Sports_celeb,@Simone_Biles,so proud of my gymnastics babes @ NCAA’s 💙 +04/20/2018,Sports_celeb,@Simone_Biles,@iratre you riiiight +04/19/2018,Sports_celeb,@Simone_Biles,I almost had a mental breakdown but I had to reschedule it +04/19/2018,Sports_celeb,@Simone_Biles,RT @jamescharles: it’s so weird how our faces never change but some days we feel hideous and others we feel stunning & unstoppable +04/19/2018,Sports_celeb,@Simone_Biles,us 😂 @ashton_locklear https://t.co/PbYhJT2bPH +04/16/2018,Sports_celeb,@Simone_Biles,@loganjw23 confused... I haven’t been anywhere today. ? 🤨 +04/14/2018,Sports_celeb,@Simone_Biles,the “I hope” tweets under tristans insta photo are killllllling me 😂😂😂 +04/13/2018,Sports_celeb,@Simone_Biles,IM STOKED 😍😍😍😍🔥🔥🔥 GO @Adaripp https://t.co/09fee2qgdP +04/10/2018,Sports_celeb,@Simone_Biles,"I get it’s an ab/core event y’all! +all events require abs! +but hypothetically speaking https://t.co/k2J9Xocz72" +04/10/2018,Sports_celeb,@Simone_Biles,"@KatieDugger1989 yes yes, definitely. but all events require core and your abs so yes!!! but I mean like ^^^^ c’mon" +04/10/2018,Sports_celeb,@Simone_Biles,"for you gymnast out there +quick question 🖤 Is bars a ?" +04/09/2018,Sports_celeb,@Simone_Biles,National Unicorn Day 🦄 ft Lilo 🐾💓 https://t.co/OnU7K45qfg +04/09/2018,Sports_celeb,@Simone_Biles,"RT @HoustonChron: Five months into her return to full-time training and 19 months since her last competition at the 2016 Olympics, even Sim…" +04/08/2018,Sports_celeb,@Simone_Biles,@DearKenia_ @TheBrittDean I get that I’m a normal person that’s why I want to be treated like one... trust me I know . +04/08/2018,Sports_celeb,@Simone_Biles,everyone is always so quick to judge me +04/08/2018,Sports_celeb,@Simone_Biles,@DearKenia_ @TheBrittDean clearly you don’t understand how I feel EVERYDAY going out. my bad if I didn’t plead at y… https://t.co/7AKfAdQWfG +04/07/2018,Sports_celeb,@Simone_Biles,"RT @SamuelTeddy: Queen Biles is back! Damn I'm already excited for this year. +@Simone_Biles https://t.co/Jvh0023XZY" +04/07/2018,Sports_celeb,@Simone_Biles,"RT @Holli_Alexa: Three things that I loved in @USAG’s IG story on @Simone_Biles: + +• Her Frenchie got belly rubs while she practiced 🐶💕 + +•…" +04/07/2018,Sports_celeb,@Simone_Biles,RT @USAGym: Head over to our Instagram story (@usagym) for a look at Olympic champ @Simone_Biles’ training today! https://t.co/QoYNNORR1w +04/05/2018,Sports_celeb,@Simone_Biles,"@JulieRoyer3 it’s a bathing suit, I’m 21. Get over it." +04/05/2018,Sports_celeb,@Simone_Biles,having summer feels 🌼 https://t.co/WwMiJvpVOb +04/05/2018,Sports_celeb,@Simone_Biles,RT @saradesdinn: i'm a girlfriend and a bro all in one +04/05/2018,Sports_celeb,@Simone_Biles,RT @VanessaGrimaldi: Having one of those days!!!!!! Not sure whether to laugh or cry!!!! Ughh +04/02/2018,Sports_celeb,@Simone_Biles,Lilo & Stitch 🐾🌼💙 https://t.co/nxOVDDjrIb +04/01/2018,Sports_celeb,@Simone_Biles,happy easter 🌸💛 https://t.co/ly9n0ugGkg +03/30/2018,Sports_celeb,@Simone_Biles,obsessed with blush pink +03/29/2018,Sports_celeb,@Simone_Biles,💙 https://t.co/LS3EPplXHS +03/29/2018,Sports_celeb,@Simone_Biles,University of The People Live Q&A #AskUoPeople https://t.co/9MSpr6pXJf +03/29/2018,Sports_celeb,@Simone_Biles,"easy money, I got this 😈 https://t.co/cF6QAV6rex" +03/28/2018,Sports_celeb,@Simone_Biles,RT @auqeno: When yo makeup fire and you don’t know how to act. https://t.co/cu12tuSqpQ +03/28/2018,Sports_celeb,@Simone_Biles,Hey guys! I’m hosting a live Twitter Q&A video on Thursday with University of the People to talk about the Educatio… https://t.co/RpsfmHzD4V +03/27/2018,Sports_celeb,@Simone_Biles,"RT @saradesdinn: yellow is such a dope color, reminds me of sunshine and happiness and sunflowers and lemonade 🌼🍯💛🍋🌟🔆🐝☀️🌻🐣" +03/27/2018,Sports_celeb,@Simone_Biles,my one and only man crush https://t.co/tRRi4Uwxwu +03/26/2018,Sports_celeb,@Simone_Biles,SO HAPPY FOR YOU ❤️❤️❤️❤️❤️ GOODLUCK BABE https://t.co/uBh0BwlX1H +03/26/2018,Sports_celeb,@Simone_Biles,I HATE SPIDERS +03/26/2018,Sports_celeb,@Simone_Biles,the amount of times I’ve contemplated burning down the house bc of seeing a SPIDER is unreaaaaallllll +03/26/2018,Sports_celeb,@Simone_Biles,"aw, that’s so sweet of you. I went to Strack back in the day! 🙌🏾 +Go Cougars!! https://t.co/SRaqSIRYpm" +03/25/2018,Sports_celeb,@Simone_Biles,INBLOOM MUSIC FESTIVAL 🌸 https://t.co/dezB40hq1o +03/25/2018,Sports_celeb,@Simone_Biles,"I D E A S ! H E L P + +G O + +fun places to take photos at in houston?" +03/21/2018,Sports_celeb,@Simone_Biles,I forgot my locker combination at the gym and I’ve had & done it for 4 years.... that’s how my morning is going +03/19/2018,Sports_celeb,@Simone_Biles,RT @houstonzoo: Setting up a surprise sloth encounter as a birthday present for @Simone_Biles? You might think his shirt is made out of cot… +03/18/2018,Sports_celeb,@Simone_Biles,💗 https://t.co/FzqIyykiWg +03/17/2018,Sports_celeb,@Simone_Biles,Happy St.Patricks Day - I’m one lucky girl ☘️💚 https://t.co/R4CKG72gEK +03/17/2018,Sports_celeb,@Simone_Biles,☘️lucky to have a friend as sweet as you @caaitelizabeth https://t.co/jOMaiyfInm +03/16/2018,Sports_celeb,@Simone_Biles,Life is a party • Dress like it 🎉 https://t.co/zB3KkFEJDk +03/15/2018,Sports_celeb,@Simone_Biles,can’t wait to see what 21 brings 😈🎉 thanks for all the birthday wishes babes 💋 xoxo https://t.co/OyxGDujC8U +03/15/2018,Sports_celeb,@Simone_Biles,"happy birthday to all the +march 14th-ers 💗" +03/14/2018,Sports_celeb,@Simone_Biles,21 🎉 https://t.co/Zb2w41lwCM +03/12/2018,Sports_celeb,@Simone_Biles,my babes first rodeo experience : look how stinkin cute he is 😍🤪💗 https://t.co/wqjn0pRD4L +03/12/2018,Sports_celeb,@Simone_Biles,h o u s t o n r o d e o https://t.co/lWhhNqH3Oc +03/11/2018,Sports_celeb,@Simone_Biles,it’s 2018 why are heels still so painful +03/11/2018,Sports_celeb,@Simone_Biles,RT @SPlDEYSTYLES: the rock calling his daughter “my queen” and teaching her empowering words honestly warms my heart knowing he’s raising h… +03/10/2018,Sports_celeb,@Simone_Biles,im gonna need you to delete this tweet & your twitter 💔 https://t.co/oGUr0MNTyy +03/10/2018,Sports_celeb,@Simone_Biles,"I never have anything to tweet about anymore, I’m just here for the funny tweets and videos" +03/09/2018,Sports_celeb,@Simone_Biles,@KellyT1996 @staceyervinjr @WCCentre2014 @biles_nellie @adria_biles @biles aawwww our baby is gonna be famous 🐾🐶 +03/09/2018,Sports_celeb,@Simone_Biles,RT @KellyT1996: Stressed? We have the cure! @Simone_Biles @staceyervinjr @WCCentre2014 @biles_nellie @adria_biles @biles. https://t.co/FE8e… +03/09/2018,Sports_celeb,@Simone_Biles,RT @BleacherReport: #InternationalWomensDay💪🏾 https://t.co/rP9nt0nSDr +03/08/2018,Sports_celeb,@Simone_Biles,@caroliine69 @norah_flatley @lzhernandez02 @ashton_locklear @DennisNia I definitely never made or did Tops...... hmmmm awk +03/08/2018,Sports_celeb,@Simone_Biles,RT @beatsbydre: Share your strength and build others up. @Simone_Biles #InternationalWomensDay #PressForProgress https://t.co/NVPWmRPhTx +03/08/2018,Sports_celeb,@Simone_Biles,RT @rachm528: @Simone_Biles i cant believe you’ll be 21 in a week... where has the time gone!?😳💜 https://t.co/RoVPN778b7 +03/07/2018,Sports_celeb,@Simone_Biles,"Together with @UoPeople, we can get rid of the barriers that keep a college degree out of reach for those who truly… https://t.co/eexsJAXpsd" +03/07/2018,Sports_celeb,@Simone_Biles,"it’s national oreo day, so of course I had to go buy some 🤪🤤" +03/04/2018,Sports_celeb,@Simone_Biles,RT @khloekardashian: What happened to women fixing each other’s crowns instead of trying to knock the others crown off? +03/04/2018,Sports_celeb,@Simone_Biles,@YourFavR0Y you do realize I said yes to you asking for a photo... So I was doing the cashiers first and yall walke… https://t.co/hWhT1GEvAG +03/03/2018,Sports_celeb,@Simone_Biles,RT @WCCentre2014: How could this sweet girl not think she isn’t our gym baby! Most loved and spoiled pup around! With 2 rockstar parents to… +03/02/2018,Sports_celeb,@Simone_Biles,RT @USAGym: .@Simone_Biles has been added to the U.S. national team. https://t.co/41dZLn1Uwr +03/01/2018,Sports_celeb,@Simone_Biles,"RT @Nike: When your world stops, there's only one option. #ChooseGo #Nike https://t.co/8ggzKFsiar" +03/01/2018,Sports_celeb,@Simone_Biles,Lace up. Get out. #ChooseGo #TeamNike https://t.co/7eS301GbWt +02/27/2018,Sports_celeb,@Simone_Biles,"sorry loves, I thought my snapchat was public! 💗 it’s backkk! Don’t worry, I’ll do a little weekend recap for you guys 💋 XO" +02/25/2018,Sports_celeb,@Simone_Biles,"my man 🧡 so proud of you, can’t wait to see what the future holds 💋 https://t.co/npWvaAVJKL" +02/25/2018,Sports_celeb,@Simone_Biles,"RT @TheAdams_era: Some nights I wish I could go back in life. Not to change anything, just to feel a couple things twice." +02/24/2018,Sports_celeb,@Simone_Biles,"all fun, giggles & memories here at the first Biles Invitational ❤️ https://t.co/NK4m69MG6E" +02/23/2018,Sports_celeb,@Simone_Biles,RT @alejandraalan12: OMG this is so cute ❤️ @Simone_Biles https://t.co/Fk5TgZq1R7 +02/20/2018,Sports_celeb,@Simone_Biles,"RT @soieange: Dreaming of this wonderful floral bath at the Karsa Spa in Bali 🌺 wanting flower soaked baths, luxury facials using organic p…" +02/18/2018,Sports_celeb,@Simone_Biles,💛 just a girls night out https://t.co/CbNUk7Jwq7 +02/17/2018,Sports_celeb,@Simone_Biles,hey @Adaripp can I please borrow that top ?!!??!!! #NEEDIT +02/17/2018,Sports_celeb,@Simone_Biles,"keep your chin up @nathanwchen +I believe in you!!" +02/17/2018,Sports_celeb,@Simone_Biles,"RT @TexansCheer: @Simone_Biles Hold up! +Lilo swagged out X 1,000,000!💕" +02/16/2018,Sports_celeb,@Simone_Biles,okay I’m obsessed 🐾🐶 @TexansCheer https://t.co/u3x9SKLwf8 +02/14/2018,Sports_celeb,@Simone_Biles,"CAN’T WAIT ‼️‼️‼️‼️‼️‼️ +SEE YOU SOON https://t.co/WCs2HhYVzC" +02/13/2018,Sports_celeb,@Simone_Biles,RT @alejandraalan12: awww the cutest thing I've seen today ❤️ @Simone_Biles https://t.co/pgkhdi5Rm7 +02/12/2018,Sports_celeb,@Simone_Biles,✨ Give the gift of sweet dreams when you donate to @MattressFirm’s pajama drive. #Donate4FosterKids #partner https://t.co/xlMLy26cgb +02/12/2018,Sports_celeb,@Simone_Biles,meet Lilo 💗🐾 https://t.co/F3kCIzboXk +02/10/2018,Sports_celeb,@Simone_Biles,"aww Alicia, I’d be excited if it was you!! I remember the time I was excited to get your autograph😊 I still have it… https://t.co/FeesohAXCE" +02/09/2018,Sports_celeb,@Simone_Biles,"RT @SummerSanders_: #FlashbackFriday To last night with my fellow Olympians @Simone_Biles and @missyfranklin +Supporting our @CocaColaCo @T…" +02/09/2018,Sports_celeb,@Simone_Biles,"Who’s excited for the #WinterOlympics to begin tonight on @NBCOlympics?! + +Good Luck Nathan!!!! Can’t wait to watch… https://t.co/4JroJB3Xhi" +02/08/2018,Sports_celeb,@Simone_Biles,RT @AM2DM: Watch this 11-year-old gymnast meet her hero @Simone_Biles 😭 💕 https://t.co/iejwAfgKdB +02/05/2018,Sports_celeb,@Simone_Biles,yes 😅😅😅 the struggle https://t.co/WbgO6UOWT2 +02/04/2018,Sports_celeb,@Simone_Biles,well said girl 👏🏾 https://t.co/D6qmBf1IU9 +06/24/2018,Sports_celeb,@MichelleWKwan,Today is Olympic Day - a nostalgic time as I think about my experiences and how the Olympic values positively impac… https://t.co/6ZPAlxLBeR +06/20/2018,Sports_celeb,@MichelleWKwan,Meeting my new bestie @jvn for the first time 💕… https://t.co/32bK3qNrMp +05/15/2018,Sports_celeb,@MichelleWKwan,In celebration of #AAPI month I wanted to share my @CAPEUSA story. What’s yours? https://t.co/JNUhlirRni +05/08/2018,Sports_celeb,@MichelleWKwan,"RT @maziehirono: @FDNY As a two-time Olympic medalist and a nine-time U.S. champion, @MichelleWKwan inspired generations of girls to become…" +05/08/2018,Sports_celeb,@MichelleWKwan,RT @vivekforca: I ran 500 miles across California – Sacramento to L.A. I'm not stopping. https://t.co/e9bOL2vKBW #RunwithVivek #500Milesfor… +03/19/2018,Sports_celeb,@MichelleWKwan,RT @MohamedBinZayed: It was a pleasure welcoming our friends from Special Olympics International back. The UAE welcomes all athletes to the… +03/09/2018,Sports_celeb,@MichelleWKwan,"Shout out to the one and only michelleobama on #internationalwomensday - mom, role model,… https://t.co/OdwniYhqmD" +03/07/2018,Sports_celeb,@MichelleWKwan,I love my @specialolympics family and today I wanted to ask all of you to pledge to stop using… https://t.co/qrNsGTbiFH +02/23/2018,Sports_celeb,@MichelleWKwan,"Cheering for teamusa @usfigureskating from home!! #letsdothis @ Los Angeles, California https://t.co/CQOekPNT48" +02/22/2018,Sports_celeb,@MichelleWKwan,"With mom's love, I overcame every obstacle in my skating career. #LoveOverBias #ad https://t.co/la9435MXPo" +02/22/2018,Sports_celeb,@MichelleWKwan,"RT @eamslider24: Strong women, unite! Here with @proctergamble to spread the #LoveOverBias message with these incredible women through the…" +02/19/2018,Sports_celeb,@MichelleWKwan,"Let’s go @mirai_nagasu 😘 #havefun +https://t.co/prlDzoRCAp" +02/19/2018,Sports_celeb,@MichelleWKwan,Remember this.... adrienneelrod jmpalmieri🤣 https://t.co/NQLnXZqhgT +02/18/2018,Sports_celeb,@MichelleWKwan,An overwhelming feeling of nostalgia being at pyeongchang2018. I still remember like it was… https://t.co/ZU2BTWUcXI +02/18/2018,Sports_celeb,@MichelleWKwan,Haha. Honored I’m a tab @lulu_cheng😆 https://t.co/1NxHx7nK2t +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @TuftsUniversity: Figure skating phenom and @FletcherSchool alum @MichelleWKwan discusses gender equality at the #WinterOlympics, sports…" +02/17/2018,Sports_celeb,@MichelleWKwan,RT @icenetwork: Yuzu is weeping with joy backstage. #PyeongChang2018 #Olympics https://t.co/q7ZFLDEzQ6 +02/17/2018,Sports_celeb,@MichelleWKwan,Congrats Yuzu! #twotimeolympicchampion 😱 +02/17/2018,Sports_celeb,@MichelleWKwan,@MaiaShibutani Unreal. I never thought I’d ever see so many quads! +02/17/2018,Sports_celeb,@MichelleWKwan,That was so beautiful @Adaripp - you’re flying like a bird! 😭 +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: WE AREN’T SCREAMING, YOU ARE! 😱 +@Adaripp is on the ice NEXT on @NBCSN! https://t.co/RSyQoC5JRn" +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: ALL. THE. FEELS. 😭 What an incredible #WinterOlympics debut for @govincentzhou. 👏 + +📸: Getty Images https://t.co/p9JXfL…" +02/17/2018,Sports_celeb,@MichelleWKwan,@kristiyamaguchi @govincentzhou So emotional! Exhausted from trying to skate with every 🇺🇸skater - it doesn’t help… https://t.co/yHGOmXStYt +02/17/2018,Sports_celeb,@MichelleWKwan,Way to go Vincent Zhou! 💪🏼🙌🏻👏🏼 +02/17/2018,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: REDEMPTION FOR @nathanwchen. 👏 + +He earns a 215.08 points for his FS - a new personal best - and 297.35 total. He's in…" +02/17/2018,Sports_celeb,@MichelleWKwan,RT @MarissaCastelli: Wow. NATHAN CHEN IS A CHAMPION. I don’t care what the result are that was incredible. 👏🏼 #Olympics2018 #NathanChen +02/17/2018,Sports_celeb,@MichelleWKwan,HOLY QUADS @nathanwchen #champ #fighter #amazing +02/16/2018,Sports_celeb,@MichelleWKwan,Wishing the Winningest Alpine Skier Of All Time @lindseyvonn - and a woman who has the most… https://t.co/ofFZgXO9sc +02/16/2018,Sports_celeb,@MichelleWKwan,I’ve been staring at the Olympic rings my whole life - never gets old 😍 pyeongchang2018… https://t.co/bcGDNdMXF4 +02/16/2018,Sports_celeb,@MichelleWKwan,Amazing! @govincentzhou makes the impossible looks so easy. @usfigureskating. #goteamusa https://t.co/mI1k6okDrU +02/16/2018,Sports_celeb,@MichelleWKwan,RT @JayAndDan: Meagan Duhamel (@mhjd_85) and Eric Radford (@Rad85E) join #JayAndDan RIGHT NOW on TSN! https://t.co/l1czIeVPhq +02/16/2018,Sports_celeb,@MichelleWKwan,RT @yawning_shoma: Shoma was talking to press so Yuzuru got on his hands and knees and CRAWLED BEHIND SHOMA TO NOT DISTURB HIM LMAO https:/… +02/16/2018,Sports_celeb,@MichelleWKwan,"RT @M1K1_ANDO: 29. Javier FERNANDEZ 🇪🇸 +チャップリンの世界観を存分に味わえたのではないでしょうか。 ジャンプも本当に素晴らしい質の高いジャンプ。 特にサルコウはやはりピカイチです。 メダルへの強い気持ちが現れた演技でした。" +02/16/2018,Sports_celeb,@MichelleWKwan,💔 +02/16/2018,Sports_celeb,@MichelleWKwan,"RT @NickMcCarvel: Nathan Chen now set to skate after that Yuzuru Hanyu BRILLIANCE. Nathan on the skate order: ""[I'll] be prepared for the P…" +02/16/2018,Sports_celeb,@MichelleWKwan,Wow Yuzu Wow 😮 +02/16/2018,Sports_celeb,@MichelleWKwan,@J_Butt Bonus points for attitude and the look on Rafael’s face😉 +02/16/2018,Sports_celeb,@MichelleWKwan,Well said. https://t.co/SqixmJyQj4 +02/15/2018,Sports_celeb,@MichelleWKwan,"RT @FletcherSchool: #FletcherAlum @MichelleWKwan (F11) is the most award-winning US figure skater ever: a 2-time #Olympic medalist, 5-time…" +02/14/2018,Sports_celeb,@MichelleWKwan,Congrats! @shaunwhite GOAT 🏅🇺🇸🏅🇺🇸 +02/14/2018,Sports_celeb,@MichelleWKwan,RT @rockerskating: OMG @MichelleWKwan feels with Day in the Life from Ryom/Kim #PyeongChang2018 +02/14/2018,Sports_celeb,@MichelleWKwan,North Korean figure skaters are on the ice! https://t.co/dkuFHXRNQT +02/14/2018,Sports_celeb,@MichelleWKwan,Sorry this boomerang had to happen... working on my @usfigureskating teamusa cheerleading… https://t.co/1iFeITDOWj +02/09/2018,Sports_celeb,@MichelleWKwan,Excited to share another Olympic Games experience with Mama Kwan and proud to be partnering with… https://t.co/gRGoHjjIkL +02/09/2018,Sports_celeb,@MichelleWKwan,RT @arthurpbs: The #WinterOlympics have officially begun! Who’s tuning in? #OpeningCeremony #MichelleKwan #ArthurGuestStars @MichelleWKwan… +02/09/2018,Sports_celeb,@MichelleWKwan,So beautiful to see my friend @bamboogrovw light the pyeongchang2018 Olympic torch 😍🔥#fbf to… https://t.co/CmZnECSh5w +02/07/2018,Sports_celeb,@MichelleWKwan,"This empowering song @kealasettle reminds me of an Olympian’s journey to the Games - ”I am brave, I am bruised I am… https://t.co/LMFwIEWXUU" +02/04/2018,Sports_celeb,@MichelleWKwan,Pre-Super Bowl volleyball fun 🏐🏈🏐🏈 https://t.co/yzdzISxKIS +02/02/2018,Sports_celeb,@MichelleWKwan,"I ❤️ @ProcterGamble “thank you, mom” #loveOverBias campaign https://t.co/LB3UrEiUgL" +01/27/2018,Sports_celeb,@MichelleWKwan,So very cool! Hope everybody’s getting excited for pyeongchang2018 thanks @people 😍 https://t.co/SW3eYQu4S9 +01/25/2018,Sports_celeb,@MichelleWKwan,Part 3 (The End). @ East West Ice Palace https://t.co/A8zBknwFB2 +01/25/2018,Sports_celeb,@MichelleWKwan,@FANderWaalNews @GraceVanderWaal Eek typo! She does have a beautiful mind too;) +01/25/2018,Sports_celeb,@MichelleWKwan,"Part 2. + +“Beautiful Mind” @gracevanderwaal +Choreographer: karenkwanoppegard😍 @ East West Ice… https://t.co/SUMh9lpmSh" +01/20/2018,Sports_celeb,@MichelleWKwan,"RT @POPSUGARFitness: Seriously, @MichelleWKwan is fire on that ice rink! https://t.co/NzMrgt6SLf" +01/17/2018,Sports_celeb,@MichelleWKwan,Best desk neighbor and one of the smartest ppl I know! Go @vivekforca https://t.co/BiLYFyMhO9 looking forward to ru… https://t.co/jmonctl5qD +01/17/2018,Sports_celeb,@MichelleWKwan,My friend & fmr colleague @vivekforca is *literally* running for CA Treasurer!https://t.co/BiLYFyMhO9 #500MilesforCA https://t.co/CYA1Pz7LLA +01/14/2018,Sports_celeb,@MichelleWKwan,Epic siblings weekend. Pretending we’re @lindseyvonn @shaunwhite @hannahteter 👊🏻🇺🇸#gopro… https://t.co/u5V5jRl9lf +01/12/2018,Sports_celeb,@MichelleWKwan,RT @NBCOlympics: .@MichelleWKwan's still got it. #WinterOlympics https://t.co/HTtUzcCWeY +01/07/2018,Sports_celeb,@MichelleWKwan,Skating family unite! #Go nathanwchen @adaripp @Grant_Hochstein @rossminer @jasonbskates @ SAP… https://t.co/ePtV2aLe9e +01/06/2018,Sports_celeb,@MichelleWKwan,@NickMcCarvel @icenetwork So fun to chat with you! You’re the best. Xo +01/06/2018,Sports_celeb,@MichelleWKwan,RT @NickMcCarvel: Super special to have @MichelleWKwan join us on the Ice Desk yesterday on @icenetwork! Legendary human in every way #USCh… +01/06/2018,Sports_celeb,@MichelleWKwan,The gang hanging out @usfigureskating #uschamps18 to cheer on the ladies! #gousa🇺🇸 @evanlysacek… https://t.co/1AkjHhvEgS +01/04/2018,Sports_celeb,@MichelleWKwan,Skating buds 🙆🏻‍♂️🙆🏻‍♀️ @evanlysacek @ East West Ice Palace https://t.co/i6DgsFNiOp +01/02/2018,Sports_celeb,@MichelleWKwan,"See no evil, hear no evil and speak no evil in 2018 🙈🙉🙊#threewisemonkeys https://t.co/YDCmqFHmQp" +12/24/2017,Sports_celeb,@MichelleWKwan,Merry merry merry everyone!🎀 https://t.co/R8zOu2Mzf7 +12/22/2017,Sports_celeb,@MichelleWKwan,Split falling leaf into the weekend #merrychristmas #skatergirl 🤸🏻‍♀️ @ East West Ice Palace https://t.co/FV5jMWUP5u +12/18/2017,Sports_celeb,@MichelleWKwan,First inside outside spiral in over 10 years 😳 edsheeran #mondaymotivation @SkatingLesson still… https://t.co/CHyyRvGBBa +12/15/2017,Sports_celeb,@MichelleWKwan,"It’s Friday fun time! #spiral #skating +🌈☁️🌈☁️🌈☁️🌈☁️🌈☁️🌈 https://t.co/ecSW5zV1iD" +12/14/2017,Sports_celeb,@MichelleWKwan,With pyeongchang2018 right around the corner I️ thought it would be fun to get back on the ice.… https://t.co/eY28d5MTdF +12/11/2017,Sports_celeb,@MichelleWKwan,So fun talking ice skating w/ @icenetwork https://t.co/ERitvtXzuh +12/07/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: .@MichelleWKwan, Bob Costas & the #DreamTeam have just received some pretty big awards from the United States Olympic Endowmen…" +12/02/2017,Sports_celeb,@MichelleWKwan,Lovely to stop by to see my former boss hillaryclinton and hang with #HIllsquad #I️ttakesavillage https://t.co/Mltmg6EoPH +11/30/2017,Sports_celeb,@MichelleWKwan,"RT @arthurpuu: LA native Michelle Kwan on the 2028 LA Olympics: “I’m very excited for it to be back, especially here in my backyard. It’s s…" +11/30/2017,Sports_celeb,@MichelleWKwan,So wonderful to hang out w/ you @catcora Hope that I️ can exchange skating lessons for cooking lessons 🙏🏼 https://t.co/9BnUTyhD3S +11/27/2017,Sports_celeb,@MichelleWKwan,So excited to read @jwelter47 book. #Rockstar #girlpower 🙌🏻 https://t.co/yIfpbzJ3Sg +11/26/2017,Sports_celeb,@MichelleWKwan,Sunday funday with the fam bam. I️ asked my niece oliviaoppegard if she wanted to “walk” the… https://t.co/CHQO91ldth +11/25/2017,Sports_celeb,@MichelleWKwan,RT @SkateGuardBlog: A little trivia... the record for the most #SkateAmerica titles belongs to @MichelleWKwan (7). She won her first in 199… +11/25/2017,Sports_celeb,@MichelleWKwan,RT @UN_Women: You wont believe these facts! Watch until the end. https://t.co/msPVglSFLh #16days #orangetheworld +11/14/2017,Sports_celeb,@MichelleWKwan,RT @Want_PC: .@michellewkwan on why we need the Olympics now more than ever: https://t.co/NTAG5QzaO4 https://t.co/dqmHD1957l +11/14/2017,Sports_celeb,@MichelleWKwan,RT @TimShriver: Great to be with @SpecialOlympics International Board member @MichelleWKwan to meet the athletes and parents taking part in… +11/14/2017,Sports_celeb,@MichelleWKwan,Wonderful to bring my mom to the @specialolympics East Asia Unity Fundraising Gala in Hong Kong.… https://t.co/zryA90bf5V +11/08/2017,Sports_celeb,@MichelleWKwan,@jmpalmieri Don’t forget the pantsuit too! https://t.co/bHptBIUA5G +11/07/2017,Sports_celeb,@MichelleWKwan,Win a pair of skates signed by @VeraWangGang and me — and also support @FSinHarlem! https://t.co/xRLq1cNk6W #FSHwinskates +11/06/2017,Sports_celeb,@MichelleWKwan,"Wonderful to join Her Excellency @NouraAlKaabi & #MariaTeixidorJufresa on the panel, “Leadership… https://t.co/f5fKQctLEK" +11/05/2017,Sports_celeb,@MichelleWKwan,"After 17 hour flight + 8 hours at Heathrow, very little sleep, and a few meetings I’m finally… https://t.co/ykQ0w4WICE" +11/03/2017,Sports_celeb,@MichelleWKwan,"Always fun catching up with this champ @evanlysacek @ Beverly Hills, California https://t.co/8TmuC0OcBE" +11/02/2017,Sports_celeb,@MichelleWKwan,I couldn’t hold back the tears watching the new @ProcterGamble #PyeongChang2018 video. So powerful! Check out… https://t.co/dP2j2pS4ph +11/01/2017,Sports_celeb,@MichelleWKwan,"RT @wmag: .@MichelleWKwan discusses getting back on the ice, working with @VeraWangGang, and #ITonya: https://t.co/SZA3ynGkxK" +11/01/2017,Sports_celeb,@MichelleWKwan,It’s 100 days out from#pyeongchang2018 and I’m thrilled to be a part of @proctergamble… https://t.co/GlVdLKy78E +11/01/2017,Sports_celeb,@MichelleWKwan,RT @olyphil: Got to catch up with two of my favorite people while breaking bread in LA: @MichelleWKwan and @janetevans https://t.co/d21NFdA… +11/01/2017,Sports_celeb,@MichelleWKwan,RT @ICSW_AD: 6 days to go🙌! Which speaker are you most excited to see at the conference? Let us know in the replies https://t.co/2LnqigeYO9 +11/01/2017,Sports_celeb,@MichelleWKwan,@christina_gregg Great chatting with you! +10/20/2017,Sports_celeb,@MichelleWKwan,Catch me live on @newyorklivetv at 11:30 & @TheHubToday at 12:30 chatting with @sara_gore & @jacquereid about @WomensSportsFdn +10/18/2017,Sports_celeb,@MichelleWKwan,Thanks @MorganStanley for hosting #WSFALC17 @WomensSportsFdn Great to chat w/ athletes transitioning from sports to… https://t.co/9bX2JgBlKE +10/18/2017,Sports_celeb,@MichelleWKwan,For the first time ever you can #Livestream the @WomensSportsFdn #WSFAnnualSalute! Register for… https://t.co/k9VVyuyaG5 +10/18/2017,Sports_celeb,@MichelleWKwan,RT @ExcelleSports: Your fav female athletes will be there + so will we! Join us on 10.18 on FB as we go live - and take your questions - fr… +10/15/2017,Sports_celeb,@MichelleWKwan,"When at first you don't succeed, try again 🙄 + +1st attempt: Fail +2nd attempt: Success… https://t.co/8aZ0QL41E7" +10/06/2017,Sports_celeb,@MichelleWKwan,Congrats @DebraMessing for receiving a star on the Hollywood Walk of Fame! 😘 Love ya! https://t.co/bqjrTVzLSt +10/05/2017,Sports_celeb,@MichelleWKwan,Blades and body are still rusty from not jumping for 7 years but after 4 days of skating I'm… https://t.co/jK5UfIHKgK +10/01/2017,Sports_celeb,@MichelleWKwan,@mskristinawong Nope. Wonder who my doppelgänger is 😜 +09/20/2017,Sports_celeb,@MichelleWKwan,Just taking my zamboni for a spin around the block. @ East West Ice Palace https://t.co/3M4DjAggcQ +09/04/2017,Sports_celeb,@MichelleWKwan,Happy Labor Day 😘 @ Hanalei Bay https://t.co/sp8RcKCW21 +08/25/2017,Sports_celeb,@MichelleWKwan,RT @kobebryant: .@allysonfelix I challenge you to coach the sprinters for the upcoming Special Olympics #MambaMentality https://t.co/aaL6ei… +08/24/2017,Sports_celeb,@MichelleWKwan,Reconnecting with old friends ❤️#willandgrace nbcwillandgrace @ Universal Studios Hollywood https://t.co/FptODAXD4E +08/21/2017,Sports_celeb,@MichelleWKwan,"Feeling like complete totality 🌚 @ Westwood, Los Angeles https://t.co/YWbX9L3Pu3" +08/17/2017,Sports_celeb,@MichelleWKwan,@ItsKenton So nice meeting you!! ❤️ @PMJofficial #45mins😜 +08/09/2017,Sports_celeb,@MichelleWKwan,"RT @KPMGInspire: Resiliency is a must-have and it differs by situation. In figure skating, it means grace after mistakes, says @MichelleWK…" +07/19/2017,Sports_celeb,@MichelleWKwan,RT @SpecialOlympics: RT if you will honor the legacy of Eunice Kennedy Shriver this #EKSDay by taking our #ChooseToInclude pledge➡https://t… +07/16/2017,Sports_celeb,@MichelleWKwan,Go @PaulaAbdul go!!! We ❤️ you! @musical_wheels https://t.co/dVZWvxZMUK +07/16/2017,Sports_celeb,@MichelleWKwan,In absolute awe of @rogerfederer🏆 #Wimbledon #superstar #athlete +07/13/2017,Sports_celeb,@MichelleWKwan,"#JICYMI: @SpecialOlympics @TimShriver accepting the @ESPYS #ArthurAsheAward #MichelleObama +#ChooseToInclude https://t.co/fva6WvKnnA" +07/08/2017,Sports_celeb,@MichelleWKwan,"Thank you for all the amazing birthday wishes. #grateful #feelingloved + +I'm told I'm aging like… https://t.co/xESjdgqVJ7" +07/07/2017,Sports_celeb,@MichelleWKwan,RT @SpecialOlympics: Wishing a very Happy Birthday today to Global Ambassador & Board of Directors member @MichelleWKwan! We hope you have… +07/07/2017,Sports_celeb,@MichelleWKwan,@TheBoysWhoScore - awww. You guys are so sweet 😘 +07/07/2017,Sports_celeb,@MichelleWKwan,"RT @olyphil: Happy 37th, @MichelleWKwan My valedictories when she made her retirement official & when she withdrew from 06 Oly https://t.co…" +07/07/2017,Sports_celeb,@MichelleWKwan,RT @kwanette: The legendary Jim McKay on the legendary @MichelleWKwan https://t.co/L1AwAd6Esi +06/27/2017,Sports_celeb,@MichelleWKwan,"RT @ChantelMcCabeGC: I had done multiple book reports on @MichelleWKwan ...then today we're like ""who can't land a triple toe-triple toe co…" +06/27/2017,Sports_celeb,@MichelleWKwan,RT @KPMGUS_News: PHOTO DESK: @MichelleWKwan & @TheChristinaKim are all smiles after their round @KPMGWomensPGA #ProAm. Interview: https://t… +06/27/2017,Sports_celeb,@MichelleWKwan,RT @KPMGInspire: Michelle squared selfie 🤳🏼#InspireGreatness #KPMGWomensPGA https://t.co/BrgvBWKWcJ +06/27/2017,Sports_celeb,@MichelleWKwan,What fun it was to play in the Pro-Am kpmgwomenspga #workinprogress @ KPMG Women's PGA Championship https://t.co/Pw2zK7IOQQ +06/26/2017,Sports_celeb,@MichelleWKwan,RT @musical_wheels: Celebrating my amazing friend @MichelleWKwan as she is inducted into the #californiasportshalloffame. I am so proud of… +06/26/2017,Sports_celeb,@MichelleWKwan,RT @LizHabib: Congratulations to @MichelleWKwan 2017 California Sports Hall of Fame Inductee https://t.co/lsmVYJT8iI +06/26/2017,Sports_celeb,@MichelleWKwan,Honored to be inducted into the California Sports Hall of Fame ❤️ https://t.co/siFKmfCxS1 +06/25/2017,Sports_celeb,@MichelleWKwan,"RT @CALSPORTSHOF: 2017 California Sports Hall of Fame Inductees announced: Leigh Steinberg, James Lofton, Michelle Kwan, Byron Scott and Jo…" +06/24/2017,Sports_celeb,@MichelleWKwan,Excited to celebrate #OlympicDay with @LA2024 to help young athletes fall in ❤️with Olympic and Paralympic sports! #FollowTheSun +06/24/2017,Sports_celeb,@MichelleWKwan,.@MrDrewScott - so ready! Just picked up my golf clubs after not playing for 3 years 😝#gotthis +06/18/2017,Sports_celeb,@MichelleWKwan,Appreciative every day for having the best father anybody could wish for! Hope everybody has an… https://t.co/8NpoM9KPsL +06/18/2017,Sports_celeb,@MichelleWKwan,"RT @MichelleObama: Happy #FathersDay @BarackObama. Our daughters may be older and taller now, but they’ll always be your little girls. We l…" +06/16/2017,Sports_celeb,@MichelleWKwan,"RT @PhilipRucker: I just asked VP Pence about hiring a private lawyer and he said: ""It's very routine. Very routine.""" +06/16/2017,Sports_celeb,@MichelleWKwan,RT @edunkel: Girls Just Kwan to have fun #AthleteSongs @midnight @MichelleWKwan https://t.co/tWZGoMaoNv +06/11/2017,Sports_celeb,@MichelleWKwan,.@adrienneelrod @jmpalmieri - so bummed to have missed this! +06/06/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: Set an ⏰! @ApoloOhno & @MichelleWKwan are sharing the differences between @USFigureSkating & @USSpeedskating! + +9:30a https://t…" +06/06/2017,Sports_celeb,@MichelleWKwan,"We are a little excited for pyeongchang2018 @apoloohno teamusa +🇺🇸🇺🇸🇺🇸 @ United States Olympic… https://t.co/5zi54VD4Rz" +06/03/2017,Sports_celeb,@MichelleWKwan,.@MarissaAstor @ChloeGMoretz - good times!!! xoxoxo +05/29/2017,Sports_celeb,@MichelleWKwan,RT @Sport360: 2-time Olympic medalist @MichelleWKwan & Emirati Olympic hopeful Zahra Lari spent some time skating at @ZayedSportsCity. Must… +05/27/2017,Sports_celeb,@MichelleWKwan,So honored to meet His Highness Sheikh Mohammed bin Zayed - a champion of @SpecialOlympics… https://t.co/upZo0vv1s7 +05/21/2017,Sports_celeb,@MichelleWKwan,"RT @smithcollege: .@michellewkwan: The men and women I most admire, one quality they share is a willingness to work & sacrifice for great a…" +05/21/2017,Sports_celeb,@MichelleWKwan,With incredible company receiving an honorary doctorate degree @smithcollege @Oprah 😳 #Classof2017 https://t.co/IcnIo0EQ2l +05/21/2017,Sports_celeb,@MichelleWKwan,RT @Farah_Pandith: Great 2 see fellow @FletcherSchool grad + @StateDept pal on @smithcollege campus! Congrats @MichelleWKwan! Enjoy my alm… +05/20/2017,Sports_celeb,@MichelleWKwan,"RT @ATomorrow: .@KPMG announces third annual Women's Leadership Summit, ft. @CondoleezzaRice, @MichelleWKwan, and many more: https://t.co/x…" +05/19/2017,Sports_celeb,@MichelleWKwan,"RT @girlscouts: For #APAHM we're saluting G.I.R.L.s (Go-getter, Innovator, Risk-taker, Leader)™ we admire, including @MichelleWKwan! https:…" +05/16/2017,Sports_celeb,@MichelleWKwan,RT @LPGA: .@MichelleWKwan is all smiles after the announcement that she'll be an Olympian Panelist @ the KPMG Women's Leadership Summit @KP… +05/16/2017,Sports_celeb,@MichelleWKwan,"RT @KPMGInspire: .@KPMG_US is honored to have @MichelleWKwan, @AngelaRuggiero & @lindseyvonn at the 2017 KPMG Women's Leadership Summit! #I…" +04/23/2017,Sports_celeb,@MichelleWKwan,RT @danielleleah1: Yeah absolutely no fun had on the Hillary campaign (cc: @MichelleWKwan) https://t.co/hkqFz68ryd +03/29/2017,Sports_celeb,@MichelleWKwan,"Nice to talk about sports, empowering women and the @WomensSportsFdn w/ @MorganStanley during #WomensHistoryMonth https://t.co/4RQGuEchoI" +03/21/2017,Sports_celeb,@MichelleWKwan,"RT @M1K1_ANDO: With Queens❄️⛸❄️ +#austria2017 #specialolympics #specialolympics2017 #スペシャルオリンピックス #スペシャルオリンピックス冬季世界大会 https://t.co/ogwjf…" +03/20/2017,Sports_celeb,@MichelleWKwan,Thanks for letting me share my ❤️for @SpecialOlympics @adamslily @KNegandhiESPN @espn #austria2017 https://t.co/86EKXvlAcn +03/20/2017,Sports_celeb,@MichelleWKwan,.@SpecialOlympics having a splash at the World Games!! +03/20/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: Brrr! We were #freezinforareason at yesterday's Unified Polar Plunge, the Schladming Splash, at #austria2017 ➡ https:/…" +03/19/2017,Sports_celeb,@MichelleWKwan,.@M1K1_ANDO you're a champion both on and off the ice. Thanks for being an incredible ambassador for @SpecialOlympics +03/19/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: We see those dance moves @MichelleWKwan @hannahteter @devarona64 Bill Alford, Dr. Dykens, @drewpbaldwin #freezinforare…" +03/18/2017,Sports_celeb,@MichelleWKwan,"RT @mkfanpg: Yesterday on GMA, @Robinroberts said she ran into @MichelleWKwan in Austria & showed this picture ❤️ https://t.co/A3j9btyXgH" +03/18/2017,Sports_celeb,@MichelleWKwan,RT @specialolyUSA: Wow! @michellewkwan wished stopped by for a photo with the figure skaters! #Cheer4USA https://t.co/hGG4pz9q94 +03/18/2017,Sports_celeb,@MichelleWKwan,RT @NwkBoysChorus: #FBF to when the Newark Boys Chorus School performed for @CoryBooker https://t.co/X5O2cRuymJ #chorus #music #choir #Th… +03/18/2017,Sports_celeb,@MichelleWKwan,RT @M1K1_ANDO: Special Olympics 2017!!! 🇦🇹❄️ https://t.co/7z4jLGHriZ +03/18/2017,Sports_celeb,@MichelleWKwan,Cheering on @SpecialOlympics snowshoeing athletes and getting a few tips too! #austria2017 https://t.co/3At556Krkf +03/17/2017,Sports_celeb,@MichelleWKwan,RT @HillaryClinton: Things I learned today. https://t.co/lM2xAjIg3H +03/15/2017,Sports_celeb,@MichelleWKwan,Hundreds of incredible @SpecialOlympics athletes are heading to @2017Austria! Watch them LIVE on @espn &… https://t.co/hy7Wj7stLw +03/11/2017,Sports_celeb,@MichelleWKwan,Thankful for this awesome yogi 🙏🏼 https://t.co/sNqwD2IDuO +03/10/2017,Sports_celeb,@MichelleWKwan,RT @DougWilsonABC: https://t.co/G83r1ij9Sb +03/09/2017,Sports_celeb,@MichelleWKwan,RT @TimmyDavidNYC: Happy #InternationalWomensDay @MichelleWKwan #MichelleKwan https://t.co/h0RvO0Jgcm +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @ForbesLife: Michelle Kwan on her storied skating career, The Simpsons and International Women's Day. https://t.co/Nyck3ylYrG https://t.…" +03/08/2017,Sports_celeb,@MichelleWKwan,@LanceWeldy @bowtiebolden @BrianBoitano. Nice work! HBD Lance! +03/08/2017,Sports_celeb,@MichelleWKwan,RT @neeratanden: If you respected women you wouldn't brag about assaulting them. I'm celebrating IWD by protesting you at the WH at noon ht… +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @SpecialOlympics: We only have time for #inclusion. Founded, led & driven by women. #InternationalWomensDay https://t.co/568VS15uO3" +03/08/2017,Sports_celeb,@MichelleWKwan,"RT @USFigureSkating: ""..figure skaters fall all the time. It's the way you pick yourself back up and keep going."" -@MichelleWKwan #GetUp +h…" +03/08/2017,Sports_celeb,@MichelleWKwan,RT @MichaelaRP_13: @MichelleWKwan I did you for my wax museum. Although I didn't live up to your standards it was an honor impersonating yo… +03/04/2017,Sports_celeb,@MichelleWKwan,RT @brhodes: No President can order a wiretap. Those restrictions were put in place to protect citizens from people like you. https://t.co/… +03/02/2017,Sports_celeb,@MichelleWKwan,RT @BarackObama: Humbled to be recognized by a family with a legacy of service. Who's your #ProfileInCourage? Tell me about them: https://t… +03/02/2017,Sports_celeb,@MichelleWKwan,RT @MarkHalperin: NBC News: AG Sessions: 'I Will Recuse Myself' If Necessary https://t.co/X9E1DtbLSS +03/02/2017,Sports_celeb,@MichelleWKwan,RT @joshuaradin: Who's coming? Tag someone who you'd like to bring! https://t.co/RfMFxNN3WM +03/01/2017,Sports_celeb,@MichelleWKwan,Hi @MsMason2nd class! Thank you so much for all your Q's. I started skating at 5 yrs old. I practiced a few times a day/ 7 days a week! 💁🏻 +03/01/2017,Sports_celeb,@MichelleWKwan,Language affects attitude. Attitudes impact action. Make your pledge to choose respectful people first language https://t.co/5s8lmdA7Hq +02/28/2017,Sports_celeb,@MichelleWKwan,"RT @JesseLehrich: this would have serious consequences. + +also, that's $2B – doesn't exactly offset a $54B increase in defense spending htt…" +02/28/2017,Sports_celeb,@MichelleWKwan,"Admirals & generals push back on cutting @StateDept funding - it's ""critical to keeping America safe"" @stavridisj https://t.co/dM9ovuatOU" +02/25/2017,Sports_celeb,@MichelleWKwan,@JSB_TV @LauraOkmin @JayOnrait @fs1otoole @rsuter20 -- good times! #PyeongChang2018? Just saying...💁🏻 +02/23/2017,Sports_celeb,@MichelleWKwan,RT @smithcollege: Olympic medalist and world & U.S. champion figure skater @MichelleWKwan will receive a @SmithCollege honorary degree #Com… +02/22/2017,Sports_celeb,@MichelleWKwan,RT @TimmyDavidNYC: When you just finished work on Wednesdays #HumpDay | @MichelleWKwan #MichelleKwan https://t.co/0ktikQrSx7 +02/20/2017,Sports_celeb,@MichelleWKwan,"RT @ChadHGriffin: This Presidents' Day it's worth remembering the traits of our greatest presidents: Empathy, integrity, humility, honesty,…" +02/20/2017,Sports_celeb,@MichelleWKwan,RT @runforsomething: How to get more women to run for office: https://t.co/7MhamJP2ML +02/20/2017,Sports_celeb,@MichelleWKwan,Happy President's Day @GeorgeTakei 😐 +02/19/2017,Sports_celeb,@MichelleWKwan,"RT @MrsNguyenEbadi: Famous person speeches happened today. ""Guest speakers"" incl Sonia Sotomayor, Honest Abe, and @MichelleWKwan #usdlearns…" +02/19/2017,Sports_celeb,@MichelleWKwan,"RT @TeamUSA: 15 years ago, Flowers​ & Bakken made history! Vonetta Flowers was the first black person to win gold in the #WinterGames! +#Bla…" +02/16/2017,Sports_celeb,@MichelleWKwan,Go @ConstanceWu 👏🏻💃🏻🙋🏻 https://t.co/dxGhm6veRG +02/15/2017,Sports_celeb,@MichelleWKwan,@elinatuomiart @Zendaya @nlyonne @UncleRUSH @missmayim @womensmarch 🙋🏿🙋🏽🙋🏼🙋🏻 +02/15/2017,Sports_celeb,@MichelleWKwan,RT @susan_pola: Since #4ContsFigure begins day #TBT to a special moment - 2001 #GoodwillGames - when @MichelleWKwan skated #BrisbaneIce #… +02/15/2017,Sports_celeb,@MichelleWKwan,RT @shijiuru: AG Sessions: Would you argue that your four Asian-American grandchildren are any less American than your other six? https://… +02/14/2017,Sports_celeb,@MichelleWKwan,"RT @MickyWhiteNV: Planned Parenthood Just Got $1 Million From Billionaire Elaine Wynn. THANK YOU. THANK YOU. THANK YOU!!!! +https://t.co/rf3…" +02/14/2017,Sports_celeb,@MichelleWKwan,"Give love, be love & receive love. https://t.co/yFRHOJlOD0" +02/10/2017,Sports_celeb,@MichelleWKwan,"RT @MuhtarKent: Pleasure having Olympic legend @MichelleWKwan join us in celebrating ""one year out"" from the PyeongChang 2018 Olympic Winte…" +02/09/2017,Sports_celeb,@MichelleWKwan,It's one year out from the Winter @olympics in #pyeongchang2018 - who's excited to cheer on… https://t.co/rL9YMh6kdP +02/05/2017,Sports_celeb,@MichelleWKwan,Pre-Super Bowl fun 💥❄️💥 https://t.co/Leej0cvJiS +02/02/2017,Sports_celeb,@MichelleWKwan,Great to stop by la2024 HQ. I would ❤️️ to see the #cityofangels host the 2024 Olympics! 🙆🏻 @… https://t.co/5RdWYQJNQ1 +02/02/2017,Sports_celeb,@MichelleWKwan,"RT @LA2024: Work hard, be yourself & have fun! + +Thanks to Olympic legend @MichelleWKwan for visiting the #LA2024 office & sharing her #Wedn…" +02/01/2017,Sports_celeb,@MichelleWKwan,"We all fall, it’s how we get up that matters. Join us for National #GetUpDay February 1 and share your Get Up story… https://t.co/ZKPlxhzfG3" +02/01/2017,Sports_celeb,@MichelleWKwan,"RT @SkatingLesson: The amazing @michellewkwan in her @mkblades + +#figureskating #iceskating #lesmiserables #lesmis… https://t.co/Pb13xBqYHC" +01/31/2017,Sports_celeb,@MichelleWKwan,"Friends unite - epic 4 hour lunch 🍴#dinnertime +jeffskoll @musical_wheels @AmySmart26… https://t.co/ecAcCgSL7q" +01/31/2017,Sports_celeb,@MichelleWKwan,"RT @allinoleary: ""I was cleaning out my house & I know you love @MichelleWKwan"" I've trained my colleagues so well! #hmmsma #15years https:…" +01/29/2017,Sports_celeb,@MichelleWKwan,RT @HillaryClinton: I stand with the people gathered across the country tonight defending our values & our Constitution. This is not who we… +01/26/2017,Sports_celeb,@MichelleWKwan,RT @hellogiggles: Your fave figure skater from childhood @MichelleWKwan is a gorgeous yogi goddess now https://t.co/Mhnrgv0KXI https://t.co… +06/01/2018,Sports_celeb,@WayneGretzky,"RT @NHL: The one and only, @WayneGretzky, sits down with Jon Hamm in the latest episode of The Great One on One. + +Watch it here ➡️ https://…" +06/01/2018,Sports_celeb,@WayneGretzky,"RT @NHL: ICYMI: @WayneGretzky's new show, ""The Great One on One,"" debuted yesterday. Give it a watch: https://t.co/HY6s24yQAB https://t.co/…" +05/28/2018,Sports_celeb,@WayneGretzky,"RT @NHL: Taking a team photo on the ice after winning the #StanleyCup has become an annual tradition. + +Like many things hockey, it all star…" +04/08/2018,Sports_celeb,@WayneGretzky,Janet and I have struggled all day with the horrific accident in Saskatchewan. We are so sad for the… https://t.co/4pNp8e6ZbB +03/24/2018,Sports_celeb,@WayneGretzky,It's @CTJumpstart night at the @EdmontonOilers game. Join Jumpstart's #PlayFindsAWay movement & help kids of all ab… https://t.co/dvyDSLKU1E +03/01/2018,Sports_celeb,@WayneGretzky,Check out our new #TeamBioSteel spot and see what @BioSteelSports is to me! https://t.co/drV0SJsdVy +02/28/2018,Sports_celeb,@WayneGretzky,"What's @BioSteelSports to me? Stay tuned for the launch of our new #TeamBioSteel ""What's BioSteel To Me?"" spot! https://t.co/ejKxtdiuTc" +02/22/2018,Sports_celeb,@WayneGretzky,We all play for something greater than ourselves... #WeAllPlayForCanada! 🇨🇦@CanadianTire https://t.co/G38YH0v3HV +02/18/2018,Sports_celeb,@WayneGretzky,"Canadians play for WE, not for ME. It’s what makes me proud to be a part of this country. Good luck @TeamCanada #WeAllPlayForCanada" +02/09/2018,Sports_celeb,@WayneGretzky,I’ve been there before. The pressure can be immense. But the entire country is behind @TeamCanada. And so am I.… https://t.co/6omjKajKrj +01/31/2018,Sports_celeb,@WayneGretzky,Can’t wait to see this light up in all its 24 karat gold-plated glory. Check out these @budcanada limited edition W… https://t.co/VIzznnofx0 +01/19/2018,Sports_celeb,@WayneGretzky,"Had a great time alongside Paul Henderson, @Tessab25, @DaleHawerchuk10, @GHeaney91 and more hockey greats.… https://t.co/cvXTnBa9zz" +12/13/2017,Sports_celeb,@WayneGretzky,Ty's 2018 @GretzkySchool dates! https://t.co/ePCOJ2NTpV https://t.co/QJBm33uz4I +12/13/2017,Sports_celeb,@WayneGretzky,Really enjoying these Champion Shave Razors right now. My blades of choice @championshave #championshave #ad https://t.co/PkM20KtMkA +11/24/2017,Sports_celeb,@WayneGretzky,BioSteel is a standard in our home. https://t.co/XWVsCfpAHw #TeamBioSteel https://t.co/HU91dRJnNh +11/20/2017,Sports_celeb,@WayneGretzky,"RT @georgiaexo: A slice of @WayneGretzky toast a day, will hopefully lead to an NHL star one day. Thanks to @CanadianTire and @CTJumpstart…" +11/20/2017,Sports_celeb,@WayneGretzky,"The Great Toaster, it's probably the greatest toaster of all time. Order today and support @CanadianTire's… https://t.co/eSyG1bEozX" +11/16/2017,Sports_celeb,@WayneGretzky,Make breakfast legendary with The Great Toaster. #GiveAToast @CanadianTire https://t.co/KlljsVn6Rg https://t.co/YItKjKuNAS +11/13/2017,Sports_celeb,@WayneGretzky,Lookout for a legendary addition to breakfast coming soon from @CanadianTire in support of @CTJumpstart. #GiveAToast https://t.co/YqymoCZXlu +10/11/2017,Sports_celeb,@WayneGretzky,Great to see the kids having so much fun at Ty's hockey school this past summer! https://t.co/OS3gOUcFVi +10/04/2017,Sports_celeb,@WayneGretzky,Proud to be the Honorary Chair of the University Hosptial’s Brain Centre Campaign. #UHFBrainCentre https://t.co/HzkgGigVap +09/20/2017,Sports_celeb,@WayneGretzky,Really enjoyed celebrating the launch of @CTJumpstart's #PlayFindsAWay. Every kid should have the chance to play! https://t.co/LqKLx6KZ4R +07/01/2017,Sports_celeb,@WayneGretzky,Happy Canada Day! What a remarkable 150 year history our country has built! #Canada150 🇨🇦 +06/28/2017,Sports_celeb,@WayneGretzky,RT @CanadianTire: You’ve never shone brighter. Happy 150th Canada. #RedAndWhite https://t.co/YmoUpRw3Qu +06/09/2017,Sports_celeb,@WayneGretzky,RT @GretzkyWhisky: A wonderful Grand Opening at the Wayne Gretzky Estates Winery and Distillery in Niagara-on-the-Lake. https://t.co/3xdBiD… +06/09/2017,Sports_celeb,@WayneGretzky,Very proud and excited on the grand opening of the Wayne Gretzky Estates Winery and Distillery in Niagara-on-the-La… https://t.co/L4doSKHsNR +06/06/2017,Sports_celeb,@WayneGretzky,Great time at #StanleyCupFinals in Nashville with @bigandrich and @ChrisYoungMusic. Thanks @NHL https://t.co/mrMyPVTdoM +06/06/2017,Sports_celeb,@WayneGretzky,RT @carrieunderwood: And then this happened... #Smashville @OfficialGretzky https://t.co/uNuCsEBMtO +06/01/2017,Sports_celeb,@WayneGretzky,I support @CanadianTire #JumpstartMonth because every kid deserves a chance to play sports. https://t.co/4zvhOyuwnH +05/23/2017,Sports_celeb,@WayneGretzky,Want to spend your summer at one of the family hockey schools? Sign up today! https://t.co/ePCOJ2NTpV… https://t.co/Pvmo8d8TX7 +03/29/2017,Sports_celeb,@WayneGretzky,YOU'RE NOT ALONE! #DrinkThePink @cmcdavid97 @22wiggins @BrookeHenderson @tseguinofficial @denis_shapo… https://t.co/AuAvZ030Z6 +03/14/2017,Sports_celeb,@WayneGretzky,Proudly supporting #JumpstartNight at the @EdmontonOilers game as a @CTJumpstart ambassador because every kid deser… https://t.co/Dlxc2jxoVX +01/28/2017,Sports_celeb,@WayneGretzky,"RT @NHL: ""The three of us would have been pretty good at 3-on-3"". -@OfficialGretzky https://t.co/6hSQJouOPg" +12/14/2016,Sports_celeb,@WayneGretzky,"RT @EdmontonOilers: RIP to one of the great ones, Alan Thicke. https://t.co/LvlU13s23h" +12/14/2016,Sports_celeb,@WayneGretzky,"Janet & I are deeply saddened to hear of Alan's passing. He was a wonderful man,father,husband and friend.He will be missed by all. RIP Alan" +11/28/2016,Sports_celeb,@WayneGretzky,"RT @PlayersTribune: When did Wayne Gretzky know he'd make it to the NHL? + +It began at the @HC_WJC. #TPTStudioB https://t.co/tCkvZf4gfr" +11/18/2016,Sports_celeb,@WayneGretzky,"I got to present this custom-wrapped #HondaRidgeline for +@Honda. It’s going to the MVP of the #NHLAllStarGame. https://t.co/iUMUcqwpSK" +10/17/2016,Sports_celeb,@WayneGretzky,"Excited to announce the launch of my new book, 99: Stories of the Game! #99storiesofthegame #nhl https://t.co/HTUfkjgaZE" +10/13/2016,Sports_celeb,@WayneGretzky,"RT @EdmontonOilers: ""I'm proud to be back as an Oiler & hope to be part of another Stanley Cup."" Wayne Gretzky on joining #Oilers Entertain…" +10/12/2016,Sports_celeb,@WayneGretzky,Great to officially open my new Wine & Whisky Bar today at Edmonton Airport! https://t.co/yZDAtVQCSr +09/28/2016,Sports_celeb,@WayneGretzky,Thrilled to announce the NHL Centennial here in Toronto! #NHL100 https://t.co/5LeUpmxTu3 +09/27/2016,Sports_celeb,@WayneGretzky,Toronto! I have #WCH2016 tickets I want to personally hand to you. Follow @CanadianTire & #WheresWayne for details. https://t.co/afuEEAc4pe +09/26/2016,Sports_celeb,@WayneGretzky,Found this... Arnie was a special man https://t.co/97LDHR6MfJ +09/26/2016,Sports_celeb,@WayneGretzky,"We lost a great man yesterday. Remembering my friend and one of sports greatest ambassadors. Rest easy, Mr. Palmer. https://t.co/cKV9ABHAiQ" +09/23/2016,Sports_celeb,@WayneGretzky,Toronto! Follow @CanadianTire & #WheresWayne for the chance to meet me Sept 27 and celebrate the #WCH2016 finals! https://t.co/ebmsxaK6nb +08/12/2016,Sports_celeb,@WayneGretzky,RT @CBCOlympics: Sixteen year old @OleksiakPenny is our #StepUpStandTall moment of the day. https://t.co/SnxQaYiZyC @canadiantire https://t… +08/08/2016,Sports_celeb,@WayneGretzky,RT @CBCOlympics: Referees give Navia a 2nd chance in our #StepUpStandTall moment of the day. @CanadianTire https://t.co/PEYMIQovar https://… +08/08/2016,Sports_celeb,@WayneGretzky,RT the #StepUpStandTall Moment of the Day on @CBCOlympics and @CanadianTire will donate $1 to future Olympic stars! https://t.co/g4flTf5V71 +07/01/2016,Sports_celeb,@WayneGretzky,Happy #CanadaDay !! 🇨🇦 +07/01/2016,Sports_celeb,@WayneGretzky,Had a great time in Sydney. Thanks to the @SydneySwans for a crash course in Ausie Rules Football! #ilovesydney https://t.co/hSEmYMu7eW +06/24/2016,Sports_celeb,@WayneGretzky,"Sydney, will I see you at the Ice Hockey Classic on June 25? +For tickets, click here: https://t.co/y8TxSjqfWs https://t.co/F4iG97Ua65" +06/22/2016,Sports_celeb,@WayneGretzky,"Looking forward to visiting Sydney to host the Ice Hockey Classic on June 25! #ilovesydney +https://t.co/y8TxSjHQO0 https://t.co/AMk0l01ANx" +06/21/2016,Sports_celeb,@WayneGretzky,Excited to visit Sydney to host the Ice Hockey Classic USA v Canada on June 25! #ilovesydney https://t.co/y8TxSjHQO0 https://t.co/lRyS0Uk3oO +06/17/2016,Sports_celeb,@WayneGretzky,"To my first teammate, my first coach and a true great one- Happy Father's Day, Dad. +https://t.co/fc9Hs5bMdw" +06/10/2016,Sports_celeb,@WayneGretzky,"RT @TIME: Wayne Gretzky remembers Gordie Howe: ""He was the nicest man I've ever met"" https://t.co/49H03RYIWw" +06/10/2016,Sports_celeb,@WayneGretzky,Sending our thoughts and prayers to the Howe family and to the millions of hockey fans who like me loved Gordie Howe. RIP Mr. Hockey. (2/2) +06/10/2016,Sports_celeb,@WayneGretzky,"Unfortunately we lost the greatest hockey player ever today, but more importantly the nicest man I have ever met. (1/2)" +06/06/2016,Sports_celeb,@WayneGretzky,This Father's Day it's all about our great dads! Here's to the #greatones https://t.co/fc9Hs4UaOW +06/06/2016,Sports_celeb,@WayneGretzky,RT @PutnamBooks: Watching the #StanleyCupFinal? Preorder 99: STORIES OF THE GAME & look inside @OfficialGretzky's playoff experience: https… +06/05/2016,Sports_celeb,@WayneGretzky,The Greatest.... RIP https://t.co/Ya1pgTpDIe +04/07/2016,Sports_celeb,@WayneGretzky,"RT @ForTheWin: Exclusive: See the jacket for Wayne Gretzky's upcoming biography, '99: Stories of the Game' https://t.co/JUPy1r1b6s" +04/07/2016,Sports_celeb,@WayneGretzky,"RT @Globe_Sports: In October, Gretzky on hockey's greatest moments, #99Stories of the Game: cover & interview https://t.co/7D1W1CaJ5v https…" +03/29/2016,Sports_celeb,@WayneGretzky,Good Luck to @HC_Women and @wick_22 at the Women's World Hockey Championship in Kamloops. #HockeyIsHockey #WomensWorlds +03/26/2016,Sports_celeb,@WayneGretzky,Great night with @justinbieber in Vegas. Glad you liked the jersey! #thepurposetour #gretzkyfantasycamp2016 https://t.co/gQhGFgnTpb +02/26/2016,Sports_celeb,@WayneGretzky,I was the first Canadian to add my name to Canada's Goal Light. You can add your name at Budweiser.ca #lightthelamp https://t.co/4xYioCkfvX +02/25/2016,Sports_celeb,@WayneGretzky,See you tomorrow Canada's Goal Light and @OfficialWPHC. You can #lightthelamp too at Budweiser.ca https://t.co/wvoG0o019h +01/20/2016,Sports_celeb,@WayneGretzky,"Sat down w/@buck & shared my story on @undeniableshow. See it tonight @8pm +on @audiencenetwork https://t.co/CvjzOo8WOc" +12/07/2015,Sports_celeb,@WayneGretzky,"Thank you Hometown Hockey for coming to Brantford. To see our entire visit, please visit https://t.co/EWn1QOniLJ https://t.co/cy9p5Dg5gO" +12/03/2015,Sports_celeb,@WayneGretzky,"This is my office, behind the net. From here, I've always seen hockey's beauty #WeAllPlay @CanadianTire https://t.co/p3XqBGkE10" +11/20/2015,Sports_celeb,@WayneGretzky,"It’s not just me…@SethRogen doesn’t know any athletes! Enjoy #TheNightBefore, in theaters today. https://t.co/uMp96UdSgh" +11/17/2015,Sports_celeb,@WayneGretzky,And @Sethrogen calls himself a Canadian? #TheNightBefore https://t.co/EHp9mbL9H4 +09/25/2015,Sports_celeb,@WayneGretzky,RT @EdmontonOilers: Happy birthday to #Oilers icon Joey Moss! 🎂 http://t.co/81BIyCxovV +09/23/2015,Sports_celeb,@WayneGretzky,Not to worry @SpursOfficial It happens all the time! +09/19/2015,Sports_celeb,@WayneGretzky,I love surprising fans! @CanadianTire and I are teaming up to get Canadians active. #WannaPlay? https://t.co/mFvtCU3b7t +07/28/2015,Sports_celeb,@WayneGretzky,"@Canuckgirl462 in Las Vegas March 20-26, 2016" +07/28/2015,Sports_celeb,@WayneGretzky,Ever dreamed of being passed to by 99? Only a few spots remain for Gretzky Fantasy Camp 2016. https://t.co/mgn565kMIu +07/01/2015,Sports_celeb,@WayneGretzky,It’s an honor to be a Canadian. Happy Canada Day! https://t.co/4XGGuGHRV6 +07/01/2015,Sports_celeb,@WayneGretzky,"Thank you, @GretzkyFacts ! Happy Canada Day! https://t.co/a5rtsv4ry7" +04/07/2015,Sports_celeb,@WayneGretzky,"RT @TheJetGuy: On the way to Augusta with a great crew and The Great One @OfficialGretzky +#Masters http://t.co/AgUGvsU8wp" +03/25/2015,Sports_celeb,@WayneGretzky,"Gretzky Fantasy Camper Shaun Ayotte recaps his week in Vegas. Check it out! +http://t.co/UA6YZZxzEI" +03/23/2015,Sports_celeb,@WayneGretzky,#GretzkyCamp signed puck winners: @miniamy411 @chcarlson23 @Matt_Mack9 @edrisch @ovie08 @PfefferFeff @cjohnsonss. Check DMs to claim a puck. +03/23/2015,Sports_celeb,@WayneGretzky,RT this tweet for a chance to win a signed puck from #GretzkyCamp. Winners announced later today. Any takers? http://t.co/9vBBFa18y7 +03/19/2015,Sports_celeb,@WayneGretzky,"Wayne Gretzky Fantasy Camp alum, Brian Ehrenworth of Frameworth showcasing all 13 Fantasy Camp jerseys! http://t.co/nljn9LYZFh" +03/13/2015,Sports_celeb,@WayneGretzky,Another #GretzkyCamp done. Thank you to those who came and those worked to make it happen! Let's do it again soon. http://t.co/O8H6R5CvXF +03/13/2015,Sports_celeb,@WayneGretzky,"I sat down with @EJHradek_NHL to talk about #GretzkyCamp and my idol, Gordie Howe. http://t.co/uTOW2libCt" +03/12/2015,Sports_celeb,@WayneGretzky,RT @EdmontonOilers: @OfficialGretzky That coaching staff! 🙌 +03/12/2015,Sports_celeb,@WayneGretzky,The 2015 #GretzkyCamp champions! 🏆 http://t.co/H1JJefSSGg +03/12/2015,Sports_celeb,@WayneGretzky,RT @NHLNetwork: In the company of hockey greats today. More to come on NHL Live from #GretzkyCamp. http://t.co/UfjiXbzXCc +03/12/2015,Sports_celeb,@WayneGretzky,"Make sure you get my good side, @NHLNetwork! #GretzkyCamp http://t.co/kwg68I7ebo" +03/12/2015,Sports_celeb,@WayneGretzky,RT @NHLNetwork: Just getting @OfficialGretzky mic'ed up to talk #GretzkyCamp. Videos to come so enjoy these photos until then. http://t.co/… +03/11/2015,Sports_celeb,@WayneGretzky,Drop the puck! #GretzkyCamp http://t.co/JyMlfOAGD5 +03/11/2015,Sports_celeb,@WayneGretzky,"Hey, can I join this group photo? #GretzkyCamp http://t.co/p2iFg5HAdF" +03/11/2015,Sports_celeb,@WayneGretzky,"@stillvhfan Hope to see you at a future Camp, Corey. You can find details here: https://t.co/RSWDlt70lr" +03/11/2015,Sports_celeb,@WayneGretzky,"@Meowmixery Thanks Katja, glad you're such a fan!" +03/11/2015,Sports_celeb,@WayneGretzky,RT @NHL: #GretzkyCamp member Mark Rubin tells us what it's like to play with @OfficialGretzky & McSorley on ice next to him. http://t.co/1L… +03/10/2015,Sports_celeb,@WayneGretzky,Great practice with the camp attendees. Looking forward to playing with this group in tomorrow's games. #GretzkyCamp http://t.co/J0lOXM7E5O +03/10/2015,Sports_celeb,@WayneGretzky,In Las Vegas for the 2015 #GretzkyCamp this week. Ready to get back on the ice! http://t.co/jqCY15ehut +01/13/2015,Sports_celeb,@WayneGretzky,"Are you attending the 2015 Wayne Gretzky Fantasy Camp? If so, a special delivery is coming your way! http://t.co/g9IZZVPCWh" +12/01/2014,Sports_celeb,@WayneGretzky,"RT @TD_Canada: If you had 24 hours to #MakeTodayMatter, what would you do? What these people did is truly inspiring: http://t.co/OWJUwgdsym" +11/10/2014,Sports_celeb,@WayneGretzky,So proud of my son Ty who just opened up registration to his Gretzky Hockey School. Learn more http://t.co/JmxCWghC1Y http://t.co/lDNdqTLib8 +08/21/2014,Sports_celeb,@WayneGretzky,RT @NHL: .@OfficialGretzky hopes that 1984 crew can 'rub off' on current @EdmontonOilers group. Read: http://t.co/LLIQAVGKU0 http://t.co/Mp… +07/22/2014,Sports_celeb,@WayneGretzky,Team Gretzky is happy to announce registration for Fantasy Camp XIII is now open. Click here to register today: https://t.co/WzndN2R1GY +07/10/2014,Sports_celeb,@WayneGretzky,Still a few spots left for the Gretzky Hockey School July 27th - August 1st. Register at http://t.co/WDoJ1riuJK +06/19/2014,Sports_celeb,@WayneGretzky,"RT @GretzkySchool: Tune in to @NHLNetwork today at 5:30 pm EST, Ty and Wayne will be on to talk Gretzky Hockey School!!! http://t.co/nNrkM7…" +05/30/2014,Sports_celeb,@WayneGretzky,RT @GretzkySchool: Join us and have your kid learn from Mark Ciaccio at our school this summer. Register now at http://t.co/6C50BWVbR9 http… +05/22/2014,Sports_celeb,@WayneGretzky,Proud of my son Ty who launched the Gretzky Hockey School. Learn more: http://t.co/WDoJ1riuJK http://t.co/oy3IfFVqNq +05/20/2014,Sports_celeb,@WayneGretzky,"Space is very limited so don't miss out on this amazing experience! + +Register now at: +http://t.co/WDoJ1riuJK" +05/20/2014,Sports_celeb,@WayneGretzky,Welcome to the Gretzky Hockey School! We're excited to announce registration opens today! http://t.co/5eylWLqoem +03/12/2014,Sports_celeb,@WayneGretzky,RT @NHL: ICYMI - @OfficialGretzky answered some fan Q&A on our Vine earlier today from #GretzkyCamp. Highlights: http://t.co/Beg4TZDzrB +03/12/2014,Sports_celeb,@WayneGretzky,RT @NHL: Bobby Hull got to complete the one thing left to do on his hockey bucket list. Watch to see what it was: http://t.co/7VnHd8RFMn #G… +03/12/2014,Sports_celeb,@WayneGretzky,Now I get to watch my good friend @Cujo on @NHLNetwork. #GretzkyCamp http://t.co/Kv6NVVOjT4 +03/12/2014,Sports_celeb,@WayneGretzky,Thanks for your #GretzkyCamp questions everyone. I enjoyed answering them in 6 seconds on @nhl Vine. +03/12/2014,Sports_celeb,@WayneGretzky,"RT @NHL: Yesterday we tweeted asking what you would ask @OfficialGretzky if you had a chance to do so. Today, he has answers. http://t.co/G…" +03/12/2014,Sports_celeb,@WayneGretzky,Spending some time with @EJHradek_NHL and @NHLNetwork this morning. #GretzkyCamp http://t.co/FObM98z2NJ +03/11/2014,Sports_celeb,@WayneGretzky,First assist at #GretzkyCamp. Great group of guys this year. Looking forward to more games with everyone this week. http://t.co/xJeFXsbjCf +03/11/2014,Sports_celeb,@WayneGretzky,"RT @NHL: If you were a fantasy camper skating with @OfficialGretzky this week, what would you ask him? Tweet your question using #GretzkyCa…" +03/11/2014,Sports_celeb,@WayneGretzky,"RT @NHL: Sharpen those skates, put the 99 decals on helmets, @OfficialGretzky Camp is underway this week. https://t.co/6IFm5Mai9g #GretzkyC…" +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: RT @ejhradek_nhl: Another tough assignment. Headed out to Las Vegas 4 the #GretzkyCamp. Can't wait to get back into some nice weat… +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: SNEAK PEEK LOOK: One camper will be vlogging his #GretzkyCamp experience throughout the week with @NHLNetwork. http://t.co/4KsA9zY… +03/11/2014,Sports_celeb,@WayneGretzky,RT @NHL: Getting scouted by Walter Gretzky (@OfficialGretzky's dad) is not a bad way to start off #GretzkyCamp. https://t.co/nsOt25D67X +03/05/2014,Sports_celeb,@WayneGretzky,Good Luck @adurkin7 and his Xaverian HS teammates tonight in the Massachusetts State Championship! +02/14/2014,Sports_celeb,@WayneGretzky,Getting ready for Fantasy Camp! Great day with @KidRock http://t.co/4oOv0QGswV +07/16/2013,Sports_celeb,@WayneGretzky,Register for Wayne Gretzky's Fantasy Camp by clicking here: http://t.co/i5lecoUImc +07/16/2013,Sports_celeb,@WayneGretzky,"Registration for the Wayne Gretzky Fantasy Camp XII is officially open! Camp will be taking place March 9-14, 2014 in Las Vegas." +03/05/2013,Sports_celeb,@WayneGretzky,@OfficialGretzky is excited to partner with @FrameworthSport for an upcoming Private Signing & Exclusive Evening! http://t.co/K2JqdH2uza +02/25/2013,Sports_celeb,@WayneGretzky,Great morning with the Greater New York City Ice Hockey League and @TDBank_US http://t.co/PpH3m7U0qD +02/25/2013,Sports_celeb,@WayneGretzky,RT @TDBank_US: Our good friend Wayne Gretzky is spending the morning playing hockey with kids who lost their equipment due to #Sandy htt ... +02/06/2013,Sports_celeb,@WayneGretzky,"RT @DJohnsonPGA: RT “@TaylorMadeGolf: Take it from @DJohnsonPGA and The Great One, who are teaming up this week @attproam. #onebucket ht ..." +01/28/2013,Sports_celeb,@WayneGretzky,Hey @Panger40 We are missing you at Fantasy Camp. This year we pay tribute to @StLouisBlues http://t.co/Y7Dlizys +01/27/2013,Sports_celeb,@WayneGretzky,Today is Wayne Gretzky's birthday. Tomorrow is the start of Fantasy Camp XI. Let's drop the puck! http://t.co/cqFwA0pi +01/22/2013,Sports_celeb,@WayneGretzky,"Mike Keenan has a brand new documentary coming out. Check out the doc on Fantasy Camp coach Iron Mike! +http://t.co/lX2MW2ui" +01/20/2013,Sports_celeb,@WayneGretzky,"Check out the new promo video for Wayne Gretzky's Fantasy Camp in Las Vegas +http://t.co/kevxiR7d" +01/18/2013,Sports_celeb,@WayneGretzky,Marty McSorley is coming back to Fantasy Camp XI. Come hang with Marty and friends in Vegas on http://t.co/dbc1K6XZ http://t.co/uB6HPFAr +01/17/2013,Sports_celeb,@WayneGretzky,Fantasy Camp goalie Don Ducasse returns to battle for the Gretzky Cup. Tune in at http://t.co/TQKhXPc2 http://t.co/8NzBdBp4 +01/15/2013,Sports_celeb,@WayneGretzky,Brett Hull is coming to Fantasy Camp XI. To find out who else is joining Wayne in Vegas visit http://t.co/dbc1K6XZ http://t.co/KKc0aYQI +01/14/2013,Sports_celeb,@WayneGretzky,Fantasy Camp XI is coming. Stay tuned for exciting announcements and all the news from Las Vegas. http://t.co/x41U6oZp +11/13/2012,Sports_celeb,@WayneGretzky,I’m ready to play #Kinect with a few lucky fans on 11/16 at the new @MicrosoftStore location in #Toronto! +10/17/2012,Sports_celeb,@WayneGretzky,I’m playing #Kinect with a few lucky fans at the new @MicrosoftStore opening in #Toronto on 11/16! See you there! +08/28/2012,Sports_celeb,@WayneGretzky,Celebrate the silver anniversary of when Canada won GOLD at 1987 Canada Cup at Wayne Gretzkys Toronto Weds August 29th from 2 p.m. - 7 p.m. +08/18/2012,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Calling all hockey fans! Relive the magic of the '87 & '91 Canada Cup August 29th 2-7pm at Wayne Gretzkys Toronto - ... +07/06/2012,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: Click here for a chance to bid on a foursome in the SOLD OUT Walter Gretzky CNIB Golf Classic (July 10th, 2012) - http:/ ..." +06/01/2012,Sports_celeb,@WayneGretzky,Want to watch game four of the Stanley Cup Finals at a private party with Wayne Gretzky in LA? Click here: http://t.co/mFZLsOFg +05/17/2012,Sports_celeb,@WayneGretzky,To get yours text DGWayne to 95323 (US only) or visit http://t.co/mUjMiGxf @digigraphme http://t.co/E0EoWp1A +05/17/2012,Sports_celeb,@WayneGretzky,99 is excited to announce his partnership with Digigraph.Me. http://t.co/x5mtcAX5 +05/05/2012,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Working alongside The Great One @OfficialGretzky at @WayneGretzkysTO #Toronto - http://t.co/3LJbFeu5 +04/14/2012,Sports_celeb,@WayneGretzky,"@stephgloria talks with Walter at the launch of Walter Gretzky Elementary School in Brantford, ON. http://t.co/qsVKj5eT" +04/12/2012,Sports_celeb,@WayneGretzky,@OrlaLawrie hosted @TSN1050Radio and @strombo at Wayne Gretzky's before the @BlueJays home opener. Check out the photos on facebook +04/12/2012,Sports_celeb,@WayneGretzky,TSN Radio live from Wayne Gretzky's photos up online now! http://t.co/lvxIgrM5 +04/05/2012,Sports_celeb,@WayneGretzky,"Join TSN 1050's Cybulski & Company LIVE from Wayne Gretzky's Restaurant Monday April 9, 2012 from 4p.m - 7 p.m! http://t.co/oLMiYnnK" +03/21/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky to host the 5th and final episode of Tennis Channel's 100 Greatest of All-Time March 23rd @ 7pm EST on Tennis Channel. +03/01/2012,Sports_celeb,@WayneGretzky,"RT @hnicradio: The great one @OfficialGretzky joined @GordStellick & @kellyhrudey on @hnicradio Sirius 157 for hockey talk & laughs +http ..." +02/29/2012,Sports_celeb,@WayneGretzky,RT @hockeynight: Wayne Gretzky joins Gord Stellick & Kelly Hrudey at 3:15 pm ET on HNIC Radio on Sirius 157 http://t.co/rLynRsNA #CBCSpo ... +02/25/2012,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: March 7th @AJSportsWorld will pick one lucky follower to win a personalized @28CGiroux 8x10 photo! Follow & RT @AJS ... +02/24/2012,Sports_celeb,@WayneGretzky,"RT @NHL_Oilers: 30 years ago today, #Oilers Wayne Gretzky scored his record-breaking 77th goal of the season and we've got the video > ..." +02/13/2012,Sports_celeb,@WayneGretzky,All the videos and pictures of Fantasy Camp X available on Gretzky's official facebook page http://t.co/Y7DpQ9zm +02/12/2012,Sports_celeb,@WayneGretzky,RT @NHL: Derek Mori has been attending Gretzky's Fantasy Camp since '06 & is back for a 7th straight year. Check out his blog: http://t. ... +02/11/2012,Sports_celeb,@WayneGretzky,Fantasy Camp X begins live streaming today at 1pmPST. Watch Wayne play against his son Ty at http://t.co/ZwKyPL8E +02/11/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky and Brett Hull wearing a @NHLBlackhawks jersey. More available on http://t.co/XT3UCcpm http://t.co/pgCVWm9h +02/10/2012,Sports_celeb,@WayneGretzky,"Wayne Gretzky, Rick Tocchet and Brett and Bobby Hull mingle with Fantasy Campers at the Bellagio in Las Vegas http://t.co/SP4vUY6H" +02/10/2012,Sports_celeb,@WayneGretzky,Live streaming Gretzky Fantasy Camp X at 3pmPST only at http://t.co/ZwKyPL8E http://t.co/6RDzMllA +02/10/2012,Sports_celeb,@WayneGretzky,RT @NHL: Gretzky likes what he sees in his former franchises. http://t.co/aRZU0Jys #Oilers #NYR #STLBlues #LAKings +02/09/2012,Sports_celeb,@WayneGretzky,Thanks as always to @Panger40 for all the retweets. We are missing you out here at Fantasy Camp X. Hope you're lovin' the Hawks unis +02/09/2012,Sports_celeb,@WayneGretzky,Use #gretzkycamp to drop comments during the broadcast and we'll read them on air +02/09/2012,Sports_celeb,@WayneGretzky,Wayne Gretzky takes the ice at 12pmPST. Watch live at http://t.co/ZwKyPL8E +02/09/2012,Sports_celeb,@WayneGretzky,Fantasy Camp X teams have been posted! See where your favorite pros are playing. Visit http://t.co/XT3UCcpm for updates http://t.co/fCSYulsf +02/09/2012,Sports_celeb,@WayneGretzky,Live streaming of the Fantasy Camp X rosters at http://t.co/XT3UCcpm at 7pmPST 10pmEST +02/08/2012,Sports_celeb,@WayneGretzky,@31_cujo and @Jeremy_Roenick will be featured at Fantasy Camp X so visit http://t.co/XT3UCcpm for updates and interviews +02/06/2012,Sports_celeb,@WayneGretzky,Curtis Joseph and Jeremy Roenick will be at Fantasy Camp X in Vegas. Will you? Follow along at http://t.co/XT3UCcpm +02/03/2012,Sports_celeb,@WayneGretzky,@OrlaLawrie speaks with @Proteautype about his new book 'Fighting The Good Fight' only on http://t.co/XT3UCcpm +02/02/2012,Sports_celeb,@WayneGretzky,"Denis Savard and Rick Tocchet will join Marty McSorley, Brett Hull and Wayne Gretzky in Vegas. Who's next? Stay tuned http://t.co/XT3UCcpm" +01/23/2012,Sports_celeb,@WayneGretzky,Marty McSorley joins Wayne and Brett Hull on the Fantasy Camp X all-star team. Who would you like to see there? http://t.co/XT3UCcpm +01/13/2012,Sports_celeb,@WayneGretzky,Brett Hull going to Fantasy Camp X! Your last chance to sign up to skate with Wayne. Visit http://t.co/lX4MFlXW +12/20/2011,Sports_celeb,@WayneGretzky,@HumbleFredRadio and @OrlaLawrie will be live at Gretzky's December 21 from 6-8pm. Drop by or watch on http://t.co/CF6J4jAd. See you there. +12/20/2011,Sports_celeb,@WayneGretzky,RT @HumbleFredRadio: RT @HumHow: @sharcar19 There is a Z in Gretsky's and there will be a Humble and Fred in there as well on the 21st f ... +11/22/2011,Sports_celeb,@WayneGretzky,"@OrlaLawrie is talking with some hockey legends and writing up their interviews on http://t.co/SNITCJFi, please check it out!" +08/22/2011,Sports_celeb,@WayneGretzky,RT @AJSportsWorld: #ICanHonestlySay we love doing giveaways!...Only 1 week till we give away personalized @pksubban1 8x10 photo 2 one fo ... +08/18/2011,Sports_celeb,@WayneGretzky,WG Authentic and Pro Am Sports present a Wayne Gretzky private signing. Visit Gretzky.com for more details. +08/02/2011,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: #thereisalwaysthat1person that likes giving stuff away! Follow @ajsportsworld who's giving away a @joeybats19 autog ... +07/08/2011,Sports_celeb,@WayneGretzky,RT @JoshRimerHockey: also...check out my one on one interview with former Winnipeg Jets Goalie Joe Daley!! http://t.co/TNgCsSx #NHL #win ... +07/04/2011,Sports_celeb,@WayneGretzky,"There is still time to sign up for the 19th Annual Walter Gretzky CNIB Celbrity Golf Classic in Brantford, ON. http://t.co/al4xyED" +06/20/2011,Sports_celeb,@WayneGretzky,"Workout? Play golf? Just like to look good? Stay tuned 99 fans, exciting new apparel coming soon to gretzky.com!" +06/16/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: #Hurricanes (@nhl_canes) Jay Harrison coming up on the PP Show LIVE from #Gretzkys!! +06/16/2011,Sports_celeb,@WayneGretzky,"RT @LAKings: Today in #LAKings history, 1994: Wayne Gretzky won his TENTH Art Ross Trophy for leading the league in scoring http://ow.ly ..." +06/15/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: Brian Leetch, Bill Clement, Michael Buble and more coming up on today’s PP show LIVE from #Gretzkys (4-6pm) on @XMHomeIc ..." +06/13/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Senior VP/Director of Hockey Operations for the #Leafs and former #Canucks GM Dave Nonis will be at #Gretzkys tomorrow a ... +06/13/2011,Sports_celeb,@WayneGretzky,RT @NHLAlumni: (1979) Wayne Gretzky was claimed as a priority selection by the Oilers at the NHL Expansion Draft in MTL. #luccckkkyyyy # ... +06/13/2011,Sports_celeb,@WayneGretzky,http://t.co/15Kqf6l Groin injuries are among the most common injuries seen in hockey. 3D Lunge Stretch videos from HockeyOT.com can help +06/11/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: On todays LFWG radio show (4-6PM) TSN's Rod Black alongside Jeff Rimer.Guests include Kerry Fraser,Ed Olczyk,Pat Quinn,K ..." +06/07/2011,Sports_celeb,@WayneGretzky,RT @Panger40: Congrats to Trevor Gretzky- drafted by Chicago Cubs ! +06/07/2011,Sports_celeb,@WayneGretzky,Here is a great dryland training tip to improve your lateral agility provided by our friends @hockeyot http://www.facebook.com/gretzkydotcom +06/04/2011,Sports_celeb,@WayneGretzky,"RT @JoshRimerHockey: Great show 2day! On LFWG Hosts Rod Black & Rick Tocchet speak w/ Wayne Gretzky, @David_Boreanaz, Mark Chipman, @MCa ..." +06/04/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Now on the LFWG radio show Wayne Gretzky! Coming up #Canadiens Mike Cammalleri (@MCammalleri13) LIVE at #Gretzkys..... +06/04/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Stop by the Live from Wayne #Gretzkys radio show this Saturday between 4-6pm to meet former NHL'er Rick Tocchet! +06/03/2011,Sports_celeb,@WayneGretzky,"Visit http://www.facebook.com/gretzkydotcom and learn about Dr. Chad Moreau from HockeyOT.com or try +http://hockeyot.go2cloud.org/SHT" +06/01/2011,Sports_celeb,@WayneGretzky,"If you want to reach 100% of your potential, you need to train with HockeyOT.com. For more info visit http://hockeyot.go2cloud.org/SHR" +06/01/2011,Sports_celeb,@WayneGretzky,"Gretzky Digital is proud to partner with HockeyOT, the most comprehensive, personalized dry-land training program on the web." +05/28/2011,Sports_celeb,@WayneGretzky,RT @Badamsfan: @OfficialGretzky School in Wayne's hometown to be named for his father. http://brantfordexpositor.ca/ArticleDisplay.aspx ... +05/26/2011,Sports_celeb,@WayneGretzky,"RT @OrlaLawrie: On today's PPS LIVE from #Gretzkys Scott Laughlin alongside @sportsnetbroph.Guests include #Islanders Kyle Okposo, Doug ..." +05/12/2011,Sports_celeb,@WayneGretzky,Great Ones Of Classical Music: Marvin Hamlisch interviews Placido Domingo live on Facebook. Friday 2pmET. http://on.fb.me/jW4pp1 +05/07/2011,Sports_celeb,@WayneGretzky,RT @OrlaLawrie: Stop by the Live From#Gretzkys Radio Show before 6 today for your chance to win an autographed John Tavares World Junior ... +06/27/2018,Sports_celeb,@MartinBrodeur,Thank you everyone for the kind words! Honored to be joining the @HockeyHallFame! https://t.co/Uhium2dvxo +05/29/2018,Sports_celeb,@MartinBrodeur,RT @UOttawaMHockey: Best of luck to Gee-Gees goaltender Anthony Brodeur (@abrodeur30) and the @geegees_mgolf team as they open the 2018 Can… +05/02/2018,Sports_celeb,@MartinBrodeur,RT @SBurkie1: Great group to golf with on a day off in Riga Latvia @HC_Men @SAMMYSAYS2010 @MartinBrodeur @BobMartin6201 https://t.co/ASyu64… +04/07/2018,Sports_celeb,@MartinBrodeur,RT @SAMMYSAYS2010: Anyone who who has played or has a child that has chased their dreams while riding a bus in Jr Hockey shares in the deva… +03/15/2018,Sports_celeb,@MartinBrodeur,Happy 16th Birthday @AnabelleBrodeur! Love you! https://t.co/ahITPj5zc7 +02/27/2018,Sports_celeb,@MartinBrodeur,"RT @sjbarracuda: The #SJBarracuda have signed Goaltender @JBrodeur30 to a PTO from the @AllenAmericans. + +🗞: https://t.co/8PHwC3cz4Y https:/…" +02/25/2018,Sports_celeb,@MartinBrodeur,Congrats to my longtime teammate and friend @pelias on his jersey retirement night! Happy that 26 and 30 will alway… https://t.co/uPwjitKZ0m +02/24/2018,Sports_celeb,@MartinBrodeur,RT @HockeyCanada: Congratulations @HC_Men! Bring that bronze home.🥉#BelieveWeCAN https://t.co/3Hp088mWWE +02/01/2018,Sports_celeb,@MartinBrodeur,RT @AnabelleBrodeur: #oksroyals https://t.co/Rrkk2MlEEv +01/31/2018,Sports_celeb,@MartinBrodeur,#BellLetsTalk +11/02/2017,Sports_celeb,@MartinBrodeur,RT @AllenAmericans: BRODEUR SAYS NO x3! https://t.co/1GvaXogl6q +09/29/2017,Sports_celeb,@MartinBrodeur,"RT @Oshawa_Generals: Gens Fans! We have @JBrodeur30's 80th season game worn goalie pads up for auction! 🥅 + +Link below to place your bid ⬇ +h…" +06/01/2017,Sports_celeb,@MartinBrodeur,RT @Panger40: @MiuraGolfInc Holy Jumpin! This driver looks perfect! @Series1957 @MartinBrodeur @ScottieUpshall https://t.co/J9Ljg1HxLV +05/22/2017,Sports_celeb,@MartinBrodeur,"All the best to Ariel Gold @itsarielgold, your mother will always be with you in your heart. +https://t.co/UZh632F1Ln https://t.co/S4xG38kKFW" +05/09/2017,Sports_celeb,@MartinBrodeur,"RT @MiuraGolfInc: PP-9005 Genesis, 3 piece construction, soft carbon head, carpenter steel face, spin forged hosel. #DiscoverPerfection #Mi…" +04/28/2017,Sports_celeb,@MartinBrodeur,"RT @ToledoWalleye: We've added G Jeremy Brodeur, son of legendary goalie Martin Brodeur, on an ATO. He will backup Lerg this weekend: https…" +04/17/2017,Sports_celeb,@MartinBrodeur,Proud of you !!! https://t.co/eo1WBZiFGb +03/31/2017,Sports_celeb,@MartinBrodeur,Congratulations to my long time teammate and friend Patrik Elias on his Retirement. Can’t wait to see #26 joining 4… https://t.co/JG7OgLqN21 +03/21/2017,Sports_celeb,@MartinBrodeur,"RT @GoalieVoices: Posts, crossbars and perfect angles. No big deal, right @Panger40 and @BrianBoucher33 @KellyHrudey" +02/18/2017,Sports_celeb,@MartinBrodeur,"RT @GeneralsUpdates: In case you missed @JBrodeur30 going 14/14 in the shootout last night, here are all the #67s attempts in a row https:/…" +02/13/2017,Sports_celeb,@MartinBrodeur,RT @UOttawaMHockey: Here's an absolutely ridiculous save from #HorseHockey goaltender Anthony Brodeur (@abrodeur30) this weekend in Sudbury… +01/25/2017,Sports_celeb,@MartinBrodeur,#BellLetsTalk +12/25/2016,Sports_celeb,@MartinBrodeur,Merry xmas everyone!!!My daughter doesn't think I can get 1000 favorites. Help me out please!!!!! https://t.co/1aHtQ5M41n +10/07/2016,Sports_celeb,@MartinBrodeur,"RT @GeeGeesMHockey: Gameday | Coach Grandmaitre has announced Anthony Brodeur as tonight's starter. + +2015-16: 1.99, .931 w/@PentictonVees.…" +07/13/2016,Sports_celeb,@MartinBrodeur,RT @TheRealDpan: @BarDown what a clown +06/10/2016,Sports_celeb,@MartinBrodeur,"We lost a legend of the game today. Mr. Howe will be missed. Condolences to the Howe Family. +Photo: Denis Brodeur Sr https://t.co/Ojkf0jORkG" +06/08/2016,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30!! https://t.co/GjCCvsLvwl +05/05/2016,Sports_celeb,@MartinBrodeur,RT @GeeGeesMHockey: RECRUIT: uOttawa m-hockey is proud to announce the commitment of goalie Anthony Brodeur (@abrodeur30). #HorseHockey htt… +04/27/2016,Sports_celeb,@MartinBrodeur,"I'm excited to be new member of @eligoclub! +Thank you @pgamazz!" +03/14/2016,Sports_celeb,@MartinBrodeur,Happy Birthday to my favorite daughter @AnabelleBrodeur! https://t.co/0T8Naaw2gu +02/06/2016,Sports_celeb,@MartinBrodeur,Excited to be back in NJ for the week! +01/27/2016,Sports_celeb,@MartinBrodeur,#BellLetsTalk +11/23/2015,Sports_celeb,@MartinBrodeur,Happy Birthday Maxime!! https://t.co/UbLfy4VRnZ +10/06/2015,Sports_celeb,@MartinBrodeur,"Thank you to the @nhldevils organization and the fans for all of the support! I am very honored to join 3, 4, and 27!" +08/26/2015,Sports_celeb,@MartinBrodeur,Happy #NationalDogDay! http://t.co/r16Ji9HKEh +08/02/2015,Sports_celeb,@MartinBrodeur,RT @Panger40: And Why Wouldn't we? The Gateway to the West would be perfect host! https://t.co/fypwuQIb8s +07/17/2015,Sports_celeb,@MartinBrodeur,Having a great time on the golf course with Ozzie Smith and Andruw Jones at the 2015 @ACChampionship http://t.co/KAsEZlSlBR +07/03/2015,Sports_celeb,@MartinBrodeur,Congrats to @mstlouis_26 on a great career! +06/09/2015,Sports_celeb,@MartinBrodeur,RT @lindsayberra: @MartinBrodeur Please tweet to help us to 100K signatures for Gramp's Medal of Freedom petition! Deadline tonight! http:… +06/08/2015,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30!! http://t.co/9bGTz5zWiD +06/01/2015,Sports_celeb,@MartinBrodeur,Congrats to the @Oshawa_Generals on winning the #MemorialCup!!! +05/31/2015,Sports_celeb,@MartinBrodeur,Best of luck to the @Oshawa_Generals in the #MemorialCup +05/29/2015,Sports_celeb,@MartinBrodeur,Congrats to William on his graduation! @Ultimate_WillB http://t.co/wB59kuyS4S +05/20/2015,Sports_celeb,@MartinBrodeur,Congrats to David @Letterman on an amazing career! Photo on set from 2000. http://t.co/GbXvexM1FE +05/16/2015,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 and the @Oshawa_Generals on winning the #OHL Championship! Good luck in the Memorial Cup! http://t.co/97j36kdki8 +05/06/2015,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Happy birthday @MartinBrodeur ! Love you Dad! +05/05/2015,Sports_celeb,@MartinBrodeur,"Stanley & Vez are participating in #GiveSTLDay to support @A4A_org! +Help support by donating:http://t.co/4YI1ESNdOR http://t.co/Oq3hVUzGP4" +05/03/2015,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 and the @Oshawa_Generals on winning the Eastern Conference Finals! Good luck in the Finals! http://t.co/mXOusn18X0 +04/25/2015,Sports_celeb,@MartinBrodeur,RT @NJDevilsFWW: Hey @MartinBrodeur how about retweet 4 Oaklee. Today is his funeral and he was a huge Devils fan like mom. Thanks! http://… +04/16/2015,Sports_celeb,@MartinBrodeur,Enjoying my first @Cardinals game! http://t.co/5Czxspg5Mz +03/14/2015,Sports_celeb,@MartinBrodeur,Happy Birthday to my daughter Anabelle! http://t.co/gjSoad3TqH +03/11/2015,Sports_celeb,@MartinBrodeur,"Proud to join @dbackes42 and @A4A_org! +Make sure to support your local animal shelters! Nice visit today @APAofMO! http://t.co/CAVkiJ46AQ" +03/08/2015,Sports_celeb,@MartinBrodeur,Thanks to the @NHLDevils for a great weekend! Was great to see my old teammates and the fans! It was a lot of fun! #Devils95 +02/28/2015,Sports_celeb,@MartinBrodeur,Want to wish my friend David Clarkson good luck with the @BlueJacketsNHL! +02/19/2015,Sports_celeb,@MartinBrodeur,RT @Panger40: Well done Andrew. Congrats on your 1st @NHL victory. @andrewhammond30 @Sportsnet @Senators +02/07/2015,Sports_celeb,@MartinBrodeur,RT @CHLHockey: Built by the #CHL! Congrats @MartinBrodeur tremendous career that began with @QMJHL St Hyacinthe Lasers 1989-92 #tbt http://… +01/29/2015,Sports_celeb,@MartinBrodeur,Thank You for everything! http://t.co/IrxTmoIGSs +01/28/2015,Sports_celeb,@MartinBrodeur,#BellLetsTaIk +01/28/2015,Sports_celeb,@MartinBrodeur,"RT @ChrisKuc: Patrick Kane on Martin Brodeur: ""Hell of a career for a guy who did so much for our game."" #Blackhawks" +01/22/2015,Sports_celeb,@MartinBrodeur,Congratulations to @KidElls1 for making the 2015 @nhl All-Star team! #stlblues +01/18/2015,Sports_celeb,@MartinBrodeur,"RT @FlyingBluesman: 5 jours avant que la rondelle tombe....svp retweeter + @bruno_gervais27 bruno_gervais27 @Max25talbot @JiCLajoie @ http:/…" +01/04/2015,Sports_celeb,@MartinBrodeur,Congrats @JBrodeur30 on his first OHL shutout! +12/11/2014,Sports_celeb,@MartinBrodeur,RT @JillSaake: Thanks for the visit @MartinBrodeur @MODO_RAMAL at St Louis Childrens hospital @EJ_Saake's first smile of the week http://t.… +12/11/2014,Sports_celeb,@MartinBrodeur,"RT @LukeTaylor72: awesome to see a legend come to town and fit right in, thanks for visiting a hometown patient @MartinBrodeur & Jack http:…" +12/11/2014,Sports_celeb,@MartinBrodeur,RT @CardsNoteMizzou: My buddy's son received some special visitors today...you made his day @MartinBrodeur and Jax http://t.co/3yn2MhUzMl +12/09/2014,Sports_celeb,@MartinBrodeur,Thank you fans for an amazing welcome! @StLouisBlues +12/06/2014,Sports_celeb,@MartinBrodeur,Great first win as a Blue! @StLouisBlues +11/24/2014,Sports_celeb,@MartinBrodeur,Sad to hear the passing of Pat Quinn. He was a great coach. I had the privilege to play for him. You will be missed. +11/23/2014,Sports_celeb,@MartinBrodeur,Happy Birthday Maxime!! http://t.co/HJJOFx4oGQ +11/20/2014,Sports_celeb,@MartinBrodeur,RT @SunLifeQC: Tweetez ou RT #monactiondiabète et nous donnerons 1$ à la Fondation @DiabeteEnfants en partenariat avec @canadiensMTL http:/… +11/18/2014,Sports_celeb,@MartinBrodeur,Congrats to everyone inducted into the @HockeyHallFame. A special congrats to a great coach and a great friend! http://t.co/exAB8N6YzL +10/29/2014,Sports_celeb,@MartinBrodeur,Happy 18th Birthday @JBrodeur30 @WilliamBsTweets !!! http://t.co/ju0fjMv03G +10/25/2014,Sports_celeb,@MartinBrodeur,Congrats to @JBrodeur30 on his first OHL win!!! +10/22/2014,Sports_celeb,@MartinBrodeur,My thoughts and prayers are with the city of Ottawa. +10/12/2014,Sports_celeb,@MartinBrodeur,RT @Oshawa_Generals: The first period is underway in Ottawa. @JBrodeur30 will start in net for the Generals making this his second OHL star… +10/09/2014,Sports_celeb,@MartinBrodeur,RT @patrickwoodbury: C'était le dernier entraînement père-fils @MartinBrodeur @abrodeur30 à #Gatineau #hockey #lhjmq http://t.co/vsMvwth3bW +10/09/2014,Sports_celeb,@MartinBrodeur,RT @patrickwoodbury: Mise au jeu faite par @MartinBrodeur au #VieuxBob #LeDroit http://t.co/NCna1nNl0c +10/08/2014,Sports_celeb,@MartinBrodeur,http://t.co/skFUMXrV07 +10/06/2014,Sports_celeb,@MartinBrodeur,RT @LesOlympiques: Retweeter l'image et courez la chance de gagner vos billets pour la partie de mercredi! #GoOlympiquesGo http://t.co/78Sq… +10/06/2014,Sports_celeb,@MartinBrodeur,RT @MLalancetteTVA: Le centre d'attraction de cette séance d'entraînement à Guertin http://t.co/3KpWdr1ar8 +09/27/2014,Sports_celeb,@MartinBrodeur,RT @WarnerA93: Jeremy Brodeur's first @OHLHockey start for the @Oshawa_Generals vs. the @OHLSteelheads. @JBrodeur30 @MartinBrodeur http://t… +09/26/2014,Sports_celeb,@MartinBrodeur,Good luck tonight @JBrodeur30!! First OHL start! +09/25/2014,Sports_celeb,@MartinBrodeur,Congratulations to Derek Jeter on an amazing career! #RE2PECT +09/24/2014,Sports_celeb,@MartinBrodeur,Awesome job in goal today @abrodeur30! http://t.co/FGuDDbbVIK +09/07/2014,Sports_celeb,@MartinBrodeur,"RT @Oshawa_Generals: Brodeur is starting tonight, game is underway! http://t.co/2VrF6U0TYw" +08/26/2014,Sports_celeb,@MartinBrodeur,Happy #NationalDogDay! From Stanley and Vez! http://t.co/dp5kWDjFw4 +08/16/2014,Sports_celeb,@MartinBrodeur,Wishing team Canada good luck in their game later today! #LLWS @LittleLeague +07/15/2014,Sports_celeb,@MartinBrodeur,Battle of the Twins! @JBrodeur30 @Freewill_b http://t.co/XZPuW0EAFK +06/24/2014,Sports_celeb,@MartinBrodeur,Happy to see Pat Burns will be inducted into the @HockeyHallFame he was a great coach and a great friend! http://t.co/XkAqkotK1R +06/16/2014,Sports_celeb,@MartinBrodeur,"RT @abrodeur30: Happy fathers day to everyone, but most importantly, @MartinBrodeur love you dad, you're the best" +06/15/2014,Sports_celeb,@MartinBrodeur,Happy Father's Day to all of the Hockey Dads out there! Miss You Dad. Thanks for all that you have done for me! http://t.co/ZVU0KejQCQ +06/08/2014,Sports_celeb,@MartinBrodeur,Happy Birthday @abrodeur30! Love you http://t.co/zulcipCOqF +06/05/2014,Sports_celeb,@MartinBrodeur,Congratulations to @JBrodeur30 on joining the @Oshawa_Generals! Always proud of you! +05/11/2014,Sports_celeb,@MartinBrodeur,Love you Mom! Happy Mother's Day to all Moms ! http://t.co/CVLIXIvlQk +05/06/2014,Sports_celeb,@MartinBrodeur,Thank You Guys for all the Birthday Wishes!/Merci pour les voeux d'anniversaire! +05/06/2014,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Happy birthday Dad! Love you +04/20/2014,Sports_celeb,@MartinBrodeur,Happy Easter! http://t.co/Vz8uMkooQN +04/17/2014,Sports_celeb,@MartinBrodeur,Check out this guarantee from #markmessier and @officialspyder https://t.co/nh1ljcq1Vn +04/17/2014,Sports_celeb,@MartinBrodeur,Thank you guys for all the support. I really appreciate it! Good luck to all teams in the playoffs. +08/30/2013,Sports_celeb,@MartinBrodeur,RT @EASPORTSNHL: .@MartinBrodeur is giving away a copy of #NHL14 on his FB page! Enter here: http://t.co/IIB9XVTmAX @NHL @NHLPA +07/29/2013,Sports_celeb,@MartinBrodeur,The final piece of my new mask is on the back — I added an Old School Photography Film Strip as tribute to my Dad! http://t.co/Bt6LajdzO7 +07/29/2013,Sports_celeb,@MartinBrodeur,I have one more addition to the Mask! Check back at 2:30 to see it! +07/29/2013,Sports_celeb,@MartinBrodeur,Here is my New Mask for the 2013-2014 Season! http://t.co/2oUoZBqUAI +07/29/2013,Sports_celeb,@MartinBrodeur,"RT @KenDaneykoMSG: @MartinBrodeur ahh u don't have to out me on your mask pal, that's ok!" +07/29/2013,Sports_celeb,@MartinBrodeur,Tomorrow you will get to see my mask for the new season. I am adding two friends to my mask! Stay Tuned! +07/10/2013,Sports_celeb,@MartinBrodeur,Congrats to Nieder and Shanny to become Hall of famer!!!! +07/08/2013,Sports_celeb,@MartinBrodeur,RT @nhl: Thank you all for your questions. I had fun. Follow me @MartinBrodeur. ^MB +07/08/2013,Sports_celeb,@MartinBrodeur,RT @EASPORTSNHL: #NHL14 Cover Athlete @MartinBrodeur will be taking over the @NHL Twitter account at 2pm ET (11am PT). Ask questions using … +07/08/2013,Sports_celeb,@MartinBrodeur,Hey Guys! I am taking over the @NHL Twitter account at 2 p.m. today! Ask me questions using #AskBrodeur +07/01/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: Extremely excited to be a part of the @NHLDevils !Been waiting for this moment for my whole life! Crazy feeling and thanks … +07/01/2013,Sports_celeb,@MartinBrodeur,Picture with @abrodeur30 after being Drafted http://t.co/mRGSdtUQat +07/01/2013,Sports_celeb,@MartinBrodeur,"RT @NHLDevils: Watch as our @MartinBrodeur announces his son, Anthony Brodeur, as the 208th #NHLDraft pick: http://t.co/4ckOnNXeuL" +07/01/2013,Sports_celeb,@MartinBrodeur,Congrats to my boy @abrodeur30 on getting drafted to the @NHLDevils ! Can't wait to see you on the ice! +06/30/2013,Sports_celeb,@MartinBrodeur,Good Luck to my son @abrodeur30 today at the @NHL Draft +06/28/2013,Sports_celeb,@MartinBrodeur,"Thanks to all voters!!!! +http://t.co/y0LmWVTkks" +06/18/2013,Sports_celeb,@MartinBrodeur,Congrats @abrodeur30 on joining the Gatineau Olympiques of the QMJHL! +06/16/2013,Sports_celeb,@MartinBrodeur,Happy Father's Day Dad! http://t.co/C5pktyegPQ +06/16/2013,Sports_celeb,@MartinBrodeur,"RT @abrodeur30: Happy fathers day to all the dads out there, but especially @MartinBrodeur #loveyou" +06/08/2013,Sports_celeb,@MartinBrodeur,"Hey guys check out My Brother Denis's Photography Page http://t.co/Z4Vyn3nLpB +Go check it out and give him a like!" +06/08/2013,Sports_celeb,@MartinBrodeur,Happy Birthday Anthony Love You Buddy!! @abrodeur30 +06/03/2013,Sports_celeb,@MartinBrodeur,Voting is now over! Thanks so much for all the support! You guys have done an awesome job! Lets hope that we made it! Stay Tuned! +06/03/2013,Sports_celeb,@MartinBrodeur,"1 Hour Left! Vote MB30! +http://t.co/vtGvDc8V55" +06/02/2013,Sports_celeb,@MartinBrodeur,"Voting is very close! Voting is Unlimited so make sure to get in as many as you can! Thanks guys! +Vote Here: http://t.co/vtGvDc8V55" +06/02/2013,Sports_celeb,@MartinBrodeur,"Vote for me for the #NHL14CoverVote +http://t.co/vtGvDc8V55 +Voting is Unlimited!" +06/02/2013,Sports_celeb,@MartinBrodeur,Today is the Last Day you can vote for me to be on the cover of NHL14! For votes to count go to http://t.co/vtGvDc8V55 Thank you guys! +06/02/2013,Sports_celeb,@MartinBrodeur,Congrats to @VoteBrodeur for winning the signed Mini Stick! Keep Voting today is the last day that you can vote! http://t.co/vtGvDc8V55 +05/31/2013,Sports_celeb,@MartinBrodeur,Thank you fans for all of the support today! For your votes to count vote at http://t.co/36sYc1QXeP +05/31/2013,Sports_celeb,@MartinBrodeur,RT If you Voted #NHL14Brodeur All Day +05/31/2013,Sports_celeb,@MartinBrodeur,15 Mins Left! Make them Count! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT 30 Mins Left! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Congrats to @abrodeur30 for graduating High School! Nice Job Buddy! +05/31/2013,Sports_celeb,@MartinBrodeur,Vez is waiting for you to vote #NHL14Brodeur http://t.co/5ZAx2xtpJd +05/31/2013,Sports_celeb,@MartinBrodeur,1 Hour Left! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Stanley is waiting for you to vote #NHL14Brodeur http://t.co/MFXunoo4CR +05/31/2013,Sports_celeb,@MartinBrodeur,RT this! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,I don't always vote for the NHL14 Cover but when I do I vote #NHL14Brodeur http://t.co/RGnQZB9vXe +05/31/2013,Sports_celeb,@MartinBrodeur,2 Hours Left to vote on twitter! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,Hey @brucebeck4ny Thanks for the support! #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,RT @nhldevils: RT this if you've been tweeting #NHL14Brodeur all day. +05/31/2013,Sports_celeb,@MartinBrodeur,"Who wants to win this? Tweet #NHL14Brodeur to enter! +http://t.co/xPUnNUlCY3" +05/31/2013,Sports_celeb,@MartinBrodeur,Keep Calm and Vote #NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/31/2013,Sports_celeb,@MartinBrodeur,"Vote! #NHL14Brodeur + http://t.co/NdKs66LMgh" +05/31/2013,Sports_celeb,@MartinBrodeur,"Put Your Game Face On! Vote Now! #NHL14Brodeur +Video: http://t.co/zrImmmLhVm" +05/31/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeur #NHL14Brodeu… +05/30/2013,Sports_celeb,@MartinBrodeur,Thanks for all of the Questions! Make sure to keep voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhlpa: Also, please help me get on the cover of EA NHL 14 by voting #NHL14Brodeur. Thank you!" +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhlpa: Fans, thanks for all your great questions, this has been a blast. Also thanks to @NHLPA for letting me 'takeover' this account." +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @NHLPA: Martin Brodeur is up next, he will be taking over the @NHLPA Twitter account at 6:30pm EST. Tweet questions to @NHLPA using #Ask…" +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: Almost time for @MartinBrodeur to take over the @NHLPA account. #AskBrodeur. #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,Keep using #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,I am jumping on the @NHLPA twitter account in 1 hour. Want me to answer your questions? Use #AskBrodeur to ask ?'s & #NHL14Brodeur to vote! +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @njdevil00: Just keep voting, voting, voting: #NHL14Brodeur." +05/30/2013,Sports_celeb,@MartinBrodeur,Do you know what time it is? #NHL14Brodeur time! +05/30/2013,Sports_celeb,@MartinBrodeur,RT @denisbrodeurjr: #NHL14Brodeur @MartinBrodeur Marty is the ironman of goalies http://t.co/CKHyJe5Ury +05/30/2013,Sports_celeb,@MartinBrodeur,Who wants to win a signed Mini Stick? Tweet #NHL14Brodeur to enter. +05/30/2013,Sports_celeb,@MartinBrodeur,"""Vote #NHL14Brodeur"" Hi I'm Martin Brodeur and I approve this message." +05/30/2013,Sports_celeb,@MartinBrodeur,"Help me complete my checklist! All you have to do is tweet #NHL14Brodeur + http://t.co/zuyyksTJlO" +05/30/2013,Sports_celeb,@MartinBrodeur,If you're happy and you know it Vote #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"Keep Voting for Me! + Video: http://t.co/jDA6BCfXq4 +#NHL14Brodeur" +05/30/2013,Sports_celeb,@MartinBrodeur,Tweet Brodeur Thursday! #TBT #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @nhlpa: Brodeur is taking over the @NHLPA Twitter account today at 6:30pm EST. Tweet questions to @NHLPA using #AskBrodeur #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @jeremy_roenick: @MartinBrodeur why wouldn't u vote for Marty. Best of all time +#NHL14Brodeur" +05/30/2013,Sports_celeb,@MartinBrodeur,"Hey @Jeremy_Roenick is voting #NHL14Brodeur +So you should too! + http://t.co/tQGjtEWfDH" +05/30/2013,Sports_celeb,@MartinBrodeur,RT @sherrydarlingnj: There are at least 669 reasons to vote for #NHL14Brodeur. +05/30/2013,Sports_celeb,@MartinBrodeur,RT @free_willy9: #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,I am taking over the @NHLPA twitter account at 6:30! Want me to answer your questions? Use #AskBrodeur to ask Questions #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @abrodeur30: #NHL14Brodeur #NHL14Brodeur #retweet #NHL14Brodeur #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @jbrodeur30: #NHL14Brodeur #retweet #covervote +05/30/2013,Sports_celeb,@MartinBrodeur,RT @kendaneykomsg: #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,How many times have you tweeted #NHL14Brodeur today? +05/30/2013,Sports_celeb,@MartinBrodeur,Voting is Very close! keep voting #nhl14brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,My Buddy David Clarkson is voting #NHL14Brodeur http://t.co/EbAO5WUcfg +05/30/2013,Sports_celeb,@MartinBrodeur,What are you waiting for? Vote #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @nhl: It's the last day of #NHL14CoverVote Twitter Voting! Are you tweeting for #NHL14Brodeur or Bobrovsky? +05/30/2013,Sports_celeb,@MartinBrodeur,@ThatKevinSmith thanks for the support! Keep Voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLPA: #NHL14CoverVote finalists @MartinBrodeur & Sergei Bobrovsky will take over the @NHLPA account today at 5pm EST http://t.co/0cOVw… +05/30/2013,Sports_celeb,@MartinBrodeur,RT @ThatKevinSmith: Put a netminding legend on the cover of EA SPORTS NHL 14 by voting #NHL14Brodeur for #NHL14COVERVOTE! http://t.co/YIVhU… +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur Keep it Going! +05/30/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: #TBT: @MartinBrodeur broke the @NHL record for most career wins by a goalie on 3/17/09. Photo: http://t.co/YEKhUAMyPF. Vote:… +05/30/2013,Sports_celeb,@MartinBrodeur,Vote #NHL14Brodeur #BecauseItsTheCover +05/30/2013,Sports_celeb,@MartinBrodeur,Keep Tweeting! #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,@RobbieGould09 is voting #NHL14Brodeur from Chicago! Where are you voting from? http://t.co/zpN527sPrK +05/30/2013,Sports_celeb,@MartinBrodeur,"Vote #NHL14Brodeur All Day! +Check Out This Video + http://t.co/nbZeJ94oXh" +05/30/2013,Sports_celeb,@MartinBrodeur,RT if you're voting #NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,"RT @nhldevils: It's the last Thursday of the #NHL14CoverVote competition, make it count #DevilsArmy. Tweet #NHL14Brodeur." +05/30/2013,Sports_celeb,@MartinBrodeur,Good Morning Everyone! Remember every time you use #NHL14Brodeur today it counts as two votes for me for the #NHL14CoverVote. Tweet away. +05/30/2013,Sports_celeb,@MartinBrodeur,"Hey guys we made it to the finals! Don't Stop Voting #NHL14Brodeur +Video:http://t.co/vfBySPX4Sx" +05/30/2013,Sports_celeb,@MartinBrodeur,#NHL14Brodeur +05/30/2013,Sports_celeb,@MartinBrodeur,It's #TBT Tweet Brodeur Thursday! Use #NHL14Brodeur all day for a chance to win a signed mini stick! Put me on the Cover of NHL14! +05/29/2013,Sports_celeb,@MartinBrodeur,"How many times have you voted for me today for the #NHL14CoverVote ? +Vote for me at http://t.co/36sYc1QXeP" +05/29/2013,Sports_celeb,@MartinBrodeur,RT @NHLDevils: Rock the vote #DevilsArmy! Support @MartinBrodeur for #NHL14Cover by voting here: http://t.co/oaYp65nSbs. Voting is unlimite… +05/28/2013,Sports_celeb,@MartinBrodeur,"You guys are doing great! +Make sure to Keep Voting for me! +Vote Here: http://t.co/36sYc1QXeP http://t.co/24iBOwe8mA" +05/27/2013,Sports_celeb,@MartinBrodeur,"RT @nhldevils: It's the final countdown! @MartinBrodeur is in the finals! Voting is live NOW, vote here: http://t.co/b05e6rzEXJ" +05/27/2013,Sports_celeb,@MartinBrodeur,"I made it to the Final Round of the #NHL14CoverVote! Keep Voting for me! +http://t.co/vtGvDc8V55 +Can't win without you guys!" +05/27/2013,Sports_celeb,@MartinBrodeur,"Send me to the Finals of the #NHL14CoverVote ! Get in your last votes for this round. +Vote Here: http://t.co/vtGvDc8V55" +05/25/2013,Sports_celeb,@MartinBrodeur,Congrats @P0ly95 you are the winner of the signed Mini Stick! Send Me A DM to claim your prize +07/01/2018,Sports_celeb,@ToreyKrug,#DirtyWater +06/15/2018,Sports_celeb,@ToreyKrug,"RT @NHLBruins: .@ToreyKrug: not normally a goalie. + +RT if the blue liner's lunging stick stop in overtime against Montreal was your favorit…" +06/15/2018,Sports_celeb,@ToreyKrug,@NHLBruins Would love to get the pic of that! +06/15/2018,Sports_celeb,@ToreyKrug,@BLerg11 My goodness. He needs to meet my girl! +06/11/2018,Sports_celeb,@ToreyKrug,RT @NHL: https://t.co/H0HGORwg5d +06/10/2018,Sports_celeb,@ToreyKrug,"RT @Krug39: Had a great time celebrating Dad’s 60th tonight!!! + +He’s responsible for this whole crew! + +#ThanksDad #Coach #Papa https://t.co…" +06/01/2018,Sports_celeb,@ToreyKrug,Everyone hates @Money23Green when he’s not on their team. But when he is your teammate you love him to death... I p… https://t.co/TJq1YlAs8C +05/31/2018,Sports_celeb,@ToreyKrug,@Buccigross This pic is all-time! +05/24/2018,Sports_celeb,@ToreyKrug,RT @GreekGodOfHops: Twitter would never promote this but there needs to be a day for unplugging from twitter and all social media sites. So… +05/16/2018,Sports_celeb,@ToreyKrug,@Mmato27 Dude. Fly me some? +05/15/2018,Sports_celeb,@ToreyKrug,"@daleicious23 Could you imagine if that happened to me and my job, Dale? In your opinion, it would often!" +05/14/2018,Sports_celeb,@ToreyKrug,Thank you guys for all the support this season. We will be back! https://t.co/V724ySfc7J +12/22/2017,Sports_celeb,@ToreyKrug,Check it out! Would make for a nice gift 😉 https://t.co/iFKwhWv6JJ +12/21/2017,Sports_celeb,@ToreyKrug,I highly suggest watching @isaiahthomas ‘s #BookOfIsaiah2 ... #IT #respect +12/15/2017,Sports_celeb,@ToreyKrug,"A friend of mine reached out when his buddy’s child suddenly passed recently. If you’re up for it, please consider… https://t.co/J10PrNbwl4" +11/30/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: Strong work, @ToreyKrug. 👌 https://t.co/dz9ZFf3wDn" +10/31/2017,Sports_celeb,@ToreyKrug,"RT @TheSportsMuseum: #Bostonvs.Bullies has officially reached 50,000 kids! We're very ecstatic & proud w/ how far the program has come! #Le…" +10/09/2017,Sports_celeb,@ToreyKrug,👀 +10/08/2017,Sports_celeb,@ToreyKrug,Where's our trophy @stoolpresidente ?! +10/07/2017,Sports_celeb,@ToreyKrug,@scottzolak @Bruinsnumba1 Sup... Sparty on! +10/07/2017,Sports_celeb,@ToreyKrug,@NHL_AaronWard Not a peep out of you guys for last 8 years. Finally... +10/06/2017,Sports_celeb,@ToreyKrug,👀 you're gonna look good in Green and White https://t.co/NEXrOgpzbg +10/05/2017,Sports_celeb,@ToreyKrug,"#Boston, Let's Go!" +10/05/2017,Sports_celeb,@ToreyKrug,@stoolpresidente Hot 'n Sweaty +10/04/2017,Sports_celeb,@ToreyKrug,@K_Sodd Beauty! +10/02/2017,Sports_celeb,@ToreyKrug,@jettestephen Ha I gotta check on that! Poor guy +10/02/2017,Sports_celeb,@ToreyKrug,RT @CFBONFOX: .@MSU_Football did the Iowa wave yesterday while hosting the Hawkeyes and my god is it dusty in here https://t.co/keGsvm0iE1 +10/02/2017,Sports_celeb,@ToreyKrug,@_JimmyS_ @BNightengale Sit down and watch. +09/28/2017,Sports_celeb,@ToreyKrug,RT @JRandalWard42: Some thoughts...excuse the length! https://t.co/YUNMgjaAgn +09/26/2017,Sports_celeb,@ToreyKrug,"@matthewmacd4 Thanks man! Ya, I don't think right place, right time!" +09/26/2017,Sports_celeb,@ToreyKrug,@matthewmacd4 Clearly didn't know what I RT. Immediately removed. The way you phrased this tweet leads me to believ… https://t.co/VtIbQuFIIW +09/26/2017,Sports_celeb,@ToreyKrug,@kebuddle You're right. I don't even know if that's true or not. My bad. Do you know if it is or isn't though? +09/24/2017,Sports_celeb,@ToreyKrug,"Those that witnessed the end of the @Lions game, welcome to my childhood." +09/24/2017,Sports_celeb,@ToreyKrug,RT @SportsCentre: JUST IN: Stanley Cup champion Pittsburgh Penguins release Team statement regarding White House visit: https://t.co/zx0kYf… +09/24/2017,Sports_celeb,@ToreyKrug,RT @TSNHockey: JUST IN: Stanley Cup champion Pittsburgh Penguins release Team statement regarding White House visit: https://t.co/sm6qPJlfjA +09/23/2017,Sports_celeb,@ToreyKrug,Waiting for @Bmarch63 to log back on to @Twitter https://t.co/Fl5LGDaEvl +09/22/2017,Sports_celeb,@ToreyKrug,RT @denisleary: Join us for #ComicsComeHome23 @tdgarden Nov 18th. Here's why: Comics Come Home therapeutic for Neely https://t.co/O8P6rpK1X… +09/21/2017,Sports_celeb,@ToreyKrug,@Bmarch63 Can't wait to see your face off percentage +09/19/2017,Sports_celeb,@ToreyKrug,RT @SullivanTire: Guess who stopped by our Watertown location last week... Our favorite #Bruins player @ToreyKrug! #nhl #hockey #sullivanti… +09/18/2017,Sports_celeb,@ToreyKrug,"@Zvendi13 keep grinding away buddy. Keep your head up, put in the work and don't listen to the naysayers. Let them fuel the fire. Good luck!" +09/17/2017,Sports_celeb,@ToreyKrug,RT @Sam__OConnor: Everyone do yourself a favor and watch @ToreyKrug ig story +09/14/2017,Sports_celeb,@ToreyKrug,My boy 🍝 dinner on you bro @pastrnak96 +09/12/2017,Sports_celeb,@ToreyKrug,Congrats @KipMooreMusic on a great album. You guys kill it on #SLOWHEART +09/12/2017,Sports_celeb,@ToreyKrug,"@13Photography Ya... seriously, it's not. But hard to get upset at a #34 home run." +09/11/2017,Sports_celeb,@ToreyKrug,It was a pleasure meeting you. Anyone recognize this guy? https://t.co/m3bsEhohbB +09/11/2017,Sports_celeb,@ToreyKrug,RT @NHL: Craig Cunningham's transition from the ice to the stands has been a successful one. https://t.co/a2A4hHQ6Ky +09/10/2017,Sports_celeb,@ToreyKrug,I'll be @fenwaypark gates today with @NHLBruins teammates to collect donations for Hurricane Irma relief with @FlaPanthers @RedSox +09/03/2017,Sports_celeb,@ToreyKrug,RT @ChirpHard: This skit by Andrew Ference will always be hilarious https://t.co/96ipv73VMk +09/03/2017,Sports_celeb,@ToreyKrug,"RT @Pac12Network: This is anything but a regular PAT. + +Jake Olson, blind since age 12, just snapped for the first time in a live game. http…" +09/01/2017,Sports_celeb,@ToreyKrug,"RT @JustinVerlander: Thank you to Detroit for an incredible 13-seasons, a city that will always be important to me.… https://t.co/QNaPBVZuY5" +09/01/2017,Sports_celeb,@ToreyKrug,RT @celtics: *chills* https://t.co/9IQtQAjCXC +08/31/2017,Sports_celeb,@ToreyKrug,@fistbumpkid @KyleKrug1 See you soon buddy!!!!! +08/30/2017,Sports_celeb,@ToreyKrug,Thanks to everyone at @EASPORTSNHL for the scoop on my #NHL18Ratings and the nice slice of humble pie. Can't wait… https://t.co/Hk1BTCQPt8 +08/30/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: The boys were special guests down in Foxborough today. 🏒🏈 + +Thanks for having us, @Patriots! https://t.co/TQUGGtYaf9" +08/21/2017,Sports_celeb,@ToreyKrug,@Mmato27 Ya... @Buccigross knows what's good. Looking sharp bud. +08/20/2017,Sports_celeb,@ToreyKrug,Next time say hello!!! https://t.co/GcmAHvNMPv +08/19/2017,Sports_celeb,@ToreyKrug,Stay safe Boston +08/19/2017,Sports_celeb,@ToreyKrug,RT @theScoreNHL: Roadrunners to retire Cunningham's jersey number https://t.co/cTzGR3ZRej https://t.co/UfeU2nvme8 +08/08/2017,Sports_celeb,@ToreyKrug,RT @MiLB: BREAKING: #Tigers prospect Cam Gibson hits a two-run triple in the sixth to complete the cycle for @LkdFlyingTigers https://t.co/… +08/04/2017,Sports_celeb,@ToreyKrug,@NickCantalupo17 Happy Birthday Tony! +07/27/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: .@tuukkarask and @ToreyKrug showing the kids off-ice agility exercises 💪 🐻 + +#BruinsGlobal https://t.co/LDR6wML5C6" +07/23/2017,Sports_celeb,@ToreyKrug,"RT @Skillsy75: After years of slowing down the NHL, I'm excited to #growthegame in China with @ToreyKrug and @NHLBruins #BruinsGlobal" +07/23/2017,Sports_celeb,@ToreyKrug,RT @StephenCurry30: “Are you not entertained???” @JordanSpieth +07/23/2017,Sports_celeb,@ToreyKrug,"@JordanSpieth let's clean up this mess and continue this tomorrow... + +""No, I'll just beat him now"" -Happy Gilmore" +07/23/2017,Sports_celeb,@ToreyKrug,@DustinBrown88 Ignore the noise! Thanks for the support. +07/22/2017,Sports_celeb,@ToreyKrug,Hard to root against @JordanSpieth but it's pretty cool that every time Kuchar hits they yell my last name. #TheOpen https://t.co/ozNzPiDJUq +07/20/2017,Sports_celeb,@ToreyKrug,@FeitsBarstool @hoosierjm26 +07/16/2017,Sports_celeb,@ToreyKrug,@Marcus36Smart @Amanda_Pflugrad Go play video games and begging broads for follows. Goodnight bud. +07/15/2017,Sports_celeb,@ToreyKrug,That's seriously a terrible call @RedSox +07/15/2017,Sports_celeb,@ToreyKrug,@DanyAllStar15 @ACbulldoghockey my brothers team @Krug39 +07/13/2017,Sports_celeb,@ToreyKrug,RT @TheMDSC: We're happy to announce that the MDSC is partnering with the National Down Syndrome Society to host a celebrity... https://t.c… +07/13/2017,Sports_celeb,@ToreyKrug,@Jack_Eichel11 Hahahha this is great. @NickBonino what kind of rims did you put on it? +07/08/2017,Sports_celeb,@ToreyKrug,RT @BobbyRobinsPro: Me and @MKrug7 respectfully disagreeing from @ToledoWalleye Valentine's Day card back in the day. https://t.co/ImpkEFNl… +07/08/2017,Sports_celeb,@ToreyKrug,Should have came and said hello. Sorry I missed you. Happy birthday! https://t.co/GaBiGXMiES +07/07/2017,Sports_celeb,@ToreyKrug,RT @PatrickChung23: @OnlyInBOS @BostonCasting How good you gotta be? Lol +07/05/2017,Sports_celeb,@ToreyKrug,I wanted to chirp you so bad but this is a sick picture #stillgonna #sendit #babysitter https://t.co/IwvQvwmxSu +06/24/2017,Sports_celeb,@ToreyKrug,"RT @MiHockeyNow: And now, a reminder in regards to the #NHLDraft... + +These are just some of the guys who never heard their names called.…" +06/24/2017,Sports_celeb,@ToreyKrug,Welcome to all @NHLBruins picks but especially @JStudnicka23 bringing another MI and Belle Tire product to the best sports city in America! +06/24/2017,Sports_celeb,@ToreyKrug,RT @J_Danglefest2: So excited to be apart of the @DetroitRedWings organization! Thankful for everyone who has made this so special. #DreamC… +06/23/2017,Sports_celeb,@ToreyKrug,"RT @StoolChiclets: .@ToreyKrug was bitter he didn't get selected in the NHL draft, but it was the best thing that ever happened to him http…" +06/23/2017,Sports_celeb,@ToreyKrug,"RT @darrenrovell: Heard Draymond could recite the 34 players who were drafted before him, so I made him do it https://t.co/imhjbC2Dbn (H/T…" +06/22/2017,Sports_celeb,@ToreyKrug,"RT @espn: On this date in 1984, Daniel LaRusso defeated the Cobra Kai with Mr. Miyagi's help to win the Under-18 All-Valley Karate Tourname…" +06/21/2017,Sports_celeb,@ToreyKrug,Let's go Bergy!! #Selke +06/21/2017,Sports_celeb,@ToreyKrug,"RT @DarrenDreger: After a 34-goal, 70-pt season David Pastrnak was named the Czech Republic's best player today. He's the youngest ever to…" +06/18/2017,Sports_celeb,@ToreyKrug,So excited to see @KevinJames tonight. What a beauty! +06/13/2017,Sports_celeb,@ToreyKrug,RT @NHLBruins: #NHLBruins hire Kevin Dean as assistant coach: https://t.co/YKxa5GxJ4P +06/13/2017,Sports_celeb,@ToreyKrug,RT @rileynash20: I've teamed up with Like A Pro where I give a behind the scenes look at my life and my gear of choice. Check it out! https… +06/13/2017,Sports_celeb,@ToreyKrug,"RT @DanyAllStar15: #50in07's Players of the Year: +1. Adam McQuaid +2. Auston Matthews +3. Craig Anderson +4. Stevie McDavid +5. Erik Karldad…" +06/13/2017,Sports_celeb,@ToreyKrug,"RT @theScore: 3-1 series lead. The Warriors just need to keep their composure! + +#NBAFinals https://t.co/6KfMyoQcG4" +06/09/2017,Sports_celeb,@ToreyKrug,My boy Craig!! https://t.co/FnNYWPHuoG +06/08/2017,Sports_celeb,@ToreyKrug,"RT @MSU_Hockey: It’s time to take the home of Spartan hockey to the next level! +https://t.co/JiCxEtbL7B" +06/05/2017,Sports_celeb,@ToreyKrug,"RT @27MilanLucic: Summer workout partner💪🏼 +@Unbreakable @terrellowens https://t.co/Lcah4hzIwi" +06/05/2017,Sports_celeb,@ToreyKrug,@hoosierjm26 @pastrnak96 @NHLBruins I don't get any bonus points for the fact that we expect that on a nightly basi… https://t.co/BVDpENrTGS +06/05/2017,Sports_celeb,@ToreyKrug,RT @dbackes42: GBSTL! Congrats @GentleBarn on reaching your goal! I'll donate an extra $6k in honor of the #stlouissix if we can get 6k ret… +06/04/2017,Sports_celeb,@ToreyKrug,RT @KirkHerbstreit: As a multi sports fan I have to say that @NHL playoff hockey and especially the #StanleyCupFinal is as good as it gets!… +06/03/2017,Sports_celeb,@ToreyKrug,"RT @E60: Why did @Money23Green donate $3.1M to @michiganstateu - it's all about friendly competition in this @E60 extra. His story Sun, 9a…" +06/01/2017,Sports_celeb,@ToreyKrug,"RT @FlaPanthers: Shawn Thornton has joined our executive staff! 👊 + +Details » https://t.co/zdz0ck8AX5 https://t.co/YE48tSNKuY" +05/27/2017,Sports_celeb,@ToreyKrug,"RT @EuropeanTour: Aaron's dad emailed us to ask if we could do something for his 9th birthday 🎂 + +We decided to do something special. https:…" +05/25/2017,Sports_celeb,@ToreyKrug,My little Czech bro turning 21 today. @pastrnak96 #DP #Ahoj #pancakes #asterisk https://t.co/eDonJNpWX4 +05/24/2017,Sports_celeb,@ToreyKrug,RT @ArizonaCoyotes: OFFICIAL: #Coyotes Add Craig Cunningham as Pro Scout https://t.co/gPwZSaWuvg +05/23/2017,Sports_celeb,@ToreyKrug,@berschy24 @ToledoPolice How do you lose a car? +05/22/2017,Sports_celeb,@ToreyKrug,@TheFunnyVine @hoosierjm26 +05/22/2017,Sports_celeb,@ToreyKrug,"RT @NHLBruins: Today, Brad takes on Torey in the Top Goal Showdown. Check out their goals and vote below! https://t.co/uMxoQ7KUoJ" +05/22/2017,Sports_celeb,@ToreyKrug,https://t.co/hd8FGNgbf6 +05/16/2017,Sports_celeb,@ToreyKrug,@ofctimallen Wow. What a disappointment +05/16/2017,Sports_celeb,@ToreyKrug,Hey O! @KellyOlynyk. +05/15/2017,Sports_celeb,@ToreyKrug,Let's go ☘️!!! +05/13/2017,Sports_celeb,@ToreyKrug,RT @hoosierjm26: @DanyAllStar15 Yes...great call +05/07/2017,Sports_celeb,@ToreyKrug,@jmwall24 Ya that was me. I was terrible +05/05/2017,Sports_celeb,@ToreyKrug,@BarstoolChief @michiganstateu @MSU_Hockey Not the doctor I should be +05/05/2017,Sports_celeb,@ToreyKrug,"It only took 7 years, but I finally graduated from @michiganstateu. #studentathlete @MSU_Hockey thank you to those that made it possible" +05/03/2017,Sports_celeb,@ToreyKrug,RT @mstlouis_26: @NHL Love this! All the OT games have been great but you can't fake this! #realemotions#coach https://t.co/N2hFRUZdCj +05/03/2017,Sports_celeb,@ToreyKrug,Wow @Isaiah_Thomas 👀 +04/11/2017,Sports_celeb,@ToreyKrug,RT @MSU_Hockey: Welcome back home Danton Cole! https://t.co/YeIBfxAZex https://t.co/5ajaRhtZHF +03/12/2017,Sports_celeb,@ToreyKrug,Best part of today's game was Stone Cold's entrance music in the 3rd period. Well done @tdgarden @steveaustinBSR https://t.co/z3wOXAZxbV +03/09/2017,Sports_celeb,@ToreyKrug,You're the man Craig https://t.co/cr4hq7evTS +03/08/2017,Sports_celeb,@ToreyKrug,"My buddy is up for the Senior Class Award for NCAA hockey, please vote for @Chuckdonald9 +https://t.co/P59r34rYQ6" +03/05/2017,Sports_celeb,@ToreyKrug,RT @NHL: Take advice wherever you can. https://t.co/KRScZsrAOY +03/05/2017,Sports_celeb,@ToreyKrug,@kelllliebyrne @NHLBruins @NHL congrats guys! Very happy for you. +03/05/2017,Sports_celeb,@ToreyKrug,@fistbumpkid gotta make my buddy happy! Thanks for the fist bump and the good luck! +03/04/2017,Sports_celeb,@ToreyKrug,RT @Robsmith210: Another big night for @BelleTire AAA alums as 2 members of 07 @usahockey National Champs face off against each other @To… +02/27/2017,Sports_celeb,@ToreyKrug,Posting this a couple days late. Make sure you get over there! https://t.co/WAfjX8iuFd +01/31/2017,Sports_celeb,@ToreyKrug,RT @SullivanTire: Stop by our Weymouth Ma. location on Washington St this Thursday 5:30-6:30pm & meet @ToreyKrug https://t.co/LqOtDKVF4u +01/31/2017,Sports_celeb,@ToreyKrug,Looking forward to it! See you there https://t.co/T9lkR0itDW +01/26/2017,Sports_celeb,@ToreyKrug,"RT @SullivanTire: Meet Boston Bruin Torey Krug 5:30-6:30PM on February 2 at our Weymouth, MA location on Washington Street! #Bruins https:/…" +01/25/2017,Sports_celeb,@ToreyKrug,"RT @BeII_LetsTaIk: For every retweet this gets, @Bell will donate 5¢ towards helping people with mental illness. Lets see how much we can…" +12/25/2016,Sports_celeb,@ToreyKrug,Merry Christmas buddy! https://t.co/MFSEqHeZJa +12/20/2016,Sports_celeb,@ToreyKrug,"RT @USHL: Forward of the Week: Jack Adams scores 5-point weekend, takes over USHL scoring lead https://t.co/XjYb0YO2Pd #WhosNext https://t.…" +12/16/2016,Sports_celeb,@ToreyKrug,Thanks @originalstix for the phone case! Great idea for hockey fans. #Sparty +11/22/2016,Sports_celeb,@ToreyKrug,"RT @AM34: Praying for you Craig, keep fighting. #cunnycan" +11/22/2016,Sports_celeb,@ToreyKrug,RT @BobbyRobinsPro: Cunny is one of the great ones. Been thinking about that toothless laugh of his! Talk about a heart of gold. Prayers yo… +11/22/2016,Sports_celeb,@ToreyKrug,#Cunnycan +11/17/2016,Sports_celeb,@ToreyKrug,Congrats @RickPorcello on the CY Young! #hotice https://t.co/s1oQBdbaTU +11/14/2016,Sports_celeb,@ToreyKrug,@NickBadgio glory days +11/13/2016,Sports_celeb,@ToreyKrug,@KyleKrug1 @ZGolski @Krug39 @zkrug19 @MKrug7 maroon shirt night for the fans? Congrats jack. +11/11/2016,Sports_celeb,@ToreyKrug,Great group to help out on Veterans Day... They make a big impact for military families! https://t.co/sDYX1Acl2z +11/11/2016,Sports_celeb,@ToreyKrug,@fistbumpkid thanks buddy!! +11/09/2016,Sports_celeb,@ToreyKrug,"RT @NHLBruins: #NHLBruins wives surprise moms-to-be at @MarchofDimes Military Baby Shower. + +Read more: https://t.co/cMExn8Wt2t https://t.co…" +10/18/2016,Sports_celeb,@ToreyKrug,RT @Krug39: First day of practice! #bagger https://t.co/gd2pZC8ySi +10/14/2016,Sports_celeb,@ToreyKrug,I'd prefer not to. Thanks for the follow https://t.co/kvNLL3ajFD +10/12/2016,Sports_celeb,@ToreyKrug,RT @NickFoligno: @BlueJacketsNHL @CBJfoundation @nationwidekids @BostonChildrens https://t.co/2ySnt1ZbFT +10/09/2016,Sports_celeb,@ToreyKrug,I feel I may be watching this at some point today... metaphorically speaking of course. https://t.co/YTjxbskBiP +10/07/2016,Sports_celeb,@ToreyKrug,@ACzarnik7 move on bro +10/06/2016,Sports_celeb,@ToreyKrug,RT @davidortiz: Locked in. Lets do this one last time Boston. +10/06/2016,Sports_celeb,@ToreyKrug,Congrats @mstlouis_26 https://t.co/YoeNaYutGs +10/03/2016,Sports_celeb,@ToreyKrug,RT @yoursportsstore: Public signing event #BostonBruins Patrice Bergeron & @ToreyKrug 11/6 1-2pm at Shriner Sports Show in Wilmington. Tick… +10/03/2016,Sports_celeb,@ToreyKrug,RT @stoolpresidente: He's back!!!! https://t.co/wQQJUToPBR. #BradyIsComing #brady +09/28/2016,Sports_celeb,@ToreyKrug,RT @mbartkowski12: Some lady just walked into lululemon and asked if they had organic cotton. https://t.co/ZmVjt7bpul +09/26/2016,Sports_celeb,@ToreyKrug,@DTrinidadM4 I got you bro! +09/22/2016,Sports_celeb,@ToreyKrug,RT @TyRandell64: Medicals and Fitness testing [✔️] Pumped to hit the ice tomorrow morning! +09/22/2016,Sports_celeb,@ToreyKrug,@Matt_Beleskey @freshii 👀 +09/21/2016,Sports_celeb,@ToreyKrug,@11hockeyzach I sure do bud! Hope you're doing well +09/21/2016,Sports_celeb,@ToreyKrug,Congrats on the win @Bmarch63 https://t.co/AaLNDIJgyq +09/21/2016,Sports_celeb,@ToreyKrug,@TwiterTouches I'll try harder next time just for you. +09/20/2016,Sports_celeb,@ToreyKrug,RT @DAVIDprice24: I haven't done my due diligence for my teammate and it's well over due...RICK PORCELLO for cy!! Last night should have so… +09/18/2016,Sports_celeb,@ToreyKrug,RT @SInow: The Lions lost to the Titans in the most Lions way possible (by @RohanNadkarni) https://t.co/uWmFdfBpDP https://t.co/8xlHFlbHQq +09/18/2016,Sports_celeb,@ToreyKrug,@Bryan_McGrath what's wrong? +09/18/2016,Sports_celeb,@ToreyKrug,@scottzolak #Zoknows +09/18/2016,Sports_celeb,@ToreyKrug,@BMahoney11 @MSU_Football @NDFootball fair enough. Good luck! +09/18/2016,Sports_celeb,@ToreyKrug,@BMahoney11 @MSU_Football you must be a Brady fan +09/17/2016,Sports_celeb,@ToreyKrug,Let's go @MSU_Football !!! +09/16/2016,Sports_celeb,@ToreyKrug,@zkrug19 https://t.co/I0t211CO9p +09/14/2016,Sports_celeb,@ToreyKrug,@JosephKellyJr can't wait! https://t.co/OXvvFxi5Uc +09/12/2016,Sports_celeb,@ToreyKrug,@stoolpresidente all part of the plan. Catanzaro was rattled as well. Well played! +09/11/2016,Sports_celeb,@ToreyKrug,"RT @BigTenNetwork: We asked you to vote for the best @B1Gfootball play in the past decade! +And the winner is... https://t.co/gFjMUYzdz5" +09/09/2016,Sports_celeb,@ToreyKrug,Bringing #TheD to Boston @KidRock https://t.co/IxVnpNubCx +09/09/2016,Sports_celeb,@ToreyKrug,RT @RedSox: We're joining forces w/ the @NHLBruins next Wed for Bruins Night at Fenway but you could win a shirt right now! ⚾️➕🏒 https://t.… +09/09/2016,Sports_celeb,@ToreyKrug,@ThomasRhett I'll swing by to grab those hats! +09/08/2016,Sports_celeb,@ToreyKrug,"RT @DanyAllStar15: . @ShawnMcKenzieSN yeah, over/under Adam McQuaid blocks a slap shot with his face 10 times. Love that guy. Savage" +09/07/2016,Sports_celeb,@ToreyKrug,"RT @IV_BOSTON: Boston Bruins 2017 +#Bruins https://t.co/rJk7nJTW1v" +09/05/2016,Sports_celeb,@ToreyKrug,@Buccigross where can you see this live? NBC showing delayed +08/31/2016,Sports_celeb,@ToreyKrug,Had fun yesterday at Fenway for the Jimmy Fund telethon @13Photography #kcancer https://t.co/QR5q6FZPwX +08/30/2016,Sports_celeb,@ToreyKrug,"RT @Buster_ESPN: Boston is 20-7 in games started by Rick Porcello, 53-51 in all others." +08/30/2016,Sports_celeb,@ToreyKrug,RT @TheJimmyFund: .@NHLBruins player @ToreyKrug is live on @NESN to help #KCANCER! https://t.co/DI4V4sBD6a https://t.co/JP2dnCC48z +08/28/2016,Sports_celeb,@ToreyKrug,RT @theScore: Dustin Pedroia learned of his historic hitting streak watchng TV during bathroom visit. https://t.co/MkACv5MgBD https://t.co/… +08/26/2016,Sports_celeb,@ToreyKrug,#Fenway https://t.co/2aakh8F43j +08/26/2016,Sports_celeb,@ToreyKrug,A former colleague of mine has begun his @twitter campaign. @mbartkowski12 +08/26/2016,Sports_celeb,@ToreyKrug,RT @mbartkowski12: Yes it's me +08/23/2016,Sports_celeb,@ToreyKrug,"RT @ECHLThunder: The Wolfe Returns! The #ADKThunder have resigned their top 2016 playoff scorer, @wolfe_greg! https://t.co/jiQoOOjthC https…" +08/20/2016,Sports_celeb,@ToreyKrug,Can anyone tell me what time @zacbrownband goes on stage tonight at Fenway? https://t.co/x5T5dZoJMA +08/19/2016,Sports_celeb,@ToreyKrug,@hoosierjm26 take a hint bro +08/19/2016,Sports_celeb,@ToreyKrug,@Peterson1989 check out @IV_BOSTON +08/18/2016,Sports_celeb,@ToreyKrug,@NHLBruins heavy feet John @hoosierjm26 +08/15/2016,Sports_celeb,@ToreyKrug,1 year ago today! https://t.co/yCpvU2ZiSd +08/14/2016,Sports_celeb,@ToreyKrug,I know someone like this... https://t.co/CBLlaieJLU +08/14/2016,Sports_celeb,@ToreyKrug,"@joey_partridge used to wear 44, wanted to stay in 40s. @RichPeverley had 49 which I liked so I took 47!" +08/13/2016,Sports_celeb,@ToreyKrug,@MattShumlas I remember that weekend! +08/13/2016,Sports_celeb,@ToreyKrug,@tuukkatimeRI definitely thinking.... +08/13/2016,Sports_celeb,@ToreyKrug,@MrChewy_ love wearing 47. #TK47 +08/11/2016,Sports_celeb,@ToreyKrug,Back in the day! https://t.co/lEgWPXDu6c +08/09/2016,Sports_celeb,@ToreyKrug,This suit 🔥🔥 https://t.co/UlbYUOB6cj +08/07/2016,Sports_celeb,@ToreyKrug,👀 @CMcAvoy44 +08/07/2016,Sports_celeb,@ToreyKrug,@NickBonino was it karma driven? +08/04/2016,Sports_celeb,@ToreyKrug,RT @NHLBruins: Bruins announce Trent Whitfield & Jay Leach have been named assistant coaches of @AHLBruins: https://t.co/qyNMIpxl8N https:/… +08/04/2016,Sports_celeb,@ToreyKrug,RT @lenaweenews: Adrian College is preparing to celebrate Arrington Ice Arena and what the building has brought to the #AdrianMI... https:/… +07/31/2016,Sports_celeb,@ToreyKrug,@Mmato27 I know @pastrnak96 would +07/24/2016,Sports_celeb,@ToreyKrug,RT @DantonioMark: https://t.co/cbZQmDykA1 +07/24/2016,Sports_celeb,@ToreyKrug,RT @NCAA: We mourn the loss of Nebraska punter Sam Foltz and former Michigan State punter Mike Sadler who died in a car crash. https://t.co… +02/22/2018,Sports_celeb,@drose,RT @countermoveco: Office Vibes https://t.co/rEWDQLn5tm +07/28/2017,Sports_celeb,@drose,"Las Vegas, catch me and the rest of my @adidasHoops fam hanging at #LVL3 today. See you there. https://t.co/jmpV1oAtmU" +07/25/2017,Sports_celeb,@drose,📍Las Vegas. July 27-28. Come hang with me at #LVL3 with @adidasHoops https://t.co/QqqYueWv8K +06/30/2017,Sports_celeb,@drose,S/O to my adidas fam for the gear! #crazy #giftedbyadidas @adidasoriginals https://t.co/8NoFA0g4Lr +06/01/2017,Sports_celeb,@drose,Need all my followers to me a favor & vote for @midwestdream_ for the 2017 TBT tourney. Voting ends at 12pm tomorro… https://t.co/NgCYoKgqDj +12/06/2016,Sports_celeb,@drose,Me and my Rook! # Knicks https://t.co/QIOAXQbMSi +09/03/2016,Sports_celeb,@drose,Doing work in @CallofDuty Infinite Warfare. My man @MichaelPhelps is next up! Who wants to play? #CODXP2016 #ad https://t.co/teOemgQWUE +07/21/2016,Sports_celeb,@drose,Check me out today at the @adidashoops #LVL3 experience at Planet Hollywood. I’ll be there from 4:30PM – 6:30PM https://t.co/iz8nvDN656 +06/24/2016,Sports_celeb,@drose,I'm ready for New York. https://t.co/Ib1GA4qbdc https://t.co/BP0uWIJfQX +12/02/2015,Sports_celeb,@drose,RT @chicagobulls: When Derrick Rose surprises you with a shopping spree! #NBACares https://t.co/K4tjjI1Nyr +12/02/2015,Sports_celeb,@drose,"RT @chicagobulls: As part of #NBACares Season of Giving, @drose took teens from @AftrSchoolMttrs on a shopping spree to @adidasHoops! https…" +11/11/2015,Sports_celeb,@drose,Looking for the Yeezy 350 boost? Go check out adidas Style Chicago at 50 East Oak Street. Raffle sign up ends Thursday at 5pm. +11/06/2015,Sports_celeb,@drose,"Thanks for all the love on my PJ shirt, get yours at https://t.co/mDMQdEK9tH + +@richgirlcandy @ziptanks https://t.co/nHrxG53pw9" +04/23/2015,Sports_celeb,@drose,My guys #JoakimNoah and #PauGasol are finalists for the #NBACommunityAssist award. RT to cast your vote +09/12/2014,Sports_celeb,@drose,Thank you @luciamartinez1_ for the gift! Keep working hard http://t.co/XrNjiHgu01 +01/23/2014,Sports_celeb,@drose,Usually don't post pics but couldn't help it. Thanks @adidasHoops for the HARD work! It motivates me to keep GRINDING http://t.co/WIlRUE32Yc +01/12/2014,Sports_celeb,@drose,CDR I'm happy to see you back. You deserve it man +06/11/2013,Sports_celeb,@drose,In the gym working out listening to Born Sinner. @JColeNC you made me a believer. I appreciate yo music. I'll be supporting June 18th. +03/07/2013,Sports_celeb,@drose,"I'm just having a bad day and want u to know ""The Boy"", lol, does have down days but thinking about yall having my BACK makes me feel good." +03/07/2013,Sports_celeb,@drose,"Bren Bren lol, Wayne, Reg, Greedy and the rest of the Rose family I LOVE U." +03/07/2013,Sports_celeb,@drose,"What's the most important thing in life? To me, it's FAMILY...If you take away the fame & fortune they're the ones that will always be there" +01/13/2013,Sports_celeb,@drose,Anything is possible. #blessed http://t.co/H5x9eYag +11/27/2012,Sports_celeb,@drose,I'm all in for my fans RT @adidashoops: WORLD PREMIERE: #TheReturn of @drose Episode 6 - all in http://t.co/B7zVbokU +11/06/2012,Sports_celeb,@drose,My lil man PJ http://t.co/6dCsbhyT +11/06/2012,Sports_celeb,@drose,http://t.co/MPeEokAT +11/06/2012,Sports_celeb,@drose,http://t.co/fcY9VW95 +10/21/2012,Sports_celeb,@drose,because five year went pass and it seem like I just left there! Be safe and Gotti what's up! +10/21/2012,Sports_celeb,@drose,I just wanted to get that off my chest and let yall know that I miss everything about that city +10/21/2012,Sports_celeb,@drose,I know yall remember the good times we had and how we had to make a name for ourselves. +10/21/2012,Sports_celeb,@drose,had. Memphis will always be my second home no matter what! Yall showed me a lot of love and for that I will always stay loyal to you all. +10/21/2012,Sports_celeb,@drose,I was up early thinking about how time goes by. I miss the times I had at the University of Memphis with my teammates and how much fun we +10/19/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 5 - Drive http://t.co/ndar6ke4 +10/18/2012,Sports_celeb,@drose,S/o to Taj McWilliams- Franklin of the Minnesota Lynx for wearing the D. Rose 3 in the WNBA finals...Good Luck! +10/05/2012,Sports_celeb,@drose,The D Rose 3 launched today! Check them out and let me know what you think #TheReturn http://t.co/F6PYWn2t +10/04/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 4 - Push. http://t.co/QikltRcS +10/02/2012,Sports_celeb,@drose,"RT @chicagobulls: #Bulls Captains pose at #mediaday. @drose, @LuolDeng9, @JoakimNoah, @MisterCBooz @ Berto Center http://t.co/DPAgqcRb" +09/27/2012,Sports_celeb,@drose,Got in my first game of #NBA2K13 at the @2ksports launch party. Y'all gotta check this game out! http://t.co/3FNn7tz7 +09/25/2012,Sports_celeb,@drose,New @adidashoops commercial for my new shoe the #drose3. Tell me what you think #TheReturn http://t.co/gtqsC56I +09/20/2012,Sports_celeb,@drose,Best pizza in Chicago? That's easy... @giordanospizza +09/19/2012,Sports_celeb,@drose,"RT @adidasHoops: WORLD PREMIERE: #TheReturn of @drose Episode 3 – +Focus http://t.co/AzESfrbo" +09/13/2012,Sports_celeb,@drose,My new @adidashoops shoe the #drose3!! What do you all think? #TheReturn http://t.co/SRzk825M +09/13/2012,Sports_celeb,@drose,Just arrived at the @adidashoops event to launch my new shoe!! #TheReturn +09/12/2012,Sports_celeb,@drose,Chi town til I die! +09/12/2012,Sports_celeb,@drose,I pray everyday for US for real. I know I shouldn't be saying this because I hoop and it's not my lane but I feel like ppl should hear this. +09/12/2012,Sports_celeb,@drose,I don't like that fact that OUR kids are not in school and that's the only thing we have to SAVE these kids. +09/12/2012,Sports_celeb,@drose,I'm sitting here just thinking how sad it is that my city got to go through this. I love my city and everyone in it even my haters! +09/10/2012,Sports_celeb,@drose,Hope the CPS gets a deal done soon...we need our kids in school! #TheReturn +09/07/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIER: #TheReturn of @drose Episode 2- HOPE http://t.co/6wzZUUek +09/05/2012,Sports_celeb,@drose,Praying for my city man... #TheReturn +08/27/2012,Sports_celeb,@drose,Me and my Mom/Dad lol. Love her to death! #thereturn http://t.co/3gDo5KqF +08/24/2012,Sports_celeb,@drose,It’s crazy to see all of the love and support from you all. Thank you. I am blessed. So glad you like my video. #TheReturn +08/22/2012,Sports_celeb,@drose,Happy to share this with you all!! RT @adidashoops: WORLD PREMIERE: The Return of @drose Episode 1- BELIEF #TheReturn http://t.co/lLlAA7lQ +08/17/2012,Sports_celeb,@drose,Go follow my boys @BO_EE_TeamWinN and @callme_jd ASAP +08/17/2012,Sports_celeb,@drose,Blessed!!! Bowling with the FAM #TheReturn http://t.co/BIzCPShc +08/16/2012,Sports_celeb,@drose,Hard work isn't enough. You got to believe. #theReturn +08/15/2012,Sports_celeb,@drose,RT @adidasHoops: WORLD PREMIERE: The Return of D Rose. Every day @drose is getting stronger and faster. This is his story: http://t.co/r ... +08/15/2012,Sports_celeb,@drose,Feels good to be back in the gym... http://t.co/mrhU7FQk +08/14/2012,Sports_celeb,@drose,Thank you all for the love and support. I feel blessed to have such great fans. Good to be back in Chicago after training all summer in LA +08/12/2012,Sports_celeb,@drose,Congrats @USAbasketball for getting the gold! s/o to @russwest44 @kingjames @kevinlove @kdtrey5 @cp3 and everyone on #teamusa #olympics +08/12/2012,Sports_celeb,@drose,I want to wish everyone on @USAbasketball good luck today. Bring home the gold! Wish I could be out there with you all #teamusa #olympics +06/29/2018,Sports_celeb,@KyrieIrving,My bro @JayTatum0 and I are humbled by all of the support for our @ProCamps Youth Basketball Clinic. After hearing… https://t.co/DZP7Kuc9AY +06/21/2018,Sports_celeb,@KyrieIrving,"Dear Youngbloods, @Pepsi and @PlayersTribune are bringing you the fundamentals—it ain’t about getting famous, it’s… https://t.co/m437aNj9oO" +06/05/2018,Sports_celeb,@KyrieIrving,"Because, nothing works up your thirst for an ice cold @Pepsi like getting buckets #ad https://t.co/q4BzBFEAcw" +05/16/2018,Sports_celeb,@KyrieIrving,Looking forward to co-hosting my @ProCamps youth basketball clinic with @jaytatum0 this summer in Boston! Click for… https://t.co/pxamjockmY +03/17/2018,Sports_celeb,@KyrieIrving,Help @KevinHart4real find a Courtsidekick...enter for the #CourtSidekickContest at https://t.co/RXAavqClWx for a ch… https://t.co/FyUZSHDNjl +03/15/2018,Sports_celeb,@KyrieIrving,RT @Young_Athletes: Registration is now open for the 2018 Kyrie Irving/Rod Strickland Summer Basketball League. @KyrieIrving and @rod_stric… +02/12/2018,Sports_celeb,@KyrieIrving,The Legend is ready to ball on the big screen. Get ready to watch #UncleDrew in theaters June 29! #JustDrewIt… https://t.co/RGw88q9Urt +02/02/2018,Sports_celeb,@KyrieIrving,He gets buckets. He gets @Pepsi. He gets a #SBLII commercial. And the @uncledrewfilm is dropping soon. Check out Un… https://t.co/3Tcr5whUO8 +01/08/2018,Sports_celeb,@KyrieIrving,Jaylen Brown #NBAVote +01/08/2018,Sports_celeb,@KyrieIrving,Al Horford #NBAVote +01/08/2018,Sports_celeb,@KyrieIrving,Jayson Tatum #NBAVote +11/17/2017,Sports_celeb,@KyrieIrving,Proud to support @footlocker and their #GreatnessDoesGood campaign. Join me and go out and donate! #WeekofGreatness https://t.co/9tKziAEmWB +10/27/2017,Sports_celeb,@KyrieIrving,All love and good times when we are all chopping it up! Go check it out. +10/27/2017,Sports_celeb,@KyrieIrving,"Check out Coach Auriemma's @Genopodcast today, w/ myself and @suebird talking life, basketball, and more!! https://t.co/DxP2CjrkGZ" +09/10/2017,Sports_celeb,@KyrieIrving,#11 for Mr. Miagi aka my favorite player aka my best friend. Love you Dad. always https://t.co/gcH77Oj3dk +09/07/2017,Sports_celeb,@KyrieIrving,2K18 For the Culture https://t.co/MKEgW9Aqf3 +09/05/2017,Sports_celeb,@KyrieIrving,"RT @SportsCenter: Exclusive first look: Kyrie Irving and the cast of the upcoming @UncleDrewFilm. + +Can you name all the NBA stars? https://…" +08/10/2017,Sports_celeb,@KyrieIrving,RT @NBA2K: Introducing this year's #NBA2K18 cover athlete @KyrieIrving in his new @cavs uniform! #2KFirstLook https://t.co/WUE9uasQGA +07/21/2017,Sports_celeb,@KyrieIrving,"https://t.co/GpvHXiEng4 +Short Story Long with @dramadrama check it out." +07/06/2017,Sports_celeb,@KyrieIrving,"In case you missed it, I surprised my dad for #fathersday and remodeled his house on #MyHouzz. Check it out: https://t.co/OTml3rUAGI" +06/30/2017,Sports_celeb,@KyrieIrving,I'm adding another session to my Youth 🏀 @ProCamps presented by @NBA2K next week! Make sure you sign up soon. https://t.co/G6fWUgotvA +06/25/2017,Sports_celeb,@KyrieIrving,Love seeing my @nba and @wnba family participate in the #NYCPride March! All Love +04/06/2017,Sports_celeb,@KyrieIrving,RT @Young_Athletes: Registration is now open for the 2017 Kyrie Irving/Rod Strickland Summer Basketball League. @KyrieIrving and @rod_stric… +03/02/2017,Sports_celeb,@KyrieIrving,RT @skullcandy: Our search begins for a band to perform on the #Skullcandy stage @VansWarpedTour! Sign up now! #SKULLCANDYSHOWDOWN https://… +02/28/2017,Sports_celeb,@KyrieIrving,"Look good, play good! Best of luck to my Duke Blue Devils tonight as they rock the latest #KYRIE3 https://t.co/2nk99N1mBo" +02/20/2017,Sports_celeb,@KyrieIrving,Thank You New Orleans for the great hospitality for #NBAAllStar and the @NBA for putting on a great production. Thank you Fans!! +02/17/2017,Sports_celeb,@KyrieIrving,RT @NBA2K: https://t.co/pcG5znX59o +02/17/2017,Sports_celeb,@KyrieIrving,"RT @pepsi: ""The All Star game is not necessarily about the votes, it's about getting buckets."" - #UncleDrew https://t.co/TgSMMbidbb" +02/03/2017,Sports_celeb,@KyrieIrving,#TBT from the set with QuestLove https://t.co/ba2HOi297G https://t.co/JCGLvALWpx +01/15/2017,Sports_celeb,@KyrieIrving,Tristan Thompson #NBAVote +01/15/2017,Sports_celeb,@KyrieIrving,Kevin Love #NBAVote +01/12/2017,Sports_celeb,@KyrieIrving,Get after my @NikeTraining workout in the NTC App. #STOPEXERCISING #STARTTRAINING https://t.co/JOHjwbYDx6 +01/10/2017,Sports_celeb,@KyrieIrving,Yessir https://t.co/9eb3YKtpVk +12/30/2016,Sports_celeb,@KyrieIrving,Love using my Cavs in @NBA2K. Pick it up on sale and start your New Year right! +12/13/2016,Sports_celeb,@KyrieIrving,RT @NdotSmitty: It's TCA Tuesday! Text NOLAN to 20222 and $5 goes to help teens with cancer. Text & RT! #GiveTCATuesday #TeamNolan #TeenCan… +12/06/2016,Sports_celeb,@KyrieIrving,To all my young fans - you might have more in common with me than you think #GOBIG @KidsFootLocker https://t.co/2F6DmUSAmj +12/05/2016,Sports_celeb,@KyrieIrving,"Truly proud of all who stood and fought for #NoDALP Progress was made, but the fight is much bigger. Let's Keep pushing towards what is True" +11/28/2016,Sports_celeb,@KyrieIrving,Yessir! Thanks @Nike https://t.co/bXL1zbWNOw +11/22/2016,Sports_celeb,@KyrieIrving,"My prayers and thoughts are with everyone protesting at Standing Rock, I am with you all. #NoDAPL Defend the Sacred." +11/17/2016,Sports_celeb,@KyrieIrving,The #WeekofGreatness is back @footlocker and @kidsfootlocker starting this Saturday! Don’t miss it! https://t.co/o7mQ8Qpq5h +11/15/2016,Sports_celeb,@KyrieIrving,Appreciate the Love brother. @rickyrozay https://t.co/Y8D1rQa9zr +11/12/2016,Sports_celeb,@KyrieIrving,"""Obession is passion on curiosity steroids"" +Keep Pushing. Keep Learning. Keep Growing." +10/24/2016,Sports_celeb,@KyrieIrving,Just an inside look at life for me outside the game. Enjoy and I hope it can inspire you in some way. Thanks @SInow https://t.co/IC16PQ1VXY +10/20/2016,Sports_celeb,@KyrieIrving,"Yessir @KingJames, but don't forget about my game 5 fire. #whatsnext https://t.co/ft1I0sELch" +09/25/2016,Sports_celeb,@KyrieIrving,"Rest in Power Jose Fernandez. The world lost a great baseball player, but more importantly an even better person. Prayers up for his family." +09/16/2016,Sports_celeb,@KyrieIrving,Today's #2KDay. You already know the best day of my year. This is a close 2nd @NBA2K https://t.co/0RvBiFalks https://t.co/u1x7GiY6zW +09/16/2016,Sports_celeb,@KyrieIrving,Back to the #TheLand Sat 9/24 for @BestBuddiesOhio 1st Kyrie Friendship Walk & B-Ball Challenge. Sign up to support: https://t.co/6mRS0syV7e +09/09/2016,Sports_celeb,@KyrieIrving,I’ll get u next time on the tennis courts @Money23Green. It's #TimeToAssemble @NBA2K #NBAK17 https://t.co/0RvBiFalks https://t.co/veUuNU1VrS +07/24/2016,Sports_celeb,@KyrieIrving,This was hilarious! We surprised some fans along with @MarriottRewards. Watch the video! #FriendOfMR https://t.co/ysXFLUGsTI +07/12/2016,Sports_celeb,@KyrieIrving,Yessir! We are live on @CallofDuty.  Ready to watch? https://t.co/0CMdR5LXg8 #spon https://t.co/OAKfpXX5Hq +07/04/2016,Sports_celeb,@KyrieIrving,"RT @dukeblueplanet: Kyrie goes 1-on-1 with The GOAT + +🖥 WATCH: https://t.co/mmQsx6Im5b https://t.co/8da4CITBZI" +07/04/2016,Sports_celeb,@KyrieIrving,RT @WNBA: Tiffany Hayes does her best @KyrieIrving impression! #WNBATopPlays #WatchMeWork https://t.co/gTwFioPyzM +07/01/2016,Sports_celeb,@KyrieIrving,RT @nikebasketball: The Shot. Mission accomplished. #tbt #AlwaysBelieve https://t.co/PwFBvmHsr9 +07/01/2016,Sports_celeb,@KyrieIrving,Yessir @KingJames https://t.co/eDt2iFVlot +06/20/2016,Sports_celeb,@KyrieIrving,RT @KidsFootLocker: Thanks to @KyrieIrving #NBAFinals performance #KidsFootLocker will donate 190 Nike Kyries to @BGCA_Clubs Cleveland! htt… +05/17/2016,Sports_celeb,@KyrieIrving,"The Ky-Rispy Kreme, hot out the oven. Yessir! #Kyrie2. https://t.co/ZVP1gzAwhx" +05/10/2016,Sports_celeb,@KyrieIrving,'92 was a special year. #Kyrache https://t.co/Av3zyZvwdy +05/05/2016,Sports_celeb,@KyrieIrving,"Happy birthday brother @chrisbrown +#AllLove through whatever." +04/30/2016,Sports_celeb,@KyrieIrving,Watch highlights of me or watch me do my laundry. Or both. Only on @go90 +04/14/2016,Sports_celeb,@KyrieIrving,Great times last week with Marriott Rewards Premier Cardmembers and @jalenrose in Chicago #MarriottCard @chase https://t.co/fzPxolb40e +04/14/2016,Sports_celeb,@KyrieIrving,Mother Effin amazed!!!!!! Left the game on his terms and his way! Legend engraved in history forever!! +04/13/2016,Sports_celeb,@KyrieIrving,"Nothing but LOVE for Kobe, but I'll still break that old man's ankles… #LegendsLiveOn @NBA2K https://t.co/yCjCo8CiVy" +04/12/2016,Sports_celeb,@KyrieIrving,"Check it out!! +https://t.co/kHVnS1SQ64" +04/12/2016,Sports_celeb,@KyrieIrving,@skullcandy and I are taking it to another level. I'm happy to announce that I’m now an owner of the brand. +04/11/2016,Sports_celeb,@KyrieIrving,Prepare and play off Instinct. #mambaday https://t.co/zTNTFdG8E1 +04/11/2016,Sports_celeb,@KyrieIrving,"RT @cavs: Tomorrow, help us with an off-court assist to collect baby items for @DVCAC. #CavsCare INFO: https://t.co/7s727n1ME2 https://t.co…" +04/10/2016,Sports_celeb,@KyrieIrving,"RT @nikebasketball: History is written one word at a time. +Join us and tell Kobe your last word. #MambaDay https://t.co/ffrHhYEbBt +https://…" +04/07/2016,Sports_celeb,@KyrieIrving,IT’S A REVOLUTION. #NIKEFREE #JUSTDOIT https://t.co/0mrVqh6sLD +04/07/2016,Sports_celeb,@KyrieIrving,@stlindgren My brother Ryan Miller is an absolute Legend! And He's family so thats my guy. +03/30/2016,Sports_celeb,@KyrieIrving,Need y'all to Vote for my brother @Tsu_Surf to be the 2016 @XXL Freshmen 10th Spot! https://t.co/FuJGrgQPlx +03/15/2016,Sports_celeb,@KyrieIrving,Gotta have options!! https://t.co/D043UHSGP0 +03/14/2016,Sports_celeb,@KyrieIrving,"From my first bucket, to my Ky-reer High. None of this is possible without you, Dad. This is for you. #KYRIE2 https://t.co/wCn0Q0Gt7I" +03/07/2016,Sports_celeb,@KyrieIrving,"Control what you can control. Sounds so cliche, but its the bold truth. +Good Morning!!" +02/27/2016,Sports_celeb,@KyrieIrving,Funny song titles @BC24CLE @salma_PG24 @mattburroughs. Got me hyped to hit the studio! My @nikebasketball fam will hook you up. #KYRIE2 +02/27/2016,Sports_celeb,@KyrieIrving,RT @mattburroughs: @KyrieIrving KY-RAZY TRAIN (THE KILLA KROSSOVER KY-REMIX) do I get to pick it up court side or you need my address? #KYR… +02/27/2016,Sports_celeb,@KyrieIrving,RT @salma_PG24: @KyrieIrving You are my Ky-ryptonite #KYRIE2 +02/27/2016,Sports_celeb,@KyrieIrving,RT @BC24CLE: @KyrieIrving Ky of the Tiger #KYRIE2 +02/23/2016,Sports_celeb,@KyrieIrving,@KristineLeahy for sure!! +02/23/2016,Sports_celeb,@KyrieIrving,@KristineLeahy Ghost are definitely real and those bed bugs were staring me in my eyes when i woke up. nothing ghost about that one lol +02/23/2016,Sports_celeb,@KyrieIrving,LOL All of the above!!! +02/23/2016,Sports_celeb,@KyrieIrving,"Options on the day off, Start a new book, Go get some shots up, Swag on people in @NBA2K , or dominate in @CallofDuty .orr All of the above." +02/20/2016,Sports_celeb,@KyrieIrving,800 million copies sold lol. What should I name my next Kyrie-oke single? Best answer wins a signed album. #KYRIE2 https://t.co/mctHrqmKfB +02/20/2016,Sports_celeb,@KyrieIrving,Sheesh @Dame_Lillard +02/20/2016,Sports_celeb,@KyrieIrving,Through the good and bad you remained the same fierce competitive player. A true pleasure… https://t.co/pH5tQx1kpc +02/19/2016,Sports_celeb,@KyrieIrving,Hey @Usher you dig the vocals fam? #Kyrieoke #KYRIE2 https://t.co/A6opPUmtDP +02/18/2016,Sports_celeb,@KyrieIrving,Bout to have the whole R&B game shook. The Kyrie-oke has officially dropped #KYRIE2 https://t.co/W2xXv4rJWq +02/13/2016,Sports_celeb,@KyrieIrving,Imitated but never duplicated. Check it out! Yessir @nikebasketball @footlocker #Kyrie2 https://t.co/njHb1IYFQu +02/09/2016,Sports_celeb,@KyrieIrving,Behold! My latest trick. The @NIKEiD Ky-Razzle Dazzle. #KYRIE2 https://t.co/8fH1DcYtU6 +01/28/2016,Sports_celeb,@KyrieIrving,Fire! https://t.co/W3H13Xjmno +01/28/2016,Sports_celeb,@KyrieIrving,"""Obession is passion on curiosity steroids"" +#Cantstop +#wontstopworking" +01/28/2016,Sports_celeb,@KyrieIrving,enjoy them!! https://t.co/CwXWWweWVM +01/28/2016,Sports_celeb,@KyrieIrving,SWAG https://t.co/At6hiq7WhT +01/28/2016,Sports_celeb,@KyrieIrving,@bbreznick @kevinlove how could we fall from the top if their team is still winning games? +01/26/2016,Sports_celeb,@KyrieIrving,"RT @nikebasketball: Today @KyrieIrving is taking over. Stay tuned to go behind the scenes with Kyrie on Snapchat. + +👻NikeBasketball https://…" +01/17/2016,Sports_celeb,@KyrieIrving,Kevin Love #NBAVote +01/17/2016,Sports_celeb,@KyrieIrving,Lebron James #NBAVote +01/15/2016,Sports_celeb,@KyrieIrving,Thanks for the support @WojVerticalNBA https://t.co/m6pn5k8BeG +01/08/2016,Sports_celeb,@KyrieIrving,#THISYEARIWILL continue 2 be Hungry & Humble. Go to @skullcandy 2 find out how you could win XT Free Earbuds. https://t.co/783RN5qX3p +01/01/2016,Sports_celeb,@KyrieIrving,It's an INFERNO type of day. #Kyrie2 +01/01/2016,Sports_celeb,@KyrieIrving,"Left hand works the dribble, right hand gets the syrup. #BringYourGame Watch the full film: https://t.co/u5rFZvwVIn https://t.co/Yqo6ROuOXZ" +12/30/2015,Sports_celeb,@KyrieIrving,Fire coming soon. #Kyrie2 #Inferno https://t.co/EkgeACMOCX +12/30/2015,Sports_celeb,@KyrieIrving,Fire coming soon. #Kyrie2 #Inferno https://t.co/Q2z7rPEqQp +12/25/2015,Sports_celeb,@KyrieIrving,Where do you practice? #BringYourGame https://t.co/0uJXdijXVx +12/21/2015,Sports_celeb,@KyrieIrving,Work hard and continue to climb no matter the obstacles. I'm excited to be back and happy to share my story. https://t.co/tEorQppten +12/19/2015,Sports_celeb,@KyrieIrving,I'm back. +12/18/2015,Sports_celeb,@KyrieIrving,Got the W and my brother @chrisbrown 's album has uploded to my phone. #Greatnight +12/16/2015,Sports_celeb,@KyrieIrving,I had to make extra pancakes for some unexpected guests this morning #BringYourGame https://t.co/KwSveOltBM +12/16/2015,Sports_celeb,@KyrieIrving,"Sorry to dwindle the news, but I won't be returning tmrw. It was wrongfully reported. When I do come back you'll hear it directly from me." +12/15/2015,Sports_celeb,@KyrieIrving,Still a dream. https://t.co/W85Vik6XUK +12/11/2015,Sports_celeb,@KyrieIrving,Tomorrow! You think you can beat me in @NBA2K on XBOX One? I’ll send you a KYRIE 2 if you can. #2Kyrie2 https://t.co/jjF9gdPuL2 +12/10/2015,Sports_celeb,@KyrieIrving,This Saturday I am hosting a special event in @NBA2K. Be at MyPARK at 6PM EST sharp. #2Kyrie2 https://t.co/ewAIyHJDS0 +12/09/2015,Sports_celeb,@KyrieIrving,"https://t.co/3zSiQCVWeT +check it out!!" +12/06/2015,Sports_celeb,@KyrieIrving,nothing like good ol' Gaming talk. https://t.co/54UgILglF2 +12/03/2015,Sports_celeb,@KyrieIrving,"haha, I appreciate all that you all do for our world. https://t.co/bmgzpSuVtX" +12/01/2015,Sports_celeb,@KyrieIrving,Thank you for having me on!! #GivingTuesday https://t.co/yU4Z9qdqeY +12/01/2015,Sports_celeb,@KyrieIrving,Thank you for everything you all continue to do for our great world. https://t.co/XmSUVnIYNQ +11/25/2015,Sports_celeb,@KyrieIrving,"Azurie Elizabeth Irving 11/23/15 +35 hours of labor from her great mother and she came into the world… https://t.co/z1cBekk690" +11/23/2015,Sports_celeb,@KyrieIrving,i took a hiatus lol but i still appreciate the support of everyone for the game of basketball and myself. https://t.co/WvUmJoOU39 +11/23/2015,Sports_celeb,@KyrieIrving,line up crazy!! https://t.co/nHX67fHR2o +11/23/2015,Sports_celeb,@KyrieIrving,"@lexuswebb its my favorite part as well. I miss her, but i know she's watching me every second i breathe." +11/23/2015,Sports_celeb,@KyrieIrving,@damonhargejr #workworkwork lol +11/23/2015,Sports_celeb,@KyrieIrving,"@GusTrolly i like to describe my style as ""r&b skater"" lol" +11/23/2015,Sports_celeb,@KyrieIrving,@Barnette77 very soon! +11/23/2015,Sports_celeb,@KyrieIrving,@AnquanBoldin @pepsi Appreciate it brother +11/23/2015,Sports_celeb,@KyrieIrving,yessir. great design!! enjoy. https://t.co/v1FRIw8VgV +11/23/2015,Sports_celeb,@KyrieIrving,lol man epic TBT https://t.co/TfGFOsrlS1 +11/23/2015,Sports_celeb,@KyrieIrving,"RT @nicekicks: These guys...@KyrieIrving @imanshumpert. Cavs get the W! (h/t @ @Joseph_Talcott) + +https://t.co/nyEhhDDFk2" +11/14/2015,Sports_celeb,@KyrieIrving,"Prayers for the victims, families, and people of France affected by this horrible Tradgedy. #WeAreWithYouParis" +11/12/2015,Sports_celeb,@KyrieIrving,The wait is over! Uncle Drew brought his game to MIA and caught up with some old friends. #UncleDrew https://t.co/ki6pbr483B +11/09/2015,Sports_celeb,@KyrieIrving,"RT @pepsi: It’s been a long time coming, get ready for some new Uncle Drew on 11/12. #UncleDrew +https://t.co/W10QbwFZMS" +11/05/2015,Sports_celeb,@KyrieIrving,Thanks for the sick Zombies package @CallofDuty. Who's ready to play #BlackOps3? https://t.co/a5jOidSsum +10/25/2015,Sports_celeb,@KyrieIrving,Will be everlasting. #RestinPeace +10/25/2015,Sports_celeb,@KyrieIrving,"Rest in Paradise Coach Flip. I didn't personally know him, but the effect he had on the game and many players lives that have come before me" +10/11/2015,Sports_celeb,@KyrieIrving,start with one battle and end up watching like 15 lol past and new. nothing like some battle bars +10/11/2015,Sports_celeb,@KyrieIrving,"Watching this Roc vs Calicoe battle, sheeshh!!! #Toomanybars" +10/09/2015,Sports_celeb,@KyrieIrving,Congrats to my little brother @BryceAiken on his committment to Harvard. Couldn't be more proud. http://t.co/B7t5WNrNMB +10/05/2015,Sports_celeb,@KyrieIrving,#stilladream https://t.co/EkOSbZkiak +09/22/2015,Sports_celeb,@KyrieIrving,Facts. https://t.co/Td0zeR6mBB +09/21/2015,Sports_celeb,@KyrieIrving,Fletcher’s story will change how you drive. Eyes up. Phone down. #ItCanWait #ad http://t.co/0Q1MCoe00L http://t.co/U76Le6aMxs +09/16/2015,Sports_celeb,@KyrieIrving,"Thank you @AppleMusic +Yall have made my life 10x easier when listening to music. +#MyPlaylists is en fuego" +09/14/2015,Sports_celeb,@KyrieIrving,RT @jhairston15: Thank you Lord for waking me up this morning and starting me on my way #Blessed +09/14/2015,Sports_celeb,@KyrieIrving,Twas' a good day. +09/14/2015,Sports_celeb,@KyrieIrving,RT @nickemandjoey: Hey @matthewdelly @KyrieIrving @kevinlove How about a retweet for @DJNickAtKnight who is 3yrs cancer free today! https:/… +09/08/2015,Sports_celeb,@KyrieIrving,haha i need one of those. https://t.co/a61iVosM5b +09/08/2015,Sports_celeb,@KyrieIrving,Appreciate you. Keep working and find #YourWHY. https://t.co/hl9QeXdzuM +09/08/2015,Sports_celeb,@KyrieIrving,haha thats hilarous. 8th Grade Roosevelt Middle School Swag Champ lol https://t.co/UfwJhchpMX +09/08/2015,Sports_celeb,@KyrieIrving,Fire!! https://t.co/ymrcvFg87A +09/08/2015,Sports_celeb,@KyrieIrving,@joshgrant7725 I appreciate it. Dope color way +09/08/2015,Sports_celeb,@KyrieIrving,@ZayBriscoe Destroy this year. +09/08/2015,Sports_celeb,@KyrieIrving,Remember who you watched to get that in your game. Ill see ya soon. https://t.co/urT7QXaO5c +08/31/2015,Sports_celeb,@KyrieIrving,#VOTEFETTYWAP +08/30/2015,Sports_celeb,@KyrieIrving,Swag!! any jersey will due. https://t.co/thvCL6Wo5e +08/30/2015,Sports_celeb,@KyrieIrving,RT @champssports: Game inspired from all over the world. @PSDunderwear @KyrieIrving http://t.co/KiYQSsbXyu +08/28/2015,Sports_celeb,@KyrieIrving,Appreciate the Hospitality @callofduty Great to test out #BlackOpsIII as well. Can't wait for the drop. https://t.co/fx6gfTNMGT +08/21/2015,Sports_celeb,@KyrieIrving,"RT @SoleCollector: An on-foot look at the ""Australia"" Nike Kyrie 1: http://t.co/MG87G8FgyB http://t.co/IJwFwCf7A5" +08/21/2015,Sports_celeb,@KyrieIrving,Summer just got better. Loading up the PS4 for the @CallofDuty #BO3Beta now. Come play too... http://t.co/e4dmPGfJPM +08/19/2015,Sports_celeb,@KyrieIrving,Swag!! #Duke https://t.co/vPJegQcSjP +08/18/2015,Sports_celeb,@KyrieIrving,yessir bro. Keep killin! https://t.co/1yM4XQNYxw +08/18/2015,Sports_celeb,@KyrieIrving,RT @gseves: Jacob is on point for his first day or school in his @KyrieIrving gear! Can't wait for @cavs season! http://t.co/McCMFyzpEP +08/13/2015,Sports_celeb,@KyrieIrving,"Happy Birthday Mom. I miss you and I wish you could see me now, but I know you're up there prideful… https://t.co/9bhFb9fgPv" +08/06/2015,Sports_celeb,@KyrieIrving,RT @shegotgame: @sbird10 custom NikeID @nikebasketball Kyrie 1s she'll be wearing in today's @wnba All-Star game. 🔥🔥🔥 #WNBAAllStar http://t… +08/04/2015,Sports_celeb,@KyrieIrving,"""@GeeQJerry: Say yeah - http://t.co/2S3M9LULK0"" check it out!!" +08/02/2015,Sports_celeb,@KyrieIrving,#AndSTILL @RondaRousey +07/30/2015,Sports_celeb,@KyrieIrving,Yo bro @KDTrey5 im at @sonicdrivein what should i get? http://t.co/PKjrV9zvcB +07/27/2015,Sports_celeb,@KyrieIrving,"RT @cavs: Welcome back to #TheLand, mate! + +OFFICIAL RELEASE: http://t.co/J581gDaWA6 http://t.co/89GTwFCldB" +07/26/2015,Sports_celeb,@KyrieIrving,When you have flavors at your camp. #StillaDream https://t.co/Oq3Yi8HERt +07/26/2015,Sports_celeb,@KyrieIrving,#StillaDream https://t.co/bEWORMXlCw +07/16/2015,Sports_celeb,@KyrieIrving,Listen to The Really Big Show on @ESPNCleveland this morning to win a spot in my basketball @ProCamps +07/14/2015,Sports_celeb,@KyrieIrving,That was truly a show!! #HRDerby congrats to Todd Frazier +07/14/2015,Sports_celeb,@KyrieIrving,This derby is getting real... +07/14/2015,Sports_celeb,@KyrieIrving,Just nasty Albert Pujols...#HRDERBY +07/07/2015,Sports_celeb,@KyrieIrving,Never missed the game this much ever in my life. Can't take that feel of a basketball going through the net for granted. Ever. +06/05/2015,Sports_celeb,@KyrieIrving,I want to thank everyone for the well wishes. Saddened by the way I had to go out but it doesn't take… https://t.co/zXY3mtV2vg +04/07/2015,Sports_celeb,@KyrieIrving,RT @nikebasketball: Play for a legend. Win for the legacy. #justdoit http://t.co/0A02bpLeUv +04/07/2015,Sports_celeb,@KyrieIrving,Yessssiiiirrrrr!!!! Way to go DUKE!!!!!!!! +04/05/2015,Sports_celeb,@KyrieIrving,RT @nikebasketball: Final. Not finished. #ShockTheGame @dukeblueplanet http://t.co/dO3WZBqCRC +04/05/2015,Sports_celeb,@KyrieIrving,Yessir!! Way to go Duke!! ONE more. +02/13/2015,Sports_celeb,@KyrieIrving,I'll be at the Kids @footlocker Herald Square today at 6pm! Come stop by! +02/09/2015,Sports_celeb,@KyrieIrving,"RT @KingJames: By k1irving """"Grammy Night"" Drew and kingjames"" +#GrammyFamily #TheLand #StriveForGreatness http://t.co/vURFI7zgz5" +02/02/2015,Sports_celeb,@KyrieIrving,"Game for the ages, crazy!!!" +02/01/2015,Sports_celeb,@KyrieIrving,Huge Congrats #MVP @AaronRodgers12 +01/26/2015,Sports_celeb,@KyrieIrving,#Coach1K Congrats coach!! Legendary. +12/22/2014,Sports_celeb,@KyrieIrving,"Thank you @usabasketball for the award. Truly means alot to me, my family, and the city of Cleveland. Glad I could share it with them." +12/04/2014,Sports_celeb,@KyrieIrving,RT @nikebasketball: Deceptively quick. The #KYRIE1. Available December 23. http://t.co/fZ0ezJeUpU +11/06/2014,Sports_celeb,@KyrieIrving,Check it out. @skullcandy is giving away 4 major prizes!! http://t.co/CKf5R28NR7 +10/27/2014,Sports_celeb,@KyrieIrving,“@Tanman1771: Hey @KyrieIrving which jersey shall I wear on opening night?? http://t.co/36jlCJkGyi” all dope options!! +10/25/2014,Sports_celeb,@KyrieIrving,"“@eastinfection: Alright @cavs @KyrieIrving , which one do I go with for opening night? http://t.co/EICoUjATwG” great collection!! Any one!!" +10/24/2014,Sports_celeb,@KyrieIrving,Thank you to all the fans for coming out to the event...#GoCavs +10/23/2014,Sports_celeb,@KyrieIrving,RT @Ballislife: 9th Grade PG Damon Harge Is Next UP! Shows Off Crazy Quickness & Handles at Lucas Camp http://t.co/a6ZDFWcCYF http://t.co/3… +10/22/2014,Sports_celeb,@KyrieIrving,"“@DaLIzMoBeta21: @KyrieIrving What you know about him young man??” Lol just a lil bit, great music nonetheless" +10/22/2014,Sports_celeb,@KyrieIrving,🎶🎶 Kenny G +10/14/2014,Sports_celeb,@KyrieIrving,“@ComplexMag: Hoop Dreams was released on this day 20 years ago. http://t.co/yLDRhKtk0H http://t.co/IQqefK0c96” true motivation right there. +10/12/2014,Sports_celeb,@KyrieIrving,Beautiful Sunday in Cleveland +10/10/2014,Sports_celeb,@KyrieIrving,RT @cavs: .@KyrieIrving greets a few families from Best Buddies International after practice #NBAGlobalGames http://t.co/5xOEinY2l1 +10/09/2014,Sports_celeb,@KyrieIrving,RT @cavs: Smiles for days! We've added NEW behind-the-scenes photos to our #BSLS14 [GALLERY]: http://t.co/l5kUvJvDMo #TBT http://t.co/kApMC… +10/09/2014,Sports_celeb,@KyrieIrving,“@cavs: Kyrie knows it's going in... Walkoff https://t.co/iHQ65LvA0n” yessir +10/08/2014,Sports_celeb,@KyrieIrving,@WizKaharie haha +10/08/2014,Sports_celeb,@KyrieIrving,"Just a sprained ankle from practice, in a walking boot for precautionary reasons. Not that serious, I'm all good." +10/08/2014,Sports_celeb,@KyrieIrving,@Aceofhearts111 dream big +06/26/2018,Sports_celeb,@BenSimmons25,RT @rpjward: Nike isn't messing around after @BenSimmons25 won #NBA Rookie of the Year. This is corner of Flinders and Swanston Sts in down… +06/26/2018,Sports_celeb,@BenSimmons25,RT @espn: Rookie of the Year (noun) - Ben Simmons https://t.co/KFeZvB0LJM +06/22/2018,Sports_celeb,@BenSimmons25,RT @livvalice: #savvystrong 🖤💝 https://t.co/Epw1y1fAEP +06/15/2018,Sports_celeb,@BenSimmons25,RT @blakeney96: 🤫🤐 #AllWorkNoTalk +06/14/2018,Sports_celeb,@BenSimmons25,RT @brkicks: .@BenSimmons25 inspiring kids in China with @nikebasketball https://t.co/ClJni9rYeH +06/12/2018,Sports_celeb,@BenSimmons25,Day 1 in China 🇨🇳✌🏽️ https://t.co/XaEyX1yJiQ +05/27/2018,Sports_celeb,@BenSimmons25,#losangeles My Godfather @CoachDPatrick & my Brother @LTribeSimmons are running a camp this summer! Hit the link an… https://t.co/2LfH0HzOGB +04/13/2018,Sports_celeb,@BenSimmons25,@livvalice 😂😂😂😂 +04/12/2018,Sports_celeb,@BenSimmons25,RT @ESPNNBA: Ben Simmons may have more Magic in his game than anyone we've ever seen. https://t.co/JvbjQw7ALS +04/12/2018,Sports_celeb,@BenSimmons25,RT @NBA_305: Ben Simmons & Magic Johnson. Enjoy! 💛🏀 https://t.co/xG7uZFPisO +04/11/2018,Sports_celeb,@BenSimmons25,@darealjlaw 😂 +04/11/2018,Sports_celeb,@BenSimmons25,"RT @Dcorrigan50: ben simmons did not red shirt + +ben simmons broke his foot and literally couldn't play basketball for half a year + +in what…" +04/11/2018,Sports_celeb,@BenSimmons25,"RT @Lakers: After 384 games in the @nbagleague, Andre Ingram walks onto the court for the first time as an @NBA player. + +At 32 years, 4 mon…" +04/10/2018,Sports_celeb,@BenSimmons25,"RT @oh_sohilarious: Ben Simmons can't be an All-Star because he is a rookie. + +But also... + +Ben Simmons can't be the Rookie of the Year bec…" +04/05/2018,Sports_celeb,@BenSimmons25,@OpTic7Teen 👀 +04/05/2018,Sports_celeb,@BenSimmons25,"RT @shawngill27: Twitter fam, please help my group raise money for the Philadelphia Animal Welfare Society! Our goal is $1,250! Please retw…" +04/05/2018,Sports_celeb,@BenSimmons25,@L4fckop @CelticsIn2 @SportsCenter 😂 +04/04/2018,Sports_celeb,@BenSimmons25,"RT @SportsArePhilly: Voting time 😤 + +Retweet if you believe Ben Simmons is the NBA Rookie of the Year #KiaROY #sweepstakes #HereTheyCome ht…" +04/03/2018,Sports_celeb,@BenSimmons25,PUBG w/KAT https://t.co/fiWt3wQ7kl +04/03/2018,Sports_celeb,@BenSimmons25,@KarlTowns @FortniteGame lets go +04/02/2018,Sports_celeb,@BenSimmons25,RT @z0mgItsHutch: We are joined by @BenSimmons25 who's begrudgingly decided to give Fortnite another shot. https://t.co/IKxDXM1yIA +04/02/2018,Sports_celeb,@BenSimmons25,"RT @sixers: .@BenSimmons25 is the Rookie of the Year. #KiaROY + +VOTE » https://t.co/TOTYNNnpkl https://t.co/nUpYk2UV4Q" +04/02/2018,Sports_celeb,@BenSimmons25,Time for some pubg who’s down ? +04/02/2018,Sports_celeb,@BenSimmons25,@JoshOG 😂😂🤟🏽 +04/01/2018,Sports_celeb,@BenSimmons25,@JoshOG duos +03/31/2018,Sports_celeb,@BenSimmons25,All this money being made and they get a swag bag at the end of it. https://t.co/V6cYE7lGFL +03/31/2018,Sports_celeb,@BenSimmons25,"RT @SLAM_HS: Geico Nationals Champion ✅ +Undefeated season (35-0) ✅ +Next up, Duke. https://t.co/Y7jLWdcqyj" +03/31/2018,Sports_celeb,@BenSimmons25,"@Pamaj I’m going to give it another shot, let me know when we are playing 🤟🏽" +03/31/2018,Sports_celeb,@BenSimmons25,RT @DuceVasquez: @BenSimmons25 When you can't play PUBG but realize you're dating Tinashe https://t.co/OOEhrvy3Cn +03/31/2018,Sports_celeb,@BenSimmons25,When you on the road and can’t play pubg https://t.co/Vuptypr86Z +03/30/2018,Sports_celeb,@BenSimmons25,RT @Tinashe: ME SO BAD ft @Frenchmonta and @tydollasign out now 💕💦 https://t.co/ZXFej1B8gn https://t.co/INbnZlvVzJ +03/29/2018,Sports_celeb,@BenSimmons25,RT @Tinashe: Midnight🎾💓💦 album pre order + new song https://t.co/idVcj720WH +03/29/2018,Sports_celeb,@BenSimmons25,@LosPollosTV Pubg +03/29/2018,Sports_celeb,@BenSimmons25,@KarlTowns 👀 PUBG? +03/29/2018,Sports_celeb,@BenSimmons25,@Timberwolves @KarlTowns 😂😂 +03/26/2018,Sports_celeb,@BenSimmons25,RT @KarlTowns: Prayers out to Zeke Upshaw’s family 🙏🏽🙏🏽🙏🏽 +03/24/2018,Sports_celeb,@BenSimmons25,@JoelEmbiid #Facts +03/22/2018,Sports_celeb,@BenSimmons25,RT @brkicks: A detailed look at @BenSimmons25 in custom Hyperdunks by @ubiqlife 🔥 https://t.co/D8v9x834fz +03/22/2018,Sports_celeb,@BenSimmons25,@76ersArmageddon @ColinCowherd 😂 https://t.co/zf1KPhA2EV +03/20/2018,Sports_celeb,@BenSimmons25,@MightyMouseUFC let’s run duos on pubg +03/20/2018,Sports_celeb,@BenSimmons25,RT @SportsCenter: Ben Simmons is the first rookie in NBA history to drop 15 assists and 0 turnovers in a triple-double. #SCFacts https://t.… +03/19/2018,Sports_celeb,@BenSimmons25,@DennisChambers_ 😂😂😂😂 +03/19/2018,Sports_celeb,@BenSimmons25,@z0mgItsHutch @FortniteGame 😂alright I’ll give it a try +03/14/2018,Sports_celeb,@BenSimmons25,@MeekMill is featured in the latest issue of @RollingStone. Read about social injustice & more:… https://t.co/OHWASe2ONQ +03/11/2018,Sports_celeb,@BenSimmons25,RT @uninterrupted: @BenSimmons25 Shout out for reppin' the movement! #IAmMore +03/03/2018,Sports_celeb,@BenSimmons25,RT @MichaelSkolnik: They got video games in Australia. https://t.co/4YTuH7HAh9 +02/28/2018,Sports_celeb,@BenSimmons25,"RT @35_Fitz: Philly, I appreciate my short time with you guys, great fans and a great future." +02/23/2018,Sports_celeb,@BenSimmons25,What’s better ??? @Tinashe strongly believes one is clearly better and she is clearly wrong..🙄 +02/21/2018,Sports_celeb,@BenSimmons25,@OpTicH3CZ @DXRacer @z0mgItsHutch Just let me know so we can play. Thanks brother 💪🏽 +02/21/2018,Sports_celeb,@BenSimmons25,@OpTicH3CZ @DXRacer I also need help 😂 +02/21/2018,Sports_celeb,@BenSimmons25,RT @hdawwggg: Spotted on Chapel Street. @BenSimmons25 is that you bro? 🤔 https://t.co/vBu62Os8Xv +02/08/2018,Sports_celeb,@BenSimmons25,@darealjlaw https://t.co/xApxGCCgcF +02/08/2018,Sports_celeb,@BenSimmons25,Should I stream pubg? +02/06/2018,Sports_celeb,@BenSimmons25,RT @UNDEFEATEDinc: .@BenSimmons25 for Beats By Dre / UNDEFEATED. Available now at All Chapter Stores and https://t.co/rPhV7ZP2Fc https://t.… +02/05/2018,Sports_celeb,@BenSimmons25,Big shout out to the @Eagles ! That was a crazy game & to see the city celebrate like that was something else… https://t.co/TSvJDG422h +01/31/2018,Sports_celeb,@BenSimmons25,Best episode for sure 😂😂 https://t.co/fWz0xaxX5z +01/31/2018,Sports_celeb,@BenSimmons25,😂 +01/25/2018,Sports_celeb,@BenSimmons25,🤭 https://t.co/oJ4HwWKsJs +01/21/2018,Sports_celeb,@BenSimmons25,Bring it home today @Eagles #BirdGang 🦅 +01/21/2018,Sports_celeb,@BenSimmons25,@TheWorldof_AJ Do work today 🙌🏽 +01/16/2018,Sports_celeb,@BenSimmons25,@JackButland_One Thank you mate ✌🏽️ +01/15/2018,Sports_celeb,@BenSimmons25,It’s Go Time 😤 +01/15/2018,Sports_celeb,@BenSimmons25,“The time is always right to do what is right” - MLK #MartinLutherKingDay +01/15/2018,Sports_celeb,@BenSimmons25,"RT @sixers: ""Our city has preserved his presence as his legacy will never cease to inspire."" + +#MLK50 History with @JuliusErving https://t.c…" +01/15/2018,Sports_celeb,@BenSimmons25,@diplo Appreciate it 👍🏽 +01/15/2018,Sports_celeb,@BenSimmons25,It’s about that time again ⏰ https://t.co/WpKRX6CoPr +01/15/2018,Sports_celeb,@BenSimmons25,@DannyCipriani87 Appreciate it mate 👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@STEEZtheGREAT About to have you looking very pretty. https://t.co/jMo7KHPmpC +01/14/2018,Sports_celeb,@BenSimmons25,Let’s get this done though RT! @STEEZtheGREAT 😂😂😂 https://t.co/xDYsbFkzCR +01/14/2018,Sports_celeb,@BenSimmons25,@Dchristmas22 Appreciate it man 💪🏽 +01/14/2018,Sports_celeb,@BenSimmons25,I actually looked back smh 😒 https://t.co/xEdOf5BCyJ +01/14/2018,Sports_celeb,@BenSimmons25,🤷🏽‍♂️🎬📽😂 https://t.co/BDVkDjWLcr +01/14/2018,Sports_celeb,@BenSimmons25,RT @JusAnderson1: 🚨 #NBAVote @BenSimmons25 Retweet the Hell outta this... Thanks! +01/14/2018,Sports_celeb,@BenSimmons25,@JusAnderson1 🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,Tough @Jonahbolden43 💪🏽 https://t.co/wrvqoQ1bck +01/14/2018,Sports_celeb,@BenSimmons25,@kochie_online 😂 ok I’m gonna have to fact check that +01/14/2018,Sports_celeb,@BenSimmons25,1 Day Left of voting for the NBA All Star Game. The support from fans & the support I’ve seen coming out of Philly… https://t.co/1i7vqNuRWg +01/14/2018,Sports_celeb,@BenSimmons25,Thank you @kochie_online https://t.co/pkzrhsTouM +01/14/2018,Sports_celeb,@BenSimmons25,"@sunriseon7 This is dope 🙌🏽 Thank you Will Smith, need to get you to a game when you’re done enjoying my homeland… https://t.co/N1aByTSvJz" +01/14/2018,Sports_celeb,@BenSimmons25,@Strauchanie 😂 +01/14/2018,Sports_celeb,@BenSimmons25,@WJChambers4 @sixers 🙌🏽🙌🏽🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@markhunt1974 Thank you 💥🥊 +01/14/2018,Sports_celeb,@BenSimmons25,"RT @sixers: @Eagles #NBAVote @BenSimmons25 + +#FlyEaglesFly https://t.co/dxGrbVH5L1" +01/14/2018,Sports_celeb,@BenSimmons25,@swandane Thank you 👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@tyson_pedro_ 💥🥊 Thank you +01/14/2018,Sports_celeb,@BenSimmons25,@SP_10 @NBAAllStar Appreciate it✌🏽️ +01/14/2018,Sports_celeb,@BenSimmons25,Ok now for @LSUBasketball to get that W 😤 #GeauxTigers +01/14/2018,Sports_celeb,@BenSimmons25,@CollingwoodFC 👍🏽👍🏽 +01/14/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers Thank you! 🇦🇺 +01/14/2018,Sports_celeb,@BenSimmons25,#56 🙌🏽 https://t.co/G069Mc91R3 +01/14/2018,Sports_celeb,@BenSimmons25,@KingJames Appreciate it 🙌🏽 +01/14/2018,Sports_celeb,@BenSimmons25,RT @JuliusErving: Send @BenSimmons25 to the all-star game! #NBAVote +01/14/2018,Sports_celeb,@BenSimmons25,@BobDaTruth713 @Eagles https://t.co/PyG3Q7cPaZ +01/13/2018,Sports_celeb,@BenSimmons25,#NBAVOTE @TheWorldof_AJ +01/13/2018,Sports_celeb,@BenSimmons25,@JuliusErving Humbled to have your support Dr Thank you 🙌🏽 +01/13/2018,Sports_celeb,@BenSimmons25,Let’s Go @Eagles 🦅🏈 +01/12/2018,Sports_celeb,@BenSimmons25,"RT @andrewbogut: Logistically, makes sense that Australia is too far for an NBA game. Wait, China, what? Thats $urprising! https://t.co/u4d…" +01/12/2018,Sports_celeb,@BenSimmons25,Laters London 🇬🇧 +01/12/2018,Sports_celeb,@BenSimmons25,"RT @NBL: If the country of Georgia can almost get Zaza to the #NBA all-star game, surely Australia can get @BenSimmons25 across the line.…" +01/11/2018,Sports_celeb,@BenSimmons25,@cj_wentz @JoelEmbiid Speedy recovery mate 🙌🏽 +01/11/2018,Sports_celeb,@BenSimmons25,RT @MNightShyamalan: #nbavote @BenSimmons25 Show the Londoners what a triple double is! (Should be paying attention to the film editor but… +01/11/2018,Sports_celeb,@BenSimmons25,@MNightShyamalan I’m not mad at it. Thanks 👍🏽 +01/10/2018,Sports_celeb,@BenSimmons25,Got shooters on deck in London @JJRedick 🇬🇧 https://t.co/qQO7yLFlpu +01/10/2018,Sports_celeb,@BenSimmons25,"RT @ScottONeil: #nbavote @BenSimmons25 #LondonBridgeIsn’tFallingDown +Retweet to Vote https://t.co/7qVFZqIPQm" +01/10/2018,Sports_celeb,@BenSimmons25,RT @AshBenzo: Fam retweet this as many times as possible and send my friend @BenSimmons25 to the All Star Game in LA #nbavote #greatamerica… +01/10/2018,Sports_celeb,@BenSimmons25,🙌🏽 amazing American https://t.co/0UqX6rzx2p +01/09/2018,Sports_celeb,@BenSimmons25,@ShelleyCronau @BasketballAus @AUSParalympics Thank you 🙌🏽 +01/09/2018,Sports_celeb,@BenSimmons25,@nspeitel1 @JoelEmbiid Looking like a $100 Bill 💵 +01/09/2018,Sports_celeb,@BenSimmons25,Appreciate it Coach #GeauxTigers https://t.co/ghLrM030de +01/09/2018,Sports_celeb,@BenSimmons25,@ScottONeil Thanks Scott 💪🏽 +01/09/2018,Sports_celeb,@BenSimmons25,😤PHILLY ✈️ LONDON💂🏼 https://t.co/n8EBFwpPZk +01/08/2018,Sports_celeb,@BenSimmons25,"RT @ESPNAusNZ: Ben Simmons #NBAVOTE + +Get retweeting NOW. https://t.co/QxGVWfloU5" +01/08/2018,Sports_celeb,@BenSimmons25,@marcmurphy3 Thank you✌🏽️ +01/08/2018,Sports_celeb,@BenSimmons25,🇬🇧💂🏽‍♀️🏀 +01/08/2018,Sports_celeb,@BenSimmons25,@TheWorldof_AJ Appreciate you 🙌🏽 Go get that W #eagles +01/07/2018,Sports_celeb,@BenSimmons25,@Strauchanie @pjhelliar @sixers Coincidence 🤔 +01/07/2018,Sports_celeb,@BenSimmons25,@Giovann1z Thanks ✌🏽️ +01/06/2018,Sports_celeb,@BenSimmons25,@HGrimmNBA https://t.co/8HB6yPRv0C +01/06/2018,Sports_celeb,@BenSimmons25,🥊 #OTTNO #NBAVOTE Ben Simmons https://t.co/vprbfO6rws +01/06/2018,Sports_celeb,@BenSimmons25,@DaveSholler Appreciate it Dave 👍🏽 +01/06/2018,Sports_celeb,@BenSimmons25,"RT @LSUBasketball: OH MY! Take a look at the highlights as LSU defeated No. 11 Texas A&M in College Station, marking the highest ranked tru…" +01/06/2018,Sports_celeb,@BenSimmons25,I see you @LSUBasketball 🔥 +01/06/2018,Sports_celeb,@BenSimmons25,😤 +01/05/2018,Sports_celeb,@BenSimmons25,"You guys knew this was coming right? Having a crazy season, I know enough about wine to know that some get better w… https://t.co/IDsZ4pFNK4" +01/05/2018,Sports_celeb,@BenSimmons25,@Holla_At_Rob33 @JoelEmbiid Let’s get that W🔥 +01/05/2018,Sports_celeb,@BenSimmons25,@LG_Blount Appreciate you man 🙌🏽 +01/05/2018,Sports_celeb,@BenSimmons25,🚀🤷🏽‍♂️👨🏽‍🚀 https://t.co/co63N4Jyev +01/05/2018,Sports_celeb,@BenSimmons25,@PuntKing23 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@lezew Chur✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@livvalice ❤️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @livvalice: At 4 he said he wanted to play NBA. +LETS MAKE HIM AN ALL STAR + +Ben Simmons #NBAVote https://t.co/DoT3SnkCQp" +01/05/2018,Sports_celeb,@BenSimmons25,@digiskunk Photoshop? +01/05/2018,Sports_celeb,@BenSimmons25,@Joao_machado00 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@Skillish Lol idk 🤷🏽‍♂️ Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@WriterLeader247 Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@danieljcarrr 🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,"RT @118Carter: @BenSimmons25 can I get a retweet for a fan from Darwin Australia 🇦🇺 + +#NBAVote Ben Simmons" +01/05/2018,Sports_celeb,@BenSimmons25,RT @TheKevinRice: #NBAVote Joel Embiid https://t.co/7mlbMQ04O0 +01/05/2018,Sports_celeb,@BenSimmons25,@Jj70981706Jj 🇯🇵✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @JoeHockey: C’mon Australia Ben needs our votes to get be the first Aussie into the NBA All Stars Game +So retweet + #NBAVote @BenSimmons…" +01/05/2018,Sports_celeb,@BenSimmons25,@JoeHockey Thanks Joe 👍🏽🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,@AdamandSymon #1 & #3 is true & #2 thank you +01/05/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers @Strauchanie https://t.co/LOf9HfVfP5 +01/05/2018,Sports_celeb,@BenSimmons25,@sixers @pjhelliar 😂 +01/05/2018,Sports_celeb,@BenSimmons25,"Ok ok I gotta eat 😂 Massive thanks to all the voters out there, really really appreciate it ✌🏽️" +01/05/2018,Sports_celeb,@BenSimmons25,@samjacobs24 Thanks mate +01/05/2018,Sports_celeb,@BenSimmons25,@MFC_clark 😂 +01/05/2018,Sports_celeb,@BenSimmons25,@HipJoeyD @CallofDuty https://t.co/XIeH9u4E5j +01/05/2018,Sports_celeb,@BenSimmons25,@philadelph_215 🤔 +01/05/2018,Sports_celeb,@BenSimmons25,@Eber7y HTTP 404 Not Found Error +01/05/2018,Sports_celeb,@BenSimmons25,@AtomicDrizz1e 🇦🇺✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@travyates Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@Tom_Thorp Looking forward to that trip 🇬🇧 +01/05/2018,Sports_celeb,@BenSimmons25,@matthewdelly Appreciate it man #NBAVOTE @matthewdelly 🇦🇺 +01/05/2018,Sports_celeb,@BenSimmons25,@brianmburns10 Not sure it works like that but thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@TimHipsley Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@NBL Pops should have known it’s always game time 😤😂 +01/05/2018,Sports_celeb,@BenSimmons25,@josh_green6 Keep balling young man 👀 +01/05/2018,Sports_celeb,@BenSimmons25,@GovbergMarc Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@racheldiane96 Thanks for the vote! +01/05/2018,Sports_celeb,@BenSimmons25,@malcon___ Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@3rdDegreeBurns8 You’re welcome +01/05/2018,Sports_celeb,@BenSimmons25,@pjhelliar @sixers Guys is #59 available? +01/05/2018,Sports_celeb,@BenSimmons25,@WillStangler Cajun Wings are nice though FR. Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@Sean_DeLancey Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@ChrisReive Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@lololololiver Straya 🤙🏽🤙🏽 +01/05/2018,Sports_celeb,@BenSimmons25,@19895530 👍🏽👍🏽 +01/05/2018,Sports_celeb,@BenSimmons25,@EdwinPavisic Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@brianmburns10 Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@matthillman10 20 ... Nah jokes probably around 1 Million 😂 +01/05/2018,Sports_celeb,@BenSimmons25,@Adrien_bdu 🇫🇷✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @BallersDU: From @BallersDU to another BALLER from down Under + +Make sure you RT to make your vote count!!! + +Let’s get some 🇦🇺 Representa…" +01/05/2018,Sports_celeb,@BenSimmons25,@LetEmKnoBigSean Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@kate_880 ... thank you too though +01/05/2018,Sports_celeb,@BenSimmons25,@Cake_Eater_ @JoelEmbiid @NBAAllStar 🤣 +01/05/2018,Sports_celeb,@BenSimmons25,"@mickyb273 Thanks, it’s very humbling." +01/05/2018,Sports_celeb,@BenSimmons25,@runningfades @JoelEmbiid Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@YumyumHsu Thank you very much. Looking forward to it. +01/05/2018,Sports_celeb,@BenSimmons25,"@krABBEY_patty_ Don’t die, thank you!" +01/05/2018,Sports_celeb,@BenSimmons25,@sixersforever76 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@acjr_20 Thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@jrabbott14 Thank you +01/05/2018,Sports_celeb,@BenSimmons25,@kurtwearshats #photographervote @kurtwearshats +01/05/2018,Sports_celeb,@BenSimmons25,@JoshJenkins24 Thanks 👍🏽 +01/05/2018,Sports_celeb,@BenSimmons25,"RT @FoxBasketball: 🚨 ATTENTION, AUSTRALIA! 🚨 + +Let’s get @BenSimmons25 into the #NBA All Star Game! + +#NBAVOTE https://t.co/nHoHvILvql" +01/05/2018,Sports_celeb,@BenSimmons25,@BradKelsey @JoelEmbiid ✅✅ +01/05/2018,Sports_celeb,@BenSimmons25,"RT @kelianinho: Come on vote for the future of the NBA @BenSimmons25 ! + +#NBAVote +Retweet= Vote ✅ https://t.co/I375IKVTLM" +01/05/2018,Sports_celeb,@BenSimmons25,@daggles07 Nice pick up +01/05/2018,Sports_celeb,@BenSimmons25,@The_6God_ Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,@Sann_chezzz @JoelEmbiid Thanks +01/05/2018,Sports_celeb,@BenSimmons25,RT @ziyadmerhebi: Best PUBG player in the league #NBAVOTE Ben Simmons @BenSimmons25 +01/05/2018,Sports_celeb,@BenSimmons25,@ziyadmerhebi 😂 Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@JustRae11 Hi 🇵🇭 +01/05/2018,Sports_celeb,@BenSimmons25,@SeanKlavans @JoelEmbiid ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@JTLuvGuru Thanks ✌🏽️ +01/05/2018,Sports_celeb,@BenSimmons25,@E_B_TParkes Thanks +01/05/2018,Sports_celeb,@BenSimmons25,@isabeIIIa Appreciate it +01/05/2018,Sports_celeb,@BenSimmons25,"RT @sixers: It's up to you... send @JoelEmbiid & @BenSimmons25 to LA for the @NBAAllStar Game! + +2-FOR-1 #NBAVOTE » https://t.co/1Y7M23uEqQ…" +01/05/2018,Sports_celeb,@BenSimmons25,@KB7FIFA ✌🏽️ +06/28/2018,Sports_celeb,@RobGronkowski,"Here is the link to the shirt since many of you are asking +#AmericanMade +https://t.co/y6VCHOSFOO" +06/28/2018,Sports_celeb,@RobGronkowski,What a day at @JBLM_PAO outside Seattle. I got to hang out with a lot of true warriors that protect our Great count… https://t.co/6VgZgIz4P2 +06/28/2018,Sports_celeb,@RobGronkowski,Way more jacked! 😂 https://t.co/ykw6Kf3Nl5 +06/26/2018,Sports_celeb,@RobGronkowski,"Good times back home for a good cause. Who Thinks my shirt came off on the dance floor? + +Check it out:… https://t.co/kEPqV5NoyD" +06/20/2018,Sports_celeb,@RobGronkowski,"Thinking outside the BOX 😜 & diversifying my portfolio!📈 Healthy, easy and most importantly @snowteethwhiten works… https://t.co/Y50RDa5hOd" +06/20/2018,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: Want to feel on top of the world? Run for a cause. Run the @FalmouthRR @charityteams for @RobGronkowski @GronkNation Team… +06/19/2018,Sports_celeb,@RobGronkowski,Want game day tix to see me play? Want to meet me? How about some autographed merch!? You can have it all by enter… https://t.co/jjU1TATWa9 +06/15/2018,Sports_celeb,@RobGronkowski,"Happy Pre Fathers Day to the best one out there... The CREATOR. +#FathersDay +https://t.co/Li5xqrYA11" +06/14/2018,Sports_celeb,@RobGronkowski,"Nothing is more American than babes, burgers and Gronk Spikes on the 4th! 🇺🇲🇺🇲🇺🇲#Merica + +Get in on the action:… https://t.co/MEfpRmidxs" +06/11/2018,Sports_celeb,@RobGronkowski,Thanks @Shaws & @Star_Mrkt for giving these lucky winners an opportunity to hang out with me on the field! We had a… https://t.co/oMGGqoulXF +06/11/2018,Sports_celeb,@RobGronkowski,Another year down at the #GronkKidsCamp! 🏈 The energy at this camp was off the charts. 📈📈📈 Thanks to everybody tha… https://t.co/xyLRsPsqTd +06/10/2018,Sports_celeb,@RobGronkowski,"RT @WHR: ""He's big, strong, fast, beautiful, handsome - so yes, we have a lot in common"" - @RobGronkowski 😂 + +Gronk met Gronk at the @Belmon…" +06/10/2018,Sports_celeb,@RobGronkowski,Thank you @CitiPrivatePass for helping these campers get #CloserToPro and inside the huddle at my Annual @ProCamps!… https://t.co/PTpUCMkDr5 +06/06/2018,Sports_celeb,@RobGronkowski,"Back to Camp!🏈👍 +https://t.co/KSliUKmqZm" +06/04/2018,Sports_celeb,@RobGronkowski,"Fresh and Smooth +https://t.co/Nctw5a6DEv" +06/03/2018,Sports_celeb,@RobGronkowski,I’ll be so much faster now! Thanks @buzzforkids for the fresh new summer cut! Great day with the kids #7xbuzzee… https://t.co/EuDb4Wxjyd +06/03/2018,Sports_celeb,@RobGronkowski,Yes!!!! https://t.co/c1W0OZib1J +06/01/2018,Sports_celeb,@RobGronkowski,"Getting down and derby! Gronkowski the Horse 🐴 races next Saturday 6/9 at Belmont. 🐴🐴🐴 +Order this weekend to get o… https://t.co/ZsFNViFIrY" +05/31/2018,Sports_celeb,@RobGronkowski,NBA finals and NHL finals. A great week for sports! 🏒 🏀 Lots of history going down! +05/31/2018,Sports_celeb,@RobGronkowski,"Video Games while using my Snow Teeth Whitening Kit! Get yours now using code ""Gronk"" for 25% off! It's easy chee… https://t.co/IjF29uZu3v" +05/30/2018,Sports_celeb,@RobGronkowski,Be #GronkAwesome 💪. Hungry for gains? https://t.co/twianiIw9y #teammuscletech #sponsored https://t.co/mEqw41YuLf +05/26/2018,Sports_celeb,@RobGronkowski,RT @DJWhooKid: Me and @steveaoki bumping his new smash #Pretender on @Shade45 for my #MemorialDayWeekend mix 💥💥💥💥💥 #WhoosHouse #WhoolywoodS… +05/25/2018,Sports_celeb,@RobGronkowski,"What do people expect to happen on 6/9? - The official Gronk National Holiday + +https://t.co/sdqPzZ7fAB" +05/23/2018,Sports_celeb,@RobGronkowski,RT @SixStarPro: G R O N K S P I K E 🍉💀@RobGronkowski #gronkspike #PatsNation #summer2018 #gronk https://t.co/N2b6mP7jCE +05/23/2018,Sports_celeb,@RobGronkowski,He is so handsome! Hehe https://t.co/AwEujKd8BP +05/16/2018,Sports_celeb,@RobGronkowski,RT @charityteams: Join @RobGronkowski @GronkNation @FalmouthRR Team! Get guaranteed entry and run to support youth sports. Go to https://t.… +05/15/2018,Sports_celeb,@RobGronkowski,"Thanks for all the Birthday Wishes!!! 29 and feeling damn fine!😜 +https://t.co/QF8jbUc60v" +05/05/2018,Sports_celeb,@RobGronkowski,That was a great basketball game to watch. Nice win @celtics +04/30/2018,Sports_celeb,@RobGronkowski,"I present to you my first protein bar that I developed with my team @muscletech! Does it taste like a candy bar, ye… https://t.co/YK7c8KhVms" +04/27/2018,Sports_celeb,@RobGronkowski,"Off season means no hiding under a helmet. Let's get those teeth SMOOTH and WHITE! @snowteethwhiten +Who's with me?… https://t.co/m9GfPKFrfH" +04/26/2018,Sports_celeb,@RobGronkowski,Who remembers when the most hyped person ever got drafted? You should have all known I was going to be out of contr… https://t.co/LTJ0X8wO7w +04/26/2018,Sports_celeb,@RobGronkowski,"RT @uninterrupted: .@RobGronkowski is back! And he's super, super pliable. https://t.co/W69RpYzfWe" +04/26/2018,Sports_celeb,@RobGronkowski,"I’m back for another year, and so is my Youth 🏈 Clinic! Click 👇 for info on my @CitiPrivatePass Youth Football Clin… https://t.co/p8R5cSMEwW" +04/25/2018,Sports_celeb,@RobGronkowski,"I met with coach today and informed him I will be back for the 2018 season with the Pats. I have been working out,… https://t.co/jKzab4e3b1" +04/23/2018,Sports_celeb,@RobGronkowski,It’s unfortunate Gronkowski the horse will not be able to race in the upcoming Kentucky Derby due to an illness. I… https://t.co/dOvyCNYItO +04/23/2018,Sports_celeb,@RobGronkowski,JuSt taking it to levels that people have never seen before. That’s all. https://t.co/wsuU8mzziD +04/19/2018,Sports_celeb,@RobGronkowski,"RT @KentuckyDerby: Gronk now part owner of Gronk.👊🏽 + +@RobGronkowski buys stake in namesake #KyDerby horse: https://t.co/XUOVgCDNJF https://…" +04/18/2018,Sports_celeb,@RobGronkowski,"It's official, I am part of the Gronkowski Team! +GRONK ACQUIRES A STAKE IN GRONK ... THE KENTUCKY DERBY-BOUND RACEH… https://t.co/Gdps4CbXMX" +04/17/2018,Sports_celeb,@RobGronkowski,Give it up for the Gronk Nation Marathon team who bleasted it though the #Bostonmarathon yesterday and helped raise… https://t.co/Q8KNGEBOwo +04/17/2018,Sports_celeb,@RobGronkowski,"Shout out to some awesome kids I got to recently meet, Ben & Ryan. Stay Strong!!! #MSDStrong #ParklandStrong https://t.co/lfMd5EtNKa" +04/16/2018,Sports_celeb,@RobGronkowski,"That time @calliebundy threw a laser 😂. With the squad @sixstar + @gronkfitness +https://t.co/n9cjBJwInc #ad… https://t.co/a5b09ArxpQ" +04/16/2018,Sports_celeb,@RobGronkowski,"I’ll never forget those famous words. 5 years later, I’m proud to collab with my man @davidortiz on this Still Our… https://t.co/wMikx1vcH9" +04/15/2018,Sports_celeb,@RobGronkowski,5 years later IT’S STILL OUR CITY! Help me and Big Papi raise money for the kids of Boston and get your Still Our C… https://t.co/l0NNfe5NH9 +04/14/2018,Sports_celeb,@RobGronkowski,RT @DeionSanders: All athletes please understand this is a business 1st. Nothing comes b4 the business part of professional sports. You can… +04/14/2018,Sports_celeb,@RobGronkowski,RT @davidortiz: Proud to team up with one of Boston’s finest....my brother @RobGronkowski ...we created this t-shirt to raise $ for the Gro… +04/13/2018,Sports_celeb,@RobGronkowski,"It's #FlexFriday w/@GronkFitness +#BandsAmakeHerDance https://t.co/pdtVteKg9g" +04/12/2018,Sports_celeb,@RobGronkowski,Sox vs Yankees brawls/rivalry is back. The action I love to see! +04/11/2018,Sports_celeb,@RobGronkowski,"From Gronk's Showtime Comedy Special and my Gronk Cruise, my buddy @FinesseMitchell is shooting his 1hr comedy spec… https://t.co/y5kM5tZvAH" +04/06/2018,Sports_celeb,@RobGronkowski,RT @CallieBundy: Working hard orrr hardly working?? Well one of us was working hard thanks for the ride @RobGronkowski 😂 On-set with @SixSt… +04/05/2018,Sports_celeb,@RobGronkowski,"RT @SixStarPro: We’re now live with @robgronkowski, ask your questions! Be sure to tag @sixstarpro and use the hashtag #SixStarGronk to hav…" +04/03/2018,Sports_celeb,@RobGronkowski,"What an awesome time hanging with Lauren. #KeepFighting +https://t.co/3KtwcRWqxV" +04/02/2018,Sports_celeb,@RobGronkowski,Everyone needs a Goon! +03/30/2018,Sports_celeb,@RobGronkowski,Ooo Chan ❤️ Snapchat https://t.co/fWSaLYpoOD +03/30/2018,Sports_celeb,@RobGronkowski,Make sure you sign up for my @CitiPrivatePass Youth 🏈 Clinic in partnership with @Shaws & @Star_Mrkt! Gonna be a gr… https://t.co/XkIPbPyqwX +03/30/2018,Sports_celeb,@RobGronkowski,RT @DerbyMedia: Gronkowski - named for @Patriots star tight end @RobGronkowski – collected his 4 straight win in Friday's Burradon Stakes @… +03/30/2018,Sports_celeb,@RobGronkowski,Help @YourCommissary win a @ProCamps this summer. Vote at https://t.co/O4aa3bdWzI or text your base name to 1-201-7… https://t.co/lNyCJR5CeS +03/27/2018,Sports_celeb,@RobGronkowski,Just in case you missed the action- @SHAQ https://t.co/Dx0aADRnNC +03/22/2018,Sports_celeb,@RobGronkowski,@Edelman11 @MartysaurusRex Hey guys!! How are ya? +03/20/2018,Sports_celeb,@RobGronkowski,I love Band Camp! I love 🛏 Bed! Night! +03/18/2018,Sports_celeb,@RobGronkowski,Prepping starting back up now! Show down coming soon @Chrisgronkowski @OrlandoRVargas watch out folks. All I can sa… https://t.co/7UR6Hh6R5N +03/17/2018,Sports_celeb,@RobGronkowski,Watch me #GronkSpike this @Michaelsstores MAKE Off against @BusyPhilipps! https://t.co/cnORz1JbrR #ad +03/15/2018,Sports_celeb,@RobGronkowski,"It was a honor playing with ya @dannyamendola Stay lit, Be FREE, Be HAPPY. Your hard work, the way you play at your… https://t.co/6JdRQ7rCbi" +03/14/2018,Sports_celeb,@RobGronkowski,@KVN_03 Thank you. Just getting started!! +03/14/2018,Sports_celeb,@RobGronkowski,“Bands a make her dance” I repeat “Bands a make her dance” 💃🏼Aye Captain!!! +03/13/2018,Sports_celeb,@RobGronkowski,"Who are your top 4? #GronkMadness +Check out my picks +https://t.co/5xyhrem1Yh" +03/06/2018,Sports_celeb,@RobGronkowski,Registration for my 6th Annual @CitiPrivatePass Youth 🏈 Clinic in partnership with @shaws & @Star_Mrkt and @tide is… https://t.co/l39nwnSq0v +03/05/2018,Sports_celeb,@RobGronkowski,#UntilWeAllWin https://t.co/l97CusBAV1 +03/02/2018,Sports_celeb,@RobGronkowski,My marathon team is serious about training & they're going to look the best on Patriots Day thanks to @NikeBoston… https://t.co/F0OSIsf1OC +03/02/2018,Sports_celeb,@RobGronkowski,“ Bands a make her dance “ +03/02/2018,Sports_celeb,@RobGronkowski,I want YOU to head to my partner @DunkinBoston this month between 2pm-6pm to get a $2 Iced Coffee. #TBT https://t.co/cNxrKNQVAN +02/28/2018,Sports_celeb,@RobGronkowski,#clueless 🤷‍♂️ +02/27/2018,Sports_celeb,@RobGronkowski,It's a team effort with Family and Friends! @MojoRawleyWWE https://t.co/Av1AK5UBe2 +02/26/2018,Sports_celeb,@RobGronkowski,There are NO limits!!!!! +02/24/2018,Sports_celeb,@RobGronkowski,"Forseee your own future, control your own temptations, and your destiny will be not just be reached, it will just be starting." +02/22/2018,Sports_celeb,@RobGronkowski,"Boston showing up big time at the NBA All Star Game! +https://t.co/bm8gP1PpcS" +02/16/2018,Sports_celeb,@RobGronkowski,"Run the 2018 Boston Marathon for Team @GronkNation. Our team has the BIGGEST heart! Raise funds for youth sports,… https://t.co/isd94lEIpM" +02/15/2018,Sports_celeb,@RobGronkowski,Honored and blessed to present these checks to 3 amazing organizations who support amazing kids that need some extr… https://t.co/pyn9lQyaBo +02/14/2018,Sports_celeb,@RobGronkowski,"Happy Valentine's Day to all of you beautiful people! +https://t.co/qjXwVbpmyV" +02/03/2018,Sports_celeb,@RobGronkowski,"Congrats Timothy Bessette. Enjoy the game! +Thanks for everybody who participated. We raised a lot of money for Cha… https://t.co/HO68Susfd3" +02/03/2018,Sports_celeb,@RobGronkowski,Clock is ticking...last call to enter to WIN a TRIP to the BIG GAME! Go to https://t.co/ZQ1UcEoa06 while there's st… https://t.co/51yHiQC3RB +02/02/2018,Sports_celeb,@RobGronkowski,"It's go time. #SBLII +https://t.co/fOY9HId8R1" +02/01/2018,Sports_celeb,@RobGronkowski,"Hooking you guys up before the Big Game! Buy one, get one FREE all t-shirts - check it out now at… https://t.co/ZlhkhoClxq" +02/01/2018,Sports_celeb,@RobGronkowski,Ladies... this one's for you https://t.co/zQEHGnBuR3 https://t.co/Vj61PLjIIv +01/30/2018,Sports_celeb,@RobGronkowski,".@DavidKHarbour , don't drop the ball like @terrybradshaw. Spike it instead! #TideAd #SBLII #gronkspike https://t.co/xUXODrKHIG" +01/30/2018,Sports_celeb,@RobGronkowski,"RETWEET this post for a chance to win this FREE SIGNED jersey. Winner will be announced Saturday at 3pm PST. + +Plus-… https://t.co/4lUgmbK2fK" +01/30/2018,Sports_celeb,@RobGronkowski,"This is Great! +https://t.co/cIGHgSJFgf" +01/29/2018,Sports_celeb,@RobGronkowski,"Congrats on the big win! + +Want to win the BIG prize, two tickets to the SB? Grab gear now for your chance to win:… https://t.co/9jgSdhvEs5" +01/29/2018,Sports_celeb,@RobGronkowski,Can’t wait to go head to head against @lg_blount on #XboxLiveSessions #SuperBowl edition! Tune in 1/30 @ 5:30 p.m… https://t.co/nM0jsXoP0B +01/26/2018,Sports_celeb,@RobGronkowski,"This is what it's all about! #KeepFighting +https://t.co/hjy3RojMfM" +01/25/2018,Sports_celeb,@RobGronkowski,"RETWEET for your chance to win a FREE SIGNED Gronk ball or photo. Winner will be announced Monday at 3pm EST. + +Plu… https://t.co/k0hXRwzFBl" +01/23/2018,Sports_celeb,@RobGronkowski,A pleasure meeting you Robbie! #Goodtimes https://t.co/CgDEFmxnZp +01/20/2018,Sports_celeb,@RobGronkowski,Final Minutes to get in the https://t.co/kptIwmB9Oa. Get in the action and support a good cause! https://t.co/pu82rqa0ng +01/19/2018,Sports_celeb,@RobGronkowski,"Who agrees with me? Our amazing pats fans were going BAZOOKA crazy. +https://t.co/BFt25diAZV" +01/19/2018,Sports_celeb,@RobGronkowski,"TIME EXTENDED! +You can win tickets to the AFC Championship Game! +https://t.co/kptIwmB9Oa + +Funds raised go to:… https://t.co/L1FWrkUm1N" +01/19/2018,Sports_celeb,@RobGronkowski,RT @DJWhooKid: 😂😂 @Patriots taking it again this year 💀🏈🏈🏈🏈🏈💥💥 @RobGronkowski https://t.co/ZC5kEMiGMZ +01/18/2018,Sports_celeb,@RobGronkowski,"The https://t.co/kptIwmB9Oa ends tomorrow at noon EST. +YOU CAN'T WIN IF YOU ARE NOT IN! + +Additional 25 Prizes incl… https://t.co/xojbe39n9g" +01/17/2018,Sports_celeb,@RobGronkowski,"RETWEET this post to for your chance to WIN. +Winner will be picked Thursday at 12pm EST + +To win tickets to the AFC… https://t.co/lnZjXLiCa5" +01/17/2018,Sports_celeb,@RobGronkowski,"Congrats @BobDiMa1 you are the winner. The Gronk Team will hit you up shortly. + +For the rest of you check out th… https://t.co/ieC8Ceag8r" +01/16/2018,Sports_celeb,@RobGronkowski,"You can win tickets to the AFC Championship Game! +https://t.co/kptIwmB9Oa + +Retweet this video to support the cause!… https://t.co/o8Ql4teYdT" +01/16/2018,Sports_celeb,@RobGronkowski,"Check out the Video of Gronk making Danny Amendola disappear. #magic #GronkNews #teamwork +https://t.co/SFdBnUsnZL" +01/15/2018,Sports_celeb,@RobGronkowski,"RETWEET this post to for your chance to win a https://t.co/KDXhzPpJOz playoff bundle and a Signed Gronk Photo +Winne… https://t.co/rhTPNgonzm" +01/14/2018,Sports_celeb,@RobGronkowski,"https://t.co/kptIwmB9Oa +The Pats are going to the AFC Championship Game, AND SO CAN YOU! +We are giving 3 lucky win… https://t.co/RdM2kHtv6v" +01/13/2018,Sports_celeb,@RobGronkowski,"I’ve partnered with @Tide to make sure you know, Tide PODs are for doing laundry. Nothing else! https://t.co/Oo7n7ZZpbG" +01/12/2018,Sports_celeb,@RobGronkowski,@walmart is rolling back their prices on my fuel for a limited time. Get your own https://t.co/44J67UMJ0G #ad… https://t.co/nE2nkGyahr +01/11/2018,Sports_celeb,@RobGronkowski,"You can still make it to the game! Get in the action and Win Some Tickets. 🏈🏈 +#GronkNews + +https://t.co/oNGIKKn8tQ" +01/09/2018,Sports_celeb,@RobGronkowski,"The road has been set. It's go time. #GronkNews +https://t.co/rglQOiTGOJ" +01/05/2018,Sports_celeb,@RobGronkowski,Thank you voters! Hard work and working Smarter is paying off!!! +01/05/2018,Sports_celeb,@RobGronkowski,Givin' away 2 TICKETS + HOTEL to our first playoff game next Saturday! Grab gear now for a chance to win 👉… https://t.co/vjZn28DeDz +01/04/2018,Sports_celeb,@RobGronkowski,"You want to see some funny stuff? Check out ""Unsportsmanlike Comedy"" Friday night if you want the full Gronk. +Find… https://t.co/ZTKv40IMhT" +12/31/2017,Sports_celeb,@RobGronkowski,Haha you know it man!! Glad your back https://t.co/COhhmdDSw0 +12/29/2017,Sports_celeb,@RobGronkowski,An excellent role model on and off the field. Thank you Nate for being such a great teammate. Post the hashtag… https://t.co/yywrCCdbDF +12/29/2017,Sports_celeb,@RobGronkowski,Hey there! https://t.co/6YgfZjHmPB +12/26/2017,Sports_celeb,@RobGronkowski,"RT @uninterrupted: Ho ho ho! @RobGronkowski may have another big game this week but today, Santa Claus is in town. https://t.co/SutWRCm3Sz" +12/25/2017,Sports_celeb,@RobGronkowski,Merry Christmas 🎄🎁 !! Boxers and socks from Santa!! 😀 https://t.co/wRj38RqD8O +12/20/2017,Sports_celeb,@RobGronkowski,"It is always an honor to be selected to the pro bowl. Congrats to my other teammates and thanks fans!!! + +""GRONK SEL… https://t.co/RaTkTn68My" +12/20/2017,Sports_celeb,@RobGronkowski,Why be a regular santa when you can be a #DonutSanta? I’m hooking up all the boys with dozens of @DunkinBoston donu… https://t.co/o4MH1JRJA0 +12/18/2017,Sports_celeb,@RobGronkowski,"The emotions were out of control on that last drive, it was like a roller coaster! +https://t.co/0jNjgJ8CEf… https://t.co/eP35fQsBDr" +12/13/2017,Sports_celeb,@RobGronkowski,@walmart is rolling back their prices on my fuel. Get your own #ad #greatnessisearned https://t.co/i8a3FRIZql +11/28/2017,Sports_celeb,@RobGronkowski,I want to see the best TD dance with a GronkBall in your hand. Pick yours up from @Brookstone today.… https://t.co/JFIJWm3md0 +11/28/2017,Sports_celeb,@RobGronkowski,#lovecybering #cybermonday https://t.co/26p23tOA24 +11/27/2017,Sports_celeb,@RobGronkowski,"Check out the Gronk Bus getting some love at the end of the first quarter. +To get in the action check out… https://t.co/S98gFlCclB" +11/24/2017,Sports_celeb,@RobGronkowski,"Always good to get out in the community on Turkey Day. +Check out what I did: https://t.co/dY4ug12M9d https://t.co/pGxDpVFCiV" +11/18/2017,Sports_celeb,@RobGronkowski,Game day face! #letsgo https://t.co/kcyeX6mSv2 +11/16/2017,Sports_celeb,@RobGronkowski,"""Yo Soy Fiesta"" my friends! +https://t.co/PX6JKZqCFe" +11/14/2017,Sports_celeb,@RobGronkowski,Are you breaking a mental sweat? If you’re working hard this year don’t miss your chance to win $15K from Six Star… https://t.co/50zQos0QuS +11/13/2017,Sports_celeb,@RobGronkowski,Get to @Brookstone now and pick up your Gronk Ball. #GronkBall https://t.co/uKTPYWBfBM +11/09/2017,Sports_celeb,@RobGronkowski,Chilly chilly! 💨 https://t.co/ao00UmNRgu +11/08/2017,Sports_celeb,@RobGronkowski,Hit me for a pass deep! Make sure party rock is playing. 🤣 https://t.co/wETZ2AkOR1 +11/08/2017,Sports_celeb,@RobGronkowski,@Brookstone Hit me for a pass deep! Make sure party rock is playing. 🤣 +11/06/2017,Sports_celeb,@RobGronkowski,My Bro @GordieGronk and I showed fans what it takes to spike like us w/ our #partner @DunkinBoston. Thank you to ev… https://t.co/PwbHJr10HD +11/02/2017,Sports_celeb,@RobGronkowski,"#TBT rocking out!Now we gotta vote them into the Rock & Roll HOF! Vote at https://t.co/K0dPDpHbrx. #BonJoviRockHall + +https://t.co/2j1wlbbs20" +10/31/2017,Sports_celeb,@RobGronkowski,Happy 🎃 Halloween from Gronkenstein! https://t.co/Fln4FKZCIj +10/31/2017,Sports_celeb,@RobGronkowski,Oo she good! Fun times for sure! https://t.co/3wTECMMmVJ +10/26/2017,Sports_celeb,@RobGronkowski,#TBT to shooting with @SixStarPro #ad #greatnessisearned https://t.co/3cv7MywggH +10/26/2017,Sports_celeb,@RobGronkowski,Mark your 🗓 ! My 2018 @CitiPrivatePass Youth 🏈 Clinic is set! Citi cardmembers have presale now👇 #CloserToPro https://t.co/NVpes40QXP +10/25/2017,Sports_celeb,@RobGronkowski,She OBVS thinks I’m great-See more of what #UFC beauty @AirannyCeleste and I are up to on my new show #MVP here:… https://t.co/ACaBZwmGPm +10/23/2017,Sports_celeb,@RobGronkowski,"SWAT team takes down Gronkenstein! +Last chance to get your Gronkenstein tee in time for #Halloween.… https://t.co/u3JQfNzMFz" +10/21/2017,Sports_celeb,@RobGronkowski,"Not only do the ladies love the moves, so does coach. +https://t.co/oYNgsO9pSF" +10/20/2017,Sports_celeb,@RobGronkowski,RT @usnikefootball: Put the team on your back. Share a photo in your jersey using #WhoYouWith to show how you rep the squad. https://t.co/y… +10/18/2017,Sports_celeb,@RobGronkowski,"1. #Touchdown +2. #Dance +3. #Spike +Tips - Move out of the way while spiking is occurring Tom Brady +https://t.co/SXQHy46JiJ" +10/16/2017,Sports_celeb,@RobGronkowski,Nice job bro!!! #teamwork https://t.co/yXYarCNSLz +10/16/2017,Sports_celeb,@RobGronkowski,Congrats! #unreal https://t.co/zJH5QAlN0H +10/16/2017,Sports_celeb,@RobGronkowski,Solid team win on the road baby! Let's keep it going +10/09/2017,Sports_celeb,@RobGronkowski,Today’s the big launch for Season 2 of my show @mvp_show! Watch the show on #go90Zone - https://t.co/40FcJs61q7 Sha… https://t.co/S26vMvnQRK +10/04/2017,Sports_celeb,@RobGronkowski,ReTweet for a chance to win this signed photo! Check out the new https://t.co/Qm6JkX4qNl for a chance to win 2 tick… https://t.co/Az3OgTpqjb +09/26/2017,Sports_celeb,@RobGronkowski,Check out the new https://t.co/KDXhzPpJOz website - The official home of my bros and I. Phase 1 complete with a lot… https://t.co/0a8piwmIor +09/25/2017,Sports_celeb,@RobGronkowski,Kaboom!! #Gronkspike https://t.co/4ccTEDf6Zz +09/24/2017,Sports_celeb,@RobGronkowski,Wow what a game! Super Solid team win vs a really good team.That was some great football to watch fellows! +09/18/2017,Sports_celeb,@RobGronkowski,Thank you bro! 😂 https://t.co/Q9TJvcRALK +09/16/2017,Sports_celeb,@RobGronkowski,Nice work! https://t.co/rAV6aPSuOW +09/12/2017,Sports_celeb,@RobGronkowski,Ladies and Gentlemen some good action is coming soon! https://t.co/erPWyURbx2 +09/11/2017,Sports_celeb,@RobGronkowski,@liamallbright No chance it is. Fake for sure +09/11/2017,Sports_celeb,@RobGronkowski,RT @Patriots: 9.11.01 🇺🇸 #NeverForget https://t.co/Ufs6xWAMWI +09/09/2017,Sports_celeb,@RobGronkowski,Thank you very much! 😂 😂 https://t.co/RhYReJZ71a +09/09/2017,Sports_celeb,@RobGronkowski,"You guys are crazy, it's great lol 😂 https://t.co/thX2oKGk7z" +09/09/2017,Sports_celeb,@RobGronkowski,Very interesting. Do not mess with Mother Nature !! Everyone stay safe down there in FL! +09/09/2017,Sports_celeb,@RobGronkowski,Been following up on Hurricane Irma a lot the past few days. Did some research on hurricanes and been learning a lot bout Mother Nature. +09/09/2017,Sports_celeb,@RobGronkowski,Got a lot of work to do! Long season gotta keep on grinding hard! Watching some College football today looking for some good games. +09/07/2017,Sports_celeb,@RobGronkowski,"It’s been awhile, but I’ve practiced my spike with @Tide. Ready to leave it all on the field & earn the stink. GO P… https://t.co/1JTxPFmPnu" +09/05/2017,Sports_celeb,@RobGronkowski,Can you believe her? She’s worried about how I smell while Liz just posted a fire tweet 🔥🔥🔥 @Tide #Ad https://t.co/R8qc90osJV +09/02/2017,Sports_celeb,@RobGronkowski,RT @Chrisgronkowski: The Gronk ball might be the best baby toy ever. Just turn the lights on and play some music 🎶. #gronkball #gronknati… +08/26/2017,Sports_celeb,@RobGronkowski,Haha just chilling enjoying the view! https://t.co/If08340L2y +08/24/2017,Sports_celeb,@RobGronkowski,RT @Brookstone: Want to enter to win an autographed #GRONKBALL Speaker by @RobGronkowski?! See our pinned post on our FB page- https://t.c… +08/16/2017,Sports_celeb,@RobGronkowski,Who's hyped for football season?!? Celebrate with me @GilletteStadium at Fantasy Sports Fest Aug 20th. Buy tix:… https://t.co/lLAacJE2zu +08/14/2017,Sports_celeb,@RobGronkowski,Putting some work in during my shoot for @Tide Sport PODS. Might’ve even found a new teammate. 💪 #NoDaysOff #ad https://t.co/1qVWd0zORg +08/08/2017,Sports_celeb,@RobGronkowski,"RT @ZonaZooOfficial: September 2nd. Arizona Stadium. Gronk bobblehead giveaway. BE THERE. +Details: https://t.co/wEHYBxl1Jx +ZonaZoo Pass: h…" +08/08/2017,Sports_celeb,@RobGronkowski,Amazing!! #BearDown https://t.co/cBHHVKcGIt +08/04/2017,Sports_celeb,@RobGronkowski,Had a blast w/ the kids at my @Citibank @ProCamps! Relive it with the virtual reality experience on the @jauntvr app https://t.co/GaMbvAb65a +08/02/2017,Sports_celeb,@RobGronkowski,Join me at Fantasy Sports Fest on Aug 20 @GilletteStadium. Catch TDs on the field and hear from insiders! Buy tix:… https://t.co/IPJDzdoStH +08/02/2017,Sports_celeb,@RobGronkowski,That was a hot practice today 💦 😳 hydration all day to get ready for tomorrow +07/31/2017,Sports_celeb,@RobGronkowski,Thank you for letting me join again on stage. This time during camp from my room 😂! https://t.co/mIAkbGFxg4 +07/26/2017,Sports_celeb,@RobGronkowski,"What’s your go-to @DunkinBoston Iced Coffee Flavor? I’m sticking with S’mores right now, but man the Coconut Crème… https://t.co/NAxxsxFjuR" +07/21/2017,Sports_celeb,@RobGronkowski,Got you! 😂 https://t.co/kZowq2tPJA +07/20/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @RobGronkowski What do u have to do for autographed football & photo? Run 7 miles raise $ 4 kids w/ @GronkNation team Join… +07/15/2017,Sports_celeb,@RobGronkowski,Happy birthday @MojoRawleyWWE living it up @rehablv https://t.co/bhGICNRjtZ +07/12/2017,Sports_celeb,@RobGronkowski,RT @ddlovato: The Boston #SNSHouseParty was out of control!!! Thanks for rolling in with me like a champ @RobGronkowski 😜 @Kiss108 https://… +07/12/2017,Sports_celeb,@RobGronkowski,RT @Brookstone: Can we get #GronkBall trending for @RobGronkowski before his World Premiere on @HSN at midnight?! https://t.co/HlSfklisR4 +07/12/2017,Sports_celeb,@RobGronkowski,"I'm hosting an epic comedy show at @Showcase_Live on July 21st. Get tix, trust me! https://t.co/56h7uTUfA6. https://t.co/8AMArCAxFW" +07/12/2017,Sports_celeb,@RobGronkowski,Good times! #SNSHouseParty https://t.co/tUnhmCqhC0 +07/12/2017,Sports_celeb,@RobGronkowski,"Baby, I'm sorry (I'm not sorry) - @ddlovato love's my Gronk ball too!! Thx for the invite to the House Party!… https://t.co/uEKdNVu6Di" +07/11/2017,Sports_celeb,@RobGronkowski,BIG news! I’ll be on @HSN tonight with my @Brookstone Gronk Ball Speaker! Who’s excited for it?… https://t.co/ZqocPAGM4N +07/11/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @RobGronkowski @GronkNation Join the Gronk Nation Running Team @FalmouthRR -Run this summer! Go to https://t.co/yE7o1dpEr7… +07/11/2017,Sports_celeb,@RobGronkowski,RT @HurleyGirl2: @charityteams Run for @GronkNation @RobGronkowski at this summers @FalmouthRR Be on Gronks Team! Go to https://t.co/yE7o1d… +07/02/2017,Sports_celeb,@RobGronkowski,12-0 in cornhole 🌽 !!!! +06/26/2017,Sports_celeb,@RobGronkowski,The grind feels so good!! +06/23/2017,Sports_celeb,@RobGronkowski,"Roasted the shit out of Big Papi tonight, but also got roasted bad myself 😂. Great times everybody. Congrats to Big Papi!" +06/20/2017,Sports_celeb,@RobGronkowski,Don't always believe what you read. This is where 100k + would go to before that. https://t.co/2nzSfBk8pV +06/16/2017,Sports_celeb,@RobGronkowski,"The Gronk Family Genes powering through with just boys! +Hanging with the fam in front of the NEW 87 @GronkPartyBus… https://t.co/zbzNsffOTX" +06/15/2017,Sports_celeb,@RobGronkowski,Weeehooooooo it's go time baby with @SixStarPro PreWorkout Explosion! #sponsored #greatnessisearned… https://t.co/0p9bN3Ghj9 +06/12/2017,Sports_celeb,@RobGronkowski,RT @ObertoBeefJerky: RT for a chance to win a signed @RobGronkowski Football 🏈 and Jerky. #JerkyTie Happy #NationalBeefJerkyDay https://t.c… +06/11/2017,Sports_celeb,@RobGronkowski,Congrats to all the @Shaws @Star_Mrkt @Tide sweeps winners. Great time at the ProTalk luncheon today! Great camp da… https://t.co/AAIk93YyYR +06/11/2017,Sports_celeb,@RobGronkowski,Thanks to @WelchsFruitSnck for sending these lucky campers to my @ProCamps #yummy https://t.co/hCP05OU0nh +06/11/2017,Sports_celeb,@RobGronkowski,Had a blast with my Sunny D Contest winners at my @ProCamps #letsgo https://t.co/njPAGbArZy +06/11/2017,Sports_celeb,@RobGronkowski,Camp is wild today! So much energy these kids got! 🏈 +06/11/2017,Sports_celeb,@RobGronkowski,The Gronk Monster Truck tonight was lit @MonsterJam !!! Great show and great performances. #vroomvroom… https://t.co/TjxViQOtLM +06/10/2017,Sports_celeb,@RobGronkowski,I'd give today's @ProCamps youth clinic 10 out of 10 Gronk Spikes! Thanks again to @CitiPrivatePass for supporting… https://t.co/MHun2wsVnb +06/09/2017,Sports_celeb,@RobGronkowski,That's truck is bad ass! https://t.co/6R4Tq14PbC +06/05/2017,Sports_celeb,@RobGronkowski,"Always a pleasure buzzing my head every summer. Great people, great kids, great cause and a super fresh cut of cour… https://t.co/a388o2KPUI" +06/03/2017,Sports_celeb,@RobGronkowski,Missed my flight mmmhmmmm 🤔 +07/01/2018,Sports_celeb,@Venuseswilliams,"Bringing @EleVenbyVenus to London, @Selfridges! “Status quo is a phrase that doesn’t exist in the EleVen vocabulary… https://t.co/VhGBFG7CAc" +07/01/2018,Sports_celeb,@Venuseswilliams,Look familiar right? It’s that time...tomorrow! #wimbledon2018 #tennis https://t.co/yaDDCbIf0P +06/29/2018,Sports_celeb,@Venuseswilliams,Ahead of Wimbledon I spoke to @britishvogue about the 5 things that shaped me https://t.co/Xfh7uPvG5a +06/29/2018,Sports_celeb,@Venuseswilliams,Londoners don’t forget to come join me today at 2pm at @Selfridges for the launch of the @EleVenbyVenus Atlanta col… https://t.co/4j4vDvK4qm +06/27/2018,Sports_celeb,@Venuseswilliams,Be the Eleven you are and get yourself to the @Selfridges launch party for the new Atlanta collection from… https://t.co/mbwCOxV0Go +06/25/2018,Sports_celeb,@Venuseswilliams,With Wimbledon coming up I can't help but look back on all the fond memories! This was in 2000 when @serenawilliams… https://t.co/rbG8urjlL9 +06/22/2018,Sports_celeb,@Venuseswilliams,Romancing from both ends expertly! One of my favorite interiors in Paris where I enjoy the design and the food!… https://t.co/dvQN03LAwr +06/18/2018,Sports_celeb,@Venuseswilliams,I’m excited to be in Des Moines this Saturday for the Des Moines Register Sports Awards. Let’s celebrate high schoo… https://t.co/riCYajVEnE +06/17/2018,Sports_celeb,@Venuseswilliams,Big news! I've teamed up with @Selfridges to launch the new Atlanta collection from @elevenbyvenus. RSVP for the la… https://t.co/Obtr9uAxYs +06/14/2018,Sports_celeb,@Venuseswilliams,"This is how I conference call. For real tho. No joke. (New phone, who dis?) #flawless https://t.co/IZQ8RoBbAJ" +06/13/2018,Sports_celeb,@Venuseswilliams,Back in action ;) pun intended. @EleVenbyVenus Sprint collection https://t.co/1zMftY6Qlg +06/07/2018,Sports_celeb,@Venuseswilliams,The good old days...are still going! @serenawilliams #tbt https://t.co/iZ9SWobiJJ +06/04/2018,Sports_celeb,@Venuseswilliams,C’est la vie! Deja vu and all that! Merci @PDG_Paris #LovePDG https://t.co/nXugYwdRyI +06/04/2018,Sports_celeb,@Venuseswilliams,"Go @serenawilliams (I'm a big fan!) I'm also a big fan of WS doubles, just warming up, stay tuned! https://t.co/Fhs1aYU6Ml" +06/02/2018,Sports_celeb,@Venuseswilliams,Getting inspired! This guy had talent! #rodin @MuseeRodinParis https://t.co/GaYMQ3umq3 +05/30/2018,Sports_celeb,@Venuseswilliams,The return of Team Williams...@serenawilliams @Venuseswilliams https://t.co/8mBHITF92B +05/30/2018,Sports_celeb,@Venuseswilliams,Maxing and relaxing with my lil man at @PDG_Paris #princedegallesparis #LovePDG https://t.co/Mf9boqChMD +05/26/2018,Sports_celeb,@Venuseswilliams,Thanks @people! Check out our latest collection https://t.co/3DmFK3FbcZ +05/26/2018,Sports_celeb,@Venuseswilliams,New @EleVenbyVenus Sprint Collection https://t.co/BbKl7004UR https://t.co/fDf2DvoEfB +05/25/2018,Sports_celeb,@Venuseswilliams,RT @people: Get Venus Williams’ Exact Pump-Up Workout Playlist – and Never Be Bored on Your Run Again https://t.co/IAFxBPYuWc +05/24/2018,Sports_celeb,@Venuseswilliams,"Goodbye Rome, so sad that the days of gelato are over...but I think the croissants in Paris should comfort this pro… https://t.co/B7F1XjofkG" +05/24/2018,Sports_celeb,@Venuseswilliams,"RT @EleVenbyVenus: Make bold news with the brand new Sprint Collection, available on https://t.co/6QaGtZRgU4 now! https://t.co/dCgOhyA1Dk" +05/24/2018,Sports_celeb,@Venuseswilliams,"Werk, werk, werk, werk, werk! The @EleVenbyVenus new Sprint collection is here! WERK! https://t.co/utGw4bwjTo" +05/23/2018,Sports_celeb,@Venuseswilliams,"The adventures of Harry and I, Rome edition. Coming to a city near you. We saved the day more than once! 😌😌😌❤️❤️❤️ https://t.co/IY7Vkod97u" +05/22/2018,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: We’re excited to announce our partnership with @diaandco... September cannot come soon enough! #FitToThrive https://t.co… +05/21/2018,Sports_celeb,@Venuseswilliams,"Oh it's just me again. My dog Harry thought this was fur, but I had to explain to him that is just a bathrobe...and… https://t.co/T3c3Jobb35" +05/16/2018,Sports_celeb,@Venuseswilliams,Swinging this racquet takes me all the places I ever wanted to go. I swing and I swing and I swing! https://t.co/6tDa9U33I0 +05/01/2018,Sports_celeb,@Venuseswilliams,"Playing here in Copenhagen after 16 years! The art, innovation and entrepreneurship here is inspiring. https://t.co/AmK353wneh" +04/18/2018,Sports_celeb,@Venuseswilliams,Honored to help the victims of the Stoneman Douglas tragedy by serving on the Stoneman Douglas Victims' Fund Commit… https://t.co/y7YT1yzwVJ +03/23/2018,Sports_celeb,@Venuseswilliams,I am Venus...my inner goddess unleashes er'day https://t.co/as9aNkZABO +03/22/2018,Sports_celeb,@Venuseswilliams,So excited to be back in #Copenhagen on April 30th playing @carowozniacki at #championsbattle2018 – and at the same… https://t.co/JoCZGg9tcY +03/04/2018,Sports_celeb,@Venuseswilliams,A real celebration of design. Nothing makes me happier than creating a space that people enjoy! @vstarrinteriors… https://t.co/zlQKlf19uN +03/01/2018,Sports_celeb,@Venuseswilliams,Can't wait to play @tiebreaktens in New York on Monday. Looking forward to meeting @elinasvitolina in the first rou… https://t.co/mosbuVeeHx +02/25/2018,Sports_celeb,@Venuseswilliams,Working! @LibertyFairs booth 726 come visit!! #libertyfairs @EleVenbyVenus https://t.co/lcseGDmZJk +02/14/2018,Sports_celeb,@Venuseswilliams,Shooting something cool today...stay tuned! https://t.co/wekRg8YmLq +02/12/2018,Sports_celeb,@Venuseswilliams,"My two loves, I'm so proud of you @serenawilliams and baby Olympia, both @FedCup go USA! https://t.co/rO32uLnZm4" +02/10/2018,Sports_celeb,@Venuseswilliams,Me and my boo @serenawilliams ❤️❤️ https://t.co/NlTcvCKoDL +02/07/2018,Sports_celeb,@Venuseswilliams,@RafaelNadal @tiebreaktens So cool! I can’t wait to be playing in the first ever @TieBreakTens tournament held in t… https://t.co/6Rd0zqbFve +01/28/2018,Sports_celeb,@Venuseswilliams,"I am exited to represent 🇺🇸 at @fedcup with my sister. Cheer us on as we take on the Netherlands - Feb 10-11 in Asheville, NC." +01/26/2018,Sports_celeb,@Venuseswilliams,Super excited that Tie Break Tens series is coming to the US for the first time! I’m in – and so is @serenawilliams… https://t.co/syxR0oTQJJ +12/06/2017,Sports_celeb,@Venuseswilliams,RT @MAKERSwomen: This weekend @serenawilliams and @Venuseswilliams took a stance against community violence 👊💥 alongside trailblazing activ… +11/21/2017,Sports_celeb,@Venuseswilliams,RT @serenawilliams: We love the new community inspired mural by Chelsea Wong at the Yetunde Price Resource Center! Thank you @OathforGood f… +09/12/2017,Sports_celeb,@Venuseswilliams,Looking forward to a great weekend at the @GreenbrierTennisClassic with @mhingis. https://t.co/4yxNkq7rua https://t.co/JNSr2sJzyj +09/11/2017,Sports_celeb,@Venuseswilliams,Thanks for a wonderful stay as always @lottenypalace #PalacePerks https://t.co/fRb952LGVV +08/22/2017,Sports_celeb,@Venuseswilliams,"I'm back at @The_Greenbrier for another fun, tennis-filled weekend. Come join me! https://t.co/4yxNkq7rua https://t.co/CQPnGhXgrP" +08/21/2017,Sports_celeb,@Venuseswilliams,When you wear your tennis dress to the office. @AmericanExpress #AmexTennis #AmexAmbassador #USOpen https://t.co/EOmYBXJqkV +08/20/2017,Sports_celeb,@Venuseswilliams,Put my racket down and picked up a pencil with @AmericanExpress #USOpen #AmexTennis #AmexAmbassador https://t.co/bdgBxTp6vu +07/24/2017,Sports_celeb,@Venuseswilliams,Can't wait to play for @WashKastles tonight in Philly (🎫 https://t.co/YbHCJ4a4yx) & tomorrow in DC (🎫https://t.co/57ktCY908l)! +06/23/2017,Sports_celeb,@Venuseswilliams,Honoured to have been a part of the AIA Vitality 4490 Summit #AIA4490 building a happier & healthier Australia… https://t.co/kngqIUYK9X +06/21/2017,Sports_celeb,@Venuseswilliams,Excited to be in Sydney at the AIA Vitality 4490 Summit #AIA4490 sharing what wellness means to me & championing… https://t.co/m4UqD9kULG +06/10/2017,Sports_celeb,@Venuseswilliams,Until next time Paris! @HCollectionneur merci! https://t.co/2x2n3povoQ +06/01/2017,Sports_celeb,@Venuseswilliams,"RT @PaulRabil: Suiting Up Episode 003, with @VenusesWilliams 🎙 https://t.co/BydM2y8RdH https://t.co/jlEw9KYAo3" +05/31/2017,Sports_celeb,@Venuseswilliams,These are to die for! @HCollectionneur https://t.co/EmpIZ6RGzm +05/28/2017,Sports_celeb,@Venuseswilliams,Kinda proud of this slide & these legs look like they want to do damage on the clay! @EleVenbyVenus https://t.co/MLNfKO9Lck +05/27/2017,Sports_celeb,@Venuseswilliams,I finally found a woman taller than me :) at the @HCollectionneur beautiful gardens https://t.co/tLHRp9kqit +05/21/2017,Sports_celeb,@Venuseswilliams,"My daily view at the @sofitelrome , my home away from home @internazionalibnlditalia #sofitel #tennis https://t.co/KCm67PWpdT" +05/18/2017,Sports_celeb,@Venuseswilliams,Sliding into the quarters. Guess what? I'd like to slide into the semis as well!@EleVenbyVenus https://t.co/18DigbAcve +04/23/2017,Sports_celeb,@Venuseswilliams,"Need something new to read! I like fantasy and adventure, just like my life! Send some suggestions my way please :)" +04/21/2017,Sports_celeb,@Venuseswilliams,"Showcasing Miami, @EleVenbyVenus and @VStarrDesign in Alexa by the New York Post! ❤ https://t.co/OlpSNQYJj6" +04/03/2017,Sports_celeb,@Venuseswilliams,Please vote for the freedom of interior designers like myself! ! Email the FL House Rep -VOTE 2 AMEND HB 7047! https://t.co/MxVcsn7WJb +04/03/2017,Sports_celeb,@Venuseswilliams,"I love this guy ❤. He made it all possible! He had a dream that I get to live on a daily basis, incredibly grateful https://t.co/IGBKZlu0hg" +03/30/2017,Sports_celeb,@Venuseswilliams,"I love this guy ❤. He made it all possible! He had a dream that I get to live on a daily basis, incredibly grateful https://t.co/7ooCZszNhN" +03/30/2017,Sports_celeb,@Venuseswilliams,@tennislala wow! Thank you for inspiring me!! God bless! +03/29/2017,Sports_celeb,@Venuseswilliams,Met a lot of awesome fans at the @MiamiOpen @EleVenbyVenus tent! I will be back! https://t.co/lnwAVGncq8 +03/27/2017,Sports_celeb,@Venuseswilliams,So it was all business yesterday. The plan? do it again today! https://t.co/Yh8vNH4WBD +03/24/2017,Sports_celeb,@Venuseswilliams,@TitussBurgess @KimmySchmidt it's a mutual love! I need season 3! Alight going to go play my match lol! +03/24/2017,Sports_celeb,@Venuseswilliams,Eleven by Venus Williams-Intrepid Excel Tank Top-8868724 https://t.co/3CKUD2gn5d @Zappos my winning look @BNPPARIBASOPEN +03/24/2017,Sports_celeb,@Venuseswilliams,@Ataraxis00 yes! Yes! Genius! +03/24/2017,Sports_celeb,@Venuseswilliams,"completely addicted 2 @KimmySchmidt only thing I've watch this year, @TitussBurgess is so fab, I've picked up a few of his mannerisms lol" +03/24/2017,Sports_celeb,@Venuseswilliams,Crushing it @BNPPARIBASOPEN in @EleVenbyVenus find us at @Zappos https://t.co/zkaY7YgcNv +03/24/2017,Sports_celeb,@Venuseswilliams,"Yes, that's right find @EleVenbyVenus at @Zappos ! https://t.co/L0cMQC8xCv" +03/23/2017,Sports_celeb,@Venuseswilliams,My baby! Harold! Happy #NationalPuppyDay puppiesday :) https://t.co/gocddGCSuB +03/23/2017,Sports_celeb,@Venuseswilliams,Taste of tennis :) @TasteofTennis mmmmmmmm!!! https://t.co/f0ypZzg8zE +03/19/2017,Sports_celeb,@Venuseswilliams,Can’t wait to DJ with this guy at @TasteofTennis on Monday Night … See you soon @djmadlinx https://t.co/yQJPabb5Mw +03/02/2017,Sports_celeb,@Venuseswilliams,"RT @PlayersTribune: She's grown the game of tennis while bringing change to her hometown. + +@VenusesWilliams has joined the #StandUp movemen…" +03/01/2017,Sports_celeb,@Venuseswilliams,Shout out to @serenawilliams featured in @Brawny #StrengthHasNoGender campaign during #WomensHistoryMonth https://t.co/9LxT0MNRMf +02/24/2017,Sports_celeb,@Venuseswilliams,7/10 girls don’t feel encouraged to play sports. Time to change that! @Always @Walmart Keep Playing #LikeAGirl #ad https://t.co/a0HgFmRiqD +02/20/2017,Sports_celeb,@Venuseswilliams,https://t.co/4wwZSRE0FX +02/06/2017,Sports_celeb,@Venuseswilliams,Thank you to @ArteriorsHome for helping @VStarrDesign with #DOADMIA. Great company for a great cause! https://t.co/WdWdKfMTcM +02/05/2017,Sports_celeb,@Venuseswilliams,"@housingworks Design on a Dime Miami with the team today, but proud of @vstarrinteriors beautiful space https://t.co/Gob3z4MExB" +01/20/2017,Sports_celeb,@Venuseswilliams,Check out my newest @EleVenbyVenus gear for my next @AustralianOpen match! https://t.co/7vmBqJZwbh +01/18/2017,Sports_celeb,@Venuseswilliams,Thrilled to bring my passion for @ElevenByVenus and VStarr Interiors to the cover of @Inc! #femaleentrepreneur… https://t.co/cTp55ayV1a +01/16/2017,Sports_celeb,@Venuseswilliams,Good morning from Australia! https://t.co/vn1V49618F +01/12/2017,Sports_celeb,@Venuseswilliams,Shenanigans #teamwilliams https://t.co/6mpTkyQehy +01/09/2017,Sports_celeb,@Venuseswilliams,New Zealand is gorgeous! https://t.co/knUZ75Spe2 +01/09/2017,Sports_celeb,@Venuseswilliams,One of my New Years resolutions? Sing more karaoke. No joke lol +01/06/2017,Sports_celeb,@Venuseswilliams,Sneak peak folks! @EleVenbyVenus #2017 https://t.co/DaWMZe8fBD +01/04/2017,Sports_celeb,@Venuseswilliams,Thank you to all my fans in New Zealand 4 yr ❤️and support! I ❤️ you all. sorry I couldn't win it for u this year. https://t.co/3B33f4Nj4X +01/02/2017,Sports_celeb,@Venuseswilliams,Official start to the season tomorrow! https://t.co/VHpUSTnxsa +12/30/2016,Sports_celeb,@Venuseswilliams,Tune into #UFC207 on PPV tonight @RondaRousey @Amanda_Leoa @DominickCruz @Cody_Nolove +12/30/2016,Sports_celeb,@Venuseswilliams,Fun facts about me and @EleVenbyVenus https://t.co/L4wIBIggUf +12/06/2016,Sports_celeb,@Venuseswilliams,Gearing up for a new season @EleVenbyVenus https://t.co/7WBlYMFeB2 +11/29/2016,Sports_celeb,@Venuseswilliams,I love south Florida https://t.co/Gz1gleon7k +11/19/2016,Sports_celeb,@Venuseswilliams,RT @orlyshani: When @Venuseswilliams has you model her new athletic clothing line... you do this weird leg kick thing 💃🏼@EleVenbyVenus #hom… +11/19/2016,Sports_celeb,@Venuseswilliams,RT @kymdouglas: Tmrw we could be joining the #tennis circuit w @Venuseswilliams or modeling her new line @EleVenbyVenus! @HomeandFamilyTV @… +11/12/2016,Sports_celeb,@Venuseswilliams,"RT @AjaLBrown: Let's go #Compton! Join me, @Venuseswilliams and @serenawilliams today at the @HealthyCompton Festival! See you there! #Hea…" +11/12/2016,Sports_celeb,@Venuseswilliams,RT @HealthyCompton: Excited to honor our #Compton champions @SerenaWilliams + @VenusesWilliams at the 2016 #HealthyCompton Festival Nov 12t… +11/12/2016,Sports_celeb,@Venuseswilliams,This is where we spent countless hours practicing growing up! https://t.co/MSnSqTBPW6 +11/12/2016,Sports_celeb,@Venuseswilliams,Court dedication at Luders park in Compton. #Compton #proud https://t.co/misrI6CBoG +11/10/2016,Sports_celeb,@Venuseswilliams,Thanks again to @RunwayDubai and to @SofitelDXBPalm for making all of this happen! #SofitelThePalm #SofitelWorld https://t.co/ZSEX2CRP9u +11/08/2016,Sports_celeb,@Venuseswilliams,The @EleVenbyVenus event with @RunwayDubai is underway! Thank you so much to The Sofitel Luxury Hotel The Palm! https://t.co/rCbA88Ky9t +11/05/2016,Sports_celeb,@Venuseswilliams,Diner #NYC https://t.co/NYymjJsVvn +11/05/2016,Sports_celeb,@Venuseswilliams,@Inc women's conference #newyorkcity #girlpower https://t.co/BIJAMiXwSa +10/31/2016,Sports_celeb,@Venuseswilliams,https://t.co/sNkzNnTFOe<https://t.co/sNkzNnTFOe> #BNPParibasShowdown +10/31/2016,Sports_celeb,@Venuseswilliams,"Looking forward to playing @worldtennisday @thegarden on 3/6. Use code WILLIAMS +to get the best seats before the public!" +10/28/2016,Sports_celeb,@Venuseswilliams,Breakfast @blindmonkwpb I ❤️ West Palm beach ❤️ https://t.co/00Cmq16DDb +10/19/2016,Sports_celeb,@Venuseswilliams,Excited to speak on the Design Panel w/ Kobi Karp tomorrow at The Real Deal’s South Florida Annual Real Estate Showcase & Forum! +10/19/2016,Sports_celeb,@Venuseswilliams,Good morning :) https://t.co/Ol3jSgTJGp +10/18/2016,Sports_celeb,@Venuseswilliams,RT @AjaLBrown: Excited to honor our #Compton champions @SerenaWilliams + @VenusesWilliams at the 2016 #HealthyCompton Festival Nov 12th! #V… +10/14/2016,Sports_celeb,@Venuseswilliams,Love this! 😂😂 https://t.co/uoweRIQV1w +10/11/2016,Sports_celeb,@Venuseswilliams,Yes that's the Great Wall of China folks. @elevenbyvenus https://t.co/eGRZlFXRd9 +09/08/2016,Sports_celeb,@Venuseswilliams,I've had a lot of great memories at the #USOpen! Use #AmexTennis to debate like a Pro https://t.co/ymGLc0HLMQ +09/07/2016,Sports_celeb,@Venuseswilliams,"The #USOpen is all about style, both on and off the court. Use #AmexTennis to debate like a Pro https://t.co/qLWjlABGhU" +09/04/2016,Sports_celeb,@Venuseswilliams,Who do you think is the best doubles team in #USOpen history? Use #AmexTennis to debate like a Pro https://t.co/bRZSoh4L3O +09/04/2016,Sports_celeb,@Venuseswilliams,Practice makes perfect :) @usopen @EleVenbyVenus https://t.co/m26lOnftKy +08/31/2016,Sports_celeb,@Venuseswilliams,My 18th first round win at the open. Wow! https://t.co/giNJCCVadf +08/30/2016,Sports_celeb,@Venuseswilliams,"RT @NYTStyles: .@Venuseswilliams, on and off the court https://t.co/hCvgtGckH4 https://t.co/e3fAxOFDyE" +08/29/2016,Sports_celeb,@Venuseswilliams,Which current player do you think is the coolest under pressure? Use #AmexTennis to debate like a Pro https://t.co/wYiBP3fj8V +08/28/2016,Sports_celeb,@Venuseswilliams,Pick up a copy of the Sunday NYT style section https://t.co/YXl8feGZqO +08/25/2016,Sports_celeb,@Venuseswilliams,The love of my life :) https://t.co/ZH5BhTeGEb +08/25/2016,Sports_celeb,@Venuseswilliams,RT @The_Greenbrier: Join us as we welcome @Venuseswilliams & @Madison_Keys to America's Resort this September! https://t.co/kHvmHsYvGR http… +08/16/2016,Sports_celeb,@Venuseswilliams,"RT @jk_rowling: As if we needed more reasons to worship @andy_murray: he just reminded John Inverdale that women are people, too. + +https:/…" +08/05/2016,Sports_celeb,@Venuseswilliams,Need I say more?! Playing tomorrow night and just can't wait! #olympics #dreams https://t.co/XMciaBvGHT +08/03/2016,Sports_celeb,@Venuseswilliams,First looks at rio https://t.co/9SWra9zmim +08/02/2016,Sports_celeb,@Venuseswilliams,On the way to With @serenawilliams Surreal! https://t.co/SdlTnJmrhJ +07/29/2016,Sports_celeb,@Venuseswilliams,In your face @serenawilliams https://t.co/BAlhvKKa9U +07/28/2016,Sports_celeb,@Venuseswilliams,I've got goodies for you! My Olympic Dress @EleVenbyVenus give away! https://t.co/4NRpbfAI6L +07/28/2016,Sports_celeb,@Venuseswilliams,Thought you all would enjoy hearing more about my life outside of tennis:) @jeff_haden https://t.co/BJk6agUElE via Inc +07/27/2016,Sports_celeb,@Venuseswilliams,Second round @CoupeRogers https://t.co/9J6PyJJfnc +07/27/2016,Sports_celeb,@Venuseswilliams,The @EleVenbyVenus launch in Canada! You can find us @Midtown_Mtl https://t.co/bkzpQaTsEd +07/26/2016,Sports_celeb,@Venuseswilliams,A day in my sweat life ;) https://t.co/NrqeIyMOqb +07/22/2016,Sports_celeb,@Venuseswilliams,RT @TigerWoods: .@Venuseswilliams put on a show all week and @serenawilliams has once again elevated tennis to another level. Very happy f… +07/22/2016,Sports_celeb,@Venuseswilliams,The warm up for tonight... https://t.co/ZPTF3HleyZ +07/22/2016,Sports_celeb,@Venuseswilliams,Should I? https://t.co/l8boUNyKu9 +07/21/2016,Sports_celeb,@Venuseswilliams,A few fun facts about me and @EleVenbyVenus :) https://t.co/BYIUbNEkU0 via fabfitfun +07/10/2016,Sports_celeb,@Venuseswilliams,I'm so proud of @Venuseswilliams seven #Wimbledon my hero! https://t.co/yAb29C2nJy +07/05/2016,Sports_celeb,@Venuseswilliams,I feel like an @EleVenbyVenus ! #iamaneleVen dream big! https://t.co/ZQLlz66Y29 +07/04/2016,Sports_celeb,@Venuseswilliams,Another day at the office...! https://t.co/Uj1A80RiDI +07/03/2016,Sports_celeb,@Venuseswilliams,Grass court tennis #nature https://t.co/6W9F9IlElD +07/03/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: https://t.co/5ujtcquQqi +07/02/2016,Sports_celeb,@Venuseswilliams,Why is it that the best sleep starts right before your alarm goes off?? +07/02/2016,Sports_celeb,@Venuseswilliams,Going to rest well tonight after a finish in overtime today. Doubles tomorrow with @serenawilliams Yeah! https://t.co/qndBzOCuNW +07/01/2016,Sports_celeb,@Venuseswilliams,Going to rest well tonight after a finish in overtime today. Doubles tomorrow with @serenawilliams Yeah! https://t.co/bPXSAoH8NI +06/30/2016,Sports_celeb,@Venuseswilliams,5 sets today. 2 of them with my favorite tennis player @serenawilliams #sucess #wimbeldon https://t.co/MWPw4ZPhlu +06/29/2016,Sports_celeb,@Venuseswilliams,"Rain? No prob, Grind fest indoors. Tomorrow? Singles and doubles with the lovely @serenawilliams https://t.co/MlnjGFhnsN" +06/28/2016,Sports_celeb,@Venuseswilliams,I just adore @serenawilliams #Wimbledon dress! ❤️❤️❤️ +06/26/2016,Sports_celeb,@Venuseswilliams,My dog goes crazy for this line of treats by my friend Barbara Clarke Ruiz! https://t.co/GVfXWAXLvF https://t.co/F4ddrWOwo2 +06/26/2016,Sports_celeb,@Venuseswilliams,Last practice before tomorrow match! #wimbeldon https://t.co/8lzTnCIeVn +06/23/2016,Sports_celeb,@Venuseswilliams,Invigorating and energizing to speak to all these powerful women this past March at the… https://t.co/yV1dgttgEG +06/22/2016,Sports_celeb,@Venuseswilliams,First day on the grass...!!!#wimbledon https://t.co/kkWfa2Rk6d +06/21/2016,Sports_celeb,@Venuseswilliams,So awesome to bring my loves together. Interior design and fashion design. VStarr interiors used… https://t.co/sOCr55V95H +06/21/2016,Sports_celeb,@Venuseswilliams,Fighting breast cancer with design. #hamptonsholidayhouse @elevenbyvenus @vstarrinteriors.com https://t.co/jjx4xhX9YG +06/20/2016,Sports_celeb,@Venuseswilliams,This mornings rain delay is good practice for #wimbledon https://t.co/ZeS4g1yel3 +06/19/2016,Sports_celeb,@Venuseswilliams,#Lookgoodplaywell @elevenbyvenus https://t.co/JoDVDu5syi +06/17/2016,Sports_celeb,@Venuseswilliams,#flashbackfridays Harry and his cousin Khan at the @elevenbyvenus NYC fashion week show 2013. My… https://t.co/nBjhoOByW0 +06/16/2016,Sports_celeb,@Venuseswilliams,#throwback Thursday. Back then...Compton..you know?? https://t.co/OmQuQBachz +06/16/2016,Sports_celeb,@Venuseswilliams,Sometimes you've got to laugh it off! https://t.co/qhJKdMXUlL +06/15/2016,Sports_celeb,@Venuseswilliams,"A few of my favorite things, the #olympics and Harold! This is our special edition… https://t.co/7KcHlYvNEf" +05/08/2016,Sports_celeb,@Venuseswilliams,"Enjoying the Italian Oceanside, after practice and gym of course! https://t.co/jpBEh2hKQW" +04/29/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: What a beautiful look! Check it out at https://t.co/zsCVQVt1PX! #lookgoodplaywell https://t.co/yW9pXLuzV3 +04/28/2016,Sports_celeb,@Venuseswilliams,"I'm going to miss playing in Madrid, but looking forward to Rome :)" +04/27/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: Geo Swirl is a stunning look on the courts and in the gym! #lookgoodplaywell #venuswilliams #BeAnEleVen https://t.co/G98… +04/21/2016,Sports_celeb,@Venuseswilliams,My color inspiration board for Fall Winter 17. @elevenbyvenus https://t.co/tJAEDKqrQe +04/11/2016,Sports_celeb,@Venuseswilliams,"RT @EleVenbyVenus: It's 4/11/16 #VenusonEleVen. Send #Eleven & I will answer your questions on sport, fashion and life, or whatever is on y…" +04/08/2016,Sports_celeb,@Venuseswilliams,What are your weekend plans? I'm back to practice tomorrow! +04/06/2016,Sports_celeb,@Venuseswilliams,"RT @VolvoCarOpen: 'It's like my second home.' + +Venus Williams declared her love for #Charleston following her win over Riske. #VCO2016 http…" +04/06/2016,Sports_celeb,@Venuseswilliams,"@LendaleJohnson yes! Thank, back on tomorrow :)" +04/06/2016,Sports_celeb,@Venuseswilliams,"@Vandee007 yes, good advice :)" +04/06/2016,Sports_celeb,@Venuseswilliams,@tylergerow thank you! Can't wait for tomorrow :) +04/06/2016,Sports_celeb,@Venuseswilliams,So nice to get a win! Can't wait to get back on the court tomorrow! +04/04/2016,Sports_celeb,@Venuseswilliams,"Today at practice @volvocarsopen I decided to mix collections and colors, our new apricot color… https://t.co/fi9NggKbT2" +04/04/2016,Sports_celeb,@Venuseswilliams,"Beautiful Charleston, South Carolina @volvocarsopen #beautiful #historic https://t.co/VXcIPCoHKm" +03/31/2016,Sports_celeb,@Venuseswilliams,Get all regular price collections with free shipping for a limited time only! https://t.co/Kju8zwVNJF +03/31/2016,Sports_celeb,@Venuseswilliams,Last day of the month and all of our regular price collections are available for free shipping!… https://t.co/DM0Uhw02Nk +03/13/2016,Sports_celeb,@Venuseswilliams,Had such a blast meeting so many fans at the @wilsontennis autograph signing! #grateful for all… https://t.co/1MXpbtDvmt +03/13/2016,Sports_celeb,@Venuseswilliams,I can't explain how happy I am to return to Indian Wells. I'm overwhelmed by the warm welcome.… https://t.co/nTy46rfnlL +03/10/2016,Sports_celeb,@Venuseswilliams,#VenusonEleVen tomorrow after my 1st round match. I'm answering all questions with #EleVenbyVenus tagged on @EleVenbyVenus account! +03/10/2016,Sports_celeb,@Venuseswilliams,RT @EleVenbyVenus: #BeAnEleVen https://t.co/GXYtMjlshP +03/10/2016,Sports_celeb,@Venuseswilliams,"RT @BNPPARIBASOPEN: Perhaps our favorite pic from Wednesday: Welcome back, #Venus #BNPPO16 https://t.co/3zyKInJ0BT" +03/10/2016,Sports_celeb,@Venuseswilliams,RT @GloriousAllianc: The incredible @Venuseswilliams and her gorgeous @EleVenbyVenus fashion lines! @palmspringslife https://t.co/OTTYQYes7a +03/10/2016,Sports_celeb,@Venuseswilliams,Don't our @elevenbyvenus models look amazing in our Camilla Rose? Thank you Pete Carslon's for… https://t.co/QwqvQiM77v +03/09/2016,Sports_celeb,@Venuseswilliams,Why it's good to be back in the desert https://t.co/iGybPPfmiz +03/07/2016,Sports_celeb,@Venuseswilliams,"Today I got to meet the beautiful, talented and inspirational @kverfuerth . She is a… https://t.co/bjSGT0Nm8d" +03/05/2016,Sports_celeb,@Venuseswilliams,Celebrating the life of Bud Collins today. Few know how much he did for the game of tennis. He… https://t.co/yoL5tr46x7 +03/05/2016,Sports_celeb,@Venuseswilliams,Harry's new bag :) awwwwwww! https://t.co/abrxD33Wja +03/02/2016,Sports_celeb,@Venuseswilliams,The ultimate cool down after practice! Harold didn't work very hard but needed a cool down too… https://t.co/SknxNN6vki +02/29/2016,Sports_celeb,@Venuseswilliams,"@serenawilliams is not the only one that's dances ;) +Vintage @elevenbyvenus oh&oh, so I have to… https://t.co/4t1Bi4qBdP" +02/25/2016,Sports_celeb,@Venuseswilliams,Cool brisk evening shoot with @elevenbyvenus Our spring collection is a breath of fresh Camilla… https://t.co/CKSl6NhFnW +02/14/2016,Sports_celeb,@Venuseswilliams,"https://t.co/s2d7nCVzeh My sister Lynn shares her views, and talks about her line Ember Lyn Designs" +02/14/2016,Sports_celeb,@Venuseswilliams,"First title of the year, Asia is very lucky for me! Thank you to all the fans and the Taiwan… https://t.co/8HhpIdzWI0" +01/27/2016,Sports_celeb,@Venuseswilliams,"I+got+""Very+Much+Venus""+on+""Which+Williams+Sister+Are+You?""+What+about+you? https://t.co/omj9iEqaGW" +01/27/2016,Sports_celeb,@Venuseswilliams,A view to the top at the Anglesea lighthouse on the great ocean road #nofilter https://t.co/Usv897iprx +01/02/2016,Sports_celeb,@Venuseswilliams,Rainbows of colors are such a design inspiration for me. This barrage of colorful Thai silk make… https://t.co/hjGMDvQn0W +01/02/2016,Sports_celeb,@Venuseswilliams,"Sunset in Thailand, one of my favorite countries in the world. Until next time... & here I come… https://t.co/FAwZXIWBmb" +01/01/2016,Sports_celeb,@Venuseswilliams,Playing with some of the best players in the world. That's how I am bringing in the new year. I… https://t.co/8NcgkoBAqL +01/01/2016,Sports_celeb,@Venuseswilliams,"Tennis with some of the best players in the world, that's how I am bringing in 2016! https://t.co/xEilEVS9r5" +12/31/2015,Sports_celeb,@Venuseswilliams,The texture of Thai silk is just luxurious https://t.co/XI1MMvborH +12/31/2015,Sports_celeb,@Venuseswilliams,Catching some design inspiration in Thailand. Thai silk is really one of a kind. https://t.co/UPGf1FJCjc +12/19/2015,Sports_celeb,@Venuseswilliams,Taking some time away from tennis this weekend can you believe it??! Visiting the construction… https://t.co/vB00BjuhQk +12/18/2015,Sports_celeb,@Venuseswilliams,Everyday I endeavor to be an #EleVen. It's about giving your best at all that you do… https://t.co/rhhTuBP7uX +06/29/2018,Sports_celeb,@AndreAgassi,"RT @Longines: Only 10 days left until the end of the ""Conquest V.H.P. Stefanie Graf & Andre Agassi Foundations"" timepieces online auction.…" +06/23/2018,Sports_celeb,@AndreAgassi,"A colleague but more importantly a friend... + +https://t.co/LzpfyZckPp https://t.co/Z6VkNt0qpB" +06/02/2018,Sports_celeb,@AndreAgassi,RT @Longines: Tonight #Longines marks its 10-year partnership with Stefanie Graf and Andre @AndreAgassi by launching an online auction of t… +05/20/2018,Sports_celeb,@AndreAgassi,👀 @GoldenKnights!! +05/19/2018,Sports_celeb,@AndreAgassi,#VEGAS!!! +04/29/2018,Sports_celeb,@AndreAgassi,@TeamUSA @usta Thank you! +04/29/2018,Sports_celeb,@AndreAgassi,@TennisHalloFame Thank you! +04/29/2018,Sports_celeb,@AndreAgassi,@usopen Thank you !! +04/29/2018,Sports_celeb,@AndreAgassi,KNIGHT TIME!!! #VegasBorn +04/27/2018,Sports_celeb,@AndreAgassi,@anirsinha I’ll give her a hello for you! +04/27/2018,Sports_celeb,@AndreAgassi,The only thing better than #KnightTime is Knight Time with my bride!! #lovelove https://t.co/EnmWsiKdvU +04/25/2018,Sports_celeb,@AndreAgassi,1 sleep to go... #VegasBorn +04/18/2018,Sports_celeb,@AndreAgassi,Solid midweek form!! https://t.co/Ii485wP1Lt +04/12/2018,Sports_celeb,@AndreAgassi,@CrpnterJe Don’t have marshmallow fights with a 16 year old baseball player.. words to live by!! +04/12/2018,Sports_celeb,@AndreAgassi,My inspired attempt to block like Marc-André Fleury!! #VegasBorn https://t.co/iJNhxQJ8je +04/10/2018,Sports_celeb,@AndreAgassi,"Always interesting & thoughtful, @ZibbyOwens!! #BestOfLuck + +https://t.co/t3WLqjKyVH" +03/08/2018,Sports_celeb,@AndreAgassi,"RT @AAFforE: #InternationalWomensDay. THANK YOU, #StefanieGraf! https://t.co/HRLbuCUUx9" +03/04/2018,Sports_celeb,@AndreAgassi,@DjokerNole 🤗 +03/02/2018,Sports_celeb,@AndreAgassi,"RT @DjokerNole: Vivaaaa Las Vegas, baby. Idemo🕺 https://t.co/QrGsHdHwTN" +02/16/2018,Sports_celeb,@AndreAgassi,"36 years 195 days... + +@RogerFederer continues to raise the bar in our sport. Congratulations on yet another remarkable achievement!!" +02/16/2018,Sports_celeb,@AndreAgassi,RT @darren_cahill: Enjoying my (highly likely) last day as the coach to the oldest ever No.1 on the ATP tour. Bloody Federer! Greedy mongre… +02/15/2018,Sports_celeb,@AndreAgassi,@darren_cahill Well deserved!!! +02/09/2018,Sports_celeb,@AndreAgassi,@helpsavemydad ♥️ +02/09/2018,Sports_celeb,@AndreAgassi,"RT @helpsavemydad: @AndreAgassi If you or someone you may know might be interested in donating please message me, Rileigh Hamilton on Faceb…" +02/09/2018,Sports_celeb,@AndreAgassi,A friend and a colleague... https://t.co/GJfypolGGn +01/30/2018,Sports_celeb,@AndreAgassi,@AjradiniMajda @hckratz @usopen Thank you +01/30/2018,Sports_celeb,@AndreAgassi,@usopen Bingo !! +01/16/2018,Sports_celeb,@AndreAgassi,@Al_x_andra @DjokerNole @AustralianOpen I still got it?? Haha +01/16/2018,Sports_celeb,@AndreAgassi,#quads 😂😂 https://t.co/RBjVEuJkK9 +01/13/2018,Sports_celeb,@AndreAgassi,@AugieAguilar @EquiiTheApp That would be..Antenna??! +01/12/2018,Sports_celeb,@AndreAgassi,Proud to announce partnership with a group of young #LasVegas entrepreneurs!! Congrats on the @equiitheapp launch!!… https://t.co/QZHFA3v73W +01/12/2018,Sports_celeb,@AndreAgassi,✈️ @AustralianOpen +01/10/2018,Sports_celeb,@AndreAgassi,RT @Ath4Hope: Join us for #PromiseChat to share your thoughts about mentoring and to brainstorm ways mentors can play a role in the lives o… +12/26/2017,Sports_celeb,@AndreAgassi,RT @WTCAdelaide: The legend @AndreAgassi + the rising star @FTiafoe + one of the most successful pairings in history @Bryanbrothers & @Brya… +12/24/2017,Sports_celeb,@AndreAgassi,@AndyS_Research @GoldenKnights #GoKnightsGo !! +12/24/2017,Sports_celeb,@AndreAgassi,Stefanie with a @GoldenKnights W!! #VEGAS https://t.co/tUbUAFU4BW +12/24/2017,Sports_celeb,@AndreAgassi,RT @lawanda50: @AndreAgassi @WTCAdelaide @FTiafoe @Bryanbros @Bryanbrothers Seemed like yesterday! 😀 +12/24/2017,Sports_celeb,@AndreAgassi,@WTCAdelaide 👋🏼👋🏼 +12/24/2017,Sports_celeb,@AndreAgassi,"It's been 20 years, @WTCAdelaide!!?? JANUARY IT IS: https://t.co/OBDCitFagR + + @Ftiafoe @bryanbros @bryanbrothers 🇺🇸… https://t.co/qjXV8noOFk" +12/18/2017,Sports_celeb,@AndreAgassi,👼🏼 https://t.co/1rcnbAb0IB +12/07/2017,Sports_celeb,@AndreAgassi,@nicekicks 👍🏼 +12/04/2017,Sports_celeb,@AndreAgassi,"RT @LavazzaUSA: This year we’re celebrating art and sustainability in our annual calendar, collaborating with @platon and 17 fans who are a…" +12/04/2017,Sports_celeb,@AndreAgassi,#2030whatareUdoing!!! @Lavazza https://t.co/dbSPI3EDkR +12/02/2017,Sports_celeb,@AndreAgassi,"RT @DjokerNole: Lots to be done, but we embrace it with lots of excitement 💪👌. Practice today with @andreagassi and @stepec78 https://t.co/…" +12/01/2017,Sports_celeb,@AndreAgassi,@EquiiTheApp @WmTJMiller Looking forward to the release!! +12/01/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: We are making our final touches on @EquiiTheApp 🙌 +12/01/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: Big news coming soon... +11/29/2017,Sports_celeb,@AndreAgassi,"RT @Lavazza: Il Calendario Lavazza 2018 si fa portavoce dei 17 obiettivi di sviluppo sostenibile dell'Onu, per la salvaguardia del pianeta…" +11/29/2017,Sports_celeb,@AndreAgassi,I aim to goal number 4: Quality Education. This is the reason why I set up a foundation dedicated to the transforma… https://t.co/HShMVEuxsX +11/28/2017,Sports_celeb,@AndreAgassi,RT @opportunity180: We're visiting @DPAgassiCampus at this morning's community open house to see them in action! https://t.co/0QdBdt68d3 +11/16/2017,Sports_celeb,@AndreAgassi,@AAFforE Hey !! +11/10/2017,Sports_celeb,@AndreAgassi,RT @jon_wertheim: This week's @SInow /@TennisChannel podcast is w/ the great Andre Agassi who expects big things in 2018 from @DjokerNole .… +11/06/2017,Sports_celeb,@AndreAgassi,"For every ‘yes' on something, you’ll get 25 ‘no’s’. But it’s crazy how much that ‘yes’ will give you hope..." +11/04/2017,Sports_celeb,@AndreAgassi,@AugieAguilar @GoldenKnights 👍🏼👍🏼👍🏼👍🏼 +11/03/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""No #ActOfKindness, no matter how small, is ever wasted. + +- #Aesop | https://t.co/ZIBtwi7mxi" +10/27/2017,Sports_celeb,@AndreAgassi,"RT @EquiiTheApp: It’s #spooky season + +#Halloween #Halloween2017 #scary #boo https://t.co/QC35PRAP8B" +10/27/2017,Sports_celeb,@AndreAgassi,RT @EquiiTheApp: Can you solve this Equii in 60 secs? 🤔 https://t.co/15cnxzhDA7 +10/27/2017,Sports_celeb,@AndreAgassi,"RT @EquiiTheApp: For all of our Las Vegas friends, tomorrow is Nevada Day! +#state #nevada #statehood #battleborn #lasvegas #vegasstrong ht…" +10/25/2017,Sports_celeb,@AndreAgassi,RT @UBS: From champion on the court to champion in the classroom: @AndreAgassi shares his inspiration for @AAFforE #UBSPhilaForum https://… +10/24/2017,Sports_celeb,@AndreAgassi,"RT @UNLVmedicine: These, are some of the lifesavers. #VegasStrong | @UMCSN https://t.co/60LF6BtOgn" +10/04/2017,Sports_celeb,@AndreAgassi,#VegasSTRONG... https://t.co/fetgJ53av7 +09/28/2017,Sports_celeb,@AndreAgassi,RT @jimmykimmel: @AndreAgassi Paw Patrol! +09/28/2017,Sports_celeb,@AndreAgassi,"No goal too big, no toy too high... https://t.co/5OiJKbUUPx" +09/15/2017,Sports_celeb,@AndreAgassi,"RT @SquarePanda: ""Oh, the places you'll go!"" #FridayFeeling ☀️ https://t.co/zkglquuDRz" +09/14/2017,Sports_celeb,@AndreAgassi,"RT @LA2028: It's official 🎉 + +The IOC just announced Los Angeles will be the host city of the 2028 Olympic & Paralympic Games! #FollowTheSun…" +09/01/2017,Sports_celeb,@AndreAgassi,@Dodgers @AugieAguilar @kikehndez @JonSooHooPics 👍🏼👍🏼 +08/28/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""All the good stuff is on the other side of tired."" - @AndreAgassi #USOPEN https://t.co/7zhlR7KKA9" +08/22/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: We put beliefs into practice! + +https://t.co/ZIBtwi7mxi | #EDUCATION" +08/16/2017,Sports_celeb,@AndreAgassi,"RT @darren_cahill: Welcome to the teens, Tahlia!😊 Hope you have a great day and a very Happy Birthday. Big hugs.… https://t.co/LBg6bCM0Qr" +08/16/2017,Sports_celeb,@AndreAgassi,"RT @LA2028: The spirit of the Games lives on in LA! Relive the magic of #LA84 with the ones that helped make it a reality, the volunteers a…" +08/15/2017,Sports_celeb,@AndreAgassi,...and I'm the worst athlete in the room 😂 https://t.co/AgYQu90vkR +08/06/2017,Sports_celeb,@AndreAgassi,@Angels @MikeTrout Appreciate that Mike!! Haha +07/06/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: 19__ @Wimbledon? #TBT #Wimbledon https://t.co/Vi1SfLSfV0 +07/06/2017,Sports_celeb,@AndreAgassi,RT @darren_cahill: Back together. @AndreAgassi (the coach) & the 2 guys that taught him everything he knows 🙊😂 ESPN interview to air Saturd… +06/23/2017,Sports_celeb,@AndreAgassi,@DerekFlexFelix Thanks !! What a place !! +06/23/2017,Sports_celeb,@AndreAgassi,"RT @LA2024: With over 2️⃣0️⃣2️⃣4️⃣ events across the country, the spirit of the Games is sweeping the nation as the 🇺🇸 celebrates #OlympicD…" +06/19/2017,Sports_celeb,@AndreAgassi,https://t.co/7RHjtVr9Z4 +06/07/2017,Sports_celeb,@AndreAgassi,"RT @TimSiegelTTU: This is the Team Luke Documentary. Please retweet as I am wanting to spread the word about The Team Luke Foundation. +http…" +06/01/2017,Sports_celeb,@AndreAgassi,RT @bagiuann: @AndreAgassi @rolandgarros look at Gil!! Wow!! +06/01/2017,Sports_celeb,@AndreAgassi,@bagiuann @rolandgarros Yup ! +06/01/2017,Sports_celeb,@AndreAgassi,1999 #FrenchOpen final day.. oh my!! https://t.co/g7aG5RZF7v +06/01/2017,Sports_celeb,@AndreAgassi,@ptballs @AgassiPrep Hangin in Paris ! +06/01/2017,Sports_celeb,@AndreAgassi,Always best to travel with friends. @AgassiPrep bringing the inspiration to PARIS!! https://t.co/xGAno4J59t +05/23/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: https://t.co/ZIBtwi7mxi is an educational organization dedicated to transforming U.S. #PublicEducation for underserved youth.… +05/18/2017,Sports_celeb,@AndreAgassi,@mandar2404 Yup +05/18/2017,Sports_celeb,@AndreAgassi,@Rapetti @bbaker @gvitt Bingo +05/18/2017,Sports_celeb,@AndreAgassi,"Another sample from my @Udemy course on how to improve your #TENNIS shot!! + +FULL COURSE: https://t.co/2gpfufheVS https://t.co/fK4Fl0cWXD" +05/15/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: “All the good stuff is on the other side of tired.” - #AndreAgassi + +https://t.co/ZIBtwi7mxi" +05/14/2017,Sports_celeb,@AndreAgassi,"Your guidance, your patience, your LOVE is beyond compare. + +Happy #MothersDay!!!" +05/12/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: #TBT | @AgassiPrep Graduates First Senior Class! + +Agassi Prep graduates its first class on June 12, 2009 with a 100% college a…" +05/09/2017,Sports_celeb,@AndreAgassi,"RT @johnnykats: #KATS! Athl. commish @CiscoAguilar, @Agassi #StefanieGraf counsel, headed for #Germany https://t.co/FfBMYGOuJo via @reviewj…" +05/03/2017,Sports_celeb,@AndreAgassi,@mrbalaguer BLUE +05/03/2017,Sports_celeb,@AndreAgassi,@Royce_A_S The big guy is taking over the house!! +05/03/2017,Sports_celeb,@AndreAgassi,🤔 https://t.co/DaOSlkp9rI +04/05/2017,Sports_celeb,@AndreAgassi,"RT @AAFforE: ""It always seems impossible until it's done."" - @NelsonMandela" +03/30/2017,Sports_celeb,@AndreAgassi,#KeepThePromise...@ThePromiseFilm https://t.co/0czA1DrRVU +03/20/2017,Sports_celeb,@AndreAgassi,RT @udemy: .@AndreAgassi shares his tennis psychology in his Udemy course. Read more in his interview with @guardian: https://t.co/MnwKMXul… +03/10/2017,Sports_celeb,@AndreAgassi,"A few special guests stopping by today, @AgassiPrep??!!" +03/07/2017,Sports_celeb,@AndreAgassi,Blue & friend. https://t.co/DOy8Q3GdJo +03/04/2017,Sports_celeb,@AndreAgassi,@BillyBarren Thank you!! +02/17/2017,Sports_celeb,@AndreAgassi,"RT @GovSandoval: Fantastic to be back on campus at @AgassiPrep as we welcome @DemocracyPrep to the #NVFamily +#AllNV #NVLeg https://t.co/9…" +02/17/2017,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @DemocracyPrep! #EDUCATION https://t.co/acFXRcGPSq" +02/17/2017,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @GovSandoval! #EDUCATION https://t.co/110Oeb4eB2" +02/17/2017,Sports_celeb,@AndreAgassi,RT @AgassiPrep: Help us welcome Governor @BrianSandoval and @DemocracyPrep to campus! +02/09/2017,Sports_celeb,@AndreAgassi,RT @udemy: Learn how to improve your tennis game with tennis pro @AndreAgassi: https://t.co/trIBOE7pgT https://t.co/uqrd3Sc59S +02/02/2017,Sports_celeb,@AndreAgassi,@vaishnavisngh THANK YOU for reading!! +02/02/2017,Sports_celeb,@AndreAgassi,RT @vaishnavisngh: I don't remember when a book moved me so much - thank you @AndreAgassi for #Open! +02/01/2017,Sports_celeb,@AndreAgassi,"RT @udemy: ""Tennis taught me to always be open to learning & growing through success & defeat.” @AndreAgassi's new course: https://t.co/w8I…" +01/31/2017,Sports_celeb,@AndreAgassi,RT @udemy: We're excited to announce that tennis pro @AndreAgassi just launched a course on tennis fundamentals! https://t.co/w8Iw6g95E0 ht… +01/12/2017,Sports_celeb,@AndreAgassi,RT @AAFforE: #TBT to the @AustralianOpen | https://t.co/ZIBtwi7mxi https://t.co/dCluS6f4nN +01/12/2017,Sports_celeb,@AndreAgassi,RT @LavazzaAus: Coffee cup vs #AusOpen cup? ☕ or 🏆? Guess which one to win the ultimate @AustralianOpen experience: https://t.co/aQW9veFw4h… +01/11/2017,Sports_celeb,@AndreAgassi,@Borrisokane_Abu Glad you enjoyed!! +01/11/2017,Sports_celeb,@AndreAgassi,What difference can a detail make? Discover with @LavazzaAus to win tickets to the @AustralianOpen:… https://t.co/lsGWuorzc4 +01/09/2017,Sports_celeb,@AndreAgassi,☕ or 🏆? They have more in common than you think. Join @LavazzaAus to win the @AustralianOpen final:… https://t.co/ZXi80hRJWr +01/07/2017,Sports_celeb,@AndreAgassi,@AugieAguilar move those feet ! +01/05/2017,Sports_celeb,@AndreAgassi,Always time for a scholar!! #EDUCATION https://t.co/Eh38iBZDbI +12/26/2016,Sports_celeb,@AndreAgassi,HAPPY HOLIDAYS!! 🎄🎄 +12/14/2016,Sports_celeb,@AndreAgassi,@ChrisArcher22 appreciate it. Enjoy!! +12/14/2016,Sports_celeb,@AndreAgassi,RT @ChrisArcher22: Just started @AndreAgassi autobiography! It's amazing. Thanks for your honesty and insight. #OPEN +12/01/2016,Sports_celeb,@AndreAgassi,RT @TennisHalloFame: Throwing it back today with a #tbt of epic proportions! 9 year old @AndreAgassi meets his idol Bjorn Borg in Las Vegas… +11/30/2016,Sports_celeb,@AndreAgassi,"RT @AAFforE: Charitable Giving and Accountability/Transparency | WAYS TO GIVE: https://t.co/vX7IOx9zAc + +With Education, There is Hope! #ED…" +11/29/2016,Sports_celeb,@AndreAgassi,@hckratz @AAFforE and we thank you !! +11/29/2016,Sports_celeb,@AndreAgassi,RT @hckratz: Made my holiday donation to the @AAFforE. Thanks for inspiring me @AndreAgassi #GivingTuesday #GiveBack +11/17/2016,Sports_celeb,@AndreAgassi,RT @darren_cahill: Excited to see the finished product as @udemy shoots a coaching video with @AndreAgassi. AA revealing his tennis trainin… +11/11/2016,Sports_celeb,@AndreAgassi,🇺🇸 +11/02/2016,Sports_celeb,@AndreAgassi,All in for #EDUCATION. Thank you @SantanaCarlos!! @SquarePanda @AgassiPrep https://t.co/d5IME0DoyM +11/01/2016,Sports_celeb,@AndreAgassi,"RT @johnnykats: ""His greatest instrument is his heart."" @andreagassi says of #carlossantana l, seated with… https://t.co/uIPubn3zAI" +11/01/2016,Sports_celeb,@AndreAgassi,Visiting some very special friends today with @SantanaCarlos!! https://t.co/0F3WD5iCLL +11/01/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Welcome to campus, @SantanaCarlos and @SquarePanda!" +11/01/2016,Sports_celeb,@AndreAgassi,RT @usopen: @AndreAgassi you & #SteffiGraf take #Halloween next level 😍🎃💥 #USOpen +11/01/2016,Sports_celeb,@AndreAgassi,💪🏼 https://t.co/LVKJJllS0Z +10/23/2016,Sports_celeb,@AndreAgassi,PROUD UNCLE & AUNT. #CarterAgassi https://t.co/Y76DaOJcGy +10/11/2016,Sports_celeb,@AndreAgassi,RT @omaze: Don’t miss out on your chance to play doubles tennis with @AndreAgassi & Steffi Graf! Support 2 great causes & ENTER https://t.c… +10/09/2016,Sports_celeb,@AndreAgassi,@WorldTeamTennis @CaesarsPalace @BillieJeanKing @eltonofficial @Martina @andyroddick @MardyFish 👍🏼 +10/09/2016,Sports_celeb,@AndreAgassi,RT @WorldTeamTennis: A view of our court coming together at @CaesarsPalace for Monday's #WTTSmashHits. Buy tix: https://t.co/6QBVbrbPOD htt… +09/28/2016,Sports_celeb,@AndreAgassi,RT @queenhazarika: @AndreAgassi Love you both. Warm regards from India :) +09/28/2016,Sports_celeb,@AndreAgassi,"Listen here...TENNIS with you in Vegas, flights & hotel included !! WIN: https://t.co/NMNusFxagk https://t.co/tku7iPy6KF" +09/28/2016,Sports_celeb,@AndreAgassi,⛈⛈⛈ rolling into #VEGAS! +09/22/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: YOU can win a trip to #Vegas to play a game of doubles with @AndreAgassi & Steffi Graf! ENTER: https://t.co/r8tQ4cZVMS https:/… +09/22/2016,Sports_celeb,@AndreAgassi,RT @Martijn_Blanken: Truly impressive philanthropist and entrepreneur @AndreAgassi on stage in 2 hours at #Vantage16 https://t.co/Pbw1yZPja7 +09/16/2016,Sports_celeb,@AndreAgassi,RT @omaze: Would you choose Andre Agassi or Steff Graf as your partner for doubles tennis? Join & ENTER https://t.co/j9kQ2tZsIh https://t.c… +09/16/2016,Sports_celeb,@AndreAgassi,RT @darren_cahill: @redlinersonline @AndreAgassi the best! 👍 +09/15/2016,Sports_celeb,@AndreAgassi,You & me. Stef & your friend. DOUBLES??! https://t.co/adCMwArzc4 https://t.co/8jS3ErGurk +09/13/2016,Sports_celeb,@AndreAgassi,RT @Telstra_EntGovt: We're looking forward to the @AndreAgassi & @SirKenRobinson speaker sessions at #Vantage16 https://t.co/sgxfyLZXfk +09/11/2016,Sports_celeb,@AndreAgassi,🇺🇸 +09/08/2016,Sports_celeb,@AndreAgassi,@ssr99 don't get me in trouble +09/08/2016,Sports_celeb,@AndreAgassi,Doubles vs Stef & I in #Vegas?!! Support 2 great causes & ENTER: https://t.co/sT1siNeoIL https://t.co/OkTn9nCBZ2 +09/01/2016,Sports_celeb,@AndreAgassi,RT @Steve_Weissman: So cool to broadcast the first match @usopen with the roof closed @TennisChannel @justingimelstob 🎾🇺🇸 https://t.co/dLHH… +08/31/2016,Sports_celeb,@AndreAgassi,RT @LavazzaUSA: Taking over the High Line! #Imback #USOpen https://t.co/jVfrFj3gzo +08/31/2016,Sports_celeb,@AndreAgassi,@usopen my pleasure!!! +08/31/2016,Sports_celeb,@AndreAgassi,RT @usopen: Spotted: We were so happy to have our former champ @AndreAgassi in the house tonight! 🏆🏆 #usopen https://t.co/9VrlufubhI +08/30/2016,Sports_celeb,@AndreAgassi,@Dan_Fuller1 good book but no... +08/30/2016,Sports_celeb,@AndreAgassi,And where does this door lead??!! #USOPEN https://t.co/ncatcT5Jss +08/30/2016,Sports_celeb,@AndreAgassi,#USOPEN 💪🏼 https://t.co/FyzfesdPbZ +08/30/2016,Sports_celeb,@AndreAgassi,@LavazzaUSA Proud to be back with #Lavazza for an amazing project!! +08/30/2016,Sports_celeb,@AndreAgassi,RT @LavazzaUSA: Andre Agassi is back. Watch the video. #ImBack https://t.co/Q6pIJ6Z68x +08/30/2016,Sports_celeb,@AndreAgassi,#NYC!!! +08/25/2016,Sports_celeb,@AndreAgassi,@thepromisefilm Kirk would be proud!! +08/25/2016,Sports_celeb,@AndreAgassi,"RT @thepromisefilm: ""The Promise"" will premiere at #TIFF16 Sept 11. Individual tickets go on sale on Sept 4 https://t.co/07QNIWC6pn https:/…" +08/24/2016,Sports_celeb,@AndreAgassi,https://t.co/Vi1mpIrE2Z 👍🏼 https://t.co/Bkyq73AgNC +08/23/2016,Sports_celeb,@AndreAgassi,RT @cnnsport: Tennis legend @AndreAgassi opens up to @TheRealPatCash 🎾 Watch/read: https://t.co/ERMYzbtau7 #CNNOpenCourt https://t.co/G6Nvq… +08/22/2016,Sports_celeb,@AndreAgassi,RT @Telstra_news: We're excited to announce sports legend and entrepreneur @AndreAgassi as our headline speaker at #Vantage16 https://t.co/… +08/16/2016,Sports_celeb,@AndreAgassi,Buster standing under Blue... Blue is 8months old as of yesterday 😳 https://t.co/QIw8mPXEi9 +07/28/2016,Sports_celeb,@AndreAgassi,"You feel a sense of pride, responsibility & opportunity to do something that you're connected to but that’s much bigger than you #Olympics🇺🇸" +07/22/2016,Sports_celeb,@AndreAgassi,"My story began in Las Vegas, where we dare to dream. Now I'm grateful... @NIKE #JUSTDOIT https://t.co/J4rfiLgdJ5" +07/21/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: ""We inspire learning through academic rigor, shared responsibility and a culture of respect."" - @AAFforE #EDUCATION" +07/20/2016,Sports_celeb,@AndreAgassi,"RT @darren_cahill: My new best friend 😍 @AndreAgassi's little guy ""Blue"" 7 month old, 100 pound Great Dane. https://t.co/9VmyiEyt2m" +07/14/2016,Sports_celeb,@AndreAgassi,Welcome to Sutri... https://t.co/g6pvHYVPtJ +07/04/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: Happy #FourthofJuly 🇺🇸! +06/21/2016,Sports_celeb,@AndreAgassi,#BELIEVE EVERYDAY https://t.co/Vi1mpIrE2Z https://t.co/4wMfHFYnaL +06/02/2016,Sports_celeb,@AndreAgassi,Who has them??! https://t.co/m1kJnvtWFr +06/01/2016,Sports_celeb,@AndreAgassi,RT @SoleCollector: .@AndreAgassi's Nike Air Tech Challenge 3 goes gold for Wimbledon: https://t.co/a78gQqxF04 https://t.co/cRiqCUvoA3 +06/01/2016,Sports_celeb,@AndreAgassi,RT @AAFforE: STAFF MEETING in 1 hour! #EDUCATION +05/24/2016,Sports_celeb,@AndreAgassi,"Signed, sealed and delivered...post your letter to @RafaelNadal at Nike Paris!! #VamosRafa @NikeCourt https://t.co/ZELyToNFab" +05/23/2016,Sports_celeb,@AndreAgassi,Closer look... https://t.co/XFI6E5lEPs +05/23/2016,Sports_celeb,@AndreAgassi,Ever been in love? https://t.co/9DCJ9HIhcV +05/20/2016,Sports_celeb,@AndreAgassi,RT @AgassiPrep: Nickelodeon #WORLDWIDEDAYOFPLAY! https://t.co/NDCzofio6B +05/19/2016,Sports_celeb,@AndreAgassi,"RT @AgassiPrep: Thank you for the visit, GOV @BrianSandoval! #EDUCATION https://t.co/cwJDP0Q8rP" +05/18/2016,Sports_celeb,@AndreAgassi,📸 cred: John Russell https://t.co/p9ZnXSgcz5 +05/11/2016,Sports_celeb,@AndreAgassi,RT @SquarePanda: Meet the panelists who will join us to explore the #FutureofEdTech next week at Stanford University! https://t.co/f4B6yFjt… +05/05/2016,Sports_celeb,@AndreAgassi,"RT @ChampSeries10s: Here's a throwback photo of @andyroddick @JRBlake and @MardyFish .... ""U.S. Davis Cup Future"" https://t.co/FqMw6F5Fxj" +05/04/2016,Sports_celeb,@AndreAgassi,On 5/12 I'm a panelist at @SquarePanda's #FutureofEdTech event at STANFORD.. Join online to learn more !! https://t.co/JU2WFBlLQ3 +05/03/2016,Sports_celeb,@AndreAgassi,Proud to exhibit @AgassiAndReyes at UK's @ElevateArena trade show Wednesday/Thursday with @CFIHQ!!! #Elevate2016 +05/03/2016,Sports_celeb,@AndreAgassi,RT @SquarePanda: We're thrilled to announce #Tech & the Future of #Education: a symposium happening next week with @levarburton @AndreAgass… +04/28/2016,Sports_celeb,@AndreAgassi,RT @jimmykimmel: I’ve been replaced. #TakeYourKidToWorkDay https://t.co/wBjZW3b7iB +04/28/2016,Sports_celeb,@AndreAgassi,"Sit back and enjoy this one. Well done, PK!!! @Nike https://t.co/G140NVf9gU" +04/28/2016,Sports_celeb,@AndreAgassi,"With Education, There is Hope!!! @AAFforE https://t.co/oazbK6LWb8" +04/24/2016,Sports_celeb,@AndreAgassi,@KevinI he's growing...8weeks 20lbs. 12-- 40lbs-- 16now 66lbs +04/24/2016,Sports_celeb,@AndreAgassi,I'm in love ! https://t.co/9Snvqw28Vj +04/15/2016,Sports_celeb,@AndreAgassi,See it ? https://t.co/F2pPsCobTW +04/13/2016,Sports_celeb,@AndreAgassi,CONGRATS @opportunity180!!! Former NV edu official wins $10M state charter school contract: https://t.co/UulPOLwI08 https://t.co/IBdnIjFqbD +04/13/2016,Sports_celeb,@AndreAgassi,"RT @SquarePanda: Invest now, and watch your child's love of reading grow and shine forever. +https://t.co/krxjYUt98t https://t.co/eqKeUcjfTY" +04/10/2016,Sports_celeb,@AndreAgassi,RT @JRBlake: Thanks Andre. It helps that I'm sitting next to you right now. Just soaking up the knowledge. https://t.co/Z7fJIdl5FZ +04/10/2016,Sports_celeb,@AndreAgassi,Solid work tweeting sir @JRBlake !! +04/09/2016,Sports_celeb,@AndreAgassi,I see you CHARLESTON... @VolvoCarOpen https://t.co/AD2tutJsdG +04/09/2016,Sports_celeb,@AndreAgassi,"RT @VolvoCarOpen: Reunion between old friends. 😎 + +RT if you're excited to see these 4 legends of the game playing tonight! 🎾 #VCO2016 https…" +04/09/2016,Sports_celeb,@AndreAgassi,69ft putt?! @TheMasters #YIKES +04/09/2016,Sports_celeb,@AndreAgassi,#VCO2016...where's @MardyFish?! @ChampSeries10s https://t.co/XhMGPaAWwc +04/09/2016,Sports_celeb,@AndreAgassi,RT @paugasol: Great meeting you yesterday @andreagassi! I hope you enjoyed your visit to… https://t.co/zFzUMGM7NI +04/09/2016,Sports_celeb,@AndreAgassi,"RT @VolvoCarOpen: Men's tennis returns to Charleston w/ @ChampSeries10s, feat. #Agassi, #Roddick & more! Tix: https://t.co/JpNxdfkiBY https…" +07/02/2018,Sports_celeb,@OscarDeLaHoya,Congratulations to @KingJames and all the Los Angeles @Lakers fans! Can’t wait to see you play @STAPLESCenter!!… https://t.co/DT4ovkD0Yp +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @BoxeoDCampeones: Así luce Lucas Matthysse a sólo dos semanas del pesaje en Kuala Lumpur, Malasia. #PacquiaoMatthysse #FightOfChampions…" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: IT’S TIME‼️ + +#CaneloGGG2 Social 🎟 Pre-sale starts NOW: https://t.co/ZskL3u0sBJ Use Code: MEXICO https://t.co/kyFwuvucYL" +06/30/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: TOMORROW!!! + +#CaneloGGG2 Social 🎟 Pre-sale! + +⏰: 10amPT +Use Code: MEXICO +https://t.co/CmSMa8JcDc https://t.co/UfKHA4Xz…" +06/24/2018,Sports_celeb,@OscarDeLaHoya,RT @RondaRousey: Congrats to our onefightmanagement fighter luckyboyferd on his latest victory @goldenboyboxing 👏🏼👏🏼👏🏼👏🏼 https://t.co/lqgHm… +06/24/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Main event time!! 🔥 + +@VergilOrtiz enters the ring. #OrtizSalgado #GBPonESPN https://t.co/fjI31ZSjj8" +06/23/2018,Sports_celeb,@OscarDeLaHoya,Viva Mexico!!! https://t.co/CdZNuxyrAF +06/23/2018,Sports_celeb,@OscarDeLaHoya,"Vamos México! Si se pudo, si se pudo! 🇲🇽 #OrgulloMexicano #worldcup2018 ##MexicoVsSouthKorea https://t.co/6d45PT2PLt" +06/20/2018,Sports_celeb,@OscarDeLaHoya,"RT @danrafaelespn: Golden Boy Promotions and HBO are finalizing a tripleheader for July 21 at the Hard Rock Hotel & Casino in Las Vegas, th…" +06/18/2018,Sports_celeb,@OscarDeLaHoya,"@danrafaelespn @ShaneMosley_ Hahah, kids don’t know about this action." +06/17/2018,Sports_celeb,@OscarDeLaHoya,Viva México 🇲🇽 y el pan dulce!!! #sisepuede #mexico #futbol https://t.co/UbXwjUrgtj +06/15/2018,Sports_celeb,@OscarDeLaHoya,@SeFutbol gooooolllllll!!!!!! +06/15/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Mercito Gesta takes home the belt with a Majority Decision Victory #GBPonESPN #boxing https://t.co/eSxF4nF66P +06/14/2018,Sports_celeb,@OscarDeLaHoya,"RT @BleacherReport: Canelo-GGG rematch set for September 15, per @OscarDeLaHoya https://t.co/108XY1xEXm" +06/13/2018,Sports_celeb,@OscarDeLaHoya,"I’m happy to inform that we have a fight September 15!!!! #CaneloGGG2 +Feliz De informar que si tenemos pelea Septi… https://t.co/vFrHrA3I32" +06/13/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Log on to https://t.co/gEwz3LcyYG at 1 PM for the #GBPonESPN weigh in ft. @TheRealMGesta https://t.co/o26BYzNXDO +06/13/2018,Sports_celeb,@OscarDeLaHoya,Half hour to decide if the biggest fight in boxing will take place. #whereisggg +06/13/2018,Sports_celeb,@OscarDeLaHoya,t-minus two hours. Somehow I think @eddiehearn @frankwarren_tv and Al Haymon won't be as difficult to reach as @gggboxing #whereisggg +06/13/2018,Sports_celeb,@OscarDeLaHoya,"@canelo wants it, @goldenboyboxing wants it, the media want it, fans want it. Paging @gggboxing. #whereisggg" +06/13/2018,Sports_celeb,@OscarDeLaHoya,"Tic-Toc, Tic-Toc. If any fight freaks see @GGGBoxing in Russia, perhaps you can lend him a pen. #whereisGGG" +06/13/2018,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: It's down to this: @GoldenBoyBoxing & @Canelo issue @GGGBoxing & @TomLoeffler1 a deadline of noon PT on Wednesday to acc… +06/11/2018,Sports_celeb,@OscarDeLaHoya,"RT @touchumup: Good food, good times with @MrsEsterMarie and our son in NY after @DiegoDeLaHoya victory this past Friday. Next stop, @Fan…" +06/10/2018,Sports_celeb,@OscarDeLaHoya,Congratulations to @leosantacruz2 on a great fight and hats off to @abnermares for saying those kind words to Leo’s… https://t.co/TGA1f1ZWvG +06/09/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TONIGHT! @diegodelahoya vs Jose Salgado for the #NABF and #NABO Super Bantamweight Titles on @espn 9:30pm PT. #GBPonES… +06/08/2018,Sports_celeb,@OscarDeLaHoya,Excited to see the next installment of @SicarioMovie SICARIO: DAY OF THE SOLDADO out in theaters June 29!… https://t.co/YPqOKHaZgQ +06/05/2018,Sports_celeb,@OscarDeLaHoya,"RT @touchumup: It’s fight week for @DiegoDeLaHoya vs Jose sugar Salgado from @TurningStone @espn @NABFboxing @WorldBoxingOrg +And catch @of…" +06/01/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: 🥊🥊🥊 Tonight’s #LAFightClub is LIVE on @Roku via the #RingTV app. Download it today. 🥊🥊🥊 + +https://t.co/k203xsmL8d" +05/31/2018,Sports_celeb,@OscarDeLaHoya,Honored to have won 4 @tellyawards for @GoldenBoyBoxing #MediaEntertainment productions including #IAmBoxing… https://t.co/eBhAqFOqCq +05/29/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Tune in now #GoldenBoyLIVE #GoldenBoyRadio @JessRosales1 @DuranSports https://t.co/WBsQrdvzwC +05/28/2018,Sports_celeb,@OscarDeLaHoya,"@Canelo is moving on, the only possible way he fights @GGGBoxing in September is on same terms we agreed on after t… https://t.co/FkCKhJuSWc" +05/27/2018,Sports_celeb,@OscarDeLaHoya,RT @touchumup: With @officialvalerio at yesterday’s Newton Cadet Scholarship Fndn. car show. Catch #kidneza in action 6/14 @FantasySprings… +05/26/2018,Sports_celeb,@OscarDeLaHoya,@GGGBoxing good look with Sergiy Derevyanchenko who’s 11-0 and your IBF mandatory the train has moved on and going… https://t.co/c1trgFvzrn +05/25/2018,Sports_celeb,@OscarDeLaHoya,"RT @ringmagazine: BREAKING: Canelo-Golovkin rematch talks hit roadblock, @OscarDeLaHoya seeks new opponent for Alvarez https://t.co/6oXaiv1…" +05/20/2018,Sports_celeb,@OscarDeLaHoya,Why would I be disappointed when I’m the only promoter willing to make good fights win or loose for the fans. https://t.co/rT70kW8svY +05/20/2018,Sports_celeb,@OscarDeLaHoya,"What an amazing fight congratulations @mrgaryrusselljr and @JosephDiazJr + +In one week @GoldenBoyBoxing 4 world tit… https://t.co/IZFyOCfSGd" +05/18/2018,Sports_celeb,@OscarDeLaHoya,"Spence can be like my hero sugar ray Leonard, but he has no promoter to plan out and guide his career. #strategie… https://t.co/LVhvUfAAn5" +05/18/2018,Sports_celeb,@OscarDeLaHoya,RT @JosephDiazJr: 126lbs on the $! Tune in live on @showtimeboxing tomorrow night 10pmET! Who’s #TeamDiazJr?? First World Title shot babbbb… +05/16/2018,Sports_celeb,@OscarDeLaHoya,"RT @JosephDiazJr: Fighting for the WBC Featherweight Title this Sat, May 19th live on @showtimeboxing! @goldenboyboxing #StrapSeason #TheCo…" +05/15/2018,Sports_celeb,@OscarDeLaHoya,Canelo just signed contract to year round VADA testing. +05/13/2018,Sports_celeb,@OscarDeLaHoya,Tune-in to @HBOboxing for more great boxing! #AliMunguia #VargasHovhannisyan https://t.co/yVsyup5wYv +05/13/2018,Sports_celeb,@OscarDeLaHoya,Great fight to both warriors. Congratulations @VasylLomachenko +05/12/2018,Sports_celeb,@OscarDeLaHoya,RT @AlexMar61844168: @OscarDeLaHoya @GGGBoxing @Canelo GGG and his cheerleaders acting like the win on 5/5 was something to brag about... h… +05/12/2018,Sports_celeb,@OscarDeLaHoya,Canelo will return in September https://t.co/Jb0J3Z92XC +05/12/2018,Sports_celeb,@OscarDeLaHoya,Glad your one of 100 idiots https://t.co/3rnQpzASfJ +05/12/2018,Sports_celeb,@OscarDeLaHoya,Hahahaah please https://t.co/rabSktZowA +05/12/2018,Sports_celeb,@OscarDeLaHoya,In the mean time @GGGBoxing making 3million and @Canelo making 40 million without you. #sighnthecontract #scared #CaneloGGG2 #stopcrying +05/12/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: WE HAVE A FIGHT!!🔥 + +👑 vs. 🤖 + +Both fighters weigh-in at 134.6 lbs! It’s going DOWN tomorrow night on @espn #LinaresLoma…" +05/09/2018,Sports_celeb,@OscarDeLaHoya,Hahaahahah https://t.co/rJtlBvp6Lx +05/06/2018,Sports_celeb,@OscarDeLaHoya,@beINSPORTS Messi the Great!!!!! +05/06/2018,Sports_celeb,@OscarDeLaHoya,RT @BoxToffee: 23 years ago today @OscarDeLaHoya defeated Rafael Ruelas via 2nd round TKO to make a successful 4th defence of his WBO Light… +05/06/2018,Sports_celeb,@OscarDeLaHoya,@beINSPORTS Messi the great!!!! +05/05/2018,Sports_celeb,@OscarDeLaHoya,RT @spike_osullivan: It was an honour to fight in front of the Mexican people on @GoldenBoyBoxing card on #CincoDeMayoWeekend and also an h… +05/05/2018,Sports_celeb,@OscarDeLaHoya,MUST WATCH: @Ryankingry analyzes his unanimous decision victory over Velez. https://t.co/eJFlZsWZIc #GBPonESPN… https://t.co/WaFtErm43z +05/05/2018,Sports_celeb,@OscarDeLaHoya,espn2 https://t.co/w3xdgnflZc +05/05/2018,Sports_celeb,@OscarDeLaHoya,"If a 19 year old fighter named @Ryankingry was out selling me at the gate, i would be pissed." +05/05/2018,Sports_celeb,@OscarDeLaHoya,"It’s true, America loves a winner and success story but we will always have those who are miserable and jealous bec… https://t.co/OGMfnwkbR9" +05/05/2018,Sports_celeb,@OscarDeLaHoya,"RT @spike_osullivan: In four & a half hours I step in the ring @stubhub and i'll be putting on a show for all the Irish, Mexican, American…" +05/04/2018,Sports_celeb,@OscarDeLaHoya,Have a crazy safe Cinco de Mayo weekend! @Ryankingry tonight at 7pm on @espn will headline a fantastic card with a… https://t.co/BPN7wT3JNS +05/04/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: IT’S ON!!! 🔥 Things got heated between @Ryankingry and @jayson_velez at today’s #GBPonESPN weigh-in. Comment below who… +05/04/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Oscar de La Hoya starting Golden Boy MMA, eyes Chuck Liddell vs Tito Ortiz 3 https://t.co/qNTVe2HKHm via @mmamania" +05/03/2018,Sports_celeb,@OscarDeLaHoya,"RT @TMZ: Oscar De La Hoya Starting MMA Biz, Targeting Chuck Liddell https://t.co/XS2aRoJNUO" +05/03/2018,Sports_celeb,@OscarDeLaHoya,RT @Canelo: ❤️ https://t.co/0GnjDLSPFA +04/28/2018,Sports_celeb,@OscarDeLaHoya,RT @SupereeeGO: EGO THE CHOLO VS. THE FLASH (@RyanKingRY) WHO WILL WIN? https://t.co/ErII2PQ3U4 +04/26/2018,Sports_celeb,@OscarDeLaHoya,RT @Ryankingry: This video was sent to me and it’s too cute not to post. Love you and I’ll do my best to be a good role model to you and to… +04/26/2018,Sports_celeb,@OscarDeLaHoya,RT @_solisr: It’s sad not seeing anybody talk about this @KTLA @ABC lots of people tend to ignore what happens to Hispanics in general and… +04/22/2018,Sports_celeb,@OscarDeLaHoya,Good fights on @ShowtimeBoxing tonight!! +04/09/2018,Sports_celeb,@OscarDeLaHoya,RT @ShannaMoakler: My beautiful daughter @Atianadelahoya so proud of her @OscarDeLaHoya shot by Oscar picazo https://t.co/YpJfo2xwo8 +04/08/2018,Sports_celeb,@OscarDeLaHoya,"RT @SupereeeGO: EL NIÑO DE ORO +Aka @oscardelahoya +@goldenboyboxing @ East Los https://t.co/CN7hik9lkb" +04/07/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: LA Fight Club - April 6th - Marlen Esparza vs Laetizia Campana https://t.co/2BrhBLtU5M +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @richardgomez79: @OscarDeLaHoya People don’t like the TRUTH! +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @jaebadiah: @OscarDeLaHoya @anthonyfjoshua @BronzeBomber I feel like #thegoldenboy is right about this one. #legend +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @925raidernation: @OscarDeLaHoya this is off topic but thank you for signing my poster I sent out to my Tio. Meant a lot and really made… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MontagueKaris: @MovsumovAslan @OscarDeLaHoya I think as a WORLD champ you should fight over all continents.. The USA is not the be all… +04/05/2018,Sports_celeb,@OscarDeLaHoya,You know it https://t.co/I0XthO9E2X +04/05/2018,Sports_celeb,@OscarDeLaHoya,If I was promoting @BronzeBomber I would take him to the UK and fight him with @anthonyfjoshua then have a rematch… https://t.co/lMTKSjvT7B +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MovsumovAslan: @OscarDeLaHoya u are absolutelly correct about Anthony Joshua!he must conquer USA to be a true superstar!superstars are… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @jaymzdenning: @OscarDeLaHoya You seem to be getting a lot of stick on twitter tonight mate.. Very unfair considering your incredible ca… +04/05/2018,Sports_celeb,@OscarDeLaHoya,RT @MovsumovAslan: @Jonathangeldar1 @OscarDeLaHoya Well if u wanna conquer the world and want to be the most popular fighter in the world u… +04/05/2018,Sports_celeb,@OscarDeLaHoya,Idiot! I made 800 million in my career. https://t.co/0UqZdnL22F +04/05/2018,Sports_celeb,@OscarDeLaHoya,"Don’t even go there you idiot, I fought the very best. https://t.co/yYaXn58EXJ" +04/05/2018,Sports_celeb,@OscarDeLaHoya,If @anthonyfjoshua and @BronzeBomber want to become household names in the US of A and stop doing mediocre raiding… https://t.co/7uBVUK2dbD +04/02/2018,Sports_celeb,@OscarDeLaHoya,"Signed, sealed, and delivered: Proud to officially announce that WBA welterweight world champion +@MatthysseLucas w… https://t.co/50EiRLUute" +04/02/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: ""He was a tough kid and had never been stopped. I knew this was the perfect fight to come back and see where I'm at. I…" +03/23/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Wow 😮 + +@Ryankingry jaw dropping knockout win in the main event! #GBPonESPN @espn https://t.co/cyqkoB7D9R" +03/22/2018,Sports_celeb,@OscarDeLaHoya,Make sure you tune-in to @ESPN tonight for a great night of #boxing! @Ryankingry will not disappoint in the main ev… https://t.co/JPbU58wLUw +03/22/2018,Sports_celeb,@OscarDeLaHoya,RT @ringmagazine: . @Canelo sends @GGGBoxing a message through his his Instagram story. 😳😳😳 https://t.co/nNcIYzXuWp +03/20/2018,Sports_celeb,@OscarDeLaHoya,RT @LUPILLO8: Gracias a DIOS por la oportunidad de poder respaldar a un talento mexicano y futuro campeón JOUSCE GONZALEZ #UNIDOSApoyandoRA… +03/20/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Lineal Ring Magazine Middleweight Champion @Canelo 100% focused in training camp. 🇲🇽👊🏼 #CaneloGGG2 #TeamCanelo https:/… +03/19/2018,Sports_celeb,@OscarDeLaHoya,"LA! Make sure to tune-in to @GDLA tomorrow morning @FOXLA +@lauradiazanchor #MorningShow #GoodDayLA https://t.co/83Ik3Tqsn0" +03/15/2018,Sports_celeb,@OscarDeLaHoya,It’s going down!! #May5 #CaneloGGG2 #CincoDeMayo @hboboxing #PPV #NoJudges https://t.co/nuy4BgroF0 +03/12/2018,Sports_celeb,@OscarDeLaHoya,As excited as anyone that big fight between @JorgeLinares and @vasyllomachenko is getting close. But it's not done… https://t.co/R170h67MmR +03/10/2018,Sports_celeb,@OscarDeLaHoya,@mannypacquiao vs @MatthysseLucas would be a fight of the year candidate. +03/08/2018,Sports_celeb,@OscarDeLaHoya,"RT @MarioLopezExtra: Fun shoot with the homie @OscarDelaHoya today... +@CMTequila + +#CigarAndSpiritsMag #CasaMexico #Tequila https://t.co/w…" +03/08/2018,Sports_celeb,@OscarDeLaHoya,RT @ABC7: VIDEO: Meet the 19-year-old @OscarDeLaHoya says has the potential to be the next “mega-star” in the world of boxing https://t.co/… +03/05/2018,Sports_celeb,@OscarDeLaHoya,"@BronzeBomber congratulations on such a great accomplishment when everyone doubted you, hit me up when you wanna ma… https://t.co/8xkIU9LHRu" +03/01/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@Canelo and @gggboxing trainer @abelthesummit get into a heated exchange in last nights #CaneloGGG2 Fan Event. Watch… +02/27/2018,Sports_celeb,@OscarDeLaHoya,RT @FoxBusiness: Former world champion boxer @OscarDeLaHoya discusses the future of boxing and why he believes that the sport will make a c… +02/18/2018,Sports_celeb,@OscarDeLaHoya,RT @lauradiazanchor: @OscarDeLaHoya earned huge success in sports & business.But what achievement does this Olympic gold medal winner value… +02/15/2018,Sports_celeb,@OscarDeLaHoya,"6., So, @VasylLomachenko has three options. 1) Fight on May 12th on HBO 2) Fight on any other day on the calendar,… https://t.co/NFBcCUAsKo" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"5., HBO is willing to pay more for the fight than is currently being offered. And they would do it on May 12th." +02/15/2018,Sports_celeb,@OscarDeLaHoya,"4., While @JorgeLinares is happy to fight on any other date of the calendar, if @VasylLomachenko absolutely, positi… https://t.co/z1rSKdTcoL" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"3., We know of no bylaw, Ukranian holiday or ""magic day"" in the words of Bob Arum that mandates that… https://t.co/0pPvuP567g" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"2., @JorgeLinares wants this fight. @GoldenBoyBoxing wants this fight. Mr. Honda wants this fight. And collectively… https://t.co/REjUuASZop" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"1., Over the last days, there has been a lot of rumor and speculation about the potential fight between… https://t.co/zxzFzm0Bzf" +02/15/2018,Sports_celeb,@OscarDeLaHoya,"RT @danrafaelespn: Since @Ryankingry's next fight was announced today, here's a look back at the 2017 prospect of the year story I did on h…" +02/04/2018,Sports_celeb,@OscarDeLaHoya,@BobArum @mannypacquiao vs @MatthysseLucas would be a barn burner. #fansfirst #war +02/02/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: This time, they won't leave it up to the judges... + +#CaneloGGG2 IS OFFICIAL!! #May5 https://t.co/WECEiw314u" +02/01/2018,Sports_celeb,@OscarDeLaHoya,@danrafaelespn @JorgeLinares @VasylLomachenko @trboxing @BobArum @GoldenBoyBoxing @KlimasBoxing @CarlMoretti No tal… https://t.co/kPdH6TFvtX +01/30/2018,Sports_celeb,@OscarDeLaHoya,"Check me out on @MikeTyson’s new podcast, @BiteTheMicShow. + +Click the link to listen: https://t.co/B7gk7S3iaV… https://t.co/32XKJDQywT" +01/29/2018,Sports_celeb,@OscarDeLaHoya,Boxing’s biggest event of 2018 is official! #CaneloGGG2 I expect we will see even more fireworks. #May5 https://t.co/r7KA6APlDl +01/28/2018,Sports_celeb,@OscarDeLaHoya,Kicking off @goldenboyboxing in 2018 with a bang!! Congratulations to the new WBA welterweight champion ‘La Máquina… https://t.co/GXV0Z6Ebsw +01/28/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Congratulations to the NEW WBA welterweight champion “La Máquina” 🇦🇷 Lucas Matthysse! #MatthysseKiram https://t.co/0vD… +01/26/2018,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@OscarDeLaHoya is back on #GoldenBoyRadio tomorrow morning with Tattoo and The Crew! Only on @dash_radio #TuneIn http… +01/26/2018,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: After a Breakout 2017, Golden Boy Heads Back Into the Ring for HBO Fight This Weekend https://t.co/Zu9Pb5Od9c" +01/14/2018,Sports_celeb,@OscarDeLaHoya,RT @LAKings: .@OscarDeLaHoya congratulates Bob Miller on his statue outside of STAPLES Center! 👏 https://t.co/6jc9uHGX9T +01/12/2018,Sports_celeb,@OscarDeLaHoya,@Canelo vs @GGGBoxing is not done and not close to being done considering reports. I promise all the fans it will g… https://t.co/e38QySTBnd +01/10/2018,Sports_celeb,@OscarDeLaHoya,RT @jay_quigley: @KevByrneBox @GoldenBoyBoxing @everlast @McElhinneys @VillaRoseHotel @JacksonsHotel1 @Irishboxingcom @chrismcnulty86 @Done… +01/10/2018,Sports_celeb,@OscarDeLaHoya,RT @jay_quigley: I’m still with the best in the business and staying with the best @GoldenBoyBoxing @makeawar @Micheladatime going to bring… +01/06/2018,Sports_celeb,@OscarDeLaHoya,RT @officialvalerio: Good morning USA! It’s the first weekend of the year!!! Share the joy of success and love! @touchumup @GoldenBoyBoxing… +12/29/2017,Sports_celeb,@OscarDeLaHoya,Want to send my congrats to @Ryankingry on being named the 2017 @ESPN prospect of the year and to @GoldenBoyBoxing… https://t.co/JxX6zlAItI +12/28/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: After Most Successful Year In Golden Boy Promotions History, @OscarDeLaHoya Aims For More In 2018 - @Forbes @peterkahn…" +12/26/2017,Sports_celeb,@OscarDeLaHoya,Let me take this opportunity to thank all the fans who support boxing and @GoldenBoyBoxing . 2018 will once again b… https://t.co/0cwUsEJ5uB +12/16/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Billy Joe Saunders vs David Lemieux - Undercards https://t.co/ehZbB9egrn +12/14/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #Bestof2017 🏆 + +Who is your pick for #GoldenBoy's Prospect of the Year? + +Here are the nominees: +@VergilOrtiz +@AlexisR…" +12/10/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Salido vs Roman - Undercards - Aaron Mckenna https://t.co/pHDi37nH4R +12/09/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/zpM5VAm20t +12/09/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: How many of you #boxing fans box? We're challenging you to a #10DaysOfBoxing Holiday Giveaway Challenge! Win #GoldenBo… +12/09/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Look at all these prizes we have for our 10 winners! 😍Join the #10DaysOfBoxing #GoldenBoy @titleboxing challenge and… +12/08/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW on #GoldenBoy Radio @dash_radio! Special Holiday in studio performance by @therealfrankieJ w/ @Tattootheone a… +12/07/2017,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: Orlando Salido promises action -- what else would you expect? -- in his fight vs. Miguel Roman on Saturday on @HBOboxing… +12/07/2017,Sports_celeb,@OscarDeLaHoya,Este sábado en @HBO Salido vs Roman será una guerra. @elbandido130 en acción desde el Mandalay Bay. @GoldenBoyBoxing @ZanferBox #HBO #War +12/07/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/4GLvgtzh34 via @youtube keep talking crap. +12/07/2017,Sports_celeb,@OscarDeLaHoya,Hey @FloydMayweather you wanna continue talking sh*t. Ok there you go. https://t.co/PImjvxUTWf +12/05/2017,Sports_celeb,@OscarDeLaHoya,RT @realworldkidali: Thank you to all the love and support i have been receiving. Last night i accomplished one of the biggest goals in my… +12/05/2017,Sports_celeb,@OscarDeLaHoya,RT @Ryankingry: Jab jab jab Canada immmmm coming in less then two weeks sooo excited https://t.co/rgN6lnj9dI +12/03/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: All smiles for #TheLastOne! + +Two legends 🙌🏼 @OscarDeLaHoya greets @RealMiguelCotto in his locker as he prepares for h…" +12/02/2017,Sports_celeb,@OscarDeLaHoya,"My boy @Tattootheone live on #goldenboyradio @dashradio exclusively w/ @realmiguelacotto @thegarden. + +Tonight, fin… https://t.co/oYnMajabLY" +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@TheGarden is ready for #CottoAli FIGHT NIGHT! Are you ready? #TheLastOne for @RealMiguelCotto tonight on @hboboxing… +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @totalfratmove: #CottoAli goes down tonight at 10pm ET on @HBOboxing. Retweet for a chance to win this glove signed by @RealMiguelCotto.… +12/02/2017,Sports_celeb,@OscarDeLaHoya,RT @dodo: This puppy couldn't stop crying out in pain when anyone came near him because he'd never felt a gentle touch. But then he met thi… +12/02/2017,Sports_celeb,@OscarDeLaHoya,Future Hall of Famer and a true Legend of Puerto Rico @RealMiguelCotto looks to go out as a champion and defend his… https://t.co/9XXmtM3R5R +12/01/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@Canelo sends his best wishes to the legendary @RealMiguelCotto ahead of his final fight Saturday night @TheGarden! #… +12/01/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Score tonight's #GBPonESPN main event on the @fightersnetwork app! Download now at https://t.co/90EfxuX0MX https://t.c… +11/26/2017,Sports_celeb,@OscarDeLaHoya,Good fight on hbo now. +11/25/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: (Cont.) Our thoughts and prayers are with Cesar's girlfriend who remains in critical condition and his entire family. +11/25/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Everyone at Golden Boy Promotions is heartbroken over the passing of Cesar Diaz over Thanksgiving weekend. As talented… +11/24/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #HappyThanksgiving! We're thankful for a successful year and your continued support! Most of all, for being able to gi…" +11/23/2017,Sports_celeb,@OscarDeLaHoya,Hahaha happy turkey day https://t.co/VxBUfcN4TJ +11/21/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Tonight! We'll be watching. Good Luck to the @HoustonDynamo in leg 1 of the Western Conference Championship! ⚽️ #Forev… +11/20/2017,Sports_celeb,@OscarDeLaHoya,RT @GreenDotSchools: Oscar De La Hoya Foundation Annual Turkey Giveaway supports the East Los Angeles community for the 21st year in a row!… +11/20/2017,Sports_celeb,@OscarDeLaHoya,Gracias @eastlaparade! Viva #EastLA! #ela #Christmasparade https://t.co/bm4cjWfY1X +11/19/2017,Sports_celeb,@OscarDeLaHoya,Here we go!!! Can't wait to see you all @eastlaparade #Hometown #EastLA @EASTLA_NEWS @goEastLos #ela https://t.co/I63eDJM04D +11/19/2017,Sports_celeb,@OscarDeLaHoya,"With the man, the myth, the legend @ArtLaboe #Orale #EastLA @eastlaparade #ela @EASTLA_NEWS https://t.co/gz2rk0sLtu" +11/19/2017,Sports_celeb,@OscarDeLaHoya,Kicking off the @eastlaparade with the ceremonial ribbon cutting. Here we go! #EastLA #ChristmasParade https://t.co/GLdkRPUYOQ +11/19/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW! 🎙Special guest @icecube joins @Tattootheone and The Crew on Golden Boy Radio! 🔥Download the @dash_radio app… +11/19/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: Tomorrow!! #elachristmasparade #eastla https://t.co/S59UQANv7q +11/18/2017,Sports_celeb,@OscarDeLaHoya,Don't forget to come out tomorrow for the annual @eastlaparade! 🎄🎅🏽 @EASTLA_NEWS @goEastLos #ela #eastlos… https://t.co/oe6aKSweYe +11/18/2017,Sports_celeb,@OscarDeLaHoya,Honored and privileged to #giveback to my community for 21 years! The #ODLHFoundation Annual Turkey giveaway in Eas… https://t.co/rP8zCkoRxW +11/17/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: MONDAY 🎙We got special guest @icecube on #GoldenBoy Radio w/ @Tattootheone and The Crew! 🔥Download the @dash_radio app… +11/17/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: We are ready to fill the streets with holiday spirit this Sunday! Are you ready? #eastla #elachristmasparade https://t.co… +11/17/2017,Sports_celeb,@OscarDeLaHoya,Honored to be apart of my hometowns annual @eastlaparade this Sunday! #ELA Hope to see you there! @EASTLA_NEWS… https://t.co/5QLIP4Ae6E +11/16/2017,Sports_celeb,@OscarDeLaHoya,Excited to welcome @Aaronmckenna99 and @maricelaladiva to the @GoldenBoyBoxing family. Congratulations! Now let's m… https://t.co/8gCYoqa8yv +11/15/2017,Sports_celeb,@OscarDeLaHoya,RT @maricelaladiva: Finally able 2 share this just signed w/ @GoldenBoyBoxing! I remember telling @OscarDeLaHoya U will sign me one day 6 y… +11/15/2017,Sports_celeb,@OscarDeLaHoya,Forever representing ELA #itsinmyname #raza https://t.co/Inqu6UhCHK +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Golden Boy on @dash_radio Tattoo & The Crew: 🎙@OscarDeLaHoya has been secretly training and says he only needs two rou… +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: The boss has arrived! 🙌🏼 @OscarDeLaHoya is live on Golden Boy Radio w/ Tattoo and The Crew @dash_radio https://t.co/3I… +11/13/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: TOMORROW #GoldenBoy radio premieres on @dash_radio w/ Tattoo & The Crew w/ special guest @OscarDeLaHoya 🏅Make sure to… +11/13/2017,Sports_celeb,@OscarDeLaHoya,🎙I'll be on live for the premiere of #GoldenBoy Radio on @dash_radio tomorrow w/ Tattoo & The Crew! 7am-10am PT. M… https://t.co/8pcG06mPdu +11/12/2017,Sports_celeb,@OscarDeLaHoya,"@katedelcastillo Only judgement is, it should be a #tecate :) buen domingo amiga" +11/12/2017,Sports_celeb,@OscarDeLaHoya,"Excited to be a part of this annual tradition in my home town. #ELAChristmasParade next Sunday, Nov 19. 12pm… https://t.co/djsW3SxFkD" +11/11/2017,Sports_celeb,@OscarDeLaHoya,"It is my absolute pleasure to give back and present boxing gear to the kids @gg_boxing in Garden Grove, CA… https://t.co/wKaFXnbWbA" +11/10/2017,Sports_celeb,@OscarDeLaHoya,"I️ promoted @BronzeBomber first 33 fights and made him a champion, if I️ was his promoter he would be a star and… https://t.co/1IhR5OGCk5" +11/04/2017,Sports_celeb,@OscarDeLaHoya,https://t.co/RcnAdQQF6q my brother/ mi hermano working for what’s right for California. +11/03/2017,Sports_celeb,@OscarDeLaHoya,RT @danrafaelespn: Promoter @OscarDeLaHoya details efforts to make @mikeygarcia vs. @JorgeLinares. My story: https://t.co/LjDBfcrkGP #boxin… +11/03/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: You do not want to miss #GBP's rising star @Ryankingry in tonight's co-main event. #GBPonESPN LIVE now! #KingRy https:… +11/03/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: #BEAST 👊🏼 @Ryankingry strikes again with another stoppage on #GBPonESPN. Now 12-0, 11 KOs 🔥 https://t.co/nVTT7z0Zg0" +11/02/2017,Sports_celeb,@OscarDeLaHoya,Score tonight's #GBPonESPN fights on @fightersnetwork app and automatically be entered to win a signed #CaneloGGG 🥊… https://t.co/iceWh0vxSO +10/31/2017,Sports_celeb,@OscarDeLaHoya,"RT @WBABoxing: #Medellin se convirtió en la capital del boxeo mundial, con la ceremonia de inauguración de la #WBA96Convention https://t.co…" +10/30/2017,Sports_celeb,@OscarDeLaHoya,RT @ringmagazine: Watch #RXF28 Live on #RingTV @FiteTV tomorrow morning #livefights https://t.co/iTyc9qLssA +10/30/2017,Sports_celeb,@OscarDeLaHoya,RT @eastlaparade: We are thrilled to announce OSCAR DE LA HOYA as this year’s 2017 East LA Christmas Parade Grand Marshal! @OscarDeLaHoya #… +10/27/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: .@OscarDeLaHoya at #FuerzaMéxico @CongaRoomLA to benefit #MexicoRises earthquake relief. #GoldenBoy will match funds r… +10/27/2017,Sports_celeb,@OscarDeLaHoya,RT @EugenioDerbez: Tonight #FuerzaMéxico @jesseyjoy @jesseavenue @solamentejoy @jaimecamil @OscarDeLaHoya. Para donar / to donate: https://… +10/26/2017,Sports_celeb,@OscarDeLaHoya,We'll get the next one @dodgers #gododgers #thisteam #blue #ela https://t.co/kFUsJ25sL2 +10/21/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: TONIGHT. @CorralesJezreel vs @xplosivomachado WBA Super Featherweight Title. Plus, #AndradeFox #BurnettZhakiyanov LIVE…" +10/21/2017,Sports_celeb,@OscarDeLaHoya,"Join us at the @CongaRoom Thursday, 10/26 for #FuerzaMexico to benefit #MexicoRises Earthquake Fund. Tickets here:… https://t.co/tN1OiRAesv" +10/20/2017,Sports_celeb,@OscarDeLaHoya,"RT @GoldenBoyBoxing: Dear, Las Vegas.. + +- @OscarDeLaHoya + +#VegasStrong +#GBPonESPN https://t.co/bQ29i9OM4Z" +10/17/2017,Sports_celeb,@OscarDeLaHoya,RT @GoldenBoyBoxing: Miguel Cotto vs Sadam Ali - Press Conference https://t.co/PE0lRIaD9Z +10/06/2017,Sports_celeb,@OscarDeLaHoya,"#unitedfordreamers +We will fight together! https://t.co/u04F3T9o75" +10/05/2017,Sports_celeb,@OscarDeLaHoya,@jennajenovich @OOPalmilla @OOResorts A.B. And D. In that order topped off with a nice dinner +10/04/2017,Sports_celeb,@OscarDeLaHoya,RT @MrsEsterMarie: 🌴🌺ALOHA 🐟🐠 https://t.co/iEfaBdUGXH +09/27/2017,Sports_celeb,@OscarDeLaHoya,"RT @katedelcastillo: #prayformexico🇲🇽 #mexicounido #mexicounited #fuerzamexico🇲🇽 +・・・ +Moneros animados: Que la… https://t.co/OXEGLLLV5K" +09/25/2017,Sports_celeb,@OscarDeLaHoya,RT @MarcAnthony: Mr. President shut the fuck up about NFL. Do something about our people in need in #PuertoRico. We are American citizens t… +09/23/2017,Sports_celeb,@OscarDeLaHoya,Let’s all join this effort & help families in need of our support! #UnidosPorLosNuestros #TuneIn today @Univision 7… https://t.co/Z9x5IrK21S +09/23/2017,Sports_celeb,@OscarDeLaHoya,Ayudemos a las víctimas de los desastres naturales recientes. #UnidosPorLosNuestros Hoy 7pmET @Univision… https://t.co/TITkTeAtQl +09/23/2017,Sports_celeb,@OscarDeLaHoya,RT @carlosbeltran15: Puerto Rico Hurricane Relief Fund | Created by Carlos & Jessica Beltran https://t.co/H5jA8J7lhF +09/23/2017,Sports_celeb,@OscarDeLaHoya,RT @ricky_martin: WE NEED YOUR HELP. PLEASE DONATE. https://t.co/1vjiISj3af https://t.co/GXSZP7Gya7 +09/19/2017,Sports_celeb,@OscarDeLaHoya,"Let's help Mexico! Instead of building a wall, Trump should send more aid to help Mexico rebuild after today's earthquake #PrayForMéxico" +09/17/2017,Sports_celeb,@OscarDeLaHoya,A skillful execution of an explosive fight. I disagree with the decision. +09/16/2017,Sports_celeb,@OscarDeLaHoya,"RT @Adrian_ElTitan: Hoy es el día, con todo @Canelo #TeamCanelo 🇲🇽 #CaneloGGG https://t.co/b3YJKtxE7g" +09/16/2017,Sports_celeb,@OscarDeLaHoya,@danawhite looking forward to the best middleweight fight in the last 30 years. See you tonight Amigo. #RingTV #CaneloGGG +07/02/2018,Sports_celeb,@Giannis_An34,"RT @FIBAWC: Mo' @Thanasis_ante43 Mo' Action ! @HellenicBF +#ThisIsMyHouse #FIBAWC https://t.co/3zxUbQa6pb" +07/01/2018,Sports_celeb,@Giannis_An34,RT @nik683: Always nice to see you @Giannis_An34 https://t.co/7qBRNldKrL +06/30/2018,Sports_celeb,@Giannis_An34,Had a great time today shooting in Halkidiki...!! Big thing coming! #FETA https://t.co/SJJHU9DynC +06/29/2018,Sports_celeb,@Giannis_An34,This is my country Greece 🇬🇷 https://t.co/7S0P203rzB +06/29/2018,Sports_celeb,@Giannis_An34,The new album of @Drake 🔥🔥🔥🔥 +06/28/2018,Sports_celeb,@Giannis_An34,You’re living lavish now kostas__ante13 🐎 https://t.co/zay3fU7TnW +06/28/2018,Sports_celeb,@Giannis_An34,Elevator 📸😤 https://t.co/oGxH5yHiRJ +06/28/2018,Sports_celeb,@Giannis_An34,"RT @dallasmavs: You're livin lavish now, @Kostas_ante13! 🔥 Welcome to Dallas! #MFFL https://t.co/D4FLyM3ToT" +06/28/2018,Sports_celeb,@Giannis_An34,RT @FUSD_Athletics: Mark your calendar for August 3. Time to Tee it up at the Goal 2 Golf Tournament for the Fresno Unified Scholarship Fu… +06/28/2018,Sports_celeb,@Giannis_An34,"😂😂😂 If I didn’t like you, I would roast you so bad @vanexel31 #GoPackers https://t.co/veIR6GLx48" +06/27/2018,Sports_celeb,@Giannis_An34,What are the top 2 things you would like to see in my signature shoe? #TheGreekFreak1 #StayFreaky #ShoeOfThePeople +06/23/2018,Sports_celeb,@Giannis_An34,Just wanted to clear things up because I enjoy sharing funny moments with my fans...Mo Bamba is a great player and… https://t.co/erZCRQlhXt +06/23/2018,Sports_celeb,@Giannis_An34,Let me brush my hair😂😂 https://t.co/Em1mx9PaKe +06/23/2018,Sports_celeb,@Giannis_An34,"RT @wojespn: Milwaukee Bucks assistant Sean Sweeney has agreed to a deal to become one of Detroit coach Dwane Casey’s new top assistants, l…" +06/23/2018,Sports_celeb,@Giannis_An34,"RT @SInow: Welcome to the 60 Club, @Kostas_ante13 https://t.co/gt1sXordJ9" +06/22/2018,Sports_celeb,@Giannis_An34,"RT @DXContent: 6-10 + 20 year old Kostas Atetokounmpo, the younger brother of @Giannis_An34, was picked up by the @dallasmavs + +Full Pro Da…" +06/22/2018,Sports_celeb,@Giannis_An34,"RT @BleacherReport: Kostas Antetokounmpo, Giannis’ little brother, goes No. 60 to the Mavericks (via Sixers) https://t.co/IzzSF9MrFJ" +06/18/2018,Sports_celeb,@Giannis_An34,On July 7th join me and my brothers @Thanasis_ante43 @Kostas_ante13 @Alex_ante29 for Antetokounbros 5K Run to suppo… https://t.co/P6M4hkq1rr +06/17/2018,Sports_celeb,@Giannis_An34,"RT @DXContent: We caught up with Kostas Antetokounmpo, little brother of #Milwaukee #Bucks star @Giannis_An34, for his pro day workout and…" +06/12/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You belong where you believe you belong.” 💛🌻 +06/11/2018,Sports_celeb,@Giannis_An34,Δεν πίστευα ποτέ ότι θα κυκλοφορώ στους δρόμους της Αθήνας και θα με φωνάζουν Θανάση!! 😂😂 +06/10/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You have to fight through the bad days in order to earn the best days.” 💛🌻 +06/10/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Legends never die,they live through their #Legacy" +06/09/2018,Sports_celeb,@Giannis_An34,This is my time! Thank you GOD for keep blessing me and my family.🙏🏾 +06/08/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: Lol just because big bro said the was fire 🔥🔥😋 @Giannis_An34 https://t.co/qVy3XxbvXo +06/08/2018,Sports_celeb,@Giannis_An34,Going to bed tonight thinking about what I’m going to try next! Tomorrow I’m on a mission to become a better player… https://t.co/UdWZrkUPRX +06/08/2018,Sports_celeb,@Giannis_An34,@pistonsfan215 @iamHectorDiaz Where can I get them? +06/07/2018,Sports_celeb,@Giannis_An34,"While having my first pedicure in two years, I tried my first bag of Funyuns. They where good but I’ll stick to Ame… https://t.co/QCdGsfEEen" +06/07/2018,Sports_celeb,@Giannis_An34,Follow my lil brother @alex_ante29 on Twitter! +06/07/2018,Sports_celeb,@Giannis_An34,"People keep telling me to try these, I’ll give them a try and let you guys know what I think👌🏾… https://t.co/8XggtXLM5x" +06/07/2018,Sports_celeb,@Giannis_An34,Just had my first sip of American Red Kool Aid while watching the game. It’s extremely tasty 🥤. America stay blesse… https://t.co/isAVWi0Pvp +06/06/2018,Sports_celeb,@Giannis_An34,"Just a kid from Sepolia,Athens Greece 🇬🇷 🇳🇬 🙏🏾 https://t.co/nf1LvnKhOr" +06/06/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: Lol @ZO2_ hook me up with BBB gear bro 😂 +06/05/2018,Sports_celeb,@Giannis_An34,Next step Kool Aid! I’ll tell y’all what I think when I try it lol 😂 +06/05/2018,Sports_celeb,@Giannis_An34,Just tried a corndog for the first time...Man God Bless America! 😂😂 #ForReaL https://t.co/k4RDp6nSnI +06/05/2018,Sports_celeb,@Giannis_An34,Ain’t nothing wrong with Forever 21 @ZO2_ 🤷🏾‍♂️ https://t.co/1PIJpIakm1 +06/03/2018,Sports_celeb,@Giannis_An34,RT @TCL_USA: TCL proudly congratulates our newest athlete partner @Giannis_An34 on his All-NBA Team selection for the second straight year.… +05/31/2018,Sports_celeb,@Giannis_An34,RT @DraftExpress: Kostas Antetokoumpo working out in front of his brother Giannis and the entire NBA at the Octagon Pro Day. Actually shot… +05/25/2018,Sports_celeb,@Giannis_An34,Nope☝🏾 https://t.co/7Ac45UWXe8 +05/25/2018,Sports_celeb,@Giannis_An34,Always supporting you brother! https://t.co/Xc8MZyjMvA +05/23/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: ""It's been my dream since I was little."" + +Closer look at NBA Draft Prospect - Kostas Antetokounmpo: https://t.co/xTyKWXEBUY" +05/23/2018,Sports_celeb,@Giannis_An34,RT @RangerBeech: @Giannis_An34 @Bucks @DICKS you made a little boys day. Little did you know that before he saw you there he was showing m… +05/23/2018,Sports_celeb,@Giannis_An34,RT @fox6blitz: #Bucks @Giannis_An34 surprises some kids with a shopping spree at Dick’s Sporting Goods. https://t.co/xWpHMSqb7p +05/22/2018,Sports_celeb,@Giannis_An34,Great day giving back to the kids from @bgcmilwaukee. Huge thanks to the City of Milwaukee for all the support you’… https://t.co/kTDFOGx80F +05/19/2018,Sports_celeb,@Giannis_An34,RT @brkicks: .@Kostas_ante13 brother of @Giannis_An34 at the NBA Combine wearing the Nike Kobe A.D. https://t.co/ANtTdpFw16 +05/17/2018,Sports_celeb,@Giannis_An34,"RT @DraftExpress: Kostas Antetokounmpo has work to do on his body, skill/feel, but he's shown impressive flashes defensively switching, sli…" +05/12/2018,Sports_celeb,@Giannis_An34,Who is your top 5 rappers of all time? @Wale https://t.co/Coyjr4MTJF +05/12/2018,Sports_celeb,@Giannis_An34,J cole all day @JColeNC https://t.co/agtJqGxSGw +05/12/2018,Sports_celeb,@Giannis_An34,"Late night thoughts, who is the best rapper of our generation?" +05/12/2018,Sports_celeb,@Giannis_An34,"RT @FVisionDotCom: 🎥| Kostas Antetokounmpo Dayton Freshmen Full Season Highlights Montage 2017-18 | 5.2 PPG, NBA READY! @Kostas_ante13 http…" +05/12/2018,Sports_celeb,@Giannis_An34,Sneak peek 👀 #GreekFreak’S1 https://t.co/f68bTh6CW9 +05/12/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Couldn’t be more proud of you baby girl! You’re truly one of a kind! Love you til infinity 💛🌻 https://t.co/q1hdFoVeDO +05/11/2018,Sports_celeb,@Giannis_An34,Who is excited for the Greek Freak’s 1👟? +05/11/2018,Sports_celeb,@Giannis_An34,@KingKMPH @_mayyyyaaaa @grizzlyathletes Maya for president +05/11/2018,Sports_celeb,@Giannis_An34,"Time out, who said the season being over means no more Bucks spirit? Show Team pride this offseason with the BMO Ha… https://t.co/OXbk5skJE4" +05/06/2018,Sports_celeb,@Giannis_An34,I’m switching to Samsung ✌🏾 +05/06/2018,Sports_celeb,@Giannis_An34,Apple has completely disappointed me @Apple +05/02/2018,Sports_celeb,@Giannis_An34,RT @Bucks: THIS Is Why We Play!! https://t.co/Xgjzq7F6Pf +05/02/2018,Sports_celeb,@Giannis_An34,I vote #JabariParker for the #NBACommunityAssist Award because it's cool to be a nerd!! +04/04/2018,Sports_celeb,@Giannis_An34,RT @Bucks: Congratulations to former head coach @RealJasonKidd on his selection to the @Hoophall!! https://t.co/teY0vFgxg5 +04/04/2018,Sports_celeb,@Giannis_An34,"RT @Khris22m: Hey Bucks fans, come meet me this Sunday 2 PM at Cermak Fresh Market at 1236 S. Barclary Street. I will be signing autographs…" +03/31/2018,Sports_celeb,@Giannis_An34,RT @kobebryant: From the Book of Antetokounmpo: The greatest gift is understanding HOW to use the gifts we’ve been given. #MuseCage #Giann… +03/31/2018,Sports_celeb,@Giannis_An34,"RT @espn: His frame changed. His game changed. And his fame changed. + +@kobebryant highlights @Giannis_An34's gifts, and how he's evolved in…" +03/27/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Hey Milwaukee! If you’re interested in meeting @Giannis_An34 but more importantly supporting an amazing cause, the Leuke…" +03/26/2018,Sports_celeb,@Giannis_An34,"RT @MyNBAUpdate: R.I.P, Zeke Upshaw. 🙏 + +G-League player who passed away after collapsing on the court during a game on Saturday. We send ou…" +03/26/2018,Sports_celeb,@Giannis_An34,"RT @CBSNewsPress: @60Minutes is on track to be @Nielsen #1 program, drawing est 22.06 m - most viewers in nearly 10 yrs. Watch @andersoncoo…" +03/26/2018,Sports_celeb,@Giannis_An34,RT @Bucks: Here’s the entire MUST WATCH feature from @60minutes on @Giannis_an34 https://t.co/0E0IhqpJbo +03/23/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: I have made the decision to start a new chapter in my life and basketball career. I want to thank The University of Dayt… +03/22/2018,Sports_celeb,@Giannis_An34,RT @60Minutes: Milwaukee Bucks superstar Giannis Antetokounmpo tells 60 Minutes about selling trinkets on Athens streets to help his family… +03/22/2018,Sports_celeb,@Giannis_An34,"RT @DraftExpress: Dayton freshman Kostas Antetokounmpo (Giannis' brother) will declare for the 2018 NBA Draft, according to a source close…" +03/22/2018,Sports_celeb,@Giannis_An34,"RT @EvanDaniels: Source: Kostas Antetokounmpo, the brother of Giannis, is declaring for the NBA Draft | Story: https://t.co/Fu5vbLOEqq http…" +03/18/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: “You should never have to apologize for the way you need to be loved.” 🌻 +03/18/2018,Sports_celeb,@Giannis_An34,Not my day today 🤷🏾‍♂️ @mariahdanae15 https://t.co/8SIDURqFbn +03/18/2018,Sports_celeb,@Giannis_An34,@OsheaJacksonJr @netflix @mariahdanae15 Tough life my brother lol By the way Straight Outta Compton is one of my al… https://t.co/BHOYDsOTpf +03/18/2018,Sports_celeb,@Giannis_An34,When @netflix is on the bell 🛎 don’t work. +03/18/2018,Sports_celeb,@Giannis_An34,When you girl loves @netflix more than you🤦🏾‍♂️🤦🏾‍♂️ @mariahdanae15 https://t.co/AzfGtfckWC +03/16/2018,Sports_celeb,@Giannis_An34,The #FreakyFriday video of @chrisbrown and @lildickytweets it’s hilarious 😂😂😂 +03/16/2018,Sports_celeb,@Giannis_An34,"RT @Nike: When our world gets stuck, there’s only one option - #ChooseGo. + +https://t.co/lpWAcMefEl https://t.co/0rAm25J37q" +03/16/2018,Sports_celeb,@Giannis_An34,"RT @Nike: In every step. With every breath. #airmovesyou + +Sound on. 🔈 https://t.co/O79rImWETh" +03/15/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Happy 23rd Birthday @JabariParker!! + +🎉🎊🎁🎂 https://t.co/Ab4UHBrMoC" +03/10/2018,Sports_celeb,@Giannis_An34,"RT @AirMagKnows: To celebrate Jaylen’s 8th Birthday, He got tickets to watch @Giannis_An34 @Bucks on March 27 vs @LAClippers. Safe to say,…" +03/09/2018,Sports_celeb,@Giannis_An34,"RT @WISN_Watson: I think this family has the whole basketball thing figured out. + +This is @AlexAnteto3, @Giannis_An34's baby brother. http…" +03/07/2018,Sports_celeb,@Giannis_An34,Hey guys I’m teaming up with @_mayyyyaaaa to auction off two tickets plus a meet and greet after the game to help r… https://t.co/URdcY4KctT +03/06/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: #mondaymotivation + +Drop dimes. +Rock rims. + +💯🔥👇👀 https://t.co/ubX39Pnyd9" +03/06/2018,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Regional Champions💪🏾🙏🏾🤫 https://t.co/9N4kjEUyaa +03/04/2018,Sports_celeb,@Giannis_An34,RT @olskool888: Greek Freak Freshman L’il Bro’ Kostas of Dayton looking eerily familiar to @Giannis_An34...YIKES! https://t.co/qYcTR8iu3J +03/04/2018,Sports_celeb,@Giannis_An34,RT @SeanKilpatrick: Milwaukee Thanks For The Hospitality! The Marathon Continues 🏁🏁🏁 #Undrafted #LetsGo https://t.co/Ry8zguopfx +03/04/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: The highlights! + +💯👊🔵🔴 #FlyerNation https://t.co/iQ1iRWUKwg" +03/04/2018,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: 🆙🆙 & AWAY! 🎦 + +The dime from @Jalen_NoRose1 to @Kostas_ante13. + +🔴🔵🛩️🏀 + +L👀K out belowwwww! https://t.co/yC8n1d9Ku1" +03/02/2018,Sports_celeb,@Giannis_An34,My little sister is currently nominated as a candidate for the Leukemia and Lymphoma Student of the Year Series. Pl… https://t.co/dYCFrfY4dX +02/25/2018,Sports_celeb,@Giannis_An34,@Hoopmixtape @DdotJAY30 He could definitely win the NBA dunk contest with he’s eyes closed. +02/19/2018,Sports_celeb,@Giannis_An34,RT @RealBillRussell: My thoughts exactly Thank You @Giannis_An34 This is very dear to my heart. @ nba https://t.co/CAJbifDZXu +02/18/2018,Sports_celeb,@Giannis_An34,"RT @bellalukasdad: So proud of my girl and so thankful to all those who supported her cookie sales efforts. In her last year of selling, sh…" +02/18/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: No weakness!!! @Giannis_An34 https://t.co/gNsbXl756T +02/17/2018,Sports_celeb,@Giannis_An34,RT @famouslos32: Still cant say dat boy name right so I’m STILL calling him Giannis A-TIN-KA-PINK-KO 😂😂😂😂😂😂😂😂 @Giannis_An34 https://t.co/dv… +02/17/2018,Sports_celeb,@Giannis_An34,RT @Bucks: All smiles as @Giannis_An34 crushes the #NBAKicks game with the @kobebryant 1 Porto x @UNDEFEATEDinc tonight!! 🔥🔥🔥 https://t.co/… +02/17/2018,Sports_celeb,@Giannis_An34,RT @_mayyyyaaaa: I'm extremely honored and blessed to be a candidate for the Leukemia and Lymphoma Student of the Year Series. The seven we… +02/15/2018,Sports_celeb,@Giannis_An34,RT @Kostas_ante13: @LegionHoops Yeah let them know baby @Giannis_An34 😂😂😂😂 +02/14/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Dimitris’ dream day continues as he helps @giannis_an34 warm up before the game tonight!! + +#ThisIsWhyWePlay https://t.co/nLauSV…" +02/14/2018,Sports_celeb,@Giannis_An34,RT @JimZamanis: Best day of my life!! I wanna thank @Giannis_An34 @Bucks and @MakeAWishGreece for making my dream come true!! Hope one day… +02/11/2018,Sports_celeb,@Giannis_An34,Congratulations to my Brother @Thanasis_ante43 for being named 2017-18 Greek All Star MVP. https://t.co/wzvrwZFHeM +02/09/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: S.O.S!!! In desperate need of a stylist and personal trainer! 💛👗💪🏽 +02/09/2018,Sports_celeb,@Giannis_An34,@mariahdanae15 I can be your stylist! https://t.co/IwZOXZxuhO +02/08/2018,Sports_celeb,@Giannis_An34,@NBA you have to get my guy @Khris22m in the all star game cmon! +02/07/2018,Sports_celeb,@Giannis_An34,Sending prayers to a good friend and even greater competitor. Hoping for a speedy recovery KP! @kporzee +01/31/2018,Sports_celeb,@Giannis_An34,"RT @TheNBPA: The NBPA family is deeply saddened by the passing of our brother, Rasual Butler. Our thoughts and prayers are with the Butler…" +01/30/2018,Sports_celeb,@Giannis_An34,RT @Johnhenson31: They gotta eventually take a good look at @Khris22m right ? #AllStarSeason +01/27/2018,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Happy Birthday Dad! We all love you more than you will ever know! Enjoy your year and keep believing! 😊🎉 @PRiddlesprigge… +01/26/2018,Sports_celeb,@Giannis_An34,RT @EuroLeague: ❌🏠 https://t.co/ifZgyMs2hG +01/25/2018,Sports_celeb,@Giannis_An34,"RT @tsevis: Giannis Antetokounmpo: +Made in the streets of Athens +A mosaic portrait of the Greek Freak @Giannis_An34 based on the actual map…" +01/25/2018,Sports_celeb,@Giannis_An34,RT @cf_gardner: @Matt_Velazquez Those are kind words indeed. It's good to know I am missed. Giannis is doing quite well without me! +01/24/2018,Sports_celeb,@Giannis_An34,"@LilTunechi “I got a Greek Freak, she call me Antetokounmpo” @LilTunechi 🔥🔥🔥" +01/21/2018,Sports_celeb,@Giannis_An34,"RT @SInow: The Greek Freak's younger brother Kostas doing work for Dayton +https://t.co/KrYVFeL9VL" +01/21/2018,Sports_celeb,@Giannis_An34,"RT @CBSSportsNet: The @DaytonMBB fans are HYPE. + +Antetokounmpo coast-to-coast for the layup. https://t.co/dpCpeshTjP" +01/20/2018,Sports_celeb,@Giannis_An34,Thank you too all my fans around the world for the continuous support and motivation!! 😃✌🏾 https://t.co/IgQ41N0muH +01/15/2018,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: This was one of the proudest moments our family has lived through. It’s almost that time of the year again! This is go… +01/15/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Let’s go! +😱20+p/20+reb +Giannis Antetokounmpo #NBAVote https://t.co/DiSnIMMBnB" +01/15/2018,Sports_celeb,@Giannis_An34,"RT @morabancandorra: All right T! 👍😁 +Giannis Antetokounmpo +#NBAVote https://t.co/bygWm4pMMO" +01/15/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Let’s vote for this young fella! 👶🏽 +Giannis Antetokounmpo #NBAVOTE https://t.co/ejuZfOL6KY" +01/13/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Because All Stars are regular people too! 😂 + +Giannis Antetokounmpo #NBAVote https://t.co/TyNhLihIEo" +01/13/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Giannis Antetokounmpo #NBAVOTE +Everybody has to retweet this! +Today your vote counts double, let’s get it! https://t.…" +01/13/2018,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Giannis Antetokounmpo #NBAVOTE Retweet for A Vote😈💉🇬🇷 https://t.co/RxrdCnO1Ex +01/13/2018,Sports_celeb,@Giannis_An34,RT @EBled2: Giannis Antetokounmpo #nbavote @Giannis_An34 +01/13/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/11/2018,Sports_celeb,@Giannis_An34,Eric Bledsoe #NbaVote Retweet for a vote✅✅ @EBled2 +01/11/2018,Sports_celeb,@Giannis_An34,Khris Middleton #NbaVote @Khris22m Retweet for a vote✅✅ +01/11/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/11/2018,Sports_celeb,@Giannis_An34,"RT @Bucks: Because...popcorn 😂 + +@Giannis_An34 #NBAVote + +🍿 1 RT = 1 Vote 🍿 https://t.co/SozFBnaQav" +01/10/2018,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Για αυτό σαγάπαει ο κόσμος!! Κοιτάξτε χαμόγελο! Χρόνια πολλά Σεξυ αγόρι 💛😘 + +Giannis Antetokounmpo #NBAVote https://t.…" +01/07/2018,Sports_celeb,@Giannis_An34,RT @veronica_ante34: Giannis Antetokounmpo #NBAVote +01/05/2018,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: I️ can’t even express how proud i am that my brother Giannis Antetokounmpo is leading the All-Star fan voting,despite…" +12/28/2017,Sports_celeb,@Giannis_An34,RT @_mayyyyaaaa: Happy holidays from my family to yours💚 https://t.co/xESqGRe0Rk +12/25/2017,Sports_celeb,@Giannis_An34,RT @AlexAnteto3: Giannis Antetokounmpo #NBAVOTE +12/25/2017,Sports_celeb,@Giannis_An34,RT @mariahdanae15: Merry Christmas from my favorite guy and I ❤️🎄 You got my vote on this holiday babbbeeee! Giannis Antetokounmpo #NBAVote… +12/25/2017,Sports_celeb,@Giannis_An34,My mom is new on Twitter @veronica_ante34 make sure you follow her and show her some ❤️ 🧡💙💚💛 Merry Christmas 🎄 +12/25/2017,Sports_celeb,@Giannis_An34,RT @Thanasis_ante43: Giannis Antetokounmpo #NBAVOTE +12/24/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: Giving back is great, whatever we can do for these families, it means a lot to us."" - @Giannis_An34 https://t.co/N8ZaYgvjXc" +12/24/2017,Sports_celeb,@Giannis_An34,"RT @DaytonMBB: #ICYMI... @SportsCenter #SCtop10. @Jalen_NoRose1 to @Kostas_ante13. + +From 🇺🇸 to 🇬🇷 + +🔴🔵✈️🏀 + +👀 out belowwwww!! + +He even call…" +12/24/2017,Sports_celeb,@Giannis_An34,RT @Flyer_Faithful: I believe @Kostas_ante13 can fly ✈️✈️✈️ https://t.co/QPAM6C2FzR +12/20/2017,Sports_celeb,@Giannis_An34,RT @FOXSportsOH: He's the brother of NBA star Giannis Antetokounmpo. @Kostas_ante13 explains what he brings to the floor for @DaytonMBB.… +12/20/2017,Sports_celeb,@Giannis_An34,@FOXSportsOH @Kostas_ante13 @DaytonMBB Really @Kostas_ante13 ???😂😂 +12/18/2017,Sports_celeb,@Giannis_An34,Congratulations @KobeBryant on a monumental day & an amazing film! https://t.co/ztecx1WkJ4 #DearBasketball @go90sports +12/13/2017,Sports_celeb,@Giannis_An34,Does anyone know when is the next @WWE show in Milwaukee or Chicago? +12/08/2017,Sports_celeb,@Giannis_An34,RT @overtime: GREEK FREAK'S BRO got the range 🚨 @Giannis_An34 https://t.co/UvZwd9Rpur +12/08/2017,Sports_celeb,@Giannis_An34,"RT @overtime: Giannis came out to support his little bro Alex Antetokounmpo 💯 Full Highlights: +https://t.co/Gr8aC5BQFi +@Giannis_An34 @AlexA…" +12/08/2017,Sports_celeb,@Giannis_An34,RT @overtime: Greek Freak's bro Alex with the HUGE DUNK ⚡️ @Giannis_An34 https://t.co/WK3c6zj02J +12/07/2017,Sports_celeb,@Giannis_An34,RT @EBled2: Got my vote https://t.co/23H9aJ9TQX +12/07/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: Happy Birthday @Giannis_An34 from Greece with LOVE!! + +🇬🇷❤️ https://t.co/30izpwhmbE" +12/06/2017,Sports_celeb,@Giannis_An34,RT @mariahdanae15: | BLESSED | Happy Birthday Babbbbeeee 💛✌🏽 I love you @Giannis_An34 https://t.co/My08RaxGOa +12/05/2017,Sports_celeb,@Giannis_An34,"RT @kmeletislaw: @Matt_Velazquez @tdgarden @Giannis_An34 a few dozen ?? are you kiding?? the hol arena is in blue and in greek flags, men !…" +12/05/2017,Sports_celeb,@Giannis_An34,I want to thank the 2 thousand Greeks that showed up to the game tonight and supported me and my team! I counted li… https://t.co/RiSNmlXeLE +12/04/2017,Sports_celeb,@Giannis_An34,"RT @gazzetta_gr: Θανάσης Αντετοκούνμπο, ένας παίκτης παράδειγμα προς μίμηση για την προσπάθεια του να γίνει ΚΑΘΕ μέρα καλύτερος! 👏👏 https:/…" +12/01/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: THAT feeling 💯🇬🇷! #FIBAWC #ThisIsMyHouse + +👉 https://t.co/CFYRcvzSut https://t.co/FwhvIgcmwk" +12/01/2017,Sports_celeb,@Giannis_An34,RT @Ballislife: The other Greek Freak! @Thanasis_ante43 swatting shots and throwing down dunks at #FIBAWC https://t.co/rfZ4oyAcRu +11/28/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: .@Thanasis_ante43 YOU wanted a personal highlight reel? +Here YOU go 💯🔝🔥! #FIBAWC #ThisIsMyHouse + +@HellenicBF 🇬🇷 https://t.co/T…" +11/27/2017,Sports_celeb,@Giannis_An34,"RT @FIBAWC: Hey, @giannis_an34 what do you think about THAT 🤔? #FIBAWC #ThisIsMyHouse + +@Thanasis_ante43 @HellenicBF 🇬🇷 + + 📺 https://t.co/D8R…" +11/27/2017,Sports_celeb,@Giannis_An34,@FIBAWC @Thanasis_ante43 @HellenicBF 👋🏾🏀😜 +11/27/2017,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: “How you make others feel about themselves, says a lot about you.” 💛🌻✌🏽" +11/21/2017,Sports_celeb,@Giannis_An34,"RT @Mike_Schmitz: Giannis' younger brother, Kostas, has made tremendous strides since the 2016 Nike Hoop Summit. Needs time but an intrigui…" +11/19/2017,Sports_celeb,@Giannis_An34,This is what life is all about! Travelling with people you love! Check out our latest adventure with Aegean  … https://t.co/qu8AMqmfAY +11/18/2017,Sports_celeb,@Giannis_An34,"RT @AllaireMatt: So, @Kostas_ante34 is going to be a big problem in the A-10 😳 https://t.co/NQr1EhJx07" +11/18/2017,Sports_celeb,@Giannis_An34,Stop running 🏃🏾‍♀️ away and come give your baby some sugar!! @mariahdanae15 😘👀 https://t.co/Y4nFfJEmq0 +11/17/2017,Sports_celeb,@Giannis_An34,"RT @Thanasis_ante43: Just a kid from Sepolia ,Greece, +@euroleague bound.Thanks ncalathes 🔝🔝🔝 https://t.co/AVaVlJIpqM" +11/17/2017,Sports_celeb,@Giannis_An34,"RT @mariahdanae15: Happiness is not out there, it’s in you. 🌻" +11/17/2017,Sports_celeb,@Giannis_An34,@mariahdanae15 🙄 +11/14/2017,Sports_celeb,@Giannis_An34,"RT @EuroLeague: Alley-oop time! @Nick_Calathes15 ↔️ @Thanasis_ante43 ☝️ + +#7DAYSMagicMoment https://t.co/qaQ53Ozlxk" +11/14/2017,Sports_celeb,@Giannis_An34,😤@Thanasis_ante43 @Kostas_ante34 @AlexAnteto3 +11/07/2017,Sports_celeb,@Giannis_An34,Family. Loyalty. Legacy. Excited to announce my long-term partnership with @NikeBasketball #FamilyOverEverything… https://t.co/7MhvUqkbwb +11/05/2017,Sports_celeb,@Giannis_An34,He’s back 😈😈😈😈😈 @Kostas_ante34 #OnAMission https://t.co/HTiJ7mY2TS +11/05/2017,Sports_celeb,@Giannis_An34,RT @Flyer_Faithful: .@tlanders_03 ⬆️ @Kostas_ante34 ⬇️ https://t.co/B1m62qPzc0 +11/02/2017,Sports_celeb,@Giannis_An34,Go put some work in the new season of #NBALIVEMobile and make that rating go ⬆! Your path to greatness now: https://t.co/tFlQRAUUkY +10/31/2017,Sports_celeb,@Giannis_An34,Videos and interviews like this keeps me motivated. https://t.co/rEWuhvJ2yo #CameALongWay #MyFamilyIsMylife #YoungGreekfreak😂😂 +10/30/2017,Sports_celeb,@Giannis_An34,RT @Ufc26: @Thanasis_ante43 @KittyKat_Rawr @Giannis_An34 https://t.co/xggHCpLCEA +10/24/2017,Sports_celeb,@Giannis_An34,RT @Johnhenson31: Finally got my handshake from @Teletovic33 https://t.co/TUclokeLN8 +10/19/2017,Sports_celeb,@Giannis_An34,It’s about that time! https://t.co/6l1Vcdzy8M +10/18/2017,Sports_celeb,@Giannis_An34,"RT @Midwest_Ballers: The youngest of the #antetokounbros, Alex Antetokounmpo, got some tips from big bro before balling in fall league acti…" +10/16/2017,Sports_celeb,@Giannis_An34,"RT @Bucks: ""I see beauty in my scars. They tell my story."" - @JabariParker + +(via @SInow) https://t.co/rWuQKooJ5l" +10/04/2017,Sports_celeb,@Giannis_An34,I’m coming.. 🙏🏾 +09/30/2017,Sports_celeb,@Giannis_An34,"RT @matthewdelly: No child should go hungry, help support @BlessinBackpack ! https://t.co/iTrVrGlTyb" +09/20/2017,Sports_celeb,@Giannis_An34,RT @NBAspain: ⚽️⚽️⚽️ @Giannis_An34 #BucksDay https://t.co/9is2tW67wK +09/16/2017,Sports_celeb,@Giannis_An34,RT @nikebasketball: We gave @giannis_an34’s home court in Athens a new look last weekend with some help from local artist Same84. https://t… +09/10/2017,Sports_celeb,@Giannis_An34,👀👀👀 GARAGE SALE for CHARITY address will be announced within the hour... +09/09/2017,Sports_celeb,@Giannis_An34,@PRiddlesprigger Sure @PRiddlesprigger all bids are accepted!!😃 +09/09/2017,Sports_celeb,@Giannis_An34,@Double_HTown @packers What time is the @packers game? +09/09/2017,Sports_celeb,@Giannis_An34,👀 👀👀👀It's time to get rid of a few things! GARAGE SALE for CHARITY TOMORROW! Stay tuned for details... +09/09/2017,Sports_celeb,@Giannis_An34,RESPECT.. Hopefully one day I can be on the same stage and have my name next to yours. #HOF #GOAT @NickGalis6 https://t.co/RdTD5VCtHf +09/05/2017,Sports_celeb,@Giannis_An34,"RT @DXContent: 'I started playing basketball in '08... I like @magicjohnson + @KDTrey5' + +~ @Giannis_An34 has come a long way > https://t.co…" +09/03/2017,Sports_celeb,@Giannis_An34,"RT @FIBA: 🇬🇷 Who said they were no Antetokounmpo in FIBA #EuroBasket2017? @Thanasis_ante43 sparked his team with 12pts, 6reb & 2blk! https:…" +09/02/2017,Sports_celeb,@Giannis_An34,RT @Bucks: Join us in supporting the @RedCross and the #HurricaneHarvey relief effort. Visit https://t.co/6dOzwbj6dX or call 1-800-REDCROS… +09/01/2017,Sports_celeb,@Giannis_An34,RT @EauClairePD: Yesterday we were troubled to learn that many of the @Bucks players couldn't pronounce Eau Claire. Now it's our turn. #fea… +09/01/2017,Sports_celeb,@Giannis_An34,RT @gazzetta_gr: Πωρωμένος με την Εθνική Ελλάδας ο Θανάσης Αντετοκούνμπο! https://t.co/JlbSyKCU4D +08/31/2017,Sports_celeb,@Giannis_An34,RT @gazzetta_gr: Respect στον δημιουργό του https://t.co/e7x1vcDxqu +08/31/2017,Sports_celeb,@Giannis_An34,RT @FIBA: ☝️ Not in @Thanasis_Ante43's 🏡! You better watch out before driving to @HellenicBF 🇬🇷 basket! #EuroBasket2017 https://t.co/BRQe87… +08/28/2017,Sports_celeb,@Giannis_An34,Praying for the people in Houston 🙏🏾 +08/24/2017,Sports_celeb,@Giannis_An34,Still waiting for my challenge.. @kobebryant +08/19/2017,Sports_celeb,@Giannis_An34,Resurrection. +08/10/2017,Sports_celeb,@Giannis_An34,❤️ https://t.co/NC29Vdzdy2 +08/10/2017,Sports_celeb,@Giannis_An34,Here's my 2k rating! What do you guys think? 👍🏾or 👎🏾@Ronnie2K @NBA2K #NBA2K18 #2KFirstLook https://t.co/BCmKGQ46Sf +07/18/2017,Sports_celeb,@Giannis_An34,🚫❌✋🏾 https://t.co/22gJG0UXl7 +07/02/2018,Sports_celeb,@TheRock,RT @nerdist: .@TheRock pays tribute to @skyscrapermovie's great predecessors with a pair of retro posters: https://t.co/ANcPJEaza1 https:/… +07/02/2018,Sports_celeb,@TheRock,Bruce was a big influence on me. Die Hard (and Towering Inferno) were the inspirations for SKYSCRAPER. Paying homag… https://t.co/vcsMNmgD3a +07/02/2018,Sports_celeb,@TheRock,RT @TimothyDowling: Love movie posters and love these. Had that Die Hard poster on my wall as a kid. You guys need a take on the Fugitive o… +07/02/2018,Sports_celeb,@TheRock,RT @Michael_Stets: These are killer! Well done @TheRock 🙌🏻🙌🏻 https://t.co/JZ3ZZhAAsw +07/02/2018,Sports_celeb,@TheRock,RT @TheRyanParker: These posters are so freakin’ sweet‼️ https://t.co/g9rENpfg8G +07/02/2018,Sports_celeb,@TheRock,Fun promo. Let’s get it boys! @NASCAR #SKYSCRAPER https://t.co/LTFbzoqkRd +07/01/2018,Sports_celeb,@TheRock,I had these ultra cool vintage posters made paying homage to the two classic movies that inspired me and generation… https://t.co/hFV5fqmFW3 +07/01/2018,Sports_celeb,@TheRock,"Beijing bound 🇨🇳 +A pleasure to return back to China. +Can’t wait to see everyone. Let’s roll. +#WheelsUp… https://t.co/qJlp52USri" +07/01/2018,Sports_celeb,@TheRock,@robbieglover Thx man that’s a such a cool note. Appreciate you and keep on keepin on 🙏🏾👊🏾 +07/01/2018,Sports_celeb,@TheRock,@Amy__Bailey Haha 👏🏾👏🏾👊🏾 #swag +07/01/2018,Sports_celeb,@TheRock,"RT @averyhartmans: This morning, @TheRock introduced his first-ever wireless headphones, designed to help you ""crush your workouts"" 💪 https…" +07/01/2018,Sports_celeb,@TheRock,Here I go playing Willy Wonka again and surprised our lil’ baby Jazzy with this horse and carousel ride when she go… https://t.co/nx4kBditVZ +07/01/2018,Sports_celeb,@TheRock,"Off to a good start on tracking w/ a $30M U.S. number for our SKYSCRAPER debut. +Domestic box office is one piece o… https://t.co/jAC0F4ovkt" +06/30/2018,Sports_celeb,@TheRock,@gregwarhead @charliesimo @KevinHart4real @mattjwillis Haha never any shame in hustling to get your music heard dud… https://t.co/4Lxtj4PCVX +06/30/2018,Sports_celeb,@TheRock,@ollyog @MatRoff Enjoy! Pint? Nah it’s your birthday. Let’s go with a gallon +06/30/2018,Sports_celeb,@TheRock,@ollyog @MatRoff Raising a glass to you on your birthday buddy! Cheers 🍻 👊🏾 +06/30/2018,Sports_celeb,@TheRock,@charliesimo @gregwarhead @KevinHart4real @mattjwillis Haha I have a fun idea - how bout you watch it with us and t… https://t.co/FD9zsZuwMq +06/30/2018,Sports_celeb,@TheRock,@diverse_kcox Hah well tequila helps the ol’ memory 🤙🏾 +06/30/2018,Sports_celeb,@TheRock,@Sichz_ Thx dude very kind of you to say. Thx for diggin all my stuff 🙏🏾👊🏾 +06/29/2018,Sports_celeb,@TheRock,"DECEMBER 13th, 2019. +The game is not over... +And I get to slap @KevinHart4real’s lips into next week. The world is… https://t.co/LDWAxojudu" +06/29/2018,Sports_celeb,@TheRock,RT @DanyGarciaCo: SO HAPPY w/ the creative content & direction of this launch! @sevenbuckscr CRUSHED it & captured the magic of @therock an… +06/29/2018,Sports_celeb,@TheRock,Make sure you experience our VR Skyscraper leap off the crane. I tried it multiple times and failed lol. It’s an in… https://t.co/686wr7G4jg +06/29/2018,Sports_celeb,@TheRock,RT @SevenBucksDS: Who doesn’t love a good action movie (or five)? No better authorities to wax-poetic on the subject than @TheRock and Neve… +06/29/2018,Sports_celeb,@TheRock,"Boom 🎧 +One of the best, if not THE best over the ear headphones you’ll ever train in. Engineered for HARD CORE TRA… https://t.co/e0wBlzVZ0P" +06/29/2018,Sports_celeb,@TheRock,Yes sir. Get after it! Playlist personally created by me. Start with WE READY and let the destruction begin 💪🏾👊🏾… https://t.co/Zgw8FLLaKw +06/29/2018,Sports_celeb,@TheRock,"Haha thank ya for the huge SKYSCRAPER props. Very cool to see everyone loving the movie. And yes, drinking beer and… https://t.co/M1fIV7o8fQ" +06/28/2018,Sports_celeb,@TheRock,We smell it and smells like shi🤣. Thanks dude! Enjoy the training shoes! First drop sold out in 30min. We just drop… https://t.co/dynE2tHYwT +06/28/2018,Sports_celeb,@TheRock,"Enjoy the 🎧👟! +Great copps! Stay strong / train hard! +https://t.co/vYtBQVsMjX https://t.co/ZgZXy5WtfF" +06/28/2018,Sports_celeb,@TheRock,@redletterdave Great idea💡 but I’ll do it in multiple accents and ever so slightly drunk of tequila lol 👊🏾 +06/28/2018,Sports_celeb,@TheRock,"RT @redletterdave: These headphones sound great. + +Next version: An onboard AI like Siri, but with The Rock's voice, to motivate your candy…" +06/28/2018,Sports_celeb,@TheRock,"Thank you man. +I put a lot of effort into delivering high quality @UnderArmour products. +And please don’t go brok… https://t.co/UTYmSrWhaX" +06/28/2018,Sports_celeb,@TheRock,"Thank you man and enjoy the great. Those #ProjectRock1s training shoes sold out in less than 30min, four weeks ago,… https://t.co/TN59pN6qsV" +06/28/2018,Sports_celeb,@TheRock,@ollyog Happy early birthday to my BFF. I will never again equate an emoji face with masculinity 😂🤦🏽‍♂️ +06/28/2018,Sports_celeb,@TheRock,"Great review! +I also added new “talk thru technology” which allows us to keep our headphones ON and listen to peop… https://t.co/GPYKeEAm76" +06/28/2018,Sports_celeb,@TheRock,"@ChrisClarkNFL @UnderArmour Cool! Let me know how you like em dude. Again, if they suck, let me know and I’ll send… https://t.co/fu5dlHa5vU" +06/28/2018,Sports_celeb,@TheRock,"Enjoy @averyhartmans!! Crush it! +🎧 💪🏾 +https://t.co/vYtBQVsMjX https://t.co/LWmTIqGvXC" +06/28/2018,Sports_celeb,@TheRock,"Enjoy my man 🎧 +They’ll be one of the best, if not, the best over the ear headphones you’ve trained in. +And because… https://t.co/9P2lJ8YO2T" +06/28/2018,Sports_celeb,@TheRock,"It’s ON! +Our most anticipated @underarmour #ProjectRock drop - the CHASE GREATNESS COLLECTION is OUT NOW. +As alwa… https://t.co/8O8BLDoTye" +06/28/2018,Sports_celeb,@TheRock,"RT @ShannonCorbeil: So @TheRock is awesome, obviously, but Neve Campbell as a badass combat veteran stole my heart. + +#SkyscraperMovie is F…" +06/28/2018,Sports_celeb,@TheRock,See you at the top one day man. Keep puttin’ in that hard work. Glad you loved the movie. #SkyscraperMovie https://t.co/UFIeOqnlI1 +06/28/2018,Sports_celeb,@TheRock,"Billy’s right! +But for the sweet science record, asteroids are always a pain in the a** to stop. I can stop meteor… https://t.co/Ei1Vhxt2ub" +06/28/2018,Sports_celeb,@TheRock,"👏🏾👊🏾 Neve Campbell, who plays my wife, crushes in our movie. Proud of her! Our writer/director @RawsonThurber wrote… https://t.co/WOvCKnAQKH" +06/27/2018,Sports_celeb,@TheRock,@Reluctantly_pod @djdizzle82 @KathrynGironimi 🙏🏾 for tha luv!!;) +06/27/2018,Sports_celeb,@TheRock,Yessss! More @caityweaver love for writing one of the greatest profiles of all time. (of course she had a brilliant… https://t.co/PvxMhrmk93 +06/27/2018,Sports_celeb,@TheRock,"Very cool, significant and rare news for our SKYSCRAPER in CHINA. The country has awarded us a July 20th release da… https://t.co/RwOv4qyxQI" +06/27/2018,Sports_celeb,@TheRock,Dude always a pleasure working with you. Never an ego and always down to do whatever it took to entertain the fans.… https://t.co/1heOocEY3N +06/26/2018,Sports_celeb,@TheRock,"Reddit community time for some fun! +Tomorrow (Wed) join my SKYSCRAPER writer/director Rawson Thurber at 3pm PDT. +G… https://t.co/rRPKU5jAoG" +06/26/2018,Sports_celeb,@TheRock,"You know I love my contests & giving cool shit away! 🤙🏾 +Teamed up w/ @AtomTickets to make the SKYSCRAPER TICKET TO… https://t.co/f8CskZQOI1" +06/26/2018,Sports_celeb,@TheRock,RT @DanHevia: I never knew I needed @TheRock vs. @rustyrockets until now. @HBO this is why I subscribe. 🤙 https://t.co/gaK5zlatBV +06/26/2018,Sports_celeb,@TheRock,RT @AprilCPA1991: Yes!! One of my fav shows is coming back! Love #ballers and love the cast! Especially my fellow UM alum @TheRock ! 🙌🏼🙌🏼 h… +06/26/2018,Sports_celeb,@TheRock,RT @elaysiaamour: Yessss let’s gooo https://t.co/ZaHdBIjc5b +06/26/2018,Sports_celeb,@TheRock,RT @hhe_71: Lets goooo! Can’t fuckin’ wait! #ballers https://t.co/koxKmfNxQi +06/26/2018,Sports_celeb,@TheRock,"RT @LucasSteagall: Fun fact: A day acting on this show is my favorite day on set of all time, every time. Another fun fact @TheRock is a fr…" +06/26/2018,Sports_celeb,@TheRock,RT @scott_f_mack: Awesome to see the next season of #ballers is coming out this summer. Can’t wait to check it out 👀 https://t.co/08KVSEVW4o +06/26/2018,Sports_celeb,@TheRock,RT @akhilg06: Love this show #ballers https://t.co/lQTPn1rpeT +06/26/2018,Sports_celeb,@TheRock,RT @OilyMomHere: Woo hoo!!! So excited for this season to rock....thank you https://t.co/yRYYonOfqI +06/26/2018,Sports_celeb,@TheRock,RT @peterocksteady: Feel like I've been waiting forever big bro @TheRock I'm Ready! #Ballers https://t.co/CECRwP9Nrz +06/26/2018,Sports_celeb,@TheRock,"I’m blown away. Thank you CHINA 🇨🇳 +RAMPAGE crosses the rare $1Billion RMB mark & becomes my highest grossing film… https://t.co/SXVQHo99PV" +06/26/2018,Sports_celeb,@TheRock,Pleasure meeting my dude @nicksanto534. What a positive ray of light and “no excuses” perspective on approaching li… https://t.co/GsozXiF95f +06/25/2018,Sports_celeb,@TheRock,@kharypayton 😂 👏🏾👊🏾 fuckin classic (and true) +06/25/2018,Sports_celeb,@TheRock,"RT @SevenBucksProd: Different coast, same hustle. @BallersHBO is back in business August 12 on @HBO. #Ballers #HBO https://t.co/wFS63l0c76" +06/25/2018,Sports_celeb,@TheRock,NEW SEASON of @ballershbo & this may be our best yet. We’re @HBO’s #1 half hour show for years now & I’m very proud… https://t.co/7omCBgbM6I +06/24/2018,Sports_celeb,@TheRock,"I’d 💯 vote for him, because he’s King of the ‘Gram but I also heard he’s a real a**hole, so no vote for him.… https://t.co/btUaVX3TOv" +06/23/2018,Sports_celeb,@TheRock,"Starting off my Sat by reviewing new TV spots for SKYSCRAPER. +Note pad and pen at the ready and diggin’ in to my p… https://t.co/8zsNzVRX3G" +06/23/2018,Sports_celeb,@TheRock,Join us today at 415 EST on ⁦@FOX for NOSSA CHAPE. Took me a few takes to fight back tears and get thru my lines fo… https://t.co/ElvmQIUxvl +06/23/2018,Sports_celeb,@TheRock,Wow FIVE #TeenChoice2018 NODS. THANK Y’ALL so very much. Grateful to have the greatest fans on the planet. Vote now… https://t.co/1iWX47cIkF +06/22/2018,Sports_celeb,@TheRock,"3 week countdown is on. +Most anticipated “nail biting, terrorizing fun you’ll have three thousand feet in the sky”… https://t.co/HcSeDurKTQ" +06/22/2018,Sports_celeb,@TheRock,"Hey punk @JKCorden, you’re gonna need much more than a silly #EatShitTheRock hashtag to start a beef between me and… https://t.co/MtXBIv4NnO" +06/21/2018,Sports_celeb,@TheRock,"RT @skyscrapermovie: EXCLUSIVE: A family in danger, an impossible leap, heroes, villains... @TheRock and the #SkyscraperMovie filmmakers gi…" +06/21/2018,Sports_celeb,@TheRock,"Big #ChaseGreatnessCollection2 drops next THURSDAY 6/28. +Including my first signature shoe that, fortunately sold… https://t.co/PCYerDRk9z" +06/21/2018,Sports_celeb,@TheRock,You make us happy too El. And thanks for including Kev’s name in your tweet. He gets super jelly when he’s not ment… https://t.co/BwQFadIjwp +06/20/2018,Sports_celeb,@TheRock,@cebsilver I’m skeptical reading “former” gym rat which I assume means you don’t train anymore. These headphones may not be for you buddy +06/20/2018,Sports_celeb,@TheRock,"Hype is real 🎧! +Our new #ProjectRockWireless @UnderArmour @JBLaudio first ever HARDCORE TRAINING headphones drop ne… https://t.co/hY1zHTGVMs" +06/20/2018,Sports_celeb,@TheRock,"Cool SKYSCRAPER movie fact/ +We hired Adrian… https://t.co/DTIoJndovx" +06/20/2018,Sports_celeb,@TheRock,"They’re here 🎧 +Like you, my gym time is… https://t.co/BuqXovimEt" +06/19/2018,Sports_celeb,@TheRock,"As you know, #SKYSCRAPER is my homage to DIE… https://t.co/wt17KA6U92" +06/19/2018,Sports_celeb,@TheRock,"Always make it about consistency, not greatness. Greatness will come. Have a GREAT season boys. Big respect & suppo… https://t.co/uvB7JJVNGD" +06/18/2018,Sports_celeb,@TheRock,@ava Congratulations AD. Onward/Upward 🤙🏾 +06/18/2018,Sports_celeb,@TheRock,Kuz told me he wanted his best summer ever. Boy’s puttin’ in the work 👏🏾💪🏾 https://t.co/j4z2i1i6mX +06/18/2018,Sports_celeb,@TheRock,@RealPAULLOGAN Thank you PL!! Appreciate it brother 👊🏾 +06/18/2018,Sports_celeb,@TheRock,"Trust me, Mel - I only got on my knees to feed Lauren while she breastfed because I was told there was free waffles… https://t.co/BPYpDR8nFw" +06/18/2018,Sports_celeb,@TheRock,So humbling and GRATEFUL to see @MakeAWish wish granting come full circle in my family. Thank you to the entire Mak… https://t.co/CcxZGIThAg +06/18/2018,Sports_celeb,@TheRock,@Emilyvaughnx Thx you Em!!! 🙏🏾👊🏾❤️ +06/18/2018,Sports_celeb,@TheRock,Haha perfect. Congratulations my friend on #5. I got some work to do to catch up. I’ll stay practicing lol.… https://t.co/7eLJxUY2wL +06/18/2018,Sports_celeb,@TheRock,"Bitter sweat Sunday, but my baby girl’s made it… https://t.co/ee4yx9nPgG" +06/17/2018,Sports_celeb,@TheRock,"What are you so upset about brother. You told me last month you’re not their real father anyway. +Love ya buddy and… https://t.co/xixnJdD2Yp" +06/17/2018,Sports_celeb,@TheRock,Happy Father’s Day to this hardly ever smiling… https://t.co/hIV2tdkbXo +06/17/2018,Sports_celeb,@TheRock,Family 👊🏾 Congrats boys! 🇲🇽 Thank you to my… https://t.co/YHVaFki6hV +06/16/2018,Sports_celeb,@TheRock,"Close up the honky tonks and lock all the doors,… https://t.co/5w7Q09YJ4U" +06/16/2018,Sports_celeb,@TheRock,"Calm before the storm. +Shooting our big… https://t.co/ySFgMwFknp" +06/16/2018,Sports_celeb,@TheRock,"*swipe left +Day of reckoning. 108 degrees.… https://t.co/oYgIlW1uck" +06/16/2018,Sports_celeb,@TheRock,"Family 👊🏾 +Thank you to my boys @jona2santos… https://t.co/Pq5QBYW3FH" +06/16/2018,Sports_celeb,@TheRock,"Doing some great biz with Universal. Grateful to have started my career with them years ago (Scorpion King). +Good… https://t.co/5SFcATqY4t" +06/16/2018,Sports_celeb,@TheRock,"Ladies, gents and children of all ages.. The… https://t.co/c7kMjovDUx" +06/16/2018,Sports_celeb,@TheRock,"🙏🏾 Much mahalo for this crazy fun buzz. RED NOTICE was the pitch that created a huge bidding war, eventually becomi… https://t.co/oaZUFwOYbp" +06/16/2018,Sports_celeb,@TheRock,Cool to feel the early buzz about RED NOTICE - an international heist thriller with myself and my darlin’ friend… https://t.co/e7q9jCqH0J +06/16/2018,Sports_celeb,@TheRock,Dude on the left is pretty good at what he… https://t.co/SrS9QYP1OZ +06/16/2018,Sports_celeb,@TheRock,@greengoblin Def you!! 👊🏾 +06/15/2018,Sports_celeb,@TheRock,"SKYSCRAPER is my homage to DIE HARD & TOWERING INFERNO. A love letter to Willis, McQueen, Newman and Dunaway. +And… https://t.co/0IrtvrwtQm" +06/15/2018,Sports_celeb,@TheRock,"@preston316 Absolutely amigo. It’s inspired by Towering, Die Hard, The Fugitive.. films of the 70s & 80s genre. Ins… https://t.co/5hygFB0yj2" +06/15/2018,Sports_celeb,@TheRock,"@chriswelch Dammit Chris it’s daddy, not dad" +06/15/2018,Sports_celeb,@TheRock,"A father’s love is fierce. +Excited to deliver to you this summer’s most anticipated original action film.… https://t.co/Q3l4trW9y4" +06/15/2018,Sports_celeb,@TheRock,"@Fisher_DanaR Haha yes it is D. It’s secretly, Kevin Hart wearing a raccoon costume" +06/15/2018,Sports_celeb,@TheRock,😂👊🏾 “Hold my beer and watch this shit” #MPRRaccoon https://t.co/FNg7lfLeLL +06/14/2018,Sports_celeb,@TheRock,"Just three dudes. +Great chop session with this… https://t.co/42znOHlvkA" +06/14/2018,Sports_celeb,@TheRock,"@ChrisEvans Happy Birthday brotha! Halfway to 74! +🤣🤙🏾👊🏾" +06/13/2018,Sports_celeb,@TheRock,Thank ya dude. The movie is fantastic. Enjoy! And I AM TOUGH.. in my mind only 😂 #Skyscraper https://t.co/dpkTVdr70W +06/13/2018,Sports_celeb,@TheRock,"In ONE MONTH.. yup, it all goes wrong. +#SKYSCRAPER JULY 13th 🌎 https://t.co/73aA2E946g" +06/13/2018,Sports_celeb,@TheRock,"Found this gem 💎 +Check out 22yrs old and 280lbs… https://t.co/MsyIXpCrto" +06/13/2018,Sports_celeb,@TheRock,"*scroll left +I wrote Gal’s name down on my… https://t.co/L9890p0MZd" +06/12/2018,Sports_celeb,@TheRock,This one got me. Lil’ Carter here has children’s Alzheimer’s (Sanfilippo syndrome). Check out this vid and if you c… https://t.co/OR5H7ahpgc +06/12/2018,Sports_celeb,@TheRock,@a_lemay224 Perfect!! #swag +06/12/2018,Sports_celeb,@TheRock,"@KicKeePants Much much mahalo for the amazing warm and cozy’s. Unfortunately, none of it fits me, so I guess I’ll g… https://t.co/xaY62Bot0f" +06/11/2018,Sports_celeb,@TheRock,"Got my ass kicked today training legs. +3… https://t.co/Bwh3rlllbL" +06/10/2018,Sports_celeb,@TheRock,"Back of the jet is called, “DJ’s Think Tank”… https://t.co/jCcX7tps6N" +06/10/2018,Sports_celeb,@TheRock,"Wheels up / rockin’ out 🤟🏾 +#FlyingSilverEagle… https://t.co/Xkub5B3OUQ" +06/10/2018,Sports_celeb,@TheRock,"Meet Will Sawyer: +Father. Husband. Amputee. BAMF. +Don’t ever underestimate the power of a desperate man protectin… https://t.co/111rhg5N5m" +06/10/2018,Sports_celeb,@TheRock,@jimmykorderas Haha I always need your help man. Just like back in our ring days when I needed you to quick count every time I won lol +06/09/2018,Sports_celeb,@TheRock,Always ‘preciate you brotha. Keep doing great things and spreading the good word. #theotherside https://t.co/Xgkv98WoNp +06/07/2018,Sports_celeb,@TheRock,Still much to learn in the shoe and apparel… https://t.co/w8kFqKHfS1 +06/07/2018,Sports_celeb,@TheRock,@Stands And a very special goodnight to you too;) +06/07/2018,Sports_celeb,@TheRock,@OmarMiller’s a good man and I’m happy to help. Continued blessings to you guys and the mission center. https://t.co/XXvE2dxtiV +06/06/2018,Sports_celeb,@TheRock,@Chris_Ciaccia @UnderArmour Thanks for writing it my man. Reading fresh language about my biz helps me understand a… https://t.co/hE9T383oWu +06/06/2018,Sports_celeb,@TheRock,"Again, very nice measure and metrics to sell out so fast, but also gave me great clarity on where we can improve gr… https://t.co/rQvqIyO1Tc" +06/06/2018,Sports_celeb,@TheRock,"Market analytics ain’t sexy at all to tweet about, however nice to see our #ProjectRock footprint making an impact… https://t.co/CKz6pUwYrT" +06/06/2018,Sports_celeb,@TheRock,Great success with our launch. Sold out in 30min. Satisfied consumers but still lots of work to be done! Always loo… https://t.co/cFJAjxORIh +06/06/2018,Sports_celeb,@TheRock,@JamesGunn @karengillan @michaelrosenbum @jumanjimovie @Guardians @seangunn @jackblack @prattprattpratt… https://t.co/YVTxJKeUE4 +06/06/2018,Sports_celeb,@TheRock,"Hell, we’ll get therapy together brother lol. Keep kickin ass champ! 🤙🏾👊🏾 https://t.co/qC5MhaXUhX" +06/05/2018,Sports_celeb,@TheRock,@LegitJoeyBowie Boom 💥 🤙🏾👊🏾 +06/05/2018,Sports_celeb,@TheRock,These are called the “Hobbs Beef Piston Power… https://t.co/b6UthHycNu +06/04/2018,Sports_celeb,@TheRock,@mattdavella My all time fav pic. Thx for the love man! And that’s because you keep calling me from a pay phone...… https://t.co/1KiLcsvliw +06/04/2018,Sports_celeb,@TheRock,"Yes sir. We gotta have faith that the one thing we always wanted to happen, can often be the best thing that never… https://t.co/QmXueKgjLB" +06/04/2018,Sports_celeb,@TheRock,"Sunday shakas and scripts. +Reading our new Fast… https://t.co/i2UJacOjub" +06/04/2018,Sports_celeb,@TheRock,I have some great and productive conversations… https://t.co/EQU8fnWkqR +06/04/2018,Sports_celeb,@TheRock,"If you’re goin’ thru the struggle, hold on to… https://t.co/OPRXBNaEF7" +06/03/2018,Sports_celeb,@TheRock,Thank you man and have a great workout! Women’s ProjectRock shoes in development and delivering at the top of 2019.… https://t.co/jBnQ0Snozz +06/03/2018,Sports_celeb,@TheRock,"I got you @TiffanyHaddish! Yes, the secret password to our secret society MTV-inati, is “@KevinHart4real is shorter… https://t.co/Ktr7I4WhnV" +06/03/2018,Sports_celeb,@TheRock,Months and months of collaborating with @UnderArmour’s top designers. Thank you everyone who made our launch a huge… https://t.co/OfzCJ4ayHF +06/03/2018,Sports_celeb,@TheRock,"“Let It Go” + +You’re welcome. https://t.co/BPMS6gwpWQ" +06/03/2018,Sports_celeb,@TheRock,@Anna_Rothschild @SirDavidBBC @washingtonpost Aw thank ya for the love Anna! Flattered by the gesture 🤟🏾 for the re… https://t.co/K9qZbR8BDr +06/03/2018,Sports_celeb,@TheRock,"Hi Bob, which nickname are you referring to? Big Daddy? The Rock? Samoan Thor? Beef Piston? Or the inappropriate on… https://t.co/4dp4Wh8499" +06/03/2018,Sports_celeb,@TheRock,@KaylaBraxtonWWE Hah I’ll totes see ya there as per yoosh;) +06/03/2018,Sports_celeb,@TheRock,🙏🏾❤️ Aww thank ya Audra! Wishing everyone the best of luck for our #WarriorGames! Kick ass and have fun. And geeezu… https://t.co/vrr2EI8mdT +06/03/2018,Sports_celeb,@TheRock,"Very cool and flattering @DakotaKai_WWE. Thank you! Look forward to following your career. Work extremely hard, hav… https://t.co/Ts9C7AhYL9" +06/03/2018,Sports_celeb,@TheRock,You’re welcome cuz! Always proud of your success and hard work. Enjoy the Project Rock @UnderArmour gear and… https://t.co/lgSymLeOih +05/31/2018,Sports_celeb,@TheRock,@mikeavila @joemoscone77 Haha not at all! Flair over me is a smart move and I agree. He was one of my squared circl… https://t.co/5ZfqBjQr5v +05/31/2018,Sports_celeb,@TheRock,@AlexJamesFitz Some jerk asshole lol. We also have to add TOWERING INFERNO and THE FUGITIVE to the title +05/30/2018,Sports_celeb,@TheRock,RT @rampagethemovie: #RampageMovie is like nothing you’ve ever seen before. Don’t miss out on taking all the action with @TheRock home! Own… +05/29/2018,Sports_celeb,@TheRock,@KevinMcCarthyTV Thank you dude so much!! You’re gonna love the movie!! @RawsonThurber (writer director) did an ama… https://t.co/Y7gK6e3EQV +05/29/2018,Sports_celeb,@TheRock,Happy to see all the great reviews for my new signature training shoe @UnderArmour #ProjectRock1s. Spent a long ti… https://t.co/EDc6RKYDSI +05/29/2018,Sports_celeb,@TheRock,Thank you everyone for rockin’ with my new signature shoe - the #ProjectRock1s from @UnderArmour. In 30min they wer… https://t.co/U2NmkoraTF +05/29/2018,Sports_celeb,@TheRock,RT @johnkrasinski: Memorial Day. A day to honor and remember each and every one of the brave men and women who lay down their lives for ea… +05/29/2018,Sports_celeb,@TheRock,RT @prattprattpratt: I did my Murph yesterday because i’m in Shanghai where yesterday is already tomorrow? (or something like that) we’ve b… +05/29/2018,Sports_celeb,@TheRock,@Ron_Clements @buffa82 @UnderArmour Awful? 😂 Well I can promise you we’re not that my friend. Nice profile pic. Fuck off 💁🏾‍♂️🖕🏾 +05/29/2018,Sports_celeb,@TheRock,Incredible day for our first signature series @UnderArmour #ProjectRock1s - 100% sold out in 30min. It’s a smart tw… https://t.co/514lIwM45d +05/29/2018,Sports_celeb,@TheRock,"It’s Dwight you dickhead. Let’s get to work Jeff. + +Jokes aside, this one is truly going be an honor.… https://t.co/ONlPSKLofB" +05/28/2018,Sports_celeb,@TheRock,"Whoa. Blown away... +I got up at 4am (Hawaii time) today to launch my new signature series @UnderArmour… https://t.co/xFdLhHy1ng" +05/28/2018,Sports_celeb,@TheRock,"#ProjectRock1s AVAILABLE NOW 🔥 +My 1st signature series shoe from @underarmour. I’ve engineered & broken these down… https://t.co/72GR1N4B5a" +05/27/2018,Sports_celeb,@TheRock,Just when I thought I couldn’t be any more… https://t.co/fXdpUq5Vd2 +05/27/2018,Sports_celeb,@TheRock,@TheVenskus Papa? No. Daddy? Yes. Lol +05/27/2018,Sports_celeb,@TheRock,Just when I thought I couldn’t be any more… https://t.co/JbO0qQXCeZ +05/27/2018,Sports_celeb,@TheRock,@ChrisClarkNFL @UnderArmour You’ll dig these PR1’s for sure my man. The 15’s are large and wide. Not a narrow shoe… https://t.co/hWA1aCTPJl +05/27/2018,Sports_celeb,@TheRock,Leg day in my new @underarmour #ProjectRock1s… https://t.co/w5Mav66CJM +05/27/2018,Sports_celeb,@TheRock,Scroll left for the exclusive first look at my… https://t.co/YV6lUMi4Lk +05/27/2018,Sports_celeb,@TheRock,"We’re all in the same game, just different… https://t.co/923SoZjKmO" +05/26/2018,Sports_celeb,@TheRock,"Well I keep asking you out to join me for an amazing time eating dead cow and drinking tequila, but the “dead cow”… https://t.co/1PHMbgrAIz" +05/26/2018,Sports_celeb,@TheRock,"Love this. Have fun and tell the awesome birthday girl, Uncle Rock says “Have a blast on your birthday and go spend… https://t.co/N3HuNCuiYv" +05/26/2018,Sports_celeb,@TheRock,Here’s a breakdown of our 18month process on the development and engineering of my new signature sneaker. Pretty in… https://t.co/vpPZhox1oR +05/26/2018,Sports_celeb,@TheRock,"I’ve developed, trained in, broken down and refined this sneaker for over a year now. Highest of quality and durabi… https://t.co/wEZ9t96zOi" +05/26/2018,Sports_celeb,@TheRock,"This MONDAY we drop our new @UnderArmour #ProjectRock1s. +My first signature sneaker series from our CHASE GREATNES… https://t.co/Pa9aZsu8zO" +05/26/2018,Sports_celeb,@TheRock,"@johnreport @NatbyNature Your action figure looks way cooler, sexier & bad ass. Mine looks constipated and confused… https://t.co/svrXL9IQRH" +05/24/2018,Sports_celeb,@TheRock,Scroll left for the exclusive first look at my… https://t.co/mJD5DEIae9 +05/24/2018,Sports_celeb,@TheRock,And that’s saying A LOT cause your head is HUGE my friend @TheRossKing 😉🤙🏾. Always a good time chatting s you!… https://t.co/657lIG5hc2 +05/24/2018,Sports_celeb,@TheRock,Great time. Thank you for having me on your show! #Skyscraper https://t.co/z2Ap5sTmor +05/24/2018,Sports_celeb,@TheRock,"A lil’ taste of my new @UnderArmour PROJECT ROCK 1’s. +Been training in these and improving their quality for over… https://t.co/M0ZyfsnBh6" +05/24/2018,Sports_celeb,@TheRock,@toryshulman @skyscrapermovie @dailyblastlive Dude I wanted to cast you but what’s his name said no. Can’t remember… https://t.co/HMbtHGRgox +05/24/2018,Sports_celeb,@TheRock,"@HistoryofWrest Every Saturday night, I was at this show with my dad at the Portland Sports Arena. On Sunday’s the… https://t.co/bEnWyCuNTC" +05/23/2018,Sports_celeb,@TheRock,"I made a movie that pays homage to films that inspired me & a generation w/ grit, guts and heart - DIE HARD, THE TO… https://t.co/HI5Mku341r" +05/22/2018,Sports_celeb,@TheRock,"New full length SKYSCRAPER trailer drops tomorrow. +Most physical, emotional and intense role of my career. +I need… https://t.co/eKlQpsYeS1" +05/22/2018,Sports_celeb,@TheRock,"RT @EWagmeister: Another day, another piece of news coming from @TheRock’s world! + +DJ & his @SevenBucksProd business partner @DanyGarciaCo…" +05/22/2018,Sports_celeb,@TheRock,My main objective is to always make movies for the world to enjoy. And now that fun movie going experience extends… https://t.co/1AIdAdrwqI +05/22/2018,Sports_celeb,@TheRock,RT @Variety: Dwayne @TheRock Johnson and @DanyGarciaCo are bringing more high-wattage Hollywood electricity to Atom Tickets' advisory board… +05/21/2018,Sports_celeb,@TheRock,@JerryJarrett @TheJimCornette @HistoryofWrest I wish I did remember that Jerry! Dad always spoke highly of you and… https://t.co/WSDa0w7gUs +05/21/2018,Sports_celeb,@TheRock,A lil’ taste of my new SKYSCRAPER trailer debuting THIS WEDNESDAY! #SKYSCRAPER https://t.co/1UWy8lDVe5 +05/20/2018,Sports_celeb,@TheRock,@AdrianneCurry @TheMatthewRhode @jumanjimovie @skyscrapermovie Do it dude!! Thats the kind of deal where there are… https://t.co/C3fwz0vTlF +05/20/2018,Sports_celeb,@TheRock,"@robcorddry @hwinkler4real Dear Rob, I signed an autograph pic for Henry and it should be arriving this week into h… https://t.co/jxc3ld1nOY" +05/20/2018,Sports_celeb,@TheRock,"Saturday night doc viewing. +@thenotoriousmma… https://t.co/byQCyyIrSX" +05/20/2018,Sports_celeb,@TheRock,We’re gonna have times in our lives where we… https://t.co/YcF8eCjTiJ +05/20/2018,Sports_celeb,@TheRock,It’s a success philosophy thats worked very well… https://t.co/wr0ik4wlqn +05/20/2018,Sports_celeb,@TheRock,Thank you @lakers for having me speak to the… https://t.co/IXjvyhDV9K +05/20/2018,Sports_celeb,@TheRock,Just stopping in to show my appreciation and… https://t.co/bTS525qeB8 +05/20/2018,Sports_celeb,@TheRock,@chrissyteigen See baby you’re doing great!! @LaurenHashian 😉👍🏾 +05/20/2018,Sports_celeb,@TheRock,@Crockettfroggy @Goldust @Zelina_VegaWWE @JoeDiffieOnline Sheeeeyat am I a Joe Diffie fan? “If you want me to” is o… https://t.co/bU5gaNghgS +05/20/2018,Sports_celeb,@TheRock,@HistoryofWrest You can actual FEEL the tension and energy in the arenas across the country in the 70’s during matc… https://t.co/ZkaY20gGuw +05/20/2018,Sports_celeb,@TheRock,@Goldust @Zelina_VegaWWE Congrats brother. Proud of you (still remember us listening to ol’ Joe Diffie on the bus on the Germany tour;) +05/20/2018,Sports_celeb,@TheRock,@SMUheavyweight @OldWrestlingPic the original oooooh yeah! +05/20/2018,Sports_celeb,@TheRock,@SamariaPele Aww thank you sis!! +05/19/2018,Sports_celeb,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/QBEPyVqcxd" +05/19/2018,Sports_celeb,@TheRock,"Cool update on ARMED FORCES DAY. +I was able to… https://t.co/ajaZ2AxBgy" +07/08/2015,Sports_celeb,@kawhileonard,RT @GoAztecsFacOps: Had a special guest today at the @GoAztecs Jeff Jacobs #JAMCenter. Thanks for stopping by @kawhileonard ! #AztecMBB htt… +07/07/2015,Sports_celeb,@kawhileonard,Custom swag board #KL2 edition. Gear coming soon. http://t.co/Souo2K8Z7D +04/04/2015,Sports_celeb,@kawhileonard,You don’t have to be a golfer to have fun at @topgolfsat! #golf #SanAntonio #TopgolfVIP http://t.co/SoB4A54tpL +01/13/2015,Sports_celeb,@kawhileonard,One of my greatest experiences http://t.co/MiuGPv5Iin +06/26/2018,Sports_celeb,@StephenCurry30,First episode of my #5MinutesFromHome series is now live on YouTube. @RudyMancuso and I record a fire track in the… https://t.co/UKVzYUdt4h +06/26/2018,Sports_celeb,@StephenCurry30,RT @NickSwagyPYoung: Why y’all so mad enjoy life +06/24/2018,Sports_celeb,@StephenCurry30,"RT @sydelcurry: Tonight. 8/7C familyfeudabc @abcnetwork!! So excited for y’all to see it. So much funnnn! • +• +• +Seth was injured the weeken…" +06/24/2018,Sports_celeb,@StephenCurry30,@LeVelleMoton Woah I see you coach! It’s Officially golf season you know I’m ready whenever +06/24/2018,Sports_celeb,@StephenCurry30,It’s going down tonight on @FamilyFeudABC with my family. Thanks @IAmSteveHarvey for having us. Comes on 8/7C! https://t.co/SJodiLhPsO +06/21/2018,Sports_celeb,@StephenCurry30,@crgilbert @ayeshacurry @EatAtSmoke Wow! Who am I? 2 orders of that +06/21/2018,Sports_celeb,@StephenCurry30,Hey @ayeshacurry. Guess I’ll have @EatAtSmoke in Houston 2 Myself twice next year 🤷🏽‍♂️. More Ribs and Shellfish an… https://t.co/E04vutqbcr +06/20/2018,Sports_celeb,@StephenCurry30,6 days to go! #5MinutesFromHome dropping June 26. https://t.co/K9c4XJZ0L9 +06/20/2018,Sports_celeb,@StephenCurry30,@L_Smith_23 Louder than the silence - quieter than the noise bro! I don’t understand this nonsense. Sending supplie… https://t.co/ZGrkunzB4s +06/15/2018,Sports_celeb,@StephenCurry30,RT @DevonteeWOE: my first single #BLESS out everywhere now! LINK… https://t.co/FFykfp4a40 +04/19/2018,Sports_celeb,@StephenCurry30,"I can’t imagine what Coach Popovich is going through, but I am lifting up prayers you and your family. 🙏🏽 https://t.co/PMezvqWlcL" +04/14/2018,Sports_celeb,@StephenCurry30,That time again! . #dubnation https://t.co/j5AgmELk5c +04/13/2018,Sports_celeb,@StephenCurry30,🚨 Restock alert 🚨 https://t.co/jk45wzhKFU +04/13/2018,Sports_celeb,@StephenCurry30,"RT @stockx: Today is your last chance to enter! Don't miss out on your chance at game-worn, signed sneakers from @StephenCurry30 for just…" +04/11/2018,Sports_celeb,@StephenCurry30,I’m partnering with @StockX to give you all a shot at owning the 1-of-1 @MBK_Alliance Curry 4’s I wore against the… https://t.co/Pc3dhNO74m +04/11/2018,Sports_celeb,@StephenCurry30,RT @SportsCenter: From 10 years in the G League to 19 points and MVP chants as a Laker https://t.co/j1e8gv6B3H +04/04/2018,Sports_celeb,@StephenCurry30,😎 #DubNation +04/01/2018,Sports_celeb,@StephenCurry30,Please send up prayers thoughts love to my guy @PMcCaw0! God please heal his body and keep him strong! +03/27/2018,Sports_celeb,@StephenCurry30,Psalm 27:13-14 I remain confident of this: I will see the goodness of the LORD in the land of the living. Wait for… https://t.co/LBfkCr7aAS +03/24/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +03/23/2018,Sports_celeb,@StephenCurry30,Running drills and having fun tonight with @Chase customers during the 🏀 clinic @ULTFieldhouse! Thanks to my partne… https://t.co/TAnj5jkWHA +03/16/2018,Sports_celeb,@StephenCurry30,@babyboypoverty 😎 +03/16/2018,Sports_celeb,@StephenCurry30,@DavidDTSS I was in the mood too! https://t.co/Hmz70bH4Zz +03/16/2018,Sports_celeb,@StephenCurry30,@KAzubuike7 Boooooo that +03/16/2018,Sports_celeb,@StephenCurry30,Tough one down the stretch but that fight is what makes @DavidsonMBB special. Congrats to Coach McKillop on his 29t… https://t.co/Mv5vvBY61E +03/15/2018,Sports_celeb,@StephenCurry30,@Money23Green #ruiningthegame +03/15/2018,Sports_celeb,@StephenCurry30,The world is an incredible place. We blew past $30K so why not triple it? Can we hit $90K?! 👉🏼… https://t.co/wScXEN2nHK +03/15/2018,Sports_celeb,@StephenCurry30,It’s a big birthday so let’s make a big impact. Can we hit $30K for @nothingbutnets?! 👉🏼https://t.co/BdZXvomtnT👈🏼 https://t.co/zeTNKCrieI +03/10/2018,Sports_celeb,@StephenCurry30,#DubNation +03/08/2018,Sports_celeb,@StephenCurry30,You get uglier every year 😂😂😆. Happy birthday! Yannnnn! https://t.co/eallYrmfMa +03/03/2018,Sports_celeb,@StephenCurry30,It’s a Great Day to Be a Wildcat! https://t.co/4boShlYNp3 +03/01/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/27/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/26/2018,Sports_celeb,@StephenCurry30,@andrewbogut Can we start the #BogutBookClub?? What book is that? +02/26/2018,Sports_celeb,@StephenCurry30,He’s working on getting his Win % up to NBA average FG%. Congrats bro! https://t.co/a8eWNXCkcj +02/25/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/24/2018,Sports_celeb,@StephenCurry30,RT @VanJones68: TONIGHT!!! 7pm ET & 4pm PT west coast on @cnn. @NBA champion @StephenCurry30 on the #VanJonesShow ... SET YOUR DVR NOW! ...… +02/23/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +02/22/2018,Sports_celeb,@StephenCurry30,1/2 of @ayeshacurry is so mad right now that we just beat Canada on the ICE! 😂😂😂😂😂😂😂😂😂😂😂😂😂😂 +02/22/2018,Sports_celeb,@StephenCurry30,RT @JForsett: Let’s Go!!! #USA https://t.co/v0yZ5nuKxa +02/22/2018,Sports_celeb,@StephenCurry30,USA!! USA!!! 🇺🇸 🏒 +02/13/2018,Sports_celeb,@StephenCurry30,Get that gooseneck wrist pointed down and you got it! Need you to return the favor on the lacrosse field sometime https://t.co/gTX1IovreG +02/09/2018,Sports_celeb,@StephenCurry30,"RT @MuscleMilk: Enter our #YearOfYou Sweepstakes for a chance to win the gear you need to make your 2018 goals a reality. +https://t.co/2AZ…" +02/08/2018,Sports_celeb,@StephenCurry30,"Hey @MalcolmJenkins, they should have given you some glasses with that 🎤. I rep the @RedhawksAD. But appreciate the… https://t.co/N5E4Fko2NS" +02/03/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +01/30/2018,Sports_celeb,@StephenCurry30,RT @MichaelRapaport: New episode of PLC ep-8 with @JaValeMcGee @StephenCurry30 @imanitrishawn_ and some dope cameos! GO WATCH! https://t.co… +01/28/2018,Sports_celeb,@StephenCurry30,Stay strong @boogiecousins and Andre Roberson! Prayers your way for a strong recovery 🙏🏽 +01/25/2018,Sports_celeb,@StephenCurry30,Yeah I’d have to say that was legit! #nextyear https://t.co/fj4flo8lgq +01/25/2018,Sports_celeb,@StephenCurry30,"Today is something else. @TigerWoods is back on the course, @NBAAllStar draft with #30K @KingJames, and it’s a game… https://t.co/nsXyR4sHMw" +01/20/2018,Sports_celeb,@StephenCurry30,https://t.co/ZdMjRklkja +01/18/2018,Sports_celeb,@StephenCurry30,"Captain huh? Really Appreciate all the votes from the fans, media and players! Honored to be an All-Star. TGBTG! https://t.co/rOpLsUx47T" +01/18/2018,Sports_celeb,@StephenCurry30,@gavmanj Uhhh. 0.1 seconds on the clock. Pretty smart way to end the Quarter if you ask me. But what do I know? I’d… https://t.co/6JFrHrwZXp +01/16/2018,Sports_celeb,@StephenCurry30,Introducing a new segment called “Never Seen it!” https://t.co/OLhRk6C59q +01/08/2018,Sports_celeb,@StephenCurry30,Solid year fellas! Loved the fight. #KeepPounding forever +01/08/2018,Sports_celeb,@StephenCurry30,First time I’m like yo! He didn’t catch that interception. No give it back! +01/08/2018,Sports_celeb,@StephenCurry30,I can’t believe this +01/07/2018,Sports_celeb,@StephenCurry30,Season pretty much down to this possession. Need 7 right now If we got any chance today- Brees is scary +01/07/2018,Sports_celeb,@StephenCurry30,Cam is locked in right now. Need the hands to wake up though. +01/07/2018,Sports_celeb,@StephenCurry30,Lets go @Panthers #KeepPounding https://t.co/lwHQlnvJ9H +01/05/2018,Sports_celeb,@StephenCurry30,Filtering out water bottles and showing my man @rudymancuso the right way to start the New Year. Thanks to… https://t.co/1oYjeoguHl +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes + +🌟 Stephen Curry #NBAVote 🌟 https://t.co/1JzDHIDhsI" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes + +🌟 Draymond Green #NBAVote 🌟 https://t.co/saRBN0OxLY" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes 👐🏽 + +Kevin Durant ⭐️ #NBAVote https://t.co/ihUAwWJ01J" +01/05/2018,Sports_celeb,@StephenCurry30,"RT @warriors: Retweets = Votes 👌🏽 + +Klay Thompson ⭐️ #NBAVote https://t.co/dSRZQQ05j7" +01/05/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +01/04/2018,Sports_celeb,@StephenCurry30,Lock in! #DubNation +12/31/2017,Sports_celeb,@StephenCurry30,The NEW @UnderArmour #Curry4 Low benefits @nothingbutnets. Each pair sold sends a life-saving bed net. Don't miss i… https://t.co/WBDUXY2qLb +12/31/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +12/30/2017,Sports_celeb,@StephenCurry30,The comeback is always stronger than the setback.  S/o @DegreeMen #AD https://t.co/TzL16Tf7LR +12/27/2017,Sports_celeb,@StephenCurry30,"#WeAreTheOnes...Learn how to help young people fulfill their potential, regardless of circumstance at… https://t.co/MmZirdKziA" +12/24/2017,Sports_celeb,@StephenCurry30,Yeaahhhhhhhhhh Boy! Found a way today baby. We are going to be dangerous in the post season. And I’m all here for it! #KeepPounding +12/23/2017,Sports_celeb,@StephenCurry30,RT @warriors: Good to have you back on the court @money23green 💪🏽 #DubNation https://t.co/D9vxjq2nLE +12/21/2017,Sports_celeb,@StephenCurry30,Somebody is having a great game! https://t.co/0RiWEzgwyQ +12/19/2017,Sports_celeb,@StephenCurry30,End this......! +12/19/2017,Sports_celeb,@StephenCurry30,I️ concur https://t.co/RynrCCoTWK +12/19/2017,Sports_celeb,@StephenCurry30,Thanks @uograd66 https://t.co/ITBS8UHWuA +12/19/2017,Sports_celeb,@StephenCurry30,Wish I could be there tonight. Congrats @kobebryant. #Ko8e24 https://t.co/a98uiRpP8k +12/18/2017,Sports_celeb,@StephenCurry30,"RT @MySportsUpdate: Clay Matthews: It's that wheel route, it's that wheel route + +Cam Newton: You been watching film, huh? + +Matthews: Yeah…" +12/18/2017,Sports_celeb,@StephenCurry30,I️ want in! https://t.co/XvvC1vo7xI +12/15/2017,Sports_celeb,@StephenCurry30,Get buckets!!! 👌🏽 https://t.co/ho9uThnA6h +12/15/2017,Sports_celeb,@StephenCurry30,💪🏽💪🏽💪🏽 https://t.co/KQ6Nspjfv3 +12/15/2017,Sports_celeb,@StephenCurry30,Keep up the good work! 👏🏽👏🏽👏🏽 https://t.co/f78uS7xsq6 +12/14/2017,Sports_celeb,@StephenCurry30,🎄🏀 https://t.co/5e5o3c7SZR +12/11/2017,Sports_celeb,@StephenCurry30,Well said bro! Finding the purpose and plan in everything. All things work together...ROM 8:28 #respect https://t.co/dhCJVxzCEH +12/09/2017,Sports_celeb,@StephenCurry30,Trucking around the Bay looking for gyms to drop into. Got some goodies for #DubNation and looking to hear from you… https://t.co/h47EUq0IMi +12/09/2017,Sports_celeb,@StephenCurry30,These boys playing some basketball!!! Big Mo going to the 4th +12/09/2017,Sports_celeb,@StephenCurry30,👀 @KDTrey5 +12/08/2017,Sports_celeb,@StephenCurry30,Traveling back to the Bay haven’t been able to see the show yet but heard @ayeshacurry killed the… https://t.co/T5ZWx3BroO +12/03/2017,Sports_celeb,@StephenCurry30,This year I’m participating in the #HourOfCode challenge! Tweet your @codeorg creation and a class photo. Tag me &… https://t.co/z0p873kZXh +11/30/2017,Sports_celeb,@StephenCurry30,The wait is over. The wait is over. @TigerWoods +11/28/2017,Sports_celeb,@StephenCurry30,RT @sdotcurry: I appreciate all your support as you all motivate me to get back ASAP. I do want to do my part on (cont) https://t.co/thRCvK… +11/25/2017,Sports_celeb,@StephenCurry30,"Appreciate the #DubNation love from Florida. I’ve got something in store for you when you come to the game, can’t w… https://t.co/ta6WTSnXFb" +11/22/2017,Sports_celeb,@StephenCurry30,@JaValeMcGee34 Soon.....! https://t.co/cyfWQcXViu +11/21/2017,Sports_celeb,@StephenCurry30,"No days off with @DegreeMen Deordorant. The more you move, the more it works. #ad https://t.co/RqZtaxQgDT" +11/21/2017,Sports_celeb,@StephenCurry30,Appreciate the love tonight! @jimmyfallon vibez. Tune in! https://t.co/9WFZMp8e2h +11/21/2017,Sports_celeb,@StephenCurry30,#DubNation in NYC 🤓 https://t.co/lmMkErBdhW +11/12/2017,Sports_celeb,@StephenCurry30,RT @cloud_surferrr: When you were born and raised in the South and somebody says “oh you don’t have to say yes ma’am/no ma’am to me” https:… +11/11/2017,Sports_celeb,@StephenCurry30,"As we celebrate Veterans today, let us be louder than all of this silence — and quieter than all of this noise. + +https://t.co/xUMtcf8Tbm" +11/09/2017,Sports_celeb,@StephenCurry30,#SC30 x @Xbox collab alert! 🚨🚨 https://t.co/NXHWioFwwS +11/08/2017,Sports_celeb,@StephenCurry30,Let’s gooooooo https://t.co/ZnKAV6Aym2 +11/08/2017,Sports_celeb,@StephenCurry30,So much love!!!! https://t.co/0zQqgoq5AS +11/05/2017,Sports_celeb,@StephenCurry30,Cam out there dunking on people now? I’ll have to ask him what that feeling is like later #iplaybelowtherim +11/03/2017,Sports_celeb,@StephenCurry30,RT @ayeshacurry: Well! Here we go! international goes to Houston! coming 2018 https://t.co/AAUg0a4bZX +11/02/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +11/02/2017,Sports_celeb,@StephenCurry30,I wonder if Steve’s Bike shop is hiring... +10/31/2017,Sports_celeb,@StephenCurry30,Please help me understand this madness.... https://t.co/lds3DE9ujf +10/31/2017,Sports_celeb,@StephenCurry30,@juliephayer “Game Over” +10/30/2017,Sports_celeb,@StephenCurry30,RT @MarcJSpearsESPN: The story of how and why Warriors star @KlayThompson used his scoring to aid the Bay Area's firestorm victims. https:/… +10/30/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/29/2017,Sports_celeb,@StephenCurry30,"Hello, I want to play a game. #Jigsaw #DubNation https://t.co/cvl6F3cIQc" +10/28/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/27/2017,Sports_celeb,@StephenCurry30,Shoutout to my man #kortneumann on killing the design of the #Curry4. It was great collaborating with you my man. R… https://t.co/WG8x61c0LA +10/24/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/22/2017,Sports_celeb,@StephenCurry30,No excuse for that! Gotta remember who I am playing for... +10/21/2017,Sports_celeb,@StephenCurry30,@Richie_Lombardi @UAbasketball Yeah I might have to cut copy and paste those into my closet! 🔥 +10/21/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +10/19/2017,Sports_celeb,@StephenCurry30,@JOHNNYSWIM #INeedMeSomeHome https://t.co/fZxK61YWtG +10/18/2017,Sports_celeb,@StephenCurry30,At least the first part of the night we were smiling! 💍💍. On to the next! https://t.co/MXvepDxI29 +10/18/2017,Sports_celeb,@StephenCurry30,🙏🏽🙏🏽 For @gordonhayward. Come back stronger! +10/18/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation 💍 +10/17/2017,Sports_celeb,@StephenCurry30,Getting off to a FRESH start this season with @DegreeMen Deodorant #AD. https://t.co/8fduOcdEwo +10/16/2017,Sports_celeb,@StephenCurry30,Finally got to see the @Chase #GoldenVictoryBall in action today during the court refurb at Bushrod Park! Check it… https://t.co/PEqs235Mjz +10/10/2017,Sports_celeb,@StephenCurry30,There’s more to me than my numbers. It's why I choose @INFINITIUSA. Life's an experience not a stat sheet.… https://t.co/DSb3SyRRoo +10/09/2017,Sports_celeb,@StephenCurry30,My partners @Chase are sending the #GoldenVictoryBall your way tomorrow!! Stop by and take a pic. https://t.co/dbw1HFKxyj +10/08/2017,Sports_celeb,@StephenCurry30,I could get used to this! (📸 @cassyathena) https://t.co/z6O5Wos33v +10/07/2017,Sports_celeb,@StephenCurry30,RT @Essence: .@ayeshacurry's debut cookware line has arrived. Here's what we're buying from it: https://t.co/7jxh8SPycG https://t.co/ELr2cN… +10/01/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation 9️⃣ +09/26/2017,Sports_celeb,@StephenCurry30,"RT @30for30: He sacrificed his life to save others. + +Our latest ESPN Film, #24Strong - the story of Zaevion Dobson, airs Thurs. at 7:30 ET…" +09/25/2017,Sports_celeb,@StephenCurry30,RT @DavidDTSS: .@StephenCurry30 still repping. Go Season Some Food. Get familiar. https://t.co/Asq7xMH6BA https://t.co/g5pOjBirMx +09/24/2017,Sports_celeb,@StephenCurry30,@Lanny_Smith We should Keep a running scoreboard! Ones with Steven count as double +09/22/2017,Sports_celeb,@StephenCurry30,@DJRadar24 @ayeshacurry Louder +09/22/2017,Sports_celeb,@StephenCurry30,RT @lecrae: My new album 'All Things Work Together' is out now everywhere 🙏🏾 #ATWT https://t.co/gnWRS6pPFU https://t.co/pss5pKmwtV +09/21/2017,Sports_celeb,@StephenCurry30,Salute to @andreward on checking off everything he ever wanted to do in the ring. #missionaccomplished https://t.co/9W674kzRlu +09/20/2017,Sports_celeb,@StephenCurry30,@aef83 @UnderArmour That’s about the same face I make when I open my own pair! +09/19/2017,Sports_celeb,@StephenCurry30,That sunshine expensive #blessings +09/18/2017,Sports_celeb,@StephenCurry30,"RT @DavidDTSS: AND. WE. ARE. LIVE. + +https://t.co/aqzqrFUOgP" +09/17/2017,Sports_celeb,@StephenCurry30,RT @MrAnthonyMorrow: Our Defense is looking Top 1 or 2 in the league again the past two weeks @Panthers ✊🏾✊🏾🙌🏾🙌🏾 +09/17/2017,Sports_celeb,@StephenCurry30,I'm nice with the right foot though...thanks to @chelseafc for having me at Stamford Bridge today. ⚽️ https://t.co/BtIZTmt5Xz +09/12/2017,Sports_celeb,@StephenCurry30,The UA Family welcomes another champ 🏆 to the sqUAd. Congrats @SloaneStephens. It was a victory #UnlikeAny. #TeamUA https://t.co/UR1B14tGD4 +09/10/2017,Sports_celeb,@StephenCurry30,"This was fun! Me vs. My Daughter on the track. @infinitiusa Q50 for the win. +#RoadOfHerDreams #ad https://t.co/xBp7QFGwru" +09/05/2017,Sports_celeb,@StephenCurry30,RT @SoleCollector: See what @StephenCurry30 fans are creating on the UA Icon platform: https://t.co/s3gxl6e6KQ https://t.co/EDpw3gLYs3 +09/03/2017,Sports_celeb,@StephenCurry30,New vibez w/ @lawrencetheband thank me later! https://t.co/YmfJ2Upqq0 https://t.co/YmfJ2Upqq0 +08/28/2017,Sports_celeb,@StephenCurry30,RT @CNN: Here are a few ways you can help the people affected by Hurricane Harvey https://t.co/8A08k10kvN https://t.co/26cfSvjwdP +08/28/2017,Sports_celeb,@StephenCurry30,Prayers up for Houston! Many fam and friends living there. Don’t really know what to say in times like these but hope we can help somehow! +08/25/2017,Sports_celeb,@StephenCurry30,"Thanks to @PSG_inside for having me out to see the win! What a wild, crazy environment to be part of.… https://t.co/dVARZbEtAx" +08/19/2017,Sports_celeb,@StephenCurry30,@LetsGoWarriors DM me the group code! Let’s Go! +08/16/2017,Sports_celeb,@StephenCurry30,Work! https://t.co/0nNKU4qrqj +08/16/2017,Sports_celeb,@StephenCurry30,Hyped The Players Technology Summit is finally here - thanks to @Bloomberg and everyone that made it happen. https://t.co/sZJKaUAYKN +08/15/2017,Sports_celeb,@StephenCurry30,👏🏽👏🏽💪🏽✌🏽 +08/09/2017,Sports_celeb,@StephenCurry30,".@Dennis1SmithJr welcome to the sqUAd, bro. Let's get it!! #TeamUA https://t.co/ofc8YFw5Eb" +08/09/2017,Sports_celeb,@StephenCurry30,"RT @JordanMcCabe5: Special thanks to @stephencurry30 and @UAassociation for the great event this week, best experience so far. #SCSelect #B…" +08/09/2017,Sports_celeb,@StephenCurry30,@MaallyMall @UnderArmour These are 🔥 +08/08/2017,Sports_celeb,@StephenCurry30,#BayArea come 👀 the Top H.S. players in the 🌏at Kezar Pavilion tmrw at 6PM. The Showcase airs live @9PM EST #ESPNU.… https://t.co/9LsHxSPVon +08/04/2017,Sports_celeb,@StephenCurry30,@andre 75 BPM is da gawd! +08/04/2017,Sports_celeb,@StephenCurry30,@wheatiePGA @notthefakeSVP Hell hath frozen over 😂 +08/04/2017,Sports_celeb,@StephenCurry30,@24Bazemore We’ve all been doubted before ya heard me! #499 +08/04/2017,Sports_celeb,@StephenCurry30,@webbsimpson1 Thanks my man! You guys have an extremely tough day job. +08/04/2017,Sports_celeb,@StephenCurry30,RT @ayeshacurry: Word of the day! A person should never be subjected to being just one thing! #noceilings live your dreams! Believe in YOUR… +08/03/2017,Sports_celeb,@StephenCurry30,I remember 2011 in Winston playing with you! We both got wayyyy better https://t.co/ir0NVS7f4j +08/01/2017,Sports_celeb,@StephenCurry30,"Nothing quite like the sound of the ball on the asphalt, or the engine revving on the road ahead. S/O to #INFINITI… https://t.co/du670Xddzb" +07/27/2017,Sports_celeb,@StephenCurry30,"When you've got the range, you gotta have the right kicks. #SC30AsiaTour @uabasketball https://t.co/qQ1olgWeDq" +07/26/2017,Sports_celeb,@StephenCurry30,Chengdu sqUAd. #SC30AsiaTour https://t.co/xr4M7aa4Gb +07/24/2017,Sports_celeb,@StephenCurry30,"Made my ""acting"" debut on @BallersHBO Season 3. Check me out Sunday, July 23 at 10pm ET on @HBO. https://t.co/h88SQo8Jxz" +07/24/2017,Sports_celeb,@StephenCurry30,It's my first time in Chengdu and it's already an unforgettable experience. #SC30AsiaTour https://t.co/R7ID8H7Mq2 +07/23/2017,Sports_celeb,@StephenCurry30,Just putt it and turn around and walk to the next hole next time sheesh Jordan! +07/23/2017,Sports_celeb,@StephenCurry30,Issa Eagle!!!!! +07/23/2017,Sports_celeb,@StephenCurry30,Issa 🦅 +07/23/2017,Sports_celeb,@StephenCurry30,“Are you not entertained???” @JordanSpieth +07/22/2017,Sports_celeb,@StephenCurry30,No days off in Beijing. #SC30AsiaTour https://t.co/sGLSrYCYAL +07/20/2017,Sports_celeb,@StephenCurry30,"Getting shots up, even at my #INFINITI #Q50 commercial shoot! More to come. https://t.co/wtNl1ys5Hw" +07/16/2017,Sports_celeb,@StephenCurry30,🏌🏽in Tahoe! @jtimberlake @tonyromo 📷:: Jeff Bayer https://t.co/RNgvKMrrus +07/12/2017,Sports_celeb,@StephenCurry30,RT @NBASummerLeague: Wait for it... @1jordanbell!!! #NBASummer https://t.co/mBmfsepJlL +07/12/2017,Sports_celeb,@StephenCurry30,That time of year for @SDotcurry! https://t.co/x93DLgbybk https://t.co/dA1nYVqqNl +07/12/2017,Sports_celeb,@StephenCurry30,@CamGo_Ham @Cal_Baseball 👀 can do something about that! +07/07/2017,Sports_celeb,@StephenCurry30,Nothing easyyyyyyyyyy!!!! +07/04/2017,Sports_celeb,@StephenCurry30,Talk about him! Shakespeare says there’s sermons in stones @KDTrey5. +06/28/2017,Sports_celeb,@StephenCurry30,@bryantabarr @ACChampionship Yes We will have a performance review after Tahoe! Lights will be really bright gotta see how we respond +06/28/2017,Sports_celeb,@StephenCurry30,obviously want to play well & see how I handle tournament golf. No expectations except keep ball out of the gallery and not go Happy Gilmore +06/28/2017,Sports_celeb,@StephenCurry30,Supporting great cause & want all of the Bay Area comes out 2 watch these guys go low all week! @GSWfoundation does Great work for the Bay! +06/28/2017,Sports_celeb,@StephenCurry30,People asking why I’m playing. Unexpected invite & Always a dream 2 play golf w/ the pros. @WebDotComTour has so much talent it’s unreal. +06/28/2017,Sports_celeb,@StephenCurry30,"Honored to play in the @elliemaeclassic to support the +@gswfoundation! 1st experience inside the ropes! Come on out +@webdotcomtour +@pgatour" +06/27/2017,Sports_celeb,@StephenCurry30,Shout out to @Money23Green for that DPOY award! Well deserved bro! https://t.co/UUUGwu61dX +06/25/2017,Sports_celeb,@StephenCurry30,Game! Blouses! @JordanSpieth with the hole-out from the bunker to win it! Congrats bro +06/22/2017,Sports_celeb,@StephenCurry30,"Welcome to the @UABasketball family Josh! Excited to have you on the squad. You don't need it but, good luck tomorr… https://t.co/Ckvr05AnrE" +06/20/2017,Sports_celeb,@StephenCurry30,"""We gon be Shampionship!"" https://t.co/nHQgI4rfyP" +06/20/2017,Sports_celeb,@StephenCurry30,"Week old but man, still everything! #dubnation https://t.co/Gq926MMitx" +06/19/2017,Sports_celeb,@StephenCurry30,".@andre + I just announced the launch of the first The Players Technology Summit, presented by Bloomberg.… https://t.co/UXATnUWSCB" +06/19/2017,Sports_celeb,@StephenCurry30,Lost art! Don’t rush the development https://t.co/HIKWc6kArb +06/18/2017,Sports_celeb,@StephenCurry30,RT @bryantabarr: Mood. #WardKovalev2 #TeamSOG https://t.co/5c1HYk3l4P +06/15/2017,Sports_celeb,@StephenCurry30,And we Back! https://t.co/HQjjumvJb2 +06/14/2017,Sports_celeb,@StephenCurry30,#DubNation https://t.co/tY0eZODep5 +06/13/2017,Sports_celeb,@StephenCurry30,RT @andre: Shot out to P McCaw... man that ninja nice!!!! +06/13/2017,Sports_celeb,@StephenCurry30,Glory to God! https://t.co/5nlTXUObqp +06/13/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/10/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/08/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/05/2017,Sports_celeb,@StephenCurry30,"RT @scott_fowler: If you're @DavidsonWildcat fan, congrats -- you're having a heckuva moment/week/month! @dcbaseball_ @StephenCurry30 https…" +06/02/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +05/07/2017,Sports_celeb,@StephenCurry30,"Celebrating the Champ, congrats @anthonyfjoshua! #IWILL https://t.co/KtL1K6ASr5" +05/07/2017,Sports_celeb,@StephenCurry30,Lock in! #DubNation +06/27/2018,Sports_celeb,@AntDavis23,NOLA! You're up next. Spots are going quickly for my camp July 30th and 31st. Sign up now at https://t.co/X61ECIXLHO https://t.co/kdBkzLFdIx +06/23/2018,Sports_celeb,@AntDavis23,It’s been 6 years since I heard my name called in the NBA Draft. So here’s 6 tips for all the rookies who just got… https://t.co/YJEDEbPVTB +06/23/2018,Sports_celeb,@AntDavis23,🏀☀️ #GoHoopDay https://t.co/6SNHvX50ao +06/21/2018,Sports_celeb,@AntDavis23,Shout out to all the draftees tonight. Enjoy the ride! #TBT #NBADraft https://t.co/FY4HcubfLN +06/19/2018,Sports_celeb,@AntDavis23,Felt great to be back in Kentucky last weekend. Can't wait to do it again in New Orleans next month! Sign up at… https://t.co/onUS6YIAZU +06/15/2018,Sports_celeb,@AntDavis23,@MiaPulliam @Floyds99 I did not get a cut there. Just checked out the mural. +06/12/2018,Sports_celeb,@AntDavis23,Had a great time with the kids in Chicago last weekend. Can’t wait to do it again at camp this weekend in Lexington… https://t.co/QOknAu0fX8 +06/08/2018,Sports_celeb,@AntDavis23,Lexington! We're one week away from camp. Have you signed up yet? https://t.co/X61ECIXLHO https://t.co/zbu1CbXkiW +06/06/2018,Sports_celeb,@AntDavis23,Got to check out @SuperflyMovie last night. Go see it June 13th! https://t.co/kAV1k7WRpR +06/05/2018,Sports_celeb,@AntDavis23,"I’m bring my A-game to camp, are you? Register at https://t.co/X61ECIXLHO https://t.co/tgtS6caeM0" +06/01/2018,Sports_celeb,@AntDavis23,RT @AntDavis23: LEXINGTON KENTUCKY!! Spots are going quick for my camp on June 15th-16th! Make sure you sign up soon at https://t.co/X61ECI… +05/24/2018,Sports_celeb,@AntDavis23,LEXINGTON KENTUCKY!! Spots are going quick for my camp on June 15th-16th! Make sure you sign up soon at… https://t.co/cNjmXZvGGI +05/22/2018,Sports_celeb,@AntDavis23,Congrats to my lil bro @romeo_weems_0 on rocking with DePaul and Tim Anderson. #family #Trendsetter +05/22/2018,Sports_celeb,@AntDavis23,Calling all kids in NOLA and Lexington!! Who wants to put in work with me? Happy to announce registration for my ca… https://t.co/w64bEvu4wT +05/14/2018,Sports_celeb,@AntDavis23,Me and @Mobil1 Annual Protection under your hood?! Now that is protection! #Go20K #Mobil1 https://t.co/dx0R83s44h +05/11/2018,Sports_celeb,@AntDavis23,Thank you @PelicansNBA fans for riding with us all year. We'll be back. https://t.co/2RHACbeP6u +04/22/2018,Sports_celeb,@AntDavis23,On to the next. #DoItBigger https://t.co/5jrtbgZmV1 +04/18/2018,Sports_celeb,@AntDavis23,Bringing it back home. https://t.co/69eXGYRscp +04/18/2018,Sports_celeb,@AntDavis23,Nice pass AD!!! Lol https://t.co/qwCCXNTaRk +04/11/2018,Sports_celeb,@AntDavis23,Game 82....Make em all count! #DoItBigger https://t.co/ec39gyqJm9 +04/03/2018,Sports_celeb,@AntDavis23,Pumped to be a new member of the @Mobil1 team! We’ve got some great stuff coming your way so stay tuned to see why… https://t.co/iW0V2Aky6H +04/01/2018,Sports_celeb,@AntDavis23,Come on y'all!! Y'all knew I wasn't cutting it lol. #AprilFools We got ya!! @redbull https://t.co/l4H63aOEAW +03/31/2018,Sports_celeb,@AntDavis23,"The people have spoken, time for a little change... https://t.co/i5GiGdMei9" +03/28/2018,Sports_celeb,@AntDavis23,Should I shave my brow? +03/21/2018,Sports_celeb,@AntDavis23,Some Wednesday Brow-ketology: Sorry Sister Jean… Kansas State.. and Nevada.. 8 championships > 0. See you in the Fi… https://t.co/CHi2IrSlGD +03/16/2018,Sports_celeb,@AntDavis23,Incredibly sad news yesterday to hear of the passing of Mr Benson. Mr Benson has meant so much to this city & to my… https://t.co/DU9gdOvW6w +03/15/2018,Sports_celeb,@AntDavis23,It's Tourney Time....#BBN 🔵 https://t.co/9wujPn7jP3 +03/14/2018,Sports_celeb,@AntDavis23,Let me teach yall a thing or two about cutting down those nets…Let’s goo @KentuckyMBB #BBN @redbull #GivesYouWings https://t.co/xnKvij2Y4J +03/06/2018,Sports_celeb,@AntDavis23,the WHOLE squad up in here 💯 #DoItBig https://t.co/eHQwNzi18X +02/28/2018,Sports_celeb,@AntDavis23,I probably should have noticed that the maintenance guy was 6'9... #gotme @redbull https://t.co/g64PuMaxNT +02/21/2018,Sports_celeb,@AntDavis23,"If you gonna get pranked, may as well be by a Hall of Famer! My man @TheDeliverer_32 still got it! Gonna have to ge… https://t.co/OtUxVWQL81" +02/20/2018,Sports_celeb,@AntDavis23,"Not every network can keep up. But this weekend, we played ball in 5G… and it actually worked. @Verizon did not dis… https://t.co/airUtbvIaz" +02/19/2018,Sports_celeb,@AntDavis23,RT @NBAAllStar: #AnthonyDavis on wearing #DeMarcusCouins #NBAAllStar uni! https://t.co/P0m5guCN4b +02/18/2018,Sports_celeb,@AntDavis23,"A little trip down memory lane....Looking forward to tonight! +@RedBull #Givesyouwings https://t.co/E7uplpygP9" +02/18/2018,Sports_celeb,@AntDavis23,.@marriottrewards is offering epic experiences to #NBAAllStar – check it out: https://t.co/J3hosOD20N #membersgetit… https://t.co/LKkVJ7ZnAt +02/17/2018,Sports_celeb,@AntDavis23,Y’all got room for one more tonight?? 😂 #givesyouwings https://t.co/VbyayWRHiK +02/16/2018,Sports_celeb,@AntDavis23,Out here with @nbacares at LA Food Bank! https://t.co/2LPtoztHVf +02/14/2018,Sports_celeb,@AntDavis23,Who needs relationship advice this #ValentinesDay? The Master of Rejection is here to assist you in the game of lov… https://t.co/Z2TtUKxKjc +02/13/2018,Sports_celeb,@AntDavis23,Create the position that can’t be defined. #MakersOfTheGame https://t.co/hXA1xQ5EqW +02/04/2018,Sports_celeb,@AntDavis23,Who you got?? #SBLII +01/31/2018,Sports_celeb,@AntDavis23,Looking forward to meeting some @spg members at #NBAAllStar Check it out https://t.co/alrJTUVYSL +01/27/2018,Sports_celeb,@AntDavis23,My dawg!! Tough to see bro but I know you gonna come back stronger than ever. We gone hold it down for you!! #Pels… https://t.co/gjpKTYz5iH +01/24/2018,Sports_celeb,@AntDavis23,I'm Batman 😂😂 @SLAMonline https://t.co/9SsYUrezP3 +01/24/2018,Sports_celeb,@AntDavis23,"RT @SLAMonline: ⚜️ SLAM 214 is coming live from NOLA ⚜️ + +AD and Boogie got that work: https://t.co/PeCB14aF03 https://t.co/KccWFtpipx" +01/23/2018,Sports_celeb,@AntDavis23,My dawg!!!! https://t.co/WWiLL20bQH +01/19/2018,Sports_celeb,@AntDavis23,Humbled and blessed! Appreciate all the votes and support. Can't wait to suit up with my guy @boogiecousins and re… https://t.co/7ZxlarV8Pc +01/17/2018,Sports_celeb,@AntDavis23,Welcome to Scandyland!! https://t.co/FrWboyxX1n +01/15/2018,Sports_celeb,@AntDavis23,RT @TheNBPA: I Have A Dream. #PlayersVoice #MLK50 https://t.co/qDqu7xTYUc +01/15/2018,Sports_celeb,@AntDavis23,After hours at Il Mulino...... https://t.co/BXu4gjDdHL +01/04/2018,Sports_celeb,@AntDavis23,🔥🔥🔥 https://t.co/xYNRFBlcyd +12/28/2017,Sports_celeb,@AntDavis23,#25 https://t.co/edbep6BT0Z +12/26/2017,Sports_celeb,@AntDavis23,Hey NOLA! Christmas isn’t over just yet! I have a pair of tix to our home game tomorrow night vs the Nets to gift t… https://t.co/kWjvUCrtrW +12/26/2017,Sports_celeb,@AntDavis23,Merry Christmas yall!! 🎄 +12/24/2017,Sports_celeb,@AntDavis23,Squad! 🤘🏽🤘🏽 https://t.co/kD5hG8WInp +12/23/2017,Sports_celeb,@AntDavis23,"Since @boogiecousins, @rajonrondo, @DMillerKY & I will be out of town, @KentuckyMBB and @UKCoachCalipari are gonna… https://t.co/0m8z5nfi0j" +12/20/2017,Sports_celeb,@AntDavis23,I wanna hear about the work you’re doing in your communities this holiday season! Reply to this post and tell me ho… https://t.co/ddsVCxXZCz +12/18/2017,Sports_celeb,@AntDavis23,"As a @JrNBA Leadership Council Member, I’m excited to see kids from around the world compete in the… https://t.co/Bwt6gySHcD" +12/13/2017,Sports_celeb,@AntDavis23,My 4th annual holiday shopping spree!!🎄🎁🎅🏾 #SeasonOfGiving #Blessed https://t.co/M1qqDJhgfF +12/12/2017,Sports_celeb,@AntDavis23,Amazing feeling to be able to share some blessings this #SeasonOfGiving https://t.co/ANTyOpFU02 +11/27/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: From the Southside of Chicago, to the University of Kentucky, to the NBA draft at 19, we find out what drives @AntDavis23.…" +11/26/2017,Sports_celeb,@AntDavis23,Proud to support @footlocker and their #GreatnessDoesGood campaign! Support the cause and make a shoe donation at y… https://t.co/e0mB37mYVN +11/23/2017,Sports_celeb,@AntDavis23,Thankful! 🙏🏾 +11/22/2017,Sports_celeb,@AntDavis23,Check out my episode of Tanked this Friday at 9PM on @AnimalPlanet! 🐟🐠 https://t.co/SwszHUgW9w +11/21/2017,Sports_celeb,@AntDavis23,"Here’s to big, easy buckets… #givesyouwings https://t.co/uHxIazasWA" +11/20/2017,Sports_celeb,@AntDavis23,Truly blessed to be able to host my 5th Annual Thanksgiving Dinner last night with my family at the @NOLAMission 🦃🙏🏾 https://t.co/5lEcsfcRPp +11/15/2017,Sports_celeb,@AntDavis23,Who's coming out to Superhero Night at @SmoothieKingCtr tonight?? Gotta #DoItBig https://t.co/WRdlPHKfBi +11/15/2017,Sports_celeb,@AntDavis23,Y'all already know!!! #BBN #UK #RoadTo9 https://t.co/SpXYRf8mQZ +11/11/2017,Sports_celeb,@AntDavis23,Salute! #VeteransDay https://t.co/8qIIpyg6kp +11/10/2017,Sports_celeb,@AntDavis23,@jmiketaylor @KentuckyMBB Seriously! Lol +11/10/2017,Sports_celeb,@AntDavis23,"My @KentuckyMBB ticket finally came in the mail😂😂😂 + +Let's get it fellas! #BBN https://t.co/Q4zZfz3K6g" +11/10/2017,Sports_celeb,@AntDavis23,Let's go @KentuckyMBB!! It all starts tonight #BBN +11/09/2017,Sports_celeb,@AntDavis23,Good times out here in Toronto at @saks! Thanks for having me 🙏🏾 https://t.co/y282C7oABP +11/03/2017,Sports_celeb,@AntDavis23,Good times seeing @DaddysHome. Check it out when it hits theaters Nov. 10th #DaddysHome2 https://t.co/l3QYenVehG +10/31/2017,Sports_celeb,@AntDavis23,Happy Halloween! @nikebasketball https://t.co/u7Gll2Xc6A +10/29/2017,Sports_celeb,@AntDavis23,Getting into the Halloween spirit. @nikebasketball https://t.co/4mtxLhsHHu +10/20/2017,Sports_celeb,@AntDavis23,Home opener tonight NOLA!! #DoItBig +10/19/2017,Sports_celeb,@AntDavis23,See you next year at the Anthony Davis Basketball Camp @nikebasketball https://t.co/OEBpsPg2oL +10/18/2017,Sports_celeb,@AntDavis23,Finally that game day mood #DoItBig https://t.co/b83KsxUhAD +10/18/2017,Sports_celeb,@AntDavis23,RT @AntDavis23: NOLA! Who's hyped for the season? Tweet a pic in your Pelicans gear & post using #ADsTix to enter to win THESE TIX to home… +10/18/2017,Sports_celeb,@AntDavis23,Prayers going out to Gordon Hayward!!! +10/17/2017,Sports_celeb,@AntDavis23,Ready to #DoItBig https://t.co/bSOZfEFyHG +10/17/2017,Sports_celeb,@AntDavis23,New Orleans has become my second home @nikebasketball https://t.co/E5wbVjGSQj +10/16/2017,Sports_celeb,@AntDavis23,NOLA! Who's hyped for the season? Tweet a pic in your Pelicans gear & post using #ADsTix to enter to win THESE TIX… https://t.co/uOQCE5xTLC +10/16/2017,Sports_celeb,@AntDavis23,Shout out to the #USWNT. Looking forward to seeing you play at the Superdome on Thursday https://t.co/QFPaJWQULv +10/13/2017,Sports_celeb,@AntDavis23,Sportsmanship. Respect. Teamwork. The core values of the @JrNBA! Learn more and get involved at… https://t.co/R5W69RRGXp +10/12/2017,Sports_celeb,@AntDavis23,"I always wanted to start my own camp, this year I got the chance @nikebasketball https://t.co/KtFn4ZWegP" +10/03/2017,Sports_celeb,@AntDavis23,"We been workin hard!! Ready for the first preseason game tonight, let's get it #DoItBig https://t.co/nVjBya5pd3" +09/29/2017,Sports_celeb,@AntDavis23,Soar over the opposition. Tap into the game. @nikebasketball https://t.co/SjpL0zMU8r +09/25/2017,Sports_celeb,@AntDavis23,👀 https://t.co/4GHKyJsJcV +09/25/2017,Sports_celeb,@AntDavis23,Back to work! #PelicansMediaDay +09/18/2017,Sports_celeb,@AntDavis23,T-1 month!! #DoItBig https://t.co/0V0IYA02RX +09/17/2017,Sports_celeb,@AntDavis23,@boogiecousins 😂😂😂😂😂 🤷🏽‍♂️ #round13 +09/15/2017,Sports_celeb,@AntDavis23,"Who else picked up Destiny 2? NOLA hit me up, I’m trying to put in some work. #Destiny2Partner" +09/10/2017,Sports_celeb,@AntDavis23,https://t.co/9Uhsa745Ur +09/08/2017,Sports_celeb,@AntDavis23,Who's hyped for the season to start!? We are. #DoItBig @PelicansNBA https://t.co/whIx31IG3C +08/27/2017,Sports_celeb,@AntDavis23,The main event! Who you got?? +08/26/2017,Sports_celeb,@AntDavis23,#NationalDogDay https://t.co/xIDydQo0xq +08/26/2017,Sports_celeb,@AntDavis23,Felt great to be back! #BBN https://t.co/rbCKDBxF9e +08/23/2017,Sports_celeb,@AntDavis23,Great time with the fellas man. Got some GREAT work in the past couple of days!!! Excited for the season to start.… https://t.co/2IJ0xJjqoA +08/22/2017,Sports_celeb,@AntDavis23,We still doing these #eclipse tweets? No easy buckets!! 😂😂😂 https://t.co/BUH78eMcTP +08/21/2017,Sports_celeb,@AntDavis23,Old stomping grounds!! @PelicansNBA @KentuckyMBB #DoItBig #BBN https://t.co/Fso3T7uedx +08/21/2017,Sports_celeb,@AntDavis23,#BBN https://t.co/79ODiTyBWw +08/21/2017,Sports_celeb,@AntDavis23,RT @kingtone_55: Good lil workout with the homie @AntDavis23 https://t.co/joFAm6jNCA +08/16/2017,Sports_celeb,@AntDavis23,Should I cut my hair back to the waves?? +08/14/2017,Sports_celeb,@AntDavis23,Counting down the days!! #DoItBig https://t.co/HeAkKx8HUp +08/10/2017,Sports_celeb,@AntDavis23,🔥 https://t.co/GA7NoPEalX +08/09/2017,Sports_celeb,@AntDavis23,Camp was a blast!! Thanks to everyone who helped make my first-ever camp a success! https://t.co/Hv3AyBLfos +08/05/2017,Sports_celeb,@AntDavis23,Today! https://t.co/sT32w40SkT +08/03/2017,Sports_celeb,@AntDavis23,"Come through to @dicks this Sat for camp registration day! Meet the camp coaches, register for my camp & receive a… https://t.co/0JYWRF3wJ2" +07/31/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Why not learn 🏀 from the best? + +Sign up for @AntDavis23 camp today! + +🔗: https://t.co/LwXg2fNY7k + +#ADAllDay https://t.co/No…" +07/27/2017,Sports_celeb,@AntDavis23,We have a love-hate relationship 😂😂😂 #Zues #MansBestFriend https://t.co/d5dYShR2wp +07/27/2017,Sports_celeb,@AntDavis23,NOLA! Sign up at https://t.co/X61ECIXLHO! https://t.co/Yi9inf6iS0 +07/26/2017,Sports_celeb,@AntDavis23,About to kill @QuincyPondexter in uno!! Who want some?? https://t.co/LCIKleYibi +07/23/2017,Sports_celeb,@AntDavis23,Fun night last night checking out @HitmanBodyguard before it hits theaters August 18th! https://t.co/faIYXneBwM +07/21/2017,Sports_celeb,@AntDavis23,Might not want to leave your hoops out..... we coming for em!! #DriveByDunkChallenge #GivesYouWings https://t.co/oeBoW4lzNs +07/17/2017,Sports_celeb,@AntDavis23,Sign up for my camp today! Spots are going fast...Register at https://t.co/X61ECIGaQg https://t.co/cdJ3sBybsQ +07/11/2017,Sports_celeb,@AntDavis23,Grind never stops! https://t.co/yqon76sE8m +07/10/2017,Sports_celeb,@AntDavis23,NOLA KIDS! Have you signed up for my camp yet? Hope to see you there August 7th and 8th! Register at… https://t.co/TVPDcclhec +07/07/2017,Sports_celeb,@AntDavis23,New Orleans it's finally here!!! Come get some work in with me August 7th and 8th. Register now!!! #BeGreat https://t.co/JRgm1TYw3P +07/04/2017,Sports_celeb,@AntDavis23,Happy Independence Day! 🎆🇺🇸 +06/22/2017,Sports_celeb,@AntDavis23,Can't believe it's been 5 years! Good luck to all the guys whose lives are about to change forever #NBADraft #TBT https://t.co/B5YiiIdMZ6 +06/21/2017,Sports_celeb,@AntDavis23,"Toss out that big board, the real draft prospect grades are in #BBN #NBADraft https://t.co/AzAmqXZb37" +06/21/2017,Sports_celeb,@AntDavis23,Checked out @BabyDriverMovie tonight before it hits theaters June 28th! Dope movie https://t.co/KPD4iptaBY +06/19/2017,Sports_celeb,@AntDavis23,RT @SInow: Going shopping with @AntDavis23 and picking up some of his fashion tips 👔 https://t.co/lvtC1kUBjp https://t.co/4EcPzXNChC +06/18/2017,Sports_celeb,@AntDavis23,Dad’s coming in hot on #fathersday @redbull #givesyouwings https://t.co/iYxctnlGsH +06/15/2017,Sports_celeb,@AntDavis23,"Food, movie and sleep!!! That's my day today! What are some good movies to watch!?" +06/08/2017,Sports_celeb,@AntDavis23,Looking good in that Pelicans jersey Jimmy! https://t.co/zibZo3TWhm +06/08/2017,Sports_celeb,@AntDavis23,Had a blast last night! Thanks for having me @JimmyKimmelLive https://t.co/93X3JZxRlX +06/08/2017,Sports_celeb,@AntDavis23,RT @JimmyKimmelLive: Backstage at #Kimmel with @AntDavis23 #Pelicans https://t.co/HfwiQsMDwj +06/08/2017,Sports_celeb,@AntDavis23,Check me out tonight on @JimmyKimmelLive! 💯 +05/29/2017,Sports_celeb,@AntDavis23,"RT @NBA: We remember our fallen heroes that gave the ultimate sacrifice 🇺🇸. + +Happy #MemorialDay https://t.co/VOmO8aBJCT" +05/28/2017,Sports_celeb,@AntDavis23,"Remember I said this. I, Anthony Davis, will beat @RandallTime in Madden 21-0 in the first quarter!!!" +05/19/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: #FlashbackFriday + +A look back at @AntDavis23's First-Team All @NBA season! #Pelicans https://t.co/wRemBLLYJV" +05/14/2017,Sports_celeb,@AntDavis23,Happy Mother's Day to all the moms out there!! +05/14/2017,Sports_celeb,@AntDavis23,RT @ghetto: A pool with a glass bottom. I wouldn't even think about stepping a foot in that https://t.co/qRrM4rIBVz +05/08/2017,Sports_celeb,@AntDavis23,RT @kg_ugk: @AntDavis23 Thanks for the kicks out here flying like you https://t.co/RvPnj49NF6 +05/05/2017,Sports_celeb,@AntDavis23,RT @SPACEdotcom: Happy #NationalSpaceDay from @AntDavis23 😝 https://t.co/jKKX2Pm3ex +04/25/2017,Sports_celeb,@AntDavis23,@JenBeauvais That's awesome!! Tell hi yes I'll play. +04/25/2017,Sports_celeb,@AntDavis23,RT @JenBeauvais: @AntDavis23 my son is a huge fan. He wants to know if you'll play him in basketball 🏀 https://t.co/HD37YtTdaE +04/10/2017,Sports_celeb,@AntDavis23,#NationalSiblingsDay https://t.co/VNtuOrOT19 +03/31/2017,Sports_celeb,@AntDavis23,I saw @GhostInShell tonight! Comes out tomorrow 💯 https://t.co/kmn2Jzr1ok +03/25/2017,Sports_celeb,@AntDavis23,Who said there's no perfect brackets left? https://t.co/MUTokJ6yvw +03/21/2017,Sports_celeb,@AntDavis23,#BBN for life!! https://t.co/QdqddNXAiH +03/17/2017,Sports_celeb,@AntDavis23,#FBF Let's start dancing tonight @KentuckyMBB #BBN #GoBigBlue https://t.co/AIphxBUSGG +03/17/2017,Sports_celeb,@AntDavis23,.@ThePowerRangers was dope! Go check it out March 24 #TogetherWeAreMore #PowerRangersMovie https://t.co/0blBzNb4ti +03/16/2017,Sports_celeb,@AntDavis23,My Kentucky Super Team is staaacked. Who would you have in your starting 5? https://t.co/dWNBpvGKo0 +03/16/2017,Sports_celeb,@AntDavis23,"Hey @PelicansNBA fans, come through! https://t.co/DPoD81WIAS" +03/14/2017,Sports_celeb,@AntDavis23,Checked out @LifeMovie tonight before it hits theaters March 24th! #LIFEmovie https://t.co/VCMlRandHd +03/13/2017,Sports_celeb,@AntDavis23,Perfect bracket https://t.co/0riPQRC2wc +03/12/2017,Sports_celeb,@AntDavis23,KENTUCKY! Go support #BBN in the tourney & use code BROW for $20 back on @SeatGeek tix -> https://t.co/K1sKmSlsjt #selectionsunday #sp +03/12/2017,Sports_celeb,@AntDavis23,#BBN +03/08/2017,Sports_celeb,@AntDavis23,That's a good looking bobblehead!!! lol https://t.co/rGLDK9WZ4S +02/28/2017,Sports_celeb,@AntDavis23,Happy Mardi Gras from your boys! https://t.co/GsIdfsfbVT +02/28/2017,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Happy #MardiGras! + +@AntDavis23 #Pelicans https://t.co/bEKncq2a6y" +02/24/2017,Sports_celeb,@AntDavis23,Had fun meeting the fans over All Star Weekend! https://t.co/r80OXKPhSF +02/23/2017,Sports_celeb,@AntDavis23,Welcome my big brother @boogiecousins to NOLA #FireAndIce https://t.co/mlkB0hjoyy +02/21/2017,Sports_celeb,@AntDavis23,AllStar fashion game on point!! @GQMagazine @alexreside https://t.co/iTMWVpzX9B +02/20/2017,Sports_celeb,@AntDavis23,This is for NOLA https://t.co/e291PU5axI +02/19/2017,Sports_celeb,@AntDavis23,Who's ready?? #NBAAllStar Saturday night! +02/18/2017,Sports_celeb,@AntDavis23,🙏🏾 https://t.co/T53X6IBVv8 +02/17/2017,Sports_celeb,@AntDavis23,RT @russwest44: The Joy of helping #nbacares #whynot https://t.co/7JeUHJgtHl +02/17/2017,Sports_celeb,@AntDavis23,RT @PelicansNBA: .@AntDavis23 and @russwest44 working with @nbacares visiting locals impacted by the recent tornados https://t.co/4MoWQqhry1 +02/17/2017,Sports_celeb,@AntDavis23,Step up your emoji game #AnthonyDavis https://t.co/2gPRng8XAg +02/17/2017,Sports_celeb,@AntDavis23,Thanks for a great event and a good time New Orleans! #RedBullReign @redbull https://t.co/EXJsHN8UTh +02/16/2017,Sports_celeb,@AntDavis23,Come meet me at @DICKS today #NOLA @shopatlakeside at 7:30p! https://t.co/fpjoWGxqWK +02/16/2017,Sports_celeb,@AntDavis23,#NBAAllStar weekend has begun! https://t.co/lam6TMpFAs +02/16/2017,Sports_celeb,@AntDavis23,"New Orleans! It happens today, see everyone at Joe W. Brown Park for #RedBullReign @redbull https://t.co/MXC7kK9sAX" +02/15/2017,Sports_celeb,@AntDavis23,"RT @TheNBPA: .@AntDavis23: My NOLA + +The Host of All-Star Weekend on His Special Connection to the City, Now in His Fifth Year -- https://t.…" +02/14/2017,Sports_celeb,@AntDavis23,#Equality https://t.co/QkXrWuwqgC +02/11/2017,Sports_celeb,@AntDavis23,RT @Timfraz23: 4 hour flight<<<< +02/11/2017,Sports_celeb,@AntDavis23,"RT @Timfraz23: ""I wonder if Tim remembers that I still owe him money"" 😂😂😂 @AntDavis23 https://t.co/byptDSZth6" +02/10/2017,Sports_celeb,@AntDavis23,I got you! https://t.co/ff73PdDyEi +02/03/2017,Sports_celeb,@AntDavis23,Big men gonna get it again! #Back2Back https://t.co/ozus9xcs7y +01/30/2017,Sports_celeb,@AntDavis23,Had the chance to see @JohnWickMovie. It's in theaters February 10th! #JohnWick2 https://t.co/yoV9Rzub4E +01/27/2017,Sports_celeb,@AntDavis23,"RT @BleacherReport: We're taking you back in the day with the @NikeBasketball family. + +From Nike Basketball and B/R, this is #SmallBall. Ne…" +01/20/2017,Sports_celeb,@AntDavis23,Got to check out @xxxMovie a day early before it hits theaters tomorrow! https://t.co/ZaLlLigN9T +01/20/2017,Sports_celeb,@AntDavis23,THANK YOU to the voters! I'm truly honored and can't wait to represent the @PelicansNBA and the city of New Orleans at #NBAAllStar +01/19/2017,Sports_celeb,@AntDavis23,A little BTS from my last @redbull shoot #TBT https://t.co/aJeZELboLp +01/17/2017,Sports_celeb,@AntDavis23,RT @Timfraz23: @AntDavis23 #NBAVOTE +01/17/2017,Sports_celeb,@AntDavis23,@MrCraw4D never was a bears fan +01/16/2017,Sports_celeb,@AntDavis23,Nothing else to say! https://t.co/9JqhaCExtc +01/10/2017,Sports_celeb,@AntDavis23,Kick game strong 💪🏾 https://t.co/vB748Tr2e8 +01/10/2017,Sports_celeb,@AntDavis23,"@redbull lol, thanks fam!" +01/01/2017,Sports_celeb,@AntDavis23,Happy 2017! +12/25/2016,Sports_celeb,@AntDavis23,Merry Christmas! https://t.co/OLpWc8zLXd +12/23/2016,Sports_celeb,@AntDavis23,Blessed to be able to give back this holiday season! #NBACares https://t.co/DrgLrP0Dnf +12/16/2016,Sports_celeb,@AntDavis23,RIP Craig Sager! https://t.co/OfUcsdm3bT +12/14/2016,Sports_celeb,@AntDavis23,RT @redbull: So THAT'S how you go hard in the paint... @AntDavis23 https://t.co/tAibCJJyLu https://t.co/9CtHW0LbF6 +12/13/2016,Sports_celeb,@AntDavis23,"RT @PelicansNBA: .@AntDavis23's view when dunking! + +More @Spectacles snaps 👻: PelicansNBA #Pelicans https://t.co/6GnIfC9KOh" +12/12/2016,Sports_celeb,@AntDavis23,"Back in NOLA...Big game tomorrow night vs GSW, we need the whole city behind us. Retweet for a chance to win 2 tickets on me #WinTheNight" +11/30/2016,Sports_celeb,@AntDavis23,No days off #GivesYouWings https://t.co/3tSyHoef9q +11/24/2016,Sports_celeb,@AntDavis23,Happy Thanksgiving everyone! +11/22/2016,Sports_celeb,@AntDavis23,"RT @PelicansNBA: Bros. +#WinTheNight https://t.co/PU3AjC6p4o" +11/21/2016,Sports_celeb,@AntDavis23,Thankful my family and I had the opportunity to serve Thanksgiving dinner last night at the New Orleans Mission! https://t.co/tERs9X3y4d +11/21/2016,Sports_celeb,@AntDavis23,RT @marciholstein: Another Pels win with a celebratory shot by @AntDavis23 !! @PelicansNBA #flockup #letsgopels https://t.co/VRepLe4rg0 +11/13/2016,Sports_celeb,@AntDavis23,Enjoyed seeing #BleedForThis the other night. Make sure you check it out next Friday! https://t.co/UfkalAyYK0 +11/11/2016,Sports_celeb,@AntDavis23,Thank you Veterans! Appreciate all you do for our country. https://t.co/hyuqW3zVIs +10/31/2016,Sports_celeb,@AntDavis23,RT @PelicansNBA: Do the Tony! @redbull https://t.co/8lgsnQ9v9w +10/28/2016,Sports_celeb,@AntDavis23,#Blocked @SportsCenter https://t.co/BY4yupg6HY +10/28/2016,Sports_celeb,@AntDavis23,"NOLA, we need y'all hyped tonight! If you want to come to the game, I got a pair of tix for you. Just RT for a chance to win. #WinTheNight" +07/01/2018,Sports_celeb,@KarlTowns,"RT @NBAItalia: Si chiude un super #NBACrossover che ha avuto il piacere di avere come stella e ospite d’onore @KarlTowns! + +🙏 Grazie mille a…" +06/30/2018,Sports_celeb,@KarlTowns,"RT @Lamborghini: .@NBPA stars attend @SDABocconi, learning about the iconic branding and super sports car design of Lamborghini. Among them…" +06/29/2018,Sports_celeb,@KarlTowns,@TreyLyles Stuck on emotionless. Like sheesh +06/28/2018,Sports_celeb,@KarlTowns,"RT @TheNBPA: Kids see KAT sometimes. + +#IBA2018 https://t.co/UPlcH47hVA" +06/27/2018,Sports_celeb,@KarlTowns,"Just for clarity, I won this golf tournament as well. @KyleRudolph82 can back this ⛳️🏌🏽‍♂️ https://t.co/hjLlUrSTCE" +06/25/2018,Sports_celeb,@KarlTowns,@Kawahine_ Could be worse I guess 🤷🏽‍♂️ +06/25/2018,Sports_celeb,@KarlTowns,RT @Kawahine_: My boyfriend is naked all over the internet.... welp. +06/25/2018,Sports_celeb,@KarlTowns,😳👀 +06/20/2018,Sports_celeb,@KarlTowns,RT @espn: The 10th annual Body Issue drops June 25 ... and we've got the full roster of athletes right here. https://t.co/1XyfnOBntk +06/20/2018,Sports_celeb,@KarlTowns,"@jojo_6290 I must say, I’m pretty pumped 😁" +06/19/2018,Sports_celeb,@KarlTowns,KENTUCKY also has Kevin Knox.....FYI. #BBN https://t.co/NUcO50E1v3 +06/18/2018,Sports_celeb,@KarlTowns,Senseless. +06/17/2018,Sports_celeb,@KarlTowns,"Happy Father’s Day to all the loving and involved fathers out there, especially mine!" +06/16/2018,Sports_celeb,@KarlTowns,@GopherWBB @Lindsay_13 @Lindsay_13 is special. @GopherWBB hit the lottery. +06/14/2018,Sports_celeb,@KarlTowns,"👀👀👀 @garyvee is up to something....again lol +https://t.co/N6Qt73KM8k" +06/10/2018,Sports_celeb,@KarlTowns,@FloTrack @GoSydGo 🐐🐐🐐 +06/08/2018,Sports_celeb,@KarlTowns,@StJoesMetuchen @Marq_Towne5 @StJoesMetBBall @Marq_Towne5 legend +06/07/2018,Sports_celeb,@KarlTowns,"Whatever the mind of man can conceive and believe, it can achieve." +06/07/2018,Sports_celeb,@KarlTowns,"RT @TheNBPA: (9 of 12). + +The NBPA Most Respected Award + +Respect the O.G. Congrats @mrvincecarter15!! + +@andrewtarcher pays homage to the v…" +06/06/2018,Sports_celeb,@KarlTowns,Never settle for normalcy. +06/06/2018,Sports_celeb,@KarlTowns,RT @MalcolmJenkins: #TheFightContinues https://t.co/QWDdvZgQNL +06/04/2018,Sports_celeb,@KarlTowns,Already spent 6 months in day school.. I for sure don’t want to be in night school!.. Thnx @KevinHart4real 🙄… https://t.co/iS2tiFNrJX +06/04/2018,Sports_celeb,@KarlTowns,RT @NightSchool: You ready for Finals? Meet the new Dream Team. #NightSchool stars @KevinHart4real and @TiffanyHaddish team up with @aldrid… +06/04/2018,Sports_celeb,@KarlTowns,RT @Scott_Charlton: Look at the love between two of my most talented sons. https://t.co/JPhQdS4jE5 +06/04/2018,Sports_celeb,@KarlTowns,RT @AlanGoldsher: The @KevinHart4real / @KarlTowns / @TiffanyHaddish / @DevinBook / @aldridge_12 commercial was arguably the best part of t… +06/01/2018,Sports_celeb,@KarlTowns,@THEwillieCS15 😂😂😂 +06/01/2018,Sports_celeb,@KarlTowns,What will you do to solidify your greatness today? +06/01/2018,Sports_celeb,@KarlTowns,🤔🤔🤔 +05/31/2018,Sports_celeb,@KarlTowns,All love since day 1 ting ✊🏽 https://t.co/6Qa9B1apDP +05/28/2018,Sports_celeb,@KarlTowns,Thank you to all the courageous men and women who provide us with the freedom to chase the American Dream. Thank yo… https://t.co/MvsJNZm1wK +05/28/2018,Sports_celeb,@KarlTowns,Psalm 119:4-5 🙏🏽 +05/27/2018,Sports_celeb,@KarlTowns,“The value of a man should be seen in what he gives and not in what he is able to receive” +05/26/2018,Sports_celeb,@KarlTowns,@DevinBook 🗣🗣🗣 +05/24/2018,Sports_celeb,@KarlTowns,RT @thatnegus_sb: https://t.co/sJqUMtUZIY +05/17/2018,Sports_celeb,@KarlTowns,"Hands on with #BlackOps4 and these MP maps are nice. @swipathefox and I held it down, but we know who is the best.… https://t.co/tGe7qpFv9m" +05/13/2018,Sports_celeb,@KarlTowns,"Happy Mother’s Day to all the beautiful women holding it down not just today, but every day!" +05/13/2018,Sports_celeb,@KarlTowns,Wowwwwww!!!!!! #LinaresLoma +05/13/2018,Sports_celeb,@KarlTowns,It’s go time! #LinaresLoma +05/12/2018,Sports_celeb,@KarlTowns,"Every bucket, every board, starts right here. #GatoradePartner https://t.co/F9MVnCJCg8" +05/11/2018,Sports_celeb,@KarlTowns,Thank you @casper for the gift https://t.co/qJROGBJAlx +05/09/2018,Sports_celeb,@KarlTowns,@NoahJ456 😂😂😂😂😂😂 +05/05/2018,Sports_celeb,@KarlTowns,"A Living Legend. Congrats to Dominican Republic’s Finest and my favorite baseball player @PujolsFive on 3,000 Hits.… https://t.co/DMHgXxcvXS" +05/05/2018,Sports_celeb,@KarlTowns,Looking forward to meeting some young @Timberwolves fans this July at my annual Youth 🏀 @ProCamps! Click 👇 for more… https://t.co/tCBywxPMWa +05/03/2018,Sports_celeb,@KarlTowns,"RT @Gatorade: The competition is over. #GStatus goes to @KarlTowns 👏. For his hustle and @jaytatum0’s in the NBA Playoffs, we’re donating $…" +04/30/2018,Sports_celeb,@KarlTowns,HBD Legend 💵💵💵 https://t.co/8rGdbsc0so +04/29/2018,Sports_celeb,@KarlTowns,"@STMAGBB @Timberwolves @JCrossover The man, the myth, the legend @JCrossover" +04/28/2018,Sports_celeb,@KarlTowns,@DrizoBeats @Bengals BIG TIME!!! +04/24/2018,Sports_celeb,@KarlTowns,Welcome home @MeekMill ✊🏽✊🏽✊🏽 +04/20/2018,Sports_celeb,@KarlTowns,@Kawahine_ You deserve it. Your 1/1 ❤️ +04/17/2018,Sports_celeb,@KarlTowns,"@Profgampo 🤫🤫🤫. They’re not ready for all that sauce yet. + +P.S. “No” and “Minneapolis” are my favorite tracks on #PookieBaby 👍🏽" +04/17/2018,Sports_celeb,@KarlTowns,"So @BodegaBAMZ and @jimjonescapo blessed us last week, and now @JColeNC wants to bless us this week. WHOLE LOTTA BLESSINGS GOING AROUND!" +04/15/2018,Sports_celeb,@KarlTowns,@RealJohnGray @OWNTV @Oprah @Grayceeme @Oprah @RealJohnGray @Grayceeme Time and Place! Free lessons for @OWNTV +04/14/2018,Sports_celeb,@KarlTowns,"✅ Positive Energy +❌ Negative Energy" +04/13/2018,Sports_celeb,@KarlTowns,"@Gatorade @jaytatum0 It’s on. This year I’m earning my #Gstatus #GatoradePartner +u!!" +04/12/2018,Sports_celeb,@KarlTowns,My road to the #NBAPlayoffs started on the court my dad built me by hand. Rewind it back with me. #GatoradePartner https://t.co/aylahMcAXK +04/12/2018,Sports_celeb,@KarlTowns,RT @JonKrawczynski: https://t.co/YC4XAT7Kka +04/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: WE BACK. + +PLAYOFFS. #AllEyesNorth https://t.co/2yY2uVRgTW" +04/12/2018,Sports_celeb,@KarlTowns,#AllEyesNorth +04/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: The lights get brighter. +The pressure gets tighter. + +We're back. #AllEyesNorth https://t.co/3Wq2XW4lFl" +04/09/2018,Sports_celeb,@KarlTowns,Spread Love ❤️ +04/09/2018,Sports_celeb,@KarlTowns,Amazing day streaming and playing @FortniteGame with you guys! Join me on discord at https://t.co/TOL6qn0DxJ and be part of the community 🦁 +04/09/2018,Sports_celeb,@KarlTowns,@Matty__W My bad fam 😂 +04/08/2018,Sports_celeb,@KarlTowns,L I V E ! https://t.co/iDk5mwrXUW +04/07/2018,Sports_celeb,@KarlTowns,@UKCoachCalipari I BEEN TELLING YOU THIS! 😂 +04/04/2018,Sports_celeb,@KarlTowns,@NoahJ456 .......... +04/04/2018,Sports_celeb,@KarlTowns,Sending my thoughts and prayers to everyone @YouTube 🙏🏽🙏🏽🙏🏽 +04/03/2018,Sports_celeb,@KarlTowns,Amazing stream tonight with @BenSimmons25 playing @PUBATTLEGROUNDS. Hope you guys enjoyed it and S/O to @OpTic7Teen… https://t.co/mjex7c9ZIP +04/03/2018,Sports_celeb,@KarlTowns,RT @DMiranda04: all i know is @KarlTowns would never leave me like @BenSimmons25 just did https://t.co/wOfQjHY0ZQ +04/03/2018,Sports_celeb,@KarlTowns,"@PUBATTLEGROUNDS, we need assistance!!!! Custom game needed for @BenSimmons25 and I. THE FANS WANT TO PLAY!!!" +04/03/2018,Sports_celeb,@KarlTowns,"About to stream some @FortniteGame on Twitch! Join the fun at https://t.co/MOjyzIhNzj and while you’re at it, join… https://t.co/a1GD5LcO8f" +04/01/2018,Sports_celeb,@KarlTowns,Happy Easter! Hope today is full of love and blessings for everyone. +04/01/2018,Sports_celeb,@KarlTowns,"An amazing effort and season by @RamblersMBB. To my brother @Marq_Towne5, you couldn’t have made me any prouder. Go… https://t.co/Fu5gRCFngk" +03/31/2018,Sports_celeb,@KarlTowns,LETSSSS GOOOOO @RamblersMBB!!! ONE MORE HALF! +03/31/2018,Sports_celeb,@KarlTowns,You know I’m rocking with @Marq_Towne5 and @RamblersMBB. LETS GET THIS W! +03/29/2018,Sports_celeb,@KarlTowns,Soooooo @Kawahine_ can I play PUBG??? +03/27/2018,Sports_celeb,@KarlTowns,Control Your Happiness. +03/26/2018,Sports_celeb,@KarlTowns,RT @The_Fourth_Wade: I don’t get these phrases/articles coming out that @Marq_Towne5 was overlooked. Y’all the ones that overlooked it! Y’a… +03/26/2018,Sports_celeb,@KarlTowns,Prayers out to Zeke Upshaw’s family 🙏🏽🙏🏽🙏🏽 +03/23/2018,Sports_celeb,@KarlTowns,"RT @ChrisRyan_NJ: Karl-Anthony Towns: 1st overall pick in 2015 NBA Draft +Wade Baldwin: 17th overall pick in 2016 +Marques Townes: Just put L…" +03/23/2018,Sports_celeb,@KarlTowns,@Marq_Towne5= LOYOLA LEGEND +03/22/2018,Sports_celeb,@KarlTowns,😂😂😂 @Kawahine_ https://t.co/GRNNUO5BJP +03/17/2018,Sports_celeb,@KarlTowns,@KentuckyMBB 🐇🐇🐇 +03/16/2018,Sports_celeb,@KarlTowns,Make each day your masterpiece. +03/15/2018,Sports_celeb,@KarlTowns,Let’s go @Marq_Towne5!!! +03/15/2018,Sports_celeb,@KarlTowns,Had some fun answering the questions you guys have been asking me. Part 2 coming soon https://t.co/xI9xU3DkTz +03/15/2018,Sports_celeb,@KarlTowns,Soooooooooo @Logic301......... 🤔 +03/15/2018,Sports_celeb,@KarlTowns,@trvisXX was straight comedy tonight 😂 +03/15/2018,Sports_celeb,@KarlTowns,@Ninja is just different at @FortniteGame than the rest of us. This is a fact 💯 +03/15/2018,Sports_celeb,@KarlTowns,@Ninja and @Drake really got the world in there hands right now 😂 +03/13/2018,Sports_celeb,@KarlTowns,So fresh and so clean w/ those #TidePods 👌 @KyleRudolph82 @Cubfoods https://t.co/8xnP1bIcF3 +03/12/2018,Sports_celeb,@KarlTowns,RT @beatsbydre: Rise to the occasion. @KarlTowns https://t.co/Rm6UZW4WTD +03/12/2018,Sports_celeb,@KarlTowns,😂😂😂 https://t.co/fDqPsXi5db +03/11/2018,Sports_celeb,@KarlTowns,The world is now right. @Kawahine_ has watched The Book of Eli. #SpreadTheWord +03/11/2018,Sports_celeb,@KarlTowns,The fact @Kawahine_ hasn’t seen The Book of Eli is troubling! This must be changed! +03/05/2018,Sports_celeb,@KarlTowns,Be Different! +03/05/2018,Sports_celeb,@KarlTowns,"RT @Nike: .@SerenaWilliams has proven time and time again, there’s no wrong way to be a woman. #UntilWeAllWin https://t.co/aAMZv9IjCW" +03/05/2018,Sports_celeb,@KarlTowns,“If you have only one smile in you give it to the people you love.” -Maya Angelou +03/04/2018,Sports_celeb,@KarlTowns,😱😱😱😱 #WilderOrtiz +02/28/2018,Sports_celeb,@KarlTowns,RT @DevinBook: Aye @UKCoachCalipari can I finally start tonight??? Lol #BBN https://t.co/lMOfwclbm6 +02/28/2018,Sports_celeb,@KarlTowns,@DevinBook @UKCoachCalipari 😂😂😂😂😂 +02/28/2018,Sports_celeb,@KarlTowns,"It’s been a long time coming my brothers, Senior Night is finally upon us 😂 #BBN https://t.co/h3bsoNeXBo" +02/24/2018,Sports_celeb,@KarlTowns,RT @G_Wade05: God’s Plan 🙏🏾‼️ https://t.co/DIp2pY6Z30 +02/23/2018,Sports_celeb,@KarlTowns,"Honestly, this doesn’t shock me at all about the @NCAA. https://t.co/TM2Jn9zIMz" +02/22/2018,Sports_celeb,@KarlTowns,@yung_gravy Woahhhh! (Gravy Voice) +02/22/2018,Sports_celeb,@KarlTowns,Need your guys help making this YouTube video! Send in your questions to have a chance to be part of my Q/A YouTube video. +02/21/2018,Sports_celeb,@KarlTowns,Really proud of my parents foundation. This is big time! https://t.co/JdJm8RDeFJ +02/21/2018,Sports_celeb,@KarlTowns,@yung_gravy Only the real ones are on the gravy train 🍯 +02/21/2018,Sports_celeb,@KarlTowns,RT @nbacares: .@Timberwolves @KarlTowns helps to unload a diaper truck for distribution to families in need at @baby2baby during #NBACares… +02/21/2018,Sports_celeb,@KarlTowns,"Still keeping it NICE @Cubfoods w/ @kylerudolph82 and Calvin 😂😂😂 #MinnesotaNice +https://t.co/hsLGJsgXP7" +02/19/2018,Sports_celeb,@KarlTowns,✌🏾LA. Had a great ASW riding in style with @Lyft and those #FlyWhips. Until next time. #FlyWhip #LyftLA #ad https://t.co/k2GWPaUkSX +02/18/2018,Sports_celeb,@KarlTowns,@JoelEmbiid 😏😏😏 +02/18/2018,Sports_celeb,@KarlTowns,"Told @DwyaneWade, my brotha @DevinBook is a KILLER!!!" +02/18/2018,Sports_celeb,@KarlTowns,Hey @spg members–Use your Starpoints to redeem experiences like bowling with me at #NBAAllStar. Check it out:… https://t.co/to2o86xsd7 +02/17/2018,Sports_celeb,@KarlTowns,I’m ridin’ in style all weekend. Hit @Lyft for a chance to ride in a #FlyWhip like me #ASW #LyftFlyWhip https://t.co/zhvWPdYs5F +02/16/2018,Sports_celeb,@KarlTowns,Don’t miss the chance to kick it with me during NBA All-Star 2018! I’ll be at the #KiaAllStarLoft at 1200 S. Hope Street on Saturday! +02/14/2018,Sports_celeb,@KarlTowns,My prayers go out to all the families affected by today's tragic Florida school shooting. How many more devastating… https://t.co/Mb9LhG6ANY +02/13/2018,Sports_celeb,@KarlTowns,Headed to LA this weekend? Enter to win a Ride Along with me in a @Lyft #FlyWhip during ASW #ad… https://t.co/PLf0Gv0kG4 +02/11/2018,Sports_celeb,@KarlTowns,@BdotAdot5 @DwyaneWade 😂😂😂😂 +02/09/2018,Sports_celeb,@KarlTowns,Check out my official custom @CallOfDuty emblem. #CODWWII #CallofDutyPartner https://t.co/sJgXEsTsgm +02/08/2018,Sports_celeb,@KarlTowns,"Everyone talking about how the Cavs are playing MyGM in real life with force trade on , but I’m here watching the… https://t.co/hiBtS7Jf3L" +02/07/2018,Sports_celeb,@KarlTowns,🦅🦅🦅 https://t.co/8nI4es8t2c +02/07/2018,Sports_celeb,@KarlTowns,"RT @PlayersTribune: ICYMI: Guest photographer @KarlTowns hit the sidelines for the @Eagles #SuperBowl LII win. + +For more of his photos: htt…" +02/07/2018,Sports_celeb,@KarlTowns,This is getting crazy! Prayers all the way up for my guy @kporzee. I know he’s going to come back better than ever. +02/06/2018,Sports_celeb,@KarlTowns,"Play for the front of the jersey, not the back @KentuckyMBB. #EmbraceSacrifice https://t.co/jicNey3fUZ" +02/06/2018,Sports_celeb,@KarlTowns,@GassyMexican Would be my honor to have you at the game @GassyMexican +02/05/2018,Sports_celeb,@KarlTowns,@JonKrawczynski I’m in his head @JonKrawczynski!!!! +02/05/2018,Sports_celeb,@KarlTowns,@JonKrawczynski HE KNOWSSSSSSSSS!!!!! 🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,🦅 talk +02/05/2018,Sports_celeb,@KarlTowns,I don’t think Thibs is ready to hear what I got to say 🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,🦅🦅🦅 +02/05/2018,Sports_celeb,@KarlTowns,Blood pressure it wayyyy too high right now +02/05/2018,Sports_celeb,@KarlTowns,On the sidelines for @PlayersTribune at the #superbowl. #FreeMeekMill https://t.co/T5iyy3JG0W +02/04/2018,Sports_celeb,@KarlTowns,RT @PlayersTribune: DON'T MISS OUR SIDELINE #SUPERBOWL PHOTOGRAPHER @KARLTOWNS'S PICS. HE'S TALLER THAN THE OTHER PHOTOGRAPHERS AND CAN GET… +02/03/2018,Sports_celeb,@KarlTowns,@Swiftor 😂😂😂 +02/02/2018,Sports_celeb,@KarlTowns,RT @SLAMonline: KAT goes Super Saiyan. https://t.co/gbc1mSXr1W +02/01/2018,Sports_celeb,@KarlTowns,RT @verizon: Our Explorer Lab landed at Franklin Middle School for an immersive learning experience and surprise visit from @KarlTowns & @T… +01/31/2018,Sports_celeb,@KarlTowns,"The basketball world lost a good one today. R.I.P. to Rasual Butler, one of the realest people I ever played with.… https://t.co/4l5RIT1RIw" +01/31/2018,Sports_celeb,@KarlTowns,Hey Minneapolis! I'll be @CubFoods Maple Grove on Friday 5-6pm helping fans prep for their SB parties. +01/27/2018,Sports_celeb,@KarlTowns,All prayers up for big fella @boogiecousins 🙏🏽🙏🏽🙏🏽 +01/26/2018,Sports_celeb,@KarlTowns,I see you cuz @The_Fourth_Wade 👀 #family https://t.co/dvIu6hmKSG +01/23/2018,Sports_celeb,@KarlTowns,Thoughts and prayers with everyone in Marshall County 🙏🏽 +01/22/2018,Sports_celeb,@KarlTowns,RT @kobebryant: Getting there wasn’t the goal @Eagles let’s finish the job #focus #superbowl +01/22/2018,Sports_celeb,@KarlTowns,"Congrats Vikings on a great season as well - much love, Minneapolis! But, I gotta go with the Birds, born and bred a fan #FlyEaglesFly 🦅" +01/22/2018,Sports_celeb,@KarlTowns,"Thibs: “Hello...” + +Foles: “Your Next.” https://t.co/ffs3j9PYr0" +01/19/2018,Sports_celeb,@KarlTowns,Helping Calvin keep his 🏈 party 💯 with wings @Cubfoods @KyleRudolph82 #MinnesotaNice https://t.co/8UUGs9I2xu +01/18/2018,Sports_celeb,@KarlTowns,I finally made a @YouTube channel! Check it out for all access to my life on & off the court & more. Subscribe & e… https://t.co/HzwlErqcn0 +01/16/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: RETWEET IF YOU LIKE BBQ CHICKEN! + +@KarlTowns #NBAVOTE https://t.co/Xb5Rfvs4Fx" +01/16/2018,Sports_celeb,@KarlTowns,RT @Teeqo: #NBAVOTE @karltowns +01/16/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Hey Canada, retweet this. 🇨🇦 + +Andrew Wiggins #NBAVote https://t.co/dlv3TPH3IO" +01/15/2018,Sports_celeb,@KarlTowns,"“We must learn to live together as brothers or perish together as fools.” + +Let this day be a reminder to have love… https://t.co/JOVY8VXGeR" +01/14/2018,Sports_celeb,@KarlTowns,RT @NBA2K: RETWEET TO VOTE FOR #TEAM2K'S Devin Booker! There's only 1 Day left to cast your votes! #NBAVote @DevinBook https://t.co/hpiMEzZ… +01/14/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Have you done your part to get the Wolves to the All-Star game today? + +Retweet this to cast an official #NBAVote for @…" +01/14/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Jimmy has some legit reasons to vote KAT into the All-Star Game 😂 + +RT to #NBAVOTE @KarlTowns! https://t.co/8HDbdiERWe" +01/14/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: Only a few days left to #NBAVOTE Jimmy Butler! + +Help get him to the All-Star Game with a RETWEET! https://t.co/d9dDqnk7wY" +01/14/2018,Sports_celeb,@KarlTowns,🦅 +01/13/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Have you done your part to get the Wolves to the All-Star game today? + +Retweet this to cast an official #NBAVote for @…" +01/13/2018,Sports_celeb,@KarlTowns,Words cannot describe the relief my family and I feel that the alarm in Hawaii was false. My girlfriend was born an… https://t.co/FUTqyYCKeF +01/13/2018,Sports_celeb,@KarlTowns,@RyyGaming https://t.co/SM5kDMYB1u +01/13/2018,Sports_celeb,@KarlTowns,@RyyGaming 😂😂😂 +01/13/2018,Sports_celeb,@KarlTowns,@Mike_Mallory33 @Timberwolves You the man ✊🏽 +01/12/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: 500,000 RTS = 500,000 VOTES + +Help send @KarlTowns to the NBA All-Star Game! #NBAVOTE https://t.co/sIVnIwejWg" +01/12/2018,Sports_celeb,@KarlTowns,"RT @RichardBazil: All Dominicans 🇩🇴 want to see @KarlTowns in the NBA All-Star Game, now it's time to send him there. + +#NBAVote + +Today, eac…" +01/12/2018,Sports_celeb,@KarlTowns,RT @Rupp_Arena: RT to vote for @KarlTowns to go to @NBAAllStar! Votes count for DOUBLE today! #NBAVote #BBN https://t.co/hr7HbWGXeO +01/11/2018,Sports_celeb,@KarlTowns,RT @NBA2K: RETWEET TO VOTE FOR #TEAM2K's Karl-Anthony Towns! #NBAVote @KarlTowns https://t.co/ETmINkpnt7 +01/10/2018,Sports_celeb,@KarlTowns,RT @KentuckyMBB: Karl-Anthony Towns #NBAVote https://t.co/S9O651ZWag +01/10/2018,Sports_celeb,@KarlTowns,RT @Scott_Charlton: Offensive foul on Wenyen Gabriel. https://t.co/YIZnwkLoD6 +01/10/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: After last night's performance it's had to envision the All-Star game without @KarlTowns! + +Retweet this to cast an offic…" +01/09/2018,Sports_celeb,@KarlTowns,RT @Timberwolves: TYUS. JUST. DID. THAT. https://t.co/W9HwfLIgy1 +01/09/2018,Sports_celeb,@KarlTowns,@JustinPatton17 ✊🏽✊🏽✊🏽 +01/09/2018,Sports_celeb,@KarlTowns,RT @JustinPatton17: Big bro @KarlTowns has my #NBAvote go head boy!! 🐺 +01/09/2018,Sports_celeb,@KarlTowns,That man @1Tyus cut from a different cloth #AllEyesNorth +01/08/2018,Sports_celeb,@KarlTowns,RT @tweetdavebenz: Get ready for tonight’s Wolves-Cavs tilt by retweeting this to cast your official #NBAVote for @KarlTowns to be in the A… +01/08/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: If you don’t #NBAVOTE for @KarlTowns, you’re taking a big L ⤵️ https://t.co/rzWDZvhjdN" +01/08/2018,Sports_celeb,@KarlTowns,RT @tweetdavebenz: Make Sunday a fun day by retweeting this to cast an official #NBAVote to get @KarlTowns to the All Star game! +01/07/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️⭐️⭐️⭐️⭐️ + +If all our followers retweet this, Jimmy Butler will be in the lead to be the West All-Star Captain! #NBAVOTE…" +01/07/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RETWEET TO #NBAVOTE FOR KARL-ANTHONY TOWNS ⭐️ + +☑️ #1 Overall Draft Pick +☑️ NBA Rookie of the Year +☑️ League leader in…" +01/05/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ KARL-ANTHONY TOWNS #NBAVOTE ⭐️ + +IF YOU CAN READ THIS, RETWEET IT. https://t.co/NQiK7eTN3V" +01/04/2018,Sports_celeb,@KarlTowns,"RT @tweetdavebenz: Don’t let this Thursday slip by without voting @KarlTowns to the All-Star game. + +Retweet this to cast an official #NBA…" +01/03/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: .@KarlTowns customized #NBAKicks throughout this season! Wonder what his All-Star kicks would look like? + +RT so we can f…" +01/02/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RT to vote for @KarlTowns ⭐️ + +#NBAVOTE https://t.co/SrBckQpqnc" +01/02/2018,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ RT to vote for @22wiggins ⭐️ + +#NBAVOTE https://t.co/gt6QXJMDUb" +01/01/2018,Sports_celeb,@KarlTowns,"Happy New Years to everyone! Hope 2018 brings everyone blessings, positivity, and success! God bless!" +01/01/2018,Sports_celeb,@KarlTowns,RT @Timberwolves: Only a few hours left in 2017 and to DOUBLE the vote for your favorite Wolves! 👇👇👇 https://t.co/ZMP2XpZxtC +01/01/2018,Sports_celeb,@KarlTowns,"RT @JCrossover: ""@HoopsYo: @JCrossover What do you think of Tyus' play recently?""--always great. Love him as a teammate! @1Tyus is my guy" +12/31/2017,Sports_celeb,@KarlTowns,"@Realjockwasher @Kickstradomis Lmao Clayton, GO HOME!!! 😂" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @KarlTowns #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/q1WGlOIwrm" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @22wiggins #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/BolNm97BeX" +12/31/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: ⭐️ @JimmyButler #NBAVOTE ⭐️ + +(1 RT = 1 VOTE) https://t.co/iT1DwuyeDs" +12/31/2017,Sports_celeb,@KarlTowns,RT @tweetdavebenz: .@JimmyButler #NBAVote +12/30/2017,Sports_celeb,@KarlTowns,"RT @RanGuy7: @Timberwolves if I can get to 1000 RTs, we can help @KarlTowns become an All-Star and I’ll give him this painting! 1 Retweet =…" +12/30/2017,Sports_celeb,@KarlTowns,"RT @ThisIsMarlena: Used up my last sheet of paper on this watercolor painting of @KarlTowns center for the @Timberwolves #AllEyesNorth + +❄️…" +12/29/2017,Sports_celeb,@KarlTowns,@DevinBook 🔵⚪️ +12/29/2017,Sports_celeb,@KarlTowns,RT @Timberwolves: ⭐️ Retweet to send @KarlTowns to the All-Star Game! #NBAVOTE ⭐️ https://t.co/v9oCIXTdcT +12/28/2017,Sports_celeb,@KarlTowns,"RT @ktjoh: Get out and vote for your favorite @Timberwolves for the All Star Game!!! +Karl-Anthony Towns @KarlTowns #NBAVote #AllEyesNorth…" +12/28/2017,Sports_celeb,@KarlTowns,"RT @Timberwolves: 🚨 VOTE FOR YOUR WOLVES! 🚨 + +⭐️ Tweet/RT/Reply with player’s first & last name or Twitter handle, with the hashtag #NBAVote…" +12/27/2017,Sports_celeb,@KarlTowns,RT @BryGuy3597: We need to get this man in an all star game. RT to send @KarlTowns to the all star game #NBAVote https://t.co/9nMCgnb4LM +12/26/2017,Sports_celeb,@KarlTowns,Hope everyone had a blessed and love filled Christmas. +12/26/2017,Sports_celeb,@KarlTowns,RT @BUZZ1810: @KarlTowns can my lil man get a retweet from his favorite @NBA player on Christmas? He’s lives in NC but pulls for the @Timbe… +12/21/2017,Sports_celeb,@KarlTowns,"RT @SneadsbyRee: I’ve got #my5 @nba @NBAonTNT East and West All Stars! + +Did YOU vote?! https://t.co/esC7dFAzg4" +12/21/2017,Sports_celeb,@KarlTowns,RT @original_kmac: #NBAAllStar voting has started on https://t.co/JXygubat9u- time to start things off with @Timberwolves @KarlTowns leadin… +07/02/2018,Sports_celeb,@JohnWall,RT @BALLisLIFEeast: Patience but I agree 100% https://t.co/yIEeTXsoco +07/01/2018,Sports_celeb,@JohnWall,"RT @TyBigShots: Marquis Rice 2022 6’5 G Team Wall Elite @TeamWallElite @CoachK_Williams @JohnWall , Best Player In His Class By Far , Skill…" +06/30/2018,Sports_celeb,@JohnWall,RT @WashMystics: Thank you @JohnWall for hooking it up! #SummerOfSeparation #5Deep #WallWay #TogetherDC #DCFamily https://t.co/Iq6dDyyHrM +06/30/2018,Sports_celeb,@JohnWall,RT @TyBigShots: One of the nations hottest events rite before July 2018 Live Period #BIGSHOTS @TeamWallGR @TeamWallElite @JohnWall @CoachK… +06/30/2018,Sports_celeb,@JohnWall,My guy RT @UKDeWaynePeevy: Great hanging out and catching up with one of my boys today @JohnWall #lafamilia #weareuk https://t.co/CLbOfRg7P7 +06/25/2018,Sports_celeb,@JohnWall,RT @CoachK_Williams: Building the Brand.... https://t.co/bDVzJ9G8YJ +06/21/2018,Sports_celeb,@JohnWall,"RT @NBATV: Players that @CollinYoungBull compares his game to? + +@JohnWall, @russwest44 and @EBled2. + +More with @treykerby ahead of the 20…" +06/21/2018,Sports_celeb,@JohnWall,"RT @dzanderTraining: @johnwall +Summer of Separation! #nba #2018… https://t.co/tOeLa0ermJ" +06/19/2018,Sports_celeb,@JohnWall,"RT @UKCoachCalipari: Really happy for @AntDavis23, a Hall of Fame player and person. Loved seeing him this weekend and can't wait to celebr…" +06/18/2018,Sports_celeb,@JohnWall,RT @ItsNot_BRANDON: 💯💯💯 https://t.co/fkCPEXfKx0 +06/08/2018,Sports_celeb,@JohnWall,RT @SeTarheels: Yomide Jeje @JWFamFoundation https://t.co/g4WsZL5wFD +06/08/2018,Sports_celeb,@JohnWall,RT @kmmslions: Silent Dance Party for our scholars with PERFECT ATTENDANCE #attendancematters @MayorBowser @JWFamFoundation https://t.co/Dz… +06/08/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Photo boot fun with Principal Stafford and @kmmslions students! #JWFF https://t.co/hvTAADpHk0 +06/08/2018,Sports_celeb,@JohnWall,Congrats @Capitals Stanley Cup Champs‼️ #DCFAMILY #ALLCAPS https://t.co/aMHWbbRXGY +06/01/2018,Sports_celeb,@JohnWall,RT @russwest44: I am always inspired by you Brodie! The #WhyNot Zer0.1 “Masters” is dedicated to all the hard work you put in getting your… +05/24/2018,Sports_celeb,@JohnWall,Yessir‼️ #ALLCAPS Congrats #DCFAMILY https://t.co/lI8bIFSSV7 +05/24/2018,Sports_celeb,@JohnWall,Let’s Gooo Caps🏒 #ALLCAPS +05/22/2018,Sports_celeb,@JohnWall,RT @SB_FATSLUTTY: I remember ridding in dat maybach with @JohnWall vibing It was motivation made me grind harder +05/20/2018,Sports_celeb,@JohnWall,RT @herhoopstats: The @WashWizards superstar @JohnWall is in the house to watch the hometown @WashMystics play this afternoon....he's a big… +05/20/2018,Sports_celeb,@JohnWall,"RT @WashMystics: .@JohnWall with the shades out here reppin. ‘Preciate you #DCFamily. + +#TogetherDC https://t.co/8hurzeKKwL" +05/18/2018,Sports_celeb,@JohnWall,Tough !! RT @C20B: Graduating college with my role model @JohnWall on the grad cap 🎓🏀 #Wizkids #DCFamily https://t.co/vRNpggpzOc +05/17/2018,Sports_celeb,@JohnWall,"RT @WashWizards: #TBT to @JohnWall's pre-draft workout in 2010 👀 + +#WallStar #DCFamily https://t.co/WmdoJbKVpa" +05/16/2018,Sports_celeb,@JohnWall,@FrankieBOS @imNickNames Lol +05/16/2018,Sports_celeb,@JohnWall,@imNickNames Lol im gonna live my life regardless bra and u dnt know wen that pic was took...worry bout urself bra !! +05/13/2018,Sports_celeb,@JohnWall,Sending Happy Mother’s Day wishes to all the MOMS today and… https://t.co/6vUQWVrTSj +05/08/2018,Sports_celeb,@JohnWall,"RT @DMVFollowers: For the first time in decades, a D.C. sports team reaches a conference finals. GO CAPS! https://t.co/KFA9xqDXOB" +05/05/2018,Sports_celeb,@JohnWall,RT @NBCSWizards: Markieff Morris wants to play with the #Wizards for the rest of the career. https://t.co/ArN41fNak4 https://t.co/4WcEPdLeK2 +05/05/2018,Sports_celeb,@JohnWall,"RT @Redskins: ""I think you’ve got to give the kid some credit to say that from where he comes from and what he’s accomplished and what he’s…" +05/05/2018,Sports_celeb,@JohnWall,💯👌🏾RT @mrtonylewisjr: @JohnWall please share https://t.co/BySHMtk0Au +05/05/2018,Sports_celeb,@JohnWall,RT @JCrossover: Crazy part about Rondo is he KNEW he was still this player the last few years when people tried to write him off. He stayed… +05/03/2018,Sports_celeb,@JohnWall,RT @misstonic813: Shoutout to @mrtonylewisjr for his appearance on The Breakfast Club!! #dmv https://t.co/mIuT2E2RE1 +04/13/2018,Sports_celeb,@JohnWall,@SportsCenter my buddy +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Save it to your phones and mark your calendars! 🗓️ + +Our Round 1 Schedule 👀 + +#WizRaptors #DCFamily https://t.co/WlhoHg8x9f" +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: PODCAST: @JohnWall (11:30 mark) on heading into the playoffs, the team's x-factors, his motivation for this season, and mo…" +04/13/2018,Sports_celeb,@JohnWall,"RT @WashWizards: 1 RETWEET = 1 VOTE for #JRNBACOYWAS + +Vote for Jr. Wizards Coach of the Year Marcus Clark to win the Jr. NBA National Coach…" +04/11/2018,Sports_celeb,@JohnWall,RT @neimanmarcus: @JohnWall is gazing over the Potomac while looking good in this @Theory__ look. Photo by Keith E. Morrison for @GQMagazin… +04/09/2018,Sports_celeb,@JohnWall,RT @DMVFollowers: After 5 years of beef @ShyGlizzy and @FATTREL shared the same stage for the first time. #DMVHistory https://t.co/LtOyvYhg… +04/09/2018,Sports_celeb,@JohnWall,"RT @Ballislife: Derrick Rose was unbelievable in high school! + https://t.co/S2IwgNZcDY" +04/08/2018,Sports_celeb,@JohnWall,"RT @seanjohn: We partnered with @WashWizards point guard @JohnWall @JWFamFoundation & provided Sean John Tailored Suits, fragrance, watches…" +04/08/2018,Sports_celeb,@JohnWall,RT @PChenier45: The always gracious & thoughtful @JohnWall Thx buddy! https://t.co/oBUp6cWmzP +04/07/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: Ryan reacted to meeting @JohnWall just like you would 😱 + +His full Make-A-Wish experience: https://t.co/AUL9N9JZLf https://…" +04/02/2018,Sports_celeb,@JohnWall,RT @cmillsnbcs: My guy @JohnWall trying to take too much on the island 🌴 #DCFamily https://t.co/S1nPpTDlTy +03/30/2018,Sports_celeb,@JohnWall,"RT @brkicks: Just a kid from Raleigh + +“FIVE DEEP” pays tribute to @JohnWall and his four childhood friends from North Carolina https://t.co…" +03/30/2018,Sports_celeb,@JohnWall,RT @SoleCollector: #SoleWatch: @JohnWall's Adidas Crazy BYW X PE 🔥 https://t.co/RCNNgQw8qY +03/29/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: ""I'm not supposed to be here."" + +Kemba Walker gives emotional interview after becoming Hornets' all-time leading scorer http…" +03/28/2018,Sports_celeb,@JohnWall,RT @cmillsnbcs: Dear haters of @JohnWall the five time all star explains why you motivate him. https://t.co/t0sGAnI9IB +03/28/2018,Sports_celeb,@JohnWall,RT @YG: THE REAL LAST FOREVER. +03/27/2018,Sports_celeb,@JohnWall,"RT @neimanmarcus: Clean, fresh and crisp. Show them you mean business in this look from @JohnWall in @Moncler. Photo by Keith E. Morrison f…" +03/26/2018,Sports_celeb,@JohnWall,RT @MiltonAChavis: The killa @JohnWall is coming back soon.... on his Brazy J RR wave!! Scary sight! 😤😤 +03/25/2018,Sports_celeb,@JohnWall,RT @marybrown0416: After 12 hours I guess it’s worth it!! #1 #Champs #13u #12u #Deshawn #13 #Devaughn #2 #TeamWall #Grassroots #WallWay @Te… +03/24/2018,Sports_celeb,@JohnWall,"RT @glennconsor: We are all so excited to see @PChenier45 jersey raised to the rafters tonight. Well deserved, well done! @SteveBuckhantz @…" +03/24/2018,Sports_celeb,@JohnWall,👌🏾 https://t.co/bsk3UO1nBy +03/24/2018,Sports_celeb,@JohnWall,"RT @BoysInTheGood: Thanks @JohnWall! +• • • • • +@JWFamFoundation @WashWizards #JohnWall #BoysInTheGood https://t.co/uD78bOzDRR" +03/24/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Tonight’s warm-up shirts 4️⃣5️⃣ + +#Phil45 #DCFamily https://t.co/7ft7RIVDy7" +03/24/2018,Sports_celeb,@JohnWall,Congrats Legend!! https://t.co/QnMV3L7AGv +03/24/2018,Sports_celeb,@JohnWall,RT @WashWizards: Beautiful words from Phil Chenier's children as they congratulate him on being the 5th player in franchise history to have… +03/24/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Great having boysinthegood at tonight’s game! Glad you guys could make it! Keep up the good work! https://t.co/nxKeHlp… +03/24/2018,Sports_celeb,@JohnWall,Congratulations to The Legend Phil Chenier on your jersey retirement! #Phil45 #TheOnly45WeAcknowledgeInDC #DCFamily https://t.co/I0V06JpSc8 +03/24/2018,Sports_celeb,@JohnWall,RT @mikobee813: Thank you @JohnWall for your hospitality! The boys are having a ball and was very excited to meet you! @BaltCoPS @Randallst… +03/24/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Legend and #WallStar. + +@JohnWall congratulates @PChenier45! + +#Phil45 https://t.co/okT8yLOAXU" +03/23/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: DeMarcus Cousins offered to pay for Stephon Clark's funeral, reports @mr_jasonjones https://t.co/ySZYK2FIPY https://t.co/VF…" +03/21/2018,Sports_celeb,@JohnWall,👌🏾 https://t.co/t7nzO3qWvp +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Bid for a chance to meet @Keefmorris & support his FOE Foundation! Get more info & bid here: https://t.co/FMux2P89gW + +#DCF…" +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: @PChenier45 @realtuffjuice NBA Commissioner Adam Silver congratulates Phil, who he calls one of the greatest ambassadors o…" +03/21/2018,Sports_celeb,@JohnWall,"RT @WashWizards: @PChenier45 @realtuffjuice @nilslofgren Love from former Bullet/Wizard and fellow broadcaster @realchriswebber! + +#Phil45…" +03/13/2018,Sports_celeb,@JohnWall,"RT @DefJamRecords: .@YG's SUU WHOOP out now on @vevo! +https://t.co/vQN3MqUmc6 https://t.co/JjTWQsFNT2" +03/11/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: 🚨 Thank you for your submissions! We are no longer accepting submissions. We’ll be in touch! https://t.co/98moPL7Y9K +03/11/2018,Sports_celeb,@JohnWall,"RT @JWFamFoundation: Still time to apply for a prom experience with @seanjohn + #JWFF! #DMV + #Raleigh, NC ONLY! Know of a young man gradua…" +03/09/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/06/2018,Sports_celeb,@JohnWall,RT @SirMeexh: When @JohnWall hit you with this... whole arena be lit 🔥💪🏾 https://t.co/dnoH9n4U7N +03/05/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/04/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/03/2018,Sports_celeb,@JohnWall,RT @GTemp14: These young adults are AMAZING!!!! https://t.co/w2Y3KMfvBu +03/02/2018,Sports_celeb,@JohnWall,"RT @KentuckyMBB: Call to action, #BBN: + +🔵 Catch up on the first two episodes of Inside the Madness +🔵 Get your calendar out and mark the upc…" +03/02/2018,Sports_celeb,@JohnWall,@KentuckyMBB #BBN Lock in +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Know of a young man graduating from HS Spring 2018 and needs help with prom? Tell us why your nominee deserves to be #… +03/02/2018,Sports_celeb,@JohnWall,Congrats! https://t.co/aIqA4JUO6a +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Congratulations to @LYSANDER102 for winning our 1st #JWFFGiveaway! Thanks to everyone that participated! This is just… +03/02/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: There is still time to enter our #JWFFGiveaway! Follow @JWFamFoundation & RT for your chance to win this @JohnWall aut… +03/01/2018,Sports_celeb,@JohnWall,"RT @SpecOlympics_DC: Spread the Word, to end the Word! On our Throwback Thursday we take it back a year ago from… https://t.co/N0s8LyCR8A" +03/01/2018,Sports_celeb,@JohnWall,Looking forward to tonight’s game with @specolympics_dc! See yah soon! #TBT to last year’s event. Always one of my… https://t.co/2m06eImkj2 +03/01/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: It’s our first #JWFFGiveaway! Follow @JWFamFoundation & RT for your chance to win this @JohnWall autographed @adidas s… +02/27/2018,Sports_celeb,@JohnWall,RT @SherreeBurruss: Hey! We know that guy! @JohnWall is the default picture for GQ Magazine's latest article on NBA style #WallwiththeShade… +02/27/2018,Sports_celeb,@JohnWall,RT @ZacharyLeonsis: Coolin’ 😎😎😎 @JohnWall https://t.co/LqkI24CKXR +02/27/2018,Sports_celeb,@JohnWall,"RT @DTLR: Hey DC! Come out & meet @neweracap ambassador @johnwall this Saturday, 3/3 at 4pm to launch the #JohnWall Collection – designed b…" +02/27/2018,Sports_celeb,@JohnWall,"Keep up the great work! 👍🏾 RT @BoysInTheGood: @JohnWall Hey, Mr. Wall! We are #BoysInTheGood and we are learning ab… https://t.co/UEhVZRQIzg" +02/26/2018,Sports_celeb,@JohnWall,RT @TrueHoop: Terrible Dan Fegan news. Behind the scenes with him at the 2010 @johnwall draft. https://t.co/a3V684JTQi Later told me that w… +02/25/2018,Sports_celeb,@JohnWall,RT @BigShotsNation: MVP Mom MVP Person. Always a pleasure having Mrs. Wall & the Wall Family at the HoopState Invitational Tournament. An a… +02/25/2018,Sports_celeb,@JohnWall,RT @BigShotsNation: Always a pleasure hosting the HoopState Invitational Tournament with @TeamWallGR @JohnWall program & family & having M… +02/25/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: South African Anglican Cleric. Theologian. Human Rights Activist. Desmond Tutu. #JWFF #BHM https://t.co/ieFmEc8zGg +02/22/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Actor. Director. Producer. Denzel Washington. #JWFF #BHM https://t.co/C1CqnpA4mj +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/UOH66WW91q +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/hfc289LpR3 +02/22/2018,Sports_celeb,@JohnWall,#TBT to #NBAAllStar2018 in LA! 5X #Blessed #BYB #5Deep #DCFamily https://t.co/cVYUYgdUKs +02/18/2018,Sports_celeb,@JohnWall,"RT @HoopDistrictDC: #JohnWall on #LeBronJames and Laura Ingraham: ""We're more than athletes and stuff that is going on in our society and t…" +02/18/2018,Sports_celeb,@JohnWall,💯👌🏾RT @DaTrillStak5: Real ones. No 🧢. Got love for my lil bros. @antdavis23 @johnwall appreciate y’all as always.… https://t.co/521nVgUsVA +02/16/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Lawyer. Writer. Former First Lady of the United States. Michelle Obama. #JWFF #BHM https://t.co/IEMKUYvup1 +02/16/2018,Sports_celeb,@JohnWall,Yessir lil bro keep goin !!RT @taistrickland13: Blessed to receive an offer from Wisconsin! https://t.co/KCgYBgYXDH +02/15/2018,Sports_celeb,@JohnWall,@NipseyHussle https://t.co/6n4HJSFbmI +02/15/2018,Sports_celeb,@JohnWall,Next stop LA! #ASW @neweracap https://t.co/SiIv4YzMnj +02/14/2018,Sports_celeb,@JohnWall,"Facts 💯👌🏾 RT @DrewdotCash: i will, we gone be on the same court soon!!!!" +02/13/2018,Sports_celeb,@JohnWall,Keep fightin bra !!RT @DrewdotCash: How I wake up in the mornings. #LookAlive https://t.co/jbaXMt7JJt +02/12/2018,Sports_celeb,@JohnWall,"RT @abe_squad: ""you wasn't wit me in the gym, you wasn't @JohnWall"" 🔥 https://t.co/DU4u3caZsp" +02/08/2018,Sports_celeb,@JohnWall,"RT @Ballislife: @newsouthpodcast @JumpmanBowman @rod_bridgers @BALLisLIFEeast One of the ACC's best guards, @JumpmanBowman looks up to @joh…" +02/06/2018,Sports_celeb,@JohnWall,"RT @BALLisLIFEeast: So ready for #NoOffSeason vol 2 with @johnwall & the family, coming this summer.. 🔥🔥🔥 https://t.co/dpVhrMndjp" +02/06/2018,Sports_celeb,@JohnWall,"RT @Rachel__Nichols: 🚨DVR ALERT🚨 +@JohnWall is scheduled to pop onto #TheJump tomorrow. (@PaulPierce34 is on the show too, and you KNOW thos…" +02/06/2018,Sports_celeb,@JohnWall,Think you got handles??? Show em off and win a trip to NBA All-Star 2018 complements of @KumhoTireUSA! All you gott… https://t.co/CujRAfYPIu +02/06/2018,Sports_celeb,@JohnWall,Tough bra !! RT @Scott_lewis_23: Shoutout to my guy @JohnWall +02/03/2018,Sports_celeb,@JohnWall,Meet me at #747WarehouseSt. Get your tickets at https://t.co/YC8uovsR1m https://t.co/r5sqD9O1kF +02/02/2018,Sports_celeb,@JohnWall,@ThatPersianGuy lol sour u funny bra +02/02/2018,Sports_celeb,@JohnWall,@IanPierno happy belated bday my man +01/31/2018,Sports_celeb,@JohnWall,@BALLisLIFEeast need it +01/31/2018,Sports_celeb,@JohnWall,"I will always remember the time we shared together as teammates, you were the big brother. I appreciate the advice… https://t.co/o2PSrDqowS" +01/31/2018,Sports_celeb,@JohnWall,@JMCIII yessir for sure tell the lil homies wat up +01/31/2018,Sports_celeb,@JohnWall,Yessir lil bro RT @taistrickland13: Am I in your bag yet👀 @JohnWall +01/24/2018,Sports_celeb,@JohnWall,@JMCIII my guy +01/24/2018,Sports_celeb,@JohnWall,"RT @abe_squad: ""That was the bro before this."" + +Chopped it up with @AntDavis23 and @boogiecousins for @SLAMonline earlier this month. Cover…" +01/24/2018,Sports_celeb,@JohnWall,My guy RT @cmillsnbcs: This article shows all of Johns fans and haters what his journey is and was all about. It’s… https://t.co/YzMfsv1I0D +01/24/2018,Sports_celeb,@JohnWall,Thanks Legend‼️ https://t.co/UqSCERKwvS +01/24/2018,Sports_celeb,@JohnWall,Thanks! https://t.co/jGAydKyrJQ +01/24/2018,Sports_celeb,@JohnWall,Thnx appreciate ya! https://t.co/rSbNoOOXlV +01/24/2018,Sports_celeb,@JohnWall,Yessir RT @getmerecruited: Super 60 Showdown Allstar & SE All-Freshman coach Carisma Lynn had it going on all cylin… https://t.co/od1M6QDh3h +01/24/2018,Sports_celeb,@JohnWall,Yessir RT @DrewHanlen: YEAAAAHHHHH!!! My brother @RealDealBeal23 is an All-Star!!! Proud of you my dude!!… https://t.co/CWez71xjNk +01/24/2018,Sports_celeb,@JohnWall,Already 💯👌🏾RT @LeVelleMoton: U make us Proud nephew @JohnWall ...Luv u boy Keep repine +01/24/2018,Sports_celeb,@JohnWall,@BBROWNLAU my bro +01/24/2018,Sports_celeb,@JohnWall,"Grateful that a kid like me from Raleigh, NC is able to play the game I love each and every day. THANK YOU to my te… https://t.co/ePPBJDCwZD" +01/24/2018,Sports_celeb,@JohnWall,"Congrats to my guy @bradbeal3 on his #NBAAllStar debut! Much deserved and earned! #LA, here we come #BB3 #DCFamily… https://t.co/CDHCFtQ2jZ" +01/15/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Thank you Dr. King for showing us that our words alone won’t get the job done. There must be action. Thank you and yo… +01/15/2018,Sports_celeb,@JohnWall,"Lol my dawgs RT @WashWizards: 24 HOURS LEFT! + +VOTE NOW ✅ | +https://t.co/c1lUgWZpSv https://t.co/tIYQtMA6Vz" +01/14/2018,Sports_celeb,@JohnWall,RT @SLAMonline: We hit up the @JohnWallHoliday Invitational and took note of the tournament’s top stars ➡️ https://t.co/aA3R8IQShH https://… +01/14/2018,Sports_celeb,@JohnWall,"RT @SLAMonline: Just a kid from Raleigh. 9️⃣1️⃣9️⃣ + +#WallWay https://t.co/96symDTmFe" +01/14/2018,Sports_celeb,@JohnWall,@rod_strickland lol my guy/OG !! +01/14/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: DAGGER 🔪 + +@JohnWall #NBAVote https://t.co/2jhKJfdcGT" +01/14/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Watch @JohnWall go for 30 points and 9 assists in a #WizMagic win! + +Then RETWEET to #NBAVote! + +#DCFamily https://t.co/az…" +01/14/2018,Sports_celeb,@JohnWall,"RT @NBCSWizards: .@JohnWall is an All-Timer 😎 + +#NBAVote https://t.co/lrlVQkV8dv" +01/08/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: Help us send @JohnWall to All-Star in LA! Cast your #NBAVote by RTing! (1 RT = 1 Vote) https://t.co/COovSWCoRd +01/08/2018,Sports_celeb,@JohnWall,"RT @WizardsGWiz: ☝🏼 WEEK LEFT TO VOTE! + +@JohnWall #NBAVote + +1 RT = 1 vote! https://t.co/OFQFGSL3Hw" +01/08/2018,Sports_celeb,@JohnWall,"RT @WashWizards: The hero D.C. deserves. + +@JohnWall #NBAVote + +1 RT = 1 VOTE https://t.co/L1vIH2OWlr" +01/08/2018,Sports_celeb,@JohnWall,@Truth_About_It it’ll change long season buddy +01/07/2018,Sports_celeb,@JohnWall,RT @JWFamFoundation: RT = 1 Vote #NBAVote @JohnWall https://t.co/47v5HzVyeD +01/04/2018,Sports_celeb,@JohnWall,#TBT 2013 WH Easter Egg Roll wit @RealDealBeal23 and the OG Emeka #NBAVOTE https://t.co/WvymvE8nb9 +01/04/2018,Sports_celeb,@JohnWall,"RT @WashWizards: Just a rookie from St. Louis. + +Bradley Beal #NBAVote + +#TBT #DCFamily https://t.co/AZDGRASKbK" +01/03/2018,Sports_celeb,@JohnWall,RT @Ballislife: 🔥NEW🔥The @JohnWallHoliday Invitational: OFFICIALLY the MOST LIT Atmosphere in high school 🏀🏀🏀 (MIXTAPE) https://t.co/raO25i… +01/01/2018,Sports_celeb,@JohnWall,"RT @WashWizards: 39 points. 9 assists. 9 rebounds. 🐼 + +Sounds like an All-Star to us. RETWEET to #NBAVote Bradley Beal! https://t.co/ut36Am0…" +12/30/2017,Sports_celeb,@JohnWall,"RT @CoachCRoth: Greatly appreciate the @JohnWall Family, Bill Sewell, all his staff & the volunteers at #TheJohnWall. This is a premiere ev…" +12/28/2017,Sports_celeb,@JohnWall,"RT @WashWizards: We couldn't even fit all of @JohnWall's 2017 highlights into one video. + +Retweet to #NBAVote for #WallStar! https://t.co/A…" +12/27/2017,Sports_celeb,@JohnWall,"RT @WashWizards: He's the youngest player ever to hit 700 3's. Send him to L.A. 🐼 + +RT to #NBAVote Bradley Beal! + +#DCFamily https://t.co/YeH…" +12/26/2017,Sports_celeb,@JohnWall,Wishing you and yours a Merry Christmas! https://t.co/t6WU3H0F9j +12/25/2017,Sports_celeb,@JohnWall,"RT @GMA: .@WashWizards point guard @JohnWall gifts family that has fallen on hard times $1,000 worth of groceries, tickets to a game and pa…" +12/25/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Tune in to @gma tmw morning between 8am and 9am and see how #JWFF shared the spirit of the… https://t.co/Vwqj4xRDvd +12/22/2017,Sports_celeb,@JohnWall,RT @DJQUICKSILVA: “Hey @johnwall look at them over there with the ice grill mad face 😂😂😂😂” https://t.co/8i1rEYYgm5 +12/22/2017,Sports_celeb,@JohnWall,@35_Fitz lol bet bro +12/21/2017,Sports_celeb,@JohnWall,RT @hollafashions: Leader on and off the court. @johnwall #TheWallWay… https://t.co/8c0a0Zzhla +12/21/2017,Sports_celeb,@JohnWall,💯👌🏾RT @JavonteSmart: I watch AI and John wall daily 🤷🏽‍♂️💯🔥#Respect @alleniverson @JohnWall +12/20/2017,Sports_celeb,@JohnWall,@KedowWalker done deal bro +12/20/2017,Sports_celeb,@JohnWall,RT @HoopDistrictDC: Hand drawn 🔥🔥🔥 https://t.co/ZsnXERYDVj +12/20/2017,Sports_celeb,@JohnWall,"Yessir !! RT @JohnWallHoliday: One week from day, the best high school 🏀 tournament in the country. 4 days, 25 game… https://t.co/7inH0WDHhp" +12/20/2017,Sports_celeb,@JohnWall,"RT @WashWizards: Wall with the Shades 😎 + +All fans in attendance for #WizRockets on 12/29 will get a pair of @JohnWall replica sunglasses!…" +12/17/2017,Sports_celeb,@JohnWall,Check out me and @cmillsnbcs talking some of my favorite sneakers tonight at 5:30 on Wizards Gametime #DCFamily… https://t.co/LQxzydokpJ +12/17/2017,Sports_celeb,@JohnWall,"RT @WashWizards: The monuments of our city live among us, not above us.  They are not giants,  but they help us walk tall. And each of us c…" +12/17/2017,Sports_celeb,@JohnWall,RT @WashWizards: #SeasonOfGiving continued today as @RealDealBeal23 played secret Santa at a local @Walmart and surprised families by purch… +12/16/2017,Sports_celeb,@JohnWall,RT @SLAMonline: Kentucky commit Immanuel Quickley (@IQ_GodSon) is the latest five-star PG slated to play for @UKCoachCalipari. https://t.co… +12/16/2017,Sports_celeb,@JohnWall,"RT @JohnWallHoliday: 1️⃣1️⃣ days until #TheJohnWall tips off. + +“Every time I go back into that gym, it’s surreal. I go back to where I go…" +12/15/2017,Sports_celeb,@JohnWall,Appreciate the continuous support 💯👌🏾 RT @KarenCivil: WallWay Pack drops the official video for ‘Beast Mode’:… https://t.co/LgZXvuIiGk +12/15/2017,Sports_celeb,@JohnWall,RT @NavyMemorial: We would like to thank @JohnWall and the @JWFamFoundation for making it possible for 200 kids in the #DC area to see @jum… +12/15/2017,Sports_celeb,@JohnWall,RT @iamsamsesay: Thanks @Johnwall and @JWFamFoundation for inviting @gameplanorg! The kids had an amazing time and enjoyed the movie! https… +12/15/2017,Sports_celeb,@JohnWall,Special thanks to @kevinhart4real for the surprise video message that kicked off the screening of Jumanji Welcome T… https://t.co/8cJg5Nl9tW +12/15/2017,Sports_celeb,@JohnWall,Happy Holidays to the @jwfamilyfoundation’s groups and families that came out last night! 📸 cred: @neddishman https://t.co/ml7i16tU55 +12/15/2017,Sports_celeb,@JohnWall,Last night @JWFamFoundation hosted an advance screening of Jumanji: Welcome To The Jungle for 200 middle/high schoo… https://t.co/w5ECNHlOmI +12/15/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Tonight #JWFF hosted an advance screening of Jumanji: Welcome To The Jungle for 200 middle/high… https://t.co/P5xQgwMj… +12/15/2017,Sports_celeb,@JohnWall,"RT @Alliedimdc: What’s up, DC? #jumanji @JohnWall https://t.co/iO3k3NOP6K" +12/15/2017,Sports_celeb,@JohnWall,"Appreciate that my man RT @TheRock: Yass!! All the candy, popcorn and soda you can eat kids!!! I’ll send the bill t… https://t.co/mG8oM0cClj" +12/14/2017,Sports_celeb,@JohnWall,Yessir !! RT @RealDealBeal23: Good to have my dawg @johnwall back !! #DCFamily https://t.co/WFOJayLS4b +12/14/2017,Sports_celeb,@JohnWall,😎‼️#TBT #WALLWAY https://t.co/zwb9uWXqs8 +12/13/2017,Sports_celeb,@JohnWall,RT @KristinMScott: Still one of my favorite pics. #madisonsquaregarden #webeatuconn #8yearsago @JohnWall https://t.co/733QSynJgt +12/13/2017,Sports_celeb,@JohnWall,"RT @KELLYOUBREJR: @JohnWall and Little Papi Kelly Elf both have GOALS. @johnwall we need an assist from you for the toy drive on Sunday, De…" +12/11/2017,Sports_celeb,@JohnWall,"RT @WashWizards: We've got a @RealDealBeal23 sighting at the @NBASTORE in NYC! + +#DCFamily https://t.co/b9Xor4Vesk" +12/10/2017,Sports_celeb,@JohnWall,RT @WashWizards: 👀 https://t.co/ERLVFyyonJ +12/09/2017,Sports_celeb,@JohnWall,RT @TeamWallElite: @CoachK_Williams @getmerecruited @JayJayUSATODAY @BALLisLIFEeast @stateofhoopsnc @rod_bridgers @JumpmanBowman @JohnWall… +12/08/2017,Sports_celeb,@JohnWall,RT @cmillsnbcs: The kids got a future in walkoff interviews. Well done @JohnWall #DCFamily #NBA #WizSuns https://t.co/GaTCdipCtm +12/08/2017,Sports_celeb,@JohnWall,RT @NBCSWizards: .@JohnWall is out here tryna take @cmillsNBCS' job 😂 https://t.co/8egn2OIi6P +12/07/2017,Sports_celeb,@JohnWall,RT @cmillsnbcs: A positive sign. Look who’s getting up shots after @WashWizards morning shootaround @JohnWall #DCFamily #WizSuns #NBA https… +12/07/2017,Sports_celeb,@JohnWall,RT @Ballislife: SHOW THIS EVENT SOME LOVE!! Let's help pack out the house for @JohnWall's high school basketball tournament!!🔥🔥🏀🔥🔥 https://… +12/07/2017,Sports_celeb,@JohnWall,Make sure y’all go wish my sis @lovelycee_xo a very HAPPY Birthday 🎂 today🎈Luv ya https://t.co/8XMEdRKL7g +12/07/2017,Sports_celeb,@JohnWall,RT @TeamLadyWall: C/O ‘19 PG Carisma Lynn drops 17pts & 3 assists last night for Middle Creek in tough loss against Panther Creek. This you… +12/07/2017,Sports_celeb,@JohnWall,"RT @HumaneRescue: 8-month-old Biscuit is what we in the animal welfare industry call a ""Very Good Boy."" He's gently, friendly, and he alrea…" +12/07/2017,Sports_celeb,@JohnWall,RT @BrightBeginDC: Join @JohnWall in supporting BBI! Every little bits helps the little ones we serve. https://t.co/er5Q8aSqsU Donate today… +12/07/2017,Sports_celeb,@JohnWall,RT @KELLYOUBREJR: Little Papi Kelly Elf hanging with my brother @RealDealBeal23 after his career high of 51 points. Let's keep the momentu… +12/04/2017,Sports_celeb,@JohnWall,Thank u sis RT @MonicaBrown: Thank you to My Bro @johnwall ‘s Family !! On more than one occasion this tour they co… https://t.co/KGPDtBNYde +12/03/2017,Sports_celeb,@JohnWall,"RT @BleacherReport: I have no words 😶 + +(via @AWProductions_) https://t.co/Mu5u4pS8nD" +12/02/2017,Sports_celeb,@JohnWall,"RT @cmillsnbcs: The next episode of One on One with Chris Miller features @johnwall. We talk hitting the biggest shot of his life, sneakers…" +12/01/2017,Sports_celeb,@JohnWall,@dgarrett_msmg my dawgs +11/28/2017,Sports_celeb,@JohnWall,RT @JWFamFoundation: Today is #GivingTuesday! Join me in supporting DC’s only child and family development center for homeless children. Te… +11/22/2017,Sports_celeb,@JohnWall,RT @isaiahthomas: We never know how strong we are until being strong is the only choice we have!!! +11/20/2017,Sports_celeb,@JohnWall,"RT @KSTV_Sports: Thanks again @JohnWall!! + +The #BBN and @KentuckyVB has loved @KazBrown11! https://t.co/xT4ox1Sc8L" +11/18/2017,Sports_celeb,@JohnWall,RT @JWallCentral2x: https://t.co/6jqKXb6xCj @JohnWall pls comeback 😢 +11/18/2017,Sports_celeb,@JohnWall,"RT @JWFamFoundation: John Wall Family Foundation partnered with The Salvation Army of Raleigh, NC today to bring Thanksgiving Assist to the…" +11/18/2017,Sports_celeb,@JohnWall,RT @HCJames58: Its still surreal that the @JohnWall has his name on the @JohnWallHoliday. #Blessed https://t.co/7dNIK5VAVa +11/18/2017,Sports_celeb,@JohnWall,RT @sthomas_4: The John Wall Holiday Invitational is coming back once again to Raleigh highlighting the best high school basketball teams i… +11/16/2017,Sports_celeb,@JohnWall,Congrats @Max_Scherzer #3XCY #DCFamily https://t.co/je6VCh1OLK +06/24/2018,Sports_celeb,@KlayThompson,This is something that my family and I have been working on for some time and I’m proud to say we are announcing th… https://t.co/qBUrZOajfD +06/19/2018,Sports_celeb,@KlayThompson,"RT @stancehoops: Three Times Dope. + +Celebrate the @warriors Championship with this limited-edition sock. + +https://t.co/xy7y7UFRBX https:/…" +06/18/2018,Sports_celeb,@KlayThompson,Being a back to back champion comes with hard work and proper nutrition. I recover with @chocolate_milk for its nut… https://t.co/j7hTaYLUn5 +06/18/2018,Sports_celeb,@KlayThompson,Excited to announce that I'll be hosting my first basketball camp this summer in Southern California from August 6-… https://t.co/trEszFxCT3 +06/17/2018,Sports_celeb,@KlayThompson,Thanks for riding with us all the way #Dubnation! https://t.co/5eBbd5TSmP +06/15/2018,Sports_celeb,@KlayThompson,Dub Nation! The Water For Life Charity Softball Game is on June 23rd at the Oakland Coliseum. Support my teammate a… https://t.co/g2I5LEKFGG +06/14/2018,Sports_celeb,@KlayThompson,"RT @Fanatics: #DubNation, make sure your Dad is decked out with @warriors gear this #FathersDay! + +Check out #FanaticsExclusive @KlayThomps…" +03/23/2018,Sports_celeb,@KlayThompson,Want to meet me and have a drive on the BMW M Tracks? Here’s your chance – https://t.co/TNRFc6Ka6w #bmw #Mschool… https://t.co/LqqwOWS6hX +03/21/2018,Sports_celeb,@KlayThompson,RT @chocolate_milk: Her game is speed & power. Ours is recovery. An unstoppable combo. Proud to welcome @SloaneStephens to #TeamChocolateMi… +03/05/2018,Sports_celeb,@KlayThompson,"Excited to announce my new banking partner, @OpusBank. The #officialbank of the @ThompsonFamFoun, they have a team… https://t.co/Dem87TOMuq" +03/04/2018,Sports_celeb,@KlayThompson,Excited to meet everyone who purchased the limited edition KT3 Rocco! See you at 5PM! https://t.co/EXHZXuPAKJ +02/27/2018,Sports_celeb,@KlayThompson,"The Warriors, BMW, and I are going green on March 8, see how we’ve gone green through the years on https://t.co/Kdpdbd3cbW #gogreen #bmw #i8" +02/23/2018,Sports_celeb,@KlayThompson,"Behind every “W” is a whole lot of work. I train and recover hard with the real deal recovery drink, low-fat… https://t.co/kpWLnPweUk" +02/20/2018,Sports_celeb,@KlayThompson,"Thanks for having me @wojespn, and for everyone listening to the The Woj Pod. Check it out if you haven’t yet at… https://t.co/5iq7RLBr0u" +02/17/2018,Sports_celeb,@KlayThompson,Had a great time chatting with @wojespn on The Woj Pod. Check it out here: https://t.co/Zz2zwmw8J3​. Thank you to N… https://t.co/HyYf1apo3K +02/16/2018,Sports_celeb,@KlayThompson,Happy Chinese New Year from Me & Rocco! https://t.co/ienF9BYO5k +02/07/2018,Sports_celeb,@KlayThompson,How soon can we wrap? @AntaAmerica https://t.co/uZBYnYl2hO +01/25/2018,Sports_celeb,@KlayThompson,"RT @anthonyVslater: Klay Thompson jokes that he will ""request a trade"" if Steph Curry doesn't get him at the All-Star game and then says he…" +01/20/2018,Sports_celeb,@KlayThompson,Let's Do This! https://t.co/1jOVPRhCsj +01/15/2018,Sports_celeb,@KlayThompson,"Celebrating his legacy not just today, but every day. Honor him by continuing his work and standing up for those wh… https://t.co/4MPXNITlTU" +01/11/2018,Sports_celeb,@KlayThompson,So @JaValeMcGee thought he had a chance against me in @CallOfDuty 😂...Special edition Parking Lot Chronicles straig… https://t.co/Q36jh9WBFJ +01/11/2018,Sports_celeb,@KlayThompson,Congrats to my bro @KDTrey5 on 20k career points. It’s a privilege to witness greatness every night! +01/10/2018,Sports_celeb,@KlayThompson,"Can’t stop, won’t stop. Recovering with @chocolate_milk keeps me going practice after practice. #BuildIt #ad https://t.co/UeIRC9zKQ3" +01/05/2018,Sports_celeb,@KlayThompson,Happy New Year from me and Rocco https://t.co/RrhRhrdE9U +12/25/2017,Sports_celeb,@KlayThompson,"This Christmas, you’re in for a show. Watch @NBA on @ESPN, and see The #GreatestShowman🎩, now playing in theaters.… https://t.co/NWXU11g1S8" +12/24/2017,Sports_celeb,@KlayThompson,Rocco has been waiting by the tree all day! https://t.co/9lnqCG8d7T +12/24/2017,Sports_celeb,@KlayThompson,Whole family getting in the holiday spirit with the new #KT3 @AntaAmerica https://t.co/P7TwdeOGki +12/20/2017,Sports_celeb,@KlayThompson,Had a great time at the toy drive the other day! Thanks @JAKKStoys for coming out and donating all these toys for m… https://t.co/BkGd1f5Xix +12/19/2017,Sports_celeb,@KlayThompson,"#8 all the way!! Three Championships, Eight All-Star Games, Two Scoring Titles, One slam dunk contest championship,… https://t.co/I9upuLeNEx" +12/19/2017,Sports_celeb,@KlayThompson,RT @RyanWardLA: Kobe Bryant on Body Armor (@DrinkBODYARMOR) & Klay Thompson throwing a Gatorade bottle off a press table recently: “I thoug… +12/18/2017,Sports_celeb,@KlayThompson,S/O to @SHGames for hosting us this past weekend! #CallofDutyPartner https://t.co/aKfcN4zmks +12/09/2017,Sports_celeb,@KlayThompson,My workout isn’t complete until I’ve had my @chocolate_milk. #BuildIt #ad https://t.co/phbncP53MY +12/05/2017,Sports_celeb,@KlayThompson,"Support journalism and help fulfill the wishes of our neighbors in need. Subscribe to @eastbaytimes, @mercnews,… https://t.co/336H9IG51i" +11/30/2017,Sports_celeb,@KlayThompson,Shoutout to my boy Robbie Fuller for designing the #KT3 to keep me right on my game. Best shoe yet! https://t.co/nxDTMHeBbG +11/25/2017,Sports_celeb,@KlayThompson,"Great W @WSUMensHoops, keep it goin!" +11/24/2017,Sports_celeb,@KlayThompson,Had a great time donating turkeys from our turkey drive to the children and community of Acorn and West Oakland. Th… https://t.co/1L9AkK94G2 +11/10/2017,Sports_celeb,@KlayThompson,Getting the most out of each practice. That’s why I keep my @chocolate_milk recovery game on-point. #BuildIt #ad https://t.co/ze708Pn0vM +11/03/2017,Sports_celeb,@KlayThompson,Ever wonder what my pre-game ritual is? Find out here https://t.co/eFsBxBuhqH https://t.co/0wBsYMERzn @mercnews… https://t.co/laPRRDD3RL +11/02/2017,Sports_celeb,@KlayThompson,"Thanks to all the fans and partners that pledged alongside me for this campaign! Still much to be done, but happy w… https://t.co/Cab2lr18Qg" +10/29/2017,Sports_celeb,@KlayThompson,"Over 1,100 of us pledging for our friends in Nor Cal. 1 last game tonight to reach our goal, hope you'll join us!… https://t.co/4CNpA6Cp6D" +10/27/2017,Sports_celeb,@KlayThompson,#BayAreaUnite https://t.co/VI0xBEREp3 +10/27/2017,Sports_celeb,@KlayThompson,2 games left in my Points with Purpose campaign for fire relief. Help us reach our new goal and let’s get after it.… https://t.co/OIyDEW8Dad +10/27/2017,Sports_celeb,@KlayThompson,"934 people pledging w me, over $4000 per point for relief efforts. I'm blown away. 2 games left, let's keep this up! https://t.co/IRUXEdItDM" +10/25/2017,Sports_celeb,@KlayThompson,"Thx to the generosity of fans & partners, we're up to over $2700 per point scored this week! Let's keep growing tha… https://t.co/F45DUWNUHe" +10/24/2017,Sports_celeb,@KlayThompson,@FaZe_Rain Appreciate you bro! +10/23/2017,Sports_celeb,@KlayThompson,Thank you to everyone who has pledged to my Points With Purpose campaign! You can still donate by going to… https://t.co/QUgplByUeF +10/23/2017,Sports_celeb,@KlayThompson,"RT @Kimborania: I pledged $1 per point to ""Klay Thompson's Points with Purpose on https://t.co/mlEyQ55oc0! https://t.co/ni73HBW0jg via @ple…" +10/23/2017,Sports_celeb,@KlayThompson,"RT @breesespieces: I donated $40 to ""Klay Thompson's Points with Purpose on https://t.co/NEdMvjuWlE! https://t.co/Bg9gQEtxbU via @pledgeit" +10/21/2017,Sports_celeb,@KlayThompson,@rastaclat @pledgeit Thanks guys! +10/21/2017,Sports_celeb,@KlayThompson,@oitzray @pledgeit Thank you Raymond! +10/21/2017,Sports_celeb,@KlayThompson,@erin_rose80 Thank you Erin! +10/21/2017,Sports_celeb,@KlayThompson,"amazing, thank you!! https://t.co/46OMUGY2Nx" +10/20/2017,Sports_celeb,@KlayThompson,@catherinejoysf thank you!! +10/20/2017,Sports_celeb,@KlayThompson,@MeaCuppa @pledgeit thank you! +10/20/2017,Sports_celeb,@KlayThompson,"@GregYoungJr @pledgeit awesome, thanks!" +10/20/2017,Sports_celeb,@KlayThompson,@Murrow51 @pledgeit thank you! +10/20/2017,Sports_celeb,@KlayThompson,Thank you! Any amount helps! https://t.co/d1TvLMb7I6 +10/20/2017,Sports_celeb,@KlayThompson,"During our next 3 home games, I'm pledging $1000 per point to North Bay fire relief. Join me by pledging any amount… https://t.co/cO5hduvCNy" +10/13/2017,Sports_celeb,@KlayThompson,@rogerfederer Name the time and place. Game on! +10/08/2017,Sports_celeb,@KlayThompson,@ANTAsportswear surprised me with a new pair of KT3’s “Gold Blooded”. Check the next game. 🙌 https://t.co/L2HoARxbC4 +10/05/2017,Sports_celeb,@KlayThompson,Thanks Shanghai for the very early morning welcome! 😂 https://t.co/8GQpZd8TSp +09/26/2017,Sports_celeb,@KlayThompson,Just wanted to say thank you to all the firefighters and first responders working so hard to put this fire out. https://t.co/KRl4z4zTI4 +09/20/2017,Sports_celeb,@KlayThompson,Got Behind The Wheel of an Indy Car at #GoProGP. Experience the drive with me! https://t.co/xOS3rwFk8y https://t.co/6EjJ4moFaG +09/12/2017,Sports_celeb,@KlayThompson,"Hey #DubNation, Want to come kick with me and @DrinkBODYARMOR? Enter here by Friday: https://t.co/OzsdN9Ro9d CA ON… https://t.co/cWTALAPpi2" +09/08/2017,Sports_celeb,@KlayThompson,#tbt to the Klay Court Dedication at KIPP Bridge Academy. It's an honor to give back to the Oakland youth & communi… https://t.co/G0S23xCg6C +08/24/2017,Sports_celeb,@KlayThompson,Surprised some future pro 🏀 players on their home court. Check it out via @chocolate_milk + CBS Sports #BuildIt #ad https://t.co/TGWrK9zXe6 +08/01/2017,Sports_celeb,@KlayThompson,That was my sinker https://t.co/OTNeOYKUo5 +06/27/2017,Sports_celeb,@KlayThompson,You don’t become a champ without hard work & proper nutrition. @chocolate_milk has nutrients to refuel and protein… https://t.co/u70vV29pxc +06/23/2017,Sports_celeb,@KlayThompson,Dub Nation! Join my teammates at JaVale's Charity Softball Game at Oakland Coliseum this Saturday. For tickets visi… https://t.co/e75R69TVvM +06/05/2017,Sports_celeb,@KlayThompson,RT @mdbergin: #NBAFinals subplot: The #Warriors are 29-1 since @KlayThompson signed a toaster on March 13. Didn't play in the loss https://… +06/01/2017,Sports_celeb,@KlayThompson,"To be a pro athlete, you have to be a perfectionist. Take a look via @chocolate_milk + CBS Sports. https://t.co/TiupTy8TTs #BuildIt #ad" +06/01/2017,Sports_celeb,@KlayThompson,"RT @warriors: ""It's an honor to be here for the 3rd time. Dreamed of this this as a kid & still appreciate it now. I don't take it for gran…" +05/30/2017,Sports_celeb,@KlayThompson,Obsessed about bringing a title back to The Bay. #ObsessionIsNatural @DrinkBODYARMOR https://t.co/hW1J1a73Db +05/15/2017,Sports_celeb,@KlayThompson,#ObsessionIsNatural....ComingSoon. @DrinkBODYARMOR https://t.co/7fbVWhnreu +05/05/2017,Sports_celeb,@KlayThompson,Want a peek into my daily life & game day rituals? I gave @chocolate_milk & CBS Sports a look. https://t.co/c3zAUEuydX #BuildIt #ad +03/31/2017,Sports_celeb,@KlayThompson,Check out the behind the scenes from my @chocolate_milk shoot. #TBT 💪 https://t.co/f7KgEA9ZXj +03/23/2017,Sports_celeb,@KlayThompson,My new 🔥 @stancehoops socks collection just dropped! Check them out here: https://t.co/6yXOVWaSMk https://t.co/i9R9SXUDrP +03/12/2017,Sports_celeb,@KlayThompson,"Let's go #DubNation! Gear up for the playoffs. I'll be at Old Navy (801 Market St, SF) from 4-5pm today. Come out and show your pride." +03/09/2017,Sports_celeb,@KlayThompson,.@chocolate_milk is the right move after a tough workout. Strong recovery so I can do it again tomorrow. #BuildIt… https://t.co/fGWuEklyNP +02/28/2017,Sports_celeb,@KlayThompson,"RT @anthonyVslater: Klay Thompson, drilling out a slice of pizza, talks Warriors win in Philly and Kevin Hart being a ""non-factor"" https://…" +02/28/2017,Sports_celeb,@KlayThompson,Excited to announce I’m BUILT WITH @chocolate_milk! The right mix of protein & carbs makes it my go-to post-game.… https://t.co/eYc0TUqjoT +02/23/2017,Sports_celeb,@KlayThompson,Had a great time this weekend. Thanks to everyone that came out. #NBAAllStar #StateFarmSaturday https://t.co/zZK9ytIAbw +02/21/2017,Sports_celeb,@KlayThompson,Great night with @stancehoops. #stancespades #NBAAllStar https://t.co/FAzkERWOnH +02/20/2017,Sports_celeb,@KlayThompson,Shoutout to @k_obrand for collaborating with me and @antaamerica to make these custom shoes in honor of my grandfa… https://t.co/hWBIktdNEv +02/19/2017,Sports_celeb,@KlayThompson,Another #StateFarmSaturday in the books. Until next year #NBAAllStar +02/19/2017,Sports_celeb,@KlayThompson,Shoutout to @stancehoops for showing love and donating to the cause. 🙌 https://t.co/b1c7c9Rlr9 +02/19/2017,Sports_celeb,@KlayThompson,Thanks @DrinkBODYARMOR for keeping me hydrated this week while we did work this week with @nbacares. #NBAAllStar https://t.co/VEmkBCR8pY +02/19/2017,Sports_celeb,@KlayThompson,It's time! #StateFarmSaturday is underway on TNT. Tune in now! +02/18/2017,Sports_celeb,@KlayThompson,Tonight I'll be shooting for Ranfurly Homes for Children! #BucketsforKids https://t.co/4TGuRWiull +02/16/2017,Sports_celeb,@KlayThompson,Almost time for another #StateFarmSaturday. Who’s ready? Don’t forget to check it out on 2/18 at 8pm EST! +02/14/2017,Sports_celeb,@KlayThompson,Ready to bring it again for #StateFarmSaturday. Watch all the action on 2/18 at 8pm EST on TNT. Don't miss it! +01/03/2017,Sports_celeb,@KlayThompson,I see u @WSUMensHoops!! https://t.co/83cRrFMeGs +01/03/2017,Sports_celeb,@KlayThompson,Good win 2night startin off 2017 the right way. We appreciate u DubNation showing up and supporting us every night! +12/31/2016,Sports_celeb,@KlayThompson,U will be missed my friend +12/31/2016,Sports_celeb,@KlayThompson,RIP Walt Simon. I cherish the times u were in the gym grinding with us every summer. Those times molded me into the player I am 2day. +12/18/2016,Sports_celeb,@KlayThompson,Go Cougs https://t.co/aejhk7pKh4 +12/15/2016,Sports_celeb,@KlayThompson,RIP Craig. You will be missed greatly by every single hoops fan out there. Sending my condolences to his family #Legend #sagerstrong +12/10/2016,Sports_celeb,@KlayThompson,"Catch me at leftys on the 16th!! +For tix 📞 650-697-2274 https://t.co/qlAHtbFZZE" +12/07/2016,Sports_celeb,@KlayThompson,You wanna make it rain 👌🏽 https://t.co/wVXzMKx6On +12/07/2016,Sports_celeb,@KlayThompson,I appreciate @AntaAmerica for making a special edition KT2 to commemorate my 60 piece a couple nights ago. Get em now in the link above if +12/06/2016,Sports_celeb,@KlayThompson,S/O to my squad for setting me up 2night! I don't think I had to take more then 5 dribbles the whole game lol +11/28/2016,Sports_celeb,@KlayThompson,DubNation! Come join me and my @stancehoops fam tomorrow at @ShoePalace. Gonna be 🔥 https://t.co/f4wtgKicM7 +11/25/2016,Sports_celeb,@KlayThompson,"So this is what @champagnennuts view looks like at ""work""...pretty easy gig if u ask me!! https://t.co/EiLRSjjABL" +11/03/2016,Sports_celeb,@KlayThompson,Got Rocco on my new @stancehoops socks! 🔥🔥 https://t.co/wuJNwZdYnt https://t.co/6ELlqEfYDx +10/09/2016,Sports_celeb,@KlayThompson,So happy I'm witnessing my cougs ball out tonight. Let's go @WSUCougars +09/23/2016,Sports_celeb,@KlayThompson,RT @KMillar15: My man @klaythompson taking a few swings early before #VinScullyDay and I thought he had a tick… https://t.co/zgMtYZR3m8 +09/20/2016,Sports_celeb,@KlayThompson,Golden memories with the team! Watch all the videos from the journey to Rio on the @SamsungMobileUS #GearVR. #ad https://t.co/ilvO6WHgRt +09/15/2016,Sports_celeb,@KlayThompson,"Gloves up! Live from the Empower The Athlete Within event with @GQ, @INFINITIUSA and @Furthermore. #Q60" +09/15/2016,Sports_celeb,@KlayThompson,I'm celebrating the athlete within at Equinox San Mateo with the @INFINITIUSA @Furthermore @GQMagazine #Q60 Empower yourself! +08/23/2016,Sports_celeb,@KlayThompson,U-S-A! Feels good to bring home gold. Episode 2 of 'Chasing The Dream'. Watch on the @SamsungMobileUS #GearVR #ad https://t.co/5UnSP02n5d +08/18/2016,Sports_celeb,@KlayThompson,👀 Check out 'Chasing The Dream' & watch our journey to Rio. Shot with the @SamsungMobileUS #Gear360. https://t.co/C7PrAotQir #ad +08/16/2016,Sports_celeb,@KlayThompson,How Cuz playin with a coconut in his hand tho 🤔😂😂😂😂 @boogiecousins https://t.co/oJmIAJMMdX +08/07/2016,Sports_celeb,@KlayThompson,😂😂😂 let joc and roc live!! https://t.co/rcDp0w25fb +08/01/2016,Sports_celeb,@KlayThompson,G'd up from the 👣 up 🇺🇸 https://t.co/3NYZWi5xPQ +07/24/2016,Sports_celeb,@KlayThompson,My guy @RyanSheckler put on a show today and made it look easy. Congrats on the win fam!! 🏆 https://t.co/ntxgdQgrOv +06/30/2016,Sports_celeb,@KlayThompson,RT @getshottracker: @KlayThompson Virtual Basketball camp starts July 10th with a live hangout with the All-Star himself. #Playlikeklay htt… +06/27/2016,Sports_celeb,@KlayThompson,#UNITE https://t.co/F9pelG38a8 +05/30/2016,Sports_celeb,@KlayThompson,Happy Memorial Day to all those who have faithfully served to protect our freedoms. We appreciate you!! +05/11/2016,Sports_celeb,@KlayThompson,"RT @MLBONFOX: TRAYCE THOMPSON SPLASH! + +Thomspon WALK-OFF home run, @Dodgers defeat the Mets 3-2." +05/10/2016,Sports_celeb,@KlayThompson,Congrats to my brother @StephenCurry30 goin back to back! #Unanimous. Keep making history it's an honor to be a part of it!! +04/26/2016,Sports_celeb,@KlayThompson,“@getshottracker: Warriors set an NBA record with 21 💦💦🏀🏀🏀 from deep!!” Thx for the continued support @getshottracker +04/21/2016,Sports_celeb,@KlayThompson,Raspberry Beret on repeat all day. RIP to the Legend Prince!! +04/06/2016,Sports_celeb,@KlayThompson,#Dubnation - ditch artificial sports drinks & switch to the #1 natural sports drink @drinkbodyarmor #Switch2Natural https://t.co/uSpg28vMNt +03/28/2016,Sports_celeb,@KlayThompson,Practice. Repetition. Nothing great ever comes easy. https://t.co/mumu8iHRs1 @getShotTracker #everyshotcounts https://t.co/ilXQHc0bhS +03/19/2016,Sports_celeb,@KlayThompson,RT @MychelThompson: 😎 #doyers https://t.co/B2OSaKQGhJ +03/19/2016,Sports_celeb,@KlayThompson,RT @DrinkBODYARMOR: Team @DrinkBODYARMOR represent: @KlayThompson @DezBryant #WaddupTho https://t.co/KpoccKqPSk +03/10/2016,Sports_celeb,@KlayThompson,I'm hearing the @Broncos r in need of a QB. I know Mr. Buckets is still a free agent @Mospeights16 !!! +03/02/2016,Sports_celeb,@KlayThompson,🔥🔥🔥 @stancehoops https://t.co/3LxDup5MKN +02/13/2016,Sports_celeb,@KlayThompson,Taking over the @DrinkBODYARMOR Twitter handle in 10! Hit me with your questions there +02/13/2016,Sports_celeb,@KlayThompson,ASK ME ANYTHING! Tomorrow @ 2pm EST I’m taking over the @DrinkBODYARMOR handle. Submit Q’s starting now w/ #AskKlay https://t.co/ajMeZ4Dj8R +02/11/2016,Sports_celeb,@KlayThompson,Look forward to meeting everyone tomorrow at 6pm! I'll be at @Kia MVP Court at #NBACentreCourt! #NBAAllStarTO +02/08/2016,Sports_celeb,@KlayThompson,"Bay Area, meet me tonight @LeftysSports w/ @FansAuthentic. #DubNation #FAexclusive https://t.co/rKxQQ4WCjo" +01/22/2016,Sports_celeb,@KlayThompson,.@DrinkBODYARMOR & I giving u the chance to fly to LA & watch us take on @KobeBryant. Check info within pic! https://t.co/mGE1xqXzy9 +01/18/2016,Sports_celeb,@KlayThompson,One of the first paintings I ever bought and one of my favorites. His legacy and message is timeless. Happy MLK day https://t.co/L4h6EOesL2 +01/17/2016,Sports_celeb,@KlayThompson,@MychelThompson https://t.co/WmfGlkZu04 +01/17/2016,Sports_celeb,@KlayThompson,Kookslams/kookoftheday IG is the 🐐 +01/06/2016,Sports_celeb,@KlayThompson,Nice work @getshottracker on your new multi-player tech. #CES2016 #everyshotcounts +12/23/2015,Sports_celeb,@KlayThompson,The Juntao cameo was the best part of Star Wars #spoileralert +11/23/2015,Sports_celeb,@KlayThompson,.@Money23Green- yes sir! Dope action on #SiegeDay. Watch: https://t.co/a00yi2XjE4 #ad +11/23/2015,Sports_celeb,@KlayThompson,RT @hbarnes: 15! #DubNation +11/20/2015,Sports_celeb,@KlayThompson,"It takes a team to win, right @Money23Green? just like in @Rainbow6Game. Lets get it done #DubNation" +11/15/2015,Sports_celeb,@KlayThompson,Dubs win and the cougs win couldn't ask for a better night +11/15/2015,Sports_celeb,@KlayThompson,Gaaaaaaaaaaaabe! Let's go +11/09/2015,Sports_celeb,@KlayThompson,RT @bucketsworth: 35 mins till I'm live with @getshottracker get your questions ready +11/02/2015,Sports_celeb,@KlayThompson,Come hang with me live on @getshottracker https://t.co/UFGZh5MY9V +11/01/2015,Sports_celeb,@KlayThompson,RT @MychelThompson: #ForzaVarese https://t.co/MIuf6lqqrT +11/01/2015,Sports_celeb,@KlayThompson,RT @Mbezz13: 😔 +10/28/2015,Sports_celeb,@KlayThompson,It's not about the numbers or the individual accolades. It's about these moments u share with your… https://t.co/ssG2AXHVxH +10/26/2015,Sports_celeb,@KlayThompson,The NBA family lost a great guy today. RIP Flip. Sending my condolences to his team and family https://t.co/tu07ZXCjTA +10/22/2015,Sports_celeb,@KlayThompson,Blessed and thankful for the opportunity!! https://t.co/OuNdACMcd9 +10/19/2015,Sports_celeb,@KlayThompson,A tough weekend for the Thompson fam. But also a great weekend of celebration for Paul and Patty who… https://t.co/sVnse88YQW +10/17/2015,Sports_celeb,@KlayThompson,"RT @JayBilas: Almost fell for the bait, almost fell for the hate. And, I'm the same one that let all y'all eat off my plate. I gotta go to …" +10/16/2015,Sports_celeb,@KlayThompson,Happy birthday @brockm12. Too many good times on the Palouse and around the world with my guy! #duplex #boyz #bjornstadstwin +10/15/2015,Sports_celeb,@KlayThompson,Great day to be a warrior https://t.co/ssSFB081an +10/14/2015,Sports_celeb,@KlayThompson,RT @warriors: Watch out SF - @KlayThompson & @Money23Green have the key to the city! 🔑 http://t.co/CsGSQFcaLP +10/12/2015,Sports_celeb,@KlayThompson,RT @Be_LikeIKE: #SKYBLUE ⛅️ +10/12/2015,Sports_celeb,@KlayThompson,Rocco's new spot Fort Funtson #SF http://t.co/ayxcxAK2H7 +10/11/2015,Sports_celeb,@KlayThompson,RT @getshottracker: Primetime is nearing. Get ready w/ @KlayThompson & our experts +70 new drills. The KT3000 starts 11/1. You in? http://t… +10/11/2015,Sports_celeb,@KlayThompson,Let's go cougs!!! Woooo!!! Too hyped right now +10/10/2015,Sports_celeb,@KlayThompson,Maya Moore cold blooded +10/06/2015,Sports_celeb,@KlayThompson,Thanks for the amazing reception San Jose!! Dubs fans are the best in the world!! #DubNation #TheBaysTeam +10/04/2015,Sports_celeb,@KlayThompson,I would pay a lot of money for an original ABA ball +10/02/2015,Sports_celeb,@KlayThompson,Still can't believe what happened in Roseburg. Sending my thoughts and prayers to the families affected by this unimaginable act of violence +10/01/2015,Sports_celeb,@KlayThompson,DubNation please wish our leader @SteveKerr a speedy recovery. His presence on the floor will be greatly missed during his time off +09/27/2015,Sports_celeb,@KlayThompson,RT @taliqdavis11: Went to go meet klay Thompson http://t.co/K40THKIMvF +09/26/2015,Sports_celeb,@KlayThompson,"RT @Athletics: One pitch, three points! Nice throw @KlayThompson. #GreenCollar 🎥 http://t.co/WudKNx4mY6" +09/15/2015,Sports_celeb,@KlayThompson,"RT @brodiebrazilCSN: Yep, @KlayThompson's bro just went #Splash against the #Athletics. http://t.co/xZkGJyqvH9" +09/13/2015,Sports_celeb,@KlayThompson,RT @bward09wsu: @klaythompson go titans. +09/13/2015,Sports_celeb,@KlayThompson,The better team came to play today sorry bro https://t.co/WfcvA55h5J +09/04/2015,Sports_celeb,@KlayThompson,Simply put this video is just amazing. Gets me so hyped to play in front of the best fans in the world this season https://t.co/BQmJQ1twnz +09/03/2015,Sports_celeb,@KlayThompson,Join me in the Crimzone w/ the O’Brien Trophy this Sat. Let’s pack this place Cougs! @zzucru @wsucougfb @CougarAthFund @WSUCougars #GoCougs +09/03/2015,Sports_celeb,@KlayThompson,Check out the new @DrinkBODYARMOR vehicle #UpgradeYourSportsDrink http://t.co/xVeGeKH0UX +08/31/2015,Sports_celeb,@KlayThompson,😂😂😂😂😂 https://t.co/ZGdjYpPlZK +08/26/2015,Sports_celeb,@KlayThompson,My job takes me around the world and I am very grateful for it. Thanks for the fun interview @TravelLeisure! https://t.co/YrwzTH9ZX9 +08/26/2015,Sports_celeb,@KlayThompson,RT @BDA_Sports: Happy #NationalDogDay from @KlayThompson & Rocco! http://t.co/8LTeliXNdn +08/26/2015,Sports_celeb,@KlayThompson,@espnSteveLevy @BBTN that's big time Steve ✊ +08/26/2015,Sports_celeb,@KlayThompson,I hate to admit it but Trayce might be the best overall athlete in the fam lol +08/26/2015,Sports_celeb,@KlayThompson,RT @whitesox: Recap: Trayce provides clutch hitting in @WhiteSox victory. http://t.co/hhY0lkiygM http://t.co/5Qu9xXzQQ8 +08/26/2015,Sports_celeb,@KlayThompson,"RT @whitesox: Have a night, Trayce. 3-4, 3 RBI's, now batting .522 on the season! http://t.co/UuWklh1Dks" +08/26/2015,Sports_celeb,@KlayThompson,"RT @whitesox: #SOXWIN Final: #WhiteSox 5, Red Sox 4. http://t.co/8A4sU1HYR4" +08/23/2015,Sports_celeb,@KlayThompson,Day 1s @hbarnes https://t.co/jPaH8e570J +08/23/2015,Sports_celeb,@KlayThompson,@brockm12 😈...congrats @andrewbogut ...ur 🍍 game still weak lol https://t.co/ancdAm5qsq +08/23/2015,Sports_celeb,@KlayThompson,RT @whitesox: Trayce didn't waste any time getting the #WhiteSox on the board in the 2nd. http://t.co/gi7XIU4Obx http://t.co/ULVbQDSvtd +08/12/2015,Sports_celeb,@KlayThompson,😂😂😂😂 welcome to the show rookie https://t.co/lU7WcSmcLc +08/12/2015,Sports_celeb,@KlayThompson,Lets goooooooooo!!! I see u trizzy! https://t.co/i1as5hsV6C +08/05/2015,Sports_celeb,@KlayThompson,RT @MychelThompson: The big 3 https://t.co/Jvl2L98MMl +08/05/2015,Sports_celeb,@KlayThompson,RT @joemclean15: In the Show. Trayce Thompson #perseverance https://t.co/RGHHrD3LC1 +08/04/2015,Sports_celeb,@KlayThompson,RT @Dj_E5QUIRE: Spent this last Sunday giving back to the kids of the #SpecialOlympics with @klaythompson! Always fun… https://t.co/ZdxQu7P… +08/02/2015,Sports_celeb,@KlayThompson,Yessir makes me proud to see all the hard work u put in payin off T https://t.co/EGexSF8HjK +07/30/2015,Sports_celeb,@KlayThompson,Amen https://t.co/HQPXVEhAvu +07/19/2015,Sports_celeb,@KlayThompson,Mick fanning a beast for that +07/17/2015,Sports_celeb,@KlayThompson,"RT @MychelThompson: Blessed for the opportunity, this game can take u all over the world...excited to be joining… https://t.co/XAG3885LME" +07/09/2015,Sports_celeb,@KlayThompson,Proud of @JustHolla7 for signing with the Hawks. One of the hardest workers I've been around congrats my man! +07/07/2015,Sports_celeb,@KlayThompson,"It's tough to see my big bro D Lee go, Boston gotta great player and true pro. A true vet who looked… https://t.co/D1msdyV6n8" +07/02/2015,Sports_celeb,@KlayThompson,Excited to be nominated for an @ESPYS award for Best Record Breaking Performance! http://t.co/5EXvqshXhk +06/27/2015,Sports_celeb,@KlayThompson,DONE @getshottracker! Now for some R&R. #KlayCamp see you Sun 5:00 PDT for live awards. http://t.co/H4UTWJfqPl http://t.co/6TlGWCD1Jy +06/26/2015,Sports_celeb,@KlayThompson,5 down 1 to go @getshottracker. Live feed awards Sun 5:00 pm PDT. Join here. http://t.co/H4UTWJfqPl #KlayCamp http://t.co/NPS0VEx1IT +06/26/2015,Sports_celeb,@KlayThompson,Thanks @mophie for helping me stay charged http://t.co/tdah30QxcZ +06/25/2015,Sports_celeb,@KlayThompson,"@getShotTracker Matthew5 up top at 90%, but no Day 4 yet. JordanTreyBoyd on it early today w/92%. #KlayCamp http://t.co/pKsiU2fzps" +06/28/2018,Sports_celeb,@WWERomanReigns,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/26/2018,Sports_celeb,@WWERomanReigns,"West coast vest!!! Ahhhh yessir, My close friends @KotulskiGear are a constant staple for me felling good, looking… https://t.co/a70CV9LMxW" +06/26/2018,Sports_celeb,@WWERomanReigns,"Take your eyes off the prize, you may lose it. I know where I’m going, I know what I want. #MyYard #Raw #B2R" +06/24/2018,Sports_celeb,@WWERomanReigns,"This isn’t a college mat or an octagon. This is the squared circle, aka My Yard. So do yourself a favor Bob, don’… https://t.co/yXFCWQF5vh" +06/23/2018,Sports_celeb,@WWERomanReigns,RT @StephMcMahon: #Emmys MEET #RAW25. At over 1300 episodes #RAW is the longest running weekly episodic television show in U.S. history. R… +06/20/2018,Sports_celeb,@WWERomanReigns,"Don’t get attached to it, cuz I’m not! 🤣 https://t.co/wqg26LbHPQ" +06/19/2018,Sports_celeb,@WWERomanReigns,"I mean it when I say it, this is #MyYard. Doesn’t matter how many you put in the match at #ExtremeRules, I’m only f… https://t.co/QLYyQm1fh8" +06/19/2018,Sports_celeb,@WWERomanReigns,"RT @DOMTIBERI: .@WWERomanReigns please share. + +We do not want to see any other child become a statistic. Please support Maria's Ride & help…" +06/18/2018,Sports_celeb,@WWERomanReigns,"Match-by-match, city-by-city. That’s what’s built the #RomanEmpire. Every time I walk in the ring, it’s an opportun… https://t.co/znQmkqAy3b" +06/17/2018,Sports_celeb,@WWERomanReigns,"Everyone wants to make a name. +They better be ready to fight for it. Because I always am. +#MyYard #B2R #MITB" +06/16/2018,Sports_celeb,@WWERomanReigns,"RT @WWE: .@WWERomanReigns looks to make Melbourne Australia's @MCG his yard on Saturday, October 6. Believe that. #WWESSD https://t.co/4eqm…" +06/09/2018,Sports_celeb,@WWERomanReigns,Big words from a scared man. You want to make a challenge? Get ready for the biggest fight of your career. Just ano… https://t.co/i8Nt07VkkQ +06/07/2018,Sports_celeb,@WWERomanReigns,RT @WWE: #TheBigDog @WWERomanReigns walks the red carpet at #WWEFYC! https://t.co/n2sublAPsn +06/07/2018,Sports_celeb,@WWERomanReigns,"Proud to take part in the first #WWEFYC. @WWE and its Superstars have created so many memories over the years, it w… https://t.co/JvJlimHuTX" +06/04/2018,Sports_celeb,@WWERomanReigns,Yes ma’am. Best days are always ahead. Keep working at it. #YouCanYouWill #Progression https://t.co/oBK1LH1tss +06/02/2018,Sports_celeb,@WWERomanReigns,"RT @WWEShop: Unleash the #BigDog! New @WWERomanReigns tee now available at #WWEShop. #WWE #RomanReigns +https://t.co/xHhn7mdzvo https://t.co…" +05/28/2018,Sports_celeb,@WWERomanReigns,"In honor of Memorial Day, Monday #WWE will donate 10% of all #WWEShop proceeds to @HireHeroesUSA. Gear up and suppo… https://t.co/AGXYW1ZOvF" +05/27/2018,Sports_celeb,@WWERomanReigns,"First of all, it was a grown man that approached me while I was feeding my sons breakfast and talking to my daughte… https://t.co/q8TxUEYtfz" +05/26/2018,Sports_celeb,@WWERomanReigns,My heart and prayers go out to you and your family. Stay strong and continue spreading the word. A difference can… https://t.co/jyuzgHZBy6 +05/22/2018,Sports_celeb,@WWERomanReigns,He took his shot last night. He’ll see what it’s like to step out of line in #MyYard at #MITB. #B2R https://t.co/envvqrHlv1 +05/19/2018,Sports_celeb,@WWERomanReigns,#WWEParis was great!!! Headed to see the Eiffel Tower for the first time ever!!! #WWE +05/17/2018,Sports_celeb,@WWERomanReigns,"Today is NF awareness day! Help spread awareness! + +Neurofibromatosis (NF) is an incurable genetic condition that c… https://t.co/GCari7s98N" +05/15/2018,Sports_celeb,@WWERomanReigns,"Last week you stepped up. +This week you got knocked down. +Be smart. Stay there. #B2R #Raw" +05/13/2018,Sports_celeb,@WWERomanReigns,"Might have made a name for yourself elsewhere, but I wouldn’t plan on making it off mine. This is #Raw and it’s… https://t.co/XXTm6X7149" +05/07/2018,Sports_celeb,@WWERomanReigns,"If the briefcase is the only way to get back what is rightfully mine, so be it.... +#MITB is my golden ticket. #Raw https://t.co/ySHU1kcWEF" +05/07/2018,Sports_celeb,@WWERomanReigns,"It’s not always about titles...it’s about respect and proving who runs the yard. +Another night. Another point made. #B2R #WWEBacklash" +05/02/2018,Sports_celeb,@WWERomanReigns,It’s important to support young female athletes in every sport because one day...it’ll be #TheirYard. #SheIs https://t.co/UJ7RoBhXBd +05/02/2018,Sports_celeb,@WWERomanReigns,"Selfie videos on #Raw, all over Brock’s jock on #SDLive....busy week for Samoa Joe. + +.. Lots of talk for a man who’… https://t.co/D0aKQpxMsA" +04/27/2018,Sports_celeb,@WWERomanReigns,"Nothing in @WWE has ever been “given” to someone. You have to take every inch, especially from an athlete like Broc… https://t.co/kAouIoeLpQ" +04/26/2018,Sports_celeb,@WWERomanReigns,"RT @Turki_alalshikh: أعظم حدث في تاريخ WWE 💪🏼 + +هنا في السعودية 🇸🇦 + + #أعظم_رويال_رامبل https://t.co/mQ7Zg0H5De" +04/25/2018,Sports_celeb,@WWERomanReigns,Huge thanks to all the @Redskins staff and players for sharing their great facility with @TitusONeilWWE and myself.… https://t.co/RZvS8nJb1Z +04/24/2018,Sports_celeb,@WWERomanReigns,"Been wheels up for two weeks. +South Africa, St. Louis, now Saudi Arabia for #WWEGRR. Luggage is gonna be a little… https://t.co/3AAxZfvPBT" +04/18/2018,Sports_celeb,@WWERomanReigns,Long way to go to get your ass whooped... #WWECapeTown https://t.co/HAjpyCAXfV +04/17/2018,Sports_celeb,@WWERomanReigns,I miss my Brother so much. He will be forever loved and never forgotten. #RIPMatt +04/10/2018,Sports_celeb,@WWERomanReigns,"Any show. +Any city. +Any country. +Any opponent. + +I’ll fight. #B2R https://t.co/Skgobxjkva" +04/08/2018,Sports_celeb,@WWERomanReigns,"One match at a time. +Every night on the road, every mile traveled, every day away from home leads here. + +To the m… https://t.co/qU20F3oL7r" +04/07/2018,Sports_celeb,@WWERomanReigns,The Empire WILL bring the fight to The Beast tomorrow! So get this shirt today at the WrestleMania SuperStore at A… https://t.co/fnpoJpZaEH +04/07/2018,Sports_celeb,@WWERomanReigns,"That’s why I don’t sell the negativity, I have the most loyal supportive fans in the world! Don’t worry tho... It… https://t.co/ihVjj2V7VK" +04/07/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@Jarrius lit up the room as he accepted the #WarriorAward at the 2018 #WWEHOF! https://t.co/voexZ1QrlY https://t.co/ARqgZF1dKH +04/07/2018,Sports_celeb,@WWERomanReigns,"I always got your back @Jarrius ...thanks for always having mine! +Congratulations on your #WWEHOF induction my man! https://t.co/oNkjSS4qLk" +04/06/2018,Sports_celeb,@WWERomanReigns,RT @JimmyTraina: So @WWERomanReigns was nice enough to come on my podcast. I asked him about being 42 years old. He's 32 years old. So much… +04/04/2018,Sports_celeb,@WWERomanReigns,RT @NBCSports: .@HeymanHustle: Working with @WWERomanReigns would be an absolute career defining moment for me https://t.co/HMwuZRok5N http… +03/27/2018,Sports_celeb,@WWERomanReigns,Creepy. https://t.co/kKXalXvtSX +03/06/2018,Sports_celeb,@WWERomanReigns,You'll always know where I stand. Because you know where I stand. Every week. #Raw +02/26/2018,Sports_celeb,@WWERomanReigns,"3 years in the making. +4 times in a row. +The Main Event. +@WrestleMania #ReignsvsLesnar" +02/25/2018,Sports_celeb,@WWERomanReigns,"Old saying: What’s old, +is new. Learn from the past, and create something new. When in doubt just do you.… https://t.co/TD8E5Dfabt" +02/20/2018,Sports_celeb,@WWERomanReigns,You live to fight another day. Respect to @WWERollins for going over an hour in the ring on #Raw...but at… https://t.co/XyA3fqvdip +02/20/2018,Sports_celeb,@WWERomanReigns,"No. A Samoan is “basically” a Samoan, and we are extremely proud of our culture. But if u did any research at all,… https://t.co/sNWZmIaof5" +02/18/2018,Sports_celeb,@WWERomanReigns,"Sunday.... +Monday... +Any day of the week. It's always #OneVersusAll. +#WWEChamber #GauntletMatch https://t.co/aS6H8iLxPt" +02/13/2018,Sports_celeb,@WWERomanReigns,"At #WWEChamber 7 men may enter, but only one is going to the main event of #WrestleMania... me. +#WitnessMe #4x" +02/09/2018,Sports_celeb,@WWERomanReigns,".@WWEUK, the Big Dog is coming back in May... https://t.co/erlSdskXbl https://t.co/MYC13X2xRu" +02/09/2018,Sports_celeb,@WWERomanReigns,RT @WWECommunity: #WWE celebrates #BlackHistoryMonth - Memphis Sanitation Strike @NCRMuseum https://t.co/J5KImo1sI1 +02/06/2018,Sports_celeb,@WWERomanReigns,Head down. Clear path. I’m going to #WrestleMania. #4x #WWEChamber #WitnessMe https://t.co/shuvJ3n17I +02/04/2018,Sports_celeb,@WWERomanReigns,"The road to #WrestleMania is clear. I’m running through every roadblock put in my way. #Raw, #WWEChamber, and then… https://t.co/uvIRW27jzx" +01/30/2018,Sports_celeb,@WWERomanReigns,RT @Haloti_Ngata92: You the man @WWERomanReigns Much respect brother. https://t.co/ccvkaBqvtR +01/29/2018,Sports_celeb,@WWERomanReigns,A lot of excitement around last night’s #RoyalRumble but don’t think I’ve forgotten about Miz. I’m taking back what… https://t.co/5b3bbodzGM +01/27/2018,Sports_celeb,@WWERomanReigns,"Trip, you’re going to @WWE @WrestleMania! Thanks to @MakeAWish and @JimmysSeafood for helping bring his wish to rea… https://t.co/4cTQIcaozl" +01/23/2018,Sports_celeb,@WWERomanReigns,#Raw25 was a special night for @WWE and Brooklyn didn’t disappoint. Not the outcome I was expecting but every day i… https://t.co/FME0aKnj8e +01/22/2018,Sports_celeb,@WWERomanReigns,"A busy day in NYC and we’re just getting started. Thanks to @NYSE and my new buddy Abraham. + +Time to go to work, r… https://t.co/yPSzqCHf5E" +01/22/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns had another successful night at #WWEBinghamton. Now it’s on to #RAW25! #BelieveThat https://t.co/nycvhgjoL6 +01/16/2018,Sports_celeb,@WWERomanReigns,"RT @WWEShop: Say ""This is My Yard"" with the new @WWERomanReigns authentic t-shirt at #WWEShop. #WWE #RomanReigns +https://t.co/sNuOWm3R2u ht…" +01/16/2018,Sports_celeb,@WWERomanReigns,I’m representing myself AND my family... #RawOGs #TheBloodline https://t.co/JvP0vnTcwo +01/14/2018,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Only 20 hours left to Vote https://t.co/H80OMnmwCk for Gulf Islands National Seashore so help your #850Boyz @WWERomanR… +01/12/2018,Sports_celeb,@WWERomanReigns,So your saying my punch is fit for the Big screen...🤔. Thanks!! 👍🏽But you might want to go back and check those GT… https://t.co/yNXot5Rdze +01/12/2018,Sports_celeb,@WWERomanReigns,"Miz’s workout consist of wearing 20lbs(Btw don’t go to heavy now!), walking around and making videos. 😂 #Raw is go… https://t.co/GiEqmEW2fH" +01/09/2018,Sports_celeb,@WWERomanReigns,Miz will get his rematch for the #ICTitle at #Raw25....only if he makes it out of #Raw next week. #WitnessMe +01/09/2018,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Help out your #PENSACOLABOYZ and vote GULF ISLANDS NATIONAL SEASHORE at https://t.co/H80OMnmwCk @WWERomanReigns @WWEUso… +01/08/2018,Sports_celeb,@WWERomanReigns,RT @WWE: .@SashaBanksWWE and @WWERomanReigns listen to the iconic words of #MLK at @NCRMuseum in #Memphis. https://t.co/APhhzFPXCF +01/08/2018,Sports_celeb,@WWERomanReigns,"Surrounded by history in the @NCRMuseum in #Memphis. Treat each other right, respect the struggles of the past, cre… https://t.co/6djq4zafBE" +01/02/2018,Sports_celeb,@WWERomanReigns,Help @Haloti_Ngata92 and his family continue their amazing generational service. Watch this and you’ll understand.… https://t.co/Wijd3mvTLK +01/02/2018,Sports_celeb,@WWERomanReigns,"No rules, house rules... no matter what: I reign. +#WitnessMe #AndStill #Raw" +12/30/2017,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns comments on the stipulation that he will LOSE the #ICTitle Championship if he is Disqualified against @SamoaJoe t… +12/26/2017,Sports_celeb,@WWERomanReigns,"Worth every penny. +No time to worry... +Tonight I’m in NYC at #WWEMSG #WitnessMe https://t.co/sfdiCpsV5u" +12/26/2017,Sports_celeb,@WWERomanReigns,"I’m a man of my word. +If you hurt my brother, I WILL hurt you. +Just ask @SamoaJoe. +#WitnessMe #Raw" +12/23/2017,Sports_celeb,@WWERomanReigns,"RT @WWEArmstrong: Hey Charles, your a good man!THIS is why we do WHAT WE DO!!Merry Christmas!!! @TripleH @WWERoadDogg @ScrapDaddyAP @ringfo…" +12/21/2017,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: Ok guys help out the #850 and please vote GULF ISLANDS NATIONAL SEASHORE! @WWERomanReigns @WWERoadDogg @WWEUsos @MichaelP… +12/21/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: 👨🏽‍🍳 The Stage Is Set! 📺TOMORROW NIGHT! Chef Tony takes on @bflay on #BeatBobbyFlay! Coincidentally, the episode is titl…" +12/12/2017,Sports_celeb,@WWERomanReigns,RT @Haloti_Ngata92: Help me win this year’s charity challenge by tweeting #WPMOYChallenge  + Ngata. $25K could go to my foundation! Please… +12/12/2017,Sports_celeb,@WWERomanReigns,Good luck Uso!! #WPMOYChallenge + Ngata 🤙🏽 https://t.co/i9rUJeVW5p +12/12/2017,Sports_celeb,@WWERomanReigns,"Say what you want about @WWECesaro but the man is one of a kind in the ring. +Mad respect for the fight he brought… https://t.co/q1lZYycuOD" +12/10/2017,Sports_celeb,@WWERomanReigns,"Defended the #ICTitle in front of some of the best crowds in #WWEAbuDhabi and @WWEIndia. +Next stop is #Raw. +Next… https://t.co/Ow2kfjcrmu" +12/09/2017,Sports_celeb,@WWERomanReigns,...and sometimes you wanna see if you can still play the game. #AndStill #NextStopNewDelhi https://t.co/pjibscCIuk +12/05/2017,Sports_celeb,@WWERomanReigns,It’s an open challenge to anyone. Anyone named Samoa Joe. #Raw https://t.co/gECSqGSA9h +12/03/2017,Sports_celeb,@WWERomanReigns,RT @WWEArmstrong: ALWAYS the 1st and BEST ornament on the 🌲! #PensacolaBeachSIGN #850 @WWEUsos @WWERomanReigns @MichaelPSHayes1 @WWERoadDog… +11/29/2017,Sports_celeb,@WWERomanReigns,RT @WWERollins: ...Time to call up the Lunatic. #TheShield is about to have alllll the titles. #BreakTheBar #BelieveThat #Raw +11/21/2017,Sports_celeb,@WWERomanReigns,"Wherever I am, consider it My Yard. +So if you want my title... +...all you have to do is step up. #Raw https://t.co/jjJaklC5fF" +11/20/2017,Sports_celeb,@WWERomanReigns,Roll with #TheBigDog. Protect the yard. Only available in the WWE Slam Crate. Use code BIGDOG15 for 15% off:… https://t.co/C4bRlqoniG +11/20/2017,Sports_celeb,@WWERomanReigns,"Nobody leads #TeamRed like #TheShield. + +Red - 1 +Blue - NAAAAAAAHHTING! + +#SurvivorSeries" +11/16/2017,Sports_celeb,@WWERomanReigns,"We’re both repping #Raw at #SurvivorSeries but... +Dec 8th in #WWEAbuDhabi + +The Big Dog vs The Game. +THE MAIN EVENT… https://t.co/KKvvP0lUzu" +11/15/2017,Sports_celeb,@WWERomanReigns,RT @MCWWrestling: Sign up for @WWEMercury’s Finishing Class TODAY & learn from the man that was recently referred to as the 4th member of #… +11/15/2017,Sports_celeb,@WWERomanReigns,"It’s been a wild 24 hours, but there is no doubt....the Big Dog is back. +#JustAskSmackdown" +11/14/2017,Sports_celeb,@WWERomanReigns,RT @WWE: EXCLUSIVE: If we've established one thing... It's that #TheShield likes to FIGHT! #RAW https://t.co/SRaH2e5zPM +11/14/2017,Sports_celeb,@WWERomanReigns,Good to be Home! And.... A great win against VT!!! Looks like the real Tech showed up on Saturday! #OurYard https://t.co/eUvz8ttyCN +11/14/2017,Sports_celeb,@WWERomanReigns,Glad yall could check me out tonight. Always a blessing to catch up with the Brothers you went to battle with on t… https://t.co/WcRUCOkbEw +11/08/2017,Sports_celeb,@WWERomanReigns,Actually I’m closer to 275. I’m also 6 inches taller than “Big” but not that “Tall” E. 😱 https://t.co/YTa2GpPNt5 +11/01/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: Sit down with The #HoundsOfJustice on#TableFor3, immediately after #RAW on @WWENetwork! @WWERollins @TheDeanAmbrose @WWERomanReign…" +10/19/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: For the first time in three years, it was once again time for @WWERomanReigns @WWERollins and @TheDeanAmbrose to make that walk...…" +10/18/2017,Sports_celeb,@WWERomanReigns,Rotten. 🤢 https://t.co/AvnvJlulYD +10/17/2017,Sports_celeb,@WWERomanReigns,Rough night but these little angels made it all worth it!!! So grateful. #Family #Raw https://t.co/3arsgYmu6L +10/17/2017,Sports_celeb,@WWERomanReigns,RT @SashaBanksWWE: @TitusONeilWWE @WWERomanReigns @WWE Loved her! She is so adorable +10/17/2017,Sports_celeb,@WWERomanReigns,Inspiration! Love you Kit Kat! https://t.co/nLHnWxhn6R +10/15/2017,Sports_celeb,@WWERomanReigns,"Before we burn down #WWETLC, The Shield will own #Raw and claim Portland, OR as OUR Yard. #Workhorses https://t.co/PtIGFXNJVz" +10/15/2017,Sports_celeb,@WWERomanReigns,I don’t even need to click the link and watch it. If that house didn’t draw over 100K. He’s just talking silly.… https://t.co/8THJFGi3EZ +10/15/2017,Sports_celeb,@WWERomanReigns,"If you didn’t completely screw this tweet up. It would have been great!That’s their mountain, I’m here to build my… https://t.co/S9obn8cbTt" +10/14/2017,Sports_celeb,@WWERomanReigns,Me and my boys beat the DX! No need to celebrate them. #TheRealestGeneration is what I celebrate and represent. https://t.co/fQpLu42ZnP +10/13/2017,Sports_celeb,@WWERomanReigns,RT @WWEIndia: Tickets for #WWELive in #India are now open! Book them here: https://t.co/r7RdyuQVEp https://t.co/LKpy3rFCKq +10/11/2017,Sports_celeb,@WWERomanReigns,RT @WWE: Don't miss @WWERomanReigns and @BraunStrowman collide inside a #SteelCage LIVE NEXT MONDAY on #RAW at 8/7c on @USA_Network! https:… +10/04/2017,Sports_celeb,@WWERomanReigns,RT @WWE: We stand with Las Vegas. #VegasStrong https://t.co/3koBr5poCV +10/03/2017,Sports_celeb,@WWERomanReigns,Sons & daughters. Brothers & sisters. All innocent. God bless those affected & prayers for a future w/o this violence. #PrayForLasVegas +09/30/2017,Sports_celeb,@WWERomanReigns,RT @BookerT5x: Only 1 hour left on @WWERomanReigns gloves! https://t.co/4WqBlUDmkr @eBay +09/30/2017,Sports_celeb,@WWERomanReigns,Guest!!!!???? 😂 Ima produce the damn thing!!! https://t.co/o5AcRWFgWP +09/30/2017,Sports_celeb,@WWERomanReigns,"Strong win at home for Georgia Tech. +So happy I caught the 2nd half! Go Tech!! #UNCvsGT #OurYard" +09/27/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: Two HUGE main event matches await you next week on #RAW, LIVE on @USA_Network! https://t.co/J937HR8vtN" +09/26/2017,Sports_celeb,@WWERomanReigns,RT @JimmysSeafood: Roman Reigns proudly sporting our latest @UnderArmour sleeveless hoodie before his match with John Cena. #RomanEmpire #T… +09/25/2017,Sports_celeb,@WWERomanReigns,... but make no mistake. I'm still the #TopDog in this yard. +09/25/2017,Sports_celeb,@WWERomanReigns,"Whether u exchange harsh words or harsh blows, u don't leave a fight w/o respect for a warrior +Respect for past, present & hopefully future." +09/24/2017,Sports_celeb,@WWERomanReigns,"I don't come up with catchy slogans. +My life isn't a corny catchphrase. +I was born to reign. + +Tonight, you'll see why. #WWENoMercy" +09/21/2017,Sports_celeb,@WWERomanReigns,"RT @BookerT5x: Here are @WWERomanReigns’ signed gloves! Please bid, all money going to hurricane victims. https://t.co/4WqBlUDmkr https://t…" +09/20/2017,Sports_celeb,@WWERomanReigns,"RT @BCampbellCBS: #InThisCorner podcast: WWE + +@WWERomanReigns talks Cena feud, his 'big dog' moment & when wrestling made him cry + +https://…" +09/19/2017,Sports_celeb,@WWERomanReigns,"RT @TheKostos: .@BCampbellCBS and I just sat down for 25 minutes with @WWERomanReigns. + +It was awesome. + +It will post on this week's #InTh…" +09/17/2017,Sports_celeb,@WWERomanReigns,RT @WWE: .@WWERomanReigns gives a special thank you to the @WWEUniverse after a successful tour of Australia and New Zealand! #WWELive http… +09/17/2017,Sports_celeb,@WWERomanReigns,Excellent tour to New Zealand and Australia!!! Proud of the #RedCrew . Headed back to ✈️ San Jose for #Raw . #FinishStrong #GoHomeBabe +09/11/2017,Sports_celeb,@WWERomanReigns,"#NeverForget the ones we lost on 9/11. +#NeverForget our armed service men & women. +#NeverForget the freedom we enjoy. +Remember. Honor. Them." +09/10/2017,Sports_celeb,@WWERomanReigns,"Faithless fool. When your time on earth is done, enjoy nothing. https://t.co/gUyNMSZNDU" +09/09/2017,Sports_celeb,@WWERomanReigns,My prayers go out to everyone dealing with Hurricane Irma. May God bless and protect all those in its path. #BeSafe +09/08/2017,Sports_celeb,@WWERomanReigns,You must be asking people on twitter for insults 😂😂 and aren't you a bit old to smack talk online??? See me at #Raw… https://t.co/g0tBlIS6dR +09/08/2017,Sports_celeb,@WWERomanReigns,"Bad things happen when you try to think John. No worries, just have someone film you power cleaning for the 5000th… https://t.co/3xlO5Bnr0A" +09/07/2017,Sports_celeb,@WWERomanReigns,"Looking forward to seeing the #RomanEmpire in Nashville.. +Get your VIP tix to see me @WizardWorld this Sunday, 9/10 +https://t.co/ghOztNdaL2" +09/05/2017,Sports_celeb,@WWERomanReigns,"RESPECT isn't earned with words. +It's earned by action. +He does the talking and I'll do the walking. #WWENoMercy" +08/30/2017,Sports_celeb,@WWERomanReigns,Doing the most important job on Earth: loving on my kids! 😍 https://t.co/ghfvmPebtW +08/29/2017,Sports_celeb,@WWERomanReigns,"Thank you to all the emergency workers in #Houston. It's important to take care of one another. +https://t.co/NM1rInwz0R" +08/26/2017,Sports_celeb,@WWERomanReigns,RT @NEPWildcatsFB: NEP Wildcats getting a big TD run from nephew of @WWERomanReigns. Great run by Iliyas Fuavai! Go Wildcats! https://t.co/… +08/24/2017,Sports_celeb,@WWERomanReigns,Such a Good Brother! Thank you for being so generous and kind. God bless you! 🙏🏽🤙🏽 #JimmysSeafood #RomanEmpire https://t.co/calBAfiEDK +08/23/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: For every ""like"" this tweet receives by noon Thursday (8/24), we will donate $1 to @MakeAWish! #TeamworkMakesTheDreamWor…" +08/23/2017,Sports_celeb,@WWERomanReigns,"The simple question here is to the Kids. Would you rather grow up and be like me, OR the guys from this video!??😂 https://t.co/45OtF2x1Fq" +08/22/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: A war-torn @WWERomanReigns went on @SportsCenter to discuss an INCREDIBLE @SummerSlam! +https://t.co/T1Qv2HxHE8" +08/21/2017,Sports_celeb,@WWERomanReigns,Always a pleasure! Thank u for having me. 🤙🏽 https://t.co/qfy25fqjOX +08/21/2017,Sports_celeb,@WWERomanReigns,This is what really went down! I took what I thought was MY biscuit but @RonKillings def took that Apple Pie. 👀… https://t.co/UV895YEp5M +08/18/2017,Sports_celeb,@WWERomanReigns,That's a lot of hungry babies!! My family definitely isn't scared of reproducing.😂 Thank God 🙌🏽for the work!!🤼‍♂️🤙🏽… https://t.co/0BNRNgeWYJ +08/17/2017,Sports_celeb,@WWERomanReigns,"RT @JimmyTraina: ""I had thousands of people doing exactly what I wanted."" -- @WWERomanReigns to me on his famous post-Mania promo. https://…" +08/17/2017,Sports_celeb,@WWERomanReigns,"RT @JimmyTraina: My Off The Board podcast w @WWERomanReigns is up. Match vs @JohnCena, post-Mania promo, the boos & hate all covered: https…" +08/14/2017,Sports_celeb,@WWERomanReigns,Sorry my man!! @GameOfThrones is my main show right now!! But I'll def check it out. Thanks for another good tal… https://t.co/1tAlRLl3OK +08/01/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: The Big Dog @WWERomanReigns is featured on our new 4K FamousVision screens, installed in time for #SummerSlam, #Mayweath…" +08/01/2017,Sports_celeb,@WWERomanReigns,"I don't like to list my resume... +That's why I go to the ring and explain through my actions. +#SummerSlam #NeverLied #B2R" +07/24/2017,Sports_celeb,@WWERomanReigns,"Real tough guy on Twitter. If u want it, you know the way to MY Yard. #Raw https://t.co/UUSRaQnMVB" +07/24/2017,Sports_celeb,@WWERomanReigns,"Told yall I'm The Big Fight. Heard Philly was a little quiet tonight, better bring their best when we return!!… https://t.co/NZENv8Tfuq" +07/17/2017,Sports_celeb,@WWERomanReigns,The main event is where I belong and where I'll be at #SummerSlam. #TheGuy #MyYard #Raw +07/16/2017,Sports_celeb,@WWERomanReigns,Hope this helps out Rami Bluuuuuuht!!!! It's nice to be nice! Help if u can or spread the word! #SamiForSyria! https://t.co/bn7NZza3Dz +07/16/2017,Sports_celeb,@WWERomanReigns,I'll match that. 10K it is! Now we need to talk about scheduling....🤔 Hit me Monday my Good Brother! https://t.co/vLd05xEgmf +07/15/2017,Sports_celeb,@WWERomanReigns,Charity tournament? Lil bit of fun and a good cause... Thousand $ buy in?... or should we up the Anti... https://t.co/CABpFjLnX8 +07/14/2017,Sports_celeb,@WWERomanReigns,Hey @WWEShop send me a pack of these please! #QuietBeers https://t.co/ogLY8xZ0NE +07/10/2017,Sports_celeb,@WWERomanReigns,I repeat. #WWEGBOF https://t.co/JzNvJUIRs3 +07/09/2017,Sports_celeb,@WWERomanReigns,I've left Dallas with the @WWE World Heavyweight Championship before. Tonight I'm leaving @BraunStrowman in an ambulance. #MyYard #WWEGBOF +07/08/2017,Sports_celeb,@WWERomanReigns,Never met a hater in real life folks! Thanks #WWEMSG !!! https://t.co/ggrAqE0GWZ +06/29/2017,Sports_celeb,@WWERomanReigns,Great to be back!!! 🤙🏽🇯🇵 #Blessed https://t.co/gXWXErsTJP +06/19/2017,Sports_celeb,@WWERomanReigns,RT @USA_Network: Don't miss @WWERomanReigns make his big Summer Slam announcement on an all-new @WWE #Raw TONIGHT at 8/7c https://t.co/gZ03… +06/19/2017,Sports_celeb,@WWERomanReigns,We held them to 49 yards total offense that game. In their own house! #OurYard https://t.co/xiSTEoAm6U +06/18/2017,Sports_celeb,@WWERomanReigns,Happy Father's Day to my Dad and all the others out there. Wish i was home with the Wife and Kids but I'm def missi… https://t.co/ofUBxxUZRc +06/15/2017,Sports_celeb,@WWERomanReigns,RT @JoeVilla_ME: Good people. Check out the link below and help this young lady if you can. Her dad is one of the best people I know https:… +06/15/2017,Sports_celeb,@WWERomanReigns,"Not everyone is going to like what I say, but you don't want to miss it. +My Yard. My Rules. +#Raw #BornToReign https://t.co/r3T1h5Ofpq" +06/13/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: Updated Free Crabcakes For Life List... + +1) @WWERomanReigns +2) @jmac___19 +3) @CrushD19 +4) Manny Machado +5) @JJacks_44…" +06/13/2017,Sports_celeb,@WWERomanReigns,"Oh yea, 🙄I forgot they are ""jobbing"" for free! 😂Clueless #DumbAssMark. BTW all our schedules and responsibilities… https://t.co/bhRH6o5NOw" +06/13/2017,Sports_celeb,@WWERomanReigns,Yea I guess working my butt off 5 days a week while being away from my wife and kids for the last 7 years is being… https://t.co/eKbI6x73Ns +06/12/2017,Sports_celeb,@WWERomanReigns,Let ME give you a tip amateur. @WWE is the Top of the Mountain in Pro Wrestling. A view you'll never deserve or g… https://t.co/lmhHBZcqLU +06/12/2017,Sports_celeb,@WWERomanReigns,Watching my lil girl swim and ride the water slide. Huge thanks to Red Lerille's gym for all the hospitality!! Gre… https://t.co/iSq61VM6ZV +06/06/2017,Sports_celeb,@WWERomanReigns,RT @WWEShop: https://t.co/ubJvWreGR0 https://t.co/7eyIs7aW4y +06/06/2017,Sports_celeb,@WWERomanReigns,Ahhhh yessir!!!! Florida boys out there wrecking it!!! #850 🤙🏽 https://t.co/ow1HS96y2F +06/06/2017,Sports_celeb,@WWERomanReigns,Would love to get some batting practice in some day. See if the old Dog still has it!!! #ChicksDigTheLongBall AKA… https://t.co/9vT2XLyouZ +06/06/2017,Sports_celeb,@WWERomanReigns,"If they wanna keep getting up... +I got no problem knocking em down. #SupermanPunch #BornToReign #IronFistofWWE… https://t.co/7ntqHxIKSp" +06/05/2017,Sports_celeb,@WWERomanReigns,"RT @JimmysSeafood: 🎂 Belated birthday celebrations with the family. Always exciting catching up with Big Uce, @WWERomanReigns! 🤙🏾 https://t…" +06/04/2017,Sports_celeb,@WWERomanReigns,"Tonight I may bend, but the other 4 guys will break. I am The Big Fight! #MyYard #BornToReign #ExtremeRules" +05/31/2017,Sports_celeb,@WWERomanReigns,RT @lukeowensEFC: @WWERomanReigns. Roman celebrating my 30th birthday today. Any chance of a birthday RT from the big dog https://t.co/uas8… +05/30/2017,Sports_celeb,@WWERomanReigns,"As I said tonight, no one OWNS me. #ReignsVsRollins #Raw #BornToReign" +05/29/2017,Sports_celeb,@WWERomanReigns,Whether I stand with or against @WWERollins...#Raw is and will always be #MyYard! #ReignsVsRollins +05/28/2017,Sports_celeb,@WWERomanReigns,"Sorry about the bad week. Just remember, as long as we wake up. Life is good. Oh yea! HBD by the way. 😉 https://t.co/NWs7D142bK" +05/26/2017,Sports_celeb,@WWERomanReigns,RT @Jarrius: Happy birthday to one of the my favorite wrestler @WWERomanReigns your the best and thank you for everything you do for me😎😎😎… +05/23/2017,Sports_celeb,@WWERomanReigns,"I know it took awhile, but I'm proud to present the coolest tee I think I've ever had! Get em while you can!… https://t.co/8XNBIQO17l" +05/17/2017,Sports_celeb,@WWERomanReigns,"You can help save a life today. Knowledge is power, spread the word and help us #EndNF 🙏🏽 https://t.co/Y1i1XCFt1e" +05/17/2017,Sports_celeb,@WWERomanReigns,"Learn from these good brothers!!! I did, look at me now!! #Future https://t.co/r23Yl9AoXn" +05/11/2017,Sports_celeb,@WWERomanReigns,Ahhhhhh yessir!!! https://t.co/yXnsH52q78 +05/09/2017,Sports_celeb,@WWERomanReigns,"#WWELille Thank you for tonight!! It's been a tough few weeks, but tonight really lifted my spirits. #Thankful 🙏🏽" +05/07/2017,Sports_celeb,@WWERomanReigns,"Big yard, big clean! As expected. #Respect for repping @GTAthletics. But i know you'd rather be on #WWEUKLive rig… https://t.co/eECqtqhwB6" +04/30/2017,Sports_celeb,@WWERomanReigns,"Tonight it's ONLY about payback... + +#WWEPayback #MyYard" +04/08/2017,Sports_celeb,@WWERomanReigns,"Must be hard being a grown man, that tweets another grown man cartoons. https://t.co/za0vpR532B" +04/07/2017,Sports_celeb,@WWERomanReigns,5-2!!! Where's your brother at!?!? @WWEUsos 😂😂 I'll whoop em both!!! #TwinLife +04/07/2017,Sports_celeb,@WWERomanReigns,4-2!!!!!! Yesssssssir! +04/07/2017,Sports_celeb,@WWERomanReigns,"As of now, I'm leading the series 3-2. So technically @WWEUsos is gettin ""dis work""!!!🤔😂🤙🏽 #AhhhYessir https://t.co/g0yx8PajJh" +04/06/2017,Sports_celeb,@WWERomanReigns,Can't wait to do it again!!! Thanks for a great conversation and a chance to tell SOME of my story. 😉… https://t.co/LOXapR7k2w +04/04/2017,Sports_celeb,@WWERomanReigns,Loudest seg of the show. Maybe the loudest of the past 2 decades. And I could of stood there for another 15 min.… https://t.co/BpWOlvSxMD +04/03/2017,Sports_celeb,@WWERomanReigns,"I did what I had to at #WrestleMania  but it doesn't change the fact Deadman held the yard down for years. +For that..#ThankYouTaker #Respect" +04/02/2017,Sports_celeb,@WWERomanReigns,"Today, I make history @WrestleMania. #WitnessMe" +04/02/2017,Sports_celeb,@WWERomanReigns,Good look lil monster!! 🤙🏽 #TourMVP 😂 https://t.co/CuZXsKl0St +03/31/2017,Sports_celeb,@WWERomanReigns,"RT @IAmJericho: NOW on @TalkIsJericho, @WWERomanReigns talks #GameOfThrones, CFL, #BrockLesnar, #TheUndertaker, moving furniture & #BackOfT…" +03/31/2017,Sports_celeb,@WWERomanReigns,"RT @WWE: A mishap with @WWERomanReigns' suits for @WrestleMania weekend? Luckily, he has the ""best tailor in the world""... #WrestleMania ht…" +03/28/2017,Sports_celeb,@WWERomanReigns,"RT @IAmJericho: It's #WrestlemaniaWeek week on @TalkIsJericho: +Wed- @BigCassWWE +Fri- By popular demand.... @WWERomanReigns! +https://t.co/i…" +03/28/2017,Sports_celeb,@WWERomanReigns,"In 6 days @WrestleMania, I end the legacy of The Deadman." +03/27/2017,Sports_celeb,@WWERomanReigns,My man is ready!! Happy Birthday Jarrius!!! Hope I see you in Orlando!! 🤙🏽 https://t.co/RWdNSn9hO8 +03/23/2017,Sports_celeb,@WWERomanReigns,You must of been sleep somewhere for the past couple years! #CustomMade https://t.co/1pZOKzcqCI +03/23/2017,Sports_celeb,@WWERomanReigns,"Chris did it again!! Wait til yall see the ""After"" pic!!! https://t.co/Bfx1Jb68ZW" +03/22/2017,Sports_celeb,@WWERomanReigns,If your trying to eat clean and get big. Look up https://t.co/s0wo69Sb87. What a great crew to work with! Huge Th… https://t.co/7dMB9fPv1I +06/28/2018,Sports_celeb,@M_Ryan02,"RT @sryan03: Before you have kids, ask yourself if you’re prepared to spend 90% of your day making a compleeeeete ass of yourself for even…" +06/27/2018,Sports_celeb,@M_Ryan02,"WOW! Nothing is given, gotta earn your way in this #WorldCup #KORGER." +06/11/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: HOOOOOP there it is! + +#MattyIceMonday https://t.co/fQOvHHUABL" +05/29/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Happy birthday to the man who never ages, @Matt_Bryant3! + +RT to show #MoneyMatt💰 some birthday love. https://t.co/eKFmp…" +05/22/2018,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: The ❄️man. https://t.co/PxN33pEWZo +05/17/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Make that birthday wish, #MattyIce❄️! https://t.co/BbFD7mrUBw" +05/17/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: That's our QB! Happy Birthday #MattyIce❄️ + +#ThrowbackThursday https://t.co/ctQVNyYbdp" +05/04/2018,Sports_celeb,@M_Ryan02,"#MayTheFourthBeWithYou + +Happy #StarWarsDay + +#InBrotherhood https://t.co/3IU76AdLDI" +04/27/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: The moment he joined the Brotherhood. + +@CalvinRidley1 officially got the call from Thomas Dimitroff, Dan Quinn and Art…" +04/24/2018,Sports_celeb,@M_Ryan02,"Let’s get to work, Atlanta! Big things ahead! #10YearsOf2 https://t.co/5J5cqvX262" +04/24/2018,Sports_celeb,@M_Ryan02,I’ve waited for this day my entire life. Can’t wait to see where I’m drafted. #10YearsOf2 https://t.co/z79WbJbZ9t +04/24/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Time to turn back the clock! ⏰ + +Draft Day, 2008. Tune in throughout the day to relive the 2008 NFL Draft. It all begins…" +04/08/2018,Sports_celeb,@M_Ryan02,#TheMasters Sunday is one of the most exciting days of the year for golf fans. Where will you be watching?… https://t.co/0ByrIVA2eT +04/08/2018,Sports_celeb,@M_Ryan02,Welcome our boys Marshall and Johnny. #Family #DadLife https://t.co/Euo9AuQdsR +04/07/2018,Sports_celeb,@M_Ryan02,It's moving day at #TheMasters! I've selected my favorite players in My Moments on the Masters app. Check it out.… https://t.co/MxFfVmfggL +04/06/2018,Sports_celeb,@M_Ryan02,I’m all tuned into the action with #TheMasters app. Definitely check it out. #IBMAthlete #IBMsports https://t.co/iDnAsgCp4a +04/06/2018,Sports_celeb,@M_Ryan02,Nothing like winning my first plaid jacket during the Matt-sters. Loved my set of #TommyArmour 845s back in the day… https://t.co/wGvO2jWlaR +04/04/2018,Sports_celeb,@M_Ryan02,I'll be at #TheMasters with @IBMSports on Thursday from 12-1PM EST answering your questions. Tweet them using… https://t.co/yFgrvJqw7i +04/03/2018,Sports_celeb,@M_Ryan02,"#TheMasters is finally here. Download the app, sit back and tune in. Thanks for the rundown @briantong! … https://t.co/IPAcYi2he8" +02/28/2018,Sports_celeb,@M_Ryan02,Good luck to all the guys participating in the #NFLCombine2018 #throwback https://t.co/qoXJnq9Ek3 +02/28/2018,Sports_celeb,@M_Ryan02,I see you @PizzaHut. +02/09/2018,Sports_celeb,@M_Ryan02,"RT @MBUSA: This Mercedes-AMG C 43 is heading to New Hampshire to meet its owner, and Last Fan Standing winner, Joshua D. https://t.co/Fhhzr…" +01/25/2018,Sports_celeb,@M_Ryan02,"Congrats to my good friend @RealCJ10. He was one of the greatest competitors I’ve ever seen, and did it all with cl… https://t.co/C308Df1BRk" +01/16/2018,Sports_celeb,@M_Ryan02,I want to take a minute to thank all of the fans for the continued support all season long. We came up short to an… https://t.co/Uw8Qizwv9Z +01/07/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Next up: the Eagles. + +📝 See how we stack up - https://t.co/eOGq2VxwP9 https://t.co/rVgZbsZtKh" +01/07/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""We're not here just to get here."" + +That's our QB. https://t.co/A3oOkBqm1I" +01/01/2018,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""Now we've got more work to do..."" - #MattyIce❄️ https://t.co/esT8qg0oPr" +12/27/2017,Sports_celeb,@M_Ryan02,"Style game strong. Shop my @BananaRepublic picks, including my favorite Rapid Movement Chinos:… https://t.co/i8yc6L8Q3j" +12/22/2017,Sports_celeb,@M_Ryan02,"At @BostonCollege I played in the @IDPotatoBowl, a highlight of my career. Who’s watching it with me this year?… https://t.co/h7sjwj6Rxa" +12/19/2017,Sports_celeb,@M_Ryan02,"So chill in my @BananaRepublic suit. Shop my top picks for the season online now: + https://t.co/CfyewP0Fy9 #BRMens https://t.co/UHI4Pv2mDS" +12/19/2017,Sports_celeb,@M_Ryan02,I hit the juke button like Devonta last night too. #Graceful #InBrotherhood https://t.co/BYfOa6H0DY +12/19/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""Devonta is a special player. He really is"" - #MattyIce❄️ spitting facts. https://t.co/DoyCo6qqX0" +12/09/2017,Sports_celeb,@M_Ryan02,All-time favorites from @bananarepublic. Find your fit: https://t.co/Bq29epOWF1 #BRMens https://t.co/Ba9UCfG64Z +11/27/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 2 newborn babies +2 TD +2 game balls + +#MattyIce❄️ was nothing but smiles talking about @Teco_Raww's big day. https://t.c…" +11/25/2017,Sports_celeb,@M_Ryan02,Had an awesome time going undercover with @Fanatics as an employee inside their @MBStadium Falcons store and surpri… https://t.co/tOz9fJr9bG +11/25/2017,Sports_celeb,@M_Ryan02,"RT @MBUSA: Who won the first ever Mercedes-Benz Stadium Games, @M_Ryan02 or @RickieFowler? You tell us. https://t.co/iFJ5E1bl4z" +11/24/2017,Sports_celeb,@M_Ryan02,"RT @MBUSA: Pro Golfer @RickieFowler took a tour of our brand new stadium, but no one could expect who was waiting for him behind the last d…" +11/21/2017,Sports_celeb,@M_Ryan02,Happy to announce that we're having twins! https://t.co/ZH8RCzrOzN +11/16/2017,Sports_celeb,@M_Ryan02,Feels like home. Wearing my favorite pieces from @bananarepublic. https://t.co/3LcKli5dat #BRMens https://t.co/WFDnbI3Jf9 +11/16/2017,Sports_celeb,@M_Ryan02,When you give a rookie directions to the secret stash of lemon pepper #wings. #ATL #riseup #InBrotherhood https://t.co/tBwCo4BmPZ +11/08/2017,Sports_celeb,@M_Ryan02,My picks for this season? Find them @bananarepublic: https://t.co/3LcKli5dat #BRMens https://t.co/yI2fwmWSyX +11/06/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 8 games into the season, we've played average football. + +#MattyIce❄️ believes we can still improve. https://t.co/oymmH…" +10/31/2017,Sports_celeb,@M_Ryan02,#HappyHalloween2017 https://t.co/uD2UwtuZsf +10/23/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""We got a long way to go. But we've got the right mindset, the right guys that are willing to work..."" - Matt Ryan http…" +10/09/2017,Sports_celeb,@M_Ryan02,"RT @SouthernCompany: Matt Ryan, a leader on the field; Southern Company, a leader in energy. https://t.co/QUUlktCxmT" +10/03/2017,Sports_celeb,@M_Ryan02,Great piece on my friend Pete Frates! Part 1: https://t.co/y1AQC2W8vr Part 2: https://t.co/qFvTgTCgBF His book:… https://t.co/QsOfGDLx2E +10/02/2017,Sports_celeb,@M_Ryan02,My sincerest condolences for all the families and victims affected in Las Vegas. #PrayForVegas +10/02/2017,Sports_celeb,@M_Ryan02,Tough loss yesterday against a very good Buffalo team. We’re going to use this bye week to recharge and refocus. #InBrotherhood #RiseUp +09/26/2017,Sports_celeb,@M_Ryan02,"Classic & smooth, #BTS with @BananaRepublic https://t.co/dlo1HdNpjy" +09/22/2017,Sports_celeb,@M_Ryan02,Fall's begun… Ice is coming #RiseUp https://t.co/nvpUgG4XVQ +09/19/2017,Sports_celeb,@M_Ryan02,Had a great time today with the kids at Tuskegee Airmen Global Academy! #ATLHometownHuddle https://t.co/BPEG9UYdFu +09/14/2017,Sports_celeb,@M_Ryan02,Can’t wait to welcome the @PGATOUR’s 30 best players to Atlanta next week for the @PlayoffFinale! #FedExCup +09/11/2017,Sports_celeb,@M_Ryan02,"Today we honor and +remember the victims of 9/11. We stand united today and always +#NeverForget https://t.co/0GXgmvQSst" +09/11/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ""There's no quit from our guys."" - #MattyIce❄️ https://t.co/OoA4LDK8p4" +09/07/2017,Sports_celeb,@M_Ryan02,"RT @PlayersTribune: What’s done is done. + +@M_Ryan02 on what’s next: https://t.co/1so0IfidmY https://t.co/Fs0Paw9HZU" +08/31/2017,Sports_celeb,@M_Ryan02,Get your copy of The Ice Bucket Challenge. A story about my friend @petefrates3 & his fight against ALS https://t.co/RASJRCw6hh #inspiration +08/30/2017,Sports_celeb,@M_Ryan02,#RiseUp #InBrotherhood https://t.co/X4yQW1mO5A +08/28/2017,Sports_celeb,@M_Ryan02,Excited to be part of this great city. #MBAmbassador https://t.co/ZTEOwMDomJ +08/16/2017,Sports_celeb,@M_Ryan02,Fan photoshop art at its best (via Brandon Conn) #RiseUp https://t.co/KpAcIETG5U +08/14/2017,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: #MattyIce❄️ https://t.co/X4ieCmp9Iv +08/10/2017,Sports_celeb,@M_Ryan02,#TBT to my @wpcsports days. #LetsPlayFootball https://t.co/QtX4v8RqBJ +08/10/2017,Sports_celeb,@M_Ryan02,Excited for our first game #MBStadium. Are you? Enter to win a #MercedesBenz at halftime on 9/17!… https://t.co/M6Qx2tr7A8 +08/08/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: ***whispers*** + +""Yeah, i'm mic'd. I'm back. I'm mic'd."" + +The MVP, @M_Ryan02, was wired for Military Day! https://t.co/S…" +08/04/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: #MattyIce❄️ is ready. + +📸 Gallery - https://t.co/a6xMKAjkKV https://t.co/Y2sJoydEPC" +08/04/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: You have 2️⃣ more chances to see us work at AT&T Training Camp. + +DETAILS - https://t.co/Q1skOMI8RS https://t.co/5V3XTl…" +08/03/2017,Sports_celeb,@M_Ryan02,Rapid Movement Chinos @bananarepublic… the perfect amount of stretch so they don’t bag out on you. Sold.… https://t.co/vdoiMswzVv +07/31/2017,Sports_celeb,@M_Ryan02,Wishing good luck tomorrow in the final four @TMchallengeALS @petefrates3 https://t.co/rnO9vn42Hh +07/28/2017,Sports_celeb,@M_Ryan02,Jokes and smiles at camp #RiseUp https://t.co/EfFSM1gMk0 +07/27/2017,Sports_celeb,@M_Ryan02,Thanks again to all who came out to @bananarepublic and helped support the launch of Rapid Movement Chinos! #BRMens https://t.co/bh3aUwWS6N +07/26/2017,Sports_celeb,@M_Ryan02,#Mood #InBrotherhood https://t.co/2T6K50p0mc +07/25/2017,Sports_celeb,@M_Ryan02,You're welcome! #RiseUp https://t.co/SvsHzu2r1o +07/25/2017,Sports_celeb,@M_Ryan02,Awesome to meet you today! #RiseUp https://t.co/5glt1Tj0eN +07/25/2017,Sports_celeb,@M_Ryan02,Launching the new Rapid Movement Chinos with @bananarepublic – Ultimate comfort. https://t.co/B957KDLgBK https://t.co/o0Tjj8ScSG +07/19/2017,Sports_celeb,@M_Ryan02,Be sure to tune into @CallawayGolf Live now. https://t.co/jB711zhFG7 https://t.co/ZVEmo1dCoV +07/18/2017,Sports_celeb,@M_Ryan02,Thanks for the ride @mbusa. #MBambassador https://t.co/pFKLw6BPNX +07/18/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: #MattyIce❄️ took his first look of @MBStadium stadium this morning. + +Needless to say, he's amazed. https://t.co/XKsfFR…" +07/13/2017,Sports_celeb,@M_Ryan02,RT @MBUSA: Proud to be a part of a community that refuses to settle for anything but the best. Greatness lives here. https://t.co/iYDxwzKQWw +07/03/2017,Sports_celeb,@M_Ryan02,@petefrates3 keep fighting! We're thinking of you. Cheers to the toughest guy I know https://t.co/Cb9cbdVA3H +06/27/2017,Sports_celeb,@M_Ryan02,You can let defeat destroy you or let it fuel you. #MakeDefeatYourFuel #WinFromWithin @Gatorade #ad https://t.co/iXaYtY4nh3 +06/13/2017,Sports_celeb,@M_Ryan02,Wishing the best to Mike and Roddy. Learned a lot from both of you. Congratulations to 2 great Falcons https://t.co/9aTDHj3Rdu +05/30/2017,Sports_celeb,@M_Ryan02,@juliojones_11 We ran the annexation of Puerto Rico. +05/29/2017,Sports_celeb,@M_Ryan02,Today we remember the men & women who paid the ultimate sacrifice. Thank u to all who've served & continue to serve our country #MemorialDay +05/29/2017,Sports_celeb,@M_Ryan02,With a couple days left to vote we need everyone to VOTE 👇🏼👇🏼 for @TMchallengeALS to raise funds to #StrikeOutALS… https://t.co/49j94E2LDr +05/20/2017,Sports_celeb,@M_Ryan02,Raise your hand if you've voted for @teamchallengeALS https://t.co/ZfnvMX4BoV +05/17/2017,Sports_celeb,@M_Ryan02,Thank you for all the birthday wishes. https://t.co/8QMzu0QqnW +05/09/2017,Sports_celeb,@M_Ryan02,"With less than 30 days to go please help @TMchallengeALS finish 1st out west in @thetournament #StrikeOutALS #ALS +https://t.co/bTttwr7ORd" +05/02/2017,Sports_celeb,@M_Ryan02,The route was sharp but I'm sure she'd get fined for the celebration #RiseUp https://t.co/JurVMmyVBM +04/28/2017,Sports_celeb,@M_Ryan02,Welcome to the @AtlantaFalcons @Takk! Happy to have you #InBrotherhood. https://t.co/gPj1HQmwDA +04/27/2017,Sports_celeb,@M_Ryan02,Thank you everyone for voting. @tmchallengeALS @thetournament https://t.co/hy7BwQCzGL +04/25/2017,Sports_celeb,@M_Ryan02,"This Saturday, I'll be appearing @GTSportsMkt Autograph Event @GSEC courtesy of @Fanatics & @FansAuthentic ! #RiseUp https://t.co/1g00vbbCGj" +04/21/2017,Sports_celeb,@M_Ryan02,"I want to congratulate and welcome to the BC family, athletic director Martin Jarmond. https://t.co/J9WVZXH5cF" +04/17/2017,Sports_celeb,@M_Ryan02,Go vote for @tmchallengeALS in @thetournament 🏀 this summer. Help them raise awareness/funds for ALS. https://t.co/Kv1YIgD7KI +04/04/2017,Sports_celeb,@M_Ryan02,#404Day https://t.co/lZ4ypklF51 +04/03/2017,Sports_celeb,@M_Ryan02,Help raise awareness for ALS. Vote for @TMchallengeALS. @alsassociation @thetournament https://t.co/D8z3hvoBa9 +03/08/2017,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: We can't do what we do without the amazing women in our lives who inspire us. #InternationalWomensDay https://t.co/X3jA… +02/09/2017,Sports_celeb,@M_Ryan02,Thank you fans #RiseUp https://t.co/8fgJlNgo1P +02/06/2017,Sports_celeb,@M_Ryan02,We came up short last night and my heart hurts for you Atlanta. Hats off to New England they… https://t.co/mIX4Tca7ni +01/23/2017,Sports_celeb,@M_Ryan02,Super Bowl LI bound! #RiseUp #InBrotherhood https://t.co/Zki8VBo9PA +01/23/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: This is for YOU, Atlanta. + +#RiseUp https://t.co/1nhP4jCsT1" +01/11/2017,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Let's unite #InBrotherhood. + +Change your Twitter avatar to officially join our Brotherhood. https://t.co/vcOnzBAYQU" +12/25/2016,Sports_celeb,@M_Ryan02,Merry #Christmas! #RiseUp https://t.co/wl4zbRTn4i +12/22/2016,Sports_celeb,@M_Ryan02,When you open that first gift and it’s socks… #HappyHolidays #RiseUp https://t.co/PxZVbHF1rP +12/15/2016,Sports_celeb,@M_Ryan02,Extending my deepest condolences to the family and friends of Craig Sager. May he rest in peace #SagerStrong +12/15/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Matt Ryan is the Falcons Walter Payton Man of The Year nominee. + +RT to help him win a donation for @childrensatl. + +#R…" +12/12/2016,Sports_celeb,@M_Ryan02,"Honored to be a Walter Payton Man of the Year award nominee. Help us win the @nationwide charity challenge, tweet… https://t.co/JynTxNEU0c" +12/07/2016,Sports_celeb,@M_Ryan02,"Honored to be nominated for this prestigious award, #WPMOY #ThankYou #RiseUp https://t.co/s4PaKW7bCg" +11/29/2016,Sports_celeb,@M_Ryan02,I’m committed to making all kids better today and healthier tomorrow. #MyCauseMyCleats @childrensatl https://t.co/FDLrNxyzV9 +11/27/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Corporal Corey Tanner earned a Purple Heart but never met his son. Matt Ryan will wear his initials on Sunday. + +#Salut…" +11/24/2016,Sports_celeb,@M_Ryan02,Happy #Thanksgiving https://t.co/nHrsPthDSu +11/11/2016,Sports_celeb,@M_Ryan02,"On this Veteran's Day, I’d like to thank all members of service, both past and present. Thank you #VeteransDay https://t.co/5qcCOCIltP" +10/28/2016,Sports_celeb,@M_Ryan02,#frankensteinfriday with #Mattenstein #RiseUp https://t.co/DEfPwhVFys +10/26/2016,Sports_celeb,@M_Ryan02,Hurry! Pick up #Danimals for your chance to find a #GoldenBongo and win a field day w/ @FUTP60 four your entire sch… https://t.co/3YHaIRfbF6 +10/24/2016,Sports_celeb,@M_Ryan02,"Tough loss yesterday. It’s disappointing not to get the outcome we wanted. We will bounce back, let’s prepare to win the week #RiseUp." +10/21/2016,Sports_celeb,@M_Ryan02,"This Oct, Dannon is partnering w/ the @NFL & @AmericanCancer to fight breast cancer. #NFLPink… https://t.co/4NNCPPTECh" +10/21/2016,Sports_celeb,@M_Ryan02,When you realize the next @AtlantaFalcons game is TWO days away. #RiseUp https://t.co/efbWcrAIqi +10/13/2016,Sports_celeb,@M_Ryan02,Danimals helps kids stay healthy. Find a #GoldenBongo and you could win a field day w/ @FUTP60 for your school!… https://t.co/FKgWHEgKEI +10/10/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: We improved to 4-1 today! Relive the victory. + +GAME HIGHLIGHTS: https://t.co/oMwI8y5ZbJ https://t.co/VAcAlEcXCb" +10/03/2016,Sports_celeb,@M_Ryan02,Great team win yesterday against a tough divisional opponent. Now it's time to prepare for the next task at hand! #RiseUp +09/30/2016,Sports_celeb,@M_Ryan02,RT @GeorgiaPower: Join @M_Ryan02 and help support your community! @GeorgiaPower has for over 100 years #football #NFL #Falcons https://t.co… +09/21/2016,Sports_celeb,@M_Ryan02,Thunder buddies for life! @juliojones_11 #RiseUp #Humpday https://t.co/NSzJ0PR8zJ +09/19/2016,Sports_celeb,@M_Ryan02,#RiseUp https://t.co/v7jNPYokWe +09/13/2016,Sports_celeb,@M_Ryan02,Be sure to check out the @mbusa #Mbsweepstakes for a chance to see the #RyderCup in person. https://t.co/Edm69tcOlC +09/12/2016,Sports_celeb,@M_Ryan02,We’ve got to get back to work & find a way to be better this week. I know everyone in our building will work really hard to do that. #RiseUp +09/09/2016,Sports_celeb,@M_Ryan02,RT @MootePoints: Today on @TheBertShow we talked with my fellow BC grad @sryan03 about @M_Ryan02 & the @AtlantaFalcons game #RiseUp https:/… +09/07/2016,Sports_celeb,@M_Ryan02,RT @MBUSA: Quote tweet with #MBsweepstakes for a chance to see the #RyderCup in person. Rules: https://t.co/LgeoQED7fO. https://t.co/cAcUfJ… +07/27/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: 🚗🚗🚚 IMPORTANT traffic news if you're coming to #FalconsCamp! 🚗🚗🚚 + +READ: https://t.co/qzO3g64HMi #RiseUp https://t.co/Gw…" +07/23/2016,Sports_celeb,@M_Ryan02,"My story began in Exton,Pa. Where I dreamed of flying, who would have thought I'd be doing it #JustDoIt @Nike https://t.co/IxSuDnwbn5" +07/20/2016,Sports_celeb,@M_Ryan02,Here's a friendly reminder in case you were wondering. #RiseUP #countdown https://t.co/DTDGguHeGk +07/13/2016,Sports_celeb,@M_Ryan02,When #PokemonGO begins to take over your life https://t.co/cam2nRU5Ec +07/06/2016,Sports_celeb,@M_Ryan02,Great to be back @BostonCollege. Thx to all the former players and friends who came. This is an incredible honor. https://t.co/0Yl9CKCoCD +07/04/2016,Sports_celeb,@M_Ryan02,Wishing everyone a safe and happy Independence Day! #RiseUp https://t.co/ZBOOFSR2EH +06/24/2016,Sports_celeb,@M_Ryan02,When the season is two months away but you’re anxious and ready #RiseUp https://t.co/xIis4LVLdG +06/24/2016,Sports_celeb,@M_Ryan02,WHO!? #RiseUp https://t.co/hWasUXvmbf +06/21/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Another month of progress shows at @MBStadium! #RiseUp #MBStadium +https://t.co/fet4yi269a" +06/17/2016,Sports_celeb,@M_Ryan02,When mom told me to eat veggies as a kid #NationalEatYourVegetablesDay https://t.co/o4M6Y8maGE +06/14/2016,Sports_celeb,@M_Ryan02,Here we go #Falcons! #RISEup https://t.co/xHao4el0km +06/14/2016,Sports_celeb,@M_Ryan02,"#Warriors OR #Cavs, who takes game five?" +06/10/2016,Sports_celeb,@M_Ryan02,Let's go @BCBirdBall! https://t.co/AdZZoYLYva +06/10/2016,Sports_celeb,@M_Ryan02,Caption this... https://t.co/tIjF835C5D +06/09/2016,Sports_celeb,@M_Ryan02,Who's ready for some football?! #RISEUP #Countdown https://t.co/Z0EpA24Zos +06/04/2016,Sports_celeb,@M_Ryan02,RIP to the champ #GOAT https://t.co/16mgq8Z4O0 +06/04/2016,Sports_celeb,@M_Ryan02,"RT @bcinterruption: Boston College defeats Tulane, 7-2 to open NCAA Tournament play https://t.co/895c5L3z1L https://t.co/IZuchbtwU6" +06/03/2016,Sports_celeb,@M_Ryan02,Happy Friday y'all! #FlashbackFriday to the days of #TGIF... I think I might just watch this all day https://t.co/0VcLFmVrO4 +05/30/2016,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: 🇺🇸 https://t.co/DPRfGk3PHG +05/29/2016,Sports_celeb,@M_Ryan02,"RT @BCSportsNews: Thoughts & prayers for family, friends & players of former #BCEagles football assistant Don Horton, who has passed away." +05/24/2016,Sports_celeb,@M_Ryan02,What Julio sees when I throw him a go route #RiseUp https://t.co/qzKid2A8Zo +05/20/2016,Sports_celeb,@M_Ryan02,"Feeling nostalgic, here's my draft call! #FlashbackFriday #MattyIce #RiseUp https://t.co/ipYsUfLQZw" +05/19/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: After morning lifts, @M_Ryan02 spots video producer @brianbocek as he squats an impressive 65 lbs. 🎥: @PatDiMarco42 htt…" +05/19/2016,Sports_celeb,@M_Ryan02,"RT @JaredDudley619: Vote for my former @BostonCollege teammates in this years TBT basketball tournament & help strike out ALS. +https://t.c…" +05/17/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Our captain, our leader, our QB. Happy birthday, @M_Ryan02! #RiseUp +https://t.co/p4zeNAsyGw" +05/12/2016,Sports_celeb,@M_Ryan02,When your friend has something on his mouth and you help him discretely 😂 https://t.co/wFjvy2v0pM +05/09/2016,Sports_celeb,@M_Ryan02,My brother to my left. My brother to my right. Together we stand. Together we fight #RiseUp #mondaymotivation https://t.co/OWGh3WUvdw +05/08/2016,Sports_celeb,@M_Ryan02,Happy #MothersDay https://t.co/n9PBpPyzij +05/06/2016,Sports_celeb,@M_Ryan02,"RT @AtlantaFalcons: Download our Mother's Day sheet, fill it out, and tweet us your pic with #ILoveMyFalconsMom! https://t.co/OlGk2vKXve ht…" +05/05/2016,Sports_celeb,@M_Ryan02,I don’t always celebrate #CincoDeMayo but when I do I make a video 😂 https://t.co/arqyeN1Ojd +05/04/2016,Sports_celeb,@M_Ryan02,#StarWars done right 😂! #MayThe4thBeWithYou https://t.co/zDaDpxR6s2 +04/28/2016,Sports_celeb,@M_Ryan02,"My draft memory still gives me chills, welcome to the league fellas! #ThrowbackThursday #NFLDraft https://t.co/B5tUJt3B1V" +04/28/2016,Sports_celeb,@M_Ryan02,RT @AtlantaFalcons: It's almost time! #ATLDraft https://t.co/e2NT8MbAZY +04/28/2016,Sports_celeb,@M_Ryan02,#NationalSuperheroDay squad #RiseUp @AtlantaFalcons https://t.co/4rVezCXFJq +04/27/2016,Sports_celeb,@M_Ryan02,Great catching up with bceaglesfootball legend Barry Gallup. Missed that Boston accent! https://t.co/4iI6lrrMlR +04/24/2016,Sports_celeb,@M_Ryan02,Saddened to hear about the passing of friend and former teammate Ron Brace. His smile was contagious. Thoughts and prayers to his family. +04/12/2016,Sports_celeb,@M_Ryan02,Go follow and vote for @TBT_TEAM_BC for the @thetournament #WeAreBC https://t.co/lSYjchmtZV +04/10/2016,Sports_celeb,@M_Ryan02,Best hole in 1 I've ever seen! +04/10/2016,Sports_celeb,@M_Ryan02,RIP will smith. Thoughts and prayers with him and his family. https://t.co/lpWdaDclBL +04/04/2016,Sports_celeb,@M_Ryan02,"53 of us. 5 million of you. We've got a really big team, let's get some really big rings #RiseUp https://t.co/51hlXkp4qw" +04/01/2016,Sports_celeb,@M_Ryan02,Happy anniversary to @sryan03. I hit the bullseye 5 years a good today! https://t.co/ZAUHnmxKi5 +03/31/2016,Sports_celeb,@M_Ryan02,Great few days working with the guys. Thanks to everyone in the Miami area for taking care of… https://t.co/1N5iBUaVdO +03/06/2016,Sports_celeb,@M_Ryan02,Congratulations to Peyton Manning on an amazing career. Start tailoring the gold jacket! https://t.co/dvbLdTvzHD +03/03/2016,Sports_celeb,@M_Ryan02,"An all pro receiver, teammate and leader...an even better friend and person. Will miss having… https://t.co/QbsFcZ5GuS" +02/27/2016,Sports_celeb,@M_Ryan02,"Happy birthday to the 🐐, @tonygonzalez88 https://t.co/AefcoInuuD" +02/26/2016,Sports_celeb,@M_Ryan02,#riseupfriday https://t.co/RCBcdDf3fH +02/11/2016,Sports_celeb,@M_Ryan02,Clear my schedule https://t.co/IblP8msYDp +02/09/2016,Sports_celeb,@M_Ryan02,Thoughts and prayers with AMB https://t.co/6LcBUNDy1W +02/06/2016,Sports_celeb,@M_Ryan02,Fun morning for @SNICKERS enjoyed being out on the field with you. @TonyGonzalez88 I couldn't find the retired 44 ? https://t.co/N5r0Uz88Bg +02/05/2016,Sports_celeb,@M_Ryan02,Thanks @Pepsi for sending me this awesome commemorative bottle! Now I can't wait to see the #PepsiHalftime Show! https://t.co/GvFs3YnqPB +02/04/2016,Sports_celeb,@M_Ryan02,Teaming up w/sponsor @Gillette for #SB50 to celebrate shielding. The O-Liners in this video = epic. #ProShield https://t.co/gVu94V0Jp4 +02/03/2016,Sports_celeb,@M_Ryan02,On the ground working #SuperBowl50 w/ @Gillette #ProShield celebrating shielding on and off the field! #CARvsDEN https://t.co/jSrtb3O09M +01/26/2016,Sports_celeb,@M_Ryan02,"So good…get your combo of 2L #Pepsi, Pizza and Jet’s Bread! #Pepsi #pizza #jetsbread #combo #delicious #jetspizza https://t.co/CC9IIyRsfj" +11/24/2015,Sports_celeb,@M_Ryan02,Clock is ticking to find the @Danimals Golden Bongo for a chance to win big! @FUTP60 #ad https://t.co/jvNfYGJpxu +11/18/2015,Sports_celeb,@M_Ryan02,#UncleDrew is back! Check out chapter 4 to see what he's been up to in Miami... https://t.co/SukSbdsyGv +10/27/2015,Sports_celeb,@M_Ryan02,Don’t miss a chance to Play 60 w/ NFL pros! Visit https://t.co/gUkGnT2GUq for more info. No purchase necessary #ad #sweepstakes +10/06/2015,Sports_celeb,@M_Ryan02,Visit http://t.co/gUkGnT2GUq to learn how u could Play 60 w/ NFL pros! No purchase necessary. #ad #sweepstakes http://t.co/kOjZA252mj +10/05/2015,Sports_celeb,@M_Ryan02,This code’s on me! Use bonus code RYAN to unlock more NFL prizes. Enter at http://t.co/IMdbTrIHUy Ends 11/6 http://t.co/XqJVI29lq6 +09/08/2015,Sports_celeb,@M_Ryan02,@AleBedoya17 Hahah...I'll do everything I can to help out ur fantasy squad! We'll be watching--play well +09/08/2015,Sports_celeb,@M_Ryan02,Good luck @AleBedoya17 and @ussoccer tonight against Brazil! 🇺🇸 +09/08/2015,Sports_celeb,@M_Ryan02,Look in specially-marked packs of Danimals 4 a chance to Play 60 w NFL pros! No purchase necessary #ad #fueluptowin http://t.co/mrkTxFS5Lj +08/30/2015,Sports_celeb,@M_Ryan02,Teammates for life! Congrats to @juliojones_11 on the new contract! Big things ahead #RiseUp https://t.co/VKZtEebcxa +08/15/2015,Sports_celeb,@M_Ryan02,Had fun making Odell go long in my new ad! Check it out: https://t.co/nf6yHZbUlu #ad #fueluptowin #danimals #FUTP60 @OBJ_3 +08/07/2015,Sports_celeb,@M_Ryan02,#fbf Had a great time teaming up with obj_3 on set. Look out for our new ad next week! #fuelup2win… https://t.co/vp0liLVcvN +07/30/2015,Sports_celeb,@M_Ryan02,Ready for camp #workboots #riseup https://t.co/tFTNy3SN2g +07/23/2015,Sports_celeb,@M_Ryan02,Happy birthday to my wingman and best friend! Hope your 30's are filled with lots of happiness and… https://t.co/503IRdU4qF +07/23/2015,Sports_celeb,@M_Ryan02,"Actually alvin did a great job today and I took care of him.""Disappointing"" when u don't know what ur talking about https://t.co/pOtmWZh1W5" +05/10/2015,Sports_celeb,@M_Ryan02,Damn!! #bronbron +04/30/2015,Sports_celeb,@M_Ryan02,Tbt to the 2008 draft. Good luck to all the guys tonight. #riseup https://t.co/6lwTBA4G6X +04/19/2015,Sports_celeb,@M_Ryan02,Best of luck @ATLHawks! The city will be red tonight #TrueToAtlanta +04/10/2015,Sports_celeb,@M_Ryan02,"Decisions, decisions! #AppleWatch https://t.co/xaFqk715ue" +04/01/2015,Sports_celeb,@M_Ryan02,Excited for the masters next week. Good luck @McIlroyRory @bose . #BetterNeverQuits #teambose http://t.co/rgRFlHYx1z +03/26/2015,Sports_celeb,@M_Ryan02,I'll miss John Imlay. He was one of the all time great people. So kind and generous. I am fortunate to have called him a friend! +03/19/2015,Sports_celeb,@M_Ryan02,Congrats to @GeorgiaStateU on their big win over Baylor! RJ Hunter was clutch. Good luck on Saturday +02/12/2015,Sports_celeb,@M_Ryan02,Braving the winter with my #wcw http://t.co/WFGtJrnyh0 +07/01/2018,Sports_celeb,@NiaJaxWWE,Happy birthday @robschamberger !!! https://t.co/ZkiycvpFZx +07/01/2018,Sports_celeb,@NiaJaxWWE,Awww what a sweetheart 😍💗 https://t.co/lazLr73tfO +06/30/2018,Sports_celeb,@NiaJaxWWE,Isn’t she just perfect 😍🙌🏽 @RealPaigeWWE love herrrrrrr https://t.co/hRbcqpj67x +06/30/2018,Sports_celeb,@NiaJaxWWE,🙌🏽😘 https://t.co/e6XJaPC7yz +06/30/2018,Sports_celeb,@NiaJaxWWE,Living my best life and having so much fun!! 😍🙌🏽 +06/30/2018,Sports_celeb,@NiaJaxWWE,RT @IndiaTainaJ1756: @NiaJaxWWE Gorgeous Queens!! #NotLikeMostMoms #NotLikeMostGirls https://t.co/YKaUfuFMF2 +06/30/2018,Sports_celeb,@NiaJaxWWE,RT @IndiaTainaJ1756: My Gorgeous Queen @NiaJaxWWE And Her Gorgeous Mom. #NotLikeMostGirls #NotLikeMostMoms https://t.co/TQtsPHCflK +06/30/2018,Sports_celeb,@NiaJaxWWE,"RT @LukeGallowsWWE: Ryogoku Sumo Hall Tokyo, Japan #WWETokyo The bbbbbbbooooys are back in town @KarlAndersonWWE https://t.co/e6azarY1bl" +06/29/2018,Sports_celeb,@NiaJaxWWE,"RT @nessasilva46: This is so cute 😍😍😍😍 +@NatbyNature +@NiaJaxWWE @LanaWWE +@BellaTwins @RealPaigeWWE @NaomiWWE #TotalDivas https://t.co/jUSzN…" +06/29/2018,Sports_celeb,@NiaJaxWWE,Happy birthday 😘💜💗 https://t.co/PkP4QYPidz +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @sarahloves69: FINALLY!!!!!! 🙌🏻 @NiaJaxWWE #imnotlikemostgirls #irresistibleforcee https://t.co/mNhvGBm2jb +06/29/2018,Sports_celeb,@NiaJaxWWE,Aw love it! 😍🙌🏽😘 https://t.co/kB8ezlf0Br +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photos via Nia Jax's Instagram https://t.co/8PVWNaHqjl +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @Goldust: I will announce the winner of the @wildbangarang #goldust leggings at 6:00 pm ET IN JUST 40 minutes. All are wonderful dreams +06/29/2018,Sports_celeb,@NiaJaxWWE,I 💗 country music 🎶 +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #RAW ❤❤❤ ht… +06/29/2018,Sports_celeb,@NiaJaxWWE,RT @JaxEmpireGang: @NiaJaxWWE 💜💜💜 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleForce #WWE #RAW #RawSa… +06/28/2018,Sports_celeb,@NiaJaxWWE,RT @suh_ellenb: The Queens 👑 @NiaJaxWWE @NatbyNature https://t.co/DqRICfSFL3 +06/28/2018,Sports_celeb,@NiaJaxWWE,"RT @MsCharlotteWWE: Checkout today’s article by @AllisonGlock for the @espn #BodyIssue @espnW +I am humbled to be among such strong women i…" +06/28/2018,Sports_celeb,@NiaJaxWWE,RT @VinceMcMahon: The ultimate beauty of body and soul. Congratulations @MsCharlotteWWE for being featured in @ESPN Magazine’s Body issue. +06/28/2018,Sports_celeb,@NiaJaxWWE,"RT @Misha_Mayhem: I love when @HarleyPlays wears his ""I'm Not Like Most Girls"" @NiaJaxWWE shirt in videos. 😁😍👊" +06/27/2018,Sports_celeb,@NiaJaxWWE,"RT @Horeya_Ahmed_88: Edit for @NiaJaxWWE I hope you love it Nia .❤❤❤ + #WWEFanArt https://t.co/XZNmSfCoWI" +06/27/2018,Sports_celeb,@NiaJaxWWE,"RT @IndiaTainaJ1756: My Queen @NiaJaxWWE +Being inspiration for these young people as it has been in my life. That's why I love her and admi…" +06/27/2018,Sports_celeb,@NiaJaxWWE,RT @ToTheTopEagles: A true champion @niajaxwwe came by today and broke us down. So thankful. #tccfootball #tothetop https://t.co/HSDRezd78r +06/27/2018,Sports_celeb,@NiaJaxWWE,Had so much fun with awesome kids today! Thank you so much for having me 🙏🏽🏈🙌🏽 good luck on your season guys! Keep… https://t.co/DPp2vFUEue +06/27/2018,Sports_celeb,@NiaJaxWWE,RT @ToTheTopEagles: TCC Football @MondayNightRaw tonight . So excited to stand in the corner for @NiaJaxWWE . #tothetop https://t.co/gANH… +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: “I am all athlete. It's important that my looks have nothing to do with what I do in the @WWE .” - @MsCharlotteWWE as told to @e… +06/26/2018,Sports_celeb,@NiaJaxWWE,Damn @WWEShop https://t.co/ypL5WPYbBu +06/26/2018,Sports_celeb,@NiaJaxWWE,😍😘😘😘 https://t.co/Ax7VSN84sf +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: @NiaJaxWWE I think we can call it a glow up even if you already looked great back then 🔥 https://t.co/YQj8LywAn4 +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photo via Nia Jax's Instagram story https://t.co/fOmM6dB6DU +06/26/2018,Sports_celeb,@NiaJaxWWE,Thank you so much Brandon! It was my pleasure 🙏🏽 https://t.co/XjWpg2e1oc +06/26/2018,Sports_celeb,@NiaJaxWWE,💜💜💜😘😘😘 https://t.co/mqP7mQBJvO +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @sethsgaIIavich: @NatbyNature it was great seeing you and @NiaJaxWWE ! 💖💖💖 https://t.co/DiL7R2wIhP +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Catch up on @NiaJaxWWE appearance on Good Morning San Diego where talks her championship win at WrestleMania and more: https… +06/26/2018,Sports_celeb,@NiaJaxWWE,RT @TheLegitBoss15: My two favorite wwe women wrestlers ever. @NatbyNature and @NiaJaxWWE #QueenOfHearts #NotLikeMostGirls #Queens👑#WWE #R… +06/26/2018,Sports_celeb,@NiaJaxWWE,Walking into #RAWSanDiego FRESH off our Tahoe vacay 😍 killing it 🙌🏽😜👑 THANK YOU San Diego for the amazing homecomin… https://t.co/FTpx1oivSz +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @nessasilva46: 😍😍😍 @NatbyNature @NiaJaxWWE https://t.co/K68QrUVgVi +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @zavala_alex1983: Daddy/Daughter date #MondayNightRaw she’s excited to show off her sign to @NiaJaxWWE https://t.co/ODpCymuku0 +06/25/2018,Sports_celeb,@NiaJaxWWE,This woman is beautiful inside and out! Beyond proud to call her my friend! You look absolutely stunning in these p… https://t.co/fmCuUN4j4e +06/25/2018,Sports_celeb,@NiaJaxWWE,Aww sorry!!! 💜 https://t.co/JUSyum5nG2 +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @AndrewDavidCox: Currently being blown away by @RondaRousey vs. @NiaJaxWWE. This woman is a rookie! And Nia has come so far she can't se… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Jenisabug8: Look who I met ❤ @NiaJaxWWE https://t.co/iVBLemURKq +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @TheShow1053: Don’t miss WWE’s @niajaxwwe IN STUDIO at 8:00 this morning! #wwe https://t.co/VQXeCrZKon +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @TheShow1053: We loved having @niajaxwwe in studio this morning! #wwe #niajax https://t.co/E9dul4wmjJ +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @ChelleBL: I really hope @NiaJaxWWE will be at #wwefargo. Even at 38 having someone remind you that you don’t have to be like most is re… +06/25/2018,Sports_celeb,@NiaJaxWWE,"RT @ChrisRiddle: “My destiny’s a force of greatness.” + +@123Pins @NiaJaxWWE @bullnakanokeiko @MeanQueenK + +#NotLikeMostGirls https://t.co/te…" +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Jamn957: Thanks to @NiaJaxWWE for stopping by and leaving us FLOOR SEATS for tonight's @WWERawTour!! @TatiOnYourRadio hooking you up NE… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @KramerAndGeena: We had the AMAZING #SanDiegoNative @NiaJaxWWE in the @Channel933 studio this morning!! You can see her tonight at @WWE… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Ms_Minga: We out here trying to catch a glimpse of @NiaJaxWWE. #Kusi9Studios +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @Dagdagan5: Watching the Queen @NiaJaxWWE on the news this morning. Then seeing her at Raw tonight!!!!! https://t.co/4J2IT0hhOw +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @DanSileoShow: WHAT AN INTERVIEW!!! Thank you @NiaJaxWWE so much for coming IN-STUDIO to talk with the show. Can’t wait for #RawSanDiego… +06/25/2018,Sports_celeb,@NiaJaxWWE,RT @StephMcMahon: Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue. Charl… +06/25/2018,Sports_celeb,@NiaJaxWWE,"RT @hogan415: @RealPaigeWWE @NatbyNature @LanaWWE @NaomiWWE @NiaJaxWWE @BellaTwins @TotalDivas So happy to meet +Total Divas superstars…" +06/24/2018,Sports_celeb,@NiaJaxWWE,Queens 👑 #Sisterhood #TotalDivas https://t.co/HcFeE6WstE +06/24/2018,Sports_celeb,@NiaJaxWWE,RT @AmbroseGirl2013: I want friends like this ❤️ @NiaJaxWWE @LanaWWE @NatbyNature @BellaTwins @RealPaigeWWE @NaomiWWE #WomensEvolution #bes… +06/24/2018,Sports_celeb,@NiaJaxWWE,"RT @MissFoxi3: Omg my queens ❤❤❤ +@RealPaigeWWE @NiaJaxWWE https://t.co/xuf48yigEB" +06/24/2018,Sports_celeb,@NiaJaxWWE,Lake Tahoe has been absolutely magical 😍🙌🏽 #TotalDivas https://t.co/WoHwy1dC1Y +06/24/2018,Sports_celeb,@NiaJaxWWE,"RT @973TheFanSD: Exciting stuff going on IN-STUDIO with the @DanSileoShow + +#WWE Superstar @NiaJaxWWE will be in-studio Monday at 7:45am + +F…" +06/23/2018,Sports_celeb,@NiaJaxWWE,RT @feeltheglown: look at @NiaJaxWWE and trin holding hands. we love a couple ughh 😍 https://t.co/kTQu98QFKe +06/23/2018,Sports_celeb,@NiaJaxWWE,@TinaJAnd @RealPaigeWWE @NatbyNature @SonyaDevilleWWE Happy birthday!! +06/23/2018,Sports_celeb,@NiaJaxWWE,My SIS 😍💜💜💜💜 @NaomiWWE https://t.co/5zZOXzh6Wp +06/23/2018,Sports_celeb,@NiaJaxWWE,Happy HAPPY BIRTHDAY to the gorgeous and #IIConic @BillieKayWWE 😛😛😛👈🏽 you know what those mean 😉😘! Love you girl 💜 have the best day! +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @Mohammed_Y2J_: I like this woman’s you so beautiful 😍 @LanaWWE @NiaJaxWWE +Lana is the best Lana number one ☝🏻 +Nia is the best Nia num…" +06/23/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: @NiaJaxWWE you really got them all pressedT sis I love you for that😭💀 https://t.co/81NlM2B1YI +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: The girls living the best life, that's what matters 🙌🏼😉 @RealPaigeWWE @NiaJaxWWE https://t.co/L9lYIefnYR" +06/23/2018,Sports_celeb,@NiaJaxWWE,@ASOS https://t.co/zzUgPIQhKJ +06/23/2018,Sports_celeb,@NiaJaxWWE,"RT @BStoneKUSI: She's not like most girls, I'm not like most sportscasters, and on Monday @KUSINews won't be like most TV stations! We'll h…" +06/23/2018,Sports_celeb,@NiaJaxWWE,Living my BEST LIFE!!! #LakeTahoe #TotalDivas https://t.co/Gffy6KNlo2 +06/22/2018,Sports_celeb,@NiaJaxWWE,#TotalDivas 😍 https://t.co/r24GyVWEGn +06/22/2018,Sports_celeb,@NiaJaxWWE,"RT @RealGlampireWWE: #TotalDivas +@RealPaigeWWE @NatbyNature @BellaTwins @NiaJaxWWE @LanaWWE ❤ https://t.co/l23ByoNvmB" +06/22/2018,Sports_celeb,@NiaJaxWWE,RT @IStanWrestling: I LOVE A FRIENDSHIP ❤ @NiaJaxWWE @RealPaigeWWE @LanaWWE https://t.co/3kMVljCtFm +06/22/2018,Sports_celeb,@NiaJaxWWE,😍😍😍 https://t.co/xlhTbXZd6q +06/22/2018,Sports_celeb,@NiaJaxWWE,For someone that doesn’t care what anyone thinks it’s weird they have to go out and get a tattoo that says they’re enough 🤔 +06/22/2018,Sports_celeb,@NiaJaxWWE,RT @rampaiger_93: @RealPaigeWWE @NiaJaxWWE ☀️ https://t.co/lHOAlejJX8 +06/22/2018,Sports_celeb,@NiaJaxWWE,Total divas Season 8 cast....waiting on @NaomiWWE to arrive 😍🙌🏽😘 https://t.co/saRnUIiWSj +06/22/2018,Sports_celeb,@NiaJaxWWE,My crazy crew 😜😘 @RealPaigeWWE @LanaWWE #LakeTahoe https://t.co/U31Qc41Mtc +06/21/2018,Sports_celeb,@NiaJaxWWE,RT @MsCharlotteWWE: My naked butt will be in the @ESPN #Body10 Issue...still insecure but proud of who I am and what I look like. Never let… +06/20/2018,Sports_celeb,@NiaJaxWWE,Why are you so stunning sis 😍💜💜💜😩🙌🏽 https://t.co/rpN70XRHK8 +06/20/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: wheww a cute duo🖤 @LanaWWE @NiaJaxWWE https://t.co/9lyhqXRJZb +06/20/2018,Sports_celeb,@NiaJaxWWE,RT @RealGlampireWWE: #FriendshipGoals Da Cutest Friendship Ever #Queens @RealPaigeWWE and @NiaJaxWWE ❤👑 https://t.co/UHhhD0WiWA +06/20/2018,Sports_celeb,@NiaJaxWWE,Rest In Peace Vader🙏🏽 https://t.co/oEDRknKVoW +06/20/2018,Sports_celeb,@NiaJaxWWE,🍵🍵🍵🍵 https://t.co/bvgcpCEX7V +06/20/2018,Sports_celeb,@NiaJaxWWE,No https://t.co/rrP1JAqsEy +06/19/2018,Sports_celeb,@NiaJaxWWE,Pure beauty!!! 😍🙌🏽💜 https://t.co/9zcduYImQk +06/19/2018,Sports_celeb,@NiaJaxWWE,Lol!! That’s a joke. https://t.co/j7UeDgRg3l +06/19/2018,Sports_celeb,@NiaJaxWWE,I welcome that as well https://t.co/zK7cK39BkF +06/19/2018,Sports_celeb,@NiaJaxWWE,Like I said...title or not...she will get beat up 😈 https://t.co/Hbtqp2fe03 +06/19/2018,Sports_celeb,@NiaJaxWWE,Haha that’s is the truth 😂😂 https://t.co/lEod17otb8 +06/19/2018,Sports_celeb,@NiaJaxWWE,She’s a crappy human...she deserves a good butt kicking https://t.co/PC8R8kPY6o +06/19/2018,Sports_celeb,@NiaJaxWWE,Sure do https://t.co/SYqQdOda9f +06/19/2018,Sports_celeb,@NiaJaxWWE,RT @LukeGallowsWWE: Toledo....The bbbbbbbbbooooys are coming up live on ABC News! +06/19/2018,Sports_celeb,@NiaJaxWWE,Title or not...I just want to beat the piss out of her https://t.co/0hd5T1v0G1 +06/19/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: Current mood + +@NiaJaxWWE https://t.co/oT7c8rN21V" +06/19/2018,Sports_celeb,@NiaJaxWWE,RT @JJRiot88: @NiaJaxWWE Watching @RondaRousey Beat Up @AlexaBliss_WWE #Raw https://t.co/xRZXmsp8wd +06/19/2018,Sports_celeb,@NiaJaxWWE,Bahahahahaha!!!! Literally can’t stop watching this 😂😂😂 got what you deserved #FakeAzzB https://t.co/c7LI0yJ648 +06/19/2018,Sports_celeb,@NiaJaxWWE,"@muchoawesomeo Let’s unpack that Billy....I am from Cali, but since moving to Florida, my tides have been changing toward FL" +06/19/2018,Sports_celeb,@NiaJaxWWE,💜💜💜 https://t.co/d4TL5kTajL +06/19/2018,Sports_celeb,@NiaJaxWWE,Hahaha! Well...just wait for season 8. https://t.co/t04SEa3dST +06/19/2018,Sports_celeb,@NiaJaxWWE,Nope https://t.co/oyG1zAjuNE +06/19/2018,Sports_celeb,@NiaJaxWWE,🍿😜 go AWWWFFFFFF girl https://t.co/B7dJZ4mgmH +06/19/2018,Sports_celeb,@NiaJaxWWE,Hahahaha!!! YESSSSS! Well deserved 👍🏼. https://t.co/EPGSmkUB4Y +06/19/2018,Sports_celeb,@NiaJaxWWE,🤮 https://t.co/LtjSaUG2VU +06/18/2018,Sports_celeb,@NiaJaxWWE,Get it Zack!!!! #ZQ https://t.co/TlZpDbdV4Y +06/18/2018,Sports_celeb,@NiaJaxWWE,"RT @rowdylikeronda: @NiaJaxWWE Ain't that the truth. Did Alexa even fight during her #MITB match, or did I blink and miss her?" +06/18/2018,Sports_celeb,@NiaJaxWWE,"A match between two power houses! Toe to toe, bringing the pain! Setting the standard. #RondaVsNia ruined by a COWA… https://t.co/VEF9FT9VRO" +06/18/2018,Sports_celeb,@NiaJaxWWE,Thank you love! @KotulskiGear https://t.co/fBxdvAFkTG +06/18/2018,Sports_celeb,@NiaJaxWWE,Me? 😍 so I can be near you!!!! https://t.co/zRNgnOC26J +06/18/2018,Sports_celeb,@NiaJaxWWE,Haha billy!! You’re my number one! 🙌🏽 https://t.co/9URjucOmNj +06/18/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Money In The Bank 2018 screen captures have been added to the gallery: https://t.co/C179UXkGQ0 https://t.co/1HsTHf6Az0 +06/18/2018,Sports_celeb,@NiaJaxWWE,If it wasn’t for this insanely stunning #AntiDiva coming on the scene showing the world that being your perfectly c… https://t.co/byEUYwnXSb +06/18/2018,Sports_celeb,@NiaJaxWWE,RT @RyanLoco: Nia v @RondaRousey #WWEMITB https://t.co/AzgCY9EkkK +06/18/2018,Sports_celeb,@NiaJaxWWE,"RT @playwrightwoman: And with that, we finish #MITB. Really solid card all the way down. And dear fellow smarks, can we all agree to lay o…" +06/18/2018,Sports_celeb,@NiaJaxWWE,"Not the ending I was hoping for, but can’t help but be proud of what @RondaRousey & I accomplished tonight. She is the REAL DEAL! #MITB" +06/17/2018,Sports_celeb,@NiaJaxWWE,Thanks DA!! https://t.co/VZDUygoxTG +06/16/2018,Sports_celeb,@NiaJaxWWE,She is perfection 😍😘💜 https://t.co/xITrMHYN59 +06/16/2018,Sports_celeb,@NiaJaxWWE,"RT @VinceMcMahon: Proud to be making history in Australia with WWE Super Show-Down on Saturday, Oct. 6, at the iconic @MCG. https://t.co/na…" +06/16/2018,Sports_celeb,@NiaJaxWWE,"You can’t squash them, their eggs can be released and then you have an epidemic on your hands https://t.co/pX2HuE0BDV" +06/16/2018,Sports_celeb,@NiaJaxWWE,This was me!! Lol! It adopted an attack pose and hissed at me! GAME OVER! I was ready to leave all my belongings be… https://t.co/LN05tnQu7d +06/16/2018,Sports_celeb,@NiaJaxWWE,Tomorrow 🙌🏽 June 17 on the @WWENetwork let’s see if @RondaRousey is ready for her first ever singles championship m… https://t.co/PgNKJxkqA2 +06/16/2018,Sports_celeb,@NiaJaxWWE,"RT @WWE: BREAKING: As first reported by the @theheraldsun, @WWE will return to Australia for @WWE Super Show-Down, a historic event taking…" +06/16/2018,Sports_celeb,@NiaJaxWWE,Thanks Billy 🙌🏽 https://t.co/I7BDXVRFPU +06/16/2018,Sports_celeb,@NiaJaxWWE,I almost bought a new house because I was trying to kill a roach with bug spray and it didn’t die for a solid 5 min… https://t.co/l5l2qTS68q +06/15/2018,Sports_celeb,@NiaJaxWWE,WEERRRKKK hunny 💃🏼 https://t.co/Xs1oLYzxwv +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @JaxEmpireGang: Gorgeous Queen!! @NiaJaxWWE +😍👑❤🔥😈 #MyQueen #JaxArmy #JaxJungle #GorgeousQueen #NotLikeMost #TheQueen #TheIrresistibleFo…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Such a freaken babe 🔥🔥🔥 https://t.co/oAxeQeBX3v +06/15/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Video via Nia Jax's Instagram https://t.co/zr04V6wkon +06/15/2018,Sports_celeb,@NiaJaxWWE,Big!!!! https://t.co/HecGLGlZqA +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: ""Everyone is asking ‘Oh my God, is she heel or is she face?’ Nia Jax is Nia Jax.That’s something that I have been trying to…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Gorgeous https://t.co/5sYbFVvr6r +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @XTheShieldGirlX: I did a documentary yesterday about how girls are viewed in the media and society. In my speech, I spoke about how gir…" +06/15/2018,Sports_celeb,@NiaJaxWWE,"RT @FLAIRSNIA: “Yes, we are athletic. Yes, we can go just as hard as the men, but women come in all different shapes and sizes. We all have…" +06/15/2018,Sports_celeb,@NiaJaxWWE,Can’t wait!!!! It will feel so good to finally be home https://t.co/JQCLaImLjH +06/15/2018,Sports_celeb,@NiaJaxWWE,💜💜 https://t.co/igrH7IrlKG +06/15/2018,Sports_celeb,@NiaJaxWWE,💜💜💜🤗🤗thank you!!! https://t.co/60S8SjuAfC +06/15/2018,Sports_celeb,@NiaJaxWWE,Love you Brit!!! https://t.co/S4Fil157hv +06/14/2018,Sports_celeb,@NiaJaxWWE,Inside Nia Jax's meteoric rise to the top of WWE's women's division https://t.co/4sDKt7ecJe +06/14/2018,Sports_celeb,@NiaJaxWWE,"RT @AntSulla: Over the past six months, @NiaJaxWWE has become arguably the most important female figure in @WWE. Here's a look at her remar…" +06/14/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: .@YahooSports goes Inside @NiaJaxWWE meteoric rise to the top of @WWE's women's division! By @AntSulla https://t.co/vzYrxJLmFq +06/14/2018,Sports_celeb,@NiaJaxWWE,💜🙏🏽 sending you so much love Mick https://t.co/CarlLqhUsr +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Total Divas has been nominated for a @TeenChoiceFOX award for #ChoiceRealityTVShow! Voting starts today and ends next Tuesda… +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @FLAIRSNIA: You can vote for Total Divas just by tweeting #ChoiceRealityTVShow and tag @TotalDivas 🙌🏻 https://t.co/T4rBjySChw +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Our #TeenChoice nominee for #ChoiceRealityTVShow is @TotalDivas +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @Hotspur29043068: My #WWESuperCard free tier pull she's not like most girls.@NiaJaxWWE https://t.co/dagEGtYUgR +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @BellaTwins: So beyond excited for @TotalDivas being nominated for a @TeenChoiceFOX for Choice Reality TV show! Bella Army please make s… +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @BadNewsSmitty: Congrats to all of the @TotalDivas. Not only are the women of the @WWE making waves in the pro wrestling business, they…" +06/13/2018,Sports_celeb,@NiaJaxWWE,I miss her soooo much it hurts 😩😩😩 https://t.co/TlaD5QeqkQ +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NatbyNature: So happy to see #TotalDivas has been nominated for a Teen Choice Awards in the category of Choice Reality TV Show!!! + +Vot…" +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @smFISHMAN: Congrats to the #TotalDivas folks on another #TeenChoiceAward nomination. The show has helped draw new fans to #WWE over the… +06/13/2018,Sports_celeb,@NiaJaxWWE,https://t.co/jNhmDRxsRJ https://t.co/dCBDvpYMvQ +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @RealPaigeWWE: If you’re in the Memphis area don’t EVER stay at the @SheratonMemphis it’s literally the worst. Things stolen, bad custom…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NiaJaxCom: Be sure to get your ""I'm Not Like Most"" T-shirt on #WWEShop and uniquely customize your very own like Nia Jax! https://t.co/…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @CNCOMixer26: Wednesday ain't Wednesday without a Wednesday women's dose of the RAW Women's Champion, #TheIrresistibleForce @NiaJaxWWE #…" +06/13/2018,Sports_celeb,@NiaJaxWWE,"RT @NiaJaxCom: ""A queen on her throne is a woman who grows beyond boundaries knowing that the power within her is sufficient to meet every…" +06/13/2018,Sports_celeb,@NiaJaxWWE,RT @NERDSClothingCo: Want to see these on the WWE Shop? Let your voices be heard! @WWEShop and let them know which one(s) you'd like up on… +06/12/2018,Sports_celeb,@NiaJaxWWE,5 days away from #MITB and you showed me what you got...Take the small victory now because it won’t come this Sunda… https://t.co/WsKeTYLKeR +06/12/2018,Sports_celeb,@NiaJaxWWE,RT @MATTHARDYBRAND: GIMME AN OL’ RE-TWEET if you WATCH this & get AROUSED for the most EPIC #WWE24 documentary of all time.. The Hardys #WO… +06/12/2018,Sports_celeb,@NiaJaxWWE,RT @rampaiger_93: Irresistible force 😍❤️ @NiaJaxWWE #Raw #entrance https://t.co/oMVjV42pSp +06/11/2018,Sports_celeb,@NiaJaxWWE,"RT @MikaRotunda: This Saturday, I’ll be taking the Gelatin Plunge for the Children’s Cancer Center of Tampa Bay! + +Please help me in reachi…" +06/11/2018,Sports_celeb,@NiaJaxWWE,Click on this link and help 🙌🏽😘😘 https://t.co/EBficpFqP5 +06/10/2018,Sports_celeb,@NiaJaxWWE,"All competition aside, I’m honored to step in the ring with this incredible woman! @RondaRousey but I’m still gonna… https://t.co/0A47dYM41q" +06/10/2018,Sports_celeb,@NiaJaxWWE,This is who is coming to #MITB. This is your #Raw Women’s Champion. This is who I am. Try to prepare for it.… https://t.co/1uGeQyyii8 +06/10/2018,Sports_celeb,@NiaJaxWWE,"RT @WWEArmstrong: Good Sunday morning from Bossier City, Louisiana the host of today’s @WWE RAW Live Event ...5:00 belltime! See SuperStars…" +06/10/2018,Sports_celeb,@NiaJaxWWE,You talking about me again?! 😜 except it’ll be 135 to 285 https://t.co/Ij1iUl6Qv7 +06/10/2018,Sports_celeb,@NiaJaxWWE,RT @RevRedneck: @NiaJaxWWE my daughter got a high 5 from you after her match and would not sleep in nothing less than this shirt!! Thanks f… +06/10/2018,Sports_celeb,@NiaJaxWWE,💜💜💜💜 https://t.co/IrnQgQrHLH +06/09/2018,Sports_celeb,@NiaJaxWWE,Love her @BiancaBelairWWE 🙌🏽 https://t.co/nygjOdduLV +06/09/2018,Sports_celeb,@NiaJaxWWE,RT @Poohbaby925: This is my favorite photo of @NiaJaxWWE it was taken at #NXTTakeoverTheEnd when she was going after the NXT Woman's Champi… +06/09/2018,Sports_celeb,@NiaJaxWWE,Thanks girl!!! Xoxo https://t.co/fvfKGmjk6e +06/09/2018,Sports_celeb,@NiaJaxWWE,RT @WWE: .@NiaJaxWWE is a force that can't be stopped... what will happen at #MITB when the #RAW Women's Champion comes face-to-face with @… +06/09/2018,Sports_celeb,@NiaJaxWWE,"Flying into the weekend like 🙌🏽👊🏼✈️🏆 +•••• +Sat 6/9 Monroe, LA +Sun 6/10 Bossier City, LA +RAW is WAR 6/11 Little Rock… https://t.co/zp8tnVLcNq" +06/09/2018,Sports_celeb,@NiaJaxWWE,Thank you Billy 😘 https://t.co/Q3uwH5esTW +06/09/2018,Sports_celeb,@NiaJaxWWE,"The Irresistible Force Meets the Baddest Woman on the Planet June 17, 2018 at #MoneyInTheBank in Chicago.… https://t.co/0gQTaZtllL" +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Witness the power of @NiaJaxWWE before her face-to-face with Ronda Rousey #GreatnessIsHerDestiny https://t.co/SxPsrm79gk +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Nia Jax officially has her own foot wear! You can get a pair of these stylish socks available at Rock'em apparel https://t.c… +06/08/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photo via Honeybeileen's Instagram https://t.co/tg7QmrsSab +06/07/2018,Sports_celeb,@NiaJaxWWE,RT @StephMcMahon: So proud to have held @WWE’s first For Your Consideration event last night for the TV Academy. Thank you to the incredibl… +06/07/2018,Sports_celeb,@NiaJaxWWE,You are enough. You are beautiful. You are perfect. Live your best life. Love others. Never settle. Don’t be ordina… https://t.co/jd2w8uwMZR +06/07/2018,Sports_celeb,@NiaJaxWWE,Couple goals AF!! 🔥🔥🔥🙌🏽🙌🏽🙌🏽 https://t.co/WSRdXfhlgU +06/07/2018,Sports_celeb,@NiaJaxWWE,RT @WWEPR: #WWEFYC @MsCharlotteWWE @NiaJaxWWE https://t.co/kgsW5MnMv6 +06/07/2018,Sports_celeb,@NiaJaxWWE,"RT @LehrBreanna: Anyone who is body shaming @NiaJaxWWE I’d love to see you make it to the wwe, and be as dominant as she is. For crying out…" +06/07/2018,Sports_celeb,@NiaJaxWWE,"RT @LoveAlexaBliss: @NiaJaxWWE + +Go 👏🏼Awf👏🏼Sis👏🏼 + +You look freaking amazing 👏🏼🔥🙌🏼 https://t.co/gF6rCvqtLZ" +06/07/2018,Sports_celeb,@NiaJaxWWE,Love you sister!!!! 💜💜💜💜 https://t.co/Lxjq8IffM8 +06/06/2018,Sports_celeb,@NiaJaxWWE,Come hang with me sister 🙌🏽 https://t.co/eKAEfHDU28 +06/06/2018,Sports_celeb,@NiaJaxWWE,RT @nessasilva46: So beautiful @NatbyNature @NiaJaxWWE 😍😍😍 https://t.co/wur6ETfpLa +06/06/2018,Sports_celeb,@NiaJaxWWE,Happy birthday!!!!! https://t.co/dJIHkzGy4b +06/05/2018,Sports_celeb,@NiaJaxWWE,RT @lole9000: @NiaJaxWWE Yes girl🤘 https://t.co/KlP3DIKnI0 +06/05/2018,Sports_celeb,@NiaJaxWWE,Had quite the special day yesterday! Was able to spend time with amazingly gifted athletes @SpecialOlympics & some… https://t.co/aFcztkVr8f +06/05/2018,Sports_celeb,@NiaJaxWWE,There are few women who I respect as much as @NatbyNature ...and she knows this is a physical business. As Supersta… https://t.co/nWnX25Pybx +06/05/2018,Sports_celeb,@NiaJaxWWE,"Nothing beats Cali weather 😍 + +Cali-for-NIA 🙌🏽💜" +06/05/2018,Sports_celeb,@NiaJaxWWE,"RT @JamesHands777: @NiaJaxWWE & @RealPaigeWWE I wanted to make these for you two. +#FanArt https://t.co/awk5WK7YLx" +06/05/2018,Sports_celeb,@NiaJaxWWE,RT @NiaJaxCom: Photos of Nia Jax from the Be A Star rally in Houston https://t.co/IvZyQ7mEG1 +06/05/2018,Sports_celeb,@NiaJaxWWE,🙌🏽 https://t.co/20YwTPjBad +06/04/2018,Sports_celeb,@NiaJaxWWE,Awww happy birthday little man!!! 💜🎉🎂 https://t.co/zdoeaFpNSm +06/04/2018,Sports_celeb,@NiaJaxWWE,"RT @SabatiniAmelie: Ok now @NiaJaxWWE and @IAmEliasWWE are my new #FriendshipGoals !🙌🏼😻 +They are so cute!🙌🏼😹😻 + +Happy Monday guys!🤗💛 +#Monday…" +06/03/2018,Sports_celeb,@NiaJaxWWE,Happy birthday!!! 💜😘😘 https://t.co/GFQ083qohU +06/03/2018,Sports_celeb,@NiaJaxWWE,"RT @BillySmith: I’m having so much fun being back here with the good people of Louisiana this weekend. And, Of Course My Girl @NiaJaxWWE ak…" +06/02/2018,Sports_celeb,@NiaJaxWWE,"RT @suh_ellenb: ""Who wants to eat with Elias?"" +@NiaJaxWWE 😂😂 https://t.co/V89kbFqwPH" +06/02/2018,Sports_celeb,@NiaJaxWWE,RT @TJWilson: 3 years ago my entire world was halted. I had no clue what the hell the rest of my life would look like. I really enjoy my… +06/02/2018,Sports_celeb,@NiaJaxWWE,RT @burdine_cindy: Look what I found at Wal-Mart today! @NiaJaxWWE and @NaomiWWE my 2 favorites!!! #Notlikemost #feeltheglow https://t.co/5… +07/01/2018,Sports_celeb,@titoortiz,Ben is on a mission! #UFC @Primetime360ESM https://t.co/RVH55RVQ3P +06/28/2018,Sports_celeb,@titoortiz,"#SILENCER: Chaos is King in the Official Trailer for the Action-Thriller Starring @jmessner05 , @officialDannyT ,… https://t.co/nx75jPfJmw" +06/28/2018,Sports_celeb,@titoortiz,"🙏🏼 #Repost samantha_r_bonilla with get_repost +・・・ +Today is the anniversary of #OperationRedWings 🇺🇸 Please take the… https://t.co/n5FyggKyax" +06/28/2018,Sports_celeb,@titoortiz,"RT @IlbayDeniz: So what’s the deal on the +@titoortiz VS @ChuckLiddell 3 Fight? My big bro Tito started training camp and is ready, @OscarDe…" +06/28/2018,Sports_celeb,@titoortiz,"RT @SubmissionAus: Submission Radio #162 OUT NOW featuring @JakeMatthewsUFC, @danthehangman, @stylebender, @akajav, @titoortiz and @marc_ra…" +06/28/2018,Sports_celeb,@titoortiz,"RT @DrinaMohacsi: FightersOnly @FOawards 10th Annual World MMA Awards TUESDAY, JULY 3 @Palms #LasVegas #PearlConcertTheatre FOX Sports Netw…" +06/27/2018,Sports_celeb,@titoortiz,Building a castle one brick at a time. #Silencer is the 2nd of the 3rd films I shot in a year. @MadeaHalloween firs… https://t.co/MgHPvtZ6C1 +06/27/2018,Sports_celeb,@titoortiz,Repost: @AmberNicholeM1 This movie 🎥 on so many levels brings savagery!! @titoortiz and I throughly enjoyed every s… https://t.co/zDgLf8FRz0 +06/27/2018,Sports_celeb,@titoortiz,@SicarioMovie This is a must see film! WOW!!!! #Eyeopener +06/27/2018,Sports_celeb,@titoortiz,@SicarioMovie WOW!!!!! Please watch this film! #eyeopener 👍🏼👍🏼 +06/27/2018,Sports_celeb,@titoortiz,sicariomovie the first movie was great. Now we are here for the second! #sicaro2soldado 🇲🇽🇺🇸 @ Regency Village and… https://t.co/HoKXgAvLlU +06/27/2018,Sports_celeb,@titoortiz,What the FK @ChuckLiddell ? You’re stepping over dollars to pick up pennies! #GoldenBoyMMA #TitovsChuck3 +06/26/2018,Sports_celeb,@titoortiz,#Motivation @ UFC GYM https://t.co/8vYgXrckMN +06/26/2018,Sports_celeb,@titoortiz,"When you know things are going good! 😊 @ Huntington Beach, California https://t.co/t0JHy0tOkL" +06/26/2018,Sports_celeb,@titoortiz,"Always getting better! @Criscyborg @gabijiu +Wrestling and mma ✅ +Learning is priceless! +Tks @titoortiz for teachin… https://t.co/judS0Nx9Pt" +06/25/2018,Sports_celeb,@titoortiz,"#Make17Monday +We started #MAKE17 to Inspire, Spread Love and Acceptance. We wanted our boys to make 17 new friends… https://t.co/AKoq90D5oL" +06/23/2018,Sports_celeb,@titoortiz,"These guys have some driving skills. Congrats Mexico Soccer ⚽️ 🇲🇽roushsupercharged with get_repost +・・・ +#pacificblvd… https://t.co/RkfB0yttsH" +06/22/2018,Sports_celeb,@titoortiz,"First day hitting pads with @razorob lots of work to do. +・・・ +Padding @ufc Hall of Fame & 5x LHW Champion… https://t.co/BckAbwTAxD" +06/22/2018,Sports_celeb,@titoortiz,"Week 1 @razorob with get_repost +・・・ +Look who’s back training... solid work today with the homie @titoortiz… https://t.co/va6jSmzVSF" +06/21/2018,Sports_celeb,@titoortiz,#TBT That one time in Thailand. Thailand didn’t… https://t.co/epqPsEijYS +06/20/2018,Sports_celeb,@titoortiz,@redbird45 Sell out to who??? You don’t want a better country? +06/20/2018,Sports_celeb,@titoortiz,The partnership of @RockwellTime and @titoortiz.… https://t.co/Frl8RTSjsu +06/20/2018,Sports_celeb,@titoortiz,@kenhass I have his hats and it says made in USA. 🤔 +06/20/2018,Sports_celeb,@titoortiz,RT @OliverMcGee: Wow. Throwback to when Senator Barack Obama agreed with @realDonaldTrump on immigration! RT this so your friends see this!… +06/20/2018,Sports_celeb,@titoortiz,"RT @OliverMcGee: Video footage surfaces from 2014 showing that under Obama, family separations and holding centers were EXACTLY the same.…" +06/19/2018,Sports_celeb,@titoortiz,"@hollywoodsports with get_repost +・・・ +UFC legend… https://t.co/GmHH7IwYr2" +06/19/2018,Sports_celeb,@titoortiz,5 mins x 5 rounds #groundandpound… https://t.co/zePq5aWmyg +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu @CptBozoJabroni Stop breaking the law. +06/19/2018,Sports_celeb,@titoortiz,@theubergirl It will. +06/19/2018,Sports_celeb,@titoortiz,@Hairball911 No we are not!!!! This will change. @realDonaldTrump will not go down that easy. +06/19/2018,Sports_celeb,@titoortiz,@Chris_Ledezma That’s stupid. +06/19/2018,Sports_celeb,@titoortiz,@Hairball911 I wish more people would speak up. Because it going to get worse. +06/19/2018,Sports_celeb,@titoortiz,@theubergirl It’s like a revolution. It will get fixed soon. +06/19/2018,Sports_celeb,@titoortiz,@dazzaDS Why dont they take their kids with them? +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu I would of never been born. Key words 4 generation! +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu 150 years ago. +06/19/2018,Sports_celeb,@titoortiz,So let’s get this straight we want this to be… https://t.co/B706Qj5sES +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu Shit I’ve done it all my own! Not one family member has help me besides my brother and he’s white. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu No I’m America with MexiCan decent. But still do you want America like Mexico? +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni @manolo_jiujitsu That’s been a long time and Ive payed my time. +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni The parents are choosing to abandon their kids. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu https://t.co/Kvehdk1rTy +06/19/2018,Sports_celeb,@titoortiz,@dazzaDS Yes look a history. +06/19/2018,Sports_celeb,@titoortiz,@CptBozoJabroni No because I would do any thing to stay with them. Not abandon them. Don’t let the media brainwash you. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu No I’m giving MexiCan/America’s the dream that hard work pays off. By obeying the laws. I had to d… https://t.co/Qi31ulryJV +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu Im a 4th generation MexiCan/America that wants safety for my kids. Do you want America like Mexico… https://t.co/Pcps3j9bg6 +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu They are not ripped. The parents choose to abandon them. Obama did it more an all presidents put together. +06/19/2018,Sports_celeb,@titoortiz,@manolo_jiujitsu We live by laws. Why do people want to live In the USA? +06/19/2018,Sports_celeb,@titoortiz,It’s crazy how many people don’t like to hear the truth. Is it to hard to face? +06/18/2018,Sports_celeb,@titoortiz,#Make17Monday scottcarrgbcm with… https://t.co/b61sDvGKGK +06/18/2018,Sports_celeb,@titoortiz,RT @Punishment99: Happy Monday. Who else is determined to put in the work this week? https://t.co/bUFQFkMYKo +06/18/2018,Sports_celeb,@titoortiz,Great Father’s Day with the family. #fishing @… https://t.co/gOabYuAXhW +06/17/2018,Sports_celeb,@titoortiz,Saturday Ortiz family battle. Parents vs kids… https://t.co/0tYEfCLxtJ +06/16/2018,Sports_celeb,@titoortiz,@Primetime360ESM @BenMoa4 ready to go 8-0 on June 29th. This heavyweight is ready to prove himself. https://t.co/20IW5YnK0r +06/16/2018,Sports_celeb,@titoortiz,RT @AmberNicholeM1: Tito Ortiz and Amber Nichole Miller 2018 Puig Poker Tournament Red Carpet https://t.co/2cy3Kb9GVB @titoortiz @YasielPui… +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all captains… https://t.co/KSdSOoZ2wK +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all captains… https://t.co/0bzYrWev25 +06/14/2018,Sports_celeb,@titoortiz,@FishPunishment Game On!!!!! I hope all capitals… https://t.co/fgz47EQ8Y9 +06/14/2018,Sports_celeb,@titoortiz,Happy Birthday Mr. President @RealDonaldTrump… https://t.co/kAMUq5gSPt +06/14/2018,Sports_celeb,@titoortiz,The beginning of something great. #wrestling… https://t.co/dUbIPFCsnk +06/14/2018,Sports_celeb,@titoortiz,RT @sweetyhigh: TEAM WORK makes the DREAM WORK! 💙 @EmilyOsment @HaleyJoelOsment @annewinters @georgelopez @ArsenioHall @AmberNicholeM1 @tit… +06/12/2018,Sports_celeb,@titoortiz,@YazmanianDVL08 great cause to support last… https://t.co/rrC6glVt3P +06/12/2018,Sports_celeb,@titoortiz,"RT @fightnet: See the best performances from @titoortiz on ""UFC in 60"" at 5 p.m. ET on @fightnet! https://t.co/kp7prWm9lb" +06/12/2018,Sports_celeb,@titoortiz,"RT @fightnet: See the top performances from @titoortiz on ""UFC in 60"" at 5 p.m. ET on @fightnet! https://t.co/5lSMt2IW7c" +06/12/2018,Sports_celeb,@titoortiz,In 70 years U.S. couldn’t make this happen… https://t.co/PoTmxxm6RT +06/12/2018,Sports_celeb,@titoortiz,I found someone with a head bigger than mine. Go… https://t.co/c15uLY6Rrm +06/11/2018,Sports_celeb,@titoortiz,RT @34Dodgers: The #HuntingtonBeachBadBoy @titoortiz https://t.co/OBQNr7uDOS +06/11/2018,Sports_celeb,@titoortiz,@martinmcneil @JayTWarsh @OfficialSaschaK @BrownsGuru13 @ChuckLiddell @TMZ @danawhite Will to take that chance. I t… https://t.co/3ygOm8a3Gh +06/11/2018,Sports_celeb,@titoortiz,@martinmcneil @JayTWarsh @OfficialSaschaK @BrownsGuru13 @ChuckLiddell @TMZ @danawhite 100% he is asking for it. I want redemption. +06/11/2018,Sports_celeb,@titoortiz,Looking forward to the event! https://t.co/FBz7iJ2UUC +06/11/2018,Sports_celeb,@titoortiz,Happy Birthday parilloboxing you have made my… https://t.co/mEYDuU186O +06/11/2018,Sports_celeb,@titoortiz,Thanks for having s on the show! @tattoolovesla… https://t.co/7wiXthcdKY +06/11/2018,Sports_celeb,@titoortiz,"RT @fightnet: FAN VOTE! We're featuring UFC Hall of Famers in episode of ""UFC in 60"" for International Fight Week! + +Which ""EARLY LEGEND"" wo…" +06/11/2018,Sports_celeb,@titoortiz,#Make17Monday foxnews with… https://t.co/U95pWAnwqh +06/11/2018,Sports_celeb,@titoortiz,"@Noel3881 @JayTWarsh @ChuckLiddell No your boy chuck called me out. Third time will be my charm. Try,try and try again." +06/11/2018,Sports_celeb,@titoortiz,@WickedTuna Sunday’s are great. Get my fix of fishing from television can really happen. #fishingbug @TJHOTTUNA +06/10/2018,Sports_celeb,@titoortiz,RT @_LES_: @ChuckLiddell Never thought I'd see u dodge @titoortiz +06/10/2018,Sports_celeb,@titoortiz,@ChuckLiddell Why isn’t this fight signed yet? 🤔 Oh yeah we are wait on you! Let’s gets this done! Come on chucky p… https://t.co/x37goYyxJz +06/10/2018,Sports_celeb,@titoortiz,This was my last fight last year. You must of forgot! I want #Redemption on The Iceman. https://t.co/Mi25RBD8pk +06/10/2018,Sports_celeb,@titoortiz,.@ChuckLiddell please don’t tell me it was all talk on @TMZ? You say I’m an easy fight? You are the Iceman but are… https://t.co/bmYv9fFpDb +06/10/2018,Sports_celeb,@titoortiz,@RobWhittakermma has a huge heart. 👏🏼 Respect #ufc225 +06/10/2018,Sports_celeb,@titoortiz,Great fight! +06/10/2018,Sports_celeb,@titoortiz,They are gassed. #ufc225 +06/10/2018,Sports_celeb,@titoortiz,@toycars1980 You can see it on my Instagram +06/10/2018,Sports_celeb,@titoortiz,@toycars1980 Sorry I was to busy fishing. +06/10/2018,Sports_celeb,@titoortiz,Wait @YoelRomeroMMA didn’t make weight? Crazy! #ufc225 +06/09/2018,Sports_celeb,@titoortiz,Great day on the water. Went 5-12 on yellowtail… https://t.co/Q6maKjsg2b +06/09/2018,Sports_celeb,@titoortiz,@SugaRashadEvans Reapect!✊🏼 https://t.co/sT1oXikxJ4 +06/08/2018,Sports_celeb,@titoortiz,"@Bloodydecks with get_repost +・・・ +Monster calico… https://t.co/QebZ4QmHn7" +06/07/2018,Sports_celeb,@titoortiz,@Brouskie Come train with me. Just one session of the three I do 6 day a week. +06/07/2018,Sports_celeb,@titoortiz,🙏🏼 #Redemption https://t.co/7o3gIN2rHK +06/07/2018,Sports_celeb,@titoortiz,@bradcooney1 The hell with it I’m doing it with or without him. I’m on week 4 of training and I still have it. +06/07/2018,Sports_celeb,@titoortiz,https://t.co/uPjInI7a5M thank you for the new mouth piece. Since 2005 you guys have produced the best mouth pieces.… https://t.co/yfKTa99X1M +06/06/2018,Sports_celeb,@titoortiz,"RT @HispanicallyUrs: MOVIES: @Cinedigm acquires North American distribution rights to @titoortiz's ""#Silencer."" https://t.co/xhbU8LKA7s" +06/05/2018,Sports_celeb,@titoortiz,@quicorafa I will be there that weekend. +06/05/2018,Sports_celeb,@titoortiz,Great news coming soon. #GoldenBoyMMA +06/04/2018,Sports_celeb,@titoortiz,.@ChuckLiddell walks away from a multimillion dollar fight? I can’t wait anymore. #GoldenBoyMMA +06/02/2018,Sports_celeb,@titoortiz,@AlanMurphyMMA @ChuckLiddell Waiting on @ChuckLiddell +06/01/2018,Sports_celeb,@titoortiz,Happy 16th Birthday Son @Jakeort58726870 You… https://t.co/TwXq2SWVU5 +05/31/2018,Sports_celeb,@titoortiz,@mjBrolin @ChuckLiddell @GoldenBoyBoxing Ppl don’t like the truth. You know the history. 👍🏼 +05/31/2018,Sports_celeb,@titoortiz,"RT @CollinAStewart: @ZachJLindquist @titoortiz @ChuckLiddell @GoldenBoyBoxing To be fair, Chuck called him out first." +05/31/2018,Sports_celeb,@titoortiz,.@ChuckLiddell good thing I’m not holding my breath. Let’s give the fans this fight! We have a chance to change the… https://t.co/KtXE05vtRr +05/31/2018,Sports_celeb,@titoortiz,RT @iamKokoD: @MMAjunkie Don’t think so. @titoortiz steamrolled @ChaelSonnen who’s still fighting at a decent level. He’ll smash chuck this… +05/30/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: May30.1997 + +21 years ago today, + +Tito Ortiz made his professional MMA debut, & def. Wes Albritton by TKO https://t.co/…" +05/29/2018,Sports_celeb,@titoortiz,"RT @fightnet: Tune in to #Retrospective with @patrick_cote at 9:30 p.m. ET speaking on facing @titoortiz, plus much more. https://t.co/uwSc…" +05/29/2018,Sports_celeb,@titoortiz,.@ChuckLiddell Let’s get this signed! @GoldenBoyBoxing #GoldenBoyMMA https://t.co/Qmg45NMmH7 +05/26/2018,Sports_celeb,@titoortiz,"RT @punisherpride: @Punishment99 @titoortiz Tito, great clothing line but missing bigger sizes always,need 2X - 3X and some jersey tanks...…" +05/25/2018,Sports_celeb,@titoortiz,"RT @Punishment99: We've got some amazing deals for you this Memorial Day weekend. Today through Tuesday, save 20% off of your entire order…" +05/25/2018,Sports_celeb,@titoortiz,"RT @Punishment99: And we have yet another incredible deal for you on this Memorial Day Weekend! +When you spend $25 we’ll send you one of th…" +05/24/2018,Sports_celeb,@titoortiz,#keepfighting https://t.co/D8QnafTeoT +05/24/2018,Sports_celeb,@titoortiz,RT @MMAWriter_Greg: @JayTWarsh exclaims @titoortiz motive in regards to the Liddell / Ortiz Trilogy. #MMANews #MMA https://t.co/8jYUabSFFA +05/24/2018,Sports_celeb,@titoortiz,👌🏼 https://t.co/88pVb1QgQJ +05/23/2018,Sports_celeb,@titoortiz,@bradcooney1 @USPS @bradcooney1 Let me see what I can do for you guys. 👌🏼 +05/22/2018,Sports_celeb,@titoortiz,RT @MikeTyson: Check out my new podcast episode with former UFC champion and UFC Hall of Famer @TitoOrtiz. We talk about whether I ever tho… +05/22/2018,Sports_celeb,@titoortiz,@MMAWriter_Greg @JayTWarsh @ChuckLiddell My brother from another mother. +05/22/2018,Sports_celeb,@titoortiz,“I started this gangster shit and this is the mother fucking thanks I get”- @IceCube Bellator 170 Recap: Tito Ortiz… https://t.co/Us1Kgb4OEl +05/22/2018,Sports_celeb,@titoortiz,".@ChuckLiddell what’s taking so long? You said,” you like punching me in the head and it’s an easy fight for you!”… https://t.co/inD4TzWeTP" +05/19/2018,Sports_celeb,@titoortiz,RT @TMZ_Sports: Tito Ortiz Says Fight With Chuck Liddell Will be Hugest In MMA History https://t.co/80EA6ev6M7 +05/19/2018,Sports_celeb,@titoortiz,RT @criscyborg: Tito Ortiz favored over Chuck Liddell in 3rd fight https://t.co/6TaPiqbd1k +05/19/2018,Sports_celeb,@titoortiz,"RT @TheTylt: .@ufc legends @titoortiz and @ChuckLiddell could be squaring off for their third fight. Who would win? + +Tweet #TeamOrtiz or #…" +05/19/2018,Sports_celeb,@titoortiz,@KnicktheWolf @TMZ_Sports Yes 2.2 million views and tapped out Chael in the first round. 🤔 +05/19/2018,Sports_celeb,@titoortiz,@GinaHerndon7 @Poison @cheaptrick I had to train. +05/19/2018,Sports_celeb,@titoortiz,@GirlyDuckGirl I hope you enjoy the show. https://t.co/MRegFz6R3G +05/19/2018,Sports_celeb,@titoortiz,@gabijiu Yes Monday. Call @CrisCyborg for time. +05/19/2018,Sports_celeb,@titoortiz,@GirlyDuckGirl Yes +05/18/2018,Sports_celeb,@titoortiz,The first person to see me at Cleber Luciano BJJ & MMA in Huntington Beach can have them. I will be there at 5pm. +05/18/2018,Sports_celeb,@titoortiz,@MmaDonald What part of free don’t u get? +05/18/2018,Sports_celeb,@titoortiz,"Who wants two free tickets to @Poison and @CheapTrick for tonight’s show in Irvine,CA 7pm?" +05/18/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: May17.2014 + +Tito Ortiz makes his Bellator debut, + +& puts Alexander Shlemenko to sleep with an arm triangle choke https…" +05/16/2018,Sports_celeb,@titoortiz,@UFC5150 @Punishment99 It’s strong. It feels like new. +05/16/2018,Sports_celeb,@titoortiz,Thank you! https://t.co/9Goa7oTK6G +05/15/2018,Sports_celeb,@titoortiz,"RT @OfficialSaschaK: @titoortiz out of retirement✅ +@ChuckLiddell out of retirement✅ +@OscarDeLaHoya as a promoter✅ +All we need is a DATE & P…" +05/15/2018,Sports_celeb,@titoortiz,Happy Birthday to @AlonzoLAPD ones of my biggest fans and supporters… https://t.co/g5WaQTjzCd +05/14/2018,Sports_celeb,@titoortiz,@JonnyBones 🤫Let me get redemption this time around. +05/14/2018,Sports_celeb,@titoortiz,#TitovsChuck3 soon to come! Let’s Go!!’ +05/14/2018,Sports_celeb,@titoortiz,"Step two done ✅ +Breaking News: Chuck Liddell officially out of… https://t.co/vsCPuI1v52" +05/14/2018,Sports_celeb,@titoortiz,Welcome mercedesbenzsd and shaneboyd13 to @TOautogroup a match made… https://t.co/mGzvHnEcHL +05/14/2018,Sports_celeb,@titoortiz,RT @OnPointMMA: .@ChuckLiddell says he’s talking to @OscarDeLaHoya about partnering with @GoldenBoyBoxing and putting together an #MMA figh… +05/14/2018,Sports_celeb,@titoortiz,"#Make17Monday #Repost scottcarrgbcm +My friend @titoortiz started… https://t.co/VyojIBeDFA" +05/14/2018,Sports_celeb,@titoortiz,"My brothers and me with Mom. #Mothersday @ Huntington Beach, California https://t.co/cBxHcb5tXp" +05/13/2018,Sports_celeb,@titoortiz,Happy Mother’s Day Mom joycejohnson398 I love you. ❤️ @ Huntington… https://t.co/gBLO0KcKO0 +05/13/2018,Sports_celeb,@titoortiz,Video: Aaron Pico vs. Justin Linn https://t.co/4kfycP0Qjg via @MMAFighting +05/13/2018,Sports_celeb,@titoortiz,Ready to go! @ufc https://t.co/MtCVEh93OZ +05/13/2018,Sports_celeb,@titoortiz,"RT @MMAHistoryToday: UFC 61 took place 10 years ago today + +It set a UFC PPV buyrate record at an estimated 775,000+ buys https://t.co/dNA2g…" +05/13/2018,Sports_celeb,@titoortiz,I see a challenge for @CrisCyborg #ufc224 +05/13/2018,Sports_celeb,@titoortiz,"@RyanBader finishes King Mo +in 15 SECONDS!! @ RVCA https://t.co/lHQxz3gG1U" +05/13/2018,Sports_celeb,@titoortiz,Good fight #ufc224 +05/13/2018,Sports_celeb,@titoortiz,"Congrats brother @WinbackUSA +・・・ +Need a caption?  1st round TKO https://t.co/qt5stC34HN" +05/13/2018,Sports_celeb,@titoortiz,WOW! Great fight! @espn +05/13/2018,Sports_celeb,@titoortiz,#Lomachenko is fast as hell. @espn +05/13/2018,Sports_celeb,@titoortiz,"Straight right hand! Says ,@OscarDeLaHoya" +05/13/2018,Sports_celeb,@titoortiz,@TheGarden looks packed on @ESPN +05/13/2018,Sports_celeb,@titoortiz,@NickHeinMMA kickass! @Punishment99 #UFC224 +05/12/2018,Sports_celeb,@titoortiz,Lucky to live in paradise. #HardWorkPaysOff 🙏🏼 #HuntingtonBeach 🇺🇸 @… https://t.co/mK65orhc7e +05/12/2018,Sports_celeb,@titoortiz,TONIGHT! Free on espn #LinaresLoma #AndStill 👑 @jorgelinares… https://t.co/GXZfCkRV2K +05/12/2018,Sports_celeb,@titoortiz,@AntonioSabatoJr @POTUS @realDonaldTrump Mine too !🙏🏼🇺🇸 +05/12/2018,Sports_celeb,@titoortiz,"RT @Punishment99: So you forgot tomorrow is Mother's Day? Not to worry. Use code ""MOM"" through tomorrow and save thirty percent on your ent…" +05/11/2018,Sports_celeb,@titoortiz,What if #MMA fighters got paid like boxers? Instead of subcontractors. We would be partners. I’m going to change th… https://t.co/E0vRWr1ceN +05/11/2018,Sports_celeb,@titoortiz,I want to give the fans the fight they have been waiting for… https://t.co/w9B6xHi4xB +05/11/2018,Sports_celeb,@titoortiz,Introducing the partnership of @RockwellTime and @titoortiz.… https://t.co/1EEVTm1XRy +05/11/2018,Sports_celeb,@titoortiz,#TBT goes to @gtjokes Happy Birthday today homie. #captionthis @… https://t.co/rMquaddHSS +05/09/2018,Sports_celeb,@titoortiz,"One step closer. #TitovsChuck3 @ Huntington Beach, California https://t.co/Wg1RxQ4GUU" +05/09/2018,Sports_celeb,@titoortiz,@lapane21 Go to https://t.co/tZkfaahu1H +05/08/2018,Sports_celeb,@titoortiz,".@RealDonaldTrump +Making Moves in Historic Portions ! United States… https://t.co/YXPaLxlU7t" +05/08/2018,Sports_celeb,@titoortiz,"#Repost brown__eyed_girl__ with get_repost +・・・ +Tristen, Mom Misty… https://t.co/zia9xqTGDh" +05/08/2018,Sports_celeb,@titoortiz,I wish more did. https://t.co/fbTv2guzau +05/07/2018,Sports_celeb,@titoortiz,"#Make17Monday +We started #MAKE17 to Inspire, Spread Love and Acceptance. We… https://t.co/mxZrwDYjaU" +05/06/2018,Sports_celeb,@titoortiz,#AmericaFirst @ Caesars Palace https://t.co/dZDYTm8kcZ +05/05/2018,Sports_celeb,@titoortiz,This is how we walk into #CincoDeMayo weekend l. Let’s go!!! 🇲🇽 #MexiCan @… https://t.co/orocielbZ4 +05/05/2018,Sports_celeb,@titoortiz,The best for the job! @GrapplersRus -… https://t.co/bZUYk9UkqD +05/05/2018,Sports_celeb,@titoortiz,"This is the new breed of boxing. Speed for days. Wow. @OscarDeLaHoya - +Great… https://t.co/Vq0qOs7bDd" +05/05/2018,Sports_celeb,@titoortiz,@RockwellTime time to enjoy #CincoDeMayo 🇲🇽#LasVegas weekend. Thank you… https://t.co/N09XjBSrSX +05/04/2018,Sports_celeb,@titoortiz,"#TBT So the story can still be finished. #TitovsChuck3 @ Huntington Beach,… https://t.co/rprIKE8Cqp" +05/03/2018,Sports_celeb,@titoortiz,The fight that didn’t happen #TitovsChuck3 just might happen!… https://t.co/0QsTAhKEPV +05/03/2018,Sports_celeb,@titoortiz,#TBT My first fight and it was for free in the @UFC I fought twice that… https://t.co/I9VldcHVdg +05/03/2018,Sports_celeb,@titoortiz,#hardworkpaysoff +05/02/2018,Sports_celeb,@titoortiz,.@TheRock Happy Birthday I hope you have a great one. Thank for being a great… https://t.co/Xm1aL8IJGm +05/02/2018,Sports_celeb,@titoortiz,"RT @Punishment99: A @Punishment99 addiction from OAKVILLE, Ontario 🇨🇦 https://t.co/bW5yDrdKHo" +05/01/2018,Sports_celeb,@titoortiz,@billykorhummel Yes it was. +05/01/2018,Sports_celeb,@titoortiz,Middle of my Monday session with parilloboxing take a break and then train… https://t.co/QlIeZde20W +04/30/2018,Sports_celeb,@titoortiz,Nice to have a partnership with @ManheimSoCal and @TOAutoGroup Our cars are bringing all the… https://t.co/hnNU6QTvN6 +04/30/2018,Sports_celeb,@titoortiz,"#Make17Monday +Shirts now Available on @Punishment99 We started #MAKE17 to Inspire, Spread Love… https://t.co/CLVC6eDY4O" +04/30/2018,Sports_celeb,@titoortiz,"We set them up you knock them down. @Primetime360esm @UFC +Believe me. On the 27th you wanna see… https://t.co/dXo52eA4xv" +04/29/2018,Sports_celeb,@titoortiz,My first fight and it was for free in the @UFC I fought twice that night. The only UFC fighter… https://t.co/I8xybFAemK +04/28/2018,Sports_celeb,@titoortiz,"#itstartsathome #Make17 @ Huntington Beach, California https://t.co/a1hlqnb5Ts" +04/27/2018,Sports_celeb,@titoortiz,"Join us tomorrow, Saturday 4/28 @ 10am to support The Youth Center! They do so much for our… https://t.co/2qsN1R5haj" +04/27/2018,Sports_celeb,@titoortiz,@RockwellTime #HallofFamer #TitoOrtiz watches soon to come! #MMA #timetotakeover #limitededition… https://t.co/DeVNAZfOS3 +04/27/2018,Sports_celeb,@titoortiz,RT @MikeTyson: Check out my interview with @TitoOrtiz where we talk about what would happen if Conor McGregor and Floyd Mayweather ever fou… +04/26/2018,Sports_celeb,@titoortiz,Thank you ufcgirlie helping us do something positive for our kids future. #itstartsathome… https://t.co/lO2JH5c3Pr +04/25/2018,Sports_celeb,@titoortiz,".miketyson with get_repost +・・・ +Link in bio. Talking to former UFC champion Tito Ortiz on the… https://t.co/ChmH6P159n" +04/24/2018,Sports_celeb,@titoortiz,"#Repost @tattoolovesla with get_repost +・・・ +So excited to be a part of bitethemic miketyson check… https://t.co/xfpCB1AV02" +04/22/2018,Sports_celeb,@titoortiz,@rywall615 For @MakeAWish +04/22/2018,Sports_celeb,@titoortiz,#Nashville is off the hook. +04/22/2018,Sports_celeb,@titoortiz,"This man is on a mission. @ufconfox +・・・ +Siyar Bahadurzada with the crippling body shot KO… https://t.co/4u8aNuwMJH" +04/22/2018,Sports_celeb,@titoortiz,@CraigWoolley12 @MakeAWish +04/22/2018,Sports_celeb,@titoortiz,"@PrimeTime360esm +Fighter @Siyarized congrats awesome KO!!! @UFC @alistairovereem #MMA @ Atlantic… https://t.co/xWuqtadQ6A" +04/21/2018,Sports_celeb,@titoortiz,RT @DonaldJTrumpJr: This is a really big deal for everyone! Well done @realDonaldTrump https://t.co/aVEmPF7hSu +04/21/2018,Sports_celeb,@titoortiz,My service will be impeccable! This is a great cause. Thank you. Kevin Carter and Jay… https://t.co/3lzhq1WfFn +04/20/2018,Sports_celeb,@titoortiz,Thank you for help making a difference. #Make17 #Repost @geronimology with… https://t.co/orlDxMTeQM +04/20/2018,Sports_celeb,@titoortiz,"RT @PokerNightTV: One night of poker was not enough for @titoortiz! +Check him out again: +https://t.co/CfkEm8Hivb #GardensPokerNight + +Also…" +06/14/2018,Sports_celeb,@SpiderAnderson,RT @justcause: #justcause4 #E32018 @SpiderAnderson is HERE https://t.co/KimFrBUgNm https://t.co/ZVJ4MXTh5f +06/08/2018,Sports_celeb,@SpiderAnderson,Mais um dia! Mais um treino obrigado! @coachfabiomelo https://t.co/ZMaBsoXTMN +06/04/2018,Sports_celeb,@SpiderAnderson,"Mais um dia. Quase acabando meu povo . +#rcview +#cinematogapher #filmmakerslife +#cinematography #filmmaking… https://t.co/GuSEWIrE0G" +05/22/2018,Sports_celeb,@SpiderAnderson,"Fala meu povo!!! +Ajude você também! Para o pessoal do Rio de Janeiro! Compareça, participe, faça seu cadastro nest… https://t.co/hBRLzU7MvY" +05/17/2018,Sports_celeb,@SpiderAnderson,"Check out the Ultimate Beastwear for kids + +Confira o Ultimate Beastwear para crianças https://t.co/6xJc2bQc07" +05/10/2018,Sports_celeb,@SpiderAnderson,Step into the Octagon as the 🕷️ 🇧🇷 Get up to 40% off for a limited time 👉 https://t.co/mFqcbo9euI https://t.co/JnoeUS4H34 +04/16/2018,Sports_celeb,@SpiderAnderson,O melhor dessa vida é o momento em que você olha para trás e conta da forma mais divertida todas as coisas que vivi… https://t.co/jRhr0S0zKV +04/06/2018,Sports_celeb,@SpiderAnderson,"Coming soon! 🐉 Em breve! +🎥 The Invincible Dragon https://t.co/foLYLGTdsY" +04/05/2018,Sports_celeb,@SpiderAnderson,Fala meu povo! Corre lá no perfil do Instagram da SpiderKick para participar do sorteio e faturar esse boné maneiro… https://t.co/IrNT4aaO59 +04/04/2018,Sports_celeb,@SpiderAnderson,Coming soon ! https://t.co/kUuAl04yt6 +03/23/2018,Sports_celeb,@SpiderAnderson,🎮 It's time for the 🕷 to #BeatTheBoss #EAUFC3 👊🏾 Buy now and save 35% 👉 https://t.co/mFqcboqPTi https://t.co/tDABzscw9C +03/01/2018,Sports_celeb,@SpiderAnderson,A Besta voltou e eu serei o host do Time Brasil. Não percam #UltimateBeastmaster Terceira temporada está chegando e… https://t.co/lU19znbZSz +02/28/2018,Sports_celeb,@SpiderAnderson,My people! Good news! I would like to thank the watch brand Ritmo Mundo (@ritmo_mundo) for the invitation to be amb… https://t.co/oQqWk5jAmb +02/26/2018,Sports_celeb,@SpiderAnderson,"Hey guys! On March 9 and 10 I'll be at @KillerBees_Fl (Melbourne, Florida, USA) for a technical seminar. (321) 541-… https://t.co/F5vEmcCARd" +02/23/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/eIA7FiduPA +02/19/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/PfAFfAGDzg +02/14/2018,Sports_celeb,@SpiderAnderson,"My friends (Dave Broome @davebroome88 e Shakim Compere), thank you for the time with you. Putting into practice all… https://t.co/Up3MOEMKWx" +02/02/2018,Sports_celeb,@SpiderAnderson,"Time to play some Knockout Mode 👊 💥 ! +@EASPORTSUFC 3 is out now! 👉 https://t.co/EFwopwULvT https://t.co/QrBNG29BP8" +02/01/2018,Sports_celeb,@SpiderAnderson,My teacher and I 🤓! #YourYear #BerlizUS #SpeakwithConfidence https://t.co/YenTpLuBmM +01/30/2018,Sports_celeb,@SpiderAnderson,"O filme é incrível! A mensagem que este incrível filme da @marvelstudios passa, é fantástica! The movie is incredib… https://t.co/niVQl8KGrX" +01/23/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/MxVxWC5x5X +01/22/2018,Sports_celeb,@SpiderAnderson,"Todos sabem do meu sonho, com todo respeito ao grande @RealRoyJonesJr , espero que possamos fazer este espetáculo.… https://t.co/opjeB23uFI" +01/21/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/YhcV9RRQhD +01/16/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/iiuu4H0oNk +01/14/2018,Sports_celeb,@SpiderAnderson,Quem já ouviu a nova música do @officialkalyl ? https://t.co/lZ8H2GgXKl +01/12/2018,Sports_celeb,@SpiderAnderson,"Galera, estamos trabalhando para trazer novidades pra vocês com a minha marca, a Spider Kick! +. +Hey guys, we are wo… https://t.co/NASZYjyKuW" +01/10/2018,Sports_celeb,@SpiderAnderson,The new song of Kalyl Silva - Nova música do Kalyl Silva - https://t.co/4YSd6mFNwG +01/02/2018,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕷🕸 https://t.co/Q8oWjrejCE +12/28/2017,Sports_celeb,@SpiderAnderson,👊🏾🙏🏾🕸🕷 https://t.co/QxOUyth0C4 +12/27/2017,Sports_celeb,@SpiderAnderson,🕸🕷🙏🏾👊🏾 https://t.co/M5pZR6E1Fv +12/26/2017,Sports_celeb,@SpiderAnderson,🕷👊🏾🙏🏾🕸 https://t.co/oWECsQubxL +12/20/2017,Sports_celeb,@SpiderAnderson,🕸👊🏾🕷🙏🏾 https://t.co/HXcdG7ZWVA +12/19/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/ipMLGNq638 +12/19/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/qqds6WeOj5 +12/17/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾🕸🕸👊🏾👊🏾👊🏾🕷🕷🕷 https://t.co/zZlXw3L5yj +12/15/2017,Sports_celeb,@SpiderAnderson,🕷👊🏾👊🏾🙏🏾🙏🏾🕸🕸 https://t.co/X1GSRyVKxw +12/13/2017,Sports_celeb,@SpiderAnderson,"LEVANTE-SE e enfrente o desafio 15 de dezembro, todos os novos episódios de #ultimatebeastmaster no #netflix Ganhe… https://t.co/I391RlD1vf" +12/13/2017,Sports_celeb,@SpiderAnderson,"RISE UP and face the challenge on Dec 15, binge all-new episodes of #ultimatebeastmaster on #netflix Take 10% off a… https://t.co/86Vselv1Py" +12/13/2017,Sports_celeb,@SpiderAnderson,🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/Pt6vCrUh0r +12/11/2017,Sports_celeb,@SpiderAnderson,https://t.co/FoAJIOXPfq +12/11/2017,Sports_celeb,@SpiderAnderson,👊🏾🕷🙏🏾 https://t.co/7rAFNgvoOm +12/08/2017,Sports_celeb,@SpiderAnderson,#lastnight #gqmenoftheyearawards @GQMagazine @GQBrasil https://t.co/B1QF4dDMbn +12/01/2017,Sports_celeb,@SpiderAnderson,#spiderkick #nevergiveup https://t.co/eSEbONm46a +11/30/2017,Sports_celeb,@SpiderAnderson,#nevergiveup #spiderkick #boxing #knockout #sport #motivation #ufc #workout #training #mma #champion #jiujitsu… https://t.co/46qhlhtPba +11/24/2017,Sports_celeb,@SpiderAnderson,#nevergiveup #spiderkick https://t.co/7K12qB6AvP +11/24/2017,Sports_celeb,@SpiderAnderson,My partners @rootsoffight are having their legendary #BlackFriday sale and it’s on NOW! Take some inspiration from… https://t.co/Zz4bfL50B0 +11/16/2017,Sports_celeb,@SpiderAnderson,🙏🏾👊🏾🕷 https://t.co/a0iTUEdloa +11/16/2017,Sports_celeb,@SpiderAnderson,🙏🏾👊🏾🕷 https://t.co/4oaO2Pt2IB +11/15/2017,Sports_celeb,@SpiderAnderson,Thanks for all your support! A big kiss for everyone and see you soon. https://t.co/nvoZTJkwct +11/15/2017,Sports_celeb,@SpiderAnderson,Obrigado por todo o apoio! Um grande beijo pra todos e nos vemos em breve. https://t.co/jWMQSsUuLu +11/10/2017,Sports_celeb,@SpiderAnderson,"UFC Xangai - 25 de novembro! . UFC Shangai - november 25 ! + 🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/OCTN9ABR1I" +11/08/2017,Sports_celeb,@SpiderAnderson,🙏🏾🙏🏾👊🏾👊🏾🕷🕷🕷 #SpiderKick https://t.co/vGUYp2zfSM +11/07/2017,Sports_celeb,@SpiderAnderson,"My friend @terrycrews , Thank you very much for everything! I am happy to be able to learn more and more. https://t.co/iZE5ji8XZv" +11/05/2017,Sports_celeb,@SpiderAnderson,"RT @ufc: The greatest fighter of his generation, @SpiderAnderson returns Nov. 25 exclusively on @UFCFIGHTPASS + +https://t.co/UDtt4ysli2 http…" +11/04/2017,Sports_celeb,@SpiderAnderson,"Cadastre-se e concorra a uma viagem pra China! Venha assistir minha luta, acesse https://t.co/YAMUIR1ypW https://t.co/tJnvcG3XWL" +11/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/lsKF8fpbJ3 +10/31/2017,Sports_celeb,@SpiderAnderson,ANDERSON SILVA - STRONG LIFE - EP06 - RESPEITO / RESPECT https://t.co/7XfVkEC3iI +10/25/2017,Sports_celeb,@SpiderAnderson,#UFC90 - Patric Côté . Chicago - 9 years ago / 9 anos atrás. https://t.co/naqwwmzPxV +10/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/m5AVOL4Myx +10/24/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/rtxjSw4LAt +10/23/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾🕷🕷🕸🕸🕸 https://t.co/PTDtflspjH +10/22/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/saJJIZcICD +10/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/myhrsRiwNU +10/20/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gLwyFskBwQ +10/19/2017,Sports_celeb,@SpiderAnderson,No dia 28 de outubro acontece em São Paulo no Ginásio do Ibirapura o UFC Fight Nigh São Paulo. Mais informações em… https://t.co/XVGc69oDes +10/19/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Mmzx6xzLlw +10/17/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/jA9oo2WcFa +10/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/P6aeBR0jx9 +10/16/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Neste final de semana fez 11 anos que @SpiderAnderson conquistou o cinturão peso médio, no UFC 64. Nosso total respeito a e…" +10/15/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/BMqYPNMnRe +10/14/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/UZTgmvHYWC +10/07/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/ur6Qbbj8w4 +10/06/2017,Sports_celeb,@SpiderAnderson,ANDERSON SILVA - STRONG LIFE - #EP05 - COMPROMETIMENTO / COMMITMENT - #stronglife #spidersilva #andersonsilva… https://t.co/ZNKnT07aF1 +10/04/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/WzsmRVKq4D +10/03/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/rXza2YQwy4 +10/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/6RejseUEG0 +09/29/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/aTDobUxGGq +09/29/2017,Sports_celeb,@SpiderAnderson,"Como não ser feliz com uma sobrinha fofa e linda como esta? Pietra linda, te amo ❤️ https://t.co/cUpGdxicHX" +09/28/2017,Sports_celeb,@SpiderAnderson,STRONG LIFE - EP04 - O QUE MOVE VOCÊ? / WHAT MOVES YOU? #StrongLIfe #VidaForte https://t.co/OJzQY34Fik +09/28/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gw0RjtRlfD +09/27/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/VdfQufU9O7 +09/26/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/smjVPbp8Fk +09/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Zmq5wMW2mf +09/22/2017,Sports_celeb,@SpiderAnderson,STRONG LIFE - EP03 - SANGUE E SUOR / BLOOD AND SWEAT - #stronglife #fight #andersonsilva #spidersilva #inspire… https://t.co/DBzonZ0fJn +09/22/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/LI0Ojn3YiM +09/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/Q758QrEWZc +09/21/2017,Sports_celeb,@SpiderAnderson,@kobebryant @RealJayWilliams ! 👊🏾👊🏾🙏🏾🙏🏾 https://t.co/gt0ATXqvwZ +09/16/2017,Sports_celeb,@SpiderAnderson,"Um grande comunicador, um homem admirável, amigo e companheiro. Obrigado por tudo. Vá com DEUS, professor. https://t.co/jYTLupC9dp" +09/15/2017,Sports_celeb,@SpiderAnderson,Strong Life - #EP02 - MELHOR QUE ONTEM / BETTER THAN YESTERDAY https://t.co/tcZi8Day63 +09/13/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/cqiPK1BGDI +09/12/2017,Sports_celeb,@SpiderAnderson,"Guys, I'm not the only Spider-Man fan! My teacher here at @Berlitz_US is too! #BerlitzUS #Andersonbelieves… https://t.co/uJTADUNKZv" +09/12/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/K7ifsGD7WC +09/11/2017,Sports_celeb,@SpiderAnderson,"Canal Oficial do ""Spider"" Anderson Silva. Official channel of ""The Spider"" Anderson Silva: https://t.co/4UHFxf3h6e via @YouTube" +09/11/2017,Sports_celeb,@SpiderAnderson,Strong Life - #EP01 - VONTADE DE VENCER / WILL TO WIN #stronglife #spidersilva #andersonsilva #fight #inspiration… https://t.co/Lc2kbDoTuE +09/07/2017,Sports_celeb,@SpiderAnderson,RESPECT. The New: Kalyl Silva (@officialkalyl )- https://t.co/aIgyDSFKsE https://t.co/LoLrRhkUBh +09/07/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/3LEKXQFK9o +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/eNuCgPrTde +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/XzuTiqIkFX +09/05/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/u0RGn4xi51 +09/04/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/bzZPsfJF2j +08/25/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/R9oF3S3nCa +08/23/2017,Sports_celeb,@SpiderAnderson,"Galera,o importante é estar feliz com você mesmo no seu dia a dia.Guys, what matters is that you are happy with you… https://t.co/RPzAkJJIEi" +08/21/2017,Sports_celeb,@SpiderAnderson,Disciplina é aprender a ter capacidade de observar e absorver. / Discipline is learning to be able to observe and a… https://t.co/j3JJD4xE9D +08/20/2017,Sports_celeb,@SpiderAnderson,"This week I had the honor of meeting Jacob Meir, an Israeli artist with a Brazilian heart! Thanks for the affection… https://t.co/O5fr9yrkVZ" +08/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/HecM8WhFNg +08/15/2017,Sports_celeb,@SpiderAnderson,"In this new journey, I am dedicating myself to study english with @BerlitzUS #BerlitzUS #Andersonbelieves… https://t.co/rAdhmxn4cU" +08/14/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/cqcYRvAuj2 +08/13/2017,Sports_celeb,@SpiderAnderson,Ser pai é abrir mão da perfeição e ser capaz de aprender com os filhos e com Deus a ser pai e ser um bom filho. Fel… https://t.co/WJnQZdLZkR +08/12/2017,Sports_celeb,@SpiderAnderson,Anderson Silva X José Barreto - Mecca: World Vale Tudo 2 - Curitiba - Brasil - 08.2000 #mecca #valetudo… https://t.co/L4fVVpJFit +08/10/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/gCrRU0bTFQ +08/09/2017,Sports_celeb,@SpiderAnderson,@canalCombate Parabéns pelos 15 anos! Desejo a todos muitas felicidades. https://t.co/iMlpyvl1Lr +08/08/2017,Sports_celeb,@SpiderAnderson,"UFC 101: Silva vs Griffin - 8 de agosto de 2009 / August 8, 2009 - This fight won the ""Beatdown of the Year"" award… https://t.co/iJ4MBSKVDZ" +08/08/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/ETNDPgw0yZ +08/06/2017,Sports_celeb,@SpiderAnderson,"Ginásio Antonio Balbino, Salvador, Bahia, Brazil, 5.AGO.2005 + / Minotauro Fights II - Anderson Silva vs Julio Cesar… https://t.co/H8NOper9Sm" +08/05/2017,Sports_celeb,@SpiderAnderson,Guys! I'm here at the Los Angeles Memorial Coliseum to support Children's Hospital Los Angeles. #PlayLa https://t.co/GdLKJ3rGRs +08/04/2017,Sports_celeb,@SpiderAnderson,"Join me and @ChildrensLA on Aug 5 for the first ever #PlayLA! Family festival, w/ special musical guests. Details:… https://t.co/E8vLVYq8OG" +08/02/2017,Sports_celeb,@SpiderAnderson,Go to my instagram and follow my live training / Treino ao vivo no meu instagram https://t.co/iew5GT08Mk https://t.co/0bcObBu5RM +08/01/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/JZ54hDgqbc +07/31/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/PR59HCykYn +07/29/2017,Sports_celeb,@SpiderAnderson,Happy Birthday @terrycrews . May God always enlighten your walk.Thanks for everything. I wish you health and wisdom… https://t.co/riyzUz5Iho +07/29/2017,Sports_celeb,@SpiderAnderson,Go to my instagram and follow my live training / Treino ao vivo no meu instagram https://t.co/DyVmnUWzL9 +07/28/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 https://t.co/GM1UfruLVI +07/28/2017,Sports_celeb,@SpiderAnderson,I am doing a live training at my instagram! Treino ao vivo no meu instagram! https://t.co/DyVmnUWzL9 +07/27/2017,Sports_celeb,@SpiderAnderson,"👊🏾👊🏾🕷🕷🕸🕸🕸🙏🏾🙏🏾🙏🏾 +🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 https://t.co/tMU5jTljkH" +07/25/2017,Sports_celeb,@SpiderAnderson,Galera! 1 de Outubro vi rolar o Prime Esportes - Jiu Jitsu Experience. Incrições pelo site https://t.co/yLtmLktIFu https://t.co/pAhpwdX4UM +07/25/2017,Sports_celeb,@SpiderAnderson,@prolastboxing @profightshop #fightshop #prolast #promma #mmafightshop #procombat #profightshop #hollywoodfightshop… https://t.co/deg7ry5Siv +07/22/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/0oEjxUE8NF +07/21/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🙏🏾🙏🏾🙏🏾🕸🕸🕸 https://t.co/zb7lAZ1lFR +07/20/2017,Sports_celeb,@SpiderAnderson,This week the Heard Podcast release my interview with Benjamin Mathes.It was a nice conversation!I hope you like it… https://t.co/Hsmo06vrIq +07/18/2017,Sports_celeb,@SpiderAnderson,"Fun festival, musical guests & sports session + more! Join @childrensla on Aug 5 for #PlayLA! More:… https://t.co/wzwi6xdlMZ" +07/18/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾🕷🕷🙏🏾🙏🏾🙏🏾🕸🕸🕸 https://t.co/iXDDKpiJml +07/16/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾🕸🕸🕸🕷🕷🕷 https://t.co/iNLfzse4l4 +07/12/2017,Sports_celeb,@SpiderAnderson,👊🏾👊🏾👊🏾🕸🕸🕸🕷🕷 https://t.co/yDWe4MXkxJ +07/03/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/CmNaC6rufw +06/30/2017,Sports_celeb,@SpiderAnderson,"#Jiujitsu #BJJ Bom fim de semana galera! Have a great weekend, everybody! https://t.co/Z8KYZF5jml" +06/30/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/RWV9QHAlm5 +06/28/2017,Sports_celeb,@SpiderAnderson,11 anos atrás eu estava fazendo o que mais amo na vida. 11 years ago I was doing what I love most in life.… https://t.co/E2Lxl8ctEf +06/28/2017,Sports_celeb,@SpiderAnderson,One more day of work! Mission accomplished! Thanks to my guardian angel @lizburnette🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾 https://t.co/DEfQCvqfDN +06/28/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾🙏🏾🙏🏾🙏🏾 https://t.co/rfnBxVueYI +06/28/2017,Sports_celeb,@SpiderAnderson,#StrongLife #VidaForte https://t.co/gJPfdZTorG +06/17/2017,Sports_celeb,@SpiderAnderson,Celebrate with me and my @RootsofFight family during their #FathersDay sale! Visit https://t.co/LmmEFGhl2T https://t.co/QrbJoPrCBO +06/13/2017,Sports_celeb,@SpiderAnderson,In California with my friends and brothers! Using my new @rootsoffight t-shirt! Who wants one just visit the site… https://t.co/8SrWoTNIvP +06/09/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 @FairtexMuayThai https://t.co/qNkd77Rlm5 +06/08/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 #jiujitsu #delariva https://t.co/OPamFbnMCb +06/07/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕷🕷👊🏾👊🏾👊🏾 https://t.co/cPazD7jJ96 +06/06/2017,Sports_celeb,@SpiderAnderson,L https://t.co/fIGHJjnpT5 +06/05/2017,Sports_celeb,@SpiderAnderson,I’m excited to announce my new collaboration with @RootsofFight & honored to join the ROF pantheon. Available now… https://t.co/bugP7LcdWD +05/30/2017,Sports_celeb,@SpiderAnderson,Thanks @espn And all my fans/Obrigado @ESPNBrasil_ e todos os meus fãs. #worldfame100 https://t.co/006Oh9txmo +05/29/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/DdWVdFodtW +05/25/2017,Sports_celeb,@SpiderAnderson,🕸🕸🕸🕷🕷🕷👊🏾👊🏾👊🏾 https://t.co/faf5fVWfUx +05/23/2017,Sports_celeb,@SpiderAnderson,🕷🕷🕷🕷👊🏾👊🏾👊🏾👊🏾👊🏾👀👀👀👀 https://t.co/g43i8BiAeS +05/23/2017,Sports_celeb,@SpiderAnderson,RT @esportefera: >@SpiderAnderson mostra talento ao bater faltas em desafio promovido por Zico. Será que tem vaga no seu time? https://t.co… +05/23/2017,Sports_celeb,@SpiderAnderson,🕷🕷🕷👊🏾👊🏾👊🏾👊🏾 https://t.co/7j2dEdGSSS +05/23/2017,Sports_celeb,@SpiderAnderson,"Galera! No próximo dia 27 de maio, farei um seminário de técnica na Tropa Thai -Rio de Janeiro, para informações li… https://t.co/PUVFlLGnmM" +05/01/2017,Sports_celeb,@SpiderAnderson,I will be live in 10 minutes at The MMA Hour Live https://t.co/pXXOHOVrk3 +04/21/2017,Sports_celeb,@SpiderAnderson,https://t.co/CmSKQMNY9u https://t.co/gPYm3Beiqv +04/19/2017,Sports_celeb,@SpiderAnderson,Aproveitando o meu #MomentoPronoKal no fim do treino. Valeu @PronokalBR ! 💪🏾👊🏾 https://t.co/KQvNB2mMAW +04/15/2017,Sports_celeb,@SpiderAnderson,Obrigado Esporte Interativo pela homenagem! https://t.co/51LEKn6wmH +04/15/2017,Sports_celeb,@SpiderAnderson,#UFC212 #UFCRio https://t.co/SvdSf2LDWI +04/14/2017,Sports_celeb,@SpiderAnderson,RT @canalCombate: De volta às origens: @SpiderAnderson reforça preparação com seu primeiro treinador | https://t.co/vV6wx7tnE1 https://t.co… +04/11/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Podemos chamar isso de encarada, @SpiderAnderson!? 😂😂 Ele estará no #UFC212, ainda sem adversário confirmado > https://t.co…" +04/11/2017,Sports_celeb,@SpiderAnderson,#Nocharity #Onlymeritocracy #GOAT 🐐 https://t.co/vfRkZ03tKU +04/06/2017,Sports_celeb,@SpiderAnderson,"Comunicado do UFC sobre Kelvin Gastelum. - https://t.co/fXjcTE1xjk + | UFC Statement on Kelvin Gastelum. - https://t.co/WWSnsKVU7M" +03/28/2017,Sports_celeb,@SpiderAnderson,Treino / Training @Silva_MTC https://t.co/SfsODJGQbi +03/23/2017,Sports_celeb,@SpiderAnderson,E M B R E V E . C O M I N G S O O N https://t.co/GkFv6RJU9e +03/22/2017,Sports_celeb,@SpiderAnderson,"Voltando pra casa! I'm coming home. #UFCRio #UFC212, no Rio de Janeiro! 3 de Junho galera! #UFC212 at Rio de Janeir… https://t.co/RIoTsnsHek" +03/21/2017,Sports_celeb,@SpiderAnderson,KildareHasHad an accidentAndNeedsSurgery to recover. Ele sofreu um acidente e precisa de cirurgia para se recuperar… https://t.co/EflIvgwZON +03/20/2017,Sports_celeb,@SpiderAnderson,@NeilMagny Let's do it! +03/18/2017,Sports_celeb,@SpiderAnderson,Ready for a game of paintball at @hollywoodsports with @Beardegidio https://t.co/WDLlXbeWJD +03/17/2017,Sports_celeb,@SpiderAnderson,Maior reinado em defesas de cinturão na história do UFC : 2457 dias / Longest Single Title Reigns in UFC History: 2… https://t.co/N88UAYJPIX +03/16/2017,Sports_celeb,@SpiderAnderson,"Pride 25 - 03.2003 - 14 anos atrás/years ago - Yokohama, Japão #SpiderLegacy #ValeTudo #TBT #MMA #ThrowbackThursday… https://t.co/NEyFfS7iUU" +03/15/2017,Sports_celeb,@SpiderAnderson,Contrato para o #UFC212 assinado. Rio de Janeiro! 3 de Junho galera! Contract for #UFC212 signed. Rio de Janeiro! J… https://t.co/pdhGjrWh9z +03/15/2017,Sports_celeb,@SpiderAnderson,Silva VS Gastelum! 3 de junho no Rio de Janeiro! June 3 at Rio de Janeiro https://t.co/Fmv3qNHIjD +03/09/2017,Sports_celeb,@SpiderAnderson,Set of #UltimateBeastMaster! Good times! Get ready to join the gang. All episodes are now available on #Netflix… https://t.co/cDSlrP16Mc +03/06/2017,Sports_celeb,@SpiderAnderson,Meeting at the ICMPartners with the GreatChampion @RealRoyJonesJr-The legend! Encontro na ICMPartners com o GrandeC… https://t.co/m9r36kZaFe +03/06/2017,Sports_celeb,@SpiderAnderson,RT @RealRoyJonesJr: There is a legendary photo. My man. The one and only. https://t.co/uDpN4m0hrS +03/02/2017,Sports_celeb,@SpiderAnderson,"16 years ago on March 2, 2001, I made my first international fight/16 anos atrás, 2 de março de 2001, fiz minha pri… https://t.co/FH9SEqTbUs" +03/02/2017,Sports_celeb,@SpiderAnderson,"9 years ago, on March 1, 2008, at UFC 82. I unified the middleweight belt against Dan Henderson, the Pride champion… https://t.co/NgMSzywUzB" +03/01/2017,Sports_celeb,@SpiderAnderson,This is the #UltimateBeastMaster Brazilian team! Watch #Netflix and see the Brazilians performance trying to domina… https://t.co/HA9l43vwIk +03/01/2017,Sports_celeb,@SpiderAnderson,Esse é o time brasileiro do #UltimateBeastMaster ! Assista no #Netflix e veja como os brasileiros se saíram tentand… https://t.co/V80rPHArtT +02/28/2017,Sports_celeb,@SpiderAnderson,RT @broome88: Maybe it's me but I feel I could win this fight. @terrycrews @SpiderAnderson #ultimatebeastmaster #Netflix https://t.co/e0xr2… +02/25/2017,Sports_celeb,@SpiderAnderson,Thanks @the_USO @NetflixBrasil @broome88 @TheSlyStallone.Very happy to be part of this project. Thanks @terrycrews… https://t.co/PZUCdjRLlM +02/25/2017,Sports_celeb,@SpiderAnderson,Obrigado @the_USO @NetflixBrasil @broome88 @TheSlyStallone.Muito feliz por fazer parte desse projeto. Obrigado… https://t.co/y43apLJKZQ +02/24/2017,Sports_celeb,@SpiderAnderson,@MoneyLynch 🕷> Beast Mode +02/24/2017,Sports_celeb,@SpiderAnderson,"RT @NetflixBrasil: Os atletas escalam, pulam, flexionam e se equilibram. E você maratona. Ultimate Beastmaster Brasil chegou! https://t.co/…" +02/24/2017,Sports_celeb,@SpiderAnderson,"Very happy to be part of the #UltimateBeastmaster with this great human being. Thank you, my friend! @terrycrews https://t.co/67bznlhnAr" +02/23/2017,Sports_celeb,@SpiderAnderson,"I am training now at my instagram! Estou treinando ao vivo, agora no meu instagram! https://t.co/afjqTexTTd" +02/23/2017,Sports_celeb,@SpiderAnderson,Tudo o que um sonho precisa para ser realizado é alguém que acredite nele. #JonesJrVSSilva #SilvaVSJonesJr @RealRoyJonesJr +02/23/2017,Sports_celeb,@SpiderAnderson,All a dream needs to be accomplished is someone who believes that it can be done. #JonesJrVSSilva #SilvaVSJonesJr @RealRoyJonesJr +02/23/2017,Sports_celeb,@SpiderAnderson,Going to support my friend @Beardegidio at @hollywoodsports for one of the best paintball events @GiantTactical thi… https://t.co/PJV9Ghyk4R +02/21/2017,Sports_celeb,@SpiderAnderson,Great day @hollywoodsports with my friends today! Can't wait to be back again next week! Thank you @Beardegidio… https://t.co/91pu3u1Y5Y +02/20/2017,Sports_celeb,@SpiderAnderson,Paintball with my friend @Beardegidio & the guys at @hollywoodsports today! https://t.co/oQXK0SD7E9 +02/17/2017,Sports_celeb,@SpiderAnderson,"I felt like a king when shooting the #ThatFeelingWhen campaign for #ThroneKingdomAtWar. I also look like one, don’t… https://t.co/u68OtArMO2" +02/14/2017,Sports_celeb,@SpiderAnderson,"RT @NetflixBrasil: Quem vai dominar a Besta? A partir de 24 de fevereiro, tem sangue, suor e tombos no Ultimate Beastmaster Brasil. https:/…" +02/13/2017,Sports_celeb,@SpiderAnderson,RT @ufc_brasil: . @SpiderAnderson agradece fãs em post nas redes sociais. Confira > https://t.co/XTqHDe3WwX https://t.co/B3qEXdgn4o +02/12/2017,Sports_celeb,@SpiderAnderson,"RT @ufc_brasil: Ainda emocionado, @spideranderson​ falou sobre a vitória no #UFC208, família e legado. Veja a entrevista completa > https:/…" +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc_brasil: Olha a recepção do @SpiderAnderson na chegada ao hotel depois da luta. Rolou até uma conversa com a @criscyborg > https://t… +02/12/2017,Sports_celeb,@SpiderAnderson,RT @AnaHissa: 🕸🕷 Generations 🕸🕷 #badboys @spiderandersonsilva @kalylsilva @gabrielrmnl #ufc #mma #ufcnocombate #spidernocombate #trcombate… +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc: SPIDER!!!! #UFC208 https://t.co/w94rGz9HTy +02/12/2017,Sports_celeb,@SpiderAnderson,RT @ufc: Dreams Come True #UFC208 https://t.co/qHdFVLi4m8 +06/30/2018,Sports_celeb,@TyrodTaylor,@power_starz Season 5 Premiere last night was definitely a Vibe! Thank you @givenchyofficial for the fit.… https://t.co/MsPYGgGGkH +06/29/2018,Sports_celeb,@TyrodTaylor,"Haha, it was great meeting you. https://t.co/iSnl0XZw11" +06/29/2018,Sports_celeb,@TyrodTaylor,I’m T’d up... 📷: @JaySpinks12 https://t.co/Pm33LR4Mus +06/28/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: Don’t let ANYTHING distract you from God’s vision. +06/24/2018,Sports_celeb,@TyrodTaylor,📍Made the Paris streets my runway #PFW https://t.co/ntxiHmMXsz +06/24/2018,Sports_celeb,@TyrodTaylor,"Thank you @ThomBrowneNY for having me at your show today. Truly inspired by your work! #PFW + +cc: @TeamVic https://t.co/BZqarcdNrF" +06/23/2018,Sports_celeb,@TyrodTaylor,My people! https://t.co/RF28s0cixA +06/23/2018,Sports_celeb,@TyrodTaylor,"‘Life is amazing, it is what it should be’. #PFW https://t.co/bF96CGlEJp" +06/22/2018,Sports_celeb,@TyrodTaylor,Just a kid from 757. Big Dreaming! #PFW https://t.co/R58dptp5J0 +06/22/2018,Sports_celeb,@TyrodTaylor,In. Living. Color https://t.co/Hv3hh9xIbI +06/21/2018,Sports_celeb,@TyrodTaylor,RT @adriancmills: All the Stars came out for Paris Fashion Week SS19 wearing Valentino in Paris @Nas @carmeloanthony @TyrodTaylor #pjtucker… +06/21/2018,Sports_celeb,@TyrodTaylor,I like the view from here... 🇫🇷 #PFW SS19 @cmmn_swdn show https://t.co/uQhLdX6Om3 +06/15/2018,Sports_celeb,@TyrodTaylor,RT @elguapo: God makes no mistakes +06/15/2018,Sports_celeb,@TyrodTaylor,OTA’s ✔️ #Keep5triving https://t.co/psj9sJ93IM +06/14/2018,Sports_celeb,@TyrodTaylor,📶 https://t.co/iQGSQGDIZB +06/14/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: ""Very talented team on both sides of the ball."" + +@TyrodTaylor talks about his transition to the @Browns and competition at…" +06/12/2018,Sports_celeb,@TyrodTaylor,Gotta put them on notice brother ✊🏾 https://t.co/74pM8tljeH +06/12/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🔥🔥🔥 + +@TyrodTaylor https://t.co/dU8PfMSVF3" +06/12/2018,Sports_celeb,@TyrodTaylor,5... https://t.co/cH0rURklHX +06/12/2018,Sports_celeb,@TyrodTaylor,Real strong! 📶 https://t.co/ukcGJkBVey +06/08/2018,Sports_celeb,@TyrodTaylor,Go Cavs! https://t.co/m2MBYAUOTR +06/08/2018,Sports_celeb,@TyrodTaylor,"RT @uninterrupted: Shout to @Kirko58 for stylin' on 'em with his crew @j_collins91, @God_Son80, @TyrodTaylor & @DukeJohnson_8 at his Fashio…" +06/08/2018,Sports_celeb,@TyrodTaylor,📸 19 x Eight-O https://t.co/j4AcfdBh3f +06/08/2018,Sports_celeb,@TyrodTaylor,No place like Blacksburg. #ThisisHome https://t.co/WtQGDVTDTF +06/08/2018,Sports_celeb,@TyrodTaylor,Happy Birthday brother @alleniverson. I appreciate the love and guidance since day 1. Thanks for showing every kid… https://t.co/kSciOBrQsJ +06/08/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/JXjbi2QBAS +06/07/2018,Sports_celeb,@TyrodTaylor,RT @Browns: 🔥🔥 @TyrodTaylor https://t.co/4V2Xvz8rD6 +06/07/2018,Sports_celeb,@TyrodTaylor,#Mood 😃 https://t.co/VTAPLvt4IT +06/07/2018,Sports_celeb,@TyrodTaylor,Welcome to the Family brother! @VT_Football https://t.co/Oloz6PTUyK +06/07/2018,Sports_celeb,@TyrodTaylor,My dawg!!! https://t.co/BkE6jawvf5 +06/07/2018,Sports_celeb,@TyrodTaylor,Absolutely! One of my favorite scriptures 🙏🏾 https://t.co/A6cjwsjw5d +06/07/2018,Sports_celeb,@TyrodTaylor,#NBAFinals Game 3. https://t.co/kBESMgVhST +06/07/2018,Sports_celeb,@TyrodTaylor,"RT @NBA: Ready for the 4th quarter in Cleveland... + +@CutonDime25 x @TyrodTaylor. https://t.co/YQPKClOO4C" +06/05/2018,Sports_celeb,@TyrodTaylor,"VA!!!!! July 21st.. + +I’m excited to launch the Tyrod Taylor Foundation this summer with a FREE and fun event for t… https://t.co/SthzmKTn4k" +06/04/2018,Sports_celeb,@TyrodTaylor,WiFi connection strong! https://t.co/gkYmHgJeQ0 +06/04/2018,Sports_celeb,@TyrodTaylor,RT @BrownsGiveBack: All of our partners are here volunteering by building rocking chairs to help encourage reading in early childhood class… +06/04/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🎯 + +@TyrodTaylor https://t.co/UDSRuEjjtX" +06/01/2018,Sports_celeb,@TyrodTaylor,Let’s go @cavs #NBAFinals https://t.co/vG6BORzTQT +05/31/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: 😬😬😬😬 lol https://t.co/IXxIcww816 +05/30/2018,Sports_celeb,@TyrodTaylor,"Praying for you guys! Be encouraged, keep fighting! 🙏🏾 https://t.co/Bz73hLJuQy" +05/29/2018,Sports_celeb,@TyrodTaylor,"Let’s tackle sickle cell TOGETHER guys! cc: @LanoTheDon + +https://t.co/YxHMYs3xac + +T2 @Browns Jersey GIVEAWAY!!! +H… https://t.co/N0gCj5cM1x" +05/29/2018,Sports_celeb,@TyrodTaylor,Yo juice! WiFi Connection Eight-0 https://t.co/jgCZWJfOFu +05/29/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: #️⃣5️⃣ + +@TyrodTaylor https://t.co/rALDlpP73M" +05/29/2018,Sports_celeb,@TyrodTaylor,RT @Browns: Putting in work 🤫 https://t.co/futJtpvhUZ +05/29/2018,Sports_celeb,@TyrodTaylor,🙋🏾‍♂️ need mine!! This is for Cleveland!! https://t.co/ROkiCs66FX +05/28/2018,Sports_celeb,@TyrodTaylor,Let’s go Cavs!!!!!!!! +05/23/2018,Sports_celeb,@TyrodTaylor,Be the blessing.. #Keep5triving https://t.co/kRvMdc6G0x +05/23/2018,Sports_celeb,@TyrodTaylor,"My brother, Congrats! Well deserved. Always love. Now...See you week 2. 😡 https://t.co/ytttujvYq3" +05/21/2018,Sports_celeb,@TyrodTaylor,Running into Monday like... Let’s have a great week people! 😃 https://t.co/jbVg9XTIHT +05/21/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: Students of schools benefitted by the Browns Foundation are here to play games with some of our players! + +@TyrodTaylor #give10…" +05/21/2018,Sports_celeb,@TyrodTaylor,#MOOD https://t.co/9j4v0eXPyS +05/18/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: God Gon See You Through... +05/17/2018,Sports_celeb,@TyrodTaylor,I see you Torrey! #Clean ✔️ https://t.co/qFfxELXNdP +05/16/2018,Sports_celeb,@TyrodTaylor,Anytime it was great to meet her. https://t.co/1PJFUZhaMR +05/06/2018,Sports_celeb,@TyrodTaylor,@KingJames does it again!!!!!!!! +05/05/2018,Sports_celeb,@TyrodTaylor,"RT @TheOpening: Fastest Man in Ohio, crowned by @TyrodTaylor. + +@usnikefootball @NFLPlayFootball https://t.co/3ZdFwDK2j6" +05/04/2018,Sports_celeb,@TyrodTaylor,"Meet me at Dicks Sporting Goods in Canton, Ohio at 1:30pm on Saturday 5/5 to hang and customize your Vapor Untoucha… https://t.co/71oAtlvkiJ" +05/02/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: Fall down 7 times. Get up 8. +05/01/2018,Sports_celeb,@TyrodTaylor,Happy MAY Everyone!!! Let’s go be great. +04/27/2018,Sports_celeb,@TyrodTaylor,@bakermayfield @denzelward welcome to the FAMILY!! #DawgPound +04/27/2018,Sports_celeb,@TyrodTaylor,VT Boyz!! Congrats #Hokies https://t.co/tXszPoYrL1 +04/27/2018,Sports_celeb,@TyrodTaylor,🔥🔥🔥 https://t.co/SVgVMJ1SsI +04/25/2018,Sports_celeb,@TyrodTaylor,Haha dope!! https://t.co/wPohdniwxQ +04/25/2018,Sports_celeb,@TyrodTaylor,"Cleveland, We just getting started.. https://t.co/181pxx5jhM" +04/19/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: QB Tyrod Taylor already turning heads with leadership and work ethic + +📰 » https://t.co/dXQfFQEroZ https://t.co/rO9jT6pjLL" +04/17/2018,Sports_celeb,@TyrodTaylor,No better feeling. #T2Foundation https://t.co/djy4o5hsb5 +04/17/2018,Sports_celeb,@TyrodTaylor,4.16 #NeVerforgeT https://t.co/hZX1MAAbGt +04/16/2018,Sports_celeb,@TyrodTaylor,"A lot of hard work, prayer & patience. Those are characteristics you can’t measure. https://t.co/CfcYB4EUQt" +04/16/2018,Sports_celeb,@TyrodTaylor,Where can I get that shirt ? https://t.co/tNWtFPDMUX +04/16/2018,Sports_celeb,@TyrodTaylor,Forever LOVE... Thank you #HokieNation for a great spring weekend! https://t.co/dadInuNleq +04/15/2018,Sports_celeb,@TyrodTaylor,Heading to my first @cavs game. If you see me show some luv! Let’s go CLEVELAND!!!! #NBAPlayoffs +04/15/2018,Sports_celeb,@TyrodTaylor,My brother. #Hokies you’ve got a great one. @CoachReamon ✊🏾 https://t.co/V8XT41WiUE +04/15/2018,Sports_celeb,@TyrodTaylor,Thanks for having me guys! Truly my pleasure to be amongst you all for a great cause. https://t.co/ulTEcEMnk8 +04/15/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: “Work like everything depends on you. Pray like everything depends on God.” +04/15/2018,Sports_celeb,@TyrodTaylor,Yessir. Keep pushing forward brother. #Hokies https://t.co/erz7ZHZAhQ +04/15/2018,Sports_celeb,@TyrodTaylor,@nolimitquis Lol you know i got you brother +04/15/2018,Sports_celeb,@TyrodTaylor,"RT @espn: On This Date: 71 years ago, Jackie Robinson broke down the color barrier, becoming the first African-American to play in MLB. #Ja…" +04/15/2018,Sports_celeb,@TyrodTaylor,I had just as much fun as the kids. It was my pleasure. Nothing like giving back to the next generation. https://t.co/ukz8DN4QDE +04/15/2018,Sports_celeb,@TyrodTaylor,RT @raylewis: What comes easy doesn’t always last. What comes through difficulties & effort leaves a legacy. +04/15/2018,Sports_celeb,@TyrodTaylor,Yessir let the ink dry 80 https://t.co/RSI47hN6XZ +04/15/2018,Sports_celeb,@TyrodTaylor,🔥 I need to sign that. https://t.co/pieBQnDhfF +04/13/2018,Sports_celeb,@TyrodTaylor,What up Blacksburg?? I’m HOME!! #Hokies https://t.co/XPRKEo0DBq +04/10/2018,Sports_celeb,@TyrodTaylor,Vibez 🖖🏾 https://t.co/j73O6uSy8z +04/08/2018,Sports_celeb,@TyrodTaylor,"Put the work in, everything is possible & inspire the youth to do the same! +📸: @JaySpinks12 https://t.co/tl6l5KPHUe" +04/03/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Gotta maintain stay focused... +04/03/2018,Sports_celeb,@TyrodTaylor,RT @CoachReamon: Value opportunity.. +04/02/2018,Sports_celeb,@TyrodTaylor,Great work brother! https://t.co/JRShTJanaZ +04/02/2018,Sports_celeb,@TyrodTaylor,Love all the cool fan art you guys shared. Keep them coming and I’ll be sure to post and s/o all you great artist. #Cleveland #Browns +04/02/2018,Sports_celeb,@TyrodTaylor,@Teh_Genius please DM me so I can get your info and send you some signed cleats! Thanks for the great work! +04/02/2018,Sports_celeb,@TyrodTaylor,Thanks everyone for your submissions. Fan Banner Design contest Winner!!!! Artist: @Teh_Genius https://t.co/216YaBxftO +04/01/2018,Sports_celeb,@TyrodTaylor,He has RISEN!! Happy Resurrection Sunday! 🙏🏾 +04/01/2018,Sports_celeb,@TyrodTaylor,Thanks guys for all the profile banner submissions so far.. announcing the winner tomorrow at 1pm. T2 +03/29/2018,Sports_celeb,@TyrodTaylor,Who wants to design me a new profile banner? May have some signed cleats for the winner 👀 +03/28/2018,Sports_celeb,@TyrodTaylor,Gotta trust his plan! https://t.co/2guLR4j7o2 +03/25/2018,Sports_celeb,@TyrodTaylor,‘Overly focused it’s far from the time to rest now’ #DAWGS https://t.co/TV8ZZoZu66 +03/24/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Mentality @Browns @machinegunkelly #CleveLand https://t.co/h13nKeWFLv +03/23/2018,Sports_celeb,@TyrodTaylor,"Always great times for a great cause with my VA brother @TorreySmithWR. #TSFFHoops +🎥: @JaySpinks12 https://t.co/4LmQWX89dH" +03/23/2018,Sports_celeb,@TyrodTaylor,RT @Browns: A few of our new Browns have picked their numbers 👇 https://t.co/aEVtzDFQo8 +03/23/2018,Sports_celeb,@TyrodTaylor,Let’s show them ✊🏾 https://t.co/Lbi2nIzAIV +03/22/2018,Sports_celeb,@TyrodTaylor,RT @lecrae: God can do it. +03/22/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/D9SLhTrWNb +03/22/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Now or Never.... +03/22/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: That Eight-O TurnUP AGAIN @Browns #DAWG https://t.co/9zJZxYMnxt +03/22/2018,Sports_celeb,@TyrodTaylor,.....T2 https://t.co/SbrkgZjcc7 +03/21/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: They Gon Realize https://t.co/duM0wzs8Dn +03/21/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: ""Is 5 available? I'm asking for a friend ... "" 😂 + +@TyrodTaylor @God_Son80 https://t.co/wHiI5Pj3Ys" +03/20/2018,Sports_celeb,@TyrodTaylor,"RT @God_Son80: “Nothing can hold you back..” +What you want is already yours. NOW, WORK!!!" +03/18/2018,Sports_celeb,@TyrodTaylor,"RT @TheUndefeated: ""Coach Hue is going to do his best to make me a better player, and I’m going to do my best to help us win."" - @TyrodTayl…" +03/18/2018,Sports_celeb,@TyrodTaylor,RT @DCSuperSid: My son with @TyrodTaylor QB of the @Browns tonight at the @TorreySmithWR charity game in Baltimore #DawgPound https://t.co/… +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @AKinkhabwala: A few hours in, @God_Son80 and @TyrodTaylor had a pretty good read on each other. #Browns https://t.co/DKEYCZcLXA" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: .@TyrodTaylor, @RandallTime and @God_Son80 in the building ✊ https://t.co/kK8izhPrJe" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @AKinkhabwala: .@Browns GM John Dorsey: “When guys walk into a building, you feel a certain energy... (these) guys are really excited to…" +03/16/2018,Sports_celeb,@TyrodTaylor,"RT @Browns: 🖋➡️📃 + +Welcome to Cleveland, Chris Smith! https://t.co/6uCl8mLwhY" +03/16/2018,Sports_celeb,@TyrodTaylor,C L E V E L A N D.... let’s get to it. https://t.co/mSGMeXqRMb +03/14/2018,Sports_celeb,@TyrodTaylor,Say hello to my little man Ghost! https://t.co/JjfCet1BXg +03/14/2018,Sports_celeb,@TyrodTaylor,Thanks guys! https://t.co/YLq0AYTIQx +03/12/2018,Sports_celeb,@TyrodTaylor,🙏🏾 Appreciate that. https://t.co/FurLE0ACMw +03/12/2018,Sports_celeb,@TyrodTaylor,Congrats fellas! Let’s leave our mark. #Hokies https://t.co/o06bwXYn9g +03/12/2018,Sports_celeb,@TyrodTaylor,Jesus calling. 🙏🏾 https://t.co/T33UwGTNOy +03/12/2018,Sports_celeb,@TyrodTaylor,"You! Yeah you, let’s be great this week. #HappyMonday https://t.co/FpWwzKsq1Z" +03/12/2018,Sports_celeb,@TyrodTaylor,"RT @lecrae: “Don’t even trip, I got it under control.” - God" +03/12/2018,Sports_celeb,@TyrodTaylor,🔥 https://t.co/5nft5wLi4j +03/12/2018,Sports_celeb,@TyrodTaylor,Thanks for the love UN family https://t.co/h7cyjJaWTa +03/12/2018,Sports_celeb,@TyrodTaylor,Truly my pleasure to work with you all and bless so many lives! https://t.co/pDQYMv1IrJ +03/10/2018,Sports_celeb,@TyrodTaylor,Thank you Buffalo! God's Plan. The marathon continues 🏁 https://t.co/CUhTzZKvqU +03/01/2018,Sports_celeb,@TyrodTaylor,Dream it. Work for it. Go take it. #TBT Combine Week. https://t.co/D7ozKh2j1z +02/27/2018,Sports_celeb,@TyrodTaylor,RT @k_obrand: I’ve been working.... meet you at the top. +02/27/2018,Sports_celeb,@TyrodTaylor,RT @Kam_Chancellor: Sorry Duke.. #GoHokies +02/27/2018,Sports_celeb,@TyrodTaylor,How about my Hokies!!! Big-time win @HokiesMBB. +02/22/2018,Sports_celeb,@TyrodTaylor,https://t.co/Luwp8cDgnt 👌🏾 https://t.co/qwF3pve3S6 +02/22/2018,Sports_celeb,@TyrodTaylor,In love with the process 🎥: @JaySpinks12 https://t.co/pIzXutO7GI +02/22/2018,Sports_celeb,@TyrodTaylor,RT @TheSportsEntGrp: Happy Birthday @DEverett22! +02/22/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Believe ... and it’ll happen +02/21/2018,Sports_celeb,@TyrodTaylor,It’s Just the beginning https://t.co/hdUHTVdsE3 +02/21/2018,Sports_celeb,@TyrodTaylor,@zayjones11 🙏🏾 https://t.co/Adx5zIGdQQ +02/21/2018,Sports_celeb,@TyrodTaylor,Can’t go wrong with that boss haha! https://t.co/IJ9NqbTOGW +02/21/2018,Sports_celeb,@TyrodTaylor,My brother ✊🏾 https://t.co/lXFDhvYIQh +02/18/2018,Sports_celeb,@TyrodTaylor,https://t.co/9jxIVm6qDk +02/17/2018,Sports_celeb,@TyrodTaylor,To whom much is given much is required... https://t.co/ApsQqwr9fb +02/15/2018,Sports_celeb,@TyrodTaylor,My dawgs ✊🏾 https://t.co/DlH4gc2Y9i +02/11/2018,Sports_celeb,@TyrodTaylor,Va is STILL VA Tech land.. Congrats to my #Hokies @HokiesMBB ... 👌🏾 +02/11/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: I got a pure soul... I don’t do the hate +02/11/2018,Sports_celeb,@TyrodTaylor,Appreciate the love.. enjoy the frames 👓 https://t.co/U66na1ZRcs +02/11/2018,Sports_celeb,@TyrodTaylor,✊🏾 https://t.co/F3kEAscNdJ +02/09/2018,Sports_celeb,@TyrodTaylor,RT @stefondiggs: Put my trust in God... +02/07/2018,Sports_celeb,@TyrodTaylor,You gotta dream like you never seen obstacles.. 11 years later. No place like HOME! #NationalSigningDay @HokiesFB https://t.co/3Y8HbqadI7 +02/04/2018,Sports_celeb,@TyrodTaylor,"RT @Framegenie: Thanks for celebrating the launch of T2, @TyrodTaylor's new frame collection! Did you take some pics? Share them in the com…" +02/04/2018,Sports_celeb,@TyrodTaylor,Congrats big bro @raylewis well deserved. Thanks for all you brought to the game and all you taught me along the wa… https://t.co/0bkDDe5vLy +02/03/2018,Sports_celeb,@TyrodTaylor,#T2Frames pop-up. Join me today 1-3pm @ Le Meridian Hotel to grab a pair of my 👓 and win cool prizes! 901 Hennepin… https://t.co/hNihJ9GX52 +02/03/2018,Sports_celeb,@TyrodTaylor,#T2SuitSeries Super Bowl LII Edition. https://t.co/ose6q8KaI8 +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: “As of right now I’m still a Bill. + +I’m going to continue to control the things I know I can.” + +How the biggest lesson of @…" +02/03/2018,Sports_celeb,@TyrodTaylor,RT @raylewis: Remember - diamonds are created under pressure. +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @gmfb: ""The naysayers are always going to be out there and I'll continue to prove them wrong."" -@TyrodTaylor when @RealMikeRob asked how…" +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @gmfb: Huge thanks to @TyrodTaylor and @IsaacBruce80 for dropping by our #SuperBowl set this morning! Three more hours rolling on! +➡️ @…" +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: “I love playing in Buffalo. We have a special locker room. I’d love to be back with those guys.” + +@TyrodTaylor on his futur…" +02/03/2018,Sports_celeb,@TyrodTaylor,Minnesota come meet me tomorrow 2/3 from 1-3pm and grab a pair of my newly launched #T2Frames. #T2xFrameGenie. Purc… https://t.co/a929FBNEcc +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @Framegenie: If you can't be there, make sure to check out the T2 collection online: https://t.co/IcKssqOeyq https://t.co/vyZQSOmD87" +02/03/2018,Sports_celeb,@TyrodTaylor,RT @nflnetwork: Coming up next on #SBLive: @TyrodTaylor! ➡️📺 https://t.co/odQvjRi5up +02/03/2018,Sports_celeb,@TyrodTaylor,Anytime my man!! https://t.co/Y3Qb22jp84 +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLTotalAccess: .@TyrodTaylor lets us know how it felt to get the @buffalobills in the playoffs and what's in store for next season. ht… +02/03/2018,Sports_celeb,@TyrodTaylor,https://t.co/I0TcpJK1RV grab a pair 👓 https://t.co/pSH7FXKkus +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLTotalAccess: .@TyrodTaylor joins the guys NEXT on @nflnetwork!!! https://t.co/NOx0WI7WX2 +02/03/2018,Sports_celeb,@TyrodTaylor,"RT @nflnetwork: We got @TyrodTaylor in the 🏠! + +The @buffalobills QB checking in with @MJD. #SBLive https://t.co/eUKK5qTvOa" +02/03/2018,Sports_celeb,@TyrodTaylor,Anytime. Great to meet you! https://t.co/71T8DbPXVe +02/03/2018,Sports_celeb,@TyrodTaylor,RT @NFLGameDay: .@TyrodTaylor talks about his time on the @Ravens and learning what it takes to win a Super Bowl 👇👇👇 https://t.co/Rdc1sBIuiy +02/03/2018,Sports_celeb,@TyrodTaylor,My man! Great to see you again. https://t.co/FBipIctaXO +02/03/2018,Sports_celeb,@TyrodTaylor,RT @VT_Football: Any #Hokies 🦃 heading to #SBLII - here's your chance to hang w T2! https://t.co/ysqnHAinqy +02/03/2018,Sports_celeb,@TyrodTaylor,Had a blast celebrating #SuperBowlLII with the @NFLPA. https://t.co/8bpaiAjWMF +02/02/2018,Sports_celeb,@TyrodTaylor,Had an awesome day with @Hyundai and the fans celebrating Super Bowl LII! #Ad https://t.co/cQp0owvPQX +02/01/2018,Sports_celeb,@TyrodTaylor,"RT @buffalobills: Thank you, @EWood70. + +Our locker room won't be the same without you. https://t.co/9Qa7J2565e" +02/01/2018,Sports_celeb,@TyrodTaylor,"Come meet me in Minneapolis! Le Meridian Hotel Saturday, Feb 3rd from 1-3pm. Get a chance to win my #T2Frames, auto… https://t.co/PKSKPPYdUI" +01/31/2018,Sports_celeb,@TyrodTaylor,👓 #SuperBowlLII #T2Frames https://t.co/zr0FahFddU +01/26/2018,Sports_celeb,@TyrodTaylor,"You got this, @MrDavidWise and the @usskiteam! #TeamBose #OneTeam #BoseAmbassador https://t.co/yNegH6otKU" +01/19/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Glory to God.. +01/19/2018,Sports_celeb,@TyrodTaylor,You need to grab those. T2 👓 https://t.co/fDLyPv7V0K +01/19/2018,Sports_celeb,@TyrodTaylor,RT @DexRob: On Demand 📈| @TyrodTaylor https://t.co/2sUpl0WA7w +01/15/2018,Sports_celeb,@TyrodTaylor,That’s Big Time Diggs.. yessir +01/12/2018,Sports_celeb,@TyrodTaylor,"RT @MensFitness: Need an extra boost in the gym? Here's how @DangeRussWilson, @cj_wentz, @LarryFitzgerald, @Edelman11, and @TyrodTaylor get…" +01/11/2018,Sports_celeb,@TyrodTaylor,Thats Love. Appreciate it! https://t.co/XT0NSCILvd +01/11/2018,Sports_celeb,@TyrodTaylor,Always love in the 6 with my bro @CutonDime25 #WeTheNorth https://t.co/5yGy15umiK +01/10/2018,Sports_celeb,@TyrodTaylor,"RT @NBACanada: The @buffalobills very own, Tyrod Taylor & LeSean McCoy, came to visit the @raptors tonight! 🏈x🏀 + +#WeTheNorth https://t.co/5…" +01/07/2018,Sports_celeb,@TyrodTaylor,Post season looks. Check. Week 18. #T2SuitSeries https://t.co/JaxHegmkzb +01/07/2018,Sports_celeb,@TyrodTaylor,😄 https://t.co/gl9vWytOkP +01/05/2018,Sports_celeb,@TyrodTaylor,Been working some years for this. https://t.co/uWV5yS2FVa +01/05/2018,Sports_celeb,@TyrodTaylor,RT @OlmstedCenter: @TyrodTaylor has supported @OlmstedCenter for 2 years and in response to his support we have had some amazing fans donat… +01/05/2018,Sports_celeb,@TyrodTaylor,RT @God_Son80: Follow God. That’s always the right direction... +01/02/2018,Sports_celeb,@TyrodTaylor,This is an Instant Classic.. UGA/Oklahoma kids played their hearts out. #RoseBowl +01/02/2018,Sports_celeb,@TyrodTaylor,RT @SportsCenter: The wait is over. The Bills are in the postseason. https://t.co/d62HjPFiw7 +01/02/2018,Sports_celeb,@TyrodTaylor,BILL-LIEVE ... https://t.co/5Jj2HCkuo3 +01/02/2018,Sports_celeb,@TyrodTaylor,Sunday’s best. Week 17. #T2SuitSeries https://t.co/acU8b9lX8Q +12/26/2017,Sports_celeb,@TyrodTaylor,No place like Blacksburg! #Hokie4Life https://t.co/qNhmxZcfET +12/24/2017,Sports_celeb,@TyrodTaylor,Suits that weather the storm. Business trip. Week 16. #T2SuitSeries https://t.co/0qRtbb3E7q +12/22/2017,Sports_celeb,@TyrodTaylor,What’s it like to be an #NFL player? Step into the game at the NEW @NFLExperience to find out - you can even borrow… https://t.co/8v6kkBgfIk +12/22/2017,Sports_celeb,@TyrodTaylor,Thank you @UnitedWay for allowing me to be a blessing to these families. This is what it’s all about. https://t.co/cvmyqEb9dP +12/20/2017,Sports_celeb,@TyrodTaylor,Congrats to my brothers @CutonDime25 @68INCOGNITO & @micah_hyde on being selected to the #ProBowl. Represent the fa… https://t.co/fc1hsI66Jc +12/20/2017,Sports_celeb,@TyrodTaylor,"RT @buffalobills: The winner of this week's @BlueRockEnergy Player of the Week? + +Tyrod Taylor! #GoBills https://t.co/0bLWjifMjx" +12/19/2017,Sports_celeb,@TyrodTaylor,Great time hanging out @StantonOptical1 tonight with the fans of Buffalo launching my new T2 Frames! Go visit your… https://t.co/rkYPNInLPR +12/19/2017,Sports_celeb,@TyrodTaylor,"BUFFALO!!!! Join me today @StantonOptical1 from 5-6pm as I sign autos, take pics & launch my new T2 Frames. It’s FR… https://t.co/dtnhbzNkBZ" +12/19/2017,Sports_celeb,@TyrodTaylor,RT @ToddJClausen: We should never question the heart of @TyrodTaylor. Truly a class act. #BillsMafia https://t.co/Y7dIkTFD0z +12/19/2017,Sports_celeb,@TyrodTaylor,All of Buffalo join me tomorrow. Let’s hangout and try some new frames! T2 https://t.co/1CfLCuh7Vg +05/31/2018,Sports_celeb,@tonyromo,Kicking back in @SKECHERSUSA #ad https://t.co/y59TNZBxIs +05/08/2018,Sports_celeb,@tonyromo,The standard that every future cowboy will have to live up to. Thank you Jason Witten. You will be missed bro. https://t.co/d9a4RI6N9T +03/29/2018,Sports_celeb,@tonyromo,Behind the scenes with @SKECHERSUSA #skechers 🎬 https://t.co/vrG6dzd5si +12/28/2017,Sports_celeb,@tonyromo,@Rizzuti09 You stay strong Rachel. They come and they go. You have special qualities that many people can see eve… https://t.co/nZpApiJfKA +12/25/2017,Sports_celeb,@tonyromo,Merry Xmas everyone. Hawk and Riv are having a great day! “That’s what I️ wanted!” https://t.co/RUGi0aKBEf +10/14/2017,Sports_celeb,@tonyromo,@Rizzuti09 I think we can make that happen. ;) +10/11/2017,Sports_celeb,@tonyromo,Sunday was a good day to hang out and watch football with the boys. Rivers is the “crazy guy” Hawk is talking about… https://t.co/H0bJ25dzMd +09/29/2017,Sports_celeb,@tonyromo,@ZacEfron @ZacEfron thanks bud. Having a blast over here +09/25/2017,Sports_celeb,@tonyromo,I think I like this broadcasting thing. 😎 https://t.co/LaFKaYOT7u +09/07/2017,Sports_celeb,@tonyromo,Never going a day without #comfort now that I’ve joined #TeamSkechers! Thanks for welcoming me @SkechersUSA! https://t.co/Gxv3iTnVe0 +08/23/2017,Sports_celeb,@tonyromo,Welcomed our third boy Jones Mccoy Romo into the world today! Ten fingers and ten toes. All healthy. Almost have… https://t.co/2VqgtSiDBs +08/05/2017,Sports_celeb,@tonyromo,At Jerry's Hall of Fame party. This napkin says it all. I've heard more Jerry-ism's than anyone. I love 'em. Che… https://t.co/EdhHDC0qno +04/11/2017,Sports_celeb,@tonyromo,"@swish41 If I shoot an air ball in warmups I give u permission to send me to the showers. But if I don't, u get me a corner three in the 4th" +04/08/2017,Sports_celeb,@tonyromo,You made football a lot easier for me because of your greatness...but you also made my life better by being in it.… https://t.co/4PZuxRkd6b +04/08/2017,Sports_celeb,@tonyromo,@JasonWitten You made football a lot easier for me because of your greatness...but you also made my life better by… https://t.co/ysoPeOQ1Gq +04/06/2017,Sports_celeb,@tonyromo,@JJWatt I could hear you breathing as u we're closing in. Gotta work on those quiet feet as well. ;) Your the best in the game brother +04/06/2017,Sports_celeb,@tonyromo,@TCrawford98 Don't worry. I'm still gonna be around to yell at you for something. ;) +04/04/2017,Sports_celeb,@tonyromo,I guess it's time to start dressing up. #CBS https://t.co/GseSRiyNOo +03/09/2017,Sports_celeb,@tonyromo,Thanks for all the support everyone. https://t.co/RlRS3KAqwb +07/08/2016,Sports_celeb,@tonyromo,My heart can't shake the sadness that the Sterling and Castile families are enduring as well right now. Horrible 72 hrs for America +07/08/2016,Sports_celeb,@tonyromo,Our community is stunned this morning. My thoughts and prayers go out to the fallen police officers and their loved ones. +06/16/2016,Sports_celeb,@tonyromo,I had so much fun helping @Target shoppers pick out Father's Day gifts in Dallas tonight! #TargetPartner https://t.co/EELEEmeeza +04/29/2016,Sports_celeb,@tonyromo,"Welcome to Dallas Ezekiel. Nothing better than your draft day! Or in my case, nothing better than teams fighting for you after it's over :)" +03/31/2016,Sports_celeb,@tonyromo,3 Days. 2 Stages. 1 FREE Music Festival. @FinalFour March Madness Music Festival - Apr 1-3. https://t.co/BpffXlyVTv +03/31/2016,Sports_celeb,@tonyromo,My surgery has healed up nicely. Looking forward to OTA's and a full offseason. Let's go! +11/17/2015,Sports_celeb,@tonyromo,;) https://t.co/KPy56DQMTz +09/21/2015,Sports_celeb,@tonyromo,Thank you for all your prayers and support. No surgery needed. We're just getting started cowboys nation. See you soon +08/26/2015,Sports_celeb,@tonyromo,Sending prayers out to Orlando Scandrick...Fear he has a torn acl. Your the best bud. +08/23/2015,Sports_celeb,@tonyromo,"My bad. Feeling. Aggressive, I like it. :)" +08/23/2015,Sports_celeb,@tonyromo,Cowboys vs Niners.... I have a funny felling you might see me out there tonight. Let's go cowboy nation +08/21/2015,Sports_celeb,@tonyromo,http://t.co/R3010HN4ap check this out. Our d lineman Jeremy Mincey made this. Pretty cool. Good job Mincey +08/01/2015,Sports_celeb,@tonyromo,You just wish u could play this game forever. Greatest game there is. #firstdayofpads http://t.co/GCQ6nOXvKi +07/25/2015,Sports_celeb,@tonyromo,I wanna thank @DIRECTV for allowing me to show off my true self. ;) embarrassing is an understatement http://t.co/F0NniFESlL +07/20/2015,Sports_celeb,@tonyromo,I wonder if @JordanSpieth understands the emotional roller coaster he's given us this year. It was amazing. Thank you for making it fun bro +07/15/2015,Sports_celeb,@tonyromo,Couldn't be happier for my guy @DezBryant . Nobody deserves it more... just make sure you don't forget your wallet at the next dinner 88. +07/08/2015,Sports_celeb,@tonyromo,DeAndre Jordan.....you are not allowed to take your talents to LA. See you Monday 🏈🏀🏈🏀🏈🏀🏁🏁🏁🏆🏆 http://t.co/7N2YcfWvOT +07/04/2015,Sports_celeb,@tonyromo,Enjoy your family and friends today. To the lives that have been lost fighting for American lives.....thank you. Truly humbled +06/11/2015,Sports_celeb,@tonyromo,"RT @dallascowboys: ""The responsibility is yours to make your life GREAT."" - @tonyromo to local student-athletes. #CowboysU http://t.co/m04W…" +06/06/2015,Sports_celeb,@tonyromo,NFL has canceled our fantasy football convention this year in Vegas and that is disappointing. I'm sad for the fans and players. +06/02/2015,Sports_celeb,@tonyromo,I guess I'm the third most athletic in the family. I'm cool with it. :) http://t.co/PKocqGVL5G +05/20/2015,Sports_celeb,@tonyromo,Where have u gone Joe DiMaggio. http://t.co/9d5aElp13d +05/15/2015,Sports_celeb,@tonyromo,Looking back on it...it was a catch :) http://t.co/jq29XpkGAn +05/15/2015,Sports_celeb,@tonyromo,9 +07/01/2018,Sports_celeb,@bengreenfield,@UncleWilliamMMA It's all in this article: https://t.co/g4PHEoVp8K +07/01/2018,Sports_celeb,@bengreenfield,@thef00ch It's complicated and depends on what you want to get out of your fast. Check out my fasting podcast with… https://t.co/WiSZ2eVQnw +07/01/2018,Sports_celeb,@bengreenfield,"@suncard19 @mvmt It's not recommended, but I do and haven't had any issues." +07/01/2018,Sports_celeb,@bengreenfield,"**DO NOT COMMENT ON THIS POST TO ENTER!!**⁣ +⁣ +If you are interested in winning the Christian Gratitude Journal for… https://t.co/gqcG2Qygva" +07/01/2018,Sports_celeb,@bengreenfield,@gmoore131 Sure is tempting! +07/01/2018,Sports_celeb,@bengreenfield,@CarleAldrete I go over some of the benefits (and drawbacks) in this podcast: https://t.co/y2sFKQtMYs +06/30/2018,Sports_celeb,@bengreenfield,@UncleWilliamMMA @tferriss I go into cupping on this podcast: https://t.co/AwcHIBc2NL +06/30/2018,Sports_celeb,@bengreenfield,"@bobpzero Nope, read more here: https://t.co/bHliB74uCi" +06/30/2018,Sports_celeb,@bengreenfield,@waywarduncle @thorne_research https://t.co/Zuv3TJIC8r +06/30/2018,Sports_celeb,@bengreenfield,"@HeroSquirellBoy Check the link, I answer this in the article." +06/30/2018,Sports_celeb,@bengreenfield,@Karrisspeaks Just mono...This is the stuff I use: https://t.co/0dScTtjNzm +06/30/2018,Sports_celeb,@bengreenfield,@4nomad @foundmyfitness @robbwolf https://t.co/3ygUHfbczG +06/30/2018,Sports_celeb,@bengreenfield,"@Cain_Luca I talk about it here as a better alternative to, or a way to wean yourself off of, tobacco containing ci… https://t.co/o7sjhGLPbm" +06/30/2018,Sports_celeb,@bengreenfield,@GFunk_Error @DZederman Check out this recent article on https://t.co/YR7B65x4tq: https://t.co/9oRmYPatzq +06/30/2018,Sports_celeb,@bengreenfield,@firehaas I wouldn't consider that cold water. +06/30/2018,Sports_celeb,@bengreenfield,@ANorrby https://t.co/zA7rC48fyg +06/30/2018,Sports_celeb,@bengreenfield,"@LuisE_Lemus @truniagen Not in production yet, but sign up for my newsletter at https://t.co/PJPuWBve6p to be notified when they're ready!" +06/30/2018,Sports_celeb,@bengreenfield,@ondroad2royalty That could buy a lot. Every single product/device/procedure I've ever mentioned at… https://t.co/d4IN2Dgai4 +06/30/2018,Sports_celeb,@bengreenfield,@AeroLance @livingwmonsters @younglivingeo https://t.co/bIDbWx1Ykj +06/30/2018,Sports_celeb,@bengreenfield,"@suncard19 @mvmt Sometimes, depends on the type of training." +06/30/2018,Sports_celeb,@bengreenfield,@codypriest92 @JREpodcast Here's an article I wrote on MK 677: https://t.co/Qf7Dkwz3IX +06/30/2018,Sports_celeb,@bengreenfield,"My seafood kick continues here in #Estonia... I got this amazing oven-baked baby trout with fresh greens, avocado c… https://t.co/oWxrHZTEtX" +06/30/2018,Sports_celeb,@bengreenfield,Yale graduate and “social cognitive & affective neural science” author Ryan Keller is a guest on Obstacle Dominator… https://t.co/bjcFq7iNLJ +06/30/2018,Sports_celeb,@bengreenfield,"My guest on today's podcast, @drdanpompa is one of my favorite guys to hang with! He is considered to be an icon in… https://t.co/AWMMOi80sO" +06/30/2018,Sports_celeb,@bengreenfield,"Everything you may have missed this week– health and fitness news, tips, discounts and more! +https://t.co/D1llw3iPeU" +06/30/2018,Sports_celeb,@bengreenfield,Spartan Race just put up $1 million for the athlete who wins 1st place at all three @SpartanRace World Championshi… https://t.co/KTqi7BUGv9 +06/30/2018,Sports_celeb,@bengreenfield,"@the1hatter Similar effect...but for athletes, very lean people, etc. the whole ""fasting"" to fix every issue approach can backfire..." +06/29/2018,Sports_celeb,@bengreenfield,"#Creatine increases #cognition, even in #healthy people: https://t.co/7IQU1ucssC" +06/29/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #22: Super Smart Things and S… https://t.co/GdyzInXKmv +06/28/2018,Sports_celeb,@bengreenfield,"I travel a lot, but it’s hands-down the BEST when I get to travel with my family. From the Boise @spartanrace to at… https://t.co/5TWjCO9FyM" +06/28/2018,Sports_celeb,@bengreenfield,"RT @DZederman: Hey now, The Armchair Nutritionist is back! I talked with @bengreenfield a nutritionist, biohacker & longevity consultant.…" +06/28/2018,Sports_celeb,@bengreenfield,Calling all you high achieving athletes who struggle to find time to to train! Today's new podcast is for you. In i… https://t.co/jUjyJAXnGf +06/28/2018,Sports_celeb,@bengreenfield,Did you know Rutaecarpine is an herb speeds up #caffeine #metabolism. So if you accidentally drank regular #coffee… https://t.co/28kICLdCc0 +06/28/2018,Sports_celeb,@bengreenfield,"This year I used a special protocol that is technically called “extracorporeal shock wave therapy,” also known as “… https://t.co/tMbPva8zCs" +06/28/2018,Sports_celeb,@bengreenfield,The Best Workout Tips for Ectomorphs and Hardgainers https://t.co/5qpTaYb4r6 +06/27/2018,Sports_celeb,@bengreenfield,"Everyone is talking about the outstanding #longevity benefits of #NAD but it's actually #NR, its precursor which is… https://t.co/Q6xgO4w4wx" +06/27/2018,Sports_celeb,@bengreenfield,"Caffeine's effect on #endurance exercise #performance may depend on #genes, shocking facts about honey, caffeinated… https://t.co/YsU6EllJos" +06/27/2018,Sports_celeb,@bengreenfield,Latest study on red meat shows that (despite what epidemiologists say) if it's unprocessed and somewhat lean in Med… https://t.co/Ci5PUdfYKQ +06/27/2018,Sports_celeb,@bengreenfield,"@the1hatter Yes, I did. Will be addressing in a podcast soon." +06/26/2018,Sports_celeb,@bengreenfield,"@Vican123ZA No it doesn't. Enrollment has ended, but you are welcome to apply next year!" +06/26/2018,Sports_celeb,@bengreenfield,@CeeJayWeaber @BigStrongFast I felt it pretty quickly. +06/26/2018,Sports_celeb,@bengreenfield,@JaffaSumo @PeterAttiaMD @tferriss @ChrisMasterjohn @chriskresser @bulletproofexec Have you tried a humidifier? https://t.co/QM4JLhF3Rl +06/26/2018,Sports_celeb,@bengreenfield,How To Prepare for a Ragnar Relay https://t.co/Q6YAlpzn7l +06/25/2018,Sports_celeb,@bengreenfield,@suncard19 Usually @mvmt https://t.co/Xo9Oykiuqv +06/25/2018,Sports_celeb,@bengreenfield,@kystyleguy There are many counterpoints to that. I would have her read this: https://t.co/xry6g8Azpo and any of my… https://t.co/gOBBu6pas7 +06/25/2018,Sports_celeb,@bengreenfield,@johntracey_ @JasonFerruggia Yes +06/25/2018,Sports_celeb,@bengreenfield,@howellsmike @WholeFoods I'm not much of a calorie counter tbh. +06/25/2018,Sports_celeb,@bengreenfield,@mn_fats75 Sure! https://t.co/MPdbeDhLJM +06/25/2018,Sports_celeb,@bengreenfield,@savoie0515 Not familiar with that one. All of my water filtration recommendations can be found in this article: https://t.co/NsbTdChNP0 +06/25/2018,Sports_celeb,@bengreenfield,"The deadline to apply for Kion U is today: https://t.co/3XIAsDKndR (link in bio)⁣⁣ +⁣⁣ +This is a 21-week intensive p… https://t.co/89U5uNj0x3" +06/25/2018,Sports_celeb,@bengreenfield,@WholeFoods Let me know if you ever want to collaborate on promo ideas. Just DM me. +06/25/2018,Sports_celeb,@bengreenfield,"For 4 full days while we are in Estonia next week, my wife and I are taking this Lifebook course with @mindvalley -… https://t.co/rVskqN7JLf" +06/24/2018,Sports_celeb,@bengreenfield,"My go-to lunch spot while traveling is the @wholefoods salad bar. Today I got some salmon, (admittedly not wild-cau… https://t.co/VCMeLjh67W" +06/24/2018,Sports_celeb,@bengreenfield,River and Terran Greenfield of the world famous gogreenfieldsshow did their first ever 2 mile long competitive… https://t.co/IxQYo9zklq +06/23/2018,Sports_celeb,@bengreenfield,@BuxBucks This is great. Where is it from? +06/23/2018,Sports_celeb,@bengreenfield,"Real men eat their #glutenfree #vegan #icecream sandwiches pinkies out. I’m at @ilovethestil in Boise, Idaho. Post… https://t.co/NI9Z07r5gB" +06/23/2018,Sports_celeb,@bengreenfield,@joerogan I am sitting here in Boise after racing a Spartan and your face is all over. Tip: get the most amazing gl… https://t.co/dFuWQFo7J6 +06/23/2018,Sports_celeb,@bengreenfield,"@Urban_Tribe_Adv @RayCronise @RayCronise has been on the podcast, check it out here: https://t.co/vxWazlnaED" +06/23/2018,Sports_celeb,@bengreenfield,@justinwilcox Check out the Alchemist's Kitchen @alchemists_k and @HuKitchen. +06/23/2018,Sports_celeb,@bengreenfield,@quijotedv @joerogan A cycle leading into a major competition or race. +06/23/2018,Sports_celeb,@bengreenfield,@Optix_Melt Yep or carbs in general +06/23/2018,Sports_celeb,@bengreenfield,@Hightower915 @joerogan Just carbs. +06/23/2018,Sports_celeb,@bengreenfield,"My guest on today's podcast is experienced in a wide variety of #therapeutic modalities as a #LMT, and his educatio… https://t.co/2eZhdJskcJ" +06/22/2018,Sports_celeb,@bengreenfield,@HeatherOdehkw @drcateshanahan Awesome! +06/22/2018,Sports_celeb,@bengreenfield,@the1hatter Here you go! https://t.co/9syX1PQ9Q9 +06/22/2018,Sports_celeb,@bengreenfield,"@savoie0515 Hmm, I'll have to try it and let you know!" +06/22/2018,Sports_celeb,@bengreenfield,"@msted6 @joerogan Carbohydrate, they tell you in the first mention." +06/22/2018,Sports_celeb,@bengreenfield,@_buenavictoria Depends on your definition of cheat meal. Check out: https://t.co/Lbb0I4u9GL +06/22/2018,Sports_celeb,@bengreenfield,@stamper_hank Yes. +06/22/2018,Sports_celeb,@bengreenfield,"@cmoss23 @GetFitGuy Consistently, through your lift, doing a workout similar to that once a week is a very good idea, IMO." +06/22/2018,Sports_celeb,@bengreenfield,"I'm packing for @Spartan Boise. Who will be out there to crush the course with me this Saturday? + +Shout out to all… https://t.co/Uelw985vun" +06/22/2018,Sports_celeb,@bengreenfield,Can Simply Sitting in a Hot Tub Improve Your Health? https://t.co/jPRj6LzS1o +06/22/2018,Sports_celeb,@bengreenfield,@grim_magnus @Mindpump That's because they get me all liquored up. +06/22/2018,Sports_celeb,@bengreenfield,@tiffanyngibson @bulletproofexec @MariaEmmerich The Keto Bible! https://t.co/84ns0JuctN +06/22/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #21: Power Hour with Matthew… https://t.co/UBXR6WB9cx +06/22/2018,Sports_celeb,@bengreenfield,"How To Use Your Mind To Heal Your Body, Imagination For Healing, Defying Death, Embracing Immortality & Much More W… https://t.co/37Uld0iUZa" +06/22/2018,Sports_celeb,@bengreenfield,"@DevinRhode2 Yes, @joerogan wears lobster bib-esque vomit aprons when we podcast." +06/21/2018,Sports_celeb,@bengreenfield,@huntthesheriff is in tha’ hood. https://t.co/ojNuQ0AFro +06/21/2018,Sports_celeb,@bengreenfield,"@huntthesheriff is in the hood. @ Spokane,… https://t.co/5NAeXCliAb" +06/21/2018,Sports_celeb,@bengreenfield,"Gerald Epstein, M.D., has been a pioneer in the use of mental imagery for treating physical and emotional problems.… https://t.co/jnE5rdBi9h" +06/21/2018,Sports_celeb,@bengreenfield,Which episode of my podcast is hands down your favorite / you have recommended the most? +06/21/2018,Sports_celeb,@bengreenfield,@normcarbnormfat @johnortberg Soul Keeping. +06/21/2018,Sports_celeb,@bengreenfield,The author @johnortberg has been blowing my mind recently. I'd recommend you read all his books in the next year of… https://t.co/JI5R035Yt9 +06/20/2018,Sports_celeb,@bengreenfield,@KyleShuberg @amazon @ransomedheart @johneldredge Have not read either of them! +06/20/2018,Sports_celeb,@bengreenfield,"How exactly does #neurofeedback / AKA ""central nervous system biofeedback” work to train the #brain? Find out how i… https://t.co/Hemjzhud3D" +06/20/2018,Sports_celeb,@bengreenfield,@BarryVanOver Not yet. ;) +06/20/2018,Sports_celeb,@bengreenfield,Good one: Overview of the potential effects of #protein ingestion on supporting the #recovery from endurance-based… https://t.co/DYUa658m4E +06/19/2018,Sports_celeb,@bengreenfield,"""12 Practical & Proven Ways To Heal Your Body From The Inside-Out."" https://t.co/Lbd23XckhB" +06/19/2018,Sports_celeb,@bengreenfield,@the1hatter Thanks for sharing! +06/19/2018,Sports_celeb,@bengreenfield,"@fithouses Yep, in this podcast: https://t.co/tacbjoIWQo" +06/19/2018,Sports_celeb,@bengreenfield,"@HeatherOdehkw @drcateshanahan Not sure about a cracked tooth, but I go into detail about remineralizing your teeth… https://t.co/KwQiNgt8hF" +06/19/2018,Sports_celeb,@bengreenfield,@caholden7 I have a bunch of resources in this podcast: https://t.co/rDBRbhH9Yu ...and these articles:… https://t.co/ogW7dlHLPI +06/19/2018,Sports_celeb,@bengreenfield,@SEOphilippiness I would send an email to support: support@greenfieldfitnesssystems.com +06/19/2018,Sports_celeb,@bengreenfield,@Formwell I go over a few good natural remedies in this podcast: https://t.co/OLdCVkNze6 +06/19/2018,Sports_celeb,@bengreenfield,There is a hard deadline for applications for my brand new coaching program. Submit your application before the end… https://t.co/Angb9sQPsh +06/19/2018,Sports_celeb,@bengreenfield,"Weightlifting for your penis? @Kingsbu @joerogan - been there, done that: https://t.co/rDQcgS2Juw" +06/19/2018,Sports_celeb,@bengreenfield,Experts say #algae is the food of the future. Here’s why: https://t.co/Ruqd6ZIW4J +06/19/2018,Sports_celeb,@bengreenfield,Why Cross-Training Is Essential (and Improves Your DNA) https://t.co/MrhJeyHyKu +06/19/2018,Sports_celeb,@bengreenfield,"@thedr_com - when it comes to lipid raft cytosis, any data out there on how this would affect folks who switch from… https://t.co/mP3awdF00Y" +06/18/2018,Sports_celeb,@bengreenfield,"@brianfreel You probably saw it here, https://t.co/Jt9QZWFzSA but stay tuned for an upcoming @onnit podcast." +06/18/2018,Sports_celeb,@bengreenfield,@the1hatter 1-2tsp! +06/18/2018,Sports_celeb,@bengreenfield,I visited @PeakBrainLA for an advanced brain scan and I was shocked at what they discovered in my #brain. Read mo… https://t.co/OC8RH0kg8D +06/18/2018,Sports_celeb,@bengreenfield,@hfce354 Along with neurotoxic and gut destroying artificial sweeteners. Yay! +06/18/2018,Sports_celeb,@bengreenfield,"Enroll now in ""KionU"" my brand new health and fitness coaching program. It is designed with an emphasis on business… https://t.co/PZ3sthVSIs" +06/18/2018,Sports_celeb,@bengreenfield,The only supplement that comes at least close to carbs in terms of the amount and quality of research is caffeine a… https://t.co/4dFgN4Zl4k +06/18/2018,Sports_celeb,@bengreenfield,RT @mindbodygreen: Talk about early to rise -- we set out for a 6 am hike this morning led by @bengreenfield + fueled by @EPICbar 😋⛰ #mbgre… +06/17/2018,Sports_celeb,@bengreenfield,@New49 Thank you. +06/17/2018,Sports_celeb,@bengreenfield,@Greghenderson1 It was a relatively intense effort… Like a bicycle time trial type of effort. +06/17/2018,Sports_celeb,@bengreenfield,@bubstron Correct. +06/17/2018,Sports_celeb,@bengreenfield,@Ryan_Bevans Yep. If your goal is to enhance endurance. +06/17/2018,Sports_celeb,@bengreenfield,90-year-old woman deadlifts 185 lbs. Can’t wait to see what the trolls think of her form: https://t.co/XbnRNSe8Ib +06/16/2018,Sports_celeb,@bengreenfield,Hike with champs! @maxlugavere @foursigmaric Tero and @seedhealth Raja at #mbgrevitalize https://t.co/0hLK4acNeS +06/16/2018,Sports_celeb,@bengreenfield,Hike with champs! @maxlugavere @foursigmaric Tero and @seedhealth Raja - https://t.co/PRIYclcRg4 https://t.co/U4LQg3eiE4 +06/16/2018,Sports_celeb,@bengreenfield,@jsfaq Hopefully the cost will come down in the future! +06/16/2018,Sports_celeb,@bengreenfield,"@SEOphilippiness Yes, you can stream the video or download the audio." +06/16/2018,Sports_celeb,@bengreenfield,This is the best computer monitor for your eyes. https://t.co/bH728GMWRK +06/16/2018,Sports_celeb,@bengreenfield,Me and @maxlugavere crushing gym time at #mbgrevitalize in Tucson! https://t.co/2fxn99ab4S +06/16/2018,Sports_celeb,@bengreenfield,"If you want to learn how to harness the healing power of nature — even indoors, clean up your environment, grow you… https://t.co/EihUmPvDvt" +06/16/2018,Sports_celeb,@bengreenfield,"@UncladLad Seems slightly unsafe, I would make sure someone knows you're doing it, and definitely not while driving… https://t.co/8V8v9ye6ws" +06/16/2018,Sports_celeb,@bengreenfield,@gerabrr I have instructions here as well: https://t.co/5u9UbD2pp5 +06/16/2018,Sports_celeb,@bengreenfield,@hopsanonymous Read more here: https://t.co/MA3oLgJs9I +06/16/2018,Sports_celeb,@bengreenfield,@MemeGalt Don't knock it til you've tried it ;) +06/15/2018,Sports_celeb,@bengreenfield,@thestevehallock Depends! Read this: https://t.co/Mtwavbb4zL +06/15/2018,Sports_celeb,@bengreenfield,"""Sleeping Low"" (not reloading glycogen stores after evening workouts) can lead to game-changing performance gains w… https://t.co/qEbtLS5WGV" +06/15/2018,Sports_celeb,@bengreenfield,"Everything you may have missed this week including a mouth-watering #steak recipe, upcoming events including… https://t.co/mOP97gLRFd" +06/15/2018,Sports_celeb,@bengreenfield,@HotSauceHoltzy @joerogan @DrinkFITAID There’s some in my fridge. It’s pretty tasty. Especially with vodka. +06/15/2018,Sports_celeb,@bengreenfield,Here are my top 10 ways to hack your office environment so you can more done and get out of pain: https://t.co/nqagFaa0lU +06/15/2018,Sports_celeb,@bengreenfield,Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #20: Genius Nutrition For Stu… https://t.co/WReO20VPCc +06/15/2018,Sports_celeb,@bengreenfield,I visited @PeakBrainLA for an advanced brain scan and to use a brain mapping system called a quantified electroenc… https://t.co/TuEFNZ2Knu +06/14/2018,Sports_celeb,@bengreenfield,"Today's new listener Q&A podcast episode is a doozy. We cover #HIIT, how sprints can massively boost endurance, T,… https://t.co/dIOS7Sa9i7" +06/14/2018,Sports_celeb,@bengreenfield,I'm in Tucson for the @mindbodygreen Revitalize conference! My job? “Official Sunrise Morning #Hike Leader.” Tough… https://t.co/B1OUliVdo4 +06/14/2018,Sports_celeb,@bengreenfield,https://t.co/v0Xq5BWmd9 +06/14/2018,Sports_celeb,@bengreenfield,"How Your Computer Monitor Is Slowly Killing Your Eyes, And What You Can Do About It. https://t.co/XMGSUbSmqO" +06/13/2018,Sports_celeb,@bengreenfield,New to Lifting Weights? How to Start the Smart Way https://t.co/VnLcRykmFZ +06/13/2018,Sports_celeb,@bengreenfield,URGENT MSG FOR #HEMP AND #CBD USERS: @ChuckGrassley just filed an amendment to the #FarmBill that would devastate t… https://t.co/LJuFthfSES +06/13/2018,Sports_celeb,@bengreenfield,"Instantly Upgrade Your Head With This Brain Optimizing Gear! + +@DrPawluk @PeakBrainLA @AndrewHillPhD @VielightInc… https://t.co/lDaNNNYq4o" +06/13/2018,Sports_celeb,@bengreenfield,"How To Hack Your Workplace For Enhanced Productivity, Less Muscle Pain, Better Focus & More. https://t.co/rLmSwCbOiY" +06/13/2018,Sports_celeb,@bengreenfield,@Matt_Belair @Cisco722 email my team: support@bengreenfieldfitness.com with screenshot of this convo and let's do it. +06/13/2018,Sports_celeb,@bengreenfield,Pasta lovers rejoice! You actually CAN lose weight while eating pasta (please note the quantity in this study was 1… https://t.co/FACenCLJBd +06/13/2018,Sports_celeb,@bengreenfield,Headed to @cityoftucson tomorrow for @mindbodygreen Revitalize conference! My job? “Official Sunrise Morning Hike L… https://t.co/C9F09ruZVg +06/13/2018,Sports_celeb,@bengreenfield,@Charlesab40 Just wait till you see my new book. It is currently 700 pages long. Everything one needs to know about… https://t.co/itJVtCgYie +06/13/2018,Sports_celeb,@bengreenfield,Doing a coffee enema tutorial right now at https://t.co/ljIqlSV90A - no joke. One of the most effective cleansing t… https://t.co/Z3hPE5XlJZ +06/12/2018,Sports_celeb,@bengreenfield,@candycatalanoto Can't say I'm aware of any... +06/12/2018,Sports_celeb,@bengreenfield,@CODYCHAPMAN I have a recommendation in this article: https://t.co/xg4cnVPQPt +06/12/2018,Sports_celeb,@bengreenfield,@the1hatter https://t.co/jvXll4rg7A +06/12/2018,Sports_celeb,@bengreenfield,Learn how to completely rid your home of mold and environmental toxins that are deleterious to your health! The Tox… https://t.co/VEhAJF6gSn +06/12/2018,Sports_celeb,@bengreenfield,@michaelpollan - I finished your book. DM me if you want to podcast. +06/12/2018,Sports_celeb,@bengreenfield,"How to fix your desk-bound human body to increase #productivity & reduce #lowbackpain, carpal tunnel syndrome and e… https://t.co/x2pARhD47H" +06/12/2018,Sports_celeb,@bengreenfield,What Is Green Exercise? https://t.co/9aVQGaozTH +06/12/2018,Sports_celeb,@bengreenfield,"#Stevia for fighting obesity, diabetes, hypertension, and dyslipidemia? Looks promising: https://t.co/kqv0vdPyml" +06/12/2018,Sports_celeb,@bengreenfield,Here’s a very scheduling tip to get more “deep work” done: https://t.co/jPz1uOX8LH +06/12/2018,Sports_celeb,@bengreenfield,"In about 15 minutes I am going to film for you the most epic, insane meal I've prepared in awhile. Slightly abnorma… https://t.co/eBI9zA06QA" +06/12/2018,Sports_celeb,@bengreenfield,"@tompapa @joerogan - my wife's sourdough bread is second to none. If you find yourself near Spokane, venture to my… https://t.co/QmDLgBssEg" +06/11/2018,Sports_celeb,@bengreenfield,"I'm looking for a list of practical activities (meditation, yoga, gratitude, prayer, etc.) that allow one to achiev… https://t.co/7tg2OXH6Ac" +06/11/2018,Sports_celeb,@bengreenfield,"@hallydally Here are a few resources that should help you out: https://t.co/g6NKG8uW6e, https://t.co/C3X6VgUKeh...… https://t.co/wNwLX34Ofy" +06/11/2018,Sports_celeb,@bengreenfield,@the1hatter I personally do the clay mask 1-2x/week combined with the Kion skin serum every day! 20% code for… https://t.co/UbSvaPRbaL +06/10/2018,Sports_celeb,@bengreenfield,Physical activity combined with learning seems to be an amazing tool for schoolchildren in Finland - meaning actual… https://t.co/pguXcRyPLh +06/10/2018,Sports_celeb,@bengreenfield,"@kahnba I have a bunch of SARMS articles on https://t.co/YR7B65x4tq: https://t.co/K4IbTwivI0,… https://t.co/Mz4B9crKpv" +06/10/2018,Sports_celeb,@bengreenfield,"@bmontgome I haven't gotten any colds recently, so no." +06/10/2018,Sports_celeb,@bengreenfield,"Unlock the secrets of ""Movement Longevity"" with expert @Doctor_Legs: https://t.co/7UKgtHjs0Q" +06/09/2018,Sports_celeb,@bengreenfield,@ironblood247 Thanks man. +06/09/2018,Sports_celeb,@bengreenfield,"@pluc61 Sorry bout that! It wasn't intentional, there was some sort of glitch that caused hundreds of my videos to… https://t.co/nveKAoSvCJ" +06/09/2018,Sports_celeb,@bengreenfield,@bigdaddy__Jason @Roodywasoffside @whoop Apples and oranges. I would check out this article on @ouraring and their… https://t.co/UbY4a7xSQL +06/09/2018,Sports_celeb,@bengreenfield,@love2laugh11 Check out this podcast for some tips: https://t.co/iY2lXFAYhF ...and this article: https://t.co/JXMFUSASEU +06/09/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 This is a good question to call into the podcast! https://t.co/s0hCj6wwIb +06/09/2018,Sports_celeb,@bengreenfield,"@havefunwiththe1 @tb12 Probably don't have the time to manage this one man. Sorry, but cool idea though!" +06/09/2018,Sports_celeb,@bengreenfield,"@dillybear92 Yes, the goal however is to avoid any long ice baths or excessive cold exposure post-workout. Night an… https://t.co/vcmIMeG6Zi" +06/09/2018,Sports_celeb,@bengreenfield,@HeatherOdehkw This will be a forever debate between supplement manufacturers who make NR and physicians who do NAD… https://t.co/LPXGCcYUM1 +06/09/2018,Sports_celeb,@bengreenfield,Have you heard about my brand new #coaching certification? I've been working tirelessly to overhaul the Superhuman… https://t.co/VccFo6992p +06/09/2018,Sports_celeb,@bengreenfield,Looks like intermittent fasting does not cause caloric overcompensation later on - could backfire though if you’re… https://t.co/oec3gQVqVC +06/09/2018,Sports_celeb,@bengreenfield,Good food porn tonight (and why I order acorn squash at restaurants) at https://t.co/jII7jxddzy https://t.co/5M4wF1bm8c +06/09/2018,Sports_celeb,@bengreenfield,"Great new ""Bible learnin'"" podcast from Christ Church, Moscow, ID with @douglaswils - called Kirkers Read." +06/09/2018,Sports_celeb,@bengreenfield,Live downtown Spokane tomfoolery happening rightnow at https://t.co/CsMD2ZqxjF +06/09/2018,Sports_celeb,@bengreenfield,@jonwolfeb Thanks. Would up here @volstead_act +06/09/2018,Sports_celeb,@bengreenfield,"Are you a health and fitness professional? Do you want me to teach you everything I've learned about #fitness,… https://t.co/msNb6kptM3" +06/08/2018,Sports_celeb,@bengreenfield,Thinking of heading downtown Spokane tonight to grab dinner. Any new hotspots I should know of? +06/08/2018,Sports_celeb,@bengreenfield,"In this week's roundup, @kion's brand spankin' new coaching certification, DiGize essential oil blend from… https://t.co/ans8DKmHjA" +06/08/2018,Sports_celeb,@bengreenfield,Barefoot Strong: Unlock the Secrets to Movement Longevity with @Doctor_Legs - all new episode for all the barefoot… https://t.co/74YjliSlDu +06/08/2018,Sports_celeb,@bengreenfield,"@LianneLlw Looks interesting, but haven't tried it... thanks for sharing!" +06/08/2018,Sports_celeb,@bengreenfield,@ironblood247 https://t.co/zpv2OdCNyn Can you call this into the podcast? Thanks man! +06/08/2018,Sports_celeb,@bengreenfield,Go here to sign up for more info or reserve a spot for European Detox Retreat @Robyn_Openshaw and I are planning! https://t.co/ZPBIJ8wuNl +06/08/2018,Sports_celeb,@bengreenfield,@Roodywasoffside Check out the @whoop: https://t.co/zm95jLYHs6 +06/08/2018,Sports_celeb,@bengreenfield,"@DrunkinYogi @tb12 It is somewhat close to that, yes! Similar idea of ""red light at night"", with some added detox b… https://t.co/QQ3iqamSst" +06/08/2018,Sports_celeb,@bengreenfield,"@ironblood247 Hey there, this is a great question for the podcast! Would you mind calling it in? https://t.co/ijk3kIITfE" +06/08/2018,Sports_celeb,@bengreenfield,Two Things the Apple Watch Gets Wrong https://t.co/6Ng1cZWaHh +06/08/2018,Sports_celeb,@bengreenfield,"Check out the latest from #ObstacleDominator - what do you think? Season Two; Episode #19: Faye Stenning, Spartan P… https://t.co/siX60dm6Sz" +06/08/2018,Sports_celeb,@bengreenfield,I just posted the full recipe for this wild caught salmon with crispy skin to https://t.co/jII7jxddzy https://t.co/eaulufJlPb +06/07/2018,Sports_celeb,@bengreenfield,"@Mindpump @spartanwim I'm like a little blue pill for your ears, I guess." +06/07/2018,Sports_celeb,@bengreenfield,"Nitrate supplementation how-to, the misunderstood noodle, eggcellent eggs and more! Brand new https://t.co/eGdjPMjkde" +06/07/2018,Sports_celeb,@bengreenfield,Be Barefoot Strong and Unlock the Secrets to Movement Longevity with @Doctor_Legs - new today on the podcast. https://t.co/7UKgtHB2So +06/07/2018,Sports_celeb,@bengreenfield,RT @Doctor_Legs: Listen to Dr Emily on Ben Greenfield's Podcast https://t.co/RSNwe0W1AV +06/07/2018,Sports_celeb,@bengreenfield,"Submit your Qs about health coaching- whether you want to be one, want to be a better one, or want to find one. I'l… https://t.co/GJPeGFh0eT" +06/07/2018,Sports_celeb,@bengreenfield,Submit ANY of your Qs about health & fitness coaching for me to answer on my upcoming Q&A episode- whether you want… https://t.co/5g8ETJZZjA +06/05/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 ...Telomeres are found at the ends of linear chromosomes in most organisms and their main ro… https://t.co/fuykO7jcev +06/05/2018,Sports_celeb,@bengreenfield,@havefunwiththe1 @tb12 From TeloYears: Mitochondria have circular genomes (like bacteria) and do not have telomeric… https://t.co/gPedEizXh9 +06/05/2018,Sports_celeb,@bengreenfield,"@CwCoady @joerogan 100-200g, all at night. Lower side of that on less active days." +06/05/2018,Sports_celeb,@bengreenfield,@RBaindourov Try posting in the Kion community. https://t.co/OeI9ZM5lZy +06/05/2018,Sports_celeb,@bengreenfield,@Jcumpian Check out @XeroShoes: https://t.co/Jl3Ao8WXb9 +06/05/2018,Sports_celeb,@bengreenfield,"@havefunwiththe1 @tb12 Not sure what mention of turmeric you're referring to, but yes, I have a podcast on this... https://t.co/Ww5tLFhAQG" +06/05/2018,Sports_celeb,@bengreenfield,@EvanMula @tradmedicinals https://t.co/K6bXmDVGgu +06/29/2018,Sports_celeb,@lancearmstrong,And a suitcase full of Z Cavariccis! https://t.co/pbKQL4bAOf +06/29/2018,Sports_celeb,@lancearmstrong,@Ronan_McGowan @jbhager @LeTour THEMOVE! +06/29/2018,Sports_celeb,@lancearmstrong,Going to be a long 3 weeks for them https://t.co/cT4IRFNrwR +06/29/2018,Sports_celeb,@lancearmstrong,"Happy birthday @ghincapie! My brother, it’s been a long and winding road since I first pulled the IROC-Z (aka White… https://t.co/oj77cujOFD" +06/27/2018,Sports_celeb,@lancearmstrong,One leaves and two come back! It’s been a whirlwind coupla days - started out early yesterday morning outta Austin… https://t.co/2yCp1kibZa +06/27/2018,Sports_celeb,@lancearmstrong,One leaves and two come back! It’s been a whirlwind coupla days - started out early yesterday morning outta Austin… https://t.co/rJpQdeTjcY +06/25/2018,Sports_celeb,@lancearmstrong,So great to finally connect with this absolute animal @chambers__mike. Dude hammers!! The fact that this connection… https://t.co/g9Y8K0qhKi +06/18/2018,Sports_celeb,@lancearmstrong,Post marathon last Saturday. The madman… https://t.co/JHsQNHEbl5 +06/16/2018,Sports_celeb,@lancearmstrong,Well that hurt like hell! Months ago the madman… https://t.co/GJlZrUEnMC +06/13/2018,Sports_celeb,@lancearmstrong,Called an audible on my morning ride and took… https://t.co/VZJFx8fiQx +06/13/2018,Sports_celeb,@lancearmstrong,Heading up to Leadville this weekend to support @byrnes22 as he leads the Go-Hards at the Leadville Marathon. More… https://t.co/MKSnzsF6p3 +06/12/2018,Sports_celeb,@lancearmstrong,Happy for my friend Coach Tommy Harmon being front and center enjoying the recent success @TexasBaseball. He helped… https://t.co/A2uj9Jj0sa +06/08/2018,Sports_celeb,@lancearmstrong,Always fun sūffering with this crazy… https://t.co/7Qsi6YGGTW +06/05/2018,Sports_celeb,@lancearmstrong,"Wait, where’d the years go? This little man… https://t.co/zkjGrRWyrb" +05/26/2018,Sports_celeb,@lancearmstrong,On ✈️ & following @giroditalia via live reports. Why is it “sad” when one of the favorites gets dropped? It’s not s… https://t.co/OwxumgAqIB +05/25/2018,Sports_celeb,@lancearmstrong,Banged out a quick THEMOVE podcast to discuss all from Stage 19 at the @giroditalia https://t.co/1uh1rT27wk https://t.co/Eky70RHt9H +05/24/2018,Sports_celeb,@lancearmstrong,Just got the awful news that my friend Shay Rishoni passed from ALS. He fought a brave fight and will be sorely mis… https://t.co/XyV4W8fTIX +05/10/2018,Sports_celeb,@lancearmstrong,"Well well, look who turns 10 today.. Happy 10th @mellowjohnnys and… https://t.co/vdLItyutXz" +05/10/2018,Sports_celeb,@lancearmstrong,Todd Sadow and his entire crew @Epicrides continue the great work. Just added @OzTrailsNWA. Can’t wait! https://t.co/4ZtmBFh4D1 +05/09/2018,Sports_celeb,@lancearmstrong,So I’m heading up to @oztrailsnwa this weekend to ride in the… https://t.co/8C7xk4GMuU +05/08/2018,Sports_celeb,@lancearmstrong,Back in Aūstin and back on the bike. We often talk about “road… https://t.co/eqtTDCYYw1 +05/07/2018,Sports_celeb,@lancearmstrong,That's a wrap from Israel and the @giroditalia THEMOVE is up now. https://t.co/Ut2b8SK8o6 https://t.co/VRSCWb2neR +05/05/2018,Sports_celeb,@lancearmstrong,Not sure @jbhager is impressed but the latest THEMOVE Giro podcast is up https://t.co/tqVoIS0cgQ https://t.co/gRcWgsD5yQ +04/28/2018,Sports_celeb,@lancearmstrong,Thanks grace.armstrongg for inviting me to ride with you this morning!! Love ya G!… https://t.co/q3onDxCXRW +04/28/2018,Sports_celeb,@lancearmstrong,No need. Anything for @Luke_armstrong7 and anything for @RiceUniversity/@RiceFootball https://t.co/HNVbVY4b8S +04/23/2018,Sports_celeb,@lancearmstrong,We close out the Classics with a @LiegeBastogneL Stages Podcast. We talk about the effort by @BobJungels my settlem… https://t.co/ap3lCKuLTM +04/21/2018,Sports_celeb,@lancearmstrong,"Ok but hang on a minute. I take this shit very seriously so I need to point out 2 very serious issues. One, the spe… https://t.co/nU3Gnn6gke" +04/21/2018,Sports_celeb,@lancearmstrong,In Houston for the riceowlsfootball Blue/Gray game with the big man luke_armstrong65 and his mom… https://t.co/Ho7Qe5JHz8 +04/19/2018,Sports_celeb,@lancearmstrong,FORWARD https://t.co/3iL7WAdSPY +04/16/2018,Sports_celeb,@lancearmstrong,"New Stages for Amstel Gold is up. We talk about my history with the race including 98 World Championships, the dyn… https://t.co/mZ9pmEmcuy" +04/15/2018,Sports_celeb,@lancearmstrong,Thanks to everyone who came out and braved the wind at the WEDŪ Texas HŪNDRED! Including this… https://t.co/XadylsYJUb +04/14/2018,Sports_celeb,@lancearmstrong,RT @Andylanger: The just-posted new edition of @TexasMonthly’s National Podcast Of Texas features my interview w/ @lancearmstrong. We talk… +04/12/2018,Sports_celeb,@lancearmstrong,"Had a great jam session last night with the EO chapter here in Austin. Talked about the past,… https://t.co/Ah0KlNPr0W" +04/11/2018,Sports_celeb,@lancearmstrong,"Woot woot! Hey riceuniversity, here comes your next student/athlete luke_armstrong65 ! So… https://t.co/mxnw99Axv0" +04/10/2018,Sports_celeb,@lancearmstrong,Truly loved my time in Adelaide. Great piece about a great city! https://t.co/nFkxAlHEZy +04/08/2018,Sports_celeb,@lancearmstrong,"Truly awful news. Words can’t express my deepest condolences to Michael Goolaerts’ family, teammates, and friends.… https://t.co/rfU4r1igbc" +04/08/2018,Sports_celeb,@lancearmstrong,Took Stages on the road to @hoteldomestique to talk Paris-Roubaix with @ghincapie download here… https://t.co/Mc9KNUuV7U +04/08/2018,Sports_celeb,@lancearmstrong,Paris Roubaix viewing party @hoteldomestique. Recording an episode of STAGES with @ghincapie and… https://t.co/i0xK7Zf9eg +04/07/2018,Sports_celeb,@lancearmstrong,One week to go til the @wedusport Texas HŪNDRED! Come join @ghincapie and I for the prettiest… https://t.co/67hBPioznG +04/05/2018,Sports_celeb,@lancearmstrong,"If you can't fly then run, if you can't run then walk, if you can't walk then crawl, but… https://t.co/uhz46fLB6b" +04/04/2018,Sports_celeb,@lancearmstrong,It’s actually now really OFFICIAL. Look who’s gonna be a riceowlsfootball !! Congrats… https://t.co/r5InVUuKaY +04/01/2018,Sports_celeb,@lancearmstrong,Watching rondevanvlaanderenofficial with @jbhager - 70k to go. Looking forward to an exciting… https://t.co/wFR7Io76cI +03/29/2018,Sports_celeb,@lancearmstrong,@theamandabatty TMI homey +03/29/2018,Sports_celeb,@lancearmstrong,The lastest Forward is up w @michaelshermer I had to do my homework for this one. Shermer was in town to promote hi… https://t.co/ci22FfAuTy +03/28/2018,Sports_celeb,@lancearmstrong,My old friend @garynewkirk is digitizing his entire catalogue and sent me along some of these… https://t.co/LAxVxxZGpB +03/26/2018,Sports_celeb,@lancearmstrong,Thanks pgatour for having us down to the dellmatchplay! Inspiring watching these guys play in… https://t.co/yWiKyuGWIG +03/19/2018,Sports_celeb,@lancearmstrong,"RT @MayorAdler: Be aware of your surroundings. Pay close attention to any suspicious items whether it be a package, a bag, a backpack, or a…" +03/19/2018,Sports_celeb,@lancearmstrong,The YUM alert just went off! Back in #ATX to find the new @honeystinger snack bar has arrived!… https://t.co/ZLx3IFibCA +03/17/2018,Sports_celeb,@lancearmstrong,"Solid 2018 Spring Break crew keeping us young and laughing... @ San José del Cabo, Baja… https://t.co/siLOudIfvq" +03/14/2018,Sports_celeb,@lancearmstrong,"Morning jog crew. @ New York, New York https://t.co/Txcw5jYpGJ" +03/13/2018,Sports_celeb,@lancearmstrong,"Spring Break 2018! Having the best time with these crazy Armstrong kids. And while I got ya, THE… https://t.co/EC9jHcLfhb" +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus My objection was that Schumi was exclusive to our team. He wasn’t. +03/12/2018,Sports_celeb,@lancearmstrong,"@TedNordhaus I would know. And you wouldn’t is all I’m saying but you’re stating something as fact. One tidbit, pre… https://t.co/XFZ3QPxoYl" +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus Also not true. Not sure what you’re going on about wrt cycling but before preaching too much I might do some fact checking +03/12/2018,Sports_celeb,@lancearmstrong,@TedNordhaus High 40’s? You sure about that? +03/08/2018,Sports_celeb,@lancearmstrong,"With my man Lucca Hincapie, future World Champ, aka ‘il iridato’. Hence the tee. For those who… https://t.co/3kjg5iOGpl" +03/08/2018,Sports_celeb,@lancearmstrong,@fcancer Cc @ScottRogowsky +03/08/2018,Sports_celeb,@lancearmstrong,Last day of riding (for me at least) at another successful @hoteldomestique “training camp”.… https://t.co/FlWaWtvD1K +03/06/2018,Sports_celeb,@lancearmstrong,We did a live Stages podcast back in 24 Hour town. We will post full show tomorrow. Sneak peek of the episode with… https://t.co/OVPAbOszEZ +03/05/2018,Sports_celeb,@lancearmstrong,"Latest Forward is up with @IDEAschools Founder Tom Torkelson. We talk education, hiring teachers and IDEA's 100% co… https://t.co/sUGA8POaP0" +03/02/2018,Sports_celeb,@lancearmstrong,"Great to hang with my old buddy steveaoki last night. This was our second Aoki jump and damn, I… https://t.co/bNLAKb32Uh" +03/01/2018,Sports_celeb,@lancearmstrong,"I know, I know. I look a lot better in the new @wedusport kit but let’s throw @ghincapie some love. This is a LIMIT… https://t.co/qFOwshAoli" +03/01/2018,Sports_celeb,@lancearmstrong,Incredible jam session @onnit today. My body has been feeling a little beat up lately (tons of… https://t.co/52LHwCv7t2 +02/28/2018,Sports_celeb,@lancearmstrong,New Stages is live with the 2018 season preview. @jbhager and I discuss what races we will be covering this year.… https://t.co/FXKrbDBuzv +02/28/2018,Sports_celeb,@lancearmstrong,Congrats to my friend and the uber talented @RyanHoliday on his new book CONSPIRACY. Great book reviews are hard to… https://t.co/d2MW4OHQ9J +02/28/2018,Sports_celeb,@lancearmstrong,.@jbhager and I return with a new Stages tomorrow. We preview the 2018 cycling season and some races we will cover. https://t.co/zrxb68wM0v +02/27/2018,Sports_celeb,@lancearmstrong,Our 24 Hours in the Old Pueblo kit is up for sale. @hincapiesports kit in both men's and women's. It will be for sa… https://t.co/sfmBLJsyuQ +02/26/2018,Sports_celeb,@lancearmstrong,New Forward is up with @miakhalifa Thank you for agreeing to discuss parts of your life that you have never done pu… https://t.co/cpJv2DEhjK +02/23/2018,Sports_celeb,@lancearmstrong,New Forward with @miakhalifa premieres on Monday. Here's a clip: https://t.co/bm4Xqi5lyE +02/23/2018,Sports_celeb,@lancearmstrong,Don’t usually tweet out press I’ve done but I thoroughly enjoyed jamming with Steve and Joe from @TheOuterLine. Sma… https://t.co/BgH0vqHTe7 +02/22/2018,Sports_celeb,@lancearmstrong,Hey y’all - Happy Margarita Day!! I get asked almost daily on how to make the world famous… https://t.co/HDUJqL9sv7 +02/20/2018,Sports_celeb,@lancearmstrong,@Unseendoc Just watched UNSEEN on plane to nyc. Speechless. Well done. +02/20/2018,Sports_celeb,@lancearmstrong,Special opportunity to tour San Quentin and talk with the guys from @TLM We taped a Forward after the tour. We talk… https://t.co/5XCNLg74Fl +02/20/2018,Sports_celeb,@lancearmstrong,"ATTENTION ALL MY FELLOW CYCLISTS 🚴‍♂️ . +••• +The sport we are so passionate about, dedicating… https://t.co/W5PXVgzUCl" +02/18/2018,Sports_celeb,@lancearmstrong,Love breaking it down with @dylancasey and @ghincapie ! @ 24 Hour Town https://t.co/zORIbIsBel +02/17/2018,Sports_celeb,@lancearmstrong,Here we go again for another @epicrides #24hop! So the pre ride was probably not the best idea… https://t.co/J434ydKxsh +02/16/2018,Sports_celeb,@lancearmstrong,"Well, after promising ourselves we’d NEVER do it again, here we go again for another @epicrides… https://t.co/gee8Rq7MB6" +02/16/2018,Sports_celeb,@lancearmstrong,A few weeks ago I was fortunate to get a tour of San Quentin prison and talk to the guys at @TLM After the tour I t… https://t.co/cENBkT4dvy +02/13/2018,Sports_celeb,@lancearmstrong,Watching the @NBCOlympics and hearing @MillerBode call the alpine skiing. He told me here ⬇️ he was gonna call it a… https://t.co/i15qysg2MU +02/12/2018,Sports_celeb,@lancearmstrong,"The Forward is up with @vanessagrigor Topical discussion about MeToo, her new book Blurred Lines and sexual consent… https://t.co/7djJCNQRDT" +02/12/2018,Sports_celeb,@lancearmstrong,In the past 10 years I’ve seen @mellowjohnnys schwag in lots of interesting places. The hits keep comin’.. https://t.co/rDBnXlV9dr +02/12/2018,Sports_celeb,@lancearmstrong,Happy birthday to the best mom ever!! Spent the weekend up in my ol’ stomping grounds.… https://t.co/wdpj9xOumh +02/09/2018,Sports_celeb,@lancearmstrong,"Coming Monday on The Forward @vanessagrigor We talk about her new book Blurred Lines: Rethinking Sex, Power & Conse… https://t.co/3JVWcVRJTv" +02/05/2018,Sports_celeb,@lancearmstrong,"A new Forward is up with @perryfarrell We talk about the time Clear Channel killed a @lollapalooza comeback, his tr… https://t.co/O2RiKn6nmm" +02/03/2018,Sports_celeb,@lancearmstrong,Coming soon a collab between @mellowjohnnys and @rapha. #Raphacustom https://t.co/GlKJigJwQ9 +02/03/2018,Sports_celeb,@lancearmstrong,Ditto! He was one of the most influential figures in American cycling. Heart of gold and will be sorely missed. RIP… https://t.co/9bHpKISy7i +02/02/2018,Sports_celeb,@lancearmstrong,Up next on The Forward is @perryfarrell Full episode comes out Monday. Thanks Perry. #theforward https://t.co/Fx3Vm5DiD9 +02/02/2018,Sports_celeb,@lancearmstrong,"Got absolutely destroyed by @john_wolf in the gym yesterday. Shoulda slept in. Nah, hell no.… https://t.co/mnhugBT5e2" +01/30/2018,Sports_celeb,@lancearmstrong,"Indeed we did! And hey, at least @WillieNelson picked up! https://t.co/zodpHYe2IA" +01/30/2018,Sports_celeb,@lancearmstrong,😂😂 https://t.co/1V0a4qZLWc +01/30/2018,Sports_celeb,@lancearmstrong,RT @PhilKeoghan: By @The_Demand_Film #Awardwinning #documentary #LeRide is back in #US theaters @CityofSaratoga #SanJose #CA #Denver @highl… +01/30/2018,Sports_celeb,@lancearmstrong,"Part two with @bryanfogel is up. We talk about China's ability to skirt the doping testing in Beijing, WADA's respo… https://t.co/10Upj4Cm2r" +01/29/2018,Sports_celeb,@lancearmstrong,"Part one of my Forward chat with @bryanfogel is up. We chat about his Oscar nominated film @IcarusNetflix, how he g… https://t.co/6QGE9R6f3L" +01/29/2018,Sports_celeb,@lancearmstrong,For those of y’all who think golf is stuffy and boring. Check this shit out - they are about to televise a LIVE threesome on @GolfChannel! +01/28/2018,Sports_celeb,@lancearmstrong,None taken AB! https://t.co/iS0ofaF4Pj +01/28/2018,Sports_celeb,@lancearmstrong,Thanks for stopping by! https://t.co/FufiSm4vSh +01/27/2018,Sports_celeb,@lancearmstrong,.@IcarusNetflix director @bryanfogel joins me Monday on The Forward. Fascinating story that we had to break into tw… https://t.co/aBYJKh35vQ +01/26/2018,Sports_celeb,@lancearmstrong,Thx @joerogan for having us. That shit was hilarious! @ Bass Concert Hall https://t.co/A5b0Ckgr3Y +01/24/2018,Sports_celeb,@lancearmstrong,RT @washingtonpost: Perspective: Cut the nonsense. Roger Clemens and Barry Bonds should be in the Hall of Fame. https://t.co/jFjkp73vfL +01/22/2018,Sports_celeb,@lancearmstrong,"My conversation with @aspenartmuseum CEO @heidizuckerman is up. We talk access to the arts, their decision to stic… https://t.co/vHi44WJrHb" +01/20/2018,Sports_celeb,@lancearmstrong,Incredible news! One of the best races of the year just got better. https://t.co/wFDn16Hz3O +01/20/2018,Sports_celeb,@lancearmstrong,@dylancasey 👍🏻👍🏻 +01/18/2018,Sports_celeb,@lancearmstrong,Classy gesture by @CoachBeardTTU and Tech. https://t.co/8xfqJ6dOvz +01/17/2018,Sports_celeb,@lancearmstrong,Hell to the Yeah. You’re a good dude JR. Pointers - no short socks and no social posts making other dudes looking b… https://t.co/2JpGvwX6F4 +01/17/2018,Sports_celeb,@lancearmstrong,RT @PETMpodcast: For y’all who are suffering from #NASCAR #NOD there’s content out there. Dale Jr was on @lancearmstrong podcast “The Forwa… +01/17/2018,Sports_celeb,@lancearmstrong,Thx J! We had fun doing the show. This is to be continued! https://t.co/JedzwXO9W1 +01/16/2018,Sports_celeb,@lancearmstrong,Lots of requests for this one. Happy to finally get @DaleJr on The Forward. We talk going from the car to the tv bo… https://t.co/OKgaYGLB0Y +01/14/2018,Sports_celeb,@lancearmstrong,Thanks Mary! https://t.co/JFW3hOzmHF +01/13/2018,Sports_celeb,@lancearmstrong,Thanks @DaleJr for coming on The Forward. Full episode on Monday. https://t.co/Elc1B8XQIB +01/10/2018,Sports_celeb,@lancearmstrong,The plan for 2018 is to video all the Forward and Stages podcasts. Here is our episode with @MillerBode https://t.co/uy5AQaGIhi +01/09/2018,Sports_celeb,@lancearmstrong,"Luke, so proud of you! I love you buddy! https://t.co/W6O2gM9cym" +01/09/2018,Sports_celeb,@lancearmstrong,Absolutely. There will be a 2 part series that’s my conversation with @bryanfogel. It will post on the STAGES chann… https://t.co/QclpG6iJ4Y +01/08/2018,Sports_celeb,@lancearmstrong,The Forward is back for 2018 and we are kicking it off with 6x Olympic medalist @MillerBode Bode was in Aspen over… https://t.co/0DHIz4VAFf +01/08/2018,Sports_celeb,@lancearmstrong,"To Isabelle, Grace, and Olivia - please watch this one thing. Love, Dad. https://t.co/cdUSx2cD5I" +01/06/2018,Sports_celeb,@lancearmstrong,Great piece Michael! And thanks Carolyn & Les for helping to create one of Austin’s crown jewels! https://t.co/ZuwNwmDofW +01/06/2018,Sports_celeb,@lancearmstrong,So there was this one night when @janesaddiction was sound checking (and covering @tompetty) in… https://t.co/TOP59WVg5T +01/06/2018,Sports_celeb,@lancearmstrong,"Tomorrow, I will be hosting a special reception and screening for the documentary @IcarusNetflix at @1Hotels in Bro… https://t.co/G1wQO2FeVy" +01/05/2018,Sports_celeb,@lancearmstrong,Thanks @jbhager and thanks to all that tuned in. Looking Forward to 2018 https://t.co/uAj8xdW4Pz +01/03/2018,Sports_celeb,@lancearmstrong,RT @THR: Exclusive: Lance Armstrong will host a reception for doping doc 'Icarus' https://t.co/XTh3NAj42s https://t.co/ePTMpgHDbE +01/02/2018,Sports_celeb,@lancearmstrong,"Dude, you ok? https://t.co/YEtfp9Fr9V" +12/27/2017,Sports_celeb,@lancearmstrong,Good jam session with @aubreymarcus today @onnit. Post Xmas and great to be back in gym. It’s… https://t.co/0mELMh9U0f +12/26/2017,Sports_celeb,@lancearmstrong,"After being asked roughly a 1000 times if I’ve seen @IcarusNetflix yet, I finally sat down to check it out. Holy he… https://t.co/1KVg6jrYdU" +12/25/2017,Sports_celeb,@lancearmstrong,Merry Christmas and Happy Holidays from all of us to all of you! Looking FORWARD to 2018! https://t.co/ncmCgbf1A6 +12/24/2017,Sports_celeb,@lancearmstrong,.@jbhager and I brought back a long time Austin tradition called Bikes for Kids. We were out yesterday distributing… https://t.co/7Jvv3e1mAB +12/22/2017,Sports_celeb,@lancearmstrong,Thanks Jeff! I’m looking forward to what 2018 brings to the show. https://t.co/Vp2Skk0whl +12/21/2017,Sports_celeb,@lancearmstrong,Research! https://t.co/FMflpox7QR +12/21/2017,Sports_celeb,@lancearmstrong,@SecondCaptains @ejwejw Meanwhile you fucking idiots have no idea what it’s like in the trenches do ya? +12/20/2017,Sports_celeb,@lancearmstrong,"RT @bethgmckenzie: Wow- huge change to the @ironmantri pro qualification for Kona in 2019. Specifically addresses equality, longevity, inj…" +12/20/2017,Sports_celeb,@lancearmstrong,"Since the Chris Froome news broke, I have heard from numerous media outlets requesting a comment. @wedusport CEO… https://t.co/XfafJPhftV" +12/20/2017,Sports_celeb,@lancearmstrong,@chontheroad @Livestrong4BAD Yep +12/20/2017,Sports_celeb,@lancearmstrong,Congrats Braden! https://t.co/EswDy9YPSl +12/20/2017,Sports_celeb,@lancearmstrong,Congrats @nakiawatson04 ! https://t.co/CPoQid2S28 +12/20/2017,Sports_celeb,@lancearmstrong,@jess @tdrobbo Congrats!! +12/20/2017,Sports_celeb,@lancearmstrong,We have a few bikes left for the Bikes for Kids drive. Nominate someone in the Austin area. Link here https://t.co/O6GysHbKtJ +12/20/2017,Sports_celeb,@lancearmstrong,I can’t wait to be 63 years old and give moronic interviews like this. Not. I also can’t wait for dipshit outlets l… https://t.co/05nriJOuQe +12/20/2017,Sports_celeb,@lancearmstrong,Our @wedusport gift guide picks for bike tires and a bike rack from @continentaltire & @SeaSucker full video… https://t.co/bz5jvKkliC +12/20/2017,Sports_celeb,@lancearmstrong,Yes. Did an episode of STAGES with @dylancasey on this. Will post ASAP. https://t.co/8HdnWKto68 +12/19/2017,Sports_celeb,@lancearmstrong,@matthewcbeaudin @TheNational @kexp Had them down for one and done but they just keep getting better. And better. And better. +12/18/2017,Sports_celeb,@lancearmstrong,Gift guide from @wedusport with our apparel picks from @hincapiesports @GORETEXna & @GiordanaCycling… https://t.co/kfbOoNWK9e +12/18/2017,Sports_celeb,@lancearmstrong,Great news! https://t.co/7L3EWaGrEL +12/18/2017,Sports_celeb,@lancearmstrong,"Hilarious conversation with comedian @natebargatze for the latest #Forward episode. We talked about Matt Lauer, Jay… https://t.co/MN4aaHLGHC" +12/17/2017,Sports_celeb,@lancearmstrong,A little sneak peek of tomorrow's Forward. My guest is comedian @natebargatze. He shares his thoughts on Vanderbilt… https://t.co/dxNQNcbszv +12/17/2017,Sports_celeb,@lancearmstrong,We put together some Holiday gift guide videos of products we are digging. Here's the first one about gadgets from… https://t.co/yfzFCcLfIQ +12/17/2017,Sports_celeb,@lancearmstrong,Well the @Westlake_Nation run has come to an end. Our Chaps lost 14 - 6 to Cy Fair @NRGParkFan… https://t.co/QGdZsrZGNU +12/16/2017,Sports_celeb,@lancearmstrong,DaveSTRONG!! https://t.co/fNBjMlXR24 +12/16/2017,Sports_celeb,@lancearmstrong,Thanks @jrart for hooking us up with your killer collab with @osgemeos and @pharrell. So dope.… https://t.co/YCI3DPVxU0 +12/15/2017,Sports_celeb,@lancearmstrong,Hey Austin @jbhager and I are bringing back Bikes for Kids this year. @scottsports has donated 20 bikes for us to d… https://t.co/wt1vWiGFE1 +12/14/2017,Sports_celeb,@lancearmstrong,"RT @sporza_koers: .@lancearmstrong komt als gast naar de Ronde van Vlaanderen + +https://t.co/r9oOPmjORP https://t.co/cXgN5KXtgu" +12/14/2017,Sports_celeb,@lancearmstrong,President Biden! https://t.co/ApitT2Oqp0 +12/13/2017,Sports_celeb,@lancearmstrong,Way to go Alabama! Let’s @BoBikesBama !! +12/11/2017,Sports_celeb,@lancearmstrong,Had a fascinating conversation with @Dakota_Meyer for the latest Forward episode. We talked about his @USMC servic… https://t.co/Zdp9zjhcgL +12/10/2017,Sports_celeb,@lancearmstrong,RT @LAontheRoad: Video homework for tomorrow's @lancearmstrong Forward episode https://t.co/QTecHBOGlF +12/10/2017,Sports_celeb,@lancearmstrong,En route to the Alamodome to watch @westlakenation vs Cibolo Steele - gonna be a great game! Doing some studying on… https://t.co/Q7BsybVEcy +12/08/2017,Sports_celeb,@lancearmstrong,I’ve been lovin’ getting back in the gym and wanted to especially thank @john_wolf and the whole… https://t.co/aufYc0Z32J +12/07/2017,Sports_celeb,@lancearmstrong,WTF?! Is it really snowing here in Austin? +12/07/2017,Sports_celeb,@lancearmstrong,Thanks to Eric over carved for sending over these cool WEDŪ and THE FORWARD PODCAST cases for my… https://t.co/paC98ZKUcm +12/06/2017,Sports_celeb,@lancearmstrong,Thanks on all fronts! See you in April. #WEDŪ https://t.co/lNO8Qsezf2 +12/06/2017,Sports_celeb,@lancearmstrong,RT @LizKreutz: Team #WEDŪ meeting at the HQ with @lancearmstrong @dylancasey @LAontheRoad @davebolch and in the computer @jbhager and @Nick… +12/05/2017,Sports_celeb,@lancearmstrong,Bi-weekly team meeting here wedusport HQ. Discussing an upcoming STAGES holiday gift guide… https://t.co/OA15XRYxKD +12/05/2017,Sports_celeb,@lancearmstrong,@Laura_Weislo @mrconde I don’t “workout” so I guess that’s the main difference +12/04/2017,Sports_celeb,@lancearmstrong,"Back with a new Forward with entrepreneur @noahkagan We talk about his employment at @facebook, starting his own co… https://t.co/NcCcMcaA30" +12/04/2017,Sports_celeb,@lancearmstrong,@mrconde I was a bit skeptical when they were first announced but the Apple Watch is incredible +12/04/2017,Sports_celeb,@lancearmstrong,"LMFAO! 😂😂 @ Old Enfield, Austin https://t.co/NGhFxOYNov" +12/04/2017,Sports_celeb,@lancearmstrong,We buy our Christmas 🎄 every year at the same spot. It’s just around the corner from our home… https://t.co/vcNX92Pq6q +12/04/2017,Sports_celeb,@lancearmstrong,We buy our Christmas 🎄 every year at the same spot. It’s just around the corner from our home… https://t.co/DDX1F0IW0V +12/02/2017,Sports_celeb,@lancearmstrong,"Immensely proud of my son Luke. What a fine young man he’s turned in to! Give it a listen, I think y’all will agree! https://t.co/YojQo8ZsPA" +12/02/2017,Sports_celeb,@lancearmstrong,Came down to South Texas to watch @luke_armstrong65 and his @westlakenation teammates win another playoff game. 70-… https://t.co/3FEz5fvdER +12/02/2017,Sports_celeb,@lancearmstrong,"""Twitter is the playground for fucking idiots"". And just like that, Noel Gallagher goes straight to the top of my w… https://t.co/oRm4zxs7qk" +12/01/2017,Sports_celeb,@lancearmstrong,Congrats Chief although Austin misses you! https://t.co/lJNDewPwKR +11/30/2017,Sports_celeb,@lancearmstrong,Morning run. Never forget. @ 9/11 Tribute Museum https://t.co/KX4syiORC3 +11/28/2017,Sports_celeb,@lancearmstrong,@eskinner @DavidWalshST Pay for journalists like this? https://t.co/lgdncuLdLq +11/27/2017,Sports_celeb,@lancearmstrong,@tobynunn @Onnit @AubreyMarcus So Dope Yo +11/24/2017,Sports_celeb,@lancearmstrong,Woot woot!! @Westlake_Nation on to the next round after beating Smithson Valley 51-31!! Go… https://t.co/HGbL3hJlRZ +11/23/2017,Sports_celeb,@lancearmstrong,"RT @TRS_tri: ""If we git that $150 million from @lancearmstrong, we all getting' a raise!"" https://t.co/r02ebLxjbf" +11/22/2017,Sports_celeb,@lancearmstrong,@mryerson I’m partial the ones @ZTejas. Eaten em for 25 yrs. +11/21/2017,Sports_celeb,@lancearmstrong,New @wedusport gloves by @jtracingusa Register for the HUNDRED by Friday to be eligible to win. Check out the video https://t.co/sQmF0Qm3Bz +11/20/2017,Sports_celeb,@lancearmstrong,RT @LAontheRoad: New feature starts on The Forward tomorrow. Send us your Survivor Stories and we will highlight a story of the week on eac… +11/20/2017,Sports_celeb,@lancearmstrong,Our girls are all grown up! Happy sweet 16 to isabelle.armstrong and grace.armstrongg! I’m so… https://t.co/JcvaG94Mgt +11/20/2017,Sports_celeb,@lancearmstrong,"Have @JoeNickPatoski on The Forward this week. Talk Dallas Cowboys, Selena, Stevie Ray Vaughan and Public Radio.… https://t.co/W1eCymgXHx" +11/16/2017,Sports_celeb,@lancearmstrong,2018 is looking to be an exciting year for WEDŪ. Thanks for blowing us up on just what the hell… https://t.co/SusW2V4i5X +11/14/2017,Sports_celeb,@lancearmstrong,"@HurleyG @UCI_cycling @DLappartient just fyi, he'd be ineligible too. Just sayin'." +11/14/2017,Sports_celeb,@lancearmstrong,"URGENT - cycling is going to need a shitload of people ASAP to manage teams, coach riders, drive in the caravan, ma… https://t.co/speLjMITVy" +11/13/2017,Sports_celeb,@lancearmstrong,"New Forward is up w @turkpipkin We talk @NobelityProject, opening for Rodney Dangerfield and his Book of the every… https://t.co/vNgpZkNKja" +11/11/2017,Sports_celeb,@lancearmstrong,So proud of my son @Luke_armstrong7 and the entire Westlake team. Undefeated! Bring on the playoffs and Go Chaps! https://t.co/zShnDyn1nx +11/11/2017,Sports_celeb,@lancearmstrong,"@Vincent_Nortier 2 thoughts - it’s depressing, and quite frankly pitiful, to watch someone be so desperate for atte… https://t.co/W0IFKnk11R" +11/10/2017,Sports_celeb,@lancearmstrong,"I️ never did like driving my car out to ride my bike... @ Bentonville, Arkansas https://t.co/XE07cs0J0d" +11/08/2017,Sports_celeb,@lancearmstrong,Sat down with my good buddy @AubreyMarcus for HIS podcast. Fantastic conversation that I think you will enjoy… https://t.co/MWq9Wplxjn +11/06/2017,Sports_celeb,@lancearmstrong,Forward is up w @PhilKeoghan of @AmazingRaceCBS We talk his film Le Ride. screening on 11/9 https://t.co/Lc8NbekAWC… https://t.co/S50JqWhSoh +11/04/2017,Sports_celeb,@lancearmstrong,"Jumped on the other side of the mic with @WheelerWalkerJr Talked music, Cancer, Willie and Merle.… https://t.co/XLVNgAMpRd" +11/02/2017,Sports_celeb,@lancearmstrong,The @mellowjohnnys Cycling Club enrollment is now open. Details here https://t.co/JKs47HZSCb +11/02/2017,Sports_celeb,@lancearmstrong,Saturday I’m heading to Nashville for the Brown Brothers Charity ride in honor of Chad William… https://t.co/SpgT7IDIek +10/30/2017,Sports_celeb,@lancearmstrong,"Co-founder of @GSDM @royspence is my Forward guest this week. We talk ads, lessons learned and Promised Land Projec… https://t.co/pxRgWaWX0k" +10/28/2017,Sports_celeb,@lancearmstrong,@maximus_hoggus I’m sure Chad Evans is a “fine man” +10/27/2017,Sports_celeb,@lancearmstrong,Going to screen the documentary Le Ride with @PhilKeoghan on 11/1 at @drafthouse Q&A with Phil after the film… https://t.co/p6VH8YrTlX +10/26/2017,Sports_celeb,@lancearmstrong,I’m in for a grand! https://t.co/xgxB8g3Wql +10/23/2017,Sports_celeb,@lancearmstrong,Latest Forward is up with @Larissa_Connors We talked about her being a bad ass mtn biker & a full time math teacher… https://t.co/XabmRTugwQ +10/22/2017,Sports_celeb,@lancearmstrong,@saundem Cc @jbhager - this is his biggest passion in life! +10/22/2017,Sports_celeb,@lancearmstrong,@antiraceradio2 @kristenworley @anthonyroberts Financial crimes? +10/20/2017,Sports_celeb,@lancearmstrong,Wassup Greenville?! Excited to be here for the @gfhincapie. Look forward to supporting the best… https://t.co/zkR3IdZ8jc +10/18/2017,Sports_celeb,@lancearmstrong,"@dylancasey @lan @ChristianVDV @ghincapie Y’all take the night shifts, I’ll handle the Le Mans start. Deal?" +06/29/2018,Sports_celeb,@tonyhawk,@CiaranDunbar @jayfrankparnell Yes +06/28/2018,Sports_celeb,@tonyhawk,Spent our day visiting a film set (rhymes with Shame Of Drones) & checking out Belfast skatepark. I sometimes get a… https://t.co/Zkdf9tYhA2 +06/26/2018,Sports_celeb,@tonyhawk,It's available on demand via @SIRIUSXM app https://t.co/B8uTISrcVQ +06/26/2018,Sports_celeb,@tonyhawk,"Thanks for the pic @ScobeyMK +(at @RAWcycles yesterday) https://t.co/yVrUOz2kC9" +06/25/2018,Sports_celeb,@tonyhawk,"RT @PBSSoCal: Legendary skateboard, and Southern California native @tonyhawk recently turned 50. To celebrate? 50 tricks that put him, and…" +06/25/2018,Sports_celeb,@tonyhawk,"Practicing my lines for Tokyo 2020 with Gav Coughlan & John O'Connor +Thanks to @RAWcycles for hosting us 🇮🇪🍀 +🎶: Wa… https://t.co/HxxI5jh2Hu" +06/22/2018,Sports_celeb,@tonyhawk,@Niall070115 You did +06/22/2018,Sports_celeb,@tonyhawk,Happy #goskateboarding [to your gate] day. You never saw this btw. https://t.co/Msw2BJxnGL +06/21/2018,Sports_celeb,@tonyhawk,@MichaelRapaport Confirmed +06/21/2018,Sports_celeb,@tonyhawk,"To clarify: my legal name is Anthony + +TSA agent checks my ID, looks at me, looks at ID, looks back at me quizzicall… https://t.co/a0pZ8HQ5GE" +06/20/2018,Sports_celeb,@tonyhawk,"Tour the new, expansive Linda Vista skatepark through the shredding of @andymacdonald: https://t.co/qy6vlI7X20 (via @RideChannel)" +06/18/2018,Sports_celeb,@tonyhawk,"""Hey dad, I ran into the gate with my car by accident. You should come out and look at it."" +Happy Dad-ambush day. https://t.co/5TJ6Poowhd" +06/16/2018,Sports_celeb,@tonyhawk,I just learned that nearly half of the US adult population has high blood pressure. Talking to your doctor & increa… https://t.co/bx37H7B3LK +06/15/2018,Sports_celeb,@tonyhawk,"Vertical pairs dancing with Shawn Hale for #birdhousesaturdays +#bladesofglory https://t.co/z8D2cvcSFM" +06/14/2018,Sports_celeb,@tonyhawk,@eddytheaxe @MonicaLewinsky I stand corrected +06/13/2018,Sports_celeb,@tonyhawk,@jeremyburge Yes! I mean... how do I see it? +06/13/2018,Sports_celeb,@tonyhawk,@airbender106 Anytime! We can plan something or apparently you can just call the airlines and ask them where I'm going next 🤨 +06/12/2018,Sports_celeb,@tonyhawk,"@BodMonAtkinson No hard feelings, I enjoyed our brief time together!" +06/12/2018,Sports_celeb,@tonyhawk,@MonicaLewinsky I haven't had that one (yet)! +06/12/2018,Sports_celeb,@tonyhawk,@BTHerman Love that place! +06/12/2018,Sports_celeb,@tonyhawk,"guy on escalator: Hey are you Tony Hawk? +me: yes +him: you still skate? +me: yes, quite often +him: but you're not tha… https://t.co/Lj1IsegSXO" +06/12/2018,Sports_celeb,@tonyhawk,"Montreal! We're coming to @jackalopefest with my vert ramp and the legendary Matt Hoffman. Info / tix: +https://t.co/3mySkPUjt3" +06/12/2018,Sports_celeb,@tonyhawk,"Thanks @colinmkennedy for digging up this clip of 6-year-old @rileyhawk666 's first kickflip +(from 411VM, Nov 1999) https://t.co/Dg2beq6DVU" +06/11/2018,Sports_celeb,@tonyhawk,"I was honored to be the 100th guest of @thenineclubshow! +Watch all 146 minutes of our deep dive interview if you da… https://t.co/pRxcaqaqa8" +06/11/2018,Sports_celeb,@tonyhawk,Detroit! I just hid my used skateboard behind the trash can in the lower right of this photo. Go now and reply with… https://t.co/gzjZ8ezq2z +06/09/2018,Sports_celeb,@tonyhawk,"Favorite moment of our Detroit demo today: Dan Mancina's warmup 50/50 (yes, he's blind) https://t.co/zzk64zQGu8" +06/08/2018,Sports_celeb,@tonyhawk,"Thank you Anthony Bourdain for your spirit of adventure, your appreciation of diverse cultures, your sense of value… https://t.co/rdJ1afCpQn" +06/07/2018,Sports_celeb,@tonyhawk,July 18 in Minneapolis: a red carpet event & benefit for the children of bmx icons Dave Mirra & Kevin Robinson. Auc… https://t.co/I7h6Qw48cl +06/06/2018,Sports_celeb,@tonyhawk,"It's so rad in The D +(@rileyhawk666 @aaronjawshomoki @SamarriaBrevard & Clive Dixon will be there too) https://t.co/mOR6haFRe4" +06/05/2018,Sports_celeb,@tonyhawk,"My brief career in ""park"" competition: Coastal Carnage, 2011 +McTwist The Shark is the new Jump The Shark https://t.co/kEfZbWFOhB" +06/03/2018,Sports_celeb,@tonyhawk,"Just left Birdseye Kitchen and I realized it might be the only place to get authentic Thai, Lao & Vietnamese cuisin… https://t.co/F3kGjqlTNF" +06/03/2018,Sports_celeb,@tonyhawk,@thephysicsgirl @rodneymullen You did great! Would love to have you explain vert skating in scientific terms... +06/03/2018,Sports_celeb,@tonyhawk,Watch @rodneymullen break down the science of an Impossible with help from @thephysicsgirl : https://t.co/7WFmrCKHhU +06/03/2018,Sports_celeb,@tonyhawk,It's a challenge raising boys in an era when @realjknoxville does his own stunts- and breaks his eye socket - for… https://t.co/vwkWYdjDxq +06/01/2018,Sports_celeb,@tonyhawk,"Happy 50th to the incomparable Mark Gonzales, a true pioneer of modern skating. Here we are a couple days ago in NY… https://t.co/dDvQhE8bUz" +06/01/2018,Sports_celeb,@tonyhawk,Detroit! Come watch this crew rip on June 9 while I attempt to rekindle my street skills. Thanks to Library Street… https://t.co/qd0KwgNxhG +05/31/2018,Sports_celeb,@tonyhawk,"Caught up with @nealthompson to share stories about the challenges of raising ""free-thinking"" boys who love skating… https://t.co/UCcP24c59e" +05/30/2018,Sports_celeb,@tonyhawk,@MaddieMaeDavis @RagebertVargas I was also joking. I'm old and I embrace it. But how much you wanna make a bet I ca… https://t.co/XJroKvlc6p +05/30/2018,Sports_celeb,@tonyhawk,"But... these ARE my glory days! +(I am a middle-aged dad though) https://t.co/Jb3sQ8KqSd" +05/30/2018,Sports_celeb,@tonyhawk,"I forgot how much fun it is to skate with #markgonzales. Here we are at Chelsea Piers this morning... +Our combined… https://t.co/iRQbFpJ90k" +05/24/2018,Sports_celeb,@tonyhawk,Special guest #JonHamm joins us for Demolition Radio this Saturday (5/26) 12p ET / 9a PT on @SiriusXM channel 103 -… https://t.co/Tpvl4OGg8G +05/24/2018,Sports_celeb,@tonyhawk,One hour left to bid on my skateboard used in the #50tricksat50 video: https://t.co/M0Gt1v5zeP +05/24/2018,Sports_celeb,@tonyhawk,"I got Funko Pop'd! +More info: https://t.co/FJdsMHqjBJ https://t.co/hLPQKwO96q" +05/23/2018,Sports_celeb,@tonyhawk,"June 2009: I went to the White House for Father's Day event & skated around a bit. Some pundits got upset, saying i… https://t.co/F8QPJqmx6z" +05/21/2018,Sports_celeb,@tonyhawk,"My board from #50tricksat50 is still available, portion of proceeds go to @THF . You can probably feel my exhaustio… https://t.co/AUbqcyba3q" +05/19/2018,Sports_celeb,@tonyhawk,The @rileyhawk666 x @myMotorhead collab by @LakaiLTD is now available at https://t.co/3LiS5TUaDy ♠ https://t.co/Dl7M0ONHtT +05/18/2018,Sports_celeb,@tonyhawk,"We got a sneak preview of @knottsberryfarm's new ""Hangtime"" coaster last night. It was like dropping in on over-ver… https://t.co/iy28je9MZ9" +05/18/2018,Sports_celeb,@tonyhawk,"Spoiler alert: my #50tricksat50 video was not shot all in one day... +I'm auctioning one of the two skateboards I us… https://t.co/S8dpcVZGsL" +05/17/2018,Sports_celeb,@tonyhawk,Getting so(rta) pitted at #wslsurfranch alongside Eddie Vedder @kellyslater & @shaunwhite. Thanks to @wsl &… https://t.co/eoNj61MrQU +05/17/2018,Sports_celeb,@tonyhawk,"Showing off my new teeth in 1982 +(they didn't last long) https://t.co/eeL1vYVL2w" +05/17/2018,Sports_celeb,@tonyhawk,I still think this all might have been a dream... https://t.co/cl2ylXTRGw +05/15/2018,Sports_celeb,@tonyhawk,"Thanks to @_TWDY_ for this 10th anniversary show to benefit @THF! +Details: @BellyUpMusic, June 18. +GA tickets sta… https://t.co/tw2UfSW524" +05/14/2018,Sports_celeb,@tonyhawk,"It was indeed, and your cake was the icing on the... er, you know what I mean. https://t.co/GswIa7d1Ed" +05/14/2018,Sports_celeb,@tonyhawk,"Thanks to @skateistan and and the kids at their Johannesburg school for this sweet message, and congratulations on… https://t.co/H7eLLZmGMx" +05/14/2018,Sports_celeb,@tonyhawk,"If you watched my #50tricksat50 video and noticed the 720 mishap, here's what [literally] went down that day. You'd… https://t.co/HRnJ9ajMkk" +05/13/2018,Sports_celeb,@tonyhawk,My mom taught me to believe in myself & the value of perseverance. She was a teacher for decades & received her doc… https://t.co/2hNDTkDTYM +05/12/2018,Sports_celeb,@tonyhawk,Thanks for documenting this once-in-a-lifetime experience yesterday @toddglaser! Getting my first backside barrel w… https://t.co/Fx4kgzW0ca +05/12/2018,Sports_celeb,@tonyhawk,"Here’s that #50tricksat50 video thing I promised. Thanks for all of the support over the decades, but I’m not done… https://t.co/JcAe2mPfoB" +05/12/2018,Sports_celeb,@tonyhawk,@withwhatever @RideChannel You know it +05/12/2018,Sports_celeb,@tonyhawk,My early birthday gift: getting #sopitted with this crew. ⚙💦🏄 @kswaveco @wsl #evenflow 🎂 https://t.co/ukcJQWei0f +05/11/2018,Sports_celeb,@tonyhawk,"I'm almost 50. I never imagined being able to skate at this age, or that anyone would still care if I do. To celebr… https://t.co/hNEHoCqcb3" +05/10/2018,Sports_celeb,@tonyhawk,And to think I was YOUR stunt double... Why didn't you ever teach me this? https://t.co/otoudr3yrV +05/10/2018,Sports_celeb,@tonyhawk,@jazzblasterr @plastcfl0wers Happy Birthday! Sorry for the delay; I wasn't on Twitter yesterday (for shame) +05/10/2018,Sports_celeb,@tonyhawk,"RT @TimMarcin: I talked with @tonyhawk about turning 50, his career in skating and being on The Simpsons. (Oh, and also fans wanting to sha…" +05/08/2018,Sports_celeb,@tonyhawk,@that1_shyguy This would be me Tweeting at you +05/06/2018,Sports_celeb,@tonyhawk,"@angeInews Yes, as long as you proofread it." +05/06/2018,Sports_celeb,@tonyhawk,"@skrongmeat_ HAPPY BIRTHDAY! 🎈🎉🎂 +(I expect the same next weekend)" +05/05/2018,Sports_celeb,@tonyhawk,"Here’s a trick that I was unable to recreate in my upcoming #50tricksat50 video: fast-plant McTwist. +Edit: here’s… https://t.co/0Q2HtJkDJe" +05/04/2018,Sports_celeb,@tonyhawk,Not sure how we got all these A-Listers to come on Demolition Radio recently but I’m not complaining. Hear our inte… https://t.co/rlbgWJhG2S +05/03/2018,Sports_celeb,@tonyhawk,I’ve been busy lately documenting 50 tricks that I’ve developed over the years for a new video. It’s been exhaustin… https://t.co/B2nyT6PcnG +04/30/2018,Sports_celeb,@tonyhawk,Today we brought supporters of @THF to Hilltop Skatepark to show them one of the 588 parks that we've helped create… https://t.co/DmgpvJtENu +04/28/2018,Sports_celeb,@tonyhawk,"Took this headshot in 1986 and never felt the need to update it. +📷: @jgrantbrittain https://t.co/bZjMx8XZmd" +04/27/2018,Sports_celeb,@tonyhawk,Hear my Demolition Radio interview with masterful chef @MVoltaggio now: @SIRIUSXM channel 103 (on demand)… https://t.co/Qr6C2Mdrel +04/27/2018,Sports_celeb,@tonyhawk,RT @VG247: We spoke to @tonyhawk and Neversoft about the fascinating story behind the creation of Tony Hawk's Pro Skater. https://t.co/eYVw… +04/26/2018,Sports_celeb,@tonyhawk,kinda jealous of my son's collab... https://t.co/J6A6IAXAYX +04/26/2018,Sports_celeb,@tonyhawk,There is really nobody more qualified... https://t.co/y0rvZw6LDV +04/26/2018,Sports_celeb,@tonyhawk,"When @WayneBrady says kickflip, you better kickflip. +Primo anxiety level: 📈 +(from @cwwhoseline) https://t.co/hXJWBv8XHz" +04/25/2018,Sports_celeb,@tonyhawk,This is one of the best films of 2018. Go see it ASAP. https://t.co/6ADZSudREF +04/25/2018,Sports_celeb,@tonyhawk,This version of @Millencolin’s “No Cigar” by @AdamFrenchUK is the acoustic cover that THPS fans needed in 2018: https://t.co/C24X5ovHEg +04/25/2018,Sports_celeb,@tonyhawk,Hear a new Demolition Radio this Saturday April 28th at Noon ET / 9am PT featuring the prolific @JuddApatow on FACT… https://t.co/2neDRbDG8B +04/24/2018,Sports_celeb,@tonyhawk,The moving documentary @MindingGapFilm about three skaters from Illinois escaping their volatile families is playin… https://t.co/y3LvsTGvQ3 +04/24/2018,Sports_celeb,@tonyhawk,"RT @LagunaBeachUSD: Check out this video @tonyhawk and our friends at @LagunaBeachPD put together to launch the anti-bullying campaign, It…" +04/23/2018,Sports_celeb,@tonyhawk,"I sat down with @ArianFoster recently for his ""Now What"" Podcast and we had a blast: +https://t.co/vzonxIVmPi +Thanks for including me!" +04/21/2018,Sports_celeb,@tonyhawk,"Thanks for all the laughs, generosity and heartfelt support, @VerneTroyer; I will always be a big fan, and it was a… https://t.co/20PPhPUhv6" +04/21/2018,Sports_celeb,@tonyhawk,June 18 at @BellyUpMusic! https://t.co/Jtv1xvTN4N +04/21/2018,Sports_celeb,@tonyhawk,"Nearly 30 years after the original #HELLofaParadise miniramp event in Hawaii, @thrashermag has rebuilt the ramp on… https://t.co/XUQLgw0hlq" +04/20/2018,Sports_celeb,@tonyhawk,"Hear @Lizziearmanto muse about the Olympics, being a reluctant role model and teaching girls in India to skate on t… https://t.co/Rq4TyAZXlO" +04/20/2018,Sports_celeb,@tonyhawk,Alison Moyet killing the mistaken identity game: https://t.co/2bDxNoAt1i +04/20/2018,Sports_celeb,@tonyhawk,"Pizzey Park, Gold Coast, 1989 #straya +📷:? https://t.co/Q3M4Na4MFm" +04/18/2018,Sports_celeb,@tonyhawk,Thanks for the unforgettable dinner last night @bflay @gatonyc1 https://t.co/mMG9oWy952 +04/17/2018,Sports_celeb,@tonyhawk,Update: I was found 10 mins later (check Insta story) +04/17/2018,Sports_celeb,@tonyhawk,I'm currently skating the streets of NYC on my way to a meeting. First person to see me and ask for my skateboard c… https://t.co/H5Wb7k9lle +04/17/2018,Sports_celeb,@tonyhawk,"My television debut: as ""Skateboard Johnny"" on Captain Kangaroo (1981) +This song still haunts me btw https://t.co/G3rvnqLazo" +04/16/2018,Sports_celeb,@tonyhawk,A clean-ish 900 (at @WoodwardCamp during ESPN Gigantic Skatepark Tour) with moral support from @buckylasek &… https://t.co/9nByB8gn2W +04/16/2018,Sports_celeb,@tonyhawk,"Woman on plane retrieving her luggage in the overhead: +""Who's skateboard is this? It's blocking my bag"" +me: that's… https://t.co/C0D92hPJVh" +04/15/2018,Sports_celeb,@tonyhawk,Thanks @MotoAmerica1 for hosting our synchronized skating today. https://t.co/zetMFv8oWK +04/14/2018,Sports_celeb,@tonyhawk,"Just experienced 160mph on a motorcycle thanks to @ChrisUlrich18 & @MotoAmerica1... +best rollercoaster ride ever.… https://t.co/iToCoIYcpZ" +04/13/2018,Sports_celeb,@tonyhawk,See you soon ATL! We are coming with an epic vert crew. https://t.co/DkfwrE05gb +04/13/2018,Sports_celeb,@tonyhawk,I have seen the devastating effects of dementia on my mom so I cannot stress enough the importance of supporting… https://t.co/inAVcbGjwv +04/12/2018,Sports_celeb,@tonyhawk,"me: polo, anyone? +horse: nah https://t.co/Sn5bMdXAsx" +04/12/2018,Sports_celeb,@tonyhawk,Happy 10th anniversary @skateistan! Thank you for empowering youth in the most challenged areas through skateboardi… https://t.co/d2i1L088YL +04/10/2018,Sports_celeb,@tonyhawk,"Jump ramping on 53rd Street for +The Late Show with David Letterman (2003) https://t.co/vFBBh1vMK4" +04/10/2018,Sports_celeb,@tonyhawk,ATL on Sat! https://t.co/3QI7K7vwEg +04/09/2018,Sports_celeb,@tonyhawk,A short profile on [then] 7-year-old @rileyhawk666 from ESPN Gigantic Skatepark Tour 2000 feat. @buckylasek… https://t.co/SuPJhqd7Hr +04/09/2018,Sports_celeb,@tonyhawk,"We won! (according to @nytimes) +https://t.co/eYfNg4EsIv +...but I still think we need more skateparks across the globe." +04/06/2018,Sports_celeb,@tonyhawk,"Highly recommended if you're into good, live music... https://t.co/wmdhsHgVqX" +04/06/2018,Sports_celeb,@tonyhawk,Back when Tommy Carroll taught me Roast Beef axle stalls and then he removed his eyes so I could get a closer look.… https://t.co/EmvjX8ElwR +04/06/2018,Sports_celeb,@tonyhawk,RT @MotoAmerica1: What's up #Atlanta?! @tonyhawk will be joining us next week for the @suzukicycles Championship at @RoadAtlanta. He'll per… +04/06/2018,Sports_celeb,@tonyhawk,"I am beyond thrilled to bring this legendary crew: @andymacdonald Elliot Sloan, Kevin Staab, @jordynbarratt & bmx i… https://t.co/hZj7vx3C5o" +04/05/2018,Sports_celeb,@tonyhawk,We found the perfect date night movie (depending on your date). #aquietplace is SO good btw. Congrats… https://t.co/OqOGJxTRje +04/04/2018,Sports_celeb,@tonyhawk,@briamgilbert Thanks! +04/04/2018,Sports_celeb,@tonyhawk,Quick session at Street Dome with @corbinharris Clint Walker & @MikeEscamilla on our way through Denmark during… https://t.co/9JvvJUDZQh +04/01/2018,Sports_celeb,@tonyhawk,RT @Beats1: Mike D welcomes skate legend @tonyhawk to the Echo Chamber to talk about music that has influenced his life. This is a must lis… +04/01/2018,Sports_celeb,@tonyhawk,"Some pics from our recent adventures in Iceland +(my kids took the best ones) https://t.co/C0qV3frzUY" +04/01/2018,Sports_celeb,@tonyhawk,"@niallstaines That’s my “international” collection area. Right above are decks from Australia, South Africa and Mexico. Thanks again" +03/31/2018,Sports_celeb,@tonyhawk,"I'll be on The Echo Chamber with Mike D (Beats 1 Radio) today at noon pacific, 3pm Eastern. Hear us [literally] wax… https://t.co/0CQprwDtxv" +03/29/2018,Sports_celeb,@tonyhawk,"Here's a 25% discount code at https://t.co/3LiS5TUaDy (good now through 3/31): use the code ""Rileysdad18"" when chec… https://t.co/a4ULqoTECy" +03/26/2018,Sports_celeb,@tonyhawk,"Yesterday we said goodbye to our dear friend Jen, who left behind a legacy of love and light in the form of three b… https://t.co/yuhyd5798p" +03/23/2018,Sports_celeb,@tonyhawk,"At my gate, waiting for a flight: +Guy with 8x10's & pen approaches, asks me to sign them +Me: How did you get past s… https://t.co/zN5l9MvgKQ" +03/23/2018,Sports_celeb,@tonyhawk,"Cool story... I mean, my story was actually cool but you missed it. https://t.co/TlGOrqTp5i" +03/23/2018,Sports_celeb,@tonyhawk,"Feel good flight of the summer +(with @latestQOTSA) https://t.co/O7PXN3WLoW" +03/23/2018,Sports_celeb,@tonyhawk,There was a time in skateboarding when making eye contact with a photographer was a thing. I'm guessing this was ta… https://t.co/wTmpBMIL0q +03/21/2018,Sports_celeb,@tonyhawk,This was the scariest - and most challenging - doubles trick @andymacdonald & I have done. And I never want to do i… https://t.co/zg2iJll6UJ +03/19/2018,Sports_celeb,@tonyhawk,"Calling my dad for a ride home from DMSR skatepark in 1982. +He probably wasn't home from the look on my face. This… https://t.co/swqCHmY5vo" +03/16/2018,Sports_celeb,@tonyhawk,"Thanks for the invite @MailChimp! +Best (literal) board room ever... https://t.co/if5HK1cMVV" +03/15/2018,Sports_celeb,@tonyhawk,"Hey now, wooo look at that... Thomas Middleditch of @SiliconHBO +will be on Demolition Radio this Saturday -… https://t.co/nzNeCREeW3" +03/12/2018,Sports_celeb,@tonyhawk,"Lien air, Palmdale, 1981 +Pretty sure I was trying to make eye contact with Neil but the face was probably unintenti… https://t.co/V5VTY1qOFS" +03/12/2018,Sports_celeb,@tonyhawk,Please consider voting for Sky Brown as #LaureusSportingMoment of the Month. She already has my vote for obvious re… https://t.co/61qVzsK2K1 +03/12/2018,Sports_celeb,@tonyhawk,"If we can get bungee jumping back in X Games, the cycle will be complete. https://t.co/N9jYk8mLpn" +03/11/2018,Sports_celeb,@tonyhawk,"I was, and it was excellent. +Believe the hype. https://t.co/hrTqbH3x2j" +03/09/2018,Sports_celeb,@tonyhawk,"This is the ultimate example on how NOT to drop in on vert, shown in glorious 4k slow mo. Kudos to Dan. https://t.co/fz02FgFpRJ" +03/08/2018,Sports_celeb,@tonyhawk,Thanks Summer! https://t.co/d63BrRLEpl +03/08/2018,Sports_celeb,@tonyhawk,Tonight's demo playlist (so you can be there with us in spirit): https://t.co/tQFGK7wdgQ +03/08/2018,Sports_celeb,@tonyhawk,I came to #X4Summit18 in hopes of getting a pic with @Lin_Manuel... and I was not throwing away my shot. https://t.co/spfVS3Xbf4 +03/08/2018,Sports_celeb,@tonyhawk,"Congratulations to Monica Acedo from Mexico City, winner of the @AdobeStudents #board4better contest! +Thanks for c… https://t.co/BjA2TCdOCg" +03/03/2018,Sports_celeb,@tonyhawk,"This was taken last week... or 30 years ago; I can’t remember any more, but I’m guessing 1988. +Of note: Stubbies, C… https://t.co/yQuRc2dGXf" +03/02/2018,Sports_celeb,@tonyhawk,Seeing @lizziearmanto & Atita Verghese teaching girls to skate in India is what it’s all about. https://t.co/coXBHtfacK +03/02/2018,Sports_celeb,@tonyhawk,Hear my interview with the talented & prolific Alison Mosshart of @TheKills on Demolition Radio this Saturday at No… https://t.co/dpDq9THZhc +03/01/2018,Sports_celeb,@tonyhawk,"Great Falls MT 2006 +(Secret Skatepark Tour) --> Hollywood, CA 2018 +(Adaptation x Maxfield) +photos:… https://t.co/HaWr9QNDgQ" +02/28/2018,Sports_celeb,@tonyhawk,"Intel commercial from 2005 @JohnCleese and @Seal. If you think it's weird that we're all sitting in laps, it was ev… https://t.co/dU6vyawwMZ" +02/28/2018,Sports_celeb,@tonyhawk,I don't normally ask for such things but our dear friends are going through the hardest time imaginable. Their swee… https://t.co/3wzfX14iuf +02/28/2018,Sports_celeb,@tonyhawk,To clear up a few things about THPS: I worked closely with Neversoft on our series to provide ideas & authenticity… https://t.co/1hBFhszliy +02/27/2018,Sports_celeb,@tonyhawk,@littleseizurez You have no idea... +02/26/2018,Sports_celeb,@tonyhawk,@Dan_Brenkert @BlakeOhBeKay I agree; it was glorious +02/26/2018,Sports_celeb,@tonyhawk,"To anyone asking me to 'remaster"" old games, or complaining about THPS servers being down: Activision owns the THPS… https://t.co/ONRSAk4pA5" +02/26/2018,Sports_celeb,@tonyhawk,"When things get hot, cool is all you got... 1985 Mountain Dew ad feat. #rayunderhill and me doing it Country Cool.… https://t.co/1aNk8qfRnx" +02/26/2018,Sports_celeb,@tonyhawk,Me at the end of the weekend https://t.co/PnzcssvtAc +02/24/2018,Sports_celeb,@tonyhawk,"@NathanLazarus3 @THF You saved the day! Glad to see you're doing so well. +FYI - I actually made it to Estonia a fe… https://t.co/9EKIBEV7Sg" +02/24/2018,Sports_celeb,@tonyhawk,"Back when @NathanLazarus3 helped win $175k for @THF on Are You Smarter Than a Fifth Grader? +...and then we named a… https://t.co/NicmiSbDn9" +02/24/2018,Sports_celeb,@tonyhawk,"@klbs88 Very cool, thank you!" +02/23/2018,Sports_celeb,@tonyhawk,"My stint as Lionel @damustacheman in the Loiter Squad Brigade +(feat. @tylerthecreator @ChrisPontius Taco Jasper &… https://t.co/dI3lOz3h0I" +02/20/2018,Sports_celeb,@tonyhawk,The skateboard I used at Bondi #bowlarama last weekend is now on @eBay if anyone is interested. Warning: the trucks… https://t.co/BdeqezS8ZO +02/20/2018,Sports_celeb,@tonyhawk,"I don’t want accolades; I just want to join this crew if they'll accept me + https://t.co/immzPDc7nM +(via @TimeOutLondon)" +02/20/2018,Sports_celeb,@tonyhawk,I just got back from Oz but @rileyhawk666 is heading there tomorrow for a short PETYR tour. Catch them at one of th… https://t.co/iJaTdosfCP +02/19/2018,Sports_celeb,@tonyhawk,"New and improved skateboard emoji. I sent @jeremyburge & @mindfad a photo of my actual board, so I'll take the blam… https://t.co/bVfKCBYpLO" +02/19/2018,Sports_celeb,@tonyhawk,The future is now: some clips of the other three winners of Bondi @bowl_a_rama: Tate Carew (juniors) @sabrenorris (… https://t.co/FAkBBqXjpt +02/17/2018,Sports_celeb,@tonyhawk,Bondi @BOWL_A_RAMA finals are today... so these stands will look very different this afternoon. You can watch live… https://t.co/3TdVxL8gaR +02/17/2018,Sports_celeb,@tonyhawk,Thanks for the aquatic hospitality! #ilovesydney https://t.co/695IrsHVBH +02/16/2018,Sports_celeb,@tonyhawk,The early bird gets the Madonna. Here I am warming up this morning for @BOWL_A_RAMA on Sunday. I promise to do more… https://t.co/LgaRk98uVP +02/14/2018,Sports_celeb,@tonyhawk,"How I made my 2nd million: +sitting for hours on end. +Thanks @united https://t.co/mkKVN1VQF8" +02/13/2018,Sports_celeb,@tonyhawk,Everything you wanted to know about a (the?) skateboard emoji but were too self-conscious to ask: https://t.co/Xycvy8941e +02/13/2018,Sports_celeb,@tonyhawk,"Frontside air over Jaws' crailslide earlier today. In other words: +I jumped the shark. GET IT?!?! #skaterdadjoke https://t.co/hABtjn4Xss" +02/13/2018,Sports_celeb,@tonyhawk,Skateboard terminology in #Tokyo2020 might have to be censored... https://t.co/Hza3SDGCZy +02/12/2018,Sports_celeb,@tonyhawk,One minute of goodies from my #birdhousesaturdays segment. Some of these tricks took 2-3 days of torment just to ma… https://t.co/nlF3nBCybQ +02/12/2018,Sports_celeb,@tonyhawk,"If you are watching Olympics without @Lesdoggg's commentary, then you're missing out on the true spirit of the games." +02/11/2018,Sports_celeb,@tonyhawk,My episode of Impact Theory with @TomBilyeu: https://t.co/8iAJM6zESz +02/11/2018,Sports_celeb,@tonyhawk,I have the sickest combos in this. https://t.co/UASmJTIEsF +02/10/2018,Sports_celeb,@tonyhawk,"The vert crew came out of the [literal] woodwork tonight for a screening of #EARLYMAN. +If you're a fan of Wallace… https://t.co/s5RPjSy4Kr" +02/09/2018,Sports_celeb,@tonyhawk,"Good to catch up with this crew last night. Congrats Bam & Nikki! +📷: @ryanhalub https://t.co/YeqI6Y2JEa" +02/09/2018,Sports_celeb,@tonyhawk,"My brief stint on Million Dollar Password (2008). I almost got Lynn to 50k but blew it on clues for ""Drugstore"" https://t.co/6rFzxehTKg" +02/08/2018,Sports_celeb,@tonyhawk,Hoping to help bring the skateboard emoji closer to 2018 than 1985... https://t.co/TIWWbGk1i2 +02/08/2018,Sports_celeb,@tonyhawk,"This was a blast, even though it took a few more tries than I anticipated. https://t.co/Gq6kC78hw8" +02/07/2018,Sports_celeb,@tonyhawk,This was only true in December. https://t.co/5cVqldKzZB +02/07/2018,Sports_celeb,@tonyhawk,"Bucky @buckylasek: “hey Jordyn, if Tony & I make Mctwists, then you gotta make that back lip you’ve been trying.”… https://t.co/ZU7MEKyftS" +02/05/2018,Sports_celeb,@tonyhawk,"NSA San Jose Miniramp Jam, 1991 +Squatting on a mini was my true crossover talent. #ponyhawk https://t.co/YuYRLjqrQE" +02/05/2018,Sports_celeb,@tonyhawk,"Thank you Scott Oster for the totally tubular session today. This was my version of a touchdown, btw. https://t.co/e1j4GBeufC" +02/03/2018,Sports_celeb,@tonyhawk,Bondi Brigade (as we prepare for @BOWL_A_RAMA): me @MikeMcGill_ Staab & @buckylasek yesterday https://t.co/XNzv5tD82I +02/02/2018,Sports_celeb,@tonyhawk,I'll be speaking at @Qualtrics #X4summit18 in Salt Lake City on March 8 followed by a vert demo that night. Join us… https://t.co/6LFiecr2ym +02/02/2018,Sports_celeb,@tonyhawk,"Focusing a board with my skull thanks to @CharlieOconnel & @MrJerryOC (The New Guy, 2002) https://t.co/Pp8CiNF7OF" +01/30/2018,Sports_celeb,@tonyhawk,"Oasis, 1979: ""ollie to hang-up"" which is now more appropriately known as a Disaster. +Also: Mr. Bill shirt https://t.co/YiK0dm5rKI" +01/28/2018,Sports_celeb,@tonyhawk,@realfriendsband I live in San Diego but hit me up if you're in the area +01/28/2018,Sports_celeb,@tonyhawk,"It was a blast hanging out with families from San Diego’s Ronald McDonald House. Having seen their work many times,… https://t.co/bed6FExbkS" +01/28/2018,Sports_celeb,@tonyhawk,@chrislivingstn Thanks for filling up my Gravel bags! +01/27/2018,Sports_celeb,@tonyhawk,"Happy Birthday @Lizziearmanto !!! +You can always count on our full support +📷: @sammullerpics https://t.co/HmaZYixPmS" +01/26/2018,Sports_celeb,@tonyhawk,"Just when I thought I might get the job commentating #Tokyo2020, this guy comes along and nails it. +(via… https://t.co/Pu9Ej8e7r2" +01/24/2018,Sports_celeb,@tonyhawk,A clip from back when I lost millions in endorsements for my Homie https://t.co/sr5rPwyk6P +01/23/2018,Sports_celeb,@tonyhawk,RT @ChineseTheatres: .@OriginalFunko founder Mike Becker and @TonyHawk at tonight’s Making Fun premiere. https://t.co/QDQIqsIJqm +01/22/2018,Sports_celeb,@tonyhawk,"My collaboration ""Hugman"" with @NathanSawaya is now on display in DTLA (if you can find it). Available for auction… https://t.co/CirdYowA1z" +01/21/2018,Sports_celeb,@tonyhawk,Going with the Flow(rider). This feels like skimming... until you fall & go through the rinse cycle https://t.co/9CtWFvymT5 +01/18/2018,Sports_celeb,@tonyhawk,"New year, new trick, same me https://t.co/A8QxaLlZ5x" +01/17/2018,Sports_celeb,@tonyhawk,Bird Men? https://t.co/wDNbcz6SS7 +01/17/2018,Sports_celeb,@tonyhawk,"It's great - and validating - to see these action sports stars nominated for @LaureusSport Awards among all the ""ma… https://t.co/1sVrk7A9tj" +01/16/2018,Sports_celeb,@tonyhawk,"RT @tunein: Skateboarding legend @TonyHawk opens up about his rise to stardom, building his business @Birdhouse and finding success in the…" +01/16/2018,Sports_celeb,@tonyhawk,"The 2018 Bondi @BOWL_A_RAMA is only one month away. +As The Dude says: ""I'll be there, man"" +Get tickets now so you c… https://t.co/TVLp8Fxb4i" +01/15/2018,Sports_celeb,@tonyhawk,"Current mood: shredding gnar +@MammothMountain https://t.co/B80mXi7FTR" +01/13/2018,Sports_celeb,@tonyhawk,New fav skater: Ruan Silva https://t.co/ED0ZoHpyjk +01/10/2018,Sports_celeb,@tonyhawk,"1997 Munster World Championships, Germany. Looking back now, this is probably the best I ever skated in competition… https://t.co/IIkMM7jE6U" +01/10/2018,Sports_celeb,@tonyhawk,"We got a brand new rose in town! +This homage of Ben, Clive, Lizzie & Jaws was originally shot for a @birdhouse ad,… https://t.co/KnNhaRDIyh" +01/09/2018,Sports_celeb,@tonyhawk,"SATURDAY at 3pm ET: hear @samjones of @OffCameraShow on Demolition Radio. He’s got great stories of perseverance, t… https://t.co/yyWFQinUYx" +01/09/2018,Sports_celeb,@tonyhawk,Thanks for the invite @Lefsetz! https://t.co/5d8IVPqCvz +06/29/2018,Sports_celeb,@RyanSheckler,💥 https://t.co/jEx6mVG8lZ +06/28/2018,Sports_celeb,@RyanSheckler,"RT @etnies: The Marana +NEW Summer colorways have arrived! +https://t.co/yWyd9bN66s https://t.co/WgyH4PQwrr" +06/27/2018,Sports_celeb,@RyanSheckler,Stoked how these turned out! New @ethika & @PlanBofficial decks available now on https://t.co/5u1SFV9I0y. https://t.co/8f5pHm9rt8 +06/22/2018,Sports_celeb,@RyanSheckler,"Beyond hyped to be skating again, still a long road but the progress is daily! The park is 👌🏻 @scsandlot 🎥… https://t.co/eCkFUX2b47" +06/21/2018,Sports_celeb,@RyanSheckler,"A little late on this today, but since it's the longest day of the year you still have time. Get out there & go SKA… https://t.co/L9TWLwqjC1" +06/18/2018,Sports_celeb,@RyanSheckler,👊 https://t.co/U0mjKBOyvm +06/17/2018,Sports_celeb,@RyanSheckler,Happy Father's Day @Poppa_Shecks ❤️ I love you dad and I am so thankful and blessed to have you! https://t.co/kwTl5RWFXp +06/14/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung @Fgustavoskt doubles at the @scsandlot 📽 @RyanSheckler #skateboarding #felipegustavo #trevormcclung #Pla… +06/12/2018,Sports_celeb,@RyanSheckler,This was a fun one! #etniesALBULM https://t.co/oW0V9qIIRY +06/11/2018,Sports_celeb,@RyanSheckler,Thank you to my boys! Had an incredible 26 hours at the @Palms 👌🏻 I love the new look and feel so much! We will be… https://t.co/61gW1ttHkv +06/09/2018,Sports_celeb,@RyanSheckler,Proud of this kid! 👊 https://t.co/A0UR1bPikq +06/07/2018,Sports_celeb,@RyanSheckler,#etniesALBUM https://t.co/32PW7sDVZA +06/05/2018,Sports_celeb,@RyanSheckler,Last call! 3 hours left #etniesalbum live https://t.co/rSmDHx4IwN https://t.co/IFogWv8rU9 +06/04/2018,Sports_celeb,@RyanSheckler,💥#etniesalbum video part available worldwide till midnight PST - Live 👉 https://t.co/rSmDHx4IwN https://t.co/dQJ6aw9EpA +06/04/2018,Sports_celeb,@RyanSheckler,Live till midnight tonight! #etniesalbum my full part with David Reyes. 👉 https://t.co/7MENQUnTmu https://t.co/Xb0s6GfoTP +06/04/2018,Sports_celeb,@RyanSheckler,#etniesalbum full video part with my dude @DavidReyes303 watch till midnight tonight! —> https://t.co/7MENQUnTmu https://t.co/1nsi25cc04 +06/04/2018,Sports_celeb,@RyanSheckler,What a great day! https://t.co/21FxUPwaEC +06/01/2018,Sports_celeb,@RyanSheckler,#FBF with @TheRock! 👍 https://t.co/cfI14WlgqE +05/31/2018,Sports_celeb,@RyanSheckler,That feeling of achievement shared by all. @K_grom_06's11ft drop in at the @Etnies Skatepark brought inspiration an… https://t.co/y4EU38I6z4 +05/30/2018,Sports_celeb,@RyanSheckler,Fun day training with the boss! @KenRoczen94 https://t.co/hBbDxDDtXw +05/28/2018,Sports_celeb,@RyanSheckler,Thankful for all the men and women who have served and are serving to protect our country. Today we honor you. 🇺🇸… https://t.co/Gz1QUfh9LP +05/25/2018,Sports_celeb,@RyanSheckler,This is the entire US @redbullskate crew - stoked to be part of it! ✌️ https://t.co/I8JzNN7qaz +05/18/2018,Sports_celeb,@RyanSheckler,Fun times filming for the #etniesalbum! Get the full video - available now on ITunes & DVD -https://t.co/e4LfB1Lt5f… https://t.co/77TxpZzN3S +05/17/2018,Sports_celeb,@RyanSheckler,Throwing it back to 2003! Who remembers Slam City Jam? Took home 1st place that year. https://t.co/r4rvGW2jxV +05/14/2018,Sports_celeb,@RyanSheckler,"RT @etnies: Broken board, no problem #ALBUMouttakes +@chrisjoslin_ in Japan a few years back... #etniesALBUM Available Now on DVD & Digital…" +05/11/2018,Sports_celeb,@RyanSheckler,Life is good. Making an impact in each others lives - that's what it's about. @SheckFoundation @oakley… https://t.co/1Uc27CoIXE +05/10/2018,Sports_celeb,@RyanSheckler,"This Saturday join me for @PlanBofficial Skate Day in Carlsbad, CA. #alganorteskatepak See you there! 12-4pm. https://t.co/MTrLn7UiUu" +05/07/2018,Sports_celeb,@RyanSheckler,"Still hyped on this weekend's Skate For A Cause event! A HUGE Thank you to everyone who came out from sponsors, ath… https://t.co/XVcmhor9MP" +05/07/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: Thank you @SheckFoundation for another amazing year. @chrisjoslin_ @williamseansheffey @trevormcclung #SkateForACause #B… +05/06/2018,Sports_celeb,@RyanSheckler,This photo sums up how epic yesterday was! @k_grom_06 this inspired me and thousands more!! Way to step up and cha… https://t.co/JVCt2O5b0c +05/05/2018,Sports_celeb,@RyanSheckler,Hope to see you out today! #SkateForACause #CincoDeMayo Bring the entire family for our carnival village & watch yo… https://t.co/VFQovUUxfV +05/04/2018,Sports_celeb,@RyanSheckler,Tomorrow calls for sunny skies! Join us at @EtniesSkatepark for the 9th Annual #SkateForACause! 10am-5pm Hope to se… https://t.co/wTo2NjhMob +05/02/2018,Sports_celeb,@RyanSheckler,I had a great time with @MrBojanglesFilm & @RockinKumaka on @fox5sandiego News this morning! #SkateForACause THIS S… https://t.co/WNGVrPZhJH +05/02/2018,Sports_celeb,@RyanSheckler,"Tune in this morning to catch me, @oskervoid and @k_grom_06 on @Fox5SanDiego! We will be going live around 8:15am P… https://t.co/Dn0LSusZhN" +05/01/2018,Sports_celeb,@RyanSheckler,Happy Birthday to the craziest mofo I know! I love you Shane Sheckler 💯🤘🏻 so proud of you my man! https://t.co/grRokxAF1s +04/30/2018,Sports_celeb,@RyanSheckler,"Join me this Saturday for #SkateForACause. See your favorite skaters compete & enjoy the carnival village w/ games,… https://t.co/zEGg7SvhqT" +04/30/2018,Sports_celeb,@RyanSheckler,Thanks to the city of Dallas & @allianceskatepark for having the @redbullskate crew out. Good times were had! https://t.co/1gvz3FSwhg +04/28/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: The @tillys Stairs, Hubbas & Rails Contest NEVER disappoints! VIP tickets get you this close to the action! Tag a frie…" +04/27/2018,Sports_celeb,@RyanSheckler,Here are a few of the fans that came out to some stops of the Drop In Tour! So stoked for the support. Thank you! https://t.co/MAjnci7dVg +04/25/2018,Sports_celeb,@RyanSheckler,@gonzojune21 @redbullskate @redbull https://t.co/GKGMFUOetF +04/25/2018,Sports_celeb,@RyanSheckler,"@gonzojune21 @redbullskate @redbull Hart Lines is not returning after a great 3-year run in Detroit, but you’ll be… https://t.co/pMAR9ssbFE" +04/25/2018,Sports_celeb,@RyanSheckler,I'm with them. It's OK... In the name of obsession. #OneObsession @oakley https://t.co/W1VS6x0lod +04/25/2018,Sports_celeb,@RyanSheckler,Atlanta & New Orleans thanks for having us! Good times on the road with the @redbullskate crew. Hitting up Dallas t… https://t.co/Xl4P2RA9Kw +04/23/2018,Sports_celeb,@RyanSheckler,@AlexaaRaeee Hart Lines is not returning after a great 3-year run in Detroit but hoping to get back out there sometime this year. +04/22/2018,Sports_celeb,@RyanSheckler,Happy Earth 🌏 Day! This is an easy way to contribute to our planet. 🙏🏽 https://t.co/EGGZ8lwMqI +04/21/2018,Sports_celeb,@RyanSheckler,"In order to help @etnies reach their goal of 2 MILLION trees planted across the globe, they have made it easier for… https://t.co/5oNZ5qUiIn" +04/20/2018,Sports_celeb,@RyanSheckler,Special thanks to @oakley for having me out at their HQ this week! Had a great time being part of this year’s sales… https://t.co/Q9XFUvqpdb +04/20/2018,Sports_celeb,@RyanSheckler,RT @CowtownSkate: Desert West Skateboard Plaza April 29th @ 11am for the @redbullskate Drop-In Tour. With @RyanSheckler @ToreyPudwill @Fgus… +04/18/2018,Sports_celeb,@RyanSheckler,"Pretty hyped on Walter's first board graphic. Thanks again, Shane! https://t.co/qGY3jCp3of" +04/17/2018,Sports_celeb,@RyanSheckler,.@ShecklerFoundation and I are stoked to announce our first ever @nitrocircus WCMX Best Trick Contest &… https://t.co/CrE1TC3pYF +04/16/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: #Throwbacks to hangin' with the pro skaters INSIDE the skatepark with VIP tickets at #SkateForACause in 2012! Yes, YOU…" +04/13/2018,Sports_celeb,@RyanSheckler,"Kicking things off for #StompSessions in SoCal. Check out the Stomp app to book sessions to ride with pros, summer… https://t.co/ICWDHCtU0Y" +04/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Join us May 5th for #SkateForACause to see your favorite skaters compete & play games in our carnival village! Food, p…" +04/12/2018,Sports_celeb,@RyanSheckler,"RT @SPoTTampa: Come check out the premiere of Etnies' newest video ""Album"" here at #SPoTTampa before it drops worldwide! +- Friday, 4/20 - F…" +04/11/2018,Sports_celeb,@RyanSheckler,Really enjoy this spot! Thanks for the 🎥@CustodioPhoto https://t.co/Wi7mHUHJRj +04/10/2018,Sports_celeb,@RyanSheckler,Fun piece for this fine Tuesday! 🎥 @CustodioPhoto https://t.co/gLpw9wyuEd +04/09/2018,Sports_celeb,@RyanSheckler,".@redbullskate team is hitting the road! Be sure to catch us at one of 5 cities. 1st stop, Atlanta. @AmbushBoardCo https://t.co/6jBgxo897H" +04/06/2018,Sports_celeb,@RyanSheckler,"Sent @Shaq some skateboards a ""few"" years back and he kindly sent me these as a thank you. #flashbackfriday #shaq https://t.co/Tak8jWI8mL" +04/05/2018,Sports_celeb,@RyanSheckler,2011 with @PlanBofficial #TBT https://t.co/C5QKgc1qYs +04/04/2018,Sports_celeb,@RyanSheckler,#SkateForACause is almost a month away! Who is coming out? https://t.co/Ley2g3kF4i +04/02/2018,Sports_celeb,@RyanSheckler,Fun times at the @etnies skateboarding premiere this weekend. Thankful for the fans and the constant support!… https://t.co/4y0NoI7UT9 +04/01/2018,Sports_celeb,@RyanSheckler,Spent Good Friday with the @etnies crew giving out shoes and meals to the homeless. This is their 21st year working… https://t.co/GNf3h4Nr5R +03/30/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung Congrats PlanB’s newest pro. 📷 @paulomacedoo #trevorispro #skateboarding #planbskateboards https://t.co/… +03/29/2018,Sports_celeb,@RyanSheckler,"Happy birthday, mom! Thanks for everything you do. I love you. https://t.co/D3ELqApGRY" +03/28/2018,Sports_celeb,@RyanSheckler,"RT @etnies: For EVERY shoe purchased from today until Good Friday (March 30th), etnies will donate a pair of shoes to the homeless at the L…" +03/26/2018,Sports_celeb,@RyanSheckler,Thursday baby! #etniesALBUM Skateboard Premiere starts in LA. For ALL tour dates and tickets to Thursdays LA show 👉… https://t.co/UF6usk5Uwb +03/25/2018,Sports_celeb,@RyanSheckler,#etniesALBUM Global Premiere kicks off starting with Los Angeles this week. Go get your tickets NOW! 👉… https://t.co/lEIPDJGW1Y +03/24/2018,Sports_celeb,@RyanSheckler,Fun times last night with @ATTILAga ! Shane Sheckler looks like he is in the band👌🏻 📸 @devans812 https://t.co/BAtPbFVpaM +03/23/2018,Sports_celeb,@RyanSheckler,Friday’s call for... Fun times with @marquecox #FlashbackFriday https://t.co/N1H1gMUi9i +03/22/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: #SFskateBOARDmember @Mannyslaysall jumped the LA River yesterday, amazing. #MannySantiago #ShecklerFoundation https://…" +03/20/2018,Sports_celeb,@RyanSheckler,Agree! Where's everyone headed? #firstdayofspring https://t.co/FO8rlCEjr9 +03/19/2018,Sports_celeb,@RyanSheckler,🙌 https://t.co/TyUrYtgeqD +03/19/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@shecks back 3 #onlock 🤙🏼🎥 @marquecox #redbull #planbskateboards https://t.co/GABFmorQyp +03/17/2018,Sports_celeb,@RyanSheckler,Great times celebrating the 10th Annual with this legend. #FBF @KlayThompson @SheckFoundation https://t.co/t76O9bgent +03/15/2018,Sports_celeb,@RyanSheckler,Love this video from our #BeTheChange recipient @teamlillyfoundation . Keep spreading the love! https://t.co/WXKfgQj7hQ +03/14/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@RyanSheckler 🎯🎯📷 @CustodioPhoto #redbull #planbskateboards https://t.co/C81hVt44J0 +03/13/2018,Sports_celeb,@RyanSheckler,"Last day to vote & share. Let's show these causes we care. +Click here 👉: https://t.co/5w3qBRORcZ… https://t.co/Mtn4pTMGpl" +03/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Watch #BetheChange finalist Team Lilly Foundation inc, a 501(c)3 non-profit assisting families battling pediatric canc…" +03/12/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: Please take a moment to WATCH this video about ""Be the Change"" finalist Team Lilly Foundation inc.! Team Lilly... htt…" +03/11/2018,Sports_celeb,@RyanSheckler,"RT @SheckFoundation: WATCH this video from #BeTheChange finalist @skateforchange . Started by Mike Smith, #SkateforChange is a nonprofit pr…" +03/10/2018,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Please take a moment to WATCH this video from #BetheChange finalist A Safe Play-Space for Ryan! 5 year old Ryan has a… +03/10/2018,Sports_celeb,@RyanSheckler,Watch Vote Share #BeTheChange finalist #AllThingsMadeNew @atmnirving https://t.co/Z6R8hMuJpK +03/10/2018,Sports_celeb,@RyanSheckler,@iPositiveVibess 🙌 +03/09/2018,Sports_celeb,@RyanSheckler,Congrats to our finalist! You can support by spreading the word. #BeTheChange Watch. Vote. Share here:… https://t.co/HMstdVTGmx +03/07/2018,Sports_celeb,@RyanSheckler,RT @ethika: RGB 2 is out now! We have 19 new tracks and signature designs from all the artists up now on https://t.co/J5AEYqP4I1 . #ethika… +03/06/2018,Sports_celeb,@RyanSheckler,"New track from Lil Wayne, ""Vizine."" 🙌 @LilTunechi @ethika https://t.co/16vVSad1zZ https://t.co/sgxL1bPbOc" +03/05/2018,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Today is the last day to enter this #BeTheChange round. Good luck! https://t.co/gQVPEDbonF https://t.co/tMAf5F1Gcx +03/03/2018,Sports_celeb,@RyanSheckler,"RT @StreetLeague: 👉🏼 Tampa Pro Qualifiers go down today! Watch the live free stream on the ETN app starting at 12:00pm ET / 9:00am PT. + +@To…" +03/02/2018,Sports_celeb,@RyanSheckler,Sheckler Sessions 2015 - Front blunt transfer #FBF 📸@redbull https://t.co/Ry30vAkNUP +03/01/2018,Sports_celeb,@RyanSheckler,@SkateGirlAndrea @BONESWHEELS @thrashermag @johnhilltube @worldindustries @TransWorldSKATE @GirlsShred… https://t.co/DAYxl3aan5 +03/01/2018,Sports_celeb,@RyanSheckler,Through voice & action anyone can Be The Change. @SheckFoundation has contributed to various causes and individuals… https://t.co/yWhEZY1gnl +02/27/2018,Sports_celeb,@RyanSheckler,It's all in the details. Mandala Masterpiece by Brad Reis​ Tattoo. 🎥 @CustodioPhoto #SCSandlot https://t.co/URnDfBJvQo +02/26/2018,Sports_celeb,@RyanSheckler,Late night house visit by #BradReis_Tattoo. 3 hours down... 📸@CustodioPhoto #tattoo https://t.co/nr6nmJ1NYm +02/21/2018,Sports_celeb,@RyanSheckler,@ARocket9 @etnies The Michelin Marana! 👉 https://t.co/s0pdz9uuvK +02/21/2018,Sports_celeb,@RyanSheckler,Here’s a closer look at my latest signature Cyprus SC - my in-between sessions shoe. Color-way & details are 🔥 If y… https://t.co/DC7n27YLPv +02/20/2018,Sports_celeb,@RyanSheckler,"After busting my ankles, I’m currently healing and look forward to getting back into these kicks real soon. 🙏 Check… https://t.co/t8egreuUhy" +02/16/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: “Stained Series” boards feat. @RyanSheckler 8.12” @Fgustavoskt 8” @ToreyPudwill 8.25” Available NOW! Check your local re… +02/15/2018,Sports_celeb,@RyanSheckler,Missing this! Couple more weeks and I’ll be back! https://t.co/dklPcqmnkj +02/14/2018,Sports_celeb,@RyanSheckler,Happy Valentine's Day babay! Thank you for making me feel happy like this all the time! ❤️ https://t.co/6pj6sXU5in +02/13/2018,Sports_celeb,@RyanSheckler,🐻 @grizzlygriptape https://t.co/yaQRdvS9qj +02/12/2018,Sports_celeb,@RyanSheckler,RT @chasehawk: #TBT session at the LA courthouse with @RyanSheckler & the @etnies skateboarding​ crew. My Sig. #JamesonSL is available now!… +02/09/2018,Sports_celeb,@RyanSheckler,#TBT #SkateForACause SAVE THE DATE! Our 9th Annual on May 5th. Hope to see you there! https://t.co/pWFz5W3ek8 +02/08/2018,Sports_celeb,@RyanSheckler,They're baaack! 👉 https://t.co/xlmkS75Hvy https://t.co/qhNFkCL4kz +02/06/2018,Sports_celeb,@RyanSheckler,My favorite @etnies Marana color-way is back! Whose in favor? Check them out here 👉 https://t.co/QVCwPzQbIM https://t.co/mR3HwpMD9n +02/01/2018,Sports_celeb,@RyanSheckler,"Dew tour #tbt w/ the boss @prod84 🙌🏻 my Gs a multitasking business man & has taught me a lot about God, life, and s… https://t.co/AItRLQoRJn" +01/28/2018,Sports_celeb,@RyanSheckler,Back to the fun in no time! 🎥 @CustodioPhoto https://t.co/WNshwBOgcA +01/26/2018,Sports_celeb,@RyanSheckler,🇺🇸 📸 @redbullskate #hartlines #FBF https://t.co/WmOY2gy33t +01/25/2018,Sports_celeb,@RyanSheckler,How's this #tbt!!! I love you Shane Sheckler 😜 https://t.co/kxckw5rS4K +01/23/2018,Sports_celeb,@RyanSheckler,🙌 @AaronWheelz https://t.co/rP0oZtw3RV +01/21/2018,Sports_celeb,@RyanSheckler,See you Sunday! https://t.co/GZctw6LGF5 +01/18/2018,Sports_celeb,@RyanSheckler,SAVE THE DATE! https://t.co/1rutxVtXzZ +01/17/2018,Sports_celeb,@RyanSheckler,San Clemente Skate Park fun! https://t.co/7CSv7VlKL5 +01/17/2018,Sports_celeb,@RyanSheckler,Stoked to see the skate park we helped build last March in Costa Rica being used & thriving. Thanks for sharing… https://t.co/Tiffj15vXG +01/16/2018,Sports_celeb,@RyanSheckler,@JonahBonner @SheckFoundation 🙌So stoked! Thanks for sharing. +01/15/2018,Sports_celeb,@RyanSheckler,Happy birthday @Poppa_Shecks! Thanks for always steering me in the right direction👊🏻 enjoy your day big dog! I lov… https://t.co/3UPCmLzAfo +01/13/2018,Sports_celeb,@RyanSheckler,Friday find. #FBF https://t.co/Dfr0ppiTNt +01/11/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@chrisjoslin_ had an amazing year. Do the right thing and vote for him #populist2017 award #berrics https://t.co/PRd5uV… +01/09/2018,Sports_celeb,@RyanSheckler,Monday night fun at the SCSandlot! 🎥 @CustodioPhoto https://t.co/P3dOU6jADA +01/07/2018,Sports_celeb,@RyanSheckler,Fun battle today! @etnies #etniesalbum https://t.co/9ICKOnEhpT +01/04/2018,Sports_celeb,@RyanSheckler,"RT @etnies: Cyprus SC +Get 'em here 👉 https://t.co/cuOw0iLAwX https://t.co/eznqkzIsqB" +01/03/2018,Sports_celeb,@RyanSheckler,"New year, new perspectives. 2018, lets do this! #CantStop https://t.co/APc8TzPeA9" +01/03/2018,Sports_celeb,@RyanSheckler,RT @PlanBofficial: What better way to start off the year than congratulating @LeticiaBufoni with her welcome video https://t.co/f0A0lh1DK8… +01/02/2018,Sports_celeb,@RyanSheckler,Aust-RAIL-ia! Fun clip by @redbullskate --> https://t.co/jvKqecHB0B https://t.co/YG1swby5ja +01/02/2018,Sports_celeb,@RyanSheckler,Happy New Year! What a great trip! https://t.co/FwQxPzBDjT +01/01/2018,Sports_celeb,@RyanSheckler,Thanks to everyone for the birthday wishes. Feeling very blessed. Have a safe & Happy New Year! +12/30/2017,Sports_celeb,@RyanSheckler,❤️ https://t.co/PASHqwL0EJ +12/29/2017,Sports_celeb,@RyanSheckler,Reflecting on the year and skateboarding continues to take me to some pretty epic locations. One of my favorites fr… https://t.co/XB96xHmskZ +12/26/2017,Sports_celeb,@RyanSheckler,https://t.co/XyBvbNFx4Q +12/25/2017,Sports_celeb,@RyanSheckler,Merry Christmas everybody! Happy birthday JESUS! 🎉 https://t.co/AM2BaqQ37n +12/24/2017,Sports_celeb,@RyanSheckler,Saturday's at the Sandlot. 🎥 @CustodioPhoto https://t.co/KeHXR04Ucy +12/22/2017,Sports_celeb,@RyanSheckler,It’s been a good year. Fun times in Nica! #FBF https://t.co/gwcAqxgPOc +12/21/2017,Sports_celeb,@RyanSheckler,Scoping out lines with Mr. Claus. #TBT to @etnies Skate Park 10 year Anniversary Holiday Festival. https://t.co/VNWq4EfxgB +12/18/2017,Sports_celeb,@RyanSheckler,"Work hard, stay hungry and have FUN! 🎥 @CustodioPhoto https://t.co/MYCjPhXENH" +12/15/2017,Sports_celeb,@RyanSheckler,Looking back at such an epic trip to Costa Rica earlier this year. This was our day off after helping build a skate… https://t.co/TFtyMmxXDQ +12/14/2017,Sports_celeb,@RyanSheckler,💥📷: Paulo Macedoo https://t.co/iK5VWGlcUY +12/13/2017,Sports_celeb,@RyanSheckler,I was getting my morning coffee and bumped into @tonyhawk. Good to see you boss! https://t.co/03OIwndvZr +12/13/2017,Sports_celeb,@RyanSheckler,Hangs with @chrisjoslin_ is. Always a good time buddy. #SCSandlot 🎥 @CustodioPhoto https://t.co/lKaD4a0HyH +12/11/2017,Sports_celeb,@RyanSheckler,Good troop. https://t.co/Worw4e4Tk9 +12/08/2017,Sports_celeb,@RyanSheckler,Amped on this 👟! https://t.co/oevphOCUIw https://t.co/NYfcgUsLCc +12/07/2017,Sports_celeb,@RyanSheckler,#tbt fun times 🎉 🎥 @CustodioPhoto https://t.co/clEACtjYdb +12/06/2017,Sports_celeb,@RyanSheckler,"Great night last night! Amped on the last trick, been working on it for a bit now 🎉 🎥 @CustodioPhoto https://t.co/49UlTxZjuc" +12/05/2017,Sports_celeb,@RyanSheckler,"For those with no itinerary, here is some unscripted versatility. @etnies latest release: the #etniescyprussc ! Che… https://t.co/pQVmu0TPFJ" +12/01/2017,Sports_celeb,@RyanSheckler,Stomp Sessions is now live in SoCal! Check out the @StompSessions app to see locations and book your skateboard ses… https://t.co/0nprX1OyHR +11/28/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: Today is #GivingTuesday! Click the link below to make a tax deductible donation & join our efforts to BE THE CHANGE we… +11/27/2017,Sports_celeb,@RyanSheckler,".@ethika is having their biggest sale of the year, TODAY ONLY! Head over to https://t.co/iuH184obye. #ethika… https://t.co/gJ0b4nXpIu" +11/27/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: That's Right!! #cybermonday is here. Buy a deck free grip and free ship.#holidaygifts https://t.co/jtaWGxj0Nb #planbskat… +11/23/2017,Sports_celeb,@RyanSheckler,Reminder - Ends tonight! Exclusive @etnies deal TODAY ONLY! 2-for-1 ANY Marana - Use coupon code: 241MARANA 👉… https://t.co/7qojdV1ZCu +11/22/2017,Sports_celeb,@RyanSheckler,"You asked, you shall receive. Exclusive @etnies deal TODAY ONLY! 2-for-1 ANY Marana - Use coupon code: 241MARANA 👉… https://t.co/vPW4pcX6t6" +11/21/2017,Sports_celeb,@RyanSheckler,Exclusive deal for you all! TODAY ONLY! 2-for-1 ALL Scouts - Use coupon code: 241SCOUT 👉 https://t.co/YQUWgxBEh0 En… https://t.co/V09DiAciWW +11/17/2017,Sports_celeb,@RyanSheckler,Congrats my friend! https://t.co/bIiYOF4xsk +11/15/2017,Sports_celeb,@RyanSheckler,Keeping at it. Fun times at the #SCSandlot 🎥 @CustodioPhoto https://t.co/dQf5POzPzT +11/14/2017,Sports_celeb,@RyanSheckler,"So amped on how this turned out! Check out Skaters in Cars and get the latest scoop from me on skate spots, family… https://t.co/lwTScBFWyw" +11/13/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: #MondayMotivation We all have a story to tell that will help encourage someone else going through their struggle. Keep… +11/10/2017,Sports_celeb,@RyanSheckler,#FBF to this time last year with #BeTheChange recipients Parisite Skate Park. What an epic day with amazing people… https://t.co/HryBkdDx96 +11/09/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@trevormcclung part is live for those who haven't seen it yet.🤙🏼📸 @paulomacedoo 🎥 @Pedrodylon 🎼@JCBrooksBand https://t.… +11/08/2017,Sports_celeb,@RyanSheckler,Working on the crooks #thankyouskateboarding @etnies @PlanBofficial @oakley @redbull 🎥 @CustodioPhoto https://t.co/KsOjOcQuu7 +11/07/2017,Sports_celeb,@RyanSheckler,Definitely don't do this alone. Thanks to all those who have supported us along the way! @SheckFoundation https://t.co/IrJE9S5hwa +10/30/2017,Sports_celeb,@RyanSheckler,From water to mini ramp. 🇳🇮 https://t.co/V4fIYufkDQ +10/30/2017,Sports_celeb,@RyanSheckler,Nicaraguan sunset 👌! https://t.co/t9PuZp7BlC +10/29/2017,Sports_celeb,@RyanSheckler,Fun times! @NicaTimeSurf https://t.co/MImGZddSBB +10/27/2017,Sports_celeb,@RyanSheckler,#FBF https://t.co/R7m4OnI29f +10/27/2017,Sports_celeb,@RyanSheckler,@Elise1821 @SFAngelique 🙏 +10/26/2017,Sports_celeb,@RyanSheckler,"Thanks to our loyal supporters all over the world, here are a few things we've done over the past year.… https://t.co/P3TgcBY5wW" +10/26/2017,Sports_celeb,@RyanSheckler,I do love it out here in Nica❤️ 📸 @nicatime https://t.co/bedAam85hv +10/25/2017,Sports_celeb,@RyanSheckler,"Stoked to see my friend giving back! Please join in if you can. @KlayThompson , we'll be watching & keeping score!… https://t.co/eUuB9eqkvI" +10/24/2017,Sports_celeb,@RyanSheckler,🦅 https://t.co/EXCwV7zpZn +10/23/2017,Sports_celeb,@RyanSheckler,Happy to have been part of The Wasserman Serve day at Jefferson Elementary. @WassermanFDN Thanks for all you do!… https://t.co/6qO6oOvBjl +10/23/2017,Sports_celeb,@RyanSheckler,Played outside today... it was a fun one! @etnies #etniesalbum 🎥: @CustodioPhoto https://t.co/uuk3cGhwKN +10/18/2017,Sports_celeb,@RyanSheckler,"Through skateboarding I've seen so many places in this world, but I can never beat the view from my hometown.… https://t.co/mxqHiE2vzn" +10/17/2017,Sports_celeb,@RyanSheckler,Sunday night’s fun at the Sandlot! 🎥 @CustodioPhoto https://t.co/DphlMW1hLx +10/15/2017,Sports_celeb,@RyanSheckler,Great day of skating yesterday with the @etnies crew! 👊 https://t.co/jWburvvKlV +10/12/2017,Sports_celeb,@RyanSheckler,"180 kick flip | @redbull Hart Lines 📍 Detroit, Michigan #TBT https://t.co/fFTsDtZOrZ" +10/10/2017,Sports_celeb,@RyanSheckler,"Well, great day to stop by and get the new #teamwass gear. Thanks @caseywasserman https://t.co/L0B34IlWzd" +10/09/2017,Sports_celeb,@RyanSheckler,RT @PlanBofficial: .@dannyway @RyanSheckler @jaggereaton @jetteaton @chrisjoslin_ @AlphonzoRawls @trevormcclung @seanwilliamsheffey #Poods… +10/06/2017,Sports_celeb,@RyanSheckler,Good day indeed! #TBT https://t.co/tJ2ORNYnl0 +10/04/2017,Sports_celeb,@RyanSheckler,"Preparation starts here || Signature Michelin Marana colorway. +https://t.co/YQUWgxBEh0 @etnies https://t.co/5gFGPR0edY" +10/03/2017,Sports_celeb,@RyanSheckler,@tanwiththebeans @etnies @ethika Congrats! +09/29/2017,Sports_celeb,@RyanSheckler,Kicking off the weekend with the @oakley fam at #IrvineSpectrum today from 5-7 pm. Come hang out & say hi.… https://t.co/XVmZJcVcqO +09/28/2017,Sports_celeb,@RyanSheckler,"Frontside air Sydney, Australia - 2007. On the road w/ @PlanBofficial @etnies @redbullskate @oakley 📷:… https://t.co/3ABckzDRol" +09/28/2017,Sports_celeb,@RyanSheckler,🙌 https://t.co/1zancwXiyt +09/26/2017,Sports_celeb,@RyanSheckler,Last chance to enter! https://t.co/4CyAOtxeSo +09/25/2017,Sports_celeb,@RyanSheckler,🚨 WIN this exact skate deck as well as other gear from @etnies @oakley @redbull @melin & @ethi Good luck! Enter ->… https://t.co/14ovubes5g +09/22/2017,Sports_celeb,@RyanSheckler,"Me and my skateboard, It's pure, it's everything. #CantStop Check the new @oakley #Frogskins Lite Collection ->… https://t.co/CpAaQc67WE" +09/21/2017,Sports_celeb,@RyanSheckler,"Not a bad crew! @machinegunkelly JJ, Andre & Rook at our 10th Annual Golf Tourney #TBT #10years @SheckFoundation https://t.co/YQl4CvBDNY" +09/20/2017,Sports_celeb,@RyanSheckler,G I V E A W A Y! All this could be yours! Enter to win 👉https://t.co/vMspH8lWLI https://t.co/6TBvl3wOJF +09/19/2017,Sports_celeb,@RyanSheckler,Everything changed and I almost quit. My love for skateboarding is real and I’m passionate about it now more than e… https://t.co/Fsfsns3Azc +09/18/2017,Sports_celeb,@RyanSheckler,Epic times with the best crew! 🤘Thanks @KAABOODELMAR https://t.co/7X96obyVMU +09/18/2017,Sports_celeb,@RyanSheckler,👊#MondayMotivation https://t.co/nhvEy3Buvu +09/15/2017,Sports_celeb,@RyanSheckler,Good fun! ⚡️ https://t.co/zoY3WNDNW5 +09/14/2017,Sports_celeb,@RyanSheckler,All time #tbt 😂😂 @thepeopleloveit #alfalphanspanky https://t.co/6O5FsFdROp +09/14/2017,Sports_celeb,@RyanSheckler,RT @SheckFoundation: #repost @SalMasekela #GolfingWithShecks & @wienerschnitzel https://t.co/MNsNvwXKxP +09/11/2017,Sports_celeb,@RyanSheckler,RT @ethika: Weekend moves with @Steellafferty and @RyanSheckler #ethikafamilie https://t.co/2BEdce75Dr +09/11/2017,Sports_celeb,@RyanSheckler,The winner of the @findyourgrind Helicopter Ball Drop! @SheckFoundation https://t.co/TTc17VErcS +09/08/2017,Sports_celeb,@RyanSheckler,Nights at the Sandlot. 🎥 @CustodioPhoto https://t.co/CxgDh0Pt0f +09/08/2017,Sports_celeb,@RyanSheckler,Last day to enter! https://t.co/fVFpt2LIop +09/07/2017,Sports_celeb,@RyanSheckler,🤘 https://t.co/ibqdV9Goda +09/05/2017,Sports_celeb,@RyanSheckler,The @Sheckfoundation will be donating 100% of proceeds to help the victims of #HurricaineHarvey. Click to donate --… https://t.co/Gzo3aJmjvZ +09/01/2017,Sports_celeb,@RyanSheckler,Have a great Labor Day weekend everyone! https://t.co/lCh8DO875C +08/31/2017,Sports_celeb,@RyanSheckler,"Summer is out! Celebrating Back to School with an @Etnies Sale for the nuggets, parents and their educators! ->… https://t.co/LKa6UDs1VJ" +08/30/2017,Sports_celeb,@RyanSheckler,"We just donated 14,000 pairs of @ethika to Houston for hurricane victims. Along with the product we are sending lov… https://t.co/Q8aJAbyv5O" +06/30/2018,Sports_celeb,@prod84,"RT @Complex: ""I used to skate the loading dock behind Albertsons every day when I was a kid. It's how I learned all my tricks."" —@prod84 ex…" +06/30/2018,Sports_celeb,@prod84,"RT @ComplexSneakers: ""Shoutout to ASAP Rocky for showing the shoe some love."" —@prod84 on seeing @asvpxrocky wearing the ""Futura"" P-Rod 1.…" +06/30/2018,Sports_celeb,@prod84,"RT @Complex: ""Shoutout to A$AP Rocky for showing the shoe some love."" —@prod84 on seeing @asvpxrocky wearing the Futura x P-Rod 1. + +FULL EP…" +06/29/2018,Sports_celeb,@prod84,"RT @ComplexSneakers: ""This is probably the most precious memorabilia I have."" —@prod84 on his Michael Jordan-signed V-Rod exclusives. + +See…" +06/29/2018,Sports_celeb,@prod84,RT @berrics: .@prod84 shows off his collection of 300+ pairs of Nike SB's https://t.co/tFBTsBVUjx https://t.co/pNL7LY4UWB +06/29/2018,Sports_celeb,@prod84,Restocked https://t.co/UriKrjTu29. @primitiveskate https://t.co/ScIABN0pHh +06/29/2018,Sports_celeb,@prod84,RT @KicksDeals: 👀 @Complex / @JLaPuma come through with an all-NEW episode of 'Complex Closets' featuring pro skater & Nike SB signature at… +06/29/2018,Sports_celeb,@prod84,Honored to have @Complex come by and shoot this video 🙏🏽 https://t.co/b08aXZBHGr +06/29/2018,Sports_celeb,@prod84,RT @primitiveskate: Exclusive #dragonballz box available to Primitive Reserve members. Sign up and this will be your first box (while suppl… +06/27/2018,Sports_celeb,@prod84,"RT @137pm: .@prod84 came on #Face2FaceTime to talk about how gratitude is 🔑 + +""If you can't be grateful for what you have in life or where y…" +06/27/2018,Sports_celeb,@prod84,Didn’t know what I was missing out on @gillette. Simple changes to my shave routine = gamechanger #GillettePartner… https://t.co/8GkYDlJaB3 +06/24/2018,Sports_celeb,@prod84,Had a great time being a part of #Face2Facetime by @garyvee’s new company @137pm ! https://t.co/9Ou49JDFFk +06/18/2018,Sports_celeb,@prod84,"Paul Rodriguez ""Never"" Unmastered: https://t.co/B1nBfUubo6 via @YouTube" +06/17/2018,Sports_celeb,@prod84,Just want to wish all the Fathers out there a happy Father’s Day. Many Blessings to you all and your families 🙏🏽🙏🏽🙏🏽 https://t.co/UPdtqQgBtn +06/17/2018,Sports_celeb,@prod84,Hyped on these! #DragonBallZ https://t.co/DUAoKTwEXC https://t.co/qJ9XmfeLk2 +06/16/2018,Sports_celeb,@prod84,"@primitiveskate “Never” +#neversaynever https://t.co/M8grJFGxBa" +06/12/2018,Sports_celeb,@prod84,Super excited to connect with you all one on one on @BookCameo ! If you want a birthday message or any video messag… https://t.co/2djcdyhhpJ +06/11/2018,Sports_celeb,@prod84,“Never” @primitiveskate https://t.co/8UjESOV6is +06/09/2018,Sports_celeb,@prod84,. @RickandMorty x @primitiveskate pre order available now! https://t.co/Y4aDA5KNne https://t.co/rHLBFxxtSi +06/08/2018,Sports_celeb,@prod84,RT @primitiveskate: We Are Excited To Announce The Rick and Morty x Primitive Skateboarding Official Collaboration Dropping July 1st Limite… +05/25/2018,Sports_celeb,@prod84,"Courthouse 2 Piece +📷: @SpanishMikeTV https://t.co/mgVRdhSsDf" +05/21/2018,Sports_celeb,@prod84,New @Gillette video up on my YouTube channel! See how I always find time to stay fresh with the right razor -- no m… https://t.co/wem3AD2i56 +05/21/2018,Sports_celeb,@prod84,Had a great time. Hope you enjoy the @nikesb #Prod10’s! https://t.co/cEuldG6w0s +05/17/2018,Sports_celeb,@prod84,Enter at https://t.co/Z0vLGyj29p for a chance to skate with me and my friends! https://t.co/QfvldNRTim +05/17/2018,Sports_celeb,@prod84,RT @primitiveskate: Updates regarding #dragonballz orders. Thank you guys so much for your patience! 🙏 🐉 #primitiveskate @prod84 https://t.… +05/11/2018,Sports_celeb,@prod84,"Which pill are you taking 🔴🔵? + +See what happens next... https://t.co/8E65nNIONL https://t.co/g9NXJVZ9A9" +05/03/2018,Sports_celeb,@prod84,I’m giving away a pair of my new frames from @glassyeyewear just follow @glassyeyewear and retweet this post for yo… https://t.co/8AetGWWned +05/03/2018,Sports_celeb,@prod84,#dbz @primitiveskate https://t.co/e4NDZz1mog https://t.co/stePHuYxZE +05/01/2018,Sports_celeb,@prod84,So excited about this!! https://t.co/r3wKRLmXoC +05/01/2018,Sports_celeb,@prod84,RT @GrantCardone: I asked pro skateboarder & successful entrepreneur Paul Rodriquez @prod84 why… https://t.co/7H6Bb68dmK +04/30/2018,Sports_celeb,@prod84,"RT @primitiveskate: Our #dragonballz collaboration drops tonight at midnight eastern time, 9:00PM Pacific time on https://t.co/TH4m7sh0BE.…" +04/29/2018,Sports_celeb,@prod84,RT @PRIMITIVE_LA: May 1 #dragonballz x #primitiveskate https://t.co/aE51jObJzz 🐉 https://t.co/WNxjfps6YF +04/26/2018,Sports_celeb,@prod84,"🌪 +🎥 @brandonbiebel https://t.co/Lcq0J4J1iW" +04/26/2018,Sports_celeb,@prod84,RT @Speffman: Just arrived and it’s sick. #dbz @primitiveskate https://t.co/s5QV9aBGhT +04/21/2018,Sports_celeb,@prod84,Had a blast playing with you man! https://t.co/v5iXQZTcS1 +04/13/2018,Sports_celeb,@prod84,.@primitiveskate x #pauljacksonlives restocked: https://t.co/JirIvnbStO https://t.co/QvKHK9cUyl +04/12/2018,Sports_celeb,@prod84,"Cleaning your kicks twice a day keeps Dr. Sole away, right @Nike? #shoetherapy https://t.co/eYbvCZCzyB" +04/11/2018,Sports_celeb,@prod84,"This was a fun shoot to be a part of thanks @nike 🙏🏽 Cleaning your kicks twice a day keeps Dr. Sole away, right?… https://t.co/sZbrJPpNY4" +04/11/2018,Sports_celeb,@prod84,@GrantSchubert @primitiveskate @alan_hannon Thanks for all the hard work you two have put in over the past couple of days 👊🏼 +04/11/2018,Sports_celeb,@prod84,@SenjuRicardo 🙏🏼 +04/08/2018,Sports_celeb,@prod84,"@Hoooooesinheels Sorry, can’t part with them" +04/08/2018,Sports_celeb,@prod84,@SDSkateCo @whitesox @loswhitesox @Jumpman23 🙏🏼 +04/08/2018,Sports_celeb,@prod84,@andyr0ck🙏🏼 +04/08/2018,Sports_celeb,@prod84,@Hoooooesinheels Sorry but all I have is a couple of pair I’m saving for my collection +04/08/2018,Sports_celeb,@prod84,@dragonballzarmy My man 🙏🏼 +04/08/2018,Sports_celeb,@prod84,@colinmecrazy @SeanSchemmel @toei @primitiveskate Which board did you get? +04/08/2018,Sports_celeb,@prod84,@323chillax 🙏🏼👊🏼 +04/08/2018,Sports_celeb,@prod84,@Mark_Shadows looks like they will be available 5/7/18 +04/03/2018,Sports_celeb,@prod84,Doing a live Q and A now! https://t.co/SgRAJ8445a +04/03/2018,Sports_celeb,@prod84,"Feels like a Netflix night gonna watch +""ON MY BLOCK. "" + +@jeremyhaft1 +@onmyblocktv +#onmyblock +#representationmatters +#netflix" +03/26/2018,Sports_celeb,@prod84,Happy @Nike #airmaxday I’ll be rocking the Air Max 270s all day. Which are your favorites? https://t.co/TxFrZhqWls +03/23/2018,Sports_celeb,@prod84,"It's been fun sharing my A•Reels with you guys and now I want to see yours!! +Download the @areelsports app and… https://t.co/HowyefDUKr" +03/23/2018,Sports_celeb,@prod84,RT @primitiveskate: Restocked! https://t.co/AYPlOqy5RS https://t.co/F8SY0HHgNs +03/21/2018,Sports_celeb,@prod84,Loving this months #primitivereserve box!! Brian Peacock 🔥. Subscribe now: https://t.co/DplPitS7Ka. https://t.co/ERz61vXG6c +03/16/2018,Sports_celeb,@prod84,"Now you can easily shoot, edit, and share your own amazing vids and be a part of a community of elite athletes and… https://t.co/NkwSdxtCtF" +03/16/2018,Sports_celeb,@prod84,RT @primitiveskate: #primitiveskate x #dragonballz full collection coming soon but pre-orders available now https://t.co/FSXO5OQ2uj🤫 https:… +03/14/2018,Sports_celeb,@prod84,Partnered up with my friends over at @Gillette! #unboxing video on my channel to see what they sent. You guys get s… https://t.co/gJhMkRh1nR +03/14/2018,Sports_celeb,@prod84,Paul Rodriguez | Gillette Unboxing: https://t.co/8FEU4Zvoaz via @YouTube +03/11/2018,Sports_celeb,@prod84,The sun is coming back out. My signature @glassysunhaters will keep your eyes happy 😎 Get %10 off by clicking here:… https://t.co/PuTMNHACIb +03/08/2018,Sports_celeb,@prod84,"Check out my latest highlight reel on the @areelsports app where you can watch, create, and promote sports highligh… https://t.co/fYlcjN7x95" +03/06/2018,Sports_celeb,@prod84,"RT @primitiveskate: Primitive x @sixthave Demo in Nashville, TN: https://t.co/wYV3sp0Iq1 https://t.co/k0obXkQyjR" +02/23/2018,Sports_celeb,@prod84,Hitting the streets with my signature @glassysunhaters Grab yours and 10% off this weekend. Hit the link to get yo… https://t.co/yVzZwk6AFH +02/23/2018,Sports_celeb,@prod84,RT @shanejoneill: Rob’s new part is amazing 🚰 https://t.co/CCqR6K54ij +02/23/2018,Sports_celeb,@prod84,That new @salabanziB deck is 🔥. Available in the Reserve box: https://t.co/DplPitS7Ka https://t.co/D0JF4DVWfj +02/17/2018,Sports_celeb,@prod84,Back in stock! @primitiveskate x Paul Jackson: https://t.co/JBV2cEsMjL https://t.co/BeuL2m7u0W +02/12/2018,Sports_celeb,@prod84,😎 https://t.co/3wLoldxZ2Q +02/08/2018,Sports_celeb,@prod84,RT @primitiveskate: New subscribers can get this Devine Calloway exclusive deck: https://t.co/z1msxuRbxE https://t.co/TmsPJfV06E +02/07/2018,Sports_celeb,@prod84,.@primitiveskate x @majidjordan collab: https://t.co/HIVv1J1p4L https://t.co/tLHCNhlyWw +02/07/2018,Sports_celeb,@prod84,Heartbreakers Collection. Available in shops and at https://t.co/UriKrjBSDz. 💔 https://t.co/eSOdcEew6q +02/03/2018,Sports_celeb,@prod84,#skatelife film by @SpanishMikeTV https://t.co/45RzzJZtgp +01/19/2018,Sports_celeb,@prod84,Sw front heel from the other day. 📷 Oliver Barton https://t.co/Vj94uF2LUm +01/07/2018,Sports_celeb,@prod84,New ones!! 👌🏽 @primitiveskate x @pauljacksonlives. @shanejoneill @nicktucker https://t.co/UriKrjBSDz https://t.co/E05Q8ZmvCO +12/26/2017,Sports_celeb,@prod84,Another blessed Christmas Day session with my guy @shanejoneill! Hope everyone had a blessed one🙏🏽 #dedication6 🎥… https://t.co/XyZ1jYuQBP +12/07/2017,Sports_celeb,@prod84,Sw hard flip 📸 @atibaphoto https://t.co/KeKOZmaF0x +11/29/2017,Sports_celeb,@prod84,RT @primitiveskate: Final hours to save! https://t.co/qoKEswryUc https://t.co/Y1BL3CkEni +11/25/2017,Sports_celeb,@prod84,Grab your @glassysunhaters during the ⚫️Black Friday⚫️ sale going on through Monday. Get up to 35% off here:… https://t.co/Zg8FV2DcaU +11/24/2017,Sports_celeb,@prod84,Black Friday Sale going down now! https://t.co/UriKrjBSDz. @primitiveskate https://t.co/RdxVKNI18J +11/23/2017,Sports_celeb,@prod84,RT @primitiveskate: Roman Lisivka “Stalinista”: https://t.co/5gOjjGoGTQ https://t.co/jBr07iweDG +11/20/2017,Sports_celeb,@prod84,Throwback clip at the old park. 🎥 @spanishmiketv @primitiveskate https://t.co/gUIt5NPNFJ +11/18/2017,Sports_celeb,@prod84,2fers are back! https://t.co/YDP3EKPXZu. @primitiveskate https://t.co/K0TwPmkZjs +11/16/2017,Sports_celeb,@prod84,#tbt switch bs nose blunt slide. 📸 Oliver Barton https://t.co/96tGhUus4i +11/14/2017,Sports_celeb,@prod84,Black Pack ‘17. https://t.co/A5rdeYFs0H. @primitiveskate https://t.co/7Iirm39Z8Z +11/03/2017,Sports_celeb,@prod84,Grab a pair of my signature shades from @glassysunhaters and get 10% off. Click here: https://t.co/wekwlyDWWL https://t.co/hGFjwFJa3X +11/02/2017,Sports_celeb,@prod84,RT @primitiveskate: https://t.co/srNhvle5jX https://t.co/gZ53kKuKI3 +10/21/2017,Sports_celeb,@prod84,RT @primitiveskate: New #LA Colorway. Available now https://t.co/TH4m7sh0BE https://t.co/z090zoShhe +10/21/2017,Sports_celeb,@prod84,.@primitiveskate in #Texas vid: https://t.co/Gt5FC0Ydsi https://t.co/YoGZwyTTLy +10/19/2017,Sports_celeb,@prod84,New ones! @primitiveskate https://t.co/UriKrjBSDz https://t.co/wvaqhKs8xL +10/14/2017,Sports_celeb,@prod84,"RT @StreetLeague: .@prod84 @KellyHart taking 'Trick of the Year' to the next level! + +Watch the 24 hour freeview of Episode 1 today on ETN.…" +10/13/2017,Sports_celeb,@prod84,Happy birthday Kevin Perez. Keep getting those wins! 📸 @oliverbarton https://t.co/iVVaj07tir +10/11/2017,Sports_celeb,@prod84,A line from earlier this year filmed by @SpanishMikeTV @primitiveskate https://t.co/GoxE91DJnu +10/10/2017,Sports_celeb,@prod84,💰💰 💰 https://t.co/DplPitS7Ka https://t.co/X3QahYpkr4 +10/09/2017,Sports_celeb,@prod84,Join me and the @primitiveskate squad this Saturday! https://t.co/z3XPfR4Ysz +10/06/2017,Sports_celeb,@prod84,RT @primitiveskate: .@pendledon Zoo (Unmastered) is up now 👉🏽 https://t.co/mX0KjLXAV3 #primitiveskate https://t.co/0uktF4Nr62 +09/29/2017,Sports_celeb,@prod84,Ready for the season with the new #lakernation jersey designed by @nike. What team you got this season?? https://t.co/IkVoCMNqkG +09/28/2017,Sports_celeb,@prod84,"Join me and the squad this Saturday in Austin, TX! @nocomplyatx @primitiveskate https://t.co/tEud5qCCZI" +09/26/2017,Sports_celeb,@prod84,Enjoying the new park https://t.co/KircAjIfX2 +09/23/2017,Sports_celeb,@prod84,Grab a pair of my signature @glassysunhaters and hate the ☀️ this weekend. Click the link for 10% off.… https://t.co/R4JjSumcIB +09/19/2017,Sports_celeb,@prod84,Join us this Wednesday at @blackhwood! @trentmcclung @primitiveskate https://t.co/M5EGPpIgoe +09/17/2017,Sports_celeb,@prod84,Setting up a fresh one. @nicktucker @primitiveskate 📸 Oliver Barton https://t.co/rk6M6Qc2v7 +09/15/2017,Sports_celeb,@prod84,"#fbf to 2013 when @seanmalto, @erickoston and I visited Camp Nou in Barcelona. 📸 @heathmoe https://t.co/mHxVAAj8VS" +09/12/2017,Sports_celeb,@prod84,.@primitiveskate x @grizzlygriptape collection. 🙌🏽 https://t.co/UriKrjBSDz https://t.co/4IBoOFgjH5 +09/09/2017,Sports_celeb,@prod84,#Fbf 🎥 @Heathmoe https://t.co/cH75b9IvzW +09/08/2017,Sports_celeb,@prod84,Hit the streets and hate the ☀️ this weekend in some @glassysunhaters Click the link for 10% off.… https://t.co/bPd2UVQ1il +09/05/2017,Sports_celeb,@prod84,Thank you everyone for the amazing support!! https://t.co/oiQc7DGhPK +09/02/2017,Sports_celeb,@prod84,.@primitiveskate x @grizzlygriptape available now. https://t.co/A5rdeYFs0H 📱 Kevin Perez https://t.co/RwNbWaDbxv +08/29/2017,Sports_celeb,@prod84,😍 @primitiveskate https://t.co/UriKrjBSDz https://t.co/v4DmEcmtL1 +08/25/2017,Sports_celeb,@prod84,RT @primitiveskate: #PrimitiveSkate x @gangsterdoodles @prod84 Flip Phone Deck is available now exclusively at https://t.co/TH4m7sh0BE! htt… +08/22/2017,Sports_celeb,@prod84,A few #throwback clips 🎥: @heathmoe https://t.co/0nX3zxyPEX +08/21/2017,Sports_celeb,@prod84,Weekend fun with the boys. @primitiveskate https://t.co/CBHkLA72RL +08/20/2017,Sports_celeb,@prod84,Loving this Diego Najera Deck! Ships next month to Primitive Reserve subscribers. Sign up @ https://t.co/DplPitS7Ka. https://t.co/8HNbSRbQ9d +08/18/2017,Sports_celeb,@prod84,"Get out in the ☀️ this weekend in some @glassysunhaters Hit the link for 10% off: +https://t.co/l2p1jKpIfz https://t.co/g769ZoEMwD" +08/11/2017,Sports_celeb,@prod84,Grab your @glassysunhaters 😎this weekend and get 25% off. https://t.co/upIIOHjhN5 https://t.co/g33XeI1J6F +08/09/2017,Sports_celeb,@prod84,"Want this exclusive @shanejoneill ""Vison Test"" @primitiveskate colorway? It's only available at… https://t.co/c17bxb3qLN" +08/04/2017,Sports_celeb,@prod84,"The @primitiveskate team is having a signing at Boarders tomorrow August 5th from 1-3 Come by and say what's up, if… https://t.co/snpoNWVfp5" +07/24/2017,Sports_celeb,@prod84,RT @primitiveskate: 🤔 https://t.co/0WIWxSbQmf +07/22/2017,Sports_celeb,@prod84,"Available in 7.75, 8, 8.125, 8.38 and 8.5. Subscribe @ https://t.co/DplPitS7Ka https://t.co/su9l4fI5kl" +07/19/2017,Sports_celeb,@prod84,The Primitive Reserve Subscription: https://t.co/f77RWCu5ic via @YouTube +07/15/2017,Sports_celeb,@prod84,Come by the @AgendaShow @primitiveskate booth P3 tomorrow from 1-3 and see the team if your in the area. https://t.co/H8hnKaoMXy +07/12/2017,Sports_celeb,@prod84,Jumping fences with @primitiveskate live tomorrow only on ETN. Get ETN here: https://t.co/5ezC0AlrEY https://t.co/56Vhm7Fkfs +07/07/2017,Sports_celeb,@prod84,Check out the new @primitiveskate Pendleton Zoo edit here: https://t.co/oEYdqygVYb https://t.co/xAMIxhISpe +07/06/2017,Sports_celeb,@prod84,SWITCH IT UP. FRONTSIDE FLIP IN MY #PROD10 https://t.co/kx32tgZdDf https://t.co/X7xagqNbIh +07/03/2017,Sports_celeb,@prod84,Grab your @glassysunhaters for the long weekend here: https://t.co/Jsx0FxVhA1 https://t.co/6PmBnBHE3s +07/03/2017,Sports_celeb,@prod84,NEW WEEK. LET'S GET IT. @nikesb #PROD10 https://t.co/kx32tgZdDf https://t.co/7karYSzpXp +07/01/2017,Sports_celeb,@prod84,BLESSED 🙏🏻 THANK YOU @NIKESB. NEVER IMAGINED THIS. #PROD10 https://t.co/kx32tgZdDf https://t.co/9vWwuMu27h +06/29/2017,Sports_celeb,@prod84,RT @primitiveskate: Primitive Paul Rodriguez Eagle 🦅 Veneer Deck Now Available Exclusively on https://t.co/z1msxuRbxE @prod84 https://t.co/… +06/28/2017,Sports_celeb,@prod84,My new signature @glassysunhaters from the ♠️♥️High Roller collection♣️♦️are back in stock. Get 10% off here:… https://t.co/DOftXsANLx +06/27/2017,Sports_celeb,@prod84,The @primitiveskate Reserve Subscription is available now! https://t.co/DplPitS7Ka https://t.co/AvgTgUKHji +06/26/2017,Sports_celeb,@prod84,I’m still recovering from this workout with lacrosse pro @KyleHarrison18 ! Watch #CanIHang only on @go90Zone… https://t.co/b8Gecrjbnx +06/26/2017,Sports_celeb,@prod84,The Primitive Reserve Monthly Subscription: https://t.co/rz07N5u2y6 via @YouTube +06/25/2017,Sports_celeb,@prod84,New Rosay board @primitiveskate https://t.co/UriKrjBSDz https://t.co/2f0kw8ndQp +06/20/2017,Sports_celeb,@prod84,Paul Rodriguez | 2pac x Primitive Skate: https://t.co/99tXuIBft0 via @YouTube +06/19/2017,Sports_celeb,@prod84,RT @primitiveskate: .@2pac Back in stock: https://t.co/oZXxzMUaIj https://t.co/w4iHi442Q0 +06/19/2017,Sports_celeb,@prod84,.@MightyMouseUFC is a beast! This is one session I won’t forget. Watch #CanIHang on @go90Zone Full episode here:… https://t.co/uiSizOLm5N +06/17/2017,Sports_celeb,@prod84,🙏🏻 @primitiveskate X @2pac 🙏🏻 available now. Pick yours up here: https://t.co/LuSpquTX1U https://t.co/IuBfm1ZbbE +06/16/2017,Sports_celeb,@prod84,Hyped these have been re-released on https://t.co/UriKrjBSDz. @2pac @primitiveskate 🙌🏽 https://t.co/QGIWPUUdRb +06/15/2017,Sports_celeb,@prod84,Vision Test series 💪🏽 https://t.co/UriKrjBSDz. @primitiveskate https://t.co/t1V9TVpf2w +06/13/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84's Jungle Cat board is available now in shops and online at https://t.co/TH4m7sh0BE. https://t.co/EPmDLcVb7w +06/13/2017,Sports_celeb,@prod84,What an achievement. Ten is Rafa. #VamosRafa #justdoit #nike https://t.co/4wkQjFoM9G +06/12/2017,Sports_celeb,@prod84,.@tonyfinaugolf I am counting on you to get me @PGATOUR ready! Watch #CanIHang on @go90 https://t.co/eVDOtcbSvd https://t.co/BlOvzpyn5J +06/09/2017,Sports_celeb,@prod84,The @primitiveskate crew and I will be at @Warningsk8shop tomorrow 1-3 for a team signing. If you're in the area st… https://t.co/TMvLL13btt +06/09/2017,Sports_celeb,@prod84,Get out in the ☀️ this weekend in some @glassysunhaters Hit the link for 10% off: https://t.co/l2p1jKpIfz https://t.co/z3vnaYj7d9 +06/09/2017,Sports_celeb,@prod84,"Setting up the new @primitiveskate ""Jungle Cat"" 📷 @ParrisWalker_ https://t.co/7AsHClhBcn" +06/05/2017,Sports_celeb,@prod84,I may never recover from @kohara19 soccer drills. Watch me sweat this week on #CanIHang only on @go90Zone… https://t.co/6FZqyy7wH8 +06/03/2017,Sports_celeb,@prod84,Get out this weekend in the ☀️ with my signature shades from @glassysunhaters Grab yours here:… https://t.co/sQZLrDncqG +06/02/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84's Jungle Cat deck is available now at finer shops and online at https://t.co/TH4m7sh0BE. https://t.co/DVv5ppKP… +05/30/2017,Sports_celeb,@prod84,Never thought I would try Cyrotherapy – things got chilly with @bonner_bolton ! Watch #CanIHang only on @go90Zone… https://t.co/odUCWAxn4v +05/28/2017,Sports_celeb,@prod84,Shop and save all weekend at https://t.co/UriKrjBSDz 👌 https://t.co/VaHmddIlwM +05/24/2017,Sports_celeb,@prod84,RT @theotisbeasley: My new @nikesb video part is now live on https://t.co/UP8LhUkR9K. Watch it at https://t.co/r268ZOGTIz. @transworldskate… +05/22/2017,Sports_celeb,@prod84,Dodger legend @yungjoc650 taught me some things about my bat flip. Watch #CanIHang & see if I mastered it @go90Zone… https://t.co/C5aMzLm3Gf +05/22/2017,Sports_celeb,@prod84,. @CarlosRibeirol @primitiveskate #macbalife https://t.co/4GFHnzuj7V +05/18/2017,Sports_celeb,@prod84,Hyped on Diego Najera's new @primitiveskate deck. Available now in shops & https://t.co/UriKrjBSDz. https://t.co/14nghpMs3z +05/16/2017,Sports_celeb,@prod84,PAUL RODRIGUEZ I TRUE FORM: https://t.co/UPc0tuxPSa via @YouTube +05/15/2017,Sports_celeb,@prod84,Who do you think has a better jump shot – me or @realtuffjuice ? Find out on this week’s #CanIHang only on… https://t.co/DDaf6FIAJR +05/15/2017,Sports_celeb,@prod84,"RT @primitiveskate: 36-24-36. Carlos Ribeiro ""Little in the Middle"" deck available in finer shops and at https://t.co/TH4m7sh0BE. #primitiv…" +05/12/2017,Sports_celeb,@prod84,"Check out the new @primitiveskate Vision Test East coast promo, all filmed in 2 weeks 😳 Full edit here:… https://t.co/azMqT4Evm6" +05/12/2017,Sports_celeb,@prod84,"RT @instantdotme: YOOOO, @Prod84 is taking over our Snapchat today! Be sure to follow along here on our account. Add us here👻 https://t.co/…" +05/11/2017,Sports_celeb,@prod84,That new new @primitiveskate. https://t.co/A5rdeYFs0H. https://t.co/Dk9dK9K5Zn +05/08/2017,Sports_celeb,@prod84,Think I can hang with an Olympic Athlete? Watch me “train” w/ @allysonfelix on #CanIHang now on @go90Zone… https://t.co/ez4Hb6yKwe +05/05/2017,Sports_celeb,@prod84,My new signature @glassysunhaters from the ♠️♥️High Roller collection♣️♦️are now available. ☑️Get yours here:… https://t.co/ecpLS3ylxf +05/04/2017,Sports_celeb,@prod84,#TBT 📷 @blabacphoto https://t.co/PNkIZnpxZ8 +05/04/2017,Sports_celeb,@prod84,Went head to head with my boy @Mikey_Tay1or on @TransWorldSKATE newest episode of Skate Nerd. Who do you think won?… https://t.co/Qf9fZXogMN +05/03/2017,Sports_celeb,@prod84,"Note to self: Don’t drop the ball! Thanks for the lesson, @JabrillPeppers Check out #CanIHang now on @go90… https://t.co/Mvtvd2bRNW" +05/01/2017,Sports_celeb,@prod84,Super excited to share a sneak peek of my new show #CanIHang Check out the premiere episode only on @go90… https://t.co/G5zfbC2LaW +04/29/2017,Sports_celeb,@prod84,"Carlos Ribeiro Fruit Party deck, available now: https://t.co/oH5TVppRm9 https://t.co/QAyB3fYSPI" +04/28/2017,Sports_celeb,@prod84,Welcome to the squad @laceybaker @nikesb https://t.co/26rq3GByWc +04/27/2017,Sports_celeb,@prod84,"As you know I love a good cigar. See why on the latest episode of ""Obsessed"" from @go90 at https://t.co/s8QsDjEI21… https://t.co/CdMGJSNd1i" +04/27/2017,Sports_celeb,@prod84,😍 @primitiveskate https://t.co/QsKH18zfqx +04/25/2017,Sports_celeb,@prod84,Need help with nollie late flips? @CarlosRibeirol has you covered. Check his trick tip. @nikesb https://t.co/wd3jWTBMAa +04/21/2017,Sports_celeb,@prod84,"Devine Calloway ""Doves"" @primitiveskate board available now at your local shop and https://t.co/UriKrjBSDz https://t.co/uOcShKWLB8" +04/21/2017,Sports_celeb,@prod84,Get out and enjoy the ☀️ this weekend with @glassysunhaters Grab 10% off here: https://t.co/mGPq7KyGfu https://t.co/YaT3j1rTSo +04/14/2017,Sports_celeb,@prod84,"New @primitiveskate ""Vision Test"" decks available in shops and at https://t.co/UriKrjBSDz. https://t.co/iqEfTWCsn5" +04/09/2017,Sports_celeb,@prod84,RT @primitiveskate: Vision Test series available now at https://t.co/TH4m7sh0BE. Free shipping and grip in the US. https://t.co/UEGo2rgabR +04/08/2017,Sports_celeb,@prod84,"RT @primitiveskate: .@prod84 ""Late Fee"" board, available now online and in shops. https://t.co/asr3XgYfSl 🍿 #primitiveskate https://t.co/UH…" +04/05/2017,Sports_celeb,@prod84,"Looking forward to Saturday, who's coming through? @primitiveskate https://t.co/LcloGmX5Mg" +04/04/2017,Sports_celeb,@prod84,.@primitiveskate available at https://t.co/00S3yU4Y8R https://t.co/Xk9TnesyI9 +03/30/2017,Sports_celeb,@prod84,RT @primitiveskate: New Mexico April 8th! Who's rolling through? #primitiveskate https://t.co/QqB4M84B6c +03/28/2017,Sports_celeb,@prod84,Watch me fool a fan on @realchriswebber #FullCourtPranks TONIGHT 10/9C @truTV https://t.co/PJVnJhlXyp +03/21/2017,Sports_celeb,@prod84,"Catch me sweeping some steps and more this year during the 2017 @StreetLeague @nikesb World Tour +Tickets go on sale… https://t.co/uzUrvso4he" +03/20/2017,Sports_celeb,@prod84,This is not the new @shanejoneill part is 🔥 Watch it here: https://t.co/AarXCtWVPo https://t.co/ug79xaLYkH +03/17/2017,Sports_celeb,@prod84,"Keep it classy this St. Patty's ☘️with @glassysunhaters ☘️ +https://t.co/l2p1jKpIfz https://t.co/NXIvXWaXgn" +03/17/2017,Sports_celeb,@prod84,Gearing up for the weekend. Where are you guys hitting up for the weekend sesh? @primitiveskate https://t.co/VqBp6cP38M +03/16/2017,Sports_celeb,@prod84,Setup a fresh @primitiveskate @nicktucker deck. The old one has allot of life left so I gave it to a kid that could… https://t.co/18VoCDTssr +03/15/2017,Sports_celeb,@prod84,"Foooour Wheels Live! Episode #5 Me vs. @jeremerogers premieres tonight at 6pm pst only on ETN +Download in the App… https://t.co/4hVFXrJtP3" +03/14/2017,Sports_celeb,@prod84,Sammy Perales from our @primitiveskate warehouse just dropped a part 📹 by: Kyle Steneide Full part here:… https://t.co/7DvtndrLoZ +03/14/2017,Sports_celeb,@prod84,"Sam Perales ""Look Ahead "" Part: https://t.co/Vfc7bNTlbo via @YouTube" +03/11/2017,Sports_celeb,@prod84,Get out in the ☀️ this weekend with @glassysunhaters 😎. Get 10% off here: https://t.co/l2p1jKpIfz https://t.co/Gj9CwLNBLc +03/09/2017,Sports_celeb,@prod84,"The @nikesb Dunk, 15 years & still going strong. ☑️ the @VICE documentary on the dunks history at… https://t.co/DoOGqY3vfU" +03/03/2017,Sports_celeb,@prod84,"Check out the new @SDiegoNajera ""Homecoming"" video and watch Diego's journey to becoming @primitiveskate newest pro… https://t.co/CEBWMEYbXQ" +03/01/2017,Sports_celeb,@prod84,"RT @nikesb: Back in classic form, @Sean_Malto kicks off the Elite Squad video series. + +Watch https://t.co/fHmWMreNqm https://t.co/UihrwcOmXw" +03/01/2017,Sports_celeb,@prod84,"RT @primitiveskate: .@prod84's new ""Late Fee"" deck is available now at https://t.co/HdFELfGlZK https://t.co/4b8gUITkEQ" +03/01/2017,Sports_celeb,@prod84,"My new @primitiveskate ""Late Fee"" board is available now. Check it and the other new Spring drops.… https://t.co/6x7vhwQOjV" +02/27/2017,Sports_celeb,@prod84,RT @primitiveskate: Happy Birthday to our CEO and #PrimitiveSkate founder @heathmoe seen here smith grinding in Toronto on our Canada tour… +02/26/2017,Sports_celeb,@prod84,"RT @nikesb: From an icon to a young gun. Introducing the Nike SB Dunk Elite x @sean_malto. +Learn more https://t.co/T6qz4pQKSN https://t.co…" +02/25/2017,Sports_celeb,@prod84,It's essential to make sure the photographer's camera is always ✨📷✨ https://t.co/JH5HiTNSGf +02/25/2017,Sports_celeb,@prod84,"RT @nikesb: Classic silhouette. Remixed for 2017. +The Nike SB Dunk Elite. Designed by @sean_malto. +Learn more https://t.co/T6qz4pQKSN https…" +02/25/2017,Sports_celeb,@prod84,RT @primitiveskate: .@prod84 drizzling the crunchiest of run ups with the polyester resin we know and love as Bondo 📷 Oliver Barton #Primit… +02/24/2017,Sports_celeb,@prod84,#tbt stair hopping 📹 Kyle Steneide @primitiveskate https://t.co/v9NalEwa95 +02/24/2017,Sports_celeb,@prod84,"RT @VentureTrucks: Hit the link below to see everything new from the Venture squad for Spring 👑 + +https://t.co/QYjxns8SFw https://t.co/VlLuo…" +02/23/2017,Sports_celeb,@prod84,"RT @nikesb: The Nike SB Dunk OG HI. + +🌎🌍🌏 https://t.co/SgiCMCrNfk +🇺🇸 (7AM PST) https://t.co/DKcNO0h7BH" +02/23/2017,Sports_celeb,@prod84,A Lil something from yesterday....🎥 Alan Hannon @primitiveskate https://t.co/61l4lapXT0 +09/13/2016,Sports_celeb,@BAM_MARGERA,Enter to win a new iPhone 7 https://t.co/sbW6wq7exP #win #apple #iphone7 #winiphone7 #giveaway +11/03/2015,Sports_celeb,@BAM_MARGERA,Support my friend's new project by liking her page! #anaanamusic #shylove #berlin https://t.co/3vgxkbkKv7 https://t.co/TTv7RiBaEM +08/19/2015,Sports_celeb,@BAM_MARGERA,If you like dark electro pop – this is the account to follow: @AnaAnaMusic /BM +08/19/2015,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: I've heard of the junk in the trunk but had never imagined the flip side of that.😳🐘 http://t.co/98KO7TfK3u +08/19/2015,Sports_celeb,@BAM_MARGERA,"RT @30SECONDSTOMARS: I would've kept you forever, but we had to sever. ✖️ http://t.co/iW7LnBjwSF #ATTACK #MARSX #ABeautifulLie" +08/19/2015,Sports_celeb,@BAM_MARGERA,"Hey check out my friend's new music project ANA ANA: https://t.co/LUvq0WEWNS +https://t.co/Y2RG6rDkDl /Cheers, BM" +03/10/2014,Sports_celeb,@BAM_MARGERA,Wow much Miley. http://t.co/Qf9HVpcABm +12/23/2013,Sports_celeb,@BAM_MARGERA,RT @jeremysaffer: the @metalinsider top shoots of 13 @AWhiteGluz @twbd @bam_margera @chrismotionless @montepittman @PiggyD @MissScabbia htt… +10/16/2012,Sports_celeb,@BAM_MARGERA,RT @thekatvond: Fear is so damn frustrating. +10/12/2012,Sports_celeb,@BAM_MARGERA,RT @deadmau5: FUCK YEAH HALLOWEEN!!!!! http://t.co/3g7Jv4oR +10/11/2012,Sports_celeb,@BAM_MARGERA,"RT @RyanSeacrest: So much ending this year…The Office, Jersey Shore, Twilight, Gossip Girl, LMFAO. Maybe the Mayans are right." +10/11/2012,Sports_celeb,@BAM_MARGERA,RT @thekatvond: ...too romantic for my own good... +10/10/2012,Sports_celeb,@BAM_MARGERA,"RT @hollymadison: Goodnight, Friends! http://t.co/WQYtRlSg" +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: forever inked... RT @NIKKY3TEARS: Dunn tribute tat! #tattoo http://t.co/xFDwbzaN +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: RT @dickhouseworld: cute product alert: @LyRokz wrist bands http://t.co/Qkh5ROcv +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: I see this all over town too much! #NYC really needs to work on this issue!!! http://t.co/BuEgV5Ok +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @katyperry: Something's brewing... http://t.co/aiIWC8jZ +10/10/2012,Sports_celeb,@BAM_MARGERA,RT @deadmau5: every try pumpkin butter? yeah me neither. +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: The 30 Worst Dressed Celebs From The 2012 Awards Season! http://t.co/7FU2DSGp +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @CNN: Skydiver aims for supersonic jump from the edge of space: http://t.co/E5NyaB11 +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: RT @dickhouseworld: new episode of @ridiculousness tonite on @mtv 10/9C.—guest stars @NikkiBellaWWE and @WWE_BrieBella ... +10/09/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: what the man under the rainbow said! RT @dickhouseworld: happy birthday to @TravisPastrana! http://t.co/KVbyFmRU +10/09/2012,Sports_celeb,@BAM_MARGERA,"RT @matdevineslife: ""Death in the Afternoon"": absinthe and champagne" +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: The cold air reminds me of my family up north. I feel at peace right now. Love the night. It's when I feel most ali ... +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @NiallOfficial: Just got home and look what @new_era_caps have sent me! Thank you soo much ! #iloveasnapback http://t.co/6wWFCksl +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @JimCampbellTFR: DOG NEWS: Dog opens newly delivered iPhone 5. Dog thinks dog has helped http://t.co/Mw8iXyNA +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @MamBargera: We all need more Bam Margera in our lives. The world would be a better place. +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @batiekear: I liked a @YouTube video from @honeaa http://t.co/5Sb2Ml1I Bam Margera reads Fifty Shades of Grey +10/08/2012,Sports_celeb,@BAM_MARGERA,RT @thesulk: I watch old tv shows because it keeps me connected to the me who no longer exists. +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: i have testicles—two testicles. RT @julioguaramata: @jackassworld I met and my best gift would be that i followed and ... +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @realjknoxville: Much love and respect to Frank Ocean. A brave thing to do, and the right thing to do. Sincerely, Knoxville" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: I'm on SpongeBob this Saturday the 21st at 800pm Eastern. Here's a pic of my character. I play stuntman Johnny Krill ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @PaulCastronovo: @SteveO @PaulandYoungRon The legend Steve o on our show now #jackass +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: My friend @JohnHannafin is having an art show! Open Studio TONIGHT 6-9 during West Chester GalleryWalk!! 19S.Church ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @matdevineslife: Start your Friday smiling to a nice little Mel Gibson rant tape http://t.co/buvIn0l9 +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @SkateboardMag: Free Fabes Lost Part http://t.co/Xxu7lT4c +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Sisqo305: @steveo tattooing at the show.. http://t.co/OtrPVyDu +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @nicolerichie: ""I had my 15 minutes of fame"" - Laser Discs" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @PerezHilton: Chris Brown's Ex Karrueche Tran Is Broken Up & Blames Rihanna For Split! http://t.co/lUV7WPiJ +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @dickhouseworld: photo of the day with @iamweeman, @PrestonLacy and @rickkosick ... oompa loompas are for the birds! http://t.co/7GEFWoCl" +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @jackassworld: peeping wee wee man... RT @PrestonLacy: This is why you should always look both ways before peeing. http://t.co/DQ96sUbK +10/05/2012,Sports_celeb,@BAM_MARGERA,"RT @matdevineslife: ""When you think that in this cold, violent universe that Paris exists- There's nothing happening on Jupiter or Neptu ..." +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @tonyhawk: If anyone wants to buy cool prints of my IG photos: http://t.co/ZO7d7kEn or just print them yourself; I've http://t.co/ku ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @realjknoxville: Learning to skydive. Somewhere over lake perris california. http://t.co/rlFvAOZ2 +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @Ryan__cleveland: “@NicolO_idiot: bueno ahora me voy eschando buen rock !! a @hellocleve como me encanta la voz de @Ryan__cleveland ... +10/05/2012,Sports_celeb,@BAM_MARGERA,RT @30SECONDSTOMARS: The Latest from THE LAB - http://t.co/Z7mt7dti +09/07/2012,Sports_celeb,@BAM_MARGERA,"Hey, vote for my buddy CHRISTOPH GROMER http://t.co/mH26Fzxa LOVE. BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"Hey, please vote for my buddy CHRISTOPH GROMER: http://t.co/mH26Fzxa +Love BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"I need YOUR help! Vote for CHRISTOPH GROMER http://t.co/mH26Fzxa + +<3 BM" +09/05/2012,Sports_celeb,@BAM_MARGERA,"show me some follower power and vote for CHRISTOPH GROMER http://t.co/mH26Fzxa +<3 BM" +09/04/2012,Sports_celeb,@BAM_MARGERA,"heeey, please vote for my buddy CHRISTOPH GROMER http://t.co/mH26Fzxa + +love, BM" +09/14/2011,Sports_celeb,@BAM_MARGERA,@jackassworld please RT and help my friend Andre by voting here: http://t.co/kWd22iT BM +12/13/2016,Sports_celeb,@TravisPastrana,Check out what our @ObertoBeefJerky contest winners got to do when they visited Pastranaland! Always a good time!… https://t.co/eoH9CBFGJ6 +11/30/2015,Sports_celeb,@TravisPastrana,Don't miss out on the @ethika Cyber Monday sale starting tomorrow at https://t.co/ScCKJDKHdv!! https://t.co/AHuoOffWHp +10/21/2015,Sports_celeb,@TravisPastrana,RT @R2Rfoundation: Join us & the @NitroCircus crew Nov. 5th from 7-10pm at @k1speed in Torrance! https://t.co/PnG7qJva21 #RaceforRoner http… +10/09/2015,Sports_celeb,@TravisPastrana,#trustfall #lifeONtour @NitroCircus @sheenyfmx Filming credit to @Toddmeyn http://t.co/MTVdZkHQxK +09/26/2015,Sports_celeb,@TravisPastrana,Watch @JDayGolf’s crazy journey to the top of the golf world in #NeverSayDie https://t.co/TXso4c8efk +09/26/2015,Sports_celeb,@TravisPastrana,Happy birthday! https://t.co/NNeXhXqyNn +09/26/2015,Sports_celeb,@TravisPastrana,"RT @MikeAdamOnAir: .@TravisPastrana (from @NitroCircus) talks fears, family, and MORE! Watch: http://t.co/JNsxP6i5pu #TravisPastrana http:/…" +06/18/2015,Sports_celeb,@TravisPastrana,RT @redbull: #TBT to a sick @TravisPastrana backflip (at the 1:00 mark): http://t.co/xGQKviTFtB http://t.co/Xqx1ZA7fRm +06/07/2015,Sports_celeb,@TravisPastrana,"RT @FruitOfTheLoom: Travis got bucked, but stayed tucked. Check out his unbelievaBull #XGames performance. #TuckTest http://t.co/0UMvlb0PSL" +06/06/2015,Sports_celeb,@TravisPastrana,RT @FruitOfTheLoom: LIVE on #Periscope: @TravisPastrana rides our @FruitoftheLoom mechanical bull #TuckTest @XGames! #xgames https://t.co/x… +06/06/2015,Sports_celeb,@TravisPastrana,I’m about to ride a mechanical bull @XGames with @FruitoftheLoom. Watch live on #Periscope! #TuckTest #XGames +06/05/2015,Sports_celeb,@TravisPastrana,#XGames Correction: I’m riding the mechanical bull at the @FruitoftheLoom #TuckTest tent 3-5PM Sat. Pics + autographs too. See u there. +06/05/2015,Sports_celeb,@TravisPastrana,Hey all. I’ll be riding the mechanical bull @FruitoftheLoom’s #TuckTest event tomorrow at the #XGames from 5-7PM. Who’s in?! +06/03/2015,Sports_celeb,@TravisPastrana,"#Truth, I’m in the new @SkylandersGame SuperChargers trailer! #Skylanders http://t.co/Qof7Zy7egZ http://t.co/zxi35A64kP" +04/03/2015,Sports_celeb,@TravisPastrana,You can support @R2Rfoundation & win an exclusive VIP package to this year’s @MotoGP at @circuitamericas here http://t.co/AQc90sb6qs +04/02/2015,Sports_celeb,@TravisPastrana,"Looks like @mattwhyattrides and I have a different way to get ready for @nitrocircus.. 👍 @redbull +https://t.co/uMdlXrZXle" +03/30/2015,Sports_celeb,@TravisPastrana,Forgot about the steering wheel being on the right side of the car here in Australia.. http://t.co/vCltdBkmGw +03/26/2015,Sports_celeb,@TravisPastrana,"Having some fun in Australia with @wcmx4life +https://t.co/KQKVN6hRT2" +03/05/2015,Sports_celeb,@TravisPastrana,RT @KMCWheels: The #Mint400 Pit Crew Challenge presented by #KMCwheels is just over a week away. Here's a sneak peek at the... http://t.co… +02/17/2015,Sports_celeb,@TravisPastrana,"""On Any Sunday, The Next Chapter"" is now available and it's epic. Check out http://t.co/uBmDTGBfIy to watch it now. +https://t.co/a9W4Bs15I0" +01/29/2015,Sports_celeb,@TravisPastrana,Epic day w/ the @nitrocircus crew. @jedmildon knows how to build a roll in! His bmx jumps are bigger than fmx jumps http://t.co/cGeGh16UDr +01/27/2015,Sports_celeb,@TravisPastrana,"Here's to the next one billion views @redbull 👍👍 + +https://t.co/nQ1w9WJXaY" +01/18/2015,Sports_celeb,@TravisPastrana,Epic Sx lites race @minicoop175 impressive never giving up/riding his ass off @tbowers911 wins interview of year! rest of season will be fun +01/16/2015,Sports_celeb,@TravisPastrana,"Still pumped on the @redbull @PolarisRZR Camp Ride in Glamis with @BryceMenzies7, @rendawgfmx & @Levi_LaVallee https://t.co/LN863JtDeI" +12/18/2014,Sports_celeb,@TravisPastrana,Went to Abu Dhabi for a @nitrocircus show & stayed and filmed for the tv show. Epic adventures with the crew. http://t.co/rY71lGIjM2 +10/17/2014,Sports_celeb,@TravisPastrana,Great work as always by @redbull http://t.co/5vyW7urLD0 #artOfRacing #RedBullGRC +10/16/2014,Sports_celeb,@TravisPastrana,@NitroCircus @StreetBikeTommy @Erikroner @chadkagy @Special_Greg @raedrianalynne won my signed helmet - she tweeted through the pain! +10/16/2014,Sports_celeb,@TravisPastrana,"@raedrianalynne @NitroCircus we love working through the pain, so you're the winner of my signed helmet! send a DM to @NitroCircus to get it" +10/16/2014,Sports_celeb,@TravisPastrana,"@EpicSmurf_tw early 2016, we loved Glasgow and can't wait to get back" +10/16/2014,Sports_celeb,@TravisPastrana,@ChaseThomas_27 @NitroCircus what's up! #NitroCircusLive +10/16/2014,Sports_celeb,@TravisPastrana,@lawlessmatt3 get ready for the 2015 schedule announcement soon! +10/16/2014,Sports_celeb,@TravisPastrana,@shawnmacgregor @NitroCircus get ready for the announcement of new tour dates....... I think you are going to be pumped! #NitroCircusLive +10/16/2014,Sports_celeb,@TravisPastrana,"@chasegravens31 @NitroCircus they are specially built, but I am trying to get someone to make more of them, they are awesome" +10/16/2014,Sports_celeb,@TravisPastrana,"@KyleRamsey64 straight rhythm was awesome! 500cc 2 stroke, are you kidding #nitrocircuslive" +10/16/2014,Sports_celeb,@TravisPastrana,"@julia_a__ i didn't, but we coming back to Canada next year, so I want to!" +10/16/2014,Sports_celeb,@TravisPastrana,"@CassiFinkbeiner @StreetBikeTommy @Special_Greg @chadkagy @Erikroner The front flip is scary, but all the bicycle tricks scare me most" +10/16/2014,Sports_celeb,@TravisPastrana,@alexyess596 traveling the World with all your best friends is amazing! #nitrocircuslive +10/16/2014,Sports_celeb,@TravisPastrana,Is everybody ready for #nitrocircuslive on @MTV2 I've got a prize for someone at the end of the episode! +10/09/2014,Sports_celeb,@TravisPastrana,@NitroCircus @Rav_413 +10/09/2014,Sports_celeb,@TravisPastrana,@NitroCircus Rad Ravi got the helmet and signed poster! +10/09/2014,Sports_celeb,@TravisPastrana,"@Rav_413 well Rad Ravi.. Hopefully I'll get to meet you one day but until then, have fun and be safe! You r the winner of a new AGV helmet!" +10/09/2014,Sports_celeb,@TravisPastrana,@julia_a__ @StreetBikeTommy @chadkagy @Special_Greg @Erikroner @BilkoFMX Thanks for watching and being a part of it! +10/09/2014,Sports_celeb,@TravisPastrana,@BilkoFMX @kaelagonzalez16 @NitroCircus negative ghost rider! haha. I've done those and I hate them! but it's fun watching bilko! +10/09/2014,Sports_celeb,@TravisPastrana,@iluvracing42 @NitroCircus Not yet! just getting her on the strider! +10/09/2014,Sports_celeb,@TravisPastrana,@Hthomas80 @StreetBikeTommy @chadkagy @BilkoFMX @Special_Greg @Erikroner my parents. It's what we did as a family on the weekends growing up +10/09/2014,Sports_celeb,@TravisPastrana,@JoyLSvoboda @NitroCircus @StreetBikeTommy @BilkoFMX @Erikroner @Special_Greg The guys are good at crashing. surprisingly few injuries.. +10/09/2014,Sports_celeb,@TravisPastrana,@MelCross18 @NitroCircus we are always testing new ramps and landings. #ActionFiguresTheMovie will highlight a lot of what we hope to bring +10/09/2014,Sports_celeb,@TravisPastrana,@cjstrong34 @NitroCircus @Erikroner @StreetBikeTommy @chadkagy @Special_Greg @BilkoFMX Everyone sends it but @Madd_RWilly is ridiculous +10/09/2014,Sports_celeb,@TravisPastrana,@729IGH @lynzskate I need handlebars! haha. I'm so uncoordinated on boards. love to watch my wife on hers though. +10/09/2014,Sports_celeb,@TravisPastrana,@scotty33fleming @NitroCircus @Erikroner @StreetBikeTommy @chadkagy @Special_Greg @BilkoFMX The catering is amazing! I agree with erik! +10/09/2014,Sports_celeb,@TravisPastrana,@bfresh2424 Thanks! +10/09/2014,Sports_celeb,@TravisPastrana,@ABC4StormChaser it was pretty harsh. my head was only a few inches from the top of the truck so there wasn't much suspension upside down! +10/09/2014,Sports_celeb,@TravisPastrana,@ParadiseXxLostX @BilkoFMX @StreetBikeTommy @Special_Greg @chadkagy Getting to travel with friends + family and challenge yourself everyday +10/09/2014,Sports_celeb,@TravisPastrana,"@julia_a__ no sleep and trying to push yourself night after night when your tired. when one person gets sick on tour, everyone gets sick." +10/09/2014,Sports_celeb,@TravisPastrana,@HunterDillon19 it feels like every new stunt is the craziest! I think anytime you don't know what's going to happen feels equally bad! +10/09/2014,Sports_celeb,@TravisPastrana,@TinaThomsen4 @NitroCircus @Erikroner @StreetBikeTommy @BilkoFMX Nice Bilko. I do it because i get to be around my family and awesome people +10/09/2014,Sports_celeb,@TravisPastrana,@Bianca_X23 @StreetBikeTommy surprises a lot of people with his trampoline and drift skills.. but i was shocked he didn't roll the car! +10/09/2014,Sports_celeb,@TravisPastrana,@BALLER__15 @NitroCircus anyone passionate about their sport who's pushing the limits of what's been done in their sport will catch our eye. +10/09/2014,Sports_celeb,@TravisPastrana,@sparks99_1 @nitrocircuslive careful what you ask for! haha. been a lot of fun but scary! lots of new ramps and tricks with mixed results +10/09/2014,Sports_celeb,@TravisPastrana,@HulaSandia @t_yates1 @StreetBikeTommy @NitroCircus yeehaa! thanks for watching. +10/09/2014,Sports_celeb,@TravisPastrana,@OSnapItzAshley1 we never expected there would be so many people like us in the world. It's been an amazing ride and it keeps getting better +10/09/2014,Sports_celeb,@TravisPastrana,tweeting during World premiere of @NitroCircus Live Season4 on MTV2 @ 11pm ET. Use my @ & #nitrocircuslive 2 ask ? 1 will win an agv helmet +09/17/2014,Sports_celeb,@TravisPastrana,Wow #BJBaldwin really getting creative in his trophy truck! #recoilTWO http://t.co/YOTeVPPD1X +09/11/2014,Sports_celeb,@TravisPastrana,RT @redbull: .@TravisPastrana is in for Red Bull Straight Rhythm http://t.co/Ul7PdRucPp http://t.co/0F3M8o6ul2 +09/11/2014,Sports_celeb,@TravisPastrana,"Officially throwing my leg over the 500 RM-Zilla for @redbull #straightrhythm! http://t.co/3tGcIoV81V +https://t.co/kxVvk0hLOw" +08/21/2014,Sports_celeb,@TravisPastrana,Happy birthday @BryceMenzies7! http://t.co/C1ytEP3KoQ +08/21/2014,Sports_celeb,@TravisPastrana,RT @redbull: How long can you hold your breath? #RBHighPerformance takes athletes to new depths in Hawaii http://t.co/2aUdiuXUz6 http://t.c… +08/20/2014,Sports_celeb,@TravisPastrana,The ocean floor was over 100 feet down & 1/2 of us made the trip! #RBHighPerformance http://t.co/NUAQVWWPuM http://t.co/7F9q6GI3Ry +08/16/2014,Sports_celeb,@TravisPastrana,Stoked to see the @roushfenway #60 car in Victory Lane today at the #NCH200!! Congrats @Chris_Buescher! http://t.co/b8wYdMw94f +08/13/2014,Sports_celeb,@TravisPastrana,Submit your best off road pic using #PlayGroundEarthApproved & you could win a trip for 2 to the Vegas @LOORRS race http://t.co/u94rAdhGQF +08/05/2014,Sports_celeb,@TravisPastrana,First day of the #rbhighperformance free diving class. In the 4minute breath hold club with these guys! http://t.co/rSDUBsWnin +07/29/2014,Sports_celeb,@TravisPastrana,Thanks to @BFGoodrichTires for putting together this video from my #LOORRS debut http://t.co/3lnyzpLv9r #BFGRacing #BFGoodrich #BFGPlay +07/06/2014,Sports_celeb,@TravisPastrana,"RT @redbull: Tune in NOW as @RBSigSeries continues the action for #TheMint400onNBC! http://t.co/chUSLWFeKq +https://t.co/dNVnxgh271" +06/24/2014,Sports_celeb,@TravisPastrana,RT @BryceMenzies7: Make sure you tune into @nbc July 6th at 11am PST to watch @travispastrana & myself take on @themint400 @RBSigSeries htt… +06/16/2014,Sports_celeb,@TravisPastrana,RT @RBSigSeries: Watch @TravisPastrana kick up dirt with the best of them in #TheMint400onNBC July 6. http://t.co/4JeYbKxr35 +06/10/2014,Sports_celeb,@TravisPastrana,"In the 4 qualifying rounds I took 1st, 2nd, 3rd, & 4th in the semis. Thx to @srtusa for the epic car & all the work. http://t.co/xqfmAR8Kle" +06/06/2014,Sports_celeb,@TravisPastrana,Won my first heat race here at @XGames #Austin. My @redbull @srtusa #subaru is on point. Happy to be back in the hunt http://t.co/rXVY9qimv0 +06/05/2014,Sports_celeb,@TravisPastrana,I'm giving away 4 signed @kmcwheels that I'm running at @xgames this weekend. Click here for your chance to win http://t.co/PLSL9e6gR3 +05/21/2014,Sports_celeb,@TravisPastrana,Check out the @dcshoes DEFYCONVENTION \ 20 YEARS OF DC IN PHOTOGRAPHS book at: http://t.co/f4HTcMBZhn http://t.co/B9RHppuWMi +04/26/2014,Sports_celeb,@TravisPastrana,Almost time to go racing at @LOORRS with @MenziesRacing! Thanks for the tips @BryceMenzies7 and @therickyjohnson http://t.co/HhsZkd1FRf +04/25/2014,Sports_celeb,@TravisPastrana,RT @LOORRS: travispastrana - Getting some tech done. @menziesracing http://t.co/ZsZQs6d95a +04/24/2014,Sports_celeb,@TravisPastrana,"Hello #GKCfest! @trevorjacob93 invited us up for the shenanigans! Mx, bmx,ladder bridge road gaps for mtn bikes http://t.co/XkcaJfjQiP" +04/17/2014,Sports_celeb,@TravisPastrana,"RT @runnersworld: WATCH: @JSpithill, skipper of the yacht that won the America's Cup, shares his training regimen: http://t.co/jCpKMKgAaB #…" +04/17/2014,Sports_celeb,@TravisPastrana,RT @caseywasserman: I’m supporting the #RBCGolf4Kids Challenge. Who are you backing? http://t.co/bsSqjyvXeW I’m backing #RBCAmes #RBCMahan … +04/17/2014,Sports_celeb,@TravisPastrana,"My mom is the best.. ""Gram"" went all out for Addy's first Easter celebration! http://t.co/10G5mT5ic9" +04/02/2014,Sports_celeb,@TravisPastrana,What is your ultimate playground? Your best shots tagged with #UltimatePlayground could get you some great prizes http://t.co/NQFn4BCKdQ +03/21/2014,Sports_celeb,@TravisPastrana,RT @redbull: Who picked Kansas to take it to the house? This guy! Here's @TravisPastrana's #RedBullBracket http://t.co/NtCpz11pEt http://t.… +03/15/2014,Sports_celeb,@TravisPastrana,Almost time at the #mint400 @redbull http://t.co/9QgerM7c6n +03/14/2014,Sports_celeb,@TravisPastrana,RT @Swellboardshop: Now open Saturday March 15th in Mooresville off exit 31 and Hwy 77 at Langtree at the Lake. Stop by… http://t.co/mkedAo… +03/13/2014,Sports_celeb,@TravisPastrana,RT @redbull: Wings for Life #WorldRun: Barney’s everyday story: http://t.co/pYioSE9lO6 http://t.co/uq16AGDT85 +03/12/2014,Sports_celeb,@TravisPastrana,Want to win a signed piece of the truck I'm racing at @TheMint400Race? Enter here: http://t.co/4JFPRZ2Nxp +03/11/2014,Sports_celeb,@TravisPastrana,RT @redbull: Ever wondered how @TravisPastrana and @NitroCircus come up with their gnarly tricks? #WhatIf http://t.co/le8sVxTS1p http://t.c… +02/24/2014,Sports_celeb,@TravisPastrana,Can't wait to race my @MenziesRacing prepped TT at the #Mint400 with @BryceMenzies7 http://t.co/eoOfy6OWmo +01/26/2014,Sports_celeb,@TravisPastrana,RT @BryceMenzies7: Had such a sick time at @NitroCircus last night! http://t.co/DXdEqZSwCu +12/23/2013,Sports_celeb,@TravisPastrana,@T_Davidson543 happy birthday buddy +12/18/2013,Sports_celeb,@TravisPastrana,"BTW, don't know when @MTV2 is going to announce this, but we filmed 2 bonus eps in Russia - they'll be ready in early 2014! #nitrocircuslive" +12/18/2013,Sports_celeb,@TravisPastrana,Wasn't that the greatest episode of #nitrocircuslive on @MTV2 ? I can't wait for the next Pastranland fun! +12/18/2013,Sports_celeb,@TravisPastrana,@pfelgner #nitrocircuslive sure will be! You? +12/18/2013,Sports_celeb,@TravisPastrana,@sparks99_1 You bet I will! I wouldn't miss the North America tour! I'll be at all the tour stops! #nitrocircuslive +12/18/2013,Sports_celeb,@TravisPastrana,@jacobdover1 #nitrocircuslive thanks Jacob. Nitro Circus 3D was amazing - do you think we should film another one??!! +12/18/2013,Sports_celeb,@TravisPastrana,@Brian_McGuire77 #nitrocircuslive too many! +12/18/2013,Sports_celeb,@TravisPastrana,@iSlayTweeets #nitrocircuslive this was the week of the biggest tricks we've ever tried. Need to perfect them now - few too many crashes! +12/18/2013,Sports_celeb,@TravisPastrana,@sam_mangine @NitroCircus #nitrocircuslive we are all so excited to be touring the USA - we have been waiting years for this! +12/18/2013,Sports_celeb,@TravisPastrana,@dhaniaa27 #nitrocircuslive because I am the slowest typer and get easily distracted watching TV! +12/18/2013,Sports_celeb,@TravisPastrana,@AgAmbergray17 @MTV2 @nitrocircuslive #NitroCircusLive it's going to get really crazy in this episode! +12/18/2013,Sports_celeb,@TravisPastrana,"@jenkinscaleb45 @NitroCircus #NitroCircusLIve It's a great place - I love being home, but especially love being home with all my friends!" +12/18/2013,Sports_celeb,@TravisPastrana,"Looking forward to actually being able to watch #NitroCircusLive on @MTV2 tonight! Happy to be back home, and tonight's ep is Pastranaland!" +12/11/2013,Sports_celeb,@TravisPastrana,Hope everyone liked that episode - next week's Tuesday @MTV2 show is a week of fun at my house - Pastranaland #NitroCircusLive +12/11/2013,Sports_celeb,@TravisPastrana,@julia_a__ @nitrocircuslive #NitroCircusLive we are a pretty well behaved bunch overall +12/11/2013,Sports_celeb,@TravisPastrana,"@Lucas_H38 @NitroCircus #NitroCircusLIve you'd love it, we all do" +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive It's about 55ft high - it is a long way down from up there +12/11/2013,Sports_celeb,@TravisPastrana,@JohnMcL25 @NitroCircus #NitriCircusLive Evel Knievel was an amazing inspiration +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive VIPs at the show get to ask me questions after practice is finished. It's really a fun time +12/11/2013,Sports_celeb,@TravisPastrana,@AndrewTHampson @NitroCircus #NitroCircusLive NO WAY! I have the greatest job in the WORLD! +12/11/2013,Sports_celeb,@TravisPastrana,@EmilC2012 #NitroCircusLive we are progressing all the time - double back is on our list - Dusty?! +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @NitroCircus #NitroCircusLive not know what is going to happen next - every day is amazing +12/11/2013,Sports_celeb,@TravisPastrana,"@minihorsey one day, one day! #NitroCircusLive" +12/11/2013,Sports_celeb,@TravisPastrana,@emilykateTJK @nitrocircuslive @NitroCircus #NitroCircusLive looking forward to see you in Cleveland too! +12/11/2013,Sports_celeb,@TravisPastrana,@JoyLSvoboda @MTV2 #NitroCircusLive my favorite tour is coming right up! Our first tour of North America +12/11/2013,Sports_celeb,@TravisPastrana,"@julia_a__ @NitroCircus #NitroCircusLive I think the most inspirational is Wheelz, bravest are all the Godfrey Clan - so crazy!" +12/11/2013,Sports_celeb,@TravisPastrana,"@julia_a__ @NitroCircus I love to ride dirt bikes, play Big Buck Hunter and have fun with my friends! That's my job too!" +12/11/2013,Sports_celeb,@TravisPastrana,#NitroCircusLive Australia and New Zealand on the World Tour! @MTV2 +12/10/2013,Sports_celeb,@TravisPastrana,"Don't forget #NitroCircusLive MTV2 show at 11pm EST tonight. That'll be early for me - Showtime in Lille, France now! http://t.co/Csjr4iWLpR" +12/10/2013,Sports_celeb,@TravisPastrana,#nitrocircuslive time on MTV2 tomorrow night! I'll be here to answer all your questions. http://t.co/4CX54LOf3W +12/04/2013,Sports_celeb,@TravisPastrana,"Hope everyone enjoyed the @MTV2 shows tonight! See you again next week - same time, same place! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,@crashbobx pretty early in January - see you in Cleveland #nitrocircuslive +12/04/2013,Sports_celeb,@TravisPastrana,congrats to @jenn_salmon on winning a pair of tickets! DM @NitroCircus to get them sorted. Hope to see you at the show! +12/04/2013,Sports_celeb,@TravisPastrana,"@AMBERrLLOYD it's our first US tour, so all of them! We are all so pumped to be able to bring the shows home #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@Temulentus yes, we are stoked to be coming - Europe, then North America, Mexico and then South Africa! So much fun in the next 2 months" +12/04/2013,Sports_celeb,@TravisPastrana,"@nitrogirl199 @jolenevanvugt63 Bilko, Bilko and Bilko! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@AmberL_87 travel is amazing - we've been in Sweden, Norway, Germany, UK, Holland all in the last 10 days! #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@QueenMargaret99 We love Drop Kick Murphys - I've been to see them in concert, they're awesome live #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@AMBERrLLOYD not embarrassed, but we get determined to land them next time #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,"@FossBrian I'm going to be at Nitro City, but I know that Dusty is going and Haffey I think #NitroCircusLive" +12/04/2013,Sports_celeb,@TravisPastrana,@MikeGosnell314 grab VIP tickets to the North America shows and we will meet up. Watch out for episode 6 - all Pastranaland! +12/04/2013,Sports_celeb,@TravisPastrana,@Ghenneberry47 I think that everytime Wheelz lands his flip is my favorite part of the show #NitroCircusLive +12/04/2013,Sports_celeb,@TravisPastrana,"@MydoLeS #nitrocircuslive you missed 4 amazing shows in the UK, but we will be back for sure" +12/04/2013,Sports_celeb,@TravisPastrana,"@michellemitchh that's awesome, you will have the best time! #nitrocircuslive MSG show is going to rock!" +12/04/2013,Sports_celeb,@TravisPastrana,@ferrisMueller14 @Ghenneberry47 responding! #NitroCircusLive +12/04/2013,Sports_celeb,@TravisPastrana,@AMBERrLLOYD #nitrocircuslive I love traveling around the World! I have the best job ever - all my friends are with me too! +12/04/2013,Sports_celeb,@TravisPastrana,"@MydoLeS too many painful injuries, but I'm feeling great on tour now" +12/04/2013,Sports_celeb,@TravisPastrana,@larrysdildo_ @NitroCircus #nitrocircuslive sweet! Merry Christmas everybody! +12/04/2013,Sports_celeb,@TravisPastrana,@bigdogsk84life1 #nitrocircuslive you just need to be one of the most amazing action sports athletes in the World - or Tommy - or Crum +12/04/2013,Sports_celeb,@TravisPastrana,"@Brannddonnn Awesome, see you there" +12/04/2013,Sports_celeb,@TravisPastrana,@BecsterD @jolenevanvugt63 @NitroCircus #nitrocircuslive you are so right! I just texted her! +12/04/2013,Sports_celeb,@TravisPastrana,@Brannddonnn I am so looking forward to the MSG show! Can you imagine how pumped we are going to be??? Nitro Circus in MSG!!! +12/04/2013,Sports_celeb,@TravisPastrana,@julia_a__ @jolenevanvugt63 @NitroCircus We get the best food from our excellent caterers - they follow us on tour +12/04/2013,Sports_celeb,@TravisPastrana,"wake up, #nitrocircuslive time!!!!" +12/04/2013,Sports_celeb,@TravisPastrana,RT to WIN a pair of #NitroCircusLive tickets & tune in to back 2 back episodes of #NitroCircusLive 2nite on @MTV2 at 11/10c. +12/03/2013,Sports_celeb,@TravisPastrana,"I dont know what is better, Tommy being a Panda or new #NitroCircusLive episodes 2nite. I guess U get both 2nite! http://t.co/EI6eVkswTC" +12/03/2013,Sports_celeb,@TravisPastrana,I almost forgot to mention we will be giving away a pair of #NitroCircusLive tix as well as some Nitro and @EVSsports gear! Talk 2 U 2Nite! +12/03/2013,Sports_celeb,@TravisPastrana,I will be on here 2nite answering Q’s during the #NitroCircusLive episodes on @MTV2. 11/10c don’t forget to join in & watch the show! +12/03/2013,Sports_celeb,@TravisPastrana,"Just for you, we are doing another week of back2back #NitroCircusLive episodes. Tomorrow 11/10c on @MTV2 - Tweet me Q's during the show." +12/03/2013,Sports_celeb,@TravisPastrana,The #NitroCircisLive crew gets wild for the first time in Hong Kong! New episode tomorrow on @MTV2 at 11/10c. http://t.co/UvqBV055yj +11/30/2013,Sports_celeb,@TravisPastrana,RT @DirtFishRally: Book a 1/2 day class or longer at http://t.co/O8vbtR0PaJ and get the @TravisPastrana 199 pack http://t.co/zr2bZKSk1u htt… +11/27/2013,Sports_celeb,@TravisPastrana,"I'm going back to bed now! See you guys next week @mtv2 or #nitrocircuslive in Birmingham, UK on Thursday!!! Hope you enjoyed the show" +11/27/2013,Sports_celeb,@TravisPastrana,@Billydrski I can't wait to bring #nitrocircuslive home to North America in January!!!! +11/27/2013,Sports_celeb,@TravisPastrana,@Matts_Insanity Yes I am! Manchester show was off the hook last night! It's way too early now #nitrocircuslive touring life! Love it! +11/27/2013,Sports_celeb,@TravisPastrana,I know the #1 epic win! #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@vancoller23 @NitroCircus @jolenevanvugt63 @nitrocircuslive @MTV2 Yes! South Africa after North America in early 2014. #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,"@recklessrick514 @nitrocircuslive #nitrocircuslive we will be in MD in 2015, don't worry!" +11/27/2013,Sports_celeb,@TravisPastrana,@Bianca_X23 That trick is never easy and always scary +11/27/2013,Sports_celeb,@TravisPastrana,@bram_smith69 I'm so pumped to be riding my dirt bike again in #nitrocircuslive Europe tour - can't wait for North America in January!! +11/27/2013,Sports_celeb,@TravisPastrana,@julia_a__ Tune into episode 6 from my house - double flips and more! +11/27/2013,Sports_celeb,@TravisPastrana,"@Bianca_X23 Fail or win, as long as it is epic!" +11/27/2013,Sports_celeb,@TravisPastrana,@AMBERrLLOYD @NitroCircus @jolenevanvugt63 The #nitrocircuslive crew are the greatest - we have more fun together than should be allowed! +11/27/2013,Sports_celeb,@TravisPastrana,@77pedro77 I don't think I'll ever be a golfer! Maybe we can race golf carts like in New Zealand on #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@Himmself245 Yes you do! #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,"@mattportugal @Himmself245 Well, stay up and watch! It's 4.20am in the UK, and I'm hanging!" +11/27/2013,Sports_celeb,@TravisPastrana,@LowDogg1978 @nitrocircuslive We'll be coming to the south in 2015 +11/27/2013,Sports_celeb,@TravisPastrana,"@77pedro77 After a day in the foam pit, the ice bath is needed - never nice, but needed! #nitrocircuslive" +11/27/2013,Sports_celeb,@TravisPastrana,@facu_moy We are planning to come to Argentina soon #nitrocircuslive +11/27/2013,Sports_celeb,@TravisPastrana,@michellemitchh I am so pumped to be coming home with #nitrocircus in january 2014 +11/27/2013,Sports_celeb,@TravisPastrana,It's #nitrocircuslive time! +11/27/2013,Sports_celeb,@TravisPastrana,RT to Win a pair of #NitroCircusLive tickets & tune in to the #NitroCircusLive Season 3 Premiere 2nite on @MTV2 at 11/10c. +11/14/2013,Sports_celeb,@TravisPastrana,Congrats Bryce! RT @BryceMenzies7 I’ll be first off the line when the green flag drops on Friday for the #Baja1000 http://t.co/h05Sv3EaQ5 +11/11/2013,Sports_celeb,@TravisPastrana,My official statement concerning my future in @NASCAR https://t.co/j3IzXMOnR3 +11/08/2013,Sports_celeb,@TravisPastrana,Awesome hanging with Lucas this morning drawing pictures 2 be auctioned off 2 benefit kids like him who have Alpha-1 http://t.co/pfzAqcUWcw +11/08/2013,Sports_celeb,@TravisPastrana,RT @DirtFishRally: Stoked to see @TravisPastrana move onto the @GlobalRallyX main event here in Vegas +11/07/2013,Sports_celeb,@TravisPastrana,Stoked to announce #Nitrocircuslive Season 3 is hitting US TV Screens on @MTV2 from November 26th! Going to be the craziest season yet! +11/05/2013,Sports_celeb,@TravisPastrana,"Fun day with my girls @lynzskate, #AddyPastrana, and brother from another country @simontabron. #MrMom http://t.co/scrtLXJNVD" +11/01/2013,Sports_celeb,@TravisPastrana,Thanks to everyone at @KMCWheels for all the support this year! Car looks good for texas! http://t.co/DNXQrw4SqA +10/25/2013,Sports_celeb,@TravisPastrana,Going to be a good day! http://t.co/fRzKKa3BOa +10/22/2013,Sports_celeb,@TravisPastrana,. @EvsSports hooked up the #Pastranaland helmet collection! Thanks for keeping the @nitrocircus crew safe! http://t.co/LU1TWHojIL +10/18/2013,Sports_celeb,@TravisPastrana,So many of my hero's in 1 place! Great times last night at @alpinestars 50th anniversary party. Proud 2 b part of it http://t.co/Dp40DNWtHz +10/15/2013,Sports_celeb,@TravisPastrana,B.A.S.E jumping in Twin Rivers and two stroke week at @CRtwotwo's house in FL in the season finale of On Pace https://t.co/HU2d8VluKt +10/10/2013,Sports_celeb,@TravisPastrana,Proud of my wife @lynzskate. She qualified 1st 4 the #betterhalfdash. It's tonight at 530pm est. u can listen live on http://t.co/Rj3SyedhIl +10/09/2013,Sports_celeb,@TravisPastrana,I have the best mom! 30 years old and she's still making me car cakes! Guess I never really grew up. http://t.co/2gRX0LgxKv +10/07/2013,Sports_celeb,@TravisPastrana,New photos are up from this weekend at @kansasspeedway https://t.co/VIUuw7DmHY +10/02/2013,Sports_celeb,@TravisPastrana,"My buddy Knoxville & @dickhouseworld really hit a home run with this film. If u need a laugh, check out the trailer. http://t.co/uRXCmB76Av" +10/01/2013,Sports_celeb,@TravisPastrana,#BetterHalfDash practice last night. @lynzskate was quickest but all ladies within a half second! Excited 4 the race http://t.co/flrwBfLpUX +09/26/2013,Sports_celeb,@TravisPastrana,"Thanks to all my awesome sponsors 4 their support with Addy. Bottles, blankets, & bibs from @OGIO #SponsoredAtBirth http://t.co/Ild56ruyHW" +09/25/2013,Sports_celeb,@TravisPastrana,Congrats to my @redbull teammate @OracleTeamUSA Skipper @JSpithill on winning the @americascup today! http://t.co/ALZEoHym9L +09/24/2013,Sports_celeb,@TravisPastrana,"I'm helping @ClaireBLang & @SiriusXMNASCAR raise money for @The_USO Friday, 7- 9p ET @MonsterMile! Join us? Details: http://t.co/0m26pDO8TT" +09/20/2013,Sports_celeb,@TravisPastrana,First flight as a family. glad Addy likes planes. Just landed in Kentucky 4 NASCAR. Racing GRC Sunday in Charlotte. http://t.co/inqyF1gCIm +09/19/2013,Sports_celeb,@TravisPastrana,The guys installed a @redbull refrigerator next to my locker in the @Dodge #dart hauler! Awesome team! Thanks guys. http://t.co/xbclibOUr6 +09/18/2013,Sports_celeb,@TravisPastrana,The @Dodge #dart is almost ready 4 the @GlobalRallyX race at @CLTMotorSpdwy Sunday. Thanks 2 @DrivePetty 4 the help! http://t.co/z9Uzoqqi16 +09/17/2013,Sports_celeb,@TravisPastrana,"A @NASCAR_NNS race, @Dhdsjim's wedding, our baby shower and some pit bikes make for a crazy weekend - http://t.co/H7rEnWT7jX" +07/01/2018,Sports_celeb,@derekhough,This ladies brought the heat to our @NBCWorldofDance stage! 🔥https://t.co/Y84OdgDuOo +06/30/2018,Sports_celeb,@derekhough,"You won't believe this dancer's age! #WorldofDance +https://t.co/3UlsQRgRcu" +06/30/2018,Sports_celeb,@derekhough,"Eye on the prize +In a world filled with distractions, stay focused on your goals and dreams. Be relentless! Be reso… https://t.co/g7tNDFYawh" +06/29/2018,Sports_celeb,@derekhough,RISE https://t.co/CRqZiuUzS0 +06/28/2018,Sports_celeb,@derekhough,"THE TOUR +I’m coming to your city. +Get your tickets now! +LINK IN BIO ☝🏼 @ Everywhere https://t.co/CPsPlX6rjt" +06/28/2018,Sports_celeb,@derekhough,"“Listen closely and you will hear whisperings. +Follow them, and eventually you will discover +a voice so distinct in… https://t.co/eKlV1jiNBs" +06/27/2018,Sports_celeb,@derekhough,"Driving back from the beach and Celine decided to make an encore on the playlist. I was like “ Oh dang, Celine sang… https://t.co/zdXaqZ1uqR" +06/27/2018,Sports_celeb,@derekhough,Checking out the most viral dance videos on the internet with @SELFmagazine https://t.co/lfzO3EyLhM +06/27/2018,Sports_celeb,@derekhough,Thanks @charlesthorp! Check it out 👇 @MensJournal https://t.co/RYzaHQc27i +06/27/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Time travel is REAL. Don’t @ us. #WorldofDance https://t.co/XTxlw3iZLZ +06/27/2018,Sports_celeb,@derekhough,RT @adriana_salico: Setting the stage on fire!! 🔥🔥 @NBCWorldofDance https://t.co/RCNy1Lpm1y +06/27/2018,Sports_celeb,@derekhough,"RT @NBCWorldofDance: First things first, @EmbodimentTHEco is owning the #WorldofDance stage dancing to “Believer” by @Imaginedragons! +htt…" +06/27/2018,Sports_celeb,@derekhough,"RT @NBCWorldofDance: Talk about a comeback kid!!! Against all odds, @royalfluxdance is dancing their way into Duels! Who else is inspired?…" +06/27/2018,Sports_celeb,@derekhough,Another amazing episode of @NBCWorldofDance tonight !!!! Who was your favorite ? +06/26/2018,Sports_celeb,@derekhough,Just wait until you see what's next! #WorldofDance https://t.co/MC8hRUVDpO +06/26/2018,Sports_celeb,@derekhough,"🔥 Don’t forget to watch TONIGHT +@nbc 10/9C nbcworldofdance @ Los Angeles, California https://t.co/CezJ7WyMly" +06/26/2018,Sports_celeb,@derekhough,What do you all think of tonight’s episode of #runningwild with @BearGrylls ? https://t.co/7CKqOtb8if +06/26/2018,Sports_celeb,@derekhough,"About to go live on @peopletv’s #chatter to talk @NBCWorldOfDance, my tour, and more! Check it out here: https://t.co/lJFB2D6cDB" +06/25/2018,Sports_celeb,@derekhough,"“We’re really doing this” #runningwild +8/7c @NBC https://t.co/Mgn1JGIuZi" +06/25/2018,Sports_celeb,@derekhough,Natures cold plunge ❄️ #runningwild tonight on @nbc 8/9C @BearGrylls https://t.co/ADkM969qIO +06/24/2018,Sports_celeb,@derekhough,Tomorrow on @nbc 8/9c check out my epic adventure with @BearGrylls https://t.co/iIHnpFYKKd +06/24/2018,Sports_celeb,@derekhough,Thank you to everyone supporting the tour! All info at https://t.co/EZiF20Peuo https://t.co/fP1xzHIQnk +06/24/2018,Sports_celeb,@derekhough,Wow ! Such a brilliant and creative project. The first ever novel that incorporates dance within the book to move t… https://t.co/BJXJyiF3eP +06/23/2018,Sports_celeb,@derekhough,"This Monday don’t forget to catch me in the wilderness with my man @beargrylls ! nbcrunningwild @nbc @ Los Angeles,… https://t.co/tXbAslgS2I" +06/23/2018,Sports_celeb,@derekhough,Every performance is more shocking than the last! Don't miss @nbcworldofdance Tuesday. https://t.co/wSCmueJ0Ge +06/23/2018,Sports_celeb,@derekhough,"Thank you for the nomination my beautiful peeps! Love all my fans 🤟🏼#choicedancer @teenchoicefox +Link in bio to vo… https://t.co/Z49HLMnBpC" +06/22/2018,Sports_celeb,@derekhough,"This @nbcworldofdance performance made my heart soar! + https://t.co/6Pm0P5y5Ia" +06/21/2018,Sports_celeb,@derekhough,I tried to change the music but Hayley slapped… https://t.co/BpTzGCbaL5 +06/21/2018,Sports_celeb,@derekhough,Are you ready?! Because you know I am! Life in Motion is officially here and I couldn’t be more excited to share an… https://t.co/ilSqwCbtCV +06/21/2018,Sports_celeb,@derekhough,🔵Thursday advanced looking into the distance… https://t.co/Mm7T8Lagoy +06/20/2018,Sports_celeb,@derekhough,"Be still my beating ❤️ +@ShaniaTwain @NicoleScherzy @lipsyncbattle https://t.co/ifj6Wp7KTj" +06/20/2018,Sports_celeb,@derekhough,Constantly thinking of new ways to create and entertain for this new tour. If you haven't got your tickets or VIP p… https://t.co/4PoYkJpfpo +06/20/2018,Sports_celeb,@derekhough,ITS ON!!! @lsb nicolescherzinger shaniatwain @… https://t.co/Uzhmhs94dn +06/20/2018,Sports_celeb,@derekhough,Who was your favorite from tonight’s episode ? +06/20/2018,Sports_celeb,@derekhough,Your Move https://t.co/IsckwI0fpg +06/20/2018,Sports_celeb,@derekhough,Absolute BEAST ! https://t.co/2hxrn3anRt +06/20/2018,Sports_celeb,@derekhough,I’m flattered :) https://t.co/QDSwJ0kyOM +06/20/2018,Sports_celeb,@derekhough,Nailed it ! https://t.co/Imt5ausEPm +06/20/2018,Sports_celeb,@derekhough,Who’s watching @worldofdance right now ?? It’s mind blowing https://t.co/fNN2aME36L +06/20/2018,Sports_celeb,@derekhough,RT @JLo: Y’all ready for @evaigo?? #worldofdance +06/19/2018,Sports_celeb,@derekhough,Who's watching with me? #WorldofDance +06/19/2018,Sports_celeb,@derekhough,Look who's back! We're turning up the heat tonight! Don't miss @NBCWorldofDance at 10/9c. 🔥 https://t.co/uXSqLeYZp9 +06/19/2018,Sports_celeb,@derekhough,When you see the waiter bringing your food… https://t.co/jSYTcgUHLv +06/19/2018,Sports_celeb,@derekhough,"TOMORROW +This show elevates dance to another… https://t.co/MjC3ujEd1V" +06/18/2018,Sports_celeb,@derekhough,"RT @ShaniaTwain: Had a blast on @LSB with @derekhough, @NicoleScherzy, @llcoolj & @chrissyteigen! Tune in Thursday 10:30/9:30c on @Paramoun…" +06/18/2018,Sports_celeb,@derekhough,Monday Morning Stretch with the boy @ Los… https://t.co/eF7RKCasHh +06/17/2018,Sports_celeb,@derekhough,Who grabbed tickets already? https://t.co/urPiiDG2HS +06/17/2018,Sports_celeb,@derekhough,I’m so thankful to have such a great father to… https://t.co/PhNXulDk5v +06/16/2018,Sports_celeb,@derekhough,"“Had to cut a man down to get where I am” +(The… https://t.co/nlV7mhlvqP" +06/15/2018,Sports_celeb,@derekhough,"All tickets are onsale now! Go to https://t.co/EZiF216PlW for all tour dates, ticket & VIP information! https://t.co/411t1R4g3D" +06/14/2018,Sports_celeb,@derekhough,"My new show, Life in Motion, premieres June 21! I'm bringing you my best tips on how to infuse energy into every a… https://t.co/gMDmTfKiei" +06/14/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Our resident #WorldofDance bae @derekhough is nominated for a #TeenChoice award! #Retweet to vote for him for #ChoiceT… +06/13/2018,Sports_celeb,@derekhough,Exclusive pre-sale tickets for the Derek Hough Live Tour are available now! Sign up on my website to get access! https://t.co/KLQU0sFyBn +06/13/2018,Sports_celeb,@derekhough,RT @klgandhoda: Here's how @derekhough motivates himself when he's feeling too tired to move https://t.co/TpQQkFXeQ7 +06/13/2018,Sports_celeb,@derekhough,"Stop and smell the roses @ New York, New York https://t.co/Y7Bu95QJXB" +06/13/2018,Sports_celeb,@derekhough,My man @jimmyfallon rockin an off the cuff pretzel move ! #untucked https://t.co/jpUy4o0Pxu +06/13/2018,Sports_celeb,@derekhough,"Go check it out at +https://t.co/mapK8rugoA https://t.co/l6HxRw4mDt" +06/13/2018,Sports_celeb,@derekhough,If you wanna learn the foundation and… https://t.co/zAc4zwhczv +06/12/2018,Sports_celeb,@derekhough,We're ready. Are YOU??? #WorldofDance https://t.co/qSF0SQwoFM +06/12/2018,Sports_celeb,@derekhough,Stanky performances tonight on nbcworldofdance… https://t.co/8qzrMn9gUc +06/12/2018,Sports_celeb,@derekhough,Tonight. Is. The. Night! @NBCWorldofDance at 10/9c. Let's do this! 🙌 https://t.co/cji0peqhbT +06/11/2018,Sports_celeb,@derekhough,RT @etnow: .@derekhough is heading out on his first-ever solo tour! ET has the exclusive details. https://t.co/rTPzHoMtA3 +06/11/2018,Sports_celeb,@derekhough,"RT @KristynBurtt: This tour is a big deal. For a solo dancer to headline a 60-city tour is no joke. + +I am going to guess the last time the…" +06/11/2018,Sports_celeb,@derekhough,"It’s official ladies and gentlemen!!! +I’m… https://t.co/uTFyqi2Qwu" +06/10/2018,Sports_celeb,@derekhough,"We've got dancers from all over the world! See you TUESDAY for @NBCWorldofDance. 💃 +https://t.co/at3dlWewLt" +06/10/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Helping your friend hang a picture frame like. 😂 #WorldofDance https://t.co/K5vj24Rco6 +06/10/2018,Sports_celeb,@derekhough,"#mood @ Los Angeles, California https://t.co/pbwkrMQF20" +06/09/2018,Sports_celeb,@derekhough,"These guys are bringing some flavor.🔥 +https://t.co/Y4esowZwJS" +06/09/2018,Sports_celeb,@derekhough,"Monday June 11th +BIG ANNOUNCEMENT my friends!!!… https://t.co/IPd5xz0yw1" +06/08/2018,Sports_celeb,@derekhough,"So smoooooth. #WorldofDance +https://t.co/WIFcfCRyVp" +06/07/2018,Sports_celeb,@derekhough,"Check it out! + +https://t.co/pfYw1KpziN" +06/07/2018,Sports_celeb,@derekhough,Can I have this dance? I’ll teach you… https://t.co/tMnJs6VxhC +06/07/2018,Sports_celeb,@derekhough,"BIG NEWS COMING UP MY FRIENDS! +Sign up to be… https://t.co/urRAkEsSaG" +06/07/2018,Sports_celeb,@derekhough,@deaconblade @NBCWorldofDance thank you my man!!!! 👊🏼🕺🏼 +06/06/2018,Sports_celeb,@derekhough,Here we go !!!! https://t.co/1tp0nTxPw2 +06/06/2018,Sports_celeb,@derekhough,Tonight’s show was off the Charts!!!! West coast y’all can’t miss it! @NBCWorldofDance +06/06/2018,Sports_celeb,@derekhough,"Also, any one catch @JLo calling me ‘baby’ ? I love you too J money:))) ❤️🕺🏼" +06/06/2018,Sports_celeb,@derekhough,"Fabulous Sisters !!!!! Dramatic, magical, clean, strong...holy moly!!! Loooooved it!!!" +06/06/2018,Sports_celeb,@derekhough,"@BDashSK @Konkrete510 Slick!! Loved it fellas! Strong, clean, innovative and loved that hat choreo!" +06/06/2018,Sports_celeb,@derekhough,@BDashSK @Konkrete510 lets go!! +06/06/2018,Sports_celeb,@derekhough,I'm with yah👍🏼😮 https://t.co/t6UqOAzBh0 +06/06/2018,Sports_celeb,@derekhough,@CharityandAndr1 you 2 are exceptional !!!! Stunning. Wow!!! I loved it https://t.co/wAQCQuRvga +06/06/2018,Sports_celeb,@derekhough,"Stop wishing for it ! +Start working for it ! +@NBCWorldofDance @CharityandAndr1" +06/06/2018,Sports_celeb,@derekhough,We got sparkly cups !!! Haha thanks @JLo https://t.co/XXfvUE5yKi +06/06/2018,Sports_celeb,@derekhough,Yo his face killed me during the whole routine! Haha . Love the music breakdowns. Very clean @connectioncrew_ https://t.co/lsC4fscDIv +06/06/2018,Sports_celeb,@derekhough,@connectioncrew_ let’s go fellas! +06/06/2018,Sports_celeb,@derekhough,@pashapashkov86 @DKaragach I’m looking forward to seeing what else these two have in store. Beautiful quality of movement. +06/06/2018,Sports_celeb,@derekhough,@InTheLab247 INCREDIBLE !!!! What I love about this competition is that you can come back and come back even stron… https://t.co/ErOvupaZAw +06/06/2018,Sports_celeb,@derekhough,Pumped!!! @NBCWorldofDance https://t.co/dgGOYSb4o7 +06/06/2018,Sports_celeb,@derekhough,Gonna be Live tweeting!!!! Right NOW ! +06/05/2018,Sports_celeb,@derekhough,Come hang out with the fellas ! https://t.co/07Drd6Xk1c +06/05/2018,Sports_celeb,@derekhough,Head over to my Instagram at 9pm ET/6pm PT - I'm going LIVE with @NeYoCompound ahead of tonight's all new… https://t.co/5jXZJNCavq +06/04/2018,Sports_celeb,@derekhough,"Check out the latest LEAK from @NBCWorldofDance - new episode tomorrow at 10/9c on NBC! +https://t.co/IrCEzVLg9I" +06/02/2018,Sports_celeb,@derekhough,RT @JLo: ❤️❤️❤️ https://t.co/7BiqP3wKiA +05/30/2018,Sports_celeb,@derekhough,West Coast !!! Tune in to NBC now!!! Don’t miss… https://t.co/Agrai6Vw01 +05/30/2018,Sports_celeb,@derekhough,What an amazing premiere! This season is going to be EPIC! @NBCWorldofDance @JLo @NeYoCompound @jennadewan #WorldofDance +05/30/2018,Sports_celeb,@derekhough,Karen y Ricardo had me out of my seat!!! This spins! 🔥🔥 #WorldofDance +05/30/2018,Sports_celeb,@derekhough,I’m having a think there https://t.co/C2gS6ddsJU +05/30/2018,Sports_celeb,@derekhough,The emotion... Powerful! #WorldofDance +05/30/2018,Sports_celeb,@derekhough,All these dancers are crushing it! Who’s been your favorite so far? #WorldOfDance +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: Hiiiii @DerekHough! RETWEET if you’ve missed this face. 😍 #WorldofDance https://t.co/Nh9pW82lTY +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: When someone asks if you’re loving the #WorldofDance Premiere! 😏 https://t.co/ooEkjRPORd +05/30/2018,Sports_celeb,@derekhough,RT @NBCWorldofDance: THIS IS A MOOD. ☝️ #WorldofDance https://t.co/TECXBU68vC +05/30/2018,Sports_celeb,@derekhough,Way to start off the @NBCWorldofDance @OffDesiHoppers #nailedit +05/30/2018,Sports_celeb,@derekhough,HERE WE GO!! @NBCWorldofDance @JLo @NeYoCompound @jennadewan #WorldofDance +05/30/2018,Sports_celeb,@derekhough,Who’s ready for the season 2 premiere of @NBCWorldofDance tonight?! #WorldofDance +05/29/2018,Sports_celeb,@derekhough,Tonight’s the night! Tune in to NBC at 10/9c for Season 2 of @NBCWorldofDance!! https://t.co/IH5nTyNKe4 +05/29/2018,Sports_celeb,@derekhough,Typical #WOD photo shoot with the crew. @jlo… https://t.co/pWbksDXeIG +05/29/2018,Sports_celeb,@derekhough,Scoping out the new and improved set for… https://t.co/8Pe2WDpPry +05/28/2018,Sports_celeb,@derekhough,Thankful for all the hero’s and their families… https://t.co/TBObREEBeC +05/26/2018,Sports_celeb,@derekhough,Lost footage of me as a kid 😂 https://t.co/8rAkZX9EWd +05/24/2018,Sports_celeb,@derekhough,Happy Birthday to my brotha @markballas !!!!… https://t.co/Iq4qBLcLvg +05/24/2018,Sports_celeb,@derekhough,Tune in tonight on @nbc to help raise money for… https://t.co/Y6sWPa4IHl +05/24/2018,Sports_celeb,@derekhough,Check out this leaked @NBCWorldofDance performance - season 2 is 5 days away! https://t.co/3JN8XAnOQU +05/24/2018,Sports_celeb,@derekhough,"ENTHUSIASM IS THE SACRED FIRE +The goal can be… https://t.co/zzNAXquQaM" +05/22/2018,Sports_celeb,@derekhough,We are not playin around for season 2 of @NBCWorldofDance! https://t.co/GufbYsg6yc +05/22/2018,Sports_celeb,@derekhough,"Legend!!! +Sir Andrew Loyd Webber ladies and… https://t.co/erS2plErQs" +05/22/2018,Sports_celeb,@derekhough,Blue https://t.co/Cb1zYKMD8q +05/21/2018,Sports_celeb,@derekhough,My lil man littlehankwilliam showing me how to… https://t.co/JXJ2K2SBpn +05/21/2018,Sports_celeb,@derekhough,"The performance you've all been waiting for - tomorrow! +https://t.co/Y1dPjbzErY" +05/21/2018,Sports_celeb,@derekhough,"Absolutely smashed it! Love my girl J, she Never disappoints. #dinero @jlo #bbmas https://t.co/V2lEN7JI1Z" +05/20/2018,Sports_celeb,@derekhough,Fun flight with these fine people. On our way… https://t.co/paC9eCP4BY +05/18/2018,Sports_celeb,@derekhough,"Check out the @NBCWorldofDance performance that made @JLo cry +https://t.co/XiUZTBC3rp" +05/18/2018,Sports_celeb,@derekhough,She’s a beauty ❤️ https://t.co/Z7WuVAewf0 +05/17/2018,Sports_celeb,@derekhough,Immediately after taking this photo I caught a… https://t.co/oCznGoTylB +05/16/2018,Sports_celeb,@derekhough,Sat on the tarmac for 3 hours yesterday waiting… https://t.co/A9CoZs21u6 +05/15/2018,Sports_celeb,@derekhough,nbcworldofdance just launched our #wodchallenge !!! Send us in your… https://t.co/RcV4lmnTLN +05/14/2018,Sports_celeb,@derekhough,💐World Of Flowers💐 @ Radio City Music Hall https://t.co/LLCDwVxiBi +05/14/2018,Sports_celeb,@derekhough,"Put me in coach 🏀 @ New York, New York https://t.co/eFswVPCLff" +05/13/2018,Sports_celeb,@derekhough,"#happymothersday +I love you always forever +Near and far closer… https://t.co/Yhcma8DQq7" +05/13/2018,Sports_celeb,@derekhough,I gotcha Grandma 😂 https://t.co/YzHmvGYQBF +05/12/2018,Sports_celeb,@derekhough,"Morning Jog. +My favorite way to see a city and it’s hidden places @… https://t.co/jnJ5CDIIeB" +05/11/2018,Sports_celeb,@derekhough,#fbf One of my favorite photos of all time. Taken by the legend… https://t.co/e4uwPWRQdU +05/10/2018,Sports_celeb,@derekhough,Join me this spring at #GradBash at @UniStudios in Hollywood! Come celebrate as I host your graduation event! https://t.co/75YWsPkQSC +05/10/2018,Sports_celeb,@derekhough,Making sounds. Practice makes perfect. https://t.co/VkAL4pei3M +05/09/2018,Sports_celeb,@derekhough,"MAY 29th!!! It’s gonna be HUGE +#WOD #worldofdance @ Sunset Plaza,… https://t.co/o61xfcXOww" +05/08/2018,Sports_celeb,@derekhough,"In any given moment, a man’s growth is optimized if he leans just… https://t.co/JTY4GB4PYJ" +05/07/2018,Sports_celeb,@derekhough,We're back on May 29! Check out the first look: https://t.co/WEP5Bw8CfH +05/06/2018,Sports_celeb,@derekhough,"Just finished this piece. #mymeditation #art @ Los Angeles, California https://t.co/i12zP5YZR6" +05/04/2018,Sports_celeb,@derekhough,"My birthday month it is. +#maythe4thbewithyou #yoda @ Galaxy far far away https://t.co/bSzifUgSE5" +05/03/2018,Sports_celeb,@derekhough,#tbt I didn’t have my 2 front teeth for years. I knocked them out on a… https://t.co/HeOsP1bOI8 +05/02/2018,Sports_celeb,@derekhough,"I made these pants out of my grandmas curtains. 🌸🌻🌼 +#realmenwearflowers @… https://t.co/PzhV0hcOPq" +05/02/2018,Sports_celeb,@derekhough,Check out the nbcworldofdance fam on theellenshow today !!! @ Ellen DeGeneres… https://t.co/0b4giO6rEk +05/02/2018,Sports_celeb,@derekhough,Check out the nbcworldofdance fam on theellenshow today. @ Ellen DeGeneres Show https://t.co/6jaiOEkw2L +05/01/2018,Sports_celeb,@derekhough,@harleydavidson https://t.co/PQcjUusgBY +05/01/2018,Sports_celeb,@derekhough,If you’ve read my book I’m curious about what your favorite part was. Write… https://t.co/Cwo6dAITGx +05/01/2018,Sports_celeb,@derekhough,"RISE and shine @ Los Angeles, California https://t.co/oYhESdDqW0" +04/30/2018,Sports_celeb,@derekhough,"Here we go!!!! 1 Month away. +Let the countdown begin. SEASON 2 is going to be 🔥 +May 29th @ The… https://t.co/Fj6VGLucUU" +04/29/2018,Sports_celeb,@derekhough,"Part 2 +Had an absolute blast pushing myself at the beargryllssurvivalchallenge yesterday. +My… https://t.co/wGUvYQulx5" +04/29/2018,Sports_celeb,@derekhough,"Had an absolute blast pushing myself at the beargryllssurvivalchallenge yesterday. +My team… https://t.co/iBeyK8an9j" +04/28/2018,Sports_celeb,@derekhough,Comin in hot to the finish line!!!! @ Bear Grylls Survival Challenge https://t.co/rWFKzaGlOo +04/27/2018,Sports_celeb,@derekhough,"Almost ran into this guy the other day. 🐊 +I explained to him I knew +@BindiIrwin and he was chill. https://t.co/maVPvI0GXC" +04/26/2018,Sports_celeb,@derekhough,"🐢neck’s +#tbt @ Homemade Almond Milk https://t.co/wReYxJZcEf" +04/24/2018,Sports_celeb,@derekhough,Guess where I’ll be this May and June? Hosting #GradBash at @UniStudios in Hollywood! Can’t wait to celebrate with… https://t.co/kngeleaO3q +04/22/2018,Sports_celeb,@derekhough,I have always felt close to nature but the past few years I have become obsessed with her… https://t.co/8aSzNDM5D4 +04/20/2018,Sports_celeb,@derekhough,Love this man. And I cherish our adventures #fbf #fatherson #adventure @brucehough https://t.co/nB6JjDiMRu +04/17/2018,Sports_celeb,@derekhough,#mood https://t.co/UZobMx545T +04/15/2018,Sports_celeb,@derekhough,“Spirituality is recognizing and celebrating that we are all inextricably connected to one… https://t.co/6wbnrjI8qp +04/12/2018,Sports_celeb,@derekhough,I’m hosting #gradbash at @Unistudios Hollywood this Spring! Come spend a night of fun and excitement with all your… https://t.co/T426KovoPu +04/12/2018,Sports_celeb,@derekhough,#TBT trying to get warm using the hot pavement with my little niece. Just came across this photo… https://t.co/lFwVMu1aQn +04/11/2018,Sports_celeb,@derekhough,"sometimes deeper mental clarity is preceded by great internal storms - yung pueblo +📸:… https://t.co/fjE9qEvZFZ" +04/09/2018,Sports_celeb,@derekhough,I’m thrilled to invite you to something near and dear to my heart: Move Experience: The Retreat!… https://t.co/3AVx8jnnEz +04/06/2018,Sports_celeb,@derekhough,Happy 200th Anniversary @BrooksBrothers! #BrooksBrothers200 https://t.co/rRrViI2PRp +04/05/2018,Sports_celeb,@derekhough,"Don’t run away from heavy emotions +. +Honor the anger,give pain the space it needs to breathe +.… https://t.co/l3Xq2CQ6di" +04/03/2018,Sports_celeb,@derekhough,"I love the ocean, something about the mystery and depth truly humbles me. Whether I’m diving… https://t.co/53sNa0Zozh" +03/27/2018,Sports_celeb,@derekhough,Behind every mask there is a face and behind that there is a story https://t.co/0OUDO1LwQY +03/24/2018,Sports_celeb,@derekhough,One of the most important things when it comes to achieving your dreams is to stay Hungry! #move… https://t.co/Lln1IAgHmj +03/23/2018,Sports_celeb,@derekhough,"#nationalpuppyday +Link in bio☝🏼 +The love is real https://t.co/a6h6aBENg5" +03/22/2018,Sports_celeb,@derekhough,#tbt Chains ⛓ https://t.co/NNzbhUuVux +03/21/2018,Sports_celeb,@derekhough,NOW https://t.co/2qoaZv77mL +03/20/2018,Sports_celeb,@derekhough,When you’ve been unwell for a over a week and cabin fever starts setting in. 🤪 https://t.co/CuF20oiOd9 +03/19/2018,Sports_celeb,@derekhough,"Encourage, uplift, grow and love. We are social beings, connecting to each other is a primal and… https://t.co/As428NNvws" +03/17/2018,Sports_celeb,@derekhough,"If you’re happy and you know it 👏🏼 @ Los Angeles, California https://t.co/303TU3GxDJ" +03/17/2018,Sports_celeb,@derekhough,"The harder you work, the luckier you get! +Happy St.Patricks day!!! ☘️🍀 @ Ireland (country) https://t.co/raQgpot3BC" +03/16/2018,Sports_celeb,@derekhough,"“In any given moment, a man’s growth is optimized if he leans just beyond his edge, his… https://t.co/G6VAddrJFu" +03/15/2018,Sports_celeb,@derekhough,Bed Fashion https://t.co/exBr6JMhjl +03/13/2018,Sports_celeb,@derekhough,"Pretty much sums up my dressing room anywhere. +Also I don’t know words to any song. #fact https://t.co/mSzp1cONwy" +03/12/2018,Sports_celeb,@derekhough,Last day of mentoring with these insanely talented human beings! #nbc #wod #backlot @ Universal… https://t.co/37J3tz9eHA +03/12/2018,Sports_celeb,@derekhough,Seize the day @ Planet Mars https://t.co/iyxVPPG4F5 +03/10/2018,Sports_celeb,@derekhough,"Poster for our new Sitcom. @mistyonpointe +What’s it about? https://t.co/yxzJdffeVO" +03/09/2018,Sports_celeb,@derekhough,"Cooking something up for Season 2 of nbcworldofdance +Ask and you shall receive! #disruption @… https://t.co/puV8ICeJCh" +03/09/2018,Sports_celeb,@derekhough,@NBCWorldofDance returns for Season 2 on May 29! @jlo @neyocompound @jennadewan https://t.co/BZtA0Zm9vY +03/08/2018,Sports_celeb,@derekhough,"I’m lucky to have so many women in my life that everyday is #internationalwomensday +My… https://t.co/UHJbybni70" +03/08/2018,Sports_celeb,@derekhough,Lil Cha-Cha to start the day. #warmup https://t.co/Rdz1zaBr1s +03/07/2018,Sports_celeb,@derekhough,"It’s OFFICIAL!!! May 29th!!! nbcworldofdance @ Los Angeles, California https://t.co/g7IuLZ74i3" +03/06/2018,Sports_celeb,@derekhough,"Here we go!!!! Season 2 Premiere Date! May 29th +#nbc nbcworldofdance https://t.co/lYAORHwxMp" +03/05/2018,Sports_celeb,@derekhough,"Failure hurts, but it’s only growing pains for greatness. Failure isn’t the end of the road,… https://t.co/MIoZCmlcWW" +03/04/2018,Sports_celeb,@derekhough,"Yep 🔥 +@Dance10Hayley https://t.co/mRwn0cvKZq" +03/03/2018,Sports_celeb,@derekhough,Training https://t.co/m6TD4kjNKI +03/01/2018,Sports_celeb,@derekhough,"Can’t wait for Summer 🌊 +#GoPro #malibuboats #lakelife https://t.co/f12HJdNuwX" +02/28/2018,Sports_celeb,@derekhough,"S O L I T U D E + +“Without solitude, Love will not stay long by your side. +Because Love needs to… https://t.co/FcFw5l7JEm" +02/28/2018,Sports_celeb,@derekhough,"S O L I T U D E + +“Without solitude, Love will not stay long by your side. +Because Love needs to… https://t.co/ZjUz5AMd42" +02/28/2018,Sports_celeb,@derekhough,"My girlfriend is a rebel ❤️🤘🏼 +#❤️ #D+H @ Lovers https://t.co/fvzymOT0Bu" +02/27/2018,Sports_celeb,@derekhough,"🏄🏼‍♂️ @ Los Angeles, California https://t.co/ZCadXKgt5w" +02/26/2018,Sports_celeb,@derekhough,"“Everybody cut, everybody cut.(Boom Boom)Everybody cut, everybody cut.(Boom Boom) Everybody cut… https://t.co/DHjBZQBJ63" +02/26/2018,Sports_celeb,@derekhough,"“Hatred is wasted energy.” +Let us Create not Destroy +#ClearHorizon #motivationmonday https://t.co/gCmdRdSnYm" +02/25/2018,Sports_celeb,@derekhough,Thank you @l_a_ballet for the wonderful honor. And to my brother @markballas for his awesome… https://t.co/yldLAt6vJ2 +02/24/2018,Sports_celeb,@derekhough,"This dude sat next to me in the movie theater last night. +Trying to figure out how I can bring… https://t.co/yNsr1ZhKvh" +02/23/2018,Sports_celeb,@derekhough,Don’t wait to be “Ready”. Start where you stand and the tools will reveal themselves as you go! https://t.co/m8XbtqZXZa +02/23/2018,Sports_celeb,@derekhough,"Good Ole Jive +Sharpening Up🔪 the tools. +#OrangeUnderwear? #jive #rehearsal #practice @ Fresh Jive https://t.co/IHnGmo9H0L" +06/30/2018,Sports_celeb,@juliannehough,"Missing this little angel baby today #Avery 👶🏼💕 +📷: @tjdrechselphoto @ Las Vegas, Nevada https://t.co/N6IZV32Fnc" +06/26/2018,Sports_celeb,@juliannehough,"“Joy to the 🌍 all the boys and girls, Joy to the 🐟’s in the deep blue sea, Joy to YOU and ME” 🎶 + +Feeling very joyfu… https://t.co/DTawWOcxO9" +06/23/2018,Sports_celeb,@juliannehough,"Nailed my 360 🤪 +Day 2 wake Surfing in Lake Powell with my ❤️ for his 35th #birthdayweekend #nailedit #goingpro @ La… https://t.co/fCJIKrOcf1" +06/23/2018,Sports_celeb,@juliannehough,"Happy Birthday to my husband, my lover and my best friend! +I am so grateful that we get to adventure through life… https://t.co/jLU87PMT13" +06/17/2018,Sports_celeb,@juliannehough,Happy Fathers Day to my incredible Papa… https://t.co/HOoR7ojanS +06/14/2018,Sports_celeb,@juliannehough,If there's one thing @brookslaich and I love it's GAME NIGHT! We're throwing the ULTIMATE couples game night to sup… https://t.co/Qgnmp6ftmV +06/02/2018,Sports_celeb,@juliannehough,"Feelin’ cheeky today 😉 + +-Who else is having an… https://t.co/akcAtJcbnF" +06/02/2018,Sports_celeb,@juliannehough,It’s June 1st!! HAPPY PRIDE MONTH! #loveislove… https://t.co/6TrjucS4Xf +06/02/2018,Sports_celeb,@juliannehough,It’s June 1st!!!! HAPPY PRIDE MONTH!… https://t.co/V6OBrbt2ov +05/13/2018,Sports_celeb,@juliannehough,There is nothing like a mothers love! I’ll always be your baby and… https://t.co/Kl62lO7AKs +05/13/2018,Sports_celeb,@juliannehough,"Roaring 20’s Date Night ❤️ +#gatsbystyle @ Los Angeles, California https://t.co/NILWWbjaid" +05/08/2018,Sports_celeb,@juliannehough,"Met Ball memories +2011 ➡️ 2012 ➡️ 2013 +#burberry #carolinaherrera… https://t.co/RCBFYFR2Lh" +05/07/2018,Sports_celeb,@juliannehough,This last week I shared an Instagram story right after a day full of… https://t.co/r0mz2ewayP +05/06/2018,Sports_celeb,@juliannehough,Feelin’ fancy with my ❤️ on our Sunday morning stroll! @ Rodeo Drive https://t.co/9lBw2DXUju +05/03/2018,Sports_celeb,@juliannehough,Happy Birthday to this dynamite soul! 💥✨🙌🏼 So grateful for our many years of… https://t.co/ali2ZLk1Fi +05/02/2018,Sports_celeb,@juliannehough,"The best time for new beginnings is now. Remember, all you need is within… https://t.co/gS9hM1aSgJ" +05/01/2018,Sports_celeb,@juliannehough,"Twinning Tuesday 💙💙 @ Los Angeles, California https://t.co/Udual1iL76" +04/23/2018,Sports_celeb,@juliannehough,"I feel so lucky I get to create my life with you and that we love all parts of each other from,… https://t.co/ShWs2x9aHK" +04/21/2018,Sports_celeb,@juliannehough,"My husband is so special ❤️❤️❤️...... and freaking hot AF! 🔥🔥🔥🔥 #husbandappreciationday @ Paris,… https://t.co/0zWpBoDfOp" +04/16/2018,Sports_celeb,@juliannehough,"Momma 💕 @ Lake Tahoe, NV https://t.co/uqvOqfewZl" +04/16/2018,Sports_celeb,@juliannehough,Such a beautiful weekend in Lake Tahoe with my incredible mother @HoughNelson ❤️learning and… https://t.co/okHpi8rvwO +04/07/2018,Sports_celeb,@juliannehough,"On Thursday I challenged you to throw a song on and dance and sing/scream your heart out… +I… https://t.co/EZrFSfP7IC" +04/06/2018,Sports_celeb,@juliannehough,"#FBF 🤣🤣🤣🤣🤣 +To my private obnoxious performance for #lexi 🐶 back in 2014 at the beacon theatre… https://t.co/qZ722veoWY" +04/05/2018,Sports_celeb,@juliannehough,"#tbt to 1yr ago today rehearsing for MOVE:BEYOND @juliannehough ❤️ + +• There is something about… https://t.co/9muS2pO9TR" +04/01/2018,Sports_celeb,@juliannehough,"Happy Easter! 🥚🌷🌼🐇🐣...... +#egghunt #Imayhaveoverdoneit #duh @ Los Angeles, California https://t.co/DezV726WiI" +03/19/2018,Sports_celeb,@juliannehough,"💚💚💚 @ Los Angeles, California https://t.co/Fzng4vy8UO" +03/17/2018,Sports_celeb,@juliannehough,"I love #AliciaVikander so much!!! She is a prime example of a strong and feminine, talented and hard working woman! You go girl! #tombraider" +03/14/2018,Sports_celeb,@juliannehough,"We LOVE you soooooo much lorraineschwartz +CONGRATULATIONS on your New Collection… https://t.co/r3m6ayMhe6" +03/13/2018,Sports_celeb,@juliannehough,"How simple yet profound! 🙏🏼 +Having this awareness has been one of the greatest gifts in my life.… https://t.co/h8ucpbuspx" +02/19/2018,Sports_celeb,@juliannehough,"Haha 🤣🤣🤣#Repost @brookslaich +・・・ +In this family, we roll environmentally friendly, and in… https://t.co/XBbravqU4d" +02/18/2018,Sports_celeb,@juliannehough,🐶🌺🐼 #heaven @ Fryman Canyon Trailhead https://t.co/wVPlAnMOBZ +02/15/2018,Sports_celeb,@juliannehough,"❤️👏🏼🧚🏼‍♀️ +#matchingeyebrowsnow @ Los Angeles, California https://t.co/3OVbq64FJA" +02/14/2018,Sports_celeb,@juliannehough,"Steeling 💋 all over the 🌎from my Forever Valentine ❤️ @ Paris, France https://t.co/sBtF3QUSgR" +02/13/2018,Sports_celeb,@juliannehough,"Happy Birthday @kristysowin 🙏🏼❤️🙌🏼👸🏻 +There are no words to describe my absolute love,… https://t.co/w4hLSVmn3h" +02/08/2018,Sports_celeb,@juliannehough,"Let’s get Crazy 🌎❤️ +Share some “crazy” ways we can all start changing our world today and tag… https://t.co/YFDahrW6Vo" +02/08/2018,Sports_celeb,@juliannehough,"Let's get crazy! ❤️🌍 +Let’s get Crazy 🌎❤️ +Share some “crazy” ways we can all start changing our… https://t.co/rSbNeOyiOD" +02/07/2018,Sports_celeb,@juliannehough,"❤️❤️❤️ @ Paris, France https://t.co/i1cPyrT5jy" +02/06/2018,Sports_celeb,@juliannehough,"My soul sister, my best friend and so much more... 💫 +You are the bright soul that everyone… https://t.co/bxVPNsZ3wS" +02/04/2018,Sports_celeb,@juliannehough,"🌹 +Sneak peak at some of the incredible shots by sarahfalugostyle in Paris xoxo 💋 @ Paris, France https://t.co/eAWnngx89A" +02/04/2018,Sports_celeb,@juliannehough,"This Trip has been absolutely magical! ❤️ +How did it all begin?! Well, let me tell you! +For… https://t.co/EOsQV2o8mL" +02/03/2018,Sports_celeb,@juliannehough,"💋 +#selfiegameonpoint #paris @ Hôtel Costes https://t.co/dp7JfAUs3e" +02/02/2018,Sports_celeb,@juliannehough,"Ooh La La 💋 +#Paris @ Paris, France https://t.co/EDZVcNPxUA" +01/23/2018,Sports_celeb,@juliannehough,Congratulations @pasekandpaul on the Oscar Nomination for the #GreatestShowman masterpiece “This… https://t.co/dVTL3T9ZSS +01/22/2018,Sports_celeb,@juliannehough,"Starting Monday off with a smooch💋 +What is your love language? https://t.co/PiTtEmorBR" +01/21/2018,Sports_celeb,@juliannehough,"Feeling on top of the world today 🌍 +Thank you @tonyrobbins Sage, and all my fellow… https://t.co/5SYmTxvaGe" +01/20/2018,Sports_celeb,@juliannehough,"We are the RAINMAKERS! 💦 +While at @tonyrobbins #businessmastery this week, we got ourselves in… https://t.co/9Th99Ay0Z8" +01/20/2018,Sports_celeb,@juliannehough,Thank you John for Donating to @juliannehough and being a part of our mission to help build… https://t.co/JGtRazGNFh +01/19/2018,Sports_celeb,@juliannehough,#fbf to walking hand in hand with my love in the Seychelles ☀️👙💙 and flash forward to walking… https://t.co/tZ6Zcd1wfC +01/18/2018,Sports_celeb,@juliannehough,Having the most mind blowing experience at Tony Robbins #businessmastery seminar with these… https://t.co/i6Ol26jjC3 +01/18/2018,Sports_celeb,@juliannehough,#businessmastery https://t.co/DImGOH9N6J +01/18/2018,Sports_celeb,@juliannehough,RT @dmscott: I’m so psyched to be with the enthusiastic GLADIATORS talking New Marketing Mastery at @TonyRobbins #BusinessMastery https://t… +01/12/2018,Sports_celeb,@juliannehough,"During your next hydrating face mask, give your hands a little love too with this awesome DIY nourishing treatment… https://t.co/SlMgrUVs2D" +01/12/2018,Sports_celeb,@juliannehough,#FBF to when I had my first laparoscopy for my Endometriosis back in 2008 when my angel baby… https://t.co/Mp0oo4KSjX +01/11/2018,Sports_celeb,@juliannehough,"Ok everybody, today is 1/11 and as you all know, 11 is my absolute most favorite magical number… https://t.co/BnghNb9B6z" +01/10/2018,Sports_celeb,@juliannehough,"Me: hey Nina help me with your birthday caption! +Nina: what?! +Me: never mind... +Happy… https://t.co/x61mHyVIPX" +01/08/2018,Sports_celeb,@juliannehough,Wait for it..... 👯‍♀️ #goldenglobes2018 #instyle #instyleglobes https://t.co/ahnwtj9KjW +01/01/2018,Sports_celeb,@juliannehough,Oh... it’s ON my love!!! Let’s do this 2018!!! 💕💕💕🙏🏼 https://t.co/R7YkkSfPL3 +01/01/2018,Sports_celeb,@juliannehough,"Couldn’t be happier to ring in the new year and share such a happy 2017 year together! Marriage,… https://t.co/ys0jDCq87l" +12/28/2017,Sports_celeb,@juliannehough,"Missing my beautiful sisters this morning! 🙏🏼💞 +Whether they are your blood, your best friends or… https://t.co/2p2MJGDW1z" +12/25/2017,Sports_celeb,@juliannehough,Merry Christmas to everyone! (PS we should live with the kind of joy and kindness that naturally… https://t.co/50OmCRq6t3 +12/25/2017,Sports_celeb,@juliannehough,"Merry Christmas!!🎅🏽🤶🏼❤️ +🎄🎁⛄️💫❄️🐶🐼🐻 @ Los Angeles, California https://t.co/Yj3BBvLO1O" +12/25/2017,Sports_celeb,@juliannehough,Merry Christmas!!!!! 🎅🏽🤶🏼🎄🎁❄️💫 @ Hollywood Hills https://t.co/5cm3TxWMav +12/23/2017,Sports_celeb,@juliannehough,"Whatever you do, PLEASE wait until the end with SOUND ON‼️ +So for the last 4 days I’ve been in… https://t.co/QSHGHdIXdJ" +12/22/2017,Sports_celeb,@juliannehough,This holiday season get toasty with these sweet and delicious Gluten-Free Gingerbread Waffles made with @SueBeeUSA… https://t.co/ufAEIxc75g +12/21/2017,Sports_celeb,@juliannehough,Warm your heart and your belly with Gluten-Free Gingerbread Waffles made with @SueBeeUSA Honey 🍯🎄#ShareSweetness… https://t.co/Yilql8INkI +12/18/2017,Sports_celeb,@juliannehough,This weekend @brookslaich and I went to see ELF at the #VWHolidayDriveIn “Watch out for the… https://t.co/K35fxlJoHX +12/04/2017,Sports_celeb,@juliannehough,"Last night at #TrevorLive 🏳️‍🌈 +It’s so important to let our LGBTQ+ Youth know that you are… https://t.co/zQusPzMKpu" +12/04/2017,Sports_celeb,@juliannehough,❤️ Always & Forever 👯‍♀️ https://t.co/DlJYWFsJkB +12/03/2017,Sports_celeb,@juliannehough,"Sunday Morning Workout Buddies! ☀️🏋🏻‍♂️🐻 +Feeling very grateful for the amazing men in my life.… https://t.co/US5dizIqtD" +11/30/2017,Sports_celeb,@juliannehough,Disney’s Magical Holiday Celebration airs tonight! Tune in to ABC and get ready to feel the… https://t.co/JgbNtLBv2t +11/30/2017,Sports_celeb,@juliannehough,BEFORE (Swipe 👉🏼 for AFTER) 💦💦💦💦 dance cardio class with these awesome ladies!!!!! @ Millennium… https://t.co/wjyLql7449 +11/29/2017,Sports_celeb,@juliannehough,Me and my girl Minnie! Only 1 more day until the Disney Magical Holiday Celebration! Get ready… https://t.co/BFVp5FdIuS +11/29/2017,Sports_celeb,@juliannehough,"In honor of #GivingTuesday, our friends at gatesfoundation are matching donations on Facebook.… https://t.co/xNGAwhPNk6" +11/28/2017,Sports_celeb,@juliannehough,In the Spirit of #GivingTuesday @brookslaich and I are excited to announce the launch of our… https://t.co/MiOXKlqZHO +11/27/2017,Sports_celeb,@juliannehough,"One week ago today, I had the chance of a lifetime to help bring my friend Marinda’s story to… https://t.co/k1G77BPtwt" +11/24/2017,Sports_celeb,@juliannehough,"At the end of a crazy busy fall season, it feels so good to come home to my favorite dance… https://t.co/pW5j80J4kg" +11/20/2017,Sports_celeb,@juliannehough,"Tonight’s The Night 📺💃🏽⭐️ +So much beautiful work has gone in to creating this important and… https://t.co/mHh4be9x4X" +11/17/2017,Sports_celeb,@juliannehough,"SWIPE 👉🏼 to find out the SURPRISE ‼️ + +There are certain moments in my career that have made what… https://t.co/3IEfUORQMD" +11/16/2017,Sports_celeb,@juliannehough,"I am soooo freakin’ excited!!! +💕💕💕💕 +This team of creative and dynamic people are so exceptional… https://t.co/xzX5axiKvs" +11/16/2017,Sports_celeb,@juliannehough,Start your ovens and get ready for this amazing recipe for Honey-Glazed Carrots w/ @SueBeeUSA honey!… https://t.co/WzpkjZZFsS +11/16/2017,Sports_celeb,@juliannehough,"I’ve always been taught, “never show up to a party empty handed”! 🥕Thanksgiving is coming up,… https://t.co/HfHlIJkaoZ" +11/14/2017,Sports_celeb,@juliannehough,"So i know I’m a day late, but you can never be too late to be KIND! Yesterday was… https://t.co/DZ3vJX8k7y" +11/13/2017,Sports_celeb,@juliannehough,Where my #DWTS fans at?! Get ready...We’re getting the band back together again! I'm coming back… https://t.co/yTFjHvekBR +11/12/2017,Sports_celeb,@juliannehough,Mmm...dreaming about this ice cream today🍦Which is better: 🍦🍨or 🍭🍫? Vote in the comments! I’m… https://t.co/vALY3wbRny +11/11/2017,Sports_celeb,@juliannehough,"FINALLY it feels like FALL!!! 🍁🍂🍂 +I️t was super hot, high 80’s and sunny, when I first got to… https://t.co/Okn7IQNPd4" +11/10/2017,Sports_celeb,@juliannehough,❤️❤️❤️ #fbf to a little impromptu photoshoot after I jumped in the pool with a full face of… https://t.co/QJ2YFbtR8V +11/09/2017,Sports_celeb,@juliannehough,"#TBT ⚡️ to when I played Bongos and Chimes in my family band “White Lightning”. +You could hear… https://t.co/18tLHOMLGe" +11/08/2017,Sports_celeb,@juliannehough,All smiles as I’m back in Alabama to finish filming biggerthemovie 😁@kristysowin and I had a… https://t.co/X5MCw3ifj1 +11/08/2017,Sports_celeb,@juliannehough,"Must Haves: +Red Dress ✔️ +Sassy Red Lip ✔️ +The happiest place on earth✔️ +-and last but… https://t.co/BASElRlGty" +11/06/2017,Sports_celeb,@juliannehough,"Swipe 👉🏼 to better understand the dynamic of our relationship! 🤷🏼‍♀️ +Tag your favorite person… https://t.co/jGosSOOcG4" +11/04/2017,Sports_celeb,@juliannehough,✌🏼throwing it up for the weekend✌🏼 Check my last post to see what I’m working on! It’s an… https://t.co/dClGIDFuCG +11/03/2017,Sports_celeb,@juliannehough,#fbf to strolling around in the Seychelles with my brand new husband @brookslaich ❤️ We had some… https://t.co/4D63oQa6A6 +11/02/2017,Sports_celeb,@juliannehough,"Betty Brosmer 💕 +circa 1957 @ Birmingham, Alabama https://t.co/Uud9PnQXVm" +11/01/2017,Sports_celeb,@juliannehough,So incredibly proud of my brother @derekhough for using his gifts and talents to create… https://t.co/W3kHiBwol5 +11/01/2017,Sports_celeb,@juliannehough,"Pinch Punch, it’s the first day of the month! 👌🏼👊🏼 + Alright let’s get real about working out.… https://t.co/lEKVGY7q6q" +10/31/2017,Sports_celeb,@juliannehough,Ghosts of Halloween Past- Check out that last pic 😂 tag your forever costume partners! 👻 @ ALL… https://t.co/PrBhtiK6w8 +10/30/2017,Sports_celeb,@juliannehough,"🔥 It’s a new week- time to fire up those goals, let’s get to it! Also, how did everyone’s… https://t.co/hVGYmNZI8h" +10/27/2017,Sports_celeb,@juliannehough,"Life is an adventure! It’s up to you to make it amazing! Think about it. +What is holding you… https://t.co/qTjuqFxACT" +10/26/2017,Sports_celeb,@juliannehough,Sitting here in Alabama missing my angels and thinking about Lovin’ on my Lexi 🐶Raise your hands… https://t.co/jzgBElIV7F +10/25/2017,Sports_celeb,@juliannehough,One of my biggest and most important “happiness” practices is taking time to be grateful. The… https://t.co/OsyifvNnDT +10/24/2017,Sports_celeb,@juliannehough,"Wrapped for now and it’s just day 2, yet the clouds are out and the sky is still blue! -Kristy… https://t.co/sjz96KjVTj" +10/24/2017,Sports_celeb,@juliannehough,"WOW! I can’t believe I just recreated this iconic photo of #BettyBrosmer 💋 +I can’t wait for you… https://t.co/8xudKf2JjC" +10/23/2017,Sports_celeb,@juliannehough,Gearing up for Monday like 🎧😎 Let’s do this thing boss babes! I’m on set filming “Bigger” today… https://t.co/R2fTQk0HqL +10/21/2017,Sports_celeb,@juliannehough,Getting ready to start a new adventure 💪🏼 Heading to Alabama to start filming BIGGER with the… https://t.co/lZT0WnkPgP +10/21/2017,Sports_celeb,@juliannehough,Getting ready to start a new adventure 💪🏼 Heading to Alabama to start filming BIGGER with the… https://t.co/C4nML3L8fE +10/20/2017,Sports_celeb,@juliannehough,"#FBF to the most amazing outdoor experience with my @KindCampaign family. 💕 +Read more about our… https://t.co/Pdg0uTwMkM" +10/18/2017,Sports_celeb,@juliannehough,"My #wcw goes to my incredibly gifted bff, hair extraordinaire and all around amazing human being… https://t.co/mdXcxBut4v" +10/16/2017,Sports_celeb,@juliannehough,"MISSING DOG ALERT ‼️ +We found this male dog on the side of the road on Woodrow Wilson near… https://t.co/Shomh2YB3F" +10/16/2017,Sports_celeb,@juliannehough,"#MondayMuse 💋 +One more week until the transformation begins. I’m so excited to celebrate Betty… https://t.co/TAbHQIiKKv" +10/16/2017,Sports_celeb,@juliannehough,This is so perfect!!!! Haha ❤️ https://t.co/rqnxs2fi59 +10/15/2017,Sports_celeb,@juliannehough,"I wholeheartedly agree with everything @brookslaich said. @joesmithla your presence, words, and… https://t.co/6ML3EjIgD6" +10/13/2017,Sports_celeb,@juliannehough,You are the strongest and most resilient man I know! You're dedication and passion is… https://t.co/VDQ8S81iYH +10/12/2017,Sports_celeb,@juliannehough,"If you haven't heard @imaginedragons new album EVOLVE, I highly suggest you get it ASAP!! +I… https://t.co/GKFq8xzP73" +10/11/2017,Sports_celeb,@juliannehough,"Happy Birthday to my #wcw @Dance10Hayley 👑 +So grateful for your beautiful friendship, your… https://t.co/svdanqb4kx" +10/10/2017,Sports_celeb,@juliannehough,Thank you @goodhealth making me this months cover girl! I had an absolute blast 💋I also can't… https://t.co/bMWh6XlgMy +10/08/2017,Sports_celeb,@juliannehough,So excited to announce that I’m taking over @fitbit’s Instagram page tomorrow! Follow along to… https://t.co/k27f2Zgajf +10/04/2017,Sports_celeb,@juliannehough,"Mom, you are my #wcw everyday! The moment you zipped me in to my wedding dress is a moment I… https://t.co/QOTgDBfsGr" +10/02/2017,Sports_celeb,@juliannehough,"#prayforvegas and pray for humanity! +The victims, the families, the Las Vegas community, the… https://t.co/8d7wUOVX2n" +10/01/2017,Sports_celeb,@juliannehough,"Soul Sister Sunday✌🏼#liveyouradventure 🌎#kindcampaign 💕 +📷: @THECoryTran @ Canadian Rockies https://t.co/Byv6Qt6JJo" +09/29/2017,Sports_celeb,@juliannehough,"Spending the next few days reconnecting with nature, recharging my soul and fostering… https://t.co/H7OglUYYVT" +09/28/2017,Sports_celeb,@juliannehough,"Happy 13th Birthday to this stud nephew of mine! +Remember when you were a kid growing up, and… https://t.co/cMd0IR3yu7" +09/27/2017,Sports_celeb,@juliannehough,"Brooks and I wanted our wedding to feel just as warm and inviting as our home, so of course I… https://t.co/iuMMusof5D" +09/27/2017,Sports_celeb,@juliannehough,So proud of my love @brookslaich way to keep pushing and betting on yourself babe! 💋 https://t.co/kJQHdPHuCn +09/27/2017,Sports_celeb,@juliannehough,Happy Birthday Arielle! You are heaven on earth. You light up any room you walk in to. You have… https://t.co/RvZT9mCRER +09/26/2017,Sports_celeb,@juliannehough,"Excited to announce that I'll be joining the film ""Bigger"", the amazing story behind Joe and Ben… https://t.co/X5lcFgbFQE" +09/26/2017,Sports_celeb,@juliannehough,RT @DEADLINE: Julianne Hough To Play First Lady Of Fitness Betty Weider In George Gallo’s ‘Bigger’ https://t.co/mL1zL2fI0q https://t.co/sKN… +09/25/2017,Sports_celeb,@juliannehough,I'll never forget the moment I turned the corner and locked eyes with you. I knew that my future… https://t.co/TYoSJPu6EO +09/25/2017,Sports_celeb,@juliannehough,Love my @MosaicLA family! #welcomehome #youbelonghere @ Mosaic https://t.co/ptnTovkxze +09/24/2017,Sports_celeb,@juliannehough,"Easy like Sunday morning! +🕶👒 +📷: sarahfalugostyle @ Coeur d'Alene, Idaho https://t.co/W7kaksTv5L" +09/23/2017,Sports_celeb,@juliannehough,"It's all ☀️shine, 🌈's and 🦄's +#pjsfromnina #ofcourse #happysaturday https://t.co/fgnamd8OtR" +09/22/2017,Sports_celeb,@juliannehough,"#fbf to our wedding weekend! ☀️💦 +One of our biggest joys about the weekend was being able to… https://t.co/DW1BrBxPW1" +09/22/2017,Sports_celeb,@juliannehough,"#fbf to our wedding weekend! ☀️💦 +One of our biggest joys about the weekend was being able to… https://t.co/86RsbTGdGz" +09/20/2017,Sports_celeb,@juliannehough,"Hey guys, it's been a minute since I've posted about my website and the fun tips and tricks I… https://t.co/PE4UnJUz4y" +09/19/2017,Sports_celeb,@juliannehough,Such a fun shoot with these two beautiful souls today 🙏🏼 @serenakarnagy @hudsontaylor89 https://t.co/MtCEyuy5TK +09/19/2017,Sports_celeb,@juliannehough,#takemebacktuesday I'm so grateful that we were able to visit and experience the beauty and… https://t.co/UAphZuTyWb +09/18/2017,Sports_celeb,@juliannehough,Where it all began 3 years ago... 🖤...can't wait to see what we do together in all the years to… https://t.co/IVJyII1rV7 +09/18/2017,Sports_celeb,@juliannehough,"After party quick change! +💛🖤Came home, changed my dress, gave my husband a kiss good night, and… https://t.co/8kwV4mZwoE" +09/18/2017,Sports_celeb,@juliannehough,RT @fitbit: Celebrate your next birthday by bringing fitness to the party. Fitbit Ambassador @juliannehough shows how: https://t.co/4z4BUUl… +09/18/2017,Sports_celeb,@juliannehough,And of course my ultimate glam squad and best friends for always making me feel confidant and… https://t.co/M6OKsqaIcG +09/18/2017,Sports_celeb,@juliannehough,💕🌸 #emmys2017 https://t.co/FNLNQ4GBau +09/18/2017,Sports_celeb,@juliannehough,One of my all time favorite looks #emmys2017 💕🌸 #marchesa https://t.co/BTRAuQv3qy +09/17/2017,Sports_celeb,@juliannehough,Final touches for this beautiful #emmys2017 red carpet look! 💕🌸 https://t.co/RieE1ZYsqO +09/17/2017,Sports_celeb,@juliannehough,Last one 💃🏼 ... for the glam squad 💄💇🏼👛 https://t.co/iIfYmZ88xI +09/17/2017,Sports_celeb,@juliannehough,My goodness do I love these beautiful friends of mine! They give you air in a crowded room!… https://t.co/5a902xW162 +09/17/2017,Sports_celeb,@juliannehough,Date night with Ariel and Rusty! We've come along way from Bomont.... #bff #footlooseforever… https://t.co/SvGDZ6u6xf +09/17/2017,Sports_celeb,@juliannehough,"#happybeauday miss @morganbeau when @THECoryTran and I think of you living your best life, this… https://t.co/sTDY1kciKm" +09/17/2017,Sports_celeb,@juliannehough,"#happybeauday miss @morganbeau when @THECoryTran and I think of you living your best life, this… https://t.co/PxJ7c3pgQb" +09/16/2017,Sports_celeb,@juliannehough,"Last night we were going for the ""ice queen badass boss in an effortlessly chic pantsuit with… https://t.co/G6r3VEc593" +09/16/2017,Sports_celeb,@juliannehough,Charlie's Angels at its finest! 💁🏻🙋🏼🙅🏻 #mbusa #varietywomeninfilm #charliesangels @ Gracias Madre https://t.co/Ehp6ycBj2w +09/15/2017,Sports_celeb,@juliannehough,"Diving in to the weekend with Lexi 🐶, Romy 🐻 and my one piece unitard by @mpgsport #mpgbyjules… https://t.co/JYDthYh7ZQ" +09/14/2017,Sports_celeb,@juliannehough,"Since today is known around the world as social media's #tbt , I thought I would tell a little… https://t.co/2Yif3yJL1S" +09/14/2017,Sports_celeb,@juliannehough,"This little ""demanding of treats diva"" is the absolute Love of my life! 🐼 #Harley https://t.co/AlsNq0Zlkw" +09/14/2017,Sports_celeb,@juliannehough,"Have to repost this... haha! +Who wants to caption this?? Best caption gets a follow 👍🏼 +#Repost… https://t.co/4Z3uw1zppK" +09/13/2017,Sports_celeb,@juliannehough,"#wcw my ride or die @kristysowin ! +This amazing woman always surprises me, yet doesn't surprise… https://t.co/GvSPkxrylP" +09/13/2017,Sports_celeb,@juliannehough,#handinhand please call 1-800-258-6000 or text GIVE to 80077 to donate! All in the name of… https://t.co/7P8hlYfgQV +09/12/2017,Sports_celeb,@juliannehough,"So excited for my love to start his first day of Camp with the @lakings 🏒 +I've never met anyone… https://t.co/jD8HdeGT6r" +09/11/2017,Sports_celeb,@juliannehough,"Happy Birthday to this 🔥momma! I've never met a woman so strong, talented, commanding of a room,… https://t.co/iA3RGjtjeO" +09/11/2017,Sports_celeb,@juliannehough,Motivation Monday!! Starting the week off by sweatin the weekend out! I woke up late for my… https://t.co/bZRsUHBEvF +09/10/2017,Sports_celeb,@juliannehough,"Holy hot damn, my man is beyond my wildest dreams! 🌸🌸🌸 +#mylove #datenight #creativeartsemmys @… https://t.co/ZG2aJbHjho" +09/09/2017,Sports_celeb,@juliannehough,"All dressed up with somewhere to go! +🤵👛 #creativeartsemmys #outstandingchoreography… https://t.co/9SjPiBKSBb" +09/09/2017,Sports_celeb,@juliannehough,2 years ago today I was able to share this Emmy with my brother @derekhough and friend… https://t.co/PInXf9GXOL +09/08/2017,Sports_celeb,@juliannehough,"This dress 😍😍😍 +Dress: @lela_rose +Shoes: @stuartweitzman +Styling: @anitapatrickson +Hair:… https://t.co/b17mqmoGpJ" +09/07/2017,Sports_celeb,@juliannehough,"#BTS at my photo shoot with @goodhealth! I'm talking about working out, healthy living and… https://t.co/MM9yveJQq0" +09/06/2017,Sports_celeb,@juliannehough,My website got a total makeover over the weekend and I've been dying to share it with you all.… https://t.co/2lXPxX9hXk +09/06/2017,Sports_celeb,@juliannehough,#wcw goes out to my mother-in law @janelaich 💕 not only did Jane raise such a beautiful soul and… https://t.co/v0HijELStm +09/05/2017,Sports_celeb,@juliannehough,Going in to a new work week after a long holiday weekend like..... #flyingintoNYC… https://t.co/00xxlhO5vG +09/03/2017,Sports_celeb,@juliannehough,"Not only is today #sundayfunday , but I get to do it all again tomorrow!! 👙🕶🌊 +What are your… https://t.co/WIrDbchoTB" +08/31/2017,Sports_celeb,@juliannehough,"#tbt to our incredible honeymoon! As amazing as it was (take me back), I feel so lucky that our… https://t.co/pH138OlEDR" +08/31/2017,Sports_celeb,@juliannehough,"Donate, Donate Donate!!!! Sending prayers and love to everyone in Houston! 💕#hurricaneharvey https://t.co/QlgpX8UJJK" +08/29/2017,Sports_celeb,@juliannehough,"💦💜🖤 @mpgsport +*Sweating it out in my +*Audition 2.0 Capri leggings +*AMA light support strapped… https://t.co/hB4CYyb2n4" +08/29/2017,Sports_celeb,@juliannehough,Sweating it out in my new fall collection for @mpgsport with my sassy matching soul sister… https://t.co/hn55UIHlzV +08/28/2017,Sports_celeb,@juliannehough,"So pumped.... 4M 💋 +📷: @samanthamarq @ Home https://t.co/YdhaVUc2NX" +08/28/2017,Sports_celeb,@juliannehough,"Sometimes after a long day, I don't always feel like making dinner. Which is why I love these ""no-cook"" recipes fro… https://t.co/cc7Y9pimwt" +08/28/2017,Sports_celeb,@juliannehough,Holy 4 Million followers!! ❤️❤️❤️ You guys are the BEST! Thank you for your continued love and… https://t.co/7vS7CAdZVG +08/28/2017,Sports_celeb,@juliannehough,"@Pink has been a voice, a talent and a true pioneer that I've looked up to since I was 12! After all these years, she still blows my mind!" +08/28/2017,Sports_celeb,@juliannehough,Ummmm @taylorswift13 just 8 mile'd tgat shit!!! Yo... that video was freakin awesome! 🔥🔥🔥 +08/26/2017,Sports_celeb,@juliannehough,My absolute whole ❤️ #Lexi 🐶 #Harley 🐼 #nationaldogsday https://t.co/2zsJaK3Fny +08/25/2017,Sports_celeb,@juliannehough,"Calling all my Utah friends, family and followers!!! I will be joining @imaginedragons along… https://t.co/7qxXFaXhAA" +08/25/2017,Sports_celeb,@juliannehough,I'm so inspired by all the hard work my friend and fellow dancer @KimGingras has put into her… https://t.co/eULypSlGmu +08/25/2017,Sports_celeb,@juliannehough,I'm obviously obsessed with anything related to chasing your dreams.... and I just got the… https://t.co/nyUkqo7fKk +08/24/2017,Sports_celeb,@juliannehough,#mpgsport #mpgbyjules https://t.co/VkmBJQBopQ +08/24/2017,Sports_celeb,@juliannehough,A good sports bra is a total must have when you’re working out. This one’s called the Pacesetter… https://t.co/AFBDx5W9hn +08/24/2017,Sports_celeb,@juliannehough,"Retro touches, because who doesn't love a little throwback style?! https://t.co/78XPpl2IqW" +08/24/2017,Sports_celeb,@juliannehough,Gorgeous new fall colors like rose & port https://t.co/D8L1dQjyyQ +08/24/2017,Sports_celeb,@juliannehough,Things I ❤ this season: https://t.co/wayuyax3Q7 +08/24/2017,Sports_celeb,@juliannehough,My Fall ’17 Collection with @mpgsport has landed! https://t.co/cCugBKNs92 +08/24/2017,Sports_celeb,@juliannehough,Here.... https://t.co/ecHhrQTi7t +08/24/2017,Sports_celeb,@juliannehough,Finally...... https://t.co/U0bE8o8MqZ +08/24/2017,Sports_celeb,@juliannehough,It's.... https://t.co/X0Qmke2FeV +08/23/2017,Sports_celeb,@juliannehough,Universal ❤️ @ Rosaliné https://t.co/UsTxnIa6UJ +08/20/2017,Sports_celeb,@juliannehough,Training for my next role 🥊 #firsttimeboxing #trainthebrain #holycardio #loveit https://t.co/PN89fMKCiD +08/20/2017,Sports_celeb,@juliannehough,"Unlike Lexi 🐶 and Harley 🐼, Romy 🐻 is totally pumped about his new Alaskan PJ's!!! #mom https://t.co/Sir8ma5djV" +08/18/2017,Sports_celeb,@juliannehough,"#FBF Fun fact: @BrooksLaich and I honeymooned to a few different spots, but one in particular… https://t.co/l39Sak3YQu" +08/17/2017,Sports_celeb,@juliannehough,"When you think you're a professional photographer.... you gotta have a good stance! +📷:… https://t.co/K0reIETGwq" +08/16/2017,Sports_celeb,@juliannehough,Caption please... 🔥🎽❤️💦🚣🏼 #fishinwithmyishes #11yearsinthemaking #allforward #riley 📷:… https://t.co/pvCpSxHluD +08/14/2017,Sports_celeb,@juliannehough,"#BetchaKanCatchaKrabInKetchikan 🦀 @ Ketchikan, Alaska https://t.co/yxCkmq3ZIz" +08/14/2017,Sports_celeb,@juliannehough,Thank you @celebritycruise 🚢 for the gift of this gorgeous Alaskan cruise with some of my best… https://t.co/9eBjwBQ5aa +08/14/2017,Sports_celeb,@juliannehough,"Ketchikan, Alaska 🏔🐻🚢🦀 https://t.co/GM44eRoe0j" +08/13/2017,Sports_celeb,@juliannehough,"Last night in the library... 📖 +Before the silent disco 💙❤️💚 @ British Columbia https://t.co/l5whq76gK8" +08/13/2017,Sports_celeb,@juliannehough,"RT @IMKristenBell: This thread brought me to tears. Thank you, sister Helen. I really needed to read this today. https://t.co/Ig5onMOVPP" +06/30/2018,Sports_celeb,@JeffGordonWeb,Wishing the @NASCARonNBC team all the best @ChicagolndSpdwy as they carry @NASCAR Cup & Xfinity races the remainder… https://t.co/bVJh20ykoh +06/28/2018,Sports_celeb,@JeffGordonWeb,🏎😎 https://t.co/BvqpBZzZ6m +06/27/2018,Sports_celeb,@JeffGordonWeb,"The stage 1 winner is... + +Chris Price from Caldwell, Texas won the first $5,000 drawing for @JeffGordon4Cure's… https://t.co/cyMA0rJrRB" +06/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: From Daytona to Sonoma. What a ride. + +@MikeJoy500, @AllWaltrip and @JeffGordonWeb share their favorite moments from the 20…" +06/26/2018,Sports_celeb,@JeffGordonWeb,"Meeting Grandma Pat was special. + +⬇️⬇️ + +https://t.co/Din9mw9Bhn + +@NASCARONFOX +@PoconoRaceway +@MichaelStrahan + +#TeamJG" +06/25/2018,Sports_celeb,@JeffGordonWeb,Congrats! That’s awesome! Glad you conquered the peak and didn’t see any “blue sky”😁 https://t.co/qZ0j0YdFIQ +06/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@AllWaltrip, @JeffGordonWeb and @MikeJoy500 take you around Sonoma. https://t.co/qgKVNfVkBk" +06/24/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FS1 or https://t.co/DKghQFsqRs at 1:30pm ET for @NASCARONFOX from Sonoma! + +📷:… https://t.co/n01xfTkpdJ" +06/24/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: Could you see yourself driving this? + +Get your ticket for the chance to win this special #Corvette & up to $10,000 whil…" +06/23/2018,Sports_celeb,@JeffGordonWeb,"Could you see yourself driving this? + +Get your ticket for the chance to win this special #Corvette & up to $10,000… https://t.co/0n7jl8VhcF" +06/21/2018,Sports_celeb,@JeffGordonWeb,Enjoyed spending time with these #JeffGordon24EverVIP fans and @WilliamByron in Michigan. Great group that traveled… https://t.co/AGdBgMbBNO +06/20/2018,Sports_celeb,@JeffGordonWeb,There’s no other choice than the Birthday Cake Milkshake for the birthday girl at @BlackTapNYC 😊🎂. https://t.co/rtZKw8WsNf +06/18/2018,Sports_celeb,@JeffGordonWeb,Feeling very lucky this Father’s Day! https://t.co/PMhbYb6NVL +06/17/2018,Sports_celeb,@JeffGordonWeb,"Nothing beats a classic like a Slip ‘N Slide, especially in slow-mo. #FathersDay2018 https://t.co/tWeMJLZFEX" +06/17/2018,Sports_celeb,@JeffGordonWeb,Enjoyed the amazing weather at @usopengolf & @rooknox cult fan following. Thanks @FOXSports! https://t.co/9xP2RdfMqF +06/15/2018,Sports_celeb,@JeffGordonWeb,"Last chance! Stage 1 ends today for the chance to win Corvette, up to $15,000 & support @JeffGordon4Cure in helping… https://t.co/4NBM1RQdrI" +06/13/2018,Sports_celeb,@JeffGordonWeb,"🎵 +@U2 +@ApolloTheater +@SIRIUSXM https://t.co/H3dNCnA1nb" +06/13/2018,Sports_celeb,@JeffGordonWeb,New Release: @RayEvernham Dual Autographed 1998 @AMSUpdates Win Die Cast. Limited edition available exclusively at… https://t.co/1A7UVsjozD +06/12/2018,Sports_celeb,@JeffGordonWeb,"There’s no other experience in the world like hearing, smelling and feeling race cars flying by at 200+mph! @NASCAR https://t.co/vh0cSX91CC" +06/12/2018,Sports_celeb,@JeffGordonWeb,Unforgettable night with @U2 at @ApolloTheater thanks to @SIRIUSXM. https://t.co/evMkH3mBcy +06/10/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@JeffGordonWeb sits down with the great-grandson of Henry Ford, Edsel Ford, to discuss the Ford's rich racing history at…" +06/10/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FOXTV or https://t.co/vrddf6SJWT at 1:30pm ET for @NASCARONFOX from @MISpeedway! + +📷:… https://t.co/jyBDQiMVcc" +06/09/2018,Sports_celeb,@JeffGordonWeb,Enjoyed meeting @beyetteracing97 today at @MISpeedway & autographing his signature edition Monte Carlo. Awesome to… https://t.co/HsZaCa36qJ +06/08/2018,Sports_celeb,@JeffGordonWeb,Well any luck?😎 https://t.co/8wGMSjwGmS +06/08/2018,Sports_celeb,@JeffGordonWeb,"So cool for me to be able to meet Grandma Pat last week & help her check something off her bucket list! + +Big thanks… https://t.co/2xn7PzgLBP" +06/08/2018,Sports_celeb,@JeffGordonWeb,Special evening with Ella to see Harry Potter on Broadway last night. She’s still smiling! https://t.co/kxKRE2VD6A +06/06/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARHall: Stop by the Hall & gaze in awe at @JeffGordonWeb's 60th Anniversary Chevy Corvette! Get your ticket to win this #CorvetteFo… +06/05/2018,Sports_celeb,@JeffGordonWeb,"RT @BMSupdates: You could win @JeffGordonWeb’s personal @chevrolet Corvette and up to $15,000 cash & support kids fighting cancer through t…" +06/03/2018,Sports_celeb,@JeffGordonWeb,RT @ClintBowyer: Thanks @JeffGordonWeb. Cash has been burnin’ laps all day. 👌 https://t.co/8zMPH7atQX +06/03/2018,Sports_celeb,@JeffGordonWeb,"Ready for racing? Tune to @FS1 or https://t.co/vrddf6SJWT at 12:30pm ET for @NASCARONFOX from Pocono! + +📷:… https://t.co/0fIVieYvNH" +06/03/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: You could win my personal #Corvette, up to $15,000 cash & support @JeffGordon4Cure in helping kids that are battling can…" +06/01/2018,Sports_celeb,@JeffGordonWeb,"You could win my personal #Corvette, up to $15,000 cash & support @JeffGordon4Cure in helping kids that are battlin… https://t.co/bHDCqHfJbe" +06/01/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Charlotte. Awesome group that trav… https://t.co/zcFNgH4n97 +06/01/2018,Sports_celeb,@JeffGordonWeb,New Release: Dual Autographed @WilliamByron 2018 #24 @AxaltaRacing Rainbow @TooToughToTame Throwback ELITE 1:24 Sc… https://t.co/qExEgzOQ2V +05/28/2018,Sports_celeb,@JeffGordonWeb,https://t.co/czpv8A0Tkf +05/27/2018,Sports_celeb,@JeffGordonWeb,Are you ready for the 600? Tune to @FS1 at 4:30pm ET for @NASCAR #RaceDay from Charlotte then @NASCARONFOX at 5:30p… https://t.co/lzllqnjMPk +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: “Thanks for sending in your #AskJG questions. This was fun! Don’t miss tomorrow’s race from Charlotte on FOX.”- @JeffGordo… +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Anterga 3️⃣🏁 #AskJG https://t.co/T4fXlDl5Oq +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Incredicast “@Bobby_Labonte deserves to be in the @NASCARHall.”- @JeffGordonWeb #AskJG https://t.co/vXzvydvhPZ +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@thecon24 “It feels like a championship!”- @JeffGordonWeb #AskJG https://t.co/VO9NvbkL23 +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@racrboi90 #AskJG https://t.co/O6Oym5F5Il +05/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@JaydenTroutman You in, @AllWaltrip? @MartinsvilleSwy #AskJG https://t.co/MYuZNiIRVL" +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@CriswellZ71 #AskJG https://t.co/iKuOdz80bj +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Hail4Breakfast #AskJG https://t.co/s3fZsGtMhG +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@kevinpearman #AskJG https://t.co/DmHkS0dfsm +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@24gordongirlfan #AskJG https://t.co/ZHRmRH4DjE +05/26/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@JeffGordonWeb is here to answer your #AskJG questions from Charlotte! What do you want to know? https://t.co/cG7fGWzAaF +05/24/2018,Sports_celeb,@JeffGordonWeb,"You were 25?! What was I thinking?😂 Seriously, It was a pleasure working with you Steve. A lot of great years toget… https://t.co/MV0PWiyjcK" +05/24/2018,Sports_celeb,@JeffGordonWeb,Call off the search! I’m in and proud as....you know what! 96% is good enough for me😃 https://t.co/lMANskDL9Q +05/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Get ready for a Twitter video Q&A with a NASCAR legend! What have you always wanted to ask Jeff Gordon? + +Reply to this twe…" +05/23/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Tonight’s NASCAR #RaceHub is all about Jeff Gordon. We’ll talk with the Hall of Famer himself, along with a prominent list…" +05/23/2018,Sports_celeb,@JeffGordonWeb,Extremely honored to be part of the 2019 @NASCARHall of Fame Class. I’m grateful to so many people that played a ro… https://t.co/35JzXmybXo +05/20/2018,Sports_celeb,@JeffGordonWeb,A lot of exciting moments in last night’s All Star race @CLTMotorSpdwy. Good chance we’ll see a updated version of… https://t.co/eWST90QW0d +05/19/2018,Sports_celeb,@JeffGordonWeb,"Ready for the #AllStarRace? Tune in to @NASCARonFOX from Charlotte on @FS1 or https://t.co/vrddf6SJWT! + +📷:… https://t.co/C5rSYcCygY" +05/19/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: TONIGHT. $1M is up for grabs. + +Don't miss the 2018 #AllStarRace. Coverage begins at 5p ET on FS1. + +https://t.co/sGhMOjNT1O" +05/18/2018,Sports_celeb,@JeffGordonWeb,".@WilliamByron to Drive Throwback Rainbow #24 at @TooToughToTame + +🌈🌈🌈🌈 +@AxaltaRacing +@TeamHendrick + +https://t.co/rpPohkaXzA + +#TeamJG" +05/18/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: Getting ready for an exciting announcement with @WilliamByron and @JeffGordonWeb. + +Watch it live on @AxaltaRacing’s Inst…" +05/18/2018,Sports_celeb,@JeffGordonWeb,The cover comes off of @WilliamByron’s No. 24 Chevy Camaro for @TooToughToTame today. Head over to @AxaltaRacing’s… https://t.co/mfwV4yoD7r +05/18/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Jeff Gordon remembers the very wet 2001 NASCAR #AllStarRace, when he went to Victory Lane in a backup car. #RaceHub https:…" +05/16/2018,Sports_celeb,@JeffGordonWeb,That’s a great collectible! And signed by all 4 drivers👍🏻 https://t.co/TGCTqrRWNC +05/16/2018,Sports_celeb,@JeffGordonWeb,👍🏻😁 https://t.co/Mh4HZPqDm0 +05/16/2018,Sports_celeb,@JeffGordonWeb,I sure do! Had a blast racing that kart. That’s at the small dirt track outside the old Baylands track where they u… https://t.co/kl9dK5Hhym +05/15/2018,Sports_celeb,@JeffGordonWeb,Enjoyed hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Kansas. Great group that traveled fro… https://t.co/gknVFNeYzO +05/15/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Saturday night. $1M is up for grabs. + +Don't miss the 2018 #AllStarRace on FS1. https://t.co/ZMYq0MCWGI" +05/13/2018,Sports_celeb,@JeffGordonWeb,"Happy Mother’s Day to, @ivandebosch, my wonderful wife & amazing mom to Ella & Leo! https://t.co/kfbUVZi1JZ" +05/12/2018,Sports_celeb,@JeffGordonWeb,Who’s ready for racing? It’s almost go time. Tune in to @NASCARonFOX from Kansas at 7pm ET on @FS1 or… https://t.co/BnCYZz4v9A +05/12/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: New family photos. + +⬇️⬇️⬇️ + +https://t.co/4Nt1Ii92pu + +#TeamJG https://t.co/3HYiVbJi3E" +05/12/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: Racing Rewards is a new app where you can play games, answer trivia, get the latest racing news & more to earn reward po…" +05/12/2018,Sports_celeb,@JeffGordonWeb,"New family photos. + +⬇️⬇️⬇️ + +https://t.co/4Nt1Ii92pu + +#TeamJG https://t.co/3HYiVbJi3E" +05/11/2018,Sports_celeb,@JeffGordonWeb,I’m pretty sure I was telling you about my goal to perfect the mullet!😂. Had a lot of great battles together over t… https://t.co/Tsa8A2PIhh +05/11/2018,Sports_celeb,@JeffGordonWeb,"Thank you to everyone who attended A Night In Napa supporting @JeffGordon4Cure. Because of you, we raised over $75,… https://t.co/RAO22Pdm0Z" +05/10/2018,Sports_celeb,@JeffGordonWeb,"Racing Rewards is a new app where you can play games, answer trivia, get the latest racing news & more to earn rewa… https://t.co/vp3cUA3JBB" +05/06/2018,Sports_celeb,@JeffGordonWeb,"Who’s ready for racing? Tune in to @NASCARonFOX from Dover at 2pm ET on @FS1 or https://t.co/vrddf6SJWT! + +📷:… https://t.co/MFv7sdiUy4" +05/05/2018,Sports_celeb,@JeffGordonWeb,What an honor! Thank you! https://t.co/6uGxB7kiyb +05/03/2018,Sports_celeb,@JeffGordonWeb,This was fun! Great to spend time with these #JeffGordon24EverVIP fans & @WilliamByron at Talladega. Awesome group… https://t.co/STaN24Cv1q +05/03/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonSales: #GuessingGame 🐎 How many horses do you think @JeffGordonWeb's #Chevy dealer can fit on its main showroom floor? 🤔 + +Re…" +05/03/2018,Sports_celeb,@JeffGordonWeb,New family photos -> https://t.co/4Nt1Ii92pu. #TeamJG https://t.co/FD3HWcsiTQ +05/01/2018,Sports_celeb,@JeffGordonWeb,It’s finally here! The 1:18 scale @WayneTaylorRcng 24 Hours of Daytona car looks amazing! Shipping soon from… https://t.co/vtxLzaBI0v +04/30/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron a couple weeks ago in Bristol. Awesom… https://t.co/OvCEnsmHFM +04/30/2018,Sports_celeb,@JeffGordonWeb,RT @jordan10taylor: Great time at Talladega this weekend! Thanks for the hospitality @TalladegaSuperS and @TeamHendrick. #WalkItLikeITalkIt… +04/30/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Man, these autograph chasers are EVERYWHERE at Talladega. 😂 https://t.co/QSE2PMgons" +04/29/2018,Sports_celeb,@JeffGordonWeb,"Who’s ready for racing? Tune to @NASCARonFOX or https://t.co/vrddf6SJWT from Talladega at 1:30pm ET on @FOXTV! + +📷:… https://t.co/ZGGL1RMRln" +04/29/2018,Sports_celeb,@JeffGordonWeb,So cool for me to be able to assist @CodyCutrer24 with his proposal to @Shay_49 yesterday at the… https://t.co/11F8bCd1xI +04/28/2018,Sports_celeb,@JeffGordonWeb,"You can help @JeffGordon4Cure support children battling cancer when you bid on these unique items. + +➡️… https://t.co/F3WAFnABhi" +04/28/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: It's #DriversOnly Saturday in Talladega! Coverage starts today with @NASCAR_Xfinity qualifying at 11a ET on FS1. + +Coverage…" +04/26/2018,Sports_celeb,@JeffGordonWeb,RT @TeamHendrick: #TBT to @JeffGordonWeb’s 2007 win @TalladegaSuperS. https://t.co/ktJsLk2L29 +04/26/2018,Sports_celeb,@JeffGordonWeb,RT @kansasspeedway: Just 4 days left to enter for your chance to meet @JeffGordonWeb as part of a VIP experience right here at Kansas Speed… +04/25/2018,Sports_celeb,@JeffGordonWeb,New Release: @RayEvernham Dual Autographed 1998 @TooToughToTame Win Die Cast available exclusively at… https://t.co/T3vXfQ6Gi2 +04/25/2018,Sports_celeb,@JeffGordonWeb,"Had a great time visiting @LevineChildrens yesterday & being interviewed by @jordin_donahue, daughter of former #24… https://t.co/ZPFchBM2Ya" +04/25/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: After watching our new friend Alexander meet his favorite drivers, we had smiles on our faces, too.😁 https://t.co/MeDgrJM…" +04/23/2018,Sports_celeb,@JeffGordonWeb,Looks like I need to stop by Kennesaw next time I’m in GA! https://t.co/AERsPVkMeB +04/21/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWeb: The Ultimate At-Track Experience Contest! + +You could win: +- (4) Hot Passes +- Meet & Greet +- (4) Grandstand Tickets +- $20…" +04/21/2018,Sports_celeb,@JeffGordonWeb,So proud of Leo today in his 1st USAC.25 race. Started at the back & was moving forward. Went for a late pass into… https://t.co/OreV3RGbUJ +04/21/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 3pm ET on @FS1, then @NASCARonFOX from Richmond at 6pm ET on @FOXTV! Who’s ready for ra… https://t.co/vlqrDpWfqa" +04/21/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Get ready for tonight’s race in Richmond with NASCAR #RaceDay. 3p ET on FS1 and https://t.co/2Jj71pkLEW! https://t.co/kMLH… +04/19/2018,Sports_celeb,@JeffGordonWeb,RT @ivandebosch: The @BCRFcure #HotPinkParty is less than 1 month away! Looking forward to seeing @MaryJBlige take the stage to support bre… +04/16/2018,Sports_celeb,@JeffGordonWeb,"The Ultimate At-Track Experience Contest! + +You could win: +- (4) Hot Passes +- Meet & Greet +- (4) Grandstand Tickets… https://t.co/ySMCyJ7GwZ" +04/16/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: So, if you need to leave work or school within the next hour ... these may help. 😉 https://t.co/uOD9eXDOVK" +04/16/2018,Sports_celeb,@JeffGordonWeb,It is at Bristol! https://t.co/gst6YlUBeX +04/16/2018,Sports_celeb,@JeffGordonWeb,The 30 degree drop in temp today @BMSupdates is going to keep the intensity high(& grip on the steering wheel even… https://t.co/kvn1Or3ULf +04/16/2018,Sports_celeb,@JeffGordonWeb,"Neither, catching up on recorded Supercross on @FS1 from last night. Watching Homeland & Billions after that to fin… https://t.co/ESUDWpYdFs" +04/15/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Need an excuse to miss work and watch racing from Bristol tomorrow? We've got you covered. 👊😎🏁 https://t.co/YYuvKO9u17 +04/15/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: OFFICIAL: The rest of today's action in Bristol has been postponed. We will resume racing tomorrow at 1p ET on FOX. https:… +04/15/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 11:30am ET on @FS1, then @NASCARonFOX from Bristol at 12:30pm ET on @FOXTV! Who’s ready… https://t.co/UBqlcodBye" +04/14/2018,Sports_celeb,@JeffGordonWeb,Watching the @NASCAR Xfinity race and it reminds me of “old school Bristol”. Pretty cool! Wondering though if… https://t.co/jQUmotGCzG +04/13/2018,Sports_celeb,@JeffGordonWeb,Learn anything about that last pit road timing segment leaving #1 pit stall? 🤔 https://t.co/AkR1xYlvAo +04/13/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordonWeb: @CopaCavanna Hi Alan! 😁 https://t.co/mkkqOwtG3o +04/13/2018,Sports_celeb,@JeffGordonWeb,@CopaCavanna Hi Alan! 😁 https://t.co/mkkqOwtG3o +04/12/2018,Sports_celeb,@JeffGordonWeb,A yr traveling & racing through Europe🤔👍🏻Is @MattieceHansen a part of the deal?😆 https://t.co/mY54AX3X1e +04/11/2018,Sports_celeb,@JeffGordonWeb,Great time hanging out with these #JeffGordon24EverVIP fans and @WilliamByron in Texas. Awesome group that traveled… https://t.co/xqtgKJ71DK +04/08/2018,Sports_celeb,@JeffGordonWeb,"Tune to @NASCAR #RaceDay at 12:30pm ET, then @NASCARonFOX from Texas at 2pm ET both on @FS1! Who’s ready for racing… https://t.co/PsDPQdYKtX" +04/07/2018,Sports_celeb,@JeffGordonWeb,“Whew... for a second there I thought I was going to miss my exit”😂 https://t.co/oHxqOF75wJ +04/06/2018,Sports_celeb,@JeffGordonWeb,I’ll give @NASCAR & @NASCARONFOX a lot of credit for cancelling qual today. It just started pouring down rain! Not… https://t.co/ulodvt1mRc +04/06/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: Look who we found roaming the garage. 👋 https://t.co/zrMuNinHk0 +04/02/2018,Sports_celeb,@JeffGordonWeb,Dinner & stargazing with the family. Perfect night (and a blue moon!). https://t.co/RFnTvEDZzu +04/01/2018,Sports_celeb,@JeffGordonWeb,https://t.co/rCzDBybWMG +04/01/2018,Sports_celeb,@JeffGordonWeb,Happy Easter https://t.co/mYFJjWeoFs +04/01/2018,Sports_celeb,@JeffGordonWeb,"If you’ve never seen zip-lining in Costa Rica then you’ve probably not seen the Superman Zip-line. Insane! And no,… https://t.co/aCX8xnN2p3" +03/30/2018,Sports_celeb,@JeffGordonWeb,Woke up to monkeys having their breakfast in the treetops outside our room. https://t.co/SYDVpjZbTg +03/30/2018,Sports_celeb,@JeffGordonWeb,@ClintBowyer No race car driver(or person) cooler than @MarioAndretti! But don’t let the awesome meter get in the w… https://t.co/iNz5GATVbz +03/30/2018,Sports_celeb,@JeffGordonWeb,https://t.co/0oMFrYngjk +03/29/2018,Sports_celeb,@JeffGordonWeb,"In an interview with @MediaPlanetUSA for a special feature that was in yesterday's @USATODAY, discussed the road ah… https://t.co/2IUw5xRjFw" +03/29/2018,Sports_celeb,@JeffGordonWeb,Zip line Costa Rica! https://t.co/yUSRxiPvSy +03/29/2018,Sports_celeb,@JeffGordonWeb,Fun & adventurous day in Costa Rica. https://t.co/wx3s8gfjph +03/27/2018,Sports_celeb,@JeffGordonWeb,"Recently, @ivandebosch visited her family in Belgium to celebrate her Mom’s 85th birthday. 🎂 + +You can check out 📷 &… https://t.co/u1V6UlTVyQ" +03/26/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT for @NASCARonFOX from Martinsville at 2pm ET! Snow postponed yesterday’s ra… https://t.co/5HYo5ZTmqj +03/26/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: NASCAR Truck Series: ✓ +NASCAR Cup Series: NEXT! + +#RaceHub gets you ready for today's main event in Martinsville NOW on FS1…" +03/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Snow has postponed all activity at @MartinsvilleSwy until Monday. + +Tomorrow on @FS1: +- @NASCAR_Trucks at 11a ET +- Cup Ser…" +03/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: @NASCAR_Trucks NASCAR #RaceDay - 12:30p ET + +Cup Series Racing - 2p ET + +Truck Series Racing - Immediately following the Cup…" +03/24/2018,Sports_celeb,@JeffGordonWeb,I’m not the only one in the family who loves coming to @MartinsvilleSwy. Thank you @JamieLittleTV for letting Ella… https://t.co/DBMuVm5MEE +03/23/2018,Sports_celeb,@JeffGordonWeb,"RT @ivandebosch: This is what a real Belgian Waffle looks like, hot Chocolat sauce and Ice cream onthe side! For a 4pm snack une https://t.…" +03/23/2018,Sports_celeb,@JeffGordonWeb,RT @AxaltaRacing: #BreakingNews -- @AxaltaRacing is thrilled to announce our extension with @TeamHendrick through 2022! #WePaintWinners htt… +03/23/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Martinsville. Sunday on FS1. https://t.co/bB0xH6Eh43 +03/22/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: The Martinsville hour is close at hand. https://t.co/HmG01QruxY +03/21/2018,Sports_celeb,@JeffGordonWeb,"Ingredients to a great day. + +Leo: ”Dad what is Star Wars about?” + +Me: ”In a galaxy far away....good vs evil....Luk… https://t.co/XvY9r6Mm38" +03/19/2018,Sports_celeb,@JeffGordonWeb,"Really enjoyed spending time with these #JeffGordon24EverVIP fans at Fontana. Great group that traveled from AZ, CA… https://t.co/ikdbMTnhAN" +03/18/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Fon… https://t.co/0czmNUfr8i +03/18/2018,Sports_celeb,@JeffGordonWeb,Wow what a clutch shot! That was a scream out loud “WHAT!!!” moment. https://t.co/pesZKmtXia +03/17/2018,Sports_celeb,@JeffGordonWeb,"RT @DaleJr: That time I went to get highlights but was sick of the pain of getting my hair pulled through the cap. Ouch. +Lesson: no pain n…" +03/17/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordonWeb: @DaleJr I see retirement is treating you to the same amount of relaxation as it is for me. I’m not sure how to describe… +03/17/2018,Sports_celeb,@JeffGordonWeb,@DaleJr I see retirement is treating you to the same amount of relaxation as it is for me. I’m not sure how to desc… https://t.co/3cZbNt4uCI +03/17/2018,Sports_celeb,@JeffGordonWeb,LOL! When do u plan to get back to the race track this year? You have too much time on your hands!😂 https://t.co/ZPmly4y0kT +03/17/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Spend your St. Patrick's Day with #NASCARonFS1! Monster Energy Series practice is at 12:30p ET. + +Here's your full Saturday…" +03/17/2018,Sports_celeb,@JeffGordonWeb,"Wow! NASCAR-“I’ll see your $50.....& raise you $1,000” https://t.co/gdRn5Xva5m" +03/16/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: California dreamin' on Fast Friday. https://t.co/EMuynFnX3r +03/15/2018,Sports_celeb,@JeffGordonWeb,RT @JonEdwards24: Be sure to catch @JeffGordonWeb @ShannonSpake @LarryMac28 and @adam1alexander on Race Hub tonight at 7 pm ET. https://t.c… +03/14/2018,Sports_celeb,@JeffGordonWeb,Well said Eddie! Couldn’t agree more. https://t.co/sCvGbuuOH2 +03/14/2018,Sports_celeb,@JeffGordonWeb,"RT @ajsuriano_: Hey @JeffGordonWeb guess what, your biggest fan, Fan 151 (@driveforfive) gave birth to Baby Franks today.... at 3:24... htt…" +03/14/2018,Sports_celeb,@JeffGordonWeb,Haha talk about a cool experience! Room full of racing legends and solving world problems with the greatest of them… https://t.co/Di5gu6yb7h +03/14/2018,Sports_celeb,@JeffGordonWeb,"👟🔥👀 + +@MACHE275 created custom kicks. + +⬇️⬇️⬇️ + +https://t.co/JGpfU3Ty9t + +#TeamJG https://t.co/Q4lgbSWRCz" +03/14/2018,Sports_celeb,@JeffGordonWeb,"RT @TeamHendrick: A well-deserved honor! + +Congratulations, @JeffGordonWeb on your induction into the @MotorsportsHOF. 🎉 https://t.co/dQS0iy…" +03/13/2018,Sports_celeb,@JeffGordonWeb,😂😂😂U go Larry Mac! #crewchiefofbelair https://t.co/jzozCepYGc +03/12/2018,Sports_celeb,@JeffGordonWeb,RT @JeffGordon4Cure: Checked out our eBay store recently? There are 600+ listings for purchase to help support our fight against childhood… +03/12/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: #RaceHubGoesWest: 6p ET on FS1. https://t.co/8kVqTajpDC +03/12/2018,Sports_celeb,@JeffGordonWeb,“The entire #JeffGordon24EverVIP Experience was amazing from start to finish. This was a surprise graduation presen… https://t.co/RDXuKnciuI +03/11/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 or https://t.co/vrddf6SJWT at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Pho… https://t.co/Rndr1vT8pG +03/10/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Your NASCAR Saturday is less than one hour away! It all kicks off on FS1 at 12p ET. https://t.co/7Wh3uDV01E +03/09/2018,Sports_celeb,@JeffGordonWeb,Exactly. Teams were using exotic materials such as Nitinol(Nickel Titanium). Only aluminum is allowed now. https://t.co/BYmyAWMs5v +03/09/2018,Sports_celeb,@JeffGordonWeb,The side skirts are made of plastic(except the tailpipe area). The only material allowed on the right side surround… https://t.co/EmGka5WfXW +03/09/2018,Sports_celeb,@JeffGordonWeb,New Release: Autographed @RayEvernham 2018 @NASCARHall Of Fame 1:24 Scale ARC Fantasy Die Cast! Exclusively at… https://t.co/EQKsHlc9uv +03/08/2018,Sports_celeb,@JeffGordonWeb,RT @NASCAR: .@ISMRaceway sure holds a special place in @JeffGordonWeb's heart. 3️⃣ https://t.co/3tvjRdLgrd +03/07/2018,Sports_celeb,@JeffGordonWeb,What a pleasure it was to drive & win a race for the Wilke Family. Hard to believe that was 27yrs ago! https://t.co/qYJm1pZ8H0 +03/06/2018,Sports_celeb,@JeffGordonWeb,I’m so honored and thrilled to be one of the 20 nominees for the 2019 @NASCARHall of Fame class. Such a special con… https://t.co/dd9wFUIZXm +03/06/2018,Sports_celeb,@JeffGordonWeb,"New things for @TeamHendrick. In case you missed the @NASCARONFOX interview - talking with @JimmieJohnson,… https://t.co/9x3V57p8G8" +03/05/2018,Sports_celeb,@JeffGordonWeb,🤔𗀡😂 https://t.co/OhELcz44Pf +03/05/2018,Sports_celeb,@JeffGordonWeb,"😍😍 + +📸 ➡️ https://t.co/4Nt1Ii92pu. + +#TeamJG https://t.co/TvJyjPv8AW" +03/05/2018,Sports_celeb,@JeffGordonWeb,"RT @JeffGordonWine: Our 2014 Carneros Chard, autographed by Jeff, & our 94-point 2009 Napa Cab from the library...what a pair! Secure yours…" +03/04/2018,Sports_celeb,@JeffGordonWeb,"Tune to @FS1 at 2pm ET for @NASCAR #RaceDay & @FOXTV at 3pm ET for @NASCARonFOX from Las Vegas Motor Speedway. + +📷:… https://t.co/xoHp0C8E8J" +03/04/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Soon ... (2p ET on FS1, to be exact) https://t.co/B7sMo32UXc" +03/03/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Your NASCAR Saturday starts ... NOW! + +All of today's action is on FS1. Stream it with https://t.co/2Jj71pkLEW. https://t.…" +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Fast Friday from Las Vegas. https://t.co/dDkxQcM7Zy +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Fiiiiiiiiiiiiiiiiiiiiiiiiiiiight. We all remember these. #TBT #RaceHub https://t.co/3sls0GrYma +03/02/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: BREAKING NEWS. #RaceHub had a lot of fun this week ... as usual. https://t.co/KqcdP05EsP +03/01/2018,Sports_celeb,@JeffGordonWeb,Very cool! Great to see @MattieceHansen behind the wheel. You are a good man for doing that @AnthonyKumpen. Hope th… https://t.co/OJbtDSTnkr +03/01/2018,Sports_celeb,@JeffGordonWeb,"Talked life, racing, work & a few other things with @NateRyan on the @NASCARonNBC podcast. You can listen here ->… https://t.co/OttdP4Px9D" +02/28/2018,Sports_celeb,@JeffGordonWeb,"Recently joined @NateRyan for @NASCARonNBC podcast. Covered a lot of things. Think you'll enjoy it. + +– Past, presen… https://t.co/56QS1MuBBs" +02/28/2018,Sports_celeb,@JeffGordonWeb,RT @24ChevyLover: Wow! Time goes @NASCAR fast! It was 4 years ago on this date that I met @JeffGordonWeb for my first #JeffGordon24EverVIP… +02/28/2018,Sports_celeb,@JeffGordonWeb,"RT @nateryan: Among the topics of @JeffGordonWeb's visit to the @NASCARonNBC podcast: +--His thoughts on his upcoming @NASCARHall candidacy;…" +02/28/2018,Sports_celeb,@JeffGordonWeb,"RT @nateryan: New @NASCARonNBC podcast is a wide-ranging convo with guest @JeffGordonWeb of @NASCARONFOX. #nascar +@art19co: https://t.co/y6…" +02/28/2018,Sports_celeb,@JeffGordonWeb,Happy Birthday to the legend @MarioAndretti. +02/27/2018,Sports_celeb,@JeffGordonWeb,New family photos -> https://t.co/4Nt1Ii92pu. #TeamJG https://t.co/f81bc8Lp7x +02/26/2018,Sports_celeb,@JeffGordonWeb,"Leo is officially ready to race! + +📷 -> https://t.co/4Nt1Ii92pu. https://t.co/oTtY8WZClj" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: WE. ARE. GREEN! + +Ryan Newman leads lap 1 of 325 in Atlanta. https://t.co/RvXjz3V69s" +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Retweet to spread the news! Looks like we're going racing in Atlanta. Coverage continues NOW on FOX and https://t.co/2Jj71… +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: Mike Joy and Larry Mac are optimistic. https://t.co/9CRH5FPUvE +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: When dad tells you to shape up on national television. https://t.co/FvW2PWf0gr +02/25/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@BubbaWallace reflects on his 2nd-place finish in the Daytona 500. https://t.co/XgBhhnjVwg +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: ""You just can't lift. If I lift, I'm probably getting wrecked out the back.""- @AustinDillon3 watches the 2018 Daytona 500…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Seeing that No. 9 with an Elliott on the door is definitely ... Awesome. + + Racing is a family affair. Bill and @ChaseEllio…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: ""Do as I say, not as I do.""- Tony Stewart to Aric Almirola before Daytona 500 post-race interview. https://t.co/WTehPbUGu0" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Want proof that it’s not raining right now in Atlanta? We’re LIVE on pit road. 😎 + +#FoHQT500 https://t.co/UqTrXaHGZT" +02/25/2018,Sports_celeb,@JeffGordonWeb,Tune to @FS1 at 12pm ET for @NASCAR #RaceDay & @FOXTV at 12:30pm ET for @NASCARonFOX from @AMSUpdates. #NASCAR… https://t.co/nHwtqrBERL +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: Welp. It's raining in Atlanta. Hoping to send out the Air Titans soon. + +Get the latest on the AMS weather during NASCAR #R…" +02/25/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: LET'S DO THIS! Welcome to Atlanta. + +NASCAR #RaceDay - 12p ET - FS1 +Race coverage - 12:30p ET - FOX https://t.co/Moc5i6nAng" +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: “Thanks for sending in your questions! Don’t miss the Atlanta race tomorrow. Coverage begins at 12:30p ET on FOX!” https:/… +02/24/2018,Sports_celeb,@JeffGordonWeb,"RT @NASCARONFOX: .@jsbatella Hey, @BubbaWallace and @WilliamByron ... #AskJG https://t.co/I6co4BqzbE" +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@brandon73999679 2️⃣4️⃣🏁 #AskJG https://t.co/VloJHguSun +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@Monte241 #AskJG https://t.co/wNLEQ2odkF +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@bebe24488805 #AskJG https://t.co/oaZeWH36Eu +02/24/2018,Sports_celeb,@JeffGordonWeb,RT @NASCARONFOX: .@barkeep1347 #AskJG https://t.co/q11FPSR38c +06/30/2018,Sports_celeb,@JimmyJohnson,"RT @Dolfin55: June 4, 1984: @JimmyJohnson is officially introduced to the media as the new head football coach at the University of Miami.…" +06/28/2018,Sports_celeb,@JimmyJohnson,Cocktails on Lady S (Dan Snyder’s yacht in Cannes France..great time! https://t.co/4dLEPaveLO +06/17/2018,Sports_celeb,@JimmyJohnson,Class individuals! https://t.co/Z68IgkqdLv +06/14/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: How gorgeous is @JimmyJohnson's 2019 #JJFishweek Crest? Official tournament artist Dennis Friel blows it out of the water.… +06/07/2018,Sports_celeb,@JimmyJohnson,Now I know who was on that boat! https://t.co/ywdZopg193 +06/07/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: .@JimmyJohnson + @HardRockHolly = one hell of a kickoff party! #TBT to #JJFishweek's premier Gifting Suite Experience & all… +06/06/2018,Sports_celeb,@JimmyJohnson,True! https://t.co/qPXSgoFYsn +06/06/2018,Sports_celeb,@JimmyJohnson,Exciting Day! https://t.co/fucuA1wCnE +06/04/2018,Sports_celeb,@JimmyJohnson,Yes disappointing ..only in playoffs 3 straight years winning couple https://t.co/iyGiErQksK +05/22/2018,Sports_celeb,@JimmyJohnson,"RT @DarrinDonnelly: “Treat a person as he is, and he will remain as he is. Treat a person as if he was what he could be and should be, and…" +05/22/2018,Sports_celeb,@JimmyJohnson,"RT @damonwest7: So excited I get to share my story with @CanesFootball on June 26th. Just finalized the deal. +This was my team growing up,…" +05/22/2018,Sports_celeb,@JimmyJohnson,RT @CoachPeten: @JimmyJohnson as a fellow coach I hope that you soon will get the credit you deserve from the NFL. You deserve the HOF! Yo… +05/22/2018,Sports_celeb,@JimmyJohnson,RT @DHGHealthcare: Our final day of Symposium wrapped with a Keynote from Coach Jimmy Johnson and a Q&A with Pam Oliver! Thank you to our a… +05/21/2018,Sports_celeb,@JimmyJohnson,"Peter, I always trusted you would be fair, but I did mean it! Ha https://t.co/uVaPhL4IP5" +05/21/2018,Sports_celeb,@JimmyJohnson,"RT @RDubThree: .@theMMQB says 'Thank You' to former #Cowboys HC @JimmyJohnson, and the coach's secret for drafting great players : https://…" +05/17/2018,Sports_celeb,@JimmyJohnson,@OriginBank @drakemills ...congrats great organization! https://t.co/COAaNxvgQp +05/15/2018,Sports_celeb,@JimmyJohnson,"RT @crupicrupicrupi: Why does it matter that Fox Sports owns the fall? Because in the 20 weeks of the football season, consumers spend abou…" +05/13/2018,Sports_celeb,@JimmyJohnson,"RT @RichardDelToro: On the eve of Mother’s Day, I just finished watching @JimmyJohnson “A Football Life”, and the discussion about being pr…" +05/09/2018,Sports_celeb,@JimmyJohnson,RT @warriorgames: Thanks for the shout out! We could always use an extra coach! #WarriorGames https://t.co/WLNPrvBR54 +05/09/2018,Sports_celeb,@JimmyJohnson,Great event! https://t.co/hT2K6Y03tN +05/03/2018,Sports_celeb,@JimmyJohnson,Excited to see our wounded warriors at this yrs #2018 Warrior Games at Air Force Academy +05/01/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: What a finale! @JimmyJohnson revealed his secrets on building a winning team and that's a wrap for #PMMIELC! Much gratitude to… +05/01/2018,Sports_celeb,@JimmyJohnson,"RT @realrobertdunn: @PMMIorg @AFFLINK @JimmyJohnson His hair really is perfect! Leadership is simple... eliminate the wrong people, bring i…" +05/01/2018,Sports_celeb,@JimmyJohnson,"RT @PMMIorg: @JimmyJohnson is gearing up to deliver the final #PMMIELC business session - ""Teams That Win: Fundamentals for Success""! PMMI'…" +05/01/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: Who is ready for the last day of #PMMIELC?! Our #packaging and #processing executives kicked off today with a 5K Fun Run/Walk!… +04/29/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: You were AMAZING!! Great stuff!👍🏼 https://t.co/utN2YSBBw5 +04/27/2018,Sports_celeb,@JimmyJohnson,RT @DarrinDonnelly: “Do you want to play it safe and be good or do you want to take a chance and be great?” – Jimmy Johnson https://t.co/2m… +04/26/2018,Sports_celeb,@JimmyJohnson,Fun town! https://t.co/OuiE1U0buM +04/25/2018,Sports_celeb,@JimmyJohnson,RT @PMMIorg: @JimmyJohnson is coming to #PMMELC! The former NFL coach will reveal his secrets on building a winning organization: https://t… +04/23/2018,Sports_celeb,@JimmyJohnson,Lure in rt hand https://t.co/C9QdjYxx77 +04/23/2018,Sports_celeb,@JimmyJohnson,tamerproducts @bellsouth.net https://t.co/pMqWJF7qb6 +04/21/2018,Sports_celeb,@JimmyJohnson,Like 30 other teams IWISH we had drafted @RandyMoss ! +04/21/2018,Sports_celeb,@JimmyJohnson,"Even though Moss was picked Before our pick, I DID miss on AT least 2 or 3 other great players! Ha!" +04/18/2018,Sports_celeb,@JimmyJohnson,Actually 10 HOF players counting couple in college https://t.co/iATGu3hhGG +04/18/2018,Sports_celeb,@JimmyJohnson,Key Largo MM 104 https://t.co/ZyvErd5jQ2 +04/18/2018,Sports_celeb,@JimmyJohnson,A little advice for NFL teams getting ready for the draft..Ask yourself “ What do I want out of this draft?”work the picks to achieve +04/18/2018,Sports_celeb,@JimmyJohnson,Had great time with Dave & Jan Wannstedt at the “Chill” ...great to reminisce with good people.. https://t.co/LKecThRs1f +04/18/2018,Sports_celeb,@JimmyJohnson,RT @MyPlaceHotels: We thank our many friends at @AAHOA for arranging the meeting and photo opportunity between Coach @JimmyJohnson and My P… +04/17/2018,Sports_celeb,@JimmyJohnson,Congrats Pam! https://t.co/1DrQsWkeOG +04/12/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: This is what Overall 2nd Place at #JJFishweek looks like. All smiles for Captain Scott and his team from Irvine, Tx on Catc…" +04/07/2018,Sports_celeb,@JimmyJohnson,RT @bikerchris417: That time I went to @JimmyJohnson BigChill in fisherman’s cove and ran into the legend himself!!! #FlashbackFridays #flo… +03/28/2018,Sports_celeb,@JimmyJohnson,"RT @AAHOA: ""Create an atmosphere where people can be the best they can be."" - American football coach Jimmy Johnson on leadership. #AAHOACO…" +03/27/2018,Sports_celeb,@JimmyJohnson,RT @AAHOA: Former @dallascowboys and @MiamiDolphins coach @JimmyJohnson will be joining us on the main stage on March 28 at #AAHOACON18! Ch… +03/24/2018,Sports_celeb,@JimmyJohnson,Nice #Garmin watch! https://t.co/LSO2UoD3Hf +03/23/2018,Sports_celeb,@JimmyJohnson,"A great man, one of the nicest individuals I have ever known, Wayne Huizenga passed away. RIP" +03/20/2018,Sports_celeb,@JimmyJohnson,"RT @TodayInSports3: Today in 1989, Jimmy Johnson on the cover of Sports Illustrated. The long climb would pay off 3 years later, winning S…" +03/18/2018,Sports_celeb,@JimmyJohnson,RT @PhinsChris: How @JimmyJohnson identified guys like Zach Thomas and Larry Izzo. #Dolphins https://t.co/ERcux3J4UC +03/11/2018,Sports_celeb,@JimmyJohnson,"Congratulations Sandman! Great time, money for charity #Tranquil Shores and over 2.1 million $$ given out! https://t.co/KT4oyhEXqu" +03/11/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: The Unofficial Newest Member of @JimmyJohnson’s Ring of Honor with 13 releases goes to @sandmanfishing! See you at #BigChil… +03/10/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Unofficial Update Day 2: Noon! And just like that we have a new leader. Catch-22 chartered by Anglers out of the great stat… +03/10/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Day 1 done! Unofficial Leaders: Native Son / Weighted Leader: Chop It Up/Blue Moon Fish Co! Tomorrow we see how things fini… +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Unofficial Update: Day One 3PM Leaderboard - With 83 releases so far and an hour to go, @nativesonfishing is at number 1! K…" +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Unofficial Update: Day One Noon Leaderboard - With 63 releases so far, Hillbilly Deluxe is out in front going after that $1…" +03/09/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Congrats Worldwide Wes, former Toronto Blue Jays player Alex Gonzalez team Rally Cap! Benefiting University of Miami Athlet…" +03/09/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Awesome day at @JimmyJohnson’s Celeb Pro Am! @JonVilma51 @DjWilliam55 @TwanRussell @ripcityhamilton #JJFishweek https://t.c… +03/08/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: We had a great time kicking of tomorrow’s Celeb Pro Am with @JimmyJohnson and his friends tonight at the Big Chill in Key L… +03/07/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Doors are open and we are ready for all our teams at #BigChill. The 2018 #JJFishweek is officially underway and @JimmyJohns… +03/07/2018,Sports_celeb,@JimmyJohnson,RT @YamahaOutboards: Setting up for @jjfishweek https://t.co/xLFv6fyydF +03/05/2018,Sports_celeb,@JimmyJohnson,RT @mike_beedles: Looking forward to supporting @JimmyJohnson on his 7th annual event!!! Always a great time and partner on this incredible… +03/05/2018,Sports_celeb,@JimmyJohnson,Thanks for the comments! https://t.co/JKFvYnPNZp +03/04/2018,Sports_celeb,@JimmyJohnson,RT @HardRockHolly: A few words from coaching legend @JimmyJohnson 🎣 #HardRockHotel #JJFishWeek https://t.co/OiEVT5m1AK +03/04/2018,Sports_celeb,@JimmyJohnson,#jjfishweek! Hard Rock!! https://t.co/PeS74CsJYW +03/04/2018,Sports_celeb,@JimmyJohnson,We have mermaids at jjfishweek! https://t.co/mDO2UKbREa +03/03/2018,Sports_celeb,@JimmyJohnson,We have dancing girls at our tournament! https://t.co/XpMWi18VuH +03/03/2018,Sports_celeb,@JimmyJohnson,Nick and I at biggest fishing tournament in the USA..1 1/2 million dollar purse! jjfishweek! https://t.co/UYdzp1ulGv +03/02/2018,Sports_celeb,@JimmyJohnson,RT @YamahaOutboards: Head over to our Instagram page as coach @JimmyJohnson 's @jjfishweek takes over today in preperation for next week's… +03/01/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Check your mailbox! @JimmyJohnson is the Cover Story for @LifestyleMagFL's March issue! Be sure to read his story ""Reel Tim…" +02/28/2018,Sports_celeb,@JimmyJohnson,RT @BrandCuda: Bags on bags for the @jimmyjohnson event at the @HardRock @BrandCuda https://t.co/tRMMZFT228 +02/27/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: The Happy Hookers are bringing their talents to @JimmyJohnson's Fishing Tournament in Key Largo! +This #NewYork team set t…" +02/22/2018,Sports_celeb,@JimmyJohnson,"RT @FOXSportsSW: When it comes to evaluating talent, take a page out of @JimmyJohnson's playbook! #CowboysNation | #ThursdayThoughts https:…" +02/20/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Are you serious about competing for $1.5 MILLION - the richest guaranteed purse in tournament history? + +There are ONLY 8 S…" +02/16/2018,Sports_celeb,@JimmyJohnson,"RT @FOCUSEDdocs: Relax with @JimmyJohnson, who now resides in the region he first rose to true national prominence. + +Catch @FOCUSEDdocs o…" +02/15/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: We're feeling the love! With over 90 boats registered for #JJFishweek on March 7-10th! No one throws a tournament like Coac… +02/14/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Chartering Captain Matt and the AbsolutJoy Sportfishing team from Palm Beach have $1.5 MILLION reasons to hit the waters of… +02/13/2018,Sports_celeb,@JimmyJohnson,RT @DarrinDonnelly: “The only thing worse than a coach or CEO who doesn’t care about his people is one who pretends to care. People can spo… +02/10/2018,Sports_celeb,@JimmyJohnson,1 of my favorite scouts..great man https://t.co/Ll3JTCWzjF +02/10/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: Jim Garrett was a great man in every way #rip https://t.co/2nioFHFph6 +02/08/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: .@JimmyJohnson's Fishing Championship has a GUARANTEED $1.5M PURSE! @OceanReefTweets's Marina is going to be the place to… +01/31/2018,Sports_celeb,@JimmyJohnson,RT @TroyAikman: A great day in Cowboys history 24 years ago today...little did we know at that moment that this would be @JimmyJohnson last… +01/30/2018,Sports_celeb,@JimmyJohnson,"RT @NFLonFOX: On this date in 1994, the Bills fell to the Cowboys in Super Bowl XXVIII. + +It was Buffalo's 4th Super Bowl loss in 4 seasons.…" +01/30/2018,Sports_celeb,@JimmyJohnson,@nycDolphinsFan Audibles not signals.. +01/26/2018,Sports_celeb,@JimmyJohnson,"RT @JClarkNBCS: Nick Foles is leading #Eagles to #SuperBowl + +And Cowboys owner Jerry Jones doesnt know his name 🤷‍♂️ +Kolb? Folk? Costanza?…" +01/22/2018,Sports_celeb,@JimmyJohnson,"RT @jawsespn: Coach has been converted! 😉 +#FlyEaglesFly +@JimmyJohnson @NFLonFOX https://t.co/0F6tvkvZTL" +01/20/2018,Sports_celeb,@JimmyJohnson,RT @D_Stro: This picture by @curtmenefee ... 💯#xoxoPhilly https://t.co/dlw6fMk6lA +01/20/2018,Sports_celeb,@JimmyJohnson,RT @jjfishweek: @JimmyJohnson's Big Chill in #KeyLargo is our official host venue of #JJFishWeek (March 7-10th). Compete for the $1.5M gua… +01/18/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Welcome back @dennisfriel, the official artist of our history making #JJFishWeek! + +Anglers: Join the quest for our $1.5 Mi…" +01/16/2018,Sports_celeb,@JimmyJohnson,"RT @TSFdtn: Thanks so much to our 2017 donors. Because of your generosity, the Tranquil Shores Foundation was able to provide a significant…" +01/12/2018,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Captain Justin ""Tiny"" Walcott & his team fishing on Bad Daddy are locked in across the board for #JJFishweek March 7-10th i…" +01/03/2018,Sports_celeb,@JimmyJohnson,@alonzohighsmith congratulations on your position with Cleveland Browns you’ll be great in helping turn that team around +01/02/2018,Sports_celeb,@JimmyJohnson,Remember “27” well https://t.co/kagNnlfdqF +01/02/2018,Sports_celeb,@JimmyJohnson,With Buckshot Underwood and Harvey Reeves! https://t.co/Sx2F6FCLDO +12/31/2017,Sports_celeb,@JimmyJohnson,"RT @kevin_miley: On Fox NFL Sunday, @JimmyJohnson gave the coach of the year award to Sean McVay. Another graduate from @miamiuniversity. #…" +12/25/2017,Sports_celeb,@JimmyJohnson,RT @jamesxxcc: MERRY CHRISTMAS! @NFLonFOX @curtmenefee @michaelstrahan #HowieLong @JimmyJohnson @terrybradshaw 🎄🏈 https://t.co/7h9dGEHHEX +12/23/2017,Sports_celeb,@JimmyJohnson,Great time entertaining troops! https://t.co/5gKpZlkYgi +12/23/2017,Sports_celeb,@JimmyJohnson,RT @FreddyRoD5: @jimmyjohns @JimmyJohnson If @JimmyJohnson approves then I’ll be having lunch at @jimmyjohns tomorrow for the first time! +12/22/2017,Sports_celeb,@JimmyJohnson,RT @jimmyjohns: I thought you’d never ask 😏 👉 https://t.co/qGjnvbCWHX https://t.co/Jpo0Jrqhvu +12/22/2017,Sports_celeb,@JimmyJohnson,Yes it was! https://t.co/khk9X3YFrv +12/22/2017,Sports_celeb,@JimmyJohnson,I’m rethinking this ‘not my restaurant’ thing @jimmyjohns .... https://t.co/ihNeNGVGNt +12/21/2017,Sports_celeb,@JimmyJohnson,"Great day on water..83 degrees, pond slick water, caught some tuna now back to Irma cleanup! https://t.co/D8AUopzri4" +12/20/2017,Sports_celeb,@JimmyJohnson,Jimmy Johns is not my restaurant https://t.co/beffDBVtMq +12/17/2017,Sports_celeb,@JimmyJohnson,RT @JanineStanwood: Pizza date at the Chill. Bet @JimmyJohnson is excited to get back to the Keys! https://t.co/N7nJOKE7On +12/14/2017,Sports_celeb,@JimmyJohnson,Rather have Nachos with lots of jalapeños https://t.co/TJNx27yzey +12/13/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Team Utopia is ready to get after it as sailfish season kicks off! They're coming for @JimmyJohnson and @HardRockHolly's $… +11/30/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Grab your room and slip for #JJFishweek at Ocean Reef, Marriot or Mariner! Join @JimmyJohnson in Key Largo Mar 7-10: https:…" +11/25/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: Only a few days left for #JJFishweek 2017 early registration specials! Join @JimmyJohnson in Key Largo Mar 7-10: https://t.… +11/23/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: A special thanks to the #JJFishweek family & our incredible anglers! https://t.co/kuJaN7EkcK | @HardRockHolly @JimmyJohnson… +11/19/2017,Sports_celeb,@JimmyJohnson,RT @mfr234: How ‘bout those Canes?! @JimmyJohnson @gregolsen88 @CanesFootball https://t.co/gGz1lbmjMq +11/19/2017,Sports_celeb,@JimmyJohnson,RT @OmarKelly: The legendary @JimmyJohnson is now sporting the turnover chain. https://t.co/5yEeUjloo0 +11/18/2017,Sports_celeb,@JimmyJohnson,RT @postalcowboy24: .@JimmyJohnson Enjoying the sunset watching some football at The Big Chill. https://t.co/ByotIgYHwL +11/18/2017,Sports_celeb,@JimmyJohnson,"RT @MrStrauchII: @JimmyJohnson Hi Coach...just enjoyed watching you again on TV's ""Coach""! So much fun! https://t.co/m4JSVAxmDp" +11/17/2017,Sports_celeb,@JimmyJohnson,RT @Hil_Pill: My first time in the Keys! Where else would I go but to @JimmyJohnson’s #JJBigChill!! Glad it’s reopened! +11/14/2017,Sports_celeb,@JimmyJohnson,RT @HotelScallywag: Little known fact: #PresidentReagan started the #TurnoverChain when @JimmyJohnson brought the legendary 87 Canes to th… +11/12/2017,Sports_celeb,@JimmyJohnson,RT @TX2NY1016: Shoutout to @FOXSports Every year they do a phenomenal Pre Game show around #veteransday supporting our troops @JayGlazer @m… +11/12/2017,Sports_celeb,@JimmyJohnson,RT @michaelstrahan: Took a ride in the chopper with the Navy ahead of tomorrow’s show for @NFLonFOX. Filming tomorrow’s show on the base fo… +11/12/2017,Sports_celeb,@JimmyJohnson,Proud to be #MiamiHurricanes fan..Mark Richt and his staff had this team well prepared and ready to play. Go Canes! +11/12/2017,Sports_celeb,@JimmyJohnson,🙌🙌🙌Miami!!! Yes!!! +11/11/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: Join us + @JimmyJohnson in wishing #CoachRicht and @canesfootball best of luck tonight! At #JJFishWeek, it's about #TheU 🙌🏻…" +11/10/2017,Sports_celeb,@JimmyJohnson,"RT @ShalashMuh: @JimmyJohnson said it best: +""I told you! If you go to Notre Dame, you can't leave it in the officials' hands."" +#TheU #ItsAl…" +11/09/2017,Sports_celeb,@JimmyJohnson,Looking forward to talking to the troops! https://t.co/MtV9n7JaUy +11/06/2017,Sports_celeb,@JimmyJohnson,RT @themik1: Profound words from @JimmyJohnson that resonate through the ages! #Canes #TheU #NDvsMiami 🙌🏈💪 https://t.co/cUtkLcdd1g +11/06/2017,Sports_celeb,@JimmyJohnson,RT @scott_hickox: The SuperBowl commercials already A+ given the performances of @JimmyJohnson and @terrybradshaw in the @GEICO commercials… +11/05/2017,Sports_celeb,@JimmyJohnson,Loved it better than a hamburger! Check out @BeyondMeat https://t.co/SywXNrxGk0 +11/05/2017,Sports_celeb,@JimmyJohnson,RT @DJNYC1: BWAHAHAHAHAHAHA! 😂😂😂 @JimmyJohnson https://t.co/z3invnRFtz +11/04/2017,Sports_celeb,@JimmyJohnson,"RT @1JohnnyDangle: Just wanna thank @PaulCastronovo, @JimmyJohnson and the whole @CastronovoShow crew for an awesome few days in Key Largo.…" +11/03/2017,Sports_celeb,@JimmyJohnson,RT @PaulCastronovo: About the coolest guy ever. Living the dream @JimmyJohnson https://t.co/4SG5bmDajk +11/01/2017,Sports_celeb,@JimmyJohnson,Rich&Dylan getting ready for Trick or Treat! https://t.co/EbMfXtaB1s +11/01/2017,Sports_celeb,@JimmyJohnson,"RT @agoody1: @JimmyJohnson Can't make the Re-Opening, but rest assured, we will be back for more of this!! #JJBigChill #FloridaKeys #Family…" +10/31/2017,Sports_celeb,@JimmyJohnson,Open for Business! https://t.co/rAbu36Gt3Z +10/29/2017,Sports_celeb,@JimmyJohnson,"RT @NFLonFOX: Game show time with @RamsNFL coach Sean McVay in the studio. + +FOX NFL Sunday starts now! https://t.co/7F5lrPkWt6" +10/29/2017,Sports_celeb,@JimmyJohnson,"RT @RamsNFL: Ready for a fun day with @NFLonFOX! + +Follow behind-the-scenes on Snapchat 👻 » SnapTheRams https://t.co/KFC7WYtyoi" +10/24/2017,Sports_celeb,@JimmyJohnson,RT @finatic1972: @JimmyJohnson throwing up the 🙌🏾 during #NFL halftime show on Fox #awesomeness #ItsAllAboutTheU https://t.co/3RusAVDBHF +10/21/2017,Sports_celeb,@JimmyJohnson,RT @UMSHoF: The @UMSHoF was honored to present @JimmyJohnson a new UMSHoF induction plaque after original destroyed in Hurricane Irma ! @Ca… +10/21/2017,Sports_celeb,@JimmyJohnson,RT @leonsearcy72: So I'm at the 30th anniversary of the 1987 National Championship team meeting when @JimmyJohnson talks and he made me wan… +10/21/2017,Sports_celeb,@JimmyJohnson,"RT @hXcFuller: @JimmyJohnson on #TheShield. I thought for sure it was him and sure enough. +#TerrysTheOne https://t.co/LSLLlLpjsd" +10/21/2017,Sports_celeb,@JimmyJohnson,RT @canesvoice: Enjoying the the 30 year reunion of the 1987 National Champs with the @JimmyJohnson https://t.co/1EEMG2Q6yQ +10/15/2017,Sports_celeb,@JimmyJohnson,RT @Chris_In_TX: Learning from the best @terrybradshaw @michaelstrahan @curtmenefee @JimmyJohnson @NFLonFOX https://t.co/Stp2MNKHGD +10/10/2017,Sports_celeb,@JimmyJohnson,RT @DDdebrule: https://t.co/cSFV5IvyZx. @JimmyJohnson @terrybradshaw +10/10/2017,Sports_celeb,@JimmyJohnson,Putting up the U! https://t.co/Y0EwdluI8D +10/09/2017,Sports_celeb,@JimmyJohnson,RT @Hurricane_Paul: Coach knows whats up. #TheU #Canes #UFam https://t.co/OnCv1qbuus +10/09/2017,Sports_celeb,@JimmyJohnson,Larry David on set today..funny guy! https://t.co/E0FYmiaSJX +10/06/2017,Sports_celeb,@JimmyJohnson,RT @IGexperiences: Great start to Nerve with keynote speaker @JimmyJohnson ! https://t.co/BIGEuICQyD +10/06/2017,Sports_celeb,@JimmyJohnson,Great time! https://t.co/Cc8kObDZIX +10/06/2017,Sports_celeb,@JimmyJohnson,Thx! https://t.co/BkjBcQRfbE +10/06/2017,Sports_celeb,@JimmyJohnson,"RT @AccountingDept: CEOs: +Get rid of the wrong people +Hire the right people at all cost and retain. +Create an atmosphere so they are their…" +10/06/2017,Sports_celeb,@JimmyJohnson,RT @AccountingDept: Ladies and gentlemen -- it's the legendary @JimmyJohnson !! #EO30 #EONerve2017 https://t.co/UgnD4w5Smt +10/01/2017,Sports_celeb,@JimmyJohnson,RT @LKBlandford: Loved that @JimmyJohnson just picks the @MiamiDolphins to upset the @Saints. Especially after last week's disgusting loss.… +10/01/2017,Sports_celeb,@JimmyJohnson,"RT @jacobu: It's a special FOX NFL Sunday as @criscarter80 joins Curt, Terry and Jimmy leading into the Saints vs Dolphins from London - no…" +09/28/2017,Sports_celeb,@JimmyJohnson,"RT @EnriqueSiu: @Gil_Brandt Any chance you can spot yourself in the pic, Mr. Brandt? Maybe by @JimmyJohnson's side...? https://t.co/sjlhJad…" +09/23/2017,Sports_celeb,@JimmyJohnson,RT @JimmyJohnson: Snack on game day the Razorbacks way with @CheezIt & @Pringles. Tweet #BestSeatsEntry for your chance to WIN cash for the… +09/23/2017,Sports_celeb,@JimmyJohnson,Snack on game day the Razorbacks way with @CheezIt & @Pringles. Tweet #BestSeatsEntry for your chance to WIN cash f… https://t.co/SJqWChBtvP +09/23/2017,Sports_celeb,@JimmyJohnson,RT @dbalerio: Great job @JimmyJohnson very inspiring talk. My 3 teenage boys took a lot away tonight. #howboutdemcowboys https://t.co/R1EkT… +09/22/2017,Sports_celeb,@JimmyJohnson,RT @GinoTorretta: On the wall of my bedroom in Cali. Oh how right @JimmyJohnson was. https://t.co/t05jCa1ByI +09/21/2017,Sports_celeb,@JimmyJohnson,"RT @DiBarcenaMete: @JimmyJohnson Address 58901 Overseas Hwy., Grassy Key, FL 33050. We have a truck full of water,BBQ food,clothing,diapers…" +09/21/2017,Sports_celeb,@JimmyJohnson,RT @DiBarcenaMete: @JimmyJohnson We're hosting relief effort tomorrow 9/22 at 11AM at Dolphin Rescue Center (parking lot). Help get the wor… +09/21/2017,Sports_celeb,@JimmyJohnson,@DDdebrule enjoy your 1935 Ford! https://t.co/jdVI1gasEZ +09/21/2017,Sports_celeb,@JimmyJohnson,@DDdebrule you and Upper Keys marine have been great for my boats and dock..nice to have good friends! +09/18/2017,Sports_celeb,@JimmyJohnson,Power is on!!!Air Conditioning!! Thank you 1st responders and Florida Power & Light!! https://t.co/AebArpF75W +09/17/2017,Sports_celeb,@JimmyJohnson,RT @HunterMRobbins: Watch the fox pregame. It's waaaayyy better. @terrybradshaw @JimmyJohnson @michaelstrahan Howie and Curt kill it every… +09/17/2017,Sports_celeb,@JimmyJohnson,RT @bhorn55: Thinking of @JimmyJohnson today as he is skipping work to take care of his life. #HurricaneIrma +09/17/2017,Sports_celeb,@JimmyJohnson,RT @NFLonFOX: It's the best way to start your Sunday. FOX NFL Kickoff is on your TV. https://t.co/oR2LwIPna3 +09/16/2017,Sports_celeb,@JimmyJohnson,Thx..we'll be fine! https://t.co/K6em1y9tcu +09/16/2017,Sports_celeb,@JimmyJohnson,RT @bergerhere: we're all thinking of you JJ. You and Rhonda stay safe. https://t.co/AeWLHLHEjk +09/16/2017,Sports_celeb,@JimmyJohnson,Neighbors boat...going to miss my guys Fox NFL Sunday..got electrician and air conditioning hopefully get it going https://t.co/KCzl40BYq0 +09/15/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: A Key Largo update from @JimmyJohnson : Our Host venue @JimmyJsBigChill at MM104 is up and running. 1st responders: take no… +09/15/2017,Sports_celeb,@JimmyJohnson,"RT @KEYSCANE: @JimmyJohnson Since I can't send you a message coach, I took a picture. Good luck down there and we are here to help once ou…" +09/15/2017,Sports_celeb,@JimmyJohnson,RT @coachdelrio: 👍👍 https://t.co/lt7Y08gOVQ +09/15/2017,Sports_celeb,@JimmyJohnson,Free pizza and I'll buy the beer for whoever can give me power and air conditioning!! https://t.co/FgOU8AXaJR +09/15/2017,Sports_celeb,@JimmyJohnson,Rhonda's making pizza for 1st responders! https://t.co/KZrDUupQVk +09/15/2017,Sports_celeb,@JimmyJohnson,Big Chill opening tonight 5:00...FREE PIZZA for all 1st responders who are doing such a GREAT Job! https://t.co/38ptRih5oj +09/15/2017,Sports_celeb,@JimmyJohnson,RT @DanMarino: Join my friends @soflaford and help get our Floridians back on the road to recovery! #IrmaRelief https://t.co/WEXIiiQ30e +09/14/2017,Sports_celeb,@JimmyJohnson,"RT @McBlondeLand: My favorite NFL football coach, @JimmyJohnson, on his home in the Keys: https://t.co/TATew2Su0w" +09/13/2017,Sports_celeb,@JimmyJohnson,RT @jjfishweek: #JJFishweek and @JimmyJohnson are working with Hurricane Irma Relief for the FL Keys. Contact us at info@jjfishweek.com for… +09/11/2017,Sports_celeb,@JimmyJohnson,RT @maddieboz: Loved hanging with @PositiveCoachUS & the @FOXSportsU team creating a very special PSA w @terrybradshaw & @JimmyJohnson #fox… +09/11/2017,Sports_celeb,@JimmyJohnson,RT @PositiveCoachUS: Spoiler 🚨! A new PCA PSA donated by @FOXSports will soon be coming to a TV near you! 📺 #FOXSportsSupports https://t.co… +09/11/2017,Sports_celeb,@JimmyJohnson,Docks are damaged..flooding lower level https://t.co/1bIOIUWdZT +09/10/2017,Sports_celeb,@JimmyJohnson,RT @michaelstrahan: So happy to have the gang back together! Good luck to all the teams this season and a big wish of health to all the pla… +09/10/2017,Sports_celeb,@JimmyJohnson,RT @robfletcherANGT: You can see and feel the emotion behind their words.Powerful stuff @JimmyJohnson @michaelstrahan @jjwat @FOXSports #Ha… +09/10/2017,Sports_celeb,@JimmyJohnson,RT @katb1107: @Wxpadawan71 @JayGlazer @NFLonFOX @FOXSports @curtmenefee @terrybradshaw @michaelstrahan @JimmyJohnson https://t.co/UO1fCVOj… +09/06/2017,Sports_celeb,@JimmyJohnson,"RT @PatrickOchs: Thx to some help, we found photos & stories from @JimmyJohnson's time at Picayune (and in Biloxi). Check 'em out! https://…" +09/06/2017,Sports_celeb,@JimmyJohnson,"Armed with Charissa Thompson, Fox takes aim at ESPN's revamped 'Sunday NFL Countdown' - Sporting News https://t.co/Oci2kMCcvE" +09/06/2017,Sports_celeb,@JimmyJohnson,RT @dusclinton: @JimmyJohnson I found this and thought you & Coach Switzer would like to see this. https://t.co/AtFnhMdrz7 +09/05/2017,Sports_celeb,@JimmyJohnson,RT @collin_walker: @EdwerderRFA remember how I told you about @JimmyJohnson 's hometown? This is a great way ppl can help. @jcharles25 is a… +09/04/2017,Sports_celeb,@JimmyJohnson,Harvey devastation... https://t.co/snQftY9pq0 +09/04/2017,Sports_celeb,@JimmyJohnson,Give away 75% https://t.co/5rFe2mEi0O +09/04/2017,Sports_celeb,@JimmyJohnson,Thoughts and prayers going to all suffering from Harvey and hoping Irma misses us in The Keys +09/03/2017,Sports_celeb,@JimmyJohnson,Best fishing in last 10 years https://t.co/wLxBinkm7K +09/03/2017,Sports_celeb,@JimmyJohnson,Give to friends and people that work on the property.. https://t.co/8ymPq4CMjA +09/03/2017,Sports_celeb,@JimmyJohnson,Mahi and wahoo https://t.co/1MCpTbnxjO +09/03/2017,Sports_celeb,@JimmyJohnson,Went out for couple hours today by myself to relax and look what I ran into! https://t.co/BNOwbv7oVu +09/03/2017,Sports_celeb,@JimmyJohnson,Lovely!! https://t.co/PHMvBmdOFn +09/02/2017,Sports_celeb,@JimmyJohnson,2nd coaching job..Picayune Mississippi 1966...few years ago https://t.co/3MA7tayLOE +09/02/2017,Sports_celeb,@JimmyJohnson,"RT @AQHAJournal: In weanling fillies, @terrybradshaw gets reserve world champion with FG A Pretty Heiress @ #AdequanSelectWorld. @aqha #Get…" +09/02/2017,Sports_celeb,@JimmyJohnson,RT @PGH_Sports_Date: 40 years ago (9/2/77): @JimmyJohnson prepares revamped @Pitt_FB defense for Notre Dame opener. #H2P https://t.co/VDXih… +09/01/2017,Sports_celeb,@JimmyJohnson,RT @TheDriveOnKNEA: ICYMI: @JimmyJohnson will join The Drive next week as we get set for A-State/Miami. Stay tuned for day/time details. +08/31/2017,Sports_celeb,@JimmyJohnson,"RT @michaelstrahan: Hey @larsapippen & @ScottiePippen, good genes LOL! Check out my boy Justin killing it in MSX boys. Definitely school re…" +08/31/2017,Sports_celeb,@JimmyJohnson,RT @TSFdtn: Dining to Donate Campaign to be held at Burger-Fi in Seminole on 9/14/17 and California Pizza Kitchen in Tampa on 9/12/2017. @J… +08/31/2017,Sports_celeb,@JimmyJohnson,"RT @jjfishweek: 2nd place & $265k is great, but #Hellreyzer wants 1st place & @JimmyJohnson's Ring of Honor in '18! Do you? Join us: https:…" +07/01/2018,Sports_celeb,@JohnCena,"Blame, to assign responsibility for a wrong. This can be a very dangerous word. We want so badly, many times, to sh… https://t.co/750SbAggIK" +06/30/2018,Sports_celeb,@JohnCena,"The next time you want to say “I can’t”, change it and say “I can’t just yet” instead #NeverGiveUp" +06/29/2018,Sports_celeb,@JohnCena,"Very tough day today. Physically, mentally, emotionally. We all have them and should face them. Ignoring these days… https://t.co/gGLzLykFqP" +06/29/2018,Sports_celeb,@JohnCena,"Training everyday, twice a day at @EyeOfJackieChan center. Excited for #ProjectX but greatly miss @WWE Thinking of… https://t.co/D3OGlkAQH6" +06/28/2018,Sports_celeb,@JohnCena,"“Life is a gift. You enrich it the best you can, then give it back” Emily Levine" +06/28/2018,Sports_celeb,@JohnCena,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/27/2018,Sports_celeb,@JohnCena,Quick lunch break at @EyeOfJackieChan #JCStuntTeam center! #HardNocksZhongGuo 260kg https://t.co/2LU6EDnkIf +06/26/2018,Sports_celeb,@JohnCena,Character is who you are when the lights are off. +06/24/2018,Sports_celeb,@JohnCena,“You must trust and believe in people or life becomes impossible.” Anton Chekhov +06/22/2018,Sports_celeb,@JohnCena,"In the first 1-10 hours of learning something new, you will want to give up more than once a minute. Hang in there!… https://t.co/3lLRCD1skz" +06/21/2018,Sports_celeb,@JohnCena,"Embrace the uncomfortable. This is where knowledge and wisdom hibernate, waiting for you to courageously discover them." +06/19/2018,Sports_celeb,@JohnCena,Always an honor to be included in such a fine group of athletes who use their station in life to help others. https://t.co/NlWPp3NN8B +06/19/2018,Sports_celeb,@JohnCena,"Practice makes perfect, Dads. Work those humor muscles. #BlockersMovie is now available on Digital with Outrageous… https://t.co/BOA2Th5pJA" +06/18/2018,Sports_celeb,@JohnCena,"To the masses of people for over 16 years now, shouting at the top of your lungs “John Cena Socks” .. you have been… https://t.co/Yl6zzpGihg" +06/17/2018,Sports_celeb,@JohnCena,A massive event on a global scale. @WWE continues to raise the bar ... everywhere. Excited to return “home” to be a… https://t.co/RQD1ovkUNJ +06/17/2018,Sports_celeb,@JohnCena,"To all the father's out there, when approaching a dresser drawer, please proceed with caution. #HappyFathersDay!… https://t.co/DRlZ37vGG1" +06/16/2018,Sports_celeb,@JohnCena,"Waking up on the other side of the world can help with perspective. Be grateful for life, rise, and #EarnTheDay… https://t.co/5qUPHsu940" +06/16/2018,Sports_celeb,@JohnCena,"RT @theheraldsun: EXCLUSIVE | @WWE IS COMING TO THE @MCG + +@JohnCena, @RondaRousey, @WWETheBigShow & @ShawnMichaels will be there, and @Trip…" +06/15/2018,Sports_celeb,@JohnCena,Thought this was very interesting. How do you feel about the word “deserve”? Are we owed anything? @RealJohnCMartin… https://t.co/g6gp7tdBou +06/14/2018,Sports_celeb,@JohnCena,"You get out of it, what you put into it." +06/12/2018,Sports_celeb,@JohnCena,"If you love someone, tell them. Say the words. Doesn’t make you ‘weak’ ‘soft’ or ‘inferior’. It makes you stronger… https://t.co/ZtIooESeWb" +06/11/2018,Sports_celeb,@JohnCena,"625lbs a little more left, but don’t know how much. Thanks @BRCF840 and @MogyApp and... @WWERollins for the soundtr… https://t.co/VjiZlV39XV" +06/11/2018,Sports_celeb,@JohnCena,“Love is a collaborative work of art” George Lakoff + Mark Johnson. Really like the sound of that 😊 +06/09/2018,Sports_celeb,@JohnCena,One of the toughest yet most helpful things about life can be asking ourselves the question ‘why?’ This one word op… https://t.co/60AufwUyoF +06/08/2018,Sports_celeb,@JohnCena,“A man will become better when you show him what he is like” Anton Chekhov #NeverGiveUp #EarnTheDay +06/07/2018,Sports_celeb,@JohnCena,"Congratulations to a very inspiring woman @pam_kaufman12 I’m honored to be able to present, create, and learn from… https://t.co/UoYoVN2yTX" +06/06/2018,Sports_celeb,@JohnCena,"The chilling, daring, and honest photography of Robert Capa. Forever grateful to all those who made tremendous sacr… https://t.co/QuLTjWk7SX" +06/05/2018,Sports_celeb,@JohnCena,"There is so much excitement around the set of @bumblebeemovie, it’s even better when I get to spend a few moments w… https://t.co/5gF2NqZbOj" +06/05/2018,Sports_celeb,@JohnCena,Being able to play a part in the overall history & legend of #Transformers has been an amazing experience. I hope y… https://t.co/QidpFBGHyv +06/04/2018,Sports_celeb,@JohnCena,"RT @bumblebeemovie: The adventure is about to begin. Don’t miss @JohnCena in the new trailer for Bumblebee, debuting TOMORROW! #BumblebeeMo…" +06/03/2018,Sports_celeb,@JohnCena,The @FloElite squad and @MogyApp got me working on being a #Deadhead 555x5 thank you @BRCF840 for an AWESOME gym! F… https://t.co/WHaFXuqrkD +06/02/2018,Sports_celeb,@JohnCena,#Respect 👌 https://t.co/8kFhXKufSy +06/01/2018,Sports_celeb,@JohnCena,Being accountable is a great way to face who you are. We often speak of aspiration and quickly point out the faults… https://t.co/a1OgOUdavF +06/01/2018,Sports_celeb,@JohnCena,Well done young man. Well done indeed. 💵 #OneDollarBet #EarnTheDay #NeverGiveUp https://t.co/gWUrraXyYa +05/31/2018,Sports_celeb,@JohnCena,"10,000 excuses will keep you right where you are. 10,000 reps, puts you where you want to be. BOTH happen 1 at a ti… https://t.co/oC7tswZPsT" +05/30/2018,Sports_celeb,@JohnCena,Dallas and Robo in the house! So excited for you all to be able to watch my new @YouTube series #DallasandRobo with… https://t.co/9TCsB83Zz5 +05/29/2018,Sports_celeb,@JohnCena,"What do you do when your best friend drinks you under table? You ask to study their liver, duh. Only one more day u… https://t.co/9sTFIDP6VL" +05/29/2018,Sports_celeb,@JohnCena,A fitting tribute to the men and women of our armed forces. Today and every day it is these mostly unknown sacrific… https://t.co/enMAQ9m3dm +05/28/2018,Sports_celeb,@JohnCena,"Let’s stop messing around, and start messing around." +05/27/2018,Sports_celeb,@JohnCena,"The good ol’ USA has definitely had its growing pains, but above all let’s remember the heroes who’ve made the ulti… https://t.co/5beyefdrDy" +05/25/2018,Sports_celeb,@JohnCena,"Adventure. Fun. Robots. Space Travel. +#DallasandRobo premieres on @YouTube on May 30th! https://t.co/HhXiZE09mb" +05/24/2018,Sports_celeb,@JohnCena,"I'm charged up for the premiere of #DallasandRobo on @YouTube May 30th. Literally. +Excited for everyone to come on… https://t.co/aLQH0Kcw61" +05/23/2018,Sports_celeb,@JohnCena,"Never try to change someone. They have every right to live their lives how they want. Instead, look inward and work… https://t.co/rqDgzWVlbA" +05/21/2018,Sports_celeb,@JohnCena,Congrats to the global phenomenon that is @BTS_twt your journey and success are inspiring and impressive! #BBAMs… https://t.co/mRyRnv3iLF +05/20/2018,Sports_celeb,@JohnCena,"We tend to have long lists of why we “shouldn’t” do something. I am a fan of logic, but fortune favors the bold😊 It… https://t.co/o7HmyoMgsF" +05/20/2018,Sports_celeb,@JohnCena,Robo kicks @$$! Want to see what we have in common? Check out the brand new @YouTube Red series #DallasAndRobo! Pre… https://t.co/GChf6L1juw +05/18/2018,Sports_celeb,@JohnCena,"Please @BTS_twt forgive my inexperience with the language, but here is my answer https://t.co/YFeO6TqyLG https://t.co/07IztsuBvc" +05/18/2018,Sports_celeb,@JohnCena,We all have an internal voice. Listening to IT instead of the many voices around us can be a path to happiness. Lis… https://t.co/AE6moH6cwW +05/17/2018,Sports_celeb,@JohnCena,"Lack of communication is many times what causes people to drift apart, lack of forgiveness is many times what causes people to stay apart." +05/16/2018,Sports_celeb,@JohnCena,"If at first you don’t succeed, try try again #IVoteBTSBBMAs #NeverGiveUp" +05/16/2018,Sports_celeb,@JohnCena,Better late than never!!#iVoteBTSBBMAs️ https://t.co/091lZ3AjlD +05/15/2018,Sports_celeb,@JohnCena,So.. my #TuesdayThoughts .. to 🍷 or not to 🍷? Boozeday Tuesday on @klgandhoda @TODAYshow ! +05/14/2018,Sports_celeb,@JohnCena,Very happy to join @klgandhoda on @TODAYshow this morn! Could use a bit of 🍷 to take the edge off 🤫😉 +05/13/2018,Sports_celeb,@JohnCena,"Thank you Mom, for always caring, worrying, protecting, teaching, and loving me. I love you #HappyMothersDay" +05/12/2018,Sports_celeb,@JohnCena,"Try never to make a decision when you are tired, hungry, or angry." +05/11/2018,Sports_celeb,@JohnCena,"We all have a story and we all want to be heard, but it’s amazing what can be learned if you take a moment and listen to those around you." +05/09/2018,Sports_celeb,@JohnCena,"Some of us long for things until we get them, then feel still unsatisfied. Being driven is great. Not knowing thyself, not so great." +05/07/2018,Sports_celeb,@JohnCena,"Action has consequence. An extra second of thought can help you see the action, and consequence. “A game of chess i… https://t.co/JXFjy2Ghkb" +05/06/2018,Sports_celeb,@JohnCena,Learn from your mistakes. A life of regret is a life unfulfilled. +05/05/2018,Sports_celeb,@JohnCena,What is that you say? Yearning for an animated buddy-comedy with cowboy hats in OUTER SPACE? Very excited to bring… https://t.co/JoePHfmRU5 +05/05/2018,Sports_celeb,@JohnCena,"If you choose to keep moving, no matter how low the road takes you, it will eventually begin to climb back up. #NeverGiveUp" +05/04/2018,Sports_celeb,@JohnCena,240kg pause. #MayThe4th #MayThe4thBeWithYou @starwars https://t.co/qOjjED8KUc +05/03/2018,Sports_celeb,@JohnCena,"The @FloElite guys fired me up, so here’s a 600lb “clean grip” deadlift. Wanna hear more about my training w… https://t.co/CPYNudjxQu" +05/02/2018,Sports_celeb,@JohnCena,"Happy birthday to the standard bearer, the hardest working person in the room, an inspiration to myself and many ar… https://t.co/Vp29sMQpaC" +05/01/2018,Sports_celeb,@JohnCena,"RT @TheRock: Found my star! Been a long time coming and congrats to my good bud @JohnCena on landing the lead role for our film, THE JANSON…" +05/01/2018,Sports_celeb,@JohnCena,"RT @TheRock: Thanks for the exclusive story @krolljvar. The Robert Ludlum Universe is a cool, bad ass and fun one to dive into. Excited for…" +04/30/2018,Sports_celeb,@JohnCena,"Humbled and HONORED for this incredible opportunity! The hard work starts..NOW! Thank you @TheRock, @SevenBucksProd… https://t.co/SyUFifXuK0" +04/29/2018,Sports_celeb,@JohnCena,Never be afraid to give your all to something with worries it will fail. The fear should be that you never give your all to something. +04/27/2018,Sports_celeb,@JohnCena,"No matter how far the destination, how long and hard the journey, it’s passion that will always drive you forward.… https://t.co/ocIabqOtGS" +04/26/2018,Sports_celeb,@JohnCena,Thank you Las Vegas and #CinemaCon hope you liked @Transformers #Bumblebee got 60 minutes in London before heading… https://t.co/3XKQZuoXrp +04/26/2018,Sports_celeb,@JohnCena,"RT @Turki_alalshikh: أعظم حدث في تاريخ WWE 💪🏼 + +هنا في السعودية 🇸🇦 + + #أعظم_رويال_رامبل https://t.co/mQ7Zg0H5De" +04/24/2018,Sports_celeb,@JohnCena,41 years old. 500lbs x3 “clean grip” deadlift. #EarnTheDay #NeverGiveUp #RAW https://t.co/U9b4q1KioI +04/23/2018,Sports_celeb,@JohnCena,41 years old. 160kg. NEVER let age define effort. #EarnTheDay #NeverGiveUp #RAW https://t.co/jhXOQTnxxk +04/17/2018,Sports_celeb,@JohnCena,Sometimes we must bare the burden of shame and judgement to protect and give to the ones we love. #RiseAboveHate +04/16/2018,Sports_celeb,@JohnCena,"Hardship, loss, and humility are extremely difficult waters to navigate, but perseverance thru them builds a streng… https://t.co/uShhq2wHqp" +04/15/2018,Sports_celeb,@JohnCena,RT @BlockersMovie: Watching @JohnCena read thirsty tweets is 😂💪💦 Don’t miss #BlockersMovie NOW PLAYING in theaters. https://t.co/tqlEsMFYHx… +04/15/2018,Sports_celeb,@JohnCena,"Anybody feeling down, check out #WaltWhitman has always been a helpful voice in times of crisis. Beautifully wild t… https://t.co/PFDcGHCWV1" +04/14/2018,Sports_celeb,@JohnCena,"The response to @BlockersMovie has been incredible. So happy to hear you've all enjoyed. You laughed, you cried, yo… https://t.co/4ODAyjER1F" +04/14/2018,Sports_celeb,@JohnCena,"We all have good and bad days. No one is perfect, but if you happen to do something to make someone feel bad, TAKE… https://t.co/ljD7WD64RQ" +04/13/2018,Sports_celeb,@JohnCena,"Spring is upon us, love is in the air. Nothing is more romantic than prom night...right? @BlockersMovie… https://t.co/e3PrOe83NS" +04/12/2018,Sports_celeb,@JohnCena,"Life is funny sometimes. One minute it’s kissing and hugging on you, the next it’s kicking ya square in the nugget… https://t.co/KOtw57Kupz" +04/12/2018,Sports_celeb,@JohnCena,"👨‍👩‍👧‍👦🚫C🤦🏼‍♂️🤼‍♂️🧟‍♂️ +🍑 +👫👭👬C🤦🏼‍♂️👉🐔🚫📽 + +⬇️ +https://t.co/0IKPu5maJV https://t.co/tgv0ESVJSl" +04/11/2018,Sports_celeb,@JohnCena,"This past weekend was FULL of really exciting moments. Everything happens so fast, but I wanted to say THANK YOU to… https://t.co/RpsQVghRcu" +04/09/2018,Sports_celeb,@JohnCena,https://t.co/cJocoqPhtQ +04/08/2018,Sports_celeb,@JohnCena,"On #WrestleMania day, I'm throwing down a challenge. The @MakeAWish #ArmWrestleChallenge. Wishes make muscle. You'r… https://t.co/Uof3VuY9NU" +04/07/2018,Sports_celeb,@JohnCena,"Sporting many looks this weekend, but one thing remains the same: I get to be a fan. +Yesterday, I watched… https://t.co/TiSabfPCT8" +04/07/2018,Sports_celeb,@JohnCena,Any woman who can say that after seeing what my body goes thru in #BlockersMovie is definitely a keeper! I love you… https://t.co/71kfFlmw1j +04/06/2018,Sports_celeb,@JohnCena,"The day is here. @BlockersMovie is in theaters TODAY! This was a project I loved being a part of, proud to share it… https://t.co/O1cTaIWSlo" +04/05/2018,Sports_celeb,@JohnCena,"So much to say about @BlockersMovie, glad I could make an appearance on @JimmyKimmelLive...can you see my excitemen… https://t.co/VKlPTmjll7" +04/04/2018,Sports_celeb,@JohnCena,Entertainment in its most purest form is the same...everywhere. Thanks to @Hardwick for letting me talk the magic o… https://t.co/NzYl2Ec25D +04/03/2018,Sports_celeb,@JohnCena,"The Spyker C8 Laviolette, this car is fly. Literally, figuratively, physically, and emotionally. You don't drive a… https://t.co/OiWHnlEbo8" +04/03/2018,Sports_celeb,@JohnCena,"A lot of people have questions...and I’m ready to answer them! Get a chance to see @BlockersMovie in New Orleans, L… https://t.co/Oi5Iw8kP0l" +04/03/2018,Sports_celeb,@JohnCena,"RT @WWE: This #WorldWishDay, join @JohnCena and @MakeAWish to help make every life-changing wish come true! To get involved visit https://t…" +04/02/2018,Sports_celeb,@JohnCena,"Paint + Teamwork + Cash = #KeepItSpotless! Catch the very fun, VERY messy show on @Nickelodeon all this week at 7:3… https://t.co/7GAM7zPjYB" +04/02/2018,Sports_celeb,@JohnCena,"Can I say “I do” now? @BellaTwins thank you. For being understanding, caring, and lifting me up when I needed it. B… https://t.co/M5p58g0Nfl" +04/02/2018,Sports_celeb,@JohnCena,There are many who ask “how can I?” instead of “how will I?” Make time for the people and the things you care about… https://t.co/qWdDU95QuO +04/02/2018,Sports_celeb,@JohnCena,"Big night 2nite! @WWE #RAW and I’m MORE than ready if Phenom decides to #DoSomething .. if not, also PUMPED 2 B… https://t.co/DpH3rGy333" +04/01/2018,Sports_celeb,@JohnCena,Woke up and phone alerted that I had a #WrestleMania answer from The Phenom! My phone’s been doing this for 3 hour… https://t.co/vJhTrweENF +03/31/2018,Sports_celeb,@JohnCena,"Still silence from the Phenom, so I continue MY quest to #DoSomething and be @WWE #WrestleMania strongest fan! 220k… https://t.co/kaUNJQVq8u" +03/30/2018,Sports_celeb,@JohnCena,"RT @Fandango: Even when it's father-daughter, game recognizes game in this #BlockersMovie clip. @JohnCena gives his daughter a @WWE intro f…" +03/30/2018,Sports_celeb,@JohnCena,This is what I do. 1) be invisible (for the convenience of humor+ @WWE victory) and 2) 🚫🐔s ! See more #2 (get it?)… https://t.co/2aamE7TFDT +03/29/2018,Sports_celeb,@JohnCena,"RT @TheDailyShow: What is butt chugging? @ronnychieng investigates the latest drinking craze with the help of the star of @BlockersMovie, @…" +03/29/2018,Sports_celeb,@JohnCena,"RT @WWE: Join @JohnCena in flexing some muscle for our friends at @MakeAWish, and help them be recognized as the world’s largest wish-grant…" +03/29/2018,Sports_celeb,@JohnCena,Don’t think Undertaker will #DoSomething so making sure I’m one of the strongest fans at #WrestleMania 145kg… https://t.co/htDjEiVsVZ +03/29/2018,Sports_celeb,@JohnCena,RT @Metro_Ents: We've got a nice little exclusive from @JohnCena's new movie Blockers - have a look https://t.co/95CqXvhBOD +03/29/2018,Sports_celeb,@JohnCena,See #BlockersMovie before everyone else at #BlockersSpringFling FREE screenings next Wednesday 4/4. Find a screenin… https://t.co/e70xbUnVXV +03/29/2018,Sports_celeb,@JohnCena,Watch the @TODAYshow tomorrow to learn how @MakeAWish gives kids more muscle to fight their illnesses. https://t.co/DUYeDZjbPB +03/27/2018,Sports_celeb,@JohnCena,"Dear Doctor Dolittle: + +Because I’m a polar bear, does that mean I’m finally cool? Doubt it! +I can BEARly wait to… https://t.co/QBhWaS8nzx" +03/27/2018,Sports_celeb,@JohnCena,The newest edition of #AutoGeek delves deep into one of the most prolific automobile explorations: The Reggie Jacks… https://t.co/iyaVJnosPa +03/27/2018,Sports_celeb,@JohnCena,#DoSomething +03/27/2018,Sports_celeb,@JohnCena,"Thank you for the gift @TheEllenShow and thank you for always promoting the message. +This towel is ready for the m… https://t.co/nnbYvRDhOl" +03/26/2018,Sports_celeb,@JohnCena,".@CollegeHumor and @BlockersMovie create an app that helps block terrible, terrible situations. It also features a… https://t.co/J2b22tx357" +03/25/2018,Sports_celeb,@JohnCena,"1 final thanks @Nickelodeon AND @BTS_twt @bts_bighit gotta rep my boy JHope!Namjoon, all in good fun, all ❤️ for RM… https://t.co/QQ9T5OKPrd" +03/25/2018,Sports_celeb,@JohnCena,The @Nickelodeon #KCA was a blast. Thank you so much to everyone for letting me have fun. Now it’s time to change o… https://t.co/iIC54xxbGX +03/24/2018,Sports_celeb,@JohnCena,RT @Nickelodeon: COWABUNGA! 🐢 Our turtle-y awesome host @johncena made his grand appearance on the #KCA #OrangeCarpet! 🧡 https://t.co/2DU2U… +03/24/2018,Sports_celeb,@JohnCena,Making final preparations before #KCA. Tonight is going to be AWESOME! @Nickelodeon https://t.co/kBAVpbECsD +03/24/2018,Sports_celeb,@JohnCena,"Today is about celebrating young men and women around the world, their ability to use the voice and affect change f… https://t.co/3Di8AzT972" +03/24/2018,Sports_celeb,@JohnCena,"Rehearsals before #KCA2018 have been super fun, but meeting these young folks is always the best part of my day. Th… https://t.co/pX7FNfRj2H" +03/23/2018,Sports_celeb,@JohnCena,Have you ever seen so many blimps?! See these AND MORE tomorrow on @Nickelodeon Kids Choice Awards! #KCA2018 https://t.co/X3DPdgk5Gx +03/23/2018,Sports_celeb,@JohnCena,"RT @TheEllenShow: .@JohnCena didn’t get to go to prom... that is, until today. https://t.co/ge1wwG8ceA" +03/23/2018,Sports_celeb,@JohnCena,A HUGE thank you to @TheEllenShow for always being so generous. Aside from a time-machine to prom with the perfect… https://t.co/T3PXSzQVBW +03/23/2018,Sports_celeb,@JohnCena,We enjoy the concept of “Friday” because we know it’s only a little bit longer until we can relax. It’s the reward… https://t.co/676XQSC3uB +03/23/2018,Sports_celeb,@JohnCena,It’s good to support those who do good things. Even better when it makes you laugh. @Sethrogen’s… https://t.co/4nCdmutZKx +03/22/2018,Sports_celeb,@JohnCena,"Sometimes the hardest thing to do is look within yourself. @RealJohnCMartin helps myself and 1,000s of others do ju… https://t.co/WSV4fNpffG" +03/21/2018,Sports_celeb,@JohnCena,"Amazing story from Australia. In the fight to save someone's life, they created a hero. Here's to you, Alex and fam… https://t.co/SfC5amKtzb" +03/21/2018,Sports_celeb,@JohnCena,"#BlockersMovie: A Film. 🐔🚫 + +👱🏼‍♀️👩🏽👩🏻 🤳🏽 +👨🏽‍💼🚗🍾 +🙋🏼‍♂️🙋🏼‍♀️ 👸🏼🤵🏽 🤔🤔 🤦🏼‍♂️🤦🏼‍♀️ + +And then somehow... + +🍑🍻🍻 + +See… https://t.co/HqlMv06OAj" +03/20/2018,Sports_celeb,@JohnCena,The Corvette ZR-1. The American Supercar famous on race tracks and envied on street corners. See it now on… https://t.co/rvDe2SdUP0 +03/20/2018,Sports_celeb,@JohnCena,You can tell the entire family is getting ready for the #KCA and I think Nana Cena is a little more excited than th… https://t.co/NUqRSpXd8W +03/20/2018,Sports_celeb,@JohnCena,"Very close friend is going thru a bit of a health battle right now, needs all the help he can get. Just hope you ca… https://t.co/8Vpu25tOYU" +03/18/2018,Sports_celeb,@JohnCena,.@BlockersMovie is at it's core a story of three young women discovering who they are. It is also INCREDIBLY funny.… https://t.co/IGZc5aGCel +03/17/2018,Sports_celeb,@JohnCena,Get the first look a new show I’m very proud to say I helped create. #KeepItSpotless will be good “clean” fun!… https://t.co/Pnh3rpp7SK +03/17/2018,Sports_celeb,@JohnCena,"We all get overwhelmed with ‘to do’ lists. Take one thing at a time, try your best to be present in what you are do… https://t.co/Qj8LzxZfac" +03/16/2018,Sports_celeb,@JohnCena,"Throughout my entire career and for so many reasons, @WrestleMania has meant...everything. Can't wait to help @WWE… https://t.co/rWd6SZJtx9" +03/15/2018,Sports_celeb,@JohnCena,Thank you London! Got to talk #BlockersMovie pledge to the @BTS_twt @bts_bighit @BTS_ARMY and now headed to… https://t.co/NAmbcSzHBg +03/14/2018,Sports_celeb,@JohnCena,Just landed in London to talk #BlockersMovie! Only on the ground long enough for a spot of tea and and a good time… https://t.co/Zma61p2gLv +03/13/2018,Sports_celeb,@JohnCena,The #AutoGeek has returned! It may be chilly outside but the 2016 @McLarenAuto 675 LT makes you feel warm all over.… https://t.co/NQA07NQ1vV +03/13/2018,Sports_celeb,@JohnCena,RT @FerdinandMovie: And. We. Have. Liftoff! 🤣 #Ferdinand is out on DVD & Blu-ray TODAY! https://t.co/dxQp0InNOX https://t.co/qeQLNl4eJB +03/13/2018,Sports_celeb,@JohnCena,#OneMoreMatch +03/11/2018,Sports_celeb,@JohnCena,"Switched the suit in Austin to a ball cap and jean shorts in Columbus, OH. + +A 6-pack challenge for the @WWE Champi… https://t.co/4AtByovZ4V" +03/11/2018,Sports_celeb,@JohnCena,Still 👍 from 😍 date night w/ @BellaTwins. Honored to share #SXSW 🎞 of #BlockersMovie w/ such an amazing group of 💪🏽… https://t.co/AY80qHcn55 +03/11/2018,Sports_celeb,@JohnCena,I'm glad I got to experience the premiere of @BlockersMovie last night with the crowd at #SXSW. It's fun to be a fa… https://t.co/U5DOFbao24 +03/11/2018,Sports_celeb,@JohnCena,At #SXSW for the WORLD PREMIERE of @BlockersMovie. It’s a Saturday night at the movies for Nicole and I... cannot w… https://t.co/GeeXFo58oo +03/09/2018,Sports_celeb,@JohnCena,We all have days where everything just goes wrong. It’s inspiring to see how my bride to be @BellaTwins keeps her c… https://t.co/lAW1G7SgRc +03/07/2018,Sports_celeb,@JohnCena,"We find inspiration everywhere. Everyday is a chance to LEARN and LIVE, don't waste it. My close friend for over 20… https://t.co/WFrNX8kzhG" +03/07/2018,Sports_celeb,@JohnCena,"A new challenge in a historic franchise. Excited to get to work, it's time for the Turtles to Baron Draxum! #TMNT https://t.co/CAgq4do4LG" +03/06/2018,Sports_celeb,@JohnCena,"Had the privilege of enjoying Hannah's company before #Raw in Milwaukee, WI. She IS #NeverGiveUp...vibrant, beautif… https://t.co/MOunQzymyG" +03/05/2018,Sports_celeb,@JohnCena,"Honesty is often met with adversity and criticism, because it is many times saying the things most are afraid to say. #NeverGiveUp" +03/04/2018,Sports_celeb,@JohnCena,"We all enjoy our “routine”, but continuously doing things we know, is a tough way to learn. Don’t be afraid of tryi… https://t.co/BjzErJJubI" +03/03/2018,Sports_celeb,@JohnCena,This guy might have been onto something.... shall we discuss ?? (Roll on snare. Cymbal crash.) https://t.co/nDpbECmnn2 +03/01/2018,Sports_celeb,@JohnCena,"Just finishing up an extraordinary day with an amazing group of people. An astronaut, mermaid, superhero, @WWE supe… https://t.co/IIJv6klivI" +02/28/2018,Sports_celeb,@JohnCena,Adapt. Overcome. #EarnTheDay #NeverGiveUp #SDLive +02/27/2018,Sports_celeb,@JohnCena,"Not every road to #WrestleMania is paved in gold. I'm not wasting any time, because TONIGHT mine goes through… https://t.co/V63Nu8NXm8" +02/27/2018,Sports_celeb,@JohnCena,"Join the herd! @FerdinandMovie is available on Digital TODAY! +https://t.co/ihxvxiE0U4 https://t.co/oLL657NHSk" +02/27/2018,Sports_celeb,@JohnCena,I had the pleasure of presenting @Jarrius with a special award at the #ESPYS but I can't wait to welcome him into t… https://t.co/ma4vOIHlwP +02/26/2018,Sports_celeb,@JohnCena,Adapt. Overcome. #NeverGiveUp +02/24/2018,Sports_celeb,@JohnCena,🥌🥇#usacurling #MiracurlOnIce +02/23/2018,Sports_celeb,@JohnCena,"When u feel u ""deserve"" something is when u become hateful of other's accomplishments. Be thankful for what u have,… https://t.co/7pLwafLpgX" +02/21/2018,Sports_celeb,@JohnCena,"We all build emotional walls in our lives, just remember, if there is no wall, you never have to choose which side to stand on." +02/20/2018,Sports_celeb,@JohnCena,"Side by side? Expensive “toy?” Descendant of a pre-historic animal with short arms and a fast engine? +The Campagna… https://t.co/WTOEsdXNTy" +02/19/2018,Sports_celeb,@JohnCena,"A tough week ahead. Run the gauntlet tonight on #Raw and the #WWEChamber awaits on Sunday. Like anything, take one… https://t.co/qEXKC7fKcL" +02/18/2018,Sports_celeb,@JohnCena,Also happy birthday #JHOPE just 175 more years and you’ll catch #WestNewbury #HappyJHOPEDay @BTS_twt @bts_bighit +02/18/2018,Sports_celeb,@JohnCena,Happy 199th birthday #WestNewbury Massachusetts +02/16/2018,Sports_celeb,@JohnCena,"RT @klgandhoda: .@JohnCena has a message for you... he wants to crash your school dance! + +Details are here: https://t.co/b7SaHTICY4 https:/…" +02/15/2018,Sports_celeb,@JohnCena,Never underestimate the #PowerOfAWish. @MakeAWish https://t.co/k7dQ5eKnOn +02/15/2018,Sports_celeb,@JohnCena,"Dear @Nespresso not only do you have an outstanding product, but your customer service is THE BEST I’ve ever experienced. Thank You ☕️" +02/14/2018,Sports_celeb,@JohnCena,"There have been highs AND lows on our journey, and they will continue. Whether it’s #ValentinesDay or not I’m looki… https://t.co/HXUQsTfKLm" +02/13/2018,Sports_celeb,@JohnCena,"The stats are ridiculous, the curb appeal is unparalleled, but the ride is...one of a kind. My favorite car, the… https://t.co/moUnvOXP1F" +02/12/2018,Sports_celeb,@JohnCena,Today a friend did what friends do. Confronted me about my shortcomings and gave me an opportunity to #EarnTheDay… https://t.co/fN2g3VEPrn +02/12/2018,Sports_celeb,@JohnCena,Fun for the whole Cena family! We’re making our #KCA debut on March 24...and we are ready for slime! https://t.co/XxGKgQPDuA +02/11/2018,Sports_celeb,@JohnCena,I’m bringing the whole fam to #KCA this year! Watch the first official trailer on the @Nickelodeon social accounts… https://t.co/NirxIlOvyY +02/10/2018,Sports_celeb,@JohnCena,"Not the best I’ve ever done, but certainly the best I’ll do today! #NeverGiveUp @HardNocksSouth #SquatSaturday 240kg https://t.co/fBXCAL0pgB" +02/07/2018,Sports_celeb,@JohnCena,RT @klgandhoda: That moment when you hear @JohnCena could stop by your high school's dance 🕺💃! Find out how to enter to win here: https://t… +02/06/2018,Sports_celeb,@JohnCena,"Big dreams can be scary, but that's okay. Never be afraid to put in the work...sometimes all it takes is a little… https://t.co/DJRdpgvQkf" +02/06/2018,Sports_celeb,@JohnCena,"A #LaFerrari engine is not exactly ""easy"" to access. But once you do...you know. #AutoGeek @BellaTwins… https://t.co/HB2NTtWSXI" +02/06/2018,Sports_celeb,@JohnCena,How does a @WWE Superstar pave their road to #WrestleMania? Simple. They need to have a plan. #Raw https://t.co/z8yapXlQFB +02/05/2018,Sports_celeb,@JohnCena,A well deserved congrats to @Eagles @nfl #SuperBowlLll champions! David has slain Goliath indeed. #NeverGiveUp +02/04/2018,Sports_celeb,@JohnCena,"If this does not make your heart race, not matter WHO you follow, you may need to check your @NFL pulse #SuperBowl… https://t.co/TnZiglOP9D" +02/02/2018,Sports_celeb,@JohnCena,Best performance ever is a rare moment we all strive for. To reach #BestEver many days we must do our #BestToday !… https://t.co/7fXB8N0Sx0 +02/01/2018,Sports_celeb,@JohnCena,What an AMAZING show of support for ALL those who follow @BellaTwins @belleradiciwine !! This is just incredible!… https://t.co/Y2dRW5LyOe +01/31/2018,Sports_celeb,@JohnCena,"I’ve sat by the campfire with this amazing individual. No matter who you are, I HIGHLY recommend this!! https://t.co/gPybSw7Xn1" +01/30/2018,Sports_celeb,@JohnCena,"A @grouplotusplc Evora...and a minivan. Not exactly two vehicles you think would be mentioned in the same sentence,… https://t.co/8PMeb62Wv1" +01/30/2018,Sports_celeb,@JohnCena,With chance comes the unknown. With dedication comes sacrifice. With performance comes critique. With achievement c… https://t.co/hs8m5IBASM +01/29/2018,Sports_celeb,@JohnCena,"Congrats to @ShinsukeN, but look who showed up late to the #RoyalRumble, @getcrackin. https://t.co/elVc2AUQD5" +01/29/2018,Sports_celeb,@JohnCena,Such an honor to witness @WWE history tonight. Congratulations to ALL involved in the first ever Women’s #RoyalRumble +01/28/2018,Sports_celeb,@JohnCena,Battle plan for #royalrumble2018 STAY LOW! @WWE @WWEUniverse #NeverGiveUp https://t.co/FWuGUJ1inN +01/27/2018,Sports_celeb,@JohnCena,The excitement for #RoyalRumble is palpable but I’m also ready for a different return ... the return of #AutoGeek T… https://t.co/zbQlMRGc5B +01/26/2018,Sports_celeb,@JohnCena,"I know I’m almost towards the end of the day in India, but wanted to wish all a #HappyRepublicDay" +01/25/2018,Sports_celeb,@JohnCena,RT @xfl2020: This is football reimagined. This is the XFL. Watch the official announcement — LIVE NOW! #XFL2020 https://t.co/KFX5oLmkHw +01/23/2018,Sports_celeb,@JohnCena,"So happy @FerdinandMovie was nominated for Best Animated Feature Film. The cast, crew, directors, producers, and mo… https://t.co/o8DRsZnJUZ" +01/22/2018,Sports_celeb,@JohnCena,An early start to a great day! Heading to NYC for @TODAYshow then to @MakeAWish event then.. #RAW25 what a historic event for @WWE AND TV! +01/21/2018,Sports_celeb,@JohnCena,"Congrats to @Patriots and #TomBrady on another trip to #SuperBowl 40yrs old, and at the top of his game indeed… https://t.co/vsUiUj3gnp" +01/20/2018,Sports_celeb,@JohnCena,"Life is never perfect. Embrace the lows, enjoy the highs, and always do your best to move forward and be stronger i… https://t.co/hfx72wfwvf" +01/19/2018,Sports_celeb,@JohnCena,"Difficult few days, but as Walt Whitman wrote ‘The powerful play goes on, and you get to contribute a verse’ ! #NeverGiveUp" +01/15/2018,Sports_celeb,@JohnCena,"The importance of honesty in any relationship should never be overlooked. Hiding ones feeling, or behavior, can lea… https://t.co/VnbDGqwY7d" +01/15/2018,Sports_celeb,@JohnCena,#LoveHasNoLabels Happy #MLKDay +01/14/2018,Sports_celeb,@JohnCena,"Such a wonderful, meaningful, emotional day yesterday with the woman of my dreams and both of our families. I love… https://t.co/FCV8fjN7O0" +01/11/2018,Sports_celeb,@JohnCena,Humbled to work on so many projects with an amazing partner like @Nickelodeon. Ready to bring energy to a celebrate… https://t.co/IR9M43099X +01/11/2018,Sports_celeb,@JohnCena,"The excitement can NOT be contained! + +It’s official: It’s slime season and I’m back to host the @Nickelodeon Kids’… https://t.co/0vmd680Uqv" +01/10/2018,Sports_celeb,@JohnCena,"Attention everyone....I have an important announcement! + +...TOMORROW! https://t.co/OJkmOEWXfC" +01/08/2018,Sports_celeb,@JohnCena,RT @BlockersMovie: Parents can be such 🐔 @BlockersMovie. Watch the #BlockersMovie trailer now! https://t.co/rC6yq2Kooa +06/28/2018,Sports_celeb,@DanicaPatrick,Saving time with dat airplane makeup! More time to workout at home😆. Headed to a @somniumwine dinner that was aucti… https://t.co/oOOqUWy185 +06/28/2018,Sports_celeb,@DanicaPatrick,"Ella and I are about to tear it up in the gym, she has her ball and I have, a lot of @roguefitness equipment. 😆 hav… https://t.co/uzkhtDcgjH" +06/27/2018,Sports_celeb,@DanicaPatrick,I put the link to the @entrepreneur cover story in my bio. 💥 https://t.co/HegSAjdl1Y +06/27/2018,Sports_celeb,@DanicaPatrick,Here’s the article! https://t.co/WalE6T0vBa +06/27/2018,Sports_celeb,@DanicaPatrick,Covers are always cool but to be on a cover to talk about @somniumwine @prettyintensebydanica and @warriorbydanica… https://t.co/CYiMquhvfj +06/26/2018,Sports_celeb,@DanicaPatrick,"Check this out. Such a fun interview with @davidmeltzer for @Entrepreneur. + +https://t.co/zuYNPnqLY9" +06/26/2018,Sports_celeb,@DanicaPatrick,All interviews should be this fun!!!! Awesome conversation with @DMeltzer on how to live your #bestlife. We discuss… https://t.co/bCUaslYAbD +06/25/2018,Sports_celeb,@DanicaPatrick,"RT @espn: Want to join the stars at the 2018 @ESPYS? + +Win a chance to be @DanicaPatrick's guest by entering the ESPYS Sweepstakes with a do…" +06/22/2018,Sports_celeb,@DanicaPatrick,Namaste! @PIsupplements #EatClean #Organic #PlantPower #Sponsored https://t.co/tpEr71Xn2i +06/21/2018,Sports_celeb,@DanicaPatrick,"Oh, I wish I could of been there! Glad you had fun though, wine helps. 😆 thank you! https://t.co/1ijO320fW6" +06/17/2018,Sports_celeb,@DanicaPatrick,Happy Father’s Day pops! We have done a hell of… https://t.co/lQa1mTZYPx +06/17/2018,Sports_celeb,@DanicaPatrick,Someone has a 3rd birthday today.... and someone… https://t.co/TpXpVVotfW +06/10/2018,Sports_celeb,@DanicaPatrick,You can’t see!!!! Working on the #espys!… https://t.co/tY3o8hr7l0 +06/07/2018,Sports_celeb,@DanicaPatrick,Let’s #tbt to my surprise retirement party 11… https://t.co/H3gXSNWpOr +06/06/2018,Sports_celeb,@DanicaPatrick,"Air kisses with my shadow, Ella. ❤️ I got up… https://t.co/5zf7WFSbv3" +06/04/2018,Sports_celeb,@DanicaPatrick,Amazing night! Yes that’s me in the white dress! 😜 @SomniumWine https://t.co/SZ1ckseEYA +06/03/2018,Sports_celeb,@DanicaPatrick,Feeling pretty grateful today on my hike. Napa… https://t.co/t9lAMmXqpg +06/02/2018,Sports_celeb,@DanicaPatrick,Such a cool moment for me to finally be able to… https://t.co/ZLJ5FOHEYs +06/02/2018,Sports_celeb,@DanicaPatrick,Here at auctionnapa!!!! We are live lot 28… https://t.co/FHe5I8Cqr1 +06/01/2018,Sports_celeb,@DanicaPatrick,Thank you @LoganHjewelry for my “Danica”… https://t.co/RDG1hvBS1O +06/01/2018,Sports_celeb,@DanicaPatrick,Friday morning.....before… https://t.co/Qx22KEUGMb +05/27/2018,Sports_celeb,@DanicaPatrick,This is just a chapter in the book. Today feels… https://t.co/NuiAtY0Flx +05/26/2018,Sports_celeb,@DanicaPatrick,Flash back to the opposite scenario when I won… https://t.co/euus2qwINM +05/26/2018,Sports_celeb,@DanicaPatrick,"First, I observed that we might be the oldest… https://t.co/JNaqwkL6qi" +05/24/2018,Sports_celeb,@DanicaPatrick,For sure! So many things coming full circle! I am just one of SO many who miss Dan. https://t.co/NWRYyPHQkh +05/24/2018,Sports_celeb,@DanicaPatrick,Happy birthday mommie. It was nice to get out… https://t.co/PYzrpbKcS5 +05/23/2018,Sports_celeb,@DanicaPatrick,"RT @DanicaRacing: Check out photos of @DanicaPatrick from yesterday's #Indy500MediaTour at @SINow 📸➡️https://t.co/I3LeaHXKhO + +(Credit - @S…" +05/23/2018,Sports_celeb,@DanicaPatrick,I promise I didn’t make his picture black and… https://t.co/AA19kTGbsv +05/23/2018,Sports_celeb,@DanicaPatrick,"This is NOT savasana!!!! 🤣😩 +10 min- +10 hang… https://t.co/mHE6WrntuG" +05/23/2018,Sports_celeb,@DanicaPatrick,"This is the news!!! +. +. +Not any of the crazy… https://t.co/oISeAQZO2P" +05/23/2018,Sports_celeb,@DanicaPatrick,Let’s throw an awesome party to celebrate sports!!!!!! Thanks for believing in my girl! ☺️ https://t.co/kbK8hURbt6 +05/23/2018,Sports_celeb,@DanicaPatrick,"30,000ft dinner tonight. Long day of media in… https://t.co/g7Ex1SRzR3" +05/22/2018,Sports_celeb,@DanicaPatrick,RT @SomniumWine: Only 5 days left until @AuctionNapa E-Auction opens: 5/27 at 12 pm & closes on 6/3. To view our E-Lot: https://t.co/4wnJDw… +05/22/2018,Sports_celeb,@DanicaPatrick,Tune into @jimmyfallon tonight if you want to… https://t.co/m3h7OzJ43C +05/22/2018,Sports_celeb,@DanicaPatrick,Life size @LEGO_Group statue of me. 💥🙌🏼 I had… https://t.co/x8J5Qc9enQ +05/22/2018,Sports_celeb,@DanicaPatrick,It was my pleasure. Kids are at the top of the priority list to take care of! https://t.co/bLMAnJ4iQK +05/21/2018,Sports_celeb,@DanicaPatrick,Qualifying at Indy is a thing. It’s special.… https://t.co/pwdUpBZxBK +05/20/2018,Sports_celeb,@DanicaPatrick,WE it into the “fast 9” yesterday. Team effort.… https://t.co/Ox4qJnrWQd +05/20/2018,Sports_celeb,@DanicaPatrick,Never say never when it comes to Indy! Feelin for Hinch. https://t.co/fCtZ7IwZJs +05/19/2018,Sports_celeb,@DanicaPatrick,With all this rain when I was about to go out and qual for the 500-I said to my mom “icing the kicker”. She looked at my foot. 🤦🏻‍♀️ +05/19/2018,Sports_celeb,@DanicaPatrick,Weather... always a part of the Indy story. https://t.co/TXNSGEx3PQ +05/19/2018,Sports_celeb,@DanicaPatrick,"Qualifying for the 500 tomorrow. +@jonferrey… https://t.co/TCjpsEHipr" +05/16/2018,Sports_celeb,@DanicaPatrick,No problem! Feel free to chime in next time. 😜 https://t.co/pPspxvoHNT +05/14/2018,Sports_celeb,@DanicaPatrick,💥 lucky number 13!!!!!!! https://t.co/x5UayS1Qks +05/13/2018,Sports_celeb,@DanicaPatrick,My favorite mommies and their babies! bevpatrick brooke_selman… https://t.co/ol2Zth06Px +05/12/2018,Sports_celeb,@DanicaPatrick,Yummm! I made it with chocolate chips yesterday. 😬😜 @PrettyIntense https://t.co/sZa9wUfiaX +05/08/2018,Sports_celeb,@DanicaPatrick,Good night with my ladies @haleymoore02 and @SomniumWine at the… https://t.co/mBidpfT6sE +05/08/2018,Sports_celeb,@DanicaPatrick,That was fun!!! And way more comfy! https://t.co/NM25Tl8HOs +05/07/2018,Sports_celeb,@DanicaPatrick,"As I was trying to take a “cute” selfie (bad lighting, maaaaany tries), I… https://t.co/dCq2qRwEvY" +05/07/2018,Sports_celeb,@DanicaPatrick,I'm presenting at the James Beard Awards which will be LIVE on Twitter tonight! Watch the #jbfa action: https://t.co/ELECF3scCj +05/07/2018,Sports_celeb,@DanicaPatrick,Morning yoga vibes & plant power w/ my partner @PIsupplements #EatClean #Organic #partner https://t.co/PeILQmb32v +05/04/2018,Sports_celeb,@DanicaPatrick,"Always!!!!! Great to see you! + +We also did a documentary called Danica if you want to check that out on @EpixHD https://t.co/wH1RMSKnwi" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Now that you mention engineering meetings, I like where you're going with this...it has potential" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown I love motivational quotes and sayings, but I'm not sure how I feel about robots...maybe an app instead?" +05/04/2018,Sports_celeb,@DanicaPatrick,@Hinchtown Sure! What are you thinking? +05/04/2018,Sports_celeb,@DanicaPatrick,@Hinchtown Don't believe everything you see in movies 😉 +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Everyone likes ice cream, but the pit crews might be busy during the race." +05/04/2018,Sports_celeb,@DanicaPatrick,"Hmmm...decisions, decisions 🤔 https://t.co/FlBsJyBx9P" +05/04/2018,Sports_celeb,@DanicaPatrick,I like it! We could include copies of @PrettyIntense so folks have my recipes too https://t.co/ifTeCLuEjN +05/04/2018,Sports_celeb,@DanicaPatrick,Wow! Now that’s some fast customer service @GoDaddy https://t.co/vCy0hPdT0S +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Ya, I can't say I've ever had that problem before. 🤣 That's for sure a unique idea though. I guess they'… https://t.co/7AGEHLemUj" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown Absolutely! Let me know where to send the check. 😉 If your other ideas are anything like Swifty Scoop, I… https://t.co/WsT5SY4mqt" +05/04/2018,Sports_celeb,@DanicaPatrick,"@Hinchtown That’s an awesome idea! I ❤️ my Dallas and Ella, but picking up after them is definitely not great. An a… https://t.co/JGh3Lkkbvm" +05/04/2018,Sports_celeb,@DanicaPatrick,Totally @Hinchtown—what do you got? https://t.co/QSu7eX7zyR +05/03/2018,Sports_celeb,@DanicaPatrick,Thank you. https://t.co/lcP1lkAsdK +05/02/2018,Sports_celeb,@DanicaPatrick,"RT @ECRIndy: Our three #Indy500 drivers... +#TeamAmerica, Circa 2018 🇺🇸🏁 https://t.co/u63NBSVtH5" +05/02/2018,Sports_celeb,@DanicaPatrick,"I’ll enjoy the quiet walks while I can... +. +. +#danicadouble @godaddy @ecrindy… https://t.co/7fD17A0Qw0" +05/02/2018,Sports_celeb,@DanicaPatrick,"With your help, thank you! https://t.co/wZySwBmxXR" +05/02/2018,Sports_celeb,@DanicaPatrick,Oh how he memories fled back in with this view from my rookie orientation in… https://t.co/7l6w3hHHTC +04/20/2018,Sports_celeb,@DanicaPatrick,"😩 yo, 100 chest to bar pull ups is a little detrimental to the skin on my hands. +. +4 rounds- +25… https://t.co/Z4hCfJEzxq" +04/18/2018,Sports_celeb,@DanicaPatrick,Duke (adopatable) and I at #rachelrayshow to talk about my last race and side hustles coming… https://t.co/NRb8VFFpSN +04/18/2018,Sports_celeb,@DanicaPatrick,"RT @IndyCar: 👀👀👀 +#Indy500 // #INDYCAR // @DanicaPatrick https://t.co/yfa9AG9c7N" +04/18/2018,Sports_celeb,@DanicaPatrick,"RT @SomniumWine: Wine Dogs California 3 is the definitive guide to dogs living & working in the vineyard & wineries. Dogs, Lucy & Lily belo…" +04/18/2018,Sports_celeb,@DanicaPatrick,Doing media in nyc today! First up megyntoday! @godaddy @IMS https://t.co/Mwfnuil0Ul +04/18/2018,Sports_celeb,@DanicaPatrick,Amazing experience. 🙌🏼 https://t.co/NVa5rfQSbo +04/17/2018,Sports_celeb,@DanicaPatrick,Hey students! My team @SixStarPro are giving away $15k. Enter here: https://t.co/7gfjyaz1fu #whynot… https://t.co/UsKRgJwEHg +04/16/2018,Sports_celeb,@DanicaPatrick,How cool! Hope you had fun! https://t.co/0XNworNtL1 +04/05/2018,Sports_celeb,@DanicaPatrick,"Which way to the gym?! 😆😆😆 .... please, I always know where the nearest gym is. 💪🏼 +. +....omg The… https://t.co/OJKeCzYU1d" +03/30/2018,Sports_celeb,@DanicaPatrick,"Figure out what works for you when it comes to fitness. Community, solo, hiking, lifting,… https://t.co/Q4kZdBiYQO" +03/29/2018,Sports_celeb,@DanicaPatrick,"And part 2.... well technically part 4 of the workout, but wod part b. +10 min amrap- +10 pull… https://t.co/ErxvT1d9b5" +03/29/2018,Sports_celeb,@DanicaPatrick,"I’m so excited to have my home gym loaded with all the good stuff! @roguefitness +Last round of… https://t.co/6f69XYqCz7" +03/28/2018,Sports_celeb,@DanicaPatrick,"In the words of my first win....... it’s been a long time coming. + +It will be here before we know it. And it will… https://t.co/F9kGpgMRTO" +03/28/2018,Sports_celeb,@DanicaPatrick,🏁 https://t.co/kpEVMKU2e8 +03/28/2018,Sports_celeb,@DanicaPatrick,🙌🏻 LOVE that my side hustles are on my #IndyCar for the #Indy500 with @GoDaddy! https://t.co/3ihMbuWzYh +03/27/2018,Sports_celeb,@DanicaPatrick,My favorite item from my @fabfitfun spring #editorsbox!!!!!! Mother’s Day is right around the… https://t.co/G1omyqEOTU +03/27/2018,Sports_celeb,@DanicaPatrick,F ya. It’s a hybrid of my first helmet design and my last. And I used @bellracingusa until I… https://t.co/YUbuNnMO4s +03/27/2018,Sports_celeb,@DanicaPatrick,Finally got my #pitribe @PrettyIntense sweatshirt! I am so proud of the community that formed… https://t.co/efwpKLtXIP +03/26/2018,Sports_celeb,@DanicaPatrick,"I love getting older!!!!!!!!!!! Super grateful for all the love around me in my life! People,… https://t.co/SYbWQ4tnQ8" +03/26/2018,Sports_celeb,@DanicaPatrick,"Landed.......Baaack home agaaaain, in Indiana! 🎶 🏎🏁.....it’s cold here and there is snow on the… https://t.co/mmyUfgW99z" +03/26/2018,Sports_celeb,@DanicaPatrick,"“No I will not make out with you.” 😆 +-Billy Madison +. +. +And by the way, can I have my seat… https://t.co/b5uhLgHU3i" +03/24/2018,Sports_celeb,@DanicaPatrick,Car coming....sit! Good girls. My angels! I would jump in front of a car to save them.… https://t.co/wGJYxJtMyf +03/21/2018,Sports_celeb,@DanicaPatrick,Shooting a few episodes of Elevator Pitch for @entrepreneur that airs in May!!!!!! @godaddy is… https://t.co/q3pnWWtHRS +03/20/2018,Sports_celeb,@DanicaPatrick,So cool!!!! Cheers! 🍷 https://t.co/ZS64JZmYYp +03/19/2018,Sports_celeb,@DanicaPatrick,"“We are travelers on a cosmic journey, stardust swirling and dancing in the eddies and… https://t.co/2Waju8szEj" +03/16/2018,Sports_celeb,@DanicaPatrick,🙌🏻 cheers to the weekend! @PIsupplements #partner https://t.co/MuDVve9ClB +03/14/2018,Sports_celeb,@DanicaPatrick,Ready set go. Man......IndyCar seats are so comfy. Like a lazy boy. That goes 240mph. @godaddy… https://t.co/BbOCLMJgQu +03/13/2018,Sports_celeb,@DanicaPatrick,"What? + +Just a normal day hanging out in my normal work look. 😆 @godaddy @ecrindy https://t.co/6jRBMKePM5" +03/10/2018,Sports_celeb,@DanicaPatrick,"Happy birthday to my badass sister brooke_selman. Not only are you my best friend(oracle☺️), but… https://t.co/jcL2EqENBQ" +03/08/2018,Sports_celeb,@DanicaPatrick,In honor of #internationalwomensday! I am lucky enough to say this is only some of my… https://t.co/lG9sSxDCeH +03/08/2018,Sports_celeb,@DanicaPatrick,"Summer is on its way, and my rose is here just in time! 💗 it’s made from my estate red, but… https://t.co/Ws2buLUr0A" +03/07/2018,Sports_celeb,@DanicaPatrick,🙌🏻 It’s official...I’m racing for @ECRIndy in the #Indy500! ☺️ And I’ve got a new lucky number for the @GoDaddy Che… https://t.co/6EL6L8irwo +03/06/2018,Sports_celeb,@DanicaPatrick,Thank you old friend. https://t.co/Fjm0suGSVu +03/02/2018,Sports_celeb,@DanicaPatrick,In the spirit of the @crossfit open going on......(I am watching 18.2 on my computer)I got to… https://t.co/YkOssugc7S +03/01/2018,Sports_celeb,@DanicaPatrick,I bought the book the alchemist last year....but didn’t read it. It just didn’t happen. I am… https://t.co/Z6BFBTwerw +02/23/2018,Sports_celeb,@DanicaPatrick,🌅🧘🏻‍♀️🕉 https://t.co/IuYCOv9ERK +02/21/2018,Sports_celeb,@DanicaPatrick,"RT @PlayersTribune: A pioneer and a role model. + +Looking back at @DanicaPatrick's final #Daytona500 in 0:60 seconds. https://t.co/sQuCzFSe…" +02/19/2018,Sports_celeb,@DanicaPatrick,These are the things I will remember and cherish. Thank you. 🙌🏼 https://t.co/ajFktWxxb2 +02/19/2018,Sports_celeb,@DanicaPatrick,"Goodbye race track, until May. Thank you for the memories Nascar and Daytona. 💚 +. +. +@jonferrey 📸… https://t.co/bg2mUjgCLP" +02/18/2018,Sports_celeb,@DanicaPatrick,Ready to go!!!!!! 💚 https://t.co/7uYs6Sdfbm +02/18/2018,Sports_celeb,@DanicaPatrick,Going to have to keep my eyes wide open today in the race. These cars and guys are going to do… https://t.co/sANp0FV5eu +02/18/2018,Sports_celeb,@DanicaPatrick,"Doing Daytona with all the people that mean the most to me. 💚 +. +. +@jonferrey 📸 follow… https://t.co/54M0sVD8DY" +02/18/2018,Sports_celeb,@DanicaPatrick,"Last practice day, in my stock car career. 😌 +. +. +@jonferrey 📸 follow playerstribune and… https://t.co/szIwK33MhB" +02/17/2018,Sports_celeb,@DanicaPatrick,I have always been very grateful for my fans. Thank you. ......things I will miss.… https://t.co/MFtGdnEwDn +02/16/2018,Sports_celeb,@DanicaPatrick,"Duels in the books and still in the primary car. Mission accomplished, but of course-I always… https://t.co/qXtQxJ1cwZ" +02/15/2018,Sports_celeb,@DanicaPatrick,Great job girl! ❤️ https://t.co/7JYQlPF4rq +02/15/2018,Sports_celeb,@DanicaPatrick,"Book signing barnesandnoble. +. +. +@jonferrey 📸 follow playerstribune for more pics. @godaddy https://t.co/Muo8AglQ7i" +02/15/2018,Sports_celeb,@DanicaPatrick,Hope to see you there... 👇🏻 https://t.co/DnMdhoTHrM +02/14/2018,Sports_celeb,@DanicaPatrick,How I feel about media day. 😆🤥 @disupdates #danicadouble https://t.co/1QUamTAyJh +02/14/2018,Sports_celeb,@DanicaPatrick,"Happy Valentine’s Day! +. +. +Such a lovely, man made day to either feel amazing or horrible😜,… https://t.co/QReDpgfw5B" +02/13/2018,Sports_celeb,@DanicaPatrick,"Rose all day!!!!!!!! Hell ya! Made from our estate cab franc and petit verdot! Limited amount,… https://t.co/efmBVEgvbf" +02/13/2018,Sports_celeb,@DanicaPatrick,"Morning fog in NC made for some cool moody shots. Def wasn’t Florida sunshine! +. +. +@jonferrey 📸… https://t.co/kUEYHrtWTG" +02/13/2018,Sports_celeb,@DanicaPatrick,"On my way to work today. You all know, I love looking out the window and… https://t.co/QTIfZ1BwrW" +02/13/2018,Sports_celeb,@DanicaPatrick,RT @SixStarPro: If you've ever seen @danicapatrick train you know she's pretty intense! Retweet for the chance to win a signed copy of her… +02/12/2018,Sports_celeb,@DanicaPatrick,Racing down Daytona beach. 😜 https://t.co/kf4tcT1vPb +02/12/2018,Sports_celeb,@DanicaPatrick,"Check out my new @GoDaddy TV ad. #Daytona500 #DanicaDouble +https://t.co/WBpQLgEGXC" +02/12/2018,Sports_celeb,@DanicaPatrick,Aftermath...... sweat angels as @jonferrey called them! 😜 😇 https://t.co/9hqMTgnFop +02/12/2018,Sports_celeb,@DanicaPatrick,"RT @JennaFryer: New commercial: @DanicaPatrick +and @GoDaddy have a 22nd commercial. This one to debut in Daytona 500: +https://t.co/RwPmMoX…" +02/12/2018,Sports_celeb,@DanicaPatrick,"Whoa. That was a tough one!!! One could say it was @PrettyIntense, hahahah! +. +. +5 rounds- +30… https://t.co/haJ14655zD" +02/11/2018,Sports_celeb,@DanicaPatrick,"Next up, duels on Thursday. +. +. +@jonferrey 📸 follow the playerstribune for more pics. @godaddy… https://t.co/iRhlImWt67" +02/11/2018,Sports_celeb,@DanicaPatrick,"Pre-Qualifying. +. +. +📸 @jonferrey also follow the playerstribune. @godaddy #danicadouble https://t.co/Ny266bc06A" +02/11/2018,Sports_celeb,@DanicaPatrick,Cool to see people with my book that I poured so much literal sweat and energy into. ☺️ thank… https://t.co/AmKk4M0zFa +02/10/2018,Sports_celeb,@DanicaPatrick,Good first day in the car. Thought we were going to end up P1 Until a big pack went out at the… https://t.co/GjZI5UfdcX +02/10/2018,Sports_celeb,@DanicaPatrick,"Headed to work. +. +. +Follow here and check out playerstribune for more exclusive… https://t.co/lAC2dGGf9F" +02/09/2018,Sports_celeb,@DanicaPatrick,I have @jonferrey taking all access pics this week for the first race of the #DanicaDouble.… https://t.co/0ziXIvqtTb +02/09/2018,Sports_celeb,@DanicaPatrick,RT @DISupdates: The #DanicaDouble starts with the #DAYTONA500! 🤘 https://t.co/fECOuy8vhA +02/09/2018,Sports_celeb,@DanicaPatrick,"RT @PlayersTribune: ""There couldn’t be a better place for my @NASCAR journey to end."" + +@DanicaPatrick discusses her evolving feelings on re…" +02/08/2018,Sports_celeb,@DanicaPatrick,🙌🏼🙌🏼🙌🏼 https://t.co/uDvQ1x9zpA +02/07/2018,Sports_celeb,@DanicaPatrick,The results come when you put the work in day in and day out @sixstarpro #greatnessisearned #partner https://t.co/h2QMdBETyX +02/06/2018,Sports_celeb,@DanicaPatrick,I posted a before and after pic a while back that showed the difference between a stylized pic… https://t.co/t6A2Rmacfz +02/05/2018,Sports_celeb,@DanicaPatrick,"Such a lovely day hiking, girl time supporting any and every issue/joy, workout, cooking, and a… https://t.co/QmCWEIbwkW" +02/05/2018,Sports_celeb,@DanicaPatrick,.@DavidKHarbour Have I been in a #TideAd this whole time? #SBII #SB52 @Tide https://t.co/CWA5Byp3F7 +02/03/2018,Sports_celeb,@DanicaPatrick,Thanks guys....can’t wait for May! https://t.co/DgwoPyWorm +02/02/2018,Sports_celeb,@DanicaPatrick,🙌🏼 @godaddy @disupdates .....racing in 16 days. https://t.co/68s0LIMJeV +02/02/2018,Sports_celeb,@DanicaPatrick,RT @GoDaddy: Number 7 is turning heads with @DanicaPatrick behind the wheel. #DanicaDouble #RacingAndBeyond https://t.co/DxCZyZGQNp +02/02/2018,Sports_celeb,@DanicaPatrick,Feels good to be back in the #GoDaddy green! https://t.co/x4t5GAiCjQ +02/02/2018,Sports_celeb,@DanicaPatrick,Ta da! 🙌🏻 here’s my No 7 @GoDaddy Chevy wrapped and ready for Daytona! Love the #DanicaDouble! https://t.co/xJaJlVVeMO +02/01/2018,Sports_celeb,@DanicaPatrick,Love it!!!! Good job!!! https://t.co/QSKQgeFdaI +01/31/2018,Sports_celeb,@DanicaPatrick,"Omg. The worst. I try and enforce a 90min or less rule, I don’t always win. https://t.co/K1vJmuYIxd" +01/31/2018,Sports_celeb,@DanicaPatrick,"Loving the new leggings and this wrap from the Jan collection! On @hsn at 7, 11, and 3 est… https://t.co/11NyFw6iY1" +01/31/2018,Sports_celeb,@DanicaPatrick,RT @SomniumWine: Create a romantic dinner at home this Valentines Day with @snakeriverfarms & @SomniumWine A special bonus included: An Aut… +01/30/2018,Sports_celeb,@DanicaPatrick,Headed to Tampa today for another collection of @warriorbydanica on @hsn! On air tomorrow! 🎥 I… https://t.co/7LvRUNW39l +01/29/2018,Sports_celeb,@DanicaPatrick,RT @HorsesToHarleys: Great article about why @DanicaPatrick and GoDaddy make so much sense together. https://t.co/9iZIqhrGuN +01/29/2018,Sports_celeb,@DanicaPatrick,"RT @Avery_Books: ""The journey is to find your truth and really know who you are."" +Catch @DanicaPatrick​ on @RichRoll​'s podcast here! + +http…" +01/29/2018,Sports_celeb,@DanicaPatrick,This is true. 😆 https://t.co/5ROuTC53Fp +01/26/2018,Sports_celeb,@DanicaPatrick,My shoot today was with some old friends😁..... 💚 @godaddy https://t.co/cAOM13VyRv +01/25/2018,Sports_celeb,@DanicaPatrick,"Killing time during a shoot.... and I read someone say I don’t post enough personal photos, so… https://t.co/8bJoboSPlH" +01/25/2018,Sports_celeb,@DanicaPatrick,Fun to look at my pics in @PrettyIntense and see what hard work does..... been up at 6am hitting… https://t.co/dyipzkQmHP +01/24/2018,Sports_celeb,@DanicaPatrick,Excited to talk with @cheddar about my racing career and reuniting with @GoDaddy for my next step: being an entrepr… https://t.co/GSN6UBa9Iw +01/24/2018,Sports_celeb,@DanicaPatrick,❤️ It’s a @PrettyIntense photo. 😆 https://t.co/f0TbHf7sDb +01/24/2018,Sports_celeb,@DanicaPatrick,Next week @warriorbydanica is back😜 on @hsn! https://t.co/o2Dq0pQMg0 +01/23/2018,Sports_celeb,@DanicaPatrick,Let’s do this!!!!! Lucky number 7! https://t.co/9cgI5vJesy +01/19/2018,Sports_celeb,@DanicaPatrick,RT @SiriusXMNASCAR: GUEST ALERT: #DIALEDIN with @ClaireBLang welcomes on @GoDaddy CMO @HorsesToHarleys right now to talk @DanicaPatrick! #D… +01/18/2018,Sports_celeb,@DanicaPatrick,This is awesome and I’m your biggest fan as well Bob!!!! https://t.co/LsngsuDpdC +01/18/2018,Sports_celeb,@DanicaPatrick,"RT @FSUDJn3: @DanicaRacing @DanicaPatrick @GoDaddy Awesome News, Good Luck @DanicaPatrick & #GoDaddy You 2 just go together. Looking forwar…" +01/18/2018,Sports_celeb,@DanicaPatrick,Back together in @godaddy green.....and it feels so good! https://t.co/qvvyE8inpx +01/18/2018,Sports_celeb,@DanicaPatrick,RT @DanicaRacing: 🚨📝@GoDaddy & @DanicaPatrick reunite for #DanicaDouble and life after racing ➡️https://t.co/0AkQiQcsR6 #NASCAR #IndyCar ht… +01/18/2018,Sports_celeb,@DanicaPatrick,How perfect is this?!?!!!!!! I’m so excited! @GoDaddy https://t.co/EeaxuEneRP +01/18/2018,Sports_celeb,@DanicaPatrick,Great day shooting with @scottmcdermott_ for @warriorbydanica. He shot the cover and all the… https://t.co/fAg4vDV6z0 +01/18/2018,Sports_celeb,@DanicaPatrick,Amazing day!!!!!! https://t.co/2d6xnmtiKR +01/17/2018,Sports_celeb,@DanicaPatrick,That was a fun one!!! Thanks Dan! https://t.co/Hfw13Ekxwa +01/17/2018,Sports_celeb,@DanicaPatrick,RT @PrettyIntense: .@DanicaPatrick is in deep discussion with @richroll on his podcast. Be sure to check it out! Definitely some thought pr… +01/17/2018,Sports_celeb,@DanicaPatrick,He pleasure was all mine. Thanks for taking the time to talk to me! https://t.co/CKRQvTywgV +01/16/2018,Sports_celeb,@DanicaPatrick,RT @richroll: Excited to podcast with @DanicaPatrick today - what do you want to know? +01/16/2018,Sports_celeb,@DanicaPatrick,Thank you! It was fun! https://t.co/vJqdrQsO4j +01/15/2018,Sports_celeb,@DanicaPatrick,Hearing about all my friends getting their family and friends copies because the book resonates… https://t.co/JiRQrMODJk +01/12/2018,Sports_celeb,@DanicaPatrick,"My friends @SixStarPro are giving you a chance to win a $15,000 scholarship. Enter now https://t.co/8Vt8FDGGcu… https://t.co/c1gnSlF8OJ" +01/11/2018,Sports_celeb,@DanicaPatrick,RT @DanSchawbel: Danica Patrick’s 5 secrets to living a successful and happy life https://t.co/7hBPp75Fb1 @DanicaPatrick +01/11/2018,Sports_celeb,@DanicaPatrick,"😆😆😆 love it! Just so you know, I say that to myself too! Good work! https://t.co/lxLqSRHH6M" +01/09/2018,Sports_celeb,@DanicaPatrick,"RT @DanicaRacing: .@DanicaPatrick shifts careers, back to work after a short offseason. https://t.co/B6k37w8jGU https://t.co/I4QpMCKzag" +01/08/2018,Sports_celeb,@DanicaPatrick,@RachelleDarling @Reality_Check11 @FlaniganVarina @PrettyIntense So proud of you guys!!!!! +01/08/2018,Sports_celeb,@DanicaPatrick,That’s awesome! Thank you and keep it up! https://t.co/SZwtkNRCgv +01/06/2018,Sports_celeb,@DanicaPatrick,We had a @PrettyIntense workout today with our friend @aaronbrockett! Feels good to run a little… https://t.co/RIEYhWP0Gq +01/06/2018,Sports_celeb,@DanicaPatrick,"@AaronPott @patty_bretz @PrettyIntense Thanks Aaron(my winemaker)! Speaking of perfection, I need to get to napa ag… https://t.co/hoBasmpQhx" +01/06/2018,Sports_celeb,@DanicaPatrick,😆 it will happen many times over the course of 12 weeks. 😬 https://t.co/2049ER1aAf +01/06/2018,Sports_celeb,@DanicaPatrick,Thanks for making the drive! https://t.co/Azn6R78YPn +01/06/2018,Sports_celeb,@DanicaPatrick,Proud of you! I will be on the lookout for your progress! https://t.co/EMKPVjsp4I +01/06/2018,Sports_celeb,@DanicaPatrick,RT @DanicaRacing: .@DanicaPatrick’s New Career Track - the #NASCAR driver looks ahead to her post-racing life https://t.co/AbjNyiBnb5 https… +01/05/2018,Sports_celeb,@DanicaPatrick,First book signing tonight. I had a good time and it was awesome to see the #pitribe (they did… https://t.co/vUjLd9aRha +01/04/2018,Sports_celeb,@DanicaPatrick,Thank you so much! I’m proud of you! https://t.co/09SHYAOwjB +01/03/2018,Sports_celeb,@DanicaPatrick,Thanks! You know how much I love to cook! https://t.co/aeSWbaCQAG +01/03/2018,Sports_celeb,@DanicaPatrick,Oh you’re so sweet!!! ☺️ https://t.co/73l2jWSWWT +01/03/2018,Sports_celeb,@DanicaPatrick,Watch @thechew today!!!! Made my cast-iron skillet apple crumble! 😋 @PrettyIntense https://t.co/4f4HjiN4vK +01/02/2018,Sports_celeb,@DanicaPatrick,"RT @GMA: .@DanicaPatrick demonstrates some workout moves from her new book ""PRETTY INTENSE"" and shares secrets for a healthier new year! ht…" +01/01/2018,Sports_celeb,@DanicaPatrick,"As you look into the white space of 2018, ask yourself...what do I want? You are a creator. And… https://t.co/g0ymexznCC" +12/31/2017,Sports_celeb,@DanicaPatrick,Walkin into 2018 like...let’s do this. Don’t forget to drink some heart healthy red wine tonight… https://t.co/GMqYxixr3s +12/29/2017,Sports_celeb,@DanicaPatrick,Getting excited about my book tour in NYC next week! It’s going to be fun to do different things… https://t.co/61TAdOe2n6 +12/27/2017,Sports_celeb,@DanicaPatrick,"Holy moly it’s on shelves!!!!!!!!! 🙌🏼 it isn’t just a workout book. It focuses on the mind, then… https://t.co/82LgNNQeym" +12/25/2017,Sports_celeb,@DanicaPatrick,Merry Christmas!!!!!!🎁🎄 https://t.co/14sDmAvUSk +12/24/2017,Sports_celeb,@DanicaPatrick,"This is how we do it, nah nah nah nah nah. 😆🎶 annual tradition on Christmas. And yes, we love… https://t.co/eF38xkweq9" +12/24/2017,Sports_celeb,@DanicaPatrick,....And this article for my wine @somniumwine!!!! So exciting to see things that have been in… https://t.co/fvRd2mR8ts +06/29/2018,Sports_celeb,@nickdiaz209,@tocayaorganica #organic #floradaboy 🥊 https://t.co/SLeupmHvSf +06/29/2018,Sports_celeb,@nickdiaz209,#tbt #vegas @DjShiftLV @spartan_sano kriskehl1 @Rudyvegas tommyvegas1007 https://t.co/CcE45Cd0U4 +06/28/2018,Sports_celeb,@nickdiaz209,@spartan_sano and me @NickDiazAcademy #mma https://t.co/B9QrPjFpCd +06/22/2018,Sports_celeb,@nickdiaz209,@spartan_sano #ebc #vegas #spartansano @NickDiazAcademy @ufc @bellatormma ✊🏽 https://t.co/nihK0fjgle +06/22/2018,Sports_celeb,@nickdiaz209,#yeeee @felonyisme https://t.co/HkmyjtSkzd +06/22/2018,Sports_celeb,@nickdiaz209,@ProFightLeague @jakeshieldsajj ✊🏽 #nickdiazacademy #graciefighter #scrappack @elninotraining @cesargraciebjj… https://t.co/Ccj6Im05pf +06/21/2018,Sports_celeb,@nickdiaz209,Happy birthday elfrogito #ajtapout #ajstrong… https://t.co/4lgMGePN9H +06/19/2018,Sports_celeb,@nickdiaz209,wildcardboxingclub @thefloridaboy #boxing @ufc… https://t.co/R0yPW13ctN +06/18/2018,Sports_celeb,@nickdiaz209,Picked up a @jawzrsize 💯 Get yours using my code… https://t.co/rKo91DpRZw +06/18/2018,Sports_celeb,@nickdiaz209,#ShannonBriggs 💪🏽 🥊 https://t.co/dwCKxlfINN +06/17/2018,Sports_celeb,@nickdiaz209,"#dayoneshit @drzdah #drdah @ West Hollywood,… https://t.co/5O9to9jXYd" +05/21/2018,Sports_celeb,@nickdiaz209,@TeamSantos925 @cesargraciebjj 🥋 https://t.co/i6nXPLWPNo +05/19/2018,Sports_celeb,@nickdiaz209,Old school #blackbeltmagazine cover photo used… https://t.co/gHG29Czdyc +05/19/2018,Sports_celeb,@nickdiaz209,#mrpushup unclejimmystrong #strong #pushup… https://t.co/AgTUWRnbrk +05/16/2018,Sports_celeb,@nickdiaz209,Ran into my boy Jeremy Lappen #elitexc promoter… https://t.co/aN7N9sp7X7 +05/14/2018,Sports_celeb,@nickdiaz209,lilsdinh nat_marie7 carlitonation bmetcalf76 @ Liaison Restaurant +… https://t.co/sv13AtFKOJ +05/11/2018,Sports_celeb,@nickdiaz209,"RT @ufc: #OnThisDay in 2012... + +@NateDiaz209 once again left us speechless. #UFC25Years https://t.co/mCoYXBEdc2" +05/11/2018,Sports_celeb,@nickdiaz209,RT @NateDiaz209: 👊🏼 https://t.co/xbcve5XZsl +05/10/2018,Sports_celeb,@nickdiaz209,"RT @TheFloridaBoy: PICK +ya +POISON https://t.co/ZZZzu50CrC" +05/09/2018,Sports_celeb,@nickdiaz209,Me and @mariolopezextra wildcardboxingclub we had to jump this fool… https://t.co/5O8Kem0Kst +05/04/2018,Sports_celeb,@nickdiaz209,Great training day thanks to jeanjacquesmachado for having us and… https://t.co/afPbEsXUxZ +05/04/2018,Sports_celeb,@nickdiaz209,"RT @TheFloridaBoy: Got pretty... +High + +Today.... https://t.co/0Mv5g4fqtj" +05/04/2018,Sports_celeb,@nickdiaz209,"RT @50cent: I’m busy working on something, that’s gonna blow your mind. #thebag💰 https://t.co/F9zhIQH7uQ" +05/02/2018,Sports_celeb,@nickdiaz209,Come smoke 💨 highrollerzbjj mightymatt @biglonn412 #june10 #buytix @ Nexus… https://t.co/ZW6WfYeMEN +04/29/2018,Sports_celeb,@nickdiaz209,@NickDiazAcademy @joseaguayo100 #ganggang https://t.co/3tJtKsWorA +04/27/2018,Sports_celeb,@nickdiaz209,tommyvegas1007 @hwood_roosevelt @uncleJimmystrong kathleenmacel https://t.co/1wPuHhK8hL +04/27/2018,Sports_celeb,@nickdiaz209,#ganggang #dallas #squad #bottledblonde @desman06 @dennydamier elfrogito bottledblondedtx https://t.co/vBZTB6tbpg +04/27/2018,Sports_celeb,@nickdiaz209,"@jasonmanly #comeatmebro ✊🏽🙏🏽 +@NickDiazAcademy @musclepharm https://t.co/06DciV9z0Q" +04/21/2018,Sports_celeb,@nickdiaz209,@hemp2o @Hemp2oOfficial https://t.co/yYa3Mlacdw +04/16/2018,Sports_celeb,@nickdiaz209,Happy birthday to my little brother @natediaz209 ✊🏽 https://t.co/AyaWA8QBq3 +04/12/2018,Sports_celeb,@nickdiaz209,Happy birthday to my boy @gilbertmelendez @elninotraining @woodenmanmt 🙏🏽 https://t.co/ylVUzsMrPX +04/12/2018,Sports_celeb,@nickdiaz209,ralphgracie @✊🏽💪🏽👌🏾🙏🏽 https://t.co/8pg7bHJ4TS +04/11/2018,Sports_celeb,@nickdiaz209,"Back where we left off👊🏽 😡😡😡😵😵😵😵😵🙂☹️🤕 @ Dallas, Texas https://t.co/vc3U0laIrO" +04/06/2018,Sports_celeb,@nickdiaz209,#Dallas @desman06 @dennydamier @ Citizen https://t.co/dIEpJ3eiYq +03/28/2018,Sports_celeb,@nickdiaz209,"@whotel come at me #👊🏽 +@hommefemmela @ W Dallas - Victory Hotel & Residences https://t.co/VMhMf6MMeA" +03/27/2018,Sports_celeb,@nickdiaz209,Thanks Ernest for taking us out for dinner had a great time #dallas https://t.co/UZ3EvyipiP +03/22/2018,Sports_celeb,@nickdiaz209,drosol ionlywantedeverything clayryanflyn_ @ W Dallas - Victory Hotel & Residences https://t.co/LPiMFAOCvb +03/20/2018,Sports_celeb,@nickdiaz209,Back in Dallas with @Belluhhh @dannyleal_a themodernmodel @jacobtuygun @wuaniiiii #dallas https://t.co/8rjp0g1vBl +03/19/2018,Sports_celeb,@nickdiaz209,@akafights @ShreveportMAA #mma #jits https://t.co/R0D4rAroUe +03/18/2018,Sports_celeb,@nickdiaz209,@akafights @ShreveportMAA #jiujitsu #mma https://t.co/fRnydORsPV +03/16/2018,Sports_celeb,@nickdiaz209,@hemp2o @Hemp2oOfficial @NickDiazAcademy #hemp2o #hemp2zero https://t.co/BPpB9tlbzY +03/16/2018,Sports_celeb,@nickdiaz209,@marqueelv with @StefanStruve and badiesel1 wit @darthvinh #vegas #casmopolitan #marqueenightclub https://t.co/kDHsggdOAF +03/15/2018,Sports_celeb,@nickdiaz209,Good times out here knudsenjitsu thanks to everyone for coming had a great time🙏🏼 https://t.co/rgGddv7BoZ +03/10/2018,Sports_celeb,@nickdiaz209,#Ifc #steveheath #vs #chuckliddell #fresno #tablemountaincasino @cesargraciebjj @NickDiazAcademy https://t.co/q0IViEpnA5 +03/10/2018,Sports_celeb,@nickdiaz209,#Ifc #warriorschallenge #paulsmith #bumfuckmountain #chagefighting #mma https://t.co/eYWdS2idpW +03/10/2018,Sports_celeb,@nickdiaz209,@akafights https://t.co/A3w5xIPLiT +03/09/2018,Sports_celeb,@nickdiaz209,#steveheath 🙏🏼💪🏽✊🏽 #Mma #Ifc #Ufc #shooto #pancrase #japan #jiujitsu #cesargraciejiujitsu… https://t.co/JOMuVJvrYc +03/05/2018,Sports_celeb,@nickdiaz209,Come have a training day #jiujitsu @akafights https://t.co/W41lbYrgce +02/24/2018,Sports_celeb,@nickdiaz209,#209 @NickDiazAcademy #diaz https://t.co/R5QyDDREts +02/23/2018,Sports_celeb,@nickdiaz209,@Belluhhh teaching me how to watch out for the hot ones 🔥👊🏽 #throwwwback #dallas themodernmodel https://t.co/VR1jGo1lMt +02/20/2018,Sports_celeb,@nickdiaz209,@Hemp2oOfficial @nickdiaz209 @hemp2o @NickDiazAcademy https://t.co/AzwcGRFI9V +02/14/2018,Sports_celeb,@nickdiaz209,@Ufc @spartan_sano 💪🏽👊🏽 https://t.co/jEVLrZwwyD +02/14/2018,Sports_celeb,@nickdiaz209,#👊🏽 #someart https://t.co/jHLl5FjI5R +02/14/2018,Sports_celeb,@nickdiaz209,@ghostfacekillah cosmopolitan_lv 💪🏽✊🏽 https://t.co/jc8CdJGaJu +02/07/2018,Sports_celeb,@nickdiaz209,Please try my drink great for cutting weight @hemp2o @Drink_Hemp2o #mma #hydration #hemp2zero… https://t.co/hSPOdoV8bP +02/01/2018,Sports_celeb,@nickdiaz209,@xaviervigney & @spartan_sano #Hitters 💯 https://t.co/DSPRIRw6m3 +12/21/2017,Sports_celeb,@nickdiaz209,😓🤛🏽🤕 #mood https://t.co/9fMXsfELey +11/08/2017,Sports_celeb,@nickdiaz209,@aboveandbeyond @mgmgrand https://t.co/xsMy1WeMrG +11/02/2017,Sports_celeb,@nickdiaz209,#throwback cesargraciebjj @NickDiazAcademy @santarosamma https://t.co/tsmmjwnPG1 +11/01/2017,Sports_celeb,@nickdiaz209,#Halloween #flicks #man #what @OmniaLasVegas https://t.co/OS4mBM7bXs +11/01/2017,Sports_celeb,@nickdiaz209,#nickdiazacademy #stockton #ca #ceasargracie https://t.co/EDnTWxFMvV +10/31/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @spartan_sano jerryb300 #nickdiazacademy https://t.co/0nu9gWZass +10/21/2017,Sports_celeb,@nickdiaz209,#photocredit : @firethecanon hooterscasinolv with all The Hooters 🦉😎 @ Hooters Casino Hotel https://t.co/nMElqskCmj +10/09/2017,Sports_celeb,@nickdiaz209,cjduffs #vegas @ Las Vegas Strip https://t.co/KBIDb5QSJh +10/09/2017,Sports_celeb,@nickdiaz209,angelinagervasi @NickDiazAcademy #yoga #nickdiazacademy https://t.co/oOJiCY5dHu +10/06/2017,Sports_celeb,@nickdiaz209,@spartan_sano check out yo boy 💯 https://t.co/rMs9rMymbd +09/27/2017,Sports_celeb,@nickdiaz209,"This is how we deal with #madmat aka mightymatt when he wants turn in to mad mat +#easywork… https://t.co/dY0kKWNyzA" +09/21/2017,Sports_celeb,@nickdiaz209,Happy birthday to yo boy @thevipliaison #choke @natediaz209 #vegas https://t.co/dXfNDqJqpV +09/20/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @rcsspence @hemp2o @Drink_Hemp2o https://t.co/2SrOSsWiRx +09/19/2017,Sports_celeb,@nickdiaz209,@DjShiftLV @djturbulence @natediaz209 https://t.co/HQUegU6TJJ +09/16/2017,Sports_celeb,@nickdiaz209,#mood cesargraciebjj 🤖😠👊🏽😡 https://t.co/2gzzUiR6qw +09/15/2017,Sports_celeb,@nickdiaz209,🍒 @ Palms Place Luxury Suite Rentals https://t.co/zWn7ADtGjm +09/11/2017,Sports_celeb,@nickdiaz209,@mgmgrand miketyson @ymedeiros @spartan_sano mightymatt https://t.co/Cl4CfVOZpX +09/10/2017,Sports_celeb,@nickdiaz209,Just posted a photo @ The Venetian Las Vegas https://t.co/hnQcoV20vy +08/30/2017,Sports_celeb,@nickdiaz209,Congrats to @rondarousey one of my best friends ever and her ole man @travisbrownemma #💪🏽 #👊🏽… https://t.co/xAoxpYPasj +08/28/2017,Sports_celeb,@nickdiaz209,#blackandwhitetvdays cesargraciebjj #fml #knowyourworth #knowwhereyoucamefrom https://t.co/iD0p1lzSZf +08/28/2017,Sports_celeb,@nickdiaz209,joerogan's photo https://t.co/oyc2gSJlrd +08/28/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/CN1XbJEG7u https://t.co/vk0eDmvBJr +08/27/2017,Sports_celeb,@nickdiaz209,Congrats to @floydmayweather and #tmt #50and0 best in the biz #respect https://t.co/3RpKrco3KX +08/27/2017,Sports_celeb,@nickdiaz209,@oldgoodstuffnyc #noig 🤔 #oldgoodstuff 🥊🌇 #nycity #ktown https://t.co/pf24viCPvp +08/27/2017,Sports_celeb,@nickdiaz209,#photocredit : @firethecanon thank you for getting me some rooms @nycdoubletree had a great stay… https://t.co/8xFqNzXuRU +08/27/2017,Sports_celeb,@nickdiaz209,@hemp2o @Drink_Hemp2o @NickDiazAcademy #nickdiazacademy #weightcutting #cutweight #lowcarb https://t.co/AnDpBintbN +08/27/2017,Sports_celeb,@nickdiaz209,People ask me I just say I know it will go more than 3 rounds 👁👊🏽 +08/26/2017,Sports_celeb,@nickdiaz209,@hemp2o @Drink_Hemp2o @NickDiazAcademy #nickdiazacademy #weightcutting #cutweight #lowcarb https://t.co/AnDpBintbN +08/25/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #mma #jiu- Jitsu #boxing https://t.co/PkdV1xAYIH +08/21/2017,Sports_celeb,@nickdiaz209,@nycdoubletree @ 👊🏽 🍜 https://t.co/znQqKkQnTc +08/21/2017,Sports_celeb,@nickdiaz209,@nycdoubletree https://t.co/tWizGUGFIu +08/18/2017,Sports_celeb,@nickdiaz209,@NYCDoubleTree #nyc https://t.co/HlyCqbJP1B +08/02/2017,Sports_celeb,@nickdiaz209,@wynnlasvegas https://t.co/chSqFEYEBp +08/02/2017,Sports_celeb,@nickdiaz209,@AJMMASignatures @NickDiazAcademy @ Wall Street https://t.co/ae4A5x0lLQ +07/30/2017,Sports_celeb,@nickdiaz209,@korn #korn https://t.co/Bck77uXkks +07/20/2017,Sports_celeb,@nickdiaz209,@marketeson @OmniaLasVegas #vegas #vegasnightlife #vegasdj https://t.co/SgUZvMxmYF +07/20/2017,Sports_celeb,@nickdiaz209,@chrisavila209 @NickDiazAcademy #nickdiazacademy https://t.co/vrFiM6xI6i +07/18/2017,Sports_celeb,@nickdiaz209,RT @jakeshieldsajj: Charlize Theron shows her talent with martial arts https://t.co/ginwY0SUpK +07/17/2017,Sports_celeb,@nickdiaz209,@rivolis https://t.co/k2JpKJSu8Z +07/05/2017,Sports_celeb,@nickdiaz209,@flavrx #canabis #cbd #mma #fitness #enrgy #recovery #livestrong #livefree #diehard https://t.co/ov1aMZwutg +06/28/2017,Sports_celeb,@nickdiaz209,@spartan_sano @CocoGrazi1 @OmniaLasVegas @nervomusic @DjShiftLV https://t.co/aMfoQfuHvP +06/28/2017,Sports_celeb,@nickdiaz209,Wadup New Jersey...I'm coming to watch UFC fight #213 and have some great food with Tony at his… https://t.co/Z8bxitlyBa +06/28/2017,Sports_celeb,@nickdiaz209,@hemp2o #hemp20 #hemp https://t.co/nqjWyaKQgx +06/27/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy 🤛🏽👊🏽🤜🏽 https://t.co/wS2eQHfc1w +06/24/2017,Sports_celeb,@nickdiaz209,@frankshamrock https://t.co/0pamVsVR9A +06/09/2017,Sports_celeb,@nickdiaz209,wetrepublic @DjShiftLV https://t.co/eIIRP2HbkF +05/23/2017,Sports_celeb,@nickdiaz209,@penniepainter and @gagegaubert 💯 #dallas 😎#goodmusic #livemusic https://t.co/iOvgfZSdEs +05/23/2017,Sports_celeb,@nickdiaz209,😑🤛🏽👊🏽🤜🏽 #doyouevenlift 💪🏽🏊 https://t.co/VkglnCWg2Z +05/22/2017,Sports_celeb,@nickdiaz209,One of the first pros I put in work with #RJCarson R.I.P https://t.co/kAegNbnoyJ +05/20/2017,Sports_celeb,@nickdiaz209,"🙋🏻‍♂️yoga bitch 😑#photocredit : drosol @ Dallas, Texas https://t.co/nAnmjW8Esz" +05/19/2017,Sports_celeb,@nickdiaz209,"cesargraciebjj @renzograciebjj @santarosamma ncfamma ralphgracie @NickDiazAcademy +Remember… https://t.co/a37HKymXqO" +05/19/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy graciearmy209kids @Stockton_CA @natediaz209 @rcsspence luke_1er @chrisavila209… https://t.co/X4bA4eW42P +05/19/2017,Sports_celeb,@nickdiaz209,Rough day #chriscornell #rip https://t.co/BeWcTjxRlP +05/17/2017,Sports_celeb,@nickdiaz209,One of my hardest working students but I still have to keep him because he taps out allot… https://t.co/yzYAdDjoQX +05/17/2017,Sports_celeb,@nickdiaz209,"If you be know this movie your not hard Bro +#lionhart #bloodsport @jcvd #vandamme #vandamage… https://t.co/SZ3ACp53S1" +05/16/2017,Sports_celeb,@nickdiaz209,@DOPE_Magazine @natediaz209 #dope🔥 #dope https://t.co/Otk165ftoS +05/16/2017,Sports_celeb,@nickdiaz209,bhadbhabie #catchmeoutsidehowboutdat https://t.co/3T9pMNcm1C +05/16/2017,Sports_celeb,@nickdiaz209,tanman2222 c_thomas_21 #209 merced_speedway @NickDiazAcademy #🏁 https://t.co/mi21qMmUsK +05/16/2017,Sports_celeb,@nickdiaz209,Wow thanks for your support #pro #cannabis #negativity #motivation #turmoil #pitofdespair #drama… https://t.co/YR0cmHlCiJ +05/16/2017,Sports_celeb,@nickdiaz209,UFC Fighter's DRUGS Ban for WEED: Nate Diaz Marijuana https://t.co/UTV2YxKbPS +05/16/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy @Stockton_CA @visitlodi @natediaz209 @rcsspence graciearmy209kids #jiujitsu… https://t.co/MJjy0NaPf6 +05/16/2017,Sports_celeb,@nickdiaz209,#NinamomNate ninameg209 @natediaz209 😘 https://t.co/waLWrQALNt +05/16/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/dhGn6BBrau +05/16/2017,Sports_celeb,@nickdiaz209,@flavrx 👊🏽🙏🏼 #canabis #💪🏽 @ Opening Bell Coffee https://t.co/dgb5Kz5M4T +05/16/2017,Sports_celeb,@nickdiaz209,Beto's restaurant 💯 +05/16/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/dV53mwYLRn https://t.co/oT23FjKMkF +05/15/2017,Sports_celeb,@nickdiaz209,#fortworthwatergardens #fortworth @ Fort Worth Water Gardens https://t.co/xUE0NWtS6p +05/15/2017,Sports_celeb,@nickdiaz209,"I like old coke better than new cuz it's old and so am I 🤔 +#coke #cokehead #cokewhore #cocaine… https://t.co/SmPQOwljvr" +05/15/2017,Sports_celeb,@nickdiaz209,"@lucaspinheirojj 🙏🏼👊🏽 @ Reservoir-Bar, Patio & Kitchen https://t.co/BamBOHtNt8" +05/15/2017,Sports_celeb,@nickdiaz209,Yeah bitches 🙋🏻‍♂️👊🏽@jakesheldas #gang https://t.co/YxVUJsnUvx +05/14/2017,Sports_celeb,@nickdiaz209,#happymothersday 🌹 https://t.co/VmkfKgwADY +05/14/2017,Sports_celeb,@nickdiaz209,At @ufc you lose money because of your lack of understanding for the sport and by the way thanks for the tickets to the fight bitch! +05/13/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/NWkw2ihVOS +05/10/2017,Sports_celeb,@nickdiaz209,tanman2222 @NickDiazAcademy merced_speedway https://t.co/KzZCyqRi5c +05/10/2017,Sports_celeb,@nickdiaz209,Rip big Homi @bigblack https://t.co/L1T0lKHskq +05/10/2017,Sports_celeb,@nickdiaz209,@wizkhalifa welcome to White belt 💯 https://t.co/mW4QXLcOkg +05/10/2017,Sports_celeb,@nickdiaz209,Lilianna Wilde - Grind Me Down https://t.co/kzaZRon29Y +05/09/2017,Sports_celeb,@nickdiaz209,#hardbro @jcchavezjr1 @natediaz209 @mgmgrand https://t.co/SvAtYGC6XH +05/09/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/dV53mxgmIV https://t.co/Rc7Xzadm7M +05/04/2017,Sports_celeb,@nickdiaz209,randyspence1's photo https://t.co/AkhZqY6alh +05/03/2017,Sports_celeb,@nickdiaz209,@cher 💯💯💯💯😍 @streetleague lasvegas #vegas #sls @ SLS Las Vegas Hotel & Casino https://t.co/I1TYuz5IvB +05/03/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #nda209 @torque1net #dbsh #gang #gang 👊🏽 https://t.co/aUhr7Dmsxd +05/03/2017,Sports_celeb,@nickdiaz209,@iamwill @VignetteLounge #blackeyedpeas #💯 https://t.co/qsHpKDJe23 +05/01/2017,Sports_celeb,@nickdiaz209,RT @rcsspence: Vato loco shirt from Tijuana. https://t.co/X5gVi5dZHu +04/30/2017,Sports_celeb,@nickdiaz209,@teamblackmma congrats to mattbakerusa #🤛🏽 #👊🏽 #🤜🏽 https://t.co/yzFfU5muiY +04/29/2017,Sports_celeb,@nickdiaz209,@Bourdain on Sunday https://t.co/4aVFOEIO1m +04/28/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #stockton #209 @representltd https://t.co/F4DKQpcUP4 +04/26/2017,Sports_celeb,@nickdiaz209,oneacegroup tocamaderala https://t.co/IWfsmdamwM +04/24/2017,Sports_celeb,@nickdiaz209,RT @Spartan_Sano: I liked a @YouTube video https://t.co/dW4LePsQ5S MMA Star Martin Sano Calls Out Dillon Danis Close Friend Of Conor McGreg… +04/24/2017,Sports_celeb,@nickdiaz209,RT @artvega76: @ScottCoker please match up @Spartan_Sano vs. @dillondanis so I can watch Martin Sano Knockout Dillon Danis!!!! +04/22/2017,Sports_celeb,@nickdiaz209,@spartan_sano @Drake @hwood_roosevelt https://t.co/rwUBnOcQGi +04/22/2017,Sports_celeb,@nickdiaz209,brendandowie @jaimeramirez kingofrum https://t.co/wlgoPFWMt6 +04/22/2017,Sports_celeb,@nickdiaz209,c_thomas_21 tanman2222 @NickDiazAcademy merced_speedway #🏁 https://t.co/D1g3XOzdxD +04/22/2017,Sports_celeb,@nickdiaz209,#😡 #🤛🏽👊🏽🤜🏽 https://t.co/sr0Y0f4YMX +04/21/2017,Sports_celeb,@nickdiaz209,#aboveandbeyond 🤧🤛🏽🙄🤙🏽💏 https://t.co/4zOv1nWx81 +04/19/2017,Sports_celeb,@nickdiaz209,My boy mattbakerusa @teamblackmma @NickDiazAcademy #kickboxing #mtc3 #🤛🏽👊🏽🤜🏽 https://t.co/WT287Ohf27 +04/19/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/3DoYLKhS3v https://t.co/HKQz7vZ5m6 +04/17/2017,Sports_celeb,@nickdiaz209,Hope everyone had a happy Easter #🐇 @ Coachella Valley https://t.co/pSW9t2lZ1N +04/16/2017,Sports_celeb,@nickdiaz209,Happy birthday @natediaz209 🤛🏽👊🏽🤜🏽 https://t.co/Xy1CM6l4Q9 +04/14/2017,Sports_celeb,@nickdiaz209,hairbyjessicaybarra's photo https://t.co/50UYz52pN8 +04/14/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy #nickdiazacademy https://t.co/y8CWmsV8fw +04/14/2017,Sports_celeb,@nickdiaz209,Nick Diaz Highlights https://t.co/ajP15VhbmV +04/14/2017,Sports_celeb,@nickdiaz209,@natediaz209 #pat #itspat #noig @drzdah #ericdah #sd #life https://t.co/xsNQlkRFWk +04/13/2017,Sports_celeb,@nickdiaz209,buckleupforchi #oneloveforchi #deftones #chicheng https://t.co/4gc1fPh9fx +04/13/2017,Sports_celeb,@nickdiaz209,@lindsay_phenix I was looking for you 👀 +04/12/2017,Sports_celeb,@nickdiaz209,#NextWeekend #420Life #FlavRX #WeedMaps #hightimescannabiscup #hightimes https://t.co/4ZZ8gZQoz9 +04/11/2017,Sports_celeb,@nickdiaz209,Get $25 off your 1st @HotelTonight room with: NIDIAZ9 (min $135 USD before taxes&fees) https://t.co/GxFwvsw8B9 https://t.co/MmyDgfGwtJ +04/09/2017,Sports_celeb,@nickdiaz209,@parqsd @mattgerold brendandowie #sd https://t.co/eDvQiwSNP7 +04/09/2017,Sports_celeb,@nickdiaz209,@natediaz209 #pat #itspat #noig @drzdah #ericdah #sd https://t.co/BpQ7vPu3l6 +04/07/2017,Sports_celeb,@nickdiaz209,c_thomas_21 #209car #209 #nickdiazcar #racing🏁 #racing merced_speedway 💯 https://t.co/835aOKqisj +04/06/2017,Sports_celeb,@nickdiaz209,#cantkillmewhenimalreadydead #nickdiaz #deadthough #🖐🏼#💪🏽 #thatdeadnessthough 🍜🌮🍤👁🚬✊🏼😟😖😣😞☹️🙃 https://t.co/W1DjN85zs8 +04/05/2017,Sports_celeb,@nickdiaz209,#giraffe #mickegrovezoo #lodi @mickegrovezoo @ Micke Grove Zoo https://t.co/oTR2R7Kwfr +04/05/2017,Sports_celeb,@nickdiaz209,Congrats to califitxo Took first place in her bikini competition #1st #💪🏽#lodi @ Ollie's Pub https://t.co/SEAD7icwK3 +04/05/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy graciearmy209kids #nickdiazacademy #stockton @Stockton_Cali @Stockton_CA https://t.co/jyuoL1omET +04/05/2017,Sports_celeb,@nickdiaz209,@flavrx #420 #FlavRX #CBD #THC 💯#😎 https://t.co/5PI84N1FF4 +04/02/2017,Sports_celeb,@nickdiaz209,@NickDiazAcademy tanman2222 #209car #209 #nickdiazacademy https://t.co/Ye4Jtr8r4E +04/02/2017,Sports_celeb,@nickdiaz209,Don't get #caughtslippin 👊🏽 https://t.co/ZsJ8mDvAsk +03/30/2017,Sports_celeb,@nickdiaz209,@realroyce brendandowie @natediaz209 #vegas #ufc https://t.co/jcwL4ep3aI +03/30/2017,Sports_celeb,@nickdiaz209,@hemp2o @spartan_sano @SamuraiJuice716 #sf https://t.co/dKlIEguGEv +03/30/2017,Sports_celeb,@nickdiaz209,Nick Diaz Beats Jean Pascal Says Trainer Who Was There When Diaz Won Pro... https://t.co/RiRlqAcIoF +03/29/2017,Sports_celeb,@nickdiaz209,#onsomeweed in this pic 😎 https://t.co/Qdl71k0t0Y +03/29/2017,Sports_celeb,@nickdiaz209,"Win 2 Tickets to #Hightimes Cannabis Cup April 21st-23rd in San Bernardino, CA! Meet us at the… https://t.co/IO9aLW23ID" +03/28/2017,Sports_celeb,@nickdiaz209,GSP 0.9 LB ALLOWANCE IN TITLE FIGHT AGAINST NICK DIAZ https://t.co/ZLFWT7T2MI +03/28/2017,Sports_celeb,@nickdiaz209,Nick Diaz tapes Canadian AC give GSP extra pound allowance https://t.co/3aNxKWduU6 +03/27/2017,Sports_celeb,@nickdiaz209,https://t.co/83IcxBS4R9 +03/26/2017,Sports_celeb,@nickdiaz209,Aha just me and my boy snoopdogg you feel me #snoopdogg #ggn https://t.co/iiYvnXgqTx +03/26/2017,Sports_celeb,@nickdiaz209,Me and my boy Skip #lodi #stuckinlodi @drdabber https://t.co/KEqA9bZNWT +03/26/2017,Sports_celeb,@nickdiaz209,michaeldavidwinery @deltavelo iamspecialized_tri @tbfmultisport @rokasports @damianxp… https://t.co/es8lmMFU4T +03/26/2017,Sports_celeb,@nickdiaz209,cosmopolitan_lv #photocredit robweiss https://t.co/6QhNUsHrK5 +03/26/2017,Sports_celeb,@nickdiaz209,@rokasports @tbfmultisport iamspecialized_tri @deltavelo michaeldavidwinery #triathlon #xterra https://t.co/JPeoHxJ5m0 +03/25/2017,Sports_celeb,@nickdiaz209,farrenjanel's photo https://t.co/Mx8ocYvcUr +03/25/2017,Sports_celeb,@nickdiaz209,Just posted a photo https://t.co/pBOI2wD4tO +03/25/2017,Sports_celeb,@nickdiaz209,@torque1net @tbfmultisport michaeldavidwinery @spartan_sano riokid krongracie #xterrareal… https://t.co/bX96NyHDNq +03/25/2017,Sports_celeb,@nickdiaz209,iamspecialized_tri iamspecialized @ TBF Racing https://t.co/d90LZ8T5u4 +03/25/2017,Sports_celeb,@nickdiaz209,#xterrareal today @tbfmultisport michaeldavidwinery @deltavelo @mdwsports @NickDiazAcademy… https://t.co/NdYwO2kuBU +03/24/2017,Sports_celeb,@nickdiaz209,robweiss frankcesena cosmopolitan_lv #ballers #😎 https://t.co/KPiXeNhpR5 +03/22/2017,Sports_celeb,@nickdiaz209,"#plpcc #plpatientconsumercoop +#sandiego #sweetlifeoftheknopfs #surfrootsradio #wmsurfing… https://t.co/WiZOi36x61" +03/18/2017,Sports_celeb,@nickdiaz209,#runningback https://t.co/LJX6m7w92k +03/17/2017,Sports_celeb,@nickdiaz209,W Tommy @spartan_sano cosmopolitan_lv #Nascar #Renegade @xslasvegas @ The Cosmopolitan of Las Vegas https://t.co/LrAdYhjLMr +03/16/2017,Sports_celeb,@nickdiaz209,#someart https://t.co/KjFg2bvaUw +03/11/2017,Sports_celeb,@nickdiaz209,@SamuraiJuice716 @spartan_sano @torque1net anchorsocial https://t.co/a2uuaaiWUf +03/11/2017,Sports_celeb,@nickdiaz209,@natediaz209 #youseeit @Gfighterlodi @hydebellagio https://t.co/itWYbWy7wL +03/11/2017,Sports_celeb,@nickdiaz209,#nickdiazacademy @Gfighterlodi graciearmy209kids #stockton @Stockton_CA https://t.co/MFI6hPSHjV +03/06/2017,Sports_celeb,@nickdiaz209,alexgrey 💯🙏🏼✊🏼👊🏽 https://t.co/NduOCLvPiH +07/02/2018,Sports_celeb,@DaleJr,When I got home @ 9pm Isla was asleep. Been waiting for 4 days to hold her. So I waited and listened to her laugh t… https://t.co/Ml2ucHuSOi +07/01/2018,Sports_celeb,@DaleJr,Post broadcast broadcast https://t.co/mKwed7k5w5 +07/01/2018,Sports_celeb,@DaleJr,It is so hot here @ChicagolndSpdwy that the ACs can’t even keep up. Was 85ish in there yesterday. Still way better… https://t.co/aGOGpU08HA +07/01/2018,Sports_celeb,@DaleJr,@BubbaWallace 😂 +07/01/2018,Sports_celeb,@DaleJr,"@BrannenBroome @NASCARonNBC Obviously you watch the 78,4,18 “big 3” +But outside of that I’m gonna stick with 22, 9 to run well today also." +07/01/2018,Sports_celeb,@DaleJr,"@CampbellLeslie3 @JRMotorsports I don’t sponsor anyone. Can’t afford that. 😀 +The late model team is a 2 car operati… https://t.co/nn3j62nwhr" +07/01/2018,Sports_celeb,@DaleJr,Going to join some friends and broadcast my first race with @NASCARonNBC today. I have been a driver for 20 years b… https://t.co/9RyaMJcdh9 +07/01/2018,Sports_celeb,@DaleJr,Jagger Jones drove for @JRMotorsports late model team last night and got the W. https://t.co/BDT4bhBxcs +07/01/2018,Sports_celeb,@DaleJr,Haha this was fun to do. https://t.co/EeyIqiNjKp +06/30/2018,Sports_celeb,@DaleJr,RT @scottblodgett15: @WingedNation dont see this every day @bestdirttrack https://t.co/SbVYdsvdBQ +06/30/2018,Sports_celeb,@DaleJr,First T-shirt also. Let’s hope that becomes a trend. 😀👍🏼 https://t.co/BqFjA5iIYr +06/30/2018,Sports_celeb,@DaleJr,RT @Wrangler: #DaleYeah he's ready for race day. Here's how @DaleJr has been perfecting his commentary craft before his @NASCARonNBC announ… +06/30/2018,Sports_celeb,@DaleJr,@VannoyLaura @NASCAR @ChicagolndSpdwy I ushered in some casual +06/30/2018,Sports_celeb,@DaleJr,@NASCARonNBC @AllWaltrip @LarryMac28 @RickAllenracing @NBCSN https://t.co/8vpjLcjVY0 +06/30/2018,Sports_celeb,@DaleJr,@TylerReddick @J_Allgaier The sensor is low in the car +06/30/2018,Sports_celeb,@DaleJr,Total laps averaged for @XfinityRacing final practice. Series regular @ColeCuster_ looks impressive to have ran as… https://t.co/oLD9HbZFTB +06/30/2018,Sports_celeb,@DaleJr,"Drum Raceway, Allentown, NY. Shut down in 1980 after someone broke into the track and injured themselves running la… https://t.co/06g4Etmzgt" +06/30/2018,Sports_celeb,@DaleJr,"RT @DirtyMoMedia: The single greatest ad read of all-time? +Yeah, this is how you read an ad #DirtyMo style 🤣 +@ZipRecruiter #DJD https://t.…" +06/29/2018,Sports_celeb,@DaleJr,New job update. https://t.co/RrLKGBa7lM +06/29/2018,Sports_celeb,@DaleJr,"Tough race for Shirley. But, there can only be one winner. https://t.co/sRmqUZwjIY" +06/28/2018,Sports_celeb,@DaleJr,Tune in @NBCSN now 👍🏼 https://t.co/ATRv18NgKs +06/28/2018,Sports_celeb,@DaleJr,#Fred @Wrangler https://t.co/ZfJD4p9u1l +06/28/2018,Sports_celeb,@DaleJr,"RT @Wrangler: Finding any opportunity to practice for his @NASCARonNBC announcing debut, @DaleJr delivers colorful commentary while his nei…" +06/28/2018,Sports_celeb,@DaleJr,@kylepetty @NASCARonNBC Thanks bud! https://t.co/L7SbB6dyZx +06/28/2018,Sports_celeb,@DaleJr,RT @EarnhardtKelley: Everyone keeps asking if my workload is lighter now since @dalejr has retired from the race car. Read this! The answer… +06/28/2018,Sports_celeb,@DaleJr,@ShawnPhillips24 @Blaney eBay +06/28/2018,Sports_celeb,@DaleJr,"RT @nateryan: ICYMI ... Besides joining the @NASCARonNBC booth, what else is happening with @DaleJr in his post-#nascar driving life? + +A l…" +06/27/2018,Sports_celeb,@DaleJr,Awesome throwback T-shirt on deck for @FallonTonight #Eeaaaarrrnhardt +06/27/2018,Sports_celeb,@DaleJr,"RT @dennyhamlin: Thanks to @DirtyMoMedia , @MikeDavis88 and @DaleJr for having me on this weeks podcast. Had a good time talking about top…" +06/27/2018,Sports_celeb,@DaleJr,@budweiserusa Waaaaaaazzzzzzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhh😝😝😝 +06/27/2018,Sports_celeb,@DaleJr,@NASCARonReddit Looks legit +06/27/2018,Sports_celeb,@DaleJr,@budweiserusa Hello??📱 +06/27/2018,Sports_celeb,@DaleJr,Follow @DirtyMoMedia to see what all we are doing in NYC today. https://t.co/xLUxEqf30U +06/27/2018,Sports_celeb,@DaleJr,RT @Jrod323488: I can't say enough how much the @DaleJr download has changed my perspective of several drivers I used to watch the races on… +06/27/2018,Sports_celeb,@DaleJr,RT @budweiserusa: @BurgerKing aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa… +06/27/2018,Sports_celeb,@DaleJr,@RickAllenracing @NASCARonNBC https://t.co/mUJkIXlOqT +06/27/2018,Sports_celeb,@DaleJr,Air drummer looking for an air guitarist 👋🏼 @RickAllenracing https://t.co/PuMOMYjt5B +06/27/2018,Sports_celeb,@DaleJr,@CopaCavanna @MikeDavis88 😂 +06/27/2018,Sports_celeb,@DaleJr,@GeoffWSYX6 @MikeDavis88 eBay! +06/27/2018,Sports_celeb,@DaleJr,Hopped in a car service to NYC from the airport. The driver has on collision detection. So the car vibrates when an… https://t.co/onPexgagqT +06/27/2018,Sports_celeb,@DaleJr,"🤦🏼‍♂️ We are either: +A: never getting another sponsor again. +B: going to have more official sponsors than Nascar https://t.co/RhHL0Lopuj" +06/27/2018,Sports_celeb,@DaleJr,@AnnetteMZ Sadly. +06/27/2018,Sports_celeb,@DaleJr,@bobbloxsom Gotta spread the word that Nascar is coming to NBC! 😀 +06/27/2018,Sports_celeb,@DaleJr,@hollykbegley @DirtyMoMedia @dennyhamlin @MatthewDillner @NBCSN @MikeDavis88 We do sponsor ads right at DMR 😂 +06/27/2018,Sports_celeb,@DaleJr,RT @dpshow: Join us WED with NYC in studio guests @DaleJr and Michael Douglas. We’ll also speak with Michael Porter Jr @nuggets @NASCAR @An… +06/27/2018,Sports_celeb,@DaleJr,"RT @FallonTonight: On our next show: @icecube & @DaleJr! Plus, @intanetz performs! #FallonTonight" +06/27/2018,Sports_celeb,@DaleJr,"Headed to NYC this morning to promote @NASCARonNBC. + +Look for me on @TODAYshow, @dpshow, @FallonTonight, @BravoWWHL… https://t.co/DWXMZ3FNi8" +06/27/2018,Sports_celeb,@DaleJr,New podcast is up!! https://t.co/m5G9bOmlsR +06/26/2018,Sports_celeb,@DaleJr,"RT @zwriter: #NASCAR 's Most Popular Driver, @DaleJr will be very busy tomorrow: in New York for @NBC 's Media Day. @jimmyfallon @megynke…" +06/26/2018,Sports_celeb,@DaleJr,@Kenny_Wallace I need to borrow the Balough book. Thanks +06/26/2018,Sports_celeb,@DaleJr,@kimmiecoon @HashtagSports Holy crap! #HTTR +06/26/2018,Sports_celeb,@DaleJr,@DaveFultonWrang @carfifteen Motor is a v6 +06/26/2018,Sports_celeb,@DaleJr,https://t.co/7K9qBpNFyE +06/26/2018,Sports_celeb,@DaleJr,This weeks “Dale Jr Download” podcast is in the books. @dennyhamlin was our excellent guest. We covered a lot of gr… https://t.co/4cr4ooVFJ2 +06/26/2018,Sports_celeb,@DaleJr,@VinceKMcNugget I lived with it. That was enough for me. +06/26/2018,Sports_celeb,@DaleJr,Daytona. July. 1981. Pissed after a wreck on the front stretch. He’s sitting behind pitwall as the crew repair the… https://t.co/grShasH6tY +06/26/2018,Sports_celeb,@DaleJr,@iamjamieq @wcnc Maybe it’s the pickle juice brine?? 🤷🏼‍♂️ +06/26/2018,Sports_celeb,@DaleJr,.@NASCARonNBC asked me to create a playlist of some of my favorite jams. It’s a little bit of the old mixed with th… https://t.co/FgFKWhkM7t +06/26/2018,Sports_celeb,@DaleJr,RT @dangeroussummer: Thanks to @DaleJr and @NASCARonNBC for adding so many of our songs to the “Gameday: NASCAR Weekend Playlist” on @Spoti… +06/25/2018,Sports_celeb,@DaleJr,Steve shares his side of our experiences together and what an enjoyable trip down memory lane it is. 👍🏼 https://t.co/dE1a9Y2jgW +06/25/2018,Sports_celeb,@DaleJr,"RT @NASCARonNBC: #NASCAR: @steveletarte reveals ""biggest meltdown"" with @DaleJr & what happened next in this excerpt of Steve's new book: h…" +06/25/2018,Sports_celeb,@DaleJr,@nascarman_rr @ESPNMcGee +06/25/2018,Sports_celeb,@DaleJr,@TessQuinlan @Spotify Someone added 20 or so songs to it after I sent in my initial 40 songs. +06/25/2018,Sports_celeb,@DaleJr,Here’s some crappy footage of the end result. I did the same thing one season with @SteveLetarte after taking an ex… https://t.co/fVmMQACWtI +06/25/2018,Sports_celeb,@DaleJr,"1980 Virginia 500. On the initial start, Sr pulls low before the S/F line. Can you guess what happens next? https://t.co/ZjiD87SxWp" +06/25/2018,Sports_celeb,@DaleJr,@SteveLetarte https://t.co/54cKCD6JS3 +06/25/2018,Sports_celeb,@DaleJr,@TheCincyBuckeye @A_S12 @NBCSports @NASCARonNBC @NBCSportsPR @leighdiffey @RaceSonoma @SteveLetarte @MikeDavis88 @DirtyMoMedia @pepsi 😂 +06/25/2018,Sports_celeb,@DaleJr,@Ky1eLong Heck ya. Thanks dude +06/25/2018,Sports_celeb,@DaleJr,@FreeThrowEmo Hope to catch a show one day. Till then. 🤘🏼 +06/25/2018,Sports_celeb,@DaleJr,@AustinPetty45 Enjoyed seeing the piece on Adam. Good job @MattYocum @AustinPetty45 +06/24/2018,Sports_celeb,@DaleJr,How fast is @colepearn tapping his foot right now on that pit box?? https://t.co/OsRs0lUqhf +06/24/2018,Sports_celeb,@DaleJr,"When a racer loses his life, the world of motorsports across all disciplines takes notice and pays its respects. My… https://t.co/I4KARE5eUw" +06/24/2018,Sports_celeb,@DaleJr,Missed our Key West renovation show? I see it’s available on iTunes. https://t.co/yXHeSevS0t https://t.co/35LlXCOt79 +06/24/2018,Sports_celeb,@DaleJr,@RodneyChilders4 Building some incredible hotrods Rodney +06/24/2018,Sports_celeb,@DaleJr,@PRNlive @WendyVenturini @WendyVenturini rest up and get well! +06/24/2018,Sports_celeb,@DaleJr,@jim_utter Sorry for your loss Jim. Hope to see you soon. +06/23/2018,Sports_celeb,@DaleJr,The final episode of our renovation show is tonight at 9pm! Watch all 4 episodes starting at 7:30pm. Tune in to… https://t.co/heFHURpGsa +06/23/2018,Sports_celeb,@DaleJr,@ClaireBLang @MikeDavis88 I been tellin him this 🙄😀 +06/22/2018,Sports_celeb,@DaleJr,@iRacingMyers @iRacing Lotta stuff goes on behind the scenes with these real world racers like @scottspeed to make the simulation better. +06/21/2018,Sports_celeb,@DaleJr,@racrboi90 @NASCAR_Xfinity @DaleEarnhardSr I do. Relief drove for Buddy Baker who was hurt +06/21/2018,Sports_celeb,@DaleJr,@nateryan Let’s go @hornets fans! https://t.co/S9pjwrkZlo +06/21/2018,Sports_celeb,@DaleJr,I couldn’t remember because it hadn’t come in the mail yet. It came today and it’s unique. I will bring it to the s… https://t.co/FL5zpoNBKK +06/21/2018,Sports_celeb,@DaleJr,Hope everyone enjoyed the premiere of “The Dale Jr Download” podcast on @NBCSN today. I can’t believe they let us h… https://t.co/6UpzW5YSwO +06/21/2018,Sports_celeb,@DaleJr,RT @NASCARonNBC: Did you like the @DaleJr Download TV premiere? #DJD +06/21/2018,Sports_celeb,@DaleJr,@MatthewDillner @DirtyMoMedia @MikeDavis88 You really don’t want me to do that. #gotitpaused +06/21/2018,Sports_celeb,@DaleJr,"“The Dale Jr Download” is coming on @NBCSN in 10 minutes! Even if you’re currently not watching your TV, maybe just… https://t.co/0PTR9vEwVI" +06/21/2018,Sports_celeb,@DaleJr,RT @AmyEarnhardt: Would love to know y’alls favorite elements of the house so far! Episode 4 has a few that I am excited for everyone to se… +06/21/2018,Sports_celeb,@DaleJr,@markmartin Haha @markmartin +06/21/2018,Sports_celeb,@DaleJr,@RhondaFultz88 @MikeDavis88 @MatthewDillner @DirtyMoMedia When I was racing I was grumpy and didn’t wanna do nothin. 😆 +06/21/2018,Sports_celeb,@DaleJr,It’s your mother. Her experience gets her the nod. https://t.co/RURNwhuAmS +06/21/2018,Sports_celeb,@DaleJr,@Carey88K @MikeDavis88 @MatthewDillner @DirtyMoMedia I saw it advertised on Instagram and swiped up to purchase +06/21/2018,Sports_celeb,@DaleJr,Posted this on other social accounts so forgive the repetitiveness. But this is something myself @MikeDavis88… https://t.co/3OxcOB1mmk +06/21/2018,Sports_celeb,@DaleJr,@dcufan @NASCARonNBC @NBCSN Well 💩 +06/21/2018,Sports_celeb,@DaleJr,"RT @odsteve: Behind the scenes was all about doing it right for 2019, no mention of anything fizzling. Complete opposite. A reminder that…" +06/21/2018,Sports_celeb,@DaleJr,RT @dustinlong: NEWS: #NASCAR will NOT run All-Star aero package again this season in Cup. https://t.co/78BSyW4DJ5 +06/21/2018,Sports_celeb,@DaleJr,@jeff_gluck Bad time to ask you your thoughts on the two day/enhanced schedule in Chicago? +06/21/2018,Sports_celeb,@DaleJr,I thought I heard Norm Macdonald’s voice in my living room but it was Christian Slater on @TODAYshow. +06/21/2018,Sports_celeb,@DaleJr,@lindsleeees @AmyEarnhardt 😊 +06/21/2018,Sports_celeb,@DaleJr,@keselowski @fbme4 Even made a shirt to commemorate it. https://t.co/AFnl8YLDhf +06/21/2018,Sports_celeb,@DaleJr,@dennyhamlin https://t.co/JG2hskfMxB +06/21/2018,Sports_celeb,@DaleJr,That first time you text someone that you got a sitter lined up for dinner this weekend https://t.co/LxtdRYllhL +06/20/2018,Sports_celeb,@DaleJr,@NASCAR @RaceSonoma ☺️😢 +06/20/2018,Sports_celeb,@DaleJr,"RT @DirtyMoMedia: The story behind ""Do-Rag Dale"" is told in great (and scary) detail by @DaleJr on this week's #DJD! + +HOW TO FIND IT: +Websi…" +06/20/2018,Sports_celeb,@DaleJr,@jeff_gluck Is this really the hill you want to die on Jeff? +06/19/2018,Sports_celeb,@DaleJr,New podcast is up for download! 👇🏼👇🏼👇🏼 https://t.co/76BkRNldLQ +06/19/2018,Sports_celeb,@DaleJr,We need a final destination on your luggage. My money is on Albuquerque. https://t.co/tefnUdPTAm +06/19/2018,Sports_celeb,@DaleJr,👀 https://t.co/OY1tRG4bnI +06/19/2018,Sports_celeb,@DaleJr,While teams/manufacturers have multi million dollar simulators that provide much of the same. What they don’t emula… https://t.co/Xl4I6KWJI8 +06/19/2018,Sports_celeb,@DaleJr,This is in my opinion @iRacing greatest value. It provides an ability to learn road course disciplines and techniqu… https://t.co/DY4exIHnGB +06/19/2018,Sports_celeb,@DaleJr,A refresher for drivers headed to @RaceSonoma https://t.co/9x15C7yCIK +06/19/2018,Sports_celeb,@DaleJr,That @chipgaines book is pretty darn good. But it also serves many useful household purposes. Such as: If your litt… https://t.co/hTqguoLvvI +06/19/2018,Sports_celeb,@DaleJr,@MartySmithESPN Everything I do +06/19/2018,Sports_celeb,@DaleJr,@nealhendrix @KenSchrader @BelleClairSpdwy 😂🤷🏼‍♂️ +06/19/2018,Sports_celeb,@DaleJr,@LilRedDave @DocPunchESPN The deerhead shop +06/19/2018,Sports_celeb,@DaleJr,@Kenny_Wallace https://t.co/U1Fz5K49Ze +06/19/2018,Sports_celeb,@DaleJr,This was a stop on a week long trip dirt racing with @KenSchrader. I was 16. @BelleClairSpdwy was insane. Met a ton… https://t.co/WEKBHOSZII +06/19/2018,Sports_celeb,@DaleJr,@KyleLarsonRacin @RyanLitt07 @wcsohio https://t.co/1K0XDSzSXK +06/18/2018,Sports_celeb,@DaleJr,My friend TMack was living his dream of being a crew chief in the Cup series till this week. It’s a shame we will n… https://t.co/Z6PQcEjHs4 +06/18/2018,Sports_celeb,@DaleJr,All of our listeners have been asking for us this. It’s happening. 👍🏼👇🏼 https://t.co/De8dEv7mI1 +06/18/2018,Sports_celeb,@DaleJr,@RMinENC @KerryDEarnhardt Yep +06/18/2018,Sports_celeb,@DaleJr,To race online you had to call Massachusetts. I’d race all night. I shared a double-wide trailer with my brother… https://t.co/tM32hPK1Jo +06/18/2018,Sports_celeb,@DaleJr,RT @JRMotorsports: .@J_Allgaier's win today @iowaspeedway marks the 40th victory for JRM in @XfinityRacing competition. https://t.co/j4s1Qy… +06/17/2018,Sports_celeb,@DaleJr,".@J_Allgaier is a wheelman. Drove every lap @ 10/10ths. +@CBellRacing was a tough customer today. Gave us all we cou… https://t.co/IFI3SeWl7O" +06/17/2018,Sports_celeb,@DaleJr,@coleswindell Absolutely right brother. +06/17/2018,Sports_celeb,@DaleJr,Happy Fathers Day to all the dads in the twitterverse. Feels pretty cool to be part of the club. 😎 +06/16/2018,Sports_celeb,@DaleJr,"New episode tonight! It’s a good one. + +If you missed episodes one and two, check them out beforehand at 8|7c. https://t.co/0ofYqBfEIC" +06/14/2018,Sports_celeb,@DaleJr,https://t.co/66gKHzCSnh +06/14/2018,Sports_celeb,@DaleJr,@Ykp23 @QALORing @spyoptic @Wrangler https://t.co/66gKHzCSnh +06/14/2018,Sports_celeb,@DaleJr,RT @BobbyAllison12: This is Bonnie. I came across this while looking for something else. Thought I would share one of the more littler mome… +06/14/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: We couldn't agree more, @AmyEarnhardt! ❤️💕 + +#DaleAndAmysReno continues Saturday at 9|8c. @DaleJr https://t.co/d29QJROP9u" +06/14/2018,Sports_celeb,@DaleJr,My partners @QALORing @spyoptic and @Wrangler teamed up to create an ultimate Father’s Day Gift Pack for all the da… https://t.co/uA5H5sFxoL +06/12/2018,Sports_celeb,@DaleJr,@John_Andretti That makes more sense. +06/12/2018,Sports_celeb,@DaleJr,@TSSKevin Honestly. Making my own +06/12/2018,Sports_celeb,@DaleJr,@jeff_gluck @NASCAR Feeling some type of way #nostalgia +06/12/2018,Sports_celeb,@DaleJr,@Scottie_B_ @NASCAR Just being nostalgic +06/12/2018,Sports_celeb,@DaleJr,@EmarKnowsBest @NASCAR Just appreciate the man +06/12/2018,Sports_celeb,@DaleJr,.@NASCAR Bill France Jr. told everyone how it was gonna be. He ran the show. “Nascar was here way before you and wi… https://t.co/dPSHsjuJHl +06/12/2018,Sports_celeb,@DaleJr,@BBarker88 @ReganSmith @Wendys French Toast Fries 🍟 +06/12/2018,Sports_celeb,@DaleJr,"@ReganSmith @Wendys Let’s all be chill. +I hate confrontation 😂" +06/12/2018,Sports_celeb,@DaleJr,Every win could be your last. Might wanna raise hell when they occur. https://t.co/iUUCTKlRh5 +06/12/2018,Sports_celeb,@DaleJr,What a ride @ClintBowyer has been on the past decade. Takes character to navigate through all that. +06/12/2018,Sports_celeb,@DaleJr,I got out and told my CC the car was effed up. John ran a few laps and wrecked it. Come to find out the sway bar wa… https://t.co/DDtRKzFDwX +06/12/2018,Sports_celeb,@DaleJr,@Kirt_Achenbach Everyone musta bought a car from DiGard +06/10/2018,Sports_celeb,@DaleJr,"9pm ET @DIYNetwork tonight +Episode 2 of Key West renovation show. #DaleAndAmysReno" +06/10/2018,Sports_celeb,@DaleJr,@KarsynElledge3 @jelledge81 Badass @jelledge81 +06/10/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: We love that @DaleJr & @AmyEarnhardt honor this home's history by giving new purpose to old things. + +#DaleAndAmysReno conti…" +06/09/2018,Sports_celeb,@DaleJr,"RT @LilRedDave: In '71 & '72, Cale Yarborough, in pursuit of an open wheel life, ran the 500 with Ray Fox and sponsor Woolco who would stru…" +06/09/2018,Sports_celeb,@DaleJr,"RT @AmyEarnhardt: Episode 2 of our Key West Renovation Realities airs tonight! 9/8c on @DIYNetwork ! If you missed Epsiode 1, you can catch…" +06/09/2018,Sports_celeb,@DaleJr,The second episode of our Key West renovation show comes on at 9pmET tonight on @DIYNetwork. If you missed the 1st… https://t.co/hzK5ypqU2J +06/09/2018,Sports_celeb,@DaleJr,"RT @DIYNetwork: ICYMI-last week's premiere with @DaleJr & @AmyEarnhardt! + +#DaleAndAmysReno continues tomorrow (Saturday) 9|8c. https://t.co…" +06/09/2018,Sports_celeb,@DaleJr,@poconoraceway @kevin_teel @thewonderyears @NASCAR https://t.co/wn6KM7Fher +06/09/2018,Sports_celeb,@DaleJr,@poconoraceway @kevin_teel @thewonderyears @NASCAR Holy crap +06/08/2018,Sports_celeb,@DaleJr,@MartySmithESPN @BelmontStakes https://t.co/UPbXlmhFKB +06/08/2018,Sports_celeb,@DaleJr,@CLTMotorSpdwy @USLegendCars @Bojangles1977 @EarnhardtKelley @austindillon3 @tydillon @DanielHemric @TeamHendrick… https://t.co/0Ms4mvhse3 +06/08/2018,Sports_celeb,@DaleJr,@AaronClayBurns @SLFMotion So smooth +06/08/2018,Sports_celeb,@DaleJr,First ride with the new Hyper Speed System from @SLFMotion today. #happycustomer #smoothasglass https://t.co/hv4PCLJK3K +06/08/2018,Sports_celeb,@DaleJr,Saddened about #AnthonyBourdain. Depression and mental illness can affect anybody. Someone you know could be strugg… https://t.co/p8PaLumTeT +06/08/2018,Sports_celeb,@DaleJr,"Vandiver, would deliberately spin his car on lap 223, on Darlington's backstretch. This caused a caution, and in a… https://t.co/bhP6T8oUfe" +06/08/2018,Sports_celeb,@DaleJr,"Driver Neil Castles had been in Wallace's office at the time, overheard this conversation, and informed Vandiver be… https://t.co/loXuXgdjVJ" +06/08/2018,Sports_celeb,@DaleJr,Two Greenville County sheriff's deputies arrived at Darlington on race day. In Darlington Raceway president Barney… https://t.co/9ouLeHVjdj +06/08/2018,Sports_celeb,@DaleJr,"The judge at the hearing did not consider this grounds for absence, and found Vandiver in contempt of court. An arrest warrant was issued." +06/08/2018,Sports_celeb,@DaleJr,"From the 1973 Southern 500 Wikipedia + +Jim Vandiver (dealing with a child custody case with his first wife) was to a… https://t.co/6aNEkXDWH3" +06/08/2018,Sports_celeb,@DaleJr,Congrats @Capitals #StanleyCup +06/08/2018,Sports_celeb,@DaleJr,RT @Capitals: THE MOMENT WE'VE ALL BEEN WAITING FOR! WE GOT THE CUP! #ALLCAPS #STANLEYCUP https://t.co/TEur4PnhMD +06/07/2018,Sports_celeb,@DaleJr,@DontreGraves I biked 32 miles this morning... https://t.co/fKD97sbyId +06/07/2018,Sports_celeb,@DaleJr,Working with @ReganSmith was a lot of fun. 👍🏼 https://t.co/a9me2GzNkF +06/07/2018,Sports_celeb,@DaleJr,RT @DontreGraves: This is the most T.O. thing ever https://t.co/XqgmH79yMD +06/07/2018,Sports_celeb,@DaleJr,This is great https://t.co/OnoHGOw5gV +06/07/2018,Sports_celeb,@DaleJr,Thank you @JoSwindell @KevinSwindell. Isla’s gonna be stylin’ https://t.co/5riJwkdQEq +06/07/2018,Sports_celeb,@DaleJr,RT @wcnc: Caught on camera: Baby thrown from burning apartment in SC https://t.co/yMY8pxKS5j https://t.co/WOpjnGfMyd +06/07/2018,Sports_celeb,@DaleJr,"Through the years after my dads death many drivers and industry folk were incredibly supportive, and that certainly… https://t.co/Ymont8ocKD" +06/07/2018,Sports_celeb,@DaleJr,Dad stops to examine the hat after signing it because of the color and logo. The UPS branding was an unfamiliar sig… https://t.co/t8Ts5GnyIH +06/07/2018,Sports_celeb,@DaleJr,Dad is hurriedly signing items handed to him by the group as he talks. DJ worked his way through the group up to da… https://t.co/2K4LX4BpCU +06/07/2018,Sports_celeb,@DaleJr,In 2001 at the Daytona 500 hours before the race DJ was getting ready to do his hospitality for his new sponsor UPS… https://t.co/bS0yv7jSGK +06/07/2018,Sports_celeb,@DaleJr,I see @DaleJarrett at the studio for our show tonight. And he says he has something for me. I wonder what could it… https://t.co/NTIQ0uWgd1 +06/06/2018,Sports_celeb,@DaleJr,Fun to be back. I enjoyed the show and hope you did too. This new job kicks ass. +06/06/2018,Sports_celeb,@DaleJr,"I’m on TV with @RutledgeWood, @DaleJarrett for the #WednesDale edition of #NASCARAmerica. Watch it or record it or… https://t.co/8yKlFJlggl" +06/06/2018,Sports_celeb,@DaleJr,"RT @Kenny_Mayne: We had our 501C-3 deal...now we have a bank account..Next week a website & an announcement.. + +Then we can start appealing…" +06/06/2018,Sports_celeb,@DaleJr,What a find! https://t.co/ncPjFbIbOJ +06/06/2018,Sports_celeb,@DaleJr,One of my best buddies is getting his big acting break! Check out twitterless Brad Burroughs (he’s the one towing t… https://t.co/7SBIGO69ta +06/05/2018,Sports_celeb,@DaleJr,"RT @TheSceneVault: Dale Earnhardt takes six-year-old @DaleJr and eight-year-old @EarnhardtKelley swimming on the lake, and Kelley begins he…" +06/05/2018,Sports_celeb,@DaleJr,@SHOWTIME6676 😂👍🏼👍🏼 +06/05/2018,Sports_celeb,@DaleJr,@BroBible @DontreGraves +06/05/2018,Sports_celeb,@DaleJr,@KyleLarsonRacin @DCSolar https://t.co/lWY59fEX4t +06/05/2018,Sports_celeb,@DaleJr,@ClintBowyer Let’s ride 20 +06/05/2018,Sports_celeb,@DaleJr,@marietk28 My boss was telling me about that. The away game parties at home arenas. That’s a great idea. +06/05/2018,Sports_celeb,@DaleJr,@Gingeronastick A @mnwild game many many years ago thanks to @budweiserusa +06/05/2018,Sports_celeb,@DaleJr,@jeff_gluck Cars aflame 😂 +06/05/2018,Sports_celeb,@DaleJr,One cool part of last nights #NHLFinal was when the monitors showed the large crowd partying in the streets outside… https://t.co/FHLG04LyDV +06/05/2018,Sports_celeb,@DaleJr,This is fantastic. Pretty cool that kids still connect with my father. Dad would get such a kick out of this. Aweso… https://t.co/SsPBMMCQ7H +06/05/2018,Sports_celeb,@DaleJr,"#StanleyCup +#StanleyCupFinal #StanleyCupFinal2018" +06/05/2018,Sports_celeb,@DaleJr,#Final #TheFinal #NHLFinal +06/05/2018,Sports_celeb,@DaleJr,I feel lucky to have witnessed a home team score at an @NHL finals game. The energy and noise from the crowd was contagious. +06/05/2018,Sports_celeb,@DaleJr,"RT @miketirico: Hanging with Jr and JR + +@StanleyCup Final +@NHLonNBCSports +@NBCSports + +@DaleJr +@Jeremy_Roenick https://t.co/BllWMqASoq" +06/05/2018,Sports_celeb,@DaleJr,@KeithOlbermann @NBCSports https://t.co/D1BDru0LrV +06/05/2018,Sports_celeb,@DaleJr,@renewabelle @fak3r @KeithOlbermann @NBCSports I was +06/05/2018,Sports_celeb,@DaleJr,Need all the practice I can get!! Ready to get to @ChicagolndSpdwy and get things started. #Rookie https://t.co/SrJhsbr1MV +06/04/2018,Sports_celeb,@DaleJr,@CopaCavanna “Let’s see. K...Y...L?” +06/04/2018,Sports_celeb,@DaleJr,@MW55 @dennyhamlin @jeff_gluck @zachstur @KyleLarsonRacin Fun to watch. Remember going there many years ago. +06/04/2018,Sports_celeb,@DaleJr,"Paternity leave is over and we are back to work. Me, @RutledgeWood, and @DaleJarrett will talk about them topics an… https://t.co/7Sb6ym4VCC" +06/26/2018,Sports_celeb,@CameronHanes,160 yards just fun...I’m loving my new @hoytbowhunting Ultra. Straight from the gym wrapping up today’s… https://t.co/HhCvqcRPXT +06/25/2018,Sports_celeb,@CameronHanes,Yellow balloon on far target...140 yards with @wayneendicott1354 on the play-by-play and @dylancroll on the 🎥. Who… https://t.co/o3RCPMfYBW +06/15/2018,Sports_celeb,@CameronHanes,"Can’t wait for this.... First 200 get the new tropical punch flavored Keep Hammering BCAA. 👈👈👈 +For registration go… https://t.co/6Ch6ZohAc1" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/BkxMGjOThQ" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/nex0pavsyt" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/QrjoyrLnTD" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/vQrwUOvfhX" +05/24/2018,Sports_celeb,@CameronHanes,"Things got interesting last night, which can happen when you’re hunting wild animals, in wild places. + +And, no matt… https://t.co/Up817TQH72" +05/23/2018,Sports_celeb,@CameronHanes,"In low light, average bears look huge. Such was the case with this decent bear. Despite his good head and nice hide… https://t.co/HoRXclWA9m" +05/17/2018,Sports_celeb,@CameronHanes,"And, to top it off, @maxthieriot also wore one of my Keep Hammering shirts for the “surprise his girl” crunch time… https://t.co/AH3anJWTuE" +05/17/2018,Sports_celeb,@CameronHanes,"@maxthieriot rockin’ one of my #nobodycaresworkharder shirts tonight on @sealteamcbs. So sweet! +Appreciate you brot… https://t.co/Fn2wHItyFB" +05/17/2018,Sports_celeb,@CameronHanes,Keep Hammering defined...with a shoutout to @jockowillink’s Good! @maxthieriot on @sealteamcbs and running is fun! https://t.co/93TYfsfROp +05/12/2018,Sports_celeb,@CameronHanes,"Man, it is incredible how many nice/positive comments I seen on the video I posted yesterday of me and… https://t.co/LCHN7gqNsJ" +05/09/2018,Sports_celeb,@CameronHanes,"#trainhuntprovidehonor +Repost from @powerfuljoerogan +@cameronrhanes beautifully breaks down why he trains so hard… https://t.co/zlSK20QOPh" +05/09/2018,Sports_celeb,@CameronHanes,"Thank you God for one more summit! 🙌 +Who hit the trail today? https://t.co/P5RwcVHJNM" +05/03/2018,Sports_celeb,@CameronHanes,Life is good.... https://t.co/NZKPOVwC2X +05/02/2018,Sports_celeb,@CameronHanes,Thank you for inviting me to Lanai @bennyob301 and @yeti. I feel very grateful to hunt and pull meat out of country… https://t.co/bHCC9nF7WL +04/18/2018,Sports_celeb,@CameronHanes,"🙏❤️🙌 +Text HOME to 741741 from anywhere in the United States, anytime, about any type of crisis. + +When you’ve reache… https://t.co/bPguBTyiFj" +04/12/2018,Sports_celeb,@CameronHanes,"Last elk season here at home we battled hot weather and smoke from burns in the not too far off distance, as the su… https://t.co/0Ld6ilyaLT" +04/01/2018,Sports_celeb,@CameronHanes,"FYI... +💪💪💪💪 +#Repost @powerfuljoerogan with @get_repost +・・・ +Joe goes on epic @garyvee type rant about negative peopl… https://t.co/9BJznbLWMr" +04/01/2018,Sports_celeb,@CameronHanes,Running makes me 😃 and my ❤️ sing. 🙏 https://t.co/KoUeTdEUdl +04/01/2018,Sports_celeb,@CameronHanes,"Love these guys and their winning spirit!!! +💪💪💪 +#Repost @mikechandlermma with @get_repost +・・・ +#throwbackthursday -… https://t.co/k44GrHKxUn" +03/24/2018,Sports_celeb,@CameronHanes,Good stuff @willsmith and my last 5 text @nickthetrainerdude @joerogan @evashockey @outlaw_strength and… https://t.co/bJgbaWgcrU +03/24/2018,Sports_celeb,@CameronHanes,Droke's Antler Art thank you so much! I very much appreciate your thoughtfulness Craig Droke. Check them out at… https://t.co/tZQaFzzbh1 +03/18/2018,Sports_celeb,@CameronHanes,Thoughts from the trail....❤️ for all. I learn something from each person and their perspective. Thank you! https://t.co/6XmTz9DSnf +03/18/2018,Sports_celeb,@CameronHanes,"Good to be back from D.C...but figured I'd share a few of my favorite moments. You might notice a theme? 🏹 +Me... https://t.co/Aa7IrkCuZz" +03/18/2018,Sports_celeb,@CameronHanes,"Good to be back from D.C...but figured I'd share a few of my favorite moments. You might notice a theme? 🏹 +Not... https://t.co/FNGinlIS4r" +03/17/2018,Sports_celeb,@CameronHanes,"Not exactly. Just not the ""right"" conservation groups. And we've done a good job of explaining conservation to... https://t.co/3zxM0ssF5O" +03/15/2018,Sports_celeb,@CameronHanes,"The draw to the wilderness for me...I never saw anyone back there. +I didn't have the advantage of money to open... https://t.co/jaOQnS0yHb" +03/15/2018,Sports_celeb,@CameronHanes,To tell you the truth not that long ago I couldn't tell you who the previous Secretary of Interior was before... https://t.co/lXQWQGERto +03/15/2018,Sports_celeb,@CameronHanes,Brought up Bears Ears a few times just so I was clear on where it stood regarding mineral extraction? Like... https://t.co/eklyO5bczn +03/13/2018,Sports_celeb,@CameronHanes,#venicebeach is always fun! @isiahhilt killing it with #hops https://t.co/Q1VQ0N9Mt0 +03/08/2018,Sports_celeb,@CameronHanes,"Weak @nbcsnl. +How about you show respect to hard working, self-sufficient Americans instead of taking potshots... https://t.co/klV6ecT55g" +02/26/2018,Sports_celeb,@CameronHanes,"Check out this sweet bowhunting tribute @ialeman76 sent me this morning. Thanks brother, I love it. +Isaac and I... https://t.co/0FHfYzBYCU" +02/16/2018,Sports_celeb,@CameronHanes,@13pacificwaves hitting the mountain! I'm happy! https://t.co/VhuiiwRMtd +02/15/2018,Sports_celeb,@CameronHanes,"It's mandatory on Valentine's Day to pick your daughter up from school, listen to @taylorswift and hit a filter... https://t.co/cIfx7vLCYO" +02/11/2018,Sports_celeb,@CameronHanes,"I live for experiences like this. Thank you all!!! +#keephammering5k +#keephammering +@mtnops https://t.co/oSC3nrOKxQ" +02/10/2018,Sports_celeb,@CameronHanes,Baby ❤️at @huntexpo. See you guys at 4 in the @mtnops booth! 📸 @adam.greentree https://t.co/VnpAxKWpvx +02/08/2018,Sports_celeb,@CameronHanes,I don't care what happens the entire rest of the day...nothing will change how happy this makes me. Your success... https://t.co/G3JBLappFH +02/08/2018,Sports_celeb,@CameronHanes,I'm assuming @joerogan made a good shot just prior to this? Haha. Who watched us shoot Techno-Hunt live... https://t.co/UBmYYshneI +01/28/2018,Sports_celeb,@CameronHanes,"❤️️❤️️❤️️❤️️ 🏹🏹🏹🏹 +Who shot their bow today? https://t.co/CQv2wzT9oB" +01/26/2018,Sports_celeb,@CameronHanes,"PSA for being a steward of public land. This is your land, treat it that way. @mypubliclands @repryanzinke https://t.co/ER9zdQHEvC" +01/25/2018,Sports_celeb,@CameronHanes,@evashockey basically killing it. #keephammering @shotshow https://t.co/lfyKlYPspw +01/24/2018,Sports_celeb,@CameronHanes,Exactly! Wisconsin has the right mindset. What you've accomplished in the past means nothing. What you did... https://t.co/NCzby88Kbk +01/20/2018,Sports_celeb,@CameronHanes,"Two things... +Marathon today. +SHOT show 5k. +#trainhuntprovidehonor https://t.co/6sPWBmVuQC" +01/15/2018,Sports_celeb,@CameronHanes,I'm sooooo pumped for this!!! Who's joining me in the 2nd annual @cameronrhanes #KeepHammering5K in Salt Lake... https://t.co/aj8AkbKLHp +01/14/2018,Sports_celeb,@CameronHanes,"How do you not love @drewbrees? Good post @todddurkin #wintheday +• +Posted @withrepost • @todddurkin Win the DAY!!... https://t.co/dRCPYyOXGS" +01/14/2018,Sports_celeb,@CameronHanes,Thank you WOS! https://t.co/9UwgzHfX2b +01/14/2018,Sports_celeb,@CameronHanes,"My mom said I can come over and play @joerogan. +• +Posted @withrepost • @joerogan I got a Techno Hunt video... https://t.co/ZgLm3c5IEn" +01/13/2018,Sports_celeb,@CameronHanes,"That's what friends are for. Haha +Posted @withrepost • @outbackarcheryjoplin I had him !! @cameronrhanes... https://t.co/TVO3jE0GGA" +01/12/2018,Sports_celeb,@CameronHanes,Sweet video @brandedbills! The launch of the Cameron Hanes hunting series hats has been amazing!!! Thank you... https://t.co/lwJSJfX9cr +01/12/2018,Sports_celeb,@CameronHanes,"What an amazing day! +Posted @withrepost • @atatradeshow A little impromptu discussion on conversation at the... https://t.co/zbJdOU8sjv" +01/06/2018,Sports_celeb,@CameronHanes,New toys... https://t.co/qgSPl3KQJW +01/02/2018,Sports_celeb,@CameronHanes,Happy New Year! https://t.co/0NGt2Z73WJ +01/01/2018,Sports_celeb,@CameronHanes,Have a great New Year's Eve. What's the plan anyone getting in a run at midnight to ring in the new year? https://t.co/r9rh4xJR46 +01/01/2018,Sports_celeb,@CameronHanes,"Whhooaa bow and arrows a little to hunty killy don't you think? +• +• +Ixna on the #dreamcatcher •Haha +• +Posted... https://t.co/fNTEcYekFL" +12/28/2017,Sports_celeb,@CameronHanes,"Meanwhile to bookend (see previous post) the relatively quick and painless death of elk in the wild by a hunter,... https://t.co/WEDmq9K81k" +12/28/2017,Sports_celeb,@CameronHanes,"This bull, aged at 11-years old, is the exact animal I'm after when bowhunting. Past his breeding prime (6-9... https://t.co/ah2ymbSKgc" +12/24/2017,Sports_celeb,@CameronHanes,The Keep Hammering 5K in Salt Lake City. Easily one of my best memories from this year. Thank you all so much!!!... https://t.co/vzWmJlmraV +12/19/2017,Sports_celeb,@CameronHanes,I have a lot to be thankful for but near the top of that list is having the ability and opportunity to be a... https://t.co/dezOA3FPQq +12/19/2017,Sports_celeb,@CameronHanes,"It's all fun and games until the 👑 shows up. There is nothing quite like Africa. +Video by @o.baa https://t.co/Oi76lCVhom" +12/19/2017,Sports_celeb,@CameronHanes,Ended the night with a bunch of dips. 4 or 5 sets of 25 the last 5 slow then the last set of 30. Trying to build... https://t.co/jZay08dVM4 +12/15/2017,Sports_celeb,@CameronHanes,"Morning update recap... +• It's summer +• @brandedbills 🙏 +• #keephammering family 💪 +• @thebowrack tomorrow +Have a... https://t.co/SflDEmmGON" +12/14/2017,Sports_celeb,@CameronHanes,I'm here to help with fashion. https://t.co/CWsWfFrcTF +12/05/2017,Sports_celeb,@CameronHanes,"Good morning!!! +What are your thoughts regarding @realdonaldtrump's announcement yesterday in Utah? https://t.co/GBa4b2IMMY" +12/04/2017,Sports_celeb,@CameronHanes,How amazing is this? Talent like @joelpilch's is so special...turning a hunting image into art...awesome! Thank... https://t.co/X5tgnjpYC4 +12/04/2017,Sports_celeb,@CameronHanes,"What he said! +Sounds to me like the story of a successful hunt, which means meat on the ground. And, that's... https://t.co/0DHuf6PlXL" +12/02/2017,Sports_celeb,@CameronHanes,"Roy's Room +#legendsneverdie #riproyroth https://t.co/ODnm47Y7AW" +12/01/2017,Sports_celeb,@CameronHanes,#throwbackthursday Dall sheep with the legend Roy Roth. #roytough #riproyroth https://t.co/Z7H37tSpym +11/30/2017,Sports_celeb,@CameronHanes,"Jeffery Davidson from Vancouver, Washington you won yourself a Keep Hammering RX-1 compliments of @mtnops.... https://t.co/eVFuKzTdiy" +11/24/2017,Sports_celeb,@CameronHanes,Hmmm CNN suprised me... https://t.co/Jii70SB1kJ +11/24/2017,Sports_celeb,@CameronHanes,"Some non-hunters say they support hunting but not ""trophy hunting"". Just an FYI, those two aren't mutually... https://t.co/SJexiZzalT" +11/22/2017,Sports_celeb,@CameronHanes,Still waiting on the @realdonaldtrump decision regarding the ban...thought I'd share a few quick thoughts about my.… https://t.co/70OmVliv8G +11/22/2017,Sports_celeb,@CameronHanes,I am not one to argue with science... https://t.co/hqJgSh2KWL +11/21/2017,Sports_celeb,@CameronHanes,At this time I was irritated and confused with the meaning of @realdonaldtrump's tweet regarding trophy hunting... https://t.co/uTMlbtFDFb +11/21/2017,Sports_celeb,@CameronHanes,Biceps tonight. Going for max reps in a minute with bad form because we don't want to get too big. Haha. Just... https://t.co/66cMJeZWhx +11/21/2017,Sports_celeb,@CameronHanes,"Hopefully, it's just a poorly worded tweet? We will find out. https://t.co/nY7uvxjF5t" +11/20/2017,Sports_celeb,@CameronHanes,Thanks for the perspective. Nothing but ❤️. #keephammering https://t.co/RlID849NQi +11/19/2017,Sports_celeb,@CameronHanes,"Every year Brit. Who else gets all emotional when it comes to big bucks? +Courtesy of @pa_whitetail https://t.co/HMLRW3fFps" +11/18/2017,Sports_celeb,@CameronHanes,All seems right in m little world today. Nothing I'd rather be doing. 🙏 #sunrise #oregonblacktail https://t.co/OgeY1wRKRp +11/17/2017,Sports_celeb,@CameronHanes,What do normal people talk about or share? Maybe I need to expand my horizons? #lunchrun https://t.co/NQ88XzGG0V +11/14/2017,Sports_celeb,@CameronHanes,"Packing elk meat on a rainy Oregon evening...nothing I'd rather be doing. +Who's in agreement? +@evashockey... https://t.co/YiDLaw7kcV" +11/13/2017,Sports_celeb,@CameronHanes,Want to get started in archery/bowhunting? Take that first step by finding your local archery pro-shop or call... https://t.co/X0pWFIosRs +11/13/2017,Sports_celeb,@CameronHanes,Here's some good advice from one of my life coaches (he doesn't know I exist BTW haha who cares) @garyvee. Gary... https://t.co/cup4bvS07S +11/11/2017,Sports_celeb,@CameronHanes,"Did I paint a good picture? +Thank you all for inspiring me to give my very best everyday. #keephammering https://t.co/aQdiD8IY9N" +11/11/2017,Sports_celeb,@CameronHanes,"Agreed @whiskeyriff....just letting it loop. + +Posted @withrepost • @whiskeyriff 1990 George Strait @budlight... https://t.co/3hvUeGpqmX" +11/11/2017,Sports_celeb,@CameronHanes,🙌 so much to be thankful for. https://t.co/k61GIOncRB +11/11/2017,Sports_celeb,@CameronHanes,Thank you @manucarrasco33. You're amazing! https://t.co/rBrBbXnKf5 +11/10/2017,Sports_celeb,@CameronHanes,Thanks for the memories @underarmour! Classic #throwbackthursday https://t.co/39sBq7ENmS +11/09/2017,Sports_celeb,@CameronHanes,I've really been enjoying this @bornandraisedoutdoors YouTube series that they are currently updating with a new... https://t.co/XwvRI8I4ST +11/08/2017,Sports_celeb,@CameronHanes,You know the words... https://t.co/NiWBQ3p2oF +11/07/2017,Sports_celeb,@CameronHanes,"Thanks for the advice @joerogan. #keephammering +Watch for this new hunting film coming soon on @uahunt. It's a... https://t.co/vnL67VfK9l" +11/07/2017,Sports_celeb,@CameronHanes,"I surely don't know what the solution is, but I do know we are in this together. What are your thoughts? Cam https://t.co/IzGOEGbbsn" +11/07/2017,Sports_celeb,@CameronHanes,"I will never be able to explain how bowhunting seems muted at times for me since Roy died in 2015, but maybe... https://t.co/59wpR0jqCP" +11/06/2017,Sports_celeb,@CameronHanes,A rising tide lifts all boats. https://t.co/XUxnvsh70z +11/04/2017,Sports_celeb,@CameronHanes,Thoughts... https://t.co/42GToWIgcy +11/03/2017,Sports_celeb,@CameronHanes,You know you're a bowhunter when your regular clothes are pretty much full camo. But I digress. Shooting the new... https://t.co/5P4IMLyuNs +11/03/2017,Sports_celeb,@CameronHanes,Come bowhunting with us!!! https://t.co/tzdVPjwm7z +11/03/2017,Sports_celeb,@CameronHanes,Send it! https://t.co/cguF9yEvv8 +11/03/2017,Sports_celeb,@CameronHanes,In honor of our @uahunt take over I see @adam.greentree posted a throwback video of him hating on my full set of... https://t.co/epZi3Wn6Qs +11/03/2017,Sports_celeb,@CameronHanes,Chest circuit with @colbycovmma and his dad...it's a fun one! We did 4 rounds of this (20-30 reps of everything)... https://t.co/XilPs7zZVZ +11/02/2017,Sports_celeb,@CameronHanes,https://t.co/FnEO8A7BcA +11/02/2017,Sports_celeb,@CameronHanes,Where you are today is simply a starting point...something to build on. #keephammering https://t.co/IJYVpoKcM3 +11/02/2017,Sports_celeb,@CameronHanes,"Friday!!!! Posted @withrepost • @uahunt ""We're going to have to do 110% right, and the buck 10% wrong."" ​Here's... https://t.co/IZVJssE55J" +11/02/2017,Sports_celeb,@CameronHanes,"#ufc217 fight predictions with @colbycovmma... +GSP vs @mikebisping✅ + +@gamebredfighter✅ vs @wonderboymma... https://t.co/xBYQ55tSLD" +11/01/2017,Sports_celeb,@CameronHanes,I prefer dirt over asphalt/concrete but any run is a good run. Who's gonna hammer out some miles today! https://t.co/yyTvTNn6Hn +10/31/2017,Sports_celeb,@CameronHanes,"""We can die now."" +Not really because if I'd died after killing this buffalo I would have missed this past elk... https://t.co/oNiTiI4DEG" +10/31/2017,Sports_celeb,@CameronHanes,I live for moments like this...passing on the passion! Alex and people like Alex inspire to give my best... https://t.co/Y4EZ5FMJjZ +10/31/2017,Sports_celeb,@CameronHanes,"Granted I'm weak, but generally not as weak as I look here. Last set of a long workout and failure is always the... https://t.co/IsNXeHlvQr" +10/30/2017,Sports_celeb,@CameronHanes,Mindset https://t.co/347foAecLU +10/28/2017,Sports_celeb,@CameronHanes,Courtney Dauwalter Sets the Bar at Moab 200- 238 miles in 57 HOURS !!! | Trail Runner Nation https://t.co/KuyDUCf7xY +10/27/2017,Sports_celeb,@CameronHanes,"Ship it! +@hoytbowhunting is so backed up with Keep Hammering bow orders they said I needed to come help get... https://t.co/7z4gr2iupS" +10/25/2017,Sports_celeb,@CameronHanes,Thanks Rated Red https://t.co/YRkmmKEQTU +10/24/2017,Sports_celeb,@CameronHanes,What a day! First day and 1st time shooting the new Keep Hammering signature @hoytbowhunting at 100 yards. Such a... https://t.co/mttRt3pVGr +10/21/2017,Sports_celeb,@CameronHanes,"And better than me finishing the #moab240 was watching my younger brother, @tspike2, get his hard-earned finish.... https://t.co/tiPex5sYRi" +10/21/2017,Sports_celeb,@CameronHanes,"My finish of the #moab240...238.3 miles, 79 hours 19 minutes, 13th place of 140 starters (98 finishers). Such an... https://t.co/KHQDGFWOWC" +10/20/2017,Sports_celeb,@CameronHanes,"Made it to mile 166 by pushing hard thru the night. Now it's time for a big climb...over 5,000 vertical feet to... https://t.co/DVu2ZXccPC" +10/20/2017,Sports_celeb,@CameronHanes,135 miles down...it's cold! Headed to the 166 aid station. @destinationtrailraces @uaoutdoor 📸 @sub7studios https://t.co/BCXtDe6U9i +10/20/2017,Sports_celeb,@CameronHanes,A big part of the challenge in long ultras is keeping your feet in tact. My feet actually are in really good... https://t.co/qJwgBLbrkw +10/20/2017,Sports_celeb,@CameronHanes,Big night planned here as the sun heads towards horizon. I want to get from 123 to mile 166 by 9:00 a.m. Gonna be... https://t.co/cIRNI0Emsk +10/20/2017,Sports_celeb,@CameronHanes,"Day 1...55 miles down in about 12 hours. We were happy with this effort, but just getting started at #moab240.... https://t.co/TMyW4lOA5v" +10/19/2017,Sports_celeb,@CameronHanes,Lets get this party started! #moab240 start line excitement and anxious energy which we rode to the first aid... https://t.co/xkfNfF9f2y +10/18/2017,Sports_celeb,@CameronHanes,#moab240 at the @destinationtrailraces start line. I'm so happy to share all the cool footage from this event... https://t.co/uMKVvhBrR5 +10/17/2017,Sports_celeb,@CameronHanes,"Great idea on the before/after! What a difference 3 days, 240 miles on foot and 2 hours of sleep makes. I need to... https://t.co/pnkoyjxLUb" +10/11/2017,Sports_celeb,@CameronHanes,"Aim small, miss small. https://t.co/1vg6MqjzHa" +10/10/2017,Sports_celeb,@CameronHanes,https://t.co/WX2ChVKs4Q +10/09/2017,Sports_celeb,@CameronHanes,"Great work Natalie! Love the shirt. 🔨🔨🔨💪💪 +#Reposting @natalieott with @instarepost_app -- Today's workout was... https://t.co/bIedG3SOxz" +10/08/2017,Sports_celeb,@CameronHanes,"At least to get me through those long 11 months until next September, I'll be eating well. #ieatelk #quartershanging https://t.co/FJ2DmvR8ps" +10/07/2017,Sports_celeb,@CameronHanes,"Curls to get ready a 240 mile footrace? Yep, because like @marksmellybell says, ""Strength is never a weakness.""... https://t.co/axyQMTyv5n" +10/05/2017,Sports_celeb,@CameronHanes,"Back up! +Still at it! +Thank you Jesus. +@jstlbby https://t.co/DIDbznagFI" +10/05/2017,Sports_celeb,@CameronHanes,"Who's cleaning this mess up? +#Reposting @realratedred with @instarepost_app -- Trick shots with Cam Hanes: Silly... https://t.co/JdMLRJQhMS" +10/04/2017,Sports_celeb,@CameronHanes,"#moab240 prep....nice and easy. Who else ran today? +@underarmour @lekiusa @trailrunnernation @destinationtrailraces https://t.co/bzgm4quwsq" +10/04/2017,Sports_celeb,@CameronHanes,"#moab240 prep....nice and easy. Who else ran today? +@underarmour @lekiusa @trailrunnernation @destinationtrailraces https://t.co/HwKBeSH9Ik" +10/03/2017,Sports_celeb,@CameronHanes,10 days..... https://t.co/pVCwY7z6GS +10/02/2017,Sports_celeb,@CameronHanes,Thanks for all the ❤️. You all inspire me give my very best everyday. #keephammering https://t.co/UXYhESKCiN +09/30/2017,Sports_celeb,@CameronHanes,Cameron Hanes Aims for 240 Miles | Trail Runner Nation https://t.co/aCKeY34ejW +09/29/2017,Sports_celeb,@CameronHanes,Bows and arrows! https://t.co/5JjslJqXhl +09/29/2017,Sports_celeb,@CameronHanes,"( turn sound up ☝️) I love losing. Good opening line 😊 +How about this custom music video made for me exclusively... https://t.co/6qQ8HqThIh" +09/26/2017,Sports_celeb,@CameronHanes,Good times! https://t.co/tnRvGj2maH +09/22/2017,Sports_celeb,@CameronHanes,More bugling bulls. Sound 👆. This 6x5 was a young bull looking for love. @uahunt https://t.co/22TnA275EU +09/21/2017,Sports_celeb,@CameronHanes,"Been out of service for awhile but I'm back!!! You know how I know it was a good day? +With @joerogan... https://t.co/xc7wRLbMmO" +09/13/2017,Sports_celeb,@CameronHanes,"Somehow I got a cold during hunting season, which is good! Makes hammering harder which will make it easier when... https://t.co/OWHzHCDf0I" +09/06/2017,Sports_celeb,@CameronHanes,"This young 6x6 came in to 10 yards, spooked then stopped at 46. He was fully convinced there was a cow there.... https://t.co/uwJ99TwuUQ" +09/06/2017,Sports_celeb,@CameronHanes,Killed fighting another bull or could be a lion kill too I guess? FYI: we saw two mountain lions this morning at... https://t.co/vukNrjYagN +09/05/2017,Sports_celeb,@CameronHanes,I like 29 yard shots... https://t.co/N8sllChnbN +09/04/2017,Sports_celeb,@CameronHanes,I'm convinced. I'm done with meat and buying a cow to ride to work. P.S. I've watched this 10x and it makes me... https://t.co/TC7W2yPcNr +09/01/2017,Sports_celeb,@CameronHanes,It's September and September means bugling bulls!!! His was four years ago but I remember it like yesterday. Full... https://t.co/X7GQ7kpjH9 +09/01/2017,Sports_celeb,@CameronHanes,"Way to #keephammering and make a difference my friend! +#Reposting @heavydsparks with @instarepost_app -- It's... https://t.co/zLyw3GvdY7" +09/01/2017,Sports_celeb,@CameronHanes,"Way to go brother! And, I'm loving that #keephammering trail run shirt! @mtnops +#Reposting @the.muscle with... https://t.co/7sxbJKW2DC" +08/31/2017,Sports_celeb,@CameronHanes,"Colorado countdown! +@hoytbowhunting @eastonarchery @spothoggarchery https://t.co/faVRuUg536" +08/30/2017,Sports_celeb,@CameronHanes,I posted a new video to Facebook https://t.co/vTFQich5fE +08/30/2017,Sports_celeb,@CameronHanes,Please help if you can. Cam https://t.co/xATWBcO504 +08/30/2017,Sports_celeb,@CameronHanes,Sometimes we go to the movies sometimes we cut off antlers. https://t.co/XedF3KqUqY +08/28/2017,Sports_celeb,@CameronHanes,After we got the bull broke down I went back to find my arrow. It passed thru the bull and was laying here on the... https://t.co/aDoGfnQWJy +08/28/2017,Sports_celeb,@CameronHanes,After we got the bull broke down I went back to find my arrow. It passed thru the bull and was laying here on the... https://t.co/aFu2GaFVQV +08/27/2017,Sports_celeb,@CameronHanes,Doesn't get any better! #ieatelk @uahunt @yeti https://t.co/VaxKTKPHg6 +08/22/2017,Sports_celeb,@CameronHanes,"Protect, serve and bowhunt....we are 4 days away from elk season here in Oregon. I'm trying to get leaner and... https://t.co/7HjlU8r16e" +08/20/2017,Sports_celeb,@CameronHanes,"When @realratedred says, ""Hey wanna come to SLC and make archery videos?"" I say, What time you need me there?... https://t.co/ot7kY03RVh" +08/20/2017,Sports_celeb,@CameronHanes,I was watching this video today on @ufcuncensored and was surprised to see myself in the background with... https://t.co/P8IlAmXzjq +08/19/2017,Sports_celeb,@CameronHanes,Psshhht it's just a Phantom. Haha what's the worst that can happen? @realratedred @eastonarchery #$240k https://t.co/dp27MTA7Kv +08/18/2017,Sports_celeb,@CameronHanes,"Some days you rule the run, some days the run rules you. One thing about it, the mountains, the elk and pretty... https://t.co/BMZiKh5wrd" +08/15/2017,Sports_celeb,@CameronHanes,Anyone else gets some reps in today? #liftrunshoot https://t.co/te1p2t6Cow +08/15/2017,Sports_celeb,@CameronHanes,Bosu Ball push-up sequence...5 sets super sets with tricep extensions. @outlaw_strength https://t.co/2eM0EdOoBW +08/10/2017,Sports_celeb,@CameronHanes,Lots of back/chest reps within a number of movements cumulating with this superset. Go until you land on your... https://t.co/8MSkq1PYv8 +08/09/2017,Sports_celeb,@CameronHanes,"Please know, I'm not an expert and I don't have the blueprint, all I know is what works for me. I don't know what... https://t.co/gtZyclWIdn" +08/05/2017,Sports_celeb,@CameronHanes,"Find your talent and pay your dues! +Note: 5 hours of sleep gives you one more hour to 🔨🔨🔨. Thanks for breaking it... https://t.co/xTdMic77v3" +08/02/2017,Sports_celeb,@CameronHanes,"Hope for the best, prepare for the worst. Wasn't sure if I should end the video with #keephammering #itsallmental... https://t.co/jE8LdbE5xb" +08/01/2017,Sports_celeb,@CameronHanes,"Thanks for the support @outlaw_strength and haha yep, maybe @therock? 500 reps tonight. What did you all lift today? https://t.co/VyjY8Ua1aY" +07/30/2017,Sports_celeb,@CameronHanes,"This has it all...Keep Hammering, the classic cut shirt and the creativity. @livingcountryinthecity is becoming... https://t.co/FMrkaseZCv" +07/28/2017,Sports_celeb,@CameronHanes,"Run ✅ +Shoot ✅ +Lift +With @hunter_j8 https://t.co/2XkXPrHX0u" +07/28/2017,Sports_celeb,@CameronHanes,"Run ✅ +Shoot +Lift +With @hunter_j8 https://t.co/Gu7rPlDoqA" +07/28/2017,Sports_celeb,@CameronHanes,Thanks to both of you!!!! Keep hammering! https://t.co/WBB9o58pLq +07/26/2017,Sports_celeb,@CameronHanes,I think we need to film an updated version...I'll need a few volunteers. 😊🎬🎯 @historic https://t.co/EwDNd5N0wo +07/26/2017,Sports_celeb,@CameronHanes,It was such an awesome night on the mountain! Hope you all had a great day and earned a chance to hammer.... https://t.co/dJieZTtOuz +07/26/2017,Sports_celeb,@CameronHanes,What hunt are you most looking forward to this year? Colorado elk is always near the top of my list! https://t.co/iGln0hR0Wi +07/26/2017,Sports_celeb,@CameronHanes,"This is especially true in today's social media world. Keep in mind, weak/insecure people criticize whereas... https://t.co/gl7nVqVNnX" +07/24/2017,Sports_celeb,@CameronHanes,Hunter found dead after 'suicide' following threats from activists https://t.co/BcptIPKprC +07/24/2017,Sports_celeb,@CameronHanes,"One of the hardest, but most important things to do when preparing for 100 or 200-mile races, is getting in your... https://t.co/PUgEkX2Tqw" +07/24/2017,Sports_celeb,@CameronHanes,"Mentally, yes yesterday had nothing to do with today but physically, I was a mess (calves/hamstrings) and at this... https://t.co/2v3Tor7oht" +07/23/2017,Sports_celeb,@CameronHanes,"Had plans of doing better today, but alas, it wasn't meant to be. This was my slowest 50K in years but I'm still... https://t.co/ItHRc7xl6O" +07/23/2017,Sports_celeb,@CameronHanes,"Best part of the day...meeting, visiting and taking photos with social media followers after the race. You all... https://t.co/MvOK1DFN7q" +07/23/2017,Sports_celeb,@CameronHanes,My other squad...bowhunting edition. Eric Park and Kevin Akers ready to hammer Bachelor this morning. #keephammering https://t.co/lxowYtkvuR +07/23/2017,Sports_celeb,@CameronHanes,Post @uamtnrunning 50K race photo with @uaoutdoor athletes @codyreeeed and @ywangruns who are both amazing... https://t.co/rCaaV4yaSn +07/23/2017,Sports_celeb,@CameronHanes,Thanks for the shoutout @uaoutdoor. In the chute at @uamtnrunning with @not.quite.lost and @theriverswild getting... https://t.co/YSJo3VOVGB +07/22/2017,Sports_celeb,@CameronHanes,New arrows coming compliments of @eastonarchery and @thebowrack. Speaking of The Bow Rack. One thing I noticed at... https://t.co/lfSRce2Jby +07/20/2017,Sports_celeb,@CameronHanes,Now this is the definition of Keep Hammering! Great job guys. Thanks so much for reppin' my Keep Hammering shirt!... https://t.co/Jt5WelJUjv +07/20/2017,Sports_celeb,@CameronHanes,"Train! +Awesome evening on the mountain. #keephammering https://t.co/JV0MezW5kV" +07/20/2017,Sports_celeb,@CameronHanes,"Cool little video from @uahunt. Who's joining us at @totalarcherychallenge next year? +FYI my 140-yard shot from... https://t.co/tvD8wojqhc" +07/19/2017,Sports_celeb,@CameronHanes,No one will run with me at lunch so I have to make friends on the mountain. #lunchrun https://t.co/LcrbRcKLVS +07/19/2017,Sports_celeb,@CameronHanes,"Don't miss. +@eastonarchery loves the @totalarcherychallenge +#arroweater +📸 @jedlarkin11 https://t.co/VmlDPQCCgr" +07/19/2017,Sports_celeb,@CameronHanes,"Question: is it possible to post too many photos from the @totalarcherychallenge? + +Answer: no + +#sendit with... https://t.co/HxNoBsuAo8" +07/19/2017,Sports_celeb,@CameronHanes,"I made a long, precise bow shot on this big 6x6 Wyoming wilderness bull while hunting amongst the wolves and... https://t.co/I7I3VE4dYv" +07/19/2017,Sports_celeb,@CameronHanes,"I'd like a show of hands from everyone who loves @adam.greentree 🙋‍♂️ +#Reposting @adam.greentree with... https://t.co/gHEg8F6EoZ" +07/18/2017,Sports_celeb,@CameronHanes,@joerogan and @bennyob301 had my ears burning. Haha. Great podcasts guys! #bearseverywhere #ilovemy7to5 https://t.co/ipLHFoMp2o +07/17/2017,Sports_celeb,@CameronHanes,"My favorite Jordan from @mtnops? Don't make me pick haha. Just kidding...it's a tie! Love em' both. +#Reposting... https://t.co/TJwkeLuMu0" +07/17/2017,Sports_celeb,@CameronHanes,I love seeing IG stories like this! @scotteastwood #dialedin https://t.co/ZIWniW9b9o +07/17/2017,Sports_celeb,@CameronHanes,"It was an epic couple of days in SLC!!! Thank you all. I so very much appreciate all the handshakes, hugs, kind... https://t.co/9wqz2o1kmM" +07/17/2017,Sports_celeb,@CameronHanes,"Send it! +....... +@totalarcherychallenge 📸 @jedlarkin11 https://t.co/gKL6zMCKqJ" +07/16/2017,Sports_celeb,@CameronHanes,CrossFit superfreak @cspealler jumped right into it taking on the @totalarcherychallenge for his first ever 3-D... https://t.co/JiVYXyg3WR +07/16/2017,Sports_celeb,@CameronHanes,Pull em'! @totalarcherychallenge 📸 @jedlarkin11 https://t.co/xAm5BobuBs +07/01/2018,Sports_celeb,@shaunwhite,Jet skiing all day. ✌️ https://t.co/ZiTs87s9Pc +06/30/2018,Sports_celeb,@shaunwhite,RT @airandstyle: Didn't grab enough at the merch table this year? We got you covered :) https://t.co/XV0ZUXueaJ https://t.co/8IiImWmDL7 +06/30/2018,Sports_celeb,@shaunwhite,I’m so stoked to be nominated for Best Olympic Moment and Best Male Olympian at the @ESPYS! Make sure you vote for… https://t.co/1MVE1oex3a +06/30/2018,Sports_celeb,@shaunwhite,. @BigBoi where are we going!? #Seabiscuit #lost #jamaica https://t.co/jm54pytZYA +06/30/2018,Sports_celeb,@shaunwhite,Jamaica living 🇯🇲 https://t.co/yt0SHOgicC +06/29/2018,Sports_celeb,@shaunwhite,This is a SERIOUS throwback! #TBT with the Biebz at the #KCAs in 2010. #allofthehair https://t.co/DTEdnEa3Jy +06/28/2018,Sports_celeb,@shaunwhite,Flower daze. 🌼 https://t.co/NMA6NmAXaw +06/25/2018,Sports_celeb,@shaunwhite,There is no better feeling... https://t.co/bC5KTxjdQX +06/25/2018,Sports_celeb,@shaunwhite,Sunset vibes. 🌊 https://t.co/kk7dI3h3aB +06/23/2018,Sports_celeb,@shaunwhite,It’s a Venice kinda skate day. ☀️ https://t.co/pFEltnxuSz +06/23/2018,Sports_celeb,@shaunwhite,Happy #TakeYourDogtoWorkDay from me and Leroy! #bringyourdogtoworkday https://t.co/QrTOAdil6Q +06/23/2018,Sports_celeb,@shaunwhite,🏄🏄 https://t.co/Hbr6XSaXgN +06/21/2018,Sports_celeb,@shaunwhite,Happy #GoSkateboardingDay! Where are you skating at?! 🏄 https://t.co/xyFy4THQ0n +06/20/2018,Sports_celeb,@shaunwhite,So stoked to be nominated for Choice Male Athlete at this year’s @kcsawards! Head to https://t.co/VQIDnI6GqP to vot… https://t.co/oL75OjCHH8 +06/19/2018,Sports_celeb,@shaunwhite,"I’ve begun to make some @Spotify playlists. Here's my current skate mix! I’m on a disco kick... don’t ask. 😂 +https://t.co/pM6StACl7m" +06/17/2018,Sports_celeb,@shaunwhite,😎✌️ https://t.co/M1UY2UDET6 +06/17/2018,Sports_celeb,@shaunwhite,I’m so glad we’re not like those father son duos who get overly emotional...Thank you for always being there.… https://t.co/Uhmx9QUumX +06/17/2018,Sports_celeb,@shaunwhite,🐾 🌴 https://t.co/AnMdFagDxP +06/16/2018,Sports_celeb,@shaunwhite,Saturday feels. https://t.co/E0EwlzUVRL +06/15/2018,Sports_celeb,@shaunwhite,"RT @TeenChoiceFOX: Are you ready to stomp this competition, @shaunwhite fans? Retweet to show us what you've got! #ChoiceMaleAthlete #TeenC…" +06/15/2018,Sports_celeb,@shaunwhite,Caption this 🦈 https://t.co/eqJS8lAXSp +06/06/2018,Sports_celeb,@shaunwhite,Hitting the vert ramp again! Bringing back some great memories 😍 📷 Gabe L’Heureux https://t.co/HAy7Hj89Le +05/31/2018,Sports_celeb,@shaunwhite,@slowtideco Thanks for the towels! Dig 'em +05/29/2018,Sports_celeb,@shaunwhite,". @Buck and I recount my journey from my childhood to today, TONIGHT at 8PM on #UndeniableShow. Catch the action on… https://t.co/dILoVcRUsA" +05/25/2018,Sports_celeb,@shaunwhite,"man, it seems like yesterday that I was making those long car rides to the mountains to get my first taste of snowb… https://t.co/WHTg75t2H9" +05/24/2018,Sports_celeb,@shaunwhite,"Phoenix, Az https://t.co/ctuHTTNauL" +05/24/2018,Sports_celeb,@shaunwhite,"RT @Phantogram: Hi Friends, + +We're really excited to share new music with you today. https://t.co/H6RjPVRtxI + +We started work on “Someday”…" +05/24/2018,Sports_celeb,@shaunwhite,RT @joejonas: Some Australia fashion week newbies @shaunwhite https://t.co/E3C48biZkk +05/16/2018,Sports_celeb,@shaunwhite,"I'm bringing @airandstyle to Sydney, Australia!!! August 3rd, 4th & 5th. https://t.co/tSEus7TGfL" +05/16/2018,Sports_celeb,@shaunwhite,sooo fun https://t.co/LFzqjcCLoD +05/11/2018,Sports_celeb,@shaunwhite,🤯🤯 what a day at the ranch w/ these legends. Thanks so much @kellyslater for having me! https://t.co/3yjoEH9ROr +05/10/2018,Sports_celeb,@shaunwhite,#TBT https://t.co/u7WcGGyPtW +05/09/2018,Sports_celeb,@shaunwhite,"they really need a skateboard emoji .. +📷 @iamfoursided https://t.co/FVZ56EYUl3" +05/08/2018,Sports_celeb,@shaunwhite,#MetGala 2018 👑 @voguemagazine @EtroOfficial 📷: @BFA https://t.co/Qk2gpCONeg +05/01/2018,Sports_celeb,@shaunwhite,My Mom holding back the tears as I walk her down the aisle at my sisters wedding! Kari and Ryan I’m so happy for th… https://t.co/nKd0xIKjqD +04/19/2018,Sports_celeb,@shaunwhite,@GovHerbert Thank you so much for having me! +04/17/2018,Sports_celeb,@shaunwhite,Watch the dog... 😂 https://t.co/dtDvCoO4gi +04/10/2018,Sports_celeb,@shaunwhite,"Had a great time sharing my Olympic and life experiences @UTAustin last night. Thanks for having me!🤠🤟🏼 +📷… https://t.co/GGVjkzX0Lm" +04/06/2018,Sports_celeb,@shaunwhite,Venice park 🌴 📹 Jordan Lovelis https://t.co/gqSGviZcw7 +04/04/2018,Sports_celeb,@shaunwhite,Warming up some old tricks! 3rd day on the board yesterday and it’s all starting to come back🤫 https://t.co/VVax0I8NWX +03/26/2018,Sports_celeb,@shaunwhite,@ryandiem Nice one!! +03/26/2018,Sports_celeb,@shaunwhite,That moment I told @postmalone his song was playing when I won my 3rd Olympic gold medal🙌🏻 #rockstar #posty https://t.co/96llwisneI +03/23/2018,Sports_celeb,@shaunwhite,missing my festival whip 😂🚘shoutout to @lyft for sponsoring our moves at @airandstyle on and off the festival groun… https://t.co/0Wxzfh4uzN +03/23/2018,Sports_celeb,@shaunwhite,"Great interview with @zanelowe on beats1 radio! +And yes I’m still wearing the medal 😂🇺🇸!! https://t.co/Z02yz0RGHT" +03/22/2018,Sports_celeb,@shaunwhite,"It was great to meet some of the @PaulMitchellUS family, Nate and Ollie. Thank you for supporting @airandstyle! https://t.co/UqqTqwwOb5" +03/22/2018,Sports_celeb,@shaunwhite,RT @airandstyle: TODAY tune in to @NBCSN at 11am PST to relive both skate and snow competitions at #AirandStyle during our one hour special… +03/21/2018,Sports_celeb,@shaunwhite,"It’s nice to get time at home after such an amazing winter. Looking forward to next season, but until then i’m exci… https://t.co/wmDrrlCZd6" +03/16/2018,Sports_celeb,@shaunwhite,Thanks for hanging with me at @airandstyle @MaiaShibutani & @AlexShibutani ! So cool to meet you guys. https://t.co/WLWkCIuixx +03/12/2018,Sports_celeb,@shaunwhite,Backstage with legend @jonbonjovi for @iheartradio awards! Blaze of Glory🤘🏻 https://t.co/apfKJj8se4 +03/09/2018,Sports_celeb,@shaunwhite,Thanks for hanging at @airandstyle @RollingStone ! https://t.co/48wvU80uXw +03/07/2018,Sports_celeb,@shaunwhite,RT @airandstyle: Anyone still thinking about last weekend? We know we are. #AirAndStyle https://t.co/xko2LmCU8V +03/05/2018,Sports_celeb,@shaunwhite,this is awesome!! @DylanTateA https://t.co/dK03gW9v5B +03/04/2018,Sports_celeb,@shaunwhite,"RT @airandstyle: Day 2 - We're coming in BIG! Don't miss out on today's action-packed lineup with @gucci1017, @wearephoenix, @phantogram, @…" +02/17/2018,Sports_celeb,@shaunwhite,"These course designs are getting me so excited ! Can't wait to be back in LA for @airandstyle ! 😍✨ + +You guys comin… https://t.co/qqtD3iLewh" +02/15/2018,Sports_celeb,@shaunwhite,@MichaelPhelps You said it! Really enjoying this moment. Thanks for the love🙏🏼 +02/15/2018,Sports_celeb,@shaunwhite,RT @MichaelPhelps: Let’s go @shaunwhite !!! Way to go man!! Nothing like a good comeback right?? Redemption always feels great!! #usa #Olym… +02/14/2018,Sports_celeb,@shaunwhite,WE DID IT🇺🇸🥇 #OLYMPICS https://t.co/JQ4xhz4H9p +02/13/2018,Sports_celeb,@shaunwhite,Couldn’t be happier to qualify first today! Tomorrow is the moment I’ve been looking forward to for 4 years... Let’… https://t.co/1Ck2jZOZZF +02/13/2018,Sports_celeb,@shaunwhite,"RT @NBCOlympics: The night is young. Settle in and watch @shaunwhite drop in. #WinterOlympics #BestOfUS + +He's coming up live on @nbc and st…" +02/12/2018,Sports_celeb,@shaunwhite,"RT @NBCNews: Does Olympic snowboarder Shaun White have any fear? Here's what he told @GadiNBC in #PyeongChang. + +Watch more on ""Stay Tuned"":…" +02/12/2018,Sports_celeb,@shaunwhite,"RT @NBCOlympics: Tonight in primetime, @shaunwhite returns to halfpipe while @chloekimsnow goes for GOLD! #WinterOlympics https://t.co/85Dp…" +02/12/2018,Sports_celeb,@shaunwhite,Slope Semi Finals tomorrow! Let’s do this💪🏼 #Olympics https://t.co/vWqyG4mJpV +02/09/2018,Sports_celeb,@shaunwhite,"First day of practice ✔️ +Opening Ceremonies tonight! #Olympics https://t.co/uX8ATJz2bg" +02/09/2018,Sports_celeb,@shaunwhite,@KyRenee12 ⭐️💯 thank you Karter!! +02/07/2018,Sports_celeb,@shaunwhite,WOW... My fourth Olympics! #Honored 📷@TheTobyMiller https://t.co/2alPkcYrBp +02/06/2018,Sports_celeb,@shaunwhite,🤘🤘 https://t.co/e7hX7on870 +02/06/2018,Sports_celeb,@shaunwhite,En Route to PyeongChang🇰🇷 https://t.co/7lsO8QOG8n +02/04/2018,Sports_celeb,@shaunwhite,"South Korea, here we come! #PyeongChang2018 #Olympics https://t.co/PpjV5aC3se" +01/31/2018,Sports_celeb,@shaunwhite,Preparing for South Korea and looking back at how I got here... check out the new episode of #SnowPack on… https://t.co/KeFjwd0eBY +01/27/2018,Sports_celeb,@shaunwhite,Excited to announce my new mobile game @DownhillDash is available now on the @AppStore & @GooglePlay !!… https://t.co/06cw4RNRGi +01/27/2018,Sports_celeb,@shaunwhite,RT @RobbReport: #EXCLUSIVE: @ShaunWhite gets real about his impeccable sense of style. Find out how the pro snowboarder is hitting his fash… +01/25/2018,Sports_celeb,@shaunwhite,"Can't wait to hear ""Off Top"" from these videos live @lophiile 🙌" +01/25/2018,Sports_celeb,@shaunwhite,"See you Sunday, March 4 👀✨ @airandstyle @wearephoenix @gucci1017 @Griz @Phantogram @Tinashe @realwashedout… https://t.co/5F4YhNB87L" +01/25/2018,Sports_celeb,@shaunwhite,"See you Saturday, March 3 🕺⚡️ @airandstyle @Zedd @CASHMERECAT @cutcopy @BIGBABYDRAM @mura_masa_ @AlejandroChal… https://t.co/QFlYxT2ZYT" +01/25/2018,Sports_celeb,@shaunwhite,"RT @RachelAxon: In the four years since his fourth-place finish in Sochi, @shaunwhite has gained a balance and perspective that has rekindl…" +01/25/2018,Sports_celeb,@shaunwhite,🙌🙌🙌 https://t.co/PCeFuYSxou +01/25/2018,Sports_celeb,@shaunwhite,"RT @XGames: Our World of #XGames BEING series features @ShaunWhite! + +The show airs TODAY, Jan. 20 at 2 pm ET / 11 am PT on ABC. https://t.c…" +01/22/2018,Sports_celeb,@shaunwhite,"RT @olympicchannel: .@shaunwhite is back. 🏂 + +Discover where he's been and what's driven his inspiration. 💪 + +Only on #LegendsLiveOn ▶️ https…" +01/18/2018,Sports_celeb,@shaunwhite,After my fall in October I was eager to get back out and ride. Check out my trip to Austria in Ep. 3 of #SnowPack o… https://t.co/Oph67ea8z7 +01/17/2018,Sports_celeb,@shaunwhite,"I️ am feeling stronger, focused, and more determined than ever! @beatsbydre #AboveTheNoise #Olympics https://t.co/topfOZbatl" +01/15/2018,Sports_celeb,@shaunwhite,Catch me on #HenryDanger tonight at 7p/6c on @Nickelodeon! https://t.co/5pvBVC0UIe +01/15/2018,Sports_celeb,@shaunwhite,When u photo bomb the Japanese snowboard team .... https://t.co/Dc7hEPKGlH +01/14/2018,Sports_celeb,@shaunwhite,We’re going to Korea!!!! #Olympics #Thankful https://t.co/71SnrQKUh7 +01/13/2018,Sports_celeb,@shaunwhite,Finals going down tomorrow🤘🏼 https://t.co/ox9OQzgYtq +01/13/2018,Sports_celeb,@shaunwhite,Overwhelmed by the amount of support from last week’s episode of #SnowPack about my fall in October 💙 Ep. 2 is up o… https://t.co/Cz6zTYtypB +01/12/2018,Sports_celeb,@shaunwhite,"Qualified in 1st place today 💪🏼! +Stoked for finals on Saturday. Tune into NBC sports to watch." +01/11/2018,Sports_celeb,@shaunwhite,Had such a blast you guys! 😂 https://t.co/4qlN18mpuI +01/10/2018,Sports_celeb,@shaunwhite,Went shopping in Aspen..... 🤠 https://t.co/2f6BVm6RSM +01/10/2018,Sports_celeb,@shaunwhite,Heading into the 3rd Olympic qualifier this coming weekend! Wish me luck. #Olympics +01/09/2018,Sports_celeb,@shaunwhite,"RT @RachelAxon: While @shaunwhite works on qualifying for his fourth Olympics, he’s getting ready for an LA Air + Style that will include s…" +01/09/2018,Sports_celeb,@shaunwhite,Had a chat with @WebMD about my health and training leading up to the Olympics https://t.co/NApprHBC8p https://t.co/HGmu3YJTN3 +01/09/2018,Sports_celeb,@shaunwhite,"RT @billboarddance: .@Zedd, @gucci1017, @BIGBABYDRAM, @Phantogram & others top 2018 lineup for @shaunwhite's 2018 Air + Style Festival http…" +01/09/2018,Sports_celeb,@shaunwhite,🎉🙌 @gucci1017 https://t.co/xfLl1HBIQb +01/08/2018,Sports_celeb,@shaunwhite,!!!!!!! 😱 @nbcolympics https://t.co/MFZnppfaOH +01/08/2018,Sports_celeb,@shaunwhite,"Looking back at this Saturday in @BigBearMtResort , getting stoked for @airandstyle March 3 + 4 in LA!! https://t.co/D9L5v9Saxo" +01/07/2018,Sports_celeb,@shaunwhite,Had a blast at the @airandstyle Qualifier yesterday up at @BigBearMtResort . Thank you to everyone that made it pos… https://t.co/DHHzCJDXM0 +01/06/2018,Sports_celeb,@shaunwhite,First time I’ve attempted this trick since it put me in the hospital in New Zealand. Words can’t describe how good… https://t.co/SKz4TQHKeO +01/05/2018,Sports_celeb,@shaunwhite,RT @dangerjr: Flying @AlaskaAir this month? Check out my profile on @shaunwhite in Alaska Airlines Beyond magazine. #Olympics https://t.co/… +01/05/2018,Sports_celeb,@shaunwhite,Our @airandstyle qualifier comp is tomorrow at @BigBearMtResort 🎉Registration + Practice at 10am / Qualifiers at 12… https://t.co/2Xbrspj3Ql +01/05/2018,Sports_celeb,@shaunwhite,RT @LAmag: Get your snowboarding fix with @shaunwhite this weekend. https://t.co/gGRWMDTgRN +01/04/2018,Sports_celeb,@shaunwhite,"In Oct of 2017 I took a bad fall. It was tough, but it brought me into the new year feeling strong, focused, and de… https://t.co/41LX9hvGjD" +12/19/2017,Sports_celeb,@shaunwhite,Had a great time doing the Dew! Wish we had some better weather on quals day but still had a blast. 📷: @markclavin https://t.co/R7wtb8HWNK +12/14/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Our 2018 A+S LA lineup playlist is here. 🎉🎧https://t.co/lpQcbTIPMz #NowPlaying #AirandStyle #LosAngeles +12/11/2017,Sports_celeb,@shaunwhite,"RT @NBCOlympics: .@shaunwhite's final run from today. 😮😮😮🔥🔥🔥 + +Get ready! Sign up for NBC Olympics newsletters here: https://t.co/4LF2c6A2RL…" +12/11/2017,Sports_celeb,@shaunwhite,Getting ready for another @DewTour #dewtour https://t.co/YGjLTgoeS4 +12/09/2017,Sports_celeb,@shaunwhite,"First contest of the year went great! +Full video👉🏻 https://t.co/oYeDRH5Dri https://t.co/pvs3Z5bXgN" +12/09/2017,Sports_celeb,@shaunwhite,RT @usskiteam: The @Toyota U.S. Grand Prix snowboard halfpipe finals are going off TODAY at @CopperMtn. Watch 'em at 4pm ET on @nbc. 🇺🇸🇺🇸🇺🇸… +12/09/2017,Sports_celeb,@shaunwhite,First Olympic qualifier going down now! Tune in on https://t.co/IzqwdgYuHw 💪🏼 https://t.co/fXtZ00p4XM +12/08/2017,Sports_celeb,@shaunwhite,"RT @usskiteam: And the men's halfpipe qualifier results are unreal. Out of the 10 finals spots, SEVEN U.S. men qualified. 💪 + +@shaunwhite…" +12/07/2017,Sports_celeb,@shaunwhite,Getting ready for the first competition of the season - let’s do this! @CopperMtn https://t.co/jY4AnQ285n +12/05/2017,Sports_celeb,@shaunwhite,#BlessUp 🙏👆 https://t.co/wguyhAySkK https://t.co/t1ERioe2Bb +12/05/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Stoked for our first ever Streetstyle snowboard competition. The world's best urban shreds will turn up the volume on a sn… +12/04/2017,Sports_celeb,@shaunwhite,RT @airandstyle: NEW for 2018! Excited to announce that A+S will be serving up BOTH snowboarding AND skateboarding at the Los Angeles event… +12/01/2017,Sports_celeb,@shaunwhite,"Thanks for having me, @RobbReport !! https://t.co/vK9VVEWt8X" +11/30/2017,Sports_celeb,@shaunwhite,Powder Day In Austria! https://t.co/dAFEM2YA8u +11/28/2017,Sports_celeb,@shaunwhite,It’s here!!!!!! Tix: https://t.co/sFkvY548qv https://t.co/LcUzt9s40c +11/26/2017,Sports_celeb,@shaunwhite,Doing some fun things on instagram!https://t.co/oYeDRH5Dri https://t.co/YQexyYthTU +11/26/2017,Sports_celeb,@shaunwhite,Congrats to @markmcmorris and Anna Gasser for taking 1st place at @airandstyle Beijing !!! https://t.co/IFPaNkIwDi +11/25/2017,Sports_celeb,@shaunwhite,#thankful 🙌🏽 https://t.co/6ie0ObWu1w +11/16/2017,Sports_celeb,@shaunwhite,"#TBT What.a.view! +📸 Gabe L'Heureux https://t.co/tBfq99StxA" +11/15/2017,Sports_celeb,@shaunwhite,"Gliding thru the week... +📸 Gabe L'Heureux https://t.co/VDsOw2ka6W" +11/09/2017,Sports_celeb,@shaunwhite,#MammothsOpen stoked to get back up there @mammothmountain !! photo: Cameron Strand https://t.co/HqSER1WDIW +11/09/2017,Sports_celeb,@shaunwhite,#TBT to the @burtonsnowboard US Open 📷 Gabe L'Heureux https://t.co/KAwQQNGaZ2 +11/08/2017,Sports_celeb,@shaunwhite,Neighborhood watch.. 😂 #leroythegoodboy https://t.co/UkW9yJZZ5D https://t.co/5DhfJLOLbw +11/07/2017,Sports_celeb,@shaunwhite,our final episode of Turning Point is up on @go90 and it’s all about @airandstyle !! https://t.co/eB4mOvyOUk https://t.co/BiEs2F91al +11/03/2017,Sports_celeb,@shaunwhite,thank you to everyone for the support and well wishes ❤️ @TODAYshow @NBCOlympics @thelinehotel https://t.co/ewnspSgWqk +11/03/2017,Sports_celeb,@shaunwhite,Happy Friday! Tickets are now on sale for @airandstyle LA! #airandstyle #losangeles https://t.co/5rPIoPaPm4 +11/02/2017,Sports_celeb,@shaunwhite,RT @airandstyle: General tickets and Layaway plans go on sale tomorrow Nov. 3rd at 10AM PST (https://t.co/MuhmaRIFBb). Loyalty Presale Fam… +11/01/2017,Sports_celeb,@shaunwhite,Big things in 2018! Can't wait @airandstyle @wearephoenix @Zedd @griz @Phantogram #airandstyle #losangeles https://t.co/98WsxvF5c3 +11/01/2017,Sports_celeb,@shaunwhite,@TeamUSA 💙😏 +11/01/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: We are 100 days out from the #WinterOlympics! https://t.co/DMo6mf4k42 +11/01/2017,Sports_celeb,@shaunwhite,Wish i could've been there - see you guys soon! #100DaysOut https://t.co/ewnspSgWqk +11/01/2017,Sports_celeb,@shaunwhite,RT @airandstyle: We are VERY excited to announce we are taking this party to the southern hemisphere!! Air + Style Sydney will be taking pl… +11/01/2017,Sports_celeb,@shaunwhite,"So happy to announce that August 3-5, 2018 we'll be hosting Air + Style Sydney 🇦🇺! More info at https://t.co/pvYBmQNJFV #airandstylesydney" +10/31/2017,Sports_celeb,@shaunwhite,💙 https://t.co/HyRUBRYj6D +10/31/2017,Sports_celeb,@shaunwhite,"so proud of the last 3 years, can’t wait for you guys to see what we’ve got for @airandstyle 2018! https://t.co/5cU1WIxEZ3" +10/27/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Coming soon... https://t.co/ClMGGN5n9U +10/19/2017,Sports_celeb,@shaunwhite,#tbt air + style LA 2017 😍 https://t.co/b9xxDOczQm +10/19/2017,Sports_celeb,@shaunwhite,👀 new episode of Turning Point up on @go90 https://t.co/kbdllA7g3Q +10/16/2017,Sports_celeb,@shaunwhite,that was some coooooold water 💦❄️ https://t.co/dxeTsQBDhk +10/11/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: Catch “Legends Live On” featuring @shaunwhite on @olympicchannel: Home of Team USA at 5pm ET. https://t.co/wIFNKYzvAV +10/10/2017,Sports_celeb,@shaunwhite,Been working on some fun stuff... 😏 https://t.co/4ILfOTV8Ix +10/10/2017,Sports_celeb,@shaunwhite,back in new zealand 🌲🕴🏻🌲 https://t.co/gGNlhRcHc1 +10/06/2017,Sports_celeb,@shaunwhite,thanks for hangin' today @MensHealthMag https://t.co/GtHjXJ4QL3 +10/04/2017,Sports_celeb,@shaunwhite,goooooooood times https://t.co/NIZKxzPw4u +10/02/2017,Sports_celeb,@shaunwhite,RT @CityOfLasVegas: How to help and find loved ones. Please share #PrayforLasVegas https://t.co/v0xaV3SAIm +10/02/2017,Sports_celeb,@shaunwhite,"RT @airandstyle: The goal of a music festival is to bring people from all backgrounds together in order to create a place of wonder, joy, a…" +09/26/2017,Sports_celeb,@shaunwhite,hey what's up hello 😎 https://t.co/PgyBxGEFW0 +09/22/2017,Sports_celeb,@shaunwhite,happy friday! #SharetheLaughter 😜 https://t.co/09avL2X2jy +09/22/2017,Sports_celeb,@shaunwhite,RT @airandstyle: There was nothing else like The @Berrics when it was formed in 2007... Catch this new episode of Turning Point on @go90 ht… +09/21/2017,Sports_celeb,@shaunwhite,👀 @airandstyle https://t.co/OFH9Joubyt +09/13/2017,Sports_celeb,@shaunwhite,woooo! #LA2028 https://t.co/tiAlgBURnI +09/11/2017,Sports_celeb,@shaunwhite,happy to be back in LA healing up! @thelinehotel https://t.co/ewIpdU5Lvh +09/09/2017,Sports_celeb,@shaunwhite,those affected by #HurricaneHarvey and #HurricaneIrma are in my thoughts. please stay strong and safe! ❤️🙏 +09/08/2017,Sports_celeb,@shaunwhite,RT @airandstyle: last week our staff joined @shaunwhite and @TreePeople_org for some volunteering. get outside this weekend and enjoy some… +09/05/2017,Sports_celeb,@shaunwhite,"Life's going to knock you down.. get up, learn from your mistakes, and you'll be better for it!… https://t.co/i9If6PyJcC" +09/05/2017,Sports_celeb,@shaunwhite,wanted to give a big THANK YOU for all the birthday wishes 🙂❤️ hope everyone had an awesome long weekend! +08/31/2017,Sports_celeb,@shaunwhite,big thanks to @TreePeople_org and @clifgreennotes for having the @airandstyle staff and me as volunteers today! got… https://t.co/w2C0VndyXD +08/29/2017,Sports_celeb,@shaunwhite,did a little 20 questions with @go90 at #OutsideLands this year... https://t.co/eDCzjwHK7M +08/28/2017,Sports_celeb,@shaunwhite,INSANE. 👏 @JaredLeto https://t.co/0DTegWHS1B +08/23/2017,Sports_celeb,@shaunwhite,😱🙌🤟 https://t.co/BdvmVmnxZH +08/22/2017,Sports_celeb,@shaunwhite,New episode of Turning Point today where we talk about my run at the 2012 Winter X-Games! Check it out on @go90… https://t.co/YI6Sz4NXV3 +08/21/2017,Sports_celeb,@shaunwhite,so sick ! https://t.co/fUrSbeHEVP +08/17/2017,Sports_celeb,@shaunwhite,🙌 good to see you back at it @markmcmorris https://t.co/4Z7dA92XW8 +08/16/2017,Sports_celeb,@shaunwhite,RT @HALFPOPS: Happy National Tell a Joke Day! Give us your best joke in the comments and we'll pick our favorites to get a free bag of Half… +08/16/2017,Sports_celeb,@shaunwhite,gotta love the 'bu https://t.co/NogB2cPyMv +08/10/2017,Sports_celeb,@shaunwhite,loved having you guys at @airandstyle 😂 Can't wait for episode 2 tonite #WWDD https://t.co/vFNvjE4p0N +08/08/2017,Sports_celeb,@shaunwhite,@Yourgirlken you too! 😎 +08/08/2017,Sports_celeb,@shaunwhite,😱😱😱 @NBCOlympics https://t.co/GrBlJdraP0 +08/07/2017,Sports_celeb,@shaunwhite,@ScrippsHealth thanks for having us and thank you Dr. Fronek for everything! +07/27/2017,Sports_celeb,@shaunwhite,thanks for hangin' @WSJLife 😎 https://t.co/LJoqIEAMmM +07/25/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: SOON. #winterolympics https://t.co/dxiC9GpfnG +07/20/2017,Sports_celeb,@shaunwhite,RT @airandstyle: We got some big plans… #AdventureInStyle #AirAndStyle https://t.co/wkb5C0SJ8g +07/18/2017,Sports_celeb,@shaunwhite,thank you so much @SInow for including me in the #Fashionable50 !! 🎉😎 https://t.co/7V16jXMKYi +07/15/2017,Sports_celeb,@shaunwhite,@burtonsnowboard ❤️❤️🏔️🏔️ +07/15/2017,Sports_celeb,@shaunwhite,RT @NBCOlympics: Olympic Channel: Home of Team USA is LIVE. Find Olympic Channel on your provider by going here: https://t.co/AzMVkDZcy0 ht… +07/14/2017,Sports_celeb,@shaunwhite,"RT @TeamUSA: Can’t get enough of watching Team USA athletes on and off the field of play? +Have we got a network for you! 😉 +➡️ https://t.co…" +07/13/2017,Sports_celeb,@shaunwhite,@simonpagenaud @IndyCar 🏎️🏎️ good to see you @simonpagenaud ! +07/10/2017,Sports_celeb,@shaunwhite,🙌🙌 https://t.co/XdPjbG00gR +06/29/2017,Sports_celeb,@shaunwhite,RT @EW: Breaking Big: Raucous Kentucky rockers Dan Luke & the Raid make good on their musical pedigree https://t.co/hxz4MkIn4R +06/10/2017,Sports_celeb,@shaunwhite,"RT @HALFPOPS: Unlike your brain by Friday afternoon, Halfpops are never fried. Here's to kicking off the weekend a little early! #TGIF http…" +06/03/2017,Sports_celeb,@shaunwhite,Bags https://t.co/3K4Oe6BK42 +06/02/2017,Sports_celeb,@shaunwhite,@LeeGWeinstein Awesome 🙌 +06/02/2017,Sports_celeb,@shaunwhite,VIEWS https://t.co/FARO4i7Fb6 +06/02/2017,Sports_celeb,@shaunwhite,ARCHIVES #tbt https://t.co/kgMzGcWAPD +06/01/2017,Sports_celeb,@shaunwhite,RT @airandstyle: 😍😍😍 @airandstyleibk https://t.co/GUGkc8VRDL +05/30/2017,Sports_celeb,@shaunwhite,Back at it with @TheTobyMiller @MammothMountain https://t.co/4PVFwgFmE9 +05/29/2017,Sports_celeb,@shaunwhite,@threatne 🙏 +05/29/2017,Sports_celeb,@shaunwhite,🇺🇸 Thank you to all who have served to protect our freedom... #MemorialDay https://t.co/cZQL6dC2My +05/28/2017,Sports_celeb,@shaunwhite,Chairlifts. @steveaoki and Jake Burton https://t.co/LPFRcDdTjs +05/27/2017,Sports_celeb,@shaunwhite,"RT @HALFPOPS: We’re busting into the weekend with a brand-new dance move. Ladies and gentlemen, meet the Black Truffle (& Sea Salt) Shuffle…" +05/25/2017,Sports_celeb,@shaunwhite,My Point of View #tbt https://t.co/bVlv8WuTn2 +05/25/2017,Sports_celeb,@shaunwhite,With Jake Burton @burtonsnowboard https://t.co/esNcdcN41b +05/23/2017,Sports_celeb,@shaunwhite,Heartbreaking. My prayers go out to the victims and their families. #manchester +05/23/2017,Sports_celeb,@shaunwhite,Damn! Fred Plocque-Santos... @yeahleyeah on IG https://t.co/9LBc5PylgU +05/23/2017,Sports_celeb,@shaunwhite,#Mondays https://t.co/i6yL7h6QDs +05/22/2017,Sports_celeb,@shaunwhite,Amazing night with @Phantogram in support of the @LynchFoundation https://t.co/1CbuVmG1K0 +05/21/2017,Sports_celeb,@shaunwhite,RT @airandstyle: .@marcuskleveland kicking off the tour right in Beijing https://t.co/wly8mM1Ctj +05/20/2017,Sports_celeb,@shaunwhite,Thanks @THRIVEmkt 🙌 https://t.co/5C29t9Gokj +05/20/2017,Sports_celeb,@shaunwhite,RT @airandstyle: Top skate photographer @atibaphoto has an absolute obsession with all things music. Check it out now on @go90 https://t.co… +06/29/2018,Sports_celeb,@DjokerNole,@LaverCup 💪💪 +06/28/2018,Sports_celeb,@DjokerNole,Back to @Wimbledon business 🌱🎾 #wimbledon https://t.co/jVlMSbtgUZ +06/27/2018,Sports_celeb,@DjokerNole,@novakfoundation @JelenaRisticNDF @WebitCongress 👏👏👏 +06/26/2018,Sports_celeb,@DjokerNole,It was a humbling feeling to celebrate 800 with Stephen Farrow and everyone at @QueensTennis. A career milestone I… https://t.co/AjaKeP6j4A +06/24/2018,Sports_celeb,@DjokerNole,"@QueensTennis, it was a pleasure being back and congratulations to @cilic_marin. A tough loss for me today, but the… https://t.co/n8oLyZZART" +06/23/2018,Sports_celeb,@DjokerNole,800 and counting 🙏 https://t.co/m9XokbYbqd +06/21/2018,Sports_celeb,@DjokerNole,#WorldCup2018 fever got me like... https://t.co/FuUObTbHGe +06/20/2018,Sports_celeb,@DjokerNole,I forgot how much I missed the smell of freshly cut grass… 😉💪 #airborne #fevertreechampionships @QueensTennis https://t.co/TP1gR7ZtIC +06/20/2018,Sports_celeb,@DjokerNole,@QueensTennis @WeAreTennis 💪💪💪 +06/19/2018,Sports_celeb,@DjokerNole,"RT @ATPWorldTour: Did you know that the @novakfoundation supports a fellowship @Harvard? 🤔 + +One '18-'19 Djokovic Science & Innovation Fello…" +06/17/2018,Sports_celeb,@DjokerNole,RT @JelenaRisticNDF: Join my @novakfoundation birthday fundraiser and help us support the professional development of teachers in Serbia! E… +06/17/2018,Sports_celeb,@DjokerNole,https://t.co/k3lZof6sOT @JelenaRisticNDF +06/15/2018,Sports_celeb,@DjokerNole,"Back at Queens tournament, first time since 2010. Happy to be here. One of the most beautiful Centre courts in the… https://t.co/OBGodQbN8F" +06/12/2018,Sports_celeb,@DjokerNole,"Feels like a good time for grass season, let’s GOOO.. 🎾💪 #fevertreechampionships #queenstennis https://t.co/zZQnfn9MuA" +06/06/2018,Sports_celeb,@DjokerNole,"Congratulations to Marco on his strong performance. Thank you Paris, thank you @rolandgarros 🙏❤ https://t.co/LAVNSHzjN0" +06/01/2018,Sports_celeb,@DjokerNole,Post match celebration 😆 @daddy_yankee https://t.co/DQpWjMaZR5 +06/01/2018,Sports_celeb,@DjokerNole,"R4, see you Sunday 🤙 #RG18 https://t.co/C6VYtJO4FS" +06/01/2018,Sports_celeb,@DjokerNole,Running with #RG18 ball boys and girls before the stadium opened today. Very special tradition in my heart 😄🏃‍♀️🏃‍♂️ https://t.co/cz3lldVIKy +05/31/2018,Sports_celeb,@DjokerNole,Celebrating 85th Anniversary of @LACOSTE 🐊 #TeamLacoste #Lacoste85th https://t.co/0RXzHCA6H4 +05/30/2018,Sports_celeb,@DjokerNole,@rolandgarros Let’s gooooo 💪 +05/29/2018,Sports_celeb,@DjokerNole,My real job. On rainy days. Shout out to all the grounds people who are working hard to make sure we have the best… https://t.co/vB7UI2bQ0r +05/27/2018,Sports_celeb,@DjokerNole,The world on your wrist. #SeikoAstron #SeikoFam @seikowatches https://t.co/hG3Viumk2F +05/26/2018,Sports_celeb,@DjokerNole,"Future champion!! Welcome back to your strong and fearless mom, @serenawilliams 💪👏👊 https://t.co/8FgygpwAWE" +05/26/2018,Sports_celeb,@DjokerNole,#Rafole or #Nolafa? Haha @RafaelNadal https://t.co/WPYHd5uyjz +05/26/2018,Sports_celeb,@DjokerNole,Serbian fans in Paris. Idemooo 🇷🇸 https://t.co/5Foykbr5nI +05/26/2018,Sports_celeb,@DjokerNole,@rolandgarros I’m always watching 👀♻️ +05/26/2018,Sports_celeb,@DjokerNole,These kids were too good 😂😂😂 #RG18 https://t.co/14dXvZmTaz +05/26/2018,Sports_celeb,@DjokerNole,I have a passion for tennis and I want to pass this on to aspiring athletes all over the world. #IMoveMe… https://t.co/HFhsk9WXsa +05/26/2018,Sports_celeb,@DjokerNole,The #RolandGarros version of my #GELResolutionNovak is available now - providing ultimate stability on court.… https://t.co/Ubn56CnoIu +05/26/2018,Sports_celeb,@DjokerNole,See you there today 👍😁 #RG18 https://t.co/rrAmgDkGqj +05/26/2018,Sports_celeb,@DjokerNole,"@usopen @BasiaID 🙏🙌 So grateful for the well wishes - thank you, US Open!" +05/26/2018,Sports_celeb,@DjokerNole,"@Olympics @BasiaID @OKSrbije Great memories. Thank you, guys!" +05/26/2018,Sports_celeb,@DjokerNole,"@rolandgarros @BasiaID Merci, RG! There was a lot of gluten-free 🍰🤙" +05/26/2018,Sports_celeb,@DjokerNole,"@gugakuerten @BasiaID Thank you, Guga!!" +05/26/2018,Sports_celeb,@DjokerNole,"@LACOSTE Thank you, @LACOSTE! 🐊🐊🐊" +05/25/2018,Sports_celeb,@DjokerNole,👍👏🎉 @novakfoundation #BelieveinTheirDreams https://t.co/BEaprIfcTv +05/25/2018,Sports_celeb,@DjokerNole,We reached our $31k goal today! 🙌 I want to share my love and appreciation for everyone’s support and trust in the… https://t.co/PMOIihuG3p +05/25/2018,Sports_celeb,@DjokerNole,Live on @facebook! Come say hi 👍 +05/25/2018,Sports_celeb,@DjokerNole,The most rewarding part of my day.. #bestfriendswithnature #familytime #paris https://t.co/mgI2Eb48Gw +05/25/2018,Sports_celeb,@DjokerNole,Humble beginnings. #ASICSTennis #IMoveMe @ASICSTennis #RG18 https://t.co/mmrze8xu6q +05/24/2018,Sports_celeb,@DjokerNole,Radujem se što je knjiga od Karol dostupna u mojoj zemlji na srpskom jeziku 👍 https://t.co/YUGx6uYtst +05/24/2018,Sports_celeb,@DjokerNole,#TeamDjokovic practice 🤟 #RG18 @rolandgarros https://t.co/3iOsF0OZHX +05/23/2018,Sports_celeb,@DjokerNole,Beautiful day on Champs-Élysées with my HEAD family. Proud to continue working with Johan. Thanks to their team for… https://t.co/GVXLLlrgRo +05/22/2018,Sports_celeb,@DjokerNole,My birthday present to myself. Uphill sprints. @rolandgarros see you soon 💪 #RG18 #training #birthday #fun https://t.co/w3eAj5eWJI +05/22/2018,Sports_celeb,@DjokerNole,Today is the big 3-1! This year I’m dedicating my birthday to the @novakfoundation and #earlychildhood education. H… https://t.co/D46JTBOHyS +05/19/2018,Sports_celeb,@DjokerNole,"Roma, I‘ll keep coming back every year to this special place. Your energy will carry me to the next challenge. Than… https://t.co/0WfPo8ndqx" +05/19/2018,Sports_celeb,@DjokerNole,Plenty of progress and passion to take with me to RG. Thanks everyone for your continued support. See you back on c… https://t.co/rx1ZyUz3Hc +05/19/2018,Sports_celeb,@DjokerNole,This guy! Srdjan Novakovic was my opponent in my first match ever at Belgrade Tennis Club in 1995. So nice to recon… https://t.co/gnm1mRSdEP +05/18/2018,Sports_celeb,@DjokerNole,FORZAAA #semifinals #idemo #grazie #ibi18 @InteBNLdItalia https://t.co/YGw2jT1pzO +05/18/2018,Sports_celeb,@DjokerNole,"RT @head_tennis: Grande @DjokerNole 💪 semis, here we come! #ibi18 https://t.co/HcMd9n5Jwr" +05/18/2018,Sports_celeb,@DjokerNole,🏃‍♂️ https://t.co/FjmjFTYYlE +05/18/2018,Sports_celeb,@DjokerNole,"RT @LACOSTE: Greatness awaits. +Every inch of the court under control to reach his first semi-final of 2018. +#TeamLacoste #BeautifulTennis…" +05/18/2018,Sports_celeb,@DjokerNole,#NoleFam!!!! Incredibili! Grazie a tutti 🙏😆💪#ibi18 @InteBNLdItalia https://t.co/AQLlKPKF69 +05/17/2018,Sports_celeb,@DjokerNole,#KidsDay in Rome was 🔥... https://t.co/0td7NxmJfm +05/16/2018,Sports_celeb,@DjokerNole,❤️❤️❤️ https://t.co/9fAh7gSCe9 +05/16/2018,Sports_celeb,@DjokerNole,"💪💪 Roma, ti amo ❤️ #ibi18 https://t.co/hxurGaUD0h" +05/16/2018,Sports_celeb,@DjokerNole,Thank you for the continued love and support #NoleFam. So grateful to play on clay here at @internazionalibnlditali… https://t.co/DOVHf7pUEi +05/11/2018,Sports_celeb,@DjokerNole,Game face 🇮🇹🏋️‍♂️ #ibi18 @InteBNLdItalia https://t.co/KXbmbnkJoE +05/11/2018,Sports_celeb,@DjokerNole,Back home making new friends 😆👍👍 #NoleFam https://t.co/dbNkhKbSID +05/09/2018,Sports_celeb,@DjokerNole,@ASICSTennis @MutuaMadridOpen @GettySport Let’s go! +05/09/2018,Sports_celeb,@DjokerNole,My friends that make it all happen! Thanks for letting me get a pic 😁✌️@ATPWorldTour @MutuaMadridOpen #MMOPEN https://t.co/y4ZYeCss8f +05/08/2018,Sports_celeb,@DjokerNole,"You’re welcome, man! Thanks for the support 🤟 #NoleFam https://t.co/cf5bV7AiMN" +05/08/2018,Sports_celeb,@DjokerNole,@fabsantoro72 @TheRealPatCash @ATPWorldTour Haha challenge accepted bro! +05/08/2018,Sports_celeb,@DjokerNole,@MilosTeodosic4 #Teo4 stižem. Da ponesem reket? 😂 za one palačinke zbog kojih smo svi počeli da se bavimo sportom! 😃👌 +05/08/2018,Sports_celeb,@DjokerNole,".@MilosTeodosic4, @LeaderOfHorde, @JokicNikola15 what do you guys think? #TeamDjokovic is ready for some street bas… https://t.co/Os7ZITHH5z" +05/07/2018,Sports_celeb,@DjokerNole,💪💪 #MMOPEN https://t.co/ycIYASmyJU +05/07/2018,Sports_celeb,@DjokerNole,"Seguro es el más especial. Gracias, Manolo 🙏 https://t.co/MiP7kr4Q0F" +05/05/2018,Sports_celeb,@DjokerNole,"Good to be here, @MutuaMadridOpen. Let’s play some tennis 🤙🎾 #MMOPEN https://t.co/qfxMqSkliq" +05/05/2018,Sports_celeb,@DjokerNole,Sometimes you gotta use your feet 🤷‍♂️💃⚽️ #MMOPEN https://t.co/BvNfKO4tft +05/04/2018,Sports_celeb,@DjokerNole,Come on @andy_murray. We can’t let them speak about our matches as “a long time ago” 😂🤣🎥 May the Force be with you… https://t.co/cKgNuhE4pU +05/03/2018,Sports_celeb,@DjokerNole,A little time at home before Madrid 😁 #familyreunion https://t.co/s7QKY5I2kg +05/03/2018,Sports_celeb,@DjokerNole,Uphill biking 🚵‍♂️... https://t.co/abWLzUF4O0 +05/02/2018,Sports_celeb,@DjokerNole,Taking these down the line 🔝➖✅☄️ https://t.co/CRPrQ5I37z +05/01/2018,Sports_celeb,@DjokerNole,Stretch partner (yesterday) @MihailoTopic 👍 https://t.co/IIbZMqWDgb +04/29/2018,Sports_celeb,@DjokerNole,Today's training challenge with Marko was... https://t.co/wvvmWgS2u2 +04/27/2018,Sports_celeb,@DjokerNole,April u Beogradu. Lep uvek a najlepši na proleće. Zahvalan sam što provodim kvalitetno vreme sa braćom. / Spring ma… https://t.co/zj0bH92lwR +04/25/2018,Sports_celeb,@DjokerNole,Happy 5th anniversary #NoleFam 🙌❤️ Thank you for the unwavering support year round.. sending lots of love and well… https://t.co/7jzHjoMmbz +04/22/2018,Sports_celeb,@DjokerNole,#EarthDay reminds me that some of my most favorite memories are... https://t.co/ZW30lNzGC5 +04/21/2018,Sports_celeb,@DjokerNole,Today’s practice squad 👌☄️ #montecarlocountryclub #atp #bcnopenbs https://t.co/0JQEbsPycM +04/20/2018,Sports_celeb,@DjokerNole,🙋‍♂️🎾💪 It’s been a while Barcelona... see you soon! #bcnopenbs https://t.co/ha1enL8oiX +04/18/2018,Sports_celeb,@DjokerNole,Keeping the energy high and my mind in the game 💪🎾 We can do this #TeamDjokovic https://t.co/PwImacl5pc +04/16/2018,Sports_celeb,@DjokerNole,Feeling good 🙏💪 Thank you for the love #NoleFam https://t.co/BKdOt1Nxsn +04/15/2018,Sports_celeb,@DjokerNole,Great day yesterday at the #PrinceAlbertFoundation charity exhibition 👍🎾😎 Tomorrow it’s our turn to play #NoleFam.… https://t.co/Krmbu6uvbi +04/12/2018,Sports_celeb,@DjokerNole,"I wanted to share something simple I always try to remember. No matter how good you are at something, there is alwa… https://t.co/bPsk27dLrs" +04/09/2018,Sports_celeb,@DjokerNole,Tough business today 😂🏋‍♂ #whenthegoinggetstough #trainhard #mondaymotivation #ithappens https://t.co/QbFagaDaQg +04/08/2018,Sports_celeb,@DjokerNole,"Hristos Vaskrse, srećan Uskrs svima koji ga slave! Želim vam radost i toplinu familijarne atmosfere. Kada je cela p… https://t.co/hR8vnGjHxw" +04/07/2018,Sports_celeb,@DjokerNole,Back on clay! Let’s get dirty! 😂😜 https://t.co/nybinxIDzJ +04/06/2018,Sports_celeb,@DjokerNole,"Happy International Day of Sport, guys! 💪🤸‍♀️🎾 Don’t you think sport has the incredible power to change our 🌎? I’m… https://t.co/MGkqaSUWHn" +04/04/2018,Sports_celeb,@DjokerNole,https://t.co/Yxgw4Xky8m +04/01/2018,Sports_celeb,@DjokerNole,Happy Easter weekend everybody! Hope you are enjoying with your loved ones ❤ https://t.co/T4koq20xmm +03/22/2018,Sports_celeb,@DjokerNole,Happy to meet nice guys and great football players from Croatian National team. Srećno momci @HNS_CFF https://t.co/vXp7JQIwbg +03/20/2018,Sports_celeb,@DjokerNole,"Great seeing you today, my friend @FerVerdasco 🤙🏼 @MiamiOpen https://t.co/z1lYlg9C8S" +03/20/2018,Sports_celeb,@DjokerNole,The world should have more places like @MiChiMu. I took Stefan with me today and had a wonderful chance to read Pet… https://t.co/hd3IOBoiIh +03/18/2018,Sports_celeb,@DjokerNole,Miami! Good to be back 🎾👌 https://t.co/Bfz0cGpAy6 +03/11/2018,Sports_celeb,@DjokerNole,IDEMOOOOOO #BNPP018 #TeamDjokovic 👏 https://t.co/KfT2S1ez2Z +03/11/2018,Sports_celeb,@DjokerNole,Who else is ON FIRE this weekend? @D_Copperfield I know your trick and I have more up my sleeve. Coming to steal yo… https://t.co/iGmZ1R5AgX +03/11/2018,Sports_celeb,@DjokerNole,Your guy is BACK (and more flexible than ever). Tomorrow. Let’s get it 👊🎾 #NoleFam #TennisParadise #FullBloom https://t.co/wVDWueoZUH +03/08/2018,Sports_celeb,@DjokerNole,"Celebrating all of the wonderful women in my life today. Admiring their strength, persistance, passion, love, kindn… https://t.co/DuZi88ZoT2" +03/07/2018,Sports_celeb,@DjokerNole,What a humbling place to visit and recharge before practice ⛰☀️👌 #grandcanyon #indianwells https://t.co/RJtP1VQ7k4 +03/06/2018,Sports_celeb,@DjokerNole,Back in the office with @filipkrajinovic #TeamLacoste 🤙🐊🎾 https://t.co/MS9mKYfH3t +03/03/2018,Sports_celeb,@DjokerNole,Always nice talking to you @carole_bouchard. Glad I can make you laugh too 😂🎾 #djokeralways #livelaughlove https://t.co/8AtiGUKM71 +03/03/2018,Sports_celeb,@DjokerNole,Here you can support Carol’s work and read exclusive interview we did while I was stretching on the airport 🤣🤸‍♂🥁✈️ https://t.co/aUl6eLIATB +03/03/2018,Sports_celeb,@DjokerNole,Feels good to be outdoors in the sun and hitting the ball again. Day by day... #nevergiveup ☀️ https://t.co/ccIqyKTm8v +03/02/2018,Sports_celeb,@DjokerNole,"Vivaaaa Las Vegas, baby. Idemo🕺 https://t.co/QrGsHdHwTN" +03/01/2018,Sports_celeb,@DjokerNole,Making the most of every situation and space 😂✈️🚌 #stretching #travel https://t.co/cGVYdwGYXH +02/27/2018,Sports_celeb,@DjokerNole,Great to have a day on court with you guys! https://t.co/Fk65YNOl02 +02/27/2018,Sports_celeb,@DjokerNole,"WOW, snowed all day in #monaco yesterday ❄️😛#anythingispossible https://t.co/YgO7imT7I9" +02/17/2018,Sports_celeb,@DjokerNole,😂 @pierre_vaultier let’s make it happen. See you at RG! And congratulations on your Olympic medal(s)! https://t.co/m7HSoda6Vu +01/22/2018,Sports_celeb,@DjokerNole,That was an incredible performance #Chung! Keep up great work. You’ve got this! 👏 #AusOpen https://t.co/GjCwmnhXOd +01/22/2018,Sports_celeb,@DjokerNole,"At the end of the day, these are the moments that mean the most #DreamBig #AusOpen @Eurosport https://t.co/6QLy8uLdOi" +01/21/2018,Sports_celeb,@DjokerNole,And here’s my favorite part of my training session #DreamBig https://t.co/PMBt6I8zm9 +01/18/2018,Sports_celeb,@DjokerNole,Another hot day ☀️😵💦♨️. Good luck to everyone playing today! https://t.co/kxtlrPv5kF +01/18/2018,Sports_celeb,@DjokerNole,It's like he wrote... a hot day at the office. 😵 https://t.co/DH2S1wdq7h +01/17/2018,Sports_celeb,@DjokerNole,RT @ASICSTennis: Back with a bang! Novak Djokovic is up and running at the #AusOpen and looking sharp! Nice new shoes too 😉 #IMoveMe #AusOp… +01/16/2018,Sports_celeb,@DjokerNole,"Back after six months, it feels so great. And no better place to be than here in Australia 😁 #AusOpen (Photo credit… https://t.co/Q21zWZBwGd" +01/15/2018,Sports_celeb,@DjokerNole,Very happy to be back on the blue court and with the full support of a great coaching team. https://t.co/Vxio50sdAY +01/09/2018,Sports_celeb,@DjokerNole,Really looking forward to #TieBreakTens Melbourne Jan 10. Excited to try out this new fast paced format. It’s a gre… https://t.co/gWxPCrmtjZ +01/08/2018,Sports_celeb,@DjokerNole,RT @tiebreaktens: Just 4 days to go! We've got a few remaining tickets left. Don't miss out on the first #TBTens Melbourne. With players li… +01/07/2018,Sports_celeb,@DjokerNole,Finally back in the land down under. I feel ready! Idemo!! #AusOpen https://t.co/HFvpn3U5I1 +01/03/2018,Sports_celeb,@DjokerNole,An update here from my team: https://t.co/VJKakhY3bq +12/30/2017,Sports_celeb,@DjokerNole,Unfortunately the situation with the elbow has not changed for better since yesterday. I still feel the pain. There… https://t.co/FsbNV8Atez +12/29/2017,Sports_celeb,@DjokerNole,I am terribly disappointed that I am forced to withdraw from the Mubadala World Tennis Classic. Thank you all for y… https://t.co/nThfQalkft +12/25/2017,Sports_celeb,@DjokerNole,Merry Christmas 🤶 ❤️ 🎉😗 https://t.co/jUoPe7USS6 +12/24/2017,Sports_celeb,@DjokerNole,Great practice today with Thomas Fabbiano 👍👊😁 Idemoooo #NoleFam https://t.co/SsJcWKUHM9 +12/20/2017,Sports_celeb,@DjokerNole,Congratulations on your jersey retirement @kobebryant. One of my favorites. #Ko8e24 🏀 https://t.co/pxPp29GFlq +12/13/2017,Sports_celeb,@DjokerNole,A #czech sandwich 🥪 style practice with @tomasberdych and @stepec78.. 😂 https://t.co/5wktDFoXOm +12/07/2017,Sports_celeb,@DjokerNole,Can you beat the machine 🤖? We killed it playing this game meant for enhancing eye-hand coordination. #Zverev https://t.co/VhlQivXhkJ +12/02/2017,Sports_celeb,@DjokerNole,"Lots to be done, but we embrace it with lots of excitement 💪👌. Practice today with @andreagassi and @stepec78 https://t.co/skcyuZKXxT" +11/30/2017,Sports_celeb,@DjokerNole,We have a new official member of the #TeamDjokovic guys. #NoleFam please welcome Radek Stepanek to our team 👏 https://t.co/jQR46FQyvV +11/30/2017,Sports_celeb,@DjokerNole,Who wants to Instagram live 🤨? Join me there in 30 min everyone ☺️ +11/20/2017,Sports_celeb,@DjokerNole,"Our children. +Our future. +This #WorldChildrensDay, my @novakfoundation and I are joining @UNICEF to make children’s… https://t.co/kE8PEB6hoX" +11/20/2017,Sports_celeb,@DjokerNole,"For us, kids mean HOPE, a promise for a better tomorrow! We celebrate our children not just today, but #everyday… https://t.co/u8ktDfF1PK" +11/10/2017,Sports_celeb,@DjokerNole,Almost hit @jkcorden’s head! 😬 Here’s me doing 🎾 target practice on the #latelateshow https://t.co/vAPKeJNDK7 +11/08/2017,Sports_celeb,@DjokerNole,On the @latelateshow with @jkcorden tonight! Turn on your tv 📺 for some funny moments with these guys. 😆… https://t.co/0YQ15YvJLq +11/08/2017,Sports_celeb,@DjokerNole,RT @ScottiePippen: Ran into a tennis GOAT and a favorite of mine at lunch yesterday @DjokerNole https://t.co/voiAHPFjL2 +10/29/2017,Sports_celeb,@DjokerNole,Stopped by to say hello to the amazing @RolexPMasters crew! 👏🏼😁 Great to see u guys!! https://t.co/2yAjqF1lYL +10/24/2017,Sports_celeb,@DjokerNole,"China 🇨🇳, forever one of my fave places to play. See this video from @TennisTV: https://t.co/QHPHNJdic4" +10/17/2017,Sports_celeb,@DjokerNole,"Girafficus, good job for coming in the jeans to the gym 👌😂👏👍 https://t.co/3mhQsI88Iw" +10/03/2017,Sports_celeb,@DjokerNole,The people of the Caribbean need our help - watch this emotional #helphopehurricanes video and support the cause 🙏 https://t.co/afSYQArqS4 +10/02/2017,Sports_celeb,@DjokerNole,"Wow, we have come far on our #MeetNoleFam tour! 🌎👏❤️ Now for the final interview, we return to China 🇨🇳: https://t.co/q4tAoiaoV4" +09/27/2017,Sports_celeb,@DjokerNole,Taking a break in Paris to check out the #LacosteSS18 🐊🐊🐊 runway collection! https://t.co/7UOifKJTTW +09/21/2017,Sports_celeb,@DjokerNole,"I wish I was with these amazing kids on #FriendshipGames2017 right now! They're having so much fun! :) Great work,… https://t.co/5VfLev4s3B" +09/20/2017,Sports_celeb,@DjokerNole,"A living legend, an inspiration and a #sport father to us all, Dušan Duda Ivković! Hvala Ti! #ThankYouDuda 👏🏆 https://t.co/S95kiAYsYh" +09/13/2017,Sports_celeb,@DjokerNole,Idemoooo momci!! Forza fratelli di Serbia e d' Italia #TimSrbija🇷🇸 #EuroBasket2017 https://t.co/60vGyDbXAM +09/09/2017,Sports_celeb,@DjokerNole,I love this baby crocodelle!! Thank you @LACOSTE for supporting me and celebrating this new life with us! 🤗🐊👨‍👩‍👧‍👦🎊 https://t.co/EVGQ6ULUtJ +09/09/2017,Sports_celeb,@DjokerNole,"@UNICEF Thank you! We all should be their champions and role models, believing in their beautiful dreams 🤗" +09/09/2017,Sports_celeb,@DjokerNole,@head_tennis Thank you #HEADfamily 🙏🎉 +09/09/2017,Sports_celeb,@DjokerNole,@usopen @JelenaRisticNDF Thank you #USOpen She is lovely ❤️🙏 +09/09/2017,Sports_celeb,@DjokerNole,Thank you for all your messages & love for Tara 🙏  We love you all ❤️👨‍👩‍👧‍👦😍 #NoleFam https://t.co/MGgdUy2vUk +09/04/2017,Sports_celeb,@DjokerNole,Idemoooooo 🙏👏🏻 #EuroBasket2017 https://t.co/JXE1ydYbLA +09/04/2017,Sports_celeb,@DjokerNole,"Thanks for being an inspiration and make me who I am today. Even in more difficult times, I reflect & realize how l… https://t.co/cvwc1LJcLL" +08/30/2017,Sports_celeb,@DjokerNole,It is my favorite part of the month again! Time to #MeetNoleFam and learn more about @NoleSwedenFan ❤ https://t.co/DX0Lm44WOS +08/29/2017,Sports_celeb,@DjokerNole,I know you can! Just put a smile on your face 😁⛳️👐 #NovakChallenge https://t.co/7WZdvI8aVj +08/25/2017,Sports_celeb,@DjokerNole,"Love is such a powerful force and emotion. Having Jelena in my life, & her love, has made me a better man ❤️ So, wh… https://t.co/OZKWHYAMyu" +08/23/2017,Sports_celeb,@DjokerNole,I am so excited!! My new website & mobile apps are live! 😁 👏 Hope you'll like it #NoleFam 🙏 https://t.co/mKz48IxRLM +08/23/2017,Sports_celeb,@DjokerNole,Love that I feel for my brother is unconditional! I will always feel inseparable to him 🙏🏻 ❤️ Who makes you my… https://t.co/dM3aNJ3WPL +07/31/2017,Sports_celeb,@DjokerNole,It's that time of the month again! Time to #MeetNoleFam 🙏🏼❤ Follow the link to meet Priyanka from @NovakIndiaFans https://t.co/vBBKYXlcrd +07/28/2017,Sports_celeb,@DjokerNole,@Wimbledon Thank you 🙏 +07/28/2017,Sports_celeb,@DjokerNole,Thank you. I'll be back soon! 🎾 https://t.co/KU99n9g08E +07/28/2017,Sports_celeb,@DjokerNole,@AustralianOpen Thank you and see you soon! +07/28/2017,Sports_celeb,@DjokerNole,@rolandgarros Merci beaucoup mes amis! +07/28/2017,Sports_celeb,@DjokerNole,@usopen Thank you <3 +07/28/2017,Sports_celeb,@DjokerNole,Crocodile never gives up 🐊 Thank you #grateful https://t.co/qL6yTr8gVz +07/26/2017,Sports_celeb,@DjokerNole,I took time to make a decision about my recovery. Sorry for keeping you in the dark these days. Read more here https://t.co/tCSw46TOL2 +07/26/2017,Sports_celeb,@DjokerNole,Thank you all for patiently waiting for the news about my recovery. Join me on FB live at around 14:15 CEST to hear more about it #NoleFam +07/07/2017,Sports_celeb,@DjokerNole,I feel for u and wish u fast recovery @BMATTEK So sorry that you are going through so much pain. Glad to see many people sending u love ❤ +07/05/2017,Sports_celeb,@DjokerNole,Happy to meet my friend @PKSubban1 and have him watch my match at Wimbledon 😃👌 https://t.co/3ZZESdKbfk +07/03/2017,Sports_celeb,@DjokerNole,Sometimes seeing is more effective... #gameanalysis #gettingready #wimbledon https://t.co/mOoaTtxKPx +06/28/2017,Sports_celeb,@DjokerNole,The time has come to #MeetNoleFam👏🏼 Join me on my virtual trip to 🇨🇳 and meet Alex Zeng who manages Fan Club China https://t.co/rQDHPhajuO +06/24/2017,Sports_celeb,@DjokerNole,"The first practice had to wait today due to rain ☔️. But you know what they say... No rain, no gain. Or was it some… https://t.co/kKEoGQMaif" +06/21/2017,Sports_celeb,@DjokerNole,See you in a few days Eastbourne! https://t.co/EZ92rGRyR7 +06/20/2017,Sports_celeb,@DjokerNole,Great #DayAtWork guys! Had a lot of fun and amazing practice today! How was your day #nolefam? 😤😁💪🏼 https://t.co/M0cz9oDcrr +06/08/2017,Sports_celeb,@DjokerNole,My Belgrade from the sky. Warms my heart and soul each time. https://t.co/BFpWBGAWJr +06/03/2017,Sports_celeb,@DjokerNole,Wow sounds amazing! Thank you #NoleFam I'd love to see your #NoleRG17 videos 👌🏼😃🎬 https://t.co/Ybd9v38HwM +05/30/2017,Sports_celeb,@DjokerNole,I'm so excited! 🙌The 2nd #MeetNoleFam interview is live. Thank you my #NoleFam from the Balkans. 💪🤛 You are amazing! https://t.co/6I53FL20Wa +05/26/2017,Sports_celeb,@DjokerNole,2 vs 1 and I and I am still standing tall. Anyone want's to try? 💪😜 https://t.co/pYz1mGFqYK +05/25/2017,Sports_celeb,@DjokerNole,"New gear, new coach, new start. How exciting! #NoleFam please welcome our new member @AndreAgassi 👏🙌👍 https://t.co/aE53GeEw98" +05/23/2017,Sports_celeb,@DjokerNole,Had so much fun with the @LACOSTE team. 🐊😀And you know me... I like to keep up the good spirit.🙌 #NewCroc2017 https://t.co/qOB6H45ai0 +05/22/2017,Sports_celeb,@DjokerNole,@UNICEF Thank you!! 🙏❤️ +05/22/2017,Sports_celeb,@DjokerNole,"Yes, madam, already! 😊🤗 Thank you so much! https://t.co/nD0xz7qzyV" +05/22/2017,Sports_celeb,@DjokerNole,Thank you!!! 🎉🎊 https://t.co/Z3m2hQ7kyM +05/22/2017,Sports_celeb,@DjokerNole,Thank you! https://t.co/1H3dMbRajU +05/22/2017,Sports_celeb,@DjokerNole,"Wow! This is amazing 🤗 Thank you for this, I am speechless 🙏 #NoleFam https://t.co/RXOGwBZADm" +05/22/2017,Sports_celeb,@DjokerNole,🙏 Thank you #NoleFam https://t.co/kBwDAw8y9a +05/22/2017,Sports_celeb,@DjokerNole,@Oliviahsiao0418 @JelenaRisticNDF @NovakFanClub Hehe love you back <3 Thank you! +05/22/2017,Sports_celeb,@DjokerNole,"Proud to be part of this revolutionary @LACOSTE story, that still lasts till this day. I'm proud to be the new Croc… https://t.co/Zr0o5uMe5v" +05/17/2017,Sports_celeb,@DjokerNole,#tb to @rolandgarros 2016. What a journey! I will never forget it. Thx for these series of videos🙏Tune in 🔛… https://t.co/cpURGFTU7L +05/15/2017,Sports_celeb,@DjokerNole,Look who stopped by to join me and the boys for a training session in Roma! @OfficialGoran 🎾 https://t.co/zypFNRJOoo +05/12/2017,Sports_celeb,@DjokerNole,Not an easy decision @keinishikori but health is priority. Wishing you fast recovery and hope to see you in Rome! +05/06/2017,Sports_celeb,@DjokerNole,Always good practice with Stan the man @stanwawrinka! 👏🏼💪🏻 Who looks more tired? 😂 https://t.co/8hq0eBshB0 +05/05/2017,Sports_celeb,@DjokerNole,It's great to be back! Hello Madrid 😃 #FirstPractice at @MutuaMadridOpen https://t.co/7wI1D3AYPQ +05/05/2017,Sports_celeb,@DjokerNole,I have news that I'd like to share with you. https://t.co/ffMD5LZi5V +05/04/2017,Sports_celeb,@DjokerNole,I'm so proud of the @novakfoundation's partnership with @HarvardCenter! Let's wish the 4 #DjokovicFellows all the l… https://t.co/g7wt7CmCiE +05/01/2017,Sports_celeb,@DjokerNole,Working hard on international workers' day 😂👌🏼 https://t.co/5a4mG0Hvmr +04/28/2017,Sports_celeb,@DjokerNole,We had so much fun on that day with @head_tennis! Hope you enjoy this “behind the scenes“ video #nolefam as much as… https://t.co/CezfLqhclE +04/27/2017,Sports_celeb,@DjokerNole,The 1st #MeetNoleFam interview is live! I'm sooo excited to unite @NovakFanClub for the 1st time in a photo 😃👌… https://t.co/bBF8Zs4Sf6 +04/22/2017,Sports_celeb,@DjokerNole,THANK YOU my #NoleFam! I want to share with the whole world how amazing you are!! #MeetNoleFam #NoleFamDay <3 https://t.co/5VeLTHuyLV +04/22/2017,Sports_celeb,@DjokerNole,@KK_Ainrye Thank you 🙏🏻 +04/19/2017,Sports_celeb,@DjokerNole,Best way to warm up for work 😂🚲 https://t.co/JkCDXStH1y +04/19/2017,Sports_celeb,@DjokerNole,Wanted some @EqvitaRes refreshments and got a triple surprise! 💚Join @novakfoundation 's #Sportin1Word campaign!… https://t.co/TnmLhrePag +06/30/2018,Sports_celeb,@steveaustinBSR,@Showtorious Careful. 17 is high. +06/29/2018,Sports_celeb,@steveaustinBSR,RT @OGkevingill: This is so great!! I got to do a double episode with @GregoryIron and it’s one of the best Episodes I’ve ever released.… +06/29/2018,Sports_celeb,@steveaustinBSR,"Great talkin’ w you!RT @GregoryIron: Just spent the afternoon recording a few hours of audio whoop-ass with ""Stone… https://t.co/tNNGkCwduU" +06/29/2018,Sports_celeb,@steveaustinBSR,RT @madhouseincfam: Celebrating #payday with #madhouseincfam style #wrestlingislife #wrestling #wwe #wwf #raw #wwenetwork #steveaustin @ste… +06/29/2018,Sports_celeb,@steveaustinBSR,@Mick_Bailey Cheers! +06/29/2018,Sports_celeb,@steveaustinBSR,"RT @Mick_Bailey: After years of trying to get at least 1 bottle of this beer into the UK, a client at ... https://t.co/TAxSgqMQHu" +06/29/2018,Sports_celeb,@steveaustinBSR,Good talking w you!RT @SBakerMD: Had a great time talking with Stone Cold @steveaustinBSR today- looks like he’s g… https://t.co/O7fBsfbGx2 +06/28/2018,Sports_celeb,@steveaustinBSR,"RT @LODRoadWarriors: Throwback! Oh hell yeah! 🍺 +@HeymanHustle @steveaustinBSR https://t.co/uOK705y4VU Good times." +06/28/2018,Sports_celeb,@steveaustinBSR,"@JaredLee264 @IAmJericho Yes, indeed. WM17 from Houston. I watched it back on @WWENetwork. One of the best all time… https://t.co/ke0apdBFJT" +06/28/2018,Sports_celeb,@steveaustinBSR,I’ll have a steak and a stunner on standby...RT @SBakerMD: Tomorrow I meet with @steveaustinbsr! Can I convince the… https://t.co/pRNO9msTz9 +06/27/2018,Sports_celeb,@steveaustinBSR,RT @FamousBouncers: #WhenWeWereBouncers alumni @steveaustinBSR and @IAmJericho talk all kinda awesome stuff on the latest @TalkIsJericho!!!… +06/27/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!!!RT @IAmJonathan30: NOW @TalkIsJericho, @steveaustinBSR talks rock n roll, getting puked on at… https://t.co/EQTyXGs0q1" +06/26/2018,Sports_celeb,@steveaustinBSR,@palstheman Glad you’re enjoying your ATV. I dig my Brute Force. +06/26/2018,Sports_celeb,@steveaustinBSR,"Good times, for sure. RT @BookerT5x: Haha! @steveaustinBSR" +06/25/2018,Sports_celeb,@steveaustinBSR,@SteveEJ That’s a badass sharp knife. Enjoy it! @Coldsteelknives +06/25/2018,Sports_celeb,@steveaustinBSR,"@bobgallop Catch you next time... +Swig of beer!" +06/25/2018,Sports_celeb,@steveaustinBSR,@Weellll_YouKnow Damn right. Cheers! +06/25/2018,Sports_celeb,@steveaustinBSR,@LesterBarberena 😂 +06/24/2018,Sports_celeb,@steveaustinBSR,RT @matthewv316: Always reppin’ @steveaustinBSR even if I get with with a Diamond Cutter from @RealDDP https://t.co/3fbIlNbil1 +06/23/2018,Sports_celeb,@steveaustinBSR,"And that’s the bottom line. RT @espn: On This Date: In 1996, Austin 3:16 was born. https://t.co/ZzYJiajPAG" +06/23/2018,Sports_celeb,@steveaustinBSR,"@Fgbrisco Sorry about that Gerry. Just trying to protect the business.. 😂 +Don’t forget the time in Kuwait where you… https://t.co/OS21x9V1t7" +06/23/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @KevinMichie: Finally got a chance to try @steveaustinBSR’s beer while in Los Angle-eez. The Broken Skull… https://t.co/yuJmbxEOSr +06/22/2018,Sports_celeb,@steveaustinBSR,@TheC00LRob Swig of beer! +06/22/2018,Sports_celeb,@steveaustinBSR,@Clurrrrrrrrr Cheers! +06/22/2018,Sports_celeb,@steveaustinBSR,@Richard83448755 At the time I only had one bad knee.. +06/21/2018,Sports_celeb,@steveaustinBSR,@JonnyCatalina Yes. Stay tuned. +06/21/2018,Sports_celeb,@steveaustinBSR,@TheTimBanks1 Hell Yeah! Cheers. +06/20/2018,Sports_celeb,@steveaustinBSR,"RT @pepperdoc111: @steveaustinBSR +Big Van Vader +giving +Stone Cold Steve Austin +1 gun salute +RIP +#Vader https://t.co/dZRTxJVofm" +06/20/2018,Sports_celeb,@steveaustinBSR,@MrJdubya1216 Oh Hell Yeah! +06/20/2018,Sports_celeb,@steveaustinBSR,@stnecldcollctr 👍👍 +06/20/2018,Sports_celeb,@steveaustinBSR,@missdiss_lexia And that’s the bottom line. +06/19/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: Nothing beats two guys enjoying a conversation about wrestling and enjoying some beer as with @mexwarrior on @steveausti… +06/17/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!!! #ChicagoRT @cooperdog31: @steveaustinBSR Ready for Money in the Bank Chicago with my brothers, got… https://t.co/KOvM4RVQvG" +06/16/2018,Sports_celeb,@steveaustinBSR,@Drew0531 Hell Yeah! +06/16/2018,Sports_celeb,@steveaustinBSR,@justgivverbud Oh Heck Yeah!! +06/16/2018,Sports_celeb,@steveaustinBSR,@MattWaters1995 Citizen dive watch. Spent about 200-250 bucks on it. Lotta money for the early 90’s. Good watch. +06/15/2018,Sports_celeb,@steveaustinBSR,@sardonic_wrath Oh Hell Yeah!!! +06/15/2018,Sports_celeb,@steveaustinBSR,@myermania We tried to make chicken salad out of chicken shit. We failed. +06/15/2018,Sports_celeb,@steveaustinBSR,@jasonettinger Very cool. +06/15/2018,Sports_celeb,@steveaustinBSR,"RT @WWENetwork: On this day 20 YEARS AGO, @steveaustinbsr & The #Undertaker battled @KaneWWE & @RealMickFoley inside HELL IN A CELL on #RAW…" +06/14/2018,Sports_celeb,@steveaustinBSR,"@Kmitch66394669 @KawasakiUSA +Nice setup. https://t.co/UxO8LV0ZBR" +06/13/2018,Sports_celeb,@steveaustinBSR,"@Puetzer1 @KawasakiUSA Got one, myself. The name fits. Awesome power. Good looking dog." +06/13/2018,Sports_celeb,@steveaustinBSR,Had an awesome time w the cool folks from @KawasakiUSA filming a commercial for the new MULE PRO-MX side by side.… https://t.co/JWbH83nhfr +06/13/2018,Sports_celeb,@steveaustinBSR,"RT @mayer1111: @steveaustinBSR I was listening to your podcast and I’d never heard of this guy so I paused and YouTubed. + +I’m now pissing…" +06/13/2018,Sports_celeb,@steveaustinBSR,"RT @sambanks2: The super hilarious @craiggasscomedy on the super masculine @steveaustinBSR’s show. 😂 + +Craig Gass has a great life story. If…" +06/13/2018,Sports_celeb,@steveaustinBSR,RT @crimsonmask49: @steveaustinBSR We don’t need to bring ink and paper into this... https://t.co/5J1aXQIq8p +06/13/2018,Sports_celeb,@steveaustinBSR,RT @BlueMeanieBWO: My day started getting my George Carlin box set in the mail. Then I get to hear @craiggasscomedy on the @steveaustinBSR… +06/12/2018,Sports_celeb,@steveaustinBSR,RT @KawasakiUSA: Introducing the all-new mid-size 2019 MULE PRO-MX to our latest generation of #KawasakiSTRONG fami… https://t.co/z71KG1SGTB +06/12/2018,Sports_celeb,@steveaustinBSR,RT @Maddaveinc: @steveaustinBSR Great #SteveAustinShow with @craiggasscomedy talking about his career in #standupcomedy #MitchHedberg #Geor… +06/12/2018,Sports_celeb,@steveaustinBSR,RT @TheHoldsworth: Traveled all the way from Toronto Canada to checkout @steveaustinBSR own Broken Scull IPA @ESBCBrews. This IPA kicks ass… +06/12/2018,Sports_celeb,@steveaustinBSR,"RT @TripleH: I see the celebration is underway...like @SteveAustinBSR says “hell yeah!!!” + +Enjoy your parade and congratulations! #ALLCAPS…" +06/12/2018,Sports_celeb,@steveaustinBSR,@justinwhite83 @DDROSE83 Cheers and congratulations. +06/12/2018,Sports_celeb,@steveaustinBSR,@omega_apex128 Been there. Done that. I hate it when that happens. +06/11/2018,Sports_celeb,@steveaustinBSR,@jimbojangles21 That’s a big ass tree! +06/10/2018,Sports_celeb,@steveaustinBSR,RT @WWFATTITUDE316: Probably my favorite @steveaustinBSR moment #AttitudeEra https://t.co/4afRmqKASA +06/09/2018,Sports_celeb,@steveaustinBSR,@TwinkieThinky @Coldsteelknives It is def a badass knife no matter what color you get. Enjoy it! +06/09/2018,Sports_celeb,@steveaustinBSR,"RT @DDPYoga: Do your DDPY and that's the bottom line because @SteveAustinBSR said so! Steve Austin just finished his first DDPY workout, he…" +06/08/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @TheHoldsworth: Traveled all the way from Toronto Canada to checkout @steveaustinBSR own Broken Scull IPA… https://t.co/ffxfbRFAev +06/08/2018,Sports_celeb,@steveaustinBSR,Oh Hell Yeah!!!RT @RealDDP: Last weekend me and Steve Austin did a workout that has been 16 years in the making. I'… https://t.co/AoXAfpd6zt +06/08/2018,Sports_celeb,@steveaustinBSR,@Jamie_iovine Looks like I’m doing another j.o.b... +06/08/2018,Sports_celeb,@steveaustinBSR,@cuse1 @Michigan_Dipper @iohc_ That’s the one. +06/07/2018,Sports_celeb,@steveaustinBSR,"RT @The_Rod: Incredible episode of ⁦@steveaustinBSR⁩ show with the man who forever changed my life, ⁦@RealDDP⁩ Great discussion about lots…" +06/07/2018,Sports_celeb,@steveaustinBSR,@fanboySTWW @BigStrongFast Damn that’s a lot of steaks. Let me know how it works for you. +06/06/2018,Sports_celeb,@steveaustinBSR,"RT @RealIvelisse: #WaybackWednesday +My 1st & only time in the bottom 3. A heartbreaking goodbye from @wwe #ToughEnough 5 +It was so DIFFICU…" +06/06/2018,Sports_celeb,@steveaustinBSR,"RT @jhagg719: Man, today’s @steveaustinBSR #steveaustinshow #podcast @PodcastOne is a MUST listen to with Chris bell. Very informative, rea…" +06/05/2018,Sports_celeb,@steveaustinBSR,@IvMathers Could have been.. +06/03/2018,Sports_celeb,@steveaustinBSR,"RT @WWENetwork: Today in 1997, @steveaustinbsr & @ShawnMichaels went toe-to-toe with The #LegionOfDoom on #RAW! https://t.co/7m6YSZ1VBo htt…" +06/02/2018,Sports_celeb,@steveaustinBSR,"AKA The Professor. PHD, etc etc. RT @bohnes: getting taught how to drink beer by Mr. 3:16. Stone Cold… https://t.co/a0F8lZu3j3" +06/01/2018,Sports_celeb,@steveaustinBSR,@FrankLevesque09 Thanks for the heads up. 👍 +05/31/2018,Sports_celeb,@steveaustinBSR,"RT @Coldsteelknives: It’s #NationalSmileDay... so have a knife and a smile, like @steveaustinBSR (or is that a smirk? 🤔) with his #coldstee…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @BroJBrody: WE’RE LIVE, BRO! I’m on today’s new #SteveAustinShow podcast! + +@steveaustinBSR & I cover my recent knee surgery, @WWEToughEn…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @AJKirsch: WE’RE LIVE, PAL! I’m on today’s new #SteveAustinShow podcast! + +@steveaustinBSR and I cover my recent surgery, @WWEToughEnough…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @BroJBrody: I just heard a little scuttlebutt that me-in-real-life (@AJKirsch) just talked with @steveaustinBSR for, like, 90min, and th…" +05/29/2018,Sports_celeb,@steveaustinBSR,"RT @AJKirsch: What a blast to catch up with @steveaustinBSR. + +We covered my recent knee surgery, our time on @WWEToughEnough, my experience…" +05/28/2018,Sports_celeb,@steveaustinBSR,@JUSTOSLICE Enjoy! +05/28/2018,Sports_celeb,@steveaustinBSR,RT @BulletClubItal: #OnThisDay 22 years ago: #InYourHouse8 Beware of Dog 2: #SavioVega defeated @steveaustinBSR in a Caribbean Strap match… +05/28/2018,Sports_celeb,@steveaustinBSR,RT @LilianGarcia: Happy #MemorialDay! 15 years ago on @WWE #Raw I had the distinct pleasure of singing #AmericaTheBeautiful w @steveaustinB… +05/28/2018,Sports_celeb,@steveaustinBSR,@BrianWorldChamp LTZ Z71 +05/26/2018,Sports_celeb,@steveaustinBSR,@themadman316 Running my old John Deere now. +05/26/2018,Sports_celeb,@steveaustinBSR,"Have a great weekend! +#BSRmargaritatime +@Coldsteelknives +#workingman https://t.co/5BBVDaI7Bi" +05/25/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @Rfelt3: TGIF @steveaustinBSR much needed long weekend!! https://t.co/6uMB3IJC4R +05/25/2018,Sports_celeb,@steveaustinBSR,RT @RobertA54611889: @steveaustinBSR @BowlerScow33 Have a great weekend. https://t.co/pCJQ99YZo3 +05/25/2018,Sports_celeb,@steveaustinBSR,@iAmFlair519 Hell Yeah! +05/25/2018,Sports_celeb,@steveaustinBSR,@BowlerScow33 Hell Yeah! +05/25/2018,Sports_celeb,@steveaustinBSR,@Sixxstringthing Dummies is being very nice... +05/25/2018,Sports_celeb,@steveaustinBSR,@TroubleDVJ Mango?? +05/25/2018,Sports_celeb,@steveaustinBSR,@Jess615 Hell Yeah! @Coldsteelknives +05/24/2018,Sports_celeb,@steveaustinBSR,@DelmarHaase I went Milwaukee on drills. +05/22/2018,Sports_celeb,@steveaustinBSR,@wswehr81 $$ +05/22/2018,Sports_celeb,@steveaustinBSR,@CynicalCid79 Looks just like me. Awesome job! +05/20/2018,Sports_celeb,@steveaustinBSR,"Oh Hell Yeah!RT @WWE: As attitudes change, sometimes the themes do as well... https://t.co/WzrS7YyEPY" +05/20/2018,Sports_celeb,@steveaustinBSR,@OneJeffEdwards Enjoy. Cheers! +05/19/2018,Sports_celeb,@steveaustinBSR,"@YahielO @SavioVega Savio was awesome. Great worker. Never blows up. #oldschool +#goodtimes" +05/19/2018,Sports_celeb,@steveaustinBSR,@DSMAaronRNO Thanks for the help. I’ll bring a list next time... +05/17/2018,Sports_celeb,@steveaustinBSR,@BenCrawford1992 Yes that is a real life picture. Dropped him on that stack of dimes he calls a neck.. +05/15/2018,Sports_celeb,@steveaustinBSR,"@stnecldcollctr Thanks, Christine." +05/15/2018,Sports_celeb,@steveaustinBSR,"@theMimicHawkins Its normally a lot more organized than that. I had just brought in all of those plates, etc. hadn’t had time to rack them." +05/15/2018,Sports_celeb,@steveaustinBSR,@Coombsie77 Cool dog. +05/14/2018,Sports_celeb,@steveaustinBSR,Shooting the breeze w @WWETheBigShow tomorrow. Got a question send it to questions@steveaustinshow.com. +05/14/2018,Sports_celeb,@steveaustinBSR,RT @RossMcApples: Stopped by @ESBCBrews on my honeymoon from the UK to finally get a taste of @steveaustinBSR 's broken skull IPA. Did not… +05/14/2018,Sports_celeb,@steveaustinBSR,@RossMcApples @ESBCBrews Cheers! +05/12/2018,Sports_celeb,@steveaustinBSR,@big_takes Cheers! +05/12/2018,Sports_celeb,@steveaustinBSR,"RT @thewadekeller: If you haven't yet, check out my #WWE #Backlash PPV analysis with @steveaustinBSR in the latest Steve Austin Show on @po…" +05/11/2018,Sports_celeb,@steveaustinBSR,RT @PWTorch: Check out today's new Steve Austin Show on @PodcastOne w/@steveaustinBSR & @thewadekeller talking #WWEBacklash for 90 minutes!… +05/10/2018,Sports_celeb,@steveaustinBSR,"RT @Lanejohnson65: If y'all want to hear this interview, give me a Hell Yeah! ☠️☠️ #staytuned https://t.co/nuUshYmW6E +Oh Hell Yeah!" +05/10/2018,Sports_celeb,@steveaustinBSR,"RT @thewadekeller: On tomorrow's @steveaustinBSR podcast on @PodcastOne, Steve and I talk in depth for 90 minutes about #WWE Backlash and t…" +05/09/2018,Sports_celeb,@steveaustinBSR,@TheBobHolly @WesternWench Same here. Bob and I have always gotten along and had great times in the ring. +05/08/2018,Sports_celeb,@steveaustinBSR,@ToddyDWrestling Hell Yeah!! +05/06/2018,Sports_celeb,@steveaustinBSR,RT @MikeOHearn: Great news ! At 2:30 this morning @CTFletcherISYMF came out of heart surgery and is Good and is off to recovery #Love #Fam… +05/05/2018,Sports_celeb,@steveaustinBSR,@sethphelps @ESBCBrews Cheers! +05/01/2018,Sports_celeb,@steveaustinBSR,"RT @JRsBBQ: Check out the @steveaustinBSR podcast that dropped today as I join the Texas Rattlesnake for a fun piece of business. + +#Slobbe…" +05/01/2018,Sports_celeb,@steveaustinBSR,"@CorbinRadul Bold move. Looks great. +Hell Yeah!" +04/30/2018,Sports_celeb,@steveaustinBSR,@Mikepasc8 Excellent. Congrats. +04/30/2018,Sports_celeb,@steveaustinBSR,Doing a Q and A for Thursday Steve Austin Show. Send Q’s here or to questions@steveaustinshow.com. +04/30/2018,Sports_celeb,@steveaustinBSR,"RT @JRsBBQ: Jumped on the phone today with my old friend @steveaustinBSR for his podcast that drops Tuesday. + +The Jim Ross Report podcast…" +04/30/2018,Sports_celeb,@steveaustinBSR,@CardilloUSA Damn right I remember it! +04/29/2018,Sports_celeb,@steveaustinBSR,"RT @MDoggMattCross: Heading to @steveaustinBSR country, Victoria, Texas, to face the wild man @martincasaus for the first time ever + +From T…" +04/28/2018,Sports_celeb,@steveaustinBSR,@sgraziano7 Hell Yeah! +04/28/2018,Sports_celeb,@steveaustinBSR,Cheers!RT @CIO_HATE: Finally got my hands on this tasty beverage since we don’t have it in NJ @steveaustinBSR… https://t.co/cMr1S4l9uB +04/27/2018,Sports_celeb,@steveaustinBSR,"@hillbillyhank43 Agreed. The kick to the back of the knee was nice, though." +04/27/2018,Sports_celeb,@steveaustinBSR,Shinsuke so much better as a heel. AJ is off the charts good. #WGRR +04/26/2018,Sports_celeb,@steveaustinBSR,RT @FlyinBrianJr: Ask and ye shall receive! I FINALLY got to sit down with @steveaustinbsr and deliver the podcast… https://t.co/kJNrj58DnZ +04/26/2018,Sports_celeb,@steveaustinBSR,"RT @FlyinBrianJr: Join me and Steve as we talk about my early footsteps into the business, his relationship with my father, and more!! http…" +04/26/2018,Sports_celeb,@steveaustinBSR,RT @LiamORourke86: A big thank you to @steveaustinBSR and @FlyinBrianJr for talking about 'Crazy Like A Fox' - my biography on the life of… +04/25/2018,Sports_celeb,@steveaustinBSR,Good times!!RT @BulletClubItal: #OnThisDay 19 years ago: #WWEBacklash @steveaustinBSR defeated @TheRock in a No Hol… https://t.co/stOwow3I6p +04/25/2018,Sports_celeb,@steveaustinBSR,@MaxCastellano15 Hell Yeah +04/24/2018,Sports_celeb,@steveaustinBSR,RT @courtbauer: A few people have been hitting me up since @steveaustinBSR Show came out asking how they can watch @MLW on @beINSPORTSUSA.… +04/24/2018,Sports_celeb,@steveaustinBSR,"RT @courtbauer: Fire up the podcast gimmick and listen to today’s @steveaustinBSR Show as Steve and I take you behind the scenes of @MLW, t…" +04/24/2018,Sports_celeb,@steveaustinBSR,@WhittonAl HELL YEAH!!! +04/24/2018,Sports_celeb,@steveaustinBSR,"Damn what a ride. RT @CatchThePinfall: If @steveaustinBSR hadn't seen this, imagine... + +@WCCWMemories + +https://t.co/5eUMG7FPbH" +04/24/2018,Sports_celeb,@steveaustinBSR,@CatchThePinfall @WCCWMemories Thanks for sending that. I have not seen that commercial in many years. That commerc… https://t.co/FVJwM1UenA +04/24/2018,Sports_celeb,@steveaustinBSR,RT @withxtrasarcasm: @everytimeidie @steveaustinBSR @BraxtonSutter @AllieImpact @andycomplains That was absolutely hilarious! 😂🤣 ‘You can t… +04/24/2018,Sports_celeb,@steveaustinBSR,RT @courtbauer: I’ll be on @steveaustinBSR Show in the AM where we will talk shop about #WWEGRR and I’ll reveal details on this Friday’s #M… +04/24/2018,Sports_celeb,@steveaustinBSR,@xSt4y_r3ady_C3D @BrooksFarris I dig it. Very cool. +04/21/2018,Sports_celeb,@steveaustinBSR,RT @everytimeidie: The one and only @steveaustinBSR sat down with @braxtonsutter @allieimpact and our very own @andycomplains for what coul… +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: Part 2 of @andycomplains , @AllieImpact and myself on @steveaustinBSR ‘s podcast released today! Check out this audio w…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @TheKevinBennett: As the producer of @KickinAssPod , I am proud to say that my homies @BraxtonSutter @andycomplains and @AllieImpact KIC…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @AllieImpact: Guyssssss part 2 of our interview on @steveaustinBSR podcast is up!!! + +This was such a cool moment for all three of us.…" +04/19/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: This week on @KickinAssPod me, @andycomplains and LDG @AllieImpact recap our recent trip to LA! We had a kick ass day on…" +04/19/2018,Sports_celeb,@steveaustinBSR,@LoveableMew Real +04/18/2018,Sports_celeb,@steveaustinBSR,@Dakota_Bennett1 Yep. +04/18/2018,Sports_celeb,@steveaustinBSR,"RT @BraxtonSutter: Check out the craziest day of our lives! @andycomplains , @AllieImpact and myself on Ol’ Stone Cold @steveaustinBSR ‘s p…" +04/17/2018,Sports_celeb,@steveaustinBSR,RT @IMPACTWRESTLING: .@AllieImpact and @BraxtonSutter appeared on the latest episode of the @steveaustinBSR Show along with @andycomplains!… +04/17/2018,Sports_celeb,@steveaustinBSR,"RT @andycomplains: Welp, this is insane! Go listen to @BraxtonSutter @AllieImpact and i try not to mark to hard when @steveaustinBSR interv…" +04/15/2018,Sports_celeb,@steveaustinBSR,@teamstihl Hell Yeah! +04/13/2018,Sports_celeb,@steveaustinBSR,@TektheGeek That’s what I said... +04/13/2018,Sports_celeb,@steveaustinBSR,RT @Brodyxking: Got to meet the fuckin man today @steveaustinBSR thanks for letting me hang! https://t.co/ZgxaifrR46 +04/13/2018,Sports_celeb,@steveaustinBSR,@Brodyxking Nice meeting you! +04/13/2018,Sports_celeb,@steveaustinBSR,RT @KickinAssPod: The Butcher @andycomplains The Blade @BraxtonSutter and The Bunny @AllieImpact podcasted with @steveaustinBSR today! Stre… +04/13/2018,Sports_celeb,@steveaustinBSR,RT @andycomplains: Today is an insane day. @BarWrestling here we come! @steveaustinBSR has to rain check tonight though. Sorry guys. https:… +04/12/2018,Sports_celeb,@steveaustinBSR,"RT @TheFranchiseSD: Aargh, you guys beat me to the punch! Yes! I had the pleasure ot talk w @steveaustinBSR yday. Saw him at WrestleCon (1s…" +04/12/2018,Sports_celeb,@steveaustinBSR,@RiceFootball @53kobasko @WWENetwork @JRsBBQ Correct. +04/12/2018,Sports_celeb,@steveaustinBSR,@53kobasko That’s a fact. +04/11/2018,Sports_celeb,@steveaustinBSR,@Musicnation_101 @Gooner2954 @ShaneHelmsCom @courtbauer @H2HEmpress @realboogey Correct. +04/11/2018,Sports_celeb,@steveaustinBSR,@ShaneHelmsCom @courtbauer @H2HEmpress @realboogey I’m blaming all of you mugs... +04/11/2018,Sports_celeb,@steveaustinBSR,@Gortiz96 @ESBCBrews Sorry bout that. +04/10/2018,Sports_celeb,@steveaustinBSR,@matthewqnanes @TylerQinUtah More like being dead dog tired after 3 days of Mania festivities... +04/10/2018,Sports_celeb,@steveaustinBSR,@realbrianmorse It’s on the close of the show. Yep. We missed it on the podcast. My mistake. +04/10/2018,Sports_celeb,@steveaustinBSR,RT @MLW: Head over to 316 Gimmick Street as @steveaustinBSR talks with @courtbauer about #wrestlemania and #MLWFUSION TV series coming to @… +04/10/2018,Sports_celeb,@steveaustinBSR,RT @ppwpodcast: So I’m pretty sure @steveaustinBSR loved this item we brought the most out of anything @wrestlecon @Highspots https://t.co/… +04/09/2018,Sports_celeb,@steveaustinBSR,"RT @ReyFenixMx: Thank you so much @steveaustinbsr for unforgettable experience. +Thanks to all the team, great… https://t.co/3xOT1GWGgd" +04/08/2018,Sports_celeb,@steveaustinBSR,"RT @RealMickFoley: Just a tremendous action photo of the Texas Rattlesnake & The Hardcore Legend in mid-hug! +@steveaustinBSR https://t.co/U…" +04/08/2018,Sports_celeb,@steveaustinBSR,@Jarrius Awesome job last night. I enjoyed your speech and your story is incredible. Definitely tougher than me. A… https://t.co/er4dweLZa7 +04/08/2018,Sports_celeb,@steveaustinBSR,Awesome to see the GOAT today! #NatureBoy #woooooo!RT @RicFlairNatrBoy: Steve Austin In The House! WOOOOO!… https://t.co/IOyx4CtEi9 +04/07/2018,Sports_celeb,@steveaustinBSR,RT @therealtristin: My favorite photo! #WrestleCon @steveaustinBSR https://t.co/x0fIOn0yDp +04/07/2018,Sports_celeb,@steveaustinBSR,RT @billyviscuso: 15 years later. Legendary. #familyreunion @steveaustinBSR https://t.co/oLQglGnYp5 +04/07/2018,Sports_celeb,@steveaustinBSR,Gotcha! Remember New Orleans...RT @BulletClubItal: #OnThisDay 21 years ago: #RAW @steveaustinBSR defeated… https://t.co/PWMdR2J9NL +04/06/2018,Sports_celeb,@steveaustinBSR,@realchaseowens Nice meeting you! +04/06/2018,Sports_celeb,@steveaustinBSR,Made a stop by one of my favorite places in New Orleans for lunch. Been coming to this place for damn near 20 years… https://t.co/4jVQySWO2r +04/06/2018,Sports_celeb,@steveaustinBSR,RT @Kevy316: @steveaustinBSR getting ready for #WrestleManiaWeekend in style #oldskool https://t.co/RAgCYxPp4h +04/06/2018,Sports_celeb,@steveaustinBSR,@tpalzet Tell him I said hello and to stay strong. And that’s the bottom line. +04/06/2018,Sports_celeb,@steveaustinBSR,@Yorkshirelad110 That’s a nice ride. +04/06/2018,Sports_celeb,@steveaustinBSR,"Headed out to New Orleans, Louisiana for @wrestlecon appearance on Saturday and Sunday. See you there. #BYOB https://t.co/79DH6OTw71" +04/05/2018,Sports_celeb,@steveaustinBSR,"@crazylenny Thanks! Hell, I knew that..." +04/04/2018,Sports_celeb,@steveaustinBSR,RT @MatthewRyan15: Don Jamieson https://t.co/EhtJbEMMAS Awesome podcast @steveaustinBSR @realdonjamieson +04/04/2018,Sports_celeb,@steveaustinBSR,@FauthGuitars Thanks! +04/02/2018,Sports_celeb,@steveaustinBSR,Tomorrow on SAS. Stand up comedian and That Metal Show cohost @realdonjamieson shooting the breeze. RT… https://t.co/bEYmSljhRV +04/01/2018,Sports_celeb,@steveaustinBSR,"@ZICCARDI151 That man had a family, dammit!!" +04/01/2018,Sports_celeb,@steveaustinBSR,"RT @neale8: My daughter just did there @steveaustinBSR egg! +The toughest hard boiled egg on Easter https://t.co/3sh7vFQ1au" +03/31/2018,Sports_celeb,@steveaustinBSR,@LOOKINIKOOL Thanks for the heads up. +03/31/2018,Sports_celeb,@steveaustinBSR,@omega_apex128 Damn. That ain’t good. Sorry to hear it. +03/29/2018,Sports_celeb,@steveaustinBSR,RT @WWE: Was @steveaustinBSR happy with the match he had against @ShawnMichaels 20 YEARS AGO today to win his first @WWE Championship at @W… +03/29/2018,Sports_celeb,@steveaustinBSR,@MrKhakbaz Good eye. Yes. The 2 shoes looked very similar and I did not realize it till I got home after the shoot… https://t.co/8Yc5Fve9ve +03/28/2018,Sports_celeb,@steveaustinBSR,@mellabellaboy20 Nice work. +03/27/2018,Sports_celeb,@steveaustinBSR,OH HELL YEAH!!! https://t.co/JuhMqBvs5t +03/27/2018,Sports_celeb,@steveaustinBSR,@thecharlieguz Enjoy it! Happy Birthday. +03/26/2018,Sports_celeb,@steveaustinBSR,@ArtByErle Awesome work! I had saved the picture. Sorry to not give you the credit for it. Very cool image. +03/25/2018,Sports_celeb,@steveaustinBSR,RT @Kai_Roberts6: @EandCPod one of the best podcasts of all time. Fascinating listening to @BretHart & @steveaustinBSR talking about their… +03/25/2018,Sports_celeb,@steveaustinBSR,@GregoryIron Hell Yeah +03/25/2018,Sports_celeb,@steveaustinBSR,"RT @DrawingHeat: Nearly 37 years old and yet still cannot look at my watch at 3.16 and not think ""your ass belongs to Stone Cold"" @steveaus…" +03/24/2018,Sports_celeb,@steveaustinBSR,"RT @NatbyNature: 21 years ago today. +One of my favorite #WrestleMania matches of all time. The storytelling was just incredible. So much w…" +03/23/2018,Sports_celeb,@steveaustinBSR,"@EdgeRatedR @BretHart @EandCPod @Christian4Peeps Don’t be so hard on yourself... +#DONTLOOKATME" +03/23/2018,Sports_celeb,@steveaustinBSR,RT @EdgeRatedR: So when we first put together the idea of doing Anatomy of a Match with @BretHart & @steveaustinBSR for @EandCPod that woul… +03/23/2018,Sports_celeb,@steveaustinBSR,@1PhenomenalFan I had some horrible ring gear back in the day.. +03/23/2018,Sports_celeb,@steveaustinBSR,@dkeithtaylor Swig of water for the working man. +03/23/2018,Sports_celeb,@steveaustinBSR,@phil__nicholson Well done. +03/23/2018,Sports_celeb,@steveaustinBSR,@dkeithtaylor Whereabouts in Nevada? +03/23/2018,Sports_celeb,@steveaustinBSR,RT @TheYearOfBliss: #OnThisDay 21 years ago on #WWE #WrestleMania 13: @BretHart defeated @steveaustinBSR via referee stopage in a Submissio… +03/23/2018,Sports_celeb,@steveaustinBSR,RT @Christian4Peeps: Now!! On @EandCPod BOTH @steveaustinBSR & @BretHart talk with us for you & dissect their WrestleMania 13 submission ma… +03/23/2018,Sports_celeb,@steveaustinBSR,@JPH_Beast @TedFowler361 Just when we would see them. +07/01/2018,Sports_celeb,@UKCoachCalipari,It’s my son-in-law @mcotton88's birthday. He’s been a great husband to @MeganteCalipari and son to Ellen and me. +06/30/2018,Sports_celeb,@UKCoachCalipari,Wayne County deputies Cody Neal and Joe Horne and Monticello police officer Gordon Stephens. https://t.co/38ua3oPJri +06/30/2018,Sports_celeb,@UKCoachCalipari,Coach Rodney Woods played with Bernie & Ernie (Bernard King and Ernie Grunfel). Ray Mears coached him. Was just ind… https://t.co/U8s1XcbeHA +06/30/2018,Sports_celeb,@UKCoachCalipari,Ray Mills at our Wayne County High School Satellite Camp! Ray played for Coach Rupp from 1954-57. https://t.co/Udj2CHaW1u +06/30/2018,Sports_celeb,@UKCoachCalipari,Weeks like this week are what get me up in the morning. Love being on that court with young people and that basketb… https://t.co/y2u9C4a8SY +06/29/2018,Sports_celeb,@UKCoachCalipari,"Shout out to Jodi Black on her birthday today!! Have a great day!! You too, Hank!!" +06/28/2018,Sports_celeb,@UKCoachCalipari,"GK, you are on my daily prayer list, my friend. Miss you!" +06/28/2018,Sports_celeb,@UKCoachCalipari,Just got off the phone with a dear friend George Klein from Memphis. Most know GK as part of Elvis Presley’s Memphi… https://t.co/up1vH0YCXn +06/28/2018,Sports_celeb,@UKCoachCalipari,"Our staff also had a chance to spend time with Tom Arington, founder and chairman of @PrascoAGs. Great man and a bi… https://t.co/cYFP5pYYT7" +06/28/2018,Sports_celeb,@UKCoachCalipari,"They tell me their pro, @Anewell28, is pretty good!" +06/28/2018,Sports_celeb,@UKCoachCalipari,My coaching staff supporting the @PrascoAG’s Charity Championship today in its pro-am event! https://t.co/gq3ZPDMKcS +06/28/2018,Sports_celeb,@UKCoachCalipari,Rising star! DeWayne has earned everything he has coming for him. Happy to call him a friend. https://t.co/fb7eBNZAmP +06/28/2018,Sports_celeb,@UKCoachCalipari,"Sitting here thinking about just having 30 dogs run through my office. Please, no one say I hate elephants." +06/28/2018,Sports_celeb,@UKCoachCalipari,"Seriously though, if you know my family, you know we love animals. I'm proud to be a supporter of @lexingtonhumane… https://t.co/dlgVUfmN0j" +06/28/2018,Sports_celeb,@UKCoachCalipari,"You see what happens when McGruff and Palmer get mad at me? I had visitors waiting for me in my office today! + +Tha… https://t.co/polh5kydc6" +06/28/2018,Sports_celeb,@UKCoachCalipari,Had a really great first practice with the team today. I've challenged them to be like the 2014-15 team and not ha… https://t.co/6zcmSHIjUh +06/27/2018,Sports_celeb,@UKCoachCalipari,"Just finished our first practice of the year with our team. We have a long way to go, but we have an unbelievable… https://t.co/6gFOfvsgPl" +06/27/2018,Sports_celeb,@UKCoachCalipari,"Just talked to one of the toughest and most competitive players I’ve ever coached, @ZayBriscoe! He is with the Orl… https://t.co/wQ5XBTwYrP" +06/27/2018,Sports_celeb,@UKCoachCalipari,"Did I hear it's @Dhawk_25's birthday? #BBN, join me in wishing him a happy one. Dom had a great start to his profes… https://t.co/FrTbM59Gf1" +06/27/2018,Sports_celeb,@UKCoachCalipari,Just stopped in my office. @Q_Green1 was working out in a full sweat. And this shows up from @BravoTopChef Nice!! https://t.co/yFsRYBH5Mk +06/26/2018,Sports_celeb,@UKCoachCalipari,"And if you didn't know, Rick is one of the best in our business. He's won nearly 800 games as a head coach!" +06/26/2018,Sports_celeb,@UKCoachCalipari,"10 years ago today, I had the privilege of sitting in the green room as @drose was taken #1 overall in the NBA Draf… https://t.co/OB7CeO94T8" +06/26/2018,Sports_celeb,@UKCoachCalipari,"Spent some time with @BelmontMBB head coach Rick Byrd and his assistant, @THolloway4, talking movement, spacing and… https://t.co/o7jVKbMO1G" +06/26/2018,Sports_celeb,@UKCoachCalipari,We're coming to Wayne County High School on Saturday for our Satellite Camp. This is the final opportunity of the c… https://t.co/xoBZHI8E6W +06/26/2018,Sports_celeb,@UKCoachCalipari,Nothing a Louisville fan has EVER said to me has ever bothered me but this one got to me a little bit. McGruff and… https://t.co/pGS4cDdwue +06/25/2018,Sports_celeb,@UKCoachCalipari,I’m so proud of @AntDavis23. Only 25 years old and a finalist for the league’s best player. Incredible. I can remem… https://t.co/6fV2XfMNDv +06/25/2018,Sports_celeb,@UKCoachCalipari,RT @KentuckyMBB: This time yesterday we were getting ready to pull up to Midway for an unbelievable turnout from the #BBN. A look back at o… +06/25/2018,Sports_celeb,@UKCoachCalipari,"I was so happy to see two of Rick Corman’s daughters yesterday, April and Shawna." +06/25/2018,Sports_celeb,@UKCoachCalipari,"I want to thank Ed Quinn, president and CEO of R. J. Corman, once again for helping make it happen. Thank you to Br… https://t.co/p32pvutN3w" +06/25/2018,Sports_celeb,@UKCoachCalipari,"Woke up this morning blown away by the support we had from the #BBN. I’m sure folks will get upset when I say this,… https://t.co/gVXMEoAuLu" +06/25/2018,Sports_celeb,@UKCoachCalipari,"I want to thank this group of officers for their help at Midway and Lexington. And of course, a huge thank you to e… https://t.co/lkEoBj7hMr" +06/25/2018,Sports_celeb,@UKCoachCalipari,You know what I love most? Most of the people who waited in line for 2-3 hours don’t get a chance to get in… https://t.co/RtyvXA3PXa +06/25/2018,Sports_celeb,@UKCoachCalipari,"What a day. The turnout for the #BigBlueCaravan was unbelievable. More than 500 people in Frankfort, Midway (maybe… https://t.co/yQfj64khsU" +06/24/2018,Sports_celeb,@UKCoachCalipari,We just got done with our Satellite Camp in Frankfort in front of about 500 people when you include all the parents… https://t.co/rbuDztIrPb +06/24/2018,Sports_celeb,@UKCoachCalipari,"I want to thank Ed Quinn, president and CEO of R. J. Corman, for making today’s #BigBlueCaravan happen. Happy to ta… https://t.co/GqtvU55eLO" +06/24/2018,Sports_celeb,@UKCoachCalipari,We’re headed off for Frankfort for our Satellite Camp! Looking forward to seeing the #BBN on our way back.… https://t.co/JvToC3MobO +06/24/2018,Sports_celeb,@UKCoachCalipari,Getting ready to hop aboard our #BigBlueCaravan ride for the day. Can’t thank R. J. Corman enough for making this h… https://t.co/yxEI92SgwA +06/24/2018,Sports_celeb,@UKCoachCalipari,"RT @KentuckyMBB: Don't forget, we'll be meeting fans in Midway (5:30 p.m.) and Lexington (7 p.m.) to take pictures and sign autographs on t…" +06/23/2018,Sports_celeb,@UKCoachCalipari,Can’t wait to see the #BBN tomorrow! https://t.co/USelMOti3X +06/23/2018,Sports_celeb,@UKCoachCalipari,Congratulations to @HoopsWeiss!!! Well deserved. One of the best! https://t.co/NJEPzL0tTD +06/23/2018,Sports_celeb,@UKCoachCalipari,"#BBN, we'll be going rain or shine! Hope to see you in Midway and Lexington tomorrow for autographs and pictures. https://t.co/L9t7N8ioLg" +06/23/2018,Sports_celeb,@UKCoachCalipari,"Want to wish @tjbeisner, our new editor of @CoachCalDotCom, a happy birthday. TJ has done an unbelievable job in th… https://t.co/J4uULvgbzf" +06/23/2018,Sports_celeb,@UKCoachCalipari,RT @KentuckyMBB: We do what we do to win championships. But it's also about nights like these. Take a few minutes and watch this and see wh… +06/23/2018,Sports_celeb,@UKCoachCalipari,Few moments as special for me then hugging each kid and their mom and dad. Happy for all of our guys. https://t.co/BpXjUQPOCA +06/23/2018,Sports_celeb,@UKCoachCalipari,"We'll be out there to greet fans, sign autographs and take pictures at both spots. Complimentary posters will also… https://t.co/LyAwSNXKN6" +06/23/2018,Sports_celeb,@UKCoachCalipari,"We'll be coming back on an R. J. Corman train and will make a stop in Midway (Darlin Jean's, 2014 N. Gratz St.) at… https://t.co/ZXCf0stbnW" +06/23/2018,Sports_celeb,@UKCoachCalipari,"#BBN, I want to invite all of our fans to meet our team on Sunday as make a couple of pit-stops on the way back fro… https://t.co/WIYkI2j2vy" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Dajuan Wagner, my first 20-point scorer and first player to go in the draft after one year and be a lottery pick! H… https://t.co/MvCAIu2SNu" +06/22/2018,Sports_celeb,@UKCoachCalipari,Could you imagine if we could keep kids for three years what this program would look like? Oh my gosh! But I’m alwa… https://t.co/KqMKqyAZ0m +06/22/2018,Sports_celeb,@UKCoachCalipari,"Now my work begins on next year’s team. With the added hours, I’m going to spend more time in the summer than I nor… https://t.co/2fWJLAMMOv" +06/22/2018,Sports_celeb,@UKCoachCalipari,I can look back at @Dreliggs34 and @DrewRoc5 and know that the draft doesn’t define your dreams. Everybody’s path is different. +06/22/2018,Sports_celeb,@UKCoachCalipari,"I’m disappointed @WenyenGabriel's work to get on a team is not done yet, but I always tell every player that I coac… https://t.co/CQQFwgbRau" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Graduation day is over. Last night was both exciting and disappointing, as it always is. I’m excited for the four p… https://t.co/GKDh4GlR6b" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Congratulations, @hamidoudiallo! I know you are going to give it everything you have! https://t.co/RamB2xpeL6" +06/22/2018,Sports_celeb,@UKCoachCalipari,"Happy for you, @JVando. Can't wait for everyone to see what you're capable of doing. https://t.co/HleucQ0l3G" +06/22/2018,Sports_celeb,@UKCoachCalipari,"So happy for you and your family, @shaiglalex. https://t.co/7rvEqUJp6n" +06/22/2018,Sports_celeb,@UKCoachCalipari,Congratulations @KevKnox! Proud of you! https://t.co/wInjgrlzqY +06/21/2018,Sports_celeb,@UKCoachCalipari,"Had a chance to see legendary and longtime Dodgers manager Tommy Lasorda, Cowboys coach Jason Garrett, and my good… https://t.co/vIKcVryzHX" +06/21/2018,Sports_celeb,@UKCoachCalipari,You know I had to stop by the @Yankees game before tonight’s #NBADraft. Former @UKBaseball pitcher James Paxton is… https://t.co/3Z5ZLCvvfQ +06/21/2018,Sports_celeb,@UKCoachCalipari,"Great time yesterday speaking to WinFieldUnited, a wholly owned subsidiary of Land O’ Lakes. Spent some time /their… https://t.co/VkERHdSwBF" +06/21/2018,Sports_celeb,@UKCoachCalipari,I always love rubbing up against the coach that won the national title. Hopefully it rubs off on us! Had a great ti… https://t.co/Qs3fnY8BUn +06/21/2018,Sports_celeb,@UKCoachCalipari,I lit five candles this morning at St. Patrick’s Cathedral. Who do you think they were for? https://t.co/YaH6BeogsR +06/20/2018,Sports_celeb,@UKCoachCalipari,"Our fans know when it comes to talent and experience, I’m always picking talent, but Reid gives us both. And what a… https://t.co/pvMYvzmPYW" +06/20/2018,Sports_celeb,@UKCoachCalipari,You’re talking about a two-time all-conference player who could have very well entered the NBA Draft with what he’s… https://t.co/jt4c9HiPXW +06/20/2018,Sports_celeb,@UKCoachCalipari,"I felt good about where we stood with next year’s team, but when I found out how much @2ReidTravis2 wanted to be he… https://t.co/sczVvdWRid" +06/19/2018,Sports_celeb,@UKCoachCalipari,My good friend Pace Cooper came to campus and brought his friend Gaines Sturdivant. Had a great time reminiscing an… https://t.co/tZKzdwRpZF +06/19/2018,Sports_celeb,@UKCoachCalipari,"If you all remember “Jersey Red” Ford from the 90s, this is Greg Ford, his son, and his family. Red’s grandson Etha… https://t.co/LlITJaWGTF" +06/19/2018,Sports_celeb,@UKCoachCalipari,"Really happy for @AntDavis23, a Hall of Fame player and person. Loved seeing him this weekend and can't wait to cel… https://t.co/Xo8Q5HfeiC" +06/19/2018,Sports_celeb,@UKCoachCalipari,"Had a chance this morning be in every gym and watching stations, games and the college practice of the older guys a… https://t.co/qujnrmKyvM" +06/18/2018,Sports_celeb,@UKCoachCalipari,"Had a chance to meet Teresa, Brian and Maddox Cope while on the #BigBlueCaravan tour today at Marshall County HS. T… https://t.co/SbDLEGtevW" +06/18/2018,Sports_celeb,@UKCoachCalipari,Having a blast with camp season both home and away. Our final two satellite camps will be June 24 in Franklin and M… https://t.co/SKvbzYlJlY +06/18/2018,Sports_celeb,@UKCoachCalipari,"I love how involved our players have been. Everyone, including @H23Ash, who just got to campus today, was really working." +06/18/2018,Sports_celeb,@UKCoachCalipari,Really good first day of Overnight Camp today. The Anthony Davis NBA group went through a college-like practice and… https://t.co/WBcmldsQRG +06/17/2018,Sports_celeb,@UKCoachCalipari,"He can do a little bit of everything, but what separates him from his peers is his playmaking ability and leadershi… https://t.co/zf5aPbYikH" +06/17/2018,Sports_celeb,@UKCoachCalipari,Ashton wanted this so much that he worked extremely hard in the classroom these last few months to finish up his hi… https://t.co/OTYo0zHATI +06/17/2018,Sports_celeb,@UKCoachCalipari,.@H23Ash wanted to be at Kentucky all along. When I found out how badly he wanted this and had a chance to see him… https://t.co/TVrHlGDVn6 +06/17/2018,Sports_celeb,@UKCoachCalipari,"The best thing Dad did for me and my sisters was take care of Mom when she got sick. It was a 24-7 job. Love you,… https://t.co/HgUhwiIRuz" +06/17/2018,Sports_celeb,@UKCoachCalipari,My own father worked 2-3 shifts to make our lives as comfortable as possible. He was an absolute grinder and taugh… https://t.co/F7NCxh1OYx +06/17/2018,Sports_celeb,@UKCoachCalipari,Happy Father's Day to all of the fathers out there who have made their lives about their family! +06/17/2018,Sports_celeb,@UKCoachCalipari,Happy birthday to @IQ_GodSon! Getting his first batch of Mrs. Cal’s birthday brownies today. They’re on the way! https://t.co/vf4Q3buXsp +06/16/2018,Sports_celeb,@UKCoachCalipari,Had to make a pit stop at the U.S. Embassy while on the road! I was greeted at the front by Joe and Kelly Craft! https://t.co/INVN3U7993 +06/16/2018,Sports_celeb,@UKCoachCalipari,Also had a chance to visit downtown and I ran into some fans from my UMass days! They were on campus when… https://t.co/MsLpQWlAR9 +06/16/2018,Sports_celeb,@UKCoachCalipari,"I found the presidential suite, where presidents stay when they visit. You know I had to put my toes up. Just neede… https://t.co/jRchwhGkjb" +06/16/2018,Sports_celeb,@UKCoachCalipari,How about this? EJ Montgomery grew up looking up to Anthony Davis and got to sit down and ask him for advice today… https://t.co/3BNiUXJALr +06/16/2018,Sports_celeb,@UKCoachCalipari,"Darius Miller was a joy to coach and I'm so proud of what he's accomplished as a basketball player, but this gives… https://t.co/fgx3lcvNSN" +06/15/2018,Sports_celeb,@UKCoachCalipari,Can’t wait to see the #BBN there! https://t.co/ziVjtNFflk +06/15/2018,Sports_celeb,@UKCoachCalipari,Had a great time with @AntDavis23 and his family and friends. Anthony was and continues to be the ultimate team pl… https://t.co/gtMGEXBv1z +06/15/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday to @UKDeWaynePeevy, who has been by my side since I got to Lexington. We've been through a lot toget… https://t.co/f9vdmHpBxE" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Two things always happen when I get with our players: One, they embellish, and two, they ask to see Mrs. Cal so they can get brownies. LOL" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Had to take @AntDavis23 past Royce Pulliam’s new barbershop, @Floyds99, to show him this. Glad I got to spend time… https://t.co/CysUTTKrFz" +06/15/2018,Sports_celeb,@UKCoachCalipari,"Look who is in town! @AntDavis23, Big Anthony, Garrett Partman, Sherman Mussatto, Marvell Scott and Ayden Scott swu… https://t.co/52JnVUFC1C" +06/15/2018,Sports_celeb,@UKCoachCalipari,I have the greatest family. So great to read these from Megan and Erin this week. https://t.co/s5pL8iUT8u +06/14/2018,Sports_celeb,@UKCoachCalipari,Boyle County's own @JacobTamme at our Satellite Camp today. Jacob was one of @UKcoachbrooks’ first recruits at UK.… https://t.co/bDj6H5y16e +06/14/2018,Sports_celeb,@UKCoachCalipari,"Just got back from C.M. Newton's funeral. Unbelievably moving and touching to see all the friends, former players a… https://t.co/vAI2d8ukY9" +06/14/2018,Sports_celeb,@UKCoachCalipari,"I've really enjoyed our Father's Day series this week, but reading this from @TheErinCalipari today was a real joy.… https://t.co/BQQY20J6zk" +06/13/2018,Sports_celeb,@UKCoachCalipari,"When you talk about being around greatness, this guy is around it every day. Eduardo G Luna groomed both American P… https://t.co/qfH58CeTM7" +06/13/2018,Sports_celeb,@UKCoachCalipari,Thank you to Elliott Walden and his wife Rebecca of @WinStarFarm for allowing our team to spend time with a Triple… https://t.co/DrOOHMyTiV +06/13/2018,Sports_celeb,@UKCoachCalipari,"Was a celebrity judge on @BravoTopChef with Ed Lee, a great guy who helped me feel comfortable. Has great restuaran… https://t.co/Ueowa3gKBH" +06/13/2018,Sports_celeb,@UKCoachCalipari,"My good friend from Memphis Herb O’Mell passed away today. I never saw him without a smile on his face. Praying for him and his wife, Laura." +06/12/2018,Sports_celeb,@UKCoachCalipari,"Had a lot of fun with @tomcolicchio, @grahamelliot, @chefedwardlee and @notesfromacook today at Rupp. You guys are… https://t.co/b51n3lABrS" +06/12/2018,Sports_celeb,@UKCoachCalipari,It was great meeting @PadmaLakshmi and spending time with the @BravoTopChef crew today. I finally learned there's… https://t.co/denoX2blSn +06/12/2018,Sports_celeb,@UKCoachCalipari,I wanted to make sure we everyone got a chance to come to this camp. We've had such a positive response to it that… https://t.co/OeXtBCaQrZ +06/12/2018,Sports_celeb,@UKCoachCalipari,Looking back through some old photos and saw this today. Happened about a year ago at this time. Still just as prou… https://t.co/jVIgAizwtE +06/12/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday, @jemarlbakerjr! Birthday brownies coming right up! https://t.co/bplr9pNU6Q" +06/12/2018,Sports_celeb,@UKCoachCalipari,Julius Mays is a great young man and I am so proud of how committed he is to his family. I hope the Father's Day s… https://t.co/ZU007mnwvJ +06/11/2018,Sports_celeb,@UKCoachCalipari,"Staley Cates, George Cates and pastor John Bryson from Memphis stopped in today. Great friends! https://t.co/gCUPOeFWJ0" +06/10/2018,Sports_celeb,@UKCoachCalipari,"With Father's Day coming up, we are going to celebrate fatherhood all week on @CoachCalDotCom. I think #BBN is real… https://t.co/UfK5nJ45x5" +06/10/2018,Sports_celeb,@UKCoachCalipari,More than one big race going on today! Heard @KentuckyTrack’s @GoSydGo and @JCamachoQuinn won NCAA titles tonight. What a day! #FloKnows +06/10/2018,Sports_celeb,@UKCoachCalipari,.@TheRealJeffRuby!!! https://t.co/yxpGPq7w0E +06/10/2018,Sports_celeb,@UKCoachCalipari,We even ran into @tomleachKY at the track. Tom knows his @KentuckyMBB but he may know even more about horse racing.… https://t.co/5rABhewZFp +06/10/2018,Sports_celeb,@UKCoachCalipari,At the finish with @bradcalipari. #TripleCrown https://t.co/Rz93OFNqI8 +06/10/2018,Sports_celeb,@UKCoachCalipari,"Congratulations to Justify and everyone with @WinStarFarm! Unbelievable day, unbelievable team and unbelievable hor… https://t.co/nVpa4d4QRx" +06/10/2018,Sports_celeb,@UKCoachCalipari,"Look who we ran into at the track: @J30_RANDLE and his wife, @KendraRandle_. https://t.co/qLjwWyZKxy" +06/09/2018,Sports_celeb,@UKCoachCalipari,Got to meet the grandson of former UK president Frank Dickey at the Belmont! https://t.co/skssfCjZwn +06/09/2018,Sports_celeb,@UKCoachCalipari,Belmont. Triple crown. GoJustify! https://t.co/nPMsqVTcgl +06/09/2018,Sports_celeb,@UKCoachCalipari,At the Belmont hanging with Hall of Fame trainer Bob Baffert and Winstar Farms owner Kenny Troutt and his wife Lisa. https://t.co/a9sTAl9wv5 +06/09/2018,Sports_celeb,@UKCoachCalipari,"I’m not sure who is having more fun at our #FatherSon Camp, the kids or their dads. https://t.co/TUBlpk60UP" +06/09/2018,Sports_celeb,@UKCoachCalipari,"My nephew Chad Geary and his son, Conner, are at our #FatherSon Camp. Conner went nuts when his dad made a shot! https://t.co/cMjmtdhKS4" +06/09/2018,Sports_celeb,@UKCoachCalipari,"We will end up having more than 2,000 participants over our three Father/Son Camps over the next three weekends. Lo… https://t.co/heUeJQeOYz" +06/09/2018,Sports_celeb,@UKCoachCalipari,Our #FatherSon Camps are always one of my favorite things we do. To see the kids learning from our staff and player… https://t.co/S6U79zO2xt +06/08/2018,Sports_celeb,@UKCoachCalipari,Our guys have been having as much fun as the kids this week. I hope #BBN has enjoyed getting to know our team at t… https://t.co/j4yuUmTxkb +06/08/2018,Sports_celeb,@UKCoachCalipari,Still have a few roster spots open in my seventh annual Fantasy Experience! This year’s charitable event is in the… https://t.co/0q6Sz2mevP +06/08/2018,Sports_celeb,@UKCoachCalipari,"Hey #BBN, don't miss @UKOperaTheatre’s It's a Grand Night for Singing! You'll love the show by @emccorvey. It opens… https://t.co/aZZFyKjuC4" +06/07/2018,Sports_celeb,@UKCoachCalipari,.@bradcalipari and I looking for jackets at Crittenden! Looking forward to his trunk show on June 14-15 at both the… https://t.co/EuJW4nBT4O +06/06/2018,Sports_celeb,@UKCoachCalipari,The @MarkKrebsJr Factor and his son at our Satellite Camp in Louisville!! Another sign that I’m getting old! https://t.co/vnOc0GZFGw +06/06/2018,Sports_celeb,@UKCoachCalipari,The Nutters with Ohio congressman Rick Perales. https://t.co/LbfOYWHPhB +06/06/2018,Sports_celeb,@UKCoachCalipari,Spent time with @athletesinaction staff along with @UKAthletics supporters and philanthropists Bob and Mary Nutter.… https://t.co/3l49rcsgHg +06/06/2018,Sports_celeb,@UKCoachCalipari,I was asked to speak to the @usafootball team before the team goes to China to compete for gold. The camp was held… https://t.co/uCUzdJmDys +06/06/2018,Sports_celeb,@UKCoachCalipari,Today is my mother- and father-in-law’s 65th wedding anniversary! Sue and Ray have made it look easy. I wish them m… https://t.co/rD1aZLXnGX +06/05/2018,Sports_celeb,@UKCoachCalipari,Good luck to Coach Flo and @KentuckyTrack at this week’s #NCAATF Championships! https://t.co/nppu9n6qJL +06/05/2018,Sports_celeb,@UKCoachCalipari,Makes me happy when I’m pulling in my office at 10 p.m. and the facility lights are on. Guys are working!l already!… https://t.co/F02FNqrj4B +06/05/2018,Sports_celeb,@UKCoachCalipari,I wrote some thoughts about my friend last week. He taught me so much and made me a part of his family. I’ll miss h… https://t.co/XyMeS5hK4r +06/05/2018,Sports_celeb,@UKCoachCalipari,"An hour or so ago, C.M. Newton passed away. Please keep him and his family in your prayers. During one of the most… https://t.co/8vDVPjAGdy" +06/04/2018,Sports_celeb,@UKCoachCalipari,Stopped at the Barton 1792 Distillery on the way out of Bardstown to congratulate Steve Hill on his retirement. St… https://t.co/c8kSBdeg8t +06/04/2018,Sports_celeb,@UKCoachCalipari,Our satellite camp in Bardstown was outstanding as usual and it gave me a chance to visit one of the great cathedra… https://t.co/1coV4GYKAQ +06/02/2018,Sports_celeb,@UKCoachCalipari,Had a break in Colorado Springs. Lunch in the mountains! https://t.co/JL19R0wNH7 +06/02/2018,Sports_celeb,@UKCoachCalipari,My boys just opened up a new gym in Lexington: @ebf_kentucky. Unbelievable spot! Rock Oliver tells me EBF is the be… https://t.co/z19a3nNTWV +06/01/2018,Sports_celeb,@UKCoachCalipari,With two great Italians: soccer great @vieri_bobo and Hollywood star @danny_abeckaser! https://t.co/ApHQxrkUmx +06/01/2018,Sports_celeb,@UKCoachCalipari,"Happy birthday to @2willbarton3! Exciting time for Will, who is getting married in a month and will play a big part… https://t.co/hNlXcQFRHJ" +06/01/2018,Sports_celeb,@UKCoachCalipari,"It's almost time for our camp season to kick off and I can't wait to see everyone at our camps. + +If you haven't sig… https://t.co/rSfvq75xKc" +05/31/2018,Sports_celeb,@UKCoachCalipari,I'm excited for what PJ can do for himself and our team this year and I support Wenyen and Jarred as they pursue th… https://t.co/559eb6MWfB +05/31/2018,Sports_celeb,@UKCoachCalipari,"#BBN, I am asking that you please keep my dear friend C.M. Newton in your prayers. + +https://t.co/ZwDgjbciQl" +05/31/2018,Sports_celeb,@UKCoachCalipari,"As I said before, we've only seen a small part of Jarred's game because of the adversity he faced this season, but… https://t.co/BvnVT6eXwr" +05/31/2018,Sports_celeb,@UKCoachCalipari,"On the other hand, he's seen how quickly this can be taken away. I completely understand and support his decision t… https://t.co/p0ta2yrT4g" +05/31/2018,Sports_celeb,@UKCoachCalipari,.@JVando had a difficult decision to make. I know he has been pulled in two different directions. On one hand he wa… https://t.co/JUhEfuo42g +05/31/2018,Sports_celeb,@UKCoachCalipari,"#BBN, let's show him our support. @JVando went through a lot this season and can't wait to see what he is going to… https://t.co/eoYbtNbEx7" +05/30/2018,Sports_celeb,@UKCoachCalipari,"This greeted me in my office on returning from the #SECSpringMeetings. A good man and a good woman. We miss you, Co… https://t.co/DhLDv1EZPr" +05/30/2018,Sports_celeb,@UKCoachCalipari,"Wenyen grew so much from his freshman season to his sophomore year. If he continues to make those same strides, he’… https://t.co/sYWgJgaeFi" +05/30/2018,Sports_celeb,@UKCoachCalipari,".@WenyenGabriel's game is where the league continues to trend towards. He’s a position-less big man who can shoot,… https://t.co/JrrRcPforg" +05/30/2018,Sports_celeb,@UKCoachCalipari,Go do your thing! You've got our full support. https://t.co/sMcVqeRNIV +05/30/2018,Sports_celeb,@UKCoachCalipari,"What I love most about this decision is why PJ is doing it. He told me he wants to come back to be a leader, to gro… https://t.co/B98kiY7yyG" +05/30/2018,Sports_celeb,@UKCoachCalipari,"I know how good of a player he is and think he showed it at times last season, but I’m looking forward to seeing him grow and build on it." +05/30/2018,Sports_celeb,@UKCoachCalipari,"Whatever PJ decided we were going to support, but I’m really happy with the decision he’s come to because I really… https://t.co/gpOE1MJDRI" +05/30/2018,Sports_celeb,@UKCoachCalipari,This is what the NBA Draft rules are in place for. @PJWashington was able to test the waters and get all the inform… https://t.co/DULKjfhOkT +05/30/2018,Sports_celeb,@UKCoachCalipari,"Happy for you, kid. Let's go chase something special. https://t.co/33D0gVIbLM" +05/30/2018,Sports_celeb,@UKCoachCalipari,"Catching up with my old athletic director, R.C. Johnson, and his wife, Melba, in Destin for the #SECmeetings. https://t.co/Ofws6ohP9o" +05/29/2018,Sports_celeb,@UKCoachCalipari,Another big game for @bradcalipari overseas. Went for 17 points and six assists in his final game today! Looking fo… https://t.co/DS0WrK2lPO +05/29/2018,Sports_celeb,@UKCoachCalipari,"Another big game for @bradcalipari! He scored 14 points, had eight assists and was 4 of 5 from 3. Proud of him." +05/28/2018,Sports_celeb,@UKCoachCalipari,"True servant leaders care more for their brothers, their teammates and their units more than themselves. Today, on… https://t.co/MvY7yjNR2E" +05/28/2018,Sports_celeb,@UKCoachCalipari,I saw an older veteran being interviewed today about the fear of going into battle and his comment struck me. He sa… https://t.co/5tGzWAnG28 +05/28/2018,Sports_celeb,@UKCoachCalipari,"As I’m watching war movies today, from Patton to Casualties of War and others, I’m reminded of how blessed we are t… https://t.co/l0hbMnuxyl" +05/27/2018,Sports_celeb,@UKCoachCalipari,.@bradcalipari is overseas this week playing on a basketball tour with Global Sports Academy. He had 17 points and… https://t.co/lNpQBNduNm +05/25/2018,Sports_celeb,@UKCoachCalipari,Every player is on their own path. When you think about what Isaiah accomplished in two years here and Dom accompli… https://t.co/WOqqGJFP3L +05/25/2018,Sports_celeb,@UKCoachCalipari,Couldn’t be more proud of @AntDavis23 being the third-leading vote-getter behind @KingJames and @JHarden13. He just… https://t.co/LFNPKKhEkx +05/25/2018,Sports_celeb,@UKCoachCalipari,Happy to see @ZayBriscoe and @Dhawk_25 enjoying success overseas. I know those two will grind to make their dreams… https://t.co/mcfgRKrbcp +05/25/2018,Sports_celeb,@UKCoachCalipari,I think our fans are really going to enjoy these upgrades. @Rupp_Arena has long been the gold standard in college b… https://t.co/wJeJHN0aiQ +05/22/2018,Sports_celeb,@UKCoachCalipari,How about @TwanyBeckham11? Happy for him! https://t.co/BKmTfP88a5 +05/21/2018,Sports_celeb,@UKCoachCalipari,One of the most gratifying times of my coaching career has been watching Brad grow and develop to the man he is tod… https://t.co/eVJTgIODD6 +05/21/2018,Sports_celeb,@UKCoachCalipari,"Like his dad, he's got a fighter's mentality and there is no doubt in my mind he's going to scratch and claw his wa… https://t.co/X7pvDghAMX" +05/21/2018,Sports_celeb,@UKCoachCalipari,"We've always been an option for him, but we wanted Zan to make this decision on his own. I'm so happy he's decided… https://t.co/hvtsxSvBfZ" +05/21/2018,Sports_celeb,@UKCoachCalipari,Every conversation Kenny and I have had about @young_payne2321 has been about what's best for Zan. I wanted Kenny t… https://t.co/LKa1CstxYe +05/21/2018,Sports_celeb,@UKCoachCalipari,"#BBN, we've added a stop to our Satellite Camp tour, which begins in just a couple weeks. We'll be headed to Boyle… https://t.co/5Kp0SPDLIK" +05/20/2018,Sports_celeb,@UKCoachCalipari,Congratulations to @UKCoachLawson and @UKsoftball! https://t.co/gxBcdooQPr +05/20/2018,Sports_celeb,@UKCoachCalipari,"Yes, that’s @KarlTowns. LOL. How old do you think he is in this pic? https://t.co/2JCRf5JAqr" +05/20/2018,Sports_celeb,@UKCoachCalipari,"John Maxwell, one of my mentors. https://t.co/tpxsL4TG1Z" +05/20/2018,Sports_celeb,@UKCoachCalipari,Two great leaders! https://t.co/Jztqgb9b1h +05/20/2018,Sports_celeb,@UKCoachCalipari,"Dinner with great friends tonight in Newport Beach: Robert Lara, @KarlTowns, @J30_RANDLE and Billy Bayno. John Maxw… https://t.co/Eh2DGeFJMy" +05/20/2018,Sports_celeb,@UKCoachCalipari,Did Justify win again?!? What?!? Love it for my friends at @WinStarFarm! +05/19/2018,Sports_celeb,@UKCoachCalipari,"By the way, no golf for me. Still recuperating. Back to resting for 10 days after this trip." +05/19/2018,Sports_celeb,@UKCoachCalipari,"We’ve got a winner! Chris, check your direct messages in a few minutes and we will get your contact info to get you… https://t.co/6Eta90FQWr" +05/19/2018,Sports_celeb,@UKCoachCalipari,"Any guesses where I'm at exactly, by the way? First correct response will get one of my Hall of Fame coins. https://t.co/9H6235C0MD" +05/19/2018,Sports_celeb,@UKCoachCalipari,"Speaking out west after being in Chicago with @PJWashington, @shaiglalex and @hamidoudiallo last night for the… https://t.co/Yy7A12YmY9" +05/19/2018,Sports_celeb,@UKCoachCalipari,I’m happy @taiwynyard decided on Santa Clara. Coach Herb Sendek is a friend from Pittsburgh. He was an assistant at… https://t.co/SyL7StRvmx +05/18/2018,Sports_celeb,@UKCoachCalipari,"Sad to hear that Bret Bearup passed away suddenly. A former Kentucky player for Coach Hall, I’ve known Bret since m… https://t.co/IhrdiYa6UE" +05/17/2018,Sports_celeb,@UKCoachCalipari,Good luck to @UKCoachLawson and the @UKsoftball team tomorrow. Incredible job that Coach Lawson does every year. Th… https://t.co/wlzFvXITj1 +05/17/2018,Sports_celeb,@UKCoachCalipari,"Utah gives us a great opponent for our fans at home next season, & then in 2019, our fans can spend a week with us… https://t.co/dK8dHjfy6e" +05/17/2018,Sports_celeb,@UKCoachCalipari,I promised you some schedule news. One of the things I hear most about from our fans is they enjoy traveling w/us &… https://t.co/fV4oLlOgfE +05/17/2018,Sports_celeb,@UKCoachCalipari,Wow! Congrats to Coach Craig and the guys. Looks like I know who to call to help me with my game. https://t.co/kYecgQ1Gkv +05/16/2018,Sports_celeb,@UKCoachCalipari,"I am devastated tonight over the passing of my friend and mentor, Mike Slive. I knew Mike was not feeling great an… https://t.co/Z0z3w5AkZD" +05/16/2018,Sports_celeb,@UKCoachCalipari,"If they decide to pursue their genius and play professional basketball, they know they have lifetime scholarships s… https://t.co/gbEYiDl8JS" +05/16/2018,Sports_celeb,@UKCoachCalipari,Our kids are committed to learning and take care of business in the classroom. We teach growth in all areas. It's w… https://t.co/l1jIo6BKuJ +05/16/2018,Sports_celeb,@UKCoachCalipari,For some kids that's playing professionally. For others it's outside of basketball. Whatever they decide to do – wh… https://t.co/RQ69WG5XcN +05/16/2018,Sports_celeb,@UKCoachCalipari,"Proud of this and happy for our guys, @UKMichaelStone and our CATS staff. Our whole mindset is preparing our kids f… https://t.co/sxwvJwGLZj" +05/16/2018,Sports_celeb,@UKCoachCalipari,"The first time I heard it I thought I heard five star. The second time I listened to it, it without question says L… https://t.co/u2vhBlwLem" +05/15/2018,Sports_celeb,@UKCoachCalipari,"A great kid headed to play for a great coach, a great program and a great school. I wish @SKJ all the best. https://t.co/lNsWgfUZlx" +05/14/2018,Sports_celeb,@UKCoachCalipari,"What I love about him is he models his game after @AntDavis23, one of the best we’ve ever had, but wants to be his… https://t.co/sTJJhG1O9v" +05/14/2018,Sports_celeb,@UKCoachCalipari,EJ is the type of position-less player the game is moving towards. He can play just about anywhere and make plays o… https://t.co/i00klmjBi7 +05/14/2018,Sports_celeb,@UKCoachCalipari,I hope our fans understand just how good @E_Montomery is and how excited we are to have him. You’re talking about a… https://t.co/bAJsA3b8Q4 +05/14/2018,Sports_celeb,@UKCoachCalipari,"Been out it recovering but just got caught up on a great weekend. Heard @GoSydGo & @JCamachoQuinn got gold at SECs,… https://t.co/YGVhCJjnUW" +05/14/2018,Sports_celeb,@UKCoachCalipari,"I want to congratulate @JustMarcusLee on graduating this weekend. Even though Marcus didn’t finish with us, I’m jus… https://t.co/7LlB7l6xBT" +07/02/2018,Sports_celeb,@RSherman_25,@prichiejr Hahahaha better late than never my brother +07/02/2018,Sports_celeb,@RSherman_25,@BJack9TTU @derekcarrqb @Lakers 😂🤣 +07/02/2018,Sports_celeb,@RSherman_25,@GeorgeFant74 We got room. It’s gonna be hard to argue now +07/02/2018,Sports_celeb,@RSherman_25,@Bwagz I know. We need more though +07/01/2018,Sports_celeb,@RSherman_25,"RT @IntThings: Don't let anyone tell you there's something you can't do. If you have a dream, protect it. If you want something, go get it" +06/30/2018,Sports_celeb,@RSherman_25,@byrneskramstad Not at all. Same size. Same width. I have changed teams since I was in youth football. I worry… https://t.co/hNGWgrH6Gm +06/30/2018,Sports_celeb,@RSherman_25,Let’s get it @TigerWoods https://t.co/Nz3vs5BSrs +06/30/2018,Sports_celeb,@RSherman_25,@MikeDavisRB Smh all these kids talking about getting “physical” +06/30/2018,Sports_celeb,@RSherman_25,@MikeDavisRB Mike you gotta get them boys right! +06/29/2018,Sports_celeb,@RSherman_25,@thewiz0915 We have different ears +06/29/2018,Sports_celeb,@RSherman_25,@DDDGURU @ButcherBoy415 They may hate the truth +06/29/2018,Sports_celeb,@RSherman_25,Drake is speaking that honest on this new album. Just callin it how it is. +06/29/2018,Sports_celeb,@RSherman_25,@TheAdamsEra @AdrianColbert27 Big truth. +06/28/2018,Sports_celeb,@RSherman_25,RT @TFordFSP: .@RSherman_25 the GOAT was back in the lab grinding today! The comeback season is REAL! #CantCheatTheGrind #NFLOffSeasonGrind… +06/28/2018,Sports_celeb,@RSherman_25,"I love 🇺🇸 pride, don't you? You can still grab this tee in time for July 4th! + +Order here 👉🏿 https://t.co/SKhNwbd2rb https://t.co/N8Ohobrb7O" +06/28/2018,Sports_celeb,@RSherman_25,RT @wyche89: Good morning. @NFL Players keep walking the walk when it comes to community service and good deeds. Well done ⁦@marcelldareus⁩… +06/28/2018,Sports_celeb,@RSherman_25,@AdrianLaurel1 @footwork_king1 Thank you +06/27/2018,Sports_celeb,@RSherman_25,@whytewunder55 @footwork_king1 Thank you +06/27/2018,Sports_celeb,@RSherman_25,"RT @NoChillDe3zY: Now live, support is always appreciated 😎 https://t.co/LsL2XVXS8f https://t.co/mkDqqgZpec" +06/27/2018,Sports_celeb,@RSherman_25,RT @footwork_king1: @RSherman_25 out here getting this work in with me today. We got better today Sherm 💯 https://t.co/olBqlqj7mc +06/27/2018,Sports_celeb,@RSherman_25,Got some good work in with some of the best out there. @AqibTalib21 @_bigplayslay23 @XavierRhodes29_ @ahkello ...… https://t.co/xyuzgcMVmB +06/27/2018,Sports_celeb,@RSherman_25,"He knew I was a fan, so I got the first copy of @CrashBandicoot on Xbox One. Thank you Crash!!… https://t.co/8QLO8tI4C2" +06/26/2018,Sports_celeb,@RSherman_25,"RT @footwork_king1: I put my boys Richard Sherman, Aqib Talib, Xavier Rhodes and Darius Slay through some solid work today! We are right ba…" +06/23/2018,Sports_celeb,@RSherman_25,RT @JaValeMcGee: June 23rd https://t.co/o0NZky3qXM +06/23/2018,Sports_celeb,@RSherman_25,@_ericdavis_ You can give some people all the ingredients and they still can’t make a cake lol. The coordinator is who you study. +06/22/2018,Sports_celeb,@RSherman_25,"RT @geescottjr: The environment in the doors of @gofordsports is the BEST OF THE BEST! +@RSherman_25 and I talking some different release te…" +06/22/2018,Sports_celeb,@RSherman_25,@derekcarrqb Hopefully he falls to the Lakers +06/21/2018,Sports_celeb,@RSherman_25,"I've been working tirelessly with my design team this off-season, and we've come up with some great new gear for y'… https://t.co/FfWkclmE0v" +06/21/2018,Sports_celeb,@RSherman_25,"RT @49ers: Let's gooooo! 🔊 + +Sound up for @RSherman_25's first time mic'd up as a member of the 49ers https://t.co/wu07zr0XhB" +06/21/2018,Sports_celeb,@RSherman_25,"RT @SInow: If you’re ever in the Bay Area and need a place to crash, maybe you should check out which hotels Richard Sherman likes — he's s…" +06/20/2018,Sports_celeb,@RSherman_25,RT @NoChillDe3zY: 🚨New video alert🚨 Click here to see the whole video https://t.co/9U33csC1c7. here’s a quick snippet from our Extreme spic… +06/19/2018,Sports_celeb,@RSherman_25,@WillBlackmon 😡😡😡😡 +06/18/2018,Sports_celeb,@RSherman_25,@Teresa4ever12 Thank you +06/17/2018,Sports_celeb,@RSherman_25,RT @TFordFSP: My young bull is @BroncoSportsFB camp looking and playing like a created player! No questions to why he is considered one of… +06/17/2018,Sports_celeb,@RSherman_25,@JOKER23445 Thank you +06/17/2018,Sports_celeb,@RSherman_25,@terryhollimon Preciate you brother!! +06/17/2018,Sports_celeb,@RSherman_25,@Bwagz @UniversalORL 👏🏾👏🏾🙌🏾🙌🏾🙌🏾👏🏾 see that’s what I’m talking about!! Get ya wizarding bars up +06/17/2018,Sports_celeb,@RSherman_25,@SoooDonna Thank you +06/17/2018,Sports_celeb,@RSherman_25,@Bwagz @UniversalORL So you gonna just go with the jail house pose lol +06/17/2018,Sports_celeb,@RSherman_25,Happy Father’s Day to all the amazing Men out there setting an example for their kids and the men out there being f… https://t.co/2RQSYQYP6O +06/16/2018,Sports_celeb,@RSherman_25,RT @Michael31Thomas: Honored to serve the players https://t.co/4RrWCv089k +06/16/2018,Sports_celeb,@RSherman_25,@LossyP All good bro +06/16/2018,Sports_celeb,@RSherman_25,Opposite Day https://t.co/iD2mgX5sHU +06/16/2018,Sports_celeb,@RSherman_25,Great discussion at the @NFLPA offices today. Working to serve our players better. https://t.co/vbIoiMYKgN +06/16/2018,Sports_celeb,@RSherman_25,RT @ericwinston: Proud of the members of the EC here at the @nflpa offices speaking about the business of football. #pastpresentfuture http… +06/15/2018,Sports_celeb,@RSherman_25,They are gonna see ya light soon! https://t.co/6gotkjWJoK +06/15/2018,Sports_celeb,@RSherman_25,My brand new gear is hype😍 I'll even throw you free wristbands w/code JUNEGIFT18😏 . Just make sure you add them to… https://t.co/lmXMXAidbE +06/14/2018,Sports_celeb,@RSherman_25,@WatchJRoss They don’t lol. If anyone brought him they kids they are sick +06/14/2018,Sports_celeb,@RSherman_25,@WatchJRoss I’m done lmao 🤣😂 +06/14/2018,Sports_celeb,@RSherman_25,🤷🏾‍♂️ it’s life.... play hard ruffle some feathers ..... https://t.co/1i3ZbrvRvn +06/14/2018,Sports_celeb,@RSherman_25,😂🤣😂🤣 https://t.co/UPol1lC5Ia +06/13/2018,Sports_celeb,@RSherman_25,RT @MaioccoNBCS: Richard Sherman going through individual drills and helping Ahkello Witherspoon on final day of #49ers offseason program.… +06/13/2018,Sports_celeb,@RSherman_25,@Heisenberg415 Idk lol team issued +06/11/2018,Sports_celeb,@RSherman_25,It's not too late. You can still get Dad the perfect gift with expedited shipping👉🏿 https://t.co/CNKspogR5B https://t.co/zPuyRk15bz +06/11/2018,Sports_celeb,@RSherman_25,About to stream on @mixer with my boy @NoChillDe3zY @MikeDavisRB and @jay_ii_times https://t.co/7yNGXaqAeW +06/10/2018,Sports_celeb,@RSherman_25,@haha_cd6 I wish it was that easy for them to see. That a man has played at a certain level and deserves to be com… https://t.co/FiRftrxAvZ +06/10/2018,Sports_celeb,@RSherman_25,@realJayCarswell @haha_cd6 Obviously you don’t think winning is part of this business. The chances of winning go d… https://t.co/qHLmgQikBy +06/10/2018,Sports_celeb,@RSherman_25,@haha_cd6 No one does. If they can’t understand it they are just ignorant which wouldn’t be surprising +06/10/2018,Sports_celeb,@RSherman_25,"RT @DjCobreezy: July 1st At Thibodaux High School In Thibodaux,La @TrovonReed Presents His 1st Annual Celebrity Basketball Game Just Named…" +06/08/2018,Sports_celeb,@RSherman_25,"Celebrate the 4th Of July with my limited edition tee. Grab yours, only here👉🏿 https://t.co/S8IlWlV6sn 🎆🇺🇸 https://t.co/hXgwrQhHIa" +06/08/2018,Sports_celeb,@RSherman_25,@WaltThurm3 Right. Didn’t look right to them then 🤷🏾‍♂️ +06/07/2018,Sports_celeb,@RSherman_25,RT @BleacherReport: Malcolm Jenkins responds to Eagles being uninvited to White House solely using signs (via @SheilKapadia) https://t.co/z… +06/07/2018,Sports_celeb,@RSherman_25,@justjanr I appreciate tote service! +06/05/2018,Sports_celeb,@RSherman_25,@chrisyanke Thank you so much! +06/05/2018,Sports_celeb,@RSherman_25,It’s called Propaganda. It’s been used before but hey.... “those who forget history are doomed to repeat it” https://t.co/I5hcrmKafx +06/04/2018,Sports_celeb,@RSherman_25,@chrisyanke Preciate you!! +06/03/2018,Sports_celeb,@RSherman_25,RT @DrinkBODYARMOR: Own the octagon with #SuperiorHydration. Our newest flavor Knockout Punch is in stores now! 💪@ufc #ObsessedWithBetter h… +06/03/2018,Sports_celeb,@RSherman_25,RT @Team_Penske: 2nd pole of 2018 for @Blaney. #Pocono400 https://t.co/XcqgtAIuCO +06/03/2018,Sports_celeb,@RSherman_25,"RT @DrinkBODYARMOR: 🚨BREAKING🚨BODYARMOR now available at your local @7eleven! Orange Mango, Knockout Punch, Blackout Berry and Strawberry B…" +06/01/2018,Sports_celeb,@RSherman_25,@JuiceCheck44 @Quaski29 I think he got it out of your locker Juice. +05/31/2018,Sports_celeb,@RSherman_25,@Trent5Taylor @AdrianColbert27 🙄🙄🙄 +05/31/2018,Sports_celeb,@RSherman_25,@ithinkitwasCJ3 Sounds like your the problem 🤷🏾‍♂️ +05/30/2018,Sports_celeb,@RSherman_25,@AdrianColbert27 🤔🤔🤔🤔.....🧐🧐🧐......🤷🏾‍♂️🤷🏾‍♂️🤷🏾‍♂️....👌🏾👌🏾👌🏾 +05/30/2018,Sports_celeb,@RSherman_25,@RachelAmaryah Thank you +05/29/2018,Sports_celeb,@RSherman_25,Man they were goin! https://t.co/HCI84RcyFi +05/28/2018,Sports_celeb,@RSherman_25,@JCB_511 @jenniferleechan Done +05/28/2018,Sports_celeb,@RSherman_25,@AB_EMS05 @jenniferleechan @NinersNation Thank you +05/28/2018,Sports_celeb,@RSherman_25,@BygMan85 @jenniferleechan Thank you +05/28/2018,Sports_celeb,@RSherman_25,@RaytronHarris @highitsjesss @JulioXCI_LGND Lol Preciate that heads up but I’m in a forgiving mood +05/28/2018,Sports_celeb,@RSherman_25,@TylerNoble1 @ZachDiele12 Done +05/28/2018,Sports_celeb,@RSherman_25,@CeeJGomez @andrewb3 Done and congrats +05/28/2018,Sports_celeb,@RSherman_25,Final hours ⏰. Save on my gear while you can👉🏿 https://t.co/AR1NUErU3u https://t.co/63Id4nYvQE +05/28/2018,Sports_celeb,@RSherman_25,@averagejaypapi Much appreciated +05/28/2018,Sports_celeb,@RSherman_25,@leftymo @jenniferleechan Lmao good luck with that +05/28/2018,Sports_celeb,@RSherman_25,@breezyy77 It’s gonna be fun +05/28/2018,Sports_celeb,@RSherman_25,@EnreekayCampos @49ers It’s gonna be a fun ride +05/28/2018,Sports_celeb,@RSherman_25,@Hawk_Talk_ Thank you +05/28/2018,Sports_celeb,@RSherman_25,@betsyannfay Thank you I appreciate you guys still. +05/28/2018,Sports_celeb,@RSherman_25,@dperret2020 @GottaGetIt81 Was wondering how many you made? https://t.co/xMTcToQm87 +05/28/2018,Sports_celeb,@RSherman_25,@JazLail Well I don’t control his twitter lol only mine +05/28/2018,Sports_celeb,@RSherman_25,@AlecMarcus16 Pay them!!! +05/28/2018,Sports_celeb,@RSherman_25,@_ericdavis_ 🤷🏾‍♂️ +05/28/2018,Sports_celeb,@RSherman_25,@ShawnLeeMinor Just doing what I can +05/28/2018,Sports_celeb,@RSherman_25,@realsmoovelike @TroyLLF Respect +05/28/2018,Sports_celeb,@RSherman_25,@MikeDavisRB @FortniteGame I’m about to hop on +05/28/2018,Sports_celeb,@RSherman_25,@Hip_Arriaga Lol Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@IM_Stretch @SneakerWhorez Not blocked +05/28/2018,Sports_celeb,@RSherman_25,@Tlock20 @FlyingOrr Done +05/28/2018,Sports_celeb,@RSherman_25,@VI_MOBB @iBurnCookiez Done +05/28/2018,Sports_celeb,@RSherman_25,@adam_gronberg https://t.co/CUWpZVeggM +05/28/2018,Sports_celeb,@RSherman_25,@Chavez4L @Ferndoggy831 Done +05/28/2018,Sports_celeb,@RSherman_25,@VMascoe Thank you +05/28/2018,Sports_celeb,@RSherman_25,@JSiAirborne @therealSethI Done +05/28/2018,Sports_celeb,@RSherman_25,@chrisroth408 @cbrown2727 Done +05/28/2018,Sports_celeb,@RSherman_25,@GaetaJason @Its_Papas Done +05/28/2018,Sports_celeb,@RSherman_25,@rjmadrid @Chazperin Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@Ericwgreene1977 Thank you +05/28/2018,Sports_celeb,@RSherman_25,@TucsonFan4 @maiyahall Done +05/28/2018,Sports_celeb,@RSherman_25,@Ericwgreene1977 Hahaha prob because they cut me.... may want to talk to them +05/28/2018,Sports_celeb,@RSherman_25,@jtof49 @EnreekayCampos Done +05/28/2018,Sports_celeb,@RSherman_25,@realmarshall73 Preciate you +05/28/2018,Sports_celeb,@RSherman_25,@2nQue @mikeybadaluco Done +05/28/2018,Sports_celeb,@RSherman_25,@_ericdavis_ Lol just a bit of a misunderstanding +05/28/2018,Sports_celeb,@RSherman_25,@Goat_Tom_Brady Wasn’t invited +05/28/2018,Sports_celeb,@RSherman_25,@TheDudeSisco @AlePlaysWStars Done +05/28/2018,Sports_celeb,@RSherman_25,@cougski I appreciate that. But they fired me. +05/28/2018,Sports_celeb,@RSherman_25,@McMahonProject Thank you +05/28/2018,Sports_celeb,@RSherman_25,@k_welk @JulioXCI_LGND No block +05/28/2018,Sports_celeb,@RSherman_25,@HoneyBadger49er @Mbone49ers Done +05/28/2018,Sports_celeb,@RSherman_25,@808Ace49 @MylesInSF Done +05/28/2018,Sports_celeb,@RSherman_25,@RoachTheSecond @NickCaroccia Done +05/28/2018,Sports_celeb,@RSherman_25,@Yoni_T @Raph4real Done +05/28/2018,Sports_celeb,@RSherman_25,@Hondo1731 Ur not blocked +05/28/2018,Sports_celeb,@RSherman_25,@travissouders Thank you +05/28/2018,Sports_celeb,@RSherman_25,@SeahawkScout Lmao I’m just keeping it 💯 +05/28/2018,Sports_celeb,@RSherman_25,@al3eexiisss You are kinda part of it +05/28/2018,Sports_celeb,@RSherman_25,@RANBOY_D_Go 🤷🏾‍♂️ +05/28/2018,Sports_celeb,@RSherman_25,@davidson_caleb Lol man I’m real +05/28/2018,Sports_celeb,@RSherman_25,I’m trying to find a way to unlock these niner fans. So if you have a friend that I have blocked tag them so I can… https://t.co/YEFF85Pcbi +05/28/2018,Sports_celeb,@RSherman_25,@GottaGetIt81 Greatness usually wins more than 40% of the finals they play in but hey. I guess there is someone for everyone +05/28/2018,Sports_celeb,@RSherman_25,@al3eexiisss If you are a marvel universe fan then shame on you! +05/28/2018,Sports_celeb,@RSherman_25,@Saulururur I was thinking that. It breaks so many rules.. +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss @JulioXCI_LGND See you then +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss @JulioXCI_LGND Done +05/28/2018,Sports_celeb,@RSherman_25,@highitsjesss Yea no one has sent me a list lol +05/28/2018,Sports_celeb,@RSherman_25,@DrJasonJohnson What are movies without special effects tho? +05/28/2018,Sports_celeb,@RSherman_25,@TheAceOfSpades3 I can’t say will Wheaton without thinking of Stevie on family guy saying it. +05/28/2018,Sports_celeb,@RSherman_25,@Jennster83 What did you think? +05/28/2018,Sports_celeb,@RSherman_25,@TheAceOfSpades3 Yea they have to put that cinematic touch on it. +05/28/2018,Sports_celeb,@RSherman_25,@samvalenti1 How?!?!?!? +05/28/2018,Sports_celeb,@RSherman_25,@dcalltheway88 I saw it! Really liked it +05/28/2018,Sports_celeb,@RSherman_25,@S0UL42 I’m going to read the book after. +05/28/2018,Sports_celeb,@RSherman_25,@ConnorHawks12 I really liked it. My wife didn’t. They tied together some loose ends +05/28/2018,Sports_celeb,@RSherman_25,@samvalenti1 Which one? +05/28/2018,Sports_celeb,@RSherman_25,@2KEEMdomCome Gonna have to check it out! +05/28/2018,Sports_celeb,@RSherman_25,At least Deadpool 2 was good. Still need to see Ready player 1 even though most say it’s nothing like the book. +05/28/2018,Sports_celeb,@RSherman_25,@TravisWeyand And got how many more calls? +05/28/2018,Sports_celeb,@RSherman_25,@notBryBry The fact that Boston has won every single game in this series at home by double digits is not a fact. T… https://t.co/2gI6uq6SAE +05/28/2018,Sports_celeb,@RSherman_25,@MarvinP253 U don’t need to. Just need to make the right calls at the right time. Back players off so they don’t… https://t.co/T7y2WRExtx +05/28/2018,Sports_celeb,@RSherman_25,@MurcBlu @vtmobilewash Correct. Just like to point it out +05/28/2018,Sports_celeb,@RSherman_25,@amolsachdev They have literally have won every game in Boston by double digits but all of a sudden Cleveland witho… https://t.co/fBnEFmYBlT +05/28/2018,Sports_celeb,@RSherman_25,So predictable.... +05/28/2018,Sports_celeb,@RSherman_25,@Tosscarli Nope just the non calls and over calls on certain ppl that dictate how hard you can play on defense but… https://t.co/PwfRiR7oJC +05/28/2018,Sports_celeb,@RSherman_25,And here it comes.... +05/28/2018,Sports_celeb,@RSherman_25,Hopefully the fourth is filled with “Let’em play” +05/28/2018,Sports_celeb,@RSherman_25,This game looks controlled 🙄.... the things that makes sports fun is the unpredictable nature.... this is predictab… https://t.co/gsL1U1cmUj +05/27/2018,Sports_celeb,@RSherman_25,@EliHarold_ Told you +05/27/2018,Sports_celeb,@RSherman_25,@1Tyvis 🤷🏾‍♂️ just wasting time +05/26/2018,Sports_celeb,@RSherman_25,@sonicsman Lmao let me know how that works out +05/26/2018,Sports_celeb,@RSherman_25,@JamesDockery31 Truth... +05/26/2018,Sports_celeb,@RSherman_25,@_bigplayslay23 Just wasting our time +05/26/2018,Sports_celeb,@RSherman_25,@EliHarold_ Graciously. They prob took him to get something to eat too +05/26/2018,Sports_celeb,@RSherman_25,@EliHarold_ Let me guess now. Hou vs. GS goes to 7. The NBA already knows it so why make us watch it. Let’s just… https://t.co/v87LumqKaS +05/26/2018,Sports_celeb,@RSherman_25,@qdiggs6 @AdrianColbert27 @cavs Just real. I don’t have a team In it but love seeing good basketball. They litera… https://t.co/lSy8IF0wp5 +05/26/2018,Sports_celeb,@RSherman_25,@LebadiahLonghrn @King_Guttah Lmao haha you have no idea +05/26/2018,Sports_celeb,@RSherman_25,@King_Guttah https://t.co/ZiMCvkMGLw +05/26/2018,Sports_celeb,@RSherman_25,@King_Guttah https://t.co/03ch5JJgJ1 +05/26/2018,Sports_celeb,@RSherman_25,It’s not fun to watch these NBA games when the game is called one sided. It’s so obvious. If they just wanted a g… https://t.co/YmncWN8E60 +05/26/2018,Sports_celeb,@RSherman_25,@RonboSports Yea it was it was good read +05/25/2018,Sports_celeb,@RSherman_25,@BournePoly11 You been going for it BR! Lmao +05/25/2018,Sports_celeb,@RSherman_25,@Jerky_Rice Going to check it out +05/25/2018,Sports_celeb,@RSherman_25,@Jordanalmeida_7 Read it multiple times +05/25/2018,Sports_celeb,@RSherman_25,@BayBCakes1101 Big sci-fi fan so I will check them out +05/25/2018,Sports_celeb,@RSherman_25,@ZOliverson Thank you!!! We will make you proud +05/25/2018,Sports_celeb,@RSherman_25,@tayloreigsti 👏🏾👏🏾👏🏾 +05/25/2018,Sports_celeb,@RSherman_25,Thank you so much for the suggestions!!! Gonna have some good reading! +05/25/2018,Sports_celeb,@RSherman_25,@NinersNation Thank you +05/25/2018,Sports_celeb,@RSherman_25,@JJFinesser Gonna check it out +05/25/2018,Sports_celeb,@RSherman_25,In need of a good novel to read on this flight. Any suggestions? +05/25/2018,Sports_celeb,@RSherman_25,@roofe39 @49ers 🙌🏾🙌🏾🙌🏾🙌🏾 +05/24/2018,Sports_celeb,@RSherman_25,@nancyholder Thank you!!! +05/24/2018,Sports_celeb,@RSherman_25,REWTEET if you're ready for a 3-day weekend!! 🙌🏾 Don't forget to shop my MDW Sale now https://t.co/ZXj0oi6G6O 🇺🇸 https://t.co/WvWC7yfXV5 +05/24/2018,Sports_celeb,@RSherman_25,@49ersSportsTalk Thank you +05/24/2018,Sports_celeb,@RSherman_25,Throwbacks! https://t.co/dTeaGD4Oep +05/24/2018,Sports_celeb,@RSherman_25,@Dimesbasketball 🤔🤔🤔 I like what you did there +05/24/2018,Sports_celeb,@RSherman_25,@1Tyvis @ahkello Yea he would be better off getting rid of an arm or leg than getting rid of her.... she’s like his better 2/3 +05/23/2018,Sports_celeb,@RSherman_25,@MaioccoNBCS https://t.co/srSCehyNo5 +05/22/2018,Sports_celeb,@RSherman_25,@Bwagz Preciate you brother +05/22/2018,Sports_celeb,@RSherman_25,Enjoying my time https://t.co/lZzLV5t28U +05/22/2018,Sports_celeb,@RSherman_25,"Some people hear Laurel, some people hear Yanny, have you heard about this giveaway👂 ? Enter now to win a signed ha… https://t.co/7J6sO4pnlY" +05/17/2018,Sports_celeb,@RSherman_25,Funny how people rush to judgement so quickly they can’t accept when the truth comes out so they sensationalize a l… https://t.co/owxOl6QGRu +05/15/2018,Sports_celeb,@RSherman_25,RT @DeionSanders: ATTENTION ALL HIGHSCHOOL ATHLETES please stop CHASING offers and chase GREATNESS! Chase a 3.5gpa or better. Chase good ma… +05/14/2018,Sports_celeb,@RSherman_25,RT @JimTrotter_NFL: Thanks to @DougBaldwinJr @RSherman_25 @MalcolmJenkins and @j_bademosi24 for allowing me to chronicle their push for cr… +05/14/2018,Sports_celeb,@RSherman_25,RT @DrinkBODYARMOR: #SuperiorHydration https://t.co/kjD2UniDPf +05/14/2018,Sports_celeb,@RSherman_25,@cchoatedvm 🙌🏾🙌🏾🙌🏾 +05/13/2018,Sports_celeb,@RSherman_25,@Official_tylerg @49ers @NFL @sfgov @49ersCommunity Looks great brother +05/13/2018,Sports_celeb,@RSherman_25,🙌🏾 https://t.co/Obczh5WhzA +05/13/2018,Sports_celeb,@RSherman_25,"RT @vSundblade: COME THROUGH TO THE #NOCHILLZONE AND DROP A FOLLOW FOR @NoChillDe3zY + +https://t.co/z5LNEQkGAk" +05/12/2018,Sports_celeb,@RSherman_25,"RT @NoChillDe3zY: Now live on @WatchMixer https://t.co/LsL2XVXS8f, come say what’s up" +05/12/2018,Sports_celeb,@RSherman_25,@BIrvin_WVU11 Bro you made my whole year!!! You are an example for everyone out there! Proud of you man +07/01/2018,Sports_celeb,@CP3,UNFINISHED BUSINESS...RUN IT BACK 🤘🏾🚀 https://t.co/KwWcsp6lx6 +06/30/2018,Sports_celeb,@CP3,Took the kids to see #UncleDrew tonite!! Great movie and a great job by the entire cast! #CamrynLovedBigFella #LilChrisLovedUncleDrew +06/26/2018,Sports_celeb,@CP3,MVP!!!!!! ✊🏾🤘🏾 https://t.co/IO0StRAsNV +06/26/2018,Sports_celeb,@CP3,MVP!!!!!! ✊🏾🤘🏾 https://t.co/QyocWYFBl9 +06/24/2018,Sports_celeb,@CP3,Man we had so much fun playing @FamilyFeudABC! Thank you to @IAmSteveHarvey & team for having us!! Excited for you… https://t.co/U8CLHOx0x8 +06/23/2018,Sports_celeb,@CP3,"RT @WTRMLNWTR: Hoop Hard, Drink Clean. Proud of our partner @CP3 and his ""Go Hoop"" initiative, celebrate national basketball awareness day!…" +06/23/2018,Sports_celeb,@CP3,"RT @CoachDManning: “Basketball isn’t just about the bright lights, packed arenas, and highlight reels. Basketball is a way of life.” + +#goh…" +06/23/2018,Sports_celeb,@CP3,RT @CoachDManning: @gohoopday is a global basketball holiday. Participation is simple -- go play basketball and represent your game via so… +06/23/2018,Sports_celeb,@CP3,"RT @NBA: Up next, @CP3 stops by his old high school West Forsyth! #GoHoopDay https://t.co/IaEFXTl6hN" +06/23/2018,Sports_celeb,@CP3,RT @StateFarm: @CP3 @gohoopday Anyone can get involved in #gohoopday... even @CP3's State Farm agent. Find out how at https://t.co/zex18m11… +06/23/2018,Sports_celeb,@CP3,RT @Spalding: True believers ball together. The first ever global basketball holiday is going down tomorrow. Get out and hoop with @CP3 and… +06/23/2018,Sports_celeb,@CP3,RT @WakeMBB: Happy #GoHoopDay https://t.co/42PjCGwkoq +06/22/2018,Sports_celeb,@CP3,Congrats to my guys @WendellCarterJr @CollinYoungBull @CallMe_NonStop on turning your dreams to reality! Enjoy the… https://t.co/ilu4fiz9fp +06/21/2018,Sports_celeb,@CP3,Hosting the first ever @statefarm Showdown with my guy @AaronRodgers12 at the beautiful @MoheganSun next week!! Vis… https://t.co/7e21t8GfoX +06/20/2018,Sports_celeb,@CP3,"Can't imagine how I'm going to talk to my kids about this... To all parents reading this, please slow down and take… https://t.co/oRIjPRYrOK" +06/18/2018,Sports_celeb,@CP3,"Give the @gohoopday hotline a call to hear why I love the game. After the beep, tell me why you do, too! #GoHoopDay https://t.co/Nuj4MMrQ2D" +06/17/2018,Sports_celeb,@CP3,"To the OG of all OGs who has had my back from the very beginning, HAPPY FATHER’S DAY!! https://t.co/EkUoq3QmUH" +06/15/2018,Sports_celeb,@CP3,"On June 23rd, I’m launching @gohoopday, basketball’s first global holiday, as a way to celebrate the greatest game… https://t.co/ZGZqsCBQTn" +06/15/2018,Sports_celeb,@CP3,Bounce back. https://t.co/BKXKOkqftd +05/18/2018,Sports_celeb,@CP3,Prayers to the kids and families affected by today's tragedy. We need to do better by our children.… https://t.co/HJXbDNnNJZ +04/13/2018,Sports_celeb,@CP3,Stay The Course #RedNation 🤘🏾 https://t.co/Omu7DHM16L +04/11/2018,Sports_celeb,@CP3,@rhsmooth03 Right!! That’s where it all started ✊🏾 +04/11/2018,Sports_celeb,@CP3,Nobody left a mark on me like my grandfather. Thank you to @PlayersTribune and @Sharpie for the opportunity to shar… https://t.co/c322FmOzCL +04/11/2018,Sports_celeb,@CP3,The power of focus and persistence is real!! Congrats Andre Ingram on your NBA debut. Well deserved! https://t.co/U1MY9F1LOI +04/11/2018,Sports_celeb,@CP3,National Sibling Day! https://t.co/Eg7RAf9XtL +04/08/2018,Sports_celeb,@CP3,.@TheMasters Champ!!! Congrats @PReedGolf! https://t.co/U6PTEcKzHR +04/08/2018,Sports_celeb,@CP3,Roadtrip ready. Thank you @HOOKandALBERT 🙏🏾 https://t.co/vIeyOptomZ +04/08/2018,Sports_celeb,@CP3,Family Business https://t.co/UNifqYbv1U +04/06/2018,Sports_celeb,@CP3,Back like we’re in '07🤘🏾 https://t.co/Bx9qW5YZ4d +04/05/2018,Sports_celeb,@CP3,"RT @NickDePaula: Inside the delayed timeline and process of designing Chris Paul’s newest Jordan sneaker, the CP3.11. + +@CP3 becomes just th…" +04/05/2018,Sports_celeb,@CP3,My dream is that all kids have access to the same resources and grow up in a world full of opportunities.… https://t.co/p03Xtg0IK3 +04/04/2018,Sports_celeb,@CP3,"RT @WWPubRelations: As we commemorate #MLK50, please check out ""We Sing For Martin Luther King"", a beautiful tribute to Dr. King by Holly P…" +04/02/2018,Sports_celeb,@CP3,Rest In Power Queen. Your impact will forever be remembered and appreciated. https://t.co/nEObqp4dif +04/01/2018,Sports_celeb,@CP3,Not a bad way for me and my guy to do our first Final Four together!! Big Thank You to the Brunson family and way t… https://t.co/0TD0nT0hnu +03/31/2018,Sports_celeb,@CP3,#ad Had a blast with the students of C.E. King Middle School at the opening of their new library. In partnership wi… https://t.co/qkZzJEywVy +03/30/2018,Sports_celeb,@CP3,Dope!! Let me know how you like them @The_Raheel https://t.co/NyBTEpkJDd +03/30/2018,Sports_celeb,@CP3,Well deserved @jalenbrunson1!! Keep going 💪🏾 https://t.co/NSFC3mgyf6 +03/27/2018,Sports_celeb,@CP3,Congratulations are in order @MRobertsNBPA!! Thank you for everything- your leadership and guidance allow us to be… https://t.co/Tobluh3Nw6 +03/27/2018,Sports_celeb,@CP3,Am I the only one who plays HQ religiously??? #HQ #Trivia +03/27/2018,Sports_celeb,@CP3,Trey Burke and Kemba out here gettin at it!!!!!! #NBALeaguePass +03/24/2018,Sports_celeb,@CP3,Humbled and proud of this generation taking the lead. Their time is now. #MarchForOurLives https://t.co/6WpG7AxMKK +03/21/2018,Sports_celeb,@CP3,"RT @TheCrossover: Exclusive: For the first time, Chris Paul is playing in the new Jordan CP3.XI tonight at Portland (by @_JarrelHarris) htt…" +03/18/2018,Sports_celeb,@CP3,Blessed for the opportunity to hoop every day. Always humbling to be mentioned with all-time greats. 🙏🏾 https://t.co/JAxIduBeT0 +03/16/2018,Sports_celeb,@CP3,Congrats to @HerdMBB and Coach D’Antoni on the win... but leave us out of it!!! 😂😂 https://t.co/mDibBlsk7z +03/13/2018,Sports_celeb,@CP3,#ad The only people who get me like this are my teammates. https://t.co/gKxyT7wAPE +03/10/2018,Sports_celeb,@CP3,Count me in @DwyaneWade @carmeloanthony!! Will personally make sure Winston-Salem kids are in DC on the 24th and ne… https://t.co/176l1fs6gf +03/10/2018,Sports_celeb,@CP3,RT @carmeloanthony: .@DwyaneWade and I on the same page... Standing with the students of MSD - both of us come from hometowns where the vio… +03/10/2018,Sports_celeb,@CP3,RT @DwyaneWade: Spoke to my brother @carmeloanthony & we're standing w/ students from MSD. We both come from communities where gun violence… +03/07/2018,Sports_celeb,@CP3,What an amazing career for Team CP3 alumni @Gary11_Clark. Congrats on your great accomplishments. #POY #DPOY… https://t.co/s02bmQ600H +03/07/2018,Sports_celeb,@CP3,Congrats @GrWill2 on winning SEC Player Of The Year. Well deserved. #TeamCP3 #POY https://t.co/JMdcIgPrLV +03/07/2018,Sports_celeb,@CP3,❄️❄️❄️ https://t.co/QmPxghC2cj +03/06/2018,Sports_celeb,@CP3,From one set of parents to another.. thank you @anthonyanderson @TraceeEllisRoss definitely put a smile on Mama's f… https://t.co/p8roeLHHJe +03/05/2018,Sports_celeb,@CP3,Congrats Bean!!! Great accomplishment #BiggerThanBasketball https://t.co/cHFTteBmDF +03/05/2018,Sports_celeb,@CP3,Happy Birthday Mama!!! https://t.co/AwtIxQri3U +03/03/2018,Sports_celeb,@CP3,Prayers up for my bro @RickRoss 💪🏾 +03/02/2018,Sports_celeb,@CP3,W A K A N D A • F O R E V E R https://t.co/wttg6lqsz2 +03/02/2018,Sports_celeb,@CP3,👀 @fivefour https://t.co/844yUV1gi4 +03/01/2018,Sports_celeb,@CP3,4 Young Kings!!! 👑 #TheFutureIsBright https://t.co/S4T1DDVqEi +03/01/2018,Sports_celeb,@CP3,RT @spidadmitchell: Crazy how life changes @CP3 😂😂 https://t.co/Wz0VlJUAQT +02/28/2018,Sports_celeb,@CP3,"Grateful to have had the opportunity to sit down for a conversation with @united's @rhapsodymag @inkglobal! +Photo b… https://t.co/5h5S5iszTP" +02/27/2018,Sports_celeb,@CP3,C'mon @jharden13...get ya moms!! 🤦🏾‍♂️😂🤷🏾‍♂️ https://t.co/wroWn3bLKg +02/24/2018,Sports_celeb,@CP3,#ad My new @StateFarm agent and I are on another level. Rematch @JHarden13??? https://t.co/63Mjp9AFsj +02/24/2018,Sports_celeb,@CP3,Runs in the family!! 😂🤘🏾#GoTexanDay https://t.co/DXvYoyYnRh +02/23/2018,Sports_celeb,@CP3,Thank you @steinersports and @NetSuite for a great conversation tonight! https://t.co/Agg5ha6Al9 +02/22/2018,Sports_celeb,@CP3,RT @ALSTDI: @CP3 takes the #ALSPepperChallenge to support research at @ALSTDI! 🌶🔥❤️🙌 https://t.co/FURDSFRKlA https://t.co/aDFyzF5ZIp +02/20/2018,Sports_celeb,@CP3,"RT @RobertIger: The world has embraced Black Panther, which has obliterated expectations, broken records & shattered myths. Powerful storyt…" +02/18/2018,Sports_celeb,@CP3,Dope set up at the @Xbox barbershop at #OneCourt! Had a great time playing #XboxOneX against @KarlTowns for charity… https://t.co/ScGrJocVhs +02/17/2018,Sports_celeb,@CP3,Productive day at work yesterday! Congrats and more importantly THANK YOU to @MRobertsNBPA and the entire @TheNBPA… https://t.co/sneguBN6hM +02/17/2018,Sports_celeb,@CP3,"Happy Birthday my love!! My only hope is that I can make you smile as much as you make me, the kids and everyone el… https://t.co/xvCoxsg2dG" +02/16/2018,Sports_celeb,@CP3,I’m talking basketball and culture at #SpaldingBackcourt tomorrow. Stop by or follow @Spalding on Facebook to watch… https://t.co/2ZI37SOzog +02/15/2018,Sports_celeb,@CP3,"We’re bringing you the second annual CP3 Classic for teams 12U, 14U, 15U and 17U! Head over to… https://t.co/r89SiNdVCG" +02/15/2018,Sports_celeb,@CP3,RT @BarackObama: We are grieving with Parkland. But we are not powerless. Caring for our kids is our first job. And until we can honestly s… +02/14/2018,Sports_celeb,@CP3,Happy 35th to my big brother @cjpaul14 !! Side by side since 85’.... https://t.co/f9rOE2wU91 +02/12/2018,Sports_celeb,@CP3,Get Top on the phone! @TopDawgEnt https://t.co/Dl0gqq46SN +02/11/2018,Sports_celeb,@CP3,Love you my brother!! RIP🙏🏾 #SualBop https://t.co/id6ZKPyIKK +02/08/2018,Sports_celeb,@CP3,W A Y N E S W O R L D 🤷🏾‍♂️ https://t.co/AIr8HjcYSn +02/06/2018,Sports_celeb,@CP3,Congratulations on an inspiring career my brother 🙏🏾 @realtuffjuice https://t.co/kgAfTfwzEq +02/04/2018,Sports_celeb,@CP3,Y’all already know 🤘🏾 https://t.co/6xfK4YWPpk +02/01/2018,Sports_celeb,@CP3,This Sunday!! Tune in at 2PM EST to catch our @StateFarm @PBATour Celebrity Invitational on @espn! 🎳 https://t.co/iE5qyhYGyw +01/31/2018,Sports_celeb,@CP3,History!!! 🤘🏾@JHarden13 https://t.co/NWwD4zYJqk +01/30/2018,Sports_celeb,@CP3,Can’t wait to see this movie!!! https://t.co/lcdSSEFVnP +01/30/2018,Sports_celeb,@CP3,The annual #CP3Classic is BACK!! Make sure to visit https://t.co/CtVP47EwnV to get your team registered! +01/28/2018,Sports_celeb,@CP3,Really like watchin Terry Rozier hoop...plays hard on both sides! +01/28/2018,Sports_celeb,@CP3,Congrats on 25K my brother!!!! #Brotherhood #STAYME7O https://t.co/DDThWYkMaH +01/27/2018,Sports_celeb,@CP3,PARENTS X DENIM 🤷🏾‍♂️ #NOLA https://t.co/KXnUzI3PrS +01/25/2018,Sports_celeb,@CP3,BIG TIME future ahead!! #CarolinaBoyz https://t.co/HdiNsk8OqZ +01/24/2018,Sports_celeb,@CP3,Let’s WORK!! https://t.co/q3DfSx2xlQ +01/24/2018,Sports_celeb,@CP3,30K!!! That’s a lot of buckets!!! Congrats my brother! #Brotherhood https://t.co/Ijmnv7ml7n +01/23/2018,Sports_celeb,@CP3,🚀 https://t.co/uQp17lfBfQ +01/21/2018,Sports_celeb,@CP3,"Not everything that is faced can be changed, but nothing can be changed until it is faced. - James Baldwin💡 https://t.co/X9dnKMosQx" +01/19/2018,Sports_celeb,@CP3,Teammates for a few years but FAMILY for life! #WeTalkHoopALLDay #Mr6thMan #WhatsUpFam @JCrossover https://t.co/4PuUvyeXFx +01/18/2018,Sports_celeb,@CP3,Happy birthday to a real one ✊🏾 https://t.co/AibuzSuLTM +01/16/2018,Sports_celeb,@CP3,FACTS my brother @willpowerpacker 🙌🏾 https://t.co/jCTpQRHgz8 +01/15/2018,Sports_celeb,@CP3,"Proud of our work with the W.K. Kellogg Foundation. Tune in tmw at +6:30pm CST to celebrate our common humanity.. an… https://t.co/uYPQz8iuin" +01/15/2018,Sports_celeb,@CP3,Injustice anywhere is a threat to justice everywhere - MLK +01/13/2018,Sports_celeb,@CP3,Always nice catching up with friends on the road! @MichaelPhelps @mrsnicolephelps https://t.co/pcXn3mwtNK +01/12/2018,Sports_celeb,@CP3,.@TheofficialEG10 #NBAVote +01/12/2018,Sports_celeb,@CP3,.@CapelaClint #NBAVote +01/12/2018,Sports_celeb,@CP3,.@JHarden13 #NBAVote +01/12/2018,Sports_celeb,@CP3,.@carmeloanthony #NBAVote +01/12/2018,Sports_celeb,@CP3,.@DwyaneWade #NBAVote +01/12/2018,Sports_celeb,@CP3,.@KingJames #NBAVote +01/11/2018,Sports_celeb,@CP3,🙏🏾🙏🏾🙏🏾 #16K https://t.co/5lS1a3H7lf +01/09/2018,Sports_celeb,@CP3,Congrats to Sophia Santangelo on setting a school record with 9 three pointers!! @s_santangelo3 @franksantange11 https://t.co/YUD61TSzNY +01/09/2018,Sports_celeb,@CP3,"RT @MensFitness: Chris Paul has the @HoustonRockets thinking big this #NBA season. + +@NBA star @CP3 talks his key training method for stayin…" +01/08/2018,Sports_celeb,@CP3,"Great piece from my brother @QRich. Incredibly powerful. + +https://t.co/JSWh5EdMWy" +01/04/2018,Sports_celeb,@CP3,Crazy!!! Not every day you see a quadruple-double! 👌🏾 https://t.co/ScVxD1XUdD +01/01/2018,Sports_celeb,@CP3,Stepping into the new year the right way!! 🤘🏾#HappyNewYear https://t.co/G5s6ZmNYYF +12/30/2017,Sports_celeb,@CP3,Happiest of birthdays my brother 🙏🏾🙏🏾 #Brotherhood #BiggerThanBasketball https://t.co/IyWSpJFG8X +12/30/2017,Sports_celeb,@CP3,😉 https://t.co/9cyyccmNXz +12/27/2017,Sports_celeb,@CP3,#ad @StateFarm just dropped one of the greatest karaoke videos of all time. https://t.co/kivpF6ylMH +12/26/2017,Sports_celeb,@CP3,"#ad Now that y’all know how I get down, I’m putting the rest out there. Open to suggestions. I’d tell you to share… https://t.co/e6PuPyLgKk" +12/24/2017,Sports_celeb,@CP3,Nothing like the Holiday Spirit 😂🚀🤘🏾 https://t.co/bagYCtIEMu +12/24/2017,Sports_celeb,@CP3,"#ad If my new @StateFarm agent gives you a ride, you AT LEAST sing along to the chorus. Looking at you @JHarden13 👀 https://t.co/sby0CGNnfM" +12/23/2017,Sports_celeb,@CP3,RT @Gamevice: Hope you're feeling festive! We’re giving away 9 MEGA Holiday bundles just in time for the season. Enter for your chance to w… +12/23/2017,Sports_celeb,@CP3,Happy Holidays #FromThePlayers!! https://t.co/8x26RcQYtN +12/19/2017,Sports_celeb,@CP3,'Tis the season for buckets! #SweaterBall @Spalding https://t.co/TPhraiIiMR +12/19/2017,Sports_celeb,@CP3,Congrats Bean on a career that will be remembered for generations!! #Mamba #Ko8e24 https://t.co/ZkVWNdDx6C +12/19/2017,Sports_celeb,@CP3,Walking into 14 straight like.... https://t.co/5zRVkTb3Iv +12/17/2017,Sports_celeb,@CP3,Always an honor and a blessing to be mentioned with the greats 🙏🏾 https://t.co/jtr7BkfWoZ +12/17/2017,Sports_celeb,@CP3,Post Game #13🤘🏾🚀 https://t.co/tqSVOwcjjn +12/17/2017,Sports_celeb,@CP3,@coachdinogaudio Preciate that Coach! +12/16/2017,Sports_celeb,@CP3,🤷🏾‍♂️ @KingJames @TrevorAriza @aardodson https://t.co/lwgJ6oKSxE +12/13/2017,Sports_celeb,@CP3,Ending 2017 as one of the top @NBA players searched on @Google for the year. Thanks for the support! #YearInSearch… https://t.co/ZJ2OLIluWn +12/11/2017,Sports_celeb,@CP3,Mannnn it feels so good seeing my guy @VicOladipo playing the way he is! #AllStar +12/10/2017,Sports_celeb,@CP3,"RT @HoustonRockets: Red Nation representing all the way from Italy 🇮🇹! @CP3 hooked this fan up with his shoes. 🔥 + +#ThisIsWhyWePlay https://…" +12/08/2017,Sports_celeb,@CP3,Pull up N Wreck. https://t.co/iHJzm7dlrF +12/08/2017,Sports_celeb,@CP3,"RT @WakeForest: It’s @CP3 day! Free doughnuts & hot chocolate on Manchester Plaza, today from 11-2. #GoDeacs https://t.co/qE0LgqdIDj" +12/06/2017,Sports_celeb,@CP3,TEAMWORK 🚀 🤘🏾 https://t.co/kpPzztvPx1 +12/04/2017,Sports_celeb,@CP3,Dec 4 👑 🙏🏾 https://t.co/YtLtltU1Or +11/30/2017,Sports_celeb,@CP3,Different colors. Different Colleges. ONE family. #TeamCP3 #CP3XAE https://t.co/zxQDq0VPAN +11/29/2017,Sports_celeb,@CP3,"All winners have been chosen, but tickets for the @PBATour @StateFarm Celebrity Invitational are still available at… https://t.co/BXRUINGrbR" +11/29/2017,Sports_celeb,@CP3,Would be my pleasure to have you 3 attend! https://t.co/E4591grca6 +11/29/2017,Sports_celeb,@CP3,Going to have to pick one out of the four... https://t.co/2kHBqjHMkn +11/29/2017,Sports_celeb,@CP3,Only if you convince your boss on your own lol https://t.co/2ebxdOzlDq +11/29/2017,Sports_celeb,@CP3,Hope you enjoy it live! https://t.co/2f528Ib3Xb +11/29/2017,Sports_celeb,@CP3,Fair enough lol. See you Thursday! https://t.co/HFNAET7Un5 +11/28/2017,Sports_celeb,@CP3,"Alright folks, I'm giving away 5 pairs of tickets to Thursday's @PBATour @StateFarm Celebrity Invitational in Houst… https://t.co/WGKlrZWqhv" +11/23/2017,Sports_celeb,@CP3,All is well 🤘🏾 https://t.co/bCXFtWMqAF +11/23/2017,Sports_celeb,@CP3,That feeling when you make HISTORY!! Congrats @mbahamoute 🔥🤘🏾 https://t.co/8v1gzvx916 +11/21/2017,Sports_celeb,@CP3,🙏🏾 Papa Chilly #61 https://t.co/jeZnRIV0q6 +11/20/2017,Sports_celeb,@CP3,#WWE https://t.co/2ucTTIMqXV +11/19/2017,Sports_celeb,@CP3,RT @EvelynsKitchen: You should order thanksgiving from us. Because your thanksgiving will be good AF if you so.… https://t.co/yXaYzJm3Go +11/17/2017,Sports_celeb,@CP3,"It started off so innocent, had a vibe and I really started diggin it... 🚀🤘🏾🚀 https://t.co/h68X1jU0ga" +11/14/2017,Sports_celeb,@CP3,Great meeting tonite with the NBPA Foundation! @sergeibaka great to see you and excited about the work to be done! +11/13/2017,Sports_celeb,@CP3,I was thinking – how do I raise some money for Houston? And then it hit me. Moving sale. On @ebay. With @StateFarm.… https://t.co/a7wYJh41zn +11/12/2017,Sports_celeb,@CP3,GAME WINNER for my lil guy earlier!!!!! #SoccerSaturdays https://t.co/CM1lUVv6F9 +11/11/2017,Sports_celeb,@CP3,"""You can't look at it as a black and white issue, you have to look at it as a human issue"". + +Make sure to sign the… https://t.co/zpHizZ0zFW" +11/08/2017,Sports_celeb,@CP3,"Gotta be honest. I was a little worried about leaving @CliffPaul, but I should’ve known he’d come through with anot… https://t.co/TTsvlRBTRQ" +11/08/2017,Sports_celeb,@CP3,Porzingis sheeeeeeeesh +11/08/2017,Sports_celeb,@CP3,Came together with @StateFarm @NBACares @Jharden13 this weekend to say thanks & support Null and King Middle School… https://t.co/EqqECkB2l8 +11/06/2017,Sports_celeb,@CP3,RT @TheWNBPA: Today marks the beginning of our 20th YEAR as the FIRST female sports union #ThePowerOfTheW #WNBPA https://t.co/RWukZFlw18 +11/06/2017,Sports_celeb,@CP3,A lite 56 tho 🔥🔥 https://t.co/N4bmnNFASu +11/06/2017,Sports_celeb,@CP3,That’s not a flagrant 2... +11/04/2017,Sports_celeb,@CP3,#GoDEACS 🎩 https://t.co/7grTX44IGX +11/02/2017,Sports_celeb,@CP3,Having breakfast in atl this morning and ran into the legend herself @AllDecade14!! Use to love watching her as a kid! #RaiseTheRoof 🤘🏾 +11/02/2017,Sports_celeb,@CP3,Houston is as resilient as they come!! Congrats @astros on making history!! 🤘🏾 https://t.co/QXAVLC1Kvm +10/31/2017,Sports_celeb,@CP3,#TrueBelievers know being clutch doesn’t just happen. @spalding https://t.co/NWJ6TPGmct +10/30/2017,Sports_celeb,@CP3,This game is craaaaazzzzzyy!!!!! #WorldSeries2017 +10/29/2017,Sports_celeb,@CP3,Join me & @StateFarm in helping rebuild Houston school libraries with a book drive on 11/4. #ad Learn more:… https://t.co/rlnV9FBAao +10/26/2017,Sports_celeb,@CP3,Join me & @StateFarm in helping Houston. #ad Check out https://t.co/3navXk2F30 to find out how you can get involved… https://t.co/hWHixLwr0n +10/22/2017,Sports_celeb,@CP3,Trying to put them on to game!! 😆 https://t.co/BLG8Ci7DS4 +10/18/2017,Sports_celeb,@CP3,I've said it before and I'll say it again - basketball is my life! Proud to be able to give u guys a glimpse of fre… https://t.co/2OJhSIk5Ti +10/17/2017,Sports_celeb,@CP3,"It begins tonight. #Chapter3 + +https://t.co/6ClYbaqq0I" +10/14/2017,Sports_celeb,@CP3,Keep going @Astros!! +10/12/2017,Sports_celeb,@CP3,He kills me 😂😂 @gamevice https://t.co/75hQeKOkBc +10/05/2017,Sports_celeb,@CP3,Big Shot @MooreMaya!! +10/05/2017,Sports_celeb,@CP3,This WNBA Finals game is sooooo good!!!! +10/03/2017,Sports_celeb,@CP3,HAPPY BIRTHDAY to the one who really made BALLisLIFE for me and big bro @cjpaul14! Love You Pops!!! #CP1… https://t.co/WlxeVRpRbv +10/03/2017,Sports_celeb,@CP3,Can't get enough of these bags!! https://t.co/KfWhwxjXrc if you're trying to get yours before we're out.… https://t.co/XjqYhI5Wka +10/02/2017,Sports_celeb,@CP3,My thoughts and prayers are with all those affected by this horrific incident. #PrayForVegas https://t.co/OXxvjxfseR +10/02/2017,Sports_celeb,@CP3,Appreciate y'all!! Talk again soon. +10/02/2017,Sports_celeb,@CP3,CP3.VI’s https://t.co/zrzphdumoJ +10/02/2017,Sports_celeb,@CP3,to time travel for sure https://t.co/E2CStuL3WA +10/02/2017,Sports_celeb,@CP3,don't let being young be an excuse. https://t.co/1bIkbY9MJ2 +10/02/2017,Sports_celeb,@CP3,"Jay, Wayne, .... https://t.co/BP08iHiADh" +10/02/2017,Sports_celeb,@CP3,Games of Thrones & Power https://t.co/F3AMLaE5gN +10/02/2017,Sports_celeb,@CP3,her big ol' head 😂😂😉 https://t.co/f0jUPiYr5t +10/02/2017,Sports_celeb,@CP3,yessir! been a fan since the Clemson days https://t.co/hE60NQZLQe +10/02/2017,Sports_celeb,@CP3,Harlem Nights! https://t.co/aPBbwUwIiH +10/02/2017,Sports_celeb,@CP3,I absolutely do. bout to be 1-3 after this week #smh https://t.co/jgctBNxdJG +10/02/2017,Sports_celeb,@CP3,it varies... but usually gospel https://t.co/4F2INDqasX +10/02/2017,Sports_celeb,@CP3,BOJANGLES #Tre4 https://t.co/VqSYOTPCLk +10/02/2017,Sports_celeb,@CP3,Of course https://t.co/QsUhddrxr8 +10/02/2017,Sports_celeb,@CP3,the food is BOMB! but I gotta be careful cuz I got that fat gene.... https://t.co/3DuR0kIiUS +10/02/2017,Sports_celeb,@CP3,Yesirrrr if they lower the goal! 🤷🏾‍♂️ https://t.co/qrIUHsFC5Z +10/02/2017,Sports_celeb,@CP3,“I can’t wait to get home and watch SportsCenter” https://t.co/FDsbBJprhi +10/02/2017,Sports_celeb,@CP3,the FANS!! but I'll let you know once I link up with the homie @paulwallbaby and get my grill🤘🏾 https://t.co/BZveMWULFY +10/02/2017,Sports_celeb,@CP3,Just getting back on the court. Ain’t nothin like COMPETING! https://t.co/wA546EAp4r +10/02/2017,Sports_celeb,@CP3,I’m well! Preseason is here so I’m stuck to the tv all night....hope ur good boss https://t.co/jz9HVPIZf4 +10/02/2017,Sports_celeb,@CP3,Damn autocorrect!! Meant to say Lynx vs Sparks.* +10/02/2017,Sports_celeb,@CP3,Man these girls be hoopin'! Lynx vs Parks #WNBAFinals #WatchMeWork +10/02/2017,Sports_celeb,@CP3,Happy 24th birthday young king 👑 #Ajax https://t.co/M8GOOTdWUp +09/28/2017,Sports_celeb,@CP3,Where Style meets Function. Shop my new capsule collection now at https://t.co/KfWhwxjXrc. #HookAndAlbertxCP3 https://t.co/gKSmG8PFhJ +09/28/2017,Sports_celeb,@CP3,Respect! https://t.co/RXLYY448tO +09/25/2017,Sports_celeb,@CP3,C H A P T E R 3 🙏🏾🤘🏾✊🏾🔥 https://t.co/jcIRE9PUNK +09/23/2017,Sports_celeb,@CP3,And I doubt he's man enough to call any of those players a son of a bitch to their face... +09/23/2017,Sports_celeb,@CP3,"With everything that's going on in our country, why are YOU focused on who's kneeling and visiting the White House??? #StayInYoLane" +09/22/2017,Sports_celeb,@CP3,Please support my brother @carmeloanthony as he helps the people of Puerto Rico with their hurricane relief efforts… https://t.co/QUSzCXFi8k +09/22/2017,Sports_celeb,@CP3,Hope they got an A!! https://t.co/08yTF84EZq +07/01/2018,Sports_celeb,@CaroWozniacki,That was so tense and nerve wrecking! Hats off to @kschmeichel1 for being great this World Cup! Proud of the guys f… https://t.co/iETh24xEu1 +07/01/2018,Sports_celeb,@CaroWozniacki,I screamed so loud I think the whole neighborhood heard me! I’m so nervous! Let’s go Danmark!🙏 +07/01/2018,Sports_celeb,@CaroWozniacki,Omg!!!!! My nerves!!!!! +07/01/2018,Sports_celeb,@CaroWozniacki,Rollercoaster of emotions right now... +07/01/2018,Sports_celeb,@CaroWozniacki,Yesssssss!!!!! +06/30/2018,Sports_celeb,@CaroWozniacki,Title #29 !! Thank you Eastbourne for a great week!! Next stop @wimbledon https://t.co/EQGhz6W9Yg +06/29/2018,Sports_celeb,@CaroWozniacki,Flying in to the finals here in Eastbourne!🌱💪🏻 https://t.co/iCAjW26lHL +06/28/2018,Sports_celeb,@CaroWozniacki,Happy to be thru to another semifinal here at Eastbourne ! https://t.co/TSDPpH3i2m +06/28/2018,Sports_celeb,@CaroWozniacki,Sad to be missing @WTA #TennisontheThames in London but there’s still work to be done in Eastbourne #tbt to past ev… https://t.co/F61GtdqOB0 +06/19/2018,Sports_celeb,@CaroWozniacki,I am thrilled to welcome Denmarks best formula one driver of all time @kevinmagnussen in our @statedrinks family!… https://t.co/JqHNB8nofW +06/18/2018,Sports_celeb,@CaroWozniacki,@Dlee042 Hahaha!! I love you! +06/18/2018,Sports_celeb,@CaroWozniacki,Life 😍🙏 https://t.co/LhXcLaSHyO +06/17/2018,Sports_celeb,@CaroWozniacki,Brought the whites out @wimbledon 🌱 #timhenman https://t.co/QOAnTbqtwF +06/16/2018,Sports_celeb,@CaroWozniacki,RT @TSorensen1: That's how we celebrate our first goal at the @FIFAWorldCup 🇩🇰🇩🇰😍 https://t.co/0sk9syzPRT +06/16/2018,Sports_celeb,@CaroWozniacki,Let’s gooooooo Danmark!!! +06/15/2018,Sports_celeb,@CaroWozniacki,I see you 👀😊 @CosmopolitanTR https://t.co/SxOz3Gmdmw +06/12/2018,Sports_celeb,@CaroWozniacki,Put my hiking shoes on 👟🏃🏼‍♀️ https://t.co/aXOF4acqGd +06/11/2018,Sports_celeb,@CaroWozniacki,"@caro_woz @AndersHaahr Maybe, just maybe, it had something to do with me wanting to keep it small 😉😊" +06/11/2018,Sports_celeb,@CaroWozniacki,Proud to continue my role as a @DubaiDutyFree ambassador for the 7th year! Looking forward to more adventures with… https://t.co/j3PisJzIf5 +06/09/2018,Sports_celeb,@CaroWozniacki,Bike ride thru Tuscany on #globalwellnessday 🚴🏼‍♀️🍝 #friends #lovinglife https://t.co/JUP4bHgc4q +06/06/2018,Sports_celeb,@CaroWozniacki,Create the answer. @adidas #HeretoCreate #createdwithadidas https://t.co/ftKtYVsY4x +06/04/2018,Sports_celeb,@CaroWozniacki,"Not the way I wanted the tournament to end, but always a pleasure playing in Paris! See you next time!! + +Au revoir,… https://t.co/oJl4t9CbKJ" +06/03/2018,Sports_celeb,@CaroWozniacki,"Smiling because it’s Sunday and I am still alive at the French Open. Back fighting tomorrow! @rolandgarros +.… https://t.co/KBmsHpQY9M" +06/02/2018,Sports_celeb,@CaroWozniacki,More 📸 from @Prestige_HK https://t.co/HVkjMhdKlN +06/02/2018,Sports_celeb,@CaroWozniacki,June @Prestige_HK cover! https://t.co/FC0DgjuBPa +06/01/2018,Sports_celeb,@CaroWozniacki,@Clijsterskim Where is this?? Looks amazing!! +05/31/2018,Sports_celeb,@CaroWozniacki,Very excited about my @CosmopolitanTR cover! Really enjoyed my time in Istanbul! https://t.co/VfuPJx7Fl4 +05/29/2018,Sports_celeb,@CaroWozniacki,How are non of the french channels showing Serena play right now?? +05/26/2018,Sports_celeb,@CaroWozniacki,Ok... Let’s regroup and come out firing in the second half. #YNWA +05/26/2018,Sports_celeb,@CaroWozniacki,Look through the #LympoChallenge hashtag! It’s mind-blowing to see all these people sweating and working so hard to… https://t.co/6PYCrbACIg +05/24/2018,Sports_celeb,@CaroWozniacki,Loved spending time with this little love bug today @OlympiaOhanian !! I think she liked my @ovvooptics sunglasses… https://t.co/3Phu0nrNBd +05/23/2018,Sports_celeb,@CaroWozniacki,Yoga in Paris! https://t.co/m7aVJbkxYa +05/21/2018,Sports_celeb,@CaroWozniacki,"So honored to be featured on the cover of @espn alongside the top athletes in the world! #WorldFame +. +. +. + +Hair… https://t.co/acc5BB8uZb" +05/14/2018,Sports_celeb,@CaroWozniacki,Exploring this beautiful city!😍 https://t.co/QqTaj7mMA4 +05/12/2018,Sports_celeb,@CaroWozniacki,Enjoyed exploring Saint Paul de Vence today with this one 😍❤️ @dlee042 https://t.co/fedMbWOkKQ +05/11/2018,Sports_celeb,@CaroWozniacki,@serenawilliams @HBO So pretty!! +05/07/2018,Sports_celeb,@CaroWozniacki,"Such an incredible honor to receive the Damehood of the Dannebrog order today! 🇩🇰 + +Stolt af at få ridderkorset af D… https://t.co/SnHsgDzlU0" +05/02/2018,Sports_celeb,@CaroWozniacki,Aww love you!❤️ https://t.co/YVGkKr7pVt +05/02/2018,Sports_celeb,@CaroWozniacki,Made sure to bring my fuel with me to Madrid! #statedrinks 💪🏻 https://t.co/sgrvtBmaJ0 +05/01/2018,Sports_celeb,@CaroWozniacki,https://t.co/TGSbvHXQi8 +05/01/2018,Sports_celeb,@CaroWozniacki,"It was a dream come true, thanks to everyone who came out to support! #championsbattle2018 https://t.co/7QqC30oq5C" +05/01/2018,Sports_celeb,@CaroWozniacki,16 years ago I had the honor of meeting @venuswilliams in Copenhagen and hit some tennis balls with her. Last night… https://t.co/UoucBR9QBe +04/29/2018,Sports_celeb,@CaroWozniacki,Happy birthday baby!! I’m so lucky to be able to call you my best friend! You always have my back and you make my l… https://t.co/WMurNhJvgx +04/24/2018,Sports_celeb,@CaroWozniacki,I meant at half time 😬 https://t.co/4h664Afnpg +04/24/2018,Sports_celeb,@CaroWozniacki,Sallllllaaaaaaaahhhhh!!!!!! +04/24/2018,Sports_celeb,@CaroWozniacki,First clay court match of the year in the books💪🏻 just in time to get back and watch Liverpool tonight!! 💪🏻 @LFC… https://t.co/nrbEZw9pk3 +04/21/2018,Sports_celeb,@CaroWozniacki,Positive vibes today at practice😎 #clay #iloveclay #mccc https://t.co/rVVt3Xon6h +04/20/2018,Sports_celeb,@CaroWozniacki,My dinner date is so cute ❤️ #nephew https://t.co/xPubO4nAqr +04/19/2018,Sports_celeb,@CaroWozniacki,Can’t believe it’s been 16 years since this pic was taken!Really excited @Venuseswilliams is coming back to Copenha… https://t.co/pdynjW3VzP +04/18/2018,Sports_celeb,@CaroWozniacki,"RT @WTA: ""I hate to lose. I love to win"" + +@CaroWozniacki takes us through her journey to Australian Open success--> https://t.co/7pwQQH2HDW…" +04/18/2018,Sports_celeb,@CaroWozniacki,I am delighted to announce a new partnership with Lympo.❤ Together we WILL change the world of sports and wellness!… https://t.co/LaxQhGzh07 +04/14/2018,Sports_celeb,@CaroWozniacki,Dress up time💃🏼 https://t.co/ncQNFmyutn +04/12/2018,Sports_celeb,@CaroWozniacki,Day at the beach!☀️🌊🔥 https://t.co/otkp6WdkqY +04/10/2018,Sports_celeb,@CaroWozniacki,Wish i was with all the supporters at the game today! +04/10/2018,Sports_celeb,@CaroWozniacki,What a great day to be a Liverpool supporter!! @LFC #gameday #ChampionsLeague #reds 💪🏻💪🏻 +04/09/2018,Sports_celeb,@CaroWozniacki,Day of shooting complete ✅ https://t.co/Dzo1UvOT7X +04/06/2018,Sports_celeb,@CaroWozniacki,Tennis reimagined on Seven Mile Beach! 🎾😎 #caymanislands https://t.co/riZUXLdD3x +04/05/2018,Sports_celeb,@CaroWozniacki,Yes it was awesome!! 💪🏻👌🏻 https://t.co/pgD6vQrCk2 +04/05/2018,Sports_celeb,@CaroWozniacki,Putting #AlphaBOUNCE BEYOND to the test. Discover it for yourself. https://t.co/AnrK9FEwot #CREATEDWITHADIDAS… https://t.co/5XvCjv655M +04/03/2018,Sports_celeb,@CaroWozniacki,Enjoying my home away from home @ResatSeafire #resatseafire @ovvooptics https://t.co/6VubGh8cOu +04/01/2018,Sports_celeb,@CaroWozniacki,My fiancé put on an Easter egg hunt for me this morning and I couldn’t have asked for a better way to start my day! #yesimabigkid #dontjudge +03/31/2018,Sports_celeb,@CaroWozniacki,#Alphabounce Beyond X @adidasrunning #createdwithadidas https://t.co/XifRdinK3x +03/30/2018,Sports_celeb,@CaroWozniacki,Wow. Thank you @Forbes for naming me the 8th most influential woman in sports and 1st athlete! What an honor! https://t.co/yjdAtZSSWk +03/28/2018,Sports_celeb,@CaroWozniacki,Don’t play games. Run them. The #AlphaBOUNCE BEYOND by @ADIDASRUNNING. #CREATEDWITHADIDAS https://t.co/mqeTjQrWq0 +03/27/2018,Sports_celeb,@CaroWozniacki,"RT @PlayersTribune: Day 27, @CaroWozniacki: 2018 @AustralianOpen Champion, 28 Career @WTA Singles Titles, Current WTA World No. 1 Player.…" +03/27/2018,Sports_celeb,@CaroWozniacki,"RT @adidasrunning: When the stakes are high, they create on the fly. +When their opponents tire, they bring the fire. +Alpha athletes don’t…" +03/26/2018,Sports_celeb,@CaroWozniacki,😎🎾👶🏼 https://t.co/FZoFcKZdk5 +03/25/2018,Sports_celeb,@CaroWozniacki,Family time☺️❤️🎾 https://t.co/sh95X8nq32 +03/24/2018,Sports_celeb,@CaroWozniacki,https://t.co/yd10mvxuMJ +03/23/2018,Sports_celeb,@CaroWozniacki,RT @Venuseswilliams: So excited to be back in #Copenhagen on April 30th playing @carowozniacki at #championsbattle2018 – and at the same ve… +03/21/2018,Sports_celeb,@CaroWozniacki,"💇🏼‍♀️ yes, no, maybe? https://t.co/ifnYWshd0Y" +03/19/2018,Sports_celeb,@CaroWozniacki,My girls holding court💪🏻🔥 #fisherisland @JennaGreen @faraleff https://t.co/QUGC5jyZh6 +03/15/2018,Sports_celeb,@CaroWozniacki,Wheels up to Miami!✈️ https://t.co/ZIMcjsnuRt +03/11/2018,Sports_celeb,@CaroWozniacki,Hanging with my son!🐶@indianwellstennisgarden @OVVOoptics https://t.co/Ct9ojse4uh +03/07/2018,Sports_celeb,@CaroWozniacki,Adding to my glam with these cool glasses! @OVVOoptics https://t.co/9cLDMb6zir +03/06/2018,Sports_celeb,@CaroWozniacki,Put on my best smile #VFOscars https://t.co/j5bO3gf1Jq +03/05/2018,Sports_celeb,@CaroWozniacki,Excited to announce my very first eye wear collection!! Check out the 11 new styles I designed in partnership with… https://t.co/M21ysGfwDf +03/05/2018,Sports_celeb,@CaroWozniacki,"Last night @vanityfair Oscars party! @dlee042 + +Dress: Honor +Jewelry: Chopard https://t.co/GkB5l7bSIO" +03/01/2018,Sports_celeb,@CaroWozniacki,Thanks @usanainc for continuing to help me feel my best by providing me with such quality products! #ad @teamusana… https://t.co/JY2srieVnk +02/25/2018,Sports_celeb,@CaroWozniacki,Had fun with my superstar hubby tonight at the @warriors game! @dlee042 https://t.co/J3wBtq6N7x +02/23/2018,Sports_celeb,@CaroWozniacki,Always focused https://t.co/22WIDkWhZO +02/21/2018,Sports_celeb,@CaroWozniacki,@lindseyvonn Good luck @lindseyvonn !! +02/14/2018,Sports_celeb,@CaroWozniacki,Happy Valentine’s Day my love! Thank you for making every day feels like Valentine’s Day! I love you ❤️👫 @Dlee042 https://t.co/nbuGSxwjNJ +02/12/2018,Sports_celeb,@CaroWozniacki,Girls night in Doha with @AngeliqueKerber https://t.co/BqSXXWREcp +02/07/2018,Sports_celeb,@CaroWozniacki,Hiking in the mountains with my ❤️ today @dlee042 #monaco https://t.co/LhlmRLg5hj +02/05/2018,Sports_celeb,@CaroWozniacki,Thank you @rolex for putting this special video together for me! https://t.co/WQGlgNsBsy +02/04/2018,Sports_celeb,@CaroWozniacki,"#repost from #troyzan + +My first ever @si_swimsuit shoot back in Captiva Island! https://t.co/NFwzB9Apkw" +02/03/2018,Sports_celeb,@CaroWozniacki,Proud to be able to represent my new sponsor @seafireresidences these past couple of weeks @australianopen. Obvious… https://t.co/onImPQlKnP +02/01/2018,Sports_celeb,@CaroWozniacki,"Excited to announce my partner @panzerglass , They’ll protect my phone and privacy wherever I go and create customi… https://t.co/NGoBnePbAn" +01/30/2018,Sports_celeb,@CaroWozniacki,https://t.co/WPNMe7TxCf +01/28/2018,Sports_celeb,@CaroWozniacki,Celebration day today🏆🍾 https://t.co/O3Uekp82No +01/27/2018,Sports_celeb,@CaroWozniacki,A dream come true!! @australianopen champion and new world #1 😘🏆 https://t.co/aA5pcOqDcy +01/25/2018,Sports_celeb,@CaroWozniacki,That finals feeling! @australianopen https://t.co/LuCTpt9gZI +01/21/2018,Sports_celeb,@CaroWozniacki,RT @AustralianOpen: Caroline Tweener-acki... #AusOpen https://t.co/Z4jLBR1zAu +01/17/2018,Sports_celeb,@CaroWozniacki,Still alive!💪🏻 +01/17/2018,Sports_celeb,@CaroWozniacki,"RT @AustralianOpen: Simply unbelievable. + +@CaroWozniacki claws her way back from 1-5 down in the final set to d #Fett 3-6 6-2 7-5. + +#AusO…" +01/14/2018,Sports_celeb,@CaroWozniacki,Hair trouble 😂 https://t.co/ih8YxyVFga +01/14/2018,Sports_celeb,@CaroWozniacki,It’s all smiles! The @australianopen is starting tomorrow💪🏻🎾 https://t.co/ye43QVkWOM +01/13/2018,Sports_celeb,@CaroWozniacki,One of the fellas today!😎@australianopen kids day! https://t.co/voI1alDneZ +01/11/2018,Sports_celeb,@CaroWozniacki,"My ride or die💙 @Dlee042 +#tbt https://t.co/dNAIHfIAnR" +01/09/2018,Sports_celeb,@CaroWozniacki,Great day at the office today! Back to #2 in the world and first hit at the @australianopen 💪🏻🎾 https://t.co/FWJSkF5dEn +12/31/2017,Sports_celeb,@CaroWozniacki,"Happy New Year from New Zealand! May the new year bring you all lots of love, laughter and happiness! ❤️ #hello2018 https://t.co/NeowNwh5jv" +12/30/2017,Sports_celeb,@CaroWozniacki,Stepping into summer for #AusOpen See more at @adidastennis #createdwithadidas https://t.co/WiGKPKw46w +12/29/2017,Sports_celeb,@CaroWozniacki,RT @tjevans252: Caroline Wozniacki arrived in Auckland this morning and headed straight to @ASB_Classic centre court for some practice. htt… +12/27/2017,Sports_celeb,@CaroWozniacki,Preparing for the new season with my favourite energy drink STATE. Drink to improve! #ad https://t.co/r4CaAksqMI +12/27/2017,Sports_celeb,@CaroWozniacki,"RT @adidastennis: Light fabrics for ⚡quick movement. +Introducing the Melbourne collection. #AusOpen https://t.co/rswhcDffPy" +12/25/2017,Sports_celeb,@CaroWozniacki,Merry Christmas and happy holidays from our family to yours🎄🤶🏻🎅🏻🐶 #christmassweatersonpoint https://t.co/AjtLBpvbf1 +12/25/2017,Sports_celeb,@CaroWozniacki,RT @JeremyGreenMD: Another fantastic Christmas party at Chapman Partnership for the Homeless thanks to my amazing sister @JennaGreen 🙏🏻🎄🙌🏻… +12/22/2017,Sports_celeb,@CaroWozniacki,Shopping spree today to help the families at @chapmanpartnership for the homeless in Miami. Looking forward to volu… https://t.co/DXu2DiZ7F3 +12/21/2017,Sports_celeb,@CaroWozniacki,3 million followers!! Thank you for all of your support!! 🎉🎊 https://t.co/rt9HcwkgTJ +12/20/2017,Sports_celeb,@CaroWozniacki,Made a friend in the Cayman Islands #stingraycity https://t.co/gXlelASLPW +12/18/2017,Sports_celeb,@CaroWozniacki,"RT @7tennis: It's been a MASSIVE year for @carowozniacki since we last saw her in 🇦🇺! + +3⃣ In the @WTA rankings +2⃣ Titles +1⃣ Engagement to @…" +12/16/2017,Sports_celeb,@CaroWozniacki,Target practice!🎾👊🏻 https://t.co/U9thKFuOam +12/14/2017,Sports_celeb,@CaroWozniacki,A ray of sunshine ☀️ https://t.co/UH8o78R8zY +12/11/2017,Sports_celeb,@CaroWozniacki,Beach day💁🏼‍♀️ #nofilter https://t.co/tXNnOY3qfT +12/11/2017,Sports_celeb,@CaroWozniacki,@AppleSupport my new iPhone X keeps restarting over and over.. I tried hard reset on my phone and reset all setting… https://t.co/t9HfUeWvVr +12/10/2017,Sports_celeb,@CaroWozniacki,Museum of ice cream date today!! #extrasprinkles https://t.co/QpK85MsLzQ +12/06/2017,Sports_celeb,@CaroWozniacki,Excited to be back on court training for the upcoming season! Thank you @usanainc for keeping me energized and heal… https://t.co/U06iPmPQD3 +12/05/2017,Sports_celeb,@CaroWozniacki,Proud to be the godmother of my little nephew! He is so adorable 😍❤️ https://t.co/mfXj8PxsaS +12/03/2017,Sports_celeb,@CaroWozniacki,We had an amazing time celebrating at our dear friends @ansomelskens and @madsstabergmadsen wedding! You guys are p… https://t.co/Ka8repRZmm +11/26/2017,Sports_celeb,@CaroWozniacki,Ps not our wedding! Photo booth fun! It'll take us a little longer than a couple of weeks to plan our wedding 😜 +11/26/2017,Sports_celeb,@CaroWozniacki,#Thankful https://t.co/yrN1ReJtz3 +11/24/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: Flashback to @CaroWozniacki's first shoot for #SISwim... https://t.co/147NlE7Nee https://t.co/G2mmtbDpAC +11/19/2017,Sports_celeb,@CaroWozniacki,"RT @iamisiahthomas: @Dlee042 congratulations on a great career and job well done, you made us all proud! #Champion on and off the court! Se…" +11/12/2017,Sports_celeb,@CaroWozniacki,Sunday funday! Go #Rams !! @dlee042 https://t.co/HsHqhvzkkc +11/12/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: .@CaroWozniacki had her biggest career win in Singapore, and that's why you voted her as the WTA's Player of the Month for October…" +11/09/2017,Sports_celeb,@CaroWozniacki,Safe to say it has been the most incredible couple of weeks in my life! So thankful! https://t.co/2OaiY4eshq +11/06/2017,Sports_celeb,@CaroWozniacki,"RT @TennisChannel: ""That's what I dreamed of when I was a kid..."" @CaroWozniacki always knew tennis was in her future. +This is her story. +@…" +11/03/2017,Sports_celeb,@CaroWozniacki,RT @Dlee042: She said yes!!! So thrilled to be engaged to my soulmate!!! ❤️💍 https://t.co/8Xltz5GeJc +11/03/2017,Sports_celeb,@CaroWozniacki,Happiest day of my life yesterday saying yes to my soulmate❤️💍 @Dlee042 https://t.co/TwDPJjoabA +11/02/2017,Sports_celeb,@CaroWozniacki,No filter needed! https://t.co/IfiCD59oBZ +10/30/2017,Sports_celeb,@CaroWozniacki,😘🏆 https://t.co/SUSqJlqBwS +10/29/2017,Sports_celeb,@CaroWozniacki,No better way to end the season than to win the Year End Championship!Thanks to my team and everyone who supported… https://t.co/peOmJOjlpk +10/22/2017,Sports_celeb,@CaroWozniacki,"RT @pamela_ho: On target! 🎯 @CaroWozniacki practising her serve ahead of her first match tomorrow. 🎾 @WTAFinalsSG + +#wtafinalssg #carolinew…" +10/21/2017,Sports_celeb,@CaroWozniacki,To say I was excited is an understatement!! @backstreetboys are back!! Amazing performance!! Loved it! See you in V… https://t.co/hx5JDcZdev +10/21/2017,Sports_celeb,@CaroWozniacki,RT @adidastennis: Consistency defined. @CaroWozniacki @wta #MyGame #wtafinals https://t.co/dFLUYUoqrr +10/20/2017,Sports_celeb,@CaroWozniacki,In love with this body suit!! https://t.co/3JzXqvE5TW +10/20/2017,Sports_celeb,@CaroWozniacki,Today's red carpet in Singapore! https://t.co/kwLddIjOyB +10/20/2017,Sports_celeb,@CaroWozniacki,"Judge me all you want, but I am SUPER pumped to see the @backstreetboys tomorrow in Singapore!!!! 😃💃🏼" +10/18/2017,Sports_celeb,@CaroWozniacki,Night session 🎾😎 https://t.co/Pe87usuF63 +10/18/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: Seven singles finals! +Joint most Top 10 wins on tour! + +@CaroWozniacki​'s Season Highs! @SAPSports​ #WTAFinals https://t.co/kJHUJqn…" +10/16/2017,Sports_celeb,@CaroWozniacki,Started off my day right here in Thailand! #namaste https://t.co/s8R9pY4RTO +10/10/2017,Sports_celeb,@CaroWozniacki,In action today in Hong Kong 🎾 https://t.co/MaBJlRmYTH +10/07/2017,Sports_celeb,@CaroWozniacki,Sightseeing in Hong Kong with dad !😎☺️ https://t.co/Iaob6G2Hhe +10/02/2017,Sports_celeb,@CaroWozniacki,"RT @LVMPD: For families looking to locate missing loved ones, please call 1-866-535-5654." +10/02/2017,Sports_celeb,@CaroWozniacki,Heartbreaking what happened in Las Vegas! My thoughts and prayers go out to everyone affected! +10/01/2017,Sports_celeb,@CaroWozniacki,Proud and excited to have qualified for the WTA finals in Singapore!! See you there 😃 https://t.co/dpvoodfxrJ +09/28/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: Two @DubaiDutyFree ambassadors, two titles! 🏆 + +Congrats @CaroWozniacki and @ZhangShuai121! 👏🎉 https://t.co/LekrGYxIS7" +09/24/2017,Sports_celeb,@CaroWozniacki,Keeping the streak alive! 10th year in a row with at least one title! 🏆 https://t.co/7whksjotzk +09/24/2017,Sports_celeb,@CaroWozniacki,Flying high! China bound! ✈️🎾 https://t.co/cb86Ca1nM2 +09/24/2017,Sports_celeb,@CaroWozniacki,That winning smile!! 😃😁 26th career title!! Woohoo!! 🍾🏆 #7thtimelucky https://t.co/a4qjfiUj3Q +09/23/2017,Sports_celeb,@CaroWozniacki,"No matter where I am or what I eat, I know @usanainc is helping me stay on top of my nutritional needs. #ad… https://t.co/gSx1animW6" +09/23/2017,Sports_celeb,@CaroWozniacki,Is there only 10 episodes of the @Suits_USA season 7?? +09/22/2017,Sports_celeb,@CaroWozniacki,Can someone explain to me exactly what the Laver Cup is and the rules? Looks interesting ! +09/19/2017,Sports_celeb,@CaroWozniacki,"Love the shopping in Tokyo – it’s my second favorite place to shop… after @DubaiDutyFree, of course! https://t.co/1MBVYzJXyF" +09/17/2017,Sports_celeb,@CaroWozniacki,I can't believe it's been exactly a year since we shot these! 👙😊❤️ @SI_Swimsuit #family https://t.co/auNOnBslwc +09/16/2017,Sports_celeb,@CaroWozniacki,NYC days https://t.co/wjN6KjVOOb +09/14/2017,Sports_celeb,@CaroWozniacki,Exploring NYC today Danish style on the 🚴🏻 https://t.co/Qhf2e0OlVk +09/13/2017,Sports_celeb,@CaroWozniacki,Yess lets goo!! @LFC #ynwa +09/13/2017,Sports_celeb,@CaroWozniacki,First that goal and now no foul or penalty?! +09/08/2017,Sports_celeb,@CaroWozniacki,Photobomb 🙄😁❤️ https://t.co/gxIm5fe20B +09/08/2017,Sports_celeb,@CaroWozniacki,"RT @hannahbjeter: People in The Virgin Islands are running out of fuel, water and food. People are dying!!! People… https://t.co/fNqm5qafsV" +09/04/2017,Sports_celeb,@CaroWozniacki,The big 🍎! 👀🚁 https://t.co/xo3V4qMrr7 +08/31/2017,Sports_celeb,@CaroWozniacki,"THANK you NYC for always showing me so much love!! Not the result that I wanted, but I'll work hard and come back e… https://t.co/dZCnssPtTa" +08/29/2017,Sports_celeb,@CaroWozniacki,I must have said something funny😜😁 Arthur Ashe stadium is a cool place to hang😎 @usopen https://t.co/RyrtOD97iF +08/26/2017,Sports_celeb,@CaroWozniacki,"RT @usopen: ""I was six years old, first time in New York, and I loved it here."" 🗽 -@CaroWozniacki + +We ❤️ you too, Caro! https://t.co/mTM3Fy…" +08/24/2017,Sports_celeb,@CaroWozniacki,Had fun on the @TODAYshow this morning! #NBC #NYC https://t.co/H9iEZiAZmU +08/23/2017,Sports_celeb,@CaroWozniacki,RT @VogueRunway: Tennis star @CaroWozniacki knows how to stand out on the court. https://t.co/59HQFDK2tN +08/22/2017,Sports_celeb,@CaroWozniacki,"RT @AMarshallSport: No. 5 seed @CaroWozniacki is the first player to hit inside the temporary Louis Armstrong Stadium. Welcome back to NYC,…" +08/21/2017,Sports_celeb,@CaroWozniacki,Watching the solar eclipse and bike riding in NYC with my love😎🚴🏻 @dlee042 https://t.co/NpnedxYl2n +08/18/2017,Sports_celeb,@CaroWozniacki,"RT @CincyTennis: Hmmm what should we do during this rain delay?... + +How about have @CaroWozniacki serenade us with some @charlieputh?! 😍 ht…" +08/15/2017,Sports_celeb,@CaroWozniacki,Love my new Z.N.E pulse hoodie!! #giftedbyadidas #THEPULSEOF tennis @adidas https://t.co/65fzFBbbdW +08/15/2017,Sports_celeb,@CaroWozniacki,Admiring my shot 😎😁🏀 https://t.co/aiynzWJX8Y +08/09/2017,Sports_celeb,@CaroWozniacki,Flying in Toronto 🙃 https://t.co/G0wCGKl0T5 +08/07/2017,Sports_celeb,@CaroWozniacki,US Open 2017 @adidas @StellaMcCartney 🔥🎾 https://t.co/zfLXrWK8sY +08/06/2017,Sports_celeb,@CaroWozniacki,"My outfit for the @usopen will be bright, and I love it! 😍☺️ @adidas @stellamccartney https://t.co/N7uJ7biEDY" +08/05/2017,Sports_celeb,@CaroWozniacki,A moment and day that I will never forget and forever be truly grateful for! Last years opening ceremony at the Rio… https://t.co/tbtoVHXQ03 +08/03/2017,Sports_celeb,@CaroWozniacki,Amazing!! Congratulations 😍😍😍 https://t.co/NRu3bA8sFW +07/29/2017,Sports_celeb,@CaroWozniacki,5th finals of the year tomorrow!! Let's gooo!! #båstad https://t.co/gEDe61xI7X +07/27/2017,Sports_celeb,@CaroWozniacki,"RT @WTA_insider: No player has won more matches since the US Open than @CaroWozniacki. + +How Caro got her groove back: +https://t.co/A5M3XPZf…" +07/26/2017,Sports_celeb,@CaroWozniacki,Holiday over. Time to get back to business. #SponsoredAthlete #TeamUSANA #USANAlifestyle @usanainc https://t.co/wJJeacw4Kx +07/25/2017,Sports_celeb,@CaroWozniacki,RT @SI_Swimsuit: We can't get enough of @CaroWozniacki's #SISwim 2017 photos! https://t.co/TEbeIm8rL2 https://t.co/2sAWiO2bOt +07/23/2017,Sports_celeb,@CaroWozniacki,😊👰🏽💍☀️💒❤️ https://t.co/1uRZoVJACH +07/23/2017,Sports_celeb,@CaroWozniacki,"When one of your dearest and oldest friends gets married, it's time to celebrate!What an amazing and beautiful coup… https://t.co/Ho0mE0wR85" +07/18/2017,Sports_celeb,@CaroWozniacki,Portofino was beautiful😍❤️ https://t.co/pNjmdFzl9S +07/14/2017,Sports_celeb,@CaroWozniacki,We got there..... Eventually 😂 @Dlee042 https://t.co/h5FTDlkdLV +07/12/2017,Sports_celeb,@CaroWozniacki,Truly proud and excited that i am now partnering with my absolute favourite energy drink STATE! @statedrinks… https://t.co/f66VF1kuqz +07/11/2017,Sports_celeb,@CaroWozniacki,Thank you for all your sweet birthday wishes! Had a great day!! #27 https://t.co/vmKMihDUqr +07/08/2017,Sports_celeb,@CaroWozniacki,"Tough battle today, moving on to week 2! @Wimbledon https://t.co/W1TiQgxZ3I" +07/05/2017,Sports_celeb,@CaroWozniacki,2017 @ESPN #Bodyissue https://t.co/d6bAzIG9D9 +07/04/2017,Sports_celeb,@CaroWozniacki,Loved the support out there on Centre court today and adore my new @adidas by @stellamccartney outfit 😍👗 https://t.co/a5eogaeH6e +07/03/2017,Sports_celeb,@CaroWozniacki,Beliebing😎 @dlee042 https://t.co/kIv76HM7Xn +06/30/2017,Sports_celeb,@CaroWozniacki,4th finals of the year tomorrow!!💪🏻💪🏻🌱 https://t.co/wtHQnKzawE +06/27/2017,Sports_celeb,@CaroWozniacki,Proud and excited for this one! Thank you #ESPNBody for the cover!! https://t.co/M3e3thYfoR +06/26/2017,Sports_celeb,@CaroWozniacki,Preparing🌱🍀😃💪🏻 https://t.co/Tls6D3ya92 +06/20/2017,Sports_celeb,@CaroWozniacki,"RT @WTA: June 20, 2009 📆 + +@CaroWozniacki wins 5th #WTA title at #AegonInternational Eastbourne! https://t.co/vgUHhMFwLb" +06/19/2017,Sports_celeb,@CaroWozniacki,Happy 25th anniversary @usanainc !! #teamusana https://t.co/6EI14dmhmp +06/15/2017,Sports_celeb,@CaroWozniacki,"Good day at the ""office"" today! Working off that extra vacation weight 💪🏻🎾😛 https://t.co/JoCt0b4GBd" +06/13/2017,Sports_celeb,@CaroWozniacki,"Sad to leave paradise, but feeling recharged and ready to get back to work 💪🏻 https://t.co/366aQKVHj8" +06/11/2017,Sports_celeb,@CaroWozniacki,"RT @andyroddick: Fact. I never played a match for 4 days ... Rafa lost 35 games in an entire slam. Isner lost 68 in one set, and won that…" +06/28/2018,Sports_celeb,@RondaRousey,Strap in for the action thrill ride of the summer. Watch the new restricted trailer for #Mile22 – in theaters Augus… https://t.co/qNdjkZ0LUr +06/28/2018,Sports_celeb,@RondaRousey,"RT @WWEUniverse: #MoustacheMountain's opponents have just learned the meaning of #ShockTheSystem! + +@KORcombat @AdamColePro @roderickstrong…" +06/27/2018,Sports_celeb,@RondaRousey,The definition of a war zone is an interesting thing. Don’t miss the new #Mile22 trailer TOMORROW. https://t.co/Wumu5jyXfO +06/26/2018,Sports_celeb,@RondaRousey,My #mcm the #goatfather @travisbrownemma 😍🐐 https://t.co/smLjMRYYjU +06/24/2018,Sports_celeb,@RondaRousey,Meet the newest additions to #BrowseyAcres: Totes and Rio! #TotesMyGoats https://t.co/2UPbWOQUcK +06/24/2018,Sports_celeb,@RondaRousey,Always a student 🙇🏼‍♀️🙏🏼 ajstylesvwwe #MemoriesInTheBank #mitb https://t.co/lqpuFYuQHJ +06/24/2018,Sports_celeb,@RondaRousey,Congrats to our onefightmanagement fighter luckyboyferd on his latest victory @goldenboyboxing 👏🏼👏🏼👏🏼👏🏼 https://t.co/lqgHmBcl4G +06/23/2018,Sports_celeb,@RondaRousey,25 days @AlexaBliss_WWE https://t.co/nItoF7DdCz +06/22/2018,Sports_celeb,@RondaRousey,26 days @AlexaBliss_WWE https://t.co/zshrPsEas1 +06/21/2018,Sports_celeb,@RondaRousey,27 days @AlexaBliss_WWE https://t.co/z4RdrXULLf +06/20/2018,Sports_celeb,@RondaRousey,28 days @AlexaBliss_WWE https://t.co/yywZZyC7DX +06/19/2018,Sports_celeb,@RondaRousey,29 days @AlexaBliss_WWE https://t.co/rcHVNqkavn +06/19/2018,Sports_celeb,@RondaRousey,@RealKurtAngle I sincerely apologize for my… https://t.co/bfUov5uHRf +06/18/2018,Sports_celeb,@RondaRousey,Apparently cheaters DO prosper in the @wwe - not… https://t.co/72UQxxpJug +06/18/2018,Sports_celeb,@RondaRousey,About last night.... I know I had @niajaxwwe… https://t.co/wTsGulN36K +06/17/2018,Sports_celeb,@RondaRousey,Today’s the day!!!! #MoneyintheBank is… https://t.co/5tsIXm2cgX +06/17/2018,Sports_celeb,@RondaRousey,Competing with @WWE around the world is the best part of my “job!” So excited to return to Australia for WWE Super… https://t.co/S8Zvihgg9v +06/15/2018,Sports_celeb,@RondaRousey,#moneyinthebank is just around the corner!!!… https://t.co/TikGewUGVC +06/12/2018,Sports_celeb,@RondaRousey,"@niajaxwwe unlike you, trying to challenge me… https://t.co/GlkMFbYUxf" +06/11/2018,Sports_celeb,@RondaRousey,#quotephase https://t.co/dcGrwaMhEG +06/10/2018,Sports_celeb,@RondaRousey,"This is an immense honor, to not only take part… https://t.co/RRSlbYkhBD" +06/05/2018,Sports_celeb,@RondaRousey,@natbynature Hoping you’re feeling okay after… https://t.co/R48GhroivG +06/03/2018,Sports_celeb,@RondaRousey,https://t.co/DfbuflAiH1 +06/02/2018,Sports_celeb,@RondaRousey,Sharks are friends 🦈 get ready to celebrate the… https://t.co/IF0HkB2EEP +06/01/2018,Sports_celeb,@RondaRousey,June 17th... #MITB #MoneyInTheBank #NiavsRonda https://t.co/5GMJOjuhYC +06/01/2018,Sports_celeb,@RondaRousey,RT @roderickstrong: Please follow the link and bid! The money I receive from this I will be donating to https://t.co/gvg023oF63 in honor of… +05/29/2018,Sports_celeb,@RondaRousey,"I know what @wwe stands for .... +#WalkWithElias https://t.co/hq2xkIzd75" +05/29/2018,Sports_celeb,@RondaRousey,"Thanks for the lesson @niajaxwwe, be ready to… https://t.co/yXBr8P0mPM" +05/28/2018,Sports_celeb,@RondaRousey,"Anyone looking to adopt a doggie? + +https://t.co/FSXKJXdkmQ" +05/27/2018,Sports_celeb,@RondaRousey,"Richmond Virginia.... Jesus be a raindrop ☔️ cause it is HOT today! +https://t.co/M7vKIhkxIM" +05/27/2018,Sports_celeb,@RondaRousey,Making shark friends.... yes that’s me in the… https://t.co/JEJKexu4vc +05/27/2018,Sports_celeb,@RondaRousey,I officially want a Chilean Horse after this… https://t.co/MhI3Wa0eNJ +05/26/2018,Sports_celeb,@RondaRousey,"#SlurpingisSexy #nostrawplease + +The Death of the Plastic Straw - National Geographichttps://apple.news/Ae4v297LgSkuoCi9qT0kxIQ" +05/22/2018,Sports_celeb,@RondaRousey,Funny thing is we could have been great friends… https://t.co/w3EQGxO1EL +05/20/2018,Sports_celeb,@RondaRousey,"Love this poster by kris_artz +Can’t wait for… https://t.co/fML8Jcnt8r" +05/20/2018,Sports_celeb,@RondaRousey,I get by with a little help from my friends… https://t.co/hrAviP9N6M +05/20/2018,Sports_celeb,@RondaRousey,What an incredible week! Merci Paris for the… https://t.co/nXZfj7emti +05/19/2018,Sports_celeb,@RondaRousey,Thank you Turin for all the warmth and hospitality!!🙏🏼❤️🇮🇹 https://t.co/yT754lPNTv +05/18/2018,Sports_celeb,@RondaRousey,Holy Moly we had fun in Vienna!!! Huge thank… https://t.co/8vxOu2iXl8 +05/17/2018,Sports_celeb,@RondaRousey,Geneva 🇨🇭 was and absolute blast! It was so fun… https://t.co/ZpXvjO0A8Q +05/16/2018,Sports_celeb,@RondaRousey,"RT @WWE: .@RondaRousey will make her U.K. in-ring debut in London's @TheO2 on Wednesday, Aug. 29, as part of a special, one-night-only @WWE…" +05/15/2018,Sports_celeb,@RondaRousey,Great to be in the company of these women and… https://t.co/tbVusRcSlk +05/15/2018,Sports_celeb,@RondaRousey,Thank you to the pit crew who made me look… https://t.co/XupSalMq6m +05/15/2018,Sports_celeb,@RondaRousey,"There’s always another option… Check out the trailer for #Mile22 - coming soon to theaters. +https://t.co/DKMp4ilgrq" +05/14/2018,Sports_celeb,@RondaRousey,This challenge came earlier than expected... but I was born… https://t.co/HRawoH0kx8 +05/14/2018,Sports_celeb,@RondaRousey,"This challenge came earlier than expected... but I was born ready...I’ll see you at #MITB, @NiaJaxWWE. https://t.co/DPy0sY5hPG" +05/14/2018,Sports_celeb,@RondaRousey,Loving this NYC weather!!! At Radio City with the ladies @niajaxwwe… https://t.co/I5dzMqhbMp +05/14/2018,Sports_celeb,@RondaRousey,At the #NBCUupfront with @wwe !! https://t.co/Iwdwe8t2iS +05/14/2018,Sports_celeb,@RondaRousey,I don’t use filters often.... but when I do... I #DoItWithFlair… https://t.co/OlxSkorBuv +05/13/2018,Sports_celeb,@RondaRousey,Airport bubble gum blowing contest vs @LoveLeeJ #whatsthisgamecalled… https://t.co/Ms0r71wjbJ +05/13/2018,Sports_celeb,@RondaRousey,"Happy Mother’s Day to the most impressive, loving, hardworking,… https://t.co/7L5Dh3YMD1" +05/11/2018,Sports_celeb,@RondaRousey,#TIL #TodayILearned your beneficial bacteria make up 85% of your… https://t.co/xp6JTW7yMj +05/11/2018,Sports_celeb,@RondaRousey,Big congrats to my Sweat Sisters signing with @wwe!!!… https://t.co/nFfsdlkL5o +05/04/2018,Sports_celeb,@RondaRousey,Me and @LoveLeeJ ecstatic to be on location filming for #SharkWeek this… https://t.co/u1B9T3OOwt +05/04/2018,Sports_celeb,@RondaRousey,"Still can’t believe the first show I’ve ever produced, #WhyWeFight, is… https://t.co/3UHNsyDpJv" +05/01/2018,Sports_celeb,@RondaRousey,Honored to get the support of our champ @niajaxwwe 🙏🏼🥋❤️ https://t.co/156NepGKhj +04/29/2018,Sports_celeb,@RondaRousey,#oldheadshotday https://t.co/UTliMRAWzP +04/27/2018,Sports_celeb,@RondaRousey,Proudly supporting @TitusONeilWWE and Millions around the world for #Payitforwardday On April 28… https://t.co/2C3gdGvMGX +04/25/2018,Sports_celeb,@RondaRousey,"#Mile22 red carpet at #cinemacon - +Look for it’s release August 3rd! +Hair @thisisbabe1 +Makeup… https://t.co/iBXt9KhByH" +04/25/2018,Sports_celeb,@RondaRousey,"Hittin the red carpet with my dudes! @mark_wahlberg @iko_uwais pberg44 +Big thanks to the pit… https://t.co/qRtF6i6CkU" +04/25/2018,Sports_celeb,@RondaRousey,So fun getting the gang back together again!!! Seems like just yesterday I was sneaking away… https://t.co/IIoowE0J1c +04/25/2018,Sports_celeb,@RondaRousey,Always an honor and privilege to share a stage with the lovely @laurencohan especially to… https://t.co/zzfXpicUaS +04/24/2018,Sports_celeb,@RondaRousey,"@mark_wahlberg is always director Peter Berg's first option, but in #Mile22 he's the… https://t.co/Z6RcbykvZT" +04/24/2018,Sports_celeb,@RondaRousey,RT @Fandango: Find out more about #Mile22: https://t.co/KcFBRiRMAk https://t.co/pXKjYWEBju +04/24/2018,Sports_celeb,@RondaRousey,"RT @Fandango: .@markwahlberg is always director Peter Berg's first option, but in #Mile22 he's the government's strong-armed third option.…" +04/24/2018,Sports_celeb,@RondaRousey,Denying the crimes of the past only shed more light on what was lost. The Armenian Genocide will… https://t.co/BPyA9H86Ys +04/24/2018,Sports_celeb,@RondaRousey,#RowdyHart 🥋❤️ https://t.co/WUCZhRrxiE +04/19/2018,Sports_celeb,@RondaRousey,@natbynature showing me how to do the sharpshooter at santino_bros - back when I was still… https://t.co/VSI7pue3cm +04/18/2018,Sports_celeb,@RondaRousey,Proud of our #OneFightManagement fighter @vanesboxing stepping up to fight our friend @gggboxing on 3 weeks notice… https://t.co/E4ry8WBob2 +04/17/2018,Sports_celeb,@RondaRousey,Kosoto Gari #judo https://t.co/EAoNH00rsm +04/17/2018,Sports_celeb,@RondaRousey,"Some folks are wise and some are otherwise. + +-Tobias Smollett https://t.co/kNAJQHwDmY" +04/17/2018,Sports_celeb,@RondaRousey,#quotephase https://t.co/yGNZpxTkZ8 +04/17/2018,Sports_celeb,@RondaRousey,Congratulations on an impressive victory your first night back on #Raw @natbynature!… https://t.co/HEXvrVdQD6 +04/17/2018,Sports_celeb,@RondaRousey,A friend in need is a friend indeed ... welcome to #Raw @natbynature https://t.co/nRmts7xBrO +04/13/2018,Sports_celeb,@RondaRousey,"Thank you @BellaTwins and @NatbyNature for being so cool and cheering me on!! #girlpower + +https://t.co/kEaiqxhAIt" +04/13/2018,Sports_celeb,@RondaRousey,Try walking into the Mercedes Benz Superdome the first time to a sight like that and not tear up https://t.co/Chhseg4J5x +04/13/2018,Sports_celeb,@RondaRousey,"#WrestleMania was just the beginning. It's time to get #RowdyInEurope with @WWE! +#WWEGeneva 5/16 +#WWEVienna 5/17… https://t.co/3T1z1Tx27z" +04/12/2018,Sports_celeb,@RondaRousey,The you langlitzleathers @iammikaze and @AlejandroStyles @nazoboxing and @gfcdiamond for… https://t.co/r6p1PL16IW +04/10/2018,Sports_celeb,@RondaRousey,Hope I made you proud Hot Rod... https://t.co/nWiPD7XzIl +04/10/2018,Sports_celeb,@RondaRousey,I have many strengths.... but forgiveness isn’t one of them #SorryNotSorry #DontMessWithRowdy #Raw https://t.co/BC1ACGG1cD +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 🙏🏼 https://t.co/jQC1XAn2oQ +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 🤯😆🤩 https://t.co/zXQSABOLiG +04/09/2018,Sports_celeb,@RondaRousey,#wrestlemania34 was amazing.... not sure what repercussions are waiting for @RealKurtAngle and I… https://t.co/VaH8x7CfKo +04/09/2018,Sports_celeb,@RondaRousey,Thanks @RealKurtAngle for being the best partner and teammate I could ever have for my @wwe… https://t.co/yaf2oXDpFA +04/09/2018,Sports_celeb,@RondaRousey,Wow...thank you @RealKurtAngle the @wwe universe and New Orleans for an unforgettable night… https://t.co/RyaZ8q5I5r +04/08/2018,Sports_celeb,@RondaRousey,So proud of @joannamma and @rosenamajunas fighting their hearts out and representing all women and all fighters ton… https://t.co/Bm49tFTU45 +04/08/2018,Sports_celeb,@RondaRousey,Congrats to the new @wwenxt champion @qosbaszler!!!!! #4horsewomen #andthenew https://t.co/9NcwPmQQ4T +04/07/2018,Sports_celeb,@RondaRousey,My❤️ https://t.co/dnfHQZN8Z6 +04/07/2018,Sports_celeb,@RondaRousey,"RT @7GenGames: In New Orleans this weekend?Come hang out with us at @7gengames meetup - Saturday, noon - 2 pm. @RondaRousey won’t be there,…" +04/07/2018,Sports_celeb,@RondaRousey,"#WWEHOF +Thanks @Stello_Official for my custom dress. +Jewelry: kukkajewelry +Styling:… https://t.co/x949HhDiOC" +04/07/2018,Sports_celeb,@RondaRousey,ricflairnatureboy WOOOOOO!!!!!!! https://t.co/uBHiyoSE2J +04/03/2018,Sports_celeb,@RondaRousey,“Your pain is the breaking of the shell that encloses your understanding.” Khalil… https://t.co/boXmAqCKB2 +04/03/2018,Sports_celeb,@RondaRousey,#TrustFundTough https://t.co/5ZUAzX2G4p +04/03/2018,Sports_celeb,@RondaRousey,"Take all the cheap shots you want @StephMcMahon - +I can take it. +Along with your left 💪🏼 +See… https://t.co/gcBFO4HUDh" +04/03/2018,Sports_celeb,@RondaRousey,"Only the dead have seen the end of war. + +-George Santayana https://t.co/XEvunyQz1P" +04/03/2018,Sports_celeb,@RondaRousey,Atlanta 🍑❤️🙏🏼 already can’t wait to come back!! Thank you guys for the warm southern welcome!!! https://t.co/NxUvYyk4Fx +04/03/2018,Sports_celeb,@RondaRousey,I met another Rousey last night!! https://t.co/qnCQfx0ZHg +04/01/2018,Sports_celeb,@RondaRousey,@muhammadali 🙌🏼 https://t.co/axDjrxhdU3 +03/30/2018,Sports_celeb,@RondaRousey,#prune @AlejandroStyles @thisisbabe1 rietsunku https://t.co/WfQpmnoXO1 +03/29/2018,Sports_celeb,@RondaRousey,maxeffortmuscle #TodayILearned You have more bacteria cells than human cells in your body! https://t.co/mAmwPde73Q +03/27/2018,Sports_celeb,@RondaRousey,Thank you @thisisbabe1 rietsunku and @AlejandroStyles for getting me all prettied up for my… https://t.co/uAIDUJ73CE +03/27/2018,Sports_celeb,@RondaRousey,Thank you Cleveland 🙏🏼❤️ https://t.co/ZbjeYp7A4n +03/27/2018,Sports_celeb,@RondaRousey,"Apparently warm welcomes come few and far between in the @wwe +#absolution #raw @realpaigewwe… https://t.co/IoMXjCLo4N" +03/26/2018,Sports_celeb,@RondaRousey,@Jarrius happy 16th birthday!!!!! 🎂 looking forward to meeting you at #wrestlemania !! +03/26/2018,Sports_celeb,@RondaRousey,#roadtowrestlemania continues #april8th #NOLA https://t.co/io66EmrHKn +03/26/2018,Sports_celeb,@RondaRousey,Always a student 🙏🏼 #roadtowrestlemania https://t.co/HjugIdC4QE +03/22/2018,Sports_celeb,@RondaRousey,My Ev-er-y-THANG 😍 https://t.co/41OZyhdAnn +03/20/2018,Sports_celeb,@RondaRousey,Thank you @DanaBrookeWWE’s for the warm welcome and #wrestlemania34 warm up last night 😉… https://t.co/8mgPDfXhnc +03/20/2018,Sports_celeb,@RondaRousey,Holy Moly Dallas was fun last night!! 🙏🏼❤️ #dontmesswithtexas https://t.co/D2UhW8opzh +03/18/2018,Sports_celeb,@RondaRousey,I know got a lot of catching up to do. But I’m not afraid of hard work. I got the very best in… https://t.co/5L8s7SjXur +03/18/2018,Sports_celeb,@RondaRousey,"Safety first, then #teamwork #roadtowrestlemania https://t.co/0imafk4MkJ" +03/17/2018,Sports_celeb,@RondaRousey,"Rise & Game & Grind +Got some WoW time in with my Hubby @travisbrownemma before heading to… https://t.co/gMS5IUHaoh" +03/17/2018,Sports_celeb,@RondaRousey,Everything happens for a reason https://t.co/pRfb6ECwKV +03/16/2018,Sports_celeb,@RondaRousey,#NewDayRocks @xavierwoodsphd wwebige @TrueKofi https://t.co/1a37U7oR4u +03/15/2018,Sports_celeb,@RondaRousey,Congrats our #OneFightManagement fighter luckyboyferd getting signed to @goldenboyboxing !!!! https://t.co/2Sc6U8SRFb +03/13/2018,Sports_celeb,@RondaRousey,"heeezooo and @thisisbabe1 conducting their own style of symphony for theellenshow +Jewelry:… https://t.co/WHOuKeb98c" +03/13/2018,Sports_celeb,@RondaRousey,"Always fun getting the #rontourage back together - especially for theellenshow !! +Hair… https://t.co/bnef2B2GJf" +03/13/2018,Sports_celeb,@RondaRousey,She is just amazing - thank you theellenshow for having me back on today! https://t.co/jk6DUn6vIV +03/12/2018,Sports_celeb,@RondaRousey,"RT @WWE: The moment you never thought would happen... + +@RondaRousey & @RealKurtAngle battle @StephMcMahon & @TripleH at @WrestleMania, stre…" +03/10/2018,Sports_celeb,@RondaRousey,#TotesMyGoat eating a rope #ClaytheGoat https://t.co/vGq6VwdPsd +03/10/2018,Sports_celeb,@RondaRousey,Finally!! #bluedrake #wow https://t.co/Vt6VETdZAS +03/09/2018,Sports_celeb,@RondaRousey,That’s totes my goat #eatingwood #hesagenius #paxthegoat https://t.co/TScJmH5EFi +03/09/2018,Sports_celeb,@RondaRousey,#internationalwomensday https://t.co/VQOouYkE5s +03/08/2018,Sports_celeb,@RondaRousey,"My @maxeffortmuscle supplement line is here! +I'm giving away ⬇️ +FREE T-Shirt + +FREE Product of Choice +to everyone w… https://t.co/Y9xQC6HG98" +03/06/2018,Sports_celeb,@RondaRousey,Standing reverse kata guruma #judo https://t.co/Bpy2Nz4rhK https://t.co/xeKpnRInLL +03/06/2018,Sports_celeb,@RondaRousey,Ura Nage #judo https://t.co/jOa0MI1PCj https://t.co/UrRGAejCcY +03/06/2018,Sports_celeb,@RondaRousey,Thank you for all the love tonight Milwaukee 🙏🏼❤️ https://t.co/KCtbqkT7nX +03/06/2018,Sports_celeb,@RondaRousey,Respect your olympians. Or we’ll make you respect us. See you at #WrestleMania34 https://t.co/ujjVDVJw14 +03/06/2018,Sports_celeb,@RondaRousey,RT @cainmma: Thanks to @rondarousey and @travisbrownemma for the shirt. My daughter will love it until I get my own “El Toro” @WWE shirt. G… +03/04/2018,Sports_celeb,@RondaRousey,😍 #TeamBrowsey https://t.co/XRDPHxJwSS +03/04/2018,Sports_celeb,@RondaRousey,It was an honor getting inducted into the International Sports Hall of Fame today alongside my… https://t.co/GSiLckcDSS +03/01/2018,Sports_celeb,@RondaRousey,When you #NoSell surprise @travisbrownemma #marriedlife https://t.co/ROoQv5DzPG +02/27/2018,Sports_celeb,@RondaRousey,"1st day on the job... @stephaniemcmahon slaps me... +2nd day on the job... my fellow Olympian @therealkurtangle, an… https://t.co/dFS7rSzYWz" +02/26/2018,Sports_celeb,@RondaRousey,Apparently I have some “explaining to do” - Tune in to #Raw tonight to hear it @wwe https://t.co/ZP2TMIKYDA +02/26/2018,Sports_celeb,@RondaRousey,"Hell yeah @braunstowmanwwe!!!! 👊🏼💪🏼 +And that’s MY husband!! @travisbrownemma… https://t.co/a7qdUq2Yrd" +02/26/2018,Sports_celeb,@RondaRousey,"Hell yeah @braunstowmanwwe!!!! 👊🏼💪🏼 +And that’s MY husband!! @travisbrownemma… https://t.co/v7p9L0RDdn" +02/26/2018,Sports_celeb,@RondaRousey,Thank you Las Vegas for the passion and support last night... 🙏🏼 https://t.co/zwmWYI19fd +02/26/2018,Sports_celeb,@RondaRousey,Finally signed to @WWE ... the night definitely could have gone smoother though.... https://t.co/lyu2oGLBFb +02/25/2018,Sports_celeb,@RondaRousey,Love this edit by venomous_designs for #eliminationchamber tonight https://t.co/1s5Y71zR0X +02/25/2018,Sports_celeb,@RondaRousey,Ready for #eliminationchamber tonight!??!! I’m excited to finally sign my @WWE contract!!!! https://t.co/UM47zBOtJS +02/25/2018,Sports_celeb,@RondaRousey,Congrats to @nxtdrval @reggiego10 on their wedding! I’m honored I could have been a part of it… https://t.co/UkbDfceW9R +02/24/2018,Sports_celeb,@RondaRousey,"Favorite picture of my judo career, en route to winning my first World Cup at 19 - pic by David… https://t.co/8hBlWhlCD9" +02/21/2018,Sports_celeb,@RondaRousey,everything the light touches is our kingdom https://t.co/i1DaIUme4S +02/01/2018,Sports_celeb,@RondaRousey,I can’t tell you how much I appreciate all the birthday wishes 🙏🏼I was honestly expecting to… https://t.co/jOj4lUbQ38 +02/01/2018,Sports_celeb,@RondaRousey,"Thank you @MarinaShafir for this good morning pep talk 😂 #bfff + +https://t.co/2Haw3yyx3Z" +01/31/2018,Sports_celeb,@RondaRousey,My family in a nutshell 🥜😂 https://t.co/pcAXCFFfWZ +01/31/2018,Sports_celeb,@RondaRousey,#trafficjammin https://t.co/7BIDrnDvfX +01/29/2018,Sports_celeb,@RondaRousey,🤯😁😎 https://t.co/P5eCN36cs4 +01/29/2018,Sports_celeb,@RondaRousey,Just posted a photo https://t.co/fK1aLIUd4z +01/29/2018,Sports_celeb,@RondaRousey,My road to #wrestlemania begins https://t.co/ECrftMfF8T +01/29/2018,Sports_celeb,@RondaRousey,Gettin’ #Rowdy at #royalrumble https://t.co/A6a2n06TXG +01/29/2018,Sports_celeb,@RondaRousey,My favorite part of tonight - surprising my boys ❤️❤️❤️ @travisbrownemma https://t.co/nWFatvlTBn +01/27/2018,Sports_celeb,@RondaRousey,Enjoying some #Colombia cuisine with the #mile22 crew 🍵 #ajiaco https://t.co/BBAIP4efg3 +01/26/2018,Sports_celeb,@RondaRousey,Back on set #Mile22 #Bogota #Columbia https://t.co/ix0rFJrBr4 +01/25/2018,Sports_celeb,@RondaRousey,¡Hola Bogota! #mile22 https://t.co/9vvqFjDGV2 +01/18/2018,Sports_celeb,@RondaRousey,If you can’t tell my Roosters are super excited about me giving away a year’s supply of… https://t.co/dQaNfboRnA +12/31/2017,Sports_celeb,@RondaRousey,Watch #WhyWeFight on @go90Sports : https://t.co/4wdjSfCYVU +12/31/2017,Sports_celeb,@RondaRousey,https://t.co/Xadojai8Wl +12/12/2017,Sports_celeb,@RondaRousey,@kcstunts promising me my hair won't get set on fire 🙅🏼🔥 #NormalDayAtWork #2ndUnit #mile22 https://t.co/8u4ssHlDKy +12/01/2017,Sports_celeb,@RondaRousey,Our launch date is getting closer every day! Here's the latest preview for https://t.co/PsLSibFNz9… https://t.co/j55xWWZ5WI +11/30/2017,Sports_celeb,@RondaRousey,"""You sleepin' Ranger?"" barbellberserker #mile22 https://t.co/K0sDdnmqee" +11/24/2017,Sports_celeb,@RondaRousey,"Max Effort’s Black Friday is here!!  +Receive 50% off STORE WIDE! This will be an automatic… https://t.co/pup9C0bPSH" +11/10/2017,Sports_celeb,@RondaRousey,My amazing husband @travisbrownemma built #browseyacres gym in a matter of days 😍 thank you… https://t.co/dZQrrPqarr +11/09/2017,Sports_celeb,@RondaRousey,Thank you Abby and Asia for making my day!! ❤️🙏🏼 https://t.co/GMrWAOmc0a +11/09/2017,Sports_celeb,@RondaRousey,Thank you Charlie and Kathy Michael for this beautiful note 🙏🏼 https://t.co/kI3iwjvJZF +11/07/2017,Sports_celeb,@RondaRousey,That face you make before you realize there's a rewind button 😱#forza #4k #xboxonex https://t.co/Ib5woAuQNI +11/06/2017,Sports_celeb,@RondaRousey,Can’t wait to see all the excited fans at the @Microsoft store in NYC tonight @ 9pm to celebrate the launch of the #XboxOneX! +11/04/2017,Sports_celeb,@RondaRousey,We got to Demo the new #battleforazeroth expansion at #blizzcon - can't wait!!! https://t.co/YcAMDSPDLf +11/04/2017,Sports_celeb,@RondaRousey,I have since learned who techno Viking is 😂 #blizzcon #technodeathknight https://t.co/CT42U8vu1b +11/04/2017,Sports_celeb,@RondaRousey,Darkmoon Faire!!!! #BrowseyBlizzCon https://t.co/aLYqfIcP5d +11/04/2017,Sports_celeb,@RondaRousey,#blizzcon was a blast yesterday!!! #DeathKnights #WoW https://t.co/kQYPPPwlh4 +10/31/2017,Sports_celeb,@RondaRousey,You gotta get your hands on #AssassinsCreed and the new Xbox One X! Thank you @Xbox @rukizzel #XboxLiveSessions https://t.co/d1SiPEr1MO +10/28/2017,Sports_celeb,@RondaRousey,Just another day at #Browsey Ranch https://t.co/bJJEG6PLZ6 +10/25/2017,Sports_celeb,@RondaRousey,Check me out on 10/26 as I partner with @Xbox to feel true power & play #AssassinsCreed on Xbox One X… https://t.co/QVzmendhwR +10/24/2017,Sports_celeb,@RondaRousey,With Troy Boy and @marinashafir aka the most gorgeous and graceful mother you'll ever see https://t.co/BUsZcnmS01 +10/18/2017,Sports_celeb,@RondaRousey,https://t.co/TcuQQHDay0 +10/09/2017,Sports_celeb,@RondaRousey,My judo coach @JFloresPro isn't just a martial artist but a DOPE illustrative one too! Buy original art of his here… https://t.co/QQckr8aPLB +10/03/2017,Sports_celeb,@RondaRousey,Excited2announce Im partnering w/ @maxeffortmuscle A new fast growing line of nutritional supplements that I'll be… https://t.co/B3TG5e9XS0 +05/05/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/9IAzTh4cLV +05/04/2017,Sports_celeb,@RondaRousey,"Who is @roderickstrong ? part 2 + +https://t.co/CGXzneQOso" +05/03/2017,Sports_celeb,@RondaRousey,Hey guys I'm taking over the @nbc account today till my guest appearance on nbcblindspot tonight… https://t.co/pqa47IT2kN +05/02/2017,Sports_celeb,@RondaRousey,"Don't miss my nbcblindspot guest appearance airing this Wednesday, May 3rd at 8pm/7c on @NBC https://t.co/nZFv5zbXdB" +04/27/2017,Sports_celeb,@RondaRousey,"Quick promo for my @nbcblindspot guest appearance airing this Wednesday, May 3rd at 8pm/7c on @NBC https://t.co/PkSiDoceHN" +04/27/2017,Sports_celeb,@RondaRousey,"Who is @roderickstrong ? + +https://t.co/ihU2myR2Wa" +04/25/2017,Sports_celeb,@RondaRousey,102 year ago today was the beginning of the #armeniangenocide - 1.5 million men women and… https://t.co/uyUCmD69O1 +04/22/2017,Sports_celeb,@RondaRousey,💍😍❤️ @travisbrownemma https://t.co/zj2hI25Vxq +04/07/2017,Sports_celeb,@RondaRousey,#TakeaMomentNotaSelfie https://t.co/rGgJ6UYtEE +04/04/2017,Sports_celeb,@RondaRousey,#NextGenJudo teaching themaxston ashi waza https://t.co/72Hc9gVzcu +03/31/2017,Sports_celeb,@RondaRousey,Thank you punkmetender_art for the kind words and incorporating me into your art - and thanks… https://t.co/0oiJkRA1ZA +03/22/2017,Sports_celeb,@RondaRousey,Good luck to all fighters on golden boy card tom at fantasy springs casino. Watch Thursday on… https://t.co/isU7hq0mmT +03/09/2017,Sports_celeb,@RondaRousey,#iheartstreetart pic by @littlebropics art by @solusstreetart in NYC https://t.co/oEX3ahmMpZ +03/08/2017,Sports_celeb,@RondaRousey,#DayWithoutaWoman #resist https://t.co/r5DuMNxBVY +03/07/2017,Sports_celeb,@RondaRousey,#resist https://t.co/LB4sftaJHM +03/01/2017,Sports_celeb,@RondaRousey,Had fun filming with audreyesparza for nbcblindspot today😁check out season 2 of #blindspot (I… https://t.co/jAaeTaY1vs +02/26/2017,Sports_celeb,@RondaRousey,#trafficjamin https://t.co/jmsKgbhWY3 +02/26/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/Oy6I48CvG2 +02/12/2017,Sports_celeb,@RondaRousey,To the girl I just met at the grocery store - thank you 🙏🏼❤️ +02/10/2017,Sports_celeb,@RondaRousey,#quotephase https://t.co/QSjGs0it3S +01/29/2017,Sports_celeb,@RondaRousey,"The plaque at the base of the Statue of Liberty reads: ""Give me your tired, your poor, your… https://t.co/Yeti7Y8Ypg" +12/30/2016,Sports_celeb,@RondaRousey,"#FearTheReturn #FridayDec30 #rouseyvsnunes #ufc207 +Pic by hansgutknecht https://t.co/TudhKPQrN4" +07/02/2018,Sports_celeb,@SkyDigg4,"A little bit louder now!! +But get yo money black man https://t.co/ShzS0ZLJdD" +07/02/2018,Sports_celeb,@SkyDigg4,"RT @RachGall: Young players... watch @SkyDigg4 and the intensity and energy she plays with, especially on the defensive end of the floor. T…" +07/02/2018,Sports_celeb,@SkyDigg4,RT @LaChinaRobinson: Kayla Thornton just has such a great momentum and energy to her game. Good things happen to her because she never chea… +07/01/2018,Sports_celeb,@SkyDigg4,Everybody good! Could’ve been worse if I didn’t slam on the brakes! +07/01/2018,Sports_celeb,@SkyDigg4,"Old lady just pulled out into traffic, switched three lanes without signaling, and hit my car! Talking about she co… https://t.co/jxEpO2TCbv" +06/30/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: A good omen for the game tomorrow: one of my @SkyDigg4 jerseys FINALLY came after waiting for over a month! 😍🔥 +Still waiti…" +06/30/2018,Sports_celeb,@SkyDigg4,Falafel 🙌🏽 +06/29/2018,Sports_celeb,@SkyDigg4,RT @K104FM: Get tickets to the July 1st @DallasWings Game w/ @SkyDigg4 at https://t.co/EdemuR88Rq! #dallaswings #k104 https://t.co/bmOgvI1M… +06/29/2018,Sports_celeb,@SkyDigg4,RT @RocNation: Be sure to vote for @SkyDigg4 as Best #WNBA player at this year’s #ESPYS 🗳https://t.co/w7IqBDDEyJ https://t.co/ktKmKcwNvc +06/29/2018,Sports_celeb,@SkyDigg4,RT @RocNation: 🙌 RT to get @SkyDigg4 to the #WNBAAllstar game!! #WNBAvote https://t.co/gGrDtDDLXM +06/29/2018,Sports_celeb,@SkyDigg4,"RT @SLAMonline: .@SkyDigg4 activated point god mode last night, dropping a clutch 29 points and 8 assists. (via @wnba) https://t.co/G5wP2S9…" +06/28/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: She ready!!! That was such a great game and performance 🙌🏾 https://t.co/QMtyXDf3ZC +06/28/2018,Sports_celeb,@SkyDigg4,"RT @2nd1stchance: @WNBA @SkyDigg4 @DallasWings Shows tht on any level, Hard wrk, HEART PASSION DETERMINATION & GOD takes U a long way. Thx…" +06/28/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: See @SkyDigg4, it worked out like I said! 😂 +Back end of a back-to-back, yet u played ALL 40 minutes, put up 29pts & 8ast o…" +06/28/2018,Sports_celeb,@SkyDigg4,"RT @OGBSP: Retweeted WNBA (@WNBA): + +What a night for @SkyDigg4! + +Diggins-Smith posts 29 PTS & 8 AST, comes up CLUTCH in a @DallasWings vict…" +06/28/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: A HUUUUUUGE final 2 minutes from @ecambage and @SkyDigg4 to seal the win for the Wings! #VivaLasWings https://t.co/xz0qTyf… +06/27/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: Watching the game tonight wearing my new @SkyDigg4 player jersey shirt. 💯🔥💪 +#LetsFLy https://t.co/bfidF4Oc0i" +06/26/2018,Sports_celeb,@SkyDigg4,"What shall we then say to these things? If God if for us, who can be against us?" +06/26/2018,Sports_celeb,@SkyDigg4,RT @RocNation: #WNBAAllStar voting is in full swing! Want to see @SkyDigg4 in Minneapolis?! RT to vote! 🏀 #WNBAvote https://t.co/Znx8tukl0M +06/25/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVote @SkyDigg4 #SkylarDigginsSmith +06/25/2018,Sports_celeb,@SkyDigg4,@thejaylonsmith Indiana made 🙌🏽 +06/24/2018,Sports_celeb,@SkyDigg4,"Time to step it up period +W/ me or against me" +06/23/2018,Sports_celeb,@SkyDigg4,"Great team win tonight! The atmosphere was electric! Thanks to everyone that showed up tonight, it was LIT!" +06/22/2018,Sports_celeb,@SkyDigg4,"RT @S4TSSkyDigg: @SkyDigg4 AKA ""Chef Sky"" is ALWAYS giving back to the community!💯👏🙌 +#BoysAndGirlsClub https://t.co/NQi0mNsmPu" +06/21/2018,Sports_celeb,@SkyDigg4,RT @RocNation: RT to vote for @skydigg4!! 💎🙌#WNBAVOTE https://t.co/xdTdVRttDv +06/21/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVOTE @SkyDigg4 https://t.co/9M4d6yu3sJ +06/21/2018,Sports_celeb,@SkyDigg4,RT @_Kayraa4: Skylar Diggins-Smith @SkyDigg4 #WNBAvote +06/21/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: In case you didn’t know... +@KaelaD3 +@SkyDigg4 +@KBT_5Blessed +@ecambage +@LeticiaRomero95 +@Graytness_15 +@aerial_powers…" +06/21/2018,Sports_celeb,@SkyDigg4,My friends are some real ones!! Thanks Tiff! https://t.co/DVrgbPIFkU +06/21/2018,Sports_celeb,@SkyDigg4,https://t.co/dQei77Pohg +06/21/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: More ESPYS nominations 🙌🏾... @SkyDigg4 is up for Best WNBA player! Make sure you go vote for both Sky and @ndwbb and @A… +06/21/2018,Sports_celeb,@SkyDigg4,Thanks Shug!!! https://t.co/uBQF7OYRu2 +06/20/2018,Sports_celeb,@SkyDigg4,RT @RocNation: Congrats #RocNationSports @SkyDigg4 & @TG3II on being nominated for an #ESPY. Be sure to vote now at https://t.co/w7IqBDDEyJ… +06/20/2018,Sports_celeb,@SkyDigg4,RT @Aholmes_15: Skylar Diggins-Smith #WNBAVOTE @SkyDigg4 +06/20/2018,Sports_celeb,@SkyDigg4,RT @asher_kasher014: Skylar Diggins -Smith @SkyDigg4 #WNBAAllStar +06/20/2018,Sports_celeb,@SkyDigg4,RT @ChanelePatton: #WNBAVOTE @SkyDigg4 #SkylarDigginsSmith +06/20/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Get you a friend that has your back like @ecambage has @SkyDigg4's 💪💪 #RiseTOGETHER https://t.co/PY4gIffKgT +06/20/2018,Sports_celeb,@SkyDigg4,RT @ShaunKing: This is Rachel Maddow upon getting the breaking news that Trump has established detention centers for babies who've been for… +06/20/2018,Sports_celeb,@SkyDigg4,RT @RimaC13: Vote for @SkyDigg4 for WNBA AllStar!! +06/19/2018,Sports_celeb,@SkyDigg4,RT @rmontscott: Skylar Diggins-Smith @SkyDigg4 #WNBAVote +06/19/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: #WNBAAllStar voting is LIVE! + +Which ⭐️⭐️⭐️ do you want to see in action in Minneapolis on July 28? + +Cast your votes right here on…" +06/19/2018,Sports_celeb,@SkyDigg4,RT @jrnba: Congrats to Kyla Oldacre (@SkyDigg4 Soldiers) & Emoni Bates & Kareem Rozier (Bates Fundamentals) for receiving the Midwest Regio… +06/19/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: We're back in Minnesota for round ✌️ vs. the @minnesotalynx! Tip off is at 7pm. Don't miss it! 🏀 + +📍 Target Center +💻 Leagu…" +06/19/2018,Sports_celeb,@SkyDigg4,You couldn’t walk a mile! Stfu https://t.co/CAZWY7l7Yc +06/19/2018,Sports_celeb,@SkyDigg4,The NBA gets 50% of the revenue they bring in. We don’t even get 1/2 (<25%) of the revenue WE bring in! Let’s start… https://t.co/wMSPIssWUj +06/19/2018,Sports_celeb,@SkyDigg4,Hmmm.... https://t.co/D1FZ9JfELx +06/19/2018,Sports_celeb,@SkyDigg4,Happy #Juneteenth! ✊🏽 https://t.co/AQfcuzAESP +06/19/2018,Sports_celeb,@SkyDigg4,Wrong! But welcome to the family! https://t.co/ORXb2rbhry +06/18/2018,Sports_celeb,@SkyDigg4,Thanks Shaun! We need more guys like you leaning in and supporting women sports! https://t.co/c6f4l8lOA0 +06/18/2018,Sports_celeb,@SkyDigg4,Don’t get me started! https://t.co/9NJG6wpciI +06/18/2018,Sports_celeb,@SkyDigg4,"Woman in airport: “You guys don’t have a private jet???” + +Me: 😒“HA!” + +No....no we don’t. Even on back-to-backs...." +06/18/2018,Sports_celeb,@SkyDigg4,"RT @keithboykin: According to NASA, The Milky Way is ""so big that even at the speed of light, it would take 100,000 years to travel across…" +06/18/2018,Sports_celeb,@SkyDigg4,"RT @CoryBooker: Read this powerful op-ed by @LaurawBush then take 2 actions: + +Call on Trump to end his despicable policy of separating fami…" +06/17/2018,Sports_celeb,@SkyDigg4,"Love these two! Been coaching for years, helping dozens get to the collegiate level and beyond, and always giving b… https://t.co/Er6p4HtZkd" +06/17/2018,Sports_celeb,@SkyDigg4,RT @jrnba: Go-ahead bucket by Amaya Asher... the @SkyDigg4 Soldiers win the girls Midwest Regional in a fantastic finish! #JrNBAWorldChampi… +06/17/2018,Sports_celeb,@SkyDigg4,"Ayyyyyye!!! We lit!!! So proud of you girls! Milk house, here we come! https://t.co/S4tMPI5yCN" +06/17/2018,Sports_celeb,@SkyDigg4,RT @LBI_Steve: It’s not sexy but this is how @SkyDigg4 14U became the 1st ever @jrNBA champs. @LBInsider https://t.co/9kp1Vj0iP1 +06/17/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: “We gotta keep playing together so we can go to Orlando.” + +Amaya Asher (11 PTS) after Team @SkyDigg4 Semifinals W! #JrNBAWorldCh…" +06/17/2018,Sports_celeb,@SkyDigg4,Champions!! So proud of my girls! https://t.co/4OycCQtwhY +06/16/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Our very own @SkyDigg4 and @Graytness_15 have been nominated for Kid’s Choice Sports Awards and they need YOUR help! Go to… +06/16/2018,Sports_celeb,@SkyDigg4,RT @gayhefner: me & my best friend wilding out at our son’s basketball game in the future https://t.co/xFTC3OV3P2 +06/16/2018,Sports_celeb,@SkyDigg4,RT @asher_kasher014: Sky Digg Soldiers 2-0 in pool play ! Keep it going ladies 💙💚@SkyDigg4 https://t.co/XSPcCtfCqL +06/16/2018,Sports_celeb,@SkyDigg4,"RT @DallasWings: .@SkyDigg4 with the scoop AND the score 🙌 + +She leads the Wings with 15 PTS so far tonight! #RiseTogether https://t.co/TQk5…" +06/16/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: Team @SkyDigg4 is off to the races in the Midwest with the steal & three! #JrNBAWorldChampionship + +🖥: @ElevenSportsUSA https://…" +06/15/2018,Sports_celeb,@SkyDigg4,"RT @AmeenaRasheed: As much as I love sports media, I really loved reading about @SkyDigg4 in Refinery 29 and Complex before the season kick…" +06/15/2018,Sports_celeb,@SkyDigg4,RT @DorothyJGentry: Nothing but respect for @SkyDigg4 as she stops and high-fives every single fan who stayed after the game. #respect #Cla… +06/15/2018,Sports_celeb,@SkyDigg4,"RT @shannonrwatts: Sarah Sanders: “It is very Biblical to enforce the law.” + +Bible: “Woe to those who make unjust laws, to those who issue…" +06/14/2018,Sports_celeb,@SkyDigg4,Smh lol https://t.co/8LzfoQo35o +06/14/2018,Sports_celeb,@SkyDigg4,RIP Anne Donovan +06/13/2018,Sports_celeb,@SkyDigg4,Everybody think they a damn coach! +06/13/2018,Sports_celeb,@SkyDigg4,RT @AdamGrosbard: .@BGCA_Clubs Hall of Famer @SkyDigg4 and the Wings working with kids today at Boys & Girls Club of Greater Dallas https:/… +06/13/2018,Sports_celeb,@SkyDigg4,RT @WNBALOVE: DT on @SkyDigg4 “There is a real fight in her that I love. She is not out there to make friends or anything like that. That i… +06/13/2018,Sports_celeb,@SkyDigg4,"I’m pissed off for greatness! Bc when you’re pissed off for greatness, you’re not settling for mediocrity!" +06/09/2018,Sports_celeb,@SkyDigg4,"RT @WSUWBasketball: We then decided to go see some WNBA action! We went to see the Indiana Fever vs Dallas Wings. Afterwards, @SkyDigg4 was…" +06/09/2018,Sports_celeb,@SkyDigg4,RT @DrinkBODYARMOR: 👀🏀💥 Career-high 35 pts & the comeback W for BODYARMOR’s @SkyDigg4 & Dallas... #ObsessedWithBetter https://t.co/xL54QYeN… +06/09/2018,Sports_celeb,@SkyDigg4,Thanks for always supporting me!! #family 🍀❤️ https://t.co/uuN3SNoqM4 +06/09/2018,Sports_celeb,@SkyDigg4,RT @IrishCoachIvey: So happy to see my girls @SkyDigg4 @NatAchon ! So proud of you both! #NDfam 🍀💚 #ForeverIrish https://t.co/L8O9aUkvKu +06/09/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: A night to remember for @SkyDigg4! + +In her home state, Diggins-Smith posts CAREER-HIGH 35 PTS as @DallasWings come back to win! #…" +06/08/2018,Sports_celeb,@SkyDigg4,So dope coming from you!! Takes one to know one! https://t.co/2IkoEoSneY +06/07/2018,Sports_celeb,@SkyDigg4,"No’s aside, I think I have this Equalizer thing in the bag. 🤷🏽‍♀️ See it all play out during the #NBAFinals and mak… https://t.co/0mfdKt3APG" +06/06/2018,Sports_celeb,@SkyDigg4,RT @angela_rye: They are on PAID LEAVE. “Oh say can you see..” yet? https://t.co/5TRpcUzsFe +06/06/2018,Sports_celeb,@SkyDigg4,RT @WNBA: The @MinnesotaLynx will commemorate winning their fourth #WNBA championship on Wednesday in Washington D.C. with an event at Payn… +06/06/2018,Sports_celeb,@SkyDigg4,"RT @SheilKapadia: Instead of speaking, Malcolm Jenkins holds up signs at his locker to get his message across. https://t.co/mg9JdhFgYZ" +06/06/2018,Sports_celeb,@SkyDigg4,"RT @benbloomsport: Men = 100/100 +Women = 0/100 + +For the first time ever since Forbes started compiling the world's 100 highest paid sportsp…" +06/06/2018,Sports_celeb,@SkyDigg4,Born individuals....but too many die copycats...#youdoyou +06/05/2018,Sports_celeb,@SkyDigg4,https://t.co/ZtJUudsb00 +06/05/2018,Sports_celeb,@SkyDigg4,RT @ayesharascoe: . @AprilDRyan bringing up the issue that actually spurred the protests by the NFL players. Didn't really get an answer ht… +06/05/2018,Sports_celeb,@SkyDigg4,"RT @CillizzaCNN: Sarah Sanders says the media is ""trying to tear her down."" + +No. + +Asking her to acknowledge that she didn't tell the truth…" +06/05/2018,Sports_celeb,@SkyDigg4,"RT @AStepUpFHA: Happy Birthday, @GoIrishCoachO! 🎁🎉 https://t.co/FMx0UeRDtv" +06/03/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: .@ecambage having a MONSTER 4th quarter!!! She has 17 POINTS in this quarter alone. 😳 #RiseTogether https://t.co/UHYuRioxfG +06/03/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: .@SkyDigg4 put on a show tonight, finishing with 27 PTS, 7 AST & 3 STL in a @DallasWings W! #WatchMeWork https://t.co/p8IWynuNel" +06/01/2018,Sports_celeb,@SkyDigg4,RT @Dame_Lillard: I thought the only way you can change a charge call was if someone was in or out of the charge circle +06/01/2018,Sports_celeb,@SkyDigg4,What???? +06/01/2018,Sports_celeb,@SkyDigg4,"RT @SportsCenter: 11 years after his first Finals, LeBron's back for his 8th in a row. https://t.co/fKgFKtr8mY" +05/31/2018,Sports_celeb,@SkyDigg4,"RT @jrnba: #NBAFIT behind-the-scenes workout with @SkyDigg4! + +Learn More: https://t.co/xKC8LWZk6w https://t.co/jQSeCywWUr" +05/30/2018,Sports_celeb,@SkyDigg4,@utopiafalls02 You already know Shug! +05/30/2018,Sports_celeb,@SkyDigg4,"RT @GetUpESPN: What would @SkyDigg4 be doing if she wasn't in the @WNBA? + +The @DallasWings star reveals that and more in this edition of F…" +05/30/2018,Sports_celeb,@SkyDigg4,"RT @VanJones68: I checked. And Ambien does NOT make you racist. ..... Nice try, though, @therealroseanne. #Roseanne" +05/30/2018,Sports_celeb,@SkyDigg4,RT @essencecasey: went to the Dallas vs New York game last night & i gotta say that @SkyDigg4 is one of the best players i’ve ever seen. sh… +05/30/2018,Sports_celeb,@SkyDigg4,Gotta step my game up. No excuses +05/28/2018,Sports_celeb,@SkyDigg4,"RT @LaChinaRobinson: I am always proud and impressed by the way the women of the WNBA take on the responsibility of educating, discussing,…" +05/28/2018,Sports_celeb,@SkyDigg4,Made it on the wall at new @espn offices in downtown NY! 1 of 10 pics posted so far 🙌🏽 https://t.co/5oGDceFzKA +05/28/2018,Sports_celeb,@SkyDigg4,"RT @DorothyJGentry: @DallasWings @SkyDigg4 on the set of @GetUpESPN discussing the Wings, #WNBA growth of the league and pay disparity vs…" +05/28/2018,Sports_celeb,@SkyDigg4,"RT @murrminks: “It’s the highest level of talent. If you love basketball, you love the WNBA.” + +🗣 speak on it, @SkyDigg4 https://t.co/SnPt3Z…" +05/28/2018,Sports_celeb,@SkyDigg4,RT @MzLuckylefty: 😩😩😩😩lord thank you for giving this woman this platform today to spread the word about @wnba ! Dedicate the resources and… +05/28/2018,Sports_celeb,@SkyDigg4,RT @nlawsonMBA: Trying to help change this with orgs like the @seattlestorm and @WNBA through fantasy & engagement. Great message by @SkyD… +05/28/2018,Sports_celeb,@SkyDigg4,RT @TheRyanHollins: @SkyDigg4 @GetUpESPN @JalenRose Digg’s I got you 💯 I know the grind💯 https://t.co/HW0YywHciO +05/28/2018,Sports_celeb,@SkyDigg4,"Had a great time on @GetUpESPN this morning! Got to talk NBA and WNBA! If you missed it, check it out now https://t.co/itcudJLKXj" +05/28/2018,Sports_celeb,@SkyDigg4,@TheRyanHollins @GetUpESPN @JalenRose At least somebody is! +05/28/2018,Sports_celeb,@SkyDigg4,"RT @GetUpESPN: “It’s unfortunate.” + +-@SkyDigg4 gives her thoughts on the WNBA-NBA wage gap https://t.co/unpYgUsfcg" +05/28/2018,Sports_celeb,@SkyDigg4,"RT @StacyGSG: Jalen. Greeny. Beadle. Diggins-Smith. +#GetUp #ESPN +@SkyDigg4 https://t.co/GwLVqlOG8T" +05/28/2018,Sports_celeb,@SkyDigg4,RT @bballfan_folife: @SkyDigg4 needs to be on @espn more!! Her #NBA commentary is 🔥! +05/28/2018,Sports_celeb,@SkyDigg4,RT @cheese309: @SkyDigg4 I think you would make a great analyst one day +05/28/2018,Sports_celeb,@SkyDigg4,RT @Damien_Butler8: @SkyDigg4 definitely has a career in media ahead of her!! Not just on a sports platform either!! +05/28/2018,Sports_celeb,@SkyDigg4,"RT @ant757: @SkyDigg4 thank you for bringing your beauty, elegance, and poise to @espn @ESPNNBA this am!!!! @WNBA" +05/28/2018,Sports_celeb,@SkyDigg4,RT @DunnReggie2: @SkyDigg4 great job this morning on @GetUpESPN #growwomenshoops +05/28/2018,Sports_celeb,@SkyDigg4,"RT @HeyChrisByrd: @SkyDigg4 Great work on ""Get Up!"" this morning, loved your takes on the CLE/BOS game and continued growth of the WNBA." +05/27/2018,Sports_celeb,@SkyDigg4,RT @WNBA: Great ball movement from the @DallasWings leads to @SkyDigg4's big three! #WatchMeWork https://t.co/kE1YXvmiYG +05/27/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: How about this 4th quarter from @ecambage?! 🤩 #RiseTogether https://t.co/R1GkNHBU5Q +05/27/2018,Sports_celeb,@SkyDigg4,This made my day! https://t.co/ZpIMQ5TLAP +05/26/2018,Sports_celeb,@SkyDigg4,RT @lookinuge: Girls getting ready to go see @SkyDigg4 tommorow! #WNBALive #WatchMeWork https://t.co/kVr9S8gjGA +05/26/2018,Sports_celeb,@SkyDigg4,RT @everybodyluhke: That one time i used @SkyDigg4 as aspiration for my senior photo shoot 😂🤩 https://t.co/F6RyaeLYFz +05/26/2018,Sports_celeb,@SkyDigg4,RT @MoeScott4: Greatful to receive the opportunity to continue to play the game I love. #levels @TrineThunderMBB https://t.co/hwTtyCY615 +05/24/2018,Sports_celeb,@SkyDigg4,"Don’t get mad, get better" +05/23/2018,Sports_celeb,@SkyDigg4,RT @ShaunKing: Will the @NFL still effectively ban Colin Kaepernick & Eric Reid from the league now that they have banned taking a knee?… +05/22/2018,Sports_celeb,@SkyDigg4,@aerial_powers23 I got you!! +05/21/2018,Sports_celeb,@SkyDigg4,RT @Slyxra: Self-defence techniques for women... Kindly share https://t.co/eiRv7Mlyw3 +05/21/2018,Sports_celeb,@SkyDigg4,RT @carvellwallace: two weeks ago today a white woman tried to call the police on about 8 black folks barbecuing. Today in that same spot t… +05/21/2018,Sports_celeb,@SkyDigg4,RT @SLAMonline: Skylar Diggins-Smith was about #thatwork today. She went off for an easy 25 points. (via @wnba) https://t.co/KBm6NUnXLa +05/21/2018,Sports_celeb,@SkyDigg4,Love this! #teamLeo https://t.co/ePTqscfEzY +05/21/2018,Sports_celeb,@SkyDigg4,Thanks for coming out! Good to have the Irish family in the house! https://t.co/GiJHJl6GFD +05/21/2018,Sports_celeb,@SkyDigg4,"Great team win for opening night! The crowd was super lit! +So glad to have my favorite people at the game, too! Lo… https://t.co/PibWpGp8eJ" +05/21/2018,Sports_celeb,@SkyDigg4,RT @WNBA: .@SkyDigg4 goes off for 25 PTS as @DallasWings earn their first W of the season! #WNBAAllDay https://t.co/lCjwRzvTlk +05/20/2018,Sports_celeb,@SkyDigg4,"RT @FOXSportsSW: ""It was the total team effort tonight, including the 6th man we had in the crowd."" - @SkyDigg4 + +@DallasWings | #WingsOpeni…" +05/20/2018,Sports_celeb,@SkyDigg4,RT @thejaylonsmith: @DallasWings !!!! Came to see da realist! @SkyDigg4 ☘️ gonna be a great year for the WINGS team looking amazing on the… +05/20/2018,Sports_celeb,@SkyDigg4,RT @darcangel21: So smooth. @SkyDigg4 with the floater. #WNBAAllDay https://t.co/07D9CTO0mP +05/20/2018,Sports_celeb,@SkyDigg4,"RT @jessicawluther: I recently went bowling with @DallasWings's point guard @SkyDigg4. And the answer to your question is YES, she is alway…" +05/20/2018,Sports_celeb,@SkyDigg4,RT @NickVanExit: Street Ball @SkyDigg4 out here 🔥🔥🔥 https://t.co/12dOGrQozJ +05/18/2018,Sports_celeb,@SkyDigg4,Takes one to know one. Love you Slim!! https://t.co/KsbueMm8WA +05/18/2018,Sports_celeb,@SkyDigg4,"RT @CoachNess45: Reason 1,000,000 why I love & respect her so much. This is all facts! @SkyDigg4 really did change the game for females in…" +05/18/2018,Sports_celeb,@SkyDigg4,"RT @kaitlynromero10: “You can be a feminine woman and a beast on the court. You don’t have to choose.” 🏀👏🏽 +-@SkyDigg4" +05/18/2018,Sports_celeb,@SkyDigg4,RT @RocNation: LET’S GO @SkyDigg4 👏👏👏👏👏 Tonight is @DallasWings #WNBA season opener! Be sure to catch the game at 9pm CT on @NBATV. #watchm… +05/18/2018,Sports_celeb,@SkyDigg4,@ChanelePatton Love you Nelle Nel! +05/18/2018,Sports_celeb,@SkyDigg4,Emphasize https://t.co/i64XNxGCQr +05/18/2018,Sports_celeb,@SkyDigg4,"RT @AmeenaRasheed: Skylar Diggins-Smith (@SkyDigg4) of the @DallasWings talks about her love for basketball, bouncing back from a 2015 ACL…" +05/18/2018,Sports_celeb,@SkyDigg4,"RT @ndwbb: Watch Her Work! @SkyDigg4 kicks off the @WNBA season tonight at 10 pm ET. #GoIrish☘️ #IrishintheWNBA + +https://t.co/XhgbQgqmU9" +05/18/2018,Sports_celeb,@SkyDigg4,RT @tulsadoug: Great player profile of @SkyDigg4 by @jessicawluther. I love stories about players!! https://t.co/li6AP73rd1 https://t.co/XH… +05/18/2018,Sports_celeb,@SkyDigg4,RT @lookinuge: Awesome stuff.. @SkyDigg4 is amazing.. My girls love her and when they are working on their game it's always Skylar Diggins… +05/17/2018,Sports_celeb,@SkyDigg4,"RT @jessicawluther: .@SkyDigg4 has an encyclopedic knowledge of basketball, a deep love of the game, and an All-Star talent. And she wants…" +05/17/2018,Sports_celeb,@SkyDigg4,RT @Jessie_Stailey: @emmaleyden3 @SkyDigg4 @jessicawluther I loved everything about this. @SkyDigg4 is such a strong presence +05/17/2018,Sports_celeb,@SkyDigg4,"RT @MelissaSulewski: ""You can’t be what you can’t see. We need more images of our women playing so our girls can see these images.” @SkyDig…" +05/17/2018,Sports_celeb,@SkyDigg4,"RT @MzLuckylefty: “We ain’t trying to be in them one and done games, I can’t stand it.” + +... +😂 @SkyDigg4" +05/17/2018,Sports_celeb,@SkyDigg4,RT @emmaleyden3: Excellent article from @jessicawluther. I’ve met @SkyDigg4 before and this is a completely accurate description of her com… +05/17/2018,Sports_celeb,@SkyDigg4,"@jessicawluther Thank you for putting this together, Jess!" +05/17/2018,Sports_celeb,@SkyDigg4,"RT @Complex: 3x WNBA All-Star @SkyDigg4 is not messing around 💪 + +We talked with the star of the Dallas Wings about how much she hates losin…" +05/16/2018,Sports_celeb,@SkyDigg4,RT @CraigSJ: 2018 is really working wonders for my latent worry that simply existing in certain neighborhoods post-election will not go wel… +05/16/2018,Sports_celeb,@SkyDigg4,RT @brucelee: How AWESOME is it that Bruce’s life example and philosophy continues to this day to influence top athletes in a such a wide r… +05/15/2018,Sports_celeb,@SkyDigg4,RT @angela_rye: This is seriously too much. https://t.co/EHu0AjahBM +05/14/2018,Sports_celeb,@SkyDigg4,RT @Candace_Parker: Facts only. https://t.co/RbWT9tRoRf +05/13/2018,Sports_celeb,@SkyDigg4,Good finish to the preseason! Great seeing everybody that came out to fly w us today! Should be a fun year 🙌🏽 +05/13/2018,Sports_celeb,@SkyDigg4,RT @mel_bradley: @SkyDigg4 thanks for making these girls feel special! @LDN_NikeTopping #WNBA https://t.co/L6lhzRFRQJ +05/13/2018,Sports_celeb,@SkyDigg4,See! 😩😂 https://t.co/0BfZnjB266 +05/12/2018,Sports_celeb,@SkyDigg4,@arneduncan 🙌🏽💪🏽What a pass! Congrats! +05/12/2018,Sports_celeb,@SkyDigg4,RT @arneduncan: Hard to find a better teammate and winner than @SkyDigg4 ! https://t.co/aOBVt2MFfh +05/09/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: 🗣 ""LET'S GO!"" + +How badly does @SkyDigg4 want to raise her game in her 6th season? Get a glimpse inside the gym with the @DallasWi…" +05/09/2018,Sports_celeb,@SkyDigg4,All we need is a little time 🤷🏽‍♀️ +05/09/2018,Sports_celeb,@SkyDigg4,"RT @FightingIrish: 👀 We've seen that shot once or twice in Purcell, @SkyDigg4! + +Catch the @ndwbb alumna as she takes the court for the @Dal…" +05/09/2018,Sports_celeb,@SkyDigg4,RT @ndwbb: Your 2018 National Champions! ☘️ https://t.co/hAI3Bu1fF3 +05/05/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: Are you ready for this @DallasWings duo? 😯 + +@ecambage and @SkyDigg4 are ready to work! #watchmework https://t.co/6vadTA8ypG" +05/04/2018,Sports_celeb,@SkyDigg4,RT @4thFlCreative: That’s a wrap in Dallas! Thanks to our friends at the @DallasWings & @drapermedia for having us. Awesome shoot today!! #… +05/03/2018,Sports_celeb,@SkyDigg4,"RT @WNBA: We went behind the scenes with @SkyDigg4 for her #WatchMeWork shoot. It's time to officially watch her work on the court! + +Our l…" +05/03/2018,Sports_celeb,@SkyDigg4,"The bigger the dream, the harder the grind" +05/02/2018,Sports_celeb,@SkyDigg4,🙌🏽 Go baby girl! https://t.co/F38cYXfd4U +05/02/2018,Sports_celeb,@SkyDigg4,😍 https://t.co/RtM10EGZ1n +05/01/2018,Sports_celeb,@SkyDigg4,"@jamesfraschilla @DallasWings Thanks, James! I didn’t know you could shoot it like that 💪🏽 +I still got a foul to give, though 😂" +05/01/2018,Sports_celeb,@SkyDigg4,"RT @jamesfraschilla: Finishing up a quick trip home, and got to spend the last 2 days watching WNBA’s @DallasWings practice. @SkyDigg4 coul…" +05/01/2018,Sports_celeb,@SkyDigg4,"RT @DrinkBODYARMOR: ICYMI: Thanks @Gatorade, we’ll take it from here. @SkyDigg4 #ObsessedWithBetter #Switch2BODYARMOR https://t.co/1rYwXRhX…" +05/01/2018,Sports_celeb,@SkyDigg4,🙌🏽 Sarah! Let’s gooooo https://t.co/asJvim5SOO +05/01/2018,Sports_celeb,@SkyDigg4,Vote for @Arike_O on #DWTS! 💃🏽 https://t.co/NKudibBe3a +04/30/2018,Sports_celeb,@SkyDigg4,"RT @ShaneBoyd7: Best wishes to the the amazing women of the @WNBA who started training camp today⛹🏽‍♀️ The journey begins to the 🏆 & win, l…" +04/29/2018,Sports_celeb,@SkyDigg4,Good first day with the squad. Thanks to all the @DallasWings fans who came out to support! Can’t wait for the games 🙌🏽 +04/29/2018,Sports_celeb,@SkyDigg4,This! Good luck baby girl! https://t.co/JT2qwnw0UH +04/29/2018,Sports_celeb,@SkyDigg4,RT @YellaBoyDiggins: @SkyDigg4 fam the new #WNBA commercial. Yes! +04/28/2018,Sports_celeb,@SkyDigg4,New beginnings +04/28/2018,Sports_celeb,@SkyDigg4,RT @ava: So many things to say about this abhorrent videotaped assault. But too upset to express myself well right now. So I’ll remind folk… +04/27/2018,Sports_celeb,@SkyDigg4,@DrinkBODYARMOR @Gatorade @IndraNooyi 👀 +04/26/2018,Sports_celeb,@SkyDigg4,"RT @usabasketball: A special moment to close shootaround today. Two and a half year old Jesiah, diagnosed with high risk acute lymphoblasti…" +04/26/2018,Sports_celeb,@SkyDigg4,@YourCallFB 8 or 8:30? +04/25/2018,Sports_celeb,@SkyDigg4,RT @HistDodgertown: TONIGHT!! @YourCallFB scrimmage at Historic Dodgertown — all are welcome! Parking and entrance are free! The game runs… +04/25/2018,Sports_celeb,@SkyDigg4,@EuroLeagueWomen @kaymac_2123 @YDU_Melekleri @WNBA @LVAces TUH! +04/25/2018,Sports_celeb,@SkyDigg4,"RT @YourCallFB: Tonight: one last chance to dial in your play-calling skills before you compete for cash prizes on May 3, 10 and 17! + +Tune…" +04/25/2018,Sports_celeb,@SkyDigg4,RT @Mr_Blodgett2: Shoutout to @SkyDigg4 for putting me on @DrinkBODYARMOR 🤤💯 +04/25/2018,Sports_celeb,@SkyDigg4,RT @YourCallFB: We will be streaming our final test scrimmage in real-time tonight at 8:30 PM EDT. Test your play-calling skills one last t… +04/25/2018,Sports_celeb,@SkyDigg4,"RT @DrinkBODYARMOR: .@SkyDigg4 wouldn’t use outdated workout techniques, so why would she use an outdated sports drink? SHE WOULDN’T. +#Obse…" +04/24/2018,Sports_celeb,@SkyDigg4,I’m just tryna make my momma proud! +04/23/2018,Sports_celeb,@SkyDigg4,"RT @FCDallas: From @SkyDigg4's scarfing the Lamar Hunt statue to the celebrations on the pitch. See the best photos from #FCDvPHI. + +📷 https…" +04/22/2018,Sports_celeb,@SkyDigg4,RT @A_Phoenix_Born: As coaches we must encourage young women to be students of the game! That includes exposing them to the WNBA and the pl… +04/22/2018,Sports_celeb,@SkyDigg4,RT @DrinkBODYARMOR: BODYARMOR Sports Drinks are now available in 6-PACKS! Click here to save $2 on your next purchase: https://t.co/DBAYFbs… +04/22/2018,Sports_celeb,@SkyDigg4,RT @DallasWings: Honored to have our own @SkyDigg4 scarf the Lamar Hunt trophy tonight! @FCDallas https://t.co/9bSP2aiFNg +04/20/2018,Sports_celeb,@SkyDigg4,RT @ToyotaStadiumTX: Make sure you're here tomorrow when @SkyDigg4 scarfs the Lamar Hunt statue! https://t.co/4E5fApcoOC +07/01/2018,Sports_celeb,@Candace_Parker,@KaelaD3 Apple is amazing 🙌🏾 +07/01/2018,Sports_celeb,@Candace_Parker,@KaelaD3 I only know Macklemore +07/01/2018,Sports_celeb,@Candace_Parker,Sick and tired of being sick and tired 😂🤣😉🤗 so I’m not gona be sick and tired anymore. 👍🏾👍🏾 +07/01/2018,Sports_celeb,@Candace_Parker,Who is Drake 😂😂😂 https://t.co/YNuqRPIFke +06/29/2018,Sports_celeb,@Candace_Parker,I don’t know what’s worse... kids at Disney or old people in Vegas.....😂😂😂 this woman sitting next to me on the pla… https://t.co/GpqGRzCeUu +06/29/2018,Sports_celeb,@Candace_Parker,I know everyone is anxiously awaiting where Lebron is going to go.... but I know I am not alone in feeling that I h… https://t.co/52Q76EXeWa +06/28/2018,Sports_celeb,@Candace_Parker,RT @LA_Sparks: Let's throw it back to 2008 when @Candace_Parker became the 2nd player ever to dunk in the @WNBA after @LisaLeslie was the f… +06/26/2018,Sports_celeb,@Candace_Parker,RT @NBA: .@Candace_Parker is out here in LA! #NBAAwards #NBATwitter https://t.co/m7qwhrS7bu +06/26/2018,Sports_celeb,@Candace_Parker,🔜 #NBAAwards https://t.co/8Ajvk5PGjq +06/23/2018,Sports_celeb,@Candace_Parker,"It’s amazing there’s the same exact “thing” but people process, problem solve, and react COMPLETELY different." +06/22/2018,Sports_celeb,@Candace_Parker,Jalen Brunson🙌🏾🙌🏾🙌🏾🙌🏾 +06/21/2018,Sports_celeb,@Candace_Parker,Jackson JR. And Mo Bamba are my other two.... don’t sleep on! I’m so excited for the draft! Lol.... can you tell? #FanFoSho +06/21/2018,Sports_celeb,@Candace_Parker,Top Impact draftee that no one is talking about... Zhaire Smith! Legit an athletic freak! Hard worker and a tonnnn of upside! +06/21/2018,Sports_celeb,@Candace_Parker,That’s what we’re doing..... ok ok https://t.co/XDjVhfQ8Ps +06/21/2018,Sports_celeb,@Candace_Parker,RT @LA_Sparks: Get Candace Parker (@Candace_Parker) to the 2018 All-Star Game!🏀🙌 @LA_Sparks #WNBAVOTE https://t.co/bBsaU8LgDj +06/21/2018,Sports_celeb,@Candace_Parker,RT @MikeFlynn826: @BlueStarMedia1 @pierrepiotr_ @Bluestareurope @basketmedia365 I remember when @Candace_Parker was a Soph in HS and she wa… +06/21/2018,Sports_celeb,@Candace_Parker,"With the 21st pick in the 1997 Draft, New Jersey Nets select ANTHONY PARKER! I was the 1st to hug you & I remember… https://t.co/oHVJtTXZ9B" +06/20/2018,Sports_celeb,@Candace_Parker,Lead. Work. Injuries. Life. Adversity. This is my story #greatnessisearned #ad @SixStarPro https://t.co/0OQib62RwD +06/16/2018,Sports_celeb,@Candace_Parker,Grew up watchin LaTicha do it 😂🤷🏽‍♀️ https://t.co/VaBdkGqvw7 +06/16/2018,Sports_celeb,@Candace_Parker,🤹🏾‍♀️😂 https://t.co/VlEE4moZMM +06/15/2018,Sports_celeb,@Candace_Parker,Keepin’ it fly on the court and at the movies! This awesome movie is in theaters now. Check it out! #Superfly https://t.co/rEeRkxX1QH +06/14/2018,Sports_celeb,@Candace_Parker,"You have guided me and will continue to guide me EVERY SINGLE DAY! Your legacy IS impactful, your value PRICELESS,… https://t.co/9xvGSPSAz8" +06/10/2018,Sports_celeb,@Candace_Parker,Had a blast with the crew seeing #Superfly! Go see it with your crew this Wednesday June 13th🍿 https://t.co/baBVz7bo6U +06/09/2018,Sports_celeb,@Candace_Parker,Let #ChinaKlay BEGIN again!!!!!!!!! #ISeriouslyLoveHim #HesMySpiritAnimal #CoolestDudeEver +06/09/2018,Sports_celeb,@Candace_Parker,Congrats GSW! Back to back champs and 3 in 4 years.... Crazy... did it with ease..... +06/08/2018,Sports_celeb,@Candace_Parker,We go through this world wanting gain. But the feelings of loss are far greater than the joy of gain....I’d rather… https://t.co/lrGFO3hIAt +06/07/2018,Sports_celeb,@Candace_Parker,👀👀👀👀 https://t.co/FZJ68UuF0M +06/07/2018,Sports_celeb,@Candace_Parker,"Same people that were in the Houston series sayin “move the ball KD bad shot” are like “man, KD today.....carried e… https://t.co/KKR8C5vEyO" +06/07/2018,Sports_celeb,@Candace_Parker,This dude.......... +06/07/2018,Sports_celeb,@Candace_Parker,KD cookin 👀 +06/06/2018,Sports_celeb,@Candace_Parker,RT @BreMoorer: Captured this adorable moment at the @LA_Sparks game between @Candace_Parker and Lai walking it like she talks it 💃🏾 and @DJ… +06/05/2018,Sports_celeb,@Candace_Parker,Shout out to all my peeps who are putting in the work. My team @sixstarpro keeps me going https://t.co/CCEUk4QA4p… https://t.co/uVO68aK5Fn +06/05/2018,Sports_celeb,@Candace_Parker,RT @Justine_Brown: My little rider. #GoSparks https://t.co/0l3O8PLGlC +06/04/2018,Sports_celeb,@Candace_Parker,@Justine_Brown My baby cakes +06/02/2018,Sports_celeb,@Candace_Parker,RT @candicewiggins: Righteous. #20042008 https://t.co/W63jNMibAW +06/01/2018,Sports_celeb,@Candace_Parker,"June is Alzheimer’s & Brain Awareness Month, and I go purple for Coach Pat. Join me and the @alzassociation in the… https://t.co/iDsZTe9b5R" +06/01/2018,Sports_celeb,@Candace_Parker,"It’s #JrWNBAWeek, so I’m throwing it back to my @JrNBA Days! https://t.co/Rwv4qakZk2" +06/01/2018,Sports_celeb,@Candace_Parker,Bron Bron 👀 +05/31/2018,Sports_celeb,@Candace_Parker,"RT @LA_Sparks: @jlav42: “So what have y’all been doing since I’ve been gone?” +@Candace_Parker & @Alanabeard20: “Winning” +If you can’t tell.…" +05/31/2018,Sports_celeb,@Candace_Parker,RT @iamjamiefoxx: I’m having a house party for the premiere!!! Everybody’s coming through...@BeatShazamFOX’s biggest fan just stopped by...… +05/31/2018,Sports_celeb,@Candace_Parker,Last night this really happened : we were trying to pick a movie to watch and no one could agree. Lailaa says... “… https://t.co/l6iENtbk7e +05/28/2018,Sports_celeb,@Candace_Parker,Happy Memorial Day. So powerful to be surrounded by those that served so that we could have freedom. I take joy in… https://t.co/Vx1oZ5py3t +05/27/2018,Sports_celeb,@Candace_Parker,Had a blast at Sparks Night at the @Dodgers game in celebration of women in sports! So cool to meet Maybelle and Sh… https://t.co/YUy85dSlIk +05/27/2018,Sports_celeb,@Candace_Parker,"Basketball Gods..... THANK YOU! All I ask, is for the most amount of NBA basketball to be played. (I don’t care who… https://t.co/PePLATLfHU" +05/26/2018,Sports_celeb,@Candace_Parker,"Home opener Tomorrow! See all y’all there, 2pm vs Mercury. #Sparks #AllForLA https://t.co/0WWuopBPGc" +05/26/2018,Sports_celeb,@Candace_Parker,"Comparisons aside.... can we just agree we are witnessing GREATNESS... and JUST appreciate it. He had 46,11,9......… https://t.co/9eNeUrYoVX" +05/25/2018,Sports_celeb,@Candace_Parker,@IAmKendraDavis @KaelaD3 Nope😂😂🤗🤗🤗🤗 +05/25/2018,Sports_celeb,@Candace_Parker,https://t.co/obwFNNSs2l +05/25/2018,Sports_celeb,@Candace_Parker,@KaelaD3 Shots fired Blocka blocka +05/25/2018,Sports_celeb,@Candace_Parker,Legit.... I almost didn’t go high when they went low Twitter..... but my conscience said... “Candace.... CHILL” 😂 +05/24/2018,Sports_celeb,@Candace_Parker,Working my ass off to get back 🙌🏾 https://t.co/CCBRlkDH3G +05/24/2018,Sports_celeb,@Candace_Parker,We live in a world of “what have you done for me lately...?” People are wowed less and less.. Evidence… https://t.co/TbVBY2FaBe +05/24/2018,Sports_celeb,@Candace_Parker,#TBT ME! Part of the BABYHAIR club since ‘86. From the womb to the tomb I rep. #TakingApplications… https://t.co/GlURaQW1eF +05/23/2018,Sports_celeb,@Candace_Parker,Game... set.... match.... lol #WarriorsAreAMachine +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmm X 3🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmm once again 🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Hmmmmm🤔🤔🤔 +05/20/2018,Sports_celeb,@Candace_Parker,Come onnnn LA!!! Come onnnnnnnnn +05/20/2018,Sports_celeb,@Candace_Parker,Game plan for the Cavs... get other guys going early? It’s so evident😂😂😂😂 Lebron is spacing the floor +05/20/2018,Sports_celeb,@Candace_Parker,Semi impossible to argue best organization this year.... Celtics could win coach of the year and general manager of… https://t.co/qz0MNK8A0l +05/19/2018,Sports_celeb,@Candace_Parker,"“Your greatest challenge during your time here will be faithfully keeping your focus on the process, while surrende… https://t.co/hbVy7yDuE6" +05/18/2018,Sports_celeb,@Candace_Parker,Time flies 😵 https://t.co/mLHR6mTlxE +05/17/2018,Sports_celeb,@Candace_Parker,RT @DougFeinberg: I appreciate you five joining us today @Da20one @Candace_Parker @Chiney321 @NatAchon and @jewellloyd. Good luck this seas… +05/17/2018,Sports_celeb,@Candace_Parker,Basketball is your job... there’s worse things in the world... how lucky are we we get to do what we love for a liv… https://t.co/ALPsjnSKU3 +05/17/2018,Sports_celeb,@Candace_Parker,Anytime you can step outside yourself and see the game from a different point of view it’s.l a great experience!!!… https://t.co/BUDO5HvAky +05/17/2018,Sports_celeb,@Candace_Parker,We desire all fans to respect our hustle and our abilities https://t.co/I2Ei50VerM +05/17/2018,Sports_celeb,@Candace_Parker,I’m old... I didn’t know how it worked 😂😂😂😂😂😂😂 https://t.co/FVPrlYWlxP +05/17/2018,Sports_celeb,@Candace_Parker,I believe a rivalry and something for fans to get excited about does help. People can identify and look forward to… https://t.co/Zgq2zjaIqe +05/17/2018,Sports_celeb,@Candace_Parker,Jayyyyyy https://t.co/Gaf8jX7BlJ +05/17/2018,Sports_celeb,@Candace_Parker,Hello everyone #apwnba +05/17/2018,Sports_celeb,@Candace_Parker,RT @DougFeinberg: Welcome @Candace_Parker; thanks for joining us! #APWNBA +05/17/2018,Sports_celeb,@Candace_Parker,We suffer more in imagination than in reality +05/16/2018,Sports_celeb,@Candace_Parker,"Photographer was like, “stand back to back.” We were like nah.... “we want senior picture vibes” Then... we created… https://t.co/dsJ8ocqo0w" +05/13/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: Superstar player, superstar mom! + +@Candace_Parker #MothersDay https://t.co/1VwP4agft5" +05/12/2018,Sports_celeb,@Candace_Parker,ICYMI you still have time to enter my 2nd annual #CPNomAMom contest! Celebrate all the moms out there by sharing a… https://t.co/5EYG73TIMr +05/12/2018,Sports_celeb,@Candace_Parker,Facts only. https://t.co/RbWT9tRoRf +05/11/2018,Sports_celeb,@Candace_Parker,If Dwayne Casey gets Coach of the year....... how do you handle it? Like press conference.... wow +05/10/2018,Sports_celeb,@Candace_Parker,Uh oh... Chuck picked Golden State.... @NBAonTNT GSW is like...DON’T GUARANTEE! https://t.co/2sIuzjNKj0 +05/10/2018,Sports_celeb,@Candace_Parker,Interesting Bos/Cavs face each other with little if any evidence of “the trade” alive...... crayyyyy +05/10/2018,Sports_celeb,@Candace_Parker,This isn’t happening to the 6ers +05/10/2018,Sports_celeb,@Candace_Parker,I know I’ve shouted out KG numerous times.... but well done Area21 and Sarah Spain!! https://t.co/QuV3yRKjHU +05/09/2018,Sports_celeb,@Candace_Parker,It’s Mother’s Day this Sunday and I am so excited to launch my 2nd annual #CPNomAMom contest! Honor a mom in your l… https://t.co/ESyxitFv9f +05/08/2018,Sports_celeb,@Candace_Parker,Spoil HER with experiences! #CaliLivin #MyPersonalityTwin #NahlaAce #BehindTheLENS #BiggestFan #LailaasMom… https://t.co/K92E3t2BMp +05/06/2018,Sports_celeb,@Candace_Parker,"I have a lot of basketball vomit moments... (‘08 Sofia Young’s fadeaway bank shot with 1.5 seconds in WCF, BGriners… https://t.co/xoSc6xMZDC" +05/06/2018,Sports_celeb,@Candace_Parker,Dude.... #Toronto https://t.co/CbTa82eAXe +05/06/2018,Sports_celeb,@Candace_Parker,I feel so terrible for them +05/06/2018,Sports_celeb,@Candace_Parker,I want this so bad for Toronto... please win!!!!! #ButBronBoutToHitAFadeAway +05/05/2018,Sports_celeb,@Candace_Parker,Two entertaining NBA playoff games tonight...... NOT 🙄 +05/04/2018,Sports_celeb,@Candace_Parker,Fridayyyy +05/03/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: If you want to package @Candace_Parker in the deal, I understand. #PortillosAmbassadors" +05/02/2018,Sports_celeb,@Candace_Parker,For all those that are mad coming off the bench..... steph curry came off the bench..... smdh not enough credit....… https://t.co/jJPVZlYjyk +04/28/2018,Sports_celeb,@Candace_Parker,Hmmmmm🤔🤔🤔🤔🤔🤔🤔 respectfully disagree😬😬😬😬😬 https://t.co/IulAzc86O9 +04/28/2018,Sports_celeb,@Candace_Parker,Doing Lais social Studies homework today. She has to memorize the “GettysBurg address” delivered by Abraham Lincoln… https://t.co/3HGsjnX4RN +04/28/2018,Sports_celeb,@Candace_Parker,Why https://t.co/ubhCO3Q2Ya +04/28/2018,Sports_celeb,@Candace_Parker,Does Donovan Mitchell sweat? Mannnnnnn what a baller...... +04/27/2018,Sports_celeb,@Candace_Parker,Come on Chicago Bears...... do something GREAT wit EIGHT..... let’s goooooo +04/26/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: When your office is the Staples Center court... #TakeYourChildToWorkDay featuring @Candace_Parker & Lailaa! + +#WatchMeWork https:/…" +04/26/2018,Sports_celeb,@Candace_Parker,❤️❤️❤️ https://t.co/mv6cdCQgsw +04/26/2018,Sports_celeb,@Candace_Parker,"Real talk, I appreciate you @KGArea21 for your passion for BASKETBALL. I didn’t say NBA or WNBA I said...basketball… https://t.co/g0K3BQdKHz" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @KGArea21: ""That's why I think people underestimate how valuable Steph Curry is."" + +KG, @Candace_Parker and Gary Payton talk how unique…" +04/26/2018,Sports_celeb,@Candace_Parker,"YOU can help @webackpat win $12,500 and help defeat Alzheimer’s. It takes just a few seconds. Please vote every day… https://t.co/OLQM0u3FP0" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: #KGArea21 SQUAD! + +@Candace_Parker back in her element 😎 + +📷: @KGArea21 https://t.co/kApzNoLVKA" +04/26/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: In EP 02, @Candace_Parker talked about her championship with the @LA_Sparks & spoke for the first time about whether or…" +04/26/2018,Sports_celeb,@Candace_Parker,Crazy comeback by the Thunder..... Russ man.... his heart is bigger than all the doubt and hate y’all throw at him… https://t.co/rMoF5PGPtV +04/25/2018,Sports_celeb,@Candace_Parker,RT @GWU_WBK: .@GWU_WBK would like to welcome new head coach @apsimms2 to the family! https://t.co/LLA9oHAiKK +04/25/2018,Sports_celeb,@Candace_Parker,Is my up and under a travel? 🤔 +04/25/2018,Sports_celeb,@Candace_Parker,This is my sixth time on @KGArea21..... same debate! Settle it once and for all! My up and under is a travel? Need… https://t.co/NE3jK6YpVZ +04/25/2018,Sports_celeb,@Candace_Parker,RT @KGArea21: LIVE in @KGArea21 with @Candace_Parker & Gary Payton! https://t.co/rFPmmKK1wB +04/24/2018,Sports_celeb,@Candace_Parker,"RT @Justine_Brown: EP 02 of @SMYFPodcast is up with my ride or die @Candace_Parker! Talking the growth of our friendship, Coach Summitt, Ro…" +04/20/2018,Sports_celeb,@Candace_Parker,Been down since day1 https://t.co/ZOhYNMiaef +04/20/2018,Sports_celeb,@Candace_Parker,Sums up our relationship lol 😂😂😂😂😂 thanx kg see u soon!!!! https://t.co/arN2KNX66z +04/20/2018,Sports_celeb,@Candace_Parker,RT @brian_agler: @Candace_Parker Still a pup.... https://t.co/g6ub539tf6 +04/20/2018,Sports_celeb,@Candace_Parker,@LyssiB Jerk +04/20/2018,Sports_celeb,@Candace_Parker,Thanx holly ❤️❤️❤️ https://t.co/Djj9L8ST1G +04/19/2018,Sports_celeb,@Candace_Parker,RT @KaelaD3: Back to 9. Happy Birthday big bead. Love you! 😂🙌🏾 @Candace_Parker +04/19/2018,Sports_celeb,@Candace_Parker,Everyone is trying to make me emotional today..... Thanx y’all! #ThugsDontCry +04/19/2018,Sports_celeb,@Candace_Parker,RT @SLAMonline: Shout out Candace Parker. Happy birthday to one of the best to do it. https://t.co/CDd95q385C +04/19/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: The @LA_Sparks Point Forward! + +On her birthday, relive the BEST ASSISTS of @Candace_Parker's career! #WNBABDAY #WatchMeWork https…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @LA_Sparks: Join us in wishing a VERY happy birthday to our very own @Candace_Parker! We hope your day is full of sunshine, love, and ha…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @SIGSports: To one of the best to ever do it, wishing you the HAPPIEST of birthdays @Candace_Parker!! +#SIGFam https://t.co/15C8KcYPIE" +04/19/2018,Sports_celeb,@Candace_Parker,❤️❤️❤️😘😘😘😘🤗🤗🤗🤗 we cute https://t.co/Gi0ESuJBsj +04/19/2018,Sports_celeb,@Candace_Parker,32.... yikessssssss https://t.co/tgzDDVLzt5 +04/19/2018,Sports_celeb,@Candace_Parker,"RT @adidasUS: Calling All Creators. + +We’re honored to welcome members of our #teamadidas family to the adidas America Headquarters. https:/…" +04/19/2018,Sports_celeb,@Candace_Parker,"RT @SMYFPodcast: I’ll share the early line-up. Sneak peek for the six of you already following. 😐🙌🏼 #gottastartsomewhere + +EP 01: @jesspucci…" +04/18/2018,Sports_celeb,@Candace_Parker,"Had a blast at the WNBA Summit in Portland! Repped the three stripes w/ these amazing ladies! Designed some shoes,… https://t.co/KrMp03fH3C" +04/18/2018,Sports_celeb,@Candace_Parker,RT @SwinCash: Dang @Candace_Parker you out here with double doubles lol for those who haven’t checked out the ladies on NBA Live check them… +04/17/2018,Sports_celeb,@Candace_Parker,"Crazy how others share how I inspired them & in turn, end up inspiring me! Thank you Jill Hub for the jersey & the… https://t.co/FSJbPf7r7c" +04/17/2018,Sports_celeb,@Candace_Parker,RT @Chiney321: sista from anotha mista 🤜🏽✨🤛🏿 https://t.co/Umip8ji6zr +04/17/2018,Sports_celeb,@Candace_Parker,"RT @mmcornelius: Let's fill the service with flowers for #LVFL Daedra Charles-Furlow. Send to: +McFall Brothers Funeral Home +9419 Dexter Blv…" +04/16/2018,Sports_celeb,@Candace_Parker,Last week on set with @alzassociation for Coach! I’m proud to support the fight to end Alzheimer’s in her honor.… https://t.co/ZWckGvmpPA +04/16/2018,Sports_celeb,@Candace_Parker,"So sad to hear about the passing of a legend on AND off the court. Daedra Charles was a friend, mentor and amazing… https://t.co/So5tBt800o" +04/16/2018,Sports_celeb,@Candace_Parker,RT @LadyVol_Hoops: Our Lady Vol family is heartbroken to learn of the passing of Tennessee legend Daedra Charles. Head coach Holly Warlick… +04/16/2018,Sports_celeb,@Candace_Parker,Playoff P🤔🤔🤔 DAMNNNNNNNNN +04/15/2018,Sports_celeb,@Candace_Parker,Defense through 3 and a half quarters in this game... since... BETTER OFFENSE 🔥🔥🔥🔥🔥🔥 +04/15/2018,Sports_celeb,@Candace_Parker,If y’all aren’t watching this bos/ Milwaukee game 👀👀👀👀😳😳😳 CRAZY OVERTIME!!! BIG PLAY AFTER BIG PLAY. #FavoriteTimeOfYear +04/12/2018,Sports_celeb,@Candace_Parker,#WNBADraft Day! Good luck to all the young women on this exciting day! Can’t believe it’s been 10 years since I was… https://t.co/PV07OKSlf5 +04/11/2018,Sports_celeb,@Candace_Parker,I wish there was an easy button for hard work. Like... you only get like five pushes (I’m reasonable) but legit i w… https://t.co/SdIPdExIk1 +04/11/2018,Sports_celeb,@Candace_Parker,My third big bro! https://t.co/GAIm0SJHe7 +04/11/2018,Sports_celeb,@Candace_Parker,"RT @_AnthonyParker: @Candace_Parker Love ya lil sis! Yours truly, Candace Parker’s Brother 😘😜" +04/11/2018,Sports_celeb,@Candace_Parker,"Couldn’t pick 2 better role models than you guys.... quite big shoes to fill and follow, but lil sis looks up to yo… https://t.co/FFHQGNysfv" +04/09/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: A college athlete turned professional in less than 24hrs! + +2008 No. 1 pick @Candace_Parker looks back ahead of this year's Draft…" +04/09/2018,Sports_celeb,@Candace_Parker,"Super proud of my bestie @Justine_Brown for her podcast “Show Me Your Friends”!You always are smiling, supportive,… https://t.co/cS8vxHrvLt" +04/03/2018,Sports_celeb,@Candace_Parker,Thanx for the love and support Jussy. You always show me love I really appreciate it. From day 1 https://t.co/ZUJK0qVRlK +04/03/2018,Sports_celeb,@Candace_Parker,It’s over. Nova bout to go on a run. Last time it’s tied. +04/03/2018,Sports_celeb,@Candace_Parker,Join us tonight for the #FinalFour Watch Party! @danajacobson @bwood_33 @Smoove2you_ https://t.co/wh91Zwvwkm +04/02/2018,Sports_celeb,@Candace_Parker,Hey y’all! Join me on #MarchMadness Watch party tonight as @umichbball and @NovaMBB play for the #NCAA National Ch… https://t.co/Fbxe2SeOVF +04/02/2018,Sports_celeb,@Candace_Parker,Crazy! Well women’s basketball fans.... this has been a remarkable final four... couldn’t ask for a better one! Con… https://t.co/eUyOvpVGp3 +04/01/2018,Sports_celeb,@Candace_Parker,Tierra Mccowen is KILLIN! +04/01/2018,Sports_celeb,@Candace_Parker,@BernardPT 😂 good game I love “Mo Buckets” +03/31/2018,Sports_celeb,@Candace_Parker,This Michigan/Loyola game.... insane! +03/31/2018,Sports_celeb,@Candace_Parker,But my Mama taught me better than that🎼 +03/31/2018,Sports_celeb,@Candace_Parker,"Yea, boxing Tierra Mccowen out is no easy feat! Lol" +03/30/2018,Sports_celeb,@Candace_Parker,Crazy how different basketball is in the NCAA tournament when teams force you to do what you don’t want to do and t… https://t.co/PUFNyczOyt +03/30/2018,Sports_celeb,@Candace_Parker,I think Mississippi State goes on a run here.... led by Vivian’s +03/30/2018,Sports_celeb,@Candace_Parker,Louisville winning every 50/50 ball and have punched first vs. Miss St. Most aggressive team wins... right @brian_agler ? +03/30/2018,Sports_celeb,@Candace_Parker,"Had the pleasure to chat with @BenSimmons25 yesterday! I’m in awe of his talent on the court, but talking with him,… https://t.co/MgzFlhN3FD" +03/29/2018,Sports_celeb,@Candace_Parker,Back to WORK! Check me out tonight on @NBAonTNT! https://t.co/GzDBTSNWa3 +03/29/2018,Sports_celeb,@Candace_Parker,SpringBreak was a success!!!❤️🤗 #Fam #WeDoKindaLookAlike #Parkerzzzzzzz #QualityTime #Cuzzins… https://t.co/2UudtY7Mpp +03/24/2018,Sports_celeb,@Candace_Parker,"RT @dg_riff: Forget your politics. Forget your ""position."" How many of us can truly say that we live/have lived with this much passion or c…" +03/24/2018,Sports_celeb,@Candace_Parker,"So wait, I had this dream I was a rookie again. My teammates were @TurnerSportsEJ @SethDavisHoops Brenden Haywood &… https://t.co/qZkIcFoDCP" +03/23/2018,Sports_celeb,@Candace_Parker,"#HappyNationalPuppyDay Ace and Nahla have big shoes to fill, but they are doing ok so far! #alldogsgotoheaven🐾… https://t.co/EFxWWxgJP0" +03/23/2018,Sports_celeb,@Candace_Parker,Wow +03/23/2018,Sports_celeb,@Candace_Parker,RT @LaChinaRobinson: Yes @Candace_Parker is in studio slaying as we speak but earlier today she dropped by #AroundTheRim & as usual kept it… +03/22/2018,Sports_celeb,@Candace_Parker,RT @TichaPenicheiro: BIG S/O to @Candace_Parker and @SwinCash in the studio giving their insight on the #NCAA men’s tournament!! you guys r… +03/22/2018,Sports_celeb,@Candace_Parker,RT @ESPN_WomenHoop: .@UBwomenshoops coach Felisha Legette-Jack and @CMUWBBall coach Sue Guevara discuss their Sweet 16 runs with @LaChinaRo… +03/19/2018,Sports_celeb,@Candace_Parker,🙏🏾Namaste legit had a blast with you all! Learned so much and laughed in the process. https://t.co/HRyxZMKSPp +03/18/2018,Sports_celeb,@Candace_Parker,RT @DelishaMJones: @Candace_Parker your ugly orange wearing Vols and my pretty orange wearing Gators both had rough days today. I empathize… +03/18/2018,Sports_celeb,@Candace_Parker,Thanx..... i wiped my tears https://t.co/fX4hs8s92S +03/18/2018,Sports_celeb,@Candace_Parker,Just got a lovely call from @swiesebaby24 ..... #LearnHowToWinGraciously #SoreWinner #RespectForTheGame #SkipTheNCAATourney 🙄 +03/18/2018,Sports_celeb,@Candace_Parker,✌🏾 March madness..... I don’t like it. I’m sick.... no horse in the race on either side now 🙄 +03/18/2018,Sports_celeb,@Candace_Parker,Lady Vols! Let’s go!!!!!!! I’ll be watching and cheering you on from afar! P.s. please be easy on my heart! 😂 +03/18/2018,Sports_celeb,@Candace_Parker,#Respect :) https://t.co/9rkzGczAj1 +03/18/2018,Sports_celeb,@Candace_Parker,I still bleed orange.... this one stung but we will be back! #Vols4Life #SisterJeanGotUs #ButSheWonMeOver #Love… https://t.co/B2JAhmHYwx +03/18/2018,Sports_celeb,@Candace_Parker,"I honor bets lol! I’m from Naperville, IL my bracket is busted.... 🤷🏽‍♀️ https://t.co/rAwLxJjnvg" +03/18/2018,Sports_celeb,@Candace_Parker,Can’t believe you bet against me.... we were teammates https://t.co/ZsWOgcXbza +03/18/2018,Sports_celeb,@Candace_Parker,Sick https://t.co/DD9FeU2Bkr +03/18/2018,Sports_celeb,@Candace_Parker,That’s what’s we are doing Ros “BET” ..... I hope Stanford...... oh wait 🤔😂😂😂 kidding! I’m a believer in Sister Jea… https://t.co/ZHvTsLve9o +03/17/2018,Sports_celeb,@Candace_Parker,Turn out the lights..... history! Wow... 16 seed beats #1 seed! Happy on the ladies side now the record stands at 135-1 +03/16/2018,Sports_celeb,@Candace_Parker,Cut me and I GUARANTEE the blood that pours out will be ORANGE 🍊 #TournamentTime #LadyVols #YallKnowWhatItIs… https://t.co/2iDSkQQ5TV +03/16/2018,Sports_celeb,@Candace_Parker,Tune in! #MarchMadness @MarchMadnessTV https://t.co/UTyG5AS1fz +03/16/2018,Sports_celeb,@Candace_Parker,I don’t know why I fill out a bracket every year..... bracket BUSTED! Arizona.... forealz +03/15/2018,Sports_celeb,@Candace_Parker,Yessss @Vol_Hoops!!! #MarchMadness https://t.co/ggkMH7Eh8z +03/14/2018,Sports_celeb,@Candace_Parker,My little Black Panther! <3 This movie gave Lailaa a new perspective on what superheroes can look like. And… https://t.co/4lFdOBvKKn +03/14/2018,Sports_celeb,@Candace_Parker,I have some amazing #MarchMadness memories and I am so lucky I get to create new ones broadcasting in studio for th… https://t.co/VXJyFCndPZ +03/14/2018,Sports_celeb,@Candace_Parker,"RT @WNBA: Hi, @Candace_Parker! Catch her covering #FirstFour action on @truTV! https://t.co/4zsZkx18VQ" +03/09/2018,Sports_celeb,@Candace_Parker,If you’re looking for an answer it’s usually hard work and patience. https://t.co/5tSb8ejtEY #ad #greatnessisearned… https://t.co/lTUejNnItH +03/09/2018,Sports_celeb,@Candace_Parker,We are all better when we empower women! Thank you @LAClippers and @bumble for recognizing that we are all… https://t.co/sH3ecp9T6Q +03/08/2018,Sports_celeb,@Candace_Parker,"Happy International Women’s day! May we know them, grow them, raise them, honor them, respect them, challenge them,… https://t.co/avcJctRf76" +03/06/2018,Sports_celeb,@Candace_Parker,Recognize athletes for what matters most: Creativity. #HereToCreate @adidas https://t.co/ntYMX9GqTm +03/05/2018,Sports_celeb,@Candace_Parker,< Retired @kobebryant 🙌🏾🙌🏾🙌🏾🙌🏾 +03/04/2018,Sports_celeb,@Candace_Parker,Kyrie literally can’t miss 😂💀 +03/03/2018,Sports_celeb,@Candace_Parker,March is here.... my favorite time of the year. Only right to post this picture with it being conference tournament… https://t.co/smvXtBuhdp +03/02/2018,Sports_celeb,@Candace_Parker,Andddddd I had a blast! Thanks @NBAonTNT #Blast #DreamAReality #PinchMe #CaseyAndIsaiahAreGreatTeammates… https://t.co/aogThHWo1r +03/02/2018,Sports_celeb,@Candace_Parker,The BANK IS OPEN!!!!!! #LadyVolsAdvance +03/01/2018,Sports_celeb,@Candace_Parker,Catch me on @NBAonTNT tonight! https://t.co/G0lQO9MNCw +02/26/2018,Sports_celeb,@Candace_Parker,Found this on the counter. Sometimes you get reminders & motivation of your true PURPOSE! While I know art is proba… https://t.co/W9t3hWW4et +02/22/2018,Sports_celeb,@Candace_Parker,#ThreeStripeLife #AdidasFam @adidas https://t.co/fQegk8eSY6 +02/21/2018,Sports_celeb,@Candace_Parker,Ever wondered who my all-time favorite athlete is? Find out here #ad #greatnessisearned @sixstarpro https://t.co/jC308f2NuP +02/20/2018,Sports_celeb,@Candace_Parker,This UCLA/Oregon game 🙌🏾🙌🏾🙌🏾🙌🏾 man.... great game. +02/19/2018,Sports_celeb,@Candace_Parker,RT @jemelehill: Draymond is all of us 😂😂😂😂😂 https://t.co/ClWCmY4tfh +07/02/2018,Sports_celeb,@criscyborg,RT @CrisCyborgGym: Hello Twitter! #CyborgNation #CyborgFitness +07/02/2018,Sports_celeb,@criscyborg,News coming soon! Follow @criscyborggym https://t.co/Gs4C3c40KN +07/02/2018,Sports_celeb,@criscyborg,#CyborgNation #Blissfits #momentofbliss https://t.co/wSICKI57fq +07/02/2018,Sports_celeb,@criscyborg,Women’s boxing on @trboxing and @espn + is gaining speed! Congrats @MikaelaMayer1 on a great win https://t.co/ti4nPBgx1g +07/02/2018,Sports_celeb,@criscyborg,Welcome to LA @KingJames let me know if you need any security @Lakers @MagicJohnson 😂 🏀 +07/01/2018,Sports_celeb,@criscyborg,RT @RealFunnyMMA: I’m absolutely excited over the fact that I might get to see @criscyborg in Las Vegas next week! All the readers know how… +07/01/2018,Sports_celeb,@criscyborg,RT @rivolis: August 4 come meet the GOAT Cris Cyborg @rivolis. A VERY RARE appearance from the champ with the belt call 732-202-8927 @crisc… +07/01/2018,Sports_celeb,@criscyborg,RT @trboxing: Round of the year? #SaucedoZappavigna https://t.co/bs4CRZ9xOy +07/01/2018,Sports_celeb,@criscyborg,Thank you @RMW0204 🙏❤️ https://t.co/ttbmFSZ0ol +07/01/2018,Sports_celeb,@criscyborg,RT @wouldn_t: #loveyourgearz#cyborg https://t.co/oqeub72Fsb +07/01/2018,Sports_celeb,@criscyborg,RT @JoanTrimble: @criscyborg Oss! 🙏🏻 https://t.co/vOsUfcSQQ7 +07/01/2018,Sports_celeb,@criscyborg,RT @MyMMANews: Did you see @criscyborg 's interview with @jimrome ? Watch the #UFC champ talk about #RondaRousey here: https://t.co/14Adrp… +06/30/2018,Sports_celeb,@criscyborg,RT @CaptainnMarvell: I need to go https://t.co/XXmxMRvErl +06/30/2018,Sports_celeb,@criscyborg,I hope all the athletes competing in Seattle for the @SpecialOlympics have an amazing time competing! +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: @JohnMcCarthyMMA You can follow me so I can DM you? +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: Women empowering one another is what @girls_pinkbelt is all about! Only 8 spaces remain for my women’s Only retreat July 14… +06/30/2018,Sports_celeb,@criscyborg,"RT @CobrinhaCharles: Saturday class with the champion @criscyborg +• +• +• +• +Treino de sábado com a presença da campeã @criscyborg @ Cobrinha…" +06/30/2018,Sports_celeb,@criscyborg,Heeeeeey! https://t.co/NfHHpHgtxq +06/30/2018,Sports_celeb,@criscyborg,"Amazing Saturday with Alliance Family. +@gabbyjustino loved her first class with Professor @cobrinhacharles +Thank… https://t.co/YYFvTzyBoS" +06/30/2018,Sports_celeb,@criscyborg,@4Foxtrot @Coldsteelknives Thank you for your service. +06/30/2018,Sports_celeb,@criscyborg,@William23569623 @DancingABC @PaigeVanzantUFC @dancingbrasil +06/30/2018,Sports_celeb,@criscyborg,"nós estamos prontos @recordtvoficial @xuxameneghel @gabijiu kkkkk @dancingbrasil + +https://t.co/gxbRuaZ8oc" +06/30/2018,Sports_celeb,@criscyborg,@GeibSage Take a vacation down south! +06/30/2018,Sports_celeb,@criscyborg,RT @criscyborg: Ladies only! Train the entire day with me in beautiful Costa Mesa California with @girls_pinkbelt and @UFCGymCostaMesa call… +06/30/2018,Sports_celeb,@criscyborg,Who’s watching #LFA44 on @AXSTVFights @axs right now? @patmiletich calling the action! +06/30/2018,Sports_celeb,@criscyborg,"RT @trboxing: WEIGHTS from Oklahoma City: @MikaelaMayer1 131.2 lbs. vs. Sheena Kaine 130.8 lbs. + +See it tomorrow on @espn+! https://t.co/TG…" +06/30/2018,Sports_celeb,@criscyborg,This looks like fun! https://t.co/VMmZ7Cjf6U +06/30/2018,Sports_celeb,@criscyborg,#Cyborgnation let @DancingABC know we want @PaigeVanzantUFC back! https://t.co/fg2lZKwOwu +06/30/2018,Sports_celeb,@criscyborg,Boxing @GGGBoxing @Canelo ticket prices https://t.co/VsexpChXbK +06/30/2018,Sports_celeb,@criscyborg,My favorite part about making dinner is deciding which @Coldsteelknives to use! https://t.co/B9W3ZepjaT +06/30/2018,Sports_celeb,@criscyborg,RT @EpicTideWetsuit: We are stoked. Take a peek! #ericisamodel #epiceric #meetericatepictide #singlesurfer #singlesurferdude #hydration #su… +06/29/2018,Sports_celeb,@criscyborg,"RT @TerezOwens: Cris Cyborg: I Never Fought Ronda Rousey Because She Was Afraid Of Me + https://t.co/fH0USyFSUT" +06/29/2018,Sports_celeb,@criscyborg,RT @UPROXXSports: Cris Cyborg claims she always knew Ronda Rousey was too scared to fight her #WWE #UFC https://t.co/QtXvy0k4Hg https://t.c… +06/29/2018,Sports_celeb,@criscyborg,@JohnMcCarthyMMA You can follow me so I can DM you? +06/28/2018,Sports_celeb,@criscyborg,RT @Everlast_: Happy birthday @ShakurStevenson! https://t.co/2NuLubJTU8 +06/28/2018,Sports_celeb,@criscyborg,"@PatRezzardi @CatrinaGuruarez @sherdogdotcom @jimrome I did two fights 140 + +https://t.co/JVMzLT4eOh" +06/28/2018,Sports_celeb,@criscyborg,RT @Jrayino: @criscyborg @jimrome @CBSSportsRadio @CBSSportsNet Great interview! Happy to see people see the real you and you gain new fans… +06/28/2018,Sports_celeb,@criscyborg,@NARDDAWG_JG @sherdogdotcom @jimrome @AlexaBliss_WWE #Blissfits +06/28/2018,Sports_celeb,@criscyborg,"RT @CarBombBoom13: “I don't want somebody else to be in this position, you know? + +You have a lot more years to live after professional spor…" +06/28/2018,Sports_celeb,@criscyborg,RT @sherdogdotcom: Cris Cyborg: I never fought Ronda Rousey because she was afraid of me https://t.co/dBsrwdh2UH via @jimrome https://t.co/… +06/28/2018,Sports_celeb,@criscyborg,"RT @MyMMANews: #UFC featherweight champ @criscyborg tells @jimrome that #RondaRousey was afraid of her. #CrisCyborg #JimRome +https://t.co/…" +06/28/2018,Sports_celeb,@criscyborg,"RT @RadiospazC: 3-5pm pst Another great day in the jungle! Former Bill Eric Wood in studio, then NHLer Daniel Carcillo, UFC Champ Cris Cybo…" +06/28/2018,Sports_celeb,@criscyborg,"RT @jimrome: Today’s daily podcast features @EWood70, @CarBombBoom13, and @criscyborg. Subscribe: https://t.co/rO6G6PmUTt" +06/28/2018,Sports_celeb,@criscyborg,RT @4Foxtrot: @criscyborg Im now following you after seeing the Jim Rome interview. You did great. Really impressed and inspired. +06/28/2018,Sports_celeb,@criscyborg,RT @prairiedog18: @criscyborg Enjoying your interview with @jimrome +06/28/2018,Sports_celeb,@criscyborg,RT @GM_Greatest: Great interview. Great person. Can’t wait to see @criscyborg fight. New fan here. https://t.co/jx3ttont1z +06/28/2018,Sports_celeb,@criscyborg,"RT @GCooks: @jimrome what a great interview w/ @criscyborg Even better watching on tv. What and incredibly engaging, charming, competitive…" +06/28/2018,Sports_celeb,@criscyborg,"RT @luvmy2girls4evr: @jimrome @criscyborg @CBSSportsRadio @CBSSportsNet Jim, which ""female"" athlete was more intimidating, Cyborg or Chyna?…" +06/28/2018,Sports_celeb,@criscyborg,"RT @Daniel_Wheatley: @jimrome I was not previously a fan of @criscyborg. But, after listening to your conversation w/ her, looking forward…" +06/28/2018,Sports_celeb,@criscyborg,RT @og_tisal: @criscyborg great interview on Rome! Looks forward to the next fight. +06/28/2018,Sports_celeb,@criscyborg,RT @METLOVER73: @jimrome @criscyborg @CBSSportsRadio @CBSSportsNet Not a hardcore UFC fan. Always heard nothing but negatives of @criscybor… +06/28/2018,Sports_celeb,@criscyborg,RT @Jimonealwoodart: Saturday Aug. 4th @criscyborg will be appearing at @rivolis and so will my statue of her. Can't wait to meet her and h… +06/28/2018,Sports_celeb,@criscyborg,It was a pleasure going In The Jungle today with @jimrome go listen @CBSSportsRadio or watch only on @CBSSportsNet… https://t.co/tPPDp7lia9 +06/28/2018,Sports_celeb,@criscyborg,RT @jimrome: .@criscyborg in studio right now on @CBSSportsRadio and @CBSSportsNet https://t.co/gwDyE4x76X +06/28/2018,Sports_celeb,@criscyborg,Live! Watch now @CBSSportsNet #CyborgNation @jimrome @CBSSportsRadio https://t.co/2UQgv6GS9y +06/28/2018,Sports_celeb,@criscyborg,Going live with @jimrome in the jungle next with @CBSSportsRadio don’t miss me on @CBSSportsNet starting now! +06/28/2018,Sports_celeb,@criscyborg,RT @CelebVM: Get an awesome personal video message from Cris Cyborg at https://t.co/TFJCK4GuWN #CelebVM @criscyborg #GiftIdea @criscyborg… +06/28/2018,Sports_celeb,@criscyborg,#CyborgNation join me inside The Jungle with @jimrome today 11:05 west coast time! @CBSSportsNet @CBSSportsRadio so… https://t.co/B49geSJ2gV +06/28/2018,Sports_celeb,@criscyborg,RT @MMAPARA: Nação Cyborg aposta em talentos locais para lotar ginásio em Campo Largo (PR) para segunda edição do evento https://t.co/kV3EM… +06/28/2018,Sports_celeb,@criscyborg,RT @rivolis: Meet the champ August 4 @rivolis @criscyborg #goat #criscyborg #ufc227 https://t.co/gtJJGsOjjV +06/27/2018,Sports_celeb,@criscyborg,"RT @gokhantherebel: 10 days left. I will plant the Turkish Flag in the Octagon. Turkish Tyson is back. 🇹🇷🇹🇷🇹🇷🇹🇷 + +10 gün kaldı. Türk Bayrağı…" +06/27/2018,Sports_celeb,@criscyborg,Don’t disrespect @BeckyLynchWWE by calling her Action Figure a Barbie Doll! https://t.co/2Dfsuutlrn +06/27/2018,Sports_celeb,@criscyborg,@LowClassGlamour @girls_pinkbelt @UFCGymCostaMesa Call 714-894-2399 spots are limited and only 8 spaces remaining t… https://t.co/yoku4OP23T +06/27/2018,Sports_celeb,@criscyborg,"RT @ZantzKiri: @criscyborg @AlexaBliss_WWE We have your Back, @AlexaBliss_WWE The Cyborg Nation is here! #CyborgNation" +06/27/2018,Sports_celeb,@criscyborg,Women empowering one another is what @girls_pinkbelt is all about! Only 8 spaces remain for my women’s Only retreat… https://t.co/cu8HePLCsu +06/27/2018,Sports_celeb,@criscyborg,*WARNING* if you are a woman and wanting to spend the day training with me and my friends during my July 14th… https://t.co/YOtVvCG8er +06/27/2018,Sports_celeb,@criscyborg,Congrats to @Claressashields who’s @ShowtimeBoxing fight last weekend against Gabriels became the most watched figh… https://t.co/6SU0Ctabn3 +06/26/2018,Sports_celeb,@criscyborg,Check out @criscyborg rocking the #TeamEverlast in camp with boxing coach Jason Parillo @Everlast_ +06/26/2018,Sports_celeb,@criscyborg,I can’t wait to meet all of #CyborgNation coming to @ufc #internationalfightweek #4thofJuly weekend! @ufc_brasil https://t.co/Cl0p7kzZ78 +06/26/2018,Sports_celeb,@criscyborg,https://t.co/LctpQUXs2V +06/26/2018,Sports_celeb,@criscyborg,@DrShalomim @AlexaBliss_WWE #Blissful thinking +06/26/2018,Sports_celeb,@criscyborg,"RT @arielhelwani: The Mousasi-MacDonald card on Sept. 29, which features Rampage-Silva 4, will air exclusively on DAZN in the US. They are…" +06/26/2018,Sports_celeb,@criscyborg,@EddieHearn @CallumTheOne @ABeterbiev The American takeover continues! +06/26/2018,Sports_celeb,@criscyborg,RT @criscyborg: You can’t go to war alone @AlexaBliss_WWE! You need #CyborgNation to have your back https://t.co/h0yYWvtrzG +06/26/2018,Sports_celeb,@criscyborg,"RT @gabijiu: Wrestling and mma ✅ +Learning is priceless! +Tks @titoortiz for teaching us. +@criscyborg khali.benjamin @GrapplersRus @ricardod…" +06/26/2018,Sports_celeb,@criscyborg,@MsCharlotteWWE @espnW Só awesome! Congrats +06/26/2018,Sports_celeb,@criscyborg,You can’t go to war alone @AlexaBliss_WWE! You need #CyborgNation to have your back https://t.co/h0yYWvtrzG +06/26/2018,Sports_celeb,@criscyborg,RT @MarkTaffetMedia: Kudos to young ⁦@Claressashields⁩ ! #FlintFutureFund #FlintWaterCrisis https://t.co/KGOzK0pyZh +06/26/2018,Sports_celeb,@criscyborg,"RT @BronzeBomber: Its Simple👑 +Champions are BORN, +Not MADE‼️ +KING, 2yrs Old +#BombZquad https://t.co/809AYU9Vkt" +06/26/2018,Sports_celeb,@criscyborg,@StephMcMahon @MsCharlotteWWE @WWE @espn Heeeey!!! 👊 +06/26/2018,Sports_celeb,@criscyborg,RT @StephMcMahon: Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue. Charl… +06/26/2018,Sports_celeb,@criscyborg,RT @criscyborg: #MomentOfBliss https://t.co/k2FM1StGoh +06/26/2018,Sports_celeb,@criscyborg,@TaraLaRosa @XANTHOS_77 @JackPosobiec Yes important follow rules! +06/26/2018,Sports_celeb,@criscyborg,"RT @TaraLaRosa: @XANTHOS_77 @JackPosobiec I consider @criscyborg a friend, and she is here LEGALLY! Cris is an amazing example of foreign t…" +06/26/2018,Sports_celeb,@criscyborg,"RT @MiaStJohnBoxer: This is the #ART piece that inspired the T-Shirt 🙌🏽The copies sold for 2k, the original was never for sale & remains wi…" +06/25/2018,Sports_celeb,@criscyborg,RT @Michelletraver6: @criscyborg #cyborgnation plus #Blissfits =a match made in heaven. +06/25/2018,Sports_celeb,@criscyborg,RT @rivolis: We can't wait #ufc227 #cyborgnation #cyborggoat #bringthestrap https://t.co/GI7e1fhKeg +06/25/2018,Sports_celeb,@criscyborg,@AlexaBliss_WWE Heeeeey! +06/24/2018,Sports_celeb,@criscyborg,RT @criscyborg: Forget @Barbie! I’m giving @BeckyLynchWWE dolls for Xmas presents 🎁 this year! https://t.co/LrL3u6mrAT +06/24/2018,Sports_celeb,@criscyborg,#Flintstone https://t.co/pMZtJlMve3 +06/24/2018,Sports_celeb,@criscyborg,I just ordered healthy meal deliveries with @dacikfit_foods in Orange County by calling 714-910-1531 +06/24/2018,Sports_celeb,@criscyborg,RT @MarkTaffetMedia: Big heart + Lots Courage + 2 Champions = GREAT FIGHT! Claressa Shields wins Middleweight Title! @Claressashields @Sho… +06/24/2018,Sports_celeb,@criscyborg,International Shipping available on all @criscyborg apparel purchased below! https://t.co/MiCj0MSCN9 +06/24/2018,Sports_celeb,@criscyborg,Get this exclusive shirt only from my online shop! https://t.co/UpAXjQDjsM +06/24/2018,Sports_celeb,@criscyborg,I loved the @boltwrestling camp! I hope he learned as many tricks as I did! https://t.co/iDwd9O25l9 +06/24/2018,Sports_celeb,@criscyborg,@LandoPan I love #CyborgNation +06/24/2018,Sports_celeb,@criscyborg,@CharmCity25 Hope you’re on #CyborgNation too! +06/24/2018,Sports_celeb,@criscyborg,RT @wolfsburgfl: @criscyborg @AlexaBliss_WWE Even if it's just Alexa spending an afternoon working out with Cyborg... that's gold. And I w… +06/24/2018,Sports_celeb,@criscyborg,"RT @NickBaldwinMMA: Great to see @EdKappMMA (finally) on Twitter. One of the best PR guys in the biz. Give him a follow, will ya?" +06/24/2018,Sports_celeb,@criscyborg,@AboutHerOFCL 👏👏👏👊 +06/24/2018,Sports_celeb,@criscyborg,RT @NerdyMisfit138: @criscyborg let's make it happen! +06/24/2018,Sports_celeb,@criscyborg,#CyborgNation and the #Blissfits?! https://t.co/aiqhYjEFJV +06/24/2018,Sports_celeb,@criscyborg,RT @Mhussein9911: @criscyborg Good to see the Champ Making some New Friends +06/24/2018,Sports_celeb,@criscyborg,I heard @MichaelRapaport practiced his @ufc and saved an entire ✈️ plane!🥋 Cobra Kai +06/24/2018,Sports_celeb,@criscyborg,I love the @ONEChampionship fights in the ring! @YODCHATRI @victoronefc very exciting https://t.co/jLRqGqgbMO +06/23/2018,Sports_celeb,@criscyborg,"@juliachoward @girls_pinkbelt This day is about more than fitness and fighting, it’s about goal setting, friendship… https://t.co/qp5rmBnmDb" +06/23/2018,Sports_celeb,@criscyborg,#MomentOfBliss https://t.co/k2FM1StGoh +06/23/2018,Sports_celeb,@criscyborg,@gokhantherebel @ufc @UFCEurope Alhamdullah +06/23/2018,Sports_celeb,@criscyborg,RT @criscyborg: #InternationalFightWeek @ufc is coming to Las Vegas 4th of July weekend! I can’t wait to meet all my fans coming for the ev… +06/23/2018,Sports_celeb,@criscyborg,"O sucesso é apenas uma consequência da sua determinação. + +#wrestling #cyborgnation #criscyborg + +Success is only a… https://t.co/ZFcN33Ua43" +06/23/2018,Sports_celeb,@criscyborg,@missjessyjess @arielhelwani @jessicaevileye You will come back better! +06/23/2018,Sports_celeb,@criscyborg,RT @BeckyLynchWWE: Ha! Deadly! https://t.co/S7gSni52Hx +06/23/2018,Sports_celeb,@criscyborg,@MMAjunkieJohn @ufc Old school! 🤙 +06/23/2018,Sports_celeb,@criscyborg,Forget @Barbie! I’m giving @BeckyLynchWWE dolls for Xmas presents 🎁 this year! https://t.co/LrL3u6mrAT +06/23/2018,Sports_celeb,@criscyborg,@MarkTaffetMedia @Claressashields @ShowtimeBoxing Great job guys! +06/23/2018,Sports_celeb,@criscyborg,#InternationalFightWeek @ufc is coming to Las Vegas 4th of July weekend! I can’t wait to meet all my fans coming for the events! +06/23/2018,Sports_celeb,@criscyborg,#CyborgNation Aug 4th I will be in New Jersey! Follow me on IG @criscyborg to find out where tomorrow! +06/23/2018,Sports_celeb,@criscyborg,#CyborgNation don’t forget tonight 130am pst @ProteinHouse1 athlete @missjessyjess fight @ufc #UFCSingapore on… https://t.co/BBlnSrUmup +06/23/2018,Sports_celeb,@criscyborg,@RMout29 👊 +06/23/2018,Sports_celeb,@criscyborg,Ladies only! Train the entire day with me in beautiful Costa Mesa California with @girls_pinkbelt and… https://t.co/JnRlJc0DzV +06/23/2018,Sports_celeb,@criscyborg,@rosieperezbklyn @ShowtimeBoxing Get her @Claressashields +06/23/2018,Sports_celeb,@criscyborg,Get the #CyborgNation sports bra only from @PhuketTopTeam https://t.co/xbCgjyUYuk +06/23/2018,Sports_celeb,@criscyborg,Amazing fight @Claressashields! @ShowtimeBoxing has a star +06/23/2018,Sports_celeb,@criscyborg,RT @AlexaBliss_WWE: @criscyborg Thanks ! I’ll let you know #ChampsHelpingChamps +06/23/2018,Sports_celeb,@criscyborg,"RT @ianbutlermma: Amazing sparring today with these legends. +📸 antmurataya +🦍🦍🦍🦍 +@bjpenndotcom +@criscyborg +@gulomoore +parilloboxing +@p…" +06/22/2018,Sports_celeb,@criscyborg,@LowKick_MMA 🤼‍♂️ @TripleH @TheCoachrules +06/22/2018,Sports_celeb,@criscyborg,RT @mmamania: .@CrisCyborg conspiring with #WWE star @AlexaBliss_WWE to help take down @RondaRousey https://t.co/3X6TBv7ErG https://t.co/M0… +06/21/2018,Sports_celeb,@criscyborg,RT @criscyborg: I’m so excited for my July 14th women’s Only @girls_pinkbelt camp! Don’t wait to reserve your space call 714-894-2399 today… +06/21/2018,Sports_celeb,@criscyborg,RT @criscyborg: Let me know # @AlexaBliss_WWE if you need help training Judo takedown and armbar defense! +06/21/2018,Sports_celeb,@criscyborg,"RT @TerezOwens: UFC Champion @CrisCyborg Offers To Train Ronda Rouseys Next Opponent +https://t.co/x49ERhZHJP" +06/21/2018,Sports_celeb,@criscyborg,RT @DynamiteTaylor1: To be the best you have to train with the best! Thanks for the wrestling today Kenny its always a pleasure to train wi… +06/21/2018,Sports_celeb,@criscyborg,"A juventude não é uma época da vida, +é um estado de espírito. +**** +****** +******* + +pratiquei todos os esportes poss… https://t.co/f97cTdNJ2B" +06/21/2018,Sports_celeb,@criscyborg,@marc_raimondi @SugarRaySefo The real game isn’t who punches harder. The fun part is learning who can take a punch… https://t.co/znlDAOx4g3 +06/20/2018,Sports_celeb,@criscyborg,@_ajawilson22 👊 @LVAces +06/20/2018,Sports_celeb,@criscyborg,#CyborgNation Who is ready for #UFC227 @rivolis?! +06/20/2018,Sports_celeb,@criscyborg,"RT @GeorgeForeman: If I could stand on the highest peek and scream 3 words ( the world could hear ) before I pass, I’d say “I Love You.” So…" +06/20/2018,Sports_celeb,@criscyborg,@BeckyLynchWWE @SpecialOlympics 💜 +06/20/2018,Sports_celeb,@criscyborg,"RT @BeckyLynchWWE: As a current California resider, I want to wish the @SpecialOlympics athletes out that way the best of luck in the up co…" +06/20/2018,Sports_celeb,@criscyborg,Let me know # @AlexaBliss_WWE if you need help training Judo takedown and armbar defense! +06/20/2018,Sports_celeb,@criscyborg,I’m so excited for my July 14th women’s Only @girls_pinkbelt camp! Don’t wait to reserve your space call 714-894-23… https://t.co/TMRPNJPxQF +06/17/2018,Sports_celeb,@criscyborg,RT @ErrolSpenceJr: Sold my own merchandise at the venue 🙃🙃 +06/17/2018,Sports_celeb,@criscyborg,"RT @LEllerbe: Very nice promo of @Claressashields @SHOsports, on point💯" +06/16/2018,Sports_celeb,@criscyborg,@JRsBBQ @rootsoffight I love that shirt! +06/16/2018,Sports_celeb,@criscyborg,@RyannVonDoom @TaraLaRosa @kellykobold 5 minutos +06/16/2018,Sports_celeb,@criscyborg,@TaraLaRosa @kellykobold We have been working on one. Hopefully soon +06/16/2018,Sports_celeb,@criscyborg,RT @criscyborg: July 28th my Combat Sports event Nacao Cyborg returns to Colombo Brazil for another exciting night of promoting professiona… +06/16/2018,Sports_celeb,@criscyborg,RT @criscyborg: 14 signups yesterday for my July 14th women’s Only Pinkbelt fitness camp. This one will reach capacity! Don’t wait to reser… +06/16/2018,Sports_celeb,@criscyborg,I think first 5 min wmma fight in North America was @TaraLaRosa V @kellykobold https://t.co/9hZkozRHDv +06/16/2018,Sports_celeb,@criscyborg,RT @fightnet: Relive UFC 222: @criscyborg vs. Kunitskaya at 3 p.m. ET on @fightnet! https://t.co/OsVfYxKQkX +06/16/2018,Sports_celeb,@criscyborg,@hannibalburess @InvictaFights Hahaha this is awesome! +06/15/2018,Sports_celeb,@criscyborg,RT @SugarRayLeonard: .@rootsoffight have launched their #FathersDaySale! Save 17% across the entire store & free mainland US shipping on or… +06/15/2018,Sports_celeb,@criscyborg,RT @criscyborg: Wishing everyone celebrating EID MUBARAK! +06/15/2018,Sports_celeb,@criscyborg,July 28th my combat sports promotion Nacao Cyborg returns for a night of promoting Pro Fights live from Colombo Brazil +06/15/2018,Sports_celeb,@criscyborg,@LVAces @DallasWings I need to see a game next time I’m in Vegas! +06/15/2018,Sports_celeb,@criscyborg,RT @EpicTideWetsuit: Don't forget that as we grow we bring the community up with us! https://t.co/T27b5qBUgG +06/15/2018,Sports_celeb,@criscyborg,RT @MMAPRO_LEAGUE: Are YOU ready for the new era of MMA? At the NEW @HardRockHCAC https://t.co/k6N69QGipw +06/15/2018,Sports_celeb,@criscyborg,RT @ltsport1: Press conference today. https://t.co/NCWzOE7Mee +06/15/2018,Sports_celeb,@criscyborg,Wishing everyone celebrating EID MUBARAK! +06/15/2018,Sports_celeb,@criscyborg,RT @criscyborg: I’m getting excited to meet all my fans at @ufc international fight week in Vegas next month! #CyborgNation +06/14/2018,Sports_celeb,@criscyborg,I’m getting excited to meet all my fans at @ufc international fight week in Vegas next month! #CyborgNation +06/13/2018,Sports_celeb,@criscyborg,"RT @WNBA: Vegas has itself an ACE in @_ajawilson22! #WatchMeWork + +Highlights from her historic effort in the @LVAces' OT win over Indiana:…" +06/13/2018,Sports_celeb,@criscyborg,RT @KatieTaylor: Excited to be back in the ring. July 28th at @TheO2. #AllTheBelts #WhyteParker https://t.co/O1B2gP3KLd +06/13/2018,Sports_celeb,@criscyborg,RT @marciodovalle: Um prazer trabalhar novamente neste evento. Vem aí o Nação Cyborg 2 https://t.co/QBtpweHbW9 +06/13/2018,Sports_celeb,@criscyborg,Feliz Aniversário @HannahStormESPN thank you for inspiring so many women to reach for more! https://t.co/LaL2CxA8ig +06/13/2018,Sports_celeb,@criscyborg,July 28th my Combat Sports event Nacao Cyborg returns to Colombo Brazil for another exciting night of promoting pro… https://t.co/TtavN3B9W3 +06/13/2018,Sports_celeb,@criscyborg,14 signups yesterday for my July 14th women’s Only Pinkbelt fitness camp. This one will reach capacity! Don’t wait… https://t.co/LOBQF405BU +06/13/2018,Sports_celeb,@criscyborg,RT @criscyborg: Cyborg joining forces with @UFCGYM to bring her #WomensOnly @girls_pinkbelt retreat to Costa Mesa CA July 14th @UFCGymCosta… +06/12/2018,Sports_celeb,@criscyborg,Amazing watching @EddieHearn work! https://t.co/PFVrz6qlNA +06/12/2018,Sports_celeb,@criscyborg,Congratulations @badassboz on the new role with Endeavor! I’m excited to get a chance to work together. +06/12/2018,Sports_celeb,@criscyborg,@sueluvsmma @junkpuppet69 @JustSinda #CyborgNation! Thanks for the support +06/12/2018,Sports_celeb,@criscyborg,@WNBA @Niacoff @LVAces Happy bday! +06/12/2018,Sports_celeb,@criscyborg,@dc_mma @TeamCoco 🤙 +06/12/2018,Sports_celeb,@criscyborg,"RT @AlBernstein: Not unreasonable to think that 2018 will still have #CharloHurd, #JoshuaWilder and #SantaCruzRussell & #CaneloGolovkin plu…" +06/12/2018,Sports_celeb,@criscyborg,"RT @latimespugmire: The @anthonyfjoshua @BronzeBomber fight is not done, but it will be interesting to see (and will say a lot) if Joshua t…" +06/12/2018,Sports_celeb,@criscyborg,Ladies come train with me @UFCGYM July 14th in Costa Mesa @UFCGymCostaMesa #womenonly https://t.co/MrbXvtmeya +06/12/2018,Sports_celeb,@criscyborg,RT @DandoisCindy: @pops_grm @WMMARankings @ufc @criscyborg @UFC_TUF I think I should be in the TUF -house. +06/11/2018,Sports_celeb,@criscyborg,"RT @criscyborg: vote @criscyborg as @FightersOnly Female Fighter Of The Year below! + +https://t.co/9SmYaRRCtF https://t.co/7VkpuEefJZ" +06/11/2018,Sports_celeb,@criscyborg,Cyborg joining forces with @UFCGYM to bring her #WomensOnly @girls_pinkbelt retreat to Costa Mesa CA July 14th… https://t.co/RuVrH8I7AZ +06/11/2018,Sports_celeb,@criscyborg,Cris Cyborg UFC visits Rex Fight while in Brazil! https://t.co/vFSsVw1Y5X +06/11/2018,Sports_celeb,@criscyborg,"vote @criscyborg as @FightersOnly Female Fighter Of The Year below! + +https://t.co/9SmYaRRCtF https://t.co/7VkpuEefJZ" +06/10/2018,Sports_celeb,@criscyborg,"Nunca é tarde demais para ser aquilo que sempre desejou ser. #vidaDeMae +=========================== +It's never too… https://t.co/hXULK5lKRi" +06/10/2018,Sports_celeb,@criscyborg,"🙌 we can do all possible plans for yourself or for others, But the final word who gives is God !!!! Have a blessed… https://t.co/Od16jNFFGG" +06/10/2018,Sports_celeb,@criscyborg,Dana is right! I’m no matchmaker Im not an employee but 10-99 that’s why Ronda never fought me GSP fights for a MW… https://t.co/q7aCfIaCiP +06/10/2018,Sports_celeb,@criscyborg,RT @PhilMcGeoghan: When you get your chin checked by the champ it’s a hell of a night! @criscyborg https://t.co/0KCDGGXN5X +06/10/2018,Sports_celeb,@criscyborg,RT @criscyborg: Both these girls beat @RondaRousey. I want to know who wins against each other and can fight the winner of @Amanda_Leoa V @… +06/10/2018,Sports_celeb,@criscyborg,@Amanda_Leoa @HollyHolm Im glad the leg is better. I been wondering why I wasn’t fighting #ufc226 https://t.co/mIVo8NKhtw +06/10/2018,Sports_celeb,@criscyborg,Both these girls beat @RondaRousey. I want to know who wins against each other and can fight the winner of… https://t.co/zOIvLqlKfo +06/10/2018,Sports_celeb,@criscyborg,@trboxing @ShakurStevenson Nice! +06/10/2018,Sports_celeb,@criscyborg,Come watch #ufc225 with me in #HB #TheOC https://t.co/hLdV4ybJ2H +06/10/2018,Sports_celeb,@criscyborg,@arielhelwani Morning! 🙌 +06/09/2018,Sports_celeb,@criscyborg,@LEllerbe Thanks for the support! +06/09/2018,Sports_celeb,@criscyborg,Glad to see @Tyson_Fury get the win! +06/09/2018,Sports_celeb,@criscyborg,"RT @NYFights: Heather Hardy Leads Battle Vs Stigma In Mental Health Matters, Post Bourdain Suicide - NY FIGHTS https://t.co/rpuRD0Djb8" +06/09/2018,Sports_celeb,@criscyborg,You do you have in the main event? #ufc225 +06/09/2018,Sports_celeb,@criscyborg,Who wins tonight? @MGMGrand @espn #CrawfordHorn +06/09/2018,Sports_celeb,@criscyborg,"RT @Everlast_: New weight class. Same fighter. +@budcrawford402 +#crawfordhorn #TeamEverlast https://t.co/9U3c4OfGHn" +06/09/2018,Sports_celeb,@criscyborg,RT @criscyborg: #HuntingtonBeach if you’re watching #ufc225 tomorrow come to the #CyborgNation viewing at #HurricanesBarAndGrill #hb #oc @u… +06/09/2018,Sports_celeb,@criscyborg,RT @criscyborg: My next #WomensOnly PinkBeltFitness camp will be all day July 14th in Costa Mesa CA at @bisping @CubSwanson @UFCGYM @UFCGy… +06/09/2018,Sports_celeb,@criscyborg,RT @AirAsia: Congrats @tonyfernandes! 🎉 We’re thrilled that ‘Flying High: My Story from AirAsia to QPR’ won 1st prize in the non-fiction ca… +07/01/2018,Sports_celeb,@Amanda_Leoa,@LanasEggWhites @ufc @KingMoFH Awesome I will 👊🏼 +07/01/2018,Sports_celeb,@Amanda_Leoa,@RiosSolberg @ufc 😚😚😚😚😚😚😚😚 graciasssss +06/30/2018,Sports_celeb,@Amanda_Leoa,@Dynamite4Life @ufc Thank u 🙌🏼 +06/30/2018,Sports_celeb,@Amanda_Leoa,#ufc25years @ufc https://t.co/hnsaQJX75B +06/29/2018,Sports_celeb,@Amanda_Leoa,Meu são joao acabou 😭 mas ano que vem estarei de volta 🙏🏼 e viverei cada momento intensamente.🙌🏼 My são Joao is ove… https://t.co/g0JLeGPhcH +06/27/2018,Sports_celeb,@Amanda_Leoa,And u is my ❤️ https://t.co/0MS2vUyyzg +06/25/2018,Sports_celeb,@Amanda_Leoa,Awesome time with my friends 🤣 nunca esquecerei esse #SaoJoao amigos 😘 #monteiro #paraiba https://t.co/YPKfDZ972Q +06/24/2018,Sports_celeb,@Amanda_Leoa,Só lama #saojoao #monteiro #paraiba Awesome night with my friends. https://t.co/KUYoIuOyeW +06/24/2018,Sports_celeb,@Amanda_Leoa,Minha prefeita @annalorenanobrega #monteiro #Paraíba melhor #saojoao do mundo.🇧🇷 https://t.co/IVFV6eL810 +06/23/2018,Sports_celeb,@Amanda_Leoa,@SimoneeSimaria 😂😂😂😂 https://t.co/rKj3FLhyMF +06/22/2018,Sports_celeb,@Amanda_Leoa,🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷😘 estamos juntos https://t.co/xP3eAfwhYP +06/22/2018,Sports_celeb,@Amanda_Leoa,Minha vida meu amor 🇧🇷 https://t.co/Cw3OCbgZzW +06/22/2018,Sports_celeb,@Amanda_Leoa,@Phil_Coutinho @neymarjr https://t.co/nKcgm5oFfZ +06/22/2018,Sports_celeb,@Amanda_Leoa,Vamos lá 3 x 0 Brasil 🇧🇷 let’s go primeiro gol do @Phil_Coutinho #leoa #Believe #acreditar #sempre ⚽️ https://t.co/05LORyJvVx +06/20/2018,Sports_celeb,@Amanda_Leoa,🛫 https://t.co/pv0dLgX5k4 +06/19/2018,Sports_celeb,@Amanda_Leoa,@PorterUFCnews @espn Agree 😂😂😂👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 +06/19/2018,Sports_celeb,@Amanda_Leoa,6 weeks out @NinaAnsaroff https://t.co/5ILTDSw0gt +06/19/2018,Sports_celeb,@Amanda_Leoa,6 weeks out @NinaAnsaroff https://t.co/bPmYULEnEF +06/19/2018,Sports_celeb,@Amanda_Leoa,"🎶Let's get away from this place baby! +Let's run away +I'm tired of waiting +May you carry me 🎶 Vamos fugir deste luga… https://t.co/CA3QWG2zQS" +06/18/2018,Sports_celeb,@Amanda_Leoa,@_eulolaa Danadinhos d + 🙄😂😂😂😂 +06/17/2018,Sports_celeb,@Amanda_Leoa,@GentryAdvance Was awesome 👏🏼 thank you!!!! +06/17/2018,Sports_celeb,@Amanda_Leoa,@_eulolaa Simba 😁 +06/17/2018,Sports_celeb,@Amanda_Leoa,🐶🇧🇷 https://t.co/8RoP57ehxZ +06/17/2018,Sports_celeb,@Amanda_Leoa,🐶🇧🇷 https://t.co/lOiVj61ZrV +06/17/2018,Sports_celeb,@Amanda_Leoa,Let’s go 🇧🇷 vamos lá Brasil @AdrianaLima https://t.co/tkk160VA3g +06/17/2018,Sports_celeb,@Amanda_Leoa,#gaypride https://t.co/IAvXDo3xcL +06/15/2018,Sports_celeb,@Amanda_Leoa,🦁👀👴🏻👀 we know #Papa @ConanSilveira https://t.co/Bb6LDzwvN3 +06/15/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff https://t.co/QpvqjEVSvR +06/14/2018,Sports_celeb,@Amanda_Leoa,🦁 https://t.co/413g3dixyx +06/12/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😉 https://t.co/cDhD7ujGD1 +06/10/2018,Sports_celeb,@Amanda_Leoa,Let’s do it @HollyHolm +06/10/2018,Sports_celeb,@Amanda_Leoa,@CoreyA_MMA 😂😂😂😂😂😂😂😂 +06/09/2018,Sports_celeb,@Amanda_Leoa,RT @wolverine6523: #UFC25YEARS https://t.co/22EqkPOmPt +06/09/2018,Sports_celeb,@Amanda_Leoa,Obrigadaaaaa thank you @DRPROTETOR https://t.co/18Kfmg1pFV +06/09/2018,Sports_celeb,@Amanda_Leoa,I found my favorite rag 😂 #kambiz https://t.co/5RJPupJ3Nu +06/09/2018,Sports_celeb,@Amanda_Leoa,A lot of respect for you!!!🙏🏼 Respeito é muito importante!!! @RockyPMMA https://t.co/IJ6c5B6Ifw +06/08/2018,Sports_celeb,@Amanda_Leoa,home Sweet Home 🏡🇺🇸 https://t.co/LmU39V4uqc +06/08/2018,Sports_celeb,@Amanda_Leoa,See u tomorrow 🇺🇸 🙌🏼🙏🏼 +06/01/2018,Sports_celeb,@Amanda_Leoa,https://t.co/B6GKl5uJpF +05/29/2018,Sports_celeb,@Amanda_Leoa,RT @InvictaFights: RT to wish President @shanknapp a very Happy Birthday! 🎂 https://t.co/MJHdBkBMvC +05/29/2018,Sports_celeb,@Amanda_Leoa,😘😂👵🏼 https://t.co/JTpv9cDJPs +05/29/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😂😂😂😂 cute +05/29/2018,Sports_celeb,@Amanda_Leoa,I miss you my love 😘 but this is my blanket? 😡😡😡👇🏼😖 I miss my beautiful blanket also 😖😖😖😡😡😡 @NinaAnsaroff https://t.co/sIWmMVQANd +05/26/2018,Sports_celeb,@Amanda_Leoa,@junior_cigano 😂😂😂😋😋😋 https://t.co/5nWlbe9clo +05/26/2018,Sports_celeb,@Amanda_Leoa,@TeciaTorres Beautiful TT +05/26/2018,Sports_celeb,@Amanda_Leoa,"RT @Jon_Anik: So much respect and appreciation for @Amanda_Leoa, @RockyPMMA, @NinaAnsaroff, + @TeciaTorres and all they represent as fighte…" +05/26/2018,Sports_celeb,@Amanda_Leoa,@Jon_Anik @NinaAnsaroff @RockyPMMA @TeciaTorres 🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼 thank you very much I appreciate +05/26/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️🤦🏻‍♀️🤣🤣🤣🤣 it’s my pet +05/24/2018,Sports_celeb,@Amanda_Leoa,"Mainha, Mamá coco, Eu e Menina 🐶😂 https://t.co/MrTRf9fOfE" +05/21/2018,Sports_celeb,@Amanda_Leoa,Vovó e o Gritinho do @pabllovittar grandma 👵🏼😂😂😂 https://t.co/F06zOlcKbs +05/19/2018,Sports_celeb,@Amanda_Leoa,My sister Neu 🙌🏼 Minha irmã @vanessa.nunes.946954 #loveyou 😘 https://t.co/q0Ns1eZK0H +05/18/2018,Sports_celeb,@Amanda_Leoa,🏹 and 🦁 @NinaAnsaroff https://t.co/3C07A5VBJ6 +05/18/2018,Sports_celeb,@Amanda_Leoa,🙏🏼😘 @TeciaTorres @NinaAnsaroff @RockyPMMA https://t.co/EJZhM8QEpV +05/16/2018,Sports_celeb,@Amanda_Leoa,Grandma 👵🏼 https://t.co/1QIFQ6559j +05/16/2018,Sports_celeb,@Amanda_Leoa,Congrats @PerfectingA 🙌🏼 https://t.co/b6Cq5cqb8s +05/16/2018,Sports_celeb,@Amanda_Leoa,🤭🤭🤭🤭🤭🤭🤭🤭🤭🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 https://t.co/yiT03SFNCK +05/16/2018,Sports_celeb,@Amanda_Leoa,@NinaAnsaroff 😒🤬🤬🤬🤬🤬😂😂😂😂😂😂 +05/16/2018,Sports_celeb,@Amanda_Leoa,Foi ótima nossa conversa @pedrobial é hoje em @conversacombial 🦁 https://t.co/SKICm6QknI +05/14/2018,Sports_celeb,@Amanda_Leoa,"E assim finalizamos mais uma jornada de muito treinamento e dedicação, a torcida positiva dos verdadeiros fãs preva… https://t.co/HpUB0oP2ZV" +05/14/2018,Sports_celeb,@Amanda_Leoa,RT @ufc_brasil: Levante a mão quem acordou nessa segunda se sentindo uma campeã! @Amanda_Leoa https://t.co/gYrJVgmiez +05/14/2018,Sports_celeb,@Amanda_Leoa,@thebigticket205 Thank you my friend 🙏🏼👊🏼🙌🏼 +05/13/2018,Sports_celeb,@Amanda_Leoa,Mission Accomplished 🦁 missão cumprida #ufc224 #AndStill https://t.co/EJAb7MKnqB +05/13/2018,Sports_celeb,@Amanda_Leoa,#ubuntu #andstill Obrigada a todos 🦁 thank you so much everyone 🙏🏼 https://t.co/0eeq5hr9Mp +05/12/2018,Sports_celeb,@Amanda_Leoa,Amanhã 🦁 tomorrow #AndStill https://t.co/RWvgkxSgFq +05/12/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The queen of the jungle has arrived. + +@Amanda_Leoa #UFC224 https://t.co/h31fChcWAb" +05/11/2018,Sports_celeb,@Amanda_Leoa,😂😂😂😂😂😂💩 @NinaAnsaroff https://t.co/j9C1L9sX0k +05/11/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄 @NinaAnsaroff https://t.co/SxAFXWuuQg +05/10/2018,Sports_celeb,@Amanda_Leoa,😉 my girlfriend 😘Minha namoradinha @NinaAnsaroff https://t.co/tsFR1N5kHB +05/10/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄 https://t.co/oMscWwzWZl +05/08/2018,Sports_celeb,@Amanda_Leoa,Nós crescemos juntas como irmãs 🙌🏼 we grew up together like sisters. https://t.co/jPq1FwqRlD +05/07/2018,Sports_celeb,@Amanda_Leoa,The good moments are always waybetter than the bad. Os melhores momentos serão sempre os melhores. Um simples deta… https://t.co/p76i2hmY8n +05/07/2018,Sports_celeb,@Amanda_Leoa,#Ufc224 #riobrasil https://t.co/6BrGcyBBof +05/06/2018,Sports_celeb,@Amanda_Leoa,🙄🙄🙄🙄🙄🙄🤮🤮🤮🤢🤢🤢🤢🤢🤢🤢🤢🤮🤮 https://t.co/j4PmT6IyVD +05/04/2018,Sports_celeb,@Amanda_Leoa,Tonight @InvictaFights 👇🏼 https://t.co/lIkk8rXvxq +05/04/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The champ is ready for anything. + +@Amanda_Leoa #UFC224 https://t.co/VPhliQCiEO" +05/04/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Em 12 de maio, 🇧🇷@Amanda_Leoa defenderá pela terceira vez o cinturão do peso-pena feminino contra 🇺🇸@RockyPMMA na luta pri…" +05/03/2018,Sports_celeb,@Amanda_Leoa,Juntos para mais uma missão 🦁 Together for another mission #andstill #ufc224 https://t.co/0cgZtdP8LI +05/02/2018,Sports_celeb,@Amanda_Leoa,Chip and Dale 😁 https://t.co/GEZP3DAgFh +05/01/2018,Sports_celeb,@Amanda_Leoa,👇🏼🏆 https://t.co/itF7n9P6jt +05/01/2018,Sports_celeb,@Amanda_Leoa,Home 🏡🙌🏼👏🏼👏🏼👏🏼👏🏼 +04/30/2018,Sports_celeb,@Amanda_Leoa,#andstill https://t.co/0H6FQgRqiO +04/30/2018,Sports_celeb,@Amanda_Leoa,🙌🏼 @FCBarcelona 🏆 https://t.co/cR90VAeplo +04/30/2018,Sports_celeb,@Amanda_Leoa,👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 https://t.co/a708Lo53j0 +04/30/2018,Sports_celeb,@Amanda_Leoa,INSIDE VIEW: The celebration of the title at Riazor https://t.co/7l7FgwbdWl +04/29/2018,Sports_celeb,@Amanda_Leoa,@ufc We are less than 2 week for 224 😁✌🏼 +04/29/2018,Sports_celeb,@Amanda_Leoa,"Less than 2 weeks before my fight, when I’m tying together all the ends of this camp. I have to go to New York for a Media Day. 👏🏼👏🏼🙌🏼" +04/28/2018,Sports_celeb,@Amanda_Leoa,💙❤️ https://t.co/vJuZmQqg8Y +04/28/2018,Sports_celeb,@Amanda_Leoa,"@DIRECTVService @NinaAnsaroff @DIRECTV One question.... How come, when it is raining, the reception never works? 😖😖" +04/28/2018,Sports_celeb,@Amanda_Leoa,🤬🤬🤬🤬🤬🤬🤬🤬 @DIRECTV https://t.co/Ra3Td5xvaP +04/28/2018,Sports_celeb,@Amanda_Leoa,🤬🤬🤬🤬🤬🤬🤬🤬 @DIRECTV https://t.co/OtgjNOSc9b +04/28/2018,Sports_celeb,@Amanda_Leoa,😩😩😩😩 https://t.co/MNi8YeIwWx +04/28/2018,Sports_celeb,@Amanda_Leoa,@adrianomkmoraes @evertonVVxtreme Adriano Martins https://t.co/nWc5TMp4EY +04/27/2018,Sports_celeb,@Amanda_Leoa,Here we go https://t.co/eCIj1yxi0W +04/25/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Em 12 de maio, @Amanda_Leoa retorna a cidade do Rio de Janeiro, palco de sua estreia no octógono. Mas agora a história será…" +04/25/2018,Sports_celeb,@Amanda_Leoa,This is my water 💧 Essa é minha água @tenwater thank you 🙏🏼 https://t.co/BUMeZoh6Lm +04/25/2018,Sports_celeb,@Amanda_Leoa,@hiimash2 @ufc Awesome! make sure you watch them too 🙌🏼 +04/24/2018,Sports_celeb,@Amanda_Leoa,@ufc 👊🏼💪🏼 +04/24/2018,Sports_celeb,@Amanda_Leoa,@davi85291393 @ufc Eu sou gatinha tbm 😂😂😂😂😂😂 thanks +04/24/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: The Lioness takes the Octagon in less than three weeks .. + +@Amanda_Leoa #UFC224 https://t.co/kH7UocBzCU" +04/24/2018,Sports_celeb,@Amanda_Leoa,Our Mate is back @alexchambersmma 🙌🏼 https://t.co/qlegfvrHpk +04/23/2018,Sports_celeb,@Amanda_Leoa,👇🏼 https://t.co/1oFtgbvGnx +04/23/2018,Sports_celeb,@Amanda_Leoa,"RT @UFC_CA: The Octagon returns May 12 for #UFC224! + +@Amanda_Leoa vs. @RockyPMMA for the WBW championship. Who takes it? https://t.co/eIq5X…" +04/23/2018,Sports_celeb,@Amanda_Leoa,RT @caradesapatojr: A verdade sempre prevalece!! Quem te conhece sabe q vc jamais trapacearia. 🇧🇷—🇺🇸 The true always… https://t.co/XMm8Geax… +04/23/2018,Sports_celeb,@Amanda_Leoa,@junior_cigano 🙌🏼🙌🏼 https://t.co/MPefhs88IR +04/23/2018,Sports_celeb,@Amanda_Leoa,@ichbindaswalros @NinaAnsaroff 🥘 😂😂😂 +04/23/2018,Sports_celeb,@Amanda_Leoa,@benjogami1 @NinaAnsaroff My food 🥘 😂😂😂 +04/23/2018,Sports_celeb,@Amanda_Leoa,@EllieLynnbooks @NinaAnsaroff she does on purpose 😁😁😁😁 don’t like when she call me that +04/23/2018,Sports_celeb,@Amanda_Leoa,@PamBam_Sorenson @NinaAnsaroff She knows I don’t like being called a princess but she does on purpose. 😁😁😁 +04/23/2018,Sports_celeb,@Amanda_Leoa,😉😁 https://t.co/no5bJuIJiE +04/23/2018,Sports_celeb,@Amanda_Leoa,Princess 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 @NinaAnsaroff https://t.co/f9AxeePtc6 +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @UFCFightPass: Welcome to the @UFC Hall of Fame @MattSerraUFC! Re-live Matt's best in his Hall of Fame collection on #UFCFIGHTPASS 👉 htt… +04/22/2018,Sports_celeb,@Amanda_Leoa,Heavy weights 👊🏼 https://t.co/l8v2aOU4ep +04/22/2018,Sports_celeb,@Amanda_Leoa,@Rockup30 👊🏼💪🏼 +04/22/2018,Sports_celeb,@Amanda_Leoa,@BFORTHEV @ufc https://t.co/nL6EtSNq7a +04/22/2018,Sports_celeb,@Amanda_Leoa,@anacaro90574749 💪🏼👊🏼valeu +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @BigfootSilva: I’m with @EdsonBarbozaJR 👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼👊🏼 https://t.co/xtTIHu7Z8s +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @danawhite: #UFCAC Fight Pass prelims start NOW!!! https://t.co/BYOSCpcBkO +04/22/2018,Sports_celeb,@Amanda_Leoa,Good decision https://t.co/6SDfgAYUFU +04/22/2018,Sports_celeb,@Amanda_Leoa,Congrats @FCBarcelona 👏🏼👏🏼👏🏼👏🏼👏🏼 +04/22/2018,Sports_celeb,@Amanda_Leoa,RT @FCBarcelona: ⚽ 69: GOOAAAALLLL! Coutinho from the penalty spot after handball by Lenglet! #CopaBarça (0-5) https://t.co/GTpMjjEnNe +04/21/2018,Sports_celeb,@Amanda_Leoa,@AddeAbra 😂😂😂😂 +04/21/2018,Sports_celeb,@Amanda_Leoa,@lschi1 🙏🏼🙌🏼 +04/21/2018,Sports_celeb,@Amanda_Leoa,@BADDESTMMA 😂😂😂😂😂😂😂 +04/21/2018,Sports_celeb,@Amanda_Leoa,My coffee ☕️ Meu café 😂😂😂😂😂 https://t.co/UHDeGLDWJc +04/21/2018,Sports_celeb,@Amanda_Leoa,Good morning 🌞 https://t.co/ZBPhFV0Pac +04/21/2018,Sports_celeb,@Amanda_Leoa,"RT @InvictaFights: Who do you think will be crowned the new bantamweight champion? + +Experience #InvictaFC29: @mmasarah vs @klwmma LIVE from…" +04/20/2018,Sports_celeb,@Amanda_Leoa,Good morning 😃 https://t.co/BuwG5Pcl9x +04/20/2018,Sports_celeb,@Amanda_Leoa,Harm up https://t.co/spv9CqJXaA +04/20/2018,Sports_celeb,@Amanda_Leoa,@benjamin8213 🙏🏼 https://t.co/49746hPUwV +04/20/2018,Sports_celeb,@Amanda_Leoa,@jerald_ridgway Lol...I was hoping for 29 https://t.co/c2mOqhl0jz +04/20/2018,Sports_celeb,@Amanda_Leoa,@m_tbeck https://t.co/F61iZuBWKG +04/20/2018,Sports_celeb,@Amanda_Leoa,@ErkDennis @ufc https://t.co/SAYVGNsynr +04/20/2018,Sports_celeb,@Amanda_Leoa,@valleygems413 👊🏼💪🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@ErkDennis @ufc I will still be making some 💰😉 +04/20/2018,Sports_celeb,@Amanda_Leoa,@jajamour01 Valeu 🙏🏼🙌🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@Playachampion 🙌🏼🙏🏼💪🏼👊🏼 +04/20/2018,Sports_celeb,@Amanda_Leoa,@Mev_96 @ufc https://t.co/zAwax1rO1o +04/20/2018,Sports_celeb,@Amanda_Leoa,@erika_leer @m_tbeck 🙌🏼💪🏼👊🏼🤝 thank you!!!! +04/20/2018,Sports_celeb,@Amanda_Leoa,@m_tbeck @erika_leer 😂😂😂😂😂😂😂😂😂😂 https://t.co/A8fUqbsVS1 +04/19/2018,Sports_celeb,@Amanda_Leoa,#UFC224 https://t.co/UDP8RKZKwo +04/19/2018,Sports_celeb,@Amanda_Leoa,Thank you @PerfectingA https://t.co/kFwVcdpQcV +04/19/2018,Sports_celeb,@Amanda_Leoa,Salt life https://t.co/Anss26T543 +04/19/2018,Sports_celeb,@Amanda_Leoa,@Bfr_Sabrina Thank you ☺️ +04/19/2018,Sports_celeb,@Amanda_Leoa,😩 https://t.co/G75NxJ20xH +04/19/2018,Sports_celeb,@Amanda_Leoa,https://t.co/guWEGiH4Mb +04/19/2018,Sports_celeb,@Amanda_Leoa,@mightjuschilll Thank you 🙏🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,@Playachampion 🙌🏼💪🏼👊🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,@RolandSchultz8 Let’s go 🙏🏼🙌🏼💪🏼👊🏼 +04/19/2018,Sports_celeb,@Amanda_Leoa,I miss u Gunner 👶🏼😩 saudade do meu branquelo Gunner. https://t.co/VkCRuf8WqG +04/18/2018,Sports_celeb,@Amanda_Leoa,@juniolivasco @ufc Amém 🙏🏼 Obrigada +04/18/2018,Sports_celeb,@Amanda_Leoa,#ufc224 #riobrasil https://t.co/LYDQpWPrNI +04/18/2018,Sports_celeb,@Amanda_Leoa,Boom 💥👇🏼👏🏼👏🏼👏🏼👏🏼👏🏼👏🏼 https://t.co/Y2VODLOr1B +04/18/2018,Sports_celeb,@Amanda_Leoa,@RedWhite_Gooner @ufc 💪🏼👊🏼🙌🏼🙏🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@vikingjason @ufc @RockyPMMA Thank you!!! 🙌🏼👊🏼💪🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@EnigmaFights @ufc 👊🏼💪🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,RT @MMAWrestle_Chat: Apart from the random strawweight fight this card looks like it could have some great fights on it:@Amanda_Leoa vs @Ro… +04/18/2018,Sports_celeb,@Amanda_Leoa,@Onlynate247 @ufc May 12 💪🏼👊🏼😊 #ufc224 +04/18/2018,Sports_celeb,@Amanda_Leoa,@NKCheo @ufc 😂😂😂😂😂😂😂😂😂😂😂 +04/18/2018,Sports_celeb,@Amanda_Leoa,@TMLsince1994 @ufc 😎 +04/18/2018,Sports_celeb,@Amanda_Leoa,@UnRayao @ufc 👏🏼👏🏼👏🏼👏🏼👏🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@GmChn9R @ufc 🤓 +04/18/2018,Sports_celeb,@Amanda_Leoa,@jim782_greg @ufc Boom 💥 thank you!🙏🏼🙌🏼 +04/18/2018,Sports_celeb,@Amanda_Leoa,@apex47sa @ufc 🤣🤣🤣🤣🤣🤣🤣🤣 +04/18/2018,Sports_celeb,@Amanda_Leoa,@RedWhite_Gooner @ufc 😎😄 +04/18/2018,Sports_celeb,@Amanda_Leoa,@MightyArsenal19 @ufc Lol +04/18/2018,Sports_celeb,@Amanda_Leoa,@UnRayao @ufc 🤪🤪🤪🤪🤪🤪 +04/18/2018,Sports_celeb,@Amanda_Leoa,@MattWalters3 @ufc 😂😂😂😂😂😂😂😂 +04/18/2018,Sports_celeb,@Amanda_Leoa,@ufc What about #ufc224? 🧐 +04/18/2018,Sports_celeb,@Amanda_Leoa,she listens to👂 her owners voice 😊 Falei felicidade quando 👂 a dona chegar 😂😂😂😂😂 https://t.co/L1DXxl6ho8 +04/18/2018,Sports_celeb,@Amanda_Leoa,@10natoo 😂😂😂😂😂 é +04/17/2018,Sports_celeb,@Amanda_Leoa,I needed some skills to record this. https://t.co/1P211jmKlu +04/17/2018,Sports_celeb,@Amanda_Leoa,Feliz aniversário Mãe 🎂 que a vida nos permita comemorar essa data por muitos e muitos anos 🙏🏼obrigada por tudo TE… https://t.co/4cAhdr3jqO +04/16/2018,Sports_celeb,@Amanda_Leoa,Baby Gunner 😴 https://t.co/DeeAZ9wKNF +04/16/2018,Sports_celeb,@Amanda_Leoa,Ready to go 🦁 Tudo pronto @judokayla @conansilveira @mikebrownmma @dyah_ali @parrumpaatt @stevemocco #ufc224… https://t.co/GDoWJOtycv +04/16/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: Assim foi a primeira encarada entre a campeã @Amanda_Leoa e @RockyPMMA. Elas lutam no #UFC224, dia 12 de maio, no Rio de Ja…" +04/16/2018,Sports_celeb,@Amanda_Leoa,RT @ufc_brasil: Já são cinco vitórias seguidas no octógono! Quem deve ser o próximo adversário de @caradesapatojr no #UFC? https://t.co/ka9… +04/16/2018,Sports_celeb,@Amanda_Leoa,Good morning!! Guess who helped me fall asleep last night!? 👶🏼 Bom dia! Olha quem me ajudou a ter uma noite de paz… https://t.co/zkByOzJXJV +04/15/2018,Sports_celeb,@Amanda_Leoa,Sunday 👶🏼 day https://t.co/bn6cwUIjMq +04/15/2018,Sports_celeb,@Amanda_Leoa,RT @ConanSilveira: UBUNTU🙏🏻🙏🏻🙏🏻 @amanda_leoa @ninaansaroff @valdirenenunes1 @katelkubis @americantopteam https://t.co/4xKigyWSZZ +04/15/2018,Sports_celeb,@Amanda_Leoa,Fuck Awesome @DustinPoirier congrats +04/15/2018,Sports_celeb,@Amanda_Leoa,#ubuntu @ConanSilveira @NinaAnsaroff 🙌🏼 https://t.co/GVlH3y6yKY +04/14/2018,Sports_celeb,@Amanda_Leoa,Let’s go Sapatinho @caradesapatojr https://t.co/qO2LasuxfA +04/12/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc_brasil: O octógono retorna ao Rio de Janeiro no dia 12 de maio com @Amanda_Leoa, @JacareMMA, @VitorBelfort, @LyotoMachidafw e muito…" +04/10/2018,Sports_celeb,@Amanda_Leoa,"RT @FCBarcelona: 🔊 Valverde: ""We are sorry for the fans. Now we have to carry on and focus on what's left for us"" #RomaBarça https://t.co/Z…" +04/10/2018,Sports_celeb,@Amanda_Leoa,@MikeMeehan2016 @FCBarcelona 🙏🏼💪🏼👊🏼 thank you! +04/10/2018,Sports_celeb,@Amanda_Leoa,@Pinzon804 @FCBarcelona 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 +04/10/2018,Sports_celeb,@Amanda_Leoa,@MikeMeehan2016 @FCBarcelona 😂😂😂😂😂😂😂😂 +04/10/2018,Sports_celeb,@Amanda_Leoa,3 goal I can’t believe that 🙈🙈🙈🙈🙈🙈🙈🙈 @FCBarcelona 😭😭😭😭😭😭😭😭😭😭😭😭😭😭 q porraaa viu +04/10/2018,Sports_celeb,@Amanda_Leoa,😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖😖Omg omg @FCBarcelona 🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈🙈 +04/10/2018,Sports_celeb,@Amanda_Leoa,Let’s go Barca please @FCBarcelona 😵😖😖😖😖😖 +04/10/2018,Sports_celeb,@Amanda_Leoa,No no no no Omg 😭😭😭😭😭😭😭😭😭😭😭😭 @FCBarcelona +04/10/2018,Sports_celeb,@Amanda_Leoa,This game 😳🔥 Barca vs Roma Omg @FCBarcelona +04/10/2018,Sports_celeb,@Amanda_Leoa,https://t.co/knOmqqprOS +04/10/2018,Sports_celeb,@Amanda_Leoa,https://t.co/GpePaWBJWN +04/08/2018,Sports_celeb,@Amanda_Leoa,@MoicanoRenato 👉🏼🏆 https://t.co/jl36FZNgdJ +04/08/2018,Sports_celeb,@Amanda_Leoa,RT @ussoccer_wnt: .@alexmorgan13's last 13 #USWNT games: ⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️⚽️ https://t.co/MHqawI0cSD +04/08/2018,Sports_celeb,@Amanda_Leoa,Pic of the night @chilipeppers foto da noite #ufc223 https://t.co/x9lWYxiNaf +04/07/2018,Sports_celeb,@Amanda_Leoa,Awesome push today 🦁 O treino hj foi massa. #conditioning #preparacaofisica #newyork #dogpound #ufc223 @AdrianaLima… https://t.co/e3iSyM0kmA +04/07/2018,Sports_celeb,@Amanda_Leoa,"RT @ufc: Nunes vs Pennington in Rio for the belt! + +@Amanda_Leoa vs @RockyPMMA #UFC224 https://t.co/s6VNGviK5B" +04/07/2018,Sports_celeb,@Amanda_Leoa,@SpeedwayStores my go to destination for @DrinkBODYARMOR #SuperiorHydration #UFC223 https://t.co/UB73qqydXn +06/19/2018,Sports_celeb,@MieshaTate,The best feeling ever https://t.co/VxYsVwZdJr +06/19/2018,Sports_celeb,@MieshaTate,@mrducati813 @AJukwildcats @ufc 😂 I don’t know why this was so funny to me but I laughed out loud for real +06/19/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: I want to wish my boss @campbellcombate a Very Happy & Healthy Birthday. He’s next to me in this Photo Alongside the re… +06/18/2018,Sports_celeb,@MieshaTate,Thank you! https://t.co/n4Ac5aF7Kk +06/18/2018,Sports_celeb,@MieshaTate,I should be there in some capacity I just haven’t figured out when and where! Will post when I get my schedule figu… https://t.co/BPbdIr8eQ8 +06/10/2018,Sports_celeb,@MieshaTate,"It was actually 71 hours total from start to finish, a really rough 3 days but she’s so worth it! She outlasted me… https://t.co/1OoMzudZV6" +06/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: ICYMI: @TheTruthJackson spoke with @MieshaTate and @realOCsports about his upcoming fight with CM Punk at #UFC225 last n… +06/01/2018,Sports_celeb,@MieshaTate,Happy Belated Bday! https://t.co/ANbTeyQhvu +05/31/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""Neither one of us belong here"" - @TheTruthJackson tells @realOCsports & @MieshaTate that while he is seizing an opportu…" +05/30/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Simple question: Does #PunkvsJackson belong on the main card of #UFC225? Call and let @MieshaTate & @realOCsports at 84… +05/30/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @realOCsports and @MieshaTate! + +Joined by @TheTruthJackson at 6:30p ET plus @Forre…" +05/30/2018,Sports_celeb,@MieshaTate,Thank you!! https://t.co/5X6uFuCbGQ +05/26/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: Love it Thank You ❤️ https://t.co/gAb00gRusB +05/26/2018,Sports_celeb,@MieshaTate,https://t.co/kVvCFDikJp +05/25/2018,Sports_celeb,@MieshaTate,RT @DandoisCindy: Well... let’s hope that by this way we can finally have our division and that one day I can acclompish my dream to fight… +05/25/2018,Sports_celeb,@MieshaTate,"RT @DandoisCindy: Dream big... a 145lbs @UFC_TUF , a division ready to grow and real featherweights to face @criscyborg in the future... I…" +05/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@Ealvarezfight to @MieshaTate and @realOCsports: For my own legacy, I want to defeat Khabib, then redeem my loss agains…" +05/25/2018,Sports_celeb,@MieshaTate,RT @MMAjunkie: Miesha Tate: Raquel Pennington would've felt 'lifetime of regret' for quitting at UFC 224 https://t.co/hKCtVYkrHy +05/14/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: ICYMI: @MieshaTate told @realOCsports and @Michael_Stets that she had no issue with Raquel Pennington's corner sending h… +05/14/2018,Sports_celeb,@MieshaTate,"Yea but it’s called fighting for a reason, am I right or am I right? https://t.co/3SDOhgU3C8" +05/14/2018,Sports_celeb,@MieshaTate,"RT @MMAjunkie: New edition of @MMAjunkieRadio with guests Miesha Tate (@MieshaTate), Dan Henderson (@danhendo) and Mauro Ranallo (@mauroran…" +05/14/2018,Sports_celeb,@MieshaTate,No that’s not what happened I said I was done with fighting all together AFTER the fight. I knew I was done competi… https://t.co/FHUGAxgP3o +05/13/2018,Sports_celeb,@MieshaTate,Happy Mother’s Day to my one and only Mama. Nobody will know the sacrifices she made to help me be the woman I am t… https://t.co/nsieZv1erg +05/13/2018,Sports_celeb,@MieshaTate,"Correction, I never said I quit I said I realized I didn’t want to fight anymore as in retire, I didn’t feel at hom… https://t.co/kIadIC5e0j" +05/13/2018,Sports_celeb,@MieshaTate,"RT @LaurenMurphyMMA: Yes @MieshaTate +Physical injuries heal. Quitting is a pain that lasts forever. We don’t get these moments back. I wou…" +05/13/2018,Sports_celeb,@MieshaTate,@WMMANews Thanks for the audio clip +05/13/2018,Sports_celeb,@MieshaTate,"Correction, I said I was done with fighting after the fight concluded not during the fight or between rounds. https://t.co/DiMLyW02ku" +05/13/2018,Sports_celeb,@MieshaTate,Is that what she said? I couldn’t hear the audio?? https://t.co/DWdHXQy2UJ +05/13/2018,Sports_celeb,@MieshaTate,What a great fight so far ladies!! @RockyPMMA vs @Amanda_Leoa #ufc224 @ufc +05/13/2018,Sports_celeb,@MieshaTate,Great start to #ufc224 oooowee!! @ufc #knockouts +05/13/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""7 pounds over as a professional in the UFC? That's like me showing up with no material for 45 minutes."" -- @madflavor…" +05/12/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Want #UFC224 coverage? We've got your preshow from 6-8p ET on @siriusxm RUSH 93 with @MieshaTate and @RyanMcKinnell plu… +05/12/2018,Sports_celeb,@MieshaTate,We Rollin!!!!! @MMAonSiriusXM https://t.co/E56vF4qWTL +05/09/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/XHYu0oAKf4 +05/07/2018,Sports_celeb,@MieshaTate,"RT @fightnet: Our Women's Week kicks off for ""UFC in 60!"" See the best of @MieshaTate on at 6 p.m. ET on @fightnet! https://t.co/6xoNGA3OUJ" +05/05/2018,Sports_celeb,@MieshaTate,Aw thank you it was an honor to speak in front of all of you! https://t.co/4PodTqYmqt +05/05/2018,Sports_celeb,@MieshaTate,RT @peta: @MieshaTate BREAKING: #MexicoCity officially banned dolphinariums today 💙🐬 RT if you want ALL cities to ban them! https://t.co/8I… +05/05/2018,Sports_celeb,@MieshaTate,Thank you!! 🤗 https://t.co/0dIcHUwwT2 +05/03/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about week 35 of her 3rd trimester! Find out what kind of people are getting on her nerves, why she's con…" +05/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""I'm turning my focus to Nate ... I think the Khabib fight is the right one to make but the Nate fight is out there to b…" +05/02/2018,Sports_celeb,@MieshaTate,This poor guy lol 😳😳😳 https://t.co/QkGU2IHbi7 +05/02/2018,Sports_celeb,@MieshaTate,Well tell us how you really feel @francis_ngannou!! 😂👌 https://t.co/Dgn1czzyGj +05/02/2018,Sports_celeb,@MieshaTate,This weather got me like.... #VegasWeather https://t.co/syfcLeKbZ1 +04/29/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@LeslieSmith_GF tells @MieshaTate & @RyanMcKinnell that the UFC gave her a discretionary bonus immediately after she ad… +04/25/2018,Sports_celeb,@MieshaTate,That was a great interview thank you @francis_ngannou!! https://t.co/5KVbwR9aAL +04/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@thefrankmir tells @RyanMcKinnell & @MieshaTate he is a fan of the tournament style in @BellatorMMA, how he fights at h…" +04/22/2018,Sports_celeb,@MieshaTate,"RT @MMAWeeklycom: #KevinLee Brutalizes Edson Barboza by TKO, Calls for #KhabibNurmagomedov Next https://t.co/Qrwhi4V3Y6 #UFCAtlanticCity" +04/22/2018,Sports_celeb,@MieshaTate,I signed these gloves for charity! There’s these plus lots of other great auction items for the Nevada #SPCA https://t.co/zbHQ2pghUD +04/19/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET on @siriusxm RUSH 93 with @RJcliffordMMA & @MieshaTate plus guest @RickySimonUFC at 7:3… +04/19/2018,Sports_celeb,@MieshaTate,I really have no idea is the right answer?? Anybody have ideas? https://t.co/OxA8BB0QUI +04/19/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about her 3rd trimester! Find out how she deals with the sweet cravings, what her birth plan is, and see…" +04/19/2018,Sports_celeb,@MieshaTate,Had a lot of fun! https://t.co/AWGcrle2Ba +04/15/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: I’m ok with my Draw. I fought hard won the first two but lost the third. My opponent fought tuff and well. Back in the… +04/14/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: Wrapped up and ready. Waiting on my turn. Tune in to @Univision & @univisiondeportes LET’S GET IT!! @combateamericas @C… +04/12/2018,Sports_celeb,@MieshaTate,"RT @MaebandLLC: @MieshaTate blogs about her 2nd trimester! What do you think she says her best pregnancy hack was? 😉 Also, find out what sh…" +04/12/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""I think this is the most humble comment I've ever heard come out of Ronda Rousey's mouth ... this is probably the best…" +04/12/2018,Sports_celeb,@MieshaTate,Aww! You need to get one or two more though! They are very social they need other chicks 🐥 https://t.co/QDJqtz4gjJ +04/12/2018,Sports_celeb,@MieshaTate,Inspired by the dark line on my tummy from pregnancy their names are Linea and Negra 😂🤗 https://t.co/Vk2D9tgx8V +04/11/2018,Sports_celeb,@MieshaTate,Happy #NationalPetDay!! 🐤 https://t.co/zsrzP02jp0 +04/09/2018,Sports_celeb,@MieshaTate,RT @notsleeeping: @MMAonSiriusXM @MieshaTate @RyanMcKinnell @SIRIUSXM Big week for Miesha! She manages @Serranosisters who fights next we… +04/07/2018,Sports_celeb,@MieshaTate,No but I will be tomorrow for the pre fight show https://t.co/ekNQwDQOlT +04/05/2018,Sports_celeb,@MieshaTate,Aww thank you Mike 🙏💜 https://t.co/CHGGR3g7ne +03/24/2018,Sports_celeb,@MieshaTate,RT @Dynamitedan808: Time to go to WAR again! Let’s do this June 9th Chicago 👊🏽 @ufc #ufc225 https://t.co/MZMT8TsS1t +03/24/2018,Sports_celeb,@MieshaTate,RT @WADBODCROSSFIT: Join us with @mieshatate at musclemaker_lasvegas today!!! We will be there from 12PM-4PM! https://t.co/zTW6Huvrvw +03/24/2018,Sports_celeb,@MieshaTate,😍 https://t.co/HZV0wF0NaB +03/22/2018,Sports_celeb,@MieshaTate,#ThursdayThoughts https://t.co/To3fo4UaKy +03/22/2018,Sports_celeb,@MieshaTate,RT @juicyj_erosa: An awesome day. The #ao8team teamed up to help feed the homeless. Thankful to have been apart of this. #AO8 https://t.co/… +03/22/2018,Sports_celeb,@MieshaTate,RT @bland24: Cooking with former Champ @MieshaTate and her awesome team today! They cooked some amazimg food and showed our homeless frien… +03/22/2018,Sports_celeb,@MieshaTate,Wow!! I’m honored! https://t.co/JesFpz9aU9 +03/19/2018,Sports_celeb,@MieshaTate,"RT @DocEdwards5: Awesome time at the pre screening of @tombraidermovie w @mieshatate and @francis_ngannou @francisngannou_mmapage +#tombraid…" +03/19/2018,Sports_celeb,@MieshaTate,RT @KevinHarvick: Disappointed in myself for a bone head move 2 years in a row @ACSupdates. Proud of my team for another fast car and we mo… +03/18/2018,Sports_celeb,@MieshaTate,RT @KHIManagement: Set your alarms!! @KevinHarvick will be on @SportsCenter at 9:30 a.m. ET tomorrow morning. Starting race day early!! +03/18/2018,Sports_celeb,@MieshaTate,Pretty sure it’s MieshaTateUFC https://t.co/GO7cfWpTe9 +03/17/2018,Sports_celeb,@MieshaTate,Happy St Patty’s Day everyone!! #happystpatricksday https://t.co/2N4VfNH2mk +03/17/2018,Sports_celeb,@MieshaTate,@TombRaiderMovie opens today! I watched last night with some friends and it was action packed #TombRaiderMovie https://t.co/viwI0McjrA +03/16/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@SugaRashadEvans says his career on the line at UFC 225. + +Here is @lionheartsmith's response, speaking to @realOCsports…" +03/16/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@lionheartsmith: I went up to Light Heavyweight for ""100% safety"". + +Anthony explains to @realOCsports & @MieshaTate why…" +03/16/2018,Sports_celeb,@MieshaTate,"Such kind words, really touched my 💜 thank you!! https://t.co/GMYLWJVWhy" +03/14/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: With Cynthia Calvillo receiving a 9 month suspension and a fine due to Marijuana use, do you think it's time to rewrite…" +03/14/2018,Sports_celeb,@MieshaTate,Thank you so much!! 💓 fans like you! https://t.co/RedzGnGuFi +03/14/2018,Sports_celeb,@MieshaTate,😂 https://t.co/3xONRobd0o +03/12/2018,Sports_celeb,@MieshaTate,I went to @DessertGallery!! Very good! https://t.co/jmADJ34j8m +03/11/2018,Sports_celeb,@MieshaTate,RT @DirtySouthTV: @andrewAXSTV @AXSTVFights @CheyWarPrincess @MieshaTate @SugarRaySefo Cheyanne fought a VERY game opponent that would have… +03/11/2018,Sports_celeb,@MieshaTate,When are people gonna learn not every photo was taken right when it’s posted... this is an old photo clearly https://t.co/4qYeVcwNCZ +03/11/2018,Sports_celeb,@MieshaTate,Aww that’s awesome https://t.co/U0uaLaoMNj +03/11/2018,Sports_celeb,@MieshaTate,I don’t think we disappointed! Thanks for having @CheyWarPrincess on the card! https://t.co/XN0RWuDSVX +03/10/2018,Sports_celeb,@MieshaTate,RT @Serranosisters: YES! Congratulations to my Girl @CheyWarPrincess on her 3rd rd TKO Win Just now. Winning her MMA Pro Debut. That’s the… +03/10/2018,Sports_celeb,@MieshaTate,Aw thanks Mike! https://t.co/tMqAumP8wi +03/09/2018,Sports_celeb,@MieshaTate,So I’m in Houston cornering @CheyWarPrincess tonight and I’m wondering where the best cupcakery might be? Any suggestions?! +03/08/2018,Sports_celeb,@MieshaTate,RT @camposgrappling: #UNLV Wrestling is at Nationals now! 👊🏽👊🏽👊🏽 https://t.co/NGxUDFdMnp +03/08/2018,Sports_celeb,@MieshaTate,Good to know! Thanks https://t.co/ywmoYsdqgo +03/07/2018,Sports_celeb,@MieshaTate,"RT @marcsavard: @officialhammer Was working w/ @BryanCaraway again. He was ready. Pressured, had a good fight, thought he won Rd 1 and 3.…" +03/07/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET on @siriusxm RUSH 93 w/ @realOCsports & @MieshaTate! + +Guests: + +@MoTownPhenom 6:30p ET…" +03/07/2018,Sports_celeb,@MieshaTate,"So I’m thinking about starting a pregnancy blog, guys I’m sure you could care less lol but ladies what are your tho… https://t.co/MukfaPQdI8" +03/06/2018,Sports_celeb,@MieshaTate,"Two years ago, life is a crazy ride! https://t.co/sWJiv4wwzP" +03/05/2018,Sports_celeb,@MieshaTate,"I don’t think @BryanCaraway lost, he won rounds 1 & 3 IMO. The judging was consistently terrible for #UFC222. https://t.co/71DbNY08wg" +03/05/2018,Sports_celeb,@MieshaTate,Really appreciate that! https://t.co/E0flJ62a3c +03/05/2018,Sports_celeb,@MieshaTate,Aw thank you! https://t.co/ziIVuiSdWF +03/04/2018,Sports_celeb,@MieshaTate,"Hey #UFC222 fighters, don’t let it go to a decision! 🙄" +03/04/2018,Sports_celeb,@MieshaTate,All these Split decisions are BS shows the poor consistency in judging!!! +03/04/2018,Sports_celeb,@MieshaTate,FIRST bump in the road 😂😂😂 obviously you didn’t follow my fight career. Probably the most ignorant comment I’ve hea… https://t.co/fHkvwP8Mdl +03/03/2018,Sports_celeb,@MieshaTate,Curious where you guys stand? https://t.co/ejxCbv6XXC +03/03/2018,Sports_celeb,@MieshaTate,I’m not being negative @JonnyBones just honest. I hope you can respect that. I think you’re an amazing fighter and… https://t.co/1CJch50kI9 +03/03/2018,Sports_celeb,@MieshaTate,"@JonnyBones I’m really not trying to be negative Jon, just honest. I think you’re a great fighter and as a person I… https://t.co/17mIt6WU2a" +03/03/2018,Sports_celeb,@MieshaTate,Hello @AbsintheVegas!! https://t.co/yGpLWssTQ7 +03/02/2018,Sports_celeb,@MieshaTate,"@jonnybones u make things tougher 4 urself, I hope u can figure it out this time but I’m not holding my breath. Sup… https://t.co/6UkM65fO6U" +03/02/2018,Sports_celeb,@MieshaTate,Hey Las Vegas!! I’ll be on the @FOX5Vegas promoting the new UNLV wrestling team we have started again! Check it out… https://t.co/bLa6kAhkr8 +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAFighting: Miesha Tate: ‘The faith that I have in Jon Jones has been lost’ https://t.co/mM1D4JBAQO https://t.co/J5WWw5X0jJ +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Who fights again in the UFC first? Call and vote! 844-796-7874 @MieshaTate @realOCsports +03/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Do you believe Jon Jones as Andy Foster does? https://t.co/dhnhPyyp94 @MieshaTate @realOCsports +02/27/2018,Sports_celeb,@MieshaTate,.@HeatherHardyBox says Bellator is not to blame for the quality of her fight with @anajulaton at #Bellator194 and i… https://t.co/czSTJwDG4P +02/24/2018,Sports_celeb,@MieshaTate,Thank you!! https://t.co/D9G8e3MLDp +02/24/2018,Sports_celeb,@MieshaTate,Sharing my first #BabyBump pic 🤗🤰🏻 https://t.co/TfS1s19rxo +02/24/2018,Sports_celeb,@MieshaTate,Thank you I appreciate that https://t.co/OEaUlvELaP +02/23/2018,Sports_celeb,@MieshaTate,"RT @bt13strikeforce: @MieshaTate-""I am pushed by those who believe in me but motivated by those who don't"" #ThrowbackThursday #StrikeforceC…" +02/23/2018,Sports_celeb,@MieshaTate,@windmi11s Yea I’ve done my research and I don’t feel my homemade kombucha will be harmful. I’ve been drinking it w… https://t.co/LKF6Ikhucj +02/23/2018,Sports_celeb,@MieshaTate,That was so fun!! Thank you @GoldenKnights!! https://t.co/JsnevRyRaI +02/23/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Does Ronda Rousey deserve to be inducted into the International Sports Hall of Fame? @MieshaTate weighs in and says the… +02/21/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: If you could pick one of the below to have fought in the #UFC in their prime, who would it be? Call and vote! 844-796-…" +02/21/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Which current MMA stars would YOU like to see head to the UFC who haven't yet fought in the promotion? Dial away at 844… +02/17/2018,Sports_celeb,@MieshaTate,@karlmillward Lol I can’t promise but that is a pretty damn good choice for a ringtone 😂 +02/17/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: So what are the chances @UrijahFaber returns to the octagon for another fight? He gives @MieshaTate and @realOCsports t… +02/14/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: After seeing the punishment Yoel Romero (for missing weight) and Li Jianliang (for eye-gouging) received at #UFC221, wou…" +02/08/2018,Sports_celeb,@MieshaTate,😍🙌🏼 https://t.co/XIFUW0J8Rs +02/08/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@MeansTim tells @MieshaTate & @realOCsports that Dana White agreed that he beat Sergio Moraes & that fighting in Brazil… +02/08/2018,Sports_celeb,@MieshaTate,"I wanna see a more challenging fight for #Cyborg, I’m not convinced her opponent has what it takes to fill main eve… https://t.co/NwVOj9rlxm" +02/08/2018,Sports_celeb,@MieshaTate,Remember it’s $65 now https://t.co/3tnslVX8P4 +02/08/2018,Sports_celeb,@MieshaTate,That’s what I think https://t.co/Dnxi8sM5fi +02/07/2018,Sports_celeb,@MieshaTate,😮 https://t.co/zMlKKwxbNn +02/07/2018,Sports_celeb,@MieshaTate,"Call in, let us know we wanna hear your thoughts https://t.co/bgXWlYZEms" +02/07/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: +@Cowboycerrone 6:30p ET…" +02/07/2018,Sports_celeb,@MieshaTate,Personally I like #MJ1 https://t.co/wSisDoG1zr +02/04/2018,Sports_celeb,@MieshaTate,Aww thank you! I have all the faith in the world in you! https://t.co/Ikecba8bMO +02/03/2018,Sports_celeb,@MieshaTate,I wonder if I’ll look less angry in this one?! #EAUFC3 https://t.co/gi9VzBEkC5 +02/02/2018,Sports_celeb,@MieshaTate,"RT @RJcliffordMMA: For those who missed MMA Tonight yesterday: + +Hosted by @MieshaTate +Interview w/ @MikeMav22 +Surprise call from @BrianSt…" +02/02/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@BrianStann says despite the new fad of defending fighters who fail drug tests, the bottom line is fighters who use PED…" +02/02/2018,Sports_celeb,@MieshaTate,"It’s not sad it’s called news, which is what we cover on our radio show 🙄 https://t.co/nzUznYuh56" +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: MMA Tonight is LIVE with @MieshaTate & @RJcliffordMMA from 6-8p ET on @siriusxm RUSH 93. @MikeMav22 joins us at 7:30p E… +02/01/2018,Sports_celeb,@MieshaTate,That was epic! @BrianStann thanks for the call! https://t.co/kJ34OpSIpH +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Would @MieshaTate be open to a @WWE run? Would she work with Ronda Rousey in the world of pro-wrestling? Miesha tells… +02/01/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/Z4UAokf4HW +02/01/2018,Sports_celeb,@MieshaTate,😬😊 https://t.co/GyrGXtZAyE +02/01/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@MieshaTate tells @realOCsports that the biggest advantage DC will have over Stipe is cardio. #UFC226 https://t.co/8Yr… +02/01/2018,Sports_celeb,@MieshaTate,😳 https://t.co/9R6WEaoIlJ +01/31/2018,Sports_celeb,@MieshaTate,Looking forward to it! https://t.co/4YWBkP5WKy +01/31/2018,Sports_celeb,@MieshaTate,"Well I know what I think, you guys? https://t.co/a5cW735LU5" +01/30/2018,Sports_celeb,@MieshaTate,Thanks! I had fun! https://t.co/6YMUGq1hL6 +01/28/2018,Sports_celeb,@MieshaTate,"Guess who’s gonna be on @sharktankabc tonight!!! Yep, this girl! Checkout the episode I did with @showerpill 9pm ES… https://t.co/Eoh9VBvlL1" +01/27/2018,Sports_celeb,@MieshaTate,RT @ShowerPill: Spoiler alert: our girl @MieshaTate former UFC Champion will be making a cameo during ShowerPill’s epic Shark Tank appearan… +01/27/2018,Sports_celeb,@MieshaTate,RT @ranjori1: @ufc RT @ShowerPill: Spoiler alert: our girl @MieshaTate former UFC Champion will be making a cameo during ShowerPill’s epic… +01/26/2018,Sports_celeb,@MieshaTate,RT @ekohmusic: Huge THANK YOU to @MMAonSiriusXM & @MieshaTate for playing my song on the show! ❤️❤️❤️ https://t.co/bnhR19KfQB +01/25/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Did you like the music that we just came back from break with? Check out Ekoh's other music here and support! https://… +01/25/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@MieshaTate explains to @realOCsports why a Cyborg-Nunes matchup is all risk, low reward for Cris Cyborg, at least when…" +01/25/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Does a Stipe Miocic vs. Daniel Cormier superfight make sense? @MieshaTate tells @realOCsports that she thinks so! https… +01/24/2018,Sports_celeb,@MieshaTate,Thoughts? https://t.co/sy1uDAhvmS +01/24/2018,Sports_celeb,@MieshaTate,I just Love all the @Cirque shows next time you gotta check out #Ka or #MJone https://t.co/tEnm3NEGvc +01/24/2018,Sports_celeb,@MieshaTate,Warrior https://t.co/vqQENcoEso +01/21/2018,Sports_celeb,@MieshaTate,Now THAT’s a day to celebrate! https://t.co/7fwAdcksUe +01/20/2018,Sports_celeb,@MieshaTate,RT @Gustavo11Lopez: Blessed to have these two in my life @ao8management. @mieshatate @robalob. we have a bright future ahead of us. #mma #w… +01/17/2018,Sports_celeb,@MieshaTate,"Tell us on the poll, how much 💰 will you fork out? https://t.co/THZO8iQLCj" +01/17/2018,Sports_celeb,@MieshaTate,Honest opinions? How much 💰are you willing to fork out? https://t.co/THZO8iQLCj +01/17/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET w/ @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: + +@Jon_Anik at 7:30p ET + +Y…" +01/17/2018,Sports_celeb,@MieshaTate,😍 https://t.co/hyxNjuXcVa +01/13/2018,Sports_celeb,@MieshaTate,"So meet my @MMAonSiriusXM producer Josh, he has decided to take my 30 day BYOC fitness challenge and here is his fi… https://t.co/QPsRZLMvBT" +01/11/2018,Sports_celeb,@MieshaTate,"I don’t think anybody is really ready for Cyborg but she needs contenders, it’s either @DandoisCindy or… https://t.co/udA9FFYhYg" +01/11/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@MieshaTate explains to @realOCsports why she's in favor of a Cyborg-Nunes fight: ""If Holly could hurt Cyborg, I think…" +01/11/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@teameganmma tells @MieshaTate & @realOCsports that he's definitely not finished with #MMA & wants to get back in being… +01/11/2018,Sports_celeb,@MieshaTate,RT @Country_girljj: @MieshaTate I also honestly believe Cindy would fare very well against cris. She's beaten some well named people at 145… +01/11/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""The more you sweat in training, the less you bleed in war."" -- @HurricaneShaneB #UFC220 https://t.co/Ho9MQ2Bm3c" +01/11/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Want to get in shape as our own @MieshaTate guides you along? Check out her fitness program here! @realOCsports will b… +01/10/2018,Sports_celeb,@MieshaTate,Thank you 😊 https://t.co/41SG0mQrYq +01/10/2018,Sports_celeb,@MieshaTate,To say a black belt doesn’t mean anything makes you sound ignorant. It’s not everything but it’s something. No one… https://t.co/JWwuosCxP4 +01/10/2018,Sports_celeb,@MieshaTate,It’s simple Correia had been winning and Holly had been losing https://t.co/6ctDwB78RG +01/06/2018,Sports_celeb,@MieshaTate,I think because a belt is good for promotion? I don’t really know but think about it they have never had another 14… https://t.co/yG3Xa4PG7d +01/06/2018,Sports_celeb,@MieshaTate,That’s because the ufc hasn’t officially opened the 145lb division yet. They tried with Holly vs Germaine but that… https://t.co/8hjpgDFLCB +01/06/2018,Sports_celeb,@MieshaTate,Shots fired https://t.co/CSKptaJT5c +01/06/2018,Sports_celeb,@MieshaTate,Yes!!!! Great work!! https://t.co/Knm9BEXzEo +01/06/2018,Sports_celeb,@MieshaTate,"RT @WMMARankings: Miesha Tate says Megan Anderson isn’t ready for Cris Cyborg: “She’s a bit green at this point, not experienced enough yet…" +01/05/2018,Sports_celeb,@MieshaTate,"RT @DanFromOR: #UFC222 4 w145lb Tournament + +19-1 Cyborg vs 15-4 Nunes +7-2 Anderson vs 10-3 Dandois + +#ChampVsChamp & #Rematch https://t.co/…" +01/04/2018,Sports_celeb,@MieshaTate,"RT @WMMARankings: Cindy Dandois: “I really appreciate RIZIN, I will fight anyone including Gabi Garcia” https://t.co/QsmzBCWVUa https://t.c…" +01/04/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: .@DandoisCindy tells @MieshaTate & @realOCsports that she deserves a fight with @criscyborg more than @MeganA_mma becaus… +01/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: ""A bear is dumb as hell!"" -- @MoTownPhenom to @MieshaTate & @realOCsports on why he's not impressed with Khabib wrestlin…" +01/03/2018,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: MMA Tonight is LIVE from 6-8p ET with @MieshaTate & @realOCsports on @siriusxm RUSH 93! + +Guests: +@MoTownPhenom 6:30p ET…" +01/03/2018,Sports_celeb,@MieshaTate,RT @MMAonSiriusXM: Who do YOU want to see Cris Cyborg fight next after #UFC219? Call and vote! 844-796-7874 @MieshaTate @realOCsports +01/01/2018,Sports_celeb,@MieshaTate,Happy New Year! https://t.co/PPabxcyIPI +01/01/2018,Sports_celeb,@MieshaTate,@HollyHolm doesn’t duck fights she’s literally fought all the best never backed down from a fight. If she didn’t fi… https://t.co/mXiYkoLqRS +01/01/2018,Sports_celeb,@MieshaTate,Yes and it was a CLOSE loss to a top 10 UFC bantam weight! https://t.co/lT99D7Rsw9 +01/01/2018,Sports_celeb,@MieshaTate,"Well I think I would have like to see her throw more push kicks to the body and to the legs, up her strike count an… https://t.co/9cEa1YqjYo" +12/31/2017,Sports_celeb,@MieshaTate,Same https://t.co/3taPtbj813 +12/31/2017,Sports_celeb,@MieshaTate,I love this #cupofnoodle https://t.co/a9RgkjTQIV +12/31/2017,Sports_celeb,@MieshaTate,RT @DandoisCindy: Congrats To @criscyborg! How About the number one 155er vs the number one 145er next???.... or Cris could fight @MeganA_m… +12/31/2017,Sports_celeb,@MieshaTate,I don’t care the results even Holly is my Hero +12/31/2017,Sports_celeb,@MieshaTate,@HollyHolm the first woman to win a round against #cyborg?? #ufc219 @ufc +12/31/2017,Sports_celeb,@MieshaTate,I’m really excited for #CyborgvsHolm I like them both but pulling for the underdog here. #AndNew +12/31/2017,Sports_celeb,@MieshaTate,Agreed! Thank you! https://t.co/P58mmtho5W +12/30/2017,Sports_celeb,@MieshaTate,"RT @WMMARankings: Miesha Tate on Cindy Dandois: “She’s constantly underestimated and criticized, but she’s the most game fighter I ever met…" +12/29/2017,Sports_celeb,@MieshaTate,RT @WMMARankings: Miesha Tate set to corner Cindy Dandois for her lightweight debut at Friday’s RIZIN event https://t.co/FWLwSPTdLg https:/… +12/27/2017,Sports_celeb,@MieshaTate,RT @InvictaFights: We're kicking off the new year with an incredible card! Don't miss #InvictaFC27 this January 13th LIVE on @UFCFightPass!… +12/25/2017,Sports_celeb,@MieshaTate,😂😂😂 https://t.co/8sgim0rLgW +12/22/2017,Sports_celeb,@MieshaTate,"RT @MMAonSiriusXM: .@AriannyCeleste to @MieshaTate & @realOCsports on the biggest misconception some people might have about Dana White: ""I…" +07/02/2018,Sports_celeb,@JoelEmbiid,MOOD #TheProcess https://t.co/uwsCLVCSth +06/30/2018,Sports_celeb,@JoelEmbiid,The Lakers are FOREVER gonna be Kobe’s and Magic’s team.... Process that +06/30/2018,Sports_celeb,@JoelEmbiid,Lmao ok https://t.co/AnzzVKiDeS +06/30/2018,Sports_celeb,@JoelEmbiid,Real Madrid needs to go get my Cameroonian buddy Mbappe... He’s a beast #HalaMadrid +06/30/2018,Sports_celeb,@JoelEmbiid,ALLEZ LES BLEUS +06/27/2018,Sports_celeb,@JoelEmbiid,THIS IS NUTS!!!!!! WOW GERMANY +06/26/2018,Sports_celeb,@JoelEmbiid,Excited to finally reveal that I’m on the cover of @easportsnba #NbaLive19 https://t.co/q1yWwBH1gc +06/23/2018,Sports_celeb,@JoelEmbiid,OMG TONY KROOS!!!! WHAT A GOAL #HalaMadrid +06/23/2018,Sports_celeb,@JoelEmbiid,This is such a great game but Germany being almost out is nuts +06/22/2018,Sports_celeb,@JoelEmbiid,#StriveforGreatness https://t.co/2EYenrqeDy +06/22/2018,Sports_celeb,@JoelEmbiid,Don’t compare Ayton to me either... I play DEFENSE +06/22/2018,Sports_celeb,@JoelEmbiid,Keep my name out of this lol +06/21/2018,Sports_celeb,@JoelEmbiid,Cash considerations +06/21/2018,Sports_celeb,@JoelEmbiid,Au moins la France a gagné aujourd'hui #AllezLesBleus +06/21/2018,Sports_celeb,@JoelEmbiid,Diego Maradona and Leo Messi don’t deserve this #HalaMadrid +06/21/2018,Sports_celeb,@JoelEmbiid,I’m deadass about to cry 😭😭😭 +06/21/2018,Sports_celeb,@JoelEmbiid,I feel bad for Messi 😢😢 +06/17/2018,Sports_celeb,@JoelEmbiid,Wow Germany losing is nuts +06/09/2018,Sports_celeb,@JoelEmbiid,Trust The Process!!!! Find a new slant @KingJames +06/07/2018,Sports_celeb,@JoelEmbiid,KD IS NOT NICE +06/07/2018,Sports_celeb,@JoelEmbiid,SIPS......... +06/01/2018,Sports_celeb,@JoelEmbiid,He’s really tryna take that Shaqtin A fool MVP from me lmao +06/01/2018,Sports_celeb,@JoelEmbiid,Jr is on that henny lol https://t.co/0GBhgXjVyt +05/30/2018,Sports_celeb,@JoelEmbiid,Fun night on Twitter lmao.. All jokes asides I don’t believe the story. That would just be insane +05/30/2018,Sports_celeb,@JoelEmbiid,Lmao CJ.. you just gotta trust it https://t.co/Igl0MZouzQ +05/30/2018,Sports_celeb,@JoelEmbiid,I’m upset @drake +05/30/2018,Sports_celeb,@JoelEmbiid,Joel told me that @samhinkie IS BETTER AND SMARTER THAN YOU @AlVic40117560 #BurnerAccount +05/30/2018,Sports_celeb,@JoelEmbiid,BRUH https://t.co/hv59PDxlgY +05/28/2018,Sports_celeb,@JoelEmbiid,Now we’re on the same couch lol +05/28/2018,Sports_celeb,@JoelEmbiid,Amazing what Bron has been able to do... That’s tough +05/28/2018,Sports_celeb,@JoelEmbiid,"RT @DrewHanlen: If @JoelEmbiid got all the calls that LeBron gets, he’d average 40 PPG!" +05/28/2018,Sports_celeb,@JoelEmbiid,JAYSON TATUM 👀👀👀 +05/26/2018,Sports_celeb,@JoelEmbiid,Real Madrid better not sell Bale this summer.. he’s a beast and we all knew it #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Man bun had one of the sickest goals ever #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Omg Holy shit!!! That was one of the best goals I’ve ever seen OMG #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,What a goal haha @realmadrid #HalaMadrid +05/26/2018,Sports_celeb,@JoelEmbiid,Pusha T couldn’t #DrakeIsTheGOAT https://t.co/UWtSkGsi9j +05/26/2018,Sports_celeb,@JoelEmbiid,I do HATE my couch right now +05/26/2018,Sports_celeb,@JoelEmbiid,I was gonna tweet about ponytail but y’all are gonna ask me about my lovely couch lmao😂😂😂 +05/22/2018,Sports_celeb,@JoelEmbiid,Man bun is in NBA just to get dunked on +05/10/2018,Sports_celeb,@JoelEmbiid,Not the way I wanted it to end but Hell of a series... Much respect to Boston and those fans.. y’all made it fun… https://t.co/iBhZvhy49I +04/14/2018,Sports_celeb,@JoelEmbiid,It’s about that time!!! #Playoffs #PhantomofTheProcess https://t.co/zq8dPrgk0F +04/12/2018,Sports_celeb,@JoelEmbiid,“No one cared who I was until I put on the mask”.... The Phantom of The Process https://t.co/JOkQxCAxYA +04/11/2018,Sports_celeb,@JoelEmbiid,On the way to winning another Champions league... Keep it going @realmadrid #HalaMadrid +04/11/2018,Sports_celeb,@JoelEmbiid,LETS F****** GO #HalaMadrid +04/11/2018,Sports_celeb,@JoelEmbiid,These champions league games have been insane... come on Madrid #HalaMadrid +04/07/2018,Sports_celeb,@JoelEmbiid,What a game!!!! #TheProcess +04/05/2018,Sports_celeb,@JoelEmbiid,Yes sir... Always gotta #TrustTheProcess @Phillies https://t.co/cAvW5GqSPt +04/01/2018,Sports_celeb,@JoelEmbiid,“Process” stop... I thought you were an ALL STAR https://t.co/MyZk9Lv5wg +04/01/2018,Sports_celeb,@JoelEmbiid,Babe are you single or nah? @rihanna +04/01/2018,Sports_celeb,@JoelEmbiid,Man am I high or these dudes are so hot from 3? Come on +04/01/2018,Sports_celeb,@JoelEmbiid,Sitting here high and watching the game like https://t.co/aTeHLdDaq9 +04/01/2018,Sports_celeb,@JoelEmbiid,THIS IS BRUTAL.... I’m literally trying to take my mind off this pain but Kansas is not helping #RockChalk +03/30/2018,Sports_celeb,@JoelEmbiid,I guess I gotta trust “The Process” that I’ve been preaching... Unfortunate freak accident but I’ll be more than fi… https://t.co/pAofaydSGs +03/28/2018,Sports_celeb,@JoelEmbiid,Baby bounce 💪🏽💪🏽 #NbaVote2017 #TheProcess https://t.co/LPpfzYrhZX +03/27/2018,Sports_celeb,@JoelEmbiid,So happy and proud of my brother... Great having you back!!! The future is bright #TheProcess https://t.co/O9ch4cvy3e +03/26/2018,Sports_celeb,@JoelEmbiid,@MarkelleF https://t.co/0XBZKhhj95 +03/26/2018,Sports_celeb,@JoelEmbiid,On a mission😤😤😤 #TheProcess https://t.co/vutmXUxd3q +03/25/2018,Sports_celeb,@JoelEmbiid,GAME OVER>>> ROCKCHALK JAYHAWK!!! What a game huh @JJRedick +03/25/2018,Sports_celeb,@JoelEmbiid,KANSAS BALL +03/25/2018,Sports_celeb,@JoelEmbiid,Come on KU #DukevsKansas +03/25/2018,Sports_celeb,@JoelEmbiid,This game was the talk of both towns tonight.. NOTHING TO SEE HERE. GOODNIGHT #TheProcess https://t.co/YqFPnaV0H6 +03/23/2018,Sports_celeb,@JoelEmbiid,🧐🧐EMBIID CURRY???? Btw 2 wins away for you #TheProcess https://t.co/euPtfRTmHn +03/23/2018,Sports_celeb,@JoelEmbiid,MOOD #TheProcess https://t.co/PcIHXYLulC +03/22/2018,Sports_celeb,@JoelEmbiid,COLIN COWARD.... Coach deserves a lot of credit #40wins #TheProcess https://t.co/HDFUdh3mKE +03/20/2018,Sports_celeb,@JoelEmbiid,Processing these TOs #TheProcess https://t.co/c7oMHIVJtT +03/19/2018,Sports_celeb,@JoelEmbiid,Helping my man @KevinHart4Real find a CourtSidekick so he can have someone other than me to talk to during the game… https://t.co/OzpcLdrEu7 +03/19/2018,Sports_celeb,@JoelEmbiid,This Nevada Cincinnati game is insane #MarchMadness +03/17/2018,Sports_celeb,@JoelEmbiid,Thanks for all the birthday wishes.. I love y’all... Great win tonight #TheProcess https://t.co/9buVyqz0Dk +03/11/2018,Sports_celeb,@JoelEmbiid,Aye that's my guy so looks like I might have to switch sports @CameronNewton you need a wide receiver? 👀👀👀 https://t.co/NWioDQooZh +03/11/2018,Sports_celeb,@JoelEmbiid,🔥🔥🔥🔥 https://t.co/wRWBDtcCM5 +03/07/2018,Sports_celeb,@JoelEmbiid,No bounce #TheProcess https://t.co/PzqzNaOZVp +03/06/2018,Sports_celeb,@JoelEmbiid,HALA MADRID #IciCEstPasPARIS +03/06/2018,Sports_celeb,@JoelEmbiid,Just build a new one https://t.co/SfzDWjNDn8 +03/05/2018,Sports_celeb,@JoelEmbiid,Man Sixers fans are the best.. Really appreciate y’all.. The love and the passion that y’all have is kinda insane b… https://t.co/dtb8VEng7t +03/03/2018,Sports_celeb,@JoelEmbiid,Great comeback win tonight #TheProcess https://t.co/Cb9gHTsbP8 +03/02/2018,Sports_celeb,@JoelEmbiid,It’s not what y’all think lol +03/02/2018,Sports_celeb,@JoelEmbiid,Trust The Process??? Always a great time playing against one of the best to ever play the game #summer2018goals https://t.co/4bY941yyRO +02/25/2018,Sports_celeb,@JoelEmbiid,🔥🔥🔥🔥🔥🔥🔥 #TheProcess https://t.co/An8dkMmJ5X +02/23/2018,Sports_celeb,@JoelEmbiid,No weakness!!!! What an ending out in Chi-Town #TheProcess https://t.co/PXeJ9PWBDy +02/22/2018,Sports_celeb,@JoelEmbiid,Let's get it!!! @HyperX ✖ #TheProcess #ad 🎮 https://t.co/V9Npptv1lY https://t.co/26J8BnyKB1 +02/19/2018,Sports_celeb,@JoelEmbiid,First All Star game and it was an amazing experience!! Learned a lot and decided not to troll tonight #TheProcess https://t.co/JT03oqGjNc +02/18/2018,Sports_celeb,@JoelEmbiid,How can you make a pass if all three balls are gone? https://t.co/o7Eunz0lBW +02/18/2018,Sports_celeb,@JoelEmbiid,"It’s not cheating, it’s called being smart lol https://t.co/FIVWSncFWV" +02/14/2018,Sports_celeb,@JoelEmbiid,"Désolé les français, ici c’est pas Paris #HalaMadrid" +02/14/2018,Sports_celeb,@JoelEmbiid,Haha Our season is not over #HalaMadrid +02/14/2018,Sports_celeb,@JoelEmbiid,Let’s go!!!!! CR7⚽️⚽️ HalaMadrid #GoalGoalGoal +02/14/2018,Sports_celeb,@JoelEmbiid,Hala Madrid +02/14/2018,Sports_celeb,@JoelEmbiid,Time to get back on track @realmadrid #HalaMadrid +02/13/2018,Sports_celeb,@JoelEmbiid,The GOAT @TJMcConnell #TheProcess https://t.co/usJMRri0Os +02/11/2018,Sports_celeb,@JoelEmbiid,Windmill shawtyyyy #TheProcess https://t.co/VMRr0r2fa2 +02/08/2018,Sports_celeb,@JoelEmbiid,Wow this is crazy lol.... The NBA is amazing +02/05/2018,Sports_celeb,@JoelEmbiid,Congrats to the Eagles on the Super Bowl #FlyEaglesFly +02/05/2018,Sports_celeb,@JoelEmbiid,OMG!!!!!! HOLY SHIT +02/05/2018,Sports_celeb,@JoelEmbiid,Wow big play!!!! +02/03/2018,Sports_celeb,@JoelEmbiid,Arsenal is cooking #Gunners +02/02/2018,Sports_celeb,@JoelEmbiid,What a game!!!! +01/29/2018,Sports_celeb,@JoelEmbiid,Tough loss #TheProcess https://t.co/OFBvSyGJX1 +01/27/2018,Sports_celeb,@JoelEmbiid,Another one #0Turnovers #TheProcess https://t.co/fYyv7K6z9s +01/26/2018,Sports_celeb,@JoelEmbiid,Excited to join the #DEWxNBA team with @kylekuzma and @Dennis1SmithJr for #MtnDewKickstart Rising Stars! Let’s get it! #TheProcess +01/22/2018,Sports_celeb,@JoelEmbiid,One more half to go #FlyEaglesFly +01/21/2018,Sports_celeb,@JoelEmbiid,Getting it done #TheResults https://t.co/QSpOXPOpm5 +01/19/2018,Sports_celeb,@JoelEmbiid,Fantastic day!!!! We got a great win and I became an ALL STAR.... I wanna thank all of you guys out there and the o… https://t.co/qQhJldg0xm +01/16/2018,Sports_celeb,@JoelEmbiid,The GOAT in front of Joel hyping up the crowd #BurnerAccount #TheProcess https://t.co/DWPB6KI4CJ +01/16/2018,Sports_celeb,@JoelEmbiid,RT @thibautcourtois: @JoelEmbiid #NBAVOTE +01/15/2018,Sports_celeb,@JoelEmbiid,"Last day, RT THIS FOR ONE LAST TIME. Appreciate the support. TRUST IT!!!! + +Joel Embiid #NBAVote" +01/15/2018,Sports_celeb,@JoelEmbiid,My guys @thibautcourtois @hazardeden10 #TheProcess #TheBlues https://t.co/LGJIhnSjIf +01/15/2018,Sports_celeb,@JoelEmbiid,RT @JusAnderson1: 🚨 #NBAVote @JoelEmbiid Retweet the Hell outta this... Thanks! 🚨 +01/15/2018,Sports_celeb,@JoelEmbiid,RT @paulpogba: One more day to go! RT to cast your #NBAVOTE for @JoelEmbiid +01/14/2018,Sports_celeb,@JoelEmbiid,RT @JuliusErving: Retweet to help send @joelembiid to the all-star game! #NBAVote +01/14/2018,Sports_celeb,@JoelEmbiid,FLY EAGLES FLY #PhillyVsEverybody https://t.co/FYlVGT8xEz +01/14/2018,Sports_celeb,@JoelEmbiid,#FlyEaglesFly On to the next one +01/11/2018,Sports_celeb,@JoelEmbiid,"RT @DidTheSixersWin: Star Wars ✖️ The Process + +#NBAVote @JoelEmbiid https://t.co/qOuA5oxH5j" +01/08/2018,Sports_celeb,@JoelEmbiid,RT @JoshShapiroPA: I’m hoping that day comes at the #NBAAllStar2018 game. @JoelEmbiid #NBAVote #sixers https://t.co/H3tiMj9l8n +01/06/2018,Sports_celeb,@JoelEmbiid,Glad we didn’t blow another lead.. Joel Embiid #NBAVote https://t.co/Iuwfz4AKz6 +01/05/2018,Sports_celeb,@JoelEmbiid,"RT @sixers: It's up to you... send @JoelEmbiid & @BenSimmons25 to LA for the @NBAAllStar Game! + +2-FOR-1 #NBAVOTE » https://t.co/1Y7M23uEqQ…" +01/05/2018,Sports_celeb,@JoelEmbiid,Joel Embiid #NBAVote https://t.co/GCgVwnQRDR +01/04/2018,Sports_celeb,@JoelEmbiid,Starting 2018 the right way #TheProcess https://t.co/Z2rfmFE4jA +12/29/2017,Sports_celeb,@JoelEmbiid,"RT @AndreDrummond: Everyone retweet this + + #NBAVote Andre Drummond" +12/29/2017,Sports_celeb,@JoelEmbiid,"RT @sixers: 🚨 1 RETWEET = 1 VOTE 🚨 + +#NBAVOTE @JoelEmbiid https://t.co/qQ7EeNXTA8" +12/29/2017,Sports_celeb,@JoelEmbiid,RT @MarkelleF: #NBAVote @JoelEmbiid @BenSimmons25 +12/28/2017,Sports_celeb,@JoelEmbiid,#NBAVote @BenSimmons25 +12/28/2017,Sports_celeb,@JoelEmbiid,Catching up with my brother @antogriezmann 🤙🏽🤙🏽🤙🏽 #Grizi https://t.co/snoBM7Mpnm +12/25/2017,Sports_celeb,@JoelEmbiid,Great first Christmas game and we got the win.. Merry Christmas #TheProcess https://t.co/PEL8MhODEe +12/18/2017,Sports_celeb,@JoelEmbiid,Steelers definitely got screwed.. Those rules don’t make sense +12/18/2017,Sports_celeb,@JoelEmbiid,Wowww What a game!!!! #NEvsPIT +12/16/2017,Sports_celeb,@JoelEmbiid,Tough loss but what an atmosphere.. I loved it #TheProcess https://t.co/iqGZECGcVw +12/14/2017,Sports_celeb,@JoelEmbiid,Euro stepping our way through Minnesota and we ended up raising the cat last night #TheProcess https://t.co/3E90Ux47GG +12/11/2017,Sports_celeb,@JoelEmbiid,Prayers up to the brother @cj_wentz #GOD #AO1 +12/08/2017,Sports_celeb,@JoelEmbiid,Tough loss but met LaVar and he’s definitely fun and full of energy #TheProcess https://t.co/UiYHP8XLNA +12/07/2017,Sports_celeb,@JoelEmbiid,I thought I was gonna be around a bunch @sportsillustrated models but this is not a bad group to be with ha… https://t.co/jffLECbmvn +12/03/2017,Sports_celeb,@JoelEmbiid,Exciting and fun game tonight... Great battle against the big fella #TheProcess https://t.co/mffqKID9Mh +12/02/2017,Sports_celeb,@JoelEmbiid,JUICY LIPS #TheProcess https://t.co/ROtEZxgtS1 +11/30/2017,Sports_celeb,@JoelEmbiid,"My City, my rules. @champssports @torylanez @adidasoriginals #WeKnowGame https://t.co/rJNCifORym" +11/30/2017,Sports_celeb,@JoelEmbiid,We blew the lead but still got it done #TheProcess https://t.co/cJYsTdpuWH +11/29/2017,Sports_celeb,@JoelEmbiid,Moments like these are why I love playing the game... Shane’s reaction and face is priceless ❤️❤️❤️ #ThisWhyWePlay https://t.co/E5DbCAWovV +11/26/2017,Sports_celeb,@JoelEmbiid,Great team effort tonight.... We’re rolling #TheProcess https://t.co/DMVxp3peMI +11/23/2017,Sports_celeb,@JoelEmbiid,The love in this city is different.... Special connection we have... I really appreciate it #TheProcess https://t.co/fBEzzwu1GO +11/22/2017,Sports_celeb,@JoelEmbiid,@torylanez and I are up to something with @champssports @adidasoriginals https://t.co/BbcinwB46a +11/22/2017,Sports_celeb,@JoelEmbiid,"I see you #Phila fans, trusting #TheProcess. Top 10 on the @DICKS #JerseyReport  https://t.co/Vr3NnPpyjv. Blessed f… https://t.co/YLVMgIadnT" +11/21/2017,Sports_celeb,@JoelEmbiid,On to the next one!! #TheProcess https://t.co/Qset7vnvsv +11/19/2017,Sports_celeb,@JoelEmbiid,Dead Ass why is everyone making fun of my tweet? I was reflecting on what happened last night #TrustIt +11/19/2017,Sports_celeb,@JoelEmbiid,Gotta play for 48 mins... The warriors are amazing though #TheProcess +11/19/2017,Sports_celeb,@JoelEmbiid,Now we know what it feels like to blow a big lead.. Gotta stay focused to get the job done. Great learning lesson a… https://t.co/V9cC28xUwv +11/18/2017,Sports_celeb,@JoelEmbiid,"I see you #Phila fans, trusting #TheProcess. Top 10 on the @DICKS #JerseyReport  https://t.co/Vr3NnPpyjv. Blessed f… https://t.co/v99JRyzSFf" +11/17/2017,Sports_celeb,@JoelEmbiid,We had a great couple days in LA...... 👑👑 of LA #Jokes #NotThatSerious https://t.co/H1ODeIs21t +11/16/2017,Sports_celeb,@JoelEmbiid,I like Lonzo’s game... no shots towards him #TrustIt +11/16/2017,Sports_celeb,@JoelEmbiid,WHAT A NIGHT #TheProcess https://t.co/92q82Zzvzb +11/15/2017,Sports_celeb,@JoelEmbiid,Who’s mans is this? https://t.co/egq6Q2iaWi +11/11/2017,Sports_celeb,@JoelEmbiid,T #TTP https://t.co/C94SBVDPKv +11/11/2017,Sports_celeb,@JoelEmbiid,U https://t.co/3o0t5DJYye +11/03/2017,Sports_celeb,@JoelEmbiid,RT @Original_Turner: Time Flies @JoelEmbiid https://t.co/sjTsHykjwd +11/03/2017,Sports_celeb,@JoelEmbiid,“You know what time it is”..... That step back of course was coming +11/02/2017,Sports_celeb,@JoelEmbiid,Trust The Process #HeDiedForOurSins https://t.co/WZF9dXpdZ6 +11/02/2017,Sports_celeb,@JoelEmbiid,Rolling #TheProcess https://t.co/9jtM1NoN5s +10/30/2017,Sports_celeb,@JoelEmbiid,I think we as “The Dodgers” got game 6.. it’s definitely gonna be fun #WorldSeries +10/30/2017,Sports_celeb,@JoelEmbiid,I guess that was an amazing game.. +10/30/2017,Sports_celeb,@JoelEmbiid,Hell yea... what a game!!!!! #WorldSeries https://t.co/OLExipUfXW +10/30/2017,Sports_celeb,@JoelEmbiid,Let’s go ASTROS #WorldSeries #TheProcess https://t.co/mq0IoTdNPH +10/29/2017,Sports_celeb,@JoelEmbiid,In the house with Commissioner Manfred and company #WorldSeries #TheProcess https://t.co/bOExbUOwiA +10/27/2017,Sports_celeb,@JoelEmbiid,Ranking keeps rising on @DICKS #JerseyReport. Our fans are the best! Much love! https://t.co/I84L7bnzTo #TheProcess… https://t.co/VM8kZ2IA6J +10/26/2017,Sports_celeb,@JoelEmbiid,I’m nice 🔥🔥🔥 +10/26/2017,Sports_celeb,@JoelEmbiid,Markelle is 💩 at 2k +10/26/2017,Sports_celeb,@JoelEmbiid,💩 +10/26/2017,Sports_celeb,@JoelEmbiid,🔥 +10/24/2017,Sports_celeb,@JoelEmbiid,Great win tonight.. gotta keep on getting better #TheProcess https://t.co/CNPMCiHjTV +10/23/2017,Sports_celeb,@JoelEmbiid,"Met some @sixers fans with @DraftKings. When I needed some help, they all had my back. #BestFans +https://t.co/zMlGTrEHj6" +10/19/2017,Sports_celeb,@JoelEmbiid,And That was 32 career games.... Felt great out there #TheProcess https://t.co/RodTdUCHhq +10/14/2017,Sports_celeb,@JoelEmbiid,RT @andre: Da kid @JoelEmbiid is a God!!! +10/14/2017,Sports_celeb,@JoelEmbiid,Great way to end preseason with a win.It’s about to get real now.Thanks for all the love in Kansas. My location is… https://t.co/AG2in11yN1 +10/14/2017,Sports_celeb,@JoelEmbiid,RT @JoelEmbiid: Hassan Whiteside #NBAVote https://t.co/4dBXNZ2hUU +10/14/2017,Sports_celeb,@JoelEmbiid,"My bad y’all , I thought I was using my burner account #TheProcess" +10/14/2017,Sports_celeb,@JoelEmbiid,And keep caring about stats and not your team success..... your +/- was ass @youngwhiteside #Softy +10/14/2017,Sports_celeb,@JoelEmbiid,"Dude they had to take your ass out or you would’ve fouled out in 5 min... And we’re talking about Preseason, not re… https://t.co/GbAhzjHBYJ" +10/13/2017,Sports_celeb,@JoelEmbiid,There’s no place like home... So happy to be back where it all started. Hope to see everyone tomorrow night… https://t.co/hfrin8WQ1I +10/12/2017,Sports_celeb,@JoelEmbiid,Felt great to get back out there and get a win... The future is bright #TheProcess https://t.co/tuvREulpyR +10/10/2017,Sports_celeb,@JoelEmbiid,The Process to be continued...... I LOVE YOU PHILADELPHIA #5MoreYears https://t.co/Xop96EhRPA +10/08/2017,Sports_celeb,@JoelEmbiid,Omg Aaron Rodgers is the freaking GOAT... He did it again 🐐🐐🐐#GoPackGo +10/08/2017,Sports_celeb,@JoelEmbiid,Go Pack Go #LetsGoPackers +10/06/2017,Sports_celeb,@JoelEmbiid,I’m on a basketball court doing things lmao.... I’m back #TheProcess https://t.co/qN0WEzqFyQ +09/28/2017,Sports_celeb,@JoelEmbiid,Trust The Process https://t.co/7qHHiDomjz +09/27/2017,Sports_celeb,@JoelEmbiid,Year 2 or year 4 .... Another chance at Rookie Of The Year. Should be fun #TheProcess https://t.co/SJaJTUrYaC +09/26/2017,Sports_celeb,@JoelEmbiid,What A Time!!!! #TheProcess https://t.co/TTrOhT4tIY +09/25/2017,Sports_celeb,@JoelEmbiid,What a great game it was today for the eagles!!!!The city is on the rise. THANKS FOR ALL THE LOVE TOO #TheProcess… https://t.co/BRzo5GLkHj +09/24/2017,Sports_celeb,@JoelEmbiid,That was wild #FlyEaglesFly +09/24/2017,Sports_celeb,@JoelEmbiid,Eagles are rolling #FlyEaglesFly +09/18/2017,Sports_celeb,@JoelEmbiid,JOEL EMBIID IS BETTER THAN MJ EVER WAS @QuireSultan #FACTS #BurnerTwitter +09/17/2017,Sports_celeb,@JoelEmbiid,Damn YoungHoe definitely ain't Koo no more😩 +09/16/2017,Sports_celeb,@JoelEmbiid,I'm excited to play in the new Statement jersey this season. #TheProcess https://t.co/0WxL8FosEd +09/14/2017,Sports_celeb,@JoelEmbiid,TRUST IT https://t.co/Yiqz3oYRqF +09/14/2017,Sports_celeb,@JoelEmbiid,It's almost that time of the year... can't wait to shut these bums up and the Process never ends. JUST TRUST IT… https://t.co/Ccdm3b04kF +09/07/2017,Sports_celeb,@JoelEmbiid,#RunTheNeighborhood & activate my scene so I can talk to myself @NBA2K https://t.co/GVsUhhjVou https://t.co/E7JToUIoHT +08/27/2017,Sports_celeb,@JoelEmbiid,FLOYD MONEY MAYWEATHER!!!!!! That was super fun +07/18/2017,Sports_celeb,@JoelEmbiid,My Durability rating must've not allowed my 2k rating to be at least 95🤔🤔!!!! Gotta work on that #TheProcess +07/15/2017,Sports_celeb,@JoelEmbiid,My brother @paulpogba #TheProcess #LaLegende https://t.co/l2bYBC0CUj +07/11/2017,Sports_celeb,@JoelEmbiid,These kids were all trusting the Process at the baseball home run derby #TheProcessLovesTheKids https://t.co/EVz0xD7y7o +07/11/2017,Sports_celeb,@JoelEmbiid,Aaron Judge is a beast #HomeRunDerby2017 +07/11/2017,Sports_celeb,@JoelEmbiid,And I keep on collecting Balls... #HomeRunDerby https://t.co/7v0DG0drJO +07/11/2017,Sports_celeb,@JoelEmbiid,And I got a ball #HomeRunDerby2017 https://t.co/0kRHS7zLVp +07/11/2017,Sports_celeb,@JoelEmbiid,I killed a lion with my bare hands so I'm great lmao #TheProcess +07/02/2018,Sports_celeb,@ApoloOhno,Looks like someone learned a thing or two while on @dancingabc haha @juliannehough @specialolympics #Unification… https://t.co/1KRZG42k5f +07/01/2018,Sports_celeb,@ApoloOhno,I just made my pledge for inclusion @SpecialOlympics. Join @ESPN to help end discrimination against people with Int… https://t.co/VLCHJEAn8z +07/01/2018,Sports_celeb,@ApoloOhno,Let the @specialolympics games begin :-) espn @marshmellomusic @SO_Washington #fun #SpecialOlympics #team #espn… https://t.co/Owh6yh7QJf +07/01/2018,Sports_celeb,@ApoloOhno,RT @BigWalt71: PS. @ApoloOhno - the highlight of my day so far! https://t.co/EDEZw5C7B3 +07/01/2018,Sports_celeb,@ApoloOhno,"RT @SONorthAmerica: A little behind the scenes action at @2018USAGames Opening Ceremony with @ApoloOhno & @SO_Washington, reading an origin…" +07/01/2018,Sports_celeb,@ApoloOhno,Opening ceremonies about to begin!!! @specialolympics #specialOlympics #seattle #huskystadium #washington @ Univers… https://t.co/RNTWoxVYsK +07/01/2018,Sports_celeb,@ApoloOhno,Heading home for @specialolympics in Seattle!! #Inclusion #Specialolympics #Seattle #washington #home #sport #play… https://t.co/xqwz1Inida +06/30/2018,Sports_celeb,@ApoloOhno,"Big dreams, big plans, big vision! Reach higher :-) #Office #build #Asia #expansion #HQ #Focus #win https://t.co/QI2fLxob6e" +06/29/2018,Sports_celeb,@ApoloOhno,Back on the domestic grid #LA @ Los Angeles International Airport https://t.co/zn0c5HWmw1 +06/28/2018,Sports_celeb,@ApoloOhno,Digital nomad @ Ninoy Aquino International Airport https://t.co/DbIbopwPgc +06/27/2018,Sports_celeb,@ApoloOhno,Manila house #Manila #Fort #Philippines #Art @ Manila House Private Members Club https://t.co/Llb0JR6Svx +06/26/2018,Sports_celeb,@ApoloOhno,"Eyes ahead. Chin up. Focused and enjoying the journey :-) pic: Ironman Training run - 100+F, 100% humidity, no musi… https://t.co/7d4em8Trix" +06/25/2018,Sports_celeb,@ApoloOhno,All the way up :-) #Manila #Philippines #tech #Happy #Asia #fintech https://t.co/qBn2I8O1vO +06/24/2018,Sports_celeb,@ApoloOhno,RT @MichelleWKwan: Today is Olympic Day - a nostalgic time as I think about my experiences and how the Olympic values positively impacted m… +06/24/2018,Sports_celeb,@ApoloOhno,"Happy Olympic Day! #Olympic #Gold @ Mandarin Oriental, Taipei 台北文華東方酒店 https://t.co/fSR9igyVJa" +06/23/2018,Sports_celeb,@ApoloOhno,Pick your poison. #tpe #food #taipei https://t.co/vYTSYLJXmD +06/23/2018,Sports_celeb,@ApoloOhno,🤗🤗 https://t.co/XNGa5WljIb +06/22/2018,Sports_celeb,@ApoloOhno,Hot pot. Thanks Mr. Chen on your 39th location/restaurant! Amazing. https://t.co/aBqb6kSb1V +06/22/2018,Sports_celeb,@ApoloOhno,Welcome to Taipei 🤯❤️🔥🔥🔥🔥 #Mala #huoGuo #taiwan #taipei #hotpot #Happy https://t.co/g6594vX7Ei +06/21/2018,Sports_celeb,@ApoloOhno,RT @IVYconnect: IVY members in LA entered the world of cryptocurrency & blockchain this week with 8X Olympic medalist @ApoloOhno and Tether… +06/19/2018,Sports_celeb,@ApoloOhno,Thanks for having us tonight! Fun night speaking… https://t.co/CyGHURSYy3 +06/17/2018,Sports_celeb,@ApoloOhno,Happy Father’s Day! One of my favorite things to… https://t.co/vBRONMIdS5 +06/16/2018,Sports_celeb,@ApoloOhno,When will blockchain technology be integrated into Olympic city bidding processes and capital spend? #blockchain #Transparency #truths +06/15/2018,Sports_celeb,@ApoloOhno,Almost birthday time for my godson. The boss… https://t.co/AzXpY0gykC +06/15/2018,Sports_celeb,@ApoloOhno,@msantoriESQ Thanks @msantoriESQ keep these regular 21 tweet+ coming!!! +06/15/2018,Sports_celeb,@ApoloOhno,Summer is here :-) #CA #LA #64 #Cadillac @ Los… https://t.co/rTzaXgn6sV +06/13/2018,Sports_celeb,@ApoloOhno,Go further https://t.co/6qNuTH5IQz +06/13/2018,Sports_celeb,@ApoloOhno,A city within a city. One of the largest… https://t.co/ZfEeeH00wx +06/11/2018,Sports_celeb,@ApoloOhno,Just posted a photo https://t.co/sPkBwxDNGr +06/08/2018,Sports_celeb,@ApoloOhno,"Flashback to this magical place - Santorini,… https://t.co/8kzfkvjGvJ" +06/07/2018,Sports_celeb,@ApoloOhno,Out of a movie https://t.co/GRPMk78URX +06/04/2018,Sports_celeb,@ApoloOhno,Colorado Springs Olympic Training Center. https://t.co/WCJZV58UQE +05/28/2018,Sports_celeb,@ApoloOhno,Perfect workday. #Focused #Happy #Healthy… https://t.co/bqfz2hGSvP +05/26/2018,Sports_celeb,@ApoloOhno,Family is #1 :-) #manhattanassociates… https://t.co/CY07haXphx +05/23/2018,Sports_celeb,@ApoloOhno,Thank you for all the kind messages on this birthday :-) +05/22/2018,Sports_celeb,@ApoloOhno,"Mood! Birthday week. Gemini, year of the dog. 36… https://t.co/6ncw3mR1t2" +05/13/2018,Sports_celeb,@ApoloOhno,Happy Mother’s Day to my Obachan! And all the mommas out there! @… https://t.co/W2W613ioIe +05/13/2018,Sports_celeb,@ApoloOhno,Huo Guo adventures https://t.co/yVhQbBcw4N +05/11/2018,Sports_celeb,@ApoloOhno,@killabit ETF anyone? +05/09/2018,Sports_celeb,@ApoloOhno,Chicago - I’ve arrived :-) https://t.co/ImqpxL28lb +05/09/2018,Sports_celeb,@ApoloOhno,En route to Chicago! It’s been a minute! https://t.co/TJ2bqlB5Yz +05/09/2018,Sports_celeb,@ApoloOhno,Super throwback! https://t.co/obnFM47Y2X +05/07/2018,Sports_celeb,@ApoloOhno,@IamNomad @BillGates https://t.co/AwJVtXD0P9 +05/07/2018,Sports_celeb,@ApoloOhno,This was an incredibly memorable experience. See you soon NYC #FreedomTower… https://t.co/8R9uPxkGPw +05/06/2018,Sports_celeb,@ApoloOhno,"Sundaze @ Beverly Hills, California https://t.co/WT4R0HlOWS" +05/06/2018,Sports_celeb,@ApoloOhno,@ozsultan Just listened to one of the recent @badcrypto podcasts. Nice work OZ! Always spitting knowledge ! See you soon 💪💪💪🙌🏽🙌🏽🙌🏽 +05/05/2018,Sports_celeb,@ApoloOhno,"One of my fav streets in LA #LA #Trees #Breathe @ Beverly Hills, California https://t.co/GGVXwTZE9l" +05/04/2018,Sports_celeb,@ApoloOhno,😂😬 https://t.co/GcIcey5AN2 +05/04/2018,Sports_celeb,@ApoloOhno,Matrix https://t.co/gwfUmCzU8N +05/03/2018,Sports_celeb,@ApoloOhno,Operation optimize performance. Testing new products from The guys up north… https://t.co/WGXbk3pkDF +05/01/2018,Sports_celeb,@ApoloOhno,Congrats my fellow Asians who’ve impacted our community with the #A100 for the 50th Anniversary of Asian Americans! https://t.co/ls3v5ZItOT +05/01/2018,Sports_celeb,@ApoloOhno,"Milano! @ Mandarin Oriental, Milan https://t.co/bMXTd8mwXQ" +04/30/2018,Sports_celeb,@ApoloOhno,The crew eating seafood southern Italy :-) https://t.co/2vEjxSsgn5 +04/29/2018,Sports_celeb,@ApoloOhno,One...more...carb.... https://t.co/z0UpXl7pvm +04/29/2018,Sports_celeb,@ApoloOhno,"Always!!! @ Beverly Hills, California https://t.co/clvFbGLhY1" +04/28/2018,Sports_celeb,@ApoloOhno,"Barcelona calm... @ Barcelona, Spain https://t.co/STr4CQNxAB" +04/27/2018,Sports_celeb,@ApoloOhno,“Don’t gain the world and lose your soul. Wisdom is better than silver and gold” Zion train @… https://t.co/gULHDoJs2y +04/25/2018,Sports_celeb,@ApoloOhno,When in Rome.... https://t.co/EflN1CNSF1 +04/25/2018,Sports_celeb,@ApoloOhno,And of course the food 🤗 #Italy #CinqueTerre @ Cinque Terre Riviera https://t.co/mQLR7Z3sSg +04/24/2018,Sports_celeb,@ApoloOhno,:-) @ Cinque Terre https://t.co/cbn8u13t8I +04/23/2018,Sports_celeb,@ApoloOhno,"Marseille, France @ Marseille, France https://t.co/aCOTIrdaUq" +04/23/2018,Sports_celeb,@ApoloOhno,Just posted a photo @ Hôtel Le Pigonnet https://t.co/B3cV3evakd +04/22/2018,Sports_celeb,@ApoloOhno,@IamNomad 👍👍 +04/22/2018,Sports_celeb,@ApoloOhno,"Palma De Mallorca! @ Palma De Mallorca, Spain https://t.co/8y8KG5haHO" +04/20/2018,Sports_celeb,@ApoloOhno,More UAE https://t.co/5kTt2d4rm4 +04/20/2018,Sports_celeb,@ApoloOhno,🙌🏽🙌🏽🙌🏽🙌🏽 #abudhabi https://t.co/jAvW0wXubA +04/20/2018,Sports_celeb,@ApoloOhno,Absolutely incredible. The interior of the Sheikh Zayed Mosque in Abu Dhabi was breathtaking...… https://t.co/rIgyLEvhQ8 +04/18/2018,Sports_celeb,@ApoloOhno,"#dubai @ Dubai, United Arab Emirates https://t.co/TQJF21Mrxz" +04/18/2018,Sports_celeb,@ApoloOhno,"From sand.... @ Dubai, United Arab Emirates https://t.co/1XW9Eyi1FC" +04/15/2018,Sports_celeb,@ApoloOhno,"Post hummus, baba ganouj, kebab, fattoush, lebne, coma... @ Em Sherif Dubai https://t.co/VBo7RXWHAy" +04/14/2018,Sports_celeb,@ApoloOhno,Stunning!! @ Burj Khalifa https://t.co/HiNZDShAUa +04/12/2018,Sports_celeb,@ApoloOhno,@carlquintanilla @jbillinson And we are back!!! +04/11/2018,Sports_celeb,@ApoloOhno,Beautiful and strong! #nyc @ Freedom Tower https://t.co/tUzcoHGJxe +04/04/2018,Sports_celeb,@ApoloOhno,Please Join me and become a member of the USA Games 2018 Club. You’ll support the Special Olympics athletes competi… https://t.co/bDS5hCw7Uk +03/29/2018,Sports_celeb,@ApoloOhno,"@kalamarides @AAOsAwesomeFans @Prudential Thank you! We are all in this process together. Growing, learning, becomi… https://t.co/rssF7NFxzi" +03/28/2018,Sports_celeb,@ApoloOhno,Great to spend time today with @Kalamarides and the team @Prudential learning about how they're working to put… https://t.co/BqRehmwpn9 +03/27/2018,Sports_celeb,@ApoloOhno,@forexposure_txt @IamNomad 😩😅😂🤣🤣🤣🤣 +03/24/2018,Sports_celeb,@ApoloOhno,I love this city! #nyc #ny https://t.co/DRldYEW2jK +03/21/2018,Sports_celeb,@ApoloOhno,Ventured out for a meal in Chinatown. Owner/Chef of “Hwa Yuan” Chen Lieh Tang was quite the… https://t.co/20lryUluk5 +03/20/2018,Sports_celeb,@ApoloOhno,"Back in one of the greatest cities in the world. NYC! Busy week ahead, filled with reflection and gratitude from th… https://t.co/nli9oiJfGI" +03/19/2018,Sports_celeb,@ApoloOhno,"Charity concert to benefit the Puerto Rico! Thank you Matt and team! #PR #puertorico @ San Juan,… https://t.co/PEW3kP7zbD" +03/18/2018,Sports_celeb,@ApoloOhno,Rings of strength and unity here in PR #Global #Olympic https://t.co/5BY5Fh9zWf +03/16/2018,Sports_celeb,@ApoloOhno,"Magical!! #pr #puertorico @ San Juan, Puerto Rico https://t.co/S5N3pflioC" +03/12/2018,Sports_celeb,@ApoloOhno,Thanks for the nice chat Matt! Always fun to give perspective on the various challenges of this sphere. https://t.co/u9MY4UbpUe +03/09/2018,Sports_celeb,@ApoloOhno,Better late than never....happy Chinese New Year of the dog! #hkg #cny https://t.co/MYU4RgKXBM +03/07/2018,Sports_celeb,@ApoloOhno,The secret to winning Gold? You gotta visualize it! #HersheysGold #TastetheGold @Hersheys #ad https://t.co/RePOHJPFA9 +03/04/2018,Sports_celeb,@ApoloOhno,The never ending city #HK #2ndHome https://t.co/xFMvRQOz2h +02/27/2018,Sports_celeb,@ApoloOhno,"RT @NBCLatino: “The island was devastated to a degree that surprised everyone,” says Winter Olympian @ApoloOhno as he joins efforts to brin…" +02/26/2018,Sports_celeb,@ApoloOhno,"#Repost @wsjphotos +・・・ +Two-time Olympic speed skating gold medalist, Apolo Ohno reveals the… https://t.co/ASFF4b9guT" +02/25/2018,Sports_celeb,@ApoloOhno,Congratulations @AryFonta such an amazing career! #olympic #shorttrack #Olympic #speedskating… https://t.co/GsU1RKPGDp +02/24/2018,Sports_celeb,@ApoloOhno,Ice this pavement and we have a new sport inside the Olympic Park! #korea #pyeongchang2018… https://t.co/0dXZLinPSN +02/23/2018,Sports_celeb,@ApoloOhno,So happy for the women’s hockey team. Showed incredible resolve and strength. 20 years in the… https://t.co/EuchopUuUs +02/23/2018,Sports_celeb,@ApoloOhno,RT @NBCSportsPR: “This is just like #NASCAR on ice.” – @DaleJr joins @tedjrobinson & @ApoloOhno in the #shorttrack booth #WinterOlympics ht… +02/22/2018,Sports_celeb,@ApoloOhno,Congrats @TeamUSA on your gold medal in Women's Ice Hockey! No one deserves Gold more than you! #HersheysGold… https://t.co/TPXvGy0y1g +02/22/2018,Sports_celeb,@ApoloOhno,Look who joins us in the madhouse tonight!! dalejr hope you enjoyed short track :-) @nascar on… https://t.co/dWWZu3HKf2 +02/21/2018,Sports_celeb,@ApoloOhno,I wanted to provide some clarity for the confused viewers out there (like me). For all of the… https://t.co/aKBt9z6ZgZ +02/21/2018,Sports_celeb,@ApoloOhno,RT @tedjrobinson: Asked many smart people about SKorea skater fall that took out Canada. Told it’s not a foul as Kim had already pushed off… +02/20/2018,Sports_celeb,@ApoloOhno,This makes me happy :-) #Olympic #Life #pyeongchang2018 https://t.co/stRmMTQDcI +02/20/2018,Sports_celeb,@ApoloOhno,"30% of Puerto Rico is #StillInTheDark. I’m the #VIKTREChallenge captain of Team Olympics, and I challenge fellow Ol… https://t.co/zR1EGhbu5Q" +02/18/2018,Sports_celeb,@ApoloOhno,"The mountains are calling and I must go. - John Muir + +#pyeongchang2018 @olympics #Olympic… https://t.co/xv4efkH1mt" +02/17/2018,Sports_celeb,@ApoloOhno,@CryptoMClive Yes! That’s us :-) +02/17/2018,Sports_celeb,@ApoloOhno,Exploring this amazing place! Traditional Gangneung style Korean food + hallways full of markets… https://t.co/1CrzMf5YyG +02/16/2018,Sports_celeb,@ApoloOhno,"Celebrating #WinterOlympics @Todayshow and anticipating Gold, and I’m not just talking about medals! #HersheysGold… https://t.co/ZnrVWaIQMq" +02/15/2018,Sports_celeb,@ApoloOhno,High-Tech Skate. #Olympics #Skate #korea @ Gangneung Olympic Park https://t.co/DsAhQ8eHpG +02/15/2018,Sports_celeb,@ApoloOhno,The love for the Olympics and Speedskating has no borders! The Dutch showing some skillfully… https://t.co/K4HvMlC6Nc +02/13/2018,Sports_celeb,@ApoloOhno,The best place to be :-) Short Track Gangneung Ice Arena women’s 500m final +Mens’s 5000m relay.… https://t.co/qZwfyfGYNQ +02/13/2018,Sports_celeb,@ApoloOhno,Long Track Speedskating. A beautiful venue filled with fans from all over the world...cheering… https://t.co/7XGmdUeF0v +02/13/2018,Sports_celeb,@ApoloOhno,@bennyluo My man! See you soon +02/11/2018,Sports_celeb,@ApoloOhno,@RedmondGerard just took Gold everybody! I’m celebrating Red’s incredible performance with #HersheysGold… https://t.co/bIbd3JxnnI +02/11/2018,Sports_celeb,@ApoloOhno,"Just watched the mens Long Track 5,000m. Incredible. Don't want to spoil - but check it out. Mastery!!!… https://t.co/Hawsfwgrjm" +02/09/2018,Sports_celeb,@ApoloOhno,@danylemay_ @FLTremblay @USSpeedskating @PatinVitesseQc @SSC_PVC Man..our hair 😂😂😂😂😂🤯 +02/09/2018,Sports_celeb,@ApoloOhno,The Trophy Case is where I keep all my most treasured possessions. Check out the newest #ad I made for… https://t.co/7bbfgnrjzo +02/09/2018,Sports_celeb,@ApoloOhno,An epic moment tonight :-) #pyeongchang2018 @olympics #openingceremony #2018 #southkorea… https://t.co/zbsLS3PgLm +02/09/2018,Sports_celeb,@ApoloOhno,RT @tedjrobinson: North Korean short track skater Jong Kwang-Bom not only practiced alongside the South Korean team but talked with skaters… +02/08/2018,Sports_celeb,@ApoloOhno,Home :-) https://t.co/KXssg3z1FS +02/08/2018,Sports_celeb,@ApoloOhno,RT @VIKTRESocial: Puerto Rico was hit hard by Hurricane Maria. But a group of pro-athletes and the Foundation for Puerto Rico are crowdfund… +02/08/2018,Sports_celeb,@ApoloOhno,RT @Hersheys: Am I a little obsessed with Gold? Oh Yes. #HersheysGold #TasteTheGold https://t.co/alpW1xwNKL +02/08/2018,Sports_celeb,@ApoloOhno,RT @GivingCompass: Puerto Rico isn't being forgotten. U.S. #Olympic legend @ApoloOhno and other athletes are chipping in to help bring sola… +02/07/2018,Sports_celeb,@ApoloOhno,6am run. Cold as hell. Perfect :-) #pyeongchang2018 @olympics @ Gangneung https://t.co/MCP5y293Y9 +02/06/2018,Sports_celeb,@ApoloOhno,Seaside for the Winter Games :-) #pyeongchang2018 @nbcolympics #olympics @ PyeongChang https://t.co/tSFa6cBDbd +02/04/2018,Sports_celeb,@ApoloOhno,Thank you thank you thank you to these amazing men and women here at Osan Air Base. We came down… https://t.co/yb2TqfpE7v +02/03/2018,Sports_celeb,@ApoloOhno,Landed in S. Korea :-) the energy in this country has always been so unique and special. This… https://t.co/tBKuhYV7eG +02/01/2018,Sports_celeb,@ApoloOhno,From city to sea. LA LA land #la https://t.co/N2HczyXBgZ +02/01/2018,Sports_celeb,@ApoloOhno,RT @FastCompany: These pro athletes are raising money to bring solar power to Puerto Rico https://t.co/jaFDyYSmgU https://t.co/TOxMUfCJq5 +02/01/2018,Sports_celeb,@ApoloOhno,"Team we are making big impact where it's needed! @VIKTRESocial +#puertoRico #power #Team +https://t.co/0mz0bWxyqI" +01/30/2018,Sports_celeb,@ApoloOhno,Olympics are here! pyeongchang2018 https://t.co/rxY7pMlMe7 +01/27/2018,Sports_celeb,@ApoloOhno,"SF you’ve always made me smile in my heart, belly, and eyes. I love this place! #sf #minds… https://t.co/wuMJs1RM9T" +01/26/2018,Sports_celeb,@ApoloOhno,Fresh off the plane into meetings and now @stanford my dream alumni :-) I’m instantly inspired… https://t.co/Uww6EguaIA +01/24/2018,Sports_celeb,@ApoloOhno,Planning. SF I’ll see you tomorrow! https://t.co/bBpUgB2Wbr +01/24/2018,Sports_celeb,@ApoloOhno,@AAOsAwesomeFans True. +01/22/2018,Sports_celeb,@ApoloOhno,Today’s the day - the official launch of #VIKTREChallenge - Power for Puerto Rico! Half of… https://t.co/aqlNSDp3hy +01/18/2018,Sports_celeb,@ApoloOhno,2018...don’t lose sight of the goals you’ve set. Hold the line. Be strong. Focused. Get it!!!… https://t.co/qo0preuKw9 +01/18/2018,Sports_celeb,@ApoloOhno,Well done Matt!!! #miami #digital #blockchain @ James L Knight Center https://t.co/PKthHGtzag +01/16/2018,Sports_celeb,@ApoloOhno,RT @SMMadagency: The Hershey Company has said that it will tweet a link to a Hershey’s Gold coupon every time Team USA wins a gold medal du… +01/15/2018,Sports_celeb,@ApoloOhno,@crypto_bobby Reach out to Reeve - he can shed light on some really amazing partnerships and 1/2nd quarter plans for BlockV. +01/15/2018,Sports_celeb,@ApoloOhno,"Family is everything. #Family #la #Pops biancawstam @ Mastro's Restaurants - Steakhouse, Beverly… https://t.co/L0vHNUF30Z" +01/15/2018,Sports_celeb,@ApoloOhno,@Disruptepreneur Great video @Disruptepreneur - This is how you should always be captured and displayed imo. +01/15/2018,Sports_celeb,@ApoloOhno,@Echelon1969 LOVE it. +01/13/2018,Sports_celeb,@ApoloOhno,Throwback! Nothing quite like competing on the world stage at the pinnacle of all sport. The… https://t.co/XnPGPzT0GX +01/12/2018,Sports_celeb,@ApoloOhno,"Is this real life? #puppy #puppies #ride #foolery #friday @ Bel Air, Los Angeles https://t.co/2ZL1dER7XC" +01/12/2018,Sports_celeb,@ApoloOhno,"RT @ahhnalin: .@ApoloOhno stars in TV, social ads for #HersheysGold launch #TastetheGold https://t.co/9CCUMhjJ0J @KLmarketdaily" +01/12/2018,Sports_celeb,@ApoloOhno,"RT @zaoyang: Courage, conviction, grit are the scarcest resources in the world. Scarcer than IQ, brilliance, and money." +01/11/2018,Sports_celeb,@ApoloOhno,"RT @adage: .@ApoloOhno talks social media's influence on competitive sports and why blockchain is ""the greatest invention since the interne…" +01/09/2018,Sports_celeb,@ApoloOhno,"We know who wears the pants around here. 😫🐒 #puppy #love #animals #happy #LA @ Los Angeles,… https://t.co/NHpVb29MiB" +01/08/2018,Sports_celeb,@ApoloOhno,"RT @NBCOlympics: The #WinterOlympics are coming to @nbc in only ONE. MORE. MONTH. #BestOfUS + +Get ready! Sign up for NBC Olympics newsletter…" +01/07/2018,Sports_celeb,@ApoloOhno,Taking it back! Hometown Seattle love here! Had an incredible partnership with Alaska airlines… https://t.co/fj1efzeP9r +01/05/2018,Sports_celeb,@ApoloOhno,@davidmeltzer 🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽🙌🏽 +01/05/2018,Sports_celeb,@ApoloOhno,"RT @davidmeltzer: Check out Top Moments from #ThePlaybook in 2017. Including All-Pro athletes, broadcasters, Olympians, and sports executiv…" +01/05/2018,Sports_celeb,@ApoloOhno,"RT @Disruptepreneur: Mark Zuckerberg’s 2018 personal challenge is to fix his company... and learn more about decentralization, cryptocurren…" +01/05/2018,Sports_celeb,@ApoloOhno,@IamNomad Haha +01/02/2018,Sports_celeb,@ApoloOhno,@PeterLBrandt 100% 🙌🏽🙏 +12/31/2017,Sports_celeb,@ApoloOhno,RT @Hersheys: Ring in the new year by experiencing an entirely new flavor. #HersheysGold #TasteTheGold https://t.co/EClh7BBXuv +12/30/2017,Sports_celeb,@ApoloOhno,😫😭😭😭😭😭 so cute https://t.co/WdxlxNcK0I +12/29/2017,Sports_celeb,@ApoloOhno,@IamNomad @MikelGiustinian ha! +12/27/2017,Sports_celeb,@ApoloOhno,@ManorMolly Domestic vs int racing is much different +12/25/2017,Sports_celeb,@ApoloOhno,Merry Christmas from the Ohno family! Haha started out hyping up my incredible world famous… https://t.co/EgGfjywqVK +12/25/2017,Sports_celeb,@ApoloOhno,Happy Holidays :-) spending the week with my pop and loved ones :-) +12/23/2017,Sports_celeb,@ApoloOhno,@kevinrose 🙌🙌🙌🙌 +12/23/2017,Sports_celeb,@ApoloOhno,@kevinrose Very well said. Thank you! +12/23/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur Sweet moses +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Dream exchange? Can you list what you'd like to see vs what is currently available... +12/20/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @mrbrockvond I do too. +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Stay focused. Eyes on the prize. +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Any response from Brian directly? +12/20/2017,Sports_celeb,@ApoloOhno,@IamNomad Strong move sir. Strong move. +12/20/2017,Sports_celeb,@ApoloOhno,"RT @TeamUSA: Born of South Korean heritage, qualifying for the #WinterOlympics has a special meaning for Thomas Hong. This February, he’ll…" +12/19/2017,Sports_celeb,@ApoloOhno,@TeamApolo Happy Birthday! Thank you for all the support. Enjoy your special day! +12/19/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @AugurProject Congratulations brother! +12/19/2017,Sports_celeb,@ApoloOhno,@officialmcafee Strong. +12/18/2017,Sports_celeb,@ApoloOhno,@scottwalker99 Preach Scotty! +12/18/2017,Sports_celeb,@ApoloOhno,"Congratulations to this team! A weekend filled with ups and downs, but perseverance, strength,… https://t.co/KDxKTf7kG8" +12/17/2017,Sports_celeb,@ApoloOhno,Final day of the Short Track Olympic Trials. Leave it all out on the ice. Zero regrets. @ Utah… https://t.co/MLkoEvCdf0 +12/15/2017,Sports_celeb,@ApoloOhno,We are back!!! Live on @nbc @nbcolympics tonight covering the Olympic Trials for Short Track… https://t.co/JPxak4AXjo +12/14/2017,Sports_celeb,@ApoloOhno,Reliving the golden days & getting ready to cheer on @TeamUSA at the #WinterOlympics with @Hersheys #HERSHEYSGOLD… https://t.co/kmEyX0FCS1 +12/13/2017,Sports_celeb,@ApoloOhno,@FoxBusiness @tylerwinklevoss Strong brother. Very strong. Cheering you guys on while participating at the same time :-) +12/12/2017,Sports_celeb,@ApoloOhno,@Shutterstock need some serious help in the customer service department. +12/11/2017,Sports_celeb,@ApoloOhno,A room of power players! Thanks and happy birthday to @bingchen - #Gold #celebrate @ GRAMMY Museum https://t.co/5YKpnqSjZ3 +12/08/2017,Sports_celeb,@ApoloOhno,Shot this commercial yesterday w/ partner hersheys haha can’t wait until you guys see it! https://t.co/ydrKSf85yb +11/27/2017,Sports_celeb,@ApoloOhno,"Wow! What an incredible culinary treasure with chefjameswon in Malaysia. One of a kind. Design,… https://t.co/kNux8hCEVt" +11/27/2017,Sports_celeb,@ApoloOhno,@RudiPermana I agree! Working on it +11/25/2017,Sports_celeb,@ApoloOhno,"Couldn’t squeeze much more into this energy packed room full of beautiful, amazing, and… https://t.co/gyS7wsEzxY" +11/25/2017,Sports_celeb,@ApoloOhno,@IamNomad Do you trade solo? Institutionalized firm? full time? Most used exchange? +11/24/2017,Sports_celeb,@ApoloOhno,Touched down in Taipei - hit this famous chicken soup restaurant immediately. Happy… https://t.co/sVEhpuguRM +11/22/2017,Sports_celeb,@ApoloOhno,Was a true throwback being on set yesterday of @dancingabc for the finals show! Saw many old… https://t.co/ElTfICPHH6 +11/19/2017,Sports_celeb,@ApoloOhno,@PeterAttiaMD Water fast? +11/16/2017,Sports_celeb,@ApoloOhno,Nothing makes me happy than to see my dad looking younger and fresher than ever!! #healthy… https://t.co/kwqAp5Pbv1 +11/15/2017,Sports_celeb,@ApoloOhno,"How’s your paso? #dwts 🚀#throwback @juliannehough #dance #finals #fun @dancingabc @ Los Angeles,… https://t.co/vcMnOh7iSa" +11/15/2017,Sports_celeb,@ApoloOhno,@jsamulaitis shoot me a dm. I've a team in Vancouver. +11/15/2017,Sports_celeb,@ApoloOhno,@jsamulaitis @IamNomad I do. I've seen large scale mining in China & small operations in Vegas. Where are you loc… https://t.co/RbsBTWbvI5 +11/14/2017,Sports_celeb,@ApoloOhno,@DancingABC @frankiemuniz @WitneyCarson @juliannehough CRUSHED IT!!!!!! FINALS! +11/14/2017,Sports_celeb,@ApoloOhno,"RT @abc7george: For their #DWTS  Iconic Dance on Monday, @frankiemuniz & @WitneyCarson will paso doble to ""Carnival De Paris” by Dario G. I…" +11/13/2017,Sports_celeb,@ApoloOhno,Congratulations to this young team! That is FAST!!! WR! https://t.co/ijeLvTneOD +11/12/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur @zacksomeone Pain. +11/12/2017,Sports_celeb,@ApoloOhno,@IamNomad @jsamulaitis Cost associated w/ having the strength to balance over asia? +11/12/2017,Sports_celeb,@ApoloOhno,@Disruptepreneur The true definition of “it just doesn’t matter...I’ll have that $9 water and $8 Choco bar” haha +11/12/2017,Sports_celeb,@ApoloOhno,Double selfie w/ my partner in crime @nickgismondi covering Short Track World Cup in Shanghai!… https://t.co/rMvVoMA3T4 +11/09/2017,Sports_celeb,@ApoloOhno,Thank you @elisk25 for having me today! @olympics Day was amazing and you guys and girls made me… https://t.co/nksh19BpiR +11/09/2017,Sports_celeb,@ApoloOhno,Somebody hit a remix pls... oh oh oh noooooo op op opoloooooo https://t.co/8atUttsJQN +11/06/2017,Sports_celeb,@ApoloOhno,Central Park walks are mesmerizing :-) #nyc #centralpark @ Central Park Manhatan https://t.co/VAhAjgCmJT +11/04/2017,Sports_celeb,@ApoloOhno,What an amazing week filled with exceptional experiences and excitement! My one and only each… https://t.co/Qzzk52DbdN +06/29/2018,Sports_celeb,@usainbolt,Hey bro you just broke my daring celebration game 😂. You deserve some huge bottle of Champagne for sure !!🍾… https://t.co/reML4Wo5nt +06/28/2018,Sports_celeb,@usainbolt,"RT @UBTandR: THROWBACK to the LEGEND book signing here at UBTR Kingston ⚡ +Fist bumping @usainbolt? Wouldn’t you love to be this guy? 😂 + +#TB…" +06/28/2018,Sports_celeb,@usainbolt,History Will Remember The Country Boy @ Planet Earth https://t.co/CcW5B62EpE +06/28/2018,Sports_celeb,@usainbolt,History Will Remember Me 🙏🏾 https://t.co/PRI9k05DN4 +06/27/2018,Sports_celeb,@usainbolt,Great being back in Bermuda where I ran my first world record as a junior in 2004. I Can never forget that 200m at… https://t.co/SDL3YBjSqG +06/27/2018,Sports_celeb,@usainbolt,"RT @TheRoyalGazette: Photos of Usain Bolt's whirlwind tour of Bermuda + +Photo gallery: https://t.co/e5WTxfVXHr https://t.co/hqbY1cXpc6" +06/27/2018,Sports_celeb,@usainbolt,"RT @DigicelBermuda: Photo of the day? When Elias met @usainbolt (shame he took off the shades, Elias that is) https://t.co/GBd0LLP65B" +06/27/2018,Sports_celeb,@usainbolt,RT @BermudaPremier: Students from the Hamilton Community Centre served as #Bermuda ambassadors as we welcomed #Olympic Gold Medallist and w… +06/26/2018,Sports_celeb,@usainbolt,"RT @MelanieCarmen_: Today my 13 year old cousin had a running session with none other than Usain Bolt!!! ⚡️ +As proud as I am of little Ste…" +06/26/2018,Sports_celeb,@usainbolt,"RT @DigicelBermuda: Warren Bean brough his Jamaican flag with Bolt's 2004 signature. Now it has his 2018 signature! +#bermuda #usainbolt htt…" +06/26/2018,Sports_celeb,@usainbolt,RT @BernewsSports: Selected students from various schools are having the opportunity to meet @usainbolt this morning thanks to @DigicelBerm… +06/26/2018,Sports_celeb,@usainbolt,Good morning world https://t.co/TV5V90IpfF +06/22/2018,Sports_celeb,@usainbolt,Friday lunch with #CoachMills #NJ https://t.co/sMjaKP7rUf +06/21/2018,Sports_celeb,@usainbolt,Wow wow wow #Worldcup2018Russia +06/21/2018,Sports_celeb,@usainbolt,"Some people have jobs, others have careers but… https://t.co/5bhEdwNcET" +06/21/2018,Sports_celeb,@usainbolt,TBT https://t.co/uCDh1AI1aK +06/20/2018,Sports_celeb,@usainbolt,RT @COPA90: Timbsy takes on @usainbolt at the ‘@piresrobert7 Lay-off Challenge’... 👀🎯 https://t.co/hrCBUpLgax +06/20/2018,Sports_celeb,@usainbolt,Teamed up with @gatorade & @piresrobert7 to take… https://t.co/5PCSn2ALj6 +06/19/2018,Sports_celeb,@usainbolt,Mood https://t.co/OyZFHffr4F +06/18/2018,Sports_celeb,@usainbolt,"Join the competition! This summer, celebrate goals in your most daring way. To win a🍾, post your video tagging… https://t.co/nhnoTp9RK6" +06/17/2018,Sports_celeb,@usainbolt,A Father Figure like no other #CoachMills https://t.co/hWfEzGVH8R +06/17/2018,Sports_celeb,@usainbolt,Happy Father’s Day Pops. You taught me… https://t.co/HFUnfOpq3G +06/13/2018,Sports_celeb,@usainbolt,My G’s @SimmsRicky #NJ https://t.co/Z51rtY4xqM +06/13/2018,Sports_celeb,@usainbolt,"Family Is The Greatest Currency @ Paris, France https://t.co/uVKlw7THM5" +06/13/2018,Sports_celeb,@usainbolt,Last couple days been epic 🙌🏽🙌🏽 https://t.co/n3yPRMQOeG +06/11/2018,Sports_celeb,@usainbolt,"RT @themichaelowen: Well done to everyone involved with @socceraid yesterday especially @usainbolt. Captain, Man Of the Match and winner of…" +06/10/2018,Sports_celeb,@usainbolt,Man of the match @socceraid @Hublot 🙌🏽🙌🏽 https://t.co/iSv9LrzrfH +06/10/2018,Sports_celeb,@usainbolt,A lot of fun today @socceraid match 🙌🏽🙌🏽 https://t.co/DBok1WDdwz +06/10/2018,Sports_celeb,@usainbolt,Captain 🙌🏽🙌🏽 https://t.co/dt4PzP163b +06/10/2018,Sports_celeb,@usainbolt,Sunday Mood https://t.co/F2og6ZNkTs +06/10/2018,Sports_celeb,@usainbolt,Sunday Mood 🤔🤔 https://t.co/PxT6hLINOR +06/10/2018,Sports_celeb,@usainbolt,Game Day @socceraid https://t.co/g2I7BnV91v +06/09/2018,Sports_celeb,@usainbolt,Who got skills @Mo_Farah @socceraid 😂😂😂😂😂 https://t.co/Ouv1BR4zqy +06/08/2018,Sports_celeb,@usainbolt,Slowed down a minute for the #GrahamNorton show… https://t.co/5bmpJG1efo +06/08/2018,Sports_celeb,@usainbolt,Catch me tonight on #GrahamNorton show https://t.co/wi2h9LP1RM +06/08/2018,Sports_celeb,@usainbolt,"Racers Grand Prix +June 9, 2018 +National Stadium @6pm + +Tickets available @ Pegasus Hotel and Selected JN Bank +HWT… https://t.co/mxKPkPV9FT" +06/07/2018,Sports_celeb,@usainbolt,My brother @Mo_Farah 🎮🎮 https://t.co/AyrByUfJDB +06/07/2018,Sports_celeb,@usainbolt,"Super Bolt socceraid @ London, United Kingdom https://t.co/kUIb88tYGz" +06/07/2018,Sports_celeb,@usainbolt,Super Bolt @socceraid https://t.co/x78ablRf6z +06/06/2018,Sports_celeb,@usainbolt,RT @socceraid: Celebrating the partnership between #SoccerAid for @UNICEF_uk and the governments aid match scheme #downingstreet https://t.… +06/06/2018,Sports_celeb,@usainbolt,Last few tickets for @socceraid available at https://t.co/NM0BUFFgzj https://t.co/nyIMFXHZSF +06/04/2018,Sports_celeb,@usainbolt,The Queen Is Back!!!! #RacersGrandPrix https://t.co/Kfc293Tkwl +06/02/2018,Sports_celeb,@usainbolt,Running into the weekend https://t.co/hft0br0pSv +06/01/2018,Sports_celeb,@usainbolt,"RT @DIGICELJamaica: Catch @yohanblake, @KemarBaileyCole and @Julian_Forte on the track at #RacersGrandPrix on Saturday June 9th at the Nati…" +06/01/2018,Sports_celeb,@usainbolt,Pow! 💥 watch me make the #SwitchToSuper with a one-of-a-kind fitting. @virginmedia https://t.co/XsORD0BERl +05/31/2018,Sports_celeb,@usainbolt,"The rules are the rules but at the end of the day the joy of winning that relay gold +Medal in Beijing 2008 with my… https://t.co/A6fJZcfObD" +05/31/2018,Sports_celeb,@usainbolt,The rules are the rules but at the end of the… https://t.co/iaTS7syD4w +05/31/2018,Sports_celeb,@usainbolt,Memories Last Forever #ThisDayInHistory 31.05.08 https://t.co/T1D1bQrZcO +05/31/2018,Sports_celeb,@usainbolt,Memories Last Forever #ThisDayInHistory 31.05.08 https://t.co/nnluVu7OaE +05/31/2018,Sports_celeb,@usainbolt,This day in History 31.05.08 https://t.co/AW0eK7nPER +05/30/2018,Sports_celeb,@usainbolt,No Limit https://t.co/UVdwFcbv1N +05/30/2018,Sports_celeb,@usainbolt,Chasing the Dream @strmsgodset @puma… https://t.co/f2SJzw2jKS +05/30/2018,Sports_celeb,@usainbolt,Chasing the Dream @strmsgodset @puma… https://t.co/Tujnxj3V6J +05/30/2018,Sports_celeb,@usainbolt,RT @strmsgodset: Godset TV did an exclusive interview with @usainbolt after his first training session with Strømsgodset. You can see it he… +05/30/2018,Sports_celeb,@usainbolt,"RT @strmsgodset: The worlds fastest man is training with Strømsgodset the next week. Doing his first session today. +@usainbolt https://t.co…" +05/30/2018,Sports_celeb,@usainbolt,"RT @strmsgodset: Usain Bolt er i gang ute på Gamle gress. Hvor absurd er ikke den setningen! +@usainbolt +📸 @brre_eirik https://t.co/nslZaBJ…" +05/29/2018,Sports_celeb,@usainbolt,"Racers Grand Prix extends Online tickets sales for 48 hours! +https://t.co/Hc0pGrVqn1" +05/29/2018,Sports_celeb,@usainbolt,RT @racerstrack: Extension of online ticket sales for the Racers Grand Prix 2018 .48 hours only! Midnight tonight (Monday) until Wednesday… +05/28/2018,Sports_celeb,@usainbolt,🤫🤔 https://t.co/BKgnX3YYE3 +05/28/2018,Sports_celeb,@usainbolt,🤫 https://t.co/YjI3d5i3dd +05/26/2018,Sports_celeb,@usainbolt,Seriously.. like seriously #ChampionsLeague2018 +05/26/2018,Sports_celeb,@usainbolt,Brilliant goal #ChampionsLeagueFinal2018 +05/26/2018,Sports_celeb,@usainbolt,Strangest Goal ever #ChampionsLeagueFinal2018 +05/25/2018,Sports_celeb,@usainbolt,"RT @UBTandR: Come on in after work! +UBTR Montego Bay is now LIVE on the HIP STRIP ⚡ +Mobay peeps! Now you can #tasteREALJamaicanvibes here a…" +05/22/2018,Sports_celeb,@usainbolt,"Racers Grand Prix!!!!!!!! +June 9,2018 +National Stadium +Kingston + +Be There!!!!!!!!!! https://t.co/a2xar7Zadz" +05/22/2018,Sports_celeb,@usainbolt,Time @Hublot https://t.co/3IDk3m1rFK +05/21/2018,Sports_celeb,@usainbolt,Travel swag https://t.co/QX1aBf7Pnj +05/21/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/RSx3D4OSD0 +05/21/2018,Sports_celeb,@usainbolt,G.O.A.T on Bolts https://t.co/GbiDBEFsT1 +05/21/2018,Sports_celeb,@usainbolt,Master Piece https://t.co/fLg5FpFcqU +05/20/2018,Sports_celeb,@usainbolt,"RT @socceraid: Just 3️⃣ weeks to go until @robbiewilliams’ England take on @usainbolt’s World XI 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽️🌎 + +🎟 Don’t miss a game like no ot…" +05/19/2018,Sports_celeb,@usainbolt,🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬🤬 +05/19/2018,Sports_celeb,@usainbolt,"To become a champion, it just takes hard work, dedication and a lot of sacrifice. You must focus on your dream and… https://t.co/E6IyMn5wxm" +05/18/2018,Sports_celeb,@usainbolt,Boom! You’re now LIT with Digicel LTE in more places than ever before! Speed over to @digicelJamaica for more deets… https://t.co/uteB72z18A +05/17/2018,Sports_celeb,@usainbolt,Try nuh blink… cause yuh might miss it! #getset https://t.co/1NyPUowjdb +05/17/2018,Sports_celeb,@usainbolt,It’s a official @UBTandR Montego Bay https://t.co/WWsKQbtaPY +05/17/2018,Sports_celeb,@usainbolt,"Official opening of @UBTandR in Montego Bay, Jamaica 🇯🇲 https://t.co/VWTUJFLquP" +05/16/2018,Sports_celeb,@usainbolt,#GetReady https://t.co/hEEYgXru29 +05/16/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/RSEOdzTE6w +05/14/2018,Sports_celeb,@usainbolt,"RT @UBTandR: The mother of the man himself ⚡️ + +Happy Mother’s Day to all our moms! + +Celebrate your special day with us here at Tracks and R…" +05/13/2018,Sports_celeb,@usainbolt,"Happy Mother’s Day to my rock. You are the strongest, most patient,… https://t.co/1jbe4GnuX3" +05/12/2018,Sports_celeb,@usainbolt,"RT @UBTandR: The big man himself invites you to Usain Bolt’s Tracks & Records this Sunday for your Mother’s Day celebration! 🎉 +You know you…" +05/11/2018,Sports_celeb,@usainbolt,"RT @socceraid: THE KING IS BACK! 👑 + +Eric Cantona joins #TeamUsain and will return to Old Trafford on Sunday 10th June! 🏟 + +Don’t miss what…" +05/11/2018,Sports_celeb,@usainbolt,@VirginMedia always bringing the best shows (and the best moves) on the #VirginTV V6 Box 🙌 https://t.co/QADysmCec4 +05/10/2018,Sports_celeb,@usainbolt,RT @youridjorkaeff: Great game with Great Champions @piresrobert7 @usainbolt ⚡️🏅🏆 https://t.co/jhI4Qpz6Nr +05/09/2018,Sports_celeb,@usainbolt,"RT @DIGICELJamaica: Happy Teachers' Day!! + +Today we celebrate the hardworking men and women who shape the minds of the nation's students. Y…" +05/06/2018,Sports_celeb,@usainbolt,"Prayers be Sir Alex @ Manchester, United Kingdom https://t.co/CoRNohrQNJ" +05/01/2018,Sports_celeb,@usainbolt,Sauce 🔥🔥🌶🌶🇯🇲🇯🇲💯💯🙌🏿🙌🏿 https://t.co/7A28cv57x6 +05/01/2018,Sports_celeb,@usainbolt,Sauce 🔥🔥🌶🌶🇯🇲🇯🇲💯💯🙌🏿🙌🏿 @ Australia https://t.co/AG3wGGln9K +05/01/2018,Sports_celeb,@usainbolt,"Get your Racers Grand Prix tickets online starting today +https://t.co/Hc0pGrVqn1" +04/30/2018,Sports_celeb,@usainbolt,Running into the week like Bolt🤗 https://t.co/BOFkzhdUlQ +04/26/2018,Sports_celeb,@usainbolt,Getting ready for @xbox Game Pass Challenge today. 🇯🇲🙏🏾🔥Don’t miss it @aarongreenberg https://t.co/n8AlTyf2yv +04/26/2018,Sports_celeb,@usainbolt,Hyped for @Xbox Game Pass Challenge. 🇯🇲🙏🏾🔥 Tune in tomorrow 🙌🏽 @XboxP3 @aarongreenberg https://t.co/5dRZw8smWr +04/26/2018,Sports_celeb,@usainbolt,Hyped for @xbox Game Pass Challenge. 🇯🇲🙏🏾🔥 Tune in tomorrow 🙌🏽 @aarongreenberg https://t.co/vnS5E5XMOG +04/26/2018,Sports_celeb,@usainbolt,https://t.co/1DUNZsD1tP +04/25/2018,Sports_celeb,@usainbolt,Which lane i am in? https://t.co/VikoDEeat3 +04/24/2018,Sports_celeb,@usainbolt,"Montego Bay @ubtandr is here. Enjoy 🙌🏽🙌🏽 @ Montego Bay, Jamaica https://t.co/pNSAD41PuX" +04/24/2018,Sports_celeb,@usainbolt,It’s good look Mobay @UBTandR #Mobay https://t.co/M7HqcgLNcs +04/24/2018,Sports_celeb,@usainbolt,Montego Bay @UBTandR is here 🙌🏽 https://t.co/9aEAZivcHE +04/22/2018,Sports_celeb,@usainbolt,"Everything @ Kingston, Jamaica https://t.co/D9Qq8snhL5" +04/20/2018,Sports_celeb,@usainbolt,"Happy birthday to my godson 🎂🎉🎊🎁🎈#NJJ #Love&LoveAlone @ Kingston, Jamaica https://t.co/rRpj5RHeGi" +04/20/2018,Sports_celeb,@usainbolt,"Racers Grand Prix!!! +Save the Date!!! +June 9, 2018 +National Stadium +Kingston https://t.co/ivkMkrC2FV" +04/20/2018,Sports_celeb,@usainbolt,G https://t.co/xXa0gXYI3u +04/17/2018,Sports_celeb,@usainbolt,🌶🌶🌶🌶🔥🔥🔥🔥🇯🇲🇯🇲🇯🇲🇯🇲 https://t.co/Vn1FBP3zKH +04/17/2018,Sports_celeb,@usainbolt,Hot Hot Hot🌶🌶🌶🌶 My 🇯🇲Insane Hot Sauce here in Australia. Get it colessupermarkets🔥🔥🔥 @ Gold… https://t.co/gLvUkUKQ6C +04/16/2018,Sports_celeb,@usainbolt,My 🇯🇲Insane Hot Sauce challenge. Get it @Coles #GoldCoast2018 🔥🔥🔥🔥🔥🔥 https://t.co/RjNctrbHvT +04/16/2018,Sports_celeb,@usainbolt,My 🇯🇲Insane Hot Sauce here in Australia #GoldCoast2018 🔥🔥🔥 https://t.co/ByolrMciQz +04/15/2018,Sports_celeb,@usainbolt,Mr Dj #GoldCoast2018 #CommonwealthGames #ClosingCeremony https://t.co/1JgSXSaOOP +04/15/2018,Sports_celeb,@usainbolt,"RT @7CommGames: No your eyes do not deceive you, @usainbolt is on the decks at the #GC2018 Closing Ceremony. + +#7CommGames #ShareTheDream ht…" +04/15/2018,Sports_celeb,@usainbolt,##BeyChella +04/14/2018,Sports_celeb,@usainbolt,Proud of our #SunshineGirls #TeamJamaica #GoldCoast2018 #CommonwealthGames https://t.co/d6hErVgEZG +04/14/2018,Sports_celeb,@usainbolt,Let’s Go Girls #SunshineGirls #GoldCoast2018 #CommonwealthGames2018 https://t.co/MRXlG2awQg +04/14/2018,Sports_celeb,@usainbolt,Supporting our Netball Girls #TeamJamaica #PresidentMollyRhone https://t.co/9flPqSJuDR +04/14/2018,Sports_celeb,@usainbolt,Watching the relay just now made me ask myself a few questions. Anyhow #TeamJamaica all day everyday #GoldCoast2018 #CommonwealthGames +04/14/2018,Sports_celeb,@usainbolt,Did I retire too soon? Hmmm +04/13/2018,Sports_celeb,@usainbolt,All Black Everything @JohnSteffensen #GoldCoast2018 https://t.co/8JlgqI2Oq1 +04/13/2018,Sports_celeb,@usainbolt,Please follow & support @able2uk today as the disabled awareness organisation celebrates its 17th anniversary #able2uk +04/12/2018,Sports_celeb,@usainbolt,New Levels ##GoldCoast2018 #CommonwealthGames https://t.co/8cJQqXEKtM +04/12/2018,Sports_celeb,@usainbolt,RT @DIGICELJamaica: Sherika Jackson was presented with her #GC2018 Commonwealth Games silver medal by #ChiefSpeedOfficer @UsainBolt. 🥈😊 ht… +04/12/2018,Sports_celeb,@usainbolt,RT @DIGICELJamaica: #ChiefSpeedOfficer @usainbolt during a press conference on day 8 of the Gold Coast 2018 Commonwealth Games at #GC2018 C… +04/12/2018,Sports_celeb,@usainbolt,"The god of Thunder & Lightning Bolt. + +Thunder & Bolt + +Real Thor & Real Flash + +@chrishemsworth @Avengers #Thor… https://t.co/5LnwpmmgJJ" +04/12/2018,Sports_celeb,@usainbolt,Infinity War @chrishemsworth #Thor @avengers #GoldCoast #commonwealthgames2018 🙌🏽 https://t.co/3YQjH1DsAz +04/12/2018,Sports_celeb,@usainbolt,Infinity War @chrishemsworth #Thor avengers #GoldCoast #commonwealthgames2018 🙌🏽 @ Carrara Stadium https://t.co/o60a0NRZFr +04/12/2018,Sports_celeb,@usainbolt,RT @7CommGames: The big names are in the house! @usainbolt AND @chrishemsworth are ready for a big night of aths at #GC2018 https://t.co/eG… +04/12/2018,Sports_celeb,@usainbolt,Congrats mi G @jaheelstella #TeamJamaica 🇯🇲 #GoldCoast2018 #CommonwealthGames2018 https://t.co/88N0paYiGE +04/12/2018,Sports_celeb,@usainbolt,Gold for Jamaica 🇯🇲 in Female hurdles https://t.co/EcqeIWMm54 +04/12/2018,Sports_celeb,@usainbolt,“There is no Wealth without Health” @SimmsRicky rickysimms rickysimms #NJ #GoldCoast2018… https://t.co/9h8RQ6ZvUh +04/12/2018,Sports_celeb,@usainbolt,"RT @thecgf: COMMONWEALTH CHAMP USAIN BOLT +“The Commonwealths are very, very important. Very important to the athletes and to the world. The…" +04/12/2018,Sports_celeb,@usainbolt,Press conference #GoldCoast2018 #CommonwealthGames https://t.co/9mnaD0bB80 +04/12/2018,Sports_celeb,@usainbolt,😂😂😂😂 https://t.co/6VeJQMhL3n +04/12/2018,Sports_celeb,@usainbolt,5G means HD Gaming on the go @Optus #GoldCoast2018 #CommonwealthGames https://t.co/jFtbpGe0lW +04/12/2018,Sports_celeb,@usainbolt,My team always working @SimmsRicky #NJ #GoldCoast2018 #CommonwealthGames https://t.co/ta7Rpd0WBX +04/11/2018,Sports_celeb,@usainbolt,RT @7NewsMelbourne: .@usainbolt has arrived on the Gold Coast as an official Games ambassador. Bolt will spend the week watching his fellow… +04/10/2018,Sports_celeb,@usainbolt,"RT @sunriseon7: Breaking news: Usain Bolt has arrived on the Gold Coast for #GC2018 + +@MarkBeretta will be chatting to him this week! https:…" +04/10/2018,Sports_celeb,@usainbolt,Commonwealth Games #GoldCoast https://t.co/DeP6P0iUoK +04/10/2018,Sports_celeb,@usainbolt,"RT @borobi2018: What's cooler than cool? Welcoming the world's fastest man, and my new mate, @usainbolt to the Gold Coast! ⚡⚡⚡ #BOROBI #SHA…" +04/10/2018,Sports_celeb,@usainbolt,Game time https://t.co/3OPCiGHI1P +04/09/2018,Sports_celeb,@usainbolt,"Well done @YohanBlake +Keep putting in the work. You know your journey 🙌🏽🙌🏽" +04/09/2018,Sports_celeb,@usainbolt,Congrats @AkaniSimbine #Gold +04/07/2018,Sports_celeb,@usainbolt,Great win my team @ManUtd 🙌🏽🙌🏽 +04/07/2018,Sports_celeb,@usainbolt,Come on mi team @ManUtd +04/07/2018,Sports_celeb,@usainbolt,Brilliant save me keeper @ManUtd +04/07/2018,Sports_celeb,@usainbolt,Goaall @paulpogba @ManUtd 🙌🏽🙌🏽 +04/06/2018,Sports_celeb,@usainbolt,"RT @toniterp: This is a description of an Olympic race with @usainbolt such a good representation. JSL is so beautiful 😍, the visual repre…" +04/05/2018,Sports_celeb,@usainbolt,🙌🏽🙌🏽🙌🏽🔥 https://t.co/AMETY01Yjg +04/01/2018,Sports_celeb,@usainbolt,The Party is @FunlandJamaica this Easter from 10 am- 7pm April 1-April2nd #funland #Funlandjamaica #familyplayground https://t.co/FEeCU1dBC3 +03/31/2018,Sports_celeb,@usainbolt,My type of Saturday https://t.co/RBTD6hz7hu +03/29/2018,Sports_celeb,@usainbolt,Too quick for me 😂😂 https://t.co/nxRHmBzyfW +03/29/2018,Sports_celeb,@usainbolt,"Bro for life #Repost @princespearmon +・・・ +Who needs enemies when you have friends like these lol.… https://t.co/S7ASRdynQI" +03/29/2018,Sports_celeb,@usainbolt,Breeze @hdcutzuk #fresh #NewLevels https://t.co/16UowWQWV4 +03/29/2018,Sports_celeb,@usainbolt,The Story Teller 🙌🏽🙌🏽 https://t.co/K1wLHrAqKI +03/29/2018,Sports_celeb,@usainbolt,"#Repost ateamlifestyle +・・・ +CANDY COATED X A TEAM +🇹🇹 x 🇯🇲 +. +YUH WAH SPEED?! +. +Carnival Thursday… https://t.co/T67rY3Vx9J" +03/29/2018,Sports_celeb,@usainbolt,Prepping 🙌🏽 https://t.co/wsx30Cgp8h +03/28/2018,Sports_celeb,@usainbolt,Check out @FunlandJamaica post GSAT party on March 30th!! Funland is open March 30th-April 2nd. Are you ready to ha… https://t.co/o2rmtjDqAG +03/28/2018,Sports_celeb,@usainbolt,Always bringing a little of home with me when I’m on the road. I have to bring the good stuff 🔥🔥🔥🔥 https://t.co/yTuJiDvp4n +03/28/2018,Sports_celeb,@usainbolt,Too often we let people tell us we can’t. Well I can and I Will 🙏🏾🙏🏾#DontThinkLimits… https://t.co/oKbp9CK8D7 +03/26/2018,Sports_celeb,@usainbolt,"Level up your personal and business branding with our dynamic marketing services. + +#88elevate +#GetElevated… https://t.co/4uQ1GMI95C" +03/26/2018,Sports_celeb,@usainbolt,#TeamUsain is taking shape @GordonRamsay @piresrobert7 #ClarenceSeedorf .... more big names coming soon! Who you go… https://t.co/5kFJFkvBQz +03/24/2018,Sports_celeb,@usainbolt,"RT @Enertor: ENERTOR Performance Insoles are designed by leading Podiatrists and made with D3O impact protection technology. + +https://t.co…" +03/24/2018,Sports_celeb,@usainbolt,RT @KjeldNuis: Got it 🍾🙏🏻 @usainbolt https://t.co/Us01aO37ry +03/23/2018,Sports_celeb,@usainbolt,New Levels @leonbailey 🇯🇲🇯🇲 https://t.co/dlt1E4lq4k +03/23/2018,Sports_celeb,@usainbolt,Yard man link up @leonbailey #NewLevels 🇯🇲🇯🇲 @ Dortmund https://t.co/FrRBhmYVYN +03/23/2018,Sports_celeb,@usainbolt,New Levels #NextJourney https://t.co/aeOilbnSq9 +03/23/2018,Sports_celeb,@usainbolt,New Levels @pumafootball @bvb 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/UtfJzxdimj +03/23/2018,Sports_celeb,@usainbolt,RT @PACESportsMgmt: Video of Usain’s headed goal at @BVB training https://t.co/YtDeojGpsq +03/23/2018,Sports_celeb,@usainbolt,https://t.co/MfHiGFCicM +03/23/2018,Sports_celeb,@usainbolt,New Levels https://t.co/Y9x86iQrMt +03/23/2018,Sports_celeb,@usainbolt,"RT @BVB: 🗯 @usainbolt: ""It was good! I had fun with the guys, they were very welcoming."" #BVBolt https://t.co/FTkdDyOw7e" +03/23/2018,Sports_celeb,@usainbolt,RT @BVB: ⚽️🏃‍♂️ @usainbolt from the spot 😉 #BVBolt https://t.co/ZyHr9FThjL +03/22/2018,Sports_celeb,@usainbolt,Training day one ✅ @BVB @pumafootball #NewLevels https://t.co/OLfbI2wcwS +03/22/2018,Sports_celeb,@usainbolt,First day of training #BVBOLT #NewLevels @bvb @pumafootball @ Dortmund https://t.co/dN6LvLHcx3 +03/22/2018,Sports_celeb,@usainbolt,First day of training #BVBOLT #NewLevels @bvb09 @pumafootball https://t.co/OmXuhFGf4e +03/22/2018,Sports_celeb,@usainbolt,RT @BVB: 🏃‍♂️ @usainbolt getting ready to train with Borussia Dortmund. #BVBolt https://t.co/KiOlARt5Pv +03/22/2018,Sports_celeb,@usainbolt,New Levels #BVBOLT https://t.co/Uew4euNxYq +03/22/2018,Sports_celeb,@usainbolt,"RT @pumafootball: They said it wouldn’t happen. 👀⚡️ +@UsainBolt @BVB @officialpes +#NewLevels #PUMAFuture https://t.co/WpjE16CHrE" +03/22/2018,Sports_celeb,@usainbolt,"BVB, get ready for Friday. #BVBOLT #NewLevels @bvb @pumafootball https://t.co/jHpaYskkMP" +03/21/2018,Sports_celeb,@usainbolt,New Levels 🙌🏽🙌🏽⚽️⚽️ https://t.co/lXpL5zb5HF +03/21/2018,Sports_celeb,@usainbolt,New Levels 🙌🏽🙌🏽 https://t.co/8LVot1plBJ +03/21/2018,Sports_celeb,@usainbolt,"Great day @hublot match of friendship in Basel 🙌🏽🙌🏽⚽️⚽️ @ Basel, Switzerland https://t.co/gfxaYC0PQo" +03/21/2018,Sports_celeb,@usainbolt,https://t.co/FCSt1bBYQc +03/21/2018,Sports_celeb,@usainbolt,"Great day @Hublot match of friendship in Basel, Switzerland https://t.co/XAnFe393dI" +03/21/2018,Sports_celeb,@usainbolt,"BVB, get ready for Friday. #BVBOLT #NewLevels @bvb09 @pumafootball https://t.co/rO1jNPLtrA" +03/21/2018,Sports_celeb,@usainbolt,"There are moments in football that are eternal, and @Hublot is writing one. #HublotLovesFootball #Baselworld… https://t.co/RJwC56ozAA" +03/21/2018,Sports_celeb,@usainbolt,"There are moments in football that are eternal, and @hublot is writing one. #HublotLovesFootball… https://t.co/hkP4PaB5s4" +03/21/2018,Sports_celeb,@usainbolt,A wonder what we discussing ⚽️josemourinho @hublot https://t.co/zq7l4pSyLJ +03/21/2018,Sports_celeb,@usainbolt,You can image what we discussing #JoseMourinho https://t.co/g1jD8c6iRs +03/21/2018,Sports_celeb,@usainbolt,Left foot specialist ⚽️ https://t.co/Y7xH7Xy3mB +03/21/2018,Sports_celeb,@usainbolt,Football tips from the great #DiegoMaradona https://t.co/FeqS8mie3Y +03/21/2018,Sports_celeb,@usainbolt,Football tips from the great maradona ⚽️🙌🏽 https://t.co/EiwoHs9jj8 +03/21/2018,Sports_celeb,@usainbolt,"March 21, 2018 in Zurich ❄️❄️ https://t.co/vWne8CadE4" +03/20/2018,Sports_celeb,@usainbolt,Australia see you in a few weeks. #TeamJamaica we ready. Are you? #GC2018 https://t.co/YtUWJ8abUR +03/20/2018,Sports_celeb,@usainbolt,From day one they have always been telling me I can’t. #LetsGo #TeamBolt #AnythingIsPossible #DontThinkLimits https://t.co/bQ3sB7XRCo +03/20/2018,Sports_celeb,@usainbolt,From day one they have always been telling me I can’t. #LetsGo #TeamBolt #AnythingIsPossible… https://t.co/0UQ3noZi8g +03/20/2018,Sports_celeb,@usainbolt,🔥🔥🔥🔥 https://t.co/6nTdM2mfjb +03/20/2018,Sports_celeb,@usainbolt,Ready!!!!!! 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/isD8jCUdxC +03/20/2018,Sports_celeb,@usainbolt,1 day to go until #HublotBaselworld 2018! Follow me for an historic match with a line-up that football has never se… https://t.co/wTipzGCoZq +03/18/2018,Sports_celeb,@usainbolt,RT @anneliesvgeest: Hey @usainbolt see this at the @Paralympics ? @jeroenn99 won a gold medale and did your move on medale plaza. https://t… +03/17/2018,Sports_celeb,@usainbolt,Saturday Vibe 🙌🏽🙌🏽 https://t.co/768ApkL8hc +03/16/2018,Sports_celeb,@usainbolt,"Welcome to the @socceraid World XI Gordon. Stay fit, we need you! 🙌 #SoccerAid #TeamUsain https://t.co/2ZWJXlLxwg" +03/16/2018,Sports_celeb,@usainbolt,Sports Day with my godson 🙌🏽🙌🏽 https://t.co/4s0q7ExuzS +06/18/2018,Sports_celeb,@blakegriffin23,@FronQB9 @PardonMyTake i can’t believe i forgot that one +06/17/2018,Sports_celeb,@blakegriffin23,@zerkusberkus haha my apologies. there’s always next time +05/31/2018,Sports_celeb,@blakegriffin23,"RT @TwitterSports: Relationship status: + +⚪️ Single + +⚪️ Taken + +⚪️ It's complicated + +🔘 Shooting my shot on #NBATwitter https://t.co/k2lMp…" +05/09/2018,Sports_celeb,@blakegriffin23,RT @johnlevenstein: Tomorrow at midnight my podcast with @MaryKoCo will finally “drop” and @MindyFurano was kind enough to cut together a p… +04/28/2018,Sports_celeb,@blakegriffin23,and are we positive that’s not me?? https://t.co/QZNwF2Gls1 +04/13/2018,Sports_celeb,@blakegriffin23,congrats @_ajawilson22 !!!! aces got a great one https://t.co/eTcHqhvY8w +04/11/2018,Sports_celeb,@blakegriffin23,bro it was like 8 years ago.... ohhhhh i get it https://t.co/b3quTj2JvJ +04/08/2018,Sports_celeb,@blakegriffin23,man steven adams is so underrated +04/03/2018,Sports_celeb,@blakegriffin23,divincenzo holding it down for the reddish heads. i see you +04/02/2018,Sports_celeb,@blakegriffin23,@YourOldDroog my bad G. i owe you +03/16/2018,Sports_celeb,@blakegriffin23,@haileybaldwin thank you my sweet!! +03/01/2018,Sports_celeb,@blakegriffin23,https://t.co/aHM33Z6TXK https://t.co/vARb01bpkF +02/27/2018,Sports_celeb,@blakegriffin23,"ready to blast off. +3.1.18 https://t.co/FB7tO2zL3H" +02/12/2018,Sports_celeb,@blakegriffin23,good luck to the MACU men’s hoops team tonight!!!! https://t.co/aSZeNpXoEY +02/04/2018,Sports_celeb,@blakegriffin23,👀 unreal @AndreDrummond https://t.co/ZoGOfyb7eS +02/02/2018,Sports_celeb,@blakegriffin23,"thanks, fam! https://t.co/I0GBaSDW11" +02/01/2018,Sports_celeb,@blakegriffin23,"my guy, thank you. glad to be here #detroitbasketball https://t.co/BUb4pOG2TW" +01/31/2018,Sports_celeb,@blakegriffin23,you were a great teammate and an even better person. rest in peace my friend https://t.co/kjUapQXw5W +01/31/2018,Sports_celeb,@blakegriffin23,"congrats, @AndreDrummond well deserved!!! https://t.co/QxS7lwqOCF" +01/30/2018,Sports_celeb,@blakegriffin23,https://t.co/xVoNx2dW83 +01/30/2018,Sports_celeb,@blakegriffin23,https://t.co/1uoIZ0Sxcc +01/27/2018,Sports_celeb,@blakegriffin23,.@NBA don’t make the same mistake twice. my guy @TeamLou23 deserves to be in that all star game. numbers don’t lie. #gotolou +01/27/2018,Sports_celeb,@blakegriffin23,prayers up to @boogiecousins. hate to see that happen. come back stronger and better. +01/17/2018,Sports_celeb,@blakegriffin23,"Extremely proud to tip-off this partnership between the LA Clippers Foundation, Steve Ballmer, and @visiontolearn y… https://t.co/6ati2gcE4k" +01/17/2018,Sports_celeb,@blakegriffin23,@dekker yikes what? +01/16/2018,Sports_celeb,@blakegriffin23,https://t.co/BNAcs1Hfjh +01/12/2018,Sports_celeb,@blakegriffin23,"check out the trailer for this new movie i happen to be in, #TheFemaleBrain, in select theaters February 9th. https://t.co/jkko9Pfd4T" +01/11/2018,Sports_celeb,@blakegriffin23,#nbavote the man in the middle. @DeAndre walking double double +01/11/2018,Sports_celeb,@blakegriffin23,#nbavote sweet louuuuuu @teamlou23 #50ballll +12/16/2017,Sports_celeb,@blakegriffin23,These fires are affecting all of us. The Team Griffin Foundation and I are proud to support @EIFoundation SOCAL Fir… https://t.co/vnDiGXOBwf +12/14/2017,Sports_celeb,@blakegriffin23,moooooooooooooood https://t.co/hbV3XWo4P7 +12/09/2017,Sports_celeb,@blakegriffin23,what an awesome night. thank you to everyone who came to comedy. by blake and supported the Team… https://t.co/jrEnijYgST +12/09/2017,Sports_celeb,@blakegriffin23,comedy. by blake https://t.co/fOhW4tVtnP +12/02/2017,Sports_celeb,@blakegriffin23,RT @OBBPictures: We're. Back. Season 2 of #The5thQuarter is live with three new episodes now. Watch @blakegriffin32 @Kenny_Mayne @FunnyAsia… +12/01/2017,Sports_celeb,@blakegriffin23,"King vs. Kong... a rivalry for the ages and @OBBPictures was there to document. + +Season 2 of the #5thQuarter now o… https://t.co/rYy25bvVqe" +11/19/2017,Sports_celeb,@blakegriffin23,"RT @tcrock23: My boy @j_cowens just put this boy in a casket, my god.. check my reaction on the bench, I’m going nuts lol https://t.co/Ztv…" +11/17/2017,Sports_celeb,@blakegriffin23,Want to get on the scoreboard at the Staples Center? Upload your 15-second #superfan video at… https://t.co/BS8WJVpUq6 +11/09/2017,Sports_celeb,@blakegriffin23,is it pronounced a-kai or a-sigh-ee? https://t.co/neHxtQDBCh +10/25/2017,Sports_celeb,@blakegriffin23,game. clippers. https://t.co/NmmMkzIV15 +10/02/2017,Sports_celeb,@blakegriffin23,RT @patbev21: My boy @MilosTeodosic4 drops dimes. Told y'all!!!! +08/11/2017,Sports_celeb,@blakegriffin23,"New Wave uniform, ready to go Clipper Nation https://t.co/KICrRbAHch" +08/03/2017,Sports_celeb,@blakegriffin23,@rejectedjokes *mute +08/03/2017,Sports_celeb,@blakegriffin23,been dunkin' since the playground days https://t.co/QXWUm10NOe +07/31/2017,Sports_celeb,@blakegriffin23,"honestly, we should do away with championships too. seems dumb to me. participation trophies for everybody. don't @… https://t.co/p78VTsNGZg" +07/27/2017,Sports_celeb,@blakegriffin23,@ChandlerParsons @GoodmanESPN @TeamCP25 parsons from the top rope. my goodness +07/27/2017,Sports_celeb,@blakegriffin23,my #bestfriend @JoeMande has a new special on @netflix and it is truly special. please go watch and enjoy joe's hil… https://t.co/o7UpIRSjUZ +07/20/2017,Sports_celeb,@blakegriffin23,@rejectedjokes thanks for your #support if anybody knows about the #content game it's you. #contentking #nodaysoff +07/11/2017,Sports_celeb,@blakegriffin23,@rejectedjokes he's back!! +07/11/2017,Sports_celeb,@blakegriffin23,"well he did just ""knock that performance out of the park"" so uhhhh yeah maybe get off his back #haters #dale https://t.co/YJf9fi097d" +07/08/2017,Sports_celeb,@blakegriffin23,🙏🏼 +06/20/2017,Sports_celeb,@blakegriffin23,@ChrisF3105 i wish you could see the red mark on my forehead in that picture +06/07/2017,Sports_celeb,@blakegriffin23,congrats @ou_softball!!!! back to back +06/06/2017,Sports_celeb,@blakegriffin23,who is your least favorite friend/acquaintance? please @ them https://t.co/55NlSv6uGQ +06/06/2017,Sports_celeb,@blakegriffin23,fun to watch @ou_softball compete like that. one more but maybe less innings next time +06/02/2017,Sports_celeb,@blakegriffin23,".@edgarwright's new film ""Baby Driver"" is absolutely incredible. such a wild and fun ride. please watch and enjoy https://t.co/NhyC8U7wPS" +05/20/2017,Sports_celeb,@blakegriffin23,"nice try, guy who just got fired from a shampoo company https://t.co/KnHVegZMDF" +05/19/2017,Sports_celeb,@blakegriffin23,"@Joeingles7 no, duh" +05/10/2017,Sports_celeb,@blakegriffin23,@CoachJGamblin go to sleep +04/12/2017,Sports_celeb,@blakegriffin23,Only a few more days to bid on Justice’s one-of-a-kind shoe! I'll match the highest donation for @ChildrensLA https://t.co/euZ25Jd7Nj +04/09/2017,Sports_celeb,@blakegriffin23,wow russ. give that man the mvp. +04/05/2017,Sports_celeb,@blakegriffin23,@_ajawilson22 @LAClippers i got you!!! +03/30/2017,Sports_celeb,@blakegriffin23,"RT @LAClippers: .@blakegriffin32 presents Justice with his own pair of ""Just 5's"" before today's game! (cc: @childrensla) https://t.co/j86L…" +03/29/2017,Sports_celeb,@blakegriffin23,"My guy Justice from CHLA & I teamed up & are proud to present our @Jumpman23 creation tonight- The “Just 5"" -… https://t.co/UGlZzvI7N0" +03/17/2017,Sports_celeb,@blakegriffin23,@JoeMande HBD bestie. it's time people know +03/17/2017,Sports_celeb,@blakegriffin23,@eriklogan_elo thanks E i appreciate it! +03/17/2017,Sports_celeb,@blakegriffin23,@MaalikWayns2 thanks young bul preciate it. keep grinding. +03/17/2017,Sports_celeb,@blakegriffin23,@tommychong @NBA thanks tommy!! +03/17/2017,Sports_celeb,@blakegriffin23,@bosnianbeast27 thanks homie. i appreciate it!! +03/06/2017,Sports_celeb,@blakegriffin23,@jordangretchen happy bdayyyyyy +03/01/2017,Sports_celeb,@blakegriffin23,@youngfollowill spider. anymore brain busters?! +02/10/2017,Sports_celeb,@blakegriffin23,"this is funny, smart, bold and sincere. please watch this and learn something. https://t.co/lsrIFcHWE3" +02/10/2017,Sports_celeb,@blakegriffin23,@lex_love12 hellooooooo +01/30/2017,Sports_celeb,@blakegriffin23,"Sometimes you need help stepping out of ur comfort zone, thanks for helping me see my potential. Be a #MentorIRL… https://t.co/RBUz62ugl3" +01/25/2017,Sports_celeb,@blakegriffin23,an incredible story from @jeffcapel who has been a mentor on and off the court. great coach and an even better pers… https://t.co/wbyX0dLehK +01/16/2017,Sports_celeb,@blakegriffin23,.@JCrossover #NBAVote +01/16/2017,Sports_celeb,@blakegriffin23,.@deandrejordan6 #NBAVote +01/08/2017,Sports_celeb,@blakegriffin23,@sydjohnson32 hiiiiiiii +01/08/2017,Sports_celeb,@blakegriffin23,@maknoj thanks man. it's a safety protocol +01/06/2017,Sports_celeb,@blakegriffin23,great stuff https://t.co/P8lTB0tfTL +01/05/2017,Sports_celeb,@blakegriffin23,🧀 https://t.co/W8dlL7CP79 +01/02/2017,Sports_celeb,@blakegriffin23,RT @LAClippers: RETWEET to vote for @deandrejordan6. #NBAVote ✅🗳 https://t.co/6WsNGzLQBc +01/01/2017,Sports_celeb,@blakegriffin23,"RT @kibblesmith: Population of Twitter: + +1. People making jokes +2. People reporting news +3. People taking all jokes literally and all news…" +12/25/2016,Sports_celeb,@blakegriffin23,@RickGlassman thanks g-ma glass +12/23/2016,Sports_celeb,@blakegriffin23,@JensenClan88 thank you sir +12/23/2016,Sports_celeb,@blakegriffin23,"what I learned from my friend, Wilson https://t.co/yU5ExDnfve" +12/23/2016,Sports_celeb,@blakegriffin23,great team win. 2nd unit was huuuuuge. let's keep it rolling! +12/15/2016,Sports_celeb,@blakegriffin23,the sports world lost a legend today. rest in peace Mr. Craig Sager +12/03/2016,Sports_celeb,@blakegriffin23,"squad. +@jumpman23 https://t.co/QceSIq1cK4" +12/03/2016,Sports_celeb,@blakegriffin23,boomer sooner x big 12 champs +12/02/2016,Sports_celeb,@blakegriffin23,"These guys again 🙄 +Time to take back our courts, @Jumpman23 https://t.co/dW1vyBLlCu" +12/01/2016,Sports_celeb,@blakegriffin23,@morgan_murphy ugh +12/01/2016,Sports_celeb,@blakegriffin23,"@morgan_murphy sorry for the mix up, it all makes sense now. showing the full arsenal with the mid range and finishing at the rim. bravo." +11/30/2016,Sports_celeb,@blakegriffin23,@morgan_murphy @nickthune very happy for you and the spice girls. do we have video evidence of highly contested? +11/29/2016,Sports_celeb,@blakegriffin23,@danlevy @morgan_murphy @nickthune why does that look like harry potter and john c reilly's love child? +11/29/2016,Sports_celeb,@blakegriffin23,"no prob broski. posted to my myspace page + added you to my ""top 8"" i'll dm you venmo account info. cc:… https://t.co/zKNY48Xk9I" +11/24/2016,Sports_celeb,@blakegriffin23,"RT @NFL: .@blakegriffin32 can sling it! 👀 + +@LAClippers are in the house for #WASvsDAL! https://t.co/qCi5ql45Qv" +11/17/2016,Sports_celeb,@blakegriffin23,"me and @deandrejordan6 helping Ketchup and Mustard work through a couples quarrel... +introduction from @google… https://t.co/GOaRmMsEnF" +11/16/2016,Sports_celeb,@blakegriffin23,they're alive!! it'll all make sense tomorrow when @google drops a new film #BeADuo #ad https://t.co/XT08WCnNAx +11/14/2016,Sports_celeb,@blakegriffin23,"C’mon @deandrejordan6, you know you see me! #BeADuo #ad https://t.co/xCNH2gGlVc" +11/14/2016,Sports_celeb,@blakegriffin23,"@danlevy you, me. me, you.. does it even matter?" +11/13/2016,Sports_celeb,@blakegriffin23,here's a sweet pic of me doing the #mannequinchallenge midgame. sorry i can't find the video but… https://t.co/nSdKKrm28s +10/28/2016,Sports_celeb,@blakegriffin23,@SachaKljestan thanks brother i appreciate it. see you soon +10/25/2016,Sports_celeb,@blakegriffin23,the best ever https://t.co/0GiT9HEVyK +10/25/2016,Sports_celeb,@blakegriffin23,cool how you reminded us casually. happy bday bro!! RT @ChandlerParsons: NBA back and my birthday?? Doesn't get much better! +10/24/2016,Sports_celeb,@blakegriffin23,"@DominicannBoyy it's called a ""penalty shootout"" thanks for trying though" +10/24/2016,Sports_celeb,@blakegriffin23,they should have just had both kickers do a soccer-style shootout for the win +10/24/2016,Sports_celeb,@blakegriffin23,@WhitneyCummings @kevingchristy ugh +10/17/2016,Sports_celeb,@blakegriffin23,@snerko do it. i dare you... +10/17/2016,Sports_celeb,@blakegriffin23,@bigcheefjoseph sounds pretty enticing but a little vague on the #deets +10/16/2016,Sports_celeb,@blakegriffin23,@nickthune hahahaha shipping and HANDLING. i get it. +10/12/2016,Sports_celeb,@blakegriffin23,@treykerby @NBATV @TheStarters oh it's on like donkey kong #cballin +10/10/2016,Sports_celeb,@blakegriffin23,@_brendaliliana sorry for the confusion +10/10/2016,Sports_celeb,@blakegriffin23,@katienolan but wait if there's a halftime they would go to their locker rooms right?? +10/10/2016,Sports_celeb,@blakegriffin23,All this heavy breathing seems more locker room-esque than anything #debate +09/25/2016,Sports_celeb,@blakegriffin23,I guess it's easy to assume you made the list of experts. congrats on being right though! https://t.co/SKKhQSazHV https://t.co/LU9KSco3cS +09/23/2016,Sports_celeb,@blakegriffin23,@chrissyteigen thank you. i've never gotten 3 thumbs up before! +09/23/2016,Sports_celeb,@blakegriffin23,To Clippers Fans https://t.co/Z40kQBck1p +09/22/2016,Sports_celeb,@blakegriffin23,@WhitneyCummings ugh i know right?! +09/22/2016,Sports_celeb,@blakegriffin23,@DanWoikeSports thanks homie +09/22/2016,Sports_celeb,@blakegriffin23,"oh you know, just a couple of buddies hangin' out @google Duo https://t.co/ziwSNJ2AYd" +09/22/2016,Sports_celeb,@blakegriffin23,@GabGuerriero_ happy birthday!!! +09/20/2016,Sports_celeb,@blakegriffin23,i watched a documentary on tony robbins and read a bunch of ghandi quotes and then this… https://t.co/4GAAoeaqMC +09/20/2016,Sports_celeb,@blakegriffin23,30 Days in LA. Let me be your guide. @RBSoundSelect https://t.co/GKAItCe6Ec +09/14/2016,Sports_celeb,@blakegriffin23,"@JennyJohnsonHi5 but but but how else are we gonna tell them apart, Jenny?!?!" +09/08/2016,Sports_celeb,@blakegriffin23,@NightChanges125 @ayyditullio I'm not on a flight..... +09/06/2016,Sports_celeb,@blakegriffin23,The perfect combo ...Enjoyed the collab with @jamesroperart to bring my game and #SuperFly5 to life https://t.co/8rP4YIcgaX +08/30/2016,Sports_celeb,@blakegriffin23,@BahamasMusic @JJRedick count me in +08/29/2016,Sports_celeb,@blakegriffin23,@juice_916 @JJRedick that's one I wish I would have said. such a great set. +08/29/2016,Sports_celeb,@blakegriffin23,had the pleasure of being a guest on the multi-talented @JJRedick podcast. listen to us talk about things here https://t.co/0qlJ0tZ4aQ +08/29/2016,Sports_celeb,@blakegriffin23,@representclipps @KevinHart4real he definitely is but picking 4 isn't easy. gotta pay respects to the older guys who paved the way too. +08/28/2016,Sports_celeb,@blakegriffin23,"RT @OU_MBBall: 2 Players Of The Years can create quite the autograph line. + +Great turnout from #SoonerNation today https://t.co/tj5ngBxwD8" +08/28/2016,Sports_celeb,@blakegriffin23,RT @OU_MBBall: Pregame handshake between the coaches. https://t.co/gbRXg0sl86 +08/23/2016,Sports_celeb,@blakegriffin23,@PeterMehlman @Barryathree it's cool @JCrossover is my favorite clipper too +08/16/2016,Sports_celeb,@blakegriffin23,@thesulk I don't do business with kubo anymore. dude gave me a 1 star rating on eBay. and that was BEFORE he was a Hollywood star +08/12/2016,Sports_celeb,@blakegriffin23,"everybody check out my guy @GodfreyComedian special on showtime. he told me to say ""it's really really good"" https://t.co/X8xlpDXWDM" +08/08/2016,Sports_celeb,@blakegriffin23,"RT @JoeMande: Very excited to release my latest music video for @LifeOfDesiigner new 23-second song, ""Tea, Meat, Turnip."" https://t.co/PKV5…" +08/07/2016,Sports_celeb,@blakegriffin23,@rrivero I wish. I still think about it too. +08/03/2016,Sports_celeb,@blakegriffin23,"@SurelyYouJester BEHIND ME, bruh!" +08/03/2016,Sports_celeb,@blakegriffin23,the 80 year old lady paying w/ exact change and coupons behind me in line is pissed bc the credit card chip reader is taking too long +08/02/2016,Sports_celeb,@blakegriffin23,sources gonna source. #sources https://t.co/hKQ3SBR4FY +07/17/2016,Sports_celeb,@blakegriffin23,"RT @davidjonesusa: A recent post from Officer Montrell Jackson, who was shot & killed today in #BatonRouge... I'm in tears man. Jesus. http…" +07/16/2016,Sports_celeb,@blakegriffin23,"@rejectedjokes it's way less messy, man. #try it before you #knock it" +07/16/2016,Sports_celeb,@blakegriffin23,@DanWoikeSports congrats man. didn't you know you had a girlfriend. +07/15/2016,Sports_celeb,@blakegriffin23,@dekker @PardonMyTake #blessed #soreloser #nice +07/11/2016,Sports_celeb,@blakegriffin23,Congrats to the best power forward to ever play the game. It was truly an honor. Winner above all else. #thankyouTD https://t.co/cXAxvKk8z4 +07/11/2016,Sports_celeb,@blakegriffin23,@chrisdelia @nealbrennan never doubted you for a second +07/02/2016,Sports_celeb,@blakegriffin23,"RT @Rachel__Nichols: Guys. +ESPN/TNT just paid the NBA $24 BILLION. Either the owners keep nearly All of it, or half goes to the players. +T…" +07/01/2016,Sports_celeb,@blakegriffin23,"the fact that nobody has legally changed their name to ""sources"" and taken credit for every breaking sports story is insane." +06/30/2016,Sports_celeb,@blakegriffin23,@GabeIkard Jumpman +06/29/2016,Sports_celeb,@blakegriffin23,@jordanzhu @MrSilverScott @MrDrewScott geat show +06/29/2016,Sports_celeb,@blakegriffin23,"@GabeIkard @dekker they say ""don't meet your heroes"" but I'll make an exception" +06/29/2016,Sports_celeb,@blakegriffin23,"sorry, Sam. just letting you know my stance on hgtv's lineup. https://t.co/OJR2Ihtewu" +06/29/2016,Sports_celeb,@blakegriffin23,@dekker fixer upper > flip or flop +06/24/2016,Sports_celeb,@blakegriffin23,Congrats to @buddyhield the Pelicans got a good one. +06/23/2016,Sports_celeb,@blakegriffin23,@dougmcd3 @Joeingles7 a kid named Ben Simmons... not many people know about him but I think he's gonna be good. +06/23/2016,Sports_celeb,@blakegriffin23,@Joeingles7 me +06/22/2016,Sports_celeb,@blakegriffin23,"RT @HYPEBEAST: .@Jumpman23 introduces @blakegriffin32's SuperFly 5s in a trio of colorways. +https://t.co/6VJ5m8v5wJ https://t.co/D1PLhz8gdQ" +06/22/2016,Sports_celeb,@blakegriffin23,"RT @Jumpman23: High flyer. + +Introducing the Jordan #SuperFly5, inspired by @BlakeGriffin32's versatile skill set. +https://t.co/VUqWdZyeMq" +06/20/2016,Sports_celeb,@blakegriffin23,"unbelievable series to watch, congrats to cleveland. very well deserved. lebron and kyrie were next level good." +06/13/2016,Sports_celeb,@blakegriffin23,big thank you @Zegna for a great evening to benefit #TeamGriffin @TeamGriffinEYBL https://t.co/pqKuGPMZMJ +06/13/2016,Sports_celeb,@blakegriffin23,@RonFunches hello Ron! +06/09/2016,Sports_celeb,@blakegriffin23,"@SavedbytheBelzz @PardonMyTake @BarstoolBigCat it's still a long series, my friend" +06/07/2016,Sports_celeb,@blakegriffin23,@JakobeWayne real recognize real +05/31/2016,Sports_celeb,@blakegriffin23,everybody please vote for my guy @dfranks24 team.. https://t.co/sc89kpeZDZ +05/30/2016,Sports_celeb,@blakegriffin23,@marquisgodwin_ good luck to you bro. keep hoopin. +05/29/2016,Sports_celeb,@blakegriffin23,@GabeIkard team pup n suds > team x-bladz +05/29/2016,Sports_celeb,@blakegriffin23,big fan of zelda. even bigger fan of hamilton now. https://t.co/pZBVFzqMFV +05/26/2016,Sports_celeb,@blakegriffin23,"The #RedNoseDay Special is LIVE Tonight at 9/8c on @NBC. Wear your red nose, tune in, & donate! https://t.co/y5afJaxrHJ" +05/24/2016,Sports_celeb,@blakegriffin23,@jordancameron @connerRvernon yeah I do... Colby +05/24/2016,Sports_celeb,@blakegriffin23,@connerRvernon @jordancameron sounds like he's gettin beat like he stole somethin #embarrassing +05/24/2016,Sports_celeb,@blakegriffin23,@connerRvernon @jordancameron ya can't pull ya can't play #tonk +04/19/2016,Sports_celeb,@blakegriffin23,if you’re into apps and like the Earth support #AppsforEarth w/ @World_Wildlife & @AppStore. Go here: https://t.co/FIwIeuyXlI +04/19/2016,Sports_celeb,@blakegriffin23,@rejectedjokes oh that's awkward +04/19/2016,Sports_celeb,@blakegriffin23,forgot to tag you @JCrossover - congrats my man well deserved. #thejamalcrawfordaward https://t.co/3ir3yC93LK +04/18/2016,Sports_celeb,@blakegriffin23,3rd times a charm... +04/16/2016,Sports_celeb,@blakegriffin23,"@danlevy just start talking about ""eating clean"" and they'll accept you as one of their own." +04/16/2016,Sports_celeb,@blakegriffin23,@MintzPlasse Paul Pierce or Chris Paul? I just tell both of them you're in love with them. Thanks man. +04/14/2016,Sports_celeb,@blakegriffin23,"thank you for a lifetime of memories, motivation and inspiration. #mambaday https://t.co/bnZd5auLz3" +04/12/2016,Sports_celeb,@blakegriffin23,@GabGuerriero_ sorry I didn't see it in time! +04/09/2016,Sports_celeb,@blakegriffin23,wow great team win!! if @JCrossover isn't 6th man of the year I don't know who is! +04/06/2016,Sports_celeb,@blakegriffin23,my guy @MaalikWayns2 and @superNOVAtbt need your votes. go to https://t.co/k37wKNumJn and vote for #supernovatbt #supernova +04/04/2016,Sports_celeb,@blakegriffin23,@Atencio thanks man! I was pumped to be back out there. +04/03/2016,Sports_celeb,@blakegriffin23,"Still very very proud of this @OU_MBBall team. Had an amazing year and were so much fun to watch. Hats off to Nova, they're a great team." +04/03/2016,Sports_celeb,@blakegriffin23,@MaalikWayns2 haha I knew that tweet was coming. +03/31/2016,Sports_celeb,@blakegriffin23,thank you so much for having me. had a blast. Keep killing it!! cc: @ilazer https://t.co/iemxQt6X2H +03/26/2016,Sports_celeb,@blakegriffin23,"Let's go, boys. ⭕️🙌🏽." +03/24/2016,Sports_celeb,@blakegriffin23,@kellyoxford that's what you get for having morals. Keep it up and this followers leaving too. +03/24/2016,Sports_celeb,@blakegriffin23,@kumailn Twitter. Twitter is how we got to that point. +03/23/2016,Sports_celeb,@blakegriffin23,"""your whole appearance is a lie and it could never be true and if you really loved yourself then you would try and be you.” rip phife dawg" +03/22/2016,Sports_celeb,@blakegriffin23,Good luck to my guy @CoachJGamblin and his @MACUathletics team tonight in the naia national championship game. +03/21/2016,Sports_celeb,@blakegriffin23,@FSKPart3 @spencerhawes00 hahaha. sweet apartment spence #blessed #nbalife +03/21/2016,Sports_celeb,@blakegriffin23,@JoeMande who else? People wanna know +03/18/2016,Sports_celeb,@blakegriffin23,⭕️🙌🏽 https://t.co/QpBKlcEvUW +03/17/2016,Sports_celeb,@blakegriffin23,@CameronMoulene thanks man! +03/17/2016,Sports_celeb,@blakegriffin23,@JoeMande @nealbrennan joint bar mitzvah? Neal we can accommodate your schedule. Maybe do it at 3 Mics show after party? +03/17/2016,Sports_celeb,@blakegriffin23,@JoeMande is today your birthday? +03/17/2016,Sports_celeb,@blakegriffin23,@clipperdarrell thanks D!! +03/17/2016,Sports_celeb,@blakegriffin23,@tonyjefferson1 thanks brooo +03/17/2016,Sports_celeb,@blakegriffin23,@BarstoolNate these kids don't know how good they have it. thank you sir +03/17/2016,Sports_celeb,@blakegriffin23,Thanks for all the bday wishes everybody!! #latetwenties +06/08/2018,Sports_celeb,@kevinlove,Devastating. Prayers to all of his loved ones. So incredibly sad. https://t.co/4tmqtyjw4X +05/07/2018,Sports_celeb,@kevinlove,"RT @MensHealthMag: Introducing our #HowIGotHelp campaign for #MentalHealthMonth + +""The machismo attitude of stuffing your feelings down, or…" +05/06/2018,Sports_celeb,@kevinlove,Just posted a photo https://t.co/j1HRRTWwsn +04/30/2018,Sports_celeb,@kevinlove,The best thing I did for myself was to admit that I needed help. Know that your mental wellness matters just as muc… https://t.co/GriCzw2deB +04/13/2018,Sports_celeb,@kevinlove,Love what you’re doing my friend!!! You are helping so many 💪🏻💪🏻 https://t.co/LAtD7jAynC +04/12/2018,Sports_celeb,@kevinlove,"There’s so much power in articulating what you’re going through to another person, especially a professional. I wan… https://t.co/oT08tW6G8X" +04/02/2018,Sports_celeb,@kevinlove,@TheRock this is extremely powerful. Thank you. https://t.co/Po0vJIFJXU +04/02/2018,Sports_celeb,@kevinlove,Hahaha!!! Gotta give the people what they want. https://t.co/ap9c4uVVAy +03/31/2018,Sports_celeb,@kevinlove,So much respect and admiration for these 4 right here. Congrats on the HOF nods. https://t.co/givtajlLIg +03/30/2018,Sports_celeb,@kevinlove,@mcten Hell of an angle Dave. 🙌🏻🙌🏻 +03/28/2018,Sports_celeb,@kevinlove,"”Man, you are one pathetic loser!” -I’m Lloyd Christmas bro........new mood. https://t.co/c75EgRPOuF" +03/28/2018,Sports_celeb,@kevinlove,"Man, I appreciate you @ShockDoctor ...could have been so much worse if I wasn’t protected with your mouthguard. Tha… https://t.co/6rIsc0Deyo" +03/23/2018,Sports_celeb,@kevinlove,Everyone is going through something. Sat down with @Channing_Frye to talk about continuing the conversation around… https://t.co/FZNwkllMZd +03/22/2018,Sports_celeb,@kevinlove,"1,000 career 3’s tonight. It’s only right the pass came from @kingjames...on a night where he… https://t.co/EZ4y2s0O5s" +03/22/2018,Sports_celeb,@kevinlove,@KingJames 35pts 17dimes and 0 to’s...sheesh. +03/22/2018,Sports_celeb,@kevinlove,Congrats to @DwightHoward the new Mr. 30/30. Hell of a night!!! +03/21/2018,Sports_celeb,@kevinlove,"Looking forward to following The Rookie: Brendon Hartley. +https://t.co/XMa4IqAZWS" +03/20/2018,Sports_celeb,@kevinlove,Air Bud I f*cking respect you for this... https://t.co/yFHh5enbji +03/20/2018,Sports_celeb,@kevinlove,"Happy to be sharing the court with my brothers again!! Been too long. + +Never easy to get a W… https://t.co/ZuSSwrvQ9U" +03/18/2018,Sports_celeb,@kevinlove,RT @JmCalderon: Maybe the more difficult 1 to get after 12 days on the road but did it!Great effort tonight.After all the injuries it was a… +03/17/2018,Sports_celeb,@kevinlove,"Congrats to Coach K for notching the all time wins (1,099) in Division-1 history. Passed the… https://t.co/R0XJqvKzcc" +03/14/2018,Sports_celeb,@kevinlove,Congrats @JmCalderon on 5K assists. Only 9 active players to do so!! VAMOS!!!! +03/09/2018,Sports_celeb,@kevinlove,Just saw the play...prayers to Jalen Brown. 🙏🏻🙏🏻🙏🏻 +03/08/2018,Sports_celeb,@kevinlove,Strength via @bananarepublic #internationalwomensday 💪🏻💪🏻💪🏻 https://t.co/7nxRfqeOLY +03/08/2018,Sports_celeb,@kevinlove,"Man, @KingJames was on another level tonight!!! Sheesh." +03/08/2018,Sports_celeb,@kevinlove,"#EveryoneIsGoingThroughSomething +https://t.co/355HcQesfI https://t.co/EbPVlIRTw1" +03/07/2018,Sports_celeb,@kevinlove,And Women!!! 💪🏻💪🏻 https://t.co/tt7bTtQPhs +03/07/2018,Sports_celeb,@kevinlove,Grandma!!! 🙌🏻🙌🏻🙌🏻 https://t.co/LW3Wb0H43w +03/07/2018,Sports_celeb,@kevinlove,"Man, love and respect for opening that door for me. You’ve helped more people than you know!! https://t.co/cFjTsUHbIx" +03/07/2018,Sports_celeb,@kevinlove,"This one goes out to Grandma Carol, the star of the day. It’s funny how many of you wrote to me… https://t.co/MkJDQM9CJw" +03/06/2018,Sports_celeb,@kevinlove,"Wow...I can't even describe how grateful I am for the love and support. More than anything, it's been amazing to se… https://t.co/MbjK2LVq0y" +03/06/2018,Sports_celeb,@kevinlove,"RT @PlayersTribune: Earlier this season, @KevinLove had a panic attack. + +Now he wants to talk about it. https://t.co/U5TeITdUb3" +03/06/2018,Sports_celeb,@kevinlove,I’ve never been comfortable sharing much about myself. I thought about mental health as someone else’s problem. I’v… https://t.co/8M1NSb8G3A +03/05/2018,Sports_celeb,@kevinlove,Give me an Oscar nominated film from this year and why I must watch??? Have seen so few... +03/05/2018,Sports_celeb,@kevinlove,Spot on** https://t.co/B6WoS9XbGv +03/05/2018,Sports_celeb,@kevinlove,"Hey man, looks like you spent 2hrs shading in the upper lip. Got my left ear spot...well done. https://t.co/TzPfofdNIi" +03/05/2018,Sports_celeb,@kevinlove,The Shape of Water. Well done. #oscars +03/05/2018,Sports_celeb,@kevinlove,Frances McDormand. Straight passion. Just the best. Love. +03/05/2018,Sports_celeb,@kevinlove,Gary Oldman as Sir Winston Churchill. Darkest Hour. Just great...congrats!! #oscars +03/05/2018,Sports_celeb,@kevinlove,RT @JordanPeele: I just won an Oscar. WTF?!? +03/05/2018,Sports_celeb,@kevinlove,Kobe. #oscars +03/05/2018,Sports_celeb,@kevinlove,"Happy for Allison Janney she was brilliant in I, TONYA!!! #oscars" +03/01/2018,Sports_celeb,@kevinlove,RT @SInow: Kevin Love makes his own contribution to the home of champions https://t.co/JU8NCe09Sp +02/28/2018,Sports_celeb,@kevinlove,@KingJames Only player ever with +30K points +8K assists +8K rebounds ...ONLY PLAYER EVER. 👏🏼👏🏼👏🏼 +02/28/2018,Sports_celeb,@kevinlove,Shareef O’Neal to UCLA!!??? Oh it’s on now!!! 🔥🔥🔥 +02/25/2018,Sports_celeb,@kevinlove,As long as I can remember Phil Knight has always been someone I have idolized. Being a fellow… https://t.co/qrzpwEn9FG +02/24/2018,Sports_celeb,@kevinlove,@barstoolsports Still trying my best to fit in??? Check out this Primo 📦. Once again...jokes on you @barstoolsports https://t.co/uZiMQaDDfu +02/24/2018,Sports_celeb,@kevinlove,"The kids at St Jude have always given me inspiration and perspective. + +Oh, and “sports hate” is healthy...all good… https://t.co/zw4DaT34MT" +02/24/2018,Sports_celeb,@kevinlove,@StJude Strong!!! 💪🏻💪🏻💪🏻 https://t.co/uk26MBNJke +02/19/2018,Sports_celeb,@kevinlove,@GQMagazine Portrait from All-Star Saturday. 💪🏻💪🏻💪🏻 https://t.co/IiuwcnqX4o +02/19/2018,Sports_celeb,@kevinlove,"RT @cavs: From @kevinlove giving back during @NBACares All-Star Day of Service, to @Larrydn22’s incredible #VerizonDunk performance, and @K…" +02/19/2018,Sports_celeb,@kevinlove,The replay on that was 🔥🔥!! @Larrydn22 is gonna have the Q going crazy https://t.co/6KacDHZqFe +02/19/2018,Sports_celeb,@kevinlove,Me too...I appreciate you. Happy and healing. https://t.co/f4QhfcrCIc +02/19/2018,Sports_celeb,@kevinlove,An unbelievable @NBAAllStar weekend capped off with a #teamlebron win and another ASG MVP for @KingJames 😳😳😳 I see… https://t.co/2ROJwqDxXD +02/18/2018,Sports_celeb,@kevinlove,OT Thriller. What a finish on Senior Night for @UCLAMBB!! +02/18/2018,Sports_celeb,@kevinlove,"RT @UCLAAthletics: Great having @kevinlove back in Westwood. + +#GoBruins https://t.co/AJOfU0a3sU" +02/18/2018,Sports_celeb,@kevinlove,Forever a BRUIN. 10 years removed. https://t.co/XTwCkCZQl4 +02/17/2018,Sports_celeb,@kevinlove,"RT @SoleCollector: #SoleWatch: @KevinLove is healing up, but still rocked these Nike React Hyperdunk PEs during All-Star practice. https://…" +02/17/2018,Sports_celeb,@kevinlove,LA! I’ll be at @mountaindew’s Courtside Studios today! Come through to the corner of Pico and Figueroa at 145p to c… https://t.co/F6iq5zDjb1 +02/16/2018,Sports_celeb,@kevinlove,Got to hang out with @marriottrewards members at #NBAAllStar thanks to Marriott Rewards Moments. What experience wo… https://t.co/IPYFEOQutd +02/16/2018,Sports_celeb,@kevinlove,Last Night. Excel. All Smiles. 😬😬😬 https://t.co/S1trniiUy3 +02/16/2018,Sports_celeb,@kevinlove,"RT @NikeLA: ATTN MAKERS: Special appearance by @kevinlove at Nike the Grove. + +Join him today for a special customization experience at the…" +02/16/2018,Sports_celeb,@kevinlove,"Man, can’t wait to see you all!!!! https://t.co/Qsa5Vy9ThT" +02/16/2018,Sports_celeb,@kevinlove,👍🏻👍🏻💪🏻💪🏻 https://t.co/2WUzbUKXP2 +02/15/2018,Sports_celeb,@kevinlove,Sounds like a hell of a look https://t.co/9ZH4m3qM3H +02/15/2018,Sports_celeb,@kevinlove,Unacceptable...on it https://t.co/j9jq6hgsus +02/15/2018,Sports_celeb,@kevinlove,"Yes, I’m hiding it for the Gram/Twitter https://t.co/QjC7kt8qbz" +02/15/2018,Sports_celeb,@kevinlove,Excited to celebrate my upcoming collection BR/K.Love-18. Come see me today from 5-6 p.m. at @bananarepublic at The… https://t.co/DuGv15KZmU +02/14/2018,Sports_celeb,@kevinlove,Prayers to everyone in Parkland Florida 🙏🏻🙏🏻🙏🏻 +02/14/2018,Sports_celeb,@kevinlove,MINE!!! Happy Valentines Day @katebock. Thanks for always having my back!!! ❤️🦒 https://t.co/fpuMAJ3WLq +02/14/2018,Sports_celeb,@kevinlove,RT @esquire: .@kevinlove tells us how his new capsule collection with @BananaRepublic came together https://t.co/8h5wbqF0AH +02/14/2018,Sports_celeb,@kevinlove,Had to get it right lol 💪🏻💪🏻 https://t.co/SWC43xRPYF +02/14/2018,Sports_celeb,@kevinlove,"Yes, and be sure try online for taller sizes... https://t.co/T7yXbBkzki" +02/14/2018,Sports_celeb,@kevinlove,Get in on the action. BR/K.Love-18: The new collection I designed exclusively for @BananaRepublic . Dropping 9-18-2… https://t.co/9uDHCZA5fl +02/14/2018,Sports_celeb,@kevinlove,"Man, hell of a win heading into the All-Star break!! Can’t wait to be back on the floor with these boys!! 💪🏻💪🏻" +02/12/2018,Sports_celeb,@kevinlove,RT @dg_riff: Dan & Jennifer Gilbert have been leading the fight for @ChildrensTumor for years. Nick is the survivors’ survivor. He’ll beat… +02/12/2018,Sports_celeb,@kevinlove,"RT @cediosman: Great teamwork, big win! The Land is on 🔥 #AllForOne" +02/12/2018,Sports_celeb,@kevinlove,"RT @cavs: The new guys showed out tonight on #NBAonABC! +@JordanClarksons: 17 pts, 3 reb, 3-4 3PM, 2 stl +@rodneyhood: 15 pts, 3 reb, 3-6 3PM…" +02/10/2018,Sports_celeb,@kevinlove,"RT @UCLAAthletics: Vote UCLA for Best College for Sports Fans! + +🔗: https://t.co/lciilqqkoW + +#GoBruins https://t.co/vZRpNXtoXv" +02/08/2018,Sports_celeb,@kevinlove,I love and respect the Adelman family so much and am incredibly sad to hear about the passing of RJ. Prayers and co… https://t.co/v6fsLjMCpY +02/07/2018,Sports_celeb,@kevinlove,Hope @kporzee 🦄 is good. Just seeing the replay. Prayers 🙏🏻🙏🏻🙏🏻 +02/06/2018,Sports_celeb,@kevinlove,💪🏻💪🏻💪🏻 https://t.co/h3ldCJErxW +02/01/2018,Sports_celeb,@kevinlove,Starting the rehab process and making sure my foods are locked in with @g_plans. Appreciate you… https://t.co/XsJr4exlhD +02/01/2018,Sports_celeb,@kevinlove,Just saw the Isaiah Canaan news. Prayers for a speedy recovery. Been a tough time in the NBA for injuries. 🙏🏻🙏🏻🙏🏻 +01/31/2018,Sports_celeb,@kevinlove,Incredibly sad news to hear about Rasual Butler and his wife Leah. Prayers to both of their families through this tough time. +01/30/2018,Sports_celeb,@kevinlove,Happy Birthday @katebock!!! You are truly an amazing person. You bring light into so many… https://t.co/EttQPuXPI5 +01/29/2018,Sports_celeb,@kevinlove,"Congrats to @Channing_Frye on his 1,000 career 3’s!!!! 👌🏼👌🏼👌🏼" +01/28/2018,Sports_celeb,@kevinlove,"RT @Nike: Outplay yourself. + +@rogerfederer, Melbourne's defending champion and holder of 19 major titles, just beat his own record, by winn…" +01/27/2018,Sports_celeb,@kevinlove,Prayers to Andre Roberson!!! 🙏🏻🙏🏻 +01/27/2018,Sports_celeb,@kevinlove,@carmeloanthony 25K points. That’s a lot of buckets!!! 💪🏻💪🏻 +01/27/2018,Sports_celeb,@kevinlove,@Channing_Frye Cedi mortified 😂😂😂 +01/27/2018,Sports_celeb,@kevinlove,@unclejeffgreen 😡😡😡 https://t.co/gFdLxfnzpJ +01/27/2018,Sports_celeb,@kevinlove,Hope big fella @boogiecousins is ok!!! Prayers 👏🏼 +01/26/2018,Sports_celeb,@kevinlove,Bench Mob. #TeamLebron #NBAAllStar https://t.co/PqQdGVnahv +01/26/2018,Sports_celeb,@kevinlove,#TeamLebron 🔥🔥🔥 +01/25/2018,Sports_celeb,@kevinlove,Appreciate it @DwyaneWade 🙌🏼🙌🏼 https://t.co/3GxzDCw7sT +01/24/2018,Sports_celeb,@kevinlove,Honored to be selected to my 5th NBA All-Star game and be a part of this elite group headed to… https://t.co/9GZaO3z0tn +01/24/2018,Sports_celeb,@kevinlove,Appreciate it brother 🙌🏼🙌🏼 https://t.co/KHEZkiITAo +01/24/2018,Sports_celeb,@kevinlove,Would be special to end up on the same All-Star team as @KlayThompson ...our families have been friends for a long… https://t.co/IbLV3NrNno +01/24/2018,Sports_celeb,@kevinlove,#rp @nba @kingjames Rarefied Air. 30K and it doesn’t stop there. Crazy to be a part of history… https://t.co/NfRkWut0qj +01/18/2018,Sports_celeb,@kevinlove,Congrats Captain @kingjames!!!!! https://t.co/RAkfon5bAL +01/17/2018,Sports_celeb,@kevinlove,🙌🏼🙌🏼 https://t.co/jubWKHKs5z +01/15/2018,Sports_celeb,@kevinlove,Just posted a photo https://t.co/1kPzgrxJJh +01/11/2018,Sports_celeb,@kevinlove,RT @DwyaneWade: Kevin Love #NBAvote +01/11/2018,Sports_celeb,@kevinlove,RT @DwyaneWade: Lebron James #NBAVote +01/08/2018,Sports_celeb,@kevinlove,@DwyaneWade #nbavote +01/08/2018,Sports_celeb,@kevinlove,RT @isaiahthomas: LeBron James #NBAvote +01/08/2018,Sports_celeb,@kevinlove,RT @cavs: RETWEET to help send @IsaiahThomas to @NBAAllStar! #NBAVOTE https://t.co/NRROupIdRl +01/07/2018,Sports_celeb,@kevinlove,#NBAVote @DwyaneWade +01/07/2018,Sports_celeb,@kevinlove,#NBAVote @KingJames Appreciate the help boiiiiiiii 😳 https://t.co/R8WbUyTRxD +01/07/2018,Sports_celeb,@kevinlove,"#NBAVote @isaiahthomas just ordered 2 pairs of the Mighty IT PE’s!!! + +RT if you’re getting a pair." +01/07/2018,Sports_celeb,@kevinlove,Appreciate it brother!!! https://t.co/yqKVJVJ5pN +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: Isaiah Thomas #NBAVote https://t.co/SlGJIQd5El +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: LeBron James #NBAVote 😏 https://t.co/KbdE037Dml +01/07/2018,Sports_celeb,@kevinlove,RT @cavs: Dwyane Wade #NBAVote https://t.co/mb7XZrjFew +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: Kevin Love || #NBAVote +🚨 RETWEET 🚨 https://t.co/N8ZznSIqyX" +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: LeBron James || #NBAVote +🚨 RETWEET 🚨 https://t.co/dnSrf97DR4" +01/05/2018,Sports_celeb,@kevinlove,"RT @cavs: Before you tackle your workout tonight, RETWEET to send @kevinlove to @NBAAllStar! + +BONUS: submit an #NBAVote here → https://t.co…" +12/22/2017,Sports_celeb,@kevinlove,Thanks to everyone at @JohnnieWalkerUS for helping me spread holiday cheer with personalized bottles of Johnnie Wal… https://t.co/M6tugVIJCb +12/13/2017,Sports_celeb,@kevinlove,"RT @cavs: These kids are an inspiration. + +#CavsCare https://t.co/p167QbhjDv" +12/06/2017,Sports_celeb,@kevinlove,Playing the blues with @bananarepublic  https://t.co/qtMRQ2Hwh6 #BRMens https://t.co/5x0o11wB4D +12/01/2017,Sports_celeb,@kevinlove,TPT DDP!! https://t.co/fx8pkfJJ63 +11/26/2017,Sports_celeb,@kevinlove,"Quality, fits and fabrics to power forward. @bananarepublic https://t.co/HRL6I7HZjz https://t.co/Br2sIB0MAj" +11/23/2017,Sports_celeb,@kevinlove,Just gonna leave this right here...Happy Thanksgiving everyone!!! #thanksgiving #thankful https://t.co/5bhqE3IC6G +11/08/2017,Sports_celeb,@kevinlove,Unparalleled craftsmanship and comfort. Suit up in the latest from @bananarepublic. https://t.co/HRL6I7qnUZ https://t.co/IvlxkI55P4 +11/01/2017,Sports_celeb,@kevinlove,Halloween Havoc. 🦂🎃💀🕸🔪💉#wolfpacsting #hollywoodhulkhogan #nwo https://t.co/08ALBb9mIu +10/25/2017,Sports_celeb,@kevinlove,"""We don't have a handshake yet......."" -Me https://t.co/5hJFRR7IuW" +10/19/2017,Sports_celeb,@kevinlove,RT @PlayersTribune: Another incredible night at the Big Shots and Little Stars fundraiser to benefit @flashesofhope and the @ChildrensTumor… +10/18/2017,Sports_celeb,@kevinlove,Opening Night. 10/17/17. 👌🏼👌🏼👌🏼 https://t.co/NHXLznb5dq +10/18/2017,Sports_celeb,@kevinlove,"RT @dg_riff: Please be part of this historic recovery process...#SonomaStrong...where the ""Love in the air is thicker than the smoke."" http…" +10/14/2017,Sports_celeb,@kevinlove,The Triangle will never be the same!!! 📐 So much can be said about RJ...but the truth is we… https://t.co/Zt4eb0NSl6 +10/08/2017,Sports_celeb,@kevinlove,"Connie Hawkins was the reason I chose to wear ""42"" as a young kid in Portland, Oregon. My father… https://t.co/PPpfW6CaN9" +10/05/2017,Sports_celeb,@kevinlove,"RT @PlayersTribune: On a Thursday night a few weeks ago in Cleveland, @a_miller48 realized something important about this @Indians team. ht…" +10/02/2017,Sports_celeb,@kevinlove,"RT @imanshumpert: Goodmorning, continue to keep love in our hearts. Spread love always. My heart out to all those affected by Vegas shootin…" +10/02/2017,Sports_celeb,@kevinlove,RT @KingJames: Pray for Vegas!! 🤦🏾‍♂️. What the hell is going on people!?!? My prayers sent to the heavens above for all the families 🙏🏾 ht… +09/28/2017,Sports_celeb,@kevinlove,A great dinner calls for the perfect suit @bananarepublic https://t.co/0BnO8jpqpD #BRMens https://t.co/ueV2086otk +09/26/2017,Sports_celeb,@kevinlove,Season X. Look forward to this journey!!! #backatit #cavs #season10 #brotherhood https://t.co/mOCQCA4vQ1 +09/23/2017,Sports_celeb,@kevinlove,RT @CP3: Please support my brother @carmeloanthony as he helps the people of Puerto Rico with their hurricane relief efforts #BiggerThanBas… +09/22/2017,Sports_celeb,@kevinlove,"Funny thing is-cause his friends are so dope, that kid will get plenty of primo 📦 as he gets older. Trust me. Jokes… https://t.co/owCLzTQ8aL" +09/21/2017,Sports_celeb,@kevinlove,9.21.17 @ UCSB - UC Santa Barbara https://t.co/fv933Z8Qlq +09/21/2017,Sports_celeb,@kevinlove,"From my good friend @jjbareapr +https://t.co/ax0hJ5ToV9" +09/11/2017,Sports_celeb,@kevinlove,Warmup w/ the Champ @rafaelnadal ...Congrats on the US Open win. 🏆X16 https://t.co/AuKzrJIx7Z +09/11/2017,Sports_celeb,@kevinlove,RT @PlayersTribune: Tim Duncan is asking for your help for the people of the U.S. Virgin Islands to steadily rebuild their lives: https://t… +09/09/2017,Sports_celeb,@kevinlove,HBD to @TheRealJRSmith my brother and all time favorite. He has become family thanks to CLE and is one of the best dudes I've ever met!! +09/08/2017,Sports_celeb,@kevinlove,Better late than never...appreciate all the birthday love and wishes yesterday!!! Truly appreciated and special. +09/06/2017,Sports_celeb,@kevinlove,Switched up the game...still got ugly on both sides 🃏🃏🃏 https://t.co/HO2kfDRdkM +09/06/2017,Sports_celeb,@kevinlove,United Salad/Portland Legends PG...only IT will understand. 🙌🏼🙌🏼 https://t.co/3QLq0A2vLT +09/06/2017,Sports_celeb,@kevinlove,Thought this was pretty spot on...thoughts??? 😎😎 #virgoseason #Sep7 https://t.co/TEZ4pKzoo9 +09/05/2017,Sports_celeb,@kevinlove,Nothing beats a perfectly tailored suit https://t.co/oe62Dr4wIc @bananarepublic #BRMens #BRxKevinLove https://t.co/mJa9gyzYRr +09/04/2017,Sports_celeb,@kevinlove,"Quick getaway to Napa now back to work!!! Man, that was a serious heat wave up… https://t.co/Wk0Wm1AZda" +09/04/2017,Sports_celeb,@kevinlove,Man Josh Rosen is a problem!!!!What a win...🔥🔥🔥 @UCLAFootball +08/28/2017,Sports_celeb,@kevinlove,The end of that #GameOfThonesfinale tho.........................👀👀👀 +08/28/2017,Sports_celeb,@kevinlove,RT @KingJames: #Pray4Houston🙏🏾 +08/27/2017,Sports_celeb,@kevinlove,When Conor talks way too fast>>>>> +08/27/2017,Sports_celeb,@kevinlove,#composure +08/27/2017,Sports_celeb,@kevinlove,Man a lot of heart!!! But 50-0....sheesh!! Respect for both of these guys. History. +08/27/2017,Sports_celeb,@kevinlove,I think Floyd won that round??? +08/27/2017,Sports_celeb,@kevinlove,Gives me chills just thinking about it...😂😂😂💀💀💀 https://t.co/XgdHkYKEDw +08/25/2017,Sports_celeb,@kevinlove,"#rp @katebock as they say in GOTs...""I wish you good fortune in the wars to come"". +Thank you… https://t.co/IuvFsbr6nN" +08/24/2017,Sports_celeb,@kevinlove,"Got to rally w/ world #1 tonight... +🇪🇸 vs 🇺🇸 🎾🎾🎾 @ New York, New York https://t.co/4prF6ho4pq" +08/10/2017,Sports_celeb,@kevinlove,My good friend Rob Mac!! https://t.co/Dq66nhYuoy +07/25/2017,Sports_celeb,@kevinlove,"RT @BananaRepublic: Pro athletes @kevinlove, @CJMcCollum, @DidiG18 & @M_Ryan02 showing you how they wear the new Rapid Movement Chino. http…" +07/25/2017,Sports_celeb,@kevinlove,The new Rapid Movement Chinos from @BananaRepublic are ready for anything and always keep their fit… https://t.co/xhYvLCsZYH +07/21/2017,Sports_celeb,@kevinlove,Life is amazing. No complaints. Things are a little peculiar. But no complaints. Now go kick some rocks 🙌🏼 https://t.co/Tz62YyGeYt +07/20/2017,Sports_celeb,@kevinlove,NBA Champion X3. 7 straight Finals. Came to work and proved his worth every day. A mentor to me.… https://t.co/qSncE50Ujc +07/17/2017,Sports_celeb,@kevinlove,I wish Oberyn Martell were still alive #GameOfThrones +07/16/2017,Sports_celeb,@kevinlove,THE MAN DIDN'T DROP A SET 🐐 +07/16/2017,Sports_celeb,@kevinlove,🏆X19 +07/16/2017,Sports_celeb,@kevinlove,☝🏼 more game +07/16/2017,Sports_celeb,@kevinlove,One set from #8 at #wimbledon +07/16/2017,Sports_celeb,@kevinlove,Rogggggggerrrrrrr 🙌🏼🙌🏼 +07/14/2017,Sports_celeb,@kevinlove,11th Wimbledon Final appearance!!! +07/14/2017,Sports_celeb,@kevinlove,Roger 🐐 +07/14/2017,Sports_celeb,@kevinlove,Tiebreak 2. Same result. 2 sets Fed. +07/14/2017,Sports_celeb,@kevinlove,How do you hit that shot??? Federer. Sheesh. #Wimbledon +07/13/2017,Sports_celeb,@kevinlove,"2007 + 📷: @slamonline https://t.co/2lz3E8U8Jd" +07/10/2017,Sports_celeb,@kevinlove,Incredible match. Hell of a battle. So much respect for Rafa. So much fight. Gotta be a great feeling for Muller. Composed the whole time. +07/10/2017,Sports_celeb,@kevinlove,Next level. 28 straight service holds hahaha https://t.co/B8UnbHM95a +07/10/2017,Sports_celeb,@kevinlove,EVERYTHING https://t.co/bf9TK2vlkb +07/10/2017,Sports_celeb,@kevinlove,Fed since day 1. But hard not to be a fan of this... https://t.co/Dui4J6zkte +07/10/2017,Sports_celeb,@kevinlove,Crazy..I would have done the same https://t.co/H4W7yUtSqd +07/10/2017,Sports_celeb,@kevinlove,Haha crowd has to stand to try and rid the reflection. 4hrs 19min and counting. +07/10/2017,Sports_celeb,@kevinlove,This Nadal vs Muller match has been incredible. Wow. +07/09/2017,Sports_celeb,@kevinlove,"Stay cool. #freetomove #saxxunderwear +😎🔥🔥🔥 https://t.co/Xgbj6bYQlP" +06/27/2017,Sports_celeb,@kevinlove,Congrats to @russwest44 for finishing his historic+unforgettable season with the #NBAMVP. Unbelievable what you've accomplished brother. +05/30/2017,Sports_celeb,@kevinlove,Just posted a photo https://t.co/zrxUeJIyvQ +05/26/2017,Sports_celeb,@kevinlove,"Still work to be done but last night was a good one. #defendtheland +(📷: jdg7873 + @cavs) https://t.co/gmyry6Fk6h" +05/26/2017,Sports_celeb,@kevinlove,Podium squad with the All Time Post Season Scoring Leader. Eastern Conference Champs X3!!! @ TD… https://t.co/mPps4yXvju +05/16/2017,Sports_celeb,@kevinlove,"RT @ShockDoctor: Good Luck in the Eastern Conference Finals @kevinlove 🔥 +#DefendtheLand #GuardYours https://t.co/JMZqmyU1DK" +05/10/2017,Sports_celeb,@kevinlove,Hangin' in a classic summer suit. Performance fiber & great tailoring-a perfect combo https://t.co/DDfTmyZjkj… https://t.co/a8cgA8gLzI +05/09/2017,Sports_celeb,@kevinlove,Need this framed. Just a great pic from Round 2!!! 👌🏼👌🏼👌🏼 https://t.co/dnlqWc89eq +04/25/2017,Sports_celeb,@kevinlove,A shirt that has non-iron technology and is 100% stretch cotton? perfect. https://t.co/KeotrwxoTF @BananaRepublic… https://t.co/zLpySjWRuE +04/14/2017,Sports_celeb,@kevinlove,"RT @PlayersTribune: During the toughest year of his life, @Channing_Frye found comfort in a familiar place. + +His @Cavs family: https://t.co…" +04/12/2017,Sports_celeb,@kevinlove,"Inspired by the Pacific NW, Clint Eastwood, & Americana launching my new collab w @saxxunderwear… https://t.co/brqvJSqZlM" +04/09/2017,Sports_celeb,@kevinlove,History made @russwest44!! Unbelievable season so far brother. 42 triple doubles...AND THE GAME WINNER HAHA!!! Wow. #WhyNot #42 #Day1 #Ern +04/03/2017,Sports_celeb,@kevinlove,Want to win some mouth guards? Just RT & Follow @ShockDoctor to win! #GuardYours https://t.co/lGAWtofs21 +04/01/2017,Sports_celeb,@kevinlove,Final Four selection: Oregon. Dad played there from 68-71. Nothing but great memories of taking… https://t.co/C6FuLBdKmm +03/25/2017,Sports_celeb,@kevinlove,"Wait...70!!! 👀👀👀👀👀👀 +SHEESH" +03/23/2017,Sports_celeb,@kevinlove,Happy Birthday to my brother @KyrieIrving ...can't wait to see what's next. Keep being you!! +03/21/2017,Sports_celeb,@kevinlove,On the move in clothes that work as hard as I do https://t.co/3fz2oj2fJj @BananaRepublic #BRxKevinLove https://t.co/ypHwwQd4yv +07/01/2018,Sports_celeb,@mistyonpointe,ktwil14 catehurlin @zhongjingfang Get ready for an incredible change and the start to a beautiful new chapter!… https://t.co/HWkuTPiKSV +06/30/2018,Sports_celeb,@mistyonpointe,RT @wkamaubell: Whoah! #PrivateSchoolNegro on @NetflixIsAJoke is Revolutionary Ballet Dancer Approved! #RBDA https://t.co/GfTzFLDWrR +06/30/2018,Sports_celeb,@mistyonpointe,Yasssss @wkamaubell Good stuff here. Loving the real and hilarious talk bout the mixed kid experience in USA in thi… https://t.co/IddBR8uJGN +06/30/2018,Sports_celeb,@mistyonpointe,"Yaaasssss girls! Congratulations on your promotions. Strength, perseverance, patience and sheer hard work, got thes… https://t.co/Hl58NydDoL" +06/30/2018,Sports_celeb,@mistyonpointe,"RT @UAnews: .@UnderArmour hosted workouts in LA this week and, boy, can our clothing really survive the heat. + +This @MistyonPointe Signatu…" +06/29/2018,Sports_celeb,@mistyonpointe,https://t.co/LvANJ2AZYr +06/28/2018,Sports_celeb,@mistyonpointe,"#Repost raphaelaneihausen +・・・ +Curtain call of Don Quixote, danced sublimely by mistyonpointe and @jeffreycirio. If… https://t.co/oNqVXvIfry" +06/27/2018,Sports_celeb,@mistyonpointe,"❤️❤️❤️ love you #Repost enriqueanayaofficial +・・・ +STORY TIME!! I remember when I first got to New York, the first pe… https://t.co/F5PO5ClhjA" +06/24/2018,Sports_celeb,@mistyonpointe,I love you and @courtneybvance like fam! @ImAngelaBassett thank you for coming out to support us!! @ABTBallet… https://t.co/2xsJh3u4i7 +06/24/2018,Sports_celeb,@mistyonpointe,🎉🎉🎉 #warriors #DubNation Ballerina Misty Copeland is a bigger Golden State Warriors fan than you https://t.co/p37FET0QJC +06/24/2018,Sports_celeb,@mistyonpointe,Misty Copeland lights up Met stage during ABT’s season: https://t.co/QzWQIiNLRi +06/21/2018,Sports_celeb,@mistyonpointe,RT @FrankieStokes20: Thank you @mistyonpointe for taking the time to greet us after the show! It was truly an experience I will never forge… +06/17/2018,Sports_celeb,@mistyonpointe,❤️❤️❤️ #RomeoAndJuliet @RobertoBolle https://t.co/uNRbyJQy8v +06/17/2018,Sports_celeb,@mistyonpointe,My Romeo’s!!❤️❤️❤️ Thank you @herman_cornejo and… https://t.co/BbKvCDf3hT +06/16/2018,Sports_celeb,@mistyonpointe,"RT @daniil: Photo: About to embark, again, on a 3-act rite of passage also known as Romeo in McMillan‘s “Romeo & Juliet” alongside my lumin…" +06/15/2018,Sports_celeb,@mistyonpointe,"Love this #Repost @mistyonpointe +・・・ +The most… https://t.co/NJzVzLKt7h" +06/15/2018,Sports_celeb,@mistyonpointe,Yes my love! @erica_lall Is Ready to Take Center Stage https://t.co/bvl7ErS8vO via @ELLEmagazine +06/14/2018,Sports_celeb,@mistyonpointe,https://t.co/mXROXXCrQh +06/14/2018,Sports_celeb,@mistyonpointe,"RT @Artsykc: Another finished painting. I've been completely captivated and inspired by @mistyonpointe so I just had to paint her. +#digital…" +06/13/2018,Sports_celeb,@mistyonpointe,"RT @BeccaLee22: last night i saw abt’s romeo and juliet, at the met, and the three principals were an african american, an argentinian, and…" +06/11/2018,Sports_celeb,@mistyonpointe,"⁦@HenryLeutwyler⁩ 📸.#Repost @artbytee.exe +・・・ +“Caught” . +. +. +#processing #blackart #blackartists #java… https://t.co/ABJQRk3oGX" +06/09/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: Design details on pointe. Our #UAMistySignature Collection features feminine cuts and premium fabrics for women to feel co… +06/09/2018,Sports_celeb,@mistyonpointe,"RT @warriors: What's it feel like to be a back-to-back NBA Champion? + +Hear Steve Kerr's immediate reactions postgame 🗣️ https://t.co/24NBju…" +06/09/2018,Sports_celeb,@mistyonpointe,"RT @warriors: How you livin', @StephenCurry30 ? #StrengthInNumbers 🏆🏆 https://t.co/OyGRO0PYtq" +06/09/2018,Sports_celeb,@mistyonpointe,RT @LaurenceScott: Warriors Sound LIVE in Cleveland -- LISTEN NOW to Postgame Celebration: https://t.co/T7xX5Xm27w https://t.co/elt2466LnN +06/09/2018,Sports_celeb,@mistyonpointe,Roberto Bolle and Misty Copeland - Romeo and Juliet https://t.co/SPnwlQjxOE via @YouTube Fave role hands down!!! 😭😭… https://t.co/U4gs1rUFVp +06/08/2018,Sports_celeb,@mistyonpointe,"RT @mistyonpointe: Snack game on pointe with @nakedjuice’s new Fruit, Nut & Veggie Bars – a powerful mix of high-quality ingredients that h…" +06/08/2018,Sports_celeb,@mistyonpointe,Thank you for posting this @GildaSquire ❤️❤️❤️ I… https://t.co/dRBpWbbhXQ +06/08/2018,Sports_celeb,@mistyonpointe,Never old. Wise. https://t.co/h9m1g8bsmC +06/08/2018,Sports_celeb,@mistyonpointe,"RT @Becauseofthem: In honor of what would have been Prince's 60th birthday today, here's the music icon performing his classic ""The Beautif…" +06/08/2018,Sports_celeb,@mistyonpointe,RT @DrPenK: Happy Birthday! Prince will forever be my favorite artist & @mistyonpointe my favorite dancer! #icons @keithlewis890 @TaylorKan… +06/06/2018,Sports_celeb,@mistyonpointe,Hey everyone! Next for the @ABTBallet spring… https://t.co/UoLZ9ksDNy +06/05/2018,Sports_celeb,@mistyonpointe,RT @mistyonpointe: @ballet_conrad I want to thank you for taking the time to do this. I did not understand the totality of what you meant n… +06/05/2018,Sports_celeb,@mistyonpointe,"I wholeheartedly agree with your assessment. It’s an issue that does need to be addressed, and I hope I can be a pa… https://t.co/WErQiuwLbK" +06/05/2018,Sports_celeb,@mistyonpointe,@ballet_conrad I want to thank you for taking the time to do this. I did not understand the totality of what you me… https://t.co/1P9bG40aNn +06/04/2018,Sports_celeb,@mistyonpointe,Always Awesome Misty Copeland Paganini will love it Dance open https://t.co/faffOxhpsD via @YouTube +06/03/2018,Sports_celeb,@mistyonpointe,RT @Cosmopolitan: .@mistyonpointe is so freakin' inspiring—read about her rise to ballerina fame here: https://t.co/w9GLwA15te https://t.co… +06/01/2018,Sports_celeb,@mistyonpointe,Love this girly with all my heart. @isabellaabt… https://t.co/s4FpjrFat8 +06/01/2018,Sports_celeb,@mistyonpointe,"RT @mistyonpointe: @nycarts NYC-ARTS Full Episode: May 31, 2018 https://t.co/H9GRdEdYFF @ABTBallet #IrinaKolpakovo ❤️❤️❤️❤️🙌🏾🙌🏾🙌🏾" +06/01/2018,Sports_celeb,@mistyonpointe,"@nycarts NYC-ARTS Full Episode: May 31, 2018 https://t.co/H9GRdEdYFF @ABTBallet #IrinaKolpakovo ❤️❤️❤️❤️🙌🏾🙌🏾🙌🏾" +06/01/2018,Sports_celeb,@mistyonpointe,"RT @warriors: FORGOT +ABOUT +DRAY https://t.co/atGS9NqP2V" +06/01/2018,Sports_celeb,@mistyonpointe,"RT @warriors: HUGE #SPLASH 💦 from @KlayThompson. #NBAFinals #StrengthInNumbers +📺 #NBAonABC https://t.co/BBWAANhSys" +06/01/2018,Sports_celeb,@mistyonpointe,RT @micahGjordan: @ariaEjordan @mistyonpointe Proud brother! https://t.co/Fuf6Wnj2tg +05/30/2018,Sports_celeb,@mistyonpointe,"I don’t always. Lol. But it’s so important. When people don’t believe it actually happens, I want to give examples… https://t.co/Ik7jon15cS" +05/30/2018,Sports_celeb,@mistyonpointe,"I don’t do this to engage or give these people a voice, but to inform people and ignite the conversation of racism… https://t.co/e906TieG9n" +05/30/2018,Sports_celeb,@mistyonpointe,It’s important to me that the world see’s the very real resistance dancers of color experience in ballet. It’s not… https://t.co/teWmEX8TuV +05/29/2018,Sports_celeb,@mistyonpointe,Love you😘 https://t.co/ctfLpoMVSS +05/29/2018,Sports_celeb,@mistyonpointe,@stanverrett Thank you 🙏🏾🙌🏾 +05/29/2018,Sports_celeb,@mistyonpointe,RT @stanverrett: @mistyonpointe brought 15 family members to see you in “Firebird” Saturday night for my mom’s birthday. First time at a ba… +05/28/2018,Sports_celeb,@mistyonpointe,It’s not about who can afford what. It’s representation. It’s about young black girls seeing a black woman with a b… https://t.co/B7hoX6YML1 +05/28/2018,Sports_celeb,@mistyonpointe,RT @CNN: Misty Copeland is the first female African-American principal dancer in the American Ballet Theatre. She says partnering with bran… +05/28/2018,Sports_celeb,@mistyonpointe,I will forever fight the good fight! ❤️❤️ https://t.co/pUmlTZ97tc +05/27/2018,Sports_celeb,@mistyonpointe,#Firebird Representation is necessary and… https://t.co/f1rAEYOZ5l +05/27/2018,Sports_celeb,@mistyonpointe,Bye #firebird A role that changed my career and… https://t.co/iK4SZ2kjIl +05/26/2018,Sports_celeb,@mistyonpointe,RT @TheRealDWalker: They are all so excited to see @mistyonpointe. Wow what an inspiration @mistyonpointe must be to so many little girls!… +05/26/2018,Sports_celeb,@mistyonpointe,😭😭 We love you waynemcgregor #Repost… https://t.co/zit8PG8M3r +05/26/2018,Sports_celeb,@mistyonpointe,Last chance to catch #Firebird tonight… https://t.co/zdq5spAYy8 +05/26/2018,Sports_celeb,@mistyonpointe,RT @The_Real_IMAN: #imandaily @mistyonpointe #MistyCopeland https://t.co/WgVt6i1klA +05/26/2018,Sports_celeb,@mistyonpointe,RT @BlueRose2008: @mistyonpointe and @CalvinRoyalIII watching you two dance together tonight I couldn’t help but smile! #BlackExcellence +05/25/2018,Sports_celeb,@mistyonpointe,"RT @Moments30: ""It was an opportunity for these little brown girls and boys to be able to look at me and see themselves and see a future fo…" +05/25/2018,Sports_celeb,@mistyonpointe,RT @cnnpodcasts: Legendary ballerina Misty Copeland says her purpose today is so much bigger than ballet. On the latest #BossFiles #podcast… +05/24/2018,Sports_celeb,@mistyonpointe,"Snack game on pointe with @nakedjuice’s new Fruit, Nut & Veggie Bars – a powerful mix of high-quality ingredients t… https://t.co/Az6gfd1yfT" +05/24/2018,Sports_celeb,@mistyonpointe,❤️😘 https://t.co/SEzCbLhJy7 +05/24/2018,Sports_celeb,@mistyonpointe,Absolutely in love with this gown!! Ugh… https://t.co/pxK6T5HUQr +05/23/2018,Sports_celeb,@mistyonpointe,RT @warriors: Dubs up! https://t.co/2I00vGsma4 +05/23/2018,Sports_celeb,@mistyonpointe,"RT @NBA: 5⃣ TRIPLES in the 3rd for Steph Curry! 🎯🎯🎯🎯🎯 + +#DubNation @NBAonTNT https://t.co/WZ5bot9TBs" +05/21/2018,Sports_celeb,@mistyonpointe,"Ha! Nice one...Take a listen, maybe you’ll learn something about someone else’s experiences https://t.co/DUDkUxeqTO" +05/21/2018,Sports_celeb,@mistyonpointe,"RT @PoppyHarlowCNN: ""The ballet world doesn't really celebrate or have women of color"" @mistyonpointe tells me in a new #BossFiles episode…" +05/19/2018,Sports_celeb,@mistyonpointe,"RT @PatKidsday: @mistyonpointe What an honor to have our Kidsday reporters meet Misty Copeland,Female Principal Dancer for American Ballet…" +05/13/2018,Sports_celeb,@mistyonpointe,"RT @TheRoot: Misty Copeland (@mistyonpointe) is a legit fan of @Drake's. + +Here's how she got charmed into being in Drake's ""Nice for What""…" +05/12/2018,Sports_celeb,@mistyonpointe,"RT @TheRoot: Misty Copeland (@mistyonpointe) is a big @Drake fan. + +She charmed the world as the American Ballet Theatre's first female Afr…" +05/07/2018,Sports_celeb,@mistyonpointe,"RT @PoppyHarlowCNN: Still smiling from this amazing hour I spent today with @mistyonpointe who told me ""my purpose is to make people feel t…" +05/06/2018,Sports_celeb,@mistyonpointe,"RT @UnderArmour: .@mistyonpointe has inspired a generation of young women to be fearless. Together, we have created a collection that bridg…" +05/04/2018,Sports_celeb,@mistyonpointe,Misty Copeland on How a Devastating Injury Almost Derailed Her Career https://t.co/fjHcX2oSR9 via @Cosmopolitan +05/03/2018,Sports_celeb,@mistyonpointe,RT @POPSUGARFitness: We need everything! @mistyonpointe @underarmour https://t.co/xxz0hjmyON +05/03/2018,Sports_celeb,@mistyonpointe,RT @Dance_Magazine: Misty Copeland @mistyonpointe is totally owning her title as a multi-hyphenated artist. https://t.co/hrVwtaLqTo +05/03/2018,Sports_celeb,@mistyonpointe,RT @pointe_magazine: @mistyonpointe Designed Her Own Collection With @UnderArmour (& Her Fellow @ABTBallet Dancers Helped Debut It) https:/… +05/03/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: We collaborated with @mistyonpointe to bring you fire and femininity. Shop the Misty Copeland Collection now. https://t.co… +05/02/2018,Sports_celeb,@mistyonpointe,It’s Launch Day! My Misty Signature Line is live and ready to shop. Check it out: https://t.co/e2n6rFV0pd +05/02/2018,Sports_celeb,@mistyonpointe,RT @UAWomen: Did you know...it's just one day until we launch the Misty Copeland Signature Collection!? Check out these beautiful sneak pee… +05/01/2018,Sports_celeb,@mistyonpointe,Important update: There’s been a cast change for May 23. I’ve just learned I’m dancing in the 2PM Firebird performa… https://t.co/Nu9bqVNmwa +04/29/2018,Sports_celeb,@mistyonpointe,RT @sampanda24: happy #InternationalDanceDay @mistyonpointe https://t.co/2ouKT5iVIr +04/28/2018,Sports_celeb,@mistyonpointe,"Innovative. Fresh, inspiring and out of this world. Bravo @CAcostaOfficial and the entire company. ❤️❤️❤️ https://t.co/RS2OYYH5Bd" +04/28/2018,Sports_celeb,@mistyonpointe,"#Repost @vmwills +・・・ +Sliding in ballet slippers tho? Well, she's freaking… https://t.co/EEtZgi4DiP" +04/25/2018,Sports_celeb,@mistyonpointe,"RT @andmel123: Poise with a pointe😍😍inspired by you Misty, all the way from South Africa @mistyonpointe https://t.co/jYGQcaLB4X" +04/24/2018,Sports_celeb,@mistyonpointe,"What’s in this ballerina’s bag? @nakedjuice’s new Fruit, Nut & Veggie Bars. They’re packed with high-quality ingred… https://t.co/DLHlwabUpg" +04/24/2018,Sports_celeb,@mistyonpointe,RT @GloZell: Happy Monday from your favorite ballerina! Watch out @mistyonpointe xoxoxo GloZell & O’Zell https://t.co/5QUSgT0Jd3 +04/24/2018,Sports_celeb,@mistyonpointe,"RT @RenYouthCenter: Watch Misty Copeland (@mistyonpointe) and @RobinRoberts talk about meeting Jessica from our choir, and how huge #repres…" +04/20/2018,Sports_celeb,@mistyonpointe,"RT @SaulWilliams: To shape the form of possibility... + +💃🏿@mistyonpointe +✂️@ceskyest https://t.co/2B0ZS1R8Ug" +04/17/2018,Sports_celeb,@mistyonpointe,https://t.co/tmpgZhQo3k via @youtube +04/16/2018,Sports_celeb,@mistyonpointe,RT @cristina_hinze: @mistyonpointe I was thrilled to be the lucky silent auction winner of these precious items at The Steffi Nossen Dance… +04/16/2018,Sports_celeb,@mistyonpointe,RT @codycalhoun: . @mistyonpointe this little girl has a hero presentation in the morning and she is so excited! Thank you Misty for being… +04/14/2018,Sports_celeb,@mistyonpointe,My hearts melting 😘😍 https://t.co/GnO8xoerHY +04/14/2018,Sports_celeb,@mistyonpointe,"RT @ILoveLibraries: Thank you to 2018 #NationalLibraryWeek Honorary Chair, +@mistyonpointe! https://t.co/x9Nh4Kck1m" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @RenYouthCenter: What an amazing and deeply inspiring day at @WomenintheWorld. Our choir got to meet some real heroes, like @mistyonpoin…" +04/14/2018,Sports_celeb,@mistyonpointe,Love you Leona. You sang so beautifully! https://t.co/8yIOywUoxW +04/14/2018,Sports_celeb,@mistyonpointe,"RT @InStyle: .@MistyOnPointe, Supreme Court justice #SoniaSotomayor, and more come together for the #DVFAwards. https://t.co/GWjpyjuoTE" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @graceorsomethin: Watching the NICE FOR WHAT music video. I'm late to the game, but wowwww I could recognize @mistyonpointe's silhoutte…" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @DVF: “Own who you are and accept everything that’s different about you, because to me, that’s what beauty is. Find support around you a…" +04/14/2018,Sports_celeb,@mistyonpointe,"RT @StyleWriterNYC: . @BrookeBCNN, @DVF and @MistyOnPointe on the red carpet at tonight’s #DVFAwards at the @UN ... https://t.co/oizLf7fafs" +04/14/2018,Sports_celeb,@mistyonpointe,RT @StyleWriterNYC: A very emotional Misty Copeland accepting her Inspiration Award at tonight’s @DVF Awards ... #DVFAwards https://t.co/xe… +04/14/2018,Sports_celeb,@mistyonpointe,RT @tdufu: Let's keep building each other up as women.-@mistyonpointe accepting the Inspiration Award at #DVFAwards @DVF #INCHARGE https:/… +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: “Lets keep building each other up as women. Let’s keep staying strong. Let’s inspire each other as leaders.” 👊👊🏻👊🏼👊🏽👊🏾👊🏿 @mistyonp… +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: Inspired and humbled by the incredible women who were honored with #DVFAwards tonight. https://t.co/A8S3614tLz +04/14/2018,Sports_celeb,@mistyonpointe,RT @DVF: So inspired by your speech! Thank you for all you do to empower women. https://t.co/q7xIipqD54 +04/14/2018,Sports_celeb,@mistyonpointe,Such an honor to receive @DVF’s Inspiration Award during tonight’s #DVFAwards. Follow the… https://t.co/3Yj5hynNNc +04/14/2018,Sports_celeb,@mistyonpointe,Such an honor to receive @DVF’s Inspiration Award during tonight’s #DVFAwards! @DVF will be streaming LIVE on their… https://t.co/RI3PybWHdP +04/13/2018,Sports_celeb,@mistyonpointe,I wrote Firebird to encourage kids of all backgrounds to pursue their dreams. Libraries help young people find book… https://t.co/1xxNh6z8Ez +04/12/2018,Sports_celeb,@mistyonpointe,Libraries help people of all backgrounds access the resources and services they need to achieve their dreams. Suppo… https://t.co/oRQOjh4E4f +04/11/2018,Sports_celeb,@mistyonpointe,"RT @cbcradioq: Did you know Drake's new video #NiceForWhat features incredibly inspiring women including @mistyonpointe, @iamrashidajones,…" +04/10/2018,Sports_celeb,@mistyonpointe,Today is National Library Workers Day! Stop by your local library to show some love to the awesome librarians and s… https://t.co/KD1asEAost +04/10/2018,Sports_celeb,@mistyonpointe,❤️ https://t.co/YJVQzjs9WM +04/10/2018,Sports_celeb,@mistyonpointe,RT @LACountyLibrary: Many libraries are having special @mistyonpointe Firebird storytimes for #NationalLibraryWeek! Come to Norwalk Library… +04/10/2018,Sports_celeb,@mistyonpointe,"RT @sarasotaBGC: It was such an honor to meet @mistyonpointe, @BGCA_Clubs alumna and principal dancer with @ABTBallet, on Saturday thanks t…" +04/09/2018,Sports_celeb,@mistyonpointe,Happy #NationalLibraryWeek! I’m so excited to serve as Honorary Chair of this year’s celebrations.… https://t.co/RSsl5l3PBu +04/09/2018,Sports_celeb,@mistyonpointe,"Thank you #sarasotaballet and my love @marcelogomes47 for an amazing evening!!! Marcy, I love… https://t.co/yQZe6U46jU" +04/08/2018,Sports_celeb,@mistyonpointe,Thank you @karenaevans @champagnepapi #niceforwhat🔥🔥🔥 and all the incredible women I share in this power anthem wit… https://t.co/HC71scSpnv +04/08/2018,Sports_celeb,@mistyonpointe,RT @Natashalexis_: Thank you @Drake for blessing us with so many beautiful examples of badass women in the #niceforwhat video 🙏🏽 I legit sc… +04/08/2018,Sports_celeb,@mistyonpointe,"RT @GildaSquire: @Drake Thank you, Fuliane and Karena for an empowering, uplifting visual of extraordinary women, including @mistyonpointe.…" +04/08/2018,Sports_celeb,@mistyonpointe,RT @Drake: https://t.co/rWaJm2hHNB +04/07/2018,Sports_celeb,@mistyonpointe,"RT @GlobalGrind: #NiceForWhat +@mistyonpointe https://t.co/Hd1oEGpSz5" +04/07/2018,Sports_celeb,@mistyonpointe,I’m black https://t.co/M4OwbCYroD +04/07/2018,Sports_celeb,@mistyonpointe,So crazy it’s funny https://t.co/B7Sdm97z9u +04/07/2018,Sports_celeb,@mistyonpointe,🤷🏽‍♀️ https://t.co/sWbzQVUT9x +04/06/2018,Sports_celeb,@mistyonpointe,RT @cnnasiapr: #MistyCopeland on #TalkAsia: Why this #ballet superstar is fighting for diversity. https://t.co/AVpa4YlJo2 @jmsit @ABTBallet… +04/05/2018,Sports_celeb,@mistyonpointe,Misty Copeland: Why this ballet superstar is fighting for diversity @CNN https://t.co/voFq7C1iNf +04/05/2018,Sports_celeb,@mistyonpointe,"RT @BGCA_Clubs: Thank you, alumni @mistyonpointe for sharing your experience with @MNWBGC Club members! #greatfutures https://t.co/SNkFvOSL…" +04/05/2018,Sports_celeb,@mistyonpointe,"The incredible Clifford, @cliffordnewyork showing me how to properly dance Dwight Rhoden’s choreography ❤️❤️❤️ As y… https://t.co/oBm05byHNd" +04/05/2018,Sports_celeb,@mistyonpointe,"The incredible Clifford, @cliffordnewyork showing me how to properly dance Dwight Rhoden’s choreography ❤️❤️❤️ As y… https://t.co/mQGKQcGazD" +04/03/2018,Sports_celeb,@mistyonpointe,"Lol. Y’all, no weird hidden messages here. The person I was referring to is a trump supporter. I wasn’t assuming or… https://t.co/uStHeknYr6" +04/03/2018,Sports_celeb,@mistyonpointe,lol The person I was talking to is a trump supporter. Simple as that. Night. https://t.co/m4gMkgEMRb +04/02/2018,Sports_celeb,@mistyonpointe,"RT @corystieg: I asked @mistyonpointe about that viral fouetté video, how she copes with haters, and what she does to prioritize mental hea…" +04/02/2018,Sports_celeb,@mistyonpointe,"I had very smart teachers and I’m proud of my training, though limited as I only trained for 4 years before I joine… https://t.co/nu8bpQ5dD9" +04/02/2018,Sports_celeb,@mistyonpointe,We have no idea what injuries dancers had back then. Didn’t have any or very limited PT. Also didn’t train as we do… https://t.co/HEgpwlVCVd +04/02/2018,Sports_celeb,@mistyonpointe,"We can be overworked, dance in bad conditions, not a sprung floor or its too hard. SO many variables. https://t.co/XHywJHJn7S" +04/02/2018,Sports_celeb,@mistyonpointe,"EVERY dancer experiences some form of injury in their careers. They fall, break or sprain. Maybe don’t listen to th… https://t.co/8ucsEiCjKT" +04/02/2018,Sports_celeb,@mistyonpointe,"RT @LilyCrue: @mistyonpointe Being that affirmative action was started over 50 years ago, if ballerinas were promoted based on that, there…" +04/02/2018,Sports_celeb,@mistyonpointe,Gotta keep peeps abreast to the very real facts of what black dancers experience. https://t.co/BX08SHPPG1 +04/02/2018,Sports_celeb,@mistyonpointe,RT @trueladymd: @mistyonpointe It’s a shame you have to respond to the liars and haters. You are the definition of talent and grace!! +04/02/2018,Sports_celeb,@mistyonpointe,#SMH https://t.co/R6pVRq4Ixx +04/02/2018,Sports_celeb,@mistyonpointe,"???? Well, I’m Misty and that is absolutely untrue.... since when has affirmative action worked in ballet? https://t.co/jOJGT4a4pQ" +03/31/2018,Sports_celeb,@mistyonpointe,RT @UnderArmour: .@mistyonpointe broke down barriers when she became the first African American woman to be named principal dancer in the 7… +03/31/2018,Sports_celeb,@mistyonpointe,❤️ https://t.co/gMCV7UQQnC +03/31/2018,Sports_celeb,@mistyonpointe,You will never get it. Our message isn’t for you. Go to the ballet and enjoy who you like. Support your president a… https://t.co/A0BCCFgP8K +03/28/2018,Sports_celeb,@mistyonpointe,https://t.co/PtG1akwmHv +03/27/2018,Sports_celeb,@mistyonpointe,RT @emilyWbrown: @mistyonpointe my 7yo daughter chose you for her biography project. She asked me to send you this photo. You’re a huge ins… +03/23/2018,Sports_celeb,@mistyonpointe,"RT @playing4change: The arts have the power to improve our schools and build more compassionate, connected communities! #ArtsForChange + @Yo…" +03/21/2018,Sports_celeb,@mistyonpointe,"RT @MalissaShriver: Just finished reading Misty Copeland’s book “Life in Motion”@mistyonpointe with my daughter Rosemary, made me cry #insp…" +03/20/2018,Sports_celeb,@mistyonpointe,"RT @samuelmurai: @ELLEmagazine Misty Copeland @mistyonpointe is still my THE absolute favorite, but there are some more incredible ballerin…" +03/16/2018,Sports_celeb,@mistyonpointe,"RT @NationalDance: #tbt @mistyonpointe and NDI dancers at #NDIgala in 2015. +#ThrowbackThursday Photo: @chiossone https://t.co/5JJUfVbmcz" +03/15/2018,Sports_celeb,@mistyonpointe,https://t.co/qO0ZIi9niQ via @youtube +03/13/2018,Sports_celeb,@mistyonpointe,"Thank you for having me! Good luck on your tour!!! #Repost singaporedancetheatre +・・・ +Misty… https://t.co/I1KIpiy6qp" +03/11/2018,Sports_celeb,@mistyonpointe,RT @sstewart1775: @mistyonpointe Inspired to be a Ballerina...just by watching one of the greats. https://t.co/nzZuhR5Dzl +03/07/2018,Sports_celeb,@mistyonpointe,"RT @blackenterprise: .@mistyonpointe's Secret Weapon Is a Woman of Power, Too https://t.co/kTC0APPNLO https://t.co/5jU8l77o0g" +03/07/2018,Sports_celeb,@mistyonpointe,RT @kamh7: @mistyonpointe when your daughter is given M.C. for her class presentation #shelovesballet https://t.co/4mgkm2nZTo +03/06/2018,Sports_celeb,@mistyonpointe,"Excited that @Barbie is celebrating #InternationalWomensDay by honoring global role models, because you can't be wh… https://t.co/HzoRi75Zkf" +03/05/2018,Sports_celeb,@mistyonpointe,"RT @VeeSparkle15: Courageous women @mistyonpointe @reshmasaujani breaking barriers, educating & inspiring #women, girls on #Herstory Day @…" +03/03/2018,Sports_celeb,@mistyonpointe,What Misty Copeland Eats to Feel Empowered https://t.co/088bwBTfX1 via @My_Recipes +03/02/2018,Sports_celeb,@mistyonpointe,"RT @UAnews: .@MistyonPointe, @AlisonMDesir, @natashahastings, @JESSIEgraffPWR, @lindseyvonn, @YusraMardini, and so many more… We are honore…" +03/01/2018,Sports_celeb,@mistyonpointe,RT @FSherrillNWE: @mistyonpointe My student was so excited to portray you at our Black History Museum!! #wearewayne @BrittonWayneNWE https:… +03/01/2018,Sports_celeb,@mistyonpointe,RT @chinnerssbcsd: And that’s a wrap... so proud of my first graders for sharing their final projects to communicate their findings from th… +02/25/2018,Sports_celeb,@mistyonpointe,RT @candicewjohnson: My sunshine has NO clue that the whole reason we are in the Chi is to see the beautiful young lady on her shirt! Her i… +02/24/2018,Sports_celeb,@mistyonpointe,Yes sir! https://t.co/kagE93i1CX +02/24/2018,Sports_celeb,@mistyonpointe,"RT @NorthStarGrpPR: ""One of the biggest lessons I have learned is to believe in the process. When you put in the hours, and you've got good…" +02/23/2018,Sports_celeb,@mistyonpointe,RT @Plummer_ESDC: @mistyonpointe Thank u for creating a path for dreams! Our scholars are on their way to achieving their dreams! #positive… +02/23/2018,Sports_celeb,@mistyonpointe,"""My two summers spent at ABT’s Summer Intensive were the most informative of my training. It is… https://t.co/9ACASyUAF7" +02/23/2018,Sports_celeb,@mistyonpointe,"RT @ClassicalMvmts: While @slso, @ABTBallet's performances @LiedCenter saw neither blizzards nor mudslides for CM's travel pros, with @mist…" +02/22/2018,Sports_celeb,@mistyonpointe,"RT @MichelleObama: I’m in total awe of the extraordinary students in Florida. Like every movement for progress in our history, gun reform w…" +02/21/2018,Sports_celeb,@mistyonpointe,Misty Copeland Shines Light on Diversity in Ballet World and Beyond https://t.co/Wzg7MyqEQ8 +02/21/2018,Sports_celeb,@mistyonpointe,"RT @ClassicalMvmts: Today's #TravelTuesday takes CM back to this weekend's two, sold-out performances @LiedCenter in #Lincoln, #Nebraska, s…" +02/21/2018,Sports_celeb,@mistyonpointe,RT @DRAdance: Meet 10 up-and-coming black ballerinas carrying on @mistyonpointe's message of diversity and inclusivity in this article on @… +02/21/2018,Sports_celeb,@mistyonpointe,"RT @BrandisFriedman: Attention #ballet lovers! @mistyonpointe is on #chicagotonight! We talk abt making history, cooking in the kitchen and…" +02/21/2018,Sports_celeb,@mistyonpointe,"RT @artintercepts: “Bringing diversity into the theater is going to keep ballet thriving and relevant and alive. To me, that’s so critical…" +02/21/2018,Sports_celeb,@mistyonpointe,RT @AnerkeFilms: 10 Black Ballerinas carrying on @mistyonpointe's legacy: https://t.co/v6bFXsENTZ +02/21/2018,Sports_celeb,@mistyonpointe,RT @ChrisJonesTrib: A Chat with @mistyonpointe https://t.co/pPn6ubeIEI +02/20/2018,Sports_celeb,@mistyonpointe,"RT @MichelleObama: Congrats to the entire #blackpanther team! Because of you, young people will finally see superheroes that look like them…" +02/20/2018,Sports_celeb,@mistyonpointe,RT @bishopprolive: @TBishopL @bishopprolive @Perri Small @mistyonpointe #BishopPromotesYou https://t.co/Nj5PapmGOr +02/20/2018,Sports_celeb,@mistyonpointe,RT @bishopprolive: @TBishopL @bishopprolive @mistyonpointe #Chicago @WVON1690 Misty Copeland Awesome! #BishopPromotesYou https://t.co/Ti565… +02/19/2018,Sports_celeb,@mistyonpointe,I wish I could have met her. https://t.co/wb8m6MaiHU +02/18/2018,Sports_celeb,@mistyonpointe,"RT @92Y: ""I get up early in the morning to write because I'm very smart early in the morning."" Happy birthday to one of the greatest Ameri…" +02/17/2018,Sports_celeb,@mistyonpointe,RT @Winceycomusic: Using the power of the book #Firebird 2 show kids they can be anything they want 2b! #DreamBig @NJPAC @mistyonpointe ht… +02/17/2018,Sports_celeb,@mistyonpointe,"#Repost abtofficial +・・・ +This one is for you, Jaime 🧡 We honor your life in tonight’s… https://t.co/Lqu8cN3jBH" +02/16/2018,Sports_celeb,@mistyonpointe,@EdLGordon @bouncetv Can’t wait to see it. Important conversation! +02/16/2018,Sports_celeb,@mistyonpointe,RT @EdLGordon: Thanks @mistyonpointe 4being on my special AM I Black Enough? Premieres on @bouncetv Feb 17 at noon EST or now on the Brown… +02/16/2018,Sports_celeb,@mistyonpointe,RT @GildaSquire: Ballerina Raven Wilkinson On Dealing With Racism In Her Storied Career And Mentoring Misty Copeland https://t.co/fq3rgf8pq… +02/16/2018,Sports_celeb,@mistyonpointe,RT @slso: SLSO musicians with the one and only @mistyonpointe #slsotour @ABTBallet @LiedCenter https://t.co/eQFJXOgpGX +02/16/2018,Sports_celeb,@mistyonpointe,RT @BeccaLee22: best. night. ever. 🙌🏼 thank you @mistyonpointe!!! #mistycopeland #firebird #dreambigsweetgirl ❤️ https://t.co/gMPJwIkCox +02/15/2018,Sports_celeb,@mistyonpointe,"RT @mesonjixx: Had the honor of going and listening to @mistyonpointe speak about her life in #ballet as a black woman, wife, artist, lover…" +02/14/2018,Sports_celeb,@mistyonpointe,"RT @Emorly: So glad @mistyonpointe brought up the gender associations within ballet in the US. + +I watched my brother, who loved both balle…" +02/14/2018,Sports_celeb,@mistyonpointe,RT @TylerAThomas: “The Arts are Uniting” powerful words from @mistyonpointe at her #ENThompsonForum presentation tonight. #UNL https://t.co… +02/13/2018,Sports_celeb,@mistyonpointe,https://t.co/jsgnG9PHCT via +02/12/2018,Sports_celeb,@mistyonpointe,"RT @ABTBallet: Thanks, Detroit! We hope to dance for you again soon. +""Misty Copeland and ABT are riveting in Detroit Opera House performanc…" +02/11/2018,Sports_celeb,@mistyonpointe,My doc A Ballerinas Tale https://t.co/PU7UXCnwNO +02/11/2018,Sports_celeb,@mistyonpointe,https://t.co/CDYBFUwOX3 via +02/09/2018,Sports_celeb,@mistyonpointe,"RT @alisaaslanova: Misty 😍 in Moscow +@mistyonpointe https://t.co/6KI55lF8Nr" +02/09/2018,Sports_celeb,@mistyonpointe,"RT @GrandCentralPub: Read @mistyonpointe's interview with @amlibraries! This #BallerinaBody author shares how she prepares for a new role,…" +02/09/2018,Sports_celeb,@mistyonpointe,RT @warriors: Dubs defense turns up and Steph shows off his QB 🏈 skills. (NBCSBA) https://t.co/9iZ0Y2xB3Q +02/08/2018,Sports_celeb,@mistyonpointe,"#Repost @umsnews +・・・ +Tomorrow @mistyonpointe takes the stage in Detroit for our co-presentation… https://t.co/bmolNSLLvE" +02/07/2018,Sports_celeb,@mistyonpointe,RT @BeccaLee22: i asked how she was feeling after a rough night at dance and she said “better because we read @mistyonpointe’s book!” means… +02/06/2018,Sports_celeb,@mistyonpointe,"RT @BrownSugarApp: .@Mistyonpointe discusses systematic racism in this clip from the upcoming #EdGordon special: 'Am I Black Enough?’. + +S…" +06/28/2018,Sports_celeb,@MikeTyson,Round 2 of Rise Up campaign to help children. Please join me & my friend #AndreaJaeger Donate $5 text 20222. A lit… https://t.co/FEuXGbWpva +06/22/2018,Sports_celeb,@MikeTyson,Awesome to see the legends back on court 4 2nites #BIG3Basketball Season 2 opener live on Facebook 6:30ET & 7:30 on… https://t.co/YDyMGkJ3oB +06/17/2018,Sports_celeb,@MikeTyson,Happy Father's Day to fathers that are Dads to their kids and the mentors that make a difference. https://t.co/o57J6lJIH3 +06/16/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/J4LwoGA5tK +06/14/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this Saturday, June 16th & get my autograph at @TristarVegas and @FODCaesars! Info:… https://t.co/UIvmCmQOYQ" +06/10/2018,Sports_celeb,@MikeTyson,I'm back in #Canastoga #InternationalBoxingHallofFame to honor #2018inductees https://t.co/rczY6aELdL +06/08/2018,Sports_celeb,@MikeTyson,I think it’s about time my friend @angiemartinez gets into Radio Hall Of Fame! #VOTE4Angie. Text 300 to 96000 https://t.co/AlxhYeL7xE +06/01/2018,Sports_celeb,@MikeTyson,“Everybody thinks this is a tough man’s sport. This is not a tough man’s sport. This is a thinking man’s sport. A t… https://t.co/hPiZVUXsaH +05/28/2018,Sports_celeb,@MikeTyson,"Just a kid from #Brownsville with a dream. By 1989, that dream was a reality. Check out the official #MikeTyson col… https://t.co/OK0ZoaUISZ" +05/26/2018,Sports_celeb,@MikeTyson,Help me and @littlestarfndtn #AndreaJaeger knockout kids suffering. Donate $5 today text STAR to 20222… https://t.co/lfhWcXGOPf +05/13/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/BoImGe8mQ4 +05/12/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/LJaiHHgTlG +05/11/2018,Sports_celeb,@MikeTyson,"#LasVegas: Come see me this weekend & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/BTRrMIut7y" +04/26/2018,Sports_celeb,@MikeTyson,Check out my interview with @TitoOrtiz where we talk about what would happen if Conor McGregor and Floyd Mayweather… https://t.co/tMBMxZBdev +04/24/2018,Sports_celeb,@MikeTyson,Check out my new podcast episode with former UFC champion and UFC Hall of Famer @TitoOrtiz. We talk about whether I… https://t.co/D9F4soBKvj +04/21/2018,Sports_celeb,@MikeTyson,Save up to 50% @RootsofFight Tyson apparel. #SpringCleaningSale event Sale runs until 12pm PT Monday 23rd. Don’t mi… https://t.co/OcNu4pOsUl +04/21/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: New podcast episode is up. +Click ► https://t.co/ANwFX8HpS1 +@BiteTheMicShow +・・・ +@RosenbergRadio #BiteTheMic #MikeTyson #…" +04/19/2018,Sports_celeb,@MikeTyson,"I talk about about friends, interviews, and memories from back in the day on the podcast. +► https://t.co/d8clyaegGk… https://t.co/m4ML5iEQAw" +04/17/2018,Sports_celeb,@MikeTyson,"New podcast episode. Talking about working out with my son Miguel. +► https://t.co/d8clyaegGk +Follow @BiteTheMicShow… https://t.co/lVmwx4Qxuq" +04/16/2018,Sports_celeb,@MikeTyson,RT @bitethemicshow: Don’t miss Part 2 of the interview with @DanaWhite. Did you know that Dana was at the infamous “Bite Fight” between @Mi… +04/14/2018,Sports_celeb,@MikeTyson,“Everyone that you fight is not your enemy and everyone who helps you is not your friend.” New @rootsoffight… https://t.co/MsoWGUBjS8 +04/14/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/T0tH7vdVfI +04/13/2018,Sports_celeb,@MikeTyson,"Part 2 of the interview with @DanaWhite on the podcast is up. We talk about Dana at “The Bite Fight,”… https://t.co/Etvu9krdRB" +04/13/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/VibOKwHHMP +04/11/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/JfWuaPinRG" +04/11/2018,Sports_celeb,@MikeTyson,"► https://t.co/d8clyaegGk @DanaWhite is back on the podcast. We talk about Conor McGregor, @FloydMayweather in MMA… https://t.co/KzJolekrl8" +04/08/2018,Sports_celeb,@MikeTyson,Gonna watch for @TeamKhabib title fight tonight. #UFC223 #barclayscenter https://t.co/07ivQ21rrW +04/07/2018,Sports_celeb,@MikeTyson,"From #WrestleMania 14. Don’t miss #WrestleMania34 on Sunday, April 8th. #TeamRousey + +And don’t forget to catch th… https://t.co/wQvtTEzan0" +04/07/2018,Sports_celeb,@MikeTyson,"#TeamRousey all the way #WWE #WrestleMania. @RondaRousey +And don’t forget to catch the podcast, @BiteTheMicShow.… https://t.co/Y5kR7hFhGe" +04/07/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/HqR8s4VUcD +04/06/2018,Sports_celeb,@MikeTyson,20 years ago from #WrestleMania 14. As a @WWE Hall of Fame inductee and a fan I’ll be watching @RondaRousey vs… https://t.co/uLOqC78bqk +04/06/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70OJ86s https://t.co/XF7Yy6RkZ3 +04/05/2018,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/VNBSXLzwMT" +03/30/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Click the link for the full episode. +➡️https://t.co/modxKXtdEG +・・・ +#MikeTyson #MMA #Boxing #Podcast #Comedy #BiteTheMic…" +03/20/2018,Sports_celeb,@MikeTyson,"Listen to the whole interview where I talk about when @MichaelJackson played a prank on me. +➡️… https://t.co/A9d8rcvdw8" +03/15/2018,Sports_celeb,@MikeTyson,"Listen to me talk about my tigers and much more. +➡️https://t.co/DUxIpQMcDR +Follow @BiteTheMicShow for more. +・・・… https://t.co/TIBrop2q9A" +03/14/2018,Sports_celeb,@MikeTyson,New Release from @rootsoffight. Black on Black Brooklyn Tee. Get yours now. #KnowYourRoots #AllBlackEverything… https://t.co/aI651PiwM7 +03/13/2018,Sports_celeb,@MikeTyson,Sorry to hear Craig Mack is no longer with us. #RIPCraigMack. Gonna listen to #FlavaInYourEar right now. Man 47 too young. +03/13/2018,Sports_celeb,@MikeTyson,"My fists are flying in #KickboxerRetaliation, now available on DVD and Blu-ray Combo! Get your copy today:… https://t.co/8FjOTlOGFP" +03/11/2018,Sports_celeb,@MikeTyson,@DjokerNole you are the realest. Thanks for hitting with my daughter #milantyson. You are her tennis idol.… https://t.co/pJI83jC96S +03/05/2018,Sports_celeb,@MikeTyson,"Agreed. This is a great time to be a boxing fan, but in my prime I felt like I could beat anyone in the world just… https://t.co/BkdaGdXDm1" +03/03/2018,Sports_celeb,@MikeTyson,Expedient recovery to Hip Hop legend @RickRoss. Praying for you brother. +03/02/2018,Sports_celeb,@MikeTyson,.@rootsoffight has new pieces! 🔥 Check out this new T & my full #RootsofFight collection here... #KnowYourRoots… https://t.co/x9xINVpuSB +02/27/2018,Sports_celeb,@MikeTyson,Listen to me interview the man who has interviewed me dozens of times. New episode with the best broadcaster in all… https://t.co/R5mBZmxfQf +02/24/2018,Sports_celeb,@MikeTyson,I don't think Wilder would have beat me in my prime. I've said it before and I'm saying it again. Listen to my podc… https://t.co/r3iMc1wsrr +02/24/2018,Sports_celeb,@MikeTyson,I don't think Wilder would have beat me in my prime. I've said it before and I'm saying it again. Listen to my podc… https://t.co/8zt9SQmITL +02/23/2018,Sports_celeb,@MikeTyson,RT @bitethemicshow: CLICK->https://t.co/Qb7jObX039 Nothing like an @MikeTyson stare down. Check out part 2 of the interview with @BigBoy f… +02/22/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Thank you for all the support for the podcast, much appreicated. +Click to listen ➡️https://t.co/modxKXtdEG +・・・ +#MikeTys…" +02/22/2018,Sports_celeb,@MikeTyson,"@AndyDick, I'm just busting your chops. +Click to listen to the full interview with @AdamCarolla. +➡️… https://t.co/86tBOaZSGq" +02/20/2018,Sports_celeb,@MikeTyson,"Listen to me talk about the heavyweight division with @AdamCarolla +➡️https://t.co/DUxIpQMcDR +・・・ +#MikeTyson #MMA… https://t.co/QrJJghhDG5" +02/16/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Get @MikeTyson's thoughts on comedy vs. fighting. +Click ➡️ https://t.co/modxKXtdEG +Part 2 with @BrendanSchaub and @Brya…" +02/16/2018,Sports_celeb,@MikeTyson,"#Throwback Thank you for all the support for the podcast. +Click to listen ➡️https://t.co/ERSRuqPUue https://t.co/d9wlv61QxE" +02/16/2018,Sports_celeb,@MikeTyson,.@BronzeBomber trash talk is cool. Everyone has a plan until they get punched in the mouth. There is a Tyson that… https://t.co/6aIK3bsjkL +02/15/2018,Sports_celeb,@MikeTyson,#Respect @LennoxLewis https://t.co/Tcj9OGTvup +02/14/2018,Sports_celeb,@MikeTyson,Another school shooting. Sad. Prayers to the families #ParklandShooting +02/13/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Curious who @MikeTyson thinks is the pound for pound best boxer in the world? +Click the link to find out -> https://t.c…" +02/13/2018,Sports_celeb,@MikeTyson,"What would you do with a billion dollars? #TigerKing +Click the link for the full interview ->… https://t.co/4dp8w1Uhdb" +02/10/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See yo… https://t.co/3LGsDCKbMC +02/09/2018,Sports_celeb,@MikeTyson,"RT @bitethemicshow: Listen to @MikeTyson talk about Eddie Murphy on the podcast. +CLICK->https://t.co/modxKXKOwe +・・・ +#MikeTyson #MMA #Box…" +02/09/2018,Sports_celeb,@MikeTyson,88' was a big year for me. Started with win over future Hall of Famer #LarryHolmes and ended with the Lineal HW t… https://t.co/yTkFIbFKBu +02/09/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70OJ86s https://t.co/FWPrCnHQmP +02/09/2018,Sports_celeb,@MikeTyson,".@TheRock thank you, brother. Great movie too. My kids loved it. #Jumanji +#RIPRoger 🤨 #NewSmolderingIntensityKing… https://t.co/ZLufHa7FhT" +02/09/2018,Sports_celeb,@MikeTyson,"@TheRock Thank you, brother. Great movie too. My kids loved it. #Jumanji +#RIPRoger 🤨 #NewSmolderingIntensityKing… https://t.co/Lvbxn4641e" +02/08/2018,Sports_celeb,@MikeTyson,I just heard that @Tyson_Fury said that I would KO him in the first round if we fought. What are your thoughts?… https://t.co/uzqXiaPScZ +02/08/2018,Sports_celeb,@MikeTyson,"Hey @TheRock and @RogerFederer, how's my ""Smoldering Intensity"" look? 👊🏾 #PodcastKing #HardAtWorkInTheStudio… https://t.co/4S8k18Qod9" +02/08/2018,Sports_celeb,@MikeTyson,"Great stuff with Martin Lawrence. +Click to listen: https://t.co/DUxIpQMcDR +@realmartymar +・・・ +#Bitethemic https://t.co/6AyceeY2ki" +02/07/2018,Sports_celeb,@MikeTyson,Don't understand the fuss about the big rocket launch because I was the first to launch in one of @ElonMusk’s rocke… https://t.co/kUPb5RkBtZ +02/07/2018,Sports_celeb,@MikeTyson,"VEGAS: Come meet me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/V1wEhuQzKr" +02/07/2018,Sports_celeb,@MikeTyson,#Heavyweightchamp turned into #tennisballboy. Typical #Monday now https://t.co/E9cNU7khcY https://t.co/hUrAZAs5vZ +02/06/2018,Sports_celeb,@MikeTyson,Congrats to Elon Musk for a successful launch #SpaceX #FalconHeavy #ElonMusk #MikeTyson +02/06/2018,Sports_celeb,@MikeTyson,"Can't believe he is already 7. https://t.co/j8GwhjpGmn +・・・ +Birthday video 😂 https://t.co/05JBZsaNdc" +02/06/2018,Sports_celeb,@MikeTyson,Getting ready for liftoff..do you think the test will pass or fail? #SpaceX #spacexlaunch #FalconHeavy #FalconHeavyLaunch #MikeTyson +02/06/2018,Sports_celeb,@MikeTyson,Listen to my convo with @RealAJBenza about Trump and much more on my podcast. Thanks AJ Benza for an awesome interv… https://t.co/dcU3YRaVV2 +02/05/2018,Sports_celeb,@MikeTyson,"Martin Lawrence and me talk about day jobs. +https://t.co/DUxIpQMcDR +・・・ +#BiteTheMic #MikeTyson #HipHop #MMA #Boxing… https://t.co/icQGG7kQ1o" +02/05/2018,Sports_celeb,@MikeTyson,#TennisDad https://t.co/0fVuOBvLMu +02/04/2018,Sports_celeb,@MikeTyson,"WrestleMania crew in 2010 with my +son Amir. @TripleH and @wwehornswoggle +https://t.co/eNe0bfxXib https://t.co/QHSBvYCmkV" +02/03/2018,Sports_celeb,@MikeTyson,"Super Bowl throwback commercial with son https://t.co/eNe0bfxXib. 😂 #Repost +・・・ +""Throwback to when i Shot this sup… https://t.co/LOmUTldxFO" +02/03/2018,Sports_celeb,@MikeTyson,"Listen to me and @OscarDeLaHoya discuss @Canelo vs. @GGGBoxing 2. +CLICK->https://t.co/DUxIpQMcDR +#BiteTheMic… https://t.co/S96c2hcnOX" +02/03/2018,Sports_celeb,@MikeTyson,"With the family. +#Repost https://t.co/OVeiepKroo +・・・ +Us Tyson triplets 😄🤣 family night out 💋💋❤️ @sugarfactorylv… https://t.co/zxGrevy55m" +02/02/2018,Sports_celeb,@MikeTyson,"Listen to me talk about when Will Smith used to be wild. https://t.co/DUxIpQMcDR +#MikeTyson #Podcast #WillSmith… https://t.co/coXp16TVga" +02/02/2018,Sports_celeb,@MikeTyson,A well rounded kid is a good kid. Have your kid try all kinds of activities. https://t.co/aIuoKCVcrE #Repost https://t.co/WQJib3SOWS +02/02/2018,Sports_celeb,@MikeTyson,Statistics show that kids are more successful in whatever path they decide to take in life when parents are more in… https://t.co/LdlK2WOvKu +02/01/2018,Sports_celeb,@MikeTyson,"Martin Lawrence podcast episode is up! Follow @BitTheMicShow for more! https://t.co/DUxIpQMcDR + +@realmartymar… https://t.co/7Qr3dgRD9V" +02/01/2018,Sports_celeb,@MikeTyson,Who do you got? #Canelo or #GGG? https://t.co/crRYLvtSwI +01/31/2018,Sports_celeb,@MikeTyson,Hanging with my mini-me #tennis #fatherandson send me a 👊🏽 if you are hanging with your kids this weekend… https://t.co/C7qIuu1QVv +01/31/2018,Sports_celeb,@MikeTyson,"CLICK->https://t.co/DUxIpQMcDR +Listen to @OscarDeLaHoya and me talk about @MannyPacquiao vs. @TheNotoriousMMA on… https://t.co/eD5hfQOUWx" +01/30/2018,Sports_celeb,@MikeTyson,"Amir is #teampatriots who you got to win? #Patriots or #Eagles #SuperBowl2018 #Repost https://t.co/mvouMV8OM1 +・・・… https://t.co/GkeJ2iWGWO" +01/30/2018,Sports_celeb,@MikeTyson,"CLICK->https://t.co/DUxIpQMcDR to listen to my interview with @OscarDeLaHoya on my podcast, @BiteTheMicShow. Follow… https://t.co/8maUJD3WV0" +01/30/2018,Sports_celeb,@MikeTyson,CLICK ->https://t.co/DUxIpQMcDR and listen about the first time I met @MichaelJackson. Follow @BiteTheMicShow for… https://t.co/DriUywhifS +01/30/2018,Sports_celeb,@MikeTyson,He just started. Not trying to box just trying to stay fit. #FamilyWorkoutSession #Repost @miguelltyson on Instagra… https://t.co/7dLxf0m4y5 +01/28/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See yo… https://t.co/LB1gFSRzym +01/27/2018,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/sfEz0uuVyg +01/26/2018,Sports_celeb,@MikeTyson,"It’s my fists against @JCVD and @AlainMoussi in #KICKBOXERRETALIATION, available today on demand! Get it on iTunes:… https://t.co/ryimoPo7Nf" +01/26/2018,Sports_celeb,@MikeTyson,Check out my podcast... ->https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more! #BiteTheMic #MikeTyson… https://t.co/5JRuenJ2an +01/25/2018,Sports_celeb,@MikeTyson,Listen to me talk about my amazing pigeons on part 2 of my interview with @BigBoy ⟶https://t.co/DUxIpQMcDR Follow… https://t.co/W5Ud0GH1pW +01/24/2018,Sports_celeb,@MikeTyson,New hilarious episode of the podcast with @BigBoy → https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more.… https://t.co/lB0JXyMnAs +01/23/2018,Sports_celeb,@MikeTyson,New episode of the podcast with @BigBoy >https://t.co/DUxIpQMcDR Follow @BiteTheMicShow for more. #BiteTheMic… https://t.co/yN9qvix7eP +01/22/2018,Sports_celeb,@MikeTyson,Watching podcast partner @rosenbergradio on the kickoff for #Raw25 !! Congrats on 25 years @WWE and here’s to 25 more! +01/22/2018,Sports_celeb,@MikeTyson,Brooklyn Born. Brooklyn Strong. #Brooklyn roots. #KnowYourRoots @rootsoffight https://t.co/Mzg0Jr7pyh https://t.co/kFcIc0MYt1 +01/12/2018,Sports_celeb,@MikeTyson,"Coming to Hawaii on Jan 20th is the critically acclaimed One Man Show ""Undisputed Truth Round 2"". Live appearance a… https://t.co/WemQNAxccL" +01/11/2018,Sports_celeb,@MikeTyson,"VEGAS: Signing autographs this week at @TristarVegas, @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See… https://t.co/TIlmT6BNb1" +12/26/2017,Sports_celeb,@MikeTyson,"LAS VEGAS: Signing autographs this week at @TristarVegas (Friday and Sunday), @FODCaesars (Friday through Monday) &… https://t.co/cb3ZRtdbfR" +12/24/2017,Sports_celeb,@MikeTyson,Never thought you would see Iron Mike on @usta #NationalCampus #tenniscourt! Anything for daughter Milan (… https://t.co/Cgf1oY72su +12/24/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you there! https://t.co/pk5T14MuQB +12/23/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @FODVenetian and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you soon! https://t.co/EvGkd0z0k4 +12/22/2017,Sports_celeb,@MikeTyson,VEGAS: Signing autographs TODAY at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you there! https://t.co/PkLVej5zs6 +12/20/2017,Sports_celeb,@MikeTyson,.@superjudah is getting back in the ring. Make sure you are tuned in. Jan. 27th #dekadafightnight… https://t.co/jCoZZ2fcQM +12/19/2017,Sports_celeb,@MikeTyson,"LAS VEGAS: Signing autographs this week at @TristarVegas, @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2… https://t.co/871gHWI316" +12/08/2017,Sports_celeb,@MikeTyson,This new #KidDynamite melton bomber jacket from @rootsoffight brings back a lot of great memories of early years! I… https://t.co/M13SAyE0Tz +11/27/2017,Sports_celeb,@MikeTyson,"#ICYMI Hey #IronMike fans, last chance to grab #KidDynamite collection for #CyberMonday #KnowyourRoots… https://t.co/tKNGsv8U9W" +11/24/2017,Sports_celeb,@MikeTyson,.@rootsoffight doing Chi style throw back to '86. Entire collection live #BlackFriday #RootsOfFight #KnowYourRoots… https://t.co/XLwbVaBniB +11/24/2017,Sports_celeb,@MikeTyson,Meet TODAY and get autographs in #LasVegas at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/MTJmhkbJuB +11/23/2017,Sports_celeb,@MikeTyson,"@rootsoffight having #BlackFriday sale on now. Entire #IronMike collection now live, check it out #KnowyourRoots… https://t.co/8TON58tgLp" +11/22/2017,Sports_celeb,@MikeTyson,VEGAS: Come this Friday & get autographs at @TristarVegas and @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you th… https://t.co/TXvXiagvED +11/20/2017,Sports_celeb,@MikeTyson,Tonight's your last chance to see Undisputed Truth Round 2 @MGMGrand in Las Vegas! Call 866.740.7711 to get your ti… https://t.co/JsTZyfmWCG +11/15/2017,Sports_celeb,@MikeTyson,Come see Undisputed Truth Round 2 @MGMGrand Las Vegas before it's gone! Get your tickets 👉https://t.co/KOUeBrdDzz https://t.co/ITu35LY3zw +11/15/2017,Sports_celeb,@MikeTyson,"Guess who is a part of this years Synergy Global Forum speaking at the forum on November 28. Forum in Moscow, Nove… https://t.co/F4AmlKDe01" +11/13/2017,Sports_celeb,@MikeTyson,There are only 8 shows left of Undisputed Truth Round 2 @MGMGrand! Call 866.740.7711 for tickets. https://t.co/IOndXaiiJF +11/11/2017,Sports_celeb,@MikeTyson,RT @BoxingHall: Boxing Hall of Fame fall silent auction ends tomorrow (November 11th) at 3 pm. (EST). See photos and complete auction detai… +11/08/2017,Sports_celeb,@MikeTyson,There are only a few Undisputed Truth Round 2 shows left @MGMGrand Las Vegas. Get your tickets 👉… https://t.co/aqusdMMTAG +11/07/2017,Sports_celeb,@MikeTyson,"Check out who came to Undisputed Truth Round 2 @MGMGrand this past weekend... Actor & Comedian, Deon Cole. For tick… https://t.co/LExZ7LdosI" +11/07/2017,Sports_celeb,@MikeTyson,Let’s lead with kindness #PrayersforTexas #LoveNotHate https://t.co/JkmGHRHdZV +11/06/2017,Sports_celeb,@MikeTyson,Be kind to one another #PrayForTexas https://t.co/idgZRkLYZD +11/06/2017,Sports_celeb,@MikeTyson,Life has a lot of distractions. Get back to basics. #familyfirst #lovenothate #PrayersforTexas https://t.co/jN1V94QiCS +11/06/2017,Sports_celeb,@MikeTyson,Tonight I'm @MGMGrand in Las Vegas for Undisputed Truth Round 2! Get ready to laugh hard. Tickets👉… https://t.co/wCtb7z4wAm +11/04/2017,Sports_celeb,@MikeTyson,Hanging with my mini me #saturday #tennis #fatherandson send me a 👊🏽 if you are hanging with your kids this weekend https://t.co/5frmw0RfUl +11/04/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas @FODCaesars & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See you s… https://t.co/Twgd4Z7Fyl +11/04/2017,Sports_celeb,@MikeTyson,My new hoody from @rootsoffight is here #CatskillBoxingClub is out now #RootsofFight #KnowYourRoots… https://t.co/kgWLgDgnQg +11/01/2017,Sports_celeb,@MikeTyson,There are only a few Undisputed Truth Round 2 shows left @MGMGrand in Las Vegas! Call 866.740.7711 for tickets. https://t.co/maTorSGay7 +10/31/2017,Sports_celeb,@MikeTyson,"#Vegas: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/j2DEKvqQWF" +10/30/2017,Sports_celeb,@MikeTyson,@rootsoffight just released #CatskillBoxingClub hood. This gym was the start of it all. Get yours #RootsofFight… https://t.co/pTWOZlO7Ui +10/30/2017,Sports_celeb,@MikeTyson,Meet me at Undisputed Truth Round 2 tonight @MGMGrand in Las Vegas. Click the link for tickets👉… https://t.co/pXNh3YB2w2 +10/25/2017,Sports_celeb,@MikeTyson,"My new @rootsoffight stadium jacket just dropped, get yours now! #RootsofFight #KnowYourRoots… https://t.co/nEtHa537eX" +10/25/2017,Sports_celeb,@MikeTyson,Who's ready to see me in Undisputed Truth Round 2 @MGMGrand in Vegas this weekend? Call 866.740.7711 for tickets. https://t.co/J9zNRCcGy0 +10/23/2017,Sports_celeb,@MikeTyson,Check out who visited Undisputed Truth @MGMGrand ...former NBA player @MettaWorldPeace NBA player CJ Watson &… https://t.co/P4IPdBtVpc +10/21/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODVenetian! Info: https://t.co/5Nk70P0Jv2 See… https://t.co/MBzmbtIBfE +10/20/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODCaesars and @FODVenetian! Info: https://t.co/5Nk70P0Jv2 https://t.co/y7APSkmbvk +10/18/2017,Sports_celeb,@MikeTyson,"Welcome to the @Rootsoffight Family, @robertoduranbox. The long wait is finally over. #KnowYourRoots… https://t.co/JeRhv29iss" +10/17/2017,Sports_celeb,@MikeTyson,Jim Norton visited me at Undisputed Truth Round 2 this past weekend. Have you seen my show yet? Call (866) 740-7711… https://t.co/lrrwn9sNl1 +10/17/2017,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/Wj1BJ2F4ge" +10/12/2017,Sports_celeb,@MikeTyson,"In case you missed it, click the link to hear me talk about my first late night interview with @Joan_Rivers. ►… https://t.co/PtUslZMO87" +10/11/2017,Sports_celeb,@MikeTyson,Did you know you can meet me after the show? Click the link to learn more about Meet & Greet tickets.… https://t.co/2XOXH9Sdqt +10/10/2017,Sports_celeb,@MikeTyson,"VEGAS: Come see me this week & get my autograph at @TristarVegas, @FODCaesars & @FODVenetian! Info:… https://t.co/mj0HnYZ3Ov" +10/10/2017,Sports_celeb,@MikeTyson,"Check out who came to see Undisputed Truth Round 2 @MGMGrand this weekend, Jarrod & Brandi from Storage Wars. Ticke… https://t.co/320ShDObmE" +10/02/2017,Sports_celeb,@MikeTyson,LAS VEGAS VICTIMS' FUND https://t.co/xPc38CW1ij +10/02/2017,Sports_celeb,@MikeTyson,Sad day. Love and prayers #lasvegas. Let's not let hate win. Be kind to one another. #FightHatewithLove +09/29/2017,Sports_celeb,@MikeTyson,"Check out who came to visit my show last night... UFC fighter, @roynelsonmma aka Big Country. https://t.co/QtSH6W7YmM" +09/29/2017,Sports_celeb,@MikeTyson,Come see me TODAY in #LasVegas. I'm signing autographs at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 https://t.co/nLfQm2vjEP +09/28/2017,Sports_celeb,@MikeTyson,Have you bought your tickets to Undisputed Truth Round 2 @MGMGrand in Las Vegas? Tickets👉https://t.co/KOUeBrdDzz https://t.co/SMSsJDF89l +09/26/2017,Sports_celeb,@MikeTyson,"#LasVegas: Excited to meet everyone this week at @TristarVegas Fri. 1:30-3, at @FODCaesars Fri. & Sat. 3:30-5 & at… https://t.co/i4YjXIau0s" +09/26/2017,Sports_celeb,@MikeTyson,"Start with small investment, finish big; start with @tradeonetwo! #MikeTysonForTrade12 #MikeTyson +Trade12 Website:… https://t.co/8PShKg1f9R" +09/25/2017,Sports_celeb,@MikeTyson,"Undisputed Truth Round 2 is a no-holds-barred, one-man show. Don’t miss it! Call 866.740.7711 for tickets. https://t.co/4TnJ5sRMd6" +09/20/2017,Sports_celeb,@MikeTyson,In case you missed it. Click the link and listen to the WWE episode. ► https://t.co/MArlE0cdFE Full source video is… https://t.co/6GNPHm1qDc +09/20/2017,Sports_celeb,@MikeTyson,Round 2 of Undisputed Truth is now @MGMGrand Las Vegas! Call (866) 740-7711 to book your tickets. https://t.co/O0KO4Y5jXH +09/19/2017,Sports_celeb,@MikeTyson,.@MarlonWayans visited me at Undisputed Truth Round 2 this past weekend. Have you seen me at @MGMGrand Las Vegas? T… https://t.co/gM6aB8ydXK +09/19/2017,Sports_celeb,@MikeTyson,"Hey Houston I'll be there this Wed 9/20 @fitermansports, portion of proceeds donated to hurricane victims. Get Info… https://t.co/yUpSW8QXv0" +09/18/2017,Sports_celeb,@MikeTyson,Look who magically appeared at my sold out show #undisputedtruthround2 last night... David Copperfield… https://t.co/Jw989FgixO +09/18/2017,Sports_celeb,@MikeTyson,Check out my latest Q&A with @LasVegasWeekly where I discuss Round 2 of Undisputed Truth @MGMGrand Las Vegas.… https://t.co/WEXaxTPILW +09/16/2017,Sports_celeb,@MikeTyson,Get my thoughts on the fight in the Mayweather/McGregor episode/boxing episode. Be sure to buy it on PPV.… https://t.co/3rRCMXr6yI +09/16/2017,Sports_celeb,@MikeTyson,Come see me TODAY and get my autograph in #LasVegas at @FODVenetian and @FODCaesars! Info: https://t.co/5Nk70P0Jv2… https://t.co/UcTjssWmK8 +09/16/2017,Sports_celeb,@MikeTyson,Excited to meet everyone TODAY in #LasVegas! I'm signing autographs at @TristarVegas and @FODCaesars. Info:… https://t.co/CknPW5zN9v +09/16/2017,Sports_celeb,@MikeTyson,Get my thoughts on the fight in the Mayweather/McGregor episode/boxing episode. Be sure to buy it on PPV.… https://t.co/aN6UJlJAkG +09/15/2017,Sports_celeb,@MikeTyson,"If you don't know, now you know. Grab your @rootsoffight T while it's still in stock. #RootsofFight #BMOTP… https://t.co/xV0MAz2R89" +09/13/2017,Sports_celeb,@MikeTyson,Listen to me talk about my hall of fame career in the WWE like you have never heard before! ►… https://t.co/SBB6IIQ7lq +09/13/2017,Sports_celeb,@MikeTyson,"VEGAS: Meet me this week & get my autograph at @FODCaesars, @FODVenetian & @TristarVegas! Info:… https://t.co/2uQ8pcZ6CO" +09/13/2017,Sports_celeb,@MikeTyson,Check out all upcoming Undisputed Truth Round 2 show dates @MGMGrand on our Facebook Events page.… https://t.co/S8HzTLyvw3 +09/12/2017,Sports_celeb,@MikeTyson,Check out who came through last night #RHOBH Dorit & PK Kemsley & UFC's @ymedeiros after the show. You too can meet… https://t.co/MHsWJf23wr +09/11/2017,Sports_celeb,@MikeTyson,Click the link for the full recap of the Mayweather/McGregor fight. ► https://t.co/MArlE0cdFE @Rosenbergradio… https://t.co/npjlduOMVh +09/11/2017,Sports_celeb,@MikeTyson,"Tomorrow, Sept. 12 is your last chance to cast your vote for me in @TheBestOfLV Awards! Click the link to vote:… https://t.co/iVsn0sQqz4" +09/10/2017,Sports_celeb,@MikeTyson,Congratulations to @sloanestephens for an awesome comeback win. You are an inspiration to girls everywhere includin… https://t.co/wR4YoOp5wv +09/09/2017,Sports_celeb,@MikeTyson,Tune into me all day on @eminem's @shade45 wilding out with @djwhookid #WhoolywoodShuffle #undisputedtruthround2 💥 https://t.co/ZYMB1gOCTa +09/09/2017,Sports_celeb,@MikeTyson,Click the link for the full recap of the Mayweather/McGregor fight. ► https://t.co/MArlE0cdFE @Rosenbergradio… https://t.co/99xDQjf479 +09/07/2017,Sports_celeb,@MikeTyson,Watch me on @JimmyKimmel – Tonight on ABC! #KIMMEL https://t.co/zCGbZtx5Hg +09/06/2017,Sports_celeb,@MikeTyson,Undisputed Truth Round 2 opens tomorrow night @MGMGrand in Las Vegas! Get your tickets👉https://t.co/KOUeBrdDzz https://t.co/FbSeocTqkE +09/05/2017,Sports_celeb,@MikeTyson,New episode of my podcast is up. Be sure to listen and get my take on the McGregor/Mayweather fight… https://t.co/aLfkv3x0QI +09/05/2017,Sports_celeb,@MikeTyson,Remember to vote for me as Best Resident Performer/Headliner in @TheBestofLV Awards! Cast your vote here:… https://t.co/veNXYs0CJm +09/04/2017,Sports_celeb,@MikeTyson,Click the link to listen to the full interview ► https://t.co/s3aloLUPR1 @Rosenbergradio #Boxing #HipHop #MikeTyson… https://t.co/2VRqQB3oZH +09/04/2017,Sports_celeb,@MikeTyson,Mike Tyson Undisputed Truth Round 2 starts in a few days! Who's ready for another knock out performance?😉 https://t.co/dJPfeT4Ysi +09/02/2017,Sports_celeb,@MikeTyson,Click the link to listen to the full interview ► https://t.co/f6uDtxm5H2 @Rosenbergradio #Boxing #HipHop #MikeTyson https://t.co/W26Zd6oBPJ +09/01/2017,Sports_celeb,@MikeTyson,The @rootsoffight End of Summer #Sale is officially on! Head to https://t.co/Il5Ka9Q1uS to check out my #IronMike g… https://t.co/KdCRGr37n3 +08/31/2017,Sports_celeb,@MikeTyson,Click the link to listen ► https://t.co/sfhmMOrC3C @Rosenbergradio #Boxing #HipHop #MikeTyson #MichaelJackson https://t.co/sO28JLpr8G +08/30/2017,Sports_celeb,@MikeTyson,Round 2 of my Undisputed Truth @MGMGrand starts September 7th! Call (866) 740-7711 to book your tickets.… https://t.co/oXOg1NvK5f +08/30/2017,Sports_celeb,@MikeTyson,Every little counts for #HurricaneHarvey. I donated. Visit https://t.co/XbKW5UHBZj or call 1-800-RED CROSS to dona… https://t.co/QwdGtfEsqP +08/29/2017,Sports_celeb,@MikeTyson,Click the link to listen ► https://t.co/tVmlYTGgjn @Rosenbergradio #Boxing https://t.co/6LRpCmaaYk +08/29/2017,Sports_celeb,@MikeTyson,Vote for Mike Tyson Undisputed Truth Round 2 as Best Resident Performer in the @TheBestOfLV Awards! Click to vote:… https://t.co/q9aBkgwrCK +08/28/2017,Sports_celeb,@MikeTyson,Are you ready for Undisputed Truth Round 2? I'm back on stage @MGMGrand Las Vegas on Sept. 7th! Tickets:… https://t.co/QD2dtnnKFL +08/26/2017,Sports_celeb,@MikeTyson,Only my super fans will know who Teddy Atlas is. Listen to the most recent podcast to find out! ►… https://t.co/ygqmJgcgQs +08/26/2017,Sports_celeb,@MikeTyson,TODAY in #LasVegas: Meet me and my autograph at @FODVenetian & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 +08/25/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @TristarVegas & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 See you soon! +08/24/2017,Sports_celeb,@MikeTyson,Listen to my podcast as we do a deep dive on my relationship with Cus like you have never heard before! ►… https://t.co/C8cSJWyMMk +08/24/2017,Sports_celeb,@MikeTyson,Meet me TODAY and get my autograph in #LasVegas at @FODVenetian & @FODCaesars! Info: https://t.co/5Nk70P0Jv2 +08/24/2017,Sports_celeb,@MikeTyson,"VEGAS: Meet me this week & get my autograph at @FODCaesars, @FODVenetian & @TristarVegas! Info: https://t.co/5Nk70P0Jv2 See you there!" +08/23/2017,Sports_celeb,@MikeTyson,Mike Tyson Undisputed Truth Round 2 is @MGMGrand Las Vegas for a limited time! Call 866.740.7711 to get your ticket… https://t.co/1iYKl8RU2H +08/22/2017,Sports_celeb,@MikeTyson,"Still recovering from back surgery, interview with @JRsBBQ and @Rosenbergradio as they discuss my WWE career… https://t.co/MSXL3YVGJ3" +08/21/2017,Sports_celeb,@MikeTyson,"https://t.co/LrlPV1USH8 +Build your investment with @tradeonetwo! #MikeTysonforTrade12 #Trade12 +Trade12 Website:… https://t.co/9XZqNyViX1" +08/21/2017,Sports_celeb,@MikeTyson,"Mike Tyson Undisputed Truth Round 2 starts Thursday, September 7th @MGMGrand Las Vegas! Get your tickets👉… https://t.co/Lkn74N37ts" +08/20/2017,Sports_celeb,@MikeTyson,Learn how I pulled from pro wrestling & movies to come up with some of my most ruthless phrases Part 1/2▶… https://t.co/TN00DWWoi8 +08/18/2017,Sports_celeb,@MikeTyson,"I’m back @MGMGrand in Las Vegas for Undisputed Truth Round 2 starting Thursday, September 7th! Get your tickets👉… https://t.co/mGQ1AXXWi5" +08/18/2017,Sports_celeb,@MikeTyson,"While I recover from back surgery enjoy this early interview with my co-host, @Rosenbergradio. Part 1/2▶… https://t.co/iAHPqfcuVK" +08/17/2017,Sports_celeb,@MikeTyson,"While I recover from back surgery enjoy this early interview with my co-host, @Rosenbergradio and me. Part 2▶… https://t.co/AheErZvdAR" +07/01/2018,Sports_celeb,@GeorgeForeman,They were the Cowboys of the old days Roy Rogers #1 https://t.co/EaF6uWUEpY +07/01/2018,Sports_celeb,@GeorgeForeman,RT @UntouchableVick: @GeorgeForeman Amen Big George! From RayPop's basement! #Help +07/01/2018,Sports_celeb,@GeorgeForeman,RT @Ojoold: @GeorgeForeman Amen BiG George #from Nigeria +07/01/2018,Sports_celeb,@GeorgeForeman,"RT @JorgeH_Madrid: @GeorgeForeman Amen George! God bless you and your family. +Greets from Spain." +07/01/2018,Sports_celeb,@GeorgeForeman,RT @Carlitos7154: @GeorgeForeman Amen big George +07/01/2018,Sports_celeb,@GeorgeForeman,"RT @edtaussig: @GeorgeForeman Amen from Thailand! +Keep the faith George!" +07/01/2018,Sports_celeb,@GeorgeForeman,RT @haloumi35: @GeorgeForeman Amen from Australia champ 👊🏻👊🏻 +07/01/2018,Sports_celeb,@GeorgeForeman,"My Gift; Abe Lincoln, Washington, Kennedy. Wright Bros the Great name s come up; no mention of my name. But Ali he… https://t.co/ZoQUjqGtwC" +07/01/2018,Sports_celeb,@GeorgeForeman,RT @How_2PlayGuitar: @GeorgeForeman Amen George still the #champ +06/30/2018,Sports_celeb,@GeorgeForeman,Off till tomorrow! Love you guys “Fly your flags for the 4 of July I will. Don’t allow anyone to make you ashamed o… https://t.co/UKM2q8IIcG +06/30/2018,Sports_celeb,@GeorgeForeman,I was gone either way! https://t.co/9xJnRAYdLO +06/30/2018,Sports_celeb,@GeorgeForeman,"Sure was special to me: Louis Over Scheming, Ali I’ve Foreman, Frazier I’ve Ali (1) were so much bigger https://t.co/oIHvq0TDmb" +06/30/2018,Sports_celeb,@GeorgeForeman,I do hope Tyson Fury make it all the way back. Doesn’t matter how we fall it getting back up that make us Hero’s https://t.co/pnDoluZKE3 +06/30/2018,Sports_celeb,@GeorgeForeman,It fighting all over again; my strength was management! https://t.co/BepZMTlEI8 +06/30/2018,Sports_celeb,@GeorgeForeman,In his early years Ali had so much fun. Fun loving was a gift I wish I’d stolen from him ( as a young boxer) https://t.co/7VqUDDQzsI +06/30/2018,Sports_celeb,@GeorgeForeman,"BLTN was so much fun; but had our last season. So much travel, we will mis each other it made is special oh the lov… https://t.co/XIowWDTVWv" +06/30/2018,Sports_celeb,@GeorgeForeman,The best fighters today could have the best at anytime; Wilder & Joshua https://t.co/jpRXG5BgYv +06/30/2018,Sports_celeb,@GeorgeForeman,RT @ExceedingA: @GeorgeForeman Amen!!! +06/30/2018,Sports_celeb,@GeorgeForeman,Liston was a mountain like no other; him beating Cleveland William cemented his greatness against all Big punchers… https://t.co/9nmJXlcRGv +06/30/2018,Sports_celeb,@GeorgeForeman,Both are big Talents https://t.co/cDwYCAy9ns +06/30/2018,Sports_celeb,@GeorgeForeman,Naw! I had too much of too many https://t.co/TUVdZgr93b +06/30/2018,Sports_celeb,@GeorgeForeman,I became a Minister; knowing what others thought about it! Went against everything knew and believed. Facing family… https://t.co/g3FX21NY33 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @apajr2: @GeorgeForeman Amen!! https://t.co/nAHE8JdqWD +06/30/2018,Sports_celeb,@GeorgeForeman,RT @amagicmonkfish: @GeorgeForeman Amen! Good sir +06/30/2018,Sports_celeb,@GeorgeForeman,That’s not weight! https://t.co/nZBmHQVmVR +06/30/2018,Sports_celeb,@GeorgeForeman,Your dad and I both; we just didn’t know the Champ’s heart. But I miss the dude everyday https://t.co/SurSnoAFU1 +06/30/2018,Sports_celeb,@GeorgeForeman,Best wishes to all the men & women who love the USA and proudly ware the colors in battle. All my Love https://t.co/Tpo4xlU2Yd +06/30/2018,Sports_celeb,@GeorgeForeman,Back at you my friend https://t.co/MoCDs9JXpE +06/30/2018,Sports_celeb,@GeorgeForeman,RT @KamizonoCopen: @GeorgeForeman Amen!! +06/30/2018,Sports_celeb,@GeorgeForeman,That Shavers could hit! https://t.co/0OOqUepYff +06/30/2018,Sports_celeb,@GeorgeForeman,Agreed https://t.co/U6KxSTw43s +06/30/2018,Sports_celeb,@GeorgeForeman,RT @xarph: Seriously @GeorgeForeman Twitter is a beacon of light in these dark times. It's like the post Thanksgiving dinner living room wi… +06/30/2018,Sports_celeb,@GeorgeForeman,Can’t truly argue that! Tyson was all that and more https://t.co/1uTwPnbooO +06/30/2018,Sports_celeb,@GeorgeForeman,The comeback featured weightlifting it helped with injuries https://t.co/NkXdUS0HWq +06/30/2018,Sports_celeb,@GeorgeForeman,RT @jppower48: @GeorgeForeman Amen 🙏🇬🇧 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @Dataro39Dave: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,I think you did a fair job yourself; Liston/ Tyson interchangeable https://t.co/ccxX0hbD6y +06/30/2018,Sports_celeb,@GeorgeForeman,I was thinking while lying on the floor “what excuse can I come up with this time?Better get up till I think of som… https://t.co/3nr16B8uWP +06/30/2018,Sports_celeb,@GeorgeForeman,RT @wetbulldog: AMEN and God bless!! https://t.co/7EoMqdsFnm +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @LucaSalvarani11: @GeorgeForeman Amen, real warrior, true hero!" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @lgreglarue: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RPopBox: @GeorgeForeman Amen Champ!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @Petedaly321: @GeorgeForeman Amen George!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @EnnioBossi: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @matthewhollie: Amen, Big George. https://t.co/z6LfBkSVG7" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @julesnohrenberg: @GeorgeForeman Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @barchyman: @GeorgeForeman From one second-career pastor to another: AMEN! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @DanSchulz_: @GeorgeForeman AMEN George. +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @bdeyal1: @GeorgeForeman Amen Big George! + +And now in its original language Hebrew: + +אמן!" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @ajc725: @GeorgeForeman Amen from Chicago, champ!" +06/30/2018,Sports_celeb,@GeorgeForeman,I think Ali was https://t.co/CSsIqYBHBH +06/30/2018,Sports_celeb,@GeorgeForeman,RT @momridethewip: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,"So funny, 3-1 Foreman ( with honey ) https://t.co/8hvzuNDUsS" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @vampirejesse23: @griff0767 @GeorgeForeman Amen From Glasgow, Scotland!!!" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @shehryarali: @GeorgeForeman Amen, Champ. Amen." +06/30/2018,Sports_celeb,@GeorgeForeman,Fried chicken Bar. Match wing for wing https://t.co/oy7j3UA14f +06/30/2018,Sports_celeb,@GeorgeForeman,RT @halfpint_SRC: @maindoka @GeorgeForeman Amen!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @PaddyBrooks: Amen https://t.co/GfXyBiTwiV +06/30/2018,Sports_celeb,@GeorgeForeman,RT @CDCI85: @GeorgeForeman Amen George +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @joseantoniogall: Amen from Spain , champ! https://t.co/ZqKamqbSXA" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JimP3737: Amen https://t.co/x5rh7zmh0Y +06/30/2018,Sports_celeb,@GeorgeForeman,RT @gary_murrieta: @GeorgeForeman AMEN!!!! +06/30/2018,Sports_celeb,@GeorgeForeman,Don’t think so. He had my number https://t.co/5vC9pLzkHd +06/30/2018,Sports_celeb,@GeorgeForeman,RT @QhaweMadonko: @GeorgeForeman amen brother +06/30/2018,Sports_celeb,@GeorgeForeman,RT @WilfySafc: @GeorgeForeman Amen +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @Thomas77321627: @GeorgeForeman Amen from Manitoba, Canada" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @PaulBachmann1: @GeorgeForeman Amen my friend. Always good to see you. +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @davesportsgod: @GeorgeForeman ""Amen!""" +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @isawesome_life: @GeorgeForeman Amen, my dear Brother!" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JohnDCoville1: @GeorgeForeman Amen Champ!...you look to be in fighting shape. 👍 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @griff0767: Amen! https://t.co/d6pTyqp19t +06/30/2018,Sports_celeb,@GeorgeForeman,RT @casewinedrinker: @GeorgeForeman Amen Big George +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RGoodman46805: @GeorgeForeman A big Amen comin' at ya! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @CuboidCYBORG: @GeorgeForeman Amen brother George +06/30/2018,Sports_celeb,@GeorgeForeman,RT @7Cookies4me: @GeorgeForeman Amen Champ! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @maindoka: Amen https://t.co/6ZndBavvNs +06/30/2018,Sports_celeb,@GeorgeForeman,RT @SteelergalMiche: @GeorgeForeman Amen George!! From California! ✌❤ +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @lsjeff: @GeorgeForeman George, i have my own thoughts on religion, but when a guy of 6.4 built like you says can i get an amen... I say…" +06/30/2018,Sports_celeb,@GeorgeForeman,RT @will2survive71: @GeorgeForeman AMEN!!!!!!!!!!!😃 +06/30/2018,Sports_celeb,@GeorgeForeman,"RT @JohnStarr4: @GeorgeForeman Amen, and pass the smelling salt." +06/30/2018,Sports_celeb,@GeorgeForeman,RT @okko1976: @GeorgeForeman Amen big George all the way from New Zealand!! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @JayhawkLuvr: @GeorgeForeman Amen! MAGA🇺🇸 +06/30/2018,Sports_celeb,@GeorgeForeman,RT @RJersey_devil: @GeorgeForeman 50th Amen! +06/30/2018,Sports_celeb,@GeorgeForeman,RT @swrazer1: @GeorgeForeman Amen! Happy 4th Champ https://t.co/Sodzkdw43S +06/30/2018,Sports_celeb,@GeorgeForeman,RT @tincup2442: Amen https://t.co/ZJ1TylK7ig +06/30/2018,Sports_celeb,@GeorgeForeman,RT @kingman99: Amen https://t.co/ZyK60D13wu +06/30/2018,Sports_celeb,@GeorgeForeman,RT @130kali: Amen https://t.co/FxLNbIsad5 +06/29/2018,Sports_celeb,@GeorgeForeman,"Alright I said “Amen,” can I get an Amen, Gimme an Amen! +USA Big day is coming https://t.co/1oLTIfPums" +06/29/2018,Sports_celeb,@GeorgeForeman,RT @ATRboxinguk: 10 years since he retired but Joe Calzaghe still got those fast hands! 🔥 https://t.co/53qIQHas5W +06/29/2018,Sports_celeb,@GeorgeForeman,Larry’s name will out last a lot of Champs In The future. His time will come when praise will hep on his head. https://t.co/W87XvgI6jf +06/27/2018,Sports_celeb,@GeorgeForeman,Louis was a lot younger than I was when I fought Moore. He was a babe when he fought Marciano ( I been there ) https://t.co/lodGSdVRzI +06/27/2018,Sports_celeb,@GeorgeForeman,"He actually dropped Liston with quick right, ( clipped me with it ) +Listion could have gotten up though. +He just di… https://t.co/I8Wa1dcGqM" +06/27/2018,Sports_celeb,@GeorgeForeman,Upfront money has to be big. No one is talking the right pay. If they can make the payday with others why not? https://t.co/XdfHf5loXp +06/27/2018,Sports_celeb,@GeorgeForeman,"Upfront gotta be big That’s all. +G https://t.co/XdfHf5loXp" +06/26/2018,Sports_celeb,@GeorgeForeman,Liston was a great Athlete; he had such big hands that I saw him do great feats of strength with ( out of the ri… https://t.co/qGAHpa218f +06/26/2018,Sports_celeb,@GeorgeForeman,No one really said ( to me ) but this guy was special & boxing wasn’t even half of what he really did with his life… https://t.co/yOkvzqvUd7 +06/26/2018,Sports_celeb,@GeorgeForeman,The Champ could take a shot! https://t.co/hn3PKar2jp +06/26/2018,Sports_celeb,@GeorgeForeman,"This is true, I was so in the ring with both Liston & Cleavland William ( sparing ) https://t.co/Tk9SFshEHG" +06/24/2018,Sports_celeb,@GeorgeForeman,Charlie Shipes; my favorite ( personal) Boxer. I hired Dick Sadler. Because I wanted to learn Shipes style. https://t.co/U7B0esGFgn +06/24/2018,Sports_celeb,@GeorgeForeman,"Can’t go wrong there, he learned from Blackburn https://t.co/fvMBIEN9kO" +06/24/2018,Sports_celeb,@GeorgeForeman,"Not very well, against Louis/ didn’t do well against Ali for sure. https://t.co/4adnOB3py8" +06/24/2018,Sports_celeb,@GeorgeForeman,"No one punched like Joe Louis. +Phenomenal delivery https://t.co/0JUaW6G66S" +06/24/2018,Sports_celeb,@GeorgeForeman,You got it right Chuvalo & Ali Chins of steel No one else. https://t.co/G5Qdi2yDv3 +06/24/2018,Sports_celeb,@GeorgeForeman,Jack Blackburn ( Joe Louis ) and a few others he trained to be Champs Angelo Dundee; greatest cornerman ever. What… https://t.co/8NzuCmddyS +06/24/2018,Sports_celeb,@GeorgeForeman,Morrison was a very Skillful Boxer/puncher. Miss him https://t.co/TrUBFjIsSy +06/23/2018,Sports_celeb,@GeorgeForeman,"@midastouch1971 PO Box 1404 Huffman Tx 77336 +Bgfuzzy2@aol.com" +06/23/2018,Sports_celeb,@GeorgeForeman,They may have been made to order for me; but no way I’d said “may I have Tyson/ Marciano on my plate. killers to go… https://t.co/8M614VKwbY +06/23/2018,Sports_celeb,@GeorgeForeman,Spent many hours with Emile so fun fun loving. Always a smile and kind greeting; made boxing class https://t.co/gqF3Q9OWDF +06/23/2018,Sports_celeb,@GeorgeForeman,"Well, the names you mentioned after are no less than great, happy you put me in the mix; but let’s face it Ray Robe… https://t.co/1tXnA8hI0l" +06/23/2018,Sports_celeb,@GeorgeForeman,"UK Boxing fans are ranked #1 in my book. +Along with Las Vegas https://t.co/6JZRFbEwp3" +06/23/2018,Sports_celeb,@GeorgeForeman,Yeah indeed https://t.co/jeigud5s8z +06/21/2018,Sports_celeb,@GeorgeForeman,"Great things still happen in sports NY,NY https://t.co/1Nqa47QZE3" +06/21/2018,Sports_celeb,@GeorgeForeman,It’s about being healthy for the seventh inning stretch https://t.co/RZY6Ei711z +06/20/2018,Sports_celeb,@GeorgeForeman,Easy to forget how important each person is. Every stone we throw seems to ricochet back at us; with 10 kids I keep… https://t.co/kWbjPyKQsu +06/20/2018,Sports_celeb,@GeorgeForeman,"If I could stand on the highest peek and scream 3 words ( the world could hear ) before I pass, I’d say “I Love You… https://t.co/oqWXUNADvP" +06/19/2018,Sports_celeb,@GeorgeForeman,https://t.co/h35DPBDF4T +06/18/2018,Sports_celeb,@GeorgeForeman,Clay Hodges beat me twice! Another one who had my number ( amateurs ) https://t.co/n9C6wznRhT +06/17/2018,Sports_celeb,@GeorgeForeman,Have you heard of “Rope a dope” well here I am “The Dope.” Happy Father’s Day https://t.co/BhN6SWlIYD +06/15/2018,Sports_celeb,@GeorgeForeman,"Just very scary in the first fight, Frazier had beaten them all, Big & small. Dropped Ali who had a chin iron https://t.co/T3maZa5Dsh" +06/15/2018,Sports_celeb,@GeorgeForeman,"RT @andrewakang: I'll be sporting my new favorite tank top all summer. One of my heroes, @GeorgeForeman. Maybe I'll wash it a few times at…" +06/15/2018,Sports_celeb,@GeorgeForeman,RT @Kevo3632: @KT_BOXING Crude but effective 👊 +06/15/2018,Sports_celeb,@GeorgeForeman,"A photo with a real friend,! Scott https://t.co/oDIHXrNA1l" +06/15/2018,Sports_celeb,@GeorgeForeman,RT @CaRedzfan: @GeorgeForeman My daughter said you were a great motivational speaker. Thank you for talking to her group at @pepperdine tod… +06/15/2018,Sports_celeb,@GeorgeForeman,RT @TheTorreiran: @BoxingNewsED @GeorgeForeman I was a kid maybe 10 and I loved Frazier because he was a gentleman and he didn’t taunt peop… +06/13/2018,Sports_celeb,@GeorgeForeman,RT @BoxingPost: @GeorgeForeman The momentum you had plus the improvements you'd made going in to 1977 would have probably made you a favour… +06/13/2018,Sports_celeb,@GeorgeForeman,"RT @gary536714: @GeorgeForeman Hi Big George, Ali would beat you in your fiction book too! He would buy all the books so no one could read…" +06/13/2018,Sports_celeb,@GeorgeForeman,"RT @AnimlSalvideos: @GeorgeForeman GREATEST thing about Foreman is in his books, preface he states ""I will not refer to people based on the…" +06/13/2018,Sports_celeb,@GeorgeForeman,I met Cleveland William at (12) he came by home courting my cousin; ‘Big nice man’.mom gave him advice I just stare… https://t.co/rmtOm0CgxN +06/11/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali, at the same time ( 74) was too much of a Boxer for me. He had the height and jab to out point me. I w… https://t.co/RhF6MjPa11" +06/11/2018,Sports_celeb,@GeorgeForeman,"Love you Dude, always will; let’s keep talking “Fight.”’it’s all we have https://t.co/QUzJl2ZIai" +06/11/2018,Sports_celeb,@GeorgeForeman,"Love this Ali it was to really inspire such a quote. And the people so loved him, sure miss him today https://t.co/a7oKHu1dOT" +06/11/2018,Sports_celeb,@GeorgeForeman,Wow what writing! Thanks https://t.co/8gDWiLz8zG +06/11/2018,Sports_celeb,@GeorgeForeman,Lovely! https://t.co/3Qmqr7XUa3 +06/11/2018,Sports_celeb,@GeorgeForeman,Sonny Liston was a bit frightening; William can after so I was prepared a bit https://t.co/PUtzdAEFsA +06/11/2018,Sports_celeb,@GeorgeForeman,RT @RJersey_devil: @GeorgeForeman Why not keep it non fiction but include a George Foreman dream sequence where u dream that u beat Ali? Id… +06/11/2018,Sports_celeb,@GeorgeForeman,I’d have to check the movie scrip? https://t.co/aRMXk8kC5F +06/11/2018,Sports_celeb,@GeorgeForeman,"If I did a movie about my life, it’d have to be Fiction; cause I would have to win the Ali fight Africa “in my own… https://t.co/3WN0YHDDzK" +06/11/2018,Sports_celeb,@GeorgeForeman,"imagine Telling the story of WWII, with the glory of (D-Day ) and omitting all the Atrocities That occurred there… https://t.co/NycS6g3z6P" +06/11/2018,Sports_celeb,@GeorgeForeman,Before the match was made Ali and I were pretty close. https://t.co/j2jsXDKgIQ +06/11/2018,Sports_celeb,@GeorgeForeman,The last month with a cut over my eye. For days I couldn’t sweat; then no sparring. Challenges I over came. I was… https://t.co/IsrWsTt0eO +06/11/2018,Sports_celeb,@GeorgeForeman,"No way Ali had anything to do with it. +When I was falling all over everything ( before the punch) he almost asked m… https://t.co/B1EnGO9j1z" +06/11/2018,Sports_celeb,@GeorgeForeman,"His punch ( Ali ) sure had me hearing Bells. +That’s all I have to say about that. https://t.co/e9T3IggCnL" +06/11/2018,Sports_celeb,@GeorgeForeman,RT @yasinshah: @BruceCantrell9 @DRubberfist @PcLalalalalal @GueziBadreddine @GeorgeForeman Don't try to take away from Ali. He knocked out… +06/10/2018,Sports_celeb,@GeorgeForeman,"Hermann Niedergassel; I lost a friend and a True Legend. I got the news today, Germany is great for him and his lov… https://t.co/Z7Z3c34nC5" +06/10/2018,Sports_celeb,@GeorgeForeman,"Otis Redding ""The Glory of Love"" https://t.co/j0QqEhr1Kq via @YouTube" +06/10/2018,Sports_celeb,@GeorgeForeman,It’s a good day to stand for for something. Can’t KO a cause. No matter how you punch it stands. https://t.co/YkKVbQdY5E +06/10/2018,Sports_celeb,@GeorgeForeman,Glad to know you love our USA! https://t.co/AuqK7sJAFS +06/10/2018,Sports_celeb,@GeorgeForeman,About 3 years for me to say “Ali-Ali” https://t.co/3XTq5DDTJw +06/10/2018,Sports_celeb,@GeorgeForeman,RT @GeorgeForeman: My first ( US ) public signing; proof I did it ( fist time in 24 years I signed Everlast ) something you can pass on wi… +06/10/2018,Sports_celeb,@GeorgeForeman,“Muhammad Ali” He earned his name. Love you Bruce https://t.co/ZdaNCwbBhy +06/09/2018,Sports_celeb,@GeorgeForeman,"RT @DavidMa84365336: @GeorgeForeman @FitermanSports Nice ‘graph there, champ. Sure better than the chicken scratch that today’s athletes pa…" +06/09/2018,Sports_celeb,@GeorgeForeman,My first ( US ) public signing; proof I did it ( fist time in 24 years I signed Everlast ) something you can pass… https://t.co/ZLC01yWE1U +06/08/2018,Sports_celeb,@GeorgeForeman,"So true, I’m ever grateful https://t.co/rRtMepX8AL" +06/08/2018,Sports_celeb,@GeorgeForeman,"“Right uppercut” if I got you with it bang, Ali was smart never bend his head https://t.co/a1tNHNoIOF" +06/08/2018,Sports_celeb,@GeorgeForeman,"Ali said to me “If you take Sadler back you get the rematch” I said No, “well you’ll never get the rematch.” I neve… https://t.co/ZoClTgtmmf" +06/07/2018,Sports_celeb,@GeorgeForeman,"Wrote about in 94, BY George my autobiography. Told of it in 84, Sport Illistration. Old story it is. https://t.co/HLKV4520Bx" +06/07/2018,Sports_celeb,@GeorgeForeman,"The hardest thing was leaving family; ten years of at home dad taking kids to school, cooking & games together Hard… https://t.co/oP5Hm8w2DK" +06/07/2018,Sports_celeb,@GeorgeForeman,You can Say That again! https://t.co/fXSKIAT88t +06/07/2018,Sports_celeb,@GeorgeForeman,"RT @RTDNA: @JMMeszaros @wusf @DavidPierceUI7 @Illinois_Alma @HopkinsMedicine Our $6,000 @GeorgeForeman Scholarship for @UTAustin students g…" +06/07/2018,Sports_celeb,@GeorgeForeman,Amen Brother been there! No bee sting though more like sting “like Mule kick.” https://t.co/jwSNxOyBrT +06/07/2018,Sports_celeb,@GeorgeForeman,"I’m just happy to be alive still, the people who put drugs in my water weren’t Pharmacist; just uneducated bums.los… https://t.co/VK8zk0wLZm" +06/07/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali didn’t need any help; his style would beat Liston & me any day of the week. Too fast, took boxing to a… https://t.co/8OVrIzsewy" +06/07/2018,Sports_celeb,@GeorgeForeman,"RT @32Red: @32Red 's new best friend, ""Big George"" Foreman give's his exclusive insights on Fury's return this weekend as well as talking a…" +06/07/2018,Sports_celeb,@GeorgeForeman,I hear you friend; “to the victor goes the spoils;” defeat is lonely and the truth is the Light. https://t.co/3qWYP6K14l +06/07/2018,Sports_celeb,@GeorgeForeman,RT @IvanTheK: @GeorgeForeman My theory: That punch is responsible for you coming up with the idea for The George Foreman Lean Mean Fat-Redu… +06/07/2018,Sports_celeb,@GeorgeForeman,I’d fought them all with success; but Ali had a better plan that most https://t.co/BvbK9BO8E0 +06/07/2018,Sports_celeb,@GeorgeForeman,Makes me so happy. So Thankful https://t.co/IkObGwyhsD +06/06/2018,Sports_celeb,@GeorgeForeman,"I was drugged, but if that fast punch of Ali would have stayed put; it never would worked. So fast I didn’t see it… https://t.co/IOTPbqxuyS" +06/05/2018,Sports_celeb,@GeorgeForeman,Hope we meet again! Best wishes G https://t.co/OESsNLcze1 +06/05/2018,Sports_celeb,@GeorgeForeman,The only animals who’s guilty of abusing Humanity walked on 2 legs & eat with knife & fork. ( I too have repented) https://t.co/OpcymNOJS7 +06/05/2018,Sports_celeb,@GeorgeForeman,You can’t “we;” friend it’s you! I love Hollywood but it’s not my sores of education. ( When we were King ) go to A… https://t.co/ZjvNUBTFF1 +06/05/2018,Sports_celeb,@GeorgeForeman,When I was younger; I spoke whatever language Cinderella demanded. Married now it’s only “Yes nam- o Mam! https://t.co/v8YtqzvMsJ +06/05/2018,Sports_celeb,@GeorgeForeman,"You must travel these places. Talk to the people; ( who by the way ask me to bring Digo, my Dog ) most speak 3-5 la… https://t.co/FOftp6UMNB" +06/05/2018,Sports_celeb,@GeorgeForeman,"Africans aren’t small minded people they’re well educated. Not afraid dolls, voodoo, dogs, nor Tarzan you were miss… https://t.co/zWK8okrWzz" +06/05/2018,Sports_celeb,@GeorgeForeman,"Muhammad Ali Loved Boxing, he loved people more that he was loved ( that’s a lot ) dang I miss him https://t.co/rvj2pVaxVH" +06/05/2018,Sports_celeb,@GeorgeForeman,RT @ClydeFraziersWD: We had some #knicks fans in the crowd for game 2 of the #nbafinals. Make plans to join was on Wednesday for game @Wal… +06/02/2018,Sports_celeb,@GeorgeForeman,Everyday I wake up-put my feet on the floor and see that same “Fork in the middle of the road” first thing first..… https://t.co/o0yYIQ5gCn +06/02/2018,Sports_celeb,@GeorgeForeman,"Yes,”Never get too far from Earth that we forget we’re human beings.” Saying & doing things to others we said we’d… https://t.co/lHd5wcPmLI" +06/02/2018,Sports_celeb,@GeorgeForeman,Never been to India. I still have goals https://t.co/VeZ6ibSfXM +06/02/2018,Sports_celeb,@GeorgeForeman,RT @Magicrican: @mikeygarcia @GeorgeForeman 100% with the Champ Mr. Foreman. Mikey is the best. Many Blessings from your fans Puerto Rico. +06/02/2018,Sports_celeb,@GeorgeForeman,I was there working a couple of out yesterday. Still kicking https://t.co/l79oCQkbtX +06/01/2018,Sports_celeb,@GeorgeForeman,"Salmon steak; salt, pepper & garlic Marinade. The most dreamy thing I’ve done on the GF Grill https://t.co/QH90dgnqAe" +06/01/2018,Sports_celeb,@GeorgeForeman,"Archie Moore never mention my age: as we trained worked me as he would a kid. Encouragement enough, always felt lik… https://t.co/nYuTnATm7J" +06/01/2018,Sports_celeb,@GeorgeForeman,"Mikey Garcia, is my favorite boxer today. https://t.co/GnQ0RveKDD" +06/01/2018,Sports_celeb,@GeorgeForeman,That’s not true whatsoever! Not any part of it; We never rode together “until after Africa” Gave him a ride to LA a… https://t.co/Xu3cUYZKXU +06/01/2018,Sports_celeb,@GeorgeForeman,For a change a man record speaks for itself. I heavyweight has ever done this in a sport. 3 Gold https://t.co/TpUDkDuZ3Y +06/01/2018,Sports_celeb,@GeorgeForeman,All the above. https://t.co/AoGDHPqyhy +06/01/2018,Sports_celeb,@GeorgeForeman,That’s a lot of question; Liston in sparring made me back up; Italy in the Olympic The man sent an alarm off in my… https://t.co/GhDTbE5Du0 +06/01/2018,Sports_celeb,@GeorgeForeman,"I was too busy trying to cover up from his 50-60 shots he threw at me, to figure which 1, shot I hit him with? https://t.co/aF7z0pPdzc" +05/30/2018,Sports_celeb,@GeorgeForeman,"RT @KT_BOXING: @GeorgeForeman With Moorer, you put yourself in the line of fire to bait him in and make him confident he could take you out…" +05/30/2018,Sports_celeb,@GeorgeForeman,"I love meats; caviar, escargot and bugs while in China https://t.co/Jt7CcJInWg" +05/29/2018,Sports_celeb,@GeorgeForeman,RT @casualboxingfan: @GeorgeForeman 😂Classic reply from big George. Still sharp despite all those blows! +05/29/2018,Sports_celeb,@GeorgeForeman,None of the above! https://t.co/W9EuGViJha +05/29/2018,Sports_celeb,@GeorgeForeman,"RT @AKhan4200: @kenshiroshah @ColmMagan @McTierArt @GeorgeForeman that is not called a jab, if you are standing orthodox, ur right hand sho…" +05/29/2018,Sports_celeb,@GeorgeForeman,I would taken it; not sure if things would have been that much different? That Boy just had my number https://t.co/hQOVbc5wIo +05/29/2018,Sports_celeb,@GeorgeForeman,Didn’t think I’d need a rematch clause https://t.co/OTZFIdoswz +05/29/2018,Sports_celeb,@GeorgeForeman,"Nothing to Rat; too many movies we watch Rat a James Cagney term +“You dirty Rat” he’d say https://t.co/LiyJ8ly89D" +05/29/2018,Sports_celeb,@GeorgeForeman,"Liston just decided to quit! +G https://t.co/Qz7aRJJczf" +05/29/2018,Sports_celeb,@GeorgeForeman,“Come on George show me somethang” Ali said to me. https://t.co/7xpvTnjqKU +07/02/2018,Sports_celeb,@StephMcMahon,What an honor to be a part of @2018USAGames Opening Ceremonies & @espn’s Unified Sports Challenge! I’m so inspired… https://t.co/4T2eXr80fi +07/01/2018,Sports_celeb,@StephMcMahon,"RT @SOCTconnecticut: Team Connecticut-led by @WWE's @StephMcMahon, Honorary Chair of the Team, SOCT President Beau Doherty & SOCT Board Mem…" +07/01/2018,Sports_celeb,@StephMcMahon,Ready to compete in the @espn Unified Sports Challenge on #TeamWWE! #RiseWithWWE 💪 https://t.co/fxOpum0PQU +07/01/2018,Sports_celeb,@StephMcMahon,Me & my mini-me ready to walk out with @SpecialOlympics Team Connecticut at the @2018USAGames #RiseWithWWE https://t.co/xhlY1bDLKM +07/01/2018,Sports_celeb,@StephMcMahon,"RT @2018USAGames: .@TheMarkHenry is joined by @MsCharlotteWWE to tell the athletes to perform this week with some FLAIR!! + +Thank you @WWE…" +07/01/2018,Sports_celeb,@StephMcMahon,"RT @SpecialOlympics: We go LIVE in Seattle for the @2018USAGames Opening Ceremony at 3:30 pm ET TODAY! + +Be sure to tune-in to @ABCNetwork…" +06/30/2018,Sports_celeb,@StephMcMahon,#RIPMattCappotelli You showed everyone what it means to never give up and to always stay positive. It was a honor t… https://t.co/PrAVI9VifI +06/29/2018,Sports_celeb,@StephMcMahon,RT @ShaniaTwain: What a surprise at my Montreal show... THE @FightOwensFight! @WWE https://t.co/xXHTEfl6wM +06/29/2018,Sports_celeb,@StephMcMahon,"How COOL is this?!? I’m so proud to be included as a @Mattel WWE Superstar fashion figure with these dynamic, stron… https://t.co/1az7Vi9hp2" +06/28/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@WWE Chairman & CEO @VinceMcMahon announces the historic #WWESSD at the Melbourne Cricket Ground on October 6th! https://t.co/KCq… +06/28/2018,Sports_celeb,@StephMcMahon,"RT @WWEPR: For @WWE Superstar @MsCharlotteWWE , one of the stars of @espn The Magazine's 2018 #BodyIssue , wrestling is more than just turn…" +06/28/2018,Sports_celeb,@StephMcMahon,Thank you @KentsisResearch! I suppose this tweet is the formal announcement of the #PediatricCancerActionCouncil! W… https://t.co/iJZERhoc2p +06/28/2018,Sports_celeb,@StephMcMahon,RT @WWEAustralia: ON SALE NOW! @WWE Super Show-Down tickets & packages are on sale now from @Ticketek_AU! https://t.co/cNKL81hBwz #WWESSD #… +06/26/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@USA_Network and @WWE announce a five-year extension for Monday Night #Raw! https://t.co/dSB5WNGrse +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Beginning Friday, October 4, 2019, @FOXTV will air @WWE’s flagship program #SDLive as part of a new five-year agreement with @FOXS…" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWEUKCT: We're baaaaack! + +#WWEUKCT continues RIGHT NOW with the #NXTUK special, streaming only on @WWENetwork! #NXTUKCT https://t.co/tZ…" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @MsCharlotteWWE: #BODY10 with Flair! +Hits newsstands June 29th https://t.co/P6JBfHk9J5" +06/26/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Starting this Sunday, @SpecialOlympics will arrive in Seattle for a celebration of hard work, talent, and triumph, and @MojoRawley…" +06/25/2018,Sports_celeb,@StephMcMahon,"RT @espn: .@MsCharlotteWWE is in ESPN the Magazine's BODY10 Issue, and she knows what it's like to strike a balance between old and new. ht…" +06/25/2018,Sports_celeb,@StephMcMahon,RT @WWEUKCT: #WWEUKCT takes center stage at London's @RoyalAlbertHall... RIGHT NOW on @WWENetwork! https://t.co/sp546EEfDF +06/25/2018,Sports_celeb,@StephMcMahon,Congratulations @MsCharlotteWWE for becoming the first-ever @WWE Superstar featured in @ESPN Magazine’s Body issue.… https://t.co/EfOYZC0WK4 +06/25/2018,Sports_celeb,@StephMcMahon,“There’s no excuse for anyone to work harder than you do.” -Derek Jeter #motivationmonday #morningmotivation https://t.co/4ROnqbeRaR +06/23/2018,Sports_celeb,@StephMcMahon,RT @TripleH: See the MUST SEE @WWEUKCT matches and the brand new #NXTUK division everyone is on talking about all from the historic @RoyalA… +06/23/2018,Sports_celeb,@StephMcMahon,The #WomensEvolution is here! Support your favorite female Superstars and RT! #WWE24 #Empowered for #Emmys. @WWE https://t.co/JbEgNgIplQ +06/23/2018,Sports_celeb,@StephMcMahon,#Emmys MEET #RAW25. At over 1300 episodes #RAW is the longest running weekly episodic television show in U.S. histo… https://t.co/wSbffl2skC +06/23/2018,Sports_celeb,@StephMcMahon,.@WWE's Facebook Watch show #WWEMMC is up for your consideration at the #Emmys. RT to help support. Voting closes t… https://t.co/shozBX4IPr +06/22/2018,Sports_celeb,@StephMcMahon,RT @WWE: Get ready for the conclusion of the 2018 @WWEUKCT with a marathon of the first round action! #WWEUKCT https://t.co/00oFuAxuSP +06/21/2018,Sports_celeb,@StephMcMahon,"RT @WWEUKCT: We're bringing ALL the First-Round #WWEUKCT action directly to you on @facebook, @Twitter, and @YouTube tomorrow at noon ET! h…" +06/21/2018,Sports_celeb,@StephMcMahon,"Thank you @scullather! I agree, what a privilege to be alongside these incredible brands and people! https://t.co/fijDYWPsB9" +06/21/2018,Sports_celeb,@StephMcMahon,Agreed! Thanks again @cnbcKaren! https://t.co/b5XPGgJmaG +06/21/2018,Sports_celeb,@StephMcMahon,The feeling is mutual @weareTFQ!!! https://t.co/XzWjLJfOPn +06/21/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Are you ready? @WWE @MaeYoungClassic 2018 will be held on Wednesday, Aug. 8 & Thursday, Aug. 9 at @FullSail, and YOU can secure yo…" +06/20/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Chicago... +#NXTTakeover and #MITB +London... +@RoyalAlbertHall, #NXTUK, #WWEUKCT +Cannes, France... +#CannesLion +Off to Orlando...…" +06/20/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Leon White entertained (and intimidated) audiences all over the world with his size, strength, and agility. Saddened to hear o…" +06/20/2018,Sports_celeb,@StephMcMahon,So grateful to have this #Bawse as a friend and an inspiration! I love you @IISuperwomanII!!! #Sisterhood #GirlLove… https://t.co/9vKNBIjpcr +06/20/2018,Sports_celeb,@StephMcMahon,So cool driving around with this hot mama @cnbcKaren in a McLaren 570S around #CannesLions for #WhatDrivesYou https://t.co/3xzZ3wReZf +06/20/2018,Sports_celeb,@StephMcMahon,RT @WWE: It will ALWAYS be Vader Time. #RIPVader https://t.co/Zg50TuP5v2 +06/20/2018,Sports_celeb,@StephMcMahon,"RT @MsCharlotteWWE: No designer clothes, no makeup, no filters. +Nothing to hide. Everything to be proud of. +Every woman is a queen, never f…" +06/19/2018,Sports_celeb,@StephMcMahon,RT @WWE: Meet one-of-a-kind soul and @SpecialOlympics athlete Joshua Oakley! #WWEHero #SpecialOlympicsUSAGames https://t.co/4kAXoZFpAp +06/19/2018,Sports_celeb,@StephMcMahon,RT @WWE: Congratulations to @JohnCena on being named a finalist for @ESPN's Muhammad Ali Sports Humanitarian Award! https://t.co/umn7UfWEAB +06/19/2018,Sports_celeb,@StephMcMahon,RT @cnbcipr: .@WWE Chief Brand Officer @StephMcMahon with @cnbcKaren before taking a spin in the @CNBCi @McLarenAuto #WhatDrivesYou #Cannes… +06/19/2018,Sports_celeb,@StephMcMahon,"RT @WWE: An honor fit for a Queen. Congratulations to @MsCharlotteWWE who will be featured in @espn The Magazine’s #Body10 on Friday, June…" +06/19/2018,Sports_celeb,@StephMcMahon,RT @weareTFQ: Influence and impact: give back with generosity and use your platform for change! @ShelleyZalis @StephMcMahon @badassboz @IIS… +06/19/2018,Sports_celeb,@StephMcMahon,"Excited to be back at #CannesLions, ready to speak about taking risks and building brands with these two incredible… https://t.co/yA9hxY7ZcU" +06/19/2018,Sports_celeb,@StephMcMahon,RT @TripleH: Thank you @GMB for having me this morning to discuss our historic return to @RoyalAlbertHall and the announcement of #NXTUK. h… +06/19/2018,Sports_celeb,@StephMcMahon,"Go “Green Machine”! I’m so proud of you Max, you are a Champion for kids and adults everywhere! #WalkForChildrens i… https://t.co/xuPuzNRZAj" +06/18/2018,Sports_celeb,@StephMcMahon,"RT @WWE: BREAKING NEWS: A new brand, #NXTUK is coming to @WWEUK. @TripleH and GM Johnny Saint announced the news this evening @RoyalAlbertH…" +06/18/2018,Sports_celeb,@StephMcMahon,"“If you obey all the rules, you miss all the fun.” -Katharine Hepburn #motivationmonday #morningmotivation https://t.co/NKyDPRAuI4" +06/18/2018,Sports_celeb,@StephMcMahon,Enjoyed meeting w @LK @laurafrofro @wellskatie @kaymadati talking shop w @Twitter. Especially enjoyed seeing this g… https://t.co/HmkXkW3xsx +06/18/2018,Sports_celeb,@StephMcMahon,RT @WWE: UP NEXT: Who will become the next Ms. (or Mrs.) Money in the Bank? We're about to find out on @WWENetwork! #MITB https://t.co/6zpM… +06/17/2018,Sports_celeb,@StephMcMahon,"Dad, thank you for always making me feel loved, every moment of my life. I am truly blessed and forever grateful. I… https://t.co/DepeHihvJI" +06/17/2018,Sports_celeb,@StephMcMahon,#HappyFathersDay to the most incredible father… https://t.co/4W61m4wF6Z +06/17/2018,Sports_celeb,@StephMcMahon,#HappyFathersDay to the most incredible father in the world!!! Your daughters adore you and so do I! https://t.co/pLsW27OveX +06/17/2018,Sports_celeb,@StephMcMahon,RT @TripleH: We are underway in Chicago. #WeAreNXT #NXTTakeOver https://t.co/SQ0mGymFLZ +06/16/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Every #NXTTakeOver is an opportunity to make a mark...to change the course of @WWENXT... +#NXTTakeOver: Chicago is LIVE tonight…" +06/16/2018,Sports_celeb,@StephMcMahon,"RT @VinceMcMahon: Proud to be making history in Australia with WWE Super Show-Down on Saturday, Oct. 6, at the iconic @MCG. https://t.co/na…" +06/16/2018,Sports_celeb,@StephMcMahon,RT @undercover_cbs: Watch @StephMcMahon go undercover on #CelebrityBoss to discover future @WWE talent. Stream the latest episode now befor… +06/16/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: On Saturday, October 6th, @WWE brings the Super Show-Down to the @MCG in Melbourne, Australia ... the largest live event. EVER…" +06/16/2018,Sports_celeb,@StephMcMahon,RT @WWE: Just because @StephMcMahon is comfortable on the set of this action-packed photo shoot doesn't mean that her @undercover_cbs chara… +06/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: While disguised as ""Sam"" on @undercover_cbs, @StephMcMahon talks to gymnastics coach and aspiring @WWE Superstar Kenny about the i…" +06/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Be a part of history when @WWE heads to @MCG for @WWE Super Show-Down on Saturday, October 6! Tickets are available Thursday, June…" +06/16/2018,Sports_celeb,@StephMcMahon,Thank you to everyone who tuned in tonight to watch my episode of @Undercover_CBS! The experience of going undercov… https://t.co/KJ1UzqbbwQ +06/16/2018,Sports_celeb,@StephMcMahon,"RT @undercover_cbs: Watch @StephMcMahon go undercover as ""Samantha Miles"" NOW on #CelebrityBoss.✨ https://t.co/gfjFJHDMf0" +06/15/2018,Sports_celeb,@StephMcMahon,"It was so cool being able to go undercover and surprise some of our @WWE fans, I still can’t believe I was able to… https://t.co/DcTT68SzDI" +06/15/2018,Sports_celeb,@StephMcMahon,RT @WWE: We are right on 🎯 for an ALL-NEW episode of @undercover_cbs starring the one and only @StephMcMahon TONIGHT at 8/7c! #CelebrityBos… +06/15/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: #NXTTakeOver: Chicago TOMORROW NIGHT: + +@WWEAleister v @LarsSWWE #NXTChampionship +@QoSBaszler v @NikkiCrossWWE #NXTWomensChampi…" +06/15/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ""I decided to go undercover because I will have the chance to meet some of my fellow @WWE fans...so that I can give back to them i…" +06/15/2018,Sports_celeb,@StephMcMahon,...Do you think I had anyone fooled? @Undercover_CBS #CelebrityBoss https://t.co/ggRFXt5Cjd +06/15/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout w/ @defrancosgym @tripleh… https://t.co/WQqlPhP47N +06/15/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: See the exclusive interview with @catherinekelley immediately following #NXTTakeOver: Chicago on my official Facebook page. +h…" +06/15/2018,Sports_celeb,@StephMcMahon,Samantha Miles makes her big TV debut tomorrow night on @Undercover_CBS. I can’t wait for you guys to see this epis… https://t.co/l80sicmqBv +06/14/2018,Sports_celeb,@StephMcMahon,"RT @WWE: TOMORROW NIGHT at 8/7c: @StephMcMahon meets some talented, young athletes on @undercover_cbs! #CelebrityBoss https://t.co/5nmayz0K…" +06/14/2018,Sports_celeb,@StephMcMahon,RT @ChildrensPgh: We need your help to beat last year's #WalkforChildrens total! Donate or register today at https://t.co/7TmHP5aaQZ to get… +06/14/2018,Sports_celeb,@StephMcMahon,RT @WWE: Where and when can YOU check out the first round matches of the @WWEUK Championship Tournament?! ALL the details are right here...… +06/14/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout w @defrancosgym @tripleh &… https://t.co/laLV28yQaX +06/14/2018,Sports_celeb,@StephMcMahon,"RT @WWE: The first-ever @FortniteGame Pro-Am Tournament resulted in @XavierWoodsPhD winning $10,000 for @ConnorsCure! https://t.co/plqjz5rU…" +06/13/2018,Sports_celeb,@StephMcMahon,RT @BellaTwins: So beyond excited for @TotalDivas being nominated for a @TeenChoiceFOX for Choice Reality TV show! Bella Army please make s… +06/13/2018,Sports_celeb,@StephMcMahon,"RT @undercover_cbs: The ""Queen of the Ring"" @StephMcMahon is pumped to go undercover this Friday on #CelebrityBoss! https://t.co/kZA4i8Hx1C" +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: .@StephMcMahon will step behind the camera this Friday at 8/7c on @CBS! #CelebrityBoss @undercover_cbs https://t.co/QXff8BgMOS +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Putting an end to bullying today! Thank you Ira Samelson Boys & Girls of Memphis for hosting us today. Always remember do… +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: Watch as @StephMcMahon transforms into #SamanthaMiles in a sneak peek of this Friday's @undercover_cbs: Celebrity Edition! #Underc… +06/12/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: I see the celebration is underway...like @SteveAustinBSR says “hell yeah!!!” + +Enjoy your parade and congratulations! #ALLCAPS…" +06/12/2018,Sports_celeb,@StephMcMahon,RT @WWE: Catch @StephMcMahon on @undercover_cbs THIS FRIDAY at 8/7c! #UndercoverBoss https://t.co/aBs9AmGmHY +06/12/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Meet one of the incredible powerlifters competing in this year's @SpecialOlympics, Katie Millar! #SpecialOlympicsUSAGames #WWEHero…" +06/11/2018,Sports_celeb,@StephMcMahon,Watch me transform into Samantha Miles for @Undercover_CBS on Friday! Here is the entire 3 hour makeup process in a… https://t.co/kOd5fM7qui +06/11/2018,Sports_celeb,@StephMcMahon,RT @WWE: You don't want to miss the BIG SHOW when @StephMcMahon goes undercover on @undercover_cbs this Friday at 8/7c! #CelebrityBoss http… +06/11/2018,Sports_celeb,@StephMcMahon,Congratulations @RondaRousey for continuing to blaze a trail for girls & women everywhere! You were the first-ever… https://t.co/TpZfuXsMC5 +06/11/2018,Sports_celeb,@StephMcMahon,"RT @TheWrap: Exclusive Video: 'Undercover Boss: Celebrity Edition' (@undercover_cbs) - Yes, That's Really @WWE Executive Stephanie McMahon…" +06/11/2018,Sports_celeb,@StephMcMahon,RT @espn: Ronda Rousey is thrilled to become the first woman in the UFC Hall of Fame. https://t.co/4EnuwCxcYr +06/11/2018,Sports_celeb,@StephMcMahon,"RT @ufc: Champion. Pioneer. Legend. + +@RondaRousey enters the Modern Wing of the #UFCHoF July 5! https://t.co/ExQslOwW84" +06/11/2018,Sports_celeb,@StephMcMahon,“Be so good they can’t ignore you.” -Steve Martin #motivationmonday #morningmotivation https://t.co/y1jMI2fJfz +06/10/2018,Sports_celeb,@StephMcMahon,RT @DropTheMicTBS: These ladies know how to handle themselves in the ring 💪 Don't miss the @GlowNetflix vs @WWE Superstars battle TONIGHT o… +06/10/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Awesome weekend supporting @SOCTconnecticut during their #SOCTSummerGames. We had a blast!! Thank you for hosting us. See… +06/10/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: A worthy honor for @RondaRousey... + +but her legacy is just getting started and will reach far beyond sport or entertainment. #…" +06/10/2018,Sports_celeb,@StephMcMahon,RT @WWE: What happens when @StephMcMahon goes undercover at the @WWEPerformCtr? Find out THIS FRIDAY on @undercover_cbs at 8/7c! #Celebrity… +06/09/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: #WWE Superstar @ZackRyder help cheer on the athletes during the #SOCTSummerGames @SOCTconnecticut @SpecialOlympics #WWEHe… +06/09/2018,Sports_celeb,@StephMcMahon,RT @TripleH: Three @NBA Championships out of the last four years. Congratulations to the @warriors and the entire Bay Area on a dominating… +06/09/2018,Sports_celeb,@StephMcMahon,"RT @WWE: This Friday at 8/7c, the ""Queen of the Ring"" is going undercover as @StephMcMahon disguises herself as a photographer on @undercov…" +06/08/2018,Sports_celeb,@StephMcMahon,#NationalBestFriendsDay 🐾 #ILoveMyMastiffs https://t.co/BWJoElGY9z +06/08/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: #WWE employees kicked off morning cheering on local law enforcement during the @SOCTconnecticut Torch Run! #SOCTSummerGam… +06/07/2018,Sports_celeb,@StephMcMahon,So proud to have held @WWE’s first For Your Consideration event last night for the TV Academy. Thank you to the inc… https://t.co/icRGgSa1Eu +06/07/2018,Sports_celeb,@StephMcMahon,RT @MsCharlotteWWE: There is strength in sisterhood. #WWEFYC 🌟 https://t.co/hHmHX90Zxs +06/07/2018,Sports_celeb,@StephMcMahon,RT @AlexaBliss_WWE: https://t.co/DEqg0lLJwl +06/07/2018,Sports_celeb,@StephMcMahon,"RT @WWERomanReigns: Proud to take part in the first #WWEFYC. @WWE and its Superstars have created so many memories over the years, it was a…" +06/07/2018,Sports_celeb,@StephMcMahon,RT @BraunStrowman: Tonight in LA was great. Reunited Team Little Big @AlexaBliss_WWE to talk about the success of #WWEMMC at @WWE’s first e… +06/07/2018,Sports_celeb,@StephMcMahon,RT @WWE: “I remember hearing @VinceMcMahon say ‘the only thing I can guarantee...is an opportunity’” - @ShawnMichaels on the first episode… +06/06/2018,Sports_celeb,@StephMcMahon,"RT @EdMylett: Humbling to be called “Fastest Growing Business Man In Social Media History “ + +Click link + +https://t.co/5j12NIomwM + +#maxout" +06/06/2018,Sports_celeb,@StephMcMahon,"RT @USOMetroDC: ""The eyes of the world are upon you. The hopes and prayers of liberty loving people everywhere march with you."" General Dwi…" +06/06/2018,Sports_celeb,@StephMcMahon,RT @NaomiWWE: “A perfect marriage is just two imperfect people refusing to give up on each other” winning in the the ring and in life @WWEU… +06/06/2018,Sports_celeb,@StephMcMahon,RT @StBaldricks: BREAKING NEWS! The Childhood Cancer #STARAct was signed into law! The legislation authorizes $30 MILLION annually from 201… +06/05/2018,Sports_celeb,@StephMcMahon,RT @2018USAGames: ICYMI: @WWE Monday Night #RAW had some very special guests appearances! #2018USAGames and a few of our athletes went onst… +06/05/2018,Sports_celeb,@StephMcMahon,"RT @ChristianLN0821: As someone who plays an unapologetic #LGBTQ character on TV, I’ve seen first hand the incredible love and kindness tha…" +06/05/2018,Sports_celeb,@StephMcMahon,Way to go @madonnabadger! Hope to see you at #CannesLions! https://t.co/0jrkAtrBVT +06/05/2018,Sports_celeb,@StephMcMahon,RT @shadiabseiso: I’m so happy to be featured on @wweperformctr official website!! I love working with and learning from all our great coac… +06/05/2018,Sports_celeb,@StephMcMahon,RT @FinnBalor: What a privilege! Thank you to all my Team Texas friends for helping me make an entrance in Houston @SpecialOlympics @SOTex… +06/05/2018,Sports_celeb,@StephMcMahon,RT @2018USAGames: What a cool moment @WWETheBigShow! #RiseWithUs https://t.co/AysHettuAS +06/05/2018,Sports_celeb,@StephMcMahon,"RT @SpecialOlympics: We've got a BIG announcement happening tonight & it involves our friend @WWETheBigShow, so you know its going to be go…" +06/04/2018,Sports_celeb,@StephMcMahon,Sooooo excited! It was an incredible experience to go undercover and hear our fans share their passion without know… https://t.co/8iPcqYhd7A +06/04/2018,Sports_celeb,@StephMcMahon,"Meet “Samantha Miles”, my blonde, blogging alter ego next Friday, June 15th on @undercover_cbs! It was a privilege… https://t.co/O1vHUBLQKA" +06/04/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: What an amazing day speaking to club members @bgcghouston about bullying and emotional intelligence. Thank you for hostin… +06/04/2018,Sports_celeb,@StephMcMahon,RT @SInow: WWE has launched a recruiting website for its Performance Center to find the next global wrestling star https://t.co/h8flFpuRMy +06/04/2018,Sports_celeb,@StephMcMahon,"RT @WWE: The future is NOW with the OFFICIAL LAUNCH of the @WWEPerformCtr recruitment website! To visit the new site, go to https://t.co/zw…" +06/02/2018,Sports_celeb,@StephMcMahon,Proud of @WWE’s @NatbyNature for joining @mariashriver for her #MoveforMinds event today at @Equinox. Two incredibl… https://t.co/rxF8GlPckz +06/02/2018,Sports_celeb,@StephMcMahon,"RT @2018USAGames: We are officially only 30 DAYS away from the #2018USAGames! + +@mikethemiz and our partners @WWE are helping us spread the…" +06/02/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Watch as @StephMcMahon takes on a new role during @undercover_cbs when the episode airs Friday, June 15, at 8/7 C on CBS! #Celebri…" +06/01/2018,Sports_celeb,@StephMcMahon,.@WWE is excited to partner with @NestleWatersNA to encourage a healthier lifestyle! We want to know why you… https://t.co/YwtSknNnfJ +06/01/2018,Sports_celeb,@StephMcMahon,#midnightworkout w @defrancosgym & @tripleh -… https://t.co/C0qn4Ff0Bx +05/31/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: That moment when going out for groceries turns into an upcoming episode of @CarpoolKaraoke with @StephMcMahon. Btw, I sound mu…" +05/31/2018,Sports_celeb,@StephMcMahon,"RT @AdamMGrant: This is how you encourage girls to dream big with their career ambitions. +#YouCantBeWhatYouCantSee https://t.co/JO7qHQfZET" +05/31/2018,Sports_celeb,@StephMcMahon,#BTS with @TripleH at our shoot for @WWE’s episode of @CarpoolKaraoke. We had a blast! Can’t wait to see our episod… https://t.co/L37kAtMhXb +05/30/2018,Sports_celeb,@StephMcMahon,RT @WWE: Is the world ready for a ROBOT @JohnCena? It's time to find out because the FIRST episode of #DallasAndRobo is on @YouTube! @Offic… +05/30/2018,Sports_celeb,@StephMcMahon,RT @ChildrensPgh: Have you signed up for #WalkforChildrens yet? There is still time to register at https://t.co/7TmHP5aaQZ! Our presenting… +05/28/2018,Sports_celeb,@StephMcMahon,“It is foolish and wrong to mourn the men who died. Rather we should thank God that such men lived.” -George S. Pat… https://t.co/dRrPFZOrUY +05/28/2018,Sports_celeb,@StephMcMahon,RT @WWEPR: Today @WWE is donating 10% of sales from @WWEShop to support @HireHeroesUSA https://t.co/wkvd3ifz2r @WWECommunity #MemorialDay… +05/27/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ""Don't let anyone ever tell you that you can't do anything... you're beautiful inside and out and please do not let anyone determi…" +05/25/2018,Sports_celeb,@StephMcMahon,RT @TripleH: .@mauroranallo has lent his passion and voice to some of the biggest @WWENXT moments in history. So proud that he’s using them… +05/25/2018,Sports_celeb,@StephMcMahon,"RT @HireHeroesUSA: This Memorial Day, @WWE is donating 10% of sales from @WWEShop to support our mission: https://t.co/AJG7vxq7MO @WWECommu…" +05/25/2018,Sports_celeb,@StephMcMahon,"RT @_KnowYourGirls: We'll do anything to protect our girls, but what about our other ""girls?"" Discover all the ways you can look out for yo…" +05/25/2018,Sports_celeb,@StephMcMahon,Way to go Leah! #LeahStrong! https://t.co/HoHKjNn3X0 +05/24/2018,Sports_celeb,@StephMcMahon,Happy #RedNoseDay! Throw on your red nose and help end child poverty around the world. Learn more about… https://t.co/2sGa0CRjPQ +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWE: In recognition of #MemorialDay, WWE and its Superstars thank and remember the heroes who made the ultimate sacrifice for freedom.…" +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWECommunity: .@WWE is proud to support @SpecialOlympics & excited for the @2018USAGames in Seattle! Even better, our own @StephMcMahon…" +05/23/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: .@WWE is proud to support @_KnowYourGirls! Why is it so important to #KnowYourGirls? Because early detection of breast ca… +05/23/2018,Sports_celeb,@StephMcMahon,"RT @WWE: It is OFFICIAL: @mikethemiz & @MaryseMizanin star in #MizAndMrs on @USA_Network, and it premieres JULY 24 at 10/9c! https://t.co/3…" +05/22/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Take a closer look at the Season 3 premiere of #TotalBellas, and catch new episodes every Sunday at 9/8c on @e_entertainment! @Bel…" +05/22/2018,Sports_celeb,@StephMcMahon,RT @TripleH: This year's #UKCT is filled with the best of the best. Incredible athletes giving their heart and soul for the opportunity to… +05/21/2018,Sports_celeb,@StephMcMahon,“The earth has music for those who listen.” -William Shakespeare #MotivationMonday #MorningMotivation https://t.co/oFttzVrAJC +05/20/2018,Sports_celeb,@StephMcMahon,Happy belated bday @nick_pass!! https://t.co/2x6wPYe1Av +05/18/2018,Sports_celeb,@StephMcMahon,"RT @RedNoseDayUSA: #NikkiBella- Total #RedNoseDay American Ninja Warrior. Tune in to @nbc Thursday, May 24 to watch her take on the @ninjaw…" +05/18/2018,Sports_celeb,@StephMcMahon,#MidnightWorkout finisher w @defrancosgym and… https://t.co/DTrw2fCkYy +05/17/2018,Sports_celeb,@StephMcMahon,"Next Thursday, May 24th is #RedNoseDay. Let’s come together to help end child poverty, one nose at a time. To learn… https://t.co/SFLpNRNcKP" +05/17/2018,Sports_celeb,@StephMcMahon,RT @TripleH: The UK Championship Tournament was a highlight for @WWE in 2017....now meet 8 of the competitors who will take it to a whole n… +05/17/2018,Sports_celeb,@StephMcMahon,#midnightworkout w @defrancosgym and @tripleh -… https://t.co/RueExWBZff +05/17/2018,Sports_celeb,@StephMcMahon,"RT @WWE: Here's @catherinekelley to reveal the first EIGHT participants competing in next month's #WWEUKCT! + +@ZackGibson01 @Joe_Coffey @Gen…" +05/16/2018,Sports_celeb,@StephMcMahon,RT @WebSummit: We're delighted to announce that @WWE's @StephMcMahon will be joining us at this year's #WebSummit in #Lisbon this November… +05/16/2018,Sports_celeb,@StephMcMahon,Excited to be speaking at #WebSummit this November in #Lisbon! https://t.co/BKiC7RLzBo +05/16/2018,Sports_celeb,@StephMcMahon,"RT @WWE: ✔️Climb the ladder +✔️Grab the briefcase +✔️Cash in +✔️Become champion + +#MITB streams LIVE Sunday, June 17 on @WWENetwork! #SDLive…" +05/14/2018,Sports_celeb,@StephMcMahon,Proud to represent @WWE and the #WomensEvolution with these amazing trailblazers @NiaJaxWWE @MsCharlotteWWE &… https://t.co/0TlO0cUFiR +05/13/2018,Sports_celeb,@StephMcMahon,RT @VinceMcMahon: Happiest of Mother’s Days to my incredible 97-year-old mom! #MothersDay +05/13/2018,Sports_celeb,@StephMcMahon,"#HappyMothersDay to all the amazing moms around the world! May you be blessed with macaroni necklaces, plants that… https://t.co/m2poGBEVCY" +05/12/2018,Sports_celeb,@StephMcMahon,RT @TheVFoundation: Cancer survivor and @WWE Superfan Enzo Grande has the title AND the briefcase! Unbeatable! #DontEverGiveUp https://t.co… +05/11/2018,Sports_celeb,@StephMcMahon,"RT @the_USO: Military spouses’ service to the country is vital to ensuring the readiness and morale of our nation’s troops. Today, we salut…" +05/11/2018,Sports_celeb,@StephMcMahon,RT @WWECommunity: Kicking off the night at the @USOMetroDC 36th Annual Awards Dinner honoring our military spouses! @TheMarkHenry @DanaWarr… +05/10/2018,Sports_celeb,@StephMcMahon,"This year @thevfoundation raised over $475,000 for pediatric cancer research at their annual #VirginiaVine gala. I… https://t.co/D1wH6FZMxs" +05/10/2018,Sports_celeb,@StephMcMahon,"RT @TheVFoundation: We're so thrilled to announce that our Virginia Vine event raised more than $475,000 for cancer research! +Recap from @…" +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @MsCharlotteWWE https://t.co/eAb… +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @NiaJaxWWE... https://t.co/HwWXj… +05/10/2018,Sports_celeb,@StephMcMahon,RT @CelebrityPageTV: Celebrity Page Correspondent @Audra_Lowe with a Digital Exclusive with @WWE Superstar @AlexaBliss_WWE... https://t.co/… +05/07/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: It’s time for @WWENXT to make history and TAKE OVER Brooklyn...again. + +#NXTTakeOver: Brooklyn is LIVE from the @barclayscenter…" +05/07/2018,Sports_celeb,@StephMcMahon,"Believe in yourself, have courage in your convictions. #MotivationMonday #MorningMotivation https://t.co/UkGGXYbat5" +05/07/2018,Sports_celeb,@StephMcMahon,"RT @WWENetwork: We are LIVE on @WWENetwork in Newark, New Jersey... + +WELCOME to #WWEBacklash! https://t.co/YJruuwDTWl" +05/06/2018,Sports_celeb,@StephMcMahon,"RT @WWE: There is PLENTY to enjoy on the award-winning @WWENetwork, and we're just getting started! https://t.co/nIRPmBwpgk" +05/06/2018,Sports_celeb,@StephMcMahon,"RT @TripleH: Most consecutive wins in a season. Fastest team to score 100 goals in a season. +Winners of the @PremierLeague title. + +From @…" +05/04/2018,Sports_celeb,@StephMcMahon,RT @DanaWarriorWWE: Warriors! Tune in tonight 8pm ET for the debut of @DanaWarriorWWE #TotalWarriors! https://t.co/LFzF8hzD33 @wwe #wwe +05/04/2018,Sports_celeb,@StephMcMahon,RT @TitusONeilWWE: Let’s show the world how powerful women are!I proudly stand with #SheIS to empower female athletes everywhere. Join us i… +05/04/2018,Sports_celeb,@StephMcMahon,"RT @Zelina_VegaWWE: I was always told “you’re too small, too skinny.. just a woman.” JUST a woman? Well! Let’s show the world how powerful…" +05/04/2018,Sports_celeb,@StephMcMahon,"RT @LaceyEvansWWE: Playing sports made me the confident, motivated woman I am today. Amateur Wrestling...Military and a mother, I know the…" +05/04/2018,Sports_celeb,@StephMcMahon,This Mother’s Day @WWE is supporting @SusanGKomen in honoring ALL mothers! You can support thousands of moms everyw… https://t.co/SQq5UTPKGU +05/03/2018,Sports_celeb,@StephMcMahon,"RT @roderickstrong: I am surrounded by a strong and beautiful woman who is a passionate about being a partner,mother and athlete!I proudly…" +05/03/2018,Sports_celeb,@StephMcMahon,RT @MickieJames: Who run the world? Girls!! #Girls who played sports! Studies show that girls who are athletes are more likely to grow up t… +05/03/2018,Sports_celeb,@StephMcMahon,RT @WWE_MandyRose: I proudly stand with #SheIs to empower female athletes all over the world! Growing up I always played sports and I truly… +05/03/2018,Sports_celeb,@StephMcMahon,"RT @sarahloganwwe: All my life I've lived with the realization that I'll never be ""normal"". SheIs to masculine +SheIs to weird +SheIs to am…" +05/03/2018,Sports_celeb,@StephMcMahon,"RT @NatbyNature: Growing up, my mom encouraged my sisters and I to participate in as many different sports as we could! I love being able t…" +05/03/2018,Sports_celeb,@StephMcMahon,RT @SonyaDevilleWWE: I’m blessed to be a female athlete in 2018 .. I’ve played sports almost my entire life and it has been the greatest gi… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @WWEEmberMoon: It's all about empowering the past, present, and future!! Join me in supporting @TeamSheIs https://t.co/LC5KJfhf5H as we…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @itsBayleyWWE: Studies show that girls who are athletes are more likely to grow up to be business leaders. I proudly stand with #SheIs t… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @RealMikeBennett: Dream Big Freddie, you can play any sport that you want, and I will be the proudest dad cheering you on. Help support…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @CarmellaWWE: I proudly stand with #SheIS to empower female athletes everywhere. Let’s show these boys who the REAL champs are! https://… +05/02/2018,Sports_celeb,@StephMcMahon,RT @SashaBanksWWE: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us… +05/02/2018,Sports_celeb,@StephMcMahon,RT @BillieKayWWE: I’m excited to join this movement! I grew up playing sports and truly believe it teaches young females life skills they w… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @mikethemiz: Up to 70% of girls stop playing sports by the age of 13. @TeamSheIs is working to provide resources, encouragement, and rol…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @AlexaBliss_WWE: I proudly stand with #SheIS to empower female athletes everywhere. Join us in this movement and support the next genera… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @VinceMcMahon: Happy birthday to the hardest working man in show business, @TheRock. https://t.co/7OHbqYFp1s" +05/02/2018,Sports_celeb,@StephMcMahon,RT @MustafaAliWWE: My wife told me she didn't receive encouragement to do sports when she was younger. We aren't letting that happen with o… +05/02/2018,Sports_celeb,@StephMcMahon,RT @MsCharlotteWWE: Who run the world? Girls who played sports! Studies show that girls who are athletes are more likely to grow up to be b… +05/02/2018,Sports_celeb,@StephMcMahon,"RT @NatbyNature: Very proud to support @TeamSheIs and women around the world to participate in sports, build confidence for a lifetime and…" +05/02/2018,Sports_celeb,@StephMcMahon,RT @WWERomanReigns: It’s important to support young female athletes in every sport because one day...it’ll be #TheirYard. #SheIs https://t.… +05/02/2018,Sports_celeb,@StephMcMahon,RT @NiaJaxWWE: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us in t… +05/02/2018,Sports_celeb,@StephMcMahon,RT @REALBobbyRoode: Let’s show the world how powerful women are! I proudly stand with #SheIS to empower female athletes everywhere. Join us… +05/02/2018,Sports_celeb,@StephMcMahon,RT @BraunStrowman: Empower the next generation of STRONG female athletes!!! #SheIs https://t.co/AnLsIrQoBP https://t.co/iqygqtIRW5 +06/27/2018,Sports_celeb,@rolopez42,Do people really want a Space Jam sequel?? @QuincyPondexter Tell me what is going on with the world +05/06/2018,Sports_celeb,@rolopez42,@KamBrothers You didn't like the work he did on The Flinstones?!? +05/06/2018,Sports_celeb,@rolopez42,RT @22ndtimeout: @rolopez42 Only 30 Jesus and 2000 Shaq peaked higher +05/06/2018,Sports_celeb,@rolopez42,So LeBron is starting to rival 1905 Einstein right? According to my calculations he just passed 1972 Stevie Wonder… https://t.co/mW4or0IgWU +04/24/2018,Sports_celeb,@rolopez42,"RT @BPortistime: Rondo a for sure HOFer, right?" +04/09/2018,Sports_celeb,@rolopez42,"RT @harikondabolu: If you want my response to the Simpsons episode addressing “The Problem with Apu,” you can infer it from actually watchi…" +04/09/2018,Sports_celeb,@rolopez42,"RT @harikondabolu: Wow. “Politically Incorrect?” That’s the takeaway from my movie & the discussion it sparked? Man, I really loved this sh…" +03/31/2018,Sports_celeb,@rolopez42,Somebody needs to sync this one up to a Denzel speech from Remember the Titans #OrMaybePelicanBrief?… https://t.co/0yC1meYfn0 +03/29/2018,Sports_celeb,@rolopez42,"@ZachLowe_NBA I'm guessing w/the cushy but ultimately meaningless job, G-Wiz is the relative of a politician, most… https://t.co/e5MzC1jSP8" +03/29/2018,Sports_celeb,@rolopez42,T.S. Eliot certainly had a way with words https://t.co/3QzdGQdO5a +03/27/2018,Sports_celeb,@rolopez42,RT @TomKMorris: Wouldn’t you love to know what the script for the canal boats was at this time? https://t.co/7ypG47Vx5b +03/22/2018,Sports_celeb,@rolopez42,RT @TomKMorris: Someone asked me why Chinese lanterns in the Blue Bayou; I replied it was in vogue in the mid-1800’s & would've been shown… +03/16/2018,Sports_celeb,@rolopez42,@BPortistime we made it!!! https://t.co/A34sjSaZom +03/12/2018,Sports_celeb,@rolopez42,RT @chicagobulls: Coming this afternoon...the most dramatic season yet. Starring @rolopez42. #TheBullchelor #BullchelorNation https://t.co/… +03/09/2018,Sports_celeb,@rolopez42,Back to business I guess #NiceEasyWelcomeBackSmackdown #WorkingMyWayUpToClutch https://t.co/vBER13Iy5l +03/05/2018,Sports_celeb,@rolopez42,"RT @TomKMorris: His name is Charles Nichols, in case you ever wondered. https://t.co/UehR1iH7cj" +02/27/2018,Sports_celeb,@rolopez42,RT @NickFriedell: Robin has a Britney Spears picture in his locker. Didn’t realize he was a Mariah fan too. https://t.co/XS6nB0R3xN +02/18/2018,Sports_celeb,@rolopez42,"RT @satosan1118mm: 1996年9月1日「キャプテンEO」クローズ。当時のTDLガイド・マップ裏表紙を飾ったファイナル告知はマイコーファンとしては悲しき思い出(><) +でもまさかこの約14年後に復活するとは夢にも思わなかった。4年間という短期間の再演だったけど奇…" +01/30/2018,Sports_celeb,@rolopez42,@bennythebull But how will I tell who the robots are...and who @bennythebull is?!?! +01/26/2018,Sports_celeb,@rolopez42,"RT @threekola: Good morning!!! It's game day +#LifeisBeautiful #enjoylife #bepositive #itsabouttime #miroticway☦ https://t.co/SwEfJ34IgI" +01/22/2018,Sports_celeb,@rolopez42,"@PierreTPelican @PelicansNBA Fresh Pelican blood + +...and I'm all out" +01/22/2018,Sports_celeb,@rolopez42,@PierreTPelican @PelicansNBA You can expect a lot more where that came from #TuneInTonight… https://t.co/RacU7NExDp +01/11/2018,Sports_celeb,@rolopez42,RT @jashin_mizuho: そして、ブルックと共に西武ライオンズの試合を満喫した双子の兄弟ロビン・ロペス(写真手前)にも投票お願いします! @rolopez42 Robin Lopez #NBAVOTE @lions_official #nbajp https://t… +12/19/2017,Sports_celeb,@rolopez42,RT @QuincyPondexter: Ummm is that 6 Wins in a row?!? I think yes @chicagobulls! We live #BullsNation https://t.co/9CzbDk01yp +12/15/2017,Sports_celeb,@rolopez42,RT @jashin_mizuho: 来日時にブルック・ロペスが「自分をスラムダンクのキャラに例えるなら流川」と言ってたので、じゃあロビンは桜木かなぁと思って描いてみました。結構イメージと合ってる。 https://t.co/rVxngqLsKV +11/23/2017,Sports_celeb,@rolopez42,Great getting the band back together #NoWeDidNotWinState #ButMaybeTheStateChampionshipWasInsideUsAllAlong… https://t.co/N64emti1Ip +10/31/2017,Sports_celeb,@rolopez42,Today's Special: Sideshow Dog Burger (Rolos on the side) #ItsAStretchIKnow #IsAHotDogABurger?… https://t.co/0r8NxSTgTx +10/30/2017,Sports_celeb,@rolopez42,Had a great time bonding with the young fellas from #BAM AT the practice facility! These my guys from Dunbar High!!… https://t.co/VZOCWcelHl +10/28/2017,Sports_celeb,@rolopez42,"Thank you brother! Love your work, especially that Batman run!!! https://t.co/ostvNhUhVh" +10/27/2017,Sports_celeb,@rolopez42,Britney will always be looking out for us guys #IMustConfessIStillBelieve https://t.co/zR06gC2p5A +10/21/2017,Sports_celeb,@rolopez42,Presenting the #SideshowRobs for opening night at the #UnitedCenter #ItsGermanForTheBartThe #SeeRed #CheckBennyB… https://t.co/bCihOfEgAy +09/23/2017,Sports_celeb,@rolopez42,"It's ok @warriors, in a few months @realDonaldTrump probably won't be able to visit the White House either" +09/23/2017,Sports_celeb,@rolopez42,"RT @CP3: With everything that's going on in our country, why are YOU focused on who's kneeling and visiting the White House??? #StayInYoLane" +09/23/2017,Sports_celeb,@rolopez42,RT @KingJames: U bum @StephenCurry30 already said he ain't going! So therefore ain't no invite. Going to White House was a great honor unti… +09/23/2017,Sports_celeb,@rolopez42,RT @natborchers: Had fun supporting @ACPORTLAND with @RossSmith_20 and @rolopez42 last night. Big thanks to @adidassoccer for their generou… +08/14/2017,Sports_celeb,@rolopez42,Red Carpet at the Final Showing of #TheGreatMovieRide #WeNeedAGreatMovieRideMovie #AndThenAGreatMovieRideMovieRide… https://t.co/HUcFrjb3VV +08/14/2017,Sports_celeb,@rolopez42,RT @CavsMoondog: @rolopez42 @TheEllenShow @BillNye @WaltDisneyWorld Sorry the airlines lost your grown-up shoes and made you look like a cl… +08/13/2017,Sports_celeb,@rolopez42,Paying Respects @theellenshow @billnye at #EllensEnergyAdventure #StupidJudy #ThatsOurFinalAnswer #UniverseOfEnergy… https://t.co/ZTmenwEEEq +08/13/2017,Sports_celeb,@rolopez42,RT @colbycockrell: @RealBrookLopez Did I just see you with your bro wearing a Joey Cora jersey? +08/10/2017,Sports_celeb,@rolopez42,@bennythebull Can't the three of us be happy together?!? @MarinerMoose @bennythebull #CoMascotGOATs #WeCanGetAHouseInMalibuAndBeHappy +08/09/2017,Sports_celeb,@rolopez42,RT @Cut4: @rolopez42 @MLB @James_Paxton @NBA @Mariners What could have been ... https://t.co/23Nm6hs14H +08/09/2017,Sports_celeb,@rolopez42,Would also put all NBA mascots in their place #BowDownBeforeTheMascotGOAT https://t.co/V5cSoydg0C +08/09/2017,Sports_celeb,@rolopez42,I'm super jealous of @James_Paxton and @MLB guys where's my Sideshow Rob uni @NBA @nikebasketball #WheresMyElephant… https://t.co/AlXJ0OAF6F +07/17/2017,Sports_celeb,@rolopez42,"RT @JohnStamos: In an hour and a half, I'll be jumping on stage at #D23expo Arena to celebrate the LEGENDS of Imagineering. Come check it o…" +06/23/2017,Sports_celeb,@rolopez42,https://t.co/iq3ERcao9b +06/08/2017,Sports_celeb,@rolopez42,RT @EpcotLegacy: @Imagineer2017 Color Corrected :) https://t.co/CCoTQ5w0a4 +04/29/2017,Sports_celeb,@rolopez42,Muppet got to meet his hero @bennythebull today! Thanks for your support this year Chitown! #SeeRed Thanks to my gu… https://t.co/t38rf9lOzR +04/04/2017,Sports_celeb,@rolopez42,RT @Mariners: @threekola @rolopez42 #GoMariners +04/04/2017,Sports_celeb,@rolopez42,RT @threekola: Gameday at The Garden with @rolopez42! #bullsnation #miroticway☦ https://t.co/pgPdfJp9x7 +03/27/2017,Sports_celeb,@rolopez42,RT @Dame_Lillard: Mark Davis got the Lloyd Christmas haircut... Whatever bro +02/17/2017,Sports_celeb,@rolopez42,https://t.co/I59KhdrA2D +01/24/2017,Sports_celeb,@rolopez42,RT @MulliganJimmy: @rolopez42 @TDRogerson #guysnightout #disney #wdw #beachclub https://t.co/bQ9gxEDMaC +01/16/2017,Sports_celeb,@rolopez42,Basketball is in danger of growing stale. I'm taking it strange new places.… https://t.co/yOCbUGk2Iv +01/16/2017,Sports_celeb,@rolopez42,RT @hobbledegaagaa: Anyone can make a no look pass but can you make a no hands assist? @rolopez42 can. https://t.co/EfchWj4V7Y +12/06/2016,Sports_celeb,@rolopez42,RT @WDFMuseum: @rolopez42 Looking good! A birthday greeting worthy of Walt himself! +12/06/2016,Sports_celeb,@rolopez42,Happy Birthday Walt Disney! Took this outside Walt's birth home here in Chi #HappyBirthdayWalt #MickeyMouse… https://t.co/hp27ZN1V9f +12/04/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: He was pretty excited to see his idols today! @JimmyButler, @RajonRondo, & @rolopez42 are passing gifts out to the kids f…" +11/28/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: Earlier today, Dante from @WishIllinois, came to join the #Bulls for practice. We can't wait to have him at Wednesday's g…" +11/26/2016,Sports_celeb,@rolopez42,"I know I'm late to the party, but we need a Sixers Ben Franklin 90's alternate a la the Raptors/Bucks ASAP #LadiesManBenFranklin @UniWatch" +11/20/2016,Sports_celeb,@rolopez42,"RT @NBAcom: Look out below! @blakegriffin32 throws down emphatic dunk over @rolopez42 + +WATCH: https://t.co/gr4fbnFE9g https://t.co/mokTantv…" +11/02/2016,Sports_celeb,@rolopez42,RT @StanfordMBB: Brotherly Love! #GoStanford https://t.co/8CxuMpM8dG +10/31/2016,Sports_celeb,@rolopez42,My guy from back home @hexagonstaff17 whipped this Halloween masterpiece up for tonight! #IDigTheKicks… https://t.co/0qkxOt8Qvg +10/31/2016,Sports_celeb,@rolopez42,But if I'm over there...@treykerby must be in the Barclay's Center locker room right now... :o #AudibleGasp https://t.co/cUOIBZtFfQ +10/31/2016,Sports_celeb,@rolopez42,Time to get loud #BullsNation! Surprise for my team thanks to my friends @JBLaudio #TeamJBL https://t.co/n5gIM0Qz6H +10/31/2016,Sports_celeb,@rolopez42,RT @AminESPN: @rolopez42 the look of complete shock that a picture is being taken despite you being the one holding the phone is a nice tou… +10/30/2016,Sports_celeb,@rolopez42,@pezwardisking has been immortalized upon my sandals!!! Thanks @dwyanewade and @islideusa!!! #BelatedNationalCatDay… https://t.co/8FNZr4XnWA +10/30/2016,Sports_celeb,@rolopez42,This sweater is relevant to both this series & the time I double parked in front of the lady @ the occult bookstore… https://t.co/bOIPZbKYzZ +10/30/2016,Sports_celeb,@rolopez42,@chicagobulls @AminESPN The secret jam of Dan Majerle too btdubs +10/30/2016,Sports_celeb,@rolopez42,"And here I was, worried this moment would be lost in the ether of time #IShouldaPutMyHandsUp #TheyWerePlayingMySong https://t.co/qZPksR42Eg" +10/13/2016,Sports_celeb,@rolopez42,"RT @chicagobulls: ""You have your Zack Morris, A.C. Slater..I’m the Screech Powers.” See what @rolopez42 is talking about! #BullsNation +http…" +10/12/2016,Sports_celeb,@rolopez42,RT @chicagobulls: Not quite sure @Simone_Biles and @rolopez42 are the same shoe size...😂😱 https://t.co/og4vb4fXhy +10/07/2016,Sports_celeb,@rolopez42,"See what went down in training camp! I promise there's a Saved By The Bell metaphor in there somewhere #BullsNation + +https://t.co/Ftnng2EU6e" +09/26/2016,Sports_celeb,@rolopez42,Beef Smashed #PoorChoiceOfWords #ThanksRevFarrakhan #SeeRed @bennythebull https://t.co/SMCBEgpj7L +09/26/2016,Sports_celeb,@rolopez42,RT @chicagobulls: SQUAD. https://t.co/oYaUJedElI +09/18/2016,Sports_celeb,@rolopez42,Han Rolo and Mubacca #LetTheDoodleWin #HarrisonFordFace #HanSolo #Chewbacca #StarWars#LetTheDoodleWin https://t.co/mqbOpvZdNO +09/12/2016,Sports_celeb,@rolopez42,The 1 pic where I'm not a nervous fangirl 💁 #BestMomentOfMyLife #ColdplaysNext #BestGetThemHandsReady @MariahCarey https://t.co/ZFa45JChS9 +09/06/2016,Sports_celeb,@rolopez42,RT @BarriHoopsHype: Chewbacca has been waiting 39 years... The Lopez brothers made it possible! #StarWars #ChewbaccaWithMedal https://t.co/… +09/05/2016,Sports_celeb,@rolopez42,HEY GUYS IT'S OK CHEWIE FINALLY GOT HIS MEDAL #WookieCousins #CoolPointsForRolo #StarWars #Disneyland https://t.co/D5y4EZmRrx +08/26/2016,Sports_celeb,@rolopez42,RT @PierreTPelican: Hey @rolopez42 @fullerhouse is full enough #FullestHouseWithRobinWillNeverHappen https://t.co/8kfhMEOosK +08/26/2016,Sports_celeb,@rolopez42,They need another set of twins dagnabit! I'll even stay in the garage! #WordToDJ #DoTheJessman #DontBeJealous https://t.co/UgqoH3BjFJ +08/26/2016,Sports_celeb,@rolopez42,RT @MDC10000: Pretty sure I just saw @rolopez42 on the streets of Vienna. Who else is 7ft tall with sideshow bob's haircut and yogi bear's… +08/26/2016,Sports_celeb,@rolopez42,@MDC10000 it's clearly bullwinkle you jerk +08/07/2016,Sports_celeb,@rolopez42,Made the trek to Safeco to see the Kid get his number in the rafters #TheKid #Mariners #FavoriteAthleteEver #24Ever https://t.co/h0xR5srGkY +07/28/2016,Sports_celeb,@rolopez42,At #Ghibli Museum! #HawaiinIndy #ItAllBelongedInAMuseum #Totoro #Gigi #NotTheMovieTheCat #IStillLoveYouLeslieCaron https://t.co/4sd10M41nm +07/24/2016,Sports_celeb,@rolopez42,Who knew it'd feel so good to buy awards with your friends & hand them out to each other?? #Kirkies2016 https://t.co/KQu6L9yAYO +07/23/2016,Sports_celeb,@rolopez42,The 2016 Kirkies Ceremony is tonite @ 8 p.m. PST! Who'll win the KPCup?? #ManOfTheSummer #Kirkies2016 #SponsoredByGQ https://t.co/TxLxIucS7A +07/17/2016,Sports_celeb,@rolopez42,2016 #Kirkies Award Season has begun! #OutfitOfTheDays have gone to @jkjohnnyp @tyjruiz & yours truly #Kirkies2016 https://t.co/0I5OlGzBpO +06/25/2016,Sports_celeb,@rolopez42,"She was so excited to see Tron's Game Grid, but it got super awkward once she was derezzed. #EndOfLine #Tron #Disney https://t.co/1mezz815iu" +06/25/2016,Sports_celeb,@rolopez42,That's why you're my guy!!! #TruffleShuffle #NeverSayDie ##RoloEat https://t.co/KTB7v5Me0g +06/12/2016,Sports_celeb,@rolopez42,Off to #ShanghaiDisneyland for the Grand Opening! Excited & grateful for the experience! #Disney #PeopleMover https://t.co/gkVBHJINkm +06/06/2016,Sports_celeb,@rolopez42,Hanging out at #Stanford in the offsets on with the Card Colored headphones! #HandModeling @JBLAudio #TeamJBL https://t.co/RGOZeHquhi +05/28/2016,Sports_celeb,@rolopez42,"@MettaWorldPeace I appriciate the love, thank you!" +05/25/2016,Sports_celeb,@rolopez42,@DCComics @geoffjohns @Williamson_Josh @ChinaJoeFlynn I will now that we have both Wallys. TV Flash strike has officially ended. +05/25/2016,Sports_celeb,@rolopez42,"@DCComics @geoffjohns @Williamson_Josh I hope not. If he's the genesis, it loses its mystique & permanently elevates barry above others." +05/25/2016,Sports_celeb,@rolopez42,RT @van_jensen: In the @WSJ: I cowrote a piece on the preponderance of familial relationships in the @NBA -- 48.8% of players! https://t.co… +05/25/2016,Sports_celeb,@rolopez42,So did Barry Allen still create the speed force? Or is it all mysterious again @DCComics @geoffjohns @Williamson_Josh will we find out soon? +05/10/2016,Sports_celeb,@rolopez42,"Ran into Indiana Jones cosplayers in Dubai. They look terrible, amiright? #So20YearsAgo… https://t.co/RN2yeGCMHY" +05/10/2016,Sports_celeb,@rolopez42,"Ok, this is something that has to happen @van_jensen! https://t.co/x0C1UXeoJR" +05/09/2016,Sports_celeb,@rolopez42,Sideshows Bob and Rob with the big guy who pays our checks (When not using them to bet on the… https://t.co/4mBvKjPkpJ +05/09/2016,Sports_celeb,@rolopez42,"@ZachLowe_NBA believe it or not, I'm at Universal Florida. Found it in the Kwik-E-Mart!" +05/09/2016,Sports_celeb,@rolopez42,They're not out of Bort plates guys. All is well. #MySonIsAlsoNamedBort #Bort #TheSimpsons https://t.co/uLSX4GuUYQ +05/09/2016,Sports_celeb,@rolopez42,"Just watching the sun move across the sky. When it gets to here, I can drink again! #TheSimpsons… https://t.co/mqK3KJiPJD" +04/28/2016,Sports_celeb,@rolopez42,So much fun! Gotta meet up again this trip and stateside for sure! #HesGotThatHookShotToo https://t.co/aOV65fSBw7 +04/25/2016,Sports_celeb,@rolopez42,On to Mumbai in my trusty Indy Brand Adventurer's hat! #IWannaBeInIndy5 #ItsMeOrMutt #NBAIndiaTour #IndianaJones https://t.co/reHso0ORx3 +04/25/2016,Sports_celeb,@rolopez42,@NBAIndia @nyknicks @SacramentoKings @sdotcurry Dazzle with fundamental box outs!!! +04/22/2016,Sports_celeb,@rolopez42,"@rockthecasbahh we didn't do ""diss tracks"". We were all about the love. #ThatWasTheNameOfOurSecondAlbum" +04/22/2016,Sports_celeb,@rolopez42,#FlashbackFri to when I was atop the charts for 7 wks in '03 w/the jam #GambleOnMyLove ft. my guys #TheBacksyncBoyz https://t.co/tHyswoQwZA +04/21/2016,Sports_celeb,@rolopez42,RT @nyknicks: Happy #NationalHighFiveDay from the #Knicks! https://t.co/mWku7MCypN +04/21/2016,Sports_celeb,@rolopez42,RT @LangGalloway10: Glad to catch up with the guys before the off-season starts up. Summer16 https://t.co/E2MtwzeoYh +04/20/2016,Sports_celeb,@rolopez42,"@ATLHarryTheHawk Good deal, though you should keep the cup on #JustSayin #IFightCleanTho #WhatILearnedInLittleLeague #TheyPutMeInRightField" +04/20/2016,Sports_celeb,@rolopez42,"RT @ATLHarryTheHawk: @rolopez42 So ur gonna kick a bird while he's down huh? Ok, I guess the gloves are off now." +04/20/2016,Sports_celeb,@rolopez42,@ATLHarryTheHawk If you can't take the heat... #StayOffaNationalTV #MascotFail #ThatsAnOxymoronHuh? https://t.co/5X7ZEOGGVa +04/20/2016,Sports_celeb,@rolopez42,It's here it's here it's really here!!! #NextComesTheMiniSeries #ThanksGuys #Flash50 #FastestManAlive https://t.co/fkMcaS0tAs +04/18/2016,Sports_celeb,@rolopez42,"""Art of Walt Disney"" book w/ Mickey Mouse sketch by some moop named Oalt Gisnet?!? #WaltDisney #MickeyMouse #Disney https://t.co/auOfxXWhvk" +04/15/2016,Sports_celeb,@rolopez42,Everyone's favorite #Disney statues in Cali #ExceptUGeppetto #NobodyLuvsYou #JustKiddingIDo #ONoRoloNowYoureMarried! https://t.co/18T8ln6v1u +04/15/2016,Sports_celeb,@rolopez42,"RT @van_jensen: @rolopez42 @DCComics Between this and the Swamp Dragons jersey, a good week for stoking Brook's jealousy, right?" +04/15/2016,Sports_celeb,@rolopez42,@van_jensen @DCComics in my mind I Have No Twin in this universe. #ImMyOwnMan #TearsOfJoy #ThisIsCrazy!!! +04/15/2016,Sports_celeb,@rolopez42,My 1st comics appearance is Flash #50! Someone get me Zatanna's # & an entry in Who's Who!!! @van_jensen @DCComics https://t.co/xCWOYN0ByL +04/09/2016,Sports_celeb,@rolopez42,I can honestly tell you Brook could not be more jealous right now #AndThatCouldntMakeMeHappier #HeWantsThoseUnis https://t.co/vIVvDRz0yn +04/08/2016,Sports_celeb,@rolopez42,We at least need jerseys...we as Americans deserve that much. https://t.co/r4BFStCPRm +04/08/2016,Sports_celeb,@rolopez42,"RT @BleacherReport: Just some light rookie hazing for @kporzee and @JerianGrant on @rolopez42's birthday (via @kslife) +https://t.co/Mleaaia…" +04/05/2016,Sports_celeb,@rolopez42,Further proof my ideal life is that of a second grader #HotDogsAndCarouselHorses #LGG5 https://t.co/MehMQXxZz4 +04/01/2016,Sports_celeb,@rolopez42,"In honor of my birthday, Brook and I have some exciting news: we are starring in our first movie!!! Thanks @bycycle! https://t.co/GLmiW58uQg" +03/28/2016,Sports_celeb,@rolopez42,I only hope I can articulate the country's feelings for you adequately enough with my fists. #ALongTimeComing https://t.co/wvc3kPKtcQ +03/27/2016,Sports_celeb,@rolopez42,@DCComics @geoffjohns when is Wally West going to be old enough to hang out with the real Titans? #IMissDickGraysonsBestFriend +03/27/2016,Sports_celeb,@rolopez42,RT @ValiantComics: The Valiant Car has arrived at the Fallout Shelter comic shop in NJ! #NCBD https://t.co/baCa5o8n99 +03/23/2016,Sports_celeb,@rolopez42,#NuevaYork #TheOcho #AlmostASport https://t.co/YnOaDLg1UA +03/18/2016,Sports_celeb,@rolopez42,Took my new dog Muppet to visit @Nikilster at the @downtolunch HQ! Congrats on your success bro! Check out the app! https://t.co/oSiN5FSP9v +03/18/2016,Sports_celeb,@rolopez42,"RT @Nikilster: The one thing that can make us take a break leave DTL HQ: The Return of the Robin 🙌 + +#Room… https://t.co/DaeINFSzyX https://…" +03/15/2016,Sports_celeb,@rolopez42,The best part of #MarchMadness is really #MarchMagic Even tho I would give these teams buckets (or box outs) #Disney https://t.co/WbZhVEimoO +03/15/2016,Sports_celeb,@rolopez42,@gswarrior10 I can't wait to see the little #TKitten!!! +03/15/2016,Sports_celeb,@rolopez42,RT @gswarrior10: Thank you uncle robin!! I'll see you in the offseason- Isaiah Oliver @rolopez42 https://t.co/wmQRXR6yTI +03/13/2016,Sports_celeb,@rolopez42,Godspeed my friend! #VoteRory #HeWantsToBeABobblehead @RoryDoesPhonics https://t.co/yV0Zhyf2mT +03/07/2016,Sports_celeb,@rolopez42,"New #DuckTales on the way, can't wait til 2017, hope Launchpad appears tho... #WooHoo #Disney #CarlBarks https://t.co/adIrUAbCc3" +03/03/2016,Sports_celeb,@rolopez42,"RT @DisneyD23: JUST ANNOUNCED! Disney pledges $250,000 to the Walt Disney Birthplace project: https://t.co/NdDwewQWoo https://t.co/B08SDQpP…" +03/02/2016,Sports_celeb,@rolopez42,RT @ZachLowe_NBA: Robin Lopez suggestion for Clips mascot: a sea dog wearing a sailor's cap. +02/26/2016,Sports_celeb,@rolopez42,RT @RoryDoesPhonics: Which of you are popular enough to be on this bracket? Make a case. Already have some (@mikeoz @MayorSwearengin @Henry… +02/22/2016,Sports_celeb,@rolopez42,Congrats to @jevonpepper on winning 2 tickets to Disneyland! Pirates of the Caribbean has always… https://t.co/WwQAydh6V1 +02/22/2016,Sports_celeb,@rolopez42,"Finally found my 2nd favorite Disneyland attraction ever! Miss the #Peoplemover! Btw, whoever… https://t.co/fAKTkWCNDV" +02/21/2016,Sports_celeb,@rolopez42,Thanks brother. See you soon! https://t.co/MdU0vNlnq9 +02/21/2016,Sports_celeb,@rolopez42,"RT @kevin_seraphin: Great win,solid team work @nyknicks! Now back home for another battle on monday. #Knicks #Kslife #WeAreOne #Teamwork ht…" +02/21/2016,Sports_celeb,@rolopez42,"Always have been, always will be! #SeeYouThisSummer #Aug6thForSure @MarinerMoose https://t.co/iMesJTU5id" +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs That was such a great little nod in the backlot +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs always wanted to go on Horizons. World of Motion is a close second. +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs Same boat. #ThankGodForYoutube +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs you got it ;) +02/19/2016,Sports_celeb,@rolopez42,@EPCATdork @AmyBethCombs you should be able to guess based of your handle!!! #HintItsNotHorizons +02/19/2016,Sports_celeb,@rolopez42,The 2 nicest whips I own #DidISayWhipRight? #MrToad #SpaceMountain #GoldenHorseshoe #Disney #Disneyland #DisneyWorld https://t.co/0VRGNO9lub +02/19/2016,Sports_celeb,@rolopez42,The two nicest whips I own #YouKeepTheMaybachs #DidISayWhipsRight? #MrToad #SpaceMountain… https://t.co/arE9flHk6r +02/14/2016,Sports_celeb,@rolopez42,VDay in Morocco with #Aladdin inspired evening wear! #EPCOT #WaltDisneyWorld #Disney #HappyValentinesDay https://t.co/dlDqTb7rrv +02/14/2016,Sports_celeb,@rolopez42,Can't beat VDay with christine_vargas in #Aladdin & #Jasmine inspired evening wear in… https://t.co/Ima80PvpRL +02/03/2016,Sports_celeb,@rolopez42,"RT @ROSGO21: Pregame w Kirk Lacob @klacobprime & Robin Lopez @rolopez42 at Madison Square Garden +#StanfordFam #NerdNation 🌲🙌🏽💪🏽🏀🌲 +https://t…" +01/31/2016,Sports_celeb,@rolopez42,"Yeah, you two monstrosities should have fun hanging out together. He can be the new King Cake Baby. https://t.co/8gIOWIGKKe" +01/30/2016,Sports_celeb,@rolopez42,Movie Night! #TokyoStory and #RioBravo #PrettySureThisIsTheBasisForToyStory #JohnWayne #DeanMartin #YasujiroOzu https://t.co/eeY9mV8Nql +01/25/2016,Sports_celeb,@rolopez42,"Brook and I are stopping by at @Tissot Times Square in #NYC Today, Monday 1/25 at 5pm! Meet us there! #Tissot #NBA" +01/21/2016,Sports_celeb,@rolopez42,RT @kporzee: Great team W! S/O to big bro @carmeloanthony for passing L.Bird on the all time scoring list and also great game by @rolopez42… +01/20/2016,Sports_celeb,@rolopez42,@mikepriceinla I'm there! +01/20/2016,Sports_celeb,@rolopez42,"Probably the closest I'll ever come to being on the show, not counting Robert Terwilliger. #DammitKP #IKidNY https://t.co/kl4uB5nsQg" +01/13/2016,Sports_celeb,@rolopez42,That one was for my right shoe #AndTheChildren #ForRolosShoe #ImSorryIThrewYou #Knickstape +01/11/2016,Sports_celeb,@rolopez42,"RT @kevin_seraphin: Another win, another great night in this fantastic @TheGarden! Thanks @nyknicks nation for the love and support! https:…" +01/11/2016,Sports_celeb,@rolopez42,I look like too much of a moron not to post this. Helluva team win tonight #CoolRunnings #GoJohnCandyGo #Knickstape https://t.co/dKtrJoAAy2 +01/07/2016,Sports_celeb,@rolopez42,RT @colinmeloy: @rolopez42 Don't make me start in on Knicks erotic fanfic... +01/07/2016,Sports_celeb,@rolopez42,This clearly isn't your first time behind the erotic fanfic keyboard https://t.co/c7qVcFbVyu +01/07/2016,Sports_celeb,@rolopez42,RT @MLB: Welcome to immortality. The 2016 #HOF electees: Ken Griffey Jr. and Mike Piazza. https://t.co/P7MKb3YvT7 +01/07/2016,Sports_celeb,@rolopez42,RT @jerryferrara: Great win tonight for my @nyknicks ! That's 3 in a row. 4 out of 5. Let's go! @rolopez42 @kporzee @LangGalloway10 @DWXXII… +01/06/2016,Sports_celeb,@rolopez42,RT @jerryferrara: That's 2 in a row! Let's go @nyknicks @rolopez42 @kporzee @carmeloanthony @LangGalloway10 @Kyle_OQuinn +01/01/2016,Sports_celeb,@rolopez42,Here's to a 2016 with even more Grand Adventures and zany hats. Especially the hats.… https://t.co/PIAhlUHPP4 +01/01/2016,Sports_celeb,@rolopez42,RT @hobbledegaagaa: Happy New Year to @rolopez42 and the @nyknicks +01/01/2016,Sports_celeb,@rolopez42,RT @whatwouldDOOdo: @thatbilloakley @realBobWoodward @rolopez42 @coleswindell @michaeldrich @RoyPrice happy new year! https://t.co/eIDyB3Ym… +12/27/2015,Sports_celeb,@rolopez42,Today I was visited by three Spirits & learned the true meaning of #BoxingDay #TipYourPostman #HappyBoxingDayAmerica https://t.co/OIQS4jalZ7 +12/26/2015,Sports_celeb,@rolopez42,RT @SixersFranklin: Pretty sure @rolopez42 got coal and coal only today....I hope he got coal only. https://t.co/Cx1p5wHdKR +12/21/2015,Sports_celeb,@rolopez42,RT @nyknicks: .@rolopez42 and @gardenofdreams spreading holiday cheer with the gift of a new @Kia for #SeasonOfGiving! https://t.co/ItNXrZW… +12/18/2015,Sports_celeb,@rolopez42,"Something I'd like to see in the box. Think Gwyneth Paltrow, if she was a giant blue dog who didn't know her place. https://t.co/hv0mXhCK54" +12/15/2015,Sports_celeb,@rolopez42,And that was what exactly...? https://t.co/2DYJPBHBJA +12/14/2015,Sports_celeb,@rolopez42,Looks like those clowns in congress have done it again. What A Bunch Of Clowns. +12/13/2015,Sports_celeb,@rolopez42,"RT @JmCalderon3: Great W to finish the road trip! Big game from @carmeloanthony @Kyle_OQuinn @rolopez42 Aaron , @DWXXIII @LangGalloway10 La…" +12/12/2015,Sports_celeb,@rolopez42,RT @CHold: . @rolopez42 texting Edward from the road https://t.co/VPkysaeUcI +12/11/2015,Sports_celeb,@rolopez42,RT @SlamsonTheLion: More with @rolopez42 mistletoe cam from last night #halitosis https://t.co/yq6vYPLw2q +12/11/2015,Sports_celeb,@rolopez42,@PierreTPelican @the_real_Gwiz The memories are all we have in the end. And the physical and emotional scars. But mostly the memories. +12/11/2015,Sports_celeb,@rolopez42,RT @PierreTPelican: .@the_real_Gwiz just remember what happens when you trash talk. Right @rolopez42? https://t.co/tmjGjzbWaT +12/09/2015,Sports_celeb,@rolopez42,"#Mondaze amiright?! + +Follow me for more hilarious insight into this crazy 9 to 5 we call Life! https://t.co/oXxDH3IIZW" +12/07/2015,Sports_celeb,@rolopez42,Prince Edward is proud of @TimbersFC for winning the cup today! Congrats to them Bad Boys & @christine_vargas #RCTID https://t.co/vckVufLgFn +12/06/2015,Sports_celeb,@rolopez42,RT @RoseHarding: @rolopez42 @GavinCuneo @ValiantComics Did they send you a REAL CAT?! Amazing. +12/06/2015,Sports_celeb,@rolopez42,Just got an awesome package from @GavinCuneo @ValiantComics! Been digging their stuff forever thanks! #ValiantComics https://t.co/X1DFjCPKUY +12/06/2015,Sports_celeb,@rolopez42,RT @BucksBango: @rolopez42 I will be training. Next year you're mine. https://t.co/0D9uvdjgdt +12/05/2015,Sports_celeb,@rolopez42,"#HappyBirthdayWaltDisney, who I love & admire to no end. Even if he once held up a coach of kids. #WeLoveYouMrDisney https://t.co/CyQpQ98BaA" +12/05/2015,Sports_celeb,@rolopez42,"I guess everybody's the hero in their own story...but, hey, flattered by the Vader comparison anyway #Knicks https://t.co/blr8FP7tud" +12/05/2015,Sports_celeb,@rolopez42,"RT @Animation_Cels: A fond and loving farewell to Elfego Baca. #Disney #WonderfulWorldofColor +RIP https://t.co/J94LKXheb5" +12/05/2015,Sports_celeb,@rolopez42,During the game @pezwardisking apparently learned how to take selfies. #GoodKitty #ForTheGloryOfEdward #Knicks https://t.co/V2AQ8rptqi +12/04/2015,Sports_celeb,@rolopez42,"RT @nyknicks: .@rolopez42 vs. Brook and former #Knicks return to @TheGarden on @MSGNetworks! #NYKvsBKN + +https://t.co/toxF61rmO4 https://t.c…" +12/04/2015,Sports_celeb,@rolopez42,"RT @ZachLowe_NBA: Lowe Post podcast: @rolopez42 + @adampally live in studio to talk mascot abuse, NBA lifestyle, Kristaps mania, more https…" +12/04/2015,Sports_celeb,@rolopez42,@CavsMoondog @Melody22B He's right. I'm always #clowning this fool +12/03/2015,Sports_celeb,@rolopez42,"Jedi Kill Bill over here #Lolz #YouLikeTheTracksuit #IHaveTheHighGround #ShutUpObiThatDoesntMakeSense +#StarWars https://t.co/vU4q4Quyk6" +11/29/2015,Sports_celeb,@rolopez42,RT @BrooklynNets: A tale of two brothers and their #catprobs: https://t.co/KOYKknJ6FX #Nets https://t.co/aQanni9TwI +11/29/2015,Sports_celeb,@rolopez42,Heading to the Garden with @JBLaudio check em out at https://t.co/FMyNTHREAQ #ThatsGoodStuff https://t.co/8JQvLSTxmY +11/29/2015,Sports_celeb,@rolopez42,"Had a great time last night at @Aladdin! Loved meeting @AdamJacobsNYC and jamesmiglehart, just as… https://t.co/P56cHDbgZz" +11/29/2015,Sports_celeb,@rolopez42,@jamesmiglehart I love that whole film top to bottom...always wanted to do that to a professor in college haha! +11/29/2015,Sports_celeb,@rolopez42,RT @jamesmiglehart: I feel a little small next to the awesome Center @rolopez42 aka @rolopez42! https://t.co/1duxQLQSYU +11/29/2015,Sports_celeb,@rolopez42,RT @AdamJacobsNYC: Likewise bro! Come back to Agrabah anytime :) I'll lend you the magic carpet to treat your Jasmine... #NYKnicks #8 http… +11/29/2015,Sports_celeb,@rolopez42,@AminESPN no elephants but they made me proud. You know how high my vocals standards are..... +07/01/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: Flash forever https://t.co/mazB7CvAJG +07/01/2018,Sports_celeb,@DwyaneWade,"“My world is different like Dwayne Wayne” #YoureWelcome @ Barcelona, Spain https://t.co/a4VHCf6gBI" +07/01/2018,Sports_celeb,@DwyaneWade,Freak of nature! https://t.co/9IYplT3XBu +06/30/2018,Sports_celeb,@DwyaneWade,"✌🏾 #barcelonanights #TheWades #wadesworldtour2018 @ Barcelona, Spain https://t.co/HI6iv7TgwY" +06/30/2018,Sports_celeb,@DwyaneWade,"When you think your fresh asf!!! #BarcelonaNights #wadeworldtour2018 @ Barcelona, Spain https://t.co/aBer7scJEp" +06/30/2018,Sports_celeb,@DwyaneWade,Your LAUGH will forever be! RIP Willie May Morris! You shaped my thoughts as early as 5 years old to make something… https://t.co/5tMaJCHywm +06/30/2018,Sports_celeb,@DwyaneWade,Perfectly said https://t.co/WcRgDxgmvP +06/30/2018,Sports_celeb,@DwyaneWade,RT @KrickettwithaK: Anyone still have this #mubb @MarquetteMBB @DwyaneWade classic?! I do! https://t.co/5vmEqE4fny +06/29/2018,Sports_celeb,@DwyaneWade,"🕺🏾 @ Barcelona, Spain https://t.co/yfPAHQHhjm" +06/29/2018,Sports_celeb,@DwyaneWade,Great convo with my guy @Yg_Trece about his upcoming free agency! I appreciate you sitting down with me to talk abo… https://t.co/WQ1tmrEsLk +06/29/2018,Sports_celeb,@DwyaneWade,RT @SneakerReporter: Dope 1 on 1 conversation with @DwyaneWade and @Yg_Trece on My Journey Part 2. https://t.co/e09aLCjjSL +06/29/2018,Sports_celeb,@DwyaneWade,"RT @r0bato: Next is Paul George talking with Dwyane Wade + +1. PG says he could come to LA to play for the home team but he wants to win a ti…" +06/28/2018,Sports_celeb,@DwyaneWade,RT @utahjazz: Grayson tried to model his game after @DwyaneWade & @manuginobili growing up as a kid. D-Wade was the reason he wore number 3. +06/27/2018,Sports_celeb,@DwyaneWade,"Go behind the scenes of my shoot with @away and find out how I ""Talent!"" Make sure to hit that subscribe button!… https://t.co/hXbZpuKHa8" +06/27/2018,Sports_celeb,@DwyaneWade,"🇪🇸 Vacation Crew Vibez!!! @ Ibiza, Spain https://t.co/e7Q5qFSEaG" +06/26/2018,Sports_celeb,@DwyaneWade,RT @HarvardHBS: Learn more about @DwyaneWade's new role teaching rising college seniors as an Executive Fellow. SVMP is a one-week resident… +06/26/2018,Sports_celeb,@DwyaneWade,Ambition travels with me... My new collection with @away is available now! Check it out! https://t.co/4KvjnCQiRU https://t.co/Jhu1awM7Rr +06/26/2018,Sports_celeb,@DwyaneWade,"🇪🇸 ⛳️ #wadeworldtour2018 @ Ibiza, Spain https://t.co/5r8oHqeWcG" +06/25/2018,Sports_celeb,@DwyaneWade,"We’re BROTHERS, were HAPPY and we’re singing and we’re Colored!!! Vacation Vibes with my brother ud40 #Outthebox… https://t.co/fC9CmqVJbt" +06/25/2018,Sports_celeb,@DwyaneWade,🗣🗣🗣 https://t.co/QsufE5wzpz +06/25/2018,Sports_celeb,@DwyaneWade,It’s two kinda people in this 🌍. The ones who LIVE and the ones who watch others LIVE!!! Which one are you!?!?!… https://t.co/plYoqSk0w2 +06/25/2018,Sports_celeb,@DwyaneWade,The face you make when someone says you can’t do something!?!?! #Harvard #Executivefellow https://t.co/9u8xCgiZ32 +06/25/2018,Sports_celeb,@DwyaneWade,When you’re sitting between these two women @anitaelberse @itsgabrielleu you better bring your A game!👊🏾🙏🏾🙌🏾♥️… https://t.co/woDaJrSH3E +06/25/2018,Sports_celeb,@DwyaneWade,I’m just trying to be like you. Hi @karliekloss https://t.co/bDq0KB10EE +06/24/2018,Sports_celeb,@DwyaneWade,Seattle is a great city and has some of the most passionate basketball fans out there. It would be cool to see this… https://t.co/ieDiN9NBnm +06/24/2018,Sports_celeb,@DwyaneWade,🤦🏾‍♂️ https://t.co/p8vifjGWau +06/23/2018,Sports_celeb,@DwyaneWade,TheWades take NYC💧 https://t.co/bno1pxRNt8 +06/23/2018,Sports_celeb,@DwyaneWade,"TheWades take NYC💧 @ New York, New York https://t.co/XBv1zp51UR" +06/22/2018,Sports_celeb,@DwyaneWade,Good morning world! Focus on today as it’s preparing you for tomorrow and the rest of your life! Go be GREAT! +06/21/2018,Sports_celeb,@DwyaneWade,💯 #ChicagoMade @marsreel https://t.co/cywJlSOqyF +06/20/2018,Sports_celeb,@DwyaneWade,RIP good Sir! https://t.co/xlwM0o9xLs +06/20/2018,Sports_celeb,@DwyaneWade,💧 https://t.co/vhq6Vf0JR9 +06/19/2018,Sports_celeb,@DwyaneWade,You know me.. no limits. No rest for the ambitious wanderer. My new collab with @away is coming soon!… https://t.co/EDJTvdA41k +06/19/2018,Sports_celeb,@DwyaneWade,The Glove 🧤 #HOF #2006NBAChampion https://t.co/sdwXEvzHpr +06/17/2018,Sports_celeb,@DwyaneWade,Happy Fathers Day Hank!!! I love you and I’m… https://t.co/SUUkqUcixO +06/17/2018,Sports_celeb,@DwyaneWade,😂😂😂 oh fo sho. Sweet Butter is the jam tho!!! https://t.co/FeG7EhfsnR +06/15/2018,Sports_celeb,@DwyaneWade,"Man, if it wasn’t for the male role models in my life, I wouldn’t be here today. Shoutout to all the fathers and fa… https://t.co/eJRuarXQaD" +06/15/2018,Sports_celeb,@DwyaneWade,Simply a Master Piece! https://t.co/fWjaAAB76g +06/15/2018,Sports_celeb,@DwyaneWade,2012: Hey Punk. Catch. 2018: Hey Sir. Excuse me you dropped your shoe🤷🏾‍♂️ https://t.co/Ij5aoHn3jK +06/15/2018,Sports_celeb,@DwyaneWade,He’s a winner people! https://t.co/DUliOBpY8j +06/14/2018,Sports_celeb,@DwyaneWade,It feels good being back with the family @TheCollectionFL!! I couldn’t ride through this city without all the suppo… https://t.co/2lvjXeMOlk +06/11/2018,Sports_celeb,@DwyaneWade,Let’s let the record show.. I don’t have any inside information whatsoever about his decision! https://t.co/qgm6znLWzk +06/11/2018,Sports_celeb,@DwyaneWade,If you find them can you pls let the whole world know. Fathers always get the left over gifts https://t.co/qrXhVQ1Ca4 +06/11/2018,Sports_celeb,@DwyaneWade,RT @cheddahcheese7: I love what the NBA is doing with mental health! @MRobertsNBPA @ChrysaChin @TheNBPA I would love to see my guy @shansme… +06/09/2018,Sports_celeb,@DwyaneWade,"It’s #NationalRoséDay so it’s only right that I’m celebrating with my brand new Three by Wade Rosé, available now a… https://t.co/sPdAP0WXHV" +06/08/2018,Sports_celeb,@DwyaneWade,"0️⃣6️⃣🏆 @ Miami Beach, Florida https://t.co/VebXdrGtPG" +06/08/2018,Sports_celeb,@DwyaneWade,Oh yeah! I can see this pairing oh-so-well with my new @dwadecellars Rosé. I’ll let @Chefrli tell you a little bit… https://t.co/A1CGdnm3jR +06/08/2018,Sports_celeb,@DwyaneWade,😂😂😂😂😂💯 https://t.co/qgx0rLdAcs +06/07/2018,Sports_celeb,@DwyaneWade,“My goodness”( Jeff van gundy voice) +06/06/2018,Sports_celeb,@DwyaneWade,Chef tried to pull a fast one on me with my own wine but I know my stuff! Episode 2 of #WadesKitchenConvos is out n… https://t.co/RGKARUCFev +06/05/2018,Sports_celeb,@DwyaneWade,👀 https://t.co/9KXMuxyRRQ +06/05/2018,Sports_celeb,@DwyaneWade,This brought me joy to watch!!! @heydb Doris Burke high school highlights https://t.co/UDueGjhKqx via @YouTube +06/03/2018,Sports_celeb,@DwyaneWade,Thanks @BallerTV for creating a platform for the parents that can’t be there but wanna watch their kids play.… https://t.co/8Zos3KVxvP +06/03/2018,Sports_celeb,@DwyaneWade,I like that sweater kid! https://t.co/SkSyh6OhOl +06/01/2018,Sports_celeb,@DwyaneWade,I’ll take each game just like this one. Wire to wire. +05/31/2018,Sports_celeb,@DwyaneWade,https://t.co/CDaW9lo7dp +05/30/2018,Sports_celeb,@DwyaneWade,RT @RobinRoberts: It was a show-stopping performance by @SerenaWilliams in her first major tournament since returning from maternity leave.… +05/30/2018,Sports_celeb,@DwyaneWade,I guess all black people do look alike 🤷🏾‍♂️ because @itsgabrielleu wasn’t at the Olympic in 08. Clearly Eric Jr li… https://t.co/YJ0huPaV08 +05/29/2018,Sports_celeb,@DwyaneWade,Happy Anniversary to you both!!! https://t.co/uMGuE7YJ0N +05/28/2018,Sports_celeb,@DwyaneWade,"RT @BleacherReport: Jeff Green had open-heart surgery in 2012. Now he's competing in the NBA Finals 🙏 + +(via @NBA) +https://t.co/afu9fbLoeu" +05/28/2018,Sports_celeb,@DwyaneWade,RT @kobebryant: #Annie #Oscar #Emmy safe to say I’m focused on another mountain but I’m guessing it’s hard to fathom athletes supporting ot… +05/28/2018,Sports_celeb,@DwyaneWade,RT @kobebryant: We can enjoy one without tearing down one. I love what he’s doing. Don’t debate what can’t be definitively won by anyone #e… +05/28/2018,Sports_celeb,@DwyaneWade,That’s a bad man. Congrts bro on your 8th straight FINALS! DAMN! @KingJames https://t.co/SqFtD0qfVE +05/28/2018,Sports_celeb,@DwyaneWade,"RT @Channing_Frye: Who in the world can hate now lord have mercy, teammate, friend or not this is ridiculous" +05/27/2018,Sports_celeb,@DwyaneWade,Prayers up to his family🙏🏾🙏🏾🙏🏾. Rest easy young hooper! https://t.co/PEQSr26Unm +05/27/2018,Sports_celeb,@DwyaneWade,And to think at one point I wasn’t even the most popular person in my biology class. #Nolabpartner https://t.co/L9RmYjrFw5 +05/27/2018,Sports_celeb,@DwyaneWade,YnG DNA! https://t.co/NMZkEVA0rA +05/27/2018,Sports_celeb,@DwyaneWade,Atleast he’s a champion🤷🏾‍♂️ https://t.co/6iUr5YclUb +05/27/2018,Sports_celeb,@DwyaneWade,RT @HoopersOnIy: Kids these days won’t know how good D Wade actually was 😳 https://t.co/sdkukhuu52 +05/27/2018,Sports_celeb,@DwyaneWade,👇🏾 https://t.co/Ugaczq1T3T +05/26/2018,Sports_celeb,@DwyaneWade,"RT @Wade_Elite: Wade Elite - 67 +East Coast United - 66 + +@enew_5 - 22p 6a 5r +@cloading8 - 17p 10r 2s 2a +@G_Urbonavicius - 14p 10r +Seven Fer…" +05/25/2018,Sports_celeb,@DwyaneWade,"Join me this summer for my basketball & cheer camps! + +Miami: July 7 & 8 +Chicago: August 4 & 5 (register by… https://t.co/0jqQaDnCR4" +05/24/2018,Sports_celeb,@DwyaneWade,Fit on point ✅ Swag on infinity ✅ Co-pilot on Wookiee ✅ Let’s roll. #ad https://t.co/5M4AGquxGi +05/24/2018,Sports_celeb,@DwyaneWade,@J_Rich1 i know the feeling. Nothing against my friend Kobe who was a helluva defender forget the numbers but the v… https://t.co/0wehb3y6SU +05/24/2018,Sports_celeb,@DwyaneWade,This was 6 years ago 🤦🏾‍♂️. Time really does fly. I remember this game like it was last night. https://t.co/jQpP6lOzWq +05/24/2018,Sports_celeb,@DwyaneWade,Thank you @bookingyeah for helping me surprise… https://t.co/MBIrHfPCPW +05/23/2018,Sports_celeb,@DwyaneWade,😂😂😂😂😂 https://t.co/d7qACW26TF +05/23/2018,Sports_celeb,@DwyaneWade,RT @Bucks: Statement From Sterling Brown: https://t.co/mkcM0Dbklr +05/23/2018,Sports_celeb,@DwyaneWade,Hungry yet? We got #WadesKitchenConvos Episode #1 out the oven for you! @Chefrli and I talk about @itsgabrielleu's… https://t.co/EkpSyGJ0mw +05/23/2018,Sports_celeb,@DwyaneWade,RT @isaiahthomas: We need a @NBA team in Seattle!!!!! +05/23/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: “The city has been through a tough time with the things in Santa Fe ... hopefully basketball can be a way people can come a… +05/22/2018,Sports_celeb,@DwyaneWade,😂😂😂😂 busted! https://t.co/3M8mw62sEU +05/22/2018,Sports_celeb,@DwyaneWade,RT @BUBrianWardle: Proud of our players and their commitment to the big picture! https://t.co/U4CfjKllKo +05/22/2018,Sports_celeb,@DwyaneWade,It’s getting real in the kitchen with @Chefrli. We’re taking things to another level with my “Kitchen Convos” serie… https://t.co/cmHHKkA53R +05/22/2018,Sports_celeb,@DwyaneWade,I Definitely seen this reaction out of you at my spades event https://t.co/IF3aixfeTu +05/22/2018,Sports_celeb,@DwyaneWade,"My brother @JamesShawJr9 is doing the work! +https://t.co/pgFyOfKycy" +05/22/2018,Sports_celeb,@DwyaneWade,He’s a BUCKET! https://t.co/zV91pWsGvR +05/22/2018,Sports_celeb,@DwyaneWade,A thing of beauty! https://t.co/IsxcHnKzCE +05/21/2018,Sports_celeb,@DwyaneWade,Dope! https://t.co/yH0jvPnYNy +05/21/2018,Sports_celeb,@DwyaneWade,💭 https://t.co/CIFrghTnD0 +05/21/2018,Sports_celeb,@DwyaneWade,I want Zaire to be the best Zaire he can be. https://t.co/yXHUHNONrD +05/21/2018,Sports_celeb,@DwyaneWade,Haters are people who wanna be you. “Imitation is the sincerest form of flattery” https://t.co/zUG0nCXMeW +05/21/2018,Sports_celeb,@DwyaneWade,Channing is da real MVP! https://t.co/V8yO8mrwfs +05/21/2018,Sports_celeb,@DwyaneWade,It’s whatever the team who has the number 1 pick needs but this class of guys are very talented! https://t.co/63gmxDvplG +05/21/2018,Sports_celeb,@DwyaneWade,It’s an exciting time for you I’m sure. Congrts on the day your baby is born🙏🏾 https://t.co/MsaJYqFAlf +05/21/2018,Sports_celeb,@DwyaneWade,"The 3 finalist that was picked by the NBA were the same 3 I had. In NO certain order people. LeBron, Harden, AD! https://t.co/izsxmCjtDw" +05/21/2018,Sports_celeb,@DwyaneWade,💡 https://t.co/NIJBw1rFUh +05/21/2018,Sports_celeb,@DwyaneWade,"Win,lose or draw. This is what it’s all about!!! https://t.co/UVm4LdYi0n" +05/21/2018,Sports_celeb,@DwyaneWade,It’s a beautiful thing https://t.co/0W14gxtpkn +05/21/2018,Sports_celeb,@DwyaneWade,Possibly the coolest person to ever rock HEAT on their chest. https://t.co/ou9sWgNXnO +05/21/2018,Sports_celeb,@DwyaneWade,🗣 https://t.co/rF8cQaLwtG +05/21/2018,Sports_celeb,@DwyaneWade,Strong word* https://t.co/I720cDsXXM +05/21/2018,Sports_celeb,@DwyaneWade,Sweet https://t.co/EvkX2Ffrlb +05/21/2018,Sports_celeb,@DwyaneWade,😂😂😂 hate is a strong wrong. https://t.co/RukDegB3C9 +05/20/2018,Sports_celeb,@DwyaneWade,"RT @RealBillRussell: Thank you everyone for the kind thoughts, yes I was taken to the hospital last night & as my wife likes to remind me I…" +05/19/2018,Sports_celeb,@DwyaneWade,RT @LakePoint_Hoops: It was great to have @DwyaneWade and @itsgabrielleu in the house at @LakePointIndoor last weekend for the @NikeEYB! Wa… +05/19/2018,Sports_celeb,@DwyaneWade,RT @CBN_BBall: The Fathers and men of Professional Basketball Players Conference had a great time and Wendell P. William. @Quietstorm_32 @… +05/18/2018,Sports_celeb,@DwyaneWade,RT @sofiewhitney: My heart is with everyone at Santa Fe High School. No student should have to fear for their life. No student should have… +05/18/2018,Sports_celeb,@DwyaneWade,"RT @cameron_kasky: At least 8 students have been shot and killed at Santa Fe High School. + +Prepare to watch the NRA boast about getting hig…" +05/17/2018,Sports_celeb,@DwyaneWade,You want it for yourself but you want it for your kids even more. This one’s for Z. Wade. https://t.co/PVFIZDGvWO https://t.co/ZbwwYXz86Y +05/17/2018,Sports_celeb,@DwyaneWade,He better have averaged 43 points and that’s with sitting out the entire 4th 😂😂😂 https://t.co/sHMYaY3j06 +05/16/2018,Sports_celeb,@DwyaneWade,Wait...So we gotta wait until Saturday for game 3??? 🤷🏾‍♂️🙅🏾‍♂️. Come on @NBA +05/16/2018,Sports_celeb,@DwyaneWade,🙅🏾‍♂️ https://t.co/XZ9UBLmKLd +05/16/2018,Sports_celeb,@DwyaneWade,I like what you did there https://t.co/PwBhmXCWhv +05/16/2018,Sports_celeb,@DwyaneWade,Co-ROY https://t.co/tQX6aw1lgI +05/16/2018,Sports_celeb,@DwyaneWade,🔥 🔥 🔥 https://t.co/lCJ1p4qvPu +05/16/2018,Sports_celeb,@DwyaneWade,My prediction is I’m home on the couch watching and wishing i was playing. Like every other NBA player that’s not i… https://t.co/g9yCL7nghV +05/16/2018,Sports_celeb,@DwyaneWade,Yea i know. That’s the lil bro https://t.co/RCUOqv2o3c +05/16/2018,Sports_celeb,@DwyaneWade,Bron is gonna have to go Bron https://t.co/k651R8BdBl +05/16/2018,Sports_celeb,@DwyaneWade,It’s a cool thing to sit back and watch the Lil bro Scary Terry grow!!! +05/16/2018,Sports_celeb,@DwyaneWade,Kind of the only threes i do shoot https://t.co/pYBxB9O34s +05/16/2018,Sports_celeb,@DwyaneWade,Alil rusty. It’s been a while🤷🏾‍♂️. I had so much fun shooting these spots for Star Wars tho. https://t.co/DBMOaYyrCC +05/16/2018,Sports_celeb,@DwyaneWade,✊🏾 https://t.co/WmktUn6zAg +05/16/2018,Sports_celeb,@DwyaneWade,RT @Channing_Frye: It might be a long night for whoever is Guarding Lebron just FYI! +05/16/2018,Sports_celeb,@DwyaneWade,😂😂😡 https://t.co/gDgwCNSlwx +05/16/2018,Sports_celeb,@DwyaneWade,This! 🙌🏾 https://t.co/TcrMrrHoq1 +05/15/2018,Sports_celeb,@DwyaneWade,That’s his IG. So not really🤷🏾‍♂️ https://t.co/IPETjQzBW0 +05/15/2018,Sports_celeb,@DwyaneWade,Love! https://t.co/R7wb2NWHiW +05/15/2018,Sports_celeb,@DwyaneWade,A lot of work to do over these next few years but proud parents we are of @zmane2 https://t.co/f9ts1wx8yy +05/15/2018,Sports_celeb,@DwyaneWade,👏🏾👏🏾 Yea my brother @TajGibson22 got me good. But you left out the most important fact. Heat won the series 4-1🤷🏾‍♂️ https://t.co/A1eNXOUIGN +05/15/2018,Sports_celeb,@DwyaneWade,"RT @ESPNNBA: Should Dwyane Wade retire? + +Chewie has some … thoughts? #HanSolo https://t.co/m9sMjUUavh" +05/15/2018,Sports_celeb,@DwyaneWade,Yes. Pls! https://t.co/ZxbJh2sBgr +05/15/2018,Sports_celeb,@DwyaneWade,Thanks for finding it for me my brother. Love https://t.co/GadCW10xKu +05/15/2018,Sports_celeb,@DwyaneWade,Fam you got a connect i don’t know about. That jersey is 🔥 🔥 🔥 https://t.co/s7nGJndJPu +05/15/2018,Sports_celeb,@DwyaneWade,😂😂😂 good one. https://t.co/jSDIfVuxyF +05/15/2018,Sports_celeb,@DwyaneWade,Tell em why you mad son. Obviously not you. Thanks for the extra publicity tho https://t.co/HwturDWnIB +05/14/2018,Sports_celeb,@DwyaneWade,WOY = Wookie of the Year #ad https://t.co/BytxG0Pihs +05/14/2018,Sports_celeb,@DwyaneWade,WOY = Wookie of the Year #ad https://t.co/0qE7KReGZN +05/14/2018,Sports_celeb,@DwyaneWade,RT @overtime: Zaire Wade making his OWN NAME 🏆 @DwyaneWade @reale1t1 https://t.co/LjlmZzbAEx +05/14/2018,Sports_celeb,@DwyaneWade,You seen the way he got his but kicked. No no no https://t.co/eTcFiKI42u +05/14/2018,Sports_celeb,@DwyaneWade,I haven’t seen it. Where the pics at? https://t.co/uba0s3gUxo +05/14/2018,Sports_celeb,@DwyaneWade,RT @Amy_ESPNPR: .@DwyaneWade has a new co-pilot in this @ESPN commercial for Solo: A Star Wars Story. @StarWars @NBA #NBAPlayoffs https://t… +05/14/2018,Sports_celeb,@DwyaneWade,"RT @carmeloanthony: Happy Mother’s Day to the strongest and bravest woman I know!!! Thanks for being our rock @lala +#STAYME7O https://t.co…" +05/14/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: Stylin & profilin in @nyandcompany with my girl @xoxofaithhaslem #HeatNation https://t.co/kDU9SoIZYY +05/14/2018,Sports_celeb,@DwyaneWade,Don’t mess with me. I got friends! https://t.co/PlMjJX4nfk +05/14/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: #BreakingInMovie against all odds (tiny budget & far fewer screens) still made almost 3x our budget opening weekend! htt… +05/13/2018,Sports_celeb,@DwyaneWade,"RT @TomCrean: If your practices or workouts are lacking energy or have boredom kicking in, that is on us as coaches. Not the players. We ha…" +05/13/2018,Sports_celeb,@DwyaneWade,Yes you did. It was a pretty cool experience! https://t.co/51ovIbCNV9 +05/13/2018,Sports_celeb,@DwyaneWade,I’m sure it’s plenty but thank you for that https://t.co/x1HzFzmOcW +05/13/2018,Sports_celeb,@DwyaneWade,I agree https://t.co/dejKNRJftp +05/13/2018,Sports_celeb,@DwyaneWade,"RT @lisjoseph: She made me a mommy first 💗. She’s so attached to me, looks to me for approval, guidance, love and to be present. glad I was…" +05/13/2018,Sports_celeb,@DwyaneWade,Thank y’all!!!! Enjoy!!! https://t.co/UA6xf76adg +05/13/2018,Sports_celeb,@DwyaneWade,🙏🏾 https://t.co/GgjMZXAYv4 +05/13/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: My friend @LewisHamilton is crushing it!!! Only black man in F1, if you aren't familiar here in the states... hes pretty…" +05/13/2018,Sports_celeb,@DwyaneWade,"Happy Mother's Day Miami!!! 🥂 💛🧡💚💜💙 +As a special gift to Miami we… https://t.co/IhaRoRwfvu" +05/13/2018,Sports_celeb,@DwyaneWade,I’ll be looking for my case in the mail from you kinda sir. https://t.co/OuhOcnGcYD +05/13/2018,Sports_celeb,@DwyaneWade,"RT @natasha_sen: ✨The women that made us 💫 And now the both of us have 2 moms and they are besties. 👯‍♂️ +#HappyMothersDay https://t.co/3uk3…" +05/13/2018,Sports_celeb,@DwyaneWade,RT @essencesays: Berry Lips + or - 20 years 😊 #iamjustbeginning https://t.co/eeBvq887L9 +05/12/2018,Sports_celeb,@DwyaneWade,The sweatsuit 🔥 tho https://t.co/BcQWlQ3Vdw +05/12/2018,Sports_celeb,@DwyaneWade,Nothing but Class! https://t.co/fTR70pXsGb +05/12/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: Cue the tears, THANK YOU @KevinHart4real!! This is huge! #BreakingInMovie https://t.co/VOmUNCMCyT" +05/12/2018,Sports_celeb,@DwyaneWade,Now that’s an announcement🙌🏾 https://t.co/kwpdpK73Cp +05/12/2018,Sports_celeb,@DwyaneWade,👀 Dime! https://t.co/ZHSBv9Rwqf +05/12/2018,Sports_celeb,@DwyaneWade,Love it! https://t.co/z1I5xKVuw6 +05/12/2018,Sports_celeb,@DwyaneWade,RT @SLAMonline: This CP3 pickup game in 2011 was too 🔥🔥 https://t.co/MFxwoqqaeg +05/12/2018,Sports_celeb,@DwyaneWade,RT @itsgabrielleu: Pay it forward 🤗 #BreakingInMovie fun with @DwyaneWade in Georgia during a break between AAU games https://t.co/jn39jsk4… +05/12/2018,Sports_celeb,@DwyaneWade,"A Movie Star, A Young Bull, A guy will a curly bush that looks like… https://t.co/kmut6lbmeR" +05/12/2018,Sports_celeb,@DwyaneWade,RT @ThisIsUD: I'm feeling @MiamiHerald's list of Miami/South Florida’s Top 25 sports figures. #og https://t.co/zb4du1WDqc https://t.co/t3aU… +05/12/2018,Sports_celeb,@DwyaneWade,Happy birthday bald guy! https://t.co/1xhAnz2I7I +05/12/2018,Sports_celeb,@DwyaneWade,3️⃣ https://t.co/e4D8xJ5vUk +05/12/2018,Sports_celeb,@DwyaneWade,Tru!!!! https://t.co/isuAOfRc78 +05/12/2018,Sports_celeb,@DwyaneWade,RT @Goran_Dragic: The best captain ever !!! @ThisIsUD #Mr305 #OG https://t.co/MFSIncjnAk +05/12/2018,Sports_celeb,@DwyaneWade,Congrts Lloyd. ATL y’all got it right https://t.co/9cXGuxVCXP +05/11/2018,Sports_celeb,@DwyaneWade,Layups! https://t.co/4QKaFxCEaP +05/11/2018,Sports_celeb,@DwyaneWade,The future https://t.co/3TsKo3okzo +05/11/2018,Sports_celeb,@DwyaneWade,You’re an impressive WOMAN!!! Everyone go check out my wife… https://t.co/1W16dT3iCD +05/11/2018,Sports_celeb,@DwyaneWade,🤔🤷🏾‍♂️ https://t.co/Tr757oXpqx +05/11/2018,Sports_celeb,@DwyaneWade,Y’all will not be disappointed!!! https://t.co/c7NBbrMe3E +05/11/2018,Sports_celeb,@DwyaneWade,"RT @itsgabrielleu: Man I'm in tears on this plane seeing all the support for #BreakingInMovie I am grateful, humbled and so happy! Who knew…" +05/11/2018,Sports_celeb,@DwyaneWade,🙌🏾🙌🏾🙌🏾 https://t.co/qn7wxzF3mr +05/11/2018,Sports_celeb,@DwyaneWade,🙏🏾🙏🏾🙏🏾 https://t.co/8hPQaWDMc1 +05/11/2018,Sports_celeb,@DwyaneWade,Much Love✊🏾 https://t.co/nIf8omtEZW +05/11/2018,Sports_celeb,@DwyaneWade,RT @jrnba: #JrNBAWorldChampionship Global Ambassador @DwyaneWade on how youth basketball brings out key values of the game & life! #ThisIsW… +05/11/2018,Sports_celeb,@DwyaneWade,Talk that talk! https://t.co/RmlBV3ORiB +05/11/2018,Sports_celeb,@DwyaneWade,RT @D1Circuit: 2020 American Heritage (FL) G Zaire Wade will run with E1T1 United (FL) for the remainder of the 2018 NIKE EYBL @reale1t1 @D… +05/10/2018,Sports_celeb,@DwyaneWade,😂 🗣 https://t.co/67Oxgw0Z08 +05/09/2018,Sports_celeb,@DwyaneWade,I can’t wait to watch @spidadmitchell growth from year to year. What a season my brother! +05/09/2018,Sports_celeb,@DwyaneWade,Oh yeah....we stylish!! And now you can shop our looks. Check out some pieces from our personal collections on sale… https://t.co/tstHvHIn81 +05/08/2018,Sports_celeb,@DwyaneWade,Three by Wade Rose’ 🌹 coming very soon!!!! It’s gonna be a good… https://t.co/ndpyM8qVPp +05/08/2018,Sports_celeb,@DwyaneWade,Don’t mind if i do https://t.co/5fzhkDNzC5 +05/08/2018,Sports_celeb,@DwyaneWade,That’s my Dawg! That’s my dawg!( Chris tucker voice) https://t.co/ypLuFJubto +05/08/2018,Sports_celeb,@DwyaneWade,The one person in life i wish i had a chance to have a conversation… https://t.co/IOpHprfR6k +05/08/2018,Sports_celeb,@DwyaneWade,"RT @paulocoelho: Haters don't really hate you. +They hate themselves, because you're a reflection of what they wish to be" +05/08/2018,Sports_celeb,@DwyaneWade,@itsgabrielleu Dayyyuuummmmm!!!! https://t.co/TspGt9IZCE +05/07/2018,Sports_celeb,@DwyaneWade,@DWRIGHTWAY1 is that you👀 https://t.co/1yCMlgBC9n +05/07/2018,Sports_celeb,@DwyaneWade,I agree! https://t.co/GiRRBkC4uC +05/07/2018,Sports_celeb,@DwyaneWade,https://t.co/hJlfHHeRNn https://t.co/Pz2D5DF92R +05/07/2018,Sports_celeb,@DwyaneWade,🙌🏾 https://t.co/aY2QY4wU2H +05/07/2018,Sports_celeb,@DwyaneWade,Ok what a night it was! https://t.co/L5erISgozi +05/06/2018,Sports_celeb,@DwyaneWade,"I see you looking..with your looking a$$... @ Miami, Florida https://t.co/ge0YOqrRjF" +07/01/2018,Sports_celeb,@BizNasty2point0,@sherm_3 No that’s me advertising a podcast that pays me based on the number of listeners you dummy. +07/01/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: ""This is where I want to be. I signed with the Coyotes because I believe in our team, I believe in our fans and I belie…" +06/30/2018,Sports_celeb,@BizNasty2point0,RT @BizNasty2point0: Huge thanks to Keith Yandle and @KevinPHayes12 for hopping on @spittinchiclets last night. What a fun episode with the… +06/30/2018,Sports_celeb,@BizNasty2point0,@Heavy__C @spittinchiclets @BBoeser16 @ryanwhitney6 Advanced status. Guys a stud. Great kid too. Humble and funny. Canucks got a good one. +06/29/2018,Sports_celeb,@BizNasty2point0,@TENcentHands @spittinchiclets @91Tavares Hahahaha. Accurate. +06/29/2018,Sports_celeb,@BizNasty2point0,Huge thanks to Keith Yandle and @KevinPHayes12 for hopping on @spittinchiclets last night. What a fun episode with… https://t.co/4AfQvn9Lht +06/29/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 96 - Featuring @KevinPHayes12 + Keith Yandle. + +The boys talk Tavares, free agency, man rockets, and Biz joined…" +06/29/2018,Sports_celeb,@BizNasty2point0,Tomorrow morning we’re dropping a double guest @spittinchiclets with a couple of Boston boys. @KevinPHayes12 and Ke… https://t.co/1SqVcPuSAh +06/28/2018,Sports_celeb,@BizNasty2point0,@Fallstothewall @Skillsy75 @spittinchiclets @cmace30 Same with @cmace30. Maybe do a double guest episode. +06/28/2018,Sports_celeb,@BizNasty2point0,@Fallstothewall @Skillsy75 @spittinchiclets @cmace30 Skillsy can come on whenever he wants. Guys a legend and has stories for days. +06/28/2018,Sports_celeb,@BizNasty2point0,I tried to keep this a secret as long as possible. The reason @spittinchiclets has gone down to 1 episode a week la… https://t.co/xNIDdzjyaD +06/27/2018,Sports_celeb,@BizNasty2point0,@DA2four The Local. Ask for Zinger. +06/27/2018,Sports_celeb,@BizNasty2point0,@Tbukey @RearAdBsBlog @ryanwhitney6 I’ll make you a deal. I’ll leave the podcast but you have to tweet out all your… https://t.co/vgRHIW3ud4 +06/27/2018,Sports_celeb,@BizNasty2point0,@ssullivan_88 @cmcdavid97 @spittinchiclets @ryanwhitney6 We’d consider having him on. +06/27/2018,Sports_celeb,@BizNasty2point0,@cmcdavid97 Connor making a strong bid early for #BoyfriendOfTheYear. Long way to go but you can tell he’s focused. +06/26/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: Willie O'Ree Is Finally Heading To The Hockey Hall Of Fame https://t.co/fDuPw8zSAK https://t.co/Qk5MJyWpML +06/26/2018,Sports_celeb,@BizNasty2point0,@joe_pieniazek @spittinchiclets @MikeGrinnell_ 1 a week till mid August. Thanks for checking in. +06/23/2018,Sports_celeb,@BizNasty2point0,Welcome to the @ArizonaCoyotes organization Barrett. https://t.co/BX0yXAyHVY +06/23/2018,Sports_celeb,@BizNasty2point0,"RT @FOXSPORTSAZ: .@BizNasty2point0 likes the #Yotes first-round draft pick, the team's recent trade and the new third jersey, he tells @Jod…" +06/22/2018,Sports_celeb,@BizNasty2point0,The greatest goal that’s never been talked about was discussed on the new episode of @spittinchiclets with the lege… https://t.co/mPMPDNvfmx +06/22/2018,Sports_celeb,@BizNasty2point0,RT @freedarko: Today was totally worth it https://t.co/0hCMttTvvW +06/21/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: We have hockey dad & 500 goal scorer Keith Tkachuk on the podcast tomorrow live from the draft as he prepares his son… +06/21/2018,Sports_celeb,@BizNasty2point0,Amazing week at the #NHLAwards filming with @Sportsnet. We filmed a ton of fun content with a lot of players. We ev… https://t.co/TAzMsdjMiP +06/21/2018,Sports_celeb,@BizNasty2point0,Got the late night text from @JonathanQuick32 begging me to interview him on the red carpet at the #NHLAwards. Such… https://t.co/FL26JyTjb6 +06/20/2018,Sports_celeb,@BizNasty2point0,"RT @Sportsnet: Can we expect @Mackinnon9 and @BizNasty2point0 to headline in Las Vegas anytime soon? + +@caroline_szwed joined them @TheAbsin…" +06/20/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: 📹 @BizNasty2point0 catches up with Calder nominee @ClaytonKeller37 in Las Vegas to discuss his new wheels, his summer t…" +06/19/2018,Sports_celeb,@BizNasty2point0,@dradziszewski27 @ryanwhitney6 @RearAdBsBlog @MikeGrinnell_ @spittinchiclets We’re really not that big on statistic… https://t.co/JmHyr9uZq3 +06/19/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 94: Featuring King Clancy Memorial Trophy Nominee and @mnwild forward @Jason_Zucker16 + +https://t.co/LQzDCibdC…" +06/19/2018,Sports_celeb,@BizNasty2point0,"RT @Sportsnet: Bet you never thought you'd see @BizNasty2point0 'turtle' in a hockey fight. + +That, plus @strombone1 stops by to make some s…" +06/19/2018,Sports_celeb,@BizNasty2point0,Just interviewed @terryfator in Las Vegas for @Sportsnet. What an awesome guy and he was even nice enough to record… https://t.co/COUEV9vMaT +06/18/2018,Sports_celeb,@BizNasty2point0,RT @caroline_szwed: hey... hang out with us on @Sportsnet social media channels while we’re in Vegas! DO IT. https://t.co/tEFBlOKDBW +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Todays guest ⬇️⬇️ + +https://t.co/ONu9AU3OX1 https://t.co/ZBkYMmvCGD" +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here featuring Nello Ferrara + the guys address the shit storm going on in Ottawa right now. + +Listen/Su…" +06/15/2018,Sports_celeb,@BizNasty2point0,"RT @biznastydoesbc: We've had a lot of people asking, so we put together a Spotify playlist of all the music that was originally in the sho…" +06/14/2018,Sports_celeb,@BizNasty2point0,@YoungPageviews @RearAdBsBlog I’ve heard rumblings. Not confirmed. +06/14/2018,Sports_celeb,@BizNasty2point0,@RearAdBsBlog I’m just the radio guy. I have no clue. +06/14/2018,Sports_celeb,@BizNasty2point0,@Oceanstormprint @spittinchiclets @Isuckatpicking It’s from the movie Step Brothers. +06/14/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: In honor of todays 20% off sale, we dropped some new shirts. + +Thank us later. + +https://t.co/TDJ0VEtSeu https://t.co/…" +06/14/2018,Sports_celeb,@BizNasty2point0,"@1496Gukes @TheAHL @TorontoMarlies @TexasStars Regular season MVP, Playoff MVP, Regular season champs, eastern conf… https://t.co/mcKTg2nf6Y" +06/13/2018,Sports_celeb,@BizNasty2point0,Time flies. Also reminder to Hockey fans game 7 of @TheAHL Calder Cup final takes place tomorrow night in Toronto.… https://t.co/LvapXND5zO +06/12/2018,Sports_celeb,@BizNasty2point0,@AnaheimDucks @kbieksa3 Congrats guys. Little jealous but it’ll force us to work harder. +06/12/2018,Sports_celeb,@BizNasty2point0,@kbieksa3 It’s like a superman punch right to my junk. Congrats though. Well deserved. +06/12/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Episode 92 featuring Stanley Cup Champion @tom_wilso, @PFTCommenter and @BarstoolNate is live. + +Listen/Subscribe—> ht…" +06/12/2018,Sports_celeb,@BizNasty2point0,RT @mikescollins: When you're almost done picking teams in gym class. https://t.co/HjblABuKsm +06/12/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: One of these guys is a guest on the podcast this week and it isn’t Tiesto... #ManRocket https://t.co/IV3Cpxz3h6 +06/11/2018,Sports_celeb,@BizNasty2point0,When other guys are trying to slide into your girls DM’s but you’re both happy and in a good place in the relations… https://t.co/MIgA2jAVoH +06/09/2018,Sports_celeb,@BizNasty2point0,@NHL @kbieksa3. +06/09/2018,Sports_celeb,@BizNasty2point0,Had a blast chatting with an awesome guy yesterday on @spittinchiclets. Big thanks to @SSouray for coming on.… https://t.co/XiAFrGVO6w +06/08/2018,Sports_celeb,@BizNasty2point0,Unreal behind the scenes stuff. Great job Scott. Thanks to you and the crew. https://t.co/SurSuyfIDM +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @KathrynTappen: Washington @Capitals forward Jay Beagle is the first player in hockey history to win the Kelly Cup (ECHL), Calder Cup (A…" +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @CillizzaCNN: The suicides of Anthony Bourdain and Kate Spade this week are a reminder: No matter how successful, wealthy or seemingly h…" +06/08/2018,Sports_celeb,@BizNasty2point0,@BFG93 @ryanwhitney6 @spittinchiclets I know I started to say it and then I wanted to keep it consistent so kept sa… https://t.co/9KPUF7emqh +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @wilkinebrutus: Anthony Bourdain on humanity: +""Meals make the society, hold the fabric together in lots of ways that were charming and i…" +06/08/2018,Sports_celeb,@BizNasty2point0,Anthony Bourdain was special. What a sad day. https://t.co/pkFylBgUvU +06/08/2018,Sports_celeb,@BizNasty2point0,And when I say “guys” I mean everyone. Guys and girls. Just to clarify. +06/08/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @Capitals on a magical run. So many amazing story lines to go along with it as well. Can’t f… https://t.co/WtQnsKQoAK +06/08/2018,Sports_celeb,@BizNasty2point0,What an unbelievable NHL season. Hockey is in a wonderful place. Thanks to all the media who covered the Stanley Cu… https://t.co/61Qzluuq0O +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @bruce_arthur: TJ Oshie said of his dad, who is in the crowd, ""He has Alzheimer's, and he forgets a lot of things, but you bet your ass…" +06/08/2018,Sports_celeb,@BizNasty2point0,"RT @NHL: 1,124 games +668 goals +571 assists +1,239 points +7 Rocket Richard Trophies + +One #StanleyCup https://t.co/bINP2Jcb05" +06/08/2018,Sports_celeb,@BizNasty2point0,@walsha Sign him. +06/07/2018,Sports_celeb,@BizNasty2point0,"RT @AARM_org: We are so grateful to the @ArizonaCoyotes's @mattycoyotestv for helping us make this IMPORTANT SHELTER ANNOUNCEMENT. + +**SPON…" +06/07/2018,Sports_celeb,@BizNasty2point0,Love it @mattycoyotestv. Great work by everyone involved. https://t.co/kqN0hTKBpN +06/06/2018,Sports_celeb,@BizNasty2point0,@commie22 Hire an intern to do your job. Or most of it. +06/05/2018,Sports_celeb,@BizNasty2point0,@KirkwoodAlly @tstone_44 @ryanwhitney6 @MikeGrinnell_ I mentioned it on the podcast. Wasn’t sure how Vegas did afte… https://t.co/4DJBQyxHpp +06/05/2018,Sports_celeb,@BizNasty2point0,@lukejnickels @tstone_44 @ryanwhitney6 @MikeGrinnell_ Well I will if you send me the receipt. I wouldn’t bet the fa… https://t.co/Oe8zAs4oEq +06/05/2018,Sports_celeb,@BizNasty2point0,@SkylerBusa @ArizonaCoyotes @BachelorABC @ariejr Thanks pal. +06/05/2018,Sports_celeb,@BizNasty2point0,@ahronCo21 @ArizonaCoyotes @BachelorABC You were the cherry on top Ahron. Kind of like Will Ferrell in Wedding Crashers. Bravo. +06/05/2018,Sports_celeb,@BizNasty2point0,@lukejnickels @tstone_44 @ryanwhitney6 @MikeGrinnell_ Put a bunch of money on it and send me the receipt then. +06/05/2018,Sports_celeb,@BizNasty2point0,Episode 90 of @spittinchiclets is out now. Big thanks to @commie22 for coming on. This one gets heated. https://t.co/br29A8BQKL +06/05/2018,Sports_celeb,@BizNasty2point0,@tstone_44 @ryanwhitney6 @MikeGrinnell_ Thanks. Was wondering that. Appreciate the message. +06/04/2018,Sports_celeb,@BizNasty2point0,"RT @ArizonaCoyotes: Did you love our recaps of The @BachelorABC this season as much as @ariejr did? 🌹 + +We're nominated for the Top Team Vid…" +06/04/2018,Sports_celeb,@BizNasty2point0,Nice of you to show up for that bike ride @Jackeichel15. https://t.co/wQBIWOObEn +06/04/2018,Sports_celeb,@BizNasty2point0,The 1st annual #NHLFanChoice Awards are here. Don’t be shy to vote for the @ArizonaCoyotes on “Top Team Video” for… https://t.co/X6tGAKX6nA +06/04/2018,Sports_celeb,@BizNasty2point0,"RT @NHL: Introducing the NHL Fan Choice Awards! + +Vote for your favorite social moments of the season in categories like Best Chirper, Best…" +06/04/2018,Sports_celeb,@BizNasty2point0,@LGRed @JulieBrowman1 @tysonbarrie @Altitude950 @JayAndDan Thanks Lauren. Tyson was awesome. Jay and Dan stole the show as usual. +06/04/2018,Sports_celeb,@BizNasty2point0,@MikeGrinnell_ @ryanwhitney6 I would have picked up your appetizer. Just saying. +06/03/2018,Sports_celeb,@BizNasty2point0,RT @hkygivesblood: One of the greats! Shane Doan has been involved and donated blood as Captain for the @ArizonaCoyotes. Follow his lead an… +06/03/2018,Sports_celeb,@BizNasty2point0,@FlyingZee10 @myeagleenergy Pasha doesn’t work for @myeagleenergy. Pasha’s my right hand man and helped make my sil… https://t.co/eIHdsJvOAz +06/03/2018,Sports_celeb,@BizNasty2point0,@HockeyRockBeer Hahahaha +06/03/2018,Sports_celeb,@BizNasty2point0,@BombulieTrib Someone sent me this the other day. The good old days. https://t.co/ISHsVqEgoK +06/03/2018,Sports_celeb,@BizNasty2point0,@kerdy19 @processboy Same boat. I’m softer than baby shit when it comes to the father/daughter stuff. +06/03/2018,Sports_celeb,@BizNasty2point0,@justinteleven You do you bud. I hear ya. +06/03/2018,Sports_celeb,@BizNasty2point0,@justinteleven Haha k +06/03/2018,Sports_celeb,@BizNasty2point0,I never knew that. Thanks for sharing. Like it even more now. https://t.co/cDsnSumi78 +06/03/2018,Sports_celeb,@BizNasty2point0,"RT @SiriusXMNHL: Washington Capitalizes on a 2-on-1! Kuznetsov's 11th of the post-season + +Cue the celebration! #StanleyCup + +https://t.co/H…" +06/03/2018,Sports_celeb,@BizNasty2point0,I’m usually not a big fan of scripted celebrations but the Kuznetsov one is silky. Being that good at hockey would be a blast. +06/03/2018,Sports_celeb,@BizNasty2point0,@simmonssteve High risk high reward. Riverboat gambler. +06/02/2018,Sports_celeb,@BizNasty2point0,RT @seandoconnor: Please help. We were out of town for our 10 year anniversary and our two dogs were taken from our friends house. Girl Yor… +06/01/2018,Sports_celeb,@BizNasty2point0,@Andy_Miele @spittinchiclets @Vincent_LoVerde It was all Vinny. Scumbag move by him. Anytime you’d like to come tra… https://t.co/NnE9mz7F7M +06/01/2018,Sports_celeb,@BizNasty2point0,I was nice enough to invite 2 of my former teammates I won a Calder Cup for a few years ago in Manchester (you’re w… https://t.co/uO9fhKxUdn +06/01/2018,Sports_celeb,@BizNasty2point0,RT @spittinchiclets: New episode is here featuring current Calder Cup finalists and former teammates of @BizNasty2point0.. @Vincent_LoVerd… +06/01/2018,Sports_celeb,@BizNasty2point0,RT @JimmyTraina: Instant replay of JR Smith and LeBron in the closing seconds of regulation. https://t.co/8qYCv7mBQf +06/01/2018,Sports_celeb,@BizNasty2point0,Geno’s got Russian guys dressed as Crosby playing roller hockey for a kids birthday party on his Instagram story. https://t.co/7soJVQmZV3 +06/01/2018,Sports_celeb,@BizNasty2point0,Big @spittinchiclets epi coming tomorrow. Talking game 2 of Stanley Cup finals. We also have 2 of my former teammat… https://t.co/ON7Gm5uvjb +05/31/2018,Sports_celeb,@BizNasty2point0,@jack_johnsrud @Chiggs7 In some cases because of contracts and salary cap issues. In other situations they had more… https://t.co/g2nrdAeIFR +05/31/2018,Sports_celeb,@BizNasty2point0,@NickSThomas313 @spittinchiclets @RearAdBsBlog @ryanwhitney6 No. Fleury won game 1. +05/31/2018,Sports_celeb,@BizNasty2point0,RT @JayAndDan: Former NHLer and host of “BizNasty Does BC” Paul @BizNasty2point0 Bissonnette joins the #JayAndDan Podcast presented by @coo… +05/31/2018,Sports_celeb,@BizNasty2point0,@acroy59 Hahahaha. Was it random? +05/30/2018,Sports_celeb,@BizNasty2point0,Great chatting with @craigsmorgan about jumping into a new career after playing hockey my whole life. https://t.co/4d6yHpBNPe +05/30/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat https://t.co/ESAJME4oZ9 +05/30/2018,Sports_celeb,@BizNasty2point0,@KFCBarstool Doesn’t belong at headquarters. Surprised you even let him in the joint. 7’s max. No man rockets allowed. +05/30/2018,Sports_celeb,@BizNasty2point0,@ShawnMcKenzieSN Hahaha same. I’ve never studied this hard. +05/30/2018,Sports_celeb,@BizNasty2point0,@katecoyne Why. What was the beef? +05/30/2018,Sports_celeb,@BizNasty2point0,@dradziszewski27 Um kind of like how Pusha T just did... he just dropped an album as well. They all kick up dust around album time. +05/30/2018,Sports_celeb,@BizNasty2point0,Has a country artist ever wrote a diss track on another country artist? +05/30/2018,Sports_celeb,@BizNasty2point0,These rap feuds are my guilty pleasure. That Pusha T diss was an absolute punch to the nut sack on Drake. Can’t wait for the reply. +05/29/2018,Sports_celeb,@BizNasty2point0,Great player and teammate. Congrats on an awesome career Radim. #CzechMafia https://t.co/pP2qwp6bxA +05/29/2018,Sports_celeb,@BizNasty2point0,@mikebrandon90 @lukegazdic No it’s up. Should be working. +05/29/2018,Sports_celeb,@BizNasty2point0,Great having @lukegazdic on last night. Subscribe and listen to episode 88 to find out how Luke is better than Mari… https://t.co/lbtIeQh5VT +05/29/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here featuring @lukegazdic & a Game 1 recap. + +Listen—> https://t.co/t0xYV2FGK1 https://t.co/KKYKjywOVg" +05/29/2018,Sports_celeb,@BizNasty2point0,@ArchadiaNJ Bud you protected your account faster than I could blink. You want to be a wrestler? You get a little p… https://t.co/LruNIHjXcz +05/29/2018,Sports_celeb,@BizNasty2point0,@bobbybender3 @biznastydoesbc Glad you enjoyed it man. Appreciate the message. +05/29/2018,Sports_celeb,@BizNasty2point0,@realPOSULLIVAN I figured if I used my actual name no one would notice. Just trying to survive the summer man. I miss the NHL paycheques. +05/28/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: Listen to Marc-Andre Fleury aka Jean Girard on the latest episode of Spittin’ Chiclets + +https://t.co/KC0Bq5sslq https:…" +05/28/2018,Sports_celeb,@BizNasty2point0,RT @pitbull: Today we remember those who made the ultimate sacrifice for America #MemorialDay https://t.co/yrnGIdB2St +05/28/2018,Sports_celeb,@BizNasty2point0,@hashcannon666 @spittinchiclets @ryanwhitney6 @MikeGrinnell_ @RearAdBsBlog Thanks bud. Appreciate the message. +05/28/2018,Sports_celeb,@BizNasty2point0,@schaefpuff @WarriorHockey Glad you liked it man. +05/28/2018,Sports_celeb,@BizNasty2point0,@fridge29 Thanks pal. Appreciate it. +05/27/2018,Sports_celeb,@BizNasty2point0,@iowaendo @barstoolsports 😂 +05/27/2018,Sports_celeb,@BizNasty2point0,@Cdn_Crippler @WarriorHockey They’re up. On that website. +05/27/2018,Sports_celeb,@BizNasty2point0,@ander764 @WarriorHockey It’s not for everyone. Thanks for checking it out though. +05/27/2018,Sports_celeb,@BizNasty2point0,@GuineyPete All 5 episodes are out. You can watch them all. +05/27/2018,Sports_celeb,@BizNasty2point0,@svedberg_victor @WarriorHockey Shit. Hope all of your followers don’t see this review. +05/27/2018,Sports_celeb,@BizNasty2point0,@mirtle @WarriorHockey Muskoka. +05/27/2018,Sports_celeb,@BizNasty2point0,@daviesbrettys @WarriorHockey 😬 +05/27/2018,Sports_celeb,@BizNasty2point0,@belvjoe @WarriorHockey They’re trying to restock it. I’ll keep you posted. +05/27/2018,Sports_celeb,@BizNasty2point0,@mirtle @WarriorHockey Shane Doan to the rescue. +05/27/2018,Sports_celeb,@BizNasty2point0,Hey everyone. Not sure if you heard but I did a 5 part doc series sponsored by @WarriorHockey about British Columbi… https://t.co/Y8kjVMD4pm +05/26/2018,Sports_celeb,@BizNasty2point0,@JimmyEdwardsjr1 @GoldenKnights @ryanwhitney6 @spittinchiclets If you’re happy we’re happy. Can’t forget… https://t.co/VQjKsVjrzE +05/26/2018,Sports_celeb,@BizNasty2point0,Uhhh. Ya think. https://t.co/dPTGLpgEDr +05/26/2018,Sports_celeb,@BizNasty2point0,If you eat a bag of popcorn 1 kernel at a time till it’s finished you are a psychopath. +05/26/2018,Sports_celeb,@BizNasty2point0,@MitchBerg47 Thanks pal. 👊🏻 +05/26/2018,Sports_celeb,@BizNasty2point0,@Rsloan33 4 iron. Needed slight loft and club length. +05/25/2018,Sports_celeb,@BizNasty2point0,@Skillsy75 Care to discuss it on @spittinchiclets? +05/25/2018,Sports_celeb,@BizNasty2point0,@pressXtocelly22 @LaMichaelMango @myeagleenergy Thanks fella +05/25/2018,Sports_celeb,@BizNasty2point0,"RT @spittinchiclets: New episode is here with a loaded lineup to take you into the weekend. + +GUESTS🎙🎙: + +-Marc-Andre Fleury + +-Michael Latta…" +05/25/2018,Sports_celeb,@BizNasty2point0,@phyllisdiller69 @LaMichaelMango @myeagleenergy Bud you’ve been living under a rock if you don’t know promo code BI… https://t.co/LiOyepiw2g +05/25/2018,Sports_celeb,@BizNasty2point0,@NBowinsHockey @spittinchiclets @Latta17 @Cmeys18 Throws both ways. Loves his beers. All around great guy. +05/25/2018,Sports_celeb,@BizNasty2point0,@LaMichaelMango @myeagleenergy A little promo code never hurt anyone. +05/25/2018,Sports_celeb,@BizNasty2point0,@DrewGebs @ClaytonKeller37 @ArizonaCoyotes @Johnwaynee90 If I’m around for sure +05/25/2018,Sports_celeb,@BizNasty2point0,@rorymarshall29 Thanks Rory. Couldn’t have done it without @myeagleenergy. +05/25/2018,Sports_celeb,@BizNasty2point0,@ajboyer24 @Pappy_Hour @spittinchiclets If you’re happy I’m happy. +05/25/2018,Sports_celeb,@BizNasty2point0,@Pappy_Hour @spittinchiclets @Cmeys18’s put the cherry on top. @RearAdBsBlog @MikeGrinnell_ @ryanwhitney6 and mysel… https://t.co/LASJFl14jx +05/25/2018,Sports_celeb,@BizNasty2point0,This will never get old. https://t.co/LzlkkKgM9P +05/25/2018,Sports_celeb,@BizNasty2point0,@IamGEMington Thanks for the support. +05/25/2018,Sports_celeb,@BizNasty2point0,@BOvi_Chris @MikeGrinnell_ Definitely @RearAdBsBlog. +05/25/2018,Sports_celeb,@BizNasty2point0,@DavefromNC1982 @spittinchiclets My bad man. +05/25/2018,Sports_celeb,@BizNasty2point0,@alfy021 @spittinchiclets 😔 +05/25/2018,Sports_celeb,@BizNasty2point0,@JesseMcClain13 @spittinchiclets Hahahaha that was my best one. +05/25/2018,Sports_celeb,@BizNasty2point0,@bryantwing @myeagleenergy 🙌🏼 +05/25/2018,Sports_celeb,@BizNasty2point0,@ryerk17 @myeagleenergy 💅🏼 +05/25/2018,Sports_celeb,@BizNasty2point0,What a fun episode of @spittinchiclets to kick off the Stanley Cup finals. Although I wanted Bark-André Furry on we… https://t.co/WGrCTHp2Bh +05/24/2018,Sports_celeb,@BizNasty2point0,Is that good? https://t.co/yczXDwNVO2 +05/24/2018,Sports_celeb,@BizNasty2point0,@ShawnHunterShow @ryanwhitney6 @spittinchiclets @RearAdBsBlog Even better +05/24/2018,Sports_celeb,@BizNasty2point0,@RandyOdgers @spittinchiclets @EagleEnergy https://t.co/3nL4NUGf3K +05/24/2018,Sports_celeb,@BizNasty2point0,@jaymcarth @spittinchiclets Damn straight it is. +05/24/2018,Sports_celeb,@BizNasty2point0,@kyle_zedaker @ryanwhitney6 @spittinchiclets @RearAdBsBlog @MikeGrinnell_ Or you can wait till tomorrow when we dro… https://t.co/kodhyMcrdu +05/24/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @Capitals on winning the Eastern conference and advancing to the Stanley Cup final. +05/24/2018,Sports_celeb,@BizNasty2point0,@MattORourke @spittinchiclets There is one. +05/24/2018,Sports_celeb,@BizNasty2point0,@TonyDaMimbo @BarstoolBigCat @PFTCommenter Boys being boys. Love it. +05/24/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter @ryanwhitney6 That’s @BarstoolBigCat’s screen saver. Tell him if he wants an autograph I can get him… https://t.co/Inf26wKoDd +05/24/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter @ryanwhitney6 Me and my girlfriend just broke up you asshole. More like Insensitive Commenter. Amirit… https://t.co/pYkFKMEAyu +05/24/2018,Sports_celeb,@BizNasty2point0,@_MsAnaDee @spittinchiclets @RearAdBsBlog @ryanwhitney6 @barstoolsports Love it. We’re gonna launch something in Au… https://t.co/egrhOaHJC6 +05/24/2018,Sports_celeb,@BizNasty2point0,@Cmeys18 Can we get you on @spittinchiclets tomorrow? +05/23/2018,Sports_celeb,@BizNasty2point0,@justinkelly13 Listen to @spittinchiclets a few episodes back. We talk all about it. +05/23/2018,Sports_celeb,@BizNasty2point0,@PFTCommenter Put it behind you PFT. Today’s a new day and potentially the continuation of #CapsYear +05/23/2018,Sports_celeb,@BizNasty2point0,@justinkelly13 @Sportsnet650 @DanRiccio650 No they did. We talked about it. I like chatting hockey too. I had a blast. +05/23/2018,Sports_celeb,@BizNasty2point0,@TankTopTom69 @myeagleenergy @spittinchiclets 😂 good tweet. +05/23/2018,Sports_celeb,@BizNasty2point0,@gjmann77 Little May Two Four package for the kid eh? @myeagleenergy +05/23/2018,Sports_celeb,@BizNasty2point0,@RealLocke Thanks pal. Ya we’re gonna start plotting the next one soon. +05/23/2018,Sports_celeb,@BizNasty2point0,@catpyyc @ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog @myeagleenergy @commie22 Oh ya. A few times. 😮 +05/23/2018,Sports_celeb,@BizNasty2point0,@ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog @myeagleenergy Yep. And you get entered in a contest to… https://t.co/yOAOQSD4kZ +05/22/2018,Sports_celeb,@BizNasty2point0,@ryanarbesfeld @spittinchiclets @ryanwhitney6 @RearAdBsBlog I was buzzing on my @myeagleenergy read last night. Str… https://t.co/ZKD3xP1wNp +05/22/2018,Sports_celeb,@BizNasty2point0,@EricMoser @ryanadams_23 @spittinchiclets @barstoolsports Sorry buds. Thanks for the support. Tough to message ever… https://t.co/6Wy0VIBUWh +05/22/2018,Sports_celeb,@BizNasty2point0,@ryanadams_23 @spittinchiclets @barstoolsports Thanks pal. Much appreciated. +05/22/2018,Sports_celeb,@BizNasty2point0,RT @BizNasty2point0: New episode of @spittinchiclets. We talk about people having poopy pants over Vegas’ run and also the fact that the Ca… +05/22/2018,Sports_celeb,@BizNasty2point0,@Rypatanto @spittinchiclets Love? Their playing like dogs. I like their team but haven’t played well this round. Th… https://t.co/Ye7qoFJ3oG +05/22/2018,Sports_celeb,@BizNasty2point0,@Kcamps4 Hope you enjoy. +05/22/2018,Sports_celeb,@BizNasty2point0,@joe_pieniazek Thanks Joseph. I went about it with that kill or be killed mindset. +05/22/2018,Sports_celeb,@BizNasty2point0,@KMFB0578 @spittinchiclets Thanks Ken. Glad we can help. +05/22/2018,Sports_celeb,@BizNasty2point0,New episode of @spittinchiclets. We talk about people having poopy pants over Vegas’ run and also the fact that the… https://t.co/FKFQadoW29 +05/22/2018,Sports_celeb,@BizNasty2point0,@tsnotoole Remember the time you did me a favour and then I snubbed you on your podcast? 😬 +05/22/2018,Sports_celeb,@BizNasty2point0,@PeteBlackburn Hahahaha +05/21/2018,Sports_celeb,@BizNasty2point0,@TweetsByDM They’re tasty. I love em. +05/21/2018,Sports_celeb,@BizNasty2point0,@27arruda @biznastydoesbc Thanks pal +05/21/2018,Sports_celeb,@BizNasty2point0,That beat down was brought to you by @WarriorHockey and @newbalance. https://t.co/ERk7YCvBIr +05/21/2018,Sports_celeb,@BizNasty2point0,RT @PersianRose1: Branch manager and assistant branch manager https://t.co/BlbwKqidAF +05/21/2018,Sports_celeb,@BizNasty2point0,@DiscoKingULL @barstoolsports Haha thanks pal. +05/20/2018,Sports_celeb,@BizNasty2point0,@w1therspoon @notwest_ @ArizonaCoyotes @OEL23 You’re a peasant is what you are. +05/20/2018,Sports_celeb,@BizNasty2point0,Congratulations to the @GoldenKnights on winning the Western Conference and advancing to the Stanley Cup final. +05/20/2018,Sports_celeb,@BizNasty2point0,The internet can be exhausting sometimes. https://t.co/yAsBSSlxVW +05/20/2018,Sports_celeb,@BizNasty2point0,Congratulations to @ArizonaCoyotes defenceman @OEL23 on his gold medal at the mens world ice hockey championships with team Sweden. +05/19/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat When’s Grits Week? +05/19/2018,Sports_celeb,@BizNasty2point0,@hen_ease @JManziel2 @barstoolsports @PardonMyTake @spittinchiclets @MikeGrinnell_ @ryanwhitney6 @KayceSmith Oh and… https://t.co/xrEZpvjcnK +05/19/2018,Sports_celeb,@BizNasty2point0,@hen_ease @JManziel2 @barstoolsports @PardonMyTake @spittinchiclets @MikeGrinnell_ @ryanwhitney6 @KayceSmith Boys are buzzin. +05/19/2018,Sports_celeb,@BizNasty2point0,@KristenKeogh We grew up so fast. +05/18/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat @SportsOnlyNoBS Not so fun when people bully you now is it BigCat? +05/18/2018,Sports_celeb,@BizNasty2point0,@BarstoolBigCat @barstoolsports @biznastydoesbc Gonna miss you Dan. +05/18/2018,Sports_celeb,@BizNasty2point0,Also a huge thank you to our sponsors that made this possible. This project was made because of trust from… https://t.co/fMkeMngNzB +05/18/2018,Sports_celeb,@BizNasty2point0,Just wanted to thank everyone at @barstoolsports for an awesome week in NYC for the launch of @biznastydoesbc. Hope… https://t.co/Xig2iIdybv +11/16/2015,Sports_celeb,@gracie_kron,"RT @mmaquote: Even when defeat surprises you, in reality, it's just another step. +—@RenzoGracieBJJ +http://t.co/ri37tHq6SY http://t.co/kUV…" +11/16/2015,Sports_celeb,@gracie_kron,"RT @NateDiaz209: I'll fight both of them +TODAY!!! https://t.co/SCuvZRlVJ8" +08/11/2015,Sports_celeb,@gracie_kron,http://t.co/lwBj0LbfMC +08/08/2015,Sports_celeb,@gracie_kron,RT @RenzoGracieBJJ: Enough said 😜😜😜😜 http://t.co/1IgCQbEG4q +08/04/2015,Sports_celeb,@gracie_kron,"RT @marc_raimondi: WSOF strips Rousimar Palhares of title, suspends him indefinitely http://t.co/faUtShKasX" +08/03/2015,Sports_celeb,@gracie_kron,RT @NateDiaz209: @nickdiaz209 riokid @ifightordie #riders https://t.co/hLw9R31OZA +07/30/2015,Sports_celeb,@gracie_kron,RT @NateDiaz209: #riders #stockton #theteam #danblack 💪👊 https://t.co/32wFQ6oBbB http://t.co/GJwqTCtx7V +07/01/2018,Sports_celeb,@GarbiMuguruza,"¡Gracias @Mujerhoy por esta segunda portada! + +📸 🗞️: ""O ganas o no importas nada"" - https://t.co/SA7koGZ6XB https://t.co/dWHm3krp6R" +06/30/2018,Sports_celeb,@GarbiMuguruza,"Almost ready for Wimbledon... +Casi preparada para Wimbledon... +#evianRoommates #LiveYoung #Wimbledon https://t.co/CftjsGFoSM" +06/30/2018,Sports_celeb,@GarbiMuguruza,"RT @caser: Y seguimos entrenandooooo!! + +Hoy @GarbiMuguruza de blanco completo como marcan las reglas del All England Club. + +#GarbiñeyCaser…" +06/30/2018,Sports_celeb,@GarbiMuguruza,You have to be strong and keep fighting for what you want. Play without fear and just give it all… when you do that… https://t.co/u5pRPyKypW +06/29/2018,Sports_celeb,@GarbiMuguruza,Just stopped by the adidas house to pick-up my Palace x adidas gear. So excited to wear it on court on Tuesday ! 🎾🌿… https://t.co/hpFdw0wZ7U +06/29/2018,Sports_celeb,@GarbiMuguruza,"#007 by @HUGOBOSS + +#TennisOnTheThames + +@Wimbledon @WTA https://t.co/dAk3xr1o4b" +06/25/2018,Sports_celeb,@GarbiMuguruza,Desde @Wimbledon mandándo fuerza a los chicos! Sending strength from Wimbledon! @SeFutbol #WorldCup 🌱🌱 https://t.co/fkM65r77Su +06/25/2018,Sports_celeb,@GarbiMuguruza,"It was all a dream! Todo fue un sueño! 😀 + +@PALACELONDON @adidasoriginals @adidastennis https://t.co/ajmqvKvQ4I" +06/24/2018,Sports_celeb,@GarbiMuguruza,"@MuseeLouvre in Paris ✔️ + +@NHM_London 🦖✔️ + +#GirlsEducation 💪 https://t.co/FZNUOUMreZ" +06/21/2018,Sports_celeb,@GarbiMuguruza,"RT @johnwoodRTR: Winning #Wimbledon? + +Impressive! + +Hitting fund-raising goal for new @RoomtoRead library in #Cambodia? + +Priceless! + +Congr…" +06/20/2018,Sports_celeb,@GarbiMuguruza,@RevistaRITMO @anneigartiburu_ @herascasado Me encantan los pendientes! +06/19/2018,Sports_celeb,@GarbiMuguruza,"Wanna join? + +😇 📚 👧 ➡️ https://t.co/yJplNysH90 + +@RoomtoRead #Cambodia 💪 https://t.co/ZVXvC9Yi67" +06/19/2018,Sports_celeb,@GarbiMuguruza,"¿Te apuntas? + +😇 📚 👧 ➡️ https://t.co/yJplNysH90 + +@RoomtoRead #Cambodia 💪 https://t.co/DQJO0LO2ig" +06/15/2018,Sports_celeb,@GarbiMuguruza,"Yo ya estoy lista!!!!!! 💪💪 +I am ready!!!!! 👌👌 + +#VamosEspaña 🇪🇸 #WorldCup https://t.co/pmeZNVulgM" +06/10/2018,Sports_celeb,@GarbiMuguruza,"Que grande eres @RafaelNadal!!! + +#NOL1M1TS 🇪🇸 #ElMejorEjemplo https://t.co/1BPLgHN1Yl" +06/08/2018,Sports_celeb,@GarbiMuguruza,Vierness buen humorrr!! Friday felling!!! Walk it like I talk it!! 💥💥 https://t.co/lBCzzemJ3w +06/08/2018,Sports_celeb,@GarbiMuguruza,"Merci Paris! Merci @rolandgarros! +Thanks @FSParis for making me feel like home. +Nos vemos el año que viene! 😍 https://t.co/GEWuMqdR25" +06/06/2018,Sports_celeb,@GarbiMuguruza,Happy to be back in semis @rolandgarros. It was a good match today! Looking forward tomorrow's match against Halep.… https://t.co/D5xFXaRe7j +06/05/2018,Sports_celeb,@GarbiMuguruza,"Healthy breakfast @FSParis for a ☔️ day in Paris! 😉😍 + +Desayuno sano en el @FSParis para un dia ☔️ en París! 😉😍… https://t.co/SbsDdScwJ4" +06/04/2018,Sports_celeb,@GarbiMuguruza,1/4 #rg18 https://t.co/QdCHMxaFrO +06/03/2018,Sports_celeb,@GarbiMuguruza,"We live for this. +#PlayToBeWild @babolat @rolandgarros https://t.co/Lw1pp7UMSJ" +06/02/2018,Sports_celeb,@GarbiMuguruza,"J'adore ce court et ce public! +Me encanta esta pista y este público! +Love this court and this crowd! +#SecondWeek… https://t.co/2H3iRs5NZ5" +06/01/2018,Sports_celeb,@GarbiMuguruza,"Mañana otra oportunidad. + +Tomorrow another chance. + +11am vs Stosur @ Chatrier #rg18 https://t.co/6GpHhfl6qM" +05/31/2018,Sports_celeb,@GarbiMuguruza,¿Sabías que los estudiantes de 2º grado de las escuelas con el apoyo de @RoomtoRead en #Cambodia leen 2 veces más r… https://t.co/GK2ezDJWNG +05/31/2018,Sports_celeb,@GarbiMuguruza,Did you know grade 2 students in schools supported by @RoomtoRead in #Cambodia read more than 2x as fast as other s… https://t.co/NMHivVYBWQ +05/31/2018,Sports_celeb,@GarbiMuguruza,"👁 🎾 + #Focus #RG18 https://t.co/76KGwB6rUD" +05/30/2018,Sports_celeb,@GarbiMuguruza,"¡Sed de tenis! +Thirst for tennis! +#RG18 🎾😋 https://t.co/O20stELctX" +05/29/2018,Sports_celeb,@GarbiMuguruza,"Special treat after my first match win today! Hand made icream cones! 😍 + +Un pequeño premio por mi primera victoria!… https://t.co/uJKbYOyqDq" +05/28/2018,Sports_celeb,@GarbiMuguruza,"Yesterday @MuseeLouvre + +#Art #Conocimiento https://t.co/upoqBESltE" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Afternoon read... + +@lequipe @WTA @rolandgarros https://t.co/OYDwNPUlTk" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Boom! ☄️ + +#Slowmo #RG2018 https://t.co/wx3m6QeNSO" +05/26/2018,Sports_celeb,@GarbiMuguruza,"Bon jour! ☀️🇫🇷 + +#RG18 @rolandgarros https://t.co/XlnALeHHtp" +05/25/2018,Sports_celeb,@GarbiMuguruza,"@rolandgarros = 🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾🎾 + +#RG18 @WTA https://t.co/hBBYczNtwx" +05/24/2018,Sports_celeb,@GarbiMuguruza,"Se sentir déjà comme chez soi! À demain Paris!! 🇫🇷😘 + +Sintiéndome como en casa!Hasta mañana a todos! 😘 + +Feeling alre… https://t.co/ABgNEcYnsK" +05/24/2018,Sports_celeb,@GarbiMuguruza,"👩‍🏭🔨 🎾 + +#RG18 @rolandgarros @WTA https://t.co/sJY7q5DTOM" +05/24/2018,Sports_celeb,@GarbiMuguruza,"Y esto es lo que te pasa cuando bebes @evianwater Me encanta mi baby yo!! 😘👶 + +And this is what happens when your dr… https://t.co/ELWRVX9d8I" +05/23/2018,Sports_celeb,@GarbiMuguruza,Roland Garros y esta pista tan especial! Roland Garros and this special court! #PhilippeChatrier 🇫🇷 ❤️ https://t.co/y0nihwpWmT +05/23/2018,Sports_celeb,@GarbiMuguruza,"Muy contenta de unirme a @evianwater +So excited to join @evianwater 😋😀😍 + +#evian #Liveyoung https://t.co/HELr2rd1Z3" +05/22/2018,Sports_celeb,@GarbiMuguruza,👋👋👋 https://t.co/whG6oFPRqw +05/22/2018,Sports_celeb,@GarbiMuguruza,"Entrena con la misma intensidad con la que piensas jugar 🔥🔥🔥 + +Train the way you intend to play 🔥🔥🔥 + +#HereToCreate… https://t.co/VB8l0Mbcbi" +05/18/2018,Sports_celeb,@GarbiMuguruza,"Últimas horas para disfrutar de Italia antes de entrar en #ModoRolandGarros + +Last hours to enjoy Italy before geeti… https://t.co/BzpwtV4tne" +05/13/2018,Sports_celeb,@GarbiMuguruza,"Kids Day!! 😘🎾👼 + +@WTA @InteBNLdItalia https://t.co/bEQxEnHKnK" +05/12/2018,Sports_celeb,@GarbiMuguruza,"Prima practica a Roma 🇮🇹 + +Ya estamos entrenando en Roma 😃 + +First practice in Roma ☀️ + +@WTA https://t.co/pbugfxIJut" +05/11/2018,Sports_celeb,@GarbiMuguruza,Ciao Roma!! 🇮🇹 https://t.co/MJ2whF55GK +05/09/2018,Sports_celeb,@GarbiMuguruza,"Buenas noches Madrid, mañana más! + +Good night Madrid, more to come tomorrow! + +@WTA https://t.co/NvyPjrBFVi" +05/06/2018,Sports_celeb,@GarbiMuguruza,"Domingo en Madrid 🇪🇸 + +Sunday in Madrid 🇪🇸 https://t.co/Y2Np6cGthK" +05/05/2018,Sports_celeb,@GarbiMuguruza,Dame Motas dame Motas... 🤪 https://t.co/lzS2ckUkP5 +05/05/2018,Sports_celeb,@GarbiMuguruza,@JoseMotatv Dame Motas dame Motas... 🤪 +05/04/2018,Sports_celeb,@GarbiMuguruza,"@OfficialMauiJim family!! + +☀️😎😘 https://t.co/eLBoBmRRuZ" +05/04/2018,Sports_celeb,@GarbiMuguruza,¡¡¡A seguir trabajando duro chicas!!! 💪💪💪 https://t.co/rj08h4LSmA +05/03/2018,Sports_celeb,@GarbiMuguruza,"Heroínas del Deporte, un libro para todas. Reconocimiento a todas las mujeres deportistas de antes y de ahora, por… https://t.co/aQv4irGX3q" +05/03/2018,Sports_celeb,@GarbiMuguruza,"Menuda paliza me has dado, menos mal que nadie lo va a ver @manucarreno 🤭 @DeportesCuatro @caser https://t.co/lfGxXswzQQ" +05/02/2018,Sports_celeb,@GarbiMuguruza,¿Sabías que en #Camboya casi el 50% de las chicas son trabajadoras en lugar de estudiantes? Trabajo con @RoomtoRead… https://t.co/rqNsNcvObG +05/02/2018,Sports_celeb,@GarbiMuguruza,Did you know in #Cambodia nearly 50% of girls are laborers instead of students? I'm teaming up with @RoomtoRead to… https://t.co/O3QXAOievj +04/30/2018,Sports_celeb,@GarbiMuguruza,"""I’m a tennis player, and that’s my priority. I like fashion but I would never want to be a model. I don’t want to… https://t.co/3erRz6PJ8E" +04/29/2018,Sports_celeb,@GarbiMuguruza,"Y se acabó... Domingo! + +It's a rap...Sunday! + +@VogueSpain https://t.co/W6vmUBFNcd" +04/29/2018,Sports_celeb,@GarbiMuguruza,"Hoy toca blanco.. + +Today is all white + +@VogueSpain https://t.co/61nqHF607l" +04/28/2018,Sports_celeb,@GarbiMuguruza,"Pink! +@VogueSpain https://t.co/47kGyr5bM1" +04/27/2018,Sports_celeb,@GarbiMuguruza,"RT @VogueSpain: De sueños que se heredan DE MADRES A HIJAS. Es jueves, también en los #7días7Looks de @GarbiMuguruza. +https://t.co/v6Fty1It…" +04/25/2018,Sports_celeb,@GarbiMuguruza,"Miércoles... +Wednesday +#MyFashionWeek @VogueSpain @WTA https://t.co/RLwC4YW0C1" +04/25/2018,Sports_celeb,@GarbiMuguruza,"👋🏼 #Stuttgart + +@WTA https://t.co/GYJVdpbU6v" +04/24/2018,Sports_celeb,@GarbiMuguruza,"Martes.... +Tuesday... +@VogueSpain https://t.co/ziUntStcFN" +04/22/2018,Sports_celeb,@GarbiMuguruza,"RT @caser: .@GarbiMuguruza fue clave en la victoria del equipo español de la #FedCup. +Sin duda la mejor líder que puede tener el tenis espa…" +04/22/2018,Sports_celeb,@GarbiMuguruza,Gracias a todos los que vinisteis a apoyarnos y a los que nos seguís en la distancia. Se acaba la Fed Cup y sin tie… https://t.co/pLQBk2FMBU +04/22/2018,Sports_celeb,@GarbiMuguruza,Victoria! Vamooossss!!!! Grande chicas y grande equipo!!! ❤️❤️❤️❤️❤️🔥 https://t.co/hB0Y7YqBnT +04/22/2018,Sports_celeb,@GarbiMuguruza,RT @FedCup_es: #ESPPAR ¡Victoria de España! @GarbiMuguruza finalmente venció 76 60 a Cepede Royg y las locales se aseguraron un puesto en e… +04/22/2018,Sports_celeb,@GarbiMuguruza,@chang_ariana Hola! Where is this?? +04/21/2018,Sports_celeb,@GarbiMuguruza,"Hacía un poco de viento hoy.... 🌪 + +It was a little windy today... 🌪 + +#ESPPAR 2-0 Vamos! 🇪🇸 👊 + +📸 @FedCup https://t.co/0OKsD04cVQ" +04/20/2018,Sports_celeb,@GarbiMuguruza,"¡De camino al fin de semana de @FedCup_es con las chicas! + +Heading to the @FedCup weekend with the girls like 👠… https://t.co/tRSqzGoJb0" +04/19/2018,Sports_celeb,@GarbiMuguruza,@HERFDEZ76 🙈 +04/19/2018,Sports_celeb,@GarbiMuguruza,@biologosan 🙈 +04/19/2018,Sports_celeb,@GarbiMuguruza,Conocí a la maravillosa Paula y a la mejor fan almoada! Met the wonderful Paula and the best fan pillow! 💕 #FedCup… https://t.co/K2FZCpqXSv +04/19/2018,Sports_celeb,@GarbiMuguruza,"Stella style for the courts of Paris + +Estilo Stella para las pistas de París. + +@adidastennis by @StellaMcCartney f… https://t.co/UjjH6dopC1" +04/18/2018,Sports_celeb,@GarbiMuguruza,"A pleasure to have attended the state dinner offered by Their Majesties the Kings to the President of Portugal, Mar… https://t.co/9iRpUxugrh" +04/18/2018,Sports_celeb,@GarbiMuguruza,"Un placer haber asistido a la cena de estado ofrecida por Sus Majestades los Reyes al Presidente de Portugal, Marce… https://t.co/Xw9Nkt1epk" +04/18/2018,Sports_celeb,@GarbiMuguruza,Me senté con @BBCSport para hablar sobre la alfabetización y por qué me he asociado con @RoomtoRead. Mi objetivo es… https://t.co/FfuCqjitAh +04/18/2018,Sports_celeb,@GarbiMuguruza,I sat down with @BBCSport to share why literacy & #girlsed are so important to me & why I've teamed up with… https://t.co/CXeYp0pNS3 +04/18/2018,Sports_celeb,@GarbiMuguruza,@Paulaperezcam16 Un placer Paula!! Gracias por venir a vernos! +04/15/2018,Sports_celeb,@GarbiMuguruza,Sunday brunch! 🥐🥓🍳🍩☕️🍓🌿🌿🌿 https://t.co/oJQuEjwj9T +04/15/2018,Sports_celeb,@GarbiMuguruza,@AndujarPablo que bien!!!!! merecido trofeo!! 🏆🏆 +04/14/2018,Sports_celeb,@GarbiMuguruza,Sábado día de entreno y de vuelta a la tierra roja! Saturday training day and back to clay court! ❤️🐞☄️🔥 https://t.co/iqLRmKgjjl +04/13/2018,Sports_celeb,@GarbiMuguruza,"¡Llega la temporada de tierra! + +Clay court season is here!! + +Fed Cup 🇪🇸 + Stuttgart + Madrid + Roma + Paris + +@WTA… https://t.co/JXbfwaWoQh" +04/10/2018,Sports_celeb,@GarbiMuguruza,Esperando al atardecer! Waiting for the sunset! 🌅🕶💛☕️🇨🇭 #jetlag #pijamas #bestview https://t.co/Fn4th1bBNc +04/09/2018,Sports_celeb,@GarbiMuguruza,La mejor sensación! The best feeling! 🏆🏆🏆🌶🌶🌶 #Mexico https://t.co/gAysrpkKGJ +04/09/2018,Sports_celeb,@GarbiMuguruza,"Muy feliz por la victoria, ha sido una semana dura pero con recompensa. + +Muchas gracias a todos por el apoyo... os… https://t.co/oBxaNRLQSu" +04/09/2018,Sports_celeb,@GarbiMuguruza,Muchas felicidades @DavidFerrer87 y a todo el equipo!!! Gran victoria!!! https://t.co/hUhkaCxBqy +04/09/2018,Sports_celeb,@GarbiMuguruza,"😀 .....🏆!!! + + I❤️ 🇲🇽 https://t.co/2IUoxztn7X" +04/07/2018,Sports_celeb,@GarbiMuguruza,"'ESE' sentimiento de estar en una final de nuevo. Vamos!! + +'THE' feeling of being in a final again. Vamos!! + +@WTA… https://t.co/5u4qtzJ5E6" +04/07/2018,Sports_celeb,@GarbiMuguruza,"Findeee!!! 😀....seguimos!!! + +Weekend baby!!! + +@WTA @Abierto_GNP https://t.co/gncn32LP1C" +04/06/2018,Sports_celeb,@GarbiMuguruza,"Un paso más!! Cuartos!! + +One step forward!! Quarters!! + +@WTA @Abierto_GNP https://t.co/kUbJ3Eu7XG" +04/04/2018,Sports_celeb,@GarbiMuguruza,"RT @Abierto_GNP: #RunGirlRun @GarbiMuguruza 🙌🙌🙌 +. +. +. +@wta #AbiertoGNPSeguros #EstadioGNP #Viviresincreíble @TurismoNL #Monterrey https://t…" +04/04/2018,Sports_celeb,@GarbiMuguruza,¡Órale...vamos! https://t.co/pe96iiVBH8 +04/01/2018,Sports_celeb,@GarbiMuguruza,"Entreno tempranero! 🎾 + +Sunday early practice! 🎾 + +@WTA @Abierto_GNP https://t.co/gh3Dy6wCUT" +03/31/2018,Sports_celeb,@GarbiMuguruza,"Fuerza a todas las mujeres de Monterrey.... y 🌎! + +#womenpower https://t.co/uJh0DWCfb4" +03/30/2018,Sports_celeb,@GarbiMuguruza,"@DidiDieva @Migos @gucci1017 Bueno bueno Migos, Gucci, Kendrick... también" +03/29/2018,Sports_celeb,@GarbiMuguruza,"🎾🎾🎾🎾🎾🎾🎾...... + +@WTA @Abierto_GNP https://t.co/noEJGjQJgM" +03/29/2018,Sports_celeb,@GarbiMuguruza,"Empapándome de #Monterrey!! + +Soacking me with Monterrey + +@WTA @Abierto_GNP https://t.co/m4xrdIQlWn" +03/28/2018,Sports_celeb,@GarbiMuguruza,"Hola 🇲🇽!!! +Visita en helicóptero de Monterrey +#PrimeraVez🚁 + +Hi 🇲🇽!! +Air tour over Monterrey +#1stTime🚁 + +@WTA… https://t.co/XeBY1ytgTO" +03/25/2018,Sports_celeb,@GarbiMuguruza,"💥.... Mi domingo en Cayo Vizcaíno! +Como va el vuestro? + +💥.... Sunday at Key Bicayne! +How is your day going? + +@WTA… https://t.co/dMp65tp6I4" +03/25/2018,Sports_celeb,@GarbiMuguruza,"Buenas noche Miami. + +Good night Miami + +(4th round) @MiamiOpen @WTA https://t.co/NkrDKSfREN" +03/25/2018,Sports_celeb,@GarbiMuguruza,"I am #MSDStrong +Great to meet you all. Thanks for coming out. + +@WTA @MiamiOpen https://t.co/JBZWrcrAlM" +03/23/2018,Sports_celeb,@GarbiMuguruza,"Sólo en Miami! #Manatí + +Only in Miami! #FloridaManatee 🐄🐠 + +☀️ @MiamiOpen @WTA https://t.co/4OBiiYnrV6" +03/22/2018,Sports_celeb,@GarbiMuguruza,"¡Me lo pasé en grande ayer en la fiesta del hotel @JWMM_Miami ! + +Great fun at @JWMM_Miami Hotel party last night!!… https://t.co/fkXKWiR78B" +03/21/2018,Sports_celeb,@GarbiMuguruza,"Nunca es fácil lidiar con una lesión. Le deseo a @AnisimovaAmanda una pronta recuperación. + +Never easy to deal with… https://t.co/CRq82L6m9y" +03/21/2018,Sports_celeb,@GarbiMuguruza,@CincyTennis 😱😱😱 this is not what I remember +03/20/2018,Sports_celeb,@GarbiMuguruza,RT @UnivisionSports: @GarbiMuguruza @WTA @MiamiOpen No te pierdas este jueves en @UDContacto a las 12AM ET una divertida entrevista con la… +03/20/2018,Sports_celeb,@GarbiMuguruza,"Cuando vengo a Miami y me vengo y como Cocosete, pirulín, tequeño, cachito, Malta, 🧀guayanés, tajada!!! 🤤🤤✌🏻✌🏻" +03/20/2018,Sports_celeb,@GarbiMuguruza,"🎾 & ☀️ + +@WTA @MiamiOpen https://t.co/Cgx1aMvv5s" +03/20/2018,Sports_celeb,@GarbiMuguruza,"Pronto en @UnivisionSports ..... + +Soon in @UnivisionSports ..... + +@WTA @MiamiOpen https://t.co/9DZny2pXOd" +03/19/2018,Sports_celeb,@GarbiMuguruza,Me encanta esta portada! Loving this cover 💚💛 @GlamourSpain https://t.co/BYdyt9efpm +03/19/2018,Sports_celeb,@GarbiMuguruza,"Hola @MiamiOpen!!! ... donde siempre me siento como en casa!! 😘 + +Hi @MiamiOpen!! ... where I always feel at home! 😍… https://t.co/KaijVT88FD" +03/19/2018,Sports_celeb,@GarbiMuguruza,"@AnaIvanovic @BSchweinsteiger Congratulations, @AnaIvanovic & @BSchweinsteiger! 💙 😀👏👏👏" +03/17/2018,Sports_celeb,@GarbiMuguruza,"Ultimo día de entrenamiento en la @IMGAcademy antes de partir hacia @MiamiOpen + +Last day of practice at… https://t.co/IqVPpknSPm" +03/14/2018,Sports_celeb,@GarbiMuguruza,Met an amazing lady today @garbaeslays ✌🏻#bestfan #teamugu https://t.co/jlq3I7NWzM +03/14/2018,Sports_celeb,@GarbiMuguruza,@garbaeslays Looks like someone is in IMG too +03/09/2018,Sports_celeb,@GarbiMuguruza,"💪 😉 + +@BNPPARIBASOPEN @WTA https://t.co/nNnHmUGqcs" +03/07/2018,Sports_celeb,@GarbiMuguruza,"🎾.... volea! + +@BNPPARIBASOPEN @WTA https://t.co/EkyxdeJIvg" +03/06/2018,Sports_celeb,@GarbiMuguruza,"Hello @BNPPARIBASOPEN!!! + +1st 🎾 practice + +😃😎☀️ + +@WTA https://t.co/cy7nqtPujE" +03/05/2018,Sports_celeb,@GarbiMuguruza,Oscars Vanity Fair 🖤🖤 https://t.co/bxFYLHuReR +03/05/2018,Sports_celeb,@GarbiMuguruza,"What a night!! + +#Oscars + +@rolex +@Hannibal_Laguna +Lorraine Schwartz https://t.co/ygwSZYxzn4" +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @Lindonk: @Wimbledon champ meets @Lakers star.....uhhh....mean @Oscars_2018live winner @kobebryant #DamnItsHeavy https://t.co/kuC7GOM2eJ +03/05/2018,Sports_celeb,@GarbiMuguruza,"Look who I ran in to!! ⛹🏾 + +@kobebryant #Oscars https://t.co/pzElBsAf3c" +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @VanityFairSpain: Segunda española de la noche: flamante @GarbiMuguruza. #Oscars https://t.co/YNzGw0T8g5 +03/05/2018,Sports_celeb,@GarbiMuguruza,RT @holavzla: #AlfombraRoja La tenista venezolana @GarbiMuguruza dijo presente en los #Oscars https://t.co/IGx8LMMXkk +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @GlamourSpain: ¡Otra española que lo peta en la alfombra roja de los #Oscars! ¡Guapísima, Garbiñe! https://t.co/245FJgsjka" +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @VogueSpain: Si querías saber cómo iba a ser el @Hannibal_Laguna de Garbiñe Muguruza en los #Oscars, estas son las fotos que tienes que…" +03/05/2018,Sports_celeb,@GarbiMuguruza,"RT @elle_es: La tenista ha elegido un vestido de diseñador español, ¿adivinas cuál es? https://t.co/dJw6YiJFBZ #garbiñemuguruza #oscars" +03/04/2018,Sports_celeb,@GarbiMuguruza,Night out in LA https://t.co/r9plIrwr6G +03/03/2018,Sports_celeb,@GarbiMuguruza,"PRE OSCARS MOVES + +🕺💃🎬 + +@ma_silvestre https://t.co/YtBanOpo8r" +03/03/2018,Sports_celeb,@GarbiMuguruza,RT @BillieJeanKing: Pre-gaming at the @WME party. #preoscarparty #EmmaStone https://t.co/NrdypylLyf +03/02/2018,Sports_celeb,@GarbiMuguruza,"☔️ but .... 😀 morning!! + +☔️ pero .... 😀 día!! + +Venice Beach 🇺🇸 + +@WTA @BNPPARIBASOPEN @MiamiOpen https://t.co/J8HpC8z1aE" +02/27/2018,Sports_celeb,@GarbiMuguruza,"¡Qué placer haberte conocido y contar contigo para este Super vestido este domingoooo! + +What a pleasure to get to… https://t.co/NhHiL9IxTA" +02/26/2018,Sports_celeb,@GarbiMuguruza,@MiamiOpen Favourite tournament!!!! 💞 +02/26/2018,Sports_celeb,@GarbiMuguruza,@CarlaSuarezNava @highpronutritio Pelito largoooo!!! +02/26/2018,Sports_celeb,@GarbiMuguruza,"After two great weeks in the Middle East.... 🐪 +Hello America! 🤟 Hi Cali! ☀️🇺🇸 + +Después de dos buenas semanas en el… https://t.co/2Shhd8zhWr" +02/21/2018,Sports_celeb,@GarbiMuguruza,"Acabando el tratamiento y a descansar... (🕒3 am...) 😘 Vamos! + +#TodosLosPartidosCuentan + +Finishing treatment and ab… https://t.co/ets9VmPLCM" +02/17/2018,Sports_celeb,@GarbiMuguruza,"Enhorabuena @javierfernandez!! + + 💪💪💪 🥉@COE_es https://t.co/dzSb2rZ5JG" +02/15/2018,Sports_celeb,@GarbiMuguruza,😊 #Vamos https://t.co/kIJBjajXUV +02/10/2018,Sports_celeb,@GarbiMuguruza,"Descubriendo rincones nuevos de Doha⚱️🏺 + +Discovering new places in Doha 🏺⚱️ + +@WTA https://t.co/2ih1GShYE6" +02/09/2018,Sports_celeb,@GarbiMuguruza,Look who's joining my team for next tournaments! @conchitamartinz 👋🏼👋🏼💪🏼💪🏼👯 @SamSumyk we are waiting for you! #Doha https://t.co/OUj3JEnaBe +02/09/2018,Sports_celeb,@GarbiMuguruza,Mirad quién se añade a mi equipo para los próximos torneos! @conchitamartinz 👋🏼👋🏼💪🏼💪🏼 👯@SamSumyk te estamos esperan… https://t.co/hnWVXnhNpx +02/06/2018,Sports_celeb,@GarbiMuguruza,"Best athletes of 2017! +mejores atletas del 2017 + +Gracias @mundodeportivo https://t.co/vE2mfKjpA7" +02/05/2018,Sports_celeb,@GarbiMuguruza,#Women #Power https://t.co/YGu096O3Pc +02/05/2018,Sports_celeb,@GarbiMuguruza,"Noche para disfrutar! + +An evening to enjoy! + +@mundodeportivo #Barcelona + +@pronovias @rabatjewels @rolex 😊 https://t.co/LRoKY0RL5X" +02/04/2018,Sports_celeb,@GarbiMuguruza,"😋😋😋😋😋 🍖 + +¡¡Demasiado bueno!! + +Way too good! + +#JamonIberico https://t.co/Ps3cYqBZcM" +01/29/2018,Sports_celeb,@GarbiMuguruza,"🏃‍♀️🎾🏃‍♀️🎾🏃‍♀️🎾🏃‍♀️🎾 + +#MondayMotivation + +#ActitudDeLunes https://t.co/yDYammZHmz" +01/28/2018,Sports_celeb,@GarbiMuguruza,"¡Buenos días lago Leman! + +Good morning lake Leman!! + +❄️❄️❄️ #BestView #GoodSunday https://t.co/vgCPbGuKDX" +01/27/2018,Sports_celeb,@GarbiMuguruza,@garbaeslays I love it too!!! +01/24/2018,Sports_celeb,@GarbiMuguruza,"Back to 5 degrees!! + +¡¡De vuelta a los 5 grados!! + +🤧❄️🇨🇭 https://t.co/wyeRm4nJAf" +01/20/2018,Sports_celeb,@GarbiMuguruza,"Muchas felicidades ....... + +@javierfernandez por su 6º Europeo 🥇 🇪🇺 + +@CSainz_oficial y @LucasCruz74 por su triunf… https://t.co/g7hyQle9aJ" +01/17/2018,Sports_celeb,@GarbiMuguruza,"RT @LaureusSport: Congratulations @GarbiMuguruza, @allysonfelix, @caster800m, @serenawilliams, @katieledecky and @MikaelaShiffrin! + +#Laureu…" +01/14/2018,Sports_celeb,@GarbiMuguruza,"Feliz domingo. Happy Sunday 🌏 + +@AustralianOpen @WTA https://t.co/2s2GqeBtud" +01/14/2018,Sports_celeb,@GarbiMuguruza,Washhpoppin!? 🤘🏼🇦🇺💋 https://t.co/nqChH6j24w +01/13/2018,Sports_celeb,@GarbiMuguruza,"RT @babolat: What’s your tribe? +#PureAero #PureDrive #PureStrike https://t.co/2YOeR7ZRYs" +01/13/2018,Sports_celeb,@GarbiMuguruza,"Practice today at Hisense Stadium. First match on Tuesday. + +Entreno hoy en el Estadio Hisense. Primer partido el m… https://t.co/1hxDoKDBUZ" +01/12/2018,Sports_celeb,@GarbiMuguruza,"Feliz de entrar a formar parte de la familia @Caser +Happy to become a new member of the @Caser family. +#superacion https://t.co/1NhMEVLmTc" +01/11/2018,Sports_celeb,@GarbiMuguruza,"Sunshine + @stellamccartney 🙌 +@adidastennis +--- +#tennis #createdwithadidas #AusOpen https://t.co/GM2KQi9aL5" +01/07/2018,Sports_celeb,@GarbiMuguruza,Cocodrilo Dundee I am available! Estoy disponible! 🐊🐊🐊✌🏻@SydneyTennis https://t.co/NL9ygjSw7d +01/05/2018,Sports_celeb,@GarbiMuguruza,P Sherman calle Wallaby 42 Sydney 🐠 https://t.co/fMiquLOyC5 +01/03/2018,Sports_celeb,@GarbiMuguruza,"📢 Nuevos planes ✈️ ..... nos vamos a @SydneyTennis +... +📢 New plans ✈️... we are going to @SydneyTennis" +01/03/2018,Sports_celeb,@GarbiMuguruza,"RT @rtve: ""Contra el machismo, tolerancia cero"". El aplaudido sketch de Garbiñe Muguruza en el especial de José Mota https://t.co/H9djOmE8q…" +12/31/2017,Sports_celeb,@GarbiMuguruza,"¡Feliz año nuevo a todos! Que este 2018 nos brinde más momentos de emoción y felicidad por qué eso al final, ¡es lo… https://t.co/frTtTDefO2" +12/31/2017,Sports_celeb,@GarbiMuguruza,"It was time for Kids Day today at @BrisbaneTennis #Fun +Hoy tocaba el día de los niños en #BrisbaneTENnis #Diversion https://t.co/KnOhQh6Xlw" +12/30/2017,Sports_celeb,@GarbiMuguruza,"2nd day of practice in @BrisbaneTennis. Playing doubles w/ @CarlaSuarezNava 👌😀 +2º día de entreno en #BrisbaneTENnis… https://t.co/XhMTJpSElA" +12/29/2017,Sports_celeb,@GarbiMuguruza,Garbiñe nos cuenta como vio la temporada 2017. https://t.co/YXR1jtRIp7 +12/29/2017,Sports_celeb,@GarbiMuguruza,Hola Australia!!! Ya estoy de vuelta. Hello Australia!! I am back 💙💙🇦🇺🇦🇺🌀🌀🕶🕶🕶 https://t.co/Isal7gldu2 +12/27/2017,Sports_celeb,@GarbiMuguruza,@Highflyermel Yes!! I was in this flight 😤 +12/25/2017,Sports_celeb,@GarbiMuguruza,25th ☀️♥️ https://t.co/2S0gBSpjSB +12/25/2017,Sports_celeb,@GarbiMuguruza,Feliz navidad!!! Merry Christmas!!!!🎄🎁💋❤️💋❤️💋❤️💋❤️🎊🎉 https://t.co/WmfNzDIj50 +12/22/2017,Sports_celeb,@GarbiMuguruza,"No matter the sport, creativity brings us together +#HereToCreate @adidas https://t.co/LNGRiPbExM" +12/22/2017,Sports_celeb,@GarbiMuguruza,"¡¡No queda nada para Navidad!!! +Christmas is around the corner!! +🎅 🎁😃 https://t.co/3ECbzucFoo" +12/20/2017,Sports_celeb,@GarbiMuguruza,Love change! #HereToCreate https://t.co/2iMNb61hpd +12/20/2017,Sports_celeb,@GarbiMuguruza,😘 https://t.co/G6odqFeC4G +12/18/2017,Sports_celeb,@GarbiMuguruza,"Last Monday...Last week of practice....I am ready for you! +Último lunes...Última semana de entrenos.... ¡Vamos a p… https://t.co/LgygcWk8fJ" +12/18/2017,Sports_celeb,@GarbiMuguruza,Team Muguruza!!!! #SurfingUSA 🏄🏻‍♀️🏄🏻‍♂️🏄🏻‍♂️🌅🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼🤙🏼 https://t.co/BPaLalHqGQ +12/14/2017,Sports_celeb,@GarbiMuguruza,"#TBT +Singapore 2017 💄💋👗 https://t.co/3ubkoLbA40" +12/13/2017,Sports_celeb,@GarbiMuguruza,"Calendario enero-julio 2018 +Calendar January - July 2018 +@WTA @AustralianOpen @rolandgarros @Wimbledon https://t.co/ch5TNsA7ux" +12/13/2017,Sports_celeb,@GarbiMuguruza,"""I want to keep playing big finals, and fighting for the No.1. There’s nothing to be afraid of, and nothing to hide… https://t.co/xt46OHx0WW" +12/11/2017,Sports_celeb,@GarbiMuguruza,Buenos días!! 🌞 show me some beauty!! 🌅 💛💛💛💛 #SUNRISE https://t.co/DwVl55jWBv +12/09/2017,Sports_celeb,@GarbiMuguruza,"RT @CincyTennis: 3...2...1...GROUP HUG 🤗 + +@GarbiMuguruza https://t.co/4WQWzaBLZS" +12/09/2017,Sports_celeb,@GarbiMuguruza,@CarlaSuarezNava @dirtydancing_es @LetsGoCompany Yo lo quiero ver!!! 💃🏼💃🏼💃🏼 +12/08/2017,Sports_celeb,@GarbiMuguruza,@ITF_Tennis @RafaelNadal ❤️❤️❤️❤️ thank you!!!! +12/08/2017,Sports_celeb,@GarbiMuguruza,"RT @ITF_Tennis: Spain's @GarbiMuguruza has been named ITF World Champion for the first time along with three-time winner @RafaelNadal. + +It…" +12/07/2017,Sports_celeb,@GarbiMuguruza,"#TBT +Septiembre... Sesión de fotos y entrevista para @elpaissemanal +September...Photoshoot and interview for El P… https://t.co/p7NyfGbcvZ" +12/06/2017,Sports_celeb,@GarbiMuguruza,RT @JoseMotatv: .@GarbiMuguruza nos cuenta algunas cosas de su paso por la grabación de ‘Bienvenido Mister Wan-Da’ ¡Muchas gracias y buena… +12/06/2017,Sports_celeb,@GarbiMuguruza,De vuelta a mi segunda casa! Back to my second home! #LosAngeles ☀️💛💛💛💛🐠 https://t.co/S83ZNqEq7d +12/05/2017,Sports_celeb,@GarbiMuguruza,LA here we come! ✈️ 😀 🎾 💪 https://t.co/dnuPSwQRzq +11/30/2017,Sports_celeb,@GarbiMuguruza,"#TBT +@adidastennis photo shoot in Indian Wells with @Wimbledon outfit +Sesión de fotos de adidas en Indian Wells con… https://t.co/qxVLr7LTiH" +11/29/2017,Sports_celeb,@GarbiMuguruza,👏👏👏 La educación... ¡lo primero! https://t.co/TQSzEVCF7H +11/28/2017,Sports_celeb,@GarbiMuguruza,"Feliz martes a todos!! +Have a great Tuesday everyone! +😇💪🎾 https://t.co/p3VfGn3975" +11/24/2017,Sports_celeb,@GarbiMuguruza,"Buenas noticias!!! @teledeporte seguirá transmitiendo los @WTA premiers en 2018. 💪👍👏🎾 + +Great news...WTA premiers on… https://t.co/yFK8kbncup" +11/24/2017,Sports_celeb,@GarbiMuguruza,"RT @adidas: Calling all creators: the game changers, the difference makers, the boundary breakers. +It's a new day, create something. +#HereT…" +11/22/2017,Sports_celeb,@GarbiMuguruza,Incredible night having chosen me Personality of the year! Increíble noche siendo elegida Personaje del año!Mil gra… https://t.co/8a72q27hvQ +11/22/2017,Sports_celeb,@GarbiMuguruza,BEAUTIFUL @VanityFairSpain gala!! PRECIOSA gala de @VanityFairSpain #Gucci #JuliusBaer #Rolex #VF 👠💄👗💋 https://t.co/kAMEJW7akB +11/21/2017,Sports_celeb,@GarbiMuguruza,No sé cuantas veces me habré reído contigo y hoy también! Especial nochevieja @JoseMotatv 🍾✌🏻 https://t.co/P6qgCfa3Zh +11/20/2017,Sports_celeb,@GarbiMuguruza,Y seguimos en @ellarguero ... #Madrid https://t.co/5eYDufpHGV +11/20/2017,Sports_celeb,@GarbiMuguruza,"Empezamos la noche en @El_Hormiguero..... +@antena3com https://t.co/bnfNFm9oXs" +11/20/2017,Sports_celeb,@GarbiMuguruza,"Today is #UniversalChildrensDay +👧🏽👦🏼👧🏾👦🏽👧🏼👦🏻👧🏻👦🏿 +They are the future. And education is key for them. @RoomtoRead +https://t.co/VrWH9gvmgJ" +11/20/2017,Sports_celeb,@GarbiMuguruza,"Hoy es el #DíaMundialdelosNiños + 👧🏽👦🏼👧🏾👦🏽👧🏼👦🏻👧🏻👦🏿 +Ellos son el futuro. Y la educación es clave para su desarrollo.… https://t.co/hrFwqQbTYj" +11/20/2017,Sports_celeb,@GarbiMuguruza,RT @ellarguero: Un año de sufrimiento y muchos éxitos. La cronología de la gran temporada de @GarbiMuguruza. Esta noche nos visita en @ella… +06/30/2018,Sports_celeb,@alexmorgan13,They gone done it again. 👏🏽 https://t.co/k0iebn1pUS +06/30/2018,Sports_celeb,@alexmorgan13,Watch us today at 3:30p ET on @lifetimetv! #NoExcuses https://t.co/j231Tzj2Jh +06/30/2018,Sports_celeb,@alexmorgan13,What were you doing at 19?????? Take a bow Kylian Mbappe. +06/30/2018,Sports_celeb,@alexmorgan13,Who predicted this game would have 4 goals in less than 60 mins? Go to Vegas right now. #WorldCup2018 does not disappoint. +06/30/2018,Sports_celeb,@alexmorgan13,Di Maria for Prez +06/30/2018,Sports_celeb,@alexmorgan13,I want to see more Mbappe v Marcos Rojo. Is that cruel. +06/28/2018,Sports_celeb,@alexmorgan13,#TBT to my early days on the field just like Reagan! You can own #AlexAndMe with an exclusive headband and locker p… https://t.co/EcHCFOCi0M +06/27/2018,Sports_celeb,@alexmorgan13,"See you tonight, Orlando! https://t.co/M39IJ9s48y" +06/27/2018,Sports_celeb,@alexmorgan13,"RT @chachaspillane: Wife of billionaire ditches dogs that are near death and inbred +⁦@uhaul⁩ ⁦@UHaul_Cares⁩ #SylviaShoen is a disgusting wa…" +06/27/2018,Sports_celeb,@alexmorgan13,Best. World. Cup. Yet. Heartbreaking for Germany but excited to see Mexico moving. Every 3rd game has been insanity. My Stress levels ⬆️⬆️⬆️ +06/26/2018,Sports_celeb,@alexmorgan13,Wow. It’s like 9 lives with Argentina. The World Cup does not disappoint. And a nice friendly cameo from Maradona a… https://t.co/34kzHEqaOG +06/26/2018,Sports_celeb,@alexmorgan13,"RT @JordanCulver: Orlando Pride goalkeeper Ashlyn Harris was asked about attendance at Pride games this season, and in typical Ashlyn Harri…" +06/25/2018,Sports_celeb,@alexmorgan13,I vote (obv) for @AlannaKennedy of the @ORLPride for @NWSL Goal of the Week! Vote #KennedyGOW +06/24/2018,Sports_celeb,@alexmorgan13,Assists like this are just as good as goals. Class. https://t.co/nAG0cv8P0r +06/23/2018,Sports_celeb,@alexmorgan13,It’s gameday! 👀 Watch us today at 7:00pm ET on ESPNews @ORLPride https://t.co/pAz8I6x2gl +06/23/2018,Sports_celeb,@alexmorgan13,@sydneyleroux This coffee is going to taste sooooo sweet. +06/23/2018,Sports_celeb,@alexmorgan13,Nooooooooo waaaaaaaaaay. CLUTCH CLUTCH CLUTCH KLUTCH KRUTCH KROOCH KROOS KROOS KROOS +06/22/2018,Sports_celeb,@alexmorgan13,"Heartbreaker for Iceland, they turned me a big fan. Loved both goals from Nigeria though... and bonus points for the jerseys obv." +06/20/2018,Sports_celeb,@alexmorgan13,RT @SergioRamos: They are the ones who won tonight. Hopefully the first of many. https://t.co/ftnMwegZjz +06/20/2018,Sports_celeb,@alexmorgan13,"As fans around the world come together for the #WorldCup, a reminder from @UNICEFUSA on the healing power of play f… https://t.co/hschpywt6P" +06/19/2018,Sports_celeb,@alexmorgan13,#AlexAndMe is out on DVD and Blu-ray today! 🙌🏼 https://t.co/2rlA6Sovkp https://t.co/CmkbDj5TMN +06/17/2018,Sports_celeb,@alexmorgan13,@jimdklock @yumdonut 😂 love it +06/17/2018,Sports_celeb,@alexmorgan13,#GERMEX #GERMEX #GERMEX what a fast tempo game this is so far. I feel goals. +06/16/2018,Sports_celeb,@alexmorgan13,Game day at home! 7:30pm ET vs NJ. Let’s goooo 💪🏼 @ORLPride https://t.co/IRDB547edH +06/16/2018,Sports_celeb,@alexmorgan13,This game can’t end. Not yet it’s just too exciting. +06/16/2018,Sports_celeb,@alexmorgan13,I want Argentina to show well this World Cup but it’s honestly so damn hard to root against Iceland. They have so m… https://t.co/CTuP0uqJcb +06/16/2018,Sports_celeb,@alexmorgan13,Messi walks. Messi helps create a penalty. Messi walks. Please Messi just score and you can walk all you want. +06/15/2018,Sports_celeb,@alexmorgan13,@ALLIE_LONG Dare me +06/15/2018,Sports_celeb,@alexmorgan13,I’d like to thank the soccer gods for blessing us with beautiful soccer for the last 90 minutes. #PORvESP +06/15/2018,Sports_celeb,@alexmorgan13,Waking up to mo World Cup games means motivation to go to sleep earlier. Mo Salah comin upppp. +06/14/2018,Sports_celeb,@alexmorgan13,"Thank you Fatemeh for sharing your story. Of what importance is soccer to a man? Think, then answer in your head. N… https://t.co/5kyJczYmkC" +06/14/2018,Sports_celeb,@alexmorgan13,#WorldCup started with a goal fest today ⚽️ #Ready for more games and excitement! https://t.co/QIzppu1Ywu +06/13/2018,Sports_celeb,@alexmorgan13,Finally home after 3 weeks on the road and nothing better than walking in the door to my pup. It’s not fair how much I love him 😭 +06/13/2018,Sports_celeb,@alexmorgan13,So happy waking up to this news! The World Cup is coming home 🇺🇸 #United2026 https://t.co/qaq0eAoxif +06/12/2018,Sports_celeb,@alexmorgan13,@ddepressedffan @iTunes Hope you enjoy it! +06/12/2018,Sports_celeb,@alexmorgan13,You can finally own #AlexandMe on @iTunes now! Watch me train Reagan to become the MVP of her soccer team… https://t.co/71R1xxWhG7 +06/12/2018,Sports_celeb,@alexmorgan13,@advisor86 I’ll be there💜 +06/12/2018,Sports_celeb,@alexmorgan13,Cleveland we can’t wait to play for you tomorrow!!! USA v China at 7pm at FirstEnergy Stadium. +06/11/2018,Sports_celeb,@alexmorgan13,So excited for #AlexandMe!! https://t.co/aGdw8Dn5Ls +06/11/2018,Sports_celeb,@alexmorgan13,Back to the roots! https://t.co/FPlxTuuaAk +06/10/2018,Sports_celeb,@alexmorgan13,But that assist tho..... 👀🤙🏼 https://t.co/SzIdftvhDr +06/07/2018,Sports_celeb,@alexmorgan13,We’re back! 🇺🇸 Watch us tonight at 9pm ET on @FS1 #USWNT https://t.co/2pPkvb3FCk +06/07/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: Can you believe! 🏳️‍🌈 + +The stars of the #USWNT celebrate equality, diversity, and inclusivity. https://t.co/uqRO4G0VFD" +06/05/2018,Sports_celeb,@alexmorgan13,@Toni_Deion That is my worst nightmare. I’m so sorry. +06/05/2018,Sports_celeb,@alexmorgan13,"RT @benbloomsport: Men = 100/100 +Women = 0/100 + +For the first time ever since Forbes started compiling the world's 100 highest paid sportsp…" +06/05/2018,Sports_celeb,@alexmorgan13,"@FanyVeraPR Not sure of July 21, but should be there August 5!" +06/04/2018,Sports_celeb,@alexmorgan13,We will take that point in Seattle! https://t.co/R0gHJNGGS0 +06/03/2018,Sports_celeb,@alexmorgan13,@MLS @JosefMartinez17 Beast +06/02/2018,Sports_celeb,@alexmorgan13,Oops sorry guys... it’s June 7 in SLC. 🤦🏼‍♀️ https://t.co/abdkULFLTB +06/02/2018,Sports_celeb,@alexmorgan13,So excited to hear we will be repping the rainbow numbers in our upcoming games in honor of #PrideMonth! #USWNT fir… https://t.co/BIZx2qYuCS +06/02/2018,Sports_celeb,@alexmorgan13,Anddddd @LAGalaxy playing some entertaining soccer these first 20 Mins. Always a good environment in Portland. #ESPN2 +06/01/2018,Sports_celeb,@alexmorgan13,I had so much fun at the #AlexAndMe premiere last night! I can’t wait to share it with all of you! Own #AlexAndMe o… https://t.co/3fyWz0rl2X +06/01/2018,Sports_celeb,@alexmorgan13,The #AlexandMe fam! Premiere a success tonight and movie officially out June 12th. ❤️ https://t.co/rVZRz13MkF +05/31/2018,Sports_celeb,@alexmorgan13,So excited to be part of @maroon5’s new #GirlsLikeYou music video with so many incredible women! 🙌🏼 Watch the full… https://t.co/o8ByAGhJpM +05/28/2018,Sports_celeb,@alexmorgan13,Let’s go guys!!! #USAvBOL +05/27/2018,Sports_celeb,@alexmorgan13,@PlayersSayings Never said this. +05/27/2018,Sports_celeb,@alexmorgan13,@FOXSports @heathermitts I will. Brilliant. +05/27/2018,Sports_celeb,@alexmorgan13,We had ourself a game today! (No not the CL final for those who didn’t tune into @lifetimetv) Proud of this team @ORLPride +05/26/2018,Sports_celeb,@alexmorgan13,Gameday! 3:30pm ET on @lifetimetv https://t.co/HwARhfiYAW +05/24/2018,Sports_celeb,@alexmorgan13,Congratulations @OLfeminin on your incredible win!! Another perfect season. #ChampionsLeagueFinal +05/23/2018,Sports_celeb,@alexmorgan13,Back at HOME!! 💜 7:30pm ET tonight from Orlando City Stadium #ORLvNC @ORLPride https://t.co/wGoPIyqgTe +05/22/2018,Sports_celeb,@alexmorgan13,Are you ready?! #WorldCup https://t.co/UurQMeH0yq +05/22/2018,Sports_celeb,@alexmorgan13,@mmarlow13 That’s a great class presentation!! See you in a few weeks 😊 +05/19/2018,Sports_celeb,@alexmorgan13,Been watching every #RoyalWedding show possible on tv since 7am I can’t help myself 😩 +05/16/2018,Sports_celeb,@alexmorgan13,@rgottlieb1 Yes! What a great WC promo. Ready for it to start already! +05/16/2018,Sports_celeb,@alexmorgan13,Is this a joke? It’s Yanny (or Yammy) every time. Without fail. +05/13/2018,Sports_celeb,@alexmorgan13,@kylekrieger I’m about to curse I should@just stop tweeting )$!#%^*+1?! +05/13/2018,Sports_celeb,@alexmorgan13,@ussoccer_wnt @mPinoe Ohhhh whaaaaaaaat. She don’t miss a step. +05/12/2018,Sports_celeb,@alexmorgan13,"So incredibly proud of this team and soooooo happy to end this tough road trip on a win. 💜💜💜💜 Few days off,… https://t.co/b3TqfkvWgD" +05/12/2018,Sports_celeb,@alexmorgan13,Watch us take on Portland today at 3:30pm ET on @lifetimetv! @ORLPride https://t.co/UxAn6z5X42 +05/09/2018,Sports_celeb,@alexmorgan13,That gameday feeling 🙌🏼 🙌🏼@ORLPride vs Utah today at 9pm ET https://t.co/r0vopGBWvu +05/08/2018,Sports_celeb,@alexmorgan13,@jimemaud @jmaynard_21 I love this thread 😩 Jack and Jim at their best. +05/08/2018,Sports_celeb,@alexmorgan13,"@champnella @SienaAgudong @jimdklock When you try to go easy on your director by shooting with your right foot, by… https://t.co/1YjjUewm1c" +05/07/2018,Sports_celeb,@alexmorgan13,"I love this movement! I've teamed up with @UNICEFKidPower, @Sharpie and @PlayersTribune to inspire kids to get acti… https://t.co/TSOqN8Uzzm" +05/03/2018,Sports_celeb,@alexmorgan13,Yesssss climbing on up!! https://t.co/KfeQBL0mxX +05/02/2018,Sports_celeb,@alexmorgan13,Gameday in Chicago! 7:30pm ET 💪🏼 @ORLPride https://t.co/ddZf2qMEA2 +05/01/2018,Sports_celeb,@alexmorgan13,Always thankful for @FIFPro and the support it gives female and male players around the world. https://t.co/tQcMJdBLmv +04/28/2018,Sports_celeb,@alexmorgan13,Gameday! Taking on Seattle tonight at 7:30pm ET at HOME 🙌🏼 @ORLPride https://t.co/hWkuPTmqRS +04/26/2018,Sports_celeb,@alexmorgan13,@zchy3013 @CocaCola @Walgreens New fave(but more of a dessert): mango Diet Coke 😋 +04/26/2018,Sports_celeb,@alexmorgan13,Had fun shooting with @CocaCola and @Walgreens. Summer is almost here! #cokefamily https://t.co/CE0a8ceujq +04/22/2018,Sports_celeb,@alexmorgan13,"No better feeling than a game day at HOME!!! Tonight, 5pmET at Orlando City Stadium. See you soon!" +04/22/2018,Sports_celeb,@alexmorgan13,@AlannaKennedy @Em_surf @ORLPride Yea yea yea yea +04/21/2018,Sports_celeb,@alexmorgan13,Check out @KarlieKloss’s hysterical video with @Chegg for @KodeWithKlossy and then tell every teen girl in the coun… https://t.co/8CbflyrHoi +04/15/2018,Sports_celeb,@alexmorgan13,It’s almost game time! Great day for some footy in the rain. #PORvORL +04/14/2018,Sports_celeb,@alexmorgan13,Family of @UtahRoyalsFC flown out for this sold out home opener. Respect. #NWSLonLifetime +04/13/2018,Sports_celeb,@alexmorgan13,@ASPCA When will they be up for adoption? +04/13/2018,Sports_celeb,@alexmorgan13,Happy Friday the 13th! +04/11/2018,Sports_celeb,@alexmorgan13,"Sport is so incredibly cruel sometimes. Gotta feel for Buffon, a player that has played longer than anyone else on… https://t.co/k18AR4QuMn" +04/11/2018,Sports_celeb,@alexmorgan13,@btsportfootball 🙌🏼🙌🏼🙌🏼 +04/11/2018,Sports_celeb,@alexmorgan13,This week’s champions league is unreal. Harry Kane’s bicycle kick just wiped off the board with Juve’s goals. +04/10/2018,Sports_celeb,@alexmorgan13,"@arlowhite Well, it’s all about the Ref today isn’t it? 🤦🏼‍♀️" +04/09/2018,Sports_celeb,@alexmorgan13,@r0bs3lf This is incredible 👆🏼🙌🏼 +04/08/2018,Sports_celeb,@alexmorgan13,RT @ussoccer_wnt: No need to check your local listings. #USAvMEX gets the @FOXTV treatment at 1:30 pm ET. 📰 » https://t.co/q5DRxgQfTX https… +04/06/2018,Sports_celeb,@alexmorgan13,Get those outfits ready!! https://t.co/RQlWPOtVMC +04/06/2018,Sports_celeb,@alexmorgan13,@Toni_Deion @daniweatherholt I meannnn what can’t you do ⚽️📸👩‍🍳 +04/06/2018,Sports_celeb,@alexmorgan13,Thanks Jax for a fun night! Love you.Mean it. +04/05/2018,Sports_celeb,@alexmorgan13,@lsesselmann Thanks!! +04/05/2018,Sports_celeb,@alexmorgan13,She’s got the moooooves 😂🙈 #gamedaydance https://t.co/FY05gYUqJI +04/05/2018,Sports_celeb,@alexmorgan13,"@ASPCA Done ✅ +Help these animals!!" +04/05/2018,Sports_celeb,@alexmorgan13,I'm so excited to share the #AlexandMe trailer with you all! #AlexandMe will be available digitally starting June 1… https://t.co/D59rJdNdQ2 +04/05/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: #USAvMEX coverage begins at 7 pm ET on @FS1 and @UnivisionSports. + +What to watch for » https://t.co/lZKsPwK1gl https://t.…" +04/04/2018,Sports_celeb,@alexmorgan13,So excited! 🎥 https://t.co/Qk2iv4cW4c +04/03/2018,Sports_celeb,@alexmorgan13,@FOXSoccer Daaaaaaaang. Take a bow is right. +04/01/2018,Sports_celeb,@alexmorgan13,@kochfamily4 I hope so too! Hi Kendall 👋🏼 +03/31/2018,Sports_celeb,@alexmorgan13,Let’s gooooooo @ORLPride somebody get me a goal 🙏🏼 @sydneyleroux @ChiAlreadyKnow @r_hill3 +03/31/2018,Sports_celeb,@alexmorgan13,@nymeca @ORLPride It’s half time. Smiley face back. +03/31/2018,Sports_celeb,@alexmorgan13,What a game. #ElTrafico you have not disappointed. +03/31/2018,Sports_celeb,@alexmorgan13,I love that so much. Thank you #zLAtan +03/31/2018,Sports_celeb,@alexmorgan13,Good luck today ladies! Bring home the win. Watch on @lifetimetv at 3:30p ET @ORLPride https://t.co/T7hanVXmvP +03/28/2018,Sports_celeb,@alexmorgan13,"@stuholden I have to choose a team, can’t I just choose a player? 😂" +03/28/2018,Sports_celeb,@alexmorgan13,The most fitting name for a rivalry match👇🏼🙌🏼 https://t.co/s7jeuKNcEP +03/28/2018,Sports_celeb,@alexmorgan13,@GriffWhalen Is there such thing as Cuban vegan food??? I know Miami has to have that.... +03/28/2018,Sports_celeb,@alexmorgan13,@WillDishong Way more energy now! Don’t need as much sleep or coffee. +03/28/2018,Sports_celeb,@alexmorgan13,"Some of my orlando go-to’s: Sanctum, Ethos Vegan Kitchen, anything from @Toni_Deion’s kitchen, Market on South,… https://t.co/7FpmhQ8eLK" +03/28/2018,Sports_celeb,@alexmorgan13,"3 months eating vegan and now asking for help from my orlando peeps. Send me your fave Vegan fiends spots! Yu share yours, I’ll share mine!" +03/28/2018,Sports_celeb,@alexmorgan13,"Animals should ALWAYS be a part of the family ❤️ My rescue pup, Blue, and I teamed up with @peta to share a glimpse… https://t.co/0KcVCvnAXP" +03/27/2018,Sports_celeb,@alexmorgan13,RT @peta: Soccer champ @alexmorgan13 doesn't just have an #Olympic gold medal — she has a heart made of gold 💛 Watch her and adopted dog Bl… +03/26/2018,Sports_celeb,@alexmorgan13,Happy #AirMaxDay! 👟 https://t.co/KBFByji0zu +03/24/2018,Sports_celeb,@alexmorgan13,@glory243matondo @Emma4Change Yolanda King was something special. I have never seen a more fearless 9 year old. She… https://t.co/iDGnVANxfI +03/24/2018,Sports_celeb,@alexmorgan13,"Incredibly powerful speeches from all the speakers and singers at #MarchForOurLives in DC, especially @Emma4Change. Speechless." +03/24/2018,Sports_celeb,@alexmorgan13,Game day! Kicking off the season tonight at home 💪🏼 See you there! @orlpride https://t.co/L7zlb9RCMw +03/23/2018,Sports_celeb,@alexmorgan13,@bavacado2 @NWSL That would be a dream 🤩 +03/23/2018,Sports_celeb,@alexmorgan13,@JeremyPalenik @NWSL Love it! See you there! +03/23/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer Had to make your cross look good! +03/23/2018,Sports_celeb,@alexmorgan13,Finally the @NWSL season is back! My Orlando peeps who’s coming out tomorrow??? 👀👀👀 730pmET at Orlando City stadium 💜💜💜💜💜 +03/23/2018,Sports_celeb,@alexmorgan13,Loving our new kits!!! https://t.co/a1l5OvdNG5 +03/22/2018,Sports_celeb,@alexmorgan13,"If we fix the Water Burden, we can empower girls to change the world. Take action for #WorldWaterDay with… https://t.co/B4lDYp7Ado" +03/22/2018,Sports_celeb,@alexmorgan13,RT @ManUtd: #MUFC has submitted an application to the @FA to establish a professional women’s team in the second tier of the Women’s Super… +03/21/2018,Sports_celeb,@alexmorgan13,@Toni_Deion Lol yes whatchu got +03/21/2018,Sports_celeb,@alexmorgan13,@johnstons08 They look pretty clean. +03/21/2018,Sports_celeb,@alexmorgan13,"Now that hubby isn’t in Orlando anymore, I have soooooo much time for new shows. Please share good ones!! 🙏🏼" +03/20/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer So it’s not enough for them to live in cages? No let’s parade them around the city chained too. +03/19/2018,Sports_celeb,@alexmorgan13,RT @FIFPro: Finland 🇫🇮is investigating if the national football association is discriminating against the women’s national team. https://t.… +03/18/2018,Sports_celeb,@alexmorgan13,"RT @ORLPride: You have to be at Orlando City Stadium this Saturday. + +Tickets: https://t.co/qcC5XdSCrB https://t.co/bALJK0ezP0" +03/15/2018,Sports_celeb,@alexmorgan13,@LVEtech Awesome! Great job girls +03/09/2018,Sports_celeb,@alexmorgan13,It’s great to see two organizations with strong female leadership come together to support gender equality @Bumble… https://t.co/Uku91RnWF3 +03/09/2018,Sports_celeb,@alexmorgan13,"My dog has officially peed on a fire hydrant. Very proud mom. Yes, apparently dogs actually pee on fire hydrants." +03/09/2018,Sports_celeb,@alexmorgan13,RT @beatsbydre: Know your worth and don’t settle for less. @AlexMorgan13 #InternationalWomensDay #PressForProgress https://t.co/4rYxQ4vlkB +03/08/2018,Sports_celeb,@alexmorgan13,Honored to be named among the best in women’s football for 2017! A great way to start off… https://t.co/2FwD5LTaMo +03/07/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: The only words you need to hear this morning: IT'S MATCHDAY! 🇺🇸 + +Win and we lift the 🏆 » https://t.co/T8ekOiKMLu https://…" +03/06/2018,Sports_celeb,@alexmorgan13,@heyOchao Hey girls!! Good luck have fun! +03/05/2018,Sports_celeb,@alexmorgan13,@ELS_9_FRANCE @equipedefrance Congratulations Eugenie! +03/05/2018,Sports_celeb,@alexmorgan13,"Serena Williams has proven time and time again, there’s no wrong way to be a woman. #UntilWeAllWin https://t.co/tZih7485cg" +03/05/2018,Sports_celeb,@alexmorgan13,Yesterday was fun celebrating these Olympic Champions!🥇#TeamUSA #USWNTSUNITED https://t.co/YkkN4Sqbfx +03/05/2018,Sports_celeb,@alexmorgan13,@LAGalaxy Yesssssssuh. +03/05/2018,Sports_celeb,@alexmorgan13,@believethatwe Sassy worms @kelleymohara +03/04/2018,Sports_celeb,@alexmorgan13,@thebriandineen Thanks!! +03/03/2018,Sports_celeb,@alexmorgan13,RT @FIFPro: Congratulations @AlexMorgan13! 👏 You've been nominated for the #WomensWorldXI. Read more 👉 https://t.co/heaqoPdGLu https://t.co… +03/02/2018,Sports_celeb,@alexmorgan13,Never felt more relieved than when our plane touched down just now. North East why you gotta bring the bad weather now???? +03/02/2018,Sports_celeb,@alexmorgan13,@NairnChristine @Cars_Pickett16 Amazon that shhhht. +03/02/2018,Sports_celeb,@alexmorgan13,"RT @heathermitts: March 23rd, Congress will decide to allows the BLM to destroy healthy wild horses and burros, and the Senate version, whi…" +03/02/2018,Sports_celeb,@alexmorgan13,@zchy3013 Different... could feel my toes/feet but couldn’t feel my face/neck/legs. Wind made my body ache!! +03/02/2018,Sports_celeb,@alexmorgan13,"Columbus. I can’t believe all 15,000 of you stayed out in that weather tonight. So much respect. First win and onto… https://t.co/rjhOnRFKSp" +03/01/2018,Sports_celeb,@alexmorgan13,The #SheBelievesCup kicks off today! Watch us take on Germany tonight at 7pm ET on ESPN2 🇺🇸 https://t.co/UtiKDZLFfw +03/01/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer @Toni_Deion 3 vegans and 3 watchless wrists. SMH +02/28/2018,Sports_celeb,@alexmorgan13,"RT @ussoccer_wnt: TOMORROW. +TOMORROW. +WE LOVE YA TOMORROW. + +You guys, #SheBelievesCup 2018 is so soon. Be there » https://t.co/jVlbijw9re…" +02/28/2018,Sports_celeb,@alexmorgan13,RT @ACLU: No. https://t.co/Qzx36gsIG7 +02/25/2018,Sports_celeb,@alexmorgan13,"@jamiemorris03 I think it’s important you are there as well. You are also her family, and the soccer community help… https://t.co/mvko2cvm5O" +02/25/2018,Sports_celeb,@alexmorgan13,@jamiemorris03 @ussoccer_wnt @ussoccer @PrincipalMSD @NeverAgainMSD @MSDSOCCER1 @MSD_Soccer @Emma4Change We would a… https://t.co/NZCDpe4bAy +02/25/2018,Sports_celeb,@alexmorgan13,RT @ussoccer_wnt: Thank you so much to everyone who helped @jamiemorris03's tweet spread and make its way to us. We got in touch with Alyss… +02/24/2018,Sports_celeb,@alexmorgan13,"@AnnOdong Formiga is the OG. So much respect, she can still hold her own on the intl level in sure of that." +02/23/2018,Sports_celeb,@alexmorgan13,What a game! Congrats on Gold!! #TeamUSA https://t.co/X2SUlOmPkL +02/22/2018,Sports_celeb,@alexmorgan13,Oh. My. God. This is so extremely infuriating!!! https://t.co/CXqYDei2ya +02/22/2018,Sports_celeb,@alexmorgan13,"RT @NWSL: Prepare to be amazed and astonished. The #NWSL is back on March 24. + +🗓️ full schedule | https://t.co/7OJvYkJ364 +📺 on @lifetimetv…" +02/22/2018,Sports_celeb,@alexmorgan13,RT @TeamUSA: #USA is on the board with a goal by @HilaryKnight! LET THEM HEAR YOU #TeamUSA fans! 🗣 https://t.co/5SYoijnIKa +02/22/2018,Sports_celeb,@alexmorgan13,"To the students of Stoneman Douglas High School: Your bravery and courage is inspiring. No teenager, no human shoul… https://t.co/Cm4gMKmVUA" +02/22/2018,Sports_celeb,@alexmorgan13,Let’s go @usahockey!!!!!!! Get that 🥇 I’ll be cheering loud for you all! https://t.co/uce9KWbVPV +02/22/2018,Sports_celeb,@alexmorgan13,@LilyMaeSilver Awww they are so sweet ❤️ +02/21/2018,Sports_celeb,@alexmorgan13,#LoveYourPetDay #Diva #BlueShaquilleOneal https://t.co/CQEvQ1RaU1 +02/21/2018,Sports_celeb,@alexmorgan13,Shoutout to the biggest diva there is. #LoveYourPetDay even though I love my boy Blue everyday. https://t.co/VmchiuHqUc +02/20/2018,Sports_celeb,@alexmorgan13,@ussoccer_wnt @kohara19 @Jaguars @EverBankField Wormmmmmms 🐛 +02/19/2018,Sports_celeb,@alexmorgan13,@ChiAlreadyKnow Howwwww is this my first time seeing this. Too good!! 🤣 +02/17/2018,Sports_celeb,@alexmorgan13,@Toni_Deion @StellaMcCartney @AngelaandRoi 😍🤩😍 +02/17/2018,Sports_celeb,@alexmorgan13,🛬 Orlando 💜💜💜 +02/17/2018,Sports_celeb,@alexmorgan13,"Had a blast at this #EarlyMan screening! Make sure to go see it, in theaters today! https://t.co/kzRiq63Usi" +02/15/2018,Sports_celeb,@alexmorgan13,RT @MichaelDavSmith: Police confirm an AR-15 rifle was used in today's school shooting. AR-15 style rifles were used in the Texas church sh… +02/14/2018,Sports_celeb,@alexmorgan13,@kohara19 X is the best. +02/14/2018,Sports_celeb,@alexmorgan13,PRESALE for #USAvMEX ends 2/14 at 8am CT! Get your tickets now with code: C1MATCH at https://t.co/2WfzNpxQlL https://t.co/U0rtswFlhk +02/12/2018,Sports_celeb,@alexmorgan13,"RT @USWNTPlayers: Congratulations, #USSFPresident @CACSoccer. The @USWNTPlayers look forward to productive and respectful relationship with…" +02/11/2018,Sports_celeb,@alexmorgan13,@jordangeli @TeamUSA Yessssss thank you for this 🤣🙌🏼 +02/11/2018,Sports_celeb,@alexmorgan13,RT @TheHumaneLeague: Did someone say vegan donuts!? RT if you'd devour any of these 😍🍩 https://t.co/TICOXcb8CV +02/11/2018,Sports_celeb,@alexmorgan13,@stuholden Appreciate what you do for us athletes Stu. +02/10/2018,Sports_celeb,@alexmorgan13,@CACSoccer @ussoccer Congratulations Carlos! +02/09/2018,Sports_celeb,@alexmorgan13,Great two weeks of training with @BeastModeSoccer... I think 500 shots a week warrants a weekend off! https://t.co/r1NAVmcmEU +02/09/2018,Sports_celeb,@alexmorgan13,@BeastModeSoccer Why don’t we compile the videos of netball from the last 2 weeks... +02/09/2018,Sports_celeb,@alexmorgan13,@NBCOlympics @SchildMorgan My knees ache so bad watching this. +02/09/2018,Sports_celeb,@alexmorgan13,Good luck to all the #TEAMUSA athletes competing in the Winter Olympics!! #Olympics2018 +02/08/2018,Sports_celeb,@alexmorgan13,"RT @FIFAWWC: OFFICIAL! +Opening match in Paris, semi-finals and final in Lyon. +All you want to know is in the #FIFAWWC🇫🇷 schedule. + +Le cale…" +02/07/2018,Sports_celeb,@alexmorgan13,Celebrating today is important but don't forget to celebrate girls & women in sport every day #NGWSD https://t.co/a4HgUD1VJg +02/07/2018,Sports_celeb,@alexmorgan13,@DiCiccoMethod @MichelleAkers10 ❤️❤️❤️❤️ +02/06/2018,Sports_celeb,@alexmorgan13,Sounds simple enough to me 🤔👌🏼 https://t.co/Y6DSmrkkCP +02/05/2018,Sports_celeb,@alexmorgan13,Congrats @Eagles on winning the Super Bowl! #Champions +02/05/2018,Sports_celeb,@alexmorgan13,@FARMUSA @FloydMayweather F*ck this. Makes me so mad. +02/05/2018,Sports_celeb,@alexmorgan13,Zach!!! 2 minutes left let’s hold the lead!!! #SuperBowlLII +02/03/2018,Sports_celeb,@alexmorgan13,Back together baby!!! 🔥 🔥 🔥 https://t.co/SaNyMXfw65 +01/26/2018,Sports_celeb,@alexmorgan13,"Lights, camera, action 🎥 https://t.co/8MraNW2oKh" +01/26/2018,Sports_celeb,@alexmorgan13,@SilverMikeA @janinebeckie4 @BrookeLB93 I’ll be around for another week if we can make it happen! +01/25/2018,Sports_celeb,@alexmorgan13,His training skills are mediocre but his photography skills on the other hand.... @BeastModeSoccer always bringing… https://t.co/vAeglf3I21 +01/24/2018,Sports_celeb,@alexmorgan13,"We must work everyday, until we all win. #EQUALITY https://t.co/aPjqOD9rIa" +01/22/2018,Sports_celeb,@alexmorgan13,"That’s how we like to start off 2018! Great team win, and huge 1st cap congrats to @tierna_davidson and @smccaskill_21! #USWNT" +06/28/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Loved following along with our #ShowdownNY athletes? Get these NIKE tees and gear now and keep summer with you all year r… +06/28/2018,Sports_celeb,@SteveNash,👀👀👀👀👀👀👀 https://t.co/NBEMraG4M2 +06/28/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: This humanitarian crisis is happening here, to children and families in our country, by our government. Groups like @CHIR…" +06/27/2018,Sports_celeb,@SteveNash,"RT @CHIRLA: Thousands of Angelinos are +​set to hit​ the streets of LA this ​Saturday, ​June 30th to ​speak up for family unity​. ​Will you…" +06/27/2018,Sports_celeb,@SteveNash,Harsh but fair https://t.co/KsVtP8FRMF +06/25/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Proud to know the wonderful people @HRC, working so inclusively to bring equality to our communities. #athletesforequalit…" +06/24/2018,Sports_celeb,@SteveNash,@GuinnessUS @SteveNashFdn @brfootball @Cipriani @CalenCarr @lilypadwastaken @LanceFresh Thank you! +06/24/2018,Sports_celeb,@SteveNash,Kane +06/23/2018,Sports_celeb,@SteveNash,Sonny!!! +06/23/2018,Sports_celeb,@SteveNash,Shin-charito +06/21/2018,Sports_celeb,@SteveNash,I think sampaoli owns a string of nightclubs in Miami. +06/21/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Missed the Merch? Get your 2018 #ShowdownNY tees today! Note: it may have been raining when we took this shot - dry t-shi… +06/21/2018,Sports_celeb,@SteveNash,"More soon, but what a day and night that was - a big thanks to @GuinnessUS for hosting us at Cipriani’s last night… https://t.co/0KpITOB2nC" +06/20/2018,Sports_celeb,@SteveNash,You’ll be missed bro! Although @CharlieDavies9 says they’ll forget all about you after his debut tonight. https://t.co/xSVXrdBQlZ +06/20/2018,Sports_celeb,@SteveNash,The answers to so few of life’s questions are ever black and white . . . unless you’re at the @brfootball x… https://t.co/moBRfCP1QW +06/20/2018,Sports_celeb,@SteveNash,SHOWDOWN DAY!! Get to and from #ShowdownNY and our #free FanFest on the Lower East Side with @Lyft! Enter code Show… https://t.co/wqtvLeqecy +06/20/2018,Sports_celeb,@SteveNash,@graemelesaux14 Anyone have a ronaldinho wig? +06/20/2018,Sports_celeb,@SteveNash,@kylemartino I’ll talk to the sporting director... +06/20/2018,Sports_celeb,@SteveNash,Big thanks to @brkicks x @Kickstradomis for the collab! My touch better be on point in these. Can’t wait to see eve… https://t.co/dZrNbVd1z0 +06/18/2018,Sports_celeb,@SteveNash,Kane +06/16/2018,Sports_celeb,@SteveNash,@ToddWuschnig #ToddWuschnig #BigBusiness https://t.co/0lvziHrN88 +06/15/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Love this @USATODAY @usatodaysports piece on @SteveNash, @KlayThompson and #ShowdownNY (and echo the hope of getting @Ste…" +06/15/2018,Sports_celeb,@SteveNash,Ginga irmão! Joga bonito! https://t.co/X7Hbc2K7Dd +06/14/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Us every year: ""We don't release player names before the match."" +Steve every year: https://t.co/K0V4182hFB" +06/14/2018,Sports_celeb,@SteveNash,Solid #ShowdownNY debut from @JoakimNoah! https://t.co/SMBahkL7a8 +06/14/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: More #ShowdownNY #trivia! For a ticket to the @stevenash Foundation #ShowdownNY (remember you must be following @stevenas… +06/14/2018,Sports_celeb,@SteveNash,But your lips aren’t moving? https://t.co/o3G0jhOI1U +06/14/2018,Sports_celeb,@SteveNash,FIFA....oh dear 🤦🏻‍♂️ +06/14/2018,Sports_celeb,@SteveNash,RT @jimmykimmel: 1) Call your reps at (202) 224-3121- tell them to END the separation of families at the border (ask your Senators to pass… +06/14/2018,Sports_celeb,@SteveNash,"RT @MikeQuarino: Less than 24 hours until the #WorldCup, and exactly one week until the @SteveNashFdn #ShowdownNY. What a great time for s…" +06/13/2018,Sports_celeb,@SteveNash,"If you win and are coming to #ShowdownNY, I’ll sign the tee (unless you like clean clothing) . . . . Tickets:… https://t.co/4uaCi1UuJL" +06/13/2018,Sports_celeb,@SteveNash,@chicagospurs Correct +06/13/2018,Sports_celeb,@SteveNash,"1st #ShowdownNY! @ClaudioReyna took the lead. @Robbie9Fowler, Steve Mcmanaman came from Liverpool. @BaronDavis, J K… https://t.co/8GiqzOwvnD" +06/12/2018,Sports_celeb,@SteveNash,You know what? I just don’t need this abuse in my life... https://t.co/CtHxO7atEf +06/10/2018,Sports_celeb,@SteveNash,Who wants to mark this teenager @AlphonsoDavies ?? 👂🏼🤞🏽✌🏾👷🏼‍♂️💩 https://t.co/G0ZpooGu6j +06/10/2018,Sports_celeb,@SteveNash,💪🏽⚽️❤️ https://t.co/0eWaKOLVsh +06/08/2018,Sports_celeb,@SteveNash,"11th annual @brfootball x @SteveNashFdn Showdown, June 20th NYC. Get your tix here and get involved!… https://t.co/07VfUpGhlN" +06/08/2018,Sports_celeb,@SteveNash,Always amazed at the skills of some of #ShowdownNY’s bigs - @bismackbiyombo has feet! Don’t miss this year:… https://t.co/Z8mYYBBZ37 +06/02/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: We’re proud to welcome @MLSWORKS to #ShowdownNY on June 20th, and to be a part of the @MLS community, where everyone is w…" +06/01/2018,Sports_celeb,@SteveNash,🤔🧐 https://t.co/dvrDl2aSqU +05/31/2018,Sports_celeb,@SteveNash,"So much fun with @landondonovan and Ted Lasso - can’t wait to bring #ShowdownNY back! Get there, people:… https://t.co/GqK23FQ0qa" +05/29/2018,Sports_celeb,@SteveNash,"Started working last year when we were relegated.. learned from our mistakes, made a plan, got a ton of discipline… https://t.co/lSfiKGuU8r" +05/28/2018,Sports_celeb,@SteveNash,"Gracias, Rafa!! https://t.co/lLnuxdvCZ9" +05/28/2018,Sports_celeb,@SteveNash,"RT @kylemartino: What going from 3rd to 2nd division looks like in 🇪🇸 btw. + +❤️&⚽️ https://t.co/PjgSTzfUr5" +05/28/2018,Sports_celeb,@SteveNash,RT @stuholden: Vamos @RCD_Mallorca - scenes from Promotion parade in Palma via @manoloreina28 https://t.co/zvaMkRyNuY +05/27/2018,Sports_celeb,@SteveNash,Gracias Marco y felicidades por tu champions! https://t.co/gmiZeICnvQ +05/27/2018,Sports_celeb,@SteveNash,"Hire slow, fire fast. We’ll see how you do the rest of the trip. https://t.co/3sYa48o2iA" +05/25/2018,Sports_celeb,@SteveNash,I’m down! https://t.co/VWdUqBsciJ +05/24/2018,Sports_celeb,@SteveNash,. @lufthansa incredibly dissapointing. This will be our lasts flight together. +05/24/2018,Sports_celeb,@SteveNash,We talking bout practice???? https://t.co/i4ZuDMacp9 +05/21/2018,Sports_celeb,@SteveNash,Enjoying the last few minutes of Andres Iniesta‘s historic @FCBarcelona career. One of my all time favorites. Gra… https://t.co/9wQGjEWTIC +05/20/2018,Sports_celeb,@SteveNash,Our fans were incredible today! @RCD_Mallorca https://t.co/CREs3m9mgw +05/20/2018,Sports_celeb,@SteveNash,"@Jokowashere Good to know, thank you. See you in Miranda de Ebro!" +05/20/2018,Sports_celeb,@SteveNash,One more game for promotion! Proud of everyone who’s worked hard to put our club in this position. See you next wee… https://t.co/RtwpXDWeIY +05/20/2018,Sports_celeb,@SteveNash,Vamos! https://t.co/M8HeR94oJK +05/20/2018,Sports_celeb,@SteveNash,Well done fellas!! https://t.co/eOyqxY4JN4 +05/19/2018,Sports_celeb,@SteveNash,"RT @MarcHilberer: the number of school shootings that have happened since the year 2000 around the world: + +ENGLAND: 0 +GREECE: 1 +NETHERLAN…" +05/19/2018,Sports_celeb,@SteveNash,RT @SteveKerr: Over 75% of school shootings start with kids having access to unsecured and/or unsupervised guns at home. Gun owners have a… +05/17/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Love being #sponsoredbyLyft - thanks, @Lyft, for all you do! #greatassist https://t.co/Lk0ovfXRyQ" +05/17/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: We’re #springcleaning and making room in the locker room: all #ShowdownNY tees in our Make An Assist store now available… +05/16/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Coaches Ted Lasso and Beard couldn’t have been prouder of Steve and team at our 2016 Showdown - or could they? As we cou… +05/14/2018,Sports_celeb,@SteveNash,Dibs on a 2010? #assist #ShowdownNY https://t.co/IjhppDSFmF +05/13/2018,Sports_celeb,@SteveNash,@txbi_1 Zero guarantees any manager can win trophies especially when you consider spurs have a net spend of 400k pe… https://t.co/xxfPMqxoXE +05/13/2018,Sports_celeb,@SteveNash,Wouldn’t trade Pochettino for anyone... https://t.co/0EfoXkcsWI +05/13/2018,Sports_celeb,@SteveNash,👏👏🏽👏🏿 https://t.co/CkY0h8nrJg +05/13/2018,Sports_celeb,@SteveNash,Yes. #COYS +05/12/2018,Sports_celeb,@SteveNash,Felicidades! Excited for the playoff! https://t.co/wj31ce02C1 +05/10/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Alright, #CA - your turn! Register to vote today : @votedotorg (https://t.co/rtBb0zgzGo) has everything you need to get…" +05/10/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: With 6 wks to go til @BleacherReport presents #ShowdownNY, we’re counting down our top 6 #goal celebrations! This ‘10 mom…" +05/09/2018,Sports_celeb,@SteveNash,Had a mild stroke watching @SpursOfficial seal their champions league place today. Proud of my boys. #COYS ⚽️🏋🏿‍♂️💪🏽 +05/09/2018,Sports_celeb,@SteveNash,Our @SteveNashFdn #ShowdownNY is my El Classico + Wimbledon rolled into one - very excited to have the team… https://t.co/QXMWjB4Xo9 +05/09/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: It’s true! Excited to welcome @BleacherReport to #ShowdownNY! Tickets and info at https://t.co/dw39DlTYV1 - be there Ju… +05/06/2018,Sports_celeb,@SteveNash,Congratulations to all at our club for their efforts this season winning the league. Good luck preparing for the pr… https://t.co/aNGemdJFiO +05/03/2018,Sports_celeb,@SteveNash,Yes!! Go suns! https://t.co/1RSRTc5mqq +05/02/2018,Sports_celeb,@SteveNash,"Thank you, @Socceroof (and the team of Jonathan, JD, and @MearyJerome), for hosting our @stevenashfdn… https://t.co/MblJpk03a1" +05/01/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Just put a few of our leftover #CharityShield jerseys up for donation in the Make An Assist store - get yours today and g… +04/30/2018,Sports_celeb,@SteveNash,Get it Cap!!! https://t.co/cPlxiz3Mr2 +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: A big thank you to @thegemsaloonnyc @tableauwater @GuinnessUS @DrinkBODYARMOR @hotshotdrinks @greensplus and @HaloTopCrea… +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: So happy to have @NYCFC with us at the #CharityShield today @Socceroof! https://t.co/NcEId2h6ol +04/29/2018,Sports_celeb,@SteveNash,RT @SteveNashFdn: Team Saanich with an opening match defeat by Rocinha but all is buzzing at the #CharityShield here at @socceroof! Thanks… +04/29/2018,Sports_celeb,@SteveNash,Quite a night last night - thank you to Guinness for hosting #CharityShield owners and players @thegemsaloonnyc and… https://t.co/fVlDhPbTWu +04/27/2018,Sports_celeb,@SteveNash,"Loved it! Luca, too. https://t.co/fGpmduAHIJ" +04/27/2018,Sports_celeb,@SteveNash,Kicking off a great weekend for soccer in the city tonight with the #CharityShield - keep it going: head to Yankee… https://t.co/kXax7aBB3G +04/27/2018,Sports_celeb,@SteveNash,I support @azedunited and these educators deserve proper support and funding from the AZ state legislature! https://t.co/Rv2x3MhiAI +04/26/2018,Sports_celeb,@SteveNash,Our kits are looking goooooood! Thanks to @Nike and @GuinnessUS for bringing three of my favourite things together… https://t.co/UL4g6u7X1X +04/25/2018,Sports_celeb,@SteveNash,"Come play soccer with me, @CharlieDavies9 @stuholden in NYC this Saturday April 28th. Sign up at… https://t.co/mMyjyc00Ut" +04/21/2018,Sports_celeb,@SteveNash,"Thanks to @thegemsaloonnyc for this! Looking forward to meeting the owners, and competing in our second… https://t.co/HvbxLV9xa4" +04/20/2018,Sports_celeb,@SteveNash,Can’t. Wait. Who’s on my team? https://t.co/6VTOcOPusx #CharityShield https://t.co/0ke3xMh2xI +04/19/2018,Sports_celeb,@SteveNash,I got a photo with the legend Ozzie! Watched him in awe as a little boy https://t.co/ICsANWAYBx +04/19/2018,Sports_celeb,@SteveNash,"Knowing Pop, it’s fair to assume Erin Popovich was an absolute legend. My deepest sympathies to Pop and his daughters." +04/13/2018,Sports_celeb,@SteveNash,"RT @SteveNash: My favourite pub for many reasons, including this one ⬇️: register to be there with us for the @SteveNashFdn #CharityShield…" +04/12/2018,Sports_celeb,@SteveNash,"My favourite pub for many reasons, including this one ⬇️: register to be there with us for the @SteveNashFdn… https://t.co/Xryi2LJTyj" +04/08/2018,Sports_celeb,@SteveNash,Vamos @RCD_Mallorca !! 3-1 https://t.co/PAOgCjzUcg +04/08/2018,Sports_celeb,@SteveNash,Sending all our love to these families and their community. So so sorry. https://t.co/NbjDbGoIVT +04/03/2018,Sports_celeb,@SteveNash,Congratulations to Hank and Danny Sedin on their historic careers. Thank you for being incredible role models to a… https://t.co/zT0oaZqECu +04/01/2018,Sports_celeb,@SteveNash,How good is Christian Eriksen?! +04/01/2018,Sports_celeb,@SteveNash,"Wow, thank you Mr Prime Minister! Oh Canada! 🇨🇦 https://t.co/5rul5309kg" +03/28/2018,Sports_celeb,@SteveNash,One month to go - let's do this! Sign up to have dinner with us and play some soccer in the city. . . .… https://t.co/LrEgrlOW31 +03/26/2018,Sports_celeb,@SteveNash,Can't wait. . . . https://t.co/l59yhVWxdZ +03/26/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Hey #AZ! Today is the last day to register to vote in the April 24th general election in #AZ08 - do it, and make your vo…" +03/25/2018,Sports_celeb,@SteveNash,"RT @Everytown: From Anchorage to Atlanta, yesterday millions of Americans marched for common-sense gun safety laws. In a few months, we'll…" +03/25/2018,Sports_celeb,@SteveNash,@TiagoEstv Obrigado! +03/24/2018,Sports_celeb,@SteveNash,@jasonlee1972a @pyle27 There is no sound argument to not wanting common sense gun laws. And there’s no common groun… https://t.co/uR1QnQdSzs +03/24/2018,Sports_celeb,@SteveNash,"@freemen_14 Yes, I’m pro choice. I don’t believe in mass shootings with semi automatic weapons." +03/24/2018,Sports_celeb,@SteveNash,"Watch Full Ep: https://t.co/PhZV7DOpwQ + +When shooting the basketball... something that is often overlooked, but pa… https://t.co/aPTZNbS0Hj" +03/24/2018,Sports_celeb,@SteveNash,I see you’ve really thought this through... https://t.co/LXUu1UqdCW +03/24/2018,Sports_celeb,@SteveNash,Already have and will again. https://t.co/Hsgaz3tMLF +03/24/2018,Sports_celeb,@SteveNash,. @marchforourlives @everytown Manhattan —> Hermosa Common sense gun laws #neveragain https://t.co/DYSFtowaOn +03/24/2018,Sports_celeb,@SteveNash,RT @kylemartino: Off to the train station to head down to DC & take a stand. Joining all the amazing people at #MarchForOurLives. #NeverAga… +03/24/2018,Sports_celeb,@SteveNash,RT @Dionsmusica: Heading to Washington D.C for the #MarchForOurLives with a group of students! Holla! #EnoughIsEnough #ChicagoStandUp #Stud… +03/24/2018,Sports_celeb,@SteveNash,RT @Everytown: NYC is getting ready to #MarchForOurLives. 💪 https://t.co/JHFxhkuR3J +03/24/2018,Sports_celeb,@SteveNash,I’m marching in LA today. Please find your nearest march and support this life and death matter. #NeverAgain https://t.co/CFMviwgUPu +03/22/2018,Sports_celeb,@SteveNash,👀 https://t.co/1p7BlGej37 +03/21/2018,Sports_celeb,@SteveNash,"Hyped for the 2nd annual @SteveNashFdn Charity Shield NYC April 27/28. Come play w/ me, @stuholden & win some doug… https://t.co/hDxHOnx212" +03/21/2018,Sports_celeb,@SteveNash,Can't wait: https://t.co/wU1q9rufiM +03/17/2018,Sports_celeb,@SteveNash,Had the honor of taking the post game selfie with our @RCD_Mallorca U18’s after their 2-1 win vs @RCDEspanyol VAM… https://t.co/Yk8BwOLRka +03/17/2018,Sports_celeb,@SteveNash,Can't wait for round 2! #CharityShield https://t.co/y87ZcIzBOn +03/16/2018,Sports_celeb,@SteveNash,❤️🖤 https://t.co/B5svvhObuU +03/16/2018,Sports_celeb,@SteveNash,Still buzzing from a great day at Hotspur way! Thank you @SpursOfficial #COYS https://t.co/l2fRSxQEQy +03/15/2018,Sports_celeb,@SteveNash,I mentioned that to him today https://t.co/ApanXwOh8f +03/15/2018,Sports_celeb,@SteveNash,Great time shooting this morning with my buddy @Robbie9Fowler. Not just a Liverpool legend but a fantastic fella! https://t.co/rSTD160A2d +03/14/2018,Sports_celeb,@SteveNash,Amazing day! https://t.co/mFJtKbGFza +03/14/2018,Sports_celeb,@SteveNash,Merci à toi! 💪🏼⚽️ https://t.co/RXZh2g9t08 +03/14/2018,Sports_celeb,@SteveNash,"Watch Full Ep 06: https://t.co/cvaTq7US9b + +We worked on creating space in order to take charge and put opponents i… https://t.co/jHFzHYr2Fo" +03/11/2018,Sports_celeb,@SteveNash,Amazing. I cried too.. https://t.co/q6FAxU9O0Q +03/11/2018,Sports_celeb,@SteveNash,Love me some Sonny! #COYS +03/11/2018,Sports_celeb,@SteveNash,"@hillimpact @SpursOfficial @Arsenal Your answer is even better than mine. My mum, Dad, grandparents, aunts, uncles,… https://t.co/Mlv5nckMLm" +03/11/2018,Sports_celeb,@SteveNash,Shin-Min Son!! +03/09/2018,Sports_celeb,@SteveNash,"@russbengtson @SteveFranchise3 What, travel? Sometimes." +03/09/2018,Sports_celeb,@SteveNash,@russbengtson @SteveFranchise3 May be hard to believe but he was a little more explosive than me +03/09/2018,Sports_celeb,@SteveNash,"So much bigger than basketball. Poverty, race, violence, addiction, loss. Amazing @SteveFranchise3 is still here a… https://t.co/CPMMZPAeAu" +03/08/2018,Sports_celeb,@SteveNash,@Cnyari @brfootball Thank you! +03/08/2018,Sports_celeb,@SteveNash,@HowardBeck Thanks! Gluten free? +03/08/2018,Sports_celeb,@SteveNash,@Nakerman Cheers! +03/08/2018,Sports_celeb,@SteveNash,@kylemartino Though I don’t have your touch and will never have your hair. Possible shift to radio? +03/08/2018,Sports_celeb,@SteveNash,RT @kylemartino: So pumped for my man @SteveNash. The man knows footy and boy can he play it too! Congrats brother. https://t.co/VclpoO12Uw +03/07/2018,Sports_celeb,@SteveNash,@gianluigibuffon .@gianluigibuffon grande Gigi. Buona Fortuna +03/07/2018,Sports_celeb,@SteveNash,@Jeongavic He scored off his shin though +03/07/2018,Sports_celeb,@SteveNash,Shin-Ming Son!!!!!!!!!!!!!!! #COYS +03/07/2018,Sports_celeb,@SteveNash,This is amazing! Except the let down part! Good luck Gigi. I hope Harry Kane shows you around London! https://t.co/YaL8zGIo3A +03/06/2018,Sports_celeb,@SteveNash,I signed the #MarchForOurLives petition. So proud and inspired by all these young people fighting for what they bel… https://t.co/NUS2XmAdwe +03/05/2018,Sports_celeb,@SteveNash,Had a blast on @PaulRabil ‘s podcast Suiting Up. Not only an incredible athlete but love his approach to media. Als… https://t.co/RFIjgzu4qi +03/05/2018,Sports_celeb,@SteveNash,Go Caps Go! Good start to the season with a 2-1 win over Montreal. 27k out to support. @WhitecapsFC +03/04/2018,Sports_celeb,@SteveNash,"Looking forward to today's @MLS @WhitecapsFC home opener at 3 o’clock PT, with our largest home opener crowd ever.… https://t.co/iig0g0i7gX" +03/03/2018,Sports_celeb,@SteveNash,Didn’t need my influence bro. #class #coys https://t.co/ISqoEWchBY +03/01/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: EPISODE 15: Link for the full conversation: https://t.co/CqSsj9qgBt + +This week we talk about @NBA All Star Weekend, basket…" +02/28/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Very excited to see @DICKS take such positive, powerful, accountable action. Thank you for helping to protect kids!" +02/28/2018,Sports_celeb,@SteveNash,RT @dannykanell: Pretty cool thing happened to me today... https://t.co/2cUDt04BwG +02/27/2018,Sports_celeb,@SteveNash,RT @DwyaneWade: This is Joaquin Oliver. He was one of the 17 young lives that were lost tragically at Douglas HighSchool in Parkland. Joaqu… +02/25/2018,Sports_celeb,@SteveNash,Kane #COYS +02/25/2018,Sports_celeb,@SteveNash,RT @Delta: Delta is reaching out to the NRA to let them know we will be ending their contract for discounted rates through our group travel… +02/25/2018,Sports_celeb,@SteveNash,You made us look good. Thanks @dmorey for having me. https://t.co/CWJdl5JMhg +02/23/2018,Sports_celeb,@SteveNash,"Vlog 7: https://t.co/DDQyfZQ4ZF + +My cousin Ezra is running the 2018 LA and Chicago Marathons for individuals with… https://t.co/Va1MbtOJD9" +02/23/2018,Sports_celeb,@SteveNash,"RT @KDTrey5: The Durant Center has been a dream of mine for a long time, excited to announce it's finally happening in Prince George's Coun…" +02/23/2018,Sports_celeb,@SteveNash,Love this guy. Keep fighting Bobby! https://t.co/rHUI6hvJ9d +02/22/2018,Sports_celeb,@SteveNash,I'm so inspired by the young people in America standing up for their future. I really believe it's our best chance… https://t.co/UbYmVmzESX +02/18/2018,Sports_celeb,@SteveNash,When the North London Derby comes to all star weekend https://t.co/TGPz7tfjBd +02/17/2018,Sports_celeb,@SteveNash,"For what, a week, a month, a year? Gun deaths in the uk are unheard of compared to our country. Saved countless li… https://t.co/0xE5qKs6TH" +02/17/2018,Sports_celeb,@SteveNash,@KingJames has changed the world for the better hundreds of times over. He’s a giver and a visionary who’s impactin… https://t.co/EmCW3snSbt +02/17/2018,Sports_celeb,@SteveNash,@KingJames has changed the world for the better hundreds of times over. He’s a giver and a visionary doing things e… https://t.co/XI6KtVjzDi +02/15/2018,Sports_celeb,@SteveNash,Stick to sports I know. Why not emulate the success of many countries limiting access to guns and save thousands of… https://t.co/t2q47TMzIl +02/15/2018,Sports_celeb,@SteveNash,"This is a brilliant argument. ‘You’re rich, so you’re wrong’. The probability of a good outcome when people have g… https://t.co/wsYKBwedzd" +02/15/2018,Sports_celeb,@SteveNash,The constitution is constantly being refined and changed. The gun lobby love to preach the good ‘ol constitution (v… https://t.co/XLDjpLDNCm +02/15/2018,Sports_celeb,@SteveNash,Good luck to you with that. The numbers say it’s more probable that something disastrous happens in your home then… https://t.co/v8b6nxro4c +02/15/2018,Sports_celeb,@SteveNash,Still waiting on a compelling argument for guns in America. Not one holds water. The brainwashing by those making m… https://t.co/mvot7MRkL3 +02/15/2018,Sports_celeb,@SteveNash,"Again, completely wrong. The rest of the world is having overwhelming success. What ‘innocent people’ people will… https://t.co/dS0FTQtLOk" +02/15/2018,Sports_celeb,@SteveNash,It is. It will save lives. When’s the last time someone had a gun in their home and it saved lives. I’ll wait... https://t.co/YUiZ5RzpLP +02/15/2018,Sports_celeb,@SteveNash,You’re kidding. Those numbers aren’t even in the neighborhood of American gun violence. https://t.co/Iu7zoZsQjc +02/15/2018,Sports_celeb,@SteveNash,RT @JasonKander: The leadership of the @NRA has an agenda and it ain’t got a damn thing to do with gun rights. It’s 100% about gun sales. T… +02/15/2018,Sports_celeb,@SteveNash,@caseyadamson These are not the facts. Someone please step in with real facts and stop the lies. +02/15/2018,Sports_celeb,@SteveNash,@udonomefoo @theekid13 Exactly. There’s also a culture that develops and grows with possibility and probability. Th… https://t.co/JrrhYArhEg +02/15/2018,Sports_celeb,@SteveNash,"But they’re not in other countries. Proof is in the numbers. Night and day, not even close. https://t.co/PG2f7w1jhU" +02/15/2018,Sports_celeb,@SteveNash,@citizensnip92 @Trojangabe92 Thank you. Mental illness is not an American problem it’s a human problem. Everywhere +02/15/2018,Sports_celeb,@SteveNash,RT @1adamm1: @SteveNash In Australia we had a buy back and a big tightening of laws. Has worked pretty well. Hard sell in the US unfortunat… +02/15/2018,Sports_celeb,@SteveNash,"@_Mementos_ @arrozcarlo @van_animals Let’s add hand guns, semi automatic, automatic etc etc" +02/15/2018,Sports_celeb,@SteveNash,@arrozcarlo @van_animals @_Mementos_ Come on +02/15/2018,Sports_celeb,@SteveNash,@van_animals @_Mementos_ And correct. Why create a new argument when the common sense one is plenty? +02/15/2018,Sports_celeb,@SteveNash,"@_Mementos_ Yes, tons. Let’s not compare issues. They’re not mutually exclusive. Both are wrong and terrible." +02/15/2018,Sports_celeb,@SteveNash,The rest of the world is having success prohibiting access to guns. I don’t see what the debate is about. It’s not… https://t.co/TByYy9w8e4 +02/14/2018,Sports_celeb,@SteveNash,My wife’s not on twitter so can I get away with asking mousa dembèlè to be my valentine? Pen pals may be more appropriate. #COYS +02/13/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: Why we love supporting #KidsMove, #ProPlay and our other science-based programs to foster healthy, forward-facing athlete…" +02/12/2018,Sports_celeb,@SteveNash,I would appreciate it much more if they weren’t above @SpursOfficial in the table https://t.co/9zcISnRiqC +02/10/2018,Sports_celeb,@SteveNash,Ohh Mousa Dembèlè #COYS +02/08/2018,Sports_celeb,@SteveNash,Appreciate the love! Keep working https://t.co/F7PMksGfN1 +02/08/2018,Sports_celeb,@SteveNash,"Always fascinated by experienced, coaching lifers. Bob was great. https://t.co/Cl3XoJX0XK" +02/08/2018,Sports_celeb,@SteveNash,Thanks for all the love on my birfday! +02/08/2018,Sports_celeb,@SteveNash,44 👀 +02/07/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: Full conversation with Bob: https://t.co/LxH0YrW4CF + +Bob's currently the head coach of the @LAFC in the @MLS after coachin…" +02/05/2018,Sports_celeb,@SteveNash,"Full vid: https://t.co/eF9pdQmoMY + +A good shooter = technique + repetition + passion! https://t.co/oyMTHQDJII" +02/04/2018,Sports_celeb,@SteveNash,I need a drink. #COYS +02/01/2018,Sports_celeb,@SteveNash,"🎬https://t.co/7rFrpSDoEm + +A little message to be grateful for what we have & to have awareness of the #Mentalhealth… https://t.co/CrEWhc3eav" +01/31/2018,Sports_celeb,@SteveNash,"RT @SteveNashFdn: It's #BellLetsTalk  day, people - share this @Bell_LetsTalk video and take time to share your compassion with those strug…" +01/30/2018,Sports_celeb,@SteveNash,Great screen by dirty kirty (Kurt Thomas). He’s too tough for Twitter btw https://t.co/GQ6iBVxXth +01/30/2018,Sports_celeb,@SteveNash,Its in the genes! https://t.co/oHsJLACT2R +01/28/2018,Sports_celeb,@SteveNash,"RT @FeRRanGiner: Que llueve, que hace viento , que es un campo complicado....pues este equipo se pone el mono de trabajo y lucha y compite…" +01/28/2018,Sports_celeb,@SteveNash,3 Big Points! Vamos! https://t.co/3Ueejl6dlK +01/26/2018,Sports_celeb,@SteveNash,"Watch full vid: https://t.co/jmoH174fHd + +Introducing @ChelseyGipson to #giveandgo, a talented player from #LMU with… https://t.co/Xt2RxC5R7s" +01/25/2018,Sports_celeb,@SteveNash,"RT @2DadsUnited: EPISODE 13: Full vid 👉🏻 https://t.co/34aBOgXoVZ + +We decided not to go live this one. We made it shorter and we hand picke…" +01/24/2018,Sports_celeb,@SteveNash,"EPISODE 5: In the gym... +https://t.co/SHNcshoCJk + +Staying in shape is crucial for me. The kid in me needs to play… https://t.co/FlyjD6maHc" +07/01/2018,Sports_celeb,@J_No24,@VTOSPORTS @ijt_d Nice&Smooth transition 😎 +07/01/2018,Sports_celeb,@J_No24,"@hamp_big It’s sad that you only see the World through 1 microscopic lens, but 🤷🏽‍♂️ that’s ur issue. If I was to a… https://t.co/dTgEafRjPD" +07/01/2018,Sports_celeb,@J_No24,RT @DhaSickest: When they say video gaming is a huge distraction 😂🤷🏾‍♂️🤦🏾‍♂️ #fuckcancer https://t.co/OI04rC52pP +07/01/2018,Sports_celeb,@J_No24,"RT @EmilyGiangreco: Love having a guy like @DhaSickest in #DC + +The #NFL rookie raised over $21K for the Mary Bird Perkins Cancer Center in…" +06/30/2018,Sports_celeb,@J_No24,"RT @CCUChiefofStaff: Thank you, @J_No24. You make us proud! https://t.co/EPE9RDRpwC" +06/29/2018,Sports_celeb,@J_No24,Look who pop out of the blue 👀@SharnaBurgess 👀going LiVe on Sharna ig +06/29/2018,Sports_celeb,@J_No24,RT @DhaSickest: And again... if you beat my score you win $200🤷🏾‍♂️ https://t.co/8uQEVcjQQn +06/29/2018,Sports_celeb,@J_No24,RT @nrarmour: “It really doesn’t take a lot to be a good human.” I love everything about @ByMikeJones’ story on @J_No24 and @demario__davi… +06/28/2018,Sports_celeb,@J_No24,"RT @RAICESTEXAS: ”If you see wrong, you stand up and do something about it.” @demario__davis + +@J_No24 and @demario__davis are doing the wo…" +06/28/2018,Sports_celeb,@J_No24,RT @SNFonNBC: .@J_No24 & @demario__davis made a huge impact for kids in need this week. 🙌 https://t.co/1FZZZFFBF2 +06/28/2018,Sports_celeb,@J_No24,"@demario__davis What a grand day! Her spirit was on 1,000! ❤️her https://t.co/4owBwOvjk3" +06/28/2018,Sports_celeb,@J_No24,I did not start this. But I will help to end this. #livewell.dowell.by.others https://t.co/7sMGf8gwOU +06/28/2018,Sports_celeb,@J_No24,@barbagger Everyone matters.. would you like to help share your time an $ to the efforts of everyone you just named sir? +06/28/2018,Sports_celeb,@J_No24,RT @WillBlackmon: @CallinOutBullS Me and @J_No24 are homies! https://t.co/YmWtCqO4fa +06/27/2018,Sports_celeb,@J_No24,"RT @ByKimberleyA: Worlds colliding... + +#Redskins CB @J_No24 teamed up with former #Jets LB @demario__davis to make a 3a Walmart run in San…" +06/27/2018,Sports_celeb,@J_No24,RT @TishCarmona: @J_No24 is one of the best humans I know and it isn’t even close. He spent last night buying items for @RAICESTEXAS to hel… +06/27/2018,Sports_celeb,@J_No24,RT @SocialNetCynic: @RAICESTEXAS @demario__davis @J_No24 Those guys are doing the Lord's work! ❤️❤️❤️❤️ +06/27/2018,Sports_celeb,@J_No24,RT @httr1982: @J_No24 and another player I think just bought a whole damn kids section at Walmart and took care of a lot of needy Americans… +06/27/2018,Sports_celeb,@J_No24,"RT @demario__davis: I don’t care how much the world hates, i will always choose love. #BorderChildren https://t.co/JSWr37Nyhe" +06/27/2018,Sports_celeb,@J_No24,RT @RAICESTEXAS: We are so thrilled to have Pro Football Player @J_No24 volunteering with us today! We already put him to work assembling b… +06/26/2018,Sports_celeb,@J_No24,"RT @lucymatz: .@J_No24 is a natural interviewer! Really loving all of his on-point, entertaining, burning questions for @Blaney that are in…" +06/26/2018,Sports_celeb,@J_No24,MesSi ThE 🦁 That’s all gotta say abt that Haters Going to hate regardless. Best In The World. +06/24/2018,Sports_celeb,@J_No24,RT @KamChancellor: #ART https://t.co/xHrwuwD00a +06/23/2018,Sports_celeb,@J_No24,OMYGOSH😱 TOnYfreakKroOs!!!! WORLDCLASS ⚽️GOAL 😨😨 +06/23/2018,Sports_celeb,@J_No24,RT @SherrodMartin23: Everything Superb with @J_No24 #SherrodTheBarber at @SuperbGrooming https://t.co/snoRKNGEGZ +06/22/2018,Sports_celeb,@J_No24,🤣 dat da-blam Wilksy! 🤪😂 https://t.co/uWovOwH4dt +06/22/2018,Sports_celeb,@J_No24,"In Hott🔥Atlanta, what you think is abt to happen 👀 +A. Fresh cut +B. Shape up https://t.co/ZRowIAZyjQ" +06/19/2018,Sports_celeb,@J_No24,"E.N.T.R.E.P.R.E.N.E.U.R +Someone who's willing to sacrifice sleep, sanity, and savings to grow an idea, a dreamer ,… https://t.co/xUeYsicTIL" +06/18/2018,Sports_celeb,@J_No24,3 of the BEST!!! LuKAKu!!!⚽️⚽️⚽️ +06/18/2018,Sports_celeb,@J_No24,DE Bruyne what a Pass 😷 Sick!!! +06/17/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/AERH1ogmZV +06/16/2018,Sports_celeb,@J_No24,@TyeSmithCB How many L’sssss +06/16/2018,Sports_celeb,@J_No24,"I guess this IHOP* didn’t get the memo😒 +it’s #IHOB😡 +😂 https://t.co/fKEDo0qnMp" +06/15/2018,Sports_celeb,@J_No24,Filthy!!!!! +06/15/2018,Sports_celeb,@J_No24,That was Nasty!!!! Ronaldo Ronaldo Ronaldo!!! 3* of the BEST!!! Goallllll⚽️⚽️⚽️ +06/14/2018,Sports_celeb,@J_No24,I am honored to accept the 2018 Champion of Youth Award tonight from @BGCA_Clubs! There are so many ways you can he… https://t.co/OSTFIPSuUo +06/12/2018,Sports_celeb,@J_No24,I can think of a lot of B words to describe this but all I really want to know is... does this mean no more strawbe… https://t.co/n6CvMJ0e2Z +06/09/2018,Sports_celeb,@J_No24,Ok @DhaSickest Run it back Cavs in7!! 😆 +06/09/2018,Sports_celeb,@J_No24,Ok @iammsuzy run it back Cavs in 7!! 😂 +06/09/2018,Sports_celeb,@J_No24,https://t.co/rS3O4LJbv7 +06/09/2018,Sports_celeb,@J_No24,Right now these Warriors on #THANOS💪🏽Level. . GAWD! https://t.co/qtpOpq0ANN +06/08/2018,Sports_celeb,@J_No24,"The days may be long or challenging, but you gotta push forward and work towards your goals. Love what you do and s… https://t.co/8k461YdiBa" +06/08/2018,Sports_celeb,@J_No24,So AGAIN I say who’s going to the Caps parade!??? 😆 Darn one heck of a Job! Capitals 💯NHL🏆 +06/08/2018,Sports_celeb,@J_No24,RT @CO_MacGyver: The doctor is IN! @J_No24 https://t.co/wCZsDLaydF +06/07/2018,Sports_celeb,@J_No24,"Treasures of Sea 🌊 +Doctor👨🏽‍⚕️Norman is in Effect! @CCUChanticleers https://t.co/QxvlB5mfTK" +06/07/2018,Sports_celeb,@J_No24,RT @DhaSickest: Congrats brother @J_No24 💯💪🏾 +06/07/2018,Sports_celeb,@J_No24,Daurantchalla The 🧙🏾‍♂️Grim Reaper!!! +06/05/2018,Sports_celeb,@J_No24,"@Tparks98 @RapSheet 🤣😂 That is true, Nevermind 🤦🏽‍♂️" +06/05/2018,Sports_celeb,@J_No24,Who’s going to the parade for the Caps tho 👀 the way they played tonight.. #Electricfying⚡️⚡️ +06/05/2018,Sports_celeb,@J_No24,@RapSheet Why is this impeachment taking so Damn Long 😒 +06/05/2018,Sports_celeb,@J_No24,🦇🦇🦇 https://t.co/TI2kNhRSLf +06/04/2018,Sports_celeb,@J_No24,Thank you to everyone who came out for our @Redskins 5th annual White Attire Charity Party to benefit #BGCGW and… https://t.co/MS0q02oNjH +06/04/2018,Sports_celeb,@J_No24,StephCurRy = *Shooter of the Century* +06/04/2018,Sports_celeb,@J_No24,Game.Set.Match! +06/03/2018,Sports_celeb,@J_No24,RT @mzkellymac: Good seeing my SC peeps today in the #QueenCity HEY @J_No24 we miss U babe! https://t.co/WbR1wH14dk +06/02/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/kGcOT75orW +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA Somebody sounds Salty +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA I had 🕰 TODAY! Hah +06/01/2018,Sports_celeb,@J_No24,@iammsuzy @NBA Get off Twitter 💀😂 +06/01/2018,Sports_celeb,@J_No24,JR tho 🌾👀🌾 +05/31/2018,Sports_celeb,@J_No24,You talking about a #STICKSAVE!!! 😨😱🤯 +05/30/2018,Sports_celeb,@J_No24,@VernonDavis85 and I are bringing back the #WhiteParty this Sat to raise money for @Starz24org and #BGCGW at… https://t.co/mLhzPFUpxM +05/26/2018,Sports_celeb,@J_No24,First weekend in over a month.. #mood https://t.co/0wEPTXnXp0 +05/26/2018,Sports_celeb,@J_No24,"RT @30SECONDSTOMARS: Major props to @J_No24 + @SharnaBurgess for their incredible freestyle to #WalkOnWater on @DancingABC! 💃 🕺 #DWTS + +htt…" +05/25/2018,Sports_celeb,@J_No24,Catch me on @LenosGarage tonight at 10pm on CNBC. Spoiler alert 🚨 he doesn’t kill me. 🚘 https://t.co/CN0aF9b3Rj +05/24/2018,Sports_celeb,@J_No24,"RT @LenosGarage: The 1968 Shelby Mustang KR is NFL cornerback, @J_No24's dream car. + +Don't miss an all new episode of #JayLenosGarage TOMOR…" +05/23/2018,Sports_celeb,@J_No24,The last dance. Grateful for this experience and everything I learned from it. Thank you @SharnaBurgess @DancingABC… https://t.co/XFtdg1nPTV +05/22/2018,Sports_celeb,@J_No24,"Man, what a Night! That was fella’s and at the end of the day, it’s HTTR💯 #☝🏽 https://t.co/lalPxNuG0M" +05/22/2018,Sports_celeb,@J_No24,RT @Tspoon90: So glad we got to support our bro @J_No24 !!!! https://t.co/o3FERcH767 +05/22/2018,Sports_celeb,@J_No24,Confirmed 😜 https://t.co/A93O2iZFi6 +05/21/2018,Sports_celeb,@J_No24,There's only a 5 minute voting window tonight during he live show so make sure you tune in! @DancingABC… https://t.co/93i6TJn1bn +05/21/2018,Sports_celeb,@J_No24,There's only one chance to vote during tonight's finale so make sure you tune in and go to https://t.co/hC99xHx204… https://t.co/qyqchWmuDK +05/21/2018,Sports_celeb,@J_No24,THIS IS IT #GameTime @dancingabc @SharnaBurgess https://t.co/56vDOs5j74 +05/20/2018,Sports_celeb,@J_No24,Tomorrow! We're putting in work on this final dance. Hope you all tune in. #TeamBackThatPassUp @DancingABC https://t.co/pPi1xVOohz +05/19/2018,Sports_celeb,@J_No24,"I know you guys have been asking so going to give you a sneak peak of me and @SharnaBurgess , LIVE from my IG right now @Jno24" +05/18/2018,Sports_celeb,@J_No24,We got this @SharnaBurgess https://t.co/889SUvdWB8 +05/16/2018,Sports_celeb,@J_No24,"RT @httroundup: From @DancingABC to @EAMaddenNFL, @J_No24 can do it all! https://t.co/nLIPZIpwN2" +05/15/2018,Sports_celeb,@J_No24,😂👍🏽RT @QueenShar17: @annaoverload1 @SharnaBurgess @J_No24 Is that awful I’m paying people to vote?! Lol +05/15/2018,Sports_celeb,@J_No24,RT @QueenShar17: 558 votes plus two co-workers voting all afternoon (they get to leave an hour early for their trouble) for @SharnaBurgess… +05/15/2018,Sports_celeb,@J_No24,RT @merritt_4245: The #SharnaSquad voting for Josh and Sharna 😂❤️ Let's help them take home that mirrorball!… https://t.co/8DS0X1KSwR +05/15/2018,Sports_celeb,@J_No24,RT @SharnaSquad95: There's still time to vote for @SharnaBurgess and @J_No24! Please let's help get them that mirrorball! Here's the link t… +05/15/2018,Sports_celeb,@J_No24,We are so grateful to be in the finals. 🙏 Thank you to everyone who voted. The journey continues! If you haven’t vo… https://t.co/h3ek16tsdj +05/15/2018,Sports_celeb,@J_No24,👌🏾 https://t.co/zG1yV8cOHQ +05/15/2018,Sports_celeb,@J_No24,We made it to the finals but we still need your votes to take home the mirror ball! You can vote online until 8pm E… https://t.co/M3NxdsL0ns +05/15/2018,Sports_celeb,@J_No24,RT @DeAngeloHall23: To everyone who sent their love and wishes thank you but I haven’t retired. However I do think I’ve played my last foot… +05/15/2018,Sports_celeb,@J_No24,"RT @DancingABC: Our final Ballroom Battle: Salsa with @mazdzer and @WitneyCarson taking on @J_No24 and @SharnaBurgess! 🔥 + +https://t.co/Zw5l…" +05/15/2018,Sports_celeb,@J_No24,Voting is open https://t.co/XJDFRQPm56 #TeamBackThatPassUp 🙏🏾 Let's do this thing @DancingABC https://t.co/s5ViCee6kc +05/14/2018,Sports_celeb,@J_No24,There's going to be a LIVE vote during tonight's show. You'll have to watch to find out when! Use this link… https://t.co/7jWlfb0pyB +05/14/2018,Sports_celeb,@J_No24,Team back that pASS up @SharnaBurgess https://t.co/3UBdgDjYT2 +05/14/2018,Sports_celeb,@J_No24,@BGCA_Clubs @DancingABC 🙏🏾 +05/14/2018,Sports_celeb,@J_No24,Going live on @SharnaBurgess Instagram right now +05/14/2018,Sports_celeb,@J_No24,Tonight is going to be intense 😬 8pm on @DancingABC #TeamBackThatPassUp https://t.co/JPbRm5p7I6 +05/12/2018,Sports_celeb,@J_No24,well if shirtless is what it takes to Win the mirror ball then 🤷🏽‍♂️ shirtless is what you give the people. 😂… https://t.co/PZBQjBO2Pg +05/12/2018,Sports_celeb,@J_No24,"RT @ShaunOHara60: Fun show today @NFLTotalAccess +LBL with the #MicDrop!!! (Or IFB😱) +Thankful @J_No24 found his shirt😂 #WheresTheSmoke? h…" +05/12/2018,Sports_celeb,@J_No24,😊 https://t.co/QDPreCsrmj +05/11/2018,Sports_celeb,@J_No24,Recently my life has been about 2 things... football and dancing. Catch us tonight talking about both on NFL Total… https://t.co/R9jpwmstam +05/09/2018,Sports_celeb,@J_No24,"RT @ChaunceyCCU: Keep voting for my guy @J_No24!! I bet @SharnaBurgess is happy I taught him all those moves. + +https://t.co/a83aaIDqpV http…" +05/08/2018,Sports_celeb,@J_No24,There's still time to vote to help keep us in for the finale! https://t.co/AUvkFVLG88 #TeamBackThatPassUp https://t.co/LtUWWIUxEY +05/08/2018,Sports_celeb,@J_No24,Voting is open https://t.co/XJDFRR6XtG 🙏🏾 https://t.co/tsryTvaGQA +05/08/2018,Sports_celeb,@J_No24,RT @Redskins: Voting is now OPEN for Dancing with the Stars! Let's make sure @J_No24 & @SharnaBurgess keep dancing! #HTTR #BackThatPassUp… +05/08/2018,Sports_celeb,@J_No24,"RT @Redskins: You heard him, #Redskins Nation! Go tune in to @DancingABC and vote for #TeamBackThatPassUp! + +Vote: https://t.co/xXOqJL7mY9 h…" +05/08/2018,Sports_celeb,@J_No24,RT @Redskins: Behind the scenes at @DancingABC practice with @J_No24 & @SharnaBurgess! Visit https://t.co/xXOqJL7mY9 at 8pm to vote for the… +05/07/2018,Sports_celeb,@J_No24,Listen to my boy @ChuckLiddell. Vote for #TeamBackThatPassUp @DancingABC 🤛 https://t.co/GGjXGUWr5q +05/07/2018,Sports_celeb,@J_No24,"RT @WendyTStone: @J_No24 Hey Josh, can I get a shout out. I’m a teacher! I teach 6-8 grade PE! I’m also a big Skins fan! #HTTR" +05/03/2018,Sports_celeb,@J_No24,Hey @SharnaBurgess should we try a dance move like this? https://t.co/mUkPa5IiJn +05/02/2018,Sports_celeb,@J_No24,Going LIVE Now on @SharnaBurgess InstaG.!! You don’t wanna miss this.. +05/01/2018,Sports_celeb,@J_No24,RT @paul_chris27: Guess we ain’t taking off🙅🏼‍♂️✈️ @J_No24 https://t.co/EYkuKJO0xU +05/01/2018,Sports_celeb,@J_No24,"RT @Jeanine_Juliano: Words don’t even explain how PROUD I am! @J_No24 you never seize to amaze me, almost 3 years of working with you and I…" +05/01/2018,Sports_celeb,@J_No24,RT @KapriBibbs: I just voted for #TeamBackThatPassUp @J_No24 & @SharnaBurgess on @DancingABC! Vote for your favorites now! #DWTS https://t.… +05/01/2018,Sports_celeb,@J_No24,"RT @ElectrfyingNOW: Congratulations, to the gorgeous @SharnaBurgess & the styling @J_No24 on #DWTS (@DancingABC) preforming a SUPERIOR Cha…" +05/01/2018,Sports_celeb,@J_No24,"RT @DancingABC: A very fluid Cha Cha courtesy of @J_No24 and @SharnaBurgess! #TeamBackThatPassUp bring the finesse! +#DWTS: Athletes https:…" +05/01/2018,Sports_celeb,@J_No24,👊🏽 https://t.co/jbruoM61aG +05/01/2018,Sports_celeb,@J_No24,👊🏽 https://t.co/o1sWHoCKrn +05/01/2018,Sports_celeb,@J_No24,RT @TUoffTOz: Hahahaha the bro killed it @J_No24 y’all gotta go vote +05/01/2018,Sports_celeb,@J_No24,🤙🏽 https://t.co/3F4ez8cI4K +05/01/2018,Sports_celeb,@J_No24,RT @GMA: Just 100% finessed that ballroom floor! WOW! @sharnaburgess & Pro Bowl Cornerback @J_No24! @DancingABC #DWTS @NFL @RedSkins https:… +05/01/2018,Sports_celeb,@J_No24,"RT @HinchGalloway: Vote!!!!! #TeamBackThatPassUp @DancingABC @J_No24 +@SharnaBurgess +https://t.co/dFw6CKcklr" +05/01/2018,Sports_celeb,@J_No24,All these performances are INCREDIBLE competition is real #dwts +05/01/2018,Sports_celeb,@J_No24,"RT @Redskins: Get your @DancingABC vote in for @J_No24 & @SharnaBurgess AKA ""Team Back That Pass Up""! + +Vote: https://t.co/gEmLR58J5j https:…" +05/01/2018,Sports_celeb,@J_No24,The live voting link is now open. This determines who goes home tonight! #TeamBackThatPassUp… https://t.co/jaJ6hYafSC +04/30/2018,Sports_celeb,@J_No24,There’s Jonny!! LIVE in 5.. https://t.co/9e5bxKPdZK +04/30/2018,Sports_celeb,@J_No24,GAME TIME! Don't forget to vote! https://t.co/XJDFRQPm56 or call 1-800-868-3407 #TeamBackThatPassUp @DancingABC… https://t.co/RSIxzWvrux +04/30/2018,Sports_celeb,@J_No24,"RT @CoastalFootball: Support Josh Norman and Sharna Burgess on Dancing with the Stars Athletes, which premiers tonight (April 30) at 8 pm (…" +04/30/2018,Sports_celeb,@J_No24,Tonight's the night! 🕺🏽💃🏻 8pm @DancingABC #TeamBackThatPassUp @SharnaBurgess https://t.co/8iGukb6Hrm +04/28/2018,Sports_celeb,@J_No24,"@DhaSickest Welcome, young Gun. This is #HTTR Land! Looking forward to you helping us-@Redskins get Better💯" +04/27/2018,Sports_celeb,@J_No24,@jasonrmcintyre 🤦🏽‍♂️ how does your key card to @FS1 work everyday... 🤷🏽‍♂️ u cant make this up +04/27/2018,Sports_celeb,@J_No24,RT @Mason_Foster: “Take a donkey & a hoss to make a mule” @Anderson_365 we on now +04/27/2018,Sports_celeb,@J_No24,"Welcome, Welcome Big fella, #DaRonPayne! +Guess we got Roll-Dam🐘Tide all in D.C!" +04/27/2018,Sports_celeb,@J_No24,@Redskins 😬 +04/27/2018,Sports_celeb,@J_No24,👍🏽 https://t.co/XbHsZzVfMS +04/27/2018,Sports_celeb,@J_No24,RT @ShaqThompson_7: Congrats @gregolsen88 https://t.co/fpyKLQ41mA +04/27/2018,Sports_celeb,@J_No24,RT @iammsuzy: Why we never jump on the people that wait til day of the draft to pull skeletons out the closet ? Yal real cowards for that.… +04/26/2018,Sports_celeb,@J_No24,#VintageLeBronJamesSalute` +04/25/2018,Sports_celeb,@J_No24,Who needs weights when you have @SharnaBurgess 💪🏾 https://t.co/MJpjWTFRBf +04/24/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: “The fight is won or lost far away from witnesses - behind the lines, in the gym, and out there on the road, long before…" +04/23/2018,Sports_celeb,@J_No24,RT @Redskins: .@J_No24 says 2018 is looking bright & promising as #Redskins defense focuses on discipline and attention to details. #HTTR h… +04/23/2018,Sports_celeb,@J_No24,WWW🤙🏽😜 https://t.co/rc2VBLy7bF +04/23/2018,Sports_celeb,@J_No24,RT @mgo_24: 2 years ago on this day the @Redskins made the bessssttt move of their entire organization in history and signed the best Corne… +04/23/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: Front row at the game, see if you can spot us ;) https://t.co/IzNBIeG4Vt" +04/23/2018,Sports_celeb,@J_No24,@WashWizards Let’s Go!!! It’s CrunchTime.. +04/23/2018,Sports_celeb,@J_No24,This Game is really Exciting!!! 😆 +04/21/2018,Sports_celeb,@J_No24,@ShaqThompson_7 Happy Bday Buddy! +04/21/2018,Sports_celeb,@J_No24,RT @CJLaBoy: Wishing @Panthers stud LB @ShaqThompson_7 a very Happy Birthday. https://t.co/18Bmz1H3iW +04/21/2018,Sports_celeb,@J_No24,Going LIVE on @SharnaBurgess iG in 20mins 7:30pm! Check us out! +04/21/2018,Sports_celeb,@J_No24,"https://t.co/CQIFgemM25 +“Rise & ☀️ which one are you Today!” +Hunter or Hunted" +04/20/2018,Sports_celeb,@J_No24,"🤣😭😭 YeA papi got me!🤦🏽‍♂️ + Next time it’s on!😆 https://t.co/bfTYzHpva4" +04/20/2018,Sports_celeb,@J_No24,😂🤣😭😭 got me again 🤦🏽‍♂️😂 https://t.co/GhHRqKBOs3 +04/20/2018,Sports_celeb,@J_No24,I 😍 this @SharnaBurgess https://t.co/MjMEjOjmJg +04/20/2018,Sports_celeb,@J_No24,"RT @SharnaBurgess: Girl you looks good, won't you back that pass up? 🏈💃🏻🕺🏾😆 + +You guys voted and the decisions made!!! You’re lookin at #Tea…" +04/20/2018,Sports_celeb,@J_No24,"https://t.co/hcRt6krz3V +Please tweet out “Way to take the lead @NYGovCuomo. Florida needs to follow suit” + -… https://t.co/B8B9odBDke" +04/18/2018,Sports_celeb,@J_No24,That side eye tho 👀 @SharnaBurgess https://t.co/kAeYPWbxoZ +04/18/2018,Sports_celeb,@J_No24,"Madden Bowl, who you got?! D.C. native @YoungDrini is my pick … Complete and submit a bracket for a chance to earn… https://t.co/yXUAkywjVl" +04/15/2018,Sports_celeb,@J_No24,"RT @TG3II: Gurley M.A.D.E was a Success. Thank you so much to everyone for making this possible. @ Tarboro,… https://t.co/V2FGvsZDUQ" +04/15/2018,Sports_celeb,@J_No24,"RT @stephen_alsop: @SharnaBurgess @J_No24 is the best , I met him in Charlotte, NC. I am rooting for you guys! https://t.co/4UPcVIIdyT" +04/15/2018,Sports_celeb,@J_No24,"RT @merritt_4245: So excited for this team! They're totally winning this mirrorball😍 + +I made up the #TeamTangosAndTouchdowns name and idk…" +04/15/2018,Sports_celeb,@J_No24,RT @sharnasquadxx: Wow oh wow I love my team so much 💞💞🤧💥 @SharnaBurgess @J_No24 https://t.co/B1Tu7PYpcy +04/15/2018,Sports_celeb,@J_No24,RT @AussieSharna21: @SharnaBurgess got it in slo mo😂😂 @J_No24 https://t.co/PJ5aqbOe7f +04/15/2018,Sports_celeb,@J_No24,@AussieSharna21 @SharnaBurgess 😂😂 +04/15/2018,Sports_celeb,@J_No24,@neilreynoldsnfl 🤨 +04/14/2018,Sports_celeb,@J_No24,Going LIVE! From @SharnaBurgess instaG! Right Now! +04/14/2018,Sports_celeb,@J_No24,"RT @Redskins: Get ready to see @J_No24 on @DancingABC this summer! + +📚: https://t.co/NW263d64Q9 https://t.co/apLbPLsrlp" +04/13/2018,Sports_celeb,@J_No24,https://t.co/H0S3G3zQZO ToooooO 😆😆@SharnaBurgess let’s get em 🐆Rawr!! Hahaha.. +04/13/2018,Sports_celeb,@J_No24,That’s my Partnah! Jaguar 🐆Rawrr!! 😆 https://t.co/hEHXUjYf7p +04/13/2018,Sports_celeb,@J_No24,"RT @merritt_4245: Welcome to the #SharnaSquad, Josh! @J_No24 + +We're always here to support you guys, and we'll be voting for you! + +Also j…" +04/13/2018,Sports_celeb,@J_No24,RT @dwtsem: Okay @SharnaBurgess i agree the reason @J_No24 is doing the show is everything 😭😭😭😭 #doitforthekids ❤️ +04/13/2018,Sports_celeb,@J_No24,RT @dee22ann: OMG 😂 @J_No24 !! ⛷ https://t.co/ztZuwCiCgD +04/13/2018,Sports_celeb,@J_No24,We are about to go LIVE!!! on @SharnaBurgess Instagram Right Now! +04/13/2018,Sports_celeb,@J_No24,ICE❄️COLD https://t.co/nASr3DoX9N +04/11/2018,Sports_celeb,@J_No24,"RT @MichaelGaskinSC: Had the great honor of meeting Josh Norman (@J_No24), athlete extraordinaire, at Saturday's annual #Starz24 celebrity…" +04/10/2018,Sports_celeb,@J_No24,RT @SpikesC2: James and I caught two shirts at @Norman_Starz24 basketball game Saturday. We decided to give them to two students who did th… +04/10/2018,Sports_celeb,@J_No24,"Thank you to @On_Decker and all of the sponsors, especially our presenting sponsor @MerrillEdge , all of the player… https://t.co/5QGMaq0Hon" +04/10/2018,Sports_celeb,@J_No24,"RT @Redskins: This past weekend @J_No24 hosted his annual @Norman_Starz24 basketball game back home in Greenwood, S.C. + +📚: https://t.co/a4h…" +04/09/2018,Sports_celeb,@J_No24,1000🔥🔥🔥 https://t.co/7JpE1tgcXy +04/08/2018,Sports_celeb,@J_No24,"RT @J_No24: Huge thank you to @MerrillEdge for being the title sponsor for my 6th annual celebrity basketball game! +#starz24 #merrilledge…" +04/07/2018,Sports_celeb,@J_No24,"Huge thank you to @MerrillEdge for being the title sponsor for my 6th annual celebrity basketball game! +#starz24… https://t.co/kgQCQ8C5GL" +04/07/2018,Sports_celeb,@J_No24,Caption this HA! 😎 @kk_mr93 https://t.co/UEntjwSQFh +04/06/2018,Sports_celeb,@J_No24,Hey 👀 out @Redskins fans! I’m coming to you live today on @NFLNetwork with @WillieMcGinest & @LindsayRhodes on… https://t.co/8E83t6v0jr +04/06/2018,Sports_celeb,@J_No24,"RT @BGCA_Clubs: Thank you, @J_No24 for your support and commitment to Puerto Rico and Club kids! #greatfutures https://t.co/l8HDA1nPtB" +04/05/2018,Sports_celeb,@J_No24,"RT @ToniKombucha: @undisputed @J_No24 J No as smooth as he is on the field deflecting balls and catching interceptions, he's even smoother…" +04/03/2018,Sports_celeb,@J_No24,@_willcompton hey buddy seemed like just yesterday we spoke about all this An look what end up coming your way.. go… https://t.co/YRI3hsE9Au +04/03/2018,Sports_celeb,@J_No24,"RT @_willcompton: #TitanUp 🍻 + +Can’t wait to get to work w my new teammates and coaches 🤙🏼 https://t.co/1n9TxCbTeA" +04/03/2018,Sports_celeb,@J_No24,💪🏽👊🏽 https://t.co/VmBzSgokBS +04/03/2018,Sports_celeb,@J_No24,RT @NFL: Former Redskins LB @_willcompton signing with @Titans: https://t.co/xAiD9QKt2D https://t.co/yMbkfoqjLv +04/02/2018,Sports_celeb,@J_No24,"Everybody Got going to the Redskins jokes today I see, how bout make them realistic😎and NOT #FAKE" +04/02/2018,Sports_celeb,@J_No24,😂😂 mines still was better! https://t.co/tHQtm99eUu +03/29/2018,Sports_celeb,@J_No24,@J_No24 its actually a track & Football field behind the gate ☠️ +03/29/2018,Sports_celeb,@J_No24,Working in the Darkness makes you Stronger💪🏽 when you step into the Light💯 https://t.co/sRc2UAZfil +03/28/2018,Sports_celeb,@J_No24,"@iammsuzy wateva I just saw your video put a shirt on an stop acting light skin. Oops my bad you are 🤷🏽‍♂️ +😂" +03/28/2018,Sports_celeb,@J_No24,"@iammsuzy Goodluck buddy, make the best of every opportunity you get now! Sucks we won’t get to strap up with one a… https://t.co/NuJWW4HO6F" +03/28/2018,Sports_celeb,@J_No24,"RT @NFL: 🚨 TRADE ALERT! 🚨 + +Su'a Cravens is heading to Denver: https://t.co/jH7nhQFp3x https://t.co/W5pSGNlkIn" +03/28/2018,Sports_celeb,@J_No24,"@Papi_snoop 5pm FIU track! +Nothin else needs be said." +03/28/2018,Sports_celeb,@J_No24,"@Papi_snoop 😏 are you in Miami, young gun.." +03/27/2018,Sports_celeb,@J_No24,🤘🏽 https://t.co/Kt5na2lOSk +03/26/2018,Sports_celeb,@J_No24,😆😆 boy you know a trip🤣🤣 https://t.co/dJdkXY0LXA +03/26/2018,Sports_celeb,@J_No24,@tlowry77 @D_BPhotography #facts +03/26/2018,Sports_celeb,@J_No24,@TG3II side bet we get the W +03/26/2018,Sports_celeb,@J_No24,@TG3II you ain’t got skills like that bo 😆 +03/23/2018,Sports_celeb,@J_No24,@c_mar23505 @JoeBiden @roughnrowdy @BarstoolBigCat @stoolpresidente it would be +03/23/2018,Sports_celeb,@J_No24,@mattdibu @JoeBiden ha ikr I wanna 👀it +03/23/2018,Sports_celeb,@J_No24,@c_mar23505 @JoeBiden @roughnrowdy @BarstoolBigCat @stoolpresidente hell I’ll call it for free 😆 +06/29/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Special, special thanks to @UtahGymnastics’ Tom Farden and @MSkinner2016 for chatting with me about @USAGym’s big meet bei…" +06/29/2018,Sports_celeb,@MSkinner2016,RT @OrianneW: Like you Mykayla ❤️❤️😍 @MSkinner2016 https://t.co/5NF1JjR37y +06/20/2018,Sports_celeb,@MSkinner2016,@alleelowe In Utah!! Wish I was there!😭 +06/15/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: I love that MyKayla’s bringing back the Ray! https://t.co/gyJZ4kU2FQ +06/07/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: Love the new video 😍😍😍 this is my favorite part @PengPengCLee // @MagsGotSwag12 @kyla_ross96 @MSkinner2016 @katelyn_oh… +05/28/2018,Sports_celeb,@MSkinner2016,RT @alleelowe: Like to switch it up every couple of months... this is the new one today 😍 whatta queen @MSkinner2016 https://t.co/qqWzngCWnQ +05/26/2018,Sports_celeb,@MSkinner2016,RT @CallisJustine: I will definitely never try this again but this was fun 🤷🏻‍♀️ https://t.co/qnPINdshCg +05/26/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Read all about our 2018 award winners that were announced at our team BBQ! #GoUtes https://t.co/q1mQ9pDobv +05/21/2018,Sports_celeb,@MSkinner2016,@PaytonDeNai0105 You are so welcome!! Glad you are okay! Love and miss you too❤️💋 +05/21/2018,Sports_celeb,@MSkinner2016,RT @PaytonDeNai0105: I miss and love @MSkinner2016 so so much!! Made my heart happy getting to chat with you earlier a little bit!! Hope t… +04/24/2018,Sports_celeb,@MSkinner2016,RT @MSkinner2016: Get ready to put your 🙌🏻 up cause tomorrow is 1st day of Nationals! https://t.co/dviOtqsfs7 +04/23/2018,Sports_celeb,@MSkinner2016,"RT @espnW: Sophomore Mykayla Skinner, second in all-around Friday, runs through her double-double somersault on the floor exercise as @Utah…" +04/23/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: Just have to casually remind everyone that this incredible gymnast has hit 110 out of 110 routines in her NCAA career! https… +04/22/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: @nicoleee_veee @foxybirdlady @MSkinner2016 She totally is!! I don’t know anyone nicer or more humble about her success. +04/22/2018,Sports_celeb,@MSkinner2016,"RT @elaynewharmer: @Holli_Alexa @MSkinner2016 She has super-human balance and grace. One of the commentators yesterday said, “MyKayla Skinn…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @marquy: @Holli_Alexa @UtahMarz @MSkinner2016 I think it’s amazing she’s done this 2 years straight and hasn’t missed it. https://t.co/e… +04/22/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: Let’s please acknowledge that @MSkinner2016 made it through another season without being close to falling. She’s believed… +04/22/2018,Sports_celeb,@MSkinner2016,RT @LauraMRutledge: These young women have made the little girls they once were proud. Tune in right now to @ESPNU to watch them compete fo… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: 🙌 Light the U 🙌 + +@UtahGymnastics' MyKayla Skinner scored a 9.9375 on vault, earning her a national title! https://t.co/WE…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The dreamers of the day are dangerous women... Let’s make it possible Red Rocks!!! #goutes https://t.co/2MfmjkeIAH +04/22/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: IT. ALL. COMES. DOWN. TO. THIS. MOMENT. The final countdown... #goutes https://t.co/5AVIpSg0e1 +04/22/2018,Sports_celeb,@MSkinner2016,RT @Pay1John: @MSkinner2016 Congratulations on being vault champion!! Proud of you Mykayla!! #GoUtes ❤️❤️❤️ +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Lindsey2593: Great Job @MSkinner2016 +So happy for you! https://t.co/OnKAG3NCzv" +04/22/2018,Sports_celeb,@MSkinner2016,RT @Lindsey2593: I love watching @MSkinner2016 gymnastics routines. Especially loved watching your floor routine! +04/22/2018,Sports_celeb,@MSkinner2016,RT @Carli379: Class act right there!!! @MSkinner2016 @UtahGymnastics https://t.co/tsPbzjJbhy +04/22/2018,Sports_celeb,@MSkinner2016,RT @sltribsports: Utah’s MyKayla Skinner discusses the team’s fifth-place finish at the Super Six finals in St. Louis. https://t.co/Yy7dyzJ… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Utah finishes the Super Six with 196.90, led by @MSkinner2016's 39.625 in the all-around." +04/22/2018,Sports_celeb,@MSkinner2016,RT @thom59020084: @MSkinner2016 showing tremendous grit on beam crushing the toughest dismount with her 9.925to keep @UtahGymnastics in 1st… +04/22/2018,Sports_celeb,@MSkinner2016,"RT @VegasUte: Like so may others, I have run out of words to describe @MSkinner2016 as a competitor... What a warrior... so many times she…" +04/22/2018,Sports_celeb,@MSkinner2016,RT @usamso: Nice 9.925 for @MSkinner2016 on beam to end @UtahGymnastics night. #NCAAGym +04/22/2018,Sports_celeb,@MSkinner2016,RT @trentdwood: The Red Rocks came out of the bye a completely different team and looked comfortable for the first time tonight. @MSkinner2… +04/22/2018,Sports_celeb,@MSkinner2016,RT @nicoleee_veee: Y’all @MSkinner2016 has totally surprised me. Her NCAA gymnastics is beyond what I expected & she seems like she’s growi… +04/22/2018,Sports_celeb,@MSkinner2016,RT @Nugget48: @MSkinner2016 A-M-A-Z-I-N-G floor routine! Great job! 🇺🇸 +04/22/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: After a slow start, @UtahGymnastics finished strong on floor thanks to @MSkinner2016's 9.925. Final team score on floor was…" +04/22/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: Sophomore @MSkinner2016 is Utah’s fourth national champion on vault, joining Elaine Alfano (1982, 1983, 1985), Megan Mc…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UUtah: Congrats, @MSkinner2016! She’s the first @UtahGymnastics vault NCAA champion since 1992! #GoUtes! https://t.co/xTC6TolN2y" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: By winning the NCAA vault title, @MSkinner2016 became the 1st Ute to win multiple individual national championships sin…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymHistory: Congrats to @MSkinner2016, who became Utah’s first national champion on vault since Kristen Kenoyer in 1992. #GoUtes #N…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to our 2018 NCAA All-Americans!!! Freshman @Sydney_soloski is All-American on the floor @Missypaigee in… +04/21/2018,Sports_celeb,@MSkinner2016,RT @Tater2Stock: .@MSkinner2016 is our Rock Star! https://t.co/j1Ly7p3Tww +04/21/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: And don’t forget AA runner-up! https://t.co/FuhvuC1wpa +04/21/2018,Sports_celeb,@MSkinner2016,RT @CanadianKen: @MSkinner2016 Congrats on your Vault title and placing second in the AA at Nationals! Sensational job!🥇🥈🙌Good luck to you… +04/21/2018,Sports_celeb,@MSkinner2016,RT @deimeke03: @UtahGymnastics @MSkinner2016 Congrats @MSkinner2016 on being an #NCAAGym All-Around runner up and vault National Champion!!… +04/21/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Celebrate with Utah's newest NCAA vault champion MyKayla Skinner! #goutes https://t.co/dIpTIT39cU +04/21/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Tonight Dreams Become Reality. Watch @UtahGymnastics compete in the National Championships this weekend on ESPNU #goutes… +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: That double twist, tho! + +@UtahGymnastics' MyKayla Skinner went all out on vault at the NCAA Gymnastics Championships. A…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: The Red Rocks advance to the Super-Six!!! Competing tomorrow will be Utah, Florida, Oklahoma, LSU, UCLA and Nebraska at…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: Utah’s MyKayla Skinner, now the co-national champ on vault, on her team advancing to the Super Six final Saturday night i…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: LIVE with @UtahGymnastics after advancing to the #SuperSix. + +Along with @StanfordWGym’s Elizabeth Price, who scored a 10…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @hostage2feeling: You and the girls rocked it tonight... can't wait to see you compete tomorrow! Congrats on winning the vault title and… +04/21/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: Led by @MSkinner2016, the Red Rocks rallied from a nervous start to clinch their 21st appearance in the Super Six on Satu…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: MEET DAY!!! +📆 NCAA Championships, Semifinal 2 +⌚️5️⃣pm MT +📍Chaifetz Arena, St. Louis, MO +📺 @ESPNU +🎥 5 camera free live…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @Flipz4daze: @MSkinner2016 good luck in the AA at nationals. #kicksomebutt +04/21/2018,Sports_celeb,@MSkinner2016,RT @Nugget48: @MSkinner2016 Amazing vault! Simply amazing! 👏👏👏 +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 flies high and sticks it to lead the Red Rocks to a 49.225 in the first rotation. + +VAULT +Missy Reinstadtle…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: ALLLLLL THE SCREAMS FOR @MSkinner2016 VAULT. 🔥👏🏻😍🔥👏🏻😍🔥👏🏻😍 +04/21/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: @MSkinner2016 just nailed a 9.9375 to finish the Utes vault rotation. Best vault by any gymnast on any team so far, morning…" +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Once again, @MSkinner2016 leads Utah to reel in a 49.3375 in its second event. + +BARS +Tiffani Lewis 9.85 🎯 +MaKenna Merrel…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: .@MSkinner2016 getting a 9.925 on bars. #slay #ncaagym MIND BLOWN what a great bar set. +04/21/2018,Sports_celeb,@MSkinner2016,RT @CarlaSueNeal: @MSkinner2016’s celebration is the best. So genuine and so happy! So fun to root for her! +04/21/2018,Sports_celeb,@MSkinner2016,"RT @trentdwood: @MSkinner2016 does it again, scores a 9.925 to rescue beam rotation. Red Rocks with a 49.1125 score. #NCAAGym" +04/21/2018,Sports_celeb,@MSkinner2016,RT @msmurphy76: My fav part 😍 and how can you just not love her excitement. @MSkinner2016 🔥🔥 #ncaagym https://t.co/OnCpg18e0X +04/21/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: Your 2018 NCAA co-champion on vault is @MSkinner2016! https://t.co/Akahenuwmf +04/21/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 finished second in the all-around, tying her 💥 season-high of 39.725! 💥 + +1️⃣ Maggie Nichols 39.8125 +2️⃣ My…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @stk2mln: Congratulations @MSkinner2016 on an amazing AA performance and do your thing tomorrow! Go Fight Win!!!! +04/21/2018,Sports_celeb,@MSkinner2016,RT @jdartute: @MSkinner2016 co-wins the vault national title #UtahGymnastics https://t.co/awo3nwwm9n +04/21/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Congratulations @MSkinner2016 on a tremendous effort,39.7250 all-around,tied for the vault title,you never cease to ama…" +04/21/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to @MSkinner2016 for winning the silver medal in the all-around and for becoming a national champion on… +04/20/2018,Sports_celeb,@MSkinner2016,RT @GymSassy: Good luck this weekend @MSkinner2016! Thank you for being an inspiration to all us young gymnasts. You have become an amazing… +04/20/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @MSkinner2016 Go Myk! +04/20/2018,Sports_celeb,@MSkinner2016,RT @_brookieepoo_1: @MSkinner2016 you’re so freaking beautiful it’s not fair!!!😍😍 +04/20/2018,Sports_celeb,@MSkinner2016,RT @InsideGym: Hiii @MSkinner2016... the defending FX champ is in the hunt for gold in the all-around after earning silver last season. Sh… +04/20/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Hanging with @espn, nbd 🤷🏼‍♀️ https://t.co/88Ev6F7wDY" +04/20/2018,Sports_celeb,@MSkinner2016,RT @robr0013: #GoUtes https://t.co/NpyDy20Qvx +04/20/2018,Sports_celeb,@MSkinner2016,RT @801_Ute: Let’s gooooooooooo https://t.co/kSs44DRRSt +04/20/2018,Sports_celeb,@MSkinner2016,Get ready to put your 🙌🏻 up cause tomorrow is 1st day of Nationals! https://t.co/dviOtqsfs7 +04/20/2018,Sports_celeb,@MSkinner2016,"RT @sltribsports: “She’s honestly not human.” +“She’s just automatic.” +She is @UtahGymnastics star @MSkinner2016. +https://t.co/Gs6u7CWS6w ht…" +04/20/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: ✋ #NationalHighFiveDay brought to you by @MSkinner2016 and MaKenna Merrell-Giles ✋ https://t.co/BFVdMoDFfN +04/19/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: @MSkinner2016 is the one to watch at #NCAAGym this weekend! You won’t see a better floor routine anywhere. https://t.co/… +04/19/2018,Sports_celeb,@MSkinner2016,"RT @BrooksAD: #NCAAGym is going to be EPIC. + +In addition to @bartconner, @kathyjohnsongym & @LauraMRutledge calling the action on ESPN2 and…" +04/19/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Don’t miss @MSkinner2016 floor routine packed with difficulty and sass! +https://t.co/Zsaz4hfoMq" +04/19/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 made the list of ESPN’s top ✋ floor routines to watch at this weekend’s nationals. https://t.co/YozycfZa0P +04/19/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Fly in style and arrive at the NCAA Awards banquet in style... #goutes https://t.co/QneqDCAalX +04/17/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Our new @UUtah President @RuthVWatkins stopped by practice today to wish the Red Rocks good luck on their 43rd consecut… +04/16/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @AcademicsUtah @MSkinner2016 @UtahGymnastics So proud of you Myk! +04/15/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: I love new @MSkinner2016 hair 😍😍 is so perfect 😍😍😍 +04/14/2018,Sports_celeb,@MSkinner2016,RT @AcademicsUtah: Her grades are just as good as her flips! An all around champion gymnast and an all around champion student makes @MSkin… +04/10/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to Regional Bar Champion MyKayla Skinner for tying for first place on bars with a 9.9!!! She now has 33… +04/10/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations to the Regional Floor Champions MyKayla Skinner & MaKenna Merrell-Giles for being part of a three-way t… +04/09/2018,Sports_celeb,@MSkinner2016,RT @UtahGymHistory: Sophomore @MSkinner2016 is the first Ute to win at least three events at an NCAA Regional in consecutive years since As… +04/08/2018,Sports_celeb,@MSkinner2016,"RT @alicialambert: Another impressive and amazing performance by @MSkinner2016 and @UtahGymnastics. 👏👏 Congratulations MyKayla, 1st AA and…" +04/08/2018,Sports_celeb,@MSkinner2016,Thank you!!! ❤️❤️❤️ https://t.co/G52RuwLWjT +04/08/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: Just a casual 9.95 from MyKayla Skinner to end the @UtahGymnastics floor rotation! #goutes https://t.co/jDM3LKV4eI +04/08/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: The intensity is ramping up! One more rotation to go for @UtahGymnastics! #goutes #NCAAGym https://t.co/AZyMamDxR9 +04/08/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: Congrats and best of luck to our DLG alums competing in NCAA Regionals tomorrow 💜💜💜💜💜💜 https://t.co/8RQmOg3K70 +04/08/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The Red Rocks win Regionals and advance to the National Championship for the 43rd consecutive time with a score of 197.… +04/08/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner wins the Regional All-Around with a 39.65 and MaKenna Merrell-Giles places third with a 39.55!!! Congra… +04/08/2018,Sports_celeb,@MSkinner2016,RT @KylerJ56: Congrats Red Rocks for advancing to the NCAA Championships! And to @MSkinner2016! 😍😍😍 https://t.co/qAxXhePsY1 +04/08/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 swung her way to become the SLC regional bars co-champion. https://t.co/eutdtzlHrp +04/08/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 secures another all-around win (39.65)! https://t.co/obHFYCeC7z +04/08/2018,Sports_celeb,@MSkinner2016,RT @Lindsey2593: Congratulations to Utah and @MSkinner2016 for advancing to the NCAA semifinals! +04/08/2018,Sports_celeb,@MSkinner2016,"RT @BradfatherSpeak: and @Mskinner2016 is the @utahGymnastics' Red Rocks most prestigious star, amassing 39.650 individual points, en route…" +04/08/2018,Sports_celeb,@MSkinner2016,RT @JaneMarquardt: Way to go @MSkinner2016! 39.650 in the all around at NCAA Regionals! @UUtah #GoUtes +04/08/2018,Sports_celeb,@MSkinner2016,RT @GymSassy: Good luck @MSkinner2016 and the rest of @UtahGymnastics at regionals today!!! https://t.co/j0r83ycEva +04/06/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: You heard it first from @abc4utah but the Red Rocks are ready to rock Regionals! #GoUtes https://t.co/6kBkrRc6YL +04/06/2018,Sports_celeb,@MSkinner2016,RT @flashgurl: @UtahGymnastics @MSkinner2016 I love how everyone is a Mykayla Skinner fan now that she is making an impact at Utah. I have… +04/05/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: ""...then there is a rare kind of athlete, those whose impact behind the scenes is the equal of their incredible perform…" +04/05/2018,Sports_celeb,@MSkinner2016,RT @elaynewharmer: This girl is amazing. @MSkinner2016 @foxybirdlady https://t.co/8QKjxI0M2C +04/04/2018,Sports_celeb,@MSkinner2016,RT @CatDaddy61015: @MSkinner2016 seeing you live is on my bucket list. Who needs Beyoncé when you have a double double like that 💁🏼‍♀️ +04/04/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: 👏👏👏 +@MSkinner2016 +🥇 https://t.co/CCdb6WJMEp" +04/04/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Congratulations to Kim Tessen, MaKenna Merrell-Giles, @MSkinner2016 and Missy Reinstadtler for making the 2018 All-Pac-…" +04/04/2018,Sports_celeb,@MSkinner2016,RT @CaraT_3: @sportsiren @UtahGymnastics @MSkinner2016 Outstanding Athlete who keeps showing how strong/talented she is!From an alternate i… +04/03/2018,Sports_celeb,@MSkinner2016,RT @NickForrester13: I interviewed @MSkinner2016 last year and was taken aback by her professionalism on and off the floor. Congrats on ano… +04/03/2018,Sports_celeb,@MSkinner2016,RT @tsquared314: So much fun to watch. Thanks for all your hard work! #redrocks @MSkinner2016 https://t.co/LxEZAKmfBP +04/03/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 leads Utah with 5️⃣ first-team All-Pac-12 awards. She’s the only gymnast in the conference to win first-tea… +04/03/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: DYK: MyKayla Skinner enters regionals competition as nation's No. 2 ranked all-arounder. She is one of only two gymnasts… +04/03/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: @MSkinner2016 congratulations !!! You're amazing https://t.co/Lapt0FoKf7 +04/03/2018,Sports_celeb,@MSkinner2016,"RT @deimeke03: @UtahGymnastics @MSkinner2016 Congrats @MSkinner2016 on your 2018 First Team All-Around, Vault, Floor, Beam and Bars All-PAC…" +04/03/2018,Sports_celeb,@MSkinner2016,RT @SpiniLisa: @UtahGymnastics @MSkinner2016 Congratulations MyKayla! +04/03/2018,Sports_celeb,@MSkinner2016,"RT @cadrzz: Yes! @MSkinner2016 is amazing! Thank you, Holly. https://t.co/cnd3odDrDl" +04/03/2018,Sports_celeb,@MSkinner2016,RT @sportsiren: This is the real Wonder Woman. Only athlete named 1st-team All-Pac 12 in EVERY single category including All-Around. What a… +03/30/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Congratulations to the Red Rocks that made the 2018 @pac12 Gymnastics All-Academic teams! Shannon, Maddy & MyKayla mad…" +03/28/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 and MaKenna Merrell-Giles for becoming 2018 regular season All-Americans!!! #GoUtes https… +03/28/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 and MaKenna Merrell-Giles have been honored as regular season All-Americans by the National Association of… +03/26/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: The Red Rocks come in ranked #4 for the final regular season ranking of 2018! #GoUtes https://t.co/Vj14jss2kM +03/25/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Another unreal performance Myk @MSkinner2016 so clutch,everyone sees how much you want it and we love you for that,cong…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @Pay1John: @MSkinner2016 You were awesome last night!! Love your routines it was amazing!! You are my favorite gymnast for Utah Gymnasti… +03/25/2018,Sports_celeb,@MSkinner2016,RT @deimeke03: @UtahGymnastics Congrats @MSkinner2016 on your PAC-12 Championship All-Around and Floor titles!!! +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016 defended her all-around and floor titles as Utah placed second in the Pac-12 championship. + +Recap and high…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Ute Gymnasts Take Second at Pac-12 Championship-MyKayla Skinner wins all-around and floor, Makenna Merrell-Giles wins v…" +03/25/2018,Sports_celeb,@MSkinner2016,@samanthapeszek @UtahGymnastics Thanks Sam!! You are so sweet! Love ya❤️ +03/25/2018,Sports_celeb,@MSkinner2016,RT @samanthapeszek: Thank you @UtahGymnastics for continually pushing our conference to be better. The stuck bar dismounts are to die for &… +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner closes the 2nd rotation on beam with a solid 9.9! #GoUtes #Pac12gym https://t.co/du4hsA1aSI +03/25/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: Last up on bars, Mykayla Skinner hits a beautiful 9.925 to finish the first rotation! #GoUtes #Pac12gym https://t.co/Fk…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @utahathletics: MyKayla Skinner wins her 2nd Pac-12 all-around title, tying for first, and Utah places second at Pac-12 Championship. Sc…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Competition was fierce tonight at the Pac-12 Championship!!! The Red Rocks rallied at the end but it wasn’t enough to d… +03/25/2018,Sports_celeb,@MSkinner2016,RT @BrookeMThayer: Congratulations @MSkinner2016 it looks like you’ve had an incredible season!❤️ https://t.co/r0x0cfOOTo +03/25/2018,Sports_celeb,@MSkinner2016,RT @crosbygustafson: Queen 👑🔥 @MSkinner2016 https://t.co/Zek1eoo3we +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Sydney_Mieko: GET IT GURRRLLL!!! Every meet I’ve watched @MSkinner2016 I think... damn she’s good... like crazy, super-human good... ho…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner wraps up competition with a 9.9 on vault! #GoUtes #pac12gym https://t.co/iCrORLMcTW +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: Pac-12 all-around champion ✅ +Pac-12 floor champion ✅ + +@MSkinner2016 ties for first in the all-around (39.675) and on flo…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @caraleones54: @UtahGymnastics @MSkinner2016 https://t.co/gZtfgVp3yt +03/25/2018,Sports_celeb,@MSkinner2016,RT @Pac12Network: An individual event title wasn't enough -- @MSkinner2016 also ties for the #Pac12Gym All-Around title. 🤸‍♀️ https://t.co/… +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 on tying for 1st place in the All-Around with a 39.675 and tying for 1st place on floor w… +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: None like her. 👑 + +@MSkinner2016's 9.950 ties for the highest score from today's #Pac12Gym Champs floor competition. https…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @fitzscott: Great vault from @MSkinner2016 - whoo! #GoUtes #RedRocksRule @UtahGymnastics +03/25/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Skinner is unstoppable on floor!!! #GoUtes #Pac12gym https://t.co/G0ZaG2zyvn +03/25/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: @MSkinner2016 +👇 +👏👏👏 https://t.co/sQhVdqG7WG" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: We’re halfway through the meet and @MSkinner2016 leads Utah to first place! + +Standings after rotation 2: + +1️⃣ Utah 98.55…" +03/25/2018,Sports_celeb,@MSkinner2016,"RT @JoyGaeraths: Three reasons why I drove to Tucson today: #3 - @MSkinner2016 and @UtahGymnastics, #2 - Elise Ray coaching @UWGymnastics,…" +03/25/2018,Sports_celeb,@MSkinner2016,RT @Sydney_Mieko: Me after EVERY SINGLE ROUTINE by @MSkinner2016! Counting down the minutes to watch @UtahGymnastics put on a show in Sessi… +03/24/2018,Sports_celeb,@MSkinner2016,RT @Tater2Stock: Pac12 Gymnastics Championship meet today! Kick some butt #RedRocks and @MSkinner2016 ! +03/24/2018,Sports_celeb,@MSkinner2016,"RT @SpiniLisa: My collage addition to my previous tweet! Go Jos, Myk, Jess and Justine! Best of luck at PAC 12’s💜 https://t.co/IXTTRj0gZG" +03/24/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Practice Day #WIL https://t.co/p1SVShB0YO +03/23/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: The fun is just getting started as @UtahGymnastics enters postseason 🤸‍♀️🏆 + +In my latest, I dive into the Red Rocks’ minds…" +03/23/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “Throw us anywhere, and we are going to be fine, but we love starting on bars.” https://t.co/RXmRVGEShu" +03/22/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “Staying near the top is another goal that the Red Rocks are itching to keep. For now, they’ll try to achieve it by roc…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @RoundOffBlog: Our #NCAAGym Routines of the Week for Week 11! + +Vault - @MagsGotSwag12 +Bars - @sfinnegan37 +Beam - @MSkinner2016 +Floor…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @crosbygustafson: Lucky to have a friend like you, who loves what they do, works so hard, absolutely kills it, and is an incredible pers…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @Matthews_bay: you amaze me so much, i miss you❤️@MSkinner2016 https://t.co/UUfhvXhBi2" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @cynthia_cronin: @MSkinner2016 Love you so much, you were meant to do great things❤️❤️❤️" +03/21/2018,Sports_celeb,@MSkinner2016,Couldn’t have gotten this far without u! Love u Lisa!❤️ https://t.co/T7paji79cV +03/21/2018,Sports_celeb,@MSkinner2016,RT @O10Courtney: @MSkinner2016 is a great collegiate gymnast. She is tearing up the NCAA right now. She’s on fire 🔥 +03/21/2018,Sports_celeb,@MSkinner2016,"RT @cynthia_cronin: Crazy how this cute girl who sat by me in choir who was like my little buddy would become this great, you’re a beast @M…" +03/21/2018,Sports_celeb,@MSkinner2016,You’re the sweetest!! I miss u so much❤️😭 Thanks for always believing in me Cynthia! https://t.co/yPrfNXafad +03/21/2018,Sports_celeb,@MSkinner2016,RT @frankeyyyj: r u even real 🤔😍🙈 @MSkinner2016 https://t.co/6EzGC0JMhT +03/21/2018,Sports_celeb,@MSkinner2016,I hope so!!😂😘 https://t.co/Wa3DcvDOa7 +03/21/2018,Sports_celeb,@MSkinner2016,"RT @_jacobminer: when you show up to sophomore year NCAAs with double doubles, full-ins, double twisting yurchekos, and a beam double back…" +03/21/2018,Sports_celeb,@MSkinner2016,"RT @Pac12Network: Week after week MyKayla Skinner makes it look easy! + +She is once again your #Pac12Gym Gymnast of the Week: https://t.co/1…" +03/21/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: So happy for you!!! 😍💖 @MSkinner2016 https://t.co/GIukSlZwtH +03/20/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Congratulations @MSkinner2016 for finishing the regular season the same way you started it—as the @pac12 Gymnast of the… +03/20/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: For the fifth time this season and 12th time in her career, @MSkinner2016 is the Pac-12 Gymnast of the Week 🤸‍♀️ + +It’s the…" +03/19/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: U know who finished the regular season as the country’s No. 2 gymnast in the all-around? + +Hint: She’s also the Pac-12’s to…" +03/19/2018,Sports_celeb,@MSkinner2016,RT @Lookingforw0nka: I'm in love with @MSkinner2016 skills 😍😍 she's one of the best gymnast 💖 +03/18/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “That was exactly what the doctor ordered,” Utah co-head coach Tom Farden said.” https://t.co/LgQFZVqQPG" +03/17/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: When you (or rather MaKenna Merrell-Giles and @MSkinner2016) both swing 9.925s to tie for first on bars. https://t.co/70Nm… +03/17/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner’s performance last night was a triple winner!!! She captured the all-around (39.725) and beam (9.95) an… +03/17/2018,Sports_celeb,@MSkinner2016,"RT @JavierRojas10_: Another brilliant all-around performance Myk congratulations and on thr team reaching 198,you guys have each others bac…" +03/17/2018,Sports_celeb,@MSkinner2016,"RT @Holli_Alexa: .@MSkinner2016’s 39.725 all-around win against Georgia is her 19th career all-around victory, moving her into sole possess…" +03/17/2018,Sports_celeb,@MSkinner2016,"RT @Carli379: I guess it took me finally getting there to cheer them on in person to hit that 198. Great job ladies, so much fun to watch!!…" +03/17/2018,Sports_celeb,@MSkinner2016,RT @JaneMarquardt: Another all-around win for @MSkinner2016! Have we told you lately how glad we are you chose @UUtah? #GoUtes https://t.c… +03/17/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: “They all have something different that they bring to the team and their personalities bonded us, brought us closer tog…" +03/17/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: An emotional @MSkinner2016 is taking time to thank the seniors as Tiffani and Maddy are tearing up in the presser. +03/17/2018,Sports_celeb,@MSkinner2016,RT @BraedenRoss: @MSkinner2016 is the gymnastics GOAT😱 +03/17/2018,Sports_celeb,@MSkinner2016,RT @INK12: First time watching @MSkinner2016 on @ESPNU tonight. Amazing! #powerful +03/17/2018,Sports_celeb,@MSkinner2016,RT @Sydney_Mieko: @UtahGymnastics... Holy Sticks Batman!!! @MSkinner2016 is so BOSS tonight sticking EVERY SINGLE FREAKING LANDING!!! She’s… +03/17/2018,Sports_celeb,@MSkinner2016,RT @utahathletics: BOOM. MyKayla Skinner closes the beam rotation with a 9.95! Live coverage of tonight's @UtahGymnastics meet continues on… +03/17/2018,Sports_celeb,@MSkinner2016,RT @thom59020084: Best beam routine ever for @MSkinner2016 tonight at the Huntsman. Just a beautiful performance. Standing O was sweet for… +03/15/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: The drum and feather leotard is a team favorite saved for senior night. @MSkinner2016 shared on Instagram that @UtahGymnas… +03/14/2018,Sports_celeb,@MSkinner2016,"RT @DeafITT08: Wow, that’s awesome landing, @MSkinner2016! https://t.co/r08zFm6m3E" +03/13/2018,Sports_celeb,@MSkinner2016,"RT @utahathletics: Live for the pressure. +This Friday, two of the top programs all-time in college gymnastics face off. You'll want to be t…" +03/12/2018,Sports_celeb,@MSkinner2016,"RT @UtahGymnastics: If you haven’t been to a gymnastics meet, THIS IS THE ONE. Be there for the final home meet of the season Friday night…" +03/12/2018,Sports_celeb,@MSkinner2016,RT @Holli_Alexa: .@MSkinner2016 leaps 🆙 to the No. 3 all-around (39.665) spot in the nation. https://t.co/tAN6zNmSCv +03/11/2018,Sports_celeb,@MSkinner2016,"RT @bergs_bees: @MSkinner2016 was at the same stake conference I was at today and I was a little star struck, even from across the giant ro…" +03/11/2018,Sports_celeb,@MSkinner2016,You should’ve said hi!!!!❤️❤️❤️ https://t.co/sC8bm98LhE +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner hits a 9.9 bar routine bringing the Red Rocks score to a 49.325 after the first rotation leading the Wo… +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: Mykayla Skinner’s 39.700 all-around score wasn’t enough to pull the Utes to victory. The #4 Red Rocks fall to the #7 Mi… +03/11/2018,Sports_celeb,@MSkinner2016,RT @UtahGymnastics: MyKayla Skinner puts an exclamation point on it by NAILING her beam dismount scoring a 9.925! #GoUtes https://t.co/y8Jb… +03/11/2018,Sports_celeb,@MSkinner2016,"RT @omarjimmenez: ❤️❤️❤️ +@MSkinner2016 https://t.co/FjNs1GEPW8" +07/01/2018,Sports_celeb,@ShawnJohnson,"💩GROSS💩WHAT""S IN THE BOX CHALLENGE (LIVE ANIMALS) WITH REBECCA ZAMOLO AND MATT SLAYS|Shawn + Andrew: https://t.co/JseLEefQ87 via" +06/30/2018,Sports_celeb,@ShawnJohnson,"I have the sexiest, sweetest, and most thoughtful hubby in the world! It’s a week of celebration with the launch of… https://t.co/bb0T0DxICJ" +06/30/2018,Sports_celeb,@ShawnJohnson,RT @bobgoff: God often waits until we're out of ideas before He lets us know His plans. +06/29/2018,Sports_celeb,@ShawnJohnson,Hubby and I are back at it! On the road headed to South Dakota! CHALLENGE: Can you comment down below what state yo… https://t.co/67s5QHdoMj +06/28/2018,Sports_celeb,@ShawnJohnson,OUR EPISODE OF FAMILY FEUD! REACTION | Shawn Johnson: https://t.co/0gINSrRj7N via @YouTube +06/28/2018,Sports_celeb,@ShawnJohnson,It's a Postmates and La Scala kind of night 😎 #YassQueen +06/27/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeud: Olympic gold medalists @ShawnJohnson and @lzhernandez02 go head-to-head at the podium! Question is... What does @IAmSteveHa… +06/27/2018,Sports_celeb,@ShawnJohnson,💃🏼 channeling my inner emoji ❤️ comment down below the emoji that matches you today! #summer #instabeach #ootd https://t.co/0pTREe2TzU +06/25/2018,Sports_celeb,@ShawnJohnson,Soaking up some sun today with the hubs! HAPPY MONDAY! Comment down below where in the world you are today!… https://t.co/jBwbvqDzxd +06/24/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeudABC: Beaming with excitement for tonight's #CelebrityFamilyFeud! https://t.co/8BFl7MQXFy +06/24/2018,Sports_celeb,@ShawnJohnson,"RT @DancingABC: It's the battle of the #DWTS champions tonight! +@lzhernandez02 faces off against @ShawnJohnson on @FamilyFeudABC tonight…" +06/24/2018,Sports_celeb,@ShawnJohnson,RT @Chat0_wow: I can't wait to see @FamilyFeudABC tonight at 8pm #DWTS @ShawnJohnson @lzhernandez02 +06/24/2018,Sports_celeb,@ShawnJohnson,FAMILY FEUD FAILS REACTION | Shawn + Andrew: https://t.co/0tMCKV1ei8 via @YouTube +06/23/2018,Sports_celeb,@ShawnJohnson,Day 2 of the @reggiebush Champions For Kids Charity weekend! Let’s golf baby! Hahaha comment down below... do you l… https://t.co/x3nbBXJFeV +06/23/2018,Sports_celeb,@ShawnJohnson,RT @FamilyFeudABC: Basketball stars @StephenCurry30 & @CP3 and Gymnastic gold medalists @lzhernandez02 & @ShawnJohnson go head-to-head on S… +06/23/2018,Sports_celeb,@ShawnJohnson,RT @NastiaLiukin: #OlympicDay 💕❤️ one of my favorite moments from Beijing... @ShawnJohnson https://t.co/x0HFijAa7f +06/23/2018,Sports_celeb,@ShawnJohnson,Charity Gala with this hunk for @reggiebush @thebirthdaypartyproject #charity #championsforkids (P.S. thanks for ch… https://t.co/zyUcuXY93L +06/22/2018,Sports_celeb,@ShawnJohnson,"RT @USAGym: #OnThisDate ten years ago, @shawnjohnson and @nastialiukin became the first two members named to the 2008 Olympic Team! https:/…" +06/22/2018,Sports_celeb,@ShawnJohnson,"RT @iamsecond: Coming soon: Second Edition feat. Shawn Johnson East + +We caught up with @ShawnJohnson and her husband Andrew! Stay tuned!…" +06/22/2018,Sports_celeb,@ShawnJohnson,RT @s_bzak: So obsessed with @ShawnJohnson and her hubby!!!😭😭😭 Hope to have what they got someday cause it’s something real special☺️🧡🧡 htt… +06/22/2018,Sports_celeb,@ShawnJohnson,Ummm.... guess whose episode of @familyfeudabc airs this Sunday 👀 Comment down below who you think we went up again… https://t.co/hWuUWMYyDS +06/21/2018,Sports_celeb,@ShawnJohnson,When your husband puts you through the @nfl @jaguars conditioning test... 😭😵🤢 It also ends in a fire red freckle co… https://t.co/rwGfuizsc6 +06/21/2018,Sports_celeb,@ShawnJohnson,BEST FAILS OF THE YEAR REACTION! | Shawn + Andrew: https://t.co/qlmslBn5PG via @YouTube +06/20/2018,Sports_celeb,@ShawnJohnson,RT @thelukerodgers: @AndrewDEast @ShawnJohnson #HUNK ALERT. +06/20/2018,Sports_celeb,@ShawnJohnson,Hahahah when the beast gets a little too excited... caption this! Best captions will get a shoutout!… https://t.co/QW9fGaqLz7 +06/20/2018,Sports_celeb,@ShawnJohnson,😎+☀️=🤗 comment down below your favorite emoji for a perfect summer day! #couplegoals #summer #beach https://t.co/Q0WvxNP5ZH +06/18/2018,Sports_celeb,@ShawnJohnson,Fun day at the beach with the hubs and the beast 🐶👫 Double tap if you like the beach and comment down below what’s… https://t.co/Uh8FwDWI3u +06/18/2018,Sports_celeb,@ShawnJohnson,RT @HORPTyler: @lzhernandez02 and @ShawnJohnson on #CelebrityFamilyFeud next week. Is it bad that I want both of them to win?!?! +06/17/2018,Sports_celeb,@ShawnJohnson,MEET MY PARENTS!!! | Shawn Johnson: https://t.co/qv2hBRa6g9 via @YouTube +06/14/2018,Sports_celeb,@ShawnJohnson,GETTING A NEW DOG VLOG | Shawn + Andrew: https://t.co/ASEsUKwoTN via @YouTube +06/14/2018,Sports_celeb,@ShawnJohnson,RT @madddymcgowan: I love how skinny you feel first thing in the morning before you eat & then you eat a cheerio and it’s like helllllllloo… +06/14/2018,Sports_celeb,@ShawnJohnson,RT @jmattjmattjmatt: There is power in the name of Jesus +06/14/2018,Sports_celeb,@ShawnJohnson,RT @MoyaEthan: I need to find prince a new home since im moving and my dad wont keep him for me. It breaks my heart that i cant take him wi… +06/14/2018,Sports_celeb,@ShawnJohnson,RT @EmHum_: currently binge watching @ShawnJohnson and @AndrewDEast videos at 1:00 in the morning. greatest decision ever👍🏻❤️ https://t.co/… +06/13/2018,Sports_celeb,@ShawnJohnson,RT @rsmittay: @NastiaLiukin @ShawnJohnson @chuckwicksmusic @matt_lombardi @AndrewDEast Matt and Andrew look like they’re about to drop the… +06/12/2018,Sports_celeb,@ShawnJohnson,"RT @ABC_Publicity: New Release: NBA All-Stars @CP3 and @StephenCurry30 Compete Again, But This Time With Their Families; And Olympic Gymnas…" +06/12/2018,Sports_celeb,@ShawnJohnson,"RT @bobgoff: The more beauty we find in someone else's journey, the less we'll want to compare it to our own. +#EverybodyAlways" +06/12/2018,Sports_celeb,@ShawnJohnson,RT @kaleycraft: @NastiaLiukin @ShawnJohnson @chuckwicksmusic @matt_lombardi @AndrewDEast Y’all look like you’re about to drop the hottest a… +06/12/2018,Sports_celeb,@ShawnJohnson,Friend goals 😍 CHALLENGE who can comment FRIENDS letter by letter down below without getting interrupted?… https://t.co/ttYD1vm04M +06/11/2018,Sports_celeb,@ShawnJohnson,"RT @NastiaLiukin: I don’t think this picture quite captures the amount of fun, laughs, and just truly good times this weekend consisted of…" +06/11/2018,Sports_celeb,@ShawnJohnson,RT @anthemdirection: @ShawnJohnson @AndrewDEast your episode of cupcake wars came on lol https://t.co/7A8jbSUNdG +06/10/2018,Sports_celeb,@ShawnJohnson,proposalreaction: https://t.co/2A24azws1Z via @YouTube +06/10/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: First date weekend with @shawnjohnson , first time we danced and the last time I was rocking hair this wild #fiveyears #an…" +06/08/2018,Sports_celeb,@ShawnJohnson,5 years ago today this hot nerd swept me off my feet at the #CMAFest while on our first date hahah now he’s stuck w… https://t.co/9b5daziNS0 +06/08/2018,Sports_celeb,@ShawnJohnson,RT @Mattieemonday: @AndrewDEast @ShawnJohnson The booty call had me like https://t.co/x9CxPU4cS8 +06/07/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS SAVES REACTIONS! | Shawn Johnson: https://t.co/V7NKH1nh7O via @YouTube +06/07/2018,Sports_celeb,@ShawnJohnson,Just wow. How many survivors does it take to make people “believe”. Like WTF. Simone... agreed. amen. https://t.co/4pnPkBfHCT +06/07/2018,Sports_celeb,@ShawnJohnson,Let’s do this summer! https://t.co/ckMIRZemF7 +06/07/2018,Sports_celeb,@ShawnJohnson,RT @Carleen1991: Okay I have fallen in love with watching @ShawnJohnson & @AndrewDEast Videos on youtube... they are so adorable!!! +06/07/2018,Sports_celeb,@ShawnJohnson,RT @JRMediaStar: @AndrewDEast & @ShawnJohnson crack me up on their Instagram stories watching #TheBacheloretteِ 😂 #icanthandlethisrightnow +06/07/2018,Sports_celeb,@ShawnJohnson,RT @JenSwirsky: Guys. I cried. It’s @ShawnJohnson. Goodbye world. My job here is done. https://t.co/6YHus7Icrv +06/06/2018,Sports_celeb,@ShawnJohnson,"About last night.... ya, that was pretty cool 😎 haha double tap if you like country music and comment down below wh… https://t.co/eUv7diQIfg" +06/06/2018,Sports_celeb,@ShawnJohnson,Here at Backroads Country Music Event with @pandora and @kingsford ! So freaking excited can’t wait to interview th… https://t.co/cpl3L1nn9s +06/05/2018,Sports_celeb,@ShawnJohnson,It’s summertime.... bring on the freckles! #summertime #pool #beach #nomakeup #freckles https://t.co/ouRmtUBSCp +06/04/2018,Sports_celeb,@ShawnJohnson,I’ve got exclusive access to the @PandoraMusic Backroads event and I can’t wait to share it with you!!! I’ll be sha… https://t.co/ScHa9oSLNV +06/04/2018,Sports_celeb,@ShawnJohnson,One happy family 👙🐶☀️ #summertime #couplegoals #puppies https://t.co/zuZ4QEnzjZ +06/04/2018,Sports_celeb,@ShawnJohnson,RT @sliebers12: 6 years ago today @ShawnJohnson announced her retirement from gymnastics. #blessed she’s still the best role model ever +06/03/2018,Sports_celeb,@ShawnJohnson,GIANT GUMMY VS. REAL FOOD CHALLENGE | Shawn + Andrew: https://t.co/j6jyz1Jmn4 via @YouTube +06/01/2018,Sports_celeb,@ShawnJohnson,EPIC WAFFLE CHALLENGE! | Shawn + Andrew: https://t.co/LYv1oISvMk via @YouTube +05/31/2018,Sports_celeb,@ShawnJohnson,MOOD! I freaking love thursdays! Comment down below where in the world you are today! I’m in TENNESSEE! #thursday… https://t.co/SbGIwIG2AQ +05/31/2018,Sports_celeb,@ShawnJohnson,"RT @bobgoff: Live your life like you're exactly who God says you are. +You're His beloved. +Quit acting like you've got to earn it. +#Everyb…" +05/31/2018,Sports_celeb,@ShawnJohnson,RT @Simone_Biles: I LOVE SLEEP +05/28/2018,Sports_celeb,@ShawnJohnson,RT @VanderbiltU: Remembering our nation's fallen heroes and their families on this #MemorialDay. https://t.co/0BYqr4wjLg +05/28/2018,Sports_celeb,@ShawnJohnson,RT @ACLrecoveryCLUB: I disagree...my knee always reminds me that it’s raining outside! https://t.co/v2FSkUiZf8 +05/28/2018,Sports_celeb,@ShawnJohnson,RT @NastiaLiukin: Hahahaha. This is legit me and you @ShawnJohnson... pretty much all apply 😂😂 https://t.co/BnlVEiCsan +05/28/2018,Sports_celeb,@ShawnJohnson,Murphy... I feel ya. That 4am alarm is hitting me hard. I think I might just go to bed now. #strugglebus https://t.co/2lp0ctI5ca +05/27/2018,Sports_celeb,@ShawnJohnson,"RT @kenzie_gora: LADIES imagine: +It’s 15 years from now. Youve been planning this dinner for 2 months. Your husband asks where his supersui…" +05/27/2018,Sports_celeb,@ShawnJohnson,CALLING ALL GYMNASTS... this one is for you! I have been getting a lot of requests lately for nutrition tips that a… https://t.co/AwKSrdt8WQ +05/27/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS HEALTH TIPS WITH Dr. Axe | Shawn Johnson: https://t.co/QaYthIGfr4 via @YouTube +05/27/2018,Sports_celeb,@ShawnJohnson,Hey @andrewdeast I think you is supa cute #thathandplacementthough #couplegoals #marriage #missyou TAG your crush b… https://t.co/jfKnrxtVO3 +05/26/2018,Sports_celeb,@ShawnJohnson,The embarrassment you feel when you get a pedicure and you still haven’t excepted that it’s shorts weather and you… https://t.co/pvzA6iRMbS +05/25/2018,Sports_celeb,@ShawnJohnson,RT @samanthapeszek: I’d like to hear more about this “athlete task force” that @KerryJPerry talked about today at the congressional hearing… +05/24/2018,Sports_celeb,@ShawnJohnson,GYMNASTICS FAILS REACTIONS | Shawn Johnson: https://t.co/eqd8ff5HVl via @YouTube +05/22/2018,Sports_celeb,@ShawnJohnson,Need new YouTube video ideas! What should we do! +05/19/2018,Sports_celeb,@ShawnJohnson,I’ll admit... sometimes we fall short with our priorities and put too much weight on work while everything else fal… https://t.co/6IhMFXvgTh +05/19/2018,Sports_celeb,@ShawnJohnson,Ok... who else is tuning in today to the #royalwedding on @goodmorningamerica 👀 I may or may not be GEEKING OUT! Th… https://t.co/NisuHBvfX0 +05/19/2018,Sports_celeb,@ShawnJohnson,ROYAL WEDDING ADVICE | Shawn and Andrew: https://t.co/XEOAt5ogUp via @YouTube +05/18/2018,Sports_celeb,@ShawnJohnson,#Datenight with my best friend @andrewdeast #couplegoals #marriage https://t.co/lU9876f2LQ +05/17/2018,Sports_celeb,@ShawnJohnson,GET TO KNOW REBECCA ZAMOLO + MATT SLAYS | Shawn Johnson: https://t.co/B11pZc8QzP via @YouTube +05/16/2018,Sports_celeb,@ShawnJohnson,Oh hey cutie 😎🤓 comment down below your favorite summer time emoji for a like! #summer #couplegoals #stagecoach https://t.co/LeD68KThFW +05/13/2018,Sports_celeb,@ShawnJohnson,#happymothersday to the strongest woman I know! I love you to the moon and back! 💕 https://t.co/gIBg3lgWoP +05/11/2018,Sports_celeb,@ShawnJohnson,#TBT to our sexy slash awkward slash giggle fest engagement shoot #sosensual #marriage #couplegoals #weweird 📸… https://t.co/vUXNuuPX4h +05/10/2018,Sports_celeb,@ShawnJohnson,SUMMER FESTIVAL GET READY WITH ME | Shawn Johnson: https://t.co/dpF4eqflzv via @YouTube +05/10/2018,Sports_celeb,@ShawnJohnson,A true #tbt 🤷🏼‍♀️🤓😊 hahah baby me tag me in a picture of you as a kid!!! https://t.co/GQy2EZxfHI +05/09/2018,Sports_celeb,@ShawnJohnson,RT @dangjasminee: Its been TWO full weeks 😭 here’s a video edit of what Playlist is like!!! ft some clips of @ShawnJohnson @99_goonsquad @A… +05/08/2018,Sports_celeb,@ShawnJohnson,To all of my fellow short peeps out there... Happy Tuesday! Comment down below how tall you are! Me? I’m 4’11 🤓and… https://t.co/LV9E53HfCN +05/06/2018,Sports_celeb,@ShawnJohnson,RT @Ginge1129: @ShawnJohnson - I can’t WAIT to see #fyt come to fruition for you! 😍 #findyourtruth +05/06/2018,Sports_celeb,@ShawnJohnson,RT @AmandaKBorden: The outtakes are always the best 😂😂😂 Take number 27.... @samanthapeszek @ShawnJohnson https://t.co/QjBxIlDYOj +05/06/2018,Sports_celeb,@ShawnJohnson,Happy Sunday! Comment down below where in the world you are today! #marriage #couplegoals https://t.co/RYdKf5uwbx +05/05/2018,Sports_celeb,@ShawnJohnson,OUR FIRST MEET UP! | Shawn + Andrew: https://t.co/xXZHPVRDiV via @YouTube +05/03/2018,Sports_celeb,@ShawnJohnson,STAGECOACH SUMMER FESTIVAL! | Shawn and Andrew: https://t.co/jUwyT5Dwet via @YouTube +05/01/2018,Sports_celeb,@ShawnJohnson,I love you ladies! So freaking much! @annieleblanc @rebeccazamolo #playlistlive 📸 @dawnkingston https://t.co/fEBdVkOhB7 +04/30/2018,Sports_celeb,@ShawnJohnson,Yep... we were that couple that chose to be nerds and match #denimjacket #denimduo #couplegoals https://t.co/PpsqK1EdRM +04/29/2018,Sports_celeb,@ShawnJohnson,From @stagecoach to @playlistlive 🤓😊We made it baby! Let’s do this! #playlist #stagecoach #playlistlive COMMENT dow… https://t.co/stmaTTHxDp +04/29/2018,Sports_celeb,@ShawnJohnson,Crazy awesome experience these last two days with @esteelauder and @stagecoach and thank you cheesus for… https://t.co/cAQqpLJ5b4 +04/28/2018,Sports_celeb,@ShawnJohnson,Come hang out with me and @AndrewDEast at the Estee Lauder tent of you're at #Stagecoach2018 ! +04/28/2018,Sports_celeb,@ShawnJohnson,WE TRAINED LIKE BODYBUILDERS FOR 30 DAYS | Shawn and Andrew: https://t.co/90iemFLy9D via @YouTube +04/28/2018,Sports_celeb,@ShawnJohnson,CRAZY AWESOME first day with @esteelauder at @stagecoach I’m in country two stepping heaven #esteepartner… https://t.co/X4GjRFML3l +04/27/2018,Sports_celeb,@ShawnJohnson,Getting all glammed up and ready to rock the boots with @esteelauder at #Stagecoach this weekend! Got the long hair… https://t.co/dzbY5ZSiWG +04/27/2018,Sports_celeb,@ShawnJohnson,"RT @iclasspro: We are inspired by our friend, @ShawnJohnson. iClassPro - Made by pros, for pros, just like you. https://t.co/OWt05wBNfk" +04/27/2018,Sports_celeb,@ShawnJohnson,RT @KENTSIMMONS: @ShawnJohnson you brighten my day at Hyvee while I get my sushi for dinner! https://t.co/YFCDTw3nMw +04/27/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: There are four things to take note of in this picture: 1) how awesome this mural is 2) how beautiful @shawnjohnson is 3) h… +04/27/2018,Sports_celeb,@ShawnJohnson,Yup.... lens cap still on 🤦🏼‍♀️ I’m obviously a great photographer 😂 thanks babe for the heads up @andrewdeast… https://t.co/1AHILWFPsu +04/26/2018,Sports_celeb,@ShawnJohnson,Got to visit the coolest mural today on Melrose with #windex and play around like a professional graffiti artist 😜… https://t.co/pfMbT4y5aH +04/26/2018,Sports_celeb,@ShawnJohnson,Third Wheeling with Country Music Star Chuck Wicks! | Shawn + Andrew: https://t.co/SLf16Q7Gpj via @YouTube +04/25/2018,Sports_celeb,@ShawnJohnson,"RT @StephCatalioto: Omg @ShawnJohnson liked my photo , she has been my idol since I was a little baby in gymnastics, I am screaming with jo…" +04/25/2018,Sports_celeb,@ShawnJohnson,Cheese ball city but I can’t help it 🤓😜😘😊 Tag me in a picture of you with your bestie or favorite person for a foll… https://t.co/7yiUionSRh +04/24/2018,Sports_celeb,@ShawnJohnson,Fricken love NYC 🍎 have you guys ever been?! #nyc #couplegoals #bigapple https://t.co/B5WqL2I0Cf +04/24/2018,Sports_celeb,@ShawnJohnson,"✌🏻It’s an early morning, early workout, day full of work kind of day in the big 🍏!! Duh... I got my ☕️ 😜… https://t.co/IyMVQCxAQi" +04/23/2018,Sports_celeb,@ShawnJohnson,New profile pic posted! Happy Monday! See if you can comment M•O•N•D•A•Y letter by letter without being interrupted… https://t.co/NGoGzV0d0E +04/22/2018,Sports_celeb,@ShawnJohnson,We have a CRAZY announcement for you guys! #BostonMarathon https://t.co/ses5vC0AZ0 +04/22/2018,Sports_celeb,@ShawnJohnson,Sunday Funday 🤓 #sundayfunday #couplegoals #marriage comment down below what you’re doing today! https://t.co/vx2W1KWGRE +04/21/2018,Sports_celeb,@ShawnJohnson,get a roommmmm haha 🤷🏼‍♀️🤓🤦🏼‍♀️ #couplegoals https://t.co/Ar1cUB4o5z +04/20/2018,Sports_celeb,@ShawnJohnson,Friday feels 🤓❤️😘 #friyay #fridaynight #ootd https://t.co/xnEXGrHfId +04/19/2018,Sports_celeb,@ShawnJohnson,#TBT to where it all began 2013 🤓 #firstdate #cmafest #couplegoals @andrewdeast https://t.co/srHzThSE4j +04/18/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: Did you catch @shawnjohnson and I on @picklerandben this morning?! If not you can check it out online! #firstshow #cbs htt… +04/17/2018,Sports_celeb,@ShawnJohnson,So ladies and gents... thanks to the greatest partner ever @clifbar I guess the hubs and I will be running the… https://t.co/6WZd0vt6vJ +04/16/2018,Sports_celeb,@ShawnJohnson,Yep😂 https://t.co/KxTcDVseE0 +04/16/2018,Sports_celeb,@ShawnJohnson,RT @lindsayb489: Happy 2nd Anniversary @ShawnJohnson and @AndrewDEast! Thank you for making me laugh. Hope you guys have a beautiful day.💗… +04/16/2018,Sports_celeb,@ShawnJohnson,RT @AndrewDEast: I want everyone to meet you. You’re my favorite person of all time @shawnjohnson . Happy 2 year #anniversary https://t.co/… +04/16/2018,Sports_celeb,@ShawnJohnson,2 years already?! I can’t believe how fast it’s flown but it’s seriously brent he greatest two years of my life!… https://t.co/5N5rlie42R +04/15/2018,Sports_celeb,@ShawnJohnson,Mood #sunday https://t.co/zai26WN7Oz +04/14/2018,Sports_celeb,@ShawnJohnson,Who needs Coachella when you can run a 5k in BOSTON 😂🤓❤️ @nastialiukin @clifbar @bostonmarathon #bostonmarathon… https://t.co/Rx3WBeln5v +04/12/2018,Sports_celeb,@ShawnJohnson,One of the greatest joys I get is being able to share my story with you all and answer the burning questions and cu… https://t.co/5PsgKGCwuU +04/11/2018,Sports_celeb,@ShawnJohnson,"I ALMOST MISSED IT! Happy #nationalsiblingsday to this new, crazy, big family of mine :) and all the doggies too. L… https://t.co/XZQneKg4Rj" +04/09/2018,Sports_celeb,@ShawnJohnson,Well this picture wasn’t taken on a Monday 😴😜💀 #mondayblues #monday #meh https://t.co/Qiam5THWTO +04/08/2018,Sports_celeb,@ShawnJohnson,Sunday feels. Don’t ever move. Bring me some waffles. 🤓🤫😴 #cuddles #weekendvibes #sunday https://t.co/u98Q7hQciP +04/07/2018,Sports_celeb,@ShawnJohnson,Saturday’s are for experimenting with makeup 🤷🏼‍♀️🤓💁🏼‍♀️ Tag me in pictures of looks you want me to try and I’ll po… https://t.co/QulHbRHrQA +04/06/2018,Sports_celeb,@ShawnJohnson,RT @x3jennyfur: This goes out to @shawnjohnson and her hubby @andrewdeast 😆🙃 Thanks for the #aroundtheworld… https://t.co/xRfVGYouhr +04/05/2018,Sports_celeb,@ShawnJohnson,RT @madisonfrost: Also @ShawnJohnson and her husband are the cutest 😍 +04/05/2018,Sports_celeb,@ShawnJohnson,RT @a_schroed14: I asked for one magazine and my friend brought me an entire case 😅 @ShawnJohnson https://t.co/0COq68eGOt +04/05/2018,Sports_celeb,@ShawnJohnson,"RT @jntatmhn: @ShawnJohnson @AndrewDEast ""Tea"" ☕️ + Singas 🍕 = the ""Key"" 🔑 to my ""Heart"" ❤️" +04/05/2018,Sports_celeb,@ShawnJohnson,RT @jess_sloane: @mberlovine @kaitsexton @ShawnJohnson I’m fangirling for y’all 😆😆😆🌟😍 +04/04/2018,Sports_celeb,@ShawnJohnson,☕️ + @andrewdeast = the 🔑 to my ❤️ comment down below you favorite drink! #humpday #couplegoals #wifelife https://t.co/PJ56vNrb4w +04/03/2018,Sports_celeb,@ShawnJohnson,Finally got my husband back! @andrewdeast I missed yo face. Comment down below any fun plans for the week!… https://t.co/JCyES4BWmm +04/02/2018,Sports_celeb,@ShawnJohnson,Holy hotness @andrewdeast You’re my #MCM every Monday. Now get your butt back home so I can creepishly stare at you… https://t.co/2xoyYBgw9m +04/01/2018,Sports_celeb,@ShawnJohnson,HAPPY EASTER!! #easter https://t.co/c2MpgENAXy +03/31/2018,Sports_celeb,@ShawnJohnson,E A S T E R 🌸 W E E K E N D ! Comment below what your plans are! Hubs and I are on speerate sides of the continent… https://t.co/USRtZ3Iu6f +03/30/2018,Sports_celeb,@ShawnJohnson,FRIYAY! #friyay #fridayvibes #weekend https://t.co/C1zgY3AqNJ +03/30/2018,Sports_celeb,@ShawnJohnson,"RT @OSUspeakers: Rise and shine, Cowboys! +Remember to join us TODAY at 11:30 a.m. at Chi-O Clock for our first FREE t-shirt giveaway!! #Sh…" +03/28/2018,Sports_celeb,@ShawnJohnson,When yo 🍑 too big to fit on the window sill hahaha #humpday #embraceit #hottmess #squats #booty🍑 https://t.co/9Z2TD5PcD1 +03/28/2018,Sports_celeb,@ShawnJohnson,Shexy date night with my hunk and ol’ Johnny #datenight #marriage #wifelife #livingthatlacelife #dreamdate comment… https://t.co/lnS9tNmxWh +03/27/2018,Sports_celeb,@ShawnJohnson,It’s from a HyVee commercial shot in 2011! Should be on YouTube! https://t.co/iQACq1MulT +03/27/2018,Sports_celeb,@ShawnJohnson,I 🍩 wanna 🌮 bout it. It’s a problem. #donutsarelife #cheatday #foodie https://t.co/qb6Ex6e4CY +03/26/2018,Sports_celeb,@ShawnJohnson,RT @LilDavis09: @ShawnJohnson hey look it’s you!! Maybe you should plan a trip to Des Moines in April :) https://t.co/PvvMcmbqLD +03/26/2018,Sports_celeb,@ShawnJohnson,Myobdays 😂🤷🏼‍♀️🤦🏼‍♀️ #mondaymood 🤦🏼‍♀️#mcm #travel who can comment MONDAY letter by letter uninterrupted?! https://t.co/cK8HY2XbSC +03/26/2018,Sports_celeb,@ShawnJohnson,@TeniPanosian I don’t even know what any of this means!!! Hahahaha +03/26/2018,Sports_celeb,@ShawnJohnson,Yo @warriors I meannnnnnnn I’m kind of freaking out. @kevindurant and @stephencurry30 #RESPECT 👏🏻💪🏻👍🏻 #sportsnerd… https://t.co/KKufPCoYCi +03/25/2018,Sports_celeb,@ShawnJohnson,ITS THE FREAKIN WEEKEND YALL! Comment down below what your weekend plans are!! Us?! We are going to the WARRIORS GA… https://t.co/oADBrAHX9U +03/24/2018,Sports_celeb,@ShawnJohnson,I d🍩nut know what I’d do without you 🤓 #mood #donuts #marriage #love #dontletmytrainerseethis @andrewdeast… https://t.co/FQvgiivluT +03/23/2018,Sports_celeb,@ShawnJohnson,Happy #nationalpuppyday 😍 https://t.co/hZ1F6WpLIX +03/23/2018,Sports_celeb,@ShawnJohnson,Photobomb of the year goes to the best little bro haha #FBF @andrewdeast @geasty57 #eastboys #family #mylove https://t.co/e6qDJsvrSQ +03/22/2018,Sports_celeb,@ShawnJohnson,"Nobody tells you +it is ok to call yourself beautiful +it is okay to smile at mirrors +and it is perfectly fine +to sa… https://t.co/bWdqTKwZAP" +03/21/2018,Sports_celeb,@ShawnJohnson,Workday Wednesday! Comment your dream job down below! #dreamjob #wednesday #humpday #workmode #picklerandben https://t.co/IhSiHZvu6g +03/19/2018,Sports_celeb,@ShawnJohnson,I’ve got a serious case of the mondays #mood #monday #meh #husbandsclothes What are your plans today?! Comment belo… https://t.co/kUutOQGtDv +03/19/2018,Sports_celeb,@ShawnJohnson,Happy S U N D A Y 🤓 #mrandmrs #easts #sundayfunday #freckles Who can comment SUNDAY letter by letter unbroken?! https://t.co/IfzmLaVUHJ +03/16/2018,Sports_celeb,@ShawnJohnson,Hey hunk... I love sharing life you with 🤓 #FBF @andrewdeast #marriage #dreamwedding #husband #wife https://t.co/w783bCEeoY +03/14/2018,Sports_celeb,@ShawnJohnson,HAPPY 🐪 DAY #humpday #marriage #mancrusheveryday @andrewdeast https://t.co/oZz54bmZLS +03/13/2018,Sports_celeb,@ShawnJohnson,My spirit animal 🦒 🤓 #onesiegymnastics #youtube #gymnastics #dork Comment your spirit animal down below! https://t.co/DrqJy2sikG +03/12/2018,Sports_celeb,@ShawnJohnson,Had THE GREATEST double date night with @markballas and @bcjean 😍☺️🤗 If you could go on a double date with anyone w… https://t.co/JOOKEvkgQK +03/11/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: Three incredibly creative, inspiring people. And then theres @markballas . So much fun with @shawnjohnson @bcjean @markbal…" +03/11/2018,Sports_celeb,@ShawnJohnson,What makes comfy clothes even better... when they are trendy and cute! Hahahahah I LIVE for these pieces and litera… https://t.co/1OWVbWZq8s +03/11/2018,Sports_celeb,@ShawnJohnson,RT @kt_cat16: @ShawnJohnson LOVE LOVE LOVE your most recent video w/ @AndrewDEast commentating your makeup routine! TOO FUNNY!!! 😂👌 +03/10/2018,Sports_celeb,@ShawnJohnson,"It’s the freakin weekend!! Now, what to do with it 🤨🤔🤷🏼‍♀️ what are YOUR weekend plans?! Comment down below!!… https://t.co/Qt4leeYu4M" +03/09/2018,Sports_celeb,@ShawnJohnson,FRIDAY FEELS!!!!! Try to comment “FRIYAY” letter by letter uninterrupted below 🤓😜🤣 #friday #fridaymood #friyay 📸:… https://t.co/bZYwRcc0O4 +03/09/2018,Sports_celeb,@ShawnJohnson,RT @LIVESTRONG_COM: Celebrating #IWD2018 with a look back at our STRONGER WOMEN interview with @ShawnJohnson 💖https://t.co/lLgUGSGzTN https… +03/08/2018,Sports_celeb,@ShawnJohnson,Just posted on YouTube! Don’t miss it! https://t.co/LPnsg9T9L6 https://t.co/I2P0nJayP2 +03/08/2018,Sports_celeb,@ShawnJohnson,"To these stunningly beautiful, confident, crazy smart, and insanely strong women.... I love you and am so grateful… https://t.co/GqsKcwoVFT" +03/06/2018,Sports_celeb,@ShawnJohnson,Wishing we were back in the fairytale land of castles 😍☺️🤓 @andrewdeast comment down below your favorite place you’… https://t.co/22Cud1DsBE +03/05/2018,Sports_celeb,@ShawnJohnson,"Man, I just love Monday’s...... 😜🤦🏼‍♀️😩🤨 #badcaseofthemondays #monday #bleh #meh Anyone have a cure for the Monday’… https://t.co/DGyCbnloyw" +03/05/2018,Sports_celeb,@ShawnJohnson,Great job @madi_brent96 ! https://t.co/q2ytbXQyel +03/03/2018,Sports_celeb,@ShawnJohnson,He’s 2 feet taller and I can wear shirts as dresses 😂🤓🤷🏼‍♀️ Comment down below your plans for this beautiful weeken… https://t.co/oStNqYLkJs +03/02/2018,Sports_celeb,@ShawnJohnson,Happy Friday y’all 🤓 comment down below... what emoji best describes you?! #emoji #happyfriday https://t.co/gdzE7xubMY +03/01/2018,Sports_celeb,@ShawnJohnson,How about a sappy one for this #TBT Best day of my life 🤗🤓☺️ #wedding #cheesy #marriage #love #fairytale… https://t.co/WrCs2gU63B +02/26/2018,Sports_celeb,@ShawnJohnson,"Ran into this beauty today!!! Man, @lauriehernandez_ I missed your face!!! #friends #gymnastics #weirdos https://t.co/npTxbH0riB" +02/24/2018,Sports_celeb,@ShawnJohnson,"Our bellies, hearts, and love has grown fuller these past 3 weeks. Sad to see this all come to an end but it’s time… https://t.co/9LQKHdjFYI" +02/23/2018,Sports_celeb,@ShawnJohnson,There is no better way to end this incredible trip than with the Vatican. Holy wow. Any last recommendations for Ro… https://t.co/NK0PghNgpZ +02/22/2018,Sports_celeb,@ShawnJohnson,Marriage summed up in a picture @andrewdeast #marriage #likevslove #grrr #stupidarguments #truelove https://t.co/jy4gC8qvMw +02/22/2018,Sports_celeb,@ShawnJohnson,Florence... it’s been real but it’s time to head to our last stop of this incredible journey 🤓 #loveofmylife… https://t.co/lIOUa85mTR +02/21/2018,Sports_celeb,@ShawnJohnson,461 steps later.... hello Florence 😍 #ouch #quadburn #marriage #vloglife https://t.co/c8JCoNOtEG +02/20/2018,Sports_celeb,@ShawnJohnson,Florence got me like... 😂🤷🏼‍♀️🤦🏼‍♀️ #worldtravels #europetrip #vloglife #marriage #florence https://t.co/PMtiUo6NGL +02/19/2018,Sports_celeb,@ShawnJohnson,Nothing quite like an Italian cappuccino 😍 and thanks baby for the coat #suchagentlemen #slashistoleit #coffee… https://t.co/zef58BoOko +02/19/2018,Sports_celeb,@ShawnJohnson,Ciao Venice! Onto the next! #worldtravels #vloglife #italy #marriage @andrewdeast https://t.co/QC05UJKwDf +02/18/2018,Sports_celeb,@ShawnJohnson,"RT @AndrewDEast: You asked, @ShawnJohnson delivered. This video is special for me. https://t.co/J7bs4fHFxh" +02/18/2018,Sports_celeb,@ShawnJohnson,Don’t mess with this 26 year old and her teddy bears 😂🤷🏼‍♀️🤦🏼‍♀️ a Valentines gift from the hubs. We went with the… https://t.co/pk078lmhJw +02/17/2018,Sports_celeb,@ShawnJohnson,Ice skating in Vienna... it was seriously magical 🌟... time to find the hidden magic in VENICE though!!… https://t.co/n6FbQ0LhOM +02/17/2018,Sports_celeb,@ShawnJohnson,Vienna... you’ve been too good to us. Time to head south. Can anyone guess?!!! #travel #vloglife #marriage… https://t.co/DORXJVFeWz +02/16/2018,Sports_celeb,@ShawnJohnson,Vienna... I love you so freaking much. #vienna #worldtravels #vloglife #marriage https://t.co/5aFjPEuqRf +02/15/2018,Sports_celeb,@ShawnJohnson,Kiss me you fool #marriage #lotsofslobber #eww #pda #love @andrewdeast https://t.co/fKh60L4MgB +02/14/2018,Sports_celeb,@ShawnJohnson,I know I’m a hott disastrous mess but you somehow pick up my pieces and make my heart feel so incredibly full. You… https://t.co/gI9xVnmdGH +02/14/2018,Sports_celeb,@ShawnJohnson,Starting my day off right in P R A G U E ☕️ #coffee #vloglife #worldtravels #marriage #love https://t.co/5VxwICDBeI +02/13/2018,Sports_celeb,@ShawnJohnson,#ad I LOVE PUPPERS! So glad I got to volunteer and help these cuties out a few weeks back. Thanks to @statefarm for… https://t.co/lPdhlhW2LH +02/13/2018,Sports_celeb,@ShawnJohnson,My hunk and I saying goodbye to London and hello to........... 😜 #whereswaldo #marriage #travel #europetrip… https://t.co/J1itmJfT6g +02/13/2018,Sports_celeb,@ShawnJohnson,B E R L I N W A L L 😎 where are we headed now 🤷🏼‍♀️ #train #nextstop #vloglife #adventures #history #europetrip… https://t.co/yY00WBwM5T +02/12/2018,Sports_celeb,@ShawnJohnson,RT @_josiesteele_: @ShawnJohnson yelling “I see dogs!” And running off camera to go pet the dogs is literally the most relatable thing I’ve… +02/11/2018,Sports_celeb,@ShawnJohnson,Cutest coffee shop in Amsterdam #COFFEE #COFFEE #COFFEE https://t.co/fSLO88qOVE +02/11/2018,Sports_celeb,@ShawnJohnson,RT @KeelievKruse: My cat and I LOVE watching you vlogs. @ShawnJohnson @AndrewDEast https://t.co/VaT4FAwCql +02/10/2018,Sports_celeb,@ShawnJohnson,P A R I S ... I like you 😎 #travel #worldtravels #vloglife #youtube #europetrip #eiffeltower #paris https://t.co/wrjkk7ykAY +02/09/2018,Sports_celeb,@ShawnJohnson,Nothing like some morning espresso at the most gorgeous hotel ever @fsparis thank you for the most magical stay but… https://t.co/vVoGtGYxyU +06/22/2018,Sports_celeb,@kristiyamaguchi,A special package arrived today from my choreographer #sandrabezic ...the original Jef Billings sketches of a few o… https://t.co/LYfchZ7ja0 +06/21/2018,Sports_celeb,@kristiyamaguchi,Excited to play for this great cause but Ha I apologize to my teammates already! Skating prowess does not translate… https://t.co/2mb2hbuYnb +06/20/2018,Sports_celeb,@kristiyamaguchi,Some more of paradise...and goofballs. 🌅🤪… https://t.co/97YWoypYNK +06/17/2018,Sports_celeb,@kristiyamaguchi,Wishing all of you daddys a happy Father's Day!!! +06/17/2018,Sports_celeb,@kristiyamaguchi,Happy Father’s Day @brethedican ...hoisting a… https://t.co/n2j88FoxHp +06/11/2018,Sports_celeb,@kristiyamaguchi,Thank you so much Raj for always being so generous with your time and supporting our work. You’re the best! Xo https://t.co/5n5UXGOgtl +06/10/2018,Sports_celeb,@kristiyamaguchi,Big thank you to these awesome Olympians for coming out and supporting @alwaysdream . You’re my heroes in so many w… https://t.co/fbrGkDp2Cb +06/09/2018,Sports_celeb,@kristiyamaguchi,Congratulations @warriors !!! Battled through a lot this year. #champs #DubNation wooooooooohoooooooo!!!!!!!🎉🙌🏻 https://t.co/S2cxotdVjk +06/08/2018,Sports_celeb,@kristiyamaguchi,Lets go @warriors !!! #DubNation 💛💙 +06/08/2018,Sports_celeb,@kristiyamaguchi,And the Stanley Cup ceremony takes a Vegas turn! 😱 #whathappensinvegasthehockeyworldsees 👀 +06/08/2018,Sports_celeb,@kristiyamaguchi,Big Congrats to @Capitals #stanleycup Champs!!! 🎉🙌🏻🎊. +06/07/2018,Sports_celeb,@kristiyamaguchi,Good luck @MichaelWeiss2 🧢 ! #stanleycup https://t.co/gSqZbhIe3V +06/06/2018,Sports_celeb,@kristiyamaguchi,Which one? #LoveMe #StayWild #LetsGetWeird https://t.co/RlOrqF1hQg +06/04/2018,Sports_celeb,@kristiyamaguchi,Yesssssssss #DubNation +05/29/2018,Sports_celeb,@kristiyamaguchi,"RT @warriors: Steph splash to take the lead! 💦 + +📺 @NBAonTNT https://t.co/5WYbtum2J9" +05/29/2018,Sports_celeb,@kristiyamaguchi,Why is it a shooting foul on a rebound foul? +05/28/2018,Sports_celeb,@kristiyamaguchi,"Game 7 @warriors , game 1 #StanleyCup Finals 😱😱😱 #DubNation #GoCaps" +05/28/2018,Sports_celeb,@kristiyamaguchi,Always grateful for the ultimate sacrifice for our liberties and freedom. Remembering today and everyday. #HappyMemorialDay ♥️🇺🇸💙 +05/27/2018,Sports_celeb,@kristiyamaguchi,Let’s go #Dubs !!! https://t.co/ivLme7hV0l +05/23/2018,Sports_celeb,@kristiyamaguchi,Wasting away at CA DMV office. #3hrsandcounting 🤬 +05/23/2018,Sports_celeb,@kristiyamaguchi,@USFigureSkating Tank!!! ❤️❤️❤️ +05/22/2018,Sports_celeb,@kristiyamaguchi,"Buy one, Give one! + +You can be part of my @AlwaysdreamFDN mission to ensure low-income students have access to hig… https://t.co/ZaTHo613qH" +05/21/2018,Sports_celeb,@kristiyamaguchi,Give the gift of reading to a child in need.Thanks to my Publisher @sourcebooks starting today for every book purch… https://t.co/5NX3iDcxK1 +05/20/2018,Sports_celeb,@kristiyamaguchi,Breaks my heart when our 14 yr old daughter has to ask this. We all feel broken for the victims and their families.… https://t.co/K90m5zRbYv +05/17/2018,Sports_celeb,@kristiyamaguchi,Anyone ever use Rover? Thoughts? +05/16/2018,Sports_celeb,@kristiyamaguchi,Raising age to 18 would be so detrimental to our sport. It’s exceptional for a lady to increase revolutions in the… https://t.co/j1bccA6PDo +05/14/2018,Sports_celeb,@kristiyamaguchi,I adore these 2 and they deserve your votes! Woohoo @mirai_nagasu and @Adaripp !!! #dwts and Yay @Meryl_Davis ! +05/13/2018,Sports_celeb,@kristiyamaguchi,To all you mom’s- one day off a year but the greatest privilege in the world. Happy Mother’s Day! 💐💖 https://t.co/eA6o8xj2nn +05/07/2018,Sports_celeb,@kristiyamaguchi,Lets go @SanJoseSharks !!!!! Get it going! 👏🏼👏🏼👏🏼 +05/05/2018,Sports_celeb,@kristiyamaguchi,So happy to be here at @hawaiibookmusic again with ADF board President @kealaorona and ED @loriyamaguchi ! 1 readin… https://t.co/WUYtabLeqA +05/05/2018,Sports_celeb,@kristiyamaguchi,😩 +05/03/2018,Sports_celeb,@kristiyamaguchi,Let’s go sharks!!! 🦈😋⚔️ https://t.co/BWOJ5836BK +05/02/2018,Sports_celeb,@kristiyamaguchi,Hawaii friends! Visit My Keiki Reading Corner @hawaiibookmusic #HBMF2018 I’m reading Sat@ 10AM & 1PM and Sun@ 10AM… https://t.co/SN52Ej6xxQ +05/01/2018,Sports_celeb,@kristiyamaguchi,"It was so great to meet you, I am a fan of yours and inspired by all you do. Congratulations on all of your success… https://t.co/rYkHWsKLxf" +05/01/2018,Sports_celeb,@kristiyamaguchi,"Omgoodness when it rains it pours, our poor house- plumber, AC, attic, door, grill. Calgon take me away...🛁" +05/01/2018,Sports_celeb,@kristiyamaguchi,OT again 🤪😱🦈 +05/01/2018,Sports_celeb,@kristiyamaguchi,Niners!!! ❤️💛 https://t.co/zCuIvvJxoc +04/30/2018,Sports_celeb,@kristiyamaguchi,"Honor was mine, thank you @SarahHughesNY . Fun to see ya! ❌⭕️ https://t.co/caV6Smdv6q" +04/29/2018,Sports_celeb,@kristiyamaguchi,Sharrrrkkkkssssss!!!!!!!!!🤜🤜🤜👏🏼👏🏼👏🏼#BecauseItsTheCup +04/29/2018,Sports_celeb,@kristiyamaguchi,😱😵👀 +04/28/2018,Sports_celeb,@kristiyamaguchi,Let’s go Sharks! Game 2 #stanleycup https://t.co/DID2rMg4th +04/28/2018,Sports_celeb,@kristiyamaguchi,@BretHedican thank you 😊😘 +04/27/2018,Sports_celeb,@kristiyamaguchi,On to game 2 🦈 https://t.co/EEV8xIMhMJ +04/26/2018,Sports_celeb,@kristiyamaguchi,Excited about the celebration of these awesome athletes tonight! #teamUSA 🇺🇸 https://t.co/BhiNeKaAzN +04/24/2018,Sports_celeb,@kristiyamaguchi,Come on Bay Area and @nbcbayarea and local media. Get behind this team that has been in the playoffs 19 x’s in the… https://t.co/fS7xXgfL1X +04/21/2018,Sports_celeb,@kristiyamaguchi,People ask what my favorite skating routine was. Because of @SandraBezic I can never pick just one. Creating with y… https://t.co/OpfcdLeXj3 +04/21/2018,Sports_celeb,@kristiyamaguchi,@jahawtin @isabrasseur @TheHSF Nice article @isabrasseur ❤️ Can Gabi teach Keara how to cook too? :) +04/19/2018,Sports_celeb,@kristiyamaguchi,So completely honored. Especially because of its namesake and all that Jesse Owens represents. I humbly thank you… https://t.co/xdAVnpMmpw +04/19/2018,Sports_celeb,@kristiyamaguchi,SHARKSSS!!!!!!!!!!!!!! Movin' on #round2 #sweep #stanleycup 🦈@SanJoseSharks +04/18/2018,Sports_celeb,@kristiyamaguchi,Hey Bay Area tweeps- come out and support this event! 100% of the proceeds will go towards athletes with disabiliti… https://t.co/A13EwKg6pz +04/16/2018,Sports_celeb,@kristiyamaguchi,Its no wonder that he’s captured our hearts. 🖤🐾🐶 #Tank https://t.co/Z9JQ2JjSpM +04/15/2018,Sports_celeb,@kristiyamaguchi,👏🏼👏🏼👏🏼 https://t.co/wA5wqa27fC +04/15/2018,Sports_celeb,@kristiyamaguchi,This is gonna be ugly 🦈👅🦆 +04/14/2018,Sports_celeb,@kristiyamaguchi,Dubs...Sharks...positive vibes for the Bay today!!! #NBAPlayoffs #StanleyCup 💙💛🦈 +04/13/2018,Sports_celeb,@kristiyamaguchi,Kane!!!!!!!!!!!! #BecauseItsTheCup 🦈 +04/13/2018,Sports_celeb,@kristiyamaguchi,Can’t decide if I like your gold lamé pants or @pswylie ‘s leopard tank top better! 🤩 https://t.co/Oj7T25tez1 +04/12/2018,Sports_celeb,@kristiyamaguchi,Most wonderful time of the year!!! #LetsGoSharks 🦈😋🦆 #StanleyCupPlayoffs https://t.co/H4sI7KzVzI +04/08/2018,Sports_celeb,@kristiyamaguchi,"RT @SanJoseSharks: The #DuckHunt begins on Thursday. + +Full playoff schedule: https://t.co/ALxVglLIU2 https://t.co/xewaQrh6QY" +04/06/2018,Sports_celeb,@kristiyamaguchi,Happy Opening night 2018 @starsonice ! See ya in SJ. @Meryl_Davis @CharlieaWhite @AshWagner2010 @MadiHubbell… https://t.co/Nqt4BhfkWj +04/04/2018,Sports_celeb,@kristiyamaguchi,Fur babies meet. 🐾 #Hunter #Tank https://t.co/lNg3cLOOuh +04/01/2018,Sports_celeb,@kristiyamaguchi,Happy Easter 🐣🐇 🌷 +03/31/2018,Sports_celeb,@kristiyamaguchi,Thank you @Cirque #Crystal ! I loved the show and was in complete awe which is the norm with all of your shows. Bra… https://t.co/OTmgz03tHc +03/24/2018,Sports_celeb,@kristiyamaguchi,Yay congratulations @MadiHubbell @ZachTDonohue !!! 🎉 https://t.co/7VjnDqXqfK +03/24/2018,Sports_celeb,@kristiyamaguchi,Congratulations @nathanwchen ! https://t.co/N51G5ASx5m +03/21/2018,Sports_celeb,@kristiyamaguchi,@kristamarieyu @wheeler_forrest @TheIanChen @HudsonDYang @parkrandall 😘@kristamarieyu +03/21/2018,Sports_celeb,@kristiyamaguchi,@brettyamaguchi @HudsonDYang @TheIanChen 90’s Hair baby!!! Couldn’t find my scunchie 🤣 +03/20/2018,Sports_celeb,@kristiyamaguchi,Haha! This is tonight...reliving the ‘90’s 😆#FreshOffTheBoat ABC #firstladyhuang https://t.co/lBLiuben3y +03/17/2018,Sports_celeb,@kristiyamaguchi,@NickE408S @SanJoseSharks @evanderkane_9 Channel 780 NBCS +03/17/2018,Sports_celeb,@kristiyamaguchi,Yaaaayyyy 🎩trick for @evanderkane_9 !!! @SanJoseSharks 🦈 +03/16/2018,Sports_celeb,@kristiyamaguchi,TGIF...whatcha all up to? +03/15/2018,Sports_celeb,@kristiyamaguchi,"RT @AlexShibutani: .@MaiaShibutani and I are honored to be semifinalists for the 88th AAU James E. Sullivan Award. +We need your help! +Vot…" +03/14/2018,Sports_celeb,@kristiyamaguchi,So proud of our daughters and all the students across the country honoring Parkland and taking a stand. Let’s hope… https://t.co/oJSfdc3i0N +03/14/2018,Sports_celeb,@kristiyamaguchi,@ScottHamilton84 😘 honored and right back at you @ScottHamilton84 +03/11/2018,Sports_celeb,@kristiyamaguchi,"Omgoodness 🤣😂🤣 My life...RT if you can identify. +Slime After Slime / Time After Time Parody https://t.co/thjq9asdKL via @YouTube" +03/08/2018,Sports_celeb,@kristiyamaguchi,@CJVosters @ESPN1009 @greatlakesloons Big congrats to you @CJVosters ! +03/06/2018,Sports_celeb,@kristiyamaguchi,I’m so excited to be featured on @booknook - a great platform that helps students achieve their dreams through smal… https://t.co/SO5dMgDULU +03/06/2018,Sports_celeb,@kristiyamaguchi,So fun to make an appearance on @FreshOffABC ! Thank you for this experience. Hope you can catch it! https://t.co/HR4etJXyxg +03/02/2018,Sports_celeb,@kristiyamaguchi,Veteran. U.S. Paralympic Gold Medalist. Father. @RicoSled23 is an inspirational part of Team Milk… https://t.co/Eji4RcpQyU +03/01/2018,Sports_celeb,@kristiyamaguchi,That oh so blissful first sip. #simplepleasures #matchalatte https://t.co/p0fLYgMbeL +02/27/2018,Sports_celeb,@kristiyamaguchi,@USFigureSkating @nathanwchen Awwww with Tank and Dozer! +02/26/2018,Sports_celeb,@kristiyamaguchi,"Whether you’re hitting the ice or just trying to keep up with your kids, a good start is key. #BuiltNotBorn #ad… https://t.co/LM96o59sQ2" +02/25/2018,Sports_celeb,@kristiyamaguchi,"RT @nerdist: ICYMI, we asked @kristiyamaguchi if The Cutting Edge is realistic at all: https://t.co/YP6tZqDjBN (Spoiler alert: maybe not?)…" +02/23/2018,Sports_celeb,@kristiyamaguchi,"As a mom, it’s important I give my kids (and everyone) the support they need to succeed on and off the ice.… https://t.co/T7kYgS6a5s" +02/23/2018,Sports_celeb,@kristiyamaguchi,@NickMcCarvel @NBCOlympics @kristavoda @Ben_Agosto @CharlieaWhite It was always a highlight chatting with you. Was… https://t.co/A3qA4BXaKK +02/23/2018,Sports_celeb,@kristiyamaguchi,"US Ladies, you fought a good fight and know that no matter what we’re proud of you. @Karebearsk8 @mirai_nagasu @bradie_tennell" +02/23/2018,Sports_celeb,@kristiyamaguchi,"That was an insane close to Olympic #figureskating . The Russian rivalry, the greatest 4th place finish program eve… https://t.co/MObZ9Ahz7b" +02/23/2018,Sports_celeb,@kristiyamaguchi,Cheering you all on @Karebearsk8 @bradie_tennell @mirai_nagasu !!! Kill it! 🇺🇸⛸#teamusa +02/23/2018,Sports_celeb,@kristiyamaguchi,@JedHopkins @CharlieaWhite @CJVosters @ItsKrystleT @CJVosters you deserve a gold medal putting up with @CharlieaWhite for 2 weeks! +02/22/2018,Sports_celeb,@kristiyamaguchi,Thank you @FareedNBCS for graciously having me on @NBCSN with you. See ya back in the Bay Area! #olympics https://t.co/lWYQ1GLLI0 +02/22/2018,Sports_celeb,@kristiyamaguchi,RT @FromTheBoards: This is the LAST NIGHT for the late edition of #nbcolympicIce! What burning questions do you have for @Ben_Agosto @Charl… +02/22/2018,Sports_celeb,@kristiyamaguchi,"Seriously?! Wouldn’t believe it if I didn’t see it, so mind blowing. Amazing More triples in one pass than we may s… https://t.co/yYcYfQFy3m" +02/22/2018,Sports_celeb,@kristiyamaguchi,#tbt but not really...anyone remember the original 20yrs ago? Here’s a behind the scenes from my #milklife shoot.… https://t.co/RXy0ysTY8K +02/22/2018,Sports_celeb,@kristiyamaguchi,@pswylie @TeamUSA Me too! They played outta their minds. Yay! Miss you xoxoxo +02/22/2018,Sports_celeb,@kristiyamaguchi,Yeeessssssss!!! Congratulations @TeamUSA #womenshockey on GOLD!!! 🇺🇸🥇 https://t.co/O5QW6PlrLI +02/22/2018,Sports_celeb,@kristiyamaguchi,Omgoodness this game! 🇺🇸#womenshockey 😱 +02/21/2018,Sports_celeb,@kristiyamaguchi,@FareedNBCS No I’ve finally made it onto your show! Thanks for having me @FareedNBCS +02/21/2018,Sports_celeb,@kristiyamaguchi,Sending my best wishes and lots of luck to @mirai_nagasu @bradie_tennell @Karebearsk8 🇺🇸 bring it ladies! 💪🏼👊🏼⛸ +02/20/2018,Sports_celeb,@kristiyamaguchi,@taiskates @GettyImages You were (and are) such an inspiration to me. That earring meant so much to me-for the most… https://t.co/2K094ob9to +02/20/2018,Sports_celeb,@kristiyamaguchi,Happy anniversary @BrianBoitano ! You showed me what it took to accomplish a dream. No better mentor and now dear f… https://t.co/nsRBIQpbo8 +02/20/2018,Sports_celeb,@kristiyamaguchi,A dance event with roller coaster emotions. Congratulations to Virtue/Moir on awe inspiring skates and history made… https://t.co/3m6ZPA20hP +02/20/2018,Sports_celeb,@kristiyamaguchi,. @ShibSibs !!! Congratulations on your Olympic 🥉 👏🏼🎉 Performances of a life at the Olympics! +02/20/2018,Sports_celeb,@kristiyamaguchi,Listening to Olympic coach (legendary already) #brianorser on Olympic Ice. So agree w/ his philosophy on preparing… https://t.co/5wRDzh4Por +02/18/2018,Sports_celeb,@kristiyamaguchi,Best of luck to the ice dancers today! @MaiaShibutani @AlexShibutani @MadiHubbell @ZachTDonohue @chockolate02… https://t.co/PEsmGfEQXr +02/18/2018,Sports_celeb,@kristiyamaguchi,@NancyinHI @kristavoda @Ben_Agosto @CharlieaWhite @NBCOlympics Try downloading the NBC Sports app... +02/18/2018,Sports_celeb,@kristiyamaguchi,Want a recap on the skating competition so far? Go to https://t.co/L4yWb2gDrB for our #NBCOlympicIce POST show. Sen… https://t.co/sKjodOXBKi +02/17/2018,Sports_celeb,@kristiyamaguchi,RT @YukiSNYC: Holy shit @nathanwchen. We never stopped believing in you. What a fighter. You showed everyone out there to never stop believ… +02/17/2018,Sports_celeb,@kristiyamaguchi,"Happy 34th anniversary my friend, my hero. You won gold in ‘84 but the impact you’ve had in figure skating and in l… https://t.co/p1BMD39WiQ" +02/17/2018,Sports_celeb,@kristiyamaguchi,Perfection. Happy 4th anniversary @Meryl_Davis @CharlieaWhite @TeamUSA 🥇 https://t.co/BBFmHQpdH7 +02/17/2018,Sports_celeb,@kristiyamaguchi,@Ben_Agosto @CharlieaWhite Ummmmmm where’s the pic @Ben_Agosto ? 🤣 +02/17/2018,Sports_celeb,@kristiyamaguchi,"Early morning shenanigans. Our Game of Thrones...King Slayer🗡, King of the North 🐺, Khalisti Yama 🐉 https://t.co/SI0JHzxi9d" +02/17/2018,Sports_celeb,@kristiyamaguchi,"So amazed at these men. History made. Love Shoma, so happy for Javi and Spain, @Adaripp @govincentzhou @nathanwchen… https://t.co/gqWbKHVGze" +02/17/2018,Sports_celeb,@kristiyamaguchi,Congratulations Hanyu on history- 1st repeat gold medalist since the great @PushDicksButton . 👏🏼👏🏼👏🏼🇯🇵 +02/17/2018,Sports_celeb,@kristiyamaguchi,"Ok...these Olympic moments are so emotional. @govincentzhou good for you, that was freakin’ awesome😎" +02/17/2018,Sports_celeb,@kristiyamaguchi,"@nathanwchen K, I’m still shaking from that. Nathan with the Mao Asada comeback. So happy for him. #superhuman #olympics" +02/17/2018,Sports_celeb,@kristiyamaguchi,What?!?!?! Completely inhuman display of ridiculousness!!! 6 quads...beautiful skating. Guys beyond. Congratulation… https://t.co/AfUuS7bnyO +02/16/2018,Sports_celeb,@kristiyamaguchi,".@maddiebowman, you inspire me with your incredible grace and skill under pressure. We’re all cheering you on from… https://t.co/5IFp1wZWQX" +02/16/2018,Sports_celeb,@kristiyamaguchi,"Stunning men’s short event on both ends of the spectrum. Wow Hanyu, composed, in command, veteran. Great to see Fer… https://t.co/4HZnjceEfi" +02/16/2018,Sports_celeb,@kristiyamaguchi,Good luck @nathanwchen and @Adaripp tonight for your SP! #olympics #Pyeonchang2018 🇺🇸 +02/16/2018,Sports_celeb,@kristiyamaguchi,Go @govincentzhou !!! 🇺🇸#teamusa +02/15/2018,Sports_celeb,@kristiyamaguchi,So many thoughts and prayers go out to Parkland FL. It’s well beyond the time to do something when our children don… https://t.co/1AG5dIUoAq +02/14/2018,Sports_celeb,@kristiyamaguchi,Simply agree... :) https://t.co/kGVJ0YYnWC +02/14/2018,Sports_celeb,@kristiyamaguchi,Happy Valentine’s Day!!! ❤️💘💋 +02/13/2018,Sports_celeb,@kristiyamaguchi,Thank you Lea! Feel free to come join us in studio if you feel like chatting about skating! See you soon! https://t.co/Ka1Q7iFk5x +02/13/2018,Sports_celeb,@kristiyamaguchi,😄👏🏼@MarkBallas is AMAZING! https://t.co/IjLY6axdQk +02/13/2018,Sports_celeb,@kristiyamaguchi,@CharlieaWhite I totally agree @CharlieaWhite ! https://t.co/sUKocYMBfj +02/12/2018,Sports_celeb,@kristiyamaguchi,"Skating is pure magic, so whether you’re trying a new move or taking that 1st step on the ice, be fearless.… https://t.co/dPexblY5aw" +02/12/2018,Sports_celeb,@kristiyamaguchi,We’ll be watching you! Good luck @BOBSLEDR ! #pyeongchang2018 https://t.co/IPv3He01eP +02/12/2018,Sports_celeb,@kristiyamaguchi,So into the #Olympics ...but yay @SanJoseSharks too! 🦈 🏒 #SOwin +02/12/2018,Sports_celeb,@kristiyamaguchi,You rocked it @NickMcCarvel ! Thank you so much for bringing us such great insight from Pyeongchang! Talk to ya soo… https://t.co/ieon6t78GI +02/12/2018,Sports_celeb,@kristiyamaguchi,Let’s go @ShibSibs !!! 🇺🇸coming up now! +02/12/2018,Sports_celeb,@kristiyamaguchi,Wow @mirai_nagasu !!! Congratulations...tears of joy for you again! #1stAmerican3axel #hero 👑 +02/12/2018,Sports_celeb,@kristiyamaguchi,@Adaripp 💪🏼👏🏼👏🏼awesome!!! +02/11/2018,Sports_celeb,@kristiyamaguchi,I LOVE this! You two are the best and I hope to see more demos on the glice. Great job! #sendinghugs… https://t.co/qCtUR9DuE8 +02/11/2018,Sports_celeb,@kristiyamaguchi,Yay can’t wait to watch @mirai_nagasu and @Adaripp grace Olympic ice! Good luck in the team event tonight (this mor… https://t.co/wQVxRZuOpe +02/11/2018,Sports_celeb,@kristiyamaguchi,“Called” correct but was it judged correct? #GOE https://t.co/87JB9MoKIt +02/11/2018,Sports_celeb,@kristiyamaguchi,Go get ‘Em @MaiaShibutani and @AlexShibutani !!! Good luck In the team event tonight! #olympics #figureskating +02/11/2018,Sports_celeb,@kristiyamaguchi,Good luck @bradie_tennell as you begin your #Olympics experience!!! Enjoy and go @TeamUSA ! #PyeongChang #figureskating +02/10/2018,Sports_celeb,@kristiyamaguchi,RT @SInow: Even @hqtrivia got in the Olympic spirit tonight with a cameo from 1992 Olympic gold medalist Kristi Yamaguchi https://t.co/T4f2… +02/08/2018,Sports_celeb,@kristiyamaguchi,Who’s so pumped?!?! Good luck to you @TeamUSA ! #BestOfUS #olympics ⛸ https://t.co/9lwGgEXNw2 +02/08/2018,Sports_celeb,@kristiyamaguchi,Figure skating starts tonight!!! Catch me @CharlieaWhite @Ben_Agosto @kristavoda on #OlympicIce right after primeti… https://t.co/ijh4ZnDWn0 +02/08/2018,Sports_celeb,@kristiyamaguchi,Thank you @VICE ! #letsdoitladies 💪🏼 https://t.co/9DvJHdMX5A @bonnieblair #cathyturner #donnaweinbrecht +02/07/2018,Sports_celeb,@kristiyamaguchi,Team Milk is ready for the Olympic Winter Games PyeongChang 2018. Cheers! #BuiltNotBorn #ad #MilkLife #TeamUSA… https://t.co/77xajbLpRC +02/06/2018,Sports_celeb,@kristiyamaguchi,"Tank says- +“I wanna wish my skating friends good luck at the Olympics!!! Wish I could be there to cheer you on!” 🐶… https://t.co/Sb49DECzeD" +02/06/2018,Sports_celeb,@kristiyamaguchi,Coming up at 8:30am West Coast 😃Thank you for coming out to reminisce @NMoralesNBC 💕 https://t.co/eRc1mKjli7 +02/05/2018,Sports_celeb,@kristiyamaguchi,🎉Happy Danville mom #LisaErtz (and pretty good soccer player Julie Johnston;)… https://t.co/SWtvny7ehY +02/05/2018,Sports_celeb,@kristiyamaguchi,Loved this to my favorite song!!! So pumped 👏🏼👏🏼👏🏼 #TeamUSA https://t.co/WCAvYqRwWP +02/05/2018,Sports_celeb,@kristiyamaguchi,Just watched a hover board show...yes my daughters choreograph routines on it. #laughtilyoucry 🤣😂🤣 +02/04/2018,Sports_celeb,@kristiyamaguchi,@CharlieaWhite Awww TY ☺️ +02/02/2018,Sports_celeb,@kristiyamaguchi,"@TIME Thank you @TIME ! We know who the big guns are, but I want to “meet” the other faces to watch for at the Olympics. 👍🏼" +02/02/2018,Sports_celeb,@kristiyamaguchi,I love mentoring the next generation of athletes. I’m sure Elliot will be out there nailing triple axels in no time… https://t.co/l3r3v14IYF +02/01/2018,Sports_celeb,@kristiyamaguchi,"We all fall, it’s how #WeGetUp that matters. Join us for National Get Up Day, Feb. 1 and share your story.… https://t.co/FIZEAP4L9J" +01/31/2018,Sports_celeb,@kristiyamaguchi,"Chasing my tail like @TeamUSA athletes are chasing their dreams! #Tank Make a gif to show how your dog is more, h… https://t.co/M0kjR0rsmw" +01/30/2018,Sports_celeb,@kristiyamaguchi,Always lovely to hang and chat with you @NMoralesNBC ! https://t.co/gQkIWCLHCe +01/24/2018,Sports_celeb,@kristiyamaguchi,"When people ask what it takes to become a U.S. Olympian, I always say the same thing: practice, practice, practice.… https://t.co/wranmHCr3N" +01/24/2018,Sports_celeb,@kristiyamaguchi,Congratulations @DanRusanowsky on #2000 games!!! @SanJoseSharks https://t.co/orGei924Ps +01/17/2018,Sports_celeb,@kristiyamaguchi,"My kids know when I put my mind to something, I give it 100%. I want them to see when you #milklife, great things h… https://t.co/wjtt65BL3Q" +01/17/2018,Sports_celeb,@kristiyamaguchi,Excited to join the @NBCOlympics digital team! https://t.co/Y9nic2QUuD +01/12/2018,Sports_celeb,@kristiyamaguchi,"Take it from me, dreams don’t come true at the drop of a hat. It takes time and hard work to achieve your goals.… https://t.co/ZdkdkNgY6B" +01/11/2018,Sports_celeb,@kristiyamaguchi,https://t.co/OVaTTLecQT #activewear #sale https://t.co/281fCahvdm +01/08/2018,Sports_celeb,@kristiyamaguchi,"As a mom, I know the importance of good nutrition. I want to make sure everyone gets nutrients they need to do thei… https://t.co/q5UT0Ui69p" +01/07/2018,Sports_celeb,@kristiyamaguchi,Congratulations @govincentzhou @rossminer @nathanwchen on a spectacular display of athleticism and artistry! 🥇🥈🥉 +01/07/2018,Sports_celeb,@kristiyamaguchi,But this...I can watch it all day. @jasonbskates https://t.co/e2zQUc96JJ +01/07/2018,Sports_celeb,@kristiyamaguchi,@rockerskating Too harsh +01/07/2018,Sports_celeb,@kristiyamaguchi,Ok- that was exciting TSTL. Great skate @govincentzhou https://t.co/aqcfocv8nN +01/06/2018,Sports_celeb,@kristiyamaguchi,@mirai_nagasu you amaze and inspire. TY for showing how never giving up on a dream is the only way it can become re… https://t.co/EtHyMkjk72 +01/06/2018,Sports_celeb,@kristiyamaguchi,"A Fremont girl at the Olympics again!!! Congratulations Karen, I know you will represent @TeamUSA 🇺🇸 with pride! https://t.co/6GvMXEKMBd" +01/06/2018,Sports_celeb,@kristiyamaguchi,"That #uschamps18 ladies event was 😱😁😭🙌🏻👏🏼👍🏼🔥!!!!!!! So happy for all the women, they skated so awesome! 🥇Bradie 🥈… https://t.co/6XhNNOr8QL" +01/06/2018,Sports_celeb,@kristiyamaguchi,Strong gutsy skate by @AshWagner2010 ! Nice! 👏🏼👏🏼👏🏼 +01/05/2018,Sports_celeb,@kristiyamaguchi,What an event at ice dance...so fun to watch them bring it! @chockolate02 @Evan_Bates @MaddieHubbell @ZachTDonohue @ShibSibs 🙌🏻 +01/05/2018,Sports_celeb,@kristiyamaguchi,Weeeeee! That short dance though @MaiaShibutani and @AlexShibutani 🔥🔥🔥 Yay 👏🏼👏🏼👏🏼 +01/04/2018,Sports_celeb,@kristiyamaguchi,Running up a wall? Front flips? All in a day’s work for Elliot. He introduced me to the world of parkour & showed m… https://t.co/RtRzx6T9lN +01/04/2018,Sports_celeb,@kristiyamaguchi,Whoa felt that 😳#earthquake +01/04/2018,Sports_celeb,@kristiyamaguchi,Yay @Karebearsk8 ! Beautifully done! #USChamps18 +01/04/2018,Sports_celeb,@kristiyamaguchi,Thank you @nicole_soojung !!!😘 https://t.co/ubFwem2RPr +01/04/2018,Sports_celeb,@kristiyamaguchi,Thrilling week ahead at the @USFigureSkating Championships. Good luck to the competitors! Some will be on the 2018 Olympic team !!! ⛸ +01/04/2018,Sports_celeb,@kristiyamaguchi,Great SP @PolinaEdmunds !!! Hometown girl doesn’t disappoint. 👍🏼👏🏼👏🏼 +01/01/2018,Sports_celeb,@kristiyamaguchi,"Wishing everyone a very Happy New Year filled with blessings, good health and prosperity. 🎊🎆💋" +01/01/2018,Sports_celeb,@kristiyamaguchi,Happy happy birthday @Meryl_Davis ! There’s no one else I’d go 🍌s with! 🎂🎊💖 https://t.co/N0Zy3v0Tuh +12/31/2017,Sports_celeb,@kristiyamaguchi,Loved skating with these amazing ladies! A special night with @starsonice back in Lake Placid. Thx for the pic… https://t.co/XaWGPbCWbX +12/16/2017,Sports_celeb,@kristiyamaguchi,@MrDrewScott Hey Drew yes! Welcome!!! +12/10/2017,Sports_celeb,@kristiyamaguchi,So proud of Emma and her team mates! Congratulations trivalleysoccerclub Fury 05 and Coach Lou!… https://t.co/3NeFJAgTnY +12/05/2017,Sports_celeb,@kristiyamaguchi,"RT @NBCOlympics: Russia banned from 2018 #WinterOlympics, but Russian athletes can compete as neutrals: https://t.co/jsIOAxOixM https://t.c…" +12/05/2017,Sports_celeb,@kristiyamaguchi,"Milk is one of the most requested, yet least donated items at food banks. See how you can help kids in need:… https://t.co/UWhVt9jY8I" +12/04/2017,Sports_celeb,@kristiyamaguchi,Come on out and skate on the rooftop with me tonight! 7-9pm @TheCosmpolitan #treelighting https://t.co/sPfvzFOJl5 +12/03/2017,Sports_celeb,@kristiyamaguchi,Woohoo! Congrats to Emma and her @trivalleysc2 team for the big win today! On to State Cup finals!!! #05 +12/02/2017,Sports_celeb,@kristiyamaguchi,Looking forward to kicking off this holiday season with you! https://t.co/zXGNXFRtT9 +12/01/2017,Sports_celeb,@kristiyamaguchi,Curled up with a good read! Congratulations @karebearsk8 on Finding the Edge. And I was honored to write the forewo… https://t.co/XLAETJA7ks +11/29/2017,Sports_celeb,@kristiyamaguchi,"RT @555CATreeLight: Tonight's the night! Come down to #555california and join Karen and @RonnieLottHOF, @JoeMontana, @kristiyamaguchi, @raj…" +11/29/2017,Sports_celeb,@kristiyamaguchi,"Nearly 13M American kids struggle w/ hunger. This holiday, help The Great American #MilkDrivelend a hand:… https://t.co/CqHLr3TjTY" +11/23/2017,Sports_celeb,@kristiyamaguchi,Happy turkey day everyone! I'm thankful for so much especially my family and friends. How about you? #HappyThanksgiving #grateful 🦃🍗🍰🍽💛 +11/22/2017,Sports_celeb,@kristiyamaguchi,"Hey #TeamStark @LindseyStirling -you have so much heart and brought so much joy, creativity, class and awesomeness… https://t.co/B95rwm5pNF" +11/22/2017,Sports_celeb,@kristiyamaguchi,@Jordan_Fisher @lindsayarnold Big congratulations to you @Jordan_Fisher !!! An incredible star on stage but off sta… https://t.co/HuZAweTmM2 +11/21/2017,Sports_celeb,@kristiyamaguchi,"As a mom of 2, I’m proud to support The Great American #MilkDriveto help kids get nutrients they need. Visit… https://t.co/6hnqJE1B9Y" +11/21/2017,Sports_celeb,@kristiyamaguchi,What?!?!? Those freestyles were so awesome tonight!!! Just so fun to watch 👏🏼👏🏼👏🏼🙌🏻 @DancingABC #dwts +11/19/2017,Sports_celeb,@kristiyamaguchi,Have an amazing show tonight @ScottHamilton84 @TeamScottCARES !!! Always inspired by your commitment to… https://t.co/sxilDNlWrj +11/14/2017,Sports_celeb,@kristiyamaguchi,This really hit home for me. See how U.S. Olympian @MaddieBowman finds the support she needs to succeed with a litt… https://t.co/FgayMLAf4r +11/14/2017,Sports_celeb,@kristiyamaguchi,#teamstark y’all!!!!! Get you’re votes in @DancingABC #dwts finale 1-800-868-3407 +11/13/2017,Sports_celeb,@kristiyamaguchi,Yay a win! 😬 #goniners +11/11/2017,Sports_celeb,@kristiyamaguchi,Thank you veterans 🇺🇸 💙❤️ +11/06/2017,Sports_celeb,@kristiyamaguchi,💔 #TexasStrong +07/01/2018,Sports_celeb,@McIlroyRory,Thanks @NiallOfficial 👍 It’s going to be a special @DDFIrishOpen week at @Ballyliffin ⛳️🌞 https://t.co/WOTatVt1Cd +06/29/2018,Sports_celeb,@McIlroyRory,Love this video!! Looking forward to seeing everyone next week at @ballyliffin for the @DDFIrishOpen. Let's hope th… https://t.co/33DGBBXla6 +06/26/2018,Sports_celeb,@McIlroyRory,...golfers from the UK and Ireland can enter here: https://t.co/XHFWeyFzUK ⛳️🏌️‍♀️🏌🏻‍♂️ https://t.co/3P1XUYfjoi +06/26/2018,Sports_celeb,@McIlroyRory,"Want to tee off with me @royalportrush in Northern Ireland, home of @TheOpen in 2019, using the latest gear from… https://t.co/m1whwTivol" +06/25/2018,Sports_celeb,@McIlroyRory,Thank you @travelerschamp for another special week. One of the best stops on tour. https://t.co/hr1mRwdWNi +06/20/2018,Sports_celeb,@McIlroyRory,RT @TravelersChamp: Hope you got your swings in. The golf counts tomorrow. #TravelersChamp https://t.co/IjttCyaozA +06/20/2018,Sports_celeb,@McIlroyRory,When you hit the island green @TravelersChamp you get a wee perk! Thanks @BirdiesForBrave https://t.co/UcQQEDoxgm +06/19/2018,Sports_celeb,@McIlroyRory,Well done @c_pats on winning my signed #USOpen custom-made @TaylorMadeGolf bag! Thanks everyone for participating… https://t.co/EU0gAi2jMA +06/05/2018,Sports_celeb,@McIlroyRory,Excited for Shinnecock Hills and @usopengolf! An outstanding course which will be a great championship test! Like m… https://t.co/yUXILV28hY +05/29/2018,Sports_celeb,@McIlroyRory,Thank you @jacknicklaus! Love being back at the @MemorialGolf ⛳️👌🏻 https://t.co/ezH1qjiP6f +05/15/2018,Sports_celeb,@McIlroyRory,Yesterday I returned to Congressional Country Club for the first time since winning the 2011 @usopengolf. It brough… https://t.co/iTYvnrglHB +05/07/2018,Sports_celeb,@McIlroyRory,Looking forward to this week @THEPLAYERSChamp! ⛳️ https://t.co/v3Xf8Vo7r1 +05/07/2018,Sports_celeb,@McIlroyRory,Another enjoyable week in Charlotte at the @WellsFargoGolf. Thanks for all the support and birthday wishes!🎂 Next s… https://t.co/eDLCfP2I2J +05/01/2018,Sports_celeb,@McIlroyRory,It’s @WellsFargoGolf week! https://t.co/u7fvNs8Pts +04/25/2018,Sports_celeb,@McIlroyRory,Long Drive competition next time @padraig_h #AdareManor #JPProAm2020 https://t.co/Cgvzvf4svC +04/21/2018,Sports_celeb,@McIlroyRory,😁 https://t.co/K0AFncjlf7 +04/20/2018,Sports_celeb,@McIlroyRory,Such a pleasure to play @TheAdareManor today. The golf course is parkland perfection. The exhibition match finished… https://t.co/kZ1iHnj9Ta +04/20/2018,Sports_celeb,@McIlroyRory,"RT @JPProAm: Tickets are now on sale for the 2020 JP McManus Pro-Am at Adare Manor! #JPProAm2020 + +https://t.co/YsjhGzkJHw https://t.co/A3V…" +04/19/2018,Sports_celeb,@McIlroyRory,A spectacular new golf course with an incredible backdrop of the historic Adare Manor. Looking forward to the exhib… https://t.co/lIGgZLBO6E +04/15/2018,Sports_celeb,@McIlroyRory,RT @OGOLead: On Part 2 of our podcast @McIlroyRory describes how he stays hungry and his views on inspirational leadership. https://t.co/az… +04/01/2018,Sports_celeb,@McIlroyRory,Really fun event to kick off Masters week at Augusta National. Check out @DriveChipPutt on @GolfChannel and watch t… https://t.co/k9LY9HaDzV +03/29/2018,Sports_celeb,@McIlroyRory,Thanks @DavidNovakOGO and @OGOLead. I enjoyed our conversation. https://t.co/RhqnkMta4C +03/28/2018,Sports_celeb,@McIlroyRory,.@PGAjrLeague allows kids to learn to play golf in a social team environment! All skill levels are welcome. Find yo… https://t.co/b7piupnAYm +03/28/2018,Sports_celeb,@McIlroyRory,Looking forward to going back to Wentworth for the @BMWPGA https://t.co/G1uc17GIub +03/27/2018,Sports_celeb,@McIlroyRory,"RT @THEPLAYERSChamp: After a big win @APinv, @McIlroyRory commits to #THEPLAYERS in search of his first title at the tournament. https://t.…" +03/24/2018,Sports_celeb,@McIlroyRory,Always fun spending time with you @MartySmithESPN https://t.co/po2dy5iqYv +03/21/2018,Sports_celeb,@McIlroyRory,Congratulations @burle_eric on winning the @APinv signed flag. Direct message me your details and my team will ship it to you. +03/21/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Blue = Rory +Gray = Field + +#M3driver #TwistFace https://t.co/1tbiSlfvrg" +03/20/2018,Sports_celeb,@McIlroyRory,"To celebrate my victory yesterday at Bay Hill, I’m giving away this signed @APinv flag. Simply RETWEET or FAVOURITE… https://t.co/h3D1C7ekSB" +03/19/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: With his new #TPcollection Black Copper (Soto) putter in the bag, Rory lead the field in strokes gained putting and too…" +03/19/2018,Sports_celeb,@McIlroyRory,"RT @PGATOUR: The big drives. ✅ +Laser-like irons. ✅ +Clutch putts. ✅ + +@McIlroyRory caught everyone's attention on Sunday. https://t.co/fW…" +03/19/2018,Sports_celeb,@McIlroyRory,539 days but worth the wait! So proud to win the 2018 @APinv https://t.co/I09vDrerKM +03/15/2018,Sports_celeb,@McIlroyRory,Had a blast @DriveShackUSA in Orlando today. Great food and a real fun experience. #PlayOn #DriveShack https://t.co/CByUTMNwlJ +03/07/2018,Sports_celeb,@McIlroyRory,Enjoying my first visit to @Innisbrook and so impressed with the course. Thanks @ValsparChamp for looking after us… https://t.co/O3gg1Jjbmq +02/17/2018,Sports_celeb,@McIlroyRory,Congrats on reclaiming #1 https://t.co/6242sEyhzn +02/15/2018,Sports_celeb,@McIlroyRory,Visited @TaylorMadeGolf campus this week and was completely blown away. Extremely passionate employees and literal… https://t.co/huMvTiv2qS +02/13/2018,Sports_celeb,@McIlroyRory,@TaylorMadeGolf My first day as Social Media Manager @TaylorMadeGolf! #TwistFace https://t.co/Yh8lucSC2Y +02/13/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: The result of analyzing hundreds of thousands of swings from real golfers, #TwistFace reshapes the club face to give ev…" +02/09/2018,Sports_celeb,@McIlroyRory,👀 #LDNR https://t.co/snHadgFTgo +02/07/2018,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: #TwistFace. +#M3driver. +Available 16th of Feb. https://t.co/VRaiL9sR7W" +01/31/2018,Sports_celeb,@McIlroyRory,Excited to return to Connecticut for the @TravelersChamp on the @PGATOUR this summer! #TravelersChamp ⛳️🏌🏻‍♂️ https://t.co/GlLQTibG1C +01/30/2018,Sports_celeb,@McIlroyRory,Well done Saoirse Lambe and thank you @OMEGAGolfDubai & @omegawatches for looking after us so well last week.… https://t.co/8IP4w2MWFs +01/26/2018,Sports_celeb,@McIlroyRory,"Live at the Omega Constellation Clinic now! For all the action, visit: https://t.co/UAUZp3pC2i" +01/26/2018,Sports_celeb,@McIlroyRory,I will be helping one lucky winner improve their swing at the Omega Constellation Clinic after play today here in D… https://t.co/KQLFEveXnA +01/24/2018,Sports_celeb,@McIlroyRory,It’s ProAm day @OMEGAGolfDubai with team @omegawatches & @NiallOfficial 🏌If you didn't get the chance to enter to m… https://t.co/epN5ttCIBM +01/23/2018,Sports_celeb,@McIlroyRory,Perfect morning for some range work @OMEGAGolfDubai https://t.co/47RRNHD263 +01/18/2018,Sports_celeb,@McIlroyRory,Oscar Murphy 👏 A star of the future 🏌🏻‍♂️⛳️ https://t.co/0GSSbYZJ6n +01/16/2018,Sports_celeb,@McIlroyRory,Numbers are looking great on my end as well. 👍 Going to be a fun week with #TwistFace at the #ADGolfChamps ⛳️ https://t.co/gNIE1ikTZj +01/16/2018,Sports_celeb,@McIlroyRory,Excited to be back...with this guy 🦅...at the @ADGolfChamps ⛳️ https://t.co/QvD7TNQnOu +01/13/2018,Sports_celeb,@McIlroyRory,Cool view up high in Dubai https://t.co/8rki2XFam7 +01/11/2018,Sports_celeb,@McIlroyRory,Fancy a golf lesson with me? Buy a ticket for the #ODDC18 & you can enter to WIN the opportunity to be a part of th… https://t.co/56yLCfQ4d1 +01/05/2018,Sports_celeb,@McIlroyRory,Want to golf with myself and @NiallOfficial in Dubai on Jan 24th? Download the @voxgolf app & enter your 9-hole sco… https://t.co/Jt7xYFMQCI +01/03/2018,Sports_celeb,@McIlroyRory,Excited for a busy 2018 season with this in my bag. #TwistFace #TeamTaylorMade #Ad https://t.co/X9M2wD1UyO +01/03/2018,Sports_celeb,@McIlroyRory,Want to play 9 holes with me and @DJohnsonPGA in the ProAm #inAbuDhabi on Jan 17th? Enter this amazing competition… https://t.co/d3WsLrqS6l +12/27/2017,Sports_celeb,@McIlroyRory,Excited to share this video from @TaylorMadeGolf. This might be the most logical innovation in golf. Follow… https://t.co/WclNmt5bNG +12/08/2017,Sports_celeb,@McIlroyRory,Looking forward to a busy start to my 2018 season. Some great new events on my schedule https://t.co/LeFJyFUFf5 +12/05/2017,Sports_celeb,@McIlroyRory,Watchmakers are true master craftsmen. Thanks for the factory tour @omegawatches 👍⌚️ https://t.co/FVfN6Ur5kU +12/05/2017,Sports_celeb,@McIlroyRory,What a special day with @omegawatches. Looking forward to many more years ahead. #HappyBirthday @zekiayan 🎂 https://t.co/ImXM3mhzQa +11/27/2017,Sports_celeb,@McIlroyRory,Fancy playing golf with me and @NiallOfficial at the @OMEGAGolfDubai next January? All you have to do is download t… https://t.co/go8c31LutI +11/27/2017,Sports_celeb,@McIlroyRory,Delighted to be teeing it up at the @OMEGAGolfDubai in January and later today have an exciting competition to shar… https://t.co/EqHU2wYWvK +11/25/2017,Sports_celeb,@McIlroyRory,@EuropeanTour Great effort guys! #ShotsRecreated +11/17/2017,Sports_celeb,@McIlroyRory,Best of luck to the 80 @PGAjrLeague golfers playing in the National Championship this weekend! https://t.co/wVWQoEF3mv +11/16/2017,Sports_celeb,@McIlroyRory,Wish I was playing the @DPWTC this morning but it's come a week too early for me to compete with the boys at… https://t.co/IfXKXmpQFh +10/24/2017,Sports_celeb,@McIlroyRory,Great read @JFeinsteinBooks. Made me feel like I was in BOTH team rooms! 🇪🇺🇺🇸🏆 #RyderCup https://t.co/RqLCLyOre9 +10/01/2017,Sports_celeb,@McIlroyRory,RT @Chrell83: @McIlroyRory giving Henry his ball leaving the 15th @CloseHouseGolf #BritishMasters - made our day!!!! https://t.co/pSL499Nuug +09/27/2017,Sports_celeb,@McIlroyRory,When in Newcastle with @alanshearer! ⚽️⛳️ https://t.co/uURH8u8g7f +09/14/2017,Sports_celeb,@McIlroyRory,RT @BMWUSA: @McIlroyRory delivered the #UltimateRush — a M760i — at the 2017 BMW Championship. https://t.co/LmU7j0QlzL +09/07/2017,Sports_celeb,@McIlroyRory,Great memories playing in the @WalkerCup back in 2007. Good luck to Team GB&I this weekend in LA⛳️🏆 https://t.co/xGefDZLTzd +09/06/2017,Sports_celeb,@McIlroyRory,@BMWchamps @rorymcilroy Congratulations Preston. See you next week @BMWchamps +08/28/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Retweet & Follow for a chance to win one of the first sets of #P790 irons +ft. breakthrough #SpeedFoam Technology. + +Rule…" +08/25/2017,Sports_celeb,@McIlroyRory,#MambaMentality https://t.co/Q8A0LfcuF0 +08/23/2017,Sports_celeb,@McIlroyRory,"RT @Yankees: .@McIlroyRory, @FedEx and cancer survivor Mary Browder turned Yankee Stadium into a Par 3 to announce a donation to @StJudeRes…" +08/23/2017,Sports_celeb,@McIlroyRory,"RT @CBSThisMorning: .@NorahODonnell caught up with @PGATOUR star @McIlroyRory to talk golf, @TigerWoods, @POTUS and @StJude. WATCH Wednesda…" +08/22/2017,Sports_celeb,@McIlroyRory,Honoured to be a part of @fedex's @stjude donation announcement today with the @PGATOUR! Perfect way to start the… https://t.co/MLS4VabT8D +08/22/2017,Sports_celeb,@McIlroyRory,All set up to hit some home runs today with the @Yankees. #FedExCares @PGATOUR @TaylorMadeGolf https://t.co/Wedu4M3HLN +08/18/2017,Sports_celeb,@McIlroyRory,Don’t miss your chance to play 18 holes with me next month @bmwchamps. Enter the https://t.co/eXUAeb207c Sweepstake… https://t.co/ogMuet6Cpn +08/10/2017,Sports_celeb,@McIlroyRory,Proud to share Traden Karch's story airing on @GolfChannel. Amazing young @PGAjrleaguegolf star defying the odds… https://t.co/Dhxd3zdjJv +08/08/2017,Sports_celeb,@McIlroyRory,Moon 🌙 Golf! ⛳️🏌️@omegawatches https://t.co/scVkgJsnS8 +08/07/2017,Sports_celeb,@McIlroyRory,Loved seeing all the @PGAjrleaguegolf jerseys today! Great spending time with all the future stars of the game at t… https://t.co/Dl7ehoqRcP +08/07/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Retweet & Follow for a chance to win a dozen balls each from Rory, DJ, Jason, Sergio, Rahm, and Rose. #TP5/#TP5x https:…" +07/30/2017,Sports_celeb,@McIlroyRory,Want to join me in the @BMWchamps Pro-Am! Enter the #TeamRorySweepstakes from @golfnow @TaylorMadeGolf & @voxgolf… https://t.co/Ca4RbrYBBg +07/25/2017,Sports_celeb,@McIlroyRory,Want to walk inside the ropes with me at the 2017 #BMWChampionship at Conway Farms? Enter now for your chance to wi… https://t.co/dDsBeGfPB5 +07/16/2017,Sports_celeb,@McIlroyRory,#RO8ER #JustDoIt https://t.co/FB5HCeW4V5 +07/09/2017,Sports_celeb,@McIlroyRory,Congratulations @JonRahmpga on winning the #DDFIrishOpen and a huge thanks to all the fans who came out to support… https://t.co/pFp9hGDTma +06/30/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: More of the same this year, @McIlroyRory? 🎯🏆 + +🎟️ Don't miss out on tickets: https://t.co/WomugAJHxh https://t.co/6OqyxP3D…" +06/30/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: 6⃣ DAYS. TO. GO. + +🎟️ Tickets selling fast: https://t.co/iPLYnvOwU9 https://t.co/OtUpklTDwq" +06/29/2017,Sports_celeb,@McIlroyRory,"Thanks for all the great entries in our #RoarforRory @DDFIrishOpen comp. + +Congrats to winners George & St Ita's Pri… https://t.co/NftK6dKjjn" +06/27/2017,Sports_celeb,@McIlroyRory,RT @GolfChannel: Tonight at 9pm ET 'Chronicles of a Champion Golfer' continues with @McIlroyRory. Watch a sneak preview here: https://t.co/… +06/22/2017,Sports_celeb,@McIlroyRory,"Yesterday I met this special lady, Noreen Murnane who sadly 6 years ago suffered a stroke. I was honoured to make h… https://t.co/1rG4qoU965" +06/19/2017,Sports_celeb,@McIlroyRory,Massive congrats to @BKoepka on yesterday's win! Awesome to watch down the stretch. Welcome to the club! 🏆🇺🇸➖1️⃣6️⃣ +06/17/2017,Sports_celeb,@McIlroyRory,@elkpga That's why jack designed 100's of golf courses... and it's knew... mustn't have taught grammar in the 50's.... +06/17/2017,Sports_celeb,@McIlroyRory,"@elkpga More like 200mil... not bad for a ""bored"" 28 year old... plenty more where that came from. https://t.co/R2nigEaee7" +06/13/2017,Sports_celeb,@McIlroyRory,RT @roryfoundation: #PepGuardiola will be joining @McIlroyRory & #JamesNesbitt at @BelWaterfront on July 4th for #EveningwithRory - just 3… +06/11/2017,Sports_celeb,@McIlroyRory,🏆🏆🏆🏆🏆🏆🏆🏆🏆🏆 #VamosRafa https://t.co/DcVvqr6iPq +06/10/2017,Sports_celeb,@McIlroyRory,I'm sure I hit every fairway today... 🤔😂 https://t.co/pgcIXgPjGN +06/08/2017,Sports_celeb,@McIlroyRory,"Pleased to announce Hideki is joining us at the @DDFIrishOpen! + +Get tickets: https://t.co/pBtz5uYMrJ https://t.co/DT22ftWmIW" +06/07/2017,Sports_celeb,@McIlroyRory,RT @roryfoundation: We're giving one lucky golfer a chance to play in the Pro Am at the @DDFIrishOpen. Here's @McIlroyRory on what to do to… +06/05/2017,Sports_celeb,@McIlroyRory,Good progress made over the past 2 weeks in @Quinta_do_Lago Portugal. Excited for the US Open. https://t.co/2Zqi0dvRlo +06/02/2017,Sports_celeb,@McIlroyRory,"Want to walk inside the ropes with me at the @DDFIrishOpen? + +Go to https://t.co/UuD0yUYiR8 for more details. https://t.co/j34uAMRfmd" +05/27/2017,Sports_celeb,@McIlroyRory,"RT @EuropeanTour: Aaron's dad emailed us to ask if we could do something for his 9th birthday 🎂 + +We decided to do something special. https:…" +05/26/2017,Sports_celeb,@McIlroyRory,"Wentworth looks mint this week. Gutted not to be there, but well done to everyone involved getting the course back to where it should be!" +05/24/2017,Sports_celeb,@McIlroyRory,"RT @Chris3Wood: I'm auctioning my @RyderCupEurope bag signed by every 🇪🇺player for @CHSW. Please bid to help this incredible cause + +https:/…" +05/23/2017,Sports_celeb,@McIlroyRory,This makes me so angry and sad at the same time. Thoughts and prayers with everyone in Manchester at this horrific time +05/21/2017,Sports_celeb,@McIlroyRory,@JustinThomas34 You'll try anything trying to save double bogey 😂 +05/20/2017,Sports_celeb,@McIlroyRory,Didn't know I had a wrist injury too 😳 https://t.co/IkeEBgXTX4 +05/09/2017,Sports_celeb,@McIlroyRory,"RT @TaylorMadeGolf: Time to show the world what you’re really made of. + +Welcome to the family, Rory. #TeamTaylorMade https://t.co/akofFlZI1X" +05/09/2017,Sports_celeb,@McIlroyRory,Proud to join the @TaylorMadeGolf family. New Bag. New Clubs. New Ball. #ThePlayers https://t.co/rAWiqGKJXW https://t.co/J2w7haZPZP +05/09/2017,Sports_celeb,@McIlroyRory,Final tweaks are made. #ThePlayers https://t.co/BtbD8FQXYH +05/09/2017,Sports_celeb,@McIlroyRory,"Don't worry boys, I’ve been keeping a close eye on the #FedExCup. Long way to go @DJohnsonPGA!! 🏆💪😉 https://t.co/0dNGu98qGZ" +05/07/2017,Sports_celeb,@McIlroyRory,Back on the range and ready for next week's @THEPLAYERSChamp https://t.co/mMHPMggrir +05/04/2017,Sports_celeb,@McIlroyRory,Thank you for all the birthday wishes! It's been an incredible few weeks. Exciting times ahead! +04/11/2017,Sports_celeb,@McIlroyRory,"RT @DDFIrishOpen: Fancy an evening with @McIlroyRory? + +Tickets available now: https://t.co/en9mC7gQIU https://t.co/sbFPYc6fwr" +04/09/2017,Sports_celeb,@McIlroyRory,"2 unbelievable players and 2 great friends, but I couldn't be happier for @TheSergioGarcia. You deserve it all amigo!!" +04/09/2017,Sports_celeb,@McIlroyRory,Let him have one.... VAMOS!!! +04/02/2017,Sports_celeb,@McIlroyRory,"Looking forward to the next 10+ years as a @nike athlete! +https://t.co/m4abneH1yQ" +04/02/2017,Sports_celeb,@McIlroyRory,Enjoyed spending time with you @MartySmithESPN https://t.co/BxOQXPdPXg +03/28/2017,Sports_celeb,@McIlroyRory,RT @rioferdy5: My documentary Being Mum and Dad will be on @BBCOne tonight at 9pm… Thanks for all your messages & unconditional support! ht… +03/27/2017,Sports_celeb,@McIlroyRory,Check out my 2017 summer schedule on my new website https://t.co/LeFJyFUFf5. Hope you like it! https://t.co/2B46XSDTVP +03/20/2017,Sports_celeb,@McIlroyRory,Thank you to everyone at Bay Hill for a great week. Tried to play like AP would've wanted me to down the stretch. Taking the positives 🙌 +03/19/2017,Sports_celeb,@McIlroyRory,RT @IanJamesPoulter: The last time @McIlroyRory sat in that passenger seat it was at Medinah @RyderCupEurope 2012 being driven at speed to… +03/14/2017,Sports_celeb,@McIlroyRory,A letter from AP after my first major. Great words of wisdom as always. Can't wait to play @APinv this week and cel… https://t.co/h0bMaBkGYU +03/06/2017,Sports_celeb,@McIlroyRory,@Skratch @NoLayingUp https://t.co/JZkLFcPvsi +03/06/2017,Sports_celeb,@McIlroyRory,😂😂😂 https://t.co/9382qrX1QN +03/05/2017,Sports_celeb,@McIlroyRory,.@JustinThomas34 it was so on plane though... should be proud of that! https://t.co/CwKoIEpIXF +02/26/2017,Sports_celeb,@McIlroyRory,Johnny still not impressed 😳 https://t.co/t6yMltdgqs +02/24/2017,Sports_celeb,@McIlroyRory,https://t.co/T4N0cFyoaY +02/13/2017,Sports_celeb,@McIlroyRory,RT @KylePorterCBS: https://t.co/2eHYv5yyY6 +02/10/2017,Sports_celeb,@McIlroyRory,Enjoyed this little back and forth with one of my favourite golf writers over the past few days. Take a look if you… https://t.co/Uoiz2cgDR3 +02/05/2017,Sports_celeb,@McIlroyRory,Congrats @TheSergioGarcia! Impressive stuff all week 👏👍👌🏆 +02/02/2017,Sports_celeb,@McIlroyRory,RT @DarrenClarke60: How many Claret Jugs have you won??? 🛎end! https://t.co/ugWK7Dff6C +02/01/2017,Sports_celeb,@McIlroyRory,RT @PGAjrleaguegolf: Join the fun! Register for PGA Junior League Golf today: https://t.co/J5BYgYDKhR https://t.co/lGVIjLG1ye +02/01/2017,Sports_celeb,@McIlroyRory,"Sorry to disappoint, but it's only me again.... bored, injured golfer with too much time on his hands! https://t.co/a7NGb1phhW" +01/29/2017,Sports_celeb,@McIlroyRory,🐐🐐🐐🐐🐐🐐🐐 +01/29/2017,Sports_celeb,@McIlroyRory,2 incredible warriors @RealCFrampton and @leosantacruz2. We're all so proud of you Carl. Let's get it on again in Belfast!! #trilogy +01/24/2017,Sports_celeb,@McIlroyRory,I was ridiculously flattering myself with the Federer comparison. He's the 🐐 and I'm obviously not. I just have a t… https://t.co/5hxBR7fuKl +01/21/2017,Sports_celeb,@McIlroyRory,A bit late on this one... another great bit of content from the @EuropeanTour guys 😂😂 https://t.co/kRN3qdYSSB +01/21/2017,Sports_celeb,@McIlroyRory,"RT @ManUtd: Record-breaker and history-maker. + +What an incredible achievement. #ROONEY250 https://t.co/xbN4w9TOzZ" +01/19/2017,Sports_celeb,@McIlroyRory,@chambleebrandel Last thing I'll say on this... my hands are ahead at impact and I'm at least 3 degrees up with my… https://t.co/giWroHDEtG +01/18/2017,Sports_celeb,@McIlroyRory,Pretty sure hitting up with your driver works @chambleebrandel 😉 https://t.co/OLU3ZO815C +01/18/2017,Sports_celeb,@McIlroyRory,@chambleebrandel @flightscopePhD It's 2017 and Jordan is hitting a 3 wood in that photo. To get the most out of mod… https://t.co/os9Po4cujG +01/15/2017,Sports_celeb,@McIlroyRory,"RT @PaulKimmage: The Essential Rory: Part Two +https://t.co/XPiM2Tctn1" +01/15/2017,Sports_celeb,@McIlroyRory,Great playing @stormygraeme! What a great story after last year. Thanks to @TheBig_Easy and everyone in SA for making this week so special. +01/11/2017,Sports_celeb,@McIlroyRory,Want to play 9 holes with me in the ProAm #InAbuDhabi next week? Enter this amazing competition from @AbuDhabiSC an… https://t.co/XbQOwpzukS +01/09/2017,Sports_celeb,@McIlroyRory,We've had a trip of a lifetime to @londolozi over the last few days. This big guy came to say hello last night!! https://t.co/VrjsTGjEum +12/27/2016,Sports_celeb,@McIlroyRory,I've a pea head and the hats were way too big for me! https://t.co/YrOZs4qi8C +12/22/2016,Sports_celeb,@McIlroyRory,Wake me up when it's 2017. https://t.co/6qrFNXyC46 +12/12/2016,Sports_celeb,@McIlroyRory,"RT @playofffinale: The vintage Coca-Cola vending machine has departed 🚚 + +Next stop: 2016 #FedExCup winner's house 😎 https://t.co/t2KLAyVn1F" +12/03/2016,Sports_celeb,@McIlroyRory,RT @rte: When you meet your hero. The look on his face! Charlie Smyth (9) from Cavan & his idol @McIlroyRory #LateLateToyShow https://t.co/… +11/30/2016,Sports_celeb,@McIlroyRory,Pleasure to meet you. Hope the recovery goes well! https://t.co/7qTSwI2DbG +11/24/2016,Sports_celeb,@McIlroyRory,Early morning walk to prepare for copious amounts of turkey.... Happy Thanksgiving!! 🦃🍽🏈😴 https://t.co/UIKqsDGq1R +11/23/2016,Sports_celeb,@McIlroyRory,My hero 😂😂😂 https://t.co/WhDGYuzuX4 +11/21/2016,Sports_celeb,@McIlroyRory,RT @EuropeanTour: RT this episode to be in a chance of winning @McIlroyRory's socks. Behind the scenes with Billy & @MattFitz94 wins big in… +11/18/2016,Sports_celeb,@McIlroyRory,"RT @EuropeanTour: When Billy met Rory + +@JumeirahGolfEst https://t.co/jazYXtE1iU" +11/16/2016,Sports_celeb,@McIlroyRory,RT @IrishRugby: Ready For The World. Liam Neeson narrates Ireland's bid to host Rugby World Cup 2023 #Ireland2023 https://t.co/zcZGBqsnO0 +11/16/2016,Sports_celeb,@McIlroyRory,Caught up with Billy today. Maybe the funniest interview I've ever done. Look out for the full video tomorrow. 😂  https://t.co/629qhYeNsw +11/15/2016,Sports_celeb,@McIlroyRory,Good luck to @eboudreaux12 and @DartmouthMBK in their home opener against Fairfield tonight! #GoBigGreen 👍🏀 https://t.co/jXl6sSY8eD +11/05/2016,Sports_celeb,@McIlroyRory,Xjdjdosjnajshehebdbshsjdhchxnslapehdvzjsjdjskwkdhsjsks!!!!!!!!!!!!!!!!!!! +11/01/2016,Sports_celeb,@McIlroyRory,"RT @NoLayingUp: NLU Podcast, Episode 56: @McIlroyRory talks Ryder Cup, Augusta, major championships, and life: https://t.co/BSRY94uHQp" +10/01/2016,Sports_celeb,@McIlroyRory,"RT @RyderCupEurope: Finishing your match Rory McIlroy-style. + +#TeamEurope https://t.co/hpUCT227Ja" +09/30/2016,Sports_celeb,@McIlroyRory,Come on Rosey!!! #TeamEurope https://t.co/Pa2iXqdxW4 +09/29/2016,Sports_celeb,@McIlroyRory,Has the @rydercup started already??🇪🇺🇺🇸 https://t.co/s6EImcbnZv +09/29/2016,Sports_celeb,@McIlroyRory,RT @Fooch1993: @McIlroyRory ...... .... 👍👍👍🇪🇺#MiddleWicket https://t.co/3Xg9IZaSUK +09/28/2016,Sports_celeb,@McIlroyRory,RT @RyderCupEurope: Rory's #TeamEurope kicks. https://t.co/5RzESRw3gq +09/27/2016,Sports_celeb,@McIlroyRory,#TeamEurope https://t.co/h5iZCmVZ3B +09/27/2016,Sports_celeb,@McIlroyRory,"Before this weekend, I remember the 2012 @RyderCup and the best prematch speech I’ve ever heard.… https://t.co/iQ7ix9Q2ZO" +09/26/2016,Sports_celeb,@McIlroyRory,Remembering the special times I spent with Mr Palmer at Bay Hill. A true pioneer for our sport. Forever remembered. https://t.co/qJQBpDWTWv +09/06/2016,Sports_celeb,@McIlroyRory,RT @RickieFowler: I've always been a big fan of @McIlroyRory haha glad we were both able to do something special for Brady last week!! http… +09/04/2016,Sports_celeb,@McIlroyRory,Thanks @lionsgatemovies @mark_wahlberg for the advance screening of #DeepwaterHorizonMovie. Out Sept 30th. Amazing! https://t.co/RgZ86aQ7E8 +08/26/2016,Sports_celeb,@McIlroyRory,Brilliant @thomasbjorngolf 😂😂 https://t.co/QIpCSYKLv8 +08/21/2016,Sports_celeb,@McIlroyRory,RT @ufc: #ConorMcGregor gets it done!!!!!!! #UFC202 https://t.co/23sGogQDqx +08/20/2016,Sports_celeb,@McIlroyRory,Good luck in the US am final tomorrow @DalkeKong. Hopefully it's a gun show and a stripe show 💪💪 +08/20/2016,Sports_celeb,@McIlroyRory,"RT @RyderCupEurope: Welcome to #TeamEurope 🇪🇺 + +https://t.co/p1vBDU4o8X https://t.co/i9Eh7hmlKn" +08/16/2016,Sports_celeb,@McIlroyRory,"RT @roryfoundation: We are absolutely delighted to have raised €951,000 for @Barretstown @JackandJill1997 @LauraLynnHouse https://t.co/Kqq…" +08/10/2016,Sports_celeb,@McIlroyRory,"RT @FirstTeeChicago: Be sure to purchase your tickets for the Taste of The First Tee with @LukeDonald and @McIlroyRory @MedinahCC +https://…" +08/07/2016,Sports_celeb,@McIlroyRory,.@paddyb_ireland @mickconlan11 good luck lads! If your boxing is as good as your tweeting it should be 2 guaranteed golds!! 😂🏅🏅👏🏼 +08/04/2016,Sports_celeb,@McIlroyRory,Sad for @nikegolf employees that worked so hard and made genuinely great golf equipment. Your support will always be appreciated #TeamNike +07/27/2016,Sports_celeb,@McIlroyRory,Wee bit slow there @TheSergioGarcia #PGAChamp @omegawatches #OMEGAmychoice https://t.co/1MfBb1lpX0 +07/26/2016,Sports_celeb,@McIlroyRory,RT @DDFIrishOpen: The 2017 Dubai Duty Free Irish Open is going to @PortstewartGC and we are very excited. #DDFIrishOpen2017 https://t.co/5U… +07/26/2016,Sports_celeb,@McIlroyRory,"RT @PGAChampionship: #PGAChamp @McIlroyRory has arrived! +Follow #RoryAllAccess to go behind-the-scenes during his Practice Round. https://t…" +07/23/2016,Sports_celeb,@McIlroyRory,Nice visit to Quail Hollow today. New changes for '17 PGA look great! Always good to get some inspiration too 😉 https://t.co/lI6n53wuT9 +07/22/2016,Sports_celeb,@McIlroyRory,"My story began in Holywood, NI, where I learned to love golf & dreamed of becoming a Major champion. @Nike #JustDoIt https://t.co/vQv59ah8Yp" +07/18/2016,Sports_celeb,@McIlroyRory,RT @TheSergioGarcia: Awesome to have so many good friends showing up for my charity event in Switzerland! Thanks guys! #sergioandfriends ht… +07/14/2016,Sports_celeb,@McIlroyRory,RT @SkySportsGolf: LIVE on #Periscope: Rory McIlroy takes on Henni's word association game! https://t.co/IByJKwqwZ4 +07/12/2016,Sports_celeb,@McIlroyRory,"Enjoyed meeting the fans at #TheOpen Autograph Zone today +https://t.co/76fj5pWzVY" +07/12/2016,Sports_celeb,@McIlroyRory,Had a great time visiting the Autograph Zone at #TheOpen today! #KidsGoFree https://t.co/v7zLMBi9Fa +07/01/2016,Sports_celeb,@McIlroyRory,"RT @nikefootball: It's not where you start. It's what you start: https://t.co/6ru3o8yTCP + +#SparkBrilliance +https://t.co/GCeD9YhOFH" +06/25/2016,Sports_celeb,@McIlroyRory,"You did us all proud @NorthernIreland. It's only the beginning, let's get to the World Cup in 2018 #GAWA" +06/25/2016,Sports_celeb,@McIlroyRory,Landed in London to see the big man @anthonyfjoshua in action tonight. Gonna be a great night of boxing on Sky Sports Box Office. #andstill +06/25/2016,Sports_celeb,@McIlroyRory,Come on the #GAWA #DareToDream +06/21/2016,Sports_celeb,@McIlroyRory,RT @RealCFrampton: Straight out to celebrate with a kebab and a shave #Tur #NIR +06/21/2016,Sports_celeb,@McIlroyRory,Last 16!!! #GAWA +06/21/2016,Sports_celeb,@McIlroyRory,See ya soon Paris!! #NIR #GAWA https://t.co/17yDMu6Y34 +06/20/2016,Sports_celeb,@McIlroyRory,Massive congrats @DJohnsonPGA! The wait is over! Feel for @ShaneLowryGolf but he'll come back stronger from this experience. +06/19/2016,Sports_celeb,@McIlroyRory,Take that @usga +06/19/2016,Sports_celeb,@McIlroyRory,Did he mention common sense? https://t.co/TWcVVmVvAb +06/19/2016,Sports_celeb,@McIlroyRory,It's obviously affecting Shane too https://t.co/KZyyka32Fh +06/19/2016,Sports_celeb,@McIlroyRory,This isn't right for anyone on that golf course. If it was me I wouldn't hit another shot until this farce was rectified. +06/19/2016,Sports_celeb,@McIlroyRory,This is ridiculous... No penalty whatsoever for DJ. Let the guy play without this crap in his head. Amateur hour from @USGA +06/19/2016,Sports_celeb,@McIlroyRory,Best of luck to @ShaneLowryGolf today... Bring that trophy back to these shores and give Brendan the best Father's Day gift of all! ☘🏆 +06/19/2016,Sports_celeb,@McIlroyRory,That 2nd pin looks really fair 🤔 https://t.co/LbG8qz7coV +07/01/2018,Sports_celeb,@LewisHamilton,"Happy Sunday people!! God Bless you. Have an amazing day wherever you are. Where are you watching from? Remember, e… https://t.co/UQVqxo1Buh" +06/30/2018,Sports_celeb,@LewisHamilton,"Congrats to Valtteri, he produced a fantastic lap. A great result for the Team today. Sights are on the race tomorr… https://t.co/hQrD52ngrx" +06/30/2018,Sports_celeb,@LewisHamilton,Starting the day like... 🏍️💨🔥 #MVAgusta @mvagustamotor @MercedesAMGF1 #AustrianGP #F1 https://t.co/Xc1jmXuhHZ +06/29/2018,Sports_celeb,@LewisHamilton,You could ride shotgun with me in a Mercedes-AMG GT R before the US Grand Prix & score exclusive paddock access!⚡🔥… https://t.co/LIxt5Yj76j +06/28/2018,Sports_celeb,@LewisHamilton,"3 races in a row, it's an intense moment in the season. My favourite tunes and the best noise-cancelling keeps me f… https://t.co/NmVEQUGE8E" +06/28/2018,Sports_celeb,@LewisHamilton,Truly honoured to be nominated for the Best Driver Award in the 2018 @espn ESPYS Awards 🙏🏾. Thank you so much to my… https://t.co/zdyo2mHutt +06/26/2018,Sports_celeb,@LewisHamilton,The inspiring forces in my life. Who inspires you to rise? 🙌🏾#StillIRise #WhatsYourDrive @TommyHilfiger… https://t.co/zHcErqcHLa +06/25/2018,Sports_celeb,@LewisHamilton,Brotherly love 🙏🏾. Check back here tomorrow for something new... #StillIRise #WhatsYourDrive @nicolashamilton https://t.co/8f09zXmmWO +06/24/2018,Sports_celeb,@LewisHamilton,🍾😀🇫🇷 📷 @Spacesuit_Media @MercedesAMGF1 https://t.co/ehr66gEXwb +06/24/2018,Sports_celeb,@LewisHamilton,Magnifique!! 🇫🇷 It’s an amazing feeling winning here. I feel very grateful for a solid weekend. Huge thanks to ever… https://t.co/uhS0eNROxY +06/23/2018,Sports_celeb,@LewisHamilton,✌🏾🇫🇷 @MercedesAMGF1 https://t.co/KU7yTCwUpG +06/23/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: That’s how it’s done! 👊 An incredible 75th @F1 pole for @LewisHamilton! And his first ever at the #FrenchGP 🇫🇷 + +https:/…" +06/23/2018,Sports_celeb,@LewisHamilton,Trained hard with my @PUMA family in Marseille as we launched Mantra 🔥. The training shoe is super dope and will be… https://t.co/CnRul4APIG +06/22/2018,Sports_celeb,@LewisHamilton,Huge thanks to the Team for their hard work today as always. Looking forward to getting back out on the track tomor… https://t.co/ZCg5LCZzfa +06/22/2018,Sports_celeb,@LewisHamilton,Bonjour 🇫🇷 📷 @latimages https://t.co/jJ0aT4FCCy +06/21/2018,Sports_celeb,@LewisHamilton,"Wanna ride shotgun with me? I think the best way to warm up for the US Grand Prix is taking a lap with YOU! +ENTER… https://t.co/KEtEOS3w5O" +06/19/2018,Sports_celeb,@LewisHamilton,Now is your chance to compete in the 2018 FIA-certified @thegranturismo Championships in 'Sport Mode'! 🏁 I’ll be ke… https://t.co/nWg1SuyNFb +06/19/2018,Sports_celeb,@LewisHamilton,"Excited for my @papermagazine feature +👉🏾 https://t.co/2w2riqnujJ https://t.co/BBBSmdZ0mw" +06/19/2018,Sports_celeb,@LewisHamilton,RT @England: @LewisHamilton 👊 +06/18/2018,Sports_celeb,@LewisHamilton,Wishing our boys all the best for their first match in the World Cup! Let’s go! #WorldCup 🙌🏾 🏴󠁧󠁢󠁥󠁮󠁧󠁿⚽ 📷 @HKane https://t.co/Jikza3IPqM +06/17/2018,Sports_celeb,@LewisHamilton,Happy Father's Day to the World's best Dad. I am so grateful for everything 🙏🏾 #fathersday https://t.co/4Fmv9PfB2E +06/12/2018,Sports_celeb,@LewisHamilton,I want this car!!!!! #maybach6 @mercedesamg https://t.co/pnpbVNI6vt +06/10/2018,Sports_celeb,@LewisHamilton,We will come back stronger for the next race. It’s how you get back up that matters the most. We win and lose toget… https://t.co/e6gpYqV0c8 +06/10/2018,Sports_celeb,@LewisHamilton,Huge congratulations to this incredible athlete @RafaelNadal super happy for you dude. God Bless🙌🏾🙏🏾 #frenchopen… https://t.co/NhntS1un5g +06/10/2018,Sports_celeb,@LewisHamilton,Race day. Sending you all positive energy today. Let’s go!! #CanadianGP @MercedesAMGF1 https://t.co/FjMrnww0Bz +06/09/2018,Sports_celeb,@LewisHamilton,"My first ever Formula 1 win in my rookie year. I remember it like yesterday, my heart racing towards the final laps… https://t.co/rMAxGOk0Ry" +06/08/2018,Sports_celeb,@LewisHamilton,"Thank you for your continued support over all these years, you guys are amazing. I feel your energy each time I'm o… https://t.co/WWtLWu2WEl" +06/08/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: These guys have been coming to the #CanadianGP to support @LewisHamilton for a decade. + +We thought it was about time th…" +06/08/2018,Sports_celeb,@LewisHamilton,"Canada, what’s new? 🇨🇦🔥 #TommyHilfiger https://t.co/JCz7I48z7p" +06/07/2018,Sports_celeb,@LewisHamilton,This is the exact moment I won my first ever F1 race 11 years ago. A moment when a dream became a reality and it fe… https://t.co/fMLsZNXYzf +06/05/2018,Sports_celeb,@LewisHamilton,NYC 🔥 #cfdaawards #tommyhilfiger https://t.co/wqyn7zFgpM +06/05/2018,Sports_celeb,@LewisHamilton,RT @Team_LH: Who wants to be in a #WhatsYourDrive video with @LewisHamilton? 😱😄 Now's your chance #TeamLH!!🤞🏾 Just DM us @Team_LH and we'll… +06/04/2018,Sports_celeb,@LewisHamilton,When your girl ain’t hit you back 🤣 #roscoelovescoco #bestsunday #mood https://t.co/K28bS0lzTW +05/30/2018,Sports_celeb,@LewisHamilton,Throwback: meeting the Queen in 2008 was an honour I never thought would be possible when growing up. Just a kid fr… https://t.co/ADgki7O5ma +05/29/2018,Sports_celeb,@LewisHamilton,"It’s the hard times that help you grow. It’s how you get back up that matters the most. Never stop learning, never… https://t.co/qDvgGRboVp" +05/28/2018,Sports_celeb,@LewisHamilton,"I don't fear failure, I fear not living up to my potential. I take that passion with me and never stop learning. Ch… https://t.co/cSMTtfn7TH" +05/27/2018,Sports_celeb,@LewisHamilton,"RT @F1: Lewis: You need to do a belly flop +Danny: Hold my beer + +#MonacoGP #F1 https://t.co/6V4GRkGIaA" +05/27/2018,Sports_celeb,@LewisHamilton,Listened to my current favourite tunes to help me get in the zone before the race. Check out my Monaco playlist her… https://t.co/arMPIzE7VU +05/27/2018,Sports_celeb,@LewisHamilton,Big congrats to Daniel this weekend. Thank you to the team for your hard work all weekend as always. We’re looking… https://t.co/y1iLNlMp80 +05/27/2018,Sports_celeb,@LewisHamilton,Squad 🔥🙌🏾 https://t.co/7TiDJ4XMRm +05/26/2018,Sports_celeb,@LewisHamilton,"Congrats to Daniel today, he did a great job. We’re looking forward to the challenge tomorrow. Are you excited?… https://t.co/0hnsJE4Pyb" +05/25/2018,Sports_celeb,@LewisHamilton,🏍️💨 https://t.co/Wi0Rkc9N3T +05/24/2018,Sports_celeb,@LewisHamilton,"Monaco, we out for today 🔥🏍️💨 @MercedesAMGF1 https://t.co/EyHfclIrgK" +05/24/2018,Sports_celeb,@LewisHamilton,Full throttle on the streets ⚡ Are you looking forward to the race weekend? #MonacoGP 📷 Vid Vorsic @MercedesAMGF1 https://t.co/SfYxsma4cM +05/24/2018,Sports_celeb,@LewisHamilton,Diamonds dancin - top off 🔥 @MercedesAMGF1 https://t.co/HZb0OX5SXv +05/23/2018,Sports_celeb,@LewisHamilton,Pulling up to the track like... 🏍️💨🔥 #MonacoGP #puma @mvagustamotor https://t.co/WELL526XA0 +05/22/2018,Sports_celeb,@LewisHamilton,"2008 my second year of F1 and first Monaco GP win. What a race it was, one that continues to remind me to never giv… https://t.co/BrbovTXUAG" +05/21/2018,Sports_celeb,@LewisHamilton,The story of my tattoos 🙏🏾 @GQMagazine #tommyhilfiger #tattoo #ink https://t.co/9Tf7zrMcJg +05/20/2018,Sports_celeb,@LewisHamilton,Thank you to my bro @neymarjr for this dope jersey that he made with Café Pilão 🙌🏾. I’m going to sign and send it b… https://t.co/llLP63dxCF +05/19/2018,Sports_celeb,@LewisHamilton,Wishing Meghan and Harry all the best today! 🙌🏾🇬🇧 #royalwedding https://t.co/SYweMFJA8H +05/15/2018,Sports_celeb,@LewisHamilton,My Dad gave up everything for me. It was his support that made me feel I could do anything. This is how it all bega… https://t.co/udWpKVSlgs +05/14/2018,Sports_celeb,@LewisHamilton,I look back when I was a kid and remember the hunger I had to want to be in Formula 1. I never lost sight of that d… https://t.co/ngWh2tZohT +05/13/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: Yes Team! Back in business in Barcelona! + +Celebrating a #SpanishGP 1-2 trackside! 👊🇪🇸 https://t.co/6lNqdR83WV" +05/13/2018,Sports_celeb,@LewisHamilton,"What a feeling. It’s been an awesome weekend, the car felt incredible! I can’t thank the team enough for the hard w… https://t.co/7CwX0PNn3P" +05/12/2018,Sports_celeb,@LewisHamilton,💨 https://t.co/caz2n7paJI +05/12/2018,Sports_celeb,@LewisHamilton,Just love 🙏🏾 https://t.co/UCrT0dpEfB https://t.co/BMWO62ig9H +05/12/2018,Sports_celeb,@LewisHamilton,Pole position ⚡ skir skirr 💥 @MercedesAMGF1 https://t.co/9ZNYtZxsI9 +05/12/2018,Sports_celeb,@LewisHamilton,@F1Tricky @MercedesAMGF1 @Circuitcat_eng @F1 Thank you Marc 🙏🏾 +05/12/2018,Sports_celeb,@LewisHamilton,I'll never forget my roots 🙏🏾. Sending you all positive energy today #SpanishGP #F1 🇪🇸 @MercedesAMGF1 https://t.co/6rB1IAOPAx +05/11/2018,Sports_celeb,@LewisHamilton,Friday Practice - Done 👊🏾 @MercedesAMGF1 https://t.co/ZZzE740Wti +05/10/2018,Sports_celeb,@LewisHamilton,Brothers in white. I grew up watching and listening to my man puff. To stand here today as brothers is a honour and… https://t.co/3ok8ZIoG2f +05/08/2018,Sports_celeb,@LewisHamilton,Came thru drippin #MetGala2018 #TommyHilfiger https://t.co/F2Hx6B5sSo +05/04/2018,Sports_celeb,@LewisHamilton,Friday feeling... 🕺🏾#fbf 📷 @latimages https://t.co/1GJy8P7oby +05/03/2018,Sports_celeb,@LewisHamilton,Surround yourself with people who project positivity and inspire you 🔥#WhatsYourDrive @TommyHilfiger https://t.co/CXdrr4F52D +05/01/2018,Sports_celeb,@LewisHamilton,If my journey can inspire just one person to rise up and chase their dreams then it’s worth the world to me. See a… https://t.co/57AYKohrvP +04/30/2018,Sports_celeb,@LewisHamilton,"Don't let other people define who you are and what you stand for. There's a burning passion, a drive in all of us t… https://t.co/A3rfZyR4YY" +04/29/2018,Sports_celeb,@LewisHamilton,Today was a reminder of my dad’s advice he said to me as a kid of never giving up. Thank you to the team for workin… https://t.co/5UvPvDEYWT +04/29/2018,Sports_celeb,@LewisHamilton,Looking forward to this 🙌🏾 #proud https://t.co/RBzlXFcj35 +04/28/2018,Sports_celeb,@LewisHamilton,Super close today. The team did a great job overnight and we are a step forward. Looking forward to race day tomorr… https://t.co/5xFrWJQhWH +04/28/2018,Sports_celeb,@LewisHamilton,I am wishing you all an amazing weekend where ever you are in the world. Shine bright and live your best life!! God… https://t.co/wjwfGTRafY +04/27/2018,Sports_celeb,@LewisHamilton,Lots of information gathered today. We look forward to fighting tomorrow... 💥 #F1 #AzerbaijanGP @MercedesAMGF1 https://t.co/wjsSjcaS0K +04/26/2018,Sports_celeb,@LewisHamilton,Feels good to be back in Baku 🔥 #F1 📷 by @latimages @MercedesAMGF1 https://t.co/lmykvTYnpU +04/25/2018,Sports_celeb,@LewisHamilton,"As we approach the Azerbaijan GP weekend, our Team are fully focused on the immediate job at hand. I am always in a… https://t.co/nIbZJO59ud" +04/23/2018,Sports_celeb,@LewisHamilton,When Gigi took me for a spin...💥💥💥💥 #WhatsYourDrive @GiGiHadid @TommyHilfiger https://t.co/iLwPudWR1x +04/19/2018,Sports_celeb,@LewisHamilton,A kid with a dream. Never let go of your dream #tbt #youcan #believe 📷x @latimages https://t.co/m5v5hwgeS4 +04/19/2018,Sports_celeb,@LewisHamilton,💥 @MonsterEnergy https://t.co/v0WmdGFmID +04/18/2018,Sports_celeb,@LewisHamilton,"Surround yourself with positivity and drop the negativity that weighs you down. It’s not how you fall, but how you… https://t.co/M4mFW3OUJk" +04/18/2018,Sports_celeb,@LewisHamilton,RT @TommyHilfiger: We couldn’t be more thrilled to announce our new TommyXLewis collaborative collection with @LewisHamilton . Coming to a… +04/15/2018,Sports_celeb,@LewisHamilton,"Lots of learnings from this weekend. I am so grateful to the fans for their incredible support out here,… https://t.co/dsX2QC0zwC" +04/14/2018,Sports_celeb,@LewisHamilton,Awesome launching the new @Bose #SoundWear Companion in China this week. It's a portable speaker that sits comforta… https://t.co/DVFpO28Bh5 +04/14/2018,Sports_celeb,@LewisHamilton,"Thank you so much to the awesome fans here in China, I feel your immense energy! I will do everything to fight for… https://t.co/zAsWVWcAvP" +04/13/2018,Sports_celeb,@LewisHamilton,A good day. It always feels great to be back out on the track in Shanghai. We face strong competition this weekend… https://t.co/VwcvDkgbau +04/13/2018,Sports_celeb,@LewisHamilton,🔴🔴🔴 #ChineseGP #F1 @TommyHilfiger @MercedesAMGF1 https://t.co/8x0svRQDTw +04/12/2018,Sports_celeb,@LewisHamilton,"Ready to fight this weekend. #TeamLH, are you ready? 🇨🇳 #24Seven @PUMA #PUMAPerformance #PUMAPartner https://t.co/jl1RmvzLa3" +04/11/2018,Sports_celeb,@LewisHamilton,What a day. It’s such a dream come true to be collaborating with @TommyHilfiger to channel my creativity and love f… https://t.co/Y74A4LMv5K +04/10/2018,Sports_celeb,@LewisHamilton,"Every new day is a chance to be great, at whatever it is you are doing. A chance to grow, to fall and get back up,… https://t.co/gECy8iGbTD" +04/08/2018,Sports_celeb,@LewisHamilton,💥 https://t.co/nwPc5WxBvF +04/08/2018,Sports_celeb,@LewisHamilton,"Dope win, congrats @calcrutchlow 🔥🔥🔥 https://t.co/ApI5W6sDbH" +04/08/2018,Sports_celeb,@LewisHamilton,"9th to 3rd is a good result for damage limitation this weekend, thank you to the fans and the team for your hard wo… https://t.co/mXl6jdAiLe" +04/08/2018,Sports_celeb,@LewisHamilton,RT @MercedesAMGF1: 100 @MercedesAMGF1 races not out! See @LewisHamilton and Toto's full chat here 👇 https://t.co/D2Ap2nCVlj +04/07/2018,Sports_celeb,@LewisHamilton,Always up for a challenge. Looking forward to the race tomorrow #BahrainGP #F1 @MercedesAMGF1 https://t.co/XISX8jZ3CS +04/06/2018,Sports_celeb,@LewisHamilton,"Always good catching up 🔥 #BahrainGP #F1 +📷 Evgeniy Safronov https://t.co/tUfhSRFlZC" +04/04/2018,Sports_celeb,@LewisHamilton,"Eyes on the next 🏆 +@PUMA IGNITE Flash. #24Seven #PUMAPartner https://t.co/tw2QFcfxPu" +04/02/2018,Sports_celeb,@LewisHamilton,There's a drive in all of us. A dream we once had and countless actions that followed to make that dream exist in i… https://t.co/Nb0ss2SjQp +03/25/2018,Sports_celeb,@LewisHamilton,"Overall, this weekend has been positive. Congrats to Seb and the guys in red, today they did the better job and we… https://t.co/XlxsI87kUA" +03/24/2018,Sports_celeb,@LewisHamilton,"I have the best fans in the world. #TeamLH, thank you for the support and this video 🙌🏾 #StillWeRise https://t.co/tp7xKMlrxu" +03/24/2018,Sports_celeb,@LewisHamilton,"About today... 💥 +#F1 #AusGP #Pole @MercedesAMGF1 https://t.co/D9qAiMjLhI" +03/24/2018,Sports_celeb,@LewisHamilton,"Wow, it feels so good kicking off 2018 with Pole Position! Thank you to the Team for your continued hard work. Sigh… https://t.co/hGp7kzoNxW" +03/23/2018,Sports_celeb,@LewisHamilton,"For us to defeat dementia, we first need people to understand it. You can help by simply watching and sharing this… https://t.co/BrxjfcjxkZ" +03/23/2018,Sports_celeb,@LewisHamilton,"Guys, I’ve got 20 of these awesome noise-cancelling Bose​ QC35 II headphones to giveaway. Head to my Instagram acco… https://t.co/QBa7tFMa8c" +03/22/2018,Sports_celeb,@LewisHamilton,Anticipation before a race weekend ahead. I've missed this feeling… 🔥 #F1 #AusGP @MercedesAMGF1 https://t.co/EJArzoWvqd +03/22/2018,Sports_celeb,@LewisHamilton,Swapped out the F1 car for a scooter today in Melbourne. Throwback to my younger roots 🛴 https://t.co/BEhgRCLgjt +03/18/2018,Sports_celeb,@LewisHamilton,Who’s excited for the first race of the season next week?.. #F1 @MercedesAMGF1 https://t.co/lXqbKfHzHq +03/18/2018,Sports_celeb,@LewisHamilton,"Great to meet you, Lewis. Thank you for the card buddy 🙏🏾 https://t.co/988DTnI1mT" +03/15/2018,Sports_celeb,@LewisHamilton,BTS ⚡@TommyHilfiger #WhatsYourDrive https://t.co/iV5xQaUpXp +03/15/2018,Sports_celeb,@LewisHamilton,"RT @TommyHilfiger: Where speed and style collide. Introducing our new menswear ambassador, @LewisHamilton @MercedesAMGF1 +PS. Shop @LewisH…" +03/15/2018,Sports_celeb,@LewisHamilton,"Wow, I’m so excited to be menswear ambassador for @TommyHilfiger. It’s an honour to be a part of the family and I c… https://t.co/MqnMRM654Q" +03/14/2018,Sports_celeb,@LewisHamilton,"RT @TommyHilfiger: What drives a winning team? One word: Teamwork +@LewisHamilton @MercedesAMGF1 #WhatsYourDrive #DrivenByEachOther #Merce…" +03/12/2018,Sports_celeb,@LewisHamilton,Cruising sideways at NASA 👀🚀 https://t.co/vj4JbUi661 +03/09/2018,Sports_celeb,@LewisHamilton,"Testing, done. Let's get to racing... 🔥 +@MercedesAMGF1 #F1 https://t.co/zW8eD2t88h" +03/07/2018,Sports_celeb,@LewisHamilton,"Preparing for 200mph straights, 6G braking and 6G corners. @PUMA Mantra - coming summer 2018 #PUMAPartner #24Seven https://t.co/mmrFcG1uvC" +03/06/2018,Sports_celeb,@LewisHamilton,"This photo was taken before the 2017 season started. Before the battles, the wins, the defeats, the lows and the hi… https://t.co/1OcZTin0bX" +03/05/2018,Sports_celeb,@LewisHamilton,London is one of my favourite places to train. Awesome working out with some of @PUMA ’s finest in the IGNITE Flash… https://t.co/1fwNBUVzZG +03/01/2018,Sports_celeb,@LewisHamilton,"Testing. A time when all of the theory, research and hard work over winter are put to the test. After the weather w… https://t.co/JzPC217urZ" +03/01/2018,Sports_celeb,@LewisHamilton,RT @TommyHilfiger: Putting the champ to work 🔧🤓 Check out @LewisHamilton taking the F1 Pitstop Challenge #TOMMYNOW #MFW @MercedesAMGF1 htt… +02/27/2018,Sports_celeb,@LewisHamilton,"So proud of our team winning @LaureusSport's World Team of the Year. 1,500 people all with a shared vision. Honoure… https://t.co/74MxJ7hb2Y" +02/27/2018,Sports_celeb,@LewisHamilton,Dope that my 44 energy drink has now hit the shelves across Australia. I'll pick one up when I'm there next month f… https://t.co/dxbV3dVmnG +02/26/2018,Sports_celeb,@LewisHamilton,✈️ @TommyHilfiger https://t.co/1paRdQoBTc +02/22/2018,Sports_celeb,@LewisHamilton,"RT @MercedesAMGF1: And we're LIVE with @LewisHamilton! + +Follow along and join the conversation using #DrivenByEachOther + +https://t.co/dZ7mg…" +02/22/2018,Sports_celeb,@LewisHamilton,"In complete awe. The amount of focus, determination and expertise into every ounce of this car is astounding. I can… https://t.co/EL7jRYLe3z" +02/22/2018,Sports_celeb,@LewisHamilton,Are you guys ready to see the new car?.. ⚡⚡⚡⚡ @MercedesAMGF1 https://t.co/3g1pMDOEmC +02/21/2018,Sports_celeb,@LewisHamilton,Is MotoGP ready for me? Had an amazing track day with @calcrutchlow​ 🔥🔥🔥🔥 @MonsterEnergy 🎥X @thejonnyhynes 🎵X… https://t.co/RwNulxfGkW +02/20/2018,Sports_celeb,@LewisHamilton,Riding a motorcycle is an art form. I have nothing but respect for those competing at the top of their game in this… https://t.co/YTTZjwfXT2 +02/19/2018,Sports_celeb,@LewisHamilton,Awesome training with @HectorBellerin in LDN. @PUMA IGNITE FLASH ⚡ #PUMAPartner #24Seven https://t.co/Mp4z8g0htm +02/18/2018,Sports_celeb,@LewisHamilton,Hey @BubbaWallace! Wishing you the absolute best today in your race. Smash it!! 🙌🏽 🏁 +02/15/2018,Sports_celeb,@LewisHamilton,"To all those celebrating, I'd like wish you a happy Chinese New Year. Every time I visit China I learn something ne… https://t.co/TTQJsCwdIT" +02/09/2018,Sports_celeb,@LewisHamilton,Shredding into the weekend like... 🙌🏾 #MonsterEnergy #SkiDoo https://t.co/Z32HJujq22 +02/07/2018,Sports_celeb,@LewisHamilton,Proud of you Billy! 🙌🏾 https://t.co/bzZrim7hRD +02/05/2018,Sports_celeb,@LewisHamilton,The moment when a thousand years worth of working hours are put to the test. This is the moment that starts everyth… https://t.co/BmGI2482qQ +01/26/2018,Sports_celeb,@LewisHamilton,RT @MonsterEnergy: On track or on the mountain… @LewisHamilton likes to live on the edge! See more as he linked up with some of Monster Ene… +01/18/2018,Sports_celeb,@LewisHamilton,RT @MercedesAMGF1: 😱 We’re offering one lucky winner - AND a guest - the chance to be the FIRST fans to see the brand new 2018 Silver Arrow… +11/20/2015,Sports_celeb,@LewisHamilton,"RT @UncleRUSH: If you were in danger, would you do something about it? The answer might surprise you: #IWillNotWait #ActOnClimate https://t…" +12/28/2011,Sports_celeb,@LewisHamilton,RT @ItsMasuma_x: @LewisHamilton Yo Lewis! Any chance of a tweet? #TeamHamilton! +07/01/2018,Sports_celeb,@neymarjr,"Always believe. 🤙 @nikefootball Believe. +#justdoit #brasileiragem https://t.co/ExMqcGDcmf" +07/01/2018,Sports_celeb,@neymarjr,Neymar Jr - Brasil x México - Copa do Mundo Rússia 2018: https://t.co/JTkJojj03q via @YouTube +06/30/2018,Sports_celeb,@neymarjr,Neymar Jr. - Seleção Brasileira - 30/06/2018: https://t.co/aRCebnuvWg via @YouTube +06/29/2018,Sports_celeb,@neymarjr,Rabisca filhote 🖊 https://t.co/jf9TqGdNSo +06/28/2018,Sports_celeb,@neymarjr,My little boy 🕶❤️ https://t.co/jaaTTCK8Da +06/28/2018,Sports_celeb,@neymarjr,Assista o nosso 'Making Of' e confira um pouco do que aconteceu durante as gravações das campanhas da... https://t.co/gjCJqEeFHy +06/28/2018,Sports_celeb,@neymarjr,Varios Paranauê 😂🤣 https://t.co/wXNN9yR1ij +06/28/2018,Sports_celeb,@neymarjr,"Time, equipe, companheiros, família, ou chame como quiser, unidos e focados em um único objetivo 🇧🇷💚 https://t.co/3ZcmEkQu0g" +06/27/2018,Sports_celeb,@neymarjr,"Primeiro objetivo conquistado, parabéns rapaziada. +Vamos Brasil 🇧🇷💚 https://t.co/kgOa5VB399" +06/27/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 https://t.co/QvbPmfnW0r +06/26/2018,Sports_celeb,@neymarjr,Ready 😆⚽️ https://t.co/NxCiKViql9 +06/25/2018,Sports_celeb,@neymarjr,Alegria 🤣😂 @Phil_Coutinho https://t.co/eIHGQxCVRs +06/25/2018,Sports_celeb,@neymarjr,Neymar Jr. - Treino da Seleção Brasileira - 24/06/2018: https://t.co/C9sKsAYp9X via @YouTube +06/22/2018,Sports_celeb,@neymarjr,Brasil 2x0 Costa Rica no Instituto Neymar Jr: https://t.co/iMA3KUOyNJ via @YouTube +06/22/2018,Sports_celeb,@neymarjr,"Nem todos sabem o q passei pra chegar até aqui,falar até papagaio fala, agora fazer...O choro é de alegria, de supe… https://t.co/vvY3s31bZu" +06/22/2018,Sports_celeb,@neymarjr,#givesyouwings https://t.co/fqByPHq8tH +06/22/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 +. +. +. +📷Ricardo Nogueira https://t.co/yeWHobF7Z4" +06/21/2018,Sports_celeb,@neymarjr,Neymar Jr. - O Apoio da Torcida: https://t.co/4rAkZS5f3F via @YouTube +06/21/2018,Sports_celeb,@neymarjr,Preparados né não @marquinhos_m5 🤘🏽😝 https://t.co/epKnmicQ8J +06/21/2018,Sports_celeb,@neymarjr,"I got here because of my football. @nikefootball Believe. +. +Cheguei até aqui por causa do meu futebol.… https://t.co/wr9l1IY4Xo" +06/20/2018,Sports_celeb,@neymarjr,Focus. https://t.co/wrvGCQPRSB +06/20/2018,Sports_celeb,@neymarjr,Neymar Jr. - Making of Gagà Milano - Jan/18: https://t.co/zuORKk0DUD via @YouTube +06/19/2018,Sports_celeb,@neymarjr,Neymar Jr - Seleção Brasileira - Treino 19/06/2018: https://t.co/y8rrghocvs via @YouTube +06/17/2018,Sports_celeb,@neymarjr,Estréia da Copa do Mundo 2018: https://t.co/MfRTWpyeKB via @YouTube +06/17/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️🇧🇷 https://t.co/oB21y8AdW5 +06/16/2018,Sports_celeb,@neymarjr,"Carlos Alberto Parreira - Boa Sorte, Neymar Jr!: https://t.co/HVZpMTt2Hj via @YouTube" +06/16/2018,Sports_celeb,@neymarjr,Carlos Alberto Parreira: https://t.co/FvRmdUTHyB via @YouTube +06/15/2018,Sports_celeb,@neymarjr,"Obrigado pela mensagem, Serginho Chulapa! https://t.co/YbzUNmCdiJ" +06/15/2018,Sports_celeb,@neymarjr,"Serginho Chulapa - Boa sorte, Neymar Jr!: https://t.co/VAnULYnAxC via @YouTube" +06/15/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Torcida: https://t.co/xxJwNTprLI via @YouTube +06/14/2018,Sports_celeb,@neymarjr,"RT @InstitutoNJr: Boa Sorte Brasil!!! Estamos na torcida 🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 +@neymarjr +@CBF_Futebol https://t.co/WV4PUE9tMW" +06/14/2018,Sports_celeb,@neymarjr,"É ruim de bola mas é meu parça. 😂 Hoje lança meu app, o NJRXP. E toda semana tem um super desafio. O @GilCebola zer… https://t.co/kr4FXdfGzr" +06/14/2018,Sports_celeb,@neymarjr,"Vagner Mancini - Boa sorte, Neymar Jr!: https://t.co/hCrTZohMkp via @YouTube" +06/14/2018,Sports_celeb,@neymarjr,Vagner Mancini: https://t.co/q57xsHHUTp via @YouTube +06/14/2018,Sports_celeb,@neymarjr,"RT @AppStore: And now an announcement from @NeymarJr about his new training app ⚽️ + +Coming soon, very soon 😉 https://t.co/WqRNPFhIoP" +06/13/2018,Sports_celeb,@neymarjr,❤️😍❤️ https://t.co/YeI0Br39Ph +06/13/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Treino 13/06/2018: https://t.co/4N9WMuo5Zk via @YouTube +06/13/2018,Sports_celeb,@neymarjr,Dorival Júnior: https://t.co/Lx8SHZN1RJ via @YouTube +06/13/2018,Sports_celeb,@neymarjr,"Dorival Júnior - Boa Sorte, Neymar Jr!: https://t.co/pGNwfnSb0I via @YouTube" +06/12/2018,Sports_celeb,@neymarjr,Aquela paradinha ⚽️ https://t.co/LgqsVDQRpj +06/12/2018,Sports_celeb,@neymarjr,Seleção Brasileira - Treino 12/06/2018: https://t.co/E3mwJwrD1L via @YouTube +06/12/2018,Sports_celeb,@neymarjr,Luxemburgo: https://t.co/FPvdjUyT5B via @YouTube +06/12/2018,Sports_celeb,@neymarjr,"Luxemburgo - Boa Sorte, Neymar Jr!: https://t.co/2FpAkA3lSM via @YouTube" +06/12/2018,Sports_celeb,@neymarjr,"If you have some free time this summer, @WishShopping can help you find a new hobby +Se você tem algum tempo livre n… https://t.co/wNIBNYRBWH" +06/12/2018,Sports_celeb,@neymarjr,Feliz dia dos namorados MA LOVE ❤️🙏🏽 Te amo @BruMarquezine https://t.co/9DuSAtgHu3 +06/11/2018,Sports_celeb,@neymarjr,Adilson Batista: https://t.co/tMYSJg6mm8 via @YouTube +06/11/2018,Sports_celeb,@neymarjr,Adilson Batista - Boa Sorte Neymar Jr!: https://t.co/Tb8oykSQmQ via @YouTube +06/11/2018,Sports_celeb,@neymarjr,Brasil x Áustria: https://t.co/qjVqdlC2HW via @YouTube +06/10/2018,Sports_celeb,@neymarjr,"Partiu Rússia, partiu buscar o nosso sonho! ✈️🇷🇺 https://t.co/yVm1MMPmWF" +06/10/2018,Sports_celeb,@neymarjr,Lima: https://t.co/Fzxl6o2OdQ via @YouTube +06/10/2018,Sports_celeb,@neymarjr,Lima - Boa Sorte Neymar Jr.: https://t.co/cWRXoAeQMU via @YouTube +06/10/2018,Sports_celeb,@neymarjr,Que Deus nos abençoe e nos proteja 🙏🏽⚽️ https://t.co/LzaZqS5ad5 +06/09/2018,Sports_celeb,@neymarjr,Mano Menezes - Boa Sorte Neymar Jr!: https://t.co/Uok57FoPGB via @YouTube +06/09/2018,Sports_celeb,@neymarjr,Mano Menezes: https://t.co/M1IEkcDhBx via @YouTube +06/09/2018,Sports_celeb,@neymarjr,#FIFA19. I'm ready. @EASPORTSFIFA https://t.co/lDHE9fyjN3 https://t.co/r5dge95toe +06/09/2018,Sports_celeb,@neymarjr,Ser feliz sem motivo é a mais autêntica forma de felicidade. https://t.co/yqVsrGKdqj +06/08/2018,Sports_celeb,@neymarjr,Betinho - Boa Sorte Neymar JR!: https://t.co/mF4AzrqJZy via @YouTube +06/08/2018,Sports_celeb,@neymarjr,Betinho: https://t.co/vFKqR7bgTX via @YouTube +06/08/2018,Sports_celeb,@neymarjr,"Just what I needed....thanks @WishShopping +Exatamente o que eu precisava .... obrigado @WishShopping… https://t.co/pclGPJLbNS" +06/08/2018,Sports_celeb,@neymarjr,Narciso: https://t.co/bIyPJ7BvRm via @YouTube +06/08/2018,Sports_celeb,@neymarjr,"Narciso - Boa Sorte, Neymar Jr!: https://t.co/Nid9fu6TKs via @YouTube" +06/07/2018,Sports_celeb,@neymarjr,di menó @Phil_Coutinho #Craque https://t.co/RpATAy8A8l +06/07/2018,Sports_celeb,@neymarjr,"Dunga - Boa sorte, Neymar Jr!: https://t.co/WzuwscN5H7 via @YouTube" +06/07/2018,Sports_celeb,@neymarjr,Dunga: https://t.co/DK4OsGS6J5 via @YouTube +06/07/2018,Sports_celeb,@neymarjr,"Back and ready to shine 🇧🇷⚽ + +Check out my personal store for the latest #Mercurial at https://t.co/4s8czEJ3kd… https://t.co/QYqmyCP9gJ" +06/06/2018,Sports_celeb,@neymarjr,Treino Seleção Brasileira - 06/06/2018: https://t.co/dFr9KdUcKM via @YouTube +06/06/2018,Sports_celeb,@neymarjr,Muricy Ramalho: https://t.co/qAVvVF06Jy via @YouTube +06/06/2018,Sports_celeb,@neymarjr,Muricy Ramalho - Boa Sorte Neymar Jr!: https://t.co/SERfGn2poW via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Dia 16 - Treino Seleção Brasileira - Neymar Jr - 05/06/2018: https://t.co/F9lqhKJvrK via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/azymDbDAL8 16 - Treino Seleção Brasileira - Neymar Jr - 05/06/2018 +06/05/2018,Sports_celeb,@neymarjr,Rogério Micale: https://t.co/vjmvqd52DM via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Rogério Micale - Boa sorte Neymar Jr!: https://t.co/RtP6khz1Rl via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/rawFgU96ISério Micale - Boa sorte Neymar Jr! +06/05/2018,Sports_celeb,@neymarjr,Neymar Jr. - Treinos em Liverpool: https://t.co/H4oZP1TZsa via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Brasil x Croácia: https://t.co/Emj3a4VuUt via @YouTube +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/RIutyVTEFN x Croácia +06/05/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/ycigN2UCmR Jr. - Treinos em Liverpool +06/04/2018,Sports_celeb,@neymarjr,@TeamJuJu @PaniniAmerica ⚽ for 🏈? Hey @teamjuju yeah I have some of my @PaniniAmerica #FIFAWorldCup Stickers I’ll m… https://t.co/vsY3K31GzI +06/04/2018,Sports_celeb,@neymarjr,Ney Franco - Boa sorte Neymar Jr!: https://t.co/IyYaIfLbjE via @YouTube +06/04/2018,Sports_celeb,@neymarjr,Ney Franco: https://t.co/mpJbWBxKKD via @YouTube +06/04/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/Pt99uKuU7j Franco +06/04/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/1CJ8ExRXQr Franco - Boa sorte Neymar Jr! +06/03/2018,Sports_celeb,@neymarjr,Marcelo Martelotte: https://t.co/ES4kk17EMp via @YouTube +06/03/2018,Sports_celeb,@neymarjr,Marcelo Martelotte - Boa Sorte Neymar Jr!: https://t.co/o7JP5TNA9Z via @YouTube +06/03/2018,Sports_celeb,@neymarjr,"Para ti toda honra e toda glória meu Deus, Obrigado 🙏🏽❤️ +. +📸 @mowasports https://t.co/1pgELUabts" +06/02/2018,Sports_celeb,@neymarjr,Marcio Fernandes: https://t.co/0uyppRlrbC via @YouTube +06/02/2018,Sports_celeb,@neymarjr,Marcio Fernandes - Boa Sorte Neymar Jr!: https://t.co/EvmSzM0yjW via @YouTube +06/01/2018,Sports_celeb,@neymarjr,Nenê Belarmino - Boa Sorte Neymar Jr!: https://t.co/3GzUk6r0tl via @YouTube +06/01/2018,Sports_celeb,@neymarjr,Nene Belarmino: https://t.co/yGs5ZqP6Ph via @YouTube +05/31/2018,Sports_celeb,@neymarjr,Lucho Nizzo - Boa Sorte Neymar Jr!: https://t.co/rosPhWVY27 via @YouTube +05/31/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/kFuNcJ0JFP Nizzo - Boa Sorte Neymar Jr! +05/31/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/aPOyrT3cXB - Lucho Nizzo +05/30/2018,Sports_celeb,@neymarjr,Adicionei um vídeo a uma playlist @YouTube https://t.co/x8VMVCxllL - Técnicos +05/30/2018,Sports_celeb,@neymarjr,Teaser - Técnicos: https://t.co/4KaCKksqyp via @YouTube +05/30/2018,Sports_celeb,@neymarjr,https://t.co/k5aWTFQJ8A +05/29/2018,Sports_celeb,@neymarjr,⚽️🇧🇷 https://t.co/0ynsETOC9W +05/26/2018,Sports_celeb,@neymarjr,"Minha família sempre me incentivou a sonhar. +“Instituto Projeto Neymar Jr. auxiliando na conquista de sonhos e +prep… https://t.co/dc9PrglHTp" +05/25/2018,Sports_celeb,@neymarjr,"Parabéns Professor Tite. Uma grande honra aprender a cada dia com você, que Deus te abençoe sempre. https://t.co/t4Fr1MGlC8" +05/25/2018,Sports_celeb,@neymarjr,"Se tem um cara que é vencedor é esse .. Mestre Zagallo, que honra receber sua visita. “Vocês vão ter me engolir” 😂🤣… https://t.co/qtlKKHanzK" +05/24/2018,Sports_celeb,@neymarjr,Thanks to my friends @wishshopping. I love @ZO2_ from @lakers. I will see you in LA soon. https://t.co/0v0fAVHv4J +05/23/2018,Sports_celeb,@neymarjr,⚽️🇧🇷 https://t.co/UZAekzo5Zr +05/22/2018,Sports_celeb,@neymarjr,Entrei pro Time da Rico e já me colocaram no banco. Mas foi por um bom motivo. Dá o play pra descobrir porquê. 😎… https://t.co/kYFRzIWU2S +05/20/2018,Sports_celeb,@neymarjr,Mesa de Sinuca do Neymar jr - BLACKBALL: https://t.co/FQhTzu3n7K via @YouTube +05/18/2018,Sports_celeb,@neymarjr,"Stop seeing life in black & white I Dare your time with color +@GaGaMilanoWorld #gagamilano #gagamilanoworld… https://t.co/t9SEG84mnd" +05/17/2018,Sports_celeb,@neymarjr,O número 18 é muito marcante: minha estreia como profissional ! Colecione a minha história. Participe da Promoção C… https://t.co/0uxSEiAvfD +05/15/2018,Sports_celeb,@neymarjr,"É amanhã, galera! Quer saber o que eu faço para superar os desafios que surgem na minha vida e carreira diariamente… https://t.co/PSHvBk4wRQ" +05/15/2018,Sports_celeb,@neymarjr,"Life is a great big canvas; throw all the paint you can on it +@gagamilanoworld #gagamilanoworld #gagamilano https://t.co/JBtcPgCi48" +05/14/2018,Sports_celeb,@neymarjr,"Obrigado Deus... muito feliz de ter mais uma oportunidade de representar a minha nação! +Partiu, Rússia !!!! 🇧🇷 https://t.co/YNCStoMW7N" +05/14/2018,Sports_celeb,@neymarjr,Quer saber o que eu faço para superar os desafios que surgem na minha vida e carreira diariamente?? Mande sua pergu… https://t.co/5VvfJInl6s +05/13/2018,Sports_celeb,@neymarjr,Muito feliz pelo prêmio. Obrigado a todos os meus companheiros e o staff técnico sem vocês não seria possível 🙏🏽👏🏽… https://t.co/qsmql6IyYA +05/13/2018,Sports_celeb,@neymarjr,"Parabéns pelo dia que você exerce tão bem, feliz dia das mães. Te amo ❤️ +@nadineinjr https://t.co/Zdaa42VoNG" +05/13/2018,Sports_celeb,@neymarjr,Merci Thiago Motta 🙏🏽 https://t.co/jkf3B4yksg +05/13/2018,Sports_celeb,@neymarjr,"Ligue 1 🏆⚽️👏🏽 +@PSG_inside https://t.co/gAH8kISHnz" +05/13/2018,Sports_celeb,@neymarjr,Ligue 1 🏆⚽️👏🏽 https://t.co/A7N8w1SbP6 +05/12/2018,Sports_celeb,@neymarjr,"Proud to wear the new jersey and to continue giving you joy +Orgulhoso de usar a nova camisa e continuar dando alegr… https://t.co/yjkZr6M0h7" +05/10/2018,Sports_celeb,@neymarjr,"The fun makes your time 💥🌈🙌🏻 +@gagamilanoworld #gagamilano https://t.co/xAoIazVNEO" +05/08/2018,Sports_celeb,@neymarjr,"Champions !!!! +@PSG_inside https://t.co/wyWmpDF7SU" +05/06/2018,Sports_celeb,@neymarjr,"THE FUN MAKES YOUR TIME ! +with @GaGaMilanoWorld #GAGAMILANO https://t.co/6hhkhUDD0l" +05/06/2018,Sports_celeb,@neymarjr,"Assista AO VIVO a maior corrida de rua do mundo e que não tem linha de chegada! 🏃🏽‍♂🏃🏻‍♀🚐 +#WorldRun #WingsForLife +https://t.co/0OjoMY6Rkx" +05/05/2018,Sports_celeb,@neymarjr,💪🏿🏋🏿‍♀️⚽️😀👊🏿 https://t.co/O6EWjr5j13 +04/24/2018,Sports_celeb,@neymarjr,"• We Are GaGà • +@gagamilanoworld +#gagamilano #watch https://t.co/K76a7VeswQ" +04/19/2018,Sports_celeb,@neymarjr,"Colors & Friends for the new @gagamilanoworld adv campaign! + +#comingsoon #staytuned #gagamilano +#crisguedes… https://t.co/JgVf6vVQJU" +04/17/2018,Sports_celeb,@neymarjr,It was a great honor to be present in the TCL & NEYMAR JR Global Press Conference. Thx for the gift from China and… https://t.co/8sJSn1YNtn +04/16/2018,Sports_celeb,@neymarjr,"Aprendi a sorrir em meio as dificuldades,a acreditar nos meus sonhos por mais que eles sejam praticamente impossíve… https://t.co/WNN5VBdeDV" +04/13/2018,Sports_celeb,@neymarjr,Honrado por fazer parte desta noite extraordinária para apoiar a luta da @amfAR contra a AIDS. Junte-se à causa: tu… https://t.co/2JP6gGYHnR +04/13/2018,Sports_celeb,@neymarjr,🤨🤙🏽 https://t.co/Y1fAYFDK0b +04/11/2018,Sports_celeb,@neymarjr,"Visite o site da Mastercard, faça uma doação, grave um vídeo +comemorando como a gente e compartilhe com… https://t.co/upLYuoqhnn" +04/11/2018,Sports_celeb,@neymarjr,"It’s time to be warrior +@GaGaMilanoWorld #GagàMilano https://t.co/snK16dMy7W" +04/08/2018,Sports_celeb,@neymarjr,Quando eu e meu amigo #LeoMessi nos unimos grandes coisas acontecem! Já já conto mais para vcs! Fiquem ligados! https://t.co/y22nDbWkOR +04/06/2018,Sports_celeb,@neymarjr,"Zoom in... the making of #gagamilano shooting with NJR +Staytuned for more updates +@GaGaMilanoWorld https://t.co/xHB2G93b4Q" +04/02/2018,Sports_celeb,@neymarjr,https://t.co/awBF3CrpJy +03/29/2018,Sports_celeb,@neymarjr,"LIFE IS A JOKE THAT'S JUST BEGUN ! +@gagamilanoworld +#gagamilano #watches https://t.co/uqobqyFP7M" +03/24/2018,Sports_celeb,@neymarjr,"❤️ +@Rafaella_ https://t.co/15CmTRGgQp" +03/22/2018,Sports_celeb,@neymarjr,@GaGaMilanoWorld 👊🏾 +03/21/2018,Sports_celeb,@neymarjr,"Brasileiragem has a new uniform ! And it's dope. Can’t wait to go back and have the honor to wear it. + +A Brasileira… https://t.co/6ZV3olqrpX" +03/21/2018,Sports_celeb,@neymarjr,"The Fun Makes Your Time! +Longing to see the new amazing advertising campaign of @gagamilanoworld at #Baselworld2018… https://t.co/KOa0mGHixQ" +03/21/2018,Sports_celeb,@neymarjr,@Rafaella_ Te amo ❤️ +03/16/2018,Sports_celeb,@neymarjr,A watch for every lifestyle. Stay tuned for the new video campaign of @GaGaMilanoWorld ! #GaGaMilano #luxurywatches https://t.co/IrjgA1JmcE +03/14/2018,Sports_celeb,@neymarjr,"Você tem que ter uma atitude positiva e tirar o melhor da situação na qual se encontra. + +Stephen Hawking https://t.co/JE2MtyuT6b" +03/13/2018,Sports_celeb,@neymarjr,"Behind the scenes +Unveiling the new advertising campaign of Gagà Milano! #comingsoon #GagaMilano @GaGaMilanoWorld https://t.co/eucigAv8bQ" +03/06/2018,Sports_celeb,@neymarjr,"Estou triste pela derrota, muito mais triste por não estar em campo ajudando meus companheiros!! O que me deixa org… https://t.co/hTINRqdX4R" +03/06/2018,Sports_celeb,@neymarjr,ALLEZ PARIS @psg_inside 🔴🔵 https://t.co/JGlaswbl9e +02/21/2018,Sports_celeb,@neymarjr,"UNLEASH YOUR PERSONALITY +@GaGaMilanoWorld +#GAGAMILANO https://t.co/ihykjx1RSa" +02/18/2018,Sports_celeb,@neymarjr,"BEHIND THE SCENE +@GaGaMilanoWorld +#GAGAMILANO #SHOOTING https://t.co/4XkyCg4R1T" +02/16/2018,Sports_celeb,@neymarjr,"Obrigado meu Deus por todos os momentos que tenho no futebol, principalmente os mais difíceis! 🙏🏽 +“Nunca te disse q… https://t.co/dHfZaRBLR1" +02/14/2018,Sports_celeb,@neymarjr,"Que Deus abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us us 🙏🏽⚽️ https://t.co/IRHEj6SqIv" +02/14/2018,Sports_celeb,@neymarjr,⚽️ @PSG_inside 🙏🏻 https://t.co/EauyhYFNhS +02/12/2018,Sports_celeb,@neymarjr,"@mariotestino +Mario Testino Towel Series no.150 https://t.co/L0j0Cm6vVK" +02/12/2018,Sports_celeb,@neymarjr,"CAN YOU DO THAT? + +#backstage +#gagamilano #watches + +@GaGaMilanoWorld https://t.co/KUvp7bcvC6" +02/10/2018,Sports_celeb,@neymarjr,"Galera! Tá rolando a final do campeonato digital de surf feminino, o #SEAFLOWERSDIGITAL, realizado pela @ma_werneck… https://t.co/6ct0YOvpPn" +02/10/2018,Sports_celeb,@neymarjr,"#Repost @neymarjr with @Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ +. +. +. +📷 #nogueirafoto https://t.co/u05Yq8PWCW" +02/09/2018,Sports_celeb,@neymarjr,"fast. Fierce. fearless. +Introducing the mercurial vapor 360. Available February 14 at +https://t.co/3XHhRSyBUE… https://t.co/IQWYLnl7ft" +02/09/2018,Sports_celeb,@neymarjr,🎄❄️☃️ https://t.co/FStoJmCZxh +02/08/2018,Sports_celeb,@neymarjr,"Color Fight #Backstage #GaGaMilano #Watch +@GaGaMilanoWorld https://t.co/Zd2V2ROkCG" +02/08/2018,Sports_celeb,@neymarjr,"Um dos melhores presentes que recebi no meu aniversário... +Obrigado @redbull e @playerunknown 👊 +@redbullgames… https://t.co/DKLqrQJ0ro" +02/08/2018,Sports_celeb,@neymarjr,B O R N M E R C U R I A L 🧡 https://t.co/pMFEDd3DvB +02/07/2018,Sports_celeb,@neymarjr,"Obrigado a todos pelas mensagens!! +Obrigado @redbull e @beatsbydre https://t.co/SNoOwjlEKt" +02/06/2018,Sports_celeb,@neymarjr,#bornmercurial https://t.co/8c3aHEkLG7 +02/05/2018,Sports_celeb,@neymarjr,@TclCorporation Am thrilled to partner with TCL. An easy decision as we share similar values - constant pursuit of… https://t.co/yHBh9vKeZh +02/03/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ +. +📷 Ricardo Nogueira https://t.co/2IFbFRu1sM" +02/02/2018,Sports_celeb,@neymarjr,"@REPLAY +#replayjeans +📸Thierry Le Gouès https://t.co/zXGzP9PdVS" +01/29/2018,Sports_celeb,@neymarjr,"DISTINCTIVE PERSONALITY +@GaGaMilanoWorld #GAGAMILANO #MANUALE48 https://t.co/UTdB14j6iZ" +01/29/2018,Sports_celeb,@neymarjr,"Cada um com a sua sorte(benção), eles são a minha ❤️ +. +. +. +By: #raul https://t.co/06F6S5fwRr" +01/27/2018,Sports_celeb,@neymarjr,"Grande vitória hoje, parabéns a todos e parabéns Edi pelo recorde, que siga assim metendo muitos gols !! +. +. +. +📸… https://t.co/OnNA2x8MzS" +01/25/2018,Sports_celeb,@neymarjr,"Meu ídolo, o cara que praticamente me inspirou a jogar futebol ... que Deus abençoe a sua vida irmão, muitas felici… https://t.co/NOGozvF4Mg" +01/19/2018,Sports_celeb,@neymarjr,"GREATEST OF ALL TIME +@GaGaMilanoWorld #GAGAMILANO https://t.co/dexgPNsqnZ" +01/19/2018,Sports_celeb,@neymarjr,Good see u legend ✌🏽 #davidbeckham https://t.co/BTNsTyfeh9 +01/18/2018,Sports_celeb,@neymarjr,Where is my custom server ? 😂🤣 https://t.co/Jkjzw0H3Qp +01/18/2018,Sports_celeb,@neymarjr,Toda honra e toda glória pra ti Deus 🙏🏽 https://t.co/Av4q2DRWh5 +01/17/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/a1mT4SwNT0" +01/17/2018,Sports_celeb,@neymarjr,❤️ @InstitutoNJr ❤️ https://t.co/Y5I8r3QhFO +01/16/2018,Sports_celeb,@neymarjr,"My global five-a-side football tournament is back, #neymarjrsfive ! More than 60 countries will battle it out to be… https://t.co/tnXAsJ4GQp" +01/15/2018,Sports_celeb,@neymarjr,"Hoje foi dia 🖊🤣😂 +@LucasMoura7 https://t.co/zxWi4VaE2s" +01/15/2018,Sports_celeb,@neymarjr,⚽️🤷🏽‍♂️🤣 https://t.co/cEj9VZ0c5Q +01/15/2018,Sports_celeb,@neymarjr,"Já escreveu sua carta ?? +https://t.co/euzWRTf8L7" +01/15/2018,Sports_celeb,@neymarjr,Go and vote for @money23green for NBA All-Star! Tweet his name with #NBAVOTE Last day to vote let’s gooo +01/12/2018,Sports_celeb,@neymarjr,"❤️ +@davilucca99 https://t.co/JqlJJU0U5f" +01/12/2018,Sports_celeb,@neymarjr,"EVERYDAY ADVENTURES + +@GaGaMilanoWorld #GAGAMILANO #WATCHES #CARBON48 https://t.co/BZ3s6MNjWw" +01/12/2018,Sports_celeb,@neymarjr,"Até música pro clube do chula... viciei ! 😂😂 +E aí Aloísio, esse clube é do tipo que você me convida ou eu te convid… https://t.co/V5QmVsMGfr" +01/10/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/TyYAjF0ion" +01/09/2018,Sports_celeb,@neymarjr,"E o programa ""Neymarzinho Responde"" já chegou no 12º episódio !! +Já assistiu ? +Não esquece, é toda quinta !! +https://t.co/M5NqMArEmh" +01/09/2018,Sports_celeb,@neymarjr,hey @playerunknown can i have a custom server? Please :) +01/08/2018,Sports_celeb,@neymarjr,"STAY FOCUSED + +@GaGaMilanoWorld #GAGAMILANO https://t.co/52lqg9znCG" +01/07/2018,Sports_celeb,@neymarjr,"Que Deus nos abençoe e nos proteja 🙏🏽⚽️ +God bless and protect us 🙏🏽⚽️ https://t.co/BkZwPeSneU" +01/04/2018,Sports_celeb,@neymarjr,"🙂 +@RedBullBR https://t.co/Ndh1JDjCAC" +01/04/2018,Sports_celeb,@neymarjr,"2018 ❤️🙏🏽 @ +@BruMarquezine @davilucca99 https://t.co/ihy88200HD" +01/03/2018,Sports_celeb,@neymarjr,"🤘🏿 +@Gillette https://t.co/TbHuCl7vSs" +12/31/2017,Sports_celeb,@neymarjr,"Galera, já estou aqui me preparando pra virada do ano. Confiante por um 2018 ainda melhor! https://t.co/4TgemeQKzz" +12/27/2017,Sports_celeb,@neymarjr,"YOU ARE THE POWER + +@GaGaMilanoWorld #GAGAMILANO https://t.co/VDzKrZBj7R" +12/22/2017,Sports_celeb,@neymarjr,"@neymarjr in Qatar +@PSG_inside https://t.co/oU8qNH5svZ" +12/22/2017,Sports_celeb,@neymarjr,"BEYOND MEASURE +@GaGaMilanoWorld +#GAGAMILANO https://t.co/VjY2Eblb99" +12/21/2017,Sports_celeb,@neymarjr,"Njr puro fenómeno #mercurial vapor 👊 + +👉 https://t.co/lVCYe2M7ke https://t.co/iFIKWScOsE" +12/21/2017,Sports_celeb,@neymarjr,"👊🏿 +https://t.co/jjITzl8W8W" +12/21/2017,Sports_celeb,@neymarjr,"AMIGO OCULTO DOS PARÇAS! +Vc é meu convidado para assistir @LuisSuarez9, @phganso, @Phil_Coutinho, @gabrieljesus33,… https://t.co/LoJmeUPcvl" +12/18/2017,Sports_celeb,@neymarjr,"Chegou a hora de revelar o segredo! Eu reuni alguns amigos meus, alguns craques, para um Amigo Secreto em prol do… https://t.co/H0usy9tlYd" +12/15/2017,Sports_celeb,@neymarjr,"Courage, Strength, Liberty +@GaGaMilanoWorld #gagamilano https://t.co/vjdUO7frVh" +12/14/2017,Sports_celeb,@neymarjr,"Frio em Paris, só um café quente pra me aquecer... https://t.co/7IUWCxK9BL" +12/12/2017,Sports_celeb,@neymarjr,"Every Second is a new Challange +@GaGaMilanoWorld #gagamilano https://t.co/NJupSCukgA" +12/11/2017,Sports_celeb,@neymarjr,"Vocês todos estão acompanhando o programa ""Neymarzinho Responde"" ? +O 9º episódio já tá no ar 😉 +https://t.co/mxSwNzfBTT" +12/11/2017,Sports_celeb,@neymarjr,"Foco, força e fé pra celebrar mais um dia !! https://t.co/WzQ8fiGDPU" +06/29/2018,Sports_celeb,@RafaelNadal,Great news before we start playing @Wimbledon Check out the video... 😀 #vamos https://t.co/iw1eS2TobT +06/29/2018,Sports_celeb,@RafaelNadal,On my way to practice @wimbledon then off to the beautiful club #Hurlingham to play my last match @Tennis_Classic… https://t.co/MsuFRHeR8a +06/27/2018,Sports_celeb,@RafaelNadal,Here we are @Wimbledon ! Aquí estamos! 💪🏻😉👇🏻 https://t.co/pkRpmBHDCK +06/25/2018,Sports_celeb,@RafaelNadal,Happy to announce that I’ll be back at @AspallTennisClassic as part of my @wimbledon warm up! 😀💪🏻👇🏻 https://t.co/cqJudXgfo0 +06/23/2018,Sports_celeb,@RafaelNadal,"Mañana acaba la etapa de #Alicante del #RafaNadalTourbyMapfre, el circuito de #tenis a beneficio de mi fundación… https://t.co/1gegmChvu1" +06/16/2018,Sports_celeb,@RafaelNadal,Día espectacular y por una buena causa. Gracias a @Richard_Mille y @24hoursoflemans por la invitación y el honor https://t.co/WO7Psc3aAR +06/15/2018,Sports_celeb,@RafaelNadal,"With @Babolat, I’m giving away one of the 11 Limited Edition #UNDECIMA packs. +Enter by posting your own “11” celebr… https://t.co/jHFuF92oBU" +06/14/2018,Sports_celeb,@RafaelNadal,RT @movistar_es: Porque no hay mayor triunfo que tener el apoyo de una afición incondicional. Ahora más que nunca todos con la @SeFutbol. ¡… +06/13/2018,Sports_celeb,@RafaelNadal,Very sorry to announce this withdrawal but I have to take some rest according to my doctor after q long clay court… https://t.co/SE8d8GacrB +06/12/2018,Sports_celeb,@RafaelNadal,Facing a new opponent. You might just recognise him… @NintendoEurope #MarioTennis https://t.co/CHK9Aied9l https://t.co/bGtmxTRuBy +06/11/2018,Sports_celeb,@RafaelNadal,Hello everybody. You can imagine the happiness today. Now back at home in Mallorca and will post later some picture… https://t.co/2UaeOagiqd +06/10/2018,Sports_celeb,@RafaelNadal,Gracias @rnadalacademy!!!! #NOL1M1TS https://t.co/bJWNYyvzkk +06/09/2018,Sports_celeb,@RafaelNadal,Bonjour Paris! Desayuno y vamos para el entrenamiento! Breakfast and let’s go to practice! 💪🏻😉💯 +06/08/2018,Sports_celeb,@RafaelNadal,"Love this court, the most important in my career, these are amazing moments. Many thanks to all. Another final in P… https://t.co/srb9m9d3Zv" +06/07/2018,Sports_celeb,@RafaelNadal,Ready !!!! #vamos @rolandgarros https://t.co/mQ2ArPxOHM +06/06/2018,Sports_celeb,@RafaelNadal,"Rain ☔️ in Paris, match postponed. Back at the hotel and time to regroup a bit for tomorrow #weknewitwastough + +De v… https://t.co/7KOidDG2Tf" +06/06/2018,Sports_celeb,@RafaelNadal,"Good morning, on my way to the tournament for my pre match warm up I send you this link to help the Victims of volc… https://t.co/Ig4ZRnuLox" +06/06/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos. Camino ya del torneo para el calentamiento, os envío esta dirección para que ayudemos a los af… https://t.co/ZENmgYfC6V" +06/05/2018,Sports_celeb,@RafaelNadal,"Día lluvioso hoy en Paris, de mucha espera para poder entrenar. Así que algo de gym ahora y después esperemos que d… https://t.co/VIEUHrcpSu" +06/05/2018,Sports_celeb,@RafaelNadal,"Buenos días, Bonjour, rainy day here in Paris... lot of waiting today for practice... so a bit of gym at the C.N.E.… https://t.co/2y3Eth4hi2" +06/04/2018,Sports_celeb,@RafaelNadal,"Jumping to quarter finals! Very happy with the match and deep into the second week! + +Un salto a la siguiente ronda… https://t.co/GX34799RxV" +06/04/2018,Sports_celeb,@RafaelNadal,Muchas gracias!!!!!!!! https://t.co/X2fmYG0rkA +06/03/2018,Sports_celeb,@RafaelNadal,😀😘 https://t.co/v8agR8vEIW +06/03/2018,Sports_celeb,@RafaelNadal,"Time to go to practice.... Thanks for all your birthday messages :) + +Hora para ir a entrenar 💪🏻 y gracias por todos… https://t.co/yOMC9nCNs9" +06/03/2018,Sports_celeb,@RafaelNadal,"Good morning to all. +Buenos días a todos +Bonjour +Este fue un momento también especial ayer tras la victoria. Grac… https://t.co/Ai4AI1PcLg" +05/31/2018,Sports_celeb,@RafaelNadal,"Contento por el partido de hoy! El sábado siguiente ronda contra un buen amigo! +Happy with today’s match! Saturday… https://t.co/nBNwbhTnk5" +05/31/2018,Sports_celeb,@RafaelNadal,"Bueno días a todos! Good morning all! Bonjour ! +On my way soon to @rolandgarros to my warm up and getting ready for… https://t.co/imyTHtLDz2" +05/27/2018,Sports_celeb,@RafaelNadal,"Enhorabuena al Real Madrid por los títulos. Champions y Euroliga en un mismo año, increíble. ¡A disfrutar este mome… https://t.co/8AhyygR5Fl" +05/27/2018,Sports_celeb,@RafaelNadal,Enhorabona! A disfrutar d’aquest moment tan important! Estic molt content! L’any que ve a primera!💪🏻 https://t.co/59lowcuG2e +05/27/2018,Sports_celeb,@RafaelNadal,"All smiles and getting ready. Tomorrow first round, looking forward to my first match @rolandgarros 2018 + +Mañana pr… https://t.co/2buhJPzjWH" +05/25/2018,Sports_celeb,@RafaelNadal,"Pero... ahora de nuevo a las 5, entrenamos por la tarde. 💪🏻😀 and back to practice at 5pm today https://t.co/OmosI7bOWs" +05/24/2018,Sports_celeb,@RafaelNadal,"Primer entrenamiento en @rolandgarros con un buen amigo, @PabloCuevas22 #tennis #paris #tenis https://t.co/RxCnZcDtwZ" +05/23/2018,Sports_celeb,@RafaelNadal,"De camino a Paris... nos vemos allí? +Paris, j’arrive! On se voit là :) (je essaye en Français cette année) 😉👋🏻 #vamos @rolandgarros" +05/22/2018,Sports_celeb,@RafaelNadal,"This is how I celebrate winning a big point. What about you? +Show me your celebration using #TheDecima for a chance… https://t.co/AxEF1LDv8M" +05/21/2018,Sports_celeb,@RafaelNadal,Grazie 😊 https://t.co/4l8QS2llhs +05/21/2018,Sports_celeb,@RafaelNadal,Grazie della intervista. Si è fatta prima del torneo ed e andato tutto bene. Gracias por la entrevista! https://t.co/QwtF9LtRgd +05/20/2018,Sports_celeb,@RafaelNadal,Couldn't be happier traveling back home now with this trophy in my hands... Took this picture at the locker room fo… https://t.co/kCLNZdQfJV +05/19/2018,Sports_celeb,@RafaelNadal,Molto molto felice di ritornare a giocare una finale qui a #Roma #Grazie #Italia #tennis #tenis #gracias #Vamos +05/18/2018,Sports_celeb,@RafaelNadal,"Great crowds today playing the local hero. Many thanks Rome for an amazing sportsmanship and respect for both. +Gra… https://t.co/RB2GcOBz8M" +05/15/2018,Sports_celeb,@RafaelNadal,¿Y a vosotros qué es lo que más os gusta de España? @spain #SpainIn10Sec #VisitSpain #Challenge… https://t.co/4SwikNrdUc +05/15/2018,Sports_celeb,@RafaelNadal,¿Sabéis qué hacemos los días como hoy que llueve mientras nos dan una pista de entrenamiento en #Roma ? Yo lo tengo claro 😬☔️🤔 +05/14/2018,Sports_celeb,@RafaelNadal,@MariaSharapova Thanks Maria! It’s been a pleasure hitting with the you a few balls 👍🏻😊👏🏻 +05/13/2018,Sports_celeb,@RafaelNadal,Ciao a tutti !!! vi aspetto a Roma! 😉😜😘 https://t.co/DKuYPQc1P5 +05/12/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos, Good morning to all! Lástima por la derrota de ayer, pero #dominicthiem jugó mejor y mereció g… https://t.co/cppMjiQ6Wk" +05/09/2018,Sports_celeb,@RafaelNadal,Good start to the tournament. Thanks all for the support. Great to play at home with this amazing crowds. https://t.co/N7B2G2GiDH +05/08/2018,Sports_celeb,@RafaelNadal,"¿Cómo será el deporte dentro de unos años gracias a IoT? +Cambiarán muchas cosas, pero seguro que seguiremos hacien… https://t.co/5JG8yywyEb" +05/07/2018,Sports_celeb,@RafaelNadal,Check out my Instagram account and see if you’ve done this before. The question is: 3 minutes or just 1 at -196 Cel… https://t.co/9EE2WaAkbz +05/06/2018,Sports_celeb,@RafaelNadal,Cena entretenida con equipo y amigos. Mañana a seguir preparando el inicio del torneo aquí en Madrid. Buenas noches… https://t.co/7nG9DyOdvz +05/06/2018,Sports_celeb,@RafaelNadal,Last chance to win a trip to Paris & meet me in person with one of your friends! You still have one last chance to… https://t.co/WkI1fegYIk +05/05/2018,Sports_celeb,@RafaelNadal,"My @babolat rackets are a big part of #TheDecima story. +What about your story? +Share a pic with your racket using… https://t.co/DmRZ23tC7u" +05/04/2018,Sports_celeb,@RafaelNadal,Interesante participar en este foro de tecnología y deporte #Madrid #España #telefonica https://t.co/jkHKYouBam +05/04/2018,Sports_celeb,@RafaelNadal,Así fue el pasado torneo del #RafaNadalTourbyMapfre. Me gusta ver como disfrutáis jugando a tenis y entrenando valo… https://t.co/6xWaChUiay +05/02/2018,Sports_celeb,@RafaelNadal,"Mañana jueves, a partir de las 19:00, estaré respondiendo preguntas en directo a través de un Facebook Live organiz… https://t.co/hqqO4l3DSf" +05/02/2018,Sports_celeb,@RafaelNadal,Don’t forget to donate $10 to @Onedrop and @frnadal and get a chance to win a trip to Paris to meet me in person- w… https://t.co/lcPuCljZj8 +05/01/2018,Sports_celeb,@RafaelNadal,Tengo una pregunta para vosotros… 😉 #SabadellFuturos https://t.co/P46tk5k6sE +04/29/2018,Sports_celeb,@RafaelNadal,Gracias a todos y en particular a mi equipo aquí en #barcelona #bcnopenbs #vamos #undecima https://t.co/d1ZhHZbsJR +04/25/2018,Sports_celeb,@RafaelNadal,"Contento de mi debut en #Barcelona +Ahora toca descansar, cenar bien y prepararse para el partido de mañana +#vamos… https://t.co/j6i73fooPB" +04/24/2018,Sports_celeb,@RafaelNadal,Ya en #Barcelona para saltar mañana a la tierra batida del #BCNOpenBS. Con ganas de compartir más tenis con los ami… https://t.co/XFWzDyjFmJ +04/23/2018,Sports_celeb,@RafaelNadal,Gracias siempre a los niños que nos ayudan en cada torneo! Qué momento tan especial! https://t.co/BppUMWMfQn +04/22/2018,Sports_celeb,@RafaelNadal,Ya en Barcelona !!!! Gracias a todos por los mensajes. Fue una semana especial!!! #feliz . Thanks to all for your m… https://t.co/lXodBaH56N +04/21/2018,Sports_celeb,@RafaelNadal,Otra final en #Monaco muy contento! Another final in #Monaco and very happy! https://t.co/cvNQ2i7bAO +04/20/2018,Sports_celeb,@RafaelNadal,"Gracias por el apoyo. Merci pour le soutien. Thanks for the support! +Gran partido hoy! Muy contento de estar en se… https://t.co/muAFklgWEg" +04/18/2018,Sports_celeb,@RafaelNadal,"Enhorabuena @RICARDODEDIEGO te lo mereces !!!! Congrats, you really deserve this award!!! https://t.co/BAbUNMgw4c" +04/18/2018,Sports_celeb,@RafaelNadal,"For only a $10 donation to @Onedrop and @frnadal, get a chance to win a trip to Paris and to meet me with one of yo… https://t.co/WxJX1FtG0K" +04/17/2018,Sports_celeb,@RafaelNadal,"#TheDecima began at Tennis Club Manacor. +Where does your story start? +Share your tennis court with #TheDecima for a… https://t.co/w8ks7duTHg" +04/15/2018,Sports_celeb,@RafaelNadal,Bonjour Monaco. Toujours bien cette tournoi ! :-) #vamos https://t.co/wgx0kJXvk3 +04/05/2018,Sports_celeb,@RafaelNadal,VAMOS! New @babolat #PureAeroDecima. I’m ready to challenge #MyDecima at @rolandgarros. https://t.co/jzzitaqHh1 +04/03/2018,Sports_celeb,@RafaelNadal,"Cuando te los pasas bien en una entrevista con chicos, esta tarde, con el equipo de España @CopaDavis :-) https://t.co/m3f0BSYzGw" +03/25/2018,Sports_celeb,@RafaelNadal,"Hoy día en familia... Aquí en #Mallorca, Sa Punta 🙂 https://t.co/iHNTWZzwl2" +03/23/2018,Sports_celeb,@RafaelNadal,Un abrazo grande desde Mallorca y muchos ánimos en estos momentos tan duros @santicanizares https://t.co/tdALwF0B0w +03/23/2018,Sports_celeb,@RafaelNadal,"Hoy ha empezado en Valldoreix, Barcelona, una nueva etapa del #RafaNadalTour. 10 días por delante para dar lo mejor… https://t.co/g5G3lCs7WU" +03/21/2018,Sports_celeb,@RafaelNadal,"Hoy en Barcelona, visita al Dr. Ruiz-Cotorro para ver la evolución de la lesión 👌👍 https://t.co/vwxEzWQ1Uw" +03/19/2018,Sports_celeb,@RafaelNadal,"Hi all, I'm happy to introduce the new Official Online Store of #RafaNadalAcademybyMovistar You can also collabora… https://t.co/99wzFcylUW" +03/19/2018,Sports_celeb,@RafaelNadal,"¡Hola a todos! +Os presento la nueva Tienda Online Oficial de #RafaNadalAcademybyMovistar, donde además podrás cola… https://t.co/4OQkZ9nza2" +03/02/2018,Sports_celeb,@RafaelNadal,"Hola a todos. Lamentablemente me veo obligado a escribiros esto.../ Unfortunately, the injury I suffered in Acapulc… https://t.co/ZAyvCsFC9I" +02/25/2018,Sports_celeb,@RafaelNadal,Os presento a Aura #HelloAura. Impresionante cómo la inteligencia artificial de @Telefonica me ayuda a disfrutar co… https://t.co/bgqla9v2zv +02/21/2018,Sports_celeb,@RafaelNadal,@paugasol Qué intriga Pau... ya nos dirás! 😉 +02/20/2018,Sports_celeb,@RafaelNadal,En juego la etapa de Sevilla del #RafaNadalTour. Este es el 5º año del circuito y no deja de sorprender el buen niv… https://t.co/yVsarM1US0 +02/15/2018,Sports_celeb,@RafaelNadal,"Amazed by @PostcodeLoterij social commitment. It's an honour to be an ambassador for this organisation, which I tha… https://t.co/eXftJ04eGT" +02/15/2018,Sports_celeb,@RafaelNadal,"Impresionado con el fuerte compromiso social que tiene @PostcodeLoterij. Es un honor ser embajador de esta entidad,… https://t.co/YKig3wWWnT" +02/09/2018,Sports_celeb,@RafaelNadal,"Querida Debora, por favor dale las gracias de mi parte a tu bisabuela por esta emotiva carta y su contenido que lle… https://t.co/Bf3Se7EKlz" +02/08/2018,Sports_celeb,@RafaelNadal,Es increíble todo lo que pasa en internet mientras estoy jugando al tenis #MovistarLikesRafa https://t.co/Vf9nZeckii +02/07/2018,Sports_celeb,@RafaelNadal,Excited to be playing here again... https://t.co/BOZdPA7Vk1 +02/06/2018,Sports_celeb,@RafaelNadal,"Nothing to do with yesterday’s event or tomorrow, but I played it in Melbourne and was great.… https://t.co/Nk2lzcykS2" +02/06/2018,Sports_celeb,@RafaelNadal,"RT @ClinicaTenis: Momento en el que iniciamos una nueva aventura con @MAPFRE + +👌🏻Todo el equipo estamos muy ilusionados con este proyecto q…" +02/03/2018,Sports_celeb,@RafaelNadal,Vamossssss! Siguiendo la eliminatoria desde casa en @rnadalacademy #DavisCup #España https://t.co/QsAEn37Qqy +01/31/2018,Sports_celeb,@RafaelNadal,RT @BancoSabadell: Nuestro embajador @RafaelNadal estará con nosotros el miércoles a partir de las 17:30h. Síguelo #endirecto 🔴 con @inform… +01/29/2018,Sports_celeb,@RafaelNadal,"RT @babolat: What’s your tribe? +#PureAero #PureDrive #PureStrike https://t.co/2YOeR7ZRYs" +01/26/2018,Sports_celeb,@RafaelNadal,@cilic_marin Thanks Marin and congrats on your match! You played unbelievable! +01/26/2018,Sports_celeb,@RafaelNadal,@paugasol Gracias Pau!!!!! Eres un fenómeno. Un abrazo amigo! +01/23/2018,Sports_celeb,@RafaelNadal,Sadly leaving the #ausopen tonight. I’ll get an MRI tomorrow morning to see what is the injury. Thanks for the supp… https://t.co/3pPXYxskpq +01/22/2018,Sports_celeb,@RafaelNadal,"Txs @AustralianOpen for making this nice piece on my Academy, exciting project that is already fully active and wor… https://t.co/tsiqBxLeH1" +01/21/2018,Sports_celeb,@RafaelNadal,Tough match to go into the QF! Vamosssssssssssssss! https://t.co/WNeJlNP73c +01/20/2018,Sports_celeb,@RafaelNadal,"Hey all, tomorrow 3rd on RLA, looking forward to that. In the mean time, today, we had lunch at the beach. #team… https://t.co/KxSPzmK4ju" +01/19/2018,Sports_celeb,@RafaelNadal,RT @FundacionEcomar: RECORDATORIO #ConciertoSolidario Invitación Concierto Homenaje a Deportistas Españoles 26-01-18 @OCRTVE. Organiza: @de… +01/18/2018,Sports_celeb,@RafaelNadal,"RT @AustralianOpen: Wow... a @RafaelNadal special! + +#AusOpen https://t.co/aR2QBQfKHA" +01/18/2018,Sports_celeb,@RafaelNadal,"RT @AustralianOpen: No. 1 seed. +No. 1 smile. +@RafaelNadal +#AusOpen https://t.co/SYNQglkfKF" +01/18/2018,Sports_celeb,@RafaelNadal,"Buenos días a todos, good morning!!! Hoy (today) a las @ 7 en (on) #margaretcourtarena aquí en el (here)… https://t.co/SCPr9LlY01" +01/16/2018,Sports_celeb,@RafaelNadal,UNTIL WE ALL WIN #EQUALITY https://t.co/eaVKpeQ4zk +01/15/2018,Sports_celeb,@RafaelNadal,"RT @kiamotorsiberia: Todos juntos somos uno, preparados para crear una gran #sorpresa. Preparados para el espectáculo. ¡Vuelve el @Australi…" +01/13/2018,Sports_celeb,@RafaelNadal,Monday start @AustralianOpen getting ready. #vamos https://t.co/02zv7g5Opv +01/10/2018,Sports_celeb,@RafaelNadal,RT @RICARDODEDIEGO: Australian Open VIK Ceremony with Rafa Nadal and Lleyton Hewitt & KIA Stinger @RafaelNadal Special Edition 😍 @Australia… +01/09/2018,Sports_celeb,@RafaelNadal,Thank you Iain for always taking care of us during the @AustralianOpen and for your hospitality. It was lovely to s… https://t.co/gExWmYUhAo +01/08/2018,Sports_celeb,@RafaelNadal,Draw came out and I’ll be playing @la_pouille . Really looking forward to stepping onto the #margaretcourtarena to… https://t.co/3bSyJadoU3 +01/05/2018,Sports_celeb,@RafaelNadal,Already in Melbourne! Practiced today @RodLaverArena and also excited for the @tiebreaktens coming up on Wednesday… https://t.co/vYgETDiU8a +01/03/2018,Sports_celeb,@RafaelNadal,On my way to Melbourne @AustralianOpen and will be playing the #tiebreaktens on Wednesday 10th looking forward to s… https://t.co/YjbEeFzKHs +12/27/2017,Sports_celeb,@RafaelNadal,I will be seeing my Aussie fans when I land on the 4th in Melbourne and start there my preparation for the Australian Open. +12/27/2017,Sports_celeb,@RafaelNadal,I am sorry to announce I won’t be coming to Brisbane this year. My intention was to play but I am still not ready a… https://t.co/0rqR9uVXyA +12/24/2017,Sports_celeb,@RafaelNadal,Os deseo una Feliz Navidad a todos los que la celebréis. Que tengáis un buen día con vuestros seres mas queridos. ¡… https://t.co/1eqJFYkYth +12/21/2017,Sports_celeb,@RafaelNadal,RT @babolat: HAPPY HOLIDAYS! #PlayToBeWild https://t.co/hvYxjS0dul +12/19/2017,Sports_celeb,@RafaelNadal,Gran clase de #spinning en #RafaNadalSportCentre!! Buen trabajo a todos! @RNadalAcademy #somsporttime 👏👏🎅 https://t.co/GyvsNJgH7S +12/18/2017,Sports_celeb,@RafaelNadal,Ya no queda nada para la 5ª edición del #RafaNadalTour! En este circuito los chic@s juegan y aprenden valores y los… https://t.co/G13S8Bw4HE +12/17/2017,Sports_celeb,@RafaelNadal,Excited to be on the cover of the new @AustralianOpen video game. See you soon #AOTennis https://t.co/f2cnU9apho +12/14/2017,Sports_celeb,@RafaelNadal,Gracias @AirEuropa!👏 https://t.co/s7KMlfYim0 +12/11/2017,Sports_celeb,@RafaelNadal,Muy agradecido al Conde de Godó y al @bcnopenbs por la entrega de la segunda réplica. #gracias https://t.co/8Ql17RIobg +12/06/2017,Sports_celeb,@RafaelNadal,"RT @CasaReal: Los Reyes entregan los ""Premios As del Deporte"" #As50Años @diarioas @miss_belmont @RafaelNadal @Ruthypeich https://t.co/AmYfA…" +12/04/2017,Sports_celeb,@RafaelNadal,"Muy afortunado de conocer a los pilotos que nos llevan de vuelta a casa, tras estos días de vacaciones. Gracias… https://t.co/judjqKNaEw" +12/02/2017,Sports_celeb,@RafaelNadal,La semana que viene en @Telefonica Flagship Store Madrid podrás ver los trofeos del #RafaNadalMuseumXperience y jug… https://t.co/hfUM3y1Qzo +12/01/2017,Sports_celeb,@RafaelNadal,"Disfrutando de estos días con mis amigos y familia... Adivináis dónde estamos? 😉 +Enjoying some days of holidays wit… https://t.co/ItYpAqIjQt" +11/24/2017,Sports_celeb,@RafaelNadal,RT @MAPFRE_ES: 7.000 millas después nuestros #Valientos ya están en Ciudad del Cabo tras una gran segunda etapa ¡Enhorabuena equipo! 🙌🏼#Vam… +11/23/2017,Sports_celeb,@RafaelNadal,"RT @GranRecogidaMad: ¡Ya puedes apuntarte a la @GranRecogidaMad ! ➡ 1, 2 y 3 de Diciembre. Necesitamos 22.000 voluntarios ¿Nos ayudas? http…" +11/21/2017,Sports_celeb,@RafaelNadal,Check out how you can join the surprise at Australian Open 2018! Thanks for the great opportunity! @Kia_Motors https://t.co/7f92lqpLg0 +11/21/2017,Sports_celeb,@RafaelNadal,RT @bcnopenbs: Cuatro campeones del @bcnopenbs coinciden en la pista del @rctb1899 https://t.co/5MJMtUTff0 +11/16/2017,Sports_celeb,@RafaelNadal,"As you can see in the media, today is a happy day for me, my team and my fans. The French justice... https://t.co/Pt4bnwQQU0" +11/16/2017,Sports_celeb,@RafaelNadal,"Como podréis ver en los medios de comunicación, hoy es un día feliz para mí, mi equipo y mis fans. La justicia fran… https://t.co/lb5txI01XZ" +11/15/2017,Sports_celeb,@RafaelNadal,RT @MAPFRE_ES: ¿Qué le pasa a @RafaelNadal? ¡Haz clic y entérate! Porque ni los deportistas profesionales pueden controlarlo todo.. https:/… +11/10/2017,Sports_celeb,@RafaelNadal,RT @Kia_Motors: We believe in the power to surprise. See how #Kia’s special visit to Keon Park Tennis Club made everyone smile - the #AusOp… +11/09/2017,Sports_celeb,@RafaelNadal,Having a great night out at the #ATP gala! https://t.co/YWgcWBvkk9 +11/03/2017,Sports_celeb,@RafaelNadal,Ya camino a casa después de una dolorosa decisión... // Leaving Paris now after a painful decision... https://t.co/sV8zNKyARE +11/02/2017,Sports_celeb,@RafaelNadal,Calentando para el partido de esta noche en el gimnasio del hotel #DCmoments. @Plaza_Athenee @DC_LuxuryHotels https://t.co/LO7jjDwGsg +11/01/2017,Sports_celeb,@RafaelNadal,A message to thank you for all your support. #Vamos https://t.co/mk9cfcIRRu +11/01/2017,Sports_celeb,@RafaelNadal,Un mensaje para agradeceros todo el cariño y apoyo. Muy contento por este logro... #Vamossss https://t.co/BqQYAl9nq2 +10/24/2017,Sports_celeb,@RafaelNadal,¿Sabes cuántas horas juego al tenis al año? #RNMovistar https://t.co/twYsGAU9nk +10/22/2017,Sports_celeb,@RafaelNadal,RT @RCD_Mallorca: 👉#SomelMallorca 🔴⚫️ https://t.co/26jLmeTLU5 +10/19/2017,Sports_celeb,@RafaelNadal,"This morning we'll be posting some special videos for all of you on @rnadalacademy... stay tuned, you'll love them!" +10/19/2017,Sports_celeb,@RafaelNadal,Esta mañana desde @rnadalacademy publicaremos un par de videos especiales para todos vosotros... Estad atentos 😉 Os encantarán... +10/18/2017,Sports_celeb,@RafaelNadal,Espectacular el nuevo Kia Stinger que me han entregado en la #RafaNadalAcademy! Gracias @RICARDODEDIEGO https://t.co/xmuvmgaf9J +10/17/2017,Sports_celeb,@RafaelNadal,"I sadly announce that I have to pull out of the Swiss Indoors Basel, after... https://t.co/hXuflDRZLJ" +10/17/2017,Sports_celeb,@RafaelNadal,Tristemente tengo que deciros que no participaré en el torneo de Basilea tras ver... https://t.co/hXuflDRZLJ +10/16/2017,Sports_celeb,@RafaelNadal,"Lamentando lo ocurrido en Galicia, Asturias y Portugal... Horror e impotencia...Todo mi apoyo a los familiares de los fallecidos." +10/15/2017,Sports_celeb,@RafaelNadal,"Great tour in China, with the title in Beijing and the final in Shanghai! This isn't over, let's keep going!" +10/15/2017,Sports_celeb,@RafaelNadal,"Gran gira en China, con título en Beijing y final aquí en Shanghai! Esto no ha acabado, seguimos!" +10/13/2017,Sports_celeb,@RafaelNadal,Outdoor play today here in Shanghai. Vamos! https://t.co/ZAdxTAT9aq +10/10/2017,Sports_celeb,@RafaelNadal,On my way to practice. Court 5 #shanghai #tennis #practice pics on my IG account later :-) +10/08/2017,Sports_celeb,@RafaelNadal,"Gracias a todos y en particular a mi equipo esta semana aquí en Beijing! Vamoss + +Thanks to everyone and to my team… https://t.co/uKshnzYBUD" +09/25/2017,Sports_celeb,@RafaelNadal,Resting at home after these intense days in #Prague. Very happy for yesterday's victory and for such an exciting… https://t.co/zkQdpDjU0O +09/25/2017,Sports_celeb,@RafaelNadal,En casa descansando tras estos días intensos en #Praga Muy contento por la victoria de ayer y por una @LaverCup tan… https://t.co/ebSiXgqJsi +09/23/2017,Sports_celeb,@RafaelNadal,📸 con mi compañero de dobles @RogerFederer👌Muy contento de haber jugado con Roger @LaverCup #TeamEurope https://t.co/lVtfVE0WPC +09/23/2017,Sports_celeb,@RafaelNadal,📸 with my doubles partner @RogerFederer! Happy to have played with Roger for a change😉 @LaverCup #TeamEurope https://t.co/uHqXAN9Pk6 +09/23/2017,Sports_celeb,@RafaelNadal,"An hour ago, in the dressing room talking tactics. Today I'm so lucky to have @rogerfederer next to me on the court… https://t.co/299XK7xn8e" +09/23/2017,Sports_celeb,@RafaelNadal,Hace una hora hablando de táctica en el vestuario. Hoy tengo la suerte de tener a @RogerFederer a mi lado de la pis… https://t.co/jooz3zOMVn +09/23/2017,Sports_celeb,@RafaelNadal,"RT @LaverCup: They've played against each other 37 times at tour level. +Now they play together for the first time. +Introducing #FedalUtd +#…" +09/23/2017,Sports_celeb,@RafaelNadal,"RT @rodlaver: Great tennis from @RafaelNadal and @rogerfederer today. Like everyone else, I am looking forward to seeing them play doubles…" +09/23/2017,Sports_celeb,@RafaelNadal,RT @TheSergioGarcia: History will be made today @LaverCup with @rogerfederer & @RafaelNadal playing doubles together for the 1st time vs @S… +09/21/2017,Sports_celeb,@RafaelNadal,Empieza el master del #RafaNadalTour en @rnadalacademy Desde Praga deseo mucha suerte a los 32 clasificados!Los ben… https://t.co/vb5QKhzwFH +09/19/2017,Sports_celeb,@RafaelNadal,Terribles noticias de Mexico. Todo mi apoyo a los afectados y a los familiares de las víctimas. +09/19/2017,Sports_celeb,@RafaelNadal,Hoy a las 17:30h hablaré con @marclopeztarres y @lolaochoaribes en el evento de @BancoSabadell!! #RafaNadalEnMálaga https://t.co/gFs3SYStKD +09/18/2017,Sports_celeb,@RafaelNadal,Enhorabuena @PauGasol por otro torneo fantástico y llegar de nuevo al mejor 5º del #Eurobasket2017. Eres enorme!!! https://t.co/lbMu60b9cH +09/17/2017,Sports_celeb,@RafaelNadal,Enhorabuena a @Carlossainz55 🇪🇸por su primer 4º lugar en la #F1 #gpsingapore🇸🇬 https://t.co/wH4UdUlwLe +09/13/2017,Sports_celeb,@RafaelNadal,Acabo de darme cuenta de que terceras personas han entrado en mi perfil haciendo un uso inaceptable.Ya la he recuperado.Lamento lo sucedido. +09/13/2017,Sports_celeb,@RafaelNadal,Dos dias de descanso antes de hacer un breve viaje... ya os diré algo... +09/12/2017,Sports_celeb,@RafaelNadal,RT @babolat: #PlayToBeWild @RafaelNadal https://t.co/jihSKyQoZh +09/12/2017,Sports_celeb,@RafaelNadal,"RT @usopen: 2010. +2013. +2017. + +#usopen https://t.co/oJsuvzQTKG" +09/12/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Oh hey there Champ 🏆 + +@RafaelNadal #usopen https://t.co/ZMOGb9niP8" +09/11/2017,Sports_celeb,@RafaelNadal,"Leaving NY shortly. My last moments of work was with these guys, Spain's media reps. @NewYorkPalace thanks for a gr… https://t.co/N8nZOmsLR9" +09/11/2017,Sports_celeb,@RafaelNadal,".@Nike has put this poster in the big city!! It looks amazing, don’t you think? Thanks @nike for your support #NY https://t.co/70JXK6N4hf" +09/11/2017,Sports_celeb,@RafaelNadal,Mensajito para agradeceros el apoyo. Ahora toca celebrar #usopen 17 https://t.co/lByqdBNBN7 +09/11/2017,Sports_celeb,@RafaelNadal,Vamossssssss thanks and celebration time #usopen 17 https://t.co/O0k0lhHtvT +09/11/2017,Sports_celeb,@RafaelNadal,".@RNadalAcademy has made this video for me!! Thanks to all the students, players, coaches and staff!! #Vamosss https://t.co/XieNlcBpMC" +09/09/2017,Sports_celeb,@RafaelNadal,Match point. Always a special feeling and a tough one! #USOpen https://t.co/UpGRCTf9hD +09/09/2017,Sports_celeb,@RafaelNadal,"Very happy for this win, and ... I'll go live on my Facebook page live in around 15-20 minutes ;-) @RafaelNadal" +09/07/2017,Sports_celeb,@RafaelNadal,"Great win today, back in the SF @usopen special moments again here #USOpen 17 | Muy contento por la victoria de hoy… https://t.co/qKafshkvLv" +09/04/2017,Sports_celeb,@RafaelNadal,Vamossss!!! Thanks NY!!!! https://t.co/C1fbuMP46V +09/03/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Out of this world for most... + +Standard for @RafaelNadal... + +#USOpen https://t.co/rtOKwXtY7h" +09/03/2017,Sports_celeb,@RafaelNadal,Into the second week of the @usopen !!! #vamos #ESPN https://t.co/iO4tpMGC68 +09/01/2017,Sports_celeb,@RafaelNadal,Congrats Serena!!! So much joy for you!!! https://t.co/u4edTrqIbB +09/01/2017,Sports_celeb,@RafaelNadal,Order of play out and tomorrow day 3rd on Ashe #USOpen Looking forward to this new challenge! Mañana 3 de la central del @usopen. Vamos! +08/31/2017,Sports_celeb,@RafaelNadal,"2nd round tonight, warm up now & getting ready for the match. Looking forward to an exciting & electric night session @usopen #USOpen 2017" +08/31/2017,Sports_celeb,@RafaelNadal,RT @ClinicaTenis: Would you like to have the official towel of @usopen ? RT and follow us to participate!Good luck🎾😉 https://t.co/uWJMIHSS4u +08/30/2017,Sports_celeb,@RafaelNadal,@misterjonesmtl @usopen 😳 +08/30/2017,Sports_celeb,@RafaelNadal,"Guess what, had a good practice today, went out for lunch and now back at the hotel waiting for the OOP @usopen for tomorrow. Guess when" +08/29/2017,Sports_celeb,@RafaelNadal,"RT @usopen: Rafa rolls through his R1 match vs Lajovic, 7-6, 6-2, 6-2! + +#USOpen https://t.co/SXuB3nLXt0 … https://t.co/JRYspcORyj" +08/28/2017,Sports_celeb,@RafaelNadal,. @usopen here we go! Getting ready for tomorrow. 3rd on Ashe day match! #vamos https://t.co/gSjh4gPHpE +08/27/2017,Sports_celeb,@RafaelNadal,Hoy es el cumpleaños de alguien del equipo.... Feliz cumpleaños @Charlymoya https://t.co/lOSYCmfN3B +08/27/2017,Sports_celeb,@RafaelNadal,RT @babolat: 🗽#PlayToBeWild https://t.co/irjw7m5S5i +08/26/2017,Sports_celeb,@RafaelNadal,Had great fun at the “Lotte New York Palace Invitational” @newyorkpalace #PalacePerks https://t.co/v6BTuzT80N +08/26/2017,Sports_celeb,@RafaelNadal,"@newyorkpalaceny, #PalacePerks, had great fun at the Lotte New York Palace Invitational @ Lotte… https://t.co/jrNktx7D1R" +08/26/2017,Sports_celeb,@RafaelNadal,Gettin' ready on Armstrong court. Thanks guys for coming! Big crowds #aakd #usopentennis https://t.co/HQFZ5XoXG4 +08/23/2017,Sports_celeb,@RafaelNadal,Thank you very much for 10 years of support. https://t.co/UVimx01c7N +08/21/2017,Sports_celeb,@RafaelNadal,https://t.co/H2DOia3n6r +08/21/2017,Sports_celeb,@RafaelNadal,https://t.co/klr2YRB9gi +08/17/2017,Sports_celeb,@RafaelNadal,Destrozado por lo que ha ocurrido en Barcelona! Todo mi apoyo a las familias afectadas y a la ciudad. +08/12/2017,Sports_celeb,@RafaelNadal,Entrenando en #Cincinnati! Practicing in Cincinnati! https://t.co/b7BMY4hfpo +08/03/2017,Sports_celeb,@RafaelNadal,Muchos días de alegría en el deporte español y hoy uno de los peores y más tristes para nuestro país. D.E.P. Angel… https://t.co/3cqoneoaY2 +08/03/2017,Sports_celeb,@RafaelNadal,Happy to have practiced at @rnadalacademy these days 😉👌 https://t.co/psRawiZ1N7 +07/31/2017,Sports_celeb,@RafaelNadal,Muchas felicidades @miss_belmont por tus 3 medallas en este Mundial! Enorme!! https://t.co/jcNDinHPHp +07/27/2017,Sports_celeb,@RafaelNadal,Thank you @Kia_Motors for giving me this present for #LaDecima. Really appreciate your support! https://t.co/fyYi91QlxX +07/26/2017,Sports_celeb,@RafaelNadal,Mucha fuerza Angel Nieto. Estamos todos contigo. Ánimos +07/24/2017,Sports_celeb,@RafaelNadal,Great practice today with @GrigorDimitrov at @RNadalAcademy https://t.co/sVHEr4ofTi +07/21/2017,Sports_celeb,@RafaelNadal,RT @babolat: We are @babolat. #PlayToBeWild https://t.co/EXTY1R3LdS +06/22/2018,Sports_celeb,@GarethBale11,🙌🏻 @edsheeran https://t.co/M0Li9rWh3H +06/21/2018,Sports_celeb,@GarethBale11,Great food as always at @ElevensBarGrill with the big man @taulupe 👌🏼🍔🍕 https://t.co/RbjcqTy7QZ +06/21/2018,Sports_celeb,@GarethBale11,@WishShopping keeping us occupied on our summer's off! #Wish #timeonyourhands https://t.co/MxFcTHMjNk +06/17/2018,Sports_celeb,@GarethBale11,Great few days of golf. Thanks Celtic Manor https://t.co/onG0OrrSrL +06/14/2018,Sports_celeb,@GarethBale11,Always a privilege to play a round at the #THEPLAYERS iconic Stadium Course @TPCSawgrass. Thanks to @PGATOUR for th… https://t.co/SXzEux28CN +06/14/2018,Sports_celeb,@GarethBale11,@TyrrellHatton @TPCSawgrass Sorry @TyrrellHatton 🤣 but all good on the 17th 👌🏼 Good luck at Shinnecock! https://t.co/6DE3x7vVK9 +06/14/2018,Sports_celeb,@GarethBale11,@LukeDonald @TPCSawgrass @LukeDonald was just happy to hit that green and make par! 😅 https://t.co/RunRhrr0mK +06/13/2018,Sports_celeb,@GarethBale11,@jackwhitehall @YouTube I’m ready 😂 #TrainingDays https://t.co/pxS9ohJqQj +06/12/2018,Sports_celeb,@GarethBale11,"I had some time on my hands, so picked up a new hobby. Thanks @WishShopping #timeonyourhands https://t.co/mXepTKgFvG" +06/08/2018,Sports_celeb,@GarethBale11,Got myself a new summer job. Thanks @WishShopping ! https://t.co/vS7HzE2nf2 +06/06/2018,Sports_celeb,@GarethBale11,"The Hustle and Grind off the pitch was finally executed in the second half. Always fit, always scoring with my… https://t.co/iZDV2MMCXv" +06/05/2018,Sports_celeb,@GarethBale11,Thanks to Wentworth for a great day playing the West course this afternoon. https://t.co/o17inUisgf +06/02/2018,Sports_celeb,@GarethBale11,"One week later and I’m still buzzing about those #X18 goals! 💥🎯 +An unforgettable night and the best debut I’ve had… https://t.co/U9ECH4Joha" +05/31/2018,Sports_celeb,@GarethBale11,Google Translate ist eine wunderbare Sache 🤣🤣 https://t.co/V3Pq8hx7K0 +05/31/2018,Sports_celeb,@GarethBale11,Muchas Felicidades Lucas 👶🏻 https://t.co/Tzz8boXaBc +05/29/2018,Sports_celeb,@GarethBale11,New @adidasfootball kits for 2018/19. Inspired to keep creating @realmadrid history! #HereToCreate… https://t.co/CJis1E5rcr +05/27/2018,Sports_celeb,@GarethBale11,"Right height, perfect angle, it all happened in a split-second. #InnovateYourGame https://t.co/DYji9sEvzl" +05/27/2018,Sports_celeb,@GarethBale11,Proud to create history with this great club @realmadrid ! 🏆 That goal last night was one of my best ever.… https://t.co/v0HQ8NSIrh +05/27/2018,Sports_celeb,@GarethBale11,Last night ⚽👌🏼 https://t.co/3FZQyL74VV +05/26/2018,Sports_celeb,@GarethBale11,🏆🏆🏆🏆 in 5⃣ #HalaMadrid https://t.co/YENvZ5DH1R +05/24/2018,Sports_celeb,@GarethBale11,Few days before the #UCLFinal show in Kyiv … Throwback on some of the greatest goals of the season. Enjoy! https://t.co/ZPnWgEcTKP +05/24/2018,Sports_celeb,@GarethBale11,My 4th Champions League Final with @adidasfootball and @realmadrid. Ready for the big stage with #X18!… https://t.co/RvpcMPBfXY +05/19/2018,Sports_celeb,@GarethBale11,Not the result we wanted to finish La Liga. One more game to go now .. ⚽ https://t.co/pss1CI8Iy7 +05/12/2018,Sports_celeb,@GarethBale11,⚽️⚽️ https://t.co/XmdCSY85Gj +05/11/2018,Sports_celeb,@GarethBale11,"The purest test in golf!! the famous island green – #theplayers Championship is under way, I took the PGA Tour chal… https://t.co/ePrwvIJcru" +05/10/2018,Sports_celeb,@GarethBale11,I've teamed up with the @PGATOUR to take on the Mug Challenge ahead of #ThePlayers Championship this week. Follow a… https://t.co/whG0nG9xLS +05/10/2018,Sports_celeb,@GarethBale11,"At least they recognised me @jackwhitehall 😂 +Out now: https://t.co/mnkIDLxdji #TrainingDays https://t.co/Tnk3wi0Gz5" +05/08/2018,Sports_celeb,@GarethBale11,We are delighted to welcome a baby boy into our family this morning. Axel Charles Bale 08.05.18 👶🏻💙 https://t.co/dFbHNdFwnH +05/06/2018,Sports_celeb,@GarethBale11,Tough point away from home tonight! Got to keep pushing on ⚽ https://t.co/wrCDi2BafY +05/01/2018,Sports_celeb,@GarethBale11,We are off to Kyivvv!!!! ✈️🏆 https://t.co/5vwFEu13xo +04/28/2018,Sports_celeb,@GarethBale11,3 points 👌🏼⚽ https://t.co/vaKMkfzVA9 +04/13/2018,Sports_celeb,@GarethBale11,Everyday is a challenge. Make your day count. @AltitudeMask #altitudemask #areyouawinner https://t.co/7TM7fQ2rgN +04/08/2018,Sports_celeb,@GarethBale11,"Not the result we are after today, but looking forward to Wednesday #HalaMadrid https://t.co/Yogdkp7IO7" +04/05/2018,Sports_celeb,@GarethBale11,Another level!! Watch me run the game in #AlphaBOUNCE BEYOND #CREATEDWITHADIDAS @adidasrunning #ad https://t.co/cyRbvUkb0Z +03/31/2018,Sports_celeb,@GarethBale11,Great win away from home! All focus now to the Champions League ⚽⚽ https://t.co/3TxGMmoIMY +03/29/2018,Sports_celeb,@GarethBale11,Putting the #AlphaBOUNCE BEYOND to the test! Check it out for yourself!! https://t.co/cRIY3Nljh5 #CREATEDWITHADIDAS… https://t.co/FVQMwgD5u6 +03/22/2018,Sports_celeb,@GarethBale11,Unbelievable reception here in China and to see so many Welsh Fans make the trip. Very proud to break Ian’s record… https://t.co/OrBVhnsbV9 +03/21/2018,Sports_celeb,@GarethBale11,"Check out my incredible Southwest Greens®️ 3 Hole Course, built for me by @SWGConstruction and @SWGreensUK, designe… https://t.co/EH9Sg4Jl9V" +03/18/2018,Sports_celeb,@GarethBale11,Good win again tonight!! Vamos equipo ⚽ https://t.co/beo9FbZqgZ +03/09/2018,Sports_celeb,@GarethBale11,Baby number 3 coming soon 👶🏻🍼 https://t.co/PftWCLVy2B +03/08/2018,Sports_celeb,@GarethBale11,"Supporting International Women’s Day today. Something very important to me personally, raising 2 amazing daughters… https://t.co/D49qt47n1F" +03/07/2018,Sports_celeb,@GarethBale11,"Good win last night, had to get the job done! Looking forward now to the next round 🙌🏻 https://t.co/UpkRqk7ZIt" +03/01/2018,Sports_celeb,@GarethBale11,"Alba’s representing over here in Madrid! Happy St David’s day everyone. Dydd Gŵyl Dewi Sant Hapus +#welshandproud https://t.co/HQkKl3UmJ4" +02/24/2018,Sports_celeb,@GarethBale11,+3 💪🏻 #halamadrid https://t.co/MgHFLCDz5a +02/20/2018,Sports_celeb,@GarethBale11,"Good session today at training, ready for tomorrow 💪🏻 https://t.co/94AM7zqt4l" +02/19/2018,Sports_celeb,@GarethBale11,What a game last night! 3-5 💪🏼 #HalaMadrid https://t.co/eYgCbPUI7H +02/14/2018,Sports_celeb,@GarethBale11,Great win in front of the home fans! Still a lot of work to be done but onto the second leg to finish the job 💪🏻⚽ https://t.co/ubZe5M0xPX +02/13/2018,Sports_celeb,@GarethBale11,"Best wishes @RyanMason! Good luck for the future, it was a pleasure to play along side you! https://t.co/PvoD4YDNyI" +02/05/2018,Sports_celeb,@GarethBale11,Happy Birthday @Cristiano 🎉 https://t.co/TGNFTQwAW5 +01/30/2018,Sports_celeb,@GarethBale11,"Stamina is key to my game, +@AltitudeMask always ensures my fitness level and endurance is at its best.… https://t.co/IZV9CNpM09" +01/27/2018,Sports_celeb,@GarethBale11,Good win away from home. Vamos equipo!! 💪🏼 https://t.co/bvapgs8aZM +01/21/2018,Sports_celeb,@GarethBale11,Great performance today! We need to work on this and keep improving ⚽⚽ #HalaMadrid https://t.co/qX47s8csdI +01/18/2018,Sports_celeb,@GarethBale11,Great win at the end away to Leganes 🙌🏻 Still a lot of work to do in the second leg #HalaMadrid https://t.co/ov08cdGCrS +01/15/2018,Sports_celeb,@GarethBale11,"Tragic news about Cyrille Regis. Helped me alot when i was younger and was a great man! +My thought are with his fam… https://t.co/5hHaWFq13U" +01/07/2018,Sports_celeb,@GarethBale11,Not the result we were after tonight! Good to be back helping the team but need to keep working and keep improving https://t.co/Sz8tjhVKOd +01/07/2018,Sports_celeb,@GarethBale11,Preparations done ✅ Vigo tonight💪🏻⚽ #HalaMadrid https://t.co/BerslRFPMj +01/04/2018,Sports_celeb,@GarethBale11,Very happy to kick 2018 off with the win! ⚽ #HalaMadrid https://t.co/sh4V0H890s +12/19/2017,Sports_celeb,@GarethBale11,Happy Birthday @Benzema ! What a few years it’s been 🏆🎉 https://t.co/VCwzYxXCcj +12/16/2017,Sports_celeb,@GarethBale11,🏆 #Champions #ClubWC https://t.co/KHfHYIdzOk +12/13/2017,Sports_celeb,@GarethBale11,"Loved being back on the pitch tonight, tough win but always good to grab a goal ⚽ https://t.co/w9dxTsUKah" +12/11/2017,Sports_celeb,@GarethBale11,No easy draw in the @ChampionsLeague last 16. Looking forward to getting out there and more moments like these 🏆⚽ https://t.co/wsheVPOXXX +12/09/2017,Sports_celeb,@GarethBale11,What a game!! Fantastic result in front of the home fans 👌🏻⚽ #HalaMadrid https://t.co/Wb7ShxAgVD +12/08/2017,Sports_celeb,@GarethBale11,🏆🏆🏆🏆🏆Congratulations @Cristiano https://t.co/u3QbKk0UZ7 +11/28/2017,Sports_celeb,@GarethBale11,"Really enjoyed being back out there, and even better to get through to the next round 🙌🏻#HalaMadrid https://t.co/qzvvm9bg1U" +11/28/2017,Sports_celeb,@GarethBale11,"RT @realmadrid: 👍🚌 ¡Concentrados para el partido contra el @CFuenlabradaSAD! + +#RMCopa | #HalaMadrid https://t.co/aIYsqxrKI9" +11/27/2017,Sports_celeb,@GarethBale11,"Great to be back in training with the guys, been a tough month but working hard to get back out there 🔋🎯⚽… https://t.co/J8cykB8vR2" +11/22/2017,Sports_celeb,@GarethBale11,"RT @UNICEF: Thank YOU... + +🔵 For saving children’s lives. + +🔵 For defending children’s rights. + +🔵 For helping children fulfill their potentia…" +11/21/2017,Sports_celeb,@GarethBale11,Great win away from home and sees us through to the next round 👌🏼 #HalaMadrid https://t.co/eqs2h0Vwhs +11/18/2017,Sports_celeb,@GarethBale11,#DiolchChris An amazing manager and a top guy! Just want to say good luck for your future and a big thank you for t… https://t.co/BGq2fTd1Tl +11/12/2017,Sports_celeb,@GarethBale11,Lest we Forget #RemembranceSunday https://t.co/5WMzzOB7lN +11/01/2017,Sports_celeb,@GarethBale11,"Good sessions this week 🏃 Good luck to the boys tonight, gutted to not be playing at Wembley but working hard to ge… https://t.co/QpTjL9fg39" +10/22/2017,Sports_celeb,@GarethBale11,Great 3 points and performance from the team tonight 💪🏻 #HalaMadrid https://t.co/oESkxDx1A3 +10/22/2017,Sports_celeb,@GarethBale11,🏃🏻⚽ https://t.co/BaC3lk4CT0 +10/17/2017,Sports_celeb,@GarethBale11,"What an atmosphere tonight! Important point, can't wait for the game in Wembley ⚽ #HalaMadrid https://t.co/R8TJ41sqm0" +10/14/2017,Sports_celeb,@GarethBale11,Straight back to winning ways after the international break! 👏🏼⚽ https://t.co/jrbKkGKCyt +10/12/2017,Sports_celeb,@GarethBale11,Homemade sushi 🍣👌🏼 https://t.co/15JgkfIhUR +10/10/2017,Sports_celeb,@GarethBale11,"Hard loss to take last night, but couldn’t be more proud of the team, we leave with our heads held high 🐉… https://t.co/YR4U9ggrMf" +10/06/2017,Sports_celeb,@GarethBale11,"Hard fought victory for the boys, 1 more game! 🐲⚽🔴 https://t.co/AWYtjrA6Hi" +10/04/2017,Sports_celeb,@GarethBale11,"Gutted I’m not in Georgia with the team, let’s bring home another win like this one boys @FAWales 🐉… https://t.co/GHf8yA2tfs" +09/29/2017,Sports_celeb,@GarethBale11,"I need the fastest boots in the game, always. Love this new colour! 🔥👌🏼@adidasfootball #HereToCreate #X17 https://t.co/UsH7Qjt9ul" +09/28/2017,Sports_celeb,@GarethBale11,"RT @Dugout: WIN: a pair of boots signed by @realmadrid's @GarethBale11! ⚽️🔥 + +Enter ➡️ https://t.co/h2x9pEB4XW + +#HalaMadrid https://t.co/eJZ…" +09/27/2017,Sports_celeb,@GarethBale11,Comida increible en mi nuevo favorito restaurante en Majadahonda - Maduk! Enhorabuena mi amigo 👌🏼 https://t.co/OCCL9fDogs +09/26/2017,Sports_celeb,@GarethBale11,Great performance from the team tonight 💪🏻 happy to get on the scoresheet too ⚽#HalaMadrid #UCL https://t.co/FxVoVGmB24 +09/25/2017,Sports_celeb,@GarethBale11,All focus on tomorrow night ⚽ #UCL #HalaMadrid https://t.co/TI8XgWcut0 +09/23/2017,Sports_celeb,@GarethBale11,Good 3 points and congrats @isco_alarcon 2⃣0⃣0⃣ #halamadrid https://t.co/yroNfCqJJD +09/20/2017,Sports_celeb,@GarethBale11,Matchday #HalaMadrid 🙌🏻⚽ https://t.co/sPVGCix8Ru +09/17/2017,Sports_celeb,@GarethBale11,@aarbeloa17 VAMOS 💪🏻💪🏻💪🏻 +09/17/2017,Sports_celeb,@GarethBale11,Big win at a tricky ground ⚽👌🏼😛 https://t.co/EoFNSjr3Xn +09/15/2017,Sports_celeb,@GarethBale11,Great to meet the fans today in Madrid! #ThePulseofRealMadrid https://t.co/M0xg8ZNNyu +09/13/2017,Sports_celeb,@GarethBale11,Solid 3 points to start the #UCL campaign 👌🏼 https://t.co/ekZNzC7lsR +09/12/2017,Sports_celeb,@GarethBale11,"In Football, we stand together #EqualGame #Respect +Can't wait to kick off our @realmadrid @ChampionsLeague campaign… https://t.co/zYbUBv0qAj" +09/11/2017,Sports_celeb,@GarethBale11,WATCH me surprise youngsters in Madrid and show them how to score a @ChampionsLeague winning goal #UCL #HalaMadrid https://t.co/xUdwukKYiK +09/08/2017,Sports_celeb,@GarethBale11,"Training done, looking forward to tomorrow's game ⚽ #HalaMadrid https://t.co/XBvDcVRMIS" +09/05/2017,Sports_celeb,@GarethBale11,One step closer 🐉 https://t.co/e0f78ZOibj +09/04/2017,Sports_celeb,@GarethBale11,"Can't wait to get back out there tomorrow. Huge game, only the win will do! 🐉 https://t.co/w6dHWYFC7i" +09/02/2017,Sports_celeb,@GarethBale11,Massive 3 points! Come on boys!! 🐉 https://t.co/rbIEEIflAU +09/01/2017,Sports_celeb,@GarethBale11,RT @WayneHennessey1: Love & Support from @FAWales to the Bigman @Carl_Ikeme ❤️#teamkemes #TogetherStronger https://t.co/8COmSbSAl8 +08/30/2017,Sports_celeb,@GarethBale11,Really good to meet the fans at training yesterday. Hope you all had a great day! 😃👍🏻 https://t.co/0Sf2Z35zky +08/24/2017,Sports_celeb,@GarethBale11,Always winning with my @AltitudeMask #altitudemask #areyouawinner https://t.co/YDvWeGrV3l https://t.co/DHw6Hmm1AN +08/24/2017,Sports_celeb,@GarethBale11,#TooExcitedTo wait for the UCL draw? Let me know who you think we will be drawn against? https://t.co/HNFLinjOZr https://t.co/do7flklwiX +08/23/2017,Sports_celeb,@GarethBale11,Great to be back in front of the Bernabeu crowd and to lift the Santiago Bernabeu trophy 🏆🙌🏻 https://t.co/a1kK6FRpH3 +08/20/2017,Sports_celeb,@GarethBale11,Great to start the season with 3 points away from home! ⚽ #HalaMadrid https://t.co/aYdwV5brBY +08/17/2017,Sports_celeb,@GarethBale11,Thoughts are with everyone in Barcelona tonight 🙏🏼 +08/17/2017,Sports_celeb,@GarethBale11,Great night last night 🏆🙌🏻 Now all focus shifts towards La Liga ⚽ https://t.co/64L2WTTTM7 +08/16/2017,Sports_celeb,@GarethBale11,Vaamoosss!! Second trophy of the season and what a performance to win it with 🏆🏆#SupercopadeEspana https://t.co/wORhWXDMHu +08/14/2017,Sports_celeb,@GarethBale11,"Congratulations @JustinThomas34 Great back 9, what a way to win your first major ⛳🏆" +08/13/2017,Sports_celeb,@GarethBale11,Great team performance tonight!! Can't wait for the second leg now on Wednesday ⚽#halamadrid https://t.co/L75lqtLuvB +08/09/2017,Sports_celeb,@GarethBale11,🏆😃#halamadrid https://t.co/EAf5I4O8Ia +08/08/2017,Sports_celeb,@GarethBale11,Super Cup x 3 🏆🏆🏆👌🏼 https://t.co/hbasQtMo7r +08/08/2017,Sports_celeb,@GarethBale11,The @btsport #HardestHits..Round One.... @mrjakehumphrey 👀😂 sorry! https://t.co/jTCOWGiz2M +08/07/2017,Sports_celeb,@GarethBale11,Super Cup time 🙌🏻⚽⏱ #HalaMadrid https://t.co/76uxPR2SP6 +08/06/2017,Sports_celeb,@GarethBale11,"RT @SouthamptonFC: #OnThisDay in 2006, a 17-year-old @GarethBale11 netted his first senior goal for #SaintsFC against #DCFC! 👏 https://t.co…" +08/06/2017,Sports_celeb,@GarethBale11,Watched @usainbolt for over a decade ignite the world!! #goat #respect https://t.co/fWPyB43ECS +08/05/2017,Sports_celeb,@GarethBale11,😀💪🏻 ready for #uefasupercup https://t.co/rjlOgzkxFa +08/03/2017,Sports_celeb,@GarethBale11,Put through the ringer there @Dele_Alli 😂😂. Watch @btsport #beingdele now! https://t.co/Ngn4RMSpF5 +08/03/2017,Sports_celeb,@GarethBale11,Great fun watching @Dele_Alli in the ring. Thanks for the invite @mrjakehumphrey & watch @btsport #BeingDele from 8… https://t.co/VNRdqhr9FD +08/02/2017,Sports_celeb,@GarethBale11,My next @adidasfootball partner. Ocean Storm is here ! 🌊👟#HereToCreate #X17 https://t.co/L5rrXcmNzG +07/28/2017,Sports_celeb,@GarethBale11,"Fitness is a lifestyle, taking my @AltitudeMask wherever I go, maintaining my conditioning in all environments… https://t.co/oPU7CJBVBg" +07/27/2017,Sports_celeb,@GarethBale11,"Great to see so many fans over the past couple of weeks in LA, support has been amazing 🙌🏻 next stop Miami! https://t.co/j4hYf0gRIp" +07/25/2017,Sports_celeb,@GarethBale11,Great to see this legend in LA 🇺🇸 https://t.co/gIW3R1pZfV +07/23/2017,Sports_celeb,@GarethBale11,"First game back, all about the preparation at this stage. Good run out in front of an amazing crowd 👏🏼 #HalaMadrid https://t.co/m2P6dtk5Sm" +07/21/2017,Sports_celeb,@GarethBale11,Blue meets Blue 👀👕 Our new @adidasfootball third kit ! @realmadrid #HalaMadrid #HereToCreate https://t.co/9whfhmsG4t +07/19/2017,Sports_celeb,@GarethBale11,Training continues 👌🏼🏋🏻 https://t.co/9K5wyXac7C +07/16/2017,Sports_celeb,@GarethBale11,Enjoyed the birthday session today ⚽ Thanks to everyone for all the well wishes 🙌🏻 https://t.co/4hw3V9bgua +07/14/2017,Sports_celeb,@GarethBale11,My fifth season has begun with this great club. Can't wait to be back out there again! #HereToCreate #X17… https://t.co/7Uy3c32cLf +07/13/2017,Sports_celeb,@GarethBale11,"Good start to pre season, great to be back in LA 🇺🇸🌞⚽ https://t.co/ab38PHGwFS" +07/11/2017,Sports_celeb,@GarethBale11,Great to be back with the boys 👍🏻 LA bound ✈️⚽ https://t.co/VzOEBovW45 +07/07/2017,Sports_celeb,@GarethBale11,👍🏻🏌⛳ @TheCelticManor https://t.co/1tHmprejAR +07/04/2017,Sports_celeb,@GarethBale11,"Great to head into @elevensbargrill tonight, heres a glimpse in to what went in to making it ..… https://t.co/QLtm3vlXZa" +07/04/2017,Sports_celeb,@GarethBale11,Another great year at the #CelebCup. Shame about the Welsh result 😂 But an unbelievable event and all for a great c… https://t.co/2gxB8t8Mup +07/03/2017,Sports_celeb,@GarethBale11,"Make sure you pick up a copy of Don’t Take Me Home, on shelves today. Relive our unmissable summer… https://t.co/t112G2oock" +06/30/2017,Sports_celeb,@GarethBale11,Back again #celebcup 🏌 https://t.co/j9jZolfrmZ +06/27/2017,Sports_celeb,@GarethBale11,An #SB2K inspired tour to @BakersBay. What a day! @RickieFowler @JustinThomas34 @JordanSpieth @SmylieKaufman10 https://t.co/9ACZ2acYbZ +06/24/2017,Sports_celeb,@GarethBale11,Wentworth 🌞⛳ https://t.co/up59GjBcO0 +06/23/2017,Sports_celeb,@GarethBale11,"Training with my @AltitudeMask ahead of preseason. Huge year for club and country, find out more at… https://t.co/KTvVT9ywpR" +06/15/2017,Sports_celeb,@GarethBale11,What a night in Cardiff for the #UCLFinal. Glad @NissanEurope managed to get it there on time! #TooExcitedToo https://t.co/Pb1fjxO0rs +06/14/2017,Sports_celeb,@GarethBale11,"And to end the day, here’s our new @adidasfootball away shirt. 🙌🏽 Can’t wait for the new season with @realmadrid !… https://t.co/FSIPwZ4dia" +06/14/2017,Sports_celeb,@GarethBale11,At home we create in white. Our 2017/18 @adidasfootball home shirt. 👌🏽💪🏼 @realmadrid #HereToCreate #HalaMadrid https://t.co/qOPebv2swz +06/14/2017,Sports_celeb,@GarethBale11,At @realmadrid we play to create history. Let’s do the same with our new @adidasfootball kits! #HereToCreate… https://t.co/iH9YaOYpAQ +06/11/2017,Sports_celeb,@GarethBale11,"Solid point away from home, boys played well and keeps us in the running! #TogetherStronger" +06/08/2017,Sports_celeb,@GarethBale11,"Made some incredible memories this season! But sad to see the last @SpursOfficial game at WHL, will always be a spe… https://t.co/K94pNGCXjm" +06/07/2017,Sports_celeb,@GarethBale11,Can't wait to compete in the @TheCelticManor #CelebCup again! Hopefully we can bring it home for Wales 🏆🐉 https://t.co/38BoLAINvp +06/05/2017,Sports_celeb,@GarethBale11,"Awful news, so sorry to hear about Cheick Tioté, my thoughts are with his family and friends" +06/05/2017,Sports_celeb,@GarethBale11,"3 🏆 in 4 years, what a team to be part of! Thank you to all of the fans for their support this year 👏🏻🙌🏻 #HalaMadrid https://t.co/Tf1PcYYMJA" +06/04/2017,Sports_celeb,@GarethBale11,Incredible scenes at the Bernabéu 🙌🏻 Gracias Madridistas 🎉🎉🎉 https://t.co/uz4ESN3ikx +06/04/2017,Sports_celeb,@GarethBale11,🏆🏆🎉💯 https://t.co/BRxTbFCIJH +06/04/2017,Sports_celeb,@GarethBale11,🙌🏻🙌🏻🙌🏻🙌🏻 #halamadrid https://t.co/oNMe77vEzc +06/04/2017,Sports_celeb,@GarethBale11,"2014 🏆2016 🏆2017🏆 +Proud to create @realmadrid history again, always with @adidasfootball 👟 +I'm just getting started… https://t.co/5WsVGcpbAC" +06/03/2017,Sports_celeb,@GarethBale11,🏆🏆🏆 https://t.co/mBV72PqvWa +06/03/2017,Sports_celeb,@GarethBale11,"Thank you for the incredible welcome, fans are amazing 🙌🏻 Gracias, Diolch, 🐉🇪🇸 #HalaMadrid #APorLa12 🏆 https://t.co/Ru2ULLhmAJ" +06/03/2017,Sports_celeb,@GarethBale11,#TooExcitedTo wait for the #UCLFinal? Watch the trophy go through Cardiff live today via @NissanEurope at 3pm https://t.co/22od6A3e91 +06/02/2017,Sports_celeb,@GarethBale11,"Behind the scenes @Dugout for @btsport #SportInFocus, watch tonight on BT Sport 2 at 20.30. Full BTS… https://t.co/e3ksTLyHTE" +06/02/2017,Sports_celeb,@GarethBale11,Cardiff here we come! 🐉⚽ #HalaMadrid #APorLa12 🏆 https://t.co/Q4mPtiSIb3 +06/01/2017,Sports_celeb,@GarethBale11,"The #UCL final awaits. +The ultimate game. +The ultimate record. +I am #HeretoCreate it. +#X17 https://t.co/LoDux4o82u" +06/01/2017,Sports_celeb,@GarethBale11,Stepping things up in training. 2 more days #UCLFinal https://t.co/HK6bhASQV7 +05/31/2017,Sports_celeb,@GarethBale11,Controlling my breathing is key to maximise the work out and increase endurance threshold. @AltitudeMask https://t.co/OM3I9Vljvv +05/31/2017,Sports_celeb,@GarethBale11,3 days #UCLFinal https://t.co/ovZ44piMRH +05/30/2017,Sports_celeb,@GarethBale11,"Congratulations @danleydon ,winner of @btsport #ChampionsDraw and for retaining the crown!! https://t.co/mVoaqMFtoE" +05/27/2017,Sports_celeb,@GarethBale11,⚽️☀️ https://t.co/cLpNx2Iruf +05/26/2017,Sports_celeb,@GarethBale11,You might be wondering how I’m floating? It’s not meditation … it’s the power of the perfect sleep on a SIMBA mattr… https://t.co/fMIQMQeuJx +05/26/2017,Sports_celeb,@GarethBale11,"Back in training with the boys, all focus towards Cardiff ⚽ https://t.co/hJl82sg9Qx" +05/25/2017,Sports_celeb,@GarethBale11,"Follow @sportconvo for a chance to win this signed cap by me. +Terms and conditions on https://t.co/fFtOI8SkSs https://t.co/xTueyprdNp" +05/24/2017,Sports_celeb,@GarethBale11,Fully focused on my fitness and recovery with my @AltitudeMask #altitudemask #areyouawinner https://t.co/YPGNpz1bwO +05/23/2017,Sports_celeb,@GarethBale11,Truly awful news to wake up too!! Thoughts are with all affected in Manchester 🙏🏻 https://t.co/6HStCC7Pc0 +05/22/2017,Sports_celeb,@GarethBale11,Incredible turn out at today's parade! 👏🏻🙌🏻😀🎉🏆 https://t.co/eLBtGQC9AR +05/22/2017,Sports_celeb,@GarethBale11,What an amazing night! Thank you to all the Madridistas #33 #Champions 🙌🏻👏🏻🎉 https://t.co/LG6uhExRMs +05/21/2017,Sports_celeb,@GarethBale11,🇪🇸🏆 La Liga Champions! #Halamadrid https://t.co/Ijqozx9mS2 +05/17/2017,Sports_celeb,@GarethBale11,"Great result!! One step closer, vaaaamos 💪🏼 https://t.co/pKyxdPgs4x" +05/14/2017,Sports_celeb,@GarethBale11,One step closer to our goal! Fans were incredible tonight 🙌🏻 #vamos https://t.co/9B8Y95fRmd +05/12/2017,Sports_celeb,@GarethBale11,Happy Birthday my friend!! @MarceloM12 👍🎂 https://t.co/EUtAVEGTXi +05/11/2017,Sports_celeb,@GarethBale11,So proud of the team last night and now continuing my recovery to get back out on the pitch! #HalaMadrid https://t.co/1YrhGuitrT +05/10/2017,Sports_celeb,@GarethBale11,Cardiff here we come!! #HALAMADRID https://t.co/QqetlUOnwC +05/10/2017,Sports_celeb,@GarethBale11,Goaaalllllll #halamadrid +05/10/2017,Sports_celeb,@GarethBale11,Let's finish the job tonight. Come on boys!! #HalaMadrid +05/09/2017,Sports_celeb,@GarethBale11,"RT @adidasUK: 🏆 is coming to town. +Stay tuned to get involved. 👀 https://t.co/ZAFX5unQaF" +05/06/2017,Sports_celeb,@GarethBale11,Great first half and good win away from home 👌🏼@realmadrid #halamadrid https://t.co/H0x7npZKBe +05/06/2017,Sports_celeb,@GarethBale11,"Good luck to the boys tonight, gutted not to be on the pitch but working hard on recovery #halamadrid" +05/02/2017,Sports_celeb,@GarethBale11,What an all round performance! And that man again @Cristiano ⚽⚽⚽ #HalaMadrid https://t.co/hlAjXS0o3M +04/29/2017,Sports_celeb,@GarethBale11,What a fight! Congratulations @anthonyfjoshua and huge respect to @Klitschko 🥊 https://t.co/sbu6EpNdWF +04/29/2017,Sports_celeb,@GarethBale11,Great character shown again from the boys!! 💪🏼 #HalaMadrid https://t.co/JxHGwRcqGM +04/28/2017,Sports_celeb,@GarethBale11,Looking forward to tomorrow night's fight. Good luck @anthonyfjoshua #keepmoving @AltitudeMask #areyouawinner 💪🏼🥊 https://t.co/mTCWxqrcbp +04/25/2017,Sports_celeb,@GarethBale11,No matter what the conditions are I'm always putting in the work and recovering with my @AltitudeMask #altitudemask… https://t.co/fom0Jrr9sS +04/22/2017,Sports_celeb,@GarethBale11,💪🏼 #ElClasico https://t.co/uWQoh9GB4K +04/18/2017,Sports_celeb,@GarethBale11,Vaamosss 💪🏻💪🏻What a performance! Semi finals!! 🙌🏻🙌🏻🙌🏻 #halamadrid https://t.co/mLfw3lK4DD +04/17/2017,Sports_celeb,@GarethBale11,"Proud to be an ambassador for @SimbaSleep , who've developed the most advanced airline seat 😴😴… https://t.co/Zp7WyVtG3t" +04/15/2017,Sports_celeb,@GarethBale11,Kept going until the end again and never gave up! #halamadrid https://t.co/w8Z1dmGbUn +04/14/2017,Sports_celeb,@GarethBale11,"Watch the world premiere of Nissan’s new TV ads where my substitute, Ana, played alongside @aguerosergiokun https://t.co/xIi2DmzoEk" +04/11/2017,Sports_celeb,@GarethBale11,✈️👍🏻🇩🇪 #UCL https://t.co/dA5xMY0xCk +04/10/2017,Sports_celeb,@GarethBale11,Watch to find out how I got on as I attempted to re-create my @ChampionsLeague free kick for @btsport's… https://t.co/3uzqtoMvxc +04/10/2017,Sports_celeb,@GarethBale11,What a #Masters!! Huge congratulations to my friend @TheSergioGarcia unbelievable stuff! ⛳🙌🏻 https://t.co/GVezsDkGov +04/09/2017,Sports_celeb,@GarethBale11,Great evening relaxing with #masters before champions league this week!! Good luck @TheSergioGarcia @JustinRose99 ⛳😂 https://t.co/Q5D1AMJBaZ +04/08/2017,Sports_celeb,@GarethBale11,"Disappointing to concede so late on, boys played well! #halamadrid https://t.co/DYGjRqhraT" +04/07/2017,Sports_celeb,@GarethBale11,Good luck guys! 👍🏻 https://t.co/utD7cyiJjO +04/07/2017,Sports_celeb,@GarethBale11,Delighted to announce my partnership with @AltitudeMask the world leading resistance mask brand #areyouawinner… https://t.co/AcP9tUh7WQ +04/06/2017,Sports_celeb,@GarethBale11,This #X16 boot is all about SPEED! Can’t wait to get out there! #NeverFollow @adidasfootball https://t.co/Kfc7oUfjNL +04/05/2017,Sports_celeb,@GarethBale11,3 points away from home 👌🏼 #HalaMadrid https://t.co/Qx7OoJNblD +04/02/2017,Sports_celeb,@GarethBale11,Really good win against a tough Alaves team! Looking forward to the midweek game now 💪🏼#HalaMadrid https://t.co/SKjxXodv2D +03/30/2017,Sports_celeb,@GarethBale11,Special memories with a great captain. Happy Birthday @SergioRamos! #ElCapitán https://t.co/1pWvTfq6hn +03/18/2017,Sports_celeb,@GarethBale11,Tough 3 points away in Bilbao 💪🏼Now time to focus on the international break! ✈️ #halamadrid https://t.co/zArffasSwP +03/17/2017,Sports_celeb,@GarethBale11,A deadly famine has been declared in parts of East Africa. Visit @unicef_uk appeal and help us in saving lives -… https://t.co/AF5axvQ9LQ +07/01/2018,Sports_celeb,@MoSalah,Some might think it’s over but it isn’t over. There needs to be change. +06/20/2018,Sports_celeb,@MoSalah,الجميع في منتخب مصر متكاتف ولا يوجد أي خلاف على الإطلاق بيننا.. نحترم بعضنا البعض والعلاقة على أفضل وجه. +06/18/2018,Sports_celeb,@MoSalah,"Ready for tomorrow. +100 million strong.🇪🇬🇪🇬🇪🇬 @adidasfootball #HereToCreate https://t.co/03BI9CQbgI" +06/15/2018,Sports_celeb,@MoSalah,كل عام والجميع بخير وعيد سعيد علينا جميعًا... +06/12/2018,Sports_celeb,@MoSalah,I wear these for 100 million Egyptians.@adidasfootball https://t.co/lpbW4b04Mh +06/10/2018,Sports_celeb,@MoSalah,Russia here we are😅 https://t.co/d82COl9vzP +06/08/2018,Sports_celeb,@MoSalah,🕺🏽🕺🏽 https://t.co/D3OjzbzsOK +06/08/2018,Sports_celeb,@MoSalah,"RT @lequipe: Mohamed Salah : «Le statut de héros, je dois le gérer depuis longtemps» + +Devenu phénomène mondial, il raconte son parcours et…" +06/07/2018,Sports_celeb,@MoSalah,🧢🧢 https://t.co/bC4tXnFvzR +06/06/2018,Sports_celeb,@MoSalah,🌊🌊 https://t.co/KztZQ0Hnim +06/03/2018,Sports_celeb,@MoSalah,Good feelings... https://t.co/Jhyd2kYVKI +05/29/2018,Sports_celeb,@MoSalah,"@brfootball +#NewYork #TimesSquare https://t.co/cij7zorbh4" +05/27/2018,Sports_celeb,@MoSalah,"It was a very tough night, but I'm a fighter. Despite the odds, I'm confident that I'll be in Russia to make you al… https://t.co/8dEez837V7" +05/24/2018,Sports_celeb,@MoSalah,#HereToCreate https://t.co/Ij7rBgvziZ +05/20/2018,Sports_celeb,@MoSalah,🧐🧐 https://t.co/REESq5bg2t +05/19/2018,Sports_celeb,@MoSalah,@ElHadary اكونت الحضري ولا تريزيجيه ده 🤷🏽‍♂️دا مرض وانتشر ربنا يحفظنا 🤣 +05/19/2018,Sports_celeb,@MoSalah,https://t.co/YjEJ21yxuB. Good luck tomorrow guys! +05/19/2018,Sports_celeb,@MoSalah,🤪🤪🤪 @Uber_Egypt https://t.co/mIyU0XLnqX +05/18/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬 https://t.co/fBBXSL9WjY +05/18/2018,Sports_celeb,@MoSalah,🙋🏻‍♂️🙋🏻‍♂️ https://t.co/EAu0F7KsLu +05/17/2018,Sports_celeb,@MoSalah,@theritzlondon 😀 https://t.co/0WkQM9bwbA +05/16/2018,Sports_celeb,@MoSalah,كل عام وأنتم بخير ورمضان كريم ربنا يعيده علينا بالخير والسعادة علينا جميعًا... +05/16/2018,Sports_celeb,@MoSalah,🙄🙄 https://t.co/LcUIy7gwSn +05/14/2018,Sports_celeb,@MoSalah,😀😀 https://t.co/CWGO5EuU6J +05/14/2018,Sports_celeb,@MoSalah,@ElShenawy كل سنة وانت طيب يا أعز الناس 🤗 +05/13/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬🇪🇬 https://t.co/KYOs14wMTG +05/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: Amazing @MoSalah! + +A new record for #PL goals in a 38-match season https://t.co/VeMk03Lumg" +05/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: 📸 Mo Salah - #PL record breaker + +👏👏👏 https://t.co/UncKNGp2B3" +05/13/2018,Sports_celeb,@MoSalah,"RT @OfficialFPL: 303pts - SALAH (17/18) +295pts - Suarez (13/14) +284pts - Lampard (09/10) +283pts - Ronaldo (07/08) + +@MoSalah sets a new rec…" +05/13/2018,Sports_celeb,@MoSalah,Golden Boot? Come here to daddy 😂 https://t.co/GasYbIerEm +05/13/2018,Sports_celeb,@MoSalah,@GaryLineker @Cristiano @alanshearer @LuisSuarez9 I told you I would 😀 +05/12/2018,Sports_celeb,@MoSalah,@AhmedLSaadany @nabilelhalfawy لا انا هطلع من تويتر قبل متقولي خده صلحه يا صلاح 🙄😀 +05/12/2018,Sports_celeb,@MoSalah,@AhmedLSaadany @nabilelhalfawy اه بس أكيد الموتسيكل ده مبيمشيش علي الأرض زي الموتسيكلات العادية🤣😘 +05/12/2018,Sports_celeb,@MoSalah,🙄⚽️ https://t.co/obIxK3Al6v +05/11/2018,Sports_celeb,@MoSalah,🕴🕴 https://t.co/mfUrSYPBvv +05/10/2018,Sports_celeb,@MoSalah,Brace! Still time for a hatrick tonight? 🙃 https://t.co/G7xmEzEU66 +05/10/2018,Sports_celeb,@MoSalah,🙋🏻‍♂️🙋🏻‍♂️ https://t.co/oP9H87W9IU +05/05/2018,Sports_celeb,@MoSalah,❤️❤️😍🤣 https://t.co/IGWXwb1t3o +05/04/2018,Sports_celeb,@MoSalah,Happy birthday bro...@OfficialRadja https://t.co/VeBMk6RJ0r +04/30/2018,Sports_celeb,@MoSalah,Very fortunate to be adding another award in my first season playing with this great group of players! Lovren did y… https://t.co/f7ETjdNotg +04/29/2018,Sports_celeb,@MoSalah,انا بس صعبان علّيا الهاشتاج 😢🤣 +04/29/2018,Sports_celeb,@MoSalah,أنا بشكر كل الناس على دعمكم الكبير النهاردة .. في الحقيقة رد الفعل كان غير طبيعي وأسعدني جدًا تفاعلكم.. احنا أخدنا… https://t.co/d02c0VEWnD +04/29/2018,Sports_celeb,@MoSalah,بكل أسف طريقة التعامل فيها إهانة كبيرة جدًا.. كنت أتمنى التعامل يكون أرقى من كدا... +04/27/2018,Sports_celeb,@MoSalah,@Yallakoranow 🙏🏼😉 +04/27/2018,Sports_celeb,@MoSalah,https://t.co/JecshaAU6F +04/27/2018,Sports_celeb,@MoSalah,@Yallakoranow مش باين... +04/26/2018,Sports_celeb,@MoSalah,So proud of how far this project has reached #SayNoToDrugs https://t.co/CDKYtsX4MK +04/25/2018,Sports_celeb,@MoSalah,I wish you all the best and I'm confident you'll be back even stronger than before.@Alex_OxChambo https://t.co/1KRk53ISjH +04/23/2018,Sports_celeb,@MoSalah,شكرًا لكل الناس على الرسائل الجميلة من امبارح.. وسعيد جدًا بكلامكم واهتمامكم المتواصل.. ودائمًا سند لبعض وبأعتذر لو… https://t.co/3lGeVdSFQ5 +04/23/2018,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/NGXrUg7UQi +04/23/2018,Sports_celeb,@MoSalah,@ElNennY ايه ده هو تريزجيه اللي بيكتبلك ولا ايه!!!🙄 +04/23/2018,Sports_celeb,@MoSalah,Truly honoured by this prize which was awarded to me by colleagues - very special day😍😍 https://t.co/7mrFN0lHsP +04/22/2018,Sports_celeb,@MoSalah,Ready for the party...@RamyCol https://t.co/tJ2Bcq4oY4 +04/22/2018,Sports_celeb,@MoSalah,الف سلامه يا نينو ان شاء الله بسيطه 🙏🏼@ElNennY +04/21/2018,Sports_celeb,@MoSalah,@Hegazi لا انا بهزر .هتفضل الغالي دايما يا حجوووو😍😍😘 +04/21/2018,Sports_celeb,@MoSalah,@TantawiPress مفيش فايده والله ... +04/21/2018,Sports_celeb,@MoSalah,Full support...✌🏼 https://t.co/tuGv4lTd2v +04/21/2018,Sports_celeb,@MoSalah,@Hegazi فاول 🙄🙄لا يا أحمد انت كنت بتضرب جامد النهارده مش عارف ليه 🙄😃واللي في القلب في القلب برده انا عارف 😍 +04/21/2018,Sports_celeb,@MoSalah,@Hegazi انت بتضرب في الماتش وتيجي هنا تقولي happy to see my brother ..😄😄brother مين بقا ايدك تقيله اوي 👊🏼 +04/20/2018,Sports_celeb,@MoSalah,RT @RamyCol: #MSCommercialLTD https://t.co/buQHRdGRw7 +04/19/2018,Sports_celeb,@MoSalah,He is always talking 😏 https://t.co/hd5OHA1t8u +04/19/2018,Sports_celeb,@MoSalah,@FilGoal اتاكدو بس ان المشجعه بخير وكله تمام 😃 +04/19/2018,Sports_celeb,@MoSalah,"RT @FilGoal: نجاح محمد صلاح مع ليفربول أصبح جزءًا من نجاح أي مصري، حتى في حفل التخرج 👏 + +حفل تخرج كلية الهندسة لجامعة بورسعيد بـtheme محمد ص…" +04/19/2018,Sports_celeb,@MoSalah,@Trezeguet ارحمنا أبوس ايدك 😃 +04/18/2018,Sports_celeb,@MoSalah,https://t.co/UBzsfXDg5y +04/17/2018,Sports_celeb,@MoSalah,🤝🤝 https://t.co/9hokKfxPNI +04/16/2018,Sports_celeb,@MoSalah,https://t.co/Qg5F2vc8sy +04/15/2018,Sports_celeb,@MoSalah,Come back stronger.💪🏼🙏🏼 https://t.co/mWwHWXTcKx +04/15/2018,Sports_celeb,@MoSalah,Never forgotten. https://t.co/MUjwwMZmCu +04/14/2018,Sports_celeb,@MoSalah,40 ✖️⚽️ https://t.co/zy13g56PeM +04/13/2018,Sports_celeb,@MoSalah,"RT @cnni: EXCLUSIVE: ""We have the emotion. We can do it."" + +Mohamed Salah tells CNN that Liverpool can win the Champions League this season.…" +04/13/2018,Sports_celeb,@MoSalah,RT @ASRomaEN: Respect. 👏 https://t.co/TpKLcgmh02 +04/13/2018,Sports_celeb,@MoSalah,@ASRomaEN 100% +04/13/2018,Sports_celeb,@MoSalah,"RT @premierleague: 🏆 November +🏆 February +🏆 March + +@22mosalah is the 1st player to win @EASPORTSFIFA Player of the Month 3 times in the sam…" +04/13/2018,Sports_celeb,@MoSalah,"RT @LFC: He's done it again… 🏆🏆🏆 + +@22mosalah has become the first-ever player to win the @PremierLeague Player of the Month award three tim…" +04/12/2018,Sports_celeb,@MoSalah,RT @BeckyCNN: Coming soon on @cnni my day in the life of #Liverpool FC superstar and all-around amazing lad @22mosalah. Stay tuned for the… +04/12/2018,Sports_celeb,@MoSalah,Coming soon on CNN... https://t.co/GrMfq5VPs4 +04/11/2018,Sports_celeb,@MoSalah,Wooooooow really ? +04/11/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/jIa6x93LYs +04/10/2018,Sports_celeb,@MoSalah,@Ahmed1Afify منا بدعيلك يجيلك نوم اهوه 🤣😍 +04/10/2018,Sports_celeb,@MoSalah,@Ahmed1Afify يارب يجيلك نوم 🤣😘 +04/09/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/mH7hRlYar2 +04/09/2018,Sports_celeb,@MoSalah,Pepsi ... https://t.co/IQDz7AiagJ +04/06/2018,Sports_celeb,@MoSalah,"RT @Yallakoranow: علشان شبهنا..بقينا احنا عزوته وهو أملنا ❤ + +📸 | مصطفى هشام https://t.co/rHNGvUbTgX" +04/06/2018,Sports_celeb,@MoSalah,RT @SaraNou59280652: @LFC @22mosalah https://t.co/hnXosPmkkj +04/06/2018,Sports_celeb,@MoSalah,https://t.co/ruxZHsw1SW +04/05/2018,Sports_celeb,@MoSalah,RT @samehaboelkhier: إستقبال ملكي اليوم لإبن مصر البار #محمد_صلاح أثناء وصول باص ليڤربول 🇪🇬👏 https://t.co/ZZN32qzdQv +04/05/2018,Sports_celeb,@MoSalah,"RT @AmirTeima: الحمد لله الخط الساخن ""16023"" لعلاج الإدمان شهد خلال الثلاثة أيام الماضية تزايد عدد المكالمات الواردة بنسبة 400 % + +و بدل ما…" +04/02/2018,Sports_celeb,@MoSalah,RT @Menna_Shalaby: ناس كتير عندها توحد وعملوا إنجازات مميزة لأن اختلافهم أصل تميزهم ولأنهم لقوا ناس تشجعهم وتساندهم. لازم نقبل بعض باختلافا… +04/01/2018,Sports_celeb,@MoSalah,🎥🎬🎬 https://t.co/9YHYFC8Qgh +03/31/2018,Sports_celeb,@MoSalah,"Say NO to drugs! +أنت أقوي من المخدرات... https://t.co/6tJYRpBPc0" +03/30/2018,Sports_celeb,@MoSalah,😃 https://t.co/QZaGJvXU8M +03/29/2018,Sports_celeb,@MoSalah,Being able to share these moments with the children was a privilege... the day will live long in the memory... https://t.co/Xhf0KBomfD +03/28/2018,Sports_celeb,@MoSalah,Who says school isn't great fun? https://t.co/fNaimMcJYO +03/25/2018,Sports_celeb,@MoSalah,🇪🇬🇪🇬 https://t.co/WBBMv9Kylq +03/25/2018,Sports_celeb,@MoSalah,😀 https://t.co/dEhZg8LxnE +03/22/2018,Sports_celeb,@MoSalah,@MostaphaM7moud حلوه اوي اوي يا مصطفي 👌🏼😊 +03/22/2018,Sports_celeb,@MoSalah,"RT @MostaphaM7moud: منشن لصلاح ياشباب لان تعبت فيها جدا والله +من كفرالشيخ ل محمد صلاح +منشن كتير ياشباب ❤️ +@22mosalah https://t.co/FQtsHz0…" +03/21/2018,Sports_celeb,@MoSalah,😊⚽️ https://t.co/kmYvAAXCVY +03/18/2018,Sports_celeb,@MoSalah,"RT @Joe_Mc_20: @22mosalah Little best mate was made up with his 4 goals 👑🇪🇬 won't stop singing his song, told his Nursery teachers Mo Salah…" +03/15/2018,Sports_celeb,@MoSalah,"Check out the latest Vodafone Egypt advert featuring yours truly 🙂 + +https://t.co/gDMwFlWd2C" +03/13/2018,Sports_celeb,@MoSalah,The UCL draw can't come soon enough 😁 +03/13/2018,Sports_celeb,@MoSalah,RT @khaledbauomy: اتمني من كل قلبي ان يطلق اسم سمير زاهر علي لقب دوري هذا الموسم ،، +03/13/2018,Sports_celeb,@MoSalah,البقاء لله في وفاة الكابتن سمير زاهر .. ستغيب بجسدك عنا لكن ستظل أعمالك التاريخية تتحدث عنك خالص العزاء للأسرة الكريمة... +03/07/2018,Sports_celeb,@MoSalah,@Trezeguet بغض النظر عن الچاكت ولونه بس النضارة حكاية😊😄 +03/07/2018,Sports_celeb,@MoSalah,@nabilelhalfawy وصل يا قبطان 😊. وشكرا يا كريم ورسمك حلو جدا .ومنتظرين منك المزيد مش شرط رسمه ليا 😄 لكن عامتنا ... +03/04/2018,Sports_celeb,@MoSalah,R.I.P Davide . https://t.co/IGxw3eEtiX +03/03/2018,Sports_celeb,@MoSalah,🔴🔴 https://t.co/otUF85DyA2 +03/03/2018,Sports_celeb,@MoSalah,@ShrokYahya جميله جدا 😍شكرا يا شروق 😊😊 +03/03/2018,Sports_celeb,@MoSalah,RT @OfficialHenedy: ماتنشرها بقى يا صلاح https://t.co/bOtiWqPBXJ +03/01/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/cpxPYIZSjX +02/23/2018,Sports_celeb,@MoSalah,الواد كهربا ده ايه 🤣🤣 +02/22/2018,Sports_celeb,@MoSalah,😄 https://t.co/52mcN5dJjT +02/17/2018,Sports_celeb,@MoSalah,@ElNennyM @AEandV يا رب 🙏🏼🙏🏼😉🤗 +02/17/2018,Sports_celeb,@MoSalah,🎥🎥 https://t.co/FRapip2T9f +02/15/2018,Sports_celeb,@MoSalah,30 x ⚽ = 😁 +02/15/2018,Sports_celeb,@MoSalah,@YasminMahfouz @RaghdaaElSaeed @SalahAbdallah 😏😏😀 +02/15/2018,Sports_celeb,@MoSalah,@RaghdaaElSaeed @SalahAbdallah 🤣😍🙈 +02/15/2018,Sports_celeb,@MoSalah,@SalahAbdallah ازاي بس حضرتك قدوه لينا كلنا ودا شوف ليا ان حضرتك كتبتلي حاجه وسعيد جدا بكلامك 😍وبالنسبه ل علي ربيع ف هو معهوش رقمي الجديد 😀🤣 +02/15/2018,Sports_celeb,@MoSalah,@salmaeldaly @SalahAbdallah بسيطه 😍😍😍😀 +02/15/2018,Sports_celeb,@MoSalah,@SalahAbdallah 😍😍😍 +02/13/2018,Sports_celeb,@MoSalah,@SMBRIDSON @LfcNo10 Looking forward to meeting Oscar soon 😁 +02/13/2018,Sports_celeb,@MoSalah,RT @SMBRIDSON: Oscar took his homework to another level tonight ⚽️❤️ ... He had to use words ending in ‘ng’ he said oh I know king. I know… +02/12/2018,Sports_celeb,@MoSalah,On the way to @Uber_Egypt... https://t.co/tRcI8Fg9BD +02/11/2018,Sports_celeb,@MoSalah,https://t.co/hUFiD4YR2T +02/10/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/oxb7nsBQ7h +02/10/2018,Sports_celeb,@MoSalah,@hazem_fetoh لا انت حد حساس اوي 😊👊🏼 +02/09/2018,Sports_celeb,@MoSalah,@youssefelsayedo @Turki_alalshikh @trikaofficial @ElNennyM @elsaid @AhmedAbuHashima @Alwaleed_Talal… https://t.co/tp93BxtJXb +02/07/2018,Sports_celeb,@MoSalah,@ElNennyM 😊😊 https://t.co/X7WDWalOLn +02/07/2018,Sports_celeb,@MoSalah,@EmanMahfouz13 @ElNennyM انا مقدر ده والله وعارف ان فيه ناس كتير كده بس النيني يُعتبر مصري برده 🤣🤣👊🏼 +02/06/2018,Sports_celeb,@MoSalah,@ElNennyM طب متقول صوتولي من غير اللف ده كله ياعم احنا مصريين وبنفهمها بسرعه🤣😘👊🏼 +02/03/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/XKi2Cwb9zQ +02/03/2018,Sports_celeb,@MoSalah,"RT @goal: Mohamed Salah has been named as Goal's Arab Player of the Year for 2017 🏆 + +https://t.co/xN5bElfY8B https://t.co/RDqT0C6m65" +01/25/2018,Sports_celeb,@MoSalah,أغنيه شعبولا 👌🏼👌🏼 +01/21/2018,Sports_celeb,@MoSalah,@nabilelhalfawy هو انت كده ياقبطان مبتحبش تتكلم علي الحكام 🤣🙈 +01/21/2018,Sports_celeb,@MoSalah,@mido_dida415 ابن مين 🤣 محفظتك ازاي يعني 👊🏼 +01/21/2018,Sports_celeb,@MoSalah,"RT @Mohamed46322862: @22mosalah ❤❤ +3ثانوي فرنساوي +Salah,Roi d'afrique❤❤ https://t.co/oWfRgbi6ZV" +01/21/2018,Sports_celeb,@MoSalah,@Mohamed46322862 انا مش فاهم حاجه لكن افتكر انها حاجه كويسه🙄 +01/20/2018,Sports_celeb,@MoSalah,RT @BBCArabic: محمد صلاح والتراث السوداني في إسبانيا ضمن أفضل صور أفريقيا في أسبوع https://t.co/IxBwJ3Nx5h https://t.co/GQuKqHv2Yn +01/19/2018,Sports_celeb,@MoSalah,⚽️ https://t.co/5Uq0RpboXg +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy @mohammedrashad0 دا حبيبي 😍 +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy 🤣🤣هيكون عندك في اقرب وقت خلاص ☺️ +01/18/2018,Sports_celeb,@MoSalah,@MaiHelmy واحده واحده 😒 https://t.co/MNl5qPQ6c6 +01/14/2018,Sports_celeb,@MoSalah,⚽️🔴 https://t.co/793UXbCdZA +01/12/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/ozf31EQkOm +01/12/2018,Sports_celeb,@MoSalah,@ElNennyM @OfficialHenedy فعلا اقل حاجه 🤣👊🏼 https://t.co/AyavOWjxQP +01/11/2018,Sports_celeb,@MoSalah,@ElNennyM دا حالي دلوقتي يا نينووو والله 🤣 https://t.co/JTey3aQU7R +01/11/2018,Sports_celeb,@MoSalah,فيه اخبار غلط كتييييره نزلت النهارده بس ماشي مش هعلق 👊🏼 +01/09/2018,Sports_celeb,@MoSalah,Really enjoyed playing with you even if it was for such a short time. I wish you all the best in your new adventure… https://t.co/wDheprkqXg +01/08/2018,Sports_celeb,@MoSalah,https://t.co/19BVQ8w4mg +01/07/2018,Sports_celeb,@MoSalah,@nabilelhalfawy حبيبي يا قبطان لا تقلق😍✌🏼 +01/07/2018,Sports_celeb,@MoSalah,@azizelshaf3i الاغنيه جامده جدا جدا مش عارف اقولك ايه 😍لكن اكيد انت شايف رد فعل الناس 😊👍🏻 +01/07/2018,Sports_celeb,@MoSalah,https://t.co/JKcJKt2yLi +01/06/2018,Sports_celeb,@MoSalah,⚽️⚽️ https://t.co/hEdJBbXQWi +01/06/2018,Sports_celeb,@MoSalah,"جاتلي رسائل كثيرًا جدًا من امبارح أحب أشكر كل الناس على الشعور دا.. فعلًا مبسوط جدًا بكلامكم +I would like to say a… https://t.co/c5IPzmwTBf" +01/06/2018,Sports_celeb,@MoSalah,@shereen_Ashraff اهم حاجه انها كانت حلوه وخلاص 🤣 +01/06/2018,Sports_celeb,@MoSalah,"RT @Yallakoranow: ""أنا هكسبها إن شاء الله"".. من هنا بدأ حلم صلاح بأفضل لاعب في أفريقيا + +https://t.co/rlUwNNHYOz + +@22mosalah https://t.co/a5…" +01/05/2018,Sports_celeb,@MoSalah,@MohamedEhab اعتبر نفسك كسبتها ان شاء الله 😍😉 +01/05/2018,Sports_celeb,@MoSalah,One of many dreams came true last night... Thank you everyone! https://t.co/2rrpLAKwNf +01/03/2018,Sports_celeb,@MoSalah,@emadmeteb90plus @FhadOtaibi فهد مش هوصيك دا الغالي 😍شكرا الرسالة وصلت . +01/03/2018,Sports_celeb,@MoSalah,@ElNennyM لا متدخلش تجبهم .. اهم حاجه انهم علي مقاسك🤣😉 +01/01/2018,Sports_celeb,@MoSalah,🎮🎮 https://t.co/98Gi5uSZWi +01/01/2018,Sports_celeb,@MoSalah,@ElNennyM انت بتقول ايه انت ليه بتكتب التويته ناقصه وعايزنا نكملها 😀قول الجمله كلها انا متاكد أن فيه كلام ناقص في آخر تويته دي .👊🏼 +01/01/2018,Sports_celeb,@MoSalah,@ElNennyM انت ايه جايب الكلام من كتاب كيف تتعلم اللغة العربية🤣🤣 +12/31/2017,Sports_celeb,@MoSalah,@ahmedtefa12 ادخل يا عم .. happy new year 👊🏼 +12/31/2017,Sports_celeb,@MoSalah,@Nsoo7y خلاص منتا قولت احلي لحظه بتسأل ليه بقا 🤣🤣 +12/31/2017,Sports_celeb,@MoSalah,"Can't really complain about a great 2017, but very much looking forward to 2018... https://t.co/1ke9zRAK1U" +12/28/2017,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/QJQGEPO4CP +12/24/2017,Sports_celeb,@MoSalah,RT @22mosalah: @adelkoraiem 🤣🤣🤣 +12/24/2017,Sports_celeb,@MoSalah,RT @adelkoraiem: معلومة صغيرة.. نسبة تصويت الجمهور في جائزة أفضل لاعب في أفريقيا لا تتعدى ال7% .يعني ما يساوي تصويت 2 من مدربي وكباتن المنت… +12/24/2017,Sports_celeb,@MoSalah,@adelkoraiem 🤣🤣🤣 +12/24/2017,Sports_celeb,@MoSalah,@abdalaziz83 مبسوط والله جدا برد فعل الناس واهتمامهم الكبير ده . لكن نسبه الجمهور ٥ ٪ يعني كده ضمنا اول ٥٪ من تصويت الجايزه 😄😘👊🏼 +12/23/2017,Sports_celeb,@MoSalah,"RT @OmarRaafat77: @22mosalah +في ناس عملت اغنية ليك اتمني انك تشوفها +https://t.co/g3JbthAv3b" +12/23/2017,Sports_celeb,@MoSalah,RT @LFC_Arabic: يا لها من لوحة رائعة @22mosalah 😍👌 https://t.co/WGwoCXCfad +12/21/2017,Sports_celeb,@MoSalah,@OfficialHenedy 🤣🤣🤣 https://t.co/lbBK3Vhuxh +12/20/2017,Sports_celeb,@MoSalah,@moheb_rofail @nabilelhalfawy يبقا ربنا هيكرمك اخر كرم🤣🤝 +12/20/2017,Sports_celeb,@MoSalah,https://t.co/hkTRcU6IaH +12/18/2017,Sports_celeb,@MoSalah,@Tahaahmed111 @Hegazi لا انا مش سهران دا فرق توقيت🤝🤝😀 +12/18/2017,Sports_celeb,@MoSalah,@Hegazi مبروك يا حجو🤛🏼 https://t.co/R7tjnr1C1V +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC: The Mohamed Salah Story 📖 + +Allow @22mosalah to guide you through his career: https://t.co/ZKJkt93yaj + +Thread 👇 https://t.co/zD5gj…" +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC_Arabic: قصة محمد صلاح 📖 + +اسمحوا لـ @22mosalah أن يأخذكم في جولة في مسيرته: https://t.co/yHwe376a4v + +السلسة 👇 https://t.co/tIeInPQH…" +12/18/2017,Sports_celeb,@MoSalah,"RT @LFC: Read the @22mosalah story in his own words, as he discusses the moments that have enabled him to become the person and player he i…" +12/18/2017,Sports_celeb,@MoSalah,@Samehahmedd96 @nabilelhalfawy اهم حاجه انك بتفرح في الاخر 😀🙅🏼‍♂️ +12/18/2017,Sports_celeb,@MoSalah,@IbrahimsaidAdam @trikaofficial مفتكرش والله أني كنت هزعل 🤣حبيبي يا هيما ✌🏼 +12/18/2017,Sports_celeb,@MoSalah,@nabilelhalfawy لا خلاص يا قبطان نكتفي بالي قالوه😀 +12/17/2017,Sports_celeb,@MoSalah,@nabilelhalfawy ممكن اقول انا يا قبطان 🤣 +12/16/2017,Sports_celeb,@MoSalah,RT @AAbdoallah: الله على الصورة ⁦♥️⁩ https://t.co/wh0DJGK4M9 +12/15/2017,Sports_celeb,@MoSalah,😀😀 https://t.co/QxMUXVCGvo +12/14/2017,Sports_celeb,@MoSalah,أتمنى من الجميع مساندة صالح جمعة .. فهو لاعب كبير سيفيد بكل تأكيد الكرة المصرية في حالة الوقوف بجواره وعدم التأثر ب… https://t.co/ooCanuyZ5a +12/14/2017,Sports_celeb,@MoSalah,"RT @Pele: Parabéns, @22MoSalah! It's been an incredible year! Keep going and I look forward to seeing you play on the greatest stage next y…" +12/12/2017,Sports_celeb,@MoSalah,"RT @didierdrogba: Well deserved my Brother, so proud of you!!!!!! Legend in the making🙏🏾 +The best is yet to come ❤️ https://t.co/YtEIepltwp" +12/12/2017,Sports_celeb,@MoSalah,😀😀 https://t.co/koN9QJ80q8 +12/12/2017,Sports_celeb,@MoSalah,@NaguibSawiris 🤣🤣🤣 +12/11/2017,Sports_celeb,@MoSalah,"Very proud to have won this prestigious award for best African player, and joining the ranks of many great players… https://t.co/IoWUFxZExD" +12/11/2017,Sports_celeb,@MoSalah,أودّ أن أشكر كل الناس اللي صوتت لي وساهمت في تحقيق الجايزة. +12/11/2017,Sports_celeb,@MoSalah,Always been impressed by this man's work @KhaledElNabawy https://t.co/k3MIKUaugf +12/11/2017,Sports_celeb,@MoSalah,"@mariam_metwally @MoElshorbagy @noursherbini +Good seeing you guys ! Best of luck in your competition! https://t.co/7h5PJ7ZXZO" +12/07/2017,Sports_celeb,@MoSalah,⚽️⚽️⚽️ https://t.co/kgVN6KFVdj +12/05/2017,Sports_celeb,@MoSalah,ألف مبروك للبطلة المصرية رحاب أحمد على ذهبية العالم.. https://t.co/ZqOTSEa0C3 +12/05/2017,Sports_celeb,@MoSalah,@22moosalah انت مين واللي اللي جابك هنا 🤛🏼😀 https://t.co/3J80GcdjFn +07/01/2018,Sports_celeb,@keinishikori,明日の試合日本ガンバレ!!🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +07/01/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: \開幕まであと5日❗️/ +錦織圭選手@keinishikori のそばにはドライEXがいます✨ + +優れた吸汗速乾機能で、汗を気にせずプレーできる優れ物。 + +世界に挑戦する #錦織圭 選手をハッシュタグ #汗っていこう で応援しよう❗️ + +錦織選手着…" +07/01/2018,Sports_celeb,@keinishikori,"RT @miyukato1121: 伊澤会!🇬🇧 +今年もありがとうございました❤️❤️❤️ +1年の楽しみになってます✨✌️ https://t.co/7iOcdod8Qa" +07/01/2018,Sports_celeb,@keinishikori,"RT @nikejapan: 初心に立ち返った #錦織圭 の、10度目の挑戦。 +#justdoit @keinishikori" +06/30/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: 本日よりJAGUAR Land Rover Studio 銀座がオープン。今年70周年を迎えたランドローバーにウィンブルドンを目前に控えた #錦織圭 選手@keinishikori からメッセージをいただきました!#LandRover70Years… +06/29/2018,Sports_celeb,@keinishikori,"RT @Wimbledon: Former World No.4 @keinishikori continues his comeback season.... + +Welcome back to the grass, Kei. + +#Wimbledon https://t.co/…" +06/28/2018,Sports_celeb,@keinishikori,🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +06/28/2018,Sports_celeb,@keinishikori,"To see match: +https://t.co/3jvYFPZny9" +06/27/2018,Sports_celeb,@keinishikori,"RT @mchangtennis: || Talk with your racket, play with your heart || Catch @keinishikori playing in a one of a kind all pro tennis exhibitio…" +06/26/2018,Sports_celeb,@keinishikori,"RT @doublefault28: This is my favorite GIF. And I think ,my best GIF. ""Air Kei"" I hope and believe he will come back strong! Need to belie…" +06/25/2018,Sports_celeb,@keinishikori,"RT @abnamrowtt: Kei Nishikori debuteert in ABN AMRO World Tennis Tournament 2019! #abnamrowtt #atpworldtour #rotterdamahoy #2019 +@keinishik…" +06/25/2018,Sports_celeb,@keinishikori,Hello London! Excited to be back at @Wimbledon! +06/25/2018,Sports_celeb,@keinishikori,Visit to @vangoghmuseum this morning https://t.co/NO5dWamBpo +06/24/2018,Sports_celeb,@keinishikori,GGGGOOOAAAALLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 #Honda +06/24/2018,Sports_celeb,@keinishikori,GGGGGGOOAAAAALLLLLLLLL 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 +06/24/2018,Sports_celeb,@keinishikori,Let’s go 🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵🇯🇵 https://t.co/hXRSlxOi5v +06/24/2018,Sports_celeb,@keinishikori,Hello Amsterdam! https://t.co/RZ29kVjxrv +06/24/2018,Sports_celeb,@keinishikori,@annefrankhouse in Amsterdam https://t.co/KoskcwerWQ +06/24/2018,Sports_celeb,@keinishikori,Canal ride in Amsterdam! Amazing https://t.co/ohQrjFi89E +06/23/2018,Sports_celeb,@keinishikori,Last practice at @GERRYWEBERWORLD today. Even after the loss I stayed here. Good practice in last days with… https://t.co/uXGH994u0D +06/22/2018,Sports_celeb,@keinishikori,https://t.co/vvecpqwCqt https://t.co/vvecpqwCqt +06/18/2018,Sports_celeb,@keinishikori,RT @doublefault28: Return! @keinishikori (🎥@TennisTV ) https://t.co/JPb4B9opDT +06/16/2018,Sports_celeb,@keinishikori,"今週からのワールドカップ日本チーム応援してます! +みなさんも一緒に応援しましょう📣🇯🇵 🇯🇵" +06/16/2018,Sports_celeb,@keinishikori,@UniqloUSA Has he ever played tennis with Kei Nishikori?? 🤔😄😉🎾⛳️ +06/15/2018,Sports_celeb,@keinishikori,Hello @GERRYWEBERWORLD! Landed this morning. Great to be in 🇩🇪! +06/13/2018,Sports_celeb,@keinishikori,👍👍👍 https://t.co/aiRthckDEq +06/05/2018,Sports_celeb,@keinishikori,A big thanks to @JaguarFrance for the amazing support again! It really helps myself and #TeamKei. Thank you! 👍👊. A… https://t.co/tJizYWrwsp +06/05/2018,Sports_celeb,@keinishikori,Au revoir 🇫🇷 🗼. Thank you for the support again. And thank you @PDG_Paris! My home in Paris. See you in the fall. +06/01/2018,Sports_celeb,@keinishikori,Only at @rolandgarros! 🎨 👍❤️ https://t.co/5foHpRyE9g +05/30/2018,Sports_celeb,@keinishikori,Very tough match today against Benoit. Very happy with the win. Now back at the @PDG_Paris to relax. Best service… https://t.co/VXLLaEd3EQ +05/29/2018,Sports_celeb,@keinishikori,"RT @lixil_official: ✨Web限定ムービー公開中✨ +錦織選手を熱く応援しているLIXIL社員が、錦織選手の拠点フロリダまで追いかけ、錦織選手をイメージした『にしこリクシルくん』を手渡すまでのロードムービー🎥 +果たして錦織選手の反応は・・・⁉️ +https://…" +05/28/2018,Sports_celeb,@keinishikori,My 🏡 in Paris 🇫🇷! Always so comfortable! Of to 💤 🛏 now for early practice tomorrow 🎾 @rolandgarros. Hoping no 🌧.… https://t.co/sIJfAb3WDt +05/27/2018,Sports_celeb,@keinishikori,"RT @josemorgado: Uniqlo still doing a great job with @keinishikori [getty] + +#RG18 https://t.co/yqJwFGZbcm" +05/25/2018,Sports_celeb,@keinishikori,RT @nikejapan: その目が追うのは、まだ見たことのない景色。@keinishikori #justdoit +05/25/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: Former World No. 4 @keinishikori, a quarter-finalist in 2015 & 2017, is in the loaded bottom quarter & will challenge Max…" +05/22/2018,Sports_celeb,@keinishikori,First hit at @rolandgarros 🇫🇷 https://t.co/uLBRtWCbow https://t.co/lw2Bncw032 +05/21/2018,Sports_celeb,@keinishikori,Bonjour 🇫🇷 +05/21/2018,Sports_celeb,@keinishikori,🇮🇹🎾🛏🚿🍳🚶‍♀️🚕🛫💺🛬🚕🗼🏠🥐 +05/21/2018,Sports_celeb,@keinishikori,https://t.co/AN0dyJGhyV +05/13/2018,Sports_celeb,@keinishikori,👋👋👋👋👋👋 https://t.co/4lVofbOzhf +05/13/2018,Sports_celeb,@keinishikori,Congrats! 👍👊👏 https://t.co/dIhlUr6gGs +05/12/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: The draw is set for the 2018 @InteBNLdItalia, with an assist by @keinishikori 😉🇮🇹 + +Who do you think will take home this y…" +05/11/2018,Sports_celeb,@keinishikori,Good practice with @stanwawrinka this morning at @InteBNLdItalia https://t.co/pOKE0TWvdE +05/11/2018,Sports_celeb,@keinishikori,"RT @InteBNLdItalia: 🙌 Put your hands up for one of Rome's favorite idols: @keinishikori! 🙌 +The 🇯🇵 is ready to practise! + +#ibi18 #tennis ht…" +05/10/2018,Sports_celeb,@keinishikori,Hello Rome! @InteBNLdItalia @ATPWorldTour https://t.co/Wv9PNgfSoY https://t.co/caEtzhBupy +05/09/2018,Sports_celeb,@keinishikori,RT @MutuaMadridOpen: Done but not dusted. @keinishikori keeps training in Madrid. #MMOPEN https://t.co/l1TmO3LlwS +05/04/2018,Sports_celeb,@keinishikori,"RT @MutuaMadridOpen: What a serve by @keinishikori in this morning’s training session! 😍 +The 🇯🇵 looks to be firing on all cylinders !🔥 +#Caj…" +05/02/2018,Sports_celeb,@keinishikori,Hello @MutuaMadridOpen! Great to be back here +05/02/2018,Sports_celeb,@keinishikori,Good practice with @karenkhachanov today https://t.co/vB7f3zRNFj +04/30/2018,Sports_celeb,@keinishikori,Posted a fun question on https://t.co/Wv9PNgfSoY. Let’s see if you guess..... https://t.co/i5nsUEW8Bc +04/30/2018,Sports_celeb,@keinishikori,The Uniqlo building in Barcelona is amazing! Right in the center of town https://t.co/TmHWsWeeBq +04/30/2018,Sports_celeb,@keinishikori,Helllllooo Uniqlo! This Barcelona store is amazing. First time in this store for me. @UNIQLO_JP https://t.co/rCafF11XB2 +04/29/2018,Sports_celeb,@keinishikori,RT @UniqloUSA: Last day to help us support @charitywater's mission to provide clean water to people in need! Donate at checkout today when… +04/22/2018,Sports_celeb,@keinishikori,Thank you @ROLEXMCMASTERS for a great week. https://t.co/kU3YefdPLs +04/22/2018,Sports_celeb,@keinishikori,👍 https://t.co/MDLMzsXOIf +04/22/2018,Sports_celeb,@keinishikori,Could not win today but happy with the matches I played here. Thank you @ROLEXMCMASTERS for a great week.… https://t.co/eXp9w62JcR +04/21/2018,Sports_celeb,@keinishikori,RT @doublefault28: #GoKei https://t.co/IgPoBDyPZb +04/21/2018,Sports_celeb,@keinishikori,Sliding into Sunday!!! Amazing battle today. Happy with the win. https://t.co/Ei6FIUUjQS +04/20/2018,Sports_celeb,@keinishikori,https://t.co/ru7uZaBRyR +04/20/2018,Sports_celeb,@keinishikori,RT @NishikoriGIF: SF!!!😀 https://t.co/FYbIdfTYlk +04/19/2018,Sports_celeb,@keinishikori,RT @doublefault28: This backhand!!🔥 @keinishikori (🎥@TennisTV ) https://t.co/x26pyG85yP +04/19/2018,Sports_celeb,@keinishikori,Very happy with the win today at the @ROLEXMCMASTERS 👍💪🎾 https://t.co/gcNybs1PNk +04/16/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Great reaction,@keinishikori 😂👍(🎥@TennisTV ) https://t.co/dXJz7pXcLg" +04/11/2018,Sports_celeb,@keinishikori,Very nice weather here 🤔🙀🌧 https://t.co/ziKkKOgA5N +04/11/2018,Sports_celeb,@keinishikori,Spending morning with @JaguarJPN @Jaguar https://t.co/Xcb35pLD4j +04/11/2018,Sports_celeb,@keinishikori,Good morning 🇫🇷. Spending the morning in Nice with @Jaguar & @JaguarJPN to talk about the new “baby” E-Pace and th… https://t.co/D28D8j4Ged +04/10/2018,Sports_celeb,@keinishikori,"RT @UniqloUSA: Welcome to our newest location, #UniqloSouthcenter! Let us know which city you'd like to see us in next. https://t.co/FWaCbc…" +04/05/2018,Sports_celeb,@keinishikori,@robbieohashi @Lindonk @IMGAcademy @ATPWorldTour @IMGATennis 🤔🤔🤔🤔🤔 +04/05/2018,Sports_celeb,@keinishikori,Early practice today #WhereIsNakao #ClayNishikori #TeamKei https://t.co/XLrxstOAM5 +04/04/2018,Sports_celeb,@keinishikori,Playing sets this morning with @BellucciOficial https://t.co/mcJCtd0BQg +04/03/2018,Sports_celeb,@keinishikori,Grinding on the clay with @MichaelMmoh this morning https://t.co/hiHuNEhUvB +04/03/2018,Sports_celeb,@keinishikori,"RT @IMGAcademy: A holiday doesn't mean a day off for @keinishikori! + +#IMGFam #TrainWhereITrain @IMGATennis 📹: @Justin_Russ https://t.co/7g…" +04/01/2018,Sports_celeb,@keinishikori,"RT @JaguarJPN: 【XF SPORTBRAKE × KEI NISHIKORI】 +Playへの情熱を詰め込んで、 +パフォーマンスの頂点に挑む。@KeiNishikori +XF SPORTBRAKE × KEI NISHIKORIの特設ページ > https://t.…" +04/01/2018,Sports_celeb,@keinishikori,"こんにちは!今はブラテントンにいます。 +ヨーロッパのクレーシーズンに向けて準備しています。応援メッセージありがとうございます!" +03/31/2018,Sports_celeb,@keinishikori,Solid practice with @TKokkinakis today. Btw...see those ☁️ 🌧 🙀 https://t.co/0Pjcr3tIzT +03/31/2018,Sports_celeb,@keinishikori,Really nice meeting all these kids after my practice at IMG Academy: https://t.co/pZrF7GCCTb https://t.co/tpsrSOw2OS +03/30/2018,Sports_celeb,@keinishikori,Working hard at @IMGAcademy with Miomir today https://t.co/axl3iaDQOQ +03/24/2018,Sports_celeb,@keinishikori,"RT @TennisTV: Kei-O 💪 + +@keinishikori defeats Millman 7-6(4) 4-6 6-3 in Miami - and will face either Del Potro or Haase in the third round..…" +03/24/2018,Sports_celeb,@keinishikori,💪💪💪💪🤛🤛🤛🤛👊👊👊👊 https://t.co/iVvGBJ0Nni +03/24/2018,Sports_celeb,@keinishikori,RT @doublefault28: Classic backhand down the line from @keinishikori!! (🎥@TennisTV ) https://t.co/R60pKw1bAm +03/24/2018,Sports_celeb,@keinishikori,RT @NishikoriGIF: 初戦突破おめでとうございます( ´ ▽ ` )ノ https://t.co/w1SkDhcf3N +03/22/2018,Sports_celeb,@keinishikori,Great night last night at @JWMM_Miami with @DavidFerrer87 https://t.co/mvVrhJIiNE +03/22/2018,Sports_celeb,@keinishikori,RT @outside_theball: Cute alert! Kei Nishikori stops to take a picture with young fans ahead of the #MatchPointPassion18 party! 🎾🎉 https://… +03/22/2018,Sports_celeb,@keinishikori,"RT @TennisTV: Back in Miami 😎 + +@keinishikori putting in the work on the practice courts... https://t.co/kCxb4lTL4V" +03/22/2018,Sports_celeb,@keinishikori,@JWMM_Miami Thank you for a great night! https://t.co/ZTeFu5VshY +03/20/2018,Sports_celeb,@keinishikori,🤦‍♂️ https://t.co/O7Pw6aRLh4 +03/19/2018,Sports_celeb,@keinishikori,@MiamiOpen @BNPPARIBASOPEN Love being here @MiamiOpen +03/19/2018,Sports_celeb,@keinishikori,"RT @UniqloUSA: Gear up and watch Kei Nishikori bring the heat to the #MiamiOpen, starting today. https://t.co/DwUTwP9WEB 🎾 @keinishikori #U…" +03/19/2018,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: グローバルブランドアンバサダーの錦織圭選手(@keinishikori)が3月19日(月)から開幕のマイアミ・オープンに出場! +2年ぶり、2度目の決勝進出を目指します。応援宜しくお願いします! +着用予定のウェアはこちら +https://t.co/S…" +03/13/2018,Sports_celeb,@keinishikori,RT @JaguarUK: Created to indulge your passion for performance. #Jaguar #XE #Project8 https://t.co/LG8spCAKsf +03/13/2018,Sports_celeb,@keinishikori,RT @OrigCupNoodles: Want to win a VIP trip to Noods Noods Noods in Oakland for all the noodle goodness? Enter here: https://t.co/070RTHBX8U… +03/13/2018,Sports_celeb,@keinishikori,RT @NickBollettieri: Great to be back at the beautiful @BNPPARIBASOPEN! #BNPPO18 https://t.co/3atEvAI8tk +03/12/2018,Sports_celeb,@keinishikori,Back home in Florida. Nice to sleep in my own house. Thanks for all the messages. Time to rest and get ready for… https://t.co/vXSuJJTpFk +03/11/2018,Sports_celeb,@keinishikori,Unfortunate I have to pull out of the tournament today. I have been sick for over a week and tried everything I co… https://t.co/qFnN0UwD4d +03/11/2018,Sports_celeb,@keinishikori,"先週のメキシコから風邪が治らなくて今週の試合は残念ながら断念することにしました。 +好きな大会のひとつなので出れないのは悔しいですが早く治して次のマイアミに備えたいと思います。" +02/25/2018,Sports_celeb,@keinishikori,RT @ATPWorldTour_ES: 🤗🔥 @keinishikori ajusta detalles en el @AbiertoTelcel para disputar su primer ATP 500 desde el @CitiOpen de Washington… +02/24/2018,Sports_celeb,@keinishikori,@AbiertoTelcel https://t.co/Wv9PNgfSoY https://t.co/9g6mFeGaLa +02/24/2018,Sports_celeb,@keinishikori,RT @AbiertoTelcel: ありがとうございました @keinishikori! https://t.co/uJ65ub0iI9 +02/24/2018,Sports_celeb,@keinishikori,RT @weye1: 錦織選手の次の大会は月曜日から始まるアカプルコ。活躍が楽しみですね!そして「錦織圭選手、始動。キャンペーン」は明日の日曜日が締め切りです。賞品は“錦織圭、始動。クリアファイル”で、50名に抽選でプレゼントします!是非応募ください!>>>https://t.… +02/24/2018,Sports_celeb,@keinishikori,@Jaguar I am one of them 💪👍 +02/23/2018,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: ¡Bienvenido a México, @keinishikori🇯🇵! ☺️ メキシコへようこそ! + +#AMT2018 #CelebratingTennis https://t.co/MrBkW8ZpdK" +02/23/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: ジャガーがコンパクトなSUV「E―ペイス」を発売:朝日新聞デジタル #BabyJaguar https://t.co/2RJCWsabGf +02/23/2018,Sports_celeb,@keinishikori,"RT @ATPWorldTour: After losing in ATP Challenger Tour qualifying in his previous event, Kei Nishikori didn't want to play at 2008 Delray Be…" +02/22/2018,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: To all Japanese followers, here it goes again: 頑張れ、君ならできるよ🎌!@keinishikori https://t.co/iqYjHbBRXn" +02/21/2018,Sports_celeb,@keinishikori,"Look what arrived in Bradenton today??? Thank you @Nike @Jumpman23 @jtimberlake!!!! +#SBLLII Very Cool! https://t.co/lM6wNzUS7W" +02/19/2018,Sports_celeb,@keinishikori,RT @Tedimond_Art: Congratulations on your comeback tournament @keinishikori !! Tough semis this week in NY. Enjoy your “Dimond” player port… +02/19/2018,Sports_celeb,@keinishikori,Thank you @NewYorkOpen and @joshrip for the hospitality. Look forward to coming back to NYC in the years to come. H… https://t.co/s5gE0ddbbU +02/16/2018,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: / +祝!ベスト8✨ +\ + +錦織選手が、ニューヨーク・オープンでベスト8進出🎾 +この勢いで決勝まで頑張ってください✺◟(∗❛ัᴗ❛ั∗)◞✺‼ + +@keinishikori +#GoKei" +02/15/2018,Sports_celeb,@keinishikori,@NewYorkOpen https://t.co/CRFlbP3vfv +02/15/2018,Sports_celeb,@keinishikori,My strong flexible coaching team 🤔🤣 https://t.co/D7TKSOfGgf +02/15/2018,Sports_celeb,@keinishikori,https://t.co/aMAbdGvgx1 +02/15/2018,Sports_celeb,@keinishikori,RT @doublefault28: 👏(🎥@TennisTV ) https://t.co/tv9UbW3mwP +02/15/2018,Sports_celeb,@keinishikori,"RT @NTTPR: 先ほど、錦織選手(@keinishikori )はエフゲニー・ドンスコイ選手を @newyorktennis 2回戦でもストレート勝ちで終え、いよいよ準々決勝に進みます。この勢いで次も頑張ってください! +Kei Nishikori won the seco…" +02/14/2018,Sports_celeb,@keinishikori,RT @doublefault28: 💪 https://t.co/fXA178oAlP +02/14/2018,Sports_celeb,@keinishikori,RT @doublefault28: 🔥(🎥@TennisTV ) https://t.co/AakHsTOQBe +02/14/2018,Sports_celeb,@keinishikori,Couldn’t see the replay 🙂 https://t.co/faWqnUSiRN +02/14/2018,Sports_celeb,@keinishikori,"RT @TennisTV: 💥💥💥 @keinishikori + +#NYOpen + +https://t.co/KCjybaxhj3" +02/14/2018,Sports_celeb,@keinishikori,Great to be back on the @ATPWorldTour https://t.co/cBRksHkWPZ +02/14/2018,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: \錦織選手、まもなく初戦開始✊🏻/ +ニューヨーク・オープン錦織選手の初戦がこの後9:30~始まります🎾 +ツアー復帰に向けて、インタビューをしてきました✨ + +ケイは負けない(ง `ω´)ง‼ +インタビュー動画、公開中📽⇒https://…" +02/13/2018,Sports_celeb,@keinishikori,Just finished my morning practice. Hope to see you tonight for the match at the @NewYorkOpen https://t.co/IoE4k2Cyc7 +02/12/2018,Sports_celeb,@keinishikori,RT @NewYorkOpen: Order of play Tuesday 13th February. @keinishikori takes on @Noahrubin33 in our featured match! #NYOpen https://t.co/EdZKV… +02/12/2018,Sports_celeb,@keinishikori,RT @NewYorkOpen: In his first match back on the ATP World Tour @keinishikori takes on the hometown hero @Noahrubin33 on Tuesday night Febru… +02/11/2018,Sports_celeb,@keinishikori,🚿🚿🚿🚿😀😃😄🤣https://t.co/ddLMYFoHkk +02/11/2018,Sports_celeb,@keinishikori,"ニューヨークオープンの1回戦は火曜日になりました。 +応援よろしくお願いします!@NewYorkOpen" +02/10/2018,Sports_celeb,@keinishikori,"and its....LIVE, FROM NYC.....https://t.co/D07jAd0fV7 +:):)" +02/10/2018,Sports_celeb,@keinishikori,Hello @NewYorkOpen!!!! https://t.co/ynwrcxc5K7 +02/08/2018,Sports_celeb,@keinishikori,"RT @JaguarJPN: 【XF SPORTBRAKE × KEI NISHIKORI】 +世界中のコートで観客を魅了している @KeiNishikori 選手と同様に、XFスポーツブレイクの走りにはドライバーを魅惑するパフォーマンスがある。 +あなたは、ジャガーとPLAYする…" +02/08/2018,Sports_celeb,@keinishikori,@Lindonk @robbieohashi 🍣 🥢 🍚 +02/08/2018,Sports_celeb,@keinishikori,RT @Lindonk: Good Japanese dinner! Thank you Sugi!!! https://t.co/6FgBYvD8KN +02/08/2018,Sports_celeb,@keinishikori,RT @NTTPR: 中期経営戦略に関する具体的な取り組みをご紹介する「Moving Forward Together」ページを、NTT公式HP内に開設してから約1年が経過しました。ここでは、常に前に進んでいくNTTグループの最新の取り組みを、事例とともにわかりやすく紹介してい… +02/05/2018,Sports_celeb,@keinishikori,"RT @netdash: Kei Nishikori has an exclusive photo! Check it out by joining the tight-knit circle of superfans on his App. +https://t.co/l12N…" +02/05/2018,Sports_celeb,@keinishikori,High five!!! ✋ 🙌 https://t.co/5xDxHPp6Or +02/05/2018,Sports_celeb,@keinishikori,Gracias https://t.co/YpapQtBS27 +02/05/2018,Sports_celeb,@keinishikori,👍 https://t.co/DlnQGz0WJs +02/05/2018,Sports_celeb,@keinishikori,Those shoes! @Nike @Jumpman23 👍👍👍👍👍👍 #SBLII https://t.co/koJ9JyET3A +02/04/2018,Sports_celeb,@keinishikori,RT @doublefault28: Kei's FH winner on the SP (🎥@ATPChallenger ) https://t.co/Ltnhcb41c0 +02/04/2018,Sports_celeb,@keinishikori,Back at @SRQAirport! Good to be home +02/04/2018,Sports_celeb,@keinishikori,RT @UniqloUSA: Go big or go home. Step up your game by training like your favorite athletes in #UniqloSport. 🏆 https://t.co/W5JiBxZNs4 #Uni… +02/04/2018,Sports_celeb,@keinishikori,Thank you @NewYorkOpen. Can’t wait to come to NYC next week. Hope to see many of you at the matches. https://t.co/oufIdnKRWr +02/04/2018,Sports_celeb,@keinishikori,Good week! https://t.co/uLBRtWCbow https://t.co/XPkdQM38Dz +02/04/2018,Sports_celeb,@keinishikori,"みなさん応援ありがとうございます!! +この優勝で少し自信がつきました。手首も問題なくできたのも良かったです。 +これからも頑張ります!" +02/04/2018,Sports_celeb,@keinishikori,Thank you Dallas! Enjoyed playing here. https://t.co/ayivIZDr7x +02/04/2018,Sports_celeb,@keinishikori,👍 https://t.co/hR7yLYLDWi +02/04/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Bravo, Kei!!!! 👏👏👏 https://t.co/8WWHWdnmp4" +02/04/2018,Sports_celeb,@keinishikori,RT @jmeistennis: Kei Nishikori is the champion in Dallas. A title for the 🇯🇵 in his second tournament back. https://t.co/jGvfZfMw9M +02/04/2018,Sports_celeb,@keinishikori,"RT @NTTPR: \祝・優勝!錦織選手/ +Congrats, @keinishikori ! +錦織選手が先程の決勝戦を制し、見事ダラスチャレンジャー2018の覇者となりました! +毎日試合を重ねながら勇気をくれた錦織選手、ありがとうございました。次戦も錦織選手の攻めていくプレ…" +02/04/2018,Sports_celeb,@keinishikori,Just a quick message to say thank you for all the messages. I played these two challenger weeks to get matches and… https://t.co/nSqrlXMlLh +02/03/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: Final 🔜. @keinishikori reflects on his SF win at the @TennisChampsDal. https://t.co/K2mo2nSpSO +02/03/2018,Sports_celeb,@keinishikori,RT @doublefault28: The best point of the match from Kei! (🎥@ATPChallenger ) https://t.co/VDcIhsfI38 +02/03/2018,Sports_celeb,@keinishikori,"RT @NTTPR: 錦織選手、いよいよ決勝へ! +復帰2戦目となるダラス・チャレンジャー。着々とコマを進め、明日の決勝に挑みます。錦織選手らしいプレーで、ダラスチャレンジャーを制してほしいですね! https://t.co/yxTdPYFafr" +02/03/2018,Sports_celeb,@keinishikori,RT @NTTPR: 現在開催されているダラス・チャレンジャーにおいて、日本時間の2日朝、錦織選手はドイツのDominik KOEPFER選手に勝利し、ついにベスト4となりました。次の試合は、日本時間の明日3日(土) 朝8:00以降に行われる、台湾のJason JUNG選手との… +02/03/2018,Sports_celeb,@keinishikori,RT @JaguarJPN: https://t.co/ej1pAdQ9og +02/02/2018,Sports_celeb,@keinishikori,https://t.co/tGOQAmO17Z +02/02/2018,Sports_celeb,@keinishikori,#GoJapan #DavisCup +02/02/2018,Sports_celeb,@keinishikori,https://t.co/4UXhELTVMX +02/02/2018,Sports_celeb,@keinishikori,Nice video from matchpoint. Very happy with another win. All these matches help me raise my level step by step. On… https://t.co/Cbzn6mD02p +02/01/2018,Sports_celeb,@keinishikori,It was a really tough match last night. I started a bit slow. I started coming back and playing much better in the… https://t.co/XbSU47XgSG +02/01/2018,Sports_celeb,@keinishikori,Congrats @TennisChampsDal! https://t.co/wV4Mw5CeHp +02/01/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: They love him in Dallas! @keinishikori gives back to the sold out crowd after his 2R win @TennisChampsDal. https://t.co/… +02/01/2018,Sports_celeb,@keinishikori,"RT @ATPChallenger: Good to have you back, @keinishikori! 😉 https://t.co/e7p1amgTqo" +01/31/2018,Sports_celeb,@keinishikori,See you tomorrow night! https://t.co/CrO98fuVKQ +01/30/2018,Sports_celeb,@keinishikori,It’s good to be back on court!! 👍 https://t.co/k44AMaksYs +01/30/2018,Sports_celeb,@keinishikori,Fun experience here today in Dallas. Lots of Japanese fans. Hope to see everyone on Wednesday for my next match. +01/30/2018,Sports_celeb,@keinishikori,"RT @doublefault28: 6-3, 6-3 !!! 👏 https://t.co/HzL4xbMke7" +01/30/2018,Sports_celeb,@keinishikori,"RT @doublefault28: Kei:""Discussing after the match. Happy with first win!"" (📷https://t.co/RXFiKrVgVU) #GoKei https://t.co/t4OnFxPiAY" +01/30/2018,Sports_celeb,@keinishikori,RT @ATPChallenger: First win of 2018! @keinishikori gets revenge over Dennis Novikov 63 63 to open his @TennisChampsDal campaign. https://t… +01/27/2018,Sports_celeb,@keinishikori,Very good practice with @JohnIsner today. Very nice of him to come hit. #heightdifference #CanIHaveThatServe https://t.co/Hy3BVBYCT3 +01/26/2018,Sports_celeb,@keinishikori,First practice in Dallas. Just arrived. https://t.co/hMeHCLTjgL +01/23/2018,Sports_celeb,@keinishikori,Last practice before match tomorrow. https://t.co/uLBRtWCbow https://t.co/OSIYS3c6Na +01/17/2018,Sports_celeb,@keinishikori,We have arrived!!!! 👍💪 https://t.co/4wtLBf9X82 +01/06/2018,Sports_celeb,@keinishikori,RT @Jaguar: #Jaguar #XFSportbrake delivers an utterly seductive blend of style and substance that is unrivalled in its class. https://t.co/… +01/03/2018,Sports_celeb,@keinishikori,https://t.co/zOskc10g4z +01/01/2018,Sports_celeb,@keinishikori,"RT @cupnoodle_jp: 今、誰よりもハングリーなのは。 + +復活を目指す錦織圭を描く +カップヌードルの新CM +「HUNGRY・K篇」が本日公開! https://t.co/Ziw3iq9jeC" +12/30/2017,Sports_celeb,@keinishikori,RT @doublefault28: 😂👍 (🎥https://t.co/RXFiKrVgVU) https://t.co/zlTvvB7KZs +12/30/2017,Sports_celeb,@keinishikori,Great birthday dinner at @it_srq tonight. Back to practice tomorrow:) https://t.co/qRij1rKVdJ +12/29/2017,Sports_celeb,@keinishikori,Birthday practice:) https://t.co/TP85tU7lAx +12/29/2017,Sports_celeb,@keinishikori,Thank you for all the nice birthday messages!!!! 🎂 🎁 🍰 🎉 🎊 +12/29/2017,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: Happy Birthday KEI! +本日29日は錦織圭(@KeiNishikori)選手の28歳の誕生日 。 +1月からはいよいよ新しいシーズンが始まります。 +タフになって帰ってくる錦織選手の活躍を、楽しみにしています! +https://t.co…" +12/28/2017,Sports_celeb,@keinishikori,Working hard! https://t.co/Wv9PNgfSoY https://t.co/B4pBFB0ZzG +12/28/2017,Sports_celeb,@keinishikori,Good week! #progress https://t.co/Wv9PNgfSoY https://t.co/cxAlmZHyi0 +12/25/2017,Sports_celeb,@keinishikori,RT @NickBollettieri: Merry Christmas from snowy Vermont. https://t.co/W4qK0vWrcm +12/25/2017,Sports_celeb,@keinishikori,Busy Christmas 🎄 morning practice today at the @IMGAcademy! Happy holidays everyone. https://t.co/uLBRtWCbow https://t.co/IDK7F6xstu +12/22/2017,Sports_celeb,@keinishikori,@BrisbaneTennis Sorry @BrisbaneTennis! I will be back in 2019. Wishing everyone there a great tournament! +12/16/2017,Sports_celeb,@keinishikori,Great day with Ron from Wilson. We tested several new strings today. Very productive. https://t.co/5c6kANZlEl +12/12/2017,Sports_celeb,@keinishikori,Thank you @Jaguar for helping me while at Michael’s for training! Appreciate so much being part of your family. No… https://t.co/D5cuYf5QOY +12/06/2017,Sports_celeb,@keinishikori,Working hard in CA....... https://t.co/vhOz1BdSkh +12/04/2017,Sports_celeb,@keinishikori,"RT @JAL_Official_jp: 錦織選手、お気をつけて✈ +ご帰国されていた錦織選手(@keinishikori)が、アメリカへ練習に戻られます✨ +これからも応援しています! + +いつも、挑戦のそばに。 +ケイは負けない!!!!(ง `ω´)ง + +#GoKei https…" +12/04/2017,Sports_celeb,@keinishikori,"RT @AbiertoTelcel: “Estoy trabajando para regresar al 100%, ser mejor jugador y competir para ganar grandes títulos”, dijo @keinishikori🇯🇵…" +11/30/2017,Sports_celeb,@keinishikori,"RT @TAGHeuerJapan: タグ・ホイヤーのアンバサダーを務める錦織圭(@keinishikori)選手とのコラボレーションモデル<タグ・ホイヤー カレラ キャリバー ホイヤー01 クロノグラフ AIR-K5>。日本国内のタグ・ホイヤー直営店で限定発売中です。 +htt…" +11/30/2017,Sports_celeb,@keinishikori,"RT @usopen: #WaybackWednesday: + +Old school Nishikori.... + +🎥: @keinishikori vs Ferrer. + +📅: 2008 #USOpen https://t.co/4wRjCKqzGF" +11/29/2017,Sports_celeb,@keinishikori,🤗 🤗 🤗 https://t.co/2oebGkXwBh +11/29/2017,Sports_celeb,@keinishikori,More messages of support! Very nice to feel all this love in Japan https://t.co/HKi4snaAqG +11/29/2017,Sports_celeb,@keinishikori,Today marks a 1000 days until the @Tokyo2020 Paralympics! https://t.co/84fLeyQ1u4 +11/29/2017,Sports_celeb,@keinishikori,👍👍👍👍👍 https://t.co/oOfLYBnbwj +11/29/2017,Sports_celeb,@keinishikori,"RT @UNIQLO_JP: ユニクログローバルブランドアンバサダーの錦織圭選手(@keinishikori)とアダム・スコット選手がUNIQLO CITY TOKYOにご来社! +好評販売中のKAWS x Peanutsコラボアイテムを着用いただきました。 +https://t.…" +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: #ジャガー #XF #SPORTBRAKE が登場。11月27日の発表会ではジャガーのブランドアンバサダー @KeiNishikori 選手を迎え、スポーティな乗り心地とスタイリッシュなエクステリア、こだわり抜いた先進機能を披露した。#錦織圭 #R… +11/28/2017,Sports_celeb,@keinishikori,Working with the team of @cupnoodle_jp on a new campaign for 2018! #HungryToWin https://t.co/XntMFwdhRl +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: 【新車】錦織圭も大喜び!? テニスボールが6500個も入る大容量荷室が自慢のジャガーXFスポーツブレイクは722万円~(clicccar) - Yahoo!ニュース https://t.co/7fP8AijJ3F @YahooNewsTopics +11/28/2017,Sports_celeb,@keinishikori,RT @JaguarJPN: https://t.co/7NI0vsBWZq +11/28/2017,Sports_celeb,@keinishikori,RT @IMGATennis: congrats to ascender Daiki Yoshimura...the 6th seed is on to the second round in boys 16s @EddieHerrTennis +06/25/2018,Sports_celeb,@Canelo,😂😂😂😂 https://t.co/Fpd9aMhitw +06/22/2018,Sports_celeb,@Canelo,Muchas ganas 👊🏻🔥 https://t.co/nqwtX91hfB +06/12/2018,Sports_celeb,@Canelo,Si con el favor De Dios nos vemos en septiembre 👊🏻 https://t.co/pWX39wc3d5 +05/15/2018,Sports_celeb,@Canelo,"Para informarles que acabo de firmar el contrato con @Vada_Testing para pruebas durante todo el año. + +I want to le… https://t.co/optS8gb96X" +05/02/2018,Sports_celeb,@Canelo,❤️ https://t.co/0GnjDLSPFA +05/02/2018,Sports_celeb,@Canelo,👍🏻 https://t.co/fmjss1Wo3W +05/02/2018,Sports_celeb,@Canelo,No se 100% por que con el que se hizo la colaboración es el experto... pero a lo que se y estuve informado no es pi… https://t.co/tXQjLFcnS1 +05/02/2018,Sports_celeb,@Canelo,"RT @FundacionMGAS: Cuando los GRANDES d corazon,fortaleza y generosidad se encuentran,generan milagros, GRACIAS @Canelo GRACIAS,Israel Gonz…" +04/25/2018,Sports_celeb,@Canelo,"RT @FundacionMGAS: apart from being one of the best bóxers of the World,proud Mexican @Canelo its always helping the ones in need, small p…" +04/08/2018,Sports_celeb,@Canelo,"RT @revistaproceso: #LaPesadilladelClembuterol, en carne propia / una investigación de @beatrizapereyra https://t.co/1XsILKYICC" +03/28/2018,Sports_celeb,@Canelo,Con mucho gusto... sería un privilegio para mi conocer a ese niño🙏🏻. Solo que ahorita se me complica pero déjeme a… https://t.co/7KEsTI7Ku2 +03/23/2018,Sports_celeb,@Canelo,No la chingues no pidas eso acuérdate que me quiero desquitar por culero 👊🏻 saludos 👍🏻 https://t.co/UOQJw8coW5 +03/15/2018,Sports_celeb,@Canelo,Que hermosa!!! Feliz cumpleaños a tu abuelita que dios la bendiga y muchas gracias por su apoyo 👏🏻 https://t.co/nJf2nppocg +03/13/2018,Sports_celeb,@Canelo,"Gracias Los Angeles, nos vemos en Las Vegas// Thank you Los Angeles, see you in Vegas #teamcanelo#caneloggg2#5demayo https://t.co/b8Vv9C8m82" +03/08/2018,Sports_celeb,@Canelo,Feliz día internacional de la mujer👧🏼 que para mi todos los días son de la mujer 🤷🏼‍♂️😊 +03/08/2018,Sports_celeb,@Canelo,"Nos vemos el 5 de mayo. Gracias por apoyarme ! 🇲🇽 See you on May 5, Thanks for your support #CANELOGGG2#teamcanelo https://t.co/PMtZkxi6TU" +02/23/2018,Sports_celeb,@Canelo,Animo @Carolina_Moran estoy contigo #Reto4Elementos +02/21/2018,Sports_celeb,@Canelo,Muchas gracias @Torres que gran detalle 👌🏻 te veo el 5 de mayo compa 👊🏻⚽️ https://t.co/jj7P8pHFjg +12/25/2017,Sports_celeb,@Canelo,Feliz navidad que Dios los bendiga 🙏🏻🎁 https://t.co/CMuuHUZgWq +12/03/2017,Sports_celeb,@Canelo,Éxito y disfruta de tu vida y tus grandes logros campeón. @RealMiguelCotto +11/03/2017,Sports_celeb,@Canelo,"RT @reformaclub: Carlos Slim Helú, Chase Carey, @Canelo Carlos Slim Domit y Carlos Bremer, orgullosos de ser parte del @mexicogp https://t.…" +11/03/2017,Sports_celeb,@Canelo,RT @TeamSportsLat: ¿La @nflmx es más popular en México? Los # de los equipos de esta liga son los que más veces fueron tendencia en septiem… +10/31/2017,Sports_celeb,@Canelo,Saludos a todos buen día 👊🏻 https://t.co/s6CKdSCbst +10/06/2017,Sports_celeb,@Canelo,RT @Rosinalopez: @Canelo ahora todo mundo es #caneloteam pero yo te he amado desde siempre https://t.co/DDa0zkdJVh +09/20/2017,Sports_celeb,@Canelo,Lamento mucho las pérdidas y daños en México.Me uno a las oraciones. El día de mañana será otra pelea mas que vencimos.#unidosMéxico 🇲🇽🙏🏼 +09/16/2017,Sports_celeb,@Canelo,Estoy listo para el #THOR-down! ⚡ #CaneloGGG 👊 @MarvelStudios #ThorRagnarok #ad +09/16/2017,Sports_celeb,@Canelo,I’m ready to #THOR-down! ⚡ #CaneloGGG 👊 @MarvelStudios #ThorRagnarok #ad +09/15/2017,Sports_celeb,@Canelo,Pesaje 160 Libras 👊🏼 Weigh in ✅ #TeamCanelo #CaneloGGG https://t.co/NftkT5nH09 +09/15/2017,Sports_celeb,@Canelo,Gracias a toda la prensa por asistir el día de hoy. 👊🏼🇲🇽 https://t.co/5PXcHBBtK9 +09/15/2017,Sports_celeb,@Canelo,Quiero agradecer a mi equipo y a todos los que participaron en este detalle. Muchas gracias 🙏🏽🇲🇽… https://t.co/g8vquOwzyU +09/15/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: Are you with @Canelo? + +Use the hashtag #Canelo to unlock his special emoji and show your support! #CaneloGGG https://…" +09/13/2017,Sports_celeb,@Canelo,Game on! 👊🏼 #3días #16deSeptiembre #CaneloGGG #TeamCanelo https://t.co/80aVJCJXjc +09/13/2017,Sports_celeb,@Canelo,"RT @UnderArmour: ""When I was born, fear was gone."" - @canelo 👊💥🇲🇽 https://t.co/MGUXLfled4" +09/13/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: Canelo vs Golovkin - Final Press Conference https://t.co/g1rpSf0ua9 +09/13/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: Proceeds of #CaneloGGG will go to Hurricane Harvey and Irma relief efforts in Texas & Florida. Thanks to the champions… +09/11/2017,Sports_celeb,@Canelo,Ya casi es hora. Time to roll up our sleeves. #TeamCanelo #CaneloGGG #MiEra https://t.co/q7MBo2bUSe +09/09/2017,Sports_celeb,@Canelo,Afortunado. @CANELOTEAM #TeamCanelo https://t.co/ZtGRtx6yIs +09/09/2017,Sports_celeb,@Canelo,El ha sido mi mayor inspiración. 👊🏼 Every great achiever is inspired by a great mentor. #Boxing #MiEra #CaneloGGG… https://t.co/1JcTuDpPBP +09/09/2017,Sports_celeb,@Canelo,RT @HBOPR: .@HBO Sports is the fight fan's destination for #CaneloGGG: https://t.co/vSki3dhNTQ https://t.co/YIsZF7XODq +09/09/2017,Sports_celeb,@Canelo,¡Atrévete! 👊🏼 Bring it! #TeamCanelo @CANELOTEAM @FrencHMonTanA https://t.co/mV24Cwza6b +09/08/2017,Sports_celeb,@Canelo,"Por mi familia, por mi gente y por mi país. ¿Tu por quién peleas? +For my family, my people & my country. Who do yo… https://t.co/rAzeQq4wN9" +09/08/2017,Sports_celeb,@Canelo,Nada es fácil pero vale la pena al final👊🏻🔥 #teamcanelo #16deSeptiembre #canelovsggg #MiEra https://t.co/YXThrWoNDi +09/07/2017,Sports_celeb,@Canelo,RT @CANELOTEAM: Ahí vamos !👊🏻🇲🇽👊🏻#teamcanelo#mexicanfighter#nomexicanstyle https://t.co/RBLBQ9INWR +09/06/2017,Sports_celeb,@Canelo,"Se fuerte, pero mentalmente indestructible. 👊🏼 Be strong but mentally indestructible. #Boxing #MiEra #CaneloGGG… https://t.co/YOW4PZzoB1" +09/06/2017,Sports_celeb,@Canelo,Nadie debe detenerte para alcanzar tus metas. 👊🏻 Focus on your goals. You're unstoppable. #Boxing #CaneloGGG #MiEra https://t.co/JhRxwRumFm +09/05/2017,Sports_celeb,@Canelo,Para ganar la suerte no existe. 👊🏼Wake up and get after it! There's no such thing as luck. 🎧@youngrobstone #MiEra… https://t.co/nWfJfvoeMQ +09/05/2017,Sports_celeb,@Canelo,12 Días https://t.co/hXBkhPnZJV +09/04/2017,Sports_celeb,@Canelo,Listo para noquear 👊🏻🔥 ready to KO✅ #MiEra #Canelovsggg #16deseptiembre #12days https://t.co/oTKDs8sZSW +09/03/2017,Sports_celeb,@Canelo,"@caneloteam siempre en mi esquina, listos para lo qué venga.Disfruten su domingo🥊Caneloteam Always in my corner, re… https://t.co/rMrVO5tQaN" +09/03/2017,Sports_celeb,@Canelo,Vamos a luchar juntos por esta causa y por nuestros amigos en Houston. 👊🏼 #HurricaneHarvey https://t.co/5O9LNUsqsO https://t.co/4eLMq2znFa +09/02/2017,Sports_celeb,@Canelo,RT @HBOboxing: TONIGHT: @Canelo + @GGGBoxing go Under the Lights with @MaxKellerman + @RealRoyJonesJr to preview their Sept. 16 showdown. T… +09/02/2017,Sports_celeb,@Canelo,Tengo hambre de gloria. Gracias @ForbesMexico 🔥Hungry for #Glory 👊🏼 https://t.co/otI9zAVSCj +09/02/2017,Sports_celeb,@Canelo,¿Estan listos? 👊🏼 Are YOU ready? 📷 @seeyouringside #MiEra #Boxing #MyLegacy #CaneloGGG https://t.co/7F4ibGi4DS +09/02/2017,Sports_celeb,@Canelo,¡Buenos días! Recuerden qué para ganar no hay días dé descansó. 👊🏻 Wake up and get after it! #nodaysoff #MiEra #tea… https://t.co/AMgh5NQ2YO +09/02/2017,Sports_celeb,@Canelo,15 días más🔥 #16deSeptiembre #Canelovsggg https://t.co/SE7wx6Rnr5 +09/01/2017,Sports_celeb,@Canelo,Empezando a entrenar 🥊 Starting today's training 💪🏻 #MiEra #Teamcanelo https://t.co/nIudiV4tm7 +09/01/2017,Sports_celeb,@Canelo,Hoy con todo ya es viernes 👊🏻 I woke up in #BeastMode 🥊 MiEra https://t.co/c4odya7m9p +09/01/2017,Sports_celeb,@Canelo,¿Ya casi? #16desept 😏 Is it #Sept16 yet? 👊🏼 #boxing #MiEra #MyLegacy #CaneloGGG https://t.co/zIsG1TvIAJ +08/31/2017,Sports_celeb,@Canelo,Es un gran honor para mí!!👏🏻👏🏻 https://t.co/3ocJYMuvgf +08/31/2017,Sports_celeb,@Canelo,Gracias por hacerme parte de esta portada @hauteliving y todo el equipo @fabricetardiue @tajvstaj @msvioletcamacho… https://t.co/PjPk1LS78A +08/31/2017,Sports_celeb,@Canelo,Están listos para el 16 de septiembre? 🥊 You guy's ready for September 16th #MiEra #mylegacy #CaneloGGG https://t.co/7GiycAfJXo +08/30/2017,Sports_celeb,@Canelo,Realmente aprecio todo el apoyo ayer en Los Ángeles. Esta próxima victoria será para todos los que creyeron en mí.… https://t.co/JPhqQ0emTB +08/28/2017,Sports_celeb,@Canelo,¡Los espero este lunes 28 de agosto en el Microsoft Square a las 10:30! 👊🏼Can't wait to meet you on Monday 28 at Mi… https://t.co/rlYA2fP38S +08/27/2017,Sports_celeb,@Canelo,🤦🏼‍♂️ +08/27/2017,Sports_celeb,@Canelo,Winning is what you put into it. Thanks @HennessyUS for believe in my dedication. #CaneloGGG https://t.co/w2oRDOASmi +08/27/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: The best fight in boxing is still to come. #CaneloGGG https://t.co/Eo4cepRNjz +08/26/2017,Sports_celeb,@Canelo,"RT @HBOboxing: Go inside @Canelo & @GGGBoxing's preparation for their Sept. 16 fight with 24/7 #CaneloGGG, premiering tonight after #CottoK…" +08/24/2017,Sports_celeb,@Canelo,"¿Ya están listos para el lunes? 👊🏼 Who's coming Monday? #LosAngeles +📅 Aug 28 @MYLALIVE +⏰ Fan Arrival 10:30am PT -… https://t.co/3SeBk0rm52" +08/24/2017,Sports_celeb,@Canelo,La grandeza se logra a través de las cosas pequeñas que hacemos diario. 👊🏼 Greatness is a lot of small things done… https://t.co/YRNjqXmZQf +08/23/2017,Sports_celeb,@Canelo,"Se acerca el momento 🥊 The time is near #MiEra +IAmBoxing Watch #CaneloGGG Sept 16 at https://t.co/W2nMZOU8QV Onlin… https://t.co/Dout00vmCQ" +08/23/2017,Sports_celeb,@Canelo,Empezamos desde abajo #familia #lealtad 🥊We started from the bottom #family #loyalty 👊🏻 #TEAMCANELO https://t.co/wqPu8VRchp +08/22/2017,Sports_celeb,@Canelo,Team Canelo! Los espero en Los Ángeles este lunes 28 de agosto. ¡No falten! 👊🏼 https://t.co/oxap4tRsT7 +08/20/2017,Sports_celeb,@Canelo,¿Qué están haciendo este fin de semana? #disciplina #enfocado 🇲🇽 What are you doing this weekend? #discipline… https://t.co/zcREFVzT14 +08/19/2017,Sports_celeb,@Canelo,Ese momento donde no hay límites y solo tienes que seguir. 🥊 That moment where there are no limits and you just hav… https://t.co/swUgknDXvH +08/17/2017,Sports_celeb,@Canelo,"Espero que el mundo esté listo para lo que viene en 30 días, Esta es Mi Era! 👊🏼 #realboxing 🎬 @influencesinc 🎼… https://t.co/lx9JQyLmEM" +08/16/2017,Sports_celeb,@Canelo,"Habrá sudor, sangre y dolor, pero valdrá la pena 👊🏼 There will be sweat, blood & pain, but it'll be worth it.#Sept1… https://t.co/VmIDJC5dZx" +08/14/2017,Sports_celeb,@Canelo,"RT @CANELOTEAM: El triunfo no es negociable,es ganar o ganar!👊🏻🇲🇽👊🏻#disciplinaferrea#viejaescuela#mexicanfighter#NOmexicanstyle" +08/12/2017,Sports_celeb,@Canelo,"""Lo que estás pensando es en lo que te estás convirtiendo"" +""What you are thinking is what you are becoming""#Muhamma… https://t.co/gEZB3VwG6T" +08/10/2017,Sports_celeb,@Canelo,"""I Am Boxing"" a special short film narrated by @icecube & Don Chargin. Thank you for all the support. This is our e… https://t.co/XU6Ghwnazl" +08/06/2017,Sports_celeb,@Canelo,RT @jaimecamil: Ya viendo bien la foto @Canelo la gorra sí incrementa la guapura eh! #graciasporlaayudadita 😳😜🤣 #teamcanelo https://t.co/yZ… +08/06/2017,Sports_celeb,@Canelo,"RT @NoelSchajris: Gracias @Canelo !! La pelea del 16/09 es tuya campeón!! #teamcanelo🇲🇽 +https://t.co/ckA4Y860Hw +@jaimecamil https://t.co/…" +08/05/2017,Sports_celeb,@Canelo,RT @jaimecamil: #teamcanelo @Canelo https://t.co/yZIHCFK4Bt 🥊💥 https://t.co/Nt1cYSn2sO +08/02/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: #CaneloGGG is a real fight, not for show. - @canelo. #CampLife Canelo talks w/ @SInow, while @HennessyUS preps for a…" +08/01/2017,Sports_celeb,@Canelo,RT @HBOboxing: .@HBO to air Under the Lights: Canelo/Golovkin on Sept. 2 at 10 PM ahead of #CaneloGGG on Sept. 16 https://t.co/KOaVeZTrH4 h… +07/31/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: #CampLife @canelo on his daily 6:00am morning run in preparation for Sept 16! #CaneloGGG 47 days away!! https://t.co/w… +07/28/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: 🚨Three belts on the line Sept 16! @Canelo will defend his Lineal and Ring Magazine titles and fight for the WBA and IB… +07/26/2017,Sports_celeb,@Canelo,"RT @GoldenBoyBoxing: .@Canelo in full beast mode as he prepares for Sept 16! + +#CaneloGGG 52 days to go... #TeamCanelo RT! https://t.co/CUo…" +07/21/2017,Sports_celeb,@Canelo,RT @DavidAugustInc: A great fighter + great clothes = the perfect fighting combination. Feliz Cumpleaños @Canelo #teamdavidaugust https://… +07/18/2017,Sports_celeb,@Canelo,RT @boxingphotos: Pasesela chingon en su día compa Saul 👊🇲🇽 @Canelo #niveles #CaneloGolovkin https://t.co/3LQXFRlYqD +07/11/2017,Sports_celeb,@Canelo,You’ve Just been Buzzed! https://t.co/Ful2TF8YUf #CaneloGGG 9.16.17 #HBOPPV +06/30/2017,Sports_celeb,@Canelo,"RT @Constntino: N o B o x i n g, N o L i f e. @Canelo 🥊 https://t.co/q5qAmtRZKc" +06/29/2017,Sports_celeb,@Canelo,RT @laughingmeel: No solo es mi boxeador favorito y el campeon que necesitábamos. Si no que gracias a el empece a boxear yo tambien💪#TeamCa… +06/29/2017,Sports_celeb,@Canelo,RT @jsphprzz: Because my dude is a monster.👊 https://t.co/Fdsr74kljQ +06/29/2017,Sports_celeb,@Canelo,RT @jrd627: @Canelo vamos! September 16th. Best thing for boxing in decades! Can't wait for the fight and hope you win! https://t.co/Evjs2… +06/29/2017,Sports_celeb,@Canelo,RT @purplepig101: Voted for the man that I would leave my husband for @Canelo 😍😍🥊🥊 https://t.co/o1sQr7uRZP +06/29/2017,Sports_celeb,@Canelo,RT @Yuhhboy_david: @Canelo vote para el mejor🥇🥇🥇🥊🥊🥊 https://t.co/VplrMUpto1 +06/29/2017,Sports_celeb,@Canelo,"RT @ZonaGuerreraOF: ¡Vamos @Canelo! 🥊 +(SÍGUEME 👈• y cuando ganes invita a ver #CaneloGGG) 🥊 +#ZonaGuerrera 🇳🇬 https://t.co/ZE8dGnolpn" +06/29/2017,Sports_celeb,@Canelo,RT @orlandomoreno99: Viva Mexico! 🇲🇽 Voted for the best! @Canelo https://t.co/QxpOqnALCB +06/29/2017,Sports_celeb,@Canelo,RT @martinezbarre10: @Canelo listo mi voto para el mejor boxeador del momento libra por libra y el más exitoso!! https://t.co/Dz4nTkD9dd +06/29/2017,Sports_celeb,@Canelo,RT @erick_d2b: Gotta vote for the best🥊🏆 Puro CANELO🥇 @Canelo https://t.co/xinztKcjEH +06/29/2017,Sports_celeb,@Canelo,RT @drakelopez22: Voted for the goat🇲🇽👊🏼 @Canelo https://t.co/m8Hgn0sh4g +06/29/2017,Sports_celeb,@Canelo,RT @TiTo118: Let's support our own 👍🏼 🇲🇽 @Canelo https://t.co/6pczDh4i88 +06/29/2017,Sports_celeb,@Canelo,RT @ErinHamilton23: Gotta vote for my favorite @Canelo https://t.co/oxNEbvsE8W +06/29/2017,Sports_celeb,@Canelo,RT @KobiBenson: @Canelo for best international athelete easy https://t.co/CqOZR2i9sF +06/29/2017,Sports_celeb,@Canelo,RT @MissLolli44: @Canelo I think the choice was obvious 😃🏆💕💕 https://t.co/xK8w2uOGWv +06/29/2017,Sports_celeb,@Canelo,RT @0161Darren: Voted for the best in the world @Canelo 🐐🙌🏾 September GGG is getting KO 👊🏽 https://t.co/8w0msHjyFb +06/29/2017,Sports_celeb,@Canelo,RT @desireeher_: Voted for the best @Canelo 🥊🥊🥊🤤 https://t.co/pUW1IzVwn3 +06/29/2017,Sports_celeb,@Canelo,RT @iCobrah: Yo nomas voto por los Chingones! 🥊🇲🇽 @Canelo #MiEra https://t.co/N1MQ90FUPG +06/29/2017,Sports_celeb,@Canelo,RT @tbe_christian: This is between Ronaldo and Canelo. I gotta go with @Canelo who's gonna get a big win vs GGG in September. Been most dom… +06/29/2017,Sports_celeb,@Canelo,RT @SantiGG27: Tienes que ganar te lo mereces @Canelo https://t.co/FG3tDzu9yY +06/29/2017,Sports_celeb,@Canelo,RT @kyngxaldo: VOTE FOR @Canelo ‼️ el campeón mundial 🇲🇽 https://t.co/lJWjArLvOf +06/29/2017,Sports_celeb,@Canelo,RT @amandapanda_5: Gotta vote for my fellow Mexican 🇲🇽 @Canelo 🇲🇽🇲🇽🇲🇽🇲🇽🇲🇽 https://t.co/hzHKvlG2IL +06/29/2017,Sports_celeb,@Canelo,RT @georgiexusa: @Canelo for the ESPY's Best International Athlete obviously! 🇲🇽 https://t.co/JFyDdZD1lv +06/29/2017,Sports_celeb,@Canelo,RT @JaymesJones98: Vote for @Canelo 👊 Can't wait for September 😎 https://t.co/da2htsxGra +06/29/2017,Sports_celeb,@Canelo,RT @GiulianoGhisio: Vamos @Canelo!! si lo ganas regálame unas entradas para el evento contra Golovkin jaja 💪💪🥊🥊 https://t.co/RoRcXIHaLk +06/29/2017,Sports_celeb,@Canelo,RT @Boxerboy1799: @Canelo puro pa delante viejon! 👊🏼💯🥊 https://t.co/Imn1xXLrDS +06/29/2017,Sports_celeb,@Canelo,"RT @staywithmeEd: @canelo ganaras porque eres el mejor, obvio 😌 https://t.co/VYcgPMPhtK" +06/29/2017,Sports_celeb,@Canelo,RT @CarlosGaMora: Listo tu voto campeón!👊🏻 @Canelo https://t.co/voMtl9xM9l +06/29/2017,Sports_celeb,@Canelo,"RT @TonisBonilla: Vote for the future WINNER on September 16th, @Canelo Alvarez! 🥇👊🏻🥊 https://t.co/uWCFnVuSDZ" +06/29/2017,Sports_celeb,@Canelo,RT @SilvitaValle: Listo ✔️ eres el mejor chiquito 👊😍 @Canelo https://t.co/MvdaJOJ5Y6 +06/29/2017,Sports_celeb,@Canelo,RT @LaCanela_Isa: Siempre apoyando a Saul!!! VOTEN 🙏🏼😍 bendiciones @Canelo @espn #TEAMCANELO https://t.co/8WboufTYUZ +06/29/2017,Sports_celeb,@Canelo,RT @jquintana099: Voten por @Canelo. Es un orgullo de 🇲🇽! Eres el #️⃣1️⃣ en 🥊 https://t.co/J9xGmRND7g +06/29/2017,Sports_celeb,@Canelo,RT @oscaroriginal11: Es el mejor🤷🏽‍♂️🇲🇽representando a Mexico @Canelo https://t.co/7z3j354Vp5 +06/29/2017,Sports_celeb,@Canelo,RT @javitxuu88: Al canelo oiste guaje @Canelo https://t.co/zSVGK6XvqW +06/29/2017,Sports_celeb,@Canelo,RT @Estrell15998519: Apoyando como siempre al más chingon 🇲🇽🇲🇽🇲🇽👊🏻👊🏻👊🏻🙊🙊🙊@Canelo https://t.co/5V4fOr5DGF +06/29/2017,Sports_celeb,@Canelo,"RT @StephenSanchezz: I Voted For My Idol The Best Boxer And Champ! CANELO 100%!! +Arriba Guadalajara! 🇲🇽 @Canelo https://t.co/xqBJmK1hA5" +06/29/2017,Sports_celeb,@Canelo,RT @MisssMargie: Voted for @Canelo of course 💘 https://t.co/wrtoxlgPSl +06/28/2017,Sports_celeb,@Canelo,RT @jose_andrada: Full con @Canelo ya te votamos wuero. https://t.co/d46PvyaQpD +06/28/2017,Sports_celeb,@Canelo,RT @OhHeyItsStephy: Vote my love @Canelo as best international athlete 😻😻😻 https://t.co/WQ7tFe3Frp +06/28/2017,Sports_celeb,@Canelo,RT @Cocomosqueda: Listo @Canelo eres THE BESSST !!! 🥊🔝💯 https://t.co/mPcE8V2ffx +06/28/2017,Sports_celeb,@Canelo,RT @Letiiciialvz: @Canelo vamos por ese premio!!! https://t.co/EGfEPHYrrx +06/28/2017,Sports_celeb,@Canelo,RT @aruuizz: @Canelo listo el voto campeón! https://t.co/7Iu6gkAkFl +06/28/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: .@Canelo is nominated for a 2017 @ESPYS Award! Best International Athlete 👊🏽🔥 Vote for him now! https://t.co/jhJOvEIKf… +06/27/2017,Sports_celeb,@Canelo,"RT @ESPYS: With @Canelo Alvarez's TKO over Liam Smith... he became the WBO light middleweight champion! + +Vote: https://t.co/lXhnPfq696 htt…" +06/26/2017,Sports_celeb,@Canelo,👌🏻🔥 https://t.co/PDpBU5QSeq +06/16/2017,Sports_celeb,@Canelo,RT @GoldenBoyBoxing: NYC & LA! Join us next week as we make our press stop in your city! #CaneloGGG https://t.co/kEOdtW9sZq +06/13/2017,Sports_celeb,@Canelo,Monster 👊🏻 https://t.co/ZuGXUYXIMm +06/06/2017,Sports_celeb,@Canelo,Viva Mexico 🇲🇽 https://t.co/CqlPaL7lCl +06/06/2017,Sports_celeb,@Canelo,#CaneloGGG 👊🏻👊🏻 De regreso a casa en @TMobileArena. Nos vemos en septiembre. 💪🏻 #MiEra https://t.co/lIdGPaYoMm +06/05/2017,Sports_celeb,@Canelo,🐎 https://t.co/L3NMeho3Gw +05/31/2017,Sports_celeb,@Canelo,POWER 👊 #CaneloChavezJr #MiEra https://t.co/RiziljHMHU +05/31/2017,Sports_celeb,@Canelo,FUERZA 👊 #CaneloChavezJr #MiEra https://t.co/eczncKEpYK +05/30/2017,Sports_celeb,@Canelo,Buenos días 🌞 https://t.co/jXbUgiMzvB +05/29/2017,Sports_celeb,@Canelo,Do you wanna take a shower ? 🚿 https://t.co/cVuEHId6RE +05/26/2017,Sports_celeb,@Canelo,Preparing... 👊 #TEAMCANELO #MiEra https://t.co/ledmhYmoWj +05/26/2017,Sports_celeb,@Canelo,Preparándome... 👊 #TEAMCANELO #MiEra https://t.co/JdZf0BgpZw +05/25/2017,Sports_celeb,@Canelo,😎 https://t.co/qNGjM7rWAN +05/24/2017,Sports_celeb,@Canelo,#CaneloGGG 16 de septiembre 👊🏻👊🏻 https://t.co/OngQjmPA7I +05/19/2017,Sports_celeb,@Canelo,Saludos 🤤 https://t.co/7KQLIDjuFW +05/19/2017,Sports_celeb,@Canelo,Thank you to my friends and family for all the support during Fight week 👊🏻👊🏻 Now I'm focused on September 16… https://t.co/oiViFtB0aW +05/19/2017,Sports_celeb,@Canelo,Gracias a mis amigos y a mi familia por todo el apoyo durante la semana de la pelea #CaneloChavezJr. 16 de septiemb… https://t.co/LSJ6jusD09 +05/19/2017,Sports_celeb,@Canelo,RT @HennessyUS: Confidence makes the champion. @Canelo Alvarez’s lifelong trainer taught him to draw strength from adversity. #RespectTheRe… +05/18/2017,Sports_celeb,@Canelo,Luck is for the mediocre 🔥 https://t.co/fDCzDprYMG +05/16/2017,Sports_celeb,@Canelo,👊✌️ https://t.co/T8pDa2Kts5 +05/13/2017,Sports_celeb,@Canelo,@rojas711 Ya lo puse en mi Instagram saludando a la señora Elenita de hecho se lo mandamos directo 👏🏻 saludos y gra… https://t.co/lvxxwJq41I +05/12/2017,Sports_celeb,@Canelo,"RT @HBOPR: .@HBO Sports presents a replay of #CaneloChavezJr this Saturday, May 13 at 10:05PM: https://t.co/DxnFGoObRh https://t.co/UjJe60v…" +05/12/2017,Sports_celeb,@Canelo,Terminando de hacer un poco de ejercicio 👊🏻💦 https://t.co/KGyCcfQh9B +05/12/2017,Sports_celeb,@Canelo,"RT @PepeAguilar: ¡Mi avión no arrancó, Canelo aguántame! Justo ahora en #ElVlog 067 https://t.co/2nUnDjxopI ^Staff Pp https://t.co/1F1dZnuu…" +05/12/2017,Sports_celeb,@Canelo,"Thank you to my family, #TEAMCANELO, and all my fans for the support last week for #CaneloChavezJr 👊🏻👊🏻🇲🇽 https://t.co/5piauk8ZwU" +05/12/2017,Sports_celeb,@Canelo,Gracias a #TEAMCANELO y a todos los fans por su apoyo la semana pasada. #CaneloChavezJr 👊🏻👊🏻🇲🇽 https://t.co/IXCQF9vri3 +05/11/2017,Sports_celeb,@Canelo,Madre santa ❤ https://t.co/JRsbhLffYK +05/10/2017,Sports_celeb,@Canelo,RT @HBOPR: .@HBOboxing's #TheFightGame with Jim Lampley returns with a new edition tonight at 11PM on @HBO: https://t.co/Db0OlcS4RN +05/10/2017,Sports_celeb,@Canelo,Feliz diA para todas ❤️ https://t.co/H6PqFTO4K9 +05/08/2017,Sports_celeb,@Canelo,♠️♣️♥️♦️🃏 https://t.co/nqOIl71Dof +05/07/2017,Sports_celeb,@Canelo,La noche de la pelea #CaneloChavezJr 👊🏻👊🏻🇲🇽 Lo mejor lo verás el 16 de septiembre #CaneloGGG #TEAMCANELO https://t.co/W3AQRbHYdV +05/07/2017,Sports_celeb,@Canelo,#CaneloChavezJr Fight Night 👊🏻👊🏻🇲🇽 September 16th is coming up... #CaneloGGG #TEAMCANELO https://t.co/u3MXK1zOme +05/07/2017,Sports_celeb,@Canelo,Last night was for Mexico 🇲🇽👊🏻 Thank you #TEAMCANELO and to my family. Back to training 💪🏻#CaneloChavezJr #CaneloGGG https://t.co/aAD1qd4IlQ +05/07/2017,Sports_celeb,@Canelo,La pelea de ayer fue para México. 🇲🇽👊🏻Gracias #TEAMCANELO y a mi familia. De regreso a entrenar 💪🏻 #CaneloChavezJr… https://t.co/sb1CC19bh5 +05/06/2017,Sports_celeb,@Canelo,Thank you #TEAMCANELO for coming out to the weigh in yesterday. See you at @tmobilearena tonight 👊🏻👊🏻… https://t.co/is4pKh97yd +05/06/2017,Sports_celeb,@Canelo,Gracias #TEAMCANELO por venir ayer al pesaje. Nos vemos en @tmobilearena hoy en la noche #CaneloChavezJr 👊👊 https://t.co/lFvAZcfkdo +05/06/2017,Sports_celeb,@Canelo,164lbs... I'm ready for tomorrow 👊🏻💪🏻 #CaneloChavezJr https://t.co/I0OqLyVgPO +05/06/2017,Sports_celeb,@Canelo,164 Libras. ¡Estoy listo para mañana! 💪🏻 #CaneloChavezJr https://t.co/FsXUvmIQSn +05/05/2017,Sports_celeb,@Canelo,Un día #CaneloChavezJr #TEAMCANELO 👊 https://t.co/moAOLiSNRe +05/05/2017,Sports_celeb,@Canelo,Thank you for all the support at the Grand Arrivals & Press Conferences this week. I'm ready and focused.. May 6th… https://t.co/s5IIXIs2oH +05/05/2017,Sports_celeb,@Canelo,Gracias por todo el apoyo tanto en las conferencias de prensa como en nuestra llegada a Las Vegas. ¡Estamos listos!… https://t.co/47P0aUsSpR +05/03/2017,Sports_celeb,@Canelo,Final #CaneloChavezJr Press Conferences 👊🏻👊🏻 See you on Saturday #TEAMCANELO https://t.co/j4vDUFKfXo +05/03/2017,Sports_celeb,@Canelo,Última conferencia de prensa para #CaneloChavezJr. 👊🏻👊🏻 Nos vemos el Sábado #TEAMCANELO https://t.co/Vrdm9MLi8M +05/03/2017,Sports_celeb,@Canelo,Grand Arrivals Las Vegas.. 4 days until #CaneloChavezJr 👊🏻👊🏻 #MiEra https://t.co/5pffb4HU8q +05/03/2017,Sports_celeb,@Canelo,"Llegando a Las Vegas. 4 días para #CaneloChavezJr 👊🏻👊🏻 +#MiEra https://t.co/0WOvqpCy8l" +05/02/2017,Sports_celeb,@Canelo,👊👏 https://t.co/WmxCAO2rpt +05/02/2017,Sports_celeb,@Canelo,Media Day... Almost time for #CaneloChavezJr May 6th https://t.co/VVI6L1yS3y +05/02/2017,Sports_celeb,@Canelo,Día con los medios... Ya casi llega el día #CaneloChavezJr 6 de Mayo https://t.co/agt6Msbyv0 +04/30/2017,Sports_celeb,@Canelo,Animo hermano así es el boxeo se gana se pierde pero siempre con la cabeza en alto @Inocente02Ramon te quiero mucho ❤ +04/29/2017,Sports_celeb,@Canelo,Pride #CaneloChavezJr🇲🇽 https://t.co/8zKid9afC8 +04/29/2017,Sports_celeb,@Canelo,Orgullo 🇲🇽 #CaneloChavezJr https://t.co/7NcxIcdXie +04/26/2017,Sports_celeb,@Canelo,10 days... #CaneloChavezJr https://t.co/gqQxCEA84O +04/26/2017,Sports_celeb,@Canelo,Así son las mañanas con #TEAMCANELO buenas días 👏🏻 https://t.co/FzRYckCavN +04/25/2017,Sports_celeb,@Canelo,Thank you for coming champ!! the great SUGAR RAY LEONARD 👊 👊 @SugarRayLeonard https://t.co/erJ3cLFLJV +04/25/2017,Sports_celeb,@Canelo,👊✌️ https://t.co/vCdWOq9qTs +04/24/2017,Sports_celeb,@Canelo,🙂👊 https://t.co/OeBVAFxhfb +04/21/2017,Sports_celeb,@Canelo,POTENCIA 👊👊 https://t.co/KlZm4G67Xt +04/21/2017,Sports_celeb,@Canelo,RT @ramos7743: @Canelo yo soy puro #teamcanelo vamos campeon solo faltan 16 dias esta es tu ERA https://t.co/nnENNiBfDp +04/20/2017,Sports_celeb,@Canelo,See you at @jewellasvegas on 5/6 #CaneloChavezJr 👊 https://t.co/lnwB9ouxuv https://t.co/QeAuolcoic +04/17/2017,Sports_celeb,@Canelo,👊🇲🇽👊 https://t.co/OPnZtC8vI7 +06/30/2018,Sports_celeb,@Aly_Raisman,😊 https://t.co/kHsOOEeCcT +06/23/2018,Sports_celeb,@Aly_Raisman,Ahhhh thank you to the Improper Bostonian & Brian Doben. The shot in the car was so fun to shoot. I felt so cool 😜🙈… https://t.co/W4zgbwMae1 +06/22/2018,Sports_celeb,@Aly_Raisman,"Best way to start the summer! Amazing day full of yoga, meditation, new friends & #AerieREAL @aerie +#SolsticeTSq.… https://t.co/lbL9INpzSW" +06/14/2018,Sports_celeb,@Aly_Raisman,😊 https://t.co/3d7bZXYElG +06/13/2018,Sports_celeb,@Aly_Raisman,"For every unretouched swim photo you share with #AerieREAL, @Aerie will donate $1 (up to $25K) to @NEDA, a non-prof… https://t.co/gnqG80F4qN" +06/13/2018,Sports_celeb,@Aly_Raisman,❤ the swim you’re in! On set with my @Aerie family. A reminder to be kind to yourself— No one has the perfect body… https://t.co/MBNn22iWs4 +06/08/2018,Sports_celeb,@Aly_Raisman,"RT @Simone_Biles: am I allowed to say + +that msu needs to just shut the hell up +y’all disgust me + +oops .... just did https://t.co/Osjoi6dNm2" +06/06/2018,Sports_celeb,@Aly_Raisman,On set with @Cheribundi !!!! #bts #cheribundi #tartcherryjuice #supernaturalsuperfruit https://t.co/coEPAoB2SC +06/04/2018,Sports_celeb,@Aly_Raisman,I am speechless. @michiganstateu what is going on? Enough is enough. Wake up. https://t.co/iVbg6c80ga +06/04/2018,Sports_celeb,@Aly_Raisman,@MagsGotSwag12 See you in July ❤❤❤❤ +06/04/2018,Sports_celeb,@Aly_Raisman,"""We still fight. Enjoy your vacation""" +06/03/2018,Sports_celeb,@Aly_Raisman,A statement made by my sister survivor who is constantly fighting for us. Thank you @R_Denhollander Enough is enoug… https://t.co/IKUqYoC1NY +06/01/2018,Sports_celeb,@Aly_Raisman,.@USC is another painful example of organizations prioritizing money and reputation. Reports were made decades ago.… https://t.co/NA7RwsIboC +06/01/2018,Sports_celeb,@Aly_Raisman,I want to share my support to all of the brave survivors who have come forward and also those who are still sufferi… https://t.co/b9Se1OF3IP +05/31/2018,Sports_celeb,@Aly_Raisman,Love this!!! @BeePrinsloo I can't wait to meet you!!!!!!! 💙💙 https://t.co/aaNYyGcE3q +05/31/2018,Sports_celeb,@Aly_Raisman,💗 https://t.co/K1cKpheHDK +05/31/2018,Sports_celeb,@Aly_Raisman,@BrieClark95 @GymCastic @OtotheBeirne @TheBBSituation @maroon5 Thank you :) +05/31/2018,Sports_celeb,@Aly_Raisman,@SammyHerbert @adamlevine Adam has been SO supportive! He is so great. +05/31/2018,Sports_celeb,@Aly_Raisman,@adamlevine YOU ARE THE BEST!!!! Thanks @adamlevine & @maroon5 +05/31/2018,Sports_celeb,@Aly_Raisman,How can you not be all smiles when you're asked to be a part of @maroon5 music video?? @adamlevine lucky to call yo… https://t.co/CiHPHktsmW +05/31/2018,Sports_celeb,@Aly_Raisman,RT @adamlevine: Thank you so much to everyone involved with this very special project; honored to share this with you all! https://t.co/uDj… +05/16/2018,Sports_celeb,@Aly_Raisman,Thank you @espn @espys & the Ashe family. What an honor. Incredibly proud to stand with the army of survivors. https://t.co/khBmlD0BJn +05/16/2018,Sports_celeb,@Aly_Raisman,Happy birthday @chloeraisman21 Love you!! 💗 https://t.co/3cKIgw4QEx +05/13/2018,Sports_celeb,@Aly_Raisman,Happy Mother's Day to @LynnRaisman and all the amazing moms out there! Thank you for all you do 💕 +05/11/2018,Sports_celeb,@Aly_Raisman,@LaLaBex22 Oh wow! That is so funny. I assumed you said that because of the shirt :) +05/11/2018,Sports_celeb,@Aly_Raisman,"@LaLaBex22 thank you so much for the bracelet!!! (You sent it months ago, I apologize for being so behind on fan ma… https://t.co/NSOppr7J7K" +05/09/2018,Sports_celeb,@Aly_Raisman,Very grateful to @SenBlumenthal @JerryMoran @SenatorCharles @SenFeinstein for their efforts to protect athletes & h… https://t.co/BRFMMPS7s5 +05/06/2018,Sports_celeb,@Aly_Raisman,Sending good energy and vibes to everyone!!! Hope you all are taking time for yourself. Have a great day 💗 +05/06/2018,Sports_celeb,@Aly_Raisman,When you are a bully online or in person it is a reflection on you. How you treat others says a lot about you. We h… https://t.co/KlwJt0T0T3 +05/06/2018,Sports_celeb,@Aly_Raisman,RT @CoreyTheKnapper: Thanks to @Aly_Raisman for inspiring me to take this simple but very important course and personally signing my certif… +05/06/2018,Sports_celeb,@Aly_Raisman,YES every adult should! 42 million people are survivors of child sexual abuse. Take the course help save children!!… https://t.co/36LOYDQyOB +05/06/2018,Sports_celeb,@Aly_Raisman,RT @hracooper: the tutoring center I work for is offering training through @Darkness2Light and I am SO HAPPY ABOUT THAT (but it should defi… +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @JarrellDanielle: I joined @Aly_Raisman to Flip the Switch & got re-trained to prevent child sexual abuse. You can get trained too, use…" +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @TheDsjaaay: I joined @Aly_Raisman to Flip the Switch & got re-trained to prevent child sexual abuse. You can get trained too, use the c…" +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @KregWunderful: I joined @Aly_Raisman to Flip the Switch & got trained to prevent child sexual abuse. You can get trained too, use the c…" +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you!!!! Please continue to help spread the word. Appreciate you! https://t.co/zEsz6JQwRo +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you so much for taking the course. You are awesome!! https://t.co/qptE1mXx3d +05/06/2018,Sports_celeb,@Aly_Raisman,Thank you for helping to save children's lives. Appreciate you so much. You are a leader in your community!! https://t.co/jbWBvx0T6d +05/06/2018,Sports_celeb,@Aly_Raisman,@BeckyRobson910 Thank you so much. I worked SO hard on it so I really appreciate it. +05/06/2018,Sports_celeb,@Aly_Raisman,Amazing day with @Aerie at #USOW2018! Beyond inspired by these strong women. Thank you to each and every single per… https://t.co/hHuK5dND7c +05/06/2018,Sports_celeb,@Aly_Raisman,"RT @nwlc: “Speaking out is never easy... this problem is bigger than Nasser the #metoo movement is not just in gymnastics or in Hollywood,i…" +05/06/2018,Sports_celeb,@Aly_Raisman,Take the training!!!! @Darkness2Light 💪🏻 https://t.co/s6onHJ7go8 +04/30/2018,Sports_celeb,@Aly_Raisman,RT @Darkness2Light: Order @Aly_Raisman's limited edition swimsuit & @Aerie will donate 100% of the sales to Darkness to Light to help preve… +04/30/2018,Sports_celeb,@Aly_Raisman,Yes!!! Thank you for taking the @Darkness2Light course. Appreciate your kindness and character to make the world a… https://t.co/Cufbe5JXVK +04/30/2018,Sports_celeb,@Aly_Raisman,Why do some support abusers over survivors?? Ughhhh it is so disgusting and horrifying. I will never understand it… https://t.co/AfGgKpuZox +04/30/2018,Sports_celeb,@Aly_Raisman,@exegete77 Hahaha it's all crinkled! I can still read it though 😂 +04/30/2018,Sports_celeb,@Aly_Raisman,"@heylookitsdans Thank you so much. I hope so. Just want all athletes and students, everyone to be safe!!!" +04/30/2018,Sports_celeb,@Aly_Raisman,@smars319 Thank you. I really appreciate your support. It means a lot. +04/30/2018,Sports_celeb,@Aly_Raisman,Devastated to hear about the many gymnasts in Brazil who have been abused. Survivors must be heard & justice must b… https://t.co/CqU3WXCdOm +04/29/2018,Sports_celeb,@Aly_Raisman,@JJ_Denhollander @lindseylemke She is!!!!!! Such a rockstar for all of us!!!! +04/29/2018,Sports_celeb,@Aly_Raisman,MSU & USAG. There are still people working at both organizations who knew and enabled Nassar to thrive. It's danger… https://t.co/1CN7vgeLbu +04/29/2018,Sports_celeb,@Aly_Raisman,Still can't believe I had the honor of meeting @TaranaBurke the other night!!! 🙈🙈🙈 +04/29/2018,Sports_celeb,@Aly_Raisman,RT @TaranaBurke: Omg. This made my cry. https://t.co/M45CKYhFP2 +04/29/2018,Sports_celeb,@Aly_Raisman,Please visit @Darkness2Light to learn more about how you can save someone from abuse. We must prevent abuse. I can'… https://t.co/Z053wprnCP +04/29/2018,Sports_celeb,@Aly_Raisman,YOU can save someone from abuse. YOU. The change starts with each of us. (The course is free and I will personally… https://t.co/BZjOm49llm +04/29/2018,Sports_celeb,@Aly_Raisman,"If don't understand why victim shaming is a huge problem and part of the reason why so many people say ""Me Too"" ple… https://t.co/sp2ltV618M" +04/29/2018,Sports_celeb,@Aly_Raisman,Be supportive of one another. Whether or not you are a survivor of any kind of abuse it is still important for you… https://t.co/0vhpXjfVtb +04/29/2018,Sports_celeb,@Aly_Raisman,So proud of you @Simone_Biles NO ONE IS DEFINED BY ABUSE. Shame on those who use abuse to get more clicks or likes… https://t.co/RWv3S8u5lH +04/29/2018,Sports_celeb,@Aly_Raisman,@TeenVogue thank you for your support of survivors. We appreciate you using your platform to help us make change t… https://t.co/TtTiafDGOm +04/29/2018,Sports_celeb,@Aly_Raisman,When you're trying to have a relaxing evening and then you drop your book in the bathtub.... 🙄 +04/29/2018,Sports_celeb,@Aly_Raisman,RT @emrazz: Can you name all 59 women who came forward against Cosby? Can you name half of them? Can you name 5? Would you recognize them o… +04/28/2018,Sports_celeb,@Aly_Raisman,Good luck to the USA gymnasts at #PacRim2018 ❤💙 +04/27/2018,Sports_celeb,@Aly_Raisman,"RT @Darkness2Light: Get educated on how to protect children at no cost! Use @Aly_Raisman's code FLIPTHESWITCH to learn how to prevent, reco…" +04/27/2018,Sports_celeb,@Aly_Raisman,This is amazing!!! Kristin!!!! You're incredible! https://t.co/myzQj6JzuU +04/27/2018,Sports_celeb,@Aly_Raisman,Sister survivors ❤ @R_Denhollander you continue to amaze me. Thank you for being you. Proud to stand with you. https://t.co/EKOZzyG8G9 +04/26/2018,Sports_celeb,@Aly_Raisman,"RT @SarahHauer: ""USA Gymnastics was like a family, and I felt my family let me down. When they heard about abuse, they tried to cover it up…" +04/26/2018,Sports_celeb,@Aly_Raisman,"RT @LaLaBex22: The most unsurprising revelation, what Dateline cut from Aly's interview, Aly told Rhonda about Larry's abuse and well... 40…" +04/25/2018,Sports_celeb,@Aly_Raisman,.@time 100 last night. This was one of my favorite events I've ever been to. I am in awe of all the incredible peop… https://t.co/v94TZLIMkH +04/25/2018,Sports_celeb,@Aly_Raisman,"RT @vincentvanmoe: if you can, support #DenimDay this year by wearing denim on April 25th! https://t.co/pNg8q4XTRL" +04/25/2018,Sports_celeb,@Aly_Raisman,Supporting #DenimDay 💪🏻💪🏻💪🏻 Women do not have to be modest to be respected. Just because someone is wearing a sexy… https://t.co/bX7N2ngmrK +04/24/2018,Sports_celeb,@Aly_Raisman,"RT @Aerie: They got it from their mamas! #AerieREAL Role Models @YaraShahidi, @Aly_Raisman & @Iskra celebrated their role models with a spe…" +04/24/2018,Sports_celeb,@Aly_Raisman,Love you mom! I can't thank you enough for always supporting me through all the ups and downs! Celebrate Mother’s D… https://t.co/bvGYDjKd1P +04/24/2018,Sports_celeb,@Aly_Raisman,@lannadelgrey Thank you for continuously being supportive. If the media doesn't help cover our stories then nothing… https://t.co/vQJ8nayjzl +04/23/2018,Sports_celeb,@Aly_Raisman,My thoughts on safety at college.... https://t.co/ltfjQ3Mmh5 +04/23/2018,Sports_celeb,@Aly_Raisman,"Hour prime time for investigative piece, no interview/scrutiny of current/recent execs of USAG, the org responsible… https://t.co/NZF0QBhU5O" +04/23/2018,Sports_celeb,@Aly_Raisman,RT @DatelineNBC: Aly Raisman on the statement that changed her life #Dateline https://t.co/ZfHrD95AmT +04/22/2018,Sports_celeb,@Aly_Raisman,💪🏻 https://t.co/sUgS23SU41 +04/16/2018,Sports_celeb,@Aly_Raisman,Good luck!!!! 💪🏻💪🏻💪🏻 #BostonStrong💙💛 #BostonMarathon https://t.co/EgR3pkEwlK +04/16/2018,Sports_celeb,@Aly_Raisman,#BostonStrong 💙💛 +04/10/2018,Sports_celeb,@Aly_Raisman,Signing completed @Darkness2Light #FlipTheSwitch certificates. 1 child abused is too many. 1 time is too many. Take… https://t.co/UtAPHcY5vG +04/06/2018,Sports_celeb,@Aly_Raisman,RT @RedSox: This message brought to you by @davidortiz: https://t.co/6ShnqnBzYs +04/06/2018,Sports_celeb,@Aly_Raisman,Boston is the greatest sports city 💪🏻Thank you @redsox & Boston & @davidortiz 😊 https://t.co/8kaZwIkMg1 +04/05/2018,Sports_celeb,@Aly_Raisman,Incredible show!!! @jtimberlake is beyond talented. So nice to meet Justin & @JessicaBiel 😊 https://t.co/EutqGCqhoz +04/01/2018,Sports_celeb,@Aly_Raisman,@HoneyLaBreathet @Final5Forever ❤❤❤ +04/01/2018,Sports_celeb,@Aly_Raisman,@DonnaTspassions @Final5Forever That's so nice. Thanks so much!!! +04/01/2018,Sports_celeb,@Aly_Raisman,@shoshannaclaire @Final5Forever Thank you!! +04/01/2018,Sports_celeb,@Aly_Raisman,RT @Final5Forever: @Aly_Raisman I’m about to start reading your book! I’m so excited!! #FiercebyAly https://t.co/oDOz1npvU9 +04/01/2018,Sports_celeb,@Aly_Raisman,RT @jjcart21: I am proud to take a stand against child sexual abuse alongside @Aly_Raisman and @Darkness2Light. I pledge to #FlipTheSwitch… +03/29/2018,Sports_celeb,@Aly_Raisman,MINI-ME Priscilla ❤ https://t.co/XBtsCXy7JD +03/29/2018,Sports_celeb,@Aly_Raisman,RT @adamlevine: Help my amazing friend @Aly_Raisman spread the word... https://t.co/t9tJNUmC82 https://t.co/9L9sgpzpdc +03/29/2018,Sports_celeb,@Aly_Raisman,RT @23Jasso: Spread the word. #FlipTheSwitch https://t.co/9LmN0gJ8BL +03/29/2018,Sports_celeb,@Aly_Raisman,@bren_hucks You're unstoppable!!!! Inspiration 💪🏻 +03/27/2018,Sports_celeb,@Aly_Raisman,@CoconutCraver Appreciate you so much. Thank you for your kindness!!! +03/27/2018,Sports_celeb,@Aly_Raisman,@JoeAnello Appreciate your support. Thank you. +03/27/2018,Sports_celeb,@Aly_Raisman,My thoughts..... https://t.co/QUtlNYYg6p +03/27/2018,Sports_celeb,@Aly_Raisman,"RT @SInow: Police have arrested ex-Michigan State dean William Strampel, who was Larry Nassar’s boss at the school https://t.co/8bgDImbqsW" +03/26/2018,Sports_celeb,@Aly_Raisman,"Thank U for the continued support of my book, Fierce. I hope you know that you have a voice & deserve to be heard!… https://t.co/KTZG8htHdp" +03/26/2018,Sports_celeb,@Aly_Raisman,RT @TimScha11er: Today is the LAST DAY to enter to win a #timmyheads shirt signed by the entire Boston Bruins team!!! Help us support @TheJ… +03/25/2018,Sports_celeb,@Aly_Raisman,For those of you who do not understand what victim shaming is and why it's so dangerous I urge you to educate yours… https://t.co/7K2lwEvf7a +03/25/2018,Sports_celeb,@Aly_Raisman,I was recently asked if gymnasts should continue wearing leotards. Leotards r not the problem. The problem is the m… https://t.co/1oIem7UAfv +03/23/2018,Sports_celeb,@Aly_Raisman,Yesssss! Thank you for your support. https://t.co/UJJ3pIpdMG https://t.co/w6Gos88usn +03/23/2018,Sports_celeb,@Aly_Raisman,@jennifermalvaro @danibostick This is amazing!! I posted this. THANK YOU. +03/23/2018,Sports_celeb,@Aly_Raisman,"""Justice will not be served until those who are unaffected are as outraged as those who are."" -Benjamin Franklin" +03/19/2018,Sports_celeb,@Aly_Raisman,✨ https://t.co/YzshqjwgXN +03/19/2018,Sports_celeb,@Aly_Raisman,@JessWeiner 💗 +03/19/2018,Sports_celeb,@Aly_Raisman,RT @anika_kukich: best book i have ever read... thank you @Aly_Raisman for being so inspiring ❤️ https://t.co/TN1aQqXMv8 +03/19/2018,Sports_celeb,@Aly_Raisman,RT @iBooks: Olympic gold medalist @Aly_Raisman courageously turned her private journals and struggles into a book. Now she’s using her incr… +03/18/2018,Sports_celeb,@Aly_Raisman,Happy birthday to my little sis ❤❤❤ Love you so much Maddie https://t.co/rF8R1fCgQa +03/17/2018,Sports_celeb,@Aly_Raisman,"RT @theMissyBonner: ‘I hope u find yr reason, & I hope u’ll help others find theirs, too. Finally, I hope u’ll be kind, be determined, be l…" +03/17/2018,Sports_celeb,@Aly_Raisman,Sending 💗to you all. Have a great weekend. Appreciate all the kind people out there who support each other. You kno… https://t.co/VpTApqoZi7 +03/17/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: .@Aly_Raisman is a FIERCE survivor. Shop our #AerieREAL Role Model’s limited-edition Aerie x Aly Super Scoop Swimsuit & we’ll d… +03/14/2018,Sports_celeb,@Aly_Raisman,HAPPY BIRTHDAY @Simone_Biles ❤💗❤ https://t.co/r6gefS8eAJ +03/13/2018,Sports_celeb,@Aly_Raisman,Behind the scenes with @aerie at their swim shoot & Miami store! Make sure to take some time today for yourself. Sp… https://t.co/7HAbSL1AwT +03/10/2018,Sports_celeb,@Aly_Raisman,"So special to spend time with the @aerie team, who works so hard to set a great example for all girls and women. Fe… https://t.co/Xo4ZROmELg" +03/09/2018,Sports_celeb,@Aly_Raisman,RT @CarlaSueNeal: I completed the program today. I urge everyone to! Worth the time to be aware and prevent childhood sexual abuse. #FlipTh… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: #AerieREAL Role Models @Aly_Raisman & @Iskra are headed to Lincoln Road! Join them for a Real Talk this Sunday from 1 to 3pm & s… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @Timwolz10: I just finished full Stewards Plus from @Darkness2Light The most rewarding things Ive done in a long time. All adults shoul… +03/09/2018,Sports_celeb,@Aly_Raisman,RT @KateUpton: Please join @Aly_Raisman and #FlipTheSwitch to prevent child sexual abuse!! Click here for more info: https://t.co/iNijAuw6qm +03/09/2018,Sports_celeb,@Aly_Raisman,@starkunderoos It's free! +03/09/2018,Sports_celeb,@Aly_Raisman,RT @jewald14: I completed the program today. I urge everyone to! Worth the time to be aware and prevent childhood sexual abuse. https://t.c… +03/09/2018,Sports_celeb,@Aly_Raisman,#FlipTheSwitch 42 million Americans are survivors of child sexual abuse. We MUST change that horrifying number. I u… https://t.co/NzCAoWMAfZ +03/08/2018,Sports_celeb,@Aly_Raisman,@alarabofficial Thank you for supporting!! +03/08/2018,Sports_celeb,@Aly_Raisman,@becrandolph @Aerie Thanks for supporting @Darkness2Light +03/08/2018,Sports_celeb,@Aly_Raisman,#HappyInternationalWomensDay! Thankful to be a part of @Aerie effort to promote body positivity and women's empower… https://t.co/fg2zRCBudc +03/08/2018,Sports_celeb,@Aly_Raisman,"RT @Google: For International Women’s Day, we celebrate those working toward a more equal future. Explore top searched trends around women…" +03/08/2018,Sports_celeb,@Aly_Raisman,Pinching myself. Thank you so much @Google I am so honored to be a part of this video. Happy… https://t.co/cdacVwxrop +03/08/2018,Sports_celeb,@Aly_Raisman,RT @mrsnicolephelps: If you work with children please get on and get certified!! Thank you @Aly_Raisman for making this a possibility to ev… +03/08/2018,Sports_celeb,@Aly_Raisman,RT @JamieErdahl: Use the code FLIPTHESWITCH to participate in the course for free. Once you’ve gained this invaluable knowledge — pass it a… +03/08/2018,Sports_celeb,@Aly_Raisman,RT @guskenworthy: It's so important for sports to be a safe space for kids. @Aly_Raisman is doing something to help end child sex abuse - c… +03/08/2018,Sports_celeb,@Aly_Raisman,Thank you for being a part of this incredible program!!! https://t.co/l39Z1OpU1J +03/08/2018,Sports_celeb,@Aly_Raisman,Thank you so much!!!!! Thank you for helping create the change that is so desperately needed @PeytonJulia 💪🏻… https://t.co/hwlslpCb7T +03/08/2018,Sports_celeb,@Aly_Raisman,"RT @MichaelPhelps: This is an important issue in every sport, and I encourage all adults to join me in completing this program. @Aly_Raisman" +03/08/2018,Sports_celeb,@Aly_Raisman,RT @MichaelPhelps: Thx Aly Raisman for making this program available and free!  Each of us needs to do our part to make all sports safer fo… +03/07/2018,Sports_celeb,@Aly_Raisman,RT @Aly_Raisman: Please join the effort to address sexual abuse in sport. I have partnered with Darkness 2 Light to make programming availa… +03/07/2018,Sports_celeb,@Aly_Raisman,RT @Darkness2Light: We're excited to announce our partnership with @Aly_Raisman to #FliptheSwitch to end #childsexualabuse! Take the traini… +03/07/2018,Sports_celeb,@Aly_Raisman,Please join the effort to address sexual abuse in sport. I have partnered with Darkness 2 Light to make programming… https://t.co/E2RBGA7ZX9 +03/03/2018,Sports_celeb,@Aly_Raisman,"Wanted to wish Morgan, Maile, Allan, Yul and the rest of the athletes the best of luck today at the American cup!" +03/03/2018,Sports_celeb,@Aly_Raisman,RT @kathyjohnsongym: Before you can ever dream of standing side-by-side with the survivors you must first go to them and listen to ALL of t… +03/02/2018,Sports_celeb,@Aly_Raisman,"FIERCE MIND. KIND HEART. BRAVE SPIRIT. +New @Lifeisgood shirts available!! https://t.co/xdpKlOCbFf https://t.co/0U5Yyy5ETe" +03/01/2018,Sports_celeb,@Aly_Raisman,💗 https://t.co/sFxFswvbK6 +02/28/2018,Sports_celeb,@Aly_Raisman,".@Playtex_Sport Compact! It fits in your hand, but protects like their full size tampon, so you can always #PlayOn.… https://t.co/uYOpQ7xA8J" +02/26/2018,Sports_celeb,@Aly_Raisman,So good to see Mihai! Having such a great time in Australia! Thank you for having me back for the second year in a… https://t.co/L15uxolBml +02/25/2018,Sports_celeb,@Aly_Raisman,"RT @BarackObama: Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless students s…" +02/25/2018,Sports_celeb,@Aly_Raisman,Congrats!!!! ❤ https://t.co/NaLbwk48wN +02/25/2018,Sports_celeb,@Aly_Raisman,Impressed and inspired by the powerful students who are using their voices to stand up for what they believe in. +02/18/2018,Sports_celeb,@Aly_Raisman,Trying to pack for Australia but my dogs don't want me to take my new @leesasleep blanket. A percentage of profits… https://t.co/oyG7f7nI8W +02/18/2018,Sports_celeb,@Aly_Raisman,RT @loveisasecrett: @Aly_Raisman I have two little brothers - one in first grade & one in seventh grade. Both of them told me how scared th… +02/18/2018,Sports_celeb,@Aly_Raisman,@UmpleBen Thank you so much 💪🏻 +02/18/2018,Sports_celeb,@Aly_Raisman,@GarzonThree @RWitherspoon Sending 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@Aly_Sheehy 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@Ash_JBHMikey @auburncurls Sending ❤ +02/18/2018,Sports_celeb,@Aly_Raisman,@KyleHarper_ @faithlantisxx @washingtonpost There is a lot of news articles that say different info. I'm human no o… https://t.co/nwbP90EvaS +02/18/2018,Sports_celeb,@Aly_Raisman,@KyleHarper_ @faithlantisxx @washingtonpost No need to be mean. Either way too many. No need to shame an 8 year old… https://t.co/VeW257g3T5 +02/18/2018,Sports_celeb,@Aly_Raisman,@jackief_13 💗 +02/18/2018,Sports_celeb,@Aly_Raisman,@rpasley Thank you so much. I am doing my best to be the best I can be. Really appreciate your kind support. +02/18/2018,Sports_celeb,@Aly_Raisman,RT @Ash_JBHMikey: @Aly_Raisman I know i had to sit my little brothers down and talk to them about what they should do in case that happens.… +02/18/2018,Sports_celeb,@Aly_Raisman,RT @NativeTexan1023: @Aly_Raisman Had a similar convo w/ my 9 y/o. She asked if it will happen at her school. I couldn't honestly look at h… +02/18/2018,Sports_celeb,@Aly_Raisman,"@KyleHarper_ @faithlantisxx This was the 18th school shooting in 45 days. How can you say that these ""events"" almos… https://t.co/WSNJodDXwB" +02/18/2018,Sports_celeb,@Aly_Raisman,RT @faithlantisxx: @Aly_Raisman Saw a post about an 8-year old asking for new shoes bc she didn't want to wear her light-up ones bc a shoot… +02/18/2018,Sports_celeb,@Aly_Raisman,"What are you supposed to tell your little sister when she asks ""what do I do if a shooter comes in? Do I hide in th… https://t.co/g4BvCMbY0v" +02/17/2018,Sports_celeb,@Aly_Raisman,"RT @Simone_Biles: keep your chin up @nathanwchen +I believe in you!!" +02/17/2018,Sports_celeb,@Aly_Raisman,https://t.co/RIaeD1iG64 +02/17/2018,Sports_celeb,@Aly_Raisman,RT @Simone_Biles: hey @Adaripp can I please borrow that top ?!!??!!! #NEEDIT +02/16/2018,Sports_celeb,@Aly_Raisman,RT @RWitherspoon: Heartbroken over the news of another school shooting. This is the 18th in 45 days of 2018. Students & teachers shouldn't… +02/16/2018,Sports_celeb,@Aly_Raisman,"@lindseylemke You are strong, powerful and you have a voice. You are being listened to. So proud and thankful for y… https://t.co/mMBEupNaQ0" +02/14/2018,Sports_celeb,@Aly_Raisman,💪🏻 @SI_Swimsuit https://t.co/iyxEXIjs1Z +02/14/2018,Sports_celeb,@Aly_Raisman,Happy Valentine's Day 💗❤💋 +02/14/2018,Sports_celeb,@Aly_Raisman,😂😂😂 @people https://t.co/skNJBOI4we +02/14/2018,Sports_celeb,@Aly_Raisman,Having a moment to myself 🤗Had the pleasure of shooting with James Macari in Aruba. @si_swimsuit @MJ_Day https://t.co/2Y5U6BVr6v +02/13/2018,Sports_celeb,@Aly_Raisman,Congrats!!!! What a special moment :) Can't wait to give you a hug and congratulate you in person! https://t.co/jPekNSPIZa +02/13/2018,Sports_celeb,@Aly_Raisman,Sending my love and support to Needham through this difficult time. Talia Newfield & Adrienne Garrido you will be m… https://t.co/Ju9ITT5T8F +02/13/2018,Sports_celeb,@Aly_Raisman,Thank you to the @SI_Swimsuit team https://t.co/SbTkGmg5Tr +02/12/2018,Sports_celeb,@Aly_Raisman,@Matt_Dominguez Thank you :) +02/11/2018,Sports_celeb,@Aly_Raisman,I know! 75% of teen girls stop playing sports because they're ashamed of their period. We have to change this!!! It… https://t.co/6xvcTqnZka +02/11/2018,Sports_celeb,@Aly_Raisman,See you all soon! Can't wait to come back to Australia!!! Thanks for having me again @gymworldcup & Gymnastics Aust… https://t.co/NjfPLDNpxy +02/11/2018,Sports_celeb,@Aly_Raisman,Don't be ashamed of your period or afraid to talk about it! 💪🏻AND don't let your period get in the way of doing wha… https://t.co/IWQHELd43Y +02/10/2018,Sports_celeb,@Aly_Raisman,@sarahdvojack You're incredible. Thank you for your support!!! +02/10/2018,Sports_celeb,@Aly_Raisman,@sarahdvojack Wow thank you!!!! You're so talented! +02/09/2018,Sports_celeb,@Aly_Raisman,"Best of luck to the athletes, coaches, and families as they compete! I hope all of your hard work pays off, and you… https://t.co/peXfjm8c5T" +02/09/2018,Sports_celeb,@Aly_Raisman,"RT @TheLeadCNN: .@aly_raisman: “I would love for USA Gymnastics and the USOC to hear this ... since they only care about medals, reputation…" +02/08/2018,Sports_celeb,@Aly_Raisman,I can't believe it but I have been on the New York Times Best Sellers list for 3 months in a row. Thank u for the s… https://t.co/x9Vbg5ezLg +02/07/2018,Sports_celeb,@Aly_Raisman,Thank you @people for recognizing the important issues surrounding abuse. This strong army of survivors are just ge… https://t.co/3vy9YehiF8 +02/03/2018,Sports_celeb,@Aly_Raisman,Will the USOC & USAG be looking into all factors that contributed 2 ALL abuse? There have been many allegations of… https://t.co/9JB9lBGsTC +01/31/2018,Sports_celeb,@Aly_Raisman,Wowwww!!!! This is so cool. Is this even real life??? https://t.co/Dv5pQ5mGwN +01/28/2018,Sports_celeb,@Aly_Raisman,RT @Aerie: See the full video & get to know #AerieREAL Role Model @Aly_Raisman on the blog now! https://t.co/uQzRv54lc5 https://t.co/gEAn3S… +01/28/2018,Sports_celeb,@Aly_Raisman,💪🏻💪🏻💪🏻NO RETOUCHING. @YaraShahidi @Iskra @RachelPlatten @Aerie https://t.co/qCxA66FxEd +01/28/2018,Sports_celeb,@Aly_Raisman,"DREAM COME TRUE. Beyond excited to stand strong with @aerie as a new #AerieREAL Role Model! Together, we want to en… https://t.co/3Y0oxhbW51" +01/28/2018,Sports_celeb,@Aly_Raisman,Good to see officials in Michigan taking steps with an investigation led by Special Prosecutor. If we are to believ… https://t.co/7PhPgyHOPr +01/27/2018,Sports_celeb,@Aly_Raisman,My response to the USOC & Scott Blackmun https://t.co/6Z5l6JrzCm +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: FULL INTERVIEW: Olympic gymnast Aly Raisman speaks out +to the co-hosts of @TheView on Larry Nassar's sentencing hearing, if s…" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @ABC: Aly Raisman to @TheView: ""Our society doesn't allow ourselves to really understand how common abuse is."" https://t.co/PsNCGPQHed" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @ABC: Aly Raisman to @TheView on Larry Nassar: ""Everyone stood up for him...one person enough to complain that he was making them uncomf…" +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: Olympic gymnast Aly Raisman on if she sensed any remorse in Larry Nassar: ""I don't think he understands what he really did wro…" +01/26/2018,Sports_celeb,@Aly_Raisman,RT @TheView: Olympic gymnast Aly Raisman on why she decided to speak up at USA Gymnastics doctor Larry Nassar's sentencing hearing along wi… +01/26/2018,Sports_celeb,@Aly_Raisman,"RT @TheView: ""THEIR TIME IS UP — ABUSE IS NEVER ... OKAY."" Olympic gymnast Aly Raisman on Larry Nassar's sentencing: ""My work, and the army…" +01/26/2018,Sports_celeb,@Aly_Raisman,RT @ABC: LIVE NOW: Olympic gymnast Aly Raisman joins @TheView following sentencing of disgraced USA Gymnastics doctor Larry Nassar. https:/… +01/25/2018,Sports_celeb,@Aly_Raisman,"According to my knowledge, Larry Nassar did not have a medical license in Texas where we trained for the Olympics.… https://t.co/DljAzV6hD7" +01/25/2018,Sports_celeb,@Aly_Raisman,Army of survivors who are NOT going anywhere 💪🏻 https://t.co/HIJMw5cwgE +01/25/2018,Sports_celeb,@Aly_Raisman,Thank you. I appreciate you all so much. https://t.co/kysEo68g5c +01/23/2018,Sports_celeb,@Aly_Raisman,RT @LawCrimeNetwork: Today is day 6 in the #LarryNassar sentencing hearing. Watch live with analysis https://t.co/jlHGIy5euw +06/30/2018,Sports_celeb,@MikeTrout,"RT @nikebaseball: Made to maximize all 5 tools. +This is the new Nike Force Zoom Trout 5, now on https://t.co/PbeTCV7tXy +https://t.co/JE5gBr…" +06/29/2018,Sports_celeb,@MikeTrout,Baltimore ✈️✈️✈️✈️!!! +06/26/2018,Sports_celeb,@MikeTrout,Boston ✈️✈️✈️✈️✈️✈️!! +06/25/2018,Sports_celeb,@MikeTrout,Kansas City ✈️✈️✈️✈️✈️!!! +06/19/2018,Sports_celeb,@MikeTrout,Big thanks to @FOCOusa & @DrinkBODYARMOR!!! https://t.co/SLUK6DFY1U +06/18/2018,Sports_celeb,@MikeTrout,Anaheim✈️✈️✈️✈️!!! +06/17/2018,Sports_celeb,@MikeTrout,"#HappyFathersDay @JeffreyTrout!! Thank you for always being there. + +To all fathers who are there..THANK YOU!! https://t.co/gxDwbQmusI" +06/15/2018,Sports_celeb,@MikeTrout,RT @Eagles: .@mreeseeagles this one’s for you. https://t.co/r84EW1h5t4 +06/14/2018,Sports_celeb,@MikeTrout,Oakland ✈️✈️✈️✈️✈️!!! +06/13/2018,Sports_celeb,@MikeTrout,It’s alive!!! #ObsessedWithBetter https://t.co/eTMCHUrQMc +06/10/2018,Sports_celeb,@MikeTrout,Seattle ✈️✈️✈️✈️✈️!!! +06/09/2018,Sports_celeb,@MikeTrout,RT @JoelEmbiid: Trust The Process!!!! Find a new slant @KingJames +06/07/2018,Sports_celeb,@MikeTrout,Minnesota ✈️✈️✈️✈️✈️!! +06/07/2018,Sports_celeb,@MikeTrout,@EA3k #FlyEaglesFly +06/05/2018,Sports_celeb,@MikeTrout,RT @cj_wentz: My brother & I are excited to have Wentz Bros Outdoors partner with the Outdoor Channel to become their first digital media s… +06/05/2018,Sports_celeb,@MikeTrout,"Happy 30th @TylerTrout, love you bro!!! Careful getting out of bed these days!!! + +#halfwayto60" +06/04/2018,Sports_celeb,@MikeTrout,RT @PGLocal4: ICYMI: Here's the link to my story with the Angels' @MikeTrout. It was such an enjoyable interview...two guys so passionate… +06/02/2018,Sports_celeb,@MikeTrout,RT @jerrybsocal: We did it! AA Angels are 2018 Tournament Champions!!!! https://t.co/uz0b6NRBcK +06/02/2018,Sports_celeb,@MikeTrout,Tiger 🔥🔥🔥! +06/02/2018,Sports_celeb,@MikeTrout,"RT @Cut4: On April 21st, @whitesox pitcher Danny Farquhar suffered a brain hemorrhage. + +Today, he threw out the first pitch, his first tim…" +06/01/2018,Sports_celeb,@MikeTrout,RT @jerrybsocal: Congrats Corona National League AA Angels! We are going to the championship! https://t.co/jJvg6LOg15 +06/01/2018,Sports_celeb,@MikeTrout,RT @MatthewMarsh10: @MikeTrout My son and his 6U All Star Team with be wearing your cleats this post season. Any chance we can get a retwee… +05/31/2018,Sports_celeb,@MikeTrout,"RT @SaltLakeBees: DYK: Only one player in all of @MiLB has more hits than David Fletcher's 72. +#MakeFletchHappen +https://t.co/IDu9vF32KG ht…" +05/28/2018,Sports_celeb,@MikeTrout,"#MEMORIALDAY 🇺🇸 + +Today we honor those who made the ultimate sacrifice...Never Forgotten & Always Thankful." +05/28/2018,Sports_celeb,@MikeTrout,RT @LandisOlivia: MY ALBUM HAS FINALLY BEEN RELEASED!! CHECK IT OUT ON ITUNES OR SPOTIFY🎶❤️ https://t.co/WP80J4sTOK +05/28/2018,Sports_celeb,@MikeTrout,Lebron🔥🔥🔥🔥#wow +05/27/2018,Sports_celeb,@MikeTrout,Detroit✈️✈️✈️✈️✈️!!! +05/26/2018,Sports_celeb,@MikeTrout,@AugieAguilar 👀 +05/24/2018,Sports_celeb,@MikeTrout,New York ✈️✈️✈️✈️!!! +05/21/2018,Sports_celeb,@MikeTrout,Toronto ✈️✈️✈️✈️!!! +05/18/2018,Sports_celeb,@MikeTrout,The hard work and dedication of a teacher is something special. I get to respect that everyday because I married on… https://t.co/u8iywxg27r +05/16/2018,Sports_celeb,@MikeTrout,"""Teaching is the best job in the world, and I go home everyday exhausted, but also energized by the kids I teach.""… https://t.co/2Iy0zwTFWh" +05/14/2018,Sports_celeb,@MikeTrout,RT @Weave1036: Launch angle engaged! 🚀 https://t.co/4qLZImWgEe +05/13/2018,Sports_celeb,@MikeTrout,"To all mothers, happy #MothersDay!! To my mother, @DebbieTrout27, I love you!!" +05/11/2018,Sports_celeb,@MikeTrout,"RT @TTPCumberland: Is commitment the missing piece in your daily health & fitness plan? Take the Pledge today! + +#TakethepledgeCumberland…" +05/11/2018,Sports_celeb,@MikeTrout,@Mar_e_o17 @FortniteGame PUBG !! +05/11/2018,Sports_celeb,@MikeTrout,@arturo_ftw28 @Angels @KoleCalhoun PUBG !! +05/10/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!!! +05/07/2018,Sports_celeb,@MikeTrout,Denver ✈️✈️✈️✈️!!! +05/05/2018,Sports_celeb,@MikeTrout,"There’s only one Albert Pujols. The field and the game wouldn’t be the same without you. + +3000 and COUNTING!!… https://t.co/LYCjCpyVzx" +05/04/2018,Sports_celeb,@MikeTrout,"RT @EKayAngels: When @PujolsFive collected his first @MLB hit on April 2, 2001, @MikeTrout was a 10 year-old 5th grader in Mrs. Kerr's clas…" +05/04/2018,Sports_celeb,@MikeTrout,Proud to see where I'm from making moves!! #TakeThePledgeCumberland https://t.co/B85sOjNC7k +05/04/2018,Sports_celeb,@MikeTrout,Seattle✈️✈️✈️✈️!!! +04/29/2018,Sports_celeb,@MikeTrout,RT @DrinkBODYARMOR: 👀👀👀 @MikeTrout 💥⚾️#ObsessedWithBetter #Switch2BODYARMOR https://t.co/AJB6Md8Ahm +04/28/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +04/27/2018,Sports_celeb,@MikeTrout,RT @howardeskin: It’s great when people don’t forget where they came from. Late this afternoon @MikeTrout made a donation to sponsor my bik… +04/27/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +04/25/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!!! +04/23/2018,Sports_celeb,@MikeTrout,RT @Nicky_Delmonico: Please continue to pray for our brother. 🙏🏻 https://t.co/kXlD53lkqB +04/23/2018,Sports_celeb,@MikeTrout,Houston ✈️✈️✈️✈️✈️!!! +04/18/2018,Sports_celeb,@MikeTrout,"RT @MLByahoosports: Mike Trout stars in a humorous new @DrinkBODYARMOR commercial written/directed by @kobebryant. + +Watch the clip on @yaho…" +04/18/2018,Sports_celeb,@MikeTrout,"Thanks, @DrinkBODYARMOR will take it from here!! + +https://t.co/jDe667qLz3 | #ObsessedWithBetter #Switch2BODYARMOR… https://t.co/wm1bKhZbNy" +04/15/2018,Sports_celeb,@MikeTrout,Anaheim✈️✈️✈️✈️!!! +04/15/2018,Sports_celeb,@MikeTrout,42 +04/15/2018,Sports_celeb,@MikeTrout,Sixers 🔥🔥🔥🔥!! +04/13/2018,Sports_celeb,@MikeTrout,@NWSKansasCity 👀 +04/13/2018,Sports_celeb,@MikeTrout,RT @coleswindell: Somebody’s Been Drinkin’.... +04/12/2018,Sports_celeb,@MikeTrout,Kansas City ✈️✈️✈️✈️✈️!! +04/10/2018,Sports_celeb,@MikeTrout,RT @TBoltAthletics: Congrats to Millville alum Kyle Cox (Baseball) for being selected as Male Athlete of the Week for Gannon University!! @… +04/09/2018,Sports_celeb,@MikeTrout,RT @GUKnights: Congratulations Kyle Cox - Gannon's Male Student-Athlete of the Week! Kyle hit .563 with a 1.063 slugging percentage during… +04/09/2018,Sports_celeb,@MikeTrout,Texas ✈️✈️✈️✈️✈️!!! +04/05/2018,Sports_celeb,@MikeTrout,RT @Lanejohnson65: Caught a speckled @MikeTrout for #EaglesNation today! 🦅🎣 #fishing #trout https://t.co/FFhWuEyEvc +04/05/2018,Sports_celeb,@MikeTrout,Let’s goooo @TigerWoods !!! #Masters 🔥🔥🔥🔥😁 +04/03/2018,Sports_celeb,@MikeTrout,RT @ABC: This 10-year-old boy enjoying a wheelchair swing at an Arkansas park is the most heartwarming thing you'll see today. https://t.co… +04/02/2018,Sports_celeb,@MikeTrout,Anaheim ✈️✈️✈️✈️✈️!! +03/28/2018,Sports_celeb,@MikeTrout,Oakland ✈️✈️✈️✈️✈️!!! +03/22/2018,Sports_celeb,@MikeTrout,"RT @mhazzard1652: Paxton received a gift, his first @MikeTrout shirt from @nelensean! Wearing it with pride! Best player in @mlb and a true…" +03/21/2018,Sports_celeb,@MikeTrout,@Mar_e_o17 @TylerSkaggs37 https://t.co/5bP1fyNLg2 +03/17/2018,Sports_celeb,@MikeTrout,Bridges 👀#wow +03/13/2018,Sports_celeb,@MikeTrout,RT @JessTara: Go check out the fundraiser for Huntington’s Disease our friend @ALaForce (& her hubby) are… https://t.co/2rCfjovAAI +03/11/2018,Sports_celeb,@MikeTrout,@TigerWoods is back !!!! #Let’s Go +03/11/2018,Sports_celeb,@MikeTrout,RT @PGATOUR: Agree or disagree with @BrandtSnedeker? https://t.co/9lb1678sSm +03/11/2018,Sports_celeb,@MikeTrout,RT @GOLF_com: Sunday club twirls are the best club twirls. https://t.co/iQUnQ8FpAw +03/04/2018,Sports_celeb,@MikeTrout,"RT @LandisOlivia: If you haven’t seen it yet, check out the music video for my first original!!! The link is in my bio💕 https://t.co/Hx2nqk…" +02/24/2018,Sports_celeb,@MikeTrout,RT @VladGuerrero27: Describe this moment || describan este momento https://t.co/zKrGEMSsxJ +02/23/2018,Sports_celeb,@MikeTrout,Jess & I will be there!! Looking forward to it!! TICKETS: https://t.co/gnYVCvW0Dc https://t.co/Zt0Pojgpnu +02/20/2018,Sports_celeb,@MikeTrout,RT @tuckervasher: Conversations with @MikeTrout are the best. Always cheers me up! Love you brother. ❤️🙏🏻 +02/19/2018,Sports_celeb,@MikeTrout,RT @GUKnights: Kyle Cox hit the game-winning two-run home run in the top of the seventh inning for @GannonBaseball on opening day! The Gold… +02/18/2018,Sports_celeb,@MikeTrout,"RT @CCron24: Thank you to the @Angels organization and fans for a great 7 years! From the draft in 2011, to my debut in 2014, to now, it’s…" +02/17/2018,Sports_celeb,@MikeTrout,RT @DrinkBODYARMOR: #BehindTheScenes @MikeTrout... #ComingSoon 👀⚾️💥 https://t.co/Z5uJHbNyRk +02/17/2018,Sports_celeb,@MikeTrout,"Baseball is back!! LET’S GO!! + +2018 @ANGELS #SPRINGTRAINING" +02/15/2018,Sports_celeb,@MikeTrout,"RT @Angels: To celebrate #ValentinesDay, @LAAStrikeForce and Choco Bear helped patients at @chocchildrens create special valentines for the…" +02/15/2018,Sports_celeb,@MikeTrout,"RT @JessTara: I’d go anywhere with you, my sweet husband 💛 ••• #happyvalentinesday https://t.co/lKvuHUzgs0" +02/14/2018,Sports_celeb,@MikeTrout,Happy first #ValentinesDay to my beautiful wife!! I love you @JessTara!! +02/14/2018,Sports_celeb,@MikeTrout,RT @HunterSibley: Thanks @MikeTrout honored to wear #1 this year!! 🔥⚾️ https://t.co/zYXsyGhUVj +02/14/2018,Sports_celeb,@MikeTrout,RT @royhallenbeck: Big thanks to @MikeTrout for stopping by and presenting his old #1 to this years captain @HunterSibley Thanks for always… +02/12/2018,Sports_celeb,@MikeTrout,@MLB 👀 +02/08/2018,Sports_celeb,@MikeTrout,RT @criscarter80: Hungry dogs run faster‼️ Kelce can play for my team damn #Underdogs +02/06/2018,Sports_celeb,@MikeTrout,RT @KevinHart4real: All I can do is laugh....We had a blast yesterday at the game. I treated my entire team to the… https://t.co/qNSkUf0bAI +02/06/2018,Sports_celeb,@MikeTrout,RT @Alex_Curry: It’s REAL the @Eagles are #SuperBowl CHAMPS and here’s that @Markgubicza celebration 🙌🏼🏈💚 now all we need is @MikeTrout fre… +02/06/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +02/05/2018,Sports_celeb,@MikeTrout,RT @JeffreyTrout: The Great Merrill Reese! Champs! https://t.co/fQKwyeA6nq +02/05/2018,Sports_celeb,@MikeTrout,"Let’s goooooooo !!!! Champs !! +#FlyEaglesFly" +02/05/2018,Sports_celeb,@MikeTrout,Jake Elliott!!!! +02/05/2018,Sports_celeb,@MikeTrout,Ertz!!!! +02/05/2018,Sports_celeb,@MikeTrout,Ertz !!!! +02/04/2018,Sports_celeb,@MikeTrout,@FoxSportsWest 👀 #FlyEaglesFly https://t.co/ANHe5o0vhM +02/04/2018,Sports_celeb,@MikeTrout,RT @DebbieTrout27: 🦅 We are on our way to Minnesota to bring home the win !🦅@JeffreyTrout @LevickTeal @MikeTrout @JessTara @TylerTrout @Lau… +02/04/2018,Sports_celeb,@MikeTrout,RT @cj_wentz: My bro is gonna shine bright tonight! So excited to see him & this team go out and compete tonight. Been through it all this… +02/04/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +02/04/2018,Sports_celeb,@MikeTrout,RT @DebbieTrout27: 🦅E-A-G-L-E-S 🦅 Game day !!! https://t.co/QIUgXc6uAg +02/04/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly #FGLMystic https://t.co/C7Oo6SQCjy +02/03/2018,Sports_celeb,@MikeTrout,"RT @nflnetwork: Are you flying with the @Eagles on Super Bowl Sunday? + +#FlyEaglesFly #SBLII https://t.co/lIESN2Hr4j" +02/01/2018,Sports_celeb,@MikeTrout,"RT @Eagles: One game is all we got. One game is all we need. + +#SBLII | #FlyEaglesFly https://t.co/ykbgOt5vBf" +01/29/2018,Sports_celeb,@MikeTrout,RT @TigerWoods: Can’t thank the San Diego fans enough. I scrambled my butt off but happy with my first event back. See you at Riv! +01/25/2018,Sports_celeb,@MikeTrout,Tiger ! +01/25/2018,Sports_celeb,@MikeTrout,"Congratulations to Vladimir Guerrero, Chipper Jones, Jim Thome & Trevor Hoffman. It was something special to watch… https://t.co/QH1A4ngOmW" +01/25/2018,Sports_celeb,@MikeTrout,"RT @Angels: 📞 HE’S IN! 📞 + +#VladHOF https://t.co/TMIIEfcieg" +01/24/2018,Sports_celeb,@MikeTrout,@Weave1036 @GRICHARDS26 @realAM23 Hahahahahah +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 Turned @TylerSkaggs37 into a birds fan why not you ? +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 DUKE ! +01/24/2018,Sports_celeb,@MikeTrout,@GRICHARDS26 @realAM23 #FlyEaglesFly +01/22/2018,Sports_celeb,@MikeTrout,@blakebaccello #FlyEaglesFly +01/22/2018,Sports_celeb,@MikeTrout,"Super Bowl !!! Lets gooooooo!!!!! +#FlyEaglesFly" +01/21/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Pumped to run back out there in front of our fired up fans tonight! NFC Championship @LFFStadium! Let’s GOOOOO! #FlyEaglesFly… +01/21/2018,Sports_celeb,@MikeTrout,"Letsssssss goooooooo !!!!!! +#FlyEaglesFly" +01/21/2018,Sports_celeb,@MikeTrout,RT @Ike58Reese: #WeAllWeGot 😎👍🏿 https://t.co/ilAd68jjUP +01/21/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/21/2018,Sports_celeb,@MikeTrout,"RT @DrinkBODYARMOR: .@DrinkBODYARMOR Sports Drink TAKING OVER the Octagon tonight as the OFFICIAL SPORTS DRINK of @UFC, hydrating #UFC220 i…" +01/20/2018,Sports_celeb,@MikeTrout,@Markgubicza @TylerSkaggs37 @Vikings He’s going to the Linc for the first time..he doesn’t know what he’s getting into !!!! #FlyEaglesFly +01/20/2018,Sports_celeb,@MikeTrout,@TylerSkaggs37 @Vikings https://t.co/Qvsaby1UFc +01/20/2018,Sports_celeb,@MikeTrout,@DiaDia18 Yes !! +01/20/2018,Sports_celeb,@MikeTrout,Tomorrow !!!! #FlyEaglesFly https://t.co/d7iSDao6P7 +01/20/2018,Sports_celeb,@MikeTrout,"RT @SportsRadioWIP: ""I'm anxious to walk into the stadium to hear what the crowd level at an outdoor arena like that. And I think it's goin…" +01/20/2018,Sports_celeb,@MikeTrout,RT @greengoblin: PHILLY LETS DO THIS❗️ https://t.co/7rS6sLMxVP +01/19/2018,Sports_celeb,@MikeTrout,@TorreySmithWR Let’s gooooooo!!!! +01/19/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Can’t wait to hear @LFFStadium this Sunday! #FlyEaglesFly https://t.co/GsbqRYaCQw +01/19/2018,Sports_celeb,@MikeTrout,RT @JoelEmbiid: Fantastic day!!!! We got a great win and I became an ALL STAR.... I wanna thank all of you guys out there and the organizat… +01/17/2018,Sports_celeb,@MikeTrout,@34badger34 https://t.co/0JC35S5VnN +01/14/2018,Sports_celeb,@MikeTrout,"RT @CoreyClement_6: They count us out , we just keep rolling #FlyEaglesFly" +01/14/2018,Sports_celeb,@MikeTrout,"RT @JonHeyman: this is a happy fellow. nice winter for @MikeTrout (tho i won't ask him to rank in order the ohtani pickup, the eagles playo…" +01/14/2018,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Best game atmosphere ever!!! Thank you all!!!! See you next week!! +01/14/2018,Sports_celeb,@MikeTrout,RT @SNFonNBC: Jeffrey Lurie in the @Eagles locker room is a mood. https://t.co/0wZOF7JPev +01/14/2018,Sports_celeb,@MikeTrout,@Cam_Bedrock He tripped bro lol +01/14/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,@ETeaparty25 @White_Willy13 City hall ???!!! #FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,@Cam_Bedrock 👀 #FlyEaglesFly +01/14/2018,Sports_celeb,@MikeTrout,"Let’s gooooooooo !!!! +#FlyEaglesFly" +01/13/2018,Sports_celeb,@MikeTrout,@SportsRadioWIP @Eagles Let’s gooooo #FLYEAGLESFLY +01/13/2018,Sports_celeb,@MikeTrout,@Markgubicza @caplannfl @adamfgoldberg Go Birds !!! #FlyEaglesFly +01/13/2018,Sports_celeb,@MikeTrout,RT @Markgubicza: Ready for some football! #FlyEaglesFly #NFLPlayoffs @MikeTrout @caplannfl @adamfgoldberg #PennCharter https://t.co/USMnpg9… +01/13/2018,Sports_celeb,@MikeTrout,#FlyEaglesFly +01/13/2018,Sports_celeb,@MikeTrout,"RT @Eagles: Make it happen. + +#FlyEaglesFly https://t.co/axf1ZfrX3d" +01/13/2018,Sports_celeb,@MikeTrout,RT @TreyBurton8: Win or go home time... https://t.co/dEqtr654Bv +01/11/2018,Sports_celeb,@MikeTrout,"RT @cj_wentz: These guys are the real deal and crazy fun to watch! Let’s get them to the All-Star game folks! Much love fellas! 😎 + +#NBAVote…" +01/10/2018,Sports_celeb,@MikeTrout,"RT @aj_pujols55: WOW 17!!! 1-7 this is a special year as I continue my walk with the Lord and fulfill his works through the special gifts,…" +01/10/2018,Sports_celeb,@MikeTrout,"RT @JessTara: December 2️⃣ 0️⃣ 1️⃣ 7️⃣ 🖤 + +How has it been one month already?! Woah. Forgive me, as I’ve got… https://t.co/xNcrUhS05M" +01/09/2018,Sports_celeb,@MikeTrout,RT @cherylrosenbrg: @MikeTrout Orange County kid/Penn student is missing. It’d be awesome if you could RT this flier to get more eyes on it… +01/07/2018,Sports_celeb,@MikeTrout,"RT @LevickTeal: HAPPY BIRTHDAY TO THE SILVER FOX, THE LEGEND HIMSELF, A ONE OF A KIND PAPA, MY DAD JEFFY!! We love you so much Dad!!! #best…" +01/07/2018,Sports_celeb,@MikeTrout,@VictorRojas @turn__2 @Markgubicza @Eagles Eagles are still in it Chiefs aren’t...#FACTS #FlyEaglesFly 😁😁 +01/04/2018,Sports_celeb,@MikeTrout,@JessTara @MLBNetworkRadio @JimCantore https://t.co/gjsShMH6kn +01/04/2018,Sports_celeb,@MikeTrout,RT @JessTara: @MLBNetworkRadio @MikeTrout @JimCantore He’s about one weather map photo short of me muting his text message alerts... 🤦🏼‍♀️📲… +01/01/2018,Sports_celeb,@MikeTrout,Happy New Year !!! +12/31/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/26/2017,Sports_celeb,@MikeTrout,RT @TylerTrout: Merry Christmas from a cold Eagles game! #FlyEaglesFly https://t.co/g1rshsd0Ea +12/26/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/26/2017,Sports_celeb,@MikeTrout,"My wife, my family, my friends make today special!! #MerryChristmas!! https://t.co/96SFuWSxGV" +12/20/2017,Sports_celeb,@MikeTrout,RT @Weave1036: @MikeTrout @toriihunter48 What is that Colgate!! 😂 goodtimes congrats again kiiidddd! +12/18/2017,Sports_celeb,@MikeTrout,Views 🙌🏻 https://t.co/gUNFfp546C +12/18/2017,Sports_celeb,@MikeTrout,RT @ZERTZ_86: Raise your hand if you’re celebrating #VictoryMonday! 🙋‍♂️ #FlyEaglesFly https://t.co/InzwwB1aJa +12/18/2017,Sports_celeb,@MikeTrout,"Stacked at 8!!! #8vs24 + +3 Championships, 8 All-Star Games, 2 Scoring Titles, a slam dunk contest champ, 81 Points,… https://t.co/ZcJEDz9rfr" +12/17/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/14/2017,Sports_celeb,@MikeTrout,RT @cj_wentz: Surgery ✔️ the comeback officially begins now! The Lord truly blessed me with this beautiful young lady to walk by my side an… +12/13/2017,Sports_celeb,@MikeTrout,RT @JessTara: This weekend was pure m a g i c ✨ https://t.co/L5wAsfpuyk +12/12/2017,Sports_celeb,@MikeTrout,@dannyweissphoto @JessTara Thanks everyone ! @AmyKatzEvents did an amazing job ! +12/12/2017,Sports_celeb,@MikeTrout,"From this day forward, you shall not walk alone. My heart will be your shelter, and my arms will be your home . I l… https://t.co/CreZhhAbTa" +12/11/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly @Weave1036 @TylerSkaggs37 +12/11/2017,Sports_celeb,@MikeTrout,Huge !!! +12/10/2017,Sports_celeb,@MikeTrout,What a catch !!!! #Alshon +12/10/2017,Sports_celeb,@MikeTrout,Wonder if Carson had anything to do with that celebration ??!! 🤔🤔🤔🤔#Canadians#Snows +12/10/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/09/2017,Sports_celeb,@MikeTrout,RT @CCron24: Ohtani should crash Trout’s wedding. DM me for details bro! #WelcomeToAnaheim +12/08/2017,Sports_celeb,@MikeTrout,👀 +12/06/2017,Sports_celeb,@MikeTrout,RT @NEWeatherWx: RT if you are ready for winter! https://t.co/By5cbu6BHZ +12/03/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +12/02/2017,Sports_celeb,@MikeTrout,@ortegsnv1 @CapsForKids Happy Holidays!! +12/02/2017,Sports_celeb,@MikeTrout,RT @ortegsnv1: Thank you @MikeTrout for signing a hat for my son. Through the @CapsForKids program. We go and see the Angels every year you… +12/01/2017,Sports_celeb,@MikeTrout,Tiger 👀!! 🔥🔥🔥 +11/26/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/24/2017,Sports_celeb,@MikeTrout,RT @JessTara: H a p p y T h a n k s g i v i n g from my little family to yours! 🦃🍴 #countingmyblessings… https://t.co/sTQpvppfwT +11/24/2017,Sports_celeb,@MikeTrout,#HappyThanksgiving https://t.co/XD8aidAEVe +11/24/2017,Sports_celeb,@MikeTrout,"From my family to yours, #HappyThanksgiving!! + +There’s a lot to be thankful for!! https://t.co/Vawm8mu9xw" +11/24/2017,Sports_celeb,@MikeTrout,RT @JeffreyTrout: Happy Thanksgiving!! #family @DebbieTrout27 @LevickTeal @MikeTrout @TylerTrout @JessTara @LaurenCerami https://t.co/D7MDP… +11/21/2017,Sports_celeb,@MikeTrout,RT @coachkw15: Congratulations to @HunterSibley for earning the #1 Jersey. Well deserved honor ! @MikeTrout @royhallenbeck @mje643 https://… +11/20/2017,Sports_celeb,@MikeTrout,@Dutch_Oven45 @AaronBoone_ESPN 🤔 +11/19/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/17/2017,Sports_celeb,@MikeTrout,"Special play by a good guy!! #MVP + +Well deserved, @JoseAltuve27!!" +11/15/2017,Sports_celeb,@MikeTrout,Nothing better then listening to @DickieV call a basketball game! #Legend +11/15/2017,Sports_celeb,@MikeTrout,Duke 🔥🔥!!! +11/14/2017,Sports_celeb,@MikeTrout,Simmons 👀 +11/13/2017,Sports_celeb,@MikeTrout,"The season is over, but baseball continues!! Stay in the game with me at #MLB9Innings17!! + +iOS App Store:… https://t.co/zTY8zvpYpR" +11/12/2017,Sports_celeb,@MikeTrout,@TylerSkaggs37 @ZO2_ But did they win tho 🤔 +11/11/2017,Sports_celeb,@MikeTrout,Proudly flying the flag today for the military men & women who have dedicated their lives to protecting our freedom.#VeteransDay +11/07/2017,Sports_celeb,@MikeTrout,In shock over the terrible news about Roy Halladay... a pitcher I grew up admiring & rooting for. Praying for his family & friends. #RIPDoc +11/05/2017,Sports_celeb,@MikeTrout,RT @ZERTZ_86: We’re back in black today Philly! 🔒IN!! #FlyEaglesFly https://t.co/2uOaBJCB9y +11/05/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +11/02/2017,Sports_celeb,@MikeTrout,RT @JUST_JUP: I am currently out of the country but wanted to say thank you to the @Angels for the opportunity to come back to Anaheim. htt… +10/31/2017,Sports_celeb,@MikeTrout,RT @TheWorldof_AJ: Welcome to Philly my guy @JayTrain23 🗣choo...choo🚂🚂🚂🚂.... #FlyEaglesFly +10/29/2017,Sports_celeb,@MikeTrout,#FlyEaglesFly +07/02/2018,Politicians,@realDonaldTrump,Congratulations to Andres Manuel Lopez Obrador on becoming the next President of Mexico. I look very much forward t… https://t.co/g2GfAkKPd0 +07/01/2018,Politicians,@realDonaldTrump,RT @larryelder: BEWARE! #TrumpDerangementSyndrome can be career ending. https://t.co/qm86ya6PlJ +07/01/2018,Politicians,@realDonaldTrump,"A big week, especially with our numerous victories in the Supreme Court. Heading back to the White House now. Focus… https://t.co/jPZ5kt4XY1" +07/01/2018,Politicians,@realDonaldTrump,"The Liberal Left, also known as the Democrats, want to get rid of ICE, who do a fantastic job, and want Open Border… https://t.co/gVNySrk4Oa" +07/01/2018,Politicians,@realDonaldTrump,I will be interviewed by @MariaBartiromo at 10:00 A.M. on @FoxNews +06/30/2018,Politicians,@realDonaldTrump,"When people come into our Country illegally, we must IMMEDIATELY escort them back out without going through years o… https://t.co/l0cBzDIMn0" +06/30/2018,Politicians,@realDonaldTrump,I will be interviewed by @MariaBartiromo on Sunday on @FoxNews at 10:00 A. M. Enjoy! +06/30/2018,Politicians,@realDonaldTrump,"Either we need to elect more Republicans in November or Republicans must end the ridiculous 60 vote, or Filibuster,… https://t.co/BZR2xb8jqq" +06/30/2018,Politicians,@realDonaldTrump,"I never pushed the Republicans in the House to vote for the Immigration Bill, either GOODLATTE 1 or 2, because it c… https://t.co/tpKMP3vO6l" +06/30/2018,Politicians,@realDonaldTrump,"A friend of mine and a man who has truly seen politics and life as few others ever will, Sean Spicer, has written a… https://t.co/klFqfUfhlm" +06/30/2018,Politicians,@realDonaldTrump,"I will be making my choice for Justice of the United States Supreme Court on the first Monday after the July 4th Holiday, July 9th!" +06/30/2018,Politicians,@realDonaldTrump,"Just spoke to King Salman of Saudi Arabia and explained to him that, because of the turmoil & disfunction in Iran a… https://t.co/xxFxafSl3H" +06/30/2018,Politicians,@realDonaldTrump,"To the great and brave men and women of ICE, do not worry or lose your spirit. You are doing a fantastic job of kee… https://t.co/H4iJtg4xB2" +06/30/2018,Politicians,@realDonaldTrump,"The Democrats are making a strong push to abolish ICE, one of the smartest, toughest and most spirited law enforcem… https://t.co/WbFYrPzRLk" +06/30/2018,Politicians,@realDonaldTrump,RT @DanScavino: “@GovMikeHuckabee: Trump could nominate Moses for Supreme Court and Democrats would fight it” https://t.co/5wx3nVJxvF +06/30/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement account c…" +06/30/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Before going any further today, I want to address the horrific shooting that took place yesterday at the Capital Gazet…" +06/30/2018,Politicians,@realDonaldTrump,"RT @IvankaTrump: Thank you @SecPompeo. +It was an honor to join you and your talented, passionate colleagues at @StateDept to honor the her…" +06/30/2018,Politicians,@realDonaldTrump,RT @IvankaTrump: Thank you Senator Alexander for your leadership on career + technical education. 11+ million students and workers across o… +06/29/2018,Politicians,@realDonaldTrump,The new plant being built by Foxconn in Wisconsin is incredible. Congratulations to the people of Wisconsin and to… https://t.co/VH2tbPgIbH +06/29/2018,Politicians,@realDonaldTrump,"RT @FoxBusiness: .@IvankaTrump: ""I think one of the tremendous opportunities that were seeing because the economy is so strong is that peop…" +06/29/2018,Politicians,@realDonaldTrump,"RT @Scavino45: “@ICEgov New York operation leads to arrests of 3 dozen Darknet vendors selling illicit goods, weapons, drugs seized and mor…" +06/29/2018,Politicians,@realDonaldTrump,"Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement accoun… https://t.co/GzLNe4WkQA" +06/29/2018,Politicians,@realDonaldTrump,"Before going any further today, I want to address the horrific shooting that took place yesterday at the Capital Ga… https://t.co/wcukrK7M48" +06/28/2018,Politicians,@realDonaldTrump,"Prior to departing Wisconsin, I was briefed on the shooting at Capital Gazette in Annapolis, Maryland. My thoughts… https://t.co/DUhjdWWxBP" +06/28/2018,Politicians,@realDonaldTrump,"AMERICA IS OPEN FOR BUSINESS! +https://t.co/fuRF2Z6CZl" +06/28/2018,Politicians,@realDonaldTrump,"Today, we broke ground on a plant that will provide jobs for up to 15,000 Wisconsin Workers! As Foxconn has discove… https://t.co/AkvrABaDNj" +06/28/2018,Politicians,@realDonaldTrump,"I am in Milwaukee, Wisconsin, for meetings. Soon to leave for a big groundbreaking for Foxconn, which is building a… https://t.co/d5Y3nMwa3g" +06/28/2018,Politicians,@realDonaldTrump,....persecuted on old and/or totally unrelated charges (there was no collusion and there was no obstruction of the… https://t.co/SpG2p56INu +06/28/2018,Politicians,@realDonaldTrump,When is Bob Mueller going to list his Conflicts of Interest? Why has it taken so long? Will they be listed at the t… https://t.co/RNYRkyxZFx +06/28/2018,Politicians,@realDonaldTrump,Peter Strzok worked as the leader of the Rigged Witch Hunt for a long period of time - he got it started and was on… https://t.co/HgmUjpufjL +06/28/2018,Politicians,@realDonaldTrump,"Just watched @SharkGregNorman on @foxandfriends. Said “President is doing a great job. All over the world, people w… https://t.co/SBsUQf6LYp" +06/28/2018,Politicians,@realDonaldTrump,"Amy Kremer, Women for Trump, was so great on @foxandfriends. Brave and very smart, thank you Amy! @AmyKremer" +06/28/2018,Politicians,@realDonaldTrump,"Russia continues to say they had nothing to do with Meddling in our Election! Where is the DNC Server, and why didn… https://t.co/aKI3hu6wef" +06/28/2018,Politicians,@realDonaldTrump,"Lover FBI Agent Peter Strzok was given poor marks on yesterday’s closed door testimony and, according to most repor… https://t.co/rijMTcMPQg" +06/28/2018,Politicians,@realDonaldTrump,...home addresses – putting these selfless public servants in harm’s way. These radical protesters want ANARCHY – b… https://t.co/sqGBkGUxM2 +06/28/2018,Politicians,@realDonaldTrump,In recent days we have heard shameless attacks on our courageous law enforcement officers. Extremist Democrat polit… https://t.co/bRsezeDPBR +06/28/2018,Politicians,@realDonaldTrump,"Thank you North Dakota. Together, we are MAKING AMERICA SAFE AND GREAT AGAIN! #MAGA https://t.co/6Am9n6px8I" +06/27/2018,Politicians,@realDonaldTrump,Just landed in North Dakota with @SenJohnHoeven and @RepKevinCramer. We will see everyone at Scheels Arena shortly! https://t.co/pakUigKB61 +06/27/2018,Politicians,@realDonaldTrump,"Today, it was my great honor to welcome President Marcelo Rebelo de Sousa of Portugal to the @WhiteHouse!🇺🇸🇵🇹 https://t.co/yd37K4Ei8R" +06/27/2018,Politicians,@realDonaldTrump,Heading to North Dakota to fully stand with and endorse Kevin Cramer for Senate. He is an extraordinary Congressman… https://t.co/qMniRSctDT +06/27/2018,Politicians,@realDonaldTrump,Statement on Justice Anthony Kennedy. #SCOTUS https://t.co/8aWJ6fWemA +06/27/2018,Politicians,@realDonaldTrump,"Today, I was thrilled to join student leaders from Colleges and Universities across the country... https://t.co/OQp3NcOeE4" +06/27/2018,Politicians,@realDonaldTrump,"Harley-Davidson should stay 100% in America, with the people that got you your success. I’ve done so much for you,… https://t.co/kNmruD0swh" +06/27/2018,Politicians,@realDonaldTrump,"Supreme Court rules in favor of non-union workers who are now, as an example, able to support a candidate of his or… https://t.co/zZlPRIgB26" +06/27/2018,Politicians,@realDonaldTrump,"HOUSE REPUBLICANS SHOULD PASS THE STRONG BUT FAIR IMMIGRATION BILL, KNOWN AS GOODLATTE II, IN THEIR AFTERNOON VOTE… https://t.co/7NPrGsNjNW" +06/27/2018,Politicians,@realDonaldTrump,"Congratulations to Maxine Waters, whose crazy rants have made her, together with Nancy Pelosi, the unhinged FACE of… https://t.co/CusnE1izm7" +06/27/2018,Politicians,@realDonaldTrump,Big and conclusive win by Mitt Romney. Congratulations! I look forward to working together - there is so much good… https://t.co/CqjLaLDkkc +06/27/2018,Politicians,@realDonaldTrump,The legendary Gary Player at Turnberry in Scotland! https://t.co/3oGoqWhhtA +06/27/2018,Politicians,@realDonaldTrump,A great First Lady! https://t.co/Pt35aluI4C +06/27/2018,Politicians,@realDonaldTrump,RT @The_Trump_Train: @realDonaldTrump https://t.co/9ubTCAyZkq +06/27/2018,Politicians,@realDonaldTrump,The Democrats are in Turmoil! Open Borders and unchecked Crime a certain way to lose elections. Republicans are for… https://t.co/srI2CTyDds +06/27/2018,Politicians,@realDonaldTrump,"Wow! Big Trump Hater Congressman Joe Crowley, who many expected was going to take Nancy Pelosi’s place, just LOST h… https://t.co/4TuokLaPMJ" +06/27/2018,Politicians,@realDonaldTrump,"Tremendous win for Congressman Dan Donovan. You showed great courage in a tough race! New York, and my many friends… https://t.co/JvRCgZpcG8" +06/27/2018,Politicians,@realDonaldTrump,Congratulations to Governor Henry McMaster on your BIG election win! South Carolina loves you. We are all proud of… https://t.co/jWLZKh1S99 +06/26/2018,Politicians,@realDonaldTrump,"Today, we tell the story of an incredible HERO who defended our nation in World War Two – First Lieutenant Garlin M… https://t.co/nrpii7C3KK" +06/26/2018,Politicians,@realDonaldTrump,SUPREME COURT UPHOLDS TRUMP TRAVEL BAN. Wow! +06/26/2018,Politicians,@realDonaldTrump,“The most profound question of our era: Was there a conspiracy in the Obama Department of Justice and the FBI to pr… https://t.co/EY5JfbWzmt +06/26/2018,Politicians,@realDonaldTrump,"The face of the Democrats is now Maxine Waters who, together with Nancy Pelosi, have established a fine leadership… https://t.co/k95es4evL2" +06/26/2018,Politicians,@realDonaldTrump,A Harley-Davidson should never be built in another country-never! Their employees and customers are already very an… https://t.co/iTUQaIXwHJ +06/26/2018,Politicians,@realDonaldTrump,"It was great being with Governor Henry McMaster last night in South Carolina. Henry is tough on Crime and Borders,… https://t.co/XPG4k94aRL" +06/26/2018,Politicians,@realDonaldTrump,....We are finishing our study of Tariffs on cars from the E.U. in that they have long taken advantage of the U.S.… https://t.co/MOBnXWSfYl +06/26/2018,Politicians,@realDonaldTrump,"....When I had Harley-Davidson officials over to the White House, I chided them about tariffs in other countries, l… https://t.co/PhSv1BSMYa" +06/26/2018,Politicians,@realDonaldTrump,....We are getting other countries to reduce and eliminate tariffs and trade barriers that have been unfairly used… https://t.co/n5sU0778dD +06/26/2018,Politicians,@realDonaldTrump,Early this year Harley-Davidson said they would move much of their plant operations in Kansas City to Thailand. Tha… https://t.co/uDeWOh3mWJ +06/26/2018,Politicians,@realDonaldTrump,Thank you South Carolina. Now let’s get out tomorrow and VOTE for @HenryMcMaster! https://t.co/5xlz0wfMfu +06/25/2018,Politicians,@realDonaldTrump,Just landed in South Carolina - will be at the McMaster rally shortly! #MAGA +06/25/2018,Politicians,@realDonaldTrump,The hearing of Peter Strzok and the other hating frauds at the FBI & DOJ should be shown to the public on live tele… https://t.co/TFLQ7s7kmy +06/25/2018,Politicians,@realDonaldTrump,"Why is Senator Mark Warner (D-VA), perhaps in a near drunken state, claiming he has information that only he and Bo… https://t.co/oumPE3BtVX" +06/25/2018,Politicians,@realDonaldTrump,"RT @WhiteHouse: Today, @realDonaldTrump and @FLOTUS welcomed @KingAbdullahII and @QueenRania of the Hashemite Kingdom of Jordan to the Whit…" +06/25/2018,Politicians,@realDonaldTrump,“Director David Lynch: Trump Could Go Down as One of the Greatest Presidents” https://t.co/AcgnIZNh6e +06/25/2018,Politicians,@realDonaldTrump,"Surprised that Harley-Davidson, of all companies, would be the first to wave the White Flag. I fought hard for them… https://t.co/cTQIqsyfbK" +06/25/2018,Politicians,@realDonaldTrump,"Congresswoman Maxine Waters, an extraordinarily low IQ person, has become, together with Nancy Pelosi, the Face of… https://t.co/iZvAew0qOB" +06/25/2018,Politicians,@realDonaldTrump,RT @EricTrump: Record High Economic Optimism: 51% of people think the the economy is good or excellent - this is the highest number @CNBC h… +06/25/2018,Politicians,@realDonaldTrump,"RT @TrumpGolf: Congratulations to our dear friend and @TrumpCharlotte member, @ScottMcCarron, on his incredible win at the @AmFamChamp this…" +06/25/2018,Politicians,@realDonaldTrump,RT @marcorubio: Trump haters still haven’t realized how much they help him with their condescension of those who either voted for him or do… +06/25/2018,Politicians,@realDonaldTrump,"Will be heading to one of my favorite places, South Carolina, to fight for one of my original “fighters,” Governor… https://t.co/WUmWQiimJq" +06/25/2018,Politicians,@realDonaldTrump,"....If this is done, illegal immigration will be stopped in it’s tracks - and at very little, by comparison, cost.… https://t.co/HDii4VkUNc" +06/25/2018,Politicians,@realDonaldTrump,"Hiring manythousands of judges, and going through a long and complicated legal process, is not the way to go - will… https://t.co/try3EcJSAJ" +06/25/2018,Politicians,@realDonaldTrump,Such a difference in the media coverage of the same immigration policies between the Obama Administration and ours.… https://t.co/SIv7btegSk +06/25/2018,Politicians,@realDonaldTrump,"I have tried to stay uninvolved with the Department of Justice and FBI (although I do not legally have to), because… https://t.co/rBebc0GHdb" +06/25/2018,Politicians,@realDonaldTrump,"The Red Hen Restaurant should focus more on cleaning its filthy canopies, doors and windows (badly needs a paint jo… https://t.co/CObp1kkDlk" +06/25/2018,Politicians,@realDonaldTrump,Former Attorney General Michael Mukasey said that President Trump is probably correct that there was surveillance o… https://t.co/O5DN6DKreR +06/25/2018,Politicians,@realDonaldTrump,".@RepClayHiggins has been a great help to me on Cutting Taxes, creating great new healthcare programs at low cost,… https://t.co/8Y4VAfVZK3" +06/25/2018,Politicians,@realDonaldTrump,"House Republicans could easily pass a Bill on Strong Border Security but remember, it still has to pass in the Sena… https://t.co/1tJeUrJyV5" +06/25/2018,Politicians,@realDonaldTrump,.@jimmyfallon is now whimpering to all that he did the famous “hair show” with me (where he seriously messed up my… https://t.co/O7qrzxhEWv +06/24/2018,Politicians,@realDonaldTrump,The United States is insisting that all countries that have placed artificial Trade Barriers and Tariffs on goods g… https://t.co/5i0yZh1XSK +06/24/2018,Politicians,@realDonaldTrump,"....Our Immigration policy, laughed at all over the world, is very unfair to all of those people who have gone thro… https://t.co/NnqUpbRHLp" +06/24/2018,Politicians,@realDonaldTrump,"We cannot allow all of these people to invade our Country. When somebody comes in, we must immediately, with no Jud… https://t.co/X8GwD9vA5p" +06/24/2018,Politicians,@realDonaldTrump,"Democrats, fix the laws. Don’t RESIST. We are doing a far better job than Bush and Obama, but we need strength and… https://t.co/0bxgKrG5Og" +06/24/2018,Politicians,@realDonaldTrump,Major Wall Street Journal opinion piece today talking about the Russian Witch Hunt and the disgrace that it is. So… https://t.co/ADkg5DLfQo +06/23/2018,Politicians,@realDonaldTrump,AMERICA IS OPEN FOR BUSINESS! https://t.co/ZjdlHwJlxm +06/23/2018,Politicians,@realDonaldTrump,Thank you @NVGOP! #MAGA https://t.co/OGTR2j6PGG +06/23/2018,Politicians,@realDonaldTrump,"Happy Birthday to Supreme Court Justice Clarence Thomas, a friend and great man! https://t.co/hlXYYkTjcv" +06/23/2018,Politicians,@realDonaldTrump,"It’s very sad that Nancy Pelosi and her sidekick, Cryin’ Chuck Schumer, want to protect illegal immigrants far more… https://t.co/HidQanCeMr" +06/23/2018,Politicians,@realDonaldTrump,"RT @HuckabeeOnTBN: TONIGHT: the President of the United States, @realDonaldTrump, sits down to discuss his thoughts about international rel…" +06/23/2018,Politicians,@realDonaldTrump,Heading to Nevada to talk trade and immigration with supporters. Country’s economy is stronger than ever before wit… https://t.co/kXEzed3ign +06/23/2018,Politicians,@realDonaldTrump,"My thoughts and prayers are with Representative Katie Arrington of South Carolina, including all of those involved… https://t.co/s2qGDVlASC" +06/23/2018,Politicians,@realDonaldTrump,"...everyone how much he likes me, but he will only vote with Nancy Pelosi. Keith is strong on borders and tough on… https://t.co/ytZoim3yaI" +06/23/2018,Politicians,@realDonaldTrump,".@VP Pence is heading to Pittsburgh, Pennsylvania where we have both strongly endorsed one of the finest men around… https://t.co/fkXBNxvWZe" +06/23/2018,Politicians,@realDonaldTrump,"Drudge Report “OBAMA KEPT THEM IN CAGES, WRAPPED THEM IN FOIL” We do a much better job while at the same time main… https://t.co/niwUf6T2rg" +06/23/2018,Politicians,@realDonaldTrump,“Disability applications plunge as economy strengthens” Failing New York Times +06/23/2018,Politicians,@realDonaldTrump,The National Association of Manufacturers just announced that 95.1% of Manufacturers “have a positive outlook for t… https://t.co/Xhx3FDLAxT +06/23/2018,Politicians,@realDonaldTrump,The Russian Witch Hunt is Rigged! +06/23/2018,Politicians,@realDonaldTrump,".@FoxNews Poll numbers plummet on the Democrat inspired and paid for Russian Witch Hunt. With all of the bias, lyi… https://t.co/42rEL4UcSF" +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Congressman Ron DeSantis, a top student at Yale and Harvard Law School, is running for Governor of the Great State of…" +06/23/2018,Politicians,@realDonaldTrump,RT @PressSec: It’s shameful that dems and the media exploited this photo of a little girl to push their agenda. She was not separated from… +06/23/2018,Politicians,@realDonaldTrump,RT @JesseBWatters: Will be 🔥@TPUSA https://t.co/r06LyQ9Obd +06/23/2018,Politicians,@realDonaldTrump,"RT @Scavino45: 🚨Happening Now: +President Trump delivers remarks on immigration with Angel Families: https://t.co/WHGk1H7T7u https://t.co/rV…" +06/23/2018,Politicians,@realDonaldTrump,RT @realDonaldTrump: We are gathered today to hear directly from the AMERICAN VICTIMS of ILLEGAL IMMIGRATION. These are the American Citize… +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Our first duty, and our highest loyalty, is to the citizens of the United States. We will not rest until our border is…" +06/23/2018,Politicians,@realDonaldTrump,RT @Scavino45: REQUESTED by family members after their private meeting and visit to the Oval Office - which took place before public remark… +06/23/2018,Politicians,@realDonaldTrump,RT @SecPompeo: .@POTUS’ agenda is the most pro-business agenda from a President in history. It been a game-changer for the American economi… +06/23/2018,Politicians,@realDonaldTrump,Steel is coming back fast! U.S. Steel is adding great capacity also. So are others. https://t.co/0Pzwjg3Vxn +06/23/2018,Politicians,@realDonaldTrump,RT @realDonaldTrump: We have to maintain strong borders or we will no longer have a country that we can be proud of – and if we show any we… +06/23/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Elect more Republicans in November and we will pass the finest, fairest and most comprehensive Immigration Bills anyw…" +06/23/2018,Politicians,@realDonaldTrump,Based on the Tariffs and Trade Barriers long placed on the U.S. & its great companies and workers by the European U… https://t.co/dqB7ivIKdo +06/22/2018,Politicians,@realDonaldTrump,"Our first duty, and our highest loyalty, is to the citizens of the United States. We will not rest until our border… https://t.co/Xq0o3yW8dv" +06/22/2018,Politicians,@realDonaldTrump,We are gathered today to hear directly from the AMERICAN VICTIMS of ILLEGAL IMMIGRATION. These are the American Cit… https://t.co/Ih0At614Jp +06/22/2018,Politicians,@realDonaldTrump,Hope OPEC will increase output substantially. Need to keep prices down! +06/22/2018,Politicians,@realDonaldTrump,We must maintain a Strong Southern Border. We cannot allow our Country to be overrun by illegal immigrants as the D… https://t.co/3Ms9tXU4Cv +06/22/2018,Politicians,@realDonaldTrump,"80% of Mexico’s Exports come to the United States. They totally rely on us, which is fine with me. They do have, th… https://t.co/1CFu4Ex7AU" +06/22/2018,Politicians,@realDonaldTrump,RT @EricTrump: Good job @FLOTUS 🇺🇸🇺🇸🇺🇸 https://t.co/RCYjy0DlF9 +06/22/2018,Politicians,@realDonaldTrump,"Congressman Ron DeSantis, a top student at Yale and Harvard Law School, is running for Governor of the Great State… https://t.co/xEkAqrqH6R" +06/22/2018,Politicians,@realDonaldTrump,Congresswoman Martha Roby of Alabama has been a consistent and reliable vote for our Make America Great Again Agend… https://t.co/S21c4EKQvc +06/22/2018,Politicians,@realDonaldTrump,Governor Henry McMaster is a truly fine man who loves the People of South Carolina. He was one of my very early sup… https://t.co/oPoaxw9qbi +06/22/2018,Politicians,@realDonaldTrump,Republicans should stop wasting their time on Immigration until after we elect more Senators and Congressmen/women… https://t.co/4HZ9ZIiNfr +06/22/2018,Politicians,@realDonaldTrump,"Elect more Republicans in November and we will pass the finest, fairest and most comprehensive Immigration Bills a… https://t.co/ZK72YOYINO" +06/22/2018,Politicians,@realDonaldTrump,"Even if we get 100% Republican votes in the Senate, we need 10 Democrat votes to get a much needed Immigration Bill… https://t.co/eMvXkDpulv" +06/22/2018,Politicians,@realDonaldTrump,"Our great Judge Jeanine Pirro is out with a new book, “Liars, Leakers and Liberals, the Case Against the Anti-Trump… https://t.co/KEtrpg2Ijp" +06/22/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Don’t worry, the Republicans, and your President, will fix it! https://t.co/xsbuPzXbHj" +06/21/2018,Politicians,@realDonaldTrump,You cannot pass legislation on immigration whether it be for safety and security or any other reason including “hea… https://t.co/CxdDZUWyDy +06/21/2018,Politicians,@realDonaldTrump,We have to maintain strong borders or we will no longer have a country that we can be proud of – and if we show any… https://t.co/sjgqAjFi7m +06/21/2018,Politicians,@realDonaldTrump,"“I REALLY DON’T CARE, DO U?” written on the back of Melania’s jacket, refers to the Fake News Media. Melania has le… https://t.co/sxYB9GYcmS" +06/21/2018,Politicians,@realDonaldTrump,Big Supreme Court win on internet sales tax - about time! Big victory for fairness and for our country. Great victo… https://t.co/wV2cxGtsWA +06/21/2018,Politicians,@realDonaldTrump,Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/21/2018,Politicians,@realDonaldTrump,I was thrilled to be back in Minnesota for a roundtable with hardworking American Patriots. Thank you! https://t.co/suoRN02zMq +06/21/2018,Politicians,@realDonaldTrump,"""The real big story that affects everybody in America is the success of @POTUS's TAX CUT package and what it's done… https://t.co/smOSnyG5af" +06/21/2018,Politicians,@realDonaldTrump,My Administration is acting swiftly to address the illegal immigration crisis on the Southern Border. Loopholes in… https://t.co/HKQoVS6NOC +06/21/2018,Politicians,@realDonaldTrump,"Democrats want open Borders, where anyone can come into our Country, and stay. This is Nancy Pelosi’s dream. It won’t happen!" +06/21/2018,Politicians,@realDonaldTrump,"Henry McMaster has done a great job as Governor of South Carolina. The state is BOOMING, with jobs and new industry… https://t.co/rqS2Ik8O4B" +06/21/2018,Politicians,@realDonaldTrump,"What is the purpose of the House doing good immigration bills when you need 9 votes by Democrats in the Senate, and… https://t.co/sCHOadpnrC" +06/21/2018,Politicians,@realDonaldTrump,Last night in Minnesota was incredible. What a crowd! +06/21/2018,Politicians,@realDonaldTrump,"I will be going the Columbia, South Carolina, on Monday night to do a campaign speech for one of my very early supp… https://t.co/LVP98f5jlC" +06/21/2018,Politicians,@realDonaldTrump,"The Border has been a big mess and problem for many years. At some point Schumer and Pelosi, who are weak on Crime… https://t.co/iqH0ztipty" +06/21/2018,Politicians,@realDonaldTrump,"We shouldn’t be hiring judges by the thousands, as our ridiculous immigration laws demand, we should be changing ou… https://t.co/X25UsJjKaq" +06/21/2018,Politicians,@realDonaldTrump,ALL-TIME RECORD OPTIMISM! https://t.co/ZTrfJY2afh +06/21/2018,Politicians,@realDonaldTrump,"Just returning from the Great State of Minnesota where we had an incredible rally with 9,000 people, and at least 1… https://t.co/eqhc4yqV5x" +06/21/2018,Politicians,@realDonaldTrump,"Thank you Duluth, Minnesota. Together, we are MAKING AMERICA GREAT AGAIN! https://t.co/G0hbbx6xAK" +06/20/2018,Politicians,@realDonaldTrump,"So sorry, people wanting to get into the already packed arena - I LOVE YOU ALL! https://t.co/PFvXrsvgkA" +06/20/2018,Politicians,@realDonaldTrump,"Just landed in Duluth, Minnesota. Two events planned - looking forward to them and being with @PeteStauber and his wonderful family!" +06/20/2018,Politicians,@realDonaldTrump,"Don’t worry, the Republicans, and your President, will fix it! https://t.co/xsbuPzXbHj" +06/20/2018,Politicians,@realDonaldTrump,Look what Fake ABC News put out. I guess they had it prepared from the 13 Angry Democrats leading the Witch Hunt!… https://t.co/v4AYIQ7r2b +06/20/2018,Politicians,@realDonaldTrump,Had a great meeting with the House GOP last night at the Capitol. They applauded and laughed loudly when I mentione… https://t.co/O0s8sDXYxE +06/20/2018,Politicians,@realDonaldTrump,https://t.co/yfwdyUHmn3 +06/20/2018,Politicians,@realDonaldTrump,More records! #MAGA https://t.co/2CP5eq40Fy +06/20/2018,Politicians,@realDonaldTrump,"RT @PastorDScott: Once the mid terms are over, liberals won’t talk about detained or separated illegal immigrant children until 2020. #itsa…" +06/20/2018,Politicians,@realDonaldTrump,"RT @GlobalGolfPost: The golf world has lost a legend in five-time Open Championship winner Peter Thomson. + +READ: https://t.co/TfMHo2GeDG h…" +06/20/2018,Politicians,@realDonaldTrump,"“FBI texts have revealed anti-Trump Bias.” @FoxNews Big News, but the Fake News doesn’t want to cover. Total corru… https://t.co/tpRbo2iB09" +06/20/2018,Politicians,@realDonaldTrump,RT @EricTrump: It is hard to believe that the historic North Korea / Kim Jong Un summit was exactly one week ago. Truly amazing to see the… +06/20/2018,Politicians,@realDonaldTrump,"It’s the Democrats fault, they won’t give us the votes needed to pass good immigration legislation. They want open… https://t.co/P4YieZ06fO" +06/20/2018,Politicians,@realDonaldTrump,The Fake News is not mentioning the safety and security of our Country when talking about illegal immigration. Our… https://t.co/y2ky7PrZBi +06/20/2018,Politicians,@realDonaldTrump,THANK YOU @HouseGOP! https://t.co/scvACfJwts +06/20/2018,Politicians,@realDonaldTrump,"Earlier today, @FLOTUS Melania and I were honored to welcome King Felipe VI and Queen Letizia of Spain to the… https://t.co/7zRBKqtddB" +06/20/2018,Politicians,@realDonaldTrump,Homeland Security @SecNielsen did a fabulous job yesterday at the press conference explaining security at the borde… https://t.co/2tSM8kZz2W +06/19/2018,Politicians,@realDonaldTrump,I want to take a moment to address the current illegal immigration crisis on the Southern Border...it has been goin… https://t.co/TzmghX7msJ +06/19/2018,Politicians,@realDonaldTrump,THANK YOU @NFIB! #NFIB75 https://t.co/5ppZhQhZu0 +06/19/2018,Politicians,@realDonaldTrump,"Join me tomorrow in Duluth, Minnesota for a #MAGA Rally! Tickets: https://t.co/mhhJB8WQlF https://t.co/gP59o1RDqW" +06/19/2018,Politicians,@realDonaldTrump,#CHANGETHELAWS Now is the best opportunity ever for Congress to change the ridiculous and obsolete laws on immigr… https://t.co/UE55LlOUHz +06/19/2018,Politicians,@realDonaldTrump,"We must always arrest people coming into our Country illegally. Of the 12,000 children, 10,000 are being sent by th… https://t.co/binoy1gDOH" +06/19/2018,Politicians,@realDonaldTrump,"Democrats are the problem. They don’t care about crime and want illegal immigrants, no matter how bad they may be,… https://t.co/ASy1D9UXLy" +06/19/2018,Politicians,@realDonaldTrump,"If you don’t have Borders, you don’t have a Country!" +06/19/2018,Politicians,@realDonaldTrump,Crime in Germany is up 10% plus (officials do not want to report these crimes) since migrants were accepted. Others… https://t.co/TLFg6fg1tN +06/19/2018,Politicians,@realDonaldTrump,I can’t think of something more concerning than a law enforcement officer suggesting that their going to use their… https://t.co/77nLJKxgDK +06/18/2018,Politicians,@realDonaldTrump,Comey gave Strozk his marching orders. Mueller is Comey’s best friend. Witch Hunt! +06/18/2018,Politicians,@realDonaldTrump,If President Obama (who got nowhere with North Korea and would have had to go to war with many millions of people b… https://t.co/7Wv5rZ14pr +06/18/2018,Politicians,@realDonaldTrump,It is the Democrats fault for being weak and ineffective with Boarder Security and Crime. Tell them to start thinki… https://t.co/P1CiI0U73I +06/18/2018,Politicians,@realDonaldTrump,CHANGE THE LAWS! +06/18/2018,Politicians,@realDonaldTrump,Children are being used by some of the worst criminals on earth as a means to enter our country. Has anyone been lo… https://t.co/sGqEpBPIvg +06/18/2018,Politicians,@realDonaldTrump,We don’t want what is happening with immigration in Europe to happen with us! +06/18/2018,Politicians,@realDonaldTrump,The people of Germany are turning against their leadership as migration is rocking the already tenuous Berlin coali… https://t.co/lX81ySIvts +06/18/2018,Politicians,@realDonaldTrump,Why don’t the Democrats give us the votes to fix the world’s worst immigration laws? Where is the outcry for the ki… https://t.co/UxvDtVF6cS +06/18/2018,Politicians,@realDonaldTrump,"“The highest level of bias I’ve ever witnessed in any law enforcement officer.” Trey Gowdy on the FBI’s own, Peter… https://t.co/D6wt89HrI8" +06/18/2018,Politicians,@realDonaldTrump,The Democrats should get together with their Republican counterparts and work something out on Border Security & Sa… https://t.co/t5Ckwe94P0 +06/18/2018,Politicians,@realDonaldTrump,"Why was the FBI’s sick loser, Peter Strzok, working on the totally discredited Mueller team of 13 Angry & Conflicte… https://t.co/Nb5PYNpKyf" +06/18/2018,Politicians,@realDonaldTrump,"Why was the FBI giving so much information to the Fake News Media. They are not supposed to be doing that, and know… https://t.co/cQ4u1JFjTU" +06/17/2018,Politicians,@realDonaldTrump,RT @WhiteHouse: Happy Father's Day! https://t.co/1Legof68lb +06/17/2018,Politicians,@realDonaldTrump,"WITCH HUNT! There was no Russian Collusion. Oh, I see, there was no Russian Collusion, so now they look for obstruc… https://t.co/vCDJvDuts8" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: The IG Report totally destroys James Comey and all of his minions including the great lovers, Peter Strzok and Lisa Pa…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: My supporters are the smartest, strongest, most hard working and most loyal that we have seen in our countries history…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: Democrats can fix their forced family breakup at the Border by working with Republicans on new legislation, for a chan…" +06/17/2018,Politicians,@realDonaldTrump,"RT @realDonaldTrump: I’ve had to beat 17 very talented people including the Bush Dynasty, then I had to beat the Clinton Dynasty, and now I…" +06/17/2018,Politicians,@realDonaldTrump,Washington Post employees want to go on strike because Bezos isn’t paying them enough. I think a really long strike… https://t.co/9zg9ex7xXR +06/17/2018,Politicians,@realDonaldTrump,"Our economy is perhaps BETTER than it has ever been. Companies doing really well, and moving back to America, and j… https://t.co/v2og0NMSZE" +06/17/2018,Politicians,@realDonaldTrump,The denuclearization deal with North Korea is being praised and celebrated all over Asia. They are so happy! Over h… https://t.co/ItgX9x2DOh +06/17/2018,Politicians,@realDonaldTrump,Holding back the “war games” during the negotiations was my request because they are VERY EXPENSIVE and set a bad l… https://t.co/Jpmyv8PEEY +06/17/2018,Politicians,@realDonaldTrump,"Funny how the Fake News, in a coordinated effort with each other, likes to say I gave sooo much to North Korea beca… https://t.co/MkaFk6dPfe" +06/17/2018,Politicians,@realDonaldTrump,"Daniel Henninger of The Wall Street Journal: “This IG Report makes it clear, as did Rod Rosenstein’s memo, that Tru… https://t.co/cH9udZa09R" +06/17/2018,Politicians,@realDonaldTrump,Please clear up the Fake News! https://t.co/3VbIKbmKwP +06/17/2018,Politicians,@realDonaldTrump,"Chuck Schumer said “the Summit was what the Texans call all cattle and no hat.” Thank you Chuck, but are you sure y… https://t.co/E0NI3Jm9QY" +03/28/2008,Politicians,@HilaryClinton,@AblativMeatshld Hello +06/18/2018,Politicians,@BarackObama,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/12/2018,Politicians,@BarackObama,Congratulations to the @Capitals! This @NHLBlackhawks fan knows what it’s like to lift that cup – and I’m happy for… https://t.co/9LG5lxLQC7 +06/08/2018,Politicians,@BarackObama,"“Low plastic stool, cheap but delicious noodles, cold Hanoi beer.” This is how I’ll remember Tony. He taught us abo… https://t.co/l79o6OyNAT" +06/01/2018,Politicians,@BarackObama,"This National Gun Violence Awareness Day, show your commitment to keeping our kids safe from gun violence. Then, fo… https://t.co/Nr5qxK8sgu" +05/28/2018,Politicians,@BarackObama,"We can never truly repay the debt we owe our fallen heroes. But we can remember them, honor their sacrifice, and af… https://t.co/iHLhFdhoZQ" +05/23/2018,Politicians,@BarackObama,This Center is for the leaders of tomorrow who are ready to step up and build the world as it should be. Michelle a… https://t.co/XN7anzCTst +05/13/2018,Politicians,@BarackObama,"Happy Mother’s Day to every mom out there, especially the remarkable moms in my life, @MichelleObama and my mother-… https://t.co/QsZPuZ2OoJ" +05/08/2018,Politicians,@BarackObama,There are few issues more important to the security of the US than the potential spread of nuclear weapons or the p… https://t.co/ym4YTPpbWl +05/02/2018,Politicians,@BarackObama,RT @MichelleObama: Happy #CollegeSigningDay! So excited to be in Philly to celebrate all the young people making the commitment to higher e… +04/23/2018,Politicians,@BarackObama,"These talented young people will create a better future not just in Africa, but around the world. I can’t wait to s… https://t.co/0YgQxnOrz9" +04/18/2018,Politicians,@BarackObama,Our statement on the passing of Former First Lady Barbara Bush: https://t.co/MhTVYCL9Nj +04/16/2018,Politicians,@BarackObama,RT @ObamaFoundation: We just announced the inaugural class of #ObamaFellows. These 20 civic leaders have carried out inspiring work around… +04/04/2018,Politicians,@BarackObama,"RT @ObamaFoundation: This week—50 years since Dr. Martin Luther King, Jr. was killed—@BarackObama and @RepJohnLewis sat down with a group o…" +03/25/2018,Politicians,@BarackObama,Incredible to have a Chicago team in the Final Four. I’ll take that over an intact bracket any day! Congratulations… https://t.co/V9IbaSlbIp +03/24/2018,Politicians,@BarackObama,Michelle and I are so inspired by all the young people who made today’s marches happen. Keep at it. You’re leading… https://t.co/d0DTg594Cs +03/19/2018,Politicians,@BarackObama,Our most important task as a nation is to make sure all our young people can achieve their dreams. We’ve started th… https://t.co/gNw9ks6pMY +03/19/2018,Politicians,@BarackObama,"In Singapore with young people who are advocating for education, empowering young women, and getting involved all o… https://t.co/V5uHCeMWUa" +03/16/2018,Politicians,@BarackObama,41: I like the competition. And the loyalty to the home team. - 44 https://t.co/XG3ChMtW0M +03/15/2018,Politicians,@BarackObama,Congrats to @LoyolaChicago and Sister Jean for a last-second upset - I had faith in my pick! +03/14/2018,Politicians,@BarackObama,"Just because I have more time to watch games doesn’t mean my picks will be better, but here are my brackets this ye… https://t.co/gWpZwlceV3" +03/14/2018,Politicians,@BarackObama,Have fun out there among the stars. https://t.co/S285MTwGtp +03/12/2018,Politicians,@BarackObama,"Four years ago, @MichelleObama and I had the privilege to host Lt. Cmdr. Dan Cnossen and his fellow Paralympians an… https://t.co/kneWyU2Tu1" +02/28/2018,Politicians,@BarackObama,"I got my start holding community meetings in Chicago, so it was fun to be home for one tonight. Michelle and I want… https://t.co/1ammpZayJx" +02/22/2018,Politicians,@BarackObama,"Young people have helped lead all our great movements. How inspiring to see it again in so many smart, fearless stu… https://t.co/wXO3wBtJ8V" +02/21/2018,Politicians,@BarackObama,"Billy Graham was a humble servant who prayed for so many - and who, with wisdom and grace, gave hope and guidance t… https://t.co/V8WtgIRPEB" +02/15/2018,Politicians,@BarackObama,We are grieving with Parkland. But we are not powerless. Caring for our kids is our first job. And until we can hon… https://t.co/LWGSkzRapH +02/14/2018,Politicians,@BarackObama,"Happy Valentine’s Day, @MichelleObama. You make every day and every place better. https://t.co/aWvyytR7Mm" +02/14/2018,Politicians,@BarackObama,"RT @MichelleObama: Happy #ValentinesDay to my one and only, @BarackObama. To celebrate the occasion, I’m dedicating a little Valentine’s Da…" +01/15/2018,Politicians,@BarackObama,"Dr. King was 26 when the Montgomery bus boycott began. He started small, rallying others who believed their efforts… https://t.co/N0zwBg7gTi" +12/29/2017,Politicians,@BarackObama,"All across America people chose to get involved, get engaged and stand up. Each of us can make a difference, and al… https://t.co/zxpKVnNeHZ" +12/29/2017,Politicians,@BarackObama,"Ten-year-old Jahkil Jackson is on a mission to help homeless people in Chicago. He created kits full of socks, toil… https://t.co/7mNk6dmnyC" +12/29/2017,Politicians,@BarackObama,"Chris Long gave his paychecks from the first six games of the NFL season to fund scholarships in Charlottesville, V… https://t.co/KxUk5Wle6h" +12/29/2017,Politicians,@BarackObama,"Kat Creech, a wedding planner in Houston, turned a postponed wedding into a volunteer opportunity for Hurricane Har… https://t.co/MCXiSuAVJN" +12/29/2017,Politicians,@BarackObama,"As we count down to the new year, we get to reflect and prepare for what’s ahead. For all the bad news that seemed… https://t.co/WaUHkVww2g" +12/27/2017,Politicians,@BarackObama,"RT @MBK_Alliance: I am my Brother’s Keeper. +Watch our new PSA with @BarackObama, @StephenCurry30 & @chancetherapper, then take action to s…" +12/25/2017,Politicians,@BarackObama,"On behalf of the Obama family, Merry Christmas! We wish you joy and peace this holiday season. https://t.co/CNFUZrhrBj" +12/14/2017,Politicians,@BarackObama,There's no better time than the holiday season to reach out and give back to our communities. Great to hear from yo… https://t.co/gp5dCy9oN2 +12/13/2017,Politicians,@BarackObama,"Happy Hanukkah, everybody, from the Obama family to yours. Chag Sameach!" +12/11/2017,Politicians,@BarackObama,Just got off a call to thank folks who are working hard to help more Americans across the country sign up for healt… https://t.co/A9QvCySWJ8 +12/04/2017,Politicians,@BarackObama,RT @ObamaFoundation: Watch: We hosted a Town Hall in New Delhi with @BarackObama and young leaders about how to drive change and make an im… +11/27/2017,Politicians,@BarackObama,Michelle and I are delighted to congratulate Prince Harry and Meghan Markle on their engagement. We wish you a life… https://t.co/KC9nmjZPuX +11/23/2017,Politicians,@BarackObama,"From the Obama family to yours, we wish you a Happy Thanksgiving full of joy and gratitude. https://t.co/xAvSQwjQkz" +11/20/2017,Politicians,@BarackObama,"ME: Joe, about halfway through the speech, I’m gonna wish you a happy birth-- +BIDEN: IT’S MY BIRTHDAY! +ME: Joe.… https://t.co/5qLUsDoaMi" +11/11/2017,Politicians,@BarackObama,"RT @ObamaFoundation: Today, we honor those who have honored our country with its highest form of service. https://t.co/IbJNCwIofL https://t…" +11/08/2017,Politicians,@BarackObama,This is what happens when the people vote. Congrats @RalphNortham and @PhilMurphyNJ . And congratulations to all th… https://t.co/ZvUKZIDGAj +11/07/2017,Politicians,@BarackObama,Every election matters - those who show up determine our future. Go vote tomorrow! https://t.co/j1wh8hLamw +11/06/2017,Politicians,@BarackObama,May God also grant all of us the wisdom to ask what concrete steps we can take to reduce the violence and weaponry in our midst. +11/06/2017,Politicians,@BarackObama,"We grieve with all the families in Sutherland Springs harmed by this act of hatred, and we’ll stand with the survivors as they recover..." +11/01/2017,Politicians,@BarackObama,"Starting today, you can sign up for 2018 health coverage. Head on over to https://t.co/ob1Ynoesod and find a plan t… https://t.co/6eN1Y5TQGV" +11/01/2017,Politicians,@BarackObama,Michelle and I are thinking of the victims of today's attack in NYC and everyone who keeps us safe. New Yorkers are as tough as they come. +10/30/2017,Politicians,@BarackObama,"Hello, #ObamaSummit! Thrilled to host civic leaders in Chicago from all over the world. Follow along at @ObamaFoundation." +10/23/2017,Politicians,@BarackObama,"I’ll let you and @ladygaga handle the singing, and we’ll handle the donations. There’s still time to give:… https://t.co/0NnaR3bozh" +10/22/2017,Politicians,@BarackObama,Tonight the ex-Presidents are getting together in Texas to support all our fellow Americans rebuilding from this ye… https://t.co/nFSou6JC6n +10/16/2017,Politicians,@BarackObama,"I'm grateful to @SenJohnMcCain for his lifetime of service to our country. Congratulations, John, on receiving this year's Liberty Medal." +10/02/2017,Politicians,@BarackObama,Michelle & I are praying for the victims in Las Vegas. Our thoughts are with their families & everyone enduring another senseless tragedy. +09/30/2017,Politicians,@BarackObama,Proud to cheer on Team USA at the Invictus Games today with my friend Joe. You represent the best of our country. https://t.co/WBzcltmgqj +09/26/2017,Politicians,@BarackObama,"We're expanding our efforts to help Puerto Rico & the USVI, where our fellow Americans need us right now. Join us a… https://t.co/gkrp1RwXR4" +09/25/2017,Politicians,@BarackObama,"Prosecutor, soldier, family man, citizen. Beau made us want to be better. What a legacy to leave. What a testament… https://t.co/XDtkLu32wd" +09/20/2017,Politicians,@BarackObama,RT @gatesfoundation: President @BarackObama addresses #Goalkeepers17 starting at 12:40 PM. Tune in here: https://t.co/XmHBErSHYw +09/20/2017,Politicians,@BarackObama,Thinking about our neighbors in Mexico and all our Mexican-American friends tonight. Cuidense mucho y un fuerte abrazo para todos. +09/18/2017,Politicians,@BarackObama,"Coding is important – and fun. @CSforAll, thanks for your work to make sure every kid can compete in a high-tech, g… https://t.co/xwlnvxsjKb" +09/13/2017,Politicians,@BarackObama,Michelle and I want the @ObamaFoundation to inspire and empower people to change the world. Here's how we're gettin… https://t.co/xY0UhBSvqp +09/11/2017,Politicians,@BarackObama,We remember everyone we lost on 9/11 and honor all who defend our country and our ideals. No act of terror will ever change who we are. +09/10/2017,Politicians,@BarackObama,"RT @GeorgeHWBush: Across the U.S., Americans have answered the call to help with hurricane recovery. Praying for all Floridians. #Irma http…" +09/08/2017,Politicians,@BarackObama,Proud of these McKinley Tech students—inspiring young minds that make me hopeful about our future. https://t.co/nqYC1mjjTB +09/07/2017,Politicians,@BarackObama,Americans always answer the call. https://t.co/SV1jixOExu https://t.co/ktEvL6s89d +09/05/2017,Politicians,@BarackObama,"To target hopeful young strivers who grew up here is wrong, because they’ve done nothing wrong. My statement: https://t.co/TCxZdld7L4" +08/27/2017,Politicians,@BarackObama,Thank you to all the first responders and people helping each other out. That's what we do as Americans. Here's one… https://t.co/I3RHWyZe31 +08/17/2017,Politicians,@BarackObama,Michelle and I are thinking of the victims and their families in Barcelona. Americans will always stand with our Spanish friends. Un abrazo. +08/13/2017,Politicians,@BarackObama,"""...For love comes more naturally to the human heart than its opposite."" - Nelson Mandela" +08/13/2017,Politicians,@BarackObama,"""People must learn to hate, and if they can learn to hate, they can be taught to love...""" +08/13/2017,Politicians,@BarackObama,"""No one is born hating another person because of the color of his skin or his background or his religion..."" https://t.co/InZ58zkoAm" +07/20/2017,Politicians,@BarackObama,"John McCain is an American hero & one of the bravest fighters I've ever known. Cancer doesn't know what it's up against. Give it hell, John." +06/22/2017,Politicians,@BarackObama,Health care has always been about something bigger than politics: it's about the character of our country. https://t.co/UqLO14Hef7 +06/18/2017,Politicians,@BarackObama,"Of all that I've done in my life, I'm most proud to be Sasha and Malia's dad. To all those lucky enough to be a dad… https://t.co/XSqMhcSuvR" +06/02/2017,Politicians,@BarackObama,"On this National Gun Violence Awareness Day, let your voice be heard and show your commitment to reducing gun viole… https://t.co/S7dth6Ywb0" +05/29/2017,Politicians,@BarackObama,Forever grateful for the service and sacrifice of all who fought to protect our freedoms and defend this country we… https://t.co/BwRS0onlOL +05/27/2017,Politicians,@BarackObama,Good to see my friend Prince Harry in London to discuss the work of our foundations & offer condolences to victims… https://t.co/f1U8It8AmE +05/25/2017,Politicians,@BarackObama,"Through faith, love, and resolve the character of the people of Manchester has shown itself. Our thoughts & prayer… https://t.co/xyMer891Zo" +05/23/2017,Politicians,@BarackObama,Our hearts go out to those killed and wounded in Manchester. Americans will always stand shoulder to shoulder with the people of the UK. +05/22/2017,Politicians,@BarackObama,"Excited to hear from Sierra, Imani, Filiz, and Benedikt who are making a difference at home and abroad. See you in… https://t.co/bF1kB1GvxC" +05/14/2017,Politicians,@BarackObama,"Happy Mother's Day to my love and partner on this journey @MichelleObama, and to all the wonderful, hardworking mothers out there." +05/03/2017,Politicians,@BarackObama,"We're rolling up our sleeves again, back where it all started. Join us at https://t.co/GYkEOK8EuT. https://t.co/UlyvNrQvZR" +05/02/2017,Politicians,@BarackObama,"Well said, Jimmy. That's exactly why we fought so hard for the ACA, and why we need to protect it for kids like Bil… https://t.co/jB3LXT94Ok" +04/24/2017,Politicians,@BarackObama,RT @ObamaFoundation: It’s a beautiful day on the South Side. https://t.co/PtoaFbww0s +03/23/2017,Politicians,@BarackObama,My heart goes out to the victims and their families in London. No act of terror can shake the strength and resilience of our British ally. +03/19/2017,Politicians,@BarackObama,"Chuck Berry rolled over everyone who came before him – and turned up everyone who came after. We'll miss you, Chuck. Be good." +03/08/2017,Politicians,@BarackObama,"On International Women’s Day, @MichelleObama and I are inspired by all of you who embrace your power to drive chang… https://t.co/Er9mIQlmgr" +03/02/2017,Politicians,@BarackObama,RT @ObamaFoundation: Courage comes in many forms. Who in your local community or neighborhood leads by example? #ProfileInCourage https://t… +03/02/2017,Politicians,@BarackObama,Humbled to be recognized by a family with a legacy of service. Who's your #ProfileInCourage? Tell me about them:… https://t.co/25Ohhab8Xn +02/17/2017,Politicians,@BarackObama,We asked. You answered. https://t.co/mAJvko6VqR +02/14/2017,Politicians,@BarackObama,"Happy Valentine’s Day, @michelleobama! Almost 28 years with you, but it always feels new. https://t.co/O0UhJWoqGN" +01/22/2017,Politicians,@BarackObama,I read letters like these every single day. It was one of the best parts of the job – hearing from you. https://t.co/so1luBcszV +01/20/2017,Politicians,@BarackObama,RT @ObamaFoundation: Add your voice: https://t.co/mA9MSHmi7o https://t.co/Uf7oEvkZF3 +01/20/2017,Politicians,@BarackObama,"In the meantime, I want to hear what you're thinking about the road ahead. So share your ideas with me here: https://t.co/GYkEOK8EuT" +01/20/2017,Politicians,@BarackObama,"Hi everybody! Back to the original handle. Is this thing still on? Michelle and I are off on a quick vacation, then we’ll get back to work." +01/10/2017,Politicians,@BarackObama,"Tonight, President Obama reflects on eight years of progress. Watch the #FarewellAddress at 9 pm ET: https://t.co/ZnwTsg155B #ObamaFarewell" +11/05/2016,Politicians,@BarackObama,"RT @OFA: ""Thanks to the Affordable Care Act, your coverage is better today than it was before."" + +Watch the weekly address: https://t.co/Pfk…" +11/05/2016,Politicians,@BarackObama,"In the weekly address, President Obama discusses what #Obamacare has done to improve health care. https://t.co/VdQlyrSZhx" +11/04/2016,Politicians,@BarackObama,"Let's keep working to keep our economy on a better, stronger course. https://t.co/bV2BVjyj7a" +11/04/2016,Politicians,@BarackObama,The landmark #ParisAgreement enters into force today—we must keep up the momentum to #ActOnClimate. https://t.co/Cyw5Udaoro +11/04/2016,Politicians,@BarackObama,"The economy added 161,000 jobs in October, and wages are up 2.8 percent over the past year. https://t.co/pJxjgLnjCt #JobsReport" +11/03/2016,Politicians,@BarackObama,There are a lot of plans out there. Check your options and lock in the one that's best for you: https://t.co/buFY9ozDz4 #GetCovered +11/03/2016,Politicians,@BarackObama,"The positive impact of #Obamacare is undeniable, but there's one big factor holding many states back: https://t.co/7XebIdRX34" +11/03/2016,Politicians,@BarackObama,RT @POTUS: It happened: @Cubs win World Series. That's change even this South Sider can believe in. Want to come to the White House before… +11/02/2016,Politicians,@BarackObama,Tens of millions of Americans have benefited from #Obamacare. Make sure you're one of them. #GetCovered https://t.co/e1KoXcPtpU +11/02/2016,Politicians,@BarackObama,"Thanks to #Obamacare, quality health care is available to everyone. The marketplace is now open—make sure you and y… https://t.co/89gl6pzMGD" +11/02/2016,Politicians,@BarackObama,RT @lacasablanca: La típica Latina tarda 22 meses en ganar lo que un hombre blanco gana en 12 meses. Tenemos que cerrar la brecha salarial.… +11/01/2016,Politicians,@BarackObama,"RT @WhiteHouse: On #LatinaEqualPay Day, we mark the work that remains to ensure that all Americans receive equal pay for equal work. https:…" +11/01/2016,Politicians,@BarackObama,Community organizing never goes out of style. Shop now: https://t.co/LXEbQdKLLT https://t.co/E56ofoU36i +11/01/2016,Politicians,@BarackObama,"With #Obamacare, people can focus on treatment for pre-existing conditions without the fear of coverage being cappe… https://t.co/jvdFY87XBu" +11/01/2016,Politicians,@BarackObama,"The Obamacare marketplace is now open. If you're uninsured, now is the time to shop for a plan and #GetCovered.… https://t.co/Spjlga4eTT" +10/31/2016,Politicians,@BarackObama,RT @FLOTUS: Open enrollment starts tomorrow! Check out your options at https://t.co/dg57hwz5of and share your #GetCovered story. https://t.… +10/31/2016,Politicians,@BarackObama,Lions and Tiggers and bears! Oh my! #HappyHalloween https://t.co/iU4fjBhi0Y +10/31/2016,Politicians,@BarackObama,Usted y su familia merecen la tranquilidad de saber que están cubiertos. El mercado de seguros abre mañana. https://t.co/9iRCkLRGZD +10/31/2016,Politicians,@BarackObama,"Speak up in support of quality, affordable health care for all. https://t.co/rGsSguMxvj" +10/31/2016,Politicians,@BarackObama,There's nothing to be scared of when searching for health insurance. Three in four people can #GetCovered for less… https://t.co/BUmnRO9B3E +10/31/2016,Politicians,@BarackObama,Open enrollment begins tomorrow—make sure you and your loved ones #GetCovered. https://t.co/2aak7Bt0s3 +10/30/2016,Politicians,@BarackObama,"RT @OFA: Witch plan is best for you? Thanks to Obamacare, even pre-existing conditions can't stop you from comparing your options. #GetCove…" +10/28/2016,Politicians,@BarackObama,Senate leaders' obstruction of our Supreme Court nomination process is unacceptable. Say so: https://t.co/t3pYMO8Fp0 #DoYourJob +10/28/2016,Politicians,@BarackObama,Senate leaders should put the common good above politics—the integrity of our nation's highest court depends on it.… https://t.co/iRVCEl1pzf +10/27/2016,Politicians,@BarackObama,Don't ghost on your health and well-being—your chance to #GetCovered is coming up. Open enrollment starts November… https://t.co/qwNLazuPiz +10/27/2016,Politicians,@BarackObama,Climate change is happening now. Denial is dangerous. https://t.co/0Nlf8Fst4u +10/27/2016,Politicians,@BarackObama,"If you're willing to work hard and play by the rules, you should be able to get ahead. https://t.co/394hdJttgO" +10/27/2016,Politicians,@BarackObama,President Obama lays out just a few of the ways in which #Obamacare has helped millions of Americans. https://t.co/qeqHRLz0ID +10/27/2016,Politicians,@BarackObama,New report: Renewable energy installations are beating fossil fuel installations for the first time. https://t.co/MMhIdu4jzt #ActOnClimate +10/27/2016,Politicians,@BarackObama,Obamacare has helped millions of Americans gain the peace of mind that comes with coverage. Show your support: https://t.co/NfrG7DHL5C +10/26/2016,Politicians,@BarackObama,"This is what happens when we focus on building an economy that works for everyone, not just those at the top. https://t.co/op3Z74rPeI" +10/26/2016,Politicians,@BarackObama,"No one's too wrapped up in pre-existing conditions to #GetCovered. +Thanks to Obamacare, you can find a plan that m… https://t.co/C7H9TZdxeU" +10/26/2016,Politicians,@BarackObama,Help protect the progress we've made in helping millions of Americans get covered. Add your name now: https://t.co/HQSZKPl1eH +10/26/2016,Politicians,@BarackObama,DYK: Most people can find a plan for less than $75 per month. Open enrollment starts on November 1. #GetCovered https://t.co/9RGG5Pr4mb +10/25/2016,Politicians,@BarackObama,"Women, the sick, survivors—they all deserve fair treatment in our health care system. #Obamacare https://t.co/G948HN7pzV" +10/25/2016,Politicians,@BarackObama,Don't get tripped up by misinformation. Join the @OFA Truth Team today: https://t.co/wJZj1QCxXm https://t.co/vwwDgFHq6A +10/25/2016,Politicians,@BarackObama,"RT @SecBurwell: Most people shopping on @HealthCareGov will again find plans with premiums of less than $75/month, thanks to financial assi…" +10/25/2016,Politicians,@BarackObama,Be proud of the progress we've made together—wear the mark of this movement. https://t.co/fYf2O9WAwG https://t.co/1Z4yJmYh4E +10/24/2016,Politicians,@BarackObama,Strong policies that help working families get ahead are good for our economy. https://t.co/QRRhibjZCl +10/24/2016,Politicians,@BarackObama,The four-week average of jobless claims fell to the lowest level since 1973—a sign of a healthy labor market. https://t.co/Lv7DnRM2DY +10/24/2016,Politicians,@BarackObama,"Since 2010, America's uninsured rate has been cut in half. Help build on that progress—join Team #Obamacare today: https://t.co/MhIICuE17A" +10/24/2016,Politicians,@BarackObama,"RT @OFA: It's working. +It's saving lives. +And we're not going back. +Retweet to show your support. https://t.co/YOBeMMSYP8" +10/24/2016,Politicians,@BarackObama,"Health care is a right, not a privilege—and #Obamacare works to protect that right for millions of Americans. https://t.co/B7fO8rhggW" +10/21/2016,Politicians,@BarackObama,Don't get tripped up by misinformation. Join the @OFA Truth Team today: https://t.co/09BpA6F9Ne https://t.co/Nxgp87o4iq +10/21/2016,Politicians,@BarackObama,Being able to stay on a parent's plan enables millions of young adults to make choices about their future with the… https://t.co/1lSzxCHZVf +10/21/2016,Politicians,@BarackObama,"""Because of Obamacare, another 20 million Americans now know the financial security of health insurance."" https://t.co/eNd6J8bMxm" +10/20/2016,Politicians,@BarackObama,Stand up for the law that's helped 20 million more Americans gain health coverage. Join Team @Obamacare today: https://t.co/XiNXrgnPoF +10/20/2016,Politicians,@BarackObama,"There's still more work to do, but let's celebrate how far we've come. https://t.co/kUVWn68kJw" +10/20/2016,Politicians,@BarackObama,LIVE: President Obama is in Miami talking about the progress made possible by the Affordable Care Act. https://t.co/7FsQXut07O +10/20/2016,Politicians,@BarackObama,"RT @WhiteHouse: Each day, @POTUS reads 10 letters from Americans. Today, we're sharing some of the letters written about #ACA: https://t.co…" +10/20/2016,Politicians,@BarackObama,Tune in at 1:55 p.m. ET to watch President Obama speak about the successes of the Affordable Care Act. https://t.co/7FsQXut07O +10/20/2016,Politicians,@BarackObama,There's a lot of misinformation floating around. Make sure you've got the facts—join the @OFA Truth Team:… https://t.co/SpfRFK5LWq +10/19/2016,Politicians,@BarackObama,"From coast to coast, editorial boards are denouncing Senate obstructionism. Take a look: https://t.co/vqDr2bBiVr #DoYourJob" +10/19/2016,Politicians,@BarackObama,"Our Supreme Court has been short a justice for far too long. #DoYourJob, Senate leaders. https://t.co/yJlejtHjr0" +10/19/2016,Politicians,@BarackObama,"RT @SecBurwell: Today, 20M more Americans have coverage thanks to the #ACA. Our uninsured rate is the lowest in our nation’s history. Lowes…" +10/19/2016,Politicians,@BarackObama,The need for a ninth justice is undeniably clear. #DoYourJob https://t.co/L1EBgNbh3Q +10/18/2016,Politicians,@BarackObama,We can't afford to let this be the new normal. https://t.co/nJzyfz2Zlw #ActOnClimate +10/18/2016,Politicians,@BarackObama,Denying climate change is dangerous. Join @OFA supporters in standing up for bold action now: https://t.co/JZnvlb080l #ActOnClimate +10/18/2016,Politicians,@BarackObama,"Climate change is real, but so is the progress we're making to #ActOnClimate. Let's keep it up. https://t.co/GOFKXQblGJ" +10/18/2016,Politicians,@BarackObama,This is just the latest step forward in the push to #ActOnClimate. https://t.co/UDInkidKkP +10/17/2016,Politicians,@BarackObama,Read why @FLOTUS is fighting to ensure that girls everywhere have access to quality education. https://t.co/xleq3HHSZt #LetGirlsLearn +10/17/2016,Politicians,@BarackObama,"Wildfires in the next few decades could be ""unrecognizable"" to previous generations—because of climate change: https://t.co/vM3xM6mCf3" +10/17/2016,Politicians,@BarackObama,Senate leaders are blocking the Supreme Court nomination for their own political gain—don't be silent: https://t.co/OMdTVim0TC #DoYourJob +10/17/2016,Politicians,@BarackObama,"RT @WhiteHouse: ""Nobody should be priced out of a higher education."" —@POTUS on the progress we've made: https://t.co/4YohVv7Qea https://t.…" +10/17/2016,Politicians,@BarackObama,RT @WHLive: Watch as @POTUS speaks on the progress made to ensure every student has the opportunity to realize their potential: https://t.c… +10/17/2016,Politicians,@BarackObama,Senate leaders have recognized Judge Garland's impeccable credentials in the past. He deserves a fair hearing and a… https://t.co/w9bPtpSmm7 +10/14/2016,Politicians,@BarackObama,We need a fully functional Supreme Court. Editorial boards across the country agree: https://t.co/BkLrNaTtzN #DoYourJob +10/14/2016,Politicians,@BarackObama,The American Bar Association gave Judge Garland its highest rating. Senate leaders: #DoYourJob and fill the #SCOTUS… https://t.co/iTVTqGIUvV +10/14/2016,Politicians,@BarackObama,Denying climate change is dangerous. Join @OFA supporters in standing up for bold action now: https://t.co/7MDQGYgX2u #ActOnClimate +10/14/2016,Politicians,@BarackObama,"Cynics, take note: When we #ActOnClimate, we build a stronger future. https://t.co/wHHMdo2ro6" +10/13/2016,Politicians,@BarackObama,"""That’s how we will overcome the challenges we face: by unleashing the power of all of us for all of us."" Read more: https://t.co/VxpwLIR4uF" +10/13/2016,Politicians,@BarackObama,Check out the most recent editorial boards calling on Senate leaders to vote on Judge Garland: https://t.co/hzuhZYevfo #DoYourJob +10/13/2016,Politicians,@BarackObama,"Senate leaders have undercut the functionality of the Supreme Court, and that's unacceptable. #DoYourJob https://t.co/5HFXhgTMoP" +10/13/2016,Politicians,@BarackObama,Senate leaders' political games are handicapping the Supreme Court—and judgeships across the country. https://t.co/PhKOBKXLmS #DoYourJob +10/13/2016,Politicians,@BarackObama,"RT @WIRED: After eight years in office, @POTUS remains optimistic about the world's future. His essay as WIRED’s guest editor: https://t.co…" +10/12/2016,Politicians,@BarackObama,LIVE: President Obama is speaking at a reception celebrating #HispanicHeritageMonth. https://t.co/FK0ytbKw1q +10/12/2016,Politicians,@BarackObama,"RT @WhiteHouse: In honor of #HispanicHeritageMonth, we celebrate the progress that Hispanic Americans have made under @POTUS: https://t.co/…" +10/12/2016,Politicians,@BarackObama,Support the bold steps we're taking against climate change. Say you're ready to #ActOnClimate: https://t.co/EtwjaKgYFW +10/12/2016,Politicians,@BarackObama,"Last week, more than 190 countries reached a landmark deal to reduce carbon pollution from aviation. https://t.co/LRYkXVw3rO #ActOnClimate" +10/12/2016,Politicians,@BarackObama,Let's leave our children and grandchildren a planet that's healthier than the one we have today. #ActOnClimate https://t.co/mP29bpRdU9 +10/12/2016,Politicians,@BarackObama,Climate change's effects are devastating. Denying the science behind it does nothing to help. https://t.co/Rww40wwgD9 #ActOnClimate +10/11/2016,Politicians,@BarackObama,"""On behalf of Michelle and our family, G’mar Chatimah Tovah."" —President Obama #YomKippur" +10/11/2016,Politicians,@BarackObama,"""LGBT individuals deserve to know their country stands beside them."" —President Obama #NationalComingOutDay https://t.co/op7nBzbaod" +10/11/2016,Politicians,@BarackObama,The Supreme Court must remain above politics. Judge Garland needs a hearing and a vote. #DoYourJob https://t.co/eVSPSIFNpB +10/11/2016,Politicians,@BarackObama,Don't stand idly by while Senate leaders continue to block Judge Garland from a fair hearing and vote: https://t.co/TSavHP3mHg #DoYourJob +10/11/2016,Politicians,@BarackObama,"Judge Garland is just as qualified now as he was in 1997, Senate leaders. It's time to #DoYourJob. https://t.co/j1lEkdMYV6" +10/11/2016,Politicians,@BarackObama,Dispel misinformation with facts from the @OFA Truth Team. https://t.co/zjexLUJXAC +10/07/2016,Politicians,@BarackObama,"The uninsured rate is the lowest it's been in decades, thanks to #Obamacare. Spread the word.… https://t.co/ZkN8HVbn3E" +10/07/2016,Politicians,@BarackObama,Deadline tonight—help rein in payday lenders that succeed by targeting vulnerable Americans: https://t.co/7OlpH6OFek #StopTheDebtTrap +10/07/2016,Politicians,@BarackObama,The Obama administration and @CFPB are working to protect consumers and #StopTheDebtTrap. https://t.co/UMO01OUkdh +10/07/2016,Politicians,@BarackObama,"Our economy is on a better, stronger course. https://t.co/yzB6x7CExJ" +10/07/2016,Politicians,@BarackObama,The economic progress we've made is undeniable—let's keep it up. https://t.co/gAlfaC1hkI +10/07/2016,Politicians,@BarackObama,Check out President Obama's essay in @TheEconomist on the unique challenges the American economy faces. https://t.co/jKJNCrQALL +10/07/2016,Politicians,@BarackObama,"The economy added 156,000 jobs in September—extending the longest streak of total job growth on record." +10/06/2016,Politicians,@BarackObama,ICYMI: Read about the historic #ParisAgreement and what it means for the fight to #ActOnClimate. https://t.co/eMefgFZk53 +10/06/2016,Politicians,@BarackObama,"RT @WhiteHouse: This is #SXSL: The White House festival of ideas, art, and action. Take a peek inside: https://t.co/BbvvMEaQTF https://t.co…" +10/06/2016,Politicians,@BarackObama,The cost of clean energy technology dropped significantly over the last eight years. Get the chart: https://t.co/fuGQMXeRYb #ActOnClimate +10/05/2016,Politicians,@BarackObama,This historic step in the fight to #ActOnClimate came faster than anyone predicted. https://t.co/W2rtcNXkI7 +10/05/2016,Politicians,@BarackObama,"""Today is a historic day in the fight to protect our planet for future generations."" —President Obama #ActOnClimate https://t.co/x3dJSCYUcj" +10/05/2016,Politicians,@BarackObama,LIVE: President Obama is delivering a statement on the Paris Climate Agreement. https://t.co/mNpQ6QyA91 +10/05/2016,Politicians,@BarackObama,Read from @NYTopinion about why filling the Supreme Court vacancy is crucial for our democracy: https://t.co/zuSWzxSaqW #DoYourJob +10/04/2016,Politicians,@BarackObama,Enough is enough. Say it's time for Senate leaders to get to work: https://t.co/2M789YIcBk #DoYourJob +10/04/2016,Politicians,@BarackObama,"""Everybody cares about their kids, their grandkids, and the kind of world we pass on to them."" —President Obama https://t.co/cfxpSBNWIU" +07/01/2018,Politicians,@BillClinton,Thanks for having us! We loved being on @amazon’s campus. https://t.co/ZxlmQdjNRD +06/25/2018,Politicians,@BillClinton,Going up to Maine and spending time with you is one of my favorite times of the year. Happy to see you. https://t.co/FQTTU7niV9 +06/21/2018,Politicians,@BillClinton,"RT @ChelseaClinton: Grateful for the opportunity to help launch @2SmalltoFail’s newest #TalkingIsTeaching campaign today, in partnership wi…" +06/19/2018,Politicians,@BillClinton,Excited to hear that #ThePresidentIsMissing is officially a #1 New York Times Bestseller! Thank you to everyone who… https://t.co/ZbHSwhIMmx +06/17/2018,Politicians,@BillClinton,On this Father’s Day I’m thinking of the thousands of children separated from their parents at the border. These ch… https://t.co/bAy4F4cvOM +06/06/2018,Politicians,@BillClinton,I was honored to join the Kennedy family today at Arlington National Cemetery to celebrate the life of Robert F. Ke… https://t.co/FQd0a8QibB +06/05/2018,Politicians,@BillClinton,"RT @JP_Books: Hello New York! 🌇 + +I am signing #ThePresidentMissing at the 5th Ave @BNBuzz at 12:00pm with @BillClinton. Come get your copy…" +05/28/2018,Politicians,@BillClinton,"Remembering, honoring, and thanking all who served our great country. #MemorialDay2018" +05/24/2018,Politicians,@BillClinton,"At the @ClintonFdn, we're changing lives across the United States and around the world. I'm proud to share this upd… https://t.co/fi0Bf8ktK0" +05/23/2018,Politicians,@BillClinton,"RT @HillaryClinton: Just spent a great evening with two of my favorite authors discussing their new book, The President is Missing. It’s a…" +05/16/2018,Politicians,@BillClinton,"Join James Patterson and me as we travel across the country to talk about our new thriller, The President is Missin… https://t.co/oa7qUXe85z" +05/14/2018,Politicians,@BillClinton,James Patterson (@JP_Books) and I think we’ve come up with three of the most frightening days in the history of the… https://t.co/sZbkbS6cUj +05/07/2018,Politicians,@BillClinton,"On his last day in office, I am grateful to @MayorLandrieu for his leadership these past 8 years as mayor of New Or… https://t.co/1tWCOjpzHs" +05/06/2018,Politicians,@BillClinton,Honored to have joined the Advisory Council for Bosnia Herzegovina to reflect on how we came together to end war th… https://t.co/7NrtfiWEDz +04/28/2018,Politicians,@BillClinton,"RT @ClintonFdn: We're partnering to offer colleges 40K doses of #naloxone, a lifesaving drug that can reverse opioid overdose. https://t.co…" +04/23/2018,Politicians,@BillClinton,Want to meet me and James Patterson (@JP_Books) in person? Here’s a chance for you and a guest to join us at one of… https://t.co/opuoqVlPxE +04/22/2018,Politicians,@BillClinton,"This #EarthDay, I join in celebrating efforts by young people, socially-responsible businesspeople, local & nationa… https://t.co/VceNifW5aj" +04/20/2018,Politicians,@BillClinton,"If you know a young leader with big ideas, I hope you’ll encourage them to join us at @CGIU 2018 this fall:… https://t.co/aV1ezdKS8s" +04/19/2018,Politicians,@BillClinton,"Coach Popovich - I join the NBA family and countless fans across the country who are thinking of you, Jill, and Mic… https://t.co/6VahY0xX9s" +04/17/2018,Politicians,@BillClinton,"Barbara Bush was a remarkable woman. She had grit & grace, brains & beauty. She was fierce & feisty in support of h… https://t.co/0kyGOCt32Y" +04/15/2018,Politicians,@BillClinton,"This #JackieRobinsonDay, I join in celebrating his legendary life and career—and his vision for a more inclusive Am… https://t.co/3L4bbBqgHH" +04/15/2018,Politicians,@BillClinton,RT @PLSprogram: Mrs. Bush inspired 2018 Scholars and staff during our time in College Station last month. We are keeping her and the entire… +04/10/2018,Politicians,@BillClinton,"Twenty years ago today, the Good Friday Agreement, in Seamus Heaney’s words, “cleared a space for the miraculous.”… https://t.co/QTxIxAWiuR" +04/05/2018,Politicians,@BillClinton,"What an incredible accomplishment, Micheal. Follow your heart and your head, your future is incredibly bright. I ca… https://t.co/E5AvD21FG2" +04/04/2018,Politicians,@BillClinton,Fifty years after his death Dr. King’s work lives on—reminding us all that on this hallowed day we should celebrate… https://t.co/2aaMwLFy49 +04/03/2018,Politicians,@BillClinton,"Tune in now as we turn #IdeasIntoAction in support of the people of Puerto Rico, the U.S. Virgin Islands, and the C… https://t.co/L5ykeOJgmG" +04/01/2018,Politicians,@BillClinton,RT @KevinThurm: A terrific collaboration by two members of the @ClintonGlobal community uses recycled material from Haiti to create new job… +03/25/2018,Politicians,@BillClinton,"Rest in peace, Michael Davidson, a 15-year veteran of the @FDNY. My prayers are with his wife Eileen and their 4 ch… https://t.co/sm74TPwPSR" +03/24/2018,Politicians,@BillClinton,"Led by inspiring, determined students of Stoneman Douglas High School, today we saw hundreds of thousands across Am… https://t.co/cgdiCg8yT4" +03/23/2018,Politicians,@BillClinton,America owes its gratitude to the students of Stoneman Douglas and their peers across the country who have joined t… https://t.co/XzJpsyINB9 +03/21/2018,Politicians,@BillClinton,"Pete Peterson was a brilliant businessman, principled public servant, committed philanthropist, great friend and pr… https://t.co/ISzXe2lrfY" +03/16/2018,Politicians,@BillClinton,Hillary and I loved and admired Louise Slaughter: https://t.co/u992GZryXL +03/15/2018,Politicians,@BillClinton,"Today, the war in Syria—already one of the worst crises of our time—enters its 7th year, with thousands of children… https://t.co/W0nwwmZWNP" +03/13/2018,Politicians,@BillClinton,"Congratulations on the great news, @TigerWoods. You and @TheBig_Easy will make fantastic captains for the… https://t.co/ckPDwldUWj" +03/09/2018,Politicians,@BillClinton,Can’t wait to meet them at the @ClintonCenter in Little Rock! https://t.co/TI2dUipCvb +03/06/2018,Politicians,@BillClinton,What a deeply meaningful way to carry on his efforts to help kids. https://t.co/H4lg7i6wE7 +02/26/2018,Politicians,@BillClinton,A big congrats to @ChefJoseAndres on a well-deserved honor. José’s tireless work in Haiti and Puerto Rico with… https://t.co/MA1fmmqibP +02/24/2018,Politicians,@BillClinton,"I loved this story! Mr. Lewis, why don’t you come by the @ClintonCenter and I’ll treat you, Karmen, and your co-wor… https://t.co/Fzc4HPOoe5" +02/21/2018,Politicians,@BillClinton,"Billy Graham lived his faith fully, and his powerful words and the conviction they carried touched countless hearts… https://t.co/UWlyt6J8zW" +02/16/2018,Politicians,@BillClinton,Congratulations to the people of Kosovo on the 10th anniversary of their independence. https://t.co/NVIcagsD4t +02/15/2018,Politicians,@BillClinton,Ron’s right. Courage and conviction led to an assault weapons ban once before. Let’s do it again. https://t.co/pG6bj6zzol +02/15/2018,Politicians,@BillClinton,"In so many industries, doing the right thing for customers is helping, not hurting, the bottom line. https://t.co/HLci9Hn59x" +02/15/2018,Politicians,@BillClinton,She’s right. https://t.co/A9DF8UEAsu +02/05/2018,Politicians,@BillClinton,Follow along on my day in the USVI: https://t.co/FYMRH4FTKU +02/05/2018,Politicians,@BillClinton,"On the 25th anniversary of the Family and Medical Leave Act, a reminder the job’s not done: https://t.co/I8yB5iiWse" +01/30/2018,Politicians,@BillClinton,I'm very excited to meet our incoming class! The #PLScholars program has given me the opportunity to meet so many f… https://t.co/2YJDqUeSl3 +01/24/2018,Politicians,@BillClinton,"Thank you, America. https://t.co/79EQeP4nJM" +01/15/2018,Politicians,@BillClinton,RT @KingJames: -Injustice Anywhere Is A Threat To Justice Everywhere- Our Lives Begin To End The Day We Become Silent About Things That Ma… +01/15/2018,Politicians,@BillClinton,"RT @BerniceKing: Today, we commemorate my father’s 89th birthday. Beyond sharing #MLK quotes, I pray that our global community, from educat…" +01/15/2018,Politicians,@BillClinton,"50 years after Dr. King's last birthday, it's up to all of us to keep his Dream of a Beloved Community alive: don't… https://t.co/JpzJqqdQl7" +01/13/2018,Politicians,@BillClinton,No Clinton Foundation funds—dedicated to Haiti or otherwise—were used to pay for Chelsea’s wedding. It’s not only u… https://t.co/djxbyo0SDo +01/12/2018,Politicians,@BillClinton,"I’ve traveled and worked in Haiti, and across Africa and Central America. The countries the president described wit… https://t.co/P5ro8z1BUC" +01/09/2018,Politicians,@BillClinton,A free press is critical to a free society—the detention of journalists anywhere is unacceptable. The Reuters journ… https://t.co/fMa0e4v5Ix +12/30/2017,Politicians,@BillClinton,RIP Sue Grafton. Hillary and I loved all your novels from “A is for Alibi” to “Y is for Yesterday.” We’ll miss Kinsey and you. Godspeed. +12/30/2017,Politicians,@BillClinton,"The @ClintonFdn's programs are helping people improve their lives. Together, we can help more people and improve ev… https://t.co/J283jpC9mI" +12/27/2017,Politicians,@BillClinton,"Words to live by, from Coach Pop. https://t.co/fOioFMtSO1" +12/27/2017,Politicians,@BillClinton,"Some wise lessons from @Eric_OGrey: + +• Small interventions and taking the first step can make a big difference in i… https://t.co/ffIYEFICGV" +12/19/2017,Politicians,@BillClinton,You know you’ve earned being called the #Mamba when you get two jerseys retired! Congratulations on a storied caree… https://t.co/4ECjmQhPku +12/14/2017,Politicians,@BillClinton,"Five years after the devastating attack on teachers and children in Sandy Hook, we mourn them and remember them. Am… https://t.co/OY2P5lXJCl" +12/13/2017,Politicians,@BillClinton,"Saddened by the loss of my friend, Mayor Ed Lee. I’ll always be grateful for his leadership and his steadfast suppo… https://t.co/XNWqujyFmF" +12/13/2017,Politicians,@BillClinton,"Congratulations, Doug Jones. You were a great US Attorney, and you ran a terrific campaign. You deserve this win. I… https://t.co/NSfv16OTwx" +12/11/2017,Politicians,@BillClinton,"There are only 4 days left to sign up for healthcare under the Affordable Care Act for 2018, so don’t wait. Visit… https://t.co/Wtgfq2aRMN" +12/01/2017,Politicians,@BillClinton,It was important to sign the legislation designating the National AIDS Memorial Grove in 1996. Great strides have b… https://t.co/Zz9TobYn8o +11/28/2017,Politicians,@BillClinton,"RT @ClintonFdn: This #GivingTuesday, see how Pres. @BillClinton & the @ClintonFdn are giving back to help Puerto Rico recover. More: https:…" +11/21/2017,Politicians,@BillClinton,People in Puerto Rico and the U.S. Virgin Islands still need help. I’m grateful for the relief organizations who ar… https://t.co/mT10XQJxqC +11/18/2017,Politicians,@BillClinton,"Tonight, @HillaryClinton and I will join our friend @JamesCarville for a look back at the '92 campaign—25 years lat… https://t.co/m7ipByWi6Q" +11/11/2017,Politicians,@BillClinton,"To our veterans and their families, today and every day: Thank You." +11/09/2017,Politicians,@BillClinton,Great having @ConanOBrien in Harlem at the @ApolloTheatre to talk about how @ClintonFdn is combating the #opioid cr… https://t.co/COv5fNDQFh +11/08/2017,Politicians,@BillClinton,"These commitments by solar companies and relief organizations, in partnership with @ClintonFdn, will help many Amer… https://t.co/OnzwZiVJKR" +11/07/2017,Politicians,@BillClinton,Don't spend tomorrow sitting around wondering why more people didn’t turn out to vote. Democracy takes work. Our job today is to VOTE. +11/03/2017,Politicians,@BillClinton,"RT @algore: @BillClinton Thanks, @BillClinton. It was a privilege to serve our nation with you for those 8 yrs. Along with our team, we wer…" +11/03/2017,Politicians,@BillClinton,"Waking up this morning grateful for being elected 25 years ago today, alongside my friend @AlGore. Honored to have served our great country." +10/31/2017,Politicians,@BillClinton,New Yorkers see this attack for what it is—an attempt to sow fear. We stand against terror as we grieve for the victims and thank the @NYPD. +10/30/2017,Politicians,@BillClinton,The opioid crisis affects us all. I hope you'll tune in for an important discussion on solutions at @JohnsHopkinSPH: https://t.co/S3zIxcvrgv +10/27/2017,Politicians,@BillClinton,RT @ClintonFdn: The airlift will help people in need in Puerto Rico. To support @DirectRelief visit: https://t.co/BdSyTqdg1E +10/26/2017,Politicians,@BillClinton,"70 has never looked so beautiful. Happy birthday, @hillaryclinton!" +10/21/2017,Politicians,@BillClinton,"Tonight, we're coming together for an unforgettable event helping storm victims begin to heal. Tune in:… https://t.co/DGPCEv5bD1" +10/21/2017,Politicians,@BillClinton,"As Americans, we lift each other up. I’m proud to be a part of this night. Hope you’ll tune in.… https://t.co/xqIh52Qusi" +10/17/2017,Politicians,@BillClinton,"Congratulations to @SenJohnMcCain, recipient of #LibertyMedal from the @ConstitutionCtr. He is a true American hero." +10/16/2017,Politicians,@BillClinton,"Our hearts are with our friends in California, who have lost so many and so much in the devastating fires." +10/14/2017,Politicians,@BillClinton,"Looking forward to an interesting conversation with @RepJoeKennedy, @ChelseaClinton, & 1,000+ students at #CGIU2017. https://t.co/M9K7pwyATY" +10/13/2017,Politicians,@BillClinton,"Each year, I'm inspired by the young leaders who participate in @CGIU. I hope you'll tune in: https://t.co/M9K7pwyATY #CGIU2017" +10/04/2017,Politicians,@BillClinton,.@StephenAtHome: the awkward years—big dreams & even bigger hair. Thank you for helping those in need.… https://t.co/mCV4P7y66i +10/02/2017,Politicians,@BillClinton,Thinking of the victims and responders in Las Vegas. This should be unimaginable in America. +10/01/2017,Politicians,@BillClinton,Congratulations Team USA on a strong #PresidentsCup victory! Always a treat to watch the best play the best. +10/01/2017,Politicians,@BillClinton,"Many happy returns, Mr. President! #39turns93 https://t.co/drgKoxwYY3" +09/25/2017,Politicians,@BillClinton,Our fellow Americans in Puerto Rico and the US Virgin Islands are in peril. They need our help now. +09/20/2017,Politicians,@BillClinton,We are keeping our friends and neighbors in Mexico and the Caribbean foremost in our thoughts now and in the difficult days ahead. +09/15/2017,Politicians,@BillClinton,"Farewell @CassiniSaturn. Twenty years since you launched, and you've brought us a universe of understanding. https://t.co/eCnjm6Uecm" +09/12/2017,Politicians,@BillClinton,"In standing up for herself, Edie also stood up for millions of Americans and their rights. May she rest in peace. https://t.co/9nNazdmnPP" +09/11/2017,Politicians,@BillClinton,"We are united in remembering those we lost, their families, and the heroic first responders in NY, VA, PA, and across America. #September11" +09/07/2017,Politicians,@BillClinton,Hurricane Harvey shattered homes and lives. Irma is just as dangerous. Americans lift each other up. Join us to hel… https://t.co/WqhUglmkpu +09/06/2017,Politicians,@BillClinton,These young people's dreams are part of the American Dream. And they make it more real for all of us. https://t.co/kVXyg0p85G +09/04/2017,Politicians,@BillClinton,America works because of all the men and women we honor today. #HappyLaborDay +08/30/2017,Politicians,@BillClinton,"So many great organizations are helping. Our family has donated to three of them: @TeamRubicon, @DirectRelief, and @TXDIAPERBANK." +08/30/2017,Politicians,@BillClinton,Our thoughts and prayers continue to be with all of the people affected by Hurricane Harvey and with those helping them. +08/29/2017,Politicians,@BillClinton,RT @ClintonFdn: Our thoughts are with those affected by #HurricaneHarvey. Here are a few ways you can support. <thread> https://t.co/Z9LTuL… +08/27/2017,Politicians,@BillClinton,"RT @HillaryClinton: As we keep everyone affected by Hurricane Harvey in our thoughts, here’s how you can help: +https://t.co/RVReG1lRAd" +08/17/2017,Politicians,@BillClinton,Standing with and grieving for the people of Barcelona in the wake of this despicable terror attack. +08/12/2017,Politicians,@BillClinton,"Even as we protect free speech and assembly, we must condemn hatred, violence and white supremacy. #Charlottesville" +08/11/2017,Politicians,@BillClinton,Proud and grateful. https://t.co/35u6IOJ2D2 +08/09/2017,Politicians,@BillClinton,There are few things I enjoy more than reading a good book. Here are a few I’ve read and recommend: https://t.co/maukY59SNE #BookLoversDay +08/09/2017,Politicians,@BillClinton,Glen Campbell was an iconic American artist & fellow Arkansan. His legacy will be his great talent & how he decided to live with Alzheimers. +08/08/2017,Politicians,@BillClinton,Standing with the Kenyan people who exercised their democratic right to vote. Hoping for a fair & credible process & peace in coming days. +08/07/2017,Politicians,@BillClinton,Proud of the work we’ve done—and continue to do every day—here and around the world. https://t.co/kSMm2JFfSn +08/07/2017,Politicians,@BillClinton,Mark White was governor of Texas while I served in Arkansas. He was a good man and a terrific leader on public education. He'll be missed. +08/04/2017,Politicians,@BillClinton,Happy Birthday @BarackObama! Hope you get some balloons. I love a good balloon. #HBD44 +07/20/2017,Politicians,@BillClinton,"As he’s shown his entire life, don’t bet against John McCain. Best wishes to him for a swift recovery." +07/18/2017,Politicians,@BillClinton,"RT @ClintonCenter: @FreedomCenter From humble beginnings to first post-Apartheid President—""Mandela"" tells of a man prepared to die in the…" +07/18/2017,Politicians,@BillClinton,The continent of Africa is full of extraordinary cultures and people. I’m proud to bring these two exhibits to the… https://t.co/ksfvgJ4ySt +07/18/2017,Politicians,@BillClinton,"Remembering my friend on #MandelaDay—his life is an ongoing inspiration to all who treasure freedom, peace, and rec… https://t.co/an3nb3HvQf" +07/15/2017,Politicians,@BillClinton,"Can't keep a good man down! Welcome back, #39. https://t.co/axnBBMihHX" +07/14/2017,Politicians,@BillClinton,Note: Not to scale. https://t.co/fTY9L401uc +07/14/2017,Politicians,@BillClinton,Thinking of Jimmy Carter today. He was working hard helping others through Habitat. I wish him a speedy recovery. +07/13/2017,Politicians,@BillClinton,Looking forward to joining President George W. Bush at the 2017 @PLSProgram graduation ceremony: https://t.co/fp6e48ugav +07/09/2017,Politicians,@BillClinton,I'm happy to see Leopoldo Lopez was reunited with his family. He and other political prisoners in Venezuela deserve their freedom. +07/04/2017,Politicians,@BillClinton,What we celebrate today is not just the birth of a nation but the ideals that built and sustain a democracy. Happy 4th of July! +06/28/2017,Politicians,@BillClinton,@Kiva This is a big deal! Congrats to @Kiva for helping make so many good things happen all over the world. +06/16/2017,Politicians,@BillClinton,Helmut Kohl’s visionary leadership prepared Germany and all of Europe for the 21st century. https://t.co/ltdamqIgt5 +06/16/2017,Politicians,@BillClinton,The @ClintonSchool is adding the first online Master of Public Service degree. This is a big deal! https://t.co/omsUnwJo0K +06/15/2017,Politicians,@BillClinton,"RT @ClintonFdn: Together, we’re changing the world. Donate today & President @BillClinton will double your impact https://t.co/CmLYWgZsaI h…" +06/12/2017,Politicians,@BillClinton,Nothing beats a 93rd birthday phone call with the remarkable @GeorgeHWBush. Many happy returns #41! +06/12/2017,Politicians,@BillClinton,"Our work at the Clinton Foundation is a reminder that when people come together to solve problems, good things can… https://t.co/YQ4Hl8JPJB" +06/01/2017,Politicians,@BillClinton,Walking away from Paris treaty is a mistake. Climate change is real. We owe our children more. Protecting our future also creates more jobs. +06/01/2017,Politicians,@BillClinton,Great tribute to Willie Mays the other night—Hank Aaron told me Willie was the best he’d ever played with. #SayHey https://t.co/ZYwkhFS3nj +06/01/2017,Politicians,@BillClinton,RT @ClintonFdn: Join a life-long network of change-makers. Apply for the 2018 class of Presidential Leadership Scholars: https://t.co/iopxA… +06/01/2017,Politicians,@BillClinton,"After reading this speech, I feel better about our future. Bravo @hamdiulukaya for an inspiring message of hope. Ev… https://t.co/lCwwpkR6xP" +05/30/2017,Politicians,@BillClinton,RT @MinassianMedia: New from the Arkansas Democrat-Gazette: how @ClintonFdn is helping police departments save lives. https://t.co/pphyZd6Z… +05/29/2017,Politicians,@BillClinton,AmeriCorps grew out of the Peace Corps’ infectious loyalty—a big part of JFK’s legacy. He knew what happens in the… https://t.co/42SF21ghqP +05/29/2017,Politicians,@BillClinton,"JFK’s legacy includes his belief in peace for everyone on earth. Our differences are interesting, our common humanity matters more. #JFK100" +05/29/2017,Politicians,@BillClinton,Today—and every day—we remember the sacrifices of the fallen and thank them for all they made possible. +05/26/2017,Politicians,@BillClinton,What a great speech. @HillaryClinton will never stop believing in—and fighting for—truth and reason. https://t.co/nSTxVsnYKt +05/24/2017,Politicians,@BillClinton,Congratulations to Dr. Tedros—the work of the WHO is now more important than ever. https://t.co/oojIwjIsvr +05/23/2017,Politicians,@BillClinton,Senseless & vicious acts of terror will never drive us apart and will always be met with strength. Praying for the victims in Manchester. +05/20/2017,Politicians,@BillClinton,"This weekend is @HarlemEatUp festival, celebrating Harlem food, culture, and spirit. Congratulations on the 3rd year! #HarlemEatUp" +05/14/2017,Politicians,@BillClinton,Happy Mother's Day to two special mothers in my life - @HillaryClinton and @ChelseaClinton - and all mothers here and gone. +05/12/2017,Politicians,@BillClinton,"Hey @NYTimesWordplay, hope you all enjoy the puzzle! https://t.co/H5WJS3KWWA" +05/10/2017,Politicians,@BillClinton,RT @CGIU: TODAY is the LAST DAY to apply for #CGIU2017! Don’t procrastinate – apply now: https://t.co/tdVGoNvhaX https://t.co/iCZWhqBf0u +05/09/2017,Politicians,@BillClinton,Great piece by @HowellWechsler on how business sector partnerships can have a profound impact on children's health: https://t.co/NQlSvQkLvU +05/07/2017,Politicians,@BillClinton,Congratulations to President-elect @EmmanuelMacron and the French people. +04/23/2017,Politicians,@BillClinton,BREAKING: We just learned that the @ClintonCenter has been bugged. https://t.co/4Or6lrnRPN +04/22/2017,Politicians,@BillClinton,"RT @ClintonFdn: This #EarthDay, see how we're turning ideas into action for a greener 🌎 → https://t.co/bHQDKeelSI https://t.co/6vtfqEh3R7" +04/19/2017,Politicians,@BillClinton,"OKC, for 22 years you have honored the memories of your loved ones & inspired us with the power of your renewal. #okcbombing #OklahomaStrong" +04/18/2017,Politicians,@BillClinton,The opioid crisis affects so many all across America—proud that @RyanForRecovery found help and is helping others. https://t.co/7DeeqIyEdk +04/18/2017,Politicians,@BillClinton,So glad to have been a part of this important and timely event. #Recommit2Kids https://t.co/IIYpiacReU +04/17/2017,Politicians,@BillClinton,"If you're a student with big ideas, I hope you'll join us at #CGIU2017: https://t.co/mJZ0nVqJZ2 https://t.co/tUIYBrE80b" +04/13/2017,Politicians,@BillClinton,"RT @ClintonFdn: ""Small interventions can have a big impact when multiplied"" —Pres. @BillClinton reflects on #HealthMatters2017: https://t.c…" +04/10/2017,Politicians,@BillClinton,Looking forward to important conversations today on improving health outcomes for all. Tune in: https://t.co/ZL1CKIlHv9 #HealthMatters2017 +04/09/2017,Politicians,@BillClinton,"Great to spend time with @GeorgeHWBush & Mrs. Bush in Houston today. We caught up about kids, grandkids, old times… https://t.co/A0ERlfcKLq" +04/06/2017,Politicians,@BillClinton,"RT @ClintonCenter: Welcome to Little Rock, @PLSprogram. We're happy to have you at the @ClintonCenter this week. #PLScholars https://t.co/N…" +04/05/2017,Politicians,@BillClinton,So happy to see Patrick Ewing coming home to @GeorgetownHoyas. Hoya Saxa! #HomeSw33tHome +04/03/2017,Politicians,@BillClinton,Congratulations to my friend @DawnStaley and the great @GamecockWBB on a terrific win! +04/02/2017,Politicians,@BillClinton,"RT @ClintonCenter: Tonight, 100+ student designers will show off their sustainable designs at Curbside Couture, our annual ""green"" fashion…" +03/31/2017,Politicians,@BillClinton,Wonderful essay by a @PLSprogram scholar on seeing the world from different viewpoints. #PLScholars https://t.co/pF8yXk8AGH +03/29/2017,Politicians,@BillClinton,Great piece. https://t.co/NO7Oz6AXSW +03/29/2017,Politicians,@BillClinton,Proud @ClintonFdn boosts access to Naloxone--to stop the epidemic we need community-based prevention & treatment. https://t.co/cMU12mL64s +03/28/2017,Politicians,@BillClinton,"Excited to get to work expanding @ClintonFdn #HealthMatters efforts to San Diego, together with these terrific part… https://t.co/TubvHoE56R" +03/28/2017,Politicians,@BillClinton,"RT @MinassianMedia: And while we have your attention from recycled, false claims, here are some facts about how @ClintonFdn has improved li…" +03/24/2017,Politicians,@BillClinton,RT @HillaryClinton: Today was a victory for all Americans. https://t.co/LX6lzQXtBR +03/24/2017,Politicians,@BillClinton,"At @ClintonFdn, we believe that we all do better when we work together. I hope you'll join us in the year ahead: https://t.co/X8lj6cJ5Hs" +03/24/2017,Politicians,@BillClinton,Proud of @ClintonCenter & @ClintonSchool for hosting an inspirational lecture about women STEM pioneers—including t… https://t.co/TbMrprM91N +03/22/2017,Politicians,@BillClinton,On #WorldWaterDay recalling a terrific visit to @ClintonGlobal partner @HarborSchool—great program & oyster project… https://t.co/3IDSzysWH1 +03/21/2017,Politicians,@BillClinton,Martin McGuinness believed in a shared future for Northern Ireland and he was steadfast & courageous in its pursuit. https://t.co/rykG5AxPjw +03/20/2017,Politicians,@BillClinton,Nobody should be left out or left behind—not rural businesses or schoolkids. Glad to see broadband expanding in NY: https://t.co/DBvXzHt6mC +03/19/2017,Politicians,@BillClinton,"Chuck Berry’s life was a treasure and a triumph, and he’ll never be forgotten. https://t.co/3Q7z0NatUd" +03/15/2017,Politicians,@BillClinton,"We must always strive to make it easier to vote, not harder. The work continues. https://t.co/CfiixXwQ3G" +03/13/2017,Politicians,@BillClinton,"Kika de la Garza was a good man, very effective congressman, valued friend, & a champion for opportunity and social… https://t.co/DXkkIdiS9H" +03/10/2017,Politicians,@BillClinton,Robert Osborne taught us more about movies so we could love them as much as he did. May he rest in peace. +03/08/2017,Politicians,@BillClinton,RT @ChelseaClinton: Last book Charlotte asks for every night before bed. Looking forward to reading it later to her & Aidan on #IWD2017 htt… +03/08/2017,Politicians,@BillClinton,"RT @HillaryClinton: On #InternationalWomensDay I'm thinking about this young girl, & all the others like her out there. 💪✨ https://t.co/u1f…" +03/07/2017,Politicians,@BillClinton,"Thank you for your leadership, @RepJohnLewis, then and now. https://t.co/UJZtoc8pJ6" +03/06/2017,Politicians,@BillClinton,"Proud to have established Cascade-Siskiyou National Monument, and so glad that @BarackObama expanded it in January! https://t.co/DJJOYQHzuy" +02/25/2017,Politicians,@BillClinton,"Congratulations to new DNC Chair Tom Perez, Keith Ellison, & the great field of candidates who ran. United Democrats are stronger Democrats." +02/20/2017,Politicians,@BillClinton,"On #PresidentsDay, reaffirming Lincoln’s words in his 1st Inaugural Address: “This country, with its institutions, belongs to the people…”" +02/18/2017,Politicians,@BillClinton,I second this recommendation! https://t.co/iUpKmrxydB +02/18/2017,Politicians,@BillClinton,Terrific piece by a @PLSprogram scholar on listening to and hearing one another despite our differences: https://t.co/30Z7MvgxRR +02/09/2017,Politicians,@BillClinton,Bill Frist is right about PEPFAR. We need U.S. leadership on global health more than ever. https://t.co/LVOjA840AC +02/03/2017,Politicians,@BillClinton,We're proud of all we've accomplished together—I hope you'll join us as we work to expand opportunity in 2017: https://t.co/5zAaW7uBWc +02/03/2017,Politicians,@BillClinton,RT @ClintonFdn: We’re proud of what we accomplished together in 2016 and hope you'll join as we expand our impact in the year ahead: https:… +02/02/2017,Politicians,@BillClinton,"Hillary and I loved visiting with the cast and crew of @InTransitBway, a moving, creative story of different lives… https://t.co/gFYyHI9DQF" +02/02/2017,Politicians,@BillClinton,Excited about the 10th CGIU meeting in October at Northeastern University in Boston! #CGIU2017 https://t.co/HqOJSfrRJN +01/30/2017,Politicians,@BillClinton,RT @ClintonCenter: Proud to announce the 2017 class of Presidential Leadership Scholars. Join us in congratulating them! https://t.co/pgEZG… +01/20/2017,Politicians,@BillClinton,RT @HillaryClinton: I'm here today to honor our democracy & its enduring values. I will never stop believing in our country & its future. #… +01/18/2017,Politicians,@BillClinton,"41 and Barbara—thinking about you both and sending wishes for a speedy recovery. Love, 42." +01/16/2017,Politicians,@BillClinton,"Life's most persistent and urgent question is, “What are you doing for others?”— Dr. Martin Luther King, Jr. #MLKDay" +01/12/2017,Politicians,@BillClinton,"As we remember those lost on that terrible day 7 years ago, I remain hopeful about the future of #Haiti & its resilient people." +01/05/2017,Politicians,@BillClinton,Terrific work by six @CGIU alumni who represent a new generation of leaders and innovators. https://t.co/yMuFXnKepF +01/01/2017,Politicians,@BillClinton,"Happy New Year—2017 & beyond will be bright if we use our imagination, passion & skills to lift each other up & make all our lives stronger." +12/21/2016,Politicians,@BillClinton,I’m excited about the important work #PLScholars are doing around the world. Read about it: https://t.co/GNhewkaFKu +12/20/2016,Politicians,@BillClinton,Here’s one thing @realDonaldTrump and I can agree on — I called him after the election. https://t.co/URSS89oQ6P +12/20/2016,Politicians,@BillClinton,"As an elector from my home state of New York, I've never been more proud to cast a vote than my vote today for @HillaryClinton." +12/09/2016,Politicians,@BillClinton,Our friend John Glenn was a uniquely American hero and one of the finest men Hillary and I have ever known. https://t.co/EjYIfgUFka +12/05/2016,Politicians,@BillClinton,"Every day, I think of my dear friend Madiba, and the great mind and heart he shared equally with all." +12/05/2016,Politicians,@BillClinton,My heart goes out to the families and friends of all those lost in the terrible fire in Oakland. +12/01/2016,Politicians,@BillClinton,On #WorldAIDSDay let’s reaffirm our commitment to ending the HIV/AIDS epidemic & discrimination hindering treatment. https://t.co/MIuBY4uWWw +11/15/2016,Politicians,@BillClinton,"Gwen Ifill was a trailblazer and a bright light in journalism. She informed and challenged us, and did so with grace. I will miss her." +11/11/2016,Politicians,@BillClinton,Remembering and honoring our veterans today. We owe them more than we can ever repay. +11/07/2016,Politicians,@BillClinton,Janet Reno was an extraordinary public servant who never forgot about the lives of real people. https://t.co/CJw6clqRfX +11/03/2016,Politicians,@BillClinton,Enjoyed an early morn visit to Detroit's Eastern Mkt to see some voters. Go see @HillaryClinton tomorrow:… https://t.co/gHDihJRBTu +11/02/2016,Politicians,@BillClinton,Praying for the loved ones and the communities of the two police officers killed in Iowa in a senseless act of violence. +07/01/2018,Politicians,@BernieSanders,"In a nation where corporate media defines what's ""acceptable,"" voter turnout lags behind almost every major nation… https://t.co/WFm5Orludt" +07/01/2018,Politicians,@BernieSanders,This is what the political revolution is all about. All across this country working people and young people are get… https://t.co/NuIb5gJWSQ +06/30/2018,Politicians,@BernieSanders,"I was very pleased to join friends, supporters, volunteers, and the people of the Northeast Kingdom at Newport’s Ce… https://t.co/KPNC6KxXIu" +06/29/2018,Politicians,@BernieSanders,"“In a modern, moral and wealthy society, no person in America should be too poor to live.” –@Ocasio2018" +06/27/2018,Politicians,@BernieSanders,The people of Maryland understand that we can most effectively oppose Donald Trump's extremism with strong progress… https://t.co/KRNyO47uNE +06/27/2018,Politicians,@BernieSanders,"Congratulations to @BenJealous on his great victory tonight! Ben showed that running a progressive, issue-oriented… https://t.co/PJjxIwmrm5" +06/27/2018,Politicians,@BernieSanders,Congratulations to @Ocasio2018 on her extraordinary upset victory tonight! She took on the entire local Democratic… https://t.co/HCcdDDEuVC +06/26/2018,Politicians,@BernieSanders,"CO, NY, MD, MS, OK & UT: If you haven't voted yet, get to your polling place & make your voice heard! When we stand… https://t.co/9FTuXGPss3" +06/24/2018,Politicians,@BernieSanders,There's a reason why Nikki Haley has tried to discredit the UN report on poverty in America. It's because in the we… https://t.co/xJWvcCxyp6 +06/24/2018,Politicians,@BernieSanders,"When you represent the billionaire class and have nothing relevant to say to working families, the only way you win… https://t.co/SErhZces2c" +06/23/2018,Politicians,@BernieSanders,"Now is not a time for despair or resignation. It is a time for the American people to fight back on every front. + +https://t.co/IE0T7iil9c" +06/23/2018,Politicians,@BernieSanders,"Trump's pathological dishonesty is undermining American democracy, is setting a terrible example for our children a… https://t.co/z6zb5KlbBu" +06/23/2018,Politicians,@BernieSanders,"Honest people can have philosophical and political differences and, in a democracy, we debate those differences. T… https://t.co/PxtAGcy5fg" +06/22/2018,Politicians,@BernieSanders,The rally in Washington will start at 10 a.m. on the Mall at 7th Street. +06/22/2018,Politicians,@BernieSanders,What @RevDrBarber and @UniteThePoor are doing is bringing Americans together to stand up and fight for change in th… https://t.co/GCSvjXb25P +06/21/2018,Politicians,@BernieSanders,Jane Kleeb is doing a great job. If Democrats are going to compete and win in all 50 states we need more state par… https://t.co/zTJAXcObNj +06/19/2018,Politicians,@BernieSanders,The Trump administration policy of separating children from their parents at our border is a national disgrace. Kid… https://t.co/j4Gw50oLBx +06/19/2018,Politicians,@BernieSanders,RT @AriRabinHavt: Big crowd for @BernieSanders and @BenJealous in Silver Spring Watch live: https://t.co/bzTMeyNAy9 https://t.co/tY1Zl67Lcs +06/16/2018,Politicians,@BernieSanders,It's time to make public colleges and universities tuition-free. https://t.co/2fyMXN5qjW +06/07/2018,Politicians,@BernieSanders,I am proud to support @BenJealous in his campaign for Governor of Maryland. Ben is a proven leader running a truly… https://t.co/yacwbaLZS2 +06/03/2018,Politicians,@BernieSanders,We need district attorneys and prosecutors who understand that their job is not just throwing people in jail but fi… https://t.co/sPpTVL3qYW +06/03/2018,Politicians,@BernieSanders,"RT @reformlajails: If you didn't get a chance to watch the event yesterday, check out our re-stream from yesterday with @BernieSanders , #…" +06/03/2018,Politicians,@BernieSanders,RT @shawneebadger: Thank you so much for coming to speak to Disneyland cast members @BernieSanders @SenSanders! When guests forget we are r… +06/03/2018,Politicians,@BernieSanders,Violence and murder by the state is not a civilized act. We must abolish the death penalty. +06/03/2018,Politicians,@BernieSanders,"$30,000: The cost to send a California student to UCLA + +$75,000: The cost to send someone to prison in California… https://t.co/ccvmxkfHko" +06/03/2018,Politicians,@BernieSanders,We have one system of justice for the wealthy and another for the poor. We have one system of justice if you are wh… https://t.co/VYXFCOdVlU +06/03/2018,Politicians,@BernieSanders,"@ShaunKing Thank you, Shaun. But at the end of the day it’s not Bernie. It’s us. Change will only come from million… https://t.co/sIl892BRdS" +06/03/2018,Politicians,@BernieSanders,"RT @ShaunKing: @BernieSanders Who you are, what you do, who you fought for, and where you were during the #BlackLivesMatter movement means…" +06/03/2018,Politicians,@BernieSanders,We claim to have justice for all in this country. That would be naïve to believe. We have one system of justice for… https://t.co/l0JxL71dfy +06/02/2018,Politicians,@BernieSanders,"RT @GoodJobsNation: ""I go hungry most days"" - Glynndana Shevlin, Disneyland worker w/@UNITEHERE11. #StopDisneyPoverty #RaiseTheWage" +06/02/2018,Politicians,@BernieSanders,"RT @Fightfor15LA: ""While working at #Disneyland I've been evicted twice, I live on one meal a day. I work in one of the most beautiful room…" +06/02/2018,Politicians,@BernieSanders,"Recently, Disney CEO Bob Iger did the right thing and cancelled Roseanne after her racist tweet. + +I say to Mr. Ige… https://t.co/yIxnQZVtNU" +06/02/2018,Politicians,@BernieSanders,"In the year 2018, no one in America, especially those working for a profitable corporation like Disney, should be h… https://t.co/dISMTiVtRw" +06/02/2018,Politicians,@BernieSanders,You want to know what is radical? A company like Disney that makes $9 billion in profits while nearly 75% of its wo… https://t.co/Uhkb5l2FXD +06/02/2018,Politicians,@BernieSanders,"We are here at Disneyland to say loudly and clearly to the CEO of Disney: Pay your workers a living wage, not a pov… https://t.co/VmHhpGivnc" +06/02/2018,Politicians,@BernieSanders,"While Disney’s CEO makes up to $423 million: + +- 1 in 10 Disneyland workers have been homeless in the past 2 years +-… https://t.co/qhiCmrXJNv" +06/02/2018,Politicians,@BernieSanders,"RT @unitehere: Live from Anaheim! #stopdisneypoverty roundtable getting ready to start soon, with host @SenSanders. Disney workers from @un…" +06/02/2018,Politicians,@BernieSanders,RT @GoodJobsNation: TWICE: Bernie Sanders will go live with us today to protest wage theft by port truck companies AND demand a living wage… +05/26/2018,Politicians,@BernieSanders,I was pleased to be joined by so many Vermonters in the Essex Memorial Day Parade today. Memorial Day is a time to… https://t.co/MoNsi9pZ9J +05/22/2018,Politicians,@BernieSanders,RT @lcmoser: RT to remind folks to VOTE today! https://t.co/ToJ2KB2I9L https://t.co/c0AmEa3S7s +05/22/2018,Politicians,@BernieSanders,"RT @staceyabrams: Today's the day – It’s Election Day! Starting at 7 AM, voters across Georgia will begin casting ballots to choose the dir…" +05/21/2018,Politicians,@BernieSanders,"But today, I wanted to let you know that it was my intention to run again for the Senate, and to ask if you could h… https://t.co/cwGRAGQ8Mo" +05/21/2018,Politicians,@BernieSanders,It is my intention to run a strong grassroots campaign throughout Vermont and I look forward to your support. +05/21/2018,Politicians,@BernieSanders,But being anti-Trump and anti-Republican is not enough. We need to continue our fight for a progressive agenda whic… https://t.co/B53MVHj6qT +05/21/2018,Politicians,@BernieSanders,"If reelected, you can be sure that I will continue to be the fiercest opponent in the Senate to the rightwing extre… https://t.co/GAOVj02K1y" +05/21/2018,Politicians,@BernieSanders,"These are frightening and unprecedented times. We have a president who is not only a pathological liar, but someone… https://t.co/HU1xBYPlPy" +05/21/2018,Politicians,@BernieSanders,"I have some important news to share, and I wanted you to hear it from me: Today, I am announcing my intention to ru… https://t.co/5PpvGZInpN" +05/17/2018,Politicians,@BernieSanders,"RT @ShaunKing: Los Angeles & All of SoCal! + +The free tickets for this amazing event I’m co-hosting on Saturday, June 2nd w/ @BernieSanders…" +05/17/2018,Politicians,@BernieSanders,"By allowing cheaper imported drugs into the state, we have taken a great step in the fight for health justice." +05/17/2018,Politicians,@BernieSanders,I am proud that my home state of Vermont has chosen to allow importation of drugs from Canada. The goal of a sane h… https://t.co/YUfhUPLV0y +05/17/2018,Politicians,@BernieSanders,"In 1999, I became the first member of Congress to take constituents over the Canadian border to purchase low-cost p… https://t.co/UHzNE6OklY" +05/17/2018,Politicians,@BernieSanders,"RT @staceyabrams: So grateful for Senator @BernieSanders’ endorsement. We’re excited you’re on our team to move Georgia forward. United, we…" +05/15/2018,Politicians,@BernieSanders,"I am proud to support @JohnFetterman for Lieutenant Governor and @edwardsforpa, @jessforcongress, and @RichLazerPHL… https://t.co/utQAKUsfIq" +05/15/2018,Politicians,@BernieSanders,Pennsylvania: today you have a chance to support some true progressives who share our vision for the future. +05/11/2018,Politicians,@BernieSanders,RT @RichLazerPHL: Proud to have the endorsement of @BernieSanders in #PA05 -- I look forward to fighting alongside him for working families… +05/06/2018,Politicians,@BernieSanders,"Bernie just returned from a campaign swing with these candidates. Turnouts at each of the rallies was great, and en… https://t.co/QUgPPkPsRe" +05/06/2018,Politicians,@BernieSanders,"Thanks to all the people who have provided support for progressive Pennsylvania candidates like John Fetterman, can… https://t.co/Lqtqptj4Qy" +05/06/2018,Politicians,@BernieSanders,"If we are going to turn this country around politically, we need to do well in states like Pennsylvania." +05/05/2018,Politicians,@BernieSanders,"RT @AriRabinHavt: . @edwardsforpa agrees with Bernie - we’re not going to let Republicans cut Social Security, Medicare, and Medicaid. http…" +05/05/2018,Politicians,@BernieSanders,RT @jessforcongress: AMAZING crowd this morning in Lancaster city for our rally with @berniesanders! ♥️🇺🇸 #allofus #pa11 https://t.co/aGbAU… +05/04/2018,Politicians,@BernieSanders,Watch: Rally with John Fetterman https://t.co/qs3E6iNK7U +05/04/2018,Politicians,@BernieSanders,"In Vermont, the first Saturday in May is Green Up Day! Vermonters from all over the state will be getting together… https://t.co/2I1z4lAjQX" +05/04/2018,Politicians,@BernieSanders,"Pete D’Alessandro grew up in a union household and he has spent his life fighting for people. Now, we need him in C… https://t.co/Usr1YO12gI" +05/03/2018,Politicians,@BernieSanders,"RT @jacobinmag: Bernie talks with Jacobin Radio's @DanielDenvir live! + +A round table on criminal justice reform streams Friday, May 4 at 2…" +05/02/2018,Politicians,@BernieSanders,"RT @JohnFetterman: This Friday, May 4th, @BernieSanders is joining me in #Philadelphia to rally for a Pennsylvania that leaves no one behin…" +05/01/2018,Politicians,@BernieSanders,"RT @EmilyForCO: GREAT NEWS: I've just been endorsed by the @AFLCIOCO! So honored to have this support as I campaign for workers' rights, pa…" +04/30/2018,Politicians,@BernieSanders,"RT @jessforcongress: This Saturday, May 5th, @BernieSanders is joining me in #PA11 to rally for an America that works for all of us. + +RSVP…" +04/30/2018,Politicians,@BernieSanders,"In Seattle, officials recently announced that they have filed a motion to vacate all convictions and drop all charg… https://t.co/KuSVAPeMvb" +04/30/2018,Politicians,@BernieSanders,"A number of states are now rethinking the ""war on drugs"" and are either decriminalizing possession of marijuana or making it legal." +04/30/2018,Politicians,@BernieSanders,We are finally beginning to win some major victories in reforming our broken criminal justice system which has dest… https://t.co/bdsqwCWD2A +04/28/2018,Politicians,@BernieSanders,"Instead of spending billions on jails and incarceration, we need to invest in our teachers and our schools. Instead… https://t.co/QgHU09QZRC" +04/28/2018,Politicians,@BernieSanders,"Congratulations to the teachers of West Virginia, Oklahoma, Kentucky and Arizona for helping to lead this country f… https://t.co/xRFQJAXNHh" +04/26/2018,Politicians,@BernieSanders,This is not about ME. This is about US. The truth is that the agenda we are fighting for is not only becoming the a… https://t.co/iU7U5GIccA +04/25/2018,Politicians,@BernieSanders,Neither democracy nor the Democratic Party is well-served when some 700 super-delegates can ignore the will of thei… https://t.co/GFpmyGUC8P +04/24/2018,Politicians,@BernieSanders,RT @mic: .@BernieSanders wants to tackle the #opioidcrisis by attacking it from the top down: by punishing every single Big Pharma CEO who… +04/23/2018,Politicians,@BernieSanders,"Oregon - Make sure you're registered to vote in the May 15th primary. Registration ends Tuesday (tomorrow), April 2… https://t.co/Mm8EGIjZzE" +04/23/2018,Politicians,@BernieSanders,"Thank you to the people around the country fighting to make health care a right. Change does not happen overnight,… https://t.co/Sq5eAKefS7" +04/21/2018,Politicians,@BernieSanders,RT @VanJones68: This Saturday -- Set your DVRs! @BernieSanders & @CecileRichards joins The #VanJonesShow on @CNN at 7PM ET!! https://t.co/W… +04/19/2018,Politicians,@BernieSanders,"Our political revolution means getting real progressives to run for office at every level, in every state, and in e… https://t.co/50OIXIfIel" +04/19/2018,Politicians,@BernieSanders,"RT @vicenews: Bernie Sanders has a plan to save the postal service +https://t.co/goA1vHy2Jn https://t.co/4CgaqDcmyL" +04/12/2018,Politicians,@BernieSanders,"RT @BoldProgressive: ""We started the campaign by developing a progressive agenda that said that we are going to deal with the disgrace of h…" +04/12/2018,Politicians,@BernieSanders,"RT @BoldProgressive: Who’s ready to hear from today’s keynote speakers @ElizabethforMA and @SenSanders?? Watch live here: link +https://t.co…" +04/11/2018,Politicians,@BernieSanders,"RT @briebriejoy: In my newest piece for @NYMag, I cover how southerners, rather than the pundit class, responded to @SenSanders's recent tr…" +04/05/2018,Politicians,@BernieSanders,It's unfortunate that some have so degraded our discourse that my recognition of the historical significance of the… https://t.co/IlFIreM9Kw +04/05/2018,Politicians,@BernieSanders,"Thank you @ChokweALumumba for hosting a great town hall last night. We can, we must and we shall overcome the force… https://t.co/Hy9m9ZFU3b" +04/04/2018,Politicians,@BernieSanders,"RT @TheRevAl: Marching in Memphis marking the Memphis Sanitation Workers Strike w/ Martin Luther King lll, Senator Bernie Sanders, Lee Saun…" +04/04/2018,Politicians,@BernieSanders,RT @trymainelee: Bernie Sanders addressing crowd of thousands gathered at AFSCME hq to commemorate Dr. King’s legacy. Sanders calls for dou… +04/04/2018,Politicians,@BernieSanders,I want to thank the teachers across the country who are saying loudly and clearly that taking care of our kids and… https://t.co/edXRCnPf2V +04/03/2018,Politicians,@BernieSanders,"I very much look forward to seeing our friends in Jackson tomorrow night, along with @ChokweALumumba to hold a town… https://t.co/rz15xCdljq" +03/29/2018,Politicians,@BernieSanders,"We have got to take the fight for economic, social, racial, and environmental justice to every county in every stat… https://t.co/SgqAbXGw53" +03/23/2018,Politicians,@BernieSanders,"RT @mehdirhasan: “We need to talk about inequality” - the first episode of my new podcast, Deconstructed, is out, featuring @BernieSanders.…" +03/22/2018,Politicians,@BernieSanders,RT @DukeChronicle: @BernieSanders will now speak at Duke with Rev. William Barber II on April 19: https://t.co/0nYuQhNAW8 +03/21/2018,Politicians,@BernieSanders,"Congratulations to @ChuyForCongress, @ortizstaterep, @AlmaAnaya7th, @beatrizforjudge & @Delia4StateRep. The politic… https://t.co/KBinKmXiZP" +03/19/2018,Politicians,@BernieSanders,RT @thenation: Bernie Sanders Wants to Tell the Story That Corporate Media Fails To https://t.co/eEh2YxfD0w +03/18/2018,Politicians,@BernieSanders,RT @thenation: Bernie Sanders Wants to Tell the Story That Corporate Media Fails To https://t.co/yUoxNl2VxU +03/16/2018,Politicians,@BernieSanders,RT @GdnInequality: The corporate media ignores the rise of oligarchy. The rest of us shouldn't | Bernie Sanders https://t.co/t8anXYUedx htt… +03/14/2018,Politicians,@BernieSanders,"RT @nowthisnews: 'The time is now, for all of us together, to stand up to the NRA and to pass commonsense gun legislation' - Bernie Sanders…" +03/11/2018,Politicians,@BernieSanders,"Arizona, if there was ever a time in the modern history of this country where people have got to stand up and fight… https://t.co/5EpsTIm03O" +03/11/2018,Politicians,@BernieSanders,Pathetic that President Trump attacked smart and compassionate @RepMaxineWaters -- both traits alien to him. +03/11/2018,Politicians,@BernieSanders,We’re here to bring the Dodgers back to Brooklyn. https://t.co/V5Zrqir9cw +03/11/2018,Politicians,@BernieSanders,With a few tweaks I think @YasielPuig had 30 home runs in him this year. https://t.co/sPqphKlOi3 +03/11/2018,Politicians,@BernieSanders,The rumors are true. I am trying out for the Dodgers. https://t.co/U1DuGOeLdX +03/10/2018,Politicians,@BernieSanders,"If we can transform politics in Texas, we can do it in every state in America. Thank you, Lubbock! https://t.co/ComSKMasql" +03/10/2018,Politicians,@BernieSanders,Watch live here: https://t.co/eFKOtrS7Ab +03/10/2018,Politicians,@BernieSanders,"I've never believed in this blue-state, red-state nonsense. Yes, Lubbock voted overwhelmingly for Trump. But any co… https://t.co/dPHDvvQyOm" +03/10/2018,Politicians,@BernieSanders,Assault weapons are military weapons designed to kill human beings. They should not be sold in this country. +03/10/2018,Politicians,@BernieSanders,"Our message to Donald Trump, perhaps our most important message, is that we will not let bigots divide us up. Regar… https://t.co/lTX5JZkryp" +03/10/2018,Politicians,@BernieSanders,"If Texans are prepared to work hard, stand up, fight back, talk to people who voted for Trump, make sure that every… https://t.co/t00k9JnqKr" +03/09/2018,Politicians,@BernieSanders,"RT @AustinChronicle: Jake Tapper interviews Sen. Bernie Sanders during an early keynote at #SXSW 2018. + +📷: @JanaB04 https://t.co/jepTkre8Gc" +03/08/2018,Politicians,@BernieSanders,.@Marie4Congress has made it clear that she will be a champion for working families. I'm proud to support her campa… https://t.co/i12gM2YzMV +02/28/2018,Politicians,@BernieSanders,"Pastor Tillman, your work as well as all of those I met in Flint is extraordinary. I look forward to continuing to… https://t.co/pcKYfsKkkD" +02/27/2018,Politicians,@BernieSanders,We should not be selling assault weapons in this country. These weapons are not for hunting. They are military weap… https://t.co/2ZOCwrh2pB +02/26/2018,Politicians,@BernieSanders,"RT @taxmarch: ICYMI: @LittleMissFlint spoke out for so many kids yesterday: + +""To the grown ups in Washington, I want to make it clear that…" +02/26/2018,Politicians,@BernieSanders,Thank you Mari for joining us today. https://t.co/m25h9z9nQ9 +02/25/2018,Politicians,@BernieSanders,RT @AriRabinHavt: Another view of Bernie's rally in Lansing https://t.co/V9VYwQW08b +02/24/2018,Politicians,@BernieSanders,"Watch our rally in Green Bay, Wisconsin with #NotOnePenny & @TaxMarch tonight at 8pm EST on https://t.co/dWgRIKgZX1 https://t.co/D2hC5Udn5z" +02/24/2018,Politicians,@BernieSanders,Saying hello to the people in the Milwaukee Public Market. https://t.co/UixX8oyTTX +02/22/2018,Politicians,@BernieSanders,"No one, including Clinton, should ever face meddling from foreign government https://t.co/bMKOAGVQAw" +02/22/2018,Politicians,@BernieSanders,"The findings of Robert Mueller's investigation must be taken seriously at every level of government, and he must be… https://t.co/G1UpEI0esg" +02/22/2018,Politicians,@BernieSanders,Mueller's indictment provides further evidence that the Russian government interfered in 2016. It also shows that t… https://t.co/m98fM9EZV0 +02/21/2018,Politicians,@BernieSanders,"The key issues now are: + +1) How we prevent the unwitting manipulation of our electoral and political system by for… https://t.co/OeK6US1AjK" +02/21/2018,Politicians,@BernieSanders,"As someone who campaigned hard for Hillary Clinton from one end of this country to another, it is an outrage that s… https://t.co/QHtTZI6Neg" +02/21/2018,Politicians,@BernieSanders,What the Russians did in the 2016 election cycle deserves unconditional condemnation. That includes all of their co… https://t.co/YfYYwYzZLP +02/21/2018,Politicians,@BernieSanders,RT @sxsw: Senator @BernieSanders will sit down with @CNN's @jaketapper for a conversation at #SXSW 2018! https://t.co/36K5eOxi9Y https://t.… +02/16/2018,Politicians,@BernieSanders,It is absolutely imperative that the Mueller investigation be allowed to go forward without obstruction from the Tr… https://t.co/rlPK2QKheN +02/16/2018,Politicians,@BernieSanders,It has been clear to everyone (except Donald Trump) that Russia was deeply involved in the 2016 election and intend… https://t.co/yak1Vr8L2q +02/14/2018,Politicians,@BernieSanders,RT @RollingStone: Is a progressive revolt brewing in West Virginia? https://t.co/KZs3EuyIUD https://t.co/2iO4t9IFQt +02/10/2018,Politicians,@BernieSanders,"Reg E. Cathey was a voice of the political revolution, and someone I had the honor of working with during my 2016 c… https://t.co/a5UHYfPwVl" +02/08/2018,Politicians,@BernieSanders,RT @nowthisnews: Here's why this Canadian doctor supports @BernieSanders' plan for universal health care https://t.co/NRMLLgUHCy +02/01/2018,Politicians,@BernieSanders,"RT @andrewkimmel: ""@realdonaldtrump, one of the great scientists of our time, has determined after years and years of exhaustive study that…" +02/01/2018,Politicians,@BernieSanders,RT @emilyhholden: @BernieSanders: My request of you is please get involved in the political process. Start running for office. You can do i… +02/01/2018,Politicians,@BernieSanders,RT @powershiftnet: .@BernieSanders: The days of the fossil fuel industry are numbered. But we need *everyone* to come together if we are to… +01/31/2018,Politicians,@BernieSanders,"RT @danielmarans: In era of Donald Trump, @BernieSanders sees ""the beginning of a political revolution"" https://t.co/Drb0eVQsZa" +01/30/2018,Politicians,@BernieSanders,I will not support any spending bills as long as Trump and Republican leadership refuse to address the crisis they… https://t.co/yZyepGWm0h +01/30/2018,Politicians,@BernieSanders,"Today, our government is controlled by the most extremist, reactionary, xenophobic, bigoted, and thankfully, in man… https://t.co/hWz40zfkNn" +01/29/2018,Politicians,@BernieSanders,RT @latinovictoryus: TOMORROW: @BernieSanders. Latino resistance. You. Tune in here tomorrow morning: https://t.co/9AeFxDn2Jh https://t.co/… +01/29/2018,Politicians,@BernieSanders,RT @MarkRuffalo: Livestream the #PeoplesSOTU TONIGHT at 8pm ET: https://t.co/ADTWe9AAUr Celebrating the #ResistanceMovement and charting a… +01/29/2018,Politicians,@BernieSanders,"Pete has spent his entire career fighting for working families and as a champion of progressive values, and I'm con… https://t.co/tYnyusbzZl" +01/27/2018,Politicians,@BernieSanders,RT @viceimpact: .@BernieSanders on why it's time to make college tuition free. Here's how it is going to happen: https://t.co/Sytekdur7a ht… +01/26/2018,Politicians,@BernieSanders,"RT @IronStache: I’m going to the State of the Union next Tuesday with @MarkPocan to hold @SpeakerRyan accountable, work boots and all. + +He…" +01/26/2018,Politicians,@BernieSanders,"RT @latinovictoryus: We're honored to be joined by @BernieSanders at our Latino Political Summit on Tuesday, January 30th. + +We need to wor…" +01/26/2018,Politicians,@BernieSanders,RT @RepGutierrez: $25 billion as ransom for Dreamers with cuts to legal immigration and increases to deportations doesn’t pass the laugh te… +01/25/2018,Politicians,@BernieSanders,RT @weatherchannel: Vermont’s seemingly spacey climate change goals are putting the rest of the country to shame. #USofClimateChange https:… +01/20/2018,Politicians,@BernieSanders,"People are more determined than ever to build a nation based on love and compassion, not hatred or division. Congra… https://t.co/PVj3PnG7WN" +01/20/2018,Politicians,@BernieSanders,"RT @peoplepower: .@BernieSanders: We need to face the crises facing this country, including Trump's self-made crisis of ending DACA. It is…" +01/19/2018,Politicians,@BernieSanders,RT @Morning_Joe: Coming up: @BernieSanders https://t.co/fYVsGRUGF7 +01/14/2018,Politicians,@BernieSanders,RT @guardianopinion: Let’s wrench power back from the billionaires | Bernie Sanders https://t.co/PGibSEvVPB +01/12/2018,Politicians,@BernieSanders,"Republicans in Congress must now summon the courage to stand up to the racist ramblings of our ""stable genius"" pres… https://t.co/iBN4obUdlc" +01/09/2018,Politicians,@BernieSanders,RT @DukeChronicle: U.S. Sen. Bernie Sanders is coming to Duke Jan. 19 for a public forum with Rev. William J. Barber II: https://t.co/0nYuQ… +01/09/2018,Politicians,@BernieSanders,RT @PostOpinions: It’s on Republicans to stop a shutdown https://t.co/Fxt8X7gv2T by @berniesanders +12/30/2017,Politicians,@BernieSanders,I had the honor of getting to know Erica and I was inspired by the commitment she made working towards a more just… https://t.co/0HpXnY3N5d +12/30/2017,Politicians,@BernieSanders,"Though Erica didn't ask to be an activist, she responded to the personal tragedy of seeing her father die while bei… https://t.co/rnkrgsn7Jj" +12/30/2017,Politicians,@BernieSanders,"Erica Garner was an exceptional young woman. She was a loving daughter, sister, mother, friend. Jane and I send our… https://t.co/WoVnVLaCwX" +12/28/2017,Politicians,@BernieSanders,"RT @IronStache: If we defeat @SpeakerRyan and swing the massive arm of change back toward working people, even a little, it will be worth t…" +12/24/2017,Politicians,@BernieSanders,"If I were the Republicans, I would worry very much about 2018. +https://t.co/UQcWla7pST" +12/20/2017,Politicians,@BernieSanders,"RT @CNNPolitics: Sen. Bernie Sanders: The new tax bill is ""a disaster for the American people"" https://t.co/2M9d8cGKii https://t.co/h9R6wft…" +12/18/2017,Politicians,@BernieSanders,RT @nytopinion: .@SenWarren & @BernieSanders: Will congressional Republicans work with Democrats to pass a budget that supports working peo… +12/14/2017,Politicians,@BernieSanders,"RT @IronStache: Hey @SpeakerRyan. Word on the street is that before we've even gotten into the ring, you’ve had enough. Give me a call. I’v…" +12/13/2017,Politicians,@BernieSanders,My thoughts on last night’s election in Alabama: https://t.co/6HtPQczR3Q +12/13/2017,Politicians,@BernieSanders,"RT @GetUSCovered: YOU HAVE TWO DAYS LEFT TO SIGN UP. + +Go to https://t.co/p8DQwo89C7 right now and sign up for affordable health coverage be…" +12/13/2017,Politicians,@BernieSanders,RT @washingtonpost: Opinion: Democrats have a chance to revive the party. Will they seize it? https://t.co/c3nMxZtcdv +12/13/2017,Politicians,@BernieSanders,Congratulations to @GDouglasJones for his great victory.  Congratulations to the people of Alabama for doing what f… https://t.co/B8WJ0y2eZ9 +12/12/2017,Politicians,@BernieSanders,"Alabama, you have extraordinary power today. By voting for @GDouglasJones, you can stop the Republican Party's plan… https://t.co/LOWZsArDm5" +12/09/2017,Politicians,@BernieSanders,The Democratic Party will not become a vibrant and successful 50 state party until it opens its doors widely to the… https://t.co/rZdxnRjHIa +12/02/2017,Politicians,@BernieSanders,"RT @ninaturner: I’m here in Dayton, Ohio w/ @BernieSanders bringing the message to the people! We are on the move. #GOPTaxBill @OurRevoluti…" +11/29/2017,Politicians,@BernieSanders,The Republican tax bill is a moral abomination that would take away from so many in need to give more to people who… https://t.co/Ki5nI52akn +11/21/2017,Politicians,@BernieSanders,Attacks against trans people are part of a bigotry which has got to end. We must work together until hatred and dis… https://t.co/ivvXgcmIV2 +11/17/2017,Politicians,@BernieSanders,RT @viceimpact: .@BernieSanders on why it's time to make college tuition free. Here's how it is going to happen: https://t.co/SytekdcQfC ht… +11/16/2017,Politicians,@BernieSanders,RT @politico: Tim Kaine calls for eliminating superdelegates https://t.co/9wT14ztIrq https://t.co/ntqurvzzb2 +11/15/2017,Politicians,@BernieSanders,"RT @VICE: Bernie Sanders’s socialist revolution is happening, very slowly: https://t.co/SCJvacI8CW https://t.co/cc3ZPb4GKr" +11/13/2017,Politicians,@BernieSanders,"I hope and expect that the United States will assist in disaster relief efforts for Iran, as we did in 2003 and 201… https://t.co/SDA0rUONXR" +11/13/2017,Politicians,@BernieSanders,"The devastation from the earthquake in Iran last night is horrific. My thoughts are with the victims, their loved o… https://t.co/SekzUHAWAN" +11/13/2017,Politicians,@BernieSanders,"RT @IronStache: I’m a union ironworker from Caledonia, Wisconsin. A Veteran. Cancer Survivor. I build things with my hands to put food on t…" +11/12/2017,Politicians,@BernieSanders,Progressives didn’t just say no to Trump. They offered an agenda to make our country work for everyone not just the… https://t.co/EEHz6dRmK0 +11/10/2017,Politicians,@BernieSanders,"At a time when Trump and the Republican agenda are strongly opposed by the American people, it's critical we come t… https://t.co/W4vVI1XXo9" +11/09/2017,Politicians,@BernieSanders,RT @JessicaGlenza: Ban Ki-moon calls for US to enact universal healthcare (like @BernieSanders proposal) and stop “powerful interests” from… +11/09/2017,Politicians,@BernieSanders,Many people who had not previously been involved in politics won local positions this week. That is what the politi… https://t.co/jdLzciHESv +11/08/2017,Politicians,@BernieSanders,"The political revolution we're fighting for is to get more people involved in the political process, to run for off… https://t.co/KiIo3hFptJ" +11/08/2017,Politicians,@BernieSanders,I want to congratulate everyone who won yesterday – from governorships to the many first-time candidates who won po… https://t.co/O4CMNoslZW +11/08/2017,Politicians,@BernieSanders,"Yesterday was a referendum on President Trump, and he lost badly. It’s clear the American people are deeply concern… https://t.co/Ne9ayn2kTR" +11/07/2017,Politicians,@BernieSanders,It’s Election Day in NYC. Get out and vote for @BilldeBlasio and Democrats up and down the ballot. https://t.co/z50hRyRolC +11/07/2017,Politicians,@BernieSanders,"It’s #ElectionDay, New Jersey. Get out and vote for the Democratic ticket. Then ask your friends to do the same. https://t.co/OXv5faw46k" +11/07/2017,Politicians,@BernieSanders,"Atlanta, it’s time to get out and vote for @fortforatlanta. #ElectionDay Find your polling place here: https://t.co/yudlkEz2Fb" +11/07/2017,Politicians,@BernieSanders,"It’s #ElectionDay. Get to the polls, bring your friends and vote for the Democratic ticket. Every vote counts. https://t.co/c9UEDRaYBJ" +11/07/2017,Politicians,@BernieSanders,It’s Election Day in Virginia. Get out and vote for the Democratic ticket. Find your polling place here: https://t.co/I0CblDT2J5 +11/06/2017,Politicians,@BernieSanders,RT @guardian: Bernie Sanders warns of 'international oligarchy' after Paradise Papers leak https://t.co/Ovx7keSdVG +11/06/2017,Politicians,@BernieSanders,"RT @latimes: Bernie Sanders: As president, Trump is doing the exact opposite of what he promised on the campaign trail https://t.co/ZRY0Qot…" +11/05/2017,Politicians,@BernieSanders,My thoughts are with the victims of Sutherland Springs and their loved ones. No community should have to face such a senseless tragedy. +11/01/2017,Politicians,@BernieSanders,"Instead of more tax breaks for Wall Street, we must make public colleges and universities tuition-free by taxing Wall Street speculators." +11/01/2017,Politicians,@BernieSanders,"Instead of giving more tax breaks to corporate tax evaders, we should rebuild our nation’s infrastructure by closing offshore tax loopholes." +11/01/2017,Politicians,@BernieSanders,"Instead of more tax breaks for billionaires, we must demand the wealthiest people in this country start paying their fair share of taxes." +11/01/2017,Politicians,@BernieSanders,RT @nowthisnews: .@BernieSanders asked what it meant to be free – and every American needs to hear the answer https://t.co/scG9LPnEh2 +10/31/2017,Politicians,@BernieSanders,My thoughts are with the victims of today’s horrific attack in Manhattan and their loved ones. https://t.co/1zCNc5PiTK +10/31/2017,Politicians,@BernieSanders,"RT @BilldeBlasio: .@BernieSanders: Brothers and sisters, on Election Day, let’s re-elect Bill de Blasio and show the world what this great…" +10/31/2017,Politicians,@BernieSanders,I was proud to endorse @BilldeBlasio tonight. He is leading the city in a way that brings people together to make a better life for all. +10/29/2017,Politicians,@BernieSanders,"RT @CTVToronto: WATCH LIVE: Bernie Sanders speaks about the Canadian health care system at U of T +https://t.co/oL2vsTGnas https://t.co/6jOJ…" +10/27/2017,Politicians,@BernieSanders,RT @rbecker51: San Juan Mayor Carmen Yulín Cruz y Sen. @BernieSanders discussing short term y long term solutions for rebuilding Puerto Ric… +10/25/2017,Politicians,@BernieSanders,"RT @tammybaldwin: READ: Tammy Baldwin and Bernie Sanders fight economic inequality and fiscal irresponsibility + +https://t.co/AWX3w2U3A1" +10/25/2017,Politicians,@BernieSanders,"RT @BilldeBlasio: Throughout his life, Sen. @BernieSanders has fought for change for working Americans. Join us at a campaign rally: https:…" +10/19/2017,Politicians,@BernieSanders,"RT @AC360: Sen. Sanders on Trump's tax plan: ""It is a Robin Hood proposal in reverse...it must be defeated"" #CNNDebateNight https://t.co/VQ…" +07/01/2018,Politicians,@tedcruz,"“Following their extraordinary efforts during Hurricane Harvey, we want to tell first responders across Southeast T… https://t.co/xPJ8y8ds7d" +06/30/2018,Politicians,@tedcruz,"RT @FreedomWorks: Support @SenTedCruz's Student Empowerment Act, S. 3102! #SchoolChoice #ampFW via https://t.co/lf9wpELolh https://t.co/tao…" +06/29/2018,Politicians,@tedcruz,RT @rumpfshaker: Some Jerks Robbed 112-Year-Old WWII Vet Richard Overton. Let's Help Him Out. https://t.co/GVnEfQWfzh #atx #txlege #veterans +06/29/2018,Politicians,@tedcruz,"This is horrific. An avowed Nazi running for Congress. To the good people of Illinois, you have two reasonable choi… https://t.co/W3U3vTWxJV" +06/29/2018,Politicians,@tedcruz,"RT @CR: Watch: @tedcruz on @SenMikeLee and the Supreme Court + +https://t.co/aUhJdg9slH" +06/29/2018,Politicians,@tedcruz,RT @TexasCruzer: Pastor Cruz addressing the crowd at the 15th Annual Patriotic Celebration in New Braunfels! #GodBlessAmerica https://t.co/… +06/28/2018,Politicians,@tedcruz,"RT @CR: WATCH: @tedcruz thinks @SenMikeLee would make a great choice for SCOTUS + +https://t.co/aUhJdg9slH" +06/28/2018,Politicians,@tedcruz,RT @CR: “I think the single best choice that President Trump could make to fill this vacancy is @SenMikeLee. I think he would be extraordin… +06/28/2018,Politicians,@tedcruz,RT @SenJohnKennedy: Thank you to my Republican colleagues who stood with me @tedcruz and @SenMikeLee on our food stamp amendment to fight f… +06/28/2018,Politicians,@tedcruz,"RT @CR: “I know beyond a shadow of a doubt that Mike Lee would be faithful to the Constitution and Bill of Rights, that he’s not going to e…" +06/28/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz raises comparison between @BetoORourke and @Ocasio2018, saying O'Rourke's ""running like a Bernie Sanders liber…" +06/28/2018,Politicians,@tedcruz,"RT @marklevinshow: The president's list of candidates for the Supreme Court is outstanding. That said, I would strongly encourage him to se…" +06/28/2018,Politicians,@tedcruz,Why does the hard Left have such deep hatred for Israel? Even most Senate Dems say they supported moving the embas… https://t.co/v2uyaBQBLm +06/28/2018,Politicians,@tedcruz,"RT @thehill: Ted Cruz: Mike Lee is the ""single best choice"" to replace Kennedy on Supreme Court https://t.co/ocStrovMkR https://t.co/hRFPKw…" +06/28/2018,Politicians,@tedcruz,RT @SaintRPh: Every democrat in America now believes in thoughts and prayers https://t.co/bGux9AhgvY +06/28/2018,Politicians,@tedcruz,"RT @CalebHowe: Ted Cruz Says Voters Have Already Weighed In On SCOTUS: If Scalia Hadn't Passed Away, Hillary May Have Won https://t.co/Bk2D…" +06/28/2018,Politicians,@tedcruz,RT @toddgillman: .@TedCruz and @BetoORourke agree: Supreme Court vacancy raises stakes in Texas Senate race #2018 #Texas https://t.co/IPWgw… +06/28/2018,Politicians,@tedcruz,"RT @CR: .@tedcruz: Mike Lee would not ‘evolve’ if chosen to replace Justice Anthony Kennedy + +https://t.co/aUhJdg9slH" +06/28/2018,Politicians,@tedcruz,RT @FoxNews: .@SenTedCruz: “This could well prove to be the most significant thing President Trump does in his entire time in office.” http… +06/28/2018,Politicians,@tedcruz,Fully agree. And the overwhelming majority of Texans want Supreme Court Justices who will preserve the Constitution… https://t.co/sqcmmgyyds +06/28/2018,Politicians,@tedcruz,"RT @PatrickSvitek: In addition to @SenMikeLee, @TedCruz says Trump should consider Cruz friends Noel Francisco (U.S. solicitor general) and…" +06/28/2018,Politicians,@tedcruz,"This is an opportunity for President @realDonaldTrump to nominate a strong Constitutionalist to #SCOTUS. + +Three fan… https://t.co/C3pdGiiX2R" +06/28/2018,Politicians,@tedcruz,"RT @thehill: Ted Cruz: Mike Lee is the ""single best choice"" to replace Kennedy on Supreme Court https://t.co/tzEuJFXMGH https://t.co/BCuyhP…" +06/28/2018,Politicians,@tedcruz,"RT @dcexaminer: Ted Cruz: Mike Lee ""the single best choice"" to replace Anthony Kennedy on Supreme Court https://t.co/JGIoGhzp6a https://t.c…" +06/27/2018,Politicians,@tedcruz,RT @senorrinhatch: While there was no precedent for confirming a Justice who had been nominated by an outgoing President in a Presidential… +06/27/2018,Politicians,@tedcruz,"RT @FoxNewsInsider: Sen. @tedcruz: 'We Should Confirm SCOTUS Pick Before Election', Suggests @SenMikeLee , via @DanaPerino's @dailybriefing…" +06/27/2018,Politicians,@tedcruz,I think the single best choice President @realDonaldTrump could make to fill this vacancy is @SenMikeLee. He would… https://t.co/BGew9qLKG0 +06/27/2018,Politicians,@tedcruz,RT @WilsonWPA: Worth the view (Ted Cruz on @FoxNews discussing #SCOTUS vacancy) #CruzCrew #txsen #txlege https://t.co/URqmuKxKb7 via @YouTu… +06/27/2018,Politicians,@tedcruz,RT @specialkids: 529 Proposal may benefit k-12 children with special needs. https://t.co/sdBbYea3jQ +06/27/2018,Politicians,@tedcruz,"#CruzCrew: Get your #ToughasTexas gear today! + +Order now --> https://t.co/idG3F7kfqZ #TXSen #KeepTexasRed https://t.co/ndm3OrQoLr" +06/27/2018,Politicians,@tedcruz,RT @SenTedCruz: Proud of the work @ptsdusa's Camp Hope is doing to provide for our veterans living w Post Traumatic Stress Disorder (PTSD).… +06/27/2018,Politicians,@tedcruz,"Thank you, #CruzCrew! #TXSen #KeepTexasRed https://t.co/01PFyTRW98" +06/27/2018,Politicians,@tedcruz,"RT @resurgent: 1) Cruz told truth. 2) But only with context. 3) Cruz gave that context. POLITIFACT RATING: Mostly False. (wut?) + +https://t.…" +06/26/2018,Politicians,@tedcruz,"RT @joelpollak: Now that it's clear #TravelBan is constitutional, does @SallyQYates have to give back her honorary degrees for claiming it…" +06/26/2018,Politicians,@tedcruz,@gabrielmalor https://t.co/SzMdhPImL7 +06/26/2018,Politicians,@tedcruz,"RT @gabrielmalor: This piece says that Cruz is ""technically correct"" and then rates the claim ""Mostly False"" in case you were wondering how…" +06/26/2018,Politicians,@tedcruz,"Small business drives our economy: 2/3 of new jobs come from small businesses. + +We want an environment where small… https://t.co/rQTwlCM4Q8" +06/26/2018,Politicians,@tedcruz,Texas Sentinels Foundation Honors Texan Medal Of Honor Recipient With New Home: https://t.co/pNdw4a04yL +06/25/2018,Politicians,@tedcruz,"RT @DonHuffines: I support @tedcruz for re-election. He’s leading our nation & TX toward a brighter & more prosperous future for all, and I…" +06/25/2018,Politicians,@tedcruz,RT @FreedomWorks: #SchoolChoice #ampFW https://t.co/WtNVpi178H +06/25/2018,Politicians,@tedcruz,"By investing in the next generation of students and expanding school choice, we’re able to allow more students to h… https://t.co/esCfxQ17Tt" +06/25/2018,Politicians,@tedcruz,RT @FreedomWorks: .@SenTedCruz introduces legislation expanding #SchoolChoice! #ampFW via @DailyCaller https://t.co/X3MXkgChhO +06/23/2018,Politicians,@tedcruz,RT @FreedomWorks: .@SenTedCruz introduces legislation expanding #SchoolChoice! #ampFW via @DailyCaller https://t.co/X3MXkgChhO +06/23/2018,Politicians,@tedcruz,"RT @FoxNews: .@tedcruz: ""It ought to be entirely consistent to protect kids, to keep kids with their parents, and at the same time respect…" +06/23/2018,Politicians,@tedcruz,"RT @chiproytx: Happy 70th birthday to Justice Clarence Thomas. One of the best human beings I have known, a great patriot, and someone I am…" +06/22/2018,Politicians,@tedcruz,"RT @TexasTribune: Today, @tedcruz and @JohnCornyn reaffirmed their commitment to keeping kids with their parents after they cross the borde…" +06/22/2018,Politicians,@tedcruz,RT @TexasCruzer: We ❤️ our Convention Volunteers!!! #CruzCrew https://t.co/0DutWxoKDl +06/22/2018,Politicians,@tedcruz,Get yours here: https://t.co/25cD9fUceA #TXSen #KeepTexasRed #CruzCrew https://t.co/2IFD3R8ssQ +06/22/2018,Politicians,@tedcruz,"RT @EmpowerTexans: @tedcruz introduces legislation that not only protects families, but ends catch and release. #txlege #TXSEN + +https://t.…" +06/21/2018,Politicians,@tedcruz,"RT @ALEC_Action: ALEC Action is proud to support the Student Empowerment Act to expand #SchoolChoice and #EmpowerOurStudents. + +@SenateGOP @…" +06/21/2018,Politicians,@tedcruz,"RT @LarryAudas: @tedcruz accommodates one, two and then a whole class of #Texas students visiting #DC. @TEGNA @KHOU Airport Group Pic. http…" +06/21/2018,Politicians,@tedcruz,RT @TheDCPolitics: Ted Cruz Introduces Legislation Expanding School Choice https://t.co/W9iyRel4O5 https://t.co/MnAJmBWcJT +06/21/2018,Politicians,@tedcruz,RT @DailyCaller: Ted Cruz Demands Investigation Into Taxpayer-Funded Global Warming ‘Advocacy’ https://t.co/bol3IYCETm https://t.co/t2Lvfc8… +06/20/2018,Politicians,@tedcruz,"RT @IsraeliPM: Israel thanks President Trump, Secretary Pompeo and Ambassador Haley for their courageous decision against the hypocrisy and…" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/iS7VfUqleE https://t.co/ibA3ALHFhI" +06/20/2018,Politicians,@tedcruz,"RT @politico: ""This has to stop,"" Texas Sen. Ted Cruz said when asked about the separation of migrant families at the border in his state.…" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/yI50mra7M2 https://t.co/EGOxL1I2mq" +06/20/2018,Politicians,@tedcruz,"RT @granitewinger: WATCH: @jimmykimmel and @tedcruz played a game of basketball, but most importantly, they raised over $80,000 for charity…" +06/20/2018,Politicians,@tedcruz,RT @SenMikeLee: I urge the Senate to do their job and take quick action on @SenTedCruz’s Protect Parents and Kids Act. We can end family se… +06/20/2018,Politicians,@tedcruz,RT @GlenMillsABC4: #Utah @SenMikeLee is supporting Sen. Ted Cruz’s border bill and wants his colleagues to take quick action on it. #utpol… +06/20/2018,Politicians,@tedcruz,"RT @SenJoniErnst: I am co-sponsoring @SenTedCruz Protect Kids and Family Act because I believe that we can, and should, treat children and…" +06/20/2018,Politicians,@tedcruz,RT @JimInhofe: Learn more about this important legislation here: https://t.co/Jcaqikv2bN +06/20/2018,Politicians,@tedcruz,"RT @SenToddYoung: I’ve signed on to co-sponsor the Protect Kids and Parents Act to keep families together, expedite hearings, and double th…" +06/20/2018,Politicians,@tedcruz,"RT @senorrinhatch: In addition to calling on the administration to halt family separations while Congress works on a legislative solution,…" +06/20/2018,Politicians,@tedcruz,"RT @SenatorWicker: I support the ""Protect Kids and Parents Act"" introduced by @SenTedCruz. It would #KeepFamiliesTogether & help clear the…" +06/20/2018,Politicians,@tedcruz,RT @SenPatRoberts: I am cosponsoring @SenTedCruz Protect Kids and Parents Act to stop parental separation at the border. https://t.co/Ab65D… +06/20/2018,Politicians,@tedcruz,"""Cruz’s bill seems to strike the right balance."" + +Ted Cruz's border bill to end family separations makes sense --> https://t.co/DMB1ljaWxP" +06/20/2018,Politicians,@tedcruz,"RT @dcexaminer: ""Ted Cruz's border bill to end family separations makes sense"" https://t.co/hO2riT7sTq https://t.co/IfzlrlC5Uu" +06/20/2018,Politicians,@tedcruz,RT @CNN: Sen. Ted Cruz beat late-night host Jimmy Kimmel in a one-on-one basketball game https://t.co/F5xkq1V6vG https://t.co/hIMLpPKBAe +06/20/2018,Politicians,@tedcruz,RT @TIME: Texas Sen. Ted Cruz promises a bill to deal with the family separation crisis at the border https://t.co/3Avf2Opvfe https://t.co/… +06/19/2018,Politicians,@tedcruz,RT @TheRightScoop: Ted Cruz praises Trump-backed recision package as a FIRST STEP https://t.co/sFpTGB5jaS https://t.co/Sp4UWUWnJb +06/19/2018,Politicians,@tedcruz,RT @townhallcom: Immigration Firestorm: Tune Out the Shouting and Read Ted Cruz's Solid Plan on Family Separation https://t.co/QPXpiKeF7q +06/19/2018,Politicians,@tedcruz,Ted Cruz and Jimmy Kimmel are better at raising money for charity than they are at playing basketball: https://t.co/s76yIvWCkK #KimmelvsCruz +06/19/2018,Politicians,@tedcruz,"RT @TheRightScoop: TED CRUZ: Child separation has to stop, but this isn’t a NEW issue! – [VIDEOS] https://t.co/uIOHGhMrjZ https://t.co/1Ana…" +06/19/2018,Politicians,@tedcruz,RT @NBAWorldNewz: Ted Cruz and Jimmy Kimmel are better at raising money for charity than they are at playing basketball - CNN https://t.co/… +06/19/2018,Politicians,@tedcruz,"RT @JustinTHaskins: WATCH: @jimmykimmel and @tedcruz played a game of basketball, but most importantly, they raised over $80,000 for charit…" +06/19/2018,Politicians,@tedcruz,"RT @leebright: ""In the 4th District Congressional runoff, I am proud to endorse Lee Bright, and I urge voters there to join me by supportin…" +06/19/2018,Politicians,@tedcruz,"RT @CatholicVote: Sen. Ted Cruz has proposed emergency legislation that would: + +- Allow immigrant families entering illegally to stay toget…" +06/19/2018,Politicians,@tedcruz,RT @NRO: Ted Cruz Introduces Emergency Legislation to End Family Separation – It Looks Solid https://t.co/l81Zzxkxg6 via @DavidAFrench http… +06/19/2018,Politicians,@tedcruz,RT @EWErickson: TAKE ACTION: Tell Your Senator to Support Ted Cruz's Plan https://t.co/sPOHNykaDL https://t.co/oZACUpgsEb +06/19/2018,Politicians,@tedcruz,"WATCH: @jimmykimmel and I played a game of basketball, but most importantly, we raised over $80,000 for charity to… https://t.co/NyPzns0Caa" +06/19/2018,Politicians,@tedcruz,"RT @TexasChildrens: Thank you @JimmyKimmelLive, @tedcruz and everyone who donated to @TexasChildrens for your incredible support throughout…" +06/19/2018,Politicians,@tedcruz,RT @hughhewitt: .@TedCruz introduces legislation to keep immigrant families together after they cross the border https://t.co/2sDe825WCF vi… +06/19/2018,Politicians,@tedcruz,"RT @generation1TX: WE ARE THE CHAMPIONS!!! Sen. Cruz Wins against Jimmy Kimmel!! Thank You, Sen.Ted Cruz, for choosing Generation One for y…" +06/19/2018,Politicians,@tedcruz,RT @TheRightScoop: WATCH: Ted Cruz WHUPS Jimmy Kimmel in charity basketball game! https://t.co/0z3zOGmq2G https://t.co/rWyyyHFLFn +06/19/2018,Politicians,@tedcruz,"We had a great time playing basketball and raising over $80,000 for charity on Saturday! + +Watch highlights from the… https://t.co/VjTjcIvulA" +06/19/2018,Politicians,@tedcruz,"RT @AmeriCorps: Before hitting the hardwood in #KimmelvsCruz's Blobfish Classic 🏀, @SenTedCruz met with @AmeriCorpsNCCC members serving wit…" +06/19/2018,Politicians,@tedcruz,RT @HoustonChron: Ted Cruz introducing legislation to keep migrant families together https://t.co/lLMfUbiOTl +06/19/2018,Politicians,@tedcruz,RT @DailyCaller: Ted Cruz Announces Legislation To Keep Illegal Immigrant Families Together https://t.co/YuyCEPT6lA https://t.co/t6W2WyLTYl +06/19/2018,Politicians,@tedcruz,"RT @amzam: U.S. Sen. @TedCruz has introduced legislation to keep immigrant families together ""absent aggravated criminal conduct or threat…" +06/18/2018,Politicians,@tedcruz,"RT @Kenny_Mayne: As for the game itself.....you can see it tonight on @JimmyKimmelLive. + +In slow motion. + +https://t.co/seJqZOzcD1" +06/18/2018,Politicians,@tedcruz,RT @RepMattKrause: Great work by @tedcruz tailoring a solution that ensures families stay together and continues to enforce the rule of law… +06/18/2018,Politicians,@tedcruz,RT @statesman: BREAKING: Ted Cruz says he’ll introduce a bill to end most family separations https://t.co/fRMuM0cN3P https://t.co/L1ncSiJuFR +06/18/2018,Politicians,@tedcruz,RT @CaryCheshireTX: BREAKING: @tedcruz introduces legislation to protect families and end catch and release. #txlege #TX2018 #TXSEN https:… +06/18/2018,Politicians,@tedcruz,"RT @abc7breaking: Learn more about Senator Cruz's bill, which would double the number of federal immigration judges, from roughly 375 to 75…" +06/18/2018,Politicians,@tedcruz,"RT @DavidAFrench: My first take on the Cruz legislation. It looks solid, with one concern (as many folks are expressing in my timeline) abo…" +06/18/2018,Politicians,@tedcruz,RT @axios: NEW: Sen. Ted Cruz to introduce the first Republican bill aimed at solving the child separation policy https://t.co/Psqzxh2y0m +06/18/2018,Politicians,@tedcruz,RT @TheRightScoop: Ted Cruz JUST proposed a GREAT SOLUTION to the child separation chaos at the border https://t.co/oDr5IY89SA https://t.co… +06/18/2018,Politicians,@tedcruz,RT @trscoop: Ted Cruz JUST proposed a GREAT SOLUTION to the child separation chaos at the border https://t.co/kC0x1CueSu https://t.co/rluvs… +06/18/2018,Politicians,@tedcruz,RT @TexasTribune: New: Ted Cruz announced emergency legislation to keep immigrant families together after they cross the border into the Un… +06/18/2018,Politicians,@tedcruz,RT @WashTimes: BREAKING: Ted Cruz announces bill to stop family separations at border https://t.co/yyTn1hQH6K https://t.co/84kPgpyckC +06/18/2018,Politicians,@tedcruz,RT @cbs11jack: #BREAKING #Texas Senator @tedcruz is introducing emergency leg this week to keep families together after illegally crossing… +06/18/2018,Politicians,@tedcruz,RT @AllisonFox4News: .@tedcruz introducing emergency legislation to keep illegal immigrant families together https://t.co/uJdwAAptpC +06/18/2018,Politicians,@tedcruz,"RT @AmeriCorps: Before hitting the hardwood in #KimmelvsCruz's Blobfish Classic 🏀, @SenTedCruz met with @AmeriCorpsNCCC members serving wit…" +06/18/2018,Politicians,@tedcruz,"The winners on Saturday Night were the children of @generation1TX and @TexasChildrens. Over $83,000 raised and coun… https://t.co/hdEWL87bzW" +06/18/2018,Politicians,@tedcruz,RT @TexasChildrens: #KimmelVsCruz attracted thousands to Houston this past weekend! @abc13houston shares a behind-the-scenes look at the ga… +06/18/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible happened: Grayson Allen met Ted Cruz https://t.co/OUVICuhI47 +06/18/2018,Politicians,@tedcruz,"RT @club4growth: Club for Growth PAC is proud to endorse @tedcruz for U.S. Senate! + +When it comes to fiscal conservatives, Ted Cruz is the…" +06/18/2018,Politicians,@tedcruz,"With your generous help, we’ve already raised over $80k for two wonderful Texas charities. Thank you for making a d… https://t.co/Gy9ha62Yro" +06/18/2018,Politicians,@tedcruz,"And please make a donation to either @generation1TX or @TexasChildrens (or both) now: + +Generation One:… https://t.co/a4fgGhoQec" +06/17/2018,Politicians,@tedcruz,"The game was yesterday, but you can still make a difference today... + +Donate now to either @generation1tx or… https://t.co/uEAor4Tkq1" +06/17/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible happened: Grayson Allen met Ted Cruz https://t.co/CtJrtUIUoa +06/17/2018,Politicians,@tedcruz,"RT @SInow: Ted Cruz may be Grayson Allen's doppelgänger, but can he actually hoop? https://t.co/JFgQ69ZnRS" +06/17/2018,Politicians,@tedcruz,My dad has been my hero my whole life. Here’s to wishing a very happy #FathersDay to all the dads out there! https://t.co/aWSlA0aznY +06/17/2018,Politicians,@tedcruz,"RT @USNavy: On this #FathersDay and every day, we're thankful for our #USNavy dads! BZ! https://t.co/DOEehirmNE" +06/17/2018,Politicians,@tedcruz,RT @SylvesterTurner: Tip off for the much anticipated #blobfishclassic begins at 5pm as @jimmykimmel takes on Sen. @tedcruz in a 1-on-1 bas… +06/17/2018,Politicians,@tedcruz,RT @JeffEisenband: Ted Cruz relying hard on the right. https://t.co/8crmawT9UM +06/17/2018,Politicians,@tedcruz,RT @si_ncaabb: The impossible has happened: Grayson Allen met Ted Cruz https://t.co/DplMPpKLv3 +06/17/2018,Politicians,@tedcruz,RT @jimmykimmel: Agreed. Two great charities run by great people. https://t.co/VBDhB8YNso +06/17/2018,Politicians,@tedcruz,"The winner tonight? + +@generation1TX and @TexasChildrens + +Support them below: + +Generation One:… https://t.co/vTyZgX6vLW" +06/17/2018,Politicians,@tedcruz,Post game interview with @IAMGUILLERMO #KimmelvsCruz🏀 https://t.co/FQyLgukUP0 +06/16/2018,Politicians,@tedcruz,The crowd is fired up! #KimmelvsCruz🏀 #CruzToVictory https://t.co/jvMsdsU0Np +06/16/2018,Politicians,@tedcruz,RT @abc13houston: Sen. @tedcruz is rocking @HoustonRockets red and did a pregame interview with @IAMGUILLERMO before the #KimmelvsCruz game… +06/16/2018,Politicians,@tedcruz,RT @abc13houston: Sen. @tedcruz left this note in the locker room for @JimmyKimmelLive. What do y’all think about this message? https://t.c… +06/16/2018,Politicians,@tedcruz,20 minutes! #KimmelvsCruz🏀 https://t.co/PVVgejEMSy +06/16/2018,Politicians,@tedcruz,RT @BarstoolBDevils: Oh my god. https://t.co/GldNcAjR7j +06/16/2018,Politicians,@tedcruz,RT @DukeMBB: 🧐🧐🧐🧐🧐🧐🧐🧐🧐🧐 https://t.co/9AfUHUjLAY +06/16/2018,Politicians,@tedcruz,A couple of pregame interviews #KimmelvsCruz🏀 #CruzToVictory https://t.co/rP6nXG8Qdx +06/16/2018,Politicians,@tedcruz,"Rest easy, @jimmykimmel... you won’t be playing @GraysonJAllen today, but it looks like he’s made his pick...… https://t.co/Cb9vQDFRAn" +06/16/2018,Politicians,@tedcruz,RT @jeremiah_hunter: Awesome! My boys got to hang out with Senator Ted Cruz! https://t.co/vB5u98RIpB +06/16/2018,Politicians,@tedcruz,RT @BleacherReport: It finally happened @GraysonJAllen @tedcruz https://t.co/EK5qswyNsR +06/16/2018,Politicians,@tedcruz,"RT @marchmadness: The photo America has been waiting for... + +Grayson Allen + Ted Cruz = #Twinning 😂 + +(📷 - @tedcruz) https://t.co/goLRt1aCnf" +06/16/2018,Politicians,@tedcruz,"RT @SBNation: Looks like Ted Cruz is about to ball with Jimmy Kimmel for charity, and he brought in a stand in 😂 https://t.co/NGTA6QJLZA" +06/16/2018,Politicians,@tedcruz,"Picking up my stand in… are you ready, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/z8LGoM0ljV" +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: IT'S FOR THE KIDS! When Sen. @tedcruz and @JimmyKimmelLive hit the basketball court today, the real winners will be @Texa…" +06/16/2018,Politicians,@tedcruz,RT @BE_1776: Quick stop for @tedcruz at the RPT Congressional Lunch before heading back to Houston for the basketball game with Jimmy Kimme… +06/16/2018,Politicians,@tedcruz,RT @abc13houston: It's almost game time. Senator Ted Cruz and Jimmy Kimmel are just hours away from hitting the hardwood. https://t.co/L3T… +06/16/2018,Politicians,@tedcruz,"RT @tedcruz: Get ready for the showdown of the summer... + +Are you ready for it, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/DQ…" +06/16/2018,Politicians,@tedcruz,Meeting the future of the @TexasGOP #RPTCon18 https://t.co/sBhQKnsz6E +06/16/2018,Politicians,@tedcruz,Five hours until 🏀 time with ⁦@jimmykimmel⁩ #KimmelvsCruz #CruzToVictory https://t.co/ilXtWBCgre +06/16/2018,Politicians,@tedcruz,We need @KonniBurton to come back to the Texas Senate. She’s a warrior and a dear friend! #TXLege #RPTCon18… https://t.co/x27QkIupNk +06/16/2018,Politicians,@tedcruz,"Miss my speech at #RPTCon18? + +Watch it here: https://t.co/mdVA8PEKZ9 #txsen #KeepTexasRed https://t.co/2MBp3bxBaU" +06/16/2018,Politicians,@tedcruz,"RT @TeamTedCruz: #CruzCrew 📷 line! #RPTCon18 + +The @TexasGOP loves @tedcruz! +#TXSEN #KeepTexasRed https://t.co/AUfo024xT5" +06/16/2018,Politicians,@tedcruz,"RT @toddgillman: ""Bless you. I am Rafael Cruz. I'm the senator's father."" Long line for photos with @tedcruz at #RPT2018 https://t.co/34csR…" +06/16/2018,Politicians,@tedcruz,RT @toddgillman: .@tedcruz is now taking photos with fans at the @TexasGOP convention. Hundreds are lined up. His dad is keeping them occu… +06/16/2018,Politicians,@tedcruz,"RT @CourtneyABC13: ....and @tedcruz is playing for @generation1TX. So, if the senator wins #BlobfishBasketballClassic, @jimmykimmel must pa…" +06/16/2018,Politicians,@tedcruz,"RT @TeamTedCruz: The line to get a pic with @tedcruz at #RPTCon18 stretches all the way out to the back of the exhibit hall! + +Get in line a…" +06/16/2018,Politicians,@tedcruz,RT @WPAIntel: Hey #RPTCon2018! Remember that app ⁦@tedcruz⁩ mentioned? You can download it right here! https://t.co/at0lZjAp7o +06/16/2018,Politicians,@tedcruz,#CruzCrew: come get a photo at our @TexasGOP Convention booth now! #TXSen #KeepTexasRed https://t.co/OA7AjbW8yp +06/16/2018,Politicians,@tedcruz,"See y’all soon at the @TexasGOP convention! + +10 am CT #KeepTexasRed #CruzCrew #TXSen https://t.co/gjs1PgV6qB" +06/16/2018,Politicians,@tedcruz,RT @barstoolsports: Grayson Allen flying up draft boards after his most recent performance @BarstoolNewsN https://t.co/lzTS8gnKaN +06/16/2018,Politicians,@tedcruz,"GAME DAY! Are you ready for it? + +Tweet #TeamCruz below and let your followers know where you stand for #KimmelvsCruz!" +06/16/2018,Politicians,@tedcruz,RT @JohnCornyn: I think this is self-explanatory https://t.co/UdujQU229I +06/16/2018,Politicians,@tedcruz,RT @TeamTedCruz: I'm rooting for @tedcruz to take down @jimmykimmel in the #KimmelvsCruz showdown. RT if you are too! #CruzToVictory #TeamC… +06/16/2018,Politicians,@tedcruz,RT @TeamTedCruz: SATURDAY: It's Houston vs Hollywood and I'm rooting for @tedcruz to beat @jimmykimmel! RT if you are too! #KimmelvsCruz #T… +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: GAME DAY: In just a few hours, Sen. @tedcruz and @JimmyKimmelLive will meet face-to-face at @TexasSouthern for a charity…" +06/16/2018,Politicians,@tedcruz,Today... #KimmelvsCruz🏀 #CruzToVictory https://t.co/u5tNwDBSAX +06/16/2018,Politicians,@tedcruz,RT @rightwingtrout: I'm rooting for @tedcruz to take down @jimmykimmel in the #KimmelvsCruz showdown. RT if you are too! #CruzToVictory #Te… +06/16/2018,Politicians,@tedcruz,RT @AngelartrHughes: SATURDAY: It's Houston vs Hollywood and I'm rooting for @tedcruz to beat @jimmykimmel! RT if you are too! #KimmelvsCru… +06/16/2018,Politicians,@tedcruz,RT @alweaver22: VERY IMPORTANT NEWS: Ted Cruz says the Kimmel game will feature “the least talent in the history of basketball” https://t.c… +06/16/2018,Politicians,@tedcruz,"NEW VIDEO: Tweet #TeamCruz to unlock the full video NOW! + +It's Houston vs Hollywood. Are you ready, @jimmykimmel?… https://t.co/eFnAsJT8yf" +06/16/2018,Politicians,@tedcruz,"RT @abc13houston: IT'S FOR THE KIDS: For all the mudslinging hilarity that has come up before this game, both @jimmykimmel and @tedcruz wan…" +06/15/2018,Politicians,@tedcruz,The #KimmelvsCruz showdown is about the kids --> https://t.co/CMokK0L4WT +06/15/2018,Politicians,@tedcruz,"RT @newzealblog: Ted Cruz Gets Ready To Rumble With Jimmy Kimmel – It’s The Showdown Of The Summer Y’all! + +""Houston is getting ready to rum…" +06/15/2018,Politicians,@tedcruz,"TOMORROW: The Showdown of the Summer at @TexasSouthern. + +Me vs @jimmykimmel. Tweet #TeamCruz to let everyone know w… https://t.co/fUnEy5RmAE" +06/15/2018,Politicians,@tedcruz,RT @abc13houston: BALLIN': Sen. @tedcruz was keeping it 💯 at practice today before his charity basketball game Saturday against @JimmyKimme… +06/15/2018,Politicians,@tedcruz,"Less than 24 hours to go... see you soon, @jimmykimmel #KimmelvsCruz🏀 #CruzToVictory https://t.co/1zkWqyEo6F" +06/15/2018,Politicians,@tedcruz,"RT @ColumbiaBugle: Ted Cruz playing basketball is probably the funniest thing you'll see all day. + +He's still going to beat Kimmel. https:…" +06/15/2018,Politicians,@tedcruz,RT @jennybethm: Text the number 500 to 96000 or cast your vote online to join me in electing @marklevinshow into the National Radio Hall of… +06/15/2018,Politicians,@tedcruz,RT @Rational_Press: Ted Cruz is my spirit animal. https://t.co/esTxb3SRHO +06/15/2018,Politicians,@tedcruz,"RT @JerryDunleavy: Okay so this #KimmelvsCruz hype video put out by @TedCruz is actually pretty good TBQH. +https://t.co/ngS4j0Opur" +06/15/2018,Politicians,@tedcruz,"RT @PatrickSvitek: .@TedCruz's campaign, having quite a bit of fun, releases a trailer for his basketball game against @jimmykimmel tomorro…" +06/15/2018,Politicians,@tedcruz,RT @NickABC13: Here’s a look at Sen. @tedcruz shooting hoops ahead of tomorrow’s game with @jimmykimmel. https://t.co/31YoC4TIxT +06/15/2018,Politicians,@tedcruz,"RT @ScyllaLopez: Dude is serious about this game. Watch out, @jimmykimmel. +You gotta watch more of this practice video with @SenTedCruz to…" +06/15/2018,Politicians,@tedcruz,"RT @chicksonright: I LOVE this! + +GO Ted! https://t.co/CY23QmYYHq" +06/15/2018,Politicians,@tedcruz,"Left a note for you in your locker room, @jimmykimmel. #KimmelvsCruz https://t.co/N5f0rUgSFt" +06/15/2018,Politicians,@tedcruz,#CruzToVictory #KimmelvsCruz🏀 https://t.co/eGbVnMnIKu +06/15/2018,Politicians,@tedcruz,"RT @Newsweek: Jimmy Kimmel will face Ted Cruz on the court in ""Blobfish Basketball Classic"" https://t.co/PR9IxqoAaQ https://t.co/rjpJFNyqTj" +06/15/2018,Politicians,@tedcruz,RT @billboard: Ted Cruz listed by oddsmakers as favorite over Jimmy Kimmel for upcoming charity basketball game https://t.co/2d31nCZLGj htt… +06/15/2018,Politicians,@tedcruz,RT @TheRightScoop: Look out Jimmy Kimmel! Ted Cruz is DROPPING THE ROCK on the practice court before tomorrow’s big game! https://t.co/bUBK… +06/15/2018,Politicians,@tedcruz,"RT @TomAbrahams13: If you haven't watched this, you should. @tedcruz preparing for his game against @jimmykimmel in Houston at @TexasSouth…" +06/15/2018,Politicians,@tedcruz,"RT @TwitchyTeam: Think he's got a shot? Ted Cruz gears up for basketball game with Jimmy Kimmel [pics, video] https://t.co/OHV7gGfQDF" +06/15/2018,Politicians,@tedcruz,RT @abc13houston: @CNNJustin You can see more video from the practice here: https://t.co/qXf2a44XZJ +06/15/2018,Politicians,@tedcruz,@Zachary_Cohen @GraysonJAllen https://t.co/YrIf48RRM6 +06/15/2018,Politicians,@tedcruz,"Get ready for the showdown of the summer... + +Are you ready for it, @jimmykimmel? #KimmelvsCruz #CruzToVictory https://t.co/DQoXuHgD1v" +06/15/2018,Politicians,@tedcruz,RT @ArmyStrong34: @abc13houston @tedcruz @JimmyKimmelLive @jimmykimmel He was better when he played for Duke. https://t.co/r4SYB2s9Kk +06/15/2018,Politicians,@tedcruz,RT @abc13houston: HE GOT GAME! Sen. @tedcruz hit the court today with 🔥🔥🔥 in preparation for his charity basketball game Saturday against @… +06/15/2018,Politicians,@tedcruz,"RT @NickABC13: He’s got game! Take a look at Sen. @tedcruz gets pointers from @UHouston great, Lynden Rose. Watch the shoot around live on…" +06/15/2018,Politicians,@tedcruz,RT @KHOUSportsMatt: #KHOU11 #KimmelvsCruz Senator Ted Cruz is working hard with UH Alum Lyndon Rose in preparation for his upcoming 1 on… +06/15/2018,Politicians,@tedcruz,RT @tedcruz: @keranews @jimmykimmel https://t.co/n3sa6BisC8 +06/15/2018,Politicians,@tedcruz,⛹️‍♂️ #KimmelvsCruz https://t.co/0EKVupOhpC +06/15/2018,Politicians,@tedcruz,Getting some tips from @UHCougarMBK Phi Slama Jama star Lynden Rose #KimmelvsCruz🏀 #CruzToVictory https://t.co/4iRWwdOuVb +06/15/2018,Politicians,@tedcruz,"RT @generation1TX: You've heard about the game on Saturday! If you haven't reserved your ticket yet, you can still support us by making a…" +06/15/2018,Politicians,@tedcruz,@keranews @jimmykimmel https://t.co/n3sa6BisC8 +06/15/2018,Politicians,@tedcruz,A little improvement 🏀 #KimmelvsCruz #CruztoVictory https://t.co/iCyIGthoBO +06/15/2018,Politicians,@tedcruz,Some practice before the big game tomorrow... 🏀 #KimmelvsCruz #CruzToVictory https://t.co/xPXKy2ch2n +06/15/2018,Politicians,@tedcruz,"RT @starsandstripes: A Medal of Honor winner is settling into his brand new, donated house in Texas https://t.co/oR1ohAWiTI" +06/15/2018,Politicians,@tedcruz,⛹️ https://t.co/P3gyEgeesn +06/15/2018,Politicians,@tedcruz,RT @DiazChron: Ted Cruz v Jimmy Kimmel one-on-one hoops: Bible Belt v Hollywood https://t.co/3KqdSNwbqN via @HoustonChron +06/15/2018,Politicians,@tedcruz,"RT @FNC_Ladies_Rule: 🏀 Jimmy Kimmel is the underdog heading into Saturday's charity game against Ted Cruz, betting site says + +https://t.co…" +07/01/2018,Politicians,@JohnKasich,College Credit Plus is giving more students a jumpstart on college. Strong work by @MarionTech and congrats to all… https://t.co/NsxzbLKrYl +06/30/2018,Politicians,@JohnKasich,"Six GM facilities in Ohio provide jobs for about 6,000 Ohioans. + +Because of this Administration’s trade war, those… https://t.co/eCeSMRp4ES" +06/30/2018,Politicians,@JohnKasich,"As the State of Ohio closes out its fiscal year today, I’m pleased to report that our budget is balanced and our fi… https://t.co/OZf0VvaT2V" +06/30/2018,Politicians,@JohnKasich,The priority along our border must be to reunite these families. We need to bring everyone together and deal with t… https://t.co/iL8xBCbkPo +06/29/2018,Politicians,@JohnKasich,"Excellent example of business and education partnering together to help Ohioans increase their tech skills! + +https://t.co/OKepZ6G7E3" +06/29/2018,Politicians,@JohnKasich,The courage and determination of the @capgaznews staff has been incredible. A strong reminder of the importance of… https://t.co/8o9rv49FmH +06/28/2018,Politicians,@JohnKasich,Terrible news out of Annapolis today -- five newspeople senselessly and tragically murdered. Local law enforcement… https://t.co/nxkz4dnXyV +06/28/2018,Politicians,@JohnKasich,Columbus has “implemented a thoughtful business approach and capitalized on its local institutions to build a well-… https://t.co/Q31FI4DwOb +06/27/2018,Politicians,@JohnKasich,"In Ohio, we’ve been working to help legal immigrants successfully integrate in our communities. I appreciate member… https://t.co/0H6jTHp6mI" +06/27/2018,Politicians,@JohnKasich,"From biotech to software to life sciences, @ohiou’s Innovation Center is inspiring exciting new fields that will gr… https://t.co/yjapwZbcA6" +06/26/2018,Politicians,@JohnKasich,Did anyone really believe American businesses would sit back while the administration’s tariffs force their costs t… https://t.co/XHXRfGg1s9 +06/26/2018,Politicians,@JohnKasich,"Today the CBO announced the federal debt is headed for its highest levels since World War II. + +As I’ve long been sa… https://t.co/xtBvTmLqeM" +06/26/2018,Politicians,@JohnKasich,"Today marks the 50th anniversary of @TheKingCenter, honoring the legacy of one of America’s greatest leaders and re… https://t.co/APv3nkOemw" +06/26/2018,Politicians,@JohnKasich,"For the future of America, both the left and the right need to remember our values, pursue truth and do what's best… https://t.co/oNLgEBmFGl" +06/25/2018,Politicians,@JohnKasich,We are continuing to lead the world in transportation technology – making our roads safer and our lives easier at t… https://t.co/6YMt4E5N9O +06/25/2018,Politicians,@JohnKasich,"Ohioans: Please tune in to @TheOhioChannel at 5:30PM tonight to see my interview on @PBS @FiringLineShow! + +If you'd… https://t.co/J8VfgB5h4b" +06/24/2018,Politicians,@JohnKasich,Saddened to hear about the death of an officer of the Mentor Police Department. We extend our deep condolences to t… https://t.co/aBce8UjKz2 +06/23/2018,Politicians,@JohnKasich,"There’s a reason Ohio cities are attracting more and more millennials – innovation and opportunity. + +https://t.co/Unf0zoRuRz" +06/23/2018,Politicians,@JohnKasich,It’s time for politicians in Washington to stop pointing fingers and playing politics. Solve the problem. There’s a… https://t.co/nSnY6Mpyj2 +06/23/2018,Politicians,@JohnKasich,Thank you for having me on! https://t.co/pTA26QoWft +06/22/2018,Politicians,@JohnKasich,"With over a half-million jobs created since 2011, JobsOhio has become a model for economic development across the c… https://t.co/Tx5yyr0DTQ" +06/22/2018,Politicians,@JohnKasich,"UPDATED: I will be on @NPRWeekend Saturday around *9:20AM ET! + +Thx @NPR and @nprscottsimon for having me! https://t.co/JEIiROcvNB" +06/22/2018,Politicians,@JohnKasich,Lots to discuss on @CNN’s @Smerconish at 9AM & 6PM ET on Saturday! Hope you can tune in! https://t.co/T3LjOwty9U +06/22/2018,Politicians,@JohnKasich,Looking forward to discussing the future of the Republican Party with @NPR's @NPRScottSimon Saturday morning around… https://t.co/mXhAGJb3kS +06/22/2018,Politicians,@JohnKasich,Tune in! https://t.co/en13enT487 +06/22/2018,Politicians,@JohnKasich,Looking forward to being on this week’s @PBS @FiringLineShow - check your local listing and tune in! https://t.co/v54E83jY7O +06/22/2018,Politicians,@JohnKasich,RT @FiringLineShow: This week on #FiringLineShowPBS... we go #national! Check your local @pbs listings to watch https://t.co/lBzt05iNPe +06/22/2018,Politicians,@JohnKasich,What a fun event for the whole family! https://t.co/vsyqPXmZLt +06/21/2018,Politicians,@JohnKasich,"We all hope @KingJames stays here in Ohio, but no matter what, we're +proud of all he's doing as a role model for yo… https://t.co/kw8b50TxAO" +06/21/2018,Politicians,@JohnKasich,"AP: House GOP postpones key immigration vote amid party infighting +https://t.co/YO2yRYfvZS + +=== + +Enough is enough.… https://t.co/tqV5bGsJN2" +06/21/2018,Politicians,@JohnKasich,"In Ohio, we have been working to better align education and workforce-training to get people on a path to a rewardi… https://t.co/q8WprT7cQi" +06/21/2018,Politicians,@JohnKasich,It’s great to see more low-cost pathways for Ohioans to get college degrees all across the state. https://t.co/NChVRwFXtG +06/21/2018,Politicians,@JohnKasich,The government needs all hands on deck to protect these children and reunite these families. Enough is enough. Get… https://t.co/PxRqY5BBYa +06/20/2018,Politicians,@JohnKasich,My statement on the President's executive order. https://t.co/viCqAt3KN5 +06/20/2018,Politicians,@JohnKasich,"In the fight against drugs, we need all hands on deck! I appreciate all the members of the @OhioOpioidEdu coming to… https://t.co/BHCwp3NueJ" +06/20/2018,Politicians,@JohnKasich,The innovations coming out of Cincinnati Children’s Hospital are just incredible. Keeping our kids safe and comfort… https://t.co/peXt1VD0e4 +06/19/2018,Politicians,@JohnKasich,"Can you imagine being ripped away from your family? That's no +solution. That's not America. https://t.co/ak3pCp3X6E" +06/19/2018,Politicians,@JohnKasich,"When I look down at the border, I feel as though in some people’s eyes these people are objects, that they’re not p… https://t.co/g9KtXNY8Sp" +06/19/2018,Politicians,@JohnKasich,Looking forward to speaking with @BrookeBCNN on @CNNNewsroom today at 2PM ET. Hope you can tune in! https://t.co/MwQlSh12B6 +06/19/2018,Politicians,@JohnKasich,Looking forward to appearing on the @11thHour tonight on @MSNBC. Tune in around 11PM ET! https://t.co/dnf8VRpQhV +06/18/2018,Politicians,@JohnKasich,"Ohio has come a long way since losing 350,000 jobs, and we’ve worked hard since 2011 to transform this state for gr… https://t.co/yBIUeb6SAd" +06/18/2018,Politicians,@JohnKasich,"Unbelievably, the Administration has chosen to no longer defend the law of the land that protects those with pre-ex… https://t.co/QDIGi1rI30" +06/18/2018,Politicians,@JohnKasich,Ripping apart families is serious business. It’s up to all of us to speak out. https://t.co/HftFLAOmlf +06/18/2018,Politicians,@JohnKasich,"We are LIVE today at JobsOhio to celebrate Ohio’s strong private sector growth — 520,500 private sector jobs since… https://t.co/hwHBB2vZLh" +06/18/2018,Politicians,@JohnKasich,Our country is tearing kids from their moms and dads. I can’t believe it. Can you imagine it happening to your fami… https://t.co/Q8sHLuEdI7 +06/18/2018,Politicians,@JohnKasich,"Tune in to @MSNBC with @SRuhle right now. I’ll be talking economy, entitlements, immigration and more." +06/17/2018,Politicians,@JohnKasich,Encouraging to see reports of fewer overdose deaths in some of our communities. Let’s hope this trend continues. F… https://t.co/aPesMfktqG +06/17/2018,Politicians,@JohnKasich,"I’m so blessed to have my girls. To everyone who feels as lucky as I do to be called “dad,” I hope you have a great… https://t.co/SYTwmVQI5g" +06/17/2018,Politicians,@JohnKasich,Want proof that the Ohio Model is working? https://t.co/DfFSwesPwi +06/17/2018,Politicians,@JohnKasich,"It’s getting hot outside, make sure you take some time to check in on your family and neighbors. Click here for tip… https://t.co/V43PHae0dj" +06/16/2018,Politicians,@JohnKasich,"Since 2011, Ohio has added 520,500 new private sector jobs! That means more opportunities, stronger families, and a… https://t.co/iBU9ttriNY" +06/16/2018,Politicians,@JohnKasich,"Great work by law enforcement in Dayton keeping this deadly drug off our streets. +https://t.co/1gTbxnKRCE" +06/15/2018,Politicians,@JohnKasich,We can’t allow our seniors to be victims of abuse. Learn the signs of elder abuse – help our elders live with digni… https://t.co/j9gd9LZ4xA +06/15/2018,Politicians,@JohnKasich,"Quit separating families. It's that simple. + +https://t.co/8C7E5QFyHV https://t.co/RWo6SZzgiu" +06/15/2018,Politicians,@JohnKasich,"With today’s jobs report, Ohio is now creating jobs 48 percent faster than the national rate since the start of the… https://t.co/6VBfHG1CZM" +06/15/2018,Politicians,@JohnKasich,"New jobs report out this morning shows more than 20,000 private sector jobs created in Ohio last month. We're showi… https://t.co/xqsYUJAG5b" +06/15/2018,Politicians,@JohnKasich,"Logistics has become a big part of Ohio’s more diversified economy. We’re leaning into it, and it’s paying off for… https://t.co/FI9SVtAp4A" +06/14/2018,Politicians,@JohnKasich,Today we take pride in the stars and stripes and honor Old Glory. #FlagDay https://t.co/gUeZFK2sEJ +06/14/2018,Politicians,@JohnKasich,"Good for @SenBobCorker for calling attention to Congress’ inaction on common-sense, conservative issues like DACA a… https://t.co/V4PILvKVMt" +06/14/2018,Politicians,@JohnKasich,A sad time for American values. The inaction by Congress to fix DACA will certainly be remembered when voters go to… https://t.co/7AOBM0d2zJ +06/13/2018,Politicians,@JohnKasich,"Ohio goes the extra mile to help our veterans find their next job opportunity. If you know a veteran, tell them abo… https://t.co/XHw9Oxt4ph" +06/13/2018,Politicians,@JohnKasich,"Columbus is booming. Ohio is booming. We’re not slowing down. +https://t.co/63AppU5IaD" +06/12/2018,Politicians,@JohnKasich,"Businesses. Schools. Jobs. All are growing stronger thanks to Ohio’s all-of-the-above energy policy. +https://t.co/z6MTBbC6mS" +06/12/2018,Politicians,@JohnKasich,"Happy Birthday to @GeorgeHWBush, one of America's most honorable leaders. Thank you for your service to our nation! https://t.co/cTHuckKqpL" +06/12/2018,Politicians,@JohnKasich,Time is up. Republicans can’t sit on the sideline any longer. Sign the discharge petition. Act on DACA now. https://t.co/LDui4ZUfOY +06/12/2018,Politicians,@JohnKasich,Promises from #NorthKorea don’t matter; we should not back off our economic and political pressure until there is a… https://t.co/MZwdwEAMRy +06/11/2018,Politicians,@JohnKasich,"As children, these people didn’t choose to come to America -- and as adults they’ve followed the rule of law, raise… https://t.co/PqXsOTVUuE" +06/11/2018,Politicians,@JohnKasich,We should not give anything away to #NorthKorea. We have to keep the pressure up until we get verifiable results. T… https://t.co/0sAnSqrqBP +06/11/2018,Politicians,@JohnKasich,"This is huge for NW Ohio! JobsOhio and their regional partners deserve a lot of credit for this big win! +https://t.co/v6aAYRxduX" +06/10/2018,Politicians,@JohnKasich,A sad and shameful end to the #G7Summit with America again standing alone while our allies fill the vacuum of leade… https://t.co/vrQvPpvlMV +06/10/2018,Politicians,@JohnKasich,"Ohio’s interactive budget is now two years old. We take taxpayer dollars seriously, so we built this comprehensive… https://t.co/Lcc16CLuYt" +06/09/2018,Politicians,@JohnKasich,Read more: Global security suffers when Trump snubs America’s trading allies. @GlobeAndMail #G7Summit… https://t.co/3l14YnWRTx +06/09/2018,Politicians,@JohnKasich,"Free trade is key to innovation, expansion and lasting global security. As the G-7 summit concludes in Quebec today… https://t.co/oztoIj8VBf" +06/08/2018,Politicians,@JohnKasich,"As the G-7 kicks off in Quebec, I hope the attendees will take some time to read my op-ed in Canada’s @GlobeandMail… https://t.co/4QX1kNCmKm" +06/08/2018,Politicians,@JohnKasich,"If life seems hopeless, contact someone. There is always someone there to listen. + +National suicide prevention hot… https://t.co/BIDfIHCVQ4" +06/08/2018,Politicians,@JohnKasich,President Trump's idea of renewing Russian membership in the G-7/G-8 does not protect or defend the national securi… https://t.co/SwuRbIcU0I +06/07/2018,Politicians,@JohnKasich,"RT @ForeignAffairs: In the new issue of Foreign Affairs, @JohnKasich writes about the right way put America first https://t.co/7kRDkW7B2E" +06/07/2018,Politicians,@JohnKasich,"DREAMers are our neighbors, schoolmates and co-workers. They live in our communities and are Americans in every sen… https://t.co/oNFjVdlX3K" +06/07/2018,Politicians,@JohnKasich,"WAPO: “If Stripmatic’s experience is any guide, protectionism may already be backfiring on Americans and underminin… https://t.co/U4repVZYqE" +06/07/2018,Politicians,@JohnKasich,"There's a better way to put America first. A smarter way. One that makes us more secure. + +Here it is:… https://t.co/1GqPzuLQiD" +06/07/2018,Politicians,@JohnKasich,DREAMers didn't have a choice coming to America as children. They've done nothing wrong since they got here. In fac… https://t.co/fahBadwh6h +06/07/2018,Politicians,@JohnKasich,"If you’re looking for your next great job opportunity, there are currently over 150,000 jobs available on … https://t.co/3yGuo033fB" +06/06/2018,Politicians,@JohnKasich,The members of the General Assembly have been active partners in Ohio’s success and I look forward to continuing th… https://t.co/mdPr5280V1 +06/06/2018,Politicians,@JohnKasich,We can’t make America First if we refuse to even play ball in the same league as our allies. Trade wars will only h… https://t.co/TxkVD8dE1K +06/06/2018,Politicians,@JohnKasich,"On this anniversary of D-Day, President Reagan’s words from his 1984 commemoration at Pointe du Hoc in Normandy con… https://t.co/1cPKXhVSCG" +06/06/2018,Politicians,@JohnKasich,"This is someone’s healthcare. Their retirement. Unless Congress gets serious about our national debt, our entire co… https://t.co/fNhnmd6ooN" +06/05/2018,Politicians,@JohnKasich,"American leaders who offer hope and challenge us to be better people are the ones we remember. This week, we rememb… https://t.co/6ZGGAfDh55" +06/05/2018,Politicians,@JohnKasich,"Echoes from the past? Maybe, but this feels different. Check out Jules Witcover’s column in the @BaltimoreSun about… https://t.co/Wqj3ywYYbA" +06/05/2018,Politicians,@JohnKasich,"It's time to be real. Russia and the West are in conflict and their behavior can not be tolerated. + +Read my column… https://t.co/rsPnnOLWe2" +06/04/2018,Politicians,@JohnKasich,"We helped set the stage for strong economic growth by cutting taxes, reducing unnecessary red tape and keeping Ohio… https://t.co/eiF0JMEegA" +06/04/2018,Politicians,@JohnKasich,"Here in Ohio, @Microsoft and @CWRU are coming together to develop new, cool tech. Further proof that Ohio continues… https://t.co/RKRPwUpOgw" +06/04/2018,Politicians,@JohnKasich,"RT @WSJ: Opinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/NVQCKDdXtQ" +06/03/2018,Politicians,@JohnKasich,Why do Congressional leaders feel they have to ask @POTUS for permission to do anything? Pass something. Let him ve… https://t.co/J68AnSxKVd +06/03/2018,Politicians,@JohnKasich,"Tariffs don’t make America First — they make it America Alone. + +Fair, free competitive trade is good for the USA. https://t.co/bjJlnuPtYk" +06/03/2018,Politicians,@JohnKasich,Promises don’t matter. We cannot let up the pressure on North Korea. https://t.co/2DgWeGbZHg +06/03/2018,Politicians,@JohnKasich,I’ll be on @FaceTheNation with @MargBrennan today. Make sure you check your local listings and tune in:… https://t.co/EF5vo60pRY +06/02/2018,Politicians,@JohnKasich,Hope you can tune in to @CBS @FaceTheNation Sunday morning. I'll be on to talk about why I'm standing with… https://t.co/JxZ8h0mmj1 +06/02/2018,Politicians,@JohnKasich,I’ll be on @FaceTheNation with @MargBrennan this Sunday. Check your local listings and tune in:… https://t.co/yRYTfzzVMm +06/02/2018,Politicians,@JohnKasich,So proud of my daughter Emma — what she’s accomplished at the state track championships these past four years is in… https://t.co/zm8DpBpgkl +06/01/2018,Politicians,@JohnKasich,"Improving cybersecurity has been a priority for us. With this new cyber range, we’ll have a virtual environment to… https://t.co/8AK9NcjWHf" +06/01/2018,Politicians,@JohnKasich,RT @FaceTheNation: SUNDAY: don't miss Ohio GOP Gov. @JohnKasich on @FaceTheNation https://t.co/CoBpCuagIb https://t.co/hU5HJOQ3Yj +06/01/2018,Politicians,@JohnKasich,So proud of Emma and her teammates! https://t.co/1ELYZtzjOa +06/01/2018,Politicians,@JohnKasich,Here at the HS state track meet. Just watched my daughter Emma and her 4x200 relay team advance to the state champi… https://t.co/DReFDlrQwh +06/01/2018,Politicians,@JohnKasich,"Central Ohio is booming! Thanks to the work of #JobsOhio and @CBusRegion, 150,000 new jobs have been added to the C… https://t.co/tZZTfB7L5c" +06/01/2018,Politicians,@JohnKasich,It all starts tonight. Let’s go @Cavs! #WhateverItTakes +06/01/2018,Politicians,@JohnKasich,RT @cspan: Governor @johnkasich (R-OH) at Harvard @kennedy_school – 8:25pm ET on C-SPAN https://t.co/9y6UBycA3C +06/01/2018,Politicians,@JohnKasich,Just had a great call with @RepCurbelo who is fighting for Dreamers. He's the kind of GOPer I will work hard for an… https://t.co/01kEtBBymj +05/31/2018,Politicians,@JohnKasich,The ballooning national debt is going to suffocate our economy if we don’t get it under control. Read my column tod… https://t.co/uMpifEVniS +05/31/2018,Politicians,@JohnKasich,The occupant of the Oval Office should speak for all Americans. Enough with the political division. @POTUS should c… https://t.co/Sa2OcmLV2C +05/31/2018,Politicians,@JohnKasich,"RT @WSJopinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/BVn1SdM170 via @WSJOpinion" +05/31/2018,Politicians,@JohnKasich,"RT @WSJ: Opinion: Entitlements will eat America’s economy, writes @JohnKasich https://t.co/BceYhYqU7i" +05/31/2018,Politicians,@JohnKasich,"By imposing damaging tariffs, do we really want to treat our allies like enemies? That’s not how America leads. It… https://t.co/YppsMhf4mR" +05/31/2018,Politicians,@JohnKasich,"With these tariffs, it’s no longer America first. What we’re seeing now is America alone. https://t.co/UAcZUcAgOv" +05/31/2018,Politicians,@JohnKasich,I really appreciate @CNN wanting to talk about the importance of getting DACA passed through congress. I’ll be chat… https://t.co/7oVbmhBYdj +05/31/2018,Politicians,@JohnKasich,My latest column in today’s @WSJ about our nation's out-of-control national debt. Please share your thoughts!… https://t.co/pfemot54Fo +05/31/2018,Politicians,@JohnKasich,Our $21 trillion national debt should be setting off alarm bells for families across the nation. What can the count… https://t.co/iP05cPiVtE +05/30/2018,Politicians,@JohnKasich,"The Cleveland Clinic is always on the cutting-edge of medical innovation… and now they’re at it again.  +https://t.co/9OLme0hfv4" +05/30/2018,Politicians,@JohnKasich,Getting students involved in in-demand fields is so vital to preparing them for successful careers — it’s great to… https://t.co/JCYuCImuWj +05/30/2018,Politicians,@JohnKasich,"RT @NatImmForum: .@JohnKasich: “[Dreamers] are Americans in every sense, except for their paperwork. They grew up in this country. They are…" +05/30/2018,Politicians,@JohnKasich,Great news for Cincinnati! Congratulations! https://t.co/y3txPDbuJn +05/29/2018,Politicians,@JohnKasich,"Ohio is the proud home to the +@AFMuseum. It’s a must see for those traveling to the Buckeye State and it’s +one of t… https://t.co/HbrBPH2sZX" +05/29/2018,Politicians,@JohnKasich,"Read my latest op-ed in @USATODAY. #DACA should be a slam dunk for Congress. + +https://t.co/5zcbJaGymv https://t.co/23OPOgUdmA" +05/29/2018,Politicians,@JohnKasich,"Time’s Up, Congress! If leadership won’t act to find a solution for Dreamers, lawmakers need to trigger change by… https://t.co/NbE1XDg7BH" +05/28/2018,Politicians,@JohnKasich,"On this #MemorialDay, we remember the heroic men and women who gave their lives in service to our country. May they… https://t.co/yWIrqhkrGq" +05/28/2018,Politicians,@JohnKasich,"After last night, there really can’t be a doubt in anyone’s mind. @KingJames is just the best. https://t.co/o5XjFC7JAu" +05/28/2018,Politicians,@JohnKasich,"Today, we are lowering the flags in honor all of those heroes who gave their lives defending our great nation. https://t.co/KUbTehU2ru" +05/28/2018,Politicians,@JohnKasich,"Incredible. See you in the Finals, @cavs! + +#WhateverItTakes https://t.co/0KgCsgX07h" +05/28/2018,Politicians,@JohnKasich,Proud moment today as my daughters celebrated their graduation from high school. https://t.co/UKmHsCH4Tx +05/27/2018,Politicians,@JohnKasich,"The health care industry is thriving in Ohio.  +https://t.co/mzn8MWmMAw" +05/27/2018,Politicians,@JohnKasich,Cincinnati is a great place to live and a great place to visit – there’s so much to do and see. And the same is tru… https://t.co/21cJKqnspO +05/26/2018,Politicians,@JohnKasich,"More than six years ago, Ohio created a Human Trafficking Taskforce to raise awareness to help prevent this horribl… https://t.co/V6HpSkZz8m" +05/26/2018,Politicians,@JohnKasich,"This week, I signed an executive order to help improve the lives of Ohioans with developmental disabilities with a… https://t.co/5jHFm1hrdT" +05/26/2018,Politicians,@JohnKasich,Congrats to Emma and her @WCWarriorSports teammates! Their strong performance at regionals in the 4x100 & 4x200 has… https://t.co/xw8l9NiNbI +05/25/2018,Politicians,@JohnKasich,"""There's no wall at the Ohio border"" +Read my recent guest column here: https://t.co/CqgUyuLgFv + +https://t.co/P59XILJQTu" +05/25/2018,Politicians,@JohnKasich,"To all those traveling across Ohio this #MemorialDayWeekend, stay safe out there! And remember, … https://t.co/hPxpQsDYps" +05/25/2018,Politicians,@JohnKasich,Some virtues are written on our hearts and they’re instinctive. Just look at what @JJWatt has done for so many peop… https://t.co/gPJdPWwRQw +05/24/2018,Politicians,@JohnKasich,"Today, I signed an executive order declaring Ohio a Technology First state — taking an important step toward improv… https://t.co/IJQUPPr5nl" +05/24/2018,Politicians,@JohnKasich,"RT @DOMTIBERI: .@JohnKasich please share... +Don't let your child become a STATISTIC. If your CHILD drives RECKLESS. drives DISTRACTED. Tak…" +05/24/2018,Politicians,@JohnKasich,"When we recognize the virtues of love, compassion and humility, making decisions as a leader is easy. Too many lead… https://t.co/DWzUEXJGHW" +05/24/2018,Politicians,@JohnKasich,Ohio Gov. John Kasich joins developmentally disabled advocates to sign an executive order declaring Ohio a Technolo… https://t.co/ez95civ33b +05/24/2018,Politicians,@JohnKasich,Behind the Scenes: Gov. Kasich and special guest Milo getting ready for a press conference to announce that Ohio wi… https://t.co/9WfriQvkTR +05/24/2018,Politicians,@JohnKasich,This morning we will be taking an important step forward in our efforts to improve the lives of our neighbors with… https://t.co/pI5Vcw2gpH +05/24/2018,Politicians,@JohnKasich,Thank you for the opportunity. It was my honor! https://t.co/0GyNWtZLqI +05/24/2018,Politicians,@JohnKasich,"As our politics shows, in some ways my generation has failed us. To all of the Millennials and young Americans, the… https://t.co/NHnLUL8C7U" +05/23/2018,Politicians,@JohnKasich,It’s up to each of us to live a life a little bigger than ourselves. Don’t wait for politicians to fix our country. https://t.co/QHZWRBVw6w +05/23/2018,Politicians,@JohnKasich,I hope you can tune in at 2PM ET today. I'm honored to have the opportunity to give the @Harvard @Kennedy_School gr… https://t.co/9RWOmRfMuR +05/23/2018,Politicians,@JohnKasich,Honored to have the opportunity to deliver the graduation address today at @Harvard University's @Kennedy_School. T… https://t.co/aaH2VeKACL +05/23/2018,Politicians,@JohnKasich,Life in Boston https://t.co/d9rB0OaiOw +05/22/2018,Politicians,@JohnKasich,"Data analytics is key to solving many of the challenges facing society, and Ohio has been working to be a leader in… https://t.co/e5qoFo1HIZ" +05/22/2018,Politicians,@JohnKasich,It’s amazing to see companies coming forward with innovative ideas like this that can be put to use in combatting o… https://t.co/tm4KF0cbBv +05/22/2018,Politicians,@JohnKasich,The tsunami of change that’s coming to our workforce is among the most important issues facing our nation. Just fin… https://t.co/xb3aBPrPRy +05/22/2018,Politicians,@JohnKasich,Union Metal has been manufacturing in Canton since 1906. Great to see this historic facility and hundreds of Stark… https://t.co/23cY9lGw7J +05/21/2018,Politicians,@JohnKasich,"In Ohio, we’re utilizing technology to help those with developmental disabilities. We’re planning to take our effor… https://t.co/vOHWM5VzSy" +05/21/2018,Politicians,@JohnKasich,Gov. Kasich is live speaking at Ohio’s annual wreath-laying ceremony honoring our fallen heroes. Watch at… https://t.co/U43dR9UWiO +05/21/2018,Politicians,@JohnKasich,"Today, Ohio honors those military men and women who made the ultimate sacrifice. Join us live for our annual wreath… https://t.co/VMNlpg4MQ1" +05/20/2018,Politicians,@JohnKasich,"Last week, we created the Office of Opportunities for New Americans to focus on making sure new Ohioans are job rea… https://t.co/afRU9Dxt7h" +05/19/2018,Politicians,@JohnKasich,"So proud of my daughter, Emma, and her teammates for their first place finish at the district track meet in both th… https://t.co/7ptE1Qp5DP" +05/19/2018,Politicians,@JohnKasich,"On this Armed Forces Day, we thank all those that served and those that continue to serve in our nation’s military… https://t.co/yr8UWsOisr" +05/18/2018,Politicians,@JohnKasich,"Today, we’re lowering the flags in honor of the victims of the attack in Santa Fe, Texas. https://t.co/koJWBI1hJx" +05/18/2018,Politicians,@JohnKasich,Enjoyed it! https://t.co/uqEhr80QBX +05/17/2018,Politicians,@JohnKasich,The Midwest IS booming. And Ohio is helping to lead the way. We have all the resources for success – a talented wor… https://t.co/heFaLfE2VV +05/17/2018,Politicians,@JohnKasich,"Ohio isn’t slowing down… + +“12, 874 new entities filed to do business in Ohio last month, making April 2018 the bes… https://t.co/NHBg29imIR" +05/16/2018,Politicians,@JohnKasich,"It’s great to see Amazon continuing to grow and invest in Ohio. +https://t.co/vFTAxSlPlq" +05/16/2018,Politicians,@JohnKasich,RT @OHPediatricians: Check out Ohio AAP board member Mike Gittelman @gittel21 who spent a few minutes talking with @Local12 #Cincinnati abo… +05/16/2018,Politicians,@JohnKasich,.@CarloslCurbelo has been a leading voice in the GOP on this issue. His peers in Washington should listen and vote with their hearts. #DACA +05/16/2018,Politicians,@JohnKasich,Let's not let politics prevent Republicans from doing the right thing on #DACA. These are real lives we're talking… https://t.co/4u6DK9N45F +05/16/2018,Politicians,@JohnKasich,Appreciated students from Hoffman Trails Elementary School listening to a little advice from the governor today dur… https://t.co/n6UreeQuve +05/16/2018,Politicians,@JohnKasich,"A state built by immigrants, Ohio is finding better ways to help newcomers achieve success in the Buckeye State. Re… https://t.co/xWRPuidlIH" +05/15/2018,Politicians,@JohnKasich,If you’re a legal immigrant or are considering a move to America and you’re looking for great opportunities – come… https://t.co/kbU7hcdiBv +05/15/2018,Politicians,@JohnKasich,Looking forward to talking about our new Office of Opportunities for New Americans with @camanpour on @CNNi. Tune in at 2pm. +05/15/2018,Politicians,@JohnKasich,"Today, we’re announcing a new initiative to help legal immigrants successfully integrate into Ohio. Join us at 11am… https://t.co/kGuNwkFutn" +05/15/2018,Politicians,@JohnKasich,Today we recognize Peace Officers Memorial Day and National Police Week by lowering the flags in honor of the tirel… https://t.co/0JTZKOmjLh +05/14/2018,Politicians,@JohnKasich,Violence has no place in our schools — no student should ever feel unsafe in their classrooms. I’m so proud to see… https://t.co/FFXkx9N7zP +05/14/2018,Politicians,@JohnKasich,Thank you! https://t.co/sIFoI4OYbP +05/14/2018,Politicians,@JohnKasich,Proud of the progress Ohio has made to strengthen pathways toward a lower-cost college degree by increasing opportu… https://t.co/5GEjG0VZHc +05/13/2018,Politicians,@JohnKasich,"To all the women blessed with the toughest and most important job out there, happy Mother’s Day! +#MothersDay https://t.co/xuqSzpG7Hz" +05/12/2018,Politicians,@JohnKasich,Great to see! Programs like this are a great way to help the women of the Ohio Reformatory for Women give back and… https://t.co/ARNDagAyuQ +05/12/2018,Politicians,@JohnKasich,"As the weather warms up, it’s important to be aware of the dangers of ticks and the diseases they carry. Some good… https://t.co/O2PS26xN9S" +05/11/2018,Politicians,@JohnKasich,The comments by a White House staffer in regard to Sen. John McCain were just outrageous and totally out-of-line. https://t.co/MPz8EF6Op5 +05/11/2018,Politicians,@JohnKasich,Appreciated the @MichiganPress Association for the invitation to speak at their closing session of their 150th anni… https://t.co/o0Nije9b4A +05/11/2018,Politicians,@JohnKasich,"In-Demand Jobs Week may be coming to an end, but the demand for the jobs we’ve highlighted this week isn't going aw… https://t.co/iKgrOovkG1" +05/10/2018,Politicians,@JohnKasich,“Cincinnati has developed a winning model for collaboration that stretches across political boundaries that will co… https://t.co/LeaUWGGIMK +05/10/2018,Politicians,@JohnKasich,Enjoyed sitting down with @BenWSYX6 yesterday to talk about Ohio’s leadership in autonomous and connected vehicles… https://t.co/glaz5rPBSc +05/09/2018,Politicians,@JohnKasich,"Ohio is cementing its status as a leader in the development of autonomous and connected vehicles – today, I signed… https://t.co/n8QTyCgbkU" +05/09/2018,Politicians,@JohnKasich,Ohio businesses are doing amazing things in the way of developing new technologies for autonomous and connected veh… https://t.co/2JmpWW0eMe +05/09/2018,Politicians,@JohnKasich,RT @SXMPOTUS: Did you miss @PrestonCNN's excellent sit-down with @JohnKasich? It re-airs today 2PM East on @siriusxm Ch. 124. Also On Deman… +05/09/2018,Politicians,@JohnKasich,We’re doing all we can to keep Ohio a leader in developing the cars of the future. Join us at 10:30am on… https://t.co/v3Ez4pfz6z +05/08/2018,Politicians,@JohnKasich,"If you live in Ohio and haven’t voted yet, you still have time! The polls are open until 7:30PM + +Find your polling… https://t.co/Ww6ycazlFG" +05/08/2018,Politicians,@JohnKasich,.@RepCharlieDent defined himself as a problem solver -- and Capitol Hill needs more people like him. While I wish h… https://t.co/Oq0wmTkPiI +05/08/2018,Politicians,@JohnKasich,Gov. John Kasich statement on the withdraw from the Joint Comprehensive Plan of Action #IranDeal https://t.co/VzdxBXt9Bp +05/08/2018,Politicians,@JohnKasich,"We all can think of a teacher that has made a difference in our lives. And right now, teachers across Ohio are doin… https://t.co/8HOp6XprbA" +05/08/2018,Politicians,@JohnKasich,"Today is Election Day in Ohio! Now is your chance to make your voice heard! + +Find your polling location or a sample… https://t.co/WIjgY9v6P1" +05/07/2018,Politicians,@JohnKasich,"If you live in Ohio, I’m asking you to vote YES on State Issue 1 on Tuesday (Election Day). Legislators came togeth… https://t.co/B9rBQ48vAm" +05/07/2018,Politicians,@JohnKasich,"Ohioans, Tuesday is Election Day. We have some really important races to select the candidates for the November ele… https://t.co/K1xksK9L3F" +05/07/2018,Politicians,@JohnKasich,"While opportunities are dwindling nationally for college grads, “local experts said that doesn’t appear to be the c… https://t.co/HxLwxrFIhd" +05/07/2018,Politicians,@JohnKasich,This week is Ohio In-Demand Jobs Week. Ohio is home to so many talented people and it is so important that they're… https://t.co/rrrX9k1Hxw +05/07/2018,Politicians,@JohnKasich,"Just watched a @TomPetty Fenway Park show. Wow. + +We all lost a little when we lost him. + +https://t.co/nNWEsn9PxU" +05/06/2018,Politicians,@JohnKasich,Ohio has so much to do and see – it’s affordable and easy to travel. #OhioTourismDay is next Wednesday – celebrate… https://t.co/wU6aQmP3va +05/06/2018,Politicians,@JohnKasich,I enjoyed sitting down with @jheil last week. Be sure to tune in to @Showtime's @SHO_TheCircus this evening at 8PM! +05/05/2018,Politicians,@JohnKasich,Next week is Ohio #InDemandJobsWeek! We have over 120 events across Ohio to learn about the rewarding and high-dema… https://t.co/8Dt0cTw8Wr +07/01/2018,Politicians,@marcorubio,"..we commend ourselves as ministers of God, through much endurance,in afflictions, hardships, constraints, beatings… https://t.co/gQk7VjKtY7" +06/30/2018,Politicians,@marcorubio,"More Americans have been evacuated from #China after abnormal sounds & sensations, like the ones which led to previ… https://t.co/NRNCVf7wvR" +06/30/2018,Politicians,@marcorubio,"The LORD is my strength and my shield, in whom my heart trusts. I am helped, so my heart rejoices; with my song I praise him. Psalms 28:7" +06/29/2018,Politicians,@marcorubio,So this is the great deal we have on #ZTE? They replace board members with new directors hand­picked by the control… https://t.co/Dze66E4i2D +06/29/2018,Politicians,@marcorubio,These are the three things we need to do if we’re serious about bringing the immigration issue under control. https://t.co/aDTy3jPkjb +06/29/2018,Politicians,@marcorubio,It’s fine for @POTUS to meet with #Putin. U.S. & Russia possess largest nuclear arsenals in world. But would be a g… https://t.co/XFUiqmv9c0 +06/29/2018,Politicians,@marcorubio,Too often we look to D.C. for the answers. But here is a reminder that most of the important innovations we need to… https://t.co/OnjKp3umg1 +06/29/2018,Politicians,@marcorubio,Claim that departure of @IvankaTrump staffer signals “a likely pullback” from efforts to pass a paid family leave b… https://t.co/i88taxMehI +06/29/2018,Politicians,@marcorubio,Thank you to ⁦@united⁩ ⁦@AmericanAir⁩ & ⁦@Delta⁩ for continuing to refuse #China unreasonable demands. Stay strong. https://t.co/hDHaPM80HV +06/29/2018,Politicians,@marcorubio,#Putin would not be doing us a favor helping curb #Iran military in #Syria. It’s in his interest as well. But know… https://t.co/tf4ffVdtCY +06/29/2018,Politicians,@marcorubio,"Should never forget that #KJU is a sadist with political prison camps & who engages in abductions,torture,forced st… https://t.co/BAfaa9NE3I" +06/29/2018,Politicians,@marcorubio,"Sign of our times... the F word is now routinely used in news stories, tweets etc It’s not even F*** anymore. Who made that decision???" +06/29/2018,Politicians,@marcorubio,"This is a vanity that occurs on earth: There are those who are just but are treated as though they had done evil, a… https://t.co/9B2Pzwr58w" +06/28/2018,Politicians,@marcorubio,"#Putin has influence campaign is to divide us,but #China has an even broader one to create domestic pressure on U.S… https://t.co/Q4gQJcvArr" +06/28/2018,Politicians,@marcorubio,In attacking me #Huawei exec said it “takes decades” to turn research into something marketable. The problem is… https://t.co/NusxTelmEQ +06/28/2018,Politicians,@marcorubio,"With all the fighting going on in America, the one thing I think has bipartisan support is the fact that we have to… https://t.co/PFky4LMF9y" +06/28/2018,Politicians,@marcorubio,It’s not good that people increasingly get news & information only from sources that confirm what they want to hear… https://t.co/gDGjvJvtP4 +06/28/2018,Politicians,@marcorubio,BTW I’m not happy about this reality. It’s terrible for country. Lack of trust in reporting leaves us vulnerable to… https://t.co/3IUNN0Ly7t +06/28/2018,Politicians,@marcorubio,"Of course #Putin continues to deny interfering in our elections. But he did. That is not a matter of opinion, it is an indisputable FACT." +06/28/2018,Politicians,@marcorubio,McCain is hero & patriot. But in 2008 “journalists” who now extol his virtues portrayed him as a madman & the… https://t.co/NwjsJQh5FP +06/28/2018,Politicians,@marcorubio,"Re-upping this tweet from 2 days ago. GOP voters defend Trump when attacked by media,OFTEN DESPITE NOT LIKING WHAT… https://t.co/Yux4zEbpr7" +06/28/2018,Politicians,@marcorubio,".@AxiosAm : “The MEDIA,normally the LAST CHECK on a president with total control of government,HAS LOST THE TRUST O… https://t.co/XlyoKUJNpe" +06/28/2018,Politicians,@marcorubio,Some very good suggestions in this column about how to deal with #China. I filed a bill two months ago that offers… https://t.co/bYw0t8l2go +06/28/2018,Politicians,@marcorubio,"As expected,the reaction of the “usual suspects” to this tweet yesterday either proved my point or missed it. Many… https://t.co/Q7x5yKOCxZ" +06/28/2018,Politicians,@marcorubio,A roaring lion or a ravenous bear is a wicked ruler over a poor people. Proverbs 28:15 +06/27/2018,Politicians,@marcorubio,Read this account of an outrageous theft by #China of an American companies chip design. They do this every day & a… https://t.co/n2uAAaL813 +06/27/2018,Politicians,@marcorubio,I admire Justice Kennedy's frequent calls for greater civility in our discourse. Now I look forward to a fair & tho… https://t.co/csqNzA7xTd +06/27/2018,Politicians,@marcorubio,It is a mistake to pretend the migration & trade fights we are debating in U.S. are unique to us. Europe is having… https://t.co/fhmoJ3wYOV +06/27/2018,Politicians,@marcorubio,Head of #Huawei attacked me for wanting restrictions on their research with our universities. They’ve made fortune… https://t.co/evwcGGhSQi +06/27/2018,Politicians,@marcorubio,I have decided to block the addition of any new amendments to #FarmBill until they either accept the Cruz amendment… https://t.co/nBKc3akOqM +06/27/2018,Politicians,@marcorubio,Stronger CFIUS good for stopping bad deals. But some technologies critical to national security should NEVER be sol… https://t.co/Fuehj7A6n0 +06/27/2018,Politicians,@marcorubio,While we spend our time fighting each other a China-centric technology future is taking shape. If we don’t wake up… https://t.co/plfNF3Iayr +06/27/2018,Politicians,@marcorubio,Many Republicans won’t criticize Trump even when they don’t agree with him b/c it means siding with a media that ne… https://t.co/IIsOwdZuzV +06/27/2018,Politicians,@marcorubio,A Chinese national who lives in Massachusetts as a green card permanent resident was charged with stealing U.S. ant… https://t.co/aK3xhG0o8f +06/27/2018,Politicians,@marcorubio,#China has ordered trade & news outlets to not mention #MadeinChina2025 which is their industrial “master plan” to… https://t.co/X0f3VtQ3mI +06/27/2018,Politicians,@marcorubio,Amazing story about a man in #PuertoRico created a solar-powered generator for families without power https://t.co/C8ufN7p2og +06/27/2018,Politicians,@marcorubio,I am filing a new bill that will ban #China companies from receiving taxpayer funded small business loans from the… https://t.co/VuHqcEsTfp +06/27/2018,Politicians,@marcorubio,"If in fact President Trump is now backtracking on tough limits on Chinese investment, it is a VERY BIG MISTAKE.… https://t.co/VdGvYdCtab" +06/27/2018,Politicians,@marcorubio,Consider the work of God. Who can make straight what God has made crooked? Ecclesiastes 7:13 +06/27/2018,Politicians,@marcorubio,Congratulations to my friend William Timmons on earning the GOP nomination in #SC04 tonight. On to the general elec… https://t.co/gTokePq4cx +06/26/2018,Politicians,@marcorubio,Recurring nightmare of Algae bloom from Lake O is back. Yesterday I passed an amendment in spending bill that requi… https://t.co/NuFBFPIQlU +06/26/2018,Politicians,@marcorubio,South Carolina is voting today - I encourage you to support William Timmons in his runoff election. @votetimmons. #sc04 +06/26/2018,Politicians,@marcorubio,"100% correct: “Individuals emerge out of families, communities,faiths,neighborhoods & nations” not the other way ar… https://t.co/KBwoFGKoj7" +06/26/2018,Politicians,@marcorubio,"We are ALL fiddling during this fire! While we fight with each other,try to out nasty each other & harass each othe… https://t.co/xP0wxzyHUc" +06/26/2018,Politicians,@marcorubio,44 yr old migrant says“I’m not leaving my country because I want to”. She once owned restaurant but gang demanded $… https://t.co/BNfjoGce9B +06/26/2018,Politicians,@marcorubio,Immigration issue is hard b/c our sovereignty requires us to have borders. Our history requires us to remember we a… https://t.co/e5blUl3uoF +06/26/2018,Politicians,@marcorubio,When you have migrants saying “I’d rather be in jail in the U.S. than killed in my own country” it is clear the mos… https://t.co/eBVEdN8hHS +06/26/2018,Politicians,@marcorubio,#ZTE & #Huawei equipment provides #China access to U.S. data flowing through networks. And they also use billions o… https://t.co/BrUmVkxty7 +06/26/2018,Politicians,@marcorubio,"Fear of others becomes a snare, but the one who trusts in the LORD is safe. Proverbs 29:25" +06/26/2018,Politicians,@marcorubio,"Spoke to Sheriff Smith of Franklin County,Florida. 30 to 40 mobile homes destroyed by terrible fire leaving 200 har… https://t.co/kq5WkifUfw" +06/25/2018,Politicians,@marcorubio,After Xi threatened “American” multinational companies saying #China will give preferen­tial treat­ment to com­pa­n… https://t.co/FwMgxR7uym +06/25/2018,Politicians,@marcorubio,#China President Xi told a group of CEO’s from U.S. that “In the West you have the no­tion that if somebody hits yo… https://t.co/dBDhRbs5Z5 +06/25/2018,Politicians,@marcorubio,"Actually, the press got to tour the Homestead facility before either one of us at 10am Friday. DHS offered members… https://t.co/dZMqQICLNi" +06/25/2018,Politicians,@marcorubio,"Liberal harassment of Trump aides & GOP officials will galvanize #GOP base in Nov,but it’s terrible for America. On… https://t.co/1O2PQbNlSF" +06/25/2018,Politicians,@marcorubio,"Wonder if ⁦after @EU_Commission⁩ hit 11 more cronies of #Venezuela dictator @NicolasMaduro⁩ with sanctions,he & tho… https://t.co/xAYpmnzhWn" +06/25/2018,Politicians,@marcorubio,I’m not only one who realizes that many Republicans who don’t agree with everything Trump does are moved to support… https://t.co/CY9euqDkxO +06/25/2018,Politicians,@marcorubio,"Politics on both sides so tribal it reaches dining,entertainment & sports & where being nasty to those on other sid… https://t.co/U76R5qNIcw" +06/25/2018,Politicians,@marcorubio,These incidents of harassing Republicans during private time weren’t organic actions of an outraged public. They we… https://t.co/1agwTXNd56 +06/25/2018,Politicians,@marcorubio,Trump haters still haven’t realized how much they help him with their condescension of those who either voted for h… https://t.co/Q7HaEypu6K +06/25/2018,Politicians,@marcorubio,"I filed bill 2 months ago that does what Trump administration plans to do later this week by executive order,ban… https://t.co/ewzA7jaaeX" +06/25/2018,Politicians,@marcorubio,This is happening. Whether we like it or not the age of automation is well underway. But most policy makers do not… https://t.co/on7tzl9W4c +06/25/2018,Politicians,@marcorubio,"You rocked the earth, split it open; repair the cracks for it totters. You made your people go through hardship, +ma… https://t.co/OYT89Cc15j" +06/24/2018,Politicians,@marcorubio,"LORD,you have probed me,you know me: you know when I sit & stand;you understand my thoughts from afar. You sift thr… https://t.co/UadvVlFK6z" +06/22/2018,Politicians,@marcorubio,Actually more like 2 screaming people who apparently support a release policy that encourges already vulnerable mig… https://t.co/rmu2HMCBVy +06/22/2018,Politicians,@marcorubio,"Won’t be easy to house families together,but we must do it. Because we can never again go back to policy of either… https://t.co/h0Lm9zZess" +06/22/2018,Politicians,@marcorubio,"Should pass bill we filed asap. It creates capacity to hold families together,sets standards for family detention,h… https://t.co/QDLobeilLn" +06/22/2018,Politicians,@marcorubio,Visited Homestead shelter for migrant children. We must make sure they are safe & cared for & held together with pa… https://t.co/rv3DWGzLzY +06/22/2018,Politicians,@marcorubio,Wow what a surprise! Yet another American citizen working at embassy in #Cuba was injured. We have embassies in vir… https://t.co/jWiH40ji8e +06/22/2018,Politicians,@marcorubio,I know for a FACT that @FLOTUS has been a strong voice of compassion for migrant children. The vicious treatment of… https://t.co/Cf51F2i4dW +06/22/2018,Politicians,@marcorubio,We are AMERICA which means no matter the legality of their entry we MUST meet a higher standard in our treatment of… https://t.co/0RujpLqvIn +06/22/2018,Politicians,@marcorubio,ELISHA was filled with his spirit; He worked twice as many marvels & and every utterance of his mouth was wonderful… https://t.co/NO9cV4pa8n +06/21/2018,Politicians,@marcorubio,Charles Krauthammer was a man of extraordinary intellect. Truly one of a kind. The conservative movement & the nati… https://t.co/IExxFpE7rU +06/21/2018,Politicians,@marcorubio,I have already filed a bill that would curb #China investment in industries critical to national security. Once thi… https://t.co/W4ePMxqA9h +06/21/2018,Politicians,@marcorubio,"Here you go, the long arm of China. At least John Oliver is standing up to them after he was censored in #China for… https://t.co/NhlZwnm55V" +06/21/2018,Politicians,@marcorubio,Earlier today I spoke on the Senate Floor about our immigration issues and the need for Congress to act if we want… https://t.co/adw7SszDVp +06/21/2018,Politicians,@marcorubio,I support a generous immigration system. I support responsibly accommodating those who came years ago as children &… https://t.co/rcYqiHFjrX +06/21/2018,Politicians,@marcorubio,Based on Senate speeches Democrat position is: Don’t detain children; Don’t detain their parents either so we don’t… https://t.co/05Svs6IY0y +06/21/2018,Politicians,@marcorubio,Great news! The world is waking up to the #China threat. #Britain just held up a China aerospace deal over national… https://t.co/KE6eVyqTbe +06/21/2018,Politicians,@marcorubio,Wish big business backing #China on tariffs would realize if we continue to allow them to steal our innovations soo… https://t.co/xy9vVkD5Qa +06/21/2018,Politicians,@marcorubio,The tariffs on #China are a #TheftTax & frankly could be more. China is stealing between $300 & $600 BILLION a year… https://t.co/944OFSMtNp +06/21/2018,Politicians,@marcorubio,How exactly does helping save #ZTE give us leverage in broader negotiations with China? Giving in to their demands… https://t.co/nJCCEuoYZk +06/21/2018,Politicians,@marcorubio,"Our Father in heaven, hallowed be your name, your kingdom come, your will be done,on earth as in heaven. Give us to… https://t.co/V6DYc9WBzO" +06/20/2018,Politicians,@marcorubio,Just heard Senate colleague on floor say U.S. detains immigrant children “indefinitely & indiscriminately”. That is… https://t.co/H2oBFWPEgB +06/20/2018,Politicians,@marcorubio,Some Democrats now even using the disingenuous “indefinite detention” term. They know full well that those who unla… https://t.co/29CVzHzrwP +06/20/2018,Politicians,@marcorubio,The ink isn’t even dry on the new executive order ending separation policy & some Democrats already arguing that ke… https://t.co/eBsNHk9wjo +06/20/2018,Politicians,@marcorubio,It is cruel to separate families. But it’s also cruel & irresponsible to return to policy that encourages bringing… https://t.co/iNL9gmn3Oi +06/20/2018,Politicians,@marcorubio,Bill was just filed led by @SenThomTillis & many others like @SenatorFischer The executive order today does NOT tak… https://t.co/ZvcnUEQ64Y +06/20/2018,Politicians,@marcorubio,"Just filed the Keep Families Together Act. While todays reversal of decision to separate families is good,it will b… https://t.co/lWKKYm5E70" +06/20/2018,Politicians,@marcorubio,President just announced the White House is going to do something to keep families together after unlawful entry. W… https://t.co/sFXSu7yjtf +06/20/2018,Politicians,@marcorubio,"Recently, I admitted that I was wrong about a bill I voted for while in the Florida Legislature. Here’s why my new… https://t.co/zkHV3kkpxM" +06/20/2018,Politicians,@marcorubio,#ZTE poses a threat to entire U.S. telecommunication network not just our govt. #China already steals $300 billion… https://t.co/Wap9l1frn6 +06/20/2018,Politicians,@marcorubio,Returning to a policy that only adults with children are released would create an incentive to bring kids. Yes sepa… https://t.co/td1Q2yqme7 +06/20/2018,Politicians,@marcorubio,"Yesterday I had the opportunity to meet with Ethiopian dissident @eskindernega We must support freedom, liberty & d… https://t.co/vgm8anf25z" +06/20/2018,Politicians,@marcorubio,#China get much of their technology by stealing it from the U.S. & by forc­ing U.S. com­pa­nies in China to trans­f… https://t.co/J8f5uBJPID +06/20/2018,Politicians,@marcorubio,"Do not let anger upset your spirit, for anger lodges in the bosom of a fool. Ecclesiastes 7:9" +06/19/2018,Politicians,@marcorubio,"If every Senator is willing to support it by unanimous consent, the Senate could pass a bill, before the end of the… https://t.co/GxhP8c7Eum" +06/19/2018,Politicians,@marcorubio,Led by @JohnCornyn a group of us are finalizing bill that will allow families to be held together pending expedited… https://t.co/JA35DiJYao +06/19/2018,Politicians,@marcorubio,Releasing those who unlawfully enter b/c they came with children creates a cruel incentive to bring children on dan… https://t.co/06qenHFf5J +06/19/2018,Politicians,@marcorubio,"Listen to counsel and receive instruction, +that you may eventually become wise. Proverbs 19:20" +06/18/2018,Politicians,@marcorubio,"Tonight I issued a joint bi-partisan statement with @SenTomCotton, @SenSchumer, @ChrisVanHollen after the Senate to… https://t.co/40mk1yb9iu" +06/18/2018,Politicians,@marcorubio,"#China has a new tactic it is using to pressure people inside the U.S., it is holding U.S. Citizens ‘Hostage’ in Ch… https://t.co/VADPigK0eu" +06/18/2018,Politicians,@marcorubio,Ortega is using the “national dialogue” in #Nicaragua as a stalling tactic to remain in power & leave his wife as t… https://t.co/cNJPWCX8nV +06/18/2018,Politicians,@marcorubio,Currently govt must either release parents & continue incentive for illegal entry with children or separate familie… https://t.co/QZbUP3yPvf +06/18/2018,Politicians,@marcorubio,You are not a god who delights in evil;no wicked person finds refuge with you;the arrogant cannot stand before your… https://t.co/wb7mBjxTUi +06/17/2018,Politicians,@marcorubio,"Fathers, do not provoke your children to anger, but bring them up with the training and instruction of the Lord. Ephesians 6:4" +06/16/2018,Politicians,@marcorubio,"One reaction on the 1st anniversary of Trump's #Cuba policy, we don’t have a bunch of big U.S. corporations all ove… https://t.co/4NxbAq4liC" +06/16/2018,Politicians,@marcorubio,Fatherhood in America is in decline. It comes with responsibilities all fathers need to fulfill. And it has an impo… https://t.co/dtcAsAiihJ +06/16/2018,Politicians,@marcorubio,"#China started trade war blocking U.S. companies,stealing their intellectual property & forcing hand over of techno… https://t.co/omy2wInhnM" +06/16/2018,Politicians,@marcorubio,"But I say to you, love your enemies,& pray for those who persecute you, that you may be children of your heavenly F… https://t.co/wVM2rExlW2" +06/16/2018,Politicians,@marcorubio,Negotiations with Cuba & #NorthKorea are very different. Deal with Cuba was about rewarding dictatorship with diplo… https://t.co/G1stmzZhLw +06/15/2018,Politicians,@marcorubio,"#China issue isn’t just simple trade dispute. They are executing on a masterplan called ""Made in China 2025"" which… https://t.co/9k16GSRZfw" +06/15/2018,Politicians,@marcorubio,"Article doesn’t go far enough. #China isn’t “warning” U.S. companies,it’s threatening them if they don’t lobby hard… https://t.co/Yt3h7uZ7OK" +06/15/2018,Politicians,@marcorubio,What do you think of Kanye West’s new album? https://t.co/w1207wVgZ0 +06/15/2018,Politicians,@marcorubio,"RT @MariaCorinaYA: Senator @marcorubio, we are deeply grateful for your continued support of the Venezuelan people in our struggle for demo…" +06/15/2018,Politicians,@marcorubio,"All of these abuses are being well documented. Not just Maduro, but those running these prisons & even the guards w… https://t.co/TBpyzVHzLy" +06/15/2018,Politicians,@marcorubio,I support the #TheftTax imposed on #China by ⁦@realDonaldTrump⁩ 1000%. They are 211ing our innovations to establish… https://t.co/RC5hRC5LYO +06/15/2018,Politicians,@marcorubio,I admit I had initial reservations about Jim Bridenstine to head up @NASA but I am VERY impressed with the job he i… https://t.co/OdIvghLz7d +06/15/2018,Politicians,@marcorubio,Great news! We were able to increase to this years funding for #StopSchoolViolenceAct programs to $100 million. Ide… https://t.co/Fmkm9SrJSk +06/15/2018,Politicians,@marcorubio,This is an EXCELLENT move by ⁦@realDonaldTrump⁩ most of these technology products from #China are made from technol… https://t.co/QPume6suwp +06/15/2018,Politicians,@marcorubio,Hollywood celebrities never pass up the chance to attack American conservatives but they make their millions on mov… https://t.co/7o4RiUsMJU +06/15/2018,Politicians,@marcorubio,"The heart of the just ponders a response, +but the mouth of the wicked spews evil. Proverbs 15:28" +06/14/2018,Politicians,@marcorubio,"I wonder why this isn’t receiving more focus in the media reports: “In addition,we identified instances where FBI e… https://t.co/cHnLgjSM7B" +06/14/2018,Politicians,@marcorubio,@MariaCorinaYA @SecPompeo .@MariaCorinaYA esta con el pueblo de #Venezuela en su lucha por la libertad. Maduro y su… https://t.co/dPErrMvJuN +06/14/2018,Politicians,@marcorubio,.@MariaCorinaYA stands with the people of #Venezuela in the fight for freedom. Maduro and his cronies should think… https://t.co/wEjuipYRJ6 +06/14/2018,Politicians,@marcorubio,Good for ⁦@AmericanAir⁩ ⁦@united⁩ & ⁦@Delta⁩ for standing up to #China bullying & refusing to cave to demand they c… https://t.co/7CVeZRJQTQ +06/14/2018,Politicians,@marcorubio,I strongly support the great Americans at @FBI⁩ but the conduct of the senior officials outlined in this report has… https://t.co/RQolMBarf5 +06/14/2018,Politicians,@marcorubio,CFIUS is process used to potentially block attempts by foreign companies to do deals which pose a threat to our nat… https://t.co/xVOLOrEEbu +06/14/2018,Politicians,@marcorubio,Continuing to talk about how harsh the penalties are on #ZTE for violating sanctions is a effort to distract from t… https://t.co/7WhC7Ca2Yh +06/14/2018,Politicians,@marcorubio,"Today, we celebrate Old Glory and the 243rd birthday of our U.S. Army. Let us never forget the freedom our flag rep… https://t.co/ze5edNydvd" +06/14/2018,Politicians,@marcorubio,B While in #Florida legislature I voted for a bill that allowed state to suspend professional licenses of those who… https://t.co/yDHG5dYSNJ +06/14/2018,Politicians,@marcorubio,"Some media reactions to @potus comments on #KJU are fair, may others are complete overreaction. But lost in the dai… https://t.co/OtDY4nxNqQ" +06/14/2018,Politicians,@marcorubio,"As I said yesterday in Foreign Relations hearing still time for a peaceful path forward in #Nicaragua + +1. Allow N… https://t.co/Q2GQL5LIjx" +06/14/2018,Politicians,@marcorubio,Alarming increase in #Suicide is a reminder that we have serious problems in our country that are much deeper than… https://t.co/nQreVqnzEL +06/14/2018,Politicians,@marcorubio,"Why are we still giving so much money to the ⁦@UN⁩ ? The General Assembly vote was not just anti #Israel bias,it is… https://t.co/duuVc4BJaY" +06/14/2018,Politicians,@marcorubio,Timeline important. #China wants #NorthKorea talks to be step by step process of simultaneous actions which are syn… https://t.co/vJxk2yNkfe +06/14/2018,Politicians,@marcorubio,"The naive believe everything,but the shrewd watch their steps. Proverbs 14:15" +06/13/2018,Politicians,@marcorubio,BTW @Apple who is very proud of how they are making it harder for American law enforcement to collect evidence from… https://t.co/zQaHTGLMrG +06/13/2018,Politicians,@marcorubio,The next time someone asks “what’s the difference between what China telecomms do & what ours do?” show them this a… https://t.co/cMNjv3TkF0 +06/13/2018,Politicians,@marcorubio,3 months ago blocked foreign purchase of ZTE’s top U.S. supplier b/c it would endanger natl security & cede U.S. pr… https://t.co/EVuwimhPXe +06/13/2018,Politicians,@marcorubio,The current deal with #ZTE does indeed make them pay a big price for violations of #NorthKorea & #Iran sanctions. B… https://t.co/GyokukwRWf +06/13/2018,Politicians,@marcorubio,"Important to remember #ZTE is about 2 seperate issues. +1: Sanctions violations. The penalties imposed for that are… https://t.co/vJBP2I8zQV" +06/13/2018,Politicians,@marcorubio,Watch @FoxNews @AmericaNewsroom at 10AM will discuss how role of @potus & congress on #NorthKorea are different. He… https://t.co/Sgf6u99YfZ +06/13/2018,Politicians,@marcorubio,#EVerify is a very important reform. And while it is true that we struggle to find U.S. workers for many agricultu… https://t.co/ULTa5UjjLn +06/13/2018,Politicians,@marcorubio,Yes the video @potus produced & played for #KJU is unusual. But he was meeting with a different kind of guy. The vi… https://t.co/pTLmy0RpgB +06/13/2018,Politicians,@marcorubio,Drug lord @dcabellor knows full well he has lost many of the things he bought under other names with stolen money.… https://t.co/WvF34p7M2i +06/13/2018,Politicians,@marcorubio,Now is a good time to start getting rid of your #Huawei investments. Because while #ZTE poses a very serious threat… https://t.co/IgML1aPkyZ +06/13/2018,Politicians,@marcorubio,I bless the LORD who counsels me;even at night my heart exhorts me. I keep the LORD always before me; with him at m… https://t.co/yK8dkTNtWe +06/12/2018,Politicians,@marcorubio,"One more thing about KJU. While I know @potus is trying to butter him up to get a good deal, #KJU is NOT a talented… https://t.co/y8ORxuzbye" +06/12/2018,Politicians,@marcorubio,.@NickKristof I’m uncomfortable with suspending military exercises & if this becomes permanent in exchange for noth… https://t.co/qG0lYchgsB +06/12/2018,Politicians,@marcorubio,Any “deal” that doesn’t ultimately bring to an end these atrocities under #KimJongun is not a good deal. https://t.co/jDL3vHDvaD +06/12/2018,Politicians,@marcorubio,Should be skeptical of any deal with #KJU Limits to future strategic weapons instead of eliminating current program… https://t.co/KfuJ74Q5r0 +06/12/2018,Politicians,@marcorubio,"Presidents meeting with #KJU exposed incredible hypocrisy of many in media. When Obama did these things,he was desc… https://t.co/qvL5e7Pttc" +06/12/2018,Politicians,@marcorubio,I too have concerns about how all this with #NorthKorea will turn out. But I don’t recall all the “experts” critici… https://t.co/At5KNDgjad +06/12/2018,Politicians,@marcorubio,"It is true @Potus did what previous administration didn’t do,punish #ZTE for sanctions violations. But this is abou… https://t.co/99UGZAbIoA" +06/12/2018,Politicians,@marcorubio,"How long, O people, will you be hard of heart? Why do you love what is worthless, chase after lies? Psalms 4:3" +06/11/2018,Politicians,@marcorubio,Great news! Our bipartisan amendment restoring penalties on #ZTE is included in the #NDAA bill the Senate will be a… https://t.co/3snOqfbRgB +06/11/2018,Politicians,@marcorubio,The message from latest @ChickfilA incident is this: “Your church can still teach traditional marriage (which by th… https://t.co/BRpJe5Woys +06/11/2018,Politicians,@marcorubio,.@ChickfilA isn’t denying service to anyone. But if you eat there you must be attacked by the twitter mob b/c owner… https://t.co/j8yhdWE8Ig +06/11/2018,Politicians,@marcorubio,This lunacy has gone too far. The CEO of @Twitter bullied into apology for patronizing @ChickfilA because owners su… https://t.co/lBGtZ211Ii +06/11/2018,Politicians,@marcorubio,I STRONGLY support trans-Atlantic alliance & wish ⁦@POTUS⁩ would have dealt with #China before turning to trade wit… https://t.co/qSv0Jzvte8 +06/11/2018,Politicians,@marcorubio,Our #TaiwanTravelAct signed by @potus pushes for more high level visits. Opening of the compound in #Taiwan is perf… https://t.co/6yNXFpKrSo +06/11/2018,Politicians,@marcorubio,"Blessed are the merciful, for they will be shown mercy. Blessed are the clean of heart,for they will see God. Bless… https://t.co/47sYrg8oHM" +06/10/2018,Politicians,@marcorubio,"Thorns & thistles it shall bear for you,& you shall eat the grass of the field. By the sweat of your brow you shall… https://t.co/14jkhnNR5V" +06/08/2018,Politicians,@marcorubio,Many valid points here. Our allies do impose unfair tariffs & non-tariff barriers on us. But we should first have w… https://t.co/sOIyKg34b4 +06/08/2018,Politicians,@marcorubio,One point is missed in this analysis. If #China tech companies use protection given by govt to grab dominance in 5… https://t.co/gSaBzvVtOg +06/08/2018,Politicians,@marcorubio,Here’s some advice for all of the recent high school and college graduates out there. https://t.co/E6KWzbbqaJ +06/08/2018,Politicians,@marcorubio,Please read this story about an amazing family in need of a helping hand & the incredible people who helped them. A… https://t.co/zcMtFr3O8d +06/08/2018,Politicians,@marcorubio,"God indeed is my salvation; I am confident and unafraid. +For the LORD is my strength and my might,and he has been my salvation. Isaiah 12:2" +06/07/2018,Politicians,@marcorubio,"What Kim Jong-un wants from summit is to be viewed as an important world leader that is reasonable,affable & equal… https://t.co/K9IjxBYTO3" +06/07/2018,Politicians,@marcorubio,"As I said 2 days ago,U.S. not going to stand by & allow human rights abusers & those undermining democracy in… https://t.co/TZHCRVd7EJ" +06/07/2018,Politicians,@marcorubio,"If the apps you download to your phone, like Facebook, can access your private information, imagine what a company… https://t.co/WnYa6v0S7l" +06/07/2018,Politicians,@marcorubio,"After todays decision to give #ZTE a pass, we have introduced a bipartisan amendment to restore penalties on ZTE, &… https://t.co/wpbtmOhKNx" +06/07/2018,Politicians,@marcorubio,U.S. has had to evacuate some employees from #China after complaints of mystery illness. And we should have every r… https://t.co/BfYqSAMRP6 +06/07/2018,Politicians,@marcorubio,Next time ⁦@CommerceGov⁩ says problem with #ZTE was only about sanctions violations & that all they make are phones… https://t.co/cmAeFzxOY2 +06/07/2018,Politicians,@marcorubio,Why is #ZTE and #Huawei a big threat? #China already on verge of becoming global leader in 5G. Will have full scale… https://t.co/xXPD95YwVJ +06/07/2018,Politicians,@marcorubio,I’m rooting for the Knights. How about you? https://t.co/5xKA2aEDbn +06/07/2018,Politicians,@marcorubio,I assure you with 100% confidence that #ZTE is a much greater national security threat than steel from Argentina or Europe. #VeryBadDeal +06/07/2018,Politicians,@marcorubio,This “deal” with #ZTE may keep them from selling to Iran and North Korea. That’s good. But it will do nothing to ke… https://t.co/0mAL3UnQoG +06/07/2018,Politicians,@marcorubio,"Hear, O Israel! The LORD is our God, the LORD alone! +Therefore, you shall love the LORD, your God, with your whole… https://t.co/xY04pzRw7P" +06/06/2018,Politicians,@marcorubio,When all is said & done the attacks in #China will prove to be broader than initially suspected & potentially relat… https://t.co/ObDdQ0EIyv +06/06/2018,Politicians,@marcorubio,"Me reuní con líderes de la Coalición Universitaria de Nicaragua y Migueliuth Sandoval, Viuda de Gahona, hablamos so… https://t.co/OVNRuDxOqw" +06/06/2018,Politicians,@marcorubio,"I met with leaders of the Nicaraguan University Coalition and Migueliuth Sandoval, widow of Gahona, SPOKE about the… https://t.co/FtsWcOBbpN" +06/06/2018,Politicians,@marcorubio,"On this day in 1944, 160,000 fearless Allied troops led the charge to beat the reign of Nazi terror. The heroism of… https://t.co/GCw3oDp1KX" +06/06/2018,Politicians,@marcorubio,Why didn’t @facebook just reveal this data sharing deal with #Huawei months ago? And don’t compare this to deals wi… https://t.co/lBNiTe30w5 +06/06/2018,Politicians,@marcorubio,Go here now & donate whatever you can to make @KristiNoem the next Governor of #SouthDakota https://t.co/mIRB6V4pE0 +06/06/2018,Politicians,@marcorubio,.@KristiNoem is a very special person and leader. She is going to be a great Governor for her state. We need to hel… https://t.co/Yq2RUzeXJK +06/06/2018,Politicians,@marcorubio,"RT @JonThompsonGOP: Republicans nominated three strong female candidates for governor tonight: @KristiNoem in SD, @KimReynoldsIA in Iowa, &…" +06/06/2018,Politicians,@marcorubio,#China on the verge of winning again. They mock us by appointing someone from another sanctioned company as the sup… https://t.co/fOgu3YiysH +06/06/2018,Politicians,@marcorubio,The images from #Guatemala after the volcanic eruption are heartbreaking. Today I will be speaking to @StateDept to… https://t.co/5guiAD0kxm +06/06/2018,Politicians,@marcorubio,Very happy for @willainsworthAL With your help he will be the next https://t.co/lD6AKJtTUE of #Alabama https://t.co/GZH1vLNfOe +06/06/2018,Politicians,@marcorubio,This is great news. @RepKristiNoem is going to be a GREAT Governor of #SouthDakota now let’s go help her win in Nov… https://t.co/nulc6AHC5U +06/06/2018,Politicians,@marcorubio,"Show us favor, LORD, show us favor, for we have our fill of contempt. Our souls are more than sated with mockery fr… https://t.co/J6RecEi0am" +06/06/2018,Politicians,@marcorubio,This situation in #Nicaragua has now reached a very dangerous point & could escalate rapidly. Expect to see it take… https://t.co/p7flhp34d6 +06/06/2018,Politicians,@marcorubio,This could be a very big problem. If @Facebook granted Huawei special access to social data of Americans this might… https://t.co/bBeHUv4jA6 +06/05/2018,Politicians,@marcorubio,My batting average on #UFvsFSU jokes is below the Mendoza line but another swing here: cheering on @FSU_Softball as… https://t.co/fh6Razxscf +06/05/2018,Politicians,@marcorubio,.@KristiNoem is a great friend in Congress and has always been a strong supporter. I encourage you to vote for her… https://t.co/EVLWscyCDt +06/05/2018,Politicians,@marcorubio,Alabama - @willainsworthAL will make a great Lieutenant Governor and is a hardworking member of #TeamMarco. Get out… https://t.co/YxmsUACMSc +06/05/2018,Politicians,@marcorubio,"Republicans in Iowa have the chance to nominate a strong, principled conservative for Secretary of Agriculture toda… https://t.co/LR9v3RPu4e" +06/05/2018,Politicians,@marcorubio,"We will continue to try to help the people of #Haiti but as I warned over a year ago, their government leaders refu… https://t.co/9krMhfBzY5" +06/05/2018,Politicians,@marcorubio,A veteran of the U.S. Army tried to spy for #China according to @FBI https://t.co/JwWidKc93Q +06/28/2018,Politicians,@SecretaryCarson,Was just joined by @FLGovScott to announce that @HUDgov has approved a disaster recovery plan to help Floridians re… https://t.co/zwLFi88Yus +06/28/2018,Politicians,@SecretaryCarson,"I'm excited that Youngstown, Ohio is going to be a part of @HUDgov's EnVision Center Demonstration.… https://t.co/4NdQa8wZls" +06/27/2018,Politicians,@SecretaryCarson,"Yesterday, I held an EnVision Center round table where we discussed the different services that will be available t… https://t.co/ofhwBO8me4" +06/26/2018,Politicians,@SecretaryCarson,"Educational Advancement, Economic Empowerment, Health and Wellness, and Character and Leadership Development are go… https://t.co/sgSe0UKsNE" +06/26/2018,Politicians,@SecretaryCarson,"Shernitta Jefferson is an inspiration, she went from homeless to homeownership because she had vision for what she… https://t.co/Clbv3LFQkL" +06/26/2018,Politicians,@SecretaryCarson,Excited to work with @DC_Housing and their Executive Director Tyrone Garret on increasing self-sufficiency for HUD-… https://t.co/THmAooneZI +06/26/2018,Politicians,@SecretaryCarson,Participating in an EnVision Center roundtable in Washington DC. Hearing about the great services that will help HU… https://t.co/RGDTIyemLq +06/25/2018,Politicians,@SecretaryCarson,Today HUD approved $5 Billion Texas disaster recovery plan. https://t.co/1C8lDvI6b1 https://t.co/GytqjsUmaR +06/21/2018,Politicians,@SecretaryCarson,I enjoyed speaking to the summer class of White House interns ab leadership. There are many lessons from the medica… https://t.co/mI6irmvvh0 +06/20/2018,Politicians,@SecretaryCarson,I appreciate the opportunity to be with this outstanding group of civil servants at the SES Orientation. At @HUDgov… https://t.co/6b3LpuDWt3 +06/19/2018,Politicians,@SecretaryCarson,This morning I spoke at the #Section3 National Training Conference. I am optimistic that we can bring the promise o… https://t.co/vIXmatkOSm +06/19/2018,Politicians,@SecretaryCarson,We are taking a targeted approach—with each #EnVisionCenter acting as a centealized hub to support four pillars of… https://t.co/99cxrkTGHH +06/19/2018,Politicians,@SecretaryCarson,I’m in Ft. Worth this morning hosting an #EnVisionCenter roundtable with local officials and community stakeholder… https://t.co/HY8QmUZIS6 +06/14/2018,Politicians,@SecretaryCarson,While in Milwaukee I had an opportunity to meet with @MayorOfMKE to discuss the EnVision Center initiative and othe… https://t.co/r4q4JnRch3 +06/14/2018,Politicians,@SecretaryCarson,This afternoon I visited with the wonderful employees at our Milwaukee field office. Thank you for your service!… https://t.co/p9FfTzPrgB +06/14/2018,Politicians,@SecretaryCarson,"As a demonstration of our commitment to the families we serve, to empower Americans to lead self-sufficient lives,… https://t.co/YevPALbcVV" +06/14/2018,Politicians,@SecretaryCarson,Opportunity Zones will improve economic development and entrepreneurship in some of the most economically distresse… https://t.co/PukAdGGWUI +06/14/2018,Politicians,@SecretaryCarson,This afternoon I spoke to the Association of Gospel Rescue Mission’s annual conference about some of the exciting t… https://t.co/jT7Xwjjzn3 +06/14/2018,Politicians,@SecretaryCarson,"Earlier this year, @hudgov gave efforts to end homelessness across the country a boost by making $2 billion availab… https://t.co/pHqv7U8XVC" +06/14/2018,Politicians,@SecretaryCarson,".@hudgov is committed to working with our federal, state, and local partners to end homelessness. Organizations lik… https://t.co/PeXLQZQkSi" +06/14/2018,Politicians,@SecretaryCarson,"Today I’m in Milwaukee, Wisconsin visiting the Guest House of Milwaukee, which provides homeless services and drug… https://t.co/HVm3WwqOSm" +06/13/2018,Politicians,@SecretaryCarson,"I believe in an America where people care about their neighbors, have a strong sense of community, and a well-defin… https://t.co/fKrkVVp8JX" +06/12/2018,Politicians,@SecretaryCarson,We are praying for your success and the success of the United States https://t.co/mUIJ7ifCw2 +06/11/2018,Politicians,@SecretaryCarson,"Today @HUDgov, @TheJusticeDept & @EPA announced a historic agreement with the nation's largest public housing auth… https://t.co/Bfwwu3rrYZ" +06/08/2018,Politicians,@SecretaryCarson,RT @VP: POWERFUL new video from @ONDCP on the #OpioidEpidemic that has touched nearly all Americans. @POTUS is committed to doing all he ca… +06/08/2018,Politicians,@SecretaryCarson,RT @WhiteHouse: These young Americans’ true stories are a warning against the allure of prescription drug abuse. Watch the ad campaign from… +06/08/2018,Politicians,@SecretaryCarson,"Empowering people means taking a holistic approach—helping them with a roof over their heads, but also access to h… https://t.co/AkeIhA3AS5" +06/08/2018,Politicians,@SecretaryCarson,"Today I’m speaking at the @FaithandFreedom Policy Conference. At @HUDgov, we work to help millions of people experi… https://t.co/UTh1UBTSsw" +06/08/2018,Politicians,@SecretaryCarson,Pleased to join @FaithandFreedom and their annual policy conference. https://t.co/oqcFmc1MQ8 +06/08/2018,Politicians,@SecretaryCarson,RT @HUDgov: Congratulations to HUD’s OCIO team who was awarded $20 million for its mainframe application migration acceleration proposal!!… +06/08/2018,Politicians,@SecretaryCarson,"As a recent @BPC_Bipartisan study points out, an extreme case of the health and housing relationship comes with hom… https://t.co/yaAipV6vqY" +06/08/2018,Politicians,@SecretaryCarson,"As a physician, I’ve seen the lasting impacts that lead exposure can have upon the health of children. At @HUDgov,… https://t.co/q5avECtROP" +06/08/2018,Politicians,@SecretaryCarson,RT @BPC_Bipartisan: Live at 10: A conversation with @SecretaryCarson. https://t.co/T8NiZYQuPx +06/07/2018,Politicians,@SecretaryCarson,"Today, @ONDCP & @WhiteHouse unveiled the first set of public awareness ads focused on preventing young adults from… https://t.co/WU02QE3PTs" +06/07/2018,Politicians,@SecretaryCarson,"Speaking at the ground breaking of the Inkster, MI #EnVisionCenter. Together we can help HUD-assisted households cl… https://t.co/XDjhcaxsUN" +06/07/2018,Politicians,@SecretaryCarson,It was a joy to meet with some of the residents who will utilize the services offered at the #EnVisionCenters here… https://t.co/1BKOPjF8J5 +06/07/2018,Politicians,@SecretaryCarson,We are working with the Detroit Housing Commission to launch the second #EnVisionCenter in Detroit. Our people are… https://t.co/WWAfW3z6gS +06/07/2018,Politicians,@SecretaryCarson,RT @HUDgov: #EnVisionCenters Character and Leadership Development connects residents with mentors and helps them climb the ladder of opport… +06/07/2018,Politicians,@SecretaryCarson,"RT @HUDgov: EnVision Centers will provide residents with access to training opportunities, so they may develop a skill set that can lead to…" +06/07/2018,Politicians,@SecretaryCarson,We’re planting a tree at the first #EnVisionCenter launch to celebrate the growth that’s going to happen here. It’s… https://t.co/SobDJNzmH5 +06/07/2018,Politicians,@SecretaryCarson,"RT @HUDgov: To help HUD-assisted families achieve self-sufficiency, residents will have access to educational advancement where they will h…" +06/07/2018,Politicians,@SecretaryCarson,"The EnVision Center demonstration will drive collaboration across federal agencies, state & local governments, non-… https://t.co/rPn7E9FvQu" +06/07/2018,Politicians,@SecretaryCarson,It’s an exciting day here in Detroit. I’m joined by @MayorMikeDuggan @ESPNDrLou & Jerome Bettis for the launch of t… https://t.co/7J9KDEHJRv +06/07/2018,Politicians,@SecretaryCarson,The EnVision Centers will offer HUD-assisted households access to support services that can help them achieve self-… https://t.co/tXyp3Oi9Qo +06/07/2018,Politicians,@SecretaryCarson,"This morning in Detroit, I announced dozens of new EnVision Centers in 17 communities around the country. Learn mor… https://t.co/9C8vtcDE5u" +06/07/2018,Politicians,@SecretaryCarson,About to take the stage with this extraordinary group to launch the #EnVisionCenter demonstration in Detroit. https://t.co/FZtlH5lSON +06/07/2018,Politicians,@SecretaryCarson,I’m with @FOX2News here in Detroit talking about the launch of the first #EnVisionCenter demonstration. Tune in to… https://t.co/knYLfGYt2a +06/07/2018,Politicians,@SecretaryCarson,I’m starting off the morning talking with the @foxandfriends team to announce the @HUDgov EnVision Center initiative. Tune in! +06/05/2018,Politicians,@SecretaryCarson,"The strength of America lies in our democratic values, our civility to one another; where people care about their n… https://t.co/ey0WpRaicr" +06/05/2018,Politicians,@SecretaryCarson,Today I visited with our staff at the Hartford Field Office. They’re doing great work serving the housing needs of… https://t.co/XpJaNUcRVu +06/05/2018,Politicians,@SecretaryCarson,In Hartford today I heard some of the concerns of the residents impacted by the housing issues in this community. I… https://t.co/hNrQtlbU9G +06/04/2018,Politicians,@SecretaryCarson,"RT @HUDgov: In the first 500 days of the Trump Administration, HUD allocated more than $35 billion through the CDBG-Disaster Recovery progr…" +06/04/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD made $2 billion available to support of thousands of local homeless assistance programs nationwide through the Continuum of… +06/04/2018,Politicians,@SecretaryCarson,"RT @HUDgov: During the Trump Administration's first 500 days, more than $1 billion in funding has been allocated to combat the opioid crisi…" +06/04/2018,Politicians,@SecretaryCarson,Today I talked with local stakeholders and government officials who have been working on the crumbling foundation i… https://t.co/AsrYaBzetB +06/04/2018,Politicians,@SecretaryCarson,Today I visited the Perracchio family to see firsthand the kind of crumbling foundation problem that’s been impact… https://t.co/BNILs2E5ix +06/01/2018,Politicians,@SecretaryCarson,Thanking the @HUDgov staff in Greensboro for the great work they do everyday. Our @HUDgov staff doesn’t hear thank… https://t.co/5NuvbMP07z +06/01/2018,Politicians,@SecretaryCarson,Today marks the beginning of National Homeownership Month. You can read @POTUS proclamation here:… https://t.co/PJEi4BdeRZ +06/01/2018,Politicians,@SecretaryCarson,"Today, @HUDgov is announcing the Protect Our Kids!— a Department-wide review & effort to ensure compliance with reg… https://t.co/aa9et4K3aR" +06/01/2018,Politicians,@SecretaryCarson,"I approach this endeavor, lead and other home hazard prevention, with a tremendous sense of purpose, with an enormo… https://t.co/Hb3KI3IJOR" +06/01/2018,Politicians,@SecretaryCarson,Each dollar invested in lead hazard control grants returns at least $17 to the nation. This return is from decrease… https://t.co/Ahxuv78kwu +06/01/2018,Politicians,@SecretaryCarson,".@HUDgov, along with our partners and grantees, is focused on lead and their areas of great concern— asthma prevent… https://t.co/1BZ9uuPZUv" +06/01/2018,Politicians,@SecretaryCarson,.@hudgov is launching a Protect Our Kids! campaign to enforce lead safety rules during #HealthyHomesMonth. I’m in G… https://t.co/NPZXxN9fN7 +06/01/2018,Politicians,@SecretaryCarson,With @RepTedBudd and @GHCGreensboro discussing how making homes healthier is a team effort... we all need to partic… https://t.co/h6ekpuyu0A +06/01/2018,Politicians,@SecretaryCarson,In Greensboro kicking of Healthy Homes Month with @RepTedBudd and @GHCGreensboro https://t.co/NPdDDRmyBw +05/30/2018,Politicians,@SecretaryCarson,"Once a soldier, sailor, airman, marine, or coastguardsman completes his or her tour of duty, we commit to assisting… https://t.co/GleWH1jVQ5" +05/30/2018,Politicians,@SecretaryCarson,.@HUDgov has been working closely with medical centers and the @DeptVetAffairs to address the chronically homeless… https://t.co/5eDngasnpJ +05/30/2018,Politicians,@SecretaryCarson,Veterans experiencing homelessness are the same extraordinary Americans we honor before they had a housing need. We… https://t.co/dyhyGI4UPH +05/30/2018,Politicians,@SecretaryCarson,"We need our veterans to flourish. We need their contributions, their skills, and their love for our country. They a… https://t.co/9lidLddxbS" +05/28/2018,Politicians,@SecretaryCarson,"On Memorial Day, we honor those who we lost while they served us, their remarkable legacy. It inspires us to imitat… https://t.co/fCoO7M99kb" +05/28/2018,Politicians,@SecretaryCarson,"We express our eternal gratitude to the Gold Star Mothers and Wives across our country, who alone know the true cos… https://t.co/PZj3ZCl98B" +05/28/2018,Politicians,@SecretaryCarson,"The lives of our fallen veterans give increased vitality to our national creed, to our founding documents, and to o… https://t.co/tbRUYSvMg4" +05/28/2018,Politicians,@SecretaryCarson,"Today, we pay tribute to the heroes of each generation whose patriotism was complete, whose devotion to duty absolu… https://t.co/KYgHBClSvA" +05/23/2018,Politicians,@SecretaryCarson,RT @SecretaryCarson: Just called to congratulate Brian Montgomery for being confirmed as our new @FHAgov Commissioner https://t.co/8DRcYcNw… +05/23/2018,Politicians,@SecretaryCarson,Just called to congratulate Brian Montgomery for being confirmed as our new @FHAgov Commissioner https://t.co/8DRcYcNwLx +05/23/2018,Politicians,@SecretaryCarson,Thanks to @NAHBhome for hosting me today. Together we can create more affordable housing https://t.co/6gBBXzWml2 +05/23/2018,Politicians,@SecretaryCarson,Talking @NAHBhome’s Chairman Randy Noel about how @HUDgov is focused on empowering Section 3– a job training rule t… https://t.co/lo6uLaySjm +05/23/2018,Politicians,@SecretaryCarson,A priority of our at @HUDgov and @FHAgov is to update our antiquated IT system. First time homebuyers shouldn’t be… https://t.co/mstMpiGdnF +05/23/2018,Politicians,@SecretaryCarson,We are tackling over zealous application of the false claims act for nonmaterial mistakes. We will still ensure the… https://t.co/Hn88QYS4M5 +05/23/2018,Politicians,@SecretaryCarson,I pledge here today to help our nation’s home builders construct more affordable housing https://t.co/c3BnMVMUGL +05/23/2018,Politicians,@SecretaryCarson,"The President’s directive to remove two regulations for every new regulation will help home builders, by reducing h… https://t.co/6uNbgOxZES" +05/23/2018,Politicians,@SecretaryCarson,Speaking to @NAHBhome about how we need to reduce the regulatory burdens that hinder home builders from doing what… https://t.co/EtcZfmH41s +05/21/2018,Politicians,@SecretaryCarson,"At @HUDgov, we’ve established a task force to prevent wasteful spending. Our new CFO is overseeing the team that’s… https://t.co/ZLWogq2Mbu" +05/18/2018,Politicians,@SecretaryCarson,I spoke with the Council for National Policy meeting about @HUDgovs's recent rent reform proposal. The current syst… https://t.co/Qoyxqm8HRu +05/18/2018,Politicians,@SecretaryCarson,This afternoon I had the pleasure of addressing the graduates of @divinemercyuniv at their commencement ceremony. C… https://t.co/tOtCXDUqoI +05/18/2018,Politicians,@SecretaryCarson,I enjoyed talking to my friend @JimDeMint at today's Council for National Policy meeting. We discussed how at… https://t.co/dW4HxXnKGh +05/18/2018,Politicians,@SecretaryCarson,I spoke with the Council for National Policy meeting about @HUDgov's recent rent reform proposal. The curent system… https://t.co/kmXkqo54nW +05/18/2018,Politicians,@SecretaryCarson,"At the Laffer Associates Conference, I discussed @HUD’s goals for increasing economic opportunity among those we se… https://t.co/uwngL2iID1" +05/17/2018,Politicians,@SecretaryCarson,Today I’m pleased to speak to the Laffer Associates annual conference about some of the things we’re working on at… https://t.co/n9ObjoL6Df +05/16/2018,Politicians,@SecretaryCarson,"RT @HUDDepSec: Today, I called Puerto Rico Governor @RicardoRossello, U.S. Virgin Islands @GovernorMapp, Representatives @Jenniffer2012 @St…" +05/16/2018,Politicians,@SecretaryCarson,Today @FHAgov extended our foreclosure moratorium for residents with FHA-insured mortgages in Puerto Rico & the U.S… https://t.co/7tbClLGq9w +05/16/2018,Politicians,@SecretaryCarson,Talking to @nardotrealtor’s about the importance of the #FairHousingAct and thanking them for all they do to suppor… https://t.co/CFbi95Pz5j +05/16/2018,Politicians,@SecretaryCarson,Talking to @nardotrealtor about how @TheJusticeDept and @HUDgov are working together to prevent sexual harassment i… https://t.co/kxphkUXqmT +05/15/2018,Politicians,@SecretaryCarson,https://t.co/3f0dm1vuhM +05/14/2018,Politicians,@SecretaryCarson,"During my trip to West Virginia today, I stopped by @HUDgov’s Charleston field office to meet with our staff. Thank… https://t.co/5XKy6rKOOI" +05/14/2018,Politicians,@SecretaryCarson,.@RecoveryPointWV is doing tremendous work in the fight against the #OpioidEpidemic. I’m so pleased to have visited… https://t.co/bMva4J3J8T +05/14/2018,Politicians,@SecretaryCarson,.@RepAlexMooney @RepEvanJenkins and I visited Rea of Hope today and this organization truly lives up to its name. T… https://t.co/cSEKIhI1hU +05/14/2018,Politicians,@SecretaryCarson,"This morning I had the opportunity to visit with some of the ladies at Rea of Hope. Among other things, this recove… https://t.co/UerkzjYjy3" +05/14/2018,Politicians,@SecretaryCarson,Our people are our greatest resource. I’m with @RepAlexMooney and @RepEvanJenkins learning about the great work… https://t.co/OfoK0frWKz +05/14/2018,Politicians,@SecretaryCarson,This morning I’m at @HarmonyHouseWV with @RepEvanJenkins and @RepAlexMooney discussing some of the impacts of the O… https://t.co/RtJfUUGQ0j +05/10/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD to Seek Public Comment on 'Disparate Impact' Regulation. Learn more → https://t.co/sesnuk7XCz. https://t.co/7vwdU7oZlg +05/09/2018,Politicians,@SecretaryCarson,"Last month, I proposed the Making Affordable Housing Work Act to launch a conversation about how we can fix the way… https://t.co/yIg5L8Dfau" +05/09/2018,Politicians,@SecretaryCarson,"Some of America’s federal rental-assistance programs have become barriers to upward mobility, and we at @HUDgov wan… https://t.co/dwasdhp3DX" +05/09/2018,Politicians,@SecretaryCarson,"RT @WhiteHouse: While our men and women in uniform serve our country on base or abroad, their spouses face many challenges to build familie…" +05/09/2018,Politicians,@SecretaryCarson,We are prioritizing various @HUDgov initiatives that seek to provide pathways to economic opportunity: EnVision Ce… https://t.co/i2oe6vuTM1 +05/09/2018,Politicians,@SecretaryCarson,Today I’m discussing a few of @HUDgov’s priorities with @NECouncil at their Spring Conference https://t.co/WVxcgn3P59 +05/09/2018,Politicians,@SecretaryCarson,At @HudGov our goal is to help people achieve their American Dream. Our recent rent reform proposal is one way we a… https://t.co/CCsbDN0sDC +05/09/2018,Politicians,@SecretaryCarson,"There are better, simpler, and less intrusive ways to administer @HUDgov’s rental assistance programs. The current… https://t.co/vdnHSXbtq8" +05/07/2018,Politicians,@SecretaryCarson,"As we kick off #PSRW, I want to thank all of our @HUDgov family for the work they do to improve the lives of our fe… https://t.co/1P6eWJjnZW" +05/03/2018,Politicians,@SecretaryCarson,Taking questions @CLPHA about how we at @HUDgov are collaborating with other federal agencies to get better outcome… https://t.co/sADXaqbSfJ +05/03/2018,Politicians,@SecretaryCarson,.@HUDgov looks forward to continuing to collaborate with @CLPHA to improve outcomes for the families we serve #HousingIs2018 +05/03/2018,Politicians,@SecretaryCarson,.@HUDgov has recently proposed a set of rent reforms to improve the way we assist the more than 4.5 million people… https://t.co/1X3TZ7oswY +05/03/2018,Politicians,@SecretaryCarson,I have been on the road over the past several days talking to those supported by @HUDgov and one common thing I’ve… https://t.co/75TcJyZ1LP +05/01/2018,Politicians,@SecretaryCarson,I enjoyed speaking with our @HUDgov staff at the Little Rock field office. Thank you for the important work you do… https://t.co/QirqRWUUHu +05/01/2018,Politicians,@SecretaryCarson,"While in Arkansas, I had the chance to visit with a few public housing residents. Our people are our most valuable… https://t.co/5Cn4yoRT78" +05/01/2018,Politicians,@SecretaryCarson,Today I’m in Arkansas with @RepFrenchHill to discuss housing issues impacting the community. https://t.co/nm1jk83LE2 +04/30/2018,Politicians,@SecretaryCarson,I spoke with the @DailySignal about @HUDgov's recent rent reform proposal and some of our other priorities at the a… https://t.co/yxNkzPEweG +04/28/2018,Politicians,@SecretaryCarson,Fair housing is more than a symbolic gesture along the long road to justice. Fair housing is an essential element t… https://t.co/jx63A1n22K +04/28/2018,Politicians,@SecretaryCarson,I am delighted to be with the Maryland Commission on Civil Rights. Tonight we celebrate the golden anniversary of t… https://t.co/ByhWCS1G1W +04/28/2018,Politicians,@SecretaryCarson,During this #FairHousingMonth I had the opportunity to tour exhibits at the Reginald F. Lewis Museum in Baltimore… https://t.co/Xf2k35i1G6 +04/28/2018,Politicians,@SecretaryCarson,"Among our priorities @HUDgov, we’re focusing on policies that help people get out of poverty and empower them towar… https://t.co/uu6BKyzvxg" +04/28/2018,Politicians,@SecretaryCarson,This evening I’m with @Heritage discussing some of the work we’re doing at @HUDgov to serve the American people. https://t.co/ZtfDefqEaW +04/25/2018,Politicians,@SecretaryCarson,Visiting Las Vegas’ Courtyard Homeless Resource Center. They are connecting homeless people with resources that can… https://t.co/m9YnxMCKSr +04/25/2018,Politicians,@SecretaryCarson,Visited Veterans Village a great example of how the govt at all levels the private sector and non profits came toge… https://t.co/twP3DCRG2P +04/25/2018,Politicians,@SecretaryCarson,Toby has graduated from high school while being at the Shannon West Youth Center. It’s amazing what these kids can… https://t.co/br2WNv3Qxv +04/25/2018,Politicians,@SecretaryCarson,Since arriving at the Shannon West Center Daniel has been promoted at his job. He is actively climbing his ladder o… https://t.co/SUd7SH8rI6 +04/25/2018,Politicians,@SecretaryCarson,Doing a round table with leaders and residents from Help of Southern Nevada Shannon West Homeless Youth Center. It’… https://t.co/7gXGKD1e9u +04/25/2018,Politicians,@SecretaryCarson,Touring the Help of South Nevada Shannon West Homeless Youth Center to see the great work they are doing to give ki… https://t.co/ff83jHUgvD +04/25/2018,Politicians,@SecretaryCarson,Was great to do lunch with @mayoroflasvegas she is passionate about increasing access to affordable housing https://t.co/fhuYmawOcW +04/25/2018,Politicians,@SecretaryCarson,"Just met with leaders from Clark County, to discuss how we can work together to promote self-sufficiency and help… https://t.co/9rloAgP5xj" +04/25/2018,Politicians,@SecretaryCarson,Today we’re introducing a proposal to reform decades-old rent rules under the Making Affordable Housing Work Act. L… https://t.co/oacmvNmHJb +04/25/2018,Politicians,@SecretaryCarson,RT @HUDgov: HUD is proposing the Making Affordable Housing Work Act. This would change how we help millions of families to afford their ren… +04/25/2018,Politicians,@SecretaryCarson,"RT @HUDgov: Today, @SecretaryCarson proposed to reform decades-old rent rules under the Making Affordable Housing Work Act. Learn more http…" +04/25/2018,Politicians,@SecretaryCarson,Thanking the hard working @HUDgov staff in Nevada. They are invested in helping solve the affordable housing crisis https://t.co/BsEXrTdGOl +04/25/2018,Politicians,@SecretaryCarson,.@HUDgov is positioned to usher in a new era of cooperation with the Manufactured Housing industry. We understand h… https://t.co/Ani4yCp60t +04/25/2018,Politicians,@SecretaryCarson,Manufactured housing accounts for nearly 10% of the market and even a greater share in rural areas. @HUDgov can hel… https://t.co/tDGzxPORgV +04/25/2018,Politicians,@SecretaryCarson,I can tell you without qualification that this Administration appreciates all the manufactured housing industry is… https://t.co/mKv1T8UsuK +04/25/2018,Politicians,@SecretaryCarson,The Manufacrured Housing industry is so important. They are a big part of the solution to the affordable housing cr… https://t.co/ClS375iwG4 +04/25/2018,Politicians,@SecretaryCarson,Thanks for joining me @StracnerHUD. There is great work being done. We must work to amplify it and ensure that more… https://t.co/SiDp7aDuZY +04/24/2018,Politicians,@SecretaryCarson,Participating in a round table with leaders from throughout LA on how we can work together to end homelessness. It’… https://t.co/sWMQO7NwY7 +04/24/2018,Politicians,@SecretaryCarson,Here at South Los Angeles Trade-Tech Community College they are preparing people to work on the expanding light rai… https://t.co/2IP6bUknZT +04/24/2018,Politicians,@SecretaryCarson,Touring some of the job training that’s available at the Los Angeles Trade Tech Community College. This is how we c… https://t.co/azB2R07bkm +04/24/2018,Politicians,@SecretaryCarson,Touring & doing a round table at the Los Angeles Trade-Tech Community College. They are a lead agency for @HUDgov’s… https://t.co/Nl3dd8Ymgx +04/24/2018,Politicians,@SecretaryCarson,Toured the Downtown Women’s Center in LA to witness firsthand the great work they are doing for the community to fi… https://t.co/CnNlq0qdNc +04/24/2018,Politicians,@SecretaryCarson,Mrs Smith is an inspiration. She is formerly homeless and now gives back to the Downtown Women’s Center. Her backgr… https://t.co/HogpXLhtUQ +04/24/2018,Politicians,@SecretaryCarson,Talking to Mrs Smith about how with the help of the Downtown Women’s Center in LA helped her overcome homelessness… https://t.co/U1YU2etZnA +04/24/2018,Politicians,@SecretaryCarson,Touring the Dream Center Foundation in LA. They do great work to help the vulnerable recieve the support they need… https://t.co/UNgATWMGGD +04/24/2018,Politicians,@SecretaryCarson,@kathrynbarger @HUDgov It was a pleasure to meet you. Let’s continue to work together +04/24/2018,Politicians,@SecretaryCarson,Thanking the hardworking @HUDgov staff in the LA office. They work tirelessly to help tackle the local housing cha… https://t.co/LOoTMkRpjt +04/24/2018,Politicians,@SecretaryCarson,It’s a delight to have @StracnerHUD show me around LA today. Together @HUDgov must work with local governments and… https://t.co/4UDQfaUlQD +04/24/2018,Politicians,@SecretaryCarson,Talking with @MRTempower & @SupJaniceHahn about how we all have to work together to end the affordable housing cris… https://t.co/p3kce1Vh68 +04/24/2018,Politicians,@SecretaryCarson,I’m in LA today to work with @kathrynbarger on solutions to our homelessness issue and affordable housing crisis. T… https://t.co/bouGzuAoqF +04/23/2018,Politicians,@SecretaryCarson,"RT @StracnerHUD: ""Despite all the good intentions, our nation’s welfare system continues to encourage a culture of dependency rather than s…" +04/23/2018,Politicians,@SecretaryCarson,"I am grateful for the direct work with those here at @NAHROnational to make services possible, whether it is public… https://t.co/FKBhFeE9MX" +04/23/2018,Politicians,@SecretaryCarson,This morning I’m with @NAHROnational discussing my ongoing priorities for @HUDgov and how we are working together t… https://t.co/OYHLiPVl5s +04/21/2018,Politicians,@SecretaryCarson,Participating in a round table on the impact of lead in our communities. @HUDgov provides funding to help homes rem… https://t.co/7ENuGraRw4 +04/21/2018,Politicians,@SecretaryCarson,"RT @HoustonHealth: Since September 2017, more than 86 homes have been referred to the Houston Health Department’s lead abatement and health…" +04/21/2018,Politicians,@SecretaryCarson,Touring homes in Houston that are going through lead remediation thanks to @HUDgov lead grants. As a doctor I under… https://t.co/3BLLbavQnY +04/21/2018,Politicians,@SecretaryCarson,RT @HoustonHealth: “You are the people that are making a difference.” @SecretaryCarson @HUDgov #LeadFree #HoustonHealth https://t.co/4a8cQ9… +04/21/2018,Politicians,@SecretaryCarson,"These victims of Harvey experienced more than $200k in damage. They lost cars, keepsakes, and many are still strugg… https://t.co/kDXeS45o88" +04/21/2018,Politicians,@SecretaryCarson,W/ @johnculberson meeting Texans who were outside of the flood plan but experienced two plus feet of water in their… https://t.co/gqjwsFzaN8 +04/21/2018,Politicians,@SecretaryCarson,It‘s a joy to volunteer at the Houston Food Bank https://t.co/VVDxBeXfFm +04/21/2018,Politicians,@SecretaryCarson,I’m volunteering at the Houston Food Bank this morning. Volunteerism is a part of what makes America special. We al… https://t.co/ashOPR1iCf +04/21/2018,Politicians,@SecretaryCarson,Talking with @SylvesterTurner this morning at the Houston Food Bank about how we can help Houstonians climb the lad… https://t.co/zZnsbwOn8B +04/21/2018,Politicians,@SecretaryCarson,.@hudgov is going to stand with @SylvesterTurner and Houston as they continue to rebuild from Harvey. HUD has award… https://t.co/Akj4LfIW5A +04/20/2018,Politicians,@SecretaryCarson,.@chucknorris’s @KICKSTART_KIDS helps children develop positive character traits & has helped increase graduation r… https://t.co/80VzJ4w7FM +04/20/2018,Politicians,@SecretaryCarson,Talking with @chucknorris about how @KICKSTART_KIDS and @HUDgov’s EnVision Centers program can stop generational po… https://t.co/bIxWpgxYBf +04/20/2018,Politicians,@SecretaryCarson,.@GHPartnership is interested in how they can work with @hudgov on the long term recovery of Houston after Harvey https://t.co/j6Phwo0H0b +04/20/2018,Politicians,@SecretaryCarson,Talking with the @GHPartnership about how we can work together through public private partnerships to help Houston… https://t.co/BB9Cx07PRW +04/20/2018,Politicians,@SecretaryCarson,Listening to how @HUDgov helped these families find housing by using Housing Choice Vouchers after they lost their… https://t.co/kgdvRnszWO +04/20/2018,Politicians,@SecretaryCarson,.@HUDgov helped these families find housing after their old homes were uninhabitable due to Harvey. The resilience… https://t.co/icIYWpPZ0e +04/20/2018,Politicians,@SecretaryCarson,Listening to families who @HUDgov helped after their homes were flooded during Harvey https://t.co/7Cxf9ye0iG +04/20/2018,Politicians,@SecretaryCarson,Thanking Anthony for driving through water during Harvey to save people in need of rescue due to the floods. Anthon… https://t.co/iIHDkY7xiy +04/20/2018,Politicians,@SecretaryCarson,Thanking @MattressMack and the incredible staff of Gallery Furniture for sheltering 400 people during Hurricane Har… https://t.co/iTY1yaxHNB +04/20/2018,Politicians,@SecretaryCarson,Thanking @MattressMack for all the work he did during Harvey to help those impacted. He is a example of the selfles… https://t.co/49TRUMY8YA +04/20/2018,Politicians,@SecretaryCarson,.@MattressMack showing me where he houses people impacted by Harvey https://t.co/LvZybUGmt0 +04/20/2018,Politicians,@SecretaryCarson,Was a pleasure to be with you @HUDgov will be with as Texas rebuilds https://t.co/N8tMLIuBhb +04/20/2018,Politicians,@SecretaryCarson,Just paid my respects to former First Lady Barbara Bush. My thoughts and prayers are with the entire Bush family. https://t.co/GrPzLkXAdL +04/20/2018,Politicians,@SecretaryCarson,It’s great to see our next generation is so patriotic #USA We are going to work hard to make sure their future is b… https://t.co/DVIFz1jkS7 +04/20/2018,Politicians,@SecretaryCarson,".@HUDgov will stand with the state of Texas as it rebuilds. Texans, not Washington, will determine how the rebuildi… https://t.co/EpsiSZnr8P" +04/20/2018,Politicians,@SecretaryCarson,.@HUDgov’s total investment in Texas post Harvey is $10 billion https://t.co/u6kNoS5ewH +04/20/2018,Politicians,@SecretaryCarson,Excited to be here https://t.co/JNlSjsTmBz +04/20/2018,Politicians,@SecretaryCarson,The first responders in Texas selflessly put others first during Harvey. https://t.co/9sfgnyGhGf +04/20/2018,Politicians,@SecretaryCarson,Chatting with @GovAbbott @SenTedCruz and @CongCulberson ahead of our CDBG-DR announcement. Texans have been resilie… https://t.co/Mk1l3xQdDQ +04/20/2018,Politicians,@SecretaryCarson,Thanking first responder in Texas for their work after Hurricane Harvey. In Texas today to award the Lone Star stat… https://t.co/9IkrwRtw0T +04/19/2018,Politicians,@SecretaryCarson,Visiting the apartments the ASAC Heart of Iowa provides mothers dealing with substance abuse issues. They really he… https://t.co/ILKR1NEIis +04/19/2018,Politicians,@SecretaryCarson,"Visiting ASAC Heart of Iowa, a location that houses and helps mothers recover from substance abuse #OpioidCrisis https://t.co/4002OAM8f9" +04/19/2018,Politicians,@SecretaryCarson,"The #OpiodCrisis is something that we all have face together. State, Federal, & local governments along with non-pr… https://t.co/cy6PfgAk5y" +04/19/2018,Politicians,@SecretaryCarson,Listening to an ASAC resident talk about how the support he is receiving here is changing his life #OpioidCrisis https://t.co/yJwHF4KLFP +04/19/2018,Politicians,@SecretaryCarson,Kicking off the opioid round table at ASAC in Cedar Rapids. To solve the #OpioidCrisis we are all going to have to… https://t.co/EZY2BXWcVz +04/19/2018,Politicians,@SecretaryCarson,Watching a video that details the great work that Area Substance Abuse Council (ASAC). Soon we will begin a round t… https://t.co/lcLQhTn353 +04/19/2018,Politicians,@SecretaryCarson,Today is the 23rd anniversary of the bombing of the Alfred P. Murrah Federal Building in #OklahomaCity. On this da… https://t.co/uEOjtQ7CMd +04/19/2018,Politicians,@SecretaryCarson,Will be in Cedar Rapids today to discuss opioid abuse and what @hudgov is doing to help stop the opioid crisis https://t.co/wetEo5UBmj +04/18/2018,Politicians,@SecretaryCarson,"Like millions of Americans, Barbara Bush was one of my mother's heroes. She will be missed." +04/18/2018,Politicians,@SecretaryCarson,All of @HUdgov's thoughts and prayers are with the Bush family. Former First Lady Barbara Bush was an example of st… https://t.co/bfyNgQoqPh +04/17/2018,Politicians,@SecretaryCarson,I took time this morning to stop by the Children’s House to read to the kids there. It’s always inspiring to see yo… https://t.co/wmNMxA2GuE +04/17/2018,Politicians,@SecretaryCarson,"RT @NSCsafety: Thank you @SecretaryCarson & @HUDDepSec Patenaude of @HUDgov for visiting ""Prescribed to Death: A memorial to the victims of…" +04/17/2018,Politicians,@SecretaryCarson,".@HUDgov has an important role to play in combatting the #opioidcrisis. Last year, approximately 25% of those treat… https://t.co/IUkggDcA4h" +04/17/2018,Politicians,@SecretaryCarson,This morning I’m humbled to visit the @NSCsafety opioid memorial” “Prescribed to Death” at the @WhiteHouse. We all… https://t.co/JhqbVAAQap +04/16/2018,Politicians,@SecretaryCarson,"I joined our dedicated Fair Housing & Equal Opportunity (FHEO) office to visit the “Opening Doors"" exhibit at… https://t.co/E1hHWGzCiP" +07/02/2018,Politicians,@JebBush,"I hope this is fake news but if not, the congress needs to take a stand. https://t.co/YmoWhsopMy" +07/02/2018,Politicians,@JebBush,No surprise here. https://t.co/44upaAFZfr +07/01/2018,Politicians,@JebBush,Mississippi schools are getting results. Credit to @PhilBryantMS @tatereeves @PhilipGunnMS. Keep getting it done!… https://t.co/0c0fjaDT0n +07/01/2018,Politicians,@JebBush,"Bobby, you made the right decision to take installments at a high % rate. Thank you for bringing a World Series to… https://t.co/8FHnk3tLoj" +07/01/2018,Politicians,@JebBush,Please thank them for their service on behalf of all of us. https://t.co/sCSlbbcPHg +07/01/2018,Politicians,@JebBush,Nicaragua’s bloodshed is worse than Venezuela’s. Where’s the international uproar? https://t.co/whuTGUFhXW +06/30/2018,Politicians,@JebBush,“Retirement costs already 44% of teacher pay in San Francisco” https://t.co/P48vI0PNLl +06/29/2018,Politicians,@JebBush,Bob Luddy has the right approach https://t.co/UtsKGfd28r +06/29/2018,Politicians,@JebBush,"@ABC Very classy, Aaron Judge." +06/29/2018,Politicians,@JebBush,Courageous story of Capital Gazette reporters getting their daily paper out after their colleagues were murdered. https://t.co/SepMTqKCFs +06/29/2018,Politicians,@JebBush,RT @RepKinzinger: The war crimes & horrific attacks are STILL happening in #Syria. We cannot turn a blind eye to the atrocities; we cannot… +06/29/2018,Politicians,@JebBush,RT @ExcelinEd: #ICYMI: @JebBush on What #SCOTUS Union Decision Means for Kids - https://t.co/OA9HA56ftC https://t.co/CwDEFDEJxu +06/29/2018,Politicians,@JebBush,⁦@SteveForbesCEO⁩ makes compelling points https://t.co/CVBenjGOy0 +06/28/2018,Politicians,@JebBush,"#JANUSvsAFSCME is an opportunity for parents, educators and reformers to overcome two of the biggest obstacles to t… https://t.co/44TbYmE4wd" +06/28/2018,Politicians,@JebBush,"RT @CNN: The Supreme Court's union decision is a real opportunity for education reform, writes @JebBush for @CNNOpinion https://t.co/gP2Ksq…" +06/28/2018,Politicians,@JebBush,Here's why the Supreme Court's union decision is a real opportunity for #edreform https://t.co/HEG1op4rHK +06/28/2018,Politicians,@JebBush,@johnrobertsFox @PressSec @SecretService This is crazy. There is no good outcome if we continue down the path of this poisonous environment. +06/28/2018,Politicians,@JebBush,How long will it be before San Fran has a brain drain because of the lack of workers? https://t.co/1iyn9Gq6WA +06/28/2018,Politicians,@JebBush,"At our best, we are bottom up country. When we lose our civic engagement, we lose the best of America. https://t.co/SfrgxcMBAd" +06/28/2018,Politicians,@JebBush,RT @RichLowry: It's funny how life works--Donald Trump may end up being the biggest boon to constitutional fidelity in a generation +06/27/2018,Politicians,@JebBush,I am hopeful that the era of teachers union bosses playing politics w/ our schools will give way to a 21st-century… https://t.co/2y0l9SWhxE +06/27/2018,Politicians,@JebBush,The rage should be against the man in the mirror. https://t.co/pn2aoEP0zU +06/27/2018,Politicians,@JebBush,Congratulations to @WalkerStapleton on a great primary win tonight! He is the proven leader Colorado needs. Onward… https://t.co/MQCVX9qL2Q +06/26/2018,Politicians,@JebBush,'This would widen the trade war tenfold': U.S. automakers say no to Trump's car tariffs via @POLITICO for iOS… https://t.co/Xg8Wr8X2lk +06/26/2018,Politicians,@JebBush,@SalenaZito No they are not. +06/26/2018,Politicians,@JebBush,Great to be with Superintendent @MarkRJohnsonNC today in Raleigh to talk about the future of education for North Ca… https://t.co/t67y8qj6GT +06/26/2018,Politicians,@JebBush,RT @ExcelinEd: Earlier today @JebBush and @MarkRJohnsonNC met with #NC policymakers to discuss bold education policies to help all students… +06/26/2018,Politicians,@JebBush,Bobby raises some good points on school choice. The U.S. broadly respects parental rights—except with regard to sch… https://t.co/DmyGkWOppe +06/26/2018,Politicians,@JebBush,President calls for patience. For how long? https://t.co/N5T9YdFSs9 +06/26/2018,Politicians,@JebBush,Sec Pompeo is reassuring. https://t.co/xEGp4IMKeG +06/26/2018,Politicians,@JebBush,Sully! Thanks to @AmericasVetDogs for this great new addition to the family! https://t.co/evsDTLo9uz +06/26/2018,Politicians,@JebBush,"Congratulations to Frank Brogan, just confirmed as assistant secretary for @usdoegov. He is a phenomenal leader, go… https://t.co/63Nc9msTKW" +06/25/2018,Politicians,@JebBush,Kudos to Senator Toomey for standing on principle. https://t.co/gwUS0SAxyx https://t.co/UXjhPVuvOM +06/25/2018,Politicians,@JebBush,"RT @RichLowry: This is not how it was supposed to work + +https://t.co/syUfx5jJZK" +06/25/2018,Politicians,@JebBush,Totally true https://t.co/vUL66JwDnD +06/25/2018,Politicians,@JebBush,Maxine Waters calls on supporters to confront Trump officials in public spaces https://t.co/nSQKlTiUFB +06/25/2018,Politicians,@JebBush,Great news on Florida's strong fiscal health. Rick Scott deserves credit for his leadership. https://t.co/aYfw6JGy4d +06/24/2018,Politicians,@JebBush,"RT @EWErickson: But bake us cakes, you bigots, or we’ll put you out of business. https://t.co/VjUC6qZq4T" +06/24/2018,Politicians,@JebBush,"1 big thing: In China, a clue to how jobs may go https://t.co/ZYPUxAuuHa" +06/23/2018,Politicians,@JebBush,RT @BarbaraBushFdn: So inspired by these teams and their dedication to creating opportunities for adult learners. #LiteracyNow https://t.co… +06/23/2018,Politicians,@JebBush,"RT @nicadispatch: Students in UNAN Managua say 2 students killed, 5 kidnapped, and 15 injured in government attacks this morning. Attacks o…" +06/23/2018,Politicians,@JebBush,The Normalization of Nazi Analogies  https://t.co/iQrENgTRbE +06/23/2018,Politicians,@JebBush,Scoring 30% on a test is enough to graduate high school in NYC https://t.co/seSpRqJjEi via @nypmetro Let’s Lower the Bar! +06/22/2018,Politicians,@JebBush,The world lost a giant in Charles Krauthammer. This brilliant and decent man was the gold standard of conservative… https://t.co/ar5EkrM03Y +06/20/2018,Politicians,@JebBush,"Refreshing message from Hollywood: ""God is real and prayer gets results."" Amen, brother. @prattprattpratt https://t.co/2CMMJxW0ma" +06/20/2018,Politicians,@JebBush,Democrats shouldn’t use children as a negotiating tool either. https://t.co/7UtG5dG6mZ +06/18/2018,Politicians,@JebBush,Tomorrow @FLGovScott heads to Puerto Rico for his 7th visit post Hurricane Maria. Governor Scott deserves credit fo… https://t.co/4y6ebFMMzt +06/18/2018,Politicians,@JebBush,https://t.co/9WlGAtXbdp +06/18/2018,Politicians,@JebBush,Children shouldn’t be used as a negotiating tool. @realDonaldTrump should end this heartless policy and Congress sh… https://t.co/mvuxTmSEfG +06/18/2018,Politicians,@JebBush,"No Country for American Locker Makers . Hopefully, clearer heads will prevail before we get into a full blown trade… https://t.co/bPiCKFY2LZ" +06/17/2018,Politicians,@JebBush,Great win! https://t.co/uhtU0SC0ep +06/16/2018,Politicians,@JebBush,"Well said: Progressive, affluent parents who send their kids to good schools shouldn’t deny others that right https://t.co/el18PS6Re8" +06/15/2018,Politicians,@JebBush,Congratulations to the 2018 Arts for Life recipients! It was an honor and joy to celebrate these fantastic young Fl… https://t.co/UO67AMF562 +06/15/2018,Politicians,@JebBush,Great. We get the Ocho here in Miami. https://t.co/FAQBEnPWJS +06/15/2018,Politicians,@JebBush,"RT @ExcelinEd: Happy #FlagDay! Today we celebrate the adoption of the flag of the United States, which happened on June 14, 1777! https://t…" +06/15/2018,Politicians,@JebBush,"RT @EWErickson: If one is wrong, the other is too. https://t.co/3cK95cz07x" +06/15/2018,Politicians,@JebBush,"RT @WalshFreedom: If this were a Democrat president saluting a military officer of one of the most brutal, tyrannical, oppressive regimes i…" +06/15/2018,Politicians,@JebBush,RT @DouthatNYT: Comey is such a great character for the drama of a declining republic: The archetypal G-Man hero gradually exposed as a pom… +06/15/2018,Politicians,@JebBush,RT @SenJohnMcCain: Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts to ac… +06/15/2018,Politicians,@JebBush,Will it be on ESPN? https://t.co/yqXonmEAKU +06/13/2018,Politicians,@JebBush,"In China, a picture of how warehouse jobs can vanish https://t.co/585SFd0Wy4" +06/12/2018,Politicians,@JebBush,"RT @CIA: I Want This Job: George H. W. Bush & the CIA + +This video retrospective on Bush's tenure as DCI was shown during a January 29, 2016…" +06/12/2018,Politicians,@JebBush,"RT @CIA: Happy Birthday, President Bush! + +In honor of President George H. W. Bush’s 94th birthday, we released 2 never-before-seen videos…" +06/12/2018,Politicians,@JebBush,"Thank you @purduemitch, for this very kind piece about my Dad on his 94th birthday. Happy birthday, @GeorgeHWBush! https://t.co/1a7BxHlDrr" +06/12/2018,Politicians,@JebBush,Mexico candidate shot while posing for selfie in latest murder of politician | World news | The Guardian https://t.co/FbAbxvKCmA +06/11/2018,Politicians,@JebBush,Their Grandparents Toppled a Dictator. Now They Are the Revolutionaries Time for Ortega to go. https://t.co/VzQykMBF6T +06/10/2018,Politicians,@JebBush,"Venezuela’s Long Road to Hell, by @MaryAnastasiaOG Well Said! https://t.co/8VSyhhuAbn" +06/09/2018,Politicians,@JebBush,How does this keep happening? https://t.co/IVGFbjK5Zt +06/08/2018,Politicians,@JebBush,RT @GeorgeHWBush: Sending our gratitude and family love on this special day to all who are helping carry forward the selfless work of one B… +06/08/2018,Politicians,@JebBush,Teen goes from Bronx homeless shelter to full-ride at MIT https://t.co/CHt4KMLnak via @nypmetro +06/08/2018,Politicians,@JebBush,Protecting our liberty as important today as it was in 1789. https://t.co/ABIMSbqm9X +06/08/2018,Politicians,@JebBush,Latin Americans Against Venezuela: The OAS takes a rare stand against the Havana-Caracas axis. There is broad conse… https://t.co/ckl9Rc9Ybx +06/08/2018,Politicians,@JebBush,What a tragedy https://t.co/IO5GGhL1fk +06/07/2018,Politicians,@JebBush,RT @dcexaminer: Jeb Bush to House GOP: Tackle immigration before November https://t.co/bLoONMqXCS https://t.co/8asyBDxlcF +06/07/2018,Politicians,@JebBush,"I don’t always do morning TV, but when I do, I prefer @SquawkCNBC, one of the more civilized members of the fourth… https://t.co/wid21Rm3eW" +06/06/2018,Politicians,@JebBush,RT @TIMEPolitics: Jeb Bush: Delaying immigration reform is a missed opportunity for Republicans https://t.co/BxIyYjsh95 +06/06/2018,Politicians,@JebBush,"Republican leadership should embrace opportunity to tackle immigration reform, not run from it. https://t.co/NXYYlTfN8S" +06/06/2018,Politicians,@JebBush,Warren's must-see catch of the night https://t.co/CZeOqWb5RN via @espnW Go Noles! +06/05/2018,Politicians,@JebBush,RT @FightExtremism: Updated CEP World Map Profiles Extremism and Counter-Extremism in 55 Countries. Check it out here: https://t.co/ccmIzmw… +06/04/2018,Politicians,@JebBush,"Thanks, @RosLehtinen!! Me too! https://t.co/twwwZDQkif" +06/04/2018,Politicians,@JebBush,Steve Klinsky and I weigh in on incredible opportunity governors have through @modernstatesed to give all students… https://t.co/8iLgo6avio +06/03/2018,Politicians,@JebBush,Kessler is right that how we measure income and GDP should be adjusted based on the new economy. https://t.co/s74DGrnbvd +06/03/2018,Politicians,@JebBush,Cool new resource: @khanacademy just launched its first ever online training just for teachers. #edreform https://t.co/t7O0w0O77A +06/03/2018,Politicians,@JebBush,Great Oaks Have Deep Roots . Jonah is such a great writer and he is so correct we need to get back to being a botto… https://t.co/d0uxWvctZg +06/02/2018,Politicians,@JebBush,"St. Patrick Weeping, Begging for Conversion: A few thoughts from his home away from home in Manhattan. https://t.co/lKWaNo2gYM" +06/02/2018,Politicians,@JebBush,Thank you Senator for staying true to conservative trade policy and understanding America’s leadership role in the… https://t.co/4VDEw2HRpE +06/02/2018,Politicians,@JebBush,I agree with Senator McCain. Good conservative policy is good politics for vulnerable Republicans in swing district… https://t.co/Xi77AzGG86 +06/02/2018,Politicians,@JebBush,Marco Rubio to King's Academy grads: 'Rebel against our modern culture' https://t.co/ludDWEUhjb via @gbennettpost Well done Senator. +06/01/2018,Politicians,@JebBush,Joy Reid apologizes after more controversial blog posts surface via @POLITICO for iOS There really is a double stan… https://t.co/Gj9PGXHWbq +06/01/2018,Politicians,@JebBush,"Florida's Disaster Preparedness Sales Tax Holiday, starting today, is a great opportunity for residents to stock up… https://t.co/5dCAQSCQaa" +06/01/2018,Politicians,@JebBush,Today is the first day of the 2018 Atlantic Hurricane Season. Get a plan! https://t.co/fpb5w9sja4 +06/01/2018,Politicians,@JebBush,RT @GeorgeHWBush: Enjoying a great book and a wonderful walk down memory lane this morning. Yet another reminder of just how lucky I have b… +05/31/2018,Politicians,@JebBush,Private schools flourishing in the “deserts” https://t.co/jCdSdVjYd2 +05/30/2018,Politicians,@JebBush,"Incredible, commendable effort by @Walmart: Walmart to offer employees a college education for $1 a day https://t.co/ZqkHdiOY7J" +05/30/2018,Politicians,@JebBush,Trump signs 'right to try' drug bill https://t.co/Ev9BWbXFFP This will save lives. +05/30/2018,Politicians,@JebBush,"Proud to support my friend Mac McNeill for Jefferson County Sheriff! A military veteran, Mac has an exceptional rec… https://t.co/j0omPsOA20" +05/28/2018,Politicians,@JebBush,Lebron is amazing. we need Lebrons in other parts of life. https://t.co/jSjcpFLQYR +05/28/2018,Politicians,@JebBush,RT @IvanDuque: Quiero darle gracias a Dios y a todos los colombianos que votaron hoy expresando su voluntad por mí y por todos los candidat… +05/28/2018,Politicians,@JebBush,Former CIA Director Gen. Michael Hayden responded with three letters: 'OMG.' https://t.co/ytFAhPl0rT via @MailOnline +05/28/2018,Politicians,@JebBush,"Martin Dempsey, the former chairman of the Joint Chiefs of Staff during the Obama ... https://t.co/33SlYehXY9 via @MailOnline" +05/28/2018,Politicians,@JebBush,"Land of the free, because of the brave. We are forever indebted to those who serve and have served, especially the… https://t.co/Wcz4uq8vYi" +05/26/2018,Politicians,@JebBush,Super-sub Bale earns Real third straight UCL crown - via @ESPN Appn WHAT A GOOOOLLLLL! https://t.co/pB7Gm3HjIf +05/26/2018,Politicians,@JebBush,"RT @GeorgeHWBush: Delighted to join the veterans, including my dear friend Gen. Brent Scowcroft, at the @AmericanLegion Post 159 monthly pa…" +05/26/2018,Politicians,@JebBush,Two great American patriots with other great patriots. https://t.co/WZ89Aq4KIn +05/26/2018,Politicians,@JebBush,"Family drug courts help addicted mothers stay clean, writes @NaomiSRiley Drug courts work. https://t.co/xEvdxVfNdg" +05/23/2018,Politicians,@JebBush,Looking forward to celebrating the Center for Education Reform's 25 years of bold leadership and relentless advocac… https://t.co/rUXDpYMCGd +05/23/2018,Politicians,@JebBush,"A Right To Try Arrives Great legislation, soon to be law. https://t.co/WjNWZZ95ad" +05/22/2018,Politicians,@JebBush,"Trump, the Six Billion Dollar Man* https://t.co/TJtpYctdLA via @WSJOpinion This is how economic growth occurs." +05/22/2018,Politicians,@JebBush,Accountability in education works #edreform https://t.co/o3T18hYoie +05/22/2018,Politicians,@JebBush,Houston Texans’ J.J. Watt to Help Pay for Sante Fe Funerals https://t.co/XTE8T0XULF Impressive but not surprising. +05/20/2018,Politicians,@JebBush,My beloved dad is in Maine. https://t.co/fu6h8Xgg9U +05/20/2018,Politicians,@JebBush,RT @MarioDB: The Venezuelan people deserve much more than today’s sham “elections.” I commend the Administration + U.S. Congress for tough… +05/20/2018,Politicians,@JebBush,RT @marcorubio: This feature in todays @NYT does an excellent job of capturing how the regime of dictator @NicolasMaduro uses access to foo… +05/20/2018,Politicians,@JebBush,"RT @RosLehtinen: Today’s election is a farce, a fraud + disrespects the ppl of #Venezuela who aspire 2 restore democratic order thru free,…" +05/19/2018,Politicians,@JebBush,"Identity politics threatens the American experiment, writes @orrinhatch Words of wisdom from Senator Hatch. https://t.co/qW1S4mHge3" +05/19/2018,Politicians,@JebBush,‘I Don’t Believe That Anymore’ Forstmann and Walton deserve our praise and thanks. https://t.co/32s7W4y1Fa +05/17/2018,Politicians,@JebBush,Congratulations to Gina Haspel. She is a patriot and will continue to serve our nation well. https://t.co/9eh2ZmPr0t +05/16/2018,Politicians,@JebBush,Gaza and Hamas https://t.co/SGK8R7Hdhf via @CFR_org +05/16/2018,Politicians,@JebBush,Seattle to Business: Drop Dead: The city taxes companies for hiring more workers. A counterproductive and dumb idea… https://t.co/yKwsRmlpah +05/16/2018,Politicians,@JebBush,"U.S. sanctions Iran’s central bank governor, alleges he funneled money to Hezbollah. Smart action taken by Treasury… https://t.co/wQb4cOqlX7" +05/16/2018,Politicians,@JebBush,"Venezuela’s crisis and Argentina’s inflation, plus entrenched corruption, are helping fuel an illicit economy worth… https://t.co/EUkWPumvqP" +05/16/2018,Politicians,@JebBush,Very cool. Thanks @HamiltonMusical team! https://t.co/I21TdBJhpC +05/15/2018,Politicians,@JebBush,Totally agree with David French. America's partisan polarization demands a federalist government. https://t.co/1CdYcB3r5D +05/10/2018,Politicians,@JebBush,Good piece by @JohnStossel. Why the Left Hates Betsy DeVos: The secretary of education is fighting government burea… https://t.co/yokeNBaOQX +05/10/2018,Politicians,@JebBush,Powerful message from @BrieIndependent on the need to focus on and engage parents in the education of their childre… https://t.co/HXRQ1ZcOlV +05/09/2018,Politicians,@JebBush,"Bret gets this right. It is important to give credit where it is due, and @POTUS deserves credit on his recent acti… https://t.co/7OKVHNcEPf" +05/09/2018,Politicians,@JebBush,Why start a charter school? @excelined shares 7 powerful examples of changemakers and their drive to expand opportu… https://t.co/ypvn1kbdwr +05/09/2018,Politicians,@JebBush,Credit to @POTUS and @SecPompeo for bringing these Americans home. https://t.co/h77YOO2gHy +05/09/2018,Politicians,@JebBush,"George Deukmejian dead at 89, public safety and law-and-order dominated two-term governor's agenda… https://t.co/wa6Hf4Nlr2" +05/08/2018,Politicians,@JebBush,Charter schools are democracy in action. #CharterSchoolsWeek https://t.co/i08TIAHecc +05/08/2018,Politicians,@JebBush,No shortage of hypocrisy among these famous parents who like their children's handpicked school but oppose educatio… https://t.co/FehIPxFGod +05/08/2018,Politicians,@JebBush,RT @BarbaraBushFdn: We hope our nation's teachers feel special all throughout #TeacherAppreciationWeek but especially today on #TeacherAppr… +05/07/2018,Politicians,@JebBush,Big thanks to @GovernorDeal for signing legislation to expand #educationalopportunities and help students find the… https://t.co/D2QOHhjrKG +05/07/2018,Politicians,@JebBush,"RT @JebBushJr: As a board member of @charteralliance and advocate for high-quality public education, I’m celebrating #CharterSchoolsWeek th…" +05/07/2018,Politicians,@JebBush,Informative look at our changing economy: High-Paying Jobs Go Begging While High School Grads Line Up for Bachelor’… https://t.co/bzjLvMPfOi +05/06/2018,Politicians,@JebBush,Kicking off National #CharterSchoolsWeek and celebrating families like Christopher Collot and his son Jayden. Check… https://t.co/eHaSpDUsG9 +05/06/2018,Politicians,@JebBush,RT @ExcelinEd: .@JebBush: Student Success is at the Heart of National #CharterSchoolsWeek - https://t.co/mlK2tEILk1 https://t.co/Gp1WnNdUW3 +05/05/2018,Politicians,@JebBush,Thanks for all of your prayers. Dad is doing well and headed home. https://t.co/Aq99DV2XDR +05/04/2018,Politicians,@JebBush,We need to ensure more students have access to high quality charter schools #edreform https://t.co/oO0RCXDtsD +05/03/2018,Politicians,@JebBush,Honored to address @UCF commencement exercises today and pay tribute to Dr. Hitt's legacy as one of the most innova… https://t.co/Ny5Y41LQKB +05/03/2018,Politicians,@JebBush,RT @ourmedschool: Governor @JebBush was instrumental in working with the Florida Legislature in approving the @UCF College of Medicine in 2… +05/01/2018,Politicians,@JebBush,Good advice from @CondoleezzaRice for @POTUS https://t.co/1uYbQe62EC +05/01/2018,Politicians,@JebBush,".@BetsyDeVosED is doing a great job advancing #edreform as a national priority. She has a heart for young people, i… https://t.co/uqkYQMCmcf" +05/01/2018,Politicians,@JebBush,We are a bottom up country. We do things better when we don’t outsource our responsibilities to DC. Policy is best… https://t.co/RlCWl4uUfL +05/01/2018,Politicians,@JebBush,RT @ExcelinEd: Our 2017 Annual Report highlights states that are reimagining & reinventing ways to boost student learning. - https://t.co… +04/27/2018,Politicians,@JebBush,Thanks @jaynordlinger for the great conversation. https://t.co/Va63HIuxV3 +04/27/2018,Politicians,@JebBush,Ramesh is right. What the British government is doing to Alfie Evans and his family is almost unbelievable. Why are… https://t.co/c6tAxTCXIM +04/27/2018,Politicians,@JebBush,Great story https://t.co/l2aNvXVX8j +04/27/2018,Politicians,@JebBush,"Senate confirmation is becoming so difficult that the government might soon be unable to function, writes Peter J.… https://t.co/i4lzFcoVC9" +04/26/2018,Politicians,@JebBush,Thanks to the @BrownUniversity community for the kind welcome and great event last evening. Our conversation is ava… https://t.co/uARXpkrosS +04/26/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: We are so thankful for your kind wishes, donations in honor of Barbara Bush and heartfelt tribute messages that you sha…" +04/26/2018,Politicians,@JebBush,"Mike Pompeo is a smart, committed, competent public servant. Glad he has been confirmed to serve as our next Secretary of State." +04/25/2018,Politicians,@JebBush,"“I promise you, 99 percent of the time, if you give parents accurate, transparent information, they will make bette… https://t.co/CYFwVdPplv" +04/25/2018,Politicians,@JebBush,Join me for a conversation with @BrownUniversity students and faculty on the role of leadership in a changing world… https://t.co/h6kn7Y1jqn +04/25/2018,Politicians,@JebBush,Thankful there are so many champions for students and for education reform in the Florida Legislature. Can't wait t… https://t.co/Y72VAaTxez +04/25/2018,Politicians,@JebBush,"RT @GeorgeHWBush: My family and I thank Mayor @SylvesterTurner, his terrific staff, @houstonpolice, @METROHouston, @SBCHouston, @StMartinsD…" +04/25/2018,Politicians,@JebBush,"In preparation for my lecture at @BrownUniversity tonight, I learned there is a ""Boston funk band"" called the ""Jeb… https://t.co/U1IVO0FskE" +04/23/2018,Politicians,@JebBush,"Wonderful, touching piece by James McBride https://t.co/GguHvB7bEd" +04/22/2018,Politicians,@JebBush,"RT @bradmeltzer: Leaving Barbara Bush’s funeral in Houston and LOVE that even now, she was still getting the best laughs. +She hugged AIDS…" +04/22/2018,Politicians,@JebBush,RT @ExcelinEd: Thank you Mrs.Barbara Bush! https://t.co/pHNBR06HAJ +04/22/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: You left each of us so much and taught us about the importance of family, about caring for everyone, about passion for…" +04/21/2018,Politicians,@JebBush,The Bush family is grateful for the thousands and thousands of expressions of condolence and love for our precious… https://t.co/Ank8RSrRyr +04/20/2018,Politicians,@JebBush,Thank you @michaelbhorn for honoring my Mother's lifelong passion for literacy https://t.co/SWFYFbpQpB +04/19/2018,Politicians,@JebBush,Florida’s Rising NAEP Scores Show Education Reforms Are Working for All Students in the State @The74 #edreform https://t.co/xEStnSaLrI +04/18/2018,Politicians,@JebBush,"RT @NBCNews: “I’m so blessed to be her son. She taught us to serve others, she taught us to be civil, she taught us to love your family wit…" +04/18/2018,Politicians,@JebBush,RT @jgm41: Herewith a statement from former President @GeorgeHWBush. https://t.co/USSq5RkD4g +04/18/2018,Politicians,@JebBush,"RT @BarbaraBushFdn: We mourn the passing of Barbara Bush, who believed that the world would be a better place if more people could read, wr…" +04/18/2018,Politicians,@JebBush,"Statement by Governor Jeb Bush on the Passing of Mrs. Barbara Bush +https://t.co/7FXQlMH9Xe" +04/17/2018,Politicians,@JebBush,RT @edreform: #ASUGSV2018 Happening now - Is There an App for That? Transforming the Lives is Low-Literate Adults Through Mobile Tech. Cell… +04/17/2018,Politicians,@JebBush,"Cool innovation from the homebuilding industry: Lennar Building Agrihood, Where Homeowners Can Share Farm Produce https://t.co/82e3aqoxLq" +04/13/2018,Politicians,@JebBush,Mitch Daniels is a true profile in leadership @purduemitch @LifeAtPurdue #edreform #highered https://t.co/WEccBkROsJ +04/12/2018,Politicians,@JebBush,This Man Expects to Run a 2:50 in the Boston Marathon on Monday via @NYTimes Amazing story! https://t.co/EEvjMUfq8x +04/12/2018,Politicians,@JebBush,"It's been 35 years since ""A Nation at Risk"" was released, and America is still plagued by an education system that… https://t.co/2E4hYezyWx" +04/11/2018,Politicians,@JebBush,Thanks to you and Senator Huffman for leading the charge to expand opportunity for Ohio families! #edreform https://t.co/DaE0qOb6jb +04/11/2018,Politicians,@JebBush,"Paul Ryan is a good and honorable man who has governed the House with strong, principled leadership. Grateful for h… https://t.co/lvp7Sdr04e" +04/11/2018,Politicians,@JebBush,Congratulations to my friend Wendy Berger on her appointment to the federal bench. I know she will continue her rec… https://t.co/iyUkyBpX8B +04/10/2018,Politicians,@JebBush,"RT @AFloridaPromise: ""By remaining focused for 2 decades on #earlyreading, #accountability for schools, rewarding great teachers & empoweri…" +04/10/2018,Politicians,@JebBush,Record Donation to https://t.co/Fm7P8E2Ya9 Makes Cryptocurrency Company a Teachers’ Pet https://t.co/t84udNbpWM +04/10/2018,Politicians,@JebBush,Preview of NAEP results coming out this morning: Orlando Sentinel: 'Something very good is happening in Florida'… https://t.co/X3kTw0800P +04/09/2018,Politicians,@JebBush,"Rick Scott has provided strong, conservative leadership for our state throughout his time as governor. Rick's exact… https://t.co/vbUbzyXDxf" +04/06/2018,Politicians,@JebBush,"We disagree about some aspects of MLK’s legacy, but the role of faith is indisputable, write Cornel West &… https://t.co/C3H7s4P1N4" +04/05/2018,Politicians,@JebBush,Billionaire @JBPritzker's top priority in Illinois: kill bipartisan scholarship program for low income students. Th… https://t.co/8MOEfMvGhl +04/05/2018,Politicians,@JebBush,Pleased with today’s ruling in favor of #publiccharterschool funding in #Florida. Big victory for educational freed… https://t.co/vdyKAbabmA +04/04/2018,Politicians,@JebBush,Great news out of College Station: @TAMU @BushSchool Rises in U.S. News & World Report Rankings https://t.co/5FiXpm8sGZ +04/04/2018,Politicians,@JebBush,A Model for Licensing Reform Let freedom ring! https://t.co/Jb3llPpqbA +04/03/2018,Politicians,@JebBush,Jim gets this right https://t.co/tGayCA1ZoE +04/03/2018,Politicians,@JebBush,The President made an excellent choice in tapping Justin Muzinich to help lead the Treasury Department. He is a man… https://t.co/mWxctwICld +04/03/2018,Politicians,@JebBush,"New Report: In 46 States, High School Graduation Requirements Aren’t Enough to Qualify for Nearby Public Universiti… https://t.co/19wwkyIUP5" +04/01/2018,Politicians,@JebBush,A very happy Easter to everyone! https://t.co/r9kBdX4OEh +03/24/2018,Politicians,@JebBush,China accuses US of ‘serious provocation’ in South China Sea https://t.co/hIyzwVUPsW via @SCMP_News These are inter… https://t.co/uoqXWfQtwA +03/24/2018,Politicians,@JebBush,Wayne Huizenga’s passing is a tremendous loss. He was an incredible man and a Florida icon. More than just a trailb… https://t.co/40repdeUNg +03/23/2018,Politicians,@JebBush,The Democrats Abandon Catholics Thank you Cardinal Dolan! https://t.co/4ty120AuhP +03/22/2018,Politicians,@JebBush,"Just spent an incredible day at @ADHUS_FAUHS. One of the most impressive schools in the nation! Students, teachers… https://t.co/EEKGViC1VH" +03/22/2018,Politicians,@JebBush,RT @GeorgeHWBush: Yesterday I was inspired by my friend John Cronin to wear these beauties from @JohnsCrazySocks marking World Down Syndrom… +03/20/2018,Politicians,@JebBush,Excited to visit with members of the @BuckleyProgram at @Yale next week! https://t.co/HchXtdiMe9 +03/19/2018,Politicians,@JebBush,America's Distracted Syria Policy Is on the Rocks | RealClearWorld https://t.co/gpKkU5zB6c +03/17/2018,Politicians,@JebBush,"Arlington, Texas replaces local bus service with Via on-demand ride-sharing https://t.co/PDuBcr5pne via @techcrunch… https://t.co/6YbUs2NSSs" +03/17/2018,Politicians,@JebBush,I hope Floridians have an opportunity to vote for a constitutional amendment that would ensure victims and their fa… https://t.co/2BSNMpoW2n +03/15/2018,Politicians,@JebBush,Absolutely heartbreaking https://t.co/nBI0g6U9xk +03/15/2018,Politicians,@JebBush,"Scott Kelly spent a year in space, and came back with different DNA than his identical twin https://t.co/FVX1xrcCcf via @nationalpost" +06/29/2018,Politicians,@gov_gilmore,"RT @librarycongress: #BaseballAmericana + +NOW OPEN! + +https://t.co/LmDKwtuCJn https://t.co/tpVsAIZwF1" +06/27/2018,Politicians,@gov_gilmore,RT @LibnOfCongress: THREE days to the opening of the #BaseballAmericana exhibit at @librarycongress. See amazing items from the Library’s b… +06/26/2018,Politicians,@gov_gilmore,RT @APTA_Transit: #TransitFactFriday #TFF https://t.co/qfpMoI9BfG +06/26/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/HH9WEQQiEb +06/26/2018,Politicians,@gov_gilmore,RT @APTA_info: Read today's @detroitnews opinion piece by APTA President and CEO Paul Skoutelas: #Transit is key to job attraction https:… +06/22/2018,Politicians,@gov_gilmore,RT @ameriopp: Tax Reform -- The Growth Code 2.0 | American Opportunity https://t.co/LfbVkI5OkC +06/22/2018,Politicians,@gov_gilmore,Make the #taxcuts permanent. A winning message for 2018. https://t.co/zKW3W1KUvO +06/19/2018,Politicians,@gov_gilmore,RT @APTA_Transit: The federal government must continue to play a leading role in public transit funding. Read why in the latest from #Voice… +06/18/2018,Politicians,@gov_gilmore,Will join @jfradioshow later this morning at 9:05am ET to discuss making President Trump's Tax Cuts permanent. List… https://t.co/DAXi5kMYao +06/14/2018,Politicians,@gov_gilmore,"RT @USArmy: Happening now at @ArlingtonNatl, a #USArmy Full Honors Wreath Laying ceremony with @ArmyChiefStaff, @SecArmy and @15thSMA in re…" +06/14/2018,Politicians,@gov_gilmore,RT @SFBART: BART put every available car into service for the Warriors parade and it paid off. Watch how BART helped a half million people… +06/14/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: the Continental Congress approves the design for a national flag, 1777 #FlagDay #otd #tih https://t.…" +06/09/2018,Politicians,@gov_gilmore,RT @ameriopp: Investing in #transit is essential to economic growth. https://t.co/ZuVcToAuvk +06/08/2018,Politicians,@gov_gilmore,"RT @WaltonCaps: ZERO WINS TO GO, THE WASHINGTON CAPITALS ARE STANLEY CUP CHAMPIONS!" +06/07/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: Trump Has A Historic Opportunity For Peace On N. Korean Peninsula: https://t.co/43W1kwHq1…" +06/06/2018,Politicians,@gov_gilmore,"RT @DeptofDefense: On June 6, 1944, 160,000+ Allied troops landed at #Normandy, a heavily fortified stretch of French coastline to initiate…" +06/06/2018,Politicians,@gov_gilmore,"RT @SecPompeo: 74 years ago, U.S. & Allied troops landed in Normandy to begin the liberation of Europe. #DDay was the turning point in the…" +06/06/2018,Politicians,@gov_gilmore,Tune in @jfradioshow at 9:05am ET to the Commander of Common Sense - John Fredericks. John and I will discuss the u… https://t.co/BM30wKWcdv +06/06/2018,Politicians,@gov_gilmore,Listen in to @jfradioshow this morning. I will join the show at 9:05am ET. +06/05/2018,Politicians,@gov_gilmore,"RT @APTA_Transit: #Publictransit is easy, even when playing in the #StanleyCupFinals! Just ask @TJOshie77 . + +""It was great. It was actually…" +06/05/2018,Politicians,@gov_gilmore,Time to move forward! #transittuesday @APTA_Transit @APTA_info @aptapolicylab https://t.co/rDWqiji1CL +06/05/2018,Politicians,@gov_gilmore,"RT @gohrt_com: #DidYouKnow Access to public transportation gives people transportation options to get to work, go to school, visit friends,…" +06/03/2018,Politicians,@gov_gilmore,RT @Denver4VA: Thank you to everyone for the overwhelming support and congratulations. I’m honored to be your nominee. Big thank you to all… +06/03/2018,Politicians,@gov_gilmore,A Nation’s infrastructure is a measure of its greatness! @APTA_Transit @APTA_info +05/31/2018,Politicians,@gov_gilmore,RT @FTA_DOT: Private Investment Project Procedures (PIPP) Final Rule describes new procedures to encourage private involvement in transit p… +05/31/2018,Politicians,@gov_gilmore,"⚡️ “Crowds flock to capture the best photo of Manhattanhenge” + +https://t.co/iWeB31v5hN" +05/30/2018,Politicians,@gov_gilmore,"Virginia: Say ""No"" to Medicaid Expansion and More Taxes! @AFPVA The latest Growth PAC commentary:… https://t.co/SZARDDawbT" +05/30/2018,Politicians,@gov_gilmore,Thanks for the time on your show this morning to discuss this important topic for Virginia and the nation.… https://t.co/W8nFeWrfE1 +05/30/2018,Politicians,@gov_gilmore,"Virginia: Say ""No"" to Medicaid Expansion and More Taxes! +https://t.co/ioBsFpXnhH" +05/30/2018,Politicians,@gov_gilmore,Tune in this morning to the John Fredericks Radio Network @jfradioshow - I will join the show at 7:05. Talking Medi… https://t.co/Oav4V4q1sX +05/29/2018,Politicians,@gov_gilmore,"Tune in tomorrow morning (Wed., May 30th at 7:05am ET) @jfradioshow - We will discuss Medicaid expansion in Virgini… https://t.co/Q2BCEjKLZP" +05/29/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/tFkpZ4L63a Former Va Governor, Jim Gilmore: After A Year Of Investigat…" +05/26/2018,Politicians,@gov_gilmore,"RT @usmissiongeneva: At #WHA71, Assistant Secretary Moley @State_IO condemned the draft decision on health conditions in #Palestine and #Go…" +05/25/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly:On North Korea, Keep Sending The Right Message. The North Koreans are objecting to J… https://t.co/f9KbhjWxuI" +05/25/2018,Politicians,@gov_gilmore,"Say ""No"" to #MedicaidExpansion in #Virginia. Follow the lead of @AFPVA. +https://t.co/C5XO6og1qO" +05/25/2018,Politicians,@gov_gilmore,RT @APTA_Transit: We have reached another Transit Fact Friday. Be safe and enjoy the long weekend! #TFF https://t.co/LcpagqX3kz +05/25/2018,Politicians,@gov_gilmore,"RT @ameriopp: Soldiers Place 230,000 US Flags at Arlington National Cemetery | NBC4 Washington https://t.co/jvwc7bTQlY via @nbcwashington" +05/25/2018,Politicians,@gov_gilmore,The latest A/O Newsletter focuses on the N. Korea situation. +05/25/2018,Politicians,@gov_gilmore,"RT @MichaelLeePope: From the @librarycongress: Spectators at #MemorialDay services in @ArlingtonNatl amphitheater, May 1943 #MemorialDayWee…" +05/25/2018,Politicians,@gov_gilmore,RT @MichaelLeePope: Researchers at @VTAgEcon say exporting used clothing and worn textiles is extremely valuable to low-income countries wh… +05/25/2018,Politicians,@gov_gilmore,"RT @librarycongress: What is your go-to #baseball food? + +Our #BaseballAmericana exhibit opens on June 29 and we’re celebrating all things…" +05/25/2018,Politicians,@gov_gilmore,"RT @VVMF: As many are making their way to Washington, D.C. to recognize the sacrifices and contributions made by our veterans, let us never…" +05/24/2018,Politicians,@gov_gilmore,RT @johnmcguire56: My wife Tracy and I enjoyed our time at @gov_gilmore and Roxanne Gilmore’s home for the James River Republican women’s f… +05/24/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/IZiqMA0hXQ Vice Admiral Lee Gunn, USN (Ret.) - Va. Can Be A Leader In…" +05/24/2018,Politicians,@gov_gilmore,RT @jfradioshow: Speaker Kirk Cox: There Needs To Be More Sense Of Urgency On The Budget: https://t.co/2GQszMHuoO via @YouTube +05/24/2018,Politicians,@gov_gilmore,RT @markknoller: Today at the WH. Pres hosts East Room ceremony to present the Medal of Honor to retired Navy SEAL Master Chief Britt Slabi… +05/23/2018,Politicians,@gov_gilmore,"RT @markknoller: ""We have made zero concessions to Kim Jong-un to date, and have no intentions of doing so,"" said @SecPompeo” in testimony…" +05/23/2018,Politicians,@gov_gilmore,RT @FoxNews: Arizona college plants 10K flags to honor the fallen for Memorial Day https://t.co/sxWb3uR6IX +05/23/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: Today, President Trump welcomed @NASCAR Cup Series Champion @MartinTruex_Jr and team to the White House! https://t.co/hLDuC…" +05/22/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly:On North Korea, Keep Sending The Right Message. The North Koreans are objecting to J… https://t.co/fstpwwhCiW" +05/22/2018,Politicians,@gov_gilmore,Later today we'll be releasing our latest newsletter and discussing the potential USA - N. Korean Summit and other… https://t.co/pqBl9sAita +05/22/2018,Politicians,@gov_gilmore,RT @jfradioshow: Coming up next on crazy FBI spyware @CLewandowski_ 8:35; on North Korea @gov_gilmore 9:05 live https://t.co/tIUUQaX1Hp +05/22/2018,Politicians,@gov_gilmore,Will join @jfradioshow later this morning at 9:05am ET to discuss N. Korea. Listen Live: https://t.co/d8G96eNEDm +05/22/2018,Politicians,@gov_gilmore,RT @SpeakerRyan: 67% of Americans believe now is a good time to find a good-paying job—the highest percentage in 17 years. Our thriving eco… +05/21/2018,Politicians,@gov_gilmore,https://t.co/LMH9rKZ2Al +05/16/2018,Politicians,@gov_gilmore,"The more we grow, the more we share. Learn about public transit and other projects at Infrastructure Week 2018 (May… https://t.co/pYgFbm0ZJU" +05/15/2018,Politicians,@gov_gilmore,Infrastructure jobs are good jobs! Learn about the industry at Infrastructure Week 2018 (May 14-21) https://t.co/RjMnlOqENv +05/14/2018,Politicians,@gov_gilmore,A foundation in infrastructure is a foundation in jobs. Learn about federal investment at Infrastructure Week Week… https://t.co/FFZEgsxx8l +05/14/2018,Politicians,@gov_gilmore,"RT @APTA_info: #InfrastructureWeek means jobs, building our community, and means an investment in tomorrow. It is #timetobuild our future.…" +05/14/2018,Politicians,@gov_gilmore,Investment is needed. Learn about infrastructure needs at Infrastructure Week 2018 (May 14-21) https://t.co/Ib8LvcwY1L +05/10/2018,Politicians,@gov_gilmore,@ameriopp Here's to another great #InfrastructureWeek in 2018 @InfraWeek +05/10/2018,Politicians,@gov_gilmore,@ameriopp Transit creates and sustains great jobs all over America. @APTA_info @APTA_Transit @InfraWeek +05/10/2018,Politicians,@gov_gilmore,"RT @ameriopp: In its 6th year, Infrastructure Week is a coalition-led effort. This year Infrastructure Week is May 14th through 21st. https…" +05/10/2018,Politicians,@gov_gilmore,RT @ameriopp: 87 percent of #publictransit trips impact the economy.Trillion Dollar Infrastructure Proposals Could Create Millions of Jobs… +05/10/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/1OBAhsKXmk +05/10/2018,Politicians,@gov_gilmore,"RT @librarycongress: We’re talkin' #baseball & want to hear from YOU! Here is the 2nd question in our #BaseballAmericana conversation: + +Wha…" +05/10/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: ""golden spike"" joins transcontinental railroad at Promontory Point, Utah Territory, 1869 #otd #tih h…" +05/08/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: Last month, the economy added 164,000 new jobs as the unemployment rate fell to 3.9%, cracking 4% for the first time since…" +05/08/2018,Politicians,@gov_gilmore,"RT @WhiteHouse: President Trump was in Cleveland, OH on Saturday talking with local residents about the impact of his Dec. tax cuts legisla…" +05/08/2018,Politicians,@gov_gilmore,"RT @librarycongress: How did YOU become a baseball fan? + +Join the great American conversation during the 9-week countdown to our #Baseball…" +05/08/2018,Politicians,@gov_gilmore,Thank you @VFRWomen for a wonderful evening! https://t.co/3VntAc1mq9 +05/07/2018,Politicians,@gov_gilmore,RT @ameriopp: The State of American Foreign Policy. A/O's 6-part series of essays on ideas to improve our foreign policy. https://t.co/nqWO… +05/07/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/u5MQtl8zZY Former Va Governor, Jim Gilmore: Logan Act, Iran Deal, Mike…" +05/07/2018,Politicians,@gov_gilmore,RT @andrew5047: “What kind of cities do we want to live in?” Listening to @gabe_klein at #APTABus18. There are many ways to answer the ques… +05/07/2018,Politicians,@gov_gilmore,"Hope to see you at the ""Infrastructure Week Rooftop Reception"" in DC https://t.co/7KQCm7UZV6 via @Eventbrite" +05/07/2018,Politicians,@gov_gilmore,RT @jfradioshow: Too much fun: #GodzillaOfTruth coming up #JFRS @DaveBratVA7th 8:05; @JohnWhitbeck 8:35 (oh this will be fun!); @CarlHigbie… +05/04/2018,Politicians,@gov_gilmore,"BCG | To achieve ambitious employment goals, planners must adopt a ""jobs-centric"" approach for prioritizing investm… https://t.co/v0tMWDLA0y" +05/04/2018,Politicians,@gov_gilmore,"RT @APTA_info: ‘Wrench time’ ratchets up: @wmata workers 34% more productive in rebuilding #transit infrastructure, GM says https://t.co/ic…" +05/04/2018,Politicians,@gov_gilmore,"RT @FTA_DOT: June 6 is TCRP DAY, aimed at showcasing how research helps the transit industry & how transit professionals can get involved h…" +05/03/2018,Politicians,@gov_gilmore,RT @librarycongress: The 9-week countdown to our #BaseballAmericana exhibit begins! Baseball is a great community & you’re a part of it. Re… +05/03/2018,Politicians,@gov_gilmore,@librarycongress I became a lifelong NY Yankees fan as a young boy in the mid 1950s when their Triple A team played… https://t.co/sO7ZT7o3f8 +05/03/2018,Politicians,@gov_gilmore,A/O Global Intelligence Weekly: Some Brief Updates On Our Current National Security Condition.... https://t.co/jw36XltZie +05/03/2018,Politicians,@gov_gilmore,Rebuilding our public transportation infrastructure by investing in public transit to promote economic growth w/ co… https://t.co/KDpOjzXtU9 +05/02/2018,Politicians,@gov_gilmore,Editorial: A back-to-basics look at Virginia's budget. Virginia spends most of its money on core services: social w… https://t.co/sad2bnDhNE +05/01/2018,Politicians,@gov_gilmore,RT @LibnOfCongress: On this day 229 years ago George Washington delivered his first inaugural address. Did you know the @librarycongress ha… +05/01/2018,Politicians,@gov_gilmore,RT @ameriopp: ICYMI: The Latest A/O Global Intelligence Weekly from @ameriopp from @gov_gilmore https://t.co/eyUzK5vyON +04/27/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: Union General, 18th US President & successful memoirist U.S. Grant born, 1822 #otd #tih https://t.co…" +04/26/2018,Politicians,@gov_gilmore,"RT @APTA_info: Discover practical #transit solutions from eight new Transit Cooperative Research Program reports, sign up for a free May 3…" +04/26/2018,Politicians,@gov_gilmore,ICYMI: A Blueprint for National Security & @ameriopp's Global Intelligence Newsletter Archive! https://t.co/cW0dNpGCAq +04/24/2018,Politicians,@gov_gilmore,RT @jfradioshow: Congresswoman Barbara Comstock: More Jobs Will Be Available Under The Trump Economy: https://t.co/QbpmVZvJzl via @YouTube +04/24/2018,Politicians,@gov_gilmore,"RT @jfradioshow: I added a video to a @YouTube playlist https://t.co/hpPuHIMYey Former Va Governor, Jim Gilmore: Virginians Want To Be Supp…" +04/24/2018,Politicians,@gov_gilmore,"RT @APTA_info: ""@PurpleLineMD Construction Already Sparking Suburban Maryland Office Renaissance,"" reports @Bisnow https://t.co/lwmukABCQr…" +04/24/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: Happy Birthday to us! President John Adams approves establishment of the Library of Congress, 1800 #…" +04/23/2018,Politicians,@gov_gilmore,The United States must be clear that the North Koreans must eliminate their nuclear program. https://t.co/zh8K5d7Ati +04/23/2018,Politicians,@gov_gilmore,@jfradioshow @TimHugo @SpeakerCox @DaveBratVA7th @BarbaraComstock @JobCreatorsUSA Will be #TruckingTheTruth with… https://t.co/MfY6OTcLHY +04/23/2018,Politicians,@gov_gilmore,RT @jfradioshow: Great show today #JFRS #TruckingTheTruth Coming up @TimHugo 7:05; @SpeakerCox 7:35; @DaveBratVA7th 8:05; @BarbaraComstock… +04/20/2018,Politicians,@gov_gilmore,"RT @VP: Congrats Rep Bridenstine on being confirmed as the next @NASA Administrator! Under @POTUS, America will lead in space once again. W…" +04/20/2018,Politicians,@gov_gilmore,RT @RepTomGarrett: DUE TODAY: Our #VA05 offices in @CvilleCityHall and @cityofdanville are accepting submissions for our 2018 Congression… +04/20/2018,Politicians,@gov_gilmore,RT @LincolnsCottage: #getyouamuseumthatcandoboth https://t.co/G8VfLC4Gph +04/20/2018,Politicians,@gov_gilmore,RT @APTA_info: Last chance to register for next hour's free #TCRP webinar on private #transit services and a discussion of ways they may af… +04/19/2018,Politicians,@gov_gilmore,"RT @APTA_Transit: Just over 2 years ago, Congress passed the FAST Act, the first long-term #transportation bill in a decade. See how the #F…" +04/19/2018,Politicians,@gov_gilmore,"RT @librarycongress: Today in History: battles of Lexington & Concord during American Revolution, 1775 #otd #tih https://t.co/H1VeNfUMcm ht…" +04/17/2018,Politicians,@gov_gilmore,The Supreme Court should not reverse internet sales tax law...@quill @NetChoice @GeorgeWill https://t.co/0beKtX5B7c +04/17/2018,Politicians,@gov_gilmore,"RT @ShariBolouri: @gov_gilmore was Chair of the national advisory Commission on electronic Commerce, charged with making recommendations to…" +04/17/2018,Politicians,@gov_gilmore,RT @MineForSale: NetChoice Calls on U.S. Supreme Court to Uphold Current Internet Sales Tax Laws #mining https://t.co/NTNwaIrKYK +04/17/2018,Politicians,@gov_gilmore,"RT @NetChoice: While we wait for oral arguments to start, take a look at our new op-ed, by NetChoice President Steve DelBianco, ""#Amazon wo…" +04/17/2018,Politicians,@gov_gilmore,Discussing online retail at US Supreme Court. Decision expected in June. https://t.co/CbnJpO3F7e +04/17/2018,Politicians,@gov_gilmore,At Supreme Court with former Congressman Chris Cox discussing online retail issues. https://t.co/OQv6OScKuy +04/17/2018,Politicians,@gov_gilmore,RT @lawrencehurley: And on Tuesday the court hears arguments in this big case on sales taxes & online commerce: South Dakota urges Supreme… +04/17/2018,Politicians,@gov_gilmore,RT @PeteWilliamsNBC: I awaken from my long Twitter nap to preview Tuesday's Supreme Court case on Internet sales taxes. https://t.co/5WUg3… +04/16/2018,Politicians,@gov_gilmore,Looking forward to it! https://t.co/wYHb4HqKHL +04/16/2018,Politicians,@gov_gilmore,RT @ameriopp: The Latest @ameriopp Blueprint for America's National Security Strategy (NSS) The national security of the U.S. as set out in… +04/11/2018,Politicians,@gov_gilmore,"@APTA_info @ameriopp continues to address the importance of a federal role in public transportation, with a particu… https://t.co/08rdRqFTvr" +04/11/2018,Politicians,@gov_gilmore,"RT @APTA_info: “In late March, Congress appropriated $13.5 billion for public transit – that’s the largest annual amount of federal #transi…" +04/10/2018,Politicians,@gov_gilmore,"RT @APTA_info: APTA names Ward W. McCarragher as Vice President, Government Affairs. McCarragher has served as Majority/Minority Chief Coun…" +04/09/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: Chemical Attack In Syria: https://t.co/g9iDdQedvh via @YouTube" +04/09/2018,Politicians,@gov_gilmore,Will now join @jfradioshow this morning at 9:40am ET. Discussing the latest on Syria. https://t.co/AYFNBgqxqv +04/09/2018,Politicians,@gov_gilmore,Listen to @jfradioshow this morning. I will join John at 9:05am ET. https://t.co/AYFNBgqxqv +04/06/2018,Politicians,@gov_gilmore,RT @APTA_info: Learn more about public #transit funding in the $1.3 trillion omnibus spending bill -> https://t.co/NSQqgct3E0 #PassengerTra… +04/06/2018,Politicians,@gov_gilmore,RT @APTA_info: Federal grant to grow @Ride_BT fleet in Virginia https://t.co/IZAOwJQc7K #TransitFundingTuesday @YannRanaivo @roanoketimes @… +04/04/2018,Politicians,@gov_gilmore,"RT @librarycongress: As we remember Martin Luther King today, please take a moment to view our exhibition ""The Civil Rights Act of 1964: A…" +04/03/2018,Politicians,@gov_gilmore,RT @dcsportsbog: The Library of Congress digitized more than 1700 of Branch Rickey's scouting reports. This is awesome https://t.co/5Cdi29k… +03/30/2018,Politicians,@gov_gilmore,RT @PaulONeillYES: Baseball is back!! It’s going to be a fun year!!! +03/30/2018,Politicians,@gov_gilmore,A/O Global Intelligence Weekly: Bolton Might Be The Shot In The Arm We Need. https://t.co/uTiJyK3GdD +03/28/2018,Politicians,@gov_gilmore,RT @jfradioshow: Live today #JFRS #TruckingTheTruth on @Amtrak rolling through @AmtrakVA from Danville and Lynchburg to DC! Great views and… +03/27/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: President Trump Signs Budget Bill, Middle East & More...: https://t.co/bQ1Fm2vLpl via @Yo…" +03/26/2018,Politicians,@gov_gilmore,Must boost up our military budget. Listen now @jfradioshow https://t.co/MhlR2YEr2z +03/26/2018,Politicians,@gov_gilmore,RT @jfradioshow: We are live in Atlanta! Coming up on the #GodzillaNetwork #TruckingTheTruth today: Mike Troxel CD 6 Scam update 7:35; @Dav… +03/26/2018,Politicians,@gov_gilmore,"Listen to @jfradioshow this morning at 8:35 ET. Listen live. Download the app. +https://t.co/MhlR2YEr2z" +03/23/2018,Politicians,@gov_gilmore,"RT @APTA_info: All across America, people board public #transit 35 million times each weekday. #InvestInTransit https://t.co/R7xTMIyjdF" +03/22/2018,Politicians,@gov_gilmore,RT @APTA_info: Public #transit leaders lobby Congress to restore federal grants for new projects https://t.co/az7cC2SAVr @PittsburghPG @PGH… +03/22/2018,Politicians,@gov_gilmore,RT @bigleaguestew: The Orioles are making it cheaper (and more fun!) for families to attend games at Camden Yards https://t.co/Pn4KY2fTr4 +03/22/2018,Politicians,@gov_gilmore,"ICYMI A/O Global Intelligence Weekly: A Breakthrough In North Korea? +Yes, ladies and gentlemen -- it is a breakthro… https://t.co/qllqQs88tW" +03/22/2018,Politicians,@gov_gilmore,RT @SEPTANews: A big THANK YOU to #SEPTA crews who were out all day and night clearing platforms and sidewalks throughout our system! #Tack… +03/22/2018,Politicians,@gov_gilmore,@ameriopp @WhiteHouse Trillion Dollar Infrastructure Proposals Could Create Millions of Jobs...These jobs include j… https://t.co/PNEt8AO7wT +03/20/2018,Politicians,@gov_gilmore,RT @APTA_info: House @Transport Subcommittee Chair @RepSamGraves (R-MO) tells #APTAleg18 about upcoming legislation: “You will see the @FTA… +03/20/2018,Politicians,@gov_gilmore,RT @ChamberMoves: Glad to partner with @APTA_Transit to ensure enactment of federal infrastructure modernization bill this year!#APTALEG18… +03/15/2018,Politicians,@gov_gilmore,RT @jfradioshow: Del. Ben Cline: We Have To Be On Our Toes In The 6th District: https://t.co/B6Cw1cCH6Z via @YouTube +03/13/2018,Politicians,@gov_gilmore,"RT @ameriopp: Jobs jump by 313,000 in February, best since July 2016 #JobsReport https://t.co/9XvXGnVO4n https://t.co/qyxrYMjXx4" +03/13/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: ORANGE & BLUE: #MarchMadness tips off today! Get ready for our first game in #Charlotte on Friday as @wahoovoice and @Jef… +03/12/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: Hoos are heading to Charlotte! Take a look at the team's reaction and hear from Coach Bennett ahead of the start of #Marc… +03/12/2018,Politicians,@gov_gilmore,Have a great time John. https://t.co/aviedxNLAu +03/12/2018,Politicians,@gov_gilmore,RT @jfradioshow: Rocking on #JFRS today #TruckingTheTruth in America! @DaveBratVA7th 8:05 am; @AmericaFirstPol Curtis Ellis 8:35; @gov_gilm… +03/09/2018,Politicians,@gov_gilmore,"A/O Global Intelligence Weekly: A Breakthrough In North Korea? +Yes, ladies and gentlemen -- it is a breakthrough th… https://t.co/GTpLnZJZj0" +03/09/2018,Politicians,@gov_gilmore,RT @WaysandMeansGOP: STATEMENT: Chairman @RepKevinBrady on the February 2018 jobs report https://t.co/6iiKUi5J4i ⬇️ https://t.co/rPdQbSy3Of +03/08/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Rise and shine! Our postseason starts today vs. @LouisvilleMBB! +⏰ Noon +📍@barclayscenter +📺 ESPN & ACC Network https://t.c…" +03/06/2018,Politicians,@gov_gilmore,RT @ameriopp: A Nation’s infrastructure is a measure of its greatness. Building a Stronger America https://t.co/5KJKlczJ3A via @whitehouse +03/04/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: A picture is worth a thousand words! #Wahoowa https://t.co/3QKdmPKV7V +03/02/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: A 3⃣ at the buzzer by @Dr_Dre14 is the difference tonight #GoHoos + +👀 at the full Tale of the Tape 👇 https://t.co/qEUaFVg…" +02/27/2018,Politicians,@gov_gilmore,READ: @ameriopp's 5-Part Series on a New American Foreign Policy https://t.co/XdJjaHzdjV +02/21/2018,Politicians,@gov_gilmore,RT @VanHipp: Looking forward to #CPAC #CPAC2018! Can't wait to discuss how we can continue to make America stronger than ever. @realDonaldT… +02/20/2018,Politicians,@gov_gilmore,RT @ameriopp: READ: Jim Gilmore's 5-Part Series on a New American Foreign Policy https://t.co/x907odq8Bd +02/20/2018,Politicians,@gov_gilmore,"RT @BeschlossDC: At White House, JFK and LBJ nervously watch John Glenn’s launch into earth orbit, with Congressional leaders (Boggs, Alber…" +02/19/2018,Politicians,@gov_gilmore,"RT @librarycongress: All things presidential on our social media sites today, #PresidentsDay -- here, presidential pets from our Pinterest…" +02/16/2018,Politicians,@gov_gilmore,RT @cspanhistory: Tune into C-SPAN 3 tomorrow night at 8pm to watch @governorwilder's lecture on modern politics in Richmond at @vcu. Mr. W… +02/16/2018,Politicians,@gov_gilmore,Great show from Richmond @jfradioshow ! https://t.co/qXVBOcX72t +02/15/2018,Politicians,@gov_gilmore,RT @APTA_Transit: https://t.co/r9XgRk4oLT +02/15/2018,Politicians,@gov_gilmore,"RT @librarycongress: Getting ready for baseball? Pitchers & catchers report today! We're getting ready, too: our #BaseballAmericana exhibit…" +02/14/2018,Politicians,@gov_gilmore,RT @dcexaminer: Treasury wipes 300 IRS regulations off the books https://t.co/K9hp8OWnMH https://t.co/2kVZjfqDDy +02/12/2018,Politicians,@gov_gilmore,RT @TwitterMoments: Former US President Abraham Lincoln was born in Kentucky on this day in 1809. https://t.co/OPkiVZObnj +02/12/2018,Politicians,@gov_gilmore,Listen to @jfradioshow at 7:35am. We will be discussing the issues of the day and foreign policy. #JFRS Listen her… https://t.co/4zwCiz0GR2 +02/12/2018,Politicians,@gov_gilmore,Listen to @jfradioshow at 7:35am tomorrow (Monday). We will be discussing the issues of the day and foreign policy.… https://t.co/zr8HeADJsg +02/10/2018,Politicians,@gov_gilmore,RT @ManchesterGOP: Deepest condolences to the Cataldo family on the passing of Sam Cataldo this past weekend from a fatal car accident. He… +02/10/2018,Politicians,@gov_gilmore,RT @VirginiaSports: Here comes @UVAMensHoops for warmups! #GoHoos #Wahoowa 🔶🔷🏀 https://t.co/T1gOiI6hKp +02/10/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Pregame 🏀 falling! +Hoos vs. Hokies at 6:15. #GoHoos #Wahoowa 🔶🔷 https://t.co/QD5k1j9Q0n" +02/09/2018,Politicians,@gov_gilmore,READ: @ameriopp's 4-Part Series on a New American Foreign Policy https://t.co/XdJjaHzdjV +02/07/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: .@HurdOnTheHill: ""Jeff and Mary Marsh have owned and operated Hinee Coffee in Helotes, Texas for the past seven years.…" +02/07/2018,Politicians,@gov_gilmore,RT @APTA_info: Invest in safe transportation by investing in public #transit. #TransitFundingTuesday https://t.co/mFvJN0X1wA https://t.co/r… +02/07/2018,Politicians,@gov_gilmore,"RT @SteveScalise: Chipotle is paying its employees bonuses thanks to the Tax Cuts & Jobs Act. #TacoTuesday +https://t.co/lNZ5EhGIVJ" +02/05/2018,Politicians,@gov_gilmore,"RT @UVAMensHoops: Next Saturday, Feb. 10, @CollegeGameDay will be back in JPJ for the third time as No. 2 Virginia hosts the Commonwealth C…" +02/03/2018,Politicians,@gov_gilmore,READ: American Opportunity's 4-Part Series on a New American Foreign Policy @ameriopp #foreignpolicy… https://t.co/hHsU1cWXON +02/02/2018,Politicians,@gov_gilmore,on now with @GibsonRadio https://t.co/vOTSH7Kp5O +02/02/2018,Politicians,@gov_gilmore,Tune in to @GibsonRadio this afternoon. I'll be on at 1:15pm ET. https://t.co/vOTSH7Kp5O +02/01/2018,Politicians,@gov_gilmore,READ: A/O Global Intelligence Weekly: American Foreign Policy (Part 4). A New Direction For America! | American Opp… https://t.co/BIdYOmVXDe +02/01/2018,Politicians,@gov_gilmore,Looking forward to chatting with @jfradioshow again this morning at 8:05am ET. Download his App and listen every m… https://t.co/72QBOJa2cx +01/31/2018,Politicians,@gov_gilmore,Gilmore: Dems 'Closed Both Eyes' on Immigration Issue | https://t.co/kyzNHy8STC https://t.co/JITDFireeH via @Newsmax +01/31/2018,Politicians,@gov_gilmore,Thanks @KattyKayBBC for another interesting analysis on BBC. https://t.co/zk5QpNCaAz +01/31/2018,Politicians,@gov_gilmore,Enjoyed another great segment wirh @TeamCavuto today! https://t.co/GEgmvEhi52 +01/31/2018,Politicians,@gov_gilmore,On with BBC's @KattyKayBBC right now discussing #SOTUResponse +01/31/2018,Politicians,@gov_gilmore,"RT @TeamCavuto: Former Virginia Governor Jim Gilmore (@gov_gilmore) on the FBI's ""grave concerns"" over the release of Devin Nunes' memo: + +""…" +01/31/2018,Politicians,@gov_gilmore,Tune in at 1:25pm ET to @FoxBusiness with @TeamCavuto discussing #StateOfTheUnion and MS-13 https://t.co/NvV1cSISPJ +01/31/2018,Politicians,@gov_gilmore,RT @TeamCavuto: We are covering this and much more NOW on @FoxBusiness https://t.co/H6pgx3kh5U +01/31/2018,Politicians,@gov_gilmore,RT @TeamCavuto: #BreakingNews now on @FoxBusiness: Congressman Trey Gowdy (R-SC) announces he will not run for re-election. https://t.co/hB… +01/31/2018,Politicians,@gov_gilmore,Looking forward to appearing @FoxBusiness with @TeamCavuto this afternoon at 1:25pm ET. Tune in! +01/31/2018,Politicians,@gov_gilmore,RT @ameriopp: @foxandfriends @EricTrump .@ameriopp has been working hard on conservative transportation solutions for more than 20 years. L… +01/31/2018,Politicians,@gov_gilmore,RT @jfradioshow: Dems want you in the pit of misery! #POTUS hits HOME RUN In #SOTU2018 Next up on #JFRS #TruckingTheTruth accross America:… +01/30/2018,Politicians,@gov_gilmore,RT @BillOReilly: I will analyze Trump's State of the Union address live on @Newsmax TV Tuesday night. Spread the word!!! https://t.co/9W9hX… +01/30/2018,Politicians,@gov_gilmore,Tune in now to @NewsmaxTV with @billtuckertv - I'll be discussing #SOTUnion and other news of the day. https://t.co/gCJhGgqu2C +01/30/2018,Politicians,@gov_gilmore,"RT @jfradioshow: Former Va Governor, Jim Gilmore: President Trump Is Setting A Change In Direction For The U.S.: https://t.co/nYQn4DMkzz vi…" +01/30/2018,Politicians,@gov_gilmore,RT @gov_gilmore: Latest AO Newsletter (Part 3) on Promoting a New American Foreign Policy! @ameriopp https://t.co/wEPjWMO0IG +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: All across the country, hard-working families are seeing: +✅ Pay raises and bonuses +✅ Businesses hiring more employees…" +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: ICYMI: @RepAndyBarr lauds tax reform in visit with local business owners: ""Comments on the tax act were overwhelmingly…" +01/29/2018,Politicians,@gov_gilmore,"RT @WaysandMeansGOP: With our new tax code, you get to take home more of every hard-earned paycheck. Here is where to look on your pay stub…" +01/29/2018,Politicians,@gov_gilmore,"RT @cspan: Internet Policy Conference, @netedfound hosts – LIVE on C-SPAN2 https://t.co/Z6pDFjUgZZ https://t.co/d4SzHyFpmy" +01/29/2018,Politicians,@gov_gilmore,Tune in to @jfradioshow this morning. Download his app. Get the latest news. +01/29/2018,Politicians,@gov_gilmore,RT @jfradioshow: Live from D.C. this week #TruckingTheTruth on #JFRS up next @RepDaveBrat 8:05; @ParisBarns 8:35; @gov_gilmore 9:05 Downloa… +01/27/2018,Politicians,@gov_gilmore,RT @UVAMensHoops: VICTORY: Big plays down the stretch propel 'Hoos to a huge W in Durham! Many more highlights to come! #wahoowa https://t.… +01/27/2018,Politicians,@gov_gilmore,"RT @UVA: BREAKING: The No. 2 ranked #UVA men’s basketball team has won at Cameron Indoor Stadium for the first time since 1995, defeating N…" +07/01/2018,Politicians,@GovChristie,Tomorrow is a huge day for the Mexico World Cup team as they face Brazil. I believe Juan Carlos Osorio will help hi… https://t.co/sxVP3Eooqr +07/01/2018,Politicians,@GovChristie,The NH GOP is very fortunate to have Wayne McDonald to assume the mantle of leadership in another key election year… https://t.co/isrs12CUXC +06/28/2018,Politicians,@GovChristie,What a fabulous win today for South Korea over an overrated German team in the World Cup. What you truly learn abou… https://t.co/vZHwGRbqvY +06/27/2018,Politicians,@GovChristie,"A heartfelt thank you to Justice Anthony Kennedy for 43 years of service to our nation. Now, I am confident that… https://t.co/yzH6kL7teL" +06/27/2018,Politicians,@GovChristie,A great day for free speech rights of Gov't workers in NJ & around the country--they no longer will pay exorbitant… https://t.co/xfryaQ1lrm +06/17/2018,Politicians,@GovChristie,Great win today by Mexico in the #FIFAWorldCup over a heavily favored German team. Congrats to Coach Juan Carlos Osorio. +06/05/2018,Politicians,@GovChristie,The WaPo story tonight saying I have been asked to help prepare @realDonaldTrump for any interview with Bob Mueller… https://t.co/KDM9Tjpp4D +06/04/2018,Politicians,@GovChristie,Will be on GMA this morning at 7:10am to discuss the legal issues surrounding the Mueller investigation. +05/29/2018,Politicians,@GovChristie,"RT @KevinSabet: Hey @GovMurphy, look up! +#DontLegalizePot + +Cc: @RAMP_NJ @tomamoran https://t.co/QK3pPWQchs" +05/29/2018,Politicians,@GovChristie,"The fake books would be, I thought, a little off putting for an NYT best selling author. But I'll take your word fo… https://t.co/SwKeZrjQIt" +05/28/2018,Politicians,@GovChristie,Congratulations to Steve and to fellow Blue Hen Ciara on your accomplishment. A great place to go to school. Go Blu… https://t.co/bh5kntnXj2 +05/28/2018,Politicians,@GovChristie,"Today we should all take some time to remember those who served our country in the military, past & present. The sa… https://t.co/FsXxYyjcfr" +05/21/2018,Politicians,@GovChristie,Exactly @NDMikeBrey. These five young men acted as big brothers to our daughter .@SarahChristie23 for the last four… https://t.co/nHNITFILBW +05/15/2018,Politicians,@GovChristie,"Meet the nun Jimmy Kimmel caricatured, writes @wjmcgurn; So agree with Bill McGurn--I urge Jimmy Kimmel to make it… https://t.co/Li6uz2RFCJ" +05/14/2018,Politicians,@GovChristie,A great day for the rights of states and their people to make their own decisions. New Jersey citizens wanted sport… https://t.co/hGJddOBs7u +05/10/2018,Politicians,@GovChristie,Great recognition for one of the best Governors in America--@MassGovernor Charlie Baker https://t.co/cuhoSfbwqM +05/03/2018,Politicians,@GovChristie,"RT @FrankALuna: Life comes at you fast... + +@tomamoran on 4/27: ""Not a single factual correction has been required for any column I wrote on…" +04/29/2018,Politicians,@GovChristie,The performance at the WHCD was awful. Her pounding of .@PressSec and .@KellyannePolls was mean spirited and not fu… https://t.co/M9GhX4I1Y5 +04/28/2018,Politicians,@GovChristie,Thanks to .@FLOTUS for caring so much about this crisis and lending her voice to the fight to save lives in America. https://t.co/geOcBKbwgb +04/28/2018,Politicians,@GovChristie,.@PhillySteaks--you have great folks working for all the customers there on a Friday night. https://t.co/WFLMQrxreL +04/28/2018,Politicians,@GovChristie,Just made a quick visit to @PhillySteaks to bring some to North Jersey for the family. Thanks to all the folks ther… https://t.co/KE7dEwyskX +04/27/2018,Politicians,@GovChristie,A great week of having @FLOTUS on the world stage making us proud and celebrating her birthday too! Happy birthday. https://t.co/MBNYQEM4ju +04/27/2018,Politicians,@GovChristie,Take back day is incredibly important to eliminate these drugs for diversion and misuse. Thanks to @realDonaldTrump… https://t.co/wf7ZybbGV2 +04/25/2018,Politicians,@GovChristie,"@PoliticalStile As for your other typically snarky, non-fact based commentary, I feel bad for you, as I always have… https://t.co/E5RLAv6dQ1" +04/25/2018,Politicians,@GovChristie,@PoliticalStile My criticism of Jim is based on his performance on the HRC email probe. No right to have a presser… https://t.co/KOrBqI80dy +04/25/2018,Politicians,@GovChristie,@mattkatz00 I have consistently criticized Jim's performance regarding the Clinton e-mail investigation since his p… https://t.co/D9yPE3sDpe +04/25/2018,Politicians,@GovChristie,Once again...a class act https://t.co/E02Wy7Lfpk +04/24/2018,Politicians,@GovChristie,Prayers for President Bush 41 from me and Mary Pat. We are sure his heart is heavy and his sorrow profound--it can'… https://t.co/QefDVE6WZH +04/18/2018,Politicians,@GovChristie,Mary Pat and I wish the entire Bush family our condolences on the loss of the one and only Barbara Bush. A great Fi… https://t.co/xcJFcU7bcy +04/15/2018,Politicians,@GovChristie,I think it’s unfortunately obvious that Jim Comey began to believe his own press clippings. It's the biggest danger… https://t.co/HJY47cddkz +04/15/2018,Politicians,@GovChristie,There's a rule at Justice that 60 days before an election you do nothing about somebody who is going to be on the b… https://t.co/4Prq7WXD7G +04/15/2018,Politicians,@GovChristie,What he's proving in his interview is that the president may have been right to fire him. Don't agree with how it… https://t.co/0KWPvbi2SZ +04/15/2018,Politicians,@GovChristie,We're not supposed to care about politics as prosecutors. But what we find out from his interview is that he did. T… https://t.co/1spCeR3ypM +04/15/2018,Politicians,@GovChristie,"When I worked for Jim Comey, if I had told him 11 days before an election that I was releasing information that cou… https://t.co/wLsQWvR3LU" +04/14/2018,Politicians,@GovChristie,Please tune in tomorrow morning to @ThisWeekABC as I give my unvarnished views on Jim Comey and his interview with… https://t.co/4QHSFTz1tR +04/11/2018,Politicians,@GovChristie,"The nation owes real thanks to Speaker Paul Ryan for stepping up to lead the House and for his honest, forthright l… https://t.co/KTsgAt61Mm" +04/11/2018,Politicians,@GovChristie,RT @GStephanopoulos: Quite a day with Jim @Comey. You'll see it all on Sunday @ABC. https://t.co/d2K9AqaOz6 +04/10/2018,Politicians,@GovChristie,Will be on @GMA this morning with @GStephanopoulos to discuss the implications of the FBI search on the offices of… https://t.co/lVWgjMmU3z +04/04/2018,Politicians,@GovChristie,Today my thoughts are on all that Dr. King meant to our nation and how much we could use his voice today as so many… https://t.co/UMtL0Lgc0P +04/02/2018,Politicians,@GovChristie,"Incredible win for @ndwbb! What guts, what grit, what courage...Go Irish! Congrats to Hall of Famer Muffet McGraw on a special win!" +03/31/2018,Politicians,@GovChristie,Let's start the year with a big win over a good program https://t.co/Kwtt6c4xNs +03/29/2018,Politicians,@GovChristie,It was great fun as a lifelong Mets fan to be at Opening Day and see a big Mets win. It was a true honor to be able… https://t.co/axHDj62wLc +03/29/2018,Politicians,@GovChristie,"While Opening Day is always a special day, filled with joy and hope and visions of springtime weather--today, Mets… https://t.co/NgFSILD3vW" +03/17/2018,Politicians,@GovChristie,"Looking forward to discussing another week of fascinating events with .@GStephanopoulos on Sunday morning! + https://t.co/SzgbZh6puW" +03/14/2018,Politicians,@GovChristie,Getting ready to talk with .@GStephanopoulos on @GMA in the 7am hour about the political/legal news of the day. +03/14/2018,Politicians,@GovChristie,Very proud of .@chefjclark on his new position as head of the WH Office of Public Liaison. He will do the job with… https://t.co/v824vHrsif +03/11/2018,Politicians,@GovChristie,"A very tough and unfair night for @NDmbb. They beat Syracuse, at Syracuse, without ND's two best players. They end… https://t.co/HBfAKZCzDL" +03/08/2018,Politicians,@GovChristie,.@TomCrean Great job on the ESPN2 broadcast tonight--you made an incredible Irish comeback even better! The whole f… https://t.co/iUUJkDnAeq +03/08/2018,Politicians,@GovChristie,.@rexpflueger What a great effort--you were a huge part of that record breaking 21 point comeback. We are all proud of you! +03/08/2018,Politicians,@GovChristie,An amazing comeback by a gritty group of guys--especially @Austin_Torres1 who brought real energy to the floor! Way… https://t.co/fsAB7wRAw0 +03/07/2018,Politicians,@GovChristie,Go Irish! Beat Virginia Tech! https://t.co/IEiSr9h4FD +03/07/2018,Politicians,@GovChristie,Let's go get em tomorrow...survive and advance https://t.co/Lu5s8GiKsm +03/04/2018,Politicians,@GovChristie,Looking forward to tomorrow morning's show https://t.co/Vqqc6dtzI9 +02/28/2018,Politicians,@GovChristie,Two extraordinarily proud parents in South Bend honoring our daughter @SarahChristie23 on Senior Night at Notre Dam… https://t.co/TIDnal9UxN +02/24/2018,Politicians,@GovChristie,Congrats to @MattyFarr3 for a huge shot https://t.co/XtRELOIf5h +02/24/2018,Politicians,@GovChristie,Glad to see our little girl's 22nd birthday is being celebrated with her by her second family--@NDmbb. Thanks for t… https://t.co/bUstL9strX +02/20/2018,Politicians,@GovChristie,What a great and gutsy group of young men. https://t.co/gqciTYKtDU +02/17/2018,Politicians,@GovChristie,Great performance from @MattyFarr3 and @NDmbb. Look out ACC--this Irish team is getting healthy and in rhythm for t… https://t.co/B8wvVaKR0d +02/14/2018,Politicians,@GovChristie,Our prayers are with the families of the victims of this horrific school shooting in Florida. Mary Pat and I will k… https://t.co/oFPgO7XRQ5 +02/11/2018,Politicians,@GovChristie,Gutsy win for the Irish! https://t.co/XEexct4X0Q +01/29/2018,Politicians,@GovChristie,"Congratulations to Bob Hugin for 19 years of great leadership for @Celgene. From 200 jobs when he began to over 7,5… https://t.co/Ll2taDXTV8" +01/29/2018,Politicians,@GovChristie,Congratulations on 24 yrs of exemplary service to our state and the nation @USRepRodney. I am proud to have worked… https://t.co/jWddTBwOzT +01/24/2018,Politicians,@GovChristie,Great job by the @NDmbb basketball managers. Great job @SarahChristie23! https://t.co/KqvmLe3AYp +01/18/2018,Politicians,@GovChristie,Neither option was the way I entered airport as Governor(wrong in the story) and PAPD officer never denied me entry… https://t.co/uKYAQxW9xP +01/18/2018,Politicians,@GovChristie,Absolutely false story about my travel today. NJSP security detail & I were led to one entrance in the airport by P… https://t.co/ei03c5Z0Ou +01/16/2018,Politicians,@GovChristie,Thank you to all the people of New Jersey for the honor of being your Governor for the last eight years. It was a true privilege. +01/15/2018,Politicians,@GovChristie,My statement commemorating Dr. Martin Luther King Jr. Day: https://t.co/hzUx61275X +01/12/2018,Politicians,@GovChristie,All State buildings are flying flags at half-staff today in recognition and mourning of a courageous and loyal Amer… https://t.co/rBC6aldBCg +01/11/2018,Politicians,@GovChristie,Flags on all State buildings are at half-staff today in recognition and mourning of the passing of Jersey City Poli… https://t.co/rpTEEFOqVe +01/10/2018,Politicians,@GovChristie,"I leave you today grateful, happy and a better man than I was eight years ago. #SOTS2018 https://t.co/Ae9HEFQzjD" +01/09/2018,Politicians,@GovChristie,Watch my State of the State Address LIVE here: https://t.co/LgGNbWSUnZ +01/09/2018,Politicians,@GovChristie,Be sure to watch as I deliver my final #SOTS2018 address today at 3:00 pm. https://t.co/o3xE44jtlk +01/08/2018,Politicians,@GovChristie,My remarks from today’s Memorial Service for Governor Brendan T. Byrne: https://t.co/nmAhYim75w +01/08/2018,Politicians,@GovChristie,I have ordered all state buildings to fly flags at half-staff today in recognition and mourning of the passing of f… https://t.co/NHMmmRJhgw +01/08/2018,Politicians,@GovChristie,@rizzoTK State funding has been ramped up significantly--2 1/2 times more than the last 5 administrations combined-… https://t.co/8npfDsMP4j +01/04/2018,Politicians,@GovChristie,My statement on the passing of Governor Brendan T. Byrne: https://t.co/FlwWaMlMlB +01/04/2018,Politicians,@GovChristie,It is a shame that Democrats in the Legislature are paralyzed & let the arbitration cap expire. This will lead to h… https://t.co/8QMqOTrVpP +01/04/2018,Politicians,@GovChristie,"Declaring state of emergency in Cape May, Atlantic, Ocean & Monmouth Counties. All state offices will now be closed… https://t.co/nnURnC2bKb" +01/04/2018,Politicians,@GovChristie,"State offices will have a 2 hour delayed opening from normal start times tomorrow, January 4th to allow for the cle… https://t.co/OK2Wf8jYx8" +01/03/2018,Politicians,@GovChristie,We have done this already in NJ and it is working well. I urge NY to follow our lead. https://t.co/UtEzmLvxxh +01/03/2018,Politicians,@GovChristie,I commend A.G. Sessions for selecting Craig Carpenito to be New Jersey's United States Attorney. Craig is an outsta… https://t.co/YqHhLPNogm +01/01/2018,Politicians,@GovChristie,Wishing everyone a very happy & healthy New Year! +01/01/2018,Politicians,@GovChristie,.@TomCrean What a great family! https://t.co/uX4wZCx81g +01/01/2018,Politicians,@GovChristie,Congratulations on another record breaking year at the great Turtle Back Zoo! https://t.co/kZGp9UGhVL +12/31/2017,Politicians,@GovChristie,The real story is that .@Bcolson_35 called a timeout before falling out of bounds! Great job Bonzie! https://t.co/csNFKx6Lzh +12/31/2017,Politicians,@GovChristie,"Great win for my alma mater tonight! + https://t.co/FijJowjSHc" +12/31/2017,Politicians,@GovChristie,RT @TheRobFranklin: It's official. @NDMikeBrey is one win away from the program record at Notre Dame. #BreysChase https://t.co/fgFnRDLJKg +12/28/2017,Politicians,@GovChristie,@PoliticalStile @EliseOnDeadline Another inaccurate story from @EliseOnDeadline endorsed by biased @PoliticalStile.… https://t.co/l46WFlQvT7 +12/27/2017,Politicians,@GovChristie,Today I signed Executive Order No. 237 ordering local Governments to accommodate prepayment of 2018 Property taxe… https://t.co/iwgUfrapFW +12/25/2017,Politicians,@GovChristie,Wishing everyone the joys of the season and happiness throughout the coming year. Merry Christmas! +12/20/2017,Politicians,@GovChristie,"We can do something to fix this, we should make property taxes on our state income tax returns completely deductibl… https://t.co/F7afOWzQEF" +12/20/2017,Politicians,@GovChristie,"As we conclude the celebration of Hanukkah, we do so with great hope for the coming year for good health, prosperit… https://t.co/0V93PKpYa1" +12/20/2017,Politicians,@GovChristie,Congratulations to @SecaucusPSD math teacher Toni-Ann Palmisano on being awarded the prestigious @Milken Educator A… https://t.co/ORW0bXErTS +12/20/2017,Politicians,@GovChristie,The legislation I signed today should stand as a model to other states because we need to give those who have truly… https://t.co/G8vlcM8VdV +12/20/2017,Politicians,@GovChristie,Watch my bill action event LIVE from Trenton: https://t.co/LgGNbWSUnZ +12/19/2017,Politicians,@GovChristie,Having the @NJHallofFame partner with @PANYNJ is a great way for NJ to put our best foot forward and give the peopl… https://t.co/FQrurwrAMJ +12/19/2017,Politicians,@GovChristie,Watch my remarks at the unveiling of the new @NJHallofFame interactive displays @EWRairport LIVE: https://t.co/LgGNbWSUnZ +12/16/2017,Politicians,@GovChristie,We must all work together and I am very happy to have the @NJDevils as partners in this fight. https://t.co/XWZ63mrflr +12/15/2017,Politicians,@GovChristie,Thank you to our @ReachNJ partners the @NJDevils and to their President @hughweber1 and 3x Stanley Cup Champ… https://t.co/p3VpH8sc5U +12/15/2017,Politicians,@GovChristie,Watch LIVE as I join Education Commissioner Harrington and the @NJDevils to speak to a group of students about the… https://t.co/OTRWV0lZ75 +12/14/2017,Politicians,@GovChristie,"I have complete confidence that @KellyannePolls will bring the skill, ability and will to implement the Commission… https://t.co/GcqYTVxnvT" +12/13/2017,Politicians,@GovChristie,Our healthcare providers have to be a major part of solving the opioid epidemic. https://t.co/XO0V9dQwgk +12/13/2017,Politicians,@GovChristie,Watch LIVE as I deliver the keynote remarks at the American Pain Association’s “Turn the Tide” Summit in Camden: https://t.co/LgGNbWSUnZ +12/12/2017,Politicians,@GovChristie,Programs like the Talent Development Center @RutgersU will help to restore lives and make our communities and our s… https://t.co/T3y7X1YfBV +12/12/2017,Politicians,@GovChristie,My statement on the celebration of Hanukkah: https://t.co/S0WER4Jh3l +12/12/2017,Politicians,@GovChristie,Watch my announcement of the Talent Development Center Awards @Rutgers: https://t.co/LgGNbWSUnZ +12/11/2017,Politicians,@GovChristie,My statement regarding the explosion this morning beneath @PABusTerminal in New York City: https://t.co/E5REw25B8W +12/08/2017,Politicians,@GovChristie,Watch my remarks LIVE from the NJ Association of Mental Health and Addiction Agencies Award Ceremony at their headq… https://t.co/G9YfJnYbkq +12/07/2017,Politicians,@GovChristie,The lights that you are holding represent the light of your spirit. #Vigil2017 https://t.co/n1sWwo2oxX +12/07/2017,Politicians,@GovChristie,My statement in honor of Pearl Harbor Remembrance Day: https://t.co/79H3Un2X6q +12/06/2017,Politicians,@GovChristie,#IllBeThereWillYou #Vigil2017 #BeAFace https://t.co/5NRx70YbmQ +12/06/2017,Politicians,@GovChristie,"Tonight’s Candlelight Vigil is to recognize those decimated by this epidemic. #IllBeThereWillYou +https://t.co/851hT8AhXZ" +12/06/2017,Politicians,@GovChristie,"We’ve made great strides, but the public employee pension & health care system needs additional reform. https://t.co/lOOSuU0Ocg" +12/06/2017,Politicians,@GovChristie,Watch my press conference in Trenton LIVE: https://t.co/LgGNbWSUnZ +12/02/2017,Politicians,@GovChristie,"I would like to welcome home the members of @NJSP, local police officers, first responders and civilian officials w… https://t.co/gJ2qvG1Fls" +12/01/2017,Politicians,@GovChristie,Today we show our support for the individuals living with HIV and we remember the many lives lost to AIDS.… https://t.co/kOsXtyb1I0 +11/30/2017,Politicians,@GovChristie,https://t.co/st4qJi7lwo #IllBeThereWillYou #Vigil2017 https://t.co/IB9iKWV1xM +11/30/2017,Politicians,@GovChristie,"RT @reachnj: If you or someone you love is struggling with addiction, choose help. Call 844-REACH-NJ or visit https://t.co/Pwfk6gqefs https…" +11/30/2017,Politicians,@GovChristie,Register to reserve your spot: https://t.co/st4qJi7lwo #IllBeThereWillYou #Vigil2017 https://t.co/V5YUfFe72V +11/30/2017,Politicians,@GovChristie,"We’ve taken steps to combat addiction but We Need Marches. Please join us at 5 pm on December 6, 2017 for the 2nd A… https://t.co/tV088MdNKE" +11/30/2017,Politicians,@GovChristie,All across NJ people have joined with us to make the discussion on addiction louder and stronger and together we ha… https://t.co/HLSaLLFf51 +11/30/2017,Politicians,@GovChristie,From the beginning my Administration began a conversation about the disease of drug addiction and how no life is di… https://t.co/l0sZ5lAc47 +11/29/2017,Politicians,@GovChristie,The @CMSGov waiver’s would not have been made possible without Administrator @SeemaCMS. https://t.co/sfbqZHjhwB +11/29/2017,Politicians,@GovChristie,.@POTUS has done more to combat the addiction crisis than any other President. https://t.co/EfjJVrE29G +11/29/2017,Politicians,@GovChristie,Today I will be joined by @CMSGov Administrator @SeemaCMS for a discussion with clients from @IntegrityNJ and to ma… https://t.co/4ZroKkojYj +11/28/2017,Politicians,@GovChristie,Watch my remarks at the House Committee on Oversight and Government Reform’s Hearing on Combating the Opioid Crisis… https://t.co/mYUN2ybfMF +11/25/2017,Politicians,@GovChristie,Remember to support your local NJ businesses today for #SmallBizSat. #ShopSmall https://t.co/6xEZDay93K +11/23/2017,Politicians,@GovChristie,Wishing everyone a very #HappyThanksgiving! +11/23/2017,Politicians,@GovChristie,To my friend @NDMikeBrey--the loosest coach in America and...Maui Tourney champion! #6winstogo https://t.co/TQ3ZFQz4G3 +11/23/2017,Politicians,@GovChristie,"What a gutty, extraordinary comeback win for @NDmbb! Maui Classic Champs. Great job by @NDMikeBrey. Go Irish! https://t.co/a2mlJGsrMn" +11/21/2017,Politicians,@GovChristie,Tune in tonight at 7:00 pm for #AskGov on @nj1015 https://t.co/kdnMrJUi8e https://t.co/kxtG5bWskD +11/20/2017,Politicians,@GovChristie,The dedication of Governor Chris Christie Drive is truly an honor for me and my family. https://t.co/LjKYaqemhD +11/20/2017,Politicians,@GovChristie,Congratulations to NJ native @MartinTruex_Jr on winning the Monster Energy @NASCAR Cup Series Championship! #jerseypride +11/16/2017,Politicians,@GovChristie,"To mark World Pancreatic Cancer Awareness Day, Drumthwacket is shining purple this evening to spread awareness of t… https://t.co/l7yhD3LLvn" +11/16/2017,Politicians,@GovChristie,New Jersey’s economy is in better shape today than it was eight years ago. #BetterThanWeFoundIt https://t.co/yOjWPuDxC7 +11/16/2017,Politicians,@GovChristie,#ICYMI My Administration Made New Jersey Better - and It Wasn’t Easy. https://t.co/hPgoSVgBWS +11/14/2017,Politicians,@GovChristie,Flags on all State buildings are at half-staff today in recognition and mourning of the victims of the mass shootin… https://t.co/WB4IXT4msy +11/11/2017,Politicians,@GovChristie,Drumthwacket is illuminated green this #VeteransDay to honor the service and sacrifice of our nation’s 18.5 million… https://t.co/kUEBOVYudk +11/11/2017,Politicians,@GovChristie,My statement marking #VeteransDay: https://t.co/ClzYNDyNuC +11/11/2017,Politicians,@GovChristie,At the 92nd St Y with Ron Chernow and General David Patraeus prior to their talk on President Ulysses S. Grant https://t.co/Dfjbn3pjfI +11/10/2017,Politicians,@GovChristie,Happy 242 Birthday @USMC! #HappyBirthdayMarines https://t.co/EfmKFmsGhl +11/09/2017,Politicians,@GovChristie,"I met today with Governor-elect Murphy to ensure the transfer of responsibilities will be organized, cooperative, a… https://t.co/qIyZ2y7sQS" +11/06/2017,Politicians,@GovChristie,"@PollsterPatrick @Morning_Joe @MonmouthPoll No--your tweet said ""NJ's Superstorm Sandy victims"" as if your numbers… https://t.co/r9O7ln2zM1" +11/06/2017,Politicians,@GovChristie,"Today, I have ordered all State buildings to fly flags at half-staff in recognition and mourning of the victims of… https://t.co/J0gieGIiaS" +11/02/2017,Politicians,@GovChristie,New Jersey’s economy is on the right path. #BetterThanWeFoundIt https://t.co/sL3y7KKp9C +11/02/2017,Politicians,@GovChristie,Watch my remarks from FinPro Inc's Annual President and Directors Conference LIVE from Bedminster: https://t.co/LgGNbXavfx +11/01/2017,Politicians,@GovChristie,Another step in fighting the opioid epidemic: @CMSgov has approved demonstrations in both NJ and UT on a new Medica… https://t.co/EQaC8yDOa0 +11/01/2017,Politicians,@GovChristie,NJEA doesn't deny their huge compensation--just some of it paid now & some later. Millions more to come next year. https://t.co/oejBFv31CW +11/01/2017,Politicians,@GovChristie,We are praying for all victims & their families from tonight's terrorist attacks. NJ law enforcement partners with NY & Feds to keep us safe +10/31/2017,Politicians,@GovChristie,Is the @NJEA lying to the IRS or to their members? https://t.co/9R39nl3Yyh +10/31/2017,Politicians,@GovChristie,Congratulations to the new @NJSP Superintendent Colonel Patrick Callahan. https://t.co/6eAIAUdnMY +10/30/2017,Politicians,@GovChristie,@icmyserenity @AGCurtisHill Thank you Brandon. We are all in this fight together. Thank you for your dedication and advocacy. +10/30/2017,Politicians,@GovChristie,We are losing 142 people a day in America to opioids. Very proud to join @AGCurtisHill and Congresswoman… https://t.co/hjEyE7lAbS +10/30/2017,Politicians,@GovChristie,Thank you @AGCurtisHill it was truly my honor to be a part of your #RxSymposium2017. This is a conversation we mus… https://t.co/Eu8XSyvK5Y +10/30/2017,Politicians,@GovChristie,Today I will be delivering the Keynote Address at Indiana Attorney General @AGCurtisHill ‘s 8th Annual Prescription… https://t.co/OKjw2CHYvV +10/30/2017,Politicians,@GovChristie,@PollsterPatrick @Morning_Joe @MonmouthPoll Why care about a poll that deceives recipients by not telling them that… https://t.co/ZTvocUuWFA +10/30/2017,Politicians,@GovChristie,@PollsterPatrick Except your release says that these statistics cannot be applied to the larger group of all NJ San… https://t.co/P85Fj7t4p2 +10/30/2017,Politicians,@GovChristie,"@MonmouthPoll In last paragraph of his biased release ""the survey results cannot be statistically projected to the… https://t.co/Azv9mQXLRv" +10/29/2017,Politicians,@GovChristie,#Thankyou to all the volunteers who are still working hard to help rebuild New Jersey stronger. #STTS: https://t.co/1GQ7UvK9Js +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/FcyBqC3Ug4 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/jAkReuuYp9 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/fjXDcarNQ8 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/rJVB0Rd899 +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/riwC3MhONi" +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/nziMttcpoF" +10/29/2017,Politicians,@GovChristie,"Reflections: New Jersey Five Years Post Sandy #STTS +https://t.co/kB44CIgXV8" +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/2MK5fDhafi +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/vtzGREWYg1 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/IOGtPUQQz2 +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/zZawkNRG7C +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/MIHLdPKwSD +10/29/2017,Politicians,@GovChristie,Reflections: New Jersey Five Years Post Sandy #STTS https://t.co/aKvLcQaMyP +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/t9WZfjQaBd +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/lslNT1CQWG +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/LqSobfwADH +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/kx5aLE7MS7 +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/jyCCgPNxCP +10/29/2017,Politicians,@GovChristie,Five Years Post-Sandy: A Stronger New Jersey #STTS https://t.co/idmrkRU1JC +10/29/2017,Politicians,@GovChristie,Hope comes from the greater family of America and around the world. #STTS https://t.co/WBEmSvpneX +10/29/2017,Politicians,@GovChristie,I would like to thank everyone at St. Andrews United Methodist Church in Toms River for hosting “A Day of Prayer Th… https://t.co/BvxhMP8fqg +10/29/2017,Politicians,@GovChristie,Watch my remarks at the “Day of Prayer” service commemorating the 5th Anniversary of Super Storm Sandy. https://t.co/LgGNbWSUnZ +10/29/2017,Politicians,@GovChristie,Reflections on Sandy: New Jersey 2012: https://t.co/Lx1ZXuDF39 +10/28/2017,Politicians,@GovChristie,RT @reachnj: Opioid painkillers can be highly addictive and the dependency doesn’t end when the prescription runs out. WATCH how it starts:… +10/28/2017,Politicians,@GovChristie,Today is National Prescription Take Back Day. To find out where in NJ to take your unused and expired prescriptions… https://t.co/Q3GVHD51Ii +10/28/2017,Politicians,@GovChristie,If you’re near Seaside today join in and be a part of history. Help break the Guinness Book World Record for “Most… https://t.co/YlTqaBFwFF +10/27/2017,Politicians,@GovChristie,"New Jersey’s fighting, edgy, spirit makes us America’s most interesting people. #STTS https://t.co/6bPGTxGp3f" +10/27/2017,Politicians,@GovChristie,Our model resiliency program has put New Jerseyans in a much better position since Sandy. #STTS https://t.co/XScvlb5EEf +10/27/2017,Politicians,@GovChristie,Five years ago St. Peters’s University Hospital suffered direct physical damage from Sandy but today with this new… https://t.co/l2V2Qgrq9e +10/27/2017,Politicians,@GovChristie,Watch my remarks on EDA’s Energy Resilience Bank LIVE from New Brunswick: https://t.co/LgGNbWSUnZ +10/27/2017,Politicians,@GovChristie,Great time with @JaniceDean doing the weather this morning on @foxandfriends. Bundle up Bismarck! https://t.co/auJNTiJeFV +10/26/2017,Politicians,@GovChristie,RT @TODAYshow: Tomorrow on TODAY: @MLauer talks to @GovChristie about how NJ has recovered 5 years after Superstorm Sandy and more. https:/… +10/26/2017,Politicians,@GovChristie,@NJSP Great job Trooper Palaia! NJSP always ready to serve. #JerseyPride #Attaboy +10/26/2017,Politicians,@GovChristie,Saturday is National Prescription Drug Take-Back Day. Turn in your unused and expired medication safely at one of t… https://t.co/G6jUZcPuDP +10/26/2017,Politicians,@GovChristie,A proud & important day for so many families in America as @POTUS signs national emergency to deal w/opioid epidemi… https://t.co/nPsRhcMAM2 +10/26/2017,Politicians,@GovChristie,My statement on @POTUS Donald J. Trump’s Action on the opioid crisis: https://t.co/nmNHGCIwIR +10/26/2017,Politicians,@GovChristie,The Commission asked POTUS to declare Nat'l emergency under Public Health Safety Act or Stafford Act. Today he's doing what we asked of him. +10/26/2017,Politicians,@GovChristie,"RT @reachnj: In the US, someone dies every 19 minutes from a drug overdose. Risk reduction starts with knowing the facts: https://t.co/G1KO…" +10/25/2017,Politicians,@GovChristie,"Earlier today, First Lady Mary Pat Christie went to Camp Evans Volunteer Center to meet with Sandy volunteers and t… https://t.co/uNQqihE1Ep" +10/24/2017,Politicians,@GovChristie,Extremely proud of our @NJSP and First Responders who have served and are currently serving out-of-state in areas d… https://t.co/Dn54F8OaiK +10/24/2017,Politicians,@GovChristie,This State will forever remember the service our First Responders provided during Sandy. #STTS https://t.co/8DkT45SqzK +06/27/2018,Politicians,@CarlyFiorina,"I had a great meeting today with @UofLPresNeeli, the new President of the University of Louisville. Wishing her the… https://t.co/pvMeLRQZro" +06/27/2018,Politicians,@CarlyFiorina,"RT @NickyGoren: ""Intentionally and explicitly strengthening #nonprofit #leadership and staff is the work that needs to be done for programs…" +06/22/2018,Politicians,@CarlyFiorina,RT @usatodayopinion: From @CarlyFiorina: #Immigrant children separated from their families need leaders in Washington who are willing to go… +06/22/2018,Politicians,@CarlyFiorina,"For so many Americans, the immigration crisis has left us us wondering, “How did we get here?” + +Read my op-ed in… https://t.co/1xqjmBjX3v" +06/21/2018,Politicians,@CarlyFiorina,I’m honored to work with Jon and his team at @ESealsDCMDVA. They’ve taken the tools and characteristics they’ve lea… https://t.co/6dk9Auz4J1 +06/15/2018,Politicians,@CarlyFiorina,Ruff day at the https://t.co/zSAirYAWS8 office! https://t.co/U0EQC3TsaO +06/06/2018,Politicians,@CarlyFiorina,"Glad to be with @WWP in Jacksonville this week. It is an honor to work with their team to lift leaders up, and to e… https://t.co/n6VrkkXKKh" +05/18/2018,Politicians,@CarlyFiorina,"RT @THRUUE: ""Leadership at any level takes courage because to do anything is to be criticized"" + +Season 2 of Culture Gap is live! Listen no…" +05/09/2018,Politicians,@CarlyFiorina,.@caseyenders is a leader. She demonstrates true humility. It is not false modesty or being overly tentative. It’s… https://t.co/xTyHX36lZm +05/08/2018,Politicians,@CarlyFiorina,The political world has again learned of another case of a someone abusing his power to silence victims of sexual a… https://t.co/yCIflLvMsb +05/02/2018,Politicians,@CarlyFiorina,"RT @caseyenders: Loved hearing from all the fantastic students at last night's Do Good Challenge Finals! Inspiring to see so many smart, pa…" +05/01/2018,Politicians,@CarlyFiorina,".@CCharitiesUSA serves as a tremendous example of citizens leading in their communities, and doing God's work as th… https://t.co/KKNePTwwzQ" +05/01/2018,Politicians,@CarlyFiorina,"Hello from Tampa, where I have spent the last couple of days with leaders in @CCharitiesUSA's O'Grady Leadership In… https://t.co/SROsQ85oVh" +05/01/2018,Politicians,@CarlyFiorina,RT @JSirangelo: “Perspective requires recognizing your own limitations as well as those of the people you work with–and treating both with… +04/12/2018,Politicians,@CarlyFiorina,@emilylazor .@EmilyLazor - Thanks for the question. I chatted with @jmeacham and @Nick_Zeppos about this earlier th… https://t.co/R7goSdCBm6 +04/05/2018,Politicians,@CarlyFiorina,RT @LehighAlumni: Former Hewlett-Packard CEO and 2016 Republican presidential candidate Carly Fiorina delivered the inaugural Peter S. Hage… +04/01/2018,Politicians,@CarlyFiorina,Jesus Christ is risen! Hallelujah! Frank and I wish you and your family the best on this Easter Sunday. +03/07/2018,Politicians,@CarlyFiorina,"RT @USCCFBiz4Good: “A leader sees possibility in the people all around them regardless of their circumstances.” @CarlyFiorina, @UPLeadershi…" +03/07/2018,Politicians,@CarlyFiorina,"It was great to catch up with you, Blair! #USCCFwomen https://t.co/HdZFmB48nC" +02/28/2018,Politicians,@CarlyFiorina,Glad to meet new friends and catch up with old ones like @Howard_Byck at @socialcapital today! https://t.co/TOf0F8ofau +02/23/2018,Politicians,@CarlyFiorina,"RT @VandyHustler: Read The Hustler's full interview with Carly Fiorina, former CEO of Hewlett Packard + +https://t.co/DsVqqZ7tOI" +01/19/2018,Politicians,@CarlyFiorina,"Thinking of and praying for all of those participating in the @March_for_Life today! + +Every person – every life – h… https://t.co/vDJPkWQe0c" +01/03/2018,Politicians,@CarlyFiorina,"@RebeccaSchiebs Thanks, Rebecca! This is one of my favorite moments: +https://t.co/4w66NPE8nE" +01/03/2018,Politicians,@CarlyFiorina,"“In today’s world, we face problems that are desperate, festering, and intractable. If we are going to have any sho… https://t.co/svU9slVMIg" +12/21/2017,Politicians,@CarlyFiorina,"Thank you, Jon! Great to read your reflections on working with @UPLeadership. https://t.co/taW15aHIDW" +12/21/2017,Politicians,@CarlyFiorina,Frank and I wish you all the blessings of this holiday season! https://t.co/KdJ0VeThgt +12/17/2017,Politicians,@CarlyFiorina,"I’m joining @KasieDC this evening to discuss @UPLeadership. Follow and click here for more: +https://t.co/7f8a8MboLG" +12/06/2017,Politicians,@CarlyFiorina,Our founders had it right when they said that patents and intellectual property needed to be protected as a fundame… https://t.co/untvIa7IOK +11/29/2017,Politicians,@CarlyFiorina,"Thank you @kellanhowell for the thoughtful conversation. Keep up the good work at @circa. + +https://t.co/MD84xsbB8W" +11/28/2017,Politicians,@CarlyFiorina,RT @cnsnews: Carly Fiorina: Congress Must Change How It Handles Sexual Harassment Claims https://t.co/9Is2LkNy2c +11/20/2017,Politicians,@CarlyFiorina,Are you going to keep quiet when you should speak up? https://t.co/Kbgr3AXij9 +11/19/2017,Politicians,@CarlyFiorina,"We women will keep fighting, contributing, speaking up and speaking out. The question is will you boys finally man… https://t.co/OaWYwIfHWx" +11/19/2017,Politicians,@CarlyFiorina,"It is men’s turn to tell their fellow men that respect from others requires respect for others. +https://t.co/Kbgr3AXij9" +11/19/2017,Politicians,@CarlyFiorina,I'll be on @ThisWeekABC to discuss sexual harassment in our society. Read my latest thoughts on the subject here: https://t.co/Kbgr3AXij9 +11/06/2017,Politicians,@CarlyFiorina,. @EdWGillespie sees the possibilities in all Virginians. #VAGov https://t.co/eiihsRuCEe +11/06/2017,Politicians,@CarlyFiorina,Tomorrow is election day in Virginia - make your plan and get to the polls and vote for @EdWGillespie @JillHVogel and @JohnAdamsforVA +11/04/2017,Politicians,@CarlyFiorina,Loved being with the VA GOP Team in Springfield - keep up the great work @JohnAdamsforVA https://t.co/ZphsvbcoEs +11/04/2017,Politicians,@CarlyFiorina,"Great morning in Springfield with a strong leader and my friend, the next Governor of Virginia, @EdWGillespie!… https://t.co/D79MOO7zlI" +11/02/2017,Politicians,@CarlyFiorina,Thanks for having me! https://t.co/Wa71YAVXwi +10/25/2017,Politicians,@CarlyFiorina,Joining @hughhewitt this morning at 8:05AM ET. You can listen live here: https://t.co/a0R6KCFzvw +10/24/2017,Politicians,@CarlyFiorina,Looking forward to joining @TheBuschSchool for this evening’s CEO Lecture @CatholicUniv. Watch live here: https://t.co/lktYoLEk6W +10/07/2017,Politicians,@CarlyFiorina,Proud to support @BarbaraComstock for #VA10 tonight! https://t.co/YjgE7uVg4p +09/29/2017,Politicians,@CarlyFiorina,Thanks for having me! #YAFonCampus https://t.co/P9G8WwDGDC +09/27/2017,Politicians,@CarlyFiorina,Excited to speak with @LogCabinGOP tonight as they celebrate their 40th anniversary. +09/20/2017,Politicians,@CarlyFiorina,Looking forward to speaking about leadership at tonight’s @awbolympia event! #AWBsummit17 https://t.co/mFkuaJGkEV +09/14/2017,Politicians,@CarlyFiorina,Enjoyed the opportunity to sit down with @mariabartiromo on @FoxBusiness this morning. https://t.co/2CgCeLsGVp +09/13/2017,Politicians,@CarlyFiorina,Looking forward to joining @mariabartiromo tomorrow on @MorningsMaria at 8am. Hope that you can tune in! +09/08/2017,Politicians,@CarlyFiorina,It was great to join @tracybyrnes with the @TheStreet for a discussion on leadership: https://t.co/A59mP34d9e +07/31/2017,Politicians,@CarlyFiorina,https://t.co/iWFACDwAHg +07/20/2017,Politicians,@CarlyFiorina,God speed my friend. We need you back in Washington. +07/20/2017,Politicians,@CarlyFiorina,"While you may not agree with him every time, there is no doubt that John is a leader of unwavering courage, principle, and honor." +07/20/2017,Politicians,@CarlyFiorina,We all know John is a warrior and he will fight this with same valor that has defined every aspect of his life. +07/20/2017,Politicians,@CarlyFiorina,"My love and prayers go out to my good friends John and Cindy, as well as Meghan and the entire family." +07/18/2017,Politicians,@CarlyFiorina,I truly enjoyed our conversation @tracybyrnes and thank you for having me. Pease keep up your excellent work at… https://t.co/IcMUzc0ASu +06/29/2017,Politicians,@CarlyFiorina,#leadership https://t.co/GgaBJe7trD +06/25/2017,Politicians,@CarlyFiorina,Below are a few of my thoughts on this principled post by @SenMikeLee - https://t.co/wdeveKRdxh https://t.co/wnSrA9fqlo +06/23/2017,Politicians,@CarlyFiorina,#leadership https://t.co/lZV4iIZIM9 +06/22/2017,Politicians,@CarlyFiorina,Looking forward to speaking with @MariaBartiromo at 8:30am this morning live on @FoxBusiness +06/17/2017,Politicians,@CarlyFiorina,". @kylemaynard is realizing his potential. + +Watch Kyle in action here: https://t.co/nYkmTgxmD8 + +(3/3)" +06/17/2017,Politicians,@CarlyFiorina,Last week I had the pleasure to meet @kylemaynard - a true leader. (2/3) +06/17/2017,Politicians,@CarlyFiorina,"Everyone is gifted by God. Everyone, regardless of their circumstances, has far more potential than they realize. (1/3)" +06/13/2017,Politicians,@CarlyFiorina,I was proud to vote for @EdWGillespie today. #TeamGillespie +06/13/2017,Politicians,@CarlyFiorina,"With my favorite polling people. Go Vote! +#VirginiaPrimary https://t.co/LNCVR1bGEt" +05/25/2017,Politicians,@CarlyFiorina,https://t.co/YyZvgYINQ9 +05/23/2017,Politicians,@CarlyFiorina,Challenging the status quo is the purpose of leadership. Criticism is the price. And solving problems is the pay-off #CECPSummit +05/23/2017,Politicians,@CarlyFiorina,We have an abundance of problems and a scarcity of leadership #CECPSummit +05/23/2017,Politicians,@CarlyFiorina,"Leadership is not about title, position or power #CECPSummit" +05/23/2017,Politicians,@CarlyFiorina,Looking forward to joining the @CECPtweets Summit soon! +05/11/2017,Politicians,@CarlyFiorina,It was great to join @TheStreet for a discussion on leadership and heath care reform. https://t.co/hP3dUsFC0F +05/10/2017,Politicians,@CarlyFiorina,"I am excited and honored to be joining the @colonialwmsburg Foundation Board of Trustees! + +https://t.co/WVZQls2Tlr" +05/10/2017,Politicians,@CarlyFiorina,@lynlam Thank you! +05/10/2017,Politicians,@CarlyFiorina,Enjoyed the opportunity to sit down w/ @tvkatesnow to discuss health care and President Trump’s first 100 days https://t.co/UAjSud7XhS +04/22/2017,Politicians,@CarlyFiorina,If you haven’t had the chance take a listen to this weeks @TakeoutPodcast! https://t.co/ttM5CJapIt +04/22/2017,Politicians,@CarlyFiorina,I enjoyed joining @MajorCBS on @TakeoutPodcast! Take a listen if you are interested. https://t.co/blNos83idI +04/15/2017,Politicians,@CarlyFiorina,https://t.co/xE49wsssJ7 +03/20/2017,Politicians,@CarlyFiorina,"I am excited that Jim Donovan is nominated as Treasury Dept. Secretary. He is well-qualified, has business experien… https://t.co/OsMHFb6Grv" +03/19/2017,Politicians,@CarlyFiorina,RT @corinnec: I have always loved this bit from @CarlyFiorina. Felt like going back and reading it again today. https://t.co/tiC95LgcNU +03/19/2017,Politicians,@CarlyFiorina,My deepest sorrows have been eased by Amazing Grace. I reflected on how many times both have lifted me up. I am filled with gratitude. 2/2 +03/19/2017,Politicians,@CarlyFiorina,Today we sang Amazing Grace and The Lord's Prayer. Some of my earliest memories are of whispering the Lord's Prayer in the dark. (1/2) +03/16/2017,Politicians,@CarlyFiorina,Looking forward to speaking at the @NR_Institute Ideas Summit! https://t.co/ZPfCtm2wrq #NRISummit17 +03/05/2017,Politicians,@CarlyFiorina,Thanks for having me! Great event. https://t.co/lalehs8KpO +03/05/2017,Politicians,@CarlyFiorina,".@RevDonDavidson at @FBCAlexandria reminds us that we are saved by grace alone. Thank you, dear Lord, for the gift of your amazing grace." +03/04/2017,Politicians,@CarlyFiorina,Frank and I are driving over to Prince William County for tonight’s GOP Lincoln-Reagan dinner. If you are in area I hope to see you there! +03/03/2017,Politicians,@CarlyFiorina,Looking forward to attending the #NRISummit17- hope to see you there! https://t.co/wAsFvHwA6D +03/02/2017,Politicians,@CarlyFiorina,Thrilled for @GovernorPerry confirmation as our next Energy Secretary. I know he is going to do a great job! https://t.co/6U9fWmmXbN +02/28/2017,Politicians,@CarlyFiorina,Looking forward to speaking at @RegentU Exec Leadership Series at 12:40 today. If you want you can watch live here—> https://t.co/B3n9Np0Ulw +02/28/2017,Politicians,@CarlyFiorina,"It was great to visit @colonialwmsburg yesterday, there are wonderful things going on! Thanks to Mitchell & Elisabe… https://t.co/79Hijfatyc" +02/28/2017,Politicians,@CarlyFiorina,@toddinva Thanks! +02/27/2017,Politicians,@CarlyFiorina,How will we know if we are on track to #MAGA? I believe there are 3 tests. https://t.co/mGswWjckwu +02/27/2017,Politicians,@CarlyFiorina,"Outstanding speech by @Schneider_DC at #CPAC2017 + +https://t.co/8cVP0CI3oP https://t.co/bsaF5r2to6" +02/27/2017,Politicians,@CarlyFiorina,@imanredzepi Thank you! +02/27/2017,Politicians,@CarlyFiorina,@apgarza1979 Thank you very much for those kinds words. +02/27/2017,Politicians,@CarlyFiorina,@jennaep7 Thank you! +02/27/2017,Politicians,@CarlyFiorina,"RT @OppLives: “there are many programs that work to treat the epidemic of addiction, but they don’t start in"" DC +—@CarlyFiorina https://t.c…" +02/27/2017,Politicians,@CarlyFiorina,Looking forward to tomorrow’s event at Regent University’s Executive Leadership Series! https://t.co/g7NCWmEe5M +02/27/2017,Politicians,@CarlyFiorina,"I enjoyed the wonderful conversation with @arthurbrooks +at #CPAC. + +https://t.co/eoViLOHks3" +02/27/2017,Politicians,@CarlyFiorina,It was good to join #CPAC2017 the other day. Check out this nice summary of my conversation with @arthurbrooks. https://t.co/GzlJb8VNJC +02/27/2017,Politicians,@CarlyFiorina,@andreacitymom Thanks Andrea! +02/20/2017,Politicians,@CarlyFiorina,@JustinYonker Thank you! I am glad you are enjoying it. +02/20/2017,Politicians,@CarlyFiorina,RT @LouDobbs: Tonight's #QuoteoftheDay by @CarlyFiorina! #Dobbs https://t.co/UyQ1vzpqjB +02/14/2017,Politicians,@CarlyFiorina,"There is nothing better than a great mystery from history! + +https://t.co/WOiHjfYdnS #History" +02/12/2017,Politicians,@CarlyFiorina,"2/2 ....Because he is a traitor."" Watch the rest of my interview w/ @MariaBartiromo here: https://t.co/7FoULIy7C3" +02/12/2017,Politicians,@CarlyFiorina,"1/2 ""...if Snowden is turned over to the United States, and certainly Russia should turn him over, that he is tried for treason…" +02/10/2017,Politicians,@CarlyFiorina,Thank you! https://t.co/bZd9wbCIgt +02/10/2017,Politicians,@CarlyFiorina,Nice to meet you Jacey! https://t.co/otY3Oink2x +02/10/2017,Politicians,@CarlyFiorina,@MauriceManny Thank you! +02/10/2017,Politicians,@CarlyFiorina,Thank you Congressman. Nice to see you! https://t.co/yLr6pOi2OT +02/10/2017,Politicians,@CarlyFiorina,It was a pleasure joining you https://t.co/aobNJzmRgw +02/10/2017,Politicians,@CarlyFiorina,@jrclaeys I am glad you were able to make it. Hope that you enjoyed the event. +02/10/2017,Politicians,@CarlyFiorina,"#Leaders are made not born. Will you choose to be a leader? + +https://t.co/szdLFLcrLN https://t.co/CcctfsqNQ1" +02/10/2017,Politicians,@CarlyFiorina,@MrBuffs123 Great to see you and thanks for your support! +02/01/2017,Politicians,@CarlyFiorina,The @POTUS has made an excellent choice in naming Judge Gorsuch as the next SCOTUS. He has my full support. +01/22/2017,Politicians,@CarlyFiorina,@JustuW8 Thank you! +01/22/2017,Politicians,@CarlyFiorina,About to join @SundayFutures to discuss economy and @TrumpInagural with @MariaBartiromo tune into Fox Business now! +01/21/2017,Politicians,@CarlyFiorina,Looking forward to joining @MariaBartiromo tomorrow for @SundayFutures. Hope you can tune in! https://t.co/49Wxgvivyl +01/20/2017,Politicians,@CarlyFiorina,We also thank President Obama and VIce-President Biden for their service. #InaugurationDay (2/2) +01/20/2017,Politicians,@CarlyFiorina,Today we celebrate the peaceful transfer of power in our country. Congratulations @realDonaldTrump & @mike_pence (1/2) +01/20/2017,Politicians,@CarlyFiorina,"RT @POLITICOLive: ""The complexity of the tax code favors the big companies over the small companies"" @CarlyFiorina #POLITICOHub #PlaybookLi…" +01/20/2017,Politicians,@CarlyFiorina,Thank you @JakeSherman & @apalmerdc for the wonderful @politico conversation this morning. https://t.co/KYOAfbjHP1 +01/20/2017,Politicians,@CarlyFiorina,@molliekate97 sorry that we missed you at the event! +01/19/2017,Politicians,@CarlyFiorina,RT @Chell_is_Skyy: Do not let people define you. You define yourself by the choices you make----- @CarlyFiorina #CarpeFuturum +01/19/2017,Politicians,@CarlyFiorina,#servantleadership https://t.co/KMZQ2Nzl8W +01/19/2017,Politicians,@CarlyFiorina,@ams2901 I am glad that you enjoyed it! +01/19/2017,Politicians,@CarlyFiorina,@natashawolfff Thanks! Glad that you enjoyed it. +01/19/2017,Politicians,@CarlyFiorina,"RT @eriinmelan: Probably the best saying to define your life ""Know your worth and your value"" - @CarlyFiorina #envision" +01/19/2017,Politicians,@CarlyFiorina,@shestylestou if we can agree on #servantleadership then that is good enough by me. Have a nice night! +01/19/2017,Politicians,@CarlyFiorina,@alexiageorgette glad to hear that! Stay motivated! +01/19/2017,Politicians,@CarlyFiorina,Thank you @theblakebarclay. It was nice to meet you! +01/19/2017,Politicians,@CarlyFiorina,"My friend & very successful former Texas Governor, @GovernorPerry will make an outstanding Sec of Energy. Read —> +https://t.co/nR71Kqwmdq" +01/17/2017,Politicians,@CarlyFiorina,.@BetsyDeVos is an advocate for America’s school children & will take on teacher’s unions. An inspired choice! https://t.co/ym3JwhiY5b +01/14/2017,Politicians,@CarlyFiorina,.@betsydevos will be a transformative Sec of Ed- helping all students- read why I support her: https://t.co/9NJZ77c5bP +01/12/2017,Politicians,@CarlyFiorina,Hope you were able to catch The Messy Truth with @VanJones68 last night on @CNN. Enjoyed the conversation! https://t.co/20zbDw3CQX +01/11/2017,Politicians,@CarlyFiorina,".@realDonaldTrump made a good choice in @ElaineChao, she'll be an excellent Sec. of Trans. I know she’ll impress the American people!" +01/11/2017,Politicians,@CarlyFiorina,Looking forward to the live town hall w/ @VanJones68 tomorrow night at 9pm EST on @CNN. Hope you can watch! +01/10/2017,Politicians,@CarlyFiorina,"During today’s hearing @SenatorSessions demonstrated why he’s the principled, tireless leader we need as our next Attorney General." +12/17/2016,Politicians,@CarlyFiorina,".@GovernorPerry is a great pick to lead America's energy future. He's a tough, smart, dedicated leader. +https://t.co/bChbeym8Gq" +12/16/2016,Politicians,@CarlyFiorina,I offer my wholehearted support to my friend @AndyPuzder as our nation’s next Secretary of Labor. Learn why: https://t.co/droMtUsRHf +12/15/2016,Politicians,@CarlyFiorina,"Proud to support my friend @Linda_McMahon to lead @SBAgov. Read why +https://t.co/rITbEsX3vt" +12/10/2016,Politicians,@CarlyFiorina,"Today, I offer my enthusiastic endorsement of @SenatorSessions to be our next Attorney General. Read why —> +https://t.co/OMjsQ5RUTO" +12/09/2016,Politicians,@CarlyFiorina,Looking forward to attending the @VA_GOP Advance this weekend. Will be great to see friends new and old there. Hope… https://t.co/wnaLbO5w8V +12/09/2016,Politicians,@CarlyFiorina,The inauguration of the 45th President - @realDonaldTrump - is fast approaching. For info & updates make sure you follow @TrumpInaugural +12/07/2016,Politicians,@CarlyFiorina,Enjoyed speaking at Heritage Foundation about the challenges we face domestic and abroad and the great opportunity… https://t.co/yLdY7D5lNn +12/07/2016,Politicians,@CarlyFiorina,"Enjoyed speaking with No VA Chamber the other day. + +“Other people’s comments do not define you.” + +https://t.co/I6lOefPtk5" +12/05/2016,Politicians,@CarlyFiorina,@kathrynfalk @NOVAChamber @CoxVA Thanks for coming! +12/05/2016,Politicians,@CarlyFiorina,.@NOVAChamber Thanks for having me today! https://t.co/TrCbl6FsdL +12/05/2016,Politicians,@CarlyFiorina,"RT @HeliosHR: When looking for people to hire, @CarlyFiorina looks for courage, character, collaboration, and people who see possibilities…" +12/05/2016,Politicians,@CarlyFiorina,"RT @jackmoore_ei: @CarlyFiorina - In a rapidly-changing world, the status quo isn't always the least risky option. Sometimes it's innovatio…" +12/02/2016,Politicians,@CarlyFiorina,Thank you for a wonderful event @TheHRH https://t.co/iAAMbKz2Kd +12/02/2016,Politicians,@CarlyFiorina,Thanks @CABachelder! Thank you to @IWF for a wonderful event. https://t.co/kYH5CkZ6H1 +11/24/2016,Politicians,@CarlyFiorina,As our family gathers today to be thankful for how blessed we are we hope that you and yours have a wonderful day. 3/3 +11/24/2016,Politicians,@CarlyFiorina,"Let us be grateful to live in a nation of citizen government, where we can constrain power, so that it not be abused. 2/3" +11/24/2016,Politicians,@CarlyFiorina,"Frank & I are thankful to live in a nation where each of us, regardless of who we are or what our circumstances, have inalienable rights 1/3" +11/21/2016,Politicians,@CarlyFiorina,Stand with me in supporting my friend @EdWGillespie for Governor. #EdForVirginia https://t.co/RBIJBoPuHt +11/11/2016,Politicians,@CarlyFiorina,"Proud to be American on a day we honor the service & sacrifice of those who keep this the land of the free, home of the brave. #VeteransDay" +11/09/2016,Politicians,@CarlyFiorina,Congrats @realDonaldTrump and @mike_pence. The American people have spoken. Time for real change that unites us and carries us forward. +11/04/2016,Politicians,@CarlyFiorina,Why I’m endorsing Tom Garrett for Congress here in Virginia: https://t.co/IPM9Q7hxQT +11/03/2016,Politicians,@CarlyFiorina,Why I’m endorsing @rogermarshallMD for Congress in Kansas’s 1st District: https://t.co/Mw1p8iH2E3 +11/02/2016,Politicians,@CarlyFiorina,Why I’m standing with Richard Shelby for Senate: https://t.co/zeKVZJKN2j +11/02/2016,Politicians,@CarlyFiorina,Why Florida needs @marcorubio in Washington: https://t.co/X26OyV1FX8 +11/02/2016,Politicians,@CarlyFiorina,Proud to endorse Gen. @DonBacon2016 for Congress in NE: https://t.co/QPGdt8SLhm +10/31/2016,Politicians,@CarlyFiorina,Why @willhurd is the leader Texas’s 23rd District needs in Washington: https://t.co/cvJ4pe3XVc +10/31/2016,Politicians,@CarlyFiorina,I’m proud to endorse @RepMGriffith for Congress in my home state of Virginia: https://t.co/gmhkL19Ggx +10/27/2016,Politicians,@CarlyFiorina,"Why Indiana needs a conservative fighter like @ToddYoungIN in the U.S. Senate: +https://t.co/CzoSZlWFfv" +10/27/2016,Politicians,@CarlyFiorina,.@RoyBlunt is the conservative leader Missouri needs. Here’s why I’m endorsing him: https://t.co/jYGZjZrsm6 +10/26/2016,Politicians,@CarlyFiorina,I’m standing with @MiaBLove for Congress in Utah. And here’s why you should too: https://t.co/MBfPqbWOQu +10/26/2016,Politicians,@CarlyFiorina,Why I’m supporting @TeamCoffman2016 for Congress in Colorado: https://t.co/rkXq3OAiXS +10/25/2016,Politicians,@CarlyFiorina,I’m endorsing @KathyforMD for U.S. Senate in Maryland. Here’s why: https://t.co/B4nhOkY8x0 +10/24/2016,Politicians,@CarlyFiorina,I’m supporting @ScottTaylorVA for Congress in Virginia. Here’s why you should too: https://t.co/ij6dg9wmmy +10/21/2016,Politicians,@CarlyFiorina,Proud to endorse @JohnThune for U.S. Senate in South Dakota: https://t.co/73ZMS9zoKx +10/20/2016,Politicians,@CarlyFiorina,Wonderful time campaigning with @BrianFitzUSA for Congress in Pennsylvania yesterday. I'm proud to endorse him: https://t.co/VzgQPAMxJ5 +10/19/2016,Politicians,@CarlyFiorina,Had a great time campaigning in Roanoke for my friend and fellow Virginian @BobGoodlatte6 on Monday! https://t.co/5IztDjTD1N +10/18/2016,Politicians,@CarlyFiorina,I’m endorsing @MikeforWI. Here’s why: https://t.co/51KosnB4qd +10/17/2016,Politicians,@CarlyFiorina,Why @DannyTarkanian is the leader Nevada’s families and communities need in Congress: https://t.co/QolyP9B3wK +10/15/2016,Politicians,@CarlyFiorina,Why you should vote for Lloyd Smucker: https://t.co/R5sgKLoX4A +10/14/2016,Politicians,@CarlyFiorina,Proud to stand with @SenatorTimScott for South Carolina—and I hope you will too: https://t.co/v48FxVg8Tz +10/14/2016,Politicians,@CarlyFiorina,Why I’m endorsing @leezeldin for Congress in New York: https://t.co/eekr4nqlkg +10/14/2016,Politicians,@CarlyFiorina,I’m proud to endorse @SenatorIsakson in Georgia. Here’s why: https://t.co/FAfSErEViu +10/13/2016,Politicians,@CarlyFiorina,"The Left's policies hold us back, not help us grow. Why we must invest in the potential of the American people: https://t.co/pDg74Vv1H6" +10/12/2016,Politicians,@CarlyFiorina,2 ways the business world made me understand what it means to be a conservative: https://t.co/6sOCJKAfZ6 +10/12/2016,Politicians,@CarlyFiorina,Proud to endorse @repgoodlatte. Here’s why he’s the kind of leader Virginia needs in Washington: https://t.co/QJelCc923N +10/12/2016,Politicians,@CarlyFiorina,.@ClaudiaForNY22 is the conservative leader Upstate New York needs. Here’s why I’m standing with her: https://t.co/WhR6WePhpD +10/10/2016,Politicians,@CarlyFiorina,Why the Constitution needs to be protected now more than ever: https://t.co/Yb2FcIFGbM +10/10/2016,Politicians,@CarlyFiorina,.@RepHardy puts the people of Nevada before himself—and that’s why I’m proud to endorse him: https://t.co/9zAVJk8ATy +10/08/2016,Politicians,@CarlyFiorina,My thoughts: https://t.co/1ck3UddzdR +10/07/2016,Politicians,@CarlyFiorina,Proud to announce my endorsement of @YoungForIowa. Here’s why: https://t.co/m8gmjCvPX3 +10/06/2016,Politicians,@CarlyFiorina,Michigan needs Gen. Jack Bergman in Congress. Here’s why I’m endorsing him: https://t.co/1KQKMkEolD +10/06/2016,Politicians,@CarlyFiorina,Sen. @ChuckGrassley has never stopped fighting for Iowa. Here’s why I’m endorsing him: https://t.co/q8FZRpDffv +10/04/2016,Politicians,@CarlyFiorina,Arkansas needs to keep John Boozman fighting in the U.S. Senate. Here’s why I’m endorsing him: https://t.co/jgiYXFIXSA +10/02/2016,Politicians,@CarlyFiorina,Montana needs a strong conservative leader in Congress. Here’s why I’m supporting Ryan Zinke: https://t.co/t1pYA6Zu7j +10/01/2016,Politicians,@CarlyFiorina,Darryl Glenn is the conservative leader Colorado needs. Here’s why I’m proud to endorse him for U.S. Senate: https://t.co/ShG3l4RJ6X +09/30/2016,Politicians,@CarlyFiorina,I’m proud to endorse my friend @SenJohnMcCain for Senate: https://t.co/6oEwCykVPn +09/29/2016,Politicians,@CarlyFiorina,Michigan needs a leader like Tim Walberg in Congress. Here’s why: https://t.co/8QEbDDWBC9 +09/28/2016,Politicians,@CarlyFiorina,Why I’m proud to endorse @RandPaul for U.S. Senate in Kentucky: https://t.co/jz9es0kbKV +09/28/2016,Politicians,@CarlyFiorina,"Each time I met him, Shimon Peres was a gentleman & a patriot—a true leader for Israel & the world. He'll be missed: https://t.co/jCCu4nuRe9" +09/28/2016,Politicians,@CarlyFiorina,.@RepErikPaulsen is the leader Minnesota needs in Congress—and here’s why I’m proud to endorse him: https://t.co/mC2AvXosJC +09/27/2016,Politicians,@CarlyFiorina,Why I’m standing with @Heck4Nevada for #NVSen (and why you should too): https://t.co/HLkV3u2iy3 +09/27/2016,Politicians,@CarlyFiorina,John Faso is the fighter New York needs in Washington. Here’s why I’m so proud to endorse him: https://t.co/lhSUf1eOD9 +09/27/2016,Politicians,@CarlyFiorina,Don't forget: @GovernorPerry is raising money for veterans on @DancingABC tonight! Vote at 1-800-868-3410 or https://t.co/p7LLsEcaaW #DWTS +09/27/2016,Politicians,@CarlyFiorina,"What we can expect @HillaryClinton on #debatenight: lies, lies, lies, and more lies. https://t.co/X9DiAOGM1H" +09/23/2016,Politicians,@CarlyFiorina,I’m so pleased to endorse Heidi Ganahl for the CU Board of Regents. Here’s why she’s the leader Colorado needs: https://t.co/30LS2xrIhw +06/26/2018,Politicians,@RickSantorum,RT @USAEnergy: #RFSworks for energy security says AESI co-chairs @JimTalent @RickSantorum. Read more here:https://t.co/nMgEuhiMlm https://t… +06/20/2018,Politicians,@RickSantorum,Glad to see @POTUS and @VP are going to SC to campaign for a great conservative @henrymcmaster - the only candidate… https://t.co/ypIvbyHLJ6 +06/18/2018,Politicians,@RickSantorum,"Watch: CNN Panel Looks Off Camera, Starts Twitching When Asked to House Illegals https://t.co/yUXedD36oc" +06/17/2018,Politicians,@RickSantorum,Just saw this article. Thanks @maule_will and Faithwire for a wonderful Father’s Day gift. https://t.co/0Ro9idGDr8 +06/17/2018,Politicians,@RickSantorum,"An inspiring story of parents whose love for their daughter not only saved her life, but the lives of countless oth… https://t.co/c3ciRGkRVh" +06/12/2018,Politicians,@RickSantorum,Prayers going out to my friend Larry Kudlow. +06/06/2018,Politicians,@RickSantorum,".@POTUS Thank you for standing w struggling rural Americans, as you promised you would. https://t.co/NCak4pZdxX" +06/05/2018,Politicians,@RickSantorum,".@POTUS has done a great job w our economy. Only one area hurting - Farm Country. They believed in him, its time to… https://t.co/MnQwnN8Pvq" +05/29/2018,Politicians,@RickSantorum,Will be interested in seeing if all those who attacked me for what I said on @CNNSotu will now direct their venom t… https://t.co/YLufd5JzVu +05/26/2018,Politicians,@RickSantorum,https://t.co/KFcC8r4Rkl. It is time for congress and president to listen to the grassroots and fix the disaster that is the #ACA. +05/25/2018,Politicians,@RickSantorum,Obamacare is imploding and millions are feeling the pain. The #HealthCareChoicesAct will lower costs and increase a… https://t.co/Wj1gJtzoJn +05/25/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Irish Artists Are Horrified by U2 Urging Citizens to Vote for Abortion. @RickSantorum explains what he shared with his… +04/27/2018,Politicians,@RickSantorum,We must fix this broken healthcare system to lower costs and improve access to the doctors you want. It can be done. https://t.co/4RQtuI5gP3 +04/18/2018,Politicians,@RickSantorum,Every Republican in Congress promised they would deal with the problems of the ACA. It is not too late to act to lo… https://t.co/LwyXT0I9tK +04/16/2018,Politicians,@RickSantorum,RT @CNNSotu: On #CNNSOTU @RickSantorum says Trump Twitter habits are a 'frustration' https://t.co/pfEyGdh5PH +04/15/2018,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @SenAngusKing, @MichaelAvenatti, @PreetBharara, @JenGranholm, @RickSantorum, @…" +04/11/2018,Politicians,@RickSantorum,Proud to endorse @MangoForPA for #PAGov It is time Pennsylvania conservatives rally around Paul! A man I trust on… https://t.co/7CTqtq4tKP +04/06/2018,Politicians,@RickSantorum,"We were at dinner w Darrell and Sandy Scott, the founders of @RachelsChalleng. Kyle, I hope your app can match the… https://t.co/S6DDBmJM8n" +03/26/2018,Politicians,@RickSantorum,My point on #CNNSOTU is the same point I have made since the shooting - relying on more government to focus on guns… https://t.co/701Xsr0I8P +03/20/2018,Politicians,@RickSantorum,Life Support for ObamaCare. Great summary of the policy disaster being pushed by House GOP leadership. No life supp… https://t.co/gtkclLXGmb +03/16/2018,Politicians,@RickSantorum,Republicans Are Trying to Bail Out Obamacare https://t.co/bkpB7fjrHB. Propping up a failed system is bad policy and… https://t.co/vyt4lKHEji +03/14/2018,Politicians,@RickSantorum,@jaketapper @ConorLambPA .@jaketapper @ConorLambPA was not chosen in a primary open to the public and progressive m… https://t.co/91Vr9RgKo7 +03/13/2018,Politicians,@RickSantorum,Setting the record straight and making the case for strengthening rural America. https://t.co/UNShHbAo32 #ethanol +03/08/2018,Politicians,@RickSantorum,There is only one true Prolife candidate for governor in PA. https://t.co/RSjaW4CLWn +03/08/2018,Politicians,@RickSantorum,I am a great fan of Joel and his novels. Every book is prescient and gripping and #TheKremlinConspiracy is no excep… https://t.co/XFatModeg0 +03/07/2018,Politicians,@RickSantorum,Please join us! https://t.co/zjZe3zLpcf +03/02/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU with @jaketapper this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @chavezlinda and @Bakari_Sell…" +02/27/2018,Politicians,@RickSantorum,https://t.co/pqeG72oIEd +02/27/2018,Politicians,@RickSantorum,https://t.co/zAa6IkohHU +02/27/2018,Politicians,@RickSantorum,Saying that boys need dads is not an attack on moms. Fact- vast majority of young men in prison & school shooters w… https://t.co/IvfmSXbhNk +02/25/2018,Politicians,@RickSantorum,I will! https://t.co/RYRnta4iSC +02/22/2018,Politicians,@RickSantorum,"Proud to endorse my friend @RogerWicker who has been a stalwart conservative, in particular helping me in the fight… https://t.co/JipdIwTkKv" +02/20/2018,Politicians,@RickSantorum,I admit I am one of the five. https://t.co/sMUXu6D62x +02/20/2018,Politicians,@RickSantorum,"PA is indeed a proud commonwealth and should be referred to as such, but it is not incorrect to call PA a state sin… https://t.co/vPb68AAqCW" +02/14/2018,Politicians,@RickSantorum,In church now praying for the victims the families and the community. May God have mercy on their souls and give comfort to all who mourn. +02/12/2018,Politicians,@RickSantorum,"RT @realDonaldTrump: Rep. Lou Barletta, a Great Republican from Pennsylvania who was one of my very earliest supporters, will make a FANTAS…" +02/11/2018,Politicians,@RickSantorum,Looking forward to seeing how a great university welcomes diverse viewpoints. https://t.co/EsMa1RS6P6 +02/11/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU with @jaketapper this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @chavezlinda and @K_JeanPierr…" +02/04/2018,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Busy morning here at #CNNSOTU w/ @JakeTapper: @SenatorDurbin, @jahimes, @RepBradWenstrup, @RickSantorum, @JenGra…" +01/31/2018,Politicians,@RickSantorum,Like @realDonaldTrump the #sotu is different in that it is laced throughtout with narratives. Not just a policy add… https://t.co/iiPwvTvV57 +01/30/2018,Politicians,@RickSantorum,Will be on CNN tonight before and after #SOTU. Top of my wish list for @realDonaldTrump tonight - challenge senate… https://t.co/kt4GsrGrDk +01/19/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Let's support the @March_for_Life today by passing the Born-Alive Abortion Survivors Protection Act (H.R. 4712) introdu… +01/19/2018,Politicians,@RickSantorum,RT @Patriot_Voices: Thank you @realDonaldTrump for speaking to the @March_for_Life! Watch here at approximately 12:15pm ET: https://t.co/vo… +01/19/2018,Politicians,@RickSantorum,Will be on @AC360 to discuss why Democrats are voting against a spending bill tonight that they had nothing in it t… https://t.co/DAJA0oiiF4 +01/18/2018,Politicians,@RickSantorum,"Not acting on replacing Obamacare would not only be political suicide, but would be abandoning 30 million people tr… https://t.co/Sw6LovdsAD" +01/14/2018,Politicians,@RickSantorum,https://t.co/kVVEvjHiFK. The intolerance of the left rears its ugly head yet again. +01/14/2018,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU w/ @jaketapper this Sunday to hear from our panel: @RickSantorum, @neeratanden,@carlosgutierrez and @K_Jean…" +01/10/2018,Politicians,@RickSantorum,Here are some facts to counter the left’s assertions that the current immigration system works just fine. I am pro… https://t.co/uDUhSxQ1qt +01/10/2018,Politicians,@RickSantorum,"The House Chairmen’s Plan for Immigration Reform. This proposal protects American workers, makes us safer and keeps… https://t.co/FPGzyJwYth" +12/15/2017,Politicians,@RickSantorum,We families with children devote most of our money and time to raise and educate the next generation to defend our… https://t.co/LSVRqVpAQi +12/12/2017,Politicians,@RickSantorum,RT @patriotmom61: Catch @RickSantorum today at the top of the 3 pm ET hour on with @BrookeBCNN #Trump #AlabamaSenateRace #tcot https://t.c… +12/12/2017,Politicians,@RickSantorum,Will be on CNN all evening covering the Alabama senate race. Would appreciate any intel from my Alabama followers. +12/03/2017,Politicians,@RickSantorum,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @MarkWarner, @SenatorTimScott, @RickSantorum , @K_JeanPierre , @JenGranholm &…" +11/29/2017,Politicians,@RickSantorum,Looking forward to defending our constitutional rights at GW tonight. Join us at https://t.co/tKIRBI680n. https://t.co/PbWumURcJf +11/28/2017,Politicians,@RickSantorum,The next first family of Minnesota! God speed. https://t.co/EyZAzKBhFM +11/27/2017,Politicians,@RickSantorum,Americans are waking up to war on vast majority of campuses against anything and anybody that doesn’t agree with pr… https://t.co/liTanexA0b +11/27/2017,Politicians,@RickSantorum,.@repmattdean and Laura Dean are great people and will be a huge upgrade in the governors office in MN! Looking fo… https://t.co/z7GRufB9bg +11/27/2017,Politicians,@RickSantorum,Thank you Aimee and all YAF members for your courage and hard work. Can’t wait to defend our constitution at George… https://t.co/yu2nBAVGN0 +11/26/2017,Politicians,@RickSantorum,Stephen Moore is so right! Congress should add these provisions to the tax bill now. https://t.co/GKqdmZGFF6 +11/08/2017,Politicians,@RickSantorum,"Off camera note in large print from @AC360 to me, note in small print added by @VanJones68. https://t.co/2jcnPpe5Gf" +11/01/2017,Politicians,@RickSantorum,"For those not watching WS game 7, join me on @AC360 at 9 ET. Will be on for the full hour." +10/21/2017,Politicians,@RickSantorum,Wish I could join the next Lt Gov of GA @DavidShafer on Sunday in Duluth. https://t.co/9SuciHCGlj +10/21/2017,Politicians,@RickSantorum,@NCCouncilman @alexandraheuser Thanks Ethan. Great being w you and @MikeDeWine at K’s Hamburger Shop in Troy again. +10/20/2017,Politicians,@RickSantorum,"RT @CNNSotu: Tune into #CNNSOTU this Sunday to hear from our panel: @RickSantorum, @jrpsaki, @Bakari_Sellers and @Evan_McMullin. https://t.…" +10/10/2017,Politicians,@RickSantorum,".@ingrahamangle new must read book takes on the GOP Establishment & explains the populist rise of @realdonaldtrump. +https://t.co/rJ1MPNkvuD" +10/10/2017,Politicians,@RickSantorum,@EFrazier512 @SarahLeeAnne @alexandraheuser Let me apologize for not sending a thank you. I didn’t have many contri… https://t.co/IBuRnm1pp8 +10/09/2017,Politicians,@RickSantorum,Looks like a good crowd. Looking forward to some great interaction with the students. https://t.co/ACVt2JrFgS +10/09/2017,Politicians,@RickSantorum,Having a great day in Tuscaloosa. Just visited the Sabin Catholic Center. https://t.co/ACVt2JrFgS +10/08/2017,Politicians,@RickSantorum,Will be on in a few minutes. https://t.co/b4UwmyWi69 +09/24/2017,Politicians,@RickSantorum,@valsthewoman Not the same rules. Block grant allows states to spend money to set up a completely different approach. Broad flexibility. +09/22/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum Explains the Graham-Cassidy Healthcare Plan With Mark Levi... https://t.co/UKyzjpPQjS #GrahamCassidy #tcot… +09/21/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum coming up on @marklevinshow at 7:15 pm EST to discuss #GrahamCassidy plan. Tune in! #MAGA #tcot #teaparty… +09/21/2017,Politicians,@RickSantorum,"Read what can happen by giving states the flexibility in #GrahamCassidy. Better coverage, higher quality, less money https://t.co/mfufbfIWpz" +09/21/2017,Politicians,@RickSantorum,Great synopsis dispelling myths and extolling the benefits of #GrahamCassidy. Call your senator now 202-224-3121.… https://t.co/ZUj2LqcrCG +09/21/2017,Politicians,@RickSantorum,Happy to have been part of an effort to end his aggravation permanently. Let's help put him out of his misery - hel… https://t.co/NjIc10Q0Ah +09/21/2017,Politicians,@RickSantorum,".@RandPaul voted for ""skinny"" repeal that kept more ACA taxes than #GrahamCassidy, but opposes GC because it doesn't repeal all ACA taxes???" +09/21/2017,Politicians,@RickSantorum,"Fascinating to see @RandPaul working hard to save Medicaid Expansion. Opposes #GrahamCassidy, but voted for ""skinny"" bill that preserved it." +09/21/2017,Politicians,@RickSantorum,It's #GrahamCassidyِ or Berniecare. Even Bernie agrees Ocare is a failure why else would he propose a new system. https://t.co/v0ljXWXlpP +09/21/2017,Politicians,@RickSantorum,"#GrahamCassidy doesn't amend ACA insurance regs on pre-existing condition, gives states flexibility on how to provi… https://t.co/rDN4Uu7yFF" +09/19/2017,Politicians,@RickSantorum,My response to Senator Paul's distortion of #GrahamCassidy https://t.co/4I2NJ1dsS6. Call your senator to vote yes on repeal and replace! +09/19/2017,Politicians,@RickSantorum,Must read to understand how more people will get better coverage under #GrahamCassidyِ https://t.co/amRQZ2dHyE +09/19/2017,Politicians,@RickSantorum,Call your senators to vote yes on #GrahamCassidy. https://t.co/P8Df8XRfgR +09/18/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Chuck Schumer & Elizabeth Warren tweeting opposition to #GrahamCassidy! Ask Senate to support here https://t.co/CGvOjWD… +09/18/2017,Politicians,@RickSantorum,.@dougducey thank you for all the work you did to improve #GrahamCassidy and for taking the lead for better healthc… https://t.co/8AFuxB7lU7 +09/17/2017,Politicians,@RickSantorum,"Logic? I want to give parents the power to save innocent life, not the power to take innocent life. Not just about… https://t.co/XZC7url7ir" +09/17/2017,Politicians,@RickSantorum,A man who wants to make sure parents of children w birth defects not the government have the power to decide what i… https://t.co/WvF08rP2KO +09/17/2017,Politicians,@RickSantorum,RT @alexandraheuser: @RickSantorum #CNNSOTU here's the story the Democrats have finally stood up and admitted that Obamacare is a failure. +09/17/2017,Politicians,@RickSantorum,Emergency room visits hit all-time high during ACA implementation https://t.co/ad40R57oMJ. Now who is the dolt? Pas… https://t.co/TDZaYRtZDG +09/17/2017,Politicians,@RickSantorum,#GrahamCassidy is only option to stop job killing employer mandate. Passage will cut taxes the deficit and spending… https://t.co/FSYzpWCv4p +09/15/2017,Politicians,@RickSantorum,"At the Capitol today working w senate Republicans building support for innovative, quality driven, affordable healthcare. End of ACA is near" +09/14/2017,Politicians,@RickSantorum,RT @LindseyGrahamSC: https://t.co/AL9KH3cKdL +09/13/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch @RickSantorum live at 4pm with @jennybethm of Tea Party Patriots. Will share here: https://t.co/NbSuBtSdU1 +09/13/2017,Politicians,@RickSantorum,Watch press conference here. Contact your Senators and Governors. #DrainTheSwamp https://t.co/PU9U6GZ86n +09/07/2017,Politicians,@RickSantorum,Great to see my good friend Dan Meuser throw his hat in the ring in #PA11 #papolitics +09/03/2017,Politicians,@RickSantorum,Back to back shows this morning. Join @CNNSotu and me for a #LabourDayWeekend Doubleheader! https://t.co/zkC5XiRAAJ +08/31/2017,Politicians,@RickSantorum,.@ScottWalker has provided incredible leadership to rally support for this proposal w other govs. https://t.co/tpyyBzBwTs via @BreitbartNews +08/29/2017,Politicians,@RickSantorum,Just received an email from @RepLouBarletta. He is running for US Senate in PA! Check out his announcement video. https://t.co/VmjBhHl14Q +08/25/2017,Politicians,@RickSantorum,"For conspiracy theorists who think @FosterFriess is trying to manipulate coffee futures, I am sure that he will pay… https://t.co/2wetyDs2dH" +08/25/2017,Politicians,@RickSantorum,ACA gives 40% of $ to 4 wealthy states w 21% of the people. Support R Govs plan to treat needy the same in each St. https://t.co/uJ7bwwb5dZ +08/24/2017,Politicians,@RickSantorum,Safe spaces and ‘ze’ badges: My bewildering year at a US university https://t.co/36m7XGuHXA +08/22/2017,Politicians,@RickSantorum,Santorum Crafting Different Obamacare Repeal Plan with Lawmakers: ‘It Will Pass Through the House and the Senate’ https://t.co/CIcfzy5VqO +08/21/2017,Politicians,@RickSantorum,What a great challenge! Join @FosterFriess in having coffee with someone you disagree with. #return2civility @VanJones68 coffee? +08/20/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Make sure to watch @RickSantorum on @CNNSotu Sunday morning! https://t.co/VmpXNeYvqa +08/08/2017,Politicians,@RickSantorum,RT @FuelsAmerica: Happy Birthday #RFS. Join the celebration by telling @EPA that the #RFSWorks for America! Click HERE ➡️ https://t.co/MRKi… +08/06/2017,Politicians,@RickSantorum,"RT @CNNSotu: This AM w/ @JakeTapper: @GovChristie, @RepAdamSchiff, @SenRonJohnson, @ninaturner, @RickSantorum, @amandacarpenter, @RepRoKhan…" +08/06/2017,Politicians,@RickSantorum,Santorum: How to get family policy right for working families | TheHill https://t.co/engF9zxDDI +08/03/2017,Politicians,@RickSantorum,American made biofuels will be key to making sure we reach energy security! #MAGA https://t.co/e2Sue77drb +08/03/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Co-Chair @RickSantorum reminds @EPA that #ethanol represents the next great economic driver in the heartland. https://t… +08/03/2017,Politicians,@RickSantorum,Thanks @DineshDSouza & @LifeZette for telling the truth. Debunking the Lie That Trump Is a Fascist | LifeZette https://t.co/LuRAy5Cbmc via +08/03/2017,Politicians,@RickSantorum,.@POTUS Working w GOP Govs on welfare in 96 produced most successful reform in history Thanks for engaging them on #healthcare. #leadership +08/03/2017,Politicians,@RickSantorum,.@POTUS Thanks for not giving up on #healthcarebill & supporting sending money to states where 25 states totally controlled by GOP v 6 by Ds +08/03/2017,Politicians,@RickSantorum,I think Archbishop Chaput sums up my response very well. https://t.co/EHrQHM3WDK. https://t.co/8Ugjqdvx8s +07/31/2017,Politicians,@RickSantorum,"AP is reporting my good friend @loubarletta is running for the Senate against Casey. Boy, wouldn't that be great! #RunLouRun" +07/28/2017,Politicians,@RickSantorum,"If senate passes ""Skinny Repeal"" GCH can be substituted in conference. Only chance to get majorities in both houses. https://t.co/Pq7nkUJJvS" +07/27/2017,Politicians,@RickSantorum,"Congratulations to my good friend, there is no better defender if religious liberty. Well done @POTUS! https://t.co/4IHVQhbe1R" +07/27/2017,Politicians,@RickSantorum,"RT @BillCassidy: Proud to have @SenDeanHeller join me and @LindseyGrahamSC as a cosponsor of the Graham-Cassidy Amendment. ""Graham-Cassidy-…" +07/26/2017,Politicians,@RickSantorum,Thank you for putting the security of our country and the safety and efficacy of our soldiers ahead of gender polit… https://t.co/gzGY83hlZj +07/26/2017,Politicians,@RickSantorum,Tune into CSpan2 to hear Senators Cassidy and Graham discuss the only viable alternative to ACA. +07/20/2017,Politicians,@RickSantorum,Truly enjoyed my conversation w a great former Pittsburgher at the Capitol. @UKCoachCalipari https://t.co/mxiNfe7uD4 +07/20/2017,Politicians,@RickSantorum,Working on moving healthcare decisions out of D.C. and closer to the doctor and patient. #GrahamCassidy.… https://t.co/RaGEhvlLuv +07/18/2017,Politicians,@RickSantorum,"@POTUS after last night's announcements on McConnell bill, the only viable path left to get 50 votes is #GrahamCassidy. #Drain the Swamp" +07/18/2017,Politicians,@RickSantorum,"For the Love of Charlie Gard +Well said Bill, I couldn't have said it better. https://t.co/jvuEgiFEDQ" +07/13/2017,Politicians,@RickSantorum,"Modeled after Welfare Reform. This will #DrainTheSwamp Graham, Cassidy unveil alternative plan @CNNPolitics https://t.co/z8Z99jPXqw" +07/09/2017,Politicians,@RickSantorum,RT @PVCoDirectorVal: @RickSantorum wants #GOP Governors to put together a Healthcare Solution that enables #Senators to #RepealAndReplace #… +07/06/2017,Politicians,@RickSantorum,RT @USAEnergy: #RFSworks for energy security says AESI co-chairs @JimTalent @RickSantorum https://t.co/GYb00oFQd0 https://t.co/7x2KL0r6Wr +07/05/2017,Politicians,@RickSantorum,Looking forward to speaking with our country's future leaders. Great young people who have the courage to stand for… https://t.co/dpKFuQdl3X +07/05/2017,Politicians,@RickSantorum,RT @patriotmom61: .@RickSantorum will be on @CNNnewsroom at 2:15 EST to discuss @POTUS trip to #G20Summit & more. #Trump #Putin #Russia #AH… +07/04/2017,Politicians,@RickSantorum,RT @USAEnergy: Each gallon of homegrown #ethanol brings us one step closer to long-term energy security. Happy #July4th! https://t.co/lxHqt… +07/01/2017,Politicians,@RickSantorum,"Failure means ACA stays, worse some Rs would join Ds to give it more money so it doesn't collapse. @POTUS must sign… https://t.co/7EwOq2mLAg" +06/26/2017,Politicians,@RickSantorum,"RT @USAEnergy: Pres @realDonaldTrump applauded in US heartland for commitment to homegrown #biofuels, #ethanol https://t.co/oTZ1OUi2Ws" +06/26/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Send quick email to your US Senators to pass Senate Health Care Bill & defund Planned Parenthood by using link here: ht… +06/25/2017,Politicians,@RickSantorum,RT @yaf: Don't miss out on the opportunity to hear @RickSantorum at YAF's NHSLC! Register here: https://t.co/DmXSl0xHL0 https://t.co/J5sliB… +06/23/2017,Politicians,@RickSantorum,Will also be on @OutFrontCNN tonight talking senate healthcare bill. https://t.co/2iN2e61i97 +06/18/2017,Politicians,@RickSantorum,"RT @CNNSotu: Joining @jaketapper this Sunday on #CNNSOTU : @Bakari_Sellers , @RepDebDingell , @RepCharlieDent , and @RickSantorum https://t…" +06/14/2017,Politicians,@RickSantorum,"Praying for @SteveScalise, the injured and those who witnessed this horror. Prayers also for their families." +06/08/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Co-Chair @JimTalent reminds Oregonians that #RFS is economic & national security priority https://t.co/p2NiZe8NmL +06/02/2017,Politicians,@RickSantorum,"More climate on #CNN shortly. Thanks for the feedback +&-, but batteries for storage$$$$? Grid must have reliable base & peak power sources." +06/02/2017,Politicians,@RickSantorum,Keeping pledges bolsters our credibility internationally even w those who disagree w the policy & concessions to the PA won't bring peace +06/02/2017,Politicians,@RickSantorum,"Another @NewDay morning! Congrats to @POTUS for keeping pledge nixing #ParisAccords, but very disappointed he broke one on Jerusalem embassy" +06/01/2017,Politicians,@RickSantorum,Sad to be criticized by the left for something as obvious as solar (clouds & darkness) and wind (calm winds) are no… https://t.co/jmAGv6fSVD +06/01/2017,Politicians,@RickSantorum,Going on @NewDay in minutes to talk Paris Climate decision. #MakeAmericaGreatAgain by helping keep energy prices low for American workers +05/31/2017,Politicians,@RickSantorum,"From @JohnBrabender : Did Russia interfere with our election? Yes. Did it elect Trump, absolutely not https://t.co/lMTkd0Og0E" +05/29/2017,Politicians,@RickSantorum,Feeling very blessed today to be enjoying a day w family. Thanks to all those who sacrificed to make it possible. #memorialdayweekend2017 +05/26/2017,Politicians,@RickSantorum,RT @CNNSotu: Tune in Sunday for thoughts from the best political minds with the #CNNSOTU panel @ninaturner @RickSantorum @JenGranholm and @… +05/25/2017,Politicians,@RickSantorum,Enjoyed helping my city host ambassadors from 34 countries this week. They all were impressed w the comeback story… https://t.co/t3XY0jzE9P +05/25/2017,Politicians,@RickSantorum,RT @USAEnergy: AESI Chair @RickSantorum illustrates how homegrown #biofuels are driving American energy security https://t.co/QVts8eD2hp +05/24/2017,Politicians,@RickSantorum,Check out my oped in this morning's @WashTimes about the importance of biofuels in an all of the above energy policy https://t.co/huE9Acv76N +05/23/2017,Politicians,@RickSantorum,We are Manchester 🇬🇧. Praying now for victims and all waking up in UK to this attack on their countrymen and on our friend and ally. +05/21/2017,Politicians,@RickSantorum,RT @PVCoDirectorVal: @Patriot_Voices Chairman @RickSantorum has rallied #Trump supporters with this outstanding push against the #MSM #fake… +05/13/2017,Politicians,@RickSantorum,RT @USAEnergy: US #biofuel production continues to climb - #RFS works for Energy Security https://t.co/bJNfK1c5cb +05/12/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Send a quick email to your U.S. Senators to Repeal Obamacare & Defund Planned Parenthood! Use the link here: https://t.… +05/12/2017,Politicians,@RickSantorum,I enjoyed my time with the men and women from banks across PA who are on the front lines of making the economy work… https://t.co/yfVtHJxe3t +05/02/2017,Politicians,@RickSantorum,I hear that @RepLouBarletta is being strongly encouraged to run for the U.S. Senate. My good friend Lou would make a great Senator. #tcot +04/29/2017,Politicians,@RickSantorum,"Actually next best thing to being at the @penguins @Capitals game, then the PA Trump Rally! #LetsGoPens" +04/29/2017,Politicians,@RickSantorum,"Talking 1st 100 Days 8-11 tonight w @JohnBerman & @PoppyHarlowCNN, then @CNNSotu w @jaketapper, next best thing to being at PA Trump Rally!" +04/24/2017,Politicians,@RickSantorum,Kate Walsh O'Beirne R.I.P. | National Review. Kate defined tough love to her conservative friends. Thank you! https://t.co/syKffQxMXA +04/22/2017,Politicians,@RickSantorum,"Honored to join my friend Larry Wittig to christen the ""Bella Santorum"" into the @DrexelUniv crew fleet. Go Dragons! https://t.co/moNE4fT7S8" +04/18/2017,Politicians,@RickSantorum,RT @PatriotVoicesPA: Packed house awaiting @RickSantorum speaking on the degradation of traditional American values. #YAFonCampus https://t… +04/18/2017,Politicians,@RickSantorum,Just walked around @Princeton beautiful campus on a great spring day. Looking forward to interacting w students her… https://t.co/fdPnRJ1Ac3 +04/16/2017,Politicians,@RickSantorum,Went to Easter Vigil w/ family tonight. Best 2 1/2 hours of the yr. A blessed Easter to my all brothers and sisters in Christ. He is Risen! +04/13/2017,Politicians,@RickSantorum,Excited to speak on 4/27 on how a new village concept called @NeoRetroism can positively reknit our communities. https://t.co/J5ERSL0Jyv +04/13/2017,Politicians,@RickSantorum,Really enjoyed engaging the students at @CalStateLA! Thanks to @yaf for a well run event. https://t.co/ongTFlYiK8 +04/12/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch @RickSantorum speak NOW at 6pm ET @ CA State University LA in spite of the protesters @yaf Stream here: https://t… +04/11/2017,Politicians,@RickSantorum,Hoping CSULA students will come ready to engage in a dialogue on the issues. Tolerance is based on mutual respect n… https://t.co/K1rBjuZ3wd +04/09/2017,Politicians,@RickSantorum,RT @CNNSotu: The #CNNSOTU panel @RepMikeRogers @jrpsaki @RickSantorum @vali_nasr weigh in on the busy news week with @jaketapper https://t.… +04/09/2017,Politicians,@RickSantorum,RT @CNNSotu: This morning on #CNNSOTU w/@jaketapper: UN Amb @nikkihaley @SenMarkey & our panel @RepMikeRogers @jrpsaki @RickSantorum @vali_… +04/07/2017,Politicians,@RickSantorum,RT @CNNSotu: This week on the #CNNSOTU with @jaketapper panel: @RepMikeRogers @jrpsaki @RickSantorum and @vali_nasr. Join us! https://t.co/… +04/07/2017,Politicians,@RickSantorum,Speaking in Dallas on April 27th on why It Takes a Village - I mean a real village! https://t.co/taZ1RHYvHd +04/06/2017,Politicians,@RickSantorum,Congratulations to all Senate Republicans for establishing the proper standard for confirming justices to the… https://t.co/6UPeKnWaaz +04/05/2017,Politicians,@RickSantorum,RT @JamesDAlessio: Great to have @RickSantorum back in SC stumping for @TomMullikinSC! Great crowd and great BBQ in Prosperity! https://t.c… +04/04/2017,Politicians,@RickSantorum,Any deal not to filibuster Gorsuch in exchange for allowing the Ds to filibuster the next one is political insanity. They will block anyone! +04/03/2017,Politicians,@RickSantorum,About to go on @CNN after @seanspicer press conference. Pleased that Republicans united behind nuclear option to confirm #Gorsuch. +04/01/2017,Politicians,@RickSantorum,RT @sandraschulze: Happy to raise funds for former Veteran @shannongrove and for the @warriorrising at @MadoroMwines Thanks to guest speake… +04/01/2017,Politicians,@RickSantorum,RT @RealTimers: Send us your questions for tonight's #RealTime guests and watch them answer LIVE after the show on #RTOvertime: https://t.c… +03/24/2017,Politicians,@RickSantorum,RT @CNNSotu: Watch #CNNSOTU Sunday for thoughts from the best political minds with our panel @Bakari_Sellers @RickSantorum @RepDebDingell @… +03/24/2017,Politicians,@RickSantorum,"Several good candidates, but Tom Mullikin is a solid conservative & veteran who served the US & SC w distinction. https://t.co/Y7Id4b7Xmu" +03/24/2017,Politicians,@RickSantorum,"""Time to govern"" is always the cry of leaders who can't convince on policy to vote for their bill. It rarely is a good reason. It is today" +03/23/2017,Politicians,@RickSantorum,Agree! Any Republican considering this wants to take the next SCOTUS pick away from @POTUS and give it to… https://t.co/vVQjvFXpZ9 +03/23/2017,Politicians,@RickSantorum,Senate Republicans should announce that a simple majority vote will be new requirement to confirm SCOTUS nominees. https://t.co/D4X5uhjb7o +03/23/2017,Politicians,@RickSantorum,Thank you @Students4LifeHQ for your tireless work. Congrats on 10 yrs of incredible achievements #ProLifeGen #SFLA10 https://t.co/V2vEjFPDZf +03/20/2017,Politicians,@RickSantorum,"RT @USAEnergy: Iowa’s @ChuckGrassley leads 23 senators calling on @POTUS to protect #RFS, homegrown fuels, writes @toddneeleyDTN https://…" +03/20/2017,Politicians,@RickSantorum,"RT @jaketapper: .@RickSantorum: Now that FBI disclosed investigation, needs to quickly work to conclude https://t.co/UWpixOKFsE #TheLead" +03/20/2017,Politicians,@RickSantorum,More myth busting on ethanol. @USAEnergy https://t.co/X3xUAE19J0 +03/19/2017,Politicians,@RickSantorum,RT @77WABCradio: Tune in NOW for #ElectionCentral w/@RitaCosby with @RickSantorum @MasseyForMayor @KimGuadagnoNJ.. & Colonel David Hunt Sal… +03/18/2017,Politicians,@RickSantorum,Ben Bernstein the 5 yr old son of my good friend @LukeBernstein is an NCAA March Madness mascot Mensa! https://t.co/Dm1dSAdnoa +03/18/2017,Politicians,@RickSantorum,I know I will enjoy speaking and answering your questions @CalStateLA on April 12th. https://t.co/q6uxcroycz +03/17/2017,Politicians,@RickSantorum,Get your copy of my good friend @JoelCRosenberg book #WithoutWarning. Like all of his books it is a real page turne… https://t.co/GDiIRNJJAu +03/17/2017,Politicians,@RickSantorum,Happy St. Patrick's Day! Will be sporting my green tie in a couple of minutes on @NewDay +03/14/2017,Politicians,@RickSantorum,On @OutFrontCNN I said healthcare solution is to block grant all non-Medicare health $ to states. See this result https://t.co/q9cAFBRTuV +03/12/2017,Politicians,@RickSantorum,Facts about @PPact false claim that reallocating money from their abortion clinics would limit access to healthcare. https://t.co/bjZ4a9g6Ps +03/12/2017,Politicians,@RickSantorum,@neeratanden said I was wrong about ER visits up due to Medicaid expansion. Argue with @washingtonpost not me https://t.co/5fLRP7WBn8 +03/12/2017,Politicians,@RickSantorum,"@RepGutierrez repeats false narrative that ACA gave people health CARE, already was law requiring healthcare, ACA required health INSURANCE." +03/11/2017,Politicians,@RickSantorum,"Check out my oped appearing in tomorrow's @DMRegister : ""Trump will stand strong for RFS, rural America"" #RFS https://t.co/NQWANMwJgH" +03/10/2017,Politicians,@RickSantorum,RT @CNNSotu: Sun on #CNNSOTU w/ @jaketapper @SenJohnMcCain @CoryBooker Dir Mick Mulvaney & panel @RickSantorum @neeratanden @RepMarkMeadows… +03/09/2017,Politicians,@RickSantorum,RT @CNNSotu: Join us on #CNNSOTU this Sunday at 9am & 12pm ET for insights from our panel @RepMarkMeadows @neeratanden @RickSantorum @RepGu… +03/09/2017,Politicians,@RickSantorum,I will be giving my opinion on ACA repeal and replace on @CNN next hour with John and Poppy. There is a better way to do this. +03/07/2017,Politicians,@RickSantorum,RT @Patriot_Voices: Watch Diamond and Silk talk about how important it is to join Patriot Voices! https://t.co/GbrBnA3ehg @RickSantorum #Ma… +03/06/2017,Politicians,@RickSantorum,"RT @DMRegister: Refiners will continue to be responsible for blending in renewable fuels, the governor said. https://t.co/6CAGycxlAq" +03/04/2017,Politicians,@RickSantorum,Also my friends @DiamondandSilk and Rep Tan Parker and county chair Lisa Hendrickson. Will be a great evening. https://t.co/meWqoyC79c +03/04/2017,Politicians,@RickSantorum,"Another example of systemic bias at colleges. For conservatives at Cornell University, high price for free speech https://t.co/KZdKsCtvJd" +06/27/2018,Politicians,@RandPaul,RT @RandyEBarnett: I’d say it was when Burr shot and killed Hamilton. https://t.co/4fEPsZMO7w +06/27/2018,Politicians,@RandPaul,ICYMI: I joined @FoxNews to discuss Justice Kennedy's resignation and possible #SCOTUS nominees. https://t.co/x4JleEpaUS +06/27/2018,Politicians,@RandPaul,"I commend the court, applaud the decision, and congratulate @RightToWork and their team for their hard work and per… https://t.co/rcfsVf6uww" +06/27/2018,Politicians,@RandPaul,Today the Supreme Court in #Janus gave every public sector worker in America back their First Amendment rights and freedom of association. +06/26/2018,Politicians,@RandPaul,The uses for hemp are many – from buildings to medicine. The Commonwealth of Kentucky has a rich history of hemp gr… https://t.co/4IPLDgUXDU +06/26/2018,Politicians,@RandPaul,"RT @TFASorg: Thank you, Sen. @RandPaul and @SenMikeLee for sharing your expertise on Free Markets, Individual Liberty and Civil Society at…" +06/26/2018,Politicians,@RandPaul,"RT @TFASorg: .@SenMikeLee discusses his Due Process Guarantee Act, legislation he and Sen. @RandPaul say should have bipartisan support. ht…" +06/26/2018,Politicians,@RandPaul,RT @TFASorg: “Everyone should have the presumption of innocence and the right to a trial by jury in America.” - Sen. @RandPaul at the #TFAS… +06/26/2018,Politicians,@RandPaul,RT @TFASorg: Sen. @RandPaul begins today by talking about where right and left can come together. +06/26/2018,Politicians,@RandPaul,Join me and @SenMikeLee live now for the @TFASorg Capitol Hill Lecture Series: https://t.co/Bea4dPrEW9 +06/25/2018,Politicians,@RandPaul,"I recently spoke with Sinclair Broadcast Group’s @KristineFrazao about the failed Kabul ""Marriott"" in Afghanistan,… https://t.co/argApaiX5p" +06/21/2018,Politicians,@RandPaul,Great to have @Judgenap on Capitol Hill today for our summer intern lecture series! You can watch his talk here: https://t.co/M8mi6IR5fm +06/21/2018,Politicians,@RandPaul,"I always enjoy catching up with @KimDarroch, the British Ambassador to the US. Lots of catching up on issues includ… https://t.co/7r8JqY2FOQ" +06/20/2018,Politicians,@RandPaul,Congrats to a true liberty lover! @mkibbe https://t.co/0ajr6VKIQK +06/20/2018,Politicians,@RandPaul,"Today the U.S. Senate failed to discharge H.R. 3, President Trump’s rescissions package to cut $15 billion in unnee… https://t.co/EsWmepXs0n" +06/20/2018,Politicians,@RandPaul,Coming up right now on @FoxBusiness with @MariaBartiromo. +06/19/2018,Politicians,@RandPaul,"Our national debt is over $21 trillion. It has to stop now, or government will be too broke to do anyone any good,… https://t.co/UuPp2t6Wc9" +06/19/2018,Politicians,@RandPaul,"For months, I worked directly with President Donald Trump and Secretary Acosta to make this happen. Today, we are p… https://t.co/6yyzCkZSc3" +06/19/2018,Politicians,@RandPaul,"RT @lesleyclark: .@RandPaul has championed measure in the Senate, saying it would cut funding, including some that has ""sat around unspent…" +06/18/2018,Politicians,@RandPaul,"Join us Thursday, June 21 for @Judgenap's @TFASorg Capitol Hill Lecture: Do We Still Have a Constitution? https://t.co/Vw1TASdDjy" +06/18/2018,Politicians,@RandPaul,RT @amconmag: Excellent new video from our friends at @freethepeople highlighting the work @SenMikeLee @RandPaul @SenSanders and others are… +06/15/2018,Politicians,@RandPaul,"Bridges and roads across the country are in desperate need of repair, and funding is limited. So why are we spendin… https://t.co/3eMOhAhMh8" +06/15/2018,Politicians,@RandPaul,RT @FAMMFoundation: @RepJeffries and Senator @RandPaul are confirmed speakers for our #familiesforjusticereformNOW rally! #Brooklyn and #Ke… +06/14/2018,Politicians,@RandPaul,"From Milton Friedman: ""Nobody spends somebody else's money as carefully as he spends his own."" #ThrowbackThursday" +06/14/2018,Politicians,@RandPaul,It's @thehillbaseball Game Day! Learn more here: https://t.co/0hB7OoRubW https://t.co/LoNYhtjG3w +06/14/2018,Politicians,@RandPaul,RT @ToyotaPolicy: Our largest plant in the world is in Kentucky. Thanks for representing at @thehillbaseball game @RandPaul. #CBG18 https:/… +06/13/2018,Politicians,@RandPaul,America needs to know there is one opponent in the Senate who does not believe in the Bill of Rights. The right to… https://t.co/HuTrj9m4Mg +06/13/2018,Politicians,@RandPaul,RT @KyElectricCoops: @RandPaul with the Kentucky Youth Tour Delegates. #WYT2018 https://t.co/yyEeTHWtzE +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: Sponsored by The Einhorn Family Foundation, the #TFAS and @RandPaul Capitol Hill Lecture Series is free and open to all Washin…" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: “I think #economics intersects with freedom, and it’s what makes #freedom possible.” - Sen. @RandPaul" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: “I've spent my adult life trying to change ideas ... I think that if people understand #economics, the world will be a better…" +06/13/2018,Politicians,@RandPaul,"RT @TFASorg: #TFAS and the Office of Senator @RandPaul are co-hosting our one-of-kind lecture series bringing the ideas of free markets, in…" +06/11/2018,Politicians,@RandPaul,Lindsey Graham is a danger to the country by even proposing ideas like authorizing war with Korea https://t.co/JCToKXsDLu +06/11/2018,Politicians,@RandPaul,Giving the accused their day in court isn’t a suggestion. It’s enshrined in our Constitution as a cornerstone of ou… https://t.co/Ezc4z4Bn6e +06/11/2018,Politicians,@RandPaul,Very few other leaders or past presidents would have taken the meeting with North Korea. I agree with… https://t.co/VKLC9upCk4 +06/09/2018,Politicians,@RandPaul,RT @FreedomWorks: Senator @RandPaul continues to warn against the executive branch's unlimited war powers #Constitution #NeedsCongressional… +06/09/2018,Politicians,@RandPaul,ICYMI: I joined Judge Nap to discuss the Federal Spending Oversight Subcommittee hearing on whether or not wars not… https://t.co/fv5mn6m3NM +06/08/2018,Politicians,@RandPaul,"Someone is blocking my amendment to prevent indefinite detention of Americans! +https://t.co/9aoJi94EmK" +06/08/2018,Politicians,@RandPaul,"Earlier this week, I spoke with Newsy about unauthorized war and the Kaine-Corker AUMF. +https://t.co/TaFrc47Nlg" +06/07/2018,Politicians,@RandPaul,"BIG question for John Brennan, who has become such a vocal spokesman. Did you receive any secret info on candidate… https://t.co/0SHENEjGa3" +06/06/2018,Politicians,@RandPaul,RT @jackhunter74: .@RandPaul: Why have we been in Afghanistan 17 years? https://t.co/Gp4THre1Nu #FoxNews +06/06/2018,Politicians,@RandPaul,Here's my opening statement from today's hearing: https://t.co/xyHnhP6oxj +06/06/2018,Politicians,@RandPaul,"Today, I chaired a hearing to discuss the importance of Congress declaring or initiating war. Congress has been neg… https://t.co/KZiytO11XR" +06/06/2018,Politicians,@RandPaul,Lining up for my hearing at 2:30 “War Powers and the Effects of Unauthorized Military Engagements on Federal Spendi… https://t.co/fTzkwvMwcZ +06/05/2018,Politicians,@RandPaul,RT @FreedomWorks: Senator @RandPaul continues to warn against the executive branch's unlimited war powers #Constitution #NeedsCongressional… +06/05/2018,Politicians,@RandPaul,RT @CR: 🔥🔥🔥 @RandPaul ROASTS Bill Clinton for playing 'victim' 20 years after @MonicaLewinsky scandal https://t.co/lamupnunPI +06/05/2018,Politicians,@RandPaul,"RT @reporterjoe: NEW! @RandPaul/@SenGaryPeters holding ""War Powers and the Effects of Unauthorized Military Engagements on Federal Spending…" +06/05/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I’ve been very hopeful that it’s the beginning of dialogue…I think it’s one of President Trump’s strong points th…" +06/05/2018,Politicians,@RandPaul,RT @FoxNews: .@RandPaul on North Korea: “The U.S. taxpayers should not be paying them to not develop nuclear weapons.” @AmericaNewsroom htt… +06/05/2018,Politicians,@RandPaul,"Bill Clinton epitomizes the aggressor, not the victim. You can’t have an appropriate or consensual relationship wit… https://t.co/Rvxt2yr9Cw" +06/05/2018,Politicians,@RandPaul,Joining @BillHemmer shortly on @FoxNews! Tune in for a lively discussion! +06/04/2018,Politicians,@RandPaul,"This is wonderful news for Greenup County and the surrounding communities, and Braidy Industries’ selection of this… https://t.co/i224ujbqOg" +06/01/2018,Politicians,@RandPaul,#Veterans – join the 1000+ Kentucky vets and add your story to @LibraryCongress Veterans History Project! #LOCvets https://t.co/PWg30RkAsM +05/31/2018,Politicians,@RandPaul,I applaud the attention that criminal justice reform is getting from @KimKardashian and @realDonaldTrump. The syste… https://t.co/PQCYjUdhJl +05/30/2018,Politicians,@RandPaul,RT @SenMarkey: 40% of inmates enter the prison system with a substance use disorder. To successfully transition back to their communities a… +05/29/2018,Politicians,@RandPaul,"Stop the wasteful spending and come home. +https://t.co/XdEUOOtvvD" +05/29/2018,Politicians,@RandPaul,Congrats to Senator McCain for owning up to biggest foreign policy mistake of past few decades: the Iraq War. Hopef… https://t.co/QvrBCRC1Sj +05/25/2018,Politicians,@RandPaul,"This Memorial Day weekend, Americans will honor all those who gave their lives in service to our nation. Kelley an… https://t.co/KACw9l07kN" +05/25/2018,Politicians,@RandPaul,We need to acknowledge that Saudi Arabia is a problematic actor in the Middle East. We shouldn’t be enabling an arm… https://t.co/SC19fAJHcf +05/24/2018,Politicians,@RandPaul,"Great move by @realDonaldTrump today! +https://t.co/9rX860RtB5" +05/24/2018,Politicians,@RandPaul,"In case you missed it, I discussed these points in today's Senate Foreign Relations Committee hearing. Here's the… https://t.co/ENKzNyyhrU" +05/24/2018,Politicians,@RandPaul,We need to acknowledge that Saudi Arabia is a problematic actor in the Middle East. We shouldn’t be enabling an arm… https://t.co/cvZBCdejGd +05/23/2018,Politicians,@RandPaul,Worth watching! We need more fiscal conservatives in Washington! https://t.co/iHr40llIqs +05/23/2018,Politicians,@RandPaul,Massive government waste! https://t.co/P7wjM6nwAA +05/23/2018,Politicians,@RandPaul,"Interesting video and project that helps put things in perspective! + +https://t.co/kcyQWE6Yeb" +05/23/2018,Politicians,@RandPaul,"Walter E. Williams: From Russia with Love +https://t.co/K04kUnYO7V" +05/22/2018,Politicians,@RandPaul,Today I stand with @NickForVA. He’ll make a tremendous addition to a stagnant US Senate. I ask you all to support h… https://t.co/VMCYOKBZOM +05/22/2018,Politicians,@RandPaul,"The budget vote was a litmus test for conservatism that too many unfortunately failed. + +https://t.co/pmsH8xogkl" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul on the Middle East: ""We should quit creating chaos, we should defend ourselves when we need to over there, but…" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul: ""There is an argument, a debate we should have in our country over whether or not the military budget is too s…" +05/21/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul on @LindseyGrahamSC: ""I would call him a big-government Republican. To him, feeding the military industrial com…" +05/21/2018,Politicians,@RandPaul,RT @SecretsBedard: Boom: Team Trump cuts nearly twice as many regulations as promised https://t.co/JoRMuCEuvC +05/18/2018,Politicians,@RandPaul,Enjoyed being on your show! https://t.co/dB96IIYNkS +05/18/2018,Politicians,@RandPaul,I applaud @realDonaldTrump for taking action to stop federal money funding abortions. https://t.co/RciUDxXdfK +05/18/2018,Politicians,@RandPaul,Joining @SRuhle on @MSNBC to discuss my opposition to Ms. Haspel. https://t.co/3jCaFzY9x3 +05/18/2018,Politicians,@RandPaul,Joining @MariaBartiromo shortly on @FoxBusiness. Tune in! https://t.co/Djhd3MeUk8 +05/17/2018,Politicians,@RandPaul,Here's the vote roll call on my Penny Plan Budget from today. I would like to thank the Republicans who stood with… https://t.co/pIZEadHlFQ +05/17/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""Republicans say they are for balancing the budget so today is a litmus test. If your senator's been saying they'r…" +05/17/2018,Politicians,@RandPaul,This vote is a litmus test for conservatives. https://t.co/NaV5jHVHvu +05/17/2018,Politicians,@RandPaul,Our enormous debt threatens our national security. https://t.co/2HQkRciAnK +05/17/2018,Politicians,@RandPaul,The bottom line is whether the debt is threatening our country and it is. It's time for Republicans to step up the… https://t.co/0JkBjwB4mp +05/17/2018,Politicians,@RandPaul,Spending and waste is out of control. How moronic are we to keep flushing tax payer money down a rathole in Afghani… https://t.co/iXR6LpL8in +05/17/2018,Politicians,@RandPaul,"⚡️ “Senator Rand Paul Introduces His Penny Plan Budget” + +https://t.co/1nikzN80LX" +05/17/2018,Politicians,@RandPaul,To those highlighting my vote for tax cuts: allowing Americans to keep more of their own money is what republicans… https://t.co/vkgKQXK4PJ +05/17/2018,Politicians,@RandPaul,"Someone has to say ""enough is enough"" on waste, spending, and debt. https://t.co/H5EfiKKZxT" +05/17/2018,Politicians,@RandPaul,Let's expand Health Savings Accounts! https://t.co/xO3l4DplFz +05/17/2018,Politicians,@RandPaul,We shouldn't tolerate such abuse of taxpayer funds! https://t.co/Jgel4nMv0n +05/17/2018,Politicians,@RandPaul,My budget does much of what Republicans say they believe in. This bill is what we run on. I'm arguing for a yes vot… https://t.co/ezaRHPkNza +05/17/2018,Politicians,@RandPaul,"it continues...$850k for a televised national cricket league, $450k for a video game on climate change. https://t.co/aNy0iXvmAW" +05/17/2018,Politicians,@RandPaul,https://t.co/Zo1z6U3L6f +05/17/2018,Politicians,@RandPaul,https://t.co/Z84DjcJ1zG +05/17/2018,Politicians,@RandPaul,Here's another one of my favorite examples of waste. It's insulting. Today we're going to vote on budget that balan… https://t.co/VQbK0iteeM +05/17/2018,Politicians,@RandPaul,"Even MORE waste: study on the sex habits of quail on cocaine, sea monsters and the supernatural, kids from Pakistan… https://t.co/L85xgTT2mF" +05/17/2018,Politicians,@RandPaul,https://t.co/Wtq7dHzBpW +05/17/2018,Politicians,@RandPaul,Where else do they waste your money? Selfies. But of course we can't cut spending or balance the budget. https://t.co/Ega6xkmEr7 +05/17/2018,Politicians,@RandPaul,https://t.co/Kk7UiOvass +05/17/2018,Politicians,@RandPaul,"Also in Afghanistan, they shred new equipment and destroy it. Your tax dollars pay for it they destroy it. https://t.co/cPKT7Uvgy1" +05/17/2018,Politicians,@RandPaul,This is a hotel in Afghanistan. The government wasted $90 million for a hotel that will never be finished. US tax d… https://t.co/sDonIczbMx +05/17/2018,Politicians,@RandPaul,Should we borrow money to send it to other countries? How much do we spend in Afghanistan on building roads and bri… https://t.co/iwPvkuHOWt +05/17/2018,Politicians,@RandPaul,Does anyone in America think the government can't do with 1% less? If the government ran a balanced budget we would… https://t.co/hSLcZITVbg +05/17/2018,Politicians,@RandPaul,Republicans say we are for devolving spending and limited government and yet why won't they vote for a budget that… https://t.co/onsIHeWwoc +05/17/2018,Politicians,@RandPaul,The budget that republicans passed last year had entitlement reform. Did they do anything to enact those reforms? N… https://t.co/5PJT6Aa3F4 +05/17/2018,Politicians,@RandPaul,When we have a vote on my balanced budget in a minute we'll see republicans saying oh my we can't cut spending. The… https://t.co/iL0nbzG63v +05/17/2018,Politicians,@RandPaul,Dems and Republicans make an unholy alliance. Republicans get more military spending and dems get more welfare spen… https://t.co/8B1CO0djdM +05/17/2018,Politicians,@RandPaul,There is a point which debt is too cumbersome...We have a national debt of $21 trillion dollars. Currently the debt… https://t.co/8h1nRlKUYC +05/17/2018,Politicians,@RandPaul,"Right now, U.S. Senator Rand Paul (R-KY), chairman of the Federal Spending Oversight and Emergency Management (FSO)… https://t.co/tfCa5lRQFQ" +05/16/2018,Politicians,@RandPaul,Your Senator should be voting to balance the budget! This is a way to do it! +05/16/2018,Politicians,@RandPaul,"This is a litmus test for all Republicans! You either vote for fiscal responsibility and a balanced budget, or you… https://t.co/QHfHNtQPCi" +05/16/2018,Politicians,@RandPaul,RT @KelleyAshbyPaul: Enjoyed meeting @RandPaul’s summer intern class! https://t.co/Sd3ui4c2vb +05/16/2018,Politicians,@RandPaul,"This budget vote will be a litmus test for Republicans who claim to be conservative, but are only too happy to grow… https://t.co/EsdydOqQEu" +05/16/2018,Politicians,@RandPaul,"RT @club4growth: Club for Growth urges a ""YES"" vote on @RandPaul's ""Penny Plan"" balanced budget. Look for a key vote alert soon." +05/15/2018,Politicians,@RandPaul,"Earlier today, I sent the @CIA a letter inquiring about Ms. Haspel’s involvement or coordination in possible survei… https://t.co/jhYYpSSLaq" +05/15/2018,Politicians,@RandPaul,RT @CNNSitRoom: Senator @RandPaul: I’m hoping North Korea’s warnings against military drills are a “temporary setback” but “I’m still optim… +05/14/2018,Politicians,@RandPaul,Why Isn’t Gina Haspel Coming Clean About Torture? https://t.co/SLA1UOD68z +05/11/2018,Politicians,@RandPaul,"It’s past time we leave Afghanistan and instead focus on US infrastructure. +https://t.co/TpGBzhcQV7" +05/11/2018,Politicians,@RandPaul,"I stand with @GovMattBevin in cutting regulations, lowering taxes and bringing more jobs to Kentucky! https://t.co/rOcgdq2suG" +05/11/2018,Politicians,@RandPaul,Great to be with @GovMattBevin and @SteveCase in Louisville. Kentucky is open for business and investments! https://t.co/ZiGgSsIIh3 +05/09/2018,Politicians,@RandPaul,Live at 2:30PM: https://t.co/a8xrgmy23h Afghanistan in Review: Oversight of U.S. Spending in Afghanistan. Examining… https://t.co/YGx1ycWZ6w +05/09/2018,Politicians,@RandPaul,Congratulations to @MorriseyWV on his well deserved victory in the WV senate primary tonight. +05/08/2018,Politicians,@RandPaul,RT @McConnellPress: Bipartisan support is growing for the #HempFarmingAct. Joining @SenateMajLdr @RonWyden @SenJeffMerkley @RandPaul so far… +05/08/2018,Politicians,@RandPaul,Who would Jesus torture? Very thoughtful article from @amconmag. https://t.co/Gv3b5da7vj +05/08/2018,Politicians,@RandPaul,"Did Haspel send people to be tortured in Syria? Egypt? +""The most common destinations for rendered suspects are Egy… https://t.co/ZIORhPbgzP" +05/07/2018,Politicians,@RandPaul,The Founders left the power to make war in the legislature on purpose and with good reason. They recognized that th… https://t.co/NijVFxkJFd +05/07/2018,Politicians,@RandPaul,Watch this amazing story and wonderful kid. Great way to start the week. #MondayMotivation https://t.co/Bf9STrHjGN +05/04/2018,Politicians,@RandPaul,"RT @JoshJamesWUKY: .@RandPaul visits DV8 Kitchen in Lexington to meet with the owner and employees, and “learn more about their efforts to…" +05/04/2018,Politicians,@RandPaul,RT @GeorgetownJLPP: Watch incoming @GeorgetownJLPP Administrative Editor and @GtownFedSoc co-President Ryan McNulty give a Lifetime Service… +05/04/2018,Politicians,@RandPaul,"Visited @DV8Kitchen this morning in Lexington, KY. Always excited to highlight a great business focused on giving s… https://t.co/9oRRgm7Knj" +05/03/2018,Politicians,@RandPaul,"Had a great meeting with Marathon Marine in Cattletsburg, KY to talk about their priorities, Kentucky’s waterways,… https://t.co/Xo14tikvo8" +05/03/2018,Politicians,@RandPaul,"In an economic development meeting in Pikeville today, I discussed with local leaders how to bring more business to… https://t.co/nWr7DpkYSc" +05/03/2018,Politicians,@RandPaul,My wife and I love this Celtic prayer. She wanted to share it with you all for #NationalDayOfPrayer. It reminds her… https://t.co/iWgmXXIc66 +05/03/2018,Politicians,@RandPaul,"Starting the day in Pikeville, KY on the beautiful University of Pikeville campus, where Dr. Akers, the dean of the… https://t.co/cqTBq3fHlr" +05/02/2018,Politicians,@RandPaul,A great day to be in Western Kentucky! Thanks to the Owensboro Rotary Club for inviting me back to speak and give a… https://t.co/mAtIIzi8wE +05/02/2018,Politicians,@RandPaul,"We are $20 trillion in debt and counting. Our nation’s politicians are addicted to spending, and they need to be pu… https://t.co/MmPfpSngoS" +05/02/2018,Politicians,@RandPaul,Rand Paul to force Senate vote on budget-slashing bill https://t.co/Xm2ffjj5oi +05/02/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul: “I think there’s enough waste to cut 1% of it and make government more efficient.” #ampFW + +We agree! H…" +04/28/2018,Politicians,@RandPaul,RT @RepThomasMassie: 93 to 1. That was the vote to confirm James Comey as the FBI Director in 2013. Thank you @RandPaul. +04/28/2018,Politicians,@RandPaul,"Pakistani doctor jailed for helping find Bin Laden faces more trouble, moved to higher-security prison https://t.co/dQ4Yk1xq3W" +04/27/2018,Politicians,@RandPaul,RT @TNGOP: Thank you @gopnashville and @RandPaul for a great event! #TNGOP https://t.co/3gEjMYspRA +04/26/2018,Politicians,@RandPaul,"Great article from a lover of liberty! @Judgenap +https://t.co/XUrbvNOCKj" +04/26/2018,Politicians,@RandPaul,"#ThrowbackThursday ""We think we can just blow up Gaddafi and then all of a sudden Thomas Jefferson will get elected… https://t.co/aRP2KPrx3b" +04/26/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I sincerely am trying to end these wars. I'm trying to get them over - and I'll do what it takes."" https://t.co/7…" +04/26/2018,Politicians,@RandPaul,"This week the U.S. Senate Health, Education, Labor and Pensions (HELP) Committee passed my amendment to the Opioid… https://t.co/KNxnnhczXE" +04/26/2018,Politicians,@RandPaul,RT @AutumnDawnPrice: Senate Committee Advances .@RandPaul’s Bill To Fight The Opioid Crisis. https://t.co/W3K1D6mrWs via @dailycaller +04/25/2018,Politicians,@RandPaul,"Horrific report. ""At least 20 people including the bride were killed when an air strike by the Saudi-led coalition… https://t.co/A24kDW8mJx" +04/25/2018,Politicians,@RandPaul,"RT @FoxNews: .@RandPaul: ""I sincerely am trying to end these wars. I'm trying to get them over - and I'll do what it takes."" https://t.co/8…" +04/25/2018,Politicians,@RandPaul,RT @kilmeade: Tune into #thebriankilmeadeshow now to hear @MonicaCrowley interview Sen @RandPaul https://t.co/veWu8N7dzw 18664087669 https:… +04/25/2018,Politicians,@RandPaul,"Joining @BillHemmer shortly on @FoxNews, tune in! We’ll be discussing @realDonaldTrump’s desire to get out of Syria!" +04/25/2018,Politicians,@RandPaul,We have made considerable progress to ensure that more Americans struggling with opioid abuse can receive treatment… https://t.co/4SI09Lxr5a +04/24/2018,Politicians,@RandPaul,"RT @FoxBusiness: .@RandPaul: ""People are going to be surprised over the next year or two that I think there will be some ending of some of…" +04/24/2018,Politicians,@RandPaul,"Some great points! Trump should follow his instincts, de-escalate in the Middle East and pivot to great powers https://t.co/e6QQ4ZAqUh" +04/23/2018,Politicians,@RandPaul,Having received assurances from President Trump and Director Pompeo that he agrees with the President on these impo… https://t.co/Qv9yC8okNd +04/23/2018,Politicians,@RandPaul,"President Trump believes that Iraq was a mistake, that regime change has destabilized the region, and that we must… https://t.co/7nDgyrUYnC" +04/23/2018,Politicians,@RandPaul,After calling continuously for weeks for Director Pompeo to support President Trump’s belief that the Iraq war was… https://t.co/YyXhH8dgVF +04/23/2018,Politicians,@RandPaul,"I just finished speaking to @realDonaldTrump, after speaking to him several times today. I also met with and spoke to Director Pompeo." +04/23/2018,Politicians,@RandPaul,I had a great time seeing everyone and speaking at the Wayne County Reagan Dinner on Friday night. Two students rec… https://t.co/KKoDiFOxJA +04/23/2018,Politicians,@RandPaul,ICYMI I introduced my own “Penny Plan” federal budget that will balance within five years. Read more here:… https://t.co/c2V47uBgo8 +04/23/2018,Politicians,@RandPaul,I take spending and balanced budgets seriously. I’ve never voted for a budget that didn’t balance. Since it appears… https://t.co/kBbitHtiLE +04/20/2018,Politicians,@RandPaul,Putting forward a plan for Congress to balance the budget https://t.co/qy8jgZEKfZ +04/19/2018,Politicians,@RandPaul,"I ran for office to put a stop to Washington’s out-of-control spending! Today, I introduced my ""Penny Plan"" federa… https://t.co/x4oJR5K013" +04/18/2018,Politicians,@RandPaul,Join me today at 3:30pm eastern for a press conference to discuss my plan to end Washington’s out-of-control spendi… https://t.co/7gXmID41k2 +04/17/2018,Politicians,@RandPaul,"Today, the U.S. Senate Foreign Relations Committee held a hearing on our policy in Yemen. I had a few things to sa… https://t.co/5kj1TYfa04" +04/17/2018,Politicians,@RandPaul,"This year on #TaxDay, I say let’s pick up the fight again. Let’s keep fighting for smaller, constitutional governme… https://t.co/AMJrZ3oIRJ" +04/17/2018,Politicians,@RandPaul,Joining @AmericaNewsroom in just a few minutes. Tune in! +04/17/2018,Politicians,@RandPaul,"We can and must fight against terrorism when it rears its ugly head. We can do that in a smarter, constitutional wa… https://t.co/ieRAFwY3Sk" +04/16/2018,Politicians,@RandPaul,RT @FedSoc: “The antithesis of liberty is government power. Liberty is worth the fight.” @SenRandPauI https://t.co/oCrWMkxMAj #FedSocEvent… +04/16/2018,Politicians,@RandPaul,"RT @GeorgetownLaw: TODAY at 6 p.m., @GtownFedSoc will present its Lifetime Service Award to Sen. @RandPaul. Watch it live: https://t.co/pii…" +04/16/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul's bill to balance the budget over five years will serve as a great litmus test to discover, once and fo…" +04/15/2018,Politicians,@RandPaul,"Joined OZY today to guest curate their Presidential Daily Brief! +https://t.co/zebHg7NO1W" +04/15/2018,Politicians,@RandPaul,RT @justinamash: Witness the hypocrisy that our two-party system breeds: Check out these similar letters warning the president about commen… +04/12/2018,Politicians,@RandPaul,RT @AnnCoulter: MUST WATCH VIDEO! Sen. Rand Paul was magnificent. https://t.co/hWM9fMzwXI +04/12/2018,Politicians,@RandPaul,Joining @TeamCavuto on @FoxNews at 4:05pm ET. Tune in! +04/12/2018,Politicians,@RandPaul,"RT @FoxNewsInsider: 'It's Disputed by Our Founding Fathers': @RandPaul Challenges Pompeo on Syria, Military Deployments https://t.co/cgE2e0…" +04/12/2018,Politicians,@RandPaul,ICYMI today I joined the confirmation hearing for Mike Pompeo to find out where he stands on important issues and v… https://t.co/iUI7nM3bIg +04/12/2018,Politicians,@RandPaul,"""I worry you're going to be in too much disagreement with the President. I agree we should get out of Afghanistan.""… https://t.co/YVS8OoJ5Nc" +04/12/2018,Politicians,@RandPaul,Also “defending international human rights” - what happened to “America First” +04/12/2018,Politicians,@RandPaul,Just now at the hearing Rubio/Pompeo (and Woodrow Wilson) agree that “promoting democracy” - aka nationbuilding and… https://t.co/Eqdog939Ss +04/12/2018,Politicians,@RandPaul,Join me for the Foreign Relations Committee confirmation hearing at 10:15am est. https://t.co/XkBpBmNUb1 +04/12/2018,Politicians,@RandPaul,"I’m going to do it, and I’m going to force a vote on the floor of the U.S. Senate, and we’ll see who actually reall… https://t.co/vSnFnZbbcQ" +04/12/2018,Politicians,@RandPaul,RT @HARRISFAULKNER: .@RandPaul told me about the letter he received re: Top Secret Clearances and that adulterous couple of FBI agents accu… +04/11/2018,Politicians,@RandPaul,BREAKING: FBI admits that @realDonaldTrump haters still have Top Secret security clearances which allows them to ac… https://t.co/iyaIh6BHdW +04/11/2018,Politicians,@RandPaul,I wonder whose terrible idea it was to threaten Russia... https://t.co/tKUr31Rq0m +04/11/2018,Politicians,@RandPaul,"Promising war by tweet, insults not only the Constitution but every soldier who puts their life on the line." +04/11/2018,Politicians,@RandPaul,I will introduce a budget that balances within five years that includes spending cuts across the board reforms enti… https://t.co/JOClvmBSEU +04/10/2018,Politicians,@RandPaul,"Tune in now, I’m about to join @AmericaNewsroom" +04/06/2018,Politicians,@RandPaul,RT @Mediaite: Journal of American Medicine: Legalizing Marijuana Could Help Solve the Opioid Crisis https://t.co/JB3neOBeRD https://t.co/Om… +04/05/2018,Politicians,@RandPaul,Honored to have the LIBERTY to introduce Robin Harper Morris. https://t.co/vU6YHK6lJy +04/05/2018,Politicians,@RandPaul,.@EPAScottPruitt is likely the bravest and most conservative member of Trump's cabinet. We need him to help… https://t.co/OOqyszyso1 +04/04/2018,Politicians,@RandPaul,THIS is why it matters if you pick a hawk for SoS. THIS is why it matters if an unreconstructed neocon who still th… https://t.co/Eh4acn5ios +04/04/2018,Politicians,@RandPaul,"RT @WEHTWTVWlocal: Sen. Paul discusses state of workforce in Ohio Co. +https://t.co/uTUsCpfcLE" +04/03/2018,Politicians,@RandPaul,"I’m always grateful for the protection of Kentucky’s law enforcement at events like the one I held in Hartford, KY… https://t.co/ajds5MPSpI" +04/03/2018,Politicians,@RandPaul,RT @foxandfriends: .@RandPaul and his wife presented keys to a new home for wounded veteran through @HelpingAHero https://t.co/ZhxkjStjoH +04/03/2018,Politicians,@RandPaul,"Joining @foxandfriends from Bowling Green, KY in a few minutes - be sure to tune in! https://t.co/AmsEMHh596" +04/03/2018,Politicians,@RandPaul,"Americans want cheaper, generic drugs — time for Congress to deliver https://t.co/7UuSIoldEE" +03/30/2018,Politicians,@RandPaul,Likely no one other than Dick Cheney has been more consistently and unapologetically wrong about foreign policy tha… https://t.co/W3a3rUkIUA +03/30/2018,Politicians,@RandPaul,"RT @FreedomWorks: Senator @RandPaul rips omnibus: Maybe 'holding hands' with Democrats not such a great idea #ampFW +https://t.co/Xt0IIn2jIV" +03/29/2018,Politicians,@RandPaul,RT @bgdnphoto: #onassignment w/@RandPaul at Franklin Rotary. @joeimel https://t.co/YEsgLQlMxG +03/29/2018,Politicians,@RandPaul,"Hearing from Scottsville, KY business and community leaders about the issues in Allen County, and asking for sugges… https://t.co/nLb8M1YLAp" +03/29/2018,Politicians,@RandPaul,RT @AutumnLuntzel: Spending my day with Senator Rand Paul. Hear from him tonight on 13 News at 5 and 6! https://t.co/KjA5OJii0i +03/28/2018,Politicians,@RandPaul,Former CIA Chief Brennan used foreigners to spy on President Trump. Why would any Republican vote for Brennan acol… https://t.co/FlqCloSGW0 +07/02/2018,Politicians,@GovMikeHuckabee,How on earth did you miss this? Here’s another chance. Don’t blow this chance! https://t.co/l7lBt2cpl0 +07/01/2018,Politicians,@GovMikeHuckabee,Hope you will see our show from Branson 2nite on @tbn 8&11et/7&10ct. https://t.co/lUxQ4k6Wya +07/01/2018,Politicians,@GovMikeHuckabee,Endless effort and spin has gone into trying to explain why Hillary Clinton lost (without ever considering that her… https://t.co/YPsW447q5z +06/30/2018,Politicians,@GovMikeHuckabee,"Americans deeply divided on immigration, taxes, abortion, and more, but surely we are all UNITED and agree that new… https://t.co/gheG2vrY5h" +06/30/2018,Politicians,@GovMikeHuckabee,"Folks, the Dems aren’t so dumb as to want to abolish ICE and supporting no border nonsense. They just support aboli… https://t.co/pqFzRFZKLL" +06/30/2018,Politicians,@GovMikeHuckabee,2nite on “HUCKABEE” on https://t.co/OXDC775SgR join us for our show 8&11pm et/7&10ct from Branson MO as we celebrat… https://t.co/PgmEvXjdNv +06/29/2018,Politicians,@GovMikeHuckabee,"After Chris Pratt stunned Hollywood by encouraging young people to be positive, work hard, pray, defend the weak an… https://t.co/oQnTubvF3W" +06/29/2018,Politicians,@GovMikeHuckabee,"Here's a better idea. Abolish Gillebrand's Senate career by electing her opponent Chele Farley in November. ""Star… https://t.co/3PaiH4QxDj" +06/29/2018,Politicians,@GovMikeHuckabee,"A big salute to the staff of the Gazette, who despite being traumatized and losing staffers to death and injury, vo… https://t.co/54zfXWto7a" +06/29/2018,Politicians,@GovMikeHuckabee,Every night @seanhannity has great guests on @FoxNews but he needs balance with lesser lights so I will be on 2nite… https://t.co/6mFhfpDbq0 +06/29/2018,Politicians,@GovMikeHuckabee,"In public hearing, Rosenstein exhibits bizarre behavior and refuses to answer questions https://t.co/CpJU7024k1 https://t.co/3PXSv1YtDT" +06/29/2018,Politicians,@GovMikeHuckabee,"I'm worried. My 1 yr old grandson is at my house. He does nothing for himself, pays for nothing, cries when he does… https://t.co/fA6cfqlmdJ" +06/29/2018,Politicians,@GovMikeHuckabee,"This guy is brilliant! You should watch. Next to Popeye cartoons, there is nothing on TV like this guy. https://t.co/qVwsrFHMBb" +06/29/2018,Politicians,@GovMikeHuckabee,So glad @realDonaldTrump will appoint next SCOTUS Justice but it’s causing Dems to melt faster than Wicked Witch of West at a water park. +06/29/2018,Politicians,@GovMikeHuckabee,Fri I’ll be on @AmericaNewsroom on @FoxNews at 9am et and @Varneyco on @FoxBusiness at 945 et. Having my toes done… https://t.co/bV7xkkz70i +06/29/2018,Politicians,@GovMikeHuckabee,Democrats are going through the stages of grief all at once as they realize there is nothing they can do to prevent… https://t.co/jGCp7CvEQ1 +06/29/2018,Politicians,@GovMikeHuckabee,Only excuse for missing was watching Razorbacks in College World Series...but here's some of what you missed. https://t.co/MqVHyZND5Z +06/28/2018,Politicians,@GovMikeHuckabee,"Will be on w/ @marthamaccallum on @TheStoryFNC during 7pmET hour. Martha's show is smart, insightful, and refreshi… https://t.co/b9QCHca8uv" +06/28/2018,Politicians,@GovMikeHuckabee,Wouldn’t you know it? I go to all the trouble of suggesting 20 questions for the House Committees to ask FBI agent… https://t.co/aGsYy6xtnR +06/28/2018,Politicians,@GovMikeHuckabee,"It’s been said that all the Democrats had to do to win in November was not act crazy, and they’re failing even at t… https://t.co/TWcHtuL81u" +06/27/2018,Politicians,@GovMikeHuckabee,"Wednesday was the last day of the Supreme Court’s session, and if you thought the Democrats were screaming and melt… https://t.co/nbo8nGLYnK" +06/27/2018,Politicians,@GovMikeHuckabee,I'll be on @EveningEdit at 5pm ET today on @FoxBusiness and I'll announce whether I'll accept @realDonaldTrump offe… https://t.co/0WTpplmvJv +06/27/2018,Politicians,@GovMikeHuckabee,President Trump texted that Strzok is a “fraud” and that he should be questioned live on TV. We’ll have to wait a… https://t.co/xvd6ZNlg7o +06/27/2018,Politicians,@GovMikeHuckabee,"Wake up early, America! I'll be w/ @MariaBartiromo on @FoxBusiness at 8am ET Wednesday to explain what Maxine Wate… https://t.co/wULaGPiceX" +06/27/2018,Politicians,@GovMikeHuckabee,Difference btwn GOP & Dems? GOP sees every day as the 4th of July; Dems see every day as Halloween. Will voters w… https://t.co/3hJsBVLquP +06/27/2018,Politicians,@GovMikeHuckabee,Watch @IngrahamAngle on @FoxNews 2nite at 10pmET. Topic? Fishing trip for Red Snapper with grandson in Gulf of Mex… https://t.co/ZKctKbVym5 +06/26/2018,Politicians,@GovMikeHuckabee,"Read the Evening Edition, because doctors say it does wonders for your health: https://t.co/De35bCYqZ4 https://t.co/dQxK3hEoOL" +06/26/2018,Politicians,@GovMikeHuckabee,"Weeks of shameful, misleading and overheated rhetoric and media coverage comparing US detention centers for illegal… https://t.co/SE4NmiqR9y" +06/26/2018,Politicians,@GovMikeHuckabee,"Today, SCOTUS handed down a major ruling and ended a year-and-a-half of pointless, dangerous and indefensible meddl… https://t.co/e9GdftD5uU" +06/26/2018,Politicians,@GovMikeHuckabee,"“It’ll eventually come out. You cannot hide something this corrupt this long.” +So said FOX News legal analyst Greg… https://t.co/xirATdRbG9" +06/26/2018,Politicians,@GovMikeHuckabee,Don’t tell anyone but ⁦@ckchumley⁩ does something poor ol Joe Scarborough didn’t do. She used her brain. Libs and… https://t.co/fjEn1qUJvj +06/26/2018,Politicians,@GovMikeHuckabee,Kipps Restaurant in S Wales NY looks like my kind of place! https://t.co/BM1p2O2yjH +06/26/2018,Politicians,@GovMikeHuckabee,On w/ @ShannonBream on @FoxNews at 11pmET 2nite. Was going to stop for dinner on way but was asked to leave the ga… https://t.co/nDnW1Pq5bH +06/25/2018,Politicians,@GovMikeHuckabee,I want to respond to the idiotic claims by the left that conservatives “have it coming” because this is just like t… https://t.co/0kXH9xpcBT +06/25/2018,Politicians,@GovMikeHuckabee,"Strzok to testify: what if he pulls a ""Bill Clinton""? https://t.co/gtNRYGGw8P https://t.co/GKVKBXOr6A" +06/25/2018,Politicians,@GovMikeHuckabee,I don't understand rejecting the biz of ppl you disagree with. I want as much biz as I can get from libs--the $$ th… https://t.co/ErAS1fcs6X +06/25/2018,Politicians,@GovMikeHuckabee,Insightful and thoughtful analysis of why the left will regret it's condescending and smug crusade against those it… https://t.co/FloA2ujzsW +06/25/2018,Politicians,@GovMikeHuckabee,Thanks Scott. Hearing from ppl who actually know me is way better than criticism from Fake News and those who pret… https://t.co/ZHrye9nfZp +06/24/2018,Politicians,@GovMikeHuckabee,"Here you go! You want to defend gangs who rape, murder, and mutilate little children too? Repeat--a criminal gang… https://t.co/FrIc33u4Zu" +06/24/2018,Politicians,@GovMikeHuckabee,"Thanks, Franklin. You're right about @PressSec . She IS a nice lady. Of course I'm as objective about her as the… https://t.co/v6vegugPSB" +06/24/2018,Politicians,@GovMikeHuckabee,Absurd! To see race in everything IS racist. Nothing about race but about a vile violent criminal gang. Please u… https://t.co/KLydNPA2pR +06/23/2018,Politicians,@GovMikeHuckabee,"Yes @ktumulty because MS-13 is not a race but an illegal gang who rapes, murders, and mutilates children as sport.… https://t.co/5klJXnXqtN" +06/23/2018,Politicians,@GovMikeHuckabee,"RT @HuckabeeOnTBN: TONIGHT: the President of the United States, @realDonaldTrump, sits down to discuss his thoughts about international rel…" +06/23/2018,Politicians,@GovMikeHuckabee,Bigotry. On the menu at Red Hen Restaurant in Lexington VA. Or you can ask for the “Hate Plate”. And appetizers ar… https://t.co/ed8YPlRcJC +06/23/2018,Politicians,@GovMikeHuckabee,ICYMI but truly regret it! https://t.co/XYjaTvL3wu +06/23/2018,Politicians,@GovMikeHuckabee,"Exclusive interview with @realDonaldTrump 2nite on https://t.co/OXDC775SgR 8/11pm et/ 7/10 ct so watch, record, or… https://t.co/7NPkjLCWct" +06/23/2018,Politicians,@GovMikeHuckabee,Nancy Pelosi introduces her campaign committee for the take back of the House. https://t.co/yKDhkVubck +06/23/2018,Politicians,@GovMikeHuckabee,Get up EARLY on Sat b/c I'm on @foxandfriends at 7:30am ET on @FoxNews and will preview my exclusive intvu w/… https://t.co/X8noa0Rd8D +06/23/2018,Politicians,@GovMikeHuckabee,"OK, time-out from all things political. This is one of the coolest videos I've ever watched. Headed to Liverpool… https://t.co/WImoiedwsv" +06/23/2018,Politicians,@GovMikeHuckabee,"Thanks, @brianstelter for the shout out. I hope you and the rest of the world watches intvu w/ @realDonaldTrump S… https://t.co/KIJX0sn7j5" +06/22/2018,Politicians,@GovMikeHuckabee,For the fact deprived Media who has descended into a new level of shame here are some truths they probably will nev… https://t.co/K4rEcx6YyU +06/22/2018,Politicians,@GovMikeHuckabee,Even after the release of a 568-page report documenting example after example of the stunning partisanship infectin… https://t.co/x79sIUhjyB +06/22/2018,Politicians,@GovMikeHuckabee,Cancel your Sat nite plans or set DVR for Sat/Sun 8&11 ET to watch @HuckabeeOnTBN and exclusive intvu w/… https://t.co/yAyyd3nuLR +06/22/2018,Politicians,@GovMikeHuckabee,Don't miss @Varneyco on @FoxBusiness at 9amET and @AmericaNewsroom on @FoxNews at 9:30amET as I will be wearing… https://t.co/9nCFZG3It9 +06/22/2018,Politicians,@GovMikeHuckabee,For those still contending that “there’s nothing to see here” in the investigation of the FBI’s handling of the Cli… https://t.co/jGxbKH4nls +06/22/2018,Politicians,@GovMikeHuckabee,I wrestled with whether to comment on this or not because I didn’t want to call more attention to the sick comments… https://t.co/n8UpTOlRZo +06/21/2018,Politicians,@GovMikeHuckabee,The news that an Islamic reform group had received an apology and a nearly $3.4 million settlement from the Souther… https://t.co/aj8USOpkaM +06/21/2018,Politicians,@GovMikeHuckabee,SC Governor race runoff coming up and I appreciate @henrymcmaster for his consistent fight for the sanctity of life… https://t.co/mKvU0RBRAJ +06/21/2018,Politicians,@GovMikeHuckabee,I hope you will sign up now for the Evening Edition. This email delivers Monday - Saturday from me and might just b… https://t.co/k1oX6LcbVl +06/21/2018,Politicians,@GovMikeHuckabee,Hamas is a terrorist organization. They lie. They kill innocent people and aim rockets at babies. They pretend the… https://t.co/3fUzB99ugq +06/21/2018,Politicians,@GovMikeHuckabee,ALERT! I'll be on @EveningEdit w/ Liz McDonald on @FoxBusiness and will play secretly recorded audio from… https://t.co/O0yjG5wPxv +06/21/2018,Politicians,@GovMikeHuckabee,"Hillary intended to break law, FBI intended to absolve her: https://t.co/3Qqh6RUJHF https://t.co/spkA9wr2aX" +06/21/2018,Politicians,@GovMikeHuckabee,Is there any way Jeff Flake would just go home NOW? His petulance and pride seems more important to him than doing… https://t.co/F93FNpX5HP +06/21/2018,Politicians,@GovMikeHuckabee,"My exclusive interview w/ @realDonaldTrump this weekend. We share recipes, talk sports, show each other our surgic… https://t.co/KAWIbkWqx2" +06/20/2018,Politicians,@GovMikeHuckabee,"Breaking news from ABC! Unemployment numbers UP again...well, at least for some sad sacks at ABC who wrote and bro… https://t.co/PcpUdq2JBd" +06/20/2018,Politicians,@GovMikeHuckabee,Relax America! You're safe now! TSA in Little Rock just felt me up real good and gave me as complete a going over… https://t.co/kDDomrw59s +06/20/2018,Politicians,@GovMikeHuckabee,"As every parent knows, the cry of a child evokes a Pavlovian response that will grab your heartstrings and make you… https://t.co/5rKjMcHjp2" +06/20/2018,Politicians,@GovMikeHuckabee,Let critics call this US withdrawal from one UN council an “outrage” if they want. I’d call it “a good start.”… https://t.co/2m0JEHR33t +06/20/2018,Politicians,@GovMikeHuckabee,Dems and the media couldn’t have planned it better. They kept Tuesday’s news focused hysterically on immigration –… https://t.co/6VbyDUZi80 +06/20/2018,Politicians,@GovMikeHuckabee,Sit. Down. Brace yourself! I am applauding Democrat party in KS for disavowing AG candidate who displayed disgusti… https://t.co/jbPJBuT4zF +06/20/2018,Politicians,@GovMikeHuckabee,I've collected my lists of questions for IG Horowitz and Robert Mueller in one post. Please take a look and let me… https://t.co/T48H8pd3nJ +06/19/2018,Politicians,@GovMikeHuckabee,"With Peter Strzok in the news, I thought it would be helpful for me to pull together my commentaries directly relat… https://t.co/ozZxWjZ1eb" +06/19/2018,Politicians,@GovMikeHuckabee,My newsletter is out! Read it here: https://t.co/5T8RvDtgXJ https://t.co/ONWmG5CNUP +06/19/2018,Politicians,@GovMikeHuckabee,A response to Laura Bush: https://t.co/28wC2009c6 https://t.co/e8U4G014Cn +06/19/2018,Politicians,@GovMikeHuckabee,"I have great respect for Laura Bush, but the attached article spells out why she was terribly wrong in comparing il… https://t.co/0Z1HZEbOZQ" +06/19/2018,Politicians,@GovMikeHuckabee,"Note to Horowitz: ""Past department practices"" could be rotten, too: https://t.co/5KWF73YJkW https://t.co/V4jjQwAT7j" +06/19/2018,Politicians,@GovMikeHuckabee,Good thing media and Dems have been consistent in their concern of immigrant kids. Right? Check out Twitter thread… https://t.co/tM1xfYRfnf +06/18/2018,Politicians,@GovMikeHuckabee,My Evening Edition is out and you don't want to miss it: https://t.co/naRA2AEZ0j https://t.co/YrMHG91cNL +06/18/2018,Politicians,@GovMikeHuckabee,I’ve interviewed Rob Reiner and think he’s a terrific film director. And while he and I certainly don’t agree on m… https://t.co/tkyZ517O05 +06/18/2018,Politicians,@GovMikeHuckabee,Do you agree with President Trump's message to Senate Democrats that they need to come on board and help pass legis… https://t.co/u6PmWCyROF +06/18/2018,Politicians,@GovMikeHuckabee,My newsletter is out: Today's Commentary includes: 20 Questions for IG Michael Horowitz-- a short update about Pet… https://t.co/8A7XGsJrtT +06/18/2018,Politicians,@GovMikeHuckabee,Check out this post via @HearMeOutApp https://t.co/aoKmZ2Z05B +06/18/2018,Politicians,@GovMikeHuckabee,ICYMI I explain how the media is like a swarm of green flies on my show @TBN this past weekend. Not for the faint… https://t.co/nzaD7vSxZO +06/18/2018,Politicians,@GovMikeHuckabee,"Now that DOJ Inspector General Michael Horowitz is about to sit for questioning by congressional committees, I thou… https://t.co/Oc8yjwAjOo" +06/18/2018,Politicians,@GovMikeHuckabee,In DC doing interviews for @TBN Show. Wonder Woman sequel being filmed near my hotel yesterday. One look at me and… https://t.co/08fFbeg2E1 +06/18/2018,Politicians,@GovMikeHuckabee,Never Trumpers at NRO play Sgt Joe Friday with a “just the facts” coverage of emotionally charged immigration issu… https://t.co/ngw8iTAqBP +06/18/2018,Politicians,@GovMikeHuckabee,I'm a big fan of @AGAlanWilson of SC who as Atty General has been a strong leader for protecting Constitutional rul… https://t.co/rW9NCQYxxA +06/18/2018,Politicians,@GovMikeHuckabee,Griffin's irrational screech might have once caused a reaction from those of us who support @realDonaldTrump and re… https://t.co/SvFsvcWWJo +06/17/2018,Politicians,@GovMikeHuckabee,2nite on @TBN Diamond and Silk and Journey’s Jonathan Cain among guests for @HuckabeeOnTBN 8Et/7ct. https://t.co/aUJuTviTBI +06/17/2018,Politicians,@GovMikeHuckabee,"Remembering my Dad today. He died in 1996. Didn’t finish high school, worked 2 jobs and never made much money but… https://t.co/6eFSz1NmW1" +06/17/2018,Politicians,@GovMikeHuckabee,"I don't like immigrant children being temporarily separated from parents, but where is outrage over PERMANENT separ… https://t.co/ceuts2gs39" +06/17/2018,Politicians,@GovMikeHuckabee,I'm up late 2nite planning and preparing for an unplanned and unscheduled impromptu surprise appearance on… https://t.co/U8XLooGnKU +06/17/2018,Politicians,@GovMikeHuckabee,This is now required viewing for all employees at the State Department! https://t.co/YPuesQQaXv +06/17/2018,Politicians,@GovMikeHuckabee,"Tonight, I went to Watters World. https://t.co/kJ5JzduuT9" +06/16/2018,Politicians,@GovMikeHuckabee,A story that should bring a tear to eyes of EVERY American. Everyday men and women put it all on the line for rest… https://t.co/OmZHBBw4Pe +06/16/2018,Politicians,@GovMikeHuckabee,Broadway theaters will be dark 2nite because Robert De Niro urges ppl to stay home and watch @DiamondandSilk on HU… https://t.co/k2edlu2S76 +06/16/2018,Politicians,@GovMikeHuckabee,Inspector General Michael Horowitz may have declined to confirm the cause-and-effect relationship between stunning… https://t.co/AYsoB6WEo0 +06/16/2018,Politicians,@GovMikeHuckabee,Rand Paul nearly murdered and guy gets 30 days. Manafort goes to slammer. Meantime Peter Strzok still getting FBI p… https://t.co/tMU4bWPZDK +06/16/2018,Politicians,@GovMikeHuckabee,Stressed? Too much rancor? Afraid of being Manafort’s roommate or mowing Rand Paul’s lawn and getting sucker punc… https://t.co/yFub2POBIz +06/16/2018,Politicians,@GovMikeHuckabee,Cong Joe Wilson joins Diamond & Silk and @NBCTheVoice Season 7 winner Craig Wayne Boyd and much more on… https://t.co/4redB0i8es +06/15/2018,Politicians,@GovMikeHuckabee,"Thursday, the NY AG filed a lawsuit against President Trump’s charity foundation, claiming that it illegally used m… https://t.co/HDwURdUrP6" +06/15/2018,Politicians,@GovMikeHuckabee,This report is so long that it’s going to take a while to work through it –- but we quickly see it does acknowledge… https://t.co/s2Ul5FJeVo +06/15/2018,Politicians,@GovMikeHuckabee,Oh crap! Now I know why they were handing out free boxes of Honey Smacks in the White House press room! https://t.co/XxugjDirBr +06/15/2018,Politicians,@GovMikeHuckabee,Breaking wind from CNN! @realDonaldTrump announces new tariffs on burgers sold at INTERNATIONAL House of Burgers… https://t.co/X4dz0lGN11 +06/15/2018,Politicians,@GovMikeHuckabee,Get this straight-FBI/DOJ employees take items of value from reporters in exchange for leaked info. Isn’t that leg… https://t.co/vgdEPIhPXw +06/14/2018,Politicians,@GovMikeHuckabee,I’m about to do something I don’t often do: I’m going to offer what I think is some good advice to the leadership o… https://t.co/dsCrYOLkY7 +06/14/2018,Politicians,@GovMikeHuckabee,"That pesky newsletter I write called the Evening Edition is out. I cover the 7-2 SCOTUS ruling, the IG report snow… https://t.co/j7sVV35BXw" +06/14/2018,Politicians,@GovMikeHuckabee,Great observation by my favorite Twitter-master @RealJamesWoods about @PressSec having to put up with obnoxious sho… https://t.co/Vefn9TnpEW +06/14/2018,Politicians,@GovMikeHuckabee,The next thing corrupt FBI official Peter Strzok should hear is “You have the right to remain silent...”. If this t… https://t.co/n6dmClSntX +06/14/2018,Politicians,@GovMikeHuckabee,"Last week’s jobless claims total was 218,000, which is 6,000 fewer than expected and the lowest in 44-1/2 years. H… https://t.co/mQ2W08EwAm" +06/14/2018,Politicians,@GovMikeHuckabee,I knew the anti-Trump elements in the media would never be able to give him any credit for his historic meeting wit… https://t.co/DuL5MRu20n +06/14/2018,Politicians,@GovMikeHuckabee,Stories like this always have a predictable template. “Alcohol was believed to have been involved?” Really???? N… https://t.co/eU4ZDywi0c +06/14/2018,Politicians,@GovMikeHuckabee,Genius Dem pepper sprays himself to demo dealing with school killers. Good thing he wasn’t proposing castrations f… https://t.co/gn10KQXeFq +06/14/2018,Politicians,@GovMikeHuckabee,No doubt the media is sad to recognize that @realDonaldTrump is celebrating his birthday in @WhiteHouse but will R… https://t.co/wZ3H1KTBf9 +06/14/2018,Politicians,@GovMikeHuckabee,The Summit already having profound impact. https://t.co/h7HONIUhOZ +06/14/2018,Politicians,@GovMikeHuckabee,"New study finds people of faith live four years longer than atheists. Actually, I believe they live an ETERNITY lo… https://t.co/4VyNVp6tkv" +06/13/2018,Politicians,@GovMikeHuckabee,Abortion Queen Cecile Richards says abortion safer than Tylenol. Rarely a person dies from reaction to painkillers… https://t.co/9VM8imWW6b +06/13/2018,Politicians,@GovMikeHuckabee,"While media attention has been focused on the astounding events unfolding quickly in Singapore, a longtime standoff… https://t.co/kMLZ098Xqv" +06/13/2018,Politicians,@GovMikeHuckabee,Will be on @LouDobbs on @FoxBusiness tonight during 7ET time. I think we are both fired up about Corker forgetting… https://t.co/qQlCVAaV61 +06/13/2018,Politicians,@GovMikeHuckabee,"Over the past few days, the predominant theme of my commentary has been “double standards.” As I sit and watch the… https://t.co/WSqG8gQuxw" +06/13/2018,Politicians,@GovMikeHuckabee,Here are a few basic truths to bear in mind when you're being bombarded with hysterical media coverage:… https://t.co/9FfoOdn6UJ +06/13/2018,Politicians,@GovMikeHuckabee,"If you’re tired of how the leftist excuses about the 2016 election are now repeated as if they’re “settled science,… https://t.co/zDhzDyrf2g" +06/13/2018,Politicians,@GovMikeHuckabee,"Outgoing (thank goodness!) Sen Corker just said GOP is like ""cult"" because of support of @realDonaldTrump but that'… https://t.co/xaaoWznRz7" +06/13/2018,Politicians,@GovMikeHuckabee,The media and leftists (same thing) are unhinged. Bill Maher wants economy to fail so @realDonaldTrump can be blame… https://t.co/iKesXCph9W +06/13/2018,Politicians,@GovMikeHuckabee,One of the more surreal sidelights to the startling and momentous events in Singapore was an interview given by ex-… https://t.co/AjgwHCqMIi +06/13/2018,Politicians,@GovMikeHuckabee,"On heels of NOKO summit, @realDonaldTrump just announced he will seek to negotiate with @IHOb to get them to change… https://t.co/HaeeMLBocf" +06/12/2018,Politicians,@GovMikeHuckabee,Sen Claire-Air McCaskill of MO has an RV with wings! But it’s the dishonesty about it that’s seems so shady. May… https://t.co/Tdcnt62EDI +06/12/2018,Politicians,@GovMikeHuckabee,I was anxiously awaiting the morning shows and headlines from the liberal media to see how they could possibly spin… https://t.co/sKfROtcxhm +06/12/2018,Politicians,@GovMikeHuckabee,"Billionaire George Soros is discovering that despite pouring many millions into American elections, voters are not… https://t.co/JJOLfM5Zsq" +06/12/2018,Politicians,@GovMikeHuckabee,"I’ve been spending some time catching up on reader comments --- you know, I do read them --- and wanted to respond… https://t.co/GoQgU3ubFf" +06/12/2018,Politicians,@GovMikeHuckabee,Bill Clinton's statement revealing and VERY troubling. Most of us believed that rape and sexual assault were ALWAY… https://t.co/B3rqZgTMAC +06/12/2018,Politicians,@GovMikeHuckabee,"Totally breaks my heart to hear this. Don't know Bode Miller other than by his incredible Olympic feats, but I am… https://t.co/UU1yzSoC1M" +06/12/2018,Politicians,@GovMikeHuckabee,"Rough translation of what Kim & his generals said after meeting: +Generals: Why did U sign the document before we… https://t.co/Leuz5F7eXX" +06/12/2018,Politicians,@GovMikeHuckabee,"Yes, there remains much work to be done, but can even his harshest critics give @POTUS credit for a historic step?… https://t.co/KQgiSSfZHn" +06/11/2018,Politicians,@GovMikeHuckabee,My thoughts on the today's 5-4 SCOTUS decision upholding the Ohio law for purging invalid voters from the voting ro… https://t.co/D87oguIUOy +06/11/2018,Politicians,@GovMikeHuckabee,I’ve had readers who haven’t kept up with what I’ve been writing or saying for the past 10 years or so accuse me of… https://t.co/HjlSAcqlE1 +06/11/2018,Politicians,@GovMikeHuckabee,"I just called Robert De Niro and told him that he's out of my ""circle of trust."" He cried like a 6 year old who di… https://t.co/0NhoRQYFSz" +06/11/2018,Politicians,@GovMikeHuckabee,Only thing sadder than De Niro's vile rant is that high-toned elite snobs at the event gave him a standing O. Were… https://t.co/PiUdyJ90wK +06/11/2018,Politicians,@GovMikeHuckabee,What does Kim Jong Un REALLY want from the summit? Gold? No. Groceries? No. GOLDEN ARCHES! He wants a McDonald's… https://t.co/cObCczbmom +06/11/2018,Politicians,@GovMikeHuckabee,"In Branson, MO for a couple of days taping my TBN show at Silver Dollar City. I love this place! Just ran into Ange… https://t.co/aoae1DyFtI" +06/10/2018,Politicians,@GovMikeHuckabee,Breaking wind from CNN! @realDonaldTrump announces new tariffs on fake eyebrows! https://t.co/LqPOkm625S +06/10/2018,Politicians,@GovMikeHuckabee,Dang hearing loss! @realDonaldTrump asked me to come to Singapore but I thought he said “sing some more” so now I… https://t.co/5rJrvucVYx +06/10/2018,Politicians,@GovMikeHuckabee,Watching the Trump-haters and media (but I repeat myself) faint because he stomps into G-7 like the Incredible Hulk… https://t.co/TnNlDcUe5z +06/09/2018,Politicians,@GovMikeHuckabee,"I'll be on @JudgeJeanine on @FoxNews at9pm ET, right after my show on @TBN at 8pm ET so you get a ""2nd blessing!""… https://t.co/WG8d8vZ1MG" +06/09/2018,Politicians,@GovMikeHuckabee,"@realDonaldTrump is doing what he promised by putting America first and the globalists in the media, GOP and Dem Pa… https://t.co/oEEbmGZQnY" +06/09/2018,Politicians,@GovMikeHuckabee,Jackie Green and Lauren Green McAfee discuss their book for women on @HuckabeeOnTBN 2nite. Refreshingly candid but… https://t.co/I6G15MgLfb +06/09/2018,Politicians,@GovMikeHuckabee,2nite don’t miss @HuckabeeOnTBN Michael Farris of @AllianceDefends talks SCOTUS cake case and Sen James Risch of ID… https://t.co/lthChA3B3g +06/08/2018,Politicians,@GovMikeHuckabee,On @HuckabeeOnTBN this week we talk NOKO w/ Sen James Risch; the SCOTUS cake decision w/ Michael Farris from… https://t.co/gWSqX8Wt3T +06/08/2018,Politicians,@GovMikeHuckabee,"Full story on DOJ ""Black Hole on Documents"" at https://t.co/2robSqR5YJ and YOU should subscribe to the daily and d… https://t.co/DXEnBGAN8O" +06/08/2018,Politicians,@GovMikeHuckabee,"Team of physicists, astronomers and mathematicians at MIT has completed a study of DOJ HQ-finds ""Black Hole for doc… https://t.co/GMHK8DdRCT" +06/08/2018,Politicians,@GovMikeHuckabee,Anthony Bourdain's suicide a sobering reminder of how fragile life is and that we never know what's going on inside… https://t.co/IdzKdA4hsh +06/08/2018,Politicians,@GovMikeHuckabee,Pen wars: The latest extravagant waste of taxpayer money by EPA Chief Scott Pruitt for Trump critics to be OUTRAGED… https://t.co/3yFtNX4Fgz +06/07/2018,Politicians,@GovMikeHuckabee,"Of the many groundless slanders that the left aims at…well, everyone not on the left...I let most of it roll off my… https://t.co/idflIgioVQ" +06/07/2018,Politicians,@GovMikeHuckabee,"Congrats to James Woods, the best Tweeter in the US and obviously a world class poker player! If you ever want to p… https://t.co/bxKepxqs0o" +06/07/2018,Politicians,@GovMikeHuckabee,I find this very offensive. Perhaps true but very offensive. I think I will demand an apology and for several peo… https://t.co/10bO5FZu5H +06/07/2018,Politicians,@GovMikeHuckabee,"Double Standards: As some conservative commentators noted, after eight months of the MeToo movement, prominent Holl… https://t.co/57pn3AAvSF" +06/07/2018,Politicians,@GovMikeHuckabee,"Will be on @scrowder on Louder with Crowder tonight! You will weep, laugh, scream and then sleep peacefully. https://t.co/AJtmvI2cjS" +06/07/2018,Politicians,@GovMikeHuckabee,Watch and be amazed...or amused depending on which universe you live in! https://t.co/yCKYehFaoO +06/07/2018,Politicians,@GovMikeHuckabee,I'll be up all night preparing for appearances on @AmericaNewsroom on @FoxNews at 9:30amET and @Varneyco on… https://t.co/nZ0N1VeCxK +06/07/2018,Politicians,@GovMikeHuckabee,Very funny moment on @Delta flight yesterday from NY to ATL. Tall African-American male boarded and a lady said “Ar… https://t.co/YUmRvwy8Q4 +06/07/2018,Politicians,@GovMikeHuckabee,America needs to reform how we deal with sentencing and drug crimes. My visit with @SandraSmithFox on… https://t.co/kdcJjdOoVa +06/06/2018,Politicians,@GovMikeHuckabee,A real estate broker in Massachusetts thought he and his 11-year-old daughter were just showing patriotism and hono… https://t.co/O61p8icK5A +06/06/2018,Politicians,@GovMikeHuckabee,"Bill Clinton should be very glad he’s not running for anything now, because his interview with Craig Melvin that ai… https://t.co/GhrgacsKRM" +06/06/2018,Politicians,@GovMikeHuckabee,Will be on @TheStoryFNC w/ @marthamaccallum on @FoxNews at 7pm ET/6CT and will break the story about the name chang… https://t.co/Jq9WyeJ0ea +06/06/2018,Politicians,@GovMikeHuckabee,"Don't miss my appearance on @EveningEdit on @FoxBusiness at 5pmET/4pmCT today because admit it, you got NOTHING els… https://t.co/J82Tsfc2gP" +06/06/2018,Politicians,@GovMikeHuckabee,This article by noted libertarian scholar Steven F. Hayward is the best piece about climate change I’ve seen in qui… https://t.co/3bpX74oSAG +06/06/2018,Politicians,@GovMikeHuckabee,"During the 2016 election campaign, President Trump often compared Hillary Clinton to former Navy submariner Kristia… https://t.co/mvs5epqhGi" +06/06/2018,Politicians,@GovMikeHuckabee,"The @WhiteHouse press corps can roll their eyes, but facts be facts! @PressSec HAS more credibility than the media… https://t.co/VOimLyQlJG" +06/06/2018,Politicians,@GovMikeHuckabee,"Was not a mistake on @KellyannePolls part. It's Biblical. ""Blessed are the Cheesemakers."" It's why evangelicals… https://t.co/Tl8Xyh7pck" +06/06/2018,Politicians,@GovMikeHuckabee,One of the most moving and sobering experiences of my life was a trip Janet and I made to Normandy. The depth of v… https://t.co/xzNQEPToy1 +06/06/2018,Politicians,@GovMikeHuckabee,"First Lady Melania Trump has been out of the public eye for a few weeks, which seems perfectly normal considering s… https://t.co/su6j9j9SoH" +06/05/2018,Politicians,@GovMikeHuckabee,I gotta explain to @PressSec that her cred is WAY higher than that! And I’m as objective about her as CNN is about… https://t.co/jc8bnl8c6O +06/05/2018,Politicians,@GovMikeHuckabee,One of the inexplicably major stories of the day is President Trump rescinding a White House invitation to the Supe… https://t.co/bSTEungHlo +06/05/2018,Politicians,@GovMikeHuckabee,One small part of a confidential letter written to special counsel Robert Mueller by the Trump legal team and leake… https://t.co/OvIfpcW3Dq +06/05/2018,Politicians,@GovMikeHuckabee,Great to see Cong @SteveScalise at Fox today during @FoxBusiness morning Show. He’s one of the good ones! https://t.co/Hqj64wGNGW +06/05/2018,Politicians,@GovMikeHuckabee,I'll be on @OutnumberedFNC on @FoxNews today at noonET because all the good looking guys were modeling underwear. I… https://t.co/gF3wFtBgBe +06/05/2018,Politicians,@GovMikeHuckabee,Ppl across America will get up early because I'll be on @MariaBartiromo on @FoxBusiness the entire 3 hrs from 6-9am… https://t.co/XxxHthWIro +06/04/2018,Politicians,@GovMikeHuckabee,The Philadelphia Eagles are NOT going to @WhiteHouse tomorrow but I WILL be on @IngrahamAngle tonight on @FoxNews a… https://t.co/qk0FDmQtq6 +06/04/2018,Politicians,@GovMikeHuckabee,Today marks the 29th anniversary of the Tiananmen Square massacre. That peaceful student pro-democracy protest is m… https://t.co/fSnaNr1LcF +06/04/2018,Politicians,@GovMikeHuckabee,A feature on my @TBN show is ICYMI as I read and report news stories you might have missed. You should watch and s… https://t.co/rIt9pv0seP +06/04/2018,Politicians,@GovMikeHuckabee,The good news of Howard Schultz running in 2020 is you get to use @WhiteHouse restrooms even if you don't pay your… https://t.co/x9rMaEniNc +06/04/2018,Politicians,@GovMikeHuckabee,"Mark your calendars, voters: there are primary elections tomorrow in Alabama, Iowa, Mississippi, Montana, New Jerse… https://t.co/ghdTlxVLrF" +06/04/2018,Politicians,@GovMikeHuckabee,"Unfortunately, while today’s 7-2 ruling in favor of Phillips is welcome and long-overdue relief for him, it still o… https://t.co/TfaUTvjvdc" +06/04/2018,Politicians,@GovMikeHuckabee,The decision upholds 1st Amendment that Govt can’t make law that forces ppl to violate their legitimate religious b… https://t.co/DZcQQmap2y +06/04/2018,Politicians,@GovMikeHuckabee,My daughter @PressSec has dinner with @GeorgeHBrett one of the greatest baseball players EVER! I had a hot dog wit… https://t.co/kPjWUdNVjs +06/04/2018,Politicians,@GovMikeHuckabee,Yes I DID “Keep Up With A Kardashian” on my @TBN show this weekend. My reasons will surprise you! https://t.co/HJhmU0QasP +06/04/2018,Politicians,@GovMikeHuckabee,"After reading Kyle Cheney’s piece in POLITICO that mentioned my commentary about Trey Gowdy, I was left with one qu… https://t.co/DYJIQDLXY1" +06/03/2018,Politicians,@GovMikeHuckabee,David Horowitz and @benshapiro join me on @TBN at 8Et/7ct along with comedian Jason Michaels and Felix Cavaliere of… https://t.co/CtPhhn7897 +06/03/2018,Politicians,@GovMikeHuckabee,2nite don’t miss https://t.co/GH1TONBY5r +06/03/2018,Politicians,@GovMikeHuckabee,Tell me you didn’t miss this on @foxandfriends on @FoxNews today! @realDonaldTrump was watching and you should hav… https://t.co/nxxZFVkW0f +06/03/2018,Politicians,@GovMikeHuckabee,Will be on @foxandfriends today on @FoxNews at 6:30am ET and appear from a @Starbucks in DC where I spent the night… https://t.co/R1PWy7KgWl +06/02/2018,Politicians,@GovMikeHuckabee,Today's newsletter is out and it is full of fresh news (not the fake kind from CNN)! I write about the North Korea… https://t.co/gPoH3SOzaJ +06/02/2018,Politicians,@GovMikeHuckabee,"After sneeringly dismissing the raises and bonuses many workers enjoyed due to the GOP tax cut as “crumbs,” House M… https://t.co/peFBYKMTHA" +06/02/2018,Politicians,@GovMikeHuckabee,"For those keeping score, Nancy Pelosi has now come out against tax cuts, raises, bonuses, strong GDP growth & recor… https://t.co/9uvTOBjLWp" +06/02/2018,Politicians,@GovMikeHuckabee,Musical guest 2nite on https://t.co/GH1TONTyWZ is Felix Cavaliere of the Rascals. “Good Lovin” and Good Fun! https://t.co/OCw0WYMNsK +06/02/2018,Politicians,@GovMikeHuckabee,Headed to DC today. Hope all my shots are current. +06/02/2018,Politicians,@GovMikeHuckabee,My show @TBN is on 2nite. Guests include David Horowitz and @benshapiro and if you don’t watch Bob Mueller will int… https://t.co/Y1wYUnwt9i +06/01/2018,Politicians,@GovMikeHuckabee,"A side of me you've never seen, but absolutely should! Watch and share this video, but only if you are ""BORN TO BE… https://t.co/MPwa3zzxGp" +06/01/2018,Politicians,@GovMikeHuckabee,"Lego my Legos! And I hear he was also ticked because he couldn't find his Batman pajamas with the feet attached, h… https://t.co/megWTlkGhB" +06/01/2018,Politicians,@GovMikeHuckabee,"This morning, the Labor Department reported a better-than-expected 223,000 jobs were created in May, and unemployme… https://t.co/dy1smiVH7R" +06/26/2018,Politicians,@GovernorPataki,Congratulations @AJ_Cats_ on making the Manhattan GOP Stronger! https://t.co/KJ3NY3ebcx +06/16/2018,Politicians,@GovernorPataki,RT @bbretonwindham: Can't forget #ThrowbackThursday today ! A great event thanks to @GovernorPataki ! 2010 #nhpolitics https://t.co/soc9kwD… +06/14/2018,Politicians,@GovernorPataki,Happy Birthday @GeorgeHWBush on your 94th. #USA https://t.co/e9Gc5ZQ12g +06/13/2018,Politicians,@GovernorPataki,Congratulations to my former Press Sec. Lynn Krough @lynnbaby13 on being named @marcmolinaro Campaign Manager. #Win https://t.co/TDygBzOgcH +06/13/2018,Politicians,@GovernorPataki,@marcmolinaro can win this! Daily News had me down 17 the day before. Especially if @CynthiaNixon stays in. #NYGOP https://t.co/fAgSwztb9G +06/10/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Dave’s ALIVE DAY! 6/9/18 > 6/9/15 +No better way to celebrate LIFE than by cheers’ing the marriage of friends. Congrats A…" +06/01/2018,Politicians,@GovernorPataki,Happy 25th Anniversary to my good friends Bill and Cheryl Murray! https://t.co/khrtMmBN2s +05/28/2018,Politicians,@GovernorPataki,"RT @CP1NYS: On this Memorial Day, consider what we owe America's veterans https://t.co/HGXelrcSzp via @nypost" +05/26/2018,Politicians,@GovernorPataki,Herman 'Denny' Farrell was a fierce partisan but someone who's word you could trust and who really cared about NY https://t.co/GlaOYKkl8x +05/26/2018,Politicians,@GovernorPataki,"RT @ERIECOUNTYGOP: “Albany needs to change, and Marc Molinaro will bring that change!” Former Republican Governor George Pataki #BelieveAga…" +05/26/2018,Politicians,@GovernorPataki,Please remember those who have sacrificed this #MemorialDayWeekend https://t.co/3RDUhjzInz +05/25/2018,Politicians,@GovernorPataki,Congratulations to my friend @DaveCurrier1 https://t.co/glaNPjgd3j +05/23/2018,Politicians,@GovernorPataki,I was proud to Introduce @marcmolinaro at the #NYGOPConvention. We beat the odds in 1994 and will do it again in 20… https://t.co/ve3wqe7m5B +05/23/2018,Politicians,@GovernorPataki,In the green room with @marcmolinaro getting ready to nominate him as the next Governor of our great state. #NYGOP https://t.co/3wN7Qqw12t +05/21/2018,Politicians,@GovernorPataki,"RT @jpcahillsr: 1/2 After serious deliberation and reflection, I have decided not to seek the office of NYS AG. I believe the stakes are h…" +05/20/2018,Politicians,@GovernorPataki,"RT @KevinTshirt: Pretty cool to come across a picture of @GovernorPataki at my elementary school in 1997, when I was in 5th grade. I imagin…" +05/17/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Leaving #Chicago w/ grateful & happy hearts after meeting so many wonderful readers, including this warm reception last…" +05/08/2018,Politicians,@GovernorPataki,"RT @jpcahillsr: Respect for women,the rule of law & the integrity of our legal system is imperiled by those who have abused power & turned…" +05/08/2018,Politicians,@GovernorPataki,Congratulations Andrea! It’s nice to see Millennials like YOU getting involved in our political process. @AJ_Cats_… https://t.co/5NMZYJ8wmY +05/05/2018,Politicians,@GovernorPataki,RT @AllisonPataki: My goodness. Speechless. Thank you @JessicaSimpson https://t.co/LVOQ3zbRSr +05/05/2018,Politicians,@GovernorPataki,I remember it well. Tom was a GREAT senator for the people of the Southern Tier and a wonderful friend. https://t.co/JxgkYQKgLH +05/03/2018,Politicians,@GovernorPataki,RT @MMR_MattRyan: Old Glory always makes for a nice backdrop. Here’s a shot today I took of NY’s 53rd Governor @GovernorPataki. https://t.… +05/03/2018,Politicians,@GovernorPataki,RT @CP1NYS: The Future of New York is in Our Hands... https://t.co/lPLFxjDWkE via #constantcontact +05/01/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: @DavidLevy42 & I had the privilege of sharing a bit of our story w/ @JennaBushHager on the @TODAYshow, speaking about Da…" +05/01/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: So grateful to the @washingtonpost for allowing us to share our story behind #BeautyInTheBrokenPlaces : +https://t.co/jIO…" +04/26/2018,Politicians,@GovernorPataki,"Congratulations @RichardGrenell - it took too long, but worth the wait. https://t.co/yhvF3BC6iD" +04/26/2018,Politicians,@GovernorPataki,#ThrowbackThursday to January of 1995. A picture of our NYC Executive Chamber staff in my World Trade Center office. https://t.co/BpXPwsuJLe +04/25/2018,Politicians,@GovernorPataki,Congratulations Doug! You will be a great Assemblyman. https://t.co/T0YDIwY6yJ +04/24/2018,Politicians,@GovernorPataki,RT @SmithForNY: Good Morning! Today is the day! It's 6:00am and polls are now open! Please help us keep our strong voice in Albany by elect… +04/24/2018,Politicians,@GovernorPataki,RT @killian4senate: POLLS ARE OPEN! It's a beautiful day to vote! Local elections provide a real opportunity to affect change because every… +04/23/2018,Politicians,@GovernorPataki,Make sure you get out and vote if you live in NY assembly district 5 for @SmithforNY Doug is the future of our part… https://t.co/GbG6Rpg6LQ +04/23/2018,Politicians,@GovernorPataki,Make sure you go out and vote for @killian4senate tomorrow in NYS-37. We need a two party system in #Albany https://t.co/9U3UH5A7Yd +04/23/2018,Politicians,@GovernorPataki,#ProudFather https://t.co/mSA5A8KteH +04/18/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Woo hoo! @klgandhoda - thank you for naming BEAUTY IN THE BROKEN PLACES as a 'Favorite Thing'! https://t.co/js0eafdIcy +#…" +04/18/2018,Politicians,@GovernorPataki,"Barbara Bush was loved by all Americans, a wonderful first lady, a great wife and mother. Libby and I were honored… https://t.co/AZeuFsjz2k" +04/17/2018,Politicians,@GovernorPataki,Libby and I have #Barbara_Bush in our thoughts and prayers tonight. @GeorgeHWBush @JebBush @BarbaraBushFdn +04/04/2018,Politicians,@GovernorPataki,Happy to help @killian4senate. It’s important that our great state is not completely dominated by NYC liberals.… https://t.co/o2OzJkG4k2 +04/04/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Moody skies and bald trees. April showers bring May flowers, please? And here’s hoping that April gray makes for a color…" +04/04/2018,Politicians,@GovernorPataki,RT @TwitterMoments: People pay tribute to Martin Luther King Jr. on the 50th anniversary of his assassination. #MLK50 https://t.co/6mIEWaz6… +04/04/2018,Politicians,@GovernorPataki,RT @killian4senate: Governor George Pataki endorses Julie Killian for State Senate https://t.co/NT1BzORbGU +04/04/2018,Politicians,@GovernorPataki,"RT @AllisonPataki: Sacre bleu, the day is here! WHERE THE LIGHT FALLS is out in the world in paperback! Isn’t it magnifique? It’s lightweig…" +04/04/2018,Politicians,@GovernorPataki,RT @DaveCatalfamo: So what is modern history? Happy to posit the record of my former boss @GovernorPataki against any Gov https://t.co/Jq3… +04/03/2018,Politicians,@GovernorPataki,Where the Light Falls’ written by my son and daughter @AllisonPataki and @owen_pataki is now in paperback. Great Re… https://t.co/k8GVGJyzJv +04/03/2018,Politicians,@GovernorPataki,Looking forward to being with @killian4senate in Westchester tomorrow. https://t.co/eqlQ6cVB3h +04/03/2018,Politicians,@GovernorPataki,"Jasper was a tremendous leader, wonderful man and a good friend who will be greatly missed. https://t.co/LRwUsdaELF" +04/02/2018,Politicians,@GovernorPataki,"It’s not to late to Join me, Sen. Flanagan and Sen. Young at a fundraiser for @killian4senate in NYC tomorrow. https://t.co/2sgBFQUOuQ" +04/01/2018,Politicians,@GovernorPataki,@tuckahoetommy Thank You Tommy. Same to you and your family. +04/01/2018,Politicians,@GovernorPataki,Wishing you and your family the happiest Easter of all. #Easter2018 #HappyEaster #EasterSunday +03/29/2018,Politicians,@GovernorPataki,#ThrowbackThursday #Believe #NYGOP https://t.co/nlkG14jo34 +03/20/2018,Politicians,@GovernorPataki,Great to endorse and support @DougSmithNY at an event tonight. #VoteSmith April 24th @SmithforNY https://t.co/RnoWOu5ORK +03/17/2018,Politicians,@GovernorPataki,#HappyStPatricksDay. We had a great dedicated administration that created real change and made #NY a better place t… https://t.co/3JcA6opWIQ +03/16/2018,Politicians,@GovernorPataki,#FlashbackFriday from the #StPatricksDayParade in Manhattan with my good friend @jpcahillsr #StPatricksDay2018 https://t.co/D3XhnZZuO3 +03/16/2018,Politicians,@GovernorPataki,RT @bbretonwindham: . #ThrowbackThursday Great morning at @SalemRotary with @GovernorPataki ! As always thanks Gov !!! #nhpolitics 🇺🇸… +03/15/2018,Politicians,@GovernorPataki,"RT @KatalinBogyay: Introduced women wine makers from Hungary @UN_CSW @HUNMissionToUN .'Salon extraordinaire ' opened by Min.of State Novak,…" +03/08/2018,Politicians,@GovernorPataki,It was great being on with @JCats2013 for his debut “Cats At Night” show today with @AJ_Cats_ https://t.co/zfUYXoM2pI +03/07/2018,Politicians,@GovernorPataki,Congratulations to my good friend @JCats2013 on his new Wednesday evening talk show “Cats at Night” from 5-6 on @am970TheAnswer #CatsAtNight +03/03/2018,Politicians,@GovernorPataki,RT @CheleFarley: The Countdown begins! https://t.co/oeQGVpn1Za +03/03/2018,Politicians,@GovernorPataki,RT @NLawGlobal: We appreciate @Law360's interview with our lawyer and colleague George Pataki. https://t.co/EvNzQHOJaP +03/03/2018,Politicians,@GovernorPataki,RT @Law360: Check out Randy Maniloff's interview with former #NewYork Gov. George Pataki: https://t.co/I0zKYeFadL https://t.co/tQAh9JgY1R +02/02/2018,Politicians,@GovernorPataki,What a wonderful story. Thank You Philip. https://t.co/xgFjGhUMUP +02/02/2018,Politicians,@GovernorPataki,RT @JCats2013: Great Memories https://t.co/CFfJCZhaV5 +02/02/2018,Politicians,@GovernorPataki,NY needs a senator whose only agenda is to fight for our hardworking families and small businesses @CheleFarley https://t.co/vbm3ZzOO7i +02/01/2018,Politicians,@GovernorPataki,#ThrowbackThursday @JCats2013 home with @MikeBloomberg in 2002. https://t.co/HrgdW6tNue +01/31/2018,Politicians,@GovernorPataki,A great friend and loyal advisor. Congratulations Tommy. https://t.co/huzjW8MdSH +01/29/2018,Politicians,@GovernorPataki,"RT @DaveCatalfamo: “What we did in 94, we did together. But this is not about the past, we will shock the world again.” @GovernorPataki @C…" +01/29/2018,Politicians,@GovernorPataki,RT @chapinfay: Chairman Mike Long @CP1NYS called in an “old friend” to keynote lunch at #cppac. 2 standing O’s in 10 minute speech - maybe… +01/15/2018,Politicians,@GovernorPataki,"It is our obligation to honor the memory of Dr. King, not just today but every day of the year by keeping the dream alive for all. #MLKDay" +01/01/2018,Politicians,@GovernorPataki,Happy New Year! Wishing everyone health and happiness for 2018. #NewYearsEve2018 https://t.co/cR7hbnjgGq +12/31/2017,Politicians,@GovernorPataki,RT @jjk607: Our 2017 year in photos includes a special @GovernorPataki appearance. https://t.co/lbJaPHil4R +12/24/2017,Politicians,@GovernorPataki,#MerryChristmas and Blessings to our incredible military for keeping our country’s freedom and integrity safe https://t.co/n4LJPPwS3k +12/14/2017,Politicians,@GovernorPataki,".@CTLizB thanks for the compliment, but it wouldn’t be prudent for me to speculate at this time." +12/07/2017,Politicians,@GovernorPataki,#ThrowbackThursday Great day @bbretonwindham https://t.co/FY4JmNWszL +11/18/2017,Politicians,@GovernorPataki,RT @Yale: The Bulldogs are the Ivy League champs after defeating Harvard 24-3 at the Yale Bowl! #TheGame @Yale_Football https://t.co/x5XSOa… +11/18/2017,Politicians,@GovernorPataki,Go @Yale_Football #BeatHarvard https://t.co/oP05v8hCbV +11/16/2017,Politicians,@GovernorPataki,Congratulations Bob! https://t.co/nVRI0Wqn42 +11/07/2017,Politicians,@GovernorPataki,"If you live in Westchester, NY don’t forget to vote for @RobAstorino today. https://t.co/dUqhuC0V8y" +11/06/2017,Politicians,@GovernorPataki,Don’t forget to vote for @jackmartinsny for Nassau County Executive tomorrow. +11/06/2017,Politicians,@GovernorPataki,RT @jjk607: “We’re gonna pull a Pataki” exclaimed @NMalliotakis when @GovernorPataki predicted an upset win for her tmrw. https://t.co/7Y1Y… +11/06/2017,Politicians,@GovernorPataki,RT @daveevansabc7: 100th anniversary of women getting right to vote “it’s time for a woman mayor in nyc”@GovernorPataki https://t.co/VnLEnk… +11/06/2017,Politicians,@GovernorPataki,"If you live in #Queens and want a independent voice in City Hall, vote for my friend @junipercivic prez Bob Holden https://t.co/jv7TRjjgRH" +11/04/2017,Politicians,@GovernorPataki,"RT @VanHipp: Great catching up in #NYC w/one of my favs, @GovernorPataki —a true #Statesman who showed us all what #American #leadership is…" +11/01/2017,Politicians,@GovernorPataki,"Worst terror attack on NYC since Sept11 a sober reminder that we must remain vigilant, look out for each other & never bow to terror." +10/27/2017,Politicians,@GovernorPataki,It was a great day. On to victory on Nov 7th @jackmartinsny. https://t.co/5nFhe915Hb +10/25/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: ""I cannot endure to waste anything as precious as autumn sunshine."" - Nathaniel Hawthorne +#fall #outside https://t.co/7…" +10/20/2017,Politicians,@GovernorPataki,"RT @JCats2013: THE GOP’S FUTURE in NY @JCats2013 @AJ_Cats_ +Proud Father Watch Andrea Cats NY1 video +Get common sense Americans +https://t…" +10/17/2017,Politicians,@GovernorPataki,RT @AdirondacksYes: @AdirondacksYes thrilled by support of @GovernorPataki and other former NYS and federal officials and enviro ldrs. http… +10/15/2017,Politicians,@GovernorPataki,"RT @JCats2013: CatsRoundtable listen live 10/15 8:30am EST AM970|https://t.co/R7p9z2wVfg +@NMalliotakis - Feeling good about the election" +10/11/2017,Politicians,@GovernorPataki,"RT @cspencer1508: It was lovely to meet you and your family, and thanks so much for your talk on #Sisi. You added hugely to the @AlthorpLit…" +10/11/2017,Politicians,@GovernorPataki,RT @AllisonPataki: Stunning & surreal weekend at @AlthorpLitFest - an absolute privilege to take part in such a gathering. Many thanks to @… +10/11/2017,Politicians,@GovernorPataki,@AJ_Cats_ @CityAndStateNY Congratulations @AJ_Cats_ You will do a terrific job as our new @Manhattan_GOP Leader! +10/07/2017,Politicians,@GovernorPataki,Thank you @ronnehring native New Yorker for all you do for conservative cause in CA- +10/06/2017,Politicians,@GovernorPataki,RT @jackmartinsny: Honored to have the endorsement of @GovernorPataki our last GOP governor who accomplished so much for Nassau & all of NY… +10/02/2017,Politicians,@GovernorPataki,A great appointment. A tremendous person who has the expertise and knowledge to help those in need. This is exactly… https://t.co/A1tO7gLj4o +09/30/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: Help me #give2veterans. Every retweet means a dollar for @Stand4Heroes, up to $500K, by 9/30. Let's see how much we can…" +09/30/2017,Politicians,@GovernorPataki,"RT @bbretonwindham: Great Tweet @famousquotenet from one of the best my friend @GovernorPataki +#nhpolitics #MAGA https://t.co/Fd8A9wayLp" +09/26/2017,Politicians,@GovernorPataki,American lives are at risk it's critical that we FOCUS efforts now on helping #PuertoRico recover from the devastation of Hurricane Maria +09/22/2017,Politicians,@GovernorPataki,RT @Tourismuganda: @vincent_masabac @realDonaldTrump @NLawGlobal @adoniaayebare @GorillaTrekking @GovernorPataki @scott_eisner The @NLawGlo… +09/18/2017,Politicians,@GovernorPataki,Congratulations @AJ_Cats_ Great choice by @Manhattan_GOP #NYC. https://t.co/wpQMrg83fA +09/13/2017,Politicians,@GovernorPataki,RT @cathy_blaney: @GovernorPataki a class act as always https://t.co/Nh32Q4ZRQu +09/12/2017,Politicians,@GovernorPataki,"RT @jpcahillsr: On Sept. 11, George Pataki remains New York's comforter-in-chief https://t.co/buVFWkgiBy" +09/11/2017,Politicians,@GovernorPataki,Joining my friends @newsmax to share memories from Sept 11th https://t.co/rC9U9LsXrE +09/11/2017,Politicians,@GovernorPataki,"RT @BakerMachado: On the anniversary of 9/11, we ask @GovernorPataki if we are safer. Join me and @jiveDurkey on #CheddarLIVE +https://t.co/…" +09/11/2017,Politicians,@GovernorPataki,"It's is always an honor and inspiring to spend time with our first responders, but especially today. https://t.co/IHnCFw0fcx" +09/10/2017,Politicians,@GovernorPataki,#NeverForget Ex-New York governor reflects on 9/11 anniversary | TheHill https://t.co/sUpfz3vsZi +09/08/2017,Politicians,@GovernorPataki,"RT @JCats2013: CatsRoundtable listen live 10/10 9:00am EST AM970|https://t.co/R7p9z2wVfg +@GovernorPataki - 9/11, the Governor's leadership" +09/01/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ... #ThrowbackThursday @GovernorPataki at the @WindhamNHRec August Annual Senior Picnic in Windham #nhpolitics #oneoft… +08/19/2017,Politicians,@GovernorPataki,"Libby and I are saddened by the loss of one of the world's greatest political minds, our dear friend Arthur Finkels… https://t.co/bziw9pKdYT" +08/16/2017,Politicians,@GovernorPataki,"Wayne Bennett an outstanding public servant & Superintendent of @nyspolice Saddened by his passing, he & his family are in our prayers" +08/16/2017,Politicians,@GovernorPataki,East Hampton Library benefit with @owen_pataki and @JessSeinfeld - So proud! #WhereTheLightFalls @AllisonPataki https://t.co/Z0ZMm2vafJ +08/15/2017,Politicians,@GovernorPataki,"Kid Rock is exactly the kind of candidate the GOP needs right now. #KidRockForSenate @KidRock + https://t.co/gWagkLPcBb" +08/10/2017,Politicians,@GovernorPataki,RT @JohnnyBPhilV: Former NY Gov George Pataki Joins Phil Valentine Today. @ValentineShow @GovernorPataki +08/04/2017,Politicians,@GovernorPataki,Congratulations @peekskillbrews for taking home the gold! https://t.co/eZGLiU4ZMf +08/04/2017,Politicians,@GovernorPataki,Congrats to my friend David Malpass who was confirmed by #USSenate as Treasury's undersec. for international affairs https://t.co/e9j6FMpQ3K +07/29/2017,Politicians,@GovernorPataki,"RT @LovinOnBuffalo: Thanks, @GovernorPataki for knowing the value of @RichardsonCtr and allocating the funding 11 years ago! #TheMoreYouKno…" +07/29/2017,Politicians,@GovernorPataki,RT @Sept11Memorial: The #911Museum has welcomed over 10 million visitors since opening its doors in 2014. https://t.co/52q2hid1zS https://t… +07/20/2017,Politicians,@GovernorPataki,"John McCain is a patriot, an American hero and the very definition of courage. Prayers for a speedy recovery." +07/17/2017,Politicians,@GovernorPataki,#WheretheLightFalls is launched & off to a tremendous start with @AllisonPataki and Owen appearing on @TODAYshow wi… https://t.co/HrBuror6sn +07/15/2017,Politicians,@GovernorPataki,#ProudFather https://t.co/nODEPlUZaN +07/14/2017,Politicians,@GovernorPataki,"RT @AllisonPataki: Thank you so much for having us, @rosannascotto , great to see you! https://t.co/tY9EEnncap" +07/04/2017,Politicians,@GovernorPataki,RT @EliseStefanik: Look who @danstec and I ran into at the Willsboro 4th of July Parade?! Great to see you @GovernorPataki 🇺🇸 https://t.co/… +07/04/2017,Politicians,@GovernorPataki,https://t.co/Q6fRkq4oRR government. Politicians the servants of the people not our master. Important in 1776 More important now +07/04/2017,Politicians,@GovernorPataki,We are the land of the Brave and the home of the Free. Let's pay tribute to our brave American Heroes today. #IndependenceDay +07/01/2017,Politicians,@GovernorPataki,WHERE THE LIGHT FALLS is on sale for pre-order now! By two of my favorite authors @AllisonPataki & Owen Pataki! https://t.co/IwEINb5SvT +06/30/2017,Politicians,@GovernorPataki,Have a great #July4th weekend! #Independenceday2017 #GODBLESSTHEUSA https://t.co/TBGPeY5OBh +06/29/2017,Politicians,@GovernorPataki,#ThrowbackThursday At an event in January with candidate for #NYC Mayor @NMalliotakis #GOP https://t.co/96ysGjPtZe +06/29/2017,Politicians,@GovernorPataki,"Sad to see my friend @MasseyForMayor out of the Mayors race, hope he stays involved and runs for office again. #NYC #NYC2017" +06/29/2017,Politicians,@GovernorPataki,"RT @kilmeade: .@GovernorPataki joins me on #TheBrianKilmeadeShow today! +Watch now: https://t.co/VuIepVGPlh" +06/28/2017,Politicians,@GovernorPataki,RT @AllisonPataki: 1 month to go...w/ co-author/bro at @RandomHouse HQ to prep for launch of WHERE THE LIGHT FALLS. 7/11 will be here befor… +06/26/2017,Politicians,@GovernorPataki,RT @leemark607: @GovernorPataki Cleaned up at moms. Found I saved this. Thanks for what you did (and tried to) for NY. Too bad dems are s… +06/24/2017,Politicians,@GovernorPataki,Thank You @RyanMoses20 We had a great team! #NewYork #Empirestate https://t.co/m8hOaVdLJW +06/24/2017,Politicians,@GovernorPataki,Thank you @CCFdn. https://t.co/S1FvoBNVPU +06/22/2017,Politicians,@GovernorPataki,RT @AllisonPataki: A busy day of book launching! #books #review #SummerReading https://t.co/3d6KF99MvV +06/22/2017,Politicians,@GovernorPataki,Congratulations @JoeLhota. He's the right person to guide the #MTA again! #NYC #NewYork https://t.co/hwSJQg4qx0 +06/20/2017,Politicians,@GovernorPataki,"RIP George Canon a wonderful man, a great leader for Newcomb & a fierce advocate for all of the residents of the ADK https://t.co/QhEW8BrXLn" +06/18/2017,Politicians,@GovernorPataki,Congratulations @EmilyforPEC! https://t.co/jzpACgs1u9 +06/16/2017,Politicians,@GovernorPataki,#FlashbackFriday announcing the new #Yankees stadium in 2005. https://t.co/o7jM5CShse +06/16/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ...#ThrowbackThursday to Feb 2015 0 degrees outside breakfast at @RedArrow24Diner with @GovernorPataki Thanks for brea… +06/14/2017,Politicians,@GovernorPataki,Libby & I are praying for the full recovery of @SteveScalise & all those injured in today's shooting. America's first responders are heroes. +06/12/2017,Politicians,@GovernorPataki,Pataki Rails Against Status Referendum Boycott – Caribbean Business https://t.co/dGrIH3Beej +06/09/2017,Politicians,@GovernorPataki,#FlashbackFriday At our #Peekskill farm in 1992 with my Mom/Dad and family. #GoodOldDays https://t.co/w3KB4Kd5dh +05/29/2017,Politicians,@GovernorPataki,Today we honor those that have made the ultimate sacrifice for our freedom. We owe a debt of gratitude to all who serve today #memorialday +05/26/2017,Politicians,@GovernorPataki,RT @bbretonwindham: . #ThrowbackThursday Thanks again @GovernorPataki #nhpolitics https://t.co/yE3r83qfGE +05/20/2017,Politicians,@GovernorPataki,"RT @dublinmuseum: Honoured to welcome @GovernorPataki and Mrs Pataki, two very charming visitors, to the museum this evening. https://t.co/…" +05/14/2017,Politicians,@GovernorPataki,#HappyMothersDay to ALL the #Moms and especially @LibbyPataki @emmyhambrg @AllisonPataki @EmilyforPEC! Enjoy your d… https://t.co/zCf4MY12rv +05/14/2017,Politicians,@GovernorPataki,RT @NHLogCabin: The first being @LogCabinGOP friend & ally @GovernorPataki 🏳️‍🌈 https://t.co/GGG3UHToV3 +05/02/2017,Politicians,@GovernorPataki,Sorry to see @JCats2013 not running for #NYC Mayor. He would have made an excellent leader of our great city. https://t.co/AU6119Hwm3 +04/22/2017,Politicians,@GovernorPataki,Thank you @BryanFCranna. We did a lot for our great state. #EarthDay #EmpireState #NY https://t.co/FIQXqk3Qjr +04/22/2017,Politicians,@GovernorPataki,#throwback from when President Bush Visited the Adirondacks with me on #earhday. We worked with Americorp (4/22/02). https://t.co/CUg1MmXGwp +04/22/2017,Politicians,@GovernorPataki,#HAPPYEARTHDAY https://t.co/aIz94o8FnX +04/22/2017,Politicians,@GovernorPataki,Congratulations David! Trump's Brilliant Pick At Treasury May Head Off Next Crisis @Manhattan_GOP https://t.co/CF3OA6jQVv +04/20/2017,Politicians,@GovernorPataki,"#ThrowbackThursday My #NYHallofGovernors portrait in #Garrison, NY with the Hudson River behind me #hudsonvalley https://t.co/u3W0MU1qpC" +04/19/2017,Politicians,@GovernorPataki,"RT @ClaireyHardwick: In honor of #taxday watch my interview with @GovernorPataki on why #taxreform is needed, and how it will create jobs h…" +04/12/2017,Politicians,@GovernorPataki,Thank you for your thoughts and prayers. Libby and I are fortunate to have such a great family and friends. https://t.co/o8R90V5D89 +04/11/2017,Politicians,@GovernorPataki,"RT @cathy_blaney: Rob, this is so true and lovely! ❤️ Peggy Pataki was 'Grandma' to many: Appreciation https://t.co/lYTRg5O2Id" +04/03/2017,Politicians,@GovernorPataki,"After a 101 years my Mother Margaret ""Peggy"" Pataki passed away peacefully in her sleep this morning.Thank you for your thoughts and prayers" +04/02/2017,Politicians,@GovernorPataki,@irishradio Adrian We've been talking about our trip all day. Thank you. And Kieran Playing Danny boy over and over for her +04/02/2017,Politicians,@GovernorPataki,@BGAndersson Brian. Yes. Thank you. And for all your help +04/02/2017,Politicians,@GovernorPataki,@EdwardLynchSR3 thank you. Our sacred grandma still hanging on She loves all her Irish cousins +04/01/2017,Politicians,@GovernorPataki,Thank you to all who called with thoughts/prayers. After 101 years my Mother seems to be coming to the end Quiet/peaceful/no pain or illness +03/25/2017,Politicians,@GovernorPataki,Today is NATIONAL MEDAL OF HONOR DAY. For personal acts of valor above and beyond the call of duty #MedalOfHonorDay https://t.co/fd8LwLtT9e +03/23/2017,Politicians,@GovernorPataki,Sad to see the passing of David Rockefeller. He was the original visionary for lower manhattan. #rockefeller #NYC https://t.co/pKDhqJzy8d +03/22/2017,Politicians,@GovernorPataki,Great to be @ wreath-laying ceremony last week commemorating the 1848/1956 Hungarian revolutions. #Hungary #nyc https://t.co/ZaKNyToLAT +03/22/2017,Politicians,@GovernorPataki,RT @Panorama24H: * En desarrollo: Exgobernador de NY @GovernorPataki está presente en Foro sobre el plan fiscal y que auspicia @Camarapr .… +03/19/2017,Politicians,@GovernorPataki,"""On that terrible day, a nation became a neighborhood. All Americans became New Yorkers"" https://t.co/HEd5RyqC8G" +03/17/2017,Politicians,@GovernorPataki,Congrats to Rob Cole and @JakeMenges of In The Field Global for winning 2 #pollies2017 awards for TV and Radio ad's https://t.co/uJJfeB81Sg +03/15/2017,Politicians,@GovernorPataki,"RT @FerencKumin: Contrary to the extreme cold it was uplifting to dedicate the new 56 Memorial in #NYC with @GovernorPataki, Colleen Bell,…" +03/15/2017,Politicians,@GovernorPataki,RT @HungaryToday: #Hungarian-Americans Commemorate #Anniversary of the 1848 #Revolution @GovernorPataki @clevecserk @AmbSzemerkenyi https:/… +03/14/2017,Politicians,@GovernorPataki,".@PreetBharara effort to combat corruption was terrific & deserves enormous credit, but @POTUS deserves his pick https://t.co/EhuEM8f1KI" +03/13/2017,Politicians,@GovernorPataki,RT @tvkatesnow: Former NY Gov @GovernorPataki weighs in on the Justice dept's decision to purge the 46 remaining Attorney Generals https://… +03/11/2017,Politicians,@GovernorPataki,"RT @bbretonwindham: I'm Proud & Honored ""Voted"" best of 2017 in Windham Magazine. for my service to the town as a Selectmen ! #nhpolitics…" +03/07/2017,Politicians,@GovernorPataki,Congratulations to Andrew Giuliani on his new position at the White House #POTUS Great NYer and even better person. https://t.co/NBWVgpd56N +03/06/2017,Politicians,@GovernorPataki,#ProudFather https://t.co/0UGKKQWX2V +03/02/2017,Politicians,@GovernorPataki,Congratulations to my friend @GovernorPerry on being confirmed by the Senate as our next Energy Secretary #rickperry #MakeAmericaGreatAgain +03/02/2017,Politicians,@GovernorPataki,#ThrowbackThursday When we changed New York for the better! https://t.co/WTb5c6xCJS +03/01/2017,Politicians,@GovernorPataki,Tremendous speech tonight from @POTUS - for the first time in 8 years we have a strong positive vision for America +02/20/2017,Politicians,@GovernorPataki,"“The harder the conflict, the greater the triumph.” — Washington #PresidentsDay https://t.co/Xsnqlyfxhc" +02/20/2017,Politicians,@GovernorPataki,RT @Sept11Memorial: Roses and an American flag patch left as tribute on the first responders parapet of the #911Memorial. https://t.co/ef4k… +02/19/2017,Politicians,@GovernorPataki,RT @bbretonwindham: ..@GovernorPataki says @realDonaldTrump Tax Reform will Create Jobs: https://t.co/WCkdAfh2Xj #nhpolitics #MAGA @CLewa… +02/17/2017,Politicians,@GovernorPataki,RT @cathy_blaney: Ru signed up? Registration is now open for the #911Memorial5K on 4/23. Register 2day use code FRIENDS for $10 off: https:… +02/15/2017,Politicians,@GovernorPataki,RT @FerencKumin: Great dinner benefiting the maintenance of the biggest #Budapest #Jewish cemetery @GovernorPataki @AmbDaniDayan with Yossi… +02/15/2017,Politicians,@GovernorPataki,"Congrats to Adele Malpass @Manhattan_GOP and Dawn Simmons. We didn't win, but nice to see the GOP fighting in Harlem https://t.co/6DfTAPNR0c" +02/14/2017,Politicians,@GovernorPataki,RT @AllisonPataki: @katiyana thank you very much ☺️ I am looking forward to sharing the new book this July! https://t.co/xu3ZcUSCTm +02/12/2017,Politicians,@GovernorPataki,"Malpass is well qualified.Great pick by @realDonaldTrump It's a vital job held by Volcker, Summers, Geithner, Taylor https://t.co/Jc8bAd0Vvq" +02/09/2017,Politicians,@GovernorPataki,RT @AllisonPataki: EXCLUSIVE first look at the cover for #WhereTheLightFalls ! Published today by @EW --what do you think? #cover reveal #h… +02/09/2017,Politicians,@GovernorPataki,"#tbt Awarding the NY Freedom Medal to Eileen Collins and ""Pee Wee"" Reese with Racheal Robinson, D. Zimmer and S. So… https://t.co/c1Dv1BEieR" +02/08/2017,Politicians,@GovernorPataki,Proud Father! https://t.co/3YN7B8H7Yn +02/05/2017,Politicians,@GovernorPataki,Congratulations Jim! #Boeheim1K #OrangeNation https://t.co/DS4RBvUmxQ +02/03/2017,Politicians,@GovernorPataki,Congratulations #RexTillerson. I could not agree more. One team! @realDonaldTrump @StateDept https://t.co/sWXa34NG4A +02/01/2017,Politicians,@GovernorPataki,.@realDonaldTrump selection of Judge Gorsuch to fill the seat of Justice Scalia is outstanding. +01/27/2017,Politicians,@GovernorPataki,"RT @AmbSzemerkenyi: Thank you to @GovernorPataki, Senator @RoyBlunt and @SenatorWicker for attending the Embassy’s ""Salute to Freedom” brun…" +01/27/2017,Politicians,@GovernorPataki,Great to speak at Hungarian diplomats Inauguration event in honor of @realDonaldTrump My ancestors would be proud. https://t.co/y7cehUvMkO +01/26/2017,Politicians,@GovernorPataki,I would not have been Governor of NY without Arthur Finkelstein. Truly A great American. https://t.co/G4yoggmXM5 +01/25/2017,Politicians,@GovernorPataki,Nobody better than @bbretonwindham a good friend and great American. #nhpolitics https://t.co/hlGOOneCjN +01/24/2017,Politicians,@GovernorPataki,Couldn't agree more with @JoeNBC @RepTomPrice #MAGA https://t.co/p1pyFgjBwR +01/21/2017,Politicians,@GovernorPataki,Former Gov. Pataki: President from New York an 'Exciting Prospect' https://t.co/uQV5hVb3sB +01/20/2017,Politicians,@GovernorPataki,Congratulations Donald Trump: Our 45 President of the United States https://t.co/kaSNTLKL0a +01/20/2017,Politicians,@GovernorPataki,"The election is over, it's time for all Americans to come together. https://t.co/mthiNE2RZ9" +01/20/2017,Politicians,@GovernorPataki,#MAGA with my friends @jpcahillsr Ed Morgan & Tom Reynolds https://t.co/lyR68VbaPf +01/19/2017,Politicians,@GovernorPataki,With my favorite Assemblywoman @NMalliotakis at a Reception in tribute to Reince Priebus #Inauguration https://t.co/pYed7hA4oH +06/30/2018,Politicians,@LindseyGrahamSC,I just met with #PastorAndrew Brunson who is being held in a Turkish prison. He’s not guilty of anything in my vie… https://t.co/3tOdhtpCI1 +06/29/2018,Politicians,@LindseyGrahamSC,"We spoke candidly about Pastor Brunson and other friction points, including the purchase of Russian made S-400s and… https://t.co/5wjCFrPdNr" +06/29/2018,Politicians,@LindseyGrahamSC,"Very good, respectful, and candid meeting with President Erdogan. + +We have real differences, but far more in comm… https://t.co/mKDbfA2hGC" +06/28/2018,Politicians,@LindseyGrahamSC,As soon as we get a name we’ll go to work to get the person confirmed. https://t.co/tAmaLOd0Lv +06/28/2018,Politicians,@LindseyGrahamSC,"RT @thehill: Graham: Senate Judiciary Committee is ""ready to go"" once Trump names SCOTUS pick https://t.co/aJC5uNrtdl https://t.co/n6GegAuw…" +06/28/2018,Politicians,@LindseyGrahamSC,"Great to see @MittRomney win the Utah Senate GOP primary. + +Mitt is a good man and I look forward to working with h… https://t.co/8FM7HiFPiI" +06/27/2018,Politicians,@LindseyGrahamSC,"Now speaking with @tperkins of @FRCdc about the Supreme Court vacancy. + +LISTEN: https://t.co/mnEuOgaJPs" +06/27/2018,Politicians,@LindseyGrahamSC,"Speaking with @FRCdc today at 5:05 pm about the retirement of Justice Kennedy. #SCOTUS + +LISTEN: +https://t.co/0VJoaIXGtL" +06/27/2018,Politicians,@LindseyGrahamSC,"As a Supreme Court Justice, he called them as he saw them. He should be proud of the service he has rendered to th… https://t.co/V8fPhDuoTC" +06/27/2018,Politicians,@LindseyGrahamSC,I deeply appreciate Justice Kennedy’s long service to our nation as a member of the Supreme Court and the federal j… https://t.co/TadPZWcYCT +06/27/2018,Politicians,@LindseyGrahamSC,"Hearing on @StateDept budget with @SecPompeo. + +WATCH LIVE: https://t.co/i911WRp7ax" +06/27/2018,Politicians,@LindseyGrahamSC,"Chairing a subcommittee hearing on the @StateDept budget and questioning @SecPompeo today at 2:30 pm. + +WATCH: +https://t.co/i911WRp7ax" +06/27/2018,Politicians,@LindseyGrahamSC,Great decision by the Supreme Court to make sure that workers are not forced to pay dues to a political organizatio… https://t.co/kaXAo3h1Gb +06/27/2018,Politicians,@LindseyGrahamSC,RT @WashTimes: Graham demands answer to whether anti-Trump FBI agents had role in FISA warrant on Carter Page https://t.co/kWLhwCxePn +06/27/2018,Politicians,@LindseyGrahamSC,@votejohnwarren Now is the time we should rally behind @henrymcmaster and our entire #SCGOP team to ensure victory in November. +06/27/2018,Politicians,@LindseyGrahamSC,John Warren (@votejohnwarren) ran a very impressive campaign for #SCGOV which he and his supporters should be proud… https://t.co/CzVGr9b6gE +06/27/2018,Politicians,@LindseyGrahamSC,Mr. Wilkie has been serving as the #2 at the VA and is prepared to bring about much needed-changes to better serve… https://t.co/lOfAhR5pve +06/27/2018,Politicians,@LindseyGrahamSC,"I hope Robert Wilkie is treated well during his confirmation hearing today. + +I’ve known him for years and he is a… https://t.co/qLnd7st6u0" +06/27/2018,Politicians,@LindseyGrahamSC,"@votetimmons He’s a worthy successor to @TGowdySC who has done a terrific job for #SC4, South Carolina, and our nation." +06/27/2018,Politicians,@LindseyGrahamSC,"Congratulations to William @VoteTimmons for winning a hard-fought GOP primary in #SC4. + +William will be a strong a… https://t.co/LqJ2DjBOGN" +06/27/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""The person in charge of the #Clinton email investigation, Mr. Strzok, and Ms. Page were in the tank for Cl…" +06/27/2018,Politicians,@LindseyGrahamSC,"Resounding victory tonight for @AGAlanWilson + +He aggressively represents South Carolina interests and will continue… https://t.co/m9p59BilSb" +06/27/2018,Politicians,@LindseyGrahamSC,RT @realDonaldTrump: Congratulations to Governor Henry McMaster on your BIG election win! South Carolina loves you. We are all proud of you… +06/27/2018,Politicians,@LindseyGrahamSC,"Congratulations to Governor @henrymcmaster on a hard-fought victory. + +There are a lot of good things going on in… https://t.co/osYPt23Aks" +06/26/2018,Politicians,@LindseyGrahamSC,"Speaking with @marthamaccallum now on @FoxNews. + +Tune in!" +06/26/2018,Politicians,@LindseyGrahamSC,"RT @jason_donner: Lindsey Graham on SCOTUS travel ban ruling: ""I thought it was a sound decision. This is not a religious ban. The first or…" +06/26/2018,Politicians,@LindseyGrahamSC,Hearing on Protecting Our Elections: Examining Shell Companies and Virtual Currencies as Avenues for Foreign Interf… https://t.co/J1vwp5A4Ek +06/26/2018,Politicians,@LindseyGrahamSC,Chairing a Judiciary subcommittee hearing on Protecting Our Elections: Examining Shell Companies and Virtual Curren… https://t.co/Vp1qpzPbbk +06/26/2018,Politicians,@LindseyGrahamSC,@realDonaldTrump We are at war with radical Islam and must act accordingly to protect our nation. +06/26/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump As I stated when the new Executive Order was issued, it is not a religious ban. + +The order was f… https://t.co/Ovmnq3FPKv" +06/26/2018,Politicians,@LindseyGrahamSC,Pleased to see the Supreme Court uphold President @realDonaldTrump’s travel ban from countries with high incidences… https://t.co/jkFApZzO4D +06/25/2018,Politicians,@LindseyGrahamSC,"Headed to the White House to travel with President @realdonaldtrump to Columbia. + + Looking forward to the Election Eve Rally!" +06/23/2018,Politicians,@LindseyGrahamSC,Keeping Katie Arrington and everyone involved in last night’s accident in my thoughts and prayers. Hoping for a speedy recovery. +06/21/2018,Politicians,@LindseyGrahamSC,"Charles Krauthammer was one of the strongest voices and most brilliant minds in all of American politics. + +I pray… https://t.co/tWiihrGD9z" +06/21/2018,Politicians,@LindseyGrahamSC,"Great to see the @FLOTUS on the ground in Texas getting a first-hand assessment of the family separation issue. + +S… https://t.co/32YcOmi9Lt" +06/21/2018,Politicians,@LindseyGrahamSC,"You can watch the bipartisan discussion on Strategic Competition at @CNASdc. + +LIVE: +https://t.co/wSP2oZ1l6Z https://t.co/6fDS9EUdaT" +06/20/2018,Politicians,@LindseyGrahamSC,The legislation gives the Department of Homeland Security (DHS) the clear legal authority to keep children under th… https://t.co/iviFPgFDzN +06/20/2018,Politicians,@LindseyGrahamSC,"This bill prevents breaking up real families, but requires adults to show up for court." +06/20/2018,Politicians,@LindseyGrahamSC,"My goal is to make sure families are not separated, but also prevent the rampant abuse of ‘catch and release’ where… https://t.co/kU7iU98an8" +06/20/2018,Politicians,@LindseyGrahamSC,"Just introduced the Keep Families Together and Enforce the Law Act with Senators Tillis, Rubio, Johnson, Cotton, Cruz, Heller and Cornyn." +06/20/2018,Politicians,@LindseyGrahamSC,"RT @abc_columbia: LISTEN: Senator Lindsey Graham speaks with President Donald Trump, other lawmakers about #separationcrisis at the border.…" +06/20/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump Democrats should work with Republicans to allow families to stay together, as well as ensure that… https://t.co/BVwaySl01S" +06/20/2018,Politicians,@LindseyGrahamSC,Very pleased President @realDonaldTrump will issue an Executive Order dealing with the separation of children and p… https://t.co/rwo6XJR3Ja +06/20/2018,Politicians,@LindseyGrahamSC,"A big day for @VolvoCarUSA. + +A big day for #SouthCarolina. + +You Make Us Proud! + +#newS60 https://t.co/6o5zNIKuCJ" +06/20/2018,Politicians,@LindseyGrahamSC,"I’m not buying that the Clinton email investigation was on the up and up. + +And the reason I’m not buying it is bec… https://t.co/KQzkUw2nrp" +06/19/2018,Politicians,@LindseyGrahamSC,Long overdue! https://t.co/gtSyUuLPyc +06/19/2018,Politicians,@LindseyGrahamSC,"NAILED IT. + +If you haven’t done so already please read these tweets from my friend and colleague @SenatorTimScott. https://t.co/71QhcydepR" +06/19/2018,Politicians,@LindseyGrahamSC,"Speaking with @seanhannity in just a few minutes about @FBI +and @TheJusticeDept. + +Tune In: +https://t.co/EqNG02sJ7Q" +06/19/2018,Politicians,@LindseyGrahamSC,"Speaking with @seanhannity today at 4:00 pm about the @TheJusticeDept and @FBI. + +Tune In: +https://t.co/EqNG02sJ7Q" +06/19/2018,Politicians,@LindseyGrahamSC,"@DHSgov She is hard-working, incredibly smart, and passionate. She is the right person at the right time. + +Her res… https://t.co/H7NsjV6nXU" +06/19/2018,Politicians,@LindseyGrahamSC,"I strongly stand behind @DHSGov Secretary Nielsen and her effort to solve a long-standing problem. + +https://t.co/qPk82NBc4O" +06/19/2018,Politicians,@LindseyGrahamSC,"I’m not buying that the CLINTON EMAIL INVESTIGATION was on the UP AND UP. + +WATCH: https://t.co/ogD9iMYykV" +06/18/2018,Politicians,@LindseyGrahamSC,"Questioning the witnesses in Senate Judiciary Committee NOW. + +WATCH: +https://t.co/4o6YeUmPFf" +06/18/2018,Politicians,@LindseyGrahamSC,Will be questioning the witnesses about the Inspector General’s Report on Justice Department and FBI Actions in Adv… https://t.co/l3JEy9c6zQ +06/15/2018,Politicians,@LindseyGrahamSC,"Speaking with @KateBolduan on @CNN in just a few minutes. + +Tune In!" +06/14/2018,Politicians,@LindseyGrahamSC,"Happy Birthday, Mr. President! + +You’re keeping your promise to make America safer and more prosperous. + +And unf… https://t.co/O9LKN7T0cx" +06/14/2018,Politicians,@LindseyGrahamSC,"ICYMI: + +I spoke with @IngrahamAngle last night on @FoxNews about North Korea and President @realDonaldTrump. + +https://t.co/9YZxSYsCUf" +06/14/2018,Politicians,@LindseyGrahamSC,"TONIGHT: Speaking with @FoxNews @IngrahamAngle at 10:00 pm about North Korea. + +Tune in!" +06/13/2018,Politicians,@LindseyGrahamSC,RT @tperkins: .@LindseyGrahamSC: President Trump has done more in 500 days than every president before him in 30 years. #SingaporeSummit… +06/13/2018,Politicians,@LindseyGrahamSC,RT @taylor_reidy: Sen. Graham is live now on @CNN speaking with @andersoncooper https://t.co/2JOQmcUUIE +06/13/2018,Politicians,@LindseyGrahamSC,Now speaking with @cnn @andersoncooper. +06/12/2018,Politicians,@LindseyGrahamSC,Speaking with @CNN @andersoncooper at 8:00 pm about President @realDonaldTrump and North Korea. +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with @marthamaccallum on @FoxNews now. + +Tune in!" +06/12/2018,Politicians,@LindseyGrahamSC,Ill be speaking with @marthamaccallum at 7:00 pm on @FoxNews about this afternoons phone call from President… https://t.co/9sUBc7dp1u +06/12/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump The President has given Kim Jong Un a way out that is good for him and the world. + +I hope Kim is… https://t.co/z9Rt3KA6BF" +06/12/2018,Politicians,@LindseyGrahamSC,@realDonaldTrump I told President @realDonaldTrump I’m pleased and proud of his leadership regarding the North Kore… https://t.co/PaCf31vrLM +06/12/2018,Politicians,@LindseyGrahamSC,Just had a great discussion with President @realDonaldTrump calling from Air Force One. +06/12/2018,Politicians,@LindseyGrahamSC,"ICYMI: +With @CBSThisMorning earlier today discussing #TrumpKimSummit and what is means for the US and North Korea. + +https://t.co/Ef0bz8aMKo" +06/12/2018,Politicians,@LindseyGrahamSC,"ICYMI: Spoke with NBC @TODAY @SavannahGuthrie about North Korea and Singapore #TrumpKimSummit + +https://t.co/3vfschuC3A" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSEveningNews: 'They've done this twice"": Senator Lindsey Graham (R-SC) notes that North Korea has reneged on past promises to denucle…" +06/12/2018,Politicians,@LindseyGrahamSC,RT @kilmeade: .@LindseyGrahamSC believes this is the last chance for peace with North Korea. Do you agree? #TheBrianKilmeadeShow @foxnewsra… +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSNews: ""[Kim Jong Un] kills his own people in large numbers. He killed Otto Warmbier. He is a very bad guy. But I'm willing to deal w…" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSNews: ""President Trump has to convince Kim Jong Un he's safer and more prosperous without nuclear weapons. This is a first step, thi…" +06/12/2018,Politicians,@LindseyGrahamSC,"Glad to hear @larry_kudlow is recovering well. + +He is an invaluable advisor to President @realDonaldTrump. + +Larry… https://t.co/BjPgKjRcWH" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @Kilmeade in just a few minutes. + +Tune In: https://t.co/ksTRBlszUw" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with @hughhewitt now. + +https://t.co/4FslSczFh3" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @CBSThisMorning: ""One thing I would tell you, if there is an agreement it must come to congress for our approval,"" Senator @LindseyGraha…" +06/12/2018,Politicians,@LindseyGrahamSC,RT @CBSThisMorning: Ahead at 8am: Senator @LindseyGrahamSC joins us live to discuss the #TrumpKim summit and how the president can get Nort… +06/12/2018,Politicians,@LindseyGrahamSC,"RT @TODAYshow: “I’m cautiously optimistic. I’ve very pleased with President Trump this far, but we’ve got a long ways to go.”- @LindseyGrah…" +06/12/2018,Politicians,@LindseyGrahamSC,"Speaking with NBC @TODAYshow in just a few minutes. + +Tune In!" +06/12/2018,Politicians,@LindseyGrahamSC,"RT @TODAYshow: Today on TODAY: A look at President Trump’s meeting with Kim Jong Un, and what this could mean for the U.S. and North Korea…" +06/11/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump When it comes to North Korea, it’s not what they say that matters, but what they do. + +I know Pre… https://t.co/uEM4URtq6Z" +06/11/2018,Politicians,@LindseyGrahamSC,"Hoping for the best in the meeting between President @realDonaldTrump and Kim Jong Un. + +It’s a historic opportuni… https://t.co/9J0zajBku1" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @axios: Lindsey Graham on @ThisWeekABC: ""I'm not so sure most Americans"" are pro-free trade and pro-globalization https://t.co/mHnIwevMNc" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""President Trump, if he has to, will use military force to end this threat to the American homeland."" #Sund…" +06/10/2018,Politicians,@LindseyGrahamSC,Speaking with @MariaBartiromo now on Fox News. +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: After a group of Senate Dems made demands for a potential deal with North Korea, @LindseyGrahamSC says “I embrace this let…" +06/10/2018,Politicians,@LindseyGrahamSC,"Speaking with @MariaBartiromo on Fox News in just a few minutes. + +Tune in!" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: .@LindseyGrahamSC says he's ""not so sure"" @SenJohnMcCain is right that a majority of Americans support free trade, globali…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABCWorldNews: Sen. Lindsey Graham says he's ""not so sure"" Sen. John McCain is right that a majority of Americans support free trade, gl…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABC: After a group of Senate Dems made demands for a potential deal with North Korea, Sen. Graham: “I embrace this letter… here’s the q…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ABC: Sen. Lindsey Graham: “There’s three outcomes here: Peace, where we have a win-win solution; military force where we devastate the…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: .@LindseyGrahamSC: “There’s three outcomes here: Peace, where we have a win-win solution; military force where we devastat…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @MollyNagle3: .@LindseyGrahamSC tells @GStephanopoulos that there are only two options in negotiations with North Korea: ""peace or war""…" +06/10/2018,Politicians,@LindseyGrahamSC,"RT @ThisWeekABC: As President Trump prepares to go face to face with Kim Jong Un, @GStephanopoulos speaks with Trump ally @LindseyGrahamSC…" +06/08/2018,Politicians,@LindseyGrahamSC,"Very sad to hear about Charles @krauthammer. + +He is one of the strongest voices and most brilliant minds in all of… https://t.co/XW70MqINuI" +06/08/2018,Politicians,@LindseyGrahamSC,My statement on today’s MOX decision. https://t.co/vaxCwd7NYs +06/07/2018,Politicians,@LindseyGrahamSC,"A very Happy Birthday to @VP Mike Pence! + +🎂🎂🎂 https://t.co/O88SMkfsnk" +06/07/2018,Politicians,@LindseyGrahamSC,"Governor McMaster was critical to getting the Port funding over the line. + +@HenryMcmaster's relationship with… https://t.co/SN892m6Sqr" +06/07/2018,Politicians,@LindseyGrahamSC,"@SenatorTimScott @henrymcmaster Charleston Harbor deepening has been a team effort. + +I think we all understand th… https://t.co/ffk5aCppjF" +06/07/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @henrymcmaster I also very much appreciate the support of South Carolina State Senator Hugh Leathe… https://t.co/cwewBdKf4I +06/07/2018,Politicians,@LindseyGrahamSC,I also want to thank the congressional delegation – particularly my friend and colleague @SenatorTimScott -- for th… https://t.co/5mtL60t19l +06/07/2018,Politicians,@LindseyGrahamSC,"RT @dcexaminer: Lindsey Graham: DOJ's non-answer on Rosenstein recusal is pure ""gobbledygook"" https://t.co/nZLAIBjMAh https://t.co/ym3wT3Y9…" +06/07/2018,Politicians,@LindseyGrahamSC,The nearly $50 million in the Army Corps’ work plan allows construction to go forward without delay and keeps the p… https://t.co/tSMEAiSECT +06/07/2018,Politicians,@LindseyGrahamSC,"This is great news for the Port of Charleston and the state of South Carolina. + +Charleston Harbor deepening is ab… https://t.co/RwCCqqy6fx" +06/07/2018,Politicians,@LindseyGrahamSC,I’m very appreciative of the Trump Administration’s decision to dedicate nearly $50 million to deepen Charleston Harbor. +06/06/2018,Politicians,@LindseyGrahamSC,Speaking with @FoxNews tonight at 7:00 pm. Tune in. +06/06/2018,Politicians,@LindseyGrahamSC,My statement on today’s meeting at the White House with President @realDonaldTrump on trade. https://t.co/XMKfk44VRf +06/06/2018,Politicians,@LindseyGrahamSC,"I strongly believe there is a plan in place to lead us to better trade deals. + +We should give the president the t… https://t.co/u2RH4sOp9x" +06/06/2018,Politicians,@LindseyGrahamSC,"Now is not the time to undercut President Trump’s ability to negotiate better trade deals. + +I will not support an… https://t.co/INYTax8vLw" +06/06/2018,Politicians,@LindseyGrahamSC,It was great meeting with President Trump on his trade agenda. I’m confident he is on track to get us better trade… https://t.co/6Lw6W06SH7 +06/06/2018,Politicians,@LindseyGrahamSC,"Great to join President @realDonaldTrump today at the White House for the signing into law of John S. McCain III, D… https://t.co/Ht0OryuxtT" +06/06/2018,Politicians,@LindseyGrahamSC,"To all those who participated and who no longer are with us, may God keep you in his care. And to those who remain,… https://t.co/kaYHlZycHO" +06/06/2018,Politicians,@LindseyGrahamSC,"Today we mark the 74th anniversary of the #DDay landing at Normandy, France – arguably the most impressive military… https://t.co/lMxdNmlejN" +06/06/2018,Politicians,@LindseyGrahamSC,"RT @NBCPolitics: Sen. Lindsey Graham sends letter to Deputy AG Rod Rosenstein asking if he is a witness in the Mueller investigation, and i…" +06/06/2018,Politicians,@LindseyGrahamSC,RT @dcexaminer: Lindsey Graham asks Rod Rosenstein if he should recuse himself from overseeing Robert Mueller https://t.co/AYDhxnSnip https… +06/05/2018,Politicians,@LindseyGrahamSC,RT @dcexaminer: Lindsey Graham asks Rod Rosenstein if he should recuse himself from overseeing Robert Mueller https://t.co/e8BFCDcsnL https… +06/05/2018,Politicians,@LindseyGrahamSC,Speaking with @DanaPerino today in the 2pm hour on @FoxNews. Tune in. +06/05/2018,Politicians,@LindseyGrahamSC,"ICYMI + +Spoke with @ShannonBream last night about my letter to Deputy Attorney General Rod Rosenstein. + +WATCH: +https://t.co/cZd3Xzi16O" +06/01/2018,Politicians,@LindseyGrahamSC,RT @SpecialReport: Top Republican Sen. Lindsey Graham is pressing Deputy Attorney General Rod Rosenstein on whether the Justice Department… +05/31/2018,Politicians,@LindseyGrahamSC,"@Disney @ABC @KeithOlbermann @espn @realDonaldTrump @FullFrontalSamB Time will tell, but I doubt they will be asked… https://t.co/bPjaIr87cm" +05/31/2018,Politicians,@LindseyGrahamSC,@Disney @ABC @KeithOlbermann @espn @realDonaldTrump Are Democratic members being asked whether @FullFrontalSamB sho… https://t.co/iG2tnFZOgA +05/31/2018,Politicians,@LindseyGrahamSC,@Disney @ABC @KeithOlbermann Will Democratic Members of Congress be pursued and asked whether or not… https://t.co/o74BrCrDEn +05/31/2018,Politicians,@LindseyGrahamSC,"I have no issues with @Disney @ABC decision to fire Roseanne. + +But it does raise questions about why the same com… https://t.co/13NciL7wPM" +05/29/2018,Politicians,@LindseyGrahamSC,Devastated to hear of the tragic accident resulting in the deaths of Mike McCormick and Aaron Smeltzer. Both were… https://t.co/2T3bEoigZZ +05/28/2018,Politicians,@LindseyGrahamSC,On #MemorialDay we honor the American heroes who made the ultimate sacrifice defending our values and protecting ou… https://t.co/kAVAZgtDhs +05/27/2018,Politicians,@LindseyGrahamSC,"Speaking with @JudgeJeanine on @FoxNews tonight at 9:30 pm about the latest on North Korea and more. + +Tune In!" +05/26/2018,Politicians,@LindseyGrahamSC,"Today’s @aikenstandard on MOX. + +Story available: https://t.co/leTSUSzB0j https://t.co/2KkLouxWI9" +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice @ENERGY I also appreciate SC Governor @henrymcmaster for sending h… https://t.co/960DfAkcN4 +05/25/2018,Politicians,@LindseyGrahamSC,RT @demarest_colin: U.S. Sens. Tim Scott (@SenatorTimScott) and Lindsey Graham (@LindseyGrahamSC); SC AG Alan Wilson (@AGAlanWilson); and U… +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice @ENERGY We have the opportunity to prevent @ENERGY from repeating… https://t.co/Mp2Xy6brLg +05/25/2018,Politicians,@LindseyGrahamSC,"@SenatorTimScott @CongJoeWilson @SCAttyGenOffice The Dept of @ENERGY has abandoned MOX, but Congress hasn’t. + +The… https://t.co/tvZUMG7ouY" +05/25/2018,Politicians,@LindseyGrahamSC,@SenatorTimScott @CongJoeWilson @SCAttyGenOffice This week I introduced and passed an amendment to the FY 2019 Nati… https://t.co/XvSv1yYhuy +05/25/2018,Politicians,@LindseyGrahamSC,"With @SenatorTimScott @CongJoeWilson, @SCAttyGenOffice Alan Wilson and local Aiken officials discussing the MOX pro… https://t.co/LJwSZ7o7bD" +05/25/2018,Politicians,@LindseyGrahamSC,"As to the drama surrounding a meeting with North Korea: + +I don’t know where we will meet, when we will meet, or… https://t.co/wR9YKzpHp8" +05/25/2018,Politicians,@LindseyGrahamSC,"Great speech by President @realDonaldTrump at the US Naval Academy graduation. + +It was an unapologetic belief in… https://t.co/i4u7PUU9bQ" +05/25/2018,Politicians,@LindseyGrahamSC,Very proud of @MeghanMcCain for holding her own in a hostile environment when it came to standing for the National… https://t.co/9lmK3bla4Y +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/0fSBSeorhE" +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/yoQYThCcze" +05/25/2018,Politicians,@LindseyGrahamSC,"RT @hughhewitt: LG: You know, @realDonaldTrump , you know, he’s not into the giving mode on the golf course.” https://t.co/MPq8ADMRs1" +05/25/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump has made the decision that he’s going to end North Korea’s nuclear program. + +It’s only… https://t.co/7cjyh0qXMp" +05/25/2018,Politicians,@LindseyGrahamSC,"Speaking with Fox News Radio Brian @kilmeade now. + +Tune In: +https://t.co/Y7MRlJ1hJy" +05/25/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade on Fox News Radio at 10:05 am this morning. + +Tune In: +https://t.co/Y7MRlJ1hJy" +05/25/2018,Politicians,@LindseyGrahamSC,"RT @hughhewitt: For everyone living on or near Korean Peninsula —including 28K US service members and families, hundreds of thousands more…" +05/25/2018,Politicians,@LindseyGrahamSC,RT @TODAYshow: See the full interview with @LindseyGrahamSC about U.S. relations with North Korea https://t.co/LPbigf5Mir +05/25/2018,Politicians,@LindseyGrahamSC,RT @hughhewitt: Up next: @GrahamBlog (aka @LindseyGrahamSC aka the guest who usually has the best lines) +05/25/2018,Politicians,@LindseyGrahamSC,Speaking with NBC @TODAYshow in just a few minutes about North Korea. +05/25/2018,Politicians,@LindseyGrahamSC,Speaking with @foxandfriends in just a few minutes about North Korea. Tune in! +05/24/2018,Politicians,@LindseyGrahamSC,"ICYMI: Discussing Department of @ENERGY Decision to Abandon MOX Program at Savannah River Site. + +LISTEN: +https://t.co/O7vbBqm8KZ" +05/23/2018,Politicians,@LindseyGrahamSC,"The letter I sent — along with Senators @ChuckGrassley and @JohnCornyn — about congressional oversight and DOJ. + +Al… https://t.co/WlMQ336g5j" +05/22/2018,Politicians,@LindseyGrahamSC,My statement on Sherri Lydon being confirmed as the next US Attorney for South Carolina. https://t.co/YtS3WIy4xj +05/22/2018,Politicians,@LindseyGrahamSC,So grateful for the great work done by @the_uso! https://t.co/WBjizT3ItX +05/22/2018,Politicians,@LindseyGrahamSC,"You Rock! + +Thank you to @the_USO for the great work you do! https://t.co/0XYgEVYYYC" +05/21/2018,Politicians,@LindseyGrahamSC,"Speaking with @foxnews @marthamaccallum about American policy toward Iran. +Tune in." +05/21/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum in just a few minutes about Iran and North Korea. + +Tune in." +05/20/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@LindseyGrahamSC: ""The only reason we are where we are is because President @realDonaldTrump has tried something new. He's ap…" +05/20/2018,Politicians,@LindseyGrahamSC,"RT @FoxNewsSunday: Today on #FNS: +Oliver North, incoming President, National Rifle Association +Mark Kelly, Co-Founder, Giffords +Steven Mnuc…" +05/18/2018,Politicians,@LindseyGrahamSC,"Praying for the students, families and first responders of #SantaFe." +05/17/2018,Politicians,@LindseyGrahamSC,I know she will serve President Trump and our nation well in this important position. +05/17/2018,Politicians,@LindseyGrahamSC,"I’m very glad the Senate has confirmed Gina Haspel as the new Director of the CIA. + +Ms. Haspel is highly qualifie… https://t.co/QB7Ra5gI9X" +05/17/2018,Politicians,@LindseyGrahamSC,RT @kilmeade: .@LindseyGrahamSC calls out critics of President @realDonaldTrump handling of North Korea #TheBrianKilmeadeShow @foxnewsradio… +05/17/2018,Politicians,@LindseyGrahamSC,"Graham to Trump Critics on North Korea: We Have Two Options – Peace Agreement or War + +https://t.co/EkhWd4pr69" +05/17/2018,Politicians,@LindseyGrahamSC,"Continued.... + +""As Secretary Mattis has always said, ""America can afford survival"" and the ""enemy gets a vote."" Wi… https://t.co/JqsCkecb6L" +05/17/2018,Politicians,@LindseyGrahamSC,"Just received this quote from quote from Assistant Secretary of Defense Rob Hood: + +""Secretary Mattis opposes any p… https://t.co/zUsvvIEcmP" +05/17/2018,Politicians,@LindseyGrahamSC,"If you keep doing what you're doing, you are miscalculating Donald Trump. He's not Obama. + +https://t.co/DhWdhmaOhd" +05/17/2018,Politicians,@LindseyGrahamSC,"I’m here to tell North Korea that our president has drawn a red line. + +If you keep threatening the American homel… https://t.co/eQudNdADY4" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking on the Senate floor in just a few minutes. + +WATCH: https://t.co/eKm1TeLwXf" +05/17/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: Sen. @LindseyGrahamSC to Kim Jong Un: ""If you keep doing what you're doing, you're miscalculating @realDonaldTrump. He's not O…" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade now about North Korea. + +LISTEN: +https://t.co/Y7MRlJ1hJy" +05/17/2018,Politicians,@LindseyGrahamSC,"Speaking with Brian @kilmeade on @foxnewsradio today at 9:30 am on the latest with North Korea. + +LISTEN: https://t.co/Y7MRlJ1hJy" +05/16/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum in just a few minutes. + +Tune in." +05/16/2018,Politicians,@LindseyGrahamSC,"Speaking with @FoxNews @marthamaccallum tonight at 7:00 pm about North Korea, Iran, ZTE and more. + +Tune In." +05/16/2018,Politicians,@LindseyGrahamSC,Very pleased & proud Senate has confirmed Mick Zais to serve as the Deputy Sec of Education. He believes in a stro… https://t.co/uvg4rdQPyz +05/16/2018,Politicians,@LindseyGrahamSC,President @realDonaldTrump met with Republicans earlier today. Here’s my statement. https://t.co/ww0MgCl8P4 +05/16/2018,Politicians,@LindseyGrahamSC,First responders like retired Berkeley County Sheriff’s Office Lt. Will Rogers – who was severely injured in the li… https://t.co/K6tFPa99xz +05/16/2018,Politicians,@LindseyGrahamSC,"This morning, I was honored to be recognized by @WeAreCode3, which is dedicated to caring for cops and the communit… https://t.co/4O3xEpu8Yg" +05/16/2018,Politicians,@LindseyGrahamSC,"#PoliceWeek2018 is a time to remember and honor our brave men and women in blue, especially those we’ve lost in the line of duty. 1/3" +05/15/2018,Politicians,@LindseyGrahamSC,"Ms. Haspel: + +* has rejected the interrogation techniques of the past; +* made it clear she is committed to followin… https://t.co/oT0VZLZznO" +05/15/2018,Politicians,@LindseyGrahamSC,"Glad to see Senators Warner, Heitkamp, and Nelson are now supporting Gina Haspel as the next CIA Director. + +She’s h… https://t.co/Gtbcy1YK2D" +05/15/2018,Politicians,@LindseyGrahamSC,My statement on President @realDonaldTrump meeting today with Republicans in the Senate. https://t.co/Pe6o513GYQ +05/15/2018,Politicians,@LindseyGrahamSC,@tperkins @FRCdc He’s testified before our subcommittee numerous times on the erosion of religious liberty abroad.… https://t.co/4AjaijQdXC +05/15/2018,Politicians,@LindseyGrahamSC,Congratulations to @Tperkins of @FRCdc on being selected to serve on the U.S. Commission on International Religious… https://t.co/tvcsZgtxr9 +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump It was a very good foreign policy discussion. + +I appreciate President Trump taking the time to s… https://t.co/m6E1zDycef" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump The President will continue to challenge our European allies to get a better deal. + +He is fully… https://t.co/olLPEFjke0" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump As for Iran, he expressed a strong desire and resolve to sanction the Iranian regime for its effor… https://t.co/KMbEuFOW9F" +05/15/2018,Politicians,@LindseyGrahamSC,"@realDonaldTrump He’s fully committed to denuclearizing the Korean peninsula, and hopes to make it a win-win for No… https://t.co/rJ17ztXvgG" +05/15/2018,Politicians,@LindseyGrahamSC,"President @realDonaldTrump is a true believer in ‘Peace through Strength’. + +President Trump today gave an excelle… https://t.co/n6r4LDtK2p" +05/15/2018,Politicians,@LindseyGrahamSC,The selection of Ms. Haspel will be good for morale within the CIA and give the country a seasoned intelligence exp… https://t.co/ieFCXhsUxy +05/15/2018,Politicians,@LindseyGrahamSC,Gina Haspel has risen through the ranks of the organization receiving high marks from all who have interacted with… https://t.co/CPmKrThfyd +05/15/2018,Politicians,@LindseyGrahamSC,"My prayers are with Harry and the entire Reid family. + +Wishing him a full and complete recovery!" +05/15/2018,Politicians,@LindseyGrahamSC,"The hearing is available online. + +WATCH: https://t.co/m5AhvtN4SD" +05/15/2018,Politicians,@LindseyGrahamSC,Smokey Robinson and other members of the music industry are testifying before the Senate Judiciary Committee regard… https://t.co/kK0q1lY0yl +05/15/2018,Politicians,@LindseyGrahamSC,"RT @WVOCColumbia: Graham, Scott React To New Embassy In Jerusalem | WVOC https://t.co/4rsOk0kPRV" +05/14/2018,Politicians,@LindseyGrahamSC,Both Senators @LindseyGrahamSC and @tedcruz said the embassy opening was a signal that the US era of “appeasement”… https://t.co/5rTrHgtj56 +05/14/2018,Politicians,@LindseyGrahamSC,"I was proud to beleading the Senate delegation for this historic event. + +It was a true honor. +🇺🇸🇮🇱🇺🇸🇮🇱 https://t.co/7SGWS8375n" +05/14/2018,Politicians,@LindseyGrahamSC,"Great to be with @PastorJohnHagee to celebrate the opening of the #USEmbassyJerusalem. 🇺🇸🇮🇱🇺🇸🇮🇱 + +#History https://t.co/FfJrCdoAZB" +05/14/2018,Politicians,@LindseyGrahamSC,"RT @FoxNews: .@SenMikeLee: “This was recognizing something that was already the case, Jerusalem was and is Israel’s capital.” https://t.co/…" +05/14/2018,Politicians,@LindseyGrahamSC,RT @SenTedCruz: .@FoxNews: “Jerusalem is the undivided and eternal capital of Israel. And that’s been true since 70 years ago today when th… +05/14/2018,Politicians,@LindseyGrahamSC,"RT @Mediaite: Lindsey Graham: If You Have A Problem With Jerusalem As Israeli Capital, 'Take It Up With God' (VIDEO) https://t.co/AbW4rZj1a…" +05/14/2018,Politicians,@LindseyGrahamSC,RT @tedcruz: With @SenMikeLee @LindseyGrahamSC and @SenDeanHeller along with @USAmbIsrael in his new office at our new US Embassy in Jerusa… +06/26/2018,Politicians,@BobbyJindal,"Why does the state respect that some parents are capable of choosing what is best for their children, while acting… https://t.co/ZwBhGke5uz" +06/13/2018,Politicians,@BobbyJindal,.@Clairecmc aka @AirClaireMO is having a bad week. First she lied to voters about touring the state in an RV and n… https://t.co/2dmfMW9XWu +06/12/2018,Politicians,@BobbyJindal,"Class act, Mounds View. +https://t.co/wQXKUe1TTJ" +06/09/2018,Politicians,@BobbyJindal,"Charles has graced us for years with intellect, wit, and integrity. +https://t.co/cm4xZg9hHm" +05/17/2018,Politicians,@BobbyJindal,"Latest @WSJ opinion article: +""...Thus a challenger is not sufficient—Mr. Trump needs a candidate who siphons off no… https://t.co/kc1cK1przh" +05/13/2018,Politicians,@BobbyJindal,Happy Mother’s Day! 🍳 https://t.co/IJgnW1TKlL +05/11/2018,Politicians,@BobbyJindal,Check out #TheGreatRevolt by my friends @BradOnMessage and @SalenaZito. Examines the populist wave that elected Tru… https://t.co/jp4h3kDljZ +05/10/2018,Politicians,@BobbyJindal,"Would be great to have family friendly @LastManStanding back on the air! +https://t.co/sKLmooUAFu" +04/26/2018,Politicians,@BobbyJindal,#tbt to getting to play the role of a doctor by delivering our third child in 2006. Read the full article here:… https://t.co/CvAu9cdxFS +04/24/2018,Politicians,@BobbyJindal,Kneeling athletes we can all applaud. https://t.co/IMQrkKufot +04/23/2018,Politicians,@BobbyJindal,".@GQMagazine should stick to overpriced clothes, and leave faith to others. https://t.co/xdxRtUq2pW" +04/20/2018,Politicians,@BobbyJindal,Go #LSU! https://t.co/2qXjNCLVoW +04/18/2018,Politicians,@BobbyJindal,Thank you Barbara Bush for serving our nation with class and dignity. @BarbaraBushFdn https://t.co/TPAeEiHOkY +04/09/2018,Politicians,@BobbyJindal,"Congratulations @PReedGolf, a graduate of @LSULabSchool! https://t.co/7XWK0s9WAu" +04/04/2018,Politicians,@BobbyJindal,RT @WSJopinion: Donald Trump’s populism is the direct result of the establishment’s hypocrisy. He is implementing policies that more-mainst… +03/24/2018,Politicians,@BobbyJindal,RT @Saints: Former Louisiana Governor @BobbyJindal and wife Supriya’s arrival at Tom Benson’s funeral. https://t.co/B3Ms0L7EuF +03/23/2018,Politicians,@BobbyJindal,"RT @WWLAMFM: Former Louisiana Governor Bobby Jindal, his wife and former Saints Head Coach, Jim Mora at Tom Benson’s second line. https://…" +03/23/2018,Politicians,@BobbyJindal,"The beautiful city of New Orleans was loud celebrating the life of Tom Benson this afternoon. What a perfect, New O… https://t.co/tABn3YPAqM" +03/22/2018,Politicians,@BobbyJindal,"Take a look at my latest opinion piece on The Wall Street Journal​: + +""When Republicans failed to repeal ObamaCare l… https://t.co/qIb4y1TAVy" +03/19/2018,Politicians,@BobbyJindal,Thanks Sun Devils for hosting this weekend’s tournament! https://t.co/dyXcew9czX +03/15/2018,Politicians,@BobbyJindal,Thoughts and prayers with Gayle Benson and the entire @Saints and @PelicansNBA families. Tom was a good friend and… https://t.co/STPG7LG98w +03/11/2018,Politicians,@BobbyJindal,"Crazy... bet they still call 911 when they get robbed. #HastaMuerteCoffee + +https://t.co/gOcnZtcN7B" +03/06/2018,Politicians,@BobbyJindal,Congratulations to Shaan and his basketball team on winning the championship at their Elite 8 basketball tournament… https://t.co/EH2O7VyR5N +03/01/2018,Politicians,@BobbyJindal,#tbt to touring the Capitol with Willie Robertson and the Robertson family. @bosshogswife #throwbackthursday https://t.co/fwKNV4FJgg +02/28/2018,Politicians,@BobbyJindal,Shame singing national anthem is now considered controversial. Thoughts and prayers with family of the fallen. https://t.co/xT8A1Cs2nx +02/25/2018,Politicians,@BobbyJindal,It's a weekend packed with sports. Congratulations to Slade and The Sharks on their championship in their Hammond t… https://t.co/0YpTDsSYHf +02/22/2018,Politicians,@BobbyJindal,#Tbt to my 2007 race ending in my first term as governor for the beautiful state of Louisiana. Thank you to all of… https://t.co/JtBpLaQXuF +02/21/2018,Politicians,@BobbyJindal,My family and I are deeply saddened to hear about the passing of @BillyGraham. His world-wide influence will contin… https://t.co/crwGxNyXLm +02/15/2018,Politicians,@BobbyJindal,"Take a look at my latest opinion piece on @WSJOpinion: + +You hear it all the time from Trump supporters: “I like a l… https://t.co/SHwMJrnSOd" +02/14/2018,Politicians,@BobbyJindal,".@elizabethforma feel free to use my opening line to you at the gridiron “from one Indian to another, I wish you lu… https://t.co/KuBDq8uFVq" +02/01/2018,Politicians,@BobbyJindal,We should create a more populist—Trumpian—bottom-up GOP that loves freedom and flies the biggest American flag in h… https://t.co/upY08S8Mb0 +01/31/2018,Politicians,@BobbyJindal,Democrat leaders in Washington are in danger of alienating a large swath of voters. https://t.co/HR1b1p7EKU +01/15/2018,Politicians,@BobbyJindal,Why Entitlement Reform Needs To Be The Second Half Of Tax Reform https://t.co/7A1JV7eIes +01/12/2018,Politicians,@BobbyJindal,Here’s my latest article on the need for more diversity in higher education. Enjoy. https://t.co/WQ1OQosxOp via @NRO +01/12/2018,Politicians,@BobbyJindal,"Thanks Buckskin Bill Black for all the Monday Morning Marches! God Bless. +https://t.co/6K2TbV3h4E" +12/24/2017,Politicians,@BobbyJindal,Merry Christmas from our family to yours! https://t.co/COxz9Tlg9v +12/22/2017,Politicians,@BobbyJindal,"With #TaxReform out of the way, a reform of Social Security, Medicare and other entitlements must be next. https://t.co/llG0HUHfgQ" +11/27/2017,Politicians,@BobbyJindal,Norwegian immigration minister uses term “No Go Zones” https://t.co/Yoq1Z2xndp +11/27/2017,Politicians,@BobbyJindal,To the encroaching and arrogant spirit of communism and fascism the Vicar of Christ said: “No. You are not the begi… https://t.co/lWxY0GvU7W +11/25/2017,Politicians,@BobbyJindal,"""From the Berlin Wall, to Vietnamese and Cuban boat people, to the DMZ, the prisoners of communism run in only one… https://t.co/Kns8C9Xari" +11/24/2017,Politicians,@BobbyJindal,Sometimes you have to laugh to stop from getting mad. https://t.co/5KXOav1LUK +11/18/2017,Politicians,@BobbyJindal,“Almost all of the growth in top American earners has come from just three economic sectors...that tend to benefit… https://t.co/giTiPa0KIh +11/09/2017,Politicians,@BobbyJindal,“People are motivated by meaning more than money.” and “We must stop emptying our society of meaning.”… https://t.co/AAP0GPq5TT +11/06/2017,Politicians,@BobbyJindal,Democrats Finally Admit Their Real Goal Is Single-Payer Health Welfare https://t.co/FdorHlMkNe +11/02/2017,Politicians,@BobbyJindal,"Repealing O'care invdividual mandate as part of tax cuts would increase freedom and reduce deficit by over $400 bn + +https://t.co/hfKkijO6hB" +11/02/2017,Politicians,@BobbyJindal,Congratulations to #LSU alums Alex Bregman and Will Harris! @abreg_1 got our vote for #worldseries mvp! +10/24/2017,Politicians,@BobbyJindal,"Arthur Toynbee...“Civilizations die from suicide, not by murder.” +https://t.co/gKtqItl7Om" +10/21/2017,Politicians,@BobbyJindal,"Universities should promote open debate, not pc orthodoxy. +https://t.co/8iqTi9GfYh" +10/20/2017,Politicians,@BobbyJindal,Makes me so proud to be an American and want to be worthy of the sacrifices these kids have made. God bless America. https://t.co/5md3YvsJkq +10/06/2017,Politicians,@BobbyJindal,"Jobs so much better than govt dependence + +https://t.co/TngicdIA8A" +10/05/2017,Politicians,@BobbyJindal,#tbt https://t.co/klPHkjXVBP +10/04/2017,Politicians,@BobbyJindal,RT @votedianeblack: Ummmmm...x2 https://t.co/BirI52GLpE +10/04/2017,Politicians,@BobbyJindal,Ummmmm... https://t.co/B2WvUV5cH6 +10/02/2017,Politicians,@BobbyJindal,"Prayers for #LasVegas victims and gratitude for first responders/heroes. + +https://t.co/JENjtRiylV" +09/18/2017,Politicians,@BobbyJindal,"Biden is surprisingly right - should create more jobs not govt programs + +https://t.co/olcjrBy4PQ" +09/18/2017,Politicians,@BobbyJindal,"liberal argument for why dems shouldn't simply rely on race/identity politics. + +https://t.co/4sC1lZ86uM" +09/16/2017,Politicians,@BobbyJindal,"The nanny state lives... +https://t.co/b1Xow9Gf5q" +09/15/2017,Politicians,@BobbyJindal,"It's Friday! In honor of the weekend, here's a throwback to Slade's summer fun. https://t.co/zMV9ZmXPI2" +09/14/2017,Politicians,@BobbyJindal,"Safety comes first, eh? In America we call this private sector initiative. https://t.co/AeBnsov6tL" +09/13/2017,Politicians,@BobbyJindal,"Even hyper-liberal tech elites don't want top-down government. +https://t.co/M6usDgwKTb" +09/11/2017,Politicians,@BobbyJindal,"Being ""orthodox Catholic"" shouldn't disqualify Barrett from being a judge. + +https://t.co/zXH7xgLabI" +09/08/2017,Politicians,@BobbyJindal,.@scottforflorida is tireless in preparing his people for #irma. Praying for all in the path of this monstrous storm. +09/08/2017,Politicians,@BobbyJindal,"It’s still a great country full of great, wonderful people. +https://t.co/RkrigLyR6f" +09/07/2017,Politicians,@BobbyJindal,I enjoyed the debate. Thank you @yaledailynews https://t.co/RiIel0tMV2 +09/05/2017,Politicians,@BobbyJindal,"We must raise our kids to be resilient, not a generation of victims. https://t.co/O9hbmB5gBA" +09/04/2017,Politicians,@BobbyJindal,Proud of Shaan and others who washed cars today @ Jeff Baptist and raised $2k for #harvey victims. https://t.co/2cHPAZSMiT +09/01/2017,Politicians,@BobbyJindal,"Universities can best pursue justice by pursuing truth. +https://t.co/pj17M4RQwK" +08/30/2017,Politicians,@BobbyJindal,"So true, should be self-evident, and yet a message that needs to be heard now more than ever. + +https://t.co/yYJG3pufch" +08/28/2017,Politicians,@BobbyJindal,Donate here: https://t.co/KjE0F4A2KJ https://t.co/GsWWDkuVRb +08/28/2017,Politicians,@BobbyJindal,"TX is a good neighbor, helping us through every storm we've faced. Let's return the favor with prayers and support for them. #harvey" +08/22/2017,Politicians,@BobbyJindal,"""I wish you bad luck..."". Good advice from the Chief Justice. + +https://t.co/H2nCA8WvNs" +08/16/2017,Politicians,@BobbyJindal,RT @ScottforFlorida: What happened in Charlottesville was evil. There's no moral equivalency between the two sides. https://t.co/E8FcQdwku8 +07/28/2017,Politicians,@BobbyJindal,Congrats @govsambrownback. Will do a great job fighting for religious liberty. +07/28/2017,Politicians,@BobbyJindal,"When life gives you lemons, make... bureaucratic regulations. We need less govt, and more common sense/freedom. https://t.co/DeWRCfF97w" +07/20/2017,Politicians,@BobbyJindal,"Something is wrong when 5 of the 10 richest U.S. counties are within DC area. Need to grow our local economies, not… https://t.co/XmSmOPtHLL" +07/20/2017,Politicians,@BobbyJindal,"Praying for Senator McCain and his family. + +https://t.co/f4tcusDWKl" +07/19/2017,Politicians,@BobbyJindal,"Do politicians come with a satisfaction guarantee? If they can't get it done, maybe we should exchange a few at the next election. 2/2" +07/19/2017,Politicians,@BobbyJindal,Senate Republicans need to agree on an Obamacare repeal - or refuse to debate anything else until they can. Seven years is long enough. 1/2 +07/16/2017,Politicians,@BobbyJindal,"So I get a curious email from a ""Natalia"" - yadda yadda yadda - here's a pic of my family in Russia https://t.co/mjxqHOFoRc" +07/10/2017,Politicians,@BobbyJindal,Argument for our #schoolchoice reforms in Louisiana. All kids deserve the chance to get a great education. https://t.co/sDbvtPxx8k +07/08/2017,Politicians,@BobbyJindal,"The West can only be defeated from within, not by any external enemy. We must not give away that which we would nev… https://t.co/YfZDS2NXg1" +07/04/2017,Politicians,@BobbyJindal,"Mark me down as a culturally arrogant westerner who thinks our ways are unique and better, though not perfect. 4/4" +07/04/2017,Politicians,@BobbyJindal,...but I actually think it is important we not take patriotism for granted given current liberal thought. 3/4 +07/04/2017,Politicians,@BobbyJindal,We often share throw away sentiments on days like today... 2/4 +07/04/2017,Politicians,@BobbyJindal,"Happy birthday, America. Still the greatest country in the history of the world! 1/4" +06/30/2017,Politicians,@BobbyJindal,"RT @realDonaldTrump: If Republican Senators are unable to pass what they are working on now, they should immediately REPEAL, and then REPLA…" +06/26/2017,Politicians,@BobbyJindal,.@FLGovScott Great to have all sec match in omaha. Geaux Tigers! https://t.co/zoiakwJz0J +06/26/2017,Politicians,@BobbyJindal,Important 1st amendment victory. Govt can't discriminate against churches. https://t.co/uTPDbJQils +06/25/2017,Politicians,@BobbyJindal,Mannings are a class act. Glad the fields we upgraded are being put to good use. https://t.co/fuCMNo0X2v +06/24/2017,Politicians,@BobbyJindal,"Despicable, Part 2 + +https://t.co/Qz3aUnyyjp" +06/23/2017,Politicians,@BobbyJindal,Geaux Tigers! https://t.co/LZxz4lEaaf +06/23/2017,Politicians,@BobbyJindal,"despicable +https://t.co/rjIQDY1nRD" +06/23/2017,Politicians,@BobbyJindal,Had some thoughts on Obamacare a few wks ago for AmericaNext. Spoiler: I think Congress needs to actually repeal it. https://t.co/C8VkbpLKpr +06/16/2017,Politicians,@BobbyJindal,Supriya and I spent some time at the hospital today. Grateful for the Capitol Police and the nurses and doctors. Praying for @SteveScalise. +06/14/2017,Politicians,@BobbyJindal,"Praying for healing, peace and comfort for @stevescalise and the others wounded in today’s vicious attack." +05/28/2017,Politicians,@BobbyJindal,15th win for @LSUsoftball when it was on the line - nobody else has more than 8. Incredible spirit #GeauxTigers https://t.co/wuxyRGjjhd +05/28/2017,Politicians,@BobbyJindal,GEAUX TIGERS!!! Amazing win by our Champions. https://t.co/uo3eAq9eYh +04/26/2017,Politicians,@BobbyJindal,I will be on with @TeamCavuto at 3:45 to talk about the first 100 days of the @realDonaldTrump Administration. https://t.co/k4R7huVR9u +02/07/2017,Politicians,@BobbyJindal,Confirming @BetsyDevos was a big win for America's underprivileged students. Now the real work begins. +02/03/2017,Politicians,@BobbyJindal,"Extreme liberals like Elizabeth Warren are trying to stop Betsy Devos because she exposes their hypocrisy. + +Watch 📺: https://t.co/N0eH6MVN9j" +02/02/2017,Politicians,@BobbyJindal,"If Republicans are looking for ways to prove to voters that we have become ""them"", I E the DC establishment, this s… https://t.co/tngJK9xFFu" +02/02/2017,Politicians,@BobbyJindal,"On Obamacare, Republicans who want to retreat from repeal to repair should be replaced." +01/30/2017,Politicians,@BobbyJindal,WATCH: Bobby Jindal reacts to Trump's actions on immigration: https://t.co/d6rjsudgfu +01/27/2017,Politicians,@BobbyJindal,The debate over education reflects the defining battle line drawn between right and left. https://t.co/kthFUOdFVd +01/20/2017,Politicians,@BobbyJindal,Congratulations to President @realDonaldTrump. Supriya and I are praying for you as you lead our nation. +01/14/2017,Politicians,@BobbyJindal,".@BetsyDeVos has fought tirelessly for decades to give disadvantaged kids the opportunity to get a great education. +https://t.co/4jtTpmgt0f" +01/09/2017,Politicians,@BobbyJindal,"“Conservative principles, not political posturing, should guide the repeal and replacement of Obamacare. + +READ ⬇️ https://t.co/r2ys4OFmoT" +12/26/2016,Politicians,@BobbyJindal,.@GovernorPerry will be an excellent Energy Secretary. Energy sector workers in Louisiana and the rest of America will have a strong ally. +12/22/2016,Politicians,@BobbyJindal,Merry Christmas from the Jindal family. Isaiah 9:6 https://t.co/UNbfZR0cQr +11/23/2016,Politicians,@BobbyJindal,.@BetsyDeVos has been a champion of education reform for decades and is a fantastic choice to lead the Department of Education. +11/23/2016,Politicians,@BobbyJindal,Congrats to my friend @NikkiHaley! She has done an outstanding job leading South Carolina and will represent us well at the UN. +11/06/2016,Politicians,@BobbyJindal,Let's Geaux Tigers! https://t.co/A9jjinz6Zu +11/01/2016,Politicians,@BobbyJindal,Slade is ready with the ice cold @DrPepper! https://t.co/lrSNs5v9NF +10/25/2016,Politicians,@BobbyJindal,"My former Governor’s Office intern, @MolliexJaY is an up-and-coming singer/songwriter. Check out her latest video: https://t.co/zI0AiTQNut" +10/22/2016,Politicians,@BobbyJindal,The boys are ready to cheer on the Cubs tonight! Throwback from their visit to Chicago last year. https://t.co/vT6tpN8Qiq +10/18/2016,Politicians,@BobbyJindal,RT @FoxNews: .@toddstarnes : The day a college football player stood alone to honor America | https://t.co/Crb8uuqEOR https://t.co/7hyuRnIv… +09/26/2016,Politicians,@BobbyJindal,Thanks Les for all you have done for LSU and Louisiana. It is an honor to call you a friend. +09/01/2016,Politicians,@BobbyJindal,".@LABI_BIZ, @BRAC_BatonRouge and other business groups team up in new program to help small business flood victims: https://t.co/aZkYkPKoLs" +08/09/2016,Politicians,@BobbyJindal,"Candy sales +Computer newsletter +Odd office jobs +Math tutor +Concessions, @LSUfootball +Biochem lab research +Dr's office intern +#firstsevenjobs" +07/17/2016,Politicians,@BobbyJindal,"Our thoughts and prayers are with our law enforcement community after today's horrible shootings. All lives matter, plain and simple." +06/21/2016,Politicians,@BobbyJindal,Supriya and I offer our heartfelt condolences and prayers to his family.” (3/3) +06/21/2016,Politicians,@BobbyJindal,"as well as his humor, Paul was a fixture in our community. He will be missed. (2/3)" +06/21/2016,Politicians,@BobbyJindal,"""Paul brought his tenacity and wit to viewers for decades. Known for his investigative journalism (1/3) https://t.co/MUYJ0w5Ohf" +06/13/2016,Politicians,@BobbyJindal,Horrified and saddened by the deadly terrorist attack in Orlando. Supriya and I are praying for those affected by this terrible tragedy. +06/07/2016,Politicians,@BobbyJindal,Congratulations to @BaseballCrank on your successful tenure at @Redstate. Best of luck in your new endeavor at @NRO. +05/27/2016,Politicians,@BobbyJindal,I'm about to join @GovMikeHuckabee on the @SeanHannity show. Tune in to @FoxNews! +05/23/2016,Politicians,@BobbyJindal,Proud that Slade and the Sharks won their tournament; especially when they came together & prayed after the finals. https://t.co/d2aazVTrOc +05/09/2016,Politicians,@BobbyJindal,Happy Mother's Day to these amazing moms and all mothers out there. https://t.co/lDHJihyfyP +05/04/2016,Politicians,@BobbyJindal,In 15 minutes I’m live with @SeanHannity on @FoxNews. Don’t miss it! +05/04/2016,Politicians,@BobbyJindal,Don’t miss my exclusive interview with @SeanHannity tonight at 9:25 CT where I’ll talk about tonight’s Indiana primary. Tune in! +05/02/2016,Politicians,@BobbyJindal,Trump’s success exposes our failure as conservatives: https://t.co/e6N9rayp21 +03/22/2016,Politicians,@BobbyJindal,"Clearly, open borders don’t work. https://t.co/epltiUqm50" +03/22/2016,Politicians,@BobbyJindal,Our thoughts and prayers are with the people of Brussels. +03/16/2016,Politicians,@BobbyJindal,America is better than our leaders. What I learned running for president. https://t.co/jciTIpebdf +03/10/2016,Politicians,@BobbyJindal,Obama hasn't found a problem he won't blame on GOP. Here is why rise of Trump is on him: https://t.co/s1HlzXR4om https://t.co/9p925SGxIp +02/14/2016,Politicians,@BobbyJindal,“Today we lost the greatest judicial mind most of us have ever known. Every Republican must right now pledge that…” https://t.co/Dt8Dty0jl5 +02/06/2016,Politicians,@BobbyJindal,This election is about the future. That's why I'm endorsing Marco Rubio for President. https://t.co/QFXPz4ZESv +12/24/2015,Politicians,@BobbyJindal,Merry Christmas from our family to yours! https://t.co/8Ka5U7qcKq +12/15/2015,Politicians,@BobbyJindal,Students at St. Benedict the Moor School in NOLA are thriving because of our statewide scholarship program. https://t.co/2u7Ozd1tYv +11/28/2015,Politicians,@BobbyJindal,.@LSUCoachMiles is a great coach and a better man. He is a fantastic ambassador for our state. I hope he remains our coach. +11/22/2015,Politicians,@BobbyJindal,Supriya and I would like to congratulate Governor-elect John Bel Edwards. https://t.co/FdMwt4p43M +11/17/2015,Politicians,@BobbyJindal,It’s been an incredible honor to run for President of this great country. Thank you: https://t.co/IhDcIWOSg8 https://t.co/iRTJ7Bl5IW +11/17/2015,Politicians,@BobbyJindal,RT @SupriyaJindal: .@BobbyJindal about to be on #SpecialReport. Tune in to @FoxNews now. https://t.co/qQAi6vnYRW +11/17/2015,Politicians,@BobbyJindal,RT @BretBaier: Don't miss presidential candidate/Louisiana Gov @BobbyJindal coming up at the top of the hour on #SpecialReport on @FoxNews … +11/17/2015,Politicians,@BobbyJindal,RT @SpecialReport: Tonight on #SpecialReport I'll be joined by presidential candidate and Louisiana Governor Bobby Jindal. Jindal... https:… +11/17/2015,Politicians,@BobbyJindal,"President Reagan reminded us that each generation must renew the principles of freedom. +https://t.co/xbqwrH2OTb" +11/16/2015,Politicians,@BobbyJindal,"Breitbart: ""‘Bobby Jindal Was Right’ On Muslim No-Go Zones"" https://t.co/wL5no8852l +https://t.co/3iC4Kzq8xi" +11/16/2015,Politicians,@BobbyJindal,I just signed an Executive Order instructing state agencies to take all available steps to stop the relocation of Syrian refugees to LA. +11/16/2015,Politicians,@BobbyJindal,"President Obama staying the course on our ISIS “strategy"" is the definition of insanity." +11/14/2015,Politicians,@BobbyJindal,"My letter to @POTUS: In light of Paris terrorist attacks, time to pause process of refugees coming to the US https://t.co/v2K7wuigX0" +11/14/2015,Politicians,@BobbyJindal,"We must destroy Radical Islam. +https://t.co/t1DqcsKR5P" +11/14/2015,Politicians,@BobbyJindal,It’s time for Americans to discard political correctness and come to terms with the truth -- Radical Islam is evil and plans to destroy us. +11/14/2015,Politicians,@BobbyJindal,"This isn't an attack just on France. It's an attack on freedom and free +people everywhere." +11/14/2015,Politicians,@BobbyJindal,I’m speaking live at the @FloridaGOP #SunshineSummit. Watch here: https://t.co/6m3ulrckvZ +11/13/2015,Politicians,@BobbyJindal,Our thoughts are with the people of France. Please say a prayer for Paris as they deal with this horrible attack. +11/13/2015,Politicians,@BobbyJindal,".@RedState: ""The willingness to take on tough jobs and tough issues runs throughout his career"" https://t.co/gFVUlmDKno" +11/13/2015,Politicians,@BobbyJindal,RT @LeonHWolf: I agree with this strongly ---> https://t.co/ZYPuHyJaAO +11/13/2015,Politicians,@BobbyJindal,RT @RedState: Conservative Voters Should Give Bobby Jindal A Chance: https://t.co/wCThEo59MX +11/13/2015,Politicians,@BobbyJindal,RT @BreitbartNews: .@BobbyJindal on the grassroots surge in the GOP primary: There's a sense of urgency and that the idea of America is sli… +11/13/2015,Politicians,@BobbyJindal,.@Redstate: “The Best Man For The Job” https://t.co/gFVUlmDKno +11/12/2015,Politicians,@BobbyJindal,President Obama has encouraged a culture of professional victimhood and grievance: https://t.co/svsh74CWBa +11/12/2015,Politicians,@BobbyJindal,Read my new blog post on the absurdity happening at the University of Missouri & other campuses around the country: https://t.co/rz29G3RuDR +11/12/2015,Politicians,@BobbyJindal,"The absurdity of political correctness on college campuses is laughable, but the consequences are not: https://t.co/svsh74CWBa" +11/12/2015,Politicians,@BobbyJindal,"The failed progressive experiment over the last 7 years has produced more poverty and inequality. +https://t.co/Khx0M5ksl0" +11/11/2015,Politicians,@BobbyJindal,We can't afford to send a big government Republican to the WH. We have too many of those already in DC. https://t.co/uKQwagtIx3 +11/11/2015,Politicians,@BobbyJindal,Retweet if you think big government spending is wrong and immoral. https://t.co/j4vF4JneEB +11/11/2015,Politicians,@BobbyJindal,"We cut the government economy to grow the Louisiana economy. It worked. +https://t.co/uGILYKOxuq" +11/11/2015,Politicians,@BobbyJindal,RT @TeamCavuto: .@BobbyJindal ON #GOPDebate: It's not personal. This is about who is willing to go to D.C. and fight for us. https://t.co/Z… +11/11/2015,Politicians,@BobbyJindal,RT @SupriyaJindal: .@BobbyJindal talking with @TeamCavuto on @FoxBusiness. Tune in now! https://t.co/iKnIgwg1xl +11/11/2015,Politicians,@BobbyJindal,.@TeamCavuto and I will discuss last night’s #GOPDebate at noon ET on @FoxBusiness. Don’t miss it. +11/11/2015,Politicians,@BobbyJindal,"Here is the reality of big government spending: We are stealing money from our kids. That is wrong. That is immoral. +https://t.co/fCFlKnPcGE" +11/11/2015,Politicians,@BobbyJindal,"At 11:30ET, I'm live on @HappeningNow where I’ll talk about last night's #GOPDebate. Tune in!" +11/11/2015,Politicians,@BobbyJindal,"RT @EWErickson: Again, Bobby Jindal Won the First Debate https://t.co/qMXQWL9ZV0" +11/11/2015,Politicians,@BobbyJindal,"We can't afford to send a big government Republican to the WH. We have too many of those already in DC. #GOPDebate +https://t.co/Hr2pRWlXzq" +11/11/2015,Politicians,@BobbyJindal,"Thank you to our Veterans, who run towards danger, not away from it, so that we can live in the greatest country in the history of the world" +11/11/2015,Politicians,@BobbyJindal,"Let’s not just beat Hillary Clinton, let’s elect a real conservative to the White House. #GOPDebate https://t.co/uKQwagtIx3" +11/11/2015,Politicians,@BobbyJindal,I don't just talk about cutting government. I actually did it. https://t.co/mEyoX9mzhE +11/11/2015,Politicians,@BobbyJindal,RT @BreitbartNews: Watch: Bobby Jindal Offers Chris Christie a ‘Participation Ribbon and a Juice Box’ https://t.co/LIGHqqqJbB +11/11/2015,Politicians,@BobbyJindal,We need a President with a proven track record of cutting government to fix our country's spending problem. https://t.co/LHxvEya9WR +11/11/2015,Politicians,@BobbyJindal,My conservative alternative to Obamacare focuses on restoring power to patients & doctors: https://t.co/BCRAScw8fe https://t.co/7chHkLdcOl +11/11/2015,Politicians,@BobbyJindal,"Records matter. #GOPDebate +https://t.co/QWpgrDNoMO" +11/11/2015,Politicians,@BobbyJindal,I'll give the other governors a ribbon & juice box for trying to cut government but I'm the only one who has done it https://t.co/osRoAldelN +11/11/2015,Politicians,@BobbyJindal,"RT @ShaneGoldmacher: More Jindal post-game: ""I think Chris didn't answer those questions because he couldn't answer those questions.""" +11/11/2015,Politicians,@BobbyJindal,RT @FoxBusiness: .@BobbyJindal says Americans need to teach their children to respect the military. #GOPDebate #SemperFi https://t.co/z9MbS… +11/11/2015,Politicians,@BobbyJindal,"Let’s not just beat @HillaryClinton, let’s elect a real conservative to the White House. #GOPDebate +https://t.co/AqZnY2zuXB" +11/11/2015,Politicians,@BobbyJindal,It's time for a President who believes in American Exceptionalism again. #GOPDebate +11/11/2015,Politicians,@BobbyJindal,We purposefully decided to shrink the size of government in Louisiana. It worked. #GOPDebate https://t.co/A0tLHoRfoR +11/11/2015,Politicians,@BobbyJindal,"It’s time we focus on growing the economy, not the government. https://t.co/pymEuUHeAn #GOPDebate https://t.co/PADwsJesyA" +11/11/2015,Politicians,@BobbyJindal,FACT: I’m the only one running for president who has cut the size and scope of government. https://t.co/BFGM4URs0a https://t.co/lF5I428CxA +11/11/2015,Politicians,@BobbyJindal,I wrote a healthcare plan to repeal Obamacare & replace it with a conservative alternative: https://t.co/BCRAScNJ6M https://t.co/uXtUpHMjjD +11/11/2015,Politicians,@BobbyJindal,"In Louisiana, we instituted pro-growth reforms to bring investment and jobs to our state. It worked. #GOPDebate https://t.co/AEUhP8AWGt" +11/11/2015,Politicians,@BobbyJindal,#TellingItLikeItIs https://t.co/YXbUJbUxJI +11/11/2015,Politicians,@BobbyJindal,RT @FiveThirtyEight: Bobby Jindal's claim that he's the only governor running who cut spending is true: https://t.co/KgG5t7oICT #GOPDebate +11/11/2015,Politicians,@BobbyJindal,I am the only one running for president that has actually cut state spending. Everyone else is all talk. #GOPDebate https://t.co/BE0BIDDPWk +11/11/2015,Politicians,@BobbyJindal,The big government crowd hates what we have done – they say we have cut govt more than anyone. Guilty as charged. https://t.co/gcFBtSZwzj +11/11/2015,Politicians,@BobbyJindal,"Louisiana has more people living & working, w/ higher incomes, than ever before: https://t.co/6Pbpk2uXT7 #GOPDebate https://t.co/8eyWZVREGG" +11/11/2015,Politicians,@BobbyJindal,We can't afford to send a big government Republican to the WH. We have too many of those already in DC. #GOPDebate https://t.co/uYQZPyhBwR +11/11/2015,Politicians,@BobbyJindal,Pre-debate prayer. https://t.co/DGAF1WQAW4 +11/10/2015,Politicians,@BobbyJindal,The #GOPDebate is about to start! Tune in to @FoxBusiness or watch online here: https://t.co/KlzqlJhRyW +11/10/2015,Politicians,@BobbyJindal,"We’re 30 minutes from the start of the #GOPDebate. If you don’t have the @FoxBusiness channel, you can watch here: https://t.co/KlzqlJhRyW" +06/28/2018,Politicians,@lessig,"RT @ThePopular_Vote: @staypufd @JosephPatrice Wrong. What the founders meant by ""republic"" was essentially ""representative democracy."" + +htt…" +06/28/2018,Politicians,@lessig,"RT @wiumlie: «The large ""404"" error message on the front page of the Norwegian website https://t.co/tDkc9LyPX8 looks a lot like an ""SOS"" si…" +06/28/2018,Politicians,@lessig,RT @ischieferdecker: Ein herzliches Willkommen zu unserer ersten Weizenbaum Lecture mit Lawrence @lessig ... https://t.co/t0bOwBkIN1 +06/26/2018,Politicians,@lessig,"RT @drumpfterfire: @SickOfTheSwamp @Mikel_Jollett @TanyaGrahamDVM @JeffFlake @jaketapper Its not a car, it’s a Ford! +It’s not a bird, it’s…" +06/26/2018,Politicians,@lessig,"RT @usaamahmed: RT PaulNemitz ""RT JWI_Berlin: Auftakt unserer neuen Veranstaltungsreihe - Weizenbaum Lectures: Lawrence lessig hält am 4. J…" +06/26/2018,Politicians,@lessig,@Lean_Falcon Thanks. Shld be fixed +06/25/2018,Politicians,@lessig,"RT @JWI_Berlin: Auftakt unserer neuen Veranstaltungsreihe - Weizenbaum Lectures: Lawrence @lessig hält am 4. Juli, um 19 Uhr, im Alten Pala…" +06/22/2018,Politicians,@lessig,"RT @DanMunro: @chasedave @JamesFallows I'm over in the @lessig camp: + +""Campaign finance reform (#CFR) isn't the biggest problem facing the…" +06/22/2018,Politicians,@lessig,Seriously- why isn’t there an Office parody of the Trump Administration? +06/20/2018,Politicians,@lessig,RT @GabbaGabbaMeh: “Good Germans” @lessig https://t.co/PNDfPMq1iz +06/20/2018,Politicians,@lessig,"RT @mpawlo: When I attended the Internet & Society course at @BKCHarvard back in 2001, people like @zittrain, @lessig and @YochaiBenkler wa…" +06/20/2018,Politicians,@lessig,@Crell @EqualCitizensUS It is SO rare that I get to count to 5! +06/19/2018,Politicians,@lessig,"RT @EqualCitizensUS: Everyone seems down about the recent Gill v. Whitford Supreme Court decision. @Lessig offers a different, more optimis…" +06/19/2018,Politicians,@lessig,"From the Lawyers-just-never-learn/give-up-Department: “@LawverSays: Hey, @henryjenkins, have you seen this? Think t… https://t.co/yTnh4y96Pm" +06/19/2018,Politicians,@lessig,RT @fightfortheftr: .@SantiagoAD53 is this really what you want your legacy to be? Do you want to be known as the Democrat who sold out rea… +06/19/2018,Politicians,@lessig,RT @tylercreighton: Good on @SenatorTester for successfully pushing for the Senate to enter the 21st century by electronically filing their… +06/19/2018,Politicians,@lessig,"RT @EqualCitizensUS: Let's talk about copyrights: The CLASSICS Act would give a new right for already created works, protecting them until…" +06/19/2018,Politicians,@lessig,RT @EqualCitizensUS: Omg https://t.co/Ba62oalwI1 +06/19/2018,Politicians,@lessig,“This California Democrat is single-handedly ruining our best chance to save net neutrality” by @fightfortheftr https://t.co/n9GvpeSCm8 +06/18/2018,Politicians,@lessig,"Hey, there’s an important silver lining to the gerrymandering case too many are missing: https://t.co/i5fG4YxDkS" +06/17/2018,Politicians,@lessig,"The PoorPeoplesCampaign is making history! It's time for big media to fully cover it. Join & tell CNN, Fox etc here: https://t.co/w5lMk7Cxv4" +06/15/2018,Politicians,@lessig,"RT @innarliiv: Prof @skominers from @HarvardHBS (w)rapping up Primavera's +book presentation ('Blockchain and the Law') with an improvised…" +06/13/2018,Politicians,@lessig,"RT @anineki: @lessig I agree. Our political branches, @Stortinget and @regjeringen should ensure public access to central sources of law, r…" +06/13/2018,Politicians,@lessig,Law should encourage the spread of the law. This result is out of character for the #1 ranked democracy in the worl… https://t.co/8fP94y4TVn +06/11/2018,Politicians,@lessig,BREAKING: The repeal of #NetNeutrality just went into effect. Your cable company now has even more power to screw y… https://t.co/UlvgEwlbkX +06/11/2018,Politicians,@lessig,"Super-smart podcast reviewing my ""pathetic [red] dot"" theory of regulation. I learned tons, and once we fix democra… https://t.co/ONC4eqWgwb" +06/08/2018,Politicians,@lessig,RT @mmckinnon: @Lessig https://t.co/ociVrvReKn +06/05/2018,Politicians,@lessig,"Devin at @TechCrunch has a smart piece about the fight agnst the latest © give away — a ""give away"" not because art… https://t.co/WXHu9euEWJ" +06/05/2018,Politicians,@lessig,The President was an amazing - and moving - addition. So happy to be part of this. https://t.co/9Z8N68dGQs +06/01/2018,Politicians,@lessig,RT @mpinsley: Tonight I’m with Larry Lessig and https://t.co/82DVVFXPJu PA to tackle the rampant corruption in Harrisburg! https://t.co/3H2… +06/01/2018,Politicians,@lessig,"RT @undergradwoman: Me with Professor @lessig, others & my BFF at @EndPACorruption conference in #Scranton, Pennsylvania. #RockTheVote http…" +05/31/2018,Politicians,@lessig,RT @AdHochuli: campaign finance reform is the ONLY issue if addressed would have a cascading restorative effect on US democracy #lessig2020… +05/30/2018,Politicians,@lessig,Jason Harrow of @EqualCitizensUS on why winner-take-all destroys representative democracy EVERY SINGLE election (an… https://t.co/R136V2x17N +05/28/2018,Politicians,@lessig,Great piece by @EqualCitizensUS inspirer @AdamEichen about what getting sensible gun safety laws will take (aka… https://t.co/amGMc5Qs1c +05/24/2018,Politicians,@lessig,RT @EqualCitizensUS: BIG ANNOUNCEMENT: Equal Citizens is partnering with @bassnectar and @Electric_Forest on a first-of-its kind campaign!… +05/23/2018,Politicians,@lessig,@next_ghost_cz @creativecommons What wld it be? +05/23/2018,Politicians,@lessig,"RT @johnverdon: scholars such as Paul Heald, demonstrate that copyright blocks access to all sorts of no-longer-commercially-viable creativ…" +05/22/2018,Politicians,@lessig,"Hey #California, I've known @JeffBleichCA for more than 25 years. He is extraordinary. https://t.co/6YcXJ8u6PQ" +05/21/2018,Politicians,@lessig,"@davidclowery @neilturkewitz My “misunderstanding” is apparently shared by 40 IP law professors. Oh well, those who… https://t.co/NQhcEFrBtK" +05/21/2018,Politicians,@lessig,@enzomazza @neilturkewitz Hey nice quote. But see https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,@ClaraBellino @WIRED @thetrichordist Retirement is so attractive! But me and who else? See https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,@WastedVinyl @neilturkewitz Hey nice quote! But see https://t.co/rBdHqME41O +05/21/2018,Politicians,@lessig,"@neilturkewitz @devlinhartline @mattbarblan @KevinRMadigan Hey, great point! But see https://t.co/rBdHqME41O" +05/21/2018,Politicians,@lessig,@devlinhartline @neilturkewitz @Lawrence_Spiwak @enzomazza @AlaiItalia @usa @WIRED @terrencehart wow. content based… https://t.co/DaJkl0ergO +05/21/2018,Politicians,@lessig,@undergradwoman @EqualCitizensUS Alas 5 min is all you get! +05/21/2018,Politicians,@lessig,"RT @EqualCitizensUS: Twenty years ago today, @lessig's plea to Congress that it not accept technology's attack on personal privacy: https:/…" +05/21/2018,Politicians,@lessig,Emma Lindsay has a super smart piece about politic$ — and how my friend Shahid Buttar (running for Congress in CA)… https://t.co/LJePM6lrKr +05/21/2018,Politicians,@lessig,"That world where Nancy Pelosi is with Mitch McConnell, and John McCain is with Paul Wellstone https://t.co/babNibVyr9" +05/21/2018,Politicians,@lessig,"Twenty years ago today, my plea to Congress that it not accept technology's attack on personal privacy: https://t.co/tgjRLjNhL7" +05/20/2018,Politicians,@lessig,@neilturkewitz @Lawrence_Spiwak @devlinhartline @enzomazza @AlaiItalia @usa @WIRED @terrencehart I argued Golan and… https://t.co/fjc5ylK2FH +05/20/2018,Politicians,@lessig,"@JonathanTaplin @HorsebackNoise @davidclowery @enzomazza @AlaiItalia @usa @WIRED @Google Why is that laughable, Jon… https://t.co/mfCf912Ged" +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google State law does not protect published work.… https://t.co/cAlZdT8eU9 +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @HorsebackNoise @enzomazza @AlaiItalia @usa @WIRED @Google where is the “contradictio… https://t.co/b1mvroapWo +05/20/2018,Politicians,@lessig,@neilturkewitz @JonathanTaplin @HorsebackNoise @davidclowery @enzomazza @AlaiItalia @usa @WIRED @Google Still ignor… https://t.co/QIw8gHmNou +05/20/2018,Politicians,@lessig,@davidclowery @JonathanTaplin @HorsebackNoise @enzomazza @AlaiItalia @usa @WIRED @Google I came to Stanford and sta… https://t.co/ROebE4E5PU +05/20/2018,Politicians,@lessig,"@JonathanTaplin @Google So on your definition of “shill”, you’re a shill too? https://t.co/pRcj25KlYH" +05/20/2018,Politicians,@lessig,"@davidclowery @JonathanTaplin @Google Yes. And as I told them (and so acted) because they did, I would not advance… https://t.co/BFC1Vyxq4y" +05/20/2018,Politicians,@lessig,"@devlinhartline @neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart i’m more an IP kitten, not bear." +05/20/2018,Politicians,@lessig,@neilturkewitz @Lawrence_Spiwak @devlinhartline @enzomazza @AlaiItalia @usa @WIRED @terrencehart you’re missing the… https://t.co/mSKJVr9Ntl +05/20/2018,Politicians,@lessig,@devlinhartline @neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart Thanks for the correction: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,"@richardcowens We’re speaking the same language, Richard, right? How is playing an old recording publicly “plagiarizing” anything?" +05/20/2018,Politicians,@lessig,@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google When? Shortly before I stopped beating my wife: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart As explained here: https://t.co/eifMssI40O +05/20/2018,Politicians,@lessig,"@davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google You are mistaken, sir. https://t.co/eifMssI40O" +05/20/2018,Politicians,@lessig,"@HorsebackNoise @davidclowery @JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google um, maybe because it’s not… https://t.co/K0kTQOrzJE" +05/19/2018,Politicians,@lessig,"@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart Hmm, so you concede your source does not apply to c… https://t.co/px9ySGRL44" +05/19/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart He is writing about a copyright offered in exchange… https://t.co/jQN8J2N0UK +05/19/2018,Politicians,@lessig,"@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google That’s interesting (re Goigle and pk), but you called me… https://t.co/7Q1DiCCQD6" +05/19/2018,Politicians,@lessig,@JonathanTaplin @enzomazza @AlaiItalia @usa @WIRED @Google Huh? (Not to mention wow!) +05/19/2018,Politicians,@lessig,@neilturkewitz @enzomazza @AlaiItalia @usa @WIRED @terrencehart You should read what you cite - on his definition i… https://t.co/pFGAhUV0Ju +05/19/2018,Politicians,@lessig,"@RobertBLevine_ What, Robert, is my cell conflict?" +05/19/2018,Politicians,@lessig,@richardcowens “Plagiarism”??!Come on Richard. +05/19/2018,Politicians,@lessig,"RT @DrRimmer: The CLASSICS act is simply a gift, paid for by further weakening the ability of archivists to keep our culture accessible. ht…" +05/19/2018,Politicians,@lessig,@enzomazza @AlaiItalia @usa @WIRED Is there a use which before was free but would now be regulated by felony-protec… https://t.co/IH5jecdUKe +05/19/2018,Politicians,@lessig,RT @demartin: Lawrence @Lessig on the seemingly unquenchable thirst of the copyright industry for monopoly privileges https://t.co/CwJPPUM8… +05/19/2018,Politicians,@lessig,"@drjaniceduffy If you thought this, then you need to read more." +05/18/2018,Politicians,@lessig,"@mischmerz @WIRED According to the court, yes" +05/18/2018,Politicians,@lessig,Lots of 20th anniversaries this year: Here's a retrospect on the MSFT case. https://t.co/41OIHbEnOg +05/18/2018,Politicians,@lessig,@bobkohn “Harmonize” was w/r/t foreign law. But your meaning will certainly be relied upon as Congress “harmonizes”… https://t.co/5fkIkMBhKf +05/18/2018,Politicians,@lessig,©️-term extension: Here they go again. #heyCongressYouAreTotallyBroken https://t.co/ajYPcoW4vt +05/17/2018,Politicians,@lessig,"@bmaygers @HuffPost yea, but the second Trump defeat in Congress deserves more than 4 hours of front page coverage!" +05/17/2018,Politicians,@lessig,"The #NetNeutrality story now lives on @HuffPost in Israel, sort of: + +& btw: thank you, ©, for working so hard to “… https://t.co/tMcbHyVrR8" +05/17/2018,Politicians,@lessig,"Besides the ACA vote, was there another vote Trump lost, @HuffPost? #NetNeutrality" +05/17/2018,Politicians,@lessig,@MichaelDolan Excellent! New go-to-news-page. +05/17/2018,Politicians,@lessig,@GiuseppeTaibi @HuffPost @oath More likely that the @HuffPost AI thinks stories mocking Don Jr. are more important to the Republic. +05/17/2018,Politicians,@lessig,"Hey @huffpost, I went to bed (I’m in Israel) watching the Senate vote to save #NetNeutrality and wake to see it NOT COVERED in #HuffPo?" +05/16/2018,Politicians,@lessig,BREAKING: The US Senate just voted to save #NetNeutrality! Now we have to take the fight to the House. Chip in to h… https://t.co/bQtjrKKpWZ +05/16/2018,Politicians,@lessig,RT @demandprogress: CALLING ALL LOUISIANANS!!! Please call the office of @SenJohnKennedy and say THANK YOU for his vote to save #NetNeutral… +05/16/2018,Politicians,@lessig,Deep respect to @SenJohnKennedy for thinking through the issues of #NetNeutrality independently and carefully. His… https://t.co/bJsBJkcdTC +05/16/2018,Politicians,@lessig,RT @EqualCitizensUS: Senators Murkowski and Kennedy vote yes on net neutrality! The bill to save net neutrality will pass! https://t.co/Dnz… +05/16/2018,Politicians,@lessig,BREAKING: Senate files motion to proceed to final #NetNeutrality vote. There's less than two hours to make your voi… https://t.co/sVrq9DRpMe +05/15/2018,Politicians,@lessig,"86% of voters from across the political spectrum support #NetNeutrality. It's essential for small businesses, free… https://t.co/WjiWEYDse0" +05/15/2018,Politicians,@lessig,"What + +if + +all + +your + +favorite + +websites + +loaded + +this + +slowly + +unless + +you + +paid + +extra + +to + +access + +them? + +The + +S… https://t.co/prZusuqsTX" +05/15/2018,Politicians,@lessig,"URGENT: The Senate votes on #NetNeutrality in less than 48 hours + +https://t.co/ffxqmJFhK5 or call (513) 854-0120 to… https://t.co/sIgQo8IRr4" +05/14/2018,Politicians,@lessig,"@some_guy_532135 @superwuster Net neutrality is ONLY that! Based on Saltzer/Clark/Reed end-2-end principle, decentralized power." +05/14/2018,Politicians,@lessig,@some_guy_532135 And what will you do when it follows the history of EVERY such technology and does? Have you read… https://t.co/qSYx4ehACM +05/14/2018,Politicians,@lessig,"@MikeMeservy Competition? +You are not serious, are you? There is squat little broadband competition in America. And… https://t.co/IL5AzevI40" +05/14/2018,Politicians,@lessig,"no doubt, we'll need ""the force"" on this. https://t.co/TucHuv48B6" +05/14/2018,Politicians,@lessig,This must happen. https://t.co/viUpO6HVv2 +05/14/2018,Politicians,@lessig,"This + +is + +not + +a + +drill + +the + +FCC + +just + +announced + +#NetNeutrality + +ends + +on + +June 11 + +unless + +we + +stop + +it… https://t.co/aFYWKcoJC0" +05/12/2018,Politicians,@lessig,RT @bryancallen: Sometimes you do a podcast with a man the whole country should listen to. @TT_LarryLessig explains why your Government doe… +05/11/2018,Politicians,@lessig,more! https://t.co/PqVvQEAbDd +05/11/2018,Politicians,@lessig,@Jeffrey_Marty I am sorry for that loss. It took me way too long to understand what it meant. +05/10/2018,Politicians,@lessig,"As always, @eff is just the best (amicus is great). https://t.co/JgdIdEdqKI" +05/09/2018,Politicians,@lessig,RT @Represent_PA: @RepresentDotUs @FairDistrictsPA @EndPACorruption @commoncausepa @LWVPA @TYTNetwork @DrawTheLinesPA @AdamEichen @lessig h… +05/09/2018,Politicians,@lessig,@Team_Mitch @DonBlankenship Wow. Here's a measure of just how much @realDonaldTrump has destroyed the standards of… https://t.co/640bRGd52a +05/06/2018,Politicians,@lessig,@danielahanley @EqualCitizensUS It is great news. Effect conditional on getting 98 more electors committed. +05/05/2018,Politicians,@lessig,"RT @NewYorkLiveArts: Did you miss the Live Ideas Keynote conversation with Bill T. Jones, Sherilyn Ifill and Lawrence Lessig? It's up on yo…" +05/03/2018,Politicians,@lessig,Wow. Great article. Just one of the reasons why I support Rob Sand @robsandia https://t.co/a1ZfS8VQXR +05/03/2018,Politicians,@lessig,@steveoftheweb Wish I could - but he seems to have good lawyers. We just have bad laws (still). +05/03/2018,Politicians,@lessig,RT @RoKhanna: My Democracy Dollars bill giving every voter a $50 voucher to use to fund campaigns would change the model of campaign financ… +04/29/2018,Politicians,@lessig,RT @EqualCitizensUS: @lessig writes about the corruption in our democracy and how public funding in our elections could fix it. Read his pi… +04/27/2018,Politicians,@lessig,I Joined the Tea Party to Drain the Swamp. Trump Isn’t Helping. via @NYTimes https://t.co/2pYQklOyvj +04/25/2018,Politicians,@lessig,"RT @AdamEichen: ""Mulvaney’s attitude is a thousand times worse for America than even Donald Trump,"" said @Lessig, founder of Equal Citizens…" +04/25/2018,Politicians,@lessig,@MattWisnefsky Don’t give up all money; give up interested money and commit to fundamental reform as a day-one issue. +04/25/2018,Politicians,@lessig,RT @davidhogg111: I dream of an America with morally just leaders and without citizens united. Simply put if you need to take millions of d… +04/25/2018,Politicians,@lessig,#finally https://t.co/SkwmuwGTcu +04/25/2018,Politicians,@lessig,#respect https://t.co/142A9xZuVZ +04/20/2018,Politicians,@lessig,@nitsch_robert Explain? +04/17/2018,Politicians,@lessig,"RT @NewYorkLiveArts: Live Ideas opens tomorrow! Grab your tickets to the opening keynote with Bill T. Jones, Sherrilyn Iffil and Lawrence L…" +04/12/2018,Politicians,@lessig,"RT @BKCHarvard: RSVP now for Monday's conversation with @lessig, Ruth Okediji, @LauraDeNardis, and @zittrain on the foundational laws of th…" +04/12/2018,Politicians,@lessig,RT @BTJAZCo: Bill T Jones will be moderating the Live Ideas Festival Opening Keynote discussion with Lawrence Lessig and Sherrilyn Iffil. h… +04/10/2018,Politicians,@lessig,@rejon Yea! +04/10/2018,Politicians,@lessig,@MariaChappelleN @robschaaf Hey!! Great to hear from you. And thank you for the reading! +04/09/2018,Politicians,@lessig,We stand with Ale! She's an activist who's been detained by ICE for 33 days & is targeted for deportation. Help here https://t.co/ZCyWn3Nw93 +04/07/2018,Politicians,@lessig,@RingelsteinME Honored to stand with reformers. +04/06/2018,Politicians,@lessig,"@noel_fisher @MAYDAYUS Wow. Thank you, sir." +04/03/2018,Politicians,@lessig,Important piece by Rob Natelson: Convention for proposing amendments not as scary as some suggest https://t.co/IxMzrCEIne +04/02/2018,Politicians,@lessig,RT @Sweet4Governor: So excited to hear Larry Lessig and be part of the panel to talk about the foundational issue of getting money out of p… +04/01/2018,Politicians,@lessig,Super smart https://t.co/cIHvRaXmSY +03/31/2018,Politicians,@lessig,@ben_kelly_ivory It’s a paid ad at a subway station. How could it possibly be propaganda? +03/31/2018,Politicians,@lessig,RT @HarvardAsh: Next Wednesday: You're invited to a book talk with authors @lindsey_brink and Steven Teles. @lessig will moderate. https://… +03/31/2018,Politicians,@lessig,So #AreYouASocialist? https://t.co/1ma9vBS3Or +03/30/2018,Politicians,@lessig,"RT @MAYDAYUS: Searing words from @lessig on @PAGOP's attempt to impeach judges just to keep gerrymandering: “In Putin’s Russia, this is com…" +03/26/2018,Politicians,@lessig,Super smart piece by @samuelmoyn — Pinker’s Misguided Optimism | The New Republic https://t.co/At5ComVaeV +03/24/2018,Politicians,@lessig,#marchforourlives https://t.co/k1L9gQ0WfG +03/23/2018,Politicians,@lessig,"Hey, @EqualCitizensUS is looking for interns: research/digital campaigns/Graphic Design. +Turns out there's more to… https://t.co/CuIhivYUgH" +03/21/2018,Politicians,@lessig,"RT @creativecommons: Pleased to announce CC Founder @lessig will present ""From Unlocking Free Culture to Reviving American Democracy"" at ou…" +03/21/2018,Politicians,@lessig,“An American president does not lead the Free World by congratulating dictators on winning sham elections.” @SenJohnMcCain +03/16/2018,Politicians,@lessig,"@tweets4twits @Newsweek Technically it is the president who nominates but congress has to confirm and so yes - if qualified, anyone" +03/16/2018,Politicians,@lessig,"@tweets4twits @Newsweek Decency inspires, always." +03/15/2018,Politicians,@lessig,@tweets4twits @Newsweek 25th Amendment? +03/15/2018,Politicians,@lessig,"RT @carlmalamud: Just FYI, 1 US 1 goes back to 1754. https://t.co/XB8LoOIyMo Not Supreme Court decision but Supreme Court Reports. FWIW, on…" +03/14/2018,Politicians,@lessig,RT @SarcasmLiving: “You and I both know that as long as our representatives are held hostage to their funders — and their funders are not a… +03/14/2018,Politicians,@lessig,"RT @DanielBiss: 11 months ago today I released my tax returns and asked my opponents to do the same. They said yes. They were lying. + +Throu…" +03/12/2018,Politicians,@lessig,"RT @BruceSkarin: Add this to your watchlist! The title should be: ""The Robin Hoods of Power"" + +Didn't realize just how much I missed hearin…" +03/12/2018,Politicians,@lessig,RT @RepresentDotUs: Lawrence Lessig - United by our Dissatisfaction: https://t.co/0YoURMintW via @YouTube +03/11/2018,Politicians,@lessig,My film with Snowden is on Amazon. https://t.co/Y8LPMORwqz +03/09/2018,Politicians,@lessig,@ColinWinter Is doesn’t imply ought. +03/09/2018,Politicians,@lessig,#vproud the pathetic dot has become Wikipediable. https://t.co/8NHvBgUD6o +03/08/2018,Politicians,@lessig,RT @DowntroddenInDC: @tedcruz Says the dude named Rafael born in Canada. Hilarious. +03/08/2018,Politicians,@lessig,RT @EqualCitizensUS: Read & share this great op-ed by our chief counsel Jason Harrow on #EqualVotes https://t.co/GRZlFnlUUM via @usatoday +03/08/2018,Politicians,@lessig,RT @Crell: There's plenty of corruption in the Democratic side of the isle. @speakermadigan is the poster child for it. He's a disgrace to… +03/08/2018,Politicians,@lessig,Wow. @speakermadigan https://t.co/9jtwrxQqCu +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/z38mQxz4Xk +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/Ypr5EtXHBk +03/07/2018,Politicians,@lessig,RT @NoFuncDemo: @leftycoastr @lessig @cameron_kasky https://t.co/SRd3WvCuoj +03/07/2018,Politicians,@lessig,RT @leftycoastr: @cameron_kasky @lessig We can’t fix anything until we get the money out of our politics. Overturning citizens united and p… +03/07/2018,Politicians,@lessig,RT @DavidVMitchell: This! @lessig meet @cameron_kasky https://t.co/D29AGbtaoq +03/07/2018,Politicians,@lessig,"RT @cameron_kasky: The NRA is pretty awful about this, but it’s a bigger issue than that. We need to get money out of politics across the b…" +03/05/2018,Politicians,@lessig,"RT @RumbleComics: The most important part is the last line: ""A full review will take place over the summer, so it wasn't clear how the term…" +03/02/2018,Politicians,@lessig,"@nickdanger69 @Salon @EqualCitizensUS Love Sioux Falls, and born in Rapid City" +03/02/2018,Politicians,@lessig,This video by @Salon does a great job explaining the challenge to the Electoral College that @EqualCitizensUS help… https://t.co/xmGokRHMwK +03/02/2018,Politicians,@lessig,"@realDonaldTrump Seriously, Mr. President. You can’t really be this ignorant." +03/02/2018,Politicians,@lessig,RT @AlyonaMink: 2 of our last 3 presidents were elected without winning the popular vote. Now voters in 4 states are suing to change the sy… +03/01/2018,Politicians,@lessig,RT @EqualCitizensUS: Great interview on #EqualVotes with @lessig & @FastCompany https://t.co/quO3krqAOS +02/27/2018,Politicians,@lessig,@CaseyCagle @Delta @NRA Too bad there is no #FirstAmendment in Georgia. +02/26/2018,Politicians,@lessig,"RT @kayalbasi: An office that represents all Americans should be elected equally by all Americans. + +“The challenge to ‘winner-take-all’ la…" +02/26/2018,Politicians,@lessig,"RT @PatSemple: “For example, in 2016, 99% of campaign spending was in 14 states. Those states, representing just 35% of America, are older…" +02/25/2018,Politicians,@lessig,"RT @Crell: Gun control, campaign control — Steemit https://t.co/skPFtxzlhv" +02/23/2018,Politicians,@lessig,"RT @akaelainesk: @EqualDignity @lessig @TheDavidBoies I am in WV. I wrote to all five of our electors, asking them to represent the WV vote…" +02/23/2018,Politicians,@lessig,RT @EqualDignity: Congrats to @lessig and @TheDavidBoies for filing suit against the winner-take-all laws underpinning the Electoral Colleg… +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics SO by avoiding my questions about the 14th Amendment, I assume that means you concede tha… https://t.co/xUED7BL1gg" +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics You realize we’ve brought four suits, including CA and MA, right? In those BLUE states, i… https://t.co/F4yiB6DL9T" +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics I got that part in my constitution too. What I was asking was where is the part that says… https://t.co/xfzyAGuTEb +02/23/2018,Politicians,@lessig,"@WomenWhoThink @bpolitics There are plenty of bounds to the 14th Amendment — see, e.g., Washington v. Davis. But ar… https://t.co/7TkDQRo4n2" +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics Huh? Quote a SINGLE example of that view from the framing. +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics I’ve read the constitution. Does it say “winner take all” in yours? Your confusing a COMP… https://t.co/bbNCq9aHzf +02/23/2018,Politicians,@lessig,@WomenWhoThink @bpolitics Now join the ones that read: https://t.co/ehVAsAih0z. #DamnRightWeAreADemocracy +02/23/2018,Politicians,@lessig,@UKBleedingBlue @bassobryce Where is winner-take-all in the Constitution. I must have missed it. +02/23/2018,Politicians,@lessig,RT @ScreenTimeComic: @RumbleComics @douglevin @Scholastic @artandwriting @BoingBoing @doctorow @lessig Well done! And you have _just_ begun… +02/23/2018,Politicians,@lessig,@nashville_brook https://t.co/vkHpCr4hAC +02/23/2018,Politicians,@lessig,@nashville_brook happy to respond to you once you’ve responded to me. +02/23/2018,Politicians,@lessig,"RT @pwb: If it was a pro-Trump partisan issue, the lawsuits would only have been launched in blue states. They weren't. https://t.co/oNQ3WC…" +02/23/2018,Politicians,@lessig,@nashville_brook As a “material implication” of what? I wasn’t predicting anything about Ryan. I was saying what wa… https://t.co/6bBT1gUFwa +02/23/2018,Politicians,@lessig,"This excerpt is almost a decade old, but it still summarizes pretty accurately the ""dependence corruption"" of Congr… https://t.co/A2ex2NJjn1" +02/23/2018,Politicians,@lessig,@nashville_brook @GeoffMiami @BethLynch2020 @bourgeoisalien @blupfront1 And in what world is not saying more “doubl… https://t.co/4yNW39b09r +02/23/2018,Politicians,@lessig,@nashville_brook It doesn’t make me “disingenuous.” It marks me as realistic about the effect of raising and pressi… https://t.co/Nw8vsfL99m +02/23/2018,Politicians,@lessig,@rcfwilmette @smerconish Yea @smerconish! +02/23/2018,Politicians,@lessig,"Galvin defends the current(ly unjustly unequal) system by arguing the alternative is likely to elect Trump. Um, wai… https://t.co/tc1V4SVuzZ" +02/23/2018,Politicians,@lessig,We're hiring a campaign manager at @EqualCitizensUS. Is it you? https://t.co/nH84U2QdS1 +02/23/2018,Politicians,@lessig,RT @PupsNPol: Great article and not the first to say this. I believe @lessig was arguing this as well back in Dec 2016. https://t.co/Ifg3R… +02/23/2018,Politicians,@lessig,@nashville_brook Nope. “Let it go” +02/23/2018,Politicians,@lessig,RT @BunsNotBombs: @dylan_forest @Illini102 @MaryAnnAhernNBC @BernieSanders @DanielBiss @KennedyforIL @Ra_Joy @NationalNurses @OurRevolution… +02/23/2018,Politicians,@lessig,"@jda2000 @Molly_McDonough @ABAJournal Reason and principle?- yea, pretty foreign ideas" +02/23/2018,Politicians,@lessig,@bwohlgemuth @Molly_McDonough @ABAJournal Reading cures lots. But look - the bill of rights is the cure for the so… https://t.co/2G8MpMuJYa +02/23/2018,Politicians,@lessig,@jda2000 @Molly_McDonough @ABAJournal ? +02/23/2018,Politicians,@lessig,@DarkGently @nashville_brook Do you think the author of a blog post written about by Newsweek writes the titles to… https://t.co/MpbysSg0NA +02/23/2018,Politicians,@lessig,@bwohlgemuth @Molly_McDonough @ABAJournal Not a winning strategy. But even if it were- what is the argument FOR den… https://t.co/ioN0ytVzuu +05/29/2018,Politicians,@LincolnChafee,"""Two of my favorite sayings are, 'Fortune favors the bold' and 'Discretion is the better part of valor.' The latter… https://t.co/FgIQzUNOYR" +05/28/2018,Politicians,@LincolnChafee,https://t.co/1Y7ifYrBGK +05/28/2018,Politicians,@LincolnChafee,https://t.co/Z3pQVFwSIn +05/23/2018,Politicians,@LincolnChafee,"Frank Bruni op-ed in NY Times today says Mueller investigation is backfiring on Dems, actually strengthening Trump. Who said that first?" +05/22/2018,Politicians,@LincolnChafee,"It’s unfortunate that Venezuela, in our hemisphere, is gravitating into the China, Russia, Iran and Turkey orbit." +05/20/2018,Politicians,@LincolnChafee,"Good luck to Volvo sailors! Great to work with Dir’s. Licht, Coit et al to fund necessary infrastructure in tough b… https://t.co/SHLHGEQABF" +05/18/2018,Politicians,@LincolnChafee,"Good to see NY Times covering DNC nominating reforms- more open primaries, no superdelegates and better caucus voting procedures." +05/17/2018,Politicians,@LincolnChafee,Electoral College a rout for Trump. Not good. Reforms should include all open primaries. Is Cynthia Nixon next victim of closed NY primary? +05/16/2018,Politicians,@LincolnChafee,Shiite al Sadr leads Iraqi elections. We ousted Sunni Saddam. We embrace Sunni Saudi’s and fight with Shiite Iran.… https://t.co/HOZVMHcGbv +05/15/2018,Politicians,@LincolnChafee,"Best wishes to Rev. Donnie Anderson, a hard worker for just causes." +05/14/2018,Politicians,@LincolnChafee,"NBA’er Jerry West: “What is right is not always popular, and what is popular is not always right.”" +05/13/2018,Politicians,@LincolnChafee,Happy Mother’s Day! +05/12/2018,Politicians,@LincolnChafee,"HRC didn’t campaign in Wisc. Russia’s fault! Dissed Sanders Nation, email server, Clinton Foundation... Refocus on… https://t.co/d4DMcpc6un" +05/11/2018,Politicians,@LincolnChafee,Endless ink on Russian meddling. Waiting for reforms to flawed DNC that gave us a candidate who lost to Trump. Ban superdelegates. +05/10/2018,Politicians,@LincolnChafee,"How are we going to get Middle East back to the days of Carter Begin, Reagan Shamir, HW Bush Rabin, Clinton Peres, Barak, working for peace?" +03/24/2016,Politicians,@LincolnChafee,Help RI #LifeSmarts team by watching their pre-national competition video. More views=more points for our team! https://t.co/bsXUJ1f47H +10/23/2015,Politicians,@LincolnChafee,Thank you Democrats especially in New Hampshire and Iowa! I enjoyed meeting you! I learned a lot! +10/23/2015,Politicians,@LincolnChafee,I look forward to speaking at DNC Women's Forum tomorrow morning. I'll address my future in the campaign there. #chafee2016 +10/22/2015,Politicians,@LincolnChafee,"Especially in Kashmir, unrest calls for reconciliation, not +inflammation. Will @narendramodi stand up for Muslims? +https://t.co/uMXnQKBN4Y" +10/22/2015,Politicians,@LincolnChafee,"Anti-refugee hate, rightwing reactionaries have festooned into +intolerable racial violence that threatens democracy. +https://t.co/DC0nQ4jLSe" +10/22/2015,Politicians,@LincolnChafee,"Peace treaty w/ N. Korea tricky proposal. Good in many ways, +difficult in others. But the first step is believing. +https://t.co/7ebRcvn4or" +10/21/2015,Politicians,@LincolnChafee,"Tragic violence in Israel & Palestine stems directly from +frustration with the perpetuity of conflict. Ppl act in desperation +for change." +10/21/2015,Politicians,@LincolnChafee,"Xi Jinping might have advice for @MBuhari as he bravely combats +systemic corruption in Nigeria, an integral fight. +https://t.co/usCpOA9T5H" +10/21/2015,Politicians,@LincolnChafee,"A culture of fear produces dead innocents everywhere, from +Baltimore to Beersheba. #BlackLivesMatter +https://t.co/v9vwZNOl7S #GetGrounded" +10/20/2015,Politicians,@LincolnChafee,"Sweden & Finland joining NATO may not be the best thing for world +security. A threatened Russia will act accordingly +https://t.co/aNOrTOlHl6" +10/20/2015,Politicians,@LincolnChafee,"The UNSC will discuss the rising unrest in Israel/Palestine, but +will there be courage to address the real issues? +https://t.co/ERCQ9tJIDt" +10/20/2015,Politicians,@LincolnChafee,"US drone policy: 90% ppl killed were unintended targets. What +better way to help our enemies recruit? @the_intercept +https://t.co/AiX2J1vZ4n" +10/20/2015,Politicians,@LincolnChafee,"Drone strikes 10x more likely to kill civilians than manned +aircraft. when you have no skin in the game. +https://t.co/mH1TuPUpkR #chafee2016" +10/19/2015,Politicians,@LincolnChafee,"EU countries can't agree on #refugee distribution so offer $3B to +Turkey. Turkey needs the help, and I'm for whatever works at this +point." +10/19/2015,Politicians,@LincolnChafee,"Smh @MLP_officiel shameful fear mongering hurts the nation, in +France and everywhere. FYI praying Muslims ≠ Nazis +https://t.co/jBrLHsMeBD" +10/19/2015,Politicians,@LincolnChafee,"In Kunduz airstrike, we knew the target was a hospital. How can we +hold others accountable when we don't ourselves? +http://t.co/wOA4WfMhsy" +10/18/2015,Politicians,@LincolnChafee,"Looking forward to the Mt Chocorua Area Dems Friendraiser today at the World Fellowship Center in Albany, NH #nhpolitics #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,Getting ready to talk with Wolf Blitzer on @CNN! http://t.co/QFM8L8AGp3 +10/14/2015,Politicians,@LincolnChafee,"To learn more about #ProsperitythroughPeace and to volunteer or donate to my campaign, please visit http://t.co/bq3HUGxUdP" +10/14/2015,Politicians,@LincolnChafee,"I raised the minimum wage three times as Governor. When it's +needed it's needed. #DemDebate #Chafee2016 #ProsperitythroughPeace" +10/14/2015,Politicians,@LincolnChafee,"No lines in the sand. In trying to assert strength we expose +weakness. #DemDebate #ProsperitythroughPeace #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,"Look at the @GOP primary farce, it's of utmost importance we +elect a Democrat to the White House. #DemDebate #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,".#ProsperitythroughPeace is really only way. Our eagle clutches both +arrows and an olive branch. Let's give the latter a try. #DemDebate" +10/14/2015,Politicians,@LincolnChafee,Politicians shouldn't promise what they can't deliver. #DemDebate #Chafee2016.com #ProsperitythroughPeace +10/14/2015,Politicians,@LincolnChafee,"Unemployment? Not on my watch. As Governor RI saw the biggest drop +in unemployment, second only to Nevada #DemDebate #Chafee2016" +10/14/2015,Politicians,@LincolnChafee,"I'm the only candidate standing with @POTUS on #TPP. Trade will +happen, let's write the rules well and improve our world.#DemDebate" +10/14/2015,Politicians,@LincolnChafee,"Only candidate to be a Mayor, U.S. Senator, and Governor. The most +experience, the highest ethical standards #DemDebate #Chafee2016" +10/13/2015,Politicians,@LincolnChafee,Looking forward to discussing the issues during the #CNNDebate tonight at 8:30 pm eastern time. #ProsperitythroughPeace #chafee 2016 +10/13/2015,Politicians,@LincolnChafee,RT @TreTre0: Everyone enjoys a good underdog story. Let's see what @MartinOMalley @LincolnChafee @JimWebbUSA bring to the #DemocraticDebate… +10/13/2015,Politicians,@LincolnChafee,RT @devintstewart: Policy integrity on TPP from @LincolnChafee https://t.co/k7W23BZEDI +10/13/2015,Politicians,@LincolnChafee,"Repubs too quickly condemn mental illness as the problem, what +about teaching our boys that violence is the answer? +http://t.co/fhuNiZT2Mu" +10/12/2015,Politicians,@LincolnChafee,"Yes! International leaders band together in Peru to address +corporate tax evasion. Exactly as it should be done +http://t.co/BXAfPT08bx" +10/12/2015,Politicians,@LincolnChafee,"Asking your people to die in another Intifada will not lead to +liberation Mr. Haniyeh. Try championing peace #Hunda +http://t.co/LZTJCESRe4" +10/11/2015,Politicians,@LincolnChafee,"Israel/Palestine: attacks by youth with no ties to armed groups +indicates not indoctrination, but deeper problem. +http://t.co/waEdJHEmC8" +10/11/2015,Politicians,@LincolnChafee,"Calling for peace and good will is necessary, but @narendramodi might also +want to condemn violence against Muslims +http://t.co/VdzG2MMX3N" +10/11/2015,Politicians,@LincolnChafee,We cannot be numb to drone strikes. They spread terror. I will end them. #GetGrounded #ProsperitythroughPeace http://t.co/Ko9DiGiYMy +10/10/2015,Politicians,@LincolnChafee,"Dangerous saber-rattling continues. Why do people think deepening +sectarian divides will ever solve anything? +http://t.co/n0K6DwPTwq" +10/10/2015,Politicians,@LincolnChafee,"Climate change is a NATIONAL SECURITY ISSUE. You'd think Repubs +would be all over it. @GOP +http://t.co/wXN8DNyxjk #GetGrounded #chafee2016" +10/09/2015,Politicians,@LincolnChafee,".#TPP isn't about containing China, it's about American leadership, +international order & our allies. @solis_msolis +http://t.co/cZeAO6dl5i" +10/09/2015,Politicians,@LincolnChafee,".@netanyahu's ban is good move to prevent escalation. As things +heat up, we need to cool down #hudna +http://t.co/dceWvnR1oj #chafee2016" +10/09/2015,Politicians,@LincolnChafee,Congrats @GovMaryFallin on suspending executions in OK. US should join the many nations to ban capital punishment. http://t.co/m09qY4eLHP +10/07/2015,Politicians,@LincolnChafee,"Mental health is public health, everywhere. Gaza is no exception. +Look out for the kids. Trauma leads to terror +http://t.co/YUJwUFvd3q" +10/07/2015,Politicians,@LincolnChafee,"A lot of shouting is going on about the TPP trade deal. Let's +actually read the document and measure its merits before demonizing it." +10/07/2015,Politicians,@LincolnChafee,What have we taught Saudis with our drone war? Wedding parties & civilians are NOT targets http://t.co/2YEkV4NNjZ #ProsperitythroughPeace +10/07/2015,Politicians,@LincolnChafee,"While I sometimes must sacrifice my grammar for the tweet, I'm glad +my supporters don't on Facebook! @singernews +http://t.co/iHjri3ZSd9" +10/07/2015,Politicians,@LincolnChafee,"Trust, cooperation starts with respect and a handshake. @POTUS @JZarif http://t.co/2uTorvlWKa #GetGrounded #Chafee2016" +10/06/2015,Politicians,@LincolnChafee,"Hope to see you at the meeting of the Cheshire County Dems tonight in Keene, NH. #Chafee2016 #ProsperitythroughPeace #NHpolitics" +10/06/2015,Politicians,@LincolnChafee,"Good piece by @ConStelz @BrookingsFP ""Why Europe needs America, a little"". We unequivocally need Europe too! +http://t.co/86R6CTwe70" +10/06/2015,Politicians,@LincolnChafee,"Looking forward to talking about my campaign w/ residents of RiverWoods today in Exeter, NH. #chafee2016 #ProsperitythroughPeace #nhpolitics" +10/06/2015,Politicians,@LincolnChafee,"We cannot accept such racism and apathy in our country. +#HisNameIsCayden and he reminds us for what we fight. +https://t.co/KhfesL8wVL" +10/06/2015,Politicians,@LincolnChafee,@yonimweiss against capital punishment +10/06/2015,Politicians,@LincolnChafee,RT @ChairmanBuckley: Great turnout at @SCDCNHDems fall event with @LincolnChafee #nhpolitics http://t.co/SC2Tip2w09 +10/05/2015,Politicians,@LincolnChafee,Chinese cap and trade great start. Where's the US plan to price carbon emissions? Global summit coming soon. http://t.co/MFLzT5qxm1 +10/05/2015,Politicians,@LincolnChafee,"At least @GOP didn't shut down the govt again, but kicking the can down the road isn't good governance http://t.co/3xngrU7IKn #GetGrounded" +10/05/2015,Politicians,@LincolnChafee,More than half of Americans know that US foreign policy bears some responsibility for the #refugeecrisis. Let's act http://t.co/UroBKtOu4R +10/05/2015,Politicians,@LincolnChafee,Unethical price spikes by some drug companies hurt people. Time for price controls?#GetGrounded #Chafee2016 http://t.co/UFTGahfhMq +10/04/2015,Politicians,@LincolnChafee,"It's a crisp fall day in Strafford County, NH! Hope to see you at the @SCDCNHDems Fall Dinner in Rochester! #nhpolitics #Chafee2016" +10/04/2015,Politicians,@LincolnChafee,"Our duty to protect refugees doesn't stop at the camp's welcome mat. Sexual abuse, exploitation are constant dangers http://t.co/DzU5en4tgW" +10/04/2015,Politicians,@LincolnChafee,"US bombs Afghan hospital. Too many similar stories. We need fresh ideas, new approach. #GetGrounded #Chafee2016 http://t.co/fnjGPpiAIA" +10/04/2015,Politicians,@LincolnChafee,"Winter is Coming, and #refugees are racing against a perilous clock. Humanity must act, no time for #GameOfThrones http://t.co/j2zCUI6btf" +10/03/2015,Politicians,@LincolnChafee,With China we have agreements and we have differences. Focusing on the former helps resolve the latter. http://t.co/lNFFKD9WEa #chafee2016 +10/03/2015,Politicians,@LincolnChafee,"ACA, #Obamacare is threatened now by some Democrats call for repeal of ""cadillac tax"". Not good. #chafee2016 http://t.co/sX1IKCneRC r=0" +10/03/2015,Politicians,@LincolnChafee,"Peace draws closer in Colombia, but intl. attention is required to keep the pressure on the players http://t.co/aein8oNl31 #GetGrounded" +10/02/2015,Politicians,@LincolnChafee,"The Marshall Islands know that climate change is an existential threat to humanity. @MinisterTdB stays fighting +http://t.co/O5iFABgUmd" +10/02/2015,Politicians,@LincolnChafee,"Rest in peace Doug Kendall, who bravely fought for a progressive Constitution and a bright future for America http://t.co/NrhsCDsueb" +10/02/2015,Politicians,@LincolnChafee,"Sheikh Tamim of Qatar does the wise thing, calls for dialogue between Iran and Arab states. Let's start talking. http://t.co/mK57K7UzXt" +10/01/2015,Politicians,@LincolnChafee,Both @POTUS and Putin are right on Syria: democracy cannot be imposed but also tyranny cannot be promoted https://t.co/bmLfT6oXS7 #chafee20… +10/01/2015,Politicians,@LincolnChafee,"RT @ForeignPolicyI: .@LincolnChafee-Regarding Assad, our experience toppling leaders has not been a good one. Cold War experience was to wa…" +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: .@LincolnChafee: It wasn't that long ago when we thought that we were on the verge of lasting peace between world power… +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: .@LincolnChafee: I would work to lift sanctions against Russia for its actions in Ukraine. #FPIForum +10/01/2015,Politicians,@LincolnChafee,RT @ForeignPolicyI: Next at the #FPIForum - Democratic Presidential candidate @LincolnChafee talks to @Adesnik. +10/01/2015,Politicians,@LincolnChafee,Looking forward to taking part in the Foreign Policy Institute's Annual Forum 2:15 pm today at the Newseum in DC. #ProsperitythroughPeace +10/01/2015,Politicians,@LincolnChafee,"I want to wish @NGRPresident @MBuhari and all of Nigeria happy Independence Day! Unity & Faith, Peace & Progress: words worth celebrating!" +10/01/2015,Politicians,@LincolnChafee,"We must strengthen the UN. More peacekeepers & resources can only be good, why stop at here? http://t.co/6U5kxb5ydT #GetGrounded #chafee2016" +09/30/2015,Politicians,@LincolnChafee,What have we taught the Saudis with our drone war? Wedding parties and civilians are NOT targets http://t.co/OePEOvYXCB #chafee2016 +09/30/2015,Politicians,@LincolnChafee,Hear more about my plan to create a new tax bracket for the wealthy on @fbncountdown with @LizClaman today at 3pm ET. #chafee2016 +09/30/2015,Politicians,@LincolnChafee,RT @LizClaman: Democratic Presidential candidate & fmr. Gov. of Rhode Island @LincolnChafee joins us 3pm ET today - tune in! http://t.co/XR… +09/30/2015,Politicians,@LincolnChafee,"Trust, cooperation starts with respect & a handshake.@POTUS @JZarif http://t.co/XlyTDQV1wG #GetGrounded #ProsperitythroughPeace #Chafee2016" +09/29/2015,Politicians,@LincolnChafee,"Mr. @Snowden-Fed court ruled you're right! I'm the only presidential candidate who has vowed to bring you home, charges dropped. #chafee2016" +09/29/2015,Politicians,@LincolnChafee,Something is wrong- we arm and train fighters who then join the other side. Why? That is the question. #GetGrounded #chafee2016 +09/27/2015,Politicians,@LincolnChafee,"By failing to strengthen and fix our intl. institutions, we retreat to a disastrous paradigm of unipolarity +http://t.co/9An8N8QBDw" +09/27/2015,Politicians,@LincolnChafee,"French crops die from WWI we continue to reap the seeds of war, ever sown deep. Why do we keep lusting for conflict? http://t.co/lvxCu0yb2U" +09/27/2015,Politicians,@LincolnChafee,Peace in Colombia w/ FARC looks promising. Accountability remains key. Fingers crossed. #ProsperitythroughPeace http://t.co/YyESCVvfYh +09/27/2015,Politicians,@LincolnChafee,ISIS recruits grow rapidly. We need to understand why people buy what #ISIS sells. #GetGrounded #chafee2016 #ProperitythroughPeace +09/26/2015,Politicians,@LincolnChafee,A great day at @HamptonDems Community Picnic! #chafee2016 #nhpolitics #prosperitythroughpeace http://t.co/C98waStQuW +09/26/2015,Politicians,@LincolnChafee,"Sam Nunn is right: talking and engagement, NOT silence is the key to progress w/ Russia. Good looks @politicalinsidr http://t.co/hhFEw2zGtV" +09/26/2015,Politicians,@LincolnChafee,"Hope to see you @HamptonDems Community Picnic today at noon at 39 Mill Rd, Hampton, NH. #chafee2016 #ProsperitythroughPeace #nhpolitics" +09/26/2015,Politicians,@LincolnChafee,Every nation in the world must reevaluate how its energy subsidies work against a sustainable future http://t.co/FWqYbUjhRq #GetGrounded +09/25/2015,Politicians,@LincolnChafee,".@SteveKingIA how can you say the refugees crisis is a calculated effort by ""Islam"" to invade non-Muslim countries? Fear>anger>hate>darkside" +09/25/2015,Politicians,@LincolnChafee,"“@ReutersWorld: Putin to meet Obama on September 28: Kremlin http://t.co/VAX144c7VK”. Let's start a healthy, honest dialogue. #chafee2016" +09/25/2015,Politicians,@LincolnChafee,"Burkina Faso political turmoil presents test for the nation, region, and world. Diplomacy is the only real solution. http://t.co/wAgHzr3EiE" +09/25/2015,Politicians,@LincolnChafee,With climate change comes investing change. Watch for water as a high value commodity. #GetGrounded #chafee2016 http://t.co/8C0AnyNbLk +09/25/2015,Politicians,@LincolnChafee,Thank you Mt Chocurua Democrats! #nhpolitics #prosperitythroughpeace #chafee2016 http://t.co/qgEiOS5NUb +09/24/2015,Politicians,@LincolnChafee,Both long overdue and very timely: @RepEBJ introduces H.R. 413 to honor victims of hate crimes & prejudice post 9/11 http://t.co/H9JNkRKNHx +09/24/2015,Politicians,@LincolnChafee,The Iraq War caused the refugee crisis and our European allies suffer from our mistakes. Fruits of #neoconkoolaid http://t.co/DiUDno4bsL +09/23/2015,Politicians,@LincolnChafee,Yemen continues to denigrate into worse humanitarian disaster. US should rally intl efforts for peace talks http://t.co/Ky6Rt4QWRK +09/23/2015,Politicians,@LincolnChafee,"If we want the world to listen to us, we need to listen to the world. Time to reflect on the #Cuba embargo @UN http://t.co/kM9QZQOkiV" +09/23/2015,Politicians,@LincolnChafee,At the #EU refugee summit today leaders must come together on more than quotas to address the millions still trying to escape. +09/22/2015,Politicians,@LincolnChafee,"Still, talking w/ Russians is first step. Good to see @POTUS doing it. Repubs would probably just launch missiles http://t.co/aV88qLaOlJ" +09/22/2015,Politicians,@LincolnChafee,How to address source of hate crimes? We must educate to embrace diversity and criticize a whitewashed history. http://t.co/C8fPOLlYji +09/22/2015,Politicians,@LincolnChafee,Russia should know that sustainable peace in Syria is impossible w/o reforming the Assad regime. http://t.co/i1JBrbCqUz #GetGrounded +09/22/2015,Politicians,@LincolnChafee,"RT @RitaCosby: Listen to our great show featuring @CardinalDolan, @DavidGregory, @RandPaul and @LincolnChafee – http://t.co/nOfAaJtLHY + +#po…" +09/22/2015,Politicians,@LincolnChafee,"Welcome Pope Francis! @Pontifex said in #Cuba, ""If you are different than me, why don't we talk?"" #GetGrounded #ProsperitythroughPeace" +09/21/2015,Politicians,@LincolnChafee,"Good to see intl. leadership & cooperation address situation in Burkina Faso. Exactly right, let's keep an eye on it http://t.co/ERS8bYjAWn" +09/21/2015,Politicians,@LincolnChafee,"Oman, on the Arabian Peninsula is emerging as a leader of peaceful efforts in the region. Responsible for release of US prisoners in Yemen." +09/21/2015,Politicians,@LincolnChafee,".@GOP You should already know this, but race baiting and fear mongering, immoral themselves, ultimately hurt you http://t.co/3j6Cl843tb" +09/21/2015,Politicians,@LincolnChafee,.@realBenCarson shames himself and the Constitution with Muslim president comment. Bigotry is incompatible with the values of this nation. +09/21/2015,Politicians,@LincolnChafee,"Brinkmanship in Syria w/Russia will kill more, prolong conflict. Let's come to our senses now and talk. @JyShapiro http://t.co/1RbooIuhFk" +09/21/2015,Politicians,@LincolnChafee,New docs show Bush/Cheney ignored 4th Amend. & Justice Dept on wiretapping. Probably still think they're right. http://t.co/qYCmqySl33 +09/20/2015,Politicians,@LincolnChafee,"Hmm, let's look at just some of the things the Republican candidates got wrong in the debate. http://t.co/0Xc0oydRtx #Chafee2016" +09/20/2015,Politicians,@LincolnChafee,"You can't say #Putin didn't warn us in speech in Munich in '07. The ""unipolar"" speech. #chafee2016 Prosperity through Peace." +09/20/2015,Politicians,@LincolnChafee,"Empowering disgraceful Islamaphobia at his rally may be @realDonaldTrump 's campaign strategy, but it's unequivocally shameful and wrong." +09/19/2015,Politicians,@LincolnChafee,Thank you NH Democrats! Prosperity through Peace! #chafee2016 #nhpolitics http://t.co/IBoqCZcaoa +09/19/2015,Politicians,@LincolnChafee,Governor O'Malley and Governor Chafee exchange pleasantries at the NH Democratic Convention. #chafee2016 #nhpolitics http://t.co/lNgrIQwYyH +09/19/2015,Politicians,@LincolnChafee,RT @cspanradio: 9:30amET LIVE: .@NHDems Convention w/@HillaryClinton @BernieSanders @LincolnChafee @MartinOMalley Lawrence Lessing http://t… +09/18/2015,Politicians,@LincolnChafee,Prejudicial fears poison our nation. @IStandwithAhmed you inspire us all to fight for compassion. #IStandWithAhmed http://t.co/CeCOzV7V8n +09/18/2015,Politicians,@LincolnChafee,"Humbled by diplomacy w/the South, N. Korea seeks to reaffirm fantasy stance of power and legitimacy w/ nukes http://t.co/fwlvgLt3Ac" +09/18/2015,Politicians,@LincolnChafee,I fear fear itself. The last time the @GOP was this scared of Muslims we invaded Iraq. Hawks must stop squawking http://t.co/pOVNm8wm1h +09/17/2015,Politicians,@LincolnChafee,"I'm all for fiscal responsibility, but Republicans are severely harming our govt's ability to make good decisions. http://t.co/4U9swHjWYf" +09/17/2015,Politicians,@LincolnChafee,"Mass incarceration is not ""tough on crime"", its tough on families; wasting money & poisoning society. #GetGrounded http://t.co/Im7fyhSzZq" +09/17/2015,Politicians,@LincolnChafee,The only solution to Syria and the refugee crisis is via diplomacy. Time to bring the players to the table. @npwcnn http://t.co/SspZ0MfAW7 +09/17/2015,Politicians,@LincolnChafee,"Wow, so much anti @Obama vitriol #GOPDebate. THEY forget the mess THEY handed him in '08- deficits, freefall economy, broken MIddle East." +09/17/2015,Politicians,@LincolnChafee,How can they be so indignant? They and @GOP leaders are responsible for class warfare & disparity in this country and beyond. #CNNDebate +09/17/2015,Politicians,@LincolnChafee,An hour in #cnndebate & they've started WWIII and bashed women. Next: beating on immigrants and more damage to the poor & Middle Class. +09/16/2015,Politicians,@LincolnChafee,.@GOP predicate American greatness on mostly violent posturing and offer no vision @Brookings_FP @will_mccants http://t.co/rP2muVfw3s +09/16/2015,Politicians,@LincolnChafee,.@Pontifex very right about the tip of the iceberg. We must reorient global order towards #ProsperitythroughPeace http://t.co/XY7XlPdtSZ +09/16/2015,Politicians,@LincolnChafee,Tea Party Repubs trying to kill Ex-Im Bank are killing good American jobs. Bank's been helping companies since 1934. http://t.co/huGWRaxi57 +09/16/2015,Politicians,@LincolnChafee,"Invading Iraq empowered ISIS, increasing violence & sectarian tensions in climate of poor governance #GetGrounded http://t.co/BTgcRaSllh" +09/16/2015,Politicians,@LincolnChafee,Thank you for a lively conversation @plaistowdems tonight in NH! #chafee2016 #nhpolitics Prosperity through Peace. http://t.co/P6LKXEBtKB +09/16/2015,Politicians,@LincolnChafee,RT @Geoz137: @LincolnChafee Glad to have seen you at @colbysawyer Collge in New Hampshire. +09/15/2015,Politicians,@LincolnChafee,.@steven_pifer at @Brookings_FP notes that Repubs are empty on addressing Russia. Tasty carrot > posturing stick. http://t.co/DerrY2CRB1 +09/15/2015,Politicians,@LincolnChafee,"At Colby-Sawyer College Town Hall Meeting in New London, NH http://t.co/PSi7sqy2p5" +09/15/2015,Politicians,@LincolnChafee,"Learn more about my campaign at a Town Hall Meeting today at 4 pm @colbysawyer in New London, NH #Chafee2016 #ProsperitythroughPeace" +09/15/2015,Politicians,@LincolnChafee,"A lack of transparency plus a paradigm of dire national security produces tragic results, in Egypt and everywhere http://t.co/qzeQcUwdMv" +09/15/2015,Politicians,@LincolnChafee,"RT @iowademocrats: We're excited to announce the speakers for the 2015 JJ Dinner: @LincolnChafee, @HillaryClinton, @MartinOMalley and @Bern…" +09/15/2015,Politicians,@LincolnChafee,RT @RichRubinoPOL: Is Lincoln Chafee the Heir Apparent to Ron Paul on Foreign Policy? http://t.co/ALYjkN9egD +09/15/2015,Politicians,@LincolnChafee,Putin coming to UN. So far he's rebuffed in meeting @POTUS. Why? Let's listen re: Syria and ISIS #GetGrounded http://t.co/OA2snYMPyB +09/14/2015,Politicians,@LincolnChafee,In New Hampshire today for the meeting of the @rcdcnh Rockingham Democrats tonight at 7PM in Exeter. #chafee2016 +09/14/2015,Politicians,@LincolnChafee,"Cheney foolishly against #irandeal. He was wrong about Iraq, he's wrong now. #Prosperity through Peace #chafee2016 http://t.co/VmCkfzQOds" +09/14/2015,Politicians,@LincolnChafee,Think the Middle East is complicated? Some Iranians say US is secretly protecting ISIS. #GetGrounded #chafee2016 http://t.co/38WmZQ6aQe +09/13/2015,Politicians,@LincolnChafee,"Important time in our history. As nations evolve we should avoid ""preachments of the west…laced with hypocrisy."" http://t.co/QeugJ0xjfy" +09/12/2015,Politicians,@LincolnChafee,"In Haverhill, MA for the 350th Anniversary Celebration at Riverside Park." +09/12/2015,Politicians,@LincolnChafee,"Looking forward to meeting you this afternoon @rcdcnh booth during the Old Home Days Celebration in Sandown, NH #chafee2016 #nhpolitics" +09/12/2015,Politicians,@LincolnChafee,"See you at the Chester, NH Old Town Days Fair this afternoon. #chafee2016" +09/12/2015,Politicians,@LincolnChafee,Oklahoma death row case shows flaws of capital punishment. Past due to join civilized nations and end it.#GetGrounded http://t.co/ihujwJUBbX +09/11/2015,Politicians,@LincolnChafee,RT @WMUR9_Politics: WATCH LIVE: Conversation with the Candidate w/ @LincolnChafee - http://t.co/7G4wW2NMa8 #wmur2016 #fitn #nhpolitics http… +09/11/2015,Politicians,@LincolnChafee,RT @WMUR9: WATCH LIVE: Conversation with the Candidate w/ @LincolnChafee - http://t.co/JRsbmK1Dx6 #wmur2016 #fitn #nhpolitics http://t.co/C… +09/11/2015,Politicians,@LincolnChafee,"To learn more about my campaign, watch WMUR-TV's Conversation with the Candidate tonight at 7pm ET or view it on http://t.co/7LjlIP7y5O" +09/11/2015,Politicians,@LincolnChafee,Baltimore settles $6.4 million with Freddie Gray family. High costs all around from irresponsibility and injustice. http://t.co/dADhYjLatV +09/10/2015,Politicians,@LincolnChafee,Thank you @CarrollDems for your warm reception tonight in Ossipee! #chafee2016. #nhpolitics http://t.co/Fx8mwRL7xu +09/10/2015,Politicians,@LincolnChafee,"Looking forward to meeting @CarrollDems tonight in Ossipee, NH #NHpolitics #Chafee2016" +09/10/2015,Politicians,@LincolnChafee,".@POTUS must lead the charge to strengthen intl. institutions & address world humanitarian crises, and end Syrian war http://t.co/VWzT1Alt34" +09/10/2015,Politicians,@LincolnChafee,Meeting with the Keene Sentinel Editorial Board today in NH. #chafee2016 #nhpolitics http://t.co/sEBnBICqBO +09/10/2015,Politicians,@LincolnChafee,"Solving the refugee crisis: treating the source is more than ending conflict, it's addressing climate change http://t.co/C89coWBEKr" +09/10/2015,Politicians,@LincolnChafee,I support raising min. wage but we need more debate on a tax code that better helps low wage workers. #GetGrounded http://t.co/dSzPC7oDKp +09/09/2015,Politicians,@LincolnChafee,"Ready to meet Democrats in Sandown, NH #chafee2016 #nhpolitics http://t.co/SBsjzpksNz" +09/09/2015,Politicians,@LincolnChafee,Hear my plan for Prosperity through Peace at @rcdcnh Presidential Candidate Forum at Sandown Town Hall 7pm tonight. #nhpolitics #chafee2016 +09/09/2015,Politicians,@LincolnChafee,Republicans try once again to undermine American leadership internationally & endanger the whole world. #Chafee2016 http://t.co/0XyxYO1yyb +09/09/2015,Politicians,@LincolnChafee,I approve. Merkel calls for mandatory but fair quotas for refugee resettlement. This burden rests with us all. http://t.co/zy1sbNR8rc +09/09/2015,Politicians,@LincolnChafee,Don't like widening gulf with Russia re: Syrian war. @Potus and Putin should talk. #GetGrounded #chafee2016 http://t.co/qMqSBPxrW4 +09/08/2015,Politicians,@LincolnChafee,"Colin Powell speaks sense about #irandeal. Verification, not trust. Reagan said ""trust but verify"" w/ Soviet Union. http://t.co/FV0DQ7R1Vi" +09/08/2015,Politicians,@LincolnChafee,“@Davos: The case for fusion energy http://t.co/Z2q3MxF8Jx http://t.co/CbtxGZaZey”We must explore all energy to save world for our children +09/08/2015,Politicians,@LincolnChafee,"We should spend our remaining carbon budget on transitioning to a clean economy, not continuing our wasteful one. http://t.co/m1k3hOLyD7" +09/08/2015,Politicians,@LincolnChafee,Now Pakistan and Brits are killing people with drones. What will this genie do out of the bottle?#GetGrounded http://t.co/br8avy1IxU +09/07/2015,Politicians,@LincolnChafee,Looking forward to speaking with @NHDems this afternoon at the Annual Labor Day BBQ in Amherst. #Chafee2016 #nhpolitics +09/07/2015,Politicians,@LincolnChafee,Thank you NH @AFLCIO for all of the good work you do today and every day! #chafee2016 #nhpolitics http://t.co/YYhfkmm9KT +09/07/2015,Politicians,@LincolnChafee,Honoring American workers on this Labor Day 2015 and celebrating with NH@AFL-CIO at annual breakfast in Manchester. #GetGrounded #chafee2016 +09/06/2015,Politicians,@LincolnChafee,Hope @JohnKerry & Russians can get on the same page w/Syria. Need their help to end that war. #GetGrounded#chafee2016 http://t.co/enpjNRnfdR +09/05/2015,Politicians,@LincolnChafee,Iraq War started chain of events leading to refugee crisis. Will Cheney neocons apologize for their tragic mistake? #GetGrounded#chafee2016 +09/04/2015,Politicians,@LincolnChafee,Playing blame game does not produce results. Solution to the refugee crisis requires collective action & cooperation. http://t.co/IQAqZqmVqB +09/04/2015,Politicians,@LincolnChafee,"How can we improve government transparency and accountability, with low cost? Yelp might help. #chafee2016 http://t.co/cCQ5QXkWIW" +09/04/2015,Politicians,@LincolnChafee,"As Russia grapples with energy independence and economic woes, the success of its future relies on peace, diplomacy http://t.co/q2wc1LXDiP" +09/04/2015,Politicians,@LincolnChafee,Years ago govmt officials stopped black students from entering white schools. Now they stop gay people from marriage.#GetGrounded#chafee2016 +09/03/2015,Politicians,@LincolnChafee,Gulf Countries should seize diplomatic opportunity presented by#irandeal; proxy wars can't be alternative.#chafee2016 http://t.co/SSomChzUPP +09/03/2015,Politicians,@LincolnChafee,"If we truly want to prevent radicalization to violence, we need to stop yelling every time. No more #neoconkoolaid http://t.co/q1N6r5a03F" +09/03/2015,Politicians,@LincolnChafee,"UN says Mid East wars costing a generation of children their schooling. Chaos, heartbreak & Cheney won't apologize. http://t.co/P2qag25yyg" +09/02/2015,Politicians,@LincolnChafee,"Turkey: jailing any journalists, not just Americans, erodes democratic legitimacy & incites voiceless to violence. http://t.co/hIektQkx1L" +09/02/2015,Politicians,@LincolnChafee,"Fruits of engagement will soon bloom w/#Cuba, & their youth will be better equipped to contribute to world economy http://t.co/6ZS9UEPwyx" +09/02/2015,Politicians,@LincolnChafee,RT @WMUR9: .@LincolnChafee joins @JoshMcElveen for Conversation with the Candidate to air Sept. 11 #nhpolitics #fitn #wmur2016 http://t.co/… +09/02/2015,Politicians,@LincolnChafee,RT @WMUR9_Politics: .@LincolnChafee joins @JoshMcElveen for Conversation with the Candidate to air Sept. 11 #nhpolitics #fitn #wmur2016 htt… +09/02/2015,Politicians,@LincolnChafee,In Manchester taping A Conversation with the Candidate to air Sept.11 at 7pm ET on WMUR-TV & http://t.co/7LjlIP7y5O http://t.co/gOzBXpFAoR +09/02/2015,Politicians,@LincolnChafee,@Pontifex stance re: Holy Year of Mercy emphasizes the compassion and empathy integral in addressing women's issues http://t.co/Lq7LHuNnuR +09/02/2015,Politicians,@LincolnChafee,The @GOP attack on #PlannedParenthood funding is an assault on poor people. Again. @PPFA #GetGrounded #chafee2016 http://t.co/OIdxtzlCFb +09/01/2015,Politicians,@LincolnChafee,"Racial discrimination in civic participation shames our democracy, be it voting or serving on juries. Time to act. http://t.co/7i9smw3bob" +06/25/2018,Politicians,@JimWebbUSA,Some insight into cotton-picking and my heritage: My Cotton-Pickin Mama https://t.co/QOqt4L7t1o +11/22/2017,Politicians,@JimWebbUSA,RT @POLITICOPro: Former Democratic senator @JimWebbUSA tapped to lead @DeptVetAffairs education panel. More from @mstratford: https://t.co/… +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""I'm comfortable with my vote. My vote is private to me...I did not endorse Hillary Clinton."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: Jim Webb on Trump: ""This is an attempt to pull different types of Republicans into the system"" to payback the voters who…" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: ""They're looking toward 2018 and they don't have a message."" - @JimWebbUSA on the Democratic party. #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""The Democratic party...has moved very far to the left."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA: ""The message that has been shaped by the Democratic party has been based on identity politics."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA to the Democrats: ""You've lost white working people. You've lost flyover land."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: .@JimWebbUSA:""There is an aristocracy that pervades American politics."" #MTP" +02/12/2017,Politicians,@JimWebbUSA,"RT @MeetThePress: This morning on #MTP: @SenSanders, @JimWebbUSA, @greta, @PatMcCroryNC, @Eugene_Robinson & @KattyKayBBC" +01/20/2017,Politicians,@JimWebbUSA,Trump’s electoral base & genuine status as a political outsider positions him to bring two much-needed adjustments: https://t.co/wsUTWxbEh1 +12/20/2016,Politicians,@JimWebbUSA,Bill Clinton reminds media that he won by a “landslide” in electoral college. Let’s remember he won only 43 percent of the popular vote. +12/15/2016,Politicians,@JimWebbUSA,https://t.co/B65D6UdrV9 via @12WCV & @IJRopinion +12/02/2016,Politicians,@JimWebbUSA,"RT @FDRLST: Jim Webb Addresses America's Elites, Trump, And Foreign Policy https://t.co/BWh8ygswfy" +04/27/2016,Politicians,@JimWebbUSA,The United States must step up to this challenge. The future stability of East Asia depends on it. https://t.co/TtGXw9kk8H +04/25/2016,Politicians,@JimWebbUSA,We can celebrate Harriet Tubman without disparaging Andrew Jackson https://t.co/Fiio3K7cwx #WebbNation https://t.co/gee3ERkET0 +04/25/2016,Politicians,@JimWebbUSA,Was Old Hickory a Monster? https://t.co/Fiio3K7cwx +04/25/2016,Politicians,@JimWebbUSA,"Examining the recent debate about President Andrew Jackson, Jim Webb wrote a piece for Monday's @washingtonpost. We'll share it in the a.m." +03/09/2016,Politicians,@JimWebbUSA,"America’s former CIA chief: ‘If we don’t handle China well, it will be catastrophic’ +https://t.co/8zEMVaEhqI" +03/09/2016,Politicians,@JimWebbUSA,"RT @WebbNation2016: Congratulations to @JimWebbUSA. +Named of the 100 most influential on veterans issues. + +https://t.co/s9DFUfHzyo" +03/06/2016,Politicians,@JimWebbUSA,RIP Nancy Reagan and Pat Conroy. Many fond memories with the Gipper & the Great Santini. +03/06/2016,Politicians,@JimWebbUSA,"Glad @TulsiGabbard spoke up: ""A lot of people warned me against doing what I did...” https://t.co/7ujejsLEhQ" +03/05/2016,Politicians,@JimWebbUSA,"""I will never change these views in order to adapt to a party platform as a way to get nominated for the presidency. "" -Jim 10/20/15" +03/05/2016,Politicians,@JimWebbUSA,The Republican Party Is Shattering by @peggynoonannyc https://t.co/UUg1eSoW1x via @WSJ +03/04/2016,Politicians,@JimWebbUSA,RT @WebbNation2016: Let's correct the record. Too many false headlines. Statement from Senator Webb's account: https://t.co/412GpugEMR +03/04/2016,Politicians,@JimWebbUSA,"RT @MelissaMelimac: @mandosally @politico Media headlines false. He said he would not vote Clinton, but doesn't support any candidate at th…" +03/04/2016,Politicians,@JimWebbUSA,"Sen Jim Webb said he would not vote for Mrs. Clinton, but he does not support any candidate at this point. https://t.co/6ILsBkQie1" +03/04/2016,Politicians,@JimWebbUSA,Senator Webb is on deck on @Morning_Joe on #MSNBC right now. +03/04/2016,Politicians,@JimWebbUSA,RT @Morning_Joe: Coming up... @AriFleischer @JimWebbUSA @chucktodd #morningjoe https://t.co/QWVZjUULT1 +03/03/2016,Politicians,@JimWebbUSA,Slated to appear on @MSNBC's @Morning_Joe tomorrow (Friday) morning at around 7:40 ET. #WebbNation https://t.co/aRBADDSCN7 +02/20/2016,Politicians,@JimWebbUSA,"RT @WebbNation2016: World Day of #SocialJustice +@JimWebbUSA - 1st American journalist to report on Japanese prisons. + +https://t.co/9ddEkqVG…" +02/18/2016,Politicians,@JimWebbUSA,The White House must send a very clear message to China: https://t.co/anNoa6KNK8 +02/13/2016,Politicians,@JimWebbUSA,My condolences to Justice Scalia's family on this sad and unfortunate day. +02/12/2016,Politicians,@JimWebbUSA,A statement from Jim Webb https://t.co/l83qdlBW9f #WebbNation +02/08/2016,Politicians,@JimWebbUSA,Jim Webb will address the World Affairs Council in Dallas Thursday & the Dallas Morning News Editorial Board Friday. https://t.co/c3Q1i58WBv +02/03/2016,Politicians,@JimWebbUSA,China's claim of “indisputable sovereignty” in South China Sea must be vigorously disputed by the US. -Jim https://t.co/lYZT9vbcM6 +01/30/2016,Politicians,@JimWebbUSA,"Jim Webb to address the World Affairs Council of Dallas/Fort Worth, Texas, Feb. 11 https://t.co/mGylBT8W3G @dfwworld https://t.co/GfWnONxitq" +01/19/2016,Politicians,@JimWebbUSA,"Rest easy, Glenn Frey. Peaceful, Easy Feeling. You made my world a far richer place." +01/18/2016,Politicians,@JimWebbUSA,RT @WebbNation2016: #WebbNation #RunJimRun We need a leader who puts country before party. https://t.co/38ZiTfSLmn +01/15/2016,Politicians,@JimWebbUSA,"@rtlehr Sen. Webb is actively engaging w/ many stakeholders every day, examining every obstacle he'd need to overcome in an Independent bid." +01/14/2016,Politicians,@JimWebbUSA,WashPost: The Presidential Debate Commission is readying for a serious 3rd party candidate https://t.co/8Ckoa5gZ9L https://t.co/NLXBKiGb0j +01/13/2016,Politicians,@JimWebbUSA,"If there’s one thing nearly all Americans share, it’s a disgust for our broken two-party system. https://t.co/PuWMzmDqap" +01/13/2016,Politicians,@JimWebbUSA,"#SOTU / #DemDebate +#WebbNation https://t.co/NZB8uLQ3nJ" +01/12/2016,Politicians,@JimWebbUSA,"2007: Sen Webb gave official response to State of the Union. Is what he said still relevant? #SOTU #WebbNation +https://t.co/IvXSEthxjn" +01/11/2016,Politicians,@JimWebbUSA,U.S. must emphasize determination to reject China's claims so to maintain stability in one of most vital regions. https://t.co/ooOiHBA2wz +01/08/2016,Politicians,@JimWebbUSA,RT @SalenaZitoTrib: .@JimWebbUSA moves closer to independent run nets finance chair organizes ballot strategy https://t.co/qQRgNPVOcV http… +01/08/2016,Politicians,@JimWebbUSA,RT @UniPolitica: .@JimWebbUSA is considering a possible independent bid for the presidency after dropping from the Democratic race https://… +01/08/2016,Politicians,@JimWebbUSA,"RT @BillKristol: Re @JimWebbUSA considering independent presidential run, here's @weeklystandard edit from three months ago: https://t.co/x…" +01/07/2016,Politicians,@JimWebbUSA,Frm Draft Biden Finance Dir leads fundraising for Jim Webb’s potential independent candidacy https://t.co/igk5LQOBFx https://t.co/tkxctcyOU4 +01/01/2016,Politicians,@JimWebbUSA,RT @MelissaMelimac: @JimWebbUSA #WebbNation Let's make #2016 the year of the #Independent #InWithJim +12/31/2015,Politicians,@JimWebbUSA,Yet again illuminating the reality that our tax system unfairly favors accumulated wealth. https://t.co/BHVqxMWsCy https://t.co/z10zvjG7aS +12/30/2015,Politicians,@JimWebbUSA,"RT @davemontoya: Let's go @JimWebbUSA! America needs a voice, give us a voice in this election. #webbnation #independentnation #2016 https…" +12/29/2015,Politicians,@JimWebbUSA,"RT @davemontoya: It's time, @JimWebbUSA give the American people an opportunity to know you. Run. We're hungry for an #Independent https://…" +12/28/2015,Politicians,@JimWebbUSA,"RT @timkni: If the election comes down to Clinton vs. Trump, I will vote for @JimWebbUSA whether he is on the ballot or not. https://t.co/…" +12/28/2015,Politicians,@JimWebbUSA,"RT @davemontoya: I'm ready @JimWebbUSA. America needs a new voice, an #Independent voice in the corridors of power. #WEBBNATION #2016 https…" +12/28/2015,Politicians,@JimWebbUSA,RT @Gamgra: @JimWebbUSA Jim Webb was the only Democrat I'd ever vote for - and if matched up against many Repubs I'd still vote for him. #W… +12/27/2015,Politicians,@JimWebbUSA,Video: Webb blasts Hillary Clinton for ‘inept leadership’ on Libya https://t.co/caKQnADUUT #WebbNation +12/27/2015,Politicians,@JimWebbUSA,RT @SalenaZitoTrib: If @JimWebbUSA runs as an independent then we will finally have a true independent candidate & one hell of a race. http… +12/26/2015,Politicians,@JimWebbUSA,"RT @edpolicy: Must-read article examines vicious cycle endured by South's rural poor -""A grim bargain"": https://t.co/bxicQQtovN https://t.c…" +12/26/2015,Politicians,@JimWebbUSA,Hillary Clinton’s failed vision in Libya & the Arab Spring are foreign policy leadership at its worst. https://t.co/NC80rbKLfP +12/26/2015,Politicians,@JimWebbUSA,RT @LAMBDF: #WEBBNATION @JIMWEBBUSA Websites and Social Media (Official and Unofficial) https://t.co/0j6BAmYZ7A via @wordpressdotcom +12/24/2015,Politicians,@JimWebbUSA,Obama's comments show how out of touch this administration & the Democratic Party have become w/ working men & women https://t.co/gopcKhDlhn +12/24/2015,Politicians,@JimWebbUSA,Obama has neglected the plight of working Americans. No wonder Democrats got trounced in the last two midterms. https://t.co/gopcKhDlhn +12/23/2015,Politicians,@JimWebbUSA,#WebbNation going strong https://t.co/I9oUzEzaMe +12/22/2015,Politicians,@JimWebbUSA,Our hearts are heavy as we mourn & honor the six U.S. service members who were killed in Afghanistan Monday. +12/22/2015,Politicians,@JimWebbUSA,We are a country founded not by conquest but by the guarantee of freedom. https://t.co/ifo23gJFo7 || #WebbNation +12/20/2015,Politicians,@JimWebbUSA,"Jim Webb​ on call of duty. #WebbNation +https://t.co/ZJJarqzGCQ" +12/19/2015,Politicians,@JimWebbUSA,@David5Fernandez @dknott409 Sen. Webb is no longer seeking the nomination. He's seriously considering an Independent bid for president. +12/18/2015,Politicians,@JimWebbUSA,Good for Bernie. The DNC is nothing more than an arm for the Clinton campaign. https://t.co/nI0Ua2BPwE +12/18/2015,Politicians,@JimWebbUSA,RallyPoint: Jim Webb's Favorite Hand Gun? https://t.co/G4uBjvqHfa via @RallyPoint +12/18/2015,Politicians,@JimWebbUSA,RT @tmills43: https://t.co/ekMfZ1Czge Who was leading on drug policy reform? Criminal Justice reform? @JimWebbUSA Media ignored Jim's vi… +12/18/2015,Politicians,@JimWebbUSA,@guitarplayer232 @1_LovelyBitch @BernieSanders Senator Webb is still a candidate for president. He isn't seeking the Democrat nomination. +12/16/2015,Politicians,@JimWebbUSA,"#WebbNation +https://t.co/RtPImgXaUr https://t.co/Exxv4ffMvC" +12/16/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: NBC/WSJ Poll: 70% believe US is headed in wrong direction. Want a different kind of leadership approach than Obama #Elec… +12/14/2015,Politicians,@JimWebbUSA,@wolfangagua Senator Webb has supported nuclear energy. +12/14/2015,Politicians,@JimWebbUSA,"President doesnt have power to commit US to ""legally binding” agreement. Wrong on Iran & TPP https://t.co/XU76svY48S https://t.co/AHBFW7NyI6" +12/13/2015,Politicians,@JimWebbUSA,@CapeCodGunny Still a candidate. Not seeking a party nomination. Looking at every challenge in considering an independent bid. +12/13/2015,Politicians,@JimWebbUSA,"An introduction to #WebbNation +https://t.co/HO6VXguaiX" +12/13/2015,Politicians,@JimWebbUSA,RT @AleyMags: Come on @JimWebbUSA. We need someone to stop these wars of hate. I can't think of anyone better to fight for peace. +12/12/2015,Politicians,@JimWebbUSA,"@parenthetical Sen Webb still a candidate for POTUS. He's not running for a nomination, but he's still in it, looking @ an Independent bid." +12/11/2015,Politicians,@JimWebbUSA,"RT @tmills43: https://t.co/U6CFJiPGNi ""Take care of your people."" This statement is the epitome of @JimWebbUSA 's lifetime of work." +12/11/2015,Politicians,@JimWebbUSA,"RT @PTWebb1122: As I recall, @JimWebbUSA ONLY participant 1st Dem debate to mention cybersecurity as national security priority. https://t.…" +12/11/2015,Politicians,@JimWebbUSA,".@latimes reports #MiddleClass families, ""pillar of the American dream"", no longer majority https://t.co/apxwhzomae https://t.co/5ZbzfjN435" +12/10/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: The middle class now below 50%. People are struggling. We need @JimWebbUSA for President. #Election2016 https://t.co/aEM… +12/10/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: If we are at war, need a commander in chief. +Define US interests +Develop strategy +Build team +Implement +@JimWebbUSA + https…" +12/09/2015,Politicians,@JimWebbUSA,"RT @Gammalad: @JimWebbUSA The more I see the mess that is this election, the more I lean to lending my support to you." +12/09/2015,Politicians,@JimWebbUSA,"#WebbNation supporters are strong on Twitter, Facebook & in writing to newspapers in support of Webb for President. https://t.co/gl0o3hOx1E" +12/09/2015,Politicians,@JimWebbUSA,RT @endmoronism: @ForgottenProf @JimWebbUSA Amen! Probably the one candidate with the best prepared background to be President. #PureLeader… +12/09/2015,Politicians,@JimWebbUSA,"RT @osok762: @JimWebbUSA with the drums of war beating, the next president should be a veteran. Wow that pretty much eliminates almost ever…" +12/09/2015,Politicians,@JimWebbUSA,"Your support is deeply appreciated! https://t.co/RtPImgXaUr +#WebbNation https://t.co/NRysL4lVy2" +12/09/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: Wanted: exp public servant w foreign policy & govt exp. Mil serv pref/not reqd. +Integrity a must. +House & plane provided. +…" +12/09/2015,Politicians,@JimWebbUSA,"RT @ForgottenProf: @JimWebbUSA I hope your ready make #Independent run, the #USA might need a viable #Alternative #USA is on the edge of th…" +12/08/2015,Politicians,@JimWebbUSA,An ideological divide | Warwick Beacon #WebbNation https://t.co/cBuCfVgFAa +12/08/2015,Politicians,@JimWebbUSA,RT @jesselaymen: @JimWebbUSA So far you are the only candidate reaching out to all Americans and not just certain groups of Americans. +12/08/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: Neither party has offered a serious, trustworthy candidate w/foreign policy, security experience. + +Run @JimWebbUSA Run +@Dr…" +12/08/2015,Politicians,@JimWebbUSA,"RT @Semper_Fi_79: If DNC & RNC hopefuls sound like unwanted extremes, why not take a look @JimWebbUSA who understands the intricacies *real…" +12/08/2015,Politicians,@JimWebbUSA,RT @benscottwheeler: .@JimWebbUSA really enjoyed your foreign policy talk at @CFR_org it's a shame most politicians don't have as nuanced a… +12/07/2015,Politicians,@JimWebbUSA,@JustABonobo Senator Webb is still running for president but is no longer seeking a party nomination. He is considering an Independent bid. +12/07/2015,Politicians,@JimWebbUSA,"""A date which will live in infamy"" +#PearlHarbor attacked December 7, 1941 +Over 2,000 Americans killed. +#NeverForget https://t.co/M2JVY9JRdY" +12/07/2015,Politicians,@JimWebbUSA,Agree w/@David_Gergen. Not looking for a father in chief. Looking for a commander in chief. #ObamaSpeech +12/06/2015,Politicians,@JimWebbUSA,"RT @tmills43: With the national security questions we currently face, https://t.co/nTogLXPTVQ is a MUST READ @JimWebbUSA on point, as usua…" +12/05/2015,Politicians,@JimWebbUSA,"RT @amberpages_g: @TBro_6and12 @JimWebbUSA Gate's Op-Ed describes, but does not name Jim Webb. I don't know who else is running that it des…" +12/05/2015,Politicians,@JimWebbUSA,"RT @_TheRevelator: @Communism_Kills IMO, @JimWebbUSA has the most logical, level-headed, non-partisan views of any candidate out there. He'…" +12/05/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: “@JimWebbUSA: Op-ed: The kind of president we need https://t.co/cpTE3vUtUp” +Wise words from Bob Gates. A great public serv…" +12/05/2015,Politicians,@JimWebbUSA,"RT @Communism_Kills: Hey, @JimWebbUSA, as a Republican voter, it looks like I have more in common with you than the front runner. https://t…" +12/04/2015,Politicians,@JimWebbUSA,Op-ed: The kind of president we need https://t.co/o7qHRR2qPK +12/04/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: The kind of president we need https://t.co/OWq0KyFwQm @JimWebbUSA #WebbNation #RunJimRun +12/04/2015,Politicians,@JimWebbUSA,RT @tmills43: https://t.co/dNjBBBF4g1 @JimWebbUSA using some good humor with serious policy proposals. https://t.co/irBZMk01dX. Donate w… +12/04/2015,Politicians,@JimWebbUSA,RT @BlueDogPatriot: Vote for @JimWebbUSA #BlueDogDemocrat #RestoreAmerica #Veterans https://t.co/FC5uibbL1y +12/03/2015,Politicians,@JimWebbUSA,"I warned about strategic blunder of so-called Arab Spring, particularly military intervention in Libya. Predictably https://t.co/fFAYlseAjo" +12/01/2015,Politicians,@JimWebbUSA,I warned in ’09 Obama can’t commit U.S. to “legally binding” agreement on climate change w/o Congress's consent. https://t.co/KH2GGVWfaT +12/01/2015,Politicians,@JimWebbUSA,How a Jim Webb independent presidential bid could actually matter (hint: Virginia) https://t.co/NXHPvNXXXx #WebbNation +11/30/2015,Politicians,@JimWebbUSA,"""There is nothing wrong every once in a while with saying the parties are not responding to a rising sentiment..."" https://t.co/0hxtBHX3AY" +11/29/2015,Politicians,@JimWebbUSA,"Treat Drugs Like Cigarettes -- Not As A Crime #WebbNation +https://t.co/xclqcuckju" +11/28/2015,Politicians,@JimWebbUSA,"""We the People"" #WebbNation +https://t.co/7XwPGt9scc" +11/27/2015,Politicians,@JimWebbUSA,"All about Jim Webb. #WebbNation +https://t.co/jwW7vA7KvP" +11/26/2015,Politicians,@JimWebbUSA,"Happy Thanksgiving, #WebbNation. https://t.co/PQN68ROhzy" +11/26/2015,Politicians,@JimWebbUSA,"RT @DraftWebb2016: On behalf of all of us at Draft Webb 2016, we hope that everyone has a very Happy Thanksgiving! https://t.co/HsU12yCNae" +11/25/2015,Politicians,@JimWebbUSA,"RT @hunter_ena: @JimWebbUSA @colbertlateshow I saw that and #TedKoppel said, what I have been saying all along, we need #JimWebb2016" +11/25/2015,Politicians,@JimWebbUSA,"Ted Koppel was on @colbertlateshow this week, discussing the vulnerability of our nation's power grids. https://t.co/ZAzwR4ISQx" +11/25/2015,Politicians,@JimWebbUSA,"RT @Semper_Fi_79: Our country is more divided than ever, do we really need partisan politics as usual? Or do we need someone to #uniteUS? @…" +11/24/2015,Politicians,@JimWebbUSA,RT @averageohvoter: THUNDERCLAP!!! - #RUNJIMRUN https://t.co/xZbbdqrkYs +11/24/2015,Politicians,@JimWebbUSA,"#WebbNation supporters have a ""Thunderclap"" to urge an Independent presidency run. Click through to lend a tweet: https://t.co/6d9OwYO8YS" +11/24/2015,Politicians,@JimWebbUSA,RT @retlt592: @JimWebbUSA @rkuttner PLEASE RUN! +11/24/2015,Politicians,@JimWebbUSA,RT @Scott96735321: @JimWebbUSA We NEED Jim Webb. +11/24/2015,Politicians,@JimWebbUSA,The Quiet Desperation of America’s Working People https://t.co/3AEWkV0Z7w by @rkuttner https://t.co/4lnHTvzloU +11/23/2015,Politicians,@JimWebbUSA,RT @DraftWebb2016: Help us get @JimWebbUSA to run as an independent for President in 2016 #WebbNation #politics https://t.co/H1xrqcTLbt +11/22/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: I just supported Ask Jim Webb to run as an (I) on @ThunderclapIt // @draftjimwebb2 https://t.co/NSsCrxt6eC @JImWebbUSA … +11/22/2015,Politicians,@JimWebbUSA,"RT @Wildstar1904: @UlsterUSA @bobbyw24 @Press_Dan @JimWebbUSA wld bring honor, integrity, & leadership to the WH & restore the balance of f…" +11/22/2015,Politicians,@JimWebbUSA,@TimbrookPhD @bobbyw24 Senator Webb has written about why: https://t.co/NVV39v8tE1 +11/22/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: @IsabelleAliciaa @JimWebbUSA Help us get a Thunderclap for Jim! https://t.co/lPZpTOD6bb +11/22/2015,Politicians,@JimWebbUSA,"Thank you for your support! #grateful +https://t.co/e5YzAbh58T https://t.co/yXPRLjWzbu" +11/21/2015,Politicians,@JimWebbUSA,#WebbNation needs your assistance in getting a #ThunderClap going. #Independent https://t.co/PaeYzdq0OY +11/20/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: @JimWebbUSA #webbnation https://t.co/lPZpTOD6bb +11/20/2015,Politicians,@JimWebbUSA,RT @BradWilliamsBDM: @JimWebbUSA We need someone who can keep his head when those about him are losing (or selling) theirs. +11/20/2015,Politicians,@JimWebbUSA,RT @ColoradoTD: @JimWebbUSA Captain the qualities you exhibited as a Marine combat officer are the qualities we need in the leader of the f… +11/20/2015,Politicians,@JimWebbUSA,@ScottCLocke @pbralick Sen. Webb is running for president but not in the Democratic Party. He is exploring an independent bid. +11/20/2015,Politicians,@JimWebbUSA,RT @pbralick: @JimWebbUSA you have best credentials and background to keep USA safe. Hope you run #politics +11/20/2015,Politicians,@JimWebbUSA,"@WakeUp2Politics @darkenator Sen. Webb left the race for Democrat nomination, but he's still a candidate for president, considering options." +11/20/2015,Politicians,@JimWebbUSA,@jesselaymen Very sorry for your loss and grateful for your uncle's service. Thank you for the message. +11/20/2015,Politicians,@JimWebbUSA,"https://t.co/RtPImgXaUr +#WebbNation https://t.co/snEHCJBasU" +11/20/2015,Politicians,@JimWebbUSA,RT @essatu: @JimWebbUSA 2016 election needs him more than ever #jimwebb2016 #jimwebb +11/20/2015,Politicians,@JimWebbUSA,RT @peterogburn: Proud @JimWebbUSA supporter https://t.co/JjGriDrhS6 +11/19/2015,Politicians,@JimWebbUSA,RT @MelissaMelimac: I just supported Ask Jim Webb to run as an (I) on @ThunderclapIt // @draftjimwebb2 https://t.co/NSsCrxt6eC @JimWebbUSA … +11/19/2015,Politicians,@JimWebbUSA,RT @eric_barnard4: @JimWebbUSA it was honor to meet you. You'll have my vote! From Vietnam to the White House #OnlyInAmerica https://t.co/w… +11/19/2015,Politicians,@JimWebbUSA,RT @Wildstar1904: @JimWebbUSA 1 of the many reasons I'm all n for #WebbNation. I forwarded that to all my fellow Vet buddies. Run Jim Run! … +11/19/2015,Politicians,@JimWebbUSA,@YumaWxMan @Treezilla Thank you both! +11/19/2015,Politicians,@JimWebbUSA,#WebbNation having some fun. https://t.co/NkWaNR18aL +11/19/2015,Politicians,@JimWebbUSA,RT @Treezilla: @JimWebbUSA Today is 1st time EVER I've donated to a political campaign.Hope 2016 is 1st I vote FOR someone rather than agai… +11/18/2015,Politicians,@JimWebbUSA,RT @realjamesball: @JimWebbUSA I keep trying to imagine a president who is right for these times in my head. I keep coming back to you. Ind… +11/18/2015,Politicians,@JimWebbUSA,"""The Most Presidential Thing Any Candidate Has Ever Said"" +Exclusive interview https://t.co/tpgT1paP5u +#WebbNation #Warriors4Webb" +11/17/2015,Politicians,@JimWebbUSA,"Virginia Poll Looks at Potential Impact of Jim Webb Running as Independent +https://t.co/Oplggw2p4n #WebbNation https://t.co/SToOgjjbYv" +11/16/2015,Politicians,@JimWebbUSA,"@Occidentaljihad @AmateurPolSc @USMC Sen. Webb remains a presidential candidate, but he is no longer running for the Democratic nomination." +11/15/2015,Politicians,@JimWebbUSA,"Mrs. Clinton disparaged integrity of @USMC, claiming wrongly turned away from serving. Tell us when, where & w/whom. https://t.co/NH8SZTk5gw" +11/15/2015,Politicians,@JimWebbUSA,RT @gcrys: Thanks @JimWebbUSA for raising the consciousness on the development gap in our own country. https://t.co/uS4S0Lx2Hu +11/15/2015,Politicians,@JimWebbUSA,Those in France & elsewhere should be able to feel safe & free from the forces of terrorism. https://t.co/jXLrYwQpiM https://t.co/SQL1jPw4fG +11/15/2015,Politicians,@JimWebbUSA,Hong and I offer our prayers and deepest sympathy for the families & friends of each victim of the attacks in Paris. https://t.co/jXLrYwQpiM +11/15/2015,Politicians,@JimWebbUSA,RT @JoshScholer: It's a shame @JimWebbUSA isn't up there. Would be safe to say he would have probably the most sensible plan on foreign pol… +11/15/2015,Politicians,@JimWebbUSA,Our newsrooms filled w/people overwhelmingly from elites who displayed little sensitivity to realities facing many. https://t.co/zlzScsT0Vq +11/14/2015,Politicians,@JimWebbUSA,This article is emblematic of what keeps motivating me despite the very long odds. https://t.co/zlzScsT0Vq https://t.co/Z7vLKWZBi0 +11/13/2015,Politicians,@JimWebbUSA,Watching closely as national media begins turning its attention to #Asia in the coming week. https://t.co/qSIOC3IMWC https://t.co/N4UQTgX2Xx +11/12/2015,Politicians,@JimWebbUSA,"#TBT: Senator Wins Release of US Prisoner in Myanmar +#ThrowbackThursday from Aug 15, 2009 #WebbNation +https://t.co/4stYgt2aaH" +11/12/2015,Politicians,@JimWebbUSA,"RT @LanceCiepiela: @JimWebbUSA @jaketapper ""Once a marine always a marine"" - thank you for your service https://t.co/RNHz0qKysK #USMC https…" +11/11/2015,Politicians,@JimWebbUSA,@jaketapper Thank you for all you do for veterans. You're making a real difference. +11/11/2015,Politicians,@JimWebbUSA,"RT @simonschuster: .@JimWebbUSA on his life in the military, watch https://t.co/GuquZKrMOX. Many thanks to him & all veterans for their ser…" +11/11/2015,Politicians,@JimWebbUSA,"A special #thankyou & wishes for a meaningful Veterans Day to all who have served & those still serving. #ThankAVet +https://t.co/gNVALleOKY" +11/10/2015,Politicians,@JimWebbUSA,RT @NavalAcademy: Happy 240th birthday to the U.S. Marine Corps! @USMC #oorah #SemperFi https://t.co/kS8vR7S9Vg +11/10/2015,Politicians,@JimWebbUSA,Happy 240th birthday to my fellow Marines in every clime & place. #SemperFi #USMCBirthday +11/09/2015,Politicians,@JimWebbUSA,"RT @TBro_6and12: If its Hillary v Trump Carson Cruz Rubio, moderates will consider @JimWebbUSA. Will enough $$$ support? #WebbNation https…" +11/09/2015,Politicians,@JimWebbUSA,RT @LAMBDF: #MotivationMonday @JimWebbUSA #WebbNation #WIN2016 https://t.co/kdZuS6dlQY +11/08/2015,Politicians,@JimWebbUSA,"Discussing economic fairness, social justice, #veterans, true stewardship & strong leadership. ( 2008) #WebbNation +https://t.co/36HilHcbuP" +11/07/2015,Politicians,@JimWebbUSA,#WebbNation is roaring... https://t.co/584IBtmSG3 +11/07/2015,Politicians,@JimWebbUSA,@SharonA1225 @Sheikhsquad Sen Webb still officially candidate for president. He isnt running for Democratic nomination. Consider next step. +11/07/2015,Politicians,@JimWebbUSA,Notable @NavalAcademy graduate: https://t.co/4hFgYDJpRn #WebbNation #Service #GoNavy #Warriors4Webb +11/07/2015,Politicians,@JimWebbUSA,RT @SharonA1225: @JimWebbUSA Hoping you will run on independent ticket. Registered Republican but dont like either party. Haven't removed y… +11/06/2015,Politicians,@JimWebbUSA,RT @jackiesalit: @JimWebbUSA hits nail on head in https://t.co/UXs0YWdaF0. Americans dislike both parties while political class dismisses i… +11/06/2015,Politicians,@JimWebbUSA,RT @half_witt: Reads like an endorsement for @JimWebbUSA. https://t.co/aoiCgdgkcz +11/06/2015,Politicians,@JimWebbUSA,RT @YumaWxMan: @CNNPolitics @JimWebbUSA I sure hope so. Need his leadership an sensability opposed yo big money extreme party political pop… +11/06/2015,Politicians,@JimWebbUSA,"RT @CupofLiberal: @JimWebbUSA Please, for the sake of my future children, run as an independent. We need you in our future, whether as POTU…" +11/06/2015,Politicians,@JimWebbUSA,"RT @jsaxhaug: I'm an Army guy, but i'll proudly give an Oorah for an independent @JimWebbUSA run at the presidency. Sign me up, Jim! #WebbN…" +11/06/2015,Politicians,@JimWebbUSA,@Kyredwood @CNNPolitics Senator Webb last week outlined why he is considering this: https://t.co/NVV39v8tE1. +11/06/2015,Politicians,@JimWebbUSA,"RT @PAPADOO: @ColmesRadio @JimWebbUSA @RonPaul @AlanColmes Alan Colmes We Miss You on TV !! Jim Webb, We're With Jim Webb All The Way!!" +11/06/2015,Politicians,@JimWebbUSA,@patcamunez https://t.co/NVV39v8tE1 +11/06/2015,Politicians,@JimWebbUSA,@swimmingturtle7 @CNNPolitics @cnnbrk Senator Webb wrote this last week explaining why he's considering: https://t.co/NVV39v8tE1 +11/06/2015,Politicians,@JimWebbUSA,RT @CNNPolitics: .@JimWebbUSA is eyeing a decision on whether to run as an independent by the new year https://t.co/3r1BBEacp1 https://t.co… +11/06/2015,Politicians,@JimWebbUSA,"RT @PAPADOO: @JimWebbUSA More Than Ever, America Needs The Honesty, Integrity & The Intellectual Prowess & The Military Sense to Protect Ou…" +11/05/2015,Politicians,@JimWebbUSA,"RT @LAMBDF: @JimWebbUSA #StressIn5Words #WEBBNATION Here are five outstanding words! +Peace +Opportunity +Trust +Unity +Stability https://t.co/n…" +11/05/2015,Politicians,@JimWebbUSA,"#TBT: Webb’s intellectualism ensures he'll do something that professional politicians hardly ever do... https://t.co/KUdwyh4YdS +#WebbNation" +11/05/2015,Politicians,@JimWebbUSA,"RT @JeffreyInce: This is an interesting turn of events. For sure this will be an uphill battle, but a very worthwhile effort. https://t.co…" +11/05/2015,Politicians,@JimWebbUSA,"RT @LAMBDF: #WEBBNATION @JIMWEBBUSA Jim Webb's Views on US Foreign Policy | Jim Webb Discussion Forum +https://t.co/cYSZ90Gxze" +11/04/2015,Politicians,@JimWebbUSA,RT @jesselaymen: @JimWebbUSA Jim Webb's gun rights views are common sense! https://t.co/yWacgJgzho +11/04/2015,Politicians,@JimWebbUSA,New poll in #Iowa by Public Policy Polling shows Jim currently getting 9% of the vote in a general election as an #Independent. #WebbNation +11/04/2015,Politicians,@JimWebbUSA,"What are your views on gun rights? +#2A #WebbNation +https://t.co/FbgoB6RtBP" +07/02/2018,Politicians,@ScottWalker,Cool bicycle races today in Wauwatosa. https://t.co/LFkHSjDEPk +07/01/2018,Politicians,@ScottWalker,Had a fun afternoon in Kenosha honoring Wisconsin’s veterans and celebrating our freedom at the Kenosha Civic Veter… https://t.co/NTVqFGnwHO +07/01/2018,Politicians,@ScottWalker,Check out this video we took right after a really hot parade today with some amazing volunteers in Kenosha County!!… https://t.co/7SjylekGNC +07/01/2018,Politicians,@ScottWalker,"We broke ground on the Foxconn investment last Thurs – 13,000 good-paying jobs with an average salary of $53, 875 p… https://t.co/P3mgSLYbjO" +07/01/2018,Politicians,@ScottWalker,https://t.co/qdvbqScyMf +07/01/2018,Politicians,@ScottWalker,“Technologies on display at Foxconn event will help drive Wisconsin’s economy” https://t.co/8YRMb5lbwJ +07/01/2018,Politicians,@ScottWalker,"Wisconsin’s dairy industry provides jobs and stimulates our economy. Enjoyed the Chequamegon Dairy Day in Maple, WI… https://t.co/JVoGfco4x3" +06/30/2018,Politicians,@ScottWalker,Thursday was quite a day for Wisconsin workers and their families all across the state. We broke ground on the larg… https://t.co/7qiOOh4gIF +06/30/2018,Politicians,@ScottWalker,"Today is the last day of the quarter, which is one of the most important milestones in our campaign. As we head int… https://t.co/ywLDKqnaOe" +06/30/2018,Politicians,@ScottWalker,Obama’s group. Holder. Soros. Steyer. AFSMCE. NEA. SEIU. Planned Parenthood. ACLU. DGA. DNC. They are all coming fo… https://t.co/Wt3IVHXYHc +06/30/2018,Politicians,@ScottWalker,.@Brewers Good luck today against the Reds. Congrats on continuing to have the best record in the NL #ThisIsMyCrew https://t.co/pYSFO0uLFS +06/30/2018,Politicians,@ScottWalker,"Special thanks to the TePoel Family, the Chequamegon Dairy Association and Dairy Farmers of Wisconsin for hosting a… https://t.co/45WiNPRJ0T" +06/30/2018,Politicians,@ScottWalker,We need your help before the deadline at the end of today! National Democrats and their big government special inte… https://t.co/4Ar8Pca05B +06/30/2018,Politicians,@ScottWalker,"RT @wisgop: Valerie is our @wisgop Volunteer of the Week! + +Valerie helps out in our Eau Claire office and loves the experience: ""it's a lot…" +06/30/2018,Politicians,@ScottWalker,“Foxconn Bonus comes to Green Bay!” https://t.co/hilCqzmJjY https://t.co/ycPwPXs0RH +06/30/2018,Politicians,@ScottWalker,"“Foxconn to buy WaterMark building in downtown Green Bay” +https://t.co/GxZFZWWPwr" +06/30/2018,Politicians,@ScottWalker,“Foxconn buying WaterMark building for Green Bay innovation center” https://t.co/fBxuHoK2Xy +06/30/2018,Politicians,@ScottWalker,"Happy Birthday to my son, @MattWalkerWI! He was born on the 1st day of @Summerfest 1994 -- just after the Big Bang… https://t.co/CAbNNzVnRY" +06/30/2018,Politicians,@ScottWalker,“Foxconn Comes to Green Bay” https://t.co/OXtpAfpEBD +06/30/2018,Politicians,@ScottWalker,The Left will decide how much to spend against us based on what we raise by midnight tonight. Pls donate today:… https://t.co/3VHoheHgZI +06/30/2018,Politicians,@ScottWalker,Obama’s political machine is targeting us. Eric Holder’s too. Add in liberal billionaires George Soros & Tom Steyer… https://t.co/KW9huNByLM +06/29/2018,Politicians,@ScottWalker,"“Foxconn buys Watermark building, plans innovation center in downtown Green Bay” https://t.co/x9F60unInx" +06/29/2018,Politicians,@ScottWalker,Honored to join Mary and the kids for the dedication of Ted Kanavas Field at Brookfield East High School. Ted was a… https://t.co/fujUtZpYSp +06/29/2018,Politicians,@ScottWalker,"Foxconn will create at least 13,000 good-paying, family-supporting jobs, and 27 of the 28 companies selected for th… https://t.co/9luMBIRBQm" +06/29/2018,Politicians,@ScottWalker,More great news! Foxconn is creating an Innovation Center in Green Bay to help new startup companies and provide re… https://t.co/mqiG7IooyM +06/29/2018,Politicians,@ScottWalker,"Just as Microsoft transformed the State of Washington, Foxconn will help Wisconsin Win the 21st Century. It will he… https://t.co/JpBSac79BW" +06/29/2018,Politicians,@ScottWalker,Check out how the Foxconn investment is putting Wisconsin first! It’ll involve companies with workers in 60 of Wisc… https://t.co/Gp6vQJwNXK +06/28/2018,Politicians,@ScottWalker,Yet another great project going up in Wisconsin! #FearTheDeer #BuildTheFuture https://t.co/Qc91Gny5ER +06/28/2018,Politicians,@ScottWalker,Wisconsin is working! Today was a great day for Wisconsin’s hard-working families in all corners of the state. We’r… https://t.co/zHsBkS7AjN +06/28/2018,Politicians,@ScottWalker,An independent report shows that Foxconn would add more than $51 billion to the economy of Wisconsin over 15 years.… https://t.co/V2iOzM8FBt +06/28/2018,Politicians,@ScottWalker,"Enjoyed speaking following the Foxconn groundbreaking. This is a historic day for Wisconsin. 13,000 good-paying, fa… https://t.co/jiKye5TuLo" +06/28/2018,Politicians,@ScottWalker,Thanks to the @POTUS for joining as we broke ground for the largest economic development project in Wisconsin histo… https://t.co/VXOr3DvJwh +06/28/2018,Politicians,@ScottWalker,What a great day – we worked to secure the Foxconn commitment to invest in Wisconsin’s workers and help everyone ac… https://t.co/cdnRhpGZLW +06/28/2018,Politicians,@ScottWalker,Exciting news today! We’re breaking ground on Foxconn – the largest single economic development project in the hist… https://t.co/IaWX7k4Ryd +06/28/2018,Politicians,@ScottWalker,An independent report shows that Foxconn will add $51 billion to the Wisconsin economy over the next 15 years. That… https://t.co/VNnC6UTxL9 +06/28/2018,Politicians,@ScottWalker,"RT @GovWalker: In 2011, we declared “Wisconsin is open for business.” Today, we are delivering on that promise in a historic way with the g…" +06/28/2018,Politicians,@ScottWalker,"Wisconsin is working under our leadership – now, we’re working to spur additional economic growth to help hard-work… https://t.co/MlCuKqOZ5I" +06/28/2018,Politicians,@ScottWalker,"In addition, Foxconn has to earn the tax credits. They don’t get the full amount unless they create 13,000 jobs, pa… https://t.co/xlWk5B06Ol" +06/28/2018,Politicians,@ScottWalker,An independent report from the Milwaukee Metropolitan Association of Commerce shows that the project will provide a… https://t.co/V5pIL1iwDt +06/28/2018,Politicians,@ScottWalker,"When fully operational, to put WI first, it’s been estimated that Foxconn will spend about $1.4 billion annually in… https://t.co/0qeIwC7f9e" +06/28/2018,Politicians,@ScottWalker,"Foxconn will provide 13,000 good-paying, family-supporting jobs to Wisconsin through their $10 billion investment t… https://t.co/xCKzrQ7kQn" +06/27/2018,Politicians,@ScottWalker,Remember just a few weeks back when Foxconn announced $100 million in contracts were awarded to 27 Wisconsin subcon… https://t.co/RBvJfi8KPA +06/27/2018,Politicians,@ScottWalker,".@POTUS @realDonaldTrump, typical Wisconsin taxpayer -- 2 parents working and 2 kids at home -- will save $2,508 be… https://t.co/UbJXeDUxLd" +06/27/2018,Politicians,@ScottWalker,Was good to join Air Wisconsin yesterday to announce their new expansion in Appleton! $8 million investment with 80… https://t.co/egohjVx9NR +06/27/2018,Politicians,@ScottWalker,"The Kafka family knows our bold reforms sparked Wisconsin’s comeback! With more bold reform, we can continue to bui… https://t.co/83QDcLTOtu" +06/27/2018,Politicians,@ScottWalker,Big government union bosses were angry when we gave public workers the right to choose. They even tried to recall m… https://t.co/rW9tGQCye5 +06/27/2018,Politicians,@ScottWalker,"Our bold reforms have jumpstarted Wisconsin’s comeback – with more bold reform, we can make sure everyone in our st… https://t.co/8WXsg7SpIf" +06/27/2018,Politicians,@ScottWalker,More people are working now than ever before and unemployment is at an all-time low. Our reforms are helping Wiscon… https://t.co/ZoCsN0qNOQ +06/27/2018,Politicians,@ScottWalker,Wisconsin was ahead of the curve giving public workers the freedom to choose during our 1st year in office. That’s… https://t.co/xmJ9zBuK2l +06/27/2018,Politicians,@ScottWalker,Supreme Court today affirms what we did years ago -- gives public servants the freedom to choose whether they want… https://t.co/BJ2NhtJokx +06/27/2018,Politicians,@ScottWalker,"“Mark R. Hogan: Foxconn’s historic investment in Wisconsin already paying dividends” +https://t.co/4dfHgAR35V" +06/27/2018,Politicians,@ScottWalker,"Foxconn will help create at least 13,000 good-paying, family-supporting jobs! Going forward, our bold reforms will… https://t.co/IdPTEzSeZT" +06/27/2018,Politicians,@ScottWalker,"Nearly 500,000 households have signed up for the child tax rebate. July 2 is the deadline. Sign up today at https://t.co/CJjQ1SR5bi." +06/27/2018,Politicians,@ScottWalker,Wisconsin is America's dairyland -- Wisconsin Cheese Day is about celebrating our state’s dairy industry and the fa… https://t.co/ypGQsK1TiE +06/26/2018,Politicians,@ScottWalker,"As @realDonaldTrump said at the G7, the best answer is no tariffs! I said it again at SelectUSA with Commerce Secre… https://t.co/6Ok7Um5vfr" +06/26/2018,Politicians,@ScottWalker,Air Wisconsin expansion in Appleton will create 80 high-skill careers! https://t.co/gOBCtO53sk +06/26/2018,Politicians,@ScottWalker,Our bold reforms sparked Wisconsin’s comeback! Want to keep our state moving forward and help us share our optimist… https://t.co/Nw8B6KwaSg +06/26/2018,Politicians,@ScottWalker,🚨🚨We need your help to keep WI red! National Democrats and their big government special interests are targeting our… https://t.co/tvUhBbvUGD +06/26/2018,Politicians,@ScottWalker,"What a great day! Air Wisconsin is moving their maintenance operations to Appleton, and building a new, 30,000 sq.… https://t.co/aaRhIfFdNU" +06/26/2018,Politicians,@ScottWalker,“Walker’s latest TV ad features employees of granite company praising his policies” https://t.co/dNdk07Ipja +06/26/2018,Politicians,@ScottWalker,Enjoyed joining County Materials on Friday to discuss how they are taking advantage of this opportunity to grow and create jobs. +06/26/2018,Politicians,@ScottWalker,"Nearly 10,000 construction workers from all over the state and region will be needed to build the new Foxconn eco-center." +06/26/2018,Politicians,@ScottWalker,Foxconn’s state-of-the-art products will be made in the U.S.A. -- proudly in the state of Wisconsin! +06/26/2018,Politicians,@ScottWalker,"At the G7, @POTUS @realDonaldTrump said that no tariffs should be on the table. I said again today that no tariffs… https://t.co/5G0giQQdM3" +06/26/2018,Politicians,@ScottWalker,Cool view in the Miller Beer Caves! https://t.co/9XWlloZme6 +06/26/2018,Politicians,@ScottWalker,"The Washington-based special interest groups, liberal billionaires, and big government union bosses are targeting m… https://t.co/iDZAyAizxt" +06/25/2018,Politicians,@ScottWalker,The Kafka family says our bold reforms jumpstarted Wisconsin’s economy and “absolutely” led to jobs and economic gr… https://t.co/bdQp5ICqO5 +06/25/2018,Politicians,@ScottWalker,The Democrats running for governor will tell you what they are against. We will tell you what we are for! Help us s… https://t.co/m5CGjrK7Bc +06/25/2018,Politicians,@ScottWalker,Had a really great time traveling the state this weekend for some more dairy breakfasts! June Dairy Month really is… https://t.co/AiZjMn2TbU +06/25/2018,Politicians,@ScottWalker,"One week from today (July 2) is the last day to sign up for the Child Tax Rebate. Join more than 475,000 households… https://t.co/6qkEPEpcaD" +06/25/2018,Politicians,@ScottWalker,Want to counter the anger and the hatred of the Left? Help us share our optimistic message and positive plans for t… https://t.co/rLPEiRa7R3 +06/25/2018,Politicians,@ScottWalker,Like good times and rock and roll? Watch this video: https://t.co/NS1P6JbBR2 +06/25/2018,Politicians,@ScottWalker,Enjoyed stopping in Wausau to celebrate #WICheeseDay and award another workforce training grant. We’re standing up… https://t.co/OHm6gzNouv +06/25/2018,Politicians,@ScottWalker,It’s Cheese Day in Wisconsin!!! Eat More Cheese! 🧀 https://t.co/LuU6ep9NQw +06/25/2018,Politicians,@ScottWalker,"Obama’s political group, Eric Holder, George Soros, Tom Steyer, DNC, DGA, ACLU, union bosses, etc. … they are all t… https://t.co/hU8afyObf0" +06/25/2018,Politicians,@ScottWalker,Good to join researchers at UW-Madison to discuss additional ways we can continue to help our dairy farmers.… https://t.co/tHDBnKckgd +06/25/2018,Politicians,@ScottWalker,More people are working now than ever before and unemployment is at an all-time low. Our reforms are helping Wiscon… https://t.co/01wvd3fnw2 +06/24/2018,Politicians,@ScottWalker,"I am a pro-education governor — we balanced our budget and put the state back on track, and we’re investing in our… https://t.co/mpciC6wyuK" +06/24/2018,Politicians,@ScottWalker,"“Scott Walker's big re-election tax cut tout: $8 billion during his time as Wisconsin governor” +https://t.co/roOin8xeI4" +06/24/2018,Politicians,@ScottWalker,"🚨🚨 It’s almost the end of the quarter, which is one of the most important milestones in our campaign. As we head in… https://t.co/WvYWPi4EsI" +06/24/2018,Politicians,@ScottWalker,"RT @journalsentinel: To the parents whose kids have been able to escape low-performing public schools in order to help their children, Walk…" +06/24/2018,Politicians,@ScottWalker,RT @AlexWalkerWI: Fun night in Menomonee Falls with the fam! https://t.co/9lptaHxlvl +06/24/2018,Politicians,@ScottWalker,More ice cream at breakfast on the farm in Marinette County. Mmmm. https://t.co/8Vqb98lsEx +06/24/2018,Politicians,@ScottWalker,Happy to help out at the Marinette County Breakfast on the Farm. Thanks to the Carlson family for hosting us during… https://t.co/Dp6E576Pw0 +06/24/2018,Politicians,@ScottWalker,https://t.co/2dNmFlFjte +06/24/2018,Politicians,@ScottWalker,Sat down with these two great World War II veterans — Harry and Larry — tonight in Menomonee Falls. Thank God for p… https://t.co/ba4stMeG7H +06/23/2018,Politicians,@ScottWalker,Stopped by to see my parents. They are the best! https://t.co/bQsMfzTNIC +06/23/2018,Politicians,@ScottWalker,It is an honor to pay my respects to the family of SSG Krasean Clayborn at funeral services in Milwaukee today. He… https://t.co/nRUexAOvs0 +06/23/2018,Politicians,@ScottWalker,Thank you to the Bratz family for hosting the Racine County Breakfast on the Farm! What a great way to meet Wiscons… https://t.co/hjQng3omAP +06/23/2018,Politicians,@ScottWalker,June is the best because I can eat custard and cheese curds every weekend for breakfast! Happy to serve at Racine C… https://t.co/K9m0FO70mC +06/23/2018,Politicians,@ScottWalker,"We need your help! With all the big government, special interest money that is targeting our state by national Demo… https://t.co/lNPmdZDdSg" +06/23/2018,Politicians,@ScottWalker,What an amazing walk off home run for another @Brewers win!  #ThisIsMyCrew https://t.co/k9NY0OcZGD +06/22/2018,Politicians,@ScottWalker,"With a record investment in our schools, more money for our technical college programs, and a six-year tuition free… https://t.co/N9uUhTuF5k" +06/22/2018,Politicians,@ScottWalker,Good to join County Materials in Marathon today. They were selected as one of the 27 Wisconsin subcontractors and a… https://t.co/UcLXEbht17 +06/22/2018,Politicians,@ScottWalker,"“Racine launches $1.5 million training program for Foxconn construction work” +https://t.co/lGjdnx5Jtd" +06/22/2018,Politicians,@ScottWalker,"Anita, a public school teacher from Racine, supports our bold reforms to empower school districts and invest histor… https://t.co/UJWDvR5ucZ" +06/22/2018,Politicians,@ScottWalker,We’ve returned power to taxpayers and put more money in our classrooms to help students and their families win the… https://t.co/fuIrX5UesH +06/22/2018,Politicians,@ScottWalker,"“Yes, Scott Walker is an 'education governor' for Wisconsin” https://t.co/2NfG68vPkR" +06/22/2018,Politicians,@ScottWalker,"Our goal is to have the highest graduation rate in the nation because, with 2.8% unemployment, we need every studen… https://t.co/x3enH0IK9e" +06/22/2018,Politicians,@ScottWalker,"When I introduced my budget, the state superintendent of public instruction called it: “pro-kid.”" +06/22/2018,Politicians,@ScottWalker,Our budget puts in more funding for mental health services in schools. Anti-bullying efforts too. And lawmakers app… https://t.co/00rB8AdxKQ +06/22/2018,Politicians,@ScottWalker,We doubled youth apprenticeships. Doubled funding for Fab Labs. Increased early college credit. We fully fund acade… https://t.co/M5SmX5wMC9 +06/22/2018,Politicians,@ScottWalker,Our state budget puts more actual dollars into schools than ever before -- an extra $200 per student this past scho… https://t.co/yJTxDXvKQx +06/22/2018,Politicians,@ScottWalker,Our Act 10 reforms allow schools to staff based on merit and pay based on performance. That means they can put the… https://t.co/yAdKzeB566 +06/22/2018,Politicians,@ScottWalker,Our reforms put local school board members back in charge of our schools instead of special interests. +06/22/2018,Politicians,@ScottWalker,Proud to be the Education Governor in Wisconsin. +06/22/2018,Politicians,@ScottWalker,Great to see all these young women working to learn about what it takes to provide real leadership. Programs like B… https://t.co/W1k1d2PRpX +06/21/2018,Politicians,@ScottWalker,"I am a pro-education governor — after balancing our budget and putting the state back on track, we’re now able to i… https://t.co/t8yRkDnfWl" +06/21/2018,Politicians,@ScottWalker,#NationalSelfieDay is a good chance to remember good times with the @Brewers. #ThisIsMyCrew https://t.co/3mxR2labjo +06/21/2018,Politicians,@ScottWalker,"We’re making historic investments in K-12 education, we froze UW system tuition, increased Sparsity Aid for rural c… https://t.co/Ws23P5JnuM" +06/21/2018,Politicians,@ScottWalker,https://t.co/dr1t7WaRs8 +06/21/2018,Politicians,@ScottWalker,#ThisIsMyCrew @Brewers https://t.co/8oIdk5bpin +06/21/2018,Politicians,@ScottWalker,"Summer is officially here, finally! #SummerSolstice2018 #LongestDayOfTheYear 🌞☀️ https://t.co/lUy2IHXZvY" +06/21/2018,Politicians,@ScottWalker,“DuraTech celebrates $7.5 million expansion; La Crosse printing company to add 125 jobs” https://t.co/qsYb6kLz3Q +06/21/2018,Politicians,@ScottWalker,"Anita, a public school teacher in Racine, knows our bold reforms have returned power to taxpayers, and that we’ve p… https://t.co/5F0k8860Nn" +06/20/2018,Politicians,@ScottWalker,"If we’re going to help Wisconsin win the 21st century, we need all of our young people to have the skills necessary… https://t.co/wojBFYjI1l" +06/20/2018,Politicians,@ScottWalker,Joined DuraTech Industries for their expansion ribbon cutting ceremony in La Crosse this morning. Business investme… https://t.co/zLmnJz7QCe +06/20/2018,Politicians,@ScottWalker,Teachers like Anita know that our bold reforms are helping students and their families win the 21st century – we’ve… https://t.co/cM3jGfImbG +06/20/2018,Politicians,@ScottWalker,"On #AmericanEagleDay, remembering Old Abe -- the bald eagle that was the mascot for WI’s 8th Infantry during the Ci… https://t.co/Fz9oryLwja" +06/20/2018,Politicians,@ScottWalker,"I’m a pro-education governor -- and with our bold reforms, we’re working to help Wisconsin’s students and their fam… https://t.co/OL52RfqtlF" +06/19/2018,Politicians,@ScottWalker,We’re fighting for our dairy farmers here in Wisconsin -- they are essential to our state’s success. https://t.co/gZO3bIhJX1 +06/19/2018,Politicians,@ScottWalker,"Our bold reforms gave schools flexibility to put money where it matters most, in our classrooms. Now, after we’ve p… https://t.co/Op4m0u99pO" +06/19/2018,Politicians,@ScottWalker,Sign up to claim yours here! https://t.co/bqBxvtT7ZP +06/19/2018,Politicians,@ScottWalker,"More than 450,000 families have signed up for our child tax rebate, but 200,000 are still eligible. We’re returning… https://t.co/LxSfDhBFW6" +06/19/2018,Politicians,@ScottWalker,"Had a great time in De Pere this past weekend at their dairy breakfast supporting our farmers, their families and W… https://t.co/xZyyf65XkF" +06/19/2018,Politicians,@ScottWalker,"On Juneteenth Day, I am happy to announce our plans to name the new Milwaukee state office building after the Hon. Vel Phillips." +06/19/2018,Politicians,@ScottWalker,"Check out our newest ad! With a record actual-dollar investment in schools, more money for our technical college pr… https://t.co/0yIeltT9mi" +06/18/2018,Politicians,@ScottWalker,"The success of Wisconsin’s dairy industry is important to all of us, and that is why we are standing up for our far… https://t.co/UaDGo5mP4v" +06/18/2018,Politicians,@ScottWalker,"More than 450,000 families have claimed our $100-per-child tax rebate. Last week I stopped in Onalaska to encourage… https://t.co/rTZsaTo9kD" +06/18/2018,Politicians,@ScottWalker,Started off this past weekend in La Crosse! Enjoyed serving food and chatting with our farmers about what it will t… https://t.co/gcyg1n5rtI +06/18/2018,Politicians,@ScottWalker,My mom took a nice photo of me and my brother David with our dad on Father’s Day. https://t.co/vg2OcEh1QI +06/18/2018,Politicians,@ScottWalker,More evidence that Wisconsin is a top target for Washington-based special interest groups on the Left. We need your… https://t.co/xk0MfFwcEl +06/18/2018,Politicians,@ScottWalker,Had a great weekend with our farm families visiting dairy breakfasts across the state! https://t.co/yVo5VzqP4K +06/18/2018,Politicians,@ScottWalker,Great view of the mini-racing sausages from @Johnsonville at Miller Park today during the @Brewers game: https://t.co/KCYRdBSprE +06/17/2018,Politicians,@ScottWalker,Enjoying a @Brewers game on Father’s Day at Miller Park. #ThisIsMyCrew https://t.co/nl7YVd5QL6 +06/17/2018,Politicians,@ScottWalker,This couple came up to me at the Waupaca County Dairy Breakfast and told me that my father had officiated their wed… https://t.co/AtdCIXBltH +06/17/2018,Politicians,@ScottWalker,Stopped in Waupaca County at their breakfast on the farm today! Another great morning. https://t.co/hBmf2SicUL +06/17/2018,Politicians,@ScottWalker,Another great breakfast on the farm. Proud to be in Brown County this morning serving up some great food! #WIProud https://t.co/ngPfWOfZi1 +06/17/2018,Politicians,@ScottWalker,"“Gov. Walker visits Onalaska, encourages parents to apply for child tax rebate” https://t.co/SsTgFqCvXC" +06/17/2018,Politicians,@ScottWalker,Happy Father’s Day to my dad Llew Walker and all of the other fathers out there. https://t.co/bkYMRrNtYf +06/17/2018,Politicians,@ScottWalker,89 degrees and on the water with a cold Summer Shandy! https://t.co/zACjX7Nvo4 +06/16/2018,Politicians,@ScottWalker,"""Governor Scott Walker reminds area families of Child Tax Rebate"" https://t.co/66IIm6BQjI" +06/16/2018,Politicians,@ScottWalker,"Amazing show of support for family and friends of Milwaukee Police Officer Charles Irvine, Jr. Honored to be there… https://t.co/X4F5uAvdUb" +06/16/2018,Politicians,@ScottWalker,Breakfast on the farm is great. Glad to be in La Crosse County this morning celebrating dairy month! https://t.co/rylrBYR0oA +06/16/2018,Politicians,@ScottWalker,Our President of the University of Wisconsin System Board of Regents is a man of many talents. Look at this catch i… https://t.co/oDTlffI5i3 +06/15/2018,Politicians,@ScottWalker,“Gov. Scott Walker touts broadband grants in Oconto Falls visit” https://t.co/0MByDKxR6l +06/15/2018,Politicians,@ScottWalker,"“Governor Stops in FDL, Will Speak in Ripon” https://t.co/aj2KwNCAX6" +06/15/2018,Politicians,@ScottWalker,Stopped in Onalaksa this afternoon to talk about our child tax rebate and how it can help Wisconsin’s hard-working… https://t.co/oXJOTs2n2r +06/15/2018,Politicians,@ScottWalker,"“Foxconn buys downtown office building for $14.9 million, says 500 people will work there” https://t.co/ZPcNI958dB" +06/15/2018,Politicians,@ScottWalker,Enjoyed visiting Platteville today to talk about how our child tax rebate is helping hard-working Wisconsin familie… https://t.co/mXHgVyRxmj +06/15/2018,Politicians,@ScottWalker,"With all of the “help wanted” signs across Wisconsin, our bold reforms are removing barriers to work by helping par… https://t.co/fr00bJRmh1" +06/15/2018,Politicians,@ScottWalker,Grab 20% off a bunch of great Team Walker gear TODAY ONLY and help support our efforts. https://t.co/rA6EmL6Bfc https://t.co/MbvnBTpDUS +06/15/2018,Politicians,@ScottWalker,"With our school safety grants, we’re taking action to keep our children safe. https://t.co/Dj7tC7ja64" +06/15/2018,Politicians,@ScottWalker,"More great news for Wisconsin yesterday!! The employment level in Wisconsin is at an all-time HIGH of 3,090,200 and… https://t.co/ixnUJdO3tO" +06/15/2018,Politicians,@ScottWalker,Happy to address the young leaders at Badger Boys State tonight in Ripon. This program opened my eyes to public ser… https://t.co/nDinYKQwK8 +06/15/2018,Politicians,@ScottWalker,https://t.co/QZYlIzemtK +06/14/2018,Politicians,@ScottWalker,"""Metro Milwaukee hiring outlook for Q3 is third best in nation"" +https://t.co/ZbX2VYgSAm" +06/14/2018,Politicians,@ScottWalker,Proud to be at Rennes Health & Rehab Center in De Pere. We recognize the important work that our nursing assistants… https://t.co/g1YGIfeo9S +06/14/2018,Politicians,@ScottWalker,"BREAKING NEWS: Employment level in Wisconsin is at an all-time high of 3,090,200 and unemployment rate is at all-time low at 2.8% for May." +06/14/2018,Politicians,@ScottWalker,Biggest story overlooked by most in media was @POTUS @realDonaldTrump saying: “We should at least consider no tarif… https://t.co/Rf3Rir6PZb +06/14/2018,Politicians,@ScottWalker,"Happy Birthday to the Dean of the Wisconsin Congressional delegation, Congressman Jim Sensenbrenner! @JimPressOffice https://t.co/5O35b91JdI" +06/14/2018,Politicians,@ScottWalker,"Happy birthday to the @USArmy! 243 years of service to our nation. To all the men and women who serve, thank you fo… https://t.co/7wvnny2ehu" +06/14/2018,Politicians,@ScottWalker,Alex and Matt sleeping on our couch. #TBT https://t.co/r8yElSpqZy +06/14/2018,Politicians,@ScottWalker,"“Transload rail facility opens in Oshkosh's Southwest Industrial Park” +https://t.co/rjderd5XlX" +06/14/2018,Politicians,@ScottWalker,"Happy Birthday, @POTUS @realDonaldTrump! https://t.co/a3qSlUC4Lx" +06/14/2018,Politicians,@ScottWalker,More great news in Oshkosh! https://t.co/RcG3nEwcKF +06/14/2018,Politicians,@ScottWalker,Happy #FlagDay! We are honoring the flag and all that it represents. 🇺🇸 🇺🇸 Fun Fact: Did you know that Flag Day st… https://t.co/2rGhHHWLwe +06/14/2018,Politicians,@ScottWalker,These are my kind of fries at Parkside 23! https://t.co/ggAmAS97A7 +06/13/2018,Politicians,@ScottWalker,Our bold reforms are helping Wisconsin win the 21st century as job creators choose to stay and invest in our state. https://t.co/YSUbvTLoEM +06/13/2018,Politicians,@ScottWalker,"Okay, I admit that I teared up a bit too but it makes you so happy to watch this family!!! https://t.co/2dbnCoF5cm" +06/13/2018,Politicians,@ScottWalker,Joined Green Bay Packaging at the announcement of their expansion yesterday. We’re proud that job creators are inve… https://t.co/T9HRgPtHq6 +06/13/2018,Politicians,@ScottWalker,Great day in Milwaukee for a @Brewers game (sadly I’m in meetings all day and not at the ballpark)! #ThisIsMyCrew https://t.co/2DJhth33Z0 +06/13/2018,Politicians,@ScottWalker,"More examples of the anger and hatred of the Left: +“… coarseness has become standard procedure in a crowded primar… https://t.co/GyXpTFsK3v" +06/13/2018,Politicians,@ScottWalker,Joined the City of Oshkosh today in celebrating the opening of the new transload terminal in town. This will give j… https://t.co/nnx6cO7Ljb +06/13/2018,Politicians,@ScottWalker,"To help Wisconsin win the 21st century, our bold reforms are working to expand broadband access for communities all… https://t.co/g0h9FvY7EU" +06/13/2018,Politicians,@ScottWalker,".@BarackObama and his big government allies finally announced what we’ve always known, they’re targeting our race i… https://t.co/MgDwrCzs2A" +06/12/2018,Politicians,@ScottWalker,Enjoyed spending this past weekend with farmers and their families in Mishicot. We’re standing with you and fightin… https://t.co/b6Kt31eN4U +06/12/2018,Politicians,@ScottWalker,Had a great time on Sunday at the Waubeka Flag Day parade! It’s a celebration of the flag and all that it stands fo… https://t.co/S8YCNwH0AH +06/12/2018,Politicians,@ScottWalker,We’re #1! https://t.co/XmI9ceXxbj +06/12/2018,Politicians,@ScottWalker,We have such great traditions here in Wisconsin – enjoyed seeing folks out supporting our dairy industry over the w… https://t.co/dD9kFQNUOn +06/12/2018,Politicians,@ScottWalker,"There is a special election today in the 1st Senate District in northeastern Wisconsin. Please vote! +https://t.co/PyBXdJxuJi" +06/12/2018,Politicians,@ScottWalker,Don’t forget that there is a special election in the 42nd Assembly district today: https://t.co/EquUHPZfp2 +06/12/2018,Politicians,@ScottWalker,"If Wisconsin is going to win the 21st century, build on our success and push back against these Far-Left groups, we… https://t.co/7zFJoTKQNT" +06/12/2018,Politicians,@ScottWalker,Here’s the full story on @BarackObama’s effort to attack us in WI. We don’t need more out of state special interest… https://t.co/jqegjCdYMx +06/12/2018,Politicians,@ScottWalker,🚨 ALERT: @BarackObama’s political machine just announced that it’s targeting our race in Wisconsin. I need your HEL… https://t.co/bAksVKEUEc +06/12/2018,Politicians,@ScottWalker,"To help connect more of our communities and expand broadband service, we’ve made another increase in our broadband… https://t.co/vz29H7eCSk" +06/12/2018,Politicians,@ScottWalker,Glad to be at Green Bay Packaging to talk about how our bold reforms are helping job creators grow and how we’re st… https://t.co/hzsqOP21cm +06/12/2018,Politicians,@ScottWalker,Happy birthday to former President George H.W. Bush! 🇺🇸 https://t.co/JpQGcGAyl0 +06/12/2018,Politicians,@ScottWalker,Great traveling across Wisconsin yesterday highlighting our expanded broadband investments -- we're making sure rur… https://t.co/sLsCQwUEHq +06/12/2018,Politicians,@ScottWalker,Good to stop by the Brown County GOP office today! Thanks for the hard work! https://t.co/Vza16pHgG3 +06/12/2018,Politicians,@ScottWalker,"Had a great weekend in Sauk, Rock, Manitowoc and Outagamie counties to celebrate Dairy Month and support our farmin… https://t.co/Oiv3HF2zJh" +06/12/2018,Politicians,@ScottWalker,This editorial cartoon from the Wisconsin State Journal says it all. We have to respond with optimism and organiza… https://t.co/OxXz5NDD8f +06/11/2018,Politicians,@ScottWalker,Visited Oconto Falls today to reinforce that we’re making brand-new investments in broadband across the state. We’r… https://t.co/WPz94rgbBR +06/11/2018,Politicians,@ScottWalker,In Eau Claire this morning at the Chippewa Valley Technical College as we talked about our new broadband investment… https://t.co/UHVBgiqbcP +06/11/2018,Politicians,@ScottWalker,Stopped by Viroqua this morning to highlight more of our broadband grants. This is just another way our bold reform… https://t.co/TbcXE6G18V +06/11/2018,Politicians,@ScottWalker,June is Dairy Month and I love working at breakfasts on the farm all over the state. The food is soooooooo good!… https://t.co/kTKGfuMPdt +06/11/2018,Politicians,@ScottWalker,Proud to be with another great group of Project SEARCH graduates in Appleton! https://t.co/CloyuFadf3 https://t.co/t4JVW57EyP +06/10/2018,Politicians,@ScottWalker,"Jordan, a Project SEARCH graduate from one of our campaign’s new TV ads, joined WSAW TV in Wausau to talk about his… https://t.co/VUlWO1Y36p" +06/10/2018,Politicians,@ScottWalker,"According to the press, at the G7 summit the @POTUS said that “We should at least consider no tariffs.” He’s right.… https://t.co/sOMnnR0rRv" +06/10/2018,Politicians,@ScottWalker,Visited the Waubeka Flag Day parade this afternoon. What a great group of patriots who are proud of our flag. Did y… https://t.co/V57dTwK8Nt +07/01/2018,Politicians,@SecretaryPerry,"Thanks to American ingenuity, American innovation, and American natural gas we’re not just exporting natural resour… https://t.co/zpaR8QiN3w" +06/30/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Just spoke to King Salman of Saudi Arabia and explained to him that, because of the turmoil & disfunction in Iran and…" +06/30/2018,Politicians,@SecretaryPerry,"The world has changed a lot in the 30 years since Ronald Reagan hosted the World Gas Conference. Today, the United… https://t.co/XPx729Euws" +06/30/2018,Politicians,@SecretaryPerry,"Earlier this week I had a meeting with Russian Energy Minister Alexander Novak, which brought together the two larg… https://t.co/m3s6zpv4aZ" +06/30/2018,Politicians,@SecretaryPerry,"America is the world leader in oil and gas production because of American ingenuity, American innovation, and hardw… https://t.co/V3SKL7m3Hj" +06/30/2018,Politicians,@SecretaryPerry,"The United States, Canada and Mexico have a highly integrated, interdependent energy market that leverages the reso… https://t.co/VhnCJwgXLK" +06/29/2018,Politicians,@SecretaryPerry,"Yesterday, I had the chance to meet with Argentine Minister of Energy @JavierJiguacel where we continued talks on h… https://t.co/goAKoFcsSf" +06/28/2018,Politicians,@SecretaryPerry,"Thirteen years ago today, 19 of America’s bravest were lost in support of Operation Redwing. On this solemn day, we… https://t.co/HbCWLT1vuL" +06/28/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Prior to departing Wisconsin, I was briefed on the shooting at Capital Gazette in Annapolis, Maryland. My thoughts and…" +06/28/2018,Politicians,@SecretaryPerry,RT @fossilenergygov: Thanks @SecretaryPerry for stopping by @fossilenergygov's booth @WGC2018! #NewEnergyRealism #WGC2018 https://t.co/lDa5… +06/28/2018,Politicians,@SecretaryPerry,Had a productive meeting with Azerbaijan’s Minister of Energy Parviz Shahbazov on the Southern Gas Corridor and str… https://t.co/gstKIhBlXN +06/28/2018,Politicians,@SecretaryPerry,"Today, U.S. Senator @LisaMurkowski delivered opening remarks about how natural gas will fuel the future prior to a… https://t.co/HxOVK4iBRi" +06/28/2018,Politicians,@SecretaryPerry,"Today, @ENERGY announced its plan to partner with @opicgov on a new partnership in Latin America. Looking forward t… https://t.co/IXnD1baTvF" +06/28/2018,Politicians,@SecretaryPerry,Kicked off day four of #WGC2018 on @SquawkCNBC. #LNG #NatGas #Energy https://t.co/pkjzMI7mF8 +06/27/2018,Politicians,@SecretaryPerry,Had a productive bilateral meeting with @qatarpetroleum’s Saad Sherida Al-Kaabi on #LNG. #WGC2018 https://t.co/eFxRq6Ztsk +06/27/2018,Politicians,@SecretaryPerry,".@IEA's 2018 Gas Report reaffirms the strength of America's growing LNG exports. This ""2nd boom"" is American… https://t.co/qpfq5SGsNd" +06/27/2018,Politicians,@SecretaryPerry,"RT @UKinUSA: ""From promoting peace to fighting terrorism, the special relationship between Britain and the US is one built on shared values…" +06/27/2018,Politicians,@SecretaryPerry,Had a great meeting with Hungary’s Minister of Foreign Affairs and Trade Péter Szijjártó on bolstering energy secur… https://t.co/l5DHSY17JU +06/27/2018,Politicians,@SecretaryPerry,Spoke with business and government leaders at @CSIS’ #WGC2018 breakfast on the rise of American #LNG exports and th… https://t.co/AxSQ6eDrG2 +06/26/2018,Politicians,@SecretaryPerry,Had a great meeting today with @USEmbPortugal Amb. @geglass60 on how American exports of #LNG are going to open new… https://t.co/qOur5NJXOP +06/26/2018,Politicians,@SecretaryPerry,"RT @fossilenergygov: Christopher Freitas, a natural gas analyst from @fossilenergygov , spoke today at #WGC2018 about the role @ENERGY is p…" +06/26/2018,Politicians,@SecretaryPerry,"Today, we celebrate 60 years of partnership and collaboration under the U.S.-U.K. Mutual Defense Agreement. The spe… https://t.co/Q4i9s4tky6" +06/26/2018,Politicians,@SecretaryPerry,"America supports expanding #LNG trade to our Asia-Pacific partners, deepening our partnerships, and advancing our s… https://t.co/CZL2Oq3cGC" +06/26/2018,Politicians,@SecretaryPerry,RT @USEmbPortugal: Amb. Glass sat down with @SecretaryPerry to discuss exciting #LNG opportunities between the U.S. and #Portugal! Another… +06/26/2018,Politicians,@SecretaryPerry,Today at 1:00 p.m. EDT I will be giving a keynote celebrating the 60th anniversary of the United States-United King… https://t.co/F7axTHAKZj +06/26/2018,Politicians,@SecretaryPerry,30 years ago no one thought the U.S. would be producing energy more cleanly and efficiently and from a wider range… https://t.co/fy0aZ1GHD8 +06/26/2018,Politicians,@SecretaryPerry,"About to kick off the World Gas Conference in Washington, D.C. + +America has become a world leader in #NatGas and… https://t.co/dwe0PgGXhq" +06/26/2018,Politicians,@SecretaryPerry,"RT @aga_naturalgas: Join us for the @WGC2018 Opening Ceremony with @SecretaryPerry +@IGU_News’ David Carroll, AGA’s Dave McCurdy and @PSETa…" +06/25/2018,Politicians,@SecretaryPerry,"The Three Seas Initiative offers a new opportunity for engagement. It is a means to increase integration, strengthe… https://t.co/v5Iy46flkD" +06/25/2018,Politicians,@SecretaryPerry,"RT @WhiteHouse: American innovation is fueling an energy success story: cleaner, more efficient use of abundant, affordable energy. @Secret…" +06/25/2018,Politicians,@SecretaryPerry,"Israel and the U.S. have long advanced the cause of freedom. Today, we began a new quest for innovation and science… https://t.co/jFOiuJrAPY" +06/25/2018,Politicians,@SecretaryPerry,Honored to sign an agreement with Israeli Energy Minister Yuval Steinitz to establish the U.S.-Israel Center of Exc… https://t.co/yngK8uKGzK +06/25/2018,Politicians,@SecretaryPerry,Summit’s ranking as the world’s fastest supercomputer demonstrates the strength of American leadership in scientifi… https://t.co/fzykLWdjtU +06/23/2018,Politicians,@SecretaryPerry,Looking for something to listen to this weekend? Check out @ENERGY’s podcast Direct Current where I sit down and ta… https://t.co/cCqS07pSnr +06/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: Thanks to the K9s like Chappy who work every day to keep the Energy Department safe! They're all good dogs. 🐶 + +#TakeYourDogToW…" +06/22/2018,Politicians,@SecretaryPerry,"Affordable, abundant energy is changing the world. We're obtaining energy from a wider range of resources than anyo… https://t.co/b86aQoi33B" +06/22/2018,Politicians,@SecretaryPerry,"This morning, I spoke at @CommerceGov's #SelectUSASummit on America's outstanding energy climate. We're in the mids… https://t.co/2AuJju61Rz" +06/22/2018,Politicians,@SecretaryPerry,"Scientists found that actinium-225 can wipe out late-stage prostate cancer in just three treatments. Now,… https://t.co/BAzXJxin7z" +06/21/2018,Politicians,@SecretaryPerry,Charles @Krauthammer was an inspiration and source of courage for so many. He will truly be missed. Anita and I are… https://t.co/5cXPm2pfgA +06/21/2018,Politicians,@SecretaryPerry,"""America needs coal and nuclear power for energy diversity."" via @Rockland_News https://t.co/iqhY1y0KEC" +06/20/2018,Politicians,@SecretaryPerry,.@ENERGY's Direct Current is back for season three and I was thrilled to be interviewed for its premiere. We talked… https://t.co/TrzGiwZ9G2 +06/20/2018,Politicians,@SecretaryPerry,"RT @ENERGY: PODCAST: Direct Current is back! Season 3 kicks of with a bang, as @SecretaryPerry sits down with us to talk supercomputers, en…" +06/18/2018,Politicians,@SecretaryPerry,“A gas pipeline disruption caused by extreme weather or equipment failure could mean prolonged electricity service… https://t.co/AhDfvO2Syv +06/16/2018,Politicians,@SecretaryPerry,"Great read on the need for nuclear energy by Sen. @lisamurkowski and @JayFaison1: “To meet demand for rural power,… https://t.co/Vl7i7ZJVUq" +06/16/2018,Politicians,@SecretaryPerry,Had a great time watching #Argentina play #Iceland in the @FIFAWorldCup with Argentine Energy Minister… https://t.co/BsdTEHPXDx +06/16/2018,Politicians,@SecretaryPerry,.@doescience reports scientific accomplishments from 40 years of Basic @ENERGY Sciences that have contributed to Am… https://t.co/suhkiQXS3w +06/15/2018,Politicians,@SecretaryPerry,America has become the world leader in combined oil and gas production while at the same time cutting emissions by… https://t.co/wXiYdQKTeG +06/15/2018,Politicians,@SecretaryPerry,"Argentina has the second largest shale gas reserves in the world, but is still a net energy importer. Working toget… https://t.co/n6NdM2rCVw" +06/15/2018,Politicians,@SecretaryPerry,Excited to join my fellow #G20 energy ministers at the #G20Argentina. This is an exciting time for Argentina and th… https://t.co/IIZ36kKpVQ +06/14/2018,Politicians,@SecretaryPerry,Happy birthday to the @USArmy! Thank you for keeping America safe for 243 years. https://t.co/cYPTe4cpRK +06/14/2018,Politicians,@SecretaryPerry,"Happy birthday, @POTUS. Thank you for all of your hard work to make America great. https://t.co/deIf4VKiNs" +06/14/2018,Politicians,@SecretaryPerry,"Today, we celebrate 241 years of the Stars and Stripes. Thank you to the men and women who fought for our independe… https://t.co/NYig0ZOtX3" +06/13/2018,Politicians,@SecretaryPerry,RT @ScienceUnderSec: I recently spoke with @sciencemagazine about my background and vision for @ENERGY’s science programs. Read the intervi… +06/13/2018,Politicians,@SecretaryPerry,"Earlier this month I met with @POTUS, @FLOTUS, @VP and @SecNielsen for the 2018 hurricane briefing at the @fema HQ.… https://t.co/IcOc9BdhmQ" +06/13/2018,Politicians,@SecretaryPerry,"“200,000 trillion calculations per second: U.S. launches the world’s most powerful supercomputer.” via @usatoday +https://t.co/rpktBxef2z" +06/12/2018,Politicians,@SecretaryPerry,"“With 4,608 servers, its equipment fills the space of two tennis courts and weighs more than a commercial aircraft.… https://t.co/iqdwx8McFy" +06/12/2018,Politicians,@SecretaryPerry,#HurricaneSeason has officially begun and every year the Federal government works tirelessly to prepare for such ev… https://t.co/u8p8RkeICj +06/12/2018,Politicians,@SecretaryPerry,Anita and I are keeping @larry_kudlow in our prayers tonight. +06/12/2018,Politicians,@SecretaryPerry,"“Summit boasts a peak performance of 200,000 trillion calculations per second and will be eight times more powerful… https://t.co/n5Wmy4y5VZ" +06/11/2018,Politicians,@SecretaryPerry,"“If a stadium built for 100,000 people was full, and everyone in it had a modern laptop, it would take 20 stadiums… https://t.co/5G7EYJazyh" +06/09/2018,Politicians,@SecretaryPerry,"RT @ORNL: Signed, sealed, delivered. + +✍️ @SecretaryPerry @IBM @nvidia + +#Summit2018 https://t.co/BGux7o8QDF" +06/08/2018,Politicians,@SecretaryPerry,It was great to see all of the children and families enjoying the #STEM fair at @ORNL’s family day. #StemRising https://t.co/AXzlrafxyP +06/08/2018,Politicians,@SecretaryPerry,"Meet Summit — the newest and most powerful supercomputer in the world at @ornl. +Watch live here: https://t.co/s0S7Es8cWH" +06/08/2018,Politicians,@SecretaryPerry,"Just signed @ENERGY & @ORNL’s newest supercomputer, Summit. This is now the most powerful computer in the world and… https://t.co/zVrmdBdleg" +06/08/2018,Politicians,@SecretaryPerry,Visiting @ORNL for an exciting day celebrating American leadership in supercomputing. #NationalLab https://t.co/u1363Xt4AE +06/08/2018,Politicians,@SecretaryPerry,"500 Days of American Greatness: “$3 billion payoff: 101 utilities cut rates, credit GOP tax cuts” via @dcexaminer +https://t.co/T85i3L7CLv" +06/06/2018,Politicians,@SecretaryPerry,"It’s the 74th anniversary of one of the great days in world history, #DDay, a day where Americans sacrificed greatl… https://t.co/dwhMZ1katc" +06/05/2018,Politicians,@SecretaryPerry,Ran into @HurdOnTheHill yesterday at @Energy’s #DOECyberCon18 conference where we talked about the need to be a wor… https://t.co/vRKpI0vjPD +06/05/2018,Politicians,@SecretaryPerry,RT @ENERGY: .@EnergyDepSec Dan Brouillette discusses the need to increase America’s capability to fight imminent cyber threats facing our c… +06/05/2018,Politicians,@SecretaryPerry,500 Days of American Greatness: The United States is a world leader in oil and gas production combined. https://t.co/Kw45aIXYAn +06/04/2018,Politicians,@SecretaryPerry,Today is @realDonaldTrump’s 500th day in office & his commitment to American greatness. In 500 days @POTUS and… https://t.co/Xo8tpbUARV +06/04/2018,Politicians,@SecretaryPerry,"Cybersecurity is a national security issue. That is why @ENERGY has created #CESER, DOE's new office to combat cybe… https://t.co/KQa1Vtzcbs" +06/04/2018,Politicians,@SecretaryPerry,"RT @WhiteHouse: Breakthroughs in renewable energy, the worldwide web, satellite technologies, and safe drinking water are just a few of the…" +05/31/2018,Politicians,@SecretaryPerry,"About to speak at the @TexasIsrael and @ENERGY #CyberSecurity Conference on ""Securing Our Critical Infrastructure""… https://t.co/yf6qDbqi9K" +05/30/2018,Politicians,@SecretaryPerry,RT @lisamurkowski: Check out the editorial I wrote w/ @Energy @SecretaryPerry on why Alaska is the best place in the world to prove a conce… +05/29/2018,Politicians,@SecretaryPerry,"Sen. @lisamurkowski and I want to make Alaska the home of the ""next big idea,"" which is why @ENERGY is hosting its… https://t.co/nqjFahP5w7" +05/28/2018,Politicians,@SecretaryPerry,"Today, we honor the men and women who paid the ultimate sacrifice for our safety and liberty. This #MemorialDay, le… https://t.co/j1Ki1HyLgS" +05/24/2018,Politicians,@SecretaryPerry,.@POTUS' tax cuts and reductions in onerous regulations have provided people the freedom and incentive necessary to… https://t.co/tKHaIlup29 +05/24/2018,Politicians,@SecretaryPerry,"To better help small businesses become more engaged with @ENERGY, our Office of Small and Disadvantaged Business Ut… https://t.co/ifJIvUEJ6Q" +05/24/2018,Politicians,@SecretaryPerry,"Spoke to entrepreneurs and innovators at @ENERGY's Small Business Summit today in Austin, Texas. Supporting small b… https://t.co/Uc9BwcLwM3" +05/24/2018,Politicians,@SecretaryPerry,RT @EnergyDepSec: Very proud to launch the #CEMNICEFuture Initiative today at #CEM9. @SecretaryPerry and I are quite proud to have this ini… +05/23/2018,Politicians,@SecretaryPerry,RT @EnergyDepSec: Very proud to share the successful clean energy research & development efforts in the U.S. with global leaders at #MI3 to… +05/22/2018,Politicians,@SecretaryPerry,Had a great meeting with @POTUS’ @WhiteHouse Fellows on the future of American energy. #NewEnergyRealism #CoolJob https://t.co/HNgfgLajke +05/22/2018,Politicians,@SecretaryPerry,"RT @EnergyDepSec: This week I’m in Copenhagen, Demark at the @CEMSecretariat Clean Energy Minsterial to further collaboration on one of the…" +05/18/2018,Politicians,@SecretaryPerry,Praying for the victims and their families of the Sante Fe high school shooting in Texas. Thank you to the first re… https://t.co/67tIfbMMlp +05/17/2018,Politicians,@SecretaryPerry,"RT @fossilenergygov: Yesterday, @SecretaryPerry spoke @WorldCoal on needing industry’s input to develop small-scale, modular #coal plants o…" +05/17/2018,Politicians,@SecretaryPerry,"RT @ScienceUnderSec: Last week, I had the opportunity to participate at the @WhiteHouse Summit on Artificial Intelligence for American Indu…" +05/15/2018,Politicians,@SecretaryPerry,RT @ENERGY: TODAY: Love energy data? ♥️⚡📈 Join us at 3pm ET on Facebook for a LIVE Q&A with an energy expert from @EIAGov. We'll highlight… +05/14/2018,Politicians,@SecretaryPerry,"Today, we announced a new infrastructure project that will help clean up the legacy of the Cold War. + +Learn more a… https://t.co/ExCx5DkhwQ" +05/13/2018,Politicians,@SecretaryPerry,"Happy Mother’s Day to my wonderful mom, my beautiful wife, and the best daughter-in-law a grandfather could ask for… https://t.co/5zw1krAWJp" +05/11/2018,Politicians,@SecretaryPerry,"RT @lisamurkowski: I was proud to host Secretary of Energy Rick Perry in Alaska last week, to give him a firsthand look at some of the ener…" +05/10/2018,Politicians,@SecretaryPerry,"Last week I toured Alaska's energy infrastructure with Sen. @LisaMurkowski, @SenDanSullivan, and @RepDonYoung. Alas… https://t.co/PEKSqEB4Qr" +05/09/2018,Politicians,@SecretaryPerry,"RT @ENERGY: This week, @SecPompeo announced new efforts by the U.S. and Mexico to partner on nuclear energy. #NewEnergyRealism https://t.co…" +05/08/2018,Politicians,@SecretaryPerry,The Americas are safer today because as a whole we’re producing more energy. America’s new role as an energy export… https://t.co/U81qrlfPK7 +05/07/2018,Politicians,@SecretaryPerry,Had a great lunch today with some wonderful @ENERGY Germantown employees. Everywhere I go in DOE I’m continually le… https://t.co/eIFUqK9Ubp +05/07/2018,Politicians,@SecretaryPerry,".@EnergyDepSec, Under Secretary of Energy Mark Menezes, @ScienceUnderSec, and I are participating in the first Nati… https://t.co/kmjZfpCJ9R" +05/07/2018,Politicians,@SecretaryPerry,Had a great all-hands meeting with @ENERGY employees at our Germantown campus. The dedication and innovation of the… https://t.co/c4bdPO6rai +05/03/2018,Politicians,@SecretaryPerry,The future of America is #supercomputers #Exascale 🇺🇸 https://t.co/qVTDFxJoal +05/03/2018,Politicians,@SecretaryPerry,Just wrapped up an amazing tour of Alaska’s energy infrastructure and meeting with the great people who make the al… https://t.co/IDKyIWUfcQ +05/03/2018,Politicians,@SecretaryPerry,"RT @VP: As we mark 2018 #NationalDayofPrayer at the @WhiteHouse, we remember the American people believe in prayer. Always have. Prayer is…" +05/03/2018,Politicians,@SecretaryPerry,Had the opportunity to tour Alaska’s oil and gas infrastructure with @repdonyoung today. The @AlyeskaPipeline and e… https://t.co/akItqlKXjR +05/02/2018,Politicians,@SecretaryPerry,The scale of Kodiak’s flywheel is amazing. 2 MW of flywheel technology supports the ship crane and the islands’ win… https://t.co/LdtOuxT4xC +05/02/2018,Politicians,@SecretaryPerry,"This is 3 MW of battery storage, which helps support Kodiak islands’ electric wind and hydropower resources.… https://t.co/2U2b8sarRY" +05/01/2018,Politicians,@SecretaryPerry,"Six wind turbines produce 9 MW, about 20 percent of Kodiak’s annual energy needs. #NewEnergyRealism #Alaska #USA https://t.co/9iDiqwTp39" +05/01/2018,Politicians,@SecretaryPerry,"Started today in Kodiak, Alaska with Kodiak Electric Association which generates 98 percent of the island’s electri… https://t.co/BW59WifL8p" +05/01/2018,Politicians,@SecretaryPerry,Excited to tour Alaska’s energy infrastructure with Sen. @LisaMurkowski. Can’t wait to see #NewEnergyRealism at wor… https://t.co/BAMtLr448x +04/28/2018,Politicians,@SecretaryPerry,RT @realDonaldTrump: I urge all Americans to participate in #takebackday tomorrow! Let’s come together and BEAT last October’s record of di… +04/27/2018,Politicians,@SecretaryPerry,RT @AEF_Program: #EinsteinFellows17 and alumni are volunteering @DOE_SC_NSB and were able to meet @SecretaryPerry during his remarks to fin… +04/27/2018,Politicians,@SecretaryPerry,Students from across the country made their way to the Nation’s Capital to compete in the 2018 National Science Bow… https://t.co/fjUdNLKqDq +04/27/2018,Politicians,@SecretaryPerry,Investment in advanced nuclear power technology will support a strong domestic nuclear industry and provide America… https://t.co/KB9wFupjAb +04/27/2018,Politicians,@SecretaryPerry,Excited to be with some of the brightest students in the country at the National Science Bowl @DOE_SC_NSB finals. https://t.co/7vJCV0iGry +04/26/2018,Politicians,@SecretaryPerry,RT @LGHNNSA: Some special guests @Energy are getting the chance to explore the cool world of #STEM careers today. Wouldn’t be surprised if… +04/26/2018,Politicians,@SecretaryPerry,"Excited to be with Mike Pompeo when the 50th vote was cast to confirm him as Secretary of State! @StateDept,… https://t.co/H35QzhXfjI" +04/26/2018,Politicians,@SecretaryPerry,The signing of these SOIs demonstrates the shared commitment of France and United States to nuclear power as an aff… https://t.co/LGWYqqdt4A +04/26/2018,Politicians,@SecretaryPerry,Signed two Statements of Intent with France’s @CEA_Recherche that will further research cooperation between the U.S… https://t.co/zDFIgW46ym +04/26/2018,Politicians,@SecretaryPerry,What is Austin. Thanks for the shoutout @jeopardy. #Texas #MakeAmericaLikeTexas 😉 https://t.co/qovjFqeD5B +04/25/2018,Politicians,@SecretaryPerry,Had a chance to participate in federal #TakeBackDay. Proud of our @Energy workforce who took the opportunity to dis… https://t.co/q6xkgMpeyo +04/24/2018,Politicians,@SecretaryPerry,46 people die every day from prescription opioid overdoses. Protect your family & friends by finding a disposal sit… https://t.co/m5qF1LqS1j +04/24/2018,Politicians,@SecretaryPerry,Honored to be a guest at the @WhiteHouse Arrival Ceremony for French President @EmmanuelMacron. Thank you @POTUS an… https://t.co/Io8wcPszXp +04/23/2018,Politicians,@SecretaryPerry,"RT @ARPAE: ""What you're seeing here today is a window into our future, and the products of some of the very best and brightest in America.""…" +04/22/2018,Politicians,@SecretaryPerry,"This weekend, @ENERGY celebrated #EarthDay at @EarthXorg in Dallas. On exhibit were technological breakthroughs fro… https://t.co/pc5n7MHNIQ" +04/22/2018,Politicians,@SecretaryPerry,"RT @USAndIndia: Ambassador Juster, Deputy Chief of Mission Carlson, and @SecretaryPerry participated in our #EarthDay2018 celebrations by…" +04/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: Happy #EarthDay! Here are a few easy ways you can save energy at home: +💡Switch to efficient lightbulbs +🌡️Adjust thermostat +🚰…" +04/21/2018,Politicians,@SecretaryPerry,"RT @ENERGY: We’re at @EarthXorg in Dallas for #EarthDay weekend! + +Follow our Instagram stories here 👉https://t.co/42XxzwdM4M #EarthX 🌎 htt…" +04/19/2018,Politicians,@SecretaryPerry,The @FIRSTweets Robotics Competition is proof that #STEM can be fun and exciting. It was amazing to witness firstha… https://t.co/oQ8AUCrRnx +04/18/2018,Politicians,@SecretaryPerry,"Anita and I send our love to the entire Bush family tonight. + +We should all cherish the wisdom we received from Fi… https://t.co/swUdjupYLK" +04/17/2018,Politicians,@SecretaryPerry,Today is the last #TaxDay that Americans and companies will have to file under the old system. We're already seeing… https://t.co/ear422ytj2 +04/17/2018,Politicians,@SecretaryPerry,"#NewEnergyRealism means investing in all of our abundant energy sources, including solar technologies, which will h… https://t.co/pAS1FUZ0YF" +04/17/2018,Politicians,@SecretaryPerry,"RT @OfficeOfRKSingh: Minister of Power, and New & Renewable Energy, Shri @RajKSinghIndia met United States Secretary of Energy, H.E. @Secre…" +04/17/2018,Politicians,@SecretaryPerry,RT @dpradhanbjp: Addressing a Joint Press Conference with .@SecretaryPerry https://t.co/6wHxJXdeGv +04/17/2018,Politicians,@SecretaryPerry,RT @USAmbIndia: Excellent discussion at the inaugural session of the Strategic Energy Partnership with @SecretaryPerry and @dpradhanbjp. Gr… +04/17/2018,Politicians,@SecretaryPerry,"RT @dpradhanbjp: Honoured to meet US Sec. of Energy,Mr. @SecretaryPerry on his first visit to India. Jointly launched the India-US Strategi…" +04/17/2018,Politicians,@SecretaryPerry,Proud to host the first inaugural session of the U.S.-India Strategic Energy Partnership with @dpradhanbjp. This pa… https://t.co/FGk0JBa83F +04/16/2018,Politicians,@SecretaryPerry,Had a wonderful time this evening at an industry reception with U.S. and Indian partners. Continued collaboration b… https://t.co/8LY7MGwyue +04/16/2018,Politicians,@SecretaryPerry,"This U.S., India agreement will pave the way for collaborative innovation between @Fermilab's LBNF and DUNE neutrin… https://t.co/E10w2L1UyS" +04/16/2018,Politicians,@SecretaryPerry,"Today, I had the privilege to sign an agreement with India's Atomic Energy Secretary Dr. Sekhar Basu to expand Indi… https://t.co/w7p1Ssa2Ma" +04/16/2018,Politicians,@SecretaryPerry,"Celebrating New Delhi #EarthDay on my India trip. @Energy is working with our Indian partners to produce energy, gr… https://t.co/YBVFgggxsT" +04/16/2018,Politicians,@SecretaryPerry,"Thank you for the warm welcome to India, @USAmbIndia and @USAndIndia. The embassy’s continued support of #USIndia… https://t.co/ZEnccQx6cN" +04/16/2018,Politicians,@SecretaryPerry,Under Secretary of Energy Mark Menezes and I had a great roundtable meeting this morning with @USISPForum and India… https://t.co/J2EHVk2QWx +04/13/2018,Politicians,@SecretaryPerry,"Building on the research of our #NationalLabs, @ENERGY will help tackle this opioid #CrisisNextDoor. One of our top… https://t.co/AK6aBySMlM" +04/13/2018,Politicians,@SecretaryPerry,Had the opportunity to visit @NSCsafety’s #PrescribedToDeath Opioid Memorial today. It’s a sobering reminder and ca… https://t.co/Bm13bMViJ9 +04/12/2018,Politicians,@SecretaryPerry,Excited that we finally had Ted Garrish sworn in as Assistant Secretary of @Energy for International Affairs. I’m c… https://t.co/4wEIzU6Bne +04/12/2018,Politicians,@SecretaryPerry,"Today, on Yom HaShoah, we remember the pain and suffering endured by the Jewish people and the six million lives lo… https://t.co/J878pIq1ym" +04/12/2018,Politicians,@SecretaryPerry,Had a productive meeting with @HouseCommerce @EnergyCommerce on @Energy's #FY2019 priorities to advance… https://t.co/LWxgno4V1m +04/12/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""DOE’s supercomputing and other advance technologies capabilities play a crucial role in combating threats to our energy and na…" +04/11/2018,Politicians,@SecretaryPerry,Today I had the opportunity to testify with @ScienceUnderSec & @LGHNNSA at the Senate Appropriations Subcommittee o… https://t.co/GALI2oVRHg +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""We don’t have to choose between growing our economy and caring for our environment. By embracing innovation, we can benefit bo…" +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: ""[Exascale supercomputers] will be housed at Argonne, Oak Ridge, and Lawrence Livermore National Labs. They hold immense potent…" +04/11/2018,Politicians,@SecretaryPerry,RT @LGHNNSA: Going to the Hill today with @SecretaryPerry & @ScienceUnderSec to testify on @POTUS' FY19 budget request before the Senate Ap… +04/11/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “What is us, Alex?” — @Jeopardy #FinalJeopardy #TodayOnJ + +https://t.co/tzkBXYtz3A https://t.co/UujeylHRQe" +04/10/2018,Politicians,@SecretaryPerry,"RT @ENERGY: New #exascale computers deployed at @Livermore_Lab and @ORNL will help scientists: +💊 Improve healthcare +🔋 Build better batter…" +04/09/2018,Politicians,@SecretaryPerry,"People don’t think of @Energy and the @DeptVetAffairs as being partners, but we’re working together to harness the… https://t.co/ZmNPdYYbkC" +04/09/2018,Politicians,@SecretaryPerry,Five of the 10 fastest supercomputers in the world belong to the Department of @Energy. DOE is investing $1.8 billi… https://t.co/gUtQOFmhKH +04/09/2018,Politicians,@SecretaryPerry,Innovation over regulation is the reason America is a world leader in energy and supercomputing. Innovation has tur… https://t.co/j5woufOoyD +04/09/2018,Politicians,@SecretaryPerry,"RT @FoxBusiness: .@SecretaryPerry on supercomputers: ""This computing capacity that we have now is going to be able to allow us to address i…" +04/09/2018,Politicians,@SecretaryPerry,The Department of @Energy’s initiative for new supercomputers will ensure America’s continued leadership in the vit… https://t.co/ceyzhDcfUz +04/09/2018,Politicians,@SecretaryPerry,"RT @foxandfriends: Coming up…! +@LindseyGrahamSC +@whignewtons +@dbongino +@RepRalphNorman +@HuntingElChapo +@CBP +@DiamondandSilk +@GovAbbott +@…" +04/09/2018,Politicians,@SecretaryPerry,"Congratulations to fellow Texan, @PReedGolf, on his first @TheMasters victory. https://t.co/NinN9lodoU" +04/08/2018,Politicians,@SecretaryPerry,"Had a wonderful time with HRH Mohammed bin Salman, Crown Prince of Saudi Arabia, at the #SABIC event in Katy, Texas… https://t.co/bdZyDWEtD6" +04/05/2018,Politicians,@SecretaryPerry,Just finished a great meeting with @SenateMajLdr and the Paducah Site’s amazing workforce. #energy https://t.co/8hHqeiKgkb +04/05/2018,Politicians,@SecretaryPerry,Thank you to the @hccchamber and @SenateMajLdr for the opportunity to speak at your chamber's lunch today. Kentucky… https://t.co/DgqhUNSjGf +04/05/2018,Politicians,@SecretaryPerry,Kicked off a trip to Kentucky this morning at the Christian County & Hopkinsville energy roundtable with… https://t.co/fPtBc4GTBm +04/04/2018,Politicians,@SecretaryPerry,RT @ENERGY: From sea to shining to sea: Energy Department leadership visits all 17 #NationalLabs⚡️https://t.co/j5N4P6Y3vH @SecretaryPerry @… +04/04/2018,Politicians,@SecretaryPerry,Dr. Martin Luther King Jr. was a man of service who led the fight for equality and paid the ultimate price to advan… https://t.co/cxr0gPUnb1 +04/04/2018,Politicians,@SecretaryPerry,"RT @realDonaldTrump: Today we honor Dr. Martin Luther King, Jr. on the 50th anniversary of his assassination. Earlier this year I spoke abo…" +04/02/2018,Politicians,@SecretaryPerry,"RT @ENERGY: We're teaming up with @ColoradoStateU, @Cummins and @Woodward_Inc to develop medium, heavy-duty and on-road natural gas engines…" +04/02/2018,Politicians,@SecretaryPerry,Had a wonderful time at the @WhiteHouse Easter Egg Roll with my family and @POTUS today. https://t.co/wCkgosvmwc +04/01/2018,Politicians,@SecretaryPerry,He is Risen! Easter is a time to reflect on the joy of the resurrection. Happy Easter! https://t.co/86FaxNITgZ +03/31/2018,Politicians,@SecretaryPerry,Sending my best wishes to all celebrating Pesach. May we all remember and celebrate the inspirational message of re… https://t.co/EfWD6CenhM +03/30/2018,Politicians,@SecretaryPerry,There is no greater sacrifice. Blessings to you and yours this Good Friday. https://t.co/PexxGP67iR +03/30/2018,Politicians,@SecretaryPerry,"RT @ENERGY: As #WomensHistoryMonth comes to a close, we celebrate those who have advanced American energy, science, and technology. #WomenI…" +03/29/2018,Politicians,@SecretaryPerry,An investment in American infrastructure is an investment in American workers. @POTUS' #InfrastructureInAmerica pla… https://t.co/hoFtEdZiiG +03/29/2018,Politicians,@SecretaryPerry,RT @WhiteHouse: .@ENERGY Secretary Rick Perry: “Rising LNG Exports A Sign Trump Administration’s Infrastructure Policies Are Paying Off” ht… +03/29/2018,Politicians,@SecretaryPerry,"America’s energy infrastructure is in need of rebuilding, and @POTUS’ “Building a Stronger America” infrastructure… https://t.co/MuzyhQdwoC" +03/28/2018,Politicians,@SecretaryPerry,RT @SLAClab: Lab leadership welcomes @ENERGY @SecretaryPerry to SLAC this beautiful March morning for a tour of our cutting-edge facilities… +03/28/2018,Politicians,@SecretaryPerry,"⚡️ “Touring Berkeley Lab” + +https://t.co/FJriuE0zpY" +03/27/2018,Politicians,@SecretaryPerry,".@SandiaLabs plays a pivotal role in our Nation’s defense, and it was a privilege to see firsthand the hard work th… https://t.co/BFDzIZXpgr" +03/27/2018,Politicians,@SecretaryPerry,Stopping for some fuel between the labs this morning at @innoutburger. #innout #california #energy https://t.co/WDYai2JfwZ +03/27/2018,Politicians,@SecretaryPerry,"Had a great all hands discussion with scientists, researchers, and innovators from the @Livermore_Lab and… https://t.co/yFjUitRA4l" +03/26/2018,Politicians,@SecretaryPerry,Had a great discussion at lunch with veterans in science and technology at @Livermore_Lab on @ENERGY's #ACTIV progr… https://t.co/Rl30MwbcaE +03/26/2018,Politicians,@SecretaryPerry,RT @Livermore_Lab: Today we’re hosting @ENERGY’s @SecretaryPerry at the Lab to see how we’re making a difference in the security of our nat… +03/26/2018,Politicians,@SecretaryPerry,Just finished touring the largest and most energetic laser in the world at @Livermore_Lab's National Ignition Facil… https://t.co/gpIvCBiA9N +03/26/2018,Politicians,@SecretaryPerry,Excited to be visiting @Livermore_Lab where @ENERGY is working with our #NationalLabs to make America a safer place… https://t.co/vzag6MPDpL +03/26/2018,Politicians,@SecretaryPerry,On #NationalMedalOfHonorDay we honor those who showed valor in the face of adversity. One such man was First Lieute… https://t.co/064QmoW9cX +03/23/2018,Politicians,@SecretaryPerry,"While fossil fuel use and demand continues to rise so does the deployment of renewables, which made the #USA🇺🇸 numb… https://t.co/GlWeLiV7ja" +03/23/2018,Politicians,@SecretaryPerry,"Today, I went on a tour of @BAMC to learn how the Department of @Energy can help the @USArmy improve care for soldi… https://t.co/ncCStHXgiw" +03/22/2018,Politicians,@SecretaryPerry,"#TBT: Proud to join @DepSecHargan earlier this week for the swearing-in ceremony of my good friend, Dr. Brett Gior,… https://t.co/XWU0ybS0kN" +03/22/2018,Politicians,@SecretaryPerry,"Thank you @SASCMajority Chair @SenJohnMcCain, Ranking Member @SenJackReed, and Sen. @JimInhofe for hosting a produc… https://t.co/sEvvTPHAbk" +03/22/2018,Politicians,@SecretaryPerry,"For 100 years @LyondellBasell's Houston refinery has provided reliable energy to Texas and the Nation. Today, they… https://t.co/VKLv39xFTP" +03/22/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “[@ENERGY’s] budget request capitalizes on the Department of Energy’s scientific capabilities to advance our nuclear security,…" +03/22/2018,Politicians,@SecretaryPerry,RT @ENERGY: “The Department of @Energy’s role in our national security is one I undertake with the utmost seriousness.” – @SecretaryPerry a… +03/22/2018,Politicians,@SecretaryPerry,RT @SASCMajority: Today SASC will hold a hearing on challenges in the Department of @ENERGY atomic energy defense programs with @SecretaryP… +03/21/2018,Politicians,@SecretaryPerry,"Expanding and exporting nuclear energy is a key part of #NewEnergyRealism. +#Energy #USA +https://t.co/0HtszTgWaJ" +03/21/2018,Politicians,@SecretaryPerry,It was an honor to host Crown Prince Mohammad bin Salman of Saudi Arabia with @POTUS at the @WhiteHouse yesterday. https://t.co/ihNLrJU7Bc +03/20/2018,Politicians,@SecretaryPerry,Excited to be working with @POTUS’ @WhiteHouse on using prizes and challenges to foster innovation that improves Am… https://t.co/Ei9xrszF3a +03/20/2018,Politicians,@SecretaryPerry,Thank you @EnergyGOP Chair @LisaMurkowski and @EnergyDems' Ranking Member @SenatorCantwell for a productive hearing… https://t.co/qGoFjvnATw +03/20/2018,Politicians,@SecretaryPerry,"RT @ENERGY: “Wherever I go, one thing is made abundantly clear to me: those who work for the Department of Energy are dedicated, they’re pa…" +03/20/2018,Politicians,@SecretaryPerry,RT @NNSANews: #NNSA’s FY19 budget request is the result of a disciplined process to prioritize funding for validated requirements and will… +03/20/2018,Politicians,@SecretaryPerry,"RT @lisamurkowski: Today I chaired an Energy Committee hearing, where @SecretaryPerry presented the President’s FY19 budget request for the…" +03/20/2018,Politicians,@SecretaryPerry,"RT @NEI: TUNE IN: Senate Energy panel to discuss @ENERGY fiscal year 2019 budget with @SecretaryPerry at 10 am ET +@EnergyGOP @EnergyDems +h…" +06/29/2018,Politicians,@JoeBiden,"We need more men like @terrycrews who will stand up and speak out. You’re helping change the culture, Terry. It mat… https://t.co/4f92EQCtEb" +06/29/2018,Politicians,@JoeBiden,"Another shooting. Another night in America where a father, a wife, a friend, a neighbor won’t be coming home. We ca… https://t.co/zdl0fAGZIp" +06/28/2018,Politicians,@JoeBiden,"It’s up to us, America. Speak out. Rise up. Be heard. The price to be paid for putting our values at risk must be c… https://t.co/pb0DuyNlxp" +06/28/2018,Politicians,@JoeBiden,Advice and consent. Absent that—which we’ve always had for nominees in election years in the past—we shouldn’t move… https://t.co/ybVgl3xzRi +06/28/2018,Politicians,@JoeBiden,I wish this Senate would force a consensus choice—as we did with Justice Kennedy—it no longer has the will. +06/28/2018,Politicians,@JoeBiden,I wish this President would engage in conversations and nominate a consensus candidate. That’s what we’ve done in t… https://t.co/WDOIF2zWgj +06/28/2018,Politicians,@JoeBiden,"I said a year ago we’re living through a battle for the soul of this nation. Now there can be no doubt. Roe, Oberge… https://t.co/Vao0twNtQb" +06/27/2018,Politicians,@JoeBiden,"Inspired by the patients, families, clinicians, and researchers of @stjuderesearch I met earlier this month. They a… https://t.co/ifsZxuRnCh" +06/26/2018,Politicians,@JoeBiden,We don’t need to treat migrants from Central America with cruelty to strengthen US border security. We need persona… https://t.co/2iq6gJxKX4 +06/20/2018,Politicians,@JoeBiden,"A policy that separates young children from their parents isn’t a “deterrent”. It’s unconscionable. + +A policy that… https://t.co/IjWCFZoxRq" +06/16/2018,Politicians,@JoeBiden,"RT @PoetryInAmerica: For #FathersDay, we’re giving free access to our episode on Robert Hayden’s “Those Winter Sundays,” available at https…" +06/15/2018,Politicians,@JoeBiden,RT @BidenCancer: Why this new cancer award may matter more than most https://t.co/WqgCgGlWFD via @FortuneMagazine +06/15/2018,Politicians,@JoeBiden,"RT @DrBiden: Sometimes, it’s the smallest kindness that can make the biggest difference. FIERCE Awards celebrate exceptional people doing i…" +06/11/2018,Politicians,@JoeBiden,RT @DrBiden: Parents: Important information on how to keep your kids safe this summer from @BeauBidenFdn. Review & share. https://t.co/HLkD… +06/09/2018,Politicians,@JoeBiden,"PEPFAR is one of the most successful, effective, and world-changing initiatives the United States has ever led. Now… https://t.co/HFIh0MTOAu" +06/09/2018,Politicians,@JoeBiden,Jamie Dimon & Warren Buffett's call to end quarterly guidance is an important step toward ending our nation's cultu… https://t.co/UQI5onBW80 +06/08/2018,Politicians,@JoeBiden,"GOP all-out assault on healthcare continues. First, they want to cut funding for CHIP. Now DOJ trying to end protec… https://t.co/Vp7Ts6cTel" +06/08/2018,Politicians,@JoeBiden,"Putin’s Russia invaded its neighbors, violated our sovereignty by undermining elections, and attacks dissidents abr… https://t.co/k5egKTRHce" +06/07/2018,Politicians,@JoeBiden,RT @DrBiden: Join us and follow the #WalkOfAmerica journey at @supportthewalk & learn more about the entire team: https://t.co/mEK9WQLVTe (… +06/07/2018,Politicians,@JoeBiden,RT @DrBiden: Joe and I checked in with the amazing military veterans of the #WalkOfAmerica team & were so inspired to hear how they're doin… +06/06/2018,Politicians,@JoeBiden,"They may have murdered our heroes, but the dream still lives buried deep in our broken hearts. Fifty years after he… https://t.co/wGoNN4hUhs" +05/31/2018,Politicians,@JoeBiden,"Last year, Virginians showed up to elect leaders who believe health care is a right, not a privilege. As a result,… https://t.co/z0RNPoQCnM" +05/30/2018,Politicians,@JoeBiden,"Looking forward to continuing my #AmericanPromiseTour in June and discussing “Promise Me, Dad” with these inspiring… https://t.co/3DAv8Ypy9Q" +05/29/2018,Politicians,@JoeBiden,"RT @DrBiden: Today, as we remember all the brave men & women who have made the ultimate sacrifice for our country, let's also honor their f…" +05/28/2018,Politicians,@JoeBiden,"Our men & women in uniform are the heart, the soul, and the spine of this nation. Today we remember those among the… https://t.co/tDDOxhNoU1" +05/27/2018,Politicians,@JoeBiden,"In a moment of crisis, Jason Seaman showed incredible courage. Running directly into gunfire to save his students’… https://t.co/GqNHai3Wuv" +05/25/2018,Politicians,@JoeBiden,"Today, the @OECD officially invited Colombia to become its 37th member. Congratulations to President… https://t.co/WwXSAneYmO" +05/22/2018,Politicians,@JoeBiden,It favors the powerful over the powerless and stacks the deck even further against working people. It's wrong. +05/22/2018,Politicians,@JoeBiden,Yesterday’s Supreme Court decision was a huge blow to workers. It denies them the ability to take their employers… https://t.co/Y7PhFly9YD +05/21/2018,Politicians,@JoeBiden,"Everyone deserves to be treated with dignity and respect, but too many LGBTQ Americans are still denied this basic… https://t.co/aXBMcLOWwP" +05/18/2018,Politicians,@JoeBiden,Enough is enough is enough. Decent people have to take a stand. These are our children. +05/18/2018,Politicians,@JoeBiden,"Count me in, @De11eDonne. Proud to take a stand with you and the incredible athletes of @WNBA who are partnering wi… https://t.co/p2UIYnqr3W" +05/16/2018,Politicians,@JoeBiden,"Guys, if you see one of your classmates trying to take advantage of a woman who did not or could not consent, you m… https://t.co/5P4SS7qYtA" +05/15/2018,Politicians,@JoeBiden,Harry Reid is literally and figuratively a fighter. I’m looking forward to working with him again soon. My thoughts… https://t.co/HVCOwtdWS8 +05/15/2018,Politicians,@JoeBiden,"On behalf of the whole Biden family, I’d like to offer our thoughts and best wishes to @FLOTUS for a swift and full recovery." +05/15/2018,Politicians,@JoeBiden,Joined today @UDBidenInst by one of the most brilliant public servants I’ve ever worked with: @ErnestMoniz. By inve… https://t.co/ySvVcwdUV9 +05/12/2018,Politicians,@JoeBiden,Free and fair elections are at the heart of liberal democracy. That’s why I’ve joined @AndersFoghr and Michael Cher… https://t.co/L06qrkKYaj +05/08/2018,Politicians,@JoeBiden,"Today’s announcement that the United States will withdraw from the Iran nuclear deal is a profound mistake. + +https://t.co/Odx33rBf3V" +05/04/2018,Politicians,@JoeBiden,RT @DrBiden: Our hearts ache for the families of the brave airmen of the Puerto Rico National Guard killed in this week’s crash in SC. Thei… +04/25/2018,Politicians,@JoeBiden,Every person is entitled to be treated with dignity and respect. But far too often LGBTQ youth in this country are… https://t.co/WwiyzG96IE +04/20/2018,Politicians,@JoeBiden,"Cancer patients and their families deserve a system that puts saving lives above every other thing. With your help,… https://t.co/4PnsHyykqD" +04/19/2018,Politicians,@JoeBiden,Testing rape kits should & must be a national priority. I’m proud to have been interviewed for @Mariska’s… https://t.co/w5tGbmpX3Q +04/18/2018,Politicians,@JoeBiden,"RT @bidenfoundation: Tune in NOW to watch @JoeBiden, @ItsOnUs and more recognize the bravery of students who are leading the fight to end s…" +04/18/2018,Politicians,@JoeBiden,There was no one else quite like Barbara Bush. Jill and I — and the entire Biden family — send our heartfelt condol… https://t.co/Tiia0XYyGq +04/15/2018,Politicians,@JoeBiden,"Five years after an act of hate struck Boston, the thousands of acts of charity and compassion on #OneBostonDay rem… https://t.co/pGUol7OnNn" +04/05/2018,Politicians,@JoeBiden,The United States should be leading on this issue. Improving transparency is one essential step to ending the pay g… https://t.co/2thryhh495 +04/04/2018,Politicians,@JoeBiden,Dr. King was proof that the promise of America can beat so strongly in the heart of one person they can move this n… https://t.co/8sohByaYOH +04/03/2018,Politicians,@JoeBiden,"RT @DrBiden: Congratulations to @NovaMBB on tonight’s win, especially Delaware’s own Donte DiVincenzo! Always glad to see a Philly team tak…" +04/02/2018,Politicians,@JoeBiden,I’m grateful to have the opportunity to continue the #AmericanPromiseTour in June and hear from so many more people… https://t.co/7rIwW6p1hB +03/28/2018,Politicians,@JoeBiden,RT @DrBiden: (1/3) Help me & @bidenfoundation recognize our nation’s incredible #military kids & thank them for the sacrifices they make to… +03/28/2018,Politicians,@JoeBiden,"Cierra, you remembered the most important thing I had to say. You will beat this. + +And as I’ve always said, if ther… https://t.co/3wuRYgbUiu" +03/26/2018,Politicians,@JoeBiden,My mother often reminded me that “bravery resides in every heart and some day it will be summoned.” Lt. Col. Arnaud… https://t.co/FbCjXR1HH5 +03/22/2018,Politicians,@JoeBiden,"At @UDBidenInst, we’re working on the pressing domestic policy challenges of our time. But we can't do it alone. I… https://t.co/LEke7FevbK" +03/22/2018,Politicians,@JoeBiden,Our top priority should be investing in our workers by 1. ensuring they have the skills & opportunities to get a go… https://t.co/hymhHBmaJw +03/20/2018,Politicians,@JoeBiden,"Let’s give patients full electronic medical records within 24 hours of request, a safe place to store them, and a t… https://t.co/LO1lUXXn5X" +03/17/2018,Politicians,@JoeBiden,"RT @HeidiHeitkamp: North Dakotans have a strong, tough work ethic & don't quit until they get the job done. VP @JoeBiden shares this same q…" +03/16/2018,Politicians,@JoeBiden,"Louise Slaughter was an unparalleled champion for women. I worked with her on the Violence Against Women Act, and I… https://t.co/LL5E7Uk6Iz" +03/14/2018,Politicians,@JoeBiden,The people of Pennsylvania’s 18th district showed up yesterday. They demonstrated that they want to be represented… https://t.co/hT9bOWBKdm +03/12/2018,Politicians,@JoeBiden,I was in southwestern Pennsylvania with @ConorLambPA last week. Something's changing out there. You can feel the gr… https://t.co/PBoQOoCTwV +03/08/2018,Politicians,@JoeBiden,"Everyone does better when women are able to rise as high as their talents will take them. + +On this International Wo… https://t.co/lP8vHdataP" +03/07/2018,Politicians,@JoeBiden,"Sarah, I'm incredibly proud of you. You're a woman of real courage. https://t.co/kQlQdGWlbt" +02/28/2018,Politicians,@JoeBiden,"It takes courage to speak out against sexual assault, or to step in to stop it from happening. + +If you know someon… https://t.co/Giy6NOfylg" +02/26/2018,Politicians,@JoeBiden,"We need to give young immigrants who came to our country as children permanent assurance that they are safe here, a… https://t.co/iIKBeACnCr" +02/23/2018,Politicians,@JoeBiden,"When I wrote the Violence Against Women Act in 1994, it included a provision that empowered women to take abusers t… https://t.co/TYubZkpm2y" +02/22/2018,Politicians,@JoeBiden,Rev. Graham was spiritual advisor to a dozen Presidents - and countless millions of Americans. We remember his exam… https://t.co/wr0N6JCLaq +02/15/2018,Politicians,@JoeBiden,I am at a loss for what more to say. I grieve with the families in Parkland today. I grieve with the families acros… https://t.co/PaYjuPSkw8 +02/14/2018,Politicians,@JoeBiden,We need to believe women like Colbie. We need to recognize the incredible courage it takes for women like her to co… https://t.co/oyPN3H9klg +02/14/2018,Politicians,@JoeBiden,We had the honor of having Jesmyn Ward moderate the 30th event on the #AmericanPromiseTour last night. It was wonde… https://t.co/gpsK1Kbr5L +02/10/2018,Politicians,@JoeBiden,I’m in Indianapolis with @southcity22 and we have a message for thousands of fraternity brothers and sorority siste… https://t.co/XWbaPwGHcb +02/09/2018,Politicians,@JoeBiden,William Gay is the real deal - on and off the field. He’s using his voice to get other men involved to end sexual a… https://t.co/9ROOwHCPGW +02/09/2018,Politicians,@JoeBiden,Incredible day opening the new @PennBiden Center in Washington. We're working on the foreign policy challenges of t… https://t.co/SPyK9u63bA +02/05/2018,Politicians,@JoeBiden,"RT @DrBiden: Video speaks for itself. Congrats, @Eagles! #SuperBowlLll https://t.co/dedjLtDQSw" +02/05/2018,Politicians,@JoeBiden,"This team never gave up. No matter the injuries, no matter the odds. They showed incredible heart. What a great win… https://t.co/ZBNIvTZX7j" +02/01/2018,Politicians,@JoeBiden,"RT @bidenfoundation: One year ago, our journey started. We’re thankful for this year of progress, collaboration, and purpose, and we’re eag…" +01/31/2018,Politicians,@JoeBiden,"Proud to call you a friend, @RepJoeKennedy. You captured the idealism and optimism of our party — and this nation.… https://t.co/pVmZ4Rwsmq" +01/23/2018,Politicians,@JoeBiden,This country has made great progress in changing the culture around advancing LGBTQ equality and ending violence ag… https://t.co/zVGPMxwfYt +01/15/2018,Politicians,@JoeBiden,"Dr. King said that change “comes through continuous struggle.” As we celebrate his legacy today, we’re once again l… https://t.co/zyHlqpFCyi" +01/12/2018,Politicians,@JoeBiden,"It’s not how a president should speak. It’s not how a president should behave. Most of all, it’s not what a preside… https://t.co/9XqCQfB056" +01/08/2018,Politicians,@JoeBiden,"RT @DrBiden: 3 years ago, @BarackObama & I announced a plan for #FreeCommunityCollege. + +Today there are free tuition programs in 16 states…" +01/01/2018,Politicians,@JoeBiden,"Boston has had many great mayors in its remarkable history, and @marty_walsh can proudly take his place among any o… https://t.co/8by2JjmBu4" +12/24/2017,Politicians,@JoeBiden,"Jill and I, and the whole Biden family, want to wish you a happy, healthy, and safe holiday season. https://t.co/X2xHY8pjtT" +12/15/2017,Politicians,@JoeBiden,It’s been five years since 20 first-graders and 6 educators were murdered by a gunman at Sandy Hook Elementary Scho… https://t.co/TzfjtrOXTQ +12/13/2017,Politicians,@JoeBiden,"Ann Arbor - I’m terribly sorry I won’t get to see you this evening, but we want to make sure everyone can safely ma… https://t.co/aRHCZ1jjun" +12/13/2017,Politicians,@JoeBiden,Help your friends and loved ones get the peace of mind of health insurance for 2018. Remind them that this Friday i… https://t.co/zVRwxpu1eP +12/13/2017,Politicians,@JoeBiden,"Doug Jones. Thank you, Alabama. You’ve elected a man of incredible integrity, grit, and character. A fighter for wo… https://t.co/sOLcmRMQOk" +12/11/2017,Politicians,@JoeBiden,"Tomorrow, the people of Alabama will decide whether the United States Senate will gain the courage, character, and… https://t.co/E1JxiCr5Yr" +12/11/2017,Politicians,@JoeBiden,"The people of California are on my mind as they suffer through these devastating wildfires. Amidst the loss, I’m in… https://t.co/KgpeOqcfb9" +12/11/2017,Politicians,@JoeBiden,"It’s a little too cold for ice cream in Madison, but I hope you liked the cupcakes all the same. Thanks for spendin… https://t.co/dnhLw7XkBY" +12/06/2017,Politicians,@JoeBiden,Be who you are. Stand for what you are. Few people embody that better than @melindagates. Enjoyed discussing… https://t.co/J6V2w4zxGx +12/06/2017,Politicians,@JoeBiden,I'm going to keep speaking out on the importance of standing up to the Kremlin through my work @PennBiden. My colle… https://t.co/hKcBgoWZU2 +12/04/2017,Politicians,@JoeBiden,RT @bidensbriefing: “We Are Living Through A Battle For The Soul Of This Nation”: An op-ed I wrote in the days following the violence and h… +12/02/2017,Politicians,@JoeBiden,"I've been on the road talking about #PromiseMeDad, the book I wrote about my son Beau, but I've been most amazed li… https://t.co/WafkI12S5Q" +12/01/2017,Politicians,@JoeBiden,No one who has ever met Sandy Winnefeld has doubted his strength or resolve. And no one who reads this article will… https://t.co/hbSJEHnmf9 +12/01/2017,Politicians,@JoeBiden,One of the best shines I’ve ever had. https://t.co/1BwrihNF32 +11/29/2017,Politicians,@JoeBiden,"Throughout my career in public service, I’ve heard a lot of great ideas, and developed a few of my own. Now we want… https://t.co/h0QbdZQDjT" +11/29/2017,Politicians,@JoeBiden,"Every week, we’ll hear from leaders in business, politics, academics—and everyday Americans sharing bright ideas th… https://t.co/0NndpuDpnQ" +11/29/2017,Politicians,@JoeBiden,"Today I’m announcing the launch of the Biden Forum, a new space for conversations about America’s future:… https://t.co/8Yo1wcHeo6" +11/25/2017,Politicians,@JoeBiden,"Today, on the International Day for the Elimination of Violence Against Women, let's remember all the work that rem… https://t.co/Uw78owAUg4" +11/22/2017,Politicians,@JoeBiden,Thank you to the #AmericanPromiseTour moderators and thousands of readers who attended events or picked up a copy o… https://t.co/sT6575BdT8 +11/12/2017,Politicians,@JoeBiden,May today serve as a reminder of our solemn duty to look after the men and women who have served in our Armed Force… https://t.co/52zsLxmxVw +11/12/2017,Politicians,@JoeBiden,"RT @DrBiden: To all our service men and women, veterans, and military families, thank you for your sacrifice. #VeteransDay2017 https://t.co…" +11/09/2017,Politicians,@JoeBiden,"You’re going to make us all proud, Danica. https://t.co/doouBh0qME" +11/08/2017,Politicians,@JoeBiden,Juanita Perez Williams ran an incredible campaign in Syracuse. So proud of the work she did. And still hoping for a… https://t.co/51yXACbGLp +11/08/2017,Politicians,@JoeBiden,And mayors like Rick Kriseman and Joyce Craig who are incredible leaders in their communities. +11/08/2017,Politicians,@JoeBiden,"State legislators like Sara Cambensy in Michigan and Danica Roem, Jennifer Carroll Foy, David Reid, John Bell, and… https://t.co/DIsK7TXE9m" +11/08/2017,Politicians,@JoeBiden,"Candidates like Ralph Northam and Justin Fairfax, who will ensure that Virginia’s economic recovery continues to re… https://t.co/wIEMXQ4RF8" +11/08/2017,Politicians,@JoeBiden,A resounding defeat tonight for President Trump. Voters around the country rejected the ugly politics we have seen… https://t.co/Hl9M7wLfry +11/06/2017,Politicians,@JoeBiden,"Folks, there's an election happening tomorrow. We've got to keep our eye on the ball. Let's get this done. https://t.co/UWl53fswMz" +11/06/2017,Politicians,@JoeBiden,These tragedies aren’t inevitable. Don’t let hopelessness win today. We must persist in our efforts to prevent gun violence. +11/06/2017,Politicians,@JoeBiden,Americans again murdered in a place of worship. Jill and I send our prayers to Sutherland Springs. +11/01/2017,Politicians,@JoeBiden,Don’t let politics & misinformation keep your loved ones from getting health insurance. Call/text them today to make sure they sign up! +11/01/2017,Politicians,@JoeBiden,Today is the first day to sign up for 2018 health insurance through https://t.co/3CYKhP8ZoR. Deadline is December 1… https://t.co/P9LK1rMEBI +11/01/2017,Politicians,@JoeBiden,"New York, we love you. Grateful to first responders who saved lives today. Jill and I are keeping you all in our prayers." +10/25/2017,Politicians,@JoeBiden,"Honored to work with a woman of great courage, my friend @ladygaga. With her leadership, and your help, we can chan… https://t.co/gtRifmIR9h" +10/24/2017,Politicians,@JoeBiden,"Alabama, this gets to the heart of why you should vote for Doug Jones on December 12th. A man of incredible integri… https://t.co/dn2nNjzNDe" +10/23/2017,Politicians,@JoeBiden,"RT @UDBidenInst: ""Like yesterday's factory workers, tmrw's workforce needs unions to keep the American dream alive."" - @MaryKayHenry https:…" +10/23/2017,Politicians,@JoeBiden,RT @bidensbriefing: My essay on our fight to end sexual assault on campus. https://t.co/LkjXs3c5FY @ItsOnUs @marieclaire #ItsOnUs #bidensbr… +10/18/2017,Politicians,@JoeBiden,"Looking forward to discussing my new book PROMISE ME, DAD with these inspiring individuals on #AmericanPromiseTour… https://t.co/VQ0Xlr77UB" +10/17/2017,Politicians,@JoeBiden,RT @JohnKasich: Looking forward to joining VP @JoeBiden for a discussion at @UDBidenInst about how we can bridge the divide facing our nati… +10/17/2017,Politicians,@JoeBiden,"@JohnKasich @UDelaware @UDBidenInst There's a lot at stake, but John and I are still optimistic. I hope you'll tune… https://t.co/kGtAaXl3gJ" +10/17/2017,Politicians,@JoeBiden,Looking forward to welcoming Gov @JohnKasich to @UDelaware @UDBidenInst to discuss bridging partisan divides & restoring faith in government +10/17/2017,Politicians,@JoeBiden,"RT @BarackObama: I'm grateful to @SenJohnMcCain for his lifetime of service to our country. Congratulations, John, on receiving this year's…" +10/17/2017,Politicians,@JoeBiden,John McCain is the real deal. A model public servant. And my dear friend. I was honored to present him with the 2017 #LibertyMedal tonight. +10/13/2017,Politicians,@JoeBiden,Unilaterally putting the Iran deal at risk does not isolate Iran. It isolates us: https://t.co/Cj1zu126bb +10/12/2017,Politicians,@JoeBiden,Proud to be at @RutgersU today with survivors & activists working to change the campus culture on sexual assault. #ItsOnUs +10/12/2017,Politicians,@JoeBiden,"RT @bidenfoundation: At 2pm ET, @JoeBiden will be live at @RutgersU to tell students #ItsOnUs to end sexual assault. Watch live at https://…" +10/05/2017,Politicians,@JoeBiden,RT @DrBiden: Inspired by teachers around the globe who help students like these in Zambia reach their dreams. #WorldTeachersDay https://t.c… +10/05/2017,Politicians,@JoeBiden,"Spoke to my friend Jim Murren, so proud of the men and women at MGM Resorts. #VegasStrong" +10/04/2017,Politicians,@JoeBiden,"Jalal Talabani was a champion of the US-Iraq partnership and a friend, whose unifying leadership will be missed." +10/03/2017,Politicians,@JoeBiden,Barack & Michelle: all of the Bidens send our love today on your 25th anniversary. May you have many more years of joy still to come. +10/03/2017,Politicians,@JoeBiden,"RT @DrBiden: On this heartbreaking day, our love to families who lost loved ones & gratitude to first responders in #LasVegas." +10/02/2017,Politicians,@JoeBiden,How long do we let gun violence tear families apart? Enough. Congress & the WH should act now to save lives. There's no excuse for inaction. +10/02/2017,Politicians,@JoeBiden,Appalled by the senseless loss of life in Las Vegas. Jill and I hold all those affected and grieving in our hearts. +09/29/2017,Politicians,@JoeBiden,RT @bidenfoundation: The Bidens caught up with @BarackObama and Prince Harry before cheering on Team USA today at @InvictusToronto. https:/… +09/29/2017,Politicians,@JoeBiden,Now is not the time to go backward—it's on all of us to stop sexual violence. https://t.co/EUh61Mjmit +09/29/2017,Politicians,@JoeBiden,"There is only one way to confront hatred and prejudice: head on. Well said, Lt. Gen Silveria. https://t.co/vQ2Aflo8Tx" +09/28/2017,Politicians,@JoeBiden,"We Veeps stick together. Jill and I, and all of the Bidens, are with you, Julia. https://t.co/JP0c2wtrJ6" +09/28/2017,Politicians,@JoeBiden,"Steve Scalise’s strength and resilience inspire all of us. Good to see you back on the job, Steve." +09/27/2017,Politicians,@JoeBiden,"Southern Florida chose a proven leader and consensus builder yesterday. Congratulations to @Annette_Taddeo, Florida’s newest State Senator." +09/25/2017,Politicians,@JoeBiden,Beau fought to protect the most vulnerable among us. Thanks to my friend @barackobama for honoring his life’s work… https://t.co/2WsWWYPwc9 +09/25/2017,Politicians,@JoeBiden,RT @BeauBidenFdn: Read about the devastating case that prompted Beau to train 5% of Delaware’s population in child abuse prevention: https:… +09/22/2017,Politicians,@JoeBiden,"Today's Title IX decision is shameful, but the law is still the law. Colleges & universities must honor obligations to students & survivors." +09/21/2017,Politicians,@JoeBiden,"@UDBidenInst @PennyPritzker @Airbnb @LinkedIn On the @UDBidenInst blog, @LinkedIn's @allenb says better data & ment… https://t.co/nYBJks88sg" +09/21/2017,Politicians,@JoeBiden,"@UDBidenInst @PennyPritzker @Airbnb @LinkedIn Following @UDBidenInst’s forum on work, @Airbnb's @bchesky writes how… https://t.co/qM8kvrbNuD" +09/20/2017,Politicians,@JoeBiden,"On the new @UDBidenInst blog, @PennyPritzker, @Airbnb & @LinkedIn share strategies to help American workers succeed: https://t.co/ZMPkwBcBsu" +09/20/2017,Politicians,@JoeBiden,Sending prayers to all who lost loved ones in the devastating earthquake. We are seeing the resilience and heart of the Mexican people. +09/19/2017,Politicians,@JoeBiden,"#ItsOnUs is making great progress toward ending sexual assault, but today we face new challenges: https://t.co/gUdR13uYeY" +09/19/2017,Politicians,@JoeBiden,Just had the chance to see President Trump's golf swing tweet. Enough. This has to stop. Our children are watching. +09/18/2017,Politicians,@JoeBiden,Here's a path forward to choose a future that puts work first: https://t.co/Y6B2q21nHF +09/18/2017,Politicians,@JoeBiden,My new initiative at the Biden Institute will identify strategies for building a future of quality jobs: https://t.co/Y6B2q21nHF +09/14/2017,Politicians,@JoeBiden,America is strongest when we lead with our values—at home and abroad. https://t.co/g8vGlXdeqz +09/13/2017,Politicians,@JoeBiden,"23 years ago today, the Violence Against Women Act became law. VAWA is changing the culture & saving lives, but our work continues. #VAWA23" +09/11/2017,Politicians,@JoeBiden,"16 years ago today, terror tried to break us. It did not, and will never, succeed. Our grit & determination are the strongest force I know." +09/10/2017,Politicians,@JoeBiden,Jill and I are praying for the safety of everyone in the path of Hurricane Irma this weekend. Stay strong - the country stands with you. +09/07/2017,Politicians,@JoeBiden,Any change that weakens Title IX protections will be devastating: https://t.co/8E3n3RIMTS +09/05/2017,Politicians,@JoeBiden,"Brought by parents, these children had no choice in coming here. Now they'll be sent to countries they've never known. Cruel. Not America." +08/27/2017,Politicians,@JoeBiden,"We are living through a battle for the soul of this nation. +https://t.co/2XtpeyhVex" +08/24/2017,Politicians,@JoeBiden,"A first look at the cover for my new book, PROMISE ME, DAD https://t.co/Ce1eY5Bghw https://t.co/QRXipZz0Ef" +08/17/2017,Politicians,@JoeBiden,Praying tonight for the victims of #Barcelona attack & their families. Heinous acts of terror cannot break the spirit of our Spanish friends +08/12/2017,Politicians,@JoeBiden,There is only one side. #charlottesville +08/12/2017,Politicians,@JoeBiden,"No. Not in America. We must be stronger, more determined and more united than ever. Racism and hate have no place here. #charlottesville" +08/04/2017,Politicians,@JoeBiden,"Your service has been a great gift to the country, and your friendship and brotherhood are a great gift to me. Happ… https://t.co/ZgvLlwelmu" +07/31/2017,Politicians,@JoeBiden,Thrilled to see the 2028 Olympics coming to Los Angeles. Thanks to @MayorOfLA Garcetti who worked hard to secure a big win for US athletics. +07/28/2017,Politicians,@JoeBiden,Hope to see you at a stop this fall on my #AmericanPromiseTour – tickets are available now: https://t.co/Y7IzxK9m5l https://t.co/LnW8Ob2ah8 +07/28/2017,Politicians,@JoeBiden,Thank you to everyone who tirelessly worked to protect the health care of millions. You saved lives. +07/26/2017,Politicians,@JoeBiden,To all of you working to stop Republicans’ devastating “health” bill: Thank you. We’re not done yet. Please keep going. +07/26/2017,Politicians,@JoeBiden,Any final bill that looks anything like their proposals so far would be devastating. +07/26/2017,Politicians,@JoeBiden,Every patriotic American who is qualified to serve in our military should be able to serve. Full stop. +07/24/2017,Politicians,@JoeBiden,"The GOP's ""health"" plan would gut care & treatment for opioid addiction. Call your senators—the time to act is now. https://t.co/ZHX7KZLgXk" +07/20/2017,Politicians,@JoeBiden,"Incredible progress in cancer research and treatment in just the last year offers new promise and new hope. You can win this fight, John." +07/20/2017,Politicians,@JoeBiden,John and I have been friends for 40 years. He's gotten through so much difficulty with so much grace. He is strong - and he will beat this. +07/17/2017,Politicians,@JoeBiden,@washingtonpost I was a senator for 36 years. I can assure you that your call matters. Your viewpoint might not alw… https://t.co/a6vOmJMTkp +07/17/2017,Politicians,@JoeBiden,"@washingtonpost Especially if you live in WV, NV, AK or OH now is the time to call your senators. Or, encourage you… https://t.co/waMFYIG3n5" +07/17/2017,Politicians,@JoeBiden,"@washingtonpost If you believe health care is a right for all, make sure your senators know that this bill is a big step backward." +07/17/2017,Politicians,@JoeBiden,@washingtonpost All Americans deserve the peace of mind that comes with knowing that you can get affordable care. B… https://t.co/p4K6xfLjYI +07/17/2017,Politicians,@JoeBiden,"@washingtonpost By denying this right, Republican leadership’s “health” bill is fundamentally flawed. It can’t even be fixed on the floor." +07/17/2017,Politicians,@JoeBiden,@washingtonpost Republican leadership's “health” bill would return us to a time when health care was a privilege fo… https://t.co/7NniG8ALfk +07/17/2017,Politicians,@JoeBiden,"Today, I wrote in the @washingtonpost about the big problem with the Republican leadership’s ""health"" bill: https://t.co/GYCeXPhWdX" +07/17/2017,Politicians,@JoeBiden,Excited to share news about #AmericanPromiseTour - a series of conversations I’m hosting around the country… https://t.co/ClcF0sZg5T +07/11/2017,Politicians,@JoeBiden,Jill & I send our condolences to the loved ones of service members lost in MS crash—those who wear the uniform are the heart of our nation. +07/04/2017,Politicians,@JoeBiden,"Happy 4th of July! America continues the march toward tolerance, diversity and equality of opportunity that began in 1776—that's patriotism." +06/26/2017,Politicians,@JoeBiden,We’re live in a few minutes to talk about how @BidenCancer will bring renewed urgency to the fight against cancer: https://t.co/1rcV1XdLmS +06/26/2017,Politicians,@JoeBiden,Jill and I are excited and ready to take the next step toward ending cancer. Are you with us? https://t.co/vVDk81oRtq +06/23/2017,Politicians,@JoeBiden,"Let's see a bill that actually tries to improve folks' health care, and then we can have a reasonable debate about how to best do that." +06/23/2017,Politicians,@JoeBiden,"Especially now, when so many communities are struggling with opioid addiction, the bill's drastic cuts to Medicaid are cruel." +06/23/2017,Politicians,@JoeBiden,"Slashing Medicaid hurts kids, the elderly, people with disabilities and those struggling with addiction. All for tax breaks for the wealthy." +06/23/2017,Politicians,@JoeBiden,The Senate health bill isn't about health care at all—it's a wealth transfer: slashes care to fund tax cuts for the wealthy & corporations. +06/20/2017,Politicians,@JoeBiden,"America’s soul is rooted in the promise of opportunity. We must protect, support & welcome refugees to keep that pr… https://t.co/uKJO1oFp2X" +06/18/2017,Politicians,@JoeBiden,Jill and I are praying for the people of Colombia and the families of the victims of tonight's bomb explosion. #BogotaEstoyContigo +06/15/2017,Politicians,@JoeBiden,"Congrats & good luck to my former staffer Dr. Tony Allen, incoming Provost of @DelStateUniv! A great fit for a passionate public servant." +06/14/2017,Politicians,@JoeBiden,"Jill and I are praying for the victims and their families. Grateful for courage of my former colleagues, first responders & Capitol Police." +06/12/2017,Politicians,@JoeBiden,"We meet unspeakable tragedy and hate with unbound resolve. I stand with the LGBTQ community, today and every day.… https://t.co/q9JZxJxIwG" +06/07/2017,Politicians,@JoeBiden,Honored to see Ecumenical Patriarch Bartholomew in Athens – his leadership on climate change and the environment is… https://t.co/qsRmdl7GWT +06/07/2017,Politicians,@JoeBiden,"Great to be with @PennBiden in Athens. A Europe whole, free, & at peace remains vital to U.S. security–as it has been for the past 7 decades" +06/03/2017,Politicians,@JoeBiden,"Congrats to Ambassador Andy Young, a dear friend and inspiration, on 85 years. Wish I could be in Atlanta tonight for AJY Leadership Awards." +06/01/2017,Politicians,@JoeBiden,We're already feeling impacts of climate change. Exiting #ParisAgreement imperils US security and our ability to own the clean energy future +06/01/2017,Politicians,@JoeBiden,"It's time for big dreams and #AmericanPossibilities. If you're ready to elect folks who agree, say you're in:… https://t.co/TF6zDVcyu9" +06/01/2017,Politicians,@JoeBiden,There’s no one better positioned on Earth to lead the world in the 21st century than America. We just have to believe it. +06/01/2017,Politicians,@JoeBiden,America is at its best when we’re OPTIMISTIC and we THINK BIG. +06/01/2017,Politicians,@JoeBiden,It’s time to remember who we are as Americans: Giving EVERYONE the opportunity to achieve the impossible. +07/01/2018,Politicians,@SenGillibrand,"I know how hard things feel now, but we've faced challenges before and have overcome them. If you keep fighting for… https://t.co/ppuqeMlrOP" +07/01/2018,Politicians,@SenGillibrand,"A group of top ICE investigators who handle “national security threats, child pornography and transnational crime”… https://t.co/vrwoJunxV7" +07/01/2018,Politicians,@SenGillibrand,Take @realdonaldtrump at his word. He wants to “punish” women for exercising their reproductive freedom. He promise… https://t.co/wwkpDGCujL +07/01/2018,Politicians,@SenGillibrand,"@JessLivMo Jess, a big thanks to you, to @domesticworkers, @MoveOn, @ACLU, and others who worked so hard to organiz… https://t.co/hRuD54q9sH" +06/30/2018,Politicians,@SenGillibrand,Today’s #FamiliesBelongTogether march was a powerful statement to President Trump that we will not back down until… https://t.co/TqED9cg2Pd +06/30/2018,Politicians,@SenGillibrand,"I’ll be at the #FamiliesBelongTogether march tomorrow, adding my voice to the thousands refusing to sit back or sta… https://t.co/3C5R6RihM0" +06/29/2018,Politicians,@SenGillibrand,I'll be on tonight's episode of @allinwithchris to talk about the future of the Supreme Court. Tune in around 8:15p… https://t.co/hwDYhXRDxZ +06/29/2018,Politicians,@SenGillibrand,"With a Supreme Court seat on the line, President Trump is desperate to reelect @RosenforNevada’s opponent to be a r… https://t.co/aBvzP27VCz" +06/29/2018,Politicians,@SenGillibrand,"Across the country, state legislatures have already made significant moves to limit a woman's access to abortion an… https://t.co/KEeSeZJJBc" +06/29/2018,Politicians,@SenGillibrand,"I believe we need to protect families who need help, and ICE isn’t doing that. It has become a deportation force. W… https://t.co/vkwAsgifQH" +06/29/2018,Politicians,@SenGillibrand,I’m horrified by today’s shooting at the Capital Gazette. Journalists do vital work to further our democracy. They… https://t.co/v2R6PzX1ld +06/28/2018,Politicians,@SenGillibrand,Protesting to end family separation. https://t.co/hA6enBRKuW +06/28/2018,Politicians,@SenGillibrand,RT @kasie: .@SenGillibrand cheering on protestors in Hart as Capitol Police make arrests just feet away https://t.co/kBqDxSaBrB +06/28/2018,Politicians,@SenGillibrand,"With Justice Kennedy's retirement, there’s no doubt that women's reproductive freedom is on the ballot this fall. B… https://t.co/YncahqHa24" +06/28/2018,Politicians,@SenGillibrand,Women’s lives are at stake. I will fight for you to have a voice in the selection of our next Supreme Court justice… https://t.co/bjMqO0kvdl +06/28/2018,Politicians,@SenGillibrand,Any one of President Trump's list of proposed SCOTUS justices would overturn Roe v. Wade and threaten our fundament… https://t.co/5M4Yhq5BUE +06/27/2018,Politicians,@SenGillibrand,RT @adamslily: We live in a majority pro-choice country. We have a majority pro-choice Senate. This fight ain't over and it's for all the m… +06/27/2018,Politicians,@SenGillibrand,The President just said the next Supreme Court nominee WILL come from his list of 25 judges that passed his overtur… https://t.co/B43VL4jKq8 +06/27/2018,Politicians,@SenGillibrand,"Now that there is a vacancy, after the Garland heist, the balance of the court will be tilted even more against wom… https://t.co/v8YgKVjjgW" +06/27/2018,Politicians,@SenGillibrand,"In an economy that is rigged in favor of the wealthy and powerful, unions strengthen our communities, raise our wag… https://t.co/pI4m8m8ISY" +06/27/2018,Politicians,@SenGillibrand,"RT @ilyseh: As the threats to the fundamental freedoms of women grow from a hostile Court, so does the movement for gender equity. My thoug…" +06/27/2018,Politicians,@SenGillibrand,Janus v. AFSCME was nothing short of a political attack on public sector unions at the behest of corporate interest… https://t.co/pE4WLc1qDM +06/27/2018,Politicians,@SenGillibrand,Congratulations to Alexandria Ocasio-Cortez (@Ocasio2018) for running an impressive race in #NY14 and making history. +06/27/2018,Politicians,@SenGillibrand,Supporting Democrats running to flip Republican seats and take back the Senate is the single most powerful thing yo… https://t.co/r9h2B98xPn +06/26/2018,Politicians,@SenGillibrand,I don’t understand why men continue to tell women what to do with their bodies. Every woman on the Supreme Court op… https://t.co/SPWzLKN8DE +06/26/2018,Politicians,@SenGillibrand,"RT @WeDemandJustice: BREAKING: Sen. Gillibrand announces she's a ""NO"" on all of Trump's SCOTUS shortlisters if confirmation fight happens t…" +06/26/2018,Politicians,@SenGillibrand,We need fair-minded judges who will uphold the value of equality. This current list represents a clear danger to wo… https://t.co/JHx7vrYjIV +06/26/2018,Politicians,@SenGillibrand,"If a vacancy occurs during this term, after the Garland heist, the balance of the court could be tilted even more a… https://t.co/qSYQddrBpr" +06/26/2018,Politicians,@SenGillibrand,"It is clear that the president wants to use the courts to shape policy that he can’t get passed through Congress, l… https://t.co/RntLwgvJYw" +06/26/2018,Politicians,@SenGillibrand,"The Roberts Court has repeatedly put corporations over people, including the dangerous Epic Systems decision, which… https://t.co/Eqsy0ROo45" +06/26/2018,Politicians,@SenGillibrand,I second Justice Sotomayor’s words. https://t.co/scnCKXEgnF +06/26/2018,Politicians,@SenGillibrand,We cannot—we must not—stop speaking out. We cannot sit back and let these intolerant actions define who we are. You… https://t.co/08SoFxEriW +06/26/2018,Politicians,@SenGillibrand,"Like I’ve said since the day President Trump announced this terrible Executive Order, our country’s willingness to… https://t.co/QRS5mmjC08" +06/26/2018,Politicians,@SenGillibrand,The president’s travel ban flies in the face of every value on which our country was built. The Supreme Court’s dec… https://t.co/NH1UdDiIyr +06/26/2018,Politicians,@SenGillibrand,"Wendy Davis showed us what it means to raise your voice, as she was relentless in filibustering against an anti-abo… https://t.co/7Jg6nOXWhv" +06/25/2018,Politicians,@SenGillibrand,We are indebted to Chief Spadafora's heroism and decades of service to New York City. Sending my deepest condolence… https://t.co/D1XM3xfHKZ +06/24/2018,Politicians,@SenGillibrand,2018 is defined by women. Women are running for office in record numbers – and they're mobilizing other women to ra… https://t.co/MD8gxePTiz +06/24/2018,Politicians,@SenGillibrand,"No community is better served by having hungry children. That's why I'll keep pushing to pass my legislation, the S… https://t.co/eZHs0TYPvK" +06/24/2018,Politicians,@SenGillibrand,"When we know that kids in this country are going to bed hungry, we have a moral obligation to act. I find it so dis… https://t.co/jhFamwPNnG" +06/23/2018,Politicians,@SenGillibrand,Please send urgent support to these organizations providing legal aid and critical assistance to families at the bo… https://t.co/yWPycNIoOo +06/23/2018,Politicians,@SenGillibrand,Our fight for families separated at the border is far from over. This administration still has no clear plan to reu… https://t.co/tDUgAZxcRP +06/22/2018,Politicians,@SenGillibrand,"Had a great day in Buffalo with @CPeoplesStokes! We met with the Restore Our Community Coalition, a group working t… https://t.co/wpcG0SbS7T" +06/22/2018,Politicians,@SenGillibrand,"RT @pantsuitnation: Thank you for joining us this week on the podcast, @SenGillibrand! https://t.co/XK3IBv0VI8 https://t.co/7hdpJq6lV9" +06/22/2018,Politicians,@SenGillibrand,"While we were watching the crisis that continues to unfold at our borders, Congressional Republicans unveiled a bud… https://t.co/9lOTkrp3Yj" +06/21/2018,Politicians,@SenGillibrand,"We stopped the first inhumane policy, but this administration has completely lost its moral conscience. It’s up to… https://t.co/k1sWK2OOnG" +06/21/2018,Politicians,@SenGillibrand,"Reports say ICE has taken children away from the border, further from their families, to facilities in Michigan, Il… https://t.co/YNvHWoAzlF" +06/21/2018,Politicians,@SenGillibrand,"President Trump wants credit for ending the child separation policy he started. But the cruelty hasn’t stopped, and… https://t.co/SC3AAXIPs1" +06/21/2018,Politicians,@SenGillibrand,RT @getots: From being shot down by enemy fire in Afghanistan as a combat pilot to helping overturn the sexist ban on women in ground comba… +06/21/2018,Politicians,@SenGillibrand,RT @KeepitMadeinUSA: Senator Kirsten Gillibrand is pushing legislation that would allow New York towns or counties to apply for status as a… +06/21/2018,Politicians,@SenGillibrand,"By telling insurance companies they could no longer deny coverage or charge more for pre-existing conditions, the A… https://t.co/rEnGtIXn92" +06/21/2018,Politicians,@SenGillibrand,"RT @NYDailyNews: .@realdonaldtrump must reunite devastated families. Now. https://t.co/viIqoV6gyo + +PLUS: @ICEgov detentions of unaccompanie…" +06/21/2018,Politicians,@SenGillibrand,We must keep raising our voices and fighting the Trump administration's treatment of immigrants and refugees. How a… https://t.co/fdXUoi3ShR +06/20/2018,Politicians,@SenGillibrand,"This is inhumane, cruel, and immoral. The president must stop this today. This policy isn't ""tough"", it's the act o… https://t.co/hwBTN3PkIN" +06/20/2018,Politicians,@SenGillibrand,"On #WorldRefugeeDay, our own government is creating a humanitarian crisis at our border and causing unthinkable pai… https://t.co/uQ8mbQIjdh" +06/20/2018,Politicians,@SenGillibrand,".@HHSgov, @DHSgov let him in. https://t.co/TXYcUKuJiw" +06/20/2018,Politicians,@SenGillibrand,"New York has the best manufacturing tradition in the country. Now, we need to do everything we can to keep that tra… https://t.co/iSvv5hC4Ev" +06/19/2018,Politicians,@SenGillibrand,"My bipartisan bill, the Made in America Manufacturing Communities Act, that would give communities all over New Yor… https://t.co/6rzPnKX2J7" +06/19/2018,Politicians,@SenGillibrand,#Juneteenth is the day we commemorate the abolition of slavery in our country. While we’ve made great strides towar… https://t.co/DH2ZIsQnLH +06/19/2018,Politicians,@SenGillibrand,The Department of Homeland Security is tearing young children away from their parents. It is abhorrent. It is immor… https://t.co/fjzn7krOxh +06/18/2018,Politicians,@SenGillibrand,"Every Democratic senator is co-sponsoring the Keep Families Together Act, but not one Republican has signed on. Cal… https://t.co/Y1g6hduPbj" +06/18/2018,Politicians,@SenGillibrand,"Cages. + +The government is tearing young children away from their parents, putting them in cages, sending them to t… https://t.co/aJb1XlKk1y" +06/17/2018,Politicians,@SenGillibrand,"We can pass the Keep Families Together Act to stop the humanitarian crisis at our border, but only if you’re so lou… https://t.co/wadve9qloO" +06/17/2018,Politicians,@SenGillibrand,"Susan B. Anthony’s bravery reminds us of the impact a single voice can have, and to raise our own as loudly as poss… https://t.co/FsYncR1TZT" +06/16/2018,Politicians,@SenGillibrand,Xiu Qing You was simply seeking to adjust his immigration status so that he could continue providing for his family… https://t.co/pgiJRrFFfz +06/16/2018,Politicians,@SenGillibrand,A breastfeeding mother at a detention center had her daughter ripped away. Border agents tell parents they’re takin… https://t.co/HIc42QR29s +06/16/2018,Politicians,@SenGillibrand,"But Trump won Arizona by four points, and Republicans are spending big to win this seat. So we have to make sure Ky… https://t.co/wswWwKF88j" +06/16/2018,Politicians,@SenGillibrand,Public service is at the center of everything Kyrsten does. She overcame childhood homelessness to earn a full scho… https://t.co/27bcfKZPTx +06/16/2018,Politicians,@SenGillibrand,We need to do everything we can to get my friend @kyrstensinema to the Senate because she’s fighting in Arizona for… https://t.co/A8AMoB3E5J +06/15/2018,Politicians,@SenGillibrand,"DACA was announced on this day in 2012, laying a foundation for Dreamers to build a future in the country they call… https://t.co/wW4AoAj0NF" +06/15/2018,Politicians,@SenGillibrand,"""They’re passed over for promotions and raises. They’re fired when they complain."" + +Worth reading. The stories from… https://t.co/q5Jtc5MhCd" +06/15/2018,Politicians,@SenGillibrand,Most of us in NY know someone who has been affected by Lyme disease. But President Trump refuses to address this ep… https://t.co/eYlpadeIrr +06/15/2018,Politicians,@SenGillibrand,The Trump administration is separating children from families escaping violence and extreme poverty at our border.… https://t.co/bHqFG64RyX +06/15/2018,Politicians,@SenGillibrand,"What a beautiful night for baseball! Spending time with family, friends, and colleagues at tonight’s Congressional… https://t.co/zdNVFe04tU" +06/14/2018,Politicians,@SenGillibrand,"I’m a cosponsor. + +And yes, we can pass this bill—but we need you to raise your voice, loud and clear. + +Pick up the… https://t.co/UpCitR4SA8" +06/14/2018,Politicians,@SenGillibrand,Hosting a bipartisan dinner for women senators @belmontpaulnps this evening! I'm honored to get to host this dinner… https://t.co/1nN0J1oA3T +06/13/2018,Politicians,@SenGillibrand,"This is wrong on every level. Absolutely unconscionable. + +We’ve all read about dark moments in history and asked o… https://t.co/ROyURM0x3J" +06/13/2018,Politicians,@SenGillibrand,I’m fighting to #PassMJIA to make sure survivors can report military sexual assault and harassment without fear of… https://t.co/KxoNZvPRUx +06/13/2018,Politicians,@SenGillibrand,Ripping children from their parents and locking them in tent cities is a new low for this presidency. We should cal… https://t.co/TMCa4u29oY +06/12/2018,Politicians,@SenGillibrand,"Last night on @TheDailyShow, @GoLiveLifeWell, Col. Don Christensen and I sat down with @Trevornoah to discuss how t… https://t.co/wpuGVB2jP5" +06/12/2018,Politicians,@SenGillibrand,I hope North Korea is serious about this effort and determined to join the international community. And I encourage… https://t.co/iHQZwWG30d +06/12/2018,Politicians,@SenGillibrand,President Trump’s meeting with North Korea was the first step on a long road ahead. But now comes the hard work of… https://t.co/jZgKa2elW6 +06/12/2018,Politicians,@SenGillibrand,"While I believe that diplomacy is our best route to peaceful solutions, a deal with North Korea should never come a… https://t.co/oHfY2PV2bf" +06/12/2018,Politicians,@SenGillibrand,"Today, we stand with the LGBTQ community and remember the 49 people who lost their lives in the horrific shooting a… https://t.co/W6RP7b4VBS" +06/12/2018,Politicians,@SenGillibrand,Great thread from the incredible team @TIMESUPNOW about why we must #PassMJIA: https://t.co/7jRPRBKHyH +06/12/2018,Politicians,@SenGillibrand,The Senate could vote on MJIA any day. Now’s the time to speak out. Click below to call your senators – tell your f… https://t.co/AqWB0Wp7Qy +06/12/2018,Politicians,@SenGillibrand,I'm joining @GoLiveLifeWell and Col. Don Christensen of @ProtectRDfnders to discuss the Military Justice Improvemen… https://t.co/pFUrN5r7U3 +06/12/2018,Politicians,@SenGillibrand,"Today's SCOTUS decision is a huge, disappointing setback for voting rights. + +I urge you to speak out—and please, k… https://t.co/vcKxUVY3Gf" +06/12/2018,Politicians,@SenGillibrand,"Let’s not dance around it: By denying asylum to domestic violence victims fleeing their abusers, the administration… https://t.co/ZkSACOLqNG" +06/11/2018,Politicians,@SenGillibrand,"RT @MurrayCampaign: .@SenGillibrand, @DianneFeinstein, @elizabethforma and I are calling on @USGAO to help quantify the economic impacts of…" +06/11/2018,Politicians,@SenGillibrand,"If you live in VA, NV, ND, ME or SC, make sure you vote in tomorrow’s primaries. We have an opportunity to give a r… https://t.co/yRiHpyMJmj" +06/11/2018,Politicians,@SenGillibrand,"See you tonight, @trevornoah! https://t.co/7oRMhDbSFW" +06/11/2018,Politicians,@SenGillibrand,"#NetNeutrality protections end today, but let’s be clear: Our fight is far from over. The Senate voted to save the… https://t.co/NPFYZsL9wW" +06/10/2018,Politicians,@SenGillibrand,Congress needs to act now. Let’s remind them that our fellow Americans need our help. We need to refocus on PR. We… https://t.co/aqfmMbgQdz +06/10/2018,Politicians,@SenGillibrand,"As hurricane season begins, too many in PR still continue to suffer in the wake of Hurricane Maria. This storm was… https://t.co/Vw96LvtB5P" +06/10/2018,Politicians,@SenGillibrand,The Annual National Puerto Rican Day Parade is a chance to celebrate the many contributions Puerto Ricans have made… https://t.co/6OhDJUWHa3 +06/10/2018,Politicians,@SenGillibrand,"Today, on the 55th anniversary of the #EqualPayAct, we’re reminded that the fight for equality is not over. Women a… https://t.co/tdgujqdhsI" +06/09/2018,Politicians,@SenGillibrand,Each and every one of us has the power to make a difference. Each and every voice has the power to change the world… https://t.co/6Sc2zKFm1d +06/09/2018,Politicians,@SenGillibrand,".@SusieLeeNV is running to fight for public education, improve Obamacare and protect women's rights in #NV03. She’s… https://t.co/3YG3KcYj0e" +06/09/2018,Politicians,@SenGillibrand,We need @RosenforNevada in the Senate. But she’s facing a tough race this fall against a flood of dark money. She n… https://t.co/rRyvFRHKtl +06/09/2018,Politicians,@SenGillibrand,"As we’ve come together to stand behind Democratic women this year, we’ve seen victory after victory in primaries ac… https://t.co/JCKGhW2zn6" +06/09/2018,Politicians,@SenGillibrand,"I'm so honored to fight with YOU! Thank you for putting this together—I'll have to check if I can make it, but appr… https://t.co/CX2LfLklFl" +06/09/2018,Politicians,@SenGillibrand,"These children will never forget that when they arrived in the United States, the government ripped them away from… https://t.co/KhvgKMVzGm" +06/09/2018,Politicians,@SenGillibrand,"I was completely devastated after reading these stories. The Trump administration is carrying out a cruel, heartles… https://t.co/L7VKmpcvN2" +06/08/2018,Politicians,@SenGillibrand,"When women raise our voices, we’re a force for good as great as any this world has ever seen – especially when we d… https://t.co/ECR0tPYikQ" +06/08/2018,Politicians,@SenGillibrand,"On Sunday, July 22, I'm heading to OZY Fest in Central Park, joining an exciting lineup of performances and panels.… https://t.co/PJyIMr3xH7" +06/08/2018,Politicians,@SenGillibrand,ICE is acting recklessly and failing to respect human dignity. This administration's approach to immigration enforc… https://t.co/QV0csY5Kuv +06/08/2018,Politicians,@SenGillibrand,"Health care should be a right, not a privilege." +06/08/2018,Politicians,@SenGillibrand,"The Trump administration is trying to destroy the Affordable Care Act by refusing to defend it in court, another mo… https://t.co/HtVgHbEWOG" +06/07/2018,Politicians,@SenGillibrand,From @CWSoftballGame practice this morning. Feeling pretty good about this game. Team press better watch out! https://t.co/px8tF4Dx17 +06/07/2018,Politicians,@SenGillibrand,"I'll not stop fighting to fix our military justice system. This week, I filed my bill, the Military Justice Improve… https://t.co/4H1MGQjCsA" +06/07/2018,Politicians,@SenGillibrand,"The #EqualPayAct was passed 55 years ago, but the pay gap still exists. Gender or race should never impact your pay… https://t.co/SP33gOn98K" +06/07/2018,Politicians,@SenGillibrand,"I was almost as excited about the chance to warm up my pitching arm as I was about seeing the room full of engaged,… https://t.co/niLUF9lLei" +06/06/2018,Politicians,@SenGillibrand,It is completely shameful for ICE to separate a father from his wife and kids like this. This administration's appr… https://t.co/vzImWN0xte +06/05/2018,Politicians,@SenGillibrand,"Stories like Heath’s are the reason why I will never stop fighting for our military justice system to be more fair,… https://t.co/U2jAQJJSC9" +06/05/2018,Politicians,@SenGillibrand,It’s already abundantly clear that Trump and the GOP’s sabotage of our health care system will hurt many of our fam… https://t.co/EDj7gSYnsZ +06/04/2018,Politicians,@SenGillibrand,Getting to the polls is one of the best ways to make real change. The last few months of progressive wins prove tha… https://t.co/TgUfFu7TS8 +06/04/2018,Politicians,@SenGillibrand,Harmful and disappointing ruling from the Supreme Court this morning. Companies shouldn't discriminate against memb… https://t.co/LxqjOyc2gU +06/04/2018,Politicians,@SenGillibrand,The president’s repeated attempts to undermine the Special Counsel’s investigation are extremely troubling — Congre… https://t.co/MWd0hjf7CU +06/03/2018,Politicians,@SenGillibrand,We need to show we truly value women by addressing the tragic reality of maternal mortality. A woman in the U.S. is… https://t.co/yXsr7h6H64 +06/02/2018,Politicians,@SenGillibrand,"So today, on National Gun Violence Awareness Day, we #WearOrange to remember the families and communities that have… https://t.co/83AAkOyvhp" +06/02/2018,Politicians,@SenGillibrand,"We have a gun violence epidemic in our country, and it claims 96 lives every day. But lawmakers haven’t come close… https://t.co/IJtXzFAVHa" +06/02/2018,Politicians,@SenGillibrand,".@DianneFeinstein has broken down barriers her entire career, and she continues to be an inspiration and advocate f… https://t.co/iUNtZNQvBq" +06/02/2018,Politicians,@SenGillibrand,".@tanziefornj is a former teacher and Blue Star Mother running in #NJ02 to fight for a more inclusive, progressive… https://t.co/70Bm52ilf7" +06/02/2018,Politicians,@SenGillibrand,"In #IA01, @Abby4Iowa is fighting for women’s rights, affordable education and quality health care. She needs a stro… https://t.co/pHrzrxOwNY" +06/02/2018,Politicians,@SenGillibrand,"After nearly 20 years as an attorney taking on special interests, @katieporteroc is ready to bring that fight to Co… https://t.co/Egjrr1uSbc" +06/02/2018,Politicians,@SenGillibrand,"In #CA39, @DocTran2018 is running to protect the values and opportunities that allowed her to overcome tremendous o… https://t.co/xOjnF2Mytt" +06/02/2018,Politicians,@SenGillibrand,A record number of women are running for office this year! Here are just a few candidates with primaries on June 5… https://t.co/V9lRBZRjUm +06/01/2018,Politicians,@SenGillibrand,I’m still in. https://t.co/2IHSzgU0T2 +06/01/2018,Politicians,@SenGillibrand,"Gun violence isn’t inevitable or untouchable. We can overcome it, but it’ll take all of us raising our voices again… https://t.co/fxKwfB5Kko" +06/01/2018,Politicians,@SenGillibrand,"“The first step is telling the truth—the next step is changing the system.” + +@GretchenCarlson writes about last wee… https://t.co/cF9ulr7xJe" +06/01/2018,Politicians,@SenGillibrand,"Each day, the incredible leaders and fighters of our LGBTQ communities inspire us all with their strength, their lo… https://t.co/avok0YLZru" +06/01/2018,Politicians,@SenGillibrand,Major General Bannister was an exceptional leader who dedicated his entire life to this country. His legacy will no… https://t.co/RyTE8tP9sS +05/31/2018,Politicians,@SenGillibrand,"I hope you’ll read this. Veteran Alonzo Neese, a gun owner and former NRA member, shares why he’s joining the fight… https://t.co/DiLE6jE2BC" +05/31/2018,Politicians,@SenGillibrand,"Workplace harassment is clearly a drag on our economy, but we don't know by how much, in part because @BLS_gov absu… https://t.co/Wg0xhykznN" +05/31/2018,Politicians,@SenGillibrand,"If you believe as fiercely as I do that America is better than ripping children from the arms of asylum seekers, we… https://t.co/ZVvkvHQgOP" +05/31/2018,Politicians,@SenGillibrand,Children are being ripped from the arms of their mothers at our southern border because of policy made and implemen… https://t.co/vHUpz4zHHI +05/31/2018,Politicians,@SenGillibrand,"When mothers came to our southern border desperate for help, they expected to meet the America the world believes i… https://t.co/UXpEK1HjsM" +05/30/2018,Politicians,@SenGillibrand,"No way, @LACaldwellDC. Team Congress is ready to play and ready to WIN! https://t.co/KvktpvPvcm" +05/30/2018,Politicians,@SenGillibrand,"While many try to deride and undermine our unions, the truth is, unions are leading the fight to reward work, for e… https://t.co/fVUp0rGdA3" +05/30/2018,Politicians,@SenGillibrand,Thanks to all who are working so hard to ensure the @Sept11Memorial recognizes the responders and survivors still s… https://t.co/kC9t7DgllZ +05/30/2018,Politicians,@SenGillibrand,This new report demands answers from the federal government about what happened to our fellow citizens in crisis. https://t.co/4RcVNJANT7 +05/29/2018,Politicians,@SenGillibrand,"On this day in 1851, abolitionist Sojourner Truth stood up to demand equal rights for all women and for black Ameri… https://t.co/yzw6hBRfPA" +05/29/2018,Politicians,@SenGillibrand,"Please watch my friend @ValerieJarrett respond to yet another example of everyday racism. As allies in this fight,… https://t.co/MkD63o09Zm" +05/28/2018,Politicians,@SenGillibrand,"Today, on Memorial Day, as we spend time with family and friends, we honor the women and men in uniform who gave th… https://t.co/c8Gt7i8dHg" +05/28/2018,Politicians,@SenGillibrand,.@AbbyWambach shared some incredible wisdom with the women of @BarnardCollege's graduating class (and with all of u… https://t.co/kjuLwq6IzK +05/27/2018,Politicians,@SenGillibrand,Justice Ginsburg is right: The Supreme Court’s ruling on forced arbitration is “egregiously wrong” and undermines w… https://t.co/TPtTKLpe4t +05/27/2018,Politicians,@SenGillibrand,The Trump administration's domestic gag rule should enrage us all. I’m tired of the relentless attempts to roll bac… https://t.co/vsPwDHAGmj +05/26/2018,Politicians,@SenGillibrand,This administration’s immigration policies are heartless and infuriating. Congress must immediately demand accounta… https://t.co/S1rIM6iczq +05/26/2018,Politicians,@SenGillibrand,"Progress seldom comes fast, and it’s never easy. But when we come together to fight for our rights, we have the cap… https://t.co/ZEKucwJSWq" +05/26/2018,Politicians,@SenGillibrand,I am in awe of what the fearless women of Ireland accomplished yesterday. They activated and organized for years to… https://t.co/fxZgS96fyz +05/26/2018,Politicians,@SenGillibrand,"I need my friend @kyrstensinema by my side in the Senate to defend our values and take our country forward, never b… https://t.co/Y3RMSRzlO4" +05/25/2018,Politicians,@SenGillibrand,"While you weren’t looking, President Trump quietly moved to undermine public sector unions and the rights of our fe… https://t.co/TYr6LBq8OP" +05/25/2018,Politicians,@SenGillibrand,"In a blatant attack on women’s reproductive rights, the Trump administration’s “gag rule” would go further than eve… https://t.co/r1pIh8AflD" +05/25/2018,Politicians,@SenGillibrand,🙋🏼‍♀️ https://t.co/sjpEH4Iai5 +05/25/2018,Politicians,@SenGillibrand,"We will not stay silent. Women will lead the charge against Trump's harmful domestic gag rule. Today, in the Senate… https://t.co/o20v1pj9YY" +05/24/2018,Politicians,@SenGillibrand,"The new domestic ""gag rule"" is another attempt by the Trump administration to take away women's access to critical… https://t.co/UXoWz0EV19" +05/24/2018,Politicians,@SenGillibrand,"RT @PattyMurray: We’ve now shown that we can work together to make progress on this issue, and there is every reason to keep pushing for mo…" +05/24/2018,Politicians,@SenGillibrand,"These reforms are commonsense—and I'm optimistic that we can finish the job and get this bill signed into law. + +Un… https://t.co/TptI0xf98J" +05/24/2018,Politicians,@SenGillibrand,"The Senate just passed bipartisan reforms to fix Congress's broken process for reporting sexual harassment, and fin… https://t.co/jzuAYAxf6r" +05/24/2018,Politicians,@SenGillibrand,Our troops sacrifice a great deal for the American people. They deserve our continued support. I was proud to work… https://t.co/E7DuZp0DFV +05/23/2018,Politicians,@SenGillibrand,"Congress should focus on rewarding work and protecting families, not helping big banks make more money. https://t.co/x3G63tnSrq" +05/23/2018,Politicians,@SenGillibrand,"In November, we have an incredible opportunity to take back the House and Senate, and we’ll need you and everyone y… https://t.co/qwxJ21Zmp7" +05/23/2018,Politicians,@SenGillibrand,"Throughout the primary season, women have run and women have won. Some incredible organizations have been by their… https://t.co/RWRVU2SKu0" +05/23/2018,Politicians,@SenGillibrand,".@AmyMcGrathKY once trailed by 47 points in her primary. Forty-seven. No matter the odds, if we run strong candidat… https://t.co/5xp0mJZtHC" +05/23/2018,Politicians,@SenGillibrand,"Democrats are going into November behind candidates like @LucyWins2018, @LupeValdez, @staceyabrams and… https://t.co/2Rf6SWkS4r" +05/23/2018,Politicians,@SenGillibrand,We must remain focused on finishing this fight by passing this bill once it comes to the Senate floor. I hope you’l… https://t.co/r64x0utufe +05/23/2018,Politicians,@SenGillibrand,"Today, Senate leadership announced a bipartisan deal on legislation to address sexual harassment in Congress. This… https://t.co/pZTzHX3QQt" +05/23/2018,Politicians,@SenGillibrand,".@realDonaldTrump, here are some more firsts for you: Record numbers of women are marching, speaking out, fighting… https://t.co/TuyO7OtUiQ" +05/23/2018,Politicians,@SenGillibrand,"From the beginning of Amy’s race, @getots has been by her side. Now we need to help her bring it home. Can you make… https://t.co/VBwexakMc8" +05/23/2018,Politicians,@SenGillibrand,"Amy was the first woman in the Marine Corps to fly into combat in an F-18, and she went on to fly 89 missions in pl… https://t.co/7dklZ5PrcH" +05/23/2018,Politicians,@SenGillibrand,This is just the first step. We all have to come together now. Electing candidates like Amy is how we fight for a f… https://t.co/4KRtb45frZ +05/23/2018,Politicians,@SenGillibrand,Congratulations to @AmyMcGrathKY on securing the Democratic nomination in KY-6. We’re ready to fight alongside you… https://t.co/aEU3Hn8uQt +05/22/2018,Politicians,@SenGillibrand,Thrilled to help launch @voterunlead + @wework's #WomensLeadershipWorks partnership tonight. A great discussion wit… https://t.co/7rBoDWKtw2 +05/22/2018,Politicians,@SenGillibrand,"RT @VoteRunLead: Tonight @WeWork & @VoteRunLead officially kick-off our powerful #WomensLeadershipWorks partnership, bringing #RunAsYouAre…" +05/22/2018,Politicians,@SenGillibrand,"If you live in Texas, your vote in today’s primary runoff is so important. @ginaortizjones in #TX23, @mjhegar in… https://t.co/4HcUI1vr5r" +05/22/2018,Politicians,@SenGillibrand,"If you live in #GA06, or know someone who does, make sure you support @LucyWins2018 in today’s primary election! Sh… https://t.co/JuxT6XCPdP" +05/22/2018,Politicians,@SenGillibrand,.@AmyMcGrathKY has her primary election today. She’s running to continue a life of service to our country and fight… https://t.co/QbcRdoNWbp +05/22/2018,Politicians,@SenGillibrand,"If you live in GA, your vote for @staceyabrams for #GAGov is a vote for affordable childcare, an economic agenda to… https://t.co/NSshDQ7K5H" +05/22/2018,Politicians,@SenGillibrand,"There are incredible women candidates on ballots across the country today, in primaries and in runoffs. Over the ne… https://t.co/KFAw9d8dr3" +05/22/2018,Politicians,@SenGillibrand,"Last week, I sat down with @Kasie to discuss our fight to reform the way Congress handles sexual harassment. I'm ho… https://t.co/8wy5OBQ36L" +05/21/2018,Politicians,@SenGillibrand,So impressed by the teams at @IceStoneLLC and Brooklyn Stone and Tile. Not only do they bring quality manufacturing… https://t.co/tVQvnEWtkZ +05/21/2018,Politicians,@SenGillibrand,Dana Baiocco has spent her career helping companies avoid responsibility for making harmful products. Why on earth… https://t.co/E35T29FMgZ +05/21/2018,Politicians,@SenGillibrand,"This decision could have devastating consequences for workers, who might now be forced to choose between keeping th… https://t.co/exexY7HTRy" +05/21/2018,Politicians,@SenGillibrand,"Yesterday, I had a fanatstic coffee meeting @SylviasSoulFood with @SheenaWrightNYC of @unitedwaynyc! Thanks to all… https://t.co/s4NgIYpMY8" +05/20/2018,Politicians,@SenGillibrand,I draw inspiration from trailblazing women who shaped our country’s history. Their stories are as relevant today as… https://t.co/Nz0aqXxGdj +05/20/2018,Politicians,@SenGillibrand,"Lucy is facing a tough primary fight on Tuesday, and we need to send her our urgent support! Will you donate $5 rig… https://t.co/e64dy5LpFB" +05/20/2018,Politicians,@SenGillibrand,".@LucyWins2018 is a mother, wife, businesswoman and social justice activist fighting to flip #GA06 blue in November… https://t.co/DuM8v9xV5X" +05/20/2018,Politicians,@SenGillibrand,RT @NYCDCA: Today Cmsr Salas joined @SenGillibrand and recent college grads to talk about the financial burdens caused by the growing stude… +05/20/2018,Politicians,@SenGillibrand,But just days ago the Trump admin decided to eliminate a program that protects graduates from predatory student loa… https://t.co/pP65q88vEs +05/20/2018,Politicians,@SenGillibrand,"It’s graduation season! As we congratulate all who are finishing up school this year, here’s my wish for our colleg… https://t.co/QErEq4M8ND" +05/19/2018,Politicians,@SenGillibrand,"I’ve been on the campaign trail with young kids, and I couldn’t have juggled those long days and late nights withou… https://t.co/QiJwmQeQPO" +05/19/2018,Politicians,@SenGillibrand,"If we’re going to change our politics, we need to change who our leaders are. @staceyabrams is the kind of leader w… https://t.co/qu8PQ1Yin8" +05/19/2018,Politicians,@SenGillibrand,I still don’t understand how lawmakers in this country continue to think that it’s their job to tell women what to… https://t.co/4Tt53Qpg7e +05/18/2018,Politicians,@SenGillibrand,"Heartbreaking, unbearable news out of Santa Fe, TX, the latest community to be torn apart by a horrific school shoo… https://t.co/3BmTorqJOC" +05/18/2018,Politicians,@SenGillibrand,RT @CNNPolitics: Sen. Kirsten Gillibrand on the Trump administration proposing a rule that could strip Planned Parenthood funding: “I think… +05/18/2018,Politicians,@SenGillibrand,"This is an attack on Planned Parenthood. It’s an attack on choice. It’s an attack on women’s rights. + +Women’s healt… https://t.co/aHXY6ji813" +05/17/2018,Politicians,@SenGillibrand,No need to look too far! We have a great bill you could support. The #FAMILYAct would allow every American worker u… https://t.co/b7NufnvLcc +05/17/2018,Politicians,@SenGillibrand,"Someone who refuses to say torture is immoral, and who was engaged in destroying evidence of torture, should not be… https://t.co/im2IEbcAjW" +05/17/2018,Politicians,@SenGillibrand,The House passed reform 100 days ago. It is long past time for the Senate to act. There is no reasonable excuse for… https://t.co/WSUr4RrQvP +05/17/2018,Politicians,@SenGillibrand,"On the one-year anniversary of the Mueller investigation’s start, I’m renewing my call for the Senate to put a bipa… https://t.co/O9YlOMAdu2" +07/01/2018,Politicians,@SenWarren,.@realDonaldTrump’s short list of Supreme Court nominees was hand-picked by right-wing extremists who want to crimi… https://t.co/5cIqU0ohgS +06/29/2018,Politicians,@SenWarren,"At the #FamiliesBelongTogether march tomorrow, we’ll show @realDonaldTrump that the real power is with the people.… https://t.co/BhWUoW92lz" +06/29/2018,Politicians,@SenWarren,"Tomorrow, thousands of Puerto Rican evacuees will lose federal housing assistance & many will be left homeless.… https://t.co/OGzwO9swP1" +06/29/2018,Politicians,@SenWarren,Great news: Massachusetts is moving closer to a level playing field for working families. Congratulations to… https://t.co/AlF8q8450g +06/29/2018,Politicians,@SenWarren,RT @RepCummings: The House GOP’s “opioid week” failed to address the crisis by providing adequate treatment funding. My bill with @SenWarre… +06/28/2018,Politicians,@SenWarren,My heart goes out to the Capital Gazette. No journalist should have to duck bullets in the newsroom. No student sho… https://t.co/2wWcvzfTbP +06/28/2018,Politicians,@SenWarren,.@nationalgridus got a huge windfall from the #GOPtaxscam – but the gas company is still squeezing its own employee… https://t.co/MdRO07RiE0 +06/28/2018,Politicians,@SenWarren,The fight for equal justice for ALL Americans – not just the rich and powerful – has only just begun. Watch live: https://t.co/nmuyzd5gjQ +06/27/2018,Politicians,@SenWarren,Mitch McConnell should follow the Mitch McConnell rule. Let the American people have a say when women’s health and… https://t.co/hOlinahSjR +06/27/2018,Politicians,@SenWarren,"RT @ChrisVanHollen: Today’s SCOTUS decision in Janus v. AFSCME was a major blow to unions and working people, while further rigging the sys…" +06/27/2018,Politicians,@SenWarren,Corporate interests have been rigging the system against workers for decades – and the Supreme Court just handed th… https://t.co/Lop4IFq9zu +06/27/2018,Politicians,@SenWarren,"I went down to the border protection processing center in McAllen, Texas so I could see what’s happening there with… https://t.co/BLtpuwS0SS" +06/26/2018,Politicians,@SenWarren,The Supreme Court – thanks to a seat stolen by right-wing Republicans – just upheld Trump’s Muslim ban. While the C… https://t.co/LH9MSIM110 +06/26/2018,Politicians,@SenWarren,"Last year, I joined hundreds of people at Logan Airport to protest @realDonaldTrump's Muslim ban. We believed that… https://t.co/6quvNTWv6i" +06/24/2018,Politicians,@SenWarren,I believe that when a woman flees the only home she's ever known with her 4-year-old son and begs the United States… https://t.co/djIDGLiore +06/24/2018,Politicians,@SenWarren,"I spoke with one woman from El Salvador at a CBP processing center. She gave a policeman a drink of water, and the… https://t.co/hJxR7Liqeh" +06/24/2018,Politicians,@SenWarren,"Today, I'm in McAllen, TX. What I've witnessed here is truly disturbing. People are being held in cages – there's n… https://t.co/riSBGHSxjL" +06/24/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, and public health and s… https://t.co/7uyn1YI1EU" +06/23/2018,Politicians,@SenWarren,Powerful corporations and their Republican allies are working overtime to roll back basic rules that protect workin… https://t.co/DXdfcts87U +06/22/2018,Politicians,@SenWarren,It's been 6 months since Trump signed the #GOPtaxscam into law. I spoke with @KellerAtLarge about how it's hurting… https://t.co/8UH9lrc2el +06/21/2018,Politicians,@SenWarren,UPDATE: @BetsyDeVosED has lost another round in federal court. A judge just ruled that she cannot collect loans fro… https://t.co/PT4cXn2P23 +06/21/2018,Politicians,@SenWarren,If you agree that Thomas Farr – who has defended discrimination & worked to restrict the voting rights of African A… https://t.co/3L5W7vF9sB +06/20/2018,Politicians,@SenWarren,This isn’t over. Thousands of kids have been ripped from their parents with no plan to reunite them. And now… https://t.co/gMiJwZzQtI +06/20/2018,Politicians,@SenWarren,"On #WorldRefugeeDay, we cannot ignore the humanitarian crisis happening on our border as desperate families flee vi… https://t.co/ecoGve7HFR" +06/20/2018,Politicians,@SenWarren,.@RepCummings has devoted his life to the fight for justice. Watch as he makes a powerful case for why… https://t.co/zWY55CrGbY +06/19/2018,Politicians,@SenWarren,@realDonaldTrump is meeting with House Republicans to discuss his immigration crisis. Will they have the courage to… https://t.co/wJ2OgGKrq0 +06/19/2018,Politicians,@SenWarren,RT @SenSherrodBrown: Demanding answers today with @SenWarren about exactly what role Kraninger has played in developing and implementing th… +06/19/2018,Politicians,@SenWarren,"RT @FSCDems: #RELEASE: Ranking Member @RepMaxineWaters' Statement on the Nomination of Kathy Kraninger to Head the @CFPB + +https://t.co/dKl…" +06/19/2018,Politicians,@SenWarren,Kathy Kraninger helps oversee the agencies that are ripping kids from their parents. Now @realDonaldTrump wants her… https://t.co/1GEiiTwTOb +06/19/2018,Politicians,@SenWarren,".@realDonaldTrump’s nominee to run the @CFPB, Kathy Kraninger, has no track record of helping consumers. That's bad… https://t.co/OeqZ3y3kvq" +06/18/2018,Politicians,@SenWarren,".@realdonaldtrump could pick up the phone and stop the separation of families seeking refuge in the US. Instead, he… https://t.co/hV65UArXrZ" +06/17/2018,Politicians,@SenWarren,Kids across the US are spending today with their dads. But thousands of children who have been separated from their… https://t.co/630gU6vMUB +06/15/2018,Politicians,@SenWarren,Thousands of Americans have joined @UniteThePoor to call on our government to pay attention: to flat wages and risi… https://t.co/EBMljKXQJr +06/15/2018,Politicians,@SenWarren,Joseph Otting told Congress he’s never seen discrimination – even though he used to run a bank that went out of its… https://t.co/RNb1ZtC23W +06/15/2018,Politicians,@SenWarren,My colleague @RepJayapal is right. We are not talking about immigration policy. We are talking about the soul of Am… https://t.co/8ApE0b0aZN +06/15/2018,Politicians,@SenWarren,I’m going to fight like hell with @SenatorDurbin and the @SenateDems to end this cruel Trump Administration policy.… https://t.co/c7MlB6cvUd +06/15/2018,Politicians,@SenWarren,The official policy of this administration is to rip children from their parents. Let that sink in. And then fight… https://t.co/8irLEVGJXd +06/14/2018,Politicians,@SenWarren,Children are being separated from their parents and incarcerated. It’s not enough to be outraged. Make your voice h… https://t.co/aXRpsgRPhb +06/14/2018,Politicians,@SenWarren,"We don't know how many Puerto Ricans died from Hurricane Maria, but we do know the official death toll of 64 is a h… https://t.co/Xy4lfmTOci" +06/14/2018,Politicians,@SenWarren,The Trump Admin is packing our courts with right-wing nominees like Chad Readler who want to tilt the scales in fav… https://t.co/fVZTGm5gC2 +06/14/2018,Politicians,@SenWarren,Some state governments are punishing people struggling with student loans by taking away their drivers’ & professio… https://t.co/mOuZJY890z +06/13/2018,Politicians,@SenWarren,"Power is more and more concentrated in a handful of giant companies at the expense of small businesses, entrepreneu… https://t.co/7gMvtPngdt" +06/13/2018,Politicians,@SenWarren,Thousands of children have been torn from their parents’ arms because of @realdonaldtrump’s cruel immigration polic… https://t.co/LwpVD9VlQS +06/13/2018,Politicians,@SenWarren,Congress is voting on a reckless provision jammed into this year’s defense bill that would give @realdonaldtrump fr… https://t.co/DxTsmAzooD +06/13/2018,Politicians,@SenWarren,.@SecAzar told the Senate about his shiny new drug pricing plan yesterday. But he can’t guarantee it won't raise pr… https://t.co/RzpnCtbOYi +06/13/2018,Politicians,@SenWarren,RT @SenateDems: Debemos hacer todo lo posible para ayudar a nuestros hermanos y hermanas en #PuertoRico. La Ley de Vivienda Para Víctimas d… +06/12/2018,Politicians,@SenWarren,Poor & marginalized Americans are coming together across the country to demand a government that works for the peop… https://t.co/5AOouapvUt +06/12/2018,Politicians,@SenWarren,"RT @SenTinaSmith: In his campaign, @POTUS made bold promises about reducing drug prices. But @SenWarren and I are gravely concerned that th…" +06/12/2018,Politicians,@SenWarren,My full statement on President Trump’s meeting with Kim Jong Un: https://t.co/BgyTMzhI4q https://t.co/Dk1LNOnMuM +06/12/2018,Politicians,@SenWarren,Jeff Sessions' move to deny asylum to women fleeing domestic violence does not reflect our country's true values. T… https://t.co/NWsVeIqtGo +06/11/2018,Politicians,@SenWarren,"Red & blue states alike have taken their own thoughtful approaches to marijuana. Now, 12 governors – led by… https://t.co/SlLzk3G5rq" +06/11/2018,Politicians,@SenWarren,Our democracy is under attack – but not lost. Watch live as I talk with the @ACLU about how we’re fighting to save… https://t.co/gEcBbyB7YP +06/11/2018,Politicians,@SenWarren,The Supreme Court’s decision to make it easier for Ohio to cross eligible voters off the rolls is a major step back… https://t.co/jPB6mi1ZoV +06/11/2018,Politicians,@SenWarren,"RT @SenMarkey: The repeal of #NetNeutrality officially goes into effect today, but the fight is far from over. + +The people saying we can’t…" +06/10/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, public health & safety… https://t.co/IHN37uFDLk" +06/08/2018,Politicians,@SenWarren,"When I questioned Trump's pick to be the head of civil rights at @usedgov, he dipped & dodged on whether he'd prote… https://t.co/YNCWutojS7" +06/08/2018,Politicians,@SenWarren,Yesterday I met with Puerto Rican families who evacuated to MA after Hurricane Maria. They want to make MA their ho… https://t.co/Rjs3ip4eO9 +06/07/2018,Politicians,@SenWarren,"A majority of Americans support legalizing marijuana. It’s time for Congress to listen, and pass this new bipartisa… https://t.co/x6COyGCPci" +06/07/2018,Politicians,@SenWarren,There's a lot we can do to address America’s broken marijuana policies – like passing @SenBooker’s… https://t.co/mf11K7ZMHr +06/07/2018,Politicians,@SenWarren,No qualified scientist should have to struggle to conduct basic research on marijuana. Their findings could spur me… https://t.co/bn37ADU6XB +06/07/2018,Politicians,@SenWarren,No legitimate business should be blocked from basic banking services – but that’s exactly what’s happening to law-a… https://t.co/fTVV0eP0IN +06/07/2018,Politicians,@SenWarren,"No veteran with chronic pain, child with a rare disease, or person struggling with a terminal illness should be den… https://t.co/Xhlu1YfW7q" +06/07/2018,Politicians,@SenWarren,No one should go to jail for a joint. But more Americans are arrested for marijuana possession than all violent cri… https://t.co/P1Rr1tk0rK +06/07/2018,Politicians,@SenWarren,"By outlawing marijuana, the federal government puts communities of color, small businesses, & public health & safet… https://t.co/q5d85SGxSu" +06/07/2018,Politicians,@SenWarren,"The federal government’s marijuana policies are broken, outdated, and disregard the rights of states like MA & CO t… https://t.co/NJU1t1FeC3" +06/07/2018,Politicians,@SenWarren,It’s time to reform American’s outdated marijuana policies. Watch live as @SenCoryGarder and I discuss our new legi… https://t.co/CSUmSKYPSt +06/06/2018,Politicians,@SenWarren,.@MickMulvaneyOMB has no intention of putting consumers above financial firms that cheat them. This is what happen… https://t.co/GRcWGiA5JD +06/06/2018,Politicians,@SenWarren,"RT @SenTinaSmith: When women are empowered to contribute, we all benefit. We’re seeing it more and more here in the Senate. And I’m proud t…" +06/06/2018,Politicians,@SenWarren,Robert Kennedy understood that we cannot simply run our economy for those at the top and assume that it will solve… https://t.co/wVYiobM82c +06/06/2018,Politicians,@SenWarren,Corruption oozes out of @EPAScottPruitt’s office like toxic sludge – and working families will get burned by it. I… https://t.co/8bJhKoM6ug +06/05/2018,Politicians,@SenWarren,The GOP wants you to believe that their war on regulations is about freedom. Baloney. Good rules empower people to… https://t.co/MNdMNAJVBm +06/04/2018,Politicians,@SenWarren,".@realDonaldTrump is playing a political game, and he believes he gets to make up the rules. He doesn’t. The Consti… https://t.co/ukMqIVrp7S" +06/03/2018,Politicians,@SenWarren,La respuesta del gobierno federal en Puerto Rico después del huracán María ha sido pésima. Hablé con @TelemundoNI s… https://t.co/XTKbqAvG7U +05/31/2018,Politicians,@SenWarren,.@SenMarkey & I are introducing a bill to make @FEMA address the medium & long-term housing needs of survivors of H… https://t.co/xyXkQkkz5y +05/31/2018,Politicians,@SenWarren,Let’s be clear: @realDonaldTrump's gag rule isn't about improving women’s health care. It's an attempt to control w… https://t.co/g20gU9oi70 +05/31/2018,Politicians,@SenWarren,Car dealers are exempt from @CFPB oversight – and auto loan defaults just hit a 15-year high. That's not a coincide… https://t.co/QXcxmFZLJd +05/30/2018,Politicians,@SenWarren,"Even as banks make record profits, their former banker buddies turned regulators are doing them favors by rolling b… https://t.co/PzWIXHExiE" +05/30/2018,Politicians,@SenWarren,"Thousands of students were cheated by for-profit colleges, but @BetsyDeVosED wants to stop students from getting th… https://t.co/7it5Yqrdak" +05/30/2018,Politicians,@SenWarren,".@Walmart rakes in billions from the #GOPTaxScam and sends the profits straight to Wall Street, while many employee… https://t.co/su7bcDzF52" +05/29/2018,Politicians,@SenWarren,"In another example of weak enforcement that will harm our economy, the DOJ just approved the @Bayer-@MonsantoCo mer… https://t.co/zqxWOy5G6g" +05/29/2018,Politicians,@SenWarren,The official death count in Puerto Rico from Hurricane Maria is only 64. A new study shows the real total could be… https://t.co/s38Kh0lLKt +05/28/2018,Politicians,@SenWarren,All 3 of my brothers served & came home safe. But many do not. I had the chance to honor a special group of veteran… https://t.co/21adDPdDwU +05/26/2018,Politicians,@SenWarren,Firefighters face a higher rate of cancer than the rest of the population. They face enough risk every day – we’ve… https://t.co/riciYDCrV8 +05/25/2018,Politicians,@SenWarren,"Update: Brian Montgomery has been confirmed by the Senate 74 to 23. In Donald Trump’s Washington, the revolving doo… https://t.co/XYlEWcU0Dz" +05/24/2018,Politicians,@SenWarren,The #BankLobbyistAct was just signed into law – rolling back rules on big banks. But bank lobbyists are already ask… https://t.co/5cyAvODIxv +05/24/2018,Politicians,@SenWarren,President Trump’s wild back and forth with Kim Jong Un shows once again that he has no strategy. If… https://t.co/zMXET6LcBx +05/24/2018,Politicians,@SenWarren,"I spoke with preachers from across the country about growing up a Methodist, teaching Sunday School to rowdy 5th gr… https://t.co/qti7O5JIWF" +05/24/2018,Politicians,@SenWarren,"I love when the USW comes to the Capitol. They’re loud, they’re strong, and they won’t back down from the fight. Co… https://t.co/PcVQH70wC1" +05/23/2018,Politicians,@SenWarren,RT @UNITEDWEDREAM: Find out if you can renew your #DACA TODAY! United We Dream has put a list of resources for you to figure out if you qua… +05/23/2018,Politicians,@SenWarren,"Over 700 children have been separated from their parents thanks to a new, cruel Trump Admin policy. Today,… https://t.co/8n3tBVxUH9" +05/23/2018,Politicians,@SenWarren,"Yesterday, I met with @AMarch4OurLives leaders @Alfonso_Cal, @davidhogg111, and @Charlie_Mirsky. Congress still has… https://t.co/Dj73Sau6UI" +05/23/2018,Politicians,@SenWarren,"We should be expanding – not limiting – women’s access to reproductive health care. Instead, the GOP is attacking s… https://t.co/zx0mPFU3L1" +05/22/2018,Politicians,@SenWarren,Big banks have spent millions of dollars trying to roll back the rules we put in place after we bailed them out ten… https://t.co/rd0DtmYQXB +05/22/2018,Politicians,@SenWarren,"In a decision written by Justice Gorsuch, the Supreme Court has ruled that corporations can block workers from suin… https://t.co/Ys1c8ySKED" +05/22/2018,Politicians,@SenWarren,"For years, armies of bank lobbyists & executives have groaned about how financial rules are hurting them. But there… https://t.co/Gtjacxqkdp" +05/21/2018,Politicians,@SenWarren,The #BankLobbyistAct rolls back the rules on big banks & increases the risk of another taxpayer bailout. It could p… https://t.co/apSASLY4vj +05/20/2018,Politicians,@SenWarren,I graduated from a commuter college like @Quinsig. Even as the rich and powerful tighten their hold on our democrat… https://t.co/XCe9iKXeGb +05/19/2018,Politicians,@SenWarren,"Today I told the graduates of @lesley_u: There will be plenty of people in your life who will try to shut you up, b… https://t.co/KTRFnPIpJV" +05/18/2018,Politicians,@SenWarren,"My heart breaks for the students and faculty of Santa Fe High School, and the families of those who lost their live… https://t.co/8f9RbOZqYo" +05/18/2018,Politicians,@SenWarren,"We're going to keep fighting back against @realdonaldtrump, @VP Pence, and right-wing politicians who want to regul… https://t.co/HVEUwglVOR" +05/18/2018,Politicians,@SenWarren,.@realdonaldtrump's gag rule is designed to kick providers like Planned Parenthood out of Title X & hold women host… https://t.co/zK3EKPBmp2 +05/18/2018,Politicians,@SenWarren,"Title X provides birth control, cancer screenings & HIV tests to over 4M Americans. It doesn’t fund abortions & nev… https://t.co/kBpqg6tKvz" +05/17/2018,Politicians,@SenWarren,"Creating fake accounts, cheating servicemembers, overcharging mortgage borrowers – and now altering documents to fa… https://t.co/nviNSb4rwa" +05/17/2018,Politicians,@SenWarren,"No matter how you dress it up, torture is torture. It’s inhumane, ineffective, and un-American. Gina Haspel advocat… https://t.co/bUdt01PYmj" +05/16/2018,Politicians,@SenWarren,I ran into 2018 @bostonmarathon champ @des_linden today. I’m glad she slowed down long enough for us to grab a phot… https://t.co/c67kFGSDN7 +05/16/2018,Politicians,@SenWarren,Thanks to my partner @SenMarkey for leading the charge in the Senate to save #NetNeutrality. We won this fight toda… https://t.co/NtTNResF3n +05/16/2018,Politicians,@SenWarren,"Democrats want to stop internet providers from blocking access, filtering content, or charging higher fees. I’m spe… https://t.co/VQ5Vn27hJ2" +05/16/2018,Politicians,@SenWarren,"CEO salaries are soaring while wages for American workers are barely budging. At many companies, CEOs make more in… https://t.co/ajLRsicf2Q" +05/15/2018,Politicians,@SenWarren,".@Equifax faced no real penalty after compromising the data of 148M Americans. Instead of demanding accountability,… https://t.co/kfJ5DDVDxx" +05/15/2018,Politicians,@SenWarren,"Thomas Farr, @realdonaldtrump's nominee for a federal judgeship, worked to undermine voting rights & defended discr… https://t.co/0eAjG6Bk13" +05/14/2018,Politicians,@SenWarren,Both @ATT and @Novartis had significant business before the Trump Admin when they secretly paid Trump’s attorney Mi… https://t.co/r0vxrQH2aH +05/14/2018,Politicians,@SenWarren,.@BetsyDeVosED has filled @usedgov with for-profit college hacks who only care about making sham schools rich and s… https://t.co/vLnhx9QrT6 +05/13/2018,Politicians,@SenWarren,Hey @PhilipsLight: You don’t get to walk away with millions in tax breaks and then turn around and spit in the face… https://t.co/pUKCUEDbHB +05/12/2018,Politicians,@SenWarren,Carl knows what it will take to beat the opioid epidemic – because he’s been fighting the AIDS epidemic for years.… https://t.co/sQNropkPce +05/11/2018,Politicians,@SenWarren,I pushed the @federalreserve hard to hold a public vote on whether @WellsFargo should be allowed to get any bigger… https://t.co/4mflZndgOx +05/11/2018,Politicians,@SenWarren,We owe our @USNationalGuard members the very best. But some officers are forced to wait months for their promotions… https://t.co/28IlXTo9TZ +05/10/2018,Politicians,@SenWarren,It’s unacceptable that @Equifax has taken so long to tell the whole truth about the extent of the breach. @Equifax… https://t.co/wWx1ROZ8RQ +05/10/2018,Politicians,@SenWarren,A months-long investigation by my office revealed that @Equifax failed to disclose all the information that was tak… https://t.co/kFccQIUdew +05/10/2018,Politicians,@SenWarren,I agree with @SenJohnMcCain. I opposed Gina Haspel’s nomination from the beginning – and I will vote against her co… https://t.co/qj37SFHSug +05/10/2018,Politicians,@SenWarren,About to call into @BosPublicRadio to talk with @margeryeagan and @criticalthawt (in for @jimbraude). Tune in live… https://t.co/EAGdYi7Viu +05/09/2018,Politicians,@SenWarren,"Student loan debt is exploding, but @MickMulvaneyOMB is planning to shut down the only federal office fully focused… https://t.co/LghPHDa5WP" +05/09/2018,Politicians,@SenWarren,"Today, Senate Democrats are moving to force a vote on @SenMarkey’s resolution to save #NetNeutrality. We only need… https://t.co/SBRpMePO68" +05/09/2018,Politicians,@SenWarren,"When I was in 2nd grade, Mrs. Lee told me that I too could be a teacher one day. I grew up to be a teacher, then a… https://t.co/6kuCihOcG0" +05/08/2018,Politicians,@SenWarren,Our justice system is broken. Black and brown Americans receive harsher sentences than white Americans for the same… https://t.co/GZN9uPX3Bi +05/08/2018,Politicians,@SenWarren,The @OfficialCBC is hosting a Twitter town hall right now on our broken criminal justice system. This is a powerful… https://t.co/ctCBdIG9cn +05/08/2018,Politicians,@SenWarren,Even the Trump Administration has conceded that Iran is complying with the deal. Now @realdonaldtrump has pulled ou… https://t.co/evx7zOJPIm +05/08/2018,Politicians,@SenWarren,The Obama Administration negotiated a landmark agreement to prevent Iran from obtaining a nuclear weapon.… https://t.co/IwYOdVvK3q +05/08/2018,Politicians,@SenWarren,Massachusetts has some of the strictest gun control laws in the country – and one of the lowest gun fatality rates… https://t.co/g1HWdTzxLn +05/05/2018,Politicians,@SenWarren,Crystal Perry of the Mashpee Wampanoag tribe in MA loved horses & her family. She & a friend were murdered in 2013… https://t.co/aziZwPx96R +05/05/2018,Politicians,@SenWarren,Today is National Day of Awareness for Missing and Murdered Native Women and Girls. Thousands of Native American wo… https://t.co/EYCnnUFOFG +05/04/2018,Politicians,@SenWarren,"Last month, Bruce & I visited the @NPG to see the stunning new portraits of the Obamas. @BarackObama's captures the… https://t.co/439iNFqbAm" +05/03/2018,Politicians,@SenWarren,I hope President Trump’s negotiations with North Korea succeed – the world will be a safer place if they do. But th… https://t.co/94TL3YhSTm +05/03/2018,Politicians,@SenWarren,Why are teachers paid so little? Why aren’t more politicians across state legislatures standing up for them? I’ll t… https://t.co/jnxE5Vv4gL +05/02/2018,Politicians,@SenWarren,RT @SenCortezMasto: I welcome the Trump Admin pursuing diplomacy with North Korea. But in order for there to be a peaceful resolution to a… +05/02/2018,Politicians,@SenWarren,"America is safer when our State Department is fully funded, well-staffed, and focused on diplomacy. Now that he's S… https://t.co/G7mJysHOYN" +05/01/2018,Politicians,@SenWarren,"@PhilipsLight is hanging loyal, hard-working employees and the Fall River community out to dry. This is the real le… https://t.co/pEClqeWbwt" +05/01/2018,Politicians,@SenWarren,"Instead of buying back their own stock and outsourcing jobs, companies like @PhilipsLight should be investing in th… https://t.co/7eNlGq5Q3q" +05/01/2018,Politicians,@SenWarren,".@PhilipsLight can afford to shell out $187 million to shareholders, so @RepJoeKennedy and I want to know why they’… https://t.co/E2eDrZOxIs" +05/01/2018,Politicians,@SenWarren,Did you know it’s legal for companies to pay people with disabilities pennies on the dollar for doing the same job… https://t.co/cyt4102XTW +05/01/2018,Politicians,@SenWarren,The proposed merger between Sprint and T-Mobile could strangle competition in the telecom industry and end up hurti… https://t.co/TRWfXjMEzS +04/30/2018,Politicians,@SenWarren,I agree with Sheriff @stevenwtompkins of Suffolk County – the opioid epidemic is out of control and our country nee… https://t.co/QKpd08mgXJ +04/30/2018,Politicians,@SenWarren,"Over 20,000 consumers have filed complaints about @Equifax with the @CFPB since the #EquifaxBreach. But instead of… https://t.co/SpK2ERs3g5" +04/29/2018,Politicians,@SenWarren,"Firefighters are exposed to harsh chemicals on the job, and develop cancer at higher rates as a result. I've been p… https://t.co/3OvDTBh9Hj" +04/27/2018,Politicians,@SenWarren,"Last month, corporate lobbyists found a single court willing to block @USDOL's conflict-of-interest rule, which was… https://t.co/Yfyumu0rkE" +04/27/2018,Politicians,@SenWarren,I’d like @MickMulvaneyOMB to explain to the American people why almost every major decision he’s made at the @CFPB… https://t.co/oOJiFhhU55 +04/26/2018,Politicians,@SenWarren,"The DOJ is on track to approve a merger between Monsanto and Bayer, which would hand control of 1/4 of the world’s… https://t.co/tN2P38ILLk" +04/26/2018,Politicians,@SenWarren,Our military leaders have told us – many times – that a strong State Department is critical to their mission. Now t… https://t.co/cxLXeiosAS +04/26/2018,Politicians,@SenWarren,Favorite meeting of the day. #TakeYourChildToWorkDay https://t.co/wYqCacKLbt +04/26/2018,Politicians,@SenWarren,"Mike Pompeo has repeatedly embraced military action over diplomatic solutions, supported interrogation techniques t… https://t.co/UvVMFiq4PV" +04/25/2018,Politicians,@SenWarren,"For a long time, Washington has worked for people who can write big campaign checks & hire armies of lobbyists. But… https://t.co/smZAlqDovV" +04/25/2018,Politicians,@SenWarren,"Valeria's little sister applied for DACA, but @realdonaldtrump ended it before she could get it. A federal judge ju… https://t.co/SmrWSjmG9Z" +04/25/2018,Politicians,@SenWarren,This is the most corrupt administration ever. https://t.co/uHr0tek2G1 +04/24/2018,Politicians,@SenWarren,RT @reveal: .@SenWarren just fired off letters accusing regulators of rolling back anti-discrimination protections for people of color in t… +04/24/2018,Politicians,@SenWarren,Federal judges are supposed to dispense equal justice under the law. But Kyle Duncan – @realdonaldtrump’s nominee f… https://t.co/5GuBBYgqJn +04/24/2018,Politicians,@SenWarren,"I've been fighting to pass the Firefighter Cancer Registry Act, which will allow us to better protect the firefight… https://t.co/fwyyKACVoU" +04/24/2018,Politicians,@SenWarren,Bob’s resilience inspires me. He’s done so much for his community – and it’s time Congress is there for him and tho… https://t.co/hcoHIOr0xb +04/23/2018,Politicians,@SenWarren,"Mike Pompeo’s brand of foreign policy doesn’t reflect America’s values, and won’t make us any safer. I urge my Sena… https://t.co/HqHnfyPQCz" +04/23/2018,Politicians,@SenWarren,"After the Boston Marathon bombing, our whole country grieved – including people of Islamic faith. But Mike Pompeo u… https://t.co/Ap9dEbaGvJ" +04/23/2018,Politicians,@SenWarren,"A strong State Department requires a leader who actually believes in the power of diplomacy, and the importance of… https://t.co/whiThuA4fE" +04/23/2018,Politicians,@SenWarren,"This weekend, I met with members of the Mashpee Wampanoag Tribe to discuss the opioid crisis, which has hit Native… https://t.co/esyBacMYbI" +04/22/2018,Politicians,@SenWarren,"The @nytimes lays out the history and scope of opioid addiction in America, lessons learned from our response to th… https://t.co/t5rTKIxoL9" +04/22/2018,Politicians,@SenWarren,"Last year, I got a big stack of letters from the 7th graders at Clarke Middle School. They wrote to tell me how wor… https://t.co/RvJm2dKeyo" +04/20/2018,Politicians,@SenWarren,The federal government needs to get out of the business of outlawing marijuana. States should make their own decisi… https://t.co/ZMK6OuvZ7b +04/20/2018,Politicians,@SenWarren,"⚡️ Thirty years ago, Congress passed the Ryan White CARE Act to combat the HIV/AIDS epidemic. This week,… https://t.co/cRq7EdCGyL" +04/20/2018,Politicians,@SenWarren,Most of the students marching in today’s #NationalSchoolWalkout were born after the Columbine shooting. They grew u… https://t.co/NQbVFVfNqA +04/19/2018,Politicians,@SenWarren,"For months, @SenMarkey & I have fought for Puerto Rican families who evacuated to Massachusetts after Hurricane Mar… https://t.co/vIj6mMLEL6" +04/19/2018,Politicians,@SenWarren,"RT @RepCummings: This morning, @SenWarren and I went on @Morning_Joe to discuss our new #CAREAct and taking on the #OpioidEpidemic. The opi…" +04/19/2018,Politicians,@SenWarren,".@SenDuckworth, I'm so glad to see the Senate take this baby step forward. I'll be the first in line to hold Maile… https://t.co/g5gFFh4whj" +04/18/2018,Politicians,@SenWarren,Enough is enough. It’s time for the Trump Administration to step up and take responsibility for the repeated blacko… https://t.co/XRNMVz9Qle +04/18/2018,Politicians,@SenWarren,I worked with @SenTedCruz to pass a bipartisan resolution designating today as Military Retiree Appreciation Day. A… https://t.co/Dp0yfNze6w +04/18/2018,Politicians,@SenWarren,We can’t defeat the opioid crisis with empty words and half measures. Congress acted before to stop an epidemic whe… https://t.co/vNUCviZfs5 +04/18/2018,Politicians,@SenWarren,The #CAREact includes $1 billion a year for clinics and non-profits to improve addiction treatment – along with $50… https://t.co/Hq0XGnzAPF +04/18/2018,Politicians,@SenWarren,"In addition to funding for communities on the front lines of the opioid crisis, the #CAREact will provide $1.8 bill… https://t.co/8PQigLmtK7" +04/18/2018,Politicians,@SenWarren,"The #CAREact will provide $4 billion per year to states, territories, and tribal governments. An additional $2.7 bi… https://t.co/1mwQb9ypRh" +04/18/2018,Politicians,@SenWarren,"Today, @RepCummings and I are introducing the #CAREact. Our bill will provide $100 billion in federal funding over… https://t.co/WveLaxQQX2" +04/18/2018,Politicians,@SenWarren,"RT @CNBC: Remembering Barbara Bush, who in addition to supporting her husband and raising her family, was an independent spirit, willing to…" +04/17/2018,Politicians,@SenWarren,"RT @SenMarkey: With 30 signatures on this petition, @SenateDems can and will force a vote on the CRA resolution to save #NetNeutrality. + +So…" +04/17/2018,Politicians,@SenWarren,"RT @SenateDems: Who reaps most of the benefits from the #GOPTaxScam? Corporate executives and wealthy investors, not American workers. #Tax…" +04/17/2018,Politicians,@SenWarren,The Senate is on the verge of voting to make it easier for auto lenders to discriminate. Here’s why I'm voting agai… https://t.co/ysMnLEaSob +04/17/2018,Politicians,@SenWarren,"Harry from Hull, MA tried everything to get his son out of an auto-loan scam, but no agency would help – until he c… https://t.co/0X7k5rPhR1" +04/15/2018,Politicians,@SenWarren,"On #OneBostonDay, we ask the rest of the world to join our city in doing one random act of kindness – big or small.… https://t.co/U5GJO3ZT64" +04/15/2018,Politicians,@SenWarren,"As we mark the fifth anniversary of the Boston Marathon bombing, I'm grateful to Jessica Kensky and Patrick Downes… https://t.co/DbEMPk7Vkn" +04/15/2018,Politicians,@SenWarren,I introduced a bipartisan bill with @SenatorCollins named after Jessica & Patrick to give other survivors of terror… https://t.co/l3zomDOboy +04/15/2018,Politicians,@SenWarren,Jessica Kensky and Patrick Downes are a courageous young couple who both lost legs during the Boston Marathon bombi… https://t.co/uxmPcWOoj2 +04/14/2018,Politicians,@SenWarren,The Constitution gives Congress the power to authorize military action. If @realDonaldTrump wants to expand America… https://t.co/Ozuzkl11Ql +04/14/2018,Politicians,@SenWarren,"Chemical attacks in Syria are horrifying, and a clear violation of international law. The world must hold Assad acc… https://t.co/iO8ceDnjRb" +04/13/2018,Politicians,@SenWarren,"RT @MassStatePolice: With a heavy heart 💙, our condolences go out tonight to our brothers & sisters of the @yarmouthpolice & to Officer Sea…" +04/13/2018,Politicians,@SenWarren,Time may be running out. Congress must immediately pass this bipartisan bill to ensure that Mueller can complete a… https://t.co/ZDdBkMN6NP +04/13/2018,Politicians,@SenWarren,The Washington swamp just got a little dirtier. The Senate just voted to confirm former coal lobbyist Andrew Wheele… https://t.co/20hbwmOPX2 +04/12/2018,Politicians,@SenWarren,"On Yom Hashoah, #WeRemember the 6 million Jews who were murdered during the Holocaust. We honor their memories by c… https://t.co/u2cW3WNvP0" +04/12/2018,Politicians,@SenWarren,.@realDonaldTrump has sworn up and down that he won't support bad trade deals. He pulled out of the TPP after he wa… https://t.co/sOmMFiIHe3 +04/12/2018,Politicians,@SenWarren,The @CFPB was created to protect people. If @MickMulvaneyOMB wants to prevent the agency from stopping scams & help… https://t.co/j7321NPRO6 +04/12/2018,Politicians,@SenWarren,"Harry from Hull, MA told the @CFPB about his son’s shady auto-loan. The agency looked into his complaint & forced t… https://t.co/CTVWsbi1BO" +04/12/2018,Politicians,@SenWarren,"One of those people is Ari. Before he deployed to Iraq, he bought a truck and got pushed into a subprime auto-loan… https://t.co/jb59TYIpwd" +04/12/2018,Politicians,@SenWarren,"I just finished questioning @MickMulvaneyOMB in a Senate hearing. Before he started running the @CFPB, he tried to… https://t.co/vzAoXO7IQu" +04/12/2018,Politicians,@SenWarren,.@MickMulvaneyOMB has been bringing up my name a lot lately when talking about the @CFPB. But what he doesn’t get i… https://t.co/hX7O0u1UuT +04/12/2018,Politicians,@SenWarren,It’s been four months since @MickMulvaneyOMB took over the @CFPB – and he hasn’t lifted a finger to help consumers.… https://t.co/bvyNsWCagd +04/11/2018,Politicians,@SenWarren,"The #BankLobbyistAct is dangerous enough, but now House Republicans want to load the bill up with even more favors… https://t.co/heGpUb2XRe" +04/10/2018,Politicians,@SenWarren,"Women should be paid the same as men for doing the same work – period. This year, we’re marking #EqualPayDay with a… https://t.co/JxkxC17Wbz" +04/10/2018,Politicians,@SenWarren,"RT @nwlc: Today is #EqualPayDay, when pay for all women catches up to the pay for all men from the previous year. Check out our factsheet a…" +06/30/2018,Politicians,@CoryBooker,So grateful for your leadership Vanita. I will be marching in Jersey. https://t.co/IuHww7MqSG +06/30/2018,Politicians,@CoryBooker,@lyttle_david @TheBeatWithAri Thank you. +06/30/2018,Politicians,@CoryBooker,"RT @LC67472446: It was an honor meeting Senator @CoryBooker and Tom @Malinowski tonight at the Election Kick Off event for #TeamTom #NJ07 +P…" +06/30/2018,Politicians,@CoryBooker,@katwardphoto @SenBooker Thanks. +06/30/2018,Politicians,@CoryBooker,@rasincanegirl Thank you. +06/30/2018,Politicians,@CoryBooker,@DashMan18 @tribelaw @SenSchumer @RepAdamSchiff Gratitude +06/30/2018,Politicians,@CoryBooker,"RT @TheBeatWithAri: Senator @CoryBooker warns Trump could pick a Supreme Court Justice to ""protect himself"" https://t.co/yAiOIlTjk2" +06/30/2018,Politicians,@CoryBooker,"RT @Shareblue: Sen. Corey Booker calls on lawmakers to halt SCOTUS confirmation process until Mueller finishes investigating Trump +https:/…" +06/30/2018,Politicians,@CoryBooker,RT @dailykos: Cory Booker makes it clear: The Senate can't consider a nominee until Russia investigation is over https://t.co/1zJuggoWAa +06/30/2018,Politicians,@CoryBooker,RT @SenBooker: VIDEO: At Judiciary Committee Hearing @CoryBooker Warns of POTUS Conflict of Interest in Selecting #SCOTUS Justice: https://… +06/29/2018,Politicians,@CoryBooker,"“Not everything that is faced can be changed, + +but nothing can be changed until it is faced.” + +James Baldwin… https://t.co/FeFdVBMtXK" +06/28/2018,Politicians,@CoryBooker,I'm deeply saddened by the shooting at #CapitalGazette in Annapolis & horrified that journalists were attacked like… https://t.co/Ubg6umMIA9 +06/28/2018,Politicians,@CoryBooker,"RT @NARAL: “This will NOT happen without a fight. We, who believe that a woman has the right to make her own medical decisions, we now must…" +06/28/2018,Politicians,@CoryBooker,"RT @LambdaLegal: ""For those of us who believe love is love is love is love, we must now fight! Don't tell me this battle is already lost.""…" +06/28/2018,Politicians,@CoryBooker,"RT @ABC: Cory Booker on Supreme Court: ""The menacing truth is that we have to face a reality coming at us where we might lose some of the p…" +06/28/2018,Politicians,@CoryBooker,"RT @ThisWeekABC: Cory Booker on Supreme Court: ""The menacing truth is that we have to face a reality coming at us where we might lose some…" +06/28/2018,Politicians,@CoryBooker,RT @CAPAction: Senator @CoryBooker has a message: Stand strong. This is a time us to believe that we're on the right side of history...you… +06/28/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: ""I stand here to say: This will not happen without a fight"" @SenBooker #DitchtheList https://t.co/ISMpS96Py8" +06/28/2018,Politicians,@CoryBooker,https://t.co/ZgZceOfFmU +06/28/2018,Politicians,@CoryBooker,RT @SenBooker: Trump is the subject of a criminal investigation that could eventually come before the Supreme Court—he has a clear conflict… +06/28/2018,Politicians,@CoryBooker,"For that reason, I do not believe the Judiciary Committee should or can in good conscience consider a nominee put f… https://t.co/m7BKQRqvRm" +06/28/2018,Politicians,@CoryBooker,Should we be considering a Supreme Court nominee from a President who has a history of demanding these loyalty test… https://t.co/YaVyeYZ8tq +06/28/2018,Politicians,@CoryBooker,We’ve seen numerous people that are close to the President or on his campaign who have plead guilty … and we have a… https://t.co/86KNxhdcvI +06/28/2018,Politicians,@CoryBooker,The President of the United States is a subject of an ongoing criminal investigation – an investigation that every… https://t.co/c5jjT8sYXJ +06/28/2018,Politicians,@CoryBooker,"Regarding this Supreme Court vacancy: among the many consequential issues at stake, there is clearly a potential co… https://t.co/gbckfvIHYZ" +06/28/2018,Politicians,@CoryBooker,"In Judiciary Hearing. + +I will argue, among other things, that we should wait until after the election (McConnell r… https://t.co/rE2us944Fc" +06/27/2018,Politicians,@CoryBooker,"From low wages to short-termism, today’s corporations are keeping American workers from reaching their dreams. It’s… https://t.co/xYNFFGFO23" +06/26/2018,Politicians,@CoryBooker,"We still have work to do, America. +We still have work to do. +#NoBanNoWall https://t.co/YZlnEdMFRB" +06/23/2018,Politicians,@CoryBooker,"RT @CoryBooker: Love over hate + +Love over indifference + +Love over ignorance + +Love over ego + +Love over fear + +Love over barriers + +Love ove…" +06/23/2018,Politicians,@CoryBooker,"RT @senorrinhatch: “Tender age shelters” is a chilling phrase we will not soon forget. + +The child separation policy should be halted now.…" +06/23/2018,Politicians,@CoryBooker,"RT @JeffFlake: ""Tender Age"" shelters for toddlers? This gets even worse as the layers are peeled back. End the policy, Mr. President. https…" +06/23/2018,Politicians,@CoryBooker,"RT @M_Breen: The most powerful nation in the history of the world is now reduced to detaining babies in the name of national security. +http…" +06/23/2018,Politicians,@CoryBooker,RT @mattyglesias: I know I sleep better at night knowing the President is working hard to protect my family from the twin menaces of Centra… +06/23/2018,Politicians,@CoryBooker,"RT @mattklapper: Meet Senator @CoryBooker’s environment legislative aide, @ArianaSpawn, who earlier this month led efforts to introduce the…" +06/23/2018,Politicians,@CoryBooker,RT @voxdotcom: Sen. Cory Booker just introduced a bill that could legalize marijuana nationwide https://t.co/sTDu1yFXfp +06/22/2018,Politicians,@CoryBooker,Love is an active not a passive word. Thank you and all the best to you. https://t.co/PfgEebLNVv +06/22/2018,Politicians,@CoryBooker,Nothing truly worthwhile is easy. May we both take on this struggle with the understanding of Frederick Douglass’ w… https://t.co/2JOFo94vT9 +06/22/2018,Politicians,@CoryBooker,"I love you. May both you and I, seek less to assign blame and work more to accept responsibility. https://t.co/CYuJbkT5G7" +06/22/2018,Politicians,@CoryBooker,"Love over hate + +Love over indifference + +Love over ignorance + +Love over ego + +Love over fear + +Love over barriers… https://t.co/TYYaoaEaez" +06/20/2018,Politicians,@CoryBooker,We are supposed to learn from our past mistakes. Not repeat them. https://t.co/Ku3LTprSsC +06/19/2018,Politicians,@CoryBooker,"Celebrating #Juneteenth today – recognizing we've come a long way, but we still got a long way left to go." +06/19/2018,Politicians,@CoryBooker,RT @brianschatz: They want you to be so afraid of other people that you don’t notice when they take away your health care. +06/19/2018,Politicians,@CoryBooker,RT @brianschatz: Just because the Trump administration is separating kids from their parents doesn’t mean they aren’t also trying to elimin… +06/18/2018,Politicians,@CoryBooker,"We must all demand that our nation stop tearing apart families. + +To do nothing, to say nothing is to be complicit… https://t.co/qhVq0GOX33" +06/18/2018,Politicians,@CoryBooker,"RT @BillKristol: Trump: The Democrats made us do it. +Stephen Miller: It's our policy to do it. +Sec. Nielsen: We're not doing it." +06/18/2018,Politicians,@CoryBooker,RT @anastasianylon: Family detention under Obama was appalling and ultimately did not work; separating children from their parents is even… +06/18/2018,Politicians,@CoryBooker,RT @BetoORourke: Catch-22. We are preventing families from lawfully requesting asylum at our ports of entry & then criminally prosecuting t… +06/18/2018,Politicians,@CoryBooker,"RT @ajcorchado: Outraged over Trump administration's policy of splitting up families, hundreds of protesters marched Sunday to a shelter w…" +06/18/2018,Politicians,@CoryBooker,"RT @prernaplal: The 1997 Flores Agreement that the Trump Administration is now attacking does not call for separating families. + +Flores was…" +06/18/2018,Politicians,@CoryBooker,"RT @RealAfroScholar: Honored to have been asked to share my story and a bit about my hometown of #NewarkNJ. Between #Princeton, #YaleLaw, a…" +06/18/2018,Politicians,@CoryBooker,"Read this powerful op-ed by @LaurawBush then take 2 actions: + +Call on Trump to end his despicable policy of separat… https://t.co/zPuFintAkX" +06/18/2018,Politicians,@CoryBooker,Looking forward to co-hosting @NewarkMentoring Movement’s 7th Annual Charity Golf Outing with @markherzlich later t… https://t.co/hvsZXujOMD +06/15/2018,Politicians,@CoryBooker,"Earlier this year, I announced my campaign would no longer accept corporate PAC donations, a pledge only 6 of 100 s… https://t.co/EXmuyTvncr" +06/15/2018,Politicians,@CoryBooker,"To the hundreds of thousands of Dreamers: I see you, I hear you, I stand with you, I love you. Your stories are so… https://t.co/VRj8DCl5sl" +06/15/2018,Politicians,@CoryBooker,We have a moral obligation to pass the bipartisan #DreamAct to permanently protect Dreamers. Republican leaders in… https://t.co/6xyXtmVzAL +06/15/2018,Politicians,@CoryBooker,"On this day 6 years ago, President Obama created #DACA giving hope & security to thousands of young people across o… https://t.co/VDkdWTrk1F" +06/15/2018,Politicians,@CoryBooker,We can't allow the House GOP to continue putting oil company profits ahead of the health and safety of our coastal… https://t.co/T3ksKp2WER +06/14/2018,Politicians,@CoryBooker,Early voting starts today in Maryland! Heading out to a rally with Ben Jealous today. https://t.co/cviTzhWIvP +06/14/2018,Politicians,@CoryBooker,#tbt to last year’s @NewarkMentoring Movement Charity Golf Outing. Looking forward to this year’s 7th Annual Outing… https://t.co/wk5Uv2SbvW +06/11/2018,Politicians,@CoryBooker,"My friend @JoshGottheimer is running for re-election—he's a great partner in Congress fighting for our vets, first… https://t.co/Xj0xz4PNyI" +06/11/2018,Politicians,@CoryBooker,Had a great time chatting with @RondiCharleston for #TheResilienceConversations. Thanks for having me! https://t.co/TaHDH4KKPd +06/10/2018,Politicians,@CoryBooker,RT @SenBooker: The confirmation of Kenneth Marcus would be another blow to the civil rights of our students: https://t.co/qp4SKRBVE0 +06/10/2018,Politicians,@CoryBooker,"Be kind + +It is a great gift of generosity + +To oneself + +With the collateral benefit + +Of helping others." +06/10/2018,Politicians,@CoryBooker,"RT @SenBooker: ""Don't forget the title does not make the man, the man or woman must make the title"" – @CoryBooker, graduation speech to @Pr…" +06/10/2018,Politicians,@CoryBooker,"RT @SenBooker: 55 years ago today, JFK signed into law the #EqualPayAct of 1963—legislation mandating #equalpay for equal work. But 55 year…" +06/09/2018,Politicians,@CoryBooker,RT @nwlc: “[Kenneth Marcus] possesses at best a disturbing apathy and at worst a wanton disregard to protecting the rights of our kids in s… +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: VIDEO: @CoryBooker Opposes Nomination of Kenneth Marcus to Head Office for Civil Rights at U.S. Department of Education: +ht…" +06/09/2018,Politicians,@CoryBooker,RT @SenBooker: .@SenatorTimScott & I introduced bipartisan legislation to encourage capital investments in low-income or distressed communi… +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: Today is the 112th anniversary of the #AntiquitiesAct—a law that has protected our shared historical, cultural and national…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: Today, on #WorldOceansDay, I introduced the SAVE Right Whales Act to help reduce the impacts of human activities on North At…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenatorMenendez & 30 Senate Colleagues Introduce Bill to Halt Separation of Immigrant Families: https://t.co/…" +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenBobCasey & @timkaine Introduce Bill to Empower Community College Students: https://t.co/qEbFvcimJM" +06/09/2018,Politicians,@CoryBooker,RT @SenBooker: .@CoryBooker Calls for Social Security Administration to Address Growing Disability Backlog: https://t.co/QYXI3xmAbY +06/09/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker, @SenatorCarper & @SenBillNelson Introduce Bicameral Bill to Establish Grant Program for Right Whale Conservati…" +06/09/2018,Politicians,@CoryBooker,"To the graduates of the Class of 2018: + +You are your ancestors' wildest dreams. And as you each strive to make tha… https://t.co/aN50Iwx4y6" +06/07/2018,Politicians,@CoryBooker,"RT @civilrightsorg: On the Senate floor, Sen. @CoryBooker just said the confirmation of Ken Marcus to lead @usedgov's Office for Civil Righ…" +06/07/2018,Politicians,@CoryBooker,"RT @SenBooker: .@CoryBooker testifies against Jeff Sessions: ""our country demands a more courageous empathy"" https://t.co/Tnr3t9OyPM" +06/07/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: The group that Trump has put on the bench is the least diverse group from any President, Democrat or Republican, since…" +06/07/2018,Politicians,@CoryBooker,RT @LawyersComm: .@CoryBooker https://t.co/rpMd25udNI +06/07/2018,Politicians,@CoryBooker,"RT @WeDemandJustice: If confirmed, Farr will have the power to decide to suppress or protect the rights of Americans to vote...to strengthe…" +06/07/2018,Politicians,@CoryBooker,"RT @NAACP: If confirmed Thomas Farr will have the power to affect the lives and livelihoods of vulnerable Americans, to either strengthen o…" +06/07/2018,Politicians,@CoryBooker,"RT @nwlc: ""We are at a time of crisis. This judge, like all judges, will have the opportunity to shape the outcomes of our democracy for ge…" +06/07/2018,Politicians,@CoryBooker,RT @SenBooker: Today on the 74th anniversary of #DDay we honor the courage and sacrifice of the brave Americans who stormed the beaches of… +06/07/2018,Politicians,@CoryBooker,RT @SenBooker: The Trump Administration wants to nominate a man named Thomas Farr for a lifetime appointment to a U.S. District Court. This… +06/07/2018,Politicians,@CoryBooker,RT @WeDemandJustice: Trump’s latest judge nominee has built his career around attempts to disenfranchise minorities. Why won't Chuck Grassl… +06/06/2018,Politicians,@CoryBooker,Thank you. I am so grateful for your leadership Chairman. https://t.co/TcLe7KdRRV +06/06/2018,Politicians,@CoryBooker,"RT @LawyersComm: .@CoryBooker ""we must decide to whether to sit down as spectators or stand up...now we have to raise our voices and demand…" +06/06/2018,Politicians,@CoryBooker,RT @NAACP: The opposite of justice is not injustice — it is INACTION. Sen. @CoryBooker #StopFarr +06/06/2018,Politicians,@CoryBooker,RT @civilrightsorg: Thank you Senate Judiciary Committee members @CoryBooker and @SenKamalaHarris for standing on the side of justice and f… +06/06/2018,Politicians,@CoryBooker,"RT @peoplefor: .@CoryBooker: We must rise up for justice, for love, for voting rights, civil rights, workers rights... we must rise up to s…" +06/06/2018,Politicians,@CoryBooker,Thank you for being at the rally. https://t.co/8vQjaJ2lxO +06/06/2018,Politicians,@CoryBooker,"RT @civilrightsorg: We demand justice. We demand equality. We demand ALL senators #StopHateStopFarr. + +Thank you @RevDrBarber, @GKButterfiel…" +06/06/2018,Politicians,@CoryBooker,"Remembering Robert F. Kennedy. 50 years after death, his words still hold true today. https://t.co/9HeOtnORsY" +06/06/2018,Politicians,@CoryBooker,"RT @deray: Kalief Browder died 3 years ago today. + +He spent 1,120 days in jail but was NEVER convicted of a crime. + +He couldn’t afford bail…" +06/06/2018,Politicians,@CoryBooker,RT @UNHCRLebanon: U.S. Senator @CoryBooker & Ambassador Elizabeth Richard of @usembassybeirut met Mahmoud & his family in their tent in Bek… +06/06/2018,Politicians,@CoryBooker,"RT @SenBooker: In March, Toys “R” Us announced layoffs for all employees including 1,500 in NJ w/ no severance pay after being forced into…" +06/06/2018,Politicians,@CoryBooker,"RT @AsburyParkPress: .@ToysRUs: NJ politicians blast worker treatment, demand severance pay @SenBooker @SenatorMenendez https://t.co/jQNXN…" +06/06/2018,Politicians,@CoryBooker,"RT @Fuscarino: Happy Pride! ❤️🧡💛💚💙💜 + +Thank you @GovMurphy and @SenBooker for marching with @GSEquality and standing with the LGBTQ communit…" +06/06/2018,Politicians,@CoryBooker,"RT @SenBooker: Disappointed in SCOTUS #MasterpieceCakeshop decision. To deny anyone equal justice under the law is wrong. A setback, but th…" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""It's so important to let gratitude be your gravity."" -- #Princeton18 Class Day speaker @SenBooker https://t.co/GjFV0dIDzE" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""Never forget that the biggest thing you can do on almost everyday is often just a small act of kindness, decency, love, and…" +06/06/2018,Politicians,@CoryBooker,"RT @Princeton: ""Life is not about collecting complaints or gathering grievances ... You don't have to attend every argument you're invited…" +06/06/2018,Politicians,@CoryBooker,RT @NAACP: TODAY is the day #WashingtonDC—Join us on Capitol Hill at 2pm ET/11am PT to demand qualified judges—Stop Hate | #StopFarr: Sens.… +06/06/2018,Politicians,@CoryBooker,"RT @LawyersComm: TODAY (6/6), join @KristenClarkeJD @CoryBooker @KamalaHarris, @RevDrBarber, @DerrickNAACP & @GKButterfield to stand up aga…" +06/05/2018,Politicians,@CoryBooker,"RT @JohnKDelaney: Alabama. +California. +Iowa. +Mississippi. +Montana. +New Jersey. +New Mexico. +South Dakota. +These states have primary electio…" +06/05/2018,Politicians,@CoryBooker,"RT @ProudResister: I JUST VOTED! + +🗳California +🗳Montana +🗳Alabama +🗳Iowa +🗳Mississippi +🗳New Jersey +🗳New Mexico +🗳South Dakota + +Get. Out. And. Vo…" +06/05/2018,Politicians,@CoryBooker,You Rock (the vote). https://t.co/3XG9XQPiPO +06/05/2018,Politicians,@CoryBooker,"New Jersey: + +Don’t forget to vote today in the Primary. + +And also + +California, +Iowa, +Montana, +Alabama, +Missi… https://t.co/cTr3yd6faQ" +06/05/2018,Politicians,@CoryBooker,"""Loudly and proudly"" playing the national anthem does not make you any more patriotic than actively fighting for ou… https://t.co/FbXb6nQ0dU" +06/05/2018,Politicians,@CoryBooker,"Protest is not un-American. Often, it is the most American thing we can do. +https://t.co/YZAyMBczjX" +06/04/2018,Politicians,@CoryBooker,Very excited and honored to be celebrating the great class of 2018 and sharing with them some remarks later this mo… https://t.co/l7FK51dX34 +06/04/2018,Politicians,@CoryBooker,"RT @jonfavs: In 3 California House Districts, Democrats could get locked out of competing in the general election because of the top-2 jung…" +06/04/2018,Politicians,@CoryBooker,RT @brianschatz: Net neutrality update: the Senate passed the CRA bill to restore net neutrality. Now the Speaker is bottling the bill up i… +05/31/2018,Politicians,@CoryBooker,"I’ve known Gina since our early 20s (and Andy her husband was my law school roommate). + +I steadfastly support her… https://t.co/SIbd4QNhQy" +05/28/2018,Politicians,@CoryBooker,"Today we honor the heroic men and women who gave their lives in service to our country, and remind ourselves that w… https://t.co/IAySl9eGM7" +05/24/2018,Politicians,@CoryBooker,"The NFL anthem protest decision is not honoring America, it is an affront to our proud legacy of athletes and other… https://t.co/2innbhMWSi" +05/24/2018,Politicians,@CoryBooker,"I deeply disagree with the decision of the NFL. + +Their decision is an affront to the American ideal of protest and… https://t.co/xBlE7sIioE" +05/24/2018,Politicians,@CoryBooker,"The special counsel investigation has produced almost 20 indictments, 5 guilty pleas—3 from Trump's team & 1 alread… https://t.co/QLsNjk5JN9" +05/24/2018,Politicians,@CoryBooker,@Kattorney Thanks so much for your kind words! +05/23/2018,Politicians,@CoryBooker,"“Hope will never be silent.” + +Harvey Milk" +05/23/2018,Politicians,@CoryBooker,"RT @TheDLCC: ""The stakes in this election couldn’t be higher. Almost 800 state legislative seats are up in November, and Democrats are in a…" +05/23/2018,Politicians,@CoryBooker,"RT @voxdotcom: Breaking: first-time candidate Amy McGrath has won Kentucky's Sixth District Democratic primary. + +The retired Marine fighte…" +05/23/2018,Politicians,@CoryBooker,I am so excited my friend Stacey Abrams won Georgia’s Democratic primary to become the nominee for governor - The 1… https://t.co/kJEQcg5yC2 +05/22/2018,Politicians,@CoryBooker,"RT @SenBooker: Workers should be able to band together to take on giant corporations in cases of sexual harassment, wage theft, and other w…" +05/22/2018,Politicians,@CoryBooker,"Excited for @Harvard_Law! Tomorrow grads will hear from my friend Sen @JeffFlake. + +I’ve heard some may not to atten… https://t.co/mmFxHI7u5J" +05/22/2018,Politicians,@CoryBooker,"Excited for @Harvard_Law! Tomorrow grads will hear from my friend Sen @JeffFlake. + +I’ve hear some may not to atten… https://t.co/rLAP8t5GJy" +05/21/2018,Politicians,@CoryBooker,@Pleasant_11 Great meeting you! +05/21/2018,Politicians,@CoryBooker,@Near_more @McCaskill4MO No they did not. +05/21/2018,Politicians,@CoryBooker,"RT @clairecmc: Ok St Louis, you turned it out and up! Goodness gracious what a wonderful rally. Remember: volunteer at Claire https://t.co/…" +05/21/2018,Politicians,@CoryBooker,@k_brinst It is critically important. I am not only fighting for campaign finance reform but am one of only 6 senat… https://t.co/2vtCFkfMiU +05/21/2018,Politicians,@CoryBooker,@jake0149 You can look it all up easily. Also I’m on of only 6 senators who does not take corporate contributions. +05/21/2018,Politicians,@CoryBooker,RT @SenWhitehouse: At the heart of what is wrong with American politics is that someone can anonymously donate $24 million. What secret pro… +05/21/2018,Politicians,@CoryBooker,"""We have a system of justice in this country that treats you much better if you're rich and guilty than if you're p… https://t.co/CvP0C0hNyj" +05/21/2018,Politicians,@CoryBooker,"RT @TheDLCC: When we win back state legislatures, we can resist Trump’s agenda and enact America’s agenda. This video with @corybooker expl…" +05/20/2018,Politicians,@CoryBooker,So awesome to see such incredible support here in Missouri for my friend and colleague Claire McCaskill… https://t.co/nAnxXciNyy +05/20/2018,Politicians,@CoryBooker,"I’m in Missouri today and excited to support @mccaskill4mo! + +Please consider making a small donation to help my co… https://t.co/lt0mtbtoi3" +05/20/2018,Politicians,@CoryBooker,"RT @McCaskill4MO: Hey, @CoryBooker— +Your fans Lamont and T.J. have a quick question for you! ⤵️ #kidz4claire #MOSen https://t.co/yWnfVMEbGt" +05/19/2018,Politicians,@CoryBooker,I landed and am driving into the city now. I so look forward to meeting Lamont! https://t.co/gxuUlG7YY3 +05/19/2018,Politicians,@CoryBooker,RT @clearwaterfire: The chin-up challenge was on earlier today at Station 46. Here's a look at @SenBillNelson showing our guys how to do it… +05/19/2018,Politicians,@CoryBooker,"RT @FrankLuntz: American deaths so far in 2018… + +• Deployed military: 29 +• Kids at school: 31 + +https://t.co/WdwaeCTFM7" +05/18/2018,Politicians,@CoryBooker,"That a young child thinks a school shooting is inevitable in America is utterly heartbreaking and unacceptable! + +T… https://t.co/Q6ZSmmWMY0" +05/18/2018,Politicians,@CoryBooker,"Santa Fe High School deserves better. + +ALL AMERICA’S CHILDREN DESERVE BETTER. + +We've become a nation where our ki… https://t.co/5kUGvIg3Um" +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: Right now, the president can order the firing of a special counsel on a whim. That clearly shouldn’t be allowed to happen—es…" +05/17/2018,Politicians,@CoryBooker,RT @SenBooker: Honored to speak to @KeanUniversity graduates today. Congratulations to #Kean2018! https://t.co/HByPf5coi0 +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: In America, this should not be the case – no American should be economically forgotten. This is why the fight for economic j…" +05/17/2018,Politicians,@CoryBooker,RT @CatherineForNV: My friend @CoryBooker is right. This is an important message for democrats to hear. https://t.co/Ikip2I6Mov +05/17/2018,Politicians,@CoryBooker,RT @CoryBooker: In honor of National Women's Health Week I'm introducing a resolution to recognize the deep importance of supporting women'… +05/17/2018,Politicians,@CoryBooker,RT @MelissaRyan: Greatly appreciate @CoryBooker laying out just how vile Cambridge Analytica's tactics (not to mention the clients who used… +05/17/2018,Politicians,@CoryBooker,RT @CoryBooker: Great news – the Senate just voted to save #NetNeutrality! But the battle is not over – now we need to put pressure on the… +05/17/2018,Politicians,@CoryBooker,RT @annabanana0626: This is a story of what one small act can do for a child. You can see in 2 of the photos in this thread that Henry is p… +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: I oppose the House Farm Bill, H.R. 2. This damaging bill would harm the most vulnerable Americans by reducing or eliminating…" +05/17/2018,Politicians,@CoryBooker,"RT @SenBooker: I urge all House members to vote YES on the Brat-Blumenauer Amendment No. 71 to H.R. 2, which would provide much-needed refo…" +05/17/2018,Politicians,@CoryBooker,"“It is certain, in any case, that ignorance, allied with power, is the most ferocious enemy justice can have.” + +James Baldwin" +05/17/2018,Politicians,@CoryBooker,RT @AmericaVotes: Progressives are working hard to #FlipEverything this fall to bring back the values Democrats fight for every day in stat… +05/17/2018,Politicians,@CoryBooker,@JessicaPost You are welcome. Thanks for the tweet. +05/17/2018,Politicians,@CoryBooker,"RT @JessicaPost: Democrats are 16 seats away from flipping 8 state legislative chambers around the country. This November is HUGE. + +I love…" +05/16/2018,Politicians,@CoryBooker,Excited to be a part of #HorizonsGivingDay! Please support our NJ programs by visiting https://t.co/jWqYyPhEoj and… https://t.co/eBMimyad4g +05/16/2018,Politicians,@CoryBooker,RT @Alyssa_Milano: Democrats are working hard to #FlipEverything this fall in order to bring back the values Democrats fight for every day… +05/16/2018,Politicians,@CoryBooker,@North2North @Alyssa_Milano @TheDLCC And you are probably a very good and honorable person. I hope that we both can… https://t.co/DjtceO4ccM +05/16/2018,Politicians,@CoryBooker,"RT @TheDLCC: Of 99 state legislative chambers, Republicans control 66 of them. The stakes in this year’s election couldn’t be higher for De…" +05/16/2018,Politicians,@CoryBooker,Great news – the Senate just voted to save #NetNeutrality! But the battle is not over – now we need to put pressure… https://t.co/Vk5K5up2XF +05/16/2018,Politicians,@CoryBooker,In honor of National Women's Health Week I'm introducing a resolution to recognize the deep importance of supportin… https://t.co/g5p7VknaDp +05/16/2018,Politicians,@CoryBooker,Today is the day. The vote to save #NetNeutrality is finally happening in the Senate – and it's a close one. Call y… https://t.co/PfkroApKR0 +05/16/2018,Politicians,@CoryBooker,"RT @ScottHech: Daily reminder of the #PowerofProsecutors. They had (still have) the power to decide whether to charge, whether to charge a…" +05/16/2018,Politicians,@CoryBooker,"RT @ScottHech: Powerful photo of one of my favorite judges-Judge Simpson-consoling Mr. Bunn. ""I am more than emotional about this day,"" sai…" +05/16/2018,Politicians,@CoryBooker,RT @ScottHech: He was 14 when he was falsely arrested & prosecuted. 14. Years. Old. His trial lasted a single day. He spent 17 innocent yea… +05/16/2018,Politicians,@CoryBooker,RT @unionfreepress: RT SenBooker RT TIDAL: .CoryBooker calls up his mother for a very special #MothersDay-themed episode of #LiftEveryVoice… +05/16/2018,Politicians,@CoryBooker,"RT @Lyncherator: What do chicken pox and oatmeal baths have to do with @CoryBooker's commitment to paid family leave? + +Find out on the late…" +05/16/2018,Politicians,@CoryBooker,RT @SenDougJones: Read my full statement here on my decision not to support Gina Haspel’s confirmation as CIA Director: https://t.co/cdAFY8… +05/16/2018,Politicians,@CoryBooker,Wishing a blessed #Ramadan to all who observe! #RamadanKareem +05/16/2018,Politicians,@CoryBooker,RT @TinaSmithMN: Trump is making lifetime appointments to federal courts with judges like Michael Brennan who wouldn't admit racial bias ex… +05/16/2018,Politicians,@CoryBooker,RT @SenBooker: The threat of President Trump ordering the firing of Special Counsel Mueller and triggering a constitutional crisis is growi… +05/16/2018,Politicians,@CoryBooker,"RT @TIDAL: .@CoryBooker calls up his mother for a very special #MothersDay-themed episode of #LiftEveryVoice. + +Listen as they talk about e…" +05/16/2018,Politicians,@CoryBooker,RT @NBCDI: Thank you @PBS for partnering with @NBCDI during National Black Child Development Week #NBCDW. Please watch and share a powerful… +05/16/2018,Politicians,@CoryBooker,RT @rashadrobinson: This is big...Thank you @CoryBooker for pushing @facebook to use its data as a source for good by creating a public dat… +05/16/2018,Politicians,@CoryBooker,"RT @RepRoKhanna: Why we need @SenBooker's #MarijuanaJusticeAct: in NYC, Hispanic and black people are arrested at 5 and 8 times, respective…" +05/15/2018,Politicians,@CoryBooker,"This is outrageous and unacceptable! + +No one, especially not our government with our tax dollars, should Torture a… https://t.co/OIC5YgpNNn" +05/14/2018,Politicians,@CoryBooker,"So proud of my old friend and now head of the Ohio Democratic Party, David Pepper. + +As an author he is killing it.… https://t.co/ScN52fwr6l" +05/14/2018,Politicians,@CoryBooker,"RT @fightfor15: A MUST SEE: ""We have to cry loud until hearts are changed. We have to cry loud until workers are paid what they deserve. It…" +05/14/2018,Politicians,@CoryBooker,RT @liztheo: Join us! #PoorPeoplesCampagin Find an action near you: https://t.co/5tIAy6w5LO https://t.co/PmrZmIPiQC +05/14/2018,Politicians,@CoryBooker,"RT @UniteThePoor: Somebody's hurting our people and it's gone on far too long, and we don't be silent anymore! The #PoorPeoplesCampaign's 4…" +05/14/2018,Politicians,@CoryBooker,@TeaClark3 Love you too. Darkness can't drive out darkness. +05/14/2018,Politicians,@CoryBooker,@meggsss1221 Thank you for your kind and encouraging words. +05/14/2018,Politicians,@CoryBooker,@jeffstabley @vegan Yes +05/14/2018,Politicians,@CoryBooker,@ABonnieMarie Yes +05/14/2018,Politicians,@CoryBooker,"@takingshape Ha, we were probably out there together then." +05/14/2018,Politicians,@CoryBooker,"@WindaWester @artjr1971 Ahhhhh, I see what you did there!" +05/14/2018,Politicians,@CoryBooker,@mrasg1 I am just now seeing your question - from severely limiting chemical testing on animals to protecting endan… https://t.co/7Cnjnk96op +05/14/2018,Politicians,@CoryBooker,"Remember that the biggest thing you could do today is a small act of kindness, decency or love extended to another." +05/14/2018,Politicians,@CoryBooker,RT @SenGillibrand: It has been 96 days since the House unanimously passed a bill to address sexual harassment in Congress. The Senate still… +05/14/2018,Politicians,@CoryBooker,"RT @mic: It's a holiday for all mothers — even those who can't afford bail. + +https://t.co/O4PvqDaN4D" +05/13/2018,Politicians,@CoryBooker,Driving in Jersey today I saw something I never saw before: A Vegan Vehicle. #Vegan #VeganCar https://t.co/4biMnL9JRq +05/13/2018,Politicians,@CoryBooker,"No, but I can tell you where to get an awesome vegan cheese steak. Try @HipCityVeg - it is amazing. + +Either way, e… https://t.co/uvkdShpfiM" +05/13/2018,Politicians,@CoryBooker,"RT @Lyncherator: This was one of my favorite excerpts from @CoryBooker's moving conversation with his mom for #MothersDay + +Here's to being…" +05/13/2018,Politicians,@CoryBooker,RT @Menendez4NJ: Retweet if you agree with @CoryBooker and @PhilMurphyNJ - Bob Menendez is NJ's champion and should be reelected this Novem… +05/13/2018,Politicians,@CoryBooker,@BeverlyBednarc1 Thank you! +05/13/2018,Politicians,@CoryBooker,@TheDonDrew Yes and it was awesome. +05/13/2018,Politicians,@CoryBooker,@andlav Thank you! +05/13/2018,Politicians,@CoryBooker,@lilmizzcbw Thank you! +05/13/2018,Politicians,@CoryBooker,Thank you! https://t.co/lmOs0kHjNH +06/29/2018,Politicians,@SenSherrodBrown,The expansion of the Women’s Recovery Center in Cleveland is just a small step toward ensuring Ohioans have the res… https://t.co/GECzVdNFrf +06/29/2018,Politicians,@SenSherrodBrown,"What’s worse is that the Federal Reserve wants to make life even easier for the big banks, by removing a key fundin… https://t.co/tZ04imCORB" +06/29/2018,Politicians,@SenSherrodBrown,"Instead of payouts to executives and wealthy shareholders, big banks should be reinvesting profits into workers, lo… https://t.co/SQAVdcKCLs" +06/29/2018,Politicians,@SenSherrodBrown,"Between the partisan tax bill, the #DoddFrankRollback bill, and the Administration constantly checking items off of… https://t.co/CKZu3v5Nvm" +06/29/2018,Politicians,@SenSherrodBrown,"This past month, we joined together to recommit ourselves to ensuring all Americans, regardless of who they love, h… https://t.co/iW67Qrzb0D" +06/29/2018,Politicians,@SenSherrodBrown,"For the 2nd year in a row, the White House broke with tradition & failed to offer an official presidential proclama… https://t.co/bGyxHFNV6a" +06/29/2018,Politicians,@SenSherrodBrown,"Journalists ask tough questions, bring us stories that affect our day-to-day lives, & tell stories that might not o… https://t.co/2NfNBWwJxB" +06/28/2018,Politicians,@SenSherrodBrown,Our hearts break for all those affected by this horrific act of violence. Thank you to the police and first respond… https://t.co/gxAqjr31ia +06/27/2018,Politicians,@SenSherrodBrown,"An attack on public service unions is an attack on all unions, & an attack on unions is an attack on all workers. T… https://t.co/6tyzg2lD4g" +06/27/2018,Politicians,@SenSherrodBrown,"I’m already very troubled by SCOTUS' actions in just the last few weeks—taking away workers’ rights, voters’ rights… https://t.co/IaIB0pK1vZ" +06/27/2018,Politicians,@SenSherrodBrown,"The decision in #JanusvsAFSCME is shameful, and it’s a setback – but we're not going to stop organizing and fightin… https://t.co/XVTgWHa007" +06/27/2018,Politicians,@SenSherrodBrown,"Pope Francis said, “We don't get dignity from power nor money or culture. We get dignity from work.” And part of th… https://t.co/8sTcW9X8AV" +06/27/2018,Politicians,@SenSherrodBrown,"#JanusvsAFSCME is an attack on workers' freedom to advocate for themselves. Workers produce more than ever, but don… https://t.co/QtqGPSr9iN" +06/26/2018,Politicians,@SenSherrodBrown,Thanks to the families from each of Ohio’s children’s hospitals for coming in today to tell your stories and discus… https://t.co/5gjc3O9omJ +06/26/2018,Politicians,@SenSherrodBrown,WATCH LIVE: after @DispatchAlerts reported that just two out of the ten most common jobs in Ohio pay enough to affo… https://t.co/LniHzRpkx9 +06/26/2018,Politicians,@SenSherrodBrown,"We keep America safe by aggressively going after terrorism, not by turning our backs on children and families who a… https://t.co/Uj78WC6sGA" +06/26/2018,Politicians,@SenSherrodBrown,"It’s no secret that Ohio is home to all kinds of innovation and excellence. On this day in 1974, the first Universa… https://t.co/4Z36B8SG9E" +06/25/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod’s speaking out about GM’s decision to build the Chevy Blazer in Mexico – a move that was report… https://t.co/oryzzgl8iV +06/24/2018,Politicians,@SenSherrodBrown,We are so grateful to all Ohio officers who put themselves in harm’s way protecting our communities every day. -SB +06/24/2018,Politicians,@SenSherrodBrown,"Our hearts go out to the officer’s family, fellow officers and the entire Mentor community. We send our support to… https://t.co/NgAnp0MLla" +06/23/2018,Politicians,@SenSherrodBrown,"GM should reverse this irresponsible decision, and use its tax windfall to invest in American workers. -SB" +06/23/2018,Politicians,@SenSherrodBrown,GM’s timing on this outrageous decision could not have been worse. On the same day GM is laying off workers in Youn… https://t.co/xrn2eIOArr +06/22/2018,Politicians,@SenSherrodBrown,In Columbus today talking about the need to protect thousands of civilian defense jobs in Central OH. These workers… https://t.co/Un8SASoq9i +06/21/2018,Politicians,@SenSherrodBrown,"Excited to announce that the 2018 Propel Ohio Leadership Summit for undergraduate students will be on Friday, Octob… https://t.co/czwDxTHvi7" +06/21/2018,Politicians,@SenSherrodBrown,Hoping for a quick recovery of the wounded officer. Thinking of everyone involved and grateful to Ohio officers who… https://t.co/FDK0vvUHcT +06/20/2018,Politicians,@SenSherrodBrown,Today was the 11th annual Ohio College Presidents Conference hosted by our office. Thank you to the 35 college pres… https://t.co/StvsKjBAyk +06/20/2018,Politicians,@SenSherrodBrown,RT @NGattozzi: .@PresBWarren joins with Ohio university president's for the 11th Ohio College Presidents' Conference hosted by @SenSherrodB… +06/20/2018,Politicians,@SenSherrodBrown,"RT @OHIOPrezOffice: I am attending the Ohio College Presidents Conference hosted by @SenSherrodBrown in Washington, D.C. today. Lots of opp…" +06/20/2018,Politicians,@SenSherrodBrown,RT @CSU_President: Great to be at the Ohio College Presidents Conference with @SenSherrodBrown and 50 colleagues to talk about innovation a… +06/20/2018,Politicians,@SenSherrodBrown,RT @OCCPresident: @SenSherrodBrown kicking off the Ohio College Presidents conference in DC. Great dialogue and information sharing. https:… +06/20/2018,Politicians,@SenSherrodBrown,"RT @MJuhas: TY ⁦@SenSherrodBrown⁩ 4 hosting the Ohio College Presidents Conference! Great panel on Innovation, Incubators & Entrepreneurshi…" +06/20/2018,Politicians,@SenSherrodBrown,RT @sean_decatur: With @SenSherrodBrown at the 2018 College Presidents Conference. #OhioSchoolsDC https://t.co/6jdYfOxs5x +06/20/2018,Politicians,@SenSherrodBrown,RT @clarkstatepres: We are here at @SenSherrodBrown Annual meeting for #Ohio presidents! https://t.co/383RN1gRWi +06/20/2018,Politicians,@SenSherrodBrown,"RT @WCPresJimR: Pleased to be part of Senator Brown’s Ohio College President’s Conference in Washington, DC today. Wonderful program and p…" +06/20/2018,Politicians,@SenSherrodBrown,RT @ctambar: Thanks Senator Sherrod Brown for asking Oberlin to be on the host committee for your 11th annual Ohio College Presidents’ Conf… +06/20/2018,Politicians,@SenSherrodBrown,"RT @HJamesWilliams: Ohio colleges and universities are meeting, here in Washington, DC, to discuss higher education issues and opportunitie…" +06/20/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod speaks after President Trump reverses course and ends the family separation policy. https://t.co/x9OV4FgJOm +06/20/2018,Politicians,@SenSherrodBrown,https://t.co/x9OV4FgJOm +06/20/2018,Politicians,@SenSherrodBrown,"And in our meeting this afternoon, @DeptVetAffairs Secretary-nominee Robert Wilkie must commit to working toward gr… https://t.co/9D9BYXbqt0" +06/20/2018,Politicians,@SenSherrodBrown,"Joining with @SenatorTester, @SenDougJones, @SenGillibrand & @SenBillNelson to file an amendment that would require… https://t.co/UApOPpXigM" +06/20/2018,Politicians,@SenSherrodBrown,"This week we learned @DeptVetAffairs has secret data about VA nursing home facilities – what’s worse, this data sho… https://t.co/yhwvg5SVC2" +06/20/2018,Politicians,@SenSherrodBrown,"I am imploring @POTUS, not as a Senator, but as an American, as a father and grandfather – please take action to pr… https://t.co/zt6dJvaX5q" +06/20/2018,Politicians,@SenSherrodBrown,"Dr. Colleen Kraft, current President of @AmerAcadPeds and past Medical Director of the Health Network by Cincinnati… https://t.co/ZB8eYOkLaG" +06/20/2018,Politicians,@SenSherrodBrown,"I’m demanding answers from @SecNielsen and @SecAzar about what they are doing to care for the mental, physical and… https://t.co/YUhIdivoQo" +06/20/2018,Politicians,@SenSherrodBrown,"Further, their reporting warns that in at least one facility housing these children, staff are under the impression… https://t.co/38HM04RXxb" +06/20/2018,Politicians,@SenSherrodBrown,.@kristinegWP and @NPRJoel have reported that the trauma experienced by children forcibly taken from their parents… https://t.co/oiZ4AxsXIO +06/20/2018,Politicians,@SenSherrodBrown,Introducing a bill with @SenAmyKlobuchar today to restore the rights of voters and uphold the integrity of our elec… https://t.co/BGXsglQZrF +06/20/2018,Politicians,@SenSherrodBrown,Last week’s decision in the Ohio voter purge Supreme Court case was a step backward for our democracy – we need to… https://t.co/NLBXwjQt5u +06/19/2018,Politicians,@SenSherrodBrown,".@BetsyDeVosED has continued to chip away at protections for student loan borrowers, and she’s made it a lot harder… https://t.co/b8WQo0zQEq" +06/19/2018,Politicians,@SenSherrodBrown,Demanding answers today with @SenWarren about exactly what role Kraninger has played in developing and implementing… https://t.co/YBESshpY8t +06/19/2018,Politicians,@SenSherrodBrown,"At @OMBPress, Kathy Kraninger - the Administration's nominee to head the @CFPB – oversees policies implemented by… https://t.co/XykExjwM8K" +06/18/2018,Politicians,@SenSherrodBrown,Tearing apart families is wrong and will not fix our broken immigration system. President Trump can immediately rev… https://t.co/z479Q34dCg +06/18/2018,Politicians,@SenSherrodBrown,"Joined veterans in Cleveland to talk about the All-American Flag Act, which would require the fed gov't to only buy… https://t.co/4nBDQiK9Xq" +06/18/2018,Politicians,@SenSherrodBrown,OCC Comptroller Joseph Otting – the man who’s charged with overseeing our country’s large banks – said he can’t say… https://t.co/ZFPG5w5xAc +06/18/2018,Politicians,@SenSherrodBrown,Working families need a @CFPB Director who will fight for them. For months I have called for a CFPB Director with a… https://t.co/EedmKXXbp1 +06/17/2018,Politicians,@SenSherrodBrown,Wishing Ohio dads a happy #FathersDay – as well as the father figures who help raise and teach our children. We als… https://t.co/Br3YCEziNH +06/17/2018,Politicians,@SenSherrodBrown,Thank you to everyone following this important legislation. The online list of cosponsors should be updated soon. -SB +06/17/2018,Politicians,@SenSherrodBrown,We demand all children be treated with compassion. Tearing families apart is wrong and will not fix our broken immi… https://t.co/oJ669RtiyZ +06/15/2018,Politicians,@SenSherrodBrown,ICYMI: Otting must open his eyes to this reality in order to do his job. #OCCnoColor https://t.co/DsUw90yYmB +06/15/2018,Politicians,@SenSherrodBrown,Here are some additional steps we can take → https://t.co/7yDkFpa0ao https://t.co/dNhTZoMMRH +06/15/2018,Politicians,@SenSherrodBrown,"We have more work to do to address the root of China’s cheating and reset our trade imbalance, and I will continue… https://t.co/RZi5ulYKqd" +06/15/2018,Politicians,@SenSherrodBrown,"China’s cheating has shuttered steel plants across our state, put Ohioans out of work, and distorted global markets… https://t.co/j6D5zeRw5E" +06/14/2018,Politicians,@SenSherrodBrown,Watch Sherrod question Otting at this morning’s @SenateBanking hearing. https://t.co/tKHRcnw9V1 +06/14/2018,Politicians,@SenSherrodBrown,"And @PewResearch found that in 2015, ""27.4% of black applicants and 19.2% of Hispanic applicants were denied mortga… https://t.co/JWlFp5N9Ki" +06/14/2018,Politicians,@SenSherrodBrown,"In the banking sector Otting oversees? +The Center for Investigative Reporting analyzed tens of millions of mortgag… https://t.co/iuzSuD9Fld" +06/14/2018,Politicians,@SenSherrodBrown,@PewResearch: “About half of Hispanics in the U.S. (52%) say they have experienced discrimination or have been trea… https://t.co/Fkl4n8V76U +06/14/2018,Politicians,@SenSherrodBrown,@NPR: “Almost all of the black people who responded — 92 percent — said they felt that discrimination against Afric… https://t.co/0dZGKQYLG2 +06/14/2018,Politicians,@SenSherrodBrown,@PewResearch: “About four-in-ten working women (42%) in the United States say they have faced discrimination on the… https://t.co/GWtZv2uABj +06/14/2018,Politicians,@SenSherrodBrown,OCC Comptroller Joseph Otting – the man who’s charged with overseeing our country’s large banks – said he can’t say… https://t.co/TDTGNCFaZX +06/14/2018,Politicians,@SenSherrodBrown,"What’s more patriotic than the American flag? +Supporting American jobs by buying American-made products. + +This… https://t.co/swuZBeh8Mq" +06/13/2018,Politicians,@SenSherrodBrown,We already knew that Readler has tried to strip Ohioans of their rights – and now he’s putting politics above legal… https://t.co/1LKLCY4haJ +06/13/2018,Politicians,@SenSherrodBrown,"Readler's attack on patients with pre-existing conditions – which 3 other career lawyers refused to make – ""could h… https://t.co/yHpSW59XaP" +06/13/2018,Politicians,@SenSherrodBrown,Nor did the significance of the 3 lawyers’ refusal to sign on to the Administration’s argument.… https://t.co/BV5wogyOtb +06/13/2018,Politicians,@SenSherrodBrown,This serendipity didn't go unnoticed. https://t.co/kSdrp9vL57 https://t.co/fae35MoaX1 +06/13/2018,Politicians,@SenSherrodBrown,"Last week, 3 career @TheJusticeDept attorneys withdrew from a legal brief challenging protections for pre-existing… https://t.co/pVKWmZeqRi" +06/13/2018,Politicians,@SenSherrodBrown,"Chatting with @SenateMajLdr about how great this year's #FarmBill is, in terms we both understand: it's both a gran… https://t.co/lqF2RnOX6r" +06/13/2018,Politicians,@SenSherrodBrown,"""The risk to businesses include employers not only in declining plans but also in healthy plans & the job risks imp… https://t.co/3ZeDyDprQM" +06/13/2018,Politicians,@SenSherrodBrown,"""My message today is simple: this committee must succeed in its mission to solve the multiemployer funding crisis.""… https://t.co/uGGnqXywKj" +06/13/2018,Politicians,@SenSherrodBrown,WATCH NOW: Businesses are urging the Pensions Committee to find a solution to the pensions crisis. https://t.co/gQjdrYN77N +06/13/2018,Politicians,@SenSherrodBrown,BREAKING NEWS: @USChamber new report “The Multiemployer Pension Plan Crisis: Businesses and Jobs at Risk” https://t.co/vgdm1NpUDt +06/13/2018,Politicians,@SenSherrodBrown,RT @USChamber: Op-ed in @thehill by @USChamberEPD: The multi-employer pension crisis https://t.co/Xvuip2jIbc +06/13/2018,Politicians,@SenSherrodBrown,WATCH LIVE: @senorrinhatch and Sherrod hold a hearing of the Pensions Committee to learn more about how the pension… https://t.co/50Rgm7eLrH +06/12/2018,Politicians,@SenSherrodBrown,"Hear more from Ohio @CWAUnion workers about what it means to them to work in a call center, and the pride that they… https://t.co/s02NjVbcGH" +06/12/2018,Politicians,@SenSherrodBrown,"Great to see @CWAUnion workers today, and thank them for their continued advocacy. We join them in fighting for a t… https://t.co/hBHbDfVxgK" +06/12/2018,Politicians,@SenSherrodBrown,"But we’ve heard empty promises from the North Koreans before, so we must continue to hold them accountable with tou… https://t.co/K8QhQD3D5n" +06/12/2018,Politicians,@SenSherrodBrown,"We all want these negotiations to succeed, and I’m glad the President had a positive meeting with Kim Jong Un. https://t.co/QQCnmw6qxv" +06/11/2018,Politicians,@SenSherrodBrown,"“Sherrod Brown wants you to know he has your back.” Damn right – and that’s regardless of what you look like, where… https://t.co/kBKABJ9ELl" +06/11/2018,Politicians,@SenSherrodBrown,"We need to fight the addiction crisis at every level – prevention, treatment, and recovery. And that must include m… https://t.co/Xy9j8Ud8tc" +06/11/2018,Politicians,@SenSherrodBrown,This ruling further shows why we can’t afford to pack our federal courts with judges who have a track record of hos… https://t.co/iOprpqHsYM +06/11/2018,Politicians,@SenSherrodBrown,"Ohio should be working to make voting easier, not harder. Instead, today’s decision empowers Ohio to further strip… https://t.co/gCrjYcmiXC" +06/11/2018,Politicians,@SenSherrodBrown,"It also includes our Local FARMS Act – which would help farmers sell their products directly to consumers, create r… https://t.co/5niSJTsTQU" +06/11/2018,Politicians,@SenSherrodBrown,"The bipartisan Senate Farm Bill is good for farmers, good for families, good for taxpayers, good for jobs, and good… https://t.co/U7ghMTaJgT" +06/09/2018,Politicians,@SenSherrodBrown,Congrats to the @warriors on their victory – and to the @cavs & @KingJames on another great season. While I maintai… https://t.co/nqGq6DI0eT +06/08/2018,Politicians,@SenSherrodBrown,".@senrobportman – despite a rigged Game 1, I’m staying optimistic about the series. Nobody does a comeback like Cle… https://t.co/Jk9DYoo7p4" +06/08/2018,Politicians,@SenSherrodBrown,"The Toledo area has a long and storied history as a center for the American glass industry, and First Solar's inves… https://t.co/KZhSz0Sa0W" +06/08/2018,Politicians,@SenSherrodBrown,Congratulations to First Solar as they break ground on their newest Wood County plant – set to be one of the larges… https://t.co/91fkgtH2JM +06/08/2018,Politicians,@SenSherrodBrown,It’s simple: women should be paid the same as men for the same work. We need to strengthen the #EqualPayAct by pass… https://t.co/AurHy8Natk +06/08/2018,Politicians,@SenSherrodBrown,This Sunday marks the 55th anniversary of the #EqualPayAct. And yet too many women still aren't earning the same am… https://t.co/uFHSiNO4AN +06/08/2018,Politicians,@SenSherrodBrown,Learn more about Readler and Murphy’s records – and their work trying to strip Ohioans of their rights → https://t.co/1HtRmySTVw +06/08/2018,Politicians,@SenSherrodBrown,I cannot support nominees who have actively worked to strip Ohioans of their rights. Special interests already have… https://t.co/hODh5o32Ko +06/08/2018,Politicians,@SenSherrodBrown,"I believe Ohio kids have the right to quality education, Ohio citizens have the right to vote, working families hav… https://t.co/jOiMZQzklh" +06/07/2018,Politicians,@SenSherrodBrown,"But this alone is not enough - just as we protect our national security against threats from foreign investments, w… https://t.co/TN8bsJPrw9" +06/07/2018,Politicians,@SenSherrodBrown,It's great news that this year's #NDAA includes our bipartisan measure to strengthen the tools the U.S. uses to blo… https://t.co/D6mx8xW1Iq +06/06/2018,Politicians,@SenSherrodBrown,Mulvaney has proven once again he would rather cozy up with payday lenders and industry insiders than listen to con… https://t.co/gk1dVWcogG +06/06/2018,Politicians,@SenSherrodBrown,Glad to have Tina sitting at the table – and already grateful for her work on tough problems like the pension crisi… https://t.co/1Vk2zupEiC +06/06/2018,Politicians,@SenSherrodBrown,"Congratulations to Ohio’s @BorenAwards scholars, who will soon begin their studies in countries all over the world.… https://t.co/jnmGxdIbMx" +06/05/2018,Politicians,@SenSherrodBrown,"Last week, Boeing flight technicians in SC voted to join a union for the first time, giving them a voice in their w… https://t.co/OSilyL8akK" +06/04/2018,Politicians,@SenSherrodBrown,"So what does the Volcker Rule do? It stops banks from taking big risks with your money. Those complicated, risky be… https://t.co/ezgurIrS4H" +06/04/2018,Politicians,@SenSherrodBrown,WATCH LIVE: Sherrod's on the floor blasting the latest handout to Wall Street: a proposal gutting one of the key co… https://t.co/ef8hip9XGt +06/04/2018,Politicians,@SenSherrodBrown,"All Americans deserve to be protected from discrimination – regardless of where they live, what they look like, or… https://t.co/uBitWXPApg" +06/01/2018,Politicians,@SenSherrodBrown,"Standing with @SenBooker, @maziehirono, @SenMarkey, @SenJeffMerkley @SenSanders, @SenBrianSchatz, @SenatorTomUdall,… https://t.co/ZmGueWJMmF" +06/01/2018,Politicians,@SenSherrodBrown,"Following our success in securing new screening devices for federal law enforcement agents earlier this year, we ne… https://t.co/vc5cCDGAtP" +06/01/2018,Politicians,@SenSherrodBrown,"I urge Boeing to respect the decision its workers have made, and come to the negotiating table in good faith. -SB" +06/01/2018,Politicians,@SenSherrodBrown,"Tonight’s victory is a win not just for the Boeing technicians, but for all workers trying to advocate for themselv… https://t.co/NXCjBfV7Zn" +06/01/2018,Politicians,@SenSherrodBrown,I congratulate the Boeing flight readiness technicians for voting to join a union. https://t.co/q0InEhqYhq +06/01/2018,Politicians,@SenSherrodBrown,Thanks to students in CLE today who joined us to discuss gun violence prevention. We can’t say we're doing what it… https://t.co/Z7kQ7QmAKc +05/31/2018,Politicians,@SenSherrodBrown,Hey @SenFeinstein and @SenKamalaHarris – let’s make the #NBAFinals a little more interesting. When the @cavs do… https://t.co/0OAgd1Zx5K +05/31/2018,Politicians,@SenSherrodBrown,RT @ScottWartman: Democratic and Republican senators agree: Keep the Amtrak ticket window open at Union Terminal https://t.co/TTXg3Nu8yJ @S… +05/30/2018,Politicians,@SenSherrodBrown,"To effectively fight the opioid epidemic, we need to give law enforcement the tools they need to detect and identif… https://t.co/Nygu1TfN8O" +05/30/2018,Politicians,@SenSherrodBrown,"The U.S. lost 200,000 call center jobs between 2006 and 2014 - and make no mistake, these are good jobs that we wan… https://t.co/S8FfA35YcF" +05/29/2018,Politicians,@SenSherrodBrown,It’s a disgrace that we have allowed the transportation system our parents and grandparents left us to fall into di… https://t.co/8gXh5Cy2qW +05/29/2018,Politicians,@SenSherrodBrown,It’s no secret that Brent Spence is in bad shape – but Cincinnati’s Western Hill Viaduct is in disrepair too. In fa… https://t.co/Lwx65G1cjo +05/29/2018,Politicians,@SenSherrodBrown,Good luck to Ohio's P-R-E-C-O-C-I-O-U-S competitors. #SpellingBee https://t.co/3p778NVzd0 +05/28/2018,Politicians,@SenSherrodBrown,"On #MemorialDay, we remember all Ohioans who made the ultimate sacrifice for our country. It’s our duty to honor th… https://t.co/t0i27FRVPG" +05/27/2018,Politicians,@SenSherrodBrown,"In @KingJames’ words – “In Northeast Ohio, nothing is given. Everything is earned.” Cleveland’s ready for #Game7. #WhateverItTakes" +05/27/2018,Politicians,@SenSherrodBrown,As they say – it ain’t over till it’s over. What a comeback for the @cavs last night. #WhateverItTakes +05/26/2018,Politicians,@SenSherrodBrown,An alternative headline: “Caps Fans Encounter Cleveland Hospitality” https://t.co/8E94WijV4O +05/25/2018,Politicians,@SenSherrodBrown,This proposed rule isn’t about protecting women; it’s about scoring political points at the expense of women's heal… https://t.co/HQkstvnBZp +05/25/2018,Politicians,@SenSherrodBrown,"By placing the federal government in between a woman and her doctor, the Administration's misguided and rushed prop… https://t.co/6lAipekRAl" +05/24/2018,Politicians,@SenSherrodBrown,It's always a pleasure to see the inimitable @sr_simone. Her advocacy continues to change our country for the bette… https://t.co/7alBgIgZ0A +05/24/2018,Politicians,@SenSherrodBrown,Rooting for @CWRU Softball today in their first game of the NCAA DIII Championships! https://t.co/EX7pR2BplR +05/24/2018,Politicians,@SenSherrodBrown,"We have more to do to make sure that every worker feels safe, supported, and heard in their workplace – regardless of where that is." +05/24/2018,Politicians,@SenSherrodBrown,"Just now, the Senate passed bipartisan legislation that will improve how cases of sexual harassment and workplace d… https://t.co/3cp5cFKwBZ" +05/24/2018,Politicians,@SenSherrodBrown,"Last week, @Pontifex called our current financial system “an inadequate framework that exclude[s] the common good.”… https://t.co/RNUwU9RzqG" +05/24/2018,Politicians,@SenSherrodBrown,#DoddFrankRollBack – which just got signed into law – increases the likelihood of a big bank failure and a financia… https://t.co/S75ILU22f4 +05/24/2018,Politicians,@SenSherrodBrown,Wages have been largely flat. 44 percent of Americans adults can’t afford an emergency expense of $400. One in four… https://t.co/euZP2rJlbU +05/24/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: As the #DoddFrankRollback bill gets signed into law, Sherrod quotes @Pontifex on the floor: our current… https://t.co/v0VkuwPJ2U" +05/23/2018,Politicians,@SenSherrodBrown,Ohioans still deserve answers from Discovery Tours and that’s why I’ve called federal authorities to investigate. -… https://t.co/msH3Xli6eA +05/23/2018,Politicians,@SenSherrodBrown,I was proud to welcome Northwood Middle School’s 8th graders and Van Cleve Elementary’s 6th graders to our nation’s… https://t.co/IKzMHdFFhZ +05/23/2018,Politicians,@SenSherrodBrown,"Yesterday, Congress once again sided with special interests and Wall Street instead of taxpayers, homeowners, stude… https://t.co/AeiCdcnnuq" +05/23/2018,Politicians,@SenSherrodBrown,"""Congress sent a bill to President Donald Trump’s desk Tuesday intended to roll back regulations adopted after the… https://t.co/F0OavXqsxL" +05/23/2018,Politicians,@SenSherrodBrown,.@steelworkers are here today to tell their stories – about how Chinese cheating has shuttered steel mills & devast… https://t.co/3a7E7IKggC +05/23/2018,Politicians,@SenSherrodBrown,"Army Pfc. Michael J. Metcalf made the ultimate sacrifice for our country, and Ohio remains grateful for his service. https://t.co/1O43VkrJr0" +05/22/2018,Politicians,@SenSherrodBrown,"Workers are producing more and working harder than ever before – they are the ones who grow our economy. + +This rul… https://t.co/4UVIbgW5J5" +05/22/2018,Politicians,@SenSherrodBrown,Workers deserve to have their day in court when they've been wronged. This ruling means they'll have to settle thei… https://t.co/RjiGC0kjVu +05/22/2018,Politicians,@SenSherrodBrown,"Yesterday, the Supreme Court chose big companies over workers, and stripped workers of their power to sue the emplo… https://t.co/O0LnLSt2Ul" +05/22/2018,Politicians,@SenSherrodBrown,HAPPENING NOW: Sherrod's talking to @thehill at the @Newseum this morning about opioid addiction prevention.… https://t.co/bRThOXq0JV +05/22/2018,Politicians,@SenSherrodBrown,Thank you to the workers and retirees who joined us in Columbus this morning. We won’t stop speaking out about the… https://t.co/tE6NV8FCml +05/21/2018,Politicians,@SenSherrodBrown,"They are counting on Congress to put partisan politics aside and work together, and I am committed to working with… https://t.co/HsF5TmLqhM" +05/21/2018,Politicians,@SenSherrodBrown,"Ohio farmers, families and communities depend on the #FarmBill to support agriculture jobs, feed hungry families an… https://t.co/mcDMItTO40" +05/21/2018,Politicians,@SenSherrodBrown,Banks and payday lenders already have armies of lobbyists on their sides – they don’t need one more. -SB https://t.co/XycF7XhQ3Y +05/21/2018,Politicians,@SenSherrodBrown,"Our workers are more than a line item in a budget, a cost to be minimized – rather, they are our greatest resource.… https://t.co/RxgNOi2vri" +05/21/2018,Politicians,@SenSherrodBrown,"""What is morally unacceptable is not simply to profit, but rather to avail oneself of an inequality for one’s own a… https://t.co/4v55zv34IB" +05/21/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: Sherrod’s with Ohio retirees and workers in Columbus this morning, talking about protecting the retirem… https://t.co/USJYYIBJc9" +05/20/2018,Politicians,@SenSherrodBrown,"In Cincinnati today, calling on the administration to keep its commitment to this city, and make sure the NIOSH pro… https://t.co/OpK2zO2MPd" +05/20/2018,Politicians,@SenSherrodBrown,“A big overarching problem in America isn’t that poor people aren’t working hard enough; it’s that their wages aren… https://t.co/CEBDaxXsoD +05/18/2018,Politicians,@SenSherrodBrown,Horrified by another senseless act of violence. Ohio stands with Santa Fe and we are grateful to all first responde… https://t.co/d6pg9gdbP5 +05/17/2018,Politicians,@SenSherrodBrown,"WATCH: Pensions expert confirms the cost of doing nothing is unimaginable for retirees, workers, businesses, and ta… https://t.co/dGmfrgQmUW" +05/17/2018,Politicians,@SenSherrodBrown,"Thanks to Maj General Cooley, the Air Force Research Lab Commander at Wright-Patterson Air Force Base, for coming i… https://t.co/aJSqhtWdRz" +05/17/2018,Politicians,@SenSherrodBrown,"WATCH: during Police Week, Sherrod thanked Ohio’s law enforcement officers on the Senate floor, and honored those w… https://t.co/gVqYUGV2D6" +05/17/2018,Politicians,@SenSherrodBrown,"Like many Ohio businesses, the Internet is crucial to realtors. Glad that so many Ohio members of @nardotrealtor we… https://t.co/m41xC9aqYq" +05/17/2018,Politicians,@SenSherrodBrown,"Simply propping up the PBGC is not enough. We can’t take our hands off the wheel, close our eyes and allow this car… https://t.co/vRPI7Sq9Kz" +05/17/2018,Politicians,@SenSherrodBrown,"We have the opportunity to do just that – to keep those businesses open, to save those jobs, and to ensure workers… https://t.co/vAlB9nQghb" +05/17/2018,Politicians,@SenSherrodBrown,Ask anyone who’s ever totaled a car or dealt with flooding or fire in their homes – you’re sure glad you have insur… https://t.co/2AMECIKmvV +05/17/2018,Politicians,@SenSherrodBrown,"PBGC is the insurance company for these retirement plans. Like any insurance plan, PBGC doesn’t kick in until the d… https://t.co/PH7afH0NT2" +05/17/2018,Politicians,@SenSherrodBrown,"WATCH LIVE: Sherrod and @senorrinhatch chair the third hearing of the Pensions Committee, focused on the crisis thr… https://t.co/a6FVqGluCX" +05/16/2018,Politicians,@SenSherrodBrown,Thank you to everyone who made their voices heard in this fight. And as this #NetNeutrality bill moves to the House… https://t.co/JqHWtlGc9i +05/16/2018,Politicians,@SenSherrodBrown,A victory in the Senate today for the thousands of Ohioans who depend on a free and open Internet. #NetNeutrality i… https://t.co/bL5OL17wrx +05/16/2018,Politicians,@SenSherrodBrown,"And today, Brandon Standley, President of the Ohio Association of Chiefs of Police, came in today for a discussion… https://t.co/l56hqDcRRP" +05/16/2018,Politicians,@SenSherrodBrown,"Yesterday, members of the Ohio Patrolmen’s Benevolent Association talked officer safety and healthcare, and saw a d… https://t.co/DJVDt1skye" +05/16/2018,Politicians,@SenSherrodBrown,"During #NationalPoliceWeek, we thank the law enforcement who've devoted their lives to keeping us safe – and hear f… https://t.co/Sb6tGTkVc9" +05/16/2018,Politicians,@SenSherrodBrown,RT @RepDaveJoyce: A member of my staff delivered House and Senate gallery passes to @SolonSchools Middle School students today for their up… +05/16/2018,Politicians,@SenSherrodBrown,"Today’s vote on #NetNeutrality is about whose side we’re on: corporate special interests, or the people we serve wh… https://t.co/6JA4ByIqLw" +05/15/2018,Politicians,@SenSherrodBrown,#Ramadan Mubarak to all those celebrating! +05/15/2018,Politicians,@SenSherrodBrown,#NetNeutrality is about making sure your access to information doesn’t depend on how much money you have. We must a… https://t.co/4r1xCb8iCQ +05/15/2018,Politicians,@SenSherrodBrown,The third bill is the Working Families Tax Relief Act. This would provide a stronger Earned Income Tax Credit and C… https://t.co/1sB7afd4D8 +05/15/2018,Politicians,@SenSherrodBrown,"Then there's the Corporate Freeloader Fee: if you pay your workers what their work is worth, you get a tax cut. But… https://t.co/3OCzSefVpD" +05/15/2018,Politicians,@SenSherrodBrown,"First, the Patriot Corporation Act: this bill would cut taxes for corporations that commit to staying in the US, to… https://t.co/xDp5qBuFTB" +05/15/2018,Politicians,@SenSherrodBrown,"At #CAPIdeas this morning, discussed some of our ideas for a tax bill that would have actually put more money back… https://t.co/asjjgVH7YV" +05/15/2018,Politicians,@SenSherrodBrown,"We trust schools to educate and prepare students, but ECOT, William Lager, and his companies have abused that trust… https://t.co/L9Qg0G7mx8" +05/15/2018,Politicians,@SenSherrodBrown,"""I think workers in my state are looking for somebody in elected office to talk about the dignity of work, to talk… https://t.co/1QBQ5rimfD" +05/15/2018,Politicians,@SenSherrodBrown,"""I think we need to talk about work differently. Some people on the coasts call my state the Rust Belt, and that di… https://t.co/2Gb3YmkllK" +05/15/2018,Politicians,@SenSherrodBrown,"RT @alexnazaryan: ""Are you on the side of Wall Street or are you fighting for the little guy?"" -@SenSherrodBrown at #capideas 2018." +05/15/2018,Politicians,@SenSherrodBrown,.@paulkrugman agrees with Sherrod - companies must look at workers as more than a cost to be minimized. The idea th… https://t.co/4VVlKLjKkD +05/15/2018,Politicians,@SenSherrodBrown,Sherrod kicks off the conversation by talking about his plan to make hard work pay off - he argues that Americans a… https://t.co/tSd5DPl9X7 +05/15/2018,Politicians,@SenSherrodBrown,HAPPENING SOON: Sherrod’s kicking off today’s #CAPIdeas Conference in a conversation with @neeratanden and… https://t.co/E9EypCQgDO +05/14/2018,Politicians,@SenSherrodBrown,"They don't make them tougher than Harry Reid. We're all rooting for you, Harry - give cancer hell. -SB" +05/14/2018,Politicians,@SenSherrodBrown,Helen and Jesse are just two of the hundreds of small business owners across Ohio who've depended on @Google and th… https://t.co/H8NFNohtsh +05/13/2018,Politicians,@SenSherrodBrown,Excited to once again watch the King and the @Cavs take care of business in the Eastern Conference Finals. Go Cavs! #WhateverItTakes +05/13/2018,Politicians,@SenSherrodBrown,"Today, we celebrate the moms across Ohio who work so hard to give their children the best possible life – and that… https://t.co/TYBAI2aPiz" +05/13/2018,Politicians,@SenSherrodBrown,We are keeping this brave Deputy in our thoughts. Thank you to all the first responders on the scene. https://t.co/4pPAHkpzg5 +05/12/2018,Politicians,@SenSherrodBrown,"Considering Mr. Mulvaney's comments on how he chooses who to meet with, we want to know who's on his schedule every… https://t.co/dXHiULqRBg" +05/11/2018,Politicians,@SenSherrodBrown,President Trump says he wants to lower drug costs. He could make good on his promises to lower prescription drug pr… https://t.co/HylEcucovi +05/11/2018,Politicians,@SenSherrodBrown,"As Ohioans increasingly learn, do business & communicate online, I’m glad to be partnering with @Google to help con… https://t.co/kYBpJLszdf" +05/11/2018,Politicians,@SenSherrodBrown,"Nurses want to provide the best possible care to their patients, & to do so safely. We must establish standards tha… https://t.co/aRt78yFaHS" +05/11/2018,Politicians,@SenSherrodBrown,"Every day, patients across Ohio count on nurses in their time of need - and during #nursesappreciationweek, we say… https://t.co/p4QOAVSHKL" +05/11/2018,Politicians,@SenSherrodBrown,Our bipartisan resolution designating this week as National #TeacherAppreciationWeek just passed the Senate. But th… https://t.co/sZ0Gi5dKsX +05/10/2018,Politicians,@SenSherrodBrown,"If President Trump wants to lower prescription drug prices, he can start by helping us pass the Improving Access to… https://t.co/BTH5GCLw8Z" +05/10/2018,Politicians,@SenSherrodBrown,"@TheJusticeDept and @FTC must determine whether Discovery Tours broke any laws, and ensure there are proper consequ… https://t.co/n5xH0Oo3Na" +05/10/2018,Politicians,@SenSherrodBrown,"Discovery Tours defrauded hundreds of Ohio students - not only will these kids miss long-awaited school trips, but… https://t.co/t6b3OiLTqQ" +07/02/2018,Politicians,@KamalaHarris,It is long past due for Congress to have the courage to pass reasonable gun safety laws. This is not a question of… https://t.co/XbowyoFkx3 +07/02/2018,Politicians,@KamalaHarris,Cities and states across America are already working to stop our country from repeating the same mistakes of the pa… https://t.co/IDNxVjYKa8 +07/01/2018,Politicians,@KamalaHarris,Donald Trump wants to fill this SCOTUS vacancy with a justice who will overturn Roe v. Wade. Here’s what this is re… https://t.co/HGz1O5l0g9 +07/01/2018,Politicians,@KamalaHarris,"Every single day we don’t reunite these babies and children with their parents, our country is failing an important… https://t.co/9kXfKwkkoc" +07/01/2018,Politicians,@KamalaHarris,Real power does not reside in D.C. It lives in each and every one of us. It is up to each of us to use our voices a… https://t.co/VCHfomPZKQ +07/01/2018,Politicians,@KamalaHarris,"From the United States Congress and United States Census, to the White House, LGBTQ rights are under attack. We mus… https://t.co/WjXsEPmaoB" +07/01/2018,Politicians,@KamalaHarris,"We have children crying for their mommies and daddies. We know these children will suffer lifelong trauma, and that… https://t.co/kV7lSU10Qg" +07/01/2018,Politicians,@KamalaHarris,An economy that only works for those at the very top is an economy that is broken. Together we can build a country… https://t.co/RLKf5XOKSs +06/30/2018,Politicians,@KamalaHarris,"For generations, Social Security has been the difference for millions of American seniors between getting by and li… https://t.co/WrFEfK6pOe" +06/30/2018,Politicians,@KamalaHarris,We’ve already seen the President’s list of potential SCOTUS nominees — they are conservative ideologues who would p… https://t.co/sKjGeD1L8U +06/30/2018,Politicians,@KamalaHarris,@WaywardWinifred So great to meet a young activist! +06/30/2018,Politicians,@KamalaHarris,This Administration's solution to the humanitarian crisis they purposely created could mean indefinitely detaining… https://t.co/aLw45Jkpvs +06/30/2018,Politicians,@KamalaHarris,"RT @ajplus: ""When we have over 2,000 children that right now are not with their parents because we separated them ... When we know those ch…" +06/30/2018,Politicians,@KamalaHarris,We know we are better than this! #FamiliesBelongTogether https://t.co/JzHJ8SwMV5 +06/30/2018,Politicians,@KamalaHarris,"From 1882 to 1986, there have been 200 attempts that have failed to get Congress to pass federal anti-lynching legi… https://t.co/BJ7tS5Fm5Z" +06/30/2018,Politicians,@KamalaHarris,"As #Pride Month comes to an end, let us not forget — the struggle for LGBTQ equality is far from over. We must keep… https://t.co/E1g0S50Z1i" +06/30/2018,Politicians,@KamalaHarris,More and more toddlers are ending up alone in immigration court because of this Administration’s cruel policy of br… https://t.co/4YMOIq4mQq +06/30/2018,Politicians,@KamalaHarris,Women aren’t just marching — they’re running and fighting for our future. https://t.co/2zHSZsub7z +06/30/2018,Politicians,@KamalaHarris,"The fight over this Supreme Court vacancy is going to require each and every one of us talking with our friends, fa… https://t.co/oD6HsGBTyF" +06/29/2018,Politicians,@KamalaHarris,"In nearly every industry, Black women continue to face barriers, stereotypes and discrimination. As they continue t… https://t.co/s5dF93MhS3" +06/29/2018,Politicians,@KamalaHarris,This is a moment in time that is requiring us to speak out and fight for who we are as a country. We must not despa… https://t.co/ieKFvWIrdn +06/29/2018,Politicians,@KamalaHarris,This Administration knows the kind of trauma it inflicted by separating children from their parents. I’ve sent a le… https://t.co/zutQXARZWt +06/29/2018,Politicians,@KamalaHarris,Make no mistake — this Supreme Court vacancy puts a woman’s constitutionally protected right to make her own health… https://t.co/k4kVy1EPi2 +06/29/2018,Politicians,@KamalaHarris,"As we demand our leaders take action against this epidemic of mass shootings, we must not ignore the connection bet… https://t.co/yQcGi9gyop" +06/29/2018,Politicians,@KamalaHarris,American women are 16 times more likely to be killed with guns than women in other developed countries. And each mo… https://t.co/hnSSDej4CP +06/29/2018,Politicians,@KamalaHarris,"Lynching is a dark, despicable part of our history​. Passing an anti-lynching law is long overdue. https://t.co/BnYFofEy87" +06/29/2018,Politicians,@KamalaHarris,"RT @tammybaldwin: Getting the job done for hardworking Americans has made me some well-funded enemies, but that’s never scared me. And it’s…" +06/29/2018,Politicians,@KamalaHarris,So much of what is at the foundation of who we are is based on words that have been spoken in the United States Sup… https://t.co/fC9pJ6YK4d +06/28/2018,Politicians,@KamalaHarris,I'm heartbroken by the shooting at the Capital Gazette. Journalists play such a critical role in our democracy and… https://t.co/K23Mmp3ohI +06/28/2018,Politicians,@KamalaHarris,Those are the kind of generational impacts our courts can have on our country. We cannot and will not accept conser… https://t.co/DNjlwLNEZh +06/28/2018,Politicians,@KamalaHarris,"On this day in 2013, I was honored to marry Sandy Stier and Kris Perry after the courts lifted CA's ban on same-sex… https://t.co/R5LURN9MAA" +06/28/2018,Politicians,@KamalaHarris,This SCOTUS vacancy puts issues that affect every single American in the balance — from a woman’s right to choose t… https://t.co/8PkVBn2fnD +06/28/2018,Politicians,@KamalaHarris,"RT @CAPAction: Senator @KamalaHarris: + +""If not for Brown v. Board, I would not be standing here as a black woman today."" #SaveSCOTUS https:…" +06/28/2018,Politicians,@KamalaHarris,This morning I will be rallying with @WeDemandJustice on the steps of the Supreme Court to talk about how our funda… https://t.co/YzPiSdR1z9 +06/27/2018,Politicians,@KamalaHarris,This Supreme Court seat is going to have a generational impact — on everything from Roe v. Wade to same-sex marriag… https://t.co/g9BFVFXDRQ +06/27/2018,Politicians,@KamalaHarris,"RT @hardball: Tonight on #Hardball: Justice Kennedy announces his retirement. @KamalaHarris, @Eugene_Robinson, @SusanPage join Hardball." +06/27/2018,Politicians,@KamalaHarris,I know from personal experience — as a beneficiary of the landmark Brown vs. Board ruling desegregating our nation’… https://t.co/2vikoHWOg2 +06/27/2018,Politicians,@KamalaHarris,We've already seen the President's list of potential SCOTUS nominees. They are complete non-starters. The American… https://t.co/upxhxSfI3D +06/27/2018,Politicians,@KamalaHarris,"With fundamental rights in the balance, the American people, who vote in fewer than 4 months, deserve to have their… https://t.co/uENUL499Jd" +06/27/2018,Politicians,@KamalaHarris,"Congratulations to @BenJealous, @JoeNeguse, @Ocasio2018, and the hundreds of other Democrats leading our party into… https://t.co/Gd48ldrgNL" +06/27/2018,Politicians,@KamalaHarris,"Every single day we don’t reunite these babies and children with their parents, our country is failing an important… https://t.co/RVka5YD1Q1" +06/27/2018,Politicians,@KamalaHarris,"Congress must act to bolster the labor movement that built our middle class. Earlier this year, I wrote about why t… https://t.co/kHOHmAxSeO" +06/27/2018,Politicians,@KamalaHarris,"This decision is part of an ongoing trend of this Court that has repeatedly sided with employers over employees, co… https://t.co/JJiTIst4qs" +06/27/2018,Politicians,@KamalaHarris,"After Hurricane Maria, our government failed Puerto Rico at every level, including misinforming grieving communitie… https://t.co/J8PtIg0RK7" +06/26/2018,Politicians,@KamalaHarris,This Administration has rolled back the protections that have existed for pregnant women seeking asylum — and now t… https://t.co/aoyjWCRKdO +06/26/2018,Politicians,@KamalaHarris,"Yesterday, I introduced legislation to ensure farmworkers are guaranteed overtime protections and a minimum wage. T… https://t.co/TYvksIGmQl" +06/26/2018,Politicians,@KamalaHarris,I am a career prosecutor. I have visited many prisons and jails. The facilities being used to detain these immigran… https://t.co/Hcqe6jCiVg +06/26/2018,Politicians,@KamalaHarris,"Women deserve accurate information about the full range of reproductive services available to them, including abort… https://t.co/sZuwkcKnW2" +06/26/2018,Politicians,@KamalaHarris,This decision from the Supreme Court upholds a policy that is an affront to our values. Trump's Muslim Ban is discr… https://t.co/EZVh0QMq9k +06/26/2018,Politicians,@KamalaHarris,"On this day in 2015, the right of every American to marry the person they love was finally recognized. As we celebr… https://t.co/rXgTjBvYZs" +06/26/2018,Politicians,@KamalaHarris,"It’s unconscionable the Trump Administration decided to exact what could be a lifetime of trauma for over 2,000 kid… https://t.co/85hoqukpI2" +06/25/2018,Politicians,@KamalaHarris,Asylum seekers fleeing extreme violence and poverty are being told by our government they can have their kids back… https://t.co/zMmHyexz7L +06/25/2018,Politicians,@KamalaHarris,"As today’s ruling on Texas’ gerrymandering shows, we need to update and reinvigorate the Voting Rights Act to ensur… https://t.co/XKiL2Qd5FF" +06/25/2018,Politicians,@KamalaHarris,"5 years ago today, the Supreme Court gutted the Voting Rights Act, putting the right to speak out and make our voic… https://t.co/QKeBt6vhoO" +06/25/2018,Politicians,@KamalaHarris,Parents at one immigrant detention center say they “took to sleeping with their legs wrapped around their children… https://t.co/7ofPg4dBt7 +06/25/2018,Politicians,@KamalaHarris,We will leave no one to fight alone for their civil rights. #Pride https://t.co/0gu44Lrg4C +06/25/2018,Politicians,@KamalaHarris,It was so great to see my sorors in St. Louis last week! #AKA @akasorority1908 https://t.co/38HPJziFW9 +06/25/2018,Politicians,@KamalaHarris,There is no distinction between these “detention centers” and a prison. You walk through the halls and the doors cl… https://t.co/ZtYURJsvu0 +06/25/2018,Politicians,@KamalaHarris,"I remain committed to fighting for raising the federal minimum wage, making public colleges and universities tuitio… https://t.co/Y7fqziE02n" +06/24/2018,Politicians,@KamalaHarris,"As our country moves toward legalizing marijuana, let's remember how many lives have been ruined because of our reg… https://t.co/JbK6o12ThT" +06/24/2018,Politicians,@KamalaHarris,".@LenaWaithe is “disrupting the hell out of Hollywood"" by ensuring diverse communities can turn on the TV and see v… https://t.co/AVxNqcynh0" +06/24/2018,Politicians,@KamalaHarris,The anti-environment agenda of this admin is wrongheaded. Most Americans want to protect the environment and keep o… https://t.co/c6E1JONlun +06/24/2018,Politicians,@KamalaHarris,"The government should be in the business of keeping families together, not tearing them apart. The mothers I spoke… https://t.co/hMyjNlYw8H" +06/24/2018,Politicians,@KamalaHarris,"To everyone marching, dancing, and chanting today at #SFPride2018 and across the country: We’re in this fight toget… https://t.co/AKTj7cRCh3" +06/24/2018,Politicians,@KamalaHarris,Proud to march in the @SFPride parade today! Such amazing energy. A celebration of love and solidarity. #Pride2018 https://t.co/xCpMeXNfrC +06/24/2018,Politicians,@KamalaHarris,"RT @eqca: “We’ve seen this discrimination before. We saw it at a lunch counter, and now we see it at a cake counter. And we’ll have to figh…" +06/24/2018,Politicians,@KamalaHarris,Excited to march in San Francisco’s Pride Parade today! Happy #Pride! https://t.co/fDnUuQ8BAQ +06/24/2018,Politicians,@KamalaHarris,"Tornillo, Texas is the first site where hundreds of migrant children have been detained in temporary shelters and s… https://t.co/ZpiflJfpcv" +06/24/2018,Politicians,@KamalaHarris,Kirstjen Nielsen should resign immediately. She is leading an agency that has separated children from their parents… https://t.co/3VtXVC8roP +06/23/2018,Politicians,@KamalaHarris,Too many lives have been ruined because of the War on Drugs. Federal marijuana legalization and restorative justice… https://t.co/7kYZhzTZic +06/23/2018,Politicians,@KamalaHarris,Huge corporations should not be profiting from the detention of human beings. Period. https://t.co/C0wPEtKbKs +06/23/2018,Politicians,@KamalaHarris,Yesterday I got a tour of an immigration detention facility and visited with the mothers separated from their child… https://t.co/9BzAlwNjHq +06/23/2018,Politicians,@KamalaHarris,"Our government's continued failure in Puerto Rico is unacceptable. With another hurricane season coming, we need to… https://t.co/rI6CYo2OBS" +06/23/2018,Politicians,@KamalaHarris,Let’s be clear: a society is judged based on how it treats its children. A society is judged based on how it treats… https://t.co/PolG1BNoeQ +06/23/2018,Politicians,@KamalaHarris,From Trump’s Muslim ban to the recent human rights abuses being committed by our government along the southern bord… https://t.co/YIVp1V1Gg4 +06/22/2018,Politicians,@KamalaHarris,I’m proud to see California fighting against this administration’s cruel immigration policies. https://t.co/RaGH7uzRxR +06/22/2018,Politicians,@KamalaHarris,"Congratulations to Canada on moving forward with the legalization of marijuana. As the world moves forward, we can’… https://t.co/3wvdsAJNTz" +06/22/2018,Politicians,@KamalaHarris,A few moments ago I finished visiting with mothers who were separated from their children at the border. I can tell… https://t.co/Y92mhGO0xD +06/22/2018,Politicians,@KamalaHarris,We must keep fighting so our courts will not be stacked for generations with individuals who have spent their caree… https://t.co/7jnvbzttrp +06/22/2018,Politicians,@KamalaHarris,"We still don't know how many died in the aftermath of Hurricane Maria, but we do know the impact of our government'… https://t.co/TU6bK6CNJi" +06/22/2018,Politicians,@KamalaHarris,I’ll be visiting an immigration center later today to speak with mothers who have been separated from their childre… https://t.co/YNDvPQ5cn5 +06/22/2018,Politicians,@KamalaHarris,"77 years ago this week, Ford Motor Company became the last major American auto manufacturer to sign its first union… https://t.co/jv0Kv3Wgel" +06/21/2018,Politicians,@KamalaHarris,Secretary Nielsen misled the American public and implemented and defended the inhumane policy of separation of chil… https://t.co/jfzXJBR0bD +06/21/2018,Politicians,@KamalaHarris,"More than ever, we need leaders in state government with courage and tenacity to fight for progressive values. That… https://t.co/25AzLCRog3" +06/21/2018,Politicians,@KamalaHarris,#TBT to San Francisco’s Pride Parade two years ago. Happy #Pride! https://t.co/llBSQw7UyT +06/21/2018,Politicians,@KamalaHarris,"Reporters, advocates, and even elected officials are being turned away while trying to find out more about how this… https://t.co/L8wFXfuhQC" +06/21/2018,Politicians,@KamalaHarris,"Every week, we learn more about the tragic repercussions of our government’s failure to identify the dead in Puerto… https://t.co/1KMvyjo6NG" +06/21/2018,Politicians,@KamalaHarris,The thousands of children who’ve spent days and weeks separated from their families still woke up this morning with… https://t.co/DUtfc10smX +06/20/2018,Politicians,@KamalaHarris,Trump's executive order does not fix this crisis. It gives no solution for the thousands of children who have been… https://t.co/LgtOlCCdYW +06/20/2018,Politicians,@KamalaHarris,"In the years that followed, San Francisco would witness critical moments in LGBTQ history: the election of Californ… https://t.co/AreS2Rquy0" +06/20/2018,Politicians,@KamalaHarris,I’m looking forward to once again joining in San Francisco’s tradition of #Pride this weekend. One year after the S… https://t.co/Z25TcjULDf +06/20/2018,Politicians,@KamalaHarris,There is no law that requires ripping these babies from their families. The president should pick up the phone and… https://t.co/eY39wA7T92 +06/20/2018,Politicians,@KamalaHarris,"If our leaders truly care about family values, then they will act to end these human rights abuses being committed… https://t.co/M4NbtOQL5x" +06/20/2018,Politicians,@KamalaHarris,States across America are already working to stop our country from repeating the same mistakes of the past. We need… https://t.co/DxpcMyi4XB +06/19/2018,Politicians,@KamalaHarris,"Black women continue to be underrepresented in elected office, despite having some of the highest rates of voter tu… https://t.co/n7o6rabJ7e" +06/19/2018,Politicians,@KamalaHarris,Many of you have asked how you can help the families being impacted by our government's human rights abuses along t… https://t.co/eKmEOBMFbz +06/19/2018,Politicians,@KamalaHarris,"Laverne Cox, the first openly trans woman of color to have a lead role on a mainstream TV show, has been a powerful… https://t.co/I8LeRIQTtU" +06/19/2018,Politicians,@KamalaHarris,"RT @KamalaHarris: I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has committe…" +06/19/2018,Politicians,@KamalaHarris,"Despite their best efforts to conceal from and confuse the American people about what’s going on, one thing is clea… https://t.co/XjCJJ4y3yo" +06/19/2018,Politicians,@KamalaHarris,"With the constant challenges we face today to our deepest values as a nation, it’s easy to feel overwhelmed. But no… https://t.co/sPqHy2Tb5o" +06/19/2018,Politicians,@KamalaHarris,There is no excuse for inflicting these abuses and trauma on children. The Administration must immediately reverse… https://t.co/hQjCEtyUsv +06/19/2018,Politicians,@KamalaHarris,"On #Juneteenth, we celebrate emancipation and remember the long struggle for freedom. The slaves in Galveston were… https://t.co/qOzyflpKag" +06/19/2018,Politicians,@KamalaHarris,Secretary Nielsen must resign. The human rights abuses being committed against children — many are just toddlers —… https://t.co/URclCoQClA +06/19/2018,Politicians,@KamalaHarris,"Parents are being deported without their children, many of whom are under the age of 4. Congress can’t let the scal… https://t.co/dSfclVKReR" +06/19/2018,Politicians,@KamalaHarris,Republican leaders should bring legislation to protect Special Counsel Robert Mueller to the Senate floor immediate… https://t.co/W4IexK2XbP +06/19/2018,Politicians,@KamalaHarris,"2,000 children have already been separated at the border. These detention facilities are filled with children suffe… https://t.co/j1txPRerzL" +06/18/2018,Politicians,@KamalaHarris,Finding out why the government was unable to accurately assess the damage or provide adequate resources to rebuild… https://t.co/l1yA1e9AiZ +06/18/2018,Politicians,@KamalaHarris,"An openly gay man, some regarded Bayard Rustin's sexuality as a liability to be associated with the high-profile Ma… https://t.co/02NC8zy7i8" +06/18/2018,Politicians,@KamalaHarris,“This is America. You never expect your loved one to be ripped away from you in front of your home.” - Natalie Garc… https://t.co/q31p96BrJH +06/18/2018,Politicians,@KamalaHarris,I’m standing in solidarity with the activists and families standing up to our government’s human rights abuses alon… https://t.co/xOSWwdqsND +06/18/2018,Politicians,@KamalaHarris,"I’m calling on Kirstjen Nielsen to resign as Secretary of Homeland Security. Under her watch, our government has co… https://t.co/kbYYKvLmFP" +06/18/2018,Politicians,@KamalaHarris,This is how our government is treating children at the border. There’s only one way to describe this: our governmen… https://t.co/lZh4grQSke +06/18/2018,Politicians,@KamalaHarris,"This must stop, before thousands more kids are separated from their parents at the border. These kids should not be… https://t.co/QIIERJe4Cp" +06/18/2018,Politicians,@KamalaHarris,"We must choose hope, over hate; action, over apathy. Every single day." +06/18/2018,Politicians,@KamalaHarris,We can’t forget about the additional suffering our government’s failures in Puerto Rico has caused after Hurricane… https://t.co/nMSFXwxrX2 +06/18/2018,Politicians,@KamalaHarris,"An economy that only works for those at the very top is an economy that is broken. I know by working together, we c… https://t.co/ZRlWVuO9Ru" +06/17/2018,Politicians,@KamalaHarris,"As we celebrate Father’s Day and continue to celebrate #Pride Month, let’s recognize that LGBTQ rights, including t… https://t.co/CM3fuaN6zO" +06/17/2018,Politicians,@KamalaHarris,"For decades, our country has opened our doors to the most vulnerable who are fleeing violence and oppression. We ar… https://t.co/t0XPMGrj1n" +06/17/2018,Politicians,@KamalaHarris,Make no mistake — this Administration is abdicating our country’s moral leadership. https://t.co/W4N85q0Vqo +06/17/2018,Politicians,@KamalaHarris,"To my husband and best friend, and to all the fathers and father-figures — Happy Father’s Day! https://t.co/drRQqZzyah" +06/17/2018,Politicians,@KamalaHarris,"As many of us spend the day celebrating our fathers and father-figures, we know there are potentially thousands of… https://t.co/L6at6m8Nq3" +06/17/2018,Politicians,@KamalaHarris,"After Hurricane Maria, our government failed Puerto Rico at every level, including misinforming grieving communitie… https://t.co/vSSLIUA6BY" +06/17/2018,Politicians,@KamalaHarris,"Because of the Administration’s policy of breaking up families at the border, these detention facilities are overfl… https://t.co/4b2wf0TfY8" +06/16/2018,Politicians,@KamalaHarris,"I am deeply troubled that despite recent developments in Robert Mueller’s investigation, the special counsel contin… https://t.co/HN7qvL1Aof" +06/16/2018,Politicians,@KamalaHarris,Let’s call this policy of indiscriminately separating children from their parents at the border exactly what it is:… https://t.co/isWnCo4ULG +06/16/2018,Politicians,@KamalaHarris,"Because of @LenaWaithe, diverse communities can see a both funny and deeply real portrayal of someone like them on… https://t.co/3CqyNsCCus" +06/16/2018,Politicians,@KamalaHarris,"Quantum computing is the next technological frontier that will change the world. We cannot afford to fall behind. +https://t.co/t1s2XLMh3H" +06/16/2018,Politicians,@KamalaHarris,It’s simple: this Administration is committing a human rights abuse along our southern border. Call your representa… https://t.co/wfH43vG9LV +06/16/2018,Politicians,@KamalaHarris,"Across our country, LGBTQ Americans and women of color are changing the equation for elected office to be about who… https://t.co/Ec0eVTTU1V" +06/16/2018,Politicians,@KamalaHarris,Using kids as leverage to get billions for a wasteful border wall is outrageous and immoral. This is simple: the Ad… https://t.co/Pv2XT7hgUE +06/16/2018,Politicians,@KamalaHarris,"Sexual harassment and assault are real in this country, from the factory floors to movie sets, and even in our cour… https://t.co/SqAJB2MVDP" +06/15/2018,Politicians,@KamalaHarris,Let’s call this policy of indiscriminately separating children from their parents at the border exactly what it is:… https://t.co/Qb5CLJ86yV +06/15/2018,Politicians,@KamalaHarris,Edie Windsor’s fight against DOMA before SCOTUS in 2013 helped pave the way for marriage equality nationwide just t… https://t.co/MPu2Vw9x4b +06/15/2018,Politicians,@KamalaHarris,"Right now, you have an opportunity to make a real difference in the lives of DACA recipients across the country by… https://t.co/bXRsNYtEmi" +06/15/2018,Politicians,@KamalaHarris,"It is true that the Administration ended DACA for new applicants — but +current DACA recipients can still apply for… https://t.co/KOLevUFLo2" +06/15/2018,Politicians,@KamalaHarris,"According to a shocking report, about 2,000 children have been separated from their families. That's an average of… https://t.co/K1rjIUP5BO" +06/15/2018,Politicians,@KamalaHarris,"We still don't know how many died in the aftermath of Hurricane Maria, but we do know the impact of our government'… https://t.co/96zAwL12Ly" +06/15/2018,Politicians,@KamalaHarris,"DACA was first announced six years ago today. We as a country gave these kids, Dreamers, a promise that we would no… https://t.co/OnmCqLSu5I" +06/15/2018,Politicians,@KamalaHarris,"Despite having some of the highest rates of voter turnout in the country, Black women continue to be underrepresent… https://t.co/ccPJyRjNCa" +06/15/2018,Politicians,@KamalaHarris,The Administration must stop breaking up families at the border now. Period. The GOP’s use of this immoral policy a… https://t.co/Q565Vxpw2x +06/15/2018,Politicians,@KamalaHarris,"It is unacceptable that tens of millions of Americans are still crippled by poverty. Women, young people, seniors,… https://t.co/YYutfUUQca" +06/15/2018,Politicians,@KamalaHarris,The government's failure to provide accurate information in the aftermath of Hurricane Maria has had devastating co… https://t.co/yNZpvE6uc3 +06/15/2018,Politicians,@KamalaHarris,.@JahanaHayesCT is the type of leader we need in Congress. She understands the issues facing the residents of Conne… https://t.co/nq3YtqWb3W +06/14/2018,Politicians,@KamalaHarris,Our country was founded on certain ideals: that we are all equal and should be treated as equals. Much like when my… https://t.co/fFvoxfbq0c +06/14/2018,Politicians,@KamalaHarris,Reports like this about the consequences of this Administration’s immigration policies are heartbreaking. We cannot… https://t.co/0CZBQk4tCr +06/14/2018,Politicians,@KamalaHarris,Young people across America are demonstrating the kind of courage and determination we need from leaders in Congres… https://t.co/660ioujXaj +06/14/2018,Politicians,@KamalaHarris,"The WH wants to pour billions of dollars into ICE’s detention facilities, despite reports of rampant abuse and negl… https://t.co/fJ6wjzXLMg" +06/14/2018,Politicians,@KamalaHarris,"Since October, more than 1,300 children have been taken from their parents at the border. These families are suffer… https://t.co/Ac1mC1pCdO" +06/14/2018,Politicians,@KamalaHarris,Congratulations to London Breed on her historic election victory in San Francisco! Your leadership will pave the wa… https://t.co/qate4nsDiD +06/14/2018,Politicians,@KamalaHarris,"Dreamers like Erika study in our colleges, serve in our military and work in Fortune 100 companies. They are contri… https://t.co/E3ve2SRcf8" +06/14/2018,Politicians,@KamalaHarris,This Administration’s continued attacks on women’s health clinics threaten access to critical services for millions… https://t.co/1H3KXhKK3U +06/13/2018,Politicians,@KamalaHarris,"When Ellen DeGeneres came out, her character followed suit, becoming the first lead in sitcom history to come out o… https://t.co/WchVaClxJw" +06/13/2018,Politicians,@KamalaHarris,We must act now to address the challenges we face in the development of this technology – our national security and… https://t.co/uIJcvLsPTq +06/13/2018,Politicians,@KamalaHarris,How many communities are going to be senselessly torn apart by gun violence before our leaders finally do something… https://t.co/zuarXmnByo +06/13/2018,Politicians,@KamalaHarris,The government failed to provide grieving families and those conducting disaster relief efforts with accurate infor… https://t.co/xEuESxfTb1 +06/13/2018,Politicians,@KamalaHarris,Let’s call this what it is — a human rights abuse being committed by the United States government. Congress cannot… https://t.co/7WPvpBV7wv +06/13/2018,Politicians,@KamalaHarris,Marijuana laws are not applied and enforced in the same way for all people. I’m happy to see some members of the la… https://t.co/zpAfLoBFO5 +06/12/2018,Politicians,@KamalaHarris,Our government’s failures in Puerto Rico are unacceptable. I’ve sponsored legislation to guarantee adequate resourc… https://t.co/zzZDfk36oe +06/12/2018,Politicians,@KamalaHarris,This is simple — this Administration is willing to let insurers deny you coverage if you have a pre-existing condit… https://t.co/4swVte9PJX +06/12/2018,Politicians,@KamalaHarris,I started Back on Track​ because I thought we could get ​​smart on crime and prevent recidivism. Great to see succe… https://t.co/KryPAFGIfH +06/12/2018,Politicians,@KamalaHarris,"51 years ago today, the Loving v. Virginia decision invalidated laws prohibiting interracial marriage. Mildred and… https://t.co/JeqFRTSLxX" +06/12/2018,Politicians,@KamalaHarris,We cannot let this continue. Congress must act to end this Administration’s inhumane policy of separating children… https://t.co/jVDFnY85jB +06/12/2018,Politicians,@KamalaHarris,Accurately counting every single American in the U.S. Census is critical to our nation’s future. No one should be l… https://t.co/cdU9ULEzPm +06/12/2018,Politicians,@KamalaHarris,"2 years ago today, 49 lives — mostly Latinx — were taken at #Pulse. It's the deadliest known incident of violence s… https://t.co/QHQeBZa8CC" +06/12/2018,Politicians,@KamalaHarris,"We’ve opened our doors to those fleeing violence and oppression for decades. It’s helped global stability, made our… https://t.co/Dd88YCguiu" +06/12/2018,Politicians,@KamalaHarris,"Each month, more than 50 American women are shot and killed by current or former intimate partners. As we demand ou… https://t.co/VzJhQUb5kZ" +06/12/2018,Politicians,@KamalaHarris,"For more than 100 days, Alan Doran has walked 2.2 miles to advocate on behalf of Dreamers and immigrants. We should… https://t.co/eWsUcPPXv0" +06/12/2018,Politicians,@KamalaHarris,Ripping kids from the arms of their parents is just wrong. I've introduced legislation to put an end to this policy… https://t.co/3UEf8vbXok +06/11/2018,Politicians,@KamalaHarris,Climate change is a reality we must confront. We cannot abandon our environment at this critical moment in time. https://t.co/ppA68UKMOg +06/11/2018,Politicians,@KamalaHarris,This is abhorrent. The Administration is turning its back on victims of domestic violence and gang violence and fur… https://t.co/yXYpZCUNAZ +06/11/2018,Politicians,@KamalaHarris,"Harvey Milk knew there was more that unites us than divides us, and he understood that representation matters. Figh… https://t.co/U5eOEESGUZ" +06/11/2018,Politicians,@KamalaHarris,We cannot allow our government’s failed response in Puerto Rico to ever happen again. I’ve introduced legislation t… https://t.co/qHf68AXWvw +06/11/2018,Politicians,@KamalaHarris,"Thanks to the Affordable Care Act, more than 100 million people are now protected from being denied coverage or cha… https://t.co/GrTwu5Z2Ny" +06/11/2018,Politicians,@KamalaHarris,This decision is deeply wrong. More than 2 million voters have been purged in Ohio since 2011. Instead of making it… https://t.co/lvsO9e8wrq +06/11/2018,Politicians,@KamalaHarris,"The FCC just ended #NetNeutrality, putting freedom of speech and innovation online at risk. Now we need Congress to… https://t.co/hg4ealA6do" +06/11/2018,Politicians,@KamalaHarris,Americans already know the GOP tax bill was a scam. Instead of exploding the deficit by billions of dollars to pay… https://t.co/U8M820CJQS +06/11/2018,Politicians,@KamalaHarris,Our country is deporting immigrants who pose no harm to the public. This is not who we are. https://t.co/mzLSUoRYbl +06/11/2018,Politicians,@KamalaHarris,It’s time to end the culture of fear and silence that surrounds workplace harassment. We need to do more than just… https://t.co/U5WcbYhpM1 +06/11/2018,Politicians,@KamalaHarris,"Even though women earn college degrees at a higher rate than men, more women, especially women of color, are stuck… https://t.co/7X5ORIGJ1b" +06/10/2018,Politicians,@KamalaHarris,Jeff Sessions should focus on issues like transnational criminal organizations and investigating and prosecuting hu… https://t.co/OB63M5tvMo +06/10/2018,Politicians,@KamalaHarris,I’ve asked Secretary Carson to explain why this Administration believes raising rents for low-income households wil… https://t.co/1ev0gJAIEd +06/10/2018,Politicians,@KamalaHarris,"A few days ago, I introduced legislation to end this Administration's cruel policy of breaking up families at the b… https://t.co/k9hUdNyAHn" +06/10/2018,Politicians,@KamalaHarris,I am so inspired by the hundreds of women of color leading our party in the 2018 elections. Their leadership will p… https://t.co/5RNy3cAjZz +06/09/2018,Politicians,@KamalaHarris,Quantum computing is the next technological frontier that will change the world and we cannot afford to fall behind… https://t.co/pFHg6Ck3v9 +06/09/2018,Politicians,@KamalaHarris,We must fight so our courts are not stacked with individuals who have spent their careers to undermining the equali… https://t.co/SB12WL8QRc +06/09/2018,Politicians,@KamalaHarris,"In just a few days, #NetNeutrality will be ended by the FCC. The Senate has already voted to save the internet. Now… https://t.co/oCSO1LQUcA" +06/09/2018,Politicians,@KamalaHarris,Legalizing marijuana at the federal level is about stopping our country from repeating the same mistakes of the pas… https://t.co/CX066jyM49 +06/09/2018,Politicians,@KamalaHarris,This Administration’s deportation force is forcing immigrants back into the shadows. The consequences are devastati… https://t.co/XjhzSdnEeB +06/09/2018,Politicians,@KamalaHarris,Proud to stand in solidarity with those marching in Sacramento for the #BlackWomensMarch. They’re shining a light o… https://t.co/f2D6mChZZg +06/09/2018,Politicians,@KamalaHarris,RT @tammybaldwin: Thrilled @KamalaHarris is joining me in Wisconsin today. Our first event talking to young folks in Madison and having som… +06/09/2018,Politicians,@KamalaHarris,"Today in Wisconsin, I'll be campaigning for my friend and colleague @tammybaldwin. Tammy has stood with us when we… https://t.co/1zy9vwhcMC" +06/09/2018,Politicians,@KamalaHarris,RT @tammybaldwin: “If she weren’t such a force speaking for working families... [special interests] wouldn’t be putting the millions of dol… +06/09/2018,Politicians,@KamalaHarris,"Congrats, @warriors! #DubNation, it's been an incredible season. #NBAChamps https://t.co/emVM1yiHfN" +06/09/2018,Politicians,@KamalaHarris,Our government continues to fail our fellow Americans in Puerto Rico. We need to dedicate the resources necessary f… https://t.co/dGbu80NU3K +06/08/2018,Politicians,@KamalaHarris,It’s time to end the culture of fear and silence that surrounds workplace harassment. We need to support victims an… https://t.co/mzOkmorSIp +06/08/2018,Politicians,@KamalaHarris,We can’t let the Administration keep breaking up immigrant families like José’s. We need to stand with them and spe… https://t.co/3o0MqOVwxO +06/08/2018,Politicians,@KamalaHarris,The Affordable Care Act ensures millions of Americans with pre-existing conditions have access to affordable care.… https://t.co/AhEn1oQY0L +06/08/2018,Politicians,@KamalaHarris,"If you or a loved one needs it, help is available. Call 1-800-273-8255 for free and confidential support. https://t.co/UZMpF3vkLM" +06/08/2018,Politicians,@KamalaHarris,"Gilbert Baker, the designer of the rainbow flag, created a symbol of pride for the LGBTQ movement. He refused to tr… https://t.co/XjcWHcYDTu" +06/08/2018,Politicians,@KamalaHarris,The Administration wants to increase rent six times greater than the growth in average hourly earnings for low-inco… https://t.co/vyPe0u7XFv +06/27/2018,Politicians,@AKWeissman,RT @BBQsnob: Less than 12 hours away folks. #Smokelandia on the @CookingChannel tonight at 8:30ET/7:30CT. Catch the pilot and maybe we’ll m… +06/24/2018,Politicians,@AKWeissman,@sanantonioheron great news! Glad you are bringing another perspective to the 210. ¡Buena suerte! +06/22/2018,Politicians,@AKWeissman,#happyfathersday #costarica #weissmantravels #flyfishing101 #rankbegginer #ticotrucha #puravida #210 #2018… https://t.co/kgQxIDLgp8 +06/22/2018,Politicians,@AKWeissman,#secondhome #wishyouwerehere #puravida #ticos #monkeys #ocean #vistas #family #hiking #anteatersonthetrail… https://t.co/8n4FIxfvJi +06/22/2018,Politicians,@AKWeissman,#myhomeforawhile #summerincostarica #ticos #puravida #gallopinto #lifeisshort #wishyouwerehere #hike/fish/run/swim/… https://t.co/eI9QiJOtZa +06/22/2018,Politicians,@AKWeissman,#costarica #puravida #mahimahi #weissmantravels #worldcup #ticos #summerforuswinterforthem #freshfish #chefsabroad… https://t.co/FrDC0q8FhO +06/22/2018,Politicians,@AKWeissman,#wishyouwerehere #puravida #costarica #havethisbeachtoourselves #summer/wintercostarica2018 ##sanantonio #210… https://t.co/PjChD8sYqn +06/13/2018,Politicians,@AKWeissman,Hope to see you there! https://t.co/C6kB9CEWLQ +06/08/2018,Politicians,@AKWeissman,"We live in a world where the unnatural has become natural, the shocking commonplace and tragedy occurring with fero… https://t.co/aNAJ2vF2iI" +06/08/2018,Politicians,@AKWeissman,Starting them off early. #whenyourdaughterlikescoffeeasmuchasyoudo #stuntsgrowth https://t.co/SUkcHOL316 +06/07/2018,Politicians,@AKWeissman,@dochoatittel Thanks for stopping in. I wasn’t there today as I am in Houston. Back 2moro working out the kinks. +06/07/2018,Politicians,@AKWeissman,RT @dochoatittel: Great breakfast at Moshe’s. We will be back. @AKWeissman https://t.co/YW9uGGQsfV +06/07/2018,Politicians,@AKWeissman,RT @mySA_Food: Chef Andrew Weissman brings Israeli shakshuka to breakfast in San Antonio — and it feels so right https://t.co/kD5jCjhwpm +06/06/2018,Politicians,@AKWeissman,Anything is possible when you start your day with shakshuka for breakfast at Moshes golden falafel. 7am-10:30am mon-sat🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙🥙 +06/02/2018,Politicians,@AKWeissman,RT @mySA_Food: Starting my day the Israeli with red and green shakshuka from Moshe’s Golden Falafel. Breakfast now served 7-10:30 a.m. —@pj… +05/29/2018,Politicians,@AKWeissman,Stop what your doing and head over to Moshes golden falafel for breakfast!!!🥙🥙🥙🥙 +05/26/2018,Politicians,@AKWeissman,@chefjasondady You always have the best ideas! +05/26/2018,Politicians,@AKWeissman,RT @chefjasondady: You pay for it. We will come. 🤑🤑. Emerite @AKWeissman l??? https://t.co/9GmKBxbdDR +05/26/2018,Politicians,@AKWeissman,RT @jgillm: Maybe @City_of_Helotes could recruit a restaurant or chef that doesn’t specialize in fast food chicken. @chefjasondady @AKWeiss… +05/25/2018,Politicians,@AKWeissman,"@SophieHChrist @TheMontereySA Pssst...he ain’t got nothing else to do. +#heisanMVPtho" +05/25/2018,Politicians,@AKWeissman,RT @LocalD: My favorite spot. @AKWeissman https://t.co/396zpm5A4e +05/25/2018,Politicians,@AKWeissman,@TheMontereySA @EasyTigerATX @TheMontereySA Do you have a time traveling machine? I saw you this morning in the far… https://t.co/urVXIUxxiX +05/24/2018,Politicians,@AKWeissman,@fedmanwalking @mySA_Food come check us out at #moshesgoldenfalafel but only if you like to eat interesting food an… https://t.co/WjXSdtxVv8 +05/24/2018,Politicians,@AKWeissman,@MileHigh_Texan Thank you for being one of the first!!!! #happybirthday!!!! +05/24/2018,Politicians,@AKWeissman,RT @MileHigh_Texan: Thank you @AKWeissman for starting my birthday of right! #SATX #Foodie #birthdaygirl https://t.co/tvZsjnaAKV +05/22/2018,Politicians,@AKWeissman,RT @etij: Looking forward to trying it! https://t.co/Ps1KB4LS14 +05/22/2018,Politicians,@AKWeissman,RT @dochoatittel: @AKWeissman Can’t wait! +05/22/2018,Politicians,@AKWeissman,First look at moshes golden falafel breakfast menu. Starts Wednesday. Take a chance and experience crazy good flavo… https://t.co/cUwCQA25wr +05/21/2018,Politicians,@AKWeissman,@KimWarner4 Thank you. Please come see us in the meantime at moshes—-stay tuned for new concepts in early spring 2019! +05/18/2018,Politicians,@AKWeissman,RT @MarlaCimini: Check it out! Where chef Andrew Weissman eats in San Antonio @visitsanantonio @lacanteraresort @dfisk @AKweissman https://… +05/15/2018,Politicians,@AKWeissman,Big sale of restaurant equipment starts tomorrow. Drop by ilso anytime between 9-3 for restaurant items like chairs… https://t.co/b4nfmEqbuS +05/15/2018,Politicians,@AKWeissman,"RT @pfrench99: Our biggest fans this week: @AKWeissman, @RayvzBlanca1, @jacobplans. Thank you! via https://t.co/9nOEZwuhzv https://t.co/dot…" +05/11/2018,Politicians,@AKWeissman,"RT @louisfer67z: Kind of odd that @Rivardreport article leads with Il Sogno closure, but you've got to wade through the comments section to…" +05/11/2018,Politicians,@AKWeissman,@Rivardreport feel free to contact me regarding the article written about the state of fine dining in San Antonio.… https://t.co/ua8X99yhP5 +05/11/2018,Politicians,@AKWeissman,RT @MikeBoard1200: @arrrkane @AKWeissman @pfrench99 I hope @AKWeissman pivots from Italian noodles to Vietnamese noodles. It’s good pho th… +05/11/2018,Politicians,@AKWeissman,RT @arrrkane: @pfrench99 @AKWeissman there cannoli be so many of these puns. +05/11/2018,Politicians,@AKWeissman,RT @pfrench99: Il Sogno’s legacy will definitely become a pizza San Antonio’s culinary history. #SA300 #culinaryculture #lastoneipromise ht… +05/10/2018,Politicians,@AKWeissman,RT @TheMontereySA: @richmcneal85 @AKWeissman @pfrench99 @HistoricPearl ARE YOU PEOPLE HAPPY WITH YOURSELVES??? +05/10/2018,Politicians,@AKWeissman,RT @WD3_79: @pfrench99 @AKWeissman @HistoricPearl @TheMontereySA Damn; I love that place! +05/10/2018,Politicians,@AKWeissman,@pfrench99 @HistoricPearl @TheMontereySA Hoping to get pasta the bad puns. Then everything will be just pici. +05/10/2018,Politicians,@AKWeissman,RT @TheMontereySA: @pfrench99 @AKWeissman @HistoricPearl This is an atrocious pun and I’m seriously considering an unfollow. +05/10/2018,Politicians,@AKWeissman,RT @pfrench99: @AKWeissman @crlazaro @BlueRockCG @HistoricPearl Sad trombone +05/09/2018,Politicians,@AKWeissman,@crlazaro @BlueRockCG @pfrench99 @HistoricPearl Closed. +05/09/2018,Politicians,@AKWeissman,@BlueRockCG @pfrench99 @HistoricPearl Already closed. Sunday was our last day in service. +05/09/2018,Politicians,@AKWeissman,RT @pfrench99: Il Sogno dreams and gnocchi wishes... https://t.co/uh3KwZXDu3 +05/09/2018,Politicians,@AKWeissman,"RT @dfiske: When in San Antonio, do as the San Antonians. #EATUP https://t.co/AvaUjGEQEa @USATODAY @10Best @MarlaCimini @LaCanteraResort @E…" +05/09/2018,Politicians,@AKWeissman,@TheMontereySA Y’all got me wrong. Friday’s are made for #chadboobiesandgout +05/09/2018,Politicians,@AKWeissman,RT @globaljmg: @TheMontereySA @AKWeissman i love all this love between you both TMTYSA & AKW... but loved you too when you both were opened… +05/08/2018,Politicians,@AKWeissman,RT @Eat_Sip_Trip: @ptconroy @AKWeissman We figured we’d ask an expert 😉 +05/08/2018,Politicians,@AKWeissman,RT @MarlaCimini: I adore the food in San Antonio! This was such a fun story to write! Thanks @AKWeissman for these great tips! @LaCanteraRe… +05/08/2018,Politicians,@AKWeissman,"RT @ptconroy: @AKWeissman @Eat_Sip_Trip First one of these ""where to eat in SA"" lists with which I've wholeheartedly agreed." +05/08/2018,Politicians,@AKWeissman,RT @TheMontereySA: @MikeBoard1200 @AKWeissman @lgomez123 I know the perfect venue for that show. +05/08/2018,Politicians,@AKWeissman,@pinchboilhouse No worries-next time I’ll wear a smock! See y’all soon and I’m glad to be able to help get the word out. +05/08/2018,Politicians,@AKWeissman,"RT @pinchboilhouse: Gotta agree, Moshe’s is fu*kin good! Appreciate the love & mention, and sorry about the messy clothes! 😂#garlicbutterja…" +05/07/2018,Politicians,@AKWeissman,RT @jeff_goldblatt: @TheMontereySA @AKWeissman Amen! +05/07/2018,Politicians,@AKWeissman,@TheMontereySA @TheMontereySA all joking aside Chad—that’s about the nicest thing you could have said.… https://t.co/cYyhUBCAly +05/07/2018,Politicians,@AKWeissman,"RT @TheMontereySA: I struggled to think of a smart way to memorialize Il Sogno. + +I just keep thinking about what SA restaurants were like b…" +05/07/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Sorry to see this. Happy trails! +05/07/2018,Politicians,@AKWeissman,"RT @RichardMarini: Farewell to il Sogno Osteria. + +When Chef is serenaded by mariachi on the closing evening of a wonderful 9-year run. + +@A…" +05/07/2018,Politicians,@AKWeissman,RT @RichardMarini: Feel like it’s closing night of a Tony Award-winning play. @AKWeissman https://t.co/mVtG8XRY7V +05/06/2018,Politicians,@AKWeissman,#setupforaspecialguest #signature #inbetweenshifts@ilso #buyout #cheese #meat… https://t.co/rB1LbZkury +05/06/2018,Politicians,@AKWeissman,#ilsognosanantonio #lastnight #pearlbrewery #thanksforthememories… https://t.co/q0UnWjZdS4 +05/06/2018,Politicians,@AKWeissman,RT @C_BOYCE: @AKWeissman So disappointed not to eat one last great meal at il Sogno. I live in the Pacific NW now and only get to SA a coup… +05/06/2018,Politicians,@AKWeissman,RT @joealderete3: Just wanted to give a quick shoutout to @AKWeissman and everybody who worked at Ill Sogno. @KarinaCAlderete and I enjoyed… +05/06/2018,Politicians,@AKWeissman,@RAConomics @SAHispanicCC @IlSognoSA @globaljmg #culinaryrabbi #hebrewhammer #hispanicchamber for the win!!! +05/06/2018,Politicians,@AKWeissman,RT @notthefakeSTU: @AKWeissman Had many great meals there. Thank you. +05/06/2018,Politicians,@AKWeissman,@barronbichon Thank you. And thank you for the gift! Don’t ever get a kitchen used to you bringing them beer——now i… https://t.co/N0ZNaB0NCr +05/06/2018,Politicians,@AKWeissman,RT @barronbichon: @AKWeissman Thanks so much for fitting us in tonight. Dinner was fantastic. We have a lot of memories at IlSo. Thanks for… +05/05/2018,Politicians,@AKWeissman,"RT @SACharterMoms: ""Where chef Andrew Weissman eats in San Antonio"" https://t.co/66vmzt0pdN via @eat_sip_trip @akweissman @mariacimini" +05/05/2018,Politicians,@AKWeissman,@barronbichon I have you at 6 for 2 peeps. See you then. +05/05/2018,Politicians,@AKWeissman,@etij @saflavor @SAcurrent now it is time to get your fix of what will surely be a first in SA the Israeli breakfas… https://t.co/o3UsuZma2m +05/05/2018,Politicians,@AKWeissman,RT @etij: One last brunch at Il Sogno. Thank you @akweissman! #sanantonio… https://t.co/fYK4p3MPCh +05/05/2018,Politicians,@AKWeissman,RT @mrs_liserio: Thank you @AKWeissman for the amazing food! We will miss Ill Songo! https://t.co/TUfpuVh0Mq +05/05/2018,Politicians,@AKWeissman,Where chef Andrew Weissman eats in San Antonio https://t.co/FWSbE24P0A via @eat_sip_trip +05/05/2018,Politicians,@AKWeissman,@barronbichon If you would like I can get you in at 6 for two. I know it’s not your ideal time but it’s the only wa… https://t.co/Lje2ptih01 +05/04/2018,Politicians,@AKWeissman,RT @dochoatittel: Having a drink @blueboxbar before we have our final dinner at Il Sogno @AKWeissman https://t.co/Vvwa9iROtU +05/04/2018,Politicians,@AKWeissman,RT @livinsassy: @MrDarrylByrd @AKWeissman We are going to miss it so much! +05/04/2018,Politicians,@AKWeissman,@MrDarrylByrd I aspire to be more like you DB. #missseeingyou #staytuned +05/04/2018,Politicians,@AKWeissman,RT @MrDarrylByrd: My #lastmeal at the great Il Sogno restaurant. I remember signing the first lease almost a decade ago and of how happy I… +05/04/2018,Politicians,@AKWeissman,"RT @themollycox: Yesterday, after multiple breakfasts where we solved (& maybe started) a few of the world’s problems, @magalyc & I had our…" +05/04/2018,Politicians,@AKWeissman,@barronbichon I’m truly sorry—-I got my wires crossed—for some crazy reason(not worth mentioning) I screwed up. I w… https://t.co/09V2wgjwwo +05/04/2018,Politicians,@AKWeissman,@barronbichon You don’t have a reservation yet? +05/03/2018,Politicians,@AKWeissman,@barronbichon Yes! I had the tweet loaded 2days ago to let u know but never hit reply. +05/02/2018,Politicians,@AKWeissman,@CBSLAElsa Thank u @CBSLAsa hope you r well—-all y’all need to come back home! +05/02/2018,Politicians,@AKWeissman,"RT @CBSLAElsa: I would like to second this, @AKWeissman!!! One of my favorite places of all time!! 😢 Best to you and your family! https://t…" +05/02/2018,Politicians,@AKWeissman,@JaimeVaughn You betcha And I’m treating to a pastrami Rueben dog at pinks!! +05/02/2018,Politicians,@AKWeissman,RT @JaimeVaughn: @AKWeissman Our very most favorite restaurant in San Antonio and one of our favs all around. Thanks for the fond memories.… +05/02/2018,Politicians,@AKWeissman,"RT @SAcurrent: As one of the first restaurants in the now vital area, Il Sogno garnered plenty of praise from local and national publicatio…" +05/02/2018,Politicians,@AKWeissman,RT @JessElizarraras: Packed house at Il Sogno this am. Power breakfast with some cool kids. https://t.co/N0x7nA6pMP +05/02/2018,Politicians,@AKWeissman,@TheMontereySA If I wasn’t so busy closing down establishments I’d come over and show you how it’s done @TheMontereySA #childoftheeighties +05/01/2018,Politicians,@AKWeissman,RT @mySA_Food: Restaurant shakeup at The Pearl leaves three spaces in flux https://t.co/G0Z17hFS33 +05/01/2018,Politicians,@AKWeissman,@neffhudson Me too. On both accounts. I hope to one day do something like sandbar again but more user friendly. +04/30/2018,Politicians,@AKWeissman,RT @TheMontereySA: The premiere of @tiachuckfilm is happening this Saturday. Chuck was a wonderful person & artist (he did the Monty's men… +04/30/2018,Politicians,@AKWeissman,@barronbichon I def have not forgotten you—-just waiting to see if staff shows up Tuesday b4 I take any reservations. +04/30/2018,Politicians,@AKWeissman,@jaybirdsatx Thanks jay. Hope to see you soon old friend. +04/29/2018,Politicians,@AKWeissman,@curtisgsmith The only diff is that I wasn’t there to mentor you—-for that I’m sorry. #lefttothewolves +04/29/2018,Politicians,@AKWeissman,"RT @curtisgsmith: How fitting that a story like this pops up today. About a year a go, I did this very same thing and started a crazy job i…" +04/29/2018,Politicians,@AKWeissman,@ChilledPickett Thank you for the kind words and the encouragement!!!! +04/28/2018,Politicians,@AKWeissman,Please visit my insta page for more insight as to why I am closing ilso @weissmansndrew Thanks again! AW +04/28/2018,Politicians,@AKWeissman,@paynepga I am currently working out a plan to accept gift cards at Signature that were issued at ilso. It is a lit… https://t.co/Zsu9RHIHsz +04/28/2018,Politicians,@AKWeissman,@throw63 Love that GIF!!!😜 +04/28/2018,Politicians,@AKWeissman,@SiobhanWalshRD Hope you are well! It’s been too long. +04/28/2018,Politicians,@AKWeissman,"RT @allenaction22: @AKWeissman Hate to see it go, we love that place!" +04/28/2018,Politicians,@AKWeissman,@layscrispytaco Thank you so much for the kind words. +04/28/2018,Politicians,@AKWeissman,@QueenKutie55 Your awesome! No I am not planning on moving locations but I promise more things to come!!! Please co… https://t.co/hSonnP1SPp +04/28/2018,Politicians,@AKWeissman,"Oops apparently @TheMontereySA is live tweeting from the drunk tank down at la villita square. +#success #fiesta" +04/28/2018,Politicians,@AKWeissman,@50Run @TheMontereySA @HistoricPearl Miss seeing you and your family! +04/28/2018,Politicians,@AKWeissman,@50Run @TheMontereySA @HistoricPearl 9 years 1 month but who’s counting! +04/28/2018,Politicians,@AKWeissman,@TheMontereySA @HistoricPearl @TheMontereySA apparently you have failed miserably at fiesta if you are still able… https://t.co/wcpc0tL8Tu +04/28/2018,Politicians,@AKWeissman,RT @TheMontereySA: We approached @HistoricPearl with the idea to throw Il So out on the street and replace it with a build-your-own poke/qu… +04/28/2018,Politicians,@AKWeissman,@barronbichon I will let you know 2moro when I stop in at ilso. Thx. +04/28/2018,Politicians,@AKWeissman,@Resendezgurl @HistoricPearl Excited about future concepts/plans as well as current ones(signature and moshes in pa… https://t.co/fhyeTnvndK +04/28/2018,Politicians,@AKWeissman,@barronbichon Let me know when you need the reservation and I will take care of it. +04/28/2018,Politicians,@AKWeissman,@barronbichon May 6th. +04/28/2018,Politicians,@AKWeissman,.RIP ILSO. +04/27/2018,Politicians,@AKWeissman,@RAConomics Yes! +04/27/2018,Politicians,@AKWeissman,@RAConomics Breakfast next week? +04/25/2018,Politicians,@AKWeissman,@JaimeVaughn Love it there! +04/24/2018,Politicians,@AKWeissman,@louisfer67z @TheMontereySA @SomeGirlinCT Tell your daughter to make good on that note(it will cost about 2500$)and… https://t.co/Ynx4rn6PPy +04/23/2018,Politicians,@AKWeissman,@louisfer67z @TheMontereySA Agreed. But you are paying for the whiskey. It is (relatively) reasonably priced at 18$… https://t.co/f7qQqP0fbA +04/23/2018,Politicians,@AKWeissman,"@TheMontereySA stylized sammies and egg rolls and now this? +#asteptoofar https://t.co/FClP9gftPu" +04/23/2018,Politicians,@AKWeissman,@jonprado that smoked old fashioned is made with hibiki. Just sayin... +04/23/2018,Politicians,@AKWeissman,@TheMontereySA Reminiscent of cutting an egg roll on the bias and standing them up to justify paying 14$… https://t.co/Ro3bJidPaj +04/22/2018,Politicians,@AKWeissman,@themollycox 🙏🏼👨‍🍳✊️ +04/22/2018,Politicians,@AKWeissman,@themollycox Damn you @themollycox you know your people are under strict orders to let me know in advance of your a… https://t.co/dJr7XTtEYp +04/18/2018,Politicians,@AKWeissman,"@TheMontereySA As good a place holder as I can think of. They are just mad cuz u didn’t eat the beak. +#chadtravels #eatthebeakjanke" +04/17/2018,Politicians,@AKWeissman,@TheMontereySA The andouille looks like a cross section of your finger. +04/15/2018,Politicians,@AKWeissman,RT @NBAcoaching: @AKWeissman Be there soon Andrew! Can’t wait! @Cassandra_TV +04/15/2018,Politicians,@AKWeissman,@WhoIsScottyJ @Bjackso87 Let me know if u decide to go—-would love to see you out there. #reservationsramust +04/15/2018,Politicians,@AKWeissman,"RT @WhoIsScottyJ: @AKWeissman Was just talking to @Bjackso87 about getting out to Signature, hope to be there soon!" +04/15/2018,Politicians,@AKWeissman,Come and see what’s happening at Signature it won’t disappoint! Our new menu is about to drop!!!@lacanteraresortand… https://t.co/NDcXRDRfCl +04/14/2018,Politicians,@AKWeissman,@TheMontereySA #gavage #chadtravels +04/14/2018,Politicians,@AKWeissman,"RT @TheMontereySA: @AKWeissman Thus far, they’ve been equal parts terrified and amused. + +“Un autre andouillete, monsieur?” + +“You bet your…" +04/14/2018,Politicians,@AKWeissman,"RT @pinchboilhouse: @AKWeissman 😂❤️! #juicycouture +Appreciate the kind words, brotha!" +04/14/2018,Politicians,@AKWeissman,"@TheMontereySA just woke up in cold sweat remembering that my buddy Chad is in France. G-d save France. +Oh n I fee… https://t.co/dFJPbQI83j" +04/14/2018,Politicians,@AKWeissman,@pinchboilhouse y’all do a great job. My family and I really enjoyed our experience. You guys should provide a disc… https://t.co/XDllQ7hk4i +04/12/2018,Politicians,@AKWeissman,This happened last night when I put the kids and their mom to bed.#shhhhhhhhh #Zzzzzzzzzz https://t.co/ZgVsonE9mL +04/10/2018,Politicians,@AKWeissman,@N7Zebracakes @pricetagsa Your kind words started my Tuesday off the right way! As a side note I will be doing smal… https://t.co/Q0QRjgII90 +04/10/2018,Politicians,@AKWeissman,"RT @N7Zebracakes: @pricetagsa @AKWeissman I never had the good fortune to go to either. As I hear it, losing Le Rêve was a loss for the ent…" +04/10/2018,Politicians,@AKWeissman,RT @pricetagsa: @N7Zebracakes @AKWeissman If only! #foodies The loss of Le Reve and years ago Chez-Ardez was a huge loss for the city of S.… +04/10/2018,Politicians,@AKWeissman,"RT @N7Zebracakes: @AKWeissman my wife brings up Le Rêve on a weekly basis, lamenting it's demise. I know there was a single night event las…" +04/04/2018,Politicians,@AKWeissman,@TheMontereySA #merkins +04/04/2018,Politicians,@AKWeissman,RT @TheMontereySA: Yo @AKWeissman you know you can BUY dried pasta it’s not like you gotta make your own https://t.co/Z9gj1WDJfd +04/04/2018,Politicians,@AKWeissman,@davetapia @BCEapenMD Thanks Dave for the recommendation !!! #localshelpinglocals +04/04/2018,Politicians,@AKWeissman,RT @davetapia: @BCEapenMD @AKWeissman Glad you enjoyed it! The Signature never disappoints. #firstclassfood #firstclassservice +04/04/2018,Politicians,@AKWeissman,"RT @BCEapenMD: Had dinner at signature restaurant for my wife’s birthday. The food, service and decor were phenomenal. Overall a magnificen…" +04/03/2018,Politicians,@AKWeissman,@B_Mains_Cincy @Grace_Yek @WCPO Good for you Ned. Best of luck! +04/03/2018,Politicians,@AKWeissman,RT @B_Mains_Cincy: Seven Hills grad Ned Elliott is coming home to open a restaurant in Over-the-Rhine. Story by @Grace_Yek @WCPO. https://t… +04/02/2018,Politicians,@AKWeissman,The luxury is looking for cooks 12+tips+OT a good attitude is all you need! Cashiers as well 11+tips+OT #hollarback +04/01/2018,Politicians,@AKWeissman,@postcardsfromsa Crowds at luxury currently rival numbers at the Loyola/mich game! Thanks for the shoutout! +04/01/2018,Politicians,@AKWeissman,RT @postcardsfromsa: Final Four crowds pushing you out of downtown? Walk upriver for a lalaland salad and find a riverside swing seat at Th… +03/30/2018,Politicians,@AKWeissman,@chrissandoval @claudmac Great to see y’all! What a tremendous event! Let’s get together soon +03/26/2018,Politicians,@AKWeissman,@united worst customer service out of SFO. Ever. Never again. +03/26/2018,Politicians,@AKWeissman,RT @davetapia: @dfiske @AKWeissman @SABizJournal Congrats Chef and staff on the continued success! +03/26/2018,Politicians,@AKWeissman,@pricetagsa @dfiske @SABizJournal Thank you so much! +03/26/2018,Politicians,@AKWeissman,RT @pricetagsa: @dfiske @AKWeissman @SABizJournal Love this place. It is one of my favorite places to celebrate! +03/26/2018,Politicians,@AKWeissman,"RT @dfiske: La Cantera restaurant, Signature named to Southern Living's top 10 list https://t.co/7LIVwfiEb7 via @SABizJournal @AKWeissman" +03/25/2018,Politicians,@AKWeissman,@GGenebarris We will be back open on Tuesday -thru sat closed for Easter Sunday and Monday. +03/25/2018,Politicians,@AKWeissman,@GGenebarris Thx for your inquiry. It’s the one concept that I have that requires my wife and I to b there every da… https://t.co/1WTkp8DVDI +03/24/2018,Politicians,@AKWeissman,Let the judging begin! https://t.co/XKt4qza9dn +03/23/2018,Politicians,@AKWeissman,"RT @RajivRajani1: @Sean_Callahan @Andy_Staples Truth. @IlSognoSA @AKWeissman @CuredatPearl @HistoricPearl @TheHotelEmma + +On river walk but…" +03/21/2018,Politicians,@AKWeissman,@chocolatbises Thank you. Hope u r well! +03/21/2018,Politicians,@AKWeissman,RT @chocolatbises: @AKWeissman Congratulations! +03/21/2018,Politicians,@AKWeissman,@BBQsnob can you follow me for a sec so I can DM you? +03/21/2018,Politicians,@AKWeissman,@WGHarris77 Thanks! Looking forward to having coffee or the like sometime in the near future! +03/21/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Congratulations! +03/21/2018,Politicians,@AKWeissman,RT @jonprado: @AKWeissman Well deserved. Congratulations! +03/21/2018,Politicians,@AKWeissman,RT @Brahma71: Congrats to the whole gang! https://t.co/kgWgi7DqWe +03/21/2018,Politicians,@AKWeissman,RT @RajivRajani1: @AKWeissman Unbelievable food. Tied with @IlSognoSA for best in town. +03/21/2018,Politicians,@AKWeissman,@neffhudson I appreciate that and thank you for your kind words-but seriously take the offer! +03/21/2018,Politicians,@AKWeissman,@neffhudson Sorry about that. Come by and show this to my wife for a free falafel sandwich. +03/21/2018,Politicians,@AKWeissman,*named best restaurant in the April addition of southern living. +03/21/2018,Politicians,@AKWeissman,This is just a part of the Signature crew that just got named best restaurant in Texas and second best in the south… https://t.co/XPZKZkPzbK +02/23/2018,Politicians,@AKWeissman,Come see us over at moshes so we can introduce you to extremely flavorful healthy eating!!!! +02/21/2018,Politicians,@AKWeissman,"RT @globaljmg: @AKWeissman @RAConomics @TXsecofstate @SAHispanicCC @SanAntonioEDF @CoSAEDD @Trevino_D1 @GreenblumRobbie we def missed you,…" +02/21/2018,Politicians,@AKWeissman,@RAConomics @TXsecofstate @SAHispanicCC @SanAntonioEDF @CoSAEDD @Trevino_D1 @globaljmg @GreenblumRobbie Damn I’m in the dark about erything! +02/21/2018,Politicians,@AKWeissman,RT @RAConomics: Trade trip to Israel October 2018@Ron_Nirenberg opened more economic hope for @TXsecofstate @SAHispanicCC @SanAntonioEDF @C… +02/19/2018,Politicians,@AKWeissman,@TheMontereySA The uptick in corn dog fellatio can be directly attributed to a “general feeling of wellness in the… https://t.co/TonmlZ8WjI +02/19/2018,Politicians,@AKWeissman,@TheMontereySA @MikeBoard1200 Agreed. #corndogging +02/19/2018,Politicians,@AKWeissman,@TheMontereySA agreed. https://t.co/KDTlRaCTxa +02/19/2018,Politicians,@AKWeissman,@TheMontereySA The good lord provides. +02/16/2018,Politicians,@AKWeissman,@StefanBowers And a stained jacket. Can you do us all a favor and teach them to say “behind” when passing? Also imp… https://t.co/KnVF5Gcu6U +02/15/2018,Politicians,@AKWeissman,RT @pastorkirkMD: That makes me laugh @AKWeissman I guess this is an appropriate time to confess my bowl of Cap’n Crunch https://t.co/Wyi8I… +02/15/2018,Politicians,@AKWeissman,@richmcneal85 Correction “orange drank” +02/15/2018,Politicians,@AKWeissman,@TheMontereySA Does not compute. *similiar aberration would be @TheMontereySA doing calisthenics. #shocking +02/15/2018,Politicians,@AKWeissman,@TheMontereySA My big fat fabulous life. +02/15/2018,Politicians,@AKWeissman,@JMCoyle The day is young my friend. +02/15/2018,Politicians,@AKWeissman,RT @JMCoyle: @AKWeissman No meat in there! Awesome +02/15/2018,Politicians,@AKWeissman,My diet is not only varied but kinda fu$&@d up. It’s only 11 and I have already consumed beets w/tahini a hothouse… https://t.co/6qxOZQJ8T5 +02/15/2018,Politicians,@AKWeissman,RT @WGHarris77: @AKWeissman Delizioso! +02/15/2018,Politicians,@AKWeissman,@chefjasondady @jwdanklefs @BIN555 Those are truly sick! #congrats!!!! +02/15/2018,Politicians,@AKWeissman,This is the salad course I created for the Valentine’s Day prixe fixe at Signature. Thanks to all my awesome staff… https://t.co/0Doh15UWLp +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @AKWeissman Outstanding +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @AKWeissman Awesome one of my favorite places. +02/13/2018,Politicians,@AKWeissman,RT @KimWarner4: @foodhussy @AKWeissman @IlSognoSA Looks amazing +02/12/2018,Politicians,@AKWeissman,@foodhussy @IlSognoSA Please come see us out at signature😜 +02/12/2018,Politicians,@AKWeissman,RT @foodhussy: @AKWeissman Everybody was fantastic- Chef Chris and all the staff were a pleasure - especially dessert/salad guy. I was at t… +02/12/2018,Politicians,@AKWeissman,RT @foodhussy: Just arrived and the smells are amazing!!!!! I can’t wait for dinner! @IlSognoSA https://t.co/tDiIkgjdLh +02/10/2018,Politicians,@AKWeissman,Find out what you’ve been missing if you have not discovered Signature yet! @fedmanwalking https://t.co/maZqIOHEJh +07/02/2018,Politicians,@lpolgreen,"RT @saletan: Sorry, but we've had to move this. Ocasio-Cortez has a regatta that day. https://t.co/rDaVeM3kk7" +07/02/2018,Politicians,@lpolgreen,RT @ryangrim: I promise we weren't planning on doing another @Ocasio2018 take but then we got some fascinating election-return data so had… +07/02/2018,Politicians,@lpolgreen,"RT @NewsHour: How should comics tackle sensitive topics? ‘Lead with personal experience,’ says @cameronesposito, whose set ‘Rape Jokes’ has…" +07/02/2018,Politicians,@lpolgreen,"RT @KasieDC: OUCH. Tough words for Chief of Staff John Kelly from @Scaramucci: + +""He wasn't capable of bringing one person into the White Ho…" +07/02/2018,Politicians,@lpolgreen,RT @blakehounshell: o_O https://t.co/X2l59XN2Pg +07/02/2018,Politicians,@lpolgreen,RT @BUILDseriesNYC: EVERYbody is chatting about this one. @Hannahgadsby 's #Netflix special is incredible. Check out her conversation with… +07/01/2018,Politicians,@lpolgreen,"RT @HuffPost: ""This cover [feels] like an actually radical moment in the miasma of half-baked and tentative 'body positivity' spreading thr…" +07/01/2018,Politicians,@lpolgreen,RT @samanthabarry: A powerfully personal piece by @cindi_leive on abortion asking why when one in four American women have them by the age… +07/01/2018,Politicians,@lpolgreen,@hels Embrace shorts. Thick legs and all. +06/30/2018,Politicians,@lpolgreen,@aterkel Sounds kinda like Obama tbh. +06/30/2018,Politicians,@lpolgreen,"RT @oneunderscore__: There’s something very, very wrong with whatever/whoever is running the AP Twitter account, and it’s been going on for…" +06/30/2018,Politicians,@lpolgreen,Fantastic column by ⁦@michelleinbklyn⁩. There are other heartlands that need visiting and serious journalistic enga… https://t.co/Tf3CgzUjbw +06/30/2018,Politicians,@lpolgreen,@chick_in_kiev I can only imagine what your mentions look like. Courage. 💪🏽👊🏽🙏🏽 +06/30/2018,Politicians,@lpolgreen,"RT @chick_in_kiev: Every journalist, especially female journalists, journalists of color and Jewish journalists, deals with threats and slu…" +06/30/2018,Politicians,@lpolgreen,RT @alyspereira: this is true and the craziest thing to me is when journalists post screenshots of horrible messages they get they usually… +06/30/2018,Politicians,@lpolgreen,RT @ChloeAngyal: One of the hardest parts about being on the receiving end of this abuse is not sharing it with the people who love you the… +06/30/2018,Politicians,@lpolgreen,"RT @MSNBC: ""We may have to turn American upside down to turn it right-side up,"" Rep. John Lewis says at immigration march in Atlanta. https…" +06/30/2018,Politicians,@lpolgreen,"RT @TrevorIrvin2: My cartoon of watching the Supreme Court turn to crap. +Regards, +T https://t.co/V5PsZ4KsGo" +06/30/2018,Politicians,@lpolgreen,"RT @deanemurphy: “They can build as many walls as they want,” one migrant from El Salvador said. “They can send as many soldiers to the bor…" +06/30/2018,Politicians,@lpolgreen,RT @kainazamaria: “I have almost reached the regrettable conclusion that the Negro’s great stumbling block in his stride toward freedom is… +06/30/2018,Politicians,@lpolgreen,RT @MattBinder: damn looks like we've got a real conundrum on our hands here https://t.co/pVDaJ0DvE9 +06/30/2018,Politicians,@lpolgreen,RT @jbouie: nice that the president under criminal investigation can nominate a justice who thinks presidents should be able to ignore crim… +06/30/2018,Politicians,@lpolgreen,"RT @HuffPost: At HuffPost, reporters have been doxed more than once. They get death threats. They’re Photoshopped into gas-chamber cartoons…" +06/30/2018,Politicians,@lpolgreen,"RT @rtraister: I wrote about minority rule, SCOTUS, Maxine Waters, Charlie Rose, Schumer Pelosi and Bernie, Alexandria Ocasio-Cortez, aboli…" +06/30/2018,Politicians,@lpolgreen,RT @tylerkingkade: I see my friends share some of these once in a while. But it’s still pretty jarring to see a bunch gathered in one servi… +06/29/2018,Politicians,@lpolgreen,RT @chernandburn: After publishing this months-long investigation into anti-Semitism at the largest 40 school districts in the Bay Area I r… +06/29/2018,Politicians,@lpolgreen,@chernandburn Thanks for doing what you do. Stay strong. +06/29/2018,Politicians,@lpolgreen,Journalists in newsrooms across the country have received similar messages. It’s the hidden reality of the job now.… https://t.co/osvWC1h0fU +06/29/2018,Politicians,@lpolgreen,"Our Hate Mail. A compilation of recent threats, slurs and other nastiness aimed at HuffPost journalists. Who are ju… https://t.co/STQdOzVMHz" +06/29/2018,Politicians,@lpolgreen,"RT @Ocasio2018: Some folks are saying I won for “demographic” reasons. + +1st of all, that’s false. We won w/voters of all kinds. + +2nd, here’…" +06/29/2018,Politicians,@lpolgreen,"RT @Robillard: HuffPost watched Germany crash out of the World Cup with a member of the country’s right-wing party, AfD. + +He blamed player…" +06/29/2018,Politicians,@lpolgreen,"Love this love letter to @capgaznews by @hilella, who grew up in Annapolis. https://t.co/upPC1YaPhY" +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh I don’t know so much of the caffeine impact is olfactory. Same for nicotine tbh. +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh I’m a fan! Having given it up I’m... aware of its appeal. +06/29/2018,Politicians,@lpolgreen,@poniewozik @gabrielsnyder You can download your tweets in a CSV file that is actually much more useful for archival purposes. +06/29/2018,Politicians,@lpolgreen,"@ashleyfeinberg @gabrielsnyder Find your courage, ashley." +06/29/2018,Politicians,@lpolgreen,@tomgara @BenDWalsh Which is more addictive: nicotine or caffeine? I literally cannot function without the latter.… https://t.co/3gqjW6pNws +06/29/2018,Politicians,@lpolgreen,"RT @danielmarans: Seth Moulton styles himself a New Democrat, but given where the energies in his party lie at the moment, he sounds very m…" +06/29/2018,Politicians,@lpolgreen,@MikeIsaac https://t.co/WTv351l5hz +06/29/2018,Politicians,@lpolgreen,@gabrielsnyder I have mine set up to delete at 60 days but might go shorter. +06/29/2018,Politicians,@lpolgreen,@MikeIsaac I’m OBSESSED with this company’s story +06/29/2018,Politicians,@lpolgreen,"RT @MikeIsaac: i LOVE this story. an e-cigarette company raising money valued at a tech multiple. + +https://t.co/ElX7Ofy9BM" +06/29/2018,Politicians,@lpolgreen,RT @JeffYoung: Medicaid work requirements took a big hit in court today. Kentucky Gov. Matt Bevin (R) and the Trump administration were pla… +06/29/2018,Politicians,@lpolgreen,RT @ChloeAngyal: You guys. @Rowaida_Abdel and @letsgomathias have spent over a year tracking anti-Muslim hate all over the nation. Now @the… +06/29/2018,Politicians,@lpolgreen,RT @srl: Going to tweet a few transcribed exchanges from the most recent meeting of the Florida panel that has the sole power to restore vo… +06/29/2018,Politicians,@lpolgreen,The biggest cases this term often broke down along partisan lines https://t.co/JhH7SwZjqN via @HuffPostPol +06/29/2018,Politicians,@lpolgreen,"RT @dannysanchez: There is now a fund to aid the victims of the @capitalgazette shooting, administered by the Annapolis-based Anne Arundel…" +06/29/2018,Politicians,@lpolgreen,"The Capital was @hilella’s hometown paper. She has written a love letter to it, especially its coverage of teenager… https://t.co/d9LLU0XR29" +06/29/2018,Politicians,@lpolgreen,"“While there is no causality, there is a connection in the attitudes of this unhinged gunman and the president of t… https://t.co/xROAnr3SjV" +06/29/2018,Politicians,@lpolgreen,"“Rejection needs to be normalized, not catastrophized.” https://t.co/Mxnx3repzA" +06/29/2018,Politicians,@lpolgreen,So excited about the moves @HuffPostUK is making. Follow along here! https://t.co/cPx5HrAKoU +06/29/2018,Politicians,@lpolgreen,"RT @thehighsign: Watching David Simon & his wife @LauraMLippman learn their close friends died at the Capital Gazette, while trolls mock th…" +06/29/2018,Politicians,@lpolgreen,"""Body positivity takes a movement that sought to rewrite the conversation about bodies and weight and acceptability… https://t.co/77EMknDCpj" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: Trump just now: ""Journalists, like all Americans should be free from the fear of being violently attacked while doing their j…" +06/29/2018,Politicians,@lpolgreen,RT @SherylNYT: Trump strategically stocked courts with Kennedy clerks. Also had a business relationship with Kennedy's son. Fascinating @ad… +06/29/2018,Politicians,@lpolgreen,RT @nickpwing: Small newsrooms: I want to talk to you. How are you responding to yesterday’s attack? Increased security? Discussions about… +06/29/2018,Politicians,@lpolgreen,RT @abogada_laura: My 5-yr-old client can’t tell me what country she is from. We prepare her case by drawing pictures with crayons of the g… +06/29/2018,Politicians,@lpolgreen,@lisatozzi @shani_o My housemates (three blonde dogs) preclude black as a general rule. +06/29/2018,Politicians,@lpolgreen,@shani_o You’re too young for EF Shani +06/29/2018,Politicians,@lpolgreen,RT @YahooNews: A Democratic strategist says the first question Trump’s Supreme Court nominee should be asked is whether he or she was requi… +06/29/2018,Politicians,@lpolgreen,"RT @AshaRangappa_: You literally made a video for the NRA called ""We are coming for you, New York Times."" https://t.co/JukE2p9d8p" +06/29/2018,Politicians,@lpolgreen,RT @timkmak: Anne Arundel County Police says reports of suspect at Capital Gazette having mutilated his fingertips is untrue +06/29/2018,Politicians,@lpolgreen,"RT @maxwellstrachan: Stuyvesant's valedictorian: Find a way to diversify my school + +This is a wonderful speech by a teenager who is much sm…" +06/29/2018,Politicians,@lpolgreen,Twenty-five percent of the population can't detect bitterness. Those are the people who naturally love IPAs.… https://t.co/f7VWpBiNbz +06/29/2018,Politicians,@lpolgreen,RT @paulwaugh: EXCLUSIVE by @owenjbennett: Brexit 'bad boy' Richard Tice puts himself forward to be Tory candidate for London mayor https:/… +06/29/2018,Politicians,@lpolgreen,"RT @HuffPost: “We are seeing the consequences of when one vision is realized, or in charge.” https://t.co/Dd9PfPc35t" +06/29/2018,Politicians,@lpolgreen,"RT @maggieNYT: Supporting local journalism is important, what happened today is sickening. This alleged gunman appears to have had a longst…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: ┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| +┻┳| +┳┻| _ +┻┳| •.•) it's nice seeing people fired up about li…" +06/29/2018,Politicians,@lpolgreen,"RT @lkmcgann: I could barely read the final lines of this story...the Gazette staff's moving commitment to their craft, community and colle…" +06/29/2018,Politicians,@lpolgreen,"RT @sherifink: Ever wonder how @nytimes works and what standards are applied to strive for a trustworthy, unbiased news report? An ongoing…" +06/29/2018,Politicians,@lpolgreen,"“In essence, the Eighth Amendment meant whatever Justice Kennedy thought it meant,” said one death penalty expert.… https://t.co/T7crG4kKTm" +06/29/2018,Politicians,@lpolgreen,"RT @PamelaPaulNYT: Looking for a big, engrossing epic novel to sink into this summer? We are thrilled to announce that Min Jin Lee’s “Pachi…" +06/29/2018,Politicians,@lpolgreen,"RT @noahmichelson: Beware women who tell other women the answer to America's problems is for them to embrace a return to ""modesty"" and thei…" +06/29/2018,Politicians,@lpolgreen,"RT @jessicabennett: “My title is Dr. Fern Riddell, not Ms. or Miss Riddell. I have it because I am an expert... I worked hard to earn my au…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: A day after the shootings, Capital Gazette leaves its editorial section blank https://t.co/IlMrrm562v" +06/29/2018,Politicians,@lpolgreen,"RT @Yamiche: At least 41 journalists have been killed this year, according to data from the Committee to Protect Journalists. https://t.co…" +06/29/2018,Politicians,@lpolgreen,RT @shelbygrad: Every journalist’s nightmare. https://t.co/LiIoTKWJnP https://t.co/Nl5vxzDiif +06/29/2018,Politicians,@lpolgreen,RT @adamgoldmanNYT: #journalism https://t.co/Ds7HrnUzhS +06/29/2018,Politicians,@lpolgreen,Would you look at that tan suit. What a scandal. https://t.co/FkdKJr0jzr +06/29/2018,Politicians,@lpolgreen,Each one a heartbreak. https://t.co/HkU1mTjMbz +06/29/2018,Politicians,@lpolgreen,"RT @Robillard: I’m having a hard time articulating my thoughts right now, but as I attempt to sleep, I’ll leave you with this: + +On Monday n…" +06/29/2018,Politicians,@lpolgreen,"RT @jbendery: Barrett was also a member of a tightly knit Christian group called People of Praise, -- where men are referred to as “heads”…" +06/29/2018,Politicians,@lpolgreen,RT @qualityrye: Gabrielle Giffords is correct https://t.co/TEIKamu0SF https://t.co/1HhOLSZf9r +06/29/2018,Politicians,@lpolgreen,RT @AMLwhere: The climate in which journalists now work: “More and more democratically-elected leaders no longer see the media as part of d… +06/28/2018,Politicians,@lpolgreen,"RT @Poynter: Today's an unwelcome reminder that journalism is difficult and dangerous work +https://t.co/QNwYic7WkY https://t.co/G1lAeLxHz0" +06/28/2018,Politicians,@lpolgreen,My first job was at the Albany Times Union. It felt exactly like this. Family. https://t.co/s1HFMUtZ7o +06/28/2018,Politicians,@lpolgreen,"RT @hilella: I am from Annapolis, MD. I was featured in The Capital a bunch of times as a kid, mostly for my field hockey stats (I was the…" +06/28/2018,Politicians,@lpolgreen,"RT @YahooNews: Though Democrats are the minority party on Capitol Hill, they are promising to mount a furious opposition campaign to Trump’…" +06/28/2018,Politicians,@lpolgreen,My Alma Mater. https://t.co/uhzuNiLbbK +06/28/2018,Politicians,@lpolgreen,"RT @NBCNews: BREAKING: White male suspect in Maryland newsroom shooting has been identified via use of facial recognition technology, and l…" +06/28/2018,Politicians,@lpolgreen,Damn right. And we all stand with you. Can’t wait to read it. https://t.co/7tsrsg3nqI +06/28/2018,Politicians,@lpolgreen,Hilarious. https://t.co/UOQrYjAMHA +06/28/2018,Politicians,@lpolgreen,RT @joshuamckerrow: Continuing to cover story with Capital journalists Chase Cook and Pat Ferguson. Thanks to our @baltimoresun colleagues… +06/28/2018,Politicians,@lpolgreen,"@marinafang @paigelav @womenjournos Way to go, @marinafang!!!" +06/28/2018,Politicians,@lpolgreen,RT @kathrynw5: >>> A law enforcement source tells one of my CBS News colleagues that the Annapolis shooting suspect damaged his finger tips… +06/28/2018,Politicians,@lpolgreen,"RT @HuffPost: ""I’ve been saying now for days that something horrible was going to happen because of the rhetoric. Really Maxine?"" said Sean…" +06/28/2018,Politicians,@lpolgreen,RT @bariweiss: Ramzi Yousef. Richard Reid. Mohammad Atta. The Tsarnaev brothers. None of these evil men would have been barred by Trump's t… +06/28/2018,Politicians,@lpolgreen,"RT @wesyang: Remarkable 23 percent shift away from D to R among white millennial men since 2016. https://t.co/GXv9HKZKFL + +Genuinely curio…" +06/28/2018,Politicians,@lpolgreen,Devastating thread. https://t.co/xB7gzBaMMw +06/28/2018,Politicians,@lpolgreen,"RT @PeterAlexander: And, thank you to the Capital Gazette journalists who, under the worst imaginable circumstances, keep reporting about a…" +06/28/2018,Politicians,@lpolgreen,"RT @JaneLytv: This is a fake New York Times screenshot. + +(The nope is my addition to avoid spread.) https://t.co/fkEH6tJWyl" +06/28/2018,Politicians,@lpolgreen,"RT @fordm: A small but meaningful response to the Capital Gazette tragedy would be to subscribe to a similar local newspaper in your area,…" +06/28/2018,Politicians,@lpolgreen,"RT @Wolfe321: At CPJ, we waited until we were clear that a murder/death of a journalist was related to their #journalism before we wrote up…" +06/28/2018,Politicians,@lpolgreen,"As I type this, NYPD officers are guarding the building where my colleagues and I work. This is essential context f… https://t.co/8uKvmvfoM9" +06/28/2018,Politicians,@lpolgreen,Talking about the violent threats journalists face in America today is not the same as speculating about motive. +06/28/2018,Politicians,@lpolgreen,"We know nothing about the shooter’s motive, but that hasn’t stopped some from celebrating the attack. https://t.co/baY4dIXm36" +06/28/2018,Politicians,@lpolgreen,My god. Five dead. More “gravely injured.” +06/28/2018,Politicians,@lpolgreen,"“But as much as I’m going to try to articulate how traumatizing it is to be hiding under your desk, you don’t know… https://t.co/8sethgq2hj" +06/28/2018,Politicians,@lpolgreen,"RT @Mosheh: Latest from @CBSNews investigative unit: Suspect in @capitalgazette shooting is white, male, in his 20s, had no ID on him and r…" +06/28/2018,Politicians,@lpolgreen,"A lot of us experience this. I was doxed a couple of weeks ago, along with several colleagues. Phone numbers, home… https://t.co/uGkfRREmfr" +06/28/2018,Politicians,@lpolgreen,RT @jeffjarvis: Police outside The New York Times now. Thank goodness. https://t.co/6ICl9JMKeD +06/28/2018,Politicians,@lpolgreen,RT @hunterw: Seeing more than a few journalists who should know better tweeting stuff like police scanner chatter and speculation about the… +06/28/2018,Politicians,@lpolgreen,RT @JaneLytv: 1. The suspect is NOT SAM HYDE. This is the #1 hoax during breaking news situations. https://t.co/yIA7aTAtYI +06/28/2018,Politicians,@lpolgreen,RT @AlecMacGillis: It's becoming ever clearer that Mitch McConnell is the Keyser Soze of our times. New @propublica and @nytimes: https://t… +06/28/2018,Politicians,@lpolgreen,RT @jbendery: Susan Collins and Lisa Murkowski do say they are pro-choice -- and have voted to confirm ALL of Trump's anti-abortion lifetim… +06/28/2018,Politicians,@lpolgreen,"RT @DTOhl: I don't have many details right now. My colleagues Phil Davis, Chase Cook, Anthony Messenger, Rick Hutzell and Selene San Felice…" +06/28/2018,Politicians,@lpolgreen,RT @BenWeathers83: Devasted. Just devasted. +06/28/2018,Politicians,@lpolgreen,RT @merrillwilliams: Our family business for 40 years. Great people. We are devasted and praying for entire @capgaznews team. #annapolis… +06/28/2018,Politicians,@lpolgreen,"RT @ShaneGoldmacher: ""Mooooooooommmmmmm"" + +https://t.co/qEvKt8qpC2 https://t.co/4RGjOM5ChI" +06/28/2018,Politicians,@lpolgreen,RT @MattStoneABC: .@ABC News going live with a special report momentarily- reports of multiple people injured in a shooting at Capital Gaze… +06/28/2018,Politicians,@lpolgreen,RT @michaelroston: I deleted a tweet about the shooting in Annapolis at the Capital Gazette because I didn't want it to be misinterpreted -… +06/28/2018,Politicians,@lpolgreen,"RT @Jean_Marbella: Keep our colleagues in your thoughts, please https://t.co/Q0ZoWsa26r" +06/28/2018,Politicians,@lpolgreen,RT @PhilDavis_CG: Gunman shot through the glass door to the office and opened fire on multiple employees. Can't say much more and don't wan… +06/28/2018,Politicians,@lpolgreen,"RT @PhilDavis_CG: A single shooter shot multiple people at my office, some of whom are dead." +06/28/2018,Politicians,@lpolgreen,Absolutely chilling tweet from a reporter at the Capital Gazette. https://t.co/tsWsGm2NvD +06/28/2018,Politicians,@lpolgreen,RT @b_fung: Just a quick reminder to everyone that we don't yet know who the suspect or what the motive was. +06/28/2018,Politicians,@lpolgreen,RT @awprokop: WSJ says Nick Ayers is a frontrunner to replace John Kelly as chief of staff. @VickyPJWard had quite the profile of Ayers a f… +06/28/2018,Politicians,@lpolgreen,I went to college in Annapolis and both my parents live there now. It’s a small town at heart. This is heartbreakin… https://t.co/5bi0NR01lC +06/28/2018,Politicians,@lpolgreen,RT @Robillard: I interned at the Capital Gazette in college. This is surreal and awful. https://t.co/irFp5U8BiH +06/28/2018,Politicians,@lpolgreen,"RT @feliciasonmez: Barbara Lee, a stalwart of the left, considering bid for House Democratic leadership, @daveweigel reports: https://t.co/…" +06/28/2018,Politicians,@lpolgreen,"RT @Noahpinion: Wow, this is big news. The number of Americans who think legal immigration should be increased has surpassed the number who…" +06/28/2018,Politicians,@lpolgreen,@michaelbd Hard agree! +06/28/2018,Politicians,@lpolgreen,This is very true. https://t.co/8m95UVzlej +06/28/2018,Politicians,@lpolgreen,"Good marching orders for reporters, which we follow here at HuffPost: “Get closer to what voters are thinking and f… https://t.co/em13nsqnGM" +06/28/2018,Politicians,@lpolgreen,@emilynussbaum That was some smart assigning! +06/28/2018,Politicians,@lpolgreen,Great review of ⁦@Hannahgadsby⁩’s Nanette in the New Yorker. Genius assignment: ⁦⁦@MoiraDonegan⁩ https://t.co/RnPhO2RN3M +06/28/2018,Politicians,@lpolgreen,RT @danielmarans: Alexandria Ocasio-Cortez's ad stands out as a tipping point that both reflected her strengths as a candidate and amplifie… +06/28/2018,Politicians,@lpolgreen,"""The Supreme Court, Congress and the executive branch are instruments of political power. All three are currently b… https://t.co/1MuCG8culC" +06/28/2018,Politicians,@lpolgreen,"@joelpollak @AliVelshi @ThePlumLineGS I think it’s a much broader set of concerns than gay marriage, ACA and Roe." +06/28/2018,Politicians,@lpolgreen,RT @JackMorrison208: The green light from the great gatsby was from a juul +06/28/2018,Politicians,@lpolgreen,Here's what it's like to endure wildfire season in California: “We’re getting used to it. You’ve got to have your b… https://t.co/8lwVpOyKlZ +06/28/2018,Politicians,@lpolgreen,"""So we tweet on, users against the content, borne back ceaselessly into our favs.” https://t.co/Rj23Tr8rxm" +06/28/2018,Politicians,@lpolgreen,RT @nytopinion: Anthony Kennedy’s retirement means the Supreme Court is likely to side more often with those who already have power — and a… +06/28/2018,Politicians,@lpolgreen,@KimBhasin @Gothamist 🙏🏾 +06/28/2018,Politicians,@lpolgreen,What a jerk. https://t.co/kHtGwynoIg +06/28/2018,Politicians,@lpolgreen,"RT @mediagazer: Sources: Fox News CEO Suzanne Scott tells producers they must protect the talent and brand, and will be held accountable fo…" +06/28/2018,Politicians,@lpolgreen,RT @Ocasio2018: A Girl Has No Name: Headlines from the Political Patriarchy https://t.co/xohAiHSk3b +06/28/2018,Politicians,@lpolgreen,"RT @Robillard: NEW: The Foxconn deal Scott Walker and President Trump are celebrating today? + +Polls say it’s unpopular, and Democrats want…" +06/28/2018,Politicians,@lpolgreen,A gay rights lawyer argues that Kennedy’s true legacy will be this: deliberately choosing to let Trump choose and t… https://t.co/Tsi5tk2djx +06/28/2018,Politicians,@lpolgreen,Good morning. https://t.co/sx1krY8ZvH +06/28/2018,Politicians,@lpolgreen,RT @ashleyfeinberg: outsourcing all my research to teens now https://t.co/r1g9W44zVj +06/28/2018,Politicians,@lpolgreen,"“We’d use a coat hanger, like our grandmothers did.” https://t.co/fQ0VNYe1vW by @mtredden" +06/28/2018,Politicians,@lpolgreen,"RT @joshtpm: Trump: ""We have more money and more brains and better houses and apartments and nicer boats. We are smarter than they are. The…" +06/28/2018,Politicians,@lpolgreen,Justice Elena Kagan Says The Supreme Court Turned The First Amendment 'Into A Sword' https://t.co/Y0XCszFetK +06/28/2018,Politicians,@lpolgreen,"RT @HuffPost: ""In the near future, getting abortions and transporting people to places where they can still get them will require massive f…" +06/28/2018,Politicians,@lpolgreen,RT @seungminkim: It should be noted here that Heitkamp voted for Gorsuch. https://t.co/9bGOf4tFLm +06/28/2018,Politicians,@lpolgreen,"RT @NinaBernstein1: “For those who face the future in fear after Wednesday, there are no easy answers — but there is a clear duty. Do not f…" +06/28/2018,Politicians,@lpolgreen,RT @NAACP_LDF: “This is no time for leaning back and reclining and doing milquetoast politics. This is about the future of our democracy… i… +06/28/2018,Politicians,@lpolgreen,"RT @AriMelber: Does POTUS have to turn over evidence in a criminal probe, like the Nixon tapes? + +Must a POTUS testify before a grand jury?…" +06/28/2018,Politicians,@lpolgreen,RT @chrislhayes: None of what happens now has anything to do with arguments or persuasion but solely the calculated use of maximal applicat… +06/28/2018,Politicians,@lpolgreen,RT @MaraGay: The liberal base is on fire https://t.co/3FOz8OSXBG +06/28/2018,Politicians,@lpolgreen,"RT @ChloeAngyal: ""Opposition to abortion is not just about hostility to abortion or even discomfort with women’s sexuality. At its core, op…" +06/28/2018,Politicians,@lpolgreen,RT @emilysteel: Bill Shine was ousted last year amid the sexual harassment scandal at Fox News. He now is expected to be offered the job of… +06/28/2018,Politicians,@lpolgreen,Democrats Demand GOP Follow 'McConnell Rule' And Delay Supreme Court Hearing. Good luck. https://t.co/1ElMhnoD9Q +06/27/2018,Politicians,@lpolgreen,Bless you @petridishes. https://t.co/PgDYPqe1CL +06/27/2018,Politicians,@lpolgreen,RT @AsteadWesley: The typical US Congress member is 12 times richer than the typical American household. https://t.co/cS8Ex3oGPC +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: On abortion rights + Trump's SCOTUS pick: + +On one hand, GOP can't afford to lose any votes to confirm Trump's pick & there a…" +06/27/2018,Politicians,@lpolgreen,@joelpollak That was before McConnell made the rule! +06/27/2018,Politicians,@lpolgreen,RT @danielmarans: A model for left activists who *sometimes sound* like they think inclusive framing and organizing is tantamount to selli… +06/27/2018,Politicians,@lpolgreen,"RT @Ocasio2018: I completely agree with @SenSanders. Interpretations of “us vs them” are unproductive in our discourse and, in my opinion,…" +06/27/2018,Politicians,@lpolgreen,RT @zachdcarter: Here is a take you might have cared about three hours ago. https://t.co/v0cFSuUdGs +06/27/2018,Politicians,@lpolgreen,"RT @joshrogin: Hey guys, Assad has started a fresh campaign of murder and atrocities, this time near the border with Jordan. In case anyone…" +06/27/2018,Politicians,@lpolgreen,RT @chrislhayes: Kennedy handing his seat over to Trump is the most perfect example *ever* about how it is all the party of Trump. All of i… +06/27/2018,Politicians,@lpolgreen,"RT @jbouie: This is absolutely true. + +McCain: https://t.co/drd5Zvecj8 + +Chuck Grassley and Orrin Hatch: https://t.co/qd1teGbEP9 + +And conserv…" +06/27/2018,Politicians,@lpolgreen,RT @jackmjenkins: Oh yeah there was that time John McCain promised that Republicans would block ANY Supreme Court nominee by Clinton if she… +06/27/2018,Politicians,@lpolgreen,“The funny thing about beginnings is that you rarely know you’re in them. ... My beginning was losing a parent to c… https://t.co/fP6SEKl4RP +06/27/2018,Politicians,@lpolgreen,The Supreme Court's ruling isn't just a blow to organized labor. https://t.co/Ac2f3bqghK via @HuffPostPol +06/27/2018,Politicians,@lpolgreen,"RT @jamieson: The kicker to Kagan's dissent in Janus was brutal: She referred to the majority as ""black-robed rulers overriding citizens' c…" +06/27/2018,Politicians,@lpolgreen,"RT @HuffPost: The Supreme Court found regulations on ""crisis pregnancy centers"" unconstitutional. What about laws that force abortion provi…" +06/27/2018,Politicians,@lpolgreen,"RT @gabrielroth: everyone on twitter: why are we wasting our lives on this disgusting hell site +jonathan franzen: wow sounds bad, i'm going…" +06/27/2018,Politicians,@lpolgreen,"RT @Max_Fisher: Entirely possible that by 2020 we have a situation in which: + +• Democrats have won 6 out of the last 7 popular votes for pr…" +06/27/2018,Politicians,@lpolgreen,RT @aterkel: Here’s what Schumer told me in January 2017 on how he’d be looking at Roe v Wade as a major indicator for a SCOTUS nominee htt… +06/27/2018,Politicians,@lpolgreen,"Telling that Schumer singles out that issue, as opposed to, say, voting rights. https://t.co/4jsgoqQ45d" +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: no it won't, he does not care https://t.co/dj3wSmJNQD" +06/27/2018,Politicians,@lpolgreen,"RT @JakeSherman: Here is what McConnell said about not holding confirmation hearings on Garland and keeping the seat open: + +""I think it was…" +06/27/2018,Politicians,@lpolgreen,"RT @bjmartino: I felt a great disturbance in the Polling Community, as if millions of questionnaires suddenly cried out in terror, and were…" +06/27/2018,Politicians,@lpolgreen,She already is but ok! https://t.co/lpm3ZopyIA +06/27/2018,Politicians,@lpolgreen,"RT @NBCNews: @PeteWilliamsNBC JUST IN: “There’s no presidential election this year,"" Majority Leader McConnell says when asked if he thinks…" +06/27/2018,Politicians,@lpolgreen,"RT @DaviSusan: .⁦@SenatorDurbin⁩ immediately calls to postpone SCOTUS vote until after midterms. Not gonna happen. But, wow, is this gonna…" +06/27/2018,Politicians,@lpolgreen,That’s an interesting idea! https://t.co/zbot7donH2 +06/27/2018,Politicians,@lpolgreen,"RT @Robillard: Timely story from @igorbobic, @aterkel and @jbendery: “Democrats Regret Not Fighting Harder For Obama’s Supreme Court Pick”…" +06/27/2018,Politicians,@lpolgreen,RT @kaitlancollins: Big news from the pool — Trump says he will pick Anthony Kennedy’s replacement from his existing list of 25 potential n… +06/27/2018,Politicians,@lpolgreen,Welp. https://t.co/XvREwDxuH4 +06/27/2018,Politicians,@lpolgreen,RT @JeffreyToobin: Anthony Kennedy is retiring. Abortion will be illegal in twenty states in 18 months. #SCOTUS +06/27/2018,Politicians,@lpolgreen,"RT @jbendery: Well the timing of this story was unexpectedly good. + +Let's see what Senate Dems are prepared to do this time around. https:/…" +06/27/2018,Politicians,@lpolgreen,Welp +06/27/2018,Politicians,@lpolgreen,His departure will likely tilt the balance of the court further to the right. https://t.co/lFM4nwdoQX +06/27/2018,Politicians,@lpolgreen,RT @katierogers: SCOTUS loses its swing vote. Speaking of voting: it always matters. https://t.co/Rf0xpZR6kO +06/27/2018,Politicians,@lpolgreen,"RT @PoliticoScott: Some quick census stats on #NY14: 49% Latino, 23% white, 17% Asian, 9% black + +There are 31 Dem House seats where whites…" +06/27/2018,Politicians,@lpolgreen,"RT @KatrinaNation: Great Ocasio-Cortez quote: +https://t.co/rHcgOvqPSW +“I can’t name a single issue w roots in race that doesn’t have econom…" +07/02/2018,Politicians,@Schriock1,Thanks @KasieDC — I had a great time joining you tonight! Always love a conversation that can range from the news o… https://t.co/I4CYcyInI2 +07/02/2018,Politicians,@Schriock1,"I never want to hear someone call it the ""abortion card"" ever again. This isn't a game. This a real fear that women… https://t.co/qiBM1WvweO" +07/02/2018,Politicians,@Schriock1,"RT @creynoldsnc: Tune in to @KasieDC at 8:00 to see @Schriock1 talk SCOTUS, Democrats winning, @emilyslist and more with @kasie." +06/30/2018,Politicians,@Schriock1,I'm so proud of our women who are speaking out and marching today. The separation of families is horrific — and hig… https://t.co/eByGreIkDA +06/30/2018,Politicians,@Schriock1,RT @GwenGraham: “This isn’t just the best woman for the job. This is the best person to be Florida’s next governor! The very best candidate… +06/29/2018,Politicians,@Schriock1,Our interns are the best! https://t.co/JBC5TaamBL +06/29/2018,Politicians,@Schriock1,"If we want to fight back against the Trump administration, we need to send @vgescobar and pro-choice Democratic wom… https://t.co/v1I0DZ36Gz" +06/29/2018,Politicians,@Schriock1,"@emilyslist I may have some fear, but I am motivated by hope. I am motivated by the energy I see every day at… https://t.co/rsQ3oiAlMT" +06/29/2018,Politicians,@Schriock1,"@emilyslist And most of all, be kind to one another. This fight will be hard. So we must have each other's backs an… https://t.co/Sozib3k75N" +06/29/2018,Politicians,@Schriock1,"Here's some things you can do: +✅ Tweet every day for candidates you support. +✅ Become a monthly donor to help… https://t.co/DpJBczEO50" +06/29/2018,Politicians,@Schriock1,@emilyslist .@emilyslist has a very big map — including governors' races and state legislative races that are going… https://t.co/wGOa0q2Ylk +06/29/2018,Politicians,@Schriock1,"I'm so proud of what my team at @emilyslist and our community have done this cycle. However, we must dig deeper now… https://t.co/8hRQi5kcsx" +06/29/2018,Politicians,@Schriock1,Trump has promised to criminalize abortion and punish women — and most of the Senate GOP is ready to fulfill that promise. +06/29/2018,Politicians,@Schriock1,We cannot allow them to take us back to the time of our mothers and grandmothers on abortion access or birth contro… https://t.co/2tAxrYovxK +06/29/2018,Politicians,@Schriock1,Extreme right-wing Republicans have been masterminding the takeover of our courts for decades. When we told you the… https://t.co/1v66O9WS1g +06/29/2018,Politicians,@Schriock1,"Even under the current administration, the past few weeks have been especially hard. We are all hurting. Your fear,… https://t.co/SWwKiEFErq" +06/28/2018,Politicians,@Schriock1,RT @emilyslist: Our own @Schriock1 is going to be on @TheBeatWithAri soon to talk about SCOTUS and the impact on #ReproRights — tune in. +06/27/2018,Politicians,@Schriock1,Elections have consequences. The GOP will use this opportunity to nominate an anti-choice justice to the Supreme Co… https://t.co/XRe7yWvcpP +06/27/2018,Politicians,@Schriock1,Today's #Janus decision is deeply disappointing. I stand with my union sisters and brothers — we will keep fighting… https://t.co/3KO5vFLgxf +06/27/2018,Politicians,@Schriock1,RT @emilyslist: Congrats to @RepDMB on winning her primary! https://t.co/Z8y6XSvyoF +06/27/2018,Politicians,@Schriock1,RT @emilyslist: Congrats to @liuba4congress on winning her primary! https://t.co/W712herAGQ +06/27/2018,Politicians,@Schriock1,"Thanks for your support of @emilyslist, @JoshMalina! And thanks for helping us get out the vote for our pro-choice… https://t.co/CErOWmdNDv" +06/26/2018,Politicians,@Schriock1,The #NIFLAvBecerra decision is devastating. It will let fake clinics lie to vulnerable women and withhold potential… https://t.co/zDNV9sJjzw +06/26/2018,Politicians,@Schriock1,"“Congress has a moral obligation to take a stand and say that families should not be forcibly separated."" —… https://t.co/rvoM6D604G" +06/25/2018,Politicians,@Schriock1,"Remember the time before the Affordable Care Act, when women were routinely charged more for health care because of… https://t.co/Dch3DuNhmf" +06/25/2018,Politicians,@Schriock1,Here's a hot take for you: Maybe more Democratic women are winning because they're just the best candidates in the… https://t.co/Ti6nKC7nkY +06/24/2018,Politicians,@Schriock1,"Trump attacked @RosenforNevada and @elizabethforma with racist and petty insults yesterday, and Sen. Heller embrace… https://t.co/kvB0BCEfx4" +06/22/2018,Politicians,@Schriock1,"RT @GwenGraham: Florida Democrats, are you ready for this year's Leadership Blue? Join me, EMILY's List President @Schriock1 and more speci…" +06/22/2018,Politicians,@Schriock1,"We're so proud to endorse @liuba4congress today! As a mother to young children, Liuba has a crucial perspective of… https://t.co/UyrF3IXMCM" +06/22/2018,Politicians,@Schriock1,RT @nowthisnews: These 17 congresswomen have zero tolerance for children being ripped from their mothers at the border https://t.co/8JeCjz6… +06/22/2018,Politicians,@Schriock1,The stories that @PramilaJayapal is highlighting from the mothers who have been separated from their children are h… https://t.co/HBUXYcfB8C +06/21/2018,Politicians,@Schriock1,Our work isn't done. We need to keep fighting for these families: https://t.co/1CouCLSM2E #KeepFamiliesTogether https://t.co/fc4zgha5Ax +06/20/2018,Politicians,@Schriock1,"Thank you @JoeBiden! @emilyslist agrees, @Michelle4NM has been a champion for New Mexico families, and we need to e… https://t.co/b0e5tMLhFm" +06/20/2018,Politicians,@Schriock1,.@vgescobar was so powerful on @hardball last night. I'm so grateful for her leadership on behalf of these families… https://t.co/rii1swyEug +06/20/2018,Politicians,@Schriock1,Trump swore up and down that he couldn't do anything. He's proven himself a liar. But this order leaves a lot of ve… https://t.co/hoy2IqkYot +06/20/2018,Politicians,@Schriock1,"It feels like the entire internet has already seen @keldahelenroys' amazing video ""Our Girls,"" but if you haven't s… https://t.co/cmCxpgmzyV" +06/20/2018,Politicians,@Schriock1,"@emilyslist @MikeBloomberg @howiewolf From @JenniferWexton & @LucyWins2018 fighting against gun violence, to… https://t.co/0ttWvGNalw" +06/20/2018,Politicians,@Schriock1,".@emilyslist has partnered with @MikeBloomberg and @howiewolf in the past to win elections, and we know just how sm… https://t.co/AhGiAAFOFt" +06/20/2018,Politicians,@Schriock1,Thank you @PramilaJayapal for making sure these mothers' voices are being heard. https://t.co/3X4Bu5vDXP +06/20/2018,Politicians,@Schriock1,Pennsylvania currently has no women in its Congressional delegation. Today @emilyslist is proud to endorse our FOUR… https://t.co/FUkO0h8hO7 +06/18/2018,Politicians,@Schriock1,It's okay to have questions about running for office! Our #RunToWin Training Center has you covered. How many lesso… https://t.co/nvKno3djWm +06/18/2018,Politicians,@Schriock1,The separation of children from their families is horrifying us all. I'm so grateful for @vgescobar's leadership. W… https://t.co/xOaQ87nLYB +06/15/2018,Politicians,@Schriock1,Trump's behavior during the North Korea summit was sickening. Equally sickening was the complicity of congressional… https://t.co/zjgtIi9zYn +06/15/2018,Politicians,@Schriock1,"So thrilled to see @wildforcongress and @Axne4Congress on the @dccc's Red to Blue list! They've worked hard, and… https://t.co/XU8wM7gBoY" +06/15/2018,Politicians,@Schriock1,I really enjoyed joining The Opposition earlier this year. Good luck on whatever comes next for you and your team!… https://t.co/9ILLbORlRv +06/15/2018,Politicians,@Schriock1,I had so much fun joining you both on the podcast! https://t.co/2wUvRV7YKV +06/15/2018,Politicians,@Schriock1,"Sisters, either you run for office, or you help another woman run for office! Help us make 2018 a historic year — c… https://t.co/Uf7Y1uOW5m" +06/14/2018,Politicians,@Schriock1,We've been laying the groundwork for this moment for 30 years. But we couldn't do anything without the truly except… https://t.co/ADnztc6SOt +06/14/2018,Politicians,@Schriock1,".@emilyslist is proud to be standing beside Gov. @GinaRaimondo. She IS a champion for reproductive health care, and… https://t.co/TXXmntXBPj" +06/13/2018,Politicians,@Schriock1,The Trump administration's attacks on the Affordable Care Act will be devastating to women and families. Women are… https://t.co/G1lw4loYMB +06/13/2018,Politicians,@Schriock1,Want to help @emilyslist elect a historic number of pro-choice Democratic women this cycle? We're looking for a pol… https://t.co/tsA2x0frSi +06/13/2018,Politicians,@Schriock1,"What a great night for our candidates! Congratulations to @ElaineLuriaVA, @SpanbergerVA07, @SusieLeeNV, and… https://t.co/12oVHB7fhi" +06/11/2018,Politicians,@Schriock1,Ridiculous — and insulting. @SpanbergerVA07 has had nothing handed to her. No woman candidate ever does. If anythin… https://t.co/0Bo8kDmmz9 +06/11/2018,Politicians,@Schriock1,"I had such a great time joining @cortneyt and @libbyirwin for a chat with @pantsuitnation today! Ladies, this is ou… https://t.co/CjrpFQZAPt" +06/07/2018,Politicians,@Schriock1,This is such a powerful interview. NEVER underestimate @mazieforhawaii! https://t.co/seb7lZvFPA +06/07/2018,Politicians,@Schriock1,RT @emilyslist: Thank you @ginaortizjones for dropping in to say hello today! We can't wait to help elect you this November! https://t.co/i… +06/06/2018,Politicians,@Schriock1,"RT @Deb4CongressNM: Thank you @emilyslist! +#nm01 #nmpol #ruready #befierce https://t.co/OkNKDncxRO" +06/06/2018,Politicians,@Schriock1,"It's a SWEEP in New Jersey, Iowa, and New Mexico for our congressional and gubernatorial endorsements! Congratulati… https://t.co/CpadtksQ91" +06/05/2018,Politicians,@Schriock1,"New Jersey, Iowa, New Mexico, California, Missouri — get out and vote today! https://t.co/ZspYmtd3WM" +06/04/2018,Politicians,@Schriock1,RT @amandalitman: Dream job alert: @emilyslist is hiring an Email Director. Raise money and connect with supporters to hire pro-choice Demo… +06/01/2018,Politicians,@Schriock1,.@staceyabrams is leading in the #GAGov race! This shows what we've known all along — Stacey is the strongest candi… https://t.co/Nn7D4OGblc +06/01/2018,Politicians,@Schriock1,"Here at @emilyslist, we have been so proud of all the incredible things that @GinaRaimondo has accomplished during… https://t.co/LYmYY8PJux" +06/01/2018,Politicians,@Schriock1,"Yes! We're focused on electing #LGBTQ women like @KateBrownForOR, @tammybaldwin, @kyrstensinema, @ginaortizjones,… https://t.co/9ocxwuAe7M" +05/30/2018,Politicians,@Schriock1,"And then on top of this, Trump's reckless policies are helping drive up gas prices. Together, rising health care pr… https://t.co/sCmxZ4kGFT" +05/29/2018,Politicians,@Schriock1,I'm so proud of @MikieSherrill for earning the @nytimes endorsement! She worked so hard to make this race one of ou… https://t.co/rMLyPCR42G +05/28/2018,Politicians,@Schriock1,"Yes. Today as I honor and remember those who gave their lives, I will also be thinking of veterans like my dad. We… https://t.co/wW5W4UBEue" +05/26/2018,Politicians,@Schriock1,"Congratulations to all of the organizers, activists, and voters in Ireland who helped achieve this incredible victo… https://t.co/ndkARJTRth" +05/25/2018,Politicians,@Schriock1,"Wow, @AbbyWambach, this speech is something else: ""Women are feared as a threat to our system, and we will also be… https://t.co/4WA2gt9PsV" +05/25/2018,Politicians,@Schriock1,Congratulations @Axne4Congress on earning the @DMRegister endorsement! #IA03 https://t.co/JUbPLKqHFh +05/25/2018,Politicians,@Schriock1,Trump and the GOP's sabotage of the Affordable Care Act has caused premium rates to skyrocket. They're treating hea… https://t.co/CkurfX4JuQ +05/25/2018,Politicians,@Schriock1,Thank you @apoliticalco for including me on your Gender Equality Top 100! My team and I are working harder than eve… https://t.co/cQcPBeXXlo +05/23/2018,Politicians,@Schriock1,"Congrats to all of our women who won their primaries tonight! @staceyabrams, @ginaortizjones, and @Lizzie4Congress… https://t.co/59EAYhasQR" +05/22/2018,Politicians,@Schriock1,Congrats @MayorBowser! I'm so happy for you and your new little one. All of us at @emilyslist are wishing you both… https://t.co/ymVeesfsj3 +05/20/2018,Politicians,@Schriock1,I was so happy to join @Giunchigliani in Nevada yesterday! @emilyslist is all-in to help her become Nevada's next g… https://t.co/Un9UK8Bzqh +05/20/2018,Politicians,@Schriock1,RT @Astrid_NV: It was great to join @Schriock1 of @emilyslist to support our wonderful Tia Chris @Giunchigliani in her bid for the First Fe… +05/19/2018,Politicians,@Schriock1,RT @Giunchigliani: Thank you so much to @Schriock1 for joining me for brunch and to @EMILYslist for your support. Nevada deserves a progres… +05/19/2018,Politicians,@Schriock1,Done. Let's show Republicans just how strong this community is. https://t.co/EeAJmHEDW9 +05/18/2018,Politicians,@Schriock1,Our endorsed Democratic women are PROUDLY pro-choice — and they are running for office in record numbers to fight b… https://t.co/egukhQhipd +05/18/2018,Politicians,@Schriock1,.@DonnaShalala is one of the most qualified and experienced women we've endorsed this cycle! We're proud to help he… https://t.co/yptjSLyCZH +05/16/2018,Politicians,@Schriock1,"RT @hardball: ""Those women marched back in their communities, they started organizing, and they started running."" @Schriock1 on Democratic…" +05/16/2018,Politicians,@Schriock1,"RT @hardball: ""We had our staff on the ground immediately, we knew we had an opportunity."" @Schriock1 on Democratic women winning House pri…" +05/16/2018,Politicians,@Schriock1,I'm going to be live from California with @HardballChris shortly to talk about our incredible pro-choice Democratic… https://t.co/upf1erb8TT +05/16/2018,Politicians,@Schriock1,"Our women are storming the old boys' clubs! Well done @mad4pa, @HoulahanForPa, and @wildforcongress — on to Novembe… https://t.co/fDzSOvVxQm" +05/15/2018,Politicians,@Schriock1,"Pennsylvania, let's kick down the door to the old boys' club! Get out and vote for @RachelReddick, @mad4pa,… https://t.co/Rq317M3BUC" +05/11/2018,Politicians,@Schriock1,"Spread the word, Pennsylvania. John Morganelli does not represent #PA07's values. In Tuesday's primary election, vo… https://t.co/LtIsT2NZiM" +05/10/2018,Politicians,@Schriock1,One of the most common questions we get from the women we recruit and train is about how they'll be able to afford… https://t.co/QUlE5Op1YJ +05/10/2018,Politicians,@Schriock1,"Some incredible women are running for office in Pennsylvania, including @wildforcongress and @ChristaForPA189! Now… https://t.co/Nspe1XLiZo" +05/10/2018,Politicians,@Schriock1,Thank you @FullFrontalSamB for uplifting @RachelforOhio and @emilyslist! https://t.co/WcOxjRNeQp +05/09/2018,Politicians,@Schriock1,These victories confirm that we are seeing a sea change this year. The @emilyslist team has been working hard on th… https://t.co/Fiu3vCyER5 +05/09/2018,Politicians,@Schriock1,"RT @ilyseh: Thrilled to be in #PA07 w/my sister @Schriock1 to support @wildforcongress, a champ for women and families running against an a…" +05/09/2018,Politicians,@Schriock1,I joined my friend @ilyseh in Pennsylvania today to support @wildforcongress. Susan is the true pro-choice champion… https://t.co/O4SGGkYuX7 +05/07/2018,Politicians,@Schriock1,Pennsylvania is a state where @emilyslist wants to make a BIG impact up and down the ballot. I'm proud of my team f… https://t.co/OFUtUqACWJ +05/05/2018,Politicians,@Schriock1,"RT @MurrayCampaign: There’s that saying, behind every great man is a great woman. The truth? Behind every strong woman is a whole lot of ot…" +05/04/2018,Politicians,@Schriock1,This is infuriating. My dad is a veteran and a Democrat. And he is proud of his country. This is not the kind of le… https://t.co/ctAy9aMDoW +05/04/2018,Politicians,@Schriock1,".@DianneFeinstein has been a champion for California, passing critical and groundbreaking legislation. We need her… https://t.co/0fAtcRGNHr" +05/04/2018,Politicians,@Schriock1,Arizona and Nevada are our best pickup opportunities this year! @kyrstensinema and @RosenforNevada are two of the s… https://t.co/Q8HdNI47NF +05/04/2018,Politicians,@Schriock1,"An achievement like this doesn't happen overnight. @emilyslist has been working for years to recruit, train, suppor… https://t.co/8fpCYma1bf" +05/03/2018,Politicians,@Schriock1,"Exactly! Florida needs a governor with Gwen's focus, determination, and empathy. https://t.co/1I1JrUPAqV" +05/03/2018,Politicians,@Schriock1,".@KamalaHarris and @elizabethforma are with @katieporteroc, and so is @emilyslist! https://t.co/pPLIF171SL" +05/03/2018,Politicians,@Schriock1,"We're so proud to endorse @senatorkelly today. Kansas deserves a governor who will be a champion for families, and… https://t.co/0Tk61vozPb" +05/02/2018,Politicians,@Schriock1,"The only ""disgraceful"" thing I see here is an administration more interested in engaging in baseless, petty fights… https://t.co/s75KEpM4XM" +05/02/2018,Politicians,@Schriock1,"RT @creynoldsnc: .@Schriock1 on why @emilyslist is so focused on state legislatures: +1) They make big and often bad policy +2) They do redis…" +05/02/2018,Politicians,@Schriock1,"Thank you @KamalaHarris for endorsing @StaceyAbrams! She's the best candidate to be Georgia's next governor, and we… https://t.co/rtdEcMzvX7" +05/02/2018,Politicians,@Schriock1,Congratulations @mad4pa! This is a well-earned endorsement. We can't wait to help you win in #PA04! https://t.co/NEV9CCyrLP +05/01/2018,Politicians,@Schriock1,"Another reason we need new leadership? Thanks to the GOP's sabotage, four million Americans have lost health insura… https://t.co/sWUiFT5MHB" +05/01/2018,Politicians,@Schriock1,We need new leadership in Congress. Lawmakers are being personally enriched by the tax bill they passed while famil… https://t.co/hCxSRqq92n +05/01/2018,Politicians,@Schriock1,"That'll be the day. Thankfully, @jontester will keep fighting for veterans because he knows they deserve the very b… https://t.co/YTpcVkXCyy" +04/30/2018,Politicians,@Schriock1,"Oh COME ON. How could anyone, much less anyone working in the TRUMP administration, say this with a straight face?… https://t.co/jIWgAUlyTD" +04/30/2018,Politicians,@Schriock1,"I love this photo of the three of us! No matter what's next for you, your fellow Charlie's Angels have your back! https://t.co/ySXwTDUxdN" +04/30/2018,Politicians,@Schriock1,"Today may be @CecileRichards' last day at Planned Parenthood, but her legacy of activism will be felt for years!… https://t.co/IkxwafimF6" +04/29/2018,Politicians,@Schriock1,RT @votevets: Our @will_c_fischer spoke with Montana @SenatorTester about the fight to protect our #VA from being destroyed and privatized.… +04/29/2018,Politicians,@Schriock1,.@jontester is a good man and a good senator who is upholding his constitutional duty to thoroughly vet the next le… https://t.co/BUShMdp7Zf +04/29/2018,Politicians,@Schriock1,"Just incredible. Trump's VA nominee withdrew after multiple disturbing allegations, and now Trump's throwing a tant… https://t.co/bOcMe9Hkbr" +04/28/2018,Politicians,@Schriock1,"Thank you, @RuthMarcus, for highlighting heroes like @tammyduckworth this week. Times continue to change, and still… https://t.co/oBws72s1rd" +04/27/2018,Politicians,@Schriock1,Thank you @JeanneShaheen. We need to elect a wave of pro-choice Democratic women to protect our health care from Tr… https://t.co/qjojevDOHU +04/26/2018,Politicians,@Schriock1,More than ONE HUNDRED AND THIRTY Democratic women have filed to run for state legislative seats in Michigan. I'm so… https://t.co/I2C3SI3kPW +04/26/2018,Politicians,@Schriock1,"RT @JasonKander: Great to share a stage with @SymoneDSanders, @Schriock1 & Cleo Wade at @92Y's event last week. Heard that Cleo has been po…" +04/26/2018,Politicians,@Schriock1,"Now THAT's impressive! It may take some serious courage to climb like that, but it takes even more to put your name… https://t.co/YssdpsvKWG" +04/26/2018,Politicians,@Schriock1,Thank you @BetsyforIL and @vgescobar for inspiring the @emilyslist team today! https://t.co/BJyvoCSH3s +04/26/2018,Politicians,@Schriock1,We're so proud to endorse these excellent women today! https://t.co/SrRHLDUE0U +04/26/2018,Politicians,@Schriock1,We have a really exciting opportunity to flip #GA07 this cycle! @Carolyn4GA7 is a passionate defender of health car… https://t.co/1wHtbQrVYz +04/26/2018,Politicians,@Schriock1,"This is a race we're very excited about. We can flip #GA06, and @LucyWins2018 is absolutely the best candidate to d… https://t.co/QI35syStu0" +04/25/2018,Politicians,@Schriock1,Thank you @jontester for your steadfast leadership on behalf of our veterans and your work every day to improve the… https://t.co/XFW9PaJK83 +04/25/2018,Politicians,@Schriock1,"Absolutely disgusting that Blankenship is playing on Trump's crude ""Lock her up!"" chant in his campaign ads. He's t… https://t.co/63ZZP4uEbT" +04/25/2018,Politicians,@Schriock1,"I'm so proud of what @hiral4congress accomplished last night. Democrats overall are making gains, and we know a wav… https://t.co/Zv7O4RTCV4" +04/25/2018,Politicians,@Schriock1,"Congratulations, @Shelley4Senate! https://t.co/JSLfx9oF6N" +04/24/2018,Politicians,@Schriock1,"RT @CNBC: With Trump in the White House, stakes are higher than ever for @EMILYsList and Democratic women. “We just have to win,” Stephanie…" +04/24/2018,Politicians,@Schriock1,"RT @emilyslist: There are state legislatures around the country that are ready to flip from red to blue. And we're working with 1,200 women…" +04/23/2018,Politicians,@Schriock1,"Thanks for sharing, @chelseahandler. I know she will! We were so proud to award her the @GabbyGiffords Rising Star… https://t.co/sfIVUJY8z0" +04/23/2018,Politicians,@Schriock1,Farmworkers and domestic workers MUST have legal protections against workplace sexual violence. It's what EVERY wor… https://t.co/LB4SXOhn8T +04/23/2018,Politicians,@Schriock1,RT @BBCNewsnight: “I honestly sometimes feel we’ve been practising for three decades for this moment” – President of EMILY's List Stephanie… +04/23/2018,Politicians,@Schriock1,Looking forward to joining @BBCNewsnight to talk about this historic election cycle and our incredible pro-choice D… https://t.co/Z5lROLKIOa +04/21/2018,Politicians,@Schriock1,"Had so much fun with @JasonKander, @SymoneDSanders and @withlovecleo at @92Y tonight! Gotta say, having my face on… https://t.co/x0xKrBjuov" +04/20/2018,Politicians,@Schriock1,Democrats in Colorado are running in every. Single. Seat. https://t.co/CooyjwiArM +04/20/2018,Politicians,@Schriock1,.@mad4pa can hold a critical blue seat in #PA04. Thrilled to endorse her today! https://t.co/0A5wVMgzFG +04/20/2018,Politicians,@Schriock1,.@LeslieCockburn can flip a crucial red seat blue in #VA05! We all need to do everything we can to help her win thi… https://t.co/0VS83QUtbT +04/20/2018,Politicians,@Schriock1,.@nancysoderberg is such an incredible candidate who can flip a red seat blue in Florida! It was so wonderful getti… https://t.co/5pokx3khR9 +04/20/2018,Politicians,@Schriock1,Congratulations Pamela Goodman (@lwvfvoter) on being named the new executive director of @RuthsListFL! +04/20/2018,Politicians,@Schriock1,This is our bench of candidates. These are the leaders who will introduce legislation and set policy agendas. This… https://t.co/PMssFBRscu +04/20/2018,Politicians,@Schriock1,"36,000 women have reached out to tell us they want to run for office. Imagine how much higher that number could be next cycle!" +04/20/2018,Politicians,@Schriock1,"But I've said it before and I'll say it again, this isn't a wave — this is a sea change. Did you notice our previou… https://t.co/uYdmhJ5K61" +04/20/2018,Politicians,@Schriock1,You can't talk about a blue wave in 2018 without talking about the wave of women who are going to win back seats up… https://t.co/6jTrW3RcGg +04/20/2018,Politicians,@Schriock1,"And that's just at the federal and gubernatorial level. On the state and local level, the good news continues! EMIL… https://t.co/N4UtLoG2tz" +04/20/2018,Politicians,@Schriock1,"Of these 70 women, 34 can flip red House seats and two can flip red Senate seats. That's enough pro-choice Democrat… https://t.co/ob2y6pt4yw" +04/20/2018,Politicians,@Schriock1,"This is incredible — and we've got even more great endorsements on the way! + +Let's put these numbers in context. B… https://t.co/ON4XLQc8y3" +04/19/2018,Politicians,@Schriock1,"After 7 years, @ScandalABC is ending tonight. Congrats to @shondarhimes, @kerrywashington, and @JoshMalina for an incredible run!" +04/19/2018,Politicians,@Schriock1,".@tammyduckworth, you and Maile Pearl look amazing. Congratulations again, and thank you for making history! https://t.co/1wKRvvEO53" +04/19/2018,Politicians,@Schriock1,This is why we need more women and more Democrats in office. Period. https://t.co/97e8lmh6z2 +04/19/2018,Politicians,@Schriock1,RT @TinaSmithMN: An absolute joy to be with @emilyslist and @Schriock1 tonight. Their work helping elect pro-choice women is more important… +04/19/2018,Politicians,@Schriock1,".@MurrayCampaign has been a fearless champion for women and families in the Senate. Tonight, I was so proud to pres… https://t.co/qyoZ7imre4" +04/19/2018,Politicians,@Schriock1,I'm so proud to welcome @GabbyGiffords and @HelenGym2015 to the #WeAreEMILY gala to help us present the 2018 Gabrie… https://t.co/A8QLbkUvxs +04/18/2018,Politicians,@Schriock1,"Thank you @anidifranco for that incredible performance, and for all your work to help us #ElectWomen in 2018! #WeAreEMILY" +04/18/2018,Politicians,@Schriock1,RT @MurrayCampaign: Can't wait! https://t.co/iJXA792ui3 +04/18/2018,Politicians,@Schriock1,"It's been a great day at the #WeAreEMILY conference! Tonight, we'll hear from incredible pro-choice Democratic wome… https://t.co/a1rbwaYW6Z" +04/18/2018,Politicians,@Schriock1,"Good afternoon! #WeAreEMILY is in full-swing now! Coming up this afternoon: Our ""Not Just Another Year of the Woman… https://t.co/sKkDmEvuNU" +04/18/2018,Politicians,@Schriock1,What an exceptional panel! Every single one of these women is going to go on to do incredible things. #ElectWomen… https://t.co/BKfRgHyzD6 +04/16/2018,Politicians,@Schriock1,These women are a testament to the strength of our movement. Women are fired up & ready to take back our country fr… https://t.co/Ygxp3LVwDU +04/13/2018,Politicians,@Schriock1,"RT @jmpalmieri: Thanks, Schriock! Sure are a lot of women candidates we got out there to advise and admire! #EmilysList https://t.co/CYBpc3…" +04/13/2018,Politicians,@Schriock1,"Big congrats to @jmpalmieri and @CecileRichards. Their books ""Dear Madam President"" and ""Make Trouble"" are leading… https://t.co/bma9aWXt1M" +04/13/2018,Politicians,@Schriock1,".@NHMollyKelly knows the challenges working families face because she’s experienced them herself. Meanwhile, Gov. C… https://t.co/kKyISC0kWJ" +04/12/2018,Politicians,@Schriock1,RT @jess_mc: New Yorkers! On 4/20 activists @SymoneDSanders & @JasonKander will be @92Y for a lively discussion on the change we want to se… +04/11/2018,Politicians,@Schriock1,Thank you @RonBieberMI and @MIAFLCIO! @GretchenWhitmer is a champion for working families in MI! https://t.co/4jBuW6w9rY +04/11/2018,Politicians,@Schriock1,"Thank you @JerryBrownGov for endorsing @DianneFeinstein! You're exactly right, Sen. Feinstein is the person we need… https://t.co/XBZ0BSe9iZ" +04/11/2018,Politicians,@Schriock1,.@KamalaHarris's questions during this panel were pointed and persistent. She's an advocate for her constituents an… https://t.co/6cZ39ac2Yo +04/11/2018,Politicians,@Schriock1,RT @TaranaBurke: New Yorkers HEADS UP! On 4/20 activists @SymoneDSanders & @JasonKander will be @92Y for a lively discussion on the change… +04/11/2018,Politicians,@Schriock1,"RT @katieporteroc: Grateful for the shout-out from @emilyslist president @Schriock1 on @thenation's ""Start Making Sense"" podcast hosted by…" +04/11/2018,Politicians,@Schriock1,Good riddance. Paul Ryan loved nothing more than pushing viciously anti-woman budgets. Under his leadership - if we… https://t.co/mdEkWN6I51 +04/10/2018,Politicians,@Schriock1,"Happy birthday @DoloresHuerta! Thank you so much for your activism, your dedication, and your persistence! https://t.co/Q9j4Pck3lt" +04/10/2018,Politicians,@Schriock1,This is excellent news. The recall petitions were an underhanded attempt to undermine voters and remove two of our… https://t.co/QVucddURcd +04/10/2018,Politicians,@Schriock1,"RT @emilyslist: Hi @emilyslist community! My name is @MikieSherrill, and I’m running for Congress in #NJ11. I’ll be taking over the EMILY’s…" +04/09/2018,Politicians,@Schriock1,"This is excellent news! The @emilyslist team has been hard at work recruiting women to run. Some, like… https://t.co/edys4zk2ip" +04/09/2018,Politicians,@Schriock1,Congratulations @tammyduckworth! And a very happy birthday to baby Maile Pearl! ❤️ https://t.co/idiTbZhgtQ +04/09/2018,Politicians,@Schriock1,Thanks @davidaxelrod! I had a great time talking with you for the #AxeFiles. A wave of women IS coming! https://t.co/vCjmX1eJu9 +04/09/2018,Politicians,@Schriock1,"This is a great piece on @rweingarten's leadership during the teachers' strikes. As Randi says, ""the time for passi… https://t.co/5J0PBYVmVS" +04/06/2018,Politicians,@Schriock1,"Thank you for your leadership, @NancyPelosi. It's time for Pruitt to go. https://t.co/C23U8Ar89G" +04/06/2018,Politicians,@Schriock1,So proud to endorse @Axne4Congress today! We've got a great opportunity to flip a red seat blue in #IA03. https://t.co/rsy6dcxBgx +04/05/2018,Politicians,@Schriock1,Congratulations @denisejuneau! Seattle's students are very lucky to have you! https://t.co/6jZA7t05oB +04/05/2018,Politicians,@Schriock1,Well done! Congrats! https://t.co/0Fk2UCkuYf +04/05/2018,Politicians,@Schriock1,I had such a great time at last night's reception hosted by the wonderful @genevievethiers! https://t.co/ZbFdJSkUts +04/05/2018,Politicians,@Schriock1,"Thanks @JonWiener1 for talking with me on @thenation podcast! Our women have a real chance of flipping the House, b… https://t.co/H3JqbBZIOF" +04/05/2018,Politicians,@Schriock1,"We're driven by care for our friends & family who need access to health care & repro health care. +We're driven by c… https://t.co/8VzfOnc8MA" +04/04/2018,Politicians,@Schriock1,"RT @hiral4congress: Thanks, Stephanie! Here in #AZ08, we appreciate your energy & enthusiasm! https://t.co/n2FDWPkLBp" +04/04/2018,Politicians,@Schriock1,Great news out of Wisconsin last night! This incredible energy isn't going away. Let's keep it going so we can get… https://t.co/UNHuNcnLbI +04/04/2018,Politicians,@Schriock1,You all helped Conor Lamb flip a tough seat from red to blue. Now we need to help @hiral4congress win her special e… https://t.co/1CBqWgtkz1 +04/04/2018,Politicians,@Schriock1,"Congratulations, @sydneykamlager! We're so proud of you! https://t.co/gslEY6z3O3" +04/04/2018,Politicians,@Schriock1,Congrats @RealLyndaCarter! You so deserve it. https://t.co/jcFd9FsXhP +04/03/2018,Politicians,@Schriock1,"This is wonderful! Just like we need more women running for office, we need more women working on and leading their… https://t.co/q5UnM2L6Rc" +04/02/2018,Politicians,@Schriock1,I love this excerpt from @CecileRichards's new book. Pro-choice Democratic women in Congress were KEY to passing a… https://t.co/ibtDFiasx7 +04/02/2018,Politicians,@Schriock1,"The teachers in Oklahoma, Kentucky, and Arizona who are organizing for their classrooms are incredible. And I'm pro… https://t.co/KJehVrZQr4" +04/02/2018,Politicians,@Schriock1,"Arla Harrell reminds me of my grandfathers, who both fought in WWII. @McCaskill4MO is the daughter of a veteran, an… https://t.co/bQKaPJYv8A" +03/30/2018,Politicians,@Schriock1,Another state is seeing an increase in the number of women stepping up to run for office! I'm so proud of these new… https://t.co/biKvzVVXxY +03/30/2018,Politicians,@Schriock1,"I'll be the first to say that women usually face more challenges when running for office. But this year, voters WAN… https://t.co/BjkVvhe5dD" +03/29/2018,Politicians,@Schriock1,"Happy birthday to my friend, the extraordinary and dedicated @emilyslist's executive director, @emilyanncain! https://t.co/o6zHLQHfgs" +03/29/2018,Politicians,@Schriock1,It was so wonderful to welcome @nicoleboxer to the @emilyslist office to talk about all of the women we can elect i… https://t.co/W9WqPyY54n +03/28/2018,Politicians,@Schriock1,"RT @SEIU: “At the end of the day, the people who suffer most when unions are under attack are the same people whose rights are being threat…" +03/28/2018,Politicians,@Schriock1,Happy belated birthday @NancyPelosi! https://t.co/PXDR3kEd6M +03/28/2018,Politicians,@Schriock1,"What an excellent profile of @MurrayCampaign! Sen. Murray is tenacious, persistent, & always finds a way to build b… https://t.co/zrpZx0SDS3" +03/22/2018,Politicians,@Schriock1,Snowed in to NYC but luckily we get to see Come From Away. The women in this show are amazing! https://t.co/kegERtjOwq +03/21/2018,Politicians,@Schriock1,"RT @AM2DM: EMILY's List president @Schriock1, She Should Run founder @erinlooscutraro, and Congressional candidate @ginaortizjones join #AM…" +03/21/2018,Politicians,@Schriock1,"RT @emilyslist: Both @ginaortizjones and @Schriock1 agree: Women have to run for office, or help another woman run and win! Sign up with #R…" +07/02/2018,Politicians,@ninaturner,https://t.co/lOvd2aPkiZ +07/02/2018,Politicians,@ninaturner,@FactProgressive 😊 +07/02/2018,Politicians,@ninaturner,@JenniferJMcG 🤗 +07/02/2018,Politicians,@ninaturner,My pleasure! I always enjoy coming face to face with the future @zeldalaflame https://t.co/YJ3iVolrc6 +07/02/2018,Politicians,@ninaturner,RT @RealTimBlack: You’re still blaming @SusanSarandon? Susan didn’t swing an election. What your basically saying is Susan’s more influenti… +07/02/2018,Politicians,@ninaturner,"@RealTimBlack @SusanSarandon I can’t believe these folks, but then again....😒😳🤦🏾‍♀️. Keep standing strong!" +07/02/2018,Politicians,@ninaturner,@BonoWoodworth @PaulDeCristofo4 @Ocasio2018 Awesomeness!! +07/02/2018,Politicians,@ninaturner,"RT @NomikiKonst: PROGRESSIVE WOMEN are taking over New York State. Here are some of my faves that I recommend giving to, volunteering for a…" +07/02/2018,Politicians,@ninaturner,"RT @davidsirota: In a functioning democracy, it wouldn’t be a shock that @Ocasio2018 defeated Crowley. It would instead be shocking that a…" +07/02/2018,Politicians,@ninaturner,RT @feedjess: Fantastic explanation of the reasons @Ocasio2018 won by @NomikiKonst on Friday’s @majorityfm episode. Hint: it’s not because… +07/02/2018,Politicians,@ninaturner,"RT @LukewSavage: The ""moderate"", ""pragmatic"" wing of the Democratic Party that oversaw the last presidential election lost Ohio, Indiana, W…" +07/02/2018,Politicians,@ninaturner,@LukewSavage @NomikiKonst HELLO! +07/02/2018,Politicians,@ninaturner,@BonoWoodworth @PaulDeCristofo4 @Ocasio2018 Blessed and you? +07/02/2018,Politicians,@ninaturner,@PaulDeCristofo4 @Ocasio2018 Hello Paul! +07/01/2018,Politicians,@ninaturner,"RT @Ocasio2018: With respect to the Senator, strong, clear advocacy for working class Americans isn’t just for the Bronx. + +Sen. Sanders won…" +07/01/2018,Politicians,@ninaturner,@Ocasio2018 HELLO! +07/01/2018,Politicians,@ninaturner,🤔5 facts behind America's high incarceration rate - CNN https://t.co/bBUm3sT5Cv +07/01/2018,Politicians,@ninaturner,"RT @OurRevolution: On the last day of #PrideMonth we honor Sylvia Rivera. Present at the Stonewall Riots, she was a legendary activist and…" +07/01/2018,Politicians,@ninaturner,"RT @OurRevolution: #Janus was brought about in an attempt to dismantle the real, concrete power that working people have when they organize…" +07/01/2018,Politicians,@ninaturner,"RT @davidsirota: 26 percent of Colorado's Democratic primary vote was from independents: https://t.co/8MEyAwYnXJ + +That Dem primary elector…" +07/01/2018,Politicians,@ninaturner,RT @ProjectBernie16: Our Future Is @BenJealous As Maryland's Next Governor. https://t.co/eWOytNCsGN +07/01/2018,Politicians,@ninaturner,There. It. Is! @JamesHaslamVT https://t.co/NjpZWfKf0Z +07/01/2018,Politicians,@ninaturner,"RT @JamesHaslamVT: ”..They want the ocean without the awful roar of its many waters.The struggle may be a moral one, or it may be a physica…" +07/01/2018,Politicians,@ninaturner,RT @JamesHaslamVT: On RAD People Power Tour @ninaturner explained how the US has had 3 revolutions already in 18th Century (Revolutionary W… +07/01/2018,Politicians,@ninaturner,@JamesHaslamVT @RightsVT @RightsNH @OurRevolution @NESRIorg Indeed!!! +07/01/2018,Politicians,@ninaturner,"😂, yes they do. I was in that barn! Big ups to @RightsVT @RightsNH and @OurRevolution for the 8-stop #PeoplePower T… https://t.co/PDNrkzohx2" +07/01/2018,Politicians,@ninaturner,RT @RightsNH: “I consider myself a hell-raising humanitarian.” Sen. @ninaturner of @OurRevolution #nhpolitics https://t.co/lhFdw7Im1Q +07/01/2018,Politicians,@ninaturner,RT @RevJJackson: https://t.co/LgBOr5vgkA: President Trump calls the press the 'enemy of the people'. Do you agree? #PresidentTrump #media #… +06/30/2018,Politicians,@ninaturner,"RT @YWCAUSA: ""Why is there such fascination with & fetishization of black women’s strength, but such failure to support us when we experien…" +06/30/2018,Politicians,@ninaturner,"RT @TamikaDMallory: Family, I’m back at @essencefest this year! Register at https://t.co/pTYKGDLC07 +#EssenceFest https://t.co/2fgk8YKUJd" +06/30/2018,Politicians,@ninaturner,@TamikaDMallory @essencefest Work it! +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Regardless of your zip code — whether you live in a city of 800,000 or a town of 8,000 — in the richest country on the f…" +06/30/2018,Politicians,@ninaturner,RT @OurRevolution: On what planet is it remotely acceptable to have 3-year-old children in courts of law to plead their cases for why they… +06/30/2018,Politicians,@ninaturner,"RT @j0nny5: I feel like this is the thing that too many Americans do not understand. You need to work for a better tomorrow, even if you do…" +06/30/2018,Politicians,@ninaturner,@scapelliti @PortiaABoulger @TaraLSamples @_SemaHernandez_ @jjz1600 @GeoffMiami @OurRevolution @BernieNina2020… https://t.co/xakckzdpUo +06/30/2018,Politicians,@ninaturner,RT @SenSanders: Thank you to the thousands of people turning out today to protest Trump's cruel policy of separating families. The United S… +06/30/2018,Politicians,@ninaturner,RT @RightsNH: If you enjoyed our Congressional forum - you’ll like our gubernatorial forum starting soon in Plymouth with Sen @ninaturner o… +06/30/2018,Politicians,@ninaturner,"RT @RightsNH: ""Nobody aspires to be poor... It is about a flat-out rigged system that leaves the working class behind."" -@ninaturner of @Ou…" +06/30/2018,Politicians,@ninaturner,"RT @RightsNH: It's our turn with @ninaturner today New Hampshire! Keene, Manchester, then Plymouth. Details: https://t.co/jRo0gEEEgk #nhpol…" +06/30/2018,Politicians,@ninaturner,RT @scapelliti: What political consultant Lloyd Green means is that 𝗘𝘀𝘁𝗮𝗯𝗹𝗶𝘀𝗵𝗺𝗲𝗻𝘁 Democrats can kiss swing voters goodbye. So can Republica… +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Tomorrow night, in Burlington, Vermont, join Our Revolution President @ninaturner and @RightsVT for ‘From Protest to Pow…" +06/30/2018,Politicians,@ninaturner,RT @RightsVT: “We must be willing to plant trees whose shade we will never enjoy.” Sen. @ninaturner of @OurRevolution in #Rutland #VT #vtpo… +06/30/2018,Politicians,@ninaturner,"RT @iteptweets: Instead of further counteracting income inequality, the Tax Cuts and Jobs Act will make it much worse: https://t.co/MYSyOB3…" +06/30/2018,Politicians,@ninaturner,"RT @SenWarren: Tomorrow, thousands of Puerto Rican evacuees will lose federal housing assistance & many will be left homeless. @FEMA refuse…" +06/30/2018,Politicians,@ninaturner,"RT @commondreams: Five Justices Cannot Break the Solidarity of America’s Unions +https://t.co/FQ5eZMIBet +@AFSCME prez says union unbowed by…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: Our Revolution is proud to endorse +➡️ @PramilaJayapal +➡️ @standwithraul +➡️ @TulsiGabbard +for re-election. Pramila, Ra…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: In New York, for State Senate, we’re proud to endorse +➡️ @jessicaramos +➡️ @jasirobinson34 +➡️ @SRachelMay +➡️ @zellnor4n…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: “We must plan, we must organize, we must strategize, we must come together."" +Our Revolution President @ninaturner is LIV…" +06/30/2018,Politicians,@ninaturner,"RT @OurRevolution: #PrideMonth is almost over, but you can still get your Our Revolution Pride gear in our shop! https://t.co/wUJWW15nWS ht…" +06/30/2018,Politicians,@ninaturner,"RT @KiahMorrisVT: So I end my own erasure through writing my truths to create a permanent record. And I will speak my truths wherever, and…" +06/30/2018,Politicians,@ninaturner,RT @RightsNH: “There’s no greater force on this Earth than collective people power.” Sen. @ninaturner of @OurRevolution closing out our Kee… +06/30/2018,Politicians,@ninaturner,RT @RightsVT: If you missed Sen. @ninaturner of @OurRevolution yesterday - she’s barnstorming our neighbors in NH today on her way back to… +06/30/2018,Politicians,@ninaturner,@kroton13 🤗 +06/30/2018,Politicians,@ninaturner,"RT @PortiaABoulger: This right here, family. This is what it is about. .@ninaturner knows that we are in this for the long haul - yes, for…" +06/30/2018,Politicians,@ninaturner,RT @janeedoc: @robdelaney @dsam4a @DemSocialists @OurRevolution @keithellison @SenSanders @crulge @justicedems @WaywardWinifred @ninaturner… +06/30/2018,Politicians,@ninaturner,RT @EmilyForCO: Thank you to @OurRevolution & @OurRevDenver for your support during the campaign. It's an honor to be named here along with… +06/30/2018,Politicians,@ninaturner,RT @BenJealous: I was proud to be arrested outside of Trump’s White House standing up for our DREAMers and helping to steer passage of the… +06/30/2018,Politicians,@ninaturner,RT @BernieSanders: The people of Maryland understand that we can most effectively oppose Donald Trump's extremism with strong progressive l… +06/30/2018,Politicians,@ninaturner,"RT @christineforvt: What a great series of events today with @ninaturner, @momdogz, @RightsVT, & @OurRevolution in Bristol, Rutland, and Be…" +06/30/2018,Politicians,@ninaturner,RT @RobinScheu: We should be doing this in Vermont - and could have but for @GovPhilScott’s vetos. MA Gov. Charlie Baker signed a bill Thur… +06/30/2018,Politicians,@ninaturner,@PauloFaustini @BernieSanders @TYTNetwork Sending that love right back! +06/30/2018,Politicians,@ninaturner,RT @PortiaABoulger: .@ninaturner! So incredible! Always lifting us up. Always giving us the hope and strength to believe in ourselves - to… +06/30/2018,Politicians,@ninaturner,@PortiaABoulger @TaraLSamples @_SemaHernandez_ @jjz1600 @GeoffMiami @OurRevolution @BernieNina2020 @appalachians_r… https://t.co/ROeSHD8ICB +06/29/2018,Politicians,@ninaturner,"RT @RightsVT: ""All that we love is on the line - we must keep going, we must never stop. We can turn this thing around."" - Sen. @ninaturner…" +06/29/2018,Politicians,@ninaturner,RT @PortiaABoulger: @ninaturner @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600 @JimHight… +06/29/2018,Politicians,@ninaturner,@PortiaABoulger @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600… https://t.co/NsIKwNRMD3 +06/29/2018,Politicians,@ninaturner,"@OurRevolution in Bristol, VT with Michael Castelli who is a new volunteer for our texting team. 👏👏 +@RightsVT https://t.co/q48eUQ9DT6" +06/29/2018,Politicians,@ninaturner,RT @RightsVT: We’re live in Bristol with @MariInTheHouse & Sen. @ninaturner - watch on FB-> https://t.co/vnp6byhBKX #vt #btv #vtpoli +06/29/2018,Politicians,@ninaturner,RT @dsam4a: The UK's National Health Service spared @robdelaney's family from financial stress while they endured the grief of losing their… +06/29/2018,Politicians,@ninaturner,RT @PortiaABoulger: .@ninaturner knows we cannot have justice without love. Our movement is grounded in humanity - in the Golden Rule - in… +06/29/2018,Politicians,@ninaturner,@PortiaABoulger @BernieNina2020 @appalachians_r @VoteNoGMO @TaraLSamples @OurRevolution @OurPoliticalRev @jjz1600… https://t.co/UFGZORpN8a +06/29/2018,Politicians,@ninaturner,"RT @TheRealNews: Decisions in favor of gay marriage, abortion, affirmative action, limits on the death penalty and rectifying housing discr…" +06/29/2018,Politicians,@ninaturner,"RT @joshfoxfilm: Over 10,000 migrant children are now in US government custody at 100 shelters in 14 states https://t.co/wzFpS3joqf" +06/29/2018,Politicians,@ninaturner,RT @TheSandersInst: https://t.co/Gpllpbb2O7 +06/29/2018,Politicians,@ninaturner,RT @RightsVT: Lunch & conversation with Sen. @ninaturner of @OurRevolution in the RAD #BTV office as we fuel up for the start of our bi-sta… +06/29/2018,Politicians,@ninaturner,@DonnaMgraduates @RightsVT @OurRevolution @RightsNH Looking forward to it!!! +06/29/2018,Politicians,@ninaturner,"At the office of @RightsVT. If walls could talk they would say, “#People&PlanetOverProfit and #WaterIsLife… https://t.co/kuMaQPyxgH" +06/29/2018,Politicians,@ninaturner,RT @RightsNH: How can we bring NH forward in this time of national distress? @ninaturner of @OurRevolution & @AndruVolinsky will discuss to… +06/29/2018,Politicians,@ninaturner,RT @quotebard: 👍#FridayFeeling #BoldMoves @RyanEliason @Ocasio2018 @ninaturner @CynthiaNixon @ZephyrTeachout https://t.co/ZAa60yMsIc +06/29/2018,Politicians,@ninaturner,"On Episode 5 of “We the People”, we talk Transformation with Sen. @BernieSanders. Listen in https://t.co/AGkSSNg2ki… https://t.co/sr2vf62Cum" +06/29/2018,Politicians,@ninaturner,@SusanSarandon You are a class act!❤️ +06/29/2018,Politicians,@ninaturner,"RT @Ocasio2018: We pulled off an enormous upset, against all established power and big money, because of a few groups and people that had t…" +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: Congratulations to @OurRevolutionTX for successfully overseeing the adoption of health care for all, criminal justice re…" +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @BenJealous on your primary victory tonight! https://t.co/n8552k1TOV +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @gacevero on your primary win tonight! https://t.co/RkRV3ccu2N +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @EmilyForCO on your primary victory last night! https://t.co/ficlOnR6Zx +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: The billionaire effort to derail public sector unions with the #Janus case will likely hit Black women hardest, who make…" +06/29/2018,Politicians,@ninaturner,"RT @OurRevolution: Keene, New Hampshire! +This Saturday, join Our Revolution President @ninaturner and @RightsNH for a discussion on how to…" +06/29/2018,Politicians,@ninaturner,@clintwj1s Welcome to America. +06/29/2018,Politicians,@ninaturner,"RT @SorenCSorensen: .@ninaturner's tweet included a graphic that displayed the Mother Jones quote, ""Some day the workers will take possessi…" +06/29/2018,Politicians,@ninaturner,"The day #MotherJones spoke of is today & everyday. We are on the move bringing justice where there is injustice, br… https://t.co/nPNMuJhlZ6" +06/29/2018,Politicians,@ninaturner,https://t.co/Ev4PhjVi2S +06/29/2018,Politicians,@ninaturner,https://t.co/nkdNm6KVir +06/29/2018,Politicians,@ninaturner,"Five dead in Capital Gazette shooting; suspect Jarrod Ramos is in custody, police say - The Washington Post https://t.co/b8CJfGmcK5" +06/29/2018,Politicians,@ninaturner,RT @cenkuygur: Alexandria Ocasio-Cortez Says She Might Use @seanhannity Segment As Ad for Herself https://t.co/83V2uBzXyE via @YouTube @Oca… +06/29/2018,Politicians,@ninaturner,RT @JamiaStarheart: @bbdevices @JYoungDjango @CBSNews https://t.co/cTqziwLj8l +06/29/2018,Politicians,@ninaturner,RT @OurRevolution: .@BenJealous assembled a movement comprised of working families that focused on bold solutions to help the working peopl… +06/29/2018,Politicians,@ninaturner,"RT @People4Bernie: .@SenSanders responds to Nancy Pelosi's comments: + +Both @Ocasio2018 and @BenJealous were ""candidates running grassroots…" +06/29/2018,Politicians,@ninaturner,RT @OurRevEssexNJ: Stand with unions! Yesterday’s SCOTUS decision was a major set back for working class people and #union rights. Keep fig… +06/29/2018,Politicians,@ninaturner,RT @dsam4a: How many of y’all like single payer healthcare? 🤗 https://t.co/ImxWIsXbO2 +06/29/2018,Politicians,@ninaturner,"RT @BenJealous: “Thank you Maryland. I am proud to stand before you as your Democratic nominee for governor.” + +Two nights ago, this movemen…" +06/29/2018,Politicians,@ninaturner,"RT @justicedems: LOL @ "" as a negative"". https://t.co/0jlfZjN2ev" +06/29/2018,Politicians,@ninaturner,"RT @CynthiaNixon: In case you're wondering about my position on marijuana, here it is. #TBT https://t.co/eYqUuG3Ona" +06/29/2018,Politicians,@ninaturner,RT @proviewsusa: #Bernie2020 Bernie is the leader of a FREE AMERICA! https://t.co/FzjODzxeL4 +06/29/2018,Politicians,@ninaturner,RT @joegarofoli: An African-American woman has NEVER served in a House leadership position in EITHER party. Rep. Barbara Lee wants to chang… +06/29/2018,Politicians,@ninaturner,RT @ShavedWookieeRN: Be the change: while our elected officials ignore the hurt many are facing to fight over who should have say in how be… +06/29/2018,Politicians,@ninaturner,@ShavedWookieeRN @Ocasio2018 @CynthiaNixon @ZephyrTeachout @BenJealous @OurRevolution Agreed! +06/28/2018,Politicians,@ninaturner,@SDeniseT Indeed +06/28/2018,Politicians,@ninaturner,@WaywardWinifred @lsarsour @RoseAnnDeMoro And we ❤️ you Winnie! +06/28/2018,Politicians,@ninaturner,@octaves5 @CNN I hear ya!!! +06/28/2018,Politicians,@ninaturner,@Clarknt67 @CNN You might be right. I was hoping not. This is certainly a “I couldn’t make this stuff up moment...h… https://t.co/eS7XOysBtE +06/28/2018,Politicians,@ninaturner,@bunkybun Right! +06/28/2018,Politicians,@ninaturner,Somebody definitely skipped their history classes!😒😱 ⁦@CNN⁩ https://t.co/N7YYH4CG2p +06/28/2018,Politicians,@ninaturner,RT @BenJealous: Deeply saddened about these unfolding events in Annapolis. Everyone please stay safe as the police assess the situation. ht… +06/28/2018,Politicians,@ninaturner,"RT @TwitterMoments: Police are responding to a shooting at the Capital Gazette newspaper's offices in Annapolis, Maryland, officials say. h…" +06/28/2018,Politicians,@ninaturner,"RT @PortiaABoulger: Are you listening? @DNC @OHDems? +""In an interview on MSNBC, Ocasio-Cortez said that Democrats need to focus their mess…" +06/28/2018,Politicians,@ninaturner,"RT @womensmarch: Today, 1,000 women will engage in nonviolent civil disobedience to protest the criminalization and detention of immigrants…" +06/28/2018,Politicians,@ninaturner,RT @lsarsour: Women are powerful. #WomenDisobey #EndFamilyDetention #EndFamilySeparation #AbolishICE https://t.co/1Z6524N0Lt +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: “We need to learn the lessons of teachers in states being led by West Virginia, and organize in different ways — we can…" +06/28/2018,Politicians,@ninaturner,"RT @RightsNH: Catch @ninaturner at 3 events we're proud to be hosting in Manchester, Plymouth, and Keene this Saturday! Details: https://t.…" +06/28/2018,Politicians,@ninaturner,RT @SusanSarandon: SAY HER NAME! ALEXANDRIA OCASIO-CORTEZ. https://t.co/VIpH5O3W5v +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: 📣 Vermont! +This Friday, don’t miss your chance to join Our Revolution President @ninaturner as she speaks at the @Rights…" +06/28/2018,Politicians,@ninaturner,"RT @ejmedia3: Forward together, not one step back! https://t.co/3xIdVUBC5m" +06/28/2018,Politicians,@ninaturner,"RT @WATL_news: @ninaturner @OurRevolution They said ""If you don't like it, run!"" - so we ran + +They said ""You can't raise enough money!"" - w…" +06/28/2018,Politicians,@ninaturner,"@wartrout89 Right, never let the truth get in the way of a good story." +06/28/2018,Politicians,@ninaturner,@bluntedpurpose For all of us. +06/28/2018,Politicians,@ninaturner,"RT @ProjectBernie16: The Truth Won Yesterday. +And The Truth Will Win Again In November. + +The Truth Is: @BenJealous Is Maryland's Next Gover…" +06/28/2018,Politicians,@ninaturner,@darts89119 @OurRevolution 😊🙏🏾 +06/28/2018,Politicians,@ninaturner,RT @stinaa1982: ❤️❤️❤️ https://t.co/47z7J39xmN +06/28/2018,Politicians,@ninaturner,Just beautiful! @OurRevolution #ThursdayThoughts https://t.co/UwCVr9sWsw +06/28/2018,Politicians,@ninaturner,@mjfree Ooooooooweeee!!!! +06/28/2018,Politicians,@ninaturner,@mikelove719 Good morning Mike. +06/28/2018,Politicians,@ninaturner,"RT @OurRevolution: Last night “...shows us that when we double down on progressive issues, pound the pavement like our life depends on it,…" +06/28/2018,Politicians,@ninaturner,https://t.co/JchwMTPIcp +06/28/2018,Politicians,@ninaturner,RT @EALindquist: Hey @CarolAmmons4IL let's get our friend @LitesaWallace to be selected for Executive Director of the Democratic Party of I… +06/28/2018,Politicians,@ninaturner,"RT @IllinoisWorking: REMINDER: ""Black women will be most affected by Janus"" (via @EconomicPolicy) + +#twill #ilgov #JANUSvsAFSCME +https://t.…" +06/28/2018,Politicians,@ninaturner,"RT @theRza2u: 🚨CALL TO ACTION🚨 + +⚬FAKE account. +⚬Please report. + +Page is IDENTICAL TO @ninaturner's. They are dm'ing, pretending to be her.…" +06/28/2018,Politicians,@ninaturner,RT @UniteThePoor: Some tourists have been wondering what this is. It’s the new and unsettling force for your liberation and mine! #PoorPeop… +06/28/2018,Politicians,@ninaturner,"RT @BenJealous: We won. We won BIG! + +As we say in the NAACP...Thank you to everyone who gave their time, their treasure or their talent!…" +06/28/2018,Politicians,@ninaturner,"RT @TulsiGabbard: .@Ocasio2018 Congratulations on your historic win last night! Throughout your activism and your campaign, you demonstrat…" +06/27/2018,Politicians,@ninaturner,"RT @fightfor15: BREAKING:  #SCOTUS has ruled against workers. We stand in solidarity with our public sector #union family, and stay focused…" +06/27/2018,Politicians,@ninaturner,"RT @LammanRucker: #Senator @NinaTurner dropping science and telling the #TRUTH about the power of big money influence in the campaign, elec…" +06/27/2018,Politicians,@ninaturner,@LammanRucker Thank you Lamman . It’s good to have your voice in this space. And you are doing the thing on @GreenleafOWN +06/27/2018,Politicians,@ninaturner,RT @commondreams: 'He Had the Machine... We Had the People': Alexandria Ocasio-Cortez Landslide Win Over Wall St. Favorite Joe Crowley http… +06/27/2018,Politicians,@ninaturner,"RT @foe_us: ""Being governor is about a lot more than putting out good policy papers—and it is in his leadership ability that @BenJealous ex…" +06/27/2018,Politicians,@ninaturner,@LammanRucker Thanks Lamman! +06/27/2018,Politicians,@ninaturner,RT @RightsVT: Join us Friday at 7PM in #Bennington for a gubernatorial forum feat. Guest Speaker @ninaturner of @OurRevolution -> Details:… +06/27/2018,Politicians,@ninaturner,"RT @NNUBonnie: Women of color stand to lose the most from the #Janus outcome. + +WOC face a double wage gap: a gender and a racial pay gap -…" +06/27/2018,Politicians,@ninaturner,"RT @NomikiKonst: There are going to be a million hot takes. Here’s mine: +@BenJealous and @Ocasio2018 are as progressive and grassroots as…" +06/27/2018,Politicians,@ninaturner,"RT @staceyabrams: Congratulations to @BenJealous - my dear friend, extraordinary leader & the next Governor of Maryland! Very proud of you…" +06/27/2018,Politicians,@ninaturner,"RT @Ocasio2018: This is the start of a movement. + +Thank you all." +06/27/2018,Politicians,@ninaturner,RT @NYDailyNews: Ice Cube's Big3 basketball league is counter-suing former employee who complained about Steve Bannon banter https://t.co/8… +06/27/2018,Politicians,@ninaturner,HELLO!!!!!! https://t.co/BXOvRylBfA +06/27/2018,Politicians,@ninaturner,RT @WaywardWinifred: The good people of Maryland deserve a governor who will fight like hell to win #MedicareForAll. Healthcare is a human… +06/27/2018,Politicians,@ninaturner,"RT @IAmMLKJrFilm: ""The president felt that he couldn't go back to the congress for another civil rights field"" MLK said ""We got to get the…" +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Vaughn4Maryland on your primary win tonight! https://t.co/DKRNgCrdbf +06/27/2018,Politicians,@ninaturner,RT @jjz1600: Message to “pundits” who said progressives were fading & the establishment was in control: GUESS AGAIN! We are in this for the… +06/27/2018,Politicians,@ninaturner,@jjz1600 @BenJealous @Ocasio2018 @OurRevolution Say that Doc! +06/27/2018,Politicians,@ninaturner,"Joe Jackson, musical family patriarch, dead at 89 - CNN https://t.co/wWDHUxZ6gr" +06/27/2018,Politicians,@ninaturner,"RT @DrAvariceJ: This is groundbreaking,earth shattering and truly signals the power of ordinary people rising up to make their voices heard…" +06/27/2018,Politicians,@ninaturner,"RT @EmilyForCO: Last night, we won a great victory - and when I say “we,” thats exactly what I mean. This campaign is not about me - it is…" +06/27/2018,Politicians,@ninaturner,@breakfastclubam bringing hip hop and politics together. I asked @icecube what words he has for folks in this momen… https://t.co/Q5eKd85PMr +06/27/2018,Politicians,@ninaturner,@JenniferW83 @OurRevolution Thank you +06/27/2018,Politicians,@ninaturner,Progressives are on the move. ⁦@OurRevolution⁩ ⁦@inthesetimesmag⁩ https://t.co/kB2upVwHBd +06/27/2018,Politicians,@ninaturner,@AsimSupreme Good morning! 🌞 +06/27/2018,Politicians,@ninaturner,RT @ChrisImes5: @ninaturner @OurRevolution @People4Bernie @justicedems @DFAaction @DemSocialists #BernItAllDown https://t.co/jLSlxEyDBK +06/27/2018,Politicians,@ninaturner,@ChrisImes5 @OurRevolution @People4Bernie @justicedems @DFAaction @DemSocialists True that! +06/27/2018,Politicians,@ninaturner,@LCellini @OurRevolution @Morning_Joe @DNC @Ocasio2018 @nytimes @NYDailyNews @CynthiaNixon Thank you! Team work! +06/27/2018,Politicians,@ninaturner,"We must never give up! Hope does spring eternal &with collective sweat equality, all things are possible! Congrats… https://t.co/QWlVsaqHtA" +06/27/2018,Politicians,@ninaturner,"RT @wildwestpie: @ninaturner @AdamUmak @BenJealous @OurRevolution @OurRevolutionMD ❤ you Nina! + +Thank you! + +Thank you! + +Thank you! + +Thank y…" +06/27/2018,Politicians,@ninaturner,"@wildwestpie @AdamUmak @BenJealous @OurRevolution @OurRevolutionMD Nevertheless, we keep pushing!" +06/27/2018,Politicians,@ninaturner,@AdamUmak @BenJealous @OurRevolution @OurRevolutionMD We are on the move! +06/27/2018,Politicians,@ninaturner,@couponpadawan @NanInKansas @BenJealous @OurRevolution @OurRevolutionMD @EmilyForCO Sending ❤️ back +06/27/2018,Politicians,@ninaturner,RT @kendrick38: Congrats @BenJealous 🙌🏽🙌🏽🙌🏽🙌🏽 https://t.co/CaUXyENlXD +06/27/2018,Politicians,@ninaturner,"RT @mddems: Congratulations to our next governor @BenJealous! While Larry Hogan shortchanges Marylanders, Ben’s bold progressive leadershi…" +06/27/2018,Politicians,@ninaturner,RT @NicholsUprising: Huge victory tonight for @BenJealous — a progressive who will be the Democratic nominee for governor of Maryland. A ke… +06/27/2018,Politicians,@ninaturner,@NanInKansas @BenJealous @OurRevolution @OurRevolutionMD @EmilyForCO Yes! +06/27/2018,Politicians,@ninaturner,RT @PatFromm: It's happening! #OurRevolution is living out the vision Bernie instilled in us. We won't stop until we reclaim this country #… +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @liuba4congress on your primary victory tonight! https://t.co/QZiklPl8b3 +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @DrHall38A on your primary victory tonight! https://t.co/dGQOkWPrdF +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Angela4OK on your primary victory tonight! https://t.co/Ps1cC7SyV1 +06/27/2018,Politicians,@ninaturner,"RT @OurRevolution: “@Ocasio2018 ran a bold campaign built on substance. She ran in the interest of the people, not corporate developers."" R…" +06/27/2018,Politicians,@ninaturner,RT @TYTNetwork: https://t.co/BoPv2L7paF +06/27/2018,Politicians,@ninaturner,RT @Jehane94: @ninaturner @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie @DFAaction #AnyOleBlueJustWontDo #AlexandriaOcasio… +06/27/2018,Politicians,@ninaturner,RT @NationalNurses: Nurses are excited that @BenJealous moves forward to November. This is a big win for #MedicareForAll. NNU's endorsed ca… +06/27/2018,Politicians,@ninaturner,Progressives...this!!!! Tonight and All. Life. Long! @OurRevolution @People4Bernie @justicedems @DFAaction… https://t.co/oUEWVHvKrC +06/27/2018,Politicians,@ninaturner,Progressives are on the move tonight baby! 🔥🔥🔥🔥 @BenJealous @OurRevolution @OurRevolutionMD https://t.co/5Sd68TeHZm +06/27/2018,Politicians,@ninaturner,RT @CiscoFever: @ninaturner @Ocasio2018 @OurRevolution The revolution continues!! #PoliticalEarthquake https://t.co/7qrDp7LjM9 +06/27/2018,Politicians,@ninaturner,"RT @johncusack: 1 country is moving towards new deal 2.0 +@pplsummit politics -@BernieSanders & @ninaturner and so many others have alre…" +06/27/2018,Politicians,@ninaturner,"RT @ninaturner: Ooooooooweee! Any ole blue, just won’t do! Team work @Ocasio2018 @OurRevolution @justicedems @nycDSA @People4Bernie @DFAact…" +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @jamie_raskin on your primary win tonight! https://t.co/cRY1YV4DkV +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @dana_balter on your primary victory tonight! https://t.co/33YleB655w +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @RobbieLeonard42 on your primary win tonight! https://t.co/gZAdbJNHX1 +06/27/2018,Politicians,@ninaturner,RT @BradleyRBloom: @ninaturner @proviewsusa @Ocasio2018 @OurRevolution I don’t think I’ve felt this feeling since you & Bernie were in NYC.… +06/27/2018,Politicians,@ninaturner,@BradleyRBloom @proviewsusa @Ocasio2018 @OurRevolution 😊 +06/27/2018,Politicians,@ninaturner,RT @ACLU: Today's Supreme Court ruling repeats the mistakes of the Korematsu decision. It takes the government lawyers' flimsy national sec… +06/27/2018,Politicians,@ninaturner,"RT @nycDSA: Congrats on the win, @Ocasio2018. The number of votes cast tonight—in what has been the lowest turnout district in the country…" +06/27/2018,Politicians,@ninaturner,@nycDSA @SenseOf_OUTRAGE @Ocasio2018 Say that!! +06/27/2018,Politicians,@ninaturner,@proviewsusa @Ocasio2018 @OurRevolution Indeed! +06/27/2018,Politicians,@ninaturner,RT @OurRevolution: Congratulations to @Ocasio2018 on your primary victory tonight! https://t.co/zBCKJAwnom +06/29/2018,Politicians,@MassAGO,Hard work. Discipline. Teamwork. Sports were a salvation for me. @scholarathletes https://t.co/BRNpQIT2UG +06/29/2018,Politicians,@MassAGO,"We are incredibly relieved that Elmer, Lubin, and their children are together again. Families like theirs deserve o… https://t.co/1wwBciVujZ" +06/29/2018,Politicians,@MassAGO,"After 5 weeks apart, the Oliva family is now safe and together in Massachusetts. They met with us yesterday to tell… https://t.co/FqcAW3NQNT" +06/29/2018,Politicians,@MassAGO,We need action if we are ever going to stop this madness. #Annapolis #Enough https://t.co/EG0SbRcsxs +06/28/2018,Politicians,@MassAGO,"Today the @MA_Senate joined the House in voting to raise the age to purchase tobacco products to 21.  + +This is huge… https://t.co/itSUfBebnk" +06/28/2018,Politicians,@MassAGO,"Today we grieve with #Annapolis. Tomorrow we can prevent the next shooting. + +The #EPRO law will prevent people fro… https://t.co/7LCTU7nFLR" +06/28/2018,Politicians,@MassAGO,"Many are feeling discouraged or wondering if anyone will take action to end this madness. + +The answer is yes. + +On… https://t.co/rbcPP0gRwD" +06/28/2018,Politicians,@MassAGO,"An elementary school. A movie theater. Churches. High schools. A concert. Now a newsroom in #Annapolis. + +Our heart… https://t.co/p4XtxTnjpo" +06/28/2018,Politicians,@MassAGO,"@Efifiknow @Roche_Bros Hi there, you can call our office's Consumer Assistance and Response Division at (617) 727-8… https://t.co/4kJPO1ZhRQ" +06/28/2018,Politicians,@MassAGO,TOMORROW: Join us for office hours in #Pittsfield at the Ralph Froio Senior Center. Meet our team and find help wit… https://t.co/xxab07oNJD +06/28/2018,Politicians,@MassAGO,"This shows us again that when working people organize and take collective action, they can fight for fair wages and… https://t.co/yiH9lRWGkn" +06/28/2018,Politicians,@MassAGO,Massachusetts will now guarantee paid family and medical leave and raise the minimum wage to $15 an hour.… https://t.co/xSaK52Bp3v +06/28/2018,Politicians,@MassAGO,Angelica is suing the Trump Administration and we stand with her. #FamiliesBelongTogether https://t.co/FcWrC8HuUP +06/28/2018,Politicians,@MassAGO,"Angelica and her 8 year old daughter were allowed entry into the US by an asylum officer, but the very next day the… https://t.co/LwwgG8IHVf" +06/27/2018,Politicians,@MassAGO,"Thank you @SpeakerDeLeo and the House, as well as the late Rep. Peter Kocot, for passing this bill and working to e… https://t.co/KUfC30I1h4" +06/27/2018,Politicians,@MassAGO,Voting is our most basic and essential right. Every citizen should be automatically registered to vote. Today the M… https://t.co/MXqtKacLGs +06/27/2018,Politicians,@MassAGO,如果你接到类似的电话或信息,应该立即挂掉电话或删除相关的信息。中国领事馆或大使馆是不会这样打电话向你要钱的。请从来不要把你的社会安全号码,银行卡号、信用卡号或其他敏感的信息通过电话方式提供给你不十分熟悉和完全信任的任何人。 +06/27/2018,Politicians,@MassAGO,你有没有接到过自称是从中国领事馆打来的电话?如果有,你并不是唯一的。全国各地都有人举报说接到过用普通话的这类电话或信息,向他们要钱或有关信用卡的信息。https://t.co/ntIcZJoUGJ +06/27/2018,Politicians,@MassAGO,"If you get a call or message like this, hang up or delete it. + +The real Chinese Consulate will not call you to ask… https://t.co/nQrKfFFwDb" +06/27/2018,Politicians,@MassAGO,Have you received a call from someone claiming to work for the Chinese Consulate? You're not alone. People across t… https://t.co/S0UQACbD1v +06/27/2018,Politicians,@MassAGO,The Massachusetts House just passed a bill that would ban subjecting minors to “conversion therapy.” We need to pro… https://t.co/eS9XPN1HxQ +06/27/2018,Politicians,@MassAGO,We met with middle school students in #Everett today to hear from them and talk about the risks of substance use.… https://t.co/MAmJnNcAQ1 +06/27/2018,Politicians,@MassAGO,"#SCOTUS just turned its back on millions of public sector workers who keep us safe, teach our children, and care fo… https://t.co/T8FiMLMRXs" +06/27/2018,Politicians,@MassAGO,"RT @MaddowBlog: ""It's illegal, it's unconstitutional, it's un-American, and we're going to continue to see the Trump administration in cour…" +06/27/2018,Politicians,@MassAGO,"What the President is doing to families in our country is not just immoral, it’s illegal. That’s what this lawsuit… https://t.co/2kI5LvokSN" +06/27/2018,Politicians,@MassAGO,"Purdue's executives led and directed an illegal business model, using addiction and deception to enrich themselves… https://t.co/Rir7fDf0BH" +06/27/2018,Politicians,@MassAGO,"We simply cannot trust the President to stop this. Today, with 17 AGs, we sued to #KeepFamiliesTogether. +https://t.co/8IwDbK9bKp" +06/26/2018,Politicians,@MassAGO,We're going to keep working with leaders in government and immigrant communities across Massachusetts to protect ev… https://t.co/7FNYjNCb30 +06/26/2018,Politicians,@MassAGO,I disagree with the court’s decision today and am proud that we successfully stopped the first two versions of the… https://t.co/Dd39njX6C5 +06/26/2018,Politicians,@MassAGO,"We have a responsibility as a nation to protect children and keep families together. + +Join me live with @Maddow at… https://t.co/589oStdVOW" +06/26/2018,Politicians,@MassAGO,The Trump Administration is inflicting devastating and long-lasting trauma on these children and thousands of other… https://t.co/gqGL2xXMOO +06/26/2018,Politicians,@MassAGO,Two Guatemalan children were separated from their mother and held in Michigan for five weeks. The children have bee… https://t.co/Ib53ijtREU +06/26/2018,Politicians,@MassAGO,"As a result of this unconstitutional policy, a mother — now in Hyannis after an asylum officer found she faces pers… https://t.co/Wz7O73YQHm" +06/26/2018,Politicians,@MassAGO,"#BREAKING We just sued the Trump Administration to end the cruel and illegal policy of tearing apart families, reun… https://t.co/YkZQIkukeL" +06/26/2018,Politicians,@MassAGO,"@mampamparam Last May, we issued an advisory reaffirming our commitment to protecting all workers irrespective of i… https://t.co/Vd4VB46zvZ" +06/26/2018,Politicians,@MassAGO,"@mampamparam All workers are entitled to their wages regardless of immigration status, and are welcome to attend a… https://t.co/CKHf9UrElF" +06/26/2018,Politicians,@MassAGO,"@calph7 Hi Chris, the team at our Consumer Assistance and Response Division will be able to answer your question an… https://t.co/nnAUdpCWk3" +06/25/2018,Politicians,@MassAGO,"The next #wagetheft clinic is Tuesday, July 10 in #NewBedford. Walk-ins welcome! + +You can report wage theft online:… https://t.co/dloaVftHMe" +06/25/2018,Politicians,@MassAGO,We invited workers who reported #wagetheft to get free legal consultation at our clinic tonight. Great turnout! https://t.co/aU42GX5200 +06/25/2018,Politicians,@MassAGO,"@s4m_bloch Hi Samuel, thanks for reaching us. The team at our Student Loan Assistance Unit may be able to help. You… https://t.co/PzW2wl3wwN" +06/24/2018,Politicians,@MassAGO,We are at the 15th Annual Asian Festival in #Worcester today to connect people with our office and share the many w… https://t.co/uH9I2ePHB3 +06/23/2018,Politicians,@MassAGO,Drop by and meet the team at today's Health and Safety Fair in #Worcester! https://t.co/UgAfLJjjkZ +06/22/2018,Politicians,@MassAGO,Ending #TPS will tear hundreds of thousands of families apart and force people into countries that are unsafe. It's… https://t.co/H80g5BcqqP +06/22/2018,Politicians,@MassAGO,"President Trump's termination of #TPS is discriminatory, unlawful, and undermines who we are as Americans. We filed… https://t.co/6AdQhfr0pF" +06/22/2018,Politicians,@MassAGO,This is about our duty as a nation to protect children and keep families together. We are suing to make sure this c… https://t.co/pcYaFMSk0p +06/21/2018,Politicians,@MassAGO,"President Trump's family separation policy is immoral, reprehensible, and must end. We need to reunite these famili… https://t.co/J3F2u0YCBu" +06/21/2018,Politicians,@MassAGO,Separating children from their parents simply is not who we are as Americans and it cannot continue.… https://t.co/f7Vl6eUjXH +06/21/2018,Politicians,@MassAGO,We are also asking the court to order the Administration to reunite families that have been unlawfully torn apart a… https://t.co/cfswcXL32E +06/21/2018,Politicians,@MassAGO,"The President’s words cannot be trusted. Since the Administration won't do the right thing, we will. #KeepFamiliesTogether" +06/21/2018,Politicians,@MassAGO,"With @AGOWA, our coalition of 11 states is asking the court to declare the President’s policy unconstitutional and… https://t.co/H0lRNpKgBK" +06/21/2018,Politicians,@MassAGO,#BREAKING We are suing the President to put an end to his cruel policy of separating immigrant families. #KeepFamiliesTogether +06/21/2018,Politicians,@MassAGO,"Employers who take advantage of their workers, steal their pay, and put them in danger at work will continue to fac… https://t.co/Y9tKcAXJHh" +06/21/2018,Politicians,@MassAGO,President Trump's 'Association Health Plan' rule is unlawful and will lead to fewer protections for people in need… https://t.co/1jN8MLnTFq +06/21/2018,Politicians,@MassAGO,"If you have a defective item, try to contact the manufacturer for a warranty repair, replacement, or refund. + +If t… https://t.co/QsZkaziVY4" +06/21/2018,Politicians,@MassAGO,"If you were enrolled in the Babies ""R"" Us “Endless Earnings” reward program, you don’t need to submit a claim. The… https://t.co/kb17OBuSAR" +06/21/2018,Politicians,@MassAGO,"If you paid for a Toys ""R"" Us order, but never received your delivery, you can submit a claim at the link. + +The la… https://t.co/co55JFoomh" +06/21/2018,Politicians,@MassAGO,We will stop at nothing to keep young people safe from addiction and protect future generations from the devastatio… https://t.co/nkJX0GYtBv +06/21/2018,Politicians,@MassAGO,"Purdue Pharma executives directed a false and aggressive marketing scheme to sell as much OxyContin as possible, no… https://t.co/cdKhVPZLg3" +06/20/2018,Politicians,@MassAGO,"The NRA sued us to try and overturn our state's assault weapons ban. +We won. The ban remains in place. + +Every comm… https://t.co/fA4jRxwUZe" +06/20/2018,Politicians,@MassAGO,We've funded over 750 summer jobs for low-income teens in the last four years. Another #HealthySummer is kicking of… https://t.co/c9yDjdVhzb +06/20/2018,Politicians,@MassAGO,"NO HATE +NO FEAR +IMMIGRANTS ARE WELCOME HERE + +Hundreds are rallying at the Massachusetts State House calling on… https://t.co/OP2AMU35eE" +06/20/2018,Politicians,@MassAGO,"Our country should be welcoming refugees, not tearing children from their parents and locking them in cages. + +For t… https://t.co/qPkeKCo2KO" +06/20/2018,Politicians,@MassAGO,"The President is inviting fraud, mismanagement, and deception to the health insurance market while doing nothing to… https://t.co/qQiRMSVKJ7" +06/20/2018,Politicians,@MassAGO,"With @NewYorkStateAG, we are suing the Trump Administration to stop the unlawful expansion of Association Health Pl… https://t.co/3rYNsHwLgG" +06/20/2018,Politicians,@MassAGO,In #Dorchester this morning? Drop by the YMCA for OFFICE HOURS until 10 a.m. https://t.co/3P9JWjldsY +06/20/2018,Politicians,@MassAGO,"While Purdue generated billions of dollars in profit, people from all across Massachusetts and the US were becoming… https://t.co/BvT3ybNRxJ" +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice ICYMI: We launched a new coalition of Boston businesses with Mayor @Marty_Walsh comm… https://t.co/Wdz3sD0KlY +06/19/2018,Politicians,@MassAGO,"With more than $300,000 from settlements we've won, we're able to help young people do good work promoting public h… https://t.co/9OIHilzfDZ" +06/19/2018,Politicians,@MassAGO,We're funding #HealthySummer jobs for young people across Massachusetts for the fourth year in a row. https://t.co/PJbHy1IffQ +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice Women trafficked by these men and others are victims. We are working with victims se… https://t.co/2p7sO8mUIH +06/19/2018,Politicians,@MassAGO,@MassStatePolice @bostonpolice We also secured indictments against two men for trafficking victims – including min… https://t.co/hlaNpoNBKk +06/19/2018,Politicians,@MassAGO,"In Allston, @MassStatePolice in our office and @BostonPolice partners arrested a Quincy man who was trafficking wom… https://t.co/uusmUFYxdo" +06/19/2018,Politicians,@MassAGO,"Human traffickers continue to prey on vulnerable women and exploit them for profit. In the last week, we’ve charged… https://t.co/zGhHVLbnQq" +06/19/2018,Politicians,@MassAGO,Patients need the security of comprehensive coverage. We will not allow fly-by-night health plans to evade the high… https://t.co/McJEaPTaVg +06/19/2018,Politicians,@MassAGO,The President’s ‘Association Health Plan Rule’ undermines years of work to ensure that all people and small busines… https://t.co/6eIEAjbLHj +06/19/2018,Politicians,@MassAGO,"The Department of Justice is inflicting devastating and long-lasting trauma on thousands of innocent children. + +It… https://t.co/8UycCkxPxL" +06/19/2018,Politicians,@MassAGO,The President is trying to play politics by tearing babies from their mothers and leaving toddlers stranded and cry… https://t.co/AT0SFepmXN +06/19/2018,Politicians,@MassAGO,"What the Trump Administration is doing to immigrant children is immoral and reprehensible. + +21 state AGs are deman… https://t.co/mEP6DOGYl1" +06/19/2018,Politicians,@MassAGO,RT @BostonDotCom: AG Healey’s office funds summer jobs. https://t.co/DRxs13QsW5 https://t.co/KRoQrSTGOv +06/19/2018,Politicians,@MassAGO,Our lawsuit against Purdue Pharma explicitly names the Sackler family and other top executives. They can't hide beh… https://t.co/ByWzszyO1t +06/19/2018,Politicians,@MassAGO,Purdue Pharma's executives will not escape justice again. We will hold them accountable for the devastation they ha… https://t.co/PSHVaDq9ov +06/18/2018,Politicians,@MassAGO,"RT @TinaGaoOnAir: .@MassAGO is awarding nearly $327,000 to more than 90 organizations across #Massachusetts to fund summer #jobs for low-in…" +06/18/2018,Politicians,@MassAGO,This is a stain on our country and a moral crisis. President Trump needs to end this. Now. For the sake of these ch… https://t.co/ltOBml1DAU +06/18/2018,Politicians,@MassAGO,All of us in Massachusetts have worked hard to reduce cigarette and nicotine use among minors. We’re ready to take… https://t.co/fWP0Yoom55 +06/18/2018,Politicians,@MassAGO,We just sent letters to every school in MA cautioning administrators about the dangers these devices pose to their… https://t.co/PkAb69Xcln +06/18/2018,Politicians,@MassAGO,E-cigarettes and vaping devices pose a serious health risk to students. They can contain addictive and unhealthy ch… https://t.co/hNBw4b7qZJ +06/18/2018,Politicians,@MassAGO,Purdue executives and board members knew the truth about their drugs and did nothing to stop the crisis of addictio… https://t.co/vktPB3vq5O +06/18/2018,Politicians,@MassAGO,"By meeting young people where they are, talking openly about substance use and addiction, and listening to the very… https://t.co/MGcL0PlpUl" +06/18/2018,Politicians,@MassAGO,"Purdue marketers told doctors their pills were safer than Tylenol. As a result, high school students in Massachuset… https://t.co/qo9wWk41E4" +06/18/2018,Politicians,@MassAGO,"Purdue lied to keep patients away from safer alternatives, even when company executives knew people were increasing… https://t.co/91rcGHR2sy" +06/17/2018,Politicians,@MassAGO,Students need to know that there are companies and executives out there only looking to turn a profit off of addict… https://t.co/6uEW1YqFeH +06/17/2018,Politicians,@MassAGO,"We're tackling the opioid epidemic on all fronts. In a joint law enforcement effort last week, we seized nearly 2,0… https://t.co/nyO5vXb8LK" +06/17/2018,Politicians,@MassAGO,"The more drugs Purdue's executives sold, the more money they made, and the more people died. https://t.co/98J7RYCy9t" +06/16/2018,Politicians,@MassAGO,We're at the #Lowell African Festival today! Come by and hear about how our office can help you. https://t.co/Z02lKUb6Or +06/16/2018,Politicians,@MassAGO,RT @sethmoulton: Add this to the list of MA being a state of firsts. Proud of the leadership of @MassAGO to take action against the very pe… +06/15/2018,Politicians,@MassAGO,We know finding the answers to questions about elder issues can sometimes be challenging. That's why the AG's Offic… https://t.co/Q2wzT6lTqE +06/15/2018,Politicians,@MassAGO,"On #ElderAbuseAwarenessDay, we filed a settlement with these nursing home companies that jeopardized the safety of… https://t.co/4g8M2IjamR" +06/15/2018,Politicians,@MassAGO,"RT @lisakashinsky: Days after filing a lawsuit against major opioid manufacturer Purdue, @MassAGO Maura Healey stopped by #Methuen to talk…" +06/15/2018,Politicians,@MassAGO,We're at @BristolDA's Celebration of Seniors event today in #Westport. Teams across our office are fighting elder a… https://t.co/fCbnczhYtj +06/15/2018,Politicians,@MassAGO,#EidMubarak to our Muslim friends and neighbors as they celebrate the end of Ramadan and break their fast. Peace and joy to all! +06/15/2018,Politicians,@MassAGO,TODAY: We're at Senator @EricLesser's Thrive After 55 fair to share how we can help protect people from fraud and d… https://t.co/AsFYJWAewv +06/15/2018,Politicians,@MassAGO,RT @NSChamber: Packed house at the Hawthorne Hotel w @MassAGO in Salem. @maura_healey talks strategy to business leaders on leading fight o… +06/15/2018,Politicians,@MassAGO,The men and women of @NSChamber care deeply about the North Shore. They're working to ensure it thrives and it has… https://t.co/Ey9JLxcXQ7 +06/14/2018,Politicians,@MassAGO,"RT @RepMoran: I was pleased to join @MassAGO, Mayor Jajuga & @rep_campbell today at the Marsh Grammar School in Methuen to participate in a…" +06/14/2018,Politicians,@MassAGO,"With partners like @CommonCause, we have a fighting chance at restoring sanity to campaign finance laws, overturnin… https://t.co/kFPCFJpIqr" +06/14/2018,Politicians,@MassAGO,RT @ParkerMSHealth: Thank you @MassAGO This was a wonderful opportunity for my students. Thank you for speaking about such important topics… +06/14/2018,Politicians,@MassAGO,RT @ParkerPrincipal: Thank you @MassAGO for your support and for visiting our school! #parkerpride @ParkerMSHealth https://t.co/eyDWMxyl0S +06/14/2018,Politicians,@MassAGO,"Thank you Ms. Parks, your students, and the incredible caring leadership of Parker Middle School in #Chelmsford for… https://t.co/whyOUWPOUS" +06/14/2018,Politicians,@MassAGO,Health students at the Marsh School understand the risks of substance use and the importance of healthy decisions.… https://t.co/NMdTLXv2QX +06/14/2018,Politicians,@MassAGO,There’s nothing more important than making sure young people understand the importance of health and wellness.… https://t.co/GRllNvl3Un +06/14/2018,Politicians,@MassAGO,Two days ago we sued the top executives of Purdue Pharma. Today we’re visiting students in #Methuen and… https://t.co/Phnfj8r1w1 +06/14/2018,Politicians,@MassAGO,RT @telegramdotcom: Attorney General Maura Healey spotlights drug use prevention at Fitchburg High forum https://t.co/aQUB3LkExp @PaulaOwen… +06/14/2018,Politicians,@MassAGO,"If you have been taken advantage of by a company that promised help with student loans, call us at 1-888-830-6277 o… https://t.co/QqAj4323m0" +06/14/2018,Politicians,@MassAGO,Purdue and its executives made more than $500 million as the opioid crisis exploded in Massachusetts. They knew the… https://t.co/XpjzftOB76 +06/14/2018,Politicians,@MassAGO,This fraud student loan company is paying back every student harmed and is blocked from coming back to Massachusett… https://t.co/Gjwe1pGYeT +06/13/2018,Politicians,@MassAGO,"Giant pharmaceutical companies like Purdue have put profits over people and as a result more than 11,000 have died… https://t.co/CsR5vSqO3I" +06/13/2018,Politicians,@MassAGO,RT @RepJoeKennedy: Our Commonwealth has witnessed too many funerals for lives lost to the opioid epidemic. Thank you @MassAGO for holding P… +06/13/2018,Politicians,@MassAGO,Healthcare career students at Keefe Regional Tech are preparing to take on the opioid crisis and provide the kind o… https://t.co/FuSQhA0WTN +06/13/2018,Politicians,@MassAGO,RT @FitchburgPS: What a tremendous visit from Attorney General Maura Healey today at FHS to talk about the opioid crisis. Amazing and can’t… +06/13/2018,Politicians,@MassAGO,RT @FitchburgPS: VIDEO: Attorney General Maura Healey talked to students and teachers at FHS for a roundtable discussion on the opioid cris… +06/13/2018,Politicians,@MassAGO,RT @Principal_FHS: @FitchburgPS @MassAGO @Superin33564261 So glad to be able to host @MassAGO at FHS on these important topics! We thank y… +06/13/2018,Politicians,@MassAGO,"Yesterday we sued Purdue Pharma and the company’s executives for their role in creating the opioid crisis. + +And to… https://t.co/p0CyC39yjG" +06/13/2018,Politicians,@MassAGO,"As we fight the opioid crisis in Massachusetts, we look to young people for insight. Thank you to #Fitchburg High S… https://t.co/BdcLZDphnP" +06/13/2018,Politicians,@MassAGO,"RT @RyanForRecovery: Massachusetts on Tuesday filed a lawsuit against Purdue Pharma LP, and became the first state to sue the drugmaker's e…" +06/13/2018,Politicians,@MassAGO,"RT @ArlingtonMAPD: “The opioid epidemic that has taken many lives and has ruined so many more has many causes, but the evidence clearly dem…" +06/13/2018,Politicians,@MassAGO,RT @HerrenProject: @MassAGO Maura Healey sues opioid maker Purdue Pharma #opioidepidemic #addiction #togetherwecan https://t.co/8jVKEvetgb +06/13/2018,Politicians,@MassAGO,Purdue Pharma and its executives built a multi-billion-dollar business based on deception and addiction. We're suin… https://t.co/BofCtUr882 +06/12/2018,Politicians,@MassAGO,The opioid epidemic is killing 5 people every day in Massachusetts. We will hold Purdue Pharma and its executives a… https://t.co/yECvHF5kz6 +06/12/2018,Politicians,@MassAGO,"It's time for Purdue Pharma to pay. Today we filed suit against the pharmaceutical giant, as well as its board and… https://t.co/1iBPDS8tow" +06/12/2018,Politicians,@MassAGO,RT @CindyFriedmanMA: Thank you @MassAGO for taking action against Purdue Pharma for their role in contributing to the #opioidcrisis in Mass… +06/12/2018,Politicians,@MassAGO,We remember the 49 innocent lives lost at the Pulse nightclub two years ago today and promise to honor them with ac… https://t.co/Vi84rWwNgw +06/12/2018,Politicians,@MassAGO,"RT @bjoewolf: Two years ago, a man fired 45 rounds a minute into the crowded club while I washed my hands in the sink. 13 of those rounds k…" +06/12/2018,Politicians,@MassAGO,"RT @SenJasonLewis: I applaud @MassAGO for her bold action: a lawsuit against Purdue Pharma. + +More than 11,000 people in Mass. have died of…" +06/12/2018,Politicians,@MassAGO,RT @learn2cope2001: We thank you Attorney General Healey and your staff for you work and dedication to the families of Massachusetts! Final… +06/12/2018,Politicians,@MassAGO,RT @RepKClark: Thank you @MassAGO for holding Purdue accountable for their dangerous and predatory practices. Too many families and communi… +06/12/2018,Politicians,@MassAGO,RT @MassGovernor: I want to thank @MassAGO and her team for their determined work to put Purdue Pharma and their executives where they belo… +06/12/2018,Politicians,@MassAGO,RT @BisforBerkshire: Massachusetts just became the first state to sue OxyContin maker Purdue Pharma AND its executives and directors. Civil… +06/12/2018,Politicians,@MassAGO,RT @StephanieCNews: Posters at @MassAGO announcement they are suing Purdue Pharma for “illegally marketing opioids and profiting from opioi… +06/12/2018,Politicians,@MassAGO,We owe it to families everywhere to hold Purdue and its executives accountable for the damage they have caused and to make them pay. +06/12/2018,Politicians,@MassAGO,"RT @mbebinger: Joanne Peterson, representing families hurt by #opioidcrisis, says “it’s time to hold Purdue Pharma accountable for their gr…" +06/12/2018,Politicians,@MassAGO,RT @ArlingtonMAPD: Chief Ryan stands with @MassAGO for major announcement “Purdue Pharma and its and executives lied about their addictive… +06/12/2018,Politicians,@MassAGO,This is the first lawsuit to name Purdue Pharma executives personally and to tell the story of how they contributed to this crisis. +06/12/2018,Politicians,@MassAGO,"Purdue executives led and directed an illegal business model, using addiction and deception to enrich a few, while… https://t.co/Ebm9pI3Gs9" +06/12/2018,Politicians,@MassAGO,"The more drugs Purdue sold, the more money they made, and the more people died. https://t.co/3zJASsJI0f" +06/12/2018,Politicians,@MassAGO,Purdue even pushed their drugs to prescribers they knew were writing illegal prescriptions and had patients dying of overdoses. +06/12/2018,Politicians,@MassAGO,Purdue targeted vulnerable people including veterans and the elderly to boost their profits. +06/12/2018,Politicians,@MassAGO,Purdue overstated the benefits of opioids and even claimed that they were safer than ibuprofen and Tylenol. +06/12/2018,Politicians,@MassAGO,Purdue pushed prescribers to give higher and more dangerous doses to keep patients on drugs longer without regard f… https://t.co/iqkEhVuXFt +06/12/2018,Politicians,@MassAGO,"Purdue Pharma and its and executives lied about their addictive drugs and profited from the opioid crisis. +We are… https://t.co/63zHiePICL" +06/12/2018,Politicians,@MassAGO,Please join us LIVE this morning for a major announcement related to our investigation into the sale and marketing… https://t.co/Ywrt48FnaH +06/11/2018,Politicians,@MassAGO,"Today President Trump’s @FCC officially repeals #NetNeutrality, but our lawsuit to reverse this illegal action and… https://t.co/Ifp6U3mCKX" +06/10/2018,Politicians,@MassAGO,The President’s irrelevant and baseless arguments against the #ACA won’t stand in court. We’re intervening to prote… https://t.co/UoPqdmSd2m +06/10/2018,Politicians,@MassAGO,Wage theft is illegal and victims are entitled to full restitution and sometimes triple-damages. If your employer i… https://t.co/kC9NdPupEC +06/10/2018,Politicians,@MassAGO,It's time for every state to pass an #ERPO bill. https://t.co/imHuwCVSpC +06/08/2018,Politicians,@MassAGO,The President has called asbestos a “mob conspiracy.” It’s actually a deadly carcinogen. While his EPA does pollute… https://t.co/5BrqdEestp +06/08/2018,Politicians,@MassAGO,"RT @BOSImmigrants: .@MassAGO is hosting a webinar training on Immigration Scams Prevention & Resources Tue, June 12, 2018 at 10:30am. + +Serv…" +06/08/2018,Politicians,@MassAGO,The student debt crisis is crushing families all across the country. Meanwhile Betsy DeVos wants to give fraud for-… https://t.co/lLqfBcQrM2 +06/08/2018,Politicians,@MassAGO,@methuensports @Patriots Thank you Game Changers and enjoy your summer! #GameChange +06/08/2018,Politicians,@MassAGO,"RT @Sen_Chandler: Yesterday, the Senate acted on #gunviolence and passed the #ERPO Bill. In MA we’re proud to have the lowest rate of gun d…" +06/08/2018,Politicians,@MassAGO,In New England National Grid can be reached at 1-800-322-3223 and you can report scams to our office at 617-727-840… https://t.co/OZFFwN4iYp +06/08/2018,Politicians,@MassAGO,"National Grid will never demand immediate payment. There’s a long process before your service can be shut off. + +If… https://t.co/ZbFZKb2D1h" +06/08/2018,Politicians,@MassAGO,.@NationalGridUS customers are getting calls from scammers claiming to work for the utility and demanding payment.… https://t.co/AgY7EpY3w6 +06/08/2018,Politicians,@MassAGO,"If your employer is stealing your wages, threatening you, or otherwise treating you unfairly, call our Fair Labor H… https://t.co/3gKbXvmRkP" +06/08/2018,Politicians,@MassAGO,He ripped off his workers and threatened them when they demanded they wages they earned. After pleading guilty to 1… https://t.co/qCJncZxYeT +06/07/2018,Politicians,@MassAGO,Transgender servicemembers defend our country with dignity and selflessness. They should be honored and allowed to… https://t.co/38yS7StaX1 +06/07/2018,Politicians,@MassAGO,"Every week we witness another mass shooting, domestic violence assault, or suicide by gun that could have been prev… https://t.co/gEKKKQbgf6" +06/07/2018,Politicians,@MassAGO,"#ERPO has now passed both chambers of the MA Legislature. Thank you @Sen_Chandler, @KarenSpilka, and the @MA_Senate… https://t.co/PIrdF0ozTF" +06/07/2018,Politicians,@MassAGO,We have the lowest rate of gun violence in the country in part because strong gun laws save lives. This common sens… https://t.co/jtagHeT9im +06/07/2018,Politicians,@MassAGO,We held a training today at the #Marlborough Senior Center because seniors need to know how they can help prevent f… https://t.co/bqyrDOMJWO +06/07/2018,Politicians,@MassAGO,"RT @MA_Senate: #ERPO bills work. While the Senate is in recess, read up on #ERPO laws in states like #Connecticut and #Indiana and how thes…" +06/07/2018,Politicians,@MassAGO,"There are more than 20,000 suicides by gun every year. Those deaths and countless acts of domestic and mass violenc… https://t.co/5A75Nc5Zp4" +06/07/2018,Politicians,@MassAGO,For years this employer refused to pay his workers. He tried to keep them from the wages they earned. Now he's payi… https://t.co/0Pd0vWVXkY +06/07/2018,Politicians,@MassAGO,We're in #Revere tonight to make sure workers know their rights and to help prevent fraud by unlicensed practioners… https://t.co/8pz0jQsx30 +06/06/2018,Politicians,@MassAGO,Windstar Farm is a vital resource for Cape Cod and the state as a whole. Our settlement paves the way for it's rest… https://t.co/mlhfNGQLP3 +06/06/2018,Politicians,@MassAGO,RT @CHAPAdotorg: Massachusetts Attorney General Maura Healey @MassAGO Joins coalition filing Amicus Brief opposing suspension of @HUDgov #F… +06/06/2018,Politicians,@MassAGO,You can't categorically exclude job applicants with a criminal history. Everyone deserves a fair chance at a job. https://t.co/RmXT5PmE29 +06/06/2018,Politicians,@MassAGO,"When people have access to safe, affordable housing, families are healthier and children do better in school. + +We… https://t.co/kBqXx6j2Am" +06/06/2018,Politicians,@MassAGO,"If you were unfairly or unlawfully denied employment or housing, call our civil rights team at (617) 963-2917. +https://t.co/V03XtI0unO" +06/06/2018,Politicians,@MassAGO,"All people deserve a fair chance at the economic security that comes with a job, including those with criminal reco… https://t.co/vm7YmbGJcV" +06/06/2018,Politicians,@MassAGO,"“We applaud AG Healey’s actions because without this kind of monitoring and enforcement, countless people with CORI… https://t.co/GwwM4V875w" +06/06/2018,Politicians,@MassAGO,Unfortunately many people with criminal records continue to face unnecessary barriers to employment. We're making s… https://t.co/vN5EVSrIkL +06/06/2018,Politicians,@MassAGO,Jobs are the pathway to economic security and a better life—that's why Massachusetts banned employers from asking j… https://t.co/IKhf7pE2cA +06/05/2018,Politicians,@MassAGO,"We should not be bailing out aging, unprofitable power plants at the ratepayer's expense. It's totally unjustified… https://t.co/qtsMjYhVA8" +06/05/2018,Politicians,@MassAGO,The @CFPB keeps a public database of every complaint it’s received. It helps consumers spot bad actors and make sma… https://t.co/8CMTBMhJV9 +06/04/2018,Politicians,@MassAGO,"@throwinganet Hi Anne, you can call our office's Consumer Assistance and Response Division at (617) 727-8400 to rep… https://t.co/LBkyRwG7dI" +06/04/2018,Politicians,@MassAGO,"We will continue to enforce the law, which remains unchanged, and will redouble our efforts to expand equality across the country. #SCOTUS" +06/04/2018,Politicians,@MassAGO,There is no license to discriminate. The #SCOTUS decision in Masterpiece Cakeshop affirms the broad authority of st… https://t.co/o8iWzzyfa8 +06/01/2018,Politicians,@MassAGO,"On #NationalGunViolenceAwarenessDay, I #WearOrange because every day in this country, over 90 people are killed by… https://t.co/cQxVOvAvVZ" +06/01/2018,Politicians,@MassAGO,Learn more about our office’s education campaign to protect residents from the unauthorized practice of immigration… https://t.co/dEMoqSjycA +06/01/2018,Politicians,@MassAGO,Our team was at the Revere Community School tonight hosting a training on workers’ rights and the unauthorized prac… https://t.co/RQkiHmJzSn +05/31/2018,Politicians,@MassAGO,Every nursing home resident deserves a safe and healthy living environment. I’m calling on the federal government t… https://t.co/5WCqiMCh3F +05/30/2018,Politicians,@MassAGO,The Trump Administration’s rollback of the contraceptive coverage mandate is a direct attack on women’s health and… https://t.co/bYQh403yu3 +05/30/2018,Politicians,@MassAGO,Missing Children's Day is a reminder that we all have a role to play to keep our children safe and remember those w… https://t.co/0pWwESQM8J +05/30/2018,Politicians,@MassAGO,"Yesterday, my office joined @marty_walsh and Boston business leaders to announce a new coalition, Employers Against… https://t.co/Rhbslbm61g" +05/29/2018,Politicians,@MassAGO,"Commercial sex exploits women and children, and has no place in the workplace. Thank you to our partners… https://t.co/5FltnGDNhi" +05/29/2018,Politicians,@MassAGO,"Today, 23 companies have committed to adopting zero-tolerance workplace policies on sex buying for their employees. https://t.co/DkYhLBrzPG" +05/29/2018,Politicians,@MassAGO,"Buyers are the catalyst for sex trafficking, and often search for sex during the workday on company equipment. EAST… https://t.co/3aWFOmwhh3" +05/29/2018,Politicians,@MassAGO,We owe it to survivors of sex trafficking to do everything we can to put an end to this abuse and exploitation. Tod… https://t.co/5tsKovv16y +05/29/2018,Politicians,@MassAGO,"LIVE now at https://t.co/CoDQXZQqtN - AG Healey, Mayor Walsh, business leaders announcing zero tolerance workplace policies on sex buying" +05/28/2018,Politicians,@MassAGO,We remember the brave men and women who gave everything in service to our country. We offer our gratitude to their… https://t.co/yFVoCCh5dA +06/30/2018,Politicians,@susanamendoza10,Thousands marched in Chicago bcuz #FamiliesBelongTogether. We marched in the sweltering heat to put heat on… https://t.co/dH5zj9sE0s +06/28/2018,Politicians,@susanamendoza10,RT @AndyManar: Thanks for your continued work @JasonKander @letamericavote! It was good to talk to you & @susanamendoza10 about our success… +06/28/2018,Politicians,@susanamendoza10,"RT @SenSanders: To nobody’s surprise the U.S. Supreme Court, in a 5-4 decision, sided with big money interests and against the needs of wor…" +06/28/2018,Politicians,@susanamendoza10,RT @JPolydoris: If only ⁦@GovRauner⁩ @idph would have put this much effort/action into the LEGIONELLA bacteria issue at Quincy Vets home -… +06/28/2018,Politicians,@susanamendoza10,RT @SenDuckworth: The American people should have a voice in the selection of their next Supreme Court Justice. #Kennedy https://t.co/TAgp0… +06/28/2018,Politicians,@susanamendoza10,"The best way to protect your collective bargaining rights, mobilize to protect good wages, and fight back against a… https://t.co/KJS2jC0Qt1" +06/27/2018,Politicians,@susanamendoza10,"RT @CarolAmmons4IL: Illinois - your Governor has been hanging out in DC all week, waiting to celebrate a ruling that will hurt workers. + +V…" +06/26/2018,Politicians,@susanamendoza10,"I am excited to announce the Anti-Harassment, Equality, & Access Panel (AHEAP) is beginning its statewide roundtabl… https://t.co/DYKaig2Ad1" +06/26/2018,Politicians,@susanamendoza10,"RT @CarolAmmons4IL: I’m not going to stand by as @BruceRauner attacks Champaign-Urbana. + +Here are the facts, Governor. Please read them bef…" +06/25/2018,Politicians,@susanamendoza10,What better way to celebrate #LGBTQ #Pride Month than by marching in the 49th Annual Chicago Pride Parade! Thank yo… https://t.co/XYDJ7jXB06 +06/24/2018,Politicians,@susanamendoza10,"RT @BobMorganIL: Such a great morning, thanks to @EqualityILL and friends @JBPritzker, @JulieForSenate, @RamForSenate, @MikeforIllinois, @…" +06/24/2018,Politicians,@susanamendoza10,We are ready to march in the Chicago Pride Parade. https://t.co/PBhbGhxc3p +06/24/2018,Politicians,@susanamendoza10,RT @BobFiorettiChi: Great to be in the @WVON1690 studio again today with the governor of talk radio #CliffKelley discussing veterans issue… +06/23/2018,Politicians,@susanamendoza10,RT @JBPritzker: I ended the day at a press conference at @heartlandhelps with @repgutierrez to speak about Trump’s devastating family separ… +06/23/2018,Politicians,@susanamendoza10,Happy 93rd Birthday to wonderful @revclayevans! May God bless you and keep you going strong for many more happy yea… https://t.co/H2avCO2biR +06/23/2018,Politicians,@susanamendoza10,Thank you to the @jolietslammers for letting me throw out the first pitch at tonight's baseball game. What a blast!… https://t.co/ystgR00pNo +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump I'm not worried about you not liking me. I'm much more worried ab… https://t.co/mNQLCDlM2A +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Realmente es incomprensible que existan personas, y mucho peor, s… https://t.co/p1F9GeFoGG" +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump Mal hecho por Obama y mal hecho por Trump. Y por si no te has dad… https://t.co/K2nD1qOBQl +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Por última vez, NO. Yo nací en Chicago." +06/22/2018,Politicians,@susanamendoza10,"@robert_enriquez @IllinoisReview @realDonaldTrump Y los que deben sentir vergüenza, son aquellos que defienden esta… https://t.co/HBq5Nk3fD9" +06/22/2018,Politicians,@susanamendoza10,@robert_enriquez @IllinoisReview @realDonaldTrump Yo no nací en México. Nací aquí y porque amo a USA tengo todo el… https://t.co/XmrFGXH9ga +06/22/2018,Politicians,@susanamendoza10,@brianmcdonagh Love it! Thanks for representing! 💓 +06/22/2018,Politicians,@susanamendoza10,I'd like to retweet this at least 1000x. https://t.co/7CzwzVSSIH +06/22/2018,Politicians,@susanamendoza10,"@tahmanbradley Seriously? The Black Caucus members are doing their best, but it doesn't help that they have a… https://t.co/YrzCwzQw76" +06/22/2018,Politicians,@susanamendoza10,Thank you. Honored to have your endorsement! https://t.co/N2Fpr0W4cT +06/20/2018,Politicians,@susanamendoza10,America is in danger of losing her soul. We know we're better than this. Here are my thoughts on the cruel Zero Tol… https://t.co/EcFkkXhbud +06/20/2018,Politicians,@susanamendoza10,"RT @A_Safe_Haven: We’d like to give a special shout-out to @SenatorVanPelt ,@RetainAnneBurke , and @susanamendoza10 for being members of t…" +06/19/2018,Politicians,@susanamendoza10,Honored to join so many civic and business leaders for the @CivicFederation Annual Awards Luncheon. #twill https://t.co/cU0xNfV8QS +06/18/2018,Politicians,@susanamendoza10,"RT @helenprejean: Like so many of you, I'm morally outraged at what is happening to the children at the border, where they're being separat…" +06/18/2018,Politicians,@susanamendoza10,"Rest In Peace, Elizabeth. Godspeed. 😢🙏 https://t.co/rIzkKH2Kwx" +06/18/2018,Politicians,@susanamendoza10,"Amen. Thank you, @JillWineBanks 💓 https://t.co/aDA4kvwMkz" +06/17/2018,Politicians,@susanamendoza10,Father's Day Camping! Nothing better than that! Happy Father's Day to all the amazing dads out there! 💓 #FathersDay https://t.co/S946mdaMlr +06/15/2018,Politicians,@susanamendoza10,@aenelson4 Pocket tweet. 🤪 +06/14/2018,Politicians,@susanamendoza10,"RT @staceyabrams: “Abrams’ platform draws from her own experiences and those of others struggling to attain better lives for themselves, th…" +06/14/2018,Politicians,@susanamendoza10,Elizabeth Bracket is a tough and fierce champion. She is an amazing role model to women everywhere. She's had bruta… https://t.co/kJbhqg2KbK +06/14/2018,Politicians,@susanamendoza10,"RT @rlharri: Of all the ridiculous things @GovRauner has said about the Quincy Vets Home, this one, this one may be the best #twill #Rauner…" +06/14/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: WATCH: Bruce Rauner blames ""massive floods and tornadoes"" for 2015 veterans home outbreak of Legionnaires', which he d…" +06/14/2018,Politicians,@susanamendoza10,@IllinoisWorking Say what? https://t.co/3e6ZM0O2gL +06/13/2018,Politicians,@susanamendoza10,"Blessed to be having Iftar dinner with friends who are more like family. Great food, fun & family with @MHilmiCinar… https://t.co/vuOgMkYNui" +06/11/2018,Politicians,@susanamendoza10,"RT @JPolydoris: Ok Twitter-verse, now - we need you to do what you do best ... Retweet! + +Help us 🇺🇸🇺🇸🇺🇸HELP OUR VET🇺🇸🇺🇸🇺🇸! https://t.co/K…" +06/11/2018,Politicians,@susanamendoza10,@ashvinlad @PoliticalEditor Good point. Thanks. +06/09/2018,Politicians,@susanamendoza10,RT @jenndangerous: Anthony Bourdain on Chicago always stirs my heart: https://t.co/2ZHJp67C1W +06/09/2018,Politicians,@susanamendoza10,"RT @JBPritzker: Today I called Virginia Governor @RalphNortham, a fellow ERA advocate, to offer my support in getting the #EqualRightsAmend…" +06/08/2018,Politicians,@susanamendoza10,@SkywayWilly @rrosenthal Hahahaha! Love it! Thanks 😁 +06/08/2018,Politicians,@susanamendoza10,RIP @Bourdain. My sincere condolences to his family and his @CNN work family. +06/08/2018,Politicians,@susanamendoza10,"Shocked. So many, myself included, thought his was the coolest job/life in the world. Another reminder that depress… https://t.co/wkVOiG1cDg" +06/08/2018,Politicians,@susanamendoza10,"Thanks, @rrosenthal! I didn't remember that fun fact. Woohoo! Gooooaaaalll!!!⚽ https://t.co/h6h1yFe1I2" +06/08/2018,Politicians,@susanamendoza10,"@JulieDiCaro You better believe I was playing soccer in 1988, on @BolingbrookHigh girl's team that started that yea… https://t.co/CRCeUuo7zd" +06/06/2018,Politicians,@susanamendoza10,"So sad. If you know someone in crisis, call the toll-free National Suicide Prevention Lifeline (NSPL) at 1-800-273-… https://t.co/m3a6jUoeFi" +06/05/2018,Politicians,@susanamendoza10,"@kylehillman Hi Kyle, I have my staff looking into this issue. We hope we can help. We will get back to you shortly." +06/05/2018,Politicians,@susanamendoza10,@craigrwall For sure. Going in a frame and up on my wall. Make me smile every single time. +06/05/2018,Politicians,@susanamendoza10,And THIS fills my heart with joy. 💓 https://t.co/CvibR2G4Fa +06/04/2018,Politicians,@susanamendoza10,@kingLudvikII I agree. +06/03/2018,Politicians,@susanamendoza10,"WLS-TV: Visitation Sunday for CFD diver Juan Bucio. +https://t.co/tdIeuXlDiO + +via @GoogleNews" +06/03/2018,Politicians,@susanamendoza10,You go girl! https://t.co/soMOT2PIAu +06/03/2018,Politicians,@susanamendoza10,Today at 12:30 pm... Join me and the Bloomingdale Township Democrats in the 59th Annual Roselle Rose Parade. To sig… https://t.co/phOvbyMH0r +06/02/2018,Politicians,@susanamendoza10,"Team Susana unite! Join me tomorrow, 6/3, as we march at the 59th Annual Roselle Rose Parade. To sign up, please cl… https://t.co/pwPJY8JopU" +06/02/2018,Politicians,@susanamendoza10,Nice hit! Go David! Go Cardinals! 💓 Tee Ball! https://t.co/AsSY39k1nE +06/01/2018,Politicians,@susanamendoza10,I’ve launched my 2018 website! If you would like to learn about what my team and I have accomplished in the last tw… https://t.co/0lNMcJDAem +06/01/2018,Politicians,@susanamendoza10,Happy #PrideMonth! 🏳️‍🌈 https://t.co/mUQuoMHLK9 +06/01/2018,Politicians,@susanamendoza10,"@ArchTwohey Thank you. 😊 How about, Mendoza for Comptroller? 😉" +06/01/2018,Politicians,@susanamendoza10,"Thank you, Illinois, for giving me & my stellar team the honor & privilege of working hard on your behalf. Thank yo… https://t.co/vjRmd2Abna" +05/31/2018,Politicians,@susanamendoza10,"RT @actionillinois1: Today Illinois lawmakers +☑️ratified the #ERA +☑️passed a balanced budget +☑️increased education funding +☑️crated an ant…" +05/31/2018,Politicians,@susanamendoza10,"RT @SanofiUS: People of all races, religions and nationalities work at Sanofi every day to improve the lives of people around the world. Wh…" +05/31/2018,Politicians,@susanamendoza10,RT @VozdeRaquel: Illinois: Getting stuff done this year. Proud of my legislature tonight. #ERANow and a budget? We're on FIRE! https://t.co… +05/31/2018,Politicians,@susanamendoza10,RT @WCIA3Mark: Sen. @ElgieSims says this bipartisan budget is evidence of what can happen when lawmakers focus on policy over politics. Not… +05/31/2018,Politicians,@susanamendoza10,Woohoo! Yes! Yes! Yes!!! https://t.co/T1pvqGlYV1 +05/31/2018,Politicians,@susanamendoza10,RT @HeidiLiFeldman: This is making me smile and cry at the same time. #ERA #ERANow https://t.co/qSsqRAWTjZ +05/31/2018,Politicians,@susanamendoza10,RT @ILComptroller: My heartfelt thanks go to the legislators of the State House & Senate for honoring women today by voting to make #Illino… +05/31/2018,Politicians,@susanamendoza10,"@AmandaVinicky Guilty as charged. Former legislator, mind you. 😉" +05/30/2018,Politicians,@susanamendoza10,Are you ready for parade this Sunday Jun 3? March with me and the Bloomingdale Township Democrats in the 59th Rosel… https://t.co/IWkX4Ap7eH +05/28/2018,Politicians,@susanamendoza10,Le Superman. Magnifique! https://t.co/g2bEZtbdRa +05/28/2018,Politicians,@susanamendoza10,Thank you. #MemorialDay https://t.co/usGw0q8jP9 +05/27/2018,Politicians,@susanamendoza10,Happy to cheer on the @chiredstarsPR on their Pride Match celebrating #inclusion with @ILTreasurer. Go Red stars! https://t.co/0gDu8MLVdI +05/26/2018,Politicians,@susanamendoza10,Had fun scoring on the @chiredstarsPR mascot Supernova today at the Pride Match during halftime. My former coaches… https://t.co/eAmtAojJAZ +05/26/2018,Politicians,@susanamendoza10,@Jodyanne1 @SeniorCaucus @ReclaimTheBurbs @reclaimchicago @peopleslobbyusa Sure. Info@susanamendoza.com. +05/24/2018,Politicians,@susanamendoza10,RT @PPIAction: “It’s exhausting to be a woman under this administration. This needs to stop. ” @susanamendoza10 #NoGagRule #IStandWithPP ht… +05/23/2018,Politicians,@susanamendoza10,RT @ChampaignCoDems: Congratulations to Ms Abrams! https://t.co/BFvfI9CpV4 +05/22/2018,Politicians,@susanamendoza10,"Going to make my honey, @DavidSzostak, a yummy dinner tonight. 😋 https://t.co/FLtZOvZ03X" +05/22/2018,Politicians,@susanamendoza10,"Wishing my dear friend, Stacey Abrams, good luck in her primary election tomorrow! If you have friends or family in… https://t.co/jP7um7WCrz" +05/20/2018,Politicians,@susanamendoza10,Congrats to the beautiful couple! May they live happily ever after. ❤️❤️❤️ #RoyalWedding https://t.co/mQ5F3NfWTt +05/18/2018,Politicians,@susanamendoza10,RT @GOVERNING: Illinois Comptroller Susana Mendoza has a long-running feud with gov. Bruce Rauner that has made her already difficult job t… +05/18/2018,Politicians,@susanamendoza10,"RT @RBLandmark: ""Just Judy"" is the first and only biography of the former Illinois state legislator, state comptroller, state treasurer and…" +05/17/2018,Politicians,@susanamendoza10,"RT @daveclarkin: I, too, an struck by the fact that the most significant accomplishments over the last three years in Springfield are thing…" +05/16/2018,Politicians,@susanamendoza10,RT @rrstar: Our View: Reforms meant to end deceptive spending practices. https://t.co/oHsKdQHJds https://t.co/xzsYqfSvVs +05/16/2018,Politicians,@susanamendoza10,.@sengerdarlene is unfit for a position of public trust. She disqualified herself as someone who cannot be trusted… https://t.co/tG4R8gLX7i +05/16/2018,Politicians,@susanamendoza10,@sengerdarlene is unfit for a position of public trust. She disqualified herself as someone who cannot be trusted b… https://t.co/VgHCAyBydM +05/13/2018,Politicians,@susanamendoza10,Happy Mother's Day to all those special moms out there! A special thank you to my amazing 82 year old mother. She's… https://t.co/sB5BL5eWRS +05/10/2018,Politicians,@susanamendoza10,"@ckjbg @sengerdarlene @WBEZ @davemckinney She works for Gov. Rauner. He has praised her work, hence endorsing it.… https://t.co/PkOhNF3KDb" +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene @WBEZ @davemckinney @GovRauner I'll tell you who it WASN'T: @SenDuckworth. #twill #Apologize2Tammy +05/10/2018,Politicians,@susanamendoza10,"@ckjbg @sengerdarlene @WBEZ @davemckinney Yes. In fact, Rauner is responsible for HIS administration's decision to… https://t.co/TncInGjhNq" +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene And here is new information uncovered today by @WBEZ @davemckinney. https://t.co/bKx0aark9V #twill #FailedGovernor +05/10/2018,Politicians,@susanamendoza10,@ckjbg @sengerdarlene Here's how. This investigative report by @WBEZ @davemckinney lays out the FACTS. The… https://t.co/8mJNWeBWbe +05/10/2018,Politicians,@susanamendoza10,@mestasenesta @AnitaPadilla32 @JoanieLum @LisaChavarria @SylviaFOX32 @BurtonABC7 @erinkennedytv @MarissaBaileyTV… https://t.co/6GJkJPbs7l +05/09/2018,Politicians,@susanamendoza10,Truth. 💪 https://t.co/AxfP3tNLrZ +05/08/2018,Politicians,@susanamendoza10,@mestasenesta I appreciate you.🙂 +05/05/2018,Politicians,@susanamendoza10,"My family is the most important part of my life, so I was super excited to be at my son David Quinten's 1st Tee-Bal… https://t.co/TBUQBGjCGj" +05/05/2018,Politicians,@susanamendoza10,"""Blah blah blame blah...noise...blah blah blah blame blah""-@sengerdarlene. Didn't see an apology in all that blah b… https://t.co/FKWHU73QYU" +05/05/2018,Politicians,@susanamendoza10,"As low as it gets. #Apologize2Tammy +https://t.co/sgJCiZd8BJ" +05/05/2018,Politicians,@susanamendoza10,"RT @DonGerard: ""Thumbs down: @sengerdarlene for putting politics first as the severity of repeated Legionnaires disease outbreak at the Ill…" +05/04/2018,Politicians,@susanamendoza10,"RT @jasrubin: ""Democrats @JBPritzker and Comptroller @susanamendoza10 are demanding an apology"" #ilgov #twill https://t.co/p0y6KRyz3F" +05/04/2018,Politicians,@susanamendoza10,"RT @alexhanns: ""@JBPritzker and Comptroller @susanamendoza10 calling on @BruceRauner and his policy chief to apologize to @SenDuckworth."" @…" +05/03/2018,Politicians,@susanamendoza10,"""Rauner Administration got caught trying to pass the blame for the death of 13 veterans at a state home on to a wou… https://t.co/Tro5YIN9uH" +05/03/2018,Politicians,@susanamendoza10,Thank YOU for your service and for all you've done to protect our service men and women and our veterans. 💓 https://t.co/gm256z5SWW +05/03/2018,Politicians,@susanamendoza10,100% accurate. https://t.co/PWBSSt3zqJ +05/03/2018,Politicians,@susanamendoza10,https://t.co/f7I9RtrjoP https://t.co/iiOuPGpElv +05/03/2018,Politicians,@susanamendoza10,It’s appalling that someone with such poor character & misdirected moral compass would be running for statewide office. #twill +05/03/2018,Politicians,@susanamendoza10,"She needs to apologize: +➖To the families of the victims for choosing to protect her former boss over protecting… https://t.co/mj1jwZ64R3" +05/03/2018,Politicians,@susanamendoza10,"Today, I joined @JBPritzker @lindachapalavia @repkifowit @Gilbert36ward & IL veterans to call on @sengerdarlene (… https://t.co/zZcSB2NKTQ" +05/03/2018,Politicians,@susanamendoza10,RT @JBPritzker: Tune in as @susanamendoza10 and I discuss Bruce Rauner’s disastrous Quincy cover up and his attempt to blame U.S. Senator D… +05/02/2018,Politicians,@susanamendoza10,"RT @hannahmeisel: The *day after* WBEZ published its first story on the 13 deaths at the Quincy Vets Home in December, @GovRauner’s deputy…" +05/02/2018,Politicians,@susanamendoza10,"RT @ILComptroller: I loved visiting Landmark Cafe & Creperie while in Galesburg, #Illinois last month. If you’re in the area, the spinach b…" +05/02/2018,Politicians,@susanamendoza10,RT @EJMill: The latest from @davemckinney & @tonyjarnold on @GovRauner's response to the Veteran deaths in Quincy continues to drag this ad… +05/02/2018,Politicians,@susanamendoza10,"Hey, @DarleneSenger. Don't mess with @SenDuckworth. She left half her body on the battlefield fighting to protect u… https://t.co/47igtDe23z" +05/02/2018,Politicians,@susanamendoza10,"Instead of her immediate reaction to the deaths of 13 war heroes being, ""Good God, what can we do to help the remai… https://t.co/IDBYQJd045" +05/02/2018,Politicians,@susanamendoza10,Sick and shameless. https://t.co/8zsN3XEqYl +04/29/2018,Politicians,@susanamendoza10,"It's a tough job, but I'm honored and blessed to get to do it. Thank you, Illinois. https://t.co/1JlBpLxufz" +04/29/2018,Politicians,@susanamendoza10,@sunshinedreary @ILComptroller Wow. Thank you. So nice and appreciated. 😊 +04/27/2018,Politicians,@susanamendoza10,RT @GOVERNING: Illinois Comptroller Susana Mendoza has a long-running feud with gov. Bruce Rauner that has made her already difficult job t… +04/27/2018,Politicians,@susanamendoza10,"@DonSynowiec @ILComptroller It was a combination of cuts and taxes. Not pretty, but it stopped the state from caree… https://t.co/moWOYtt0zi" +04/27/2018,Politicians,@susanamendoza10,@DonSynowiec @ILComptroller Article 8 Section 2a of IL Constitution is clear: the GOVERNOR shall prepare and submit… https://t.co/GHg45dw4la +04/27/2018,Politicians,@susanamendoza10,@DonSynowiec @ILComptroller Article 8 Section 2a of IL Constitution is clear: the GOVERNOR shall prepare and submit… https://t.co/Mp2Vsj59jN +04/27/2018,Politicians,@susanamendoza10,I joined @AFSCME workers today to call on Gov Rauner to give them their court mandated step increases. It’s been th… https://t.co/pwRkxeCE7f +04/26/2018,Politicians,@susanamendoza10,"@tahmanbradley Rauner lies. The numbers don't. The Truth hurts. The truth is, it took @GovRauner only 2.5 years to… https://t.co/XEI0lWbRZd" +04/25/2018,Politicians,@susanamendoza10,"RT @melinrogovin: This was a failure of leadership by Bruce Rauner, plain & simple. Illinois suffered greatly as a result. It’s why I’m vot…" +04/24/2018,Politicians,@susanamendoza10,"Thank you for your leadership in sponsoring our Truth in Hiring legislation! +https://t.co/TJyUijnJLZ" +04/24/2018,Politicians,@susanamendoza10,"RT @repgregharris: And on top of this, because of @ILComptroller Mendoza's new debt transparency law, we found out that @GovRauner had yet…" +04/24/2018,Politicians,@susanamendoza10,"RT @ILComptroller: A special report released by my office today reveals that over the course of the 736-day-budget impasse, #Illinois accru…" +04/24/2018,Politicians,@susanamendoza10,"RT @ILComptroller: The fact that, under Governor Rauner, the state allowed its bill backlog to grow to a point where we incurred nearly two…" +04/24/2018,Politicians,@susanamendoza10,"RT @APOConnor: APNewsBreak: #IL late-payment interest since 2015 $1.14B, more than previous 18 years combined. @APCentralRegion: https://t.…" +04/23/2018,Politicians,@susanamendoza10,"“Empowered women, empower women."" It was a pleasure to co-chair Congresswoman @janschakowsky’s Annual Women's Power… https://t.co/yOXFCSxL1E" +04/23/2018,Politicians,@susanamendoza10,Honored to co-chair & looking forward to attending today’s Ultimate Women’s Power Lunch in support of superstar Con… https://t.co/T2QMMx4ID5 +04/19/2018,Politicians,@susanamendoza10,RT @ILComptroller: Thank you to @cljmitchell & all of the cosponsors of the #Truthinhiring Act! I am thrilled that it passed unanimously to… +04/19/2018,Politicians,@susanamendoza10,RT @ILComptroller: Thank you to all the members of the #Illinois House of Representatives who voted UNANIMOUSLY to pass the #TruthinHiring… +04/19/2018,Politicians,@susanamendoza10,RT @TrishPrabhu: It was an honor to speak at the @ymca State Advocacy Day today! Thank you @ILComptroller @susanamendoza10 for your keynote… +04/18/2018,Politicians,@susanamendoza10,"Rest in Peace, First Lady Barbara Bush. My condolences to the entire Bush family for their enormous loss. She was a… https://t.co/iQ6kU4GyWv" +04/13/2018,Politicians,@susanamendoza10,RT @alexhanns: Must be tough being a failed governor #ilgov #twill https://t.co/EoR15hKUdI +04/13/2018,Politicians,@susanamendoza10,RT @alexhanns: And another: @BruceRauner's then-legislative director @sengerdarlene wanted to blame Rauner's fatal mismanagement of the Qui… +04/13/2018,Politicians,@susanamendoza10,"RT @alexhanns: #FlashbackFriday to @BruceRauner exchanging his ""to do"" list for a ""to blame"" list: https://t.co/Kbj4uBZK0V #ilgov #twill ht…" +04/13/2018,Politicians,@susanamendoza10,RT @IllinoisWorking: 2) Rauner is training his team in the ways of blame. Remember when Rauner’s hand-picked comptroller candidate Darlene… +04/13/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: wait wait wait...today is NATIONAL BLAME SOMEONE ELSE DAY? + +how can we NOT look at some of the highlights of Bruce Rau…" +04/12/2018,Politicians,@susanamendoza10,Thanks for your support! https://t.co/JYxW57tfk1 +04/12/2018,Politicians,@susanamendoza10,RT @TheMartyCastro: Great turnout tonight for @susanamendoza10 general #election #campaign kickoff including great friends like @billzwecke… +04/11/2018,Politicians,@susanamendoza10,RT @TheMartyCastro: Looking forward to attending @susanamendoza10 general #election #campaign kickoff tomorrow night at @texasdebrazil! Ple… +04/07/2018,Politicians,@susanamendoza10,Dems came together 4 Interfaith #Unity Breakfast today at the New Home Baptist Church in Chicago. I’m proud to be p… https://t.co/r2b2NiBsTQ +04/05/2018,Politicians,@susanamendoza10,And in today's feel good/awesome story...https://t.co/74tP1zCD6p +04/04/2018,Politicians,@susanamendoza10,"@JimmyRiley234 Thanks, Jim! It was delish and an even bigger treat to get to see you! 😃" +04/03/2018,Politicians,@susanamendoza10,The #bluewave is certainly coming through McDonough County! Wonderful seeing the loyal McDonough democrats tonight.… https://t.co/gn2tXuWgq4 +04/02/2018,Politicians,@susanamendoza10,"RT @ILComptroller: To mark #WorldAutismday, I visited Willowglen Academy. The dedicated efforts of staff there help #IL residents w/ specia…" +04/01/2018,Politicians,@susanamendoza10,Great season @LoyolaChicago Ramblers! You made Chicago and Illinois and fans across the country very proud. Hold yo… https://t.co/arGK6luG92 +03/31/2018,Politicians,@susanamendoza10,"C'mon, @LoyolaChicago Ramblers! Up at halftime. Keep that lead going to the very end! You can do it!!! Great team +… https://t.co/2pfjIl6LiX" +03/31/2018,Politicians,@susanamendoza10,"On April 12th, celebrate the life and legacy of the late and great Judy Baar Topinka! All proceeds from this event… https://t.co/AKkAqP07rT" +03/26/2018,Politicians,@susanamendoza10,"RT @playbookplus: With the last four teams decided, @BallardFirm's Brian Ballard sits at the top of #PlaybookPool, followed closely behind…" +03/25/2018,Politicians,@susanamendoza10,RT @cnnbrk: Aerial footage shows the turnout at various March for Our Lives events across the US today https://t.co/K4g34viFVh https://t.co… +03/25/2018,Politicians,@susanamendoza10,This is so great!!! Congrats @LoyolaChicago Ramblers and way to go #SisterJean! 🏀 https://t.co/CAGQq8mNdh +03/24/2018,Politicians,@susanamendoza10,RT @gslayen: READ: Downstate holds key to @JBPritzker’s blowout win in primary via @SJRbreaking: https://t.co/hzMEnugQgp #ilgov #twill +03/24/2018,Politicians,@susanamendoza10,@Jrock08 @GovRauner I imagine it would be something like this fast: https://t.co/s2W5qloyzi via @giphy +03/24/2018,Politicians,@susanamendoza10,"#FAILEDGOVERNOR @GovRauner thinks mismanaged taxpayer $ is no big deal. ""Clerical errors, or mistakes, get made, an… https://t.co/izKOHoUQgr" +03/24/2018,Politicians,@susanamendoza10,"RT @kylegriffin1: 11-year old Christopher Underwood, who lost his brother to gun violence: “For me, I would like to not worry about dying,…" +03/24/2018,Politicians,@susanamendoza10,"RT @NancyRotering: We do not have to live like this. +#Enough #MarchForOurLives #StopTheSlaughter #TheTimeIsNow" +03/24/2018,Politicians,@susanamendoza10,Democrats were energized and ready to work hard to elect @JBPritzker and @JulianaforLG at this morning’s Unity Brea… https://t.co/MOoKwcuzuK +03/23/2018,Politicians,@susanamendoza10,RT @POLITICOPress: #PlaybookPool update! @Steve_Glazer currently leads our scoreboard with @RepDebDingell @ChicagosMayor @susanamendoza10 @… +03/23/2018,Politicians,@susanamendoza10,"RT @IllinoisWorking: this is *bananas*, especially from the guy who is trying to destroy unions under the guise of “forced political speech…" +03/23/2018,Politicians,@susanamendoza10,@WCIA3Mark @zakouts84 @GovRauner https://t.co/YOe3KqR9G2 +03/23/2018,Politicians,@susanamendoza10,Woohoo! @LoyolaChicago Ramblers did it! Great job boys and thank you Sister Jean! I was praying right along with yo… https://t.co/vth88LOa0S +03/23/2018,Politicians,@susanamendoza10,It's tied. Don't lose faith. C'mon people - start praying with Sister Jean! Let's go @LoyolaChicago Ramblers! https://t.co/tSIHMZqpC3 +03/23/2018,Politicians,@susanamendoza10,"RT @IGsolidarityNET: @LoyolaChicago's halftime lead is huge — now stand w/ Belsy Garcia, a 3rd-Year Loyola Medical School student whose fat…" +03/22/2018,Politicians,@susanamendoza10,"Woohoo! Let's do this, @LoyolaChicago Ramblers! Keep praying, Sister Jean!!! 💓" +03/22/2018,Politicians,@susanamendoza10,"RT @gslayen: While @JBPritzker has a clear vision for beating @BruceRauner in the general election, the failed governor is still fighting w…" +03/22/2018,Politicians,@susanamendoza10,@mary_cresto Thank you! 💓 +03/21/2018,Politicians,@susanamendoza10,I'm so proud of my friends @JBPritzker & @JulianaforLG for their remarkable victory in last night's Democratic Prim… https://t.co/HbkxM1poQ4 +03/21/2018,Politicians,@susanamendoza10,RT @ILDCCA: Congrats to @JBPritzker & @JulianaforLG! Let’s work together to unite @demsforillinois and win in November! #JBForGov #Democrat… +03/21/2018,Politicians,@susanamendoza10,"Thanks, @Ameya_Pawar_IL! https://t.co/rPtb1AP34g" +03/20/2018,Politicians,@susanamendoza10,There’s still time left to cast your vote! Meeting some voters at Union Train Station with @JBPritzker &… https://t.co/aKWozJowHw +03/20/2018,Politicians,@susanamendoza10,"Quick coffee break ☕️ on the campaign trail with @JBPritzker, @chicityclerk, @AldermanSolis & others. Get out there… https://t.co/tBlSN2MoQj" +03/20/2018,Politicians,@susanamendoza10,Fun phone banking with some fantastic volunteers at JB & Juliana’s South Side Office! #twill #ILGov https://t.co/BxODMQ8ntP +03/20/2018,Politicians,@susanamendoza10,It’s always good to be back in Little Village— The place I was born in and gave me my start in politics. I had lunc… https://t.co/OCaxKypF9x +03/20/2018,Politicians,@susanamendoza10,@WendiChicago Aww. Thanks! Good times: https://t.co/Sy9uSq1N3s +03/20/2018,Politicians,@susanamendoza10,"This is exactly @JBPritzker and why I truly believe he will make a great Governor. Genuine and down to earth, huge… https://t.co/zt69pIlmGo" +03/20/2018,Politicians,@susanamendoza10,RT @tayloremrey: Just three awesome women who are #TeamJB @JulianaforLG @susanamendoza10 @anacaprana https://t.co/qW1TM4eI1X +03/20/2018,Politicians,@susanamendoza10,"It was great starting my morning with some delicious Manny’s Deli— an Election Day tradition! Everyone, remember to… https://t.co/ZVqX2kCn1q" +03/20/2018,Politicians,@susanamendoza10,RT @WendiChicago: I voted for @susanamendoza10 for all the usual good reasons but also because she's a badass who chased down a drunk drive… +03/20/2018,Politicians,@susanamendoza10,@rl_klein Thanks 💓 +03/20/2018,Politicians,@susanamendoza10,Today is your last chance to #VOTE! Please get out there and make it count! https://t.co/sYaWVzX1SH +03/19/2018,Politicians,@susanamendoza10,"@JBPritzker, Treasurer @MikeforIllinois, and I addressed laborers from Local 393 in Marseilles, Illinois. Let’s ens… https://t.co/O68cETiXEV" +03/19/2018,Politicians,@susanamendoza10,RT @JordanAbudayyeh: .@JBPritzker @MikeforIllinois and @susanamendoza10 standing with AFSCME members striking for better wages at NIU. #twi… +03/19/2018,Politicians,@susanamendoza10,@CarlNyberg312 @45thWardDems @DanielBiss @LitesaWallace @RepJaimeAndrade @Melissa4DPI @ToniPreckwinkle… https://t.co/IyNTtRPbWl +03/19/2018,Politicians,@susanamendoza10,@rick_bossen Yes. Enthusiastically endorsing @JBPritzker & Juliana! +03/19/2018,Politicians,@susanamendoza10,"RT @playbookplus: After two rounds of basketball, @RepDebDingell, @ChicagosMayor Rahm Emanuel and @susanamendoza10 sit at the top of the #P…" +03/19/2018,Politicians,@susanamendoza10,"RT @POLITICOPress: Leading our #PlaybookPool VIP right now -- @RepDebDingell, with @ChicagosMayor & @susanamendoza10 following closely behi…" +03/18/2018,Politicians,@susanamendoza10,Beautiful day for a bike ride! 20 miles on the North Branch Trail with a little pit stop for DQ to get some ice cre… https://t.co/7UVUHdqFRY +03/18/2018,Politicians,@susanamendoza10,Let's do this! Join us to help get Illinois back on track! https://t.co/5Sx2ivBu9a +03/18/2018,Politicians,@susanamendoza10,OMG. Way to go @RamblersMBB! You're making Illinois proud - you made the Sweet 16! #MarchMadness https://t.co/lUAUZOSM7v +03/18/2018,Politicians,@susanamendoza10,Sister Jean and the @RamblersMBB rock! Go Loyola Ramblers!!! 🏀 https://t.co/zTsG35ibKc +03/18/2018,Politicians,@susanamendoza10,"I spent my #StPatricksDay2018 in Chicago in the best way imaginable, alongside my family and friends at the downtow… https://t.co/bGH2qmDjJL" +03/17/2018,Politicians,@susanamendoza10,Go @DePaulWBBHoops Lady Blue Demons! Congrats!! Illinois is proud and rooting for you. https://t.co/orPf0yYLgb +03/16/2018,Politicians,@susanamendoza10,March with me in the upcoming Chicago St. Patrick's Day Parade! Sign up here: https://t.co/BnNyJiWoMD #StPatricksDay https://t.co/VpK8Lw1Uz2 +03/15/2018,Politicians,@susanamendoza10,RT @lumitynpo: Team “Eco-Friends” pitch their hydroponic tower to @susanamendoza10. The tower would combat #fooddeserts and create jobs in… +03/15/2018,Politicians,@susanamendoza10,YES! Go @RamblersMBB! Congrats!! #MarchMadness https://t.co/30vryYVvbd +06/30/2018,Politicians,@BrianBallard723,Love this! https://t.co/KHzm9mjX9m +06/05/2018,Politicians,@BrianBallard723,JOY! https://t.co/M2vvzIEBAY +06/05/2018,Politicians,@BrianBallard723,WIN!!!!!!!! #AllCaps @neverest5 #StanleyCup https://t.co/gbnyBpl8r9 +06/04/2018,Politicians,@BrianBallard723,"LET'S GO CAPS!!! + +#ALLCAPS" +06/01/2018,Politicians,@BrianBallard723,"As a #ALLCAPS fan who was at Game 1, I got to meet a wonderful and welcoming set of fans. For those who cheer… https://t.co/ngkObk5E7P" +05/30/2018,Politicians,@BrianBallard723,Fireside chat - AR transformation from the experts @neverest5 @blumbr01 @upskillio @Accenture #AWE2018 #Industry40 https://t.co/Dml7o7ppNI +05/29/2018,Politicians,@BrianBallard723,@maxwellelliot Thanks buddy! +05/29/2018,Politicians,@BrianBallard723,GOAL 4 https://t.co/BjcDUGwYvF +05/29/2018,Politicians,@BrianBallard723,Overall a really good show. Felt a bit like a Medieval Times show during the knight part. But the venue is pretty a… https://t.co/4KfWpfluHr +05/29/2018,Politicians,@BrianBallard723,WIN ONE FOR DC! #ALLCAPS https://t.co/8IMqy6N4pp +05/16/2018,Politicians,@BrianBallard723,"Into Enterprise Augmented Reality that matters? Let us know, vote for Skylight for best AR Application for Enterpri… https://t.co/047C2R5C2n" +05/15/2018,Politicians,@BrianBallard723,"@Plantandwatch Fair enough. When I'm quiet on twitter(always), I'm probably busy on work(almost always). What do u want to know?" +05/15/2018,Politicians,@BrianBallard723,I think ARGrandpa would be a great new Twitter handle for you! ;) https://t.co/lDLCNivalh +05/15/2018,Politicians,@BrianBallard723,RT @upskillio: Time to VOTE! Choose Skylight for Best Enterprise Solution for this year's Auggie Awards ----> https://t.co/hKsYxCJyLv https… +05/15/2018,Politicians,@BrianBallard723,@SteveCase I can believe that! It certainly created a challenge in my home.... Daughter is 'Lexi'. I ask her a ques… https://t.co/HnmivhvvW7 +04/23/2018,Politicians,@BrianBallard723,RT @upskillio: Excited for tonight's Opening Ceremony at @hannover_messe! We've been nominated as one of five finalists for the Hermes Awar… +04/23/2018,Politicians,@BrianBallard723,So proud of the team for this accomplishment. https://t.co/pnxGs1iWPW +04/23/2018,Politicians,@BrianBallard723,RT @neverest5: About to go on stage with Eric Schaeffer lex @Accenture #IndustryX0 panel on artificial intelligence! https://t.co/4mj8AY6ZkS +04/22/2018,Politicians,@BrianBallard723,RT @neverest5: #HM18 opening ceremony representing @upskillio in the VIP area with @christinebohle - two very powerful women in close proxi… +04/22/2018,Politicians,@BrianBallard723,RT @upskillio: So amazing to be here and be part of it! Thank you @hannover_messe for recognizing our hard work and technology! https://t.c… +04/19/2018,Politicians,@BrianBallard723,As we get ready for #HannoverMesse I thought I'd share this blast from the past. Look @upskillio up this year in H… https://t.co/Lq7ieRngDI +03/27/2018,Politicians,@BrianBallard723,"This is truly heartwarming. + +Cisco commits $50 million to help fix Silicon Valley's homelessness crisis… https://t.co/l0B391VDKO" +02/07/2018,Politicians,@BrianBallard723,RT @DMDII_: We're looking forward to the first day of our Augmented Reality Workshop with @theAREAorg! Thank you to our sponsors @Boeing &… +01/11/2018,Politicians,@BrianBallard723,RT @neverest5: @Vuzix color me impressed on the #VuzixBlade! I've seen the fundamental tech working with you for a while & this product ex… +11/11/2017,Politicians,@BrianBallard723,@ddebow Verified by a 3yr old too +10/24/2017,Politicians,@BrianBallard723,Once the helmet goes on though... @alexkelly617 needs to try out @rideNUVIZ! https://t.co/LAULBaO5fk +10/21/2017,Politicians,@BrianBallard723,RT @upskillio: Chris Delvizis demos #Skylight Application Builder to a packed house. Learn how you can build #AR apps without code. https:/… +10/19/2017,Politicians,@BrianBallard723,"RT @rideNUVIZ: What an honor! NUVIZ has been awarded @popsci’s 2017 Best of What’s New award in the Automotive category! #BOWN2017 +https://…" +10/19/2017,Politicians,@BrianBallard723,RT @PaulBorisVuzix: Peggy Gulick of industry leader .@AGCOcorp - “...wearables are just one more tool in our #Lean Toolbox.” @BrainXchange1… +10/19/2017,Politicians,@BrianBallard723,RT @PaulBorisVuzix: Bryan Shackelford .@EastmanChemCo “...we team with hardware partners to drive adoption in harsh environments “@BrainXch… +10/19/2017,Politicians,@BrianBallard723,"RT @fcostaealmeida: Coca Cola shares examples of #AugmentedReality use cases on stage @ #AWE2017: remote maintenance, lead time reduction &…" +10/19/2017,Politicians,@BrianBallard723,"RT @VirtualGirlNY: This tech is ""fundamentally changing how we work"" - Jay Kim @neverest5 @comogard @upskillio @jaykothari #googleglass #A…" +10/19/2017,Politicians,@BrianBallard723,RT @neverest5: Thanks for inviting @upskillio to open #AWE2017 Europe! What an honor to kick it off! https://t.co/SMyDZyiR4z +10/19/2017,Politicians,@BrianBallard723,RT @ARealityEvent: The expo at AWE Europe is open #AWE2017 https://t.co/weYpXR2PJe +10/01/2017,Politicians,@BrianBallard723,RT @ARealityEvent: Just announced! Our keynote talk from @CocaCola @upskillio & Glass from Google's @Theteamatx at AWE Europe 2017 https://… +10/01/2017,Politicians,@BrianBallard723,RT @JAaronTate: Great lineup of #logistics topics at @poweredbymhi #MHIES17 including @TheAtlantic 's @alexismadrigal Honored to represent… +09/29/2017,Politicians,@BrianBallard723,RT @upskillio: Woot woot! @upskillio announced runner up as the Best Tech Startup in DC. Congrats to our hard working team #TimmyAwards htt… +09/29/2017,Politicians,@BrianBallard723,RT @neverest5: Looking forward to kicking the event off right! https://t.co/KmRSQ7huaH +09/24/2017,Politicians,@BrianBallard723,"RT @upskillio: According to @Dell, 1 in 5 workers are looking forward to #AR for skills acquisition. Learn about the smart office. https://…" +09/19/2017,Politicians,@BrianBallard723,RT @ChrisHoyt1: Love our partnership with @GE_Ventures and @generalelectric. Augmented Reality is going to change the work gets done in en… +07/28/2017,Politicians,@BrianBallard723,Head-worn with a purpose! https://t.co/3aPgoPLKD4 +07/28/2017,Politicians,@BrianBallard723,Love this. Hope it can make a dent on our output. https://t.co/Bxu5ONjdW5 +07/21/2017,Politicians,@BrianBallard723,"RT @GE_Reports: Smart Specs: OK Glass, Fix This Jet Engine https://t.co/3t7NcMc7xx @Google @GEAviation #avgeek" +07/19/2017,Politicians,@BrianBallard723,RT @GE_Ventures: Ready for the future in productivity? Check out @upskillio’s successful smart glasses pilot at @GEAviation: https://t.co/J… +07/19/2017,Politicians,@BrianBallard723,@RynFnk @upskillio Thank you @RynFnk !! +07/19/2017,Politicians,@BrianBallard723,@danprimack And mine was running around in her 'Elsa Dress' today. Must be a subconscious thing happening! Good luck. +07/18/2017,Politicians,@BrianBallard723,RT @neverest5: This is a huge milestone for #GlassEE and @upskillio having worked together for many yrs - excited for the future! https://t… +07/18/2017,Politicians,@BrianBallard723,"RT @StevenLevy: Google Glass is back! This time, for work. I visit a factory in Midwest for exclusive story. https://t.co/U9ck2oykb5" +07/18/2017,Politicians,@BrianBallard723,RT @RaymondDurk: @StevenLevy I miss that device so much. It's the best device I've ever used despite being a beta product. 😍 +07/07/2017,Politicians,@BrianBallard723,"RT @jsantell: Exploring stenciling and portals in WebAR, using 6DOF tracking/camera rendering #XR #AR #VR https://t.co/ifgnEUVMFK" +06/17/2017,Politicians,@BrianBallard723,@GaneshBell @alexkelly617 Have you guys watched Faster? +06/13/2017,Politicians,@BrianBallard723,"RT @neverest5: @theAREAorg @upskillio A little more than a month later, the @PristineIO team (now the @upskillio Austin team) has had an am…" +05/31/2017,Politicians,@BrianBallard723,Interesting comparison by @Boeing's Paul Davies on Technology Readiness Level vs Cultural Readiness Level. Great in… https://t.co/WQw5vCPmXJ +05/16/2017,Politicians,@BrianBallard723,Help out team @upskillio on our quest to lead the workforce revolution. This time in a friendly competition. Vote: https://t.co/rFglz61E3w +05/12/2017,Politicians,@BrianBallard723,Great #connectedworkforce insights from GE's @SamMurley at #EWTS17 +05/11/2017,Politicians,@BrianBallard723,I hope this trend continues @c3croteau and we can collect a whole set! #EWTS17 https://t.co/jnwX1cy1Fw +05/09/2017,Politicians,@BrianBallard723,"RT @NHL: #Game7. + +#StanleyCup https://t.co/svCihSSkAI" +05/09/2017,Politicians,@BrianBallard723,"Welcome to the team, @PristineIO https://t.co/XfsqVvNMDj https://t.co/PibdEbRf4s" +04/27/2017,Politicians,@BrianBallard723,"RT @upskillio: Good morning, Germany! You don't want to miss our #IoT #manufacturing demo with @Recon Jet Pro @hannover_messe Hall 6, G52/7…" +04/27/2017,Politicians,@BrianBallard723,RT @upskillio: Learn how 4 companies use Skylight to improve performance & lower costs in #manufacturing and #logistics --> https://t.co/Kw… +04/27/2017,Politicians,@BrianBallard723,RT @neverest5: All that equipment on the so-called #industry40 worker? Get this person some #smartglasses & get rid of all the other stuff.… +04/27/2017,Politicians,@BrianBallard723,RT @ericjohnsen: looking fwd seeing friends in AR space at #AWE2017 @ARealityEvent. thx to @Qualcomm for panel invite https://t.co/knzpmq0d… +04/24/2017,Politicians,@BrianBallard723,"RT @BenRaby31: Closing out series isn't easy, they easy. Since 2010, #Caps are 1-5 in GM6 with chance to advance; 2016 the exception https:…" +04/18/2017,Politicians,@BrianBallard723,RT @AMRayEsq: The technology ecosystem in the DMV is large and vibrant: https://t.co/RH1axUyzeF +04/12/2017,Politicians,@BrianBallard723,"RT @editorialiste: ""I never realized how amazing humans are until I tried to build one."" —Nest CTO Yoky Matsuoka at… https://t.co/xpHFk5TCnD" +04/05/2017,Politicians,@BrianBallard723,@augmedix @ianshakil @upskillio @Boeing @GEHealthcare I love that # ! +04/05/2017,Politicians,@BrianBallard723,"Fuel for the journey ahead! ""New Funding: How @Boeing HorizonX @GE_Ventures will help us Scale +""https://t.co/hKzdylvH4M @upskillio" +04/05/2017,Politicians,@BrianBallard723,"Knock 'em dead, Jay https://t.co/vMNR2Mmv21" +03/31/2017,Politicians,@BrianBallard723,"Congratulations @Betsy_Atkins & John Dineen, powerhouse additions to board of directors @Cognizant! https://t.co/tqMAtZNsKD #tech" +03/31/2017,Politicians,@BrianBallard723,RT @SamMurley: What's Next: Preparing Your Organization For Enterprise Wearables from @Inteliot @Recon @upskillio https://t.co/nDTDquENMg h… +03/30/2017,Politicians,@BrianBallard723,There are a slew of impressive #AR devices that have come or are coming. 2017 has just started and it's exciting https://t.co/bwLELHdjzf +03/13/2017,Politicians,@BrianBallard723,RT @upskillio: We're hiring in #softwareengineering and #accounting. Come work with this awesome team! https://t.co/Egqax3ubEv https://t.co… +03/13/2017,Politicians,@BrianBallard723,RT @PaulBorisGE: This video says it all @GE_Digital @upskillio @Vuzix GE Renewables Skylight Side-by-Side Productivity https://t.co/qmxoUb… +03/13/2017,Politicians,@BrianBallard723,RT @upskillio: New report on @HarvardBiz discusses how #AR improves worker performance. By @marcoannunziata & @m_abraham https://t.co/DECHu… +03/12/2017,Politicians,@BrianBallard723,"RT @CHIhealth: How #GoogleGlass is improving the patient-provider experience: +https://t.co/tZZQb7v5Nf https://t.co/RvdVbbig8G" +03/11/2017,Politicians,@BrianBallard723,RT @upskillio: Know any rockstar #AndroidDevelopers? We're hiring! https://t.co/iZD9HlpDz6 +03/06/2017,Politicians,@BrianBallard723,"RT @kevinspain: After a Decade, the Mobile Enterprise Revolution Has Only Just Begun https://t.co/d8NykM6zIk" +03/02/2017,Politicians,@BrianBallard723,RT @ElizabethWatson: Rocking @Recon Jet Pros at the @DC_Inno #techmadnessdc event tonight! https://t.co/Dxk92B6mIb +03/02/2017,Politicians,@BrianBallard723,RT @upskillio: We made it into @DC_Inno #techmadnessdc bracket! Had a great night demoing @Vuzix & @Recon with @christinebohle and @Elizabe… +02/28/2017,Politicians,@BrianBallard723,RT @neverest5: Getting ready to give a talk on how smart glasses empower the #industry40 workforce featuring @upskillio Skylight at @AirWat… +02/13/2017,Politicians,@BrianBallard723,What!?!??! How did Chick-fil-A just roll out the best VR commercial yet!? FTW +02/09/2017,Politicians,@BrianBallard723,"So so so awesome. + +https://t.co/VUIKkEV0Dx" +02/02/2017,Politicians,@BrianBallard723,RT @augmedix: Watch out for #Augmedix in 2017. Click https://t.co/9JDPwJAOtg for the full list +02/02/2017,Politicians,@BrianBallard723,So proud of these guys @rideNUVIZ. Great product vision. Great partnership. The fuel to make it real. Ride on!… https://t.co/36XqCbYYNV +01/28/2017,Politicians,@BrianBallard723,"RT @upskillio: In just 3 to 5 years, @PaulBorisGE can’t imagine a person on the plant floor that doesn’t have a wearable https://t.co/YXcZk…" +01/20/2017,Politicians,@BrianBallard723,"Loved the chance to share our vision, @EllynJShook1. Glad to have amazing partners on the journey. Thank you!" +01/16/2017,Politicians,@BrianBallard723,RT @ItsYamnitsky: .@upskillio's rebranding in full effect >> https://t.co/nGajvNqXes @BrianBallard723 @ChrisHoyt1 are the robin hoods of Io… +01/16/2017,Politicians,@BrianBallard723,RT @neverest5: The big moment - APX Labs is now Upskill! @upskillio +01/16/2017,Politicians,@BrianBallard723,RT @upskillio: Why Upskill? @BrianBallard723 answers that question: https://t.co/N64viNJ6eD +01/15/2017,Politicians,@BrianBallard723,"Great share @PaulBorisGE @S_Leffler . ""The more we know – the more we can do"" should guide all kids' confidence. Adults too..." +01/11/2017,Politicians,@BrianBallard723,RT @neverest5: The webinar I did for @APXLabs on enterprise #augmentedreality and #wearables is now available on demand: https://t.co/jhfqS… +01/06/2017,Politicians,@BrianBallard723,Kudos to the @united crew at #FtLauderdale. You guys are a class act in an otherwise terrible situation. +01/02/2017,Politicians,@BrianBallard723,"RT @thevrara: VR and AR have very high disruption potential to ""change the world"" according to @forrester #VirtualReality #AugmentedReality…" +12/07/2016,Politicians,@BrianBallard723,RT @neverest5: Representing @APXLabs at @GE_Ventures Advanced Manufacturing Summit. Inspiring talk by @TimRyan on the future of USA #manufa… +12/05/2016,Politicians,@BrianBallard723,RT @APXLabs: #50onFireDC #APXLabs We build technology that makes people competitive in the industrial world #bravo https://t.co/vrdRvdOjAA +11/18/2016,Politicians,@BrianBallard723,RT @lizzyli18: How does augmented reality enhance manufacturing? Learn from @APXLabs at the Digital Industrial Journey booth at 1 pm. #GEMM… +11/18/2016,Politicians,@BrianBallard723,RT @lizzyli18: #GEMM16 day 1! Visit the Digital Industrial Journey booth to see live manufacturing + augmented reality! @OkumaAmerica @APXL… +11/18/2016,Politicians,@BrianBallard723,We were all in SF for #GEMM16 !! :) https://t.co/S7gms23ldB +11/18/2016,Politicians,@BrianBallard723,"RT @jpsoltesz: #GEMM16 Jeff Immelt: in any economy, winning has a common face: productive, innovative, competitive, adaptive and resilient…" +11/18/2016,Politicians,@BrianBallard723,RT @laura_correnti: Congrats @lindaboff on being named one of top 5 CMOs in the world! To more fun and more innovation! https://t.co/V4OKNl… +11/18/2016,Politicians,@BrianBallard723,"RT @marcoannunziata: and as @bethcomstock noted, it happens ""gradually, then suddenly"" (Hemingway). A biologist quoting a novelist to expla…" +11/17/2016,Politicians,@BrianBallard723,Great premise at #GEMM16. @PaulBorisGE and @marcoannunziata exploring how technology benefits the workforce. Realit… https://t.co/GikOgSzHbT +11/15/2016,Politicians,@BrianBallard723,RT @neverest5: #PatentMonday for @APXLabs! Proud of the team that continues to create innovations in #augmentedreality #industrie40 #IIoT… +11/10/2016,Politicians,@BrianBallard723,"RT @AlVelosa: I've repeated this my whole trip: +#IoT is not about the technology. It's about the business process transformation" +11/07/2016,Politicians,@BrianBallard723,My favorite people in tech. @DC_Inno 50onFire fun. @JeffEJenkins @neverest5 @JAaronTate @APXLabs https://t.co/wiRmN8Tgz7 +11/02/2016,Politicians,@BrianBallard723,RT @DanNieves: Love the quote when you walk into @Work_Bench - looking forward to the #nyctech Meetup tonight with @RRE and @PrimaryVC as w… +10/26/2016,Politicians,@BrianBallard723,"RT @helengreiner: Technology has created more jobs than it has destroyed, says 140 years of data https://t.co/fegYHstvnQ" +10/26/2016,Politicians,@BrianBallard723,RT @jgownder: Great #VirtualReality comic strip from @berkebreathed https://t.co/QRexN13KqC +10/25/2016,Politicians,@BrianBallard723,RT @neverest5: Congrats to my friends at @eyefluence! Google Acquires Eyefluence: https://t.co/cubMolzpPP +10/09/2016,Politicians,@BrianBallard723,RT @GeorgeTakei: I'm just going to let this speak for itself. https://t.co/DPiwpmx5ii +10/08/2016,Politicians,@BrianBallard723,RT @comogard: Mark Zuckerberg's VR Selfie Is a Bigger Deal Than You Realize https://t.co/QtGGhqxsQV via @WIRED +10/08/2016,Politicians,@BrianBallard723,"RT @NEA: A ""smart"" partnership. @VMware and @APXLabs join forces to make smart glasses more #enterprise friendly: https://t.co/b2GtTBWYRX" +10/07/2016,Politicians,@BrianBallard723,RT @BrainXchange1: .@VMware Partners with @APXLabs to Support Workplace #Wearables https://t.co/pojc4hr7MJ #smartglasses #enterprisemobilit… +10/05/2016,Politicians,@BrianBallard723,RT @neverest5: Material handling application powered by Skylight @APXLabs starting! https://t.co/ZrRQwBOfBi +10/05/2016,Politicians,@BrianBallard723,RT @neverest5: One size doesn't fit all for smart glasses. That's exactly why bwhat we built Skylight by @APXLabs for. #awconnect https:/… +10/04/2016,Politicians,@BrianBallard723,"RT @neverest5: Sue Harris from @Boeing ""We have been working with @APXLabs on smart glasses technology and can't go fast enough."" #AWConnec…" +10/04/2016,Politicians,@BrianBallard723,"RT @neverest5: Sanjay Poonen from @AirWatch : ""@APXLabs is the leading smart glasses software provider in the industry"" #AWConnect" +10/04/2016,Politicians,@BrianBallard723,RT @AirWatch: Sue Harris of @Boeing onstage talking about the impact of mobile tech on aviation #AWConnect https://t.co/hfF63qF0qQ +10/04/2016,Politicians,@BrianBallard723,RT @teena_maddox: @VMware and @APXLabs announce a unified solution for smart glass management in the enterprise https://t.co/2nfQ8qMC8U @te… +09/28/2016,Politicians,@BrianBallard723,RT @albertschan: Great partnership @SutterHealth @augmedix to improve patient/provider experience. Thx @lizzadwoskin @washingtonpost https:… +09/28/2016,Politicians,@BrianBallard723,"Elon Musk: A Million Humans Could Live on Mars By the 2060s +https://t.co/mvCSkLjsSa" +09/27/2016,Politicians,@BrianBallard723,Wearables powering #AdvancedManufacturing https://t.co/yyK1JL3eIE @APXLabs +08/16/2016,Politicians,@BrianBallard723,"Friends, help vote up Jay, Paul, and myself at our SXSW Panel. We'll be talking about a whole new future of work https://t.co/D9FBVWpFtu" +08/16/2016,Politicians,@BrianBallard723,Vote for #SXSW Panel: Rehumanizing Manufacturing: AR and Industry 4.0 https://t.co/N8uJXdRscK @APXLabs @GE_Digital +07/29/2016,Politicians,@BrianBallard723,"RT @augmedix: Meet the Google Glass Company Saving Doctors Hours Each Day +https://t.co/EUSSHhzPde -nice coverage from @MDDIonline https://t…" +07/23/2016,Politicians,@BrianBallard723,https://t.co/uAkdR4M6B0 +07/18/2016,Politicians,@BrianBallard723,"""I would encourage everyone to look at #MixedReality [for] business apps ...as it will really be the most transformative"" -@satyanadella" +07/13/2016,Politicians,@BrianBallard723,RT @ianshakil: The Internet of Medical Things will continue to evolve; @augmedix is leading the way https://t.co/nh4ibPopUz https://t.co/rJ… +07/12/2016,Politicians,@BrianBallard723,@Anon0Mouse @magicleap @RickKing16 I think Fortune streamed it +07/12/2016,Politicians,@BrianBallard723,Just listened to @magicleap CEO and CMO at #FortuneTech. Couldn't be more excited about the world my daughter and son can grow up in. +07/12/2016,Politicians,@BrianBallard723,"""We are giving you a neurological true"" image - @magicleap CEO Rony Abovitz #FortuneTech aaaahhhhh, I can't wait. 😃" +07/11/2016,Politicians,@BrianBallard723,"RT @seanwatson24: .@haleyvandyck: @USDS, @WhiteHouse's ""tech startup,"" getting incredible bipartisan support in quest to bring techies to g…" +07/11/2016,Politicians,@BrianBallard723,Really neat talk on innovation. And more enjoyable one liners than an average 2 hour Hollywood production https://t.co/By0Wsdg7GL +07/11/2016,Politicians,@BrianBallard723,RT @jerseejess: Awesome to have @fendien speaking at #Inforum2016 and discussing NYC enterprise tech ecosystem cc @Work_Bench https://t.co/… +07/11/2016,Politicians,@BrianBallard723,"Apparently I've spent too much time near sea level. Thought all the 30,000ft hours would have prepped me better. #FortuneTech" +07/10/2016,Politicians,@BrianBallard723,"The business of a connected workforce +https://t.co/8VFi9lEfsl #APXLabs" +07/09/2016,Politicians,@BrianBallard723,"RT @BoJackson: Before you go to sleep tonight, I challenge every single one of you to do something nice for a complete stranger. Our world…" +06/29/2016,Politicians,@BrianBallard723,Working with companies like this is why I love getting out of bed every morning! https://t.co/vIf5UKU6Or +06/28/2016,Politicians,@BrianBallard723,Really great group in Tianjin this week. Will leave a lasting impression. https://t.co/aW1pUoYmG2 +06/28/2016,Politicians,@BrianBallard723,"Going to have to add these to the reading list. Were they insightful, @ron_miller ?" +06/27/2016,Politicians,@BrianBallard723,RT @Joi: Rome elects first female mayor in 2800 years | The New Daily https://t.co/FYYYnvbgID +06/27/2016,Politicians,@BrianBallard723,RT @APXLabs: Honored to be named by the World Economic Forum @wef as a 2016 #techpioneer! https://t.co/3BykJPdMyx #connectedworkforce #amnc… +06/27/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Accelerating innovation & the IIoT eco -APX Labs teaming with GE & Boeing to put wearables to work https://t.co/7zzw3ClUcA… +06/27/2016,Politicians,@BrianBallard723,RT @nisselson: Congrats @ldvcapital co's @APXLabs @mapillary win Technology Pioneer by World Economic Forum https://t.co/Sncs1PhAAr https:/… +06/26/2016,Politicians,@BrianBallard723,Amazing talk by @NergisMavalvala in Tianjin . #Science and the discovery of gravitational waves. #amnc16 #wef https://t.co/Uo3s3RHqqu +06/26/2016,Politicians,@BrianBallard723,"RT @FuturistechInfo: Top 10 Emerging Technologies of 2016 from the World Economic Forum +https://t.co/cv6PrH02ou https://t.co/2DAX7kJQ83" +06/21/2016,Politicians,@BrianBallard723,RT @mattj_di: 62% IT & Business leaders say wearable computing is critical to moderate priority-JPGownder @forrester #ewts #IoT https://t.c… +06/21/2016,Politicians,@BrianBallard723,"RT @micahjay1: Tech Founders, Journalists & VCs should create a mandatory job exchange program. Everyone spends 3 mos in each role. Much wo…" +06/04/2016,Politicians,@BrianBallard723,@tomemrich @515406843 it's hard to pick my favorite +06/04/2016,Politicians,@BrianBallard723,"RT @EdwardCarmack: Brian Ballard (CEO, APX Labs) The Business Impact of Smart Glasses for Work https://t.co/yaGwsMYVDy via @YouTube" +06/04/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Thanks Joe @joesoop https://t.co/bUOx0Hwh36 +06/02/2016,Politicians,@BrianBallard723,Yeah @WTEric !!! Best hardware Auggie! https://t.co/oUZl4rVTtn +05/23/2016,Politicians,@BrianBallard723,AWE is bringing superpowers to the people & here are 10 reasons why — AWE Blog https://t.co/umVMTwqL9E +05/20/2016,Politicians,@BrianBallard723,.@APXLabs in Good company https://t.co/DEUyFPWe91 # pioneers Congrats @AtheerAiR @PristineIO @XOEyeTech VitalEnt +05/18/2016,Politicians,@BrianBallard723,"RT @levie: The future, as imagined by the tech industry, will be people wandering around their house talking to objects. My grandpa was bor…" +05/12/2016,Politicians,@BrianBallard723,"Great talk with Nima from ODG and Ramesh from @intel. Thanks @mc_angela for leading our band of merry men! + + https://t.co/nHWpwFF6BI" +05/06/2016,Politicians,@BrianBallard723,"Having a foot in both worlds, really appreciate this article. #gov <-> @tech https://t.co/Zky4DrdQzq" +05/06/2016,Politicians,@BrianBallard723,RT @APXLabs: The Dirtiest Man On TV @mikeroweworks Dispels 5 Damaging Myths About Blue Collar Labor @Forbes https://t.co/WI3RPjbicv +05/06/2016,Politicians,@BrianBallard723,RT @APXLabs: Project Juggernaut is in the running for an AuggieAward! Support @Boeing & @APXLabs #AWE2016 https://t.co/xmUNCcFAqb https://t… +05/05/2016,Politicians,@BrianBallard723,"""Target is being targeted for doing the right thing, not the easy thing."" https://t.co/LHcp2TuKau" +05/05/2016,Politicians,@BrianBallard723,".@forrester report: #smartglasses top use cases in #aerospace, #mfg, #fieldservice https://t.co/qCs7vMElJm https://t.co/RjZxE24Psq" +05/05/2016,Politicians,@BrianBallard723,@amit_pande @APXLabs @HoloLens Yes! Something that would appeal to all ages. +05/05/2016,Politicians,@BrianBallard723,@NancyLBSmith you got the wrong Brian Ballard. Would you mind removing me from your post? +05/05/2016,Politicians,@BrianBallard723,Got a surprise visitor to the @APXLabs office today! Figured we better get him used to the future now. @HoloLens https://t.co/IzgNZ1IRHI +05/05/2016,Politicians,@BrianBallard723,"RT @Vuzix: Vuzix and APX-Labs educate C-Level execs on M100 Smart Glasses at Field Service USA in Palms Springs, CA. Booth #122 https://t.c…" +04/26/2016,Politicians,@BrianBallard723,@TedLeonsis Thanks for posting that. It was a great use of narrative and graphics! Reminiscent of Edward Tufte! +04/26/2016,Politicians,@BrianBallard723,"Congrats @ianshakil. I don't always go the hospital, but when I do, I use @augmedix! +https://t.co/EI1C7Baa31 https://t.co/61jiKpysFp" +04/21/2016,Politicians,@BrianBallard723,"RT @fendien: .@Work_Bench has been calling it for ages: “threats to traditional on-premise IT infrastructure vendors are serious"" https://t…" +04/01/2016,Politicians,@BrianBallard723,RT @FastCoExist: This insane anti-distraction helmet from 1925 would fit into any modern open office https://t.co/I8OGubu1mZ https://t.co/u… +03/30/2016,Politicians,@BrianBallard723,Any my @oculus just arrived yesterday.... AR+VR+HUD trifecta almost complete! https://t.co/tCxOXWUDmT +03/30/2016,Politicians,@BrianBallard723,"@pmarca and now I won't be able to get ""You failed this city.."" out of my inner monologue for the next hour. :)" +03/29/2016,Politicians,@BrianBallard723,RT @PaulBorisGE: Can't join us today @GEDetroit - follow the livestream https://t.co/Rkc4UgwaIm #LeadingEdgeMFG #IIoT with @GE_Digital @PTC… +03/29/2016,Politicians,@BrianBallard723,"""Manufacturers are going to be the rock stars of the IOT"" - Jim Heppelmann @PTC #LeadingEdgeMFG" +03/29/2016,Politicians,@BrianBallard723,RT @JAaronTate: @BrianBallard723 from @APXLabs presenting the important role of wearables to IIoT #digitalthread #LeadingEdgeMFG. https://t… +03/25/2016,Politicians,@BrianBallard723,"RT @SteveCase: Study: Immigrants Founded 51% of U.S. Billion-Dollar Startups https://t.co/sJOQRqywsb ""American innovation benefits from rob…" +03/24/2016,Politicians,@BrianBallard723,I'm genuinely excited to see AR take another step toward mainstream @HoloLens is really well done. @APXLabs @taherman @neverest5 +03/24/2016,Politicians,@BrianBallard723,RT @km_bic: It is crucial that technology helps improves lives. @cabadie @APXLabs @EpicQueenSV https://t.co/uUcJ9a8nVQ +03/15/2016,Politicians,@BrianBallard723,Help us shoot threes like Curry!!! https://t.co/Pvlmbu8hpB +03/14/2016,Politicians,@BrianBallard723,RT @_johny: This may be the year a #12 seed wins it all @APXLabs https://t.co/im8q3c7gxb +03/08/2016,Politicians,@BrianBallard723,@WTEric @EpsonAmerica WOW!!! That brought back some memories!!! +02/29/2016,Politicians,@BrianBallard723,"Getting closer to the future! #HoloLens ship dates are confirmed. + +https://t.co/DnAWFiyc3Y" +02/26/2016,Politicians,@BrianBallard723,"I think we're going to see more and more ""rehumanizing"" of the workforce in a lot of areas right along side robots + +https://t.co/mZGkLlRgDe" +02/26/2016,Politicians,@BrianBallard723,Congrats @KPN @Accenture! Trailblazing a new industrial revolution across the telco industry. #powerfulworkforce built on #APXSkylight +02/26/2016,Politicians,@BrianBallard723,RT @JeffEJenkins: Fantastic @KPN and @Accenture! Great to see @APXLabs #APXSkylight powering such fantastic projects! https://t.co/do6gM7P1… +02/24/2016,Politicians,@BrianBallard723,RT @APXLabs: Come see #APXskylight running on the #ReconJet in the @intel booth at #MWC16 https://t.co/lJeOVAOenM https://t.co/CLpymIysWX +02/21/2016,Politicians,@BrianBallard723,RT @TechCrunch: Wearables Drive The Component Technology Innovation https://t.co/9dIYj48WJ4 by @brianballard723 +02/11/2016,Politicians,@BrianBallard723,"So exciting! #SCIENCE + +Physicists Detect Gravitational Waves, Proving Einstein Right https://t.co/PvsAqonbRH" +02/10/2016,Politicians,@BrianBallard723,I'm crazy excited for this... ever since I read Mutineers' Moon (fav SciFi book!) #gravitonics .. https://t.co/mhdyR5ra8t +02/03/2016,Politicians,@BrianBallard723,RT @Sm4rtglass: This is what we do @APXLabs - we shift the performance curve with #wearabletech @googleglass and #skylight. http://t.co/nG… +01/12/2016,Politicians,@BrianBallard723,Congrats to @thehumanwatson and Harvest.AI #SXSW2016 https://t.co/KWki6JFx7i +01/12/2016,Politicians,@BrianBallard723,Love the student enthusiasm from @CarnegieMellon ! Change the world with @elonmusk's #Hyperloop. Go get 'em tartans! https://t.co/5D6QmtOQm6 +01/11/2016,Politicians,@BrianBallard723,The Industrialist’s Dilemma https://t.co/vj7iuVbuZl via @techcrunch +01/04/2016,Politicians,@BrianBallard723,RT @NEAVC: Congratulations to @NEAVC's @aaronej & @AmitMukherjee! @Forbes #30Under30 #VentureCapital: https://t.co/ulJyTOHnQp https://t.co… +12/14/2015,Politicians,@BrianBallard723,Lead the way @tomemrich ! https://t.co/JHxel02NeY +12/13/2015,Politicians,@BrianBallard723,"RT @cdixon: Adoption of technology in the U.S., 1900 to present https://t.co/YECfwxLnSP https://t.co/ig9s8TaxPr" +12/10/2015,Politicians,@BrianBallard723,.@daynagrayson should we do our next Board Meeting virtually? https://t.co/Ocpq2SNN5N +12/10/2015,Politicians,@BrianBallard723,That's pretty funny https://t.co/aiaFFKvD8K +12/10/2015,Politicians,@BrianBallard723,"""It is industry's turn now"" @JeffImmelt & @generalelectric on the Enterprise revolution https://t.co/CqI05rTGsr https://t.co/CcSGcTU5Pv" +06/30/2018,Politicians,@nick_ayers,"RT @GroverNorquist: Met today with Illinois governor Bruce Rauner +The “Janus” SCOTUS Case was at the start —AFSCME vs Rauner. +Rauner will s…" +06/27/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP on immigration mtg in Guatemala: “We are doing what we need to do in the U.S. to secure our border.. but tomorrow in G… +06/27/2018,Politicians,@nick_ayers,RT @HashtagGriswold: read the last three words of that quote again https://t.co/n8fVlsFdn5 +06/23/2018,Politicians,@nick_ayers,"I thought “Love wins” + +Stay classy @PressSec + +We admire your fortitude, grace, and humility under fire AND your fa… https://t.co/oyQkmQoF2H" +06/22/2018,Politicians,@nick_ayers,"RT @Alyssafarah: In his final column, Krauthammer wrote: ""I believe that the pursuit of truth & right ideas through honest debate and rigor…" +06/19/2018,Politicians,@nick_ayers,"RT @sendavidperdue: Last week, it was announced that the Savannah Harbor Expansion Project will receive the federal funding it needs to sta…" +06/17/2018,Politicians,@nick_ayers,Happy Father’s Day to all you great Dad’s out there...especially mine who is the best! Not a day goes by that I am… https://t.co/zr1I0PQLqP +06/06/2018,Politicians,@nick_ayers,RT @brithume: The sad news of Kate Spade’s apparent suicide is a reminder of the wisdom here: https://t.co/25pSOLVr6x +05/30/2018,Politicians,@nick_ayers,"RT @CNBC: Virgin Galactic took another step on Tuesday toward beginning commercial operations with its latest test flight, only 54 days aft…" +05/28/2018,Politicians,@nick_ayers,RT @YahooFinance: Jeff Bezos outlines Blue Origin's space colony ambitions https://t.co/4jAiJAAt8o via @engadget https://t.co/5q1wcDNGW9 +05/17/2018,Politicians,@nick_ayers,RT @WhiteHouse: #Laurel? #Yanny? Or... https://t.co/5hth07SdGY +05/17/2018,Politicians,@nick_ayers,RT @WillieGeist: James Shaw’s instinct just hours after the shooting and his release from the hospital was to start raising money for the v… +05/10/2018,Politicians,@nick_ayers,RT @PressSec: A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@nick_ayers,RT @USATODAY: Vice President Mike Pence accompanied by his wife Karen Pence and others arrive to greet former North Korean detainees Kim Do… +05/10/2018,Politicians,@nick_ayers,"RT @The_Gospels: Jesus said, ""For mortals it is impossible, but for God all things are possible."" -Mat 19:26" +05/10/2018,Politicians,@nick_ayers,Soon we will board Marine 2 en route to Joint Base Andrews to welcome these patriots back to the Land of the FREE a… https://t.co/JcMXj5ivVx +05/08/2018,Politicians,@nick_ayers,"RT @SenatorLankford: Today’s sham trial involving Dr. Andrew Brunson, filled with secret witnesses & conspiracy theories, is further proof…" +05/08/2018,Politicians,@nick_ayers,RT @StephenMiller: Humbly asking for prayer. Got some hard news today. https://t.co/f4h1HxLRv1 +05/01/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP has been criss-crossing the country talking about how the TAX CUTS are working. Today in Arizona —> “Tax Cuts Have Put… +05/01/2018,Politicians,@nick_ayers,RT @realDonaldTrump: I recently had a terrific meeting with a bipartisan group of freshman lawmakers who feel very strongly in favor of Con… +04/29/2018,Politicians,@nick_ayers,"RT @b0yle: Godspeed, H.G. Wells: @blueorigin sends #NewShepard suborbital spaceship to new heights: https://t.co/z6jcd2baU0 https://t.co/kf…" +04/27/2018,Politicians,@nick_ayers,"RT @CBSNews: Nikki Haley drives Pres. Trump's Israel policy at U.N. -- since arriving at the U.N., she has made a point of trying to turn t…" +04/22/2018,Politicians,@nick_ayers,RT @kanyewest: The thought police want to suppress freedom of thought +04/18/2018,Politicians,@nick_ayers,RT @VPPressSec: Spanish language version of @VP’s op-ed calling out Venezuelan & Cuban regimes & supporting a “hemisphere of freedom” in th… +04/18/2018,Politicians,@nick_ayers,"RT @SecondLady: When I first met Barbara Bush in 1988 as she entertained spouses of congressional candidates at the @VP Residence, her sage…" +04/16/2018,Politicians,@nick_ayers,RT @VP: With our international and commercial partners – American astronauts will return to the Moon to explore its surface & learn how to… +04/11/2018,Politicians,@nick_ayers,"RT @mdubowitz: Before the Islamic Revolution, it took about 70 Iranian rials to buy one US dollar. Today it will take you 60,000. Yet one m…" +04/05/2018,Politicians,@nick_ayers,"RT @wsbtv: To this day, Atlanta is called ""The City Too Busy to Hate."" It's up to all of us to carry on Dr. King's legacy of inclusion. #Ho…" +03/30/2018,Politicians,@nick_ayers,"Truly, a Good Friday #Perrydise https://t.co/zu6R88jQuD" +03/27/2018,Politicians,@nick_ayers,RT @ericgeller: Absolutely amazing that this is happening in a major American city https://t.co/x6pGEsu70K +03/25/2018,Politicians,@nick_ayers,Great to fly down to GA w/my family and the @VP. Thank you @NathanDeal & @GAFirstLady for the warm welcome! Georgia… https://t.co/EMlvWGBhqo +03/24/2018,Politicians,@nick_ayers,Zell Miller was one of my first political heroes. As I got to know him he was always long on good counsel & encoura… https://t.co/OV1E0J06AW +03/17/2018,Politicians,@nick_ayers,The few times @VP has told the story of his grandfather leaving Ireland for the USA it’s brought nearly everyone in… https://t.co/wwLGwgqYdB +03/16/2018,Politicians,@nick_ayers,"RT @SecretarySonny: We're very excited to have @VP Mike Pence headlining our #NationalAgricultureDay celebration at @USDA this Tuesday, hig…" +03/14/2018,Politicians,@nick_ayers,RT @plattdavid: With a heavy heart I share that @IMB_SBC missionaries Randy and Kathy Arnett lost their lives today in a car accident in Af… +03/14/2018,Politicians,@nick_ayers,RT @Suntimes: Pence to lay out administration views on Latin America https://t.co/wjMT9RKVXA https://t.co/AacfRm0Ln2 +03/10/2018,Politicians,@nick_ayers,Love this https://t.co/uoF4C7NbK7 +02/26/2018,Politicians,@nick_ayers,It makes my heart hurt to think about how fast these times go by. A few of my fav pics and memories from their firs… https://t.co/4tqlCSrUPF +02/05/2018,Politicians,@nick_ayers,RT @AshleyRParker: I interrupt your Super Bowl to bring you a micro scoop from me and @annafifield: Otto Warmbier’s father will join Mike P… +02/05/2018,Politicians,@nick_ayers,Agreed. Hard to beat the bio @ericmetaxas wrote. Highly recommend. https://t.co/IDGRkwKgst +02/04/2018,Politicians,@nick_ayers,Depart tomorrow 👇🏼 https://t.co/NMa2hWAZxT +02/04/2018,Politicians,@nick_ayers,"My weekend: +Pizza night w/fam ✔️; Watched Secret Garden w/fam piled on couch ✔️; few hours in Sit Room prepping for… https://t.co/l8tqp1FEmb" +02/03/2018,Politicians,@nick_ayers,Correct https://t.co/xE7IMByVsi +02/03/2018,Politicians,@nick_ayers,RT @BrookingsFP: “The 2018 National Defense Strategy is a heady attempt to drive the U.S. military faster in the direction it has been head… +01/31/2018,Politicians,@nick_ayers,"RT @RepMarkMeadows: The powerful image of a young man, lifting his crutches in defiance of a North Korean regime that once tortured him. I…" +01/31/2018,Politicians,@nick_ayers,RT @jonathanvswan: What a beautiful story. https://t.co/8ynojSjqgN +01/28/2018,Politicians,@nick_ayers,"RT @NinjaEconomics: 1,500 Chinese construction workers built this train station in just nine hours. https://t.co/xYJLuCWmZZ" +01/27/2018,Politicians,@nick_ayers,"RT @ConSource: On this day in 1785, the Georgia General Assembly incorporates the University of Georgia, the first state-funded institution…" +01/27/2018,Politicians,@nick_ayers,Major (positive) ramifications for US space industry if this goes according to plan https://t.co/zGSKk9ZLhT +01/27/2018,Politicians,@nick_ayers,I’ve been close friends w/@nikkihaley for more than a decade and watched her endure/overcome a number of false rumo… https://t.co/5nhnPP2S12 +01/26/2018,Politicians,@nick_ayers,RT @glamourmag: What it's really like to travel with vice president Mike Pence? One female journalist explains: https://t.co/XMIIr8uhg3 htt… +01/24/2018,Politicians,@nick_ayers,NBC News/Lester Holt apparently fall for North Korean propaganda - Fox News https://t.co/nx6CCR9l2k +01/23/2018,Politicians,@nick_ayers,RT @AlliemalCNN: This is done every day at the wall. The VP's office actually made it more accessible for us to see- adding chairs and remo… +01/23/2018,Politicians,@nick_ayers,RT @jdgreenblatt45: At the airport to see off @VP & @SecondLady after their incredibly successful trip. Their visit was a powerful testamen… +01/20/2018,Politicians,@nick_ayers,"RT @jonathanweisman: Own it, Dan. The Democrats held together and voted no. They stopped the CR. If every Republican had voted yes, they st…" +01/20/2018,Politicians,@nick_ayers,"RT @jmartNYT: Hard for Ds to say this is a GOP shutdown if most Rs vote to keep gov’t open & they’re joined by red state Ds + +https://t.co/A…" +01/19/2018,Politicians,@nick_ayers,"RT @MatthewNussbaum: PENCE is still leaving for planned Middle East trip tonight at 7:30, regardless of whether or not govnt shuts down. +h…" +01/19/2018,Politicians,@nick_ayers,"RT @RepMiaLove: Tonight, I voted with the majority in the House of Representatives to prevent a disastrous shutdown, and to ensure funding…" +01/16/2018,Politicians,@nick_ayers,"RT @realMikeLindell: 9-years ago today ( January 16, 2009) I prayed to be free of crack cocaine, alcohol and other addictions. Thankyou Jes…" +01/13/2018,Politicians,@nick_ayers,"RT @susancrabtree: GREAT NEWS -- After pressure from @VP Pence, @USAID.gov Shifts on Aid to Christians, Yazidis in Iraq https://t.co/GOPXBB…" +01/12/2018,Politicians,@nick_ayers,RT @dougstafford: An item in Walmart’s announcement I and others seemed to have missed - a new adoption benefit including paid family leave… +01/11/2018,Politicians,@nick_ayers,RT @mboorstein: This should be retweeted millions of times. https://t.co/0iHNeQuRZO +01/11/2018,Politicians,@nick_ayers,"Promises made, promises kept https://t.co/IpLih1Zqth" +01/11/2018,Politicians,@nick_ayers,RT @VPPressSec: .@VP touches down at @NellisAFB with @SecAFOfficial & @SenDeanHeller. Later he’ll thank our brave airmen & women for their… +01/10/2018,Politicians,@nick_ayers,RT @JakeSherman: ! https://t.co/haQZmW5PfZ +01/10/2018,Politicians,@nick_ayers,It was wonderful to have @realDonaldTrump in our state and grateful (but not surprised) for the roaring welcome he… https://t.co/KBBpjpxOgm +01/07/2018,Politicians,@nick_ayers,100% https://t.co/I6MAP7bFDh +01/07/2018,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Your impression is 100% correct Jake. I have never & would ever say such a thing (I doubt any others did either) I’ve s… +01/06/2018,Politicians,@nick_ayers,RT @MarcusReports: Defense Secretary Jim Mattis talked to reporters at the Pentagon this afternoon. Asked his biggest military concern in 2… +01/05/2018,Politicians,@nick_ayers,RT @VP: Karen & I were honored to host faith leaders for dinner at the Naval Observatory to review what @POTUS has done to protect life & p… +01/04/2018,Politicians,@nick_ayers,.@vp on #IranProtests https://t.co/HT511BxLmj +12/31/2017,Politicians,@nick_ayers,Gov: I gave Sarah pecans from our orchard for Christmas. Are we sure she shot them out of a tree??? See here… https://t.co/lnk4cwyf6r +12/31/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: As our Country rapidly grows stronger and smarter, I want to wish all of my friends, supporters, enemies, haters, and…" +12/30/2017,Politicians,@nick_ayers,RT @VP: .@POTUS & I stand w/ peaceful protestors in Iran who are speaking out for freedom & we condemn the arrests of innocents. The time h… +12/22/2017,Politicians,@nick_ayers,RT @guypbenson: Must. Watch. https://t.co/LXhKH5c2sV +12/21/2017,Politicians,@nick_ayers,"It was inspiring to see America’s absolute best who are crushing ISIS and other terrorists in the region. @POTUS,… https://t.co/tzJqpbTMF0" +12/19/2017,Politicians,@nick_ayers,RT @guypbenson: AP had plenty of characters to spare to add accurate & important context about the bill's sweeping middle class tax cuts. T… +12/19/2017,Politicians,@nick_ayers,RT @rodney_bullard: We want to thank the @ChickfilA Operators and Team Members that answered the call late on a Sunday evening to help serv… +12/19/2017,Politicians,@nick_ayers,"As long as @realDonaldTrump and @VP are here, that’s a fact https://t.co/BHFOvbAsmI" +12/18/2017,Politicians,@nick_ayers,"RT @marc_lotter: In addition to: +✔️ crush ISIS +✔️ lowest unemployment in decades +✔️highest biz/consumer confidence in decades +✔️ 69 new sto…" +12/18/2017,Politicians,@nick_ayers,Cc @KasimReed https://t.co/5PKty4ogvV +12/18/2017,Politicians,@nick_ayers,RT @cbudoffbrown: New @politico investigation from @joshmeyerdc: An ambitious DEA-led campaign targeted Hezbollah’s alleged criminal activi… +12/17/2017,Politicians,@nick_ayers,RT @ArlingtonNatl: Thank you to the more than 75k volunteers who braved the cold weather and heavy traffic to help #HonorThem during @Wreat… +12/17/2017,Politicians,@nick_ayers,I’d say we are off to a good start from a policy perspective 👇🏼 https://t.co/2AoLIX0Llc +12/17/2017,Politicians,@nick_ayers,"RT @dcexaminer: Religious schools, homeschoolers to get a boost in GOP tax plan, thanks to Ted Cruz and Mike Pence https://t.co/MzpQ3ZGi5N…" +12/17/2017,Politicians,@nick_ayers,"RT @BretStephensNYT: I wonder what Oliver Stone, Sean Penn, Naomi Klein, Jeremy Corbyn and the rest of the Chavista love club think when th…" +12/17/2017,Politicians,@nick_ayers,"Infuriating. I couldn’t make it thru the first few paragraphs. This was once, and still should be, one of the most… https://t.co/NPYBV3RO3M" +12/17/2017,Politicians,@nick_ayers,"Great evening, great team. #MAGA https://t.co/h5QxLALQO8" +12/16/2017,Politicians,@nick_ayers,"RT @mattklewis: I don’t think people appreciate how important this tax bill is. IF it passes, GOP can say they (a) passed tax reform, (b)…" +12/16/2017,Politicians,@nick_ayers,RT @DefenseOne: The National Geospatial-Intelligence Agency Launches Bold Recruitment Plan to Hire Silicon Valley’s Best https://t.co/9l3bJ… +12/07/2017,Politicians,@nick_ayers,"RT @StephGrisham45: On our way out of town, @FLOTUS & @SecondLady decided to stop in to @Whataburger for some lunch! The American chain ope…" +12/05/2017,Politicians,@nick_ayers,RT @VPPressSec: “The @VP is committed to doing all he can to support @POTUS’ efforts to keep the homeland safe from threats both foreign &… +12/03/2017,Politicians,@nick_ayers,It’s beginning to look a lot like Christmas! #GoDAWGS +12/02/2017,Politicians,@nick_ayers,"RT @CharlieDaniels: Do not be anxious about anything, but in everything, by prayer and petition, with thanksgiving, present your requests t…" +12/01/2017,Politicians,@nick_ayers,"RT @AjitPaiFCC: Incredible feat of engineering: ""[T]hese well-rested thrusters pick[ed] up the baton as if no time had passed at all."" http…" +11/28/2017,Politicians,@nick_ayers,"RT @NBCNews: “Are you the first lady?!” a boy asked as he embraced Melania Trump during a White House Christmas event. + +“She seriously look…" +11/24/2017,Politicians,@nick_ayers,"Grateful for time with our fam today. And @Sendavidperdue, @SecretarySonny, and I enjoyed the break from DC!… https://t.co/jZhZIBWkcg" +11/24/2017,Politicians,@nick_ayers,RT @LilJon: YEAHHHHHHH https://t.co/QNBlZK15lb +11/23/2017,Politicians,@nick_ayers,First day out of DC in months: bfast at @WaffleHouse w/fam ✔️; four-wheeling w/my boys on the farm ✔️; drove GA bac… https://t.co/bnoGRtEWDD +11/23/2017,Politicians,@nick_ayers,"I will give thanks to you, Lord, with all my heart; I will tell of all your wonderful deeds. Psalm 9:1 #Thanksgiving" +11/18/2017,Politicians,@nick_ayers,"RT @dougstafford: Great read from @arthurbrooks. As the father of 3 adopted children, I can add - if you can, please consider this. https:…" +11/16/2017,Politicians,@nick_ayers,"RT @FreeBeacon: .@VP Trying to Fast-Track U.S. Help to Iraqi Christians, Yazidis, Other Religious Minorities, @susancrabtree reports https:…" +11/15/2017,Politicians,@nick_ayers,"RT @RepMarkMeadows: There are a lot of individuals who worked hard on this, but @SenTomCotton particularly deserves a ton of credit here--h…" +11/15/2017,Politicians,@nick_ayers,RT @RandPaul: Today I am announcing my intention to amend the Senate tax bill to repeal the individual mandate and provide bigger tax cuts… +11/13/2017,Politicians,@nick_ayers,RT @brithume: Fascinating video on the effect wolves have had on Yellowstone Park. Hint: it’s positive. https://t.co/7pl7abhAel +11/11/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP Pence honors veterans by cleaning Vietnam memorial https://t.co/QmL7pSnY7e via @USATODAY +11/11/2017,Politicians,@nick_ayers,RT @ffweekend: VP Pence cleans the Vietnam memorial in D.C. ahead of visit to Arlington National Cemetery #VeteransDay https://t.co/TW6g9Mh… +11/09/2017,Politicians,@nick_ayers,"A heartbreaking and hopeful evening in TX with heroes, survivors, and loved ones of the fallen. Texas: you represen… https://t.co/y48dHnj9Th" +11/06/2017,Politicians,@nick_ayers,"RT @plattdavid: ""Through the darkest night, His light will shine"" - From the first song last week at FBC Sutherland Springs: https://t.co/n…" +11/04/2017,Politicians,@nick_ayers,Thanks Hollywood https://t.co/HjEc2SUPQr +11/02/2017,Politicians,@nick_ayers,"🇺🇸 +Cc @SecretarySonny https://t.co/pqRRHnMTPy" +11/01/2017,Politicians,@nick_ayers,"GA is #1 in college football... + +And #1 for business + +🏈🏦💪🏼 https://t.co/9Ka9mh39Wn" +10/31/2017,Politicians,@nick_ayers,"RT @SecretService: Secret Service Officers help @WhiteHouse welcome local trick or treaters. + +Turns out heroes come in all shapes and sizes…" +10/28/2017,Politicians,@nick_ayers,"RT @VPComDir: .@VP: As you take to the air, as u take a stand for freedom, know you go on the wings of grace & the grateful prayers of the…" +10/25/2017,Politicians,@nick_ayers,RT @VaughnHillyard: Vice President Pence to travel to Israel & Egypt in December--during Hanukkah. +10/25/2017,Politicians,@nick_ayers,"RT @TheBrodyFile: JUST IN: @VP says @realDonaldTrump will rely on faith-based groups, NOT just ineffective @UN to help persecuted Christian…" +10/25/2017,Politicians,@nick_ayers,Passionate speech by @VP in defense of persecuted Christians abroad. Announced new policy of @POTUS via USAID that… https://t.co/zyDmlPHQAH +10/25/2017,Politicians,@nick_ayers,RT @sendavidperdue: The markets have built in the expectation that tax is going to get done this year. Congress must act w/ urgency. https:… +10/24/2017,Politicians,@nick_ayers,A moving speech by the @VP and one more reminder of just how great the men and women who wear the uniform are. 🇺🇸 https://t.co/tA1d11zcGb +10/24/2017,Politicians,@nick_ayers,"RT @VPPressSec: ✂️✂️✂️ +https://t.co/fF3OuADk5H" +10/24/2017,Politicians,@nick_ayers,"RT @USMC: OTD 34 yrs ago the Marine barracks in Beirut, Lebanon was bombed. @VP visited @MBWDC to remember the 241 service members lost. ht…" +10/20/2017,Politicians,@nick_ayers,RT @CurtOnMessage: Every NFL team should force their players to watch Gen. Kelly's remarks today from the White House today. +10/20/2017,Politicians,@nick_ayers,"RT @JenniferJJacobs: “Not a dry eye” in our office, a West Wing staffer tells me after White House watched General John Kelly’s emotional w…" +10/20/2017,Politicians,@nick_ayers,RT @juliehdavis: An incredible moment in the White House briefing room today: https://t.co/sE8iJjqAWp +10/18/2017,Politicians,@nick_ayers,RT @marcorubio: ......His invisible attributes of eternal power & divinity have been able to be understood & perceived in what He has made.… +10/14/2017,Politicians,@nick_ayers,RT @petesnyder: Tremendous having @VP in #SWVA tonight w @EdWGillespie + all our rowdy friends! https://t.co/D4FNifJD5c +10/14/2017,Politicians,@nick_ayers,RT @mike_pence: Well said Mr. President! Looking forward to sharing your message about @EdWGillespie directly with an excited crowd tonight… +10/14/2017,Politicians,@nick_ayers,This never gets old https://t.co/JA9zLOtZgx +10/08/2017,Politicians,@nick_ayers,RT @EricGreitens: Great to join @LukeBryanOnline to celebrate MO farmers and ranchers! #HeresToTheFarmer https://t.co/Jf8iRP1HrQ +10/07/2017,Politicians,@nick_ayers,RT @VaughnHillyard: .@VP & @SecondLady stopped shortly ago at the 58 crosses built in memoriam of the 58 victims of the Las Vegas shooting.… +10/07/2017,Politicians,@nick_ayers,Yesterday https://t.co/BxDCWwZlpt +10/07/2017,Politicians,@nick_ayers,Moving words from a @VP who has traveled relentlessly to bring unity and hope to survivors of one tragedy after ano… https://t.co/R4IPS6AaB7 +10/07/2017,Politicians,@nick_ayers,RT @ricardorossello: My deepest gratitude to @VP & @SecondLady. I admire your faith & appreciate your support; 🇵🇷 is grateful that you are… +10/03/2017,Politicians,@nick_ayers,"RT @ABC: Incredibly moving rendition of ""Amazing Grace"" sung at a candlelight vigil attended by thousands for the victims of the Las Vegas…" +09/30/2017,Politicians,@nick_ayers,"RT @GaramoneDODNews: Federal Emergency Response Working Smoothly, Puerto Rico’s Governor Says https://t.co/UcnmwKUWef https://t.co/6wtN1PhQ…" +09/30/2017,Politicians,@nick_ayers,This GA judge is state treasure. Incredible compassion/wisdom for those who go before her https://t.co/jwQtmVjmJg https://t.co/2A2LDMKn1r +09/30/2017,Politicians,@nick_ayers,"I love it when the public catches a glimpse of who most of these people are behind the scenes, irrespective of part… https://t.co/voZsUVYpTh" +09/29/2017,Politicians,@nick_ayers,RT @SpaceX: Falcon 9 has completed 16 successful landings. https://t.co/OzAA6ziSCz +09/29/2017,Politicians,@nick_ayers,#ThrowbackThursday to the first night we finally had all three at home with us after nearly 2 months of NICU! https://t.co/9ahE8B736H +09/29/2017,Politicians,@nick_ayers,Thrilled. https://t.co/Dnq77Ftuab +09/28/2017,Politicians,@nick_ayers,"RT @VP: As Michigan knows, when the field is level, American workers always win. #VPInMI https://t.co/5b9JKc94ds" +09/25/2017,Politicians,@nick_ayers,RT @RichardGrenell: one year ago > https://t.co/fg6DtJnP2A +09/22/2017,Politicians,@nick_ayers,"RT @nikkihaley: Thousands of Yazidi women have been sold like animals by ISIS. Thanks to this vote,ISIS will face justice, giving victims t…" +09/20/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP called on the @UN to end its “forum for anti-Semitism” against Israel & to boot repressive countries off the U.N. Human… +09/20/2017,Politicians,@nick_ayers,"RT @WiredSources: VP Pence: ""The UN Human Rights Council actually welcomes many of the worst human rights violators in the world."" https://…" +09/20/2017,Politicians,@nick_ayers,"RT @Franklin_Graham: Join me in praying for @POTUS. He reminded the world, “If the righteous many do not confront the wicked few, then evil…" +09/20/2017,Politicians,@nick_ayers,"RT @SheenaGreitens: On North Korea and #RocketMan: photo from my archives. Economist cover, ~2006: https://t.co/vjg8nNKyRt" +09/18/2017,Politicians,@nick_ayers,We are looking forward to two great professionals joining @WhiteHouse @VP team: @Alyssafarah & @CMandreucci will start 10/2 #MAGA +09/16/2017,Politicians,@nick_ayers,He's been with us since Day 1 and will continue to be. The mission continues for Lotter! Thank you for your govt se… https://t.co/zDBQGdWe0j +09/15/2017,Politicians,@nick_ayers,RT @CIA: CIA Director Withdraws from Harvard Kennedy School Forum https://t.co/N7YKyGy9H4 +09/03/2017,Politicians,@nick_ayers,Productive day at @WhiteHouse followed by firing this up & smoking a 9lb 🐷 shoulder. I'm not in a dove field in mid… https://t.co/MsbwH3z2Eh +09/03/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: Together, we will prevail in the GREAT state of Texas. We love you! + +GOD BLESS TEXAS & GOD BLESS THE USA🇺🇸 https://t.c…" +09/02/2017,Politicians,@nick_ayers,"RT @PressSec: ""I just met my President!"" Said lady in pink after taking this selfie with @POTUS. #TexasStrong https://t.co/rtK9IMP1CI" +09/01/2017,Politicians,@nick_ayers,"RT @VP: To people of TX, @POTUS & our admin will be w/ you every day until these great communities rebuild to be better & stronger than eve…" +09/01/2017,Politicians,@nick_ayers,RT @PressSec: .@POTUS signs proclamation declaring this Sunday a National Day of Prayer. https://t.co/eA0rmTm1tF +09/01/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: 'President Donald J. Trump Proclaims September 3, 2017, as a National Day of Prayer' #HurricaneHarvey #PrayForTexas ht…" +08/19/2017,Politicians,@nick_ayers,RT @realDonaldTrump: I want to applaud the many protestors in Boston who are speaking out against bigotry and hate. Our country will soon c… +08/13/2017,Politicians,@nick_ayers,Few mins away from skids up with @VP to Andrews Joint Base ➡️ Colombia ➡️ Argentina ➡️ Chile ➡️ Panama 🇺🇸 https://t.co/DY1FzIyPJo +08/10/2017,Politicians,@nick_ayers,"RT @VP: Productive time in Bedminster with @POTUS Trump. Working lunch w/ Chiefs of Staff, security briefing, and important opioid announce…" +08/06/2017,Politicians,@nick_ayers,"RT @ABCPolitics: .@KellyannePolls: ""Absolutely true the vice president is getting ready for 2020: for reelection as vice president."" https:…" +08/06/2017,Politicians,@nick_ayers,"RT @ABC: .@KellyannePolls on reports VP Mike Pence is eyeing 2020 run: ""That is complete fabrication."" https://t.co/u1wqMuuvAO #ThisWeek ht…" +08/05/2017,Politicians,@nick_ayers,"RT @realDonaldTrump: ""Under Trump, gains against #ISIS have dramatically accelerated"" +https://t.co/jNtOTh0moL" +08/05/2017,Politicians,@nick_ayers,...Yet they are unable to name one donor that has ever heard me say that...because I haven't. #shameful #fakenews https://t.co/j3CZQIPFH2 +08/05/2017,Politicians,@nick_ayers,".@alexburnsNYT @jmartNYT print total lie in #fakenews article. Said I've ""signaled to multiple donors @VP wants to be ready for 2020"" (cont)" +08/02/2017,Politicians,@nick_ayers,RT @VPComDir: .@VP Pence assures Eastern Europe's NATO partners in interview with @FoxNews for @SpecialReport https://t.co/9R69Djos3W #VPin… +08/01/2017,Politicians,@nick_ayers,".@GeorgiaGuard bird behind @VP in Tbilisi, Georgia 💪🏽🇺🇸cc: @SecretarySonny @SecPriceMD https://t.co/6IU24qkpaA" +07/31/2017,Politicians,@nick_ayers,Strong statement from the @VP in Estonia. No more 'leading from behind.' 🇺🇸 https://t.co/8KRswtQIsJ +07/30/2017,Politicians,@nick_ayers,"RT @PhilipRucker: Jarrod Agen @VPComDir has been promoted to Pence's deputy chief of staff, @nick_ayers announces on Air Force Two, via @As…" +07/28/2017,Politicians,@nick_ayers,Honored and humbled beyond words. Excited to partner with General Kelly to serve and support @POTUS and @VP #MAGA https://t.co/5TRRDDm43W +07/23/2017,Politicians,@nick_ayers,RT @JasonMillerinDC: Vice President Mike Pence op-ed: Trump's triumphs are many after only six months and he's just getting started https:/… +07/22/2017,Politicians,@nick_ayers,RT @VP: Congress needs to step up & do their job. Every member of the Senate should vote to begin debate to rescue the U.S. people from Oba… +07/20/2017,Politicians,@nick_ayers,My 80+ grandmother had never voted until I intro'd her to Sen McCain. He clinched her hand & held her close for a photo. I'll never forget. +07/15/2017,Politicians,@nick_ayers,Amen. GA has a lot to be proud of. The legacy of @TheMasters is high on that list and he was a big part. https://t.co/K28RRhFsfY +07/09/2017,Politicians,@nick_ayers,Except of course they aren't donor dinners nor are taxpayer funds used for non govt dinners 😱#MAGA https://t.co/rFr5dcmRyl +06/29/2017,Politicians,@nick_ayers,RT @lecrae: I got the best of Jesus. He got the worst of me. +06/21/2017,Politicians,@nick_ayers,RT @CillizzaCNN: This is right. https://t.co/8EBKj90McP +06/21/2017,Politicians,@nick_ayers,"Big win for @POTUS, @karenhandel, the @GOP, @AmericaFirstPol and the great State of Georgia! This is huge #sweptthespecials #MAGA" +06/18/2017,Politicians,@nick_ayers,#LuckyDad #HappyFathersDay https://t.co/oBYfwW3iL7 +05/30/2017,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Disgusting but not surprising. This is the left today. They consider this acceptable. Imagine a conservative did this t… +05/29/2017,Politicians,@nick_ayers,"RT @LordTinsdale: Exactly right, @sendavidperdue! Those who attack @potus budget cuts as savage want to pass the savagery to my daughter's…" +05/26/2017,Politicians,@nick_ayers,RT @BradOnMessage: You mean the state that just re-elected a Dem gov in '16 and has had Dem senators for 17 of the last 20 overlapping term… +05/21/2017,Politicians,@nick_ayers,RT @IngrahamAngle: Any media outlet claiming to be fair yet doesn't remark on the boldness of @realDonaldTrump speech and purpose is guilty… +05/20/2017,Politicians,@nick_ayers,"""My dear brothers and sisters, don’t be fooled about this. Everything good comes from God. Every perfect gift is from him."" James 1:16" +05/19/2017,Politicians,@nick_ayers,RT @DonaldJTrumpJr: Strange how this isn't getting coverage. #maga https://t.co/I0AGOxzyNY +05/19/2017,Politicians,@nick_ayers,Last day of school here we come! https://t.co/yNb2zbCNzj +05/17/2017,Politicians,@nick_ayers,"RT @ILElectionData: Governor Rauner adds $20 million from Ken Griffin, on top of the $50 million he personally added late last year. +https:…" +05/14/2017,Politicians,@nick_ayers,If God created the perfect mother she was mine #MothersDay +05/12/2017,Politicians,@nick_ayers,Waiting on a table at Jaliscos with this crew who are kicking off a weekend to celebrate that great mama! https://t.co/Mx2JNRML6o +05/11/2017,Politicians,@nick_ayers,RT @VP: TUNE IN! I'm speaking in D.C. at the World Summit in Defense of Persecuted Christians NOW ➡️ https://t.co/D6bv93w8d2 +05/11/2017,Politicians,@nick_ayers,"RT @JusticeWillett: ""Success is not final, failure is not fatal: It is the courage to continue that counts.” +—Winston Churchill + https://t.…" +04/27/2017,Politicians,@nick_ayers,"RT @WashTimes: Every hour, around the world, a Christian is killed for the simple reason of worshipping #RapidReactions @ckchumley https://…" +04/26/2017,Politicians,@nick_ayers,RT @JasonMillerinDC: Fired up for this tax cut news. Making good on another campaign trail promise. #MAGA +04/25/2017,Politicians,@nick_ayers,Thank you @POTUS! A great day for farmers @ The White House. This team continues fighting bad trade deals and elimi… https://t.co/eZXCA20qsj +04/25/2017,Politicians,@nick_ayers,One of many epic hunts with Sonny. A great day for #USA & #USDA cc: @DonaldJTrumpJr https://t.co/Sy0vMHxUvw +04/24/2017,Politicians,@nick_ayers,Wise for them to focus on his first 100 days and not his last... https://t.co/QwEI4Uw0qX +04/24/2017,Politicians,@nick_ayers,This is awesome 👇🏼 https://t.co/WchxSS51lG +04/24/2017,Politicians,@nick_ayers,I appreciate @SenStabenow kind words/support of our next @USDA Secretary Sonny Perdue & wish we saw more of it in Congress! Well done. +04/24/2017,Politicians,@nick_ayers,And Sally Yates didn't resign over this? I'm shocked. https://t.co/nGmFVhfJXY +04/24/2017,Politicians,@nick_ayers,RT @zackroday: Missed this over the weekend. But congrats to Marc Short on the well-deserved recognition. https://t.co/c81Amn3r5H via @virg… +04/24/2017,Politicians,@nick_ayers,RT @bestnaunieever: Calling all #Republicans will you help rally behind @karenhandel 4 #GA06 we need a strong woman in #Congress. https://t… +06/30/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: RETWEET if you support the full legalization of marijuana in Florida! +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: A well deserved head scratch in between takes with @johnmorganesq and Emma. +#ForThePeople #commercial #dogs https://t.co/…" +06/29/2018,Politicians,@JohnMorganESQ,"Opioid makers are dirty rotten crooks who have stolen from us all, killed our children and wreaked havoc for millio… https://t.co/yj84GoFGYo" +06/29/2018,Politicians,@JohnMorganESQ,"Meanwhile #SlickRick fights to allow smokeable cannabis already approved by 72% of the electorate. + +The biggest lo… https://t.co/6J7wIoud2G" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: If you've been overwhelmed by #robocalls recently, you're not alone! Over 4 billion calls were placed last month - many o…" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Just in time for #swimming season, the CDC has issued a new report on disease #outbreaks associated with swimming in rive…" +06/29/2018,Politicians,@JohnMorganESQ,"Stay strong, keep them wondering how you’re still smiling. 😁😎😊" +06/29/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: Unwanted calls and text messages are some of the top complaints people file with the #FCC every year. #robocalls #tcpa… +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: At a chiropractor's office. Office pet Logan is #ForThePeople, too 🤗 +#EverywhereForEveryone #Dogs https://t.co/m4HCHHvQrr" +06/29/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In our #JourneyForJustice, no road is too long, no journey too far, and no fight is too hard. #ForThePeople https://t.co/…" +06/29/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Never get tired of doing little things for others. Sometimes, those little things occupy the biggest part of their heart…" +06/29/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: Retweet this if you are with me. Live free or die! https://t.co/0bzVs0for8 +06/29/2018,Politicians,@JohnMorganESQ,👀 The people have spoken! https://t.co/8rzvZfmP29 +06/28/2018,Politicians,@JohnMorganESQ,"Thank you @RonDeSantisFL, states' rights matter!! https://t.co/XKqOVbFhp3" +06/28/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Behind the scenes of our new commercial with @JohnMorganESQ and Luke 👋🏼 +#HiEmma #ForThePeople https://t.co/62JXCpAdRT" +06/28/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The most outrageous part of @FLGovScott’s appeal is that tax payers are FUNDING all of the legal bills. + +🤔 Think about…" +06/28/2018,Politicians,@JohnMorganESQ,"Small minds can’t comprehend big spirits. To be great, you have to be willing to be mocked, hated and misunderstood. Stay strong. #BELIEVE" +06/28/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: This is the tearing down of prohibition. There are no domestic violence calls because of cannabis but plenty for tequila… +06/28/2018,Politicians,@JohnMorganESQ,Retweet this if you are with me. Live free or die! https://t.co/0bzVs0for8 +06/27/2018,Politicians,@JohnMorganESQ,Carlos together we can! #ForThePeople https://t.co/sArJY3MwWP +06/27/2018,Politicians,@JohnMorganESQ,Build it and they will come. #ForThePeople https://t.co/eBoYxqzU69 +06/27/2018,Politicians,@JohnMorganESQ,This is the tearing down of prohibition. There are no domestic violence calls because of cannabis but plenty for te… https://t.co/AcLWtfCdQA +06/27/2018,Politicians,@JohnMorganESQ,RETWEET if you support the full legalization of marijuana in Florida! +06/27/2018,Politicians,@JohnMorganESQ,As you waste OUR taxpayer money fighting what we voted for... we are watching! You've barely won your 2 races! 1%… https://t.co/zShNIdkmaM +06/27/2018,Politicians,@JohnMorganESQ,".@FLGovScott as you run for US Senate read this ⬇️ + +You may think you can ignore really sick people and our vetera… https://t.co/aJDSQDeTFa" +06/27/2018,Politicians,@JohnMorganESQ,"And why? Because the makers of opioids and other dangerous drugs buy politicians every day. + +This one issue will c… https://t.co/jSZovCI739" +06/27/2018,Politicians,@JohnMorganESQ,"The most outrageous part of @FLGovScott’s appeal is that tax payers are FUNDING all of the legal bills. + +🤔 Think a… https://t.co/YLflVA6QRX" +06/27/2018,Politicians,@JohnMorganESQ,RT @orlandosentinel: John Morgan wants to put recreational marijuana legalization on the ballot https://t.co/27QPeIsREZ https://t.co/4FaLDL… +06/27/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: I'm going to look at starting a fund where we all can donate to get full marijuana legalization on the ballot in 2020.… +06/27/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: The dominoes are falling. + +Senate Approves Medical #Marijuana For Military Veterans And Advances Hemp #Legalization + +h…" +06/27/2018,Politicians,@JohnMorganESQ,"“The secret of change is to focus all of your energy, not on fighting the old, but on building the new.” + +– Socrates" +06/26/2018,Politicians,@JohnMorganESQ,"RT @MayorLevine: If the Legislature won’t do it—we’ll get it done, John! https://t.co/KaU0YMQGyI" +06/26/2018,Politicians,@JohnMorganESQ,Phil you could drop the appeal your first day in office and I know you will. Thank you!! #NoSmokeIsAJoke https://t.co/oqQK0KXLns +06/26/2018,Politicians,@JohnMorganESQ,RT @Fla_Pol: John Morgan hints at ballot initiative for marijuana legalization https://t.co/wAriTApLwl via @JimRosicaFL #FlaPol https://t.c… +06/26/2018,Politicians,@JohnMorganESQ,And guess what Troy? Money will pour in. Let’s legalize gambling in Miami while we're at it. Would kill Vegas. https://t.co/ETDOBhPwio +06/26/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: This is huge. + +Everything is about to change. + +""This approval serves as a reminder that advancing sound development pr…" +06/26/2018,Politicians,@JohnMorganESQ,".@SenBillNelson voted #YesOn2 + +And fully supports the smoking of #MedicalMarijuana as called for in the amendment.… https://t.co/wwefjYnH81" +06/26/2018,Politicians,@JohnMorganESQ,"The United States Senate race between The Astronaut and #SlickRick will be decided by the politics of pot! + +We are… https://t.co/SjFK8WHFhs" +06/26/2018,Politicians,@JohnMorganESQ,I'm going to look at starting a fund where we all can donate to get full marijuana legalization on the ballot in 20… https://t.co/rNsVVUhcfv +06/26/2018,Politicians,@JohnMorganESQ,"Maybe it’s just time for full legalization. It would pass with flying colors! + +Guys like @FLGovScott would vote no… https://t.co/GQitb6N3ng" +06/26/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Very proactive approach by Fiat Chrysler in what appears to be a move that puts people over profits! https://t.co/tBW6Kj… +06/26/2018,Politicians,@JohnMorganESQ,"Be strong, things will get better. It might be stormy now, but rain doesn’t last forever. #BELIEVE" +06/25/2018,Politicians,@JohnMorganESQ,"Work hard for what you want because it wont come to you without a fight. You have to be strong, courageous, and kno… https://t.co/mFOxMbpFqV" +06/23/2018,Politicians,@JohnMorganESQ,RT @forthepeople: June is Alzheimer's Awareness Month and Morgan & Morgan wants to help improve the lives of people who have the disease. T… +06/23/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: A message for @FLGovScott, enough is enough drop YOUR #MedicalMarijuana appeal. Do it for the PEOPLE! + +I'm urging you al…" +06/22/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Fighting for justice takes a lot out of man's best friend! 🐕 Molly's catching some 💤 in @JohnMorganEsq's office. Happy #… +06/22/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Everyone likes the idea of a self-driving car, but most people don’t want to be the test rats for the industry. + +Not a…" +06/22/2018,Politicians,@JohnMorganESQ,RT @forthepeople: We're pleased to announce that 44 of our #attorneys were recently revealed as selected by @SuperLawyers Magazine for its… +06/22/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Every year, @SuperLawyers evaluates #lawyers across the country based on peer recognition and professional achievement fo…" +06/22/2018,Politicians,@JohnMorganESQ,"Never give up on something you really want. It’s difficult to wait, but more difficult to regret!!" +06/22/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: The Business Trial Group is pleased to announce that seven of our #attorneys were recognized by @SuperLawyers Magazin… +06/22/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: New commercials coming soon! Approved by Emma and Molly who kept a close eye on set 🎬📺 +#ForThePeople #ForTheDogs https://…" +06/21/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: I've been saying this loudly for the last 5yrs. It's a no brainer. Small minded people & politicians on the take from dr… +06/21/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: “Look at the sparrows; they do not know what they will do in the next moment. Let us literally live from moment to momen… +06/21/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: ""Influence is difficult to quantify but you know it when you see it.” @JohnMorganESQ is featured in the 2018 edition of t…" +06/21/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: Friendly Challenge: + +Try to acknowledge and smile at every person you pass today. It’s not an easy challenge. But watch…" +06/21/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In our #JourneyForJustice, we've assembled an army of support staff to take on thousands of cases and fight #ForThePeople…" +06/21/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: #SlickRick meanwhile let’s our vets with PTSD suffer. Suicide is often a likely solution. This cruelty will cost @FLGovS… +06/21/2018,Politicians,@JohnMorganESQ,“We all have great inner power. The power is self-faith. There’s really an attitude to winning. You have to see you… https://t.co/ghXLiLqD4K +06/20/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: I again challenge @FLGovScott to a debate so I can show him and all of Florida why he's breaking the law, not following…" +06/20/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The wait is all on #SlickRick, this will cost him the US Senate. + +When you don’t have compassion for our vets, cops, fir…" +06/20/2018,Politicians,@JohnMorganESQ,"RT @JoshConstine: Is this the next HQ Trivia? No waiting. You can wager $3 right now on movies, tech, history trivia and win cash https://t…" +06/20/2018,Politicians,@JohnMorganESQ,If you want to have some fun play our new game @PlayProveIt on your iPhone and make some money! https://t.co/HxCQAfBSg5 +06/20/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: A worldwide paradigm shift is happening as we speak. + +#HealingTheNation + +🙌🏼❤️✌🏼🍃 https://t.co/AJyl4DxpbR" +06/20/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: The dominoes are falling. https://t.co/PNPgjeeY0i +06/20/2018,Politicians,@JohnMorganESQ,"If someone is strong enough to bring you down, show them you are strong enough to get back up!!" +06/20/2018,Politicians,@JohnMorganESQ,The dominoes are falling. https://t.co/PNPgjeeY0i +06/19/2018,Politicians,@JohnMorganESQ,RT @daniprieur: Spoke with @JohnMorganESQ about #smokable medical marijuana ban https://t.co/ghxcBU7xFi +06/19/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: “These are likely lifelong injuries that they are going to be dealing with,” @MattMorganESQ said. He will #fight to ensur…" +06/19/2018,Politicians,@JohnMorganESQ,RT @APSouthRegion: An attorney says some passengers on a #Florida roller coaster that derailed could have lifelong injuries. He says a laws… +06/19/2018,Politicians,@JohnMorganESQ,#SlickRick meanwhile let’s our vets with PTSD suffer. Suicide is often a likely solution. This cruelty will cost… https://t.co/LBQiBmb6G2 +06/19/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: As the parent of two infants, I am constantly experiencing the lack of consistency in children products. https://t.co/hb…" +06/19/2018,Politicians,@JohnMorganESQ,RT @TODAYshow: “I really thought I was going to die.” One of the riders injured in last week’s roller coaster accident in Florida shares he… +06/19/2018,Politicians,@JohnMorganESQ,"""Nothing in the world can take the place of perseverance. Talent will not; nothing is more common than unsuccessful… https://t.co/5ImeBoo1QZ" +06/18/2018,Politicians,@JohnMorganESQ,"And thank you @realDonaldTrump for your support. You get it. + +The makers of opioids thank you @FLGovScott. #NoSmokeIsAJoke" +06/18/2018,Politicians,@JohnMorganESQ,"I again challenge @FLGovScott to a debate so I can show him and all of Florida why he's breaking the law, not follo… https://t.co/t5p3cQTBQj" +06/18/2018,Politicians,@JohnMorganESQ,"The wait is all on #SlickRick, this will cost him the US Senate. + +When you don’t have compassion for our vets, cops… https://t.co/yrKYrNMdxA" +06/18/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Happening Now: Press conference on the #DaytonaBeach Roller Coaster Derailment: https://t.co/ggnaJBpalN +06/18/2018,Politicians,@JohnMorganESQ,"RT @JustinWarmoth: Attorney @MattMorganESQ, who represents three people who were hurt in last week’s roller coaster derailment in Daytona B…" +06/18/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Life is a gift, and it offers us the privilege, opportunity, and responsibility to give something back by becoming more." +06/18/2018,Politicians,@JohnMorganESQ,RT @forthepeople: A woman who was severely injured when a #rollercoaster on the #DaytonaBeach Boardwalk derailed has hired @MattMorganESQ t… +06/18/2018,Politicians,@JohnMorganESQ,I've been saying this loudly for the last 5yrs. It's a no brainer. Small minded people & politicians on the take fr… https://t.co/aBi4IJ2XmZ +06/18/2018,Politicians,@JohnMorganESQ,RT @orlandosentinel: Woman hurt in Daytona roller coaster derailment hires Matt Morgan https://t.co/Xt7YsmCH1Y https://t.co/OtaxDorAnM +06/18/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: Media Advisory: https://t.co/HdECbJUbZi +06/18/2018,Politicians,@JohnMorganESQ,"""Our greatest glory is not in never falling, but in rising every time we fall."" + +– Confucius" +06/17/2018,Politicians,@JohnMorganESQ,"Of all of the jobs I’ve had in life, being a dad was the most challenging and most rewarding. My children are grown… https://t.co/pOeXlt0U5W" +06/17/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: I have been retained to represent the interests of a woman severely injured in the Daytona Beach Boardwalk roller coaste… +06/17/2018,Politicians,@JohnMorganESQ,"RT @darrenrovell: After spending 17 years in an LA parking garage, Al Cowlings Ford Bronco, made famous on this date in 1994 in the highway…" +06/16/2018,Politicians,@JohnMorganESQ,You must understand that the @OrlandoMagic make big money off a free arena & selling tickets to VISITING fans to se… https://t.co/JUVqfTzhAu +06/16/2018,Politicians,@JohnMorganESQ,RT @forthepeople: 30 seconds is all it takes for @JohnMorganESQ to explain why we are #ForThePeople. https://t.co/tj566QDaa2 +06/15/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: Not surprisingly, #BigPharma has found a way to reap additional profits from the #Opioid epidemic that it helped to cre…" +06/15/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: We're running a Virtual #FoodDrive to raise $10,000 for Second Harvest Food Bank @feedhopenow. Join us! Click here to don…" +06/15/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Help others achieve their dreams and you will achieve yours. +06/15/2018,Politicians,@JohnMorganESQ,"RT @BibeeChristian: And Morgan and Morgan can help turn that tide. The Columbus, GA office have some of the finest attorneys and staff you…" +06/15/2018,Politicians,@JohnMorganESQ,"""When you get into a tight place and everything goes against you … never give up then, for that is just the place a… https://t.co/SvUvKs7Fz5" +06/14/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Congrats to attorneys David Henry & John Berke - with help from attorney Adam Kemp - for earning a $214k #verdict for the… +06/14/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Never underestimate the difference you can make in the lives of others. Step forward, reach out and help. This week reac…" +06/14/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Our attorneys aren't afraid to take on the biggest corporations. We never stop fighting #ForThePeople. #StrengthInNumbers… +06/14/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: #Attorney Clay Townsend discusses how experience and persistence paid off in various high-profile #intellectualpropert… +06/14/2018,Politicians,@JohnMorganESQ,We either find a way or make one!! #BELIEVE +06/14/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: ✌🏼be with you today ☀️ https://t.co/2x7Dyb6RDj +06/14/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: 'One person can make a difference, and everyone should try.' - JFK. + +It started with one person's fight, it's grown into…" +06/13/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: 4.1 billion. That’s the number of #robocalls made to American consumers last month, according to a new report. #TCPA #F…" +06/13/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: What did @RobertKennedyJr discuss with us yesterday? Tort reform, #democracy, #justice, and @JohnMorganESQ. Here's a snea…" +06/13/2018,Politicians,@JohnMorganESQ,There is no failure except in no longer trying!! +06/12/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Morgan & Morgan of counsel #attorney @RobertKennedyJr talks about his new book, 'American Values: Lessons I Learned From…" +06/12/2018,Politicians,@JohnMorganESQ,Neal I met him in Underground Atlanta in 1975. I was listening to Piano Red. He gave me an ax handle. Jeff Sessions… https://t.co/If7S2w8vy9 +06/12/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: We just received a $2,500,000.00 #verdict in Orange County. Our client had a permanent injury in his neck called a disc…" +06/12/2018,Politicians,@JohnMorganESQ,.@WillieNelson can you or @SnoopDogg write us a song?? #NoSmokeIsAJoke +06/12/2018,Politicians,@JohnMorganESQ,.@realDonaldTrump needs to FIRE this backwards racist. Sessions is George Wallace & Lester Maddox rolled into one.… https://t.co/0dY4AWhDio +06/12/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: “No act of kindness, no matter how small, is ever wasted.” + +– Aesop" +06/12/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: The #recall is especially important to Floridians because experts say vehicles with #Takata #airbags in hot and humid c… +06/12/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: The hotter it gets the greater the risk! https://t.co/JNKjYXxZqV +06/12/2018,Politicians,@JohnMorganESQ,Gaetz gets it. @mattgaetz please tell #SlickRick it’s time to break away from Jeff Beauregard Sessions and enter th… https://t.co/v4msaEle7I +06/12/2018,Politicians,@JohnMorganESQ,Character consists of what you do on the third and fourth tries. +06/11/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: @ChristieZizo @JimRosicaFL @JohnMorganESQ You got it @ChristieZizo! Emma, and Molly - they’re never far from @JohnMorganE…" +06/11/2018,Politicians,@JohnMorganESQ,"I don’t think @FLGovScott should want to be in that company, he can allow smoke today with the wave of a pen.… https://t.co/exqbKSyO1s" +06/11/2018,Politicians,@JohnMorganESQ,"Many thanks to @realDonaldTrump for his statements concerning #MedicalMarijuana. He gets it. + +It seems the last two… https://t.co/vDQSBUwKqQ" +06/11/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: When you hire us, you're hiring an army of lawyers who'll fight on your behalf. #ForThePeople #StrengthInNumbers https://…" +06/11/2018,Politicians,@JohnMorganESQ,"Your future is created by what you do TODAY, not tomorrow!" +06/09/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: 🙌🏼🙌🏼🙌🏼 https://t.co/ZmGwQj3LGp +06/09/2018,Politicians,@JohnMorganESQ,RT @forthepeople: What does it mean to be #ForThePeople? We're an army of over 400 lawyers who are built for the fight. 💪 #StrengthInNumbe… +06/09/2018,Politicians,@JohnMorganESQ,"RT @MayorLevine: Thanks @JohnMorganESQ, it’s time to do the right thing and legalize recreational marijuana in Florida! #sayfie #flapol htt…" +06/08/2018,Politicians,@JohnMorganESQ,"But in the end, for you, and those that benefit from full #legalization, it will have made all the difference in th… https://t.co/0zZkTgu3rT" +06/08/2018,Politicians,@JohnMorganESQ,Like many big things it takes time to make change. Think of same sex marriage. The politicians who were brave enoug… https://t.co/FL3ELh3VE1 +06/08/2018,Politicians,@JohnMorganESQ,"Phil your position is the correct one! 👏👏👏 + +Minorities, young people, & those without money are the ones that get c… https://t.co/kGasxMKP5s" +06/08/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: If you want to understand fully what @FLGovScott is doing to our veterans, first responders, and really sick Floridians.…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: “The batteries, when unstable, can pack the punch of a roman-candle grenade,” said @MikeMorganESQ, managing partner of…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: You need to be aware of what others are doing, applaud their efforts, acknowledge their successes, and encourage them in…" +06/08/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: Get your car checked, if not it will be too late when you realize you have a problem! https://t.co/mxtIdJFKgT" +06/08/2018,Politicians,@JohnMorganESQ,RT @BusinessTrialGr: .@forthepeople is proud to announce that attorney Keith Meehan has joined the firm's Business Trial Group. Meehan brin… +06/08/2018,Politicians,@JohnMorganESQ,"""Keep away from people who try to belittle your ambitions. Small people always do that, but the really great makes… https://t.co/AilNR5jgKb" +06/08/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: When a #drug company pays kickbacks to a physician, they’re trying to get that physician’s patients to use a product. Usi…" +06/08/2018,Politicians,@JohnMorganESQ,RT @MattMorganESQ: President @realDonaldTrump just said he “probably will end up supporting” the bipartisan #marijuana legislation reform b… +06/08/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: While at the same time #SlickRick is denying smoke to veterans with PTSD. The cruelty and meanness has no rival! + +Smoke…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: Over the past 30 years, our firm has represented over 200K people, collecting #billions in the process. I often wonder w…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: #SlickRick is out of touch with his own President! + +Thank you @realDonaldTrump. You get it, #NoSmokeIsAJoke. https://t.c…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: I have heard similar comments from other President Trump “insiders”. + +Very popular issue for President @realDonaldTrum…" +06/07/2018,Politicians,@JohnMorganESQ,"Think of the ratings for that hour. We might beat the #RoyalWedding! + +#NoSmokeIsAJoke #100K https://t.co/shRFve1Gig" +06/07/2018,Politicians,@JohnMorganESQ,While at the same time #SlickRick is denying smoke to veterans with PTSD. The cruelty and meanness has no rival!… https://t.co/A43H11oWXV +06/07/2018,Politicians,@JohnMorganESQ,"#SlickRick is out of touch with his own President! + +Thank you @realDonaldTrump. You get it, #NoSmokeIsAJoke. https://t.co/MfVeKU2Gr1" +06/07/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: We’ve come a long way!! + +65% of Americans say it is “morally acceptable” to 💨 #marijuana. + +Yes, that’s a healthy majori…" +06/07/2018,Politicians,@JohnMorganESQ,RT @MikeMorganESQ: Happiness is a by-product of an effort to make someone else happy. 😀 +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: If #SlickRick would rather, I will donate $100K to the charity of his choice! The Ann Scott Trust located in the Isle of…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Gary, here's my offer to Florida. I would like to debate @FLGovScott on this issue so all of Florida can see his positio…" +06/07/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Someone’s keeping a close eye on today’s commercial shoot. +#ForTheDogs #Emma #ForThePeople https://t.co/xFUimXdLWW" +06/07/2018,Politicians,@JohnMorganESQ,The only way of finding the limits of the possible is by going beyond them into the impossible. +06/07/2018,Politicians,@JohnMorganESQ,"If #SlickRick would rather, I will donate $100K to the charity of his choice! The Ann Scott Trust located in the Is… https://t.co/PuAaHAuzwJ" +06/06/2018,Politicians,@JohnMorganESQ,"Florida deserves to hear @FLGovScott out and I am willing to pay for it! + +Anywhere. Anytime. + +You can run but you… https://t.co/3bI7MY1AZo" +06/06/2018,Politicians,@JohnMorganESQ,"Gary, here's my offer to Florida. I would like to debate @FLGovScott on this issue so all of Florida can see his po… https://t.co/3lR8RGD7IN" +06/06/2018,Politicians,@JohnMorganESQ,"And remember this @FLGovScott... + +#MedicalMarijuana got 500,000 MORE votes than you last time and you won by only… https://t.co/famcfdma55" +06/06/2018,Politicians,@JohnMorganESQ,"Or it could be ended TODAY if #SlickRick stops wasting the state's money and hurting veterans, cops, firefighters a… https://t.co/8PsTpmG2wX" +06/06/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: The department of health's delay in getting #MedicalMarijuana cards has been intentional. No one could be that inept! + +I…" +06/06/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: That shirt tho 🔥 🔥🔥 + +Let me borrow that @JohnMorganESQ https://t.co/FKnFvcnBdQ" +06/06/2018,Politicians,@JohnMorganESQ,"RT @ClassActionCom: The U.S. Food and Drug Administration has named dozens of #drugmakers who game the system by delaying cheaper, #generic…" +06/06/2018,Politicians,@JohnMorganESQ,"RT @MikeMorganESQ: “If you light a lamp for somebody, it will also brighten your path.” + +– Buddha" +06/06/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Judge Karen Gievers lifted an automatic stay on her ruling on smokable #medicalmarijuana. It's about compassion #forthepe… +06/06/2018,Politicians,@JohnMorganESQ,Nobody who ever gave their best has regretted it!! +06/06/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: #SlickRick please follow the law & the will of 72% of the people. Everyday you waste taxpayers' money w/ this frivolous… +06/05/2018,Politicians,@JohnMorganESQ,The department of health's delay in getting #MedicalMarijuana cards has been intentional. No one could be that inep… https://t.co/ylDlkpjY10 +06/05/2018,Politicians,@JohnMorganESQ,#SlickRick please follow the law & the will of 72% of the people. Everyday you waste taxpayers' money w/ this frivo… https://t.co/u1gpG4UAgL +06/05/2018,Politicians,@JohnMorganESQ,"If you want to understand fully what @FLGovScott is doing to our veterans, first responders, and really sick Florid… https://t.co/HFECoE00Uf" +06/05/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: But not to #SlickRick! + +This will cost @ScottforFlorida!! #NoSmokeIsAJoke https://t.co/67RqkLJuqP" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: .@JohnMorganESQ speaks to @wmfeorlando about the legal battle over smokable #MedicalMarijuana, and how he thinks it will…" +06/05/2018,Politicians,@JohnMorganESQ,"But not to #SlickRick! + +This will cost @ScottforFlorida!! #NoSmokeIsAJoke https://t.co/67RqkLJuqP" +06/05/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: 🙏 Pray for Beauregard, he has many issues. https://t.co/oMXvNV93H5" +06/05/2018,Politicians,@JohnMorganESQ,"RT @MattMorganESQ: In a democracy, in which the majority (95%) of the people support #marijuana for #medical purposes, this should be treat…" +06/05/2018,Politicians,@JohnMorganESQ,RT @ClassActionCom: This has prompted questions about why the #drug does not have warning labels about potentially fatal side effects. http… +06/05/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: In order to be who you are, you must let go of who you think you are. 👌🏼" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: We believe in your right to smoke #medicalmarijuana. We fought to protect that right, and we won. It's time for compassio…" +06/05/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: In five years, they've become a dynamic duo. @MattMorganESQ & @KeithMitnikESQ talk about their partnership: https://t.co/…" +06/05/2018,Politicians,@JohnMorganESQ,"When was the last time you visited a library?! Money down the drain. + +@WinterParkFla, spend it on food!! https://t.co/tAlYIlctND" +06/05/2018,Politicians,@JohnMorganESQ,"🙏 Pray for Beauregard, he has many issues. https://t.co/oMXvNV93H5" +06/05/2018,Politicians,@JohnMorganESQ,"""When we strive to become better than we are, everything around us becomes better too."" + +- @paulocoelho" +06/04/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Take off the Navy hat, I have a new one that's more appropriate: #ScrewTheVets + +These men & women have fought wars for u…" +06/04/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: .@FLGovScott says he's “just following the law” while denying the will of the people and hurting really sick people. Don… +06/04/2018,Politicians,@JohnMorganESQ,"Governor Scott, you have the power. You are the law. #CompassionMatters + +#NoSmokeIsAJoke" +06/04/2018,Politicians,@JohnMorganESQ,"Take off the Navy hat, I have a new one that's more appropriate: #ScrewTheVets + +These men & women have fought wars… https://t.co/EsbpdRTYaP" +06/04/2018,Politicians,@JohnMorganESQ,"This chapter will be a stain on @ScottforFlorida forever. Every day he delays is a day of suffering for one of us,… https://t.co/ur9RN7x3II" +06/04/2018,Politicians,@JohnMorganESQ,"Likewise he could today, drop the state's appeal and smokeable #marijuana would be there for those who need it most… https://t.co/Mr4iTDZJ1D" +06/04/2018,Politicians,@JohnMorganESQ,"Gov. Scott is smart, he read in the intent language the same thing Judge Gievers read that the voters approved, smo… https://t.co/iRAnmj5Nby" +06/04/2018,Politicians,@JohnMorganESQ,.@FLGovScott says he's “just following the law” while denying the will of the people and hurting really sick people… https://t.co/MDlYNqJKjc +06/04/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: Morgan & Morgan. AND Morgan. 😉 +#ForThePeople #LAW #Verdict https://t.co/aID9bToSXQ" +06/04/2018,Politicians,@JohnMorganESQ,RT @forthepeople: Former judge and current @forthepeople attorney @BelvinPerryJr speaking at last night's @The100GO #scholarship dinner. Me… +06/04/2018,Politicians,@JohnMorganESQ,It’s a matter of dignity. #NoSmokeIsAJoke https://t.co/SraspalPxS +06/04/2018,Politicians,@JohnMorganESQ,"Governor Scott, it is not about your past, it is about COMPASSION for Florida! + +Learn and grow! + +I don’t think you'… https://t.co/qboX5iuBDR" +06/04/2018,Politicians,@JohnMorganESQ,.@FLGovScott had family members who had problems with drugs. Not with cannabis but with drugs. He can’t separate th… https://t.co/60jtZJfKjj +06/04/2018,Politicians,@JohnMorganESQ,"""You will never plough a field if you only turn it over in your mind."" + +- Irish Proverb ☘️" +06/03/2018,Politicians,@JohnMorganESQ,Please ask your friends to follow me here on Twitter as the people speak truth to power and the makers of opioids. #LiveFreeOrDieTrying +06/03/2018,Politicians,@JohnMorganESQ,".@FLGovScott was elected and reelected by one percentage point. Our veterans, cops, & firefighters who desperately… https://t.co/tJn8tdle4l" +06/03/2018,Politicians,@JohnMorganESQ,"Gary in this new day on the internet with Twitter & Facebook, all the shares & retweets are the airwaves. I will ha… https://t.co/rqGuzJRej7" +06/03/2018,Politicians,@JohnMorganESQ,Are you moving to a bigger mansion? https://t.co/7eFY4h7RhQ +06/03/2018,Politicians,@JohnMorganESQ,".@FLGovScott this is the law. Did you read the statement of intent? Yes or no? + +@SenBillNelson did and voted YES!!… https://t.co/pjjSDuAGk6" +06/02/2018,Politicians,@JohnMorganESQ,"Do they have Makers Martinis? + +I am a hillbilly from Kentucky. I might just fly down and surprise you! https://t.co/ri2vs6RFBp" +06/02/2018,Politicians,@JohnMorganESQ,"RT @forthepeople: The dream team! Full video here: https://t.co/y6skdiaGL7 +#ForThePeople #StrengthInNumbers #LAW https://t.co/Kx2OQnnLK9" +06/02/2018,Politicians,@JohnMorganESQ,Hey Neal let’s have a drink and discuss. To know me is to love me! https://t.co/vKqfrLvzJ5 +06/02/2018,Politicians,@JohnMorganESQ,Billy that is so true!! https://t.co/paSsF9An0v +06/02/2018,Politicians,@JohnMorganESQ,"RT @DMorganESQ: Verdict !!!! +Last offer to my client was 3k, the jury just returned a verdict in the amount of 170k !!!! Justice has been s…" +06/02/2018,Politicians,@JohnMorganESQ,"RT @JohnMorganESQ: Now for a few questions for @FLGovScott... + +Did you vote NO and now have found a way to thwart the WILL of the people an…" +06/02/2018,Politicians,@JohnMorganESQ,RT @JohnMorganESQ: .@SenBillNelson read the intent language that clearly stated it was to be smoked. He read the ballot language that said… +07/01/2018,Politicians,@SenJohnMcCain,"RT @FaceTheNation: TODAY: +💬 @AmbJohnBolton +💬 @SenToomey +💬 @SenBlumenthal +💬 Fmr. Amb. Roberta Jacobson +💬 @MarkSalter55 + +📺 Don't miss @F…" +06/29/2018,Politicians,@SenJohnMcCain,"Cindy & I are praying for the families, friends & colleagues of the victims of the terrible shooting… https://t.co/LYfLWN9QI2" +06/29/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""What Does the United States Stand For?"" https://t.co/C0dzQkn7RQ" +06/29/2018,Politicians,@SenJohnMcCain,Thank you @jamiemfly for the great review in @weeklystandard of my new book #TheRestlessWave! https://t.co/YJahRn50fU +06/27/2018,Politicians,@SenJohnMcCain,Congratulations to my friend @MittRomney on his victory last night - an outstanding leader for #Utah & the nation! #utpol +06/27/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""Trump Rides a Harley—to Europe: The U.S. casualties of his trade war are starting to mount"" https://t.co/TPacnAwp5X" +06/25/2018,Politicians,@SenJohnMcCain,"Must-read @azcentral: ""Granite Mountain Hotshots: An untold story from the day 19 firefighters died"" https://t.co/Wbkee1zwAe" +06/24/2018,Politicians,@SenJohnMcCain,Cindy & I send our prayers to the family & friends of Lt. Christopher Carey Short who was tragically killed in an A… https://t.co/wiN0I3jLu7 +06/22/2018,Politicians,@SenJohnMcCain,"Cindy & I are deeply saddened by the passing of our friend Charles Krauthammer. Brilliant, kind, funny & generous,… https://t.co/bBDJoZfcZn" +06/21/2018,Politicians,@SenJohnMcCain,Sent letter today urging @DeptVetAffairs to address poor quality ratings at #Arizona VA nursing homes https://t.co/BOaXiHh7YO +06/20/2018,Politicians,@SenJohnMcCain,"RT @ChrisCoons: On #WorldRefugeeDay, @SenJohnMcCain & I are calling on the Trump admin to withdraw the nomination of Ronald Mortensen to se…" +06/19/2018,Politicians,@SenJohnMcCain,Sent letter w/ @ChrisCoons urging the admin to withdraw nomination of Ronald Mortensen to lead US refugee & migrati… https://t.co/UF4BTaUBZt +06/19/2018,Politicians,@SenJohnMcCain,"RT @joshledermanAP: NEW from @AP: ⁦@SenJohnMcCain⁩, ⁦@ChrisCoons pen letter to ⁦@SecPompeo⁩ urging Trump administration to withdraw migrati…" +06/19/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost by human rights icon Natan Sharansky: ""The U.S. stood with Soviet dissidents. It should s… https://t.co/cT5YpRzuHk" +06/19/2018,Politicians,@SenJohnMcCain,"Wonderful @washingtonpost piece on my friend @SenatorDole, a man who can teach all Americans about what it means to… https://t.co/GRtXCv5teo" +06/18/2018,Politicians,@SenJohnMcCain,"The administration’s current family separation policy is an affront to the decency of the American people, and cont… https://t.co/dcHVT3KtCw" +06/18/2018,Politicians,@SenJohnMcCain,"I'm very proud the Senate voted 85-10 to pass the #FY19NDAA, vital legislation that will provide for our men & wome… https://t.co/ixpHqOzAto" +06/18/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""A Troops for Nukes Trade? U.S. forces in South Korea do far more than protect Seoul"" https://t.co/09twqxAn0J" +06/14/2018,Politicians,@SenJohnMcCain,Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts… https://t.co/vGnkifQFyu +06/14/2018,Politicians,@SenJohnMcCain,I'm deeply honored @SenJackReed & my colleagues have voted to designate the Strategic Defense Fellows Program in my… https://t.co/NdT50RAP56 +06/14/2018,Politicians,@SenJohnMcCain,"Must-read by @vkaramurza in @washingtonpost: ""Yes, #Russia should rejoin the Group of Seven — when it becomes a dem… https://t.co/xtWcI3DGZX" +06/14/2018,Politicians,@SenJohnMcCain,Thank you my friend @JeffFlake https://t.co/bgc4ICrwiL +06/13/2018,Politicians,@SenJohnMcCain,US sanctions on Hun Sen's bodyguards represent a positive step forward in holding the regime accountable. More desi… https://t.co/E11dD3l79j +06/13/2018,Politicians,@SenJohnMcCain,"Must-read column by @marcthiessen in @washingtonpost today: ""On Charles Krauthammer, my friend, mentor and lodestar"" https://t.co/aDlr4l8iYA" +06/13/2018,Politicians,@SenJohnMcCain,"A worthy honor for an extraordinary man: ""@usairforce honors #Vietnam hero who served in 3 wars, was John McCain’s… https://t.co/m4L6Haa9zt" +06/13/2018,Politicians,@SenJohnMcCain,RT @people: Meghan McCain Honors Her Dad Ahead of Father’s Day: 'I Have a Beautiful Feeling About Our Relationship' https://t.co/Yg6ro3ORmC +06/12/2018,Politicians,@SenJohnMcCain,Sending full support to @tsipras_eu & @Zoran_Zaev as they work together to solve the #Macedonia naming dispute. If… https://t.co/HeFWGvVb9G +06/11/2018,Politicians,@SenJohnMcCain,"Cindy & I send our heartfelt condolences to the family & friends of Staff Sgt. Alexander W. Conrad of Chandler,… https://t.co/Y3CUxl0B72" +06/10/2018,Politicians,@SenJohnMcCain,"To our allies: bipartisan majorities of Americans remain pro-free trade, pro-globalization & supportive of alliance… https://t.co/IcT1QCv2YC" +06/09/2018,Politicians,@SenJohnMcCain,RT @MeghanMcCain: So amazing to be here tonight at The American Spirit Awards at The National WWII Museum in New Orleans - such an honor to… +06/08/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Friday will always be Charles’s day"" https://t.co/hRCXFPhrSN" +06/08/2018,Politicians,@SenJohnMcCain,"Cindy & I are praying for our dear friend Charles @krauthammer. A man of incredible intellect & character, Charles… https://t.co/lJA1gDhQgt" +06/08/2018,Politicians,@SenJohnMcCain,Vladimir Putin chose to make #Russia unworthy of membership in the G-8 by invading Ukraine and annexing Crimea. Not… https://t.co/ipcYsr3zfa +06/08/2018,Politicians,@SenJohnMcCain,RT @TJQuinnESPN: We were joined by @SenJohnMcCain @Kasparov63 @MichaelJMorell @MartynyukLeonid Richard McLaren and many others. Please watc… +06/07/2018,Politicians,@SenJohnMcCain,RT @SASCMajority: The report to accompany the John S. McCain #FY19NDAA (S. Rpt. 115-262) has been posted: https://t.co/UXOI7dyZi8 +06/07/2018,Politicians,@SenJohnMcCain,"Must-read @lawfareblog by @RHFontaine & Vance Serchuk: ""Congress Should Oversee America’s Wars, Not Just Authorize… https://t.co/a0uayIQLUB" +06/07/2018,Politicians,@SenJohnMcCain,".@thehill: ""Senate defense bill eyes threats from #Russia, #China"" https://t.co/IR7kCGkwTD" +06/06/2018,Politicians,@SenJohnMcCain,Proud the #VAMISSIONAct has been signed into law. This bill will provide veterans w/ greater health care choices &… https://t.co/IWY0gXyE3W +06/06/2018,Politicians,@SenJohnMcCain,"America is the land of the immigrant’s dream. For centuries, people have come to this country for the opportunities… https://t.co/KA2cVfF0MT" +06/05/2018,Politicians,@SenJohnMcCain,"Great to hear the Senate will soon be opening debate on the #FY19NDAA, a bipartisan bill that will provide America'… https://t.co/cTvSCZC5r6" +06/05/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""#China’s Military Escalation: Mattis and Congress push back against Beijing’s South China Sea depl… https://t.co/mO1pJ3SfEu" +06/02/2018,Politicians,@SenJohnMcCain,I strongly support the bipartisan effort in the House to file a discharge petition to reopen the debate on immigrat… https://t.co/DrgFB72xwZ +06/01/2018,Politicians,@SenJohnMcCain,Important @CNN read by George Shultz & Pedro Aspe: “A better way than tariffs to improve America's trade picture” https://t.co/A3e38jBkTp +06/01/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""#Burma’s crimes against humanity went unpunished. No wonder it’s at it again."" https://t.co/nF55uRrXSl" +05/31/2018,Politicians,@SenJohnMcCain,RT @cindymccain: It is our duty as a country to take care of these vulnerable children and adults. https://t.co/Z1atwtZZJ8 +05/31/2018,Politicians,@SenJohnMcCain,"My deepest thanks to the readers of our new book, The Restless Wave, which is now #1 on @nytimes best sellers list… https://t.co/OTzeJDtkqA" +05/30/2018,Politicians,@SenJohnMcCain,Must-read by my friend @GrantWoods in @USATODAY https://t.co/bzeq1XUBEk +05/30/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""Myanmar Is Intensifying Violence Against Ethnic Minorities, U.S. Says"" https://t.co/9UeXC5jOth" +05/28/2018,Politicians,@SenJohnMcCain,Today we honor the Americans who sacrificed everything to secure the blessings of liberty. Family and friends to so… https://t.co/mlkXE1YLv9 +05/27/2018,Politicians,@SenJohnMcCain,"RT @jaketapper: Corporal Matthew Stanley, KIA December 16, 2006 when his Humvee struck an IED on patrol in Taji, Iraq. @SenJohnMcCain wears…" +05/27/2018,Politicians,@SenJohnMcCain,Happy 95th birthday to my friend Dr. Henry Kissinger! +05/24/2018,Politicians,@SenJohnMcCain,RT @SenJackReed: Chairman @SenJohnMcCain’s devotion to duty & sheer determination are inspiring. He has always taken on challenges with a s… +05/24/2018,Politicians,@SenJohnMcCain,"Every year, our committee reports out a bill that is debated, amended & signed into law—imperfect, full of compromi… https://t.co/yCqqPeKdZX" +05/24/2018,Politicians,@SenJohnMcCain,"Thanks to my #SASC colleagues’ commitment to principled legislating, I believe the NDAA will continue to serve as a… https://t.co/Yd15TbfBEX" +05/24/2018,Politicians,@SenJohnMcCain,My term as #SASC Chairman has been far from perfect. But I'm proud our members have upheld the Senate’s finest trad… https://t.co/VoNOJquONI +05/24/2018,Politicians,@SenJohnMcCain,I’d also like to express my thanks to @JimInhofe for shepherding the #FY19NDAA through the committee markup in my a… https://t.co/7TiUgUr1r3 +05/24/2018,Politicians,@SenJohnMcCain,I count myself fortunate to have @SenJackReed as my partner on the committee. We come from different parties & we’v… https://t.co/RavgP3ajHX +05/24/2018,Politicians,@SenJohnMcCain,I’m proud #SASC voted overwhelmingly to pass the #FY19NDAA. One of the greatest honors of my life has been to serve… https://t.co/AQTT0MGUmG +05/24/2018,Politicians,@SenJohnMcCain,I applaud @POTUS for issuing a posthumous pardon of boxing legend Jack Johnson for his racially charged conviction… https://t.co/KyakCfSZwA +05/24/2018,Politicians,@SenJohnMcCain,RT @TODAYshow: Here’s a powerful new look at @HBO’s documentary about the life and career of @SenJohnMcCain https://t.co/0vo7uYFSdo +05/24/2018,Politicians,@SenJohnMcCain,".@ABC: ""John McCain says in new biopic: 'I'm a human being and I'm not a maverick'"" https://t.co/vf9OVupd8Q" +05/24/2018,Politicians,@SenJohnMcCain,RT @CNNPolitics: The VA health care bill is named after Sen. John McCain https://t.co/vwPsoDhSby https://t.co/wH3FgjmWd1 +05/23/2018,Politicians,@SenJohnMcCain,"I'm deeply humbled my colleagues have designated this bill in my name, along with my friend & comrade,… https://t.co/sRfSu75gNC" +05/23/2018,Politicians,@SenJohnMcCain,"I applaud the Senate for passing the #VAMISSIONAct, which includes major reforms I cosponsored with @JerryMoran to… https://t.co/J158F018ma" +05/23/2018,Politicians,@SenJohnMcCain,"Must-read @JeffreyGoldberg @TheAtlantic: ""John McCain’s Greatest Fear: A conversation with Mark Salter about the co… https://t.co/7sDZxcbSxc" +05/22/2018,Politicians,@SenJohnMcCain,"Cindy & I send our heartfelt prayers to Susan, Evan & the entire Bayh family. We are with you in this fight & confi… https://t.co/nJ0q6PDpEA" +05/22/2018,Politicians,@SenJohnMcCain,"RT @iBooks: .@SenJohnMcCain’s new memoir: Read his candid story. #TheRestlessWave +https://t.co/4zLttRqiMO https://t.co/NtPxPjzJxg" +05/22/2018,Politicians,@SenJohnMcCain,"RT @CNN: Speechwriter helps Sen. John McCain say his piece in his new book, ""The Restless Wave,"" which is being released this week https://…" +05/22/2018,Politicians,@SenJohnMcCain,"RT @ABCPolitics: Sen. John McCain's new book provides insights into his 2008 presidential race against Barack Obama, his thoughts on Donald…" +05/22/2018,Politicians,@SenJohnMcCain,"RT @mikeallen: on publication day, @MarkSalter55 tells me how he and @SenJohnMcCain wrote their final book together ... Salter has 20-25 ho…" +05/22/2018,Politicians,@SenJohnMcCain,".@NPR: ""In 'The Restless Wave' Sen. John McCain Discusses Principles He Wants The U.S. To Keep"" https://t.co/zzYGi7joLD" +05/22/2018,Politicians,@SenJohnMcCain,".@CNN on my new book w/ @MarkSalter55, The Restless Wave, which is now out today: ""Speechwriter helps John McCain s… https://t.co/OpEzwgX847" +05/21/2018,Politicians,@SenJohnMcCain,RT @MeghanMcCain: So wonderful having my fathers alter ego (and author of The Restless Wave) @MarkSalter55 & filmmaker of my fathers new @H… +05/21/2018,Politicians,@SenJohnMcCain,"RT @TheView: Filmmaker Teddy Kunhardt says @SenJohnMcCain had two goals for his documentary: ""I want to tell the American people I'm not pe…" +05/21/2018,Politicians,@SenJohnMcCain,".@nypost: ""This week’s must-read books"" https://t.co/svS1iUzfnQ" +05/21/2018,Politicians,@SenJohnMcCain,"RT @TheView: THIS MORNING: We talk to the co-author of @SenJohnMcCain's new book, @MarkSalter55, and the director of his documentary, Teddy…" +05/21/2018,Politicians,@SenJohnMcCain,".@USATODAY: ""5 books you won't want to miss this week, including Stephen King, John McCain"" https://t.co/okR35aCedN" +05/21/2018,Politicians,@SenJohnMcCain,"RT @NorahODonnell: ""Eternal Father, strong to save, Whose arm hath bound the restless wave."" Our conversation with @MarkSalter55 on new boo…" +05/21/2018,Politicians,@SenJohnMcCain,"RT @CBSThisMorning: Senator John McCain says his cancer diagnosis makes him free to speak his mind. He does exactly that in his new book, ""…" +05/21/2018,Politicians,@SenJohnMcCain,"RT @CBSNews: ""[Sen. John McCain] recognizes that so much more unites us than divides us and in this country the only way to get things done…" +05/21/2018,Politicians,@SenJohnMcCain,"My friend & coauthor @MarkSalter55 joined @CBSThisMorning today to discuss our new collaboration, The Restless Wave… https://t.co/v9EyGaq91D" +05/20/2018,Politicians,@SenJohnMcCain,"RT @CBSSunday: Co-writer @MarkSalter55 talks about the themes of the latest memoir by +@SenJohnMcCain, who has been diagnosed with brain ca…" +05/20/2018,Politicians,@SenJohnMcCain,Happy birthday to my extraordinary wife @cindymccain - you make us very proud! https://t.co/Xln5OOvQKJ +05/18/2018,Politicians,@SenJohnMcCain,"Thanks to my family, friends & colleagues for coming together yesterday for the premiere of the new @HBODocs ""John… https://t.co/KPNV2Jccvs" +05/17/2018,Politicians,@SenJohnMcCain,Happy 37th anniversary to my love @cindymccain - time flies when you’re having fun! https://t.co/eivKVUylHb +05/16/2018,Politicians,@SenJohnMcCain,RT @weeklystandard: Mattis: ‘Everything I Love About America is Resident’ in John McCain https://t.co/YyE4mpoQTg +05/16/2018,Politicians,@SenJohnMcCain,Grateful to our son Jimmy for speaking at @IRIglobal’s #FreedomDinner tonight as Sec Mattis & Amb @nikkihaley are h… https://t.co/G5IBEQm3SX +05/14/2018,Politicians,@SenJohnMcCain,"From one cantankerous senator to another, sending my prayers & best wishes to @SenatorReid as he recovers from a successful surgery" +05/14/2018,Politicians,@SenJohnMcCain,"Must-read @Militarydotcom: ""Training Kills More Troops Than War. Here's What's Being Done About It"" https://t.co/psaX3udizn" +05/13/2018,Politicians,@SenJohnMcCain,Happy #MothersDay to all the moms around the country & the world! I’m especially grateful for my remarkable mom Rob… https://t.co/YRPOnjOiD4 +05/10/2018,Politicians,@SenJohnMcCain,RT @WSJ: 'Putin’s goal isn’t to defeat a candidate or a party. He means to defeat the West.' An excerpt from the new memoir from @SenJohnMc… +05/10/2018,Politicians,@SenJohnMcCain,"Read a new excerpt from my upcoming book in @WSJ: ""John McCain: ‘Vladimir Putin Is an Evil Man’"" https://t.co/0Bu6kx8cHe" +05/10/2018,Politicians,@SenJohnMcCain,"RT @hillhulse: John McCain, his book, Lindsey Graham, the Senate and The Man Who Shot Liberty Valance. https://t.co/xWMtNLpXXT" +05/10/2018,Politicians,@SenJohnMcCain,RT @PowerPost: Why @SenJohnMcCain is voting against #Gina_Haspel to lead the CIA – and why it matters via @jameshohmann https://t.co/ufKojC… +05/10/2018,Politicians,@SenJohnMcCain,I believe Gina Haspel is a patriot who loves our country & has devoted her professional life to its service & defen… https://t.co/nSU8tuawsj +05/08/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Hear #China’s totalitarian cruelty in this widow’s sobs"" https://t.co/LYZa2LL9sw" +05/08/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""A Relative Wages Jack Johnson’s Biggest Fight: To Clear His Name"" https://t.co/wtYeLdyhFE" +05/03/2018,Politicians,@SenJohnMcCain,"RT @nytimesbooks: What John McCain learned from reading Hemingway: ""No just cause is futile, even if it’s lost, if it helps make the future…" +05/03/2018,Politicians,@SenJohnMcCain,RT @AmericanAcademy: We are pleased to announce that the @AmericanAcademy has awarded the 2018 Henry A. Kissinger Prize to United States Se… +05/02/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the families of the brave members of the National Guard whose lives were lost in the trag… https://t.co/l9ZV7hM53u +04/18/2018,Politicians,@SenJohnMcCain,"Former First Lady Barbara Bush remains an example to all of us of kindness and patriotism, and will fondly be remem… https://t.co/AiaAZ8VsqE" +04/16/2018,Politicians,@SenJohnMcCain,RT @HBOPR: Production begins on @HBO documentary about @SenJohnMcCain : https://t.co/becR1kHAQx @HBODocs https://t.co/dD3k6Na0py +04/14/2018,Politicians,@SenJohnMcCain,"I applaud the President for taking military action against the Assad regime, and I am grateful to our British and F… https://t.co/0hYUrfVklf" +04/13/2018,Politicians,@SenJohnMcCain,"Director Pompeo has the experience & understanding needed to reassert strong American leadership, confront complex… https://t.co/Z7hhXuYsCs" +04/11/2018,Politicians,@SenJohnMcCain,"Today, @POTUS signed into law our bipartisan #SESTA. This bill will enable Backpage and other websites to be held a… https://t.co/b4QIJlMjgy" +04/11/2018,Politicians,@SenJohnMcCain,"Must-read by @DCTwining @IRIglobal & @kwollack @NDI in @washingtonpost: ""#Russia’s nefarious meddling is nothing li… https://t.co/zRHVYb09Ue" +04/11/2018,Politicians,@SenJohnMcCain,.@SpeakerRyan is a good man who has served the country and the people of Wisconsin with honor and distinction. Whil… https://t.co/M6nV7d3H5v +04/09/2018,Politicians,@SenJohnMcCain,"Important @MilitaryTimes: ""The death toll for rising aviation accidents: 133 troops killed in five years"" https://t.co/JLkL6Upx3J" +04/08/2018,Politicians,@SenJohnMcCain,".@POTUS's pledge to withdraw from #Syria has only emboldened Assad, backed by Russia & Iran, to commit more war cri… https://t.co/qendPcTlrX" +04/06/2018,Politicians,@SenJohnMcCain,The seizure of the malicious sex marketplace https://t.co/KUfHCHvNpB marks an important step forward in the fight a… https://t.co/eQDgEZybbM +04/06/2018,Politicians,@SenJohnMcCain,It’s easy to punish #China. It’s a lot harder to hold it truly accountable and change its behavior. That requires a… https://t.co/baP92lz7H4 +04/06/2018,Politicians,@SenJohnMcCain,New sanctions send a message to #Putin & his cronies that there will be a high price to pay for Russian aggression.… https://t.co/AbebT23zC8 +04/05/2018,Politicians,@SenJohnMcCain,Good news from @DeptofDefense that they intend to shock test USS Gerald R Ford. Full ship shock trials before first… https://t.co/a3ERq5JVCP +04/05/2018,Politicians,@SenJohnMcCain,Praying for the family & friends of @AFThunderbirds pilot killed in F-16 crash in #Nevada. With more service member… https://t.co/P0dkBUXUES +04/05/2018,Politicians,@SenJohnMcCain,"Must-read @azcentral editorial: ""#RioReimagined challenges metro #Phoenix to think big. Are we ready?"" https://t.co/gWwiWJbfMB" +04/05/2018,Politicians,@SenJohnMcCain,"Thank you @GrandCanyonNPS @GrandCanyonAssn & @dougducey for this incredible honor, which I'm proud to share with my… https://t.co/SEM6PY1l2h" +04/04/2018,Politicians,@SenJohnMcCain,"RT @ASU: #RioReimagined, the visionary plan put in motion by @SenJohnMcCain and @ASU to transform the Salt River into an urban and environm…" +04/04/2018,Politicians,@SenJohnMcCain,Cindy & I send our prayers & condolences to the families of the four Marines whose lives were lost in the CH-53E cr… https://t.co/BzXKpk3ysF +04/02/2018,Politicians,@SenJohnMcCain,".@TIME: ""How Poetry Helped Sustain John McCain During His Years as a Prisoner of War"" #NationalPoetryMonth https://t.co/P1gwverYrQ" +03/30/2018,Politicians,@SenJohnMcCain,"RT @MayorStanton: Thank you @SenJohnMcCain for bringing together federal, state, regional & tribal leaders to launch the next chapter of th…" +03/30/2018,Politicians,@SenJohnMcCain,"#RioReimagined is a grand project that will transform the Valley, enhance our communities & connect all Arizonans.… https://t.co/7Dx8TW1P46" +03/30/2018,Politicians,@SenJohnMcCain,"RT @michaelcrow: #RioReimagined will be an ambitious, regional initiative that engages communities across the Valley and serves as a point…" +03/29/2018,Politicians,@SenJohnMcCain,Happy #DbacksOpeningDay! Here's hoping the @Dbacks have better luck fielding flies than @cindymccain & I did! https://t.co/rjcOD7DeUl +03/29/2018,Politicians,@SenJohnMcCain,Glad to see the concerns of #Phoenix residents addressed & this long-standing issue resolved. https://t.co/ksNp8qaRcf +03/28/2018,Politicians,@SenJohnMcCain,"Must-read from @insidedefense ""How GOP defense hawks delivered a massive military budget"" https://t.co/Kw2wmsF8Ir" +03/27/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""The #Russian expulsions are a good first step. But only a first step."" https://t.co/ksuglSKww4" +03/26/2018,Politicians,@SenJohnMcCain,RT @capgaznews: ICYMI: Former VP @JoeBiden accepted the @NavalAcademy Alumni Association’s Distinguished Graduate Award on behalf of @SenJo… +03/25/2018,Politicians,@SenJohnMcCain,"On the 100th anniversary of the Republic of Belarus declaring its independence, I stand with the Belarusian people… https://t.co/LLxF1hvk3a" +03/23/2018,Politicians,@SenJohnMcCain,Thank you @JoeBiden for always being a true friend. It’s a surreal honor after graduating 5th from the bottom of my… https://t.co/JrtRjI2dyk +03/23/2018,Politicians,@SenJohnMcCain,"Very proud the Senate passed my bill w/ @SenatorHeitkamp, named for Ashlynne Mike, to expand the AMBER Alert child… https://t.co/A2R6WSmEJ8" +03/23/2018,Politicians,@SenJohnMcCain,I sent a letter to CIA Director nominee Gina Haspel asking her to explain her role in the CIA’s so-called “enhanced… https://t.co/DD4Ch0X2wq +03/22/2018,Politicians,@SenJohnMcCain,Congrats to @MeghanMcCain & @TheView on being nominated for four #DaytimeEmmys - very proud! https://t.co/holA2QmTgG +03/22/2018,Politicians,@SenJohnMcCain,Congratulations #Kosovo! An important step forward for Kosovo’s European future. https://t.co/XahvAT52Xp +03/21/2018,Politicians,@SenJohnMcCain,RT @cindymccain: To all of our friends in the United States Senate thank you for the overwhelming passage of #SESTA today. By doing so you… +03/21/2018,Politicians,@SenJohnMcCain,"Thanks @senrobportman, @clairecmc, @SenBlumenthal, @JohnCornyn, @SenatorHeitkamp, our colleagues & especially my wi… https://t.co/JBNbhIk7nT" +03/21/2018,Politicians,@SenJohnMcCain,"The Senate's overwhelming, bipartisan passage of #SESTA is an imp't step forward in providing justice for victims o… https://t.co/OZMalq1jTr" +03/21/2018,Politicians,@SenJohnMcCain,"Saddened by the passing of Pete Peterson, a successful businessman, public servant & philanthropist dedicated to ra… https://t.co/SdRoR1iyBh" +03/21/2018,Politicians,@SenJohnMcCain,"#Nowruz greetings all those who celebrate in the US & around the world, including our friends in Afghanistan, Iraq,… https://t.co/8z20JqMlbQ" +03/21/2018,Politicians,@SenJohnMcCain,Today the Senate will vote on #SESTA to help #EndHumanTrafficking & provide justice to victims of this heinous crim… https://t.co/m80P1qFo4C +03/20/2018,Politicians,@SenJohnMcCain,#Nowruz Mobarak to the Iranian-American community and to all Iranians around the world yearning for peace and freed… https://t.co/VTGVN4jO6u +03/20/2018,Politicians,@SenJohnMcCain,An American president does not lead the Free World by congratulating dictators on winning sham elections. And by do… https://t.co/tdRTGcnH3h +03/19/2018,Politicians,@SenJohnMcCain,Sent letter w/ @SenatorShaheen urging USTR to support a full repeal of @USDA's wasteful & duplicative catfish inspe… https://t.co/CnSMVfwyr1 +03/18/2018,Politicians,@SenJohnMcCain,Special Counsel Mueller has served our country with honesty and integrity. It’s critical he be allowed to complete… https://t.co/ZDdah23bQh +03/18/2018,Politicians,@SenJohnMcCain,That #Putin had to work so hard to drive voter turnout shows the Russian people know his claim to power is a sham.… https://t.co/O46rTv9ANs +03/17/2018,Politicians,@SenJohnMcCain,Beautiful day on Oak Creek! #Arizona https://t.co/btWBvDkoOH +03/16/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the families of the service members killed in the helicopter crash in #Iraq. The Senate A… https://t.co/ArUu3cwK5X +03/16/2018,Politicians,@SenJohnMcCain,Deeply disturbed by @AP reports detailing child sexual assault on military bases. @SenJackReed & I sent a letter to… https://t.co/zyUR45bJXO +03/15/2018,Politicians,@SenJohnMcCain,The admin took an overdue step forward today in holding #Putin accountable for his brazen attack on our democracy.… https://t.co/OVO2sjbUEC +03/15/2018,Politicians,@SenJohnMcCain,Cindy & I are praying for the @USNavy aviators whose lives were lost in yesterday's F-18 crash. With our men & wome… https://t.co/sYaPvEo7oE +03/15/2018,Politicians,@SenJohnMcCain,"On the 7th anniversary of the war in #Syria, half a million people are dead, 11 million have been forced to flee th… https://t.co/FRUntZdEqf" +03/15/2018,Politicians,@SenJohnMcCain,Glad the Senate is taking up our bipartisan #SESTA thanks to the leadership of @senrobportman. It's long past time… https://t.co/WgqvoBpelJ +03/15/2018,Politicians,@SenJohnMcCain,"RT @SenateMajLdr: We're not only grateful that @SenJohnMcCain was welcomed home, we are especially grateful for his more than 30 years of s…" +03/15/2018,Politicians,@SenJohnMcCain,#Arizona will miss you Honey Badger - thanks for the memories! #AZCardinals https://t.co/fk4gltUg6V +03/14/2018,Politicians,@SenJohnMcCain,Finished my #MarchMadness bracket - very proud #Arizona has two teams competing this year! #BearDown #ForksUp https://t.co/TDPyT652s8 +03/14/2018,Politicians,@SenJohnMcCain,"RT @USNatArchives: Forty-five years ago today, @SenJohnMcCain was released by the North Vietnamese. He was held as a POW for over five year…" +03/14/2018,Politicians,@SenJohnMcCain,RT @NYTArchives: Today in 1973: Senator John McCain was one of the 108 prisoners of war released by North Vietnam. He had spent more than f… +03/14/2018,Politicians,@SenJohnMcCain,45 years ago today... https://t.co/jXhCFY9pK2 +03/14/2018,Politicians,@SenJohnMcCain,Important action by PM @theresa_may to hold #Putin accountable for the chemical attack in Salisbury. The United Sta… https://t.co/fsnVnAKSvn +03/14/2018,Politicians,@SenJohnMcCain,"RT @PacificForum: .@SenJohnMcCain: “Joe was a good man, an officer and a gentleman, and a brave defender of this nation. We will miss him.…" +03/13/2018,Politicians,@SenJohnMcCain,"Cindy & I are saddened by the passing of Admiral Joe Vasey, a WWII veteran, distinguished naval leader & my father'… https://t.co/QBnXnRbwfu" +03/13/2018,Politicians,@SenJohnMcCain,"As we hope for the recovery of Sergei & Yulia Skripal, we must recognize #Putin will not hesitate to engage in stat… https://t.co/PzPu6Tbk2b" +03/13/2018,Politicians,@SenJohnMcCain,The torture of detainees in U.S. custody during the last decade was one of the darkest chapters in American history… https://t.co/muvI5an1YX +03/09/2018,Politicians,@SenJohnMcCain,"Glad to see @USArmy decide to replace DCGS program w/ commercially available capability. After $3B spent, it was ti… https://t.co/Qnvp4bgCT0" +03/09/2018,Politicians,@SenJohnMcCain,"Must-read @WSJ: ""Trade Agreements Are the Answer to Trade Deficits"" https://t.co/kUqviTwdXA" +03/09/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""Is #Putin’s poison squad back in Britain?"" https://t.co/NNM1cB2qxa" +03/09/2018,Politicians,@SenJohnMcCain,"Cindy & I are saddened by the passing of Joe Woods, one of Mesa’s most prominent businessmen & influential civic le… https://t.co/NxrDPeBYwA" +03/09/2018,Politicians,@SenJohnMcCain,"RT @nytopinion: We need to show equal resolve now to stop the violence and safeguard the rights and freedoms of all Burmese peoples, write…" +03/09/2018,Politicians,@SenJohnMcCain,I write in @nytimes today with filmmaker & humanitarian Angelina Jolie that America must take the lead in defending… https://t.co/vyzqF2ds8D +03/08/2018,Politicians,@SenJohnMcCain,"Congratulations to Jonathan Karp, @simonschuster's new president and publisher. We’ve done 7 books together and not… https://t.co/tPPLFB1kEu" +03/08/2018,Politicians,@SenJohnMcCain,President Trump’s decision to impose steep tariffs on steel & aluminum imports will not protect America. They will… https://t.co/daRpsebRA0 +03/08/2018,Politicians,@SenJohnMcCain,Must-read @WSJ: “How a Trade War Escalates” https://t.co/iuO4obDbQD +03/08/2018,Politicians,@SenJohnMcCain,Must-read @WSJ: “#Russia’s Trail of Poison” https://t.co/8yK7EWepJZ +03/08/2018,Politicians,@SenJohnMcCain,RT @SCClemons: My discussion at #BrusselsForum last year with @SenJohnMcCain & @dreynders. McCain's comments on Trump administration's back… +03/08/2018,Politicians,@SenJohnMcCain,RT @TheStudyofWar: Right now @SASCMajority @SASCDems are hearing from @US_EUCOM on #US defense strategy in #Europe. Read up on #Russia's gr… +03/08/2018,Politicians,@SenJohnMcCain,No US policy or strategy in #Europe can succeed without a strong #NATO alliance. We must not forget that America is… https://t.co/4x2YJ9NaxD +03/06/2018,Politicians,@SenJohnMcCain,Thank you @MayorStanton for your support of the Rio Salado project! https://t.co/5dLDIg0Zch +03/06/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""Former Russian Spy Mysteriously Falls Ill in Britain. Again."" https://t.co/yGinSfBI03" +03/05/2018,Politicians,@SenJohnMcCain,Thank you @MayorStanton & @CityofPhoenixAZ for leading an interagency initiative to combat military & veteran suici… https://t.co/oADcNjbKF1 +03/05/2018,Politicians,@SenJohnMcCain,Today’s historic port call by the USS Carl Vinson in #Vietnam underscores the enormous progress the United States &… https://t.co/CnHMTn286o +03/05/2018,Politicians,@SenJohnMcCain,"Important @NickKristof @nytimes read: ""I Saw a Genocide in Slow Motion: Myanmar continues to kill its #Rohingya, no… https://t.co/m2vEVoQtJk" +03/05/2018,Politicians,@SenJohnMcCain,"Must-read @hiattf @washingtonpost: ""Putin and Sissi are putting on elections. Why bother?"" https://t.co/EyJWECPTjG" +03/05/2018,Politicians,@SenJohnMcCain,"Must-read @washingtonpost: ""The U.N. human rights commissioner says ‘shame is in retreat.’ He’s right."" https://t.co/7BdI85oH01" +03/05/2018,Politicians,@SenJohnMcCain,"The work of @NEDemocracy @IRIglobal & @NDI to foster the infrastructure of democracy—freedom of the press, politica… https://t.co/kSsKRa62nN" +03/03/2018,Politicians,@SenJohnMcCain,Must-read @BretStephensNYT @nytopinion: “The Rise of Dictatorship Incorporated” https://t.co/LNeafqDUsF +03/03/2018,Politicians,@SenJohnMcCain,Beautiful warm day in #Sedona with @cindymccain! https://t.co/J2xBGcSuvf +03/02/2018,Politicians,@SenJohnMcCain,"The President’s sweeping tariffs will only serve to hurt American workers and consumers, and alienate us from our m… https://t.co/2uRWV2V04y" +02/28/2018,Politicians,@SenJohnMcCain,"Great watching @cindymccain & @MeghanMcCain on @TheView @ABC today! ""We need more compassion, we need more empathy,… https://t.co/of9ZjOy78o" +02/28/2018,Politicians,@SenJohnMcCain,Looking forward to watching @cindymccain & @MeghanMcCain on @TheView @ABC today - be sure to tune-in! +02/28/2018,Politicians,@SenJohnMcCain,Tonight the House passed our bill to provide justice to victims of online sex trafficking & hold all enablers of th… https://t.co/KcnL8ccNIc +02/27/2018,Politicians,@SenJohnMcCain,RT @SenatorHeitkamp: My bipartisan bill w/ @SenJohnMcCain to make AMBER Alerts more accessible to Indian Country passed the U.S. House yest… +02/27/2018,Politicians,@SenJohnMcCain,"3 yrs after Boris Nemtsov’s murder, the street outside the Russian Embassy was named in his honor. The greatest mem… https://t.co/Dzw8RM67Ht" +02/27/2018,Politicians,@SenJohnMcCain,"Last night, the House passed my bill w/ @SenatorHeitkamp named for Ashlynne Mike, an 11 yr old Navajo girl who was… https://t.co/VUCFxjQAGC" +02/27/2018,Politicians,@SenJohnMcCain,#Kremlin trolls are at it again! https://t.co/KaZx3mQMu6 +02/27/2018,Politicians,@SenJohnMcCain,"Must-read @nytimes: ""U.N. Links #NorthKorea to #Syria’s Chemical Weapon Program"" https://t.co/9t15twpui3" +02/27/2018,Politicians,@SenJohnMcCain,I joined @SenatorWicker yesterday in cosponsoring a bill to help @USNavy restore its surface force readiness so we… https://t.co/t8QdjMrfuQ +02/26/2018,Politicians,@SenJohnMcCain,"America must fight for universal values, rule of law, open commerce & respect for sovereignty. If we don’t, who wil… https://t.co/ZvHzXiroBa" +02/25/2018,Politicians,@SenJohnMcCain,RT @cindymccain: I strongly recommend the book Pear Shaped by @AdamBBlain . It is a funny and real book about brain cancer. @SenJohnMcCain… +02/25/2018,Politicians,@SenJohnMcCain,"Important @washingtonpost read: ""#Burma is bulldozing history and memory"" https://t.co/0zaFzavbRV" +02/24/2018,Politicians,@SenJohnMcCain,Must-read @washingtonpost: “A death in an Iranian prison is one more shocking sign of repression” https://t.co/cIV4dRxvTS +02/24/2018,Politicians,@SenJohnMcCain,"Cindy & I enjoyed a wonderful visit yesterday with our friend, @AZCardinals legend @LarryFitzgerald. We're grateful… https://t.co/CNz2g7R8Ss" +06/27/2018,Politicians,@GeorgeHWBush,"Happy to congratulate @WalkerStapleton on a terrific primary victory last night, and to join him in thanking those… https://t.co/y0fWf5lHep" +06/25/2018,Politicians,@GeorgeHWBush,"A great joy to welcome home the newest member of our family, ""Sully,"" a beautiful -- and beautifully trained -- lab… https://t.co/uEXR16b7gs" +06/25/2018,Politicians,@GeorgeHWBush,"Special visit today with a great friend -- and now, a best-selling author. Luckily I had a freshly laundered pair o… https://t.co/rch4gT1low" +06/18/2018,Politicians,@GeorgeHWBush,"Proud of Natalye Paquin and @nmbush opening the @PointsofLight conference with a wonderful message: ""We are united… https://t.co/pZIBHsMtrE" +06/08/2018,Politicians,@GeorgeHWBush,Sending our gratitude and family love on this special day to all who are helping carry forward the selfless work of… https://t.co/PN3B8cdBvg +06/01/2018,Politicians,@GeorgeHWBush,Enjoying a great book and a wonderful walk down memory lane this morning. Yet another reminder of just how lucky I… https://t.co/4Cb7z5wY7A +05/28/2018,Politicians,@GeorgeHWBush,"Very much regret missing the Memorial Day parade today in Kennebunkport, and am forever grateful not only to those… https://t.co/5UgoXNUk5w" +05/26/2018,Politicians,@GeorgeHWBush,"Delighted to join the veterans, including my dear friend Gen. Brent Scowcroft, at the @AmericanLegion Post 159 mont… https://t.co/8i8nv2i8Wo" +05/20/2018,Politicians,@GeorgeHWBush,Finally had the chance yesterday to catch some new friends in action @HamiltonMusical -- properly attired in Hamilt… https://t.co/BnkkPCA1ea +05/17/2018,Politicians,@GeorgeHWBush,Gina Haspel has selflessly and courageously devoted herself to the service of her country. I have great confidence… https://t.co/3jZH6rlc2M +05/15/2018,Politicians,@GeorgeHWBush,A complete joy to welcome the “HamFam” — the cast and crew of @HamiltonMusical — to our Houston office for a specia… https://t.co/bI9CIgaT7G +05/03/2018,Politicians,@GeorgeHWBush,"Quite moved by this announcement by @MethodistHosp. The atrium is beautiful, but recent developments notwithstandin… https://t.co/GmRIS1qjCy" +04/25/2018,Politicians,@GeorgeHWBush,"My family and I thank Mayor @SylvesterTurner, his terrific staff, @houstonpolice, @METROHouston, @SBCHouston,… https://t.co/xLtIyehZDd" +04/07/2018,Politicians,@GeorgeHWBush,Delighted to join the 43rd President and Jim Baker in welcoming the Saudi Crown Prince His Royal Highness Prince Mo… https://t.co/c6XV0L8sv4 +03/22/2018,Politicians,@GeorgeHWBush,Yesterday I was inspired by my friend John Cronin to wear these beauties from @JohnsCrazySocks marking World Down S… https://t.co/p5L7JJzYLd +03/19/2018,Politicians,@GeorgeHWBush,"Wishing a very happy 93rd birthday today to one of the noblest, most selfless public servants in the history of the… https://t.co/dqwEBpV82h" +03/15/2018,Politicians,@GeorgeHWBush,"Respectfully differing with @BarackObama so out on a limb here, but I have a gut feeling my @TAMU @aggiembk #Aggies… https://t.co/x0EB6u1P1R" +03/13/2018,Politicians,@GeorgeHWBush,The First Lady of Family Literacy and I are proud to support this wonderful initiative by @Disney and @FirstBook to… https://t.co/hUodj6YwHh +03/09/2018,Politicians,@GeorgeHWBush,Barbara and I are even more optimistic about our country's future after meeting the remarkable men and women in thi… https://t.co/NSCWsCHz5Q +03/02/2018,Politicians,@GeorgeHWBush,Encouraging my fellow Texans to do your civic duty by early voting today. Election Day is next Tuesday the 6th. Whi… https://t.co/ey7fswN99a +02/26/2018,Politicians,@GeorgeHWBush,"Wonderful visit today with Jimmy Baker and our respected former colleague, Carlos Salinas of Mexico -- a good frien… https://t.co/MbtULWkfWD" +02/21/2018,Politicians,@GeorgeHWBush,"Barbara and I couldn’t be happier seeing each of our grandkids finding ways to help others. Today, I had the specia… https://t.co/ndyPn4xHMS" +02/06/2018,Politicians,@GeorgeHWBush,The @NFL chose well in naming our inspiring friend @JJWatt as Man of the Year. Barbara and I also salute… https://t.co/48U8RorZm4 +01/24/2018,Politicians,@GeorgeHWBush,"Delighted to join my distinguished colleagues in thanking each donor who, out of the goodness in their hearts, help… https://t.co/MbDyOcmxMK" +11/28/2017,Politicians,@GeorgeHWBush,"In my case, one of the few good things about becoming the oldest president -- or anything -- is seeing my friend Pr… https://t.co/CorFn3W362" +11/20/2017,Politicians,@GeorgeHWBush,"Wonderful visit today with 104 year-old Lt. Jim Downing, USN, Ret., the oldest living survivor of Pearl Harbor. Giv… https://t.co/lebv9VeUrt" +11/02/2017,Politicians,@GeorgeHWBush,"Barbara and I join in congratulating the @Astros organization for their incredible season. They inspired, united and lifted our entire city." +10/23/2017,Politicians,@GeorgeHWBush,"Not sure abt 39, @BillClinton, 43 and @BarackObama, but I would have sung w @ladygaga if asked. Thanks to all for supporting @AmericaAppeal." +10/17/2017,Politicians,@GeorgeHWBush,Saluting a genuine American hero @SenJohnMcCain on receiving the #LibertyMedal from @ConstitutionCtr for his singular life of service. +10/06/2017,Politicians,@GeorgeHWBush,Our sincere thanks to @StephenAtHome for his kind donation to #OneAmericaAppeal. Here are two more for the file. No… https://t.co/OhEZmZbWq4 +09/27/2017,Politicians,@GeorgeHWBush,"Barbara and I loved meeting a few of the patriots and service animals featured in a wonderful new book, ""Vets and P… https://t.co/MAbFP36Z1q" +09/26/2017,Politicians,@GeorgeHWBush,Gov. @RicardoRossello reports Puerto Rico is facing an urgent situation. We must help. Private citizens can through… https://t.co/hb3SQF64zt +09/14/2017,Politicians,@GeorgeHWBush,Artist John Palmer captured the spirit of #Harvey response in Houston. Proceeds to @PointsofLight long-term efforts. https://t.co/kTXxJ0fgwR +09/10/2017,Politicians,@GeorgeHWBush,"Across the U.S., Americans have answered the call to help with hurricane recovery. Praying for all Floridians. #Irma https://t.co/dJPYU495RE" +09/08/2017,Politicians,@GeorgeHWBush,"Pleased to join these friends, distinguished leaders helping our fellow Americans recovering from #Harvey. Join us: https://t.co/JHlRaByt2M" +09/07/2017,Politicians,@GeorgeHWBush,"As former presidents, as citizens, we wanted to help our fellow Americans begin to recover. https://t.co/qxz68TK8Sk" +08/29/2017,Politicians,@GeorgeHWBush,Very proud of our friend @JJWatt and the caring citizens joining to keep #HoustonStrong. Let's keep it going at: https://t.co/J4S0dlsTjn +08/21/2017,Politicians,@GeorgeHWBush,Four generations of family taking in the partial eclipse today. Already looking forward to the next one in Texas in… https://t.co/bEtYcOyzU3 +07/26/2017,Politicians,@GeorgeHWBush,Joyful reunion with a great friend and a wonderful public servant. Lucky to have had Dan by my side during 4 years… https://t.co/7cx6kjteDf +07/17/2017,Politicians,@GeorgeHWBush,Very pleased @PointsofLight has named a dynamic leader of Natalye Paquin's broad experience and skills as CEO: https://t.co/U0fSOvqaJa +06/13/2017,Politicians,@GeorgeHWBush,What better place for the Gampster to have birthday emails read by a truly wonderful granddaughter in law? Thanks t… https://t.co/VJl4s3rHK8 +06/09/2017,Politicians,@GeorgeHWBush,"Congratulating @YaleBaseball for terrific season: Ivy League champs, school record for wins, 1st multi-win trip to… https://t.co/Tci4WYLg6A" +06/08/2017,Politicians,@GeorgeHWBush,"Happiest of birthdays to Barbara Pierce of Rye, NY. I'm still the luckiest guy in the world. https://t.co/qsUHtyBIez" +05/23/2017,Politicians,@GeorgeHWBush,Counting our blessings after a weekend with dear friends like John Major and the amazing @SingingCadets. So gratefu… https://t.co/pves6zgMtc +05/18/2017,Politicians,@GeorgeHWBush,"He wasn't perfect, but Roger Ailes was my friend & I loved him. Not sure I would have been President w/o his great talent, loyal help. RIP." +05/15/2017,Politicians,@GeorgeHWBush,"Congrats to Kylee McGrane, the 6000th #DailyPointofLight, who helps hospitalized kids experience a Moment of Magic: https://t.co/TTCsCBhYTp" +05/04/2017,Politicians,@GeorgeHWBush,Barbara and I join in saluting @DaveWardABC13. Could not be prouder of him and his singular career @abc13houston. H… https://t.co/NFja9mG1Qf +04/20/2017,Politicians,@GeorgeHWBush,"Big morale boost from a high level delegation. No father has ever been more blessed, or prouder. https://t.co/ekX4VyG2aO" +03/06/2017,Politicians,@GeorgeHWBush,28 yrs ago today I proudly watched Barbara create @BarbaraBushFdn. So many lives changed through #literacy since th… https://t.co/OBspTczcal +02/01/2017,Politicians,@GeorgeHWBush,Getting fired up for Sunday and #SuperBowl. https://t.co/zlXmsZJrTM +01/19/2017,Politicians,@GeorgeHWBush,"Hearty congrats to a good friend and great player, Jeff Bagwell, on his well-deserved induction into @baseballhall. https://t.co/PvRb7UOX89" +12/09/2016,Politicians,@GeorgeHWBush,Sino-US bilateral relationship is critical to peace in 21st Century. President-elect Trump is wise to name @TerryBrandstad as Ambassador. +11/28/2016,Politicians,@GeorgeHWBush,"The ageless @BarbraStreisand & James Brolin before her fantastic Houston show. ""Babs"" was more gracious about my si… https://t.co/VqBl4MjxGu" +11/24/2016,Politicians,@GeorgeHWBush,"#Thankful most of all for the blessings of family. From ours to yours, have a safe and very Happy Thanksgiving. https://t.co/xQz97niRkZ" +11/23/2016,Politicians,@GeorgeHWBush,"Of course, Barbara and I feel blessed and #thankful to live in the greatest nation on earth and for the selfless pa… https://t.co/ler3396hdd" +11/22/2016,Politicians,@GeorgeHWBush,Also #thankful for mentors like Coach Dave Colschen who teach respect and character are more important than winning… https://t.co/q1fLgylLPL +11/21/2016,Politicians,@GeorgeHWBush,"Incredibly #thankful that my friend Patrick, the courageous young man (with hair!) to my left, is feeling and doing… https://t.co/kxFgz6EuQt" +11/09/2016,Politicians,@GeorgeHWBush,"Barbara and I congratulate @realDonaldTrump, wish him well as he guides America forward as our next President. His family is in our prayers." +10/07/2016,Politicians,@GeorgeHWBush,"Barbara and I salute @AmeriCorps for enlisting their 1,000,000th volunteer to the service movement that is so essential to America’s future." +10/03/2016,Politicians,@GeorgeHWBush,Hearty congrats to our friend Capt @Love3d and all @RyderCupUSA for a gritty win in the 41st @rydercup. Classy competitors on both sides. +09/26/2016,Politicians,@GeorgeHWBush,"Barbara and I mourn The King, Arnie, the people’s champion. He brought golf to millions by his daring and caring. We miss him already." +09/24/2016,Politicians,@GeorgeHWBush,"Barbara and I regret missing the dedication of @NMAAHC, but we join our fellow Americans in celebrating this important day for our nation." +08/09/2016,Politicians,@GeorgeHWBush,"The superb effort, class shown by @TeamUSA in Rio @Olympics truly inspiring. We're watching, proud of them all. #USA https://t.co/B9QYNjiIXd" +06/25/2016,Politicians,@GeorgeHWBush,"Proud of young Cooper's interest in healthy eating. His declared love of broccoli is genuine, if also unpersuasive. https://t.co/r5wHKvigDb" +01/30/2016,Politicians,@GeorgeHWBush,Moving return to Langley and Memorial Wall today. The stars represent @CIA agents whose heroism is unknown to most. https://t.co/ZPduGNdsXj +01/28/2016,Politicians,@GeorgeHWBush,Proud to join those remembering the courageous crew of Challenger shuttle in this special @PopMech oral history: https://t.co/I9r75s4xQd +10/21/2015,Politicians,@GeorgeHWBush,Grateful to each @PointsofLight attendee in Houston for your commitment to service. The world is a brighter place b/c of you. #ServiceUnites +08/20/2015,Politicians,@GeorgeHWBush,"I spoke with President Carter to wish him well, and he sounded strong. Bar and I are wishing him the very best as he fights the good fight." +08/10/2015,Politicians,@GeorgeHWBush,"Congratulating Tyler Jeffries and Lauren Lilly on their engagement, and wishing them a lifetime of joy together. http://t.co/W7hjX3dgWL" +08/10/2015,Politicians,@GeorgeHWBush,"Inspiring day hosting wounded veterans and their mothers. Forever grateful for their sacrifice, service to country. http://t.co/zNh9eZGRiF" +07/30/2015,Politicians,@GeorgeHWBush,Who knew jumping out of planes was safer than getting out of bed? Thanks to all for your kind get-well messages. http://t.co/T9FmhCqyme +06/16/2015,Politicians,@GeorgeHWBush,Yesterday the country saw a great leader and good man point the way to a better future. I am 1 of the 2 proudest parents in America today. +06/11/2015,Politicians,@GeorgeHWBush,"Very grateful to our selfless, dear friends @reba @michaelwsmith and @amygrant for making Barbara's 90th so special. http://t.co/OLHV603kBh" +04/29/2015,Politicians,@GeorgeHWBush,Proud to endorse Thumbs Up program strengthening Houston's police-community ties. Need more great efforts like this. http://t.co/rN7JdRmW52 +04/23/2015,Politicians,@GeorgeHWBush,"Barbara and I have great respect for, and confidence in, the men and women of @SecretService. That respect and confidence has never waned." +04/21/2015,Politicians,@GeorgeHWBush,"Enjoyed my visit with Tom Ridge, whose ongoing leadership on issues affecting the disabled makes him a hero of mine. http://t.co/C7heAmTxw9" +04/07/2015,Politicians,@GeorgeHWBush,Very proud of our friend Coach K and the entire @Duke_MBB team on winning the national championship. Great win against a tough Badger team. +03/25/2015,Politicians,@GeorgeHWBush,Happy @OakRidgeBoys just selected for Country Music Hall of Fame. Great friends who have always made great music! http://t.co/sLHvxPFTIl +02/11/2015,Politicians,@GeorgeHWBush,Happy bday @JebBush! (His table manners have improved dramatically since this early outing.) https://t.co/7WNfy5SiXf http://t.co/EROuf1Pd1M +01/30/2015,Politicians,@GeorgeHWBush,"Sending best wishes and respect to a true friend @MittRomney. We need more decent, selfless, capable people like him in public service." +01/06/2015,Politicians,@GeorgeHWBush,"Seventy years ago this very day, Barbara Pierce of Rye, NY made me the happiest, and luckiest, man on earth. http://t.co/rgZqpL9XfE" +11/24/2014,Politicians,@GeorgeHWBush,"Celebrating 25th anniv of Daily Points of Light Award today, and saluting Dr Patricia Wolff for her selfless work in Haiti. @pointsoflight" +10/30/2014,Politicians,@GeorgeHWBush,"Saluting the home-bound crew of the @USN_BushCVN77 for their able, brave service during their second deployment. God bless all who serve." +10/28/2014,Politicians,@GeorgeHWBush,"With one week until Election Day, ditching the socks and pulling hard for a good man -- @georgepbush. #EarlyVoting http://t.co/eAoaVswgtB" +09/15/2014,Politicians,@GeorgeHWBush,"Barbara and I enjoyed meeting David Perdue, a good man with an impressive background. I am proud to endorse him in the US Senate race in GA." +08/30/2014,Politicians,@GeorgeHWBush,"RT @WWIIMemorial: #TBT @georgepbush visiting grandfather @GeorgeHWBush at White House. George P. to speak at #WWII Memorial, 9/2 @ 9am. htt…" +08/09/2014,Politicians,@GeorgeHWBush,"Proud of and praying for the able, brave men and women on board the @USN_BushCVN77 as they carry out their mission." +06/12/2014,Politicians,@GeorgeHWBush,"It's a wonderful day in Maine -- in fact, nice enough for a parachute jump." +05/09/2014,Politicians,@GeorgeHWBush,Congratulations to the @BushSchool Class of 2014. Very proud of these public servants and all who taught them. http://t.co/R6je5LtHf7 +04/07/2014,Politicians,@GeorgeHWBush,Excited PM @David_Cameron has launched UK #pointsoflight. I join him in saluting Britain's volunteers who lift lives. http://t.co/sY1IBI5fHP +03/27/2014,Politicians,@GeorgeHWBush,With @JManziel2 before his pro day @TAMU. I could have used this helmet in my previous day job. http://t.co/m0QvMR1GHe +03/21/2014,Politicians,@GeorgeHWBush,Pulling hard for my good friend Coach K and the @DukeBasketball Blue Devils today. Bracket otherwise in shambles. #MarchMadness +03/06/2014,Politicians,@GeorgeHWBush,"@BradPaisley Thank you, Brad, for teaching me what a ""Selfie"" is. You and @TheEllenShow made it look so easy. #Selfie’ing" +03/05/2014,Politicians,@GeorgeHWBush,"We couldn't be prouder of @georgepbush tonight. A good man and hard worker, he'll do a great job if elected the next TX Land Commissioner." +02/12/2014,Politicians,@GeorgeHWBush,It doesn’t matter if he won a medal; @Shaun_White exemplified the Olympic spirit. I’m proud of him and all our Olympians. #TeamUSA +01/24/2014,Politicians,@GeorgeHWBush,Barbara and I are grateful to all at #BushReunion. We had a good team that served with honor. So have fun and don't steal the silverware! +01/21/2014,Politicians,@GeorgeHWBush,Went to Duke to honor Coach K for his leadership of @cchangetogether. He is the right leader to help us beat cancer. http://t.co/FovMLrvk0d +01/20/2014,Politicians,@GeorgeHWBush,"25 years ago this hour, the people placed their hopes and trust in our team. Still hard to believe I had the honor to serve as President." +01/16/2014,Politicians,@GeorgeHWBush,Becoming an honorary member of the @BlueAngels in Houston last week. God bless all who serve. http://t.co/oo4GLJNuQQ +01/15/2014,Politicians,@GeorgeHWBush,Properly attired for my meeting with new @HoustonTexans head coach Bill O'Brien. #socksupdate http://t.co/jHMO4vcm9i +01/13/2014,Politicians,@GeorgeHWBush,Delighted to see my friend Bob McNair and meet new @HoustonTexans head coach Bill O'Brien & his lovely wife Colleen. http://t.co/iGEJDVvuRK +01/02/2014,Politicians,@GeorgeHWBush,Barbara thanks @BarackObama & @billclinton for their get-well wishes and is heeding their advice. Doesnt happen w every President she knows! +12/12/2013,Politicians,@GeorgeHWBush,"Incredible photo of the Blue Angels and CVN-77. God bless all who serve our country in uniform, and their families. http://t.co/n03nZSE7jW" +12/10/2013,Politicians,@GeorgeHWBush,"Barbara and I wish we could have joined the U.S. delegation honoring President Mandela today. He, and his countrymen, are in our prayers." +06/29/2018,Politicians,@TheBushCenter,"RT @knightfdn: Americans overwhelmingly support the ideals of democracy, but a majority view democracy in the U.S. as weak and getting weak…" +06/29/2018,Politicians,@TheBushCenter,"""Approximately 50 percent of veterans respond well to the best available [PTS] treatments - cognitive processing th… https://t.co/mohEjzB4f1" +06/29/2018,Politicians,@TheBushCenter,"""The American public has not soured on promoting democracy or forgotten that the United States benefits when there… https://t.co/mNyJ4gTJoD" +06/28/2018,Politicians,@TheBushCenter,“The experience of a lifetime.” - Sergeant Trevor Allenby on his experience in the Warrior Open. Check out a full r… https://t.co/nUyOxFL3uz +06/28/2018,Politicians,@TheBushCenter,RT @fpoplady: Democracy Project poll commissioned by @pennbiden @freedomhouse & @thebushcenter suggests groups historically underserved by… +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Read @hollykuzmich @ablinken @abramowitz on the Democrcy Project - Restoring American democracy a challenge that is with… +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Talking with @kenrudin about the Democracy Project poll results - available here https://t.co/bwr1JTsrW4. Important ini… +06/28/2018,Politicians,@TheBushCenter,"Did you catch the @rangers dot race last night? Surprise! Disguised as mascots were Bush Center CEO Ken Hersh, Wyat… https://t.co/gV0mNcW55f" +06/28/2018,Politicians,@TheBushCenter,"RT @PennBiden: ""Although the frustrations Americans share are not new, our collective failure to address them more effectively increasingly…" +06/28/2018,Politicians,@TheBushCenter,"RT @WLindsayLloyd: Fascinating look on @CityLab at how North Korean escapees acclimate to freedom. @TheBushCenter, we're helping them get…" +06/28/2018,Politicians,@TheBushCenter,"""A pessimist might use these findings to talk up despair, but the optimist within us has a different takeaway."" Che… https://t.co/GZID3V0o2o" +06/28/2018,Politicians,@TheBushCenter,RT @kenrudin: Podcast! @WLindsayLloyd of the George W. Bush Institute on growing fears for the future of democracy in the U.S. https://t.… +06/28/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? Did family separation end? @lvtcollins ans… https://t.co/9Cc2MxmRkj +06/28/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Today's @DallasNews on the Supreme Court's decision on the travel ban cites The Democracy Project's findings. https://t.… +06/28/2018,Politicians,@TheBushCenter,#Team43 member @RandyNantz on throwing out the first pitch at @rangers US Special Operations Command Night https://t.co/OXjcilonrB +06/28/2018,Politicians,@TheBushCenter,#Team43 member @randynantz stands with @Bannyrooster28 during the National Anthem at the @rangers game after throwi… https://t.co/WBoBjVDgjW +06/27/2018,Politicians,@TheBushCenter,"""People are enthusiastic about change. Large majorities support improving civic education and creating incentives f… https://t.co/QZT44ImIKl" +06/27/2018,Politicians,@TheBushCenter,"""Americans agree living in a democracy is important, but there is broad agreement that our system isn’t working as… https://t.co/FNDtk1u8pU" +06/27/2018,Politicians,@TheBushCenter,What is your top concern about US #democracytoday? See if you agree with the majority of Americans: https://t.co/hMbxRcYYBR +06/27/2018,Politicians,@TheBushCenter,"RT @PennBiden: Have you checked out https://t.co/q5XGE4a7po yet? +Learn more about Americans top concerns about their #DemocracyToday in a…" +06/27/2018,Politicians,@TheBushCenter,"#ICYMI, check out a full photo recap of last night's Engage, presented by @HighlandCapMgmt, ""The Art & Leadership o… https://t.co/7HgI08l6st" +06/27/2018,Politicians,@TheBushCenter,The majority of Americans are encouraged by observations of increased civic engagement. Check out the rest of the r… https://t.co/WaqYs6UzYP +06/27/2018,Politicians,@TheBushCenter,"Continue last night’s conversation about ""The British Bulldog"" and listen to Episode 10 of ""Ladies,First"" to learn… https://t.co/bsoZlNv0fj" +06/27/2018,Politicians,@TheBushCenter,"“It’s an amazing period — to think about England battling Adolf Hitler, and the United States being tepid to engage… https://t.co/SAOwuiXIhW" +06/27/2018,Politicians,@TheBushCenter,“I’m in history because I believe it is essential to where we are now. What interests me is looking at the roots of… https://t.co/BXaCk0Fxxu +06/27/2018,Politicians,@TheBushCenter,"“I think what Clementine did, was what very few could do, and that was to manage Winston Churchill… She could also… https://t.co/ESDhyUhgL9" +06/27/2018,Politicians,@TheBushCenter,"“We now think of Churchill as a great orator, but he was not first and foremost a speaker, he was first and foremos… https://t.co/y1s2oesPwy" +06/27/2018,Politicians,@TheBushCenter,"“Churchill put a huge amount of effort into writing letters, but he also believed, like Roosevelt, to get up close… https://t.co/JHxEgFo9SW" +06/27/2018,Politicians,@TheBushCenter,“I think this painting captures an aspect of Churchill that is not in any other paintings I have mentioned… His sen… https://t.co/iSceXByo4q +06/27/2018,Politicians,@TheBushCenter,"“What you bring to the job, what you learn on the job, and what you have to live in with your conscious on the job.… https://t.co/OFxXFF7Te0" +06/27/2018,Politicians,@TheBushCenter,“I would argue that the two are inseparable (art and leadership). They are two complimentary parts of his great and… https://t.co/YdlSyFDqjz +06/27/2018,Politicians,@TheBushCenter,“I really enjoyed painting Churchill - I painted him with a lot of affection. I thought about the character of the… https://t.co/Dixwidvtnz +06/26/2018,Politicians,@TheBushCenter,"#LIVE: Tune in now to https://t.co/FDxzxAlw0R for ""Engage: The Art & Leadership of Winston Churchill,"" presented by… https://t.co/TUrdYTnumT" +06/26/2018,Politicians,@TheBushCenter,"Tune in to https://t.co/FDxzxAlw0R in one hour to watch Engage at the Bush Center, presented by @HighlandCapMgmt, ""… https://t.co/4pzyDkh2OZ" +06/26/2018,Politicians,@TheBushCenter,ICYMI: @AriFleischer and @DanaPerino discuss The Democracy Project on @dailybriefing: https://t.co/kkjnMXHzaO #democracytoday +06/26/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? What is the Flores Settlement? Did family… https://t.co/W5SlN9F2dc +06/26/2018,Politicians,@TheBushCenter,"For Americans to become more responsible and engaged citizens, we must start by helping our children develop civic… https://t.co/DjqnYO89p7" +06/26/2018,Politicians,@TheBushCenter,"RT @PennBiden: Take the time today to dig into the findings of The Democracy Project--a #bipartisan report from @PennBiden, @freedomhouse a…" +06/26/2018,Politicians,@TheBushCenter,"When it comes to our #democracytoday, Americans are motivated by calls to service and civic engagement. https://t.co/ogJ76OXL5e" +06/26/2018,Politicians,@TheBushCenter,“There is a good reason to be proud of biliteracy.” - @Bill_McKenzie in this week’s @dallasnews on the importance o… https://t.co/2U04Qf53ec +06/26/2018,Politicians,@TheBushCenter,Your #immigration questions answered: Read @lvtcollins' breakdown of what’s going on at the border. https://t.co/5ODHwSmq4Y +06/26/2018,Politicians,@TheBushCenter,"Today, North America is the most economically competitive region in the world. Explore the data here:… https://t.co/rSZi0NURL7" +06/26/2018,Politicians,@TheBushCenter,The jobs of 2.8 million Americans are dependent upon our trade relationship with our North American neighbors.… https://t.co/WcHJckKuBq +06/26/2018,Politicians,@TheBushCenter,RT @demdigest: Analysis | The Daily 202: A poll commissioned by Bush and Biden shows Americans losing confidence in democracy https://t.co/… +06/26/2018,Politicians,@TheBushCenter,Trade increases the number and variety of lower priced goods available for middle class consumers. Workers in trade… https://t.co/ZNdLxphc5V +06/26/2018,Politicians,@TheBushCenter,The North America Competitiveness Scorecard is a tool to compare America's competitive position relative to other c… https://t.co/qEKH31taii +06/26/2018,Politicians,@TheBushCenter,"A large majority of Americans consider it important to live in a live in a country that is governed democratically,… https://t.co/LjdRFheLSi" +06/26/2018,Politicians,@TheBushCenter,The Democracy Project sheds new light on American attitudes toward the promotion of democracy and human rights abro… https://t.co/fQNJOJQTTg +06/26/2018,Politicians,@TheBushCenter,"Economic integration among the U.S., Canada, and Mexico strengthens the U.S. economy and creates opportunity across… https://t.co/C9rV6YWaIp" +06/26/2018,Politicians,@TheBushCenter,NAFTA offers a solid foundation and frame on which to build-on. Here are five steps to improve North American trade… https://t.co/PltQVAD6ky +06/26/2018,Politicians,@TheBushCenter,"RT @PennBiden: So proud to be part of this work, along with our partners at @freedomhouse and @TheBushCenter, exploring Americans' attitude…" +06/26/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Analysis | The Daily 202: A poll commissioned by Bush and Biden shows Americans losing confidence in democracy https://t… +06/26/2018,Politicians,@TheBushCenter,RT @freedomhouse: BREAKING: #Bipartisan poll released today by @FreedomHouse @TheBushCenter @PennBiden shows Americans’ top concerns for st… +06/26/2018,Politicians,@TheBushCenter,What is going on at the southwest border? What does zero tolerance mean? What is the Flores Settlement? Did family… https://t.co/R3NUBaQxMb +06/26/2018,Politicians,@TheBushCenter,"NEW TODAY: @TheBushCenter, @PennBiden, and @freedomhouse released a survey of American attitudes on our… https://t.co/a3C0z0G8Of" +06/25/2018,Politicians,@TheBushCenter,RT @annewicks: Trying to understand the policy/law in place at the border? Check out my @TheBushCenter colleague @lvtcollins primer on the… +06/25/2018,Politicians,@TheBushCenter,Your #immigration questions answered: Read @lvtcollins breakdown of what’s going on at the border. https://t.co/BbIFAfTbMv +06/25/2018,Politicians,@TheBushCenter,"""By taxing #trade and reducing the amount of trade, we are actually reducing our own ability to grow."" -… https://t.co/NBVYkksYEs" +06/25/2018,Politicians,@TheBushCenter,RT @TheFundChicago: Community of Practice participants just finished a very productive session led by @annewicks and @evamyrickchiang from… +06/25/2018,Politicians,@TheBushCenter,RT @TheFundChicago: A big THANK YOU to @MNComeback @JaxPEF @SCORE4Schools @Dan_Berkowitz @wk_kellogg_fdn @BCLynchAcademy @themindtrust @hol… +06/25/2018,Politicians,@TheBushCenter,"RT @IVMFSyracuseU: Amy Taft, IVMF curriculum and learning manager, was selected to participate in the @TheBushCenter's Stand-To Veteran Lea…" +06/23/2018,Politicians,@TheBushCenter,Who was the woman behind the “British Bulldog?” Listen now to @yankeebean and @soniapurnell https://t.co/ZWctcjWT43 +06/22/2018,Politicians,@TheBushCenter,"Sir Winston Churchill was one of the most well-known world leaders, but few realize that it was his wife, Clementin… https://t.co/CvdfTTJKjD" +06/22/2018,Politicians,@TheBushCenter,"Countries don't trade, people trade. As a result, #Tariffs increase the prices of consumer goods like cell phones,… https://t.co/TRjm4yQysy" +06/22/2018,Politicians,@TheBushCenter,Media Advisory: Experts to Explore “The Art & Leadership of Winston Churchill” on June 26 Engage at the Bush Center… https://t.co/ARPMEFdCuJ +06/22/2018,Politicians,@TheBushCenter,What is @ChiefDavidBrown's take on #leadership? Find out here: https://t.co/id4Om2AmzN +06/22/2018,Politicians,@TheBushCenter,"A recent report from @politico and @Prudential, along with recent data, point to the same problem: the median net w… https://t.co/w0u6BaSubb" +06/22/2018,Politicians,@TheBushCenter,The lady who empowered and tamed the “British Bulldog” – Clementine Churchill helped shape her husband’s political… https://t.co/Pe4LVQ64lN +06/22/2018,Politicians,@TheBushCenter,Statement by President George W. Bush on Charles Krauthammer https://t.co/jo2KhAjndB https://t.co/zmEwF58rXn +06/21/2018,Politicians,@TheBushCenter,"As seen in last year’s @TheAcademy winning movie @DarkestHour, Sir Winston Churchill’s memorable quotes & anecdotes… https://t.co/n2afBcEPWd" +06/21/2018,Politicians,@TheBushCenter,"""Americans ought to know more about one of our closest allies and a longtime adversary that might perhaps become a… https://t.co/HyP0WLdTTM" +06/21/2018,Politicians,@TheBushCenter,"Sir Winston Churchill was one of the most well-known world leaders, but few realize that it was his wife, Clementin… https://t.co/tC0EKQcLYO" +06/21/2018,Politicians,@TheBushCenter,"As first lady, @laurawbush had a strong influence on the global human rights agenda, including her advocacy for Afg… https://t.co/QX0feHdTQt" +06/21/2018,Politicians,@TheBushCenter,"Learn why Americans may soon be paying more for consumer goods like cars, dishwashers, and cell phones. #Tariffs… https://t.co/0bfcyv5g45" +06/21/2018,Politicians,@TheBushCenter,"""Student debt now tops $1.4 trillion, causing young people to defer the “American dream”— marriage, children, home… https://t.co/49W9zPL8BM" +06/21/2018,Politicians,@TheBushCenter,"""It really is a priceless thing to be involved in an organization in any way, whether it’s military, policing, or e… https://t.co/rss48hVTxe" +06/20/2018,Politicians,@TheBushCenter,From timely takes by policy experts on world news to recommended #reading lists and #podcasts… don’t miss the lates… https://t.co/eZW42tDL1K +06/20/2018,Politicians,@TheBushCenter,A recent report from @politico and @Prudential notes that #millennials are further behind in accumulating savings t… https://t.co/AlMGCGRFhc +06/20/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/KKL9hgruI3" +06/20/2018,Politicians,@TheBushCenter,"For most Americans, Korea – North and South – is still not well known. @WLindsayLloyd suggests 5 books that offer i… https://t.co/vjktMqwtmp" +06/20/2018,Politicians,@TheBushCenter,"""The explosive growth in student #debt, among other challenges, is causing #millennials to under-save, which presen… https://t.co/1DD8AuUk8l" +06/20/2018,Politicians,@TheBushCenter,RT @CSISKoreaChair: The Bookshelf: Five Books to Understand Korea @WLindsayLloyd @TheBushCenter https://t.co/s5pRNiHPHZ +06/20/2018,Politicians,@TheBushCenter,Former Chief of the @DallasPD @ChiefDavidBrown spoke with our #StandTo Veteran Leadership Program scholars about hi… https://t.co/FmRxesCGRx +06/20/2018,Politicians,@TheBushCenter,"Refugees don’t play a small portion in making America great, they play a significant role in elevating this country… https://t.co/VTeFqUPJ4v" +06/20/2018,Politicians,@TheBushCenter,"""If you’re leading and no one is following you, you’re just taking a walk."" --@ChiefDavidBrown. Read his ""Two Minut… https://t.co/6g6MBdYy1t" +06/20/2018,Politicians,@TheBushCenter,"North Korea may be odd and menacing, but fortunately, it’s much less opaque these days. More and more books are bei… https://t.co/jYWDDAwjpv" +06/20/2018,Politicians,@TheBushCenter,"""[@laurawbush] used her voice to be an advocate for those who were silenced. And she drew attention to those who ne… https://t.co/e9wCBT8k08" +06/19/2018,Politicians,@TheBushCenter,"Learn why Americans may soon be paying more for consumer goods like cars, dishwashers, and cell phones. #Tariffs… https://t.co/cSb645tQEz" +06/19/2018,Politicians,@TheBushCenter,The role of First Lady is vast and undefined. @laurawbush describes her journey in the White House in episode 4 of… https://t.co/lsjGgVehFM +06/19/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Five books to better understand Korea. https://t.co/8uVUAKcA00 @TheBushCenter @MelanieKirkpat @VictorDCha +06/19/2018,Politicians,@TheBushCenter,The tariffs imposed on China are protecting sunset industries where our comparative advantage has dwindled. America… https://t.co/GgGCHxrzsT +06/19/2018,Politicians,@TheBushCenter,RT @USGLC: “We have to be proud of what has taken place… @PEPFAR has always had incredible bipartisan support… we hope that support continu… +06/19/2018,Politicians,@TheBushCenter,"RT @PEPFAR: At @USGLC State Leaders Summit #PEPFAR15 tribute, #AmbBirx congratulates @TomDaschle and George W. Bush on their awards and lea…" +06/19/2018,Politicians,@TheBushCenter,"RT @MiguelHoweMSI: Our nations #Veterans, even those who overcome serious wounds, injuries and illnesses are strong resilient servant leade…" +06/19/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/eEthJVy9QV" +06/18/2018,Politicians,@TheBushCenter,"ICYMI: ""In 2018, can we not as a nation find a kinder, more compassionate and more moral answer to this current cri… https://t.co/xF99BpInxT" +06/18/2018,Politicians,@TheBushCenter,The Bush Institute met with Acting Secretary of @DeptVetAffairs Peter O’Rourke today to discuss ways to continue to… https://t.co/a6u4PhaofI +06/18/2018,Politicians,@TheBushCenter,.@FortWorth_ISD superintendent @KentPScribner talks about the goals he hopes to achieve by participating in the Bu… https://t.co/GpnrJfr5Ic +06/18/2018,Politicians,@TheBushCenter,"""By imposing tariffs and escalating tensions with China we are only raising prices for American families and are un… https://t.co/NGItVtNS9S" +06/18/2018,Politicians,@TheBushCenter,.@AnneWicks speaks to @FortWorth_ISD about goals and next steps in their work to improve #SchoolLeadership. Learn m… https://t.co/ZEJnUTd8RR +06/18/2018,Politicians,@TheBushCenter,"Today, the Bush Institute’s School Leadership Initiative team visits @FortWorth_ISD to check in on their progress.… https://t.co/YoI10Vndu3" +06/18/2018,Politicians,@TheBushCenter,Stay up to date on the latest from the George W. Bush Institute and President and Mrs. Bush. Sign up to receive upd… https://t.co/vRFBzzYErq +06/18/2018,Politicians,@TheBushCenter,"""I appreciate the need to enforce and protect our international boundaries, but this zero-tolerance policy is cruel… https://t.co/Qf8iK14Qc6" +06/16/2018,Politicians,@TheBushCenter,#DYK: Jackie Kennedy spoke 5 languages and saved Egyptian temples from being torn down. Learn how she helped shape… https://t.co/OAibUpLnoB +06/15/2018,Politicians,@TheBushCenter,"""While these tariffs are touted as protecting American businesses and workers, in reality they are protecting some… https://t.co/i0X19GMwdP" +06/15/2018,Politicians,@TheBushCenter,Our analysis of global competitiveness shows that economically China is nowhere near the U.S. Take a look at our da… https://t.co/jCGHtMLxdb +06/15/2018,Politicians,@TheBushCenter,"""By imposing tariffs and escalating tensions with China we are only raising prices for American families and are un… https://t.co/DLa2bAbQyY" +06/15/2018,Politicians,@TheBushCenter,"RT @PLSprogram: Scholars kicked off their fifth session at @LBJLibrary yesterday with administration alums Tom Johnson, @BillMoyers, Larry…" +06/14/2018,Politicians,@TheBushCenter,"“Over the coming months, [the Bush Institute-@SMU Economic Growth Initiative] will build Dallas into a globally res… https://t.co/dhBnIDJdhV" +06/14/2018,Politicians,@TheBushCenter,North America is the most economically competitive region in the world. Explore our data to learn how #trade agreem… https://t.co/AItFztwMUR +06/14/2018,Politicians,@TheBushCenter,#ThursdayThoughts: “[The role of first lady] has adapted over time because it has adapted with time and with change… https://t.co/trg0hH7zZA +06/13/2018,Politicians,@TheBushCenter,"@andersoncooper Thank you for highlighting Kang Chol-Hwan’s story, and for keeping the spotlight on the estimated 2… https://t.co/PKOkfk8kcW" +06/13/2018,Politicians,@TheBushCenter,"#WednesdayWisdom: ""Seeing Mom and Dad throughout their lives serving others was an enormous gift to us. My dad once… https://t.co/EQ03xCpoQl" +06/13/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: Don't miss @VictorDCha in the @NYTimes today on what the Singapore summit means. Proud to have him at @TheBushCenter as… +06/13/2018,Politicians,@TheBushCenter,"“I think it’s a great example for all the women in our family to stand up for yourself, speak loudly about issues t… https://t.co/sJqLGlIHGK" +06/13/2018,Politicians,@TheBushCenter,RT @dallasnews: New Bush-SMU institute hopes to become globally recognized source of economic policy ideas https://t.co/NQirsb0aI3 +06/13/2018,Politicians,@TheBushCenter,RT @ChrisJamesWalsh: My great @TheBushCenter colleagues @WLindsayLloyd & @junepyun on @wfaa w/ a needed reminder that North Korea is the wo… +06/13/2018,Politicians,@TheBushCenter,"""The [Bush-@SMU] initiative will ensure Dallas has a strong voice in economic circles. We will advance high-impact… https://t.co/FW00AoQURY" +06/12/2018,Politicians,@TheBushCenter,".@WLindsayLloyd talks #TrumpKimSummit with @CKNW's @simisara980: ""If you have a regime that's willing to treat its… https://t.co/boF7sPuqF8" +06/12/2018,Politicians,@TheBushCenter,"""The majority of the prison camps are meant for permanent incarceration. Analysts think there are about 200,000 men… https://t.co/35TShMufN1" +06/12/2018,Politicians,@TheBushCenter,"""By the time I arrived at Yodok, only three fish survived. When winter came, our room was so cold the aquarium froz… https://t.co/v9VbhcfvJT" +06/12/2018,Politicians,@TheBushCenter,"RT @MiguelHoweMSI: Important day @LinkedIn HQs yesterday, thx 2 @dsavage_83 @LizOBrien30 @hiringourheroes & companies/leaders like Mike Kel…" +06/12/2018,Politicians,@TheBushCenter,#WatchNow: Two-Minute Take with @WLindsayLloyd on #TrumpKimSummit and why North Korea's human rights abuses need to… https://t.co/uGZyFfQl6Y +06/12/2018,Politicians,@TheBushCenter,1 in every 185 North Koreans is a political prisoner. Punishable crimes include criticizing the government (or havi… https://t.co/cMCxVtY3B1 +06/12/2018,Politicians,@TheBushCenter,"""We must not lose sight of the condition of the North Korean people."" - @WLindsayLloyd in interview with @ABC:… https://t.co/F8J9reaj4p" +06/12/2018,Politicians,@TheBushCenter,Happy 94th birthday to President @GeorgeHWBush from all of us at President #43’s Institute! We’re sporting our favo… https://t.co/gtG56gsibH +06/12/2018,Politicians,@TheBushCenter,RT @VictorDCha: Waiting to join ⁦@hodakotb⁩ ⁦@SavannahGuthrie⁩ ⁦@TODAYshow⁩ (with one hour of sleep) to talk #SingaporeSummit ⁦@georgetown… +06/12/2018,Politicians,@TheBushCenter,ICYMI: @junepyun and @WLindsayLloyd spoke to @wfaa's @twoodard8 about North Korean human rights and why they must r… https://t.co/feyUUmaZM6 +06/12/2018,Politicians,@TheBushCenter,"“She made sure she improved the lives of others... and it’s a great example for her daughter, for her children, and… https://t.co/khQXlydEiv" +06/11/2018,Politicians,@TheBushCenter,#DYK: Jackie Kennedy spoke 5 languages and saved Egyptian temples from being torn down. Learn how she helped shape… https://t.co/NDW5wenRsz +06/11/2018,Politicians,@TheBushCenter,DFW: tune into @wfaa's story on the US-North Korea Summit tonight at 6 featuring Bush Institute human freedom exper… https://t.co/UJIFZWm3lb +06/11/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/NnyqEImxdJ +06/11/2018,Politicians,@TheBushCenter,"Thank you to @TeamRubicon, #Team43, @DennisClancey, @PatRossIII, @Hope4Warriors, @022KILL, @HoovesForHeroes,… https://t.co/2F2qE7MKT2" +06/11/2018,Politicians,@TheBushCenter,We welcomed @supportthewalk today as they began their journey through #Texas. The 3 U.S. & 3 U.K. wounded #veterans… https://t.co/m5Sswa6JZ0 +06/11/2018,Politicians,@TheBushCenter,"As the U.S. and the rest of the world grapple with denuclearizing #NorthKorea, the country’s atrocious human rights… https://t.co/ofyC1Vv77X" +06/11/2018,Politicians,@TheBushCenter,"""While it may sound like the U.S. can get a better deal negotiating [NAFTA] separately, bilateral agreements inevit… https://t.co/GdYMeO1sWw" +06/11/2018,Politicians,@TheBushCenter,RT @MontseTXAFLCIO: We all have an obligation to ensure that we are sharing the positive impacts of immigration @lvtcollins @latinocld #Lat… +06/11/2018,Politicians,@TheBushCenter,Team 43 member Johnnie Yellock speaking about @supportthewalk. #whyiwalk #supportthewalk #walkofamerica https://t.co/zMYvlhjptY +06/11/2018,Politicians,@TheBushCenter,"And they’re off! @supportthewalk will walk 18 miles to Grand Prairie today. They will walk a total of 1,000 miles d… https://t.co/6JJyFdQbSW" +06/11/2018,Politicians,@TheBushCenter,Bush Center Staff with @supportthewalk walkers as they embark on their Texas journey today. 🇬🇧🇺🇸 #supportthewalk… https://t.co/lAC4vEAbkk +06/11/2018,Politicians,@TheBushCenter,We’re welcoming @supportthewalk to the the Bush Center this morning! #walkofamerica #whyiwalk #supportthewalk https://t.co/6CSUQzputW +06/11/2018,Politicians,@TheBushCenter,"Barbara Bush’s dedication to faith, family, and friends captured the hearts of Americans. The latest episode of “La… https://t.co/MRk9R97A58" +06/10/2018,Politicians,@TheBushCenter,"“I think it’s a great example for all the women in our family to stand up for yourself, speak loudly about issues t… https://t.co/VsaayJ97Sb" +06/09/2018,Politicians,@TheBushCenter,"Stay connected with the Bush Center! Be the first to hear our ideas, receive updates, engage with us, and more. Sig… https://t.co/QEpdlytxqV" +06/09/2018,Politicians,@TheBushCenter,"“She made sure she improved the lives of others... and it’s a great example for her daughter, for her children, and… https://t.co/mPAPEwYFsV" +06/09/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/08/2018,Politicians,@TheBushCenter,#StandTo Veteran Leadership scholars heard from @ChiefDavidBrown this morning - an inspiring way to wrap up week on… https://t.co/sR8rVnUAwQ +06/08/2018,Politicians,@TheBushCenter,"Do you know what policy changes can be made to prolong Social Security and Medicaid's solvency? Find out: +https://t.co/nXye5wfhrE" +06/08/2018,Politicians,@TheBushCenter,"In honor of what would have been Barbara Bush's 93rd birthday, we sat down for a conversation with her daughter, Do… https://t.co/3apWqubSp3" +06/08/2018,Politicians,@TheBushCenter,"Be the first to hear our ideas, engage with us, and stay up-to-date on what we have going on. Sign up now: https://t.co/mHu9WTZNbN" +06/07/2018,Politicians,@TheBushCenter,"""Veterans entering into all frames of leadership – political, business, and society leadership – fills out the pale… https://t.co/NAqrSMdOs3" +06/07/2018,Politicians,@TheBushCenter,"Stay connected with the Bush Center! Sign up to receive updates, newsletters, ideas, and more from our experts. https://t.co/mHu9WTZNbN" +06/07/2018,Politicians,@TheBushCenter,General @StanMcChrystal spoke this week to the #StandTo Veteran Leadership scholars about the importance of the pro… https://t.co/uk2zmWNOQq +06/07/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/07/2018,Politicians,@TheBushCenter,Do you know the number of countries and territories represented in the @NBA? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/06/2018,Politicians,@TheBushCenter,RT @KacieAKelly: Honored to discuss #health & #wellbeing with @JJPint at the @TheBushCenter today! Excited about the diversity of thought &… +06/06/2018,Politicians,@TheBushCenter,"Massive human rights abuses against the Rohingya are becoming widely known, yet many aren't aware there are multipl… https://t.co/WL8wRtyymY" +06/06/2018,Politicians,@TheBushCenter,"“Be as good as you can, don’t try to be more than you are” - General @StanMcChrystal to #StandTo Vet Leadership Pro… https://t.co/zR5rW09TmA" +06/06/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/MSvzmfe3Me +06/06/2018,Politicians,@TheBushCenter,"""Tariffs on our closest allies put us in conflict with the very countries who are our strongest allies in confronti… https://t.co/pRSkBoPPQY" +06/05/2018,Politicians,@TheBushCenter,"""The opportunity to be here with these outstanding young leaders is a blessing."" - Sec. Bob McDonald to #StandTo Ve… https://t.co/AJhSOOqkQL" +06/05/2018,Politicians,@TheBushCenter,Applications for the 2019 class of #PLScholars are now open! Learn more about the @PLSprogram: https://t.co/EYsQ7ZAAkY +06/05/2018,Politicians,@TheBushCenter,“Our vets are a tremendous national asset…and to help vets transition from military life to civilian life is in the… https://t.co/HG0Kha6Vb3 +06/05/2018,Politicians,@TheBushCenter,"“I’m thrilled to be with you, and I appreciate you very much joining the initial class of an effort that’s going to… https://t.co/nWp9yEtVbu" +06/05/2018,Politicians,@TheBushCenter,Bush Institute Fellow @VictorDCha testifies before the Senate Foreign Relations Asia Subcommittee about the challen… https://t.co/SbRq3hs6Dz +06/05/2018,Politicians,@TheBushCenter,Yesterday was the first day of a week long trip to #Dallas for the inaugural class of our Stand-To Veteran Leadersh… https://t.co/DBB5S3HSi4 +06/05/2018,Politicians,@TheBushCenter,RT @JJPint: Fired up and coming in hot to talk #Health and #Wellbeing with @KacieAKelly for the 1st @TheBushCenter #veteran leadership prog… +06/05/2018,Politicians,@TheBushCenter,"RT @KacieAKelly: Day 2 of first week of @TheBushCenter Veteran Leadership Program kicks off with a roar, “...our veterans are a tremendous…" +06/04/2018,Politicians,@TheBushCenter,"June is here which means more vacations, road trips, and family time. Download ""Ladies, First"" – a fun, informative… https://t.co/9lZEgD98fT" +06/04/2018,Politicians,@TheBushCenter,“This program isn’t just about veteran outcomes and programs; it’s about continued veteran leadership too” -… https://t.co/p8SvubIk1G +06/04/2018,Politicians,@TheBushCenter,“This is about educating and informing the country about how to leverage this great asset we have.” -… https://t.co/Tpp7o7w8y9 +06/04/2018,Politicians,@TheBushCenter,The inadequate state of the North Korean health system puts the country at great risk of pandemics such as Ebola or… https://t.co/Ouo4jjLPEd +06/04/2018,Politicians,@TheBushCenter,"RT @jaynordlinger: How bad are these new tariffs against our allies (and against ourselves, really)? @EconGrowth puts it in a nutshell. htt…" +06/04/2018,Politicians,@TheBushCenter,"Explore our data to learn why maintaining good #trade relations with our allies-- Canada, Mexico, and the EU-- are… https://t.co/HxSByxLiiX" +06/04/2018,Politicians,@TheBushCenter,.@EconGrowth explains why steel and aluminum #tariffs will increase the price of many consumer goods including soda… https://t.co/0ZhFHUqZnY +06/04/2018,Politicians,@TheBushCenter,"RT @jaynordlinger: Interesting little article by @lvtcollins on the ""global flavor of the NBA."" (I didn't know Dr. Naismith was an immigran…" +06/04/2018,Politicians,@TheBushCenter,#DYK Kim Jong-Un’s nuclear program is partially funded by sending North Koreans to places like China and Russia to… https://t.co/MjRkdJKoHi +06/04/2018,Politicians,@TheBushCenter,RT @blaynepsmith: TPA->DFW. Pumped to join @ToddConnor and @MiguelHoweMSI to help kick off the Stand-To Veteran Leadership Program @TheBush… +06/04/2018,Politicians,@TheBushCenter,We are excited to welcome the inaugural class of our Stand-To Veteran Leadership scholars to #Dallas this week! Sta… https://t.co/ddzhSBTNKg +06/04/2018,Politicians,@TheBushCenter,How can we make economic growth more inclusive? Director of the Bush Institute-SMU Economic Growth Imitative Cullum… https://t.co/BDiRsGkUvk +06/04/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/Ds3eEeFwZn +06/02/2018,Politicians,@TheBushCenter,"RT @wendykopp: A fitting tribute to the extraordinary roles many grandmothers take on, featuring @Kassaga4UG, via Natalie Gonnella-Platts o…" +06/02/2018,Politicians,@TheBushCenter,“The United States owes its leading place in the world economy to its historic achievements in education.” -- Direc… https://t.co/p4M5AAP7J3 +06/02/2018,Politicians,@TheBushCenter,"June is here which means more vacations, road trips, and family time. Download ""Ladies, First"" – a fun informative… https://t.co/RQlQ3viZ3x" +06/02/2018,Politicians,@TheBushCenter,"North Korea’s leader Kim Jong-un takes pride in his country’s nuclear program. However, a recent survey from @CSIS… https://t.co/dqYLpr1Cyf" +06/01/2018,Politicians,@TheBushCenter,"As the U.S. and the rest of the world grapple with denuclearizing #NorthKorea, the conversation must begin at the r… https://t.co/kr2k0BSGsT" +06/01/2018,Politicians,@TheBushCenter,"RT @DallasBizNews: Bush Institute, SMU launch economic growth initiative: https://t.co/w2DA02jymV" +06/01/2018,Politicians,@TheBushCenter,"Steel and aluminum tariffs will increase the cost of sodas, cars, refrigerators and many other consumer goods. Lear… https://t.co/AcQ2Dkmtir" +06/01/2018,Politicians,@TheBushCenter,RT @SMUDedman: Today's a big day: @TheBushCenter Institute-@SMU Economic Growth Initiative officially launches https://t.co/BKOB35qFIw +06/01/2018,Politicians,@TheBushCenter,Read more about the George W. Bush Institute-SMU Economic Growth Initiative that formally launched today:… https://t.co/NfGyqX6RpZ +06/01/2018,Politicians,@TheBushCenter,Bush Institute's @EconGrowth talks to @washingtonpost about new tariffs put on U.S. allies: https://t.co/28vR5RO88R +06/01/2018,Politicians,@TheBushCenter,Director of the Bush Institute-SMU Economic Growth Initiative Cullum Clark shares his thoughts on how to strengthen… https://t.co/Pa8ldSRpTy +06/01/2018,Politicians,@TheBushCenter,"“Raising #tariffs is raising taxes, and tariffs are a tax that is paid by consumers, not producers.” -- @EconGrowth… https://t.co/U6CQXQ7FI0" +06/01/2018,Politicians,@TheBushCenter,“The Initiative combines [our] action-oriented approach to policy & extraordinary convening ability w/ @SMU's resea… https://t.co/eTT75jY5jT +06/01/2018,Politicians,@TheBushCenter,RT @WLindsayLloyd: From my @TheBushCenter colleagues @lvtcollins & @EconGrowth in @ForeignPolicy - The US must foster free trade and econom… +06/01/2018,Politicians,@TheBushCenter,Do you know how many foreign-born players are in tonight's @NBA finals? #NBATwitter #NBAFinals https://t.co/6UgEvHqw4S +06/01/2018,Politicians,@TheBushCenter,What's the best part about the @NBA finals? The global flavor. Read more: #NBAFinals #NBATwitter https://t.co/Wxs3dOKrLP +05/31/2018,Politicians,@TheBushCenter,"Steel and aluminum tariffs will increase the cost of sodas, cars, refrigerators and many other consumer goods. Lear… https://t.co/fyISZ87cWS" +05/31/2018,Politicians,@TheBushCenter,"""The ability to adapt must become a must-have skill instead of a nice-to-have skill.  Learning is like breathing.""… https://t.co/33QZGhzg0R" +05/31/2018,Politicians,@TheBushCenter,"""When you have children, put your phone down and pay attention to them. Read to them—that’s the most important thin… https://t.co/sdQya1piLL" +06/30/2018,Politicians,@SpeakerRyan,RT @PatrickMcHenry: Click here to learn more about how House passage of the Department of Defense Appropriations Act is another step toward… +06/30/2018,Politicians,@SpeakerRyan,"As promised, the new tax forms are the size of a postcard. Filing your taxes just got a little less taxing. This is… https://t.co/mvBoDoCMbj" +06/29/2018,Politicians,@SpeakerRyan,"RT @SteveScalise: 6 months ago, when we passed the #TaxCutsandJobsAct, we promised simple tax returns the size of a postcard. Today, @USTre…" +06/29/2018,Politicians,@SpeakerRyan,"RT @CNBCnow: JUST IN: Treasury, IRS announce postcard-size form 1040 for next year https://t.co/ZaAhnbWc2z https://t.co/YdWMMi02vb" +06/29/2018,Politicians,@SpeakerRyan,"Filing your taxes just got a little less taxing. @USTreasury unveiled the new return for 2019, and as promised, it’… https://t.co/0eVsY7E3yx" +06/29/2018,Politicians,@SpeakerRyan,"RT @GovWalker: With up to 13,000 jobs and $10 billion in capital, Foxconn’s investment in Wisconsin is by far the largest economic developm…" +06/29/2018,Politicians,@SpeakerRyan,"In the 6️⃣ months since #TaxReform: + +6️⃣5️⃣% of Americans say now is the time to find a quality job +9️⃣5️⃣.1️⃣% of… https://t.co/aGvlM1zhVV" +06/28/2018,Politicians,@SpeakerRyan,The senseless attack on a Maryland newspaper today is sickening. God bless these journalists. We pray for them and their families tonight. +06/28/2018,Politicians,@SpeakerRyan,"Today, we demonstrate to the rest of the world that the Badger State will be a manufacturing powerhouse for generat… https://t.co/2C11vcFDl9" +06/28/2018,Politicians,@SpeakerRyan,The Badger State is a great place to do business. Just broke ground on Foxconn's facility in Southeastern Wisconsin… https://t.co/Wi5O3NFp70 +06/28/2018,Politicians,@SpeakerRyan,Great news→ The House just voted to give our men and women in uniform their largest pay raise in 9 years. They dese… https://t.co/pRjXhpFSZQ +06/28/2018,Politicians,@SpeakerRyan,This funding package will help deliver better care for our veterans and grow our economy with critical investments… https://t.co/zJ11VvNMUl +06/28/2018,Politicians,@SpeakerRyan,Retweet to agree → Our men and women in uniform deserve a pay raise. The House is about to vote to give them their… https://t.co/CRO1eLROEf +06/28/2018,Politicians,@SpeakerRyan,"The House will soon take a big vote to rebuild our military. Here are 8 reasons the #NDAA is so important, includin… https://t.co/Gzf3p3ZgtQ" +06/27/2018,Politicians,@SpeakerRyan,"Welcomed a delegation of European speakers, ambassadors, and other leaders to the Capitol today to discuss our shar… https://t.co/MbMcRkelRX" +06/27/2018,Politicians,@SpeakerRyan,RT @BudgetGOP: DON'T MISS @SpeakerRyan highlighting @BudgetGOP Chair @SenatorEnzi's biennial appropriations idea. Moving Congress to two-ye… +06/27/2018,Politicians,@SpeakerRyan,"RT @PolishEmbassyUS: Today @SpeakerRyan welcomed parliamentary leaders from Central & Eastern Europe, including Deputy Speaker of the Polis…" +06/27/2018,Politicians,@SpeakerRyan,RT @BudgetGOP: MUST READ @SpeakerRyan endorses @SenatorEnzi’s two-year spending plan - https://t.co/6YkKTQgbqx - via @washtimes & @dsherfin… +06/27/2018,Politicians,@SpeakerRyan,"RT @SenatorEnzi: Thanks to @SpeakerRyan for promoting my #BiennialAppropriations idea. Moving Congress to a two-year appropriations cycle,…" +06/27/2018,Politicians,@SpeakerRyan,RT @rep_stevewomack: Thanks to @SpeakerRyan for sharing his reform ideas during today’s Members’ Day hearing in the Joint Select Committee… +06/27/2018,Politicians,@SpeakerRyan,The following members will lead negotiations for reforms to the Committee on Foreign Investment in the United State… https://t.co/KY42PBAR8N +06/27/2018,Politicians,@SpeakerRyan,"After years of being hollowed out, we are on the road to rebuilding our military. The 2018 #NDAA is about keeping t… https://t.co/GEP6ZpuTxH" +06/27/2018,Politicians,@SpeakerRyan,"In his decades of faithful service on the bench, Justice Kennedy has been a man of integrity and decency. He has ea… https://t.co/zhijXP3J8x" +06/27/2018,Politicians,@SpeakerRyan,"For years, our military has been hollowed out. This year’s defense bill is all about ensuring our Armed Forces can… https://t.co/V9A5UszVDp" +06/27/2018,Politicians,@SpeakerRyan,"RT @SteveKnight25: My bill, the Small Business Investment Opportunity Act, has been signed into law! Small businesses are the backbone of o…" +06/27/2018,Politicians,@SpeakerRyan,RT @EdWorkforce: The SCOTUS ruling in Janus v. AFSCME is a win for individual freedom for public sector employees. Read Chairwoman @Virgini… +06/27/2018,Politicians,@SpeakerRyan,"A generation of the people’s representatives have become accustomed to a failed budget process. This has to change,… https://t.co/JPWw0ObjWt" +06/27/2018,Politicians,@SpeakerRyan,Biennial budgeting offers a path to rewriting this process—it brings renewed transparency & accountability so we're… https://t.co/HJLwK5dbUV +06/27/2018,Politicians,@SpeakerRyan,"Continuing resolution after continuing resolution, and all of these omnibuses, are not in the best interest of our… https://t.co/Dn9PbF3jZP" +06/27/2018,Politicians,@SpeakerRyan,"I’ve often lamented that the budget process was broken—""organized chaos” would be too generous a description. It is… https://t.co/Wy6mSRW6wx" +06/27/2018,Politicians,@SpeakerRyan,"RT @rep_stevewomack: WATCH: The Joint Select Committee on Budget and Appropriations Process Reform hosts Members’ Day, including testimony…" +06/26/2018,Politicians,@SpeakerRyan,Thank you @KingAbdullahII & @QueenRania for meeting with a bipartisan group of lawmakers in the Capitol today to di… https://t.co/yGHOqo9acS +06/26/2018,Politicians,@SpeakerRyan,"Every day, firefighters put themselves in harm’s way. This bill allowing researchers to better understand the impac… https://t.co/97yfHi6vRA" +06/26/2018,Politicians,@SpeakerRyan,This year’s defense funding bill gives our service members their biggest pay raise in nine years. What our country’… https://t.co/1XGPoQv5fI +06/26/2018,Politicians,@SpeakerRyan,"After tax reform, @HouseGOP’s top priority was to rebuild our military. I’ll be speaking about the steps we’re taki… https://t.co/onYsshv5xq" +06/25/2018,Politicians,@SpeakerRyan,RT @cathymcmorris: The deadly #opioidcrisis is ravaging communities across our nation. See what we are doing to stop it at https://t.co/G3d… +06/24/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: The House passed over 70 bills that target specific weaknesses in the treatment and prevention of opioid addiction. To… +06/22/2018,Politicians,@SpeakerRyan,Dr. Charles Krauthammer was a widely respected thinker and writer who used his immeasurable gifts to contribute to… https://t.co/T5RbkrgIu2 +06/22/2018,Politicians,@SpeakerRyan,"RT @WaysandMeansGOP: Today, a #bipartisan group of 396 Representatives got together and voted for a “massive” package of bills to help in t…" +06/22/2018,Politicians,@SpeakerRyan,"Over the last six months, I’ve visited dozens of businesses across the country to hear directly from company leader… https://t.co/MMtitOfBV0" +06/22/2018,Politicians,@SpeakerRyan,"The Tax Cuts and Jobs Act was signed into law six months ago today, but it was a moment that was decades in the mak… https://t.co/DFL9jKfrEC" +06/22/2018,Politicians,@SpeakerRyan,"RT @NBCNightlyNews: NEW: House passes largest opioids legislative package in recent history, with provisions directing federal agencies to…" +06/22/2018,Politicians,@SpeakerRyan,RT @RepKevinBrady: Something big indeed. America is back! Read my op-ed in the @WSJ ⬇️ https://t.co/ldKww7DzTb +06/22/2018,Politicians,@SpeakerRyan,"These kinds of bipartisan moments don’t always make it into the top of your newsfeed, but this Congress—Republicans… https://t.co/YJwmD4ytIU" +06/22/2018,Politicians,@SpeakerRyan,Just in→ House Republicans and Democrats came together pass the SUPPORT for Patients and Communities Act in order t… https://t.co/nWyjgaOcuT +06/22/2018,Politicians,@SpeakerRyan,"Today’s SUPPORT bill fights the #OpioidCrisis by + +✔Advancing treatment and recovery programs +✔Improving prevention… https://t.co/rdSpu5J1Vh" +06/22/2018,Politicians,@SpeakerRyan,Speaker Ryan's Tribute to Charles Krauthammer https://t.co/tHqiXsnyXV +06/22/2018,Politicians,@SpeakerRyan,"Our nation is facing an #OpioidCrisis. Soon, I’ll be speaking on the House Floor about how the SUPPORT for Patients… https://t.co/p0t4tW3rMr" +06/21/2018,Politicians,@SpeakerRyan,Charles Krauthammer was one of the great thinkers of our time. A giant in his intellect and his character. A good a… https://t.co/pssNKyCemW +06/21/2018,Politicians,@SpeakerRyan,"Today’s House passage of the #2018FarmBill is a big deal. With our booming economy, there is no better time to clos… https://t.co/ztC5lX1g79" +06/21/2018,Politicians,@SpeakerRyan,RT @HouseAgNews: BREAKING: House advances the #2018FarmBill. H.R. 2 provides certainty to farmers and ranchers who have been struggling und… +06/21/2018,Politicians,@SpeakerRyan,RT @SteveScalise: Another reason to celebrate the 6-month anniversary of the #TaxCutsandJobsAct? Utility bills are dropping for over 80 mil… +06/21/2018,Politicians,@SpeakerRyan,"RT @TheFGA: “This is the time to get people off the sidelines, out of poverty, into the workforce, into school, so that they can reach thei…" +06/21/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan: ""There are more job openings in this country than there are people looking for work."" https://t.co/G7o083zB…" +06/21/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: “We’re never going to be complacent. We’re going to continue to fight for American workers and American families to ma… +06/21/2018,Politicians,@SpeakerRyan,"In just six months. #TaxReform has meant: + +✅ Economic resurgence +✅ Higher pay for workers +✅ More job openings +✅ Mor… https://t.co/x3b3szMvTj" +06/21/2018,Politicians,@SpeakerRyan,We do not want children taken away from their parents. Yesterday’s action by @POTUS will ensure families can remain… https://t.co/Zzd9tVznp7 +06/21/2018,Politicians,@SpeakerRyan,"Soon, I’ll be speaking about the situation at the border and the strength of the American economy at my weekly pres… https://t.co/VV9UPjVCbt" +06/21/2018,Politicians,@SpeakerRyan,"The US is now in a pro-growth cycle where Americans are confident, they're risk-taking, they're hiring, and wages a… https://t.co/9hIHCBh2ca" +06/21/2018,Politicians,@SpeakerRyan,"Six months ago today, Congress passed the Tax Cuts and Jobs Act, and the good economic news continues to roll in. https://t.co/USwZO6WwFc" +06/21/2018,Politicians,@SpeakerRyan,The Capitol Hill community came together tonight at the @CWSoftballGame to raise awareness and money to… https://t.co/Lz29l9ItaJ +06/21/2018,Politicians,@SpeakerRyan,RT @PatrickMcHenry: Great piece from @SpeakerRyan highlighting all the reasons #taxreform is making American workers and businesses feel mo… +06/21/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan on the impact of the Tax Cuts and Jobs Act, 6 months since it was passed: ""More than 1 million jobs have bee…" +06/20/2018,Politicians,@SpeakerRyan,Looking forward to tonight’s Congressional Women’s Softball Game against the DC press corps to benefit breast cance… https://t.co/0fiXp0YCFd +06/20/2018,Politicians,@SpeakerRyan,Today marks six months since Congress passed a historic reform of our country’s tax code. In this short amount of t… https://t.co/5yy2PEMalk +06/20/2018,Politicians,@SpeakerRyan,"Thanks to the Republican-led tax law, America is experiencing a boom in US manufacturing. ⚙️ https://t.co/KDRZa0KoqM" +06/20/2018,Politicians,@SpeakerRyan,"RT @FoxBusiness: .@SpeakerRyan: ""In just 6 months, tax reform has already improved so many people's lives."" https://t.co/yfwTDwp3Ln" +06/20/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: .@SpeakerRyan is right: ""Tax reform has improved American lives in just six months."" Check out his @CNBC piece on #TaxRef…" +06/20/2018,Politicians,@SpeakerRyan,"Tax reform is working, not just for our economy, but for American workers, too. https://t.co/z7vBBcqW6h" +06/20/2018,Politicians,@SpeakerRyan,It’s only been six months and #TaxReform has already proven to be a game-changer for our economy. Tune in live as… https://t.co/RontKHK4hA +06/20/2018,Politicians,@SpeakerRyan,RT @ShopFloorNAM: A record-high 95.1% of manufacturers report an optimistic outlook for their company in our Q2 Manufacturers’ Outlook Surv… +06/20/2018,Politicians,@SpeakerRyan,RT @CNBC: Commentary: Paul Ryan: Tax reform has improved American lives in just six months https://t.co/j2GzRkKZaf +06/20/2018,Politicians,@SpeakerRyan,"Six months ago this week, historic #TaxReform was passed and signed into law. It has been a game-changer for the Am… https://t.co/GKkLiQiyyO" +06/20/2018,Politicians,@SpeakerRyan,"RT @cspan: .@SpeakerRyan: ""We do not want children taken away from their parents. We can enforce our immigration laws without breaking fami…" +06/20/2018,Politicians,@SpeakerRyan,"We can enforce our immigration laws without breaking families apart. Tomorrow, the House will vote on legislation t… https://t.co/7d4rwa1ZPb" +06/20/2018,Politicians,@SpeakerRyan,"Tune in for this morning's news conference with @HouseGOP leadership, where we'll talk about the situation at the b… https://t.co/tKbkNYGHZ3" +06/20/2018,Politicians,@SpeakerRyan,"It’s been 6 months since the House passed #TaxReform and since then: +✅ 1 million jobs created +✅ Unemployment droppe… https://t.co/xpaF8U6OQt" +06/19/2018,Politicians,@SpeakerRyan,The United States and Spain have many shared priorities. I was delighted to meet with His Majesty King Felipe VI to… https://t.co/Cl0o8zrJIv +06/19/2018,Politicians,@SpeakerRyan,RT @GOPLeader: This is the most significant congressional effort against a single drug crisis in history. Last week the House passed 38 #op… +06/19/2018,Politicians,@SpeakerRyan,"The #OpioidCrisis has impacted communities across the country. By the end of this week, the House will have conside… https://t.co/gdZGrJ2wLm" +06/18/2018,Politicians,@SpeakerRyan,"RT @WaysandMeansGOP: Who’s affected by opioids? +The better question is: “Who hasn't been touched by the opioid crisis in America?” + +READ 📚…" +06/18/2018,Politicians,@SpeakerRyan,Opioid overdose is now the leading cause of death for Americans under the age of 50. The House will not relent in c… https://t.co/4Pi7slt4DR +06/16/2018,Politicians,@SpeakerRyan,"My life changed the day I became a father. Liza, Charlie, and Sam are my highest priority. Wishing all of the dads… https://t.co/KRd3ksGJRT" +06/16/2018,Politicians,@SpeakerRyan,"RT @PatrickMcHenry: In honor of #FathersDay , @SpeakerRyan and I went head to head with some of our best #dadjokes. They weren't good... ht…" +06/15/2018,Politicians,@SpeakerRyan,RT @HeardontheHill: Bad Dad Jokes for Father’s Day: @SpeakerRyan and @PatrickMcHenry face off with lame puns https://t.co/3YTO1RfYif +06/15/2018,Politicians,@SpeakerRyan,RT @HouseSmallBiz: HUGE news for America's small businesses: Chairman @RepSteveChabot's H.R. 4743 is en route to the @WhiteHouse after @Spe… +06/15/2018,Politicians,@SpeakerRyan,"I love a good dad joke. Especially the ones that are so bad, they’re good. But @PatrickMcHenry’s #DadJokes are just… https://t.co/ivkoGBQDng" +06/15/2018,Politicians,@SpeakerRyan,The House is hard at work passing legislation that will continue to strengthen our economy. These two bills helping… https://t.co/NPzA2wBT9S +06/15/2018,Politicians,@SpeakerRyan,RT @SteveScalise: For the countless prayers and support on this journey — thank you. https://t.co/eNR0HPouVI +06/15/2018,Politicians,@SpeakerRyan,.@SteveScalise and the rest of the baseball team that day owe a debt of gratitude to the two Capitol Police officer… https://t.co/cHTwE9I7uE +06/14/2018,Politicians,@SpeakerRyan,Retweet to join me in welcoming @SteveScalise back on the field. #ScaliseStrong https://t.co/IFYjuvhNZs +06/14/2018,Politicians,@SpeakerRyan,My statement on the Department of Justice Inspector General report→ https://t.co/ZfIOIOj7gG +06/14/2018,Politicians,@SpeakerRyan,Happy birthday to President Trump! https://t.co/56fOsteJ2G +06/14/2018,Politicians,@SpeakerRyan,The American flag is the greatest symbol for democracy and freedom that the world has ever known. Happy #FlagDay! 🇺🇸 https://t.co/GdqUca1ObT +06/14/2018,Politicians,@SpeakerRyan,2.7 million people across the country are struggling with opioids. We’re losing 115 lives each day to the… https://t.co/JszCyetaml +06/14/2018,Politicians,@SpeakerRyan,The #OpioidCrisis is an epidemic in the truest sense of the word. I’ll be speaking more about why this needs to be… https://t.co/jmSFrpVv9N +06/14/2018,Politicians,@SpeakerRyan,Jobless claims just fell to a near 44-year low. 📉 https://t.co/5q8WuX9f28 +06/14/2018,Politicians,@SpeakerRyan,"When I announced my retirement from Congress, much of the media focused on what I was giving up. All I could think… https://t.co/rA34buBjX6" +06/14/2018,Politicians,@SpeakerRyan,"Around this time last year, I was in my office on the phone with @SteveScalise's wife. We didn’t yet know that Stev… https://t.co/3qXvQFNBmr" +06/14/2018,Politicians,@SpeakerRyan,This is the day that the Lord has made. Let us rejoice and be glad in it. So glad to be here speaking at the… https://t.co/AM4KY4VMAf +06/14/2018,Politicians,@SpeakerRyan,RT @SteveScalise: It's more than a game. https://t.co/Obltwoeu2U +06/13/2018,Politicians,@SpeakerRyan,Rep. Sam Johnson is an absolute hero for his sacrifice as a POW and his continued service to America. It is a privi… https://t.co/at0bXSwSzN +06/13/2018,Politicians,@SpeakerRyan,"RT @RepBradWenstrup: The Tax Cuts and Jobs Act created 320 Opportunity Zones in Ohio. That’s 320 economically-distressed Ohio communities,…" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepPittenger: Thanks to the #TaxCutsandJobsAct, there are now 252 “Opportunity Zones” throughout North Carolina. These “Opportunity Zon…" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepMikeBishop: Across Michigan, the #TaxCutsandJobsAct created 280+ #OpportunityZones to incentivize investment & spur growth in low-in…" +06/13/2018,Politicians,@SpeakerRyan,The time is now → We need to step up and fight the opioid epidemic from all sides. Kyle is proof that no matter how… https://t.co/qACHWP8sS0 +06/13/2018,Politicians,@SpeakerRyan,Bills passed in Washington alone will not stop this epidemic. We all have a role to play in supporting those affect… https://t.co/taq4ox3kkI +06/13/2018,Politicians,@SpeakerRyan,"This week, we are voting on the most significant congressional reforms against a single drug crisis in history. Bip… https://t.co/kz3cafH4xm" +06/13/2018,Politicians,@SpeakerRyan,"For Kyle Pucek, an ankle injury at 23 turned into an addiction to heroin that nearly took his life. Kyle has been c… https://t.co/6qxC3M8mwh" +06/13/2018,Politicians,@SpeakerRyan,"RT @RepRalphNorman: Thanks to #TaxReform, #SC has received 135 #OpportunityZones, which encourages long-term investments and boosts the eco…" +06/13/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: Michelle's story – and the thousands like it across the country – are the reason our members are working on legislatio… +06/13/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: Take a moment today to read @SpeakerRyan's piece in @journalsentinel about ""How Congress is stepping up to crack down on…" +06/13/2018,Politicians,@SpeakerRyan,The #OpioidCrisis touches all of our communities. Michelle is a mother of two from Southern Wisconsin. Both of her… https://t.co/d9IZHiW0w9 +06/13/2018,Politicians,@SpeakerRyan,115 lives are lost every day to the #OpioidCrisis. These statistics are harrowing. Learn more about how the House i… https://t.co/kP4d10w5QU +06/13/2018,Politicians,@SpeakerRyan,RT @SteveScalise: Tomorrow. https://t.co/RDx7AbXLkp +06/12/2018,Politicians,@SpeakerRyan,"From cementing a conservative judiciary to helping guide historic tax reform into law, and always looking out for K… https://t.co/0iw60aLFQI" +06/12/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: As a part of @HouseGOP’s historic #TaxReform, Wisconsin has received 120 #OpportunityZones to help spur investment and ec…" +06/12/2018,Politicians,@SpeakerRyan,RT @RepAndyHarrisMD: And unemployment is at a historically low 3.8%. #TaxReform works! https://t.co/p9ELU7j5cf +06/12/2018,Politicians,@SpeakerRyan,"RT @HouseGOP: A booming economy doesn’t just happen. It develops when sound, pro-growth policies are written and passed, policies that are…" +06/12/2018,Politicians,@SpeakerRyan,RT @HouseCommerce: Dozens of bills aimed at combating the #OpioidCrisis will hit the House Floor today. Get the latest from @USATODAY on th… +06/12/2018,Politicians,@SpeakerRyan,"✅ Lowest unemployment rate in half a century +✅ Highest optimism from #smallbiz in 30+ years +❌ Predictions of tax re… https://t.co/wzvX6kyPrV" +06/12/2018,Politicians,@SpeakerRyan,"Awesome news. Can’t wait to see you out there, Steve-o! https://t.co/myv4xJW0nF" +06/12/2018,Politicians,@SpeakerRyan,"Only time will tell if North Korea is serious this time, and in the meantime, we must continue to apply maximum eco… https://t.co/pVaWhp1pv9" +06/12/2018,Politicians,@SpeakerRyan,We must always be clear that we are dealing with a brutal regime with a long history of deceit. +06/12/2018,Politicians,@SpeakerRyan,"For decades, American policy toward North Korea has failed, and I commend @POTUS for not accepting the status quo.… https://t.co/w0PtpkiPGr" +06/12/2018,Politicians,@SpeakerRyan,.@GeorgeHWBush is a national treasure. Retweet to join me in wishing him a happy 94th birthday! +06/12/2018,Politicians,@SpeakerRyan,"Glad that you are already feeling better, @larry_kudlow. Praying for a full and speedy recovery for my friend." +06/12/2018,Politicians,@SpeakerRyan,Small business optimism just rose to its highest in more than 30 years. 📈 https://t.co/0K7Tbl88xQ +06/11/2018,Politicians,@SpeakerRyan,"RT @SteveScalise: This week, we're taking action to combat the #OpioidCrisis, which is truly the #CrisisNextDoor. The House will consider a…" +06/11/2018,Politicians,@SpeakerRyan,@jamiedupree Glad to hear you'll be back on the airwaves soon! +06/11/2018,Politicians,@SpeakerRyan,RT @RepErikPaulsen: Some good news ---> House set to vote on more than 20 bills to combat opioid addiction @CNNPolitics https://t.co/YqBCOa… +06/11/2018,Politicians,@SpeakerRyan,"RT @cathymcmorris: On the agenda next week to prevent, treat, and help people recover from addiction→ House set to vote on more than 20 bil…" +06/10/2018,Politicians,@SpeakerRyan,Had the pleasure of meeting Kayla a few months back. She truly is an inspiration to all of us and a great advocate… https://t.co/FuNHWLStzb +06/09/2018,Politicians,@SpeakerRyan,"RT @michaelcburgess: Over the next two weeks, the House will consider meaningful legislative solutions to combat the opioid epidemic. It's…" +06/09/2018,Politicians,@SpeakerRyan,"As a proud #MiamiOH alum, I always enjoy it when fellow #RedHawks stop by the office. Had a great discussion about… https://t.co/ZUYMIRMMOz" +06/08/2018,Politicians,@SpeakerRyan,"RT @RepEvanJenkins: We’re continuing to provide solutions and funding to stop drug trafficking, expand recovery programs, and educate peopl…" +06/08/2018,Politicians,@SpeakerRyan,"Bonuses and bigger paychecks aren’t the only ways #TaxReform is helping American workers. @Boeing, @McDonalds,… https://t.co/3J1J5sxmjq" +06/08/2018,Politicians,@SpeakerRyan,RT @RobWittman: The Project Safe Neighborhoods Grant Program Authorization Act gives state and local law enforcement agencies the resources… +06/08/2018,Politicians,@SpeakerRyan,JUST NOW→ House Republicans voted to cut $15 billion in wasteful government spending—the largest rescission package in history. +06/07/2018,Politicians,@SpeakerRyan,RT @RepComstock: Joined @RepGoodlatte and @RobWittman as @SpeakerRyan enrolled my anti MS-13 gang bill today. This legislation will help g… +06/07/2018,Politicians,@SpeakerRyan,"1,000,000. That's how many new jobs have been created since #TaxReform took effect. + +It's been less than 6 months. https://t.co/CQcd59I3Ts" +06/07/2018,Politicians,@SpeakerRyan,The #OpioidEpidemic has brought harrowing losses to our communities and has cut short too many futures. With the… https://t.co/nnh7VV6mUw +06/07/2018,Politicians,@SpeakerRyan,Gangs like MS-13 prey on our country’s young people through chilling violence and recruitment tactics. It’s crucial… https://t.co/5CWJC3wsQw +06/07/2018,Politicians,@SpeakerRyan,Great news → The House just started debate on the largest rescission package in history. This budget-cutting tool w… https://t.co/T0EX8zvnCy +06/07/2018,Politicians,@SpeakerRyan,"Retweet to join me in wishing our @VP, Mike Pence, a very happy birthday🎉 https://t.co/DUriUgG3aD" +06/07/2018,Politicians,@SpeakerRyan,"✔Following #TaxReform, our economy is on a roll +✔Most significant pediatric cancer bill in history: LAW +✔Quality ca… https://t.co/LvFz83oNUz" +06/07/2018,Politicians,@SpeakerRyan,We remain focused on getting big things done for the American people. I’ll be talking about how House Republicans a… https://t.co/XRDMpo7hus +06/07/2018,Politicians,@SpeakerRyan,"RT @Transport: 📢 #BreakingNews: The House has overwhelmingly passed ✅ H.R.8, the Water Resources Development Act of 2018 (#WRDA) by a vote…" +06/06/2018,Politicians,@SpeakerRyan,Today was a great day for our veterans because legislation ensuring they receive quality care became the law of the… https://t.co/oVOPc4SMxr +06/06/2018,Politicians,@SpeakerRyan,"RT @WhiteHouse: President Trump signed the VA Choice and Quality Employment Act into law, authorizing $2.1 billion in additional funds for…" +06/06/2018,Politicians,@SpeakerRyan,"@EWErickson I know, Erick. It's Armageddon out there. https://t.co/0Z4t3WmVSk" +06/06/2018,Politicians,@SpeakerRyan,RT @RepMcSally: On my way to @WhiteHouse to see @POTUS sign the VA Mission Act into law. I supported this legislation b/c it will streamli… +06/06/2018,Politicians,@SpeakerRyan,There are 6.7 million open jobs in this country—a record. Unemployment is at 3.8%—the lowest in half a century. And… https://t.co/9b6JTowjbp +06/06/2018,Politicians,@SpeakerRyan,This economic momentum doesn’t happen by accident. We’ve worked hard to create an economic environment where growth… https://t.co/nwoQFtuvCJ +06/06/2018,Politicians,@SpeakerRyan,"74 years ago today, more than 150,000 Allied troops stormed the beaches of Normandy. We are forever grateful for th… https://t.co/3iaLflh30J" +06/05/2018,Politicians,@SpeakerRyan,"RT @RepFredUpton: DYK: Michigan has 288 #OpportunityZone designations including 24 in #MI06 alone. These will help spur private investment,…" +06/05/2018,Politicians,@SpeakerRyan,"We must continue to bolster our country’s #infrastructure. This year’s Water Resources Development ACT (#WRDA): + +✔E… https://t.co/hdlucjIOrr" +06/05/2018,Politicians,@SpeakerRyan,RT @JECRepublicans: Chairman @RepErikPaulsen in the @DCExaminer: How Tax Reform Uses #OpportunityZones to Lift Neighborhoods in Need: https… +06/05/2018,Politicians,@SpeakerRyan,"RT @RepSeanDuffy: And with our pro-growth, limited government policies like #TaxReform and smart regulation, more Americans will be able to…" +06/05/2018,Politicians,@SpeakerRyan,Great news→ The number of job openings in the U.S. now exceeds the number of unemployed Americans. There is no bett… https://t.co/iVhZxccjAV +06/05/2018,Politicians,@SpeakerRyan,"RT @RepRichHudson: As part of the landmark reform, the #TaxCutsandJobsAct created #OpportunityZones to spur economic growth & jobs in disad…" +06/05/2018,Politicians,@SpeakerRyan,"RT @Transport: The Water Resources Development Act (WRDA) works because it is: +✅ Biennial +✅ Bipartisan +✅ Targeted +✅ Transparent +✅ No E…" +06/05/2018,Politicians,@SpeakerRyan,"RT @RepDougCollins: Georgia is home to 260 new economic #OpportunityZones, which incentivize businesses to invest in local communities, hel…" +06/05/2018,Politicians,@SpeakerRyan,"Our economy is on a roll: + +3️⃣.8️⃣% unemployment (lowest in half a century) +2️⃣.7️⃣% wage increase over the last y… https://t.co/4w5rUyTk0m" +06/04/2018,Politicians,@SpeakerRyan,"RT @RepBlainePress: We’ve been working hard to get America’s economy back on the right track, and it looks like our hard work is paying off…" +06/04/2018,Politicians,@SpeakerRyan,RT @carloslcurbelo: Good news across the board but especially for Americans who’ve been out of work and those seeking to transition from pa… +06/04/2018,Politicians,@SpeakerRyan,"To tackle the multi-generational poverty trap, we must change our approach to fighting poverty. Instead of measurin… https://t.co/DEieJLasnA" +06/04/2018,Politicians,@SpeakerRyan,"From cheeseheads to cheese curds, there’s nothing more Wisconsin than cheese. Happy #NationalCheeseDay🧀 to all Wisc… https://t.co/nr5L9GpW5t" +06/04/2018,Politicians,@SpeakerRyan,"The U.S. economy is roaring: +✔Lowest unemployment in half a century +✔Wages are ⬆️ +✔Consumer spending is ⬆️ +✔Consume… https://t.co/QAR3J9yP3J" +06/03/2018,Politicians,@SpeakerRyan,"RT @HouseGOP: ✓ Hiring more workers +✓ Increasing wages +✓ Delivering new or expanded benefits + +This is how #taxreform is changing the game i…" +06/02/2018,Politicians,@SpeakerRyan,RT @RepErikPaulsen: My op-ed in today's @DCExaminer: How tax reform brings opportunity to poor neighborhoods https://t.co/KtGj0KcMwX +06/01/2018,Politicians,@SpeakerRyan,"Oregon: The state has designated 86 #OpportunityZones, with business owners becoming excited about the opportunity… https://t.co/SL6cl1mYQT" +06/01/2018,Politicians,@SpeakerRyan,"Iowa: Officials are seeing a “waiting list” of potential investors for the state’s 62 #OpportunityZones, springing… https://t.co/xi049zWQYk" +06/01/2018,Politicians,@SpeakerRyan,"West Virginia: @WVGovernor says the state’s 55 #OpportunityZones continue ""our movement forward and the hope for br… https://t.co/9zaMIts7ft" +06/01/2018,Politicians,@SpeakerRyan,Michigan: Kalamazoo County contains 5 of the state’s 288 #OpportunityZones. County leaders believe these zones will… https://t.co/GOynyCJgYO +06/01/2018,Politicians,@SpeakerRyan,Massachusetts: Gloucester community officials are hopeful that its designated #OpportunityZones will attract invest… https://t.co/tUxn7Cl7Pf +06/01/2018,Politicians,@SpeakerRyan,Illinois: 327 #OpportunityZones throughout 85 counties. @GovRauner→ “These zones include some of the most underserv… https://t.co/afJfsmN46Y +06/01/2018,Politicians,@SpeakerRyan,North Carolina: 252 of its lowest-income areas have been designated as #OpportunityZones. This is great news for th… https://t.co/dQbNRn894t +06/01/2018,Politicians,@SpeakerRyan,"The American economy is in great shape. And thanks to #TaxReform, states and local communities will start to see th… https://t.co/4jV3obeJbH" +06/01/2018,Politicians,@SpeakerRyan,"RT @HouseSmallBiz: Some #FeelGoodFriday news to wake up to: US unemployment drops to 3.8%, matching its lowest point in half a century. The…" +06/01/2018,Politicians,@SpeakerRyan,"America is making its comeback. +➡️ Unemployment is dropping +➡️ Wages are rising https://t.co/95GuSMCZop" +05/30/2018,Politicians,@SpeakerRyan,"The People’s House is not slowing down. From #RightToTry to ensuring our veterans get the care they need, we’re mov… https://t.co/V2Zcbk4GcK" +05/30/2018,Politicians,@SpeakerRyan,Great news for these patients and their families→ #RightToTry is now the law of the land! https://t.co/FVRs6lyeap +05/30/2018,Politicians,@SpeakerRyan,"RT @WhiteHouse: Today President Trump signs S. 204, the “Right to Try Act” - watch live: https://t.co/EmsdctGWtd https://t.co/NWzQYfyBrb" +05/30/2018,Politicians,@SpeakerRyan,"Growing up, I spent my summers as a camp counselor at the YMCA’s Camp Manito-wish in Wisconsin. Enjoyed meeting wit… https://t.co/DcS0U5s6LF" +05/30/2018,Politicians,@SpeakerRyan,"RT @RepKevinBrady: #TaxReform is working for Texas families and Texas businesses, and the results speak for themselves. Check out the great…" +05/29/2018,Politicians,@SpeakerRyan,"And in the House: +→ Most significant pediatric cancer research bill in history: PASSED +→ Bill supporting federal pr… https://t.co/veXvd0WOnR" +05/29/2018,Politicians,@SpeakerRyan,"Did you miss this news? Congress sent 3 major bills to the @WhiteHouse last week: + +✔#RightToTry +✔Improving… https://t.co/ZZpy3mbAQ4" +05/29/2018,Politicians,@SpeakerRyan,RT @WaysandMeansGOP: Americans in 48 states are going to see lower utility bills this summer because of #TaxReform. Is your state on the li… +05/29/2018,Politicians,@SpeakerRyan,This is a remarkable chronicle of the achievements of the Asian Americans and Pacific Islanders who have served in… https://t.co/YnHKCsrIVp +05/29/2018,Politicians,@SpeakerRyan,"#OTD in 1848, Wisconsin became the 30th state to join the union. Happy Birthday to the Badger State! #OnWisconsin https://t.co/NMO9O8keYo" +05/28/2018,Politicians,@SpeakerRyan,Honored to host veterans and their families from Walter Reed at the Capitol for the annual #MemorialDay concert yes… https://t.co/eYwcpzF3Bt +05/28/2018,Politicians,@SpeakerRyan,"The blessings of freedom come at a dear cost. On #MemorialDay, we honor the men and women who gave the ultimate sac… https://t.co/95dAklPIhm" +05/27/2018,Politicians,@SpeakerRyan,"In our country, religious freedom is an unwavering right. Unfortunately, that’s not the case around the world. Welc… https://t.co/AiCKBW6J4Y" +05/26/2018,Politicians,@SpeakerRyan,"RT @RepHultgren: Today, I joined the House signing of legislation which was also signed into law by the President. In it are bipartisan ref…" +05/25/2018,Politicians,@SpeakerRyan,"RT @legionindc: We wear poppies in honor every servicemember who has died in the name of liberty, freedom and democracy. Honor the fallen;…" +05/25/2018,Politicians,@SpeakerRyan,RT @RepTenney: I attended the signing of S.2155 with @SpeakerRyan. Two pieces of my leg introduced to ease burdens on community financial i… +05/25/2018,Politicians,@SpeakerRyan,RT @DrPhilRoe: It was a privilege to join @SpeakerRyan as he sent the #VAMISSIONAct to @realDonaldTrump’s desk this morning. This bill is a… +05/25/2018,Politicians,@SpeakerRyan,RT @HouseCommerce: .@SpeakerRyan readies #RightToTry for @POTUS’ signature >> https://t.co/IhckMtgeAr +05/25/2018,Politicians,@SpeakerRyan,"✔Reforming the @DeptVetAffairs +✔#RightToTry +✔Financial reform to unleash our economy + +These were all promises made.… https://t.co/IZJAAyvx1Z" +06/30/2018,Politicians,@CarterCenter,Want to hear about the latest activities at The Carter Center? Follow us on social media and… https://t.co/n06lkmqQ66 +06/28/2018,Politicians,@CarterCenter,"Meet Kate Orji, a community-directed distributor in Umudurudu, Nigeria since 1995. She distributes drugs to help fi… https://t.co/986fh7CDhH" +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: From 1.1million doses in 1999 to >740million in 2018 – how do we do it? #20years of #Stewardship of donated drugs to #beat… +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: Read about @Pfizer commitment to #endtrachoma. Continuing the Fight to Eliminate Trachoma https://t.co/VeNWxWt1IY #PfizerCo… +06/27/2018,Politicians,@CarterCenter,RT @ITIatlanta: WATCH: 20 years of working to eliminate #trachoma made possible by #powerfulpartnerships! Find out how we’ve worked with pa… +06/27/2018,Politicians,@CarterCenter,Looking for a unique gift? This gold and ruby jewelry set will be available for auction on June 30 and all proceeds… https://t.co/Jw8IPB1r0p +06/26/2018,Politicians,@CarterCenter,"In celebration of @ITIatlanta’s #20thanniversary, learn about 4 reasons for optimism in the work to #endtrachoma, t… https://t.co/g3JSkcuAXF" +06/26/2018,Politicians,@CarterCenter,This Native American inspired quilt by artist Suzanne McMahon of North Carolina is available for auction June 30. T… https://t.co/04xitbXxZB +06/26/2018,Politicians,@CarterCenter,"RT @ITIatlanta: Partners gather in @DecaturATL this week for the +18th #trachomaexpertcommittee meeting to #beatNTDs #endtrachoma +#HumansAga…" +06/25/2018,Politicians,@CarterCenter,"Meet Magdalena Leon, an information liaison for the Carter Center's Global Access to Information Program who trave… https://t.co/M00thoc6Nl" +06/25/2018,Politicians,@CarterCenter,"Thanks to Liberia's 1st National Mental Health Policy, a new Mental Health Unit was just established at a hospital.… https://t.co/jdkkg1aLT6" +06/24/2018,Politicians,@CarterCenter,"Ever heard of an Omani khanjar? This traditional dagger, once gifted to President Carter, is available for auction… https://t.co/irIglpi2Cf" +06/23/2018,Politicians,@CarterCenter,"Want to walk a mile in Jimmy Carter’s shoes? These running shoes, autographed by Jimmy Carter, are available at auc… https://t.co/j3p33VJTlG" +06/22/2018,Politicians,@CarterCenter,"When the problems seem too big to tackle, remember that small victories matter. ""We don’t shy away from big challen… https://t.co/Xo3okwnojX" +06/22/2018,Politicians,@CarterCenter,RT @CDCGlobal: #DYK CDC started the #Guinea #worm Eradication Program and is still a @WHO Collaborating Center? Through unique partnerships… +06/22/2018,Politicians,@CarterCenter,RT @NYCuratrix: Campbell giving shout out to Jimmy Carter and @CarterCenter for their great efforts in distributing ivermectin to treat onc… +06/21/2018,Politicians,@CarterCenter,"What’s almost as good as Georgia #BBQ? These aprons, signed by President and Mrs. Carter, available at The Carter C… https://t.co/PVorv1rrJZ" +06/21/2018,Politicians,@CarterCenter,@mapintl @stevenstirling Congratulations! +06/21/2018,Politicians,@CarterCenter,RT @Sightsavers: Hope in sight: ending the infection that scrapes eyes blind. https://t.co/4eNy12njdS Via @CNN #beatNTDs +06/20/2018,Politicians,@CarterCenter,@namigeorgia @GovernorDeal @NotOKApp @BrookhavenGA_PD @GYandura From @DrEveByrd: We congratulate @GovernorDeal on h… https://t.co/ce2l671ShL +06/20/2018,Politicians,@CarterCenter,RT @NAMICommunicate: The House is voting TODAY on #HR6082. This bill will keep strong patient protections in place while allowing for bette… +06/20/2018,Politicians,@CarterCenter,https://t.co/lZFwA4aZz8 +06/20/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: Reaching #Refugees: Leaving no one behind in the fight against #NTDs→ New blog from @RTI_Intl @slisabackers on our work… +06/20/2018,Politicians,@CarterCenter,"The NY Declaration for #Refugees & Migrants expresses political will to save lives, protect rights & share respons… https://t.co/9XDB1Pr4GH" +06/18/2018,Politicians,@CarterCenter,Statement from former U.S. First Lady Rosalynn Carter on children separated from their parents at the border: https://t.co/WVg91SWutl +06/18/2018,Politicians,@CarterCenter,"2018 Carter Center Auction items are here! An original oil painting by Jimmy Carter, a lock of JFK's hair, a photog… https://t.co/adDZtApTbO" +06/17/2018,Politicians,@CarterCenter,"On #FathersDay and every day, we honor the dads and all men who help bring peace, health, and happiness to the worl… https://t.co/NxUFf5E6oX" +06/15/2018,Politicians,@CarterCenter,The @WHO Malaria Elimination Oversight Committee (chaired by Dr. Frank Richards of The Carter Center) celebrating t… https://t.co/wsEZYCL1zn +06/15/2018,Politicians,@CarterCenter,@hussmanjp @KellyCTrachoma Thank you so much @hussmanjp! We greatly appreciate your support & assistance to help t… https://t.co/g2uzfr2pwY +06/14/2018,Politicians,@CarterCenter,Want to be a Carter Center intern? June 15 (TOMORROW) is the deadline to apply for a fall internship. Please share!… https://t.co/pJedS7ksTE +06/14/2018,Politicians,@CarterCenter,Ghana is the FIRST sub-Saharan African country to be validated by @WHO for eliminating trachoma as a public health… https://t.co/lzaBiwLBz4 +06/14/2018,Politicians,@CarterCenter,"Carter Center Congratulates Ghana for Triumph over Trachoma + +""I applaud Ghana's dedicated trachoma health workers f… https://t.co/CbvIjC2nDi" +06/14/2018,Politicians,@CarterCenter,Noncommunicable Diseases: We have had ENOUGH. It’s time to move from commitment to action. #BeatNCDs… https://t.co/VaWU04F73m +06/13/2018,Politicians,@CarterCenter,Check out the new @VOANews @Africa54Tv story today on the hard work and progress by Liberia's govt. & hundreds of… https://t.co/QEh4RyvkUU +06/13/2018,Politicians,@CarterCenter,RT @Sightsavers: Ghana has eliminated trachoma! https://t.co/rEfXjQ0GuF https://t.co/uvgtE79lzb +06/13/2018,Politicians,@CarterCenter,RT @NTDworld: @WHO congratulates Ghana for eliminating trachoma & freeing millions from suffering and blindness https://t.co/iFJ95WYOn8 The… +06/13/2018,Politicians,@CarterCenter,The Carter Center strongly condemns the violent retaliation and excessive use of force against demonstrators in… https://t.co/KBsfHNkPgw +06/12/2018,Politicians,@CarterCenter,RT @lisarotondo: Fantastic announcement from @pfizer today at #DevexWorld We are reinvigorated in the fight to #EndTrachoma https://t.co/… +06/12/2018,Politicians,@CarterCenter,"The Carter Center has appointed 20 new members to its Board of Councilors, bringing total membership to 216. https://t.co/tTiaLyjHIg" +06/12/2018,Politicians,@CarterCenter,Great news! @pfizer Announces Extension of Zithromax® Antibiotic Donation Program through 2025 to Help Eliminate Wo… https://t.co/2ABNI2mo1X +06/12/2018,Politicians,@CarterCenter,@jgm41 @PointsofLight @nmbush Happy Birthday to President Bush! #41 +06/11/2018,Politicians,@CarterCenter,"The Carter Center's 2018 summer interns had a wonderful trip to Plains, Ga., over the weekend. They saw the boyhood… https://t.co/oASfb7qyEI" +06/10/2018,Politicians,@CarterCenter,Know someone who needs a rewarding internship experience? The next Carter Center INTERNSHIP DEADLINE is June 15! Ap… https://t.co/7N9VY9BRWN +06/08/2018,Politicians,@CarterCenter,"RT @jaclyncosgrove: For reporters writing about suicide, please take a moment to read over recommendations on https://t.co/UJ5PrzQ6Kv + +Also…" +06/08/2018,Politicians,@CarterCenter,Do you know the warning signs & risk factors for suicide? Learn what to look for & what to do when someone is in cr… https://t.co/Zfz6kNxSPe +06/08/2018,Politicians,@CarterCenter,RT @PDHgt: .@PDHgt @JordanRodas firma convenio con @CarterCenter para ampliar y fortalecer la colaboración conjunta promoviendo el derecho… +06/08/2018,Politicians,@CarterCenter,RT @sandykjohnson: Anthony Bourdain. Kate Spade. Words matter when reporting on #suicide. Here are some journalist guidelines from @RGPalpa… +06/07/2018,Politicians,@CarterCenter,RT @DrEveByrd: Great to spend time this week with our Colombia-based @carterfellows partner Universidad de La Sabana. Journalism fellows ar… +06/07/2018,Politicians,@CarterCenter,“Tomorrow they will come back and say the thorns have gone” – Surgeon Henry from #uganda describes the joy of pati… https://t.co/wVR7nCVEEQ +06/06/2018,Politicians,@CarterCenter,NEW on the @CarterCenter podcast: Mental health expert and @RutgersU professor & @CarterFellows journalist Dr. Caro… https://t.co/xMbyeqFxKY +06/06/2018,Politicians,@CarterCenter,RT @ssaxenageneva: Levels of public expenditure on #MentalHealth are very low. Nobody should be missing out on mental health care because o… +06/05/2018,Politicians,@CarterCenter,"RT @AmbKawar: The research & work by @CarterCenter was the gist of my meeting today with CEO Mary Ann Peters, VP @JordanDRyan of Peace Prog…" +06/05/2018,Politicians,@CarterCenter,Carter Center Syria Mapping Summary April 25- May 30: includes updates on the evacuation of southern #Damascus and… https://t.co/aloqD7KtRC +06/04/2018,Politicians,@CarterCenter,1.5 billion people around the world are affected by #NTDs. Take part in the @RSTMH and @NTD_NGOs photo contest and… https://t.co/qOUDMQ0uMr +06/04/2018,Politicians,@CarterCenter,"RT @ncdalliance: 🌏🏓🏃‍♀️🏊‍♂️💃🌎🚵‍♂️👩‍🌾🚶‍♂️⚽️🌍 +Launching today: @WHO's +Global Action Plan on #PhysicalActivity: +More people active for a healt…" +06/03/2018,Politicians,@CarterCenter,"Since 2006, The Carter Center has worked at the invitation of the government of Liberia to help educate citizens on… https://t.co/4I3RzQ8v77" +06/01/2018,Politicians,@CarterCenter,The Carter Center's Public Health Training Initiative aims to increase quality health care in rural areas to meet t… https://t.co/iXiYx0UhiW +06/01/2018,Politicians,@CarterCenter,@CarterLibrary @OurPresidents We love this! Lots of great photos on the #ArchivesRoadTrip hashtag today. Check them out! +06/01/2018,Politicians,@CarterCenter,RT @NTDworld: Eradicating #guineaworm disease- Chad to integrate all approaches to break transmission in humans and in animals with support… +06/01/2018,Politicians,@CarterCenter,"RT @FoegeAward: Global leaders honor Jimmy and Rosalynn Carter: Both over 90, they’re still helping the world’s poor https://t.co/KFs26WjXiU" +06/01/2018,Politicians,@CarterCenter,"RT @UBSoptimus: With the help of our partner @CarterCenter, Liberia is on course to reach its goal of expanding access to mental health car…" +05/31/2018,Politicians,@CarterCenter,Marginalized youth are often ripe for extremist recruitment. The Carter Center's media training & workshops are hel… https://t.co/6KeGJ4uMpk +05/30/2018,Politicians,@CarterCenter,Dr. Janice Cooper shares progress made in the Center's Mental Health Program in Liberia. With support from the govt… https://t.co/TZvn7lt2rS +05/29/2018,Politicians,@CarterCenter,"@MariguKaranja @SenatorCarter Hi, thanks for your interest. Please refer to this page on how to get involved with e… https://t.co/JH2r7Fn6I7" +05/29/2018,Politicians,@CarterCenter,"BAMAKO, MALI - Le Centre Carter, qui est l’Observateur indépendant de la mise en œuvre de l'Accord pour paix au Mal… https://t.co/BYv1FvW45M" +05/29/2018,Politicians,@CarterCenter,"The Carter Center, which is serving as Independent Observer of the implementation of the 2015 Agreement on Peace an… https://t.co/EpoqBNSCmW" +05/29/2018,Politicians,@CarterCenter,"RT @qejubileetrust: ""We can stamp out the disease & no one should be left behind, no matter where they come from"" +On #AfricaDay, @Sightsave…" +05/29/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: #Mali Peace Agreement Monitoring Committee, which includes #AU, ECOWAS, UN, EU, France, USA, UK, Algeria, Burkina Fas…" +05/28/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: Malian Parties, Signatories to Peace Agreement, need to further speed-up efforts to implement the Accord; delays in imp…" +05/28/2018,Politicians,@CarterCenter,RT @AU_PSD: Bamako: Many good things hv happened in #Mali since Peace Agreement was signed in 2015 e.g. armed conflict btw Govt & Rebel Gro… +05/28/2018,Politicians,@CarterCenter,"RT @AU_PSD: Bamako: The @CarterCenter, Independent Observer for implementation of the Algiers Agreement for Peace & Reconciliation in #Mali…" +05/28/2018,Politicians,@CarterCenter,The Carter Center has observed 107 elections in 39 countries and continues to develop monitoring standards and tool… https://t.co/w3gWPh3egV +05/28/2018,Politicians,@CarterCenter,"RT @abdoulayekn1: "" Le comité de suivi de l'accord (CSA) n'assume pas toutes responsabilités que lui confie l'accord, notamment la supervis…" +05/28/2018,Politicians,@CarterCenter,"RT @SangareSoule: L'observateur Indépendant de l'Accord publie son premier rapport cet après-midi à #SheratonHotel de Bamako + +Le @CarterCe…" +05/25/2018,Politicians,@CarterCenter,"On #AfricaDay, we sincerely thank our partners, volunteers, and donors for working with us to make a brighter futur… https://t.co/D6Jfuh757h" +05/25/2018,Politicians,@CarterCenter,"Daesh, the terrorist group also known as ISIS, has lost 98 % of the territory it once held in Syria & Iraq. This go… https://t.co/L9w3HjIkfo" +05/24/2018,Politicians,@CarterCenter,Los Amigos de la Carta Democrática Interamericana exhortan al estado venezolano para que restaure el orden constitu… https://t.co/LR7HQSFgFu +05/24/2018,Politicians,@CarterCenter,The Friends of the Inter-American Democratic Charter Call on Venezuelan Government to Restore Constitutional Order… https://t.co/uQLH6FTHwJ +05/24/2018,Politicians,@CarterCenter,RT @RMinghui: .@WHO DG @DrTedros called upon countries and partners for great efforts in eradicating Guinea-Worm Disease at the annual info… +05/24/2018,Politicians,@CarterCenter,RT @DrAxelrod_WHO: We hear an emerging consensus to integrate #mentalhealth into the scope of the third High-level Meeting on NCDs. We hope… +05/24/2018,Politicians,@CarterCenter,Carter Center CEO Mary Ann Peters & colleagues Jonathan Stonestreet & Greg Kehailia discuss democracy in Myanmar. (… https://t.co/W3WCngjCT7 +05/23/2018,Politicians,@CarterCenter,"The Carter Center talks peace in Myanmar. LEFT Carter Center CEO Mary Ann Peters & staff Jonathan Stonestreet, Greg… https://t.co/xNCyY9aiqB" +05/23/2018,Politicians,@CarterCenter,RT @EmoryUniversity: Emory is proud to celebrate 35 years of partnership with @CarterCenter to address some of the world's most pressing is… +05/22/2018,Politicians,@CarterCenter,"President Carter recently met with former U.S. Ambassador Bisa Williams, leader of the Center’s mission as official… https://t.co/XYui7IICvm" +05/21/2018,Politicians,@CarterCenter,"Great news for children in Africa! A Carter Center epidemiologist in Niger is a co-author of a study, published in… https://t.co/UoCdGDQvRr" +05/21/2018,Politicians,@CarterCenter,RT @WHO: LIVE from the World Health Assembly: @DrTedros addresses the Assembly #WHA71 https://t.co/qm3ltJinMl +05/21/2018,Politicians,@CarterCenter,RT @alisonbrunier: Great to see WHO's #mentalhealth team out in force for our #HealthForAll event today #LetsTalk and #LetsWalk @ssaxenagen… +05/21/2018,Politicians,@CarterCenter,"RT @KellyCTrachoma: So cool!! +@CarterCenter https://t.co/5iDbecUjiW" +05/18/2018,Politicians,@CarterCenter,"New on The Carter Center podcast: Even though the Democratic Republic of Congo is rich in natural resources, its pe… https://t.co/A6hquqw7GR" +05/18/2018,Politicians,@CarterCenter,RT @kristiwooten: Jimmy Carter and Bono get nice shout outs from @taianderson in this story about U2's fascinating intersections with Atlan… +05/18/2018,Politicians,@CarterCenter,RT @RTI_INTL_DEV: Lymphatic filariasis has been eliminated as a public health problem in 11 countries. Amazing #beatNTDs progress! Learn ho… +05/17/2018,Politicians,@CarterCenter,"After a civil war & Ebola crisis, @CarterCenter worked w Liberia's govt. & partners to ramp up mental health resour… https://t.co/NkFW2E9zoH" +05/17/2018,Politicians,@CarterCenter,"Thanks. We like it, too! https://t.co/Y1XKL0clDv" +05/17/2018,Politicians,@CarterCenter,"RT @CDC_NCBDDD: An #inclusive world includes digital accessibility. This Global Accessibility Awareness Day, think about how you can make y…" +05/16/2018,Politicians,@CarterCenter,@MariaThackerG We are proud to be involved! +05/16/2018,Politicians,@CarterCenter,@DrAxelrod_WHO @DrTedros @etiennekrug @DougBettcher @MikeBloomberg @BloombergDotOrg @IlonaKickbusch @ncdalliance… https://t.co/R9PrzpiaQk +05/16/2018,Politicians,@CarterCenter,RT @NTD_SC: No longer will #NTDs prevent children from going to school or their parents from earning a living. We are winning the fight aga… +05/15/2018,Politicians,@CarterCenter,"Though the Democratic Republic of Congo has more than half of the global supply of cobalt, its people are among the… https://t.co/46o25Q0wfI" +05/15/2018,Politicians,@CarterCenter,"""For business leaders & corporations, investing in ending #NTDs is probably the highest & most measurable return yo… https://t.co/XEIKonvXsd" +05/14/2018,Politicians,@CarterCenter,Great to have Dr. @sandrogalea from @BUSPH here last week to talk at @CarterLibrary. What should we talk about when… https://t.co/Mhwh3ptitH +05/14/2018,Politicians,@CarterCenter,RT @qejubileetrust: On #MentalHealthAwarenessWeek we are celebrating the work of @QueensLeaders in the field of #mentalhealth. Hauwa runs a… +05/14/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: #NTDs leaders coming together for open discussion with #Ethiopia's new health minister. Great to keep #beatNTDs progress… +05/13/2018,Politicians,@CarterCenter,RT @aljalilauae: #UAE @CarterCenter @CarterFellows Amna Al Haddad participated in the #DarknessIntoLight global walk today to help spread a… +05/13/2018,Politicians,@CarterCenter,"RT @ITIatlanta: On #mothersday, we celebrate #women around the world working to #endtrachoma #beatNTDs #womeninglobalhealth #happymothersd…" +05/13/2018,Politicians,@CarterCenter,Sending #HappyMothersDay wishes to moms and thanks 🙏 to all of those working to keep moms and children healthy and… https://t.co/vr0LssyOFD +05/12/2018,Politicians,@CarterCenter,"On #MothersDay, you can honor the special women in your life with a unique gift that will bring hope to the world's… https://t.co/YmdoRVpJd9" +05/11/2018,Politicians,@CarterCenter,RT @kennedysatcher: Commissioner Fitzgerald illustrates a 10 year journey (2009 -2019) of improving behavioral health care in Georgia @DBHD… +05/11/2018,Politicians,@CarterCenter,"“I have worked on mental health issues for 47 years, and I plan to make it to 50.” Rosalynn Carter today. Congratul… https://t.co/ljDi89xlug" +05/11/2018,Politicians,@CarterCenter,RT @mhagadvocacy: MH LEGACY. So proud that 3 of 4 panelist at #GaMentalHealth18 Forum have steered the @MHAofGeorgia ship. #amazingleader… +05/11/2018,Politicians,@CarterCenter,Project aware by @samhsagov is de-stigmatizing mental health disorders among youth. #GaMentalHealth18 https://t.co/hsdtzXkt6E +05/11/2018,Politicians,@CarterCenter,RT @namigeorgia: Dante McKay of @DBHDD discusses school-based mental health in Georgia #GaMentalHealth18 @CarterCenter https://t.co/ZzvZBrT… +05/11/2018,Politicians,@CarterCenter,Number one challenge is workforce shortage. #GaMentalHealth18 https://t.co/A9Kbwg12NG +05/11/2018,Politicians,@CarterCenter,We have accomplished this together in Georgia! Thanks also to Gov. Deal for leadership and state representatives.… https://t.co/s2u0g9nfrQ +05/11/2018,Politicians,@CarterCenter,Housing first model and expansion of crisis services are underway. #GaMentalhealth18 https://t.co/K6TKjHIxWD +05/11/2018,Politicians,@CarterCenter,"RT @CDC_NCBDDD: We work to understand the policies that affect access to children’s mental health care, like behavioral health integration.…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: “We have come a long way, but there is much more to do. It starts with early intervention,” Cynthia Wainscott, @DBHDD Regi…" +05/11/2018,Politicians,@CarterCenter,"Judy Fitzgerald, commissioner of DBHDD, gives context of how broken the system was in 2009. “That’s not who we are… https://t.co/ZE6HnFJeNz" +05/11/2018,Politicians,@CarterCenter,Jewell Gooding gives an update of the work that is still needed in Georgia for compliance with the state settlement… https://t.co/9w6npDsizJ +05/11/2018,Politicians,@CarterCenter,@namigeorgia We appreciate you @namigeorgia ! +05/11/2018,Politicians,@CarterCenter,Early interventions are needed to relieve the pressure on the mental health crisis system. #GaMentalHealth18 https://t.co/apV7qE5YzZ +05/11/2018,Politicians,@CarterCenter,The state of Georgia is spending $314 million more on behavior health services than in 2011. #GaMentalHealth18 +05/11/2018,Politicians,@CarterCenter,Big news from settlement agreement is the transition into homes. #GaMentalHealth18 https://t.co/uKkgzDAlHj +05/11/2018,Politicians,@CarterCenter,Cynthia Wainscott gives an update of progress made from the settlement agreement. example: now have 19 crisis apart… https://t.co/7wub3wdjq7 +05/11/2018,Politicians,@CarterCenter,What happens with the Georgia / DOJ settlement on June 30? Work continues. The 5 year agreement has been extended s… https://t.co/l16LCv9egQ +05/11/2018,Politicians,@CarterCenter,"RT @CraigLucie: This is what she told the crowd when I was at the @CarterCenter “We still have much work to do.” Congratulations, First Lad…" +05/11/2018,Politicians,@CarterCenter,"RT @DrAxelrod_WHO: Have your say on the actions that world leaders should take to #beatNCDs +A web-based public consultation on the draft re…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: ""Evidence suggests services become more affordable with parity"" Marvin So, M.P.H., @CDCgov #GaMentalHealth18 @CarterCenter…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: ""The vast majority of GA does not have child and adolescent psychiatrics"" Joseph Holbrook, Ph.D., @CDCgov #GaMentalHealth1…" +05/11/2018,Politicians,@CarterCenter,"RT @namigeorgia: 440,000 GA children with a mental, behavioral, or developmental disorder; insufficient # of healthcare providers // Joseph…" +05/11/2018,Politicians,@CarterCenter,RT @apadiv18: Congratulations to Mrs. Carter @CarterCenter who was honored with a presidential citation from Past President Puente @AEPuent… +05/11/2018,Politicians,@CarterCenter,RT @mdouglas1313: Love that #GAMentalHealth18 kicks off with @CDC_NCBDDD presentation on how laws impact health ❤️🤓 #publichealthlaw #phlr… +05/11/2018,Politicians,@CarterCenter,The panel with CDC on science and policies with families with young children #GAMentalHealth18 https://t.co/Kqe0O8NrrL +05/11/2018,Politicians,@CarterCenter,https://t.co/5rtmCr6iPv +05/11/2018,Politicians,@CarterCenter,Getting ready to livestream the #GaMentalHealth18 Forum. Follow along here. https://t.co/PQeqyffmei +05/10/2018,Politicians,@CarterCenter,@samhsagov A question from @DrEveByrd @CarterCenter for #HeroesofHope. The Carter Center works with juvenile court… https://t.co/Vwf4SZiQtA +05/10/2018,Politicians,@CarterCenter,RT @samhsagov: Starting soon: Paolo del Vecchio will take over SAMHSA’s Twitter handle and cover tonight's #HeroesofHope event live. #Menta… +05/10/2018,Politicians,@CarterCenter,"This will be an important event on children's #mentalhealth. Please tune in and learn about interventions, caregivi… https://t.co/g9higCRXOw" +05/10/2018,Politicians,@CarterCenter,"RT @ncdalliance: Health promoting prescriptions - win-win ways to reduce #NCDs! + +Doctors in the UK are prescribing social activities to fig…" +05/10/2018,Politicians,@CarterCenter,"RT @MichelleNunn: So inspired to celebrate the #FoegeAward, the tremendous work of @MAPintl and a lifetime of extraordinary service by Rosa…" +05/10/2018,Politicians,@CarterCenter,RT @GlobalHealthOrg: #WHA71 events are now OPEN to RSVP! Check out our special events calendar to get engaged with #globalhealth partners a… +05/10/2018,Politicians,@CarterCenter,https://t.co/gENPrRzgis +05/10/2018,Politicians,@CarterCenter,"RT @TedTurnerIII: I was lucky enough to attend this great event last night honoring my good friends, President and Mrs. Carter, for their t…" +05/10/2018,Politicians,@CarterCenter,Distinguished group of health leaders on stage (and in the room). #FoegeAward https://t.co/pdtwQ72QTl +05/10/2018,Politicians,@CarterCenter,Good to hear about the #GlobalHealthATL initiative from Kornelius Bankston of Metro Atlanta Chamber at @FoegeAward https://t.co/7gHRuZxeY7 +05/10/2018,Politicians,@CarterCenter,"When @drsanjaygupta asks Dr. Bill Foege about “saving more lives than any other man in the world,” Dr. Foege says i… https://t.co/R7MMOq1dkY" +05/10/2018,Politicians,@CarterCenter,You cannot use the same approach to eradicate polio and smallpox. - Dr. Bill Foege #FoegeAward +05/10/2018,Politicians,@CarterCenter,Mental health champion Rosalynn Carter thanks @mapintl for their Liberia mental health support and for the… https://t.co/WImD6rEUv2 +05/10/2018,Politicians,@CarterCenter,Map Intl. is collecting donations tonight to help the @CarterCenter mental health work in Liberia #FoegeAward… https://t.co/TJ12RO2tmu +05/10/2018,Politicians,@CarterCenter,"RT @mapintl: Thank you, Ted Turner for joining us as one of the Honorary Co-chairs for the @FoegeAward this evening. #FoegeAward #grateful…" +05/10/2018,Politicians,@CarterCenter,President Carter receives @FoegeAward for Global Health #FoegeAward https://t.co/etAVruvGRy +05/09/2018,Politicians,@CarterCenter,"Good to see @CARE CEO Michelle Nunn, photographed here with Dr Janice Cooper who heads up @CarterCenter’s Liberia M… https://t.co/87oLgKMQ7W" +05/09/2018,Politicians,@CarterCenter,Dr. @drsanjaygupta is moderating the Bill @FoegeAward dinner tonight. Map Intl. is hosting at @delta Museum. Watch… https://t.co/fI6M4y0NYz +05/09/2018,Politicians,@CarterCenter,Carter Center CEO Mary Ann Peters mentions her gratitude to @mapintl for their partnership to bring medicine to Lib… https://t.co/Pd65zSCpn5 +05/09/2018,Politicians,@CarterCenter,Watch TONIGHT on Facebook at 7 pm ET as @mapint presents the Dr. Bill @FoegeAward to President & Mrs. Carter. Addit… https://t.co/Sf3Mp06lfq +05/09/2018,Politicians,@CarterCenter,"RT @mapintl: MAP International will honor President Jimmy and Mrs. Rosalynn Carter, co-founders of the @CarterCenter, at the Dr. Bill @Foeg…" +05/08/2018,Politicians,@CarterCenter,"Sometimes, something as simple as a radio message can change lives. Read what this Liberia woman did after hearing… https://t.co/r5tICFNWih" +05/08/2018,Politicians,@CarterCenter,RT @NTDworld: Despite war&widespread destruction-a ray of hope as ≃450 000 Yemenis get treated in the country's 1st #trachoma mass treatme… +05/08/2018,Politicians,@CarterCenter,May 10 is Children's #MentalHealthAwareness Day. Watch a live event on children impacted by trauma and recommendati… https://t.co/Uz5ioP6901 +05/07/2018,Politicians,@CarterCenter,RT @GGHAlliance: Carter Center Mental Health Forum to Address Policy in Georgia and Children’s Issues https://t.co/HFsuRSQdNf @CarterCenter +05/07/2018,Politicians,@CarterCenter,"The @CarterCenter is looking and women, violence, & elections. “We’re trying to do a better job of making sure we’r… https://t.co/PIim6jSvDn" +05/07/2018,Politicians,@CarterCenter,RT @aljalilauae: #UAE @CarterFellows @ImanBenChaibah explores the measures that universities can take to better manage their students’ ment… +05/05/2018,Politicians,@CarterCenter,Ethiopia's top notch laboratory is key in the river blindness fight. “It’s right on the campus of the Ministry of H… https://t.co/8gWBsHRVq5 +05/05/2018,Politicians,@CarterCenter,@jgm41 @GeorgeHWBush @MethodistHosp Great news and our very best wishes for President @GeorgeHWBush +05/04/2018,Politicians,@CarterCenter,"RT @alisonbrunier: #MentalHealth ‘neglected issue’ but key to achieving Global Goals, say UN chiefs https://t.co/QPMsdV7x4o #NCDs" +05/04/2018,Politicians,@CarterCenter,"Check out our final report for the October 3, 2018 Primary and December 12, 2018 General Elections in Cheyenne and… https://t.co/fEGGaOnDYN" +05/03/2018,Politicians,@CarterCenter,RT @PubHealth_NG: @Fmohnigeria's Director of Public Health Dr Evelyn Ngige formally opens the 20th session of @NTDnigeria steering committe… +05/03/2018,Politicians,@CarterCenter,RT @CarterLibrary: Tonight at 7...join us for Stuart Eizenstat and the definitive history of The Carter Administration. His book is Jimmy C… +05/03/2018,Politicians,@CarterCenter,"On #WorldPressFreedomDay, we express our sincere gratitude for the reporters who cover our peace and health work ac… https://t.co/Pq2N3leFvA" +05/03/2018,Politicians,@CarterCenter,RT @FoegeAward: MAP would like to thank @SanofiUS for their Silver level sponsorship of the upcoming Bill Foege Global Health Awards. This… +05/03/2018,Politicians,@CarterCenter,"RT @TFGH: ""C​an we do no harm?"" asks our CEO Dr. Ross when assessing new program opportunities and he posed this question to Dr. Lavery @Em…" +05/03/2018,Politicians,@CarterCenter,RT @RTIfightsNTDs: We’re winning the fight against #NTDs! Join us in celebrating the global progress to control and eliminate these disease… +05/02/2018,Politicians,@CarterCenter,Read our blog to see how two @CarterFellows creatively used social media skills to engage their followers & extend… https://t.co/WAWS1ZPO2L +05/02/2018,Politicians,@CarterCenter,@ssaxenageneva @NIMHgov @WHO Congratulations! #MentalHealthMonth +04/30/2018,Politicians,@CarterCenter,"The Carter Center works in the Middle East, North Africa, and Liberia to prevent violent extremism, build sustainab… https://t.co/zh39MbkB01" +04/30/2018,Politicians,@CarterCenter,"RT @HamptonStall: TCC April 19-25 update includes three region maps dated April 25. These are (from left to right) Daraa area, Rif Damascus…" +04/29/2018,Politicians,@CarterCenter,"As we look ahead to #MentalHealthAwareness month in May, check out this updated #Parity website on insurance for me… https://t.co/kA3OsTTdux" +04/28/2018,Politicians,@CarterCenter,"Join tonight for a panel discussion with @TFGH CEO, Dr. Dave Ross, @AgnesScott Pres., Dr. Elizabeth Kiss, and… https://t.co/3QkGzFlwUJ" +04/27/2018,Politicians,@CarterCenter,"""After numerous delays, the multinational team of investigators from the OPCW finally gained access to the area of… https://t.co/Dd2cOa0L7z" +04/27/2018,Politicians,@CarterCenter,Carter Center health staffers were honored to meet with the Prime Minister of Haiti today. The Center works with th… https://t.co/3Xu6q0q2ou +04/27/2018,Politicians,@CarterCenter,"Check out our new ""Inclusive Approaches to Preventing Violent Extremism"" report https://t.co/dfUx90CKVV" +04/26/2018,Politicians,@CarterCenter,"RT @aljalilauae: مقالاً جديداً بقلم ناهد النقبي، الحاصلة على منحة #مؤسسة_الجليلة لزمالة برنامج روزالين كارتر للصحة النفسية بعنوان""مجلس وطن…" +04/26/2018,Politicians,@CarterCenter,RT @Sightsavers: Exciting find in @NEJM: Azithromycin could save children’s lives! Great to see so many partners involved in this groundbre… +04/26/2018,Politicians,@CarterCenter,RT @HamptonStall: .@CarterCenter #Syria nationwide map from upcoming weekly update. Map is dated April 25 and arrows represent fronts of ad… +04/26/2018,Politicians,@CarterCenter,"Great news about infant mortality and a drug used for trachoma. + +https://t.co/dmi7VZGZ5Y" +04/26/2018,Politicians,@CarterCenter,A groundbreaking study in Africa will have a significant impact on public health and child mortality. “This is a pu… https://t.co/1zoN4ggKGw +04/26/2018,Politicians,@CarterCenter,"We are very sad to hear about the passing of @BrettNorman, a @Politico reporter and 2015/16 Rosalynn Carter Mental… https://t.co/jmrpf4MfLv" +04/26/2018,Politicians,@CarterCenter,"600M+ doses of Azithromycin have been distributed in the fight to end #trachoma worldwide. And now, exciting @NEJM… https://t.co/DdsGdIOj9F" +04/26/2018,Politicians,@CarterCenter,"Promising news in @NEJM: in high-mortality settings, distributing the #trachoma drug Azithromycin reduced deaths am… https://t.co/kGzmoOOqUv" +04/25/2018,Politicians,@CarterCenter,The verdict is in: We are #ReadytoBeatMalaria. Carter Center staff joined partners & talented musicians in #Haiti t… https://t.co/EnC3wbTvuS +04/25/2018,Politicians,@CarterCenter,"RT @SkollFoundation: At #SkollWF, Jimmy Carter reminded us that to achieve lasting global peace, we must look to the Universal Declaration…" +04/25/2018,Politicians,@CarterCenter,"On #WorldMalariaDay, Dr. Jean Frantz Lemoine in Haiti’s federal Ministry of Health is grateful for new ways and mus… https://t.co/3zlAQOL4QH" +04/25/2018,Politicians,@CarterCenter,"RT @CDCGlobal: On this #WorldMalariaDay, CDC Global & many #MalariaZero partners are on the verge of eliminating #malaria from Hispaniola,…" +04/25/2018,Politicians,@CarterCenter,RT @CDCFound: #ReadyToBeatMalaria with targeted interventions in the Grand Anse Department in Haiti. https://t.co/dGGjbUcxVB #MalariaZero #… +04/25/2018,Politicians,@CarterCenter,“We have the tools today to beat malaria in Hispaniola and know that the benefits of creating a malaria-free Caribb… https://t.co/EmIWjtYL7f +04/25/2018,Politicians,@CarterCenter,"RT @MalariaNoMore: We can #endmalaria in the Caribbean by 2020, but continued investment from donors and commitment is essential. Join #Mal…" +04/25/2018,Politicians,@CarterCenter,"For #WorldMalariaDay, we partnered w the Haitian Ministry of Public Health & Population, as part of the Malaria Zer… https://t.co/knamTsoOcf" +04/25/2018,Politicians,@CarterCenter,"RT @ChelseaClinton: On #WorldMalariaDay, a helpful thread from @WHO on the disease and what more we must do to defeat this scourge that sti…" +04/25/2018,Politicians,@CarterCenter,It’s #WorldMalariaDay! We’re honored to join Haiti’s First Lady and more than 300 govt. & civil society representat… https://t.co/7youTQpTE0 +04/24/2018,Politicians,@CarterCenter,We are pleased that #Guineaworm warrior Dr. Don Hopkins is on the list of The World's 50 Greatest Leaders from… https://t.co/uESaZWU769 +04/24/2018,Politicians,@CarterCenter,Mental Health Program Director @DrEveByrd attended the recent Rally to Prevent Suicide in Wash. D.C. Attendees incl… https://t.co/T81LLP2V85 +04/04/2018,Politicians,@farenthold,"This morning the Westside Business Association held their monthly breakfast. Today, Frost Bank presented the differ… https://t.co/sZEOMqN7bs" +04/01/2018,Politicians,@farenthold,"From my family to yours, Happy Easter! We wish you a blessed holiday with your family and loved ones. https://t.co/ZNMbq8OTzw" +03/28/2018,Politicians,@farenthold,At @UnitedCCChamber State of the City lunch with Mayor Joe McComb https://t.co/cZa3jUI8ee +03/27/2018,Politicians,@farenthold,"Today, the Veterans Band of Corpus Christi and the Nueces County Veterans Service Office commemorated the 50th anni… https://t.co/c8ustzu75y" +03/27/2018,Politicians,@farenthold,"Today, Greg McCarthy from my office, who is also an Eagle Scout, presented new Eagle Scouts Jace Stevens and Aaron… https://t.co/meFt07ve8p" +03/22/2018,Politicians,@farenthold,"Today, Luis with my office presented Teacher of the Year certificates during the Portland Chamber of Commerce Lunch… https://t.co/1Zft9wlx0r" +03/16/2018,Politicians,@farenthold,"Sad to hear of the passing of my colleague from NY, Rep. Louise Slaughter. Prayers to her family." +03/16/2018,Politicians,@farenthold,RT @GOPoversight: 🚨ICYMI: Subcommittee Chairman @farenthold visited the U.S. Virgin Islands to assess ongoing hurricane response efforts an… +03/15/2018,Politicians,@farenthold,"More than 3,600 civilian employees work at the @CCADPAO. The amendment I introduced today would help protect these… https://t.co/5bK5z0Zc7B" +03/14/2018,Politicians,@farenthold,It was a packed house at the Aransas Pass Civic Center for the State of the Port of Corpus Christi. @PoccaPort CEO… https://t.co/e6yRgoO9pw +03/14/2018,Politicians,@farenthold,"If you’re having a problem dealing with the federal government, my Red Taper Cutters will be holding mobile office… https://t.co/FFybeVJouH" +03/12/2018,Politicians,@farenthold,"HAPPENING NOW: I am chairing a @GOPoversight Subcommittee on Interior, Environment and Energy field hearing on the… https://t.co/HYz7muX5Zy" +03/12/2018,Politicians,@farenthold,"RT @GOPoversight: Live at 9:30ET➡️The Historic 2017 Hurricane Season: Impacts on the U.S. Virgin Islands. +Watch📺 https://t.co/owXK4B1Yp4 ht…" +03/10/2018,Politicians,@farenthold,"Tonight, @RockportFulton & @UnitedCCChamber held a ribbon cutting ceremony for Rockport Warriors United, a nonprofi… https://t.co/guyUFXblls" +03/09/2018,Politicians,@farenthold,Visited with Mayor Bujan today to check on Port Aransas’ recovery. Great to hear about their successes.… https://t.co/eqjM6uMdfV +03/06/2018,Politicians,@farenthold,"RT @GOPoversight: #Live: The Subcommittee on Interior, Energy, and the Environment examines the U.S. Army Corps of Engineers | Chaired by @…" +03/06/2018,Politicians,@farenthold,"This morning, the Subcommittee on the Interior, Energy and Environment, which I chair, is holding a hearing to exam… https://t.co/vYgDK7Paur" +02/27/2018,Politicians,@farenthold,"If you are having issues with the federal government, my caseworkers will be having mobile office hours tomorrow in… https://t.co/2jUuDb2O20" +02/27/2018,Politicians,@farenthold,Met with @GovAbbott today to discuss Hurricane Harvey disaster relief for #TX27 https://t.co/iB1WFM0J1i +02/15/2018,Politicians,@farenthold,Discussing the Music Modernization Act with songwriters from the @NMPAorg. Thanks for stopping by and performing so… https://t.co/2ZepEGwSWv +02/15/2018,Politicians,@farenthold,"@peterthiel is moving because of left-leaning politics in the Silicon Valley. Might I suggest Texas instead of LA? +https://t.co/pnnQxT7tmI" +02/14/2018,Politicians,@farenthold,Met with officials from @PoccaPort today to discuss the next steps for widening and deepening the port. https://t.co/svxhEakolt +02/13/2018,Politicians,@farenthold,@GovAbbott gave an update on Hurricane Harvey relief & funding at the Rockport Chamber lunch this afternoon. Last w… https://t.co/4V2h8sKHHT +02/13/2018,Politicians,@farenthold,"While this is a great step forward, this is just a proposal. I will continue working to ensure that the @PoccaPort… https://t.co/5Vte62UMjZ" +02/06/2018,Politicians,@farenthold,This morning the Corpus Christi Regional Economic Development Corporation hosted its monthly breakfast. JD & Luis f… https://t.co/eAqfyvyjCc +01/31/2018,Politicians,@farenthold,"Hope no one was seriously injured in today's train crash. Prayers for all involved. Debbie and I were not on the train, we are driving." +01/30/2018,Politicians,@farenthold,President @realDonaldTrump levels the playing field in the skies ending Qatar's unfair practices that hurt American… https://t.co/uDy0vN3Nua +01/30/2018,Politicians,@farenthold,I urge @realDonaldTrump to #ReleaseTheMemo https://t.co/XumrPlKsZR +01/30/2018,Politicians,@farenthold,"If you are having issues with the federal government, my Red Tape Cutters will be having mobile office hours today… https://t.co/vHFjgSvPRc" +01/26/2018,Politicians,@farenthold,"Congratulations to @CCADPAO on producing its 1000th T-55 engine! +https://t.co/2wjL9xBI5X" +01/24/2018,Politicians,@farenthold,Checking out progress on Hurricane Harvey recovery in Aransas County on the Rockport-Fulton Chamber of Commerce bus… https://t.co/PQ0jX0lNsl +01/22/2018,Politicians,@farenthold,"Senate Democrats, led by Chuck Schumer, unnecessarily shut down the government Friday because they put the interest… https://t.co/lYJKTzmhTj" +01/19/2018,Politicians,@farenthold,#ShutdownSchumer putting illegal aliens ahead of our military and children. +01/19/2018,Politicians,@farenthold,Signing onto a letter to urge @HouseIntelComm to #ReleaseTheMemo. +01/19/2018,Politicians,@farenthold,"As the March for Life​ begins outside the Capitol, the House just passed H.R. 4712, the Born-Alive Abortion Survivo… https://t.co/h0bJKDvsWe" +01/18/2018,Politicians,@farenthold,Corpus Christi International Airport will be holding a TSA PreCheck enrollment event from 1/23 to 1/25. https://t.co/T8w8hGHBJR +01/16/2018,Politicians,@farenthold,"Due to inclement weather, our Corpus Christi and Victoria offices are closed for the rest of the afternoon. If you… https://t.co/c5pK6AYKl1" +01/12/2018,Politicians,@farenthold,"FYI: Transitional Shelter Assistance has been extended until March 12, 2018 for those currently displaced by Hurric… https://t.co/WuJIYPQzeE" +01/11/2018,Politicians,@farenthold,"It is troubling that despite having a warrant requirement, the exceptions are so broad they eviscerate the rule. Pa… https://t.co/Umej9p96I9" +01/10/2018,Politicians,@farenthold,I'm disappointed the Rules Committee didn't accept my commonsense amendment to protect your right to privacy. Here… https://t.co/4O90z0y7KO +12/25/2017,Politicians,@farenthold,"From my family to yours - Merry Christmas! I hope your Christmas is blessed with family and friends, and may we nev… https://t.co/UBI61Vw1yU" +12/19/2017,Politicians,@farenthold,"Today, I fulfilled one of my long-term goals serving in Congress; voting for a fairer, flatter and simpler tax code… https://t.co/oYeQku8P3l" +12/12/2017,Politicians,@farenthold,Happy Hanukkah to those who celebrate! 🕎🕯️🎁 https://t.co/EowSAhTnpD +12/11/2017,Politicians,@farenthold,Congratulations again to Christian Bertoni for winning the Congressional App Challenge! #NationalAppDay https://t.co/qjmiiKwkGV +12/11/2017,Politicians,@farenthold,"While this morning’s attempted terrorist attack did not achieve its goal, it’s a harsh reminder of the radicalizati… https://t.co/8942hNCzPV" +12/07/2017,Politicians,@farenthold,"Congratulations to Christian Bertoni, a junior at Hallettsville High School for winning the 2017 Congressional App… https://t.co/EUMwTycd6L" +12/07/2017,Politicians,@farenthold,"76 years ago today, the U.S. naval base at Pearl Harbor was devastated by a surprise military strike that pushed th… https://t.co/TbzlglCo3C" +12/07/2017,Politicians,@farenthold,"Thank you @FLOTUS Melania Trump and Karen Pence for visiting the Coastal Bend, and continuing to show your support… https://t.co/5UDTkHaEYn" +12/06/2017,Politicians,@farenthold,"Just like your state-issued driver’s license is valid in any state, your concealed carry license should be too.… https://t.co/OMKDpL90ah" +11/30/2017,Politicians,@farenthold,"@RileyWi77648955 @fema @TSA @FEMA_Brock @FEMARegion6 @toddahunter Riley, give Nicole in my office a call so she can… https://t.co/A3Nl5iyS2j" +11/30/2017,Politicians,@farenthold,"Happy birthday to my colleague from South Dakota, @RepKristiNoem!" +11/30/2017,Politicians,@farenthold,"For #ComputerSecurityDay, I want to share some helpful tips to ensure that your personal information stays secure. https://t.co/q13v4aLMXc" +11/30/2017,Politicians,@farenthold,🚨 REMINDER: TODAY IS THE FINAL DEADLINE TO APPLY FOR HURRICANE HARVEY RELIEF. 🚨https://t.co/JrmclfjRYr +11/30/2017,Politicians,@farenthold,"This morning, @Transport is holding a markup on the Disaster Recovery Reform Act, legislation that reforms federal… https://t.co/Iugi4sWyX5" +11/29/2017,Politicians,@farenthold,"🚨 Tomorrow, November 30, 2017, is the last day for Texans affected by Hurricane Harvey to register for federal assi… https://t.co/thGvJgLzPj" +11/29/2017,Politicians,@farenthold,I support @POTUS @realDonaldTrump working with Chinese President Xi and other Asian leaders to continue pressuring… https://t.co/hknLpYWv2U +11/29/2017,Politicians,@farenthold,"Happening now: @GOPoversight's Interior subcommittee hearing, ""Regulatory Reform Task Force Check-In."" https://t.co/h7vEXxTMKF" +11/28/2017,Politicians,@farenthold,REMINDER: I am holding a Conference Call with Your Congressman at 6 p.m. CST. https://t.co/6TtUWyYGPO +11/28/2017,Politicians,@farenthold,TONIGHT: I will be holding a Conference Call with Your Congressman tonight at 6 p.m. CST to discuss FEMA and disast… https://t.co/gFQqGXUCD7 +11/27/2017,Politicians,@farenthold,"Happy birthday to my colleague from Arizona, @RepGosar!" +11/27/2017,Politicians,@farenthold,"Over the weekend, Former President George H.W. Bush became the longest-living president in U.S. history at 93 years… https://t.co/Ac7w4j7Oup" +11/23/2017,Politicians,@farenthold,"From my family to yours, Happy Thanksgiving! 🦃🍂👪🇺🇸https://t.co/rcynU506A4" +11/22/2017,Politicians,@farenthold,"OTD in 1995, Toy Story, the first feature-length film created entirely using CGI, was released. To Infinity and beyond!" +11/22/2017,Politicians,@farenthold,"A great new program, sponsored by The Associated Builders and Contractors, will provide veterans with apprenticeshi… https://t.co/2S7Cj0eaX2" +11/22/2017,Politicians,@farenthold,"Today, I visited with Texas State Rep. Phil Stephenson about Harvey recovery and the tax reform bill the House pass… https://t.co/AxrzEFBNYs" +11/21/2017,Politicians,@farenthold,REMINDER: The FEMA Disaster Assistance registration deadline has been extended to November 30. https://t.co/QyeTeZAlhX @fema +11/21/2017,Politicians,@farenthold,"Happy birthday to my colleague from FL, @TomRooney!" +11/21/2017,Politicians,@farenthold,Unemployment rates have hit a four decade low in Texas at 3.9%. https://t.co/qPzMUlF1HT +11/20/2017,Politicians,@farenthold,"This morning, I met with local Alzheimer's Association ambassador, Gracie Cooley. We spoke about the importance of… https://t.co/S47Ke9DFMY" +11/20/2017,Politicians,@farenthold,"It is with a heavy heart that I share some very sad news. Collin Kennedy, who recently worked as my Victoria Field… https://t.co/6t1AwWtKHd" +11/20/2017,Politicians,@farenthold,"Debbie and my thoughts and prayers are with the family of the Border Patrol officer killed over the weekend, as wel… https://t.co/PfVZB7SCDd" +11/17/2017,Politicians,@farenthold,"After reviewing the latest Office of Management and Budget (OMB) supplemental request for disaster recovery, we fin… https://t.co/nAl0FKRUgx" +11/17/2017,Politicians,@farenthold,"OTD in 1800, the United States Congress held its first session in Washington, D.C. https://t.co/Nukt1yj48A" +11/17/2017,Politicians,@farenthold,"Last night, Vanessa with my office attended the House of Palms Banquet at Faith Family Church in Victoria. Faith Fa… https://t.co/sZZMmNRMoR" +11/16/2017,Politicians,@farenthold,"Yesterday, Debbie joined U.S. Secretary of Education, @BetsyDeVosED, in Port Aransas to see the rebuilding and reco… https://t.co/yusqnJGSuQ" +11/16/2017,Politicians,@farenthold,"This pro-growth, pro-family legislation will help you keep more of your paycheck. https://t.co/BGiv9TFGuH" +11/16/2017,Politicians,@farenthold,"Today, I’m wearing purple for World Pancreatic Cancer Day. I lost my great grandmother to this horrible disease. 💜… https://t.co/bmY375fZMt" +11/16/2017,Politicians,@farenthold,It’s time to pass the first comprehensive tax reform legislation since 1986. #HR1 https://t.co/I0isN2HeDb +11/15/2017,Politicians,@farenthold,"Today, @DogBountyHunter and @MrsdogC tracked me down... to talk about H.R. 2152, the Citizens' Right to Know Act. https://t.co/MLamshE7nX" +11/15/2017,Politicians,@farenthold,"Taxpayers are already paying for this data, so they should be able to use it. https://t.co/xRCefOSXHG https://t.co/mUAAFD8pUu" +11/15/2017,Politicians,@farenthold,"Taxpayers are already paying for this data, so they should be able to use it. This legislation allows for people to… https://t.co/yIsQbcHpqt" +11/15/2017,Politicians,@farenthold,".@Cheniere’s new MOU to export LNG to China will be great for TX27 and @PoccaPort, the nation’s largest LNG export… https://t.co/OueJ37yKn8" +11/15/2017,Politicians,@farenthold,"The #TaxCutsAndJobsAct will simplify the complicated tax filing system, so they could be done on a form as simple a… https://t.co/WtRcJm1tWn" +11/15/2017,Politicians,@farenthold,H.R. 4174 will track the effectiveness of federal agencies through data analysis. https://t.co/yLLavQckmq +11/14/2017,Politicians,@farenthold,Click to watch my questioning of Attorney General Jeff Sessions at today's @HouseJudiciary Committee hearing. ⚖️ https://t.co/ucleUgvsbC +11/14/2017,Politicians,@farenthold,"This morning, Attorney General Jeff Sessions will testify before the @HouseJudiciary at an oversight hearing for… https://t.co/ZO6kS2qTRt" +11/13/2017,Politicians,@farenthold,Port Aransas ISD celebrated Veterans Day this morning to honor and thank veterans from all branches for their servi… https://t.co/sIDMMguQYs +11/13/2017,Politicians,@farenthold,"OTD in 1982, the Vietnam Veterans Memorial was dedicated in DC. The memorial wall is etched with 58,318 names. https://t.co/lfa2sPhTJO" +11/13/2017,Politicians,@farenthold,#HR3071 will require each executive agency to examine its equipment acquisition practices to save taxpayer dollars. https://t.co/d3UHaGJdoT +11/13/2017,Politicians,@farenthold,What an inspirational story about a Marine veteran who lost both of his legs in Afghanistan and just completed 31 m… https://t.co/Qlt2v63vV4 +11/11/2017,Politicians,@farenthold,"99 years ago today, at the 11th hour of the 11th day of 11th month, WWI ended. This morning at the 11th hour, the… https://t.co/jsn3qUiptA" +11/11/2017,Politicians,@farenthold,It was an honor and privilege to speak at the Victoria Veterans Day ceremony this morning. I thanked our veterans f… https://t.co/tW9iKqiP2W +11/11/2017,Politicians,@farenthold,"Today, we commemorate Veterans Day and honor those who served our country. We should always remember that we must k… https://t.co/sbZcqXCs89" +11/10/2017,Politicians,@farenthold,"Earlier today, Luis with my office attended the TAMUCC Veterans Day Ceremony, where CAPT. Steve Banta (Ret) was the… https://t.co/cbSd8jqqlC" +11/10/2017,Politicians,@farenthold,"Happy birthday to my colleague from OH, @RepBillJohnson!" +11/10/2017,Politicians,@farenthold,Happy 242nd birthday to the United States Marine Corps! 🇺🇸@USMC https://t.co/jbdg8n65OO +11/09/2017,Politicians,@farenthold,"It’s time for Congress to take a hard look at the @TSA, which can’t seem to get its act together. https://t.co/bFYQuXua4S" +11/09/2017,Politicians,@farenthold,"Happy birthday to my colleagues from NY, @RepJohnKatko, and CO, @RepTipton!" +11/09/2017,Politicians,@farenthold,"Commander Solis has touched the lives of thousands of students, instilling them with values of patriotism, loyalty,… https://t.co/8j85YRqQY5" +11/08/2017,Politicians,@farenthold,"Today, we highlight the importance of STEM fields and education. #NationalSTEMDay https://t.co/aWCTdn8nls" +11/08/2017,Politicians,@farenthold,.@HouseJudiciary is marking up H.R. 3989 which deals with the way the govt conducts surveillance. I’m working hard… https://t.co/EejUbgL7iO +11/08/2017,Politicians,@farenthold,"Congratulations to Rockport-Fulton senior and former intern, Blake Mieth! Keep up the awesome work! https://t.co/rhqbex9ydz" +11/08/2017,Politicians,@farenthold,"Congratulations to George Gonzales, his team, and everyone at @CCADPAO, who are doing an outstanding job of ensurin… https://t.co/KVu7N4nlqW" +11/08/2017,Politicians,@farenthold,"OTD in 1916, Jeanette Rankin was elected the first woman elected to Congress. https://t.co/ZCQTRQQ1fc" +11/07/2017,Politicians,@farenthold,"Today, the House votes to provide former military members with better mental health care. #HR918 https://t.co/Bi0XbLX7Ul" +11/07/2017,Politicians,@farenthold,I’m hopeful that President @realDonaldTrump’s visit to Asia will push North Korea to come to the table. https://t.co/f7XAPwma4l +11/07/2017,Politicians,@farenthold,It’s important the House passes the PAWS Act & allows the VA to examine providing vets w/PTSD with service dogs. 🐕🇺🇸 https://t.co/aqd7z0iTVH +11/07/2017,Politicians,@farenthold,"Happy birthday to my colleague from MO, @RepSamGraves!" +11/06/2017,Politicians,@farenthold,RT @TexasGameWarden: Honored that Asst Cmdr B Reeder testified last week on Capitol Hill at House Subcommittee mtg discussing combating ill… +11/06/2017,Politicians,@farenthold,.@POTUS has ordered all US flags be flown at half-staff in honor of those killed and wounded in Sutherland Springs. https://t.co/OxF7vthzfz +11/06/2017,Politicians,@farenthold,#HR3122 will make sure the VA works to protect low-income and older vets from scam artists. https://t.co/uPjfFlRrJg +11/05/2017,Politicians,@farenthold,Houses of worship should always be held sacred. My heart is w/TX28 and our fellow Texans touched by today's attack. https://t.co/1SIioIXrne +11/04/2017,Politicians,@farenthold,"Had a great lunch at Tivoli High School, where the seven seniors are holding a steak sale for Hurricane Harvey reli… https://t.co/ZffkfaYUlj" +11/03/2017,Politicians,@farenthold,@JessicaSavageCC Congratulations! +11/03/2017,Politicians,@farenthold,"Happy birthday to my colleague from WA, @HerreraBeutler!" +11/02/2017,Politicians,@farenthold,"""This pro-growth, pro-family tax reform bill will help you keep more money from your paychecks..."" https://t.co/ShhES8XDdq" +11/02/2017,Politicians,@farenthold,"RT @GOPoversight: Live now-> We examine ways to resolve the shark finning problem. +https://t.co/nuTIekOOic https://t.co/MJvL259XRo" +11/02/2017,Politicians,@farenthold,#HappeningNow: Examining the Regulation of Shark Finning in the United States. 📺⬇️ https://t.co/Az19USbKIP @GOPoversight +11/02/2017,Politicians,@farenthold,"After a wild 7 games, congrats to the Houston @astros on winning their first ever #WorldSeries! #TexasStrong ⚾🏆 https://t.co/oZbQHvJcUg" +11/02/2017,Politicians,@farenthold,"RT @Salient_CRGT: If you don’t know how customers are seeing you, you can’t fix it. - Cong. @farenthold #CXSummit @GovExec @Nextgov @Frank_…" +11/02/2017,Politicians,@farenthold,RT @Frank_Konkel: Congressman @farenthold talking about opening government’s data and improving federal customer experience at @GovExec’s #… +11/01/2017,Politicians,@farenthold,Just spoke to @Liz_Wheeler on @OANN about tax reform. Be sure to tune into her show tonight at 8 p.m central. https://t.co/lnghl3CGG7 +11/01/2017,Politicians,@farenthold,"This World Series has been exciting, but it’s time for the @astros to win it all tonight! Go ‘Stros! #WorldSeries⚾ https://t.co/VQUWvVXS7C" +11/01/2017,Politicians,@farenthold,Net neutrality hearing today @HouseJudiciary on who is best suited to regulate the internet - the @FCC or the @FTC. https://t.co/oXC8BZFwkQ +11/01/2017,Politicians,@farenthold,We must continue our fight against radicalization both at home and abroad. https://t.co/CcykUn6anu +11/01/2017,Politicians,@farenthold,"RT @SpeakerRyan: Proud to introduce a bill yesterday with @TGowdySC, @RepDerekKilmer, @farenthold, @SenBrianSchatz, & @PattyMurray. https:/…" +10/31/2017,Politicians,@farenthold,"For Howl-o-ween, unofficial DC office mascot Dale is dressing up as one of his favorite paw-liticians… https://t.co/iiv6CeI4Ry" +10/31/2017,Politicians,@farenthold,I've enjoyed my time working alongside @RepHensarling and I wish him the best of luck. https://t.co/6strEvbWdl +10/31/2017,Politicians,@farenthold,ICYMI – I spoke with @FoxNews over the weekend about the upcoming investigations into the Uranium One deal. https://t.co/BO8wcvDsSg +10/31/2017,Politicians,@farenthold,"The deadline for the Congressional App Challenge is tomorrow, be sure to get your entries in! https://t.co/xOxciiIbIh @CongressionalAC" +10/31/2017,Politicians,@farenthold,Seems like @Whataburger costumes are the Texas meme for this Halloween. 🎃 2 Stories: https://t.co/hfoyea966E https://t.co/UsSs7NZgLX +10/31/2017,Politicians,@farenthold,Happy Halloween! https://t.co/35t8aiWwWk +10/30/2017,Politicians,@farenthold,"OTD in 1938, Orson Welles broadcast his infamous radio play of The War of the Worlds. https://t.co/SmR0eqse8a" +10/27/2017,Politicians,@farenthold,"""If you're having a problem with a federal agency, call my Red Tape Cutters at 361-884-2222."" @bobjonescc" +10/27/2017,Politicians,@farenthold,I'm talking live with @bobjonescc on @1440KEYSAM. https://t.co/Ng0VS1q3Y0 +10/26/2017,Politicians,@farenthold,REMINDER: There is one week left in the 2017 Congressional App Challenge! Be sure to get those entries in! https://t.co/xOxciiIbIh +10/26/2017,Politicians,@farenthold,Thank you to the brave men and women deployed to defend our country. #dayofthedeployed +10/26/2017,Politicians,@farenthold,It looks like there may have been Russian collusion last election… involving the DNC and the Clinton Campaign. https://t.co/8GSHB5ujtC +10/25/2017,Politicians,@farenthold,"ICYMI - The video from my Conference Call With Your Congressman is viewable online. + 📹 + https://t.co/Ro8ZRBOKuU" +10/25/2017,Politicians,@farenthold,Spoke to @KendallForward of @OANN today about @HouseJudiciary & @GOPoversight's probe into DOJ actions last electio… https://t.co/TF3E6shefn +10/25/2017,Politicians,@farenthold,.@GOPoversight & @HouseJudiciary announce probe into DOJ actions during 2016 election. https://t.co/QSnPaFRypt +10/25/2017,Politicians,@farenthold,"Last night, the House passed the Otto Warmbier Act, which will enact sanctions on North Korea’s backers in China. https://t.co/Y4pGmN6hAH" +10/24/2017,Politicians,@farenthold,Go Houston Astros! ⚾ #WorldSeries @astros https://t.co/pT4PuYpR6O +10/24/2017,Politicians,@farenthold,The Social Security Administration has announced a 2% cost-of-living adjustment for 2018. https://t.co/68aJXPFLgc @SocialSecurity +10/24/2017,Politicians,@farenthold,"Corpus Christi will soon be the home to a minor league soccer team, Corpus Christi FC. https://t.co/4ZChZWq3Op" +10/23/2017,Politicians,@farenthold,"""We need to look at our government programs because there are some out there that incentivize not working over getting a job."" @1360KKTX" +10/23/2017,Politicians,@farenthold,“This budget sets up the mechanism for reconciliation that will allow tax reform.” @1360KKTX +10/23/2017,Politicians,@farenthold,I’m live on the air with Lago on @1360KKTX. Tune in! https://t.co/mmtp8Og3tH +10/22/2017,Politicians,@farenthold,"Join me LIVE on my ""Conference Call With Your Congressman,"" going on right now: https://t.co/Ro8ZRBOKuU" +10/22/2017,Politicians,@farenthold,I’ll be hosting a “Conference Call with your Congressman” tonight at 6:00 p.m. CDT. https://t.co/DJ5KsqDvdj +10/21/2017,Politicians,@farenthold,"Tomorrow, I will be hosting a “Conference Call with your Congressman” at 6:00 p.m. CDT. https://t.co/rE55aXzdVg" +10/20/2017,Politicians,@farenthold,"Happy birthday to my colleague and fellow Texan @RepRatcliffe and colleague from PA, @RepMeehan!" +10/20/2017,Politicians,@farenthold,RT @PoccaPort: Project Partnership Agreement signed for CC Ship Channel Improvement Project! @farenthold Chairman Zahn with Col Zetterstro… +10/20/2017,Politicians,@farenthold,The deadline to apply for FEMA disaster aid has been extended until 11/24/2017. https://t.co/oWD9hEcjE7 +10/20/2017,Politicians,@farenthold,REMINDER: I will be hosting a “Conference Call With Your Congressman” this Sunday night. https://t.co/h4gOQmdMgc +10/19/2017,Politicians,@farenthold,I’ll be holding a “Conference Call With Your Congressman” this Sunday at 6 p.m. https://t.co/81wyOr3wua +10/19/2017,Politicians,@farenthold,"OTD in 1781, reps of Lord Cornwallis surrendered to Washington @ Yorktown. You can see the painting of the moment o… https://t.co/DfIFFukzvm" +10/18/2017,Politicians,@farenthold,"OTD in 1954, @TXInstruments announced the first transistor radio. https://t.co/OC9UKhc9hh" +10/18/2017,Politicians,@farenthold,The Congressional App Challenge ends on November 1. Be sure to get your entries in! https://t.co/xOxciiqAQJ @CongressionalAC +10/18/2017,Politicians,@farenthold,"Happy birthday to my colleague from FL, @RepDennisRoss!" +10/17/2017,Politicians,@farenthold,My office will be holding a FEMA town hall tomorrow night in Bayside. https://t.co/Tw4eh6aFfC +10/17/2017,Politicians,@farenthold,"I attended the Victoria Partnership meeting this morning, where we discussed Harvey recovery, Victoria Regional Air… https://t.co/VaQOkq13ar" +10/17/2017,Politicians,@farenthold,Be sure to check out the great video tribute to Selena on @Google’s homepage today. https://t.co/uOOAlDs27x +10/17/2017,Politicians,@farenthold,"OTD in 1839, Mirabeau Lamar, president of the Republic of Texas, and his cabinet arrived in the new capital city of… https://t.co/pZdpUmSuwH" +10/17/2017,Politicians,@farenthold,I'm live in studio with @WadeandCarter 🎙 listen in ➡️ https://t.co/8QtzarlKsN +10/16/2017,Politicians,@farenthold,"Happy birthday to my colleague from MI, @repdavetrott, and NJ, @RepTomMacArthur!" +10/16/2017,Politicians,@farenthold,I want to know your thoughts on the GOP tax framework. Please read it and respond. https://t.co/Cz6UApTM8q +10/15/2017,Politicians,@farenthold,"Congratulations to Belinda Casanova on an outstanding year as chairman of the Ingleside Chamber, and Jane Gimler fo… https://t.co/6QSCZYuWBr" +10/13/2017,Politicians,@farenthold,Hazard mitigation specialists will be providing free repair and rebuilding advice in Nueces County until the 22nd. https://t.co/Dtc4uTnaGd +10/13/2017,Politicians,@farenthold,"Happy 242nd Birthday, @USNavy! https://t.co/5pprIpmpAJ" +10/13/2017,Politicians,@farenthold,"Happy birthday to my colleague from MO, @RepHartzler!" +10/12/2017,Politicians,@farenthold,Repealing and replacing Obamacare remains as one of my top priorities. https://t.co/tD9EN9DBWb +10/12/2017,Politicians,@farenthold,We cannot delay much needed flood insurance payments to Texans who paid for flood insurance & were ravaged by Harvey https://t.co/5QnjzvQhUx +10/12/2017,Politicians,@farenthold,A great program at @DelMarCollege is teaching future truckers how to stem the tide of human trafficking. https://t.co/VFAATcQ5WG +10/12/2017,Politicians,@farenthold,Happy #NationalFarmersDay to the hardworking farmers of TX27! https://t.co/guQTeGESEf +10/12/2017,Politicians,@farenthold,Happy birthday to my colleague from CA and @HouseForeign Chairman @RepEdRoyce! +10/12/2017,Politicians,@farenthold,I support @realDonaldTrump’s decision to withdraw the US from UNESCO until the body undergoes serious reforms. https://t.co/9TLinyYSFX +10/11/2017,Politicians,@farenthold,Congratulations @joegazin on celebrating 40 years at @kiii3news! https://t.co/8imLzqa7J4 +10/11/2017,Politicians,@farenthold,Thank you to @TeamRubicon for the help they have provided TX27 and @JaniceDean of @FoxNews for sharing their story. https://t.co/1vBxEIXX4M +10/11/2017,Politicians,@farenthold,"OTD in 1890, @TodaysDAR was founded in Washington, D.C." +10/11/2017,Politicians,@farenthold,"Happy birthday to my colleague and fellow Texan @SamsPressShop, and Tennessean, @RepChuck!" +10/10/2017,Politicians,@farenthold,"OTD in 1845, @NavalAcademy opened in Annapolis. You can find out more about academy nominations at my event tonight. https://t.co/mtjzTzkqUZ" +10/10/2017,Politicians,@farenthold,Happy #DoubleTenDay Taiwan! https://t.co/Me7HhaveDd +10/07/2017,Politicians,@farenthold,Thank you to @JaniceDean from @FoxNews for highlighting the amazing work that @TeamRubicon is doing to rebuild TX27. https://t.co/ZFDW1j9LNa +10/06/2017,Politicians,@farenthold,"Happy birthday to my good friend and colleague, @SteveScalise! It’s great to have you back!" +10/06/2017,Politicians,@farenthold,There will be a meeting for farmers and ranchers in need of disaster relief on October 12th. https://t.co/eCYiEJmc3r +10/05/2017,Politicians,@farenthold,"Yesterday, @WhiteHouse sent a formal request to Congress requesting more disaster relief for the recent hurricanes. https://t.co/GwwyyNDE3p" +10/05/2017,Politicians,@farenthold,A new tax reform plan will allow you to keep more of your money in your pocket. Find out more -> https://t.co/Cz6UAqbmZY +10/05/2017,Politicians,@farenthold,Congratulations George Gonzales for being named the Donald F. Luce Depot Maintenance Artisan of the Year! https://t.co/6ili2ZJZu4 +10/04/2017,Politicians,@farenthold,A new FEMA disaster recovery center opened yesterday at La Palmera Mall. https://t.co/cokoTrQP1x +10/04/2017,Politicians,@farenthold,The Red Cross will be reassessing applications from Port Aransas that were denied the first time. https://t.co/1nZenlisbN +10/04/2017,Politicians,@farenthold,"Happy #NationalTacoDay! Next time you’re in TX27, be sure to have some of the best tacos in Texas! https://t.co/dUtjgTNJhE" +10/04/2017,Politicians,@farenthold,I am proud to represent so many South Texans that are proud of our military and honoring fallen military aviators. https://t.co/Ys5iNjEFi9 +10/03/2017,Politicians,@farenthold,ICYMI – Click below to watch the FEMA town hall I held last Friday in Port Aransas. https://t.co/noiyCYdk5K +10/03/2017,Politicians,@farenthold,"Less than a year in, the Trump Administration has already saved $560 million by cutting bad regulations. https://t.co/lsYhDIINwp" +10/03/2017,Politicians,@farenthold,RT @Energy_Dialogue: Legislative panel @ #NAGF17 @natgas_ngsa @Energy_Dialogue @RepTipton @RepCuellar @RepBillJohnson @RepJoeBarton @farent… +10/02/2017,Politicians,@farenthold,Horrified to wake up to the news of the Las Vegas shooting. I'm praying for the victims and their loved ones. +09/29/2017,Politicians,@farenthold,FEMA is looking for temporary local workers to help out with recovery efforts. https://t.co/jI2S8Fm8Uj +09/29/2017,Politicians,@farenthold,"OTD in 1789, the 1st United States Congress adjourned at Federal Hall in New York City." +09/29/2017,Politicians,@farenthold,"On #NationalVFWDay, let's take a moment to remember the VFWs that were impacted by Hurricane Harvey. This was the V… https://t.co/AbMxl5Rcyo" +07/02/2018,Politicians,@MooreSenate,"I always thought America as corruption free country but Yesterday I watched ""13 reasons Why"" Season 2, I wanna ask.… https://t.co/Wv6VkvNhE4" +07/01/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: When people come into our Country illegally, we must IMMEDIATELY escort them back out without going through years of l…" +07/01/2018,Politicians,@MooreSenate,"RT @dbongino: Jim Acosta has become an ongoing comedy act. Yet, ironically, he thinks he’s helping rescue the broken reputation of the medi…" +07/01/2018,Politicians,@MooreSenate,RT @NASA: Scientists are using Earth to study distant worlds that orbit stars outside our solar system in an effort to answer big questions… +07/01/2018,Politicians,@MooreSenate,RT @washingtonpost: North Korea is working to conceal key aspects of its nuclear program and does not intend to fully surrender its stockpi… +07/01/2018,Politicians,@MooreSenate,RT @cs0058sc: 😡😡POPE TELLS U.S. TO OPEN BORDERS TO FLOODS OF ILLEGALS. This is no Pope. He is a left wing radical activist for globalism.… +07/01/2018,Politicians,@MooreSenate,"RT @JudgeJeanine: “Socialists want what you have. I for one work hard, pay taxes, believe in capitalism, and have no plan to move to Venezu…" +07/01/2018,Politicians,@MooreSenate,RT @DanScavino: “@GovMikeHuckabee: Trump could nominate Moses for Supreme Court and Democrats would fight it” https://t.co/5wx3nVJxvF +07/01/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Iron trainer = Iron 🐶! + +Press ▶️ for the story of @USNavy #sailor Ashly Lester and how she became a two-time winner of #…" +06/30/2018,Politicians,@MooreSenate,"RT @HHSGov: As many parts of the U.S. face an excessive heat warning, know how to spot heat stroke–and know when it's time to get medical h…" +06/30/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Working together. + +#USSWilliamPLawrence sails with Japanese 🇯🇵 ship JS Ise, Singaporean 🇸🇬 ship RSS Tenacious, Indian 🇮🇳…" +06/30/2018,Politicians,@MooreSenate,"RT @FoxBusiness: .@IvankaTrump: ""I think one of the tremendous opportunities that were seeing because the economy is so strong is that peop…" +06/28/2018,Politicians,@MooreSenate,"RT @JudicialWatch: NEW: When Maxine Waters encouraged violence against Trump Cabinet members, it wasn’t the first time she displayed behavi…" +06/28/2018,Politicians,@MooreSenate,RT @SonjaHHarris: The Left has been screaming at the top of their lungs about the children at the border being RIPPED from their mother's a… +06/28/2018,Politicians,@MooreSenate,"RT @MichaelCohen212: My family & I are owed an apology. After 2 years, 15 hours of testimony before House & Senate under oath & producing m…" +06/28/2018,Politicians,@MooreSenate,RT @JudgeJeanine: At the Statue of Liberty 🗽 https://t.co/6LLJKmPrYa +06/28/2018,Politicians,@MooreSenate,RT @realDonaldTrump: Just landed in North Dakota with @SenJohnHoeven and @RepKevinCramer. We will see everyone at Scheels Arena shortly! ht… +06/28/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Can you say #airpower? 💪🏿💪🏾💪🏻 + +@USAirForce #F15E Strike Eagles with the 4th Fighter Wing get in formation behind a #KC13…" +06/28/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Thank you North Dakota. Together, we are MAKING AMERICA SAFE AND GREAT AGAIN! #MAGA https://t.co/6Am9n6px8I" +06/28/2018,Politicians,@MooreSenate,Do you remember when you joined Twitter? I do! #MyTwitterAnniversary https://t.co/fQmVezlzXa +06/27/2018,Politicians,@MooreSenate,"RT @bigleaguepol: Proving once again that President Trump’s election was truly consequential! + +BREAKING: Justice Kennedy Retiring from Sup…" +06/27/2018,Politicians,@MooreSenate,"RT @washingtonpost: Have you ever watched a fireworks show in America? + +Chances are this Chinese businessman supplied it, but many have nev…" +06/27/2018,Politicians,@MooreSenate,"RT @USUN: ""The United States will not allow #Iran’s violations and destructive actions to go unchecked, and we urge members of the Security…" +06/27/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Today, I was thrilled to join student leaders from Colleges and Universities across the country... https://t.co/OQp3Nc…" +06/26/2018,Politicians,@MooreSenate,RT @HHSGov: Many people become more forgetful as they age. How can you tell the difference between mild forgetfulness and serious memory pr… +06/26/2018,Politicians,@MooreSenate,"RT @DeptofDefense: #OTD: June 26 marks the 70th anniversary of the beginning of the #BerlinAirlift, America’s first major test of resolve d…" +06/26/2018,Politicians,@MooreSenate,RT @DeptofDefense: Raise it up! A @USNavy #sailor raises the First Navy Jack aboard #USSMountWhitney while arriving in #Germany 🇩🇪 for Kiel… +06/26/2018,Politicians,@MooreSenate,"RT @NASA: We’re sending a helicopter to Mars! As the first helicopter to ever fly on a planetary body other than Earth, our #Marscopter wil…" +06/26/2018,Politicians,@MooreSenate,"RT @FoxBusiness: .@RepMaxineWaters moments ago: ""I have not called for the harm of anybody. This @POTUS has lied again, when he's saying th…" +06/25/2018,Politicians,@MooreSenate,RT @TheEconomist: Its objectives include freeing women from violence and furthering their political participation and economic empowerment… +06/25/2018,Politicians,@MooreSenate,"RT @HHSGov: When you learn new things, you engage your #brain. Find out some ways you can challenge your brain and stay on top of your game…" +06/25/2018,Politicians,@MooreSenate,"RT @CNN: Shares of Campbell Soup rose more than 10% Monday following a report hat said Kraft Heinz is ""very interested"" in trying to buy th…" +06/25/2018,Politicians,@MooreSenate,RT @TheEconomist: How can we make that happen? Read what @margotwallstrom proposes is the solution #OpenFuture https://t.co/rpkdT5FzSB http… +06/25/2018,Politicians,@MooreSenate,RT @theoverheadwire: Weekend's Most Read #1: Stopping the decline of transit in rich countries https://t.co/cfTM525RW7 @TheEconomist +06/25/2018,Politicians,@MooreSenate,"RT @JenNongel: I’M + PROUD + TO + BE + EVERYTHING…" +06/25/2018,Politicians,@MooreSenate,RT @seanhannity: https://t.co/BKlak9AHOL +06/25/2018,Politicians,@MooreSenate,RT @FoxNews: Sprint car driver Jason Johnson dead after racing crash https://t.co/z3e08q4uvQ +06/25/2018,Politicians,@MooreSenate,RT @FoxNews: Dow down on trade concerns @AmericaNewsroom https://t.co/rp0I1bGdKG +06/25/2018,Politicians,@MooreSenate,RT @libertarianism: We are currently living through a revolution in education. https://t.co/cRblIUJMRM +06/25/2018,Politicians,@MooreSenate,RT @FoxBusiness: Trump Space Force could fuel next trillion-dollar economy: Morgan Stanley https://t.co/AI0uHqMv7V +06/25/2018,Politicians,@MooreSenate,RT @ABC: NEW: Trump ally and Blackwater founder Erik Prince has provided special counsel Robert Mueller with “total access to his phone and… +06/25/2018,Politicians,@MooreSenate,"RT @ABC: As the government plans Arctic refuge drilling, activists vow to continue protests: “The survival of that place is really a part o…" +06/25/2018,Politicians,@MooreSenate,RT @beinlibertarian: https://t.co/xi6FRIXb6H +06/25/2018,Politicians,@MooreSenate,RT @CNN: What 40 years of 'Space Invaders' says about the 1970s -- and today https://t.co/UaA2bwlx88 via @CNNStyle https://t.co/Xc9H8djgd8 +06/24/2018,Politicians,@MooreSenate,RT @Reuters: Kane fires England to record 6-1 win against Panama https://t.co/p0UWLZN8dR https://t.co/EoJ2fJglU4 +06/24/2018,Politicians,@MooreSenate,RT @derekalberts1: Expect a spotless stadium after this clash #JAPSEN https://t.co/gLKVVXCKbt +06/24/2018,Politicians,@MooreSenate,"RT @TheBarmyArmy: YESSS!!!! + +Jos Buttler's incredible century takes us to a series whitewash over Australia. GET IN!! 👏🙌 + +#ENGvAUS https://…" +06/24/2018,Politicians,@MooreSenate,RT @DonaldJTrumpJr: Don Jr. storms the midterms https://t.co/E6NYQQVfrN via @politico +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: If Saturn were as close as the moon https://t.co/qed2ZVbTWl +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Pacific City https://t.co/zIktd89Kf1 +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Takhlakh Lake https://t.co/rgl1PfwBUL +06/24/2018,Politicians,@MooreSenate,RT @VistaUniverse: Oregon https://t.co/YtDhAl64k1 +06/24/2018,Politicians,@MooreSenate,"RT @HHSGov: Did you know that nearly 1 in 5 men smoke cigarettes? If you quit smoking, it can help reduce the risk of cancer, heart disease…" +06/24/2018,Politicians,@MooreSenate,RT @NASA: Mystery solved! A new study explains why two glaciers that flow side by side in northwest Greenland are melting at radically diff… +06/24/2018,Politicians,@MooreSenate,RT @TeamTrump: #TeamTrump in Ft. Worth for round table discussions #Texas on #TrumpTour #DFW #MAGA 🇺🇸 https://t.co/StqbPdauw9 +06/24/2018,Politicians,@MooreSenate,RT @foxandfriends: HEGSETH VS. HENRY: @PeteHegseth and @edhenry went head-to-head in yesterday’s After the Show Show - see who won! https:/… +06/24/2018,Politicians,@MooreSenate,RT @TeamTrump: #TeamTrump in #Midland #TX for round table discussions. June #TrumpTour #MAGA 🇺🇸 https://t.co/fu0fFUGm45 +06/24/2018,Politicians,@MooreSenate,"RT @tabithanaylor: It's Pink Day! A great day to encourage everybody to wear at least a little bit of pink – guys included! + +Do you think i…" +06/24/2018,Politicians,@MooreSenate,RT @NASAhistory: Did you see the #supermoon that happened #today in 2013? Supermoons happen when a full Moon occurs at or near the Moon's p… +06/24/2018,Politicians,@MooreSenate,RT @realDonaldTrump: Major Wall Street Journal opinion piece today talking about the Russian Witch Hunt and the disgrace that it is. So man… +06/24/2018,Politicians,@MooreSenate,RT @DHSgov: Fact Sheet: Zero-Tolerance Prosecution and Family Reunification https://t.co/Mnymy5xXvj +06/24/2018,Politicians,@MooreSenate,RT @DeptofDefense: Getting the job done. A #C17 aircraft drops equipment for the @173rdAbnBde Combat Team during an airborne insertion exer… +06/23/2018,Politicians,@MooreSenate,Took too Much... https://t.co/86yNYgNog1 +06/23/2018,Politicians,@MooreSenate,Happy Birthday https://t.co/b9UG3okdc8 +06/23/2018,Politicians,@MooreSenate,RT @foxandfriends: “The separation here is from the facts”: White House reacts to TIME magazine’s misleading cover https://t.co/WV09opOw9a +06/23/2018,Politicians,@MooreSenate,"RT @realDonaldTrump: Drudge Report “OBAMA KEPT THEM IN CAGES, WRAPPED THEM IN FOIL” We do a much better job while at the same time maintai…" +06/23/2018,Politicians,@MooreSenate,RT @r_wibberley: What an absolute privilege it has been spending the last 2 days at the 38th Session of the Human Rights Council in Geneva… +06/23/2018,Politicians,@MooreSenate,RT @Newsweek: Cynthia Nixon calls ICE a “terrorist organization” led by “egomaniacal” Donald Trump https://t.co/14gKM0qSw3 https://t.co/fge… +06/23/2018,Politicians,@MooreSenate,RT @TomArnold: Michael Cohen didn’t say Me & him were teaming up to take down Donald Trump! Michael has enough Trump on his plate. I’m the… +06/23/2018,Politicians,@MooreSenate,"RT @PalmerReport: Donald Trump’s day so far: + +- Michael Cohen with Tom Arnold +- Insane Trump press conference +- UN condemns his child “tort…" +06/23/2018,Politicians,@MooreSenate,"RT @MaddowBlog: ""The way that Donald Trump describes what's happening down on the border in Washington, D.C. is just about as far removed f…" +06/23/2018,Politicians,@MooreSenate,"RT @Lawrence: If Donald Trump can be president, Tom Arnold can be an investigative reporter. + + @TomArnold joins @TheLastWord tonight 10pm." +06/23/2018,Politicians,@MooreSenate,"RT @TheRickWilson: Line I wanted to use in this article but can't fit: + +""Donald Trump is a soft creature, indolent, cosseted, and overfed.…" +06/23/2018,Politicians,@MooreSenate,"RT @VP: Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the @WhiteHouse today. @POTUS…" +06/23/2018,Politicians,@MooreSenate,"RT @NASA: This week, our administrator @JimBridenstine attended the third National Space Council meeting, we announced an action plan for n…" +06/23/2018,Politicians,@MooreSenate,RT @RealJoshReddick: What a day today was. Took advantage of an off… https://t.co/S0zG3ARiXW +06/23/2018,Politicians,@MooreSenate,RT @Scavino45: REQUESTED by family members after their private meeting and visit to the Oval Office - which took place before public remark… +06/23/2018,Politicians,@MooreSenate,"RT @FoxBusiness: Steel maker JSW to build new plant, invest $500M after Trump tariffs https://t.co/pR3rIVvvZG" +06/23/2018,Politicians,@MooreSenate,"RT @DeptofDefense: Thunderbolt line. ✈️⚡ + +Four #A10 Thunderbolt II aircraft fly next to a #KC135 Stratotanker during #SaberStrike18 in Latv…" +06/27/2018,Politicians,@MittRomney,"Thank you for your gracious support, Rep. Mike Kennedy, and your offer to counsel on Health policy. You show that w… https://t.co/ZCnZJ8XqRZ" +06/24/2018,Politicians,@MittRomney,Here’s where I stand on the Trump Agenda; I appreciate the argument made by those who believe we should stay silent… https://t.co/n7UDn1fVRx +06/22/2018,Politicians,@MittRomney,"With Krauthammer now absent, the nation is bereft a full measure of character and integrity. Ann and I mourn the lo… https://t.co/8i4Zi3e90K" +06/18/2018,Politicians,@MittRomney,I agree that we need a more compassionate answer. https://t.co/3NOPEF0G3o +06/15/2018,Politicians,@MittRomney,".@AnnRomney and I exercised our right to vote by mailing in our ballots. Utahns, remember to vote by mail before Ju… https://t.co/csi641fbmH" +06/09/2018,Politicians,@MittRomney,"Charles’ greatness derives not only from his brilliant mind, blinding insights, and searing commentary; it is that… https://t.co/0zUwGdv3WH" +06/06/2018,Politicians,@MittRomney,RT @DeseretNews: LIVE: @MittRomney to keynote #UtahInnovationSummit followed by award ceremony including lifetime achievement award for LDS… +06/01/2018,Politicians,@MittRomney,"It took some cajoling, but I got a famous Utahn to star in my commercial. https://t.co/AAPxanibTp" +06/01/2018,Politicians,@MittRomney,Congratulations @DougWrightShow on 40 years at @kslnewsradio and a well-deserved retirement. Our conversations over… https://t.co/TbsmjgCpLU +05/28/2018,Politicians,@MittRomney,"""Greater love hath no man than this, that a man lay down his life for his friends."" (John 15:13) Today, we salute t… https://t.co/fCZThaSu0C" +05/26/2018,Politicians,@MittRomney,RT @Romney4Utah: Wonderful day at the Scandinavian Festival in Ephraim! #TeamMITT #utpol @ephraimcity https://t.co/q6Y06VBq3a +05/23/2018,Politicians,@MittRomney,RT @JAofUtah: What an amazing #jainaday at Edison with all our outstanding VIP #volunteers and a special thanks to @MittRomney for presenti… +05/15/2018,Politicians,@MittRomney,RT @Romney4Utah: HAPPENING FRIDAY: A conversation with Mitt & Ann about how principled leadership has guided them through challenging times… +05/15/2018,Politicians,@MittRomney,Prayers for the First Lady and for Harry Reid. Hoping for healing and recovery for both. +05/14/2018,Politicians,@MittRomney,"Robert Jeffress says “you can’t be saved by being a Jew,“ and “Mormonism is a heresy from the pit of hell.” He’s s… https://t.co/wwylmlryQN" +05/13/2018,Politicians,@MittRomney,"Ann and I reflect daily on the lessons our mothers, Lois and Lenore, taught us about life, faith, and family. Today… https://t.co/Meno7umxt6" +05/12/2018,Politicians,@MittRomney,"John McCain makes America great. Father, grandfather, Navy pilot, POW hero bound by honor, an incomparable and irre… https://t.co/U5Qdw78Mtn" +05/08/2018,Politicians,@MittRomney,My statement on the Iran Nuclear Deal. https://t.co/ypqBpaHp6H +04/23/2018,Politicians,@MittRomney,RT @Romney4Utah: MUST LISTEN: @MittRomney's first interview on Saturday's convention results and his plan for the US Senate GOP Primary in… +04/22/2018,Politicians,@MittRomney,Thank you to all the delegates who hung in there with us all day at the Convention. I appreciate the support I rece… https://t.co/O5eLKC9gNo +04/17/2018,Politicians,@MittRomney,"Barbara raised a family of service & character, stood by her beloved husband in the best & worst of times, and spok… https://t.co/K23OQgDBmo" +04/17/2018,Politicians,@MittRomney,"Celebrating Ann's birthday at home with some of our favorite ""neighbors"". Happy birthday, sweetie! https://t.co/jM3yoyhpZ3" +04/15/2018,Politicians,@MittRomney,"Barbara, thank you for your faith and family. Thank you for your conviction, character and fortitude. Thank you for… https://t.co/tlEwqzNQsu" +04/11/2018,Politicians,@MittRomney,"Love of country compelled Paul Ryan to accept the Speakership, a role he alone could fill at a critical time. He un… https://t.co/udQhRBpMVb" +04/05/2018,Politicians,@MittRomney,Tonight at 5p @AnnRomney & I will be at @Hale_Theater in Sandy. Hope you can join us! https://t.co/eMpZxXiBRD #TeamMITT +04/01/2018,Politicians,@MittRomney,"He is risen! He is risen! +Tell it out with joyful voice. +He has burst his three days’ prison; +Let the whole wide ea… https://t.co/eXpxkLHZ22" +03/22/2018,Politicians,@MittRomney,49 years today with the love of my life. https://t.co/GX6eQT60ye +03/21/2018,Politicians,@MittRomney,Incredible caucus night here in Holladay and across the state. Thank you to all who participated in their neighborh… https://t.co/XwduDmGPTZ +03/20/2018,Politicians,@MittRomney,I encourage all Utahns to attend and participate in tonight’s caucuses. Visit https://t.co/3xlRCOw1rp to find your… https://t.co/WUqrp5RoLP +03/19/2018,Politicians,@MittRomney,RT @AnnRomney: Out encouraging women to run as delegates at tomorrow's caucuses. We need more women's voices to be heard at the April Conve… +03/15/2018,Politicians,@MittRomney,"Today, I visited the office of LG @SpencerJCox to officially file for the US Senate race. In the month since I anno… https://t.co/uZY4lAyRGY" +02/21/2018,Politicians,@MittRomney,"Billy Graham lifted eyes toward heaven and instilled heaven’s values in hearts. The world mourns this man of character, this man of God." +02/20/2018,Politicians,@MittRomney,Thank you Mr. President for the support. I hope that over the course of the campaign I also earn the support and en… https://t.co/PyeE0ZhCD9 +02/19/2018,Politicians,@MittRomney,Never too many cooks in the kitchen. https://t.co/FWM33vHpT3 +02/17/2018,Politicians,@MittRomney,Out knocking doors this morning I met Paul and Orva Johnson—was thrilled to earn their support! https://t.co/879nuNRDJX +02/17/2018,Politicians,@MittRomney,Thanks Mayor Vanleeuwen for the warm welcome at Jeremiah’s Restaurant this morning! https://t.co/lyGmW1d3YZ +02/16/2018,Politicians,@MittRomney,Wonderful meeting with @UVU students today. It’s great to see Utah's college students politically active! https://t.co/5vE8tAbGjJ +02/16/2018,Politicians,@MittRomney,This morning I went to @GreenAcresDairy to see their operation and hear about the agricultural issues our hardworki… https://t.co/ivYx32tGdK +02/16/2018,Politicians,@MittRomney,RT @Romney4Utah: Join #TeamMITT. Check out https://t.co/24T6VWkXb1 to get involved and sign up for updates. +02/16/2018,Politicians,@MittRomney,I am running for United States Senate to serve the people of Utah and bring Utah's values to Washington. https://t.co/TDkas6gD2p +02/15/2018,Politicians,@MittRomney,"Out of respect for the victims and their families, I will not be making an announcement tomorrow about the Senate race. (2/2)" +02/15/2018,Politicians,@MittRomney,"As a father and grandfather, my heart aches for the victims of today’s tragic events. My prayers go out to all of t… https://t.co/hniQWm3nOS" +02/09/2018,Politicians,@MittRomney,"I stand in admiration of our Olympians' determination, sportsmanship, and patriotism. May they compete at their bes… https://t.co/WuRSZjaQnU" +02/02/2018,Politicians,@MittRomney,"With Jon Huntsman’s passing, we lose a Lion of Utah. Ann and I will profoundly miss our good friend’s broad smile,… https://t.co/y0D5qJ0i2s" +02/01/2018,Politicians,@MittRomney,Looking forward to making an announcement on February 15th about the Utah Senate race. https://t.co/OLXWZWREEK +01/29/2018,Politicians,@MittRomney,"RT @mcuban: It's time for @twitter to confirm a real name and real person behind every account, and for @facebook to to get far more string…" +01/24/2018,Politicians,@MittRomney,"Over the years, I’ve witnessed the courage of athletes in Olympic Games but I’ve never seen greater Olympic courage… https://t.co/XXvfSEQXxJ" +01/15/2018,Politicians,@MittRomney,The poverty of an aspiring immigrant’s nation of origin is as irrelevant as their race. The sentiment attributed to… https://t.co/7K23QCtXVG +01/03/2018,Politicians,@MittRomney,"Thomas S. Monson walked where Jesus walked, lifting the downtrodden, comforting the wounded, healing the sick, brig… https://t.co/1uVRBLi0xb" +01/02/2018,Politicians,@MittRomney,"I join the people of Utah in thanking my friend, Senator Orrin Hatch for his more than forty years of service to ou… https://t.co/PkJQLpAnPM" +12/31/2017,Politicians,@MittRomney,Profoundly moving to watch those seeking freedom in Iran. Patriots afar remind us of the patriots who won our own f… https://t.co/ZoRvRn4X7Y +12/25/2017,Politicians,@MittRomney,Merry Christmas from our family to you and your family. https://t.co/kep6SnNysO +12/14/2017,Politicians,@MittRomney,"Putin today blames US politics for icy relations. Get real: It was Russia invading sovereign nations, propping up d… https://t.co/8K2Y0pMOCz" +12/05/2017,Politicians,@MittRomney,"By sanctioning Russia, Olympic officials place honor and integrity above money and politics. Russia under Putin is… https://t.co/M2PqwbGGSf" +12/04/2017,Politicians,@MittRomney,Roy Moore in the US Senate would be a stain on the GOP and on the nation. Leigh Corfman and other victims are coura… https://t.co/HaUCH8TE9W +12/02/2017,Politicians,@MittRomney,"A very big week for Utah’s own Senator @OrrinHatch with tax reform, Bears Ears reversion, and a presidential visit." +11/28/2017,Politicians,@MittRomney,"RT @CharityVision: If 1,000 share this & donate at least $1, then we can give eyesight to THIS MANY PEOPLE! Donate at https://t.co/6AKC2tlH…" +11/24/2017,Politicians,@MittRomney,"RT @AnnRomney: On Thanksgiving, you can never have too many cooks in the kitchen! https://t.co/dVODluEBlF" +11/11/2017,Politicians,@MittRomney,"On this Veterans Day, let’s honor our servicemen and women and take a moment to reflect on the sacrifices they make to ensure our liberty." +11/10/2017,Politicians,@MittRomney,"Innocent until proven guilty is for criminal convictions, not elections. I believe Leigh Corfman. Her account is to… https://t.co/J7YLdKENtq" +11/08/2017,Politicians,@MittRomney,"Congratulations, Congressman-elect Curtis! https://t.co/5njtnbWCiH" +11/06/2017,Politicians,@MittRomney,RT @AnnRomney: Happy to vote by mail today for John Curtis for Congress. https://t.co/2KynT599Cx +11/06/2017,Politicians,@MittRomney,"Praying for the people of Sutherland Springs, who today were met with tremendous evil in their most sacred space." +10/31/2017,Politicians,@MittRomney,Overwhelmed today with thought of the pain and heartache suffered by victims and families in New York. God bless these fellow Americans. +10/17/2017,Politicians,@MittRomney,"Ran against him, sometimes disagree, but proud to be a friend of @SenJohnMcCain: hero, champion of character and last night, Lincolnesque." +10/12/2017,Politicians,@MittRomney,"Uncontrolled fires, loss of lives & property = failure of prime govt responsibility, underinvestment in helos, planes, personnel, systems." +10/02/2017,Politicians,@MittRomney,Ann and I pray for the dead and wounded in the Las Vegas massacre. Grateful for the heroes who risked their lives to help the innocent. +09/28/2017,Politicians,@MittRomney,Congratulations to Jon Huntsman Jr. on confirmation as Ambassador to Russia. His experience and clear-eyed resolve are badly needed. +09/25/2017,Politicians,@MittRomney,"Just spoke w/ fmr Gov @luisfortuno51: “PR on brink of humanitarian disaster."" USVI too. DC must put aside controversies, prioritize rescue." +09/25/2017,Politicians,@MittRomney,"Patriot, Uniter, Leader, Hero. https://t.co/Lf4WTO301f" +09/19/2017,Politicians,@MittRomney,"President Trump gave a strong and needed challenge to UN members to live up +to its charter and to confront global challenges." +09/15/2017,Politicians,@MittRomney,Harvard's about-face deserves credit; not easy to admit being wrong. +09/14/2017,Politicians,@MittRomney,"Well done, Mike. And abject shame on Harvard. https://t.co/SfI1HxDpdD" +08/30/2017,Politicians,@MittRomney,Harvey's historic devastation has been met with historic Texas compassion and resolve. A true testament to American character. +08/18/2017,Politicians,@MittRomney,"Having created a natl inflection point of consequence, POTUS must apologize & repudiate the racists. Full statement: https://t.co/6QXd9LWIE3" +08/16/2017,Politicians,@MittRomney,"No, not the same. One side is racist, bigoted, Nazi. The other opposes racism and bigotry. Morally different universes." +08/13/2017,Politicians,@MittRomney,"Racial prejudice, then hate, then repugnant speech, then a repulsive rally, then murder; not supremacy, barbarism." +07/20/2017,Politicians,@MittRomney,".@SenJohnMcCain’s patriotism and courage are vital to the nation. With the fearful news tonight, Ann and I pray for his recovery." +07/18/2017,Politicians,@MittRomney,"Spoke this morning with @SenJohnMcCain re: his health, tax reform, Syria. A true ""Timex hero”: He takes a licking and keeps on ticking." +07/04/2017,Politicians,@MittRomney,"Celebrating independent speech, worship, and association; independence from autocracy; these defining rights and more won at great cost." +07/01/2017,Politicians,@MittRomney,"RT @AnnRomney: This week, our granddaughter returned from her mission in France. So glad to have her home & so proud of her work over the p…" +06/21/2017,Politicians,@MittRomney,Congrats to @karenhandel on a big win in #ga6 tonight! We need more leaders like Karen in Washington. +06/14/2017,Politicians,@MittRomney,.@AnnDRomney and I are praying for a speedy recovery for @SteveScalise and those injured this morning’s shooting in Alexandria. +06/14/2017,Politicians,@MittRomney,"Congratulations to my friend @EdWGillespie on his #VAgov primary win. Here's to electing strong, conservative leaders in November." +06/10/2017,Politicians,@MittRomney,"#E2Summit17 is in the books. Thanks to our speakers, attendees, and volunteers for another great year in Deer Valle… https://t.co/jbAg0jVoBL" +06/09/2017,Politicians,@MittRomney,Follow @E2Summit for official updates from #E2Summit17 in Park City. https://t.co/lxQDaMPUDN +05/31/2017,Politicians,@MittRomney,Affirmation of the #ParisAgreement is not only about the climate: It is also about America remaining the global leader. +05/30/2017,Politicians,@MittRomney,"Our politics have become too base, too low, & too vulgar, but Kathy Griffin's post descends into an even more repugnant & vile territory." +05/29/2017,Politicians,@MittRomney,"Today, we remember the fallen, who, as Pres Reagan noted, were all different ""but they shared this in common: They loved America very much.""" +05/14/2017,Politicians,@MittRomney,"#happymothersday to @AnnDRomney, who with 24 grandchildren, continues to be an example of strength and grace to a 2… https://t.co/Fu4qyKhv9C" +04/27/2017,Politicians,@MittRomney,This year's @CharityVision project took us to Indonesia. https://t.co/6BBXvGgcd0 +04/16/2017,Politicians,@MittRomney,RT @AnnDRomney: From our family to yours: wishing you peace and joy as we celebrate the good news. https://t.co/9YFHNROgGG +03/28/2017,Politicians,@MittRomney,"Ann’s best-seller ""In This Together"" is out today in paperback. All her proceeds go to neurologic disease research. https://t.co/1dCYKTV5qd" +03/21/2017,Politicians,@MittRomney,Celebrating our 48 years of marriage with some of its products. https://t.co/geOGezQOpA +03/15/2017,Politicians,@MittRomney,I'm a fan of proposed Deputy Treasury Secretary Jim Donovan. A qualified person of integrity and a friend for many years. +02/28/2017,Politicians,@MittRomney,Thanks to the WashU students and @DeanNancyStaudt for hosting me this afternoon. Really enjoyed your thoughtful que… https://t.co/sJgyMt0jmJ +02/27/2017,Politicians,@MittRomney,"Congrats to my great-nephew, @BYUCougars center Eric Mika, on his 29 points and the win Saturday vs. Gonzaga. https://t.co/QxT5tiwkdK" +02/14/2017,Politicians,@MittRomney,"Happy Valentine’s Day to my sweetheart, Ann. https://t.co/EsUbFRfdAh" +02/13/2017,Politicians,@MittRomney,I strongly urge the Senate to confirm Andy Puzder as our next Secretary of Labor. https://t.co/Cc15lDS3V6 +02/08/2017,Politicians,@MittRomney,Thought-provoking plan from highly respected conservatives to both strengthen the economy & confront climate risks: https://t.co/U6kmrQTPth +02/07/2017,Politicians,@MittRomney,RT @SenJohnMcCain: Happy 105th birthday to my wonderful mother Roberta - we love you mom! https://t.co/63E912Imub +02/01/2017,Politicians,@MittRomney,An important and welcome choice: Judge Gorsuch will help restore much needed faithfulness to the Constitution. +01/16/2017,Politicians,@MittRomney,"MLK inspired my mom: ""We must forever conduct our struggle on the high plane of dignity and discipline."" https://t.co/HaBg7s7Qco" +01/08/2017,Politicians,@MittRomney,Betsy DeVos is a smart choice for education secretary. My op-ed in today’s @washingtonpost: https://t.co/5LmmbrHSt1 +12/25/2016,Politicians,@MittRomney,From our family to yours: Merry Christmas. https://t.co/9n2omOws7M +12/13/2016,Politicians,@MittRomney,It was an honor to have been considered for Secretary of State of our great country. https://t.co/FC9tB7rdoy +12/11/2016,Politicians,@MittRomney,Honored today to help ordain my grandson Wyatt a deacon in my church. https://t.co/NND17FQKpF +12/08/2016,Politicians,@MittRomney,"As a boy, John Glenn lifted my eyes to the heavens. Today, they welcome him back." +12/01/2016,Politicians,@MittRomney,"Thank you, @NHJennifer for your steady hand guiding the NH GOP. Your leadership will be missed." +11/28/2016,Politicians,@MittRomney,No greater joy than making discoveries together with grandchildren. https://t.co/NxIYsog6lC +11/24/2016,Politicians,@MittRomney,RT @AnnDRomney: Thankful today for a full house and full heart. https://t.co/KGfOO4LWW2 +11/15/2016,Politicians,@MittRomney,One of America's finest journalists gone far too soon. We will miss Gwen Ifill's brilliant voice and kind heart. +11/11/2016,Politicians,@MittRomney,Let us today honor the sacrifice and service of our heroic men and women in arms. #VeteransDay +11/09/2016,Politicians,@MittRomney,"Best wishes also for the GOP victors in the House, Senate & statehouses: may you govern with the high seriousness befitting our great nation" +11/09/2016,Politicians,@MittRomney,Best wishes for our duly elected president: May his victory speech be his guide and preserving the Republic his aim. +11/04/2016,Politicians,@MittRomney,Great to spend some time in Arizona in support of my friend @SenJohnMcCain. We need his leadership in the US Senate. https://t.co/BeI0R8sZe9 +11/04/2016,Politicians,@MittRomney,RT @thatgirlmarg: Gov. Romney: We need John McCain and the get-it-done-attitude #AZSen https://t.co/t9YWuoM8lP +10/27/2016,Politicians,@MittRomney,RT @LegalReform: WATCH: @MittRomney 's speech at the @LegalReform #ILRSummit yesterday at the @USChamber: https://t.co/3goeavBi1M https://… +10/26/2016,Politicians,@MittRomney,"Be sure to head to the polls for GOP Senate, House and statehouses; they are essential to defend and advance constitutional conservatism." +10/08/2016,Politicians,@MittRomney,Hitting on married women? Condoning assault? Such vile degradations demean our wives and daughters and corrupt America's face to the world. +09/26/2016,Politicians,@MittRomney,"I shook the hand of a legend, a man whose life left the world larger and kinder. https://t.co/Fd9zo5vYz0" +09/13/2016,Politicians,@MittRomney,"My good friend Ed Conard has a new book out today. Whether you agree with him or not, it’s a fascinating read. https://t.co/liNMtIZhhW" +09/11/2016,Politicians,@MittRomney,"Fifteen years on, we remember the innocent who perished on 9/11, and salute the brave who have served in defense of our nation since." +09/07/2016,Politicians,@MittRomney,I hope voters get to see former GOP Governors Gary Johnson and Bill Weld on the debate stages this fall. +07/08/2016,Politicians,@MittRomney,"May we stop seeing people as black, white, brown or wearing blue & see them instead as husbands, wives, sons, daughters & children of God." +07/04/2016,Politicians,@MittRomney,"Today, let’s pay tribute to the Founders who declared our independence and to the brave men and women who have fought to maintain it." +07/02/2016,Politicians,@MittRomney,I pray that the beacon that was Elie Wiesel will long guide us away from the shoals of hatred and racism. +06/24/2016,Politicians,@MittRomney,"Bob Semonian, the very proper publisher of the Improper Bostonian, passed away today. We will miss our fine friend." +06/22/2016,Politicians,@MittRomney,"Saving the Senate got a big boost with @marcorubio's decision today. Thank you, Marco for fighting on." +06/13/2016,Politicians,@MittRomney,"As we mourn the victims of Islamic terror in Orlando, Ann & I say a special prayer for the LGBT community that was the focus of this attack." +06/12/2016,Politicians,@MittRomney,Deeply saddened to learn of the horrific attack in Orlando. Our hearts go out to those who lost loved ones. +06/12/2016,Politicians,@MittRomney,"Just when I thought I was out, they pull me back in. #GiveSight25 https://t.co/wsZjPudxMJ" +06/12/2016,Politicians,@MittRomney,Glad to be on this side of the ropes for @CharityVision Fight Night 2016. #GiveSight25 https://t.co/R1qiQH2uxi +06/11/2016,Politicians,@MittRomney,"Thanks to our volunteers and speakers for making #E2Summit16 fun, informative and memorable. https://t.co/lWR8c9Iri7" +06/01/2016,Politicians,@MittRomney,"I know David French to be an honorable, intelligent and patriotic person. I look forward to following what he has to say." +05/30/2016,Politicians,@MittRomney,"""Today is the day we put aside to remember fallen heroes and to pray that no heroes will ever have to die for us again."" - Ronald Reagan" +05/11/2016,Politicians,@MittRomney,"Mr. Trump, tear down that tax wall. https://t.co/pQUZAJuE0k" +05/05/2016,Politicians,@MittRomney,"God be with you, Bob, till we meet again at Jesus' feet. https://t.co/0VVfCQTOW5" +05/04/2016,Politicians,@MittRomney,"Thanks to @tedcruz for making a fight for conservatism, American leadership and freedom." +04/22/2016,Politicians,@MittRomney,"RT @davidgregory: DG PODCAST: catch my revealing interview with @MittRomney. We talk 2016, faith, and more. https://t.co/OLFY8HxL9r https:/…" +04/18/2016,Politicians,@MittRomney,God bless you for a full and rapid recovery. https://t.co/AVfBGgQvFq +04/16/2016,Politicians,@MittRomney,"Happy birthday, @AnnDRomney, from me and from some of your favorite grandsons. https://t.co/QRB0PfGMGP" +04/09/2016,Politicians,@MittRomney,"With Barbara Anderson's passing, the Bay State has lost a tireless champion for tax fairness. https://t.co/NfgWbSjl89" +03/27/2016,Politicians,@MittRomney,"Thankful this day and every day for Jesus Christ who conquered death and gave us the Way, the Truth and the Life." +03/25/2016,Politicians,@MittRomney,"As a fmr missionary & a father & grandfather of missionaries, this is simultaneously heartbreaking & heartwarming. https://t.co/TKDzKVm8xn" +03/23/2016,Politicians,@MittRomney,President Obama's response is mind numbing. ISIS attacks are existential to every person who is killed! Stand with #Brussels. +03/18/2016,Politicians,@MittRomney,"RT @nytdavidbrooks: No, Not Trump, Not Ever https://t.co/E76Or5VaLu" +03/18/2016,Politicians,@MittRomney,"This week, in the Utah nominating caucus, I will vote for Senator Ted Cruz. https://t.co/e2lAkWrt4l" +03/08/2016,Politicians,@MittRomney,Trump has the best words. Take it from him. @AmFutureFund https://t.co/SC86cTts6E +03/06/2016,Politicians,@MittRomney,"With the passing of Nancy Reagan, God and Ronnie have finally welcomed a choice soul home. https://t.co/NjiOBT9xoQ" +03/03/2016,Politicians,@MittRomney,"If Trump had said 4 years ago the things he says today about the KKK, Muslims, Mexicans, disabled, I would NOT have accepted his endorsement" +03/03/2016,Politicians,@MittRomney,"Full remarks from today's speech are up on @Medium +https://t.co/SvtLxETPgd" +03/03/2016,Politicians,@MittRomney,ICYMI: Watch my speech on the state of the 2016 presidential race https://t.co/uJmonN0IwD +03/03/2016,Politicians,@MittRomney,He's playing the American public for suckers: He gets a free ride to the White House and all we get is a lousy hat. (2/2) +03/03/2016,Politicians,@MittRomney,"Here's what I know. Donald Trump is a phony, a fraud. His promises are as worthless as a degree from Trump University. (1/2)" +03/03/2016,Politicians,@MittRomney,...endurance & high purpose & into the will to defeat the enemies of freedom. Our anger was transformed into energy directed for good. (2/2) +03/03/2016,Politicians,@MittRomney,"I understand the anger Americans feel today. In the past, our presidents channeled that anger, and forged it into resolve, into... (1/2)" +03/03/2016,Politicians,@MittRomney,A person so untrustworthy and dishonest as Hillary Clinton must not become president. But a Trump nomination enables her victory. +03/03/2016,Politicians,@MittRomney,"She compromised our nat'l secrets, dissembled 2 families of the slain & jettisoned her most profound beliefs 2 gain presidential power (2/2)" +03/03/2016,Politicians,@MittRomney,"On Hillary Clinton's watch at the State Department, America's interests were diminished in every corner of the world. (1/2)" +03/03/2016,Politicians,@MittRomney,Trump relishes any poll that reflects what he thinks of himself. But polls are also saying that he will lose to Hillary Clinton +03/03/2016,Politicians,@MittRomney,All of them bear the responsibility of being an example for our children and grandchildren. (3/3) +03/03/2016,Politicians,@MittRomney,@MittRomney The president and yes the nominees of the country's great parties help define America to billions of people. (2/3) +03/03/2016,Politicians,@MittRomney,The president of the United States has long been the leader of the free world. (1/3) +03/03/2016,Politicians,@MittRomney,"Trump says he admires Vladimir Putin, while he has called George W. Bush a liar. That is a twisted example of evil trumping good." +03/03/2016,Politicians,@MittRomney,"Of remaining candidates the only serious policy proposals 2 deal w broad range of nat'l challenges we confront come from Cruz,Rubio & Kasich" +03/03/2016,Politicians,@MittRomney,"But if we make the right choices, America's future will be even better than our past and better than our present." +03/03/2016,Politicians,@MittRomney,the growing assertiveness of China and the nuclear tests of North Korea confirm that we live in troubled and dangerous times. (2/2) +03/03/2016,Politicians,@MittRomney,"At home, poverty persists and wages are stagnant. The horrific massacres of Paris and San Bernardino, the aggressions of Putin... (1/2)" +03/03/2016,Politicians,@MittRomney,https://t.co/c4mx17MQWw +03/03/2016,Politicians,@MittRomney,"Watch my speech on the state of the 2016 presidential race LIVE on Facebook at 11:30 AM, ET https://t.co/Si380LXWTB" +03/01/2016,Politicians,@MittRomney,Another #bombshell? Trump should authorize the @nytimes to release the transcript of his ed board interview. #WhatIsHeHiding +02/29/2016,Politicians,@MittRomney,A disqualifying & disgusting response by @realDonaldTrump to the KKK. His coddling of repugnant bigotry is not in the character of America. +02/28/2016,Politicians,@MittRomney,@realDonaldTrump Facts are stubborn. I released my back taxes on 1/24/12. No excuse for hiding your back taxes. https://t.co/P9vRhmEcF3 +02/26/2016,Politicians,@MittRomney,".@realDonaldTrump got it wrong: I released back taxes in Jan '12, early in primary process--just like he should do. https://t.co/VrLgnEnNI7" +02/26/2016,Politicians,@MittRomney,.@realDonaldTrump taxes for last 4+ years are still being audited. There are more #bombshells or he would release them. +02/26/2016,Politicians,@MittRomney,"No legit reason @realDonaldTrump can't release returns while being audited, but if scared, release earlier returns no longer under audit." +02/25/2016,Politicians,@MittRomney,"Methinks the Donald doth protest too much. Show voters your back taxes, @realDonaldTrump. #WhatIsHeHiding" +02/24/2016,Politicians,@MittRomney,"RT @TeamCavuto: Watch the full @MittRomney interview with Neil today on 'Your World': +https://t.co/Xrkn6KLci0 https://t.co/rp4mQMeUwh" +02/22/2016,Politicians,@MittRomney,The case for waiting for the next president to name the next SCOTUS nominee was well expressed by Joe Biden. https://t.co/CofEma012N +02/21/2016,Politicians,@MittRomney,.@JebBush followed his family's pattern of putting country above himself. I am proud to call him a friend. https://t.co/AxtPzgtqac +02/16/2016,Politicians,@MittRomney,"New president should nominate new SCOTUS justice. Dems may complain, but they should talk to @chuckschumer. https://t.co/Hydf5Gtq5k" +02/10/2016,Politicians,@MittRomney,Courage and unwavering determination have defined the @CarlyFiorina campaign. Thank you for standing up and standing tall. +02/10/2016,Politicians,@MittRomney,Thank you @ChrisChristie for pushing the race towards real and honest solutions. Your candor and integrity on the trail will be missed. +02/04/2016,Politicians,@MittRomney,Hey @ABC: put @CarlyFiorina on the debate stage! She got more Iowa votes than John and Chris. Don't exclude only woman. +01/29/2016,Politicians,@MittRomney,"RELEASE: My remarks from last night: “Happy birthday to you; happy birthday to you; happy birthday @SpeakerRyan…"" https://t.co/GnDXgmjn8h" +01/24/2016,Politicians,@MittRomney,"4 years ago today, I released my taxes; became issue. 2016 candidates should release taxes before first contests." +01/13/2016,Politicians,@MittRomney,".@nikkihaley criticized the anger, not the policy. It was courage you can count on." +01/11/2016,Politicians,@MittRomney,"Praying for @TheBostonPride's Denna Laing and her family. To support the Denna Laing Fund, go to https://t.co/rsBg6oRCbx. #14Strong" +01/08/2016,Politicians,@MittRomney,".@tedcruz is a ""natural born citizen."" Obama too. Even George Romney. This isn't the issue you're looking for." +12/28/2015,Politicians,@MittRomney,#SteinEriksen was a champion for the 2002 Olympic Winter Games just as he himself was a champion Olympic athlete. https://t.co/R5TphMfebb +12/24/2015,Politicians,@MittRomney,Merry Christmas from our family to yours. https://t.co/rbwDf8MJmD +12/21/2015,Politicians,@MittRomney,"While the race will miss his unique voice of truth and experience, the @LindseyGrahamSC fight must carry on." +12/18/2015,Politicians,@MittRomney,Important distinction: thug Putin kills journalists and opponents; our presidents kill terrorists and enemy combatants. +12/13/2015,Politicians,@MittRomney,"Great day with @TeamMcCain, @SenJohnMcCain and @CindyMcCain in Mesa, AZ yesterday. https://t.co/DeWybuEIih" +12/09/2015,Politicians,@MittRomney,"RT @AmericaRising: Just Launched: @AmericaRising's new ad ""Leading From Behind."" Watch it here: +https://t.co/FPYROYSvP4" +12/08/2015,Politicians,@MittRomney,"On Muslims, @realDonaldTrump fired before aiming. @SpeakerRyan is on target: https://t.co/vgK4dll0A0" +11/28/2015,Politicians,@MittRomney,Praying for those struck by the tragic violence in Colorado Springs. Grateful for bravery of first responders. +11/27/2015,Politicians,@MittRomney,"#Thanksgiving w all but @tromney and fam, who are on the other coast. Easy to get lost in this crew! #WheresWillard? https://t.co/5UTdVmaBrw" +07/02/2018,Politicians,@Schwarzenegger,"Welcome, @KingJames. https://t.co/Gy7JywiUwu" +06/29/2018,Politicians,@Schwarzenegger,"I know that my career would have been impossible without the media. But more importantly, journalists put their liv… https://t.co/FywYgvWvj6" +06/29/2018,Politicians,@Schwarzenegger,"Some days, I don't agree with the media. Some days, they are a fantastic sparring partner. But every day, journalis… https://t.co/eezIyqsqUC" +06/28/2018,Politicians,@Schwarzenegger,"I know the 80s were great for both of us, @realDonaldTrump. But when it comes to energy, our country needs to look… https://t.co/Uj8wZjl7le" +06/28/2018,Politicians,@Schwarzenegger,"So, @realDonaldTrump, if you want to be an action hero, let's retrain those coal miners for new, safer jobs. Don't… https://t.co/dJodqIa6H7" +06/28/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: You can’t bring back coal, just like you can’t bring back Blockbuster. So let’s train those coal miners for safer, bett…" +06/28/2018,Politicians,@Schwarzenegger,"And this, about California's 4.9% economic growth (more than double the US GDP growth): https://t.co/RB4XNncLnV" +06/28/2018,Politicians,@Schwarzenegger,"Read this, about California oil workers who have transitioned to better jobs in clean energy: https://t.co/CIAtQz3YKS" +06/28/2018,Politicians,@Schwarzenegger,"You can’t bring back coal, just like you can’t bring back Blockbuster. So let’s train those coal miners for safer,… https://t.co/jLJqYySVmZ" +06/28/2018,Politicians,@Schwarzenegger,@realchefrush Thank you for all you do! +06/25/2018,Politicians,@Schwarzenegger,RT @Crowdpac: Today's #SCOTUS rulings in the gerrymandering cases in Texas & North Carolina made it clear – we must continue the fight for… +06/22/2018,Politicians,@Schwarzenegger,This is shameful. Everyone involved in the cover-up should be out of a job by Monday. No American should be tricked… https://t.co/1yDogKmkDh +06/22/2018,Politicians,@Schwarzenegger,#NationalSelfieDay wouldn’t be complete without a cameo by Whiskey. https://t.co/JRyjVvbYrv +06/21/2018,Politicians,@Schwarzenegger,RT @happycath5: The Supreme Court won't decide on extreme partisan gerrymandering for now. But the war for fair districts is far from over.… +06/20/2018,Politicians,@Schwarzenegger,RT @Crowdpac: Here's how @Schwarzenegger is continuing the fight for #FairDistricts after this week's Supreme Court ruling: https://t.co/HW… +06/20/2018,Politicians,@Schwarzenegger,RT @SteveWestly: This misinformed hype that California’s top-two primary election system doesn’t work is centered in out-of-sync priorities… +06/20/2018,Politicians,@Schwarzenegger,The administration is right that we need to fix our immigration system. But if anybody is going to be in a cage whi… https://t.co/K7wnb3Mf11 +06/20/2018,Politicians,@Schwarzenegger,"As an immigrant, I know the magnetic power of America's greatness. As a former border Governor, I know the importan… https://t.co/HjGgeNXCOE" +06/19/2018,Politicians,@Schwarzenegger,Thank you. We don't have to agree on every policy to agree that politicians picking their voters is a scam that nee… https://t.co/btlduDOlNt +06/19/2018,Politicians,@Schwarzenegger,RT @AdamBKushner: Don’t listen to the establishment critics. California’s open primary works. By @Schwarzenegger and @RepRoKhanna https://t… +06/19/2018,Politicians,@Schwarzenegger,Establishment politicians don't like the uncertainty of California's open primary. But there isn't a voter in Ameri… https://t.co/CTDnNJO20I +06/19/2018,Politicians,@Schwarzenegger,RT @OpenPrimaryUSA: “It’s not about moving legislators in any one political direction. It’s about moving them closer to the voters.” @Schwa… +06/18/2018,Politicians,@Schwarzenegger,The fight continues. I've launched a @Crowdpac campaign to support the active redistricting reform campaigns in Mic… https://t.co/0WTmUVnDEU +06/18/2018,Politicians,@Schwarzenegger,"RT @MoveCAFWD: .@Schwarzenegger & @RoKhanna ""don’t bench-press the same amount"" but agree CA's top-two primary ""works best because it puts…" +06/18/2018,Politicians,@Schwarzenegger,RT @PostOpinions: Don’t listen to the establishment critics. California’s open primary works. https://t.co/i1Mr5b4ytB by @Schwarzenegger &… +06/18/2018,Politicians,@Schwarzenegger,"RT @rachaelmyrow: ""To those of you who are disheartened, let me remind you that California attempted to reform our redistricting process fo…" +06/18/2018,Politicians,@Schwarzenegger,"We elect our representatives to be public servants, not party servants. It's time to take California's open primary… https://t.co/AkJwZhxXyl" +06/18/2018,Politicians,@Schwarzenegger,"To those of you who are disheartened, let me remind you that California attempted to reform redistricting four time… https://t.co/ApsWwLVFZ0" +06/18/2018,Politicians,@Schwarzenegger,"RT @FSBarry: The bipartisan case for top two voting, via @Schwarzenegger & @RoKhanna -- ""uncertainty and increased competition is a feature…" +06/18/2018,Politicians,@Schwarzenegger,While I am disappointed that the Supreme Court has chosen not to decide on the merits of extreme partisan gerrymand… https://t.co/MbdFebnqGN +06/18/2018,Politicians,@Schwarzenegger,"RT @PostEverything: Don’t listen to the establishment critics, say former governor Arnold @Schwarzenegger and Rep. @RoKhanna. California’s…" +06/18/2018,Politicians,@Schwarzenegger,"Proud to join @RoKhanna to talk @OpenPrimaryUSA in the @washingtonpost. For those of us who embrace top-two, it’s n… https://t.co/RsojlJjpie" +06/18/2018,Politicians,@Schwarzenegger,RT @RoKhanna: Proud to make the case for open primaries with ⁦@Schwarzenegger⁩. ⁦@BernieSanders⁩ is correct that closed primaries are a tot… +06/12/2018,Politicians,@Schwarzenegger,"Happy birthday, @GeorgeHWBush. You’re my friend, my mentor, my hero. You’re a model of public service for all of us… https://t.co/64lcX4KNPY" +06/12/2018,Politicians,@Schwarzenegger,@realchefrush Your service to our country and work on behalf of veterans inspires me. I can’t wait! +06/12/2018,Politicians,@Schwarzenegger,"Chef Rush, the next time I’m in DC, we absolutely have to get together. https://t.co/GlgUS6EExe" +06/11/2018,Politicians,@Schwarzenegger,RT @WSJ: Arnold Schwarzenegger says the lesson from both his successes and failures is to 'never do anything that you're not really prepped… +06/11/2018,Politicians,@Schwarzenegger,RT @CLourosa: Arnold @Schwarzenegger says both his successes and failures have taught him to ‘never do anything that you’re not really prep… +06/11/2018,Politicians,@Schwarzenegger,"RT @chriskornelis: “Just like in bodybuilding, don’t go in the competition if you haven’t done the reps. The same is with anything else. Do…" +06/08/2018,Politicians,@Schwarzenegger,RT @wef: Do you agree with @Schwarzenegger when it comes to the economy and environment? Watch his session at #ism18: https://t.co/SpXwTOI4… +06/07/2018,Politicians,@Schwarzenegger,RT @wef: Arnold @Schwarzenegger is taking over our Instagram story. Watch here: https://t.co/vZqBjKt5QT https://t.co/swP5oaL1vD +06/07/2018,Politicians,@Schwarzenegger,"RT @Davos: ⚡️ “Arnold Schwarzenegger's suggestions for a cleaner world” - A conversation with @Schwarzenegger at #ism18 +https://t.co/B3XGd…" +06/06/2018,Politicians,@Schwarzenegger,You can catch up on my conversation at the @Davos meeting in this great thread! https://t.co/MbNFevuVRX +06/06/2018,Politicians,@Schwarzenegger,RT @wef: Live now: A conversation with Arnold Schwarzenegger on driving global climate action and the role of business in shaping the Fourt… +06/06/2018,Politicians,@Schwarzenegger,"Thank you, thank you, thank you to everyone who came to our @ASASafterschool fundraiser at my house and helped us r… https://t.co/81wVzLm3LT" +06/05/2018,Politicians,@Schwarzenegger,"Californians, whether you are to the left of me, to the right of me, or in the center, get out and vote. This is yo… https://t.co/43A5TSwWcy" +06/05/2018,Politicians,@Schwarzenegger,Nope. https://t.co/Db5Uwm25iT https://t.co/SHW7MJiwHc +06/05/2018,Politicians,@Schwarzenegger,"@GovHawaii Congratulations on your clean energy leadership, Governor! I'm so proud of Hawaii and I can't wait for my next visit." +06/05/2018,Politicians,@Schwarzenegger,"Congratulations to @GovHawaii and +@chrisleeforhi for your bold clean energy action! I hope you inspire leaders all… https://t.co/efGxyiKKmw" +06/05/2018,Politicians,@Schwarzenegger,RT @chrisleeforhi: @Schwarzenegger Hawai’i becomes 1st state committing to full carbon neutrality by 2045 as @GovHawaii signs our bill I in… +06/01/2018,Politicians,@Schwarzenegger,"Second workout of the day! The surgery comeback is all about reps, reps, reps. #thereisnomagicpill https://t.co/lBBJJ7rI98" +06/01/2018,Politicians,@Schwarzenegger,"If Republicans won't stand up for California's right to clean our air, and they won't stand up against regulations… https://t.co/JZYcle35Go" +06/01/2018,Politicians,@Schwarzenegger,"I eagerly await the administration’s regulations protecting pagers, fax machines, and Blockbuster. https://t.co/ykLJHT4OvK" +06/01/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: 2017 US GDP Growth: 2.3% +Your ""Huge"" Goal: 3% +2017 CA GDP Growth: 4.9% +Look at the scoreboard, Mr. President. Instead…" +05/31/2018,Politicians,@Schwarzenegger,Focus on your job. Focus on building the infrastructure this country needs. We don’t need your endorsements. We are… https://t.co/2kqeeESU7H +05/31/2018,Politicians,@Schwarzenegger,https://t.co/iPCOv89zun +05/31/2018,Politicians,@Schwarzenegger,"At the same time jobs and our economy boom, we have instituted the most stringent environmental protections. We pro… https://t.co/RdQdVQBcJ3" +05/31/2018,Politicians,@Schwarzenegger,We in California have doubled the growth rate that you have produced so far. We are the fifth largest economy in th… https://t.co/hnXYpnNWbk +05/31/2018,Politicians,@Schwarzenegger,"2017 US GDP Growth: 2.3% +Your ""Huge"" Goal: 3% +2017 CA GDP Growth: 4.9% +Look at the scoreboard, Mr. President. Inst… https://t.co/vuMdzdPJFo" +05/30/2018,Politicians,@Schwarzenegger,"The comeback continues. Training every day, doing my reps, reps, reps. Your support has really pumped me up, so I r… https://t.co/PbEWxrK5VT" +05/30/2018,Politicians,@Schwarzenegger,"Thank you @PEspinosaC for tagging me in. We have already terminated the plastic bags, so to #BeatPlasticPollution,… https://t.co/jMK2VnGrS8" +05/28/2018,Politicians,@Schwarzenegger,Today I am filled with gratitude for the selflessness of our men and women in uniform who have sacrificed to make t… https://t.co/JCmsZmabwT +05/16/2018,Politicians,@Schwarzenegger,@Klitschko You’re looking fantastic my friend! +05/16/2018,Politicians,@Schwarzenegger,I’m a simple guy so I have a simple remedy when people like Pruitt ignore or hide pollution: if you don’t have a pr… https://t.co/Eh063ICHwY +05/15/2018,Politicians,@Schwarzenegger,"RT @PEspinosaC: ""Climate Change is not a political issue, it is a health issue"", says @Schwarzenegger at Austrian World Summit #R20AWS htt…" +05/15/2018,Politicians,@Schwarzenegger,"With one of my heroes, @JaneGoodallInst, at our Austrian World Summit. Such an amazing leader! https://t.co/RQYpBRAHCH" +05/15/2018,Politicians,@Schwarzenegger,"Denmark PM @larsloekke emphasis on wind energy shows us that there are so many renewable, clean options. Denmark so… https://t.co/vXMRb4hJPJ" +05/15/2018,Politicians,@Schwarzenegger,"Love hearing from Norway PM @erna_solberg that even though their country is oil-rich, their domestic energy comes f… https://t.co/9ANnd4Hyr8" +05/15/2018,Politicians,@Schwarzenegger,President @vanderbellen and Chancellor @sebastiankurz joining together at @R20_AWS sends a message. The environment isn’t a political issue. +05/15/2018,Politicians,@Schwarzenegger,UN Secretary General @antonioguterres is inspirational and he is so right that a clean energy future is a profitable path! @R20_AWS +05/15/2018,Politicians,@Schwarzenegger,"RT @UN_Vienna: .@antonioguterres calls for global action to confront climate change in address to #AustrianWorldSummit, w/ @sebastiankurz,…" +05/15/2018,Politicians,@Schwarzenegger,RT @MarosSefcovic: All set for @R20_AWS. TUNE IN for its impressive opening now - https://t.co/VSt4jdtvTa. #ClimateAction https://t.co/BxuL… +05/15/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: Don’t miss the Austrian World Summit tomorrow. You can watch live, and I’ll be taking over the @R20_AWS twitter account…" +05/14/2018,Politicians,@Schwarzenegger,RT @UN_Spokesperson: A look behind-the-scenes with @antonioguterres @Schwarzenegger & @sebastiankurz as they prepare to talk climate action… +05/14/2018,Politicians,@Schwarzenegger,"Don’t miss the Austrian World Summit tomorrow. You can watch live, and I’ll be taking over the @R20_AWS twitter acc… https://t.co/hH2vj7hKaT" +05/12/2018,Politicians,@Schwarzenegger,RT @Schwarzenegger: .@SenJohnMcCain deserves respect. We must stretch for our better angels instead of falling toward our lowest instincts.… +05/12/2018,Politicians,@Schwarzenegger,.@SenJohnMcCain deserves respect. We must stretch for our better angels instead of falling toward our lowest instin… https://t.co/2ePolgugIu +05/09/2018,Politicians,@Schwarzenegger,Governor Deukmejian was a tremendous public servant to the people of California. My thoughts and prayers are with his family. +05/08/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: I couldn’t agree more. Luckily, there is a path to relevance: @NewWayCA, led by Republicans like @RockyChavez4CA and @C…" +05/08/2018,Politicians,@Schwarzenegger,There are other great Republicans like @Cunning_Jordan you should follow. +05/08/2018,Politicians,@Schwarzenegger,"I couldn’t agree more. Luckily, there is a path to relevance: @NewWayCA, led by Republicans like @RockyChavez4CA an… https://t.co/kOBPGnR5ns" +05/08/2018,Politicians,@Schwarzenegger,RT @karenkasler: .@Schwarzenegger toasted OH lawmakers w schnapps when they put Issue 1 on the ballot. Now the Governator is urging voters… +05/08/2018,Politicians,@Schwarzenegger,"Mr. Pruitt, I can assure you that California, and those who believe in a cleaner future, will win again. https://t.co/XCn8tlSR5c" +05/08/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: Ohio, get out to vote today and don’t forget to vote YES on Issue One. It’s time to terminate gerrymandering! @OhFairDi…" +05/08/2018,Politicians,@Schwarzenegger,"Ohio, get out to vote today and don’t forget to vote YES on Issue One. It’s time to terminate gerrymandering!… https://t.co/UccH8lljnr" +05/04/2018,Politicians,@Schwarzenegger,"Major update! It feels so good to be back and I remain so, so grateful to all of you for your healing thoughts! https://t.co/CY9hFKwSlq" +04/30/2018,Politicians,@Schwarzenegger,"Tune into James Cameron’s Story of Science Fiction tonight at 10/9c on @AMC_TV. Trust me, there is no better guide… https://t.co/SBmq4OGLJ6" +04/26/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: This was a double whammy for me @EmmanuelMacron. First, a fantastic speech. Second, at this stage in my recovery it was…" +04/25/2018,Politicians,@Schwarzenegger,"This was a double whammy for me @EmmanuelMacron. First, a fantastic speech. Second, at this stage in my recovery it… https://t.co/VxqPaoETci" +04/24/2018,Politicians,@Schwarzenegger,"President Bush, you are at the top of my mind. I am praying for a full recovery and I am here to pump you up if you… https://t.co/lZmXPwaDSG" +04/23/2018,Politicians,@Schwarzenegger,"#JamesShawJr, you proved that you don’t have to be a Terminator or Superman to be an extraordinary hero. Thank you… https://t.co/fCrHJob4x9" +04/18/2018,Politicians,@Schwarzenegger,"RT @WWE: ""He brought so much great inspiration to so many millions of children...He has made such great contributions to this country."" - A…" +04/18/2018,Politicians,@Schwarzenegger,"And away from the spotlights and attention, he had the biggest heart you can imagine. I’ll miss you, Bruno." +04/18/2018,Politicians,@Schwarzenegger,Bruno Sammartino was a legend. He was the American Dream personified. From his childhood in Italy hiding from Nazis… https://t.co/LmxGCsQV1g +04/17/2018,Politicians,@Schwarzenegger,"My thoughts are with President Bush and the entire Bush family, along with every person on this planet who was luck… https://t.co/e0uz9cvRvR" +04/16/2018,Politicians,@Schwarzenegger,https://t.co/VE6xvY2zp9 +04/16/2018,Politicians,@Schwarzenegger,She refused to let any of us go with her to the hospital and demanded that we keep enjoying ourselves. That’s Barba… https://t.co/Yhp7BscUUZ +04/16/2018,Politicians,@Schwarzenegger,"She put everyone else before herself, but let me tell you: when Barbara talked, you listened. Once, at Camp David,… https://t.co/SnqUpDPo9r" +04/16/2018,Politicians,@Schwarzenegger,"She’s strong, she’s smart, she’s classy, and she’s unfailingly kind and giving. She is a public servant in every se… https://t.co/8LvY0Hi67A" +04/16/2018,Politicians,@Schwarzenegger,Barbara Bush is a truly great American. She might be best known as the wife of one President and the mother of anot… https://t.co/QS2uRwzW2i +04/12/2018,Politicians,@Schwarzenegger,Thank you all for caring. We are moving forward! https://t.co/kvauldg3Mq +04/12/2018,Politicians,@Schwarzenegger,"#tbt to one of the rare moments I felt completely puny, with Wilt Chamberlain and Andre the Giant. I absolutely lov… https://t.co/GdRcboQzaQ" +04/10/2018,Politicians,@Schwarzenegger,"Catching up on the news. I’m saddened to hear about the loss of Justice Reinhardt. We didn’t always agree, but I di… https://t.co/D4ir7f5Xor" +04/10/2018,Politicians,@Schwarzenegger,RT @NextRevFNC: .@stevehiltonx talks to California Governor @Schwarzenegger about President Trump and the state of the GOP. #NextRevFNC htt… +04/10/2018,Politicians,@Schwarzenegger,"RT @HBO: Andre The Friend. + +@Schwarzenegger shares his #MyAndreStory. #AndreTheGiant https://t.co/7zAD0Y69rk" +04/04/2018,Politicians,@Schwarzenegger,I’m with @RepCurbelo. https://t.co/ft5t6A6dDg +04/03/2018,Politicians,@Schwarzenegger,"Bonnie Reiss was a true treasure to California, the United States, the world, and everyone she has ever met. My ful… https://t.co/SLeUafh7c3" +04/02/2018,Politicians,@Schwarzenegger,It’s true: I’m back! I went to sleep expecting to wake up with a small incision and woke up with a big one - but gu… https://t.co/60TNM8pdL1 +03/28/2018,Politicians,@Schwarzenegger,"RT @TameGerrymander: While @Schwarzenegger couldn't make it to our #SCOTUS rally today, he did send this message urge you all to keep up th…" +03/28/2018,Politicians,@Schwarzenegger,RT @sxsw: Watch Actor and Former Governor of California Arnold @Schwarzenegger's conversation with @politico's @IsaacDovere at #SXSW 2018 h… +03/28/2018,Politicians,@Schwarzenegger,"RT @vicenews: The Supreme Court is about to hear to a case on partisan gerrymandering. + +@GiannaToboni spoke to @schwarzenegger last year a…" +03/24/2018,Politicians,@Schwarzenegger,Don’t mock them because they are young or because you disagree. Learn from them. They’re giving you an example of h… https://t.co/MveYC51bU8 +03/24/2018,Politicians,@Schwarzenegger,"The students organizing #MarchForOurLives and I might not agree on everything, but their engagement inspires me. Th… https://t.co/drJb0U6rNe" +03/24/2018,Politicians,@Schwarzenegger,It was fantastic to sit down with @smerconish to chat about the future of the CA Republican Party and @NewWayCA. https://t.co/qYDFWhc39k +03/24/2018,Politicians,@Schwarzenegger,RT @smerconish: here's my full interview with @Schwarzenegger - a portion of which just aired @CNN @CNNi https://t.co/9SrJGhhoW1 @NewWayCA… +03/23/2018,Politicians,@Schwarzenegger,I just heard the terrible news. Nancy McFadden was a public servant in every sense of the word. She always put othe… https://t.co/hXPBqjzuwK +03/23/2018,Politicians,@Schwarzenegger,RT @omaze: BIG news from Arnold! Watch and make sure to enter—it's your LAST CHANCE: https://t.co/l2R6EltFUm https://t.co/RtFzWCUEU4 +03/22/2018,Politicians,@Schwarzenegger,"It’s your LAST CHANCE to join me for lunch, cigars and some life advice—all before we get to the choppa. ENTER:… https://t.co/LEm4t53AG7" +03/22/2018,Politicians,@Schwarzenegger,"It was such an honor to have breakfast with Xavier DeGroat, who is an incredible autism advocate. He truly inspires… https://t.co/8NvbwkKlZO" +03/21/2018,Politicians,@Schwarzenegger,"RT @NewWayCA: ""The soul of the Republican Party is worth fighting for."" #NewWay + +- @Schwarzenegger" +03/21/2018,Politicians,@Schwarzenegger,"Tune in now to join a conversation with me, @JohnKasich @ChadMayesCA and all the members of @NewWayCA about the fut… https://t.co/P6XCuZJ3JW" +03/20/2018,Politicians,@Schwarzenegger,"Tune in tomorrow at 9AM PDT to hear from me, @JohnKasich, @ChadMayesCA, and many more Republicans about the future… https://t.co/hiD6a70UUY" +03/19/2018,Politicians,@Schwarzenegger,"RT @JohnKasich: Looking forward to joining @Schwarzenegger on Wednesday, 3/21 - Tune in at Noon ET (9AM PT)! @NewWayCA + +Watch live at: htt…" +03/17/2018,Politicians,@Schwarzenegger,"RT @7NewsMelbourne: Movie star and former governor of California @Schwarzenegger toured the Arnold Fitness Expo in the city, meeting fans a…" +03/17/2018,Politicians,@Schwarzenegger,Congratulations Roelly on your first @ArnoldSports victory in Australia. You worked so hard to lose those 20 pounds… https://t.co/sj7nJP61gO +03/16/2018,Politicians,@Schwarzenegger,I am so darn proud of @CSchwarzenegger for the launch of her documentary “Take Your Pills” on Netflix. It puts a sp… https://t.co/G116xoX5Ek +03/14/2018,Politicians,@Schwarzenegger,"RT @YEARSofLIVING: ""They know they are killing people and they continue doing the same thing over and over.”-- @Schwarzenegger + +The fossil…" +03/12/2018,Politicians,@Schwarzenegger,Don’t miss my podcast with @IsaacDovere from @politico. We had a great time talking about my governing principles (… https://t.co/VoY5hBpSsc +03/12/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: We’re going to put the whole conversation out a day early, so you’ll be able to hear it tomorrow on OFF MESSAGE. Subscribe…" +03/11/2018,Politicians,@Schwarzenegger,RT @ncelenviro: Solving environmental challenges often requires innovative solutions. Easily access some of the nation's most inventive bil… +03/11/2018,Politicians,@Schwarzenegger,It was fantastic to talk politics with all of you at @sxsw! Thank you @IsaacDovere for a wonderful conversation. We… https://t.co/6BAP9mx4Wb +03/11/2018,Politicians,@Schwarzenegger,@campaignforleo I look forward to seeing you soon! +03/11/2018,Politicians,@Schwarzenegger,RT @sxsw: Actor and Former Governor of California Arnold @Schwarzenegger on the role of a politician at #SXSW 2018. https://t.co/tDsN9wt0sP +03/11/2018,Politicians,@Schwarzenegger,"RT @sxsw: Politico's @IsaacDovere will sit down with Arnold @Schwarzenegger to discuss effective governing, gerrymandering, and the future…" +03/11/2018,Politicians,@Schwarzenegger,RT @IsaacDovere: Little logistical change-up for our OFF MESSAGE interview with @Schwarzenegger at @SXSW - we'll now start today a little l… +03/10/2018,Politicians,@Schwarzenegger,"RT @Crowdpac: Together, @schwarzenegger and @commoncause have raised nearly $150K in their fight against gerrymandering. Donate to democrac…" +03/09/2018,Politicians,@Schwarzenegger,DO IT. https://t.co/8MBF5FIhGy +03/09/2018,Politicians,@Schwarzenegger,"#tbt to when I was 16, before I ever competed. https://t.co/Ozb17lZS8q" +03/07/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: Going to be in Austin for @sxsw? Join me Sunday for an edition of OFF MESSAGE on the road, with @Schwarzenegger live on st…" +03/06/2018,Politicians,@Schwarzenegger,Thank you for being the best apprentice ever and for always helping raise money for our @ASASafterschool kids. https://t.co/JsOCpWxblq +03/05/2018,Politicians,@Schwarzenegger,Don’t miss the @ArnoldSports story on Snapchat. Trust me. https://t.co/Y9llD6tAlv +03/05/2018,Politicians,@Schwarzenegger,"RT @JohnKasich: Great to see my friend @Schwarzenegger in Ohio to celebrate the bipartisan compromise on redistricting. + +This is another co…" +03/04/2018,Politicians,@Schwarzenegger,This sums up my weekend at the 30th Anniversary of the @ArnoldSports Festival. I loved bringing all of you with me… https://t.co/uKkmc4YRaw +03/04/2018,Politicians,@Schwarzenegger,Thank you for the compliment! I was worried you’d say it’s like getting a snap from your grandfather. https://t.co/frvc3VkLFB +03/04/2018,Politicians,@Schwarzenegger,Tune in for my live q and a at the @ArnoldSports Sunday Showcase. https://t.co/hFM5Mu5E1Q +03/04/2018,Politicians,@Schwarzenegger,RT @ArnoldSports: 2018 Arnold Classic Results: 1. William Bonac 2. Dexter Jackson 3. Cedric McMillan 4. Roelly Winklaar 5. Steve Kuclo 6. L… +03/04/2018,Politicians,@Schwarzenegger,Thanks for following! I love using it to bring you guys with me everywhere. https://t.co/H2hrHMRdIN +03/04/2018,Politicians,@Schwarzenegger,Watch the 30th Anniversary of the @ArnoldSports live NOW: https://t.co/qNgkJSGdfK https://t.co/aXClOFvwjx +03/03/2018,Politicians,@Schwarzenegger,Thanks to both of you for supporting our kids! https://t.co/TCb5vQg6nZ +03/03/2018,Politicians,@Schwarzenegger,"A lot of you tell me that I inspired you at some point in your life. But I need inspiration too, and that’s why I l… https://t.co/V4w3WaPWmA" +03/03/2018,Politicians,@Schwarzenegger,RT @huntleypenniman: Following @Schwarzenegger on Snapchat was one of the best decisions I’ve made all week (👻: arnoldschnitzel) 💪🏻 +03/02/2018,Politicians,@Schwarzenegger,"RT @ArnoldSports: Tonight: Arnold Classic 212, Fitness & Figure International FINALS 7-10pm. Watch LIVE: https://t.co/cTOQtxGyYU #ASF2018 #…" +03/02/2018,Politicians,@Schwarzenegger,RT @JohnKasich: A great day with Gov. @Schwarzenegger and our legislative leaders celebrating congressional redistricting reform here in Oh… +03/02/2018,Politicians,@Schwarzenegger,Love seeing the #YesonIssue1 campaign talking to voters about redistricting reform inside the @ArnoldSports Festiva… https://t.co/pfm8o35H7m +03/02/2018,Politicians,@Schwarzenegger,Join me and don’t forget to add your snaps from the @ArnoldSports Festival to Our Story on Snapchat so they can be… https://t.co/Cjj1oZs0kN +03/02/2018,Politicians,@Schwarzenegger,Congratulations to all of you. This is a big win for the people of Ohio. I was proud to celebrate with you today. M… https://t.co/DqVdxr8kxQ +03/02/2018,Politicians,@Schwarzenegger,"RT @TheArnoldFans: We're at the Arnold Classic having a blast! Sure, you could watch @Schwarzenegger on Snapchat (ArnoldSchnitzel) or you c…" +03/02/2018,Politicians,@Schwarzenegger,@JamesFallows Thanks Jim! Now the important thing is that Ohio voters pass Issue One on May 8. And that great journ… https://t.co/uMJ6kLMunX +03/02/2018,Politicians,@Schwarzenegger,Just having fun in the @ArnoldSports Festival getting a quick pump. https://t.co/GI6PvaD5oE +03/02/2018,Politicians,@Schwarzenegger,Stop by and chat with this great team when you see them at the @ArnoldSports Festival. #YesonIssue1 https://t.co/HMr5YjXhZd +03/02/2018,Politicians,@Schwarzenegger,"RT @karenkasler: If you were wondering why @Schwarzenegger was at the OH Statehouse doing shots with @JohnKasich, @CARosenberger, @LarryObh…" +03/02/2018,Politicians,@Schwarzenegger,RT @clevelanddotcom: LIVE VIDEO: Watch Arnold @Schwarzenegger meet with Gov. @JohnKasich and legislative leaders to celebrate passing a con… +03/02/2018,Politicians,@Schwarzenegger,The @ArnoldSports Festival is for everyone from 1 month to 120 years old. I’m so pumped up to be in Columbus for th… https://t.co/JrS18zDxct +02/28/2018,Politicians,@Schwarzenegger,I'm a little depressed today. I have to admit I got addicted to watching the Olympics every night. I want to congra… https://t.co/HWS0vnoDSX +02/27/2018,Politicians,@Schwarzenegger,"Via @LATSeema, I’m pumped up to join my good friends @JohnKasich and @ChadMayesCA next month in LA to discuss a pos… https://t.co/WaC46Oqwja" +02/27/2018,Politicians,@Schwarzenegger,"RT @LATSeema: Schwarzenegger, Kasich to team up in L.A. for group seeking to reform California GOP https://t.co/FPiT4y6aFq" +02/26/2018,Politicians,@Schwarzenegger,RT @ncelenviro: Discover some of the nation's greatest state legislation combatting environmental degradation and protecting public health… +02/22/2018,Politicians,@Schwarzenegger,"Congratulations @lindseyvonn! You are a true champion, and it is always a joy to watch you ski. You've inspired so… https://t.co/ULiRFGsJh2" +02/21/2018,Politicians,@Schwarzenegger,"RT @Schwarzenegger: If you really want to drain the swamp, you don’t do it by defending gerrymandering, which allows politicians to rig th…" +02/21/2018,Politicians,@Schwarzenegger,RT @ketch: @Schwarzenegger You can join @Schwarzenegger’s campaign to terminate gerrymandering on @Crowdpac at https://t.co/HlxIs86jVe. He… +02/20/2018,Politicians,@Schwarzenegger,RT @attn: @Schwarzenegger and here. https://t.co/Vy9qsNt3Ou +02/20/2018,Politicians,@Schwarzenegger,"RT @attn: @Schwarzenegger here, https://t.co/9ZwmTHni2B" +02/20/2018,Politicians,@Schwarzenegger,"RT @attn: @Schwarzenegger We agree, @Schwarzenegger. It's time to terminate gerrymandering just like you explained it for us here, https://…" +02/20/2018,Politicians,@Schwarzenegger,"If you really want to drain the swamp, you don’t do it by defending gerrymandering, which allows politicians to ri… https://t.co/msKJ8VI4Kx" +02/19/2018,Politicians,@Schwarzenegger,So proud to sit with Salma from @ASASafterschool courtside at the All-Star Game. Go #TeamLebron! Thanks for playing… https://t.co/0yzzSUmu3T +02/17/2018,Politicians,@Schwarzenegger,"Love this! @KingJames, thank you for supporting @ASASafterschool. https://t.co/Q2pQgnBqRE" +02/16/2018,Politicians,@Schwarzenegger,"RT @GrayForAssembly: We had a deal. Without Sites,Temperance you're breaking a promise and nullifying the will of the Voters who... https:/…" +02/14/2018,Politicians,@Schwarzenegger,"RT @mattiseman: Yesterday was the day I won Celebrity Apprentice. My boss, @Schwarzenegger, got me involved with his charity @ASASaftersch…" +02/12/2018,Politicians,@Schwarzenegger,"Like Lincoln said, we should seek the better angels of our nature and strive to remember that regardless of our pol… https://t.co/2ydpVA7ulF" +02/12/2018,Politicians,@Schwarzenegger,President Lincoln is one of my heroes. I keep this sculpture by my front door so that I’m reminded every day of the… https://t.co/nR3jNemj6Q +02/12/2018,Politicians,@Schwarzenegger,"Proud to hear a young Californian, @thisisrozzi, who blew us all away when she sang at the Capitol Christmas tree-… https://t.co/Z0CJvO3lSg" +02/08/2018,Politicians,@Schwarzenegger,"RT @AirResources: ICYMI: Governor Arnold @Schwarzenegger accepts #HaagenSmit Legacy Award for #climatechange leadership #AB32 + +“I’m proud o…" +02/08/2018,Politicians,@Schwarzenegger,#tbt to this guy coming to visit the State Capitol when I was Governor and taking over as national spokesman for… https://t.co/P7vp8f8YXb +02/08/2018,Politicians,@Schwarzenegger,"@AirResources Of all of our great environmental work, appointing @MaryNicholsCA was by far one of my smartest decis… https://t.co/YXG8mhmTuK" +02/08/2018,Politicians,@Schwarzenegger,"I am honored to receive the Haagen-Smit Award, named after a great immigrant to California, genius scientist, and p… https://t.co/mD165CtGFU" +02/08/2018,Politicians,@Schwarzenegger,We can't let our politics get in the way of fighting for a better system and a better Congress for all voters. Poli… https://t.co/bwuNQ99QwC +02/07/2018,Politicians,@Schwarzenegger,"Thank you @KingJames! No pressure, but at $5.50 per day of @ASASafterschool programming per kid, if you win, that’s… https://t.co/mHlvnn6pN7" +02/07/2018,Politicians,@Schwarzenegger,I am proud of you! Keep up the fantastic work! https://t.co/JF2f3TSSi2 +02/07/2018,Politicians,@Schwarzenegger,"RT @IsaacDovere: .@Schwarzenegger to people who criticize his gerrymandering crusade: +""your comments really worry me, because I think some…" +02/06/2018,Politicians,@Schwarzenegger,@FrankLaRose Thank you for your leadership on the issue! I'm very proud of you and Ohio. +02/06/2018,Politicians,@Schwarzenegger,It was such a bold choice to have them star in their own story - only Clint could make that decision. But all three… https://t.co/8dgEKUWsSQ +02/06/2018,Politicians,@Schwarzenegger,"Clint has done it again. “The 15:17 to Paris” is brilliant. Well-acted, flawlessly directed. Best of all, for the f… https://t.co/pvRjMxELw2" +02/06/2018,Politicians,@Schwarzenegger,"Congratulations to my friend @JohnKasich, the Ohio Legislature, and most of all, the great people of Ohio on this b… https://t.co/piw7DETrXo" +02/02/2018,Politicians,@Schwarzenegger,Add more weight. https://t.co/O3wmBxeBvs +02/02/2018,Politicians,@Schwarzenegger,Check out this piece about former oil workers in our Central Valley who have become iron and electrical workers in… https://t.co/qoPoez9Za4 +02/02/2018,Politicians,@Schwarzenegger,Here are two facts: pollution from fossil fuels is killing us and cleaning our air should be a bipartisan goal; and… https://t.co/Cnh9Y846mA +02/02/2018,Politicians,@Schwarzenegger,RT @smerconish: thank you to our latest contributor Arnold @Schwarzenegger exclusive to https://t.co/UCpx3FqWfX: To Drain The Swamp Termina… +01/30/2018,Politicians,@Schwarzenegger,RT @CommonCause: @LarryHogan @JohnKasich @Schwarzenegger @GovernorDavis .@Schwarzenegger (former Republican governor of California) and @Go… +01/29/2018,Politicians,@Schwarzenegger,"It’s time to put the voters’ interests above the politicians, because the politicians have proven they are incapabl… https://t.co/NRegcyoDt7" +06/13/2018,Politicians,@USAGSessions,.@RepMarkMeadows @Jim_Jordan You are wasting time with Rosenstein yanking your chain. https://t.co/aPHmP8DZS6 +06/06/2018,Politicians,@USAGSessions,"Rosenstein was willing to help @realDonaldTrump clean DOJ/FBI hence his letter, but then media and Dems pounced. Th… https://t.co/AA5J4qtm4Y" +06/06/2018,Politicians,@USAGSessions,"Comey firing was done in part by Rosenstein which means he can’t oversee Mueller, but if @jeffsessions removes Rose… https://t.co/lWZlySW8NP" +06/06/2018,Politicians,@USAGSessions,Easy for @realDonaldTrump to blame everything on @jeffsessions but if @POTUS had demanded that by day one all senio… https://t.co/sTbFuRjSoR +06/06/2018,Politicians,@USAGSessions,The IG recomended months ago that McCabe be prosecuted for lying. Now this coward - who sent Strzok to trip up… https://t.co/CkF8VqSP8W +04/19/2018,Politicians,@USAGSessions,.@RepMarkMeadows This should have been referred to a Special Counsel who like Mueller to Flynn would have easily sq… https://t.co/yRu4eIa573 +04/18/2018,Politicians,@USAGSessions,Good work by @RepDeSantis and others. But as long national TV hosts and “reporters” shill for Rosenstein and Muelle… https://t.co/46GLrHcqRh +04/16/2018,Politicians,@USAGSessions,.@charliekirk11 For the same reason McCabe and the @ClintonFdn are getting a pass. https://t.co/LvwzQuSlWq +04/16/2018,Politicians,@USAGSessions,It won’t happen; same as McCabe won’t be prosecuted for lying under oath and the @ClintonFdn is not being investiga… https://t.co/owJPTrqAp4 +04/12/2018,Politicians,@USAGSessions,His current boss. Trump. https://t.co/n23aD3vLNz +04/10/2018,Politicians,@USAGSessions,"They would not be raided. In fact, her lawyers helped in the conspiracy to obstruct an investigation yet faced no c… https://t.co/vIQdAmFXNs" +04/10/2018,Politicians,@USAGSessions,There is “a high standard” to get a FISA warrant too. Remember what happened? FBI played the court. https://t.co/KSzz5x4kWF +04/10/2018,Politicians,@USAGSessions,Can anyone explain why Sessions has not appointed a Special Counsel on the intelligence leaks? On the IRS thuggery… https://t.co/p64C6LcNQc +03/30/2018,Politicians,@USAGSessions,McCabe will have no legal consequences because Rod Rosenstein and Robert Mueller are out to protect their Obama era… https://t.co/DZ4VM81ipL +03/23/2018,Politicians,@USAGSessions,.@realDonaldTrump Why would Congress give you such a power over them? If they want you to veto an item they will ch… https://t.co/qUiw7IIzJs +03/18/2018,Politicians,@USAGSessions,Thank you @RepGoodlatte! https://t.co/GRpABW4NMl +03/18/2018,Politicians,@USAGSessions,This country is thankful to patriots like @RandPaul for speaking the truth when whoring one out to say what… https://t.co/aihkdXqgrx +03/12/2018,Politicians,@USAGSessions,Another beauty from our amazing AG. Giving surveillance abuser and liar Clapper a pass. @RepGoodlatte @TGowdySC are… https://t.co/9TkLgCzx44 +03/04/2018,Politicians,@USAGSessions,Great patriot @RepChrisStewart! https://t.co/OAoNW24XkH +02/28/2018,Politicians,@USAGSessions,There is no honor/integrity in an AG that doesn’t appoint a Special Counsel on the illegal classified leaks and on… https://t.co/s81inhw7z8 +02/28/2018,Politicians,@USAGSessions,.@JerryFalwellJr @JonahNRO There is no honor in accepting the AG job knowing you will recuse yourself from an issue… https://t.co/wp8tlZIxJC +02/28/2018,Politicians,@USAGSessions,"Let’s applaud the patriots @RepLeeZeldin @Jim_Jordan, @RepRooney @RepTedBudd @RepMattGaetz @RepMarkMeadows… https://t.co/tllshy8O9m" +02/19/2018,Politicians,@USAGSessions,"Correct @FLGovScott and @marcorubio should help reform the FBI process instead of joining the ratings brothel, vict… https://t.co/TUErUj0Y4H" +02/18/2018,Politicians,@USAGSessions,.@jaketapper Well @marcorubio and @realDonaldTrump don’t need to join your victim-exploitation-for-ratings to hear… https://t.co/mDV0tdmOTT +02/07/2018,Politicians,@USAGSessions,Patriot @DevinNunes says it as it is. Will Rod Rosenstein do something about these crimes? No because he is a cowar… https://t.co/ViDmnH6uHJ +02/06/2018,Politicians,@USAGSessions,.@JaySekulow Get Trump to fire the idiot Cobb! How many more people who worked like dogs for @POTUS need to suffer… https://t.co/ZlQhcR48cO +02/06/2018,Politicians,@USAGSessions,Applaud the patriots who despite mockery and “burning bridges” with sources keep the bell ringing against gov abuse… https://t.co/G8IqCKJBK1 +02/02/2018,Politicians,@USAGSessions,@realDonaldTrump #ReleaseTheMemo! +02/02/2018,Politicians,@USAGSessions,Thank you @Jim_Jordan. https://t.co/HLDliIKusP +02/01/2018,Politicians,@USAGSessions,Another patriot in @RepJeffDuncan trying to restore the integrity of the FBI and hold them accountable as outlined… https://t.co/5GvGnKspXI +02/01/2018,Politicians,@USAGSessions,Thank you for your bold patriotism @RepMarkMeadows. https://t.co/lWdXq3pEXX +01/30/2018,Politicians,@USAGSessions,Thank you @RepChrisStewart for your patriotism and courage. Nice to see people putting country over media accolades. https://t.co/7XbHtrNgqS +01/30/2018,Politicians,@USAGSessions,Today a Battalion of patriots led by @DevinNunes helped Congress execute its constitutional duty of having oversigh… https://t.co/AQ9twUPtJl +01/25/2018,Politicians,@USAGSessions,Go easy there @WalshFreedom or else CNN won’t pick you up next time you stand at the corner. https://t.co/ZRxNV9816F +01/25/2018,Politicians,@USAGSessions,First @JusticeOIG said he has the text. Then DOJ said they don’t have it. After the blow back to a potentially huge… https://t.co/cAlTLobTij +01/25/2018,Politicians,@USAGSessions,@CheriJacobus @scottrgordon @JohnJHarwood Bill like you is saying things to get on TV. He is putting TV ahead of principles. +01/25/2018,Politicians,@USAGSessions,@JohnJHarwood Media have always been susceptible to publicity whores who say things hoping to be picked up by CNBC for a few minutes. +01/25/2018,Politicians,@USAGSessions,See @JaySekulow @DonaldJTrumpJr? @johncardillo gets it! https://t.co/E19tvDV91x +01/25/2018,Politicians,@USAGSessions,"Get your head out of Cobb’s backside, @realDonaldTrump! Have these hacks - out to distract from Obama era crimes -… https://t.co/3tMUoi9QOP" +01/24/2018,Politicians,@USAGSessions,be proper for the Obama administration—or any administration—to use something like that to authorize further invest… https://t.co/wEpAPBA8kl +01/24/2018,Politicians,@USAGSessions,"More @ChuckGrassley: @Comey testified in 2017 that it was “salacious and unverified.” If it was unverified in 2017,… https://t.co/f4mW0ZuXIg" +01/24/2018,Politicians,@USAGSessions,"More @ChuckGrassley “First, despite all the hubbub, this is not all that unusual. Anyone can ask for a criminal inv… https://t.co/Wsi4LKcOGK" +01/24/2018,Politicians,@USAGSessions,More @ChuckGrassley “We saw Mr. Steele swearing one thing in a public libel suit against him in London. Then we saw… https://t.co/MV9OGc8WPZ +01/24/2018,Politicians,@USAGSessions,"@ChuckGrassley More @ChuckGrassley “Steele shared his, at least partially, Russian-based allegations far and wide.… https://t.co/ScscnqchIi" +01/24/2018,Politicians,@USAGSessions,"From @ChuckGrassley “Many of his sources for claims about the Trump campaign are Russian gov officials. So, Steele,… https://t.co/CxSPIaSRE0" +01/24/2018,Politicians,@USAGSessions,The future of our country is in the hands of patriots like @RepGoodlatte. https://t.co/tBjpm5PXbh +01/24/2018,Politicians,@USAGSessions,A great thanks to @Jim_Jordan who patriotically defends the honor of the FBI while many in DC stand at the corner h… https://t.co/9uqGp89NAc +01/24/2018,Politicians,@USAGSessions,Correct @RealJamesWoods and now a U.S. Attorney who saw nothing wrong with Hillary’s private server will be the FBI… https://t.co/LiepNDJk7a +01/24/2018,Politicians,@USAGSessions,Thank you @SenRonJohnson for your patriotism. https://t.co/1RjfDEehRW +01/23/2018,Politicians,@USAGSessions,Oh great. @WalshFreedom is at the corner again hoping to be picked up by CNN. https://t.co/OTu587LyUc +01/23/2018,Politicians,@USAGSessions,"Odd. @Comey and his team knew on their own to cover for @HillaryClinton, but Wray needs to be “pressured” publicaly… https://t.co/QIT54xvzBb" +01/23/2018,Politicians,@USAGSessions,"Wray’s bosses R Sessions-Trump. Secondly, McCabe’s wife money; McCabe whitewashing the emails and derailing the Fou… https://t.co/wVQjHg5Omd" +01/22/2018,Politicians,@USAGSessions,"IRS records? Missing. + +Hillary records? Missing. + +Strzok records? Missing. + +Page records? Missing. + +This is the M.O… https://t.co/4YDwwOr5FD" +01/19/2018,Politicians,@USAGSessions,.@ShannonBream Please ask @LindseyGrahamSC why he is not funding the fence he supported a decade ago? Why give citi… https://t.co/Z7ecbmsNRS +01/19/2018,Politicians,@USAGSessions,"For the sake of transparency and out democracy, Congress should #ReleaseTheMemo. We can’t have a law enforcement of… https://t.co/jmJ5eKACSC" +01/17/2018,Politicians,@USAGSessions,Hey @RepMattGaetz @DevinNunes @RepStefanik @RepMikeTurner @TGowdySC Don’t be useful idiots! Release FULL transcript… https://t.co/kxq1Z3ObkE +01/09/2018,Politicians,@USAGSessions,.@justinjm1 In an effort to help DOJ staff prepare for their own testimony. Obstruction. https://t.co/Dlwl2vKz4z +01/09/2018,Politicians,@USAGSessions,.@kylegriffin1 Big as in helping DOJ officials prepare their answers for upcoming testimony. https://t.co/DdFyRvRmkZ +01/09/2018,Politicians,@USAGSessions,"Simpson wrote it in the op ed; nothing new, and it confirms that the FBI did in fact work with the DNC funded Steel… https://t.co/MmMValYlJZ" +01/09/2018,Politicians,@USAGSessions,Thanks for tweeting this @MariaBartiromo. https://t.co/kPWVrsMFuA +01/07/2018,Politicians,@USAGSessions,.@dbongino No. https://t.co/xbogwFCkvY +01/07/2018,Politicians,@USAGSessions,Great question by @charliekirk11. https://t.co/nyjB6gJKG3 +01/04/2018,Politicians,@USAGSessions,Right on @johncardillo https://t.co/z0UamhojLB +01/04/2018,Politicians,@USAGSessions,Yes. https://t.co/y757bnglM4 +01/04/2018,Politicians,@USAGSessions,Can @MarkWarner explain why Mueller should be looking beyod collusion? How about we appoint a Special Counsel to ov… https://t.co/jVnUdklRbY +01/03/2018,Politicians,@USAGSessions,.@tedlieu Who gives a F... what Fusion GPS founders bark in the @nytimes? It is not the role of @RepGoodlatte or… https://t.co/B2zQvxrAfe +12/31/2017,Politicians,@USAGSessions,Thank you @LindseyGrahamSC! Obama people like @Comey were dishonest with the court about the sourcing of the dossie… https://t.co/jClwfSexy4 +12/28/2017,Politicians,@USAGSessions,Thanks @RepMattGaetz https://t.co/vZmj6P9G4f +12/28/2017,Politicians,@USAGSessions,The same DOJ that wasted no time appointing a Special Counsel. +12/28/2017,Politicians,@USAGSessions,This is the same DOJ that Sessions directed to investigate Obama’s treatment of Hizbollah and Mueller giving Uraniu… https://t.co/EIUEWD8clK +12/20/2017,Politicians,@USAGSessions,Look what we have here. Oh no @Rosie. https://t.co/ckkrugNQ8U +12/18/2017,Politicians,@USAGSessions,Thanks @ChrisRBarron https://t.co/XtO4MmCyjK +12/17/2017,Politicians,@USAGSessions,Thanks @DarrellIssa https://t.co/lcEH6rol27 +12/17/2017,Politicians,@USAGSessions,Thanks @RepDeSantis https://t.co/TWG826Pmfo +12/17/2017,Politicians,@USAGSessions,Thanks @AlanDersh https://t.co/Zt9CF2uuIV +12/17/2017,Politicians,@USAGSessions,Thanks @JudgeJeanine https://t.co/Icoq3MFqBt +12/17/2017,Politicians,@USAGSessions,Thanks @JohnCornyn https://t.co/WR8U1jPoj8 +12/17/2017,Politicians,@USAGSessions,Thanks @johncardillo https://t.co/xNTKWlq141 +12/17/2017,Politicians,@USAGSessions,Thanks @TuckerCarlson https://t.co/lm5cXevJNx +12/15/2017,Politicians,@USAGSessions,Thanks @KimStrassel https://t.co/Q7mcVUXSJL +12/15/2017,Politicians,@USAGSessions,"RT @RiskRewardFBN: Former FBI Assistant Director James Kallstrom on the Peter Strzok anti-Trump texts: ""He belongs in Leavenworth. He belon…" +12/15/2017,Politicians,@USAGSessions,Thanks @AmbJohnBolton https://t.co/1uZzBD2JOp +12/15/2017,Politicians,@USAGSessions,Thanks @newtgingrich https://t.co/QFJ0sCP0ll +12/15/2017,Politicians,@USAGSessions,RT @LouDobbs: Deep State Exposed- @CharlesHurt: This is the most sinister & corrupt Deep State that anyone could have ever imagined. If you… +12/14/2017,Politicians,@USAGSessions,Good point by @ggreenwald. https://t.co/rkFlEKh9ZO +12/14/2017,Politicians,@USAGSessions,"RT @ChuckGrassley: FBI owes answers abt ""insurance policy"" against Trump victory...& if nothing to hide, why would senior FBI leaders use s…" +12/13/2017,Politicians,@USAGSessions,Why @charliekirk11 are they wasting time on these investigations when Mueller is already out there? https://t.co/4QRFdYHwLe +12/11/2017,Politicians,@USAGSessions,"RT @RepMattGaetz: ""We don’t know if taxpayer funds were used to buy political opposition research to discredit the President. We don’t know…" +12/10/2017,Politicians,@USAGSessions,Once again @realDonaldTrump’s mistake of not nominating @JudgeJeanine as DAG is seen. For his own legacy and for DO… https://t.co/QG8l1URhS6 +12/10/2017,Politicians,@USAGSessions,Yes it did. https://t.co/4E5v8d3gAu +12/09/2017,Politicians,@USAGSessions,Thank you @LindseyGrahamSC https://t.co/1Z8jGKGeW2 +12/07/2017,Politicians,@USAGSessions,.@RepDeSantis Correct. Rosenstein acted against DOJ policy. https://t.co/QXJhE5fb0R +12/07/2017,Politicians,@USAGSessions,TrumpRussia was also an “ongoing investigation” yet Comey asked Rosenstein for permission to reveal it (while not r… https://t.co/FkLDQIy89z +12/07/2017,Politicians,@USAGSessions,Rosenstein authorized @Comey to say publicly that there is an investigation but here Wray together with Obama holdo… https://t.co/wv9AWupReN +12/07/2017,Politicians,@USAGSessions,Good work here by @RepGoodlatte of @HouseJudiciary https://t.co/FFD5KowTrd +12/07/2017,Politicians,@USAGSessions,“Highly critical” @jaketapper. How many panels did he have on this? How many times did he ask on TV what Obama knew… https://t.co/4u9G4AMjVO +12/05/2017,Politicians,@USAGSessions,Right on point @TuckerCarlson. All the American people get from @Comey @SallyQYates and @EricHolder when confronted… https://t.co/bTXVunBvCa +12/05/2017,Politicians,@USAGSessions,Bingo! Right on point @StefanMolyneux! @Comey @EricHolder @SallyQYates know very well what a politically-corrupt sh… https://t.co/H94RAZTvis +12/04/2017,Politicians,@USAGSessions,Why is @Comey into photos of FBI agents’ backsides? Ok not to show faces but this is his only alrernative? https://t.co/eyMeqEjJyD +12/04/2017,Politicians,@USAGSessions,.@johncardillo is right on point @EricHolder. https://t.co/dH8Bva4xIq +12/04/2017,Politicians,@USAGSessions,"In the face of partisan hype and anti-Russia hysteria, @AlanDersh summarizes in less than 70 seconds what a POTUS c… https://t.co/yVuirJOKw1" +12/04/2017,Politicians,@USAGSessions,So now @Comey quotes himself. https://t.co/eyMeqEjJyD +12/04/2017,Politicians,@USAGSessions,Wow https://t.co/xxt96TEIUe +12/03/2017,Politicians,@USAGSessions,Actually as @AlanDersh and former AG Mukasey pointed out cooperating witnesses are usually charged with serious cri… https://t.co/t0s8xzSXEf +12/03/2017,Politicians,@USAGSessions,Powerful words from @RepChrisStewart protecting the rights of American citizens while @RepAdamSchiff wants to tramp… https://t.co/a2MDIXSJ8L +11/30/2017,Politicians,@USAGSessions,The @FBI still has many @Comey holdovers who put protecting @HillaryClinton ahead of protecting the rule of law. Wh… https://t.co/mU95Aywp3J +11/27/2017,Politicians,@USAGSessions,President @realDonaldTrump is the head of the executive branch and can hire or fire whomever he wants at the DOJ an… https://t.co/3HyQg6UmXf +11/22/2017,Politicians,@USAGSessions,Why in HELL is he still number two at the FBI? Say again @TGowdySC why there is no need for a Special Counsel? https://t.co/tE1SISg6at +11/15/2017,Politicians,@USAGSessions,HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA IDIOT JEFF SESSIONS HA HA HA HA HA HA HA HA HA MESSE… https://t.co/EyP8zWInHc +11/14/2017,Politicians,@USAGSessions,Welcome Special Counsel @JudgeJeanine. +11/14/2017,Politicians,@USAGSessions,".@AndrewCMcCarthy The point is that Obama hacks at DOJ ran interference on all those matters. Therefore,… https://t.co/ehCMBDK7n3" +11/10/2017,Politicians,@USAGSessions,It appears that @RepMattGaetz is of the few in @HouseGOP who are bold enough to demand accountability over Mueller.… https://t.co/gSVlgYXd5W +11/02/2017,Politicians,@USAGSessions,.@SenatorBurr Russian-linked accounts include anyone who tweets in Russian even here in the US. This includes patri… https://t.co/FE3Q0oEDcN +11/02/2017,Politicians,@USAGSessions,.@SenatorBurr Diplomats of a foreign power meddled in the election by giving a DNC contractor dirt on Manafort yet… https://t.co/CuMGTYZMCy +11/02/2017,Politicians,@USAGSessions,.@TheDemCoalition Not remembering the details of a potential meeting or a conversation is not perjury. Just ask… https://t.co/jg0Gved8dz +11/01/2017,Politicians,@USAGSessions,.@RepChrisStewart Not even indirectly. It shows Mueller is desperate and abusive too. https://t.co/VynLaPhSqb +10/29/2017,Politicians,@USAGSessions,Where is @MarkWarner @RepAdamSchiff? Rosenstein and Mueller? The last two helped protect Hillary. They don’t want p… https://t.co/5Y4AZrJNA9 +10/29/2017,Politicians,@USAGSessions,".@maggieNYT There is still no proof that Russia hacked @johnpodesta. Besides, maybe Russia had a seperate score wit… https://t.co/Zbul9ceAPF" +10/27/2017,Politicians,@USAGSessions,.@ChuckGrassley @SenFeinstein @DevinNunes @SenatorBurr will investigate Y Obama’s DOJ blocked a CW from speaking to Congress. @RepAdamSchiff +10/27/2017,Politicians,@USAGSessions,.@RepAdamSchiff Trump put a stop to the political intervention by Obama holdovers yet you see a prob with Trump; no… https://t.co/LPGA8SvsEe +10/27/2017,Politicians,@USAGSessions,.@SharylAttkisson More incredible is that it was “investigated” by the same Admin that did this crime and - shock -… https://t.co/gVhVooLY4L +10/27/2017,Politicians,@USAGSessions,.@RepAdamSchiff 15 people were convicted of crimes in Whitewater and it took years to get there. @DevinNunes good w… https://t.co/4RQHjMstRr +10/26/2017,Politicians,@USAGSessions,.@johnrobertsFox @jaketapper Very good. DOJ works at the pleasure of POTUS. The political hacks Obama holdovers at… https://t.co/z1BbZmyJKO +10/25/2017,Politicians,@USAGSessions,Whoa! @seanmdav shows that the DNC dossier news is a ploy by FussionGPS to cover for other funders of the Dossier.… https://t.co/AKxBXeFDTe +10/25/2017,Politicians,@USAGSessions,".@ChuckGrassley Why should the AG not be able to do it? Between him, Mueller and Rosenstein, the AG was not at DOJ… https://t.co/p9rRxb5E0s" +10/25/2017,Politicians,@USAGSessions,"Well, @DonaldJTrumpJr meeting the Russian attorney was also only oppo research. Thanks for your help! https://t.co/iSIwd0ykpi" +10/25/2017,Politicians,@USAGSessions,.@maggieNYT True but the @nytimes went along with the agenda of the people pushing the dossier than trying to find… https://t.co/4qZA0eresp +10/24/2017,Politicians,@USAGSessions,"What did @DavidCornDC know and when did he know it? He was of the first to spread the DNC-paid, Russia disinformation content. Attn @JoeNBC" +10/22/2017,Politicians,@USAGSessions,Fusion GPS worked for Russia on Magnitsky and produced a dossier with Russia disinformation. Where is Mueller? @seanhannity @SenatorBurr +10/22/2017,Politicians,@USAGSessions,Reminder that @DavidCornDC helped spread Russia disinformation on @realDonaldTrump produced by a company who worked… https://t.co/zWxRl7wJ8Q +10/22/2017,Politicians,@USAGSessions,If only @RepAdamSchiff and @MarkWarner cared about Ukraine’s & Russia-through-Fusion efforts to interfere as they c… https://t.co/TSg16vsQNZ +10/18/2017,Politicians,@USAGSessions,"You would think the Judiciary Committee would spend every minute asking questions about DOJ covering for Hillary, but they troll AG instead." +10/18/2017,Politicians,@USAGSessions,Totally corrupt Bob Mueller turned a blind eye to the Russians bribing @BillClinton and the @ClintonFdn. Now @jaketapper downplays it. +10/10/2017,Politicians,@USAGSessions,Sad. @PreetBharara turned into a mid-night troll and he is making @ArthurSchwartz more popular. https://t.co/4YjDsttdaY +09/18/2017,Politicians,@USAGSessions,Selling gov favors; being reckless with classified info; conspiring to and actually delete emails; lying under oath… https://t.co/Sfc8lKaH0P +09/18/2017,Politicians,@USAGSessions,Interesting that @RobbyMook @johnpodesta and @HillaryClinton really think the Obama DOJ was unfair to them. Total p… https://t.co/u8OVUrvx0k +09/14/2017,Politicians,@USAGSessions,.@ChuckGrassley Your committee is ripping this administration apart with the Russia circus yet you have the nerve t… https://t.co/JhyoXJdZ1n +09/14/2017,Politicians,@USAGSessions,.@MaxBoot Clearly says in the constitution that @TomRooney decides what is a scandal... https://t.co/4FnLNf8uHY +09/01/2017,Politicians,@USAGSessions,No one is. DOJ is too busy going after @POTUS via Mueller and still busy protecting @HillaryClinton. Thank Jared fo… https://t.co/wgcMUE0hSf +08/14/2017,Politicians,@USAGSessions,But then gave antifa a pass. https://t.co/vc4JSHDRdH +08/13/2017,Politicians,@USAGSessions,.@tribelaw It is time to investigate any and all who drive violence including antifa. https://t.co/5yPYWFwIxz +08/09/2017,Politicians,@USAGSessions,.@RepAdamSchiff Why do you care more about alleged interference by Russia than actual interference by Ukraine? https://t.co/m7RgrxtIfd +07/31/2017,Politicians,@USAGSessions,.@AdamParkhomenko Why would you fire people who know details of crimes and abuse of power? They will have incentive… https://t.co/rJv7PaZ3PM +07/31/2017,Politicians,@USAGSessions,Whoa! Solid work by @KimStrassel! @RepAdamSchiff is hiding the real collusion. https://t.co/PCaBG3gY7h +07/30/2017,Politicians,@USAGSessions,Arrogance. @SallyQYates who obstructed an investigation into @HillaryClinton and protected the IRS says DOJ needs to be protected from POTUS +07/28/2017,Politicians,@USAGSessions,.@EmilyMiller So the Obama DOJ helped deny the murder of a Russian who was supposed to speak with the Feds. Tell me… https://t.co/kGQHmOJhRR +07/27/2017,Politicians,@USAGSessions,.@JoeNBC What if the opponent violated laws? Does the opponent get a pass simply because of being an opponent? https://t.co/vzDK5cERc2 +07/27/2017,Politicians,@USAGSessions,.@ashleyfeinberg Do you know that U.S. attorneys (part of the DOJ) can run investigations separate from the FBI and… https://t.co/UcoNUg8rG0 +07/25/2017,Politicians,@USAGSessions,.@mmurraypolitics because Obama's DOJ did not investigate its own IRS and never appointed a special counsel against its own @HillaryClinton. +07/25/2017,Politicians,@USAGSessions,.@mmurraypolitics Because McCabe was involved in Hillary׳s investigation; because Holder who helped Obama in 2008 n… https://t.co/vhlBUtfOso +07/25/2017,Politicians,@USAGSessions,.@RepAdamSchiff Why should Mueller be able to do what he wants? Because Rosenstein can't take pressure from media a… https://t.co/XCEv4617Yh +07/24/2017,Politicians,@USAGSessions,No @matthewamiller. @POTUS merely wants his opponents to be treated as he is. Equal treatment under the law is a be… https://t.co/VOBkTEI3ly +07/23/2017,Politicians,@USAGSessions,.@mitchellvii Where is Rosenstein? To avoid media blowback he is scared to tell Mueller 'stop the leaks or I stop y… https://t.co/GzcWdqX6Ge +07/21/2017,Politicians,@USAGSessions,.@EricHolder The U.S. is not a fascist dictatorship where it's forbidden to question the integrity of officials.… https://t.co/bA7PtRhIiP +07/21/2017,Politicians,@USAGSessions,".@JudyWoodruff Yet rather than stopping it, Obama's DOJ was busy defending @HillaryClinton and spying on Trump's pe… https://t.co/aq4o4G8Ybe" +07/20/2017,Politicians,@USAGSessions,.@Carrasquillo How can Mueller have independence when he speaks with @MarkWarner @RepAdamSchiff about his work? https://t.co/W41AqToHV3 +07/16/2017,Politicians,@USAGSessions,"Just ""X appropriate""? This is more direct help from Ukraine than anything from Russia! Where are the hearings,… https://t.co/n5s1kWQJo6" +07/07/2017,Politicians,@USAGSessions,"""Hacked election""? No one hacked the election @allinwithchris @chrislhayes. Enough with the lie @RepAdamSchiff. https://t.co/JguCI3uK0z" +07/07/2017,Politicians,@USAGSessions,".@MarkWarner @TGowdySC @SenatorBurr @ChuckGrassley @RepAdamSchiff @HurdOnTheHill + +Why not say it under oath in pub… https://t.co/61MeJtJScG" +07/06/2017,Politicians,@USAGSessions,".@JoeNBC @DavidCornDC If we know for a FACT that Russia interfered, why are @MarkWarner @RepAdamSchiff still investigating if Russia did it?" +07/02/2017,Politicians,@USAGSessions,"Fraud @MarkWarner keeps spreading smoke regarding Trump and Russia, then he says ""whoa, look at the smoke."" @SenTomCotton @FareedZakaria" +06/29/2017,Politicians,@USAGSessions,Amen @RossBarkan. Great line on @PreetBharara. https://t.co/c7jJXexrsS +06/27/2017,Politicians,@USAGSessions,"Get to the spying, unmasking and leaking by Obama officials! What the hell is wrong with @SenatorBurr? @marcorubio… https://t.co/hn3QQJgWAN" +06/27/2017,Politicians,@USAGSessions,!!! @RepSwalwell echoes @RepAdamSchiff that all they have is reason to investigate; no evidence of actual wrongdoing https://t.co/Oi7GZ7HhyF +06/26/2017,Politicians,@USAGSessions,Ha! Remember when @PreetBharara bragged that he had subpoena power while his brother is only selling diapers? Preet… https://t.co/Q8IGyMCclf +06/18/2017,Politicians,@USAGSessions,Sad. @PreetBharara went from having subpoena power to being a troll. https://t.co/0H08c8WmhU +06/18/2017,Politicians,@USAGSessions,"Great @RepAdamSchiff. This means you support investigating the spying, leaking and unmasking by @AmbassadorRice and… https://t.co/9pbUhBZ0V5" +06/18/2017,Politicians,@USAGSessions,All of U.S. is waiting what Mueller will do next because Rosenstein wanted to ease up the intimidating attacks from… https://t.co/9M0BLg7L2Q +06/17/2017,Politicians,@USAGSessions,The McCarthyism by @MarkWarner @RepAdamSchiff @RepSwalwell against Americans after months of no evidence is shameful. Have you no shame? +06/16/2017,Politicians,@USAGSessions,The @HouseGOP and @SenateGOP are chasing people against whom there is ZERO clues of wrong doing; let alone evidence of a specific crime. +06/16/2017,Politicians,@USAGSessions,It is a disgrace that a distinguished public servant has been intimidated into doing an investigation that has no reason or merit. +06/16/2017,Politicians,@USAGSessions,"Rosenstein appointed Mueller for no reason and on no merit but too shield himself, Rosenstein, from intimidation from the media & Democrats." +06/15/2017,Politicians,@USAGSessions,.@RepAdamSchiff So did Rosenstein yet you and Dems like @SenSchumer questioned Rosenstein's integrity until he appo… https://t.co/r76LgyTjkO +06/15/2017,Politicians,@USAGSessions,Sad. @ChuckGrassley thinks he got concessions from @SenFeinstein to look into Lynch. Worthless! Let's see her agree to investigate unmasking +06/15/2017,Politicians,@USAGSessions,.@DevinNunes @TGowdySC @RepStefanik @HurdOnTheHill Anyone with a drop of patriotism will ask those questions from former DHS Sec Johnson. +06/15/2017,Politicians,@USAGSessions,Obama's DHS Johnson needs to be asked why he failed to protect America from Russian interference and if he knows about unmasking activity. +06/15/2017,Politicians,@USAGSessions,Sick. @RepAdamSchiff and @DevinNunes agreed to bring Obama's DHS Johnson to testify next week but not Obama NatSec advisor @AmbassadorRice. +06/15/2017,Politicians,@USAGSessions,Sad. @ChuckGrassley says he wants to investigate Russia interference. Didn't the IC already conclude it's Russia? Isn't Mueller onto this? +06/15/2017,Politicians,@USAGSessions,WTF @SenatorBurr @MarkWarnerVA? Mueller's work needs to be independent. You have no business talking with Mueller! https://t.co/yMmffWMKGX +06/14/2017,Politicians,@USAGSessions,RT @USAGSessions: @SenKamalaHarris @jonathanchait https://t.co/v2Qpz2khQP +06/14/2017,Politicians,@USAGSessions,@SenKamalaHarris @jonathanchait https://t.co/v2Qpz2khQP +06/14/2017,Politicians,@USAGSessions,"Clearly, @SenKamalaHarris was trying to distract from the fact that there is no evidence of collusion, which is why… https://t.co/zheeWFHK2o" +06/13/2017,Politicians,@USAGSessions,@joshgerstein @mtracey Only because Comey has made a mess by going public in the first place. +06/13/2017,Politicians,@USAGSessions,".@MarkWarner @MarkWarnerVA is protecting @AmbassadorRice. BTW, Y would she not want to give her 2 cents on Russia?… https://t.co/uEkI4sSFwv" +06/13/2017,Politicians,@USAGSessions,A great day! https://t.co/UHpKlfOKzg +06/13/2017,Politicians,@USAGSessions,Big time. https://t.co/MSwbXC5IQp +06/13/2017,Politicians,@USAGSessions,"SICK. @elizabethforma tells @davidaxelrod that AG Sessions ""needs to be taken out""" +06/13/2017,Politicians,@USAGSessions,".@RepAdamSchiff + +Yes. +Maybe. +McCarthyism. + +This is all you have after 11 months of investigations? + +@SenAngusKing… https://t.co/lxd8RtJLjs" +06/13/2017,Politicians,@USAGSessions,.@RepAdamSchiff MUELLER will resign! His BFF Comey said POTUS was not under investigation. Mueller's staff is taint… https://t.co/t8nWUzBuET +06/12/2017,Politicians,@USAGSessions,"Yes, @ByronYork. It is a conflict! https://t.co/GDLhgw8k9O" +06/12/2017,Politicians,@USAGSessions,.@HillaryClinton was not interviewed under oath and Comey made his announcement the first businees day after the interview. The fix was in! +06/12/2017,Politicians,@USAGSessions,"Comey admits he was going to close the @HillaryClinton case; he just wanted to do it ""credibly."" The fix was in. He… https://t.co/OmAIzOrXae" +06/12/2017,Politicians,@USAGSessions,"Mueller, Comey are close which puts a cloud over Mueller's work. Will Mueller investigate Comey's violations as outlined by @JonathanTurley?" +06/11/2017,Politicians,@USAGSessions,OPINION: Robert Mueller should step aside because friends shouldn’t be investigating friends. https://t.co/tMNa75M8QN +06/11/2017,Politicians,@USAGSessions,Stop the witch hunt @SenatorLeahy! A year into investigations and there is still no evidence of collusion. Listen t… https://t.co/Nka5YZBVT6 +06/11/2017,Politicians,@USAGSessions,"Surely, @SenatorLeahy will heed the advice of fellow Dem @SenFeinstein and get to the bottom of the real story - Ob… https://t.co/0bUSSxLm4d" +06/11/2017,Politicians,@USAGSessions,"@MarkCorallo1 Interesting, @PreetBharara gleefully met the president in January; as did Comey. Suddenly they became… https://t.co/4qWhxeqXxZ" +06/11/2017,Politicians,@USAGSessions,"Oof, @FrankQuattrone. https://t.co/E1TRa8gYrH" +06/11/2017,Politicians,@USAGSessions,.@yashar of course not because @EricHolder did @BarackObama's dirty work such as ordering @PreetBharara to free the… https://t.co/tmf0bWP3mG +06/11/2017,Politicians,@USAGSessions,.@PreetBharara acts as if he was so uneasy to get a call from POTUS but remember how gleeful Bharara was after meet… https://t.co/MR6l1g2yX9 +11/26/2017,Politicians,@RepJohnConyers,I am grateful to my colleagues who have called for due process before weighing judgment. I would urge them to conti… https://t.co/kMqhUYuCoM +11/26/2017,Politicians,@RepJohnConyers,"I’ll never allow that legacy – a legacy I owe to my father John Conyers, Sr., who integrated labor unions, or my… https://t.co/floxETEKiK" +11/26/2017,Politicians,@RepJohnConyers,I am proud and fortunate to be part of a legacy of more than 50 years of fighting for civil rights and making our c… https://t.co/3DBwddXG02 +11/26/2017,Politicians,@RepJohnConyers,"I cannot in good conscience allow these charges to undermine my colleagues in the Democratic Caucus, and my friends… https://t.co/8K9heki4Xm" +11/26/2017,Politicians,@RepJohnConyers,But I have come to believe that my presence as Ranking Member on the Committee would not serve these efforts while… https://t.co/No5xgt2BaQ +11/26/2017,Politicians,@RepJohnConyers,These challenges could not be more pressing in the face of an Administration that cares little for the rule of law… https://t.co/tssA4XHAHe +11/26/2017,Politicians,@RepJohnConyers,"To be clear, I would like very much to remain as Ranking Member. There is still much work to be done on core concer… https://t.co/lmHi7L1sW8" +11/26/2017,Politicians,@RepJohnConyers,"I deny these allegations, many of which were raised by documents reportedly paid for by a partisan alt-right blogge… https://t.co/FQ9csOMzDg" +11/26/2017,Politicians,@RepJohnConyers,"After careful consideration and in light of the attention drawn by recent allegations made against me, I have notif… https://t.co/VgB0ZhaiEJ" +11/18/2017,Politicians,@RepJohnConyers,"I miss Barack Obama + +#2017In4Words https://t.co/WVhqWhywjV" +11/17/2017,Politicians,@RepJohnConyers,"Folks, this is the same policy that was strictly enforced, at the request of @SenateGOP throughout President #Obama… https://t.co/j0mND9XOfy" +11/17/2017,Politicians,@RepJohnConyers,"Happening tomorrow! My annual Veterans Resource Fair. Come join to get valuable information on housing, employment,… https://t.co/OMNjNsA6bw" +11/16/2017,Politicians,@RepJohnConyers,"Hello everyone. I'm hosting a Veterans Resource Fair this Saturday, November 18, 11:00AM at Piquette Square. + +Plea… https://t.co/eNzlMTNUTh" +11/16/2017,Politicians,@RepJohnConyers,"If you have student loans, you’ve benefited from an interest break. + +@HouseGOP is cutting that because to give… https://t.co/DhLHaFwNUE" +11/16/2017,Politicians,@RepJohnConyers,"I will be calling on the US @StateDept to investigate why #WendellBrown is still in a Chinese jail. + +We must do ev… https://t.co/16NVX3XZTe" +11/16/2017,Politicians,@RepJohnConyers,"When the #GOPTaxScam explodes the deficit, #Republicans will call for spending cuts to critical initiatives (e.g.… https://t.co/NCzERK7Ccx" +11/16/2017,Politicians,@RepJohnConyers,The @HouseGOP keep spewing #AlternativeFacts about its #GOPTaxScam. They just want to give a tax break to the compa… https://t.co/Gsv8OkCP34 +11/16/2017,Politicians,@RepJohnConyers,"FACT: 36 MILLION middle class families would see their taxes go up under the #GOPTaxScam. + +@HouseGOP, you simply c… https://t.co/mkVrTBYHS5" +11/15/2017,Politicians,@RepJohnConyers,"#HR4140, No Unconstitutional Strike on #NorthKorea Act, w over 70 bipartisan cosponsors in the House & Senate, woul… https://t.co/hHgIBMVEtB" +11/15/2017,Politicians,@RepJohnConyers,"Finally, @realDonaldTrump must publicly acknowledge that he is constitutionally-barred from launching a preemptive… https://t.co/ivhLlih9cE" +11/15/2017,Politicians,@RepJohnConyers,It is now @realDonaldTrump’s responsibility to control his impulsive behavior and give diplomacy a chance to work.… https://t.co/51uHy6L1j5 +11/15/2017,Politicians,@RepJohnConyers,"Despite his unhelpful comments, I am quite encouraged to see that the @WhiteHouse has dispatched negotiators to tal… https://t.co/smdFMGiv61" +11/15/2017,Politicians,@RepJohnConyers,"Pleased that @realDonaldTrump was able to avoid reckless threats during his Asia trip, as I urged him to do. + +Unfor… https://t.co/iZISC3iHZY" +11/15/2017,Politicians,@RepJohnConyers,"The @HouseJudiciary Committee has the privilege of debating some of the most important, and often controversial, is… https://t.co/kGZr1PZnWb" +11/15/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🆕 @DavidCicilline, @RepJohnConyers Push for Hearing on White House Political Interference in Telecom, Media Industries🆕…" +11/14/2017,Politicians,@RepJohnConyers,How many times? #SessionsHearing #SessionsTestimony https://t.co/9bySQuELim +11/14/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: The letter from @TheJusticeDept was sent to the Majority, without the customary and appropriate notice to @RepJohnConye…" +11/14/2017,Politicians,@RepJohnConyers,"Virtually every Clinton-related matter that President Trump complains about has been well-litigated, carefully exam… https://t.co/dfsPdtMoyX" +11/14/2017,Politicians,@RepJohnConyers,"Further, we cannot refer an investigation to a second special counsel if we lack the evidence to predicate a crimin… https://t.co/Xoh9SF0R9d" +11/14/2017,Politicians,@RepJohnConyers,"The fact that this letter was sent to the Majority, without the customary and appropriate notice to me, indicates t… https://t.co/dT0l5hr45k" +11/14/2017,Politicians,@RepJohnConyers,"RT @RepJayapal: @HouseJudDems Lots of ""I don't recall"" from AG Sessions in response to @RepJerryNadler's questions about the Trump campaign…" +11/14/2017,Politicians,@RepJohnConyers,"RT @RepJayapal: @HouseJudDems @RepJohnConyers Rep. Conyers asked yes/no questions: +• Is it common in a democracy to use the justice system…" +11/14/2017,Politicians,@RepJohnConyers,Read my entire statement from today's hearing. https://t.co/U8hf2vgjfj +11/14/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: Watch it live today at 10AM on https://t.co/n4BJFROwXl https://t.co/QVuvZpZCyT +11/13/2017,Politicians,@RepJohnConyers,"RT @USRepRickNolan: America's support for this Saudi-led war in Yemen is: + +1. Unauthorized by Congress, +2. Contributing to horrific starva…" +11/13/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Under AG #Sessions, the @TheJusticeDept has taken a sharp turn away from the evidence-based policies & priorities establi…" +11/08/2017,Politicians,@RepJohnConyers,RT @RepRaulGrijalva: Here's a brief history of the Navajo Nation. #NativeAmericanHeritageMonth https://t.co/KMXS77ATbV +11/08/2017,Politicians,@RepJohnConyers,"RT @HouseJudiciary: @RepGoodlatte @RepJohnConyers @JimPressOffice @JacksonLeeTX18 @RepRutherfordFL .@RepJerryNadler: ""The USA Liberty Act r…" +11/08/2017,Politicians,@RepJohnConyers,"RT @HouseJudiciary: @RepGoodlatte .@RepJohnConyers: ""The USA Liberty Act provides both security and privacy, and gives the government the t…" +11/08/2017,Politicians,@RepJohnConyers,The central thesis of the USA Liberty Act is that we can have both security and privacy. We can give the governmen… https://t.co/iLJxcdb70r +11/08/2017,Politicians,@RepJohnConyers,Do you or your friends have college debt? #GOPTaxScam makes it harder for Americans to afford to higher education https://t.co/chyEwsREYy +11/08/2017,Politicians,@RepJohnConyers,Last year 8.8 million Americans received a tax deduction that helped them afford health care expenses. #GOPTaxScam… https://t.co/N9BBoPiKvD +11/08/2017,Politicians,@RepJohnConyers,"Who are the Americans that end up paying more under the #GOPTaxScam? + +Middle-class families, teachers, Americans pa… https://t.co/xBw9IOxWhp" +11/07/2017,Politicians,@RepJohnConyers,I am incredibly saddened to hear of the passing of my friend Judge Anna Diggs Taylor https://t.co/xUaXpt9T1c +11/07/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 Ahead Of @TheJusticeDept Oversight Hearing, House Judiciary Committee Dems Put #Sessions On Notice + +https:/…" +11/07/2017,Politicians,@RepJohnConyers,"A ground invasion of North Korea would prove catastrophic and could result in thousands, if not millions of deaths. https://t.co/W5hM52rLba" +11/07/2017,Politicians,@RepJohnConyers,Pleased that Judge Morin dropped this case after I expressed concerns ab the threat it posed to #freedomofspeech. https://t.co/AmS5zMWNQa +11/07/2017,Politicians,@RepJohnConyers,"I hope that the @HouseJudiciary will take up the issue of #gunviolence, including an examination of #bumpstocks, as… https://t.co/7FoToUBweZ" +11/07/2017,Politicians,@RepJohnConyers,"An infusion of 50,000 people could push Haiti to an even higher level of instability. #SaveTPS" +11/07/2017,Politicians,@RepJohnConyers,"Haitians with temporary protected status working in the US contribute millions of dollars to Social Security, Medicare & Medicaid. #SaveTPS" +11/07/2017,Politicians,@RepJohnConyers,Ending temporary protected status for Haitians could put them at risk of poverty and illness. #SaveTPS +11/06/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: Join us tomorrow morning at 10AM for a subcommittee hearing examining 'Anti-Semitism on College Campuses.' https://t.co/7… +11/06/2017,Politicians,@RepJohnConyers,Ending #TPS will have wide-ranging & negative consequences. Please read more here: https://t.co/3mRu0GesvE +11/06/2017,Politicians,@RepJohnConyers,The mass deportation of 325K #TPS recipients would cost taxpayers more than $3 billion & upend thousands of communities. We must #SaveTPS. +11/06/2017,Politicians,@RepJohnConyers,"#TPS holders are vetted, legally present and authorized to work in our country. They are our neighbors, friends, coworkers. #SaveTPS" +11/06/2017,Politicians,@RepJohnConyers,"DYK: #TPS was est. through Congress by the Immigration Act of 1990? It covers nearly 325,000 TPS holders: https://t.co/1VTRstebEn #SAVETPS" +11/06/2017,Politicians,@RepJohnConyers,"RT @NancyPelosi: No matter how you look at it, the reality is that the #BillionairesFirst tax plan will explode the debt. #CNNSOTU https://…" +11/06/2017,Politicians,@RepJohnConyers,"My bill, #HR4140 The No Unconstitutional Strike on #NorthKorea Act, has over 60 cosponsors in the House, and has su… https://t.co/nqm5e9JQ0h" +11/05/2017,Politicians,@RepJohnConyers,"Open enrollment started Nov1st, and ends Dec 15th. There isn’t much time, so go to https://t.co/i0pyJbPXmH now, to… https://t.co/se2ipW4V9d" +11/04/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Thank you @RepJohnConyers for your leadership against an unconstitutional unprovoked attack on #NorthKorea. #NotoNKWar h… +11/04/2017,Politicians,@RepJohnConyers,"@HouseGOP & @SenateGOP may not want you to know, but @HouseDemocrats & @SenateDems do. It’s time to #GetCovered at… https://t.co/49K2ORvJVz" +11/04/2017,Politicians,@RepJohnConyers,I miss @BarackObama. https://t.co/wFxSWIKLNu +11/03/2017,Politicians,@RepJohnConyers,Hope this means I can count on you to oppose #Trump’s proposed cuts for low-income utility bill assistance:… https://t.co/jWYd2d2bvn +11/03/2017,Politicians,@RepJohnConyers,RT @RepRoKhanna: .@RepJohnConyers & I penned an oped on voting rights. We must protect the right to vote of all Americans .https://t.co/MSE… +11/03/2017,Politicians,@RepJohnConyers,"Oh I just wanted to share this wonderful flashback with my good friend #shirleychisholm. + +Happy #Friday, folks ✌🏽 https://t.co/PCswSl1qug" +11/03/2017,Politicians,@RepJohnConyers,A flashback to this Wednesday during a committee hearing on the so-called unconstitutionality of Obama's Executive… https://t.co/oQUGGrM4ME +11/02/2017,Politicians,@RepJohnConyers,"#Detroit bankruptcy court to beef up its bench. + +Via @_TylerTheTyler_ https://t.co/LFMsXCOdVJ" +11/02/2017,Politicians,@RepJohnConyers,Thank you @TheRevAl for inviting me to speak at @NationalAction Network Legislative and Policy Conference.… https://t.co/2Vod9mP3xH +11/02/2017,Politicians,@RepJohnConyers,"but takes issue with the latter. + +https://t.co/Qfu5lhRjWc" +11/02/2017,Politicians,@RepJohnConyers,"Ben Franklin said “nothing can…be certain, except death and taxes.” The #GOP appears fine with the first, https://t.co/HpnuCCuNwt" +11/02/2017,Politicians,@RepJohnConyers,"Rather than tweeting reckless statements, @realDonaldTrump should spend his Asia trip searching for a diplomatic resolution to this conflict" +11/02/2017,Politicians,@RepJohnConyers,The Framers chose Congress to be the body that declares war and authorizes military action. This legislation reinforces that intent. +11/02/2017,Politicians,@RepJohnConyers,"Bipartisan and bicameral, H.R 4140 prevents the expenditure of funds for any kind of first strike against North Korea." +11/02/2017,Politicians,@RepJohnConyers,"As @realDonaldTrump embarks on his trip to Asia, we want to remind him that he cannot attack North Korea without approval from Congress" +11/02/2017,Politicians,@RepJohnConyers,It is crucial that Congress reaffirm its constitutional authority over approving any first strike against North Korea. +11/02/2017,Politicians,@RepJohnConyers,"SOON: Press Conference with @SenMarkey & @ChrisMurphyCT on the ""No Unconstitutional Strike on North Korea Act"" HERE: https://t.co/46qq6YKMCW" +11/02/2017,Politicians,@RepJohnConyers,"RT @SenMarkey: LIVE 11:30AM: Join men, @RepJohnConyers @SenMurphy to demand no war in #NorthKorea w/o Congressional authorization https://t…" +11/02/2017,Politicians,@RepJohnConyers,"Join me, @SenMarkey & our colleagues from both Chambers today at 11:30A for a press conference. + +Watch Live on… https://t.co/YTJ0XtSIBW" +11/01/2017,Politicians,@RepJohnConyers,"@ChrisMurphyCT @SenMarkey LIVE TOMORROW AT 11:30EST: https://t.co/eXnUtqVZjf + +Bicameral, and bipartisan in the Hous… https://t.co/D7sw1fI5AA" +11/01/2017,Politicians,@RepJohnConyers,TOMORROW at 11:30 EST Rep. Conyers @ChrisMurphyCT & @SenMarkey to discuss their bill demanding Congressional approval before an attack on NK +11/01/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: .@RepJohnConyers: @DOJ_EOIR has moved to strip children in #immigration proceedings of other vital protections. +📝:: https…" +11/01/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: REMINDER: + +Join us for the 10:30A #NetNeutrality and Anti Trust Law hearing + +Watch Live: https://t.co/lSWEV7qktp https://…" +10/31/2017,Politicians,@RepJohnConyers,Join @HouseJudDems tomorrow for a hearing on #NetNeutrality. https://t.co/S10OYX6FZV +10/31/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Rep. Conyers just introduced a bill to prevent Trump from starting a war with #NorthKorea. Thank you @RepJohnConyers for… +10/31/2017,Politicians,@RepJohnConyers,"Controlling pet coke is another step towards #environmental justice —miles to go before we are there. + +https://t.co/lgM799o4sK" +10/31/2017,Politicians,@RepJohnConyers,"Tomorrow is Nov 1, which means just 1 day until you can buy or change your health care plan. + +Visit… https://t.co/J8ZXSNr4Wi" +10/31/2017,Politicians,@RepJohnConyers,"#ICYMI: I urged @RepGoodlatte to move in bipartisan manner to protect #SpecialCounsel from partisan attacks. + +https://t.co/Gn0WbmWbxE" +10/31/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: REMINDER: Join us. tomorrow for the following Hearings: + +1⃣ #NetNeutrality +2⃣ #HR490 +3⃣ @realDonaldTrump Admin #Immigrat…" +10/30/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: #BREAKING: Conyers Expresses Concern Ab Gop Efforts To Divert Attention From Ongoing Russian Threat To Our Elections http… +10/27/2017,Politicians,@RepJohnConyers,#NotFakeNews: President #Trump’s refugee policies leave tens of thousands of #refugees in limbo and danger. https://t.co/dr5IDDLFuw +10/27/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: This is BIG news. @USGAO will investigate @POTUS’s “#VoterFraud” Commission. Thanks to @SenBennetCO, @amyklobuchar, & @Co…" +10/27/2017,Politicians,@RepJohnConyers,"Our committee calendar is going to be full next week, folks. I hope you can tune in to watch live. https://t.co/yeazLjCeZq" +10/27/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 CONYERS & CUMMINGS DEMAND TOP #TRUMP CAMPAIGN CONSULTANTS DISCLOSE DETAILS OF CAMPAIGN DATA OPERATIONS +http…" +10/27/2017,Politicians,@RepJohnConyers,"RT @USRepRickNolan: Proud to join @RepJohnConyers and @SenMarkey's bill to prevent an unconstitutional first strike on North Korea. + +https:…" +10/27/2017,Politicians,@RepJohnConyers,"I am pleased that Congress took action. + +Via @nannburke https://t.co/rvFbIWQzBD" +10/26/2017,Politicians,@RepJohnConyers,RT @OversightDems: @RepCummings @RepJohnConyers @CamAnalytica @GilesParscale @DeepRootX @TheDataTrust Consultants which provided data analy… +10/26/2017,Politicians,@RepJohnConyers,RT @OversightDems: .@RepCummings and @RepJohnConyers letter to Cambridge Analytica Giles-Parscale TargetPoint Consulting The Data Trust and… +10/26/2017,Politicians,@RepJohnConyers,"Glad to work on this letter with my friend & colleague, @RepCummings, RM of @OversightDems. + +Please click the link… https://t.co/RH0PGWPcnA" +10/26/2017,Politicians,@RepJohnConyers,"RT @EnergyCommerce: RMs @FrankPallone & @RepJohnConyers: President Trump's declaration ""is essentially meaningless"" w/out new $$$ to fight…" +10/26/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🆕 @FrankPallone & @RepJohnConyers: @realDonaldTrump’s #Opioid Announcement Is Meaningless W/O Additional Funding🆕 + +https:…" +10/26/2017,Politicians,@RepJohnConyers,RT @WinWithoutWar: Thank you @RepJohnConyers for working to keep us safe from an impulsive and incompetent administration. We must let dipl… +10/26/2017,Politicians,@RepJohnConyers,... commit to the diplomatic path advocated by both American experts and the #SouthKorean government. +10/26/2017,Politicians,@RepJohnConyers,#Trump must immediately cease talk of pre-emptive war and... +10/26/2017,Politicians,@RepJohnConyers,"... the power to initiate a nuclear conflict — less than a year later, those fears are far too close to being realized." +10/26/2017,Politicians,@RepJohnConyers,"... does not permit military attacks without Congressional approval. During the campaign, people feared a President @realDonaldTrump with..." +10/26/2017,Politicians,@RepJohnConyers,That is why Congress is standing up today to ensure that this Administration understands that the Constitution... +10/26/2017,Politicians,@RepJohnConyers,... reckless manner that endangers our troops stationed in #SouthKorea and our regional allies.” +10/26/2017,Politicians,@RepJohnConyers,"As a veteran of the Korean War, I am ashamed that our Commander-in-Chief is conducting himself in a... https://t.co/BJXOZhCZd8" +10/26/2017,Politicians,@RepJohnConyers,Would ensure no funds are used to launch an unconstitutional strike that experts say would lead to catastrophic war… https://t.co/MiizfxTuMF +10/26/2017,Politicians,@RepJohnConyers,"🚨 #BREAKINGNEWS 🚨 + +https://t.co/f81f9QnK7R" +10/26/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Read the full Statement from RM @RepJohnConyers at Hearing on Oversight of the US #Refugee Program: + +https://t.co/YBj4af…" +10/26/2017,Politicians,@RepJohnConyers,"@HouseJudDems .@RepJohnConyers: In swift fashion, @realDonaldTrump abandoned America’s bipartisan leadership in this arena." +10/25/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: 🚨 #BREAKING 🚨 @HouseGOP passed #HR469, a bill that jeopardizes the welfare of ALL Americans.👎" +10/25/2017,Politicians,@RepJohnConyers,#NotFakeNews: The Obama Admin issued a veto threat when a previous version of #HR469 was considered in the 114th Congress. #voteNO +10/25/2017,Politicians,@RepJohnConyers,"#HR469 is a is a costly solution in search of a problem. I will #voteNO & I urge my colleagues to do the same. + +https://t.co/UZG3mlnOMz" +10/25/2017,Politicians,@RepJohnConyers,...economic distress -- can come together to provide critical aid to those most in need.” +10/25/2017,Politicians,@RepJohnConyers,This aid package reflects how our Nation -- when called upon to address overwhelming devastation resulting from natural disaster and... +10/25/2017,Politicians,@RepJohnConyers,...debt relief to the citizens of #PuertoRico by forgiving certain flood insurance obligations and loans owed by the Commonwealth. +10/25/2017,Politicians,@RepJohnConyers,#HR2266 also contains much needed economic aid to those who were harmed by recent hurricanes and wildfires and provides critical... +10/25/2017,Politicians,@RepJohnConyers,"...these judgeships permanent, I am pleased that Congress took action." +10/25/2017,Politicians,@RepJohnConyers,"...from a fully-staffed #bankruptcy court. While I would have preferred the original version of my legislation, which would have made ..." +10/25/2017,Politicians,@RepJohnConyers,"This legislation will ensure that citizens of #Detroit, especially those facing economic distress, are able to obtain financial relief..." +10/25/2017,Politicians,@RepJohnConyers,"🆕CONYERS BILL TO ADD MORE JUDGES TO #DETROIT BANKRUPTCY COURT SET TO BECOME LAW🆕 +https://t.co/b78WoTeALf" +10/25/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Today, @HouseGOP will bring #HR469 to the Floor. This bill is an assault on Americans’ health, safety, and privacy. New d…" +10/25/2017,Politicians,@RepJohnConyers,Open Enrollment is much shorter this year. We only have from November 1st to December 15th to #GetCovered. Visit… https://t.co/IsTMnasrZT +10/25/2017,Politicians,@RepJohnConyers,Open Enrollment starts in one week! Find a plan for yourself and your family. Find a plan HERE: https://t.co/ld5ND2AF4n #GetCovered +10/25/2017,Politicians,@RepJohnConyers,"RT @RepAdams: Women-owned small businesses are the economic engines of our communities, employing millions each year. They need a #ABetterD…" +10/24/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Ranking member @RepJohnConyers' statement opposing #HR732, the “Stop Settlement Slush Funds Act of 2017” https://t.co/Euu…" +10/24/2017,Politicians,@RepJohnConyers,"#HR1673 would also end water issues like you see in #Flint, Detroit, and Oakland county." +10/24/2017,Politicians,@RepJohnConyers,My bill #HR1673 would fund modern water systems in world’s richest country. https://t.co/t1wvPN2VtF +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@RepGoodlatte: bill proposes a ""true guestworker program"" w/o path to citizenship for current undocumented ag workers" +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@repjohnconyers: this version of ag guestworker bill is ""not an improvement over its predecessors""" +10/24/2017,Politicians,@RepJohnConyers,"RT @lauradfrancis: .@RepJohnConyers: ag bill ""an incentive to replace well-paid American workers with temporary foreign workers at a drasti…" +10/24/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: Watch today's markup of #HR4092 & #HR3711 LIVE: +https://t.co/LoiCgwy7gW https://t.co/oltNJVgF2p" +10/23/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: THIS WEEKIN COMMITTEE: + +1⃣ Ag Guestworker Act +2⃣ #HR3711 “Legal Workforce Act +3⃣ Refugee Programs hearing + +📝 https://t.c…" +10/23/2017,Politicians,@RepJohnConyers,Why Won’t The #NFL Address What Players Are Actually Protesting? Asks Michigan Lawmaker https://t.co/GQpbZnqIkG via @darrensands +10/23/2017,Politicians,@RepJohnConyers,"Speaking of #ABetterDeal, have you all seen @HouseGOP 's devastating budget? They should go back to the drawing board." +10/23/2017,Politicians,@RepJohnConyers,"FACT: Instead of lowering prescription drug prices, #Trumpcare would have forced families to pay even more. We have #ABetterDeal." +10/23/2017,Politicians,@RepJohnConyers,It seems like prescription drug prices will never stop going up. Americans deserve #ABetterDeal: https://t.co/KTSSnjoNXv +10/23/2017,Politicians,@RepJohnConyers,RT @RepSwalwell: I hope everyone watches this for a better sense of the grief felt by families of fallen soldiers. They loved our best. God… +10/13/2017,Politicians,@RepJohnConyers,RT @anthonyjr_: Exciting news! 📣 @repjoecrowley and @RepLindaSanchez introduce House Democrats' new Spanish-language Twitter account. Follo… +10/13/2017,Politicians,@RepJohnConyers,It was definitely an honor to meet Mr. Carson & glad that he’s participating in today’s very important Forum about… https://t.co/0rYUos3xgv +10/13/2017,Politicians,@RepJohnConyers,The extent of injury is particularly problematic for our youth as most brains are not fully developed until age 25. https://t.co/vXylKVNdeJ +10/12/2017,Politicians,@RepJohnConyers,I support this bill and ask that my colleagues join me in doing so. https://t.co/X4S8uApy3u +10/11/2017,Politicians,@RepJohnConyers,In 2016 more than 1 in 6 #Latinos lived in poverty. We need an economic future that works for everyone. #HispanicHeritageMonth +10/11/2017,Politicians,@RepJohnConyers,We celebrate #HispanicHeritageMonth and the immense contribution that the Latino community has made to our culture and economy. +10/11/2017,Politicians,@RepJohnConyers,"My bill, #HR1673 - WATER Act - would provide the needed investment in Detroit’s infrastructure. We need to act now. https://t.co/e5PtGNSQUS" +10/11/2017,Politicians,@RepJohnConyers,"RT @RepPeteAguilar: .@realDonaldTrump’s attacks on #DREAMers cut to the core of communities, and his extremist immigration ""principles"" wil…" +10/10/2017,Politicians,@RepJohnConyers,.@realDonaldTrump & @EPAScottPruitt are OK with destroying our planet. American’s aren’t & will fight this at ever… https://t.co/CLX0FutRvB +10/10/2017,Politicians,@RepJohnConyers,"Well that's not right, @HouseGOP. https://t.co/gY83Tjuu8K" +10/10/2017,Politicians,@RepJohnConyers,"RT @HouseJudDems: THIS WEEK'S FULL COMMITTEE #MARKUP: + +1⃣ Congressional #Subpoenas +2⃣ #HR2228, “Law Enforcement #MentalHealth +3⃣ Access to…" +10/10/2017,Politicians,@RepJohnConyers,"RT @RepCarbajal: Being American is about more than a piece of paper. What matters are your hopes, dreams, and a belief in a better tomorrow…" +10/09/2017,Politicians,@RepJohnConyers,This President is simply not serious about finding solutions to this country’s challenges. https://t.co/Pr9K1P8NJX +10/06/2017,Politicians,@RepJohnConyers,"Will continue to fight for the rights of all of you to be free from discrimination no matter gender, gender identit… https://t.co/wnMVz4j0G3" +10/06/2017,Politicians,@RepJohnConyers,I call on my colleagues on both sides of the aisle to come to the table and find real solutions for all Americans. #TrumpEconomy +10/06/2017,Politicians,@RepJohnConyers,It is clear that Trump & this Republican Congress are more concerned with giving the top 1% tax breaks than helping middle class Americans. +10/06/2017,Politicians,@RepJohnConyers,Average jobs growth is far below 193k jobs created monthly under @barackobama in 2016. +10/06/2017,Politicians,@RepJohnConyers,"As Republicans meet behind closed doors to slash taxes for the wealthy, today's job report shows 33k were lost in September. #TrumpEconomy" +10/06/2017,Politicians,@RepJohnConyers,Our nation comes together in times of need. Puerto Rico & US Virgin Islands should be no different. We must stand with #OurFellowAmericans +10/06/2017,Politicians,@RepJohnConyers,#OurFellowAmericans in Puerto Rico & US Virgin Islands need help as they recover. We must deploy every resource to provide relief +10/06/2017,Politicians,@RepJohnConyers,Today’s rule is no different. Shame on @realDonaldTrump for this dangerous rule that sets our country backward & limits women’s #reprorights +10/06/2017,Politicians,@RepJohnConyers,"Since #POTUS' first day in office, his admin & @HouseGOP have relentlessly attacked women’s #reprorights & access to care." +10/06/2017,Politicians,@RepJohnConyers,"This rule allows virtually anyone - + bosses, health plans, & schools - to discriminate against women by refusing to cover #birthcontrol." +10/06/2017,Politicians,@RepJohnConyers,".@POTUS just released a contraception rule that would rip guaranteed #birthcontrol away from countless women. +https://t.co/nbtfl4Ak5t" +10/05/2017,Politicians,@RepJohnConyers,#DREAMers: TODAY is the deadline for renewal. My colleagues & I have your backs & we'll fight to pass the #DREAMAct… https://t.co/lkHcrCqfJG +10/05/2017,Politicians,@RepJohnConyers,RT @NancyPelosi: Republicans need to stop misleading Americans and tell the truth: their tax plan will raise taxes on middle class families… +10/05/2017,Politicians,@RepJohnConyers,RT @HouseJudiciary: @RepGoodlatte @RepJohnConyers @JimPressOffice @JacksonLeeTX18 REMINDER: Tune in at 9:45AM on Facebook as we unveil to #… +10/05/2017,Politicians,@RepJohnConyers,"Join us this morning, folks. https://t.co/1BVNzIQjHS" +10/04/2017,Politicians,@RepJohnConyers,"America Has Never Truly Atoned For Slavery. Conyers Has Pressed the Issue for Nearly 30 Years. +Via @myblackmindd + +https://t.co/Dqa4VzUeZz" +10/04/2017,Politicians,@RepJohnConyers,The #Equifax data breach shook public confidence in the entire credit rating industry. https://t.co/lrGGeEoP07 +10/04/2017,Politicians,@RepJohnConyers,"RT @RepDonBeyer: We raised the issue of forced arbitration (the #RipoffClause) to Equifax' CEO, and their response entirely failed to addre…" +10/04/2017,Politicians,@RepJohnConyers,RT @RepDonBeyer: As House & Senate hold hearings on Equifax @SenateGOP is quietly courting votes to repeal consumer protections & reinstate… +10/04/2017,Politicians,@RepJohnConyers,RT @RepDonBeyer: New OpEd w/ @HouseJudDems Ranking Member @RepJohnConyers @RepHankJohnson @davidcicilline on forced arbitration here: https… +10/04/2017,Politicians,@RepJohnConyers,RT @RepRobinKelly: Too many communities have seen terrible tragedies. Watch @HouseDemocrats take a stand to #EndGunViolence at 9 am ET.http… +10/03/2017,Politicians,@RepJohnConyers,Read my statement to #HR36. ⬇️ https://t.co/zarr2deDV0 +10/03/2017,Politicians,@RepJohnConyers,RT @HouseJudDems: RM @RepJohnConyers: #HR36's exception for victims of rape is woefully inadequate. #VOTENO https://t.co/H1KCajPF23 +10/03/2017,Politicians,@RepJohnConyers,This is extremely disappointing 🤦🏽‍♂️ https://t.co/FwBvukrLSa +10/03/2017,Politicians,@RepJohnConyers,"RT @NRDems: After @RepRaulGrijalva & @RepJohnConyers urge @SpeakerRyan 2 pull shameful #SHAREAct, Ryan pulls SHARE Act https://t.co/btvL9fG…" +10/03/2017,Politicians,@RepJohnConyers,"#HR36 is opposed by civil liberties groups, women’s organizations, medical providers, and a coalition of 15 nationa… https://t.co/ZCDhS0Jcwv" +10/03/2017,Politicians,@RepJohnConyers,#HR36 is the fifth @HouseGOP vote to attack women’s health care so far in the 115th Congress. #VOTENO https://t.co/eqNOaZ50eK +10/03/2017,Politicians,@RepJohnConyers,"RT @NancyPelosi: #DREAMers, make sure you mail your DACA renewal application today to make sure it’s received by the Oct 5 deadline. https:…" +10/03/2017,Politicians,@RepJohnConyers,"Today, @HouseGOP, will bring up a bill that is designed to restrict women’s access to the full range of health care… https://t.co/GD05fWvRdc" +10/03/2017,Politicians,@RepJohnConyers,Proud to see #Detroit leading the way to a more sustainable automotive future. Congrats to @GM on this bold plan https://t.co/vSgsCHCcO4 +10/03/2017,Politicians,@RepJohnConyers,No one should be in jail for months or years pending deportation. We need a humane alternative to indefinite detention. +10/03/2017,Politicians,@RepJohnConyers,The Dignity for Detained Immigrants Act fixes our broken system and removes the profit motive behind the jailing of thousands of people. +10/03/2017,Politicians,@RepJohnConyers,I fully back @RepAdamSmith & @RepJayapal’s Dignity for Detained Immigrants Act of 2017. #DignityandJustice +10/03/2017,Politicians,@RepJohnConyers,"RT @RepThompson: If GOP Congress does nothing, its Leadership is complicit. We must establish a Select Committee on Gun Violence. #EndGunVi…" +10/02/2017,Politicians,@RepJohnConyers,Read my entire statement ⬇️ https://t.co/650JZwkuPb +10/02/2017,Politicians,@RepJohnConyers,...we find ourselves once again putting out statements of condolences. Moments of silence are just not enough. +10/02/2017,Politicians,@RepJohnConyers,"@HouseGOP ...adopt legislation designed to actually make Americans safer from gun violence. #Congress must act, and it must do so before..." +10/02/2017,Politicians,@RepJohnConyers,My @HouseGOP colleagues refuse to hold hearings on the scourge of #gunviolence in our country or... +10/02/2017,Politicians,@RepJohnConyers,"...remove military-type weaponry from our streets, but it ignores the existence of this epidemic in its entirety." +10/02/2017,Politicians,@RepJohnConyers,Not only does Congress refuse to pass legislation that strengthens #backgroundchecks or... +10/02/2017,Politicians,@RepJohnConyers,It is unfathomable that Congress’s response to these mass shootings continues to be that of complete inaction. +10/02/2017,Politicians,@RepJohnConyers,"This horror has no place in our country, and I pray for those affected today." +10/02/2017,Politicians,@RepJohnConyers,"I am heartbroken for these families who have lost sons, daughters, mothers, fathers, brothers and sisters." +10/02/2017,Politicians,@RepJohnConyers,Many families woke up this morning with their lives completely shattered. +10/02/2017,Politicians,@RepJohnConyers,🆕 Conyers On Horrific #LasVegasShootings Shooting: Congress Must Hold Hearings On #GunViolence 🆕 https://t.co/xmQpwcgkWp +10/02/2017,Politicians,@RepJohnConyers,"It is not enough to simply hold a moment of silence, or place U.S. flags at half-staff; we have to do the work to p… https://t.co/ds3tipWZT2" +09/29/2017,Politicians,@RepJohnConyers,A tragedy such as this one must never occur again. We will be closely monitoring this situation. +08/31/2007,Politicians,@dickcheney,"Won a baboon on eBay. Condition as-is, but I'm going to use the little guy for parts anyway. Never know when the ticker might blow a valve." +07/22/2007,Politicians,@dickcheney,Slept through alarm clock yesterday. Didn't wake up in time to launch full-scale nuclear attack on world while President. I'm such an ass. +07/21/2007,Politicians,@dickcheney,Hangin' in the oval tomorrow during G's colonoscopy. I'm thinking a club sandwich aroun noon and then bomb the fuck out of Iran at 2:30. +04/24/2007,Politicians,@dickcheney,Heh. Kucinich thinks he can impeach me. Nothing a little blot clot in the leg can't fix. Suckas! http://tinyurl.com/3c2xrx +04/11/2007,Politicians,@dickcheney,"Heh. CNN and MSNBC were all over me last week. Pretty cool how we got Imus to take one for the team over the last four news cycles, huh?" +04/10/2007,Politicians,@dickcheney,Working on my BYU commencement address. Thinking about trying out some new Iraq/Al Qaeda material. It's so gonna kill with the kids. +04/07/2007,Politicians,@dickcheney,Told Lynne she looked hot last night. She just stared and shook her head. Did I miss something? It's like no one believes anything I say. +04/07/2007,Politicians,@dickcheney,Just heard that Jesus was killed in Jerusalem this afternoon. Looks like a couple tomahawks are in Palestine's future. +04/06/2007,Politicians,@dickcheney,Starting to think that potato-powered mind control device I bought out of Popular Mechanics back in '02 isn't working as advertised. +04/06/2007,Politicians,@dickcheney,"Picked up a new CD today. ""Drums and Guns"" by some band named Low. Rove said it was right up my alley...that guy's a total prick." +04/05/2007,Politicians,@dickcheney,Left arm's tingling again. It's gonna rain tomorrow. +06/22/2018,Politicians,@GregForMontana,"Welcome back to Big Sky Country, @DonaldJTrumpJr. Thank you for standing with us!" +06/15/2017,Politicians,@GregForMontana,I’m ready to go to work and serve the people of Montana! https://t.co/fWwi3E2bo5 +06/15/2017,Politicians,@GregForMontana,It was an honor to present these pins to our Vietnam veterans. Welcome home and thank you for your service. https://t.co/rfLchIwuZh +06/15/2017,Politicians,@GregForMontana,I delivered my first official speech today since being elected Congressman at the VFW State Convention in Billings.… https://t.co/KQCbji7LHy +06/14/2017,Politicians,@GregForMontana,"My heart broke with news of this morning’s shooting. Susan and I are praying for @SteveScalise, staff, and the @CapitolPolice." +06/10/2017,Politicians,@GregForMontana,Proud to be here in Billings for the @MTGOP State Convention! #UnitedWeStand https://t.co/9Y1zo6l1mS +05/29/2017,Politicians,@GregForMontana,Truly thankful to all the men and women who gave their lives to defend our country & protect our freedoms #MemorialDay #USA +05/26/2017,Politicians,@GregForMontana,Thank you @RobQuistforMT for a spirited race; I promise to listen to the voices of all Montanans -Greg #mtpol +05/26/2017,Politicians,@GregForMontana,"Thank you, Montana. I am humbled by this incredible honor. I will always be on Montana's side. https://t.co/yZtYbPtRAl" +05/24/2017,Politicians,@GregForMontana,"I will defend the Second Amendment, and our access to public lands. https://t.co/by6FguoTFU" +05/24/2017,Politicians,@GregForMontana,It was great seeing everyone in Helena today! #GOTV #mtpol https://t.co/hqvmHLSdsj +05/24/2017,Politicians,@GregForMontana,Incredible turnout in Helena! #GOTV #mtpol https://t.co/jQ1lTaqqQR +05/24/2017,Politicians,@GregForMontana,"What an incredible honor to be endorsed by three of MT’s biggest +newspapers. Thank you @missoulian @billingsgazette… https://t.co/pRFj9Cmf8q" +05/24/2017,Politicians,@GregForMontana,Thank you to all who came out in Missoula this morning! #GOTV #mtpol https://t.co/wKKEdZbbjD +05/24/2017,Politicians,@GregForMontana,Thank you Kalispell for a great evening! #GOTV #mtpol https://t.co/xsyU33fsFr +05/23/2017,Politicians,@GregForMontana,What a warm welcome in Hamilton today! #GOTV #mtpol https://t.co/Vj8krU7gMY +05/23/2017,Politicians,@GregForMontana,Support is strong in Ravalli County! #GOTV #mtpol https://t.co/TFcdxf8YfC +05/23/2017,Politicians,@GregForMontana,Great turnout in Great Falls! Encouraged by your support! #GOTV #mtpol https://t.co/LWgy33UeBu +05/23/2017,Politicians,@GregForMontana,"Sarge and Troy, thanks for having me on this morning. #WhenInGreatFalls #GOTV #mtpol https://t.co/MqNhIiNVlX" +05/23/2017,Politicians,@GregForMontana,Appreciate​ seeing everyone last night in Billings! #GOTV #mtpol https://t.co/mTcizPMh2n +05/22/2017,Politicians,@GregForMontana,The path to job creation starts with protecting small businesses like the ones I visited today in Billings.… https://t.co/SkLuDkr9Ud +05/22/2017,Politicians,@GregForMontana,Thank you @SteveDaines for all your support! https://t.co/D7jY8hgcUP +05/22/2017,Politicians,@GregForMontana,Had a great time at the Billings Rotary Club today. Thank you for having me! https://t.co/RS5wPKH8hd +05/22/2017,Politicians,@GregForMontana,Breakfast in Billings? Stella’s is a must. Great food. Great people. #WhenInBillings #mtpol https://t.co/zE3eItnwM5 +05/22/2017,Politicians,@GregForMontana,Thank you @406Arneson for having me on @VoicesofMT! #WhenInBillings #mtpol https://t.co/0CL3Gz7ozc +05/22/2017,Politicians,@GregForMontana,Thanks for having me on @CatCountry1029 this morning. Always enjoy talking with you guys. https://t.co/CnAHyloDCw +05/21/2017,Politicians,@GregForMontana,Wonderful time at the #BuckingHorseSale this weekend! #mtpol https://t.co/7oJtfs2UNC +05/21/2017,Politicians,@GregForMontana,RT @gianforte: Me with Cooper the Miles City Bucking Horse Mutton Busting Champion and his new championship buckle. (He told me he practice… +05/20/2017,Politicians,@GregForMontana,Thank you to all our brave servicemen and women. We are eternally grateful for your dedication and sacrifice. #ArmedForcesDay +05/20/2017,Politicians,@GregForMontana,Great to be back in Miles City for the Bucking Horse Sale! #mtpol https://t.co/33usBljYhj +05/20/2017,Politicians,@GregForMontana,Thank you for a great day in Crow Agency! #mtpol https://t.co/2O5VyyxRF4 +05/20/2017,Politicians,@GregForMontana,Honored to have these endorsements #mtpol https://t.co/RATeq3y9ay +05/19/2017,Politicians,@GregForMontana,Thank you Montana Logging Association for having me to speak at your convention luncheon today! https://t.co/Z1WgGvbZgY +05/19/2017,Politicians,@GregForMontana,"It’s the final stretch, and I need your help! Sign up to help: https://t.co/wKDIaNk1UT" +05/18/2017,Politicians,@GregForMontana,Susan and I made our votes official today. Have you voted yet? Learn how: https://t.co/wTqYGEA1Vw https://t.co/Xt15D6d8Xv +05/18/2017,Politicians,@GregForMontana,Beautiful ceremony. Incredible people. Congrats to all the athletes competing in the Special Olympics! https://t.co/b8yntjNbzT +05/17/2017,Politicians,@GregForMontana,Had a great visit with the Confederated Salish and Kootenai Tribes yesterday! https://t.co/JQjeP3gIZL +05/16/2017,Politicians,@GregForMontana,"There’s a lot of work to be done, but I’m ready for the challenge. Proud to have the endorsement of the @missoulian. https://t.co/QQSWSKyZC7" +05/16/2017,Politicians,@GregForMontana,Proud to receive the endorsement of the NFIB at Ron Terry Construction in Kalispell. https://t.co/jbm4b8SGxf +05/16/2017,Politicians,@GregForMontana,"Please join Susan and I in praying for the Broadwater County Sheriff’s office and the fallen deputy's family. +https://t.co/G1q8O9zJP2" +05/16/2017,Politicians,@GregForMontana,Good morning Kalispell! Did you catch my interview on @KGEZ1? https://t.co/dZsVrsV8UT +05/16/2017,Politicians,@GregForMontana,Thank you for your endorsement @helenaironline. I will always fight for our Montana way of life. https://t.co/Nyvdh89Vpa +05/15/2017,Politicians,@GregForMontana,It’s an honor to have earned the endorsement of the @billingsgazette https://t.co/fo0JZqO6nh +05/14/2017,Politicians,@GregForMontana,Congrats to all the runners this morning at the @HAVENMT Mother's Day 5K in Bozeman! https://t.co/zHOaAii8o5 +05/14/2017,Politicians,@GregForMontana,It was a beautiful morning yesterday cheering on all the runners at the Montana Women's Run in Billings! https://t.co/5kAdeLVjOD +05/14/2017,Politicians,@GregForMontana,RT @gianforte: Happy Mother's Day all Moms! My mom grew up on a dairy farm and taught math at a public HS while raising me and my brothers.… +05/14/2017,Politicians,@GregForMontana,"RT @MTGOP: Thank you @VP Pence, @Interior Sec @RyanZinke and Sen @SteveDaines! Get out and vote for @GregForMontana on May 25! #mtpol https…" +05/13/2017,Politicians,@GregForMontana,RT @mike_pence: Thank you Montana for helping make @realDonaldTrump the 45th President of the United States 🇺🇸. Let's send Greg Gianforte t… +05/13/2017,Politicians,@GregForMontana,RT @SteveDaines: Thumbs up for a great day in Montana with @VP & @GregForMontana! https://t.co/n9yH7JhdiF +05/13/2017,Politicians,@GregForMontana,Onward to victory! #mtpol https://t.co/AvT1aSiCmm +05/13/2017,Politicians,@GregForMontana,RT @RyanZinke: In good company-rallying the grassroots for @GregForMontana #gotv @mike_pence @SteveDaines #mtpol https://t.co/t2zaWjRe5B +05/13/2017,Politicians,@GregForMontana,"""America is back under @realDonaldTrump"" -@VP #mtpol https://t.co/bOVmclew6U" +05/13/2017,Politicians,@GregForMontana,Welcome back to Montana @VP! #mtpol https://t.co/Tu9dvqCbRX +05/13/2017,Politicians,@GregForMontana,I will always be on Montana's side! #mtpol https://t.co/GZJ4zsamMn +05/13/2017,Politicians,@GregForMontana,"RT @AGTimFox: Great to have a chance to meet with @SecretaryZinke, @SteveDaines and @VP Pence in Montana today! #MTPol #MTNews https://t.co…" +05/13/2017,Politicians,@GregForMontana,Thank you for all your support @RyanZinke! #mtpol https://t.co/XCg2XO7oRU +05/13/2017,Politicians,@GregForMontana,RT @SteveDaines: Getting the rally underway in Billings with @VP to support @GregForMontana! https://t.co/Xw0CMEM8Cj +05/13/2017,Politicians,@GregForMontana,.@SteveDaines kicks off the campaign rally in Billings! #mtpol https://t.co/jWNyGbHUAk +05/13/2017,Politicians,@GregForMontana,It's an honor to have you in Billings @VP! #mtpol https://t.co/GuJT6Psboj +05/13/2017,Politicians,@GregForMontana,Backstage ... @VP arrives at the Metra Pavilion! #mtpol https://t.co/tiPNX3j6eg +05/12/2017,Politicians,@GregForMontana,Today’s the day! This is your last chance to RSVP to see @VP in Billings with me today! https://t.co/OAF06wGFYT +05/12/2017,Politicians,@GregForMontana,RT @ChrisCoxNRA: Great day with @DonaldJTrumpJr @GregForMontana & @charliekirk11 in Montana fighting for freedom & our Second Amendment rig… +05/12/2017,Politicians,@GregForMontana,One last crowd with @DonaldJTrumpJr tonight in Great Falls! #trumpinmontana #mtpol https://t.co/pBx8jXHlyV +05/12/2017,Politicians,@GregForMontana,Proud to have the support of such a great group of volunteers! #TeamGreg https://t.co/M5ez4FDT00 +05/12/2017,Politicians,@GregForMontana,There’s still time! RSVP now to join me and my special guest @VP in Billings tomorrow! https://t.co/OAF06wGFYT +05/11/2017,Politicians,@GregForMontana,Eastern Montana gives a warm welcome to @DonaldJTrumpJr #TrumpInMontana #mtpol https://t.co/bBvknUGRHW +05/11/2017,Politicians,@GregForMontana,We’re going to need a bigger tent! People were lined up to see @DonaldJTrumpJr in Butte today. #TrumpInMontana… https://t.co/7lQivqEgkl +05/11/2017,Politicians,@GregForMontana,Welcome back to Montana @DonaldJTrumpJr! https://t.co/OE0AKhI1a5 +05/11/2017,Politicians,@GregForMontana,Butte is ready for @DonaldJTrumpJr @GregForMontana! #TrumpInMontana #mtpol https://t.co/CLaLdE1Mwc +05/11/2017,Politicians,@GregForMontana,First stop today in Helena! https://t.co/CMCDkoEB3Z +05/11/2017,Politicians,@GregForMontana,Packed house tonight at the Yellowstone County Lincoln Reagan Day Dinner! https://t.co/jeokIrASEN +05/11/2017,Politicians,@GregForMontana,Thank you @IslandMDGroup for welcoming me to your office today in Billings to talk about Montana jobs and entrepren… https://t.co/sdxIM5o9kz +05/10/2017,Politicians,@GregForMontana,RT @SteveDaines: Have you registered yet for the @VP in Billings? Visit: https://t.co/7vUBvAso2S. https://t.co/74XadJsjSG +05/10/2017,Politicians,@GregForMontana,"#ICYMI: @VP is coming to MT! Sign up now for your chance to +meet him! https://t.co/kjN0vqIr40" +05/10/2017,Politicians,@GregForMontana,Didn’t get to see @DonaldJTrumpJr when he was in Montana? Well he’s coming back! RSVP here: https://t.co/CiGsjVTEVq +05/10/2017,Politicians,@GregForMontana,"Busy two days in Eastern Montana. It’s great to be back! + +Malta -> Glasgow -> Opheim -> Scobey -> Culbertson https://t.co/eIa6y7WCyo" +05/09/2017,Politicians,@GregForMontana,".@DonaldJTrumpJr is coming back to MT! On deck: Helena, Butte, Sidney, Great Falls. Sign up to come out and see us! https://t.co/CiGsjVTEVq" +05/09/2017,Politicians,@GregForMontana,"I’m honored to announce that @VP will be joining me in +Billings this week. RSVP now to get the chance to meet him! https://t.co/QpPiZgwyZx" +05/06/2017,Politicians,@GregForMontana,Thank you Ravalli County Republican Women for inviting me to speak at the Lincoln Reagan Luncheon. https://t.co/OQt0yy8oTM +05/06/2017,Politicians,@GregForMontana,Beautiful morning at the Hamilton Farmer's Market! https://t.co/0OCHHzeE3w +05/06/2017,Politicians,@GregForMontana,Kicked off the weekend in Superior last night at the Mineral County Fairgrounds. https://t.co/hH3D4FJYXK +05/05/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr is joining me on the trail again! Those interested in attending can RSVP here: https://t.co/sXxx6n7xU1 +05/04/2017,Politicians,@GregForMontana,"Today, in honor of the #NationalDayofPrayer, we join together to pray for our leadership, and for the future of our country." +05/04/2017,Politicians,@GregForMontana,Best part of my day. Thank you for your support Sydney. I like your spirit too! https://t.co/EovazUdxGI +05/04/2017,Politicians,@GregForMontana,What a great group! Thanks to all who came out to our event at the Clubhouse in Fort Benton. https://t.co/5hUvWtALHg +05/04/2017,Politicians,@GregForMontana,I spoke with the Montana Economic Developers Association in Great Falls today about my top priorities: job creation… https://t.co/yU4Uy2XB1S +05/02/2017,Politicians,@GregForMontana,Tune in THIS Sunday for my Face the State interview with @dparkermontana & @mikedennison https://t.co/EbF5W8WRpB +05/02/2017,Politicians,@GregForMontana,I held a Veterans Roundtable in Bozeman today because our nation must keep its promises to our vets and ensure thei… https://t.co/j3RTk2Jiec +05/01/2017,Politicians,@GregForMontana,There’s always time for a stop at the Great Falls Gun Show. Now that’s what I call a great Saturday! https://t.co/1JvJERMhbj +05/01/2017,Politicians,@GregForMontana,Saturday was a big day across Montana! Thank you to all who came out to get out the vote on our #DayofAction! https://t.co/ipr2cTNyg3 +04/30/2017,Politicians,@GregForMontana,"""I will serve with compassion for those in need and a strong conviction to preserve the Montana way of life."" #mtpol" +04/30/2017,Politicians,@GregForMontana,"""If I'm elected, I'll go back to negotiate for Montana and Montana will win."" #mtpol" +04/30/2017,Politicians,@GregForMontana,"""I'm a businessman and an engineer. I know how to work hard and solve problems.""" +04/30/2017,Politicians,@GregForMontana,"""The path out of poverty is a job. That is what I've done my whole life. I've helped people learn how to get and create jobs""" +04/30/2017,Politicians,@GregForMontana,"""There are too many lawyers in Washington. We need problem solver. I'm an engineer... trained to solve problems."" #mtpol" +04/30/2017,Politicians,@GregForMontana,On the #2A the choice is clear: @GregForMontana has an “A” rating from the NRA; @RobQuistforMT has an “F” rating #mtpol +04/29/2017,Politicians,@GregForMontana,Today’s the day! Let’s rock ‘n roll. #mtdebate #mtpol #OnMontanasSide +04/29/2017,Politicians,@GregForMontana,We had an incredible turnout in Conrad for the Pondera LRDD last night! https://t.co/m0hBvU5z3B +04/29/2017,Politicians,@GregForMontana,Spent some time in Helena yesterday and sat down for a productive meeting with Montana’s Credit Unions. https://t.co/3vmA4rWLrO +04/28/2017,Politicians,@GregForMontana,Tune in this Saturday for the #MTDebate at 7pm on your local CBS station! #mtpol +04/28/2017,Politicians,@GregForMontana,Great visit with Sun Mountain Lumber yesterday. Thanks for showing me around! https://t.co/GU1ldMFokT +04/28/2017,Politicians,@GregForMontana,#Spotted yesterday in Deer Lodge: Mayor Cozby! #WhenInDeerLodge https://t.co/youhPcoj2g +04/27/2017,Politicians,@GregForMontana,Special thanks to the Deer Lodge Rotary Club for inviting me to speak about my plans for MT! https://t.co/fgnkTRvIul +04/26/2017,Politicians,@GregForMontana,Rob Quist wants to register your guns. We must STOP a national gun registry! https://t.co/cBZsqWzQa6 +04/25/2017,Politicians,@GregForMontana,Always great to see Ziggy and Stella #WhenInBillings https://t.co/chuhZcrCyf +04/24/2017,Politicians,@GregForMontana,Our 2nd Amendment rights are not up for negotiation. I will always defend the 2nd Amendment and our MT way of life. https://t.co/czkbquHebH +04/23/2017,Politicians,@GregForMontana,.@donaldjtrumpjr takes the stage for his fourth and final speech this weekend. Thank you Donald! https://t.co/TCi9KGB7AB +04/23/2017,Politicians,@GregForMontana,Thank you for the kind introduction @SteveDaines #trumpinmontana #mtpol https://t.co/n6HBPNE1a7 +04/23/2017,Politicians,@GregForMontana,Bozeman rally! #TrumpInMontana #mtpol https://t.co/SjG66VhKzQ +04/22/2017,Politicians,@GregForMontana,That's a wrap! See you in Bozeman tomorrow! https://t.co/BpXe8v6R4O +04/22/2017,Politicians,@GregForMontana,Thank you Yellowstone County for the warm welcome! The momentum is on our side! https://t.co/2t69GzYG8j +04/22/2017,Politicians,@GregForMontana,Last speech of the night! @Donaldjtrumpjr #mtpol #trumpinmontana https://t.co/7CkBOxLhvi +04/22/2017,Politicians,@GregForMontana,Thank you to all who joined us in Billings tonight! #mtpol #trumpinmontana https://t.co/JUUHIkUuRO +04/22/2017,Politicians,@GregForMontana,Getting ready for the final rally of the day in Billings! #TrumpInMontana #mtpol https://t.co/NM0SAVV66V +04/21/2017,Politicians,@GregForMontana,Incredible energy here in Hamilton today. #mtpol #trumpinmontana https://t.co/RytxPOxyCU +04/21/2017,Politicians,@GregForMontana,Onward to victory! https://t.co/9RdWOJGrRJ +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr takes the stage in Hamilton. #mtpol #trumpinmontana https://t.co/SvgaJ7Rvax +04/21/2017,Politicians,@GregForMontana,What a crowd! It’s a packed house here in Hamilton. @DonaldJTrumpJr. #TrumpInMontana #mtpol https://t.co/mG8lgHRraB +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr: It's time to respect America again. #TrumpInMontana #mtpol https://t.co/3EnLNubARc +04/21/2017,Politicians,@GregForMontana,Welcome back to Montana @DonaldJTrumpJr! #TrumpInMontana #mtpol https://t.co/92ICEV4RlN +04/21/2017,Politicians,@GregForMontana,I will always be on Montana’s side. Thank you Kalispell! #TrumpInMontana #mtpol https://t.co/iJLyOB8hDG +04/21/2017,Politicians,@GregForMontana,Steve Daines introduces Special Guest Ryan Zinke at #TrumpInMontana rally https://t.co/pgEKl1FChU +04/21/2017,Politicians,@GregForMontana,Make Montana Great Again! #MakeAmericaGreatAgain #TrumpInMontana #mtpol #MAGA https://t.co/O6rEnpiMWM +04/21/2017,Politicians,@GregForMontana,Backstage before our big rally in Kalispell! #trumpinmontana #mtpol https://t.co/ZpBP3plfvM +04/21/2017,Politicians,@GregForMontana,Here we go! Almost time for our event with @DonaldJTrumpJr in Kalispell. See you there! #TrumpInMontana https://t.co/wP2d9kDWG2 +04/21/2017,Politicians,@GregForMontana,Good morning Kalispell! Great to be on the air with John Hendricks on @600KGEZKalispel @600KGEZ https://t.co/WYkvnENGMe +04/21/2017,Politicians,@GregForMontana,.@DonaldJTrumpJr is joining me on the trail tomorrow! It’s not too late to RSVP: https://t.co/nLBiGWdm8a +04/20/2017,Politicians,@GregForMontana,Stocking up on ammo for our prairie dog hunt this weekend @DonaldJTrumpJr #mtpol https://t.co/Ryj7tCNF7L +04/19/2017,Politicians,@GregForMontana,I had a great time hosting the @MontanaHighTech panel in Bozeman yesterday. Proud to see so many Montana entreprene… https://t.co/iBHfbcdR6m +04/18/2017,Politicians,@GregForMontana,Great day. Great people. Glad to be back in Butte! https://t.co/fUTgAScBss +04/18/2017,Politicians,@GregForMontana,Stopped by @KGVOAM radio in Missoula this morning. Always great to talk with you guys! https://t.co/jmsjIihzIh +04/18/2017,Politicians,@GregForMontana,We had a great turnout in Hamilton last night. Thanks for coming out! https://t.co/AWVduYF8Ly +04/18/2017,Politicians,@GregForMontana,It was an honor to moderate the @MontanaHighTech panel on the high level of entrepreneurship in Montana! https://t.co/Irnt7DqBDK +04/18/2017,Politicians,@GregForMontana,Join us in wishing Greg a happy birthday! Sign our card! – Team Greg For Montana https://t.co/DFURTjkJlR +04/16/2017,Politicians,@GregForMontana,"To all those celebrating, my family and I wish you a Happy Easter!" +04/15/2017,Politicians,@GregForMontana,It was a true honor to participate in the Pow Wow Grand Entry last night at @montanastate https://t.co/ibj3f0td9Q +04/14/2017,Politicians,@GregForMontana,"Had the chance to sit down to lunch with the Missoula Pachyderms, and share a bit about why I’m running for Congres… https://t.co/Mus8SIqCwr" +04/14/2017,Politicians,@GregForMontana,Joined a business roundtable with the @KalispellChambr. Great to discuss growing the economy and creating jobs with… https://t.co/qSbPFbxNez +04/14/2017,Politicians,@GregForMontana,Coming to you live from Missoula with Maritsa on @1025mountainfm's Mountain Morning Show. https://t.co/t1iIwZbe7P +04/14/2017,Politicians,@GregForMontana,Had a great time at our meet and greet today in Kalispell. Enjoyed talking to so many hard-working Montanans. https://t.co/cIQofqvGUx +04/14/2017,Politicians,@GregForMontana,Out on the campaign trail and had lunch with the Polson Republicans and shared a bit about my vision for Montana. https://t.co/e7SrUHiZGT +04/13/2017,Politicians,@GregForMontana,We must protect our Montana treasures and our way of life and that's why I oppose the Emigrant and Crevice mines. https://t.co/BqXbWFfWKy +04/12/2017,Politicians,@GregForMontana,Today I sat down for a roundtable discussion in Great Falls with Ag leaders from across MT to talk about the future… https://t.co/b2HMC9ZqTH +04/11/2017,Politicians,@GregForMontana,Never too early to get involved! Had a great chat with Charlie today when I met with the Helena Pachyderms.… https://t.co/CsD4nQAM7A +04/11/2017,Politicians,@GregForMontana,Got a bite to eat with the Helena Pachyderms today and discussed the importance of putting Montana first. Looking f… https://t.co/bcUhaBuhs0 +04/07/2017,Politicians,@GregForMontana,Congratulations #NeilGorsuch! Soon to be #JusticeGorsuch. Looking forward to seeing you take your place on the Court. #SCOTUS +04/06/2017,Politicians,@GregForMontana,Happy #MontanaDay! Thankful for quality family time spent enjoying the beautiful outdoors #406Day #BeehiveLake… https://t.co/HtwDjCivz1 +04/06/2017,Politicians,@GregForMontana,This filibuster is a disgraceful show of party politics. The Dems have let down their constituents & the nation. I stand with #NeilGorsuch. +04/05/2017,Politicians,@GregForMontana,ATTN MT: @SenatorTester plans to filibuster the #SCOTUS confirmation. Join me. Call on him to confirm #NeilGorsuch. https://t.co/atsj14PJAK +04/04/2017,Politicians,@GregForMontana,Had a great meeting with the Montana Building Industry Association. I look forward to protecting and promoting Mont… https://t.co/J2k89SitrA +04/03/2017,Politicians,@GregForMontana,"Obamacare isn’t working. Montanans have less choices and higher costs. It’s time for common sense reforms. +https://t.co/ehkEbdjQEG" +04/01/2017,Politicians,@GregForMontana,Had the privilege of meeting with @MT_Realtors about future opportunities for growth in Montana real estate. https://t.co/Y20G18wKMm +04/01/2017,Politicians,@GregForMontana,Best way to start the weekend? Flipping pancakes at the @VVAmerica Pancake Breakfast in Bozeman. It was an honor...… https://t.co/DoYgG7KIk8 +04/01/2017,Politicians,@GregForMontana,Thank you to the @MontanaChamber for having me today to discuss Montana’s business future. https://t.co/zFdOSjJcA2 +03/31/2017,Politicians,@GregForMontana,This morning I met with the @MHA_Montana in Helena and had a great discussion on health care solutions. https://t.co/uYviPTdult +03/31/2017,Politicians,@GregForMontana,Had a great time talking with Jay Scott at @KCAP950 today in Helena. https://t.co/SkNvhot24b +03/31/2017,Politicians,@GregForMontana,"DC insiders have rigged the system to cash in at your expense. That’s +why it’s time to #draintheswamp. https://t.co/EaYU1qNqnm" +03/31/2017,Politicians,@GregForMontana,Great to see Leif Welhaven and celebrate his big win at the @BillingsChamber awards. An award well earned! Congrats… https://t.co/vQOTRsxxYc +03/30/2017,Politicians,@GregForMontana,Great to see Billings Mayor Tom Hanel and Lisa Harmon at the @BillingsChamber breakfast! https://t.co/5chk98dl1l +03/30/2017,Politicians,@GregForMontana,Had a great discussion today with @LivinLargeLarry on @Mighty790KGHL in Billings. Thanks for having me Larry! https://t.co/ZJONMDDwac +03/28/2017,Politicians,@GregForMontana,I applaud @POTUS’ decision to repeal the EPA’s job-killing #CleanPowerPlan. This is a good news for Montana energy and Montana jobs. +03/27/2017,Politicians,@GregForMontana,I’m running for Congress for one simple reason: to put the people of Montana first: https://t.co/teGwzfxMNm +03/26/2017,Politicians,@GregForMontana,"You can count on me to fight back against Washington, D.C.’s War On The West. https://t.co/exWhGNpd1z" +03/25/2017,Politicians,@GregForMontana,Enjoyed swinging by the SWMBIA home show in Bozeman today. https://t.co/TggtsRm9fd +03/25/2017,Politicians,@GregForMontana,Today we honor #MedalofHonor recipients who went above and beyond the call of duty to defend our nation. Thank you. #NationalMedalOfHonorDay +03/24/2017,Politicians,@GregForMontana,"A great day for Montana! The #KeystoneXL will create high-paying jobs, improve energy security, and generate tax revenue. Thank you @POTUS." +03/23/2017,Politicians,@GregForMontana,It’s time for the Senate to confirm Neil Gorsuch – an excellent choice for #SCOTUS. Join me if you agree: https://t.co/KjQVe4ZFwx +03/22/2017,Politicians,@GregForMontana,"Things are heating up in the race for congress. I need your support, now more than ever, to defend Montana values. https://t.co/qKeZHA5MDV" +03/18/2017,Politicians,@GregForMontana,Susan and I had a great day here in Billings at the #StPatricksDay parade. We met a lot of proud Montanans. We’re t… https://t.co/KotNlFZu38 +03/17/2017,Politicians,@GregForMontana,Had a great conversation today with Jim Sargent at @1027News in Great Falls about my vision for Montana. Great talk… https://t.co/TnmIiUbj3W +03/17/2017,Politicians,@GregForMontana,"You can count on me to fight back against Washington, D.C.'s War On The West. https://t.co/OoD2y6E8ee" +03/15/2017,Politicians,@GregForMontana,Thank you @SteveDaines. Honored to call you a friend. https://t.co/YG7i7IHlbm +03/15/2017,Politicians,@GregForMontana,RT @RyanZinke: Congrats to @GregForMontana. I'm looking forward to calling you Congressman! +03/15/2017,Politicians,@GregForMontana,We’re hitting the ground running with our campaign. Check out our new website to learn more: https://t.co/atsj14PJAK +03/15/2017,Politicians,@GregForMontana,Thanks for your support @mooreplusone! https://t.co/8e8WU3vaNt +03/14/2017,Politicians,@GregForMontana,Stopped by @NBroadcasting today to talk with Montanans about why I'm running for Congress and my fight to give Mont… https://t.co/G871M6MUIY +03/11/2017,Politicians,@GregForMontana,Last week we launched our first ad. Check it out to see why I’m running for Congress! https://t.co/KVHkpTQHn1 +03/07/2017,Politicians,@GregForMontana,"Thank you, Montana GOP. I’m honored to have your support. Let’s get to work. https://t.co/9eEG0SGE50 https://t.co/dHmtJCsSK1" +03/07/2017,Politicians,@GregForMontana,Tonight Republicans from across Montana will meet in Helena. Thank you to all who made the trip. We appreciate your dedication to our party. +03/04/2017,Politicians,@GregForMontana,I’m committed to making sure that Montana’s voice is heard in Washington. Here’s why I’m running for Congress: https://t.co/H4qw8oAYkU +03/03/2017,Politicians,@GregForMontana,Today we launched our first ad in Montana’s Special Election. Check it out! https://t.co/H4qw8oAYkU +03/02/2017,Politicians,@GregForMontana,I’m running for Congress. It’s time to give power back to the people and ensure Montana’s voice is heard. Join me: https://t.co/b0kAglnHk8 +11/09/2016,Politicians,@GregForMontana,Kicking off election night with @GregLaMotteKULR in Bozeman. #MTpol https://t.co/HQa0qsbJC9 +11/08/2016,Politicians,@GregForMontana,Thank you to everyone who has been a part of our campaign! We are honored to have your support! #MTpol https://t.co/dG7aLqqCAw +11/08/2016,Politicians,@GregForMontana,I just voted in Bozeman. I encourage all Montana voters to get out and make your voices heard today! #MTpol https://t.co/7lTM84h2wX +11/08/2016,Politicians,@GregForMontana,Election Day is TODAY. I hope you'll stand with us by casting your vote for the Gianforte/Robinson ticket! #MTpol https://t.co/wm3ew7usRM +11/08/2016,Politicians,@GregForMontana,RT @DainesforMT: Make your voice heard and elect @RyanZinke to Congress -- I need a partner like him in Washington. #mtpol https://t.co/dgz… +11/08/2016,Politicians,@GregForMontana,RT @DainesforMT: Polls are now open across Montana. Montanans please join me today in electing @GregForMontana as our next Governor! #Vote… +11/07/2016,Politicians,@GregForMontana,RT @DainesforMT: We need @GregForMontana in Helena. #mtpol #WheatMontana https://t.co/c37oL2VkoM +11/07/2016,Politicians,@GregForMontana,"We've now driven over 64,000 miles! https://t.co/RlfOlPSuYP" +11/07/2016,Politicians,@GregForMontana,"@DainesforMT is back on the trail with us today, and we started this morning at KMMS in Bozeman. #MTpol #Sweep16 https://t.co/jjj7wWEARk" +11/06/2016,Politicians,@GregForMontana,Dropped in at Willie's Distillery in Ennis this afternoon! #MTpol #Sweep16 https://t.co/xheqDzojLD +11/06/2016,Politicians,@GregForMontana,Great time in Dillon at the Klondike. We finish the day in Ennis. #MTpol #Sweep16 https://t.co/yUl2HtRUZz +11/06/2016,Politicians,@GregForMontana,Great to be in Twin Bridges on a Sunday! Great support in Madison County! #MTpol #Sweep16 https://t.co/OeaW49u95u +11/06/2016,Politicians,@GregForMontana,An honor to speak tonight in Deer Lodge at the Rocky Mountain Stockgrowers Association Banquet! #MTpol #Sweep16 https://t.co/IF33gBWf6q +11/05/2016,Politicians,@GregForMontana,Whistle stop in Hamilton! #MTpol #Sweep16 https://t.co/qMAZkLWcf7 +11/05/2016,Politicians,@GregForMontana,Missoula is ready for new leadership in Helena! #Sweep16 #MTpol https://t.co/iMwZP4xYmX +11/05/2016,Politicians,@GregForMontana,Got started this morning at the Lake City Bakery in Polson! #MTPol #Sweep16 https://t.co/eeO8PLYJNq +11/05/2016,Politicians,@GregForMontana,Finished up a great day in Thompson Falls at the Rex Theater! Thanks to everyone in Sanders County for your support… https://t.co/ur8ObwFDY7 +11/04/2016,Politicians,@GregForMontana,Outstanding support tonight in Libby! Lincoln County is ready for new leadership in Helena! #MTpol #Sweep16 https://t.co/rS7I3iXFdY +06/02/2018,Politicians,@The_Tim_Murphy,There are dinosaurs all over my TV again +03/21/2018,Politicians,@The_Tim_Murphy,Thinking about dinosaurs +11/27/2016,Politicians,@The_Tim_Murphy,I try so hard +11/26/2016,Politicians,@The_Tim_Murphy,"RT @The_Tim_Murphy: If anyone's good at writing OkCupid bios, I'm struggling with mine a little bit http://t.co/OKgkrX0U0C" +11/18/2016,Politicians,@The_Tim_Murphy,Good morning to all my friends and followers on twitter +10/07/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: Excited for the weekend and also excited to never again be trapped on a tropical island full of dinosaurs trying to kil… +10/06/2016,Politicians,@The_Tim_Murphy,I was trapped in a kitchen with actual velociraptors holy christ +10/01/2016,Politicians,@The_Tim_Murphy,Going apple picking tomorrow. Between now and then I'll have some of the worst nightmares you could possibly imagine. +09/30/2016,Politicians,@The_Tim_Murphy,"Thanks to all who've checked in during my Twitter hiatus. I'm doing well, for someone who was hunted by velociraptors when I was 9 years old" +09/29/2016,Politicians,@The_Tim_Murphy,Listening to The National +07/23/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: The new Belle and Sebastian album is great. Dinosaurs tried to kill me when I was 9 years old and I'll always live with… +07/19/2016,Politicians,@The_Tim_Murphy,Tonight was actually pretty chill +07/01/2016,Politicians,@The_Tim_Murphy,"RT @The_Tim_Murphy: Once upon a time, the only thing separating me from the horrific jaws of a T. Rex was a pane of glass supported by my 9…" +07/01/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: It would be a dream come true to know with complete certainty that I will never be in a situation ever again where dino… +06/30/2016,Politicians,@The_Tim_Murphy,RT @The_Tim_Murphy: I think a lot about going back to Isla Nublar with a machine gun and just killing as many dinosaurs as I can +06/30/2016,Politicians,@The_Tim_Murphy,I'm still here +06/11/2016,Politicians,@The_Tim_Murphy,No +06/09/2016,Politicians,@The_Tim_Murphy,Getting a lot of new followers lately. It makes things maybe 3% better. +06/09/2016,Politicians,@The_Tim_Murphy,Doing karaoke for the first time tonight with my sister Lex haha. Dinosaurs came incredibly close to brutally killing us when we were kids. +06/07/2016,Politicians,@The_Tim_Murphy,I've started taking drawing classes +06/06/2016,Politicians,@The_Tim_Murphy,I am invincible +05/19/2016,Politicians,@The_Tim_Murphy,Thanks everyone who pointed out that electrocution by definition implies death. This is obviously an important distinction that I care about +05/18/2016,Politicians,@The_Tim_Murphy,I was electrocuted by a fence designed to contain massive prehistoric monsters. I just wanted to say that. +05/10/2016,Politicians,@The_Tim_Murphy,Crashed my bike +05/06/2016,Politicians,@The_Tim_Murphy,(These tweets are by @iamchrisscott and not the actual kid from Jurassic Park or the actor who played him. Please no more DMs asking.) +04/28/2016,Politicians,@The_Tim_Murphy,@morelessons thanks I try as hard as I can +04/28/2016,Politicians,@The_Tim_Murphy,@woogirl23 dinosaurs almost killed me when I was 9 years old +04/28/2016,Politicians,@The_Tim_Murphy,"If I get to 10,000 followers it still won't change what happened" +04/19/2016,Politicians,@The_Tim_Murphy,Just started screaming at the gym this morning +04/08/2016,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +04/07/2016,Politicians,@The_Tim_Murphy,I will never die +04/05/2016,Politicians,@The_Tim_Murphy,I tried washing my shoes in the washing machine and they shrunk and don't fit me anymore. So angry. +03/24/2016,Politicians,@The_Tim_Murphy,Tacos for lunch today +03/24/2016,Politicians,@The_Tim_Murphy,Dinosaurs very nearly killed me when I was 9 years old +02/16/2016,Politicians,@The_Tim_Murphy,I came close to dying several times. Maybe that has something to do with it. @DaveHughesRFPB +02/15/2016,Politicians,@The_Tim_Murphy,I hope everyone has a good Monday. I probably won't. +02/12/2016,Politicians,@The_Tim_Murphy,Interesting debate. Dinosaurs. +01/15/2016,Politicians,@The_Tim_Murphy,Excited for the weekend and also excited to never again be trapped on a tropical island full of dinosaurs trying to kill me. +01/03/2016,Politicians,@The_Tim_Murphy,My Christmas tree fell and broke a window. Nothing will ever go right for me. +12/31/2015,Politicians,@The_Tim_Murphy,My New Years resolution is once again to continue not being attacked and killed by dinosaurs. +12/20/2015,Politicians,@The_Tim_Murphy,Why the fuck would I ever do that @sweet_tortilla +12/20/2015,Politicians,@The_Tim_Murphy,Sorry I haven't tweeted in a while. I survived being trapped on an island with literal dinosaurs when I was 9 years old. +11/27/2015,Politicians,@The_Tim_Murphy,Yesterday when my aunt pulled the turkey out of the oven I thought it was a velociraptor and locked myself in the bathroom for 5 hours +11/21/2015,Politicians,@The_Tim_Murphy,TGINot getting killed by dinosaurs +11/07/2015,Politicians,@The_Tim_Murphy,"Just want to say how much I appreciate people constantly tweeting photos of dinosaurs at me. It's great for me, psychologically. Keep it up." +11/05/2015,Politicians,@The_Tim_Murphy,"Had a great night hanging out with Lex, not talking about the time an actual fucking tyrannosaurs rex tried to rip us into a hundred pieces." +10/29/2015,Politicians,@The_Tim_Murphy,Feels like there's a lot going on in the world +10/14/2015,Politicians,@The_Tim_Murphy,Forgot to put the top on the blender and got smoothie all over my kitchen +10/11/2015,Politicians,@The_Tim_Murphy,Listening to Veckatimest by Grizzly Bear. Such a beautiful album. Velociraptors hunted me when I was 9 years old. +10/09/2015,Politicians,@The_Tim_Murphy,A new Beach House album is exactly what I need. I say that as someone who was once trapped in a jeep that was shoved off a cliff by a T. Rex +10/01/2015,Politicians,@The_Tim_Murphy,Dinosaurs +09/23/2015,Politicians,@The_Tim_Murphy,I bought flowers for my girlfriend but forgot them at the store and when I went back to get them they were already gone +09/22/2015,Politicians,@The_Tim_Murphy,I blurted out something about dinosaurs at a job interview again. +09/14/2015,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +09/10/2015,Politicians,@The_Tim_Murphy,This presidential race is getting crazy! Also I was once trapped in a kitchen with actual velociraptors. I think about it constantly. +09/07/2015,Politicians,@The_Tim_Murphy,#LaborDay +09/04/2015,Politicians,@The_Tim_Murphy,Listening to the new Beach House album and not dying. +09/02/2015,Politicians,@The_Tim_Murphy,I'm listening to Neko Case and remembering that I was once nearly killed by actual dinosaurs +08/22/2015,Politicians,@The_Tim_Murphy,"Had a pretty rough time at the Museum of Natural History today. It's more of a Museum of Natural Present to me, in a lot of ways" +08/17/2015,Politicians,@The_Tim_Murphy,I'm alive. +08/16/2015,Politicians,@The_Tim_Murphy,Not a bad weekend. Certainly better than the weekend 20 years ago when dinosaurs tried incredibly hard to kill and eat me. +08/07/2015,Politicians,@The_Tim_Murphy,Eating a croissant +08/04/2015,Politicians,@The_Tim_Murphy,Sometimes in my dreams I'm a dinosaur and I kill a lot of humans. +07/30/2015,Politicians,@The_Tim_Murphy,I'll never be safe will I http://t.co/9vJZZpG6LR +07/29/2015,Politicians,@The_Tim_Murphy,Every shadow is a raptor +07/28/2015,Politicians,@The_Tim_Murphy,Listening to The National and thinking about my life +07/28/2015,Politicians,@The_Tim_Murphy,It would've been cool to see a stegosaurus. It would've been even cooler to not be trapped on an island where dinosaurs tried to kill me. +07/27/2015,Politicians,@The_Tim_Murphy,"The Chipotle near my office is closed today, unfortunately" +07/27/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy no... +07/27/2015,Politicians,@The_Tim_Murphy,"I still remember my grandpa calling me and inviting me to Isla Nublar and me saying ""Yeah, that sounds incredible! Dinosaurs! Wow!"" Christ." +07/26/2015,Politicians,@The_Tim_Murphy,I dropped my iced coffee walking back to my apartment. +07/25/2015,Politicians,@The_Tim_Murphy,"Listening to Sufjan Stevens, one of the best songwriters alive. Velociraptors tried to kill me when I was 9." +07/23/2015,Politicians,@The_Tim_Murphy,I'm sure they'll figure out a way to bring them back somehow. http://t.co/dVbA1vBjOj +07/23/2015,Politicians,@The_Tim_Murphy,They tried @NYid07 +07/23/2015,Politicians,@The_Tim_Murphy,Nothing can kill me +07/22/2015,Politicians,@The_Tim_Murphy,Dinosaurs +07/20/2015,Politicians,@The_Tim_Murphy,I became emotionally overwhelmed during Explosions in the Sky's set at Bonnaroo in 2011 and decided to forgive Dennis Nedry in my heart. +07/19/2015,Politicians,@The_Tim_Murphy,Got a pretty bad sunburn 😔 +07/18/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy can't stress this enough +07/17/2015,Politicians,@The_Tim_Murphy,New Wilco album! Perfect way to end the week. +07/17/2015,Politicians,@The_Tim_Murphy,Cooking classes with my girlfriend are mostly ok but I also associate kitchens with raptors trying to kill and eat me. So it's hard. +07/16/2015,Politicians,@The_Tim_Murphy,She's still crying and I feel so bad. +07/16/2015,Politicians,@The_Tim_Murphy,Having dinner at Lex's and the power went out. I made a joke about being careful with the flashlight and she just started crying. +07/15/2015,Politicians,@The_Tim_Murphy,Yoga helps +07/14/2015,Politicians,@The_Tim_Murphy,Say I had been 12 and not 9 when I visited Jurassic Park. That'd be 3 more years living as a person who hadn't been attacked by dinosaurs. +07/14/2015,Politicians,@The_Tim_Murphy,"My therapist says if I get to 10,000 followers, it won't change what happened." +07/13/2015,Politicians,@The_Tim_Murphy,"Age of Ultron is really good, but not as good as the first Avengers or Winter Soldier" +07/12/2015,Politicians,@The_Tim_Murphy,"I don't let my past define me. Specifically, I'm talking about the time I was viciously hunted by dinosaurs on a tropical island." +07/11/2015,Politicians,@The_Tim_Murphy,"Having a really nice afternoon, grilling with friends and listening to Grizzly Bear and The National." +07/10/2015,Politicians,@The_Tim_Murphy,Been listening to a lot of Wilco again +07/10/2015,Politicians,@The_Tim_Murphy,Sometimes I'll scroll through my followers and all I can see are dinosaurs. +07/09/2015,Politicians,@The_Tim_Murphy,Having a crappy time at Home Depot. +07/08/2015,Politicians,@The_Tim_Murphy,I love indie rock as much as I hated being attacked by velociraptors when I was 9 years old. +07/07/2015,Politicians,@The_Tim_Murphy,What's your favorite Arcade Fire song? Mine's a tie between Rebellion and Ready to Start. +07/07/2015,Politicians,@The_Tim_Murphy,It's been 2 decades. Where are they? Nowhere. They're cowards. +07/07/2015,Politicians,@The_Tim_Murphy,@aprildewdrops I'm committed to not being killed by one +07/07/2015,Politicians,@The_Tim_Murphy,Let's just see if a dinosaur has the fucking balls to come after me again. Let's see. +07/07/2015,Politicians,@The_Tim_Murphy,I'm not afraid of anything. Not anymore. +07/06/2015,Politicians,@The_Tim_Murphy,Sorry I haven't been tweeting much. I beat up a guy pretty bad and spent a few nights in jail. +07/02/2015,Politicians,@The_Tim_Murphy,My cousin Rob always wants to talk about dinosaurs at my family's 4th of July barbecues and I hate it so much. +07/02/2015,Politicians,@The_Tim_Murphy,Pretty nice morning eating cereal and listening to The National. +07/02/2015,Politicians,@The_Tim_Murphy,Nightmares about this. So often. +07/01/2015,Politicians,@The_Tim_Murphy,"My worst birthday was probably my 10th and that's mostly because, a few weeks before it, I was repeatedly attacked by dinosaurs." +06/30/2015,Politicians,@The_Tim_Murphy,"8,000 followers! Incredible. I never thought I'd where's the goat. where's the goat. where's the goat. wheres the goat wheres the goat where" +06/30/2015,Politicians,@The_Tim_Murphy,"Thank you for asking. We probably weren't thinking clearly, on account of being chased by the greatest predator in history. @ArsenaultJay" +06/30/2015,Politicians,@The_Tim_Murphy,I've lost my library card again. Sigh. +06/30/2015,Politicians,@The_Tim_Murphy,Some of you know specific details about what happened to me on Isla Nublar that nobody could possibly know and I can't figure out how... +06/29/2015,Politicians,@The_Tim_Murphy,"Sometimes I sleep in a tree in the park, just to remember." +06/29/2015,Politicians,@The_Tim_Murphy,What's some good new indie music out there? +06/29/2015,Politicians,@The_Tim_Murphy,I'm sure it can't hurt to say this: I never want dinosaurs to kill me. I wish they'd never tried in the first place. +06/28/2015,Politicians,@The_Tim_Murphy,I think a lot about going back to Isla Nublar with a machine gun and just killing as many dinosaurs as I can +06/27/2015,Politicians,@The_Tim_Murphy,@alaskasolo No it's good advice. I will take it to heart. +06/27/2015,Politicians,@The_Tim_Murphy,@alaskasolo Thank you Alaska +06/27/2015,Politicians,@The_Tim_Murphy,I just want to love and be loved. +06/26/2015,Politicians,@The_Tim_Murphy,Dinosaurs tried to kill me when I was 9 years old. +06/25/2015,Politicians,@The_Tim_Murphy,I know what I must become +06/25/2015,Politicians,@The_Tim_Murphy,"""Sorrow found me when I was young."" -The National. One of my favorite songs. And if you replace sorrow with velociraptors it applies to me." +06/25/2015,Politicians,@The_Tim_Murphy,Catching up on political news. Exciting presidential race shaping up. +06/24/2015,Politicians,@The_Tim_Murphy,"If they ever make a movie about my childhood I hope they call it ""This Is A Horrifying Nightmare For Everyone Involved, Especially The Kids""" +06/24/2015,Politicians,@The_Tim_Murphy,"If I had it to do over again, I would not have visited an island full of genetically engineered prehistoric monsters." +06/24/2015,Politicians,@The_Tim_Murphy,My neighbor's car alarm went off all night and I couldn't sleep at all +06/24/2015,Politicians,@The_Tim_Murphy,"Yes, if I'm being completely honest with myself. I would have tried to kill me too. It would be my nature." +06/23/2015,Politicians,@The_Tim_Murphy,"If I had been born a velociraptor, and not a human, would I have done the same thing?" +06/23/2015,Politicians,@The_Tim_Murphy,I have claws in my dreams sometimes +06/23/2015,Politicians,@The_Tim_Murphy,"Listening to Kill the Moonlight for the first time in awhile. Man, Spoon is such a great band." +06/22/2015,Politicians,@The_Tim_Murphy,"Imagine the amount of voltage it would take to contain a Tyrannosaurus Rex. Now imagine you, a human, coming into contact with that voltage." +06/22/2015,Politicians,@The_Tim_Murphy,I was also electrocuted. Did you know that? Dinosaurs hunted me mercilessly and in the midst of that I was also severely electrocuted. +06/22/2015,Politicians,@The_Tim_Murphy,My burrito tore in half at lunch and I got burrito all over my shirt +06/22/2015,Politicians,@The_Tim_Murphy,I cannot figure out my 401k. I also cannot figure out why complete strangers think I want to talk about dinosaurs just for the hell of it. +06/21/2015,Politicians,@The_Tim_Murphy,"Wow I crossed 7,000 followers. All is forgiven, universe! I'm just kidding." +06/21/2015,Politicians,@The_Tim_Murphy,This isn't happening http://t.co/6KtnTH95Ak +06/21/2015,Politicians,@The_Tim_Murphy,It would be a dream come true to know with complete certainty that I will never be in a situation ever again where dinosaurs try to kill me. +06/20/2015,Politicians,@The_Tim_Murphy,"""It takes an ocean not to break"" -The National" +06/20/2015,Politicians,@The_Tim_Murphy,I want all living things to like me and be nice to me +06/19/2015,Politicians,@The_Tim_Murphy,Here's hoping the new Mission: Impossible is good and also that someday I'll stop having nightmares about being ripped apart by dinosaurs. +06/19/2015,Politicians,@The_Tim_Murphy,Staying at a friend's cabin this weekend. Gonna fish and relax and just think for a while and sort some things out. Looking forward to it. +06/19/2015,Politicians,@The_Tim_Murphy,"No. + +Please. + +No." +06/19/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy No.... No.... +06/19/2015,Politicians,@The_Tim_Murphy,No. No. No. http://t.co/iRH2ESd8JL +06/19/2015,Politicians,@The_Tim_Murphy,Actual dinosaurs +06/18/2015,Politicians,@The_Tim_Murphy,We should have had indestructible tires by now +06/18/2015,Politicians,@The_Tim_Murphy,Death is for the weak. And I am not weak. I outsmarted a velociraptor. I looked death in the eyes and survived. I'm invincible. +06/18/2015,Politicians,@The_Tim_Murphy,I cannot be killed. I will never die. +06/17/2015,Politicians,@The_Tim_Murphy,Finally started listening to Serial. One episode in and I already see what all the hype was about. Very intriguing... +06/17/2015,Politicians,@The_Tim_Murphy,"Well, I didn't get the job I was interviewing for. I was also once trapped in a kitchen with 2 of the most horrific monsters in history." +06/17/2015,Politicians,@The_Tim_Murphy,"I gotta say, the new Best Coast album is growing on me" +06/17/2015,Politicians,@The_Tim_Murphy,Why didn't I just walk over and give Grant and Sattler that gun instead of yelling at Lex while she was trying to hack the park system? +06/16/2015,Politicians,@The_Tim_Murphy,I'm surprised they haven't figured out how to design better umbrellas than we have now +06/16/2015,Politicians,@The_Tim_Murphy,@kaythaney I gave up trying to figure out Tweetdeck a while ago +06/16/2015,Politicians,@The_Tim_Murphy,I'm alive and eating a taco salad. +06/16/2015,Politicians,@The_Tim_Murphy,Wake up. Eat breakfast. Go to work. Stay focused. No raptors. Stay focused. No raptors. Stay focused. +06/16/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy this is my life motto +06/16/2015,Politicians,@The_Tim_Murphy,"You guys really don't need to keep reminding me about Jurassic Park. It's not the kind of thing I'm going to, like, forget anytime soon." +06/15/2015,Politicians,@The_Tim_Murphy,My bag of groceries broke and then a kid kicked my scallops into the street and then a bus drove over them. Scallops are so expensive. +06/15/2015,Politicians,@The_Tim_Murphy,The new Florence and the Machine album is great. I was once trapped in a vehicle that was pushed off a cliff by an actual Tyrannosaurus rex. +06/15/2015,Politicians,@The_Tim_Murphy,.@Tashairina Arcade Fire +06/15/2015,Politicians,@The_Tim_Murphy,"Wow 6,000 followers. This is one of a couple of things I never imagined would happen to me." +06/15/2015,Politicians,@The_Tim_Murphy,"If I were to put together a list of things I don't need tweeted at me anymore, ""pictures of dinosaurs"" would probably be at the top." +06/14/2015,Politicians,@The_Tim_Murphy,@The_Tim_Murphy Re-upping this in case any of my new followers are good at online dating. Could use some help. +06/14/2015,Politicians,@The_Tim_Murphy,"Thanks for writing, Conor @conairex" +06/14/2015,Politicians,@The_Tim_Murphy,"I just accidentally spent 4 hours staring at a glass of water, waiting to see if it would ripple." +06/14/2015,Politicians,@The_Tim_Murphy,Kintsugi has its moments but it'd be great to see Death Cab go back to its roots. I'm talking We Have the Facts or even Transatlanticism. +06/13/2015,Politicians,@The_Tim_Murphy,This velociraptor just hissed at me http://t.co/WTyH9QZZyR +06/13/2015,Politicians,@The_Tim_Murphy,Just listening to Grizzly Bear and thinking about my future +06/13/2015,Politicians,@The_Tim_Murphy,"I've gotten a lot of new followers tonight. I was also once mercilessly hunted by actual, real life dinosaurs. Both of these things are true" +06/12/2015,Politicians,@The_Tim_Murphy,"Yes, I'm aware. Thanks." +06/11/2015,Politicians,@The_Tim_Murphy,I think I need to go on a really long road trip alone +06/10/2015,Politicians,@The_Tim_Murphy,I can't tell you how much I'm looking forward to being able to watch TV again without seeing dinosaurs during every commercial break. +06/09/2015,Politicians,@The_Tim_Murphy,Sorry I should've clarified: Good movies that don't directly reference the single most traumatic experience of my entire life. +06/09/2015,Politicians,@The_Tim_Murphy,Are there any good movies coming out +06/09/2015,Politicians,@The_Tim_Murphy,@alexwatsonian what are you talking about +06/08/2015,Politicians,@The_Tim_Murphy,I will never die +06/05/2015,Politicians,@The_Tim_Murphy,@tobytobitobe Congrats on your amazing work at OFA. I regularly have nightmares about the time dinosaurs tried to kill me when I was 9. +06/04/2015,Politicians,@The_Tim_Murphy,Nothing ever stays the same. +06/02/2015,Politicians,@The_Tim_Murphy,Excited for the new Beach House album. Bloom was a masterpiece. +06/02/2015,Politicians,@The_Tim_Murphy,"I've been having nightmares about birds, of all things" +05/30/2015,Politicians,@The_Tim_Murphy,Still need to see Mad Max +05/27/2015,Politicians,@The_Tim_Murphy,"600 followers! I never imagined I'd get this far, especially given that, when I was 9 years old, dinosaurs tried very hard to kill me." +05/26/2015,Politicians,@The_Tim_Murphy,"@oliveiranth Anthony, thank you for clearing this up. In my defense, I was severely electrocuted and also, as an fyi, hunted by dinosaurs." +05/25/2015,Politicians,@The_Tim_Murphy,Just not crazy about Will Butler's solo album. And I say that as someone who loves Arcade Fire and was once hunted by velociraptors. +05/25/2015,Politicians,@The_Tim_Murphy,A list of things I used to be afraid but no longer am would include dinosaurs. I wonder if you could say the same. +05/21/2015,Politicians,@The_Tim_Murphy,Dennis Nedry +05/19/2015,Politicians,@The_Tim_Murphy,Gennaro +04/29/2015,Politicians,@The_Tim_Murphy,I'm considering taking up painting. +04/24/2015,Politicians,@The_Tim_Murphy,"Sometimes when I tweet, or do anything really, I'll get distracted remembering that I was once hunted by prehistoric monsters when I was 9." +04/19/2015,Politicians,@The_Tim_Murphy,Time to go to the mall +04/09/2015,Politicians,@The_Tim_Murphy,I'm out of oranges +03/28/2015,Politicians,@The_Tim_Murphy,"Listening to the new Modest Mouse album. Kinda underwhelmed. Unrelated but, velociraptors tried to kill me one time." +03/21/2015,Politicians,@The_Tim_Murphy,"The best part about surviving what I went through is having a therapist who won't stop referring to it as ""the dinosaur thing.""" +03/21/2015,Politicians,@The_Tim_Murphy,Sorry I don't tweet as much anymore. Dinosaurs. +03/20/2015,Politicians,@The_Tim_Murphy,I'm drinking a stout beer +03/01/2015,Politicians,@The_Tim_Murphy,"Excited for House of Cards, to say the least" +02/27/2015,Politicians,@The_Tim_Murphy,lol at the dress debate. I say it's black and blue but who knows! Prehistoric monsters almost killed me when I was 9. +02/24/2015,Politicians,@The_Tim_Murphy,Nothing can scare me +02/22/2015,Politicians,@The_Tim_Murphy,"Once upon a time, the only thing separating me from the horrific jaws of a T. Rex was a pane of glass supported by my 9-year-old arms." +02/19/2015,Politicians,@The_Tim_Murphy,I don't remember tweeting any of that the other night +02/17/2015,Politicians,@The_Tim_Murphy,I just screamed at the sunset. Make your move. +02/17/2015,Politicians,@The_Tim_Murphy,"I know what fear is. I know what it means to say ""I'm alive."" I'll take any one of you motherfuckers on any time. Come and get me." +02/17/2015,Politicians,@The_Tim_Murphy,I'd fucking love to see one of you survive what I did at Isla Nublar then turn around 2 decades later and crowd surf at an Arcade Fire show +02/17/2015,Politicians,@The_Tim_Murphy,This world doesn't have the balls to kill me +06/20/2018,Politicians,@JohnKerry,"Not surprisingly, The Boss says it best. This isn’t who we are, or who we should ever risk becoming - and fixing it… https://t.co/M2BnPEiFHX" +05/16/2018,Politicians,@JohnKerry,An important step towards fixing what’s been broken - kudos to @SecPompeo. https://t.co/8ZmTN8ruYs +05/16/2018,Politicians,@JohnKerry,Cancer is an evil foe - but Harry has more than our well-wishes in his corner going for him - he's got family and f… https://t.co/SrjTQZRN2X +05/16/2018,Politicians,@JohnKerry,"Thinking of @SenatorReid - the fourth and final Leader with whom I served in the Senate - and one of the toughest,… https://t.co/vRFsrdtwbh" +05/11/2018,Politicians,@JohnKerry,"Actually Jeff, you’re too kind. There are words - four letter ones. If @SenJohnMcCain and I didn’t know how to use… https://t.co/f7deHnfyOj" +05/08/2018,Politicians,@JohnKerry,My thoughts on President Trump’s Iran statement: https://t.co/E5A12PKnnx +05/02/2018,Politicians,@JohnKerry,"These comments are wrong, ugly, and unacceptable - anywhere from anyone - but particularly from anyone who says he… https://t.co/TEF6VdMOFR" +05/01/2018,Politicians,@JohnKerry,There was no negotiation - and all of that changed with JCPOA. Blow up the deal and you're back there tomorrow! 4/4 +05/01/2018,Politicians,@JohnKerry,It’s worth remembering that the early 2000's - when his evidence comes from - was the period where the world had n… https://t.co/VaJpQPz7Ec +05/01/2018,Politicians,@JohnKerry,Read their unprecedented letter in its entirety here: https://t.co/8NABgACTLW. Everything that PM Netanyahu laid ou… https://t.co/SwjdaX6kwA +05/01/2018,Politicians,@JohnKerry,Every detail PM Netanyahu presented yesterday was every reason the world came together to apply years of sanctions… https://t.co/vcPamZ0gty +05/01/2018,Politicians,@JohnKerry,Something I've never done before - and I'm not done writing - but it's been an interesting exercise looking back on… https://t.co/3Ta8IxVzgZ +04/26/2018,Politicians,@JohnKerry,Excited to team up with @TheRiseFund to try and create a private sector Marshall Plan: https://t.co/Y1S3BiZiD7 https://t.co/MJGH6NZENZ +04/23/2018,Politicians,@JohnKerry,Thank you @ourdailyplanet & @MonicaMedinaDC for the great questions & for all you do to highlight the enormous impa… https://t.co/gbu79V6rci +04/22/2018,Politicians,@JohnKerry,Thanks for hosting me @ozy - this was a lot of fun! https://t.co/B6GQi4F8z0 +04/20/2018,Politicians,@JohnKerry,"Just in time for #EarthDay, I had a great chat with @OurOcean CEO @InVeritas_Jones about the legacy of the… https://t.co/5Y0m0yH8HP" +04/19/2018,Politicians,@JohnKerry,My friend @David_Cameron has lived and led at the intersection of complicated global challenges - delighted to see… https://t.co/kNh0Rbz39O +04/18/2018,Politicians,@JohnKerry,My thoughts on the passing of Former First Lady Barbara Bush: https://t.co/8Ska9YiyhC +04/18/2018,Politicians,@JohnKerry,First she made BoA a corporate leader on coal pollution and now assault-style firearms. Bold moves to align the pub… https://t.co/sRgMcNPAvm +04/17/2018,Politicians,@JohnKerry,"Good one, David - that joke's as old as the Super Bowl Shuffle! #FiveRings https://t.co/HFXPktWCnd" +04/16/2018,Politicians,@JohnKerry,"Boston’s strength and courage lifted all of us up. Today I'm thinking of those we lost, their families and everyone… https://t.co/0bnM19sAld" +04/16/2018,Politicians,@JohnKerry,Five years ago and it feels like yesterday: I was trapped on a flight a thousand miles away when the bombs went off… https://t.co/lt0zOHcJln +04/02/2018,Politicians,@JohnKerry,Proud to join a bipartisan group of over 50 former national security leaders in filing a brief at the Supreme Court… https://t.co/Krx7J2JT6L +03/27/2018,Politicians,@JohnKerry,The always thoughtful @ErnestMoniz with an important piece on Iran/DPRK - does a nice job debunking the myth on su… https://t.co/GyfHpPGvP7 +03/02/2018,Politicians,@JohnKerry,Mentor to so many - she walks the walk: no coincidence that 40% of the management team is comprised of women. Still… https://t.co/A1gCMil4kS +03/02/2018,Politicians,@JohnKerry,"An important civic/business voice from Boston, everyone should watch this interview w/ @AnneFinucane. Anne's spent… https://t.co/OWuUZIpcQ5" +03/01/2018,Politicians,@JohnKerry,"Whether it was Mexico, Colombia, Cuba and more - Roberta demonstrated the difference diplomacy can make to advance… https://t.co/h2SE714N5M" +03/01/2018,Politicians,@JohnKerry,Grateful for all @EmbRoberta has contributed to the @StateDept - thirty-plus years of public service and respected… https://t.co/VhdqIY3vUW +02/28/2018,Politicians,@JohnKerry,"""We are children who are being expected to act like adults, while the adults are proving themselves to behave like… https://t.co/8MXcWVULJF" +02/28/2018,Politicians,@JohnKerry,".@emma4change: I can’t improve on your eloquence - but can tell you that when I wasn’t that much older, and wanted… https://t.co/GcQIFHcUlC" +02/27/2018,Politicians,@JohnKerry,Grateful to President @mbachelet for signing a decree to create the Rapa Nui Marine Protected Area around… https://t.co/ZBSvhakuUn +02/23/2018,Politicians,@JohnKerry,A powerful piece that I hope you'll all read. Thank you @johnfkirby63 and Meagan for sharing your inspiring story. https://t.co/SjFZDPzfbn +02/23/2018,Politicians,@JohnKerry,"A big congrats to @margbrennan – smart, tough, fair, responsible – we traveled a lot of miles together while I was… https://t.co/2xGZXsd9J0" +02/22/2018,Politicians,@JohnKerry,The police that Republicans love to give speeches praising support the assault weapons ban and I'd stand with them… https://t.co/vsxXYq2N1Y +02/22/2018,Politicians,@JohnKerry,Getting rid of assault weapons and strengthening background checks doesn't take anything away from the 2nd Amendmen… https://t.co/Fs3bO7JHoz +02/22/2018,Politicians,@JohnKerry,"Fed up that more than 13 years since the @GOP Congress let the assault weapons ban expire, we still can't settle a… https://t.co/gTYOFrmRPK" +02/14/2018,Politicians,@JohnKerry,Nice to be back in “the real Washington” where good things are actually happening to responsibly deal w/climate cha… https://t.co/Cb6dIlPT9t +02/09/2018,Politicians,@JohnKerry,"If you haven’t seen @IcarusNetflix, you should - a really powerful story. https://t.co/yC1XNOEXzQ" +02/08/2018,Politicians,@JohnKerry,A beautiful child of God - an important step by Gerber - and it’s about time! Hope to see lots more of this everywh… https://t.co/PahusUO3zU +02/07/2018,Politicians,@JohnKerry,Happy 106th birthday to a strong and witty woman of character. @SenJohnMcCain - I think might know where you got it… https://t.co/1HIrmt5i1X +02/07/2018,Politicians,@JohnKerry,Eight years later and despite what opponents predicted in 2010 - New START is a success. A good reminder about sou… https://t.co/DYMvqiHBot +02/06/2018,Politicians,@JohnKerry,"RT @StimsonEnvSec: Resource theft on the ocean is leading to economic, food, and environmental insecurity in coastal nations around the glo…" +02/02/2018,Politicians,@JohnKerry,"and the whole world suffers when that happens to America. In Watergate, the difference was, regardless of Party, ev… https://t.co/Ax68UmOj90" +02/02/2018,Politicians,@JohnKerry,"The Nunes memo is dangerous, ugly, and an assault on the integrity of the institutions of our country. I lived thro… https://t.co/N5ttpHQDPw" +02/01/2018,Politicians,@JohnKerry,Congrats on a well-deserved retirement for Tom Shannon. We are all - all ten secretaries he worked with - better of… https://t.co/8Nh2nlFy9p +01/30/2018,Politicians,@JohnKerry,Proud of my friend @LeoDiCaprio and the tremendous work the @DiCaprioFDN and their partners are doing worldwide to… https://t.co/04eKkmaOzk +01/25/2018,Politicians,@JohnKerry,Insightful piece by my friend @AnneFinucane on the impact of capital deployment to address some of the world’s most… https://t.co/3ew8jTzi1g +01/18/2018,Politicians,@JohnKerry,"A privilege to know we’ll soon be reading @jrezaian in the @washingtonpost again. Smart, courageous, and strong are… https://t.co/cjzr1EWOeY" +01/10/2018,Politicians,@JohnKerry,Grateful to my longtime friend @GovInslee and all of the leaders who are ensuring U.S. states step up to address cl… https://t.co/VX8UNnpQXo +12/31/2017,Politicians,@JohnKerry,"With humility about how little we know about what's happening inside Iran, this much is clear: it's an Iranian mome… https://t.co/hMUYKnKAnz" +12/20/2017,Politicians,@JohnKerry,RT @CarnegieEndow: .@JohnKerry explains how climate change can have a profound impact on national security. https://t.co/RFdIa0a44I +12/14/2017,Politicians,@JohnKerry,My friend @jonmacks1 - a gifted writer and class act - wrote this beautiful tribute to his mom. I would've liked to… https://t.co/dQkZc7W5xw +12/14/2017,Politicians,@JohnKerry,A must-read. Talent made my friend @Lin_Manuel an artist - but necessity made him an activist. https://t.co/RAVIh8gjwJ +12/12/2017,Politicians,@JohnKerry,"Too soon, Karen...too soon. https://t.co/SJwkFmYuPY" +12/12/2017,Politicians,@JohnKerry,"RT @CarnegieEndow: Two years ago today, most of the world’s countries adopted the Paris Climate Agreement. By pulling out of the agreement,…" +12/07/2017,Politicians,@JohnKerry,"Island-nation Palau announces all visitors now have to sign a contract, stamped in their passports, promising to pr… https://t.co/SoQm9iZFXD" +12/01/2017,Politicians,@JohnKerry,Always important and meaningful when @madeleine speaks out - we both lived it: Foreign Service is the backbone of o… https://t.co/H1GyEfxvDc +11/28/2017,Politicians,@JohnKerry,Wise words from two accomplished career diplomats - and I can promise you they don't ring this alarm bell lightly;… https://t.co/z2oNsGVhbz +11/27/2017,Politicians,@JohnKerry,Grateful to President @EPN for his tremendous leadership in making Mexico's Revillagigedo a national park and the l… https://t.co/KKCORcJjDu +11/20/2017,Politicians,@JohnKerry,Erik Jacobs' latest project captures something that's always made Boston and America special -… https://t.co/HuAjxUle8U +11/14/2017,Politicians,@JohnKerry,"Encouraged by what's happening at #COP23. The world is continuing to advance the Paris Agreement, unmoved by @POTUS… https://t.co/k2JNmjUITc" +11/13/2017,Politicians,@JohnKerry,Proud of the work that the @KerryInitiative & @JacksonYale is doing on climate change and beyond. Their summary rep… https://t.co/IAh8tetPbO +10/24/2017,Politicians,@JohnKerry,Amen @SenJohnMcCain. @JeffFlake has the courage of convictions in an institution built on far more than party. https://t.co/F1WFoAawJX +10/17/2017,Politicians,@JohnKerry,Just one of the many reasons I'm so proud of @VBKerry every single day. https://t.co/Hiloz1RtpG +10/13/2017,Politicians,@JohnKerry,It's all hands on deck standing up to President Trumps's dangerous decision on Iran. Here's my statement. https://t.co/VsTBwrqBZQ +10/12/2017,Politicians,@JohnKerry,This is huge problem. Smart analysis by @davideckelswade. I know @SenateCommerce/@EdMarkey will ask these q's too. https://t.co/VIvBX1rUlx +10/12/2017,Politicians,@JohnKerry,Thanks for sharing @jrpsaki! A terrific resource created by my colleagues at @CarnegieEndow. https://t.co/4eTrR8hIBw +10/06/2017,Politicians,@JohnKerry,Very excited to be teaming up with @juliepackard and @MontereyAq to tackle these critical issues. https://t.co/LjbMyt6JLp +10/06/2017,Politicians,@JohnKerry,"Thrilled to be in Malta to participate in #OurOcean. Grateful to Malta, @FedericaMog @KarmenuVella @EU_MARE for ho… https://t.co/Cr96Po2Xfl" +10/05/2017,Politicians,@JohnKerry,"Smart piece by @GerryConnolly. Thank you for your leadership, Congressman! https://t.co/LlzaZb0KKa" +10/05/2017,Politicians,@JohnKerry,".@johnfkirby63 tells it like is is here. Thank you, Admiral! https://t.co/48nASadsKv" +10/04/2017,Politicians,@JohnKerry,"When @ErnestMoniz talks, I listen - and you should too. Well done, Ernie! https://t.co/BU5xylWExb" +10/03/2017,Politicians,@JohnKerry,"True to form, @SenatorShaheen is right. I hope so too. https://t.co/a5JHaYTwOB" +10/02/2017,Politicians,@JohnKerry,https://t.co/D47ZLrx8Mj +09/30/2017,Politicians,@JohnKerry,Putting myself back in the shoes of those who may have to vote. Here's how we got to the nuclear deal that works. https://t.co/yzSiA9OMjw +09/29/2017,Politicians,@JohnKerry,"Congrats @StimsonCenter, @NatGeo, RADM Sharp for highlighting the need to combat #IUUfishing for the security of… https://t.co/GvQhjZxPNG" +09/25/2017,Politicians,@JohnKerry,Eager to head to Malta next week for #OurOcean. Thank you @KarmenuVella & @FedericaMog for continuing strong global… https://t.co/FZptnscW46 +09/21/2017,Politicians,@JohnKerry,"Congrats to @investinclimate: a long-time member of my team, a super-smart environmentalist and an even better pers… https://t.co/E2ylWO46kc" +09/21/2017,Politicians,@JohnKerry,"A well-deserved honor by my friend, the incomparable @AnneFinucane! #FortuneMPW https://t.co/8AIOJjOx3d" +09/21/2017,Politicians,@JohnKerry,Some highlights from the productive/insightful #YaleClimateConference. A big thanks to all of our brilliant guests. https://t.co/jNqPAfFue6 +09/19/2017,Politicians,@JohnKerry,@LeoDiCaprio .@LeoDiCaprio & @dicapriofdn walks the walk/talks the talk. Proud of all he does to combat climate cha… https://t.co/MppDRfkgkg +09/19/2017,Politicians,@JohnKerry,Thrilled to have hosted @LeoDiCaprio at the #YaleClimateConference today. Watch his remarks/our conversation here: https://t.co/EXNe5dv0xI +09/19/2017,Politicians,@JohnKerry,RT @Yale: WATCH LIVE: @JohnKerry & @LeoDiCaprio discuss citizen engagement & activism at #YaleClimateConference https://t.co/DDh7zZ4VmP @Ja… +09/19/2017,Politicians,@JohnKerry,Climate change has no political affiliation-it affects us all.Talking bipartisan solutions w/61st SecState Jim Bake… https://t.co/QF7Knww8Ny +09/19/2017,Politicians,@JohnKerry,All-star #YaleClimateConference line-up: @GovInslee @Anne_Hidalgo @JimYongKim @JerryBrownGov discuss the roles citi… https://t.co/pZ7ZupEEHP +09/18/2017,Politicians,@JohnKerry,Great #YaleClimateConference discussion w/@AnneFinucane @JeffImmelt @PaulsonInst on the private sector's role in c… https://t.co/DDbsC4vL8h +09/18/2017,Politicians,@JohnKerry,Delighted to welcome energy experts like @ErnestMoniz & @Hewlett_Found's Jonathan Pershing to help kick off the… https://t.co/8kkQJXP7pk +09/18/2017,Politicians,@JohnKerry,RT @Yale: Watch sessions of the #YaleClimateConference via livestream https://t.co/vpuidWmKcT @KerryInitiative @YaleJackson @YaleFES @YaleS… +09/18/2017,Politicians,@JohnKerry,Proud to host the first #yaleclimateconference this week with the @KerryInitiative & @JacksonYale. We must face th… https://t.co/xdoLaDHbe5 +09/13/2017,Politicians,@JohnKerry,Always fun to spend time w/ @SenJohnMcCain. Funny how life always brings us full circle. Don't miss @KenBurns &… https://t.co/e682o85ztV +09/01/2017,Politicians,@JohnKerry,Some important thoughts from @CarterCenter on the #Kenya Supreme Court Ruling. https://t.co/KxjRP9DNK4 +08/23/2017,Politicians,@JohnKerry,The ocean isn't a commodity to be bought and sold. We must put Pacific bluefin tuna on a path to recovery - now:… https://t.co/eSxuuHg13Q +08/15/2017,Politicians,@JohnKerry,I’ll be on @WEEI @NESN @TheJimmyFund Radio-Telethon at 10:15a today. Call 877-738-1234 to help #KCANCER. Listen on https://t.co/cL4nVxLUSq +08/14/2017,Politicians,@JohnKerry,All the people of Kenya are in my thoughts. I urge all to resolve complaints through the courts & for police to all… https://t.co/h8qCK9yu4k +08/14/2017,Politicians,@JohnKerry,@POTUS 3. @potus has been tougher naming/shaming an American CEO and Senate Majority Leader than a domestic terrori… https://t.co/8te9y43FBP +08/14/2017,Politicians,@JohnKerry,@POTUS 2. @potus empowered the worst of the worst to hear exactly what they wanted to hear. +08/14/2017,Politicians,@JohnKerry,"1.No matter what @potus says now-first instincts always revealing; his was to look into the camera and say ""many sides""-that cant be erased." +08/12/2017,Politicians,@JohnKerry,2) The United States condemns it overseas and needs to start to do same at home. +08/12/2017,Politicians,@JohnKerry,"1) What we've seen today in #Charlottesville needs to be condemned and called what it is: hatred, evil, racism & homegrown extremism." +08/08/2017,Politicians,@JohnKerry,An inspiring day in Kenya watching democracy in action. Enthusiastic voters not fazed by long lines - all agree ele… https://t.co/k1C9mEqAna +08/07/2017,Politicians,@JohnKerry,A powerful statement from @BarackObama. The stakes are high in Kenya this Election Day and I'm hopeful the nation i… https://t.co/peX01MsUbc +08/07/2017,Politicians,@JohnKerry,"Glad to be on the ground in Nairobi for this key election. There's a lot riding on a free, fair and safe election.… https://t.co/qsih8rvsbv" +08/01/2017,Politicians,@JohnKerry,Traveled many miles w/Mark in 2004. A fair reporter with great senses of both decency and humor. He'll be missed. https://t.co/u3zlUsnT7x +07/27/2017,Politicians,@JohnKerry,"An unsurprisingly spot-on piece by my fmr Asst Secretary @johnfkirby63. Keep it up, Admiral! https://t.co/UDC6vpDCZe" +07/26/2017,Politicians,@JohnKerry,"@POTUS 5) Instead, this is just conjuring up fake excuses to discriminate/distract. We’re better than this." +07/26/2017,Politicians,@JohnKerry,@POTUS 4) Nor is this decision in line with America's traditional role setting standard for other countries to treat people with dignity. +07/26/2017,Politicians,@JohnKerry,@POTUS 3) Nothing about today’s announcement is in line with our nation’s values. +07/26/2017,Politicians,@JohnKerry,2) Harry Truman didn't break down barriers with an executive order just to have @POTUS try and build them back up via a tweet. +07/26/2017,Politicians,@JohnKerry,1) America has always been strongest when we find a place for everyone willing to lay down their life to serve. +07/25/2017,Politicians,@JohnKerry,"Bob was a legendary fund-raiser - but he was an even better father, grandfather, husband and friend. Thinking about… https://t.co/QdCfmDgGO6" +07/21/2017,Politicians,@JohnKerry,@USEmbassyTurkey This is a crucial post and Amb. Bass is the right officer for the job. +07/21/2017,Politicians,@JohnKerry,Big congrats to @USEmbassyTurkey Amb John Bass on his nom to be COM in Kabul. Grateful he & Holly (the ultimate tea… https://t.co/cDm83c5ZwW +07/20/2017,Politicians,@JohnKerry,"Well said, Meghan. Teresa and I are thinking of you, your dad, and the entire family tonight. https://t.co/NFDo2pwAt0" +07/20/2017,Politicians,@JohnKerry,"I love @SenJohnMcCain. Unbeatable, unbreakable. He's Teddy Roosevelt's ""man in the arena"" even when we're on opposi… https://t.co/rkLNj5ToVL" +07/14/2017,Politicians,@JohnKerry,2) A place where from FDR to Churchill being a 'globalist' is a badge of honor! cc: @strobetalbott +07/14/2017,Politicians,@JohnKerry,1) Was privileged to deliver this year's Ditchley Foundation Lecture - https://t.co/d0fRQXUZh1 +07/14/2017,Politicians,@JohnKerry,Congrats Chris - such an important issue. Our vets are lucky that you have their back - keep on fighting! https://t.co/AV74nxzoIW +07/14/2017,Politicians,@JohnKerry,"Thinking of President Carter; he's as strong as he is decent. He'll be back on his feet soon, building home at 92!… https://t.co/GtvPaOMj2J" +07/14/2017,Politicians,@JohnKerry,@JimLangevin 4) @amsecproject with a great piece on where we are: https://t.co/clmT5t7KIM +07/14/2017,Politicians,@JohnKerry,@JimLangevin 3) Climate change is a driver of conflict and a national security issue. +07/14/2017,Politicians,@JohnKerry,"@JimLangevin 2) More impressively, congrats to @JimLangevin for beating back effort to deny what the Pentagon has argued for years:" +07/14/2017,Politicians,@JohnKerry,1) Big congrats to my former NE colleague @JimLangevin: huge win today on the NDAA and a longtime champion against… https://t.co/o6QyKsiCLH +07/12/2017,Politicians,@JohnKerry,JCPOA's anniversary is approaching and this is worth a read: 38 generals and admirals know what they're talking abo… https://t.co/AMdk90lXGv +07/12/2017,Politicians,@JohnKerry,Tragic. A doctor comes to the US to save lives and this happens. This is not who we are. https://t.co/l0kOaP4Xa1 +06/23/2017,Politicians,@JohnKerry,"Given the Jets track record, would we call this moving to England or just fleeing Metlife Stadium? Go @Patriots!! https://t.co/Hf4K3THxjb" +06/18/2017,Politicians,@JohnKerry,Prayers for those we lost on the USS Fitzgerald. A reminder of the risks that all those on duty for America take on every day. +06/14/2017,Politicians,@JohnKerry,Honored to be heading back to Kenya for these important elections. https://t.co/rIrEQDc67M +06/07/2017,Politicians,@JohnKerry,Important story about dignity & courage. Being yourself is in America's DNA. https://t.co/fRKkV6XgH0 +06/01/2017,Politicians,@JohnKerry,My thoughts on today's big mistake by President Trump to put America last - and the big fight he's started. Lets go. https://t.co/YmgI8FBwhg +05/31/2017,Politicians,@JohnKerry,"Clear argument by ""the Davids"" - @davideckelswade & David McKean - two of my former Chiefs who've been working on c… https://t.co/ZAImYPbU0N" +05/31/2017,Politicians,@JohnKerry,"Good question. But more importantly: billions of grandkids will have to live with this decision, however it lands.… https://t.co/Eb0QvT1ZFn" +05/27/2017,Politicians,@JohnKerry,@morningmika Zbig was an incredible friend - was always there to give me advice. The world is a safer place bc of h… https://t.co/zqLWLXSGMp +05/25/2017,Politicians,@JohnKerry,"@Harvard hosted @joebiden and I - ""centennials” Today - younger! Please watch Mark Z's powerful case to millennials. https://t.co/0z0wDHyGbN" +05/25/2017,Politicians,@JohnKerry,More change than ever before-short and long term. Wanted to share a few thoughts on how we got here and where we go. https://t.co/4MXDJhq0RZ +05/24/2017,Politicians,@JohnKerry,"Cut me some slack on ""threading."" To paraphrase Yoda: ""Tweet this well when 73 you are I doubt.""" +05/24/2017,Politicians,@JohnKerry,"9- Must also consider how to make any move in coordination/consultation with our European allies, who were and are essential." +05/24/2017,Politicians,@JohnKerry,8- We need to consider the implications of confrontation without conversation. +05/24/2017,Politicians,@JohnKerry,7- There are many tools to up the pressure already in place and at our disposal. We need to weigh/consider risk to JCPOA. +05/24/2017,Politicians,@JohnKerry,"6- After Rouhani’s reelection, there is much up in the air/room for misinterpretation. This is not the moment for a new Iran bill." +05/24/2017,Politicians,@JohnKerry,"5- But to my friends & former colleagues, here is my take: this is a time to tread carefully." +05/24/2017,Politicians,@JohnKerry,"4- On #JCPOA, we engaged in an important back and forth. And I welcomed that debate." +05/24/2017,Politicians,@JohnKerry,"3- #SFRC has made constructive contributions over years, both sanctions + exploring Iran nuclear issue substantively." +05/24/2017,Politicians,@JohnKerry,"2- Tomorrow, #SFRC is considering the Iran bill. Big decision. I respect SFRC's prerogatives - I spent 28 years there myself." +05/24/2017,Politicians,@JohnKerry,"1- My first ""tweet storm."" What recovering Senator could be constrained by 140 characters?! #Fillibuster habits die hard." +05/24/2017,Politicians,@JohnKerry,Home in MA & lucky to speak with @Kennedy_School graduates today. I promise to keep it short! Watch live at 2pm. https://t.co/GrnKOz53vp +05/23/2017,Politicians,@JohnKerry,@LindseyGrahamSC and I do not always agree - but he is spot on here. https://t.co/q9HphkdMPy +05/23/2017,Politicians,@JohnKerry,3) Murdering children the ultimate act of cowardice. The whole world must find answers and act so that this does not become the new normal. +05/23/2017,Politicians,@JohnKerry,"2) Moms/Dads: imagine dropping off your kids at concert, later turning on the TV and fearing whether it's your son or daughter lost." +05/23/2017,Politicians,@JohnKerry,"1) Prayers, yes, but need more than that for all of our friends in Manchester/UK." +05/16/2017,Politicians,@JohnKerry,A big night for me. Such an honor to be recognized by @RogersonComm. An historic organization that makes Boston pro… https://t.co/5mrc0C5wKH +05/10/2017,Politicians,@JohnKerry,Proud to interview my daughter @VBKerry about service & her vision for @seed_global in the #GlobalMoms relay:… https://t.co/TR0f61K1is +04/22/2017,Politicians,@JohnKerry,Why I’m an optimist this Earth Day: https://t.co/zWHGrkEHRq https://t.co/o2RHBYG0kB +03/21/2017,Politicians,@JohnKerry,My Thoughts on the Passing of Martin McGuinness: https://t.co/pyd82WSaZu +02/06/2017,Politicians,@JohnKerry,Heartened to see people and companies standing with those doing so much good for those most in need -- leadership t… https://t.co/x3NTwUDdFm +01/19/2017,Politicians,@JohnKerry,I will always be grateful for the opportunity to serve this great country as Secretary of State. It has been the ho… https://t.co/1I8nYm3FX0 +01/19/2017,Politicians,@JohnKerry,"The @StateDept team has inspired me, informed me & guided me every day of this job. I am profoundly thankful for th… https://t.co/9zm0wI8pKI" +01/19/2017,Politicians,@JohnKerry,We've restored assertive diplomacy as a tool of first resort & deployed it to advance our security & prosperity. https://t.co/6lOa8Qv2oz +01/17/2017,Politicians,@JohnKerry,U.S. is more engaged in many places than at any time in our history. American leadership on world stage remains essential. #WEF17 +01/17/2017,Politicians,@JohnKerry,Good discussion with @tomfriedman on the importance of diplomacy in facing today's complex challenges. #WEF17 https://t.co/HT2MXhVdsF +01/16/2017,Politicians,@JohnKerry,Grateful to @BorisJohnson for his hospitality today and partnership in keeping the U.S.-U.K. special relationship strong and vital. +01/16/2017,Politicians,@JohnKerry,Inspiring to discuss international reconciliation work with the Archbishop of Canterbury and to tour Lambeth Palace. https://t.co/P014GsdIiK +01/16/2017,Politicians,@JohnKerry,"""Life's most persistent and urgent question is: 'What are you doing for others?'"" #MLKDay" +01/14/2017,Politicians,@JohnKerry,Very powerful that veterans from both sides of the war can now be friends & work towards same goal of strengthening… https://t.co/zs4xmE0bYi +01/14/2017,Politicians,@JohnKerry,"Today I met Vo Ban Tam, a former VC enemy who farms shrimp and crab on the same #Mekong river we once fought over. https://t.co/O1h4RxpwS6" +01/13/2017,Politicians,@JohnKerry,"Our focus with #Vietnam is on the future - deepening our partnership, broadening the bilateral agenda & promoting i… https://t.co/OS1HDoe50G" +01/13/2017,Politicians,@JohnKerry,"We're getting close to making Fulbright University #Vietnam a reality. This independent, world-class institution wi… https://t.co/Idq4f9bflw" +01/13/2017,Politicians,@JohnKerry,"U.S.-#Vietnam relationship is built on economic cooperation, cultural exchange & open dialogue. I look forward to s… https://t.co/oV38jiYGJU" +01/10/2017,Politicians,@JohnKerry,Fifty years ago I was commissioned in the @USNavy. Honored today to speak with the next generation of #Midshipmen a… https://t.co/pXdGSxCavN +01/10/2017,Politicians,@JohnKerry,"In ’04, I asked a young Senator to keynote the Dem Convention. Tonight, @POTUS gives his farewell address. Proud of… https://t.co/ga2oEhatIh" +01/09/2017,Politicians,@JohnKerry,"Challenged @MIT students to recognize the vast potential of the energy market, work toward building a sustainable f… https://t.co/TVZVg1WYgu" +01/09/2017,Politicians,@JohnKerry,"I thank Gov't of Mexico for swift arrest of suspect in attack on @USCGGuadalajara colleague; thoughts, prayers remain with him & his family." +01/05/2017,Politicians,@JohnKerry,Global security & prosperity require U.S. leadership & engagement with our key partners. My exit memo to @POTUS → https://t.co/GOnNWaUfT6 +01/01/2017,Politicians,@JohnKerry,"Teresa & I extend best wishes for a Happy New Year. May we begin 2017 with a renewed commitment to promoting peace, prosperity & progress." +12/25/2016,Politicians,@JohnKerry,Teresa and I wish our @StateDept family -- and everyone -- a very Merry #Christmas. +12/24/2016,Politicians,@JohnKerry,"Happy #Hanukkah! May the lights of the menorah brighten your home and the year ahead. From my family to yours, Chag Sameach." +12/20/2016,Politicians,@JohnKerry,"Pivotal moment for #DRC. We call on all parties to respect human rights, reject violence & redouble commitment to an inclusive agreement." +12/19/2016,Politicians,@JohnKerry,"US condemns assassination of Russian Amb to Turkey. Thoughts are w/his loved ones, Russian people, & other victims of this despicable act." +12/18/2016,Politicians,@JohnKerry,"Today, on #InternationalMigrantsDay, we reflect on the ways migrants enrich our culture, improve our economy, and make our nation stronger." +12/18/2016,Politicians,@JohnKerry,"Worked with Saudi Arabia, Oman, UAE, UN, UK to chart a way forward on #Yemen, including urgent need for ceasefire &… https://t.co/8XeSgIIpJ0" +12/18/2016,Politicians,@JohnKerry,"Discussed strength of US-Saudi ties, urgent need to address conflict & humanitarian crisis in #Yemen with… https://t.co/qeowCJopjT" +12/13/2016,Politicians,@JohnKerry,"To @StateDept employees overseas w/out their families this holiday season, thank you & your families for your incre… https://t.co/WqfWL3vUrU" +12/10/2016,Politicians,@JohnKerry,"On Human Rights Day, we recommit to the truth all human beings are endowed with equal and inalienable rights. https://t.co/qrdbTNrORW" +12/10/2016,Politicians,@JohnKerry,Deeply humbled to be recognized in such a profound way by the people of France and to be honored by my friend… https://t.co/tnA3axFxyy +12/10/2016,Politicians,@JohnKerry,"We must continue to strive for a ceasefire, delivery of aid & safe passage for those who want to leave Syria." +12/10/2016,Politicians,@JohnKerry,Important meeting in Paris today to discuss #Syria & siege of Aleppo. https://t.co/KSrcofZrqI +12/09/2016,Politicians,@JohnKerry,"John Glenn was an inspiration to millions, a cherished Senate colleague & a friend. My thoughts & prayers are with his family & loved ones." +12/08/2016,Politicians,@JohnKerry,"Big step today to help stop illegal fishing in #OurOcean - new rule to trace origins of seafood entering US ports. +https://t.co/D3oKGwaV9g" +12/08/2016,Politicians,@JohnKerry,The @OSCE was formed to defend democratic rights. We all need to be aware of the danger of authoritarian populism. #OSCEMC16 +12/08/2016,Politicians,@JohnKerry,Every chip away at the fundamentals of freedom is actually an ugly building block in the road to tyranny. #OSCEMC16 https://t.co/XtvN4U0hsM +12/07/2016,Politicians,@JohnKerry,The C5+1 dialogue has fostered engagement on a range of diverse issues with the goal of a #CentralAsia that is secu… https://t.co/gTwV2WzEig +12/07/2016,Politicians,@JohnKerry,"We remember those lost on #PearlHarbor Day, salute those who served in #WWII, and recommit ourselves to the values for which they fought." +12/06/2016,Politicians,@JohnKerry,"Partnerships with @NATO member countries are vital to our shared security. Important sessions on #Ukraine, #Russia. https://t.co/coWxAAkQil" +12/06/2016,Politicians,@JohnKerry,Agreement signed between EU & U.S. today will enhance close synchronization between our governments during crisis r… https://t.co/VIaaa03Fmk +12/05/2016,Politicians,@JohnKerry,"Grateful for the leadership and friendship of #German FM Steinmeier, a wise and thoughtful partner on Syria, Ukrain… https://t.co/HPzHoR8268" +12/05/2016,Politicians,@JohnKerry,Honored to receive #Germany's Federal Cross of Merit. Even more proud of our strong U.S.-German partnership & trans… https://t.co/fbjTP3GNDn +12/05/2016,Politicians,@JohnKerry,Glad to join Haim Saban & @Martin_Indyk at #Saban16. Enjoyed discussing w/ @JeffreyGoldberg future of two-state sol… https://t.co/7jS9AcEdhX +12/02/2016,Politicians,@JohnKerry,"Valuable #MED2016 initiative is giving momentum to cooperation around the Mediterranean -on security, prosperity, m… https://t.co/AlqqEFndat" +12/02/2016,Politicians,@JohnKerry,Honored to speak with @Pontifex about the world we are building for the next generation. Inspired by his words on… https://t.co/CrvIvqNRIs +12/01/2016,Politicians,@JohnKerry,"Around our world, 36.7 million people are living with #HIV. Today, on World #AIDS Day, we think of them and pledge to #EndAIDS2030. #WAD2016" +11/26/2016,Politicians,@JohnKerry,As a former small biz owner & @SmallBizCmte leader I know the value of local patronage. #ShopSmall on #SmallBizSat!… https://t.co/g5D4R8T3Mi +07/01/2018,Politicians,@jaredpolis,Gia’s underbelly https://t.co/00uGdh7OWD +07/01/2018,Politicians,@jaredpolis,"@thenakedrant I try to keep politics off this feed most of the time, if you want to follow my gubernatorial run fol… https://t.co/WOovLzMXk6" +07/01/2018,Politicians,@jaredpolis,"I think the no-pitch intentional walk is silly, and now it has led to the no-pitch relief appearance #baseball +https://t.co/nK6HPneqgP" +06/30/2018,Politicians,@jaredpolis,@whitedarrenj https://t.co/5nrDNw8BPf +06/29/2018,Politicians,@jaredpolis,"RT @crisantaduran: Honored to stand w/ the next Governor of CO, @jaredpolis! Our state needs a leader w/ bold ideas who will deliver result…" +06/29/2018,Politicians,@jaredpolis,@BrandonRittiman Best of luck in your future endeavors! +06/29/2018,Politicians,@jaredpolis,RT @PolisForCO: Join us this morning as Gov. John Hickenlooper & other leading CO Democrats hold a rally in support of Jared Polis! https:/… +06/28/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: This past week, @RepGutierrez and I visited with 3 mothers at the immigration detention facility in Aurora whose childre…" +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Happy to work with @davek80514 and others on policies to protect our rights and reduce gun violence +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Depends what you are defining as an assault weapon. Fully automatic are already “banned” (he… https://t.co/aLT1ehXjCu +06/28/2018,Politicians,@jaredpolis,@Rossputin @davek80514 Where would he get the idea I’m against 2nd amendment? All our gun policy ideas like red fla… https://t.co/rvJx8uEKwJ +06/27/2018,Politicians,@jaredpolis,@SolarRoast It all started at @SolarRoast last Year! +06/27/2018,Politicians,@jaredpolis,RT @justinamash: Congrats to my friend—and the lone Democratic member of the @libertycaucus—@jaredpolis on his big primary win for governor… +06/27/2018,Politicians,@jaredpolis,"RT @MikeJohnstonCO: Jared Polis is an entrepreneur for good. He has earned my respect and support. With tonight's results, I hope you will…" +06/27/2018,Politicians,@jaredpolis,RT @DonnaLynneCO: I want to offer my sincere congratulations to Jared Polis on his victory last night. We have had a hard fought race and w… +06/27/2018,Politicians,@jaredpolis,RT @crisantaduran: I’m proud to stand with @jaredpolis & look forward to helping make him Colorado’s next governor. With the far-right view… +06/27/2018,Politicians,@jaredpolis,Thank you for all the amazing congratulatory tweets! Onwards to November! Here’s my favorite text I got tonight fro… https://t.co/eNELaFRbHx +06/26/2018,Politicians,@jaredpolis,RT @lreeves: Make a difference. Vote today @jaredpolis for next Colorado Governor!! https://t.co/2N15th9iF1 +06/26/2018,Politicians,@jaredpolis,RT @NikkiBirnks: Good luck to @jaredpolis I have met him several times over the years and he is always interested in what everyone around h… +06/26/2018,Politicians,@jaredpolis,RT @AlecGarnett: It’s Election Day!! Get those ballots in and don’t forget to vote for @jaredpolis for #Governor. #copolitics #Elections201… +06/26/2018,Politicians,@jaredpolis,@lsuarez5280 https://t.co/IhT3aGNyDi +06/26/2018,Politicians,@jaredpolis,"RT @PolisForCO: A HUGE thank you to everyone who came out to our election eve rally, and to everyone who has been with our campaign every s…" +06/25/2018,Politicians,@jaredpolis,"RT @PolisForCO: Voting, it's easier than... parking a 🚘 +Turn in your ballot TOMORROW, June 2⃣6⃣ by 7⃣:0⃣0⃣ pm! https://t.co/GLMbla0zOp" +06/25/2018,Politicians,@jaredpolis,"RT @PolisForCO: Vote, it's as easy as... 🇺🇸🗳️#MakeAPlanCO #TeamJared #COpolitics #COgov https://t.co/9g24tFbHhr" +06/25/2018,Politicians,@jaredpolis,"Going door to door in Denver (Montclair), if you’re not home I leave a note for you https://t.co/t4rr0wCg9O" +06/24/2018,Politicians,@jaredpolis,"RT @PolisForCO: As #COgov, I will continue to do everything I possibly can to put a stop to these human rights abuses and #KeepFamiliesTog…" +06/23/2018,Politicians,@jaredpolis,@BoydRBurke I’ll keep working to earn your support for November! +06/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Thank you to everyone who joined me & dropped off their ballots today! Colorado can and will be a leader in the fight again… +06/23/2018,Politicians,@jaredpolis,"RT @PolisForCO: Grateful to spend the morning with @RepGutierrez & Jeanette Vizguerra, two inspirational leaders fighting for immigration r…" +06/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Join Congressman Luis V. Gutierrez & Jeanette Vizguerra at our #DREAMer & Keep Families Together Rally! https://t.co/fAhYPG… +06/22/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""Polis has been fighting for affordable health care & he's gotten things done. With Polis as #COGov, the pharma industry fi…" +06/22/2018,Politicians,@jaredpolis,@alex_burness @SLC_CO You are the pate of Colorado Politics +06/22/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""Voters deserve the benefit of an honest accounting of each candidate's record. In Jared's case, it's a record filled with…" +06/22/2018,Politicians,@jaredpolis,"@MollyElaineB Source: +https://t.co/MWw13iB2BG https://t.co/UR4ubH2hFk" +06/21/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""I’m supporting Jared in his bid to be #COGov because he lives by his values and sticks to his word. And I’m doing more tha…" +06/21/2018,Politicians,@jaredpolis,It’s going to be a long day... so you might as well vote Colorado! #SummerSolstice +06/20/2018,Politicians,@jaredpolis,"RT @PolisForCO: Less than a week until ballots are due! It's too late to mail in your ballot, but you can still drop it off or vote in pers…" +06/20/2018,Politicians,@jaredpolis,RT @KyleClark: Hold on just a hot second. I thought they said they didn’t have the power to do that. https://t.co/sxqjbBdwj6 +06/20/2018,Politicians,@jaredpolis,"RT @PolisForCO: Join me this Saturday with immigrant rights activists @RepGutierrez and Jeanette Vizguerra, as well as several #DREAMers fr…" +06/20/2018,Politicians,@jaredpolis,"@Carleeinco22 Personally I support moving forward w impeachment +https://t.co/km1fCKGWAL" +06/20/2018,Politicians,@jaredpolis,"Here’s the reality: Trump is CHOOSING to terrorize young children, as young or younger than my 3-year-old. This wil… https://t.co/yGawvppgOt" +06/19/2018,Politicians,@jaredpolis,What’s happening to these families is beyond un-American. It’s flat-out horrific. We must all stand in solidarity a… https://t.co/DJDEHdoT8E +06/19/2018,Politicians,@jaredpolis,RT @PolisForCO: Together we can fight for the children who are being ripped away from their families. We must do everything possible to pro… +06/19/2018,Politicians,@jaredpolis,@EllenMignone You might want to follow my official account @RepJaredPolis or my campaign account @PolisForCO this one is my personal account +06/19/2018,Politicians,@jaredpolis,"The hail came through yesterday and minced up my tomatoes 🍅 +They’ll be ok but it certainly didn’t help! https://t.co/yxqdOZcI2s" +06/18/2018,Politicians,@jaredpolis,"RT @BeccaBiblio: Literally the moment I was calling @jaredpolis to complain, once again, about detention centers his gubernatorial campaign…" +06/18/2018,Politicians,@jaredpolis,Study found that egos get bigger after meditation and yoga. I believe it’s an “observer effect” in which the knowle… https://t.co/xwh5g8N0iB +06/18/2018,Politicians,@jaredpolis,RT @VictoryFund: Mayor @AnniseParker and Colorado gubernatorial candidate @jaredpolis are full of PRIDE in Denver today! The primary is jus… +06/17/2018,Politicians,@jaredpolis,"@roger_hamilton I’m sponsoring a bill to stop the separation of children from their parents at the border, and spon… https://t.co/XonDC54SmT" +06/17/2018,Politicians,@jaredpolis,RT @PolisForCO: THANK YOU! Now let’s go win this thing! #COpolitics #COGov #PRIDE #BreakBarriersCO https://t.co/AnOPda6l65 +06/17/2018,Politicians,@jaredpolis,The cool weather today... best #DenverPride ever! +06/16/2018,Politicians,@jaredpolis,RT @PolisForCO: ”He wins in swing counties represented almost entirely by Republicans. And he was rated Colorado’s most effective member of… +06/15/2018,Politicians,@jaredpolis,RT @PolisForCO: We're making a playlist for #Pride! Help us choose the songs here: https://t.co/okDLGoxJTW https://t.co/jBOlo4myxS +06/15/2018,Politicians,@jaredpolis,RT @PolisForCO: No one should have to choose between paying their rent or mortgage and affording the medication that keeps them alive. It's… +06/15/2018,Politicians,@jaredpolis,"RT @PolisForCO: As #COGov, I will make sure that here in Colorado we continue our inclusive tradition of welcoming and appreciating immigra…" +06/15/2018,Politicians,@jaredpolis,"RT @PolisForCO: It's time for bold action in Colorado to ensure that everyone, regardless of zip code, has access to the health care they d…" +06/14/2018,Politicians,@jaredpolis,https://t.co/tSbBfoVpCL +06/14/2018,Politicians,@jaredpolis,"RT @JuanSaaa: .@RepJaredPolis: families deserve to be together, I’m honored to join my colleagues - to reinforce the voice of father’s in C…" +06/14/2018,Politicians,@jaredpolis,@AllysonDowney Please follow my official twitter @RepJaredPolis we did a press conference today of fathers in Congr… https://t.co/GYD0gWhLLD +06/14/2018,Politicians,@jaredpolis,"@squashstreet @CaryKennedy @MikeJohnstonCO From my social justice plan: +“I will end our investment in private priso… https://t.co/QwTIUJWh1h" +06/14/2018,Politicians,@jaredpolis,RT @PolisForCO: Honored to have the endorsement of @GreeleyTribune! “It's hard to find a candidate more well positioned to represent the in… +06/13/2018,Politicians,@jaredpolis,"@Binkley_Paul Thx for being a teacher! +How to increase funding for teacher pay, smaller classes, free full day Pre-… https://t.co/s0ppzcciIM" +06/13/2018,Politicians,@jaredpolis,"RT @DenverWestword: Boom! Mic drop! +https://t.co/9TUbhGi6b4" +06/13/2018,Politicians,@jaredpolis,"RT @PolisForCO: “With his track record of bringing everyone to the table and getting big things done for Colorado, it's clear that Jared is…" +06/13/2018,Politicians,@jaredpolis,RT @SierraClubCO: We are working hard to help @jaredpolis get out the vote in the last weeks before the election! Learn more about our camp… +06/12/2018,Politicians,@jaredpolis,"RT @PolisForCO: If we turn away women and children fleeing horrific domestic violence, who are we as a nation? https://t.co/GK5onfLcky" +06/12/2018,Politicians,@jaredpolis,"@arpurdy Thanks for checking in! Don’t believe negative attack ads here’s my record: +https://t.co/6GST3sU2qn" +06/11/2018,Politicians,@jaredpolis,RT @PolisForCO: You can tell a lot about people by the way they treat animals. I'm the only candidate for #COGov with a policy that will fi… +06/11/2018,Politicians,@jaredpolis,"@Aberu Im also proud of our plan to get to 100% renewable energy by 2040 and endorsement of @SierraClubCO +https://t.co/MX9ZHpIfx7" +06/11/2018,Politicians,@jaredpolis,"@Aberu I appriate your diligence/analysis, wish all voters did that! Healthcare is a big one for me and I’m not new… https://t.co/vuYXiUJTGE" +06/11/2018,Politicians,@jaredpolis,"@Aberu Check out my positions here: +https://t.co/DFSriIyCi2" +06/11/2018,Politicians,@jaredpolis,"@Aberu @CaryKennedy @DOTA2 Yes haven’t had time to play lately with two kids, a day job in Congress and the campaign it’s true!" +06/11/2018,Politicians,@jaredpolis,@Aberu @CaryKennedy Pretty sure I could beat the other candidates in DOTA2 or LoL https://t.co/TQwsRhLn2S +06/11/2018,Politicians,@jaredpolis,RT @RepJaredPolis: My Teachers Are Leaders Act empowers local school districts to develop new leadership opportunities for their teachers.… +06/11/2018,Politicians,@jaredpolis,"Hopeful new tech like this will pan out to trap greenhouse gasses, combat climate change +https://t.co/OPv4kGae4T" +06/11/2018,Politicians,@jaredpolis,@KelseyFritz1 Thanks for all the great turnout work you are doing! +06/10/2018,Politicians,@jaredpolis,@TaraSBostick1 As I said I oppose all breed specific bans. +06/10/2018,Politicians,@jaredpolis,"@TaraSBostick1 I am against breed specific bans, check out my animal welfare policy here: +https://t.co/9qbB2pQV4S" +06/10/2018,Politicians,@jaredpolis,"Does it say more about an era with a smaller ideological divide between parties, or about the remarkable Earl Warre… https://t.co/FFpqZuMhZh" +06/10/2018,Politicians,@jaredpolis,"Printed homes? +“The method will also cut costs and environmental damage” +https://t.co/ZlF8fdfHeL" +06/10/2018,Politicians,@jaredpolis,RT @PolisForCO: These pictures say it all. Vote. It matters. https://t.co/0Rmiw84d43 +06/10/2018,Politicians,@jaredpolis,@IanxFitzpatrick Not a bad arm! Congrats on your upcoming wedding! +06/09/2018,Politicians,@jaredpolis,"Congrats to @IanxFitzpatrick on his upcoming wedding, but also for (after I got six hits) striking me out https://t.co/sa5X4DkUn4" +06/09/2018,Politicians,@jaredpolis,"RT @PolisForCO: Earlier this week, Ian suggested that he could strike me out. Challenge accepted. I’m taking a swing at getting his vote an…" +06/09/2018,Politicians,@jaredpolis,"At 4:30 pm at 26th and Vrain, @IanxFitzpatrick will try to strike me out! If you are nearby come watch one of us ge… https://t.co/4O1mmMmQmF" +06/09/2018,Politicians,@jaredpolis,No parent should ever have to explain this to their children. Marlon and I are sending thoughts to you… https://t.co/vpX9XVeDRZ +06/09/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: Healthcare should be affordable and accessible to all, and Americans with pre-existing conditions shouldn’t face discrim…" +06/09/2018,Politicians,@jaredpolis,@squashstreet @Joe4COAG @BernardDouthit @Vote4Levi @JenaGriswold @CaryKennedy Let me know if you have any questions… https://t.co/pFPoEWFa8c +06/09/2018,Politicians,@jaredpolis,"RT @PolisForCO: Excited to be joined by @SierraClubCO in Pueblo for a GOTV & Canvass Launch! With a bold vision and hard work, we can get t…" +06/09/2018,Politicians,@jaredpolis,@InvisibleLabs Yes it is terrible to symbolize what Trump is doing to our environment! +06/08/2018,Politicians,@jaredpolis,@KonasMama @missLtoe Done! And thank you! +06/08/2018,Politicians,@jaredpolis,"RT @PolisForCO: Actions speak louder than words. As #COGov, I'll be ready on Day 1 to take on Donald Trump. https://t.co/HGmcazsAFI" +06/08/2018,Politicians,@jaredpolis,"@KonasMama Here is my stance: +https://t.co/R9bgPSUKv7" +06/08/2018,Politicians,@jaredpolis,"RT @PolisForCO: Heartbreaking and unacceptable. Tackling mental health has to be a top priority for our state. As governor, I will work to…" +06/08/2018,Politicians,@jaredpolis,"Wanna be pitcher @IanxFitzpatrick thinks he can strike me out.... I’m confident enough to livecast it on Facebook ,… https://t.co/8j9V3wKYby" +06/07/2018,Politicians,@jaredpolis,"RT @9NEWS: Polis grows lead among Democrats for governor, says poll https://t.co/H8v5cPCawJ https://t.co/wibQKezalD" +06/07/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Thrilled to have helped secure $25 million in federal funding for I-70 West 🚗 Less traffic means it’s easier for us to g… +06/06/2018,Politicians,@jaredpolis,@MattHerdman @ShashleyQ League of Legends? +06/06/2018,Politicians,@jaredpolis,"RT @sa_elizabeth: Great turnout in Eagle county to see @PolisForCO and hear his vision for Colorado! Also, ballots are in the mail, make su…" +06/05/2018,Politicians,@jaredpolis,@IanxFitzpatrick Game on! No way you’ll strike me out. I’ll give you two innings (six at bats) to try. Jefferson Hi… https://t.co/zBLvSu4bpN +06/05/2018,Politicians,@jaredpolis,RT @PolisForCO: My closing statement from tonight's #COGov debate: https://t.co/tFnQTvRFWv +06/05/2018,Politicians,@jaredpolis,RT @sonyajlewis: #govdebate @jaredpolis was the only Dem who called for supporting Single Payer health care. He is the true Progressive. M… +06/04/2018,Politicians,@jaredpolis,Glad to have @brothajeff on #TeamJared! Let’s get this done! https://t.co/OkJ1UJ2xsA +06/04/2018,Politicians,@jaredpolis,"RT @PolisForCO: Day 500 of the Trump presidency, and everything’s going great: https://t.co/qL79813kLU" +06/03/2018,Politicians,@jaredpolis,"This is so wrong +https://t.co/AK2qAJ8iN3" +06/03/2018,Politicians,@jaredpolis,"RT @PolisForCO: ""It's imperative to talk about the big, bold goal of getting to 100% renewable energy. When John F. Kennedy talked about go…" +06/03/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Today I #WearOrange for National Gun Violence Awareness Day. We are in the middle of a public health crisis. https://t.c… +06/03/2018,Politicians,@jaredpolis,"RT @PolisForCO: I spent last weekend meeting with folks in southwestern CO, & I know this is top of mind for many. We're facing a warmer, d…" +06/02/2018,Politicians,@jaredpolis,"Flatworms mysteriously retain their old memories after beheading in their newly regenerated brains +https://t.co/FSlEDSIQg2" +06/01/2018,Politicians,@jaredpolis,"RT @PolisForCO: It’s time to stop propping up the past & move forward w/ our green energy future. Renewables are cheaper than fossil fuels,…" +05/31/2018,Politicians,@jaredpolis,RT @PolisForCO: It's disappointing to see one of my opponents resort to ugly and false attack ads. Click the link below to learn more about… +05/31/2018,Politicians,@jaredpolis,RT @PolisForCO: Marcia & Grace are a mother & daughter who were able to receive cancer treatment because of the Affordable Care Act. I was… +05/31/2018,Politicians,@jaredpolis,RT @davidcohen: Join us at this important event in #colorado - Breaking Barriers in Technology & Entrepreneurship with @techstars co-founde… +05/31/2018,Politicians,@jaredpolis,"RT @PolisForCO: Great way to wrap up the day at the Pueblo Democratic Latino Forum! As #COgov, I look forward to working with local leaders…" +05/31/2018,Politicians,@jaredpolis,@BartBanks @PolisForCO @NORML In Pueblo as we speak! It’s up to each country to decide what they want as it should be +05/30/2018,Politicians,@jaredpolis,"RT @ColoradoMatters: Candidate for governor @jaredpolis talked to @cprwarner about free childhood education, expanded Medicare and more in…" +05/30/2018,Politicians,@jaredpolis,RT @PolisForCO: There’s an election wave you probably haven’t heard of yet — and it’s important. https://t.co/cXPQArA7e5 #BreakBarriersCO +05/30/2018,Politicians,@jaredpolis,RT @PolisForCO: “It’s imperative to set the big bold goal of reaching 100% renewable energy by 2040. When JFK set the goal in 1961 of reach… +05/30/2018,Politicians,@jaredpolis,"RT @theJesseDean: Something all Coloradans should support, Republican or Democrat. We need to preserve public land! + +#COpolitics #Colorado…" +05/29/2018,Politicians,@jaredpolis,RT @ColoradoLeads: What are Colorado leaders saying about the #marijuana industry? “You only have to look to the success of CO to see why t… +05/29/2018,Politicians,@jaredpolis,"Let’s replace special interest tax subsidies w student loan relief, making college more affordable, and reducing th… https://t.co/7mluuhvlws" +05/29/2018,Politicians,@jaredpolis,"RT @NColtrain: For those thatve been following along, here’s Rep. @jaredpolis, response to the Presidential Tweet Treatment #copolitics htt…" +05/28/2018,Politicians,@jaredpolis,RT @PolisForCO: .@RealDonaldTrump only one true claim: I did proudly write the bill to repeal your tax scheme. Because your law slashes rat… +05/28/2018,Politicians,@jaredpolis,RT @PolisForCO: I proudly wrote the bill to repeal @RealDonaldTrump’s tax giveaways. Simple choice this election: President and GOP lose by… +05/28/2018,Politicians,@jaredpolis,"RT @PolisForCO: Today, reflect and feel thankful for all those who gave their lives in service of our country. Then, think about how you ca…" +05/28/2018,Politicians,@jaredpolis,@BradMcHargue I am teaching him that the younger (almost) always beat their elders in video games +05/28/2018,Politicians,@jaredpolis,"A 100% renewable energy powered grid isn’t just possible, it’s happening +https://t.co/psvuf1cfb1" +05/26/2018,Politicians,@jaredpolis,@MaxwellJay11 Baseball not softball +05/25/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: Yesterday for #FosterYouthShadowDay, I was proud to welcome Tori from Aurora. Thank you for hosting, @RepKarenBass. Cong…" +05/25/2018,Politicians,@jaredpolis,Thank you @RepTomReed and other brave Republicans helping Democrats break the gridlock that prevents us from acting… https://t.co/DVXYGpFxZk +05/24/2018,Politicians,@jaredpolis,RT @PolisForCO: Grand Junction – join me for a meet & greet and canvass launch this Friday at 4pm in our field office! We look forward to g… +05/23/2018,Politicians,@jaredpolis,RT @RepJaredPolis: People need to know - Special Counsel Robert Mueller already has 17 indictments and 5 guilty pleas. Pass it on. Reality… +05/23/2018,Politicians,@jaredpolis,RT @PolisForCO: Honored to have the endorsement of @NORML! I'm proud to be the only #COGov candidate who supported the legalization of recr… +05/23/2018,Politicians,@jaredpolis,"Why the green energy revolution is here in one chart: +Source: https://t.co/ewoePSRD2B https://t.co/TtLQ6wEHfe" +05/23/2018,Politicians,@jaredpolis,"RT @PolisForCO: Harvey Milk, who would've been 88 today, was a trailblazer for the #LGBTQ community. He showed that no matter who you are o…" +05/22/2018,Politicians,@jaredpolis,RT @RepJaredPolis: We must fully fund special education - public schools desperately and deservingly need additional resources. https://t.c… +05/22/2018,Politicians,@jaredpolis,RT @RepJaredPolis: All students are entitled to an education free from discrimination! https://t.co/KOTilVWVAH +05/21/2018,Politicians,@jaredpolis,"Dawkins the baboon ran around the San Antonio Airport... sounds a lot more interesting than @DENAirport +https://t.co/IKQ8IQ1Mu5" +05/21/2018,Politicians,@jaredpolis,"RT @CSPRColorado: “Studies have demonstrated that if we truly care about addressing the achievement gaps that exist along racial, geographi…" +05/21/2018,Politicians,@jaredpolis,"In 1965, Irving Good said “The first ultraintelligent machine is the last invention that man need ever make, provid… https://t.co/2NzrB6OMy0" +05/21/2018,Politicians,@jaredpolis,"“... where renewables penetration is greatest, wholesale electricity prices have occasionally gone to zero” +https://t.co/PNYH5QV6xB" +05/20/2018,Politicians,@jaredpolis,"RT @KennyNguyen301: This is Judy, she is a 93 year old volunteer and a lifelong Democrat. She started volunteering in the 1940s in New York…" +05/20/2018,Politicians,@jaredpolis,"@ariarmstrong Nuclear has zero carbon emissions and would count towards a 100% goal, but is not currently part of… https://t.co/hglZUliFs8" +05/20/2018,Politicians,@jaredpolis,"The more the merrier! +https://t.co/F8joF121RZ" +05/19/2018,Politicians,@jaredpolis,RT @SierraClubCO: The Colorado primaries are just a few weeks away. We need your help to elect environmental champions like @jaredpolis! #c… +05/19/2018,Politicians,@jaredpolis,RT @markhardencopo: Says @jaredpolis : It doesn’t matter who the GOP candidate for guv is; the real opponent is @realDonaldTrump. At #cociv… +05/19/2018,Politicians,@jaredpolis,"RT @PolisForCO: Happy #COpubliclands Day! Nearly a third of our state is made of #publiclands, and they belong to all Coloradans. As #COgov…" +05/18/2018,Politicians,@jaredpolis,RT @leslieherod: Very honored to host @jaredpolis and Congresswoman Pat Schroeder in an inspiring conversation about #breakingbarriers. Tak… +05/17/2018,Politicians,@jaredpolis,"...and Vulcans! 🖖 +https://t.co/uXG92O6Vor" +05/16/2018,Politicians,@jaredpolis,@WereGeek @OfficialYonni @Yanni Fixed it t/y +05/16/2018,Politicians,@jaredpolis,I hear #laurel but I’d rather hear @Yanni https://t.co/vG0csuv4DZ +05/16/2018,Politicians,@jaredpolis,"RT @PolisForCO: As Colorado’s #cannabis industry goes, so goes the nation’s. I’m ready on Day One to defend legal #marijuana from attacks b…" +05/16/2018,Politicians,@jaredpolis,"RT @PolisForCO: This is the right direction. Health care is a human right. I have supported universal single-payer health care since 2008,…" +05/16/2018,Politicians,@jaredpolis,@ColoradoHOA There are always those that defy the odds! Mine too https://t.co/UlTZRmRANU +05/16/2018,Politicians,@jaredpolis,"New study finds that puppies are cutest at eight weeks old +https://t.co/O7JyJZO01K" +05/15/2018,Politicians,@jaredpolis,RT @PolisForCO: We must rededicate ourselves to a mission of building equitable access to opportunity so that everyone has the means to liv… +05/15/2018,Politicians,@jaredpolis,@stealthisbook Best response ever! +05/15/2018,Politicians,@jaredpolis,"New horror movie? +... Actually just a sensational headline for a scientific study +https://t.co/NZSIjlsg0n" +05/14/2018,Politicians,@jaredpolis,"@betsydornbusch I’m not for requiring it either, just offering full day free instead of charging" +05/14/2018,Politicians,@jaredpolis,https://t.co/Pqr4eJO0AF +05/14/2018,Politicians,@jaredpolis,"RT @PolisForCO: A tremendous leader whose service to Colorado will never be forgotten. My heart goes out to Mayor Steve Hogan’s family, his…" +05/11/2018,Politicians,@jaredpolis,@crisantaduran Thank you for your service and amazing work for all of us! +05/10/2018,Politicians,@jaredpolis,"RT @PolisForCO: The Colorado way of life includes the freedom to choose when, & how, we each start a family. As #COgov, I will never equivo…" +05/10/2018,Politicians,@jaredpolis,RT @PolisForCO: Climate change is real and so are the consequences. Together we will develop a transition plan that will provide new & bett… +05/10/2018,Politicians,@jaredpolis,"...Said the Spirit, turning on him for the last time with his own words. “Are there no workhouses?” +https://t.co/3eCJ3ZD5tI" +05/09/2018,Politicians,@jaredpolis,@WereGeek Yeah and my mom prefers RNA anyway +05/09/2018,Politicians,@jaredpolis,"You know you’re living in the 21st century when you get a “DNA sale” in your inbox! Call me old fashioned, but I’m… https://t.co/0itsh32nMQ" +05/09/2018,Politicians,@jaredpolis,@Malinalarimar https://t.co/9qbB2pzkdk +05/08/2018,Politicians,@jaredpolis,@ariarmstrong And the restoration of democracy and the rule of law in Venezuela while you’re at it! +05/08/2018,Politicians,@jaredpolis,"Over 10,000,000 people work in clean energy! Let’s bring more good-paying green energy jobs to Colorado! +https://t.co/fY0d3ziZgd" +05/08/2018,Politicians,@jaredpolis,RT @PolisForCO: Only 5️⃣0️⃣ days left until the #COGov primary election! Here's a quick guide for eight easy steps you can take to help #Te… +05/08/2018,Politicians,@jaredpolis,"RT @EmmaSJacobs: Fab meeting with @jaredpolis, member of Congress for Colorado. Thanks for making time to meet with the @ADL_National deleg…" +05/08/2018,Politicians,@jaredpolis,"I usually have nostalgia for 80s reruns, but not this one! https://t.co/E2Igqoi3m3" +05/08/2018,Politicians,@jaredpolis,Very real health reasons that the transition to renewable energy is so important https://t.co/ACy0VEsHID +05/08/2018,Politicians,@jaredpolis,There is treatment (which Venezuela’s broken health infrastructure can’t deliver reliably) but the world still awai… https://t.co/0JEe4DSNv1 +05/08/2018,Politicians,@jaredpolis,"In ten billion years, our sun will collapse into a “massive ring of luminous, interstellar gas and dust” +https://t.co/qZmT22pMv2" +05/08/2018,Politicians,@jaredpolis,"Pueblo City and County are embracing a renewable energy future and already seeing growth in green jobs +https://t.co/IAyEwsq9Zd" +05/07/2018,Politicians,@jaredpolis,@KimbieT https://t.co/1b64encR56 +05/07/2018,Politicians,@jaredpolis,"Lied to Congress, illegally smuggled weapons to Iran, now President of the NRA: Oliver North +https://t.co/1b64encR56" +05/07/2018,Politicians,@jaredpolis,"Oliver North, new President of the NRA, had his concealed carry license revoked by a judge who determined he was ""not of good character”" +05/06/2018,Politicians,@jaredpolis,"RT @PolisForCO: I’ve been proud to help lead the fight for #LGBTQ equality at the federal level, and as #COGov, I will stand up for the rig…" +05/06/2018,Politicians,@jaredpolis,"RT @PolisForCO: Opening up these majestic areas to oil and gas hurts our air, land, water, and our health & safety. This is a disgraceful m…" +05/06/2018,Politicians,@jaredpolis,"A solar-powered animal! +https://t.co/M6JtwHoNux" +05/05/2018,Politicians,@jaredpolis,The independent voice of the media is critical to help keep politicians and corporations honest. The emptying out o… https://t.co/8kKOUPZbFV +05/04/2018,Politicians,@jaredpolis,"RT @RepJaredPolis: We didn't always see eye to eye, but I always appreciated Chuck Plunkett's thoughtful words. The slow demise of our inde…" +05/04/2018,Politicians,@jaredpolis,"After the rain ends +Pink flowers fallen from trees +Soft petal carpet +#haiku https://t.co/ss0cJHxCqh" +05/03/2018,Politicians,@jaredpolis,"“Some guests come in full hobbit regalia” +https://t.co/kEy4T6xWNN" +05/03/2018,Politicians,@jaredpolis,"Was hoping this was a crystal that could help us time travel, oh well it’s still pretty cool and mysterious +https://t.co/meGOAe2TSw" +05/02/2018,Politicians,@jaredpolis,"Such a fun headline to read just in time for spring and summer! 😳 +https://t.co/AyVe0MhT2o" +05/02/2018,Politicians,@jaredpolis,RT @PolisForCO: Inexcusable and unacceptable. Education is a civil right. https://t.co/cfSYSqaWMj +05/01/2018,Politicians,@jaredpolis,"RT @PolisForCO: Pat Schroeder, the first woman to represent Colorado in Congress, has always been a hero to me. I'm honored to have her end…" +04/30/2018,Politicians,@jaredpolis,"@DebraRaeShort Honored to work on many issues with Bernie Sanders such as employee ownership +https://t.co/oIJAuQky0t" +04/28/2018,Politicians,@jaredpolis,RT @AGUSciPolicy: #Champs4Science: Rep @JaredPolis and @RepRyanCostello are setting an example as co-chairs of the House Earth and Space Sc… +04/27/2018,Politicians,@jaredpolis,"RT @PolisForCO: #TeamJared standing strong in solidarity with our teachers today! As #COGov, one of my top priorities will be investing in…" +04/27/2018,Politicians,@jaredpolis,RT @RepJaredPolis: Proud of the students across the country participating in the #DayofSilence. You are not alone. 🏳️‍🌈 +04/27/2018,Politicians,@jaredpolis,RT @PolisForCO: It's unacceptable that we have one of the best economies in the country yet consistently underpay and undervalue our educat… +04/27/2018,Politicians,@jaredpolis,"@Sheena_Kadi Yeah I let my ‘stache grow out in DC this week, ready to shave" +04/27/2018,Politicians,@jaredpolis,"Did the airline charge extra for the rat? +https://t.co/gQOyy8AXpg" +04/26/2018,Politicians,@jaredpolis,"#macron said “Freedom is never more than one generation away from extinction,"" but the good news for Venezuela, Nor… https://t.co/uaegG0M8BQ" +04/26/2018,Politicians,@jaredpolis,"#Macron “We must find a smoother transition to a lower carbon economy, because what is the meaning of our life, rea… https://t.co/0Rp2lnkY2j" +12/20/2016,Politicians,@PaulManafort,"President Donald J. Trump! +Nothing more to say except now it is time ""To Make America Great Again""!" +11/09/2016,Politicians,@PaulManafort,"Donald Trump in his speech last night began the healing process. +He will be a President with one goal: + +""To Make America Great Again!""" +11/09/2016,Politicians,@PaulManafort,Congratulations President-Elect Trump and Vice-President Elect Pence! +11/08/2016,Politicians,@PaulManafort,HIllary Clinton campaigning in Blue states today? She knows the Trump revolution begins tomorrow night! +11/04/2016,Politicians,@PaulManafort,Battleground states moving to Trump en masse. Media not liking the pattern. By Sunday Trump will be over 270 in polls +08/14/2016,Politicians,@PaulManafort,"And those Upstate NY jobs never materialized either ""Why would anyone believe Hillary’s promise of 10 million jobs? https://t.co/Gz8mHUUxbI""" +08/13/2016,Politicians,@PaulManafort,"cc: Sanders supporters: ""EXCLUSIVE: Dem Official Referred To Hillary As Nominee Before Primaries Even Started https://t.co/yhkHBwmDCV""" +08/12/2016,Politicians,@PaulManafort,Smart take by Curtis Ellis: Families Crushed by Obama-Clinton Pay Freeze https://t.co/ylcwh4AbG1 via @LifeZette +08/12/2016,Politicians,@PaulManafort,Cornyn prods DOJ on Clinton Foundation conduct https://t.co/wPwidx6679 via @DCExaminer +08/12/2016,Politicians,@PaulManafort,".@realdonaldtrump advisor Tom Barrack: ""Here’s a new approach to trade agreements https://t.co/Qk6TfCYFKh via @bi_contributors""" +08/12/2016,Politicians,@PaulManafort,Head of Justice Department’s national security division objected to Iran cash payment: https://t.co/IYOcMsk68E via @WSJ +08/12/2016,Politicians,@PaulManafort,Clinton takes the wrong approach to trade deals https://t.co/xJlUY7pjBX +08/11/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: #CrookedHillary https://t.co/Jux2ikFpXd +08/11/2016,Politicians,@PaulManafort,Donald Trump narrowly leads Hillary Clinton in Iowa https://t.co/9s6oADjhOV +08/11/2016,Politicians,@PaulManafort,New Emails Shed Light on ‘Clinton Cash’ State Department - Breitbart https://t.co/tIWnuQBwH9 +08/11/2016,Politicians,@PaulManafort,"Top of Drudge Report right now - Fox, then MSNBC, then CNN: ""Scoreboard: Tuesday, August 9 https://t.co/eJGLtmJzp0""" +08/11/2016,Politicians,@PaulManafort,"Clinton pay to play update --> ""Hillary played favorites with huge number of Clinton Foundation donors https://t.co/n4yrs4udSc via @nypost""" +08/11/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Reuters just announced that Secret Service never spoke to me or my campaign. Made up story by @CNN is a hoax. Totally… +08/10/2016,Politicians,@PaulManafort,Donald Trump pushes fiscally sound economic plan https://t.co/WHXbil2eIm +08/09/2016,Politicians,@PaulManafort,Trump Campaign Statement on the Dishonest Media https://t.co/WXMo7T0yK6 https://t.co/RlMWrqHcxP +08/09/2016,Politicians,@PaulManafort,RT @TeamTrump: We must bring back our JOBS. @realDonaldTrump will not enter a trade deal unless it puts YOU first! #TrumpIsWithYou https://… +08/09/2016,Politicians,@PaulManafort,Must-read from LTG (R) Keith Kellogg and LTG (R) Michael Flynn pushing back against the Washington insiders: https://t.co/r06vRneLZy +08/08/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: .@realDonaldTrump Statement on Politically Motivated Letter | Donald J. Trump for President https://t.co/a6Eqa3Y1vJ +08/08/2016,Politicians,@PaulManafort,Why Hillary Clinton's email controversy is still haunting her campaign https://t.co/keQbfvm05w via @WSJPolitics +08/08/2016,Politicians,@PaulManafort,".@hillaryclinton short-circuit: As Sen., Clinton promised 200,000 jobs in Upstate New York. Her efforts fell flat. https://t.co/qZnACbKqHJ" +08/07/2016,Politicians,@PaulManafort,RT @DRUDGE_REPORT: CLINTON EMAIL LED TO EXECUTION IN IRAN? https://t.co/4rY1faptL6 +08/06/2016,Politicians,@PaulManafort,Somebody should ask Clinton about this: Obama’s Cash Payment to Iran Was More Than a Ransom — It Broke Criminal Law https://t.co/OQyzWkwJXD +08/06/2016,Politicians,@PaulManafort,".@nypost must-read on Iran ransom deal —> ""Iranian propaganda video claims to show US' $400M cash drop https://t.co/Xr0V7XB7Fa via @nypost""" +08/06/2016,Politicians,@PaulManafort,"“Trump could clean house"": In Trump, some Obama backers see a new champion of hope and change https://t.co/QJk0mL9GPP" +08/05/2016,Politicians,@PaulManafort,RT @ReutersPolitics: BREAKING: Clinton's lead over Trump narrows to less than 3 percentage points in presidential race - Reuters/IPSOS http… +08/05/2016,Politicians,@PaulManafort,Sorry @hillaryclinton - the American public wants to break up the rigged system and elect @realdonaldtrump: https://t.co/OdDBCGUXKu +08/05/2016,Politicians,@PaulManafort,".@hillaryclinton caught lying again: ""AP FACT CHECK: Clinton's new email clarifications fall short https://t.co/2EJy0hSpm9""" +08/05/2016,Politicians,@PaulManafort,"RT @danmericaCNN: HRC on journos: ""We need you to keep holding leaders & candidates accountable."" Tough to do when you don't take many ques…" +08/05/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: Donald J. Trump on Hillary Clinton’s Bad Judgment and Her Being Unfit to Serve as President https://t.co/VNqGgsRknS +08/05/2016,Politicians,@PaulManafort,Clinton repeats debunked claim about FBI email investigation @CNNPolitics https://t.co/kf2UnR7uZl +08/05/2016,Politicians,@PaulManafort,RT @realDonaldTrump: President Obama refuses to answer question about Iran terror funding. I won't dodge questions as your President. http… +08/04/2016,Politicians,@PaulManafort,RT @TeamTrump: Another media bias offender today – CNN's @NewDay aired nearly 200x more coverage on Trump than Iran controversy https://t.… +08/03/2016,Politicians,@PaulManafort,"Fueled by Small Donations, Donald Trump Makes Up Major Financial Ground https://t.co/SMEWTXRCUw" +08/03/2016,Politicians,@PaulManafort,What's $400M between friends? #CrookedHillary https://t.co/yRnBhJmJp3 +08/03/2016,Politicians,@PaulManafort,Joining @FoxNews shortly to talk @realDonaldTrump and the $400M Iran deal that should have @HillaryClinton worried. https://t.co/3L6d86d3E6 +08/03/2016,Politicians,@PaulManafort,The Obama/Clinton admin has failed Americans: “The Obama economy is trouble for Hillary Clinton” https://t.co/JBoCmyHj6v +08/03/2016,Politicians,@PaulManafort,"The Obama/Clinton admin has officially sponsored a hostile regime in Iran, and now claim it was a “benefit” to U.S. Taxpayers. Outrageous." +08/03/2016,Politicians,@PaulManafort,"RT @mike_pence: Really enjoyed our #TownHall this evening- Phoenix, Arizona! Thank you. I look forward to coming back again soon. https://t…" +08/03/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Report raises questions about ‘Clinton Cash’ from Russians during ‘reset' https://t.co/vVcAzY2zcp +08/02/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: The Clinton Story You Didn’t Read Here https://t.co/Bmo2uxly5J +08/02/2016,Politicians,@PaulManafort,RT @FoxNews: .@IvankaTrump: @realDonaldTrump “is the champion of so many people who haven’t previously had a voice.” #Greta https://t.co/ht… +08/02/2016,Politicians,@PaulManafort,Trump Statement In Response To President Obama's Failed Leadership https://t.co/q3Uegdmivu +08/02/2016,Politicians,@PaulManafort,ICYMI ‘Clinton Cash’ author brings to light the Clinton Foundation financial corruption and ties to Russia https://t.co/mnLXB48kw9 +08/02/2016,Politicians,@PaulManafort,"Charles Woods, father of soldier killed in Benghazi, endorses Mr. Trump https://t.co/Dn1aEobMXK" +08/02/2016,Politicians,@PaulManafort,A Trump win is the only way to stop the TPP catastrophe https://t.co/SAx9GvN6HC +08/02/2016,Politicians,@PaulManafort,"National Journal’s Ron Fournier: Clinton Is “Knowingly Misleading” The Public On “Rogue Server” +https://t.co/zgRjGF5X6F" +08/02/2016,Politicians,@PaulManafort,"Crooked: ""Hillary can't stop lying even when she doesn't have to https://t.co/XhT01snWoO""" +08/02/2016,Politicians,@PaulManafort,RT @DailyCaller: Networks Gave GOP Convention 12 Times MORE NEGATIVE COVERAGE Than Dem Convention https://t.co/8Ri1hUdFrl https://t.co/JcQC… +08/02/2016,Politicians,@PaulManafort,Hillary Clinton wrongly claims FBI director Comey called her comments about email 'truthful' https://t.co/qR3CGgLjKy via @PolitiFact +07/31/2016,Politicians,@PaulManafort,RT @TeamTrump: Setting the record straight. Read @realdonaldtrump’s full @thisweekabc transcript here: https://t.co/pLzTF7juuv +07/31/2016,Politicians,@PaulManafort,"RT @JasonMillerinDC: LA Times: Trump leading Clinton 46%-42% nationally: ""USC Dornsife / LA Times Pres. Election Daybreak Poll"" http://96.1…" +07/29/2016,Politicians,@PaulManafort,RATINGS: More People Watched Donald Trump’s Acceptance Speech Than Hillary Clinton’s https://t.co/tITpaM1COe via @dailycaller +07/29/2016,Politicians,@PaulManafort,"Bought and paid for: ""Hedge-fund money: $48.5 million for Clinton, $19,000 for Trump https://t.co/s5bfezo14p via @WSJ""" +07/29/2016,Politicians,@PaulManafort,@hillaryclinton failed to confront radical Islamic terror last night. @realdonaldtrump will identify & defeat enemy. More now @foxandfriends +07/29/2016,Politicians,@PaulManafort,"70% of U.S. believes country going in wrong direction, but @hillaryclinton wants to be Obama's 3rd term! More at 7:14am ET. @foxandfriends" +07/29/2016,Politicians,@PaulManafort,FBI warned Hillary Clinton campaign it had been hacked https://t.co/YcalckCzZ8 - @washtimes +07/29/2016,Politicians,@PaulManafort,Did Bill Clinton Fall Asleep During Hillary’s Speech? https://t.co/tqLet4FWQX +07/29/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Hillary's vision is a borderless world where working people have no power, no jobs, no safety." +07/29/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Hillary will never reform Wall Street. She is owned by Wall Street! +07/29/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Hillary's refusal to mention Radical Islam, as she pushes a 550% increase in refugees, is more proof that she is unfit…" +07/29/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Our way of life is under threat by Radical Islam and Hillary Clinton cannot even bring herself to say the words. +07/29/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: @HillaryClinton will say anything to get elected. https://t.co/u0FBA3mrrm +07/29/2016,Politicians,@PaulManafort,Clinton has been in politics all her life and has put herself 1st. We need an outsider like Mr. Trump to bring fresh solutions to the table +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to talk about the national security risk caused by her home server tonight. +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to mention radical Islamic terrorism tonight. +07/29/2016,Politicians,@PaulManafort,RT if you think @HillaryClinton will fail to mention Benghazi tonight. +07/27/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Thank you to our amazing law enforcement officers! #MAGA https://t.co/UEZorOQhTw +07/27/2016,Politicians,@PaulManafort,Hillary Just Admitted Her E-mails Are A 'National Security Issue': https://t.co/PCjw2vcabE +07/27/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: .@hillaryclinton Let’s not lose sight why we’re discussing missing emails - remember this? https://t.co/0Ua2elZBLG htt… +07/27/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: If Russia or any other country or person has Hillary Clinton's 33,000 illegally deleted emails, perhaps they should sh…" +07/27/2016,Politicians,@PaulManafort,@realdonaldtrump takes the largest lead of the election in newest @LATimes / @USCDornsife poll: 47-40 https://t.co/bQEhqN7ihw +07/27/2016,Politicians,@PaulManafort,@hillaryclinton: Honest and trustworthy? 67% say NO. +07/27/2016,Politicians,@PaulManafort,"""Change-Maker""? Joining CBS Morning crew right now to talk about how @realdonaldtrump, not @HillaryClinton is the only one to change DC." +07/27/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: Just like I have warned from the beginning, Crooked Hillary Clinton will betray you on the TPP. +https://t.co/eoNTWK6I…" +07/27/2016,Politicians,@PaulManafort,"This should surprise nobody! ""Clinton friend McAuliffe says she will flip on TPP trade deal https://t.co/0Rqbs0JlZb""" +07/26/2016,Politicians,@PaulManafort,Pro-Clinton ad spend in gen. elect. now $168M. She's losing. @realDonaldTrump winning b/c people know he'll break up rigged system in DC. +07/26/2016,Politicians,@PaulManafort,Sanders would have had to win every state by an average of 59%-41% to overcome Crooked Hillary's rigged superdelegate game. Never had chance +07/26/2016,Politicians,@PaulManafort,"Clinton Mentions at DNC Last Night: 208. +Trump Mentions at DNC Last Night: 96. +ISIS Mentions at DNC Last Night: 0 (!!!)" +07/26/2016,Politicians,@PaulManafort,Booing Clinton: 6:52. Booing DNC/DWS: 1:37. +07/26/2016,Politicians,@PaulManafort,Some very interesting numbers coming out of the first night of the Democrats' convention in Philly last night... +07/26/2016,Politicians,@PaulManafort,Trump on Convention Speech: 'It Was Very Optimistic' https://t.co/JK08MEERtq via @nbcnews +07/26/2016,Politicians,@PaulManafort,RNC correct that Democrats in Philly didn't say ISIS last night: https://t.co/XGYK1qxg4L via @PolitiFact +07/26/2016,Politicians,@PaulManafort,Kaine backed Wall Street bid for up to 1.8 million cheaper foreign workers https://t.co/SSUoA1ZLKU via @DCExaminer +07/26/2016,Politicians,@PaulManafort,Dems fret over Trump bounce https://t.co/rX5Y96u3pY +07/26/2016,Politicians,@PaulManafort,"Democrat unity night at the Philly Convention Center, and we haven't even gotten to Bernie yet! https://t.co/rtjnOdbi7X" +07/25/2016,Politicians,@PaulManafort,"""The Trump Bump"" With Dem Convention Off to Rocky Start, Trump Enjoys Post-Cleveland Bounce | US News Opinion https://t.co/4muIQNtW3h" +07/25/2016,Politicians,@PaulManafort,"Exclusive: KTNV/Rasmussen poll shows Trump, Heck with post GOP-convention leads in Nevada https://t.co/U2AHr2WUZo via @ktnv" +07/25/2016,Politicians,@PaulManafort,NATE SILVER: Donald Trump would most likely win the election if it were held today https://t.co/QmE0FnfvtL via @bi_politics +07/25/2016,Politicians,@PaulManafort,"RT @JasonMillerinDC: Morning Consult Poll Also Shows Trump Taking Lead Post-Convo: ""Trump Surges Past Clinton With Post-Convention Bump htt…" +07/25/2016,Politicians,@PaulManafort,"RT @larryelder: USC/LA Times Poll: +Trump 45, Clinton 41 +https://t.co/ZKLQcue91k" +07/25/2016,Politicians,@PaulManafort,RT @CNN: Donald Trump leads Hillary Clinton in new CNN/ORC poll https://t.co/cZswxtdgVl https://t.co/srSoTEnB65 +07/24/2016,Politicians,@PaulManafort,"RT @sahilkapur: Trump campaign chair Paul Manafort releases a statement saying Clinton should follow DWS's lead and ""drop out."" https://t.c…" +07/24/2016,Politicians,@PaulManafort,"Dems attack Russia for hacking them but want us to believe that server in HC home was safe from hacking. +HC put national security at risk!" +07/24/2016,Politicians,@PaulManafort,Progressives cheated by Democratic establishment https://t.co/ALyZe44iNG +07/24/2016,Politicians,@PaulManafort,@realdonaldtrump continues to surge in today’s @CBSNews Battleground poll. GOP unified & Trump's message resonating https://t.co/GugVJZQUfe +07/23/2016,Politicians,@PaulManafort,Clinton VP pick Kaine pledged support for TPP hours before announcement. Clinton-Kaine is for bad trade deals. Sanders supporters not happy. +07/23/2016,Politicians,@PaulManafort,Clinton picked a career politician with questionable ethics just like her. Birds of a feather... +07/23/2016,Politicians,@PaulManafort,Crooked Hillary's VP pick helped promote and protect rigged superdelegate system as DNC chair. Sanders supporters will not like that. +07/23/2016,Politicians,@PaulManafort,"Clinton/Kaine -- corrupt, liberal, the rigged system at its worst." +07/23/2016,Politicians,@PaulManafort,RT @realDonaldTrump: Crooked Hillary Clinton has destroyed jobs and manufacturing in Pennsylvania. Against steelworkers and miners. Husband… +07/22/2016,Politicians,@PaulManafort,How energized was the crowd at #RNCinCLE last night? @realdonaldtrump received 24 min. and 29 sec. of applause during his speech! +07/22/2016,Politicians,@PaulManafort,$4M+ raised today - way to go #TrumpTrain!!! +07/22/2016,Politicians,@PaulManafort,"""The time for action has come!"" - DJT" +07/22/2016,Politicians,@PaulManafort,"RT @IngrahamAngle: ""[Hillary] is their puppet and they pull the strings."" --@realDonaldTrump" +07/22/2016,Politicians,@PaulManafort,"""And they have to change right now!"" -DJT" +07/22/2016,Politicians,@PaulManafort,"RT @FoxNews: .@realDonaldTrump: ""Any politician who does not grasp this danger is not fit to lead our country."" #RNCinCLE https://t.co/DPQD…" +07/22/2016,Politicians,@PaulManafort,RT @realDonaldTrump: You can watch 360 video live from the podium! https://t.co/yqcIsBUdAi #RNCinCLE #TrumpIsWithYou #MakeAmericaGreatAgain +07/22/2016,Politicians,@PaulManafort,New rule: Pastor Mark Burns opens every event ever. #MakeAmericaGreatAgain +07/22/2016,Politicians,@PaulManafort,Big energy this evening in Cleveland for @realDonaldTrump. I've never seen a crowd this excited to defeat Crooked Hillary! #RNCinCLE +07/21/2016,Politicians,@PaulManafort,"@realDonaldTrump & @mike_pence form an amazing ticket. The energy, the determination, the vision, the courage. Honored to be on their team." +07/21/2016,Politicians,@PaulManafort,"""If you want a President who will cut taxes and grow our economy...and upend the status quo in Washington, DC...""" +07/21/2016,Politicians,@PaulManafort,@mike_pence is going to make an amazing Vice President. He is ready for this moment. #MakeAmericaGreatAgain +07/20/2016,Politicians,@PaulManafort,Lots of excitement for @realdonaldtrump here at #RNC2016 especially on set with my good friends from @cnn - tune in now! +07/20/2016,Politicians,@PaulManafort,Let's do one more! Tune in to CBS as I join the second hour to talk about tonight's convention theme and what to expect! +07/20/2016,Politicians,@PaulManafort,Coming up at 7:30am: joining @foxandfriends to talk about great speeches we heard last night and what we'll hear from @mike_pence tonight. +07/20/2016,Politicians,@PaulManafort,RT @USATODAY: Ready for Day 3 of the GOP convention? Here's what you need to know. https://t.co/izDoVZChFt +07/20/2016,Politicians,@PaulManafort,"Joining @GMA in just a few minutes to discuss our Republican nominee for President, @realdonaldtrump - tune in to ABC now!" +07/19/2016,Politicians,@PaulManafort,Cool shot: https://t.co/InARuFsz3D +07/19/2016,Politicians,@PaulManafort,RT @FoxNews: BREAKING NEWS: @realDonaldTrump has been formally nominated as the Republican presidential nominee. #RNCinCLE https://t.co/DzO… +07/19/2016,Politicians,@PaulManafort,"And with that @realdonaldtrump is officially the nominee! Thank u for all of your support. The real battle is ahead, we must defeat Hillary" +07/19/2016,Politicians,@PaulManafort,RT @realDonaldTrump: The ROLL CALL is beginning at the Republican National Convention. Very exciting! +07/19/2016,Politicians,@PaulManafort,Tonight’s #RNCinCLE speakers will talk about how @realdonaldtrump will bring back American jobs and leadership. #MakeAmericaWorkAgain +07/19/2016,Politicians,@PaulManafort,@mike_pence live on Fox and CNN right now! @KatrinaPierson live on MSNBC. Good coverage for the @realdonaldtrump team right now! +07/19/2016,Politicians,@PaulManafort,Up next with CBS This Morning. Tune in now! +07/19/2016,Politicians,@PaulManafort,"RT @ABC: Melania Trump: ""If you want someone to fight for you...I can assure you he's the guy. He will never, ever give up."" https://t.co/f…" +07/19/2016,Politicians,@PaulManafort,"RT @USATODAY: Melania Trump: ""My husband has been concerned about our country for as long as I have known him."" https://t.co/QxkKniP5Rk" +07/19/2016,Politicians,@PaulManafort,"RT @FoxNews: Mayor Giuliani: ""Libya is in chaos. [@HillaryClinton] is accountable for this & much more."" #RNCinCLE https://t.co/XJ12JepMIt" +07/18/2016,Politicians,@PaulManafort,Next up: MTP Daily with Chuck Todd - tune in now! +07/18/2016,Politicians,@PaulManafort,Joining Wolf Blitzer right now to discuss #RNCinCLE +07/18/2016,Politicians,@PaulManafort,#RNCinCLE is underway! Looking forward to unifying and invigorating our party this week. @realDonaldTrump and @mike_pence will do just that. +07/18/2016,Politicians,@PaulManafort,Catch @realDonaldTrump on Fox and Friends right now then I'll be up on Today Show. Unified GOP convention for Trump and Pence here in CLE. +07/18/2016,Politicians,@PaulManafort,RT @DanScavino: .@realDonaldTrump joining @foxandfriends in a few minutes- tune in! #GOPConvention #MAGA #TrumpPence16 https://t.co/Czl25Pa… +07/18/2016,Politicians,@PaulManafort,Up next on Morning Joe as we kick off the GOP Convention in Cleveland! +07/17/2016,Politicians,@PaulManafort,Heading over to CBS now to talk @realdonaldtrump with @FaceTheNation - show starts at 10:30am ET. +07/17/2016,Politicians,@PaulManafort,Joining @FoxNewsSunday at the top of the hour to talk about @realDonaldTrump and @mike_pence #MakeAmericaGreatAgain +07/16/2016,Politicians,@PaulManafort,"RT @FoxNews: .@GovPenceIN: ""@realDonaldTrump is offering a vision for America...that would return American strength at home & abroad."" #Han…" +07/15/2016,Politicians,@PaulManafort,Up next on @CNN to talk about @realDonaldTrump and the GOP Convention! +07/15/2016,Politicians,@PaulManafort,Will be on @foxandfriends in a few minutes to talk about @realDonaldTrump and next week's GOP convention. +07/15/2016,Politicians,@PaulManafort,Anti-Trump people get crushed at Rules Committee. It was never in doubt: Convention will honor will of people & nominate @realdonaldtrump. +07/14/2016,Politicians,@PaulManafort,"Re: @realDonaldTrump VP selection, a decision will be made in the near future and the announcement will be tomorrow at 11am in New York." +07/13/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: The Republican platform is most +pro-Israel of all time!" +07/13/2016,Politicians,@PaulManafort,RT @JasonMillerinDC: Kendal Unruh’s claims that she has enough votes for a minority report are not true. The bind/unbind issue is dead. htt… +07/13/2016,Politicians,@PaulManafort,"GOP Platform will now strengthen resolve to build a border wall, more accurately reflecting Mr. Trump’s message: https://t.co/cQd0izUPY9" +07/13/2016,Politicians,@PaulManafort,GOP Platform improvement: Kate’s Law = longer prison sentences for deported illegal immigrants who re-enter US & engage in criminal activity +07/13/2016,Politicians,@PaulManafort,"Very good news via @QuinnipiacPoll this morning. @realDonaldTrump on the move in FL, PA and OH: https://t.co/oRpit4tXJC" +07/13/2016,Politicians,@PaulManafort,GOP Delegates hard at work - Platform will be much improved re: stopping illegal immigration and bad trade deals https://t.co/ZQUoMBOXKk +07/12/2016,Politicians,@PaulManafort,"Per @NBCNews poll, @HillaryClinton lead shrinks as people realize she puts herself above them. @realDonaldTrump will put #AmericaFirst" +07/12/2016,Politicians,@PaulManafort,"@HillaryClinton is pro-TPP/pro-NAFTA, pro-Wall St, won nomination in rigged primary system. Sanders may abandon principles, his voters won't" +07/12/2016,Politicians,@PaulManafort,"Thank you again for having me on the show, @foxandfriends - enjoyed talking about the leadership we're seeing from @realDonaldTrump." +07/12/2016,Politicians,@PaulManafort,Joining the @foxandfriends crew at 8:30am ET to talk about the Republican Convention and @realDonaldTrump - tune in now! +07/08/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: MAKE AMERICA SAFE AGAIN! +https://t.co/m0AJWlV8nm https://t.co/P0GleHEmJy" +07/01/2016,Politicians,@PaulManafort,"RT @realDonaldTrump: #ThrowbackThursday #Trump2016 +https://t.co/gFtspBViXe" +06/30/2016,Politicians,@PaulManafort,AG Lynch secret meeting with Bill Clinton while Hillary under investigation. It’s all about her. +06/26/2016,Politicians,@PaulManafort,I prefer NBC/WSJ poll +06/29/2018,Politicians,@PressSec,"Tonight @POTUS met w/ Senators Grassley, Collins, Murkowski, Manchin, Donnelly, and Heitkamp to discuss the Supreme… https://t.co/pMVXt7edvI" +06/28/2018,Politicians,@PressSec,"Strongly condemn the evil act of senseless violence in Annapolis, MD. A violent attack on innocent journalists doin… https://t.co/yYsg44MxfT" +06/27/2018,Politicians,@PressSec,RT @realDonaldTrump: Statement on Justice Anthony Kennedy. #SCOTUS https://t.co/8aWJ6fWemA +06/27/2018,Politicians,@PressSec,"While in Moscow today, Ambassador Bolton is meeting with President Vladimir Putin and other senior Russian official… https://t.co/cwa71WyiS0" +06/23/2018,Politicians,@PressSec,"Last night I was told by the owner of Red Hen in Lexington, VA to leave because I work for @POTUS and I politely le… https://t.co/C5554K1LVJ" +06/22/2018,Politicians,@PressSec,It’s shameful that dems and the media exploited this photo of a little girl to push their agenda. She was not separ… https://t.co/gh2FTAC9VC +06/22/2018,Politicians,@PressSec,RT @realDonaldTrump: Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/22/2018,Politicians,@PressSec,RT @FLOTUS: Today's visit to #Texas to spend time with children & thank the many hardworking individuals helping to care for them was very… +06/20/2018,Politicians,@PressSec,RT @realDonaldTrump: Homeland Security @SecNielsen did a fabulous job yesterday at the press conference explaining security at the border a… +06/15/2018,Politicians,@PressSec,RT @SteveScalise: It's more than a game. https://t.co/Obltwoeu2U +06/15/2018,Politicians,@PressSec,Incredible. https://t.co/jQJ9biUUIQ +06/15/2018,Politicians,@PressSec,"RT @realDonaldTrump: Happy 243rd Birthday to the @USArmy! Thank you for your bravery, sacrifices, and dedication to the U.S.A. We love you!…" +06/15/2018,Politicians,@PressSec,"RT @SecPompeo: Final day on the road in support of @POTUS's #SingaporeSummit. Traveled to #Seoul and #Beijing, met 2 presidents, held 4 bil…" +06/14/2018,Politicians,@PressSec,"RT @SecPompeo: Trilateral cooperation among US, #ROK & #Japan has been crucial to the effectiveness of our efforts regarding #DPRK We commi…" +06/14/2018,Politicians,@PressSec,RT @SteveScalise: Tomorrow. https://t.co/RDx7AbXLkp +06/14/2018,Politicians,@PressSec,Does @CBSNews know something I don’t about my plans and my future? I was at my daughter’s year-end Kindergarten eve… https://t.co/gwrJzTQCsH +06/13/2018,Politicians,@PressSec,Touchdown in DC after an incredible and historic trip. Circled the globe - 24k miles in 5 days with 42hrs in the ai… https://t.co/CQhjGbg5On +06/13/2018,Politicians,@PressSec,"Praying for my friend @larry_kudlow. Larry is smart, funny, and a true statesman. He is tough and we know he will b… https://t.co/Jm9qEpPoug" +06/13/2018,Politicians,@PressSec,Thankful to the men and women stationed at Hickam in HI. Almost home...but not really (9 more hours to go!) https://t.co/u1XTvp36u9 +06/12/2018,Politicians,@PressSec,"“Anyone can make war, but only the most courageous can make peace.” @POTUS in Singapore at Press conference followi… https://t.co/RBieGUfpfB" +06/12/2018,Politicians,@PressSec,RT @realDonaldTrump: https://t.co/tJG3KIn2q0 +06/12/2018,Politicians,@PressSec,Leader Kim departs Hotel Capella after signing joint statement with @POTUS. https://t.co/W6LQ5ZX8d3 +06/12/2018,Politicians,@PressSec,RT @Scavino45: HISTORY. #SingaporeSummit https://t.co/XF3GNzzBui +06/12/2018,Politicians,@PressSec,.@POTUS and US Delegation start expanded bilateral meeting with Leader Kim Jong Un and North Korean Delegation.… https://t.co/Zz5mznMcqM +06/12/2018,Politicians,@PressSec,.@POTUS and Leader Kim Jong Un on balcony after finishing the one on one. #SingaporeSummit https://t.co/kRiDpRiEq6 +06/12/2018,Politicians,@PressSec,RT @SecPompeo: We’re ready for today. #singaporesummit @StateDept https://t.co/65M9nKYiQ1 +06/12/2018,Politicians,@PressSec,"RT @Scavino45: #SingaporeSummit +(📸@AP @EvanVucci) https://t.co/JK9qfsd2xc" +06/12/2018,Politicians,@PressSec,US Delegation greets North Korean Delegation and watches @POTUS and Leader Kim Jong Un meet for first time. #BTS… https://t.co/qq7QqCCFX6 +06/12/2018,Politicians,@PressSec,".@POTUS arrives at Capella hotel, site of summit with North Korean Leader Kim Jong Un. https://t.co/8arwWYnGtr" +06/11/2018,Politicians,@PressSec,Great day with our very gracious hosts. Thank you Prime Minister Lee Hsien Loong. https://t.co/BW72whSaE3 +06/11/2018,Politicians,@PressSec,"RT @SecPompeo: Early pre-brief with my @StateDept team. Amb Kim meets with #DPRK today. We remain committed to the complete, verifiable, ir…" +06/10/2018,Politicians,@PressSec,.@POTUS arrives in Singapore for meeting with North Korean Leader Kim Jong Un. https://t.co/qj2S0mtEJ9 +06/10/2018,Politicians,@PressSec,"RT @Scavino45: 🚨Happening Now: +Behind the scenes on Air Force One as Team Trump speaks with our teams on the ground in Singapore, in advanc…" +06/09/2018,Politicians,@PressSec,"Dear @newsbyhughes @CNN, +Congratulations! Once again you are wrong. There is no “some kind of group signing” taking… https://t.co/eGgWL3Dqpx" +06/09/2018,Politicians,@PressSec,".@POTUS meets with world leaders and negotiates on Trade, Iran, and National Security. #G72018 #BTS https://t.co/OobyyDswNP" +06/09/2018,Politicians,@PressSec,RT @g7: Day 1 of #G7Charlevoix in 60 seconds. https://t.co/U6jA8ylIgm +06/09/2018,Politicians,@PressSec,Looking forward to joining @POTUS @realDonaldTrump at this evenings @G7 Cultural event at the @G7 Summit in Canada… https://t.co/DTxQ3pB4vF +06/09/2018,Politicians,@PressSec,RT @Scavino45: Behind the scenes at the #G7Summit as President @realDonaldTrump and President @EmmanuelMacron conclude their #G7Summit bila… +06/09/2018,Politicians,@PressSec,"RT @Scavino45: .@POTUS @realDonaldTrump in The Situation Room with @VP Pence and @StateDept @SecPompeo earlier today, discussing the upcomi…" +06/09/2018,Politicians,@PressSec,Great moment between @JustinTrudeau and @POTUS when he gave him picture of the President’s grandfather’s hotel in C… https://t.co/mwZbLf2lXm +06/09/2018,Politicians,@PressSec,RT @Scavino45: Canadian Prime Minister Justin Trudeau and his wife Mrs. Sophie Grégoire Trudeau welcome President @realDonaldTrump at the F… +06/09/2018,Politicians,@PressSec,"RT @Scavino45: In between Session I & II at the #G7Summit in Charlevoix, Canada. https://t.co/8gPEYJQuSD" +06/09/2018,Politicians,@PressSec,"RT @Scavino45: Working Session II at the #G7Summit in Charlevoix, Canada earlier this afternoon... https://t.co/TEKjfqM2ua" +06/08/2018,Politicians,@PressSec,Happy birthday to our great @VP! Thank you for all you do for our country! +06/07/2018,Politicians,@PressSec,"RT @FoxNews: During a briefing on Tuesday, @WhiteHouse @PressSec Sarah Sanders stated that ""the president has worked increasingly hard"" to…" +06/07/2018,Politicians,@PressSec,RT @VP: Honored to join @POTUS today as he signed the #VAMissionAct into law to expand healthcare access for veterans. This administration… +06/07/2018,Politicians,@PressSec,Great work today by all the staff and cabinet who made this happen! #500Days https://t.co/psSpIGSgKj +06/05/2018,Politicians,@PressSec,UPDATE: The venue for the Singapore summit between @POTUS and Leader Kim Jong Un will be the Capella Hotel on Sento… https://t.co/dZEQ0SmnPv +06/05/2018,Politicians,@PressSec,"RT @FoxNews: .@PressSec: ""We have the best economy since World War II."" #Hannity https://t.co/o37qPPuLQr" +06/03/2018,Politicians,@PressSec,"We’ve come a long way since Paul Krugman, writing in the New York Times after the election, said the Trump presiden… https://t.co/25UjQ0e6lP" +06/02/2018,Politicians,@PressSec,"RT @FoxBusiness: .@POTUS: ""We have reached yet one more historic milestone with 3.8% unemployment just announced."" https://t.co/Hy9ZPw4voj" +06/02/2018,Politicians,@PressSec,"RT @FoxBusiness: .@cvpayne on #JobsReport: ""I think it's a great number... We're almost near full employment by almost any measure."" https:…" +06/02/2018,Politicians,@PressSec,".@POTUS is presented with a letter from North Korean Leader Kim Jong Un, Friday, June 1, 2018, by North Korean envo… https://t.co/2jy1XRoCj9" +06/02/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today, it was my great honor to be with the brave men and women of the United States Coast Guard! https://t.co/RAyPbOG…" +06/01/2018,Politicians,@PressSec,This week @US_FDA is stopping drug companies from gaming the system to keep their prices high and block competition… https://t.co/oFrLPRDaMC +05/31/2018,Politicians,@PressSec,If only you’d had on tennis shoes! https://t.co/2DosXcGB5t +05/31/2018,Politicians,@PressSec,"RT @EricTrump: This is amazing. As someone who has dedicated so much of my life to fighting pediatric cancer, I’ve seen the pain an entire…" +05/31/2018,Politicians,@PressSec,RT @Scavino45: President Trump signs #RightToTry into law. https://t.co/6UcmJznEqc https://t.co/UmpmJjjKQB +05/29/2018,Politicians,@PressSec,"Since @POTUS May 24 letter to NK leader Kim Jong Un, the North Koreans have been engaging. The U.S. continues to ac… https://t.co/immQA6Pnsu" +05/28/2018,Politicians,@PressSec,My son had the honor of meeting a few real superheroes today and now knows what he wants to be when he grows up. Th… https://t.co/5YFk51U3m0 +05/28/2018,Politicians,@PressSec,RT @DeptofDefense: We pay tribute to the fallen this #MemorialDay weekend. We thank them for making the ultimate sacrifice for our freedom:… +05/28/2018,Politicians,@PressSec,https://t.co/dQj79A7R2n +05/26/2018,Politicians,@PressSec,I was one of the lucky ones to see him yesterday morning! He assured me they hadn’t let him help cook. Such a great… https://t.co/hqbbTZqiPA +05/25/2018,Politicians,@PressSec,"RT @realDonaldTrump: On behalf of the American People, CONGRATULATIONS! We love you! https://t.co/YRlj0vRXwk" +05/25/2018,Politicians,@PressSec,"“It ain't how hard you hit; it's about how hard you can get hit, and keep moving forward,” -Rocky Balboa +Thank you… https://t.co/a0zDw9L4Ro" +05/24/2018,Politicians,@PressSec,Letter from @POTUS to Kim Jong Un on Singapore Summit. https://t.co/4u5LZL6Lc1 +05/24/2018,Politicians,@PressSec,"RT @realDonaldTrump: Great to be in New York for the day. Heading back to the @WhiteHouse now, lots of work to be done! https://t.co/w3LUiQ…" +05/23/2018,Politicians,@PressSec,View from Marine One (@USMC) during the flyover of @USNavy ships and @USCG cutters for Fleet Week 2018 in NYC.… https://t.co/4H5I80QgBM +05/23/2018,Politicians,@PressSec,As the granddaughter of a firefighter I’m so proud to work for a president who supports the men and women of fire d… https://t.co/2TSrgr8kcV +05/23/2018,Politicians,@PressSec,"RT @realDonaldTrump: For the first time since Roe v. Wade, America has a Pro-Life President, a Pro-Life Vice President, a Pro-Life House of…" +05/23/2018,Politicians,@PressSec,"RT @dougmillsnyt: .@realDonaldTrump kisses 4-year-old Katharine Alexander, who was born with an opioid dependency and was adopted by Lisa &…" +05/22/2018,Politicians,@PressSec,The Iran deal was one of the worst deals in history and didn’t guarantee the safety of Americans. That’s why @POTUS… https://t.co/mPVUwhTEqn +05/21/2018,Politicians,@PressSec,"Historic day for our country: swearing-in ceremony for Gina Haspel, the first woman ever to serve as CIA director.… https://t.co/TCscw2HPYu" +05/18/2018,Politicians,@PressSec,"RT @steveholland1: Pres Trump is donating the first quarter of his 2018 salary to the Veterans Affairs Dept, per @PressSec" +05/18/2018,Politicians,@PressSec,"RT @FoxNews: .@PressSec: ""If the media and liberals want to defend MS-13, they're more than welcome to. Frankly, I don't think the term @PO…" +05/18/2018,Politicians,@PressSec,RT @Scavino45: “Trump donates first quarter salary to VA” https://t.co/qZMmRqjp1C +05/17/2018,Politicians,@PressSec,RT @WhiteHouse: #Laurel? #Yanny? Or... https://t.co/5hth07SdGY +05/16/2018,Politicians,@PressSec,RT @realDonaldTrump: Gina Haspel is one step closer to leading our brave men and women at the CIA. She is exceptionally qualified and the S… +05/16/2018,Politicians,@PressSec,"RT @dougmillsnyt: .@realDonaldTrump kisses the hand of Adrianna Valoy, mother of falling NYPD Detective Milsotis Familia, during his remark…" +05/15/2018,Politicians,@PressSec,Beautiful day at our nation’s Capitol to celebrate some of America’s greatest heroes. Thank you to the great men an… https://t.co/ov0OdpEPcC +05/15/2018,Politicians,@PressSec,Prayers for our amazing First Lady! https://t.co/8kqOD8C2Uq +05/14/2018,Politicians,@PressSec,Proud my parents are at the Embassy opening today. Great moment for @POTUS and all of history. https://t.co/dbskbdfLGA +05/14/2018,Politicians,@PressSec,"RT @FoxNews: Jared Kushner: “I am so proud to be here today in Jerusalem, the eternal heart of the Jewish people and I am especially honore…" +05/14/2018,Politicians,@PressSec,"RT @FoxNews: Jared Kushner: “When President Trump makes a promise, he keeps it.” https://t.co/VoMTeuYXHK" +05/14/2018,Politicians,@PressSec,RT @WhiteHouse: Watch LIVE the dedication of @usembassyjlm: https://t.co/KVhxC50Ywe #USEmbassyJerusalem +05/14/2018,Politicians,@PressSec,"RT @CNN: Standing next to Ivanka Trump, Treasury Secretary Steve Mnuchin reveals the seal of the US embassy, making the embassy's move from…" +05/14/2018,Politicians,@PressSec,"RT @FoxNewsSunday: In his first interview since returning from North Korea, @SecPompeo tells Chris Kim Jong-un ""does follow the Western pre…" +05/14/2018,Politicians,@PressSec,"RT @IvankaTrump: I am honored to join the delegation representing @POTUS, his Admin & the American people at this momentous ceremony commem…" +05/14/2018,Politicians,@PressSec,RT @SarahHuckabee: Perfect end to a great Mother’s Day. Love my family. #crabhunt #welethimgo https://t.co/JfYQS015Br +05/13/2018,Politicians,@PressSec,Happy Mother’s Day! https://t.co/q2K1ozFSM3 +05/12/2018,Politicians,@PressSec,"RT @SarahHuckabee: So fun meeting @RobLowe. Incredibly talented, funny, and very nice guy. Thanks for entertaining us all these years! http…" +05/10/2018,Politicians,@PressSec,RT @PressSec: A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@PressSec,RT @PressSec: .@SecPompeo briefs @POTUS on his trip to North Korea just before the returnees land at JBA. https://t.co/vJQVjqokVl +05/10/2018,Politicians,@PressSec,RT @PressSec: .@POTUS lands at JBA to welcome home the three returnees - incredible night for America. https://t.co/SH2m9LoQ43 +05/10/2018,Politicians,@PressSec,A night we will all remember. Thankful to live in America. https://t.co/VbDrpUG5Yg +05/10/2018,Politicians,@PressSec,.@SecPompeo briefs @POTUS on his trip to North Korea just before the returnees land at JBA. https://t.co/vJQVjqokVl +05/10/2018,Politicians,@PressSec,.@POTUS lands at JBA to welcome home the three returnees - incredible night for America. https://t.co/SH2m9LoQ43 +05/10/2018,Politicians,@PressSec,RT @WhiteHouse: Gina Haspel has developed outstanding intelligence expertise and understanding during her distinguished career at the CIA.… +05/10/2018,Politicians,@PressSec,RT @IvankaTrump: Today @POTUS signed an EO to promote military spouse hiring across ALL federal agencies. To our #MilitarySpouses: Your cou… +05/09/2018,Politicians,@PressSec,A positive gesture brings incredible news for three American families. https://t.co/t6uJU1MoqF +05/08/2018,Politicians,@PressSec,America needs a strong leader at the CIA! Gina Haspel has spent 33 years protecting the homeland. She has the exper… https://t.co/T5bMXN6k8e +05/08/2018,Politicians,@PressSec,"RT @WhiteHouse: ""So today I’m very excited to announce Be Best, an awareness campaign dedicated to the most valuable and fragile among us,…" +05/08/2018,Politicians,@PressSec,RT @virginiafoxx: Joined @FLOTUS at the White House today for the launch of the #BeBest initiative. I couldn't agree more that in our rapid… +05/07/2018,Politicians,@PressSec,"Opioids, social media use and mental and physical well-being are all major issues our children face. Go visit… https://t.co/VvAy0bDH4j" +05/07/2018,Politicians,@PressSec,"ICYMI: @POTUS appointed members to his Council on on Sports, Fitness, and Nutrition, which aims to encourage youth… https://t.co/A9O8Vqsi8L" +05/07/2018,Politicians,@PressSec,Proud to be with Ambassador @RichardGrenell tonight in NYC as he departs for Germany to represent our great country… https://t.co/HI5d0eO8Ee +05/05/2018,Politicians,@PressSec,There is no one more qualified to be the first woman to lead the CIA than 30+ year CIA veteran Gina Haspel. Any Dem… https://t.co/utXxKzk0Bv +05/04/2018,Politicians,@PressSec,"RT @SecPompeo: We have an unprecedented opportunity to change the course of history on the Korean Peninsula, but the outcome is unknown. Ho…" +05/04/2018,Politicians,@PressSec,"The @realDonaldTrump effect: Black and Hispanic unemployment again hits record lows +https://t.co/3HdxUnBW1x" +05/03/2018,Politicians,@PressSec,.@SBALinda is doing big things for small business! She is working with @POTUS to ensure small businesses can compet… https://t.co/pYYHfsaohO +05/03/2018,Politicians,@PressSec,"Today, @POTUS will sign an EO creating a new faith-based initiative, and will continue the @WhiteHouse tradition th… https://t.co/KH3CXwakm0" +05/03/2018,Politicians,@PressSec,RT @realDonaldTrump: Congratulations @SecPompeo! https://t.co/ECrMGkXMQF +05/02/2018,Politicians,@PressSec,.@POTUS speaks @StateDept and welcomes @SecPompeo as the new Secretary of State to applause and cheers. https://t.co/VVcldsQTum +05/02/2018,Politicians,@PressSec,Love @SBALinda and all she does for small businesses across our great country. #SmallBusinessWeek https://t.co/jmwotayDwv +05/02/2018,Politicians,@PressSec,RT @Marcshort45: Rear Admiral Jackson and his family have devoted their lives in service to our country. Sen. Tester should be ashamed of p… +05/02/2018,Politicians,@PressSec,RT @Scavino45: https://t.co/abH0KoErIA +05/01/2018,Politicians,@PressSec,Welcome to Twitter @SecPompeo! You are going to be an amazing Secretary of State for @POTUS and we are all excited… https://t.co/Bluej1qRLS +04/27/2018,Politicians,@PressSec,"RT @realDonaldTrump: KOREAN WAR TO END! The United States, and all of its GREAT people, should be very proud of what is now taking place in…" +04/27/2018,Politicians,@PressSec,"I pity the fool who doesn’t love +@MrT! #TeamUSAAwards https://t.co/77hb9YPyXE" +04/26/2018,Politicians,@PressSec,Congratulations to @RichardGrenell for FINALLY being confirmed as AMB to Germany despite HISTORIC obstruction from… https://t.co/NEq9b2IeJB +04/26/2018,Politicians,@PressSec,Had a great time showing the kids around and answering questions from reporters-in-training! #TakeYourChildToWorkDay https://t.co/YXSTJ39IHU +04/26/2018,Politicians,@PressSec,Great to have Secretary Pompeo confirmed. He will do an excellent job helping @POTUS lead our efforts to denucleari… https://t.co/AsO0AcpK2p +04/26/2018,Politicians,@PressSec,So proud to work with Secretary Pompeo! He will be great. https://t.co/vuv8WsDuGl +04/26/2018,Politicians,@PressSec,Mike Pompeo watches as he’s confirmed Secretary of State https://t.co/qDSehtPskc +04/26/2018,Politicians,@PressSec,"RT @dougmillsnyt: On ""take your child to work day"", @PressSec with the help of her two children, takes questions in the White House Press R…" +04/25/2018,Politicians,@PressSec,So happy for my friend Michael. Truly one of a kind! https://t.co/a6i0fx2zNE +04/25/2018,Politicians,@PressSec,Unforgettable evening at the White House for State Dinner honoring French President @EmmanuelMacron. @FLOTUS did an… https://t.co/FJSHSbayf3 +04/24/2018,Politicians,@PressSec,RT @realDonaldTrump: “President Trump Calls the U.S.-France Relationship ‘Unbreakable.’ History Shows He’s Right.” https://t.co/L0gT4rvaJO +04/24/2018,Politicians,@PressSec,RT @WhiteHouse: .@FLOTUS has selected the dinner setting and décor for the Trump Administration's first State Visit to pay homage to the lo… +04/21/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today, my thoughts and prayers are with the entire Bush family. In memory of First Lady Barbara Bush, there is a remem…" +04/19/2018,Politicians,@PressSec,"John Kerry: 94-3 +Hillary Clinton: 94-2 +Condi Rice: 85-13 +Colin Powell: Unanimous Voice Vote +What does history tell… https://t.co/1JY7JQEamm" +04/19/2018,Politicians,@PressSec,RT @NASKeyWest: #CommanderInChief @POTUS arrives at #BocaChicaField. First visit by a sitting President since Kennedy in 1962. https://t.co… +04/19/2018,Politicians,@PressSec,Thank you @SenJohnBarrasso! https://t.co/6Mv04rB8Jl +04/19/2018,Politicians,@PressSec,Flag at Mar-a-lago at half staff in honor of Barbara Bush. She was a great American and will be dearly missed. Her… https://t.co/ZgpCI5fGgl +04/19/2018,Politicians,@PressSec,"RT @Scavino45: 📲 Behind-the-scenes after today’s joint press conference hosted by President @realDonaldTrump with @JPN_PMO @AbeShinzo! + +🇺🇸…" +04/18/2018,Politicians,@PressSec,Nothing could better underscore the importance of getting America's top diplomat in place for such a time as this.… https://t.co/c4fLOPH0y4 +04/17/2018,Politicians,@PressSec,"On this #TaxDay the Congressional Democrats had a rally to TAKE AWAY the bonuses, wage hikes and other benefits the… https://t.co/mcwLMYKpWC" +04/17/2018,Politicians,@PressSec,.@POTUS meets with Prime Minister of Japan @AbeShinzo today at Mar-a-lago to discuss N. Korea and trade. https://t.co/PeyWKPUyjG +04/17/2018,Politicians,@PressSec,"RT @WhiteHouse: Out with the old, in with the new: tax cuts and reforms that look out for hardworking taxpayers ⬇️ +https://t.co/eEHFWkG8xm" +04/17/2018,Politicians,@PressSec,Flags from all 50 states line the entrance to Mar-a-lago to welcome Prime Minister of Japan @AbeShinzo. https://t.co/V7AD5TJKdt +04/16/2018,Politicians,@PressSec,"Great scoreboard at “USA Open for Business” event in Hialeah, FL. @POTUS is winning for America! https://t.co/dk6Lwj8jv6" +04/15/2018,Politicians,@PressSec,"RT @ABC: Press Sec. Sanders says coalition forces ""100% met their objectives"" in Syria. + +""They also sent a strong message to Syria, to Russ…" +04/15/2018,Politicians,@PressSec,"As I said, the President put our adversaries on notice that he enforces red lines with the strike on Syria Friday n… https://t.co/6JtN3YoIcB" +04/15/2018,Politicians,@PressSec,Last night the President put our adversaries on notice: when he draws a red line he enforces it. (Inside the Situat… https://t.co/PGQ8GzIvyp +04/14/2018,Politicians,@PressSec,"RT @ChiefPentSpox: Yesterday, United States Forces - at the direction of @POTUS - launched precision strikes against #Assad regime targets…" +04/14/2018,Politicians,@PressSec,"RT @ChiefPentSpox: These strikes were a justified, legitimate and proportionate response to the Syrian government's continued use of chemic…" +04/14/2018,Politicians,@PressSec,RT @ChiefPentSpox: We are extremely proud of the U.S. #servicemembers who carried out this operation last night. https://t.co/XThDJEbFB6 +04/14/2018,Politicians,@PressSec,"RT @DeptofDefense: SecDef #Mattis and Chairman of the @TheJointStaff, #GenDunford, brief reporters on the current U.S. air strikes on #Syri…" +04/14/2018,Politicians,@PressSec,"RT @VP: Tonight, at the order of @POTUS, U.S. Armed Forces, with Britain and France, launched strikes against chemical weapon sites in Syri…" +04/14/2018,Politicians,@PressSec,RT @realDonaldTrump: https://t.co/6VLQYAlcto +04/13/2018,Politicians,@PressSec,"RT @SenPatRoberts: I say to those who serve our country here in Washington and at diplomatic posts around the world, Mike Pompeo will work…" +04/13/2018,Politicians,@PressSec,"RT @SenatorRounds: I thank Mike Pompeo for his willingness to continue to serve our country, this time as head of @StateDept. Today’s confi…" +04/13/2018,Politicians,@PressSec,One of the few areas of true bipartisan consensus in Washington is Comey has no credibility-> https://t.co/HblT75ESAY via @YouTube +04/11/2018,Politicians,@PressSec,"As a proud Arkansan, I’m not an Alabama football fan, but I was a big fan of this prayer for @POTUS. #SEC Always… https://t.co/dtp1ITXw8L" +04/08/2018,Politicians,@PressSec,RT @realDonaldTrump: ....to pay. Open area immediately for medical help and verification. Another humanitarian disaster for no reason whats… +04/08/2018,Politicians,@PressSec,"RT @realDonaldTrump: Many dead, including women and children, in mindless CHEMICAL attack in Syria. Area of atrocity is in lockdown and enc…" +04/07/2018,Politicians,@PressSec,Indisputable that the Trump admin has been tougher on Russia than the Obama admin but it just doesn’t fit the fake… https://t.co/jFU9dt7aRm +04/07/2018,Politicians,@PressSec,The President will never stop fighting to do what Democrats won’t: secure our border and keep Americans safe https://t.co/VZoDq8JpLt +04/07/2018,Politicians,@PressSec,The President has ordered an end to “catch and release” https://t.co/rHmFfNFLHn +04/07/2018,Politicians,@PressSec,RT @realDonaldTrump: “BET founder: Trump's economy is bringing black workers back into the labor force” https://t.co/TtMDfi4bv0 +04/07/2018,Politicians,@PressSec,"RT @ChiefNGB: Always Ready, Always There! Moving up to 500 #NationalGuard troops immediately on the SW border security mission. Vehicles, e…" +04/06/2018,Politicians,@PressSec,.@SecretarySonny has traveled to 35 states with a clear message: President Trump and this Administration are the vo… https://t.co/Qx38XInjED +04/04/2018,Politicians,@PressSec,"RT @realDonaldTrump: Today we honor Dr. Martin Luther King, Jr. on the 50th anniversary of his assassination. Earlier this year I spoke abo…" +04/04/2018,Politicians,@PressSec,"RT @Scavino45: Beautiful #TeamTrump send off for #HopeHicks and #JoshRaffel this evening in Washington, DC! On behalf of everyone at the @W…" +04/02/2018,Politicians,@PressSec,"Today we lost Connie Lawn, a remarkable woman who covered the White House for over 50 years. She will always be rem… https://t.co/6CHadduYgK" +04/01/2018,Politicians,@PressSec,RT @SarahHuckabee: Happy Easter! https://t.co/1dPUWkO2d6 +03/31/2018,Politicians,@PressSec,"RT @SarahHuckabee: ""For God so loved the world that he gave his only Son, that whoever believes in Him shall not perish but have eternal li…" +03/30/2018,Politicians,@PressSec,"Mike Pompeo (State), Gina Haspel (CIA), and Admiral Ronny Jackson (VA) have served our country with honor and disti… https://t.co/2nJh58MWeU" +03/30/2018,Politicians,@PressSec,"RT @IvankaTrump: Thanks to #TaxCuts, @McDonalds has committed to increase its investment in #WorkforceDevelopment. The Archways to Opportun…" +03/29/2018,Politicians,@PressSec,"Can’t argue with the results. President Trump’s policies are working-> +https://t.co/yTHxSBuWn8" +03/27/2018,Politicians,@PressSec,"Under the leadership of @DrMcCance_Katz, the Substance Abuse and Mental Health Services Admin. is working to combat… https://t.co/oRm8q811gA" +03/27/2018,Politicians,@PressSec,Dozens of EU and partner countries + NATO have joined the UK and the U.S. to expel Russian intel officers hiding un… https://t.co/2tAYLq73VP +03/27/2018,Politicians,@PressSec,"RT @WhiteHouse: Today, President Trump ordered the expulsion of dozens of Russian intelligence officers from the U.S. and the closure of th…" +03/26/2018,Politicians,@PressSec,.@IvankaTrump: “Skill-based education is crucial to putting more Americans on a path to promising careers – and fil… https://t.co/jkV4PRvar5 +03/26/2018,Politicians,@PressSec,Statement on Expulsion of Russian intelligence officers. https://t.co/4uCzMOMG3f +03/26/2018,Politicians,@PressSec,Had a blast meeting Celia and Natalie @WhiteHouse on Friday. https://t.co/ZbjUDhNYwW +03/24/2018,Politicians,@PressSec,"RT @Scavino45: March 23, 2018 #TeamTrumpBTS +🔟📸 https://t.co/5YiDnLpe3x https://t.co/npFo2W5i8w" +03/21/2018,Politicians,@PressSec,".@POTUS talked w/ @SpeakerRyan & @SenateMajLdr about priorities secured in the omnibus, which all support, especial… https://t.co/rBYoPsfGXo" +03/21/2018,Politicians,@PressSec,RT @repgregwalden: Working across the aisle and with @POTUS I know we can put an end to the #OpioidCrisis once and for all #CrisisNextDoor… +03/21/2018,Politicians,@PressSec,"Much of the chattering class said @POTUS would lose the election, but he won; said he’d hurt the economy, but it’s… https://t.co/erpfxztF1C" +03/20/2018,Politicians,@PressSec,RT @realDonaldTrump: Our Nation was founded by farmers. Our independence was won by farmers. And our continent was tamed by farmers. Our fa… +03/20/2018,Politicians,@PressSec,".@POTUS mourns for victims of the recent bombings in Austin. We are monitoring the situation, federal authorities a… https://t.co/BD3jl8Bc2V" +03/20/2018,Politicians,@PressSec,RT @business: This is what record-low unemployment looks like in America https://t.co/4omUIJL07V https://t.co/EVodCrT6Np +03/19/2018,Politicians,@PressSec,RT @GOPLeader: .@POTUS' proposals to combat opioid addiction demonstrate that there is ample opportunity to reach a bipartisan consensus. W… +03/19/2018,Politicians,@PressSec,"RT @WhiteHouse: The opioid crisis has created stories of despair of shock, but also stories of recovery & hope. President Trump is asking e…" +03/19/2018,Politicians,@PressSec,RT @RepDavidKustoff: I applaud @POTUS @realDonaldTrump for laying out a three-pronged approach to combat the #OpioidEpidemic. In order to e… +03/19/2018,Politicians,@PressSec,RT @AGPamBondi: Ty @POTUS for the comprehensive approach to combat the national opioid crisis. This nationwide initiative will help stop t… +03/19/2018,Politicians,@PressSec,RT @WVGovernor: People are dying every day from opioid abuse. I'm encouraged and hopeful that @POTUS's plans will help us take bigger steps… +03/16/2018,Politicians,@PressSec,RT @realDonaldTrump: Our thoughts and prayers go out to the families and loved ones of the brave troops lost in the helicopter crash on the… +03/16/2018,Politicians,@PressSec,Just spoke to @POTUS and Gen. H.R. McMaster - contrary to reports they have a good working relationship and there are no changes at the NSC. +03/15/2018,Politicians,@PressSec,In the briefing I said I would provide the trade deficit number we have with Canada. In 2017 we had a $17.58 B trad… https://t.co/CwhvJBUqNY +03/14/2018,Politicians,@PressSec,"RT @FoxNews: MOMENTS AGO: @POTUS departs California after visiting border wall prototypes, criticizing state's sanctuary law. https://t.co/…" +03/14/2018,Politicians,@PressSec,RT @steveholland1: Pres Trump arriving at border wall prototypes https://t.co/AjhdjQGjWt +03/09/2018,Politicians,@PressSec,"The New York Times: “jobs reports don’t get much better than this” +https://t.co/1hbF94Mhdp" +03/09/2018,Politicians,@PressSec,"The good economic news keeps coming. Reynolds giving thousands of workers tax cut bonuses +https://t.co/r7RAcnGgzh" +03/09/2018,Politicians,@PressSec,"RT @FoxNews: SoKo security adviser Chung Eui-Yong: ""I explained to @POTUS that his leadership and his maximum pressure policy together with…" +03/09/2018,Politicians,@PressSec,.@POTUS greatly appreciates the nice words of the S. Korean delegation & Pres Moon. He will accept the invitation t… https://t.co/Y0SQ4fGee3 +03/08/2018,Politicians,@PressSec,RT @WhiteHouse: President Trump is protecting American national security from the effects of unfair trade practices by protecting our steel… +03/08/2018,Politicians,@PressSec,"RT @FoxNews: .@POTUS: ""We have to protect and build our steel and aluminum industries, while at the same time showing great flexibility and…" +03/08/2018,Politicians,@PressSec,#InternationalWomensDay https://t.co/qCLjh60Pxx +07/02/2018,Politicians,@SarahPalinUSA,'I Almost Already Accepted': Roseanne Says She Has Multiple Offers On Table To Return To TV https://t.co/DMhEMiVp28 +07/02/2018,Politicians,@SarahPalinUSA,Oops. https://t.co/tCx8hblni5 +07/02/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/MrKAS0kY5h +07/01/2018,Politicians,@SarahPalinUSA,Busted. https://t.co/V1ABWGk8uO +07/01/2018,Politicians,@SarahPalinUSA,Sick: America's OIdest Veteran Just Had His Life Savings Stolen https://t.co/twDjMofmU8 +07/01/2018,Politicians,@SarahPalinUSA,Good grief... https://t.co/2KnVVZT3jq +07/01/2018,Politicians,@SarahPalinUSA,Right on! 🇺🇸️ https://t.co/Qo7gJ1BMX4 +07/01/2018,Politicians,@SarahPalinUSA,Congress Includes Surprising Provision In New Farm Bill https://t.co/sUX95KPZg5 +07/01/2018,Politicians,@SarahPalinUSA,So Much Winning: Trump Reveals Plan For Another Round Of Tax Cuts https://t.co/vQwIy3Xljz +07/01/2018,Politicians,@SarahPalinUSA,Journalists Spread Conspiracy Theory that DHS Is Sending Out Secret Nazi Code https://t.co/acjMBgNf1n +07/01/2018,Politicians,@SarahPalinUSA,Awful... https://t.co/qLdW1ZE481 +07/01/2018,Politicians,@SarahPalinUSA,"Trump Responds To Democrats Who Are Trying To Abolish ICE, It's Pure Gold https://t.co/BwKhUauiJC" +07/01/2018,Politicians,@SarahPalinUSA,"Dem Senator Wants ICE To Be Abolished, Hopes You Forgot What She Said About Illegal Immigrants In 2009 https://t.co/IgYdNEVzJm" +07/01/2018,Politicians,@SarahPalinUSA,Hollywood Actor Takes Maxine's Words to Heart — Attempts to Stop Senator McConnell from Eating https://t.co/GUutUP5uhB +07/01/2018,Politicians,@SarahPalinUSA,'I Can't Even …' — Hillary Took A Shot At Melania And It Was A Stuttering Mess https://t.co/ZUZgbUmAjZ +07/01/2018,Politicians,@SarahPalinUSA,BOOM. https://t.co/nUHp2ziCJH +07/01/2018,Politicians,@SarahPalinUSA,This is a MUST watch! https://t.co/xa0apuUVqD +07/01/2018,Politicians,@SarahPalinUSA,Too funny!! https://t.co/CXsGPvWvFb +07/01/2018,Politicians,@SarahPalinUSA,Yikes! https://t.co/nyDj9Zu7iG +06/30/2018,Politicians,@SarahPalinUSA,"Restaurant Manager Refuses To Serve Customer Wearing A MAGA Hat, Immediately Suffers The Consequences https://t.co/03RAqfOdE5" +06/30/2018,Politicians,@SarahPalinUSA,A former CNN producer called him out for his actions. https://t.co/x7Q7e1hfL5 +06/30/2018,Politicians,@SarahPalinUSA,Trump's Epic Prediction From 2013 Just Came Back To Bite Dems In A Big Way https://t.co/R2VmgeJuyJ +06/30/2018,Politicians,@SarahPalinUSA,Shouldn't come as a surprise. https://t.co/qsTwU4n6oH +06/30/2018,Politicians,@SarahPalinUSA,She has reportedly canceled her upcoming public speaking events due to a credible death threat. https://t.co/0QS1ZlYdoG +06/30/2018,Politicians,@SarahPalinUSA,Oops... https://t.co/MHopOidU3w +06/30/2018,Politicians,@SarahPalinUSA,Scary! Authorities arrested the man in Los Angeles. https://t.co/y31IOoaTOe +06/30/2018,Politicians,@SarahPalinUSA,Negotiator-In-Chief: Trump Scores MASSIVE Resource Deal From Saudi Arabia https://t.co/gyJpl4y2ai +06/30/2018,Politicians,@SarahPalinUSA,Whoops... https://t.co/Y6nQQgny7a +06/30/2018,Politicians,@SarahPalinUSA,Trump Narrows List Of 25 Supreme Court Nominees To Just 5 Candidates https://t.co/ZnZ9agyQ4R +06/30/2018,Politicians,@SarahPalinUSA,NEW INFO... https://t.co/TMmSBgxBNr +06/30/2018,Politicians,@SarahPalinUSA,Well there you go... https://t.co/qvqhyEpV7A +06/30/2018,Politicians,@SarahPalinUSA,"SHE’S SPIRALING: Maxine Starts 'Crying' In Middle of Interview, Cancels 2 Events, Claims She’s the Real ‘Victim’ https://t.co/iCqmkHjMIH" +06/29/2018,Politicians,@SarahPalinUSA,More on this... https://t.co/Z2QrZAnLF8 +06/29/2018,Politicians,@SarahPalinUSA,Interesting. https://t.co/COPtOu0oGX +06/29/2018,Politicians,@SarahPalinUSA,GOP Rep On Illegal Border Crossings: '[Children] Should Be Reunited With Their Families... In Their Home Country' https://t.co/yy690232ON +06/29/2018,Politicians,@SarahPalinUSA,🇺🇸Bikers for Monetti🇺🇸 https://t.co/N2pMyURq5c +06/29/2018,Politicians,@SarahPalinUSA,Inside Scoop: Tucker Carlson Says White House Shake Up 'Likely Very Soon' https://t.co/3gRW3fiaap +06/29/2018,Politicians,@SarahPalinUSA,Thoughts?? https://t.co/uhvk4INYCb +06/29/2018,Politicians,@SarahPalinUSA,"Democrat Senator Calls For Abolishing ICE, Conservatives Point Out 1 Thing https://t.co/igaXsEDNkF" +06/29/2018,Politicians,@SarahPalinUSA,So Much For Peacefully Protesting: Nearly 600 Women's March Protesters ARRESTED on Capitol Hill https://t.co/dM145raxCA +06/29/2018,Politicians,@SarahPalinUSA,Whoa...this is big. https://t.co/dVmu7VR7z0 +06/29/2018,Politicians,@SarahPalinUSA,Barron Gets the Last Laugh: Peter Fonda's New Movie Is an Utter Disaster at the Box Office https://t.co/MKAeAlyKMU +06/29/2018,Politicians,@SarahPalinUSA,"VICTIMS IDENTIFIED: 5 Dead, Others Injured After Shooting Incident In Maryland Newsroom https://t.co/aV81TqgMGR" +06/29/2018,Politicians,@SarahPalinUSA,Do you agree? https://t.co/wU9aK9aXbI +06/29/2018,Politicians,@SarahPalinUSA,Photo: Sign Spotted at Red Hen After Sanders Incident Proves They're Grade-A Hypocrites https://t.co/EAXJO97XNR +06/29/2018,Politicians,@SarahPalinUSA,Comedy Central Writer Wishes Death Upon Justice Kennedy for Stepping Down https://t.co/zUrQKqny6o +06/28/2018,Politicians,@SarahPalinUSA,Thoughts on this? https://t.co/MrWPhX6DqS +06/28/2018,Politicians,@SarahPalinUSA,Wow! https://t.co/JU5jLTAhp5 +06/28/2018,Politicians,@SarahPalinUSA,Get READY... https://t.co/BJOdVtjcVx +06/28/2018,Politicians,@SarahPalinUSA,BOOM. https://t.co/j8RiEIWX3f +06/28/2018,Politicians,@SarahPalinUSA,Here are the details: https://t.co/7tfY5eGXgv +06/28/2018,Politicians,@SarahPalinUSA,🇺🇸Don’t know if a Senate fundraiser/rally is even supposed to be this much fun🇺🇸😄but I had a blast in America’s hea… https://t.co/XCZROkwepi +06/28/2018,Politicians,@SarahPalinUSA,Narrative Buster: Noncitizen Arrested For Role In Voter Fraud Scheme https://t.co/yJUUaQAhce +06/28/2018,Politicians,@SarahPalinUSA,This: https://t.co/iFoOGRf67s +06/28/2018,Politicians,@SarahPalinUSA,And so it begins... https://t.co/UPkOAMM1rB +06/28/2018,Politicians,@SarahPalinUSA,Big news: https://t.co/7feomwe3Qa +06/28/2018,Politicians,@SarahPalinUSA,'Republicans Are Forbidden': Look What Signs Are Popping Up Across Los Angeles https://t.co/HodhQIKeHT +06/28/2018,Politicians,@SarahPalinUSA,"Jerry Seinfeld Can't Hold It In, Says What Nobody Else In Hollywood Will About Roseanne's Firing https://t.co/d8Kzab8bY5" +06/28/2018,Politicians,@SarahPalinUSA,"BREAKING: Supreme Court Justice Announces Retirement, Gives Trump Biggest Gift of Presidency https://t.co/ybh4EsdW5x" +06/27/2018,Politicians,@SarahPalinUSA,It continues... https://t.co/eBnxDNZYN9 +06/27/2018,Politicians,@SarahPalinUSA,Share...a must see! https://t.co/SigMJUSxXw +06/27/2018,Politicians,@SarahPalinUSA,What do you think about this? https://t.co/Vf24ANa7P5 +06/27/2018,Politicians,@SarahPalinUSA,Remember Chelsea Manning Running For The Senate? Here's How It Turned Out https://t.co/U7yLji8lzm +06/27/2018,Politicians,@SarahPalinUSA,Terrible. https://t.co/n4FRa5VFJd +06/27/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/sUIKzk5A3Q +06/27/2018,Politicians,@SarahPalinUSA,Bolton is in Russia ahead of an anticipated summit between Putin and President Trump. https://t.co/XP23pG5czS +06/27/2018,Politicians,@SarahPalinUSA,Thoughts on this? https://t.co/0GIzhlHcmg +06/27/2018,Politicians,@SarahPalinUSA,And there it is....read up on it. https://t.co/iLJM21TOdc +06/27/2018,Politicians,@SarahPalinUSA,"Mitch McConnell And Wife Latest To Be Confronted By Protesters, She Answered Them With 7 FEISTY Words https://t.co/fg7aNPXuXh" +06/27/2018,Politicians,@SarahPalinUSA,"WATCH: ABC News Heads To Southern Border, Runs Into Illegals Being Smuggled Into US https://t.co/4l9PWdyCUS" +06/27/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/IJC05QO4JM +06/27/2018,Politicians,@SarahPalinUSA,"Another Trump Official Targeted By The Left, This Time Using A Dead Animal Carcass https://t.co/DeKSfzScSY" +06/27/2018,Politicians,@SarahPalinUSA,"James Woods Shreds Obama, Posts Time Cover of His Own https://t.co/yk3dLf2Ccd" +06/27/2018,Politicians,@SarahPalinUSA,Supreme Court Says Pro-Life Pregnancy Centers Don’t Have to Be ‘Abortion Referral Agencies’ https://t.co/Ar11fl5D40 +06/27/2018,Politicians,@SarahPalinUSA,"Pam Bondi Bravely Comes Forward: 3 Huge Guys Screamed and Cursed Me 1 Inch From My Face, Spit On My Head! https://t.co/4gfL1vKLn9" +06/27/2018,Politicians,@SarahPalinUSA,And here it is... https://t.co/xDP7C2oFVO +06/26/2018,Politicians,@SarahPalinUSA,The part of the story everyone should know... https://t.co/VdCjw18FNK +06/26/2018,Politicians,@SarahPalinUSA,Popular Liberal Website Warns GOP of 1970's Style Bombings... 'This Is Just the Beginning' https://t.co/fOBNYEOXlG +06/26/2018,Politicians,@SarahPalinUSA,10 Photos of Life Right Now https://t.co/AoW7ee7oGK +06/26/2018,Politicians,@SarahPalinUSA,"CNN’s Cillizza Is Mad Over Trump Tweet, NRA’s Loesch Had To Remind Him What Obama Said (Which Was Way Worse) https://t.co/7hda26ZniV" +06/26/2018,Politicians,@SarahPalinUSA,More info just came in... https://t.co/NCEARWvfZb +06/26/2018,Politicians,@SarahPalinUSA,Harley-Davidson To Move Work Overseas Following European Tariffs... Trump Is Not Happy About It https://t.co/cMKQRr6LvR +06/26/2018,Politicians,@SarahPalinUSA,Breaking. https://t.co/3O9aHWMjHh +06/26/2018,Politicians,@SarahPalinUSA,Really? https://t.co/kmooNI4na1 +06/26/2018,Politicians,@SarahPalinUSA,Check it out: https://t.co/G9hpzQtsE7 +06/26/2018,Politicians,@SarahPalinUSA,"Fed-Up Trump Says Forget Judges and Courts — Soon As Illegals Cross Border, We Must Return Them 'Immediately' https://t.co/kxuFhysZjL" +06/26/2018,Politicians,@SarahPalinUSA,More on this... https://t.co/0RfQjy3TNC +06/26/2018,Politicians,@SarahPalinUSA,North Korea Reportedly Making Quiet Move That Suggests They Are Serious About Deal With Trump https://t.co/o6Gr304Blc +06/26/2018,Politicians,@SarahPalinUSA,You'll want to see this one... https://t.co/p1AuHNwbH5 +06/25/2018,Politicians,@SarahPalinUSA,I Passed My Realtor’s Test: 3 (Sweet!) Photos of My Life Now https://t.co/mCTpVTXt32 +06/25/2018,Politicians,@SarahPalinUSA,WOW... https://t.co/ad3ssXwTZE +06/25/2018,Politicians,@SarahPalinUSA,He didn't hold back... https://t.co/TaNxD1G8q1 +06/25/2018,Politicians,@SarahPalinUSA,Iran Peace Deal? The Country Faces Economic Disaster And The U.S. Could Be Their Only Hope https://t.co/6SWYeHNxlb +06/25/2018,Politicians,@SarahPalinUSA,He says there are two things people need to do in response. https://t.co/MVcyH6Wjvg +06/25/2018,Politicians,@SarahPalinUSA,Devastating New Poll Shows Just How Out Of Touch Democrats Are On The Immigration Issue https://t.co/GOJjoTlw0A +06/25/2018,Politicians,@SarahPalinUSA,"""...they're not welcome anymore anywhere."" https://t.co/1Hbueidh2K" +06/25/2018,Politicians,@SarahPalinUSA,Here's What The Media Won't Tell You About MS-13 Gang Members Posing As Minors To Cross The Border https://t.co/yIO8Ctya6I +06/25/2018,Politicians,@SarahPalinUSA,RED HOT: Obama DHS Sec. Jeh Johnson Says Border Detentions In 2014 Were 'Necessary' And Still Are https://t.co/IF1f2Zvpoi +06/25/2018,Politicians,@SarahPalinUSA,Leftists Blast Sarah Sanders For Confirming She Was Thrown Out of Restaurant https://t.co/pLrraCaHe2 +06/25/2018,Politicians,@SarahPalinUSA,Leftists Injure Border Patrol Agent During Attempt to Stop a Bus at Detention Center https://t.co/sDItSekdN0 +06/25/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/ftt4VgJQjQ +06/25/2018,Politicians,@SarahPalinUSA,Leftists Make 'Credible Threats' Against the Children of DHS Employees https://t.co/rflHzkVJWc +06/25/2018,Politicians,@SarahPalinUSA,Obama 'Ethics Chief' Claims Sanders Broke the Law After She Was Booted From Restaurant https://t.co/aPqa94fl1t +06/25/2018,Politicians,@SarahPalinUSA,"ANOTHER GOP Woman Politician Harassed By Leftists, This Time at the Movies https://t.co/IfbNVIKgxC" +06/24/2018,Politicians,@SarahPalinUSA,"Maxine Waters: Harass Trump Officials Anywhere You Find Them, Gas Station, Restaurant, Shopping Mall https://t.co/fgqJMLfkCN" +06/24/2018,Politicians,@SarahPalinUSA,What do you think? https://t.co/dBohLu9fnw +06/24/2018,Politicians,@SarahPalinUSA,Terrible. https://t.co/C1NeXgLoGz +06/24/2018,Politicians,@SarahPalinUSA,"DOJ Turns Over Some Documents After Gowdy Threat, But Report Still Not In Compliance https://t.co/B2lIrhy86H" +06/24/2018,Politicians,@SarahPalinUSA,Looks like some people are calling for a boycott now...Thoughts? https://t.co/zfkn46wuB8 +06/24/2018,Politicians,@SarahPalinUSA,Wow... https://t.co/EkBpbNUl5T +06/24/2018,Politicians,@SarahPalinUSA,The two candidates are competing for the newly redrawn 17th District. https://t.co/W1kupIdxrZ +06/24/2018,Politicians,@SarahPalinUSA,OUCH! https://t.co/KLMizwoAqG +06/24/2018,Politicians,@SarahPalinUSA,Liberals Just Came Up With A New Way To Crack Down On Guns And It's Infuriating https://t.co/qp5m8DX8CW +06/24/2018,Politicians,@SarahPalinUSA,"House Calls Peter Strzok's Bluff, Drops Subpoena On Him, And That's Not All https://t.co/eikl29Bg0W" +06/24/2018,Politicians,@SarahPalinUSA,People need to hear this. https://t.co/08e5g3A1ri +06/23/2018,Politicians,@SarahPalinUSA,WAIT...WHAT?? https://t.co/p3sEJxFEMy +06/23/2018,Politicians,@SarahPalinUSA,Fallout From Sanders' Visit: Restaurant Learns QUICKLY That They Probably Should Have Served Her https://t.co/QaNfXQawk6 +06/23/2018,Politicians,@SarahPalinUSA,Yikes. https://t.co/tt1AaIMGma +06/23/2018,Politicians,@SarahPalinUSA,'Angel Mom' Whose Son Was Killed By Illegal Alien Says Trump Saved Her From Suicide https://t.co/XoX6ZJ3IV8 +06/23/2018,Politicians,@SarahPalinUSA,"U.S. Marines Asks If Anyone Can Beat Them In This, It's Not What You Expect https://t.co/00GjsLMIpW" +06/23/2018,Politicians,@SarahPalinUSA,Sad... https://t.co/dbGT02URj7 +06/23/2018,Politicians,@SarahPalinUSA,"Imagine the outrage, and consequences, if this was a conservative - or Trump supporting - restaurant owner. https://t.co/Q3DQjNjE74" +06/23/2018,Politicians,@SarahPalinUSA,"Absolutely heartbreaking. They want to be heard, and President Trump is giving voice to their stories. https://t.co/sYR8iwV1r0" +06/23/2018,Politicians,@SarahPalinUSA,Our prayers for Katie Arrington and her friend. 🙏🏻 https://t.co/Wf2FJkAwFC +06/23/2018,Politicians,@SarahPalinUSA,AG Sessions Reveals Info About Disgraced FBI Official Strzok That We've Been Waiting A Long Time For https://t.co/3ZY0vgWP1C +06/23/2018,Politicians,@SarahPalinUSA,LINE CROSSED: Tom Arnold Vows He's Going To Stalk And Harass Barron At School https://t.co/qYz9XdlDDN +06/23/2018,Politicians,@SarahPalinUSA,Just...wow. https://t.co/gp23p1Gdef +06/23/2018,Politicians,@SarahPalinUSA,"Dem Candidate ARRESTED at Migrant Detention Center, Gets Brutal Reality Check from Border Patrol https://t.co/hHObzZjzEi" +06/22/2018,Politicians,@SarahPalinUSA,Annnnnnnd DONE! https://t.co/Vhn2krcLqy +06/22/2018,Politicians,@SarahPalinUSA,No holding Barack! https://t.co/GlKAhA3vXy +06/22/2018,Politicians,@SarahPalinUSA,Whoa...check it out: https://t.co/T15TuC0JC2 +06/22/2018,Politicians,@SarahPalinUSA,A new proposal to split the state has recently earned enough support to find its way to the November ballot box... https://t.co/RytSyChHf1 +06/22/2018,Politicians,@SarahPalinUSA,"On Summer Solstice ~ Slammin’ Salmon in Bristol Bay!🐟Thankful Piper’s attitude is the best😊 ~ in cold, rainy, windy… https://t.co/4LjnzqqQO3" +06/22/2018,Politicians,@SarahPalinUSA,Sounds like it was directed at the media... https://t.co/xMR21VrDpY +06/22/2018,Politicians,@SarahPalinUSA,House Just Passed Largest Bill EVER To Confront Opioid Crisis https://t.co/12uYH0t68P +06/22/2018,Politicians,@SarahPalinUSA,THIS IN: https://t.co/flgvySXMd3 +06/22/2018,Politicians,@SarahPalinUSA,Turns out it was all a massive lie....WOW. https://t.co/wn7q5Gm9Mv +06/22/2018,Politicians,@SarahPalinUSA,"""Remember their motto, RESIST! Ours is PRODUCE!"" https://t.co/YAglSUwQyK" +06/22/2018,Politicians,@SarahPalinUSA,"According to the poll, only 19% of registered voters favor catch-and-release while 46% support Trump’s executive or… https://t.co/gTByATpOP5" +06/22/2018,Politicians,@SarahPalinUSA,"BREAKING: Melania Defies Critics, Shows Up At the One Place Dems Swore She Never Would https://t.co/VLHsmakn4i" +06/22/2018,Politicians,@SarahPalinUSA,....... https://t.co/If01t8JrwO +06/22/2018,Politicians,@SarahPalinUSA,"Where Was Congress on IRS Scandal? + +How in the world did this take eight years? When the IRS comes knocking... https://t.co/jJ4lgeMuGm" +06/22/2018,Politicians,@SarahPalinUSA,American Airlines Demands Trump Not Use Its Planes for 'Separated Migrant Kids' — DHS Responds with a Vengeance https://t.co/eRCOvSeKTg +06/22/2018,Politicians,@SarahPalinUSA,Democrat Rep. Gives Mike Pence the Finger While Bragging About His 'Brotherly Love' https://t.co/yIHU4uSmLy +06/22/2018,Politicians,@SarahPalinUSA,"Juan Williams Defends Peter Fonda's Attack on Barron, Refuses to Say It Was Disgusting: Just Worded It 'Poorly' https://t.co/n5XFiX6PcS" +06/21/2018,Politicians,@SarahPalinUSA,Can't wait! https://t.co/LvklVkTs7l +06/21/2018,Politicians,@SarahPalinUSA,This is horrible! https://t.co/B1EoI9EROs +06/21/2018,Politicians,@SarahPalinUSA,Right on! https://t.co/UfOcZRv8Cn +06/21/2018,Politicians,@SarahPalinUSA,Just sad (and scary). The person who shared the picture of the sign on social media has reportedly received death t… https://t.co/cUZN4NC5uh +06/21/2018,Politicians,@SarahPalinUSA,Did you see this? https://t.co/pmcLucPgFd +06/21/2018,Politicians,@SarahPalinUSA,Sony Pictures just finished making a movie with Peter Fonda. But then they saw what he did to Barron Trump. Now the… https://t.co/E9yLqsfdcr +06/21/2018,Politicians,@SarahPalinUSA,"This democrat was the McCain/Palin ticket’s head honcho. + +Is it any wonder those running the 2008 campaign deemed… https://t.co/lToRZizLmj" +06/21/2018,Politicians,@SarahPalinUSA,"Just Now: Trump Proposes Border Security Solution, Hits GOP Over Filibuster Rule https://t.co/327EFEctWO" +06/21/2018,Politicians,@SarahPalinUSA,Happening! https://t.co/Jlpr5k44YE +06/21/2018,Politicians,@SarahPalinUSA,President Trump is reportedly looking to fulfill a conservative proposal from more than 20 years ago. https://t.co/dtUv8syXnz +06/21/2018,Politicians,@SarahPalinUSA,They Were Fed False Info! Evidence Now Shows FBI Altered Witness Reports https://t.co/B875AgwYK7 +06/21/2018,Politicians,@SarahPalinUSA,CNN Attempts to Shame Border Patrol Agent — He Turns the Tables and Leaves Host Speechless https://t.co/cBQxemLdb7 +06/21/2018,Politicians,@SarahPalinUSA,"Actor Breaks Silence After Melania Told Secret Service About His Threat to Kidnap, Cage Barron Trump https://t.co/qRtdx09nei" +06/20/2018,Politicians,@SarahPalinUSA,"Trump Finishes Speech, Walks Straight Over to American Flag, Then Let’s His True Patriot Come Out https://t.co/kiUlzgPlJX" +06/20/2018,Politicians,@SarahPalinUSA,Gotta love Texas! Classic. https://t.co/aBAsRYWGCD +06/20/2018,Politicians,@SarahPalinUSA,SICK. https://t.co/0QoXhaG1nW +06/20/2018,Politicians,@SarahPalinUSA,Report: Chuck Schumer Stands In The Way Of Republican Efforts To Fix Separations At The Border https://t.co/pulsT14Trf +06/20/2018,Politicians,@SarahPalinUSA,Definitely need more of this. Love it! https://t.co/4r7kmNabJ9 +06/20/2018,Politicians,@SarahPalinUSA,OUCH... https://t.co/m1cYlo9wOd +06/20/2018,Politicians,@SarahPalinUSA,FBI Refusing To Release Names Of 3 Other FBI Employees Caught Sending Anti-Trump Texts https://t.co/y6KPSZUOXS +06/20/2018,Politicians,@SarahPalinUSA,Oops... https://t.co/3MWp63uBuK +06/20/2018,Politicians,@SarahPalinUSA,Oh boy. https://t.co/SU2zW5VRQD +06/20/2018,Politicians,@SarahPalinUSA,An armed civilian took down a shooter after at least two people were shot at a Washington state Walmart. https://t.co/7nttBhqDki +06/20/2018,Politicians,@SarahPalinUSA,The American people are clearly sending the message that the Trump economy is a healthy one. https://t.co/rhHjamKcPn +06/20/2018,Politicians,@SarahPalinUSA,Must See: Mueller's Blundering Special Counsel Is Getting CLOBBERED In Court — MSM Ignoring All of It https://t.co/nPVI4PyADE +06/19/2018,Politicians,@SarahPalinUSA,BREAKING NEWS.... https://t.co/DqcmWssLEl +06/19/2018,Politicians,@SarahPalinUSA,"Border Official Fights Back, Slams Media For False Depiction of Detention Centers https://t.co/2AMeJwpQmP" +06/19/2018,Politicians,@SarahPalinUSA,"In light of recent info, what do you think? https://t.co/A4LtcRSbXi" +06/19/2018,Politicians,@SarahPalinUSA,Gowdy literally just gave one of his best speeches ever on the House floor. Stop whatever you're doing and watch th… https://t.co/lnhUNTu95c +06/19/2018,Politicians,@SarahPalinUSA,SHE'S TOAST: Merkel May Be Ousted from Office Next Week for 'Open-Door' Migrant Policy https://t.co/zuKazDgci4 +06/19/2018,Politicians,@SarahPalinUSA,Blast From The Past: James Woods Reminds Hillary That She Is NO Moral Authority https://t.co/qAqkwuc3HL +06/19/2018,Politicians,@SarahPalinUSA,Larry Elder: The 'xenophobe quiz'--Who said this about immigration? https://t.co/k88qGM4azI +06/19/2018,Politicians,@SarahPalinUSA,Uh oh... https://t.co/7odmzIZjIV +06/19/2018,Politicians,@SarahPalinUSA,"“As a Nation, we vow to never forget the millions of African Americans who suffered the evils of slavery.” - Presid… https://t.co/rqgasLSLLo" +06/19/2018,Politicians,@SarahPalinUSA,What in the world...What do you think? https://t.co/rhkqQBYIw0 +06/19/2018,Politicians,@SarahPalinUSA,They messed with the wrong couple... https://t.co/4zLKviMuq4 +06/19/2018,Politicians,@SarahPalinUSA,BREAKING: Investigation Opened Into Comey — Turns Out Leaking Classified Docs to Try to 'Take Down' Trump Was a Bad… https://t.co/hrGhcTNV6S +06/19/2018,Politicians,@SarahPalinUSA,Thought Sam Bee Calling Ivanka a 'C--t' Was Sick? Well Kathy Griffin Just Took It to a Whole New Level https://t.co/DtwlqSqOix +06/19/2018,Politicians,@SarahPalinUSA,No he certainly won’t... https://t.co/tfjgacxR7q +06/19/2018,Politicians,@SarahPalinUSA,He didn’t mince words... https://t.co/h5bouVJpe0 +06/19/2018,Politicians,@SarahPalinUSA,Did you see this?! https://t.co/1t5yG3VHXx +06/19/2018,Politicians,@SarahPalinUSA,Yikes... https://t.co/k8YNgGS5Xi +06/19/2018,Politicians,@SarahPalinUSA,Whoops... https://t.co/LR4E74zHWR +06/18/2018,Politicians,@SarahPalinUSA,This from Pope Francis: https://t.co/5JjCriz3ys +06/18/2018,Politicians,@SarahPalinUSA,What? https://t.co/CJ8nrViXy4 +06/18/2018,Politicians,@SarahPalinUSA,"IG Report: McCabe Used Strzok's Mistress To Monitor Clinton Case, Bypass Chain of Command https://t.co/sy0z4Wy31N" +06/18/2018,Politicians,@SarahPalinUSA,Thoughts? https://t.co/KLF9chRaUS +06/18/2018,Politicians,@SarahPalinUSA,"'It Breaks My Heart': Melania Trump, Laura Bush Weigh-In On Border Situation https://t.co/JsIbg51cXw" +06/18/2018,Politicians,@SarahPalinUSA,"Bristol Bay optimism as our commercial fishing season ramps up in the world’s largest salmon spawning grounds. + +“T… https://t.co/UtugVcCNJ2" +06/18/2018,Politicians,@SarahPalinUSA,Todd readying skiffs and kickers for Bristol Bay commercial fishing opener 🙏🏻🐟 Praying for a strong salmon run! The… https://t.co/FxLY1gMp0H +06/18/2018,Politicians,@SarahPalinUSA,Love this! https://t.co/NpFKs3RSyB +06/18/2018,Politicians,@SarahPalinUSA,Just Wow... https://t.co/M503fJw7OD +06/18/2018,Politicians,@SarahPalinUSA,Big news: https://t.co/JGbS7ZL83R +06/18/2018,Politicians,@SarahPalinUSA,"Happy Father’s Day to the dad who has more energy, work ethic and love of family than anyone we know ~ we love you… https://t.co/cmmJseCDYa" +06/18/2018,Politicians,@SarahPalinUSA,Happy Father’s Day ~ thank you for absolutely everything Dad! We ❤️ you lots! - SP +09/15/2017,Politicians,@BarneyFrank,"I am starting to wonder which side Trump is rooting for in 2018? +https://t.co/I508ROTVjp" +11/11/2015,Politicians,@BarneyFrank,"RT @CGDev: #LGBT Rights in the Developing World: What Can Washington Do? +RSVP to attend our event with @BarneyFrank on Nov 11: https://t.co…" +11/10/2015,Politicians,@BarneyFrank,"RT @CGDev: #LGBT Rights in the Developing World: What Can Washington Do? +RSVP to attend our event with @BarneyFrank on Nov 11: https://t.co…" +11/09/2015,Politicians,@BarneyFrank,"Honoring my mother, Elsie Frank for her public service in Elder affairs. Thank you @UMassBoston https://t.co/Su8GBMB8Kc" +11/09/2015,Politicians,@BarneyFrank,@McCormackGrad #mgsareyouready https://t.co/AHMHc5VdY9 +11/09/2015,Politicians,@BarneyFrank,RT @UMassBoston: .@UMassBoston honors former Congressman Barney Frank tonight at the State House! https://t.co/kpA0gMpGVk +10/26/2015,Politicians,@BarneyFrank,In New Mexico to shoot scenes for my cameo in @GravesEPIX @EpixHD +10/23/2015,Politicians,@BarneyFrank,RT @TheView: Did Biden pull out of the race because of Hillary? @BarneyFrank has some thoughts. WATCH: https://t.co/kgPzBaZyoI https://t.co… +10/23/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Opinion via @BarneyFrank: Wealthy allies have had a free ride for too long https://t.co/2i4lb0aOm9 | Getty https://t.co/Xp… +10/23/2015,Politicians,@BarneyFrank,Thanks to all the hosts @TheView this morning. #comparedtowhat #iconintoemoji #franktalk +10/23/2015,Politicians,@BarneyFrank,RT @whyyradiotimes: We round out Radio Times in Review w. @MartyMossCoane's interview w. @BarneyFrank on his life & career in politics - ht… +10/23/2015,Politicians,@BarneyFrank,"RT @SHO_PR: Today on @TheView, @BarneyFrank will chat about his new #Showtime doc ""Compared to What: The Improbable Journey of Barney Frank""" +10/19/2015,Politicians,@BarneyFrank,"Looking forward to Thursday, 10/23 when I'm back at Harvard https://t.co/QAzWmv9m6M @JFKJrForum @HarvardIOP" +10/18/2015,Politicians,@BarneyFrank,Mismatched fervor sways gun debate http://t.co/3wPQW3OD08 +10/14/2015,Politicians,@BarneyFrank,#DemDebate +10/14/2015,Politicians,@BarneyFrank,RT @katiecouric: Looking forward to having @BarneyFrank join our @YahooNews “After Dark” political party tonight! #DemDebate https://t.co/… +10/13/2015,Politicians,@BarneyFrank,"I’ll be joining @KatieCouric after the #DemDebate at 11pmET for highlights, analysis & more! @YahooNews! http://t.co/X16Y3A2dvo" +10/13/2015,Politicians,@BarneyFrank,http://t.co/0fwYBuvFe0 #princeton +10/11/2015,Politicians,@BarneyFrank,Don't forget to celebrate some success http://t.co/wKE4uSRy2Q +10/08/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Opinion via @BarneyFrank: The Republican Plague on Government http://t.co/aUSygXOm8h | AP Photo http://t.co/fAxK5xqMsu +10/05/2015,Politicians,@BarneyFrank,Questions without answers http://t.co/WzYRMLKxHP +10/02/2015,Politicians,@BarneyFrank,RT @nbroverman: It's a good day when @BarneyFrank calls & says his oped on #boehner is ready 4 @TheAdvocateMag Thankyou Congressman! http:/… +09/28/2015,Politicians,@BarneyFrank,Increasing federal spending on transportation is sound economic policy http://t.co/q1QojE6ur4 +09/26/2015,Politicians,@BarneyFrank,RT @politico: Column via @BarneyFrank: America’s religious masquerade http://t.co/X8CFPQHFKx | AP Photo http://t.co/dQ3hRvEA1Y +09/08/2015,Politicians,@BarneyFrank,"Email issue lingers, but it will fade #hrc2016 http://t.co/lmowaQobzC" +09/05/2015,Politicians,@BarneyFrank,RT @NEBookFair: Mark Your Calendars @BarneyFrank will be talking + signing copies of #Frank Thursday November 19 from 7-8PM #Icon https://… +09/03/2015,Politicians,@BarneyFrank,Why the U.S. Military Can’t Help in Syria http://t.co/IPX8wq1CKq +09/02/2015,Politicians,@BarneyFrank,"RT @TI_Boston: Save the Date: @BarneyFrank will be speaking at Temple Israel on Friday, October 16 during Qabbalat Shabbat. http://t.co/9Ws…" +08/31/2015,Politicians,@BarneyFrank,Predictions proven wrong still matter http://t.co/o7Gtt0NEAa +08/30/2015,Politicians,@BarneyFrank,"RT @redcarpetcrash: 'Compared To What: The Improbable Journey Of Barney Frank' Premieres Friday, October 23 On @SHO_Network http://t.co/IPy…" +08/27/2015,Politicians,@BarneyFrank,RT @CNBCClosingBell: Presidential candidates sounding off on the market volatility. @BarneyFrank & @larry_kudlow with their reaction to tha… +08/27/2015,Politicians,@BarneyFrank,RT @iah_unc: We're excited to announce former Congressman @BarneyFrank to deliver this year's Weil Lecture! Details --> http://t.co/QbF4zst… +08/20/2015,Politicians,@BarneyFrank,How Gay Marriage Is Like Legalizing Pot http://t.co/t31319JS1N +08/17/2015,Politicians,@BarneyFrank,These Republican candidates won't 'compromise' with voters http://t.co/knbRGoQnwC +08/13/2015,Politicians,@BarneyFrank,John Kasich’s Double-Edged Sword http://t.co/jir0k41H0l +08/07/2015,Politicians,@BarneyFrank,"@marcorubio plays GOP bait & switch, repeal Financial Reform so mega-banks can go back to pre-'08 ways #GOPDebate" +08/07/2015,Politicians,@BarneyFrank,"Kasich's central point against @HillaryClinton was he helped balance the budget, he forgot to mention he did this with Bill Clinton" +08/07/2015,Politicians,@BarneyFrank,Fox Reporters have been appropriately & intelligently tough in their questioning #GOPDebate +08/02/2015,Politicians,@BarneyFrank,Some deal is better than no deal with Iran. http://t.co/g9uiYZfcHe +07/27/2015,Politicians,@BarneyFrank,Political party differences aplenty http://t.co/OU72Tayp89 +07/24/2015,Politicians,@BarneyFrank,http://t.co/TQ7uo6qJAk +07/23/2015,Politicians,@BarneyFrank,Why Progressives Shouldn’t Support Bernie http://t.co/NOn5JmjGyl +07/21/2015,Politicians,@BarneyFrank,RT @HouseNewDems: @BarneyFrank says #DoddFrank has brought needed oversight to derivatives. Five years on DF has made our markets work bett… +07/21/2015,Politicians,@BarneyFrank,RT @HillaryClinton: Dodd-Frank was enacted 5 years ago today & has been under GOP attack ever since. As president I'll defend Wall Street r… +07/09/2015,Politicians,@BarneyFrank,"RT @POLITICOMag: Our newest columnist: former Rep. @BarneyFrank. His debut column: ""The Republican War on Wages"" http://t.co/HxQZf4M1vp" +06/27/2015,Politicians,@BarneyFrank,RT @POLITICOMag: Via @BarneyFrank: Justice Scalia is a homophobe http://t.co/pMJAXdvXRm | AP Photo http://t.co/wwRCeCVGqL +06/27/2015,Politicians,@BarneyFrank,Justice Scalia Is a Homophobe http://t.co/eKVEmyP3JE #LoveWins +06/26/2015,Politicians,@BarneyFrank,#lovewins +06/22/2015,Politicians,@BarneyFrank,"Same side, different reason http://t.co/iwfD7fJI9H" +05/20/2015,Politicians,@BarneyFrank,I just scored 0 points in @RulesTheGame and reached level 1! http://t.co/8qZk6FfDqB #RulesGameryrttt http://t.co/vkwXPMhue7 +05/20/2015,Politicians,@BarneyFrank,I just scored 0 points in @RulesTheGame and reached level 1! http://t.co/8qZk6FfDqB #RulesGamehjghhfgjieur http://t.co/0f4qWTvabk +05/20/2015,Politicians,@BarneyFrank,http://t.co/C14H4YE14y Looking forward to this event on Thursday. +05/17/2015,Politicians,@BarneyFrank,"RT @RiversideWDCPAC: ""We don't win what we don't fight for!"" @SenWarren at #CADem15 http://t.co/K87gzYTSdl" +05/14/2015,Politicians,@BarneyFrank,An open letter to Obama on trade http://t.co/At7A94WDIT via @BostonGlobe +05/08/2015,Politicians,@BarneyFrank,"Thursday, May 21, at the Coolidge Corner Theater (290 Harvard St, Brookline, MA). http://t.co/C14H4YE14y Looking forward to this event!" +05/04/2015,Politicians,@BarneyFrank,RT @CA_Dem: CADems are proud to welcome @SenWarren and @BarneyFrank to Convention. Sign the welcome card: http://t.co/nFHBSw6BJV http://t.c… +05/04/2015,Politicians,@BarneyFrank,http://t.co/55bV7tDeA2 +04/30/2015,Politicians,@BarneyFrank,"Thank you @Andy, @BravoWWHL & @MyTrainerBob #mazel" +04/30/2015,Politicians,@BarneyFrank,http://t.co/UcfPWICkHD +04/30/2015,Politicians,@BarneyFrank,Good descriptions @MyTrainerBob @BravoWWHL mazel +04/30/2015,Politicians,@BarneyFrank,RT @BravoWWHL: Let us be Frank - this is going to be a great show. It's @MyTrainerBob & @BarneyFrank at 11/10c! #WWHL http://t.co/7bjnT7F5tk +04/30/2015,Politicians,@BarneyFrank,RT @Andy: AWESOME COMBO! Tweet me Q's for @BarneyFrank and @MyTrainerBob - see you at 11!!! #WWHL +04/30/2015,Politicians,@BarneyFrank,Looking forward to a fun evening with @Andy at 11:00pm tonight on @Bravotv #WWHL +04/28/2015,Politicians,@BarneyFrank,Looking forward to @LateNightSeth tonight #LNSM +04/28/2015,Politicians,@BarneyFrank,Thank you @PennState for hosting The Great Debate http://t.co/WRPbdxPx1y +04/27/2015,Politicians,@BarneyFrank,http://t.co/wsV2KaMsux Netanyahus approach is misguided +04/08/2015,Politicians,@BarneyFrank,http://t.co/FQO3bxV2EC @92Y +04/07/2015,Politicians,@BarneyFrank,"RT @BrazosBookstore: Tonight! Come one, come all! @BarneyFrank will be here at 7PM to talk FRANK! @fsgbooks http://t.co/0pBUF55AXT http://t…" +04/06/2015,Politicians,@BarneyFrank,http://t.co/OtwATp16ss +04/04/2015,Politicians,@BarneyFrank,I will be at Books a Million in South Portland today from 2-4p doing a reading from my book and signing. Hope to see lots of Mainers today! +04/03/2015,Politicians,@BarneyFrank,RT @joekennedy: I was proud to #LIUB today for all those affected by autism #Congress4LIUB #WorldAutismAwarenessDay @autismspeaks http://t.… +04/02/2015,Politicians,@BarneyFrank,"RT @LiveWireRadio: | | | Next Broadcast | | | +PERMISSION TO SPEAK FRANKLY with: +@BarneyFrank +@aparnapkin +@joepug +Listen: http://t.co/onn…" +04/02/2015,Politicians,@BarneyFrank,"RT @SFGateAandE: We talk to @BarneyFrank, who's in town to discuss his new book: http://t.co/1wlJCFUVHX @cityartssf http://t.co/KUOqfqFkfP" +03/27/2015,Politicians,@BarneyFrank,"RT @RealTimers: As always, @BarneyFrank dropped some #RealTalk during his last #RealTime appearance. He's back @HBO tomorrow at 10pm! http:…" +03/24/2015,Politicians,@BarneyFrank,"RT @HarvardBooks: Tue at 7pm: @BarneyFrank presents his political memoir FRANK, cosponsored by @HarvardDems http://t.co/pZVCM299Ad http://t…" +03/21/2015,Politicians,@BarneyFrank,RT @MMFARadio: We're live today with an all new show! Today's guests: @rebeccavallas @BarneyFrank and @benjaminja and @LivKittel @WiseSoph … +03/20/2015,Politicians,@BarneyFrank,'Frightened' about Netanyahu's impact http://t.co/RcbzLoGVl2 via @usatoday +03/19/2015,Politicians,@BarneyFrank,Pull No Punches http://t.co/0TCExvsjMN via @dailybeast +03/19/2015,Politicians,@BarneyFrank,"RT @prattlibrary: TONIGHT! Writers LIVE! @BarneyFrank talks about his new book, Frank, 7pm, Central Library Main Hall http://t.co/qPyl6erqor" +03/18/2015,Politicians,@BarneyFrank,RT @bookbrag: .@BarneyFrank discusses FRANK at @SixthandI tonight at 7! http://t.co/VG8ec1eGvr @Politics_Prose @fsgbooks +03/18/2015,Politicians,@BarneyFrank,RT @GWmedia: @BarneyFrank & Paul Volcker to discuss the @federalreserveat #GWU on March 20: http://t.co/G8ub7MnM8O +03/18/2015,Politicians,@BarneyFrank,RT @MacmillanLib: Happy belated #BookBday to FRANK by @BarneyFrank! http://t.co/b0k7PQcKRn Out now from @fsgbooks. http://t.co/JZApRXU8AC +03/18/2015,Politicians,@BarneyFrank,http://t.co/yy11hb5Evc +03/17/2015,Politicians,@BarneyFrank,"RT @AdamLMedia: Former Congressman @BarneyFrank stopped by @TheStreet to discuss his new book, 'Frank' with @5GsOnTheStreet http://t.co/mI3…" +03/17/2015,Politicians,@BarneyFrank,"RT @fsgbooks: ""The best humor is offered up by the stupidity of your opponents."" @BarneyFrank on @nprfreshair http://t.co/25MsqNOSc8" +03/17/2015,Politicians,@BarneyFrank,RT @LeonardLopate: At noon: @BarneyFrank talks about his public battles and personal trials. http://t.co/PpPgefVkEo +03/17/2015,Politicians,@BarneyFrank,"RT @fsgbooks: ""Incrementalism is not the enemy of militancy; it is often the only effective means of expressing it."" –@BarneyFrank http://t…" +03/17/2015,Politicians,@BarneyFrank,"RT @BaselYHamdan: Watch: @barneyfrank joins @HuffPostLive to discuss his new memoir ""Frank"" http://t.co/0wMKvP17de" +03/17/2015,Politicians,@BarneyFrank,"RT @emheinzbina: .@BarneyFrank joins @HuffPostLive at 1030! A kindred spirit since his ""neatness isn't everything"" reelection campaign http…" +03/17/2015,Politicians,@BarneyFrank,Barney Frank's Journey From Closeted To An Openly Gay Member Of Congress http://t.co/37BGjSB94Q +03/17/2015,Politicians,@BarneyFrank,RT @nprfreshair: Barney Frank's Journey From Closeted To An Openly Gay Member Of Congress http://t.co/yu03lgTnbb +03/17/2015,Politicians,@BarneyFrank,"RT @nightlyshow: Tonightly: @Rachel__Nichols, @BarneyFrank, @robcorddry, and @Wale join Larry to talk about the money college athletes don'…" +03/12/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/mzbPF9OFPz +03/10/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/4gcIB7GwWk +03/09/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/Hju4aAo1lH +03/09/2015,Politicians,@BarneyFrank,CLICK HERE to support Compared to What? Barney Frank Documentary http://t.co/OPqFEHSwuS +03/02/2015,Politicians,@BarneyFrank,Snow calls attention to infrastructure - http://t.co/2JyLRJ7UL3 #mainesundaytelegram +02/27/2015,Politicians,@BarneyFrank,Looking forward to this event. http://t.co/SIJDhBcm96 +02/26/2015,Politicians,@BarneyFrank,RT @IOPfellows: Today at 4pm: @marthacoakley w/ @BarneyFrank will discuss #MarriageEquality & @kayhagan joins @JNSmall to talk #womeninthes… +02/24/2015,Politicians,@BarneyFrank,RT @BarneyFrankFilm: Join us in bringing back Barney Frank’s wit and wisdom to the American people. http://t.co/v9uWm7xBmO @BarneyFrankFi… +02/24/2015,Politicians,@BarneyFrank,If you miss Barney Frank’s wit and wisdom here’s a way to bring him back to the American people:... http://t.co/kAECYG4yzG +02/24/2015,Politicians,@BarneyFrank,https://t.co/U5g1WvigtK http://t.co/meTayxlpI5 +02/23/2015,Politicians,@BarneyFrank,Barney Frank Film--Where Your Money Goes http://t.co/C9sSUaAH1L +02/23/2015,Politicians,@BarneyFrank,Please watch--YOU can make a difference: http://t.co/fQiyEQ5oBi http://t.co/KANNU2qBGL +02/23/2015,Politicians,@BarneyFrank,Policing's problems can be fixed - http://t.co/Lo328hLzay #GoogleAlerts +02/16/2015,Politicians,@BarneyFrank,RT @BarneyFrankFilm: Across generations with @RepJoeKennedy & @BarneyFrank @freedomtomarry http://t.co/weIC9OcZ6J Join the Indiegogo http:… +02/16/2015,Politicians,@BarneyFrank,Barney Frank--Across the Generations http://t.co/B6AQFBzr65 +02/16/2015,Politicians,@BarneyFrank,Barney Frank--Across the Generations http://t.co/6JYqpiInje +02/16/2015,Politicians,@BarneyFrank,https://t.co/xXUyf41noI http://t.co/JTuMVWQhu3 +02/16/2015,Politicians,@BarneyFrank,https://t.co/xXUyf3JMxa http://t.co/fRLDXJwQ1V +02/09/2015,Politicians,@BarneyFrank,Balancing the need for protection versus human rights - http://t.co/MC7SHkiHML #GoogleAlerts +02/01/2015,Politicians,@BarneyFrank,Reacting to Republicans' speech reaction http://t.co/SpDM2MZWzO +01/21/2015,Politicians,@BarneyFrank,I am pleased to announce that I will attend the world premiere of a new documentary Compared to What? The... http://t.co/bcfkLTaeTT +01/21/2015,Politicians,@BarneyFrank,I am pleased to announce that I will attend the world premiere of a new documentary Compared to What? The... http://t.co/16wGfLR0e5 +01/19/2015,Politicians,@BarneyFrank,Muslim majority should do more to condemn violence - http://t.co/T1I3wa3Inn #GoogleAlerts +01/16/2015,Politicians,@BarneyFrank,RT @HillaryClinton: Attacking financial reform is risky and wrong. Better for Congress to focus on jobs and wages for middle class families. +01/15/2015,Politicians,@BarneyFrank,RT @jessemermell: #Brookline celebrates #MLK Day w/ an event at @thecoolidge. Keynote from @BarneyFrank. Mon. 4pm. Free. http://t.co/e2JS3A… +01/15/2015,Politicians,@BarneyFrank,A Strategy in the Fight Over Dodd-Frank: Go Big - http://t.co/9jd19Y1mmM #GoogleAlerts +01/12/2015,Politicians,@BarneyFrank,Unions key to income equality - http://t.co/PVWjzx9Wm6 #GoogleAlerts +12/22/2014,Politicians,@BarneyFrank,Financial reform: Still optimistic - http://t.co/7ISTQixZGp #GoogleAlerts +12/16/2014,Politicians,@BarneyFrank,Frank paints Obamacare foes with too broad a brush - http://t.co/5ZGdyUgE9q +12/06/2014,Politicians,@BarneyFrank,http://t.co/qJwi0iDJpt +12/02/2014,Politicians,@BarneyFrank,From http://t.co/Ru5LE6tvg2 http://t.co/7JOdUvqORy +11/24/2014,Politicians,@BarneyFrank,US cannot police the entire world http://t.co/ZewzHbABJL +11/08/2014,Politicians,@BarneyFrank,"RT @allinwithchris: Tonight: @BarneyFrank, @SCOTUSblog's Tom Goldstein, @RichardKimNYC, @SharylAttkisson #inners" +11/08/2014,Politicians,@BarneyFrank,"RT @SteveKornacki: On tomorrow's show, we'll talk over the fallout from Tuesday and what comes next with @BarneyFrank, @willcain and @KateN…" +10/27/2014,Politicians,@BarneyFrank,Policing the world not our job -no IOU's http://t.co/x4nuNASDkm +10/13/2014,Politicians,@BarneyFrank,Democrats merit credit for economy - http://t.co/82dByKQUV8 +10/06/2014,Politicians,@BarneyFrank,Obama shouldn't go it alone - http://t.co/PBHUsfFQ4Y +10/02/2014,Politicians,@BarneyFrank,RT @PolicyCast: Former MA Congressman @BarneyFrank makes the case for why experience counts in congress - http://t.co/GDZ5mzvLyZ +09/29/2014,Politicians,@BarneyFrank,Exempting auto dealers defies logic - http://t.co/rH4AKKVZWP #CFPB +09/24/2014,Politicians,@BarneyFrank,RT @allinwithchris: TONIGHT: Who? @AymanM @ChrisMurphyCT @ChrisVanHollen @mike_giglio @will_mccants @costareports @BarneyFrank #inners +09/22/2014,Politicians,@BarneyFrank,"Bombing Islamic State right call, wrong reason - http://t.co/973Xv90uYL" +09/18/2014,Politicians,@BarneyFrank,Marijuana Legalization Will Follow in Gay Marriage's Footsteps @bigthink http://t.co/LDaFSHfEcI +09/08/2014,Politicians,@BarneyFrank,"In VA health care crisis, government expanded http://t.co/lnXAjd1zFi" +09/03/2014,Politicians,@BarneyFrank,As a contributor to @CNBC here is my contribution. http://t.co/yhS50iG1iT +08/28/2014,Politicians,@BarneyFrank,"Check out The Scrum podcast I participated in today https://t.co/27DiKeuwhy +#WGBH" +08/14/2014,Politicians,@BarneyFrank,"RT @CNN: Join @BarneyFrank @Wildaboutmusic on http://t.co/hI53Eamx1F as you watch #TheSixtiesCNN, 9p ET http://t.co/MfkA7twXoL http://t.co/…" +08/04/2014,Politicians,@BarneyFrank,Wishing we could fix hot spots doesn't make it so http://t.co/ouU8RUdPP2 +07/29/2014,Politicians,@BarneyFrank,http://t.co/gmBkPFCEIn +07/24/2014,Politicians,@BarneyFrank,RT @DMHopewell: @BarneyFrank among other panelists after watching #FreedomSummer http://t.co/ympB24HJLX +07/23/2014,Politicians,@BarneyFrank,RT @FSCDems: Watch former Chairman @BarneyFrank testify on the impacts of #DoddFrank. LIVE HERE -> http://t.co/bs6YKWo8mW +07/22/2014,Politicians,@BarneyFrank,Assessing the Impact of the Dodd-Frank Act Four Years Later. #testifying 23 July 2014 +07/21/2014,Politicians,@BarneyFrank,RT @FSCDems: **Media Advisory** - Ranking Member @MaxineWaters announces @BarneyFrank to testify on namesake Law. http://t.co/fm3DJ9IGkc #… +07/14/2014,Politicians,@BarneyFrank,2016 Elections... http://t.co/cdVaw6wqul +06/17/2014,Politicians,@BarneyFrank,"RT @AriMelber: On @TheLastWord at 10: + +@GovHowardDean on Iraq +Rev Barber on Moral Monday +@BarneyFrank on ENDA +@DavidFrum on GOP race +D Gro…" +06/16/2014,Politicians,@BarneyFrank,VA suffering mostly from inadequate funding http://t.co/lWGgz5tnpi +06/13/2014,Politicians,@BarneyFrank,"RT @allinwithchris: ""What they're talking about is the *indefinite occupation* of Iraq"" - @BarneyFrank #inners" +06/09/2014,Politicians,@BarneyFrank,"""I spoke w/ @ChrisDStedman at @RNS about my @americnhumanist award & the challenges facing LGBT people today: http://t.co/a2wa3Hm1qm""" +06/09/2014,Politicians,@BarneyFrank,Gay Marriage is now business as usual http://t.co/vwbBZiaVKo +06/02/2014,Politicians,@BarneyFrank,It's time to stand up to Thai regime http://t.co/MyHvXyLz1E +05/23/2014,Politicians,@BarneyFrank,RT @MassNAHRO: Fmr Congressman Frank Addresses Public Housing Officials at Conference @BarneyFrank http://t.co/jGnwJflNRZ http://t.co/pgBGH… +05/15/2014,Politicians,@BarneyFrank,RT @jstreetdotorg: .@BarneyFrank says @Conf_of_Pres' rejection of J Street is a mistake: http://t.co/Qm1IK6q6e7 +05/01/2014,Politicians,@BarneyFrank,http://t.co/JkiNTfelPb +04/30/2014,Politicians,@BarneyFrank,Looking forward to @LateNightSeth tonight on @NBC - 12:35am @sethmeyers @PackCreekFilms #ComparedToWhat +04/30/2014,Politicians,@BarneyFrank,http://t.co/0PUUY362VV +04/27/2014,Politicians,@BarneyFrank,#TFF2014 http://t.co/D0beYsvvOd +04/27/2014,Politicians,@BarneyFrank,"""Compared to What? The Improbable Journey of Barney Frank' #TFF2014" +04/25/2014,Politicians,@BarneyFrank,RT @LeonardLopate: Now: @BarneyFrank talks about his 30 years in the House and being the first openly gay congressman http://t.co/4lE1o20uRH +04/24/2014,Politicians,@BarneyFrank,"RT @HarvardIOP: .@BarneyFrank & @chrisdodd will disucss the passage of Dodd-Frank, the bill that notably changed financial regulation http:…" +04/22/2014,Politicians,@BarneyFrank,RT @PackCreekFilms: @BarneyFrank @TribecaFilmFest @ABFalecbaldwin +04/09/2014,Politicians,@BarneyFrank,RT @rollcall: Forthcoming @BarneyFrank Documentary Aims to Inspire: http://t.co/8Wers5dTmv +03/17/2014,Politicians,@BarneyFrank,"@TriBeCaFilmFestival ""Compared to What: The Improbable Journey of Barney Frank"" http://t.co/S9ajmgR8O2 #TFF2014" +03/12/2014,Politicians,@BarneyFrank,#LGBTequalityworldwide http://t.co/SmjiiZozDD +03/10/2014,Politicians,@BarneyFrank,"https://t.co/r5kQ4oOz1W +#lefthandedgayjew" +03/04/2014,Politicians,@BarneyFrank,RT @montalvo_d: Did markets make #Putin blink? Will lawmakers ignore #Obama budget? @BarneyFrank joins @SquawkStreet 10a ET. +02/24/2014,Politicians,@BarneyFrank,@maddow tonight @ 9:00 to discuss Defense Secretary Chuck Hagel's proposal to shrink the Army to it's smallest size in 74 years +02/19/2014,Politicians,@BarneyFrank,RT @OutLeadership: Thank you @BarneyFrank for your nomination @LiaParifax @hudsonism @AthleteAlly in @VanityFair Hall of Fame. We are so pr… +02/18/2014,Politicians,@BarneyFrank,Looking forward to @SquawkStreet this morning to discuss the US decision to allow banks to do business with licensed Pot Shops @CNBC +02/17/2014,Politicians,@BarneyFrank,Religions leaders deserve some blame for stirring up strife http://t.co/8Vc4sIBsur +02/13/2014,Politicians,@BarneyFrank,@vailsymposium today to speak #aftertheshock +02/03/2014,Politicians,@BarneyFrank,@CNBC @10:30est to discuss @JanetYellen #newFedChair +01/31/2014,Politicians,@BarneyFrank,RT @RichardLui: Join us @msnbc @jansingco 10aET w/ @mkraju @ElaheIzadi @MariaTeresa1 @BarneyFrank @sharon_epperson @RevJoeWatkins @KatyTurN… +01/30/2014,Politicians,@BarneyFrank,"RT @PoliticsNation: Obama’s been accused of punishing millionaires, but @BarneyFrank joins us next to discuss what the fight for fairness i…" +01/30/2014,Politicians,@BarneyFrank,"Tune in to @PoliticsNation this evening, we'll be discussing Obama's fight for fairness." +01/06/2014,Politicians,@BarneyFrank,Democrats don't owe @RepPaulRyan anything for paying debts he voted to incur. http://t.co/j6N3vZ1QDU +12/16/2013,Politicians,@BarneyFrank,Right wing politicians correct record: their gateway to cocaine was alcohol not marijuana. Prohibit what? http://t.co/lt7OfLInxg +12/08/2013,Politicians,@BarneyFrank,How can 100 bil $ more in Afghanistan tll 2024 do what 600 bil $ since 2003 hasn't done? #worstobambadecision http://t.co/fAeOrlloCu +11/25/2013,Politicians,@BarneyFrank,Money for war or money for health care...seems like an obvious choice #admityourmistakes http://t.co/zFaTdPhVCN +11/18/2013,Politicians,@BarneyFrank,Karnak rtns: Answer: Barney Frank & Iraqi weapons of mass destruction-Question: Name 2 things Dick Cheney lies about http://t.co/rlpuJFymEw +11/14/2013,Politicians,@BarneyFrank,"RT @UMassD: @BarneyFrank coming to #UMassD. Public Lecture ""How to Break the Stalemates: Political & Economic"" @Carney_Library, Nov. 21, 2p…" +11/12/2013,Politicians,@BarneyFrank,Rep. Michaud's announcement shows confidence in Mainers' good sense. http://t.co/BUbfodf9qo +11/04/2013,Politicians,@BarneyFrank,#progressivepolitics http://t.co/jdKTKjmHT4 +10/31/2013,Politicians,@BarneyFrank,"RT @FinancialCmte: In the 112th Congress, #HR992 was HR1838. Here’s what @BarneyFrank & 17 others @FSCDems said about it then, #inners. htt…" +10/31/2013,Politicians,@BarneyFrank,Way to go Red Sox! +10/30/2013,Politicians,@BarneyFrank,"RT @allinwithchris: TONIGHT: Who? @RepLanceNJ7, @cjoh, @DelegateDonna, @wendellpotter, @BarneyFrank, @Joelsberg, @FoodBank_Prez #inners" +10/29/2013,Politicians,@BarneyFrank,RT @CNBCClosingBell: LIVE NOW: Co-authors of Dodd-Frank @SenChrisDodd & @BarneyFrank. Tune in! +10/29/2013,Politicians,@BarneyFrank,"RT @CNBCClosingBell: #mustwatch at 3p ET @aetna's @mtbert, fmr SEC Mary Schapiro, @SenChrisDodd, @BarneyFrank, fmr US Treas Secy Paulson, @…" +10/29/2013,Politicians,@BarneyFrank,RT @UChiPolitics: .@BarneyFrank: Bad public policy to fine banks for doing what they were pressured to do. #fiveyearslater +10/28/2013,Politicians,@BarneyFrank,RT @WMESpeakers: @BarneyFrank will be LIVE at the Hyatt Regency Boston @HRBoston @ 4:30 pm! #DontMissIt #WMEspeakers +10/21/2013,Politicians,@BarneyFrank,"RT @allinwithchris: TONIGHT: Who? @BarneyFrank, @MichaelEDyson, @_ericstern, @evanasmith, @salamishah, @rtraister What? http://t.co/K9GhrYx…" +10/21/2013,Politicians,@BarneyFrank,"The Tea Party despises government, but likes what it does. http://t.co/NJlpMlIW9F" +10/17/2013,Politicians,@BarneyFrank,"Lesson to GOP: When deciding to drive through an obstacle course, don't put the vehicle on 'Cruz' control #driversTed" +10/16/2013,Politicians,@BarneyFrank,"RT @PoliticsNation: Boehner admits defeat @6 w/ @SenSanders, @KarenBassTweets, @BarneyFrank, @janschakowsky, @JamalSimmons, @HuntsmanAbby &…" +10/15/2013,Politicians,@BarneyFrank,Nobel Economy prize to Robert Shiller is entirely deserved-a man who combines great intellectual force w/ a strong sense of public morality +10/14/2013,Politicians,@BarneyFrank,"? to Boehner, why does Pres have 2 bribe u 2 let gov pay debts u voted to incur-Iraq war, tax cuts for wea;thy, etc ? http://t.co/I7t0exLZMJ" +10/11/2013,Politicians,@BarneyFrank,"@annakooiman vicious ""Muslim museum"" smear of @BarackObama is despicable, even for Fox. Her off-air, half-assed apology is contemptible." +10/07/2013,Politicians,@BarneyFrank,Brave Patriots needed again-sane Repbulicans w/ courage to dump Tea Party over board. http://t.co/EBJlw4HC9P +10/04/2013,Politicians,@BarneyFrank,Vote Democratic. We're not perfect-but they're NUTS! +10/03/2013,Politicians,@BarneyFrank,"GOP strategy for letting government function: Red Rover, Red Rover can poor children come over?" +07/02/2018,Politicians,@DavidCameron,"RT @tahkion: i made a breakthrough. it turns out juggalo makeup defeats facial recognition successfully. if you want to avoid surveillance,…" +07/02/2018,Politicians,@DavidCameron,@BrocrusherTCGG The 14th +07/02/2018,Politicians,@DavidCameron,Bought myself a big new toy that takes six D batteries. https://t.co/I0sBAyG2lL +07/01/2018,Politicians,@DavidCameron,RT @gawanmac: This is a thread about what my friend found in her attic. #LGBThistory https://t.co/BxUH6r9Eck +07/01/2018,Politicians,@DavidCameron,@rebeccawatson except when your grand kids find you dope ass cast iron pans that are in A+ condition. +06/30/2018,Politicians,@DavidCameron,RT @UnburntWitch: https://t.co/rAyB7admXl +06/30/2018,Politicians,@DavidCameron,"Not sure if the sign reading ""Walls didn't work in Jurassic Park Either"" send the message you think it does dude. #KeepFamiliesTogetherMarch" +06/30/2018,Politicians,@DavidCameron,@SamanthaZero Capitalism Royale +06/30/2018,Politicians,@DavidCameron,@SamanthaZero 100 dollar bills parachute out of your wallet and onto Gabes private island. Only weapons are knives. +06/30/2018,Politicians,@DavidCameron,RT @dasharez0ne: FUCK ICE. SHUT ER DOWN https://t.co/IcW0TgHYau +06/30/2018,Politicians,@DavidCameron,@Danielleri Hydrate!!! +06/28/2018,Politicians,@DavidCameron,@radiatoryang Fuji tho +06/28/2018,Politicians,@DavidCameron,"RT @APTNNews: This little dancer made a big impact last week on #NationalIndigenousPeoplesDay in Camrose, Alberta. + +Two-year-old Albert Aps…" +06/28/2018,Politicians,@DavidCameron,"RT @motherboard: Science proves Wario is the best ""Mario Kart"" character https://t.co/OvmYpQpegj https://t.co/H8lIAYpYTM" +06/28/2018,Politicians,@DavidCameron,RT @cabel: exclusive footage of the democratic party remaining civil https://t.co/9IrjH5dpU5 +06/28/2018,Politicians,@DavidCameron,Hey. Know what? Lemonade is still great. 👑🐝 +06/28/2018,Politicians,@DavidCameron,RT @stevenspohn: If you want Nintendo to allow @AbleGamers and our allies to help improve the accessibility of these iconic videogame world… +06/28/2018,Politicians,@DavidCameron,RT @DankDuneMemes: https://t.co/bJ72t0sS7o +06/28/2018,Politicians,@DavidCameron,"@legobutts The quality has gone down hill in recent years. I've got older shirts that are fine, and newer shirts wh… https://t.co/dSiWdGMoL2" +06/27/2018,Politicians,@DavidCameron,RT @mikerugnetta: Maybe theyll seat Merrick Garland out of civility +06/27/2018,Politicians,@DavidCameron,"RT @mcclure111: Let Anthony Kennedy be always remembered as the man who legalized ethnic cleansing, then dashed out the door as quickly as…" +06/27/2018,Politicians,@DavidCameron,RT @austin_walker: Fuckkkkk offfff https://t.co/w1GmNQ2VEc +06/27/2018,Politicians,@DavidCameron,It keeps getting better https://t.co/CUoxuPLzGo +06/27/2018,Politicians,@DavidCameron,RT @tholzerman: Abolish ICE https://t.co/qQkY3UcrHE +06/27/2018,Politicians,@DavidCameron,@aegies There is one of these for Portland as well. Looks like Stargate symbols. +06/27/2018,Politicians,@DavidCameron,"RT @ava: In defiance of Trump, a federal judge in San Diego appointed by Bush Sr. has ruled that all children currently held must be reunit…" +06/27/2018,Politicians,@DavidCameron,@BrocrusherTCGG it is like it was made for you. https://t.co/G29WRd0d7d +06/27/2018,Politicians,@DavidCameron,RT @bendreyfuss: The video of Alexandria Ocasio-Cortez realizing she won is my favorite thing in the whole world https://t.co/CJuc5DnlLA (v… +06/27/2018,Politicians,@DavidCameron,@mudron A high action episode +06/27/2018,Politicians,@DavidCameron,RT @darrylayo: I was polite all day yesterday and baby jails still exist. +06/27/2018,Politicians,@DavidCameron,"RT @jg_environ: I was skeptical until I verified these clippings at @nytimes. In 1934, influential religious figures in US argued that Germ…" +06/27/2018,Politicians,@DavidCameron,RT @chainsawsuit: decorum https://t.co/Klwjsq8j2N https://t.co/VP63Te7kmN +06/26/2018,Politicians,@DavidCameron,@michael_bodden Don't bring me in on this. I've got my own problems. +06/25/2018,Politicians,@DavidCameron,RT @patrickklepek: I couldn't stop nodding my head while reading this very powerful piece. https://t.co/VbNWJs70fW +06/25/2018,Politicians,@DavidCameron,"RT @KivaBay: ""Let republicans eat in peace!"" is always a weird thing to say but especially when they're in the process of dismantling SNAP" +06/24/2018,Politicians,@DavidCameron,"“Kids are so vulgar these days."" + +Great-great-great-Grandparents : https://t.co/HImREDXKHw" +06/24/2018,Politicians,@DavidCameron,"RT @Abolish_ICE_Now: This is Josephine County Jail. It holds immigrants in detention at 1901 Northeast F Street, Grants Pass, OR. Its capac…" +06/24/2018,Politicians,@DavidCameron,"RT @Abolish_ICE_Now: This is Northern Oregon Correctional Facility. It holds immigrants in detention. It is at 211 Webber Road, The Dalles,…" +06/23/2018,Politicians,@DavidCameron,RT @pilky: A pharmacist should only be able to deny you a prescription for medical or legal reasons. If you have ethical problems go find a… +06/23/2018,Politicians,@DavidCameron,RT @patrickklepek: hell yeah https://t.co/ZmSrnmRwrJ +06/22/2018,Politicians,@DavidCameron,RT @Ada_Porg: When you first joined twitter vs now https://t.co/1jXrYtJE8M +06/22/2018,Politicians,@DavidCameron,@JoshOG Did your old one break? +06/20/2018,Politicians,@DavidCameron,@randygdub @saladinahmed Also you don't half to doc Trump voters because they never shut up about it +06/20/2018,Politicians,@DavidCameron,God this is literally in my back yard. https://t.co/NMCyAlxbO0 +06/20/2018,Politicians,@DavidCameron,"RT @Chloe0Thornton: YALL PLEASE HELP I NEVER ASK FOR ANYTHING IMMA ADOPT A KITTEN I JUST NEED 60,000 RETWEETS https://t.co/T2v49R69KH" +06/20/2018,Politicians,@DavidCameron,RT @TheCheekyGinger: https://t.co/HNHSBspJNz +06/20/2018,Politicians,@DavidCameron,@mudron or a goofy butt burger +06/19/2018,Politicians,@DavidCameron,RT @meetissai: TLに流れてきた二足の猫が可愛かったので粘土で再現してみました https://t.co/RitwZfPZ1X +06/19/2018,Politicians,@DavidCameron,RT @redford: i love pictures of cute dogs! like and share if you agree https://t.co/UkLqHgRRna +06/19/2018,Politicians,@DavidCameron,@patrickklepek my mom was obsessed with Dr. Mario on Gameboy. She would start at level 20 and play for hours. +06/19/2018,Politicians,@DavidCameron,@waypoint https://t.co/goA2g27oAz +06/18/2018,Politicians,@DavidCameron,"RT @EricaJoy: Friends who work for @Microsoft, + +FIGHT THIS. Make the biggest noise imaginable about it. + +Don't fall for the ""all companies…" +06/16/2018,Politicians,@DavidCameron,"hmmm + +https://t.co/f2nS4eZDrJ" +06/15/2018,Politicians,@DavidCameron,RT @CBR: REPORT: Jordan Peele Wants to Reboot #Gargoyles as a Movie https://t.co/kdxxW2iakb https://t.co/5s8up8hOiv +06/14/2018,Politicians,@DavidCameron,A kid's movie about bull fighting is super fucked up. +06/14/2018,Politicians,@DavidCameron,RT @RockLeeSmile: 100 Battle Royale developers drop into a court room... +06/13/2018,Politicians,@DavidCameron,@BossFightBooks https://t.co/dAAsCfbC8V +06/13/2018,Politicians,@DavidCameron,@The_Katbot Single player modes +06/13/2018,Politicians,@DavidCameron,RT @inechi__: RT for a chance to win 1 Magic Eyes Hat from Gatosaurio 👀 https://t.co/6MQ4OKL768 👀 They're magic 'cus the eyes glow in the d… +06/13/2018,Politicians,@DavidCameron,"RT @motherboard: Science proves Wario is the best ""Mario Kart"" character https://t.co/OvmYpQpegj https://t.co/ZOO750cc62" +06/12/2018,Politicians,@DavidCameron,RT @daresaypj: Bitch i am S C R E A M I N G https://t.co/GkZhweoQXA +06/11/2018,Politicians,@DavidCameron,@YourBoy_Moe @frytup @DanRyckert @alex_navarro Dishtopia. Now available at Dominos. +06/11/2018,Politicians,@DavidCameron,@frytup @DanRyckert @alex_navarro ...no... +06/11/2018,Politicians,@DavidCameron,RT @austin_walker: Fuck up nazis with your friends. And also do that in video games. +06/11/2018,Politicians,@DavidCameron,This is perfectly dumb. https://t.co/VoReeFMzug +06/10/2018,Politicians,@DavidCameron,@waypoint https://t.co/tTL9dziuo2 +06/10/2018,Politicians,@DavidCameron,RT @Darnn: russian dune cover https://t.co/DwsOu6kEYR +06/10/2018,Politicians,@DavidCameron,We are the demons https://t.co/7Yzgeb9EAM +06/10/2018,Politicians,@DavidCameron,@MrPope Miso proud of you +06/09/2018,Politicians,@DavidCameron,"Made home made butter, then used the left over buttermilk to make waffles. Best. Breakfast. Ever." +06/08/2018,Politicians,@DavidCameron,Fuck https://t.co/BZYp7dkb6P +06/07/2018,Politicians,@DavidCameron,@BrocrusherTCGG Yeah but how much store credit do you really need at a plaid? +06/07/2018,Politicians,@DavidCameron,My hairy fucking leg in a hammock. https://t.co/wuMtEYqAkr +06/06/2018,Politicians,@DavidCameron,"@BrocrusherTCGG ""Siri, search the web for MK-Ultra""" +06/05/2018,Politicians,@DavidCameron,@NerdGerhl Stream World Dig 2 +06/05/2018,Politicians,@DavidCameron,"RT @Ocasio2018: My campaign: + +- Triggered the *1st primary in 14 years* in NY-14 +- Is surging in a grassroots campaign against a powerful a…" +06/05/2018,Politicians,@DavidCameron,"RT @DiscordianKitty: Sir Isaac Newton never showed interest in women, but had a very close, personal relationship with a man, which, when i…" +06/04/2018,Politicians,@DavidCameron,@VerizonSupport I found a smashed up phone on the street. If I take it to a local Verizon store will they be able t… https://t.co/C7GueyKUMJ +06/04/2018,Politicians,@DavidCameron,@xoxogossipgita Do you have a camera in my home? +06/04/2018,Politicians,@DavidCameron,@JustinMcElroy @patrickklepek @VinnyCaravella Whoa check out this FMV game coming to Switch soon. Looks like Her St… https://t.co/W8QHmC8sIV +06/04/2018,Politicians,@DavidCameron,Watching old seasons of TV is kind of crazy because of how long they are. In the era of Netflix and their 10 episod… https://t.co/epQijcDOv4 +06/04/2018,Politicians,@DavidCameron,"In order to be pardoned, you have to be guilty of a crime." +06/04/2018,Politicians,@DavidCameron,"Got a Nintendo Switch over the weekend. The games that I ordered don't show up for another few days, but I download… https://t.co/mwQns5h5Xf" +06/04/2018,Politicians,@DavidCameron,RT @Cacophanus: Japanese ramen adverts are now a bit...intense. https://t.co/yCiKfqmdrG +06/04/2018,Politicians,@DavidCameron,@BrocrusherTCGG Even worse +06/04/2018,Politicians,@DavidCameron,Something crazy about police showing up to an anti police brutality protest in full riot gear. Makes me tired. +06/04/2018,Politicians,@DavidCameron,@typicalspoon Yeah that keeps popping up on mine as well. Considering deleting the post of mine so it goes away. +06/04/2018,Politicians,@DavidCameron,RT @Pdx_resistance: Please Share: @PortlandPolice telling violent alt-right fascists that they have probable cause to arrest them but won't… +06/03/2018,Politicians,@DavidCameron,"RT @TimesHero: People who care more about money for themselves *right now* than human rights, long term environmental and fiscal sustainabi…" +06/03/2018,Politicians,@DavidCameron,RT @Kekeflipnote: 🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐱🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥🐥… +06/03/2018,Politicians,@DavidCameron,My router just died. Guess it is good to keep a spare sitting around. +06/03/2018,Politicians,@DavidCameron,"There is a ton of stuff on the Switch eShop, but I wasn't expecting fetish modeling. https://t.co/6dX8McKoyR" +06/02/2018,Politicians,@DavidCameron,RT @dasharez0ne: https://t.co/cYuHnuG2G2 +06/02/2018,Politicians,@DavidCameron,@Sonicdude2355 @sfc_moogle It didn't have a network connection or the Satellite tuners. +06/01/2018,Politicians,@DavidCameron,@fullbright @mossmouth I am so hype for this +05/31/2018,Politicians,@DavidCameron,RT @Malala: Hello from the other side 😳 @elonmusk https://t.co/pRTnyptZ1N +05/31/2018,Politicians,@DavidCameron,@mcclure111 Maybe they'll give you asylum +05/30/2018,Politicians,@DavidCameron,@plex Missed that. Thanks. +05/30/2018,Politicians,@DavidCameron,"@plex Hey, feature request for the new Podcast feature.Being able to import an OPML list of my subscriptions from m… https://t.co/cw3VAuPw5V" +05/30/2018,Politicians,@DavidCameron,This is 100% my shit. https://t.co/s3lFn6GvzR +05/30/2018,Politicians,@DavidCameron,RT @EliBraden: Roseanne puts the “Ambien” in “I am bein’ racist” +05/30/2018,Politicians,@DavidCameron,"With very little work and a few extra special effects ""The Hitman's Bodyguard"" could be a Nick Fury / Deadpool prequel story." +05/30/2018,Politicians,@DavidCameron,@Dixavd @carolynmichelle I think it took 3-6 months for Bank support to make it into Sun/Moon +05/30/2018,Politicians,@DavidCameron,"@Dixavd @carolynmichelle Pokemon bank is $5 a year, and I'd hope that they would bring it to switch so you can brin… https://t.co/VJKTCd4aIg" +05/30/2018,Politicians,@DavidCameron,RT @NPRinskeep: Hey thanks for listening. My job is not to be “positive” or “negative” but to tell true stories. Granted we may miss a stor… +05/30/2018,Politicians,@DavidCameron,RT @carolynmichelle: ❤️❤️❤️ https://t.co/bmFMYj8ke7 +05/29/2018,Politicians,@DavidCameron,RT @sirosenbaum: btw the reason little girls get obsessed with princesses is bc that is the only role in which girls are protagonists +05/29/2018,Politicians,@DavidCameron,"RT @HoarseWisperer: ABC didn’t fire Roseanne for being a racist. + +She was always a racist. + +ABC fired her because she wouldn’t keep her r…" +05/29/2018,Politicians,@DavidCameron,RT @vriGOpzvmMRE5Dv: 『ドンッ』 https://t.co/N9CUXBfIZn +05/29/2018,Politicians,@DavidCameron,RT @MIDImyers: whoops almost forgot to tweet today about the incredible new album that a select number of cool people (SOON TO INCLUDE YOU?… +05/28/2018,Politicians,@DavidCameron,@UnburntWitch Huh +05/28/2018,Politicians,@DavidCameron,"RT @maltyhops: retweet if you spot your kink: +-bondage +-feet +-role-play +-every single ice agent stripped down and covered in honey next to…" +05/28/2018,Politicians,@DavidCameron,RT @_michface: https://t.co/ScY3tFLaA7 +05/27/2018,Politicians,@DavidCameron,RT @ScottHech: “Prison bus for babies” in ICE detention. Look. At. This. https://t.co/A83DILg28Z +05/27/2018,Politicians,@DavidCameron,RT @gabrielamadej: mood https://t.co/QyTgxVlijE +05/27/2018,Politicians,@DavidCameron,"But then you look at this story out of Nebraska, where 118 pounds of Fentanyl were seized, and it is a wonder you d… https://t.co/rAo7jIs5MC" +05/27/2018,Politicians,@DavidCameron,"Two stories that jumped out at me today. First, shell fish near Seattle test positive for Opioids. Not a surprise c… https://t.co/jWYiH5z0JG" +05/26/2018,Politicians,@DavidCameron,RT @conorsen: There are 4 living men left who have walked on the moon. The youngest is 82. https://t.co/CutflsIBos +05/26/2018,Politicians,@DavidCameron,@HCJustinn are you going to put Bloodborne up on YouTube? +05/26/2018,Politicians,@DavidCameron,@mikeyface Anything in a box +05/25/2018,Politicians,@DavidCameron,Found a phone in the street. Screen totally smashed. Wondering how to find the owner. +05/25/2018,Politicians,@DavidCameron,RT @pcgamer: Three men involved in a swatting that led to the death of a Kansas man are now facing federal charges https://t.co/c0J5xsW7hj… +05/25/2018,Politicians,@DavidCameron,@aegies But I really want a switch noooooooow +05/25/2018,Politicians,@DavidCameron,RT @willkirkby: sorry not sorry https://t.co/4E57gIj4dw +05/25/2018,Politicians,@DavidCameron,"RT @ryanlcooper: tired: abolish ICE +wired: prosecute ICE + +https://t.co/xAM5t4eeXE" +05/24/2018,Politicians,@DavidCameron,"@TeamYouTube @jpm_507 Hey this is a really bad and annoying way of displaying videos. When I sub to a channel, I ex… https://t.co/0oD0e4UiH1" +05/24/2018,Politicians,@DavidCameron,@waltdwilliams An IMAX documentary about Beavers. I was sitting on the far edge of the big dome theater at the Oreg… https://t.co/YAn2oGk11W +05/24/2018,Politicians,@DavidCameron,"RT @uhshanti: GRIMES AND ELON MUSK, NOW THERE'S A UNION WORTH BUSTING HEYOOO UP TOP" +05/24/2018,Politicians,@DavidCameron,@Danielleri It has three of my favorite Dark Souls boss fights in it. +05/24/2018,Politicians,@DavidCameron,"RT @coolranchzaku: honestly it's extremely funny that Grimes was like ""my bf has NEVER UNION BUSTED!!!!!"" and within 36 hours he literally…" +05/24/2018,Politicians,@DavidCameron,This read like an Onion article. https://t.co/kEl50ad9j2 +05/22/2018,Politicians,@DavidCameron,"RT @FarbsMcFarbs: ATTENTION SURVIVOR +Captain Forever, Captain Successor, and Captain Impostor are now on Steam as Captain Forever Trilogy,…" +05/22/2018,Politicians,@DavidCameron,@RyanPagella @MIDImyers A+ dog +05/22/2018,Politicians,@DavidCameron,@robertashley That is the most white dude depiction of a crack pipe I've ever seen. +05/22/2018,Politicians,@DavidCameron,"@mudron With the current guy in charge of Xbox, I wouldn't rule it out. + +Plus the only Rare game I think I would n… https://t.co/yIJyIuWa29" +05/22/2018,Politicians,@DavidCameron,@FarbsMcFarbs Wishful thinking. The did do a pretty good pointer for World of Goo for docked mode though. https://t.co/VgfjRJLyig +05/22/2018,Politicians,@DavidCameron,@FarbsMcFarbs Can I be really annoying for a second? Do you think CF:Trilogy could work on Switch? Touch screen for building ships and such. +05/22/2018,Politicians,@DavidCameron,RT @MichaelSkolnik: RT if you support an assault weapons ban. +05/22/2018,Politicians,@DavidCameron,"@BrocrusherTCGG Same, but watching the video." +05/22/2018,Politicians,@DavidCameron,RT @helenasbby: life imitates art https://t.co/FLyQmG6J2Q +05/21/2018,Politicians,@DavidCameron,RT @willsmith: Ok. https://t.co/mZ1812RaYx +05/21/2018,Politicians,@DavidCameron,Me honestly https://t.co/PFvBwHpRuV +05/21/2018,Politicians,@DavidCameron,"Yo I just installed Firefox for the first time in a long time, and it rocks. Makes Chrome look real bad." +05/21/2018,Politicians,@DavidCameron,@markmacd @DcalebX @johntv Id tech has always been super portable though. RE7 Might not be as well designed. +05/19/2018,Politicians,@DavidCameron,RT @JordanUhl: ¯\_(ツ)_/¯ https://t.co/aQvL95Ni2R +05/19/2018,Politicians,@DavidCameron,"Question @Microsoft , why did I schedule this to happen overnight if this is what I get logging in this morning https://t.co/wbSWXxvBSy" +05/18/2018,Politicians,@DavidCameron,"RT @robtrench: The John Wick Twitter account is just the old I, Frankenstein Twitter account repurposed. Surprised Lionsgate hasn't deleted…" +05/18/2018,Politicians,@DavidCameron,@MaxTemkin It is a known fact that Monsters Incorporated has the highest shooting rate in all the monster world. https://t.co/fZoRjGzeKR +05/18/2018,Politicians,@DavidCameron,@willsmith They make them that have a big round ball instead of deadly tip. Bought some last summer +05/18/2018,Politicians,@DavidCameron,This feels like the fundamental difference between the older and younger generations. https://t.co/KQ74PwS8qh +05/17/2018,Politicians,@DavidCameron,@typicalspoon Also at Kent State +05/17/2018,Politicians,@DavidCameron,@kobunheat I think that is just one is the interface options that the industry already used. Like the rock band pedal. +05/17/2018,Politicians,@DavidCameron,@BriannaShrum Short Circuit 2 +05/17/2018,Politicians,@DavidCameron,@ShaneWatch I don't think he knows how Watergate wrapped up. +05/17/2018,Politicians,@DavidCameron,@patrickklepek Give me a whole waypoint radio episode about this. Such a great thing. I hope that the industry can… https://t.co/xbZtrr7Vvq +05/17/2018,Politicians,@DavidCameron,This is really cool. Bravo. https://t.co/NM0MkmMUKG +05/17/2018,Politicians,@DavidCameron,@Danielleri I know several women who went and got a Norplant right after the election because they assumed BC wasn'… https://t.co/l9LyV8NUOa +05/17/2018,Politicians,@DavidCameron,I would love to find a copy of this guide book. This is 100% my shit. https://t.co/8vIVY0VvpB +05/17/2018,Politicians,@DavidCameron,This is super cool https://t.co/r5UWIhrMo2 +05/17/2018,Politicians,@DavidCameron,"RT @lunalindsey: CW: Eugenics + +WE TOLD YOU ALL THEY'RE NAZIS. YES, EXACTLY THOSE KIND OF NAZIS. + +I'm so angry. https://t.co/cO6loRiaJ3" +05/16/2018,Politicians,@DavidCameron,We have a monster in charge. Monsters voted for it. Monsters are following its orders. +05/16/2018,Politicians,@DavidCameron,RT @tetrafox_: https://t.co/BaCqC2pNs0 +05/15/2018,Politicians,@DavidCameron,@JurassicWorld https://t.co/knAY1Np3Yw +05/15/2018,Politicians,@DavidCameron,RT @AmidaCareNY: Virginia resident Sydney Walther who received her gender-affirmation surgery at @NYULangone is one of many whose quality o… +05/15/2018,Politicians,@DavidCameron,@DarkSoulsGame Gravelord Nito +05/15/2018,Politicians,@DavidCameron,"RT @McJesse: I took every shot from behind-the-scenes featurettes where Dr. Strange is in front of a greenscreen, and edited him into a wat…" +05/15/2018,Politicians,@DavidCameron,RT @LimitedRunDoug: So this happened tonight in Akihabara! https://t.co/crHzSTQnM3 +05/13/2018,Politicians,@DavidCameron,"RT @TGAW: Today's #WeTheRosies piece is stuffed with names of creative women who inspire me and my family. Packed so, so, so very full, yo…" +05/13/2018,Politicians,@DavidCameron,@kobunheat At first I thought this was a photo from the Atari landfill site +05/13/2018,Politicians,@DavidCameron,@danikaharrod I that a second life avatar? +05/12/2018,Politicians,@DavidCameron,@BrocrusherTCGG Don't put salt in the wound. +05/11/2018,Politicians,@DavidCameron,RT @SeriousTyberius: https://t.co/CrhWU3Ugh2 +05/11/2018,Politicians,@DavidCameron,This dude was chilling with me while I ate lunch. https://t.co/ZzEmPWsNII +05/11/2018,Politicians,@DavidCameron,@robertashley @nsuttner Are they muffins? +05/11/2018,Politicians,@DavidCameron,@bonebonebot My daughter loves this cat. +05/11/2018,Politicians,@DavidCameron,@cabel This has been annoying me all day. +05/11/2018,Politicians,@DavidCameron,"RT @RobertONeill31: Well. I mean. + +*gestures broadly at everything* https://t.co/dBNo54VjXH" +05/10/2018,Politicians,@DavidCameron,RT @Shaken_Martinez: PSA https://t.co/Qvk2QYx3lS +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG @typicalspoon @Ploxerer Maybe the goal is to fuck some sense into him. +05/10/2018,Politicians,@DavidCameron,RT @wyntonred: no regrets https://t.co/8KcIkROzUW +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG get your ass to trader joes and grab a bottle of margarita wine. +05/10/2018,Politicians,@DavidCameron,@BrocrusherTCGG yuck i don't like this one. +05/09/2018,Politicians,@DavidCameron,@waypoint @patrickklepek https://t.co/toI5ESU33c +05/09/2018,Politicians,@DavidCameron,"If you use the word ""preternaturally"" in idle conversation we will probably get along just fine." +05/09/2018,Politicians,@DavidCameron,@HazelMonforton But the that's correct +05/09/2018,Politicians,@DavidCameron,RT @NalediMashishi: 1) the Vatican approved & personally donated 50+ items to the collection. Cultural appropriation requires lack of conse… +05/09/2018,Politicians,@DavidCameron,RT @Zin5ki: https://t.co/CrpRxDCOi7 +05/08/2018,Politicians,@DavidCameron,RT @SOEDESCO: It's #GIVEAWAY time! This time you can #WIN a #NintendoSwitch console + a physical copy of #Owlboy! All you have to do is #fo… +05/08/2018,Politicians,@DavidCameron,RT @papsby: https://t.co/3NR1brt1i7 +05/08/2018,Politicians,@DavidCameron,RT @JeremyPoxon: https://t.co/kPWZMvciVN +05/07/2018,Politicians,@DavidCameron,@xpatriciah same +05/06/2018,Politicians,@DavidCameron,@BrocrusherTCGG The nerve of some white boys. +05/05/2018,Politicians,@DavidCameron,@NPR But we already know that it is @tedcruz +05/05/2018,Politicians,@DavidCameron,@katewelchhhh @Iscaneus Wow +05/05/2018,Politicians,@DavidCameron,@BrocrusherTCGG same +05/05/2018,Politicians,@DavidCameron,"RT @dialacina: Here's a free example of how you can make this about his being a sexist asshole: + +""It's probably good DJ Khaled doesn't eat…" +05/05/2018,Politicians,@DavidCameron,"My quick review. Tasty as any mix you'd pour tequila into. Not as good as from scratch. For $14 at TJs, well worth… https://t.co/zyroS6mTyn" +05/05/2018,Politicians,@DavidCameron,RT @SJSchauer: Oh my fucking god it’s the fucking dictionary coming for DJ Khaled. https://t.co/dY0fkZoOHW +05/05/2018,Politicians,@DavidCameron,RT @smashmouth: A King who doesn't is no King at all. https://t.co/Jg1GAlfIjI +05/05/2018,Politicians,@DavidCameron,"RT @davidcameron: Oh captain, my captain. +#teammargarita2015 + +https://t.co/4oBsepdRA8" +07/01/2018,Politicians,@VP,"Last week, @SecondLady and I visited Guatemala and met with families displaced by the Volcán de Fuego eruption. The… https://t.co/vnhfRt1ho8" +06/30/2018,Politicians,@VP,Honored to meet with President @Lenin Moreno of Ecuador this week. The United States will work with Ecuador in new… https://t.co/zGHcDUiwt9 +06/30/2018,Politicians,@VP,"RT @WhiteHouse: Today marks one year since President Trump relaunched the National Space Council and named @VP Pence its chair, kicking off…" +06/29/2018,Politicians,@VP,RT @WhiteHouse: American workers and families have seen some of the biggest benefits from President Trump’s tax cuts. https://t.co/pkBAlYba… +06/29/2018,Politicians,@VP,Thank you @PressClubDC for bringing attention to the case of photojournalist Shawkan. He & other non-violent activi… https://t.co/GFp8pBH6eT +06/29/2018,Politicians,@VP,An important trip to South and Central America. Productive discussions on isolating Venezuela’s brutal dictatorship… https://t.co/cBPuZgKRcm +06/29/2018,Politicians,@VP,"RT @SecondLady: We’re back in the great USA! 🇺🇸 Thank you to Brazil, Ecuador, and Guatemala for the wonderful hospitality this week! https:…" +06/29/2018,Politicians,@VP,Pleased the Senate confirmed GEN Austin “Scott” Miller to be our new military commander in Afghanistan last night.… https://t.co/6UyuEC1acE +06/29/2018,Politicians,@VP,"Well said, Mr. @POTUS. No journalist should ever feel afraid to go into their newsroom and do the important reporti… https://t.co/W8PiSy4hG7" +06/29/2018,Politicians,@VP,GREAT DAY at the @WhiteHouse celebrating the 6 month anniversary of signing the LARGEST tax cuts and reforms in Ame… https://t.co/3QtYc2EgfB +06/29/2018,Politicians,@VP,"RT @WhiteHouse: “That's why our economy is booming, that’s why our families are thriving, that’s why our businesses are growing. And that i…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: ""The economy is indeed doing well. Six months ago, we unleashed an economic miracle by signing the biggest tax cuts and ref…" +06/29/2018,Politicians,@VP,"RT @realDonaldTrump: Six months after our TAX CUTS, more than 6 MILLION workers have received bonuses, pay raises, and retirement account c…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: .@realDonaldTrump: ""There's never been a better time to hire in America, to invest in America, and to start living the Amer…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: President Trump’s tax cuts have made it possible for American small business owners like Mike Zaffaroni to invest, hire, an…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: President Trump's Tax Cuts and Jobs Act eliminated dozens of special interest tax breaks and loopholes, raising $4 trillion…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: .@realDonaldTrump: ""At the center of America's economic resurgence are the massive tax cuts that I signed into law six mont…" +06/29/2018,Politicians,@VP,"RT @WhiteHouse: The stream of good news for American workers is something everyone—Republican, Democrat, or otherwise—should celebrate. htt…" +06/29/2018,Politicians,@VP,.@SecondLady and I thanked our service members stationed in Central America last night as we departed Guatemala. Ou… https://t.co/9z3sCyP5B7 +06/29/2018,Politicians,@VP,RT @VPComDir: .@VP Pence had a blunt message for three Central American governments: You must do more to stop migrants who enter the United… +06/29/2018,Politicians,@VP,"Last night, Karen and I met with families displaced by the Volcán de Fuego eruption in Guatemala. The U.S. will con… https://t.co/IzT6bnQnee" +06/29/2018,Politicians,@VP,RT @SecondLady: Thank you to the First Lady of Guatemala for traveling with us to the shelter in Escuintla. On our way there we saw the Fue… +06/29/2018,Politicians,@VP,"Discussed specific new steps that Guatemala, Honduras, and El Salvador can take. And told the leaders of El Salvado… https://t.co/v4kQgNJJdf" +06/29/2018,Politicians,@VP,"To the people of Guatemala, Honduras, and El Salvador: You are our neighbors. We want you and your nations to prosp… https://t.co/fjYqiBrAxZ" +06/29/2018,Politicians,@VP,"I have a message for the people of Guatemala, Honduras, and El Salvador… You are our neighbors. We want you and you… https://t.co/jWKZArHksF" +06/29/2018,Politicians,@VP,Tell your people that coming to the U.S. illegally will only result in a hard journey and a harder life…Take down p… https://t.co/0wSJ3evUHa +06/29/2018,Politicians,@VP,As I told their presidents: This exodus must end. It’s a threat to our security. Just as we respect your borders an… https://t.co/MgOm4fDoJt +06/29/2018,Politicians,@VP,"The numbers are staggering. Since the start of this year, more than 150,000 Guatemalans, Hondurans, and Salvadorans… https://t.co/vyJr3sdA1r" +06/29/2018,Politicians,@VP,"Thank you @jimmymoralesgt of Guatemala for hosting important multilateral talks with @JuanOrlandoH of Honduras, and… https://t.co/TL8CRx0taM" +06/28/2018,Politicians,@VP,RT @SecondLady: Traveled to Escuintla to meet with families displaced by the June 3rd Fuego Volcano eruption in Guatemala. Visited a shelte… +06/28/2018,Politicians,@VP,Just arrived in Guatemala City with @SecNielsen for a critical meeting with Latin American leaders on how to addres… https://t.co/ht3CezFmVq +06/28/2018,Politicians,@VP,Just arrived in Guatemala. We are monitoring the horrific shooting at the Capital Gazette in Annapolis. Karen & I a… https://t.co/nj9Beax1c2 +06/28/2018,Politicians,@VP,"Venezuela was once a beacon of prosperity and freedom. But under Nicolás Maduro, Venezuela’s great democracy has be… https://t.co/l51UvG7ZQH" +06/28/2018,Politicians,@VP,"Freedom is the foundation of the friendship between the United States and Ecuador, and so has it been for nearly 20… https://t.co/RPTaotamnZ" +06/28/2018,Politicians,@VP,"RT @SecondLady: Helped to reconnect a @SisterCitiesInt relationship between Quito and Coral Gables, FL through a gift exchange between the…" +06/28/2018,Politicians,@VP,RT @SecondLady: Enjoyed a lovely visit with First Lady Rocío González de Moreno at the Presidential Palace where she showed us a beautiful… +06/28/2018,Politicians,@VP,"Thank you, President @Lenin Moreno for hosting us today. Ours was destined to be a Hemisphere of Freedom. History w… https://t.co/a8qFAYnagf" +06/28/2018,Politicians,@VP,RT @VP: Honored to be in Ecuador. Thank you to our gracious hosts President @Lenin Moreno & First Lady Rocío González de Moreno. Freedom ha… +06/28/2018,Politicians,@VP,Honored to be in Ecuador. Thank you to our gracious hosts President @Lenin Moreno & First Lady Rocío González de Mo… https://t.co/kHh1SITXOQ +06/28/2018,Politicians,@VP,Toured the great ports along the Amazon River this afternoon. The U.S. and Brazil have great opportunity to grow ou… https://t.co/60MPIhD53z +06/28/2018,Politicians,@VP,Great visit to Brazil. Thank you to President @MichelTemer for your hospitality in Brasília. We are all working tog… https://t.co/ztlFGX0d9K +06/28/2018,Politicians,@VP,Today I heard the harrowing stories of families who fled government oppression and near starvation under the Maduro… https://t.co/jmfR29xMZx +06/27/2018,Politicians,@VP,"Powerful visit with families who fled the Maduro regime at the Santa Catarina Shelter in Manaus, Brazil today. Thes… https://t.co/0EeOXoXCxx" +06/27/2018,Politicians,@VP,Thank you to Justice Anthony Kennedy for your long career of service on the SCOTUS. @POTUS Trump will nominate a st… https://t.co/wY3S1VeWpY +06/27/2018,Politicians,@VP,"The Bible tells us “where the spirit of the Lord is, there is freedom.” I truly do know and believe, knowing the he… https://t.co/5PqbSPI53S" +06/27/2018,Politicians,@VP,Freedom and democracy will prevail in Venezuela. Libertad will be restored. https://t.co/lDa5HR9TGm +06/27/2018,Politicians,@VP,"Yesterday, we announced an additional $10 million that will go to supporting Venezuelan families including more tha… https://t.co/BbnyJi5orw" +06/27/2018,Politicians,@VP,"Karen & I met with families who fled Venezuela not to seek a better life; they came to Brazil to live, to survive.… https://t.co/8vsxQXkoOe" +06/27/2018,Politicians,@VP,.@POTUS and I encourage the US House to get behind STRONG borders & security by passing the Border Security and Imm… https://t.co/UGx52Xam3d +06/27/2018,Politicians,@VP,RT @SecondLady: ICYMI: Second Lady Karen Pence helps to renew Sister City relationship during visit in Brasilia. ⁦@SisterCitiesInt⁩ https:… +06/27/2018,Politicians,@VP,Thank you President @MichelTemer for the warm hospitality in Brasília. Headed to Manaus to the Santa Catarina shelt… https://t.co/iTsKPn42IP +06/27/2018,Politicians,@VP,RT @SecondLady: Enjoyed a lovely visit to the #DomBosco Santuary--one of Brasilia's most famous churches. The beauty is breathtaking! https… +06/26/2018,Politicians,@VP,Privileged to visit with @USCitsBrazil Embassy personnel and their families stationed in Brasília this evening. THA… https://t.co/dPGwuoLRhB +06/26/2018,Politicians,@VP,"RT @SecondLady: As Honorary Vice Chair of @SisterCitiesInt, it was a pleasure to highlight the Sister Cities relationship between Washingto…" +06/26/2018,Politicians,@VP,To the people of Central America: You are our neighbors. We want you & your nations to prosper. Don’t risk your liv… https://t.co/ODCOxxJdY1 +06/26/2018,Politicians,@VP,"To all the nations of the region, let me say with great respect, that just as the United States respects your borde… https://t.co/jIfnncqkl0" +06/26/2018,Politicians,@VP,"The United States will continue to stand with the good people of Venezuela, and we will continue to stand with Braz… https://t.co/e9epRKr8ve" +06/26/2018,Politicians,@VP,"Today, I’m pleased to announce that the United States will provide additional support of nearly $10 million to Vene… https://t.co/sisLYnzpN5" +06/26/2018,Politicians,@VP,The United States and Brazil are bound together by our past and our principles. The United States was the first nat… https://t.co/El8dqeB7UQ +06/26/2018,Politicians,@VP,Productive working lunch with Brazilian delegation & US diplomats. Thanks President @MichelTemer & Foreign Minister… https://t.co/1QgE9yXLVe +06/26/2018,Politicians,@VP,Bilateral meeting today with President @MichelTemer of Brazil. We discussed the great friendship between our countr… https://t.co/FkmHWDat7t +06/26/2018,Politicians,@VP,Just touched down in Brasília. Look forward to meeting with President @MichelTemer & the Brazilian delegation to re… https://t.co/XsKw33Mxoh +06/26/2018,Politicians,@VP,Taking off to Brazil — on my 3rd trip to Latin America as Vice President. Look forward to working w/ allies to put… https://t.co/EYsDyKS8zk +06/26/2018,Politicians,@VP,"RT @WhiteHouse: Today, @realDonaldTrump and @FLOTUS welcomed @KingAbdullahII and @QueenRania of the Hashemite Kingdom of Jordan to the Whit…" +06/26/2018,Politicians,@VP,Great to see my friend @KingAbdullahII of Jordan in Washington D.C. today. Productive meeting this afternoon at the… https://t.co/Nur9Gu5rOO +06/25/2018,Politicians,@VP,"Spoke with Prime Minister @HaiderAlAbadi of Iraq this morning. Discussed our joint efforts to defeat ISIS, recent I… https://t.co/PAMs9jundp" +06/25/2018,Politicians,@VP,"RT @WhiteHouse: The results of President Trump's tax cuts can be seen in our Nation’s business environment, as American companies start inv…" +06/24/2018,Politicians,@VP,RT @realDonaldTrump: AMERICA IS OPEN FOR BUSINESS! https://t.co/ZjdlHwJlxm +06/24/2018,Politicians,@VP,"RT @WhiteHouse: ""…lower taxes and fewer regulations get results. Thank you very much for leading on those reforms."" https://t.co/l4z5wsIEf9" +06/24/2018,Politicians,@VP,"RT @WhiteHouse: ""Your Tax Cuts enabled our owner... to give back $1 million collectively to all of his employees, myself included. You have…" +06/23/2018,Politicians,@VP,"Happy 70th Birthday to an inspiring American and a great Supreme Court Justice, Clarence Thomas! Honored to welcome… https://t.co/meYb7jEpiw" +06/23/2018,Politicians,@VP,"Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the… https://t.co/KQDUnpNVt5" +06/22/2018,Politicians,@VP,"Amid the national conversation on immigration, we must never forget the heartbreaking loss that Angel Families have… https://t.co/UlmeLYyAN1" +06/22/2018,Politicians,@VP,"RT @WhiteHouse: ""For years their pain was met with silence, their plight with indifference, but no more..."" https://t.co/LWxcMJJk5j" +06/22/2018,Politicians,@VP,"RT @WhiteHouse: Six months ago today, President Trump signed the Tax Cuts & Jobs Act. Now, the economy is booming, small businesses are thr…" +06/22/2018,Politicians,@VP,RT @FLOTUS: Visiting w children at the shelter in #Texas yesterday was very touching. Despite the difficult circumstances children were in… +06/22/2018,Politicians,@VP,"Spoke with President-Elect @IvanDuque of Colombia today, stressing the need to move decisively to cut drug producti… https://t.co/F2sdKaOU6p" +06/22/2018,Politicians,@VP,"6 months after @POTUS signed the largest tax cuts and reforms into law: +✅ America’s economy is making a comeback. +✅… https://t.co/VQyUd75Scq" +06/22/2018,Politicians,@VP,Proud of our @FLOTUS. https://t.co/TDkFOK9wZ4 +06/21/2018,Politicians,@VP,"Charles Krauthammer will long be remembered for his eloquence, his triumph in hardship, and his countless contribut… https://t.co/CgW8REQ8cT" +06/21/2018,Politicians,@VP,RT @realDonaldTrump: Farm Bill just passed in the House. So happy to see work requirements included. Big win for the farmers! +06/21/2018,Politicians,@VP,Working lunch today with @POTUS and many great governors who are working with the Trump Administration to bring job… https://t.co/G5ohtknPvj +06/21/2018,Politicians,@VP,Proud of this @Cabinet – dedicated patriots – working tirelessly under @POTUS Trump’s leadership to advance our age… https://t.co/Kf0YCiVdRp +06/21/2018,Politicians,@VP,RT @WhiteHouse: Lawmakers must still pass legislation to secure our border and finally and fully allow family and minor detention and promp… +06/21/2018,Politicians,@VP,Honored to welcome Carl Anderson from @KofC to the @WhiteHouse. The Knights of Columbus play a vital role in advoca… https://t.co/wE5f1meXXg +06/20/2018,Politicians,@VP,"Now we are calling on Congress to #ChangeTheLaws, secure our border, close loopholes, and take the action necessary… https://t.co/q5nUR3UyxO" +06/20/2018,Politicians,@VP,We don’t have to choose between being a country of law & order with a secure border and being a country that demons… https://t.co/FrTGUNgbMZ +06/20/2018,Politicians,@VP,"By taking this action, @POTUS will make it possible for us to enforce the law against individuals who come into our… https://t.co/iaMaPOtowL" +06/20/2018,Politicians,@VP,"An honor to host President @JuanOrlandoH of Honduras today to reinforce the strong partnership between our nations,… https://t.co/lZaICeLl8o" +06/20/2018,Politicians,@VP,RT @WhiteHouse: Here is the text of the executive order President Trump just signed: https://t.co/sM9e5aWWZR +06/20/2018,Politicians,@VP,"Great to catch up with my friend @GovHolcomb at the @WhiteHouse this morning. Nearly 50,000 jobs created in the gre… https://t.co/dwawmX53tQ" +06/20/2018,Politicians,@VP,"RT @syracusedotcom: .@VP Mike Pence tours Nucor mill, tells Auburn NY workers 'steel is back!' (video) https://t.co/pY3RlQuyGJ" +06/20/2018,Politicians,@VP,GREAT to be in Philadelphia today - and honored to shake hands with PA law enforcement officers who tirelessly work… https://t.co/cNMYtbK0HT +06/19/2018,Politicians,@VP,RT @SecondLady: Enjoyed meeting with military spouses serving with the New York National Guard. Thank you for sharing your stories! 🇺🇸 http… +06/19/2018,Politicians,@VP,RT @SecondLady: Great visit at @UpstateGolisano! Enjoyed learning about the art therapy program and meeting DJ! https://t.co/bVpyysPf7M +06/19/2018,Politicians,@VP,Today the U.S. took a stand against some of the world’s worst human rights violators by withdrawing from the United… https://t.co/a6xubBA0KQ +06/19/2018,Politicians,@VP,"This is sad. Schumer would rather play politics than solve problems and secure our border. Chuck, THAT makes no sen… https://t.co/a4ejARvbtZ" +06/19/2018,Politicians,@VP,Love having @SecondLady on the road with me. https://t.co/TnYQWHGd8y +06/19/2018,Politicians,@VP,"Thank you Nucor Steel! Because of @POTUS Trump’s tax cuts, Nucor is investing in new technology and plans to create… https://t.co/xjEoL7zB38" +06/19/2018,Politicians,@VP,"Since our election, businesses large and small have created more than 3.4 million new jobs – including over 174,400… https://t.co/64Z1R3Zykc" +06/19/2018,Politicians,@VP,I want to thank Nucor Steel and the example this company is setting… Steel is back and Nucor is proving it every da… https://t.co/1AI61sbxhn +06/19/2018,Politicians,@VP,I want to thank @RepJohnKatko for supporting policies that are making a real difference for Central New York’s work… https://t.co/mdyOrRaMo6 +06/19/2018,Politicians,@VP,"For almost half a century, Nucor Steel has been a key part of why steel in America is the best steel in the world.… https://t.co/7hi1N5LvCG" +06/19/2018,Politicians,@VP,Great to be back in the Empire State and welcomed by the men & women of the 174th Attack Wing of the New York Air N… https://t.co/TWtmVGBDTY +06/19/2018,Politicians,@VP,On my way to Syracuse today to meet with great manufacturers who are THRIVING in the Trump economy. @POTUS Trump’s… https://t.co/EBdTZ6m6dN +06/19/2018,Politicians,@VP,Heading to Syracuse today to talk about how @POTUS’ economic agenda is expanding opportunity & putting more money i… https://t.co/ZtLEJvkeij +06/18/2018,Politicians,@VP,"RT @WhiteHouse: Today, President Trump delivered remarks as the Space Council gathered to discuss American leadership in space exploration…" +06/18/2018,Politicians,@VP,"Great Nat'l Space Council meeting. @POTUS signed Space Policy Directive–3, directing US gov’t & industry to impleme… https://t.co/YLrY8iHGZe" +06/18/2018,Politicians,@VP,"As @POTUS Trump said at the beginning of today’s National Space Council meeting, “Now we are ready to begin the nex… https://t.co/VmUTn24MPp" +06/18/2018,Politicians,@VP,Honored to be at the @WhiteHouse for the third meeting of the National Space Council with the Users’ Advisory Group… https://t.co/Gg9QdriaZV +06/18/2018,Politicians,@VP,WATCH LIVE: The National Space Council meets today and will be joined by @POTUS Trump. This President took a critic… https://t.co/tCkcP7BoLx +06/18/2018,Politicians,@VP,"RT @WhiteHouse: President Trump participates in a meeting of the National Space Council. + +Watch live ➡️ https://t.co/EmsdctGWtd https://t.…" +06/17/2018,Politicians,@VP,Happy Father's Day to all the great Dads across America! +06/16/2018,Politicians,@VP,"RT @WhiteHouse: “Americans must demand their lawmakers support the legislation we need to defeat MS-13 once and for all, and to ensure ever…" +06/16/2018,Politicians,@VP,THANK YOU to the great police in Ohio and Michigan! Our police are the best of the best. https://t.co/ef28d1bXZX +06/16/2018,Politicians,@VP,Great day meeting with the good people of Ohio and talking about our historic tax cuts. We cut taxes for businesses… https://t.co/Hyc6XcMBUP +06/15/2018,Politicians,@VP,"Great to be with the hardworking people at a growing company, @Frank_Rewold & Sons in Michigan. Thanks to @POTUS Tr… https://t.co/l9fAQ1wEQL" +06/15/2018,Politicians,@VP,.@SenSherrodBrown actually voted no on our historic tax cuts because he called them a “scam” – but the truth is our… https://t.co/QSiqZs9YPZ +06/15/2018,Politicians,@VP,"Since @POTUS Trump signed these tax cuts into law, companies across Ohio have announced bigger raises, better benef… https://t.co/hjMqvdZFFn" +06/15/2018,Politicians,@VP,"Under @POTUS Trump’s leadership, manufacturers large and small have added more than 330,000 new jobs – including mo… https://t.co/FjXqUD6NvQ" +06/15/2018,Politicians,@VP,"Since Ohio voted to elect our President, businesses have created more than 3.4 million jobs – including nearly 100,… https://t.co/Fz0p82xvRN" +06/15/2018,Politicians,@VP,"And this is just the beginning, because our tax cuts will keep spurring more growth and higher wages – and in the y… https://t.co/1QNln5QdAo" +06/15/2018,Politicians,@VP,"Since Ohio voted to elect our @POTUS, businesses have created more than 3.4 million jobs across this country – incl… https://t.co/0QTrTdpQdJ" +06/15/2018,Politicians,@VP,".@POTUS promised to cut taxes across the board for working families, job creators, and family farms – and with the… https://t.co/uV7rR5jrgf" +06/15/2018,Politicians,@VP,".@POTUS Trump promised to rebuild our military, restore the arsenal of democracy, and once again give our Soldiers,… https://t.co/FAlQGNFfvc" +06/15/2018,Politicians,@VP,It is great to be back in the Buckeye State – with the men and women who elected a Congress and a @POTUS who enacte… https://t.co/SisMIgA52C +06/15/2018,Politicians,@VP,".@POTUS Trump’s tax cuts are putting Ohio first. In just the past six months, more than 95,200 Ohio workers have be… https://t.co/eeHDryDmz9" +06/15/2018,Politicians,@VP,"Unemployment hasn’t been lower in nearly 50 years, and we’ve reached the lowest unemployment rate for African-Ameri… https://t.co/MXuR4PWUSQ" +06/15/2018,Politicians,@VP,"Since election day, businesses have created more than 3.4 million new jobs – including nearly 80,000 in Michigan –… https://t.co/cKdwhOVg73" +06/15/2018,Politicians,@VP,"Visited @frank_rewold & Sons in Rochester, MI. This great American company was founded 100 years ago this year, and… https://t.co/RPixgFr6Js" +06/15/2018,Politicians,@VP,Great to be back in the Wolverine State! @POTUS Trump’s tax cuts are bringing jobs back to Michigan. https://t.co/8GNPPWHVYd +06/15/2018,Politicians,@VP,"RT @SecondLady: #FlashbackFriday to last night when we hosted military families at the Vice President's Residence! Our dog, Harley made a b…" +06/15/2018,Politicians,@VP,Heading to Michigan and Ohio today. @POTUS tax cuts are bringing jobs and investment back to the Midwest! https://t.co/I1Ry5JopyM +06/15/2018,Politicians,@VP,RT @SecondLady: We truly enjoyed spending our evening at the @VP Residence with children and spouses of military service members currently… +06/15/2018,Politicians,@VP,.@SecondLady & I welcomed military families back to the Vice President’s Residence tonight for our annual pool part… https://t.co/hMwELmr7qw +06/14/2018,Politicians,@VP,"“In fact, the Democrats have abandoned DACA. And by their obstruction they’ve abandoned the opportunity to enact co… https://t.co/c8YH9FcUwg" +06/14/2018,Politicians,@VP,"Today at #NHPB18: “Despite what you may have heard, the Democrats just don’t want to make a deal. They don’t want t… https://t.co/5wKg3AyLe6" +06/14/2018,Politicians,@VP,.@POTUS Trump – in his first meeting with the leader of North Korea – got Kim Jong-Un to commit to the full denucle… https://t.co/wi9Ufvq9bO +06/14/2018,Politicians,@VP,"Must read @USAIDMarkGreen op-ed in the @WSJ: “At the direction of @POTUS & @VP, @USAID is now redoubling its effort… https://t.co/dzF0ELIGd7" +06/14/2018,Politicians,@VP,A beautiful night for the #CongressionalBaseballGame – a bipartisan event for a worthy cause. GREAT to see my frien… https://t.co/dQJJr8flq9 +06/14/2018,Politicians,@VP,"Happy Birthday, @USArmy! Celebrating 243 years that the Army has kept America safe. 🇺🇸 https://t.co/q5a1zpKaD3" +06/14/2018,Politicians,@VP,"“I pledge allegiance to the Flag of the United States of America, and to the Republic for which it stands, one Nati… https://t.co/89rocFwjXB" +06/14/2018,Politicians,@VP,"Happy Birthday, Mr. @POTUS! https://t.co/e84RUSdMQF" +06/14/2018,Politicians,@VP,And I couldn’t be more proud to serve with a President who stands without apology for the sanctity of human life –… https://t.co/N2uluRRxcl +06/14/2018,Politicians,@VP,"The true strength of this country doesn’t come just from our economy, it can’t only be measured only by our materia… https://t.co/0HjIj1ImfI" +06/14/2018,Politicians,@VP,"And unemployment hasn’t been lower in nearly 50 years – and under this President, we’ve actually seen the lowest Hi… https://t.co/73WiyVSWKJ" +06/14/2018,Politicians,@VP,Small business optimism is at a record high – and nearly nine out of ten Hispanic business owners see greater opportunity the years ahead… +06/14/2018,Politicians,@VP,Honored to address the 2018 National Hispanic Prayer Breakfast this morning. Listen live: https://t.co/M0B74B4pFY +06/14/2018,Politicians,@VP,Glad to hear NASA expects the Opportunity Rover “Oppy” to weather one of the worst dust storms recorded on Mars. Gr… https://t.co/2QSa3K8x7F +06/13/2018,Politicians,@VP,RT @SecondLady: Heard some amazing stories about #arttherapy helping pediatric patients who participate in @tracyskidsdc art therapy progra… +06/13/2018,Politicians,@VP,THANK YOU to the great law enforcement in Dallas for everything you do to keep your community safe every day. https://t.co/8qf2BccSXc +06/13/2018,Politicians,@VP,No podium that @POTUS or I stand behind will be of greater consequence than the pulpits you stand behind every Sund… https://t.co/B5y9bDqjUA +06/13/2018,Politicians,@VP,".@POTUS Trump secured a commitment from North Korea to recover and repatriate the remains of more than 5,000 Americ… https://t.co/0cldXEygZI" +06/13/2018,Politicians,@VP,Our hearts were broken last year when we learned of the horrific attack on First Baptist Church in Sutherland Sprin… https://t.co/duvbARPgdO +06/13/2018,Politicians,@VP,.@POTUS Trump is the most pro-life President in American history! And it was my honor as Vice President to cast the… https://t.co/XsEbXtcYkC +06/13/2018,Politicians,@VP,.@POTUS kept his word to the American people and to our most cherished ally when we opened the United States Embass… https://t.co/hlEm2HvoRK +06/13/2018,Politicians,@VP,"As the late and great Reverend Billy Graham said, let’s remember “To get nations back on their feet, we must first… https://t.co/4jhwomLq9l" +06/13/2018,Politicians,@VP,"I’ve seen it in those good Samaritans, who come alongside the least fortunate in our cities, leading people away fr… https://t.co/EyULw8xoft" +06/13/2018,Politicians,@VP,"Over the past year-and-a-half, I’ve seen a lot, as I’ve traveled across this country, and I’ve seen the faith that… https://t.co/nrWsjkFNMB" +06/13/2018,Politicians,@VP,.@POTUS and I will continue to fight for what we know is right. But we recognize that the most important work in Am… https://t.co/M4IshCGA97 +06/13/2018,Politicians,@VP,"Today, on behalf of @POTUS Trump, I want to thank the #SBC18 for the essential and irreplaceable role that you play… https://t.co/Y1jABttk7i" +06/13/2018,Politicians,@VP,"Southern Baptists have always worked to bring about the renewal of America, and new beginnings – and as I stand bef… https://t.co/i5BnpWdith" +06/13/2018,Politicians,@VP,"Heading to Dallas, Texas – it is my great honor to address the Southern Baptist Convention this morning. Watch live… https://t.co/9ZHgPLCYQP" +06/12/2018,Politicians,@VP,"Always enjoy meeting folks visiting Washington, DC. Great to see my friend @RepHuizenga and a group of students in… https://t.co/SDr8l2RvX3" +06/12/2018,Politicians,@VP,"Spoke with @Larry_Kudlow’s wife, Judy, this morning – relieved to hear my good friend is expected to fully recover.… https://t.co/K8nRd5OXRn" +06/12/2018,Politicians,@VP,"RT @WhiteHouse: Overnight, President Trump led a historic summit with North Korean leader Kim Jong Un. “We had a tremendous 24 hours. We’ve…" +06/12/2018,Politicians,@VP,Spoke with @POTUS earlier today – now heading to Capitol Hill to brief @SenateGOP members and @HouseGOP leaders on… https://t.co/FWFsxh5I2c +06/12/2018,Politicians,@VP,"RT @StateDept: ""Anyone can make war, but only the most courageous can make peace."" -- @POTUS Donald J. Trump at the #SingaporeSummit https:…" +06/12/2018,Politicians,@VP,RT @realDonaldTrump: https://t.co/tJG3KIn2q0 +06/12/2018,Politicians,@VP,"With the success of the #SingaporeSummit, the world is one step closer to peace on the Korean Peninsula. This histo… https://t.co/7ApwV9nrMF" +06/12/2018,Politicians,@VP,"RT @StateDept: .@POTUS Trump, @SecPompeo, @AmbJohnBolton, and the U.S. delegation meet with North Korean leader Kim Jong Un and the #DPRK d…" +06/12/2018,Politicians,@VP,"RT @Scavino45: #SingaporeSummit +(📸@AP @EvanVucci) https://t.co/JK9qfsd2xc" +06/12/2018,Politicians,@VP,RT @StateDept: .@POTUS Donald J. Trump meets with North Korean leader Kim Jong Un at the #SingaporeSummit. https://t.co/L3BcOPP26J +06/12/2018,Politicians,@VP,Karen and I are praying for our dear friend @Larry_Kudlow tonight. https://t.co/eaKLURJ8ba +06/11/2018,Politicians,@VP,"RT @realDonaldTrump: Meetings between staffs and representatives are going well and quickly....but in the end, that doesn’t matter. We will…" +06/11/2018,Politicians,@VP,"RT @realDonaldTrump: Stock Market up almost 40% since the Election, with 7 Trillion Dollars of U.S. value built throughout the economy. Low…" +06/11/2018,Politicians,@VP,As I told the Faith & Freedom Coalition this weekend: @POTUS approaches tonight’s historic US-NK summit with confid… https://t.co/tcKqki8mcg +06/11/2018,Politicians,@VP,RT @SecPompeo: The fact that our 2 leaders are sitting down face to face is a sign of the enormous potential to accomplish something that w… +06/11/2018,Politicians,@VP,RT @realDonaldTrump: Thank you Prime Minister Lee Hsien Loong! https://t.co/8MMYGuOj8Q +06/09/2018,Politicians,@VP,"RT @realDonaldTrump: .@G7 Press Briefing in Charlevoix, Canada, prior to departing for Singapore! https://t.co/75y1SXuwuU" +06/09/2018,Politicians,@VP,RT @g7: Day 1 of #G7Charlevoix in 60 seconds. https://t.co/U6jA8ylIgm +06/08/2018,Politicians,@VP,Always an honor to spend time with our heroes recovering at @WRBethesda. Thanks also to the great medical team who… https://t.co/etVd5wjJjs +06/08/2018,Politicians,@VP,"Karen and I were saddened to learn that Charles @Krauthammer, a man we greatly admire, is nearing the end of his ex… https://t.co/IWERAsRbCH" +06/08/2018,Politicians,@VP,RT @WhiteHouse: “The Truth About Opioids” is an ad campaign about the perilous measures that young Americans have taken to fuel an opioid a… +06/08/2018,Politicians,@VP,"RT @WhiteHouse: For many, opioid addiction begins early. This ad campaign from @ONDCP, @AdCouncil, and @truthinitiative helps young adults…" +06/08/2018,Politicians,@VP,"RT @WhiteHouse: Know the risks of opioid abuse. New ads from @ONDCP, @AdCouncil, and @truthinitiative. #crisisnextdoor https://t.co/lsCue7L…" +06/08/2018,Politicians,@VP,"RT @WhiteHouse: Larry Kudlow in the Washington Post: ""Trump Is Presiding Over Extraordinary Growth. G-7 Leaders Should Notice."" https://t.c…" +06/08/2018,Politicians,@VP,Happy Anniversary to my wonderful wife Karen! Being married to our amazing @SecondLady these last 33 years is the g… https://t.co/gNJwE2rlR9 +06/08/2018,Politicians,@VP,Great win for freedom by the nations of @OAS_Official to take a stand against the “Havana-Caracas axis.” Read more: https://t.co/WJEgmiUJQ4 +06/07/2018,Politicians,@VP,Thanks for all the kind birthday wishes! +06/07/2018,Politicians,@VP,Our hearts are with all those that are suffering in the wake of the terrible volcano eruption in Guatemala. We expr… https://t.co/YzeA4y8uWG +06/07/2018,Politicians,@VP,The United States will not stand by as the Ortega government in Nicaragua massacres protesters. We will continue to… https://t.co/YgXL72AOD8 +06/07/2018,Politicians,@VP,RT @realDonaldTrump: Great day of meetings with Prime Minister @AbeShinzo of Japan! https://t.co/uKcdA8RxoN +06/07/2018,Politicians,@VP,POWERFUL new video from @ONDCP on the #OpioidEpidemic that has touched nearly all Americans. @POTUS is committed to… https://t.co/6xFXldB15z +06/07/2018,Politicians,@VP,Great to see PM @AbeShinzo again today as @POTUS welcomed him to the @WhiteHouse for discussions on the upcoming su… https://t.co/TsdbxyTPDu +06/07/2018,Politicians,@VP,THANKS for the birthday wishes @JimBridenstine and our great astronauts at the @Space_Station. So proud of our team… https://t.co/QBRAZitMpC +06/06/2018,Politicians,@VP,".@POTUS, @FLOTUS & I thanked @DHSgov & @FEMA employees for their tireless efforts. POTUS' highest priority is the s… https://t.co/RoSkGFAl6j" +06/06/2018,Politicians,@VP,"RT @realDonaldTrump: We must always protect those who protect us. Today, it was my great honor to sign the #VAMissionAct and to make Vetera…" +06/06/2018,Politicians,@VP,RT @realDonaldTrump: Thank you to everyone at @FEMA HQ for today’s briefing on preparations for the upcoming hurricane season. Disaster res… +06/06/2018,Politicians,@VP,As General Eisenhower said—the eyes of the world were upon our allied fighting forces on #DDay in 1944. Despite the… https://t.co/lMoEmfQV7p +07/01/2018,Politicians,@algore,Proud of the important work the grassroots climate movement is doing in the Philippines to transition their country… https://t.co/298n9C1mmG +06/30/2018,Politicians,@algore,"Another ominous record has been set. The city of Quriyat, Oman, hit an overnight LOW of 108.7 degrees on Tuesday -… https://t.co/mako2WUDsU" +06/28/2018,Politicians,@algore,Thanks to everyone who took part in the training in Berlin this week! We need countries like Germany to meet their… https://t.co/Rz74SD2rZS +06/28/2018,Politicians,@algore,"Under the strong leadership of @GovMurphy, New Jersey is primed to become one of America's biggest turnaround stori… https://t.co/1wcubgRDIE" +06/28/2018,Politicians,@algore,"Had a great conversation with @Patrickxander, @vixbwn, @Ischops & @PaolaFiore on the origins of @ClimateReality and… https://t.co/yL4E2yer3L" +06/28/2018,Politicians,@algore,"Congrats on the update to 'The Madhouse Effect’, @MichaelEMann! Can’t wait to read the new chapter. https://t.co/RdMy9uHuhB" +06/27/2018,Politicians,@algore,Leaders in the Netherlands are moving ahead with a law to cut greenhouse gas emissions 95% by 2050. This sets a new… https://t.co/S1GtmQgIyn +06/27/2018,Politicians,@algore,"Powerful panel, at the Berlin @ClimateReality Leadership training, on how the climate crisis impacts human migratio… https://t.co/J5wxxLSTtd" +06/27/2018,Politicians,@algore,"We are all feeling worsening impacts of the climate crisis, especially the most vulnerable countries. Today we have… https://t.co/We6BAwAoJB" +06/26/2018,Politicians,@algore,To remain a global & regional leader in the transition to a sustainable future Germany must meet its 2030 emissions… https://t.co/IICFRuILzm +06/26/2018,Politicians,@algore,We're about to kick off our @ClimateReality training in Berlin where 675 leaders at all levels from around the worl… https://t.co/WQSodNbTEo +06/25/2018,Politicians,@algore,The German coal commission is critical to ensure the country achieves its climate targets with a #justtransition fo… https://t.co/nsPEEQfvjF +06/21/2018,Politicians,@algore,"This August, I’m heading to Los Angeles to train our next class of activists to become @ClimateReality Leaders. App… https://t.co/klQ5Pg6zkN" +06/20/2018,Politicians,@algore,Tearing families apart and putting kids in an Archipelago of Cages is not the America that we know and love. We are… https://t.co/6V78tSGJy4 +06/19/2018,Politicians,@algore,This hits close to home. Literally. The Koch Brothers want more traffic jams so they can sell more petroleum. Then… https://t.co/QulHVNt8Lh +06/14/2018,Politicians,@algore,Good for @patagonia for giving employees the day off to vote in November. Others should follow their lead. We need… https://t.co/cNn2SLHcDL +06/13/2018,Politicians,@algore,"New, startling evidence of ice sheet melt in Antarctica that poses a grave threat to humanity. We have the tools to… https://t.co/lWCWcLeAMC" +06/13/2018,Politicians,@algore,"You are an inspiration to all of us, Anwar. I know you’ll keep fighting for your core principles of democracy, and… https://t.co/0Ymhiam7pR" +06/12/2018,Politicians,@algore,The market continues to favor clean energy over fossil fuels. Solar accounted for 55% of new electricity in Q1 of 2… https://t.co/mAwwG2kGcB +06/12/2018,Politicians,@algore,Our @ClimateReality Leadership Corps takes people of all backgrounds and makes them effective leaders in solving th… https://t.co/ERhyBCa8cy +06/11/2018,Politicians,@algore,My friend @JohnDoerr knows a thing or two about setting ambitious goals and achieving them. I enjoyed learning abou… https://t.co/1h8sjAeRju +06/06/2018,Politicians,@algore,.@ClimateReality Leaders are developing climate solutions across the globe today. I hope you'll join our training o… https://t.co/oNVmDM4yBd +06/05/2018,Politicians,@algore,I stand with @RevDrBarber & the #PoorPeoplesCampaign serving the moral cause to end ecological devastation in Ameri… https://t.co/D7ErO96sCm +06/04/2018,Politicians,@algore,"As the price of clean energy drops, investments in fossil fuels are risky and could be left stranded. Investors sho… https://t.co/Edf0ROmEUD" +06/04/2018,Politicians,@algore,"In the noisy and crowded media environment, it is more important than ever to find effective ways of breaking throu… https://t.co/pG2IwdjKaS" +06/01/2018,Politicians,@algore,Today marks 1 year since President Trump announced plans to withdraw from the #ParisAgreement. Tomorrow marks 1 yea… https://t.co/8W4U52OiGK +05/31/2018,Politicians,@algore,Glad to be part of a new collection of stories about the forging of the #ParisAgreement. Check out Profiles of Pari… https://t.co/pGu2DWi8ar +05/29/2018,Politicians,@algore,Fossil fuels are subsidized 38x more than renewables globally. Now the Canadian government wants to spend billions… https://t.co/eaIvbKkOUs +05/29/2018,Politicians,@algore,The climate crisis is a public health issue. It’s important that former EPA Chief Gina McCarthy will launch… https://t.co/bYsuiF8KSO +05/23/2018,Politicians,@algore,How can educators bring math and science to life? Through music and creativity! Great piece on @NBCNightlyNews feat… https://t.co/fbhDf3AkYq +05/21/2018,Politicians,@algore,"We must, we can, and we will solve the climate crisis. I hope you’ll join @ClimateReality and me in Berlin June 26… https://t.co/nZla8ditxj" +05/17/2018,Politicians,@algore,Washington voters should vote #Yeson1631 which puts a price on pollution and ensures the state continues to be a le… https://t.co/B2XtDjyEfT +05/15/2018,Politicians,@algore,Hurricane Harvey dumped as much rain on TX & Louisiana in 5 days as the full flow of Niagara Falls over 500 days. T… https://t.co/djOTTKqHPP +05/10/2018,Politicians,@algore,Congratulations to the people of Malaysia and to my friends @anwaribrahim and @drwanazizah on your historic victory… https://t.co/YHS8PWCyiM +05/10/2018,Politicians,@algore,"Good for @washingtonpost, exposing this pitiful attempt to downplay the threat of the climate crisis on our militar… https://t.co/raKs8DfRzL" +05/10/2018,Politicians,@algore,The Kinder Morgan pipeline carrying dirty tar sands oil would be a step backward in our efforts to solve the climat… https://t.co/N8ggNhzSNE +05/08/2018,Politicians,@algore,It’s imperative that we all do our part to protect our shared home. Join me in Berlin June 26 - 28 to become a… https://t.co/nt11FO6UAX +05/08/2018,Politicians,@algore,"More than 10 million people are now employed by the renewable energy industry, according to @IRENA. Just the latest… https://t.co/W7ppFWkv98" +05/03/2018,Politicians,@algore,"CO2 levels in our atmosphere are now the highest in recorded history, going back at least 800,000 years, according… https://t.co/2h1dApr6Tn" +05/03/2018,Politicians,@algore,"17 of the hottest years on record have been in the last 18 years. Nowhere is this more stark than in Pakistan, wher… https://t.co/7eU7rdhQvt" +05/02/2018,Politicians,@algore,"This June, I’m gathering climate experts and citizen leaders in Berlin for our next @ClimateReality leadership trai… https://t.co/He1jS0o9Ej" +05/01/2018,Politicians,@algore,The climate crisis affects us in so many ways. Here’s another - our planet is getting warmer and that’s playing a m… https://t.co/q7am6OyWHR +05/01/2018,Politicians,@algore,I stand with @JerryBrownGov and the coalition of states standing up to EPA’s attempt to weaken greenhouse gas emiss… https://t.co/EGlc12gSdH +04/30/2018,Politicians,@algore,Congratulations to my friend @johndoerr for all of the success with his new book “Measure What Matters”! https://t.co/Gcv1WLETHL +04/26/2018,Politicians,@algore,The world is at the beginning of a seismic shift that will benefit the planet & society. My new oped with David Blo… https://t.co/SIzQ28Q9tL +04/26/2018,Politicians,@algore,"It is such an honor to be here in Montgomery, Alabama at the @MemPeaceJustice. Thank you Bryan Stevenson & @eji_org… https://t.co/8zsPHJxPgy" +04/26/2018,Politicians,@algore,"Thanks to @Wellesley for having me, and for the thoughtful questions! Proud of the progress you’ve made through you… https://t.co/0XKtqgN0kM" +04/25/2018,Politicians,@algore,"Transportation is now the top GHG emitting sector in America. Smart, creative thinking like this from… https://t.co/r8UDI6eRP3" +04/18/2018,Politicians,@algore,"Thanks for having me, Mark, to discuss the exciting opportunity presented by the Sustainability Revolution! https://t.co/OMeYD8WHF1" +04/18/2018,Politicians,@algore,Former First Lady Barbara Bush was a pillar of strength for her family and was much admired in our country. Both th… https://t.co/xDmmJzOBlJ +04/17/2018,Politicians,@algore,Thank you @officialjaden! You and other leaders in your generation ​give me hope that we will solve the climate cri… https://t.co/7Z6d0A4Uoa +04/16/2018,Politicians,@algore,Looking forward to celebrating Earth Day this year with everyone @sachamamaorg in Miami! +04/12/2018,Politicians,@algore,"Senators should reject Mike Pompeo’s nomination to be Secretary of State. He denies the climate crisis, and has bee… https://t.co/2czurFFwed" +04/09/2018,Politicians,@algore,Apple is proving the business case for reducing GHG emissions and simultaneously reducing energy costs. All of its… https://t.co/R9qq7L36kG +04/09/2018,Politicians,@algore,Important piece from @JustinHGillis about the threat of EPA Administrator Scott Pruitt. The climate crisis is real… https://t.co/AZ8v0khM1L +04/06/2018,Politicians,@algore,I will greatly miss Senator Danny Akaka. Here is my statement on his passing. https://t.co/kRYCVbQSE9 +04/06/2018,Politicians,@algore,Shell proved to be prescient about violent storms resulting from the climate crisis in the 1980s. But they did noth… https://t.co/i9G7Dfa6O2 +04/05/2018,Politicians,@algore,"Last year, climate-related and other natural disasters caused a staggering $306 billion in total damages in the US.… https://t.co/z2kFbdGzdL" +04/03/2018,Politicians,@algore,My friend @johndoerr has written a new book for teams that want to accomplish big goals. I look forward to reading… https://t.co/QqkxQWbIgv +04/02/2018,Politicians,@algore,"The carmakers are reneging on a fair deal – in order to be bailed out by taxpayers, they agreed to strong emissions… https://t.co/CHUMvwESha" +04/02/2018,Politicians,@algore,"Looking forward to tuning into what should be a facinating discussion between Rev. Leo Woodbury, @RevYearwood &… https://t.co/fKzZdViPsh" +03/28/2018,Politicians,@algore,"Proud of my daughter @KarennaGore and all 13 of the men and women who won in court, for standing up to fossil fuel… https://t.co/sAwQGXUo6Z" +03/23/2018,Politicians,@algore,"Thank you to #CDMX for hosting this week’s @ClimateReality Leadership training, and big thanks to everyone + who cam… https://t.co/NKDTa06wY9" +03/23/2018,Politicians,@algore,"I am deeply saddened by the passing of my friend, Nancy McFadden. She was an extraordinary public servant whose wis… https://t.co/MJixQl6bxe" +03/22/2018,Politicians,@algore,Great panel on how Mexico is using a price on carbon to combat the climate crisis. Thanks to Dr. Mario J. Molina of… https://t.co/6nWPr8UGrU +03/22/2018,Politicians,@algore,Great questions this morning from the new Climate Reality Leader trainees here in #CDMX – thank you to Dr. Adrián F… https://t.co/t3yrmdmaGH +03/21/2018,Politicians,@algore,"Thank you to Jorge Villarreal Padilla of ICM, @tabnrgy of @WWF_LAC & Dr. Cuauhtémoc León Diez of @cegamcsur for a t… https://t.co/VRAlE12IcF" +03/21/2018,Politicians,@algore,Getting ready to kick off this week’s @ClimateReality training here in #CDMX! #LeadOnClimate. +03/20/2018,Politicians,@algore,Excited to announce that I just joined @Instagram! You can follow me here: https://t.co/UmVSIg2Zab +03/14/2018,Politicians,@algore,Stephen Hawking's historic breakthroughs in science advanced humanity’s understanding of the universe even as the e… https://t.co/aCQTdpIzgT +03/13/2018,Politicians,@algore,We need more strong voices like that of @SenWhitehouse calling on politicians to respond to the urgent threat of th… https://t.co/BfdphcsPrh +03/09/2018,Politicians,@algore,.@NYGovCuomo is showing leadership on the climate crisis & building a sustainable future in NY. Proud to support hi… https://t.co/vbZIVLAJUn +03/08/2018,Politicians,@algore,Excited to be with @Kathleen_Wynne today fighting for her bold #climate agenda. We can’t go backwards in Ontario or… https://t.co/8oqdCrwqSc +03/07/2018,Politicians,@algore,More positive momentum. Energy storage in the US is growing rapidly and may double this year according to… https://t.co/bTd2sWO7em +02/28/2018,Politicians,@algore,"The number of cities powered mostly by renewable energy has more than doubled since 2015, according to @CDP, with m… https://t.co/5KJIdWZPXL" +02/27/2018,Politicians,@algore,"It’s concerning how warm the Arctic is right now, with record temps and low sea ice. As @thinkprogress says, what h… https://t.co/MZZSukIXOz" +02/21/2018,Politicians,@algore,"Rev. Billy Graham personally touched the lives, hearts & souls of hundreds of millions of people with his determina… https://t.co/frxUMiyqja" +02/20/2018,Politicians,@algore,"In India (7% of global emissions), wind + solar = 64% of new electricity capacity in 2017, according to… https://t.co/5HkAtQVeY5" +02/20/2018,Politicians,@algore,"In the EU (10% of global emissions), wind + solar = 77% of new electricity capacity in 2017, according to… https://t.co/hY144dj4RB" +02/20/2018,Politicians,@algore,"In the United States (15% of global emissions), wind + solar = 62% of new electricity capacity in 2017, according t… https://t.co/nzRk52LmK7" +02/20/2018,Politicians,@algore,"In China (28% of global emissions), wind + solar = 55% of new electricity capacity in 2017, according to… https://t.co/UpLYEd2OWs" +02/20/2018,Politicians,@algore,"As clean renewable energy continues to grow at an unprecedented pace, the highest emitting countries are driving to… https://t.co/1jqkdOBvpT" +02/14/2018,Politicians,@algore,U.S intelligence officials are looking at the science and warning about the risks of the climate crisis. Why isn’t… https://t.co/nBhjNcg0p0 +02/12/2018,Politicians,@algore,Important #cleanenergy progress coming from Australia. Solar power could double in capacity this year as the cost t… https://t.co/ET1cIeCXJ8 +02/06/2018,Politicians,@algore,"In Colorado and parts of the U.S, energy from solar and wind is now the cheapest source of power, even including th… https://t.co/Yz0QYR5sWF" +02/02/2018,Politicians,@algore,"For Europe to meet its #ParisAgreement goals & build a more sustainable financial system, it should follow the fina… https://t.co/IzcOwXJqDi" +01/31/2018,Politicians,@algore,There is no war on American energy. America should lead on clean energy! Smart leaders are tapping into this unprec… https://t.co/EPS4D7gJAK +01/30/2018,Politicians,@algore,"Great to see New Jersey back in the Regional Greenhouse Gas Initiative, under the leadership of my good friend… https://t.co/nbjSt3tJ7z" +01/30/2018,Politicians,@algore,I'm calling on members of @cducsubt & @spdbt in Germany to phase out coal by 2030 in #GroKo talks. This is your mom… https://t.co/hT6ANape0G +01/30/2018,Politicians,@algore,I hope Germany will commit to #endcoal. The coalition treaty is a chance to follow through on its climate promise a… https://t.co/7objDjqEuZ +01/29/2018,Politicians,@algore,"Proud of my friend Don Henry for being recognized with an Australia Day Honor, for his tireless conservation work w… https://t.co/MizeEu4bgh" +01/25/2018,Politicians,@algore,I’m speaking on the #StepUp2018 panel now at #WEF18! Click here to watch: https://t.co/ODjgLZ0wpx https://t.co/UpY0VvJovY +01/18/2018,Politicians,@algore,"2017 was the 2nd hottest year on record, according to @NASAGoddard, and the warmest year without El Nino. That make… https://t.co/zVLwXZHRRM" +01/17/2018,Politicians,@algore,"Extreme weather and the climate crisis are still top threats to the global economy, according to @WEF’s latest Glob… https://t.co/yjvG5ABPOK" +01/16/2018,Politicians,@algore,Great analysis here - Energy PLUS storage from new solar and wind projects is now cheaper than energy from existing… https://t.co/PgYYlVOnDS +01/13/2018,Politicians,@algore,Any serious national security strategy must address the threat of the climate crisis. Take it from a former Navy ad… https://t.co/PWPXLCai3Y +01/11/2018,Politicians,@algore,"RT @aitruthfilm: All corners of the world are feeling the growing impact of the climate crisis. This is our only home, and this is our mome…" +01/10/2018,Politicians,@algore,More encouraging news! The cost of clean renewable energy and storage continues to plummet. https://t.co/tqZDy4rLcJ +01/09/2018,Politicians,@algore,I applaud the leadership demonstrated today by my friend @GovInslee & Washington state with the announcement of a p… https://t.co/yROHT9QFhV +01/09/2018,Politicians,@algore,I am very proud that @aitruthfilm has been nominated for “Best Documentary” by the British Academy of Film and Tele… https://t.co/RuOM8CQmAR +01/08/2018,Politicians,@algore,"Calling all climate activists: My next @ClimateReality Leadership training is in Mexico City, March 21-23, 2018! Le… https://t.co/WZwJiLg65M" +01/06/2018,Politicians,@algore,"According to the insurance company @MunichRe, 2017 had the most insured losses of any year on record - $135 billion… https://t.co/lOxy2gBLht" +01/04/2018,Politicians,@algore,"It’s bitter cold in parts of the US, but climate scientist Dr. Michael Mann explains that’s exactly what we should… https://t.co/LZi67vLixU" +01/04/2018,Politicians,@algore,"President Trump is once again defying a majority of American citizens, states, and businesses. His offshore drillin… https://t.co/BgBtZt9Gc4" +01/03/2018,Politicians,@algore,"I send my condolences to the LDS Church and to the family of its leader, Thomas Monson. https://t.co/B8iOhVZT15" +12/19/2017,Politicians,@algore,The world’s largest polluter just launched the world’s largest carbon market. We are at a tipping point in the clim… https://t.co/J84n6ijRqQ +12/18/2017,Politicians,@algore,"Saddened about the loss of a great man and scholar, Calestous Juma. https://t.co/Z3B9j4cSnz" +12/14/2017,Politicians,@algore,Total solar capacity in developing countries has more than tripled in the past three years thanks to cheaper clean… https://t.co/TtSXTmz205 +12/13/2017,Politicians,@algore,"New scientific studies link the climate crisis and Hurricane Harvey’s record rainfall, which devastated south Texas… https://t.co/1M4fBC2lHe" +12/12/2017,Politicians,@algore,Important step forward in The Philippines today to cut carbon pollution. Very proud of Senator @loren_legarda & the… https://t.co/mdghMAiOzG +12/12/2017,Politicians,@algore,"The recent images & stories of the fires in California are alarming. If we don't solve the climate crisis, these ty… https://t.co/GcQwU50qCH" +12/11/2017,Politicians,@algore,Great @drvox piece about the Trump administration’s push to prolong the inevitable decline of the coal industry. Pe… https://t.co/myafayMUCU +12/07/2017,Politicians,@algore,"The iconic ""Blue Marble"" photo was taken 45 years ago today. This image allowed us to see how beautiful and fragile… https://t.co/1e97UUYu77" +12/07/2017,Politicians,@algore,"Thank you, Senator @loren_legarda for joining this year’s #24HoursofReality, for your inspiring leadership and your… https://t.co/xnRGh03OzG" +12/06/2017,Politicians,@algore,"Millions of viewers joined us for #24HoursofReality, a global journey focused on the stories of people speaking out… https://t.co/HQVecfZ9qo" +12/05/2017,Politicians,@algore,Wonderful performance @allisimpson! Thank you so much for all of your help with #24HoursofReality!… https://t.co/BGdQzHLTpF +12/05/2017,Politicians,@algore,It’s such an honor to have President @mbachelet join us for #24HoursofReality to discuss the importance of being a… https://t.co/5ABitG5Qjq +12/05/2017,Politicians,@algore,Always great to have the one and only @CalumWorthy in the building for #24HoursofReality! https://t.co/7BXgqAb4lN https://t.co/QWB9I3jpzn +12/05/2017,Politicians,@algore,197 countries signed up to the Paris Agreement to take global warming pollution down to net-zero by mid-century. Bu… https://t.co/f1NR16vTMD +12/05/2017,Politicians,@algore,Having a great time with the @ClimateReality team at #24HoursofReality. You can join here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,".@HelenHunt, thanks for being a part of #24HoursofReality! See you soon! https://t.co/37ovJR44Zj" +12/05/2017,Politicians,@algore,"An increasing number of people’s lives are being affected by the climate crisis, causing a growing awareness that w… https://t.co/SkJZkFomT3" +12/05/2017,Politicians,@algore,Thank you @YoungParis for that powerful & unforgettable performance! #24HoursofReality https://t.co/KItX9a50hM +12/05/2017,Politicians,@algore,We’re now in the second half of #24HoursofReality! Tune in here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,The world is moving forward towards a clean energy future. Join @ClimateReality and me now and learn how you can be… https://t.co/ujPb3C8Mm8 +12/05/2017,Politicians,@algore,We’re about to start hour 10 for #24HoursofReality! https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,.@jason_mraz's performance tonight at #24HoursofReality was excellent. Great seeing you! https://t.co/Yyh6AW1vwD +12/05/2017,Politicians,@algore,Thanks @TeaLeoni & @MrSilverScott for being a part of #24HoursofReality - Be the Voice of Reality! https://t.co/SiOrgUnboD +12/05/2017,Politicians,@algore,.@RyanTedder your moving message with 'Truth to Power' was perfect to kick off #24HoursofReality - Be the Voice of… https://t.co/YLL630ZD9e +12/05/2017,Politicians,@algore,24 Hours of Reality https://t.co/IaoPy00d2F +12/05/2017,Politicians,@algore,24 Hours of Reality https://t.co/IRVcbQzerZ +12/05/2017,Politicians,@algore,Thanks @OregonGovBrown for joining us and being a voice of reality to make sure we are still in the Paris Agreement… https://t.co/uJzva1vebi +12/05/2017,Politicians,@algore,Hello and welcome to #24HoursofReality – Be the Voice of Reality! Join us here: https://t.co/7BXgqAb4lN +12/05/2017,Politicians,@algore,On to hour 2 of #24HoursofReality. You can join us here! https://t.co/7BXgqAb4lN +12/04/2017,Politicians,@algore,@SherylCrow @HelenHunt @nilerodgers @IggyPop @elliegoulding @The_Hives @thekillers @sarahbackhouse @billybragg… https://t.co/DssfB4IN2B +12/04/2017,Politicians,@algore,"For the next 24 hours, we’ll be joined by @SherylCrow, @HelenHunt, @nilerodgers, @IggyPop, @elliegoulding,… https://t.co/4lEwK0rm1Q" +12/04/2017,Politicians,@algore,24 Hours of Reality https://t.co/tv6mdecuyt +12/04/2017,Politicians,@algore,Join me for a 24-hour live event as we unite to demand solutions to the climate crisis. #24HoursofReality is LIVE:… https://t.co/VuORrEnHGr +12/04/2017,Politicians,@algore,We’re about to kick off another #24HoursofReality join us starting tonight at 6pm ET. https://t.co/lWwevFTIrA https://t.co/47ruYWsiTC +12/04/2017,Politicians,@algore,"Today is the day! Join me, @ClimateReality, and our incredible guests for #24HoursofReality. The broadcast starts a… https://t.co/atMNeccWAn" +12/04/2017,Politicians,@algore,I am very optimistic that we will solve the climate crisis. And one reason is that so many people from all around t… https://t.co/AZ9OVtYr5O +12/03/2017,Politicians,@algore,"#24HoursofReality starts tomorrow! The climate crisis is the biggest challenge of our time — we can, we must, and w… https://t.co/siSn1qALVH" +12/02/2017,Politicians,@algore,I’m excited to be kicking off another #24HoursofReality in just three days. Join me and @ClimateReality as we shine… https://t.co/H0P3lMCsML +12/02/2017,Politicians,@algore,"One of the county’s biggest credit rating agencies, @MoodysInvSvc says cities and states should prepare for the cli… https://t.co/mVzLAmeeHb" +12/01/2017,Politicians,@algore,I’m excited to be kicking off another #24HoursofReality in just three days. Join me and @ClimateReality as we shine… https://t.co/DW1z5XCrlx +11/30/2017,Politicians,@algore,Great event today at #Slush17 in Helsinki. Terrific group of impressive entrepreneurs! Also met with President @Ni… https://t.co/j55FPl2020 +11/29/2017,Politicians,@algore,Clean energy is getting ever cheaper and more reliable. Wind power capacity has now surpassed coal in Texas. https://t.co/iJYA5ZMDG3 +11/28/2017,Politicians,@algore,"For 24 Hours, we’ll travel around the world, telling stories of real people making a real difference for the climat… https://t.co/4PREzYYNl4" +11/27/2017,Politicians,@algore,"On December 4-5, join me, @ClimateReality, and our all-star guests for #24HoursofReality. We’ll be discussing the i… https://t.co/m3z30bAsBl" +11/20/2017,Politicians,@algore,"Mother Nature can be very persuasive. More Americans are concerned about the climate crisis, and connecting the dot… https://t.co/SbCMDipqm7" +11/17/2017,Politicians,@algore,The world is moving forward towards a clean energy future. Join @ClimateReality and me December 4-5:… https://t.co/kaWF2chYXr +11/16/2017,Politicians,@algore,"More countries are committing to phase out coal, as the world transitions to a clean energy future. Congrats to Can… https://t.co/VSpBGaItHy" +11/16/2017,Politicians,@algore,"Despite what’s happening in Washington, I know that we can solve the climate crisis with actions from people like y… https://t.co/tfP6CQU8kn" +11/15/2017,Politicians,@algore,Thanks to President Macron for pledging to replace U.S. climate science funding. While you step up to fill the lead… https://t.co/7Qv4iuVWqJ +11/15/2017,Politicians,@algore,"We must, we can, and we will solve the climate crisis. I hope you'll join me on December 4-5 for #24HoursofReality… https://t.co/gjr598UhnK" +11/13/2017,Politicians,@algore,So proud of my daughter @KarennaGore and her fantastic speech at last month's Rights of Nature Symposium in New Orl… https://t.co/DQYT10Vmut +11/12/2017,Politicians,@algore,"Great visit to Bonn for #COP23. It was clear that American leadership on #climate is still strong, despite the best… https://t.co/gJe7Jq8o9R" +11/11/2017,Politicians,@algore,"I'm honored to be a part of today's session here at #COP23 titled ""Maintaining U.S. Engagement in International Cli… https://t.co/JgeGwdVyXd" +11/11/2017,Politicians,@algore,"Inspired to be in Bonn for #COP23 this week and see the leaders of so many nations, states, cities, NGOs and busine… https://t.co/yqXRcABcMD" +11/10/2017,Politicians,@algore,Great meeting with Executive Secretary @PEspinosaC today here at #COP23! https://t.co/cakNSSRPEM +11/06/2017,Politicians,@algore,"If you are in New Jersey, get out and vote tomorrow for my friend, @PhilMurphyNJ. Now more than ever, your vote mat… https://t.co/GAws1whyBm" +11/03/2017,Politicians,@algore,America’s leading scientists have confirmed what Mother Nature has been making plenty clear: the climate crisis is… https://t.co/AAsRJMxmd9 +11/03/2017,Politicians,@algore,"@BillClinton Thanks, @BillClinton. It was a privilege to serve our nation with you for those 8 yrs. Along with our… https://t.co/PSGLsvQ9p7" +10/31/2017,Politicians,@algore,The climate crisis is already having serious negative impacts on the health of hundreds of millions of people aroun… https://t.co/hlH1XhKzeZ +10/29/2017,Politicians,@algore,"Five years since Hurricane Sandy, and dangerous storms continue to batter our coasts, with bigger downpours, floodi… https://t.co/pEdAo0CPGf" +10/28/2017,Politicians,@algore,Great conversation yesterday with my good friend @JohnKerry for the @KerryInitiative. https://t.co/VSgUohhiiT +10/27/2017,Politicians,@algore,Thrilled by @AFLCIO's climate statement. Thanks to @steelworkers' Leo W. Gerard for bringing the resolution to unan… https://t.co/GQ8Nn9IiOL +10/26/2017,Politicians,@algore,Looking forward to tonight! Join me for a nationwide screening of @aitruthfilm + live webcast Q&A. Find your screen… https://t.co/2fEKccXX1e +10/25/2017,Politicians,@algore,"Clean energy jobs keep growing. Solar panel installer is now the fastest growing job, followed by wind turbine tech… https://t.co/WxA1WLvgPQ" +10/24/2017,Politicians,@algore,Important read: devastating flooding will hit New York City more often due to climate-driven sea level rise https://t.co/FJ0BEIMGSO +10/23/2017,Politicians,@algore,In Houston today talking about the climate crisis and its impact on storms like #Harvey. The @HoustonChron put it w… https://t.co/yUJFIez4m4 +10/20/2017,Politicians,@algore,"Couldn’t agree with you more, @jerry_jtaylor. A lot of great questions on this string that deserve answers. https://t.co/773W7PZURA" +10/20/2017,Politicians,@algore,"Thanks to everyone who came out to the @ClimateReality training in Pittsburgh, for your dedication to the environment! #LeadOnClimate" +10/19/2017,Politicians,@algore,"Next Thursday (10/26), please join me for a nationwide screening of @aitruthfilm + live webcast Q&A. Find a local s… https://t.co/0WhyYj09cU" +10/19/2017,Politicians,@algore,Now starting our last day of the @ClimateReality Leadership training here in Pittsburgh! What great energy this week! #LeadOnClimate +10/18/2017,Politicians,@algore,"Having a great time in Pittsburgh, where our new @ClimateReality leaders are learning how to #LeadOnClimate & help solve the climate crisis!" +10/18/2017,Politicians,@algore,"The climate crisis is undeniable, and can feel overwhelming. If you are wondering what YOU can do, AN INCONVENIENT… https://t.co/VEItNSeIVr" +10/18/2017,Politicians,@algore,On to day 2 of the Pittsburgh @ClimateReality training with this inspiring and energetic group of leaders! #LeadOnClimate +10/17/2017,Politicians,@algore,"The city of Pittsburgh has chosen to #LeadOnClimate, which makes it an ideal location for this week’s @ClimateReality training!" +10/17/2017,Politicians,@algore,Hello Pittsburgh! We're about to kickoff the largest ever @ClimateReality Leadership training! #LeadOnClimate +10/12/2017,Politicians,@algore,Looking forward to talking about clean renewable energy tomorrow at the #NCES. #VegasStrong #CleanEnergy +10/10/2017,Politicians,@algore,Repealing the Clean Power Plan is out of step with our movement to solve the climate crisis. My statement:… https://t.co/Vr6CbqSzaS +10/03/2017,Politicians,@algore,A sustainable 21st Century economy requires a long term investment approach. @GenerationFndt @UNEP_FI @PRI_News https://t.co/aVuOarbEcc +09/24/2017,Politicians,@algore,My thoughts and prayers are with the congregation of the Burnette Chapel Church of Christ and all those affected by this horrific event. +09/24/2017,Politicians,@algore,"Today’s tragic shooting in Antioch, Tennessee is heartbreaking." +09/18/2017,Politicians,@algore,RT @TheYoungTurks: Al Gore Warned Us About Stronger Hurricanes YEARS AGO: https://t.co/CCsej0CnA1 via @YouTube +09/18/2017,Politicians,@algore,"RT @globalcompact: We must make faster progress, and the key is in this #UNPSF room. Non-state actors are essential to the #ParisAgreement,…" +09/18/2017,Politicians,@algore,Excited to join @wef's #wefimpact Summit discussing the #future of #climate #InclusiveGrowth #mobility & more: https://t.co/3cIzsp80zT +09/07/2017,Politicians,@algore,It’s time to speak truth to power about the climate crisis. Join me in Pittsburgh & learn how you can… https://t.co/ZAyZYEbx5N +09/06/2017,Politicians,@algore,"This October, join me for a @ClimateReality Leadership Training and learn how you can #LeadOnClimate! Apply here:… https://t.co/X7tlKnifnT" +09/06/2017,Politicians,@algore,"Important read, featuring my friend @CathFlowers, on how hookworm affects impoverished parts of the southern US​: https://t.co/eGl7Vjolwr" +09/05/2017,Politicians,@algore,We must stand up &demand climate action. Learn how to #LeadOnClimate at the next @ClimateReality Leadership Trainin… https://t.co/UWIy5GWyDo +09/05/2017,Politicians,@algore,"In addition to renewables, grid storage may soon be cheaper than natural gas backup ""peaking"" generators: https://t.co/zHODHV856V" +09/02/2017,Politicians,@algore,RT @aitruthfilm: We're asking YOU. Tell the people in power where you stand & urge them to protect our home. Act now: https://t.co/IVpuGTbY… +08/29/2017,Politicians,@algore,My heart is with the people of Texas today. Find out how you can help here: https://t.co/aGChrQ4w4d +08/26/2017,Politicians,@algore,"In India, renewables cost less than coal-the power sector must continue incorporating solar&wind to stay competitive https://t.co/HpIexPKJru" +08/24/2017,Politicians,@algore,"Important & disturbing read on how increasing temps are thawing Alaska's permafrost, exacerbating the climate crisis https://t.co/iRdKq3HPsI" +08/23/2017,Politicians,@algore,Important read by @NaomiOreskes: new research further shows Exxon knowingly misled the public on the climate crisis: https://t.co/Eh3ObXuEai +08/22/2017,Politicians,@algore,Great read by @JustinHGillis on how scientific forecasts of yesterday's eclipse relate to the climate crisis: https://t.co/UtJLltmROz +08/22/2017,Politicians,@algore,Magnificent images taken by #DSCOVR of yesterday's eclipse! You can see more here: https://t.co/NX8vzCW0IF https://t.co/6of8IzGc1T +06/30/2018,Politicians,@NancyPelosi,Ending the Trump Administration’s current family separation policy doesn’t demand trading one form of child abuse f… https://t.co/hACsCaTN33 +06/29/2018,Politicians,@NancyPelosi,.@RepCartwright is proud of how America’s labor unions improved the lives of people in his corner of Pennsylvania &… https://t.co/gltTRtJRGw +06/29/2018,Politicians,@NancyPelosi,RT @RepAnthonyBrown: These men and women were targeted for doing their job - reporting on the community they cherished and constantly seeki… +06/28/2018,Politicians,@NancyPelosi,"Praying for everyone injured & the families of those lost in today’s shooting at the Capital Gazette in Annapolis,… https://t.co/lbHrcveJQQ" +06/28/2018,Politicians,@NancyPelosi,I am speaking with reporters here in the Capitol during what has been a very eventful week in Washington and our na… https://t.co/y8T52ABBu3 +06/28/2018,Politicians,@NancyPelosi,I will be speaking live from the Capitol today at 10:30 am ET. Tune in here: https://t.co/jMGUtNa4Wc +06/27/2018,Politicians,@NancyPelosi,Americans are about to see if @SenateMajLdr & @SenateGOP will heed the McConnell Rule or rashly proceed to confirm… https://t.co/Z8yr2llVgl +06/27/2018,Politicians,@NancyPelosi,So-called moderate Republicans folded & destroyed the best chance Congress had to provide a permanent legislative f… https://t.co/7Qga3MIAzK +06/27/2018,Politicians,@NancyPelosi,America’s unions are the foundation of the middle class. The Supreme Court’s radical ruling in #Janus will impact w… https://t.co/WsKWxwoTSg +06/27/2018,Politicians,@NancyPelosi,RT @RepAdams: One in five public school teachers have second jobs during the school year. We should be doing more to help these public serv… +06/27/2018,Politicians,@NancyPelosi,"RT @RepStephMurphy: Raised in a union family, I know how unions grow the middle class. Today’s #Janus decision is a blow to the ability of…" +06/27/2018,Politicians,@NancyPelosi,RT @RepBarbaraLee: The #Janus decision is disgraceful. SCOTUS has weakened workers’ rights and further rigged the system for greedy special… +06/27/2018,Politicians,@NancyPelosi,"RT @keithellison: But make no mistake: as the recent teachers' strikes all across this nation have made clear, when workers join together t…" +06/27/2018,Politicians,@NancyPelosi,"RT @RepBrianHiggins: The SCOTUS decision in the #Janus case continues efforts to chip away at the rights, protections and benefits secured…" +06/27/2018,Politicians,@NancyPelosi,RT @repcleaver: Another win for corporate America at the expense of workers. But the fight isn't over. As seen with teachers across the cou… +06/27/2018,Politicians,@NancyPelosi,RT @WhipHoyer: Dems will continue to fight for the rights of all workers – whether public or private sector – to organize & bargain collect… +06/27/2018,Politicians,@NancyPelosi,RT @JacksonLeeTX18: The Supreme Court’s #Janus decision is an unprecedented attack on the rights of the 17.3 million public employees acros… +06/27/2018,Politicians,@NancyPelosi,The Supreme Court’s radical #Janus ruling tramples over the freedom and basic rights of over 17 million public work… https://t.co/DJTEAem55z +06/27/2018,Politicians,@NancyPelosi,No American should be denied coverage or forced to pay more for their health care simply because they have a pre-ex… https://t.co/o7oi0Jt9Xn +06/27/2018,Politicians,@NancyPelosi,RT @RepJoeKennedy: Allowing insurance companies to discriminate against Americans w/ pre-existing conditions will take us back to a system… +06/27/2018,Politicians,@NancyPelosi,.@RepJoeCrowley has been an unwavering champion for America’s working families for almost two decades. I salute Cha… https://t.co/aGPje98mIp +06/26/2018,Politicians,@NancyPelosi,RT @RepCheri: Hey taxpayers- want to know how much you're paying for @realDonaldTrump's policy of #FamilySeparation and putting kids in cag… +06/26/2018,Politicians,@NancyPelosi,"The Supreme Court’s dangerous decision in Hawaii v. Trump undermines our values, our security, & our Constitution.… https://t.co/d9rNnyXkAP" +06/26/2018,Politicians,@NancyPelosi,RT @RepAnnieKuster: Being born a woman shouldn’t be a “pre-existing condition.” But if Republicans’ attacks on protections for millions of… +06/25/2018,Politicians,@NancyPelosi,It’s been five years since the Supreme Court devastated the Voting Rights Act by stripping out core provisions. Eve… https://t.co/bweRaFRhvE +06/25/2018,Politicians,@NancyPelosi,"In the crucial months ahead, we must strive to make America beautiful again. Trump’s daily lack of civility has pro… https://t.co/1FxHx1AYgp" +06/23/2018,Politicians,@NancyPelosi,"Earlier this week, I visited our southern border with some of my Democratic colleagues. It was an experience we wil… https://t.co/ueGAdJxkSz" +06/22/2018,Politicians,@NancyPelosi,"All of us are just one diagnosis, one accident, one phone call away from needing pre-existing condition protections… https://t.co/ebdsVrGCw7" +06/21/2018,Politicians,@NancyPelosi,"Because the law protects people with pre-existing conditions, Gladys didn’t have to worry whether her son’s asthma… https://t.co/lQr47fKfKg" +06/21/2018,Politicians,@NancyPelosi,"RT @nikiinthehouse: I will continue to fight for Joe, Pamela, Lin, and the tens of thousands of people in #MA3 and across Massachusetts who…" +06/21/2018,Politicians,@NancyPelosi,"RT @USRepKCastor: As Republicans renew their attack on protections for people with preexisting conditions, I want to share Brian’s story an…" +06/21/2018,Politicians,@NancyPelosi,RT @RepJudyChu: Charles woke up in the middle of the night w/ severe back spasms. But it turned out it was actually a seizure. He was rushe… +06/21/2018,Politicians,@NancyPelosi,"RT @janschakowsky: The Trump Administration is refusing to defend the #ACA in court, meaning that more than 130 million Americans with pre-…" +06/21/2018,Politicians,@NancyPelosi,Folk-singer Buddy Mondlock got Hepatitis C from a blood transfusion after a car accident in 1981. After decades bei… https://t.co/aQW6Z3Ymxq +06/21/2018,Politicians,@NancyPelosi,"RT @RepMarcyKaptur: .@POTUS continues to undermine health protections that save people's lives, including preventing discrimination b/c of…" +06/21/2018,Politicians,@NancyPelosi,"Instead of wasting time on House Republicans’ destructive & partisan bill, we should follow the Senate and return t… https://t.co/l2v2fMj0Vv" +06/21/2018,Politicians,@NancyPelosi,RT @RepKClark: This is Jen. Protections for Americans with pre-existing conditions allowed her and her newborn daughter to get the care the… +06/21/2018,Politicians,@NancyPelosi,"RT @RepBonnie: If Republicans succeed in getting rid of protections for pre-existing conditions, families like Lisa's could suffer. Her son…" +06/21/2018,Politicians,@NancyPelosi,"RT @RepDelBene: Last year, Genesis & Suzy shared their sons’ stories during the health care debate, and they’ve stuck w/me. I’m sharing the…" +06/21/2018,Politicians,@NancyPelosi,"Little Zoe was born w/ a congenital heart defect. Now, her mom is sharing her concerns about what would happen if R… https://t.co/OCUEAn4xVC" +06/21/2018,Politicians,@NancyPelosi,"RT @LauraLeHatcher: Thank you @NancyPelosi - Simon, @LittleLobbyists and I are so lucky to have a fellow strong Mom fighting with us to pro…" +06/21/2018,Politicians,@NancyPelosi,"The Trump Administration’s reckless reorganization proposal is a recipe for more bureaucratic, inefficient and unre… https://t.co/fhhW2fTTAZ" +06/21/2018,Politicians,@NancyPelosi,"RT @RepMaloney: As we fight to #KeepFamliesTogether & reunite those separated, we have must also #ProtectOurCare. @GOP wants to roll back p…" +06/21/2018,Politicians,@NancyPelosi,"Meet Simon & his mom, Laura. If you ask me, they deserve to know that Simon won’t be denied health coverage just be… https://t.co/uwGzadg6ds" +06/21/2018,Politicians,@NancyPelosi,RT @JuliaBrownley26: We must #ProtectOurCare from the Trump administration’s cruel attempts to roll back protections for millions of Americ… +06/21/2018,Politicians,@NancyPelosi,RT @repmarkpocan: We must fight to make sure people with pre-existing conditions don’t have to worry about the threat of being denied healt… +06/21/2018,Politicians,@NancyPelosi,Maryann from California has been fighting cancer for five years. Take a moment to read her thoughts on the prospect… https://t.co/wXHdwpxQAo +06/21/2018,Politicians,@NancyPelosi,"We all pledge to protect our Constitution & country. Americans of all stripes have fought to protect our country, i… https://t.co/kQYKPrHQGC" +06/21/2018,Politicians,@NancyPelosi,RT @RepRichardNeal: No one should be denied care because they have a pre-existing condition. Republicans are trying to strike down protecti… +06/21/2018,Politicians,@NancyPelosi,"RT @RepLoisFrankel: Cheryl from #PBC was born w/ a heart defect. After years of being denied coverage, the #ACA made it possible for her to…" +06/21/2018,Politicians,@NancyPelosi,Jeremy’s son has been cancer-free for 7 years – but his journey isn’t over. And that’s why we must defend pre-exist… https://t.co/j5PqV8ieOC +06/21/2018,Politicians,@NancyPelosi,"Now, Republicans are using the #GOPTaxScam for the rich as the basis for a lawsuit to strike down protections for p… https://t.co/ezRiTIwCGE" +06/21/2018,Politicians,@NancyPelosi,"For six months we have watched as the #GOPTaxScam enriched wealthy shareholders, rewarded companies that send jobs… https://t.co/uXDr0BoRZ1" +06/21/2018,Politicians,@NancyPelosi,"RT @RepJimmyGomez: Thread about @realDonaldTrump’s executive order: + +I’ve had time to read it & it fixes nothing. + +Families seeking asylum…" +06/21/2018,Politicians,@NancyPelosi,House Republicans are intent on labeling their anti-family immigration legislation as a “compromise.” It must be a… https://t.co/dkno9WGG6u +06/21/2018,Politicians,@NancyPelosi,"Republicans continue to be complicit in @realDonaldTrump’s atrocities. Instead of standing up for families, they ar… https://t.co/Uk3vyd8W70" +06/21/2018,Politicians,@NancyPelosi,"I will always be proud to know that during my time as Speaker, the House passed the #DREAMAct." +06/21/2018,Politicians,@NancyPelosi,It’s important for people to know how Republicans are using the #GOPTaxScam for the rich to attack protections for… https://t.co/c8qn1NutCN +06/21/2018,Politicians,@NancyPelosi,"I’m speaking with reporters during today’s weekly press conference. #FamiliesBelongTogether + +Watch here 👇 https://t.co/HarMuoWIJz" +06/21/2018,Politicians,@NancyPelosi,Democrats want to honor our responsibility to secure our borders but not by putting children in cages. https://t.co/9ku9Geeihw +06/21/2018,Politicians,@NancyPelosi,"I’ll be speaking with reporters at 10:45 am ET in the Capitol. #FamiliesBelongTogether + +Watch here: https://t.co/kLDYzk3L2E" +06/20/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s executive order seeks to replace one form of child abuse with another. Every child is entitled… https://t.co/YDTEWZIIJz +06/20/2018,Politicians,@NancyPelosi,"After six months of the #GOPTaxScam for the rich, the #GOPBudget proves that the GOP wants to pay for it all throug… https://t.co/6kV2UNtkli" +06/20/2018,Politicians,@NancyPelosi,"Six months after the #GOPTaxScam, we’re seeing the rich celebrate – and working families pay the consequences. + +Wa… https://t.co/izQuAMD5TA" +06/20/2018,Politicians,@NancyPelosi,My Democratic colleagues and I are coming together at 3 pm ET to mark six months since Republicans passed their… https://t.co/JY6LVHAXMc +06/20/2018,Politicians,@NancyPelosi,Proud to stand with my fellow @HouseDemocrats to reject @realDonaldTrump’s barbaric treatment of immigrant children… https://t.co/Q4ulLZ1ngU +06/20/2018,Politicians,@NancyPelosi,"Democrats are calling for an end to Trump’s barbaric family separation policy. #FamiliesBelongTogether + +Watch here 👇 https://t.co/pIGu4AKmVl" +06/20/2018,Politicians,@NancyPelosi,President Trump believes that immigrants are “infesting” America. The only infestation I see is the one in the Whit… https://t.co/hvELRNYLPf +06/20/2018,Politicians,@NancyPelosi,“President Trump could stop this policy with a phone call… I'll go tell him: If you don't like families being separ… https://t.co/ZrMXiPwjEu +06/20/2018,Politicians,@NancyPelosi,"RT @RepJohnYarmuth: Today @HouseBudgetGOP are considering their “Budget for a Brighter American Future,” which makes extreme cuts to Medica…" +06/19/2018,Politicians,@NancyPelosi,"Wishing everyone a very happy #Juneteenth2018! While there remains so much we must do, today is a special opportuni… https://t.co/Q4xr7SpVMj" +06/19/2018,Politicians,@NancyPelosi,"All Americans must ask, why do Republicans believe that vulnerable immigrant children do not deserve the same basic… https://t.co/VmXmBmtn8D" +06/19/2018,Politicians,@NancyPelosi,"The atrocity of family separation is not about immigration policy – it is about humanity, morality and who we are a… https://t.co/dY53BJY4fR" +06/19/2018,Politicians,@NancyPelosi,Every day that Congressional Republicans allow @realDonaldTrump to continue ripping children from their parents at… https://t.co/EHUpd3N47g +06/19/2018,Politicians,@NancyPelosi,"RT @RepCummings: We all should be able to agree that in the United States of America, we will not intentionally separate children from thei…" +06/19/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: Separating migrant children from their parents is cruel, inhumane, & morally bankrupt. + +#FamiliesBelongTogether, and @RealD…" +06/19/2018,Politicians,@NancyPelosi,RT @RepAlLawsonJr: The practice of separating children from parents as a deterrent to seeking asylum is inhumane. Seeking asylum is not ill… +06/19/2018,Politicians,@NancyPelosi,Stop using the suffering of these little children as some barbaric bargaining chip. You started this and can end it… https://t.co/wN1Lauecbi +06/19/2018,Politicians,@NancyPelosi,RT @RepJuanVargas: .@SecNielsen is giving America a false choice. Protecting our borders doesn’t mean tearing apart families – and we have… +06/18/2018,Politicians,@NancyPelosi,".@SecNielsen must resign. This is not an immigration issue, it is a humanitarian issue. Children are being used by… https://t.co/fdCWX3thuH" +06/18/2018,Politicians,@NancyPelosi,#FamiliesBelongTogether is not an immigration issue – it is a *humanitarian* issue. And we must do more to end the… https://t.co/w8oMkymWU3 +06/18/2018,Politicians,@NancyPelosi,"He may not want to admit it, but the President could end his family separation policy & #KeepFamiliesTogether right… https://t.co/Pthgg4pKrq" +06/18/2018,Politicians,@NancyPelosi,Tune in here at 3 pm ET as my colleagues & I speak after visiting a detention facility for children ripped apart fr… https://t.co/3YPzMH27kU +06/18/2018,Politicians,@NancyPelosi,"RT @RepCheri: Hey @realDonaldTrump - Remember how you won my Congressional District in 2016? Well, since Friday, 96% of the calls and email…" +06/18/2018,Politicians,@NancyPelosi,Ripping little children away from their parents is an utter atrocity that violates our asylum laws. The blame for e… https://t.co/3Nyn7Yt78c +06/17/2018,Politicians,@NancyPelosi,Wishing every father a wonderful day full of time with family & loved ones! #FathersDay https://t.co/fPlTkllJXU +06/17/2018,Politicians,@NancyPelosi,"Kathy Kraninger, Trump’s nominee to lead the @CFPB, has an opportunity to be a champion for consumers & not the fin… https://t.co/7EWcy3w9SS" +06/17/2018,Politicians,@NancyPelosi,3 yrs after nine parishioners were gunned down in a staggering and tragic act of hate at Charleston's Mother Emanue… https://t.co/tn78UDZQrc +06/16/2018,Politicians,@NancyPelosi,"RT @FrankPallone: If Republican attacks on protections for people with pre-existing conditions succeed, millions of women, older Americans,…" +06/15/2018,Politicians,@NancyPelosi,"In this week’s Democratic address, @FrankPallone discusses Republicans’ ongoing attacks on Americans’ health care. https://t.co/Lj31jqUYlN" +06/15/2018,Politicians,@NancyPelosi,Six years after President Obama honored our proud history as a nation of immigrants establishing DACA protections f… https://t.co/YVMdBEoqB4 +06/15/2018,Politicians,@NancyPelosi,The @HouseGOP immigration proposal is simply unworthy of America. The fact that the President himself won’t sign it… https://t.co/h7IXZXmxuh +06/14/2018,Politicians,@NancyPelosi,One thing is clear to anyone reading the new @HouseGOP immigration bill: It is nothing more than a cruel codificati… https://t.co/IktvyMlage +06/14/2018,Politicians,@NancyPelosi,.@SenSchumer & I will discuss the release of the DOJ Inspector General’s report on activities leading up to the 201… https://t.co/xXjmfWJFPC +06/14/2018,Politicians,@NancyPelosi,"Over the last year, Democrats have rolled out a collection of proposals to help American families achieve the bette… https://t.co/OSK3GAVcxq" +06/14/2018,Politicians,@NancyPelosi,"Every time you hear @SpeakerRyan say he wants to find a legislative solution to something, what you are really hear… https://t.co/UQ9kFqgyCs" +06/14/2018,Politicians,@NancyPelosi,The #GOPTaxScam for the rich paved the way for Republicans’ current assault on protections for the over 130 million… https://t.co/SMBSzhyeZt +06/14/2018,Politicians,@NancyPelosi,Tune in as I speak with reporters live from the Capitol 👇 https://t.co/hnevp8HO8r +06/14/2018,Politicians,@NancyPelosi,I will be speaking with reporters live from Capitol Hill at 10:45 am ET. You can watch here: https://t.co/udkZmyV7gX +06/14/2018,Politicians,@NancyPelosi,"RT @RepCummings: The @HouseGOP has spent millions investigating Clinton, yet they refuse to compel the Trump Administration to turn over do…" +06/13/2018,Politicians,@NancyPelosi,This barbaric policy must be immediately reversed. #FamiliesBelongTogether https://t.co/dFrC06RpWY +06/13/2018,Politicians,@NancyPelosi,Over 130 million Americans live with a pre-existing condition. They deserve stability — and yet Republicans are onc… https://t.co/U0Le9IiX8v +06/13/2018,Politicians,@NancyPelosi,Democrats are fighting back against the renewed GOP assault on protections for Americans with pre-existing conditio… https://t.co/difAZG53wW +06/13/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: Over 130 MILLION Americans with pre-existing conditions are protected under the ACA. Last week, the Trump Administration ann…" +06/13/2018,Politicians,@NancyPelosi,Protecting #Dreamers stands on its own merits. If Republicans plan to use Dreamers as a way to advance… https://t.co/DlYxUhh04J +06/13/2018,Politicians,@NancyPelosi,The Trump DOJ’s efforts to gut protections for Americans with pre-existing conditions follow in the footsteps of th… https://t.co/Ga7a5FTUSz +06/12/2018,Politicians,@NancyPelosi,".@Warriors & @SteveKerr, you have once again dazzled America with outstanding performance on the court & inspired l… https://t.co/qWZPABD7S6" +06/12/2018,Politicians,@NancyPelosi,Wishing a very Happy Birthday to President George H.W. Bush! https://t.co/dNh6E0OaCg +06/12/2018,Politicians,@NancyPelosi,"We must never forget the 49 beautiful souls who lost their lives two years ago at #Pulse Nightclub, when a night of… https://t.co/IJ8QCkvrBL" +06/12/2018,Politicians,@NancyPelosi,"In his haste to reach an agreement, @realDonaldTrump elevated North Korea to the level of the United States while p… https://t.co/hnQciVJvA2" +06/12/2018,Politicians,@NancyPelosi,"RT @RepValDemings: Two years after #Pulse, I know that love will win. We will transform our sorrow into love and progress. We will grieve,…" +06/12/2018,Politicians,@NancyPelosi,Paul & I are thinking of ⁦@larry_kudlow⁩. We are confident he is in good hands at Walter Reed Medical Center & wish him a speedy recovery. +06/11/2018,Politicians,@NancyPelosi,"We all want to see diplomacy succeed w/ North Korea. However, a deal that preserves the status quo & trades away ab… https://t.co/NZrF1V0UWR" +06/11/2018,Politicians,@NancyPelosi,The Trump Administration’s inhumanity and heartlessness know no bounds. https://t.co/Be16n4flUV https://t.co/qqPUkxph1Z +06/11/2018,Politicians,@NancyPelosi,Just secured Army Corps New Start funding with @SFPort to investigate options to protect the SF Embarcadero Seawall… https://t.co/salm0Mc8IO +06/11/2018,Politicians,@NancyPelosi,"Despite the repeal of #NetNeutrality, we will not stop in our efforts to protect consumers & #SaveTheInternet. A fr… https://t.co/PLr57vKS9b" +06/11/2018,Politicians,@NancyPelosi,"RT @NancyPelosi: Today marks the repeal of #NetNeutrality protections, as the Trump FCC’s rule change takes effect. You deserve better than…" +06/11/2018,Politicians,@NancyPelosi,"RT @EnergyCommerce: Today, the @FCC’s repeal of #NetNeutrality goes into effect, but the fight for a free and open internet continues in th…" +06/11/2018,Politicians,@NancyPelosi,"RT @FrankPallone: #NetNeutrality means consumers — not big corporations— choose what websites and applications we see online. Today, the @F…" +06/11/2018,Politicians,@NancyPelosi,"By upholding Ohio’s voter registration purge policy, the Supreme Court has paved the way for efforts to deprive Ame… https://t.co/vhvOpyjXpv" +06/11/2018,Politicians,@NancyPelosi,Republicans continue their fight to take health care away by arguing that protecting people with pre-existing condi… https://t.co/k27hG9HvyG +06/11/2018,Politicians,@NancyPelosi,"Today marks the repeal of #NetNeutrality protections, as the Trump FCC’s rule change takes effect. You deserve bett… https://t.co/Pxz1sWNoNi" +06/10/2018,Politicians,@NancyPelosi,"55 years after President Kennedy signed the #EqualPayAct, women still earn on average only 80 cents for every dolla… https://t.co/6kW9oTaipO" +06/09/2018,Politicians,@NancyPelosi,This week started with @realDonaldTrump boosting a Chinese company identified as a national security threat to the… https://t.co/r70oATOrXJ +06/09/2018,Politicians,@NancyPelosi,Proud of our @warriors both on & off the court. Can’t think of a better team to have won — and a sweep too!!! 🏀… https://t.co/x8zW6ycFrE +06/09/2018,Politicians,@NancyPelosi,RT @RepBarbaraLee: I’m showing my #DubNation pride today! Fingers crossed for a sweep! 🤞🏾🤞🏾#NBAFinals https://t.co/O7eiEd2orc +06/08/2018,Politicians,@NancyPelosi,"RT @RepLoisFrankel: Last year, @HouseGOP voted to rip protections away from millions of Americans with pre-existing conditions. Now, the Tr…" +06/08/2018,Politicians,@NancyPelosi,Our government should be fighting to PROTECT Americans from discrimination – not make it easier. #ProtectOurCare https://t.co/bpxxUdFX6N +06/08/2018,Politicians,@NancyPelosi,RT @RepDWStweets: The Affordable Care Act reduced the number of Americans without health insurance to record lows. Trump's sabotage of the… +06/08/2018,Politicians,@NancyPelosi,RT @RepBobbyRush: President Trump has been playing politics with Americans’ health care since the beginning of his Administration and this… +06/08/2018,Politicians,@NancyPelosi,"RT @FrankPallone: Apparently, Republicans in Washington will stop at nothing to destroy the health coverage of people with pre-existing con…" +06/08/2018,Politicians,@NancyPelosi,RT @DonaldNorcross: The Trump Administration is coming after protections for Americans with pre-existing conditions. Again. Shameful. https… +06/08/2018,Politicians,@NancyPelosi,RT @RepWilson: The Trump Admin is coming after protections for Americans with pre-existing conditions. Again. #ProtectOurCare https://t.co/… +06/08/2018,Politicians,@NancyPelosi,"Last night, we got some truly disgusting news: the Trump Administration is continuing the @HouseGOP’s efforts to ri… https://t.co/jdxS5BETcM" +06/08/2018,Politicians,@NancyPelosi,The losses of Anthony Bourdain & Kate Spade are leading many people to reflect. We never truly know what is happeni… https://t.co/8GSfqa9Oiz +06/08/2018,Politicians,@NancyPelosi,"Six months ago, America’s families were told their interests were at the heart of the #GOPTaxScam. + +Today, Big Oil… https://t.co/Agn2hiFCeQ" +06/08/2018,Politicians,@NancyPelosi,"Tonight, the Trump Admin took its cynical sabotage campaign of Americans’ health care to a stunning new low, perpet… https://t.co/FpEtqQWSSo" +06/07/2018,Politicians,@NancyPelosi,"53 years after the Supreme Court’s ruling in #GriswoldvCT, access to birth control is under attack from Republicans… https://t.co/sPJpyYQQJE" +06/07/2018,Politicians,@NancyPelosi,"China is eating our lunch, and President Trump is serving it to them. https://t.co/IaPGxJVBgA https://t.co/q9QsuX8sxa" +06/07/2018,Politicians,@NancyPelosi,#EqualPay means greater economic security for American families. It’s time to pass the #PaycheckFairnessAct! +06/07/2018,Politicians,@NancyPelosi,RT @rosadelauro: Children are being separated from their parents at the border because of @realdonaldtrump’s zero-tolerance policy. This is… +06/07/2018,Politicians,@NancyPelosi,One clear sign the #GOPTaxScam is leaving working families behind? Big Oil & Gas are cashing in – but American fami… https://t.co/fS2UulN7qZ +06/07/2018,Politicians,@NancyPelosi,I’m speaking live with reporters at the Capitol. https://t.co/IE8XbmpXyV +06/07/2018,Politicians,@NancyPelosi,Tune in as I speak with reporters live at the Capitol at 10:45 am ET. https://t.co/a2RNZlVNrS +06/07/2018,Politicians,@NancyPelosi,"RT @NydiaVelazquez: Last week, we learned that thousands more Americans died in #HurricaneMaria than previously acknowledged by the Trump A…" +06/07/2018,Politicians,@NancyPelosi,"“The building of a nation united not on every issue, but in the enduring faith that we are to be free – that we are… https://t.co/PPakNCIvnN" +06/06/2018,Politicians,@NancyPelosi,"RT @RulesDemocrats: If you're frustrated by inaction in Congress, you have the #MostClosedCongress in American history to blame. @HouseGOP…" +06/06/2018,Politicians,@NancyPelosi,Statements like this mean nothing if the @HouseGOP & @SenateGOP refuse to take concrete action in response to… https://t.co/EsTj1Zjurj +06/06/2018,Politicians,@NancyPelosi,RT @RepTedLieu: .@POTUS’s expectations haven’t often met reality during his first 500 days in office. The #GOPTaxScam is a prime example of… +06/05/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s legal team has made clear they are seeking access to classified materials not for any legitimat… https://t.co/UlUhXwkCm6 +06/05/2018,Politicians,@NancyPelosi,".@realDonaldTrump & @HouseGOP think investing in good-paying jobs, children’s health and child care, veterans and e… https://t.co/54NB1Bfsp8" +06/05/2018,Politicians,@NancyPelosi,"This is the result of trade policies that ignore farmers, producers, ranchers & growers. This new development under… https://t.co/AhjULIDBF9" +06/05/2018,Politicians,@NancyPelosi,"Voting is the foundation of our democracy. On Election Day, as voters head to the polls across California, you can… https://t.co/U6USxxX0CT" +06/05/2018,Politicians,@NancyPelosi,RT @RepJerryNadler: President Trump seems to be under the impression that he is the embodiment of the Department of Justice and that he is… +06/05/2018,Politicians,@NancyPelosi,It was a privilege to join @RepEliotEngel to tour the @RiverSpringHlth campus in his district today & visit with re… https://t.co/wperhR3BSR +06/04/2018,Politicians,@NancyPelosi,"Congratulations to Wang Dan & partners on the creation of the new think tank “Dialogue China” today, the 29th anniv… https://t.co/FDfWNV3vtW" +06/04/2018,Politicians,@NancyPelosi,"Our Founders created a government of, by, and for the people. @realDonaldTrump is not a king. We will not let him w… https://t.co/5Gv0kqo39s" +06/04/2018,Politicians,@NancyPelosi,The right to be free from persecution & discrimination because of who they are or whom they love is the most fundam… https://t.co/bPFIagqGzl +06/02/2018,Politicians,@NancyPelosi,RT @RepSarbanes: Democrats are listening to Americans from across the country who are tired of getting a raw deal from Washington. Read mor… +06/01/2018,Politicians,@NancyPelosi,"During my visit to Chicago today, I couldn’t help but think about Hadiya Pendleton, whose death in 2013 inspired… https://t.co/fqu2Z2e8bN" +06/01/2018,Politicians,@NancyPelosi,#ABetterDeal for Our Democracy is an ambitious plan to get rid of corruption in Washington & put power back in the… https://t.co/IdAfu1329Q +06/01/2018,Politicians,@NancyPelosi,"RT @RepRoybalAllard: As Trump keeps tearing babies from their immigrant mothers, let us stand against this cruelty & affirm that #FamiliesB…" +06/01/2018,Politicians,@NancyPelosi,Harming children – and separating children from their families is harmful – should not be used to deter people from… https://t.co/m99bedH8hs +06/01/2018,Politicians,@NancyPelosi,All Americans should be disgusted by the Trump Administration’s policy of separating mothers & father from their ch… https://t.co/Wc0KMXjt0P +06/01/2018,Politicians,@NancyPelosi,"49 years after #LGBTQ Americans demanded change on the streets outside the Stonewall Inn, we are recommitting to pr… https://t.co/IMjNrMglmA" +06/01/2018,Politicians,@NancyPelosi,"RT @RepEspaillat: Separating children from parents as a deterrent to seeking asylum is inhumane & cruel. Seeking asylum is not illegal, in…" +06/01/2018,Politicians,@NancyPelosi,"Jose presented himself to immigration officers at the border, along with his 1-yr-old son, to seek asylum from viol… https://t.co/vYvUpjhQx5" +06/01/2018,Politicians,@NancyPelosi,.@realDonaldTrump can’t hide the fact that his @DHSgov started the shameful policy that separates children from imm… https://t.co/QkEBFWvIxs +06/01/2018,Politicians,@NancyPelosi,The #JobsReport shows that strong employment numbers mean little to the families hit with soaring new costs under t… https://t.co/XrJMoxJcHj +05/31/2018,Politicians,@NancyPelosi,"-Empower American voters +-Strengthen ethics laws +-Fix campaign finance +Read our plan to make it happen. #ABetterDeal https://t.co/Qjg4AVpNxH" +05/30/2018,Politicians,@NancyPelosi,There are concrete ways we can fight gun violence: strengthening background checks (backed by vast majority of gun… https://t.co/S3jYVTRImh +05/30/2018,Politicians,@NancyPelosi,Mothers are the cornerstones of our communities. We need to make sure they get the #EqualPay they (& their families… https://t.co/lqGjaMVXsE +05/30/2018,Politicians,@NancyPelosi,"Wishing President George Herbert Walker Bush well, hoping that he can return home soon, and sending him love & than… https://t.co/bMmPZmSIYN" +05/29/2018,Politicians,@NancyPelosi,Read my full statement here: https://t.co/nvjaEPtyud https://t.co/XMBhY7NgvD +05/29/2018,Politicians,@NancyPelosi,We must also support efforts led by @NydiaVelazquez to investigate the alarming discrepancy between this report & t… https://t.co/Jn9h5Y3AOT +05/29/2018,Politicians,@NancyPelosi,"8 months after the Trump Admin’s stunningly weak response, far too many of our fellow Americans in #PuertoRico lack… https://t.co/vwQfnuSG92" +05/29/2018,Politicians,@NancyPelosi,"A shocking new study has found that 4,645 people lost their lives in #PuertoRico as a result of Hurricane Maria, fa… https://t.co/O6Apob9yvS" +05/29/2018,Politicians,@NancyPelosi,"On what would have been his 101st birthday, we continue to be inspired by the service & vision for a better future… https://t.co/lwSicI5NRm" +05/29/2018,Politicians,@NancyPelosi,Proud of our @warriors! What an incredible series. Onwards to the #NBAFinals. #DubNation https://t.co/o6FM9qgphy +05/28/2018,Politicians,@NancyPelosi,That’s not what today is for. https://t.co/qEhKNQQOUF +05/28/2018,Politicians,@NancyPelosi,Our Armed Forces are made up of people from all walks of life – and so are those who gave the ultimate sacrifice. N… https://t.co/XtTWHcgZ34 +05/28/2018,Politicians,@NancyPelosi,"This #MemorialDay, we take time to remember those who gave so much for our freedoms. We must honor their sacrifice… https://t.co/eJJQDXe772" +05/28/2018,Politicians,@NancyPelosi,Paid a visit to San Francisco National Cemetery at @PresidioSF this weekend to honor our fallen men & women in unif… https://t.co/i6CL25ECwV +05/25/2018,Politicians,@NancyPelosi,The American people deserve better than a President who is eager to sell out the American people & our national sec… https://t.co/9BtsHu8GgQ +05/25/2018,Politicians,@NancyPelosi,"Trump pledged to fight for Americans, but he's now using U.S. government resources to enrich ZTE (a foreign company… https://t.co/5ku96LGPcm" +05/25/2018,Politicians,@NancyPelosi,.@realDonaldTrump’s ZTE deal is a staggering betrayal of the American people. +05/25/2018,Politicians,@NancyPelosi,No victim of discrimination or harassment on Capitol Hill should be silenced. Now that the Senate has passed their… https://t.co/Cd7JwE6k1A +05/25/2018,Politicians,@NancyPelosi,"Our budget should reflect our values – but as countless people in Congo face a deadly Ebola outbreak, Republicans i… https://t.co/FwbMALB21j" +05/25/2018,Politicians,@NancyPelosi,"RT @WhipHoyer: What @RealDonaldTrump & @SpeakerRyan told working Americans: the #GOPTaxScam would create jobs here. + +What actually happene…" +05/24/2018,Politicians,@NancyPelosi,"Read my full joint statement with @SenSchumer, @RepAdamSchiff, & Senator @MarkWarner: https://t.co/FfPcGEpKrb" +05/24/2018,Politicians,@NancyPelosi,Today's Gang of Eight briefing was conducted in a manner that protects sources & methods. Nothing we heard today ha… https://t.co/WVvoRnyV2h +05/24/2018,Politicians,@NancyPelosi,"By choosing not to attend the Gang of 8 meeting today, @SpeakerRyan has abdicated his responsibility to the House & the American people." +05/24/2018,Politicians,@NancyPelosi,Congress can’t stand by & let Americans believe their voices do not matter. That’s why it is so crucial that we giv… https://t.co/B1ZlujSKnW +05/24/2018,Politicians,@NancyPelosi,Lots to discuss during today’s weekly press conference. Watch here 👇 https://t.co/KRlgA9vfDs +05/24/2018,Politicians,@NancyPelosi,"I will speak live with reporters in just under an hour. #ABetterDeal + +You can tune in here: https://t.co/Gk76u8FUuy" +05/24/2018,Politicians,@NancyPelosi,"There is a simple idea at the core of Democrats’ #ABetterDeal: that together, we can build a better future for all… https://t.co/YOLgjIDQHw" +05/24/2018,Politicians,@NancyPelosi,"Like many things President Trump has promised in the past, it seems his commitments on prescription drugs are… less… https://t.co/x6BOnQh8C6" +05/24/2018,Politicians,@NancyPelosi,"We know what we need to do to stabilize the health insurance markets. Instead, the Administration prefers to focus… https://t.co/0kYAHxn15g" +05/24/2018,Politicians,@NancyPelosi,The #GOPTaxScam prioritized the wealthiest & big corporations. That’s just a fact. The question we need to ask is:… https://t.co/Xo1qCiMQnR +05/24/2018,Politicians,@NancyPelosi,"Small businesses should be at the core of any effort to strengthen our economy. After all, they play a key role in… https://t.co/EmlxRTZXp7" +06/28/2018,Politicians,@SenateMajLdr,The far-left special interest groups are already calling on Senate Democrats to oppose anyone on President Trump’s… https://t.co/KoRaqoNK0w +06/28/2018,Politicians,@SenateMajLdr,"American farm communities need stability and predictability, and they need it urgently. The time has come to delive… https://t.co/kHMP4Qcy2l" +06/28/2018,Politicians,@SenateMajLdr,"All week, I’ve highlighted some of the ways the farm bill will support the family farmers whose harvest feeds Ameri… https://t.co/geu51q9sAa" +06/28/2018,Politicians,@SenateMajLdr,I’m confident Chairman Grassley will capably lead the Judiciary Committee through the confirmation process that lies before us. +06/28/2018,Politicians,@SenateMajLdr,"As I stated yesterday, the Senate stands ready to fulfill our constitutional role by offering advice and consent on… https://t.co/tAzFZWucYN" +06/28/2018,Politicians,@SenateMajLdr,"If you pick up a local paper in almost any state from Montana to Florida, you’ll find that Americans are paying les… https://t.co/IEGFRUbH49" +06/28/2018,Politicians,@SenateMajLdr,"Despite warnings from our Democratic colleagues that tax reform savings would never reach consumers, utilities acro… https://t.co/N7szxMyYdi" +06/27/2018,Politicians,@SenateMajLdr,Let’s address farmers’ immediate needs. Let’s give them new tools to help secure their future. The farm bill before… https://t.co/Ye2lpZBRXc +06/27/2018,Politicians,@SenateMajLdr,"Today, it was my privilege to welcome an Honor Flight of Kentucky veterans to Washington. On behalf of the Commonwe… https://t.co/qbgHLLiDaB" +06/27/2018,Politicians,@SenateMajLdr,My full remarks: https://t.co/PUiahqy0Ej +06/27/2018,Politicians,@SenateMajLdr,The Senate stands ready to fulfill its constitutional role by offering advice and consent on @POTUS… https://t.co/yIzNwUK9oD +06/27/2018,Politicians,@SenateMajLdr,I want to express gratitude for the extraordinary service that Justice Kennedy has offered our nation. We owe him a… https://t.co/2Zuw87LYhb +06/27/2018,Politicians,@SenateMajLdr,The success of tax reform might come as a surprise to the Democrats who opposed it at every turn. But it certainly… https://t.co/i8rAwBRWiA +06/27/2018,Politicians,@SenateMajLdr,We’ve seen that tax reform is well-suited to the needs of young Americans on the first rungs of the economic ladder… https://t.co/jMrWt6Ruag +06/27/2018,Politicians,@SenateMajLdr,"In six short months, we’ve seen that tax reform is well-suited to the needs of the millions of American workers who… https://t.co/W69Lky1RXL" +06/27/2018,Politicians,@SenateMajLdr,"In December, the Democratic Leader said on the Senate floor that there’s nothing about tax reform that’s “suited to… https://t.co/gPuf4ZPasJ" +06/26/2018,Politicians,@SenateMajLdr,"From top to bottom, this farm bill takes serious steps to ensure the future of American agriculture -- for the sake… https://t.co/1BjHhAp0ag" +06/26/2018,Politicians,@SenateMajLdr,"Farm families across America face uncertainty: Natural disasters, from droughts to floods, volatile world markets,… https://t.co/wjY8OLb2jd" +06/26/2018,Politicians,@SenateMajLdr,"As the proud senior senator from Kentucky, I know how important the farm bill is to agricultural communities in my… https://t.co/huLzaMVNW4" +06/26/2018,Politicians,@SenateMajLdr,"Today, First Lieutenant Garlin Murl Conner of Kentucky is being posthumously awarded the Medal of Honor. He embodie… https://t.co/6i9y2CoFL0" +06/26/2018,Politicians,@SenateMajLdr,My Democratic colleagues are arguing with the facts. They’re arguing with the data. They’re arguing with American f… https://t.co/x17BMHNjY7 +06/26/2018,Politicians,@SenateMajLdr,Democrats may want to put Washington’s foot back on the brake by repealing tax reform and piling up more regulation… https://t.co/Ecfd7kWXpe +06/21/2018,Politicians,@SenateMajLdr,I was deeply saddened to learn of the passing of my friend Charles Krauthammer this afternoon. https://t.co/ixVOBSYBF9 +06/21/2018,Politicians,@SenateMajLdr,"And thanks to the leadership of our colleagues at the subcommittee level, more bills will be on their way to the fl… https://t.co/xfEQSF9Jja" +06/21/2018,Politicians,@SenateMajLdr,"This week, we’ve been considering a regular-order appropriations package and voting on amendments. Thanks to Chairm… https://t.co/drUtdCNK8G" +06/21/2018,Politicians,@SenateMajLdr,"Six months later, here’s a remarkable fact: There are now more job openings all across this country than there are… https://t.co/ZNnLzjpoe5" +06/21/2018,Politicians,@SenateMajLdr,"Republicans wanted working families to keep more of what they earn and send less to the IRS. Meanwhile, the Democra… https://t.co/WpzYnsosqp" +06/21/2018,Politicians,@SenateMajLdr,Yesterday marked six months since Congress passed our overhaul of America’s tax code. I remember debating the Tax C… https://t.co/eTqVQGJSrP +06/20/2018,Politicians,@SenateMajLdr,My statement on @POTUS’ immigration executive order >> https://t.co/biDd3gTpbM +06/20/2018,Politicians,@SenateMajLdr,"Today marks six months since the Tax Cuts and Jobs Act passed Congress. Already, it’s led employers to issue ‘tax r… https://t.co/fztW3wpcl9" +06/20/2018,Politicians,@SenateMajLdr,"Today, I met with Kathy Kraninger, @POTUS’ nominee to direct the @CFPB. Her resume and reputation suggest she’s wel… https://t.co/rXMVS0X4XD" +06/19/2018,Politicians,@SenateMajLdr,"I support, and all of the members of the Republican Conference support, a plan that keeps families together while t… https://t.co/03Jiham7rO" +06/19/2018,Politicians,@SenateMajLdr,"Led by Chairman @SenShelby, Ranking Member @SenatorLeahy, and all the subcommittee leadership, the Appropriations c… https://t.co/PUjUd4gqln" +06/19/2018,Politicians,@SenateMajLdr,"The spending agreement reached earlier this year achieved a great deal, but the process wasn’t anybody’s best-case… https://t.co/gJh7R68Zje" +06/14/2018,Politicians,@SenateMajLdr,"One year ago, the nation watched and prayed as violence struck a congressional baseball practice. Later today, that… https://t.co/XM86nXuaPr" +06/14/2018,Politicians,@SenateMajLdr,RT @SenateGOP: Courage. Sacrifice. Determination. Unity. These are the things that endure one year later. Let’s play ball. #CongressionalBa… +06/14/2018,Politicians,@SenateMajLdr,"Fortunately, the facts are the facts. Americans know success when they see it. And Republicans will keep fighting t… https://t.co/q1lshSSd9V" +06/14/2018,Politicians,@SenateMajLdr,There are more job openings than Americans looking for work for the first time in at least 20 years. But Democrats… https://t.co/mPwupYkvv5 +06/14/2018,Politicians,@SenateMajLdr,"In #Kentucky, agriculture is part of who we are. Our farm families produce everything from poultry to soybeans. The… https://t.co/b4AyeCBNRv" +06/14/2018,Politicians,@SenateMajLdr,"Today, on the 243rd birthday of the @USArmy, I’m glad we're voting to continue advancing this critical legislation… https://t.co/smXq9mPnLU" +06/14/2018,Politicians,@SenateMajLdr,"The Armed Services Committee considered and included 300 amendments in the defense bill. On the floor, Chmn… https://t.co/35bjzg5hDB" +06/13/2018,Politicians,@SenateMajLdr,"For months, Secretary Mattis and our military leaders have detailed our servicemembers’ most pressing needs and exp… https://t.co/4pwtGZHy3v" +06/13/2018,Politicians,@SenateMajLdr,On one side of the aisle are those who mock the good economic news -- those who can’t grasp why an 18-year low in u… https://t.co/mGJKiQTxYj +06/13/2018,Politicians,@SenateMajLdr,"Unemployment is lower today than at any time since 2000. Last week, the House Democratic leader responded: “Hip-hip… https://t.co/WlLEvw3MSe" +06/13/2018,Politicians,@SenateMajLdr,I’d like to thank the Chairman & @SenStabenow for working w/ me to include my #HempFarmingAct in the bill. It build… https://t.co/Ex8ZMR32kf +06/13/2018,Politicians,@SenateMajLdr,"This morning, I’m joining my colleagues on the Agriculture Committee to mark up the farm bill. It’s an impressive p… https://t.co/abCz3uH7ct" +06/12/2018,Politicians,@SenateMajLdr,I want to share the Senate’s warmest wishes for a speedy recovery with Larry Kudlow. Larry's a happy warrior for pr… https://t.co/yqpFL4qmSj +06/12/2018,Politicians,@SenateMajLdr,"Just hours ago, the American delegation concluded their summit meeting with North Korean officials. I congratulate… https://t.co/ld4WCFolqN" +06/12/2018,Politicians,@SenateMajLdr,I just got off the phone with my friend @SenatorDole. I was grateful to catch up and thank him for his many years o… https://t.co/Cx0SOzZgFq +06/11/2018,Politicians,@SenateMajLdr,It’s one of our most important jobs here in Congress. The 2019 defense authorization is the top item on our to-do l… https://t.co/RcBuddBvpy +06/11/2018,Politicians,@SenateMajLdr,"Congress has passed defense authorization acts for 57 consecutive years. In doing so, we’ve taken steps to fulfill… https://t.co/XE3PDmDYXz" +06/11/2018,Politicians,@SenateMajLdr,This is part of what we were elected to do: Get Washington D.C.’s foot off the brake. Let hard-working Americans an… https://t.co/BdZw5rgPqk +06/11/2018,Politicians,@SenateMajLdr,"In 2016, under President Obama, the Federal Register printed nearly 39,000 pages of rules (an all-time high) and an… https://t.co/heSNArJj6l" +06/08/2018,Politicians,@SenateMajLdr,"For the past forty years, my dear friend Charles Krauthammer has brought a piercing intellect, a sharp wit, and a d… https://t.co/uoVkM65WaG" +06/08/2018,Politicians,@SenateMajLdr,I'm about to join my friends at the @FaithandFreedom Road To Majority conference to discuss how we’re turning conse… https://t.co/Lm7Soej7I5 +06/07/2018,Politicians,@SenateMajLdr,"- Lowest unemployment in 18 yrs. +- More open positions than workers seeking jobs for 1st time on record. +- Optimi… https://t.co/LqFP8iiry4" +06/07/2018,Politicians,@SenateMajLdr,"Sixteen months ago, @POTUS Trump & GOP majorities arrived in Washington w/ simple instructions from the American pe… https://t.co/HC6JuN07rA" +06/07/2018,Politicians,@SenateMajLdr,"Today, our economy is starting to work better for all kinds of communities. Just look at Ohio >> https://t.co/tTaW3doQkK" +06/07/2018,Politicians,@SenateMajLdr,The defense bill will support military posts that form the backbone of local communities and advance our National D… https://t.co/UHwbLjbbbj +06/06/2018,Politicians,@SenateMajLdr,Tune in tonight for my interview on @FoxNews with @IngrahamAngle at 10 PM ET https://t.co/lQrBKrdT80 +06/06/2018,Politicians,@SenateMajLdr,This isn’t due diligence. It isn’t good government. It’s what happens when our colleagues across the aisle put poli… https://t.co/JCh0Jk5B4j +06/06/2018,Politicians,@SenateMajLdr,Not a single Senator voted against confirming Robert Wier or Fernando Rodriguez to serve as district judges yesterd… https://t.co/FHjVRxpBBv +06/06/2018,Politicians,@SenateMajLdr,"Cloture votes used to be a rare tool of last resort, only used in a tiny handful of cases. Not these days. In many… https://t.co/EWru4PZn5S" +06/06/2018,Politicians,@SenateMajLdr,"This morning, I was honored to meet a number of #Kentucky veterans at the World War II Memorial and welcome them to… https://t.co/acKzya8QNv" +06/06/2018,Politicians,@SenateMajLdr,"As the #Senate works to give America’s armed forces the resources they need to keep us safe, I’m proud that @POTUS… https://t.co/Idyk09ZdJj" +06/06/2018,Politicians,@SenateMajLdr,"The John S. McCain 2019 National Defense Authorization Act is the result of months of serious, bipartisan work by t… https://t.co/rJmFD2NQL9" +06/06/2018,Politicians,@SenateMajLdr,"On June 6th, 1944, the free world embarked on a daring mission of historic proportions. With conviction and bravery… https://t.co/HlSZigB2ri" +06/05/2018,Politicians,@SenateMajLdr,RT @RoyBlunt: It’s full steam ahead for our economy https://t.co/HfIVO2THyJ +06/05/2018,Politicians,@SenateMajLdr,"The #Senate has been attacking the #opioid crisis from all angles, but major challenges are rarely solved in Washin… https://t.co/sAHedZsDaL" +06/05/2018,Politicians,@SenateMajLdr,Senate Democrats have already forced 100 cloture votes on President Trump’s nominees in his first two years vs. 24… https://t.co/1FKOBGnVIe +06/05/2018,Politicians,@SenateMajLdr,My statement on cancelling the August recess: https://t.co/yyAEUSMVQW +06/05/2018,Politicians,@SenateMajLdr,"Today, the #Senate confirmed Robert Wier to serve on the Eastern District Court of #Kentucky by a vote of 95-0. Des… https://t.co/28hSXp9Wr5" +06/05/2018,Politicians,@SenateMajLdr,The bipartisan work of the Armed Services Committee has produced a strong NDAA. This legislation sends a clear mess… https://t.co/WBTFIsdt4a +06/05/2018,Politicians,@SenateMajLdr,"After years of spending caps harming the readiness of our military, Congress passed a two-year agreement that inclu… https://t.co/lh7p8COayS" +05/28/2018,Politicians,@SenateMajLdr,"Today, we pause as one people to remember the brave men and women who paid the ultimate price defending our nation… https://t.co/O3hb8djtiT" +05/25/2018,Politicians,@SenateMajLdr,This great nation wouldn’t exist without the heroism and sacrifice of those we honor on Memorial Day. https://t.co/ca0rLTtisH +05/25/2018,Politicians,@SenateMajLdr,The record of this Congress is quite spectacular. It’s been a period of extraordinary accomplishment on behalf of t… https://t.co/5hcMXJ0usq +05/24/2018,Politicians,@SenateMajLdr,Always great to sit down with @BretBaier. Tune in for our conversation this evening on @SpecialReport @FoxNews. +05/24/2018,Politicians,@SenateMajLdr,Joint statement w/@SenSchumer on today’s passage of @SenAmyKlobuchar and @RoyBlunt’s proposal to update how Congres… https://t.co/3Lod4AVea1 +05/24/2018,Politicians,@SenateMajLdr,"One bill after another, one confirmation after another, the Senate is producing accomplishments that will directly… https://t.co/yHmqW6w3u0" +05/24/2018,Politicians,@SenateMajLdr,"The #Senate is having a productive week: +-Passed VA MISSION Act to keep our promise to our vets +-Confirming more o… https://t.co/DPcglUsdzX" +05/24/2018,Politicians,@SenateMajLdr,"This morning, @POTUS signed a law that will help middle-class families/small businesses access credit. It was the p… https://t.co/StxA1LyQlJ" +05/23/2018,Politicians,@SenateMajLdr,"Today, the #Senate passed the VA MISSION Act to help vets access the care they need, when and where they need it. I… https://t.co/9YvJanWJDR" +05/23/2018,Politicians,@SenateMajLdr,"Veterans of all eras rely on the promise of accessible, quality care when they return home. But too often, the VA h… https://t.co/p6KL9khZKV" +05/23/2018,Politicians,@SenateMajLdr,"Local lenders and the communities that depend on them needed relief from the inefficient, imprecise, one-size-fits-… https://t.co/9H4LuBsjUU" +05/23/2018,Politicians,@SenateMajLdr,"Workplace harassment is unacceptable anywhere – end of story. With @SenAmyKlobuchar and @RoyBlunt’s proposal, Congr… https://t.co/MwuYmWmqM8" +05/23/2018,Politicians,@SenateMajLdr,"Thanks to the bipartisan work of @SenAmyKlobuchar and @RoyBlunt, the Senate is coming together to update the laws g… https://t.co/MyteUBBS8O" +05/22/2018,Politicians,@SenateMajLdr,"For years, the Obama-era Dodd-Frank rules designed for Wall Street made life needlessly difficult for lenders on Ma… https://t.co/j772ncMOuO" +05/22/2018,Politicians,@SenateMajLdr,"And many thanks to you, @SenRonJohnson, for your hard work in getting this life-changing legislation across the fin… https://t.co/eFGYcRVlAA" +05/22/2018,Politicians,@SenateMajLdr,"With @POTUS’ signature yesterday, this unified GOP government has put yet another onerous regulation into the waste… https://t.co/eUbfxFZ0oV" +05/22/2018,Politicians,@SenateMajLdr,The bill before us carries the support of @POTUS Trump and 38 veterans advocacy organizations. It’s based on a simp… https://t.co/GPRw53bGVu +05/22/2018,Politicians,@SenateMajLdr,Delays at the VA cannot stand between veterans and the medical care they need. The shortcomings of a federal bureau… https://t.co/fZ7g3Ck1TH +05/21/2018,Politicians,@SenateMajLdr,"Today, @POTUS signed the 16th Congressional Review Act resolution passed by this GOP Congress. It repealed a rule t… https://t.co/xmCEnz1hOe" +05/21/2018,Politicians,@SenateMajLdr,"Today, the brave men and women of the @CIA welcomed their colleague, Gina Haspel, to a new role for which she is un… https://t.co/bowwSFTroT" +05/18/2018,Politicians,@SenateMajLdr,Robert Wilkie’s record of public service makes him an outstanding choice for Secretary @DeptVetAffairs. He'll be ta… https://t.co/soBm1hmwRF +05/18/2018,Politicians,@SenateMajLdr,"The prayers of the entire Senate are with the victims of today’s violence in Santa Fe, their families, and the comm… https://t.co/uxlJ1e0bk6" +05/17/2018,Politicians,@SenateMajLdr,The Senate will pass the VA MISSION Act next week to strengthen the resources available to our veterans… https://t.co/aLPl1ThZ6g +05/17/2018,Politicians,@SenateMajLdr,The Senate just confirmed Gina Haspel to lead the @CIA. Her talent and expertise make her uniquely qualified to fa… https://t.co/q0Jxl24lqv +05/17/2018,Politicians,@SenateMajLdr,"According to new survey data from @shopfloorNAM, more than 93% of U.S. manufacturing firms have a positive outlook.… https://t.co/KksngQ7nq0" +05/17/2018,Politicians,@SenateMajLdr,"Republican policies are shaking the regulatory rust off of the U.S. economy, and American job creators, entrepreneu… https://t.co/tbdjqYeKLG" +05/17/2018,Politicians,@SenateMajLdr,RT @SenJohnMcCain: Happy 37th anniversary to my love @cindymccain - time flies when you’re having fun! https://t.co/eivKVUylHb +05/17/2018,Politicians,@SenateMajLdr,Gina Haspel is the right woman at the right time. Senators on both sides of the aisle agree. It’s time to rise to t… https://t.co/5QbtRQQ47c +05/16/2018,Politicians,@SenateMajLdr,"Last year, under the leadership of @AjitPaiFCC, the agency sought to fix this mistake and restore the rules that he… https://t.co/VQDnaM8IS5" +05/16/2018,Politicians,@SenateMajLdr,"In 2015, President Obama’s FCC set out to fix what wasn’t broken. It imposed regulations designed for Depression-er… https://t.co/Tub7k74IIz" +05/16/2018,Politicians,@SenateMajLdr,"Even in @SenSchumer’s backyard of Brooklyn, lower excise taxes are letting @nydistilling cut prices. In Kentucky,… https://t.co/pxhCCv7lzu" +05/16/2018,Politicians,@SenateMajLdr,"After 8 years of Democrats’ policies enriching big cities but leaving small businesses behind, Republican policies… https://t.co/BHfuKZRYlA" +05/16/2018,Politicians,@SenateMajLdr,"Gina Haspel is the right woman at the right time. There is no reason why her confirmation should be delayed, and I… https://t.co/7X6plPExNC" +05/15/2018,Politicians,@SenateMajLdr,RT @McConnellPress: .@SenateMajLdr welcomed @realDonaldTrump to @uscapitol today just after #Senate approved the 21st Circuit Judge. Nearly… +05/15/2018,Politicians,@SenateMajLdr,".@SenateGOP and @POTUS Trump had a productive meeting today in the +@uscapitol. Our shared agenda is critical to mo… https://t.co/GkfP1VBiTu" +05/15/2018,Politicians,@SenateMajLdr,The amount employers spent on worker pay and benefits grew more in 2017 than in any calendar year under President O… https://t.co/C2MSuJY4sy +05/15/2018,Politicians,@SenateMajLdr,"For years, Democratic policies like high taxes and runaway regulations put a headwind in the faces of American job… https://t.co/tbPsHnXJOt" +05/15/2018,Politicians,@SenateMajLdr,"The #Senate has confirmed @POTUS’ 20th and 21st circuit court nominees – +a monumental achievement of unified Republ… https://t.co/ZlpNzhXJ3G" +05/15/2018,Politicians,@SenateMajLdr,RT @usatodayopinion: From the director of National Intelligence Dan Coats: I am acutely aware of decisions our country made after the 9/11… +05/15/2018,Politicians,@SenateMajLdr,I also wish to pay tribute today to #Kentucky law enforcement officers who made the ultimate sacrifice on our behal… https://t.co/PXfHIrcdIs +05/15/2018,Politicians,@SenateMajLdr,"During #PoliceWeek, thousands of officers gather in Washington to honor fallen comrades and rededicate themselves t… https://t.co/8M8jYaUFU6" +05/15/2018,Politicians,@SenateMajLdr,The #Senate welcome @POTUS Trump to the Capitol today. +05/14/2018,Politicians,@SenateMajLdr,"Jerusalem is Israel’s capital, plain and simple. That’s where our embassy belongs. And thanks to @POTUS’ leadership… https://t.co/JTP81J1KW2" +05/14/2018,Politicians,@SenateMajLdr,"We all know John McCain doesn’t exactly have a relaxed bone in his body. He still +had plenty to say about work, I a… https://t.co/CgMTptjMBg" +05/14/2018,Politicians,@SenateMajLdr,"This weekend, I had the pleasure of traveling to the beautiful hills outside Sedona, Arizona and spending time with… https://t.co/Up4tzYCKys" +05/11/2018,Politicians,@SenateMajLdr,Tax reform has Indiana off to the races: https://t.co/XyXDMoxwBb +05/11/2018,Politicians,@SenateMajLdr,"Across the nation, every day brings another piece of good news for middle-class workers and families. https://t.co/hKViD6O1UC" +05/11/2018,Politicians,@SenateMajLdr,My statement on @POTUS's drug pricing announcement: https://t.co/3eGYATntY1 https://t.co/RjB0BUEjxU +05/10/2018,Politicians,@SenateMajLdr,"When @POTUS visits Indiana today, he’ll join Hoosiers to celebrate the new jobs and prosperity that our Republican… https://t.co/tW4XLJlIkX" +05/10/2018,Politicians,@SenateMajLdr,"After years of failed Democratic policies, America is open for business once again. +Surveys show that since @POTUS… https://t.co/IGNQHffaQV" +05/10/2018,Politicians,@SenateMajLdr,"In 2013, Senate Democrats voted to confirm John Brennan as CIA Director. What’s changed? https://t.co/JXSMJ3v9Bd" +05/10/2018,Politicians,@SenateMajLdr,"This is as close as we’ve ever come to a Korean peninsula without +nuclear weapons. @POTUS deserves all the credit f… https://t.co/SqNpKciTEp" +05/10/2018,Politicians,@SenateMajLdr,My statement on the U.S. summit with North Korea: https://t.co/Whk0S1tv3F +05/10/2018,Politicians,@SenateMajLdr,Gina Haspel’s testimony yesterday showcased the judgment and poise that have defined her thirty-three year career o… https://t.co/AMiOmH2gSn +05/10/2018,Politicians,@SenateMajLdr,"Michael Brennan carries bipartisan support from the people who know him best, including the endorsement of more tha… https://t.co/8nvP0QUGyS" +05/10/2018,Politicians,@SenateMajLdr,"Overnight, @SecPompeo completed a sensitive diplomatic mission and +returned home from North Korea with three freed… https://t.co/bUSYXMbO1j" +05/09/2018,Politicians,@SenateMajLdr,"Tight economic sanctions brought the Iranian regime to the table last time, but unfortunately, it led to a hopeless… https://t.co/Z0vWntc0g0" +05/09/2018,Politicians,@SenateMajLdr,Tonight I’ll be on the air in the 6pm hour with @guypbenson and Marie Harf on their new @FoxNewsRadio show @BensonAndHarf. +05/09/2018,Politicians,@SenateMajLdr,RT @CNBC: John Thune: We can't let 'political theater' ruin a bipartisan deal on net neutrality https://t.co/GhRhqsKCNg +05/09/2018,Politicians,@SenateMajLdr,Looking forward to speaking with @DanaPerino during today’s @DailyBriefing on @FoxNews. +05/09/2018,Politicians,@SenateMajLdr,This morning brought welcome news that @POTUS and @SecState had secured the release of 3 Americans. I’m hopeful we… https://t.co/6KUaeWb3hR +05/09/2018,Politicians,@SenateMajLdr,The #Senate is processing six more well-qualified nominees for the federal bench. Each nominee on the slate has bee… https://t.co/IhKLeAvoNc +05/09/2018,Politicians,@SenateMajLdr,"Gina Haspel is a tremendous choice to lead the Central Intelligence Agency. She would bring more direct, hard-earne… https://t.co/GYjCVhhQwj" +05/08/2018,Politicians,@SenateMajLdr,"When Democrats controlled Washington, more than 75 percent of manufacturers said an unfavorable business climate fr… https://t.co/hSJJIm06Yg" +05/08/2018,Politicians,@SenateMajLdr,"In December 2017, after just one year of Republican policies, optimism among American manufacturers hit the highest level ever recorded." +05/08/2018,Politicians,@SenateMajLdr,"The percentage of American workers who are unemployed, underemployed, or discouraged recently hit a 17-year low. An… https://t.co/Zq2XcwFnMt" +05/08/2018,Politicians,@SenateMajLdr,The JCPOA was a flawed agreement which @POTUS determined is not in America's nat'l security interests. I share his… https://t.co/6NBgcxRDqf +05/07/2018,Politicians,@SenateMajLdr,Republican policies have taken Washington’s foot off the brake of the U.S. economy. We’ve rolled back a host of job… https://t.co/4AnK4gDd3w +05/07/2018,Politicians,@SenateMajLdr,"This week, the #Senate will consider another slate of extremely well-qualified nominees for seats on the federal be… https://t.co/lt0v6x5DAm" +05/03/2018,Politicians,@SenateMajLdr,I'm looking forward to joining @hughhewitt live on the air at 8:30. +04/26/2018,Politicians,@SenateMajLdr,.@SenatorLankford is giving Democrats their own chance to show that principled convictions matter more than politic… https://t.co/sTwMJYYPau +04/26/2018,Politicians,@SenateMajLdr,#TBT to #Senate Democrats filibustering @POTUS' well qualified judicial nominees. https://t.co/TeM8G2SJ60 +04/26/2018,Politicians,@SenateMajLdr,"After the #Senate confirms our 70th Secretary of @StateDept, we will vote on the nomination of Ric Grenell to serve… https://t.co/fN8NJVvWgJ" +04/26/2018,Politicians,@SenateMajLdr,#Senate Democrats continue with their historic obstruction of @POTUS' nominees. https://t.co/4zgKyy9Itd +04/26/2018,Politicians,@SenateMajLdr,#Senate Democrats are again making history by requiring @POTUS' Secretary of @StateDept nominee to get a cloture vo… https://t.co/CQ2z2rIr2C +04/26/2018,Politicians,@SenateMajLdr,"Today, the #Senate will confirm Mike Pompeo as our nation’s 70th Secretary of @StateDept on a bipartisan vote, the… https://t.co/7XQ9NW6Azh" +04/25/2018,Politicians,@SenateMajLdr,"RT @SenShelby: Despite historic obstruction by the Democrats, the Senate is one step closer to swiftly confirming @POTUS’s nominees. https:…" +04/25/2018,Politicians,@SenateMajLdr,"Tonight, 7:00 Eastern +⬇️ +I will be joining @marthamaccallum on @TheStoryFNC to discuss #Senate Democrats' continue… https://t.co/1HNtMzTbCS" +04/25/2018,Politicians,@SenateMajLdr,.@POTUS' nominees have faced 88 cloture votes in his first 2 years vs. 24 for previous 6 presidents combined in the… https://t.co/Z0xGH1sxcg +04/25/2018,Politicians,@SenateMajLdr,"Despite historic obstruction from #Senate Democrats, the Senate keeps on confirming @POTUS’ well qualified Circuit… https://t.co/dQxUZz0Ag8" +04/24/2018,Politicians,@SenateMajLdr,The passage of the historic #TaxCutsandJobsAct was just the latest illustration of the diverging paths Republicans… https://t.co/WvQTtudZe5 +04/24/2018,Politicians,@SenateMajLdr,"""America Will Be Better Off If Mike Pompeo Is Confirmed"" as our next Secretary of @StateDept. https://t.co/grGYWTR7q2" +04/24/2018,Politicians,@SenateMajLdr,"Today, I am introducing the CAREER Act to bring targeted relief to the states most devastated by the #opioidcrisis. https://t.co/K2q64OxoTo" +04/24/2018,Politicians,@SenateMajLdr,#ICYMI → the #Senate Foreign Relations Cmte favorably recommended Mike Pompeo to be our nation's 70th Secretary of… https://t.co/nN7BIzhXt5 +04/23/2018,Politicians,@SenateMajLdr,"What could it be other than politics? #Senate Democrats flip flop on Mike Pompeo after saying ‘He is smart, hard-wo… https://t.co/tb9STlDEFu" +04/23/2018,Politicians,@SenateMajLdr,The #Senate will also vote later today to advance the nomination of Kyle Duncan serve on the Fifth Circuit Court of… https://t.co/53mGWIxhEk +04/23/2018,Politicians,@SenateMajLdr,"What could it be other than politics? #Senate Democrats flip flop on Mike Pompeo after saying ‘He is smart, hard-wo… https://t.co/BmSdih6moZ" +04/23/2018,Politicians,@SenateMajLdr,"Today, the Foreign Relations Cmte will consider @POTUS' choice for the next Secretary of @StateDept. It's hard to i… https://t.co/TxIXtkvtb7" +04/23/2018,Politicians,@SenateMajLdr,Iowans are seeing benefits of #TaxReform. Senator @ChuckGrassley's new op-ed on how the #TaxCutsandJobsAct is helpi… https://t.co/MsvH23WPVK +04/19/2018,Politicians,@SenateMajLdr,I look forward to working with Dr. Jackson to build on the progress we’ve made in expanding accessibility and impro… https://t.co/XGB6jgnpR3 +04/19/2018,Politicians,@SenateMajLdr,"Consumer confidence at a 14 year ⬆️. Jobless claims, a 45 year ⬇️. + +#TaxReform is working for the American people… https://t.co/ZClmCHCEVd" +04/19/2018,Politicians,@SenateMajLdr,This GOP Congress and @POTUS think the Gov needs to give workers and job creators breathing room. So we passed reco… https://t.co/3xrlyG12Jv +04/19/2018,Politicians,@SenateMajLdr,There was a long-standing and overwhelmingly bipartisan tradition in the #Senate of support of Secretaries of… https://t.co/eeaEGX6aCT +04/19/2018,Politicians,@SenateMajLdr,".@NASA has been led by an acting administrator for a record 15 months, so I hope all Senators will join me in votin… https://t.co/vj90q7ox0V" +04/19/2018,Politicians,@SenateMajLdr,"By confirming Mike Pompeo as Secretary of @StateDept, the #Senate can ensure the nation has a chief diplomat who en… https://t.co/hz5gvNqxke" +04/19/2018,Politicians,@SenateMajLdr,The Protecting Moms and Infants Act authorizes increased funding for a competitive federal grant to help organizati… https://t.co/Mt7aObSte2 +04/19/2018,Politicians,@SenateMajLdr,"Today, I’ll introduce the Protecting Moms and Infants Act, which directs the Secretary of @HHSGov to report on the… https://t.co/fxSkzXNXOW" +04/18/2018,Politicians,@SenateMajLdr,"#Senate Democrats filibuster a bill to authorize funding for the United States Coast Guard. + +Yes, you read that cor… https://t.co/dcIuTEDscT" +04/18/2018,Politicians,@SenateMajLdr,"The #Senate continues ""chopping away"" at burdensome Obama-era regulations. https://t.co/SpL83H2XME" +04/18/2018,Politicians,@SenateMajLdr,Barbara Bush's life was defined by love. She loved her husband and her family. She loved her country. And America l… https://t.co/97IbI4XhhF +04/18/2018,Politicians,@SenateMajLdr,"Thanks to @SenToomey & Senator @JerryMoran, the #Senate will be rolling back another piece of Obama-era overreach b… https://t.co/jHMVSkuSpc" +04/18/2018,Politicians,@SenateMajLdr,"Barbara Bush wielded her formidable qualities on behalf of her nation, the family she loved, and the many worthy ca… https://t.co/F6Lu7ln11Q" +04/17/2018,Politicians,@SenateMajLdr,"Even as the #economy is starting to thrive, Democrats want to repeal these historic tax cuts and claw back your mon… https://t.co/pxvMaRgZPB" +04/17/2018,Politicians,@SenateMajLdr,"Major tax relief for middle-class families is a big shot in the arm for the U.S. #economy, which will lead to more… https://t.co/zOBJusTkhA" +04/17/2018,Politicians,@SenateMajLdr,"#TaxReform Day, brought to you by #Senate Republicans. + +https://t.co/XCExABAZLG" +04/17/2018,Politicians,@SenateMajLdr,"Out with the old, and in with the new. #TaxReform is working. https://t.co/eJpAXDMAPf" +04/17/2018,Politicians,@SenateMajLdr,RT @SenHydeSmith: The #TaxCutsandJobsAct is a strong start to help Mississippi families keep more of their hard-earned money & to help smal… +04/17/2018,Politicians,@SenateMajLdr,RT @FoxNews: TUNE IN: @SenateMajLdr sits down with @TeamCavuto for an exclusive interview on “Your World” LIVE from D.C. at 4p ET. https://… +04/17/2018,Politicians,@SenateMajLdr,"RT @NFIB: Today is the first #TaxDay in years that #smallbiz have received some good news. Compensation is up, sales are strong, & #taxes r…" +04/17/2018,Politicians,@SenateMajLdr,"Today is the last #TaxDay that American families will have to file under the unfair, outdated tax code that Congres… https://t.co/0tegpMY4SG" +04/17/2018,Politicians,@SenateMajLdr,RT @SenJoniErnst: This is the last #TaxDay Americans will be forced to comply with an outdated and overly burdensome tax code. See how the… +04/17/2018,Politicians,@SenateMajLdr,I will be joining @TeamCavuto at appx 4:00 this afternoon to discuss #TaxDay and how #TaxReform is already benefiti… https://t.co/Snsd4F9dth +04/17/2018,Politicians,@SenateMajLdr,"2018 #TaxDay: Out with the Old, and In With the New. +via @Medium +https://t.co/4rY58AjVqf" +04/17/2018,Politicians,@SenateMajLdr,"Thanks to the #TaxCutsandJobsAct 4,000,000+ Americans (and counting) are receiving special bonuses, pay raises, or… https://t.co/ESFsb5Wrub" +04/17/2018,Politicians,@SenateMajLdr,RT @SenatorRisch: #Taxday is the last day taxes will be paid under the old federal system that takes more of your hard-earned income. Read… +04/17/2018,Politicians,@SenateMajLdr,RT @SenPatRoberts: Today is #TaxDay and marks the last day that Americans will file their taxes under the outdated and burdensome system. O… +04/17/2018,Politicians,@SenateMajLdr,"RT @senrobportman: In January, thanks to the #TaxReform law, the IRS updated the amount it withholds from employee paychecks and as a resul…" +04/17/2018,Politicians,@SenateMajLdr,"RT @SenateGOP: For years, @GOPSenFinance Chairman @SenOrrinHatch has been working to shred the old tax code. Today, he gets his wish. #TaxD…" +04/17/2018,Politicians,@SenateMajLdr,"ICYMI - yesterday afternoon, I filed cloture on @USCG Authorization Act, a comprehensive package that equips an ada… https://t.co/yXh53z6aze" +04/17/2018,Politicians,@SenateMajLdr,"Today's #TaxDay is out with the old, and in with the new. #TaxReform is working for American families. https://t.co/KZA5cCodAN" +04/17/2018,Politicians,@SenateMajLdr,"Thanks to @SenToomey and Senator @JerryMoran, we will protect consumers from a brazen attempt by the past director… https://t.co/ospceABhQI" +04/16/2018,Politicians,@SenateMajLdr,"Today I met w/ @POTUS' nominee for Director of the @CIA, Gina Haspel. She has dedicated her professional life to th… https://t.co/LZtVBwFKFF" +04/16/2018,Politicians,@SenateMajLdr,#Senate Democrats' historic obstruction https://t.co/UcD4rgNXMX +04/16/2018,Politicians,@SenateMajLdr,Tomorrow is the last #TaxDay that Americans will have to file under the old and outdated tax code. This Republican… https://t.co/l7besyoGvX +04/16/2018,Politicians,@SenateMajLdr,"This afternoon, the #Senate will vote to advance legislation from Senator @JerryMoran that would bolster the proper… https://t.co/5iN7lGyxaG" +04/16/2018,Politicians,@SenateMajLdr,"Over the weekend, America’s all-volunteer armed forces executed a challenging mission with precision and excellence… https://t.co/wb1ImQ5Kkh" +07/01/2018,Politicians,@SenSchumer,"After NK summit, @realDonaldTrump said “everybody can now feel much safer…There is no longer a Nuclear threat from… https://t.co/aYplwk54qx" +06/30/2018,Politicians,@SenSchumer,"What a month! Thank you to all the organizers, activists, marchers & friends who made the #Pride events this month… https://t.co/vwMtqI7KE5" +06/30/2018,Politicians,@SenSchumer,The president has the power to appoint a czar to marshal & organize the agencies in charge of reunifying families.… https://t.co/EVQ5dp6cc4 +06/30/2018,Politicians,@SenSchumer,Mr. President - we know each judge on the list of 25 handpicked by the @FedSoc will overturn Roe v. Wade and strike… https://t.co/dIqeJx75qh +06/29/2018,Politicians,@SenSchumer,"A vibrant, free press is a pillar of American democracy enshrined in our Constitution. I salute those who dedicate… https://t.co/HGdY41DD9r" +06/29/2018,Politicians,@SenSchumer,"I stand w/ fellow Americans who are appalled by the horrific attack at the Capital Gazette, a wonderful community-b… https://t.co/tZgP5lDAo0" +06/28/2018,Politicians,@SenSchumer,"Bob Mueller is a decorated Marine, former DoJ prosecutor, and former FBI Director. And, let me remind you, he is a… https://t.co/4ATDOxLCeE" +06/28/2018,Politicians,@SenSchumer,"If anything should happen at this mtg, @realDonaldTrump must inform Putin of his intent to aggressively implement t… https://t.co/fuDk0GTUjr" +06/28/2018,Politicians,@SenSchumer,The American people have to wonder: why is our president so committed to building a relationship with someone so de… https://t.co/cULXmZLiJ8 +06/28/2018,Politicians,@SenSchumer,For @realDonaldTrump to reward President Putin with a one-on-one meeting while Russia actively continues to interfe… https://t.co/aObPKoVwHm +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: This is dangerous, this is weak, and it’s yet another slap in the face to the intelligence professionals who quite literall…" +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: The President can either believe his Secretary of Defense Jim Mattis, or he can believe Vladimir Putin. https://t.co/b6F4hQ…" +06/28/2018,Politicians,@SenSchumer,"RT @MarkWarner: And they’re lying. The President can either believe Russia or he can believe our country’s intel chiefs, generals, cabinet…" +06/28/2018,Politicians,@SenSchumer,Americans from all corners of the country: rise up & speak out. Tell your Senators that if they vote for a Supreme… https://t.co/sLZ7qyvlkL +06/28/2018,Politicians,@SenSchumer,"Every American should have their eyes wide open to the fact that @realDonaldTrump has sworn to nominate a justice,… https://t.co/k4DHTuaubp" +06/28/2018,Politicians,@SenSchumer,.@realDonaldTrump will nominate a justice willing to re-interpret the ruling on the ACA. Remember when he said: “Ju… https://t.co/gIqmg4n8oo +06/28/2018,Politicians,@SenSchumer,.@realDonaldTrump will nominate a #SCOTUS justice willing to send Roe “back to the states” – those are his own word… https://t.co/EudYg92yh6 +06/28/2018,Politicians,@SenSchumer,"So today @SenateDems & @HouseDemocrats are standing up for public employees – teachers, nurses & health care provid… https://t.co/ldm6KgOfNm" +06/28/2018,Politicians,@SenSchumer,"#Unions built the middle class in this country, & now Republicans & their friends on the court are doing everything… https://t.co/qVlomMg39K" +06/28/2018,Politicians,@SenSchumer,If the Senate’s constitutional duty to advise and consent is just as important as the President’s right to nominate… https://t.co/5I6AfE2kBy +06/28/2018,Politicians,@SenSchumer,"If GOP were consistent, they would wait to consider Justice Kennedy’s successor until after the midterm elections.… https://t.co/S18TPddPmq" +06/28/2018,Politicians,@SenSchumer,Why do you trust Putin more than your own Republican DOJ officials and the Republican special counsel that was appo… https://t.co/W3VhVSAghw +06/27/2018,Politicians,@SenSchumer,"In 2016, Senate Republicans said that the American people deserve an opportunity to speak on Supreme Court nominees… https://t.co/JmMQkHLLZK" +06/27/2018,Politicians,@SenSchumer,Americans should make it clear that they will not tolerate a nominee chosen from President Trump’s pre-ordained lis… https://t.co/SCIoyLZIMM +06/27/2018,Politicians,@SenSchumer,People from all across America should realize that their rights and opportunities are threatened and should make th… https://t.co/OUL8UPV3e1 +06/27/2018,Politicians,@SenSchumer,Millions of ppl are just months away from determining the senators who should vote to confirm or reject POTUS’s nom… https://t.co/ZXvBzVEwGS +06/27/2018,Politicians,@SenSchumer,My @SenateGOP colleagues should follow the rule they set in 2016 not to consider a SCOTUS nominee in an election ye… https://t.co/m48EF9qdxc +06/27/2018,Politicians,@SenSchumer,The Senate should reject anyone who will instinctively side with powerful special interests over the interests of average Americans. +06/27/2018,Politicians,@SenSchumer,Will Republicans & @realDonaldTrump nominate & vote for someone who will preserve protections for people w/ preexis… https://t.co/PS59T6a0DH +06/27/2018,Politicians,@SenSchumer,This is the most important Supreme Court vacancy for this country in at least a generation. Nothing less than the f… https://t.co/lpNmxXSdE5 +06/27/2018,Politicians,@SenSchumer,".@realDonaldTrump needs to end the inhumanity & chaos at the border, but we also need a real strategy to go after c… https://t.co/u72J0gsUeR" +06/27/2018,Politicians,@SenSchumer,There is a pretty simple reason people are fleeing Central America. It is the impunity of gangs and cartels and the… https://t.co/tQZOv4Tjg6 +06/27/2018,Politicians,@SenSchumer,RT @SenWarren: Corporate interests have been rigging the system against workers for decades – and the Supreme Court just handed those inter… +06/26/2018,Politicians,@SenSchumer,I want to be clear: anyone who supports the lawsuit against the ACA has said loud and clear that they don’t support… https://t.co/WyWQKIDfRM +06/26/2018,Politicians,@SenSchumer,"The Republican strategy is clear: increase the deficit on behalf of special interests, then use that as an excuse t… https://t.co/1P2B3QFpSF" +06/26/2018,Politicians,@SenSchumer,Today’s report is another reminder about the true costs of handing out massive tax breaks to billionaires & large c… https://t.co/N5nGdX8sI2 +06/26/2018,Politicians,@SenSchumer,"The president’s travel ban doesn’t make us safer, and the Supreme Court’s ruling doesn’t make it right. This is a b… https://t.co/LhqLjdW5K9" +06/26/2018,Politicians,@SenSchumer,RT @RepAnthonyBrown: We cannot be a nation that strips health care away from those who need it most. Tune in to my press conference with @N… +06/26/2018,Politicians,@SenSchumer,"Simply put, @realDonaldTrump turned his back on the most popular & most humane advancement in our health care syste… https://t.co/PBCtDeHXKZ" +06/26/2018,Politicians,@SenSchumer,We’re here w/ @LittleLobbyists today because the protections put in place by the ACA for people with pre-existing c… https://t.co/FoX2WvzZt8 +06/26/2018,Politicians,@SenSchumer,".@realDonaldTrump, you said giving corporations like Harley a big tax giveaway would mean more jobs. + +Instead, man… https://t.co/TcFhDeLzsH" +06/25/2018,Politicians,@SenSchumer,"Chief Spadafora spent his whole life serving the ppl of NY, &we can never thank him enough. He answered the call ti… https://t.co/N8XtE4Ibi6" +06/25/2018,Politicians,@SenSchumer,Then why are you tweeting about it? These decisions can & should be made by @realDonaldTrump's appointees at @FBI &… https://t.co/PLmyVopClC +06/25/2018,Politicians,@SenSchumer,Family dinner tonight at L&B Spumoni Gardens in the heart of Italian Brooklyn — like eating in Sicily! https://t.co/n9d7oKpDdW +06/24/2018,Politicians,@SenSchumer,Marching in the #NYCPride Parade has special meaning this year as I am marching with my daughter Alison and her won… https://t.co/w6dhIcg7sK +06/24/2018,Politicians,@SenSchumer,See you there! https://t.co/lLdoTIp81X +06/24/2018,Politicians,@SenSchumer,RT @CNNNewsource: LIVE - Senator chuck Schumer to demand Trump Admin to appoint Czar to oversee separated family reunion. CNN signal now on… +06/24/2018,Politicians,@SenSchumer,RT @SarahLJorgensen: Sen. Schumer calls on the White House to appoint a czar to handle the reunification of families and children separated… +06/24/2018,Politicians,@SenSchumer,"RT @markknoller: .@SenSchumer calls for federal ""Czar"" to oversee reunification of children and parents separated in illegal border crossin…" +06/24/2018,Politicians,@SenSchumer,The Trump ‘zero-tolerance’ immigration policy has left many with zero confidence in the admin’s ability to quickly… https://t.co/hWycAaHp15 +06/23/2018,Politicians,@SenSchumer,The Special Counsel’s investigation into Russian interference in US elections has either indicted or secured guilty… https://t.co/w85rFNjtHg +06/23/2018,Politicians,@SenSchumer,People of all political stripes should read conservative @GeorgeWill’s amazing column: https://t.co/xr5X756cC8 +06/22/2018,Politicians,@SenSchumer,Best wishes and congrats go out to @TinaMoorereport on being promoted by the @nypost as the paper’s FIRST female Police Bureau Chief. +06/22/2018,Politicians,@SenSchumer,"It may be the GOP’s 6 mo anniversary, but remember what @realDonaldTrump promised the American people? He said the… https://t.co/LR3KQj9KeG" +06/22/2018,Politicians,@SenSchumer,"If you look at the numbers, corporations are reaping record profits as a result of the #GOPTaxScam, but that saving… https://t.co/cK3huQhrsP" +06/22/2018,Politicians,@SenSchumer,"Since the beginning of 2018, corporations have announced plans to repurchase more than $480 billion in stock buybac… https://t.co/QQF1TwLrt8" +06/22/2018,Politicians,@SenSchumer,"6 mos ago, in the dead of night, the GOP jammed thru the #GOPTaxScam lavishing tax cuts on big corps & the wealthie… https://t.co/jTG0xZkzkQ" +06/21/2018,Politicians,@SenSchumer,More increases in health insurance rates out of Indiana and Iowa today—those higher costs are thanks to the sabotag… https://t.co/RUJVTS6hxK +06/21/2018,Politicians,@SenSchumer,"Open borders, @realDonaldTrump? The bipartisan immigration bill I authored had $40 billion for border security and… https://t.co/q7R87g7Kz8" +06/21/2018,Politicians,@SenSchumer,"While @realDonaldTrump signed an exec order on his policy of family separation, it does nothing for the >2,300 chil… https://t.co/zwBOmGpQDu" +06/21/2018,Politicians,@SenSchumer,".@realDonaldTrump hasn’t taken care of the problem, not by any stretch of the imagination. But now that he’s finall… https://t.co/ADHd1GCHjz" +06/21/2018,Politicians,@SenSchumer,What is the admin's plan to reunite the children already separated from their families? The EO is silent on that. H… https://t.co/WrQGOkovFG +06/21/2018,Politicians,@SenSchumer,The way the executive order was drafted means that it will not go into effect until a court rules on its legality.… https://t.co/FnnQyetBBF +06/21/2018,Politicians,@SenSchumer,I hope this means @realDonaldTrump will stop blaming others for problems he creates & start fixing them himself. He… https://t.co/QXHlMxoY9n +06/21/2018,Politicians,@SenSchumer,"For a little over a month, @realDonaldTrump’s family separation policy has resulted in >2,300 children separated fr… https://t.co/3HhA4qA2pe" +06/20/2018,Politicians,@SenSchumer,Keeping these children separated from their families is unacceptable and must be rectified. This has to be our numb… https://t.co/gTh6P0foli +06/20/2018,Politicians,@SenSchumer,"He can start with correcting the problems that this executive order will create, and should also undo his #DACA ord… https://t.co/2UquTRa8bG" +06/20/2018,Politicians,@SenSchumer,I also hope this represents a turning point & @POTUS will stop blaming others for problems he creates & start fixing them himself. +06/20/2018,Politicians,@SenSchumer,It’s a relief that @realDonaldTrump has reversed himself & recognized the cruelty of his policy of separating famil… https://t.co/LcBZwFiqBl +06/20/2018,Politicians,@SenSchumer,Protecting US jobs & our nation’s security must remain paramount & not something that we can compromise on. As my c… https://t.co/ebgrgEG2RL +06/20/2018,Politicians,@SenSchumer,My Republican colleagues must resist efforts by the Trump administration – at the behest of the Government of China… https://t.co/ipmTgIEoPg +06/20/2018,Politicians,@SenSchumer,"It’s as easy as this Mr. President. Just sign on the line, @realDonaldTrump. #KeepFamiliesTogether https://t.co/rhZcd9Iib2" +06/20/2018,Politicians,@SenSchumer,It's unconscionable that the US govt is housing babies & toddlers alone in an institutional setting. This crisis wa… https://t.co/B5Y8NSHVnm +06/20/2018,Politicians,@SenSchumer,"You - and not the law - are responsible for this family separation policy, @realDonaldTrump. GOP Senators and membe… https://t.co/hp2YAvIlYA" +06/19/2018,Politicians,@SenSchumer,Anyone who believes this Republican Congress is capable of addressing this issue is kidding themselves.… https://t.co/quvDUXGRQW +06/19/2018,Politicians,@SenSchumer,".@SpeakerRyan wants to pass a massive bill that may not even pass the House & couldn’t pass Senate, @SenateGOP are… https://t.co/TYN0Rmxx0S" +06/19/2018,Politicians,@SenSchumer,".@realDonaldTrump, if you share the outrage of the vast majority of Americans, if you’re ashamed of what’s happenin… https://t.co/UIcVxyKBT8" +06/19/2018,Politicians,@SenSchumer,"RT @JohnKasich: Unbelievably, the Administration has chosen to no longer defend the law of the land that protects those with pre-existing c…" +06/19/2018,Politicians,@SenSchumer,The Trump administration and Republicans in Congress should work with Democrats in a bipartisan way to make health… https://t.co/hrek0E3tBC +06/19/2018,Politicians,@SenSchumer,That’s exactly why more than 95% of the health care groups that filed comments about this proposed rule criticized… https://t.co/wyaeRAKTNz +06/19/2018,Politicians,@SenSchumer,Finalizing this rule is simply the latest act of sabotage of our health care system by the Trump administration and… https://t.co/cJLomWOwll +06/18/2018,Politicians,@SenSchumer,RT @politico: BREAKING: Senate rejects Trump’s rescue of Chinese firm ZTE https://t.co/IhYylQw1Dx +06/18/2018,Politicians,@SenSchumer,It is vital that our colleagues in the House keep this bipartisan provision in the bill as it heads towards a conference. +06/18/2018,Politicians,@SenSchumer,We’re heartened that both parties made it clear that protecting American jobs and national security must come first… https://t.co/ZLdggxODZu +06/18/2018,Politicians,@SenSchumer,Joining @SenTomCotton @ChrisVanHollen & @marcorubio in releasing a joint statement following the passage of #NDAA w… https://t.co/TBrozOkU3j +06/18/2018,Politicians,@SenSchumer,"RT @SenateDems: It’s time for @realDonaldTrump to stop lying. +As senior Trump officials – including members of his own cabinet- have said,…" +06/18/2018,Politicians,@SenSchumer,"As everyone who has looked at this agrees, this was done by the president, not Democrats. He can fix it tomorrow if… https://t.co/K3AZ50fLxq" +06/18/2018,Politicians,@SenSchumer,"If the House moderates really want to get something done on immigration, they should not be duped by their leadersh… https://t.co/JdfXMwQuII" +06/18/2018,Politicians,@SenSchumer,House mods will lose all credibility if they accept this sham of a bill; it's extreme & drastically cuts immigratio… https://t.co/AE1BDbPViR +06/18/2018,Politicians,@SenSchumer,"Instead of supporting this so-called “moderate” bill, @HouseGOP who want to get something done for Dreamers should… https://t.co/CuNNsXHRLE" +06/18/2018,Politicians,@SenSchumer,"By all reports, the House “moderate” immigration bill is hardly moderate at all. It would cut legal immigration dra… https://t.co/KV5vSmm3Ik" +06/17/2018,Politicians,@SenSchumer,"He turned 95 this week folks! Very grateful for my dad, Abe and my mom, Selma- she turned 90 on #DDay- and all they… https://t.co/AknEIlCCk0" +06/17/2018,Politicians,@SenSchumer,"Today as we celebrate #FathersDay, I want to share a few words I said about my Dad, Abe Schumer, this week on his 9… https://t.co/iXPr9BzlFg" +06/16/2018,Politicians,@SenSchumer,".@realDonaldTrump, the IG report found what we all knew: James Comey’s actions helped you. During the election, the… https://t.co/cji6xXFBIu" +06/15/2018,Politicians,@SenSchumer,Minnesota implemented a reinsurance program. This is what can happen when states support patients and fight back ag… https://t.co/kWk1bjFRlM +06/15/2018,Politicians,@SenSchumer,"RT @ChrisVanHollen: This Father’s Day, I’m headed to the border with @SenJeffMerkley to focus on the inhumanity of separating kids from the…" +06/15/2018,Politicians,@SenSchumer,Republicans in the House put forth a proposal that is dead on arrival in the Senate. When they get serious about fi… https://t.co/DDyVMJB9Rw +06/15/2018,Politicians,@SenSchumer,Today marks the 6th anniversary of the announcement #DACA. Rather than celebrating all of the things immigrant yout… https://t.co/tzYaeV90GG +06/15/2018,Politicians,@SenSchumer,Unless of course by “my people” the President means his cabinet: https://t.co/fTkYkVM4aE +06/15/2018,Politicians,@SenSchumer,"This is the United States is America, not the United States of Trump. We are a democracy not a dictatorship. So tha… https://t.co/Lm1FlyZLFB" +06/15/2018,Politicians,@SenSchumer,".@realDonaldTrump’s actions on China are on the money. China is our real trade enemy, & their theft of intellectual… https://t.co/icDp0FcVqJ" +06/15/2018,Politicians,@SenSchumer,.@realDonaldTrump which makes more sense? You fired Comey because he HURT Hillary Clinton? Or this: https://t.co/5IMSWIsUzn +06/14/2018,Politicians,@SenSchumer,"I hope Sec @stevenmnuchin1 @SecAzar & @SecretaryAcosta will abandon their proposed rule, and instead work with… https://t.co/JrMQySsv9U" +06/14/2018,Politicians,@SenSchumer,"We've been hearing from our constituents about these #junkplans, and a recent @latimes analysis found “[n]ot a sing… https://t.co/Mlhnq2nhgF" +06/14/2018,Politicians,@SenSchumer,"Healthcare experts overwhelmingly condemn the Trump administration’s plan, asserting the expanded sale and marketin… https://t.co/dHQEKLdhfy" +06/14/2018,Politicians,@SenSchumer,Today 44 Senators signed this letter to members of @realDonaldTrump's cabinet urging them to listen to the patients… https://t.co/ioueSq5pWa +06/14/2018,Politicians,@SenSchumer,Director Comey’s mishandling of the publicity around the Clinton email campaign all accrued to the benefit of then… https://t.co/Hc6WIpmAOX +06/14/2018,Politicians,@SenSchumer,RT @SenJackReed: I support diplomatic engagement over twitter insults. But Pres Trump’s lack of preparedness at North Korea summit cost the… +06/14/2018,Politicians,@SenSchumer,RT @SenJohnMcCain: Suspending US-South Korea joint military exercises is a mistake. I hope the President is successful in his efforts to ac… +06/14/2018,Politicians,@SenSchumer,I’ve now seen the Inspector General’s report. It contains no evidence to make any reasonable person conclude that t… https://t.co/I3FQkS7bVm +06/14/2018,Politicians,@SenSchumer,RT @SenateDems: The Trump administration is raising #healthcare costs for millions of Americans and attacking protections for people with p… +06/14/2018,Politicians,@SenSchumer,"My dad, a #WorldWarII veteran turns 95 today on #FlagDay. What a blessing! https://t.co/ZzcMRzBh8I" +06/13/2018,Politicians,@SenSchumer,RT @TimJHanrahan: NEW: The Trump administration's push to unravel more provisions of the ACA could affect tens of millions of people who ge… +06/13/2018,Politicians,@SenSchumer,"RT @RonWyden: When @realDonaldTrump and his Justice Department abandoned their duty to defend the law of the land, they put the health care…" +06/13/2018,Politicians,@SenSchumer,"After promising to protect ppl w/ pre-existing conditions from being denied affordable health care,… https://t.co/etXpcxtcEo" +06/13/2018,Politicians,@SenSchumer,The latest report from the American Academy of Actuaries further confirms that the Trump administration and Congres… https://t.co/NgUiWtEgj0 +06/13/2018,Politicians,@SenSchumer,Both Rs & Ds must be resolute in blocking @realDonaldTrump's bad pro-China ZTE deal. Protecting our natl & economic… https://t.co/UySLtLcS1d +06/13/2018,Politicians,@SenSchumer,"Exactly right. The Finger Lakes region is not and will never be a good location for this incinerator, and we have t… https://t.co/dxL4ajJ99t" +06/13/2018,Politicians,@SenSchumer,"RT @SteveBellone: Great news for Long Island (and the entire region) as @LIMacArthur continues to make improvements. TY to @SenGillibrand,…" +06/13/2018,Politicians,@SenSchumer,"The income inequality gap is at the highest levels since the Great Depression, a sure sign the Trump admin and the… https://t.co/nZfSy8OKVH" +06/13/2018,Politicians,@SenSchumer,"If @realDonaldTrump truly wants to make America great again, he needs to start by protecting American workers & dis… https://t.co/n7BjYCPAaA" +06/13/2018,Politicians,@SenSchumer,RT @SenStabenow: It is terrible to see the Trump Administration taking Michigan families back to the days when being a woman was considered… +06/13/2018,Politicians,@SenSchumer,"RT @StillTalkinTV: My remembrance of Tim Russert a decade after his death +https://t.co/FsiEhj5p0C" +06/13/2018,Politicians,@SenSchumer,Hard to believe it’s been 10 years without one of America’s greatest journalists and Buffalo’s most passionate advo… https://t.co/a8Npzbm83W +06/13/2018,Politicians,@SenSchumer,RT @morethanmySLE: 3rd meeting of the day and working with @SenSchumer to fight #ACA sabotage. Very proud of my senator! https://t.co/BKRQw… +06/13/2018,Politicians,@SenSchumer,The emphasis on showmanship as opposed to substance at the #NorthKoreaSummit will not serve America or the prospect… https://t.co/kKACyD6MII +06/13/2018,Politicians,@SenSchumer,"Mr. President, if only it were that easy, that simple. https://t.co/zDMhHTkxCa" +06/13/2018,Politicians,@SenSchumer,Glad you noticed. We wrote you last month asking for action: https://t.co/z113B9yrrS https://t.co/Oa0JdIQAsr +06/12/2018,Politicians,@SenSchumer,Republicans should instead work with Democrats now and throughout the summer to focus on lowering healthcare costs for the American people. +06/12/2018,Politicians,@SenSchumer,"Actions speak louder than words. So far, the @SenateGOP’s own legislation and the Trump administration’s actions pr… https://t.co/AduDyWDGUP" +06/12/2018,Politicians,@SenSchumer,"If Republicans are serious about maintaining protections for people with pre-existing conditions, they should join… https://t.co/CYTybIaKIU" +06/12/2018,Politicians,@SenSchumer,"RT @brianschatz: If you are pregnant, mentally ill, have cancer, a bad knee, asthma, diabetes, sleep apnea, acne, lupus or any other pre-ex…" +06/12/2018,Politicians,@SenSchumer,ICYMI @SenatorHassan on how the Trump administration has put politics over people by refusing to defend protections… https://t.co/4vd9E2z6OA +06/12/2018,Politicians,@SenSchumer,RT @SenatorMenendez: WATCH LIVE - standing with @SenSchumer @SenatorCardin @ChrisCoons & @SenateDems to talk the #TrumpKimSummit - https://… +06/12/2018,Politicians,@SenSchumer,"What the United States has gained is vague and unverifiable; what North Korea has gained, however, is tangible and… https://t.co/6EN1fjvwOW" +06/12/2018,Politicians,@SenSchumer,"RT @SenatorBaldwin: Last night, I sat down with Tiara Parker, a survivor of the #Pulse shooting. Today is the 2 year anniversary of this tr…" +06/12/2018,Politicians,@SenSchumer,"RT @PattyMurray: As a candidate, President Trump talked a big game on lowering drug prices, but after 500 days in office the only health ca…" +06/12/2018,Politicians,@SenSchumer,Go @NYRangers! But congrats to the @Capitals and stay safe everyone celebrating in DC today. https://t.co/07Gz2s5l3A +06/12/2018,Politicians,@SenSchumer,"RT @SenateDems: We know #FamiliesBelongTogether. That's why we're urging the full Senate to step up, remember our values, and pass our Keep…" +06/12/2018,Politicians,@SenSchumer,"2 yrs ago today, 49 beautiful lives were taken from us far too soon. Today we remember & mourn but we must, must, m… https://t.co/RjXcs8Icgx" +06/11/2018,Politicians,@SenSchumer,The fact that a bipartisan group of senators came together this quickly is a testament to how bad the Trump adminis… https://t.co/rCSGV4wAvz +06/11/2018,Politicians,@SenSchumer,"By including this provision to undo the ZTE deal in the defense bill, the Senate is saying loudly and in a bipartis… https://t.co/pFxQ76vRsP" +06/11/2018,Politicians,@SenSchumer,".@SenateMajLdr has shown he’s willing to confirm a judge over the objection of one home state Senator, but he will… https://t.co/cJmYX37gbp" +06/11/2018,Politicians,@SenSchumer,Bounds is also controversial & had some rather offensive writings that he failed to disclose to the bipartisan Judi… https://t.co/tp0SigQ17D +06/11/2018,Politicians,@SenSchumer,Farr has spent a lengthy legal career defending the interests of corps against their workers. He 2x defended the GO… https://t.co/1ZxLPqEttx +06/11/2018,Politicians,@SenSchumer,"In the next few weeks, the Senate is likely to take up two highly controversial judicial nominees: Thomas Farr for… https://t.co/mYYJMFpRWJ" +06/11/2018,Politicians,@SenSchumer,"RT @LawyersComm: As Justice #Sotomayor aptly observes, today’s decision forces minority communities to be ‘even more proactive and vigilant…" +06/11/2018,Politicians,@SenSchumer,RT @NAACP_LDF: The Supreme Court’s decision in #HustedvAPRI threatens to embolden states to undermine our democracy and deny eligible voter… +06/11/2018,Politicians,@SenSchumer,"In today’s decision, the #SCOTUS seemingly ignores the rights of the eligible voters who will be denied the right t… https://t.co/vkzG5W1R5m" +06/11/2018,Politicians,@SenSchumer,"When Congress passed the NVRA, a balance between was struck between the desire to make it as easy as possible for e… https://t.co/lvNqRXIFqB" +06/11/2018,Politicians,@SenSchumer,Democracy suffers when laws make it harder for U.S. Citizens to vote. This decision is dangerous and damaging and i… https://t.co/sCEG5mJi2f +06/11/2018,Politicians,@SenSchumer,The right to vote is the most sacred right we have as citizens. Aggressive voter purge systems like Ohio’s essenti… https://t.co/feBGQczXYG +06/11/2018,Politicians,@SenSchumer,"The ongoing push to disenfranchise American voters, led by the Trump administration and its allies at the state and… https://t.co/Zzfpji42JI" +06/11/2018,Politicians,@SenSchumer,RT @SenatorLeahy: #NetNeutrality may end today but the fight for an open Internet continues. The House can restore the rules by following t… +06/11/2018,Politicians,@SenSchumer,"One of many reasons small business owners, and all Americans, should make sure their representatives are fighting t… https://t.co/k4Y9825CjY" +06/11/2018,Politicians,@SenSchumer,"RT @SenMarkey: The repeal of #NetNeutrality officially goes into effect today, but the fight is far from over. + +The people saying we can’t…" +06/11/2018,Politicians,@SenSchumer,Every Republican who opposed this vote will own any and all of the damaging consequences of the FCC’s horribly misguided decision. +06/11/2018,Politicians,@SenSchumer,"It's now as clear as day to every American that w/the exception of 3 @SenateGOP mbrs, their GOP reps in the Congres… https://t.co/6Lh38eYbOQ" +06/11/2018,Politicians,@SenSchumer,That’s exactly why the entire Senate Democratic caucus sent a letter last week urging @SpeakerRyan to schedule a vo… https://t.co/CDki7wlDIC +06/11/2018,Politicians,@SenSchumer,"By refusing to bring up the Senate-passed, bipartisan resolution to restore #NetNeutrality House GOP leaders gave a… https://t.co/ymAHhANuEp" +06/11/2018,Politicians,@SenSchumer,RT @PIX11News: Sen. Schumer pushes for more suicide prevention federal funding https://t.co/8PZyZBFAjG https://t.co/bvZo7WjOoI +06/11/2018,Politicians,@SenSchumer,"Over the past couple of weeks, we have lost some very well-known people, near and dear to so many in New York, but… https://t.co/XSndKks7y6" +06/11/2018,Politicians,@SenSchumer,"Statistics show that if we can reach troubled people before, even in the midst of suicide ideation, there is a good… https://t.co/t5nBr9XwnM" +06/10/2018,Politicians,@SenSchumer,RT @AngeloRoefaro: TONIGHT AT 8PM: “Recent tragedies and the CDC report on increased suicide rates are the kinds of things that put a giant… +06/09/2018,Politicians,@SenSchumer,Are we executing Putin’s diplomatic and national security strategy or AMERICA’s diplomatic and national security st… https://t.co/Rntju0HX8j +06/09/2018,Politicians,@SenSchumer,RT @politico: Update: Trump said the U.S. will not sign a joint communique with other G-7 countries https://t.co/1mNF3YHYhr +06/09/2018,Politicians,@SenSchumer,".@realDonaldTrump, let me take a second to update my numbers. Special Counsel Mueller’s investigation has now eith… https://t.co/Yls00HDtP4" +06/08/2018,Politicians,@SenSchumer,"RT @mainstreetweets: Last year, the @HouseGOP voted to rip protections away from millions of Americans with pre-existing conditions. Now, t…" +06/08/2018,Politicians,@SenSchumer,"RT @RonWyden: .@realDonaldTrump & his admin have asked the courts to let insurance companies to deny care, charge more, and discriminate ag…" +06/08/2018,Politicians,@SenSchumer,Yet again the Trump Admin is sabotaging your health care. We’re urging @realDonaldTrump & @TheJusticeDept to revers… https://t.co/zZk2r3dtVm +06/08/2018,Politicians,@SenSchumer,"Readmitting Russia to the G-7 would reward Vladimir Putin for actions the U.S. and its allies have condemned, and w… https://t.co/zQm2kI0bT0" +06/08/2018,Politicians,@SenSchumer,"The president’s support for inviting Russia back into the G-7, just after they meddled in the election to support h… https://t.co/bj4tUVrnTm" +06/08/2018,Politicians,@SenSchumer,"We need the president to be able to distinguish between our allies and adversaries, and to treat each accordingly.… https://t.co/W1x6l4OtQA" +06/08/2018,Politicians,@SenSchumer,".@realDonaldTrump is turning our foreign policy into an international joke, doing lasting damage to our country, wi… https://t.co/Hs18Z184hB" +06/08/2018,Politicians,@SenSchumer,"A little less tweeting, a little more preparing for the summit. Our points are important ones that should be consid… https://t.co/eAWLgm1KGV" +06/08/2018,Politicians,@SenSchumer,RT @SenBobCasey: The Trump Administration and Congressional Republicans are coming after protections for those with pre-existing conditions… +06/08/2018,Politicians,@SenSchumer,"RT @SenJackReed: In their quest to undermine the ACA, the Trump Admin is now trying to throw out protections for people with pre-existing c…" +06/08/2018,Politicians,@SenSchumer,"RT @axios: The legal challenge at issue here may be somewhat of a long shot on the merits. But if it does ultimately succeed, it could toss…" +06/08/2018,Politicians,@SenSchumer,RT @USATODAY: The Trump administration says key parts of Obamacare — including the provisions protecting those with pre-existing conditions… +06/08/2018,Politicians,@SenSchumer,"RT @CNN: The Trump administration won't defend central provisions of the Affordable Care Act, saying in a legal filing that key parts of th…" +06/08/2018,Politicians,@SenSchumer,The Trump administration once again is allowing premiums to go up and middle class Americans to pay more. The ACA i… https://t.co/4XgMh8DId7 +06/07/2018,Politicians,@SenSchumer,RT @SenFeinstein: News that President Trump is ignoring counterintelligence procedures by using unsecured cell phones is unacceptable. This… +06/07/2018,Politicians,@SenSchumer,"With ICBMs and nuclear warheads in the hands of North Korea, the situation is far too dangerous for seat of the pan… https://t.co/yfcAK5gnlT" +06/07/2018,Politicians,@SenSchumer,"RT @SenMarkey: 21 days ago, we proved @AjitPaiFCC and the special interests wrong and passed the resolution to save #NetNeutrality in the S…" +06/07/2018,Politicians,@SenSchumer,RT @SenStabenow: Access to the internet is not a luxury; it’s a necessity for people in Michigan. Last month I joined Republicans and Democ… +06/07/2018,Politicians,@SenSchumer,"We passed our #NetNeutrality CRA in the Senate, & @SenateDems are still in the fight. Today we wrote to… https://t.co/cgdzbNHmUm" +06/07/2018,Politicians,@SenSchumer,Today @SenateDems urged @SpeakerRyan to put middle-class families over special interests & vote on the bipartisan S… https://t.co/uRm5OZ6gAh +06/07/2018,Politicians,@SenSchumer,The time has come to decriminalize marijuana. It’s simply the right thing to do. https://t.co/uVJIyzVedt +06/07/2018,Politicians,@SenSchumer,".@realDonaldTrump should be aiming his trade fire at China, but instead he inexplicably aims it at allies like Cana… https://t.co/LtzEPm91ZJ" +06/07/2018,Politicians,@SenSchumer,"RT @DandC: With rail shipments of crude oil on the upswing, Schumer pushes for tighter rules https://t.co/KUBW9nji0A #ROC" +06/07/2018,Politicians,@SenSchumer,"It is clear to me that we need an all-of-the-above approach to safety, so I am urging @USDOT & @ENERGY to finally p… https://t.co/RauFXFyA28" +06/07/2018,Politicians,@SenSchumer,"“If the facts are against you, argue the law. If the law is against you, argue the facts. If the law and the facts… https://t.co/PpdzPV5GNh" +06/06/2018,Politicians,@SenSchumer,"It would not have been decided in our favor if not for the American troops, grizzled veterans & fresh faced recruit… https://t.co/ro0ANW0M0P" +06/06/2018,Politicians,@SenSchumer,#DDay was a turning point in a war that determined the outcome of human freedom in the 20th Century. +06/06/2018,Politicians,@SenSchumer,"Today we give thanks for the brave men who gave their lives that day to break Hitler’s hold on Europe, and their co… https://t.co/o7Fn4fzQFZ" +06/06/2018,Politicians,@SenSchumer,"74 yrs ago, Allied forces conducted the largest seaborne invasion in human history. At stake were not only the live… https://t.co/hEdGVYIdYR" +06/06/2018,Politicians,@SenSchumer,"Little has changed in Brooklyn, maybe the languages spoken, but parents are still working hard & encouraging their… https://t.co/kX71ElH67b" +06/06/2018,Politicians,@SenSchumer,"This month we #CelebrateImmigrants and share our own stories. For me, that starts in Brooklyn where my whole block… https://t.co/DpfrU77q0h" +06/06/2018,Politicians,@SenSchumer,"RT @ProtectOurCare: Leader Schumer and @SenateDems’ focus is precisely where it should be – on health care, the top issue for Americans of…" +06/06/2018,Politicians,@SenSchumer,RT @uticaOD: Schumer calling for extra safety for crude oil shipped by rail https://t.co/QVfwNAjm9k +06/30/2018,Politicians,@timkaine,"Today I rallied with hundreds of Virginians in Richmond to voice a simple message: #FamiliesBelongTogether. + +The Tr… https://t.co/qfEzTojVZV" +06/29/2018,Politicians,@timkaine,We have massive inequities in our criminal justice system and we’ve over-incarcerated too many Americans – especial… https://t.co/iBCDfTRRo9 +06/28/2018,Politicians,@timkaine,"An American newsroom should never feel ""like a war zone."" This is awful. My heart breaks for Virginia's neighbors i… https://t.co/LHAi8EYqNb" +06/28/2018,Politicians,@timkaine,"The Constitution is clear: With SCOTUS, both the President and Senate have roles in this process. + +The GOP was cle… https://t.co/DyjMJsiciP" +06/27/2018,Politicians,@timkaine,Thank you @GiffordsCourage for your support -- I am proud to stand with you in the fight against gun violence. Your… https://t.co/fXWAaqt6eO +06/26/2018,Politicians,@timkaine,"Big day - we unanimously (and finally) updated #PerkinsCTE. I've called for this action for years, and today's legi… https://t.co/cDNWnuhkB6" +06/26/2018,Politicians,@timkaine,Disappointed by SCOTUS. Trump's intentions were clear: stoke fear and perpetuate stereotypes. Discrimination based… https://t.co/DLIa6Yvllt +06/26/2018,Politicians,@timkaine,My opponent shares his views on an issue he is bizarrely obsessed with—saying that the Civil War wasn’t about slave… https://t.co/zFIuCoDkrg +06/25/2018,Politicians,@timkaine,"The Trump tariffs are killing U.S. jobs. A trade war with our closest allies continues to make no sense. + +https://t.co/IeX2WSMvAa" +06/22/2018,Politicians,@timkaine,RT @MarkWarner: .@TimKaine and I are demanding answers about what’s going on at this facility in Staunton. https://t.co/KJNKHVzx05 +06/21/2018,Politicians,@timkaine,"Trump's order leaves us with more questions than answers: + +How to ensure kids are safely returned to parents? +When?… https://t.co/6F5wLag6cv" +06/21/2018,Politicians,@timkaine,"Deeply troubled by this report. We need answers on what happened at this facility, and my staff and I are going to… https://t.co/89spCI8voV" +06/21/2018,Politicians,@timkaine,"President Trump's ""action"" today did not end this administration's heartlessness when it comes to families at the b… https://t.co/CZTj23saBm" +06/20/2018,Politicians,@timkaine,"My thoughts on the situation at the border... + +I've been to neighborhoods where gangs prey on children and seen par… https://t.co/NjsSSn8aUX" +06/20/2018,Politicians,@timkaine,RT @MarkWarner: .@TimKaine and I are demanding answers about the Trump Administration’s #FamilySeparation policy. We’ve signed on to legisl… +06/20/2018,Politicians,@timkaine,"The Old Testament instructs the faithful: “When a foreigner resides among you in your land, do not mistreat them...… https://t.co/aQvwcxscMV" +06/20/2018,Politicians,@timkaine,"What we’re seeing at the border is cruel and goes against our values. + +If you’re looking for a way to stop it, cons… https://t.co/oAVuBz7ejH" +06/19/2018,Politicians,@timkaine,Today in 1865 our nation took a tremendous step towards becoming a more perfect union. Celebrating #Juneteenth remi… https://t.co/e512NTRyqn +06/19/2018,Politicians,@timkaine,"RT @SenJohnMcCain: The administration’s current family separation policy is an affront to the decency of the American people, and contrary…" +06/18/2018,Politicians,@timkaine,The real Trump Hotel. https://t.co/PP6nIbzNQR +06/18/2018,Politicians,@timkaine,"A great #FathersDay. + +Church this AM with Anne, my Marine son Nat coming home to Richmond for lunch, calling my Dad… https://t.co/ghnBlMs905" +06/17/2018,Politicians,@timkaine,"On this #FathersDay, put your dad in your mind’s eye. Or your son or daughter. + +Now imagine them being ripped away… https://t.co/r3EIfLzNhB" +06/16/2018,Politicians,@timkaine,My week: Trump tweets that I am a “total stiff.” But he called Kim Jong Un a “very talented man.” I’ll take it! 🤷‍♂️ +06/15/2018,Politicians,@timkaine,"Happy (almost) Father's Day to all the dads and dad jokers out there. Even if your jokes aren't appreciated, you ce… https://t.co/eIqmTVGBV5" +06/15/2018,Politicians,@timkaine,"RT @AnneHolton: Honored to be a part of this day of joy and celebration for the Muslim community. As you end your Ramadan month of fasting,…" +06/15/2018,Politicians,@timkaine,A heartfelt piece about 2 people who met working for me in 2005. I have officiated at 14 weddings of staffers and f… https://t.co/LECxkCc9nA +06/15/2018,Politicians,@timkaine,"New low: AG cites the Bible to support ripping kids away from their parents. + +Wrong on Scripture—“suffer little chi… https://t.co/d4GwRINbBk" +06/14/2018,Politicians,@timkaine,"For those wanting to know about my Senate opponent, take a look at his latest bit of wisdom. + +An empty bucket ratt… https://t.co/KikRhsNmLv" +06/13/2018,Politicians,@timkaine,"Well, I have an opponent. + +He has stoked the fires of bigotry in Virginia. +He's underfunded public schools and heal… https://t.co/0QjTynWuz2" +06/13/2018,Politicians,@timkaine,"RT @TeamKaine: It’s time for #BlueWave2018. + +@TimKaine& +@VangieWilliams& +@ElaineLuriaVA& +@BobbyScott4VA3& +@Donald_McEachin& +@LeslieCockburn…" +06/11/2018,Politicians,@timkaine,@GCV_ArtDirector Looks cheesy! +06/11/2018,Politicians,@timkaine,Help!! Who knows how to photoshop a burger into this?? https://t.co/7LQJNK12MK +06/10/2018,Politicians,@timkaine,"So the administration is now suggesting the CANADIAN LEADER, one of our closest allies, should be condemned to the… https://t.co/1ZpPa6mNKX" +06/10/2018,Politicians,@timkaine,A sad day—we’ve lost a magnificent musician. “Bare Trees” is one of the best LPs ever and Danny Kirwan’s soulful pl… https://t.co/0oeTx5tkMz +06/09/2018,Politicians,@timkaine,"To all the Virginians (and everyone) participating in #Pride this weekend, thank you for sharing your voice and cel… https://t.co/zZh9F0ePVp" +06/08/2018,Politicians,@timkaine,Letting Russia into the G-7 would be like inviting Gallagher to join you at the farmer’s market. https://t.co/BVeMrMsBr3 +06/08/2018,Politicians,@timkaine,Are the Caps the best team in the NHL? OVIously! https://t.co/7F0JUBZAPm +06/07/2018,Politicians,@timkaine,This story shows how this Administration is betraying American values with its shocking treatment of children seeki… https://t.co/zJARP1z42M +06/07/2018,Politicians,@timkaine,"I've long said we should eliminate superdelegates – so ahead of a big DNC meeting Friday, I'm glad to see support g… https://t.co/BRWHTq7Oa4" +06/07/2018,Politicians,@timkaine,"So many Virginians will now get access to health care. This is what happens when Democrats win, and when people com… https://t.co/PPSgiGNnrZ" +06/07/2018,Politicians,@timkaine,"RT @alicelintong: I am so proud to work for @timkaine, a leader who believes deeply in treating every person equally and embracing the stre…" +06/07/2018,Politicians,@timkaine,"Thank you, @NRDC_AF! https://t.co/HiCOb37qbz" +06/07/2018,Politicians,@timkaine,RT @NRDC_AF: Sen. Tim Kaine is an environmental champion who fights for healthy families & a safe environment. He is a tireless advocate fo… +06/06/2018,Politicians,@timkaine,"""Some 400,000 jobs will be lost, with 16 losses for every job created"" by President Trump's tariffs – it's not enou… https://t.co/5t58b5C224" +06/05/2018,Politicians,@timkaine,"RT @FairfaxJustin: Freedom to Rise: June 5, 1798. Exactly 220 years ago today, Simon Fairfax was freed from slavery in Virginia. Today, h…" +06/05/2018,Politicians,@timkaine,"After last night’s win, here’s my prediction for Thursday: https://t.co/QLp9iZK12P" +06/05/2018,Politicians,@timkaine,@AdamBlickstein 🤷‍♂️ +06/05/2018,Politicians,@timkaine,This might surprise some people but I think this is the most polite White House in history. They’re always saying “pardon me.” +06/04/2018,Politicians,@timkaine,I REALLY HOPE THE CAPS WIN TONIGHT. (Is that how this #ALLCAPS thing works?) +06/04/2018,Politicians,@timkaine,"Virginia voters showed up big time in 2017 and now we are able to expand Medicaid to 400,000 more people. Good turn… https://t.co/prqAn8l0aB" +06/02/2018,Politicians,@timkaine,"Upwards of 400,000 Virginians will have access to health care after this momentous week in Virginia. I am so proud… https://t.co/7lhNWPsS8f" +06/02/2018,Politicians,@timkaine,RT @AnneHolton: There’s only one way to greet a Governor the first time you see him after he expanded Medicaid!! https://t.co/yj9M3G6vk0 +06/01/2018,Politicians,@timkaine,Thank you @LCVoters! https://t.co/WzqprcyZ7c +06/01/2018,Politicians,@timkaine,We #WearOrange because far too many can’t today - their lives were taken by gun violence. In our schools and street… https://t.co/xhlA9KiKPW +06/01/2018,Politicians,@timkaine,"From the team that brought you Celebrity Apprentice.... + +It’s Celebrity Cronyism! https://t.co/07kE1DidEM" +05/31/2018,Politicians,@timkaine,"The #spellingbee finals are tonight, so here’s a #tbt to 2013 when I had some fun at a bee myself (and somehow won)… https://t.co/0LxwzOn6PU" +05/31/2018,Politicians,@timkaine,“Wait—what do you believe? What I said at the time or what I am tweeting now a year later after waking up in a cold… https://t.co/OA6nPPctDZ +05/31/2018,Politicians,@timkaine,"I don’t know about you, but occasionally I like to crack open a cold one on a hot day. President Trump’s aluminum t… https://t.co/6Iacgl7PXW" +05/30/2018,Politicians,@timkaine,"Big Democratic turnout in 2017 = health insurance for 400,000 more Virginians. + +Can we do it again in 2018?" +05/30/2018,Politicians,@timkaine,"To the 23 Senators who voted yes: thank you. You are doing right by your constituents and the Commonwealth. Now, we… https://t.co/orsI17DCGm" +05/30/2018,Politicians,@timkaine,BIG NEWS: The Virginia Senate just voted to move forward on Medicaid expansion! The bipartisan vote is a long-overd… https://t.co/q1a7YVmH3j +05/30/2018,Politicians,@timkaine,"@SpaceManAndy @taber @catmancatman864 I'm actually a peanut butter man. Wild, I know." +05/30/2018,Politicians,@timkaine,"Roll Tide, Doug! https://t.co/UwwPetzdWC" +05/30/2018,Politicians,@timkaine,"Medicaid expansion is a no-brainer - it gives millions access to care, grows the economy and creates jobs, and stat… https://t.co/fpy29XrOtA" +05/29/2018,Politicians,@timkaine,"Getting off a plane today, a flight attendant put a small white bag in my hand and simply said “thanks.” I was intr… https://t.co/iysvnSyeaG" +05/29/2018,Politicians,@timkaine,"President Trump's immigration policies tear families apart, leaving innocent children hurt and alone. It's heartles… https://t.co/19BwHYTNcK" +05/28/2018,Politicians,@timkaine,"I love parades. Happy Memorial Day from Portsmouth, Virginia!! 🇺🇸🇺🇸 https://t.co/CoDpjnJBQI" +05/28/2018,Politicians,@timkaine,"On this #MemorialDay, as many of us enjoy precious time with friends and family, let’s all remember those who gave… https://t.co/IikSDadcXF" +05/27/2018,Politicians,@timkaine,"As I worshipped in Hampton Roads this morning, I couldn’t help but consider how Scripture commands compassionate tr… https://t.co/DeT9j4p3TL" +05/26/2018,Politicians,@timkaine,Great to be out on the trail in Hampton Roads this weekend!! https://t.co/ARvY8wzq3k +05/25/2018,Politicians,@timkaine,Federal workers will not be made the scapegoats for this administration’s incompetence and mismanagement. These are… https://t.co/0SPbp7d6QK +05/25/2018,Politicians,@timkaine,Sign of the times - school shootings are so normalized that *this* is what a parent of kids at the MIDDLE school in… https://t.co/yFQMmyRm6h +05/25/2018,Politicians,@timkaine,"Twitter world: I am proud to introduce you to the newest Virginia municipality - “Capitalsville.” + +Its primary expo… https://t.co/GG3lgCtPWt" +05/25/2018,Politicians,@timkaine,At home this evening and this picture caught my eye. Hard to believe it’s been 35 years since @AnneHolton and I gra… https://t.co/XUxKzkOT8P +05/24/2018,Politicians,@timkaine,"This year, I'm especially proud that some of the proposals I've pushed for were included in #FY19NDAA, like address… https://t.co/x8sbVIQyg8" +05/24/2018,Politicians,@timkaine,"Every now and then, the Senate can work like it's supposed to. The bipartisan passage of the #FY19NDAA in the Armed… https://t.co/XmLDJPWk3j" +05/24/2018,Politicians,@timkaine,"Thank you, @MineWorkers! I am proud to fight for you, your health care and pensions, and for economic development a… https://t.co/OrKX9Bipoz" +05/24/2018,Politicians,@timkaine,"With the sad news about Philip Roth’s passing, I suggest reading American Pastoral, The Human Stain, The Plot Again… https://t.co/PmXQHYWDT7" +05/23/2018,Politicians,@timkaine,RT @UNITEDWEDREAM: Find out if you can renew your #DACA TODAY! United We Dream has put a list of resources for you to figure out if you qua… +05/23/2018,Politicians,@timkaine,"Not only is this rank corruption but it threatens U.S. foreign policy. + +We're in dangerous territory when a country… https://t.co/RN5DACdRUn" +05/23/2018,Politicians,@timkaine,"Last night's election results showed Dems are energized, sure. But they also proved we're elevating needed voices i… https://t.co/Ejls9rBroE" +05/23/2018,Politicians,@timkaine,"RT @13NewsNow: Senator Kaine vows to fight for military veterans, spouses https://t.co/tq7tbQHas1 https://t.co/EayPjxA76N" +05/23/2018,Politicians,@timkaine,I am so proud of @SindyBenavides! An amazing Latina leader who started her public service path on Team Kaine. Vence… https://t.co/xybMwwHabX +05/22/2018,Politicians,@timkaine,A victory for equality. https://t.co/mcKaKWcgu9 +05/22/2018,Politicians,@timkaine,"Meetings. Did some interviews with Virginia media. Some Armed Services and HELP committee work. + +The usual. + +You? https://t.co/rbDCW9JnAF" +05/22/2018,Politicians,@timkaine,Too real. https://t.co/A8fjFNJ2Oh +05/22/2018,Politicians,@timkaine,Thank you @SierraClub and @VASierraClub! I will never stop fighting to protect our environment and standing up agai… https://t.co/wexw0UteJM +05/22/2018,Politicians,@timkaine,"This is heartbreaking - no child should face bullying or cruelty like this just for speaking up. + +To all the kids o… https://t.co/k651HgaCDL" +05/22/2018,Politicians,@timkaine,"Thank you, @kelly_clarkson. The NRA doesn’t just want a “moment of silence,” they want decades of silence and a nat… https://t.co/lhtHoNyrFp" +05/22/2018,Politicians,@timkaine,"As a lawyer, I sued to stop discrimination and hold companies accountable. + +As a senator, I'm appalled that SCOTUS… https://t.co/As2mUWJVTg" +05/21/2018,Politicians,@timkaine,"Dream job: bandleader on @BarackObama's late night show. + +I'd be his @paulshaffer any day. https://t.co/zW39M86B3s" +05/20/2018,Politicians,@timkaine,"You’re right on one front, @OliverLNorth: these kids aren’t the problem. + +They’re the solution. + +To problems sown b… https://t.co/g8tEnxbCTW" +05/19/2018,Politicians,@timkaine,We have to do more to help those suffering from addiction. Powerful conversation yesterday at the Chesterfield jail… https://t.co/usQChqOLif +05/18/2018,Politicians,@timkaine,"22 school shootings in 2018. + +3 in the last week. + +How many times must our hearts break hearing news like this - th… https://t.co/D7ErJjhF4v" +05/18/2018,Politicians,@timkaine,"These partisan attacks on Planned Parenthood—which provides basic health care to more than 8,000 people a day—are d… https://t.co/Rdv7WOuL5y" +05/17/2018,Politicians,@timkaine,RT @GovernorVA: Glad @timkaine and @markwarner are pushing for action to address the double-digit health insurance rate increases Virginian… +05/17/2018,Politicians,@timkaine,We Democrats should also be proud of the way @TomPerez has led this thorough reform effort - earnestly bringing tog… https://t.co/fQTyZGtCS7 +05/17/2018,Politicians,@timkaine,"I’ve said it before, and I’ll say it again: we Democrats should get rid of superdelegates once and for all. Let’s h… https://t.co/x1XxOSUvu6" +05/16/2018,Politicians,@timkaine,"We just voted to keep the internet FREE and OPEN! Big win for #NetNeutrality in the Senate, thanks to you raising y… https://t.co/H4OZWmPF6y" +05/16/2018,Politicians,@timkaine,"Given the NRA's ubiquitous presence in U.S. elections, it should alarm every American that the bipartisan Senate In… https://t.co/RYFxWQTAU4" +05/16/2018,Politicians,@timkaine,"RT @SenBennetCO: From @washingtonpost Ed Board: “Compassionate & realistic” health care proposals exist. One of them is #MedicareX, my plan…" +05/15/2018,Politicians,@timkaine,"As #Ramadan begins tonight, I want to wish all who observe a blessed and peaceful month. Ramadan Mubarak!" +05/15/2018,Politicians,@timkaine,Richmond’s own Tom Wolfe was a staggering talent. I met him once and never will forget it. Sorry to hear today’s ne… https://t.co/rpplvAxcFt +05/14/2018,Politicians,@timkaine,🚨Everyone in Northern Virginia: please take every precaution and be safe as extreme weather covers the region tonig… https://t.co/cxYnikYgkB +05/14/2018,Politicians,@timkaine,"Cancer: prepare to meet the same fate as those young men Harry TKO'd as an amateur boxer. He's a fighter, and you d… https://t.co/nECqR67z86" +05/14/2018,Politicians,@timkaine,"We over-incarcerate in America—exploding the prison population, and undermining faith in our criminal justice syste… https://t.co/N69tFCJW51" +05/14/2018,Politicians,@timkaine,"Here's a little Mother's Day Monday Morning Moment of Zen -- from a walk with @AnneHolton in New York yesterday, wh… https://t.co/GHgony0uKi" +05/13/2018,Politicians,@timkaine,"Some of the best advice my mom Kathy ever gave me is: ""If you want to be right, be a pessimist. If you want to do r… https://t.co/25BEnWvmdf" +05/12/2018,Politicians,@timkaine,"Can't wait to rock out with @tommy_stinson, founder of @bashnpop, at this great benefit for Little League tonight!… https://t.co/YRVEwj5DQY" +05/11/2018,Politicians,@timkaine,Military spouses make sacrifices every day to support our troops. We’ve got to do all that we can to support them—l… https://t.co/k0ef54mA2a +05/11/2018,Politicians,@timkaine,"Gina Haspel's role in the CIA's use of torture was neither minor nor incidental. For example, she personally wrote… https://t.co/PJaCVoQYql" +05/11/2018,Politicians,@timkaine,Among the many casualties of the war on terror was the moral judgment of those in government complicit in the use o… https://t.co/5TG5iJ2Hsf +05/10/2018,Politicians,@timkaine,"RT @WAVY_News: Sen.@timkaine's provisions to ""America's Water Infrastructure Act"" may be the first step in saving Tangier Island and coasta…" +05/10/2018,Politicians,@timkaine,"RT @AnneHolton: When my dad ran for governor in 1969, 16-year-old Joann in Grayson County created a scrapbook of his campaign for a high sc…" +05/10/2018,Politicians,@timkaine,"""There are a variety of factors feeding the rising costs... The most immediate is that the administration under Pre… https://t.co/erySYLo2AT" +05/10/2018,Politicians,@timkaine,"RT @virginiavfw: We like to say thanks when elected officials do things that help veterans. Today, we thank @MarkWarner & @timkaine for sec…" +05/09/2018,Politicians,@timkaine,RT @jessalynsays: attn news-seekers on twitter: @timkaine’s instagram is where you find the inside scoop on extremely important meetings. e… +05/09/2018,Politicians,@timkaine,"Good question. I actually have new, bipartisan legislation to prevent the president from unilaterally starting a wa… https://t.co/6KuXwlKdJc" +05/09/2018,Politicians,@timkaine,"Hang on. + +1) The Iran deal *explicitly* precluded Iran from developing a nuke. + +2) Trump unilaterally just blew up… https://t.co/lhVT1jUv8l" +05/09/2018,Politicians,@timkaine,RT @Voices4Troops: Sen. @timkaine addresses #MOAA members during the 34th annual #Virginia Congressional Delegation Luncheon. MOAA members… +05/09/2018,Politicians,@timkaine,Today we’re filing a petition to force a vote to save #NetNeutrality. Every Dem Senator + @SenatorCollins supports… https://t.co/aVsP3PcNtO +05/08/2018,Politicians,@timkaine,"The Iran deal states that “under no circumstances will Iran ever seek, develop, or acquire any nuclear weapons.” Wh… https://t.co/qSNqZmuFUX" +05/08/2018,Politicians,@timkaine,"RT @CSGV: .@CSGV is proud to endorse our friend and ally @timkaine for reelection to the US Senate. + +Kaine has repeatedly beaten @NRA in t…" +05/07/2018,Politicians,@timkaine,"Students continue to lead the conversation on gun violence prevention - today, they offered their thoughts at a rou… https://t.co/PiV0aDgMQc" +05/07/2018,Politicians,@timkaine,Flashback to my teaching days - this morning I got to co-teach a government class at @ForestParkHSVA with their fan… https://t.co/uGd748odzn +05/06/2018,Politicians,@timkaine,We can be critical of the government of Iran or any nation and take steps - like sanctions - to punish dangerous le… https://t.co/Qaexzy93bk +05/06/2018,Politicians,@timkaine,I gave the commencement address at Radford University yesterday - but the story of the day was 62 year-old graduate… https://t.co/vJYPWEiZNL +05/04/2018,Politicians,@timkaine,Our country opened its arms to these Hondurans seeking refuge and they’ve made endless contributions to our culture… https://t.co/lgsMIFOckO +05/03/2018,Politicians,@timkaine,"I'll take ""Tough Choices"" for $1000, Alex. https://t.co/woUd2tslsE" +05/02/2018,Politicians,@timkaine,We can't let up in our efforts to stop widespread sexual harassment. Thank you to @campaign_purple for spreading th… https://t.co/2NPURCnbce +05/02/2018,Politicians,@timkaine,VP showing comedic chops. Speaker at next year’s WHCD? https://t.co/sOfAEmAVn8 +04/30/2018,Politicians,@timkaine,To the White House Correspondents Association: if you’re looking for a new kind of “Standup” Comedy for next year’s… https://t.co/QG78L7IQUr +04/30/2018,Politicians,@timkaine,RT @washingtonpost: Op-ed from Sen. Tim Kaine: Congress must take away Trump’s unlimited authority to wage war https://t.co/l0cdQzhGjT +04/27/2018,Politicians,@timkaine,"I'm heartened to see the progress between South Korea and North Korea today. Dialogue and robust diplomacy are key,… https://t.co/H3Sh8DyukB" +04/26/2018,Politicians,@timkaine,"I voted against an anti-science person to head a science agency. + +I voted against an anti-education person to head… https://t.co/gwx1M8gYXI" +04/26/2018,Politicians,@timkaine,RT @Evanne8News: I was so impressed by the career and technical education program at @HenricoSchools. This is the auto class! Sen. @TimKain… +04/26/2018,Politicians,@timkaine,"Senator McConnell: this came out of committee with a bipartisan, two-thirds majority vote. Democrats and Republican… https://t.co/OzxojzSoJU" +04/25/2018,Politicians,@timkaine,"All these court rulings on DACA can be confusing. Here’s what you need to know: + +1️⃣If you already have DACA status… https://t.co/NORECmbuUh" +04/25/2018,Politicians,@timkaine,"Mandela’s words ring true: “A nation should not be judged by how it treats its highest citizens, but its lowest one… https://t.co/5PEkp2nHBw" +04/25/2018,Politicians,@timkaine,"As I listen to French President Macron address Congress, I'm struck that it's the same day that the Supreme Court w… https://t.co/fRTuGxK21X" +04/24/2018,Politicians,@timkaine,RT @senrobportman: Today I introduced my bipartisan Creating Quality Technical Educators Act w/@TimKaine @SenCapito & @SenatorBaldwin. Care… +04/24/2018,Politicians,@timkaine,I have serious concerns about the situation along the Mountain Valley Pipeline route. Many are rallying to… https://t.co/EMUFsaxEtg +04/23/2018,Politicians,@timkaine,Proud to celebrate the first ever Barbara Johns Day today in Virginia. She was a pioneer and a patriot who wouldn’t… https://t.co/fzyGdCZSa9 +04/23/2018,Politicians,@timkaine,🚨Special election TOMORROW in #AZ08 - Democrat @hiral4congress is neck-and-neck in a district Trump won by 20+! She… https://t.co/3xmEI2VLjn +04/22/2018,Politicians,@timkaine,"I spent my Saturday in Louisa, Manassas, Fairfax and Arlington and I can tell you this: Dems are fired up and ready… https://t.co/qotwL8rMvI" +04/20/2018,Politicians,@timkaine,"April is Jazz Appreciation Month. Celebrate by listening to Sonny Rollins’ Blue 7. 🎶 + +Great way to start your Frida… https://t.co/ixnRZtxtiS" +04/19/2018,Politicians,@timkaine,"I am asking President Trump to provide his legal rationale for striking Syria. + +Without congressional approval, it… https://t.co/SC63vAzFUD" +04/19/2018,Politicians,@timkaine,39 senators. That’s the most ever—in all of American history—to formally call for the resignation of a Cabinet-leve… https://t.co/y3InZUWOkX +04/18/2018,Politicians,@timkaine,We reduced the veterans' unemployment rate because there was a patriotic desire to confront it. We need the same pa… https://t.co/zsbZPEqjfS +04/18/2018,Politicians,@timkaine,"Barbara Bush’s wit, wisdom, and devotion to her family and our country earned her the admiration of millions, and h… https://t.co/jW6mwF9XBk" +04/17/2018,Politicians,@timkaine,"Why do we require Congress rather than the Executive to start war? + +“[M]onarchs will often make war when their nati… https://t.co/q2qAi7czhH" +04/16/2018,Politicians,@timkaine,"For too long, Congress has given Presidents a blank check to wage war. It’s time for that to stop. + +We’ve introduce… https://t.co/pxqbFNrHBS" +04/16/2018,Politicians,@timkaine,"RT @nowthisnews: Liviu Librescu survived the Holocaust as a young boy. + +Decades later, he lost his life to senseless gun violence as a pro…" +04/16/2018,Politicians,@timkaine,"11 years ago today was the worst day of my life, when we lost 32 innocent lives at Virginia Tech in what was then t… https://t.co/sbm61Rmju8" +04/15/2018,Politicians,@timkaine,"As Mr. Fogerty sang, doo doo doo, lookin’ out my back door. Happy Sunday - and Spring! https://t.co/z17ZnKm854" +04/15/2018,Politicians,@timkaine,In case you ever wondered... Here’s what I see when I appear on @FaceTheNation from the @wcve studio in Richmond’s… https://t.co/rEEgrQnxgM +04/15/2018,Politicians,@timkaine,"Now more than ever, we need a Secretary of State who will stand strong for vigorous diplomacy, not exacerbate Presi… https://t.co/mjtmNMc3Tq" +04/14/2018,Politicians,@timkaine,"If President Trump really cared about Syria’s humanitarian crisis..... + +https://t.co/vLKeiFHEBd" +04/14/2018,Politicians,@timkaine,Of course citizen Trump said President Obama couldn’t strike Syria without congressional approval—but now President… https://t.co/aZuzlJfCXm +04/14/2018,Politicians,@timkaine,Trump’s decision to launch airstrikes against Syria without Congress’s approval is illegal. We need to stop giving… https://t.co/xl6PWKCpLs +04/13/2018,Politicians,@timkaine,He helped found our nation and a small school in Charlottesville. Happy 275th birthday to Thomas Jefferson - Virgin… https://t.co/AJ20FnFNAK +04/13/2018,Politicians,@timkaine,RT @BuzzFeedNews: On today's @AM2DM: We're talking to Senator Tim Kaine and Sally Kohn ⬇️ https://t.co/0lwyfhrIvn +04/13/2018,Politicians,@timkaine,President Trump resurrects long forgotten case—set to pardon former WH aide convicted of obstructing justice. Seems… https://t.co/TdIsESzAJE +04/13/2018,Politicians,@timkaine,I wouldn’t challenge him to a snowball fight but I’m glad to welcome him to Virginia! Thanks for coming out to Alex… https://t.co/H8kBXKauso +04/12/2018,Politicians,@timkaine,The message is clear: there’s growing consensus that we need to act to #ProtectMueller — and we need to do it now.… https://t.co/QZyT0bq4I5 +04/12/2018,Politicians,@timkaine,"Instead of sabotaging our health care system because you couldn’t pass repeal, if you want to help Americans get mo… https://t.co/5STdDaHv69" +04/11/2018,Politicians,@timkaine,"Happy 50th birthday to the #FairHousingAct. As a civil rights attorney, I know the FHA is every bit as important no… https://t.co/QU5PLjqgmd" +04/11/2018,Politicians,@timkaine,"15 months in, and the Trump administration has no Syria strategy. Threats, tweets, one off strikes are not a strate… https://t.co/4784T2QE0O" +04/10/2018,Politicians,@timkaine,We need to pass legislation to #ProtectMueller right away. https://t.co/to0KBaeEcJ +04/10/2018,Politicians,@timkaine,"Assad should face consequences for his atrocities, but Trump is a president, not a king - he needs to come to Congr… https://t.co/nzVj0sULWg" +04/10/2018,Politicians,@timkaine,"RT @USOWomen: On #EqualPayDay today, remember these dates. The pay gap is far wider for women of color as compared to White, non-Hispanic m…" +04/10/2018,Politicians,@timkaine,So we’re asking thousands of troops to leave home and deploy to the border so they can ... clear brush? https://t.co/NLz25VOviv +04/10/2018,Politicians,@timkaine,President Trump won’t call out Russia for attacking the U.S. election but calls a warranted search of his lawyer’s… https://t.co/r2GIx79O6b +04/09/2018,Politicians,@timkaine,It's long past time for Scott Pruitt to go. I opposed his nomination because I knew he'd gut environmental protecti… https://t.co/cHlScX9pHo +04/08/2018,Politicians,@timkaine,"How do you close out a 23-city, 6-day, nonstop campaign launch? By calling in an order to Fat Dragon, my favorite C… https://t.co/B16eanK5FW" +04/07/2018,Politicians,@timkaine,"RT @ianmcnally: When you get a crowd of this size in Harrisonburg on a rainy Saturday, it tells you two things. + +1) Virginians are unified…" +04/07/2018,Politicians,@timkaine,"Pour me one! See you soon, Harrisonburg. 🍻 + +#NationalBeerDay https://t.co/ZqY5sAD5Wz" +04/07/2018,Politicians,@timkaine,RT @snyderceramics: I continue to grow more and more impressed by @timkaine. I was one of those 425+ people there at this campaign kickoff… +04/07/2018,Politicians,@timkaine,Wow what a way to start Day 6 of our campaign kickoff tour across Virginia - 425+ Northern Virginians at a rally in… https://t.co/aQp1MmoUVy +04/07/2018,Politicians,@timkaine,"Need a hip or knee replacement? What about birth control or a vaccine? How about a filling for a cavity? If so, Tru… https://t.co/zxH9wyAnJe" +04/07/2018,Politicians,@timkaine,"Day 5 of my campaign kickoff in the books - from Loudoun to Fairfax, Prince William, and the Northern Neck. Virgini… https://t.co/RZkGhFcUH8" +04/07/2018,Politicians,@timkaine,"RT @MarkHerringVA: It was a pleasure to join our incredible Senator @timkaine for important discussions on good jobs, healthcare, education…" +04/05/2018,Politicians,@timkaine,"RT @jessalynsays: if you’re not following @timkaine on instagram, you’re truly missing out - bitmojis, harmonica, polls, selfies, boomerang…" +04/05/2018,Politicians,@timkaine,"Just toured IKEA’s Danville manufacturing plant. Asked if the tariffs worry them. They’re ok for now, but because t… https://t.co/gpj43185zb" +04/05/2018,Politicians,@timkaine,Who’s gonna get slammed by the Trump tariffs? Virginia farmers! Agriculture is our largest private industry: we pro… https://t.co/yzbhYnh564 +04/05/2018,Politicians,@timkaine,"“People living with disabilities, serious illness, and the frailty of old age are bracing to lose caregivers” due t… https://t.co/wKzZbBi7zo" +04/05/2018,Politicians,@timkaine,Back home in Richmond to hit the hay but we closed out our 16-hour day really strong: with a rally in my wife Anne’… https://t.co/7kQHxtqLzA +04/04/2018,Politicians,@timkaine,RT @ChrisHurstVA: A huge thank you to everyone who came out to today’s gun violence policy discussion with @timkaine and a fantastic panel.… +04/04/2018,Politicians,@timkaine,"RT @IanSams: Packed house of 400 in Blacksburg for @timkaine event on gun violence, just steps away from Virginia Tech’s campus, where 11 y…" +04/04/2018,Politicians,@timkaine,"We can improve health care in Southwest Virginia by: + +1️⃣ Expanding Medicaid +2️⃣ Passing my public option plan “Med… https://t.co/zuUrvDbSeu" +04/04/2018,Politicians,@timkaine,"I was only 10, but I vividly remember the day we lost Martin Luther King Jr and the heartbreak we felt as a nation.… https://t.co/Fi5v33G83Q" +04/04/2018,Politicians,@timkaine,RT @FairfaxJustin: Had a blast introducing dear friend Senator @timkaine at a high-energy Kaine 2018 rally in Newport News! Let’s re-elect… +04/04/2018,Politicians,@timkaine,"First it was a military parade to entertain himself, now it’s deploying troops to the border to intimidate immigran… https://t.co/JcJUlLkuNJ" +04/04/2018,Politicians,@timkaine,"I'm on the road this morning, heading southwest to start Day 3 of our tour with breakfast in Big Stone Gap - and I… https://t.co/rDzBMDYFTA" +04/04/2018,Politicians,@timkaine,Today only got better—met 100+ @_HamptonU students for a Q&A and closed out with a Newport News rally with… https://t.co/mZTMwem5dA +04/04/2018,Politicians,@timkaine,RT @KDongo: Day 2 of @timkaine epic re-election launch. Norfolk with @BobbyScott @RalphNortham Portsmouth with @SenLouiseLucas Hampton with… +04/04/2018,Politicians,@timkaine,"RT @LevarStoney: I support the US Senate candidate that supports: + +Jobs for ALL +Healthcare for ALL +Education for ALL +Security for ALL +Equal…" +04/04/2018,Politicians,@timkaine,RT @RalphNortham: There's no one better for Virginia than my friend @timkaine. Good to be with him in Norfolk as he kicks off his campaign!… +04/03/2018,Politicians,@timkaine,"Great day so far in Virginia Beach and Norfolk—roundtable conversation with veterans and military families, then a… https://t.co/aDiz5NjzST" +04/03/2018,Politicians,@timkaine,RT @WTKR3: Tim Kaine kicks off reelection campaign with stops in Hampton Roads https://t.co/3yTimKCnWK +07/01/2018,Politicians,@newtgingrich,"The Bay of Pigs invasion was an enormous defeat for the US, but what if it had been successful? I discuss what coul… https://t.co/v1Sk7X5Cye" +07/01/2018,Politicians,@newtgingrich,"In Paris almost 100,000 people gathered to demand the replacement of the Iranian dictatorship. The Free Iran rally… https://t.co/AYmwLtVtDb" +07/01/2018,Politicians,@newtgingrich,Wrote my latest #newsletter on one of my favorite topics: #dinosaurs. Read it here: https://t.co/usegqiSMmh https://t.co/Oa2j3Q7apR +06/30/2018,Politicians,@newtgingrich,"New episode: This week on ""What If? History that Could've Been?"" I discuss what might've happened had the Bay of Pi… https://t.co/CrGuPwLhMM" +06/29/2018,Politicians,@newtgingrich,There absolutely needs to be a public Strzok hearing. The American people deserve to know if the top levels of FBI… https://t.co/vxm8A7lJFb +06/29/2018,Politicians,@newtgingrich,.⁦⁦⁦⁦@GallupNews⁩ — Snapshot: Americans’ Views of Job Market Remain Upbeat https://t.co/m4MXSzp2FT +06/29/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I attended the Papal Mass this morning on the feast of Saints Peter and Paul. https://t.co/QG6ErNZnZx +06/28/2018,Politicians,@newtgingrich,Great piece by @jackiecushman on why Americanism is important. https://t.co/SaZmW0QOoB +06/28/2018,Politicians,@newtgingrich,.@eScarry correctly points out that the country's biggest newspapers have no space for Trump supporters. https://t.co/6gcygFeqVi +06/28/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I attended the consistory at St. Peter’s today where Pope Francis installed 14 new cardinals. https:/… +06/28/2018,Politicians,@newtgingrich,"Great bipartisan work passing H.R. 6, The SUPPORT for Patients and Communities Act, out of the House. Now it is up… https://t.co/rn3IkLG337" +06/28/2018,Politicians,@newtgingrich,Joining @foxandfriends coming up at 7:30aET. Watch on @FoxNews. https://t.co/OBrdRpOdL4 +06/27/2018,Politicians,@newtgingrich,While the Left wants the Constitution be made malleable so it can be interpreted to meet their current political go… https://t.co/QUFbNGdqdM +06/27/2018,Politicians,@newtgingrich,"On #immigration, Democrats give Trump the upper hand — again -- ⁦@marcthiessen⁩ https://t.co/ysu5LgfvwJ" +06/27/2018,Politicians,@newtgingrich,"The Radical wing of the Democratic Party is defeating the ‘progressive’ wing! Open borders, abolish border and cust… https://t.co/NZsv9cGsjn" +06/27/2018,Politicians,@newtgingrich,I’ll be speaking at the #FreeIran2018 convention in Paris on June 30 to let the ppl of Iran know that… https://t.co/sKv5TlLWf4 +06/27/2018,Politicians,@newtgingrich,"Thanks To #TaxCuts, Companies' Overseas Profits Now Flooding Back To U.S. https://t.co/jdHJSuqQOL" +06/26/2018,Politicians,@newtgingrich,"Meet Mystery FBI ""Agent 5"" Who Sent Anti-Trump Texts While On #Clinton Taint Team https://t.co/jBYq81VwNS" +06/26/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was deeply moved by the stories shared on behalf of the #Yazidi and #Rohingya people at yesterda… +06/26/2018,Politicians,@newtgingrich,"RT @USinHolySee: The US Embassy to the Holy See would like to extend its sincerest thanks to Cardinal #Parolin, the Vatican’s Secretary of…" +06/25/2018,Politicians,@newtgingrich,Great to join @CallyGingrich at @USinHolySee #ReligiousFreedom Symposium today. https://t.co/vvp8uAzwC2 +06/25/2018,Politicians,@newtgingrich,Maxine Waters and the totalitarian thugs of the left remind me of the scenes in On the Water Front where the corrup… https://t.co/GnU5QQ3VsX +06/25/2018,Politicians,@newtgingrich,Here's how the Trump boom is igniting small business. https://t.co/byn9dVdmm5 +06/24/2018,Politicians,@newtgingrich,"What if Nixon had won the TV debate in 1960? Watch the latest episode of my @facebook show, ""What If? History that… https://t.co/hbF2FPmDfd" +06/23/2018,Politicians,@newtgingrich,The increasing personal nastiness toward people who work for President Trump reflects the left’s understanding that… https://t.co/x0DmPtt3sM +06/22/2018,Politicians,@newtgingrich,.@TIME showed us once again why so many Americans no longer trust the news media. People are sick of the nonstop di… https://t.co/cAQocCcGWf +06/22/2018,Politicians,@newtgingrich,RT @Vanessa45200499: @MJRagain @realDonaldTrump I recommend Newt Gingrich’s book ‘Trump’s America’ so you can educate yourself on the incre… +06/22/2018,Politicians,@newtgingrich,"RT @ckrumpe: “Trump’s America” is a wonderful book, written by Newt Gingrich. So well written with answers as to why things are/were done t…" +06/22/2018,Politicians,@newtgingrich,RT @AviationWeek: Newt Gingrich writes in Aviation Week about a blend of reusable rockets and hypersonic-vehicle technologies bringing the… +06/22/2018,Politicians,@newtgingrich,"RT @jackiecushman: RIP Charles Krauthammer. A great thinker, a beacon of light , who led an amazing life overcoming obstacles, and provid…" +06/22/2018,Politicians,@newtgingrich,Does the Time cover falsely depicting the young girl as victim count as FAKE NEWS? When everyone agrees the cover i… https://t.co/JcwangRL4E +06/21/2018,Politicians,@newtgingrich,Charles Krauthammer led a remarkable life. His intellect and extraordinary analysis will be remembered for generati… https://t.co/rnM7PHP6Kx +06/21/2018,Politicians,@newtgingrich,"My @facebook show, ""What If? History that Could've Been"" is back for Season 3! Watch the season premiere: What if N… https://t.co/wgBYMCs0dF" +06/21/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity Tensions on the House floor explode over immigration … .@NewtGingrich joins Sean NEXT https://t.co/nWbrncNgfh +06/21/2018,Politicians,@newtgingrich,Joining @HARRISFAULKNER on @OutnumberedOT next. Watch on @foxnews. +06/21/2018,Politicians,@newtgingrich,Answering your questions live on @facebook now. Ask here: https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,Alzheimer's will be single largest cost center in both government and private sector unless we find a cure. We shou… https://t.co/CavsCC0v4R +06/21/2018,Politicians,@newtgingrich,The key to rethinking the health system is focusing on innovation. Focus on breakthroughs. Cures and preventative t… https://t.co/wtO0XjksmO +06/21/2018,Politicians,@newtgingrich,We need invention not regulation. https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"We need lean, innovative, and effective government. Big bureaucracies don't work. Discussing now live on @facebook: https://t.co/Hgg5IyjggD" +06/21/2018,Politicians,@newtgingrich,"As a matter of public policy we should be using technological innovation to develop new ideas, new solutions, new s… https://t.co/Su4l5hAhIH" +06/21/2018,Politicians,@newtgingrich,Have a question for me on innovation? Ask now live on @facebook ➡️https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"Bureaucracies are not good at solving problems, and they're definitely not better at inventing a better future. Liv… https://t.co/RLCMTHLj00" +06/21/2018,Politicians,@newtgingrich,Live now on @facebook discussing innovation and our future. Watch here: https://t.co/Hgg5IyjggD +06/21/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich: ""The president's tried to follow a path that says we're going to be humane about the children, but we're n…" +06/21/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to present a copy of the newly released International #ReligiousFreedom Report to #C… +06/20/2018,Politicians,@newtgingrich,"This week, @potus and @VP showed us how serious and determined this administration is about launching America into… https://t.co/EOJPK73bjh" +06/20/2018,Politicians,@newtgingrich,"RT @SteveForbesCEO: .@newtgingrich ’s new series: Using Innovation, Not Big Government, To Solve Our Biggest Challenges is tomorrow @10:30…" +06/20/2018,Politicians,@newtgingrich,Writing today's newsletter on the new U.S. Space Force and what it means for our future. Sign up to receive it here… https://t.co/A0pK4lcO7Q +06/20/2018,Politicians,@newtgingrich,RT @CliffordDMay: My @WashTimes column on the bunker buster video blockbuster that Trump screened for Kim: https://t.co/GVuEALxvmr +06/20/2018,Politicians,@newtgingrich,RT @nixonfoundation: Photos from inside Dr. Henry Kissinger's birthday party we hosted tonight in New York City. Happy 95th! https://t.co/Y… +06/20/2018,Politicians,@newtgingrich,Great to have you all there! https://t.co/RtudmQOU9B +06/20/2018,Politicians,@newtgingrich,Joining @IngrahamAngle coming up at 10:15pET to talk immigration and more. Watch on @FoxNews. +06/19/2018,Politicians,@newtgingrich,The IG report makes one thing clear: The American Left is completely comfortable with corruption -- as long as it's… https://t.co/iT55kLdL9p +06/19/2018,Politicians,@newtgingrich,A Health Fix For Mom and Pop Shops https://t.co/ZZOtqaWUyw @WSJ +06/19/2018,Politicians,@newtgingrich,Joining @seanhannity coming up next at 9:30pET. Watch on @FoxNews. +06/18/2018,Politicians,@newtgingrich,".@potus is systematically & methodically demolishing Obama’s entire legacy. For 8 yrs, we heard excuses as to why G… https://t.co/KwzgsCLs7R" +06/18/2018,Politicians,@newtgingrich,"Join me tonight at 7pET at Barnes & Noble in Ashburn, VA. Will be signing copies of my new #1 bestseller, Trump's A… https://t.co/xmpz26GhGU" +06/18/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity In-depth reaction to Thursday’s IG report with .@NewtGingrich as he joins Sean NEXT +06/18/2018,Politicians,@newtgingrich,"Great weekend! Found out my new book, Trump's America is a #1 best seller in @PublishersWkly, @WSJ, and… https://t.co/ZfBpdU12pK" +06/18/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to meet with Polish Secretary of State Plenipotentiary for International Dialogue An… +06/18/2018,Politicians,@newtgingrich,"Join me tonight at Barnes & Noble in Ashburn, VA for a Trump's America book signing. Hope to see you there!… https://t.co/ex0J7WfzSX" +06/17/2018,Politicians,@newtgingrich,"@CallyGingrich Thank you, @CallyGingrich!" +06/17/2018,Politicians,@newtgingrich,Thanks for all the birthday wishes! Great day celebrating in Roma with @callygingrich! https://t.co/OCnPYg0D2m +06/17/2018,Politicians,@newtgingrich,"Happy Father's Day! One of my favorite photos with my dad, taken in Verdun. https://t.co/XAvnlosGXH" +06/16/2018,Politicians,@newtgingrich,"Thank you to my friend Barry Casselman for this very thoughtful review of my new book, Trump's America. https://t.co/9wx2FKJhvQ" +06/15/2018,Politicians,@newtgingrich,Why the Trump-Kim Summit was nothing short of amazing. ⁦@DailyCaller⁩ https://t.co/Rn7WUVSYdW +06/14/2018,Politicians,@newtgingrich,.⁦@CallyGingrich⁩ and I wish President ⁦@realDonaldTrump⁩ a very happy birthday! https://t.co/iMXTWCvzl5 +06/14/2018,Politicians,@newtgingrich,"RT @bibliovaticana: L'Ambasciatore USA presso la Santa Sede, @CallyGingrich, ha restituito stamattina alla Biblioteca Vaticana l'esemplare…" +06/14/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich: America's support for #Ukraine remains absolute. The United States will utilize diplomacy, sanc…" +06/14/2018,Politicians,@newtgingrich,"RT @ABC: U.S. ambassador to the Vatican will return letter by Christopher Columbus, replacing Vatican copy found to be a forgery. https://t…" +06/14/2018,Politicians,@newtgingrich,"RT @cnni: The United States is returning a copy of a letter by Christopher Columbus back to Vatican officials, after it had been replaced w…" +06/13/2018,Politicians,@newtgingrich,".@POTUS once again proved his strength as a leader on the world stage. He's been president for 18 months, and he's… https://t.co/NEmlWELtIf" +06/13/2018,Politicians,@newtgingrich,"Just found out that my new book, Trump's America, is a @nytimes best seller in its first week! Thank you to everyon… https://t.co/zMSR95fYVU" +06/13/2018,Politicians,@newtgingrich,"RT @marc_lotter: GOOD READ - @newtgingrich: @RealDonaldTrump has accomplished more than Clinton, Bush, and Obama combined - this is just th…" +06/13/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity The left and media refuse to acknowledge .@POTUS ‘ accomplishments this week in Singapore. .@NewtGingrich joins… +06/13/2018,Politicians,@newtgingrich,"Just added: Will be hosting a #TrumpsAmerica book signing on Monday, June 18th in Ashburn, VA. Hope to see you ther… https://t.co/5ZgEXShUY7" +06/13/2018,Politicians,@newtgingrich,"RT @GOPChairwoman: Totally agree, @newtgingrich! +https://t.co/3FoMvCSpOC" +06/13/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich and Speaker @newtgingrich enjoyed attending the Rome Seminar led by the ACCU. + +Pictured: Co-foun…" +06/12/2018,Politicians,@newtgingrich,"Once again, President @realDonaldTrump has done something astounding, unpredictable, and historic. He has already a… https://t.co/UVTMCZ2iF0" +06/12/2018,Politicians,@newtgingrich,RT @970wfla: .@SeanHannity .@POTUS and Kim Jong Un sign the deal for a fully denuclearized NKorea… .@NewtGingrich joins Sean NEXT https://t… +06/12/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity .@POTUS and Kim Jong Un sign the deal for a fully denuclearized NKorea… .@NewtGingrich joins Sean NEXT +06/12/2018,Politicians,@newtgingrich,Wishing President @GeorgeHWBush a very happy 94th birthday! https://t.co/74x41GdrpC https://t.co/bY4Hy2R2uA +06/12/2018,Politicians,@newtgingrich,"Small business optimism soars, resulting in increased hiring and wages https://t.co/EEaJA5pODa -- another sign of o… https://t.co/SDAIb3DK8f" +06/12/2018,Politicians,@newtgingrich,RT @RHallow_Times: Newt Gingrich has new book out on DJT. Should make for one of the best reads on the man we once affectionately called Th… +06/12/2018,Politicians,@newtgingrich,"RT @Raiklin: @newtgingrich Congrats on the book, Newt! Will take a listen..." +06/12/2018,Politicians,@newtgingrich,Joining @MorningsMaria coming up at 7:30aET to discuss #SingaporeSummit. Watch on @FoxBusiness. +06/12/2018,Politicians,@newtgingrich,"RT @SecPompeo: Among the issues @potus and our team discussed with #NorthKorea human rights, religious freedom and Japanese abductees. @Sta…" +06/12/2018,Politicians,@newtgingrich,"RT @StateDept: .@POTUS: “Anyone can make war, but only the most courageous can make peace.” #SingaporeSummit https://t.co/a7FqzhMiIi" +06/12/2018,Politicians,@newtgingrich,".@CallyGingrich and I are keeping @larry_kudlow, his family, and the medical team treating him at Walter Reed in ou… https://t.co/jJJth7LBWe" +06/11/2018,Politicians,@newtgingrich,Hope you enjoy #TrumpsAmerica! https://t.co/hmMmlEidA3 +06/11/2018,Politicians,@newtgingrich,RT @theskimm: @POTUS and Kim Jong Un have a big mtg this week. The agenda: Nukes. Here’s what former Speaker of the House @newtgingrich had… +06/11/2018,Politicians,@newtgingrich,RT @BookTV: This Saturday at 9pm ET former House Speaker @newtgingrich offers his thoughts on the impact that the Trump administration poli… +06/11/2018,Politicians,@newtgingrich,RT @CallyGingrich: Beautiful day in Tivoli with @newtgingrich. https://t.co/W8k8sg5NkW +06/11/2018,Politicians,@newtgingrich,ICYMI: My @facebook live interview at @nasdaq this week on the economy under @realDonaldTrump and #TrumpsAmerica.… https://t.co/sTf7RP8m0P +06/09/2018,Politicians,@newtgingrich,Great book launch week! Thanks to everyone who helped Trump's America become an @amazon best seller! Order your cop… https://t.co/mFyn7nG8By +06/08/2018,Politicians,@newtgingrich,"How Obama Secretly Gave Iran Access To Billions Of Dollars — And Enabled Terrorism +https://t.co/Q7yuzybDRZ" +06/08/2018,Politicians,@newtgingrich,"RT @AM560TheAnswer: ICYMI from Mike Gallagher: Newt Gingrich .NewtGingrich and Mike dive into the Speaker’s new book, “Trump’s America” htt…" +06/08/2018,Politicians,@newtgingrich,RT @RFIDer: Nearly a year after the NYTs/Amazon best-selling Understanding Trump's release comes Newt Gingrich's hotly awaited follow-up: T… +06/08/2018,Politicians,@newtgingrich,"The Left doesn't care that more Americans have jobs, unemployment is down, and the tax cuts are working -- that wou… https://t.co/BUuTet8N8A" +06/08/2018,Politicians,@newtgingrich,RT @TomShillueShow: Coming up! @newtgingrich talks #TrumpsAmerica @BillClinton #metoo and more! https://t.co/csXCO0puYF https://t.co/LfU8hz… +06/08/2018,Politicians,@newtgingrich,"RT @GOPLeader: ""Americans are beginning to conclude that their lives are getting better, and that President Trump and Republican leadership…" +06/08/2018,Politicians,@newtgingrich,The tragic news that Charles Krauthammer’s cancer has returned saddens everyone who knew him or watched him. He is… https://t.co/rAjnKTGnBW +06/08/2018,Politicians,@newtgingrich,Speaking live at @yaf now. Watch here: https://t.co/QwVEcGyzPK #TrumpsAmerica +06/08/2018,Politicians,@newtgingrich,It has been a pleasure getting to know and work with @EricTrump over the last few years. I appreciate his taking th… https://t.co/TCpQLa0gkD +06/08/2018,Politicians,@newtgingrich,"Looking forward to joining @yaf this afternoon to talk about my new book, Trump's America. Watch live at 12:30pET.… https://t.co/oq5RtMGQiX" +06/08/2018,Politicians,@newtgingrich,RT @bhweingarten: Have always found @newtgingrich’s keen insights into POTUS (among many other things) both thought-provoking and prescient… +06/08/2018,Politicians,@newtgingrich,RT @LisaDeP: My latest Dozen interview is with @newtgingrich! https://t.co/rUzTZj3jeA +06/08/2018,Politicians,@newtgingrich,Congrats @Capitals! Great game! #ALLCAPS #STANLEYCUP https://t.co/xJ5WUT44f8 +06/07/2018,Politicians,@newtgingrich,"There's no question that President @realDonaldTrump's policies are working. More jobs, a stronger economy, and as I… https://t.co/juBO6dQzQi" +06/07/2018,Politicians,@newtgingrich,RT @CallyGingrich: .@newtgingrich and I wish @VP Pence a very happy birthday! https://t.co/xECHBY2XvZ +06/07/2018,Politicians,@newtgingrich,Have a question for me about President Trump and America's great comeback? Ask me now on @facebook ➡️ https://t.co/NFn6YdvDxX +06/07/2018,Politicians,@newtgingrich,I'm answering your questions about Trump's America live on @Facebook now. Ask questions: https://t.co/NFn6YdvDxX https://t.co/Tm7ynQ493p +06/07/2018,Politicians,@newtgingrich,Answering your questions LIVE on @facebook now. Submit questions and watch here: https://t.co/NFn6YdvDxX #TrumpsAmerica +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich affirmed U.S. support for #Georgia at a photo exhibit marking the 10th anniversary of #Russia’s… +06/07/2018,Politicians,@newtgingrich,My friend @JerryFalwellJr is writing his debut book on the power of freedom to create prosperity. And how… https://t.co/cOBEbMOM1w +06/07/2018,Politicians,@newtgingrich,Wishing @VP a very happy birthday! Hope it's great! 🇺🇸 https://t.co/UCB5eGb36D +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was pleased to stand with #Georgia alongside @GeoVatican @UKRinVAT @UN and Archmandrite @cyril_h… +06/07/2018,Politicians,@newtgingrich,"RT @USinHolySee: Ambassador @CallyGingrich visited the Centro Astalli refugee center, managed by @JesuitRefugee. The Ambassador visited wit…" +06/07/2018,Politicians,@newtgingrich,RT @USinHolySee: Read about President Reagan and Pope John Paul II's important relationship and collaboration in @CallyGingrich's oped: htt… +06/07/2018,Politicians,@newtgingrich,"RT @GOPLeader: 👍 Lower taxes, more jobs, and a booming economy–this is America’s comeback. +✅ Unemployment ↓ +✅ Wages ↑ +✅ Consumer confidence…" +06/07/2018,Politicians,@newtgingrich,"Childhood cancer survivors are heroes to all of us. Congrats to @realDonaldTrump & Congress, and countless advocate… https://t.co/tUSwLHHsR3" +06/07/2018,Politicians,@newtgingrich,.@bhweingarten is a smart writer and researcher who helped us create Defending America. I look forward to his new p… https://t.co/4DqV66UWwi +06/07/2018,Politicians,@newtgingrich,Democrats' IT scandal set to explode with possible plea deal https://t.co/4B6EUXWRO4 +06/07/2018,Politicians,@newtgingrich,Just added: I explain how @realDonaldTrump is leading America's comeback on #FOXNewsRundown. Listen on… https://t.co/RuI40LVkkI +06/07/2018,Politicians,@newtgingrich,President ⁦@realDonaldTrump⁩ has paved the way for a free speech comeback. #trumpsamerica https://t.co/OVJqTpdpNO +06/06/2018,Politicians,@newtgingrich,"RT @FoxNews: .@newtgingrich: ""It's a traffic jam [@TheDemocrats] created."" #OutnumberedOT https://t.co/h1UrQ0vBaG" +06/06/2018,Politicians,@newtgingrich,Will be on @TheStoryFNC with @marthamaccallum coming up at 7pET to discuss Trump's America and the growing red wave. https://t.co/wVsqPqvcZu +06/06/2018,Politicians,@newtgingrich,Catching up with @kilmeade and @BillHemmer and talking Trump's America. #newbook https://t.co/szNmypO680 https://t.co/GV9BSes3fO +06/06/2018,Politicians,@newtgingrich,FDR's prayer to the nation following the Normandy invasion is a reminder that our faith binds us together as a coun… https://t.co/Fr54k9YPAJ +06/06/2018,Politicians,@newtgingrich,Next up: @OutnumberedOT. Will be live in studio with @HARRISFAULKNER at 1:30pET. Watch on @FoxNews. https://t.co/wVsqPqvcZu +06/06/2018,Politicians,@newtgingrich,Joining the ladies of @OutnumberedFNC for the entire show starting at 12pET. Watch on @FoxNews. https://t.co/szNmypO680 +06/06/2018,Politicians,@newtgingrich,Will talk with @MariaBartiromo on @MorningsMaria at 8aET about what last night's primaries mean for the midterms an… https://t.co/bF50PJsSws +06/06/2018,Politicians,@newtgingrich,The red wave is building in the senate.almost 40% of democrats voted against Sen Menendez in New Jersey yesterday.… https://t.co/AJalSrOijQ +06/06/2018,Politicians,@newtgingrich,Joining @foxandfriends at 7:30aET to discuss last night's primaries and my new book Trump's America. Watch on… https://t.co/Vu1gjuCGcJ +06/06/2018,Politicians,@newtgingrich,RT @FoxNews: .@newtgingrich: The Republican comeback is a real threat to the elite media's 'blue wave' theory https://t.co/u8woF9qm1q +06/06/2018,Politicians,@newtgingrich,"RT @FoxBusiness: .@newtgingrich on California primary: ""The anger over the gas tax increase, the anger over what's happening to the economy…" +06/06/2018,Politicians,@newtgingrich,Great talking about #TrumpsAmerica on @TheView today! Read a free excerpt and watch the full interview ➡️… https://t.co/rDYQ89rMhm +06/06/2018,Politicians,@newtgingrich,"RT @MariaBartiromo: Big show tomorrow. Join us. Start smart @MorningsMaria @FoxBusiness @dagenmcdowell +@KevinRKelly_ +@lh_carter +@robertwolf…" +06/06/2018,Politicians,@newtgingrich,Kicking off the #TrumpsAmerica book tour tonight at @BookendsNJ in Ridgewood. Order autographed copies:… https://t.co/JWNV85i2kz +06/06/2018,Politicians,@newtgingrich,RT @FoxNews: OPINION: The Republican comeback is a real threat to the elite media's 'blue wave' theory. - @newtgingrich https://t.co/aaksnV… +06/06/2018,Politicians,@newtgingrich,"Joining @seanhannity at 9pET live from @bookendsnj to discuss my new book, Trump's America. Watch on @FoxNews.… https://t.co/dDECb1LVTm" +06/05/2018,Politicians,@newtgingrich,Congrats to @Nasdaq's @Machiz on being named one of Marketing Edge's 2018 Rising Stars. Have enjoyed working with h… https://t.co/K0vmWxOUS7 +06/05/2018,Politicians,@newtgingrich,Hope to see you at @BookendsNJ in Ridgewood tonight for the kick-off of my #TrumpsAmerica book tour. Details:… https://t.co/cS4Px8G8dX +06/05/2018,Politicians,@newtgingrich,Submit questions now! Talking about Trump's America live on @facebook from @Nasdaq. https://t.co/SSl2YZKGc2 https://t.co/2LPAW4ahk3 +06/05/2018,Politicians,@newtgingrich,Watch now: discussing Trump's America live on @facebook from @Nasdaq https://t.co/H0DrbdonSY +06/05/2018,Politicians,@newtgingrich,"Joining @TeamCavuto to talk about my new book, Trump's America live from @Nasdaq coming up at 12:40pET. Watch on… https://t.co/aooIk80Hzr" +06/05/2018,Politicians,@newtgingrich,"Looking forward to joining the ladies of @TheView to discuss my new book, Trump's America. Watch on @abc at 11aET.… https://t.co/oK8PnW3Cjv" +06/05/2018,Politicians,@newtgingrich,Join me tonight at @BookendsNJ in Ridgewood for a #TrumpsAmerica book tour at 7pET. Details: https://t.co/1FVLoKJVpU https://t.co/zSHYCJwTBM +06/05/2018,Politicians,@newtgingrich,"Thanks for the shoutout, @jackiecushman! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/iRE5cB1J6J" +06/05/2018,Politicians,@newtgingrich,"RT @AM560TheAnswer: ICYMI from Mike Gallagher: President Donald Trump is leading our nation’s great comeback, and no one understands this b…" +06/05/2018,Politicians,@newtgingrich,"Thanks, @radiotalkermike! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/PBmFdU5n2B" +06/05/2018,Politicians,@newtgingrich,RT @greta: .@newtgingrich has a new book out today! Click to see (and buy) : https://t.co/i5CEY2m6cv +06/05/2018,Politicians,@newtgingrich,"RT @CBSThisMorning: ""We have zero evidence that Donald J. Trump, in any way, colluded with Russia... everything he's doing [Mueller] is abo…" +06/05/2018,Politicians,@newtgingrich,"Thank you, @kilmeade! #trumpsamerica https://t.co/wVsqPqvcZu https://t.co/Uj9fHksAKI" +06/05/2018,Politicians,@newtgingrich,"RT @93wibc: Today, @tonykatz speaks with former Speaker @newtgingrich about his new book, Trump's America, the #SCOTUS decision on #Masterp…" +06/05/2018,Politicians,@newtgingrich,Next stop on the #TrumpsAmerica Book Tour: Good Day New York! Watch on @fox5ny at 8:45aET. https://t.co/wVsqPqvcZu +06/05/2018,Politicians,@newtgingrich,"Joining @CBSThisMorning coming up at 8aET to discuss my new book, Trump's America -- out today! https://t.co/szNmypO680" +06/05/2018,Politicians,@newtgingrich,"Launch day! My new book, ""Trump's America: The Truth About Our Nation's Great Comeback"" is out today! Order here:… https://t.co/1WTJLDbkKi" +06/04/2018,Politicians,@newtgingrich,Join me tomorrow night at @BookendsNJ in Ridgewood as I kick-off my Trump's America book tour.… https://t.co/osgjjdVljV +06/04/2018,Politicians,@newtgingrich,RT @realDailyWire: GINGRICH: The Reality of the American Dream for the Class of 2018 https://t.co/kdLnZlgd89 +06/04/2018,Politicians,@newtgingrich,RT @TheView: TOMORROW: @newtgingrich joins the #HotTopics table LIVE! https://t.co/TwMMsP7z2E +06/04/2018,Politicians,@newtgingrich,"Great to join my friend @seanhannity in studio today to discuss my new book, Trump's America. Listen live now.… https://t.co/j8rRL4neWV" +06/04/2018,Politicians,@newtgingrich,"Despite what the Left might claim, President @realDonaldTrump's policies are working -- just look at the GDP growth… https://t.co/ecRi11ZWk2" +06/04/2018,Politicians,@newtgingrich,"Another great piece from Barry Casselman -- ""Shocker In Minnesota?"" https://t.co/a5WSkum4X0" +06/04/2018,Politicians,@newtgingrich,RT @Manhattan_GOP: Our amazing candidates Dr. Jeff Ascherman and @PeteHolmbergNYC with @newtgingrich and Chair @AJ_Cats_ at yesterday's boo… +06/04/2018,Politicians,@newtgingrich,RT @LisaDeP: Don’t miss my interview with @newtgingrich in today’s edition of Bright! https://t.co/2vIrZGr606 Subscribe at https://t.co/3yf… +06/04/2018,Politicians,@newtgingrich,RT @FoxNews: .@newtgingrich: We're Closer to a 'Red Wave' Than a 'Blue Wave' in November https://t.co/LrJ2rP94jo +06/03/2018,Politicians,@newtgingrich,"RT @ThisWeekABC: .@jonkarl, @sarafagen2, @newtgingrich, @finneyk and @patrickgaspard join @GStephanopoulos on the ""This Week"" roundtable th…" +06/03/2018,Politicians,@newtgingrich,"RT @JCats2013: @CatsRoundtable this morning in NY Local 8:30 National Show 9 to10 +in NY 970 AM Radio on Internet @am970TheAnswer or https:…" +06/03/2018,Politicians,@newtgingrich,Will be on @ThisWeekABC panel coming up at 9aET. +06/03/2018,Politicians,@newtgingrich,".@POTUS is leading our nation's great comeback. We have a stronger economy, the lowest unemployment rate in decades… https://t.co/hPP92VG9Rj" +06/02/2018,Politicians,@newtgingrich,A Right To Try Arrives - @WSJ https://t.co/NxHArMBt1n +06/01/2018,Politicians,@newtgingrich,Democrats' dishonesty about MS-13 hands Trump a winning issue - @marcthiessen https://t.co/deMtpF4Tab +05/31/2018,Politicians,@newtgingrich,RT @centerstreet: Look what came into @newtgingrich office today.. https://t.co/zJ5ZUG0fQc +05/31/2018,Politicians,@newtgingrich,Just delivered at the office! 📦 Trump's America coming out June 5th! Order at https://t.co/AZHjvJEPD7 https://t.co/rBYRi0ulfp +05/31/2018,Politicians,@newtgingrich,RT @knssradio: .@SeanHannity Unpacking the 5 scandals involving Robert Mueller and his “investigation”.. .@NewtGingrich joins Sean NEXT +05/31/2018,Politicians,@newtgingrich,Why Trump Should Support Sen. Cruz on Space-Based Missile Defense https://t.co/EGqga8FiO3 +05/31/2018,Politicians,@newtgingrich,Nikki Haley: South Sudan has failed its children. We must not. https://t.co/4oe0beY5h7 +05/30/2018,Politicians,@newtgingrich,The current Mueller-DOJ-Russia mess is almost impossible to understand because it is made up of these five parallel… https://t.co/HgZ5ZcgtvJ +05/30/2018,Politicians,@newtgingrich,President @realDonaldTrump is reforming the civil service to work for the American people https://t.co/N4Awgvg5iS +05/30/2018,Politicians,@newtgingrich,RT @AORecovery: Congress must take action to give America’s seniors access to opioid treatment programs. Tell your legislators to vote for… +05/30/2018,Politicians,@newtgingrich,"On Tuesday, June 5th, I will kick-off my Trump's America book tour at @BookendsNJ in Ridgewood at 7pET. Hope to see… https://t.co/vWF00yM1mV" +05/30/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich calls #ReligiousFreedom a matter of national security and discusses the upcoming Ministerial hos… +05/30/2018,Politicians,@newtgingrich,Sec. Wilbur Ross on why Moon Colony will be a reality sooner than you think https://t.co/1Drum5iDHw +05/30/2018,Politicians,@newtgingrich,Dodd-Frank rollback will reinvigorate Main Street | @thehill https://t.co/OSESbcPYa2 +05/30/2018,Politicians,@newtgingrich,"Since taking office, @realDonaldTrump has been leading America's great comeback. I explain what this means for our… https://t.co/72TLMMqZHx" +05/29/2018,Politicians,@newtgingrich,RT @CallyGingrich: The 2017 International Religious Freedom Report and the Ministerial to Advance Religious Freedom underscore America's en… +05/28/2018,Politicians,@newtgingrich,We honor the brave men and women who have made the ultimate sacrifice for our freedom. #MemorialDay https://t.co/Mr7LQx8len +05/28/2018,Politicians,@newtgingrich,Fabulous cathedral. https://t.co/JAHeXZb70w +05/26/2018,Politicians,@newtgingrich,"RT @CallyGingrich: Very moving to visit the Sicily-Rome American Cemetery in Nettuno, Italy today with @newtgingrich. https://t.co/pcCtTOaP…" +05/26/2018,Politicians,@newtgingrich,RT @USinHolySee: Ambassador @CallyGingrich was honored to deliver keynote remarks at a Military Naturalization Ceremony today at the U.S. E… +05/25/2018,Politicians,@newtgingrich,RT @SteveForbesCEO: I like @newtgingrich’s reading list today! Agree critical read from Prof @KennethThorpe aligned with @realDonaldTrump &… +05/24/2018,Politicians,@newtgingrich,Important oped on reforms @SecAzar should demand at WHO meetings this week. Saving lives requires working with US h… https://t.co/9DarZE9Zy5 +05/24/2018,Politicians,@newtgingrich,President Trump's letter to@Kim Jong Un is exactly right and very wise +05/23/2018,Politicians,@newtgingrich,The system of corruption that Barack Obama and Hillary Clinton were in charge of is beginning to unravel. The Inspe… https://t.co/8d9ZuUGImb +05/23/2018,Politicians,@newtgingrich,What if Seward had won the GOP nomination in 1860 instead of Lincoln? Watch the latest episode of my @facebook show… https://t.co/GadfE7fHkL +05/23/2018,Politicians,@newtgingrich,RT @GOPLeader: Beating the deadliest drug crisis in history will require nothing less than the biggest response in history. That response i… +05/23/2018,Politicians,@newtgingrich,Joining @IngrahamAngle coming up. Watch on @FoxNews. +05/22/2018,Politicians,@newtgingrich,Speaking live now at @Heritage on how @potus is leading our nation's great comeback. Watch live:… https://t.co/083rT5v1Ck +07/01/2018,Politicians,@GovRauner,"Issued Executive Order to ensure fair practices in state procurement, establishes a permanent Illinois Commission o… https://t.co/nkbJ9xgoQK" +07/01/2018,Politicians,@GovRauner,"Took steps to ease the teacher shortage. New law makes licensing easier for out-of-state teachers, substitutes, and… https://t.co/RpxfpCnZBl" +07/01/2018,Politicians,@GovRauner,US Supreme Court decides #Janus case. State workers regain their First Amendment rights and now they don’t have to… https://t.co/OibnFzgVUP +07/01/2018,Politicians,@GovRauner,Got bipartisan support for a new veterans’ home in Quincy to ensure the best care for the people whose service keep… https://t.co/v0mrqqtoNw +07/01/2018,Politicians,@GovRauner,Signed legislation to secure funding for safety net and rural hospitals. Critical bipartisan hospital assessment pr… https://t.co/4Qnk0tS56O +07/01/2018,Politicians,@GovRauner,$500M for U of I advances an economic development initiative to leapfrog Silicon Valley. Discovery Partners Institu… https://t.co/kIibrUkINR +07/01/2018,Politicians,@GovRauner,Look at what the economy is doing for railroads. Now think what could happen when we unblock the congestion and cre… https://t.co/vMwllPICWi +07/01/2018,Politicians,@GovRauner,A remarkable $474M @USDOT program will fix the worst rail bottleneck in the country. The investment in Chicago’s 75… https://t.co/sn94gqtGUG +07/01/2018,Politicians,@GovRauner,"We made it easier to #adopt children in Illinois with the nation’s biggest adoption tax credit – $5,000. The credit… https://t.co/PjMOKTOXM7" +07/01/2018,Politicians,@GovRauner,$2B Medicaid waiver puts unprecedented focus on behavioral health. #BetterCareIL will pilot delivery of better serv… https://t.co/nLvlUR0PIP +07/01/2018,Politicians,@GovRauner,Historic education initiatives. K-12 funding up by $1.4B since we took office. Early childhood up $200M. Invest in… https://t.co/3XCOveyV10 +07/01/2018,Politicians,@GovRauner,It has been a great month for the people of Illinois. Passed a bipartisan FY19 budget with #NoNewTaxes! Stay tuned… https://t.co/YTnpOHF4MV +07/01/2018,Politicians,@GovRauner,Sign up for our newsletter and keep up with what we are doing to make Illinois a better place to live and work. Joi… https://t.co/qG23IjXczQ +07/01/2018,Politicians,@GovRauner,Kudos to all the parents out there that help their kids earn straight A’s in life. https://t.co/6qaRiIEu03 +07/01/2018,Politicians,@GovRauner,Catch Sneed to see if there was once a pony on the grounds trained to walk up the steps of the Illinois Governor’s… https://t.co/SGCFZERrYc +06/30/2018,Politicians,@GovRauner,"Melting temperatures out there. Tollway Oasis centers are open 24/7 for Illinoisans to stay safe, cool and comforta… https://t.co/g7t7HjoyjH" +06/30/2018,Politicians,@GovRauner,Congratulations to the Jain Society of Metropolitan Chicago on the 25th Anniversary of your temple. Wonderful eveni… https://t.co/v2EcLqlDaZ +06/29/2018,Politicians,@GovRauner,There is a no more deserving lawyer than @LtSanguinetti for the Women’s Bar Foundation Award. My friend & colleague… https://t.co/10kBTu3koA +06/29/2018,Politicians,@GovRauner,#ICYMI Earlier today I took important steps to ease teacher shortage in Illinois and extend workforce readiness ini… https://t.co/Jcsts9VXvm +06/29/2018,Politicians,@GovRauner,Took important steps today to ease teacher shortage in Illinois and extend workforce readiness initiatives. https://t.co/0Rx38KUexB +06/29/2018,Politicians,@GovRauner,"With scorching hot weather in the forecast, please be cautious. Remain indoors when possible. Stay hydrated. And pl… https://t.co/MlTTO2VmvU" +06/28/2018,Politicians,@GovRauner,In Waukegan at @CristoReySM School to talk economic opportunity and shine a light on parts of Illinois designated a… https://t.co/j0yKrgEpEF +06/28/2018,Politicians,@GovRauner,"RT @SBACIL: It's been 6 months since @GovRauner signed SB 867, a bill to lower LLC fees, into law. In Q1 of 2018, new LLC filings are up 40…" +06/27/2018,Politicians,@GovRauner,Talking with @GeorgeWill about #Janus and other recent developments. #twill https://t.co/WIBdYm0Ql0 +06/27/2018,Politicians,@GovRauner,"Telling FOX's @ShannonBream Janus ruling is pro-worker, pro-taxpayer. A great victory for our democracy, public emp… https://t.co/KuIb0zO10L" +06/27/2018,Politicians,@GovRauner,RT @ShannonBream: The winners in the unions fees case at #SCOTUS https://t.co/QgRBwssdkw +06/27/2018,Politicians,@GovRauner,"The significance of the #Janus decision will be felt not just in Illinois, but across America. There are 5 million… https://t.co/Psr2zUohln" +06/27/2018,Politicians,@GovRauner,The high court’s decision means state workers can no longer be forced to pay “fair share” fees if they choose not t… https://t.co/BRehuvvo6P +06/27/2018,Politicians,@GovRauner,"For decades, IL workers have been forced to pay union fees against their will. The practice infringed on the rights… https://t.co/NWkMWAyuHK" +06/27/2018,Politicians,@GovRauner,Today’s #Janus decision is a historic victory for freedom of speech and affiliation for our public sector employees… https://t.co/5eJNYrHKud +06/27/2018,Politicians,@GovRauner,From #Janus: “:Whenever the Federal Government or a State prevents individuals from saying what they think on impor… https://t.co/boST9uNQlq +06/27/2018,Politicians,@GovRauner,"From #Janus: “Free speech serves many ends. It is essential to our democratic form of government, see, e.g., Garris… https://t.co/Krjtfc1l7S" +06/27/2018,Politicians,@GovRauner,"#SCOTUS decision is pro-worker, and pro-taxpayer who count on us to bargain in good faith. #Janus #JanusvAfscme" +06/27/2018,Politicians,@GovRauner,RT @SCOTUSblog: #SCOTUS holds requiring nonmembers of public-sector unions to pay fees to cover collective-bargaining activities violates t… +06/27/2018,Politicians,@GovRauner,#SCOTUS rules in favor of #Janus. Great victory for state employees and Illinois taxpayers. +06/27/2018,Politicians,@GovRauner,RT @NWSChicago: The Tornado Warning for Will County has been allowed to expire. We're continuing to closely monitor storms in the south/sou… +06/27/2018,Politicians,@GovRauner,"RT @GroverNorquist: Met today with Illinois governor Bruce Rauner +The “Janus” SCOTUS Case was at the start —AFSCME vs Rauner. +Rauner will s…" +06/27/2018,Politicians,@GovRauner,"RT @NWSChicago: Tornado Warning including Frankfort IL, Wilton Center IL until 7:30 PM CDT https://t.co/axAE8qK7y2" +06/27/2018,Politicians,@GovRauner,RT @NWSChicago: Multiple tornado touchdowns in central Will County with the tornado warned thunderstorm. Head indoors immediately for safe… +06/26/2018,Politicians,@GovRauner,Illinois economy and effect of tariffs were part of discussions in DC with @RepLaHood and others in the delegation. https://t.co/amsAUvl6tG +06/26/2018,Politicians,@GovRauner,With #Cavuto on Fox: No one wins a trade war! https://t.co/plOJ8wLCHh +06/26/2018,Politicians,@GovRauner,"Legendary blues guitarist and singer @TheRealBuddyGuy plus @STYXtheBand, @chicagosymphony and more will be headline… https://t.co/UBb4ICPlok" +06/26/2018,Politicians,@GovRauner,"Informative discussion today with Commerce Dep. Secretary Karen Kelley on 21st-century workforce development, more… https://t.co/oHEYbs6zbw" +06/26/2018,Politicians,@GovRauner,Met with VP Pence yesterday to discuss tariffs and express need to have policies in the best interest of Illinois job creators. +06/25/2018,Politicians,@GovRauner,.@UofILSystem’s Discovery Partners Institute brings world-class faculty to work side-by-side with students and busi… https://t.co/p0vvt2zKh6 +06/25/2018,Politicians,@GovRauner,Stopped by @FoxBusiness this morning to talk about economic development and pension reform in Illinois. https://t.co/7hlHKIDmwV +06/24/2018,Politicians,@GovRauner,A beautiful Sunday to celebrate Pride Day in Chicago! https://t.co/jzw0mM1fnA +06/24/2018,Politicians,@GovRauner,"Whether on active duty or a veteran, if you or someone you know needs help visit https://t.co/tkS8Q8k7rg or call th… https://t.co/h33QN7lxqf" +06/24/2018,Politicians,@GovRauner,"Tim and Maureen Walsh started @OperationTalk (Tell, Ask, Listen, Keep Safe) after their son James lost his battle t… https://t.co/w9hrqPBJSU" +06/23/2018,Politicians,@GovRauner,Always a great day when we get to celebrate our heroes. The Armed Services Day at the Bourbonnais Friendship Festiv… https://t.co/3cV0rVb0Cp +06/23/2018,Politicians,@GovRauner,Great times at the 18th annual Dragon Boat Race hosted by @Chinatown312. Teams out here are competing to raise fund… https://t.co/i5pvEYdH0u +06/23/2018,Politicians,@GovRauner,Safety net & rural hospitals get protection. https://t.co/FPVj0fopKT +06/22/2018,Politicians,@GovRauner,Economic opportunity. Jobs. Better education. Lower taxes. Fair markets. These are initiatives that break down barr… https://t.co/dDbFP9RfyN +06/22/2018,Politicians,@GovRauner,Fantus Paper Products is tripling its workforce in Skokie to support Made-in-the-USA Holiday Gift Boxes for Walmart… https://t.co/HmOruO52EM +06/22/2018,Politicians,@GovRauner,Always a privilege to meet with Scouts – and these three trailblazers in particular – to receive their annual Repor… https://t.co/R58UlHSgkR +06/22/2018,Politicians,@GovRauner,.@CSLBehring’s investment is stimulating Kankakee’s economic growth and paying off in new jobs for the people of Il… https://t.co/nVfEUJwz3z +06/22/2018,Politicians,@GovRauner,RT @Illinois200: What makes you #IllinoisProud? https://t.co/U1P5Wxvy6s +06/21/2018,Politicians,@GovRauner,Today I signed legislation to extend Normal’s tax increment financing designation. TIF is an important tool in urba… https://t.co/5EC9TPPxF2 +06/21/2018,Politicians,@GovRauner,"Children have a much better chance in life if they have a loving, stable home. @ChildrenHomeAid unites children wit… https://t.co/JdyT0Ju1kI" +06/21/2018,Politicians,@GovRauner,"RT @ChildrenHomeAid: This new tax credit takes away one of the barriers for families to adopt and helps fulfill our mission to create hope,…" +06/21/2018,Politicians,@GovRauner,RT @ChildrenHomeAid: Today @GovRauner announced a new tax credit to support Illinois adoptive families by making adoptions more affordable.… +06/21/2018,Politicians,@GovRauner,"DPI’s motor will run on intellectual capital, a plentiful natural resource here in Illinois. https://t.co/o8LSSn3hNb" +06/21/2018,Politicians,@GovRauner,Guess who’s at the top of https://t.co/mUpdUEEnYm annual American-Made Index! The Jeep Cherokee assembled right her… https://t.co/dj8L7e3tcj +06/21/2018,Politicians,@GovRauner,"RT @NWSChicago: Reminder: Flood Advisory is in effect for NE IL the rest of this a.m. Moderate to heavy rain will continue through noon, e…" +06/21/2018,Politicians,@GovRauner,"RT @IDOT_Illinois: Heavy rain in the Chicago area is leading to flooding on some roads, including expressways. Here, IDOT crews have blocke…" +06/21/2018,Politicians,@GovRauner,More on machine politics in Cook County. Property taxes are rising. https://t.co/qMaPi2tFtl +06/20/2018,Politicians,@GovRauner,"With state-secured $500M for Discovery Partners Institute, we’ve started an engine for extraordinary economic growt… https://t.co/mCAdrqQzxz" +06/20/2018,Politicians,@GovRauner,Reduce occupational license burdens -- cut red tape -- you grow job opportunities & income especially for minoritie… https://t.co/bqZHV8HcW0 +06/20/2018,Politicians,@GovRauner,And isn’t this interesting? Where Cook Co Machine controls government is where black families experience the highes… https://t.co/PVkVcZ7p01 +06/20/2018,Politicians,@GovRauner,"Finally, on human services: Better Care Illinois. Unprecedented $2 billion Medicaid waiver pilots health-building s… https://t.co/1QDbGrHJql" +06/20/2018,Politicians,@GovRauner,"On business building, LLCs are cheaper to start, professional licenses are easier to get for people leaving prison,… https://t.co/K9qBleTxo1" +06/20/2018,Politicians,@GovRauner,"At the Tollway, total payments to African American owned professional services firms has increased by 142% since 20… https://t.co/fMuIGgH9qS" +06/20/2018,Politicians,@GovRauner,We’re helping build African American businesses. First sheltered market increases minority participation in state c… https://t.co/bwz5MruWGI +06/20/2018,Politicians,@GovRauner,Just signed an executive order to relieve the huge backlog in human rights cases. We cleared thousands of clemency… https://t.co/lf1epb6Ue6 +06/20/2018,Politicians,@GovRauner,"Education is job prerequisite. Since I’ve been governor, K-12 spending up $1.4 billion with state money distributed… https://t.co/u1JiUMz4j4" +06/20/2018,Politicians,@GovRauner,On jobs and opportunity for African Americans. We veto business-banishing tax hikes. We propose reforms to end job-… https://t.co/XHRKkqw2ja +06/20/2018,Politicians,@GovRauner,"Est. 38K people in Illinois are living with HIV, but we don’t want anybody in Illinois to become infected with HIV/… https://t.co/TLK7En3byN" +06/20/2018,Politicians,@GovRauner,Special recognition to Uncle Remus Saucy Fried Chicken and 50 yrs of great food. Their specialty is second chances.… https://t.co/NyhMB5vGBT +06/20/2018,Politicians,@GovRauner,One of the best ways to honor #Juneteenth2018 is by recognizing the accomplishments of Illinois’ African American b… https://t.co/0uQZrqf2Ni +06/19/2018,Politicians,@GovRauner,DPI will spawn innovation hubs throughout our state university system. It will work with thousands of students ever… https://t.co/QhDAQzGcP8 +06/19/2018,Politicians,@GovRauner,First corporate partner for DPI is Peoria-based OSF HealthCare. They are sponsoring an interdisciplinary course tha… https://t.co/XWCdEuLEGt +06/19/2018,Politicians,@GovRauner,"Powerhouse research partners. U of I System, U of Chicago, Northwestern and, announced today, Tel Aviv U. Missions… https://t.co/TdatTNhpan" +06/19/2018,Politicians,@GovRauner,"DPI students, faculty, business partners will research world changing ideas that investors will put money behind to… https://t.co/3zMNoNn94i" +06/19/2018,Politicians,@GovRauner,"The 78 will be home to the Institute, projected eventually to cover 1 million sq. ft. on Related Midwest’s 62-acre… https://t.co/xAFY1X6FAu" +06/19/2018,Politicians,@GovRauner,All systems ‘go’ for Discovery Partners Institute. State secured funding of $500m accelerates research and economic… https://t.co/0dZEFFzBAW +06/18/2018,Politicians,@GovRauner,"RT @ILMansion: Congratulations to Justin Blandford, who begins his new role as Governor's Mansion Curator today! His unmatched expertise wi…" +06/18/2018,Politicians,@GovRauner,"Today, we recognized Savanna High valedictorian, U of I engineer, Navy aviator, and jet-packing astronaut Dale Gard… https://t.co/3sn1NonfjG" +06/17/2018,Politicians,@GovRauner,A #FathersDay wish. May we all be blessed with a dad or father figure we can believe in … and believes in us. +06/17/2018,Politicians,@GovRauner,"It’s a Father’s Day scorcher out there, Illinois. Heat advisory in effect until 7pm Monday. Be sure to drink plenty… https://t.co/iUjmQ04eQS" +06/16/2018,Politicians,@GovRauner,RT @ILFirstLady: 4 years ago Bruce & I made a promise to restore the Governor’s mansion and bring the People’s House into the 21st century… +06/15/2018,Politicians,@GovRauner,"We’re going to keep fighting to save lives. If you or someone you know needs help, call 1-833-2FINDHELP. Trained op… https://t.co/Kvb3Rrie2L" +06/15/2018,Politicians,@GovRauner,"The opioid task force, led by @LtSanguinetti, along with a boost from $2B Medicaid waiver to address substance abus… https://t.co/H7zxOMUeA4" +06/15/2018,Politicians,@GovRauner,44 opioid-related deaths in Peoria in 2017. The opioid epidemic is affecting every community and every demographic… https://t.co/VcwiDURepQ +06/15/2018,Politicians,@GovRauner,"$5 million for the University of Illinois Extension Services to help with education in food safety, workforce preparedness and more." +06/15/2018,Politicians,@GovRauner,"92 county fairs across Illinois $54,000 each to showcase Illinois’ number one industry – agriculture. https://t.co/OamXoBJJMF" +06/15/2018,Politicians,@GovRauner,"97 soil and water conservation districts will receive another $6 million from the FY18 budget. About $61,000 for each district." +06/15/2018,Politicians,@GovRauner,"We are excited to announce $16 million in new funding for our soil & water conservation districts, our county fairs… https://t.co/xW9scFtjSM" +06/14/2018,Politicians,@GovRauner,"Did you know 86% of @WIUQuadCities students are from Illinois? Great seeing so many today to talk about education,… https://t.co/OPGIkqOSdE" +06/14/2018,Politicians,@GovRauner,Can’t think of a more perfect day than #FlagDay to acknowledge 13-year-old Liam Wilcox’s incredible accomplishment!… https://t.co/iOm9uyBAqt +06/14/2018,Politicians,@GovRauner,"Every two seconds, someone in the U.S. needs blood. It’s #WorldBloodDonorDay so roll up a sleeve and donate. You ne… https://t.co/AZv32qUeii" +06/14/2018,Politicians,@GovRauner,Nearly 1M Illinoisans work in our agriculture industry and @IllinoisFFA is helping develop the most important “crop… https://t.co/jbnm46s3pV +06/13/2018,Politicians,@GovRauner,"U of I is one of Illinois’ most important assets, a global source of talent for the global economy. Today, we met t… https://t.co/2FL7kbzotK" +06/13/2018,Politicians,@GovRauner,"Born here in 1906, @MarathonPetroCo is a leader in the oil refining industry. We need more companies like Marathon… https://t.co/8lUBZJMIzf" +06/12/2018,Politicians,@GovRauner,"There is absolutely NO place for harassment, sexual or otherwise, in government or anywhere…and victims should neve… https://t.co/Gp4o2xwGtc" +06/12/2018,Politicians,@GovRauner,"RT @Suntimes: More than ever, Springfield’s corrupt old ways have to end, writes @GovRauner. https://t.co/86UeTWeNWp" +06/12/2018,Politicians,@GovRauner,"Manufacturing is a huge part of our economy, which is why it’s so important that we cut regulatory burdens on job c… https://t.co/fr9TUxb8mN" +06/12/2018,Politicians,@GovRauner,"RT @jasonbarickman: “This is a major step toward finally changing a toxic climate that has existed for far too long in Springfield... +--New…" +06/11/2018,Politicians,@GovRauner,"U.S. Air Force veteran Ivan Jackson was a man of rare quality. Husband, father, grandfather, great-grandfather, his… https://t.co/m676sfwJPS" +06/11/2018,Politicians,@GovRauner,"We’ve taken a step in the right direction. FY19 state budget provides record level of education funding, $1.5B curb… https://t.co/5Yi8EFe0cC" +06/10/2018,Politicians,@GovRauner,America was built on the hopes of immigrants who sailed to America in search of our unique brand of freedom and opp… https://t.co/s7BD9L12uz +06/10/2018,Politicians,@GovRauner,FY19 Budget: Economic growth is the path out of our fiscal mess. https://t.co/jOzS2yUTPj +06/10/2018,Politicians,@GovRauner,RT @nbcchicago: Governor Rauner signs bill expanding independence of ethics complaints https://t.co/wnDObGx8nV https://t.co/oeyospNogv +06/09/2018,Politicians,@GovRauner,While work still needs to be done I commended the members of the General Assembly who made this step forward possib… https://t.co/RwQk9gggJ1 +06/09/2018,Politicians,@GovRauner,"The Legislative Ethics Commission, which oversees investigations of claims against legislators & legislative staff,… https://t.co/XyU6lWmVtR" +06/09/2018,Politicians,@GovRauner,"The legislation is a step in the right direction, but lawmakers need to do more to help restore confidence in gover… https://t.co/wNLrID2MCI" +06/09/2018,Politicians,@GovRauner,#ICYMI Victims of #sexualharassment should not live in fear that the truth they tell will bring more pain into thei… https://t.co/OVF2VpGQLu +06/09/2018,Politicians,@GovRauner,"#IllinoisProud to join our Filipino American community at the 5th Annual @piyestapinoy, the largest outdoor Filipin… https://t.co/Urrx8YkzkQ" +06/09/2018,Politicians,@GovRauner,"2.2 million Latinos call Illinois home. Illinois’ League of United Latin American Citizens, the country’s oldest an… https://t.co/ojhoPJ1zj1" +06/08/2018,Politicians,@GovRauner,"Still work to do, 2 flaws to correct. Legislative inspector general should not need the legislature’s approval to i… https://t.co/rmAjEtrlQ4" +06/08/2018,Politicians,@GovRauner,"W/ new law, those who have been subject to sexual harassment can now have greater confidence that the investigatory… https://t.co/kBnf3WAiDF" +06/08/2018,Politicians,@GovRauner,"Signed law today to bring independence, transparency to legislative sexual harassment investigations. Victory for t… https://t.co/c8xZXLvvdi" +06/08/2018,Politicians,@GovRauner,FY19 Budget: $500 million to U of Illinois for Discovery Partners Institute. This will help Illinois become the nex… https://t.co/uCZSOZxKIj +06/08/2018,Politicians,@GovRauner,"75th St. Corridor project involves federal, state, county, city, regional transportation agencies, and America’s ra… https://t.co/RN8icXdtCW" +06/08/2018,Politicians,@GovRauner,"RT @USDOT: Illinois @GovRauner accepts #INFRA Grant of more than $130 million for the Chicago area, saying: ""Transportation Drives the Pros…" +06/08/2018,Politicians,@GovRauner,Great news for shippers and commuters. US Transportation Secretary Chao makes it official. Illinois to get $132 mil… https://t.co/4PHt9rMwkl +06/08/2018,Politicians,@GovRauner,MAJOR rail infrastructure announcement today. Watch LIVE! Visit https://t.co/WnuFw9sOC1 at 12:00pm CST.… https://t.co/NvswOONuV3 +06/07/2018,Politicians,@GovRauner,Manufacturing innovation goes live at @mHUBChicago. Great example of how STEM and CTE proficiencies are leading us… https://t.co/w6E93KNjkx +06/07/2018,Politicians,@GovRauner,FY19 Budget: Thanks to the General Assembly for living up to its promise and including $53 million for Quincy Veter… https://t.co/YPOQKVCgBR +06/07/2018,Politicians,@GovRauner,Mexico is an important Illinois business partner … $22 billion in total imports/exports 2017. Talked today with Dep… https://t.co/WX5xHIaLBp +06/07/2018,Politicians,@GovRauner,Can’t think of a better way to spend a Wednesday night than welcoming home veterans from their Honor Flight. A grea… https://t.co/Sf1xOyCgTZ +06/06/2018,Politicians,@GovRauner,On this day we pause to reflect on the greatest generation and the battle they waged to win the freedoms we enjoy.… https://t.co/4szJgJEJfZ +06/06/2018,Politicians,@GovRauner,"Israeli Ambassador to US Ron Dermer dropped by today to talk commerce, growth industries, university partners, abid… https://t.co/CS02HigCxR" +06/06/2018,Politicians,@GovRauner,Cut the ribbon on new Joliet Gateway Center Train Station. The new station increases safety and eases congestion. N… https://t.co/zEhhe9c9s8 +06/06/2018,Politicians,@GovRauner,FY19 Budget: Historic new adoption tax credit to help ease financial burden of adopting children. https://t.co/l1SBRI7rZs +06/05/2018,Politicians,@GovRauner,"Major steps taken these last few weeks. FY19 budget signed with #NoNewTaxes, $11B for roads and bridges and more. S… https://t.co/f4qpRIcncj" +06/05/2018,Politicians,@GovRauner,"New IDVA Director Brigadier General Stephen Curda will oversee the project. Veteran of Afghanistan and Iraq, he’s a… https://t.co/ar5DAxfog0" +06/05/2018,Politicians,@GovRauner,$53M from FY19 budget launches new world-class veterans facility in Quincy. Things get underway Friday with purchas… https://t.co/QHjTJFlPaZ +06/05/2018,Politicians,@GovRauner,FY19 Budget: Education is our priority; we have upped K-12 money by $1.4B since I came to office. https://t.co/EhjowfE1ia +06/05/2018,Politicians,@GovRauner,RT @SenBillBrady: I'm proud we were able to pass a workable balanced budget that does not rely on increasing the tax burden on Illinois' re… +06/05/2018,Politicians,@GovRauner,"A modern, efficient transportation system is essential to our quality of life and Illinois’ success within the glob… https://t.co/tNxW36Gx6c" +06/05/2018,Politicians,@GovRauner,Today we announce $241M investment in Illinois’ freight system. 23 projects will receive grants to improve our stat… https://t.co/FUOm6hyplz +06/04/2018,Politicians,@GovRauner,FY19 Budget: Balance in reach because we put a halt to $1.5B in spending. https://t.co/czkR5X7VdZ +06/04/2018,Politicians,@GovRauner,"Today’s bill signing demonstrates that we can put the people of Illinois ahead of all other concerns. So, on their… https://t.co/RoNT9skoHe" +06/04/2018,Politicians,@GovRauner,"Finally, the legislature agreed to fund our request to fund back pay for state employees. This is a fairness issue… https://t.co/1RCeJbhQLo" +06/04/2018,Politicians,@GovRauner,The General Assembly lived up to its promise on the Quincy Veterans Home. $53M in this budget to get us underway wi… https://t.co/hWajH9Awic +06/04/2018,Politicians,@GovRauner,"With this budget, we have begun addressing our pension costs. By making some modest reforms we will save $445M and… https://t.co/CmzllclwqY" +06/04/2018,Politicians,@GovRauner,$500M will be funded toward the Discovery Partners Institute initiative. DPI will cultivate the talent to work alon… https://t.co/nK69tEEi2v +06/04/2018,Politicians,@GovRauner,FY19 budget also includes measures that help reduce some of the financial barriers to adopting. Paving the way for… https://t.co/oHTLNxgt05 +06/04/2018,Politicians,@GovRauner,"Every child in Illinois deserves a quality education, no matter where or what school they attend. Budget fully fund… https://t.co/OdbjeujasR" +06/04/2018,Politicians,@GovRauner,"It’s not a perfect fiscal plan, but it’s a step in the right direction. My hope is that we continue the bipartisans… https://t.co/PXsiVEtFrM" +06/04/2018,Politicians,@GovRauner,"We set two fundamental goals for FY19: spend within our means and #NoNewTaxes. With this budget, we have an opportu… https://t.co/0NjhYutdn6" +06/04/2018,Politicians,@GovRauner,"Legislative leaders, sponsors, negotiators, members and staff together for FY19 budget signing. Balance in reach,… https://t.co/8PbfPhcImP" +06/04/2018,Politicians,@GovRauner,RT @craigrwall: The pen-ultimate preparation for then @GovRauner budget bill signing. @ABC7Chicago #twill https://t.co/S0dShsIBH4 +06/04/2018,Politicians,@GovRauner,"All flags have been lowered half-staff to salute Chicago Firefighter Juan Bucio, who dedicated his life to helping… https://t.co/fuXxM7HuTv" +06/03/2018,Politicians,@GovRauner,RT @SpeakerRyan: Illinois: 327 #OpportunityZones throughout 85 counties. @GovRauner→ “These zones include some of the most underserved area… +06/03/2018,Politicians,@GovRauner,Fairness is in Illinois’ DNA. Diana and I are proud to celebrate the work of @EqualityILL. Nothing is more importan… https://t.co/DQ6xNWKHeN +06/03/2018,Politicians,@GovRauner,RT @ILFirstLady: When Bruce and I started this journey we envisioned not just a home that belongs to the people but also a beacon of our hi… +06/02/2018,Politicians,@GovRauner,"Economic development and better opportunities begin with helping businesses start, stay and grow in Illinois. Check… https://t.co/JMAbvnkM4G" +06/02/2018,Politicians,@GovRauner,"On behalf of a grateful Nation, I am proud to proclaim June 2, 2018, as 126th Air Refueling Wing Day. The Wing live… https://t.co/xbZkLP85FY" +06/01/2018,Politicians,@GovRauner,"Pop the cork and cheers to 200 years with a glass of Bicentennial Rosé! 13 world-class producers from northern, sou… https://t.co/68Q4nLqCqJ" +06/01/2018,Politicians,@GovRauner,Got an update on WIU this afternoon from University President Dr. Jack Thomas. The school is doing a great job prep… https://t.co/CRXt89eEG1 +06/01/2018,Politicians,@GovRauner,"An incredible accomplishment by @IDOT_Illinois. Macomb Bypass initiative is smart, forward-thinking, and in tune wi… https://t.co/fPdsI6zUp5" +06/01/2018,Politicians,@GovRauner,IL businesses are using the web to succeed more than ever - growing jobs and boosting our economy. Google just anno… https://t.co/UgfGdTaKp4 +06/01/2018,Politicians,@GovRauner,"Waiting until our roads and bridges crumble is expensive, inefficient and unsafe. This summer we are taking action… https://t.co/X5QDZ7N5ou" +06/01/2018,Politicians,@GovRauner,"Exciting day! Just cut the ribbon on the new Northwest Macomb Bypass. It brings much needed traffic relief, connect… https://t.co/mNEuNglQSC" +05/31/2018,Politicians,@GovRauner,"(4/4) We worked together to provide a budget to the people of Illinois that can be balanced, with hard work and con… https://t.co/sxIryHWet7" +05/31/2018,Politicians,@GovRauner,"(3/4) It’s a step in the right direction, though it does not include much-needed debt paydown and reforms that woul… https://t.co/HDhO4j3yC8" +05/31/2018,Politicians,@GovRauner,(2/4) We started this year’s budget process with the common-sense goals of a full-year balanced budget and no new t… https://t.co/YLXox9RrOZ +05/31/2018,Politicians,@GovRauner,(1/4) The Fiscal Year 2019 budget is the result of bipartisan effort and compromise. I’ll be taking action quickly… https://t.co/jKJwSjSo4t +05/30/2018,Politicians,@GovRauner,"Two weeks ago, School Resource Officer Mark Dallas prevented an unspeakable tragedy at Dixon High School. Urge your… https://t.co/kwhtGBABFN" +05/30/2018,Politicians,@GovRauner,Officer Dallas’ response at Dixon High is an example of why we need resource officers in our schools. Thanks to him… https://t.co/WguTtCwf41 +05/30/2018,Politicians,@GovRauner,"Two weeks ago, School Resource Officer Mark Dallas prevented an unspeakable tragedy. When a gunman opened fire at D… https://t.co/Nw2T7o1ysw" +05/29/2018,Politicians,@GovRauner,Good meeting with Consul General Federico Palomera and Ambassador Pedro Morenes Eulate of Spain. Spain is an $800M… https://t.co/bhQOAwOvUz +05/29/2018,Politicians,@GovRauner,Sad to hear of the tragic passing of Firefighter Juan Bucio. It takes incredible courage to put one’s safety on the… https://t.co/1oAbb7FBuY +05/29/2018,Politicians,@GovRauner,"A modern, efficient transportation system is essential to Illinois’ economy. This plan improves our roads and bridg… https://t.co/hXtWdkzLnO" +05/29/2018,Politicians,@GovRauner,"Over time, this forward-thinking strategy means big savings that we can reinvest in other important infrastructure projects. #BuildIllinois" +05/29/2018,Politicians,@GovRauner,"The plan is a big change in strategy. Abandoning worst-first strategy in favor of smaller, more timely repair and p… https://t.co/dSSLRf2bvK" +05/29/2018,Politicians,@GovRauner,"Construction on The McClugage Bridge begins in FY19. New bridge will reduce congestion, improve traffic flow, incre… https://t.co/zgquuzEn5q" +05/29/2018,Politicians,@GovRauner,Announced an $11B investment in Illinois roads and bridges this morning. The 6-year program starts this summer with… https://t.co/KzW5gCrqHZ +05/28/2018,Politicians,@GovRauner,"We are able to enjoy this holiday, our freedom and safety because of the ultimate sacrifices made by our military s… https://t.co/CysVEw9usE" +05/28/2018,Politicians,@GovRauner,"Nearly 27,000 Illinoisans gave their lives during the WWII, Korean and Vietnam Wars. It is with reverence and overw… https://t.co/tJz2UxJebo" +05/28/2018,Politicians,@GovRauner,Great to be back at the American Legion Post 32 today. Always a wonderful time. https://t.co/37nzVeHBU9 +05/28/2018,Politicians,@GovRauner,So great to come home after a ride. Renovations on the @ILMansion are moving along. 7 weeks until doors open to the… https://t.co/cDBHDDb4x4 +05/27/2018,Politicians,@GovRauner,"There is no room for intolerance in our state, our society. Thank you to the volunteers for clearing the markers. I… https://t.co/TBxMEaiZoq" +05/27/2018,Politicians,@GovRauner,Watching dirt fly this beautiful Sunday at the prestigious 2018 Harley-Davidson @SpringfieldMile. The Illinois Stat… https://t.co/vysWzbyE7A +05/26/2018,Politicians,@GovRauner,Today we show our unending gratitude to the heroes who have given their lives for our country. The Spaulding Vetera… https://t.co/UD8vt994Ga +05/26/2018,Politicians,@GovRauner,RT @ILFirstLady: Did you know the last major renovation of the @ILMansion happened in the 1970s! Now we’re just weeks away from opening the… +05/26/2018,Politicians,@GovRauner,It is said our flag does not fly by the wind. It flies with the last breath of each soldier who died protecting it.… https://t.co/oE8ycqUcku +05/25/2018,Politicians,@GovRauner,"Safe travels this #MemorialDayWeekend, Illinois. Millions are expected to hit the road. So buckle up, stay alert an… https://t.co/JAlUxx4E34" +05/25/2018,Politicians,@GovRauner,Sign up for our newsletter. Stay up to date on the advances we are making for Illinois. Visit:… https://t.co/nZyz29OKAk +05/25/2018,Politicians,@GovRauner,"ICYMI -- Precedent-setting month for Illinois. Mental health advances, public safety, tough new corruption penalty… https://t.co/2JLD1aheBh" +05/25/2018,Politicians,@GovRauner,We agree with Representatives Costello and Bryant. Mass murder and killing police officers and firefighters are cri… https://t.co/WJpwxNYbxw +05/25/2018,Politicians,@GovRauner,"Precedent-setting month for Illinois. Mental health advances, public safety, tough new corruption penalty proposals… https://t.co/UUMSLZNohM" +05/24/2018,Politicians,@GovRauner,"Illinois aviation industry helps our economy take flight, supports 330K+ jobs and generates more than $40B in annua… https://t.co/K6hMghRYw6" +05/24/2018,Politicians,@GovRauner,"Had the pleasure of meeting @megbugg and her family at the Capitol today. At 14, Megan was diagnosed with Stage 4 c… https://t.co/1X5otSeyrx" +05/24/2018,Politicians,@GovRauner,Our heroes stand up against danger to keep us safe. Their sacrifice grants us the gift of freedom and allows us to… https://t.co/JM6DVNWb1d +05/23/2018,Politicians,@GovRauner,"Drivers, as summer traffic heats up, pay special attention to vehicles on the road and off. Slow down, safely switc… https://t.co/Nj3geJXiOJ" +05/23/2018,Politicians,@GovRauner,RT @WCIA3Raquel: .@kmcconnaughay33 says the current legislative investigative process is like the “fox watching the henhouse.” She says Mad… +05/23/2018,Politicians,@GovRauner,People should have the power to decide to use local tax money to pay for school resource officers and mental health… https://t.co/bpKnvcxUBy +05/23/2018,Politicians,@GovRauner,"Our public safety plan secures targets, disarms the dangerous, puts the illegal gun trade on notice, brings transpa… https://t.co/IzqYaIw5qf" +06/30/2018,Politicians,@SenatorLeahy,Whenever I am at our home in Vermont I get up early just to see the nature around. Sometimes it is deer in the fiel… https://t.co/JyNmmZDhVj +06/30/2018,Politicians,@SenatorLeahy,"Wow. Beautiful, and important in this troubling moment. Vermonters today have also strongly added their voices. https://t.co/aNtk1OA727" +06/30/2018,Politicians,@SenatorLeahy,"Bless them all. Thanks to them, and you. A sickening time. https://t.co/tmexoslNPg" +06/30/2018,Politicians,@SenatorLeahy,"RT @alexsilbermanvt: Traffic stopped on S. Winooski Ave. as hundreds, if not over a thousand, demonstrators march towards Battery Park. #BT…" +06/30/2018,Politicians,@SenatorLeahy,"RT @paxperscientiam: #FamiliesBelongTogetherMarch + +#FamiliesBelongTogether #vtpoli #btv https://t.co/BADFFfZmSG" +06/30/2018,Politicians,@SenatorLeahy,RT @EricEvenson: #FamiliesBelongTogether March in #BTV today - so glad we took part! https://t.co/M5wRSthbIC +06/30/2018,Politicians,@SenatorLeahy,RT @BaileyAnneBrave: In the streets for human rights in #Burlington #Vermont. #BTV #KeepFamiliesTogether https://t.co/0vKG74NWqZ +06/30/2018,Politicians,@SenatorLeahy,RT @exocited: #familiesbelongtogetherVT It's been about 15 years since I saw a turnout like this in #BTV https://t.co/zRqYDMMucL +06/30/2018,Politicians,@SenatorLeahy,RT @alexsilbermanvt: Hundreds of people packed into the courtyard to hear speakers before the start of #KeepFamilesTogether March in Burlin… +06/30/2018,Politicians,@SenatorLeahy,A Vermonter today. The Trump Adminstration's purposeful cruel and cynical family separations must end. Vermonters a… https://t.co/TyYCmy4piz +06/30/2018,Politicians,@SenatorLeahy,"Vermonters, with Americans across the nation, know that the Trump family separations are cruel, they are abhorrent,… https://t.co/jkBQmm6VTU" +06/29/2018,Politicians,@SenatorLeahy,"RT @CrankyQuilter: @SenatorLeahy @PattyMurray Thank you, Senator. I live my life in that zone and it has never been an issue until now. As…" +06/29/2018,Politicians,@SenatorLeahy,I made it clear today in my speech today that I am concerned that anyone who passes Pres. Trump’s litmus tests for… https://t.co/lJIE2gJnzm +06/29/2018,Politicians,@SenatorLeahy,I told the @VermontLaw Restorative Justice Conference about the $3m I included in FY 19 funding for a new National… https://t.co/clBWxPjWBZ +06/29/2018,Politicians,@SenatorLeahy,"RT @KBLVT: @kylegriffin1 @SenSanders @VermontSOS @MSNBC @SenatorLeahy @ACLU Thanks for introducing this important legislation, Sens Leahy &…" +06/29/2018,Politicians,@SenatorLeahy,RT @WVNYWFFF: Leahy: Cut border checkpoint 'zones' from 100 miles to 25 miles https://t.co/QUMbTmY8f0 +06/29/2018,Politicians,@SenatorLeahy,"For too long, Congress relied on mandatory minimums to ‘solve’ every public safety concern. Yet one-size-fits-all s… https://t.co/95H82QFL5h" +06/29/2018,Politicians,@SenatorLeahy,I’ve been looking forward to addressing this great audience today at @VermontLaw #RestorativeJustice Conference at… https://t.co/7smqoCl269 +06/29/2018,Politicians,@SenatorLeahy,RT @VTLawSchool: “One size does not fit all.” @SenatorLeahy on #justicereform and #restorativejustice at the International Restorative Just… +06/29/2018,Politicians,@SenatorLeahy,RT @ReneeMyNBC5: “I have never seen a president treat the court-the independent Supreme Court-as an arm of the White House.” @SenatorLeahy… +06/29/2018,Politicians,@SenatorLeahy,News Backgrounder: Vermont Highlights In The 5-Year Farm Bill Passed Thursday Night By The U.S. Senate https://t.co/4C9ttP2GRn +06/29/2018,Politicians,@SenatorLeahy,"RT @cvt_staff: CVT is grateful to @RoyBlunt @SenatorLeahy and @PattyMurray for their important work toward increased funding, which is so n…" +06/29/2018,Politicians,@SenatorLeahy,"RT @UVMLarnerMed: Though once in the headlines for its residents' #opioid #addiction , #VT & #UVM are now at the forefront of treatment w/t…" +06/29/2018,Politicians,@SenatorLeahy,"I support this, and I’m a cosponsor of the Senate bill, S.422. https://t.co/cYFlzqx1q4" +06/29/2018,Politicians,@SenatorLeahy,RT @VTsNEK: The Clearest Lake In Vermont Is Almost Too Beautiful To Be Real https://t.co/XdcpbNPG5Y +06/29/2018,Politicians,@SenatorLeahy,"RT @KathLusk: When I interned for @SenatorLeahy two decades ago, I was paid. That summer he had 4 undergrads & 1 law intern in his DC offic…" +06/29/2018,Politicians,@SenatorLeahy,"Hello. I invite you to follow my work and statements and photos on these and other issues on my Twitter, Instagram… https://t.co/uZNDlvCh3k" +06/29/2018,Politicians,@SenatorLeahy,"RT @UMR4NIH: Thank you @SenatorLeahy for your leadership, support for medical research & vote to #keepNIHstrong #FY19 https://t.co/HyrtpRWm…" +06/29/2018,Politicians,@SenatorLeahy,"RT @emhew: If you live in Vermont, you probably live within the 100-mile zone where border agents have broad authority to carry out warrant…" +06/28/2018,Politicians,@SenatorLeahy,RT @civilrightsorg: Our executive vice president Kristine Lucius is outside #SCOTUS right now rallying to #SaveSCOTUS: No one who has earne… +06/28/2018,Politicians,@SenatorLeahy,Proud to work with and support @pattymurray on this... https://t.co/qp1N67O8tx +06/28/2018,Politicians,@SenatorLeahy,RT @taylordobbs: A new bill from @SenatorLeahy and @PattyMurray would shrink the zone near borders where feds are allowed to conduct warran… +06/28/2018,Politicians,@SenatorLeahy,"The “border zone” extends 100 miles from our land/sea borders, reaching 2/3 of all Americans. Yet the 4th Amendment… https://t.co/NGuXmrjjFh" +06/28/2018,Politicians,@SenatorLeahy,"“Show me your papers”—words you should never hear once inside the US. Immigration officials consider Burlington, Wh… https://t.co/y9yUaCmEa9" +06/28/2018,Politicians,@SenatorLeahy,RT @mcquiston: Leahy leads charge to research alternatives to opioids for chronic pain | Vermont Business Magazine https://t.co/pGks2IPKR7 +06/28/2018,Politicians,@SenatorLeahy,RT @VNewsUV: NEW: @SenatorLeahy has filed a bill to curb interior traffic stops by Customs and Border Protection agents without a warrant.… +06/28/2018,Politicians,@SenatorLeahy,"Vital, lifesaving work that we MUST invest in...for this & future generations. You can't just turn complex cutting-… https://t.co/zuRugviGjl" +06/28/2018,Politicians,@SenatorLeahy,Chants of “We Care!” echoing in the U.S. Senate Capitol complex right now in defense of and advocacy for relief for… https://t.co/gpMEuXpJfI +06/28/2018,Politicians,@SenatorLeahy,Leahy And @PattyMurray Introduce Legislation To Limit Warrantless Vehicle Stops And Property Searches Near The Bord… https://t.co/nZHxFb67HG +06/28/2018,Politicians,@SenatorLeahy,Leahy Leads Charge To Research Alternatives To Opioids For Chronic Pain Through Defense Department Health Program… https://t.co/I0CxqNU7dQ +06/28/2018,Politicians,@SenatorLeahy,Leahy Guides Creation Of National Centers To Address Rural Addiction Through The Senate Appropriations Committee… https://t.co/n6FUjizf7J +06/28/2018,Politicians,@SenatorLeahy,"I have never seen a White House, working with its enablers in Congress, so cynically, disgracefully and inappropria… https://t.co/U7tGpW7q99" +06/28/2018,Politicians,@SenatorLeahy,If House Republicans hold either FBI Director Wray or Deputy Attorney General Rosenstein in contempt it would only… https://t.co/pNUlxZJTHj +06/28/2018,Politicians,@SenatorLeahy,Thanks for checking Patty. And follow me on Twitter as this develops... https://t.co/CUrokHooa1 +06/28/2018,Politicians,@SenatorLeahy,Hi Patty. Have you been reading my statements and following my comments on Twitter on this? ... https://t.co/sWFaU0IVfj +06/28/2018,Politicians,@SenatorLeahy,"RT @Yamiche: Sen. Leahy: Can you give me 1 example of terrorism by a DACA recipient? +Chad Readler of DOJ: No I can't. +Leahy: Neither can J…" +06/28/2018,Politicians,@SenatorLeahy,"President Trump should also reflect on Justice Kennedy’s legacy, and select a nominee who will be a fair-minded, in… https://t.co/jmH3SsGGVP" +06/28/2018,Politicians,@SenatorLeahy,Pres. Trump should listen to the voices of millions of concerned Americans worried that they are on the verge of lo… https://t.co/BsNVF1ZaHE +06/28/2018,Politicians,@SenatorLeahy,"President Trump should use this time to do what President Obama did: Find a mainstream, consensus nominee who would… https://t.co/2B6JS3fzHw" +06/28/2018,Politicians,@SenatorLeahy,There is no justification for rushing this process. Every Republican embraced the #McConnellStandard last Congress… https://t.co/F72HdJiA5E +06/28/2018,Politicians,@SenatorLeahy,"I did not agree with many of Justice Kennedy’s opinions, but I respected his willingness to recognize the rights of… https://t.co/lhFeYMDGD1" +06/28/2018,Politicians,@SenatorLeahy,RT @Alexruoff: Some chamber-shade in today's Senate Def-LHHS markup. Patrick Leahy praising the bipartisan work that went into the def and… +06/28/2018,Politicians,@SenatorLeahy,"I support this, and I’m a cosponsor of the Senate bill, S.422. H.R.299 is being hotlined for Senate action… https://t.co/8G9Li7EM2D" +06/28/2018,Politicians,@SenatorLeahy,Looking forward to being with you all tomorrow... https://t.co/Rq0AERk2WO +06/28/2018,Politicians,@SenatorLeahy,"RT @LindseyGrahamSC: Hearing on @StateDept budget with @SecPompeo. + +WATCH LIVE: https://t.co/i911WRp7ax" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) Sat in on the senator’s meeting with Bill Gates this afternoon. I heard about how the Bill & Melinda Gates… https://t.co/6yWNDTHavy +06/27/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: Good call. https://t.co/zxuRWa5oIL +06/27/2018,Politicians,@SenatorLeahy,BREAKING: REAX Of Senator Patrick Leahy On Justice Kennedy’s Announcement Of His Decision To Retire From The Suprem… https://t.co/ghfm4oaUAk +06/27/2018,Politicians,@SenatorLeahy,Just so you know: I steered thru Judiciary Committee & Senate the 2013 Comprehensive Immigration Reform pkg that in… https://t.co/ngLmqyATCQ +06/27/2018,Politicians,@SenatorLeahy,"(Jack:) After our brown bag lunch with the senator just now, he took us Leahy Interns and Fellows for a stroll to t… https://t.co/d1EC6trjeg" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) More quality time with the senator today for our brown bag lunch earlier with Leahy Interns and Law Clerks.… https://t.co/Tkal60QFuR +06/27/2018,Politicians,@SenatorLeahy,"RT @pleasesaveour: We this is hopeful @AliVelshi +Leahy: Senate appropriations process 'a dose of sanity' - VTDigger https://t.co/ov4WTyDZLc…" +06/27/2018,Politicians,@SenatorLeahy,"RT @vtdigger: The U.S. Senate advanced its first appropriations bills for the next fiscal year with strong bipartisan support +https://t.co/…" +06/27/2018,Politicians,@SenatorLeahy,Thanks. I agree & this was a high priority for me in writing the annual SFOPS Approps Bill. As ranking member there… https://t.co/4145LEdx3Y +06/27/2018,Politicians,@SenatorLeahy,"We had a good meeting today in the Capitol with King Abdullah of Jordan, and with Queen Rania...one of many meeting… https://t.co/1pcEEYjj7w" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) We’re in transit from the Capitol to the Russell Building. Senator Leahy is joking with staff in front of… https://t.co/QXlkuhi5j3 +06/27/2018,Politicians,@SenatorLeahy,"Congrats to former @UVMmHockey star @mstlouis_26, who will be inducted into the @HockeyHallFame 25 years after firs… https://t.co/aOoGz7NNXT" +06/27/2018,Politicians,@SenatorLeahy,RT @MinorHeretic: @SenatorLeahy My sister interned w/Senator Leahy decades ago and a friend’s daughter just last year. Both had a wonderful… +06/27/2018,Politicians,@SenatorLeahy,"RT @LamyJ: @SenatorLeahy one key word here -- ""PAID"" 👏 boss for continuing to make these opportunities possible for students. Lots of Lea…" +06/27/2018,Politicians,@SenatorLeahy,"(Jack:) And another, with the King and Queen https://t.co/L6aeMF4ReB" +06/27/2018,Politicians,@SenatorLeahy,(Jack:) I’m starting my “shadow”day in the Capitol with Senator Leahy as he (as Vice Chair) and Approps Chair Shelb… https://t.co/PuVhDVqXZS +06/27/2018,Politicians,@SenatorLeahy,RT @JayTilton: #ICYMI by @emhew @vtdigger: Leahy: Senate appropriations process ‘a dose of sanity’ https://t.co/nFrdW7GzEu +06/27/2018,Politicians,@SenatorLeahy,Today my intern Jack will shadow me to see what goes into representing #VT every day. Watch my account today for ph… https://t.co/hFlVskPOyZ +06/27/2018,Politicians,@SenatorLeahy,"RT @kathykiely: ""A strong bilateral relationship between the U.S. and Egypt must not be perceived ... as a blank check to silence the media…" +06/26/2018,Politicians,@SenatorLeahy,RT @VT_FEED: The first full day of the Northeast Farm to School Institute workshops are wrapping up! Looking forward to @anson_ag; staff fr… +06/26/2018,Politicians,@SenatorLeahy,"RT @vprnet: 🙋‍♂️ @SenatorLeahy on #TravelBan ➡️ + +“It’s not a question of protecting us, it's anti-American, we should be spending our time,…" +06/26/2018,Politicians,@SenatorLeahy,"RT @vprnet: Sen. Leahy Discusses Family Separation, Trump's Trade Tariffs https://t.co/fnEhamyC34 @vermontedition https://t.co/LdGzK15wWi" +06/26/2018,Politicians,@SenatorLeahy,"RT @vermontedition: On family separation at the southern border @SenatorLeahy says to make change, protests are necessary around the count…" +06/26/2018,Politicians,@SenatorLeahy,BREAKING: Leahy REAX On SCOTUS Decision Upholding President Trump’s Travel Ban https://t.co/rPXuXttoA1 https://t.co/BcuTidIQzh +06/26/2018,Politicians,@SenatorLeahy,Those who aim to restrict the vote are firmly on the wrong side of history—and always have been. My Voting Rights… https://t.co/C41KATd45J +06/26/2018,Politicians,@SenatorLeahy,"No matter the setbacks—states pursuing discriminatory voting laws, inexcusable gerrymandering, recent court decisio… https://t.co/dBsjlmMLrR" +06/26/2018,Politicians,@SenatorLeahy,"RT @jacobsoboroff: You, only you, systematically separated kids from their parents — in many cases possibly permanently — and put them alon…" +06/25/2018,Politicians,@SenatorLeahy,Wow. Thanks Maggie... https://t.co/FyB6UAmBzN +06/25/2018,Politicians,@SenatorLeahy,"RT @BillieJeanKing: Many years ago, I testified on Capitol Hill on behalf of #TitleIX, to help girls and women advance in their sport. Toda…" +06/25/2018,Politicians,@SenatorLeahy,My most solemn duty is to uphold & defend the Constitution while representing the values of Vermonters. POTUS' call… https://t.co/xuUGdLsKt5 +06/22/2018,Politicians,@SenatorLeahy,"Comment of Senator Leahy On The Supreme Court’s Decision On Cell-Site Location Information, In Carpenter v. U.S.… https://t.co/w8dmFQ2rDB" +06/22/2018,Politicians,@SenatorLeahy,RT @OurOcean: The Trump administration just repealed the #NationalOceanPolicy. Here's what comes next... https://t.co/UKQVP0AyQB https://t.… +06/22/2018,Politicians,@SenatorLeahy,RT @IAVI: Sincerest thanks to the #Senate #SFOPS subcommittee members and the leadership of @SenatorLeahy and @LindseyGrahamSC for their co… +06/22/2018,Politicians,@SenatorLeahy,"Every time that Pres. Trump & his enablers tear apart a family, it weakens our nation’s social fabric, & it betrays… https://t.co/8KM3nHMJHd" +06/22/2018,Politicians,@SenatorLeahy,It’s an uplifting tonic to be able to congratulate these new Americans as they took their oath to our country and a… https://t.co/WVJFDL5Iv2 +06/22/2018,Politicians,@SenatorLeahy,Remarks Of Senator Leahy At Burlington Naturalization Ceremony https://t.co/RQ3lJ0a4Zh https://t.co/1xH5EeemLt +06/22/2018,Politicians,@SenatorLeahy,Proud to join with @SenBooker and others in introducing this bill in the Senate. https://t.co/QPYzbmplwX +06/22/2018,Politicians,@SenatorLeahy,In #VT I’m at the naturalization ceremony for 15 new Americans. As Trump continues his assault on immigrants & immi… https://t.co/pwj6aK6cCe +06/22/2018,Politicians,@SenatorLeahy,RT @jackie_pascale: Now at a naturalization ceremony where 15 people are becoming U.S. citizens. Sen. Patrick Leahy is also in attendance.… +06/22/2018,Politicians,@SenatorLeahy,".@SteveSchmidtSES I’m working on legislation to address this very issue, similar to what I and Senator @PattyMurray… https://t.co/AA3Xs3qcl9" +06/22/2018,Politicians,@SenatorLeahy,RT @theglobalfight: Thank you @SenatorLeahy for your leadership on #globalhealth funding and sustained support for the @GlobalFund! https:/… +06/22/2018,Politicians,@SenatorLeahy,"RT @barbarastarrcnn: Following Reports That Defense Department Is Sending Jags To Southern Border To Prosecute Immigration Cases, Senators…" +06/22/2018,Politicians,@SenatorLeahy,"RT @DianneG: Senators Ernst, Gillibrand & Leahy demand answers from Sec. Mattis on use of JAG attorneys on border +(Full letter attached) h…" +06/22/2018,Politicians,@SenatorLeahy,RT @Chip_Lyons: Thank you @LindseyGrahamSC and @SenatorLeahy for your continued commitment to the @PEPFAR program. Increased resources are… +06/22/2018,Politicians,@SenatorLeahy,"Whether due to its incompetence, deliberate cruelty, or both, the Trump Administration hastily tore more than 2,300… https://t.co/PUcIMN1zbK" +06/22/2018,Politicians,@SenatorLeahy,"Another senseless, cynical and dangerous travesty... https://t.co/bkCg2N07fC" +06/22/2018,Politicians,@SenatorLeahy,RT @thehill: Senators urge Mattis to stop using military lawyers to prosecute immigrants https://t.co/tqLSCqWfiG https://t.co/KX7lsGtPda +06/22/2018,Politicians,@SenatorLeahy,A principled conservative. RIP Charles. https://t.co/KeA4NZU9pu +06/21/2018,Politicians,@SenatorLeahy,Vermont's libraries are indispensable elements of our cultural legacy. I started my regular visits to the Kellogg-H… https://t.co/976qATPLOB +06/21/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Appropriations Vice Chair Leahy: Summary Of The Financial Services And General Government FY19 Appropriations Bill https… +06/21/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Appropriations Vice Chair Leahy: Summary Of The Department Of Homeland Security FY19 Appropriations Bill https://t.co/yM… +06/21/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: The Senate Appropriations Committee just passed my amendment with @SenatorLeahy that will deny U.S. visas to any Pakista… +06/21/2018,Politicians,@SenatorLeahy,RT @VTAgencyofAg: June Is Dairy Month: Help Support Your Local Dairy Farmers. Learn more: https://t.co/FrWzIoXEUd #ThinkVt #VtDairy https:/… +06/21/2018,Politicians,@SenatorLeahy,"RT @OswaldRachel: By a narrow vote of 16-15, Senate State-Foreign Operations appropriators adopt amendment allowing funding of UNFPA, repea…" +06/21/2018,Politicians,@SenatorLeahy,RT @UVMMedCenter: Sun Safety: Loving the Summer Sun without Getting Burned via @lewis_first https://t.co/ayBH3rwWkF #summer #vt #parenting +06/21/2018,Politicians,@SenatorLeahy,"RT @HorriganCaitlin: .@SenatorLeahy “We live in a time where the image of the US that historically protects human rights, nurtures alliance…" +06/21/2018,Politicians,@SenatorLeahy,RT @HealthGAP: Senator @LindseyGrahamSC and @SenatorLeahy should be applauded for leading the call to increase global HIV/AIDS funding by $… +06/21/2018,Politicians,@SenatorLeahy,"RT @elisacepstein: 2/ The Senate is marking up the FY19 State, Foreign Ops, and Related Programs bill today at 10:30AM. The Trump admin has…" +06/20/2018,Politicians,@SenatorLeahy,Today was my intern Ramsay’s one-on-one day. He shadowed me throughout my day on Capitol Hill to see what really go… https://t.co/wiTBVwh8UH +06/20/2018,Politicians,@SenatorLeahy,Pres. Trump’s “zero tolerance” policy needs to go. It makes zero sense to delay civil proceedings to criminally pro… https://t.co/eSlk6TJdXp +06/20/2018,Politicians,@SenatorLeahy,Indefinite incarceration of families is NOT the answer. I condemned incarceration of families during the Obama admi… https://t.co/eak5zDJT3G +06/20/2018,Politicians,@SenatorLeahy,"Today the American people, through their forceful and justified outrage, proved they can drive change even during t… https://t.co/9NV7CrP2vF" +06/20/2018,Politicians,@SenatorLeahy,RT @CourthouseNews: Senate Blocks Trump Plan to Cut $15B in Unused Spending https://t.co/gOaj7GylZ8 https://t.co/HRoIigNie5 +06/20/2018,Politicians,@SenatorLeahy,NEWS from Leahy and @GovPhilScott: President Nominates Retired Essex Police Chief To Be Vermont’s Next U.S. Marshal https://t.co/5qbKdk99dg +06/20/2018,Politicians,@SenatorLeahy,RT @SenatorDurbin: President Trump and his enablers in Congress have taken these children hostage to try to enact their anti-immigrant agen… +06/20/2018,Politicians,@SenatorLeahy,BREAKING: Comment Of Senator Patrick Leahy (D-Vt.) On President Trump's Reversal Of His Mandatory Family Separation… https://t.co/AwHypSr7Pq +06/20/2018,Politicians,@SenatorLeahy,REAX Of Appropriations Vice Chair Leahy To The Senate’s Vote Wednesday Afternoon Rejecting President Trump’s Rescis… https://t.co/XoUNfhthJm +06/20/2018,Politicians,@SenatorLeahy,"RT @VermontSOS: Today Sec. Condos and @SenatorLeahy announced VT's Receipt +Of $3m in Federal Election Security Funds: https://t.co/jigyGp0W…" +06/20/2018,Politicians,@SenatorLeahy,.@VermontSOS Jim Condos and Senator Patrick Leahy Announce Vermont’s Receipt Of $3 Million in Federal Election Secu… https://t.co/rszUuWqmoH +06/20/2018,Politicians,@SenatorLeahy,RT @VT_AHC: Thank you @SenatorLeahy for fighting for more federal resources to combat #VT's #affordablehousing shortage and #homelessness c… +06/20/2018,Politicians,@SenatorLeahy,RT @WaterAidAmerica: Thank you Senators @GrahamBlog @SenatorLeahy & @SenateApprops for supporting funding for #water #sanitation & #hygiene… +06/20/2018,Politicians,@SenatorLeahy,RT @SenateApprops: Vice Chairman Of Appropriations Senator Patrick Leahy (D-Vt.) On President Trump’s Rescission Package https://t.co/6eBQD… +06/20/2018,Politicians,@SenatorLeahy,"A single mother in #Vermont, earning minimum wage, shouldn’t have to work 85 hours per week to afford a 2-bedroom a… https://t.co/HkJmC9QjPi" +06/19/2018,Politicians,@SenatorLeahy,RT @OurOcean: Thank you @SenatorLeahy for speaking out in favor of strong funding for @NOAA ocean programs in the CJS bill. Your commitment… +06/19/2018,Politicians,@SenatorLeahy,RT @WWConserve: How could the 2018 Farm Bill help #conservation in New England? @SenatorLeahy lays out the benefits of the Senate Agricultu… +06/18/2018,Politicians,@SenatorLeahy,"After a long day of watching Trump’s subordinates spin themselves dizzy defending this abhorrent policy, I have to… https://t.co/C95Tiw8tMw" +06/18/2018,Politicians,@SenatorLeahy,These are the heart-wrenching sounds of Pres. Trump’s family separation policy. This policy is a stain on the very… https://t.co/EVyB8vkrPp +06/18/2018,Politicians,@SenatorLeahy,Trump and his allies claim that family separation is required by law. That is a bald-faced lie. This is a Trump adm… https://t.co/dO2M082CCF +06/18/2018,Politicians,@SenatorLeahy,I just led a letter from all Judiciary Committee Democrats to Chairman Grassley asking that he immediately hold a h… https://t.co/uNnNhL0L8e +06/18/2018,Politicians,@SenatorLeahy,Trump claimed that the FBI using a ROUTINE confidential source during the Russia probe was a scandal bigger than Wa… https://t.co/jcy4TebE3D +06/18/2018,Politicians,@SenatorLeahy,"In response to my question, the IG confirmed that Pres. Trump has NO BASIS in claiming the IG report shows no collu… https://t.co/OKYcs0rttR" +06/18/2018,Politicians,@SenatorLeahy,Leahy Leads Judiciary Democrats In Letter To Grassley Calling For Hearing On President Trump's Family Separation Po… https://t.co/DUm4mQjGqz +06/18/2018,Politicians,@SenatorLeahy,Vermont Receives Increased Opioid Funding Through New Leahy-Negotiated Omnibus Formula https://t.co/kgBzn2IqVF https://t.co/nobXBuyyNV +06/18/2018,Politicians,@SenatorLeahy,I will be asking FBI Director Wray and IG Horowitz about the Justice Department Inspector General report on FBI act… https://t.co/P94OtHON0E +06/18/2018,Politicians,@SenatorLeahy,"Just learned that 2,342 children have now been torn away from their families as a result of President Trump’s famil… https://t.co/zPt3tmydhB" +06/16/2018,Politicians,@SenatorLeahy,FYI I'm an original cosponsor. https://t.co/mNLEP7qSr7 +06/16/2018,Politicians,@SenatorLeahy,Actually I'm an original cosponsor of Senator Feinstein's bill. I spoke again about it Thursday in the Judiciary… https://t.co/ORx16YYgy5 +06/16/2018,Politicians,@SenatorLeahy,"Our bill to stop this, sponsored by Senator Feinstein, continues to gather support -- EXCEPT, so far, from Senate R… https://t.co/xrX9EOgAug" +06/16/2018,Politicians,@SenatorLeahy,"RT @MarkWarner: ‘Since his arrival in Michigan, family members said, a day has not gone by when the boy has failed to ask in Spanish, “When…" +06/16/2018,Politicians,@SenatorLeahy,RT @SenFeinstein: President Trump was wrong again this morning when he said the law requires children to be taken from their parents at the… +06/16/2018,Politicians,@SenatorLeahy,RT @AgandFoodTeam: We're liking the Senate Agriculture Committe's version of the Farm Bill so far. Ready to see what happens next! @ChuckGr… +06/15/2018,Politicians,@SenatorLeahy,Leahy Announces Significant Funding Increases To Programs That Protect and Preserve Lake Champlain https://t.co/iqr7ubzlhP +06/15/2018,Politicians,@SenatorLeahy,Leahy Advances Creation Of National Center For Restorative Justice https://t.co/Y4Rx93GVqn +06/15/2018,Politicians,@SenatorLeahy,RT @JayTilton: @SenatorLeahy and @SenShelby have been the driving force behind keeping poison pills out of the process and a return to “old… +06/15/2018,Politicians,@SenatorLeahy,Leahy Advances Record Funding For Violence Against Women Act Programs; Increase For Bulletproof Vests Program https://t.co/JSecupb012 +06/15/2018,Politicians,@SenatorLeahy,Leahy Leads Fight Against Opioid Epidemic In Senate Appropriations Committee https://t.co/5gD0oYGRJK +06/14/2018,Politicians,@SenatorLeahy,"Systematically tearing families apart at our Southern Border is inhumane, a violation of our values, and calls to m… https://t.co/PgddizILiA" +06/14/2018,Politicians,@SenatorLeahy,Leahy-Grassley CREATES Act To Lower Prescription Drug Prices Clears Judiciary Committee https://t.co/6F9msQGkxX https://t.co/bCSF6FS1Qw +06/14/2018,Politicians,@SenatorLeahy,"A day we’ve been waiting for, a chance for REAL action to bring down Americans’ prescription costs, and another boo… https://t.co/o1OUxEAkm7" +06/14/2018,Politicians,@SenatorLeahy,"Students are in the Nation’s Capital from across the nation – from Vermont, to Arizona, to Oregon, to every other s… https://t.co/rWRxVFdatB" +06/14/2018,Politicians,@SenatorLeahy,Today the Vermont National Guard’s Air Ambulance unit bid farewell to their friends and family as they head to Fort… https://t.co/1ifUdNGs2N +06/14/2018,Politicians,@SenatorLeahy,"Amen. I had an exactly even number of Republican and Democratic cosponsors of my bill, and momentum continues to bu… https://t.co/Ib42ZoTIz7" +06/14/2018,Politicians,@SenatorLeahy,BREAKING: Comment of Senator Leahy (D-Vt.) On The DOJ Inspector General's Report https://t.co/0igsALtO1r https://t.co/MyJMMFubGf +06/14/2018,Politicians,@SenatorLeahy,RT @NOgnanovich: Both @SenShelby and #Appropriations ranking member @SenatorLeahy say bipartisan approach and avoidance of `poison pill' ri… +06/14/2018,Politicians,@SenatorLeahy,"RT @ktullymcmanus: Senate Appropriations takes up FY19 Interior-Environment, CJS & #LegBranch spending bills today https://t.co/Ro2933BMQh" +06/14/2018,Politicians,@SenatorLeahy,"RT @CVSHealth: Thank you Senator @ChuckGrassley, @SenatorLeahy and other members of the Senate Judiciary Committee for your leadership in m…" +06/14/2018,Politicians,@SenatorLeahy,“Where is our soul?” I spoke out again today in the Judiciary Committee about the inhumane child separations happen… https://t.co/jWF6xueAkQ +06/14/2018,Politicians,@SenatorLeahy,RT @ewg: Thank you @SenatorLeahy for championing organic and working to increase payment levels provided to organic and transitioning produ… +06/14/2018,Politicians,@SenatorLeahy,"RT @RxPricing: Thank you, @SenatorLeahy, for your leadership on the #CREATESAct, which will increase #generics & #biosimliars competition,…" +06/14/2018,Politicians,@SenatorLeahy,"RT @AccessibleMeds: @SenatorLeahy ""You can't get any wider a spectrum than that. Either it is an excellent piece of legislation or some of…" +06/14/2018,Politicians,@SenatorLeahy,"A chilling first look for most Americans at the hurt, the misery and the fear that this travesty of a policy is wre… https://t.co/AooR6Aeuyh" +06/13/2018,Politicians,@SenatorLeahy,RT @AccessibleMeds: Thank you @SenatorLeahy for championing the #CREATESAct. We look forward to you helping bring down #drugprices for Verm… +06/13/2018,Politicians,@SenatorLeahy,RT @shortj: Thank you @SenatorLeahy for your important work during today's Senate Ag Committee markup of the #farmbill to support and stren… +06/13/2018,Politicians,@SenatorLeahy,Summary Of The 2018 Farm Bill Markup Incl. Vermont Highlights https://t.co/4C9ttP2GRn +06/13/2018,Politicians,@SenatorLeahy,Leahy Amendment Adds Bipartisan Reauthorization Of The Northern Border Regional Commission To The 2018 Farm Bill… https://t.co/drVB98z8lj +06/13/2018,Politicians,@SenatorLeahy,Vermont #Maple = The #GoldStandard https://t.co/T5mPoliVaL +06/13/2018,Politicians,@SenatorLeahy,RT @NRDC: Thank you @SenatorCantwell @SenatorTomUdall @SenSchumer @SenatorLeahy @SenMarkey @SenBennetCO @SenJeffMerkley @RepHuffman @RepJar… +06/13/2018,Politicians,@SenatorLeahy,RT @CQnow: [ALERT] Senate Agriculture Committee Approves Farm Bill ($) https://t.co/yLRaUEaF4S +06/13/2018,Politicians,@SenatorLeahy,Important News That #Vermont #Dairy Farmers Can Use: #USDA Extends The Application Deadline For The Improved Dairy… https://t.co/fOcejDPRTq +06/13/2018,Politicians,@SenatorLeahy,RT @YoungFarmers: Thank you to our champions on the Committee that offered amendments to support young farmers and ranchers: @SenBennetCO @… +06/13/2018,Politicians,@SenatorLeahy,"RT @lesleyclark: ""Times have changed, for the better,"" a chuckling @SenateMajLdr says as Sen. Patrick Leahy talks about days ago + legislat…" +06/13/2018,Politicians,@SenatorLeahy,"RT @JayTilton: “Chairman @SenShelby and Vice-Chairman @SenatorLeahy have been very strong in saying, ‘We’re going to the regular order and…" +06/13/2018,Politicians,@SenatorLeahy,RT @ldreiling: #FarmBill18 statements going on now. Grassley wants payment limits. Boozman happy about rice support and Leahy supports dair… +06/13/2018,Politicians,@SenatorLeahy,RT @emv52: .@SenatorLeahy recalls Dole & HHH work on past #FarmBill cycles & lauds Cmte ldrs now 4 bill 4 Farm & nutrition 🍴🚜 ⁦@HungerFreeV… +06/13/2018,Politicians,@SenatorLeahy,RT @RuralCo: @SenatorLeahy #Farmbill2018 continues the long tradition of bipartisan bills - see the farmers who work hard 365 days a year -… +06/13/2018,Politicians,@SenatorLeahy,RT @MoveOn: https://t.co/N7d94q9igU +06/12/2018,Politicians,@SenatorLeahy,I'm a proud cosponsor of this bill. See my website for my recent speech on the Senate Floor about this travesty. https://t.co/GqAhU1trGE +06/12/2018,Politicians,@SenatorLeahy,Capitals fans are happy. #ALLCAPS https://t.co/9MODNxovVk +06/12/2018,Politicians,@SenatorLeahy,Statement Of Senator Patrick Leahy On The Trump-Kim Summit Meeting https://t.co/atEBbmwU8T https://t.co/6JTvypboCZ +06/12/2018,Politicians,@SenatorLeahy,"RT @vtdigger: “There is no doubt the President’s rash words and actions harm Vermonters and Canadians alike,” @SenatorLeahy said in respons…" +06/12/2018,Politicians,@SenatorLeahy,"RT @benjaminwittes: Every day, ask yourself this question: What one thing can I do today that will make this democracy stronger and honor a…" +06/11/2018,Politicians,@SenatorLeahy,"RT @davidaxelrod: Whoa. After hours of grinding diplomacy, @POTUS will submit himself to the probing questioning of...Sean Hannity! +I bet K…" +06/11/2018,Politicians,@SenatorLeahy,June is #PTSD Awareness Month. Help spread the word. RT & visit the National Center for PTSD web site to see what t… https://t.co/ZAsyqpDi9o +06/11/2018,Politicians,@SenatorLeahy,"Test drive, or test flight? Not really sure... https://t.co/vF3ZYJukUk" +06/11/2018,Politicians,@SenatorLeahy,Marcelle and I never know what we will see on… https://t.co/jUmmRuf3Nv +06/11/2018,Politicians,@SenatorLeahy,"RT @GuardMagazine: ""We cannot afford enough of a military to cover every single contingency by itself, but with the Guard and Reserves, we…" +06/11/2018,Politicians,@SenatorLeahy,"RT @GMOFreeUSA: FDA's 'Added Sugar' Label Hits Sour Note With Maple Syrup Makers +Read about it here: https://t.co/8FaKV2RBsg +Join the conv…" +06/11/2018,Politicians,@SenatorLeahy,#NetNeutrality may end today but the fight for an open Internet continues. The House can restore the rules by follo… https://t.co/vLugARijo5 +06/08/2018,Politicians,@SenatorLeahy,Leahy: Senate Appropriations Committee Approves $50 M. To Help Domestic Abuse Victims https://t.co/U6Y46KsV25 +06/08/2018,Politicians,@SenatorLeahy,Leahy Leads Charge Against Homelessness In Senate Appropriations Bill https://t.co/oVlyIYNSoE +06/08/2018,Politicians,@SenatorLeahy,Proud to support the work of the VT Drug Task Force and its partners in Vermont. Our state benefits from such grea… https://t.co/JZminGjMeA +06/08/2018,Politicians,@SenatorLeahy,Statement Of Senator Patrick Leahy On Release Of The Committee’s Farm Bill Draft https://t.co/NZrQT6Thj4 https://t.co/kdcjCkOzIo +06/08/2018,Politicians,@SenatorLeahy,Leahy Joins Feinstein And Other Senate Democrats In Introducing Legislation To Halt Separation Of Immigrant Familie… https://t.co/OfvbwOOKdX +06/08/2018,Politicians,@SenatorLeahy,MUST READING: @WashingtonPost editorial and @TomTolesToons today on “Betsy Devos’s Gun-Less Gun Violence Study” . .… https://t.co/fbffjaD8xM +06/07/2018,Politicians,@SenatorLeahy,RT @EmilyGreenspan: Excellent statement by Senator Leahy on indigenous rights leaders under threat in the Philippines: https://t.co/pV9mgZ… +07/01/2018,Politicians,@MarkWarner,"“The White House promised '70 percent' of the tax cut would go to workers. It didn't.” +https://t.co/BENcB1drDy" +06/30/2018,Politicians,@MarkWarner,"Congratulations @VSUTrojans! +https://t.co/d73WW8vmnf" +06/29/2018,Politicians,@MarkWarner,GOOD NEWS for our national parks. After months of negotiations with the Administration and my Republican colleagues… https://t.co/NpiQumbaU8 +06/29/2018,Politicians,@MarkWarner,This is 100% false. https://t.co/BFyYXu3zQk +06/28/2018,Politicians,@MarkWarner,"RT @ChrisVanHollen: Phil, I can’t imagine what you and the entire Capital Gazette team are going through right now. Journalists shouldn’t h…" +06/28/2018,Politicians,@MarkWarner,RT @amyklobuchar: With threats of election interference growing @MarkWarner & I are urging the FEC to implement strong transparency & accou… +06/28/2018,Politicians,@MarkWarner,Make no mistake: the President just gave Russia the green light to once again interfere in US Elections. +06/28/2018,Politicians,@MarkWarner,"This is dangerous, this is weak, and it’s yet another slap in the face to the intelligence professionals who quite… https://t.co/9M2Pvjcbey" +06/28/2018,Politicians,@MarkWarner,"But no, here we are less than a month away from a Presidential summit with Vladimir Putin, and the President is ope… https://t.co/AnKI9zDAuD" +06/28/2018,Politicians,@MarkWarner,"For a while it even seemed like the President had gotten the message. +https://t.co/dNHxMtaWSW" +06/28/2018,Politicians,@MarkWarner,"So does the entire Senate Intel Committee, Republicans and Democrats alike. +https://t.co/FFA5XT0nTZ" +06/28/2018,Politicians,@MarkWarner,Reminder: our entire IC leadership stands by that conclusion. https://t.co/S6NokQT8ht +06/28/2018,Politicians,@MarkWarner,"The President can either believe the unanimous conclusion of our intelligence community, or he can believe Vladimir… https://t.co/ZmciouAkgS" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Secretary of Defense Jim Mattis, or he can believe Vladimir Putin. https://t.co/b6F4hQi2F2" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his NSA Director and head of US Cyber Command General Nakasone, or he can believe… https://t.co/J3bd1vvz2i" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his FBI Director Chris Wray, or he can believe Vladimir Putin. https://t.co/s26c4Q0N5k" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Secretary of State and former CIA Director Mike Pompeo, or he can believe Vlad… https://t.co/9gJKremxYH" +06/28/2018,Politicians,@MarkWarner,"The President can either believe his Director of National Intelligence Dan Coats, or he can believe Vladimir Putin. https://t.co/N7DasNkWBR" +06/28/2018,Politicians,@MarkWarner,"And they’re lying. The President can either believe Russia or he can believe our country’s intel chiefs, generals,… https://t.co/tENiFizqU6" +06/28/2018,Politicians,@MarkWarner,"I am grateful to Justice Kennedy for his many decades of service to our country, and wish him all the best in his retirement." +06/28/2018,Politicians,@MarkWarner,"In just four months, the American people will determine the makeup of the United States Senate. Given the precedent… https://t.co/JmEEW894LS" +06/27/2018,Politicians,@MarkWarner,"Unless the President holds Putin accountable for: + +- 2016 election interference +- Undermining European democracies… https://t.co/00DMp68Vfj" +06/27/2018,Politicians,@MarkWarner,"After visiting one of the ‘better’ detention facilities, all I can say is we need a lot more compassion for these k… https://t.co/bjA9EuB4b5" +06/27/2018,Politicians,@MarkWarner,"We’ve heard a lot of denials, a lot of counterattacks and blame shifting from this Administration, but we haven’t h… https://t.co/2YyYPYkBXB" +06/27/2018,Politicians,@MarkWarner,What this facility cannot do is reunite them with their parents. That’s the responsibility of the Trump Administrat… https://t.co/mhqC5s5VBC +06/27/2018,Politicians,@MarkWarner,"But no matter how well they’re being treated by the staff, the fact remains that they’re being held in detention, s… https://t.co/Jl7xuCoMB1" +06/27/2018,Politicians,@MarkWarner,"I’ve known this facility for a long time, I’ve visited before, and according to the kids I spoke to, they’re being treated well there." +06/27/2018,Politicians,@MarkWarner,"This morning I visited an HHS detention facility in Bristow, VA, where a number of immigrant minors are being held,… https://t.co/mrihiq0cAi" +06/27/2018,Politicians,@MarkWarner,"RT @kingWTOP: Awaiting a briefing from @MarkWarner about the Bristow, Va facility housing immigrant children separated from their parents.…" +06/27/2018,Politicians,@MarkWarner,"By now you might have heard the reports of immigrant kids allegedly abused at a detention center in Staunton, Va. H… https://t.co/wxgb4Sb5Em" +06/27/2018,Politicians,@MarkWarner,"RT @SenFeinstein: UPDATE: Only around 500 children separated from their parents at the border have been reunited. Around 2,000 children are…" +06/27/2018,Politicians,@MarkWarner,RT @brianschatz: This is happening in every state. And the official filings from insurance companies specifically cite Republican sabotage… +06/27/2018,Politicians,@MarkWarner,RT @LoopEmma: The Senate Intelligence Committee unanimously passed the 2019 Intelligence Authorization Act today. It’s named after late com… +06/26/2018,Politicians,@MarkWarner,"It’s official: the Republican tax bill is blowing up our national debt, bigly. https://t.co/QouFnDhuEp" +06/26/2018,Politicians,@MarkWarner,"ZTE is a national security threat, not a bargaining chip in trade negotiations. Our intelligence community knows it… https://t.co/UV8ETmbxye" +06/26/2018,Politicians,@MarkWarner,RT @SenDuckworth: The America that I know & am proud to have served in uniform is a nation that welcomes immigrants & refugees & defends th… +06/26/2018,Politicians,@MarkWarner,"While I disagree with the Court, today’s decision does not make the President’s actions or statements related to th… https://t.co/bZ531XSrdQ" +06/26/2018,Politicians,@MarkWarner,Three years ago today #MarriageEquality became the law of the land. #LoveIsLove https://t.co/i0uNuHkcrI +06/25/2018,Politicians,@MarkWarner,RT @ChrisVanHollen: Trump constantly belittles our hardworking federal workforce and proposed a pay freeze even though the cost of living i… +06/25/2018,Politicians,@MarkWarner,"Great drawing, Sarah! Can’t wait to see this young Virginian’s @Google doodle on the homepage. +https://t.co/OOyzvkuOkX" +06/25/2018,Politicians,@MarkWarner,"RT @ChrisMurphyCT: Who is getting hurt the most by Trump's sabotage of the health care system? + +Older Americans who don't yet qualify for…" +06/25/2018,Politicians,@MarkWarner,Something strange is happening. Federal workers hit by the OPM hack — according to all public reports a Chinese esp… https://t.co/S5sg7j1tk5 +06/25/2018,Politicians,@MarkWarner,"RT @MasonAthletics: What can we say, Mason always gets it done 😎 https://t.co/Bukkbuzgzi" +06/25/2018,Politicians,@MarkWarner,RT @clairecmc: My thanks to @Sen_JoeManchin. And a sore rib for a few weeks is no big deal. I play hurt. The work goes on. https://t.co/rBb… +06/25/2018,Politicians,@MarkWarner,"With a motion by George Mason, seconded by Patrick Henry, and a vote of 89-79, Virginia became the 10th state admit… https://t.co/mE6Nf303aG" +06/23/2018,Politicians,@MarkWarner,"This isn’t over until every last family is reunited. +https://t.co/nIX0YSbg4D" +06/22/2018,Politicians,@MarkWarner,RT @SenatorDurbin: Where is the plan from the Trump Administration to reunite these children with their parents? President Trump created th… +06/22/2018,Politicians,@MarkWarner,Congratulations to the @LittleLobbyists on one year of fighting for our nation’s youngest and most vulnerable… https://t.co/GUbwmuYMO7 +06/22/2018,Politicians,@MarkWarner,Great conversation on cybersecurity and security clearance reform with @NoVATechCouncil today at @GWTweets Loudoun… https://t.co/mnQ6SKG8gr +06/22/2018,Politicians,@MarkWarner,.@TimKaine and I are demanding answers about what’s going on at this facility in Staunton. https://t.co/KJNKHVzx05 +06/22/2018,Politicians,@MarkWarner,RT @NoVaTechCouncil: @MarkWarner sits down with @gwvstc #GWU cybersecurity students #NVTC https://t.co/OvEvIzBt2a +06/22/2018,Politicians,@MarkWarner,"Great seeing advocates from @AlzAssociation. They’re fighting for the 140,000 Virginians with Alzheimer’s and thous… https://t.co/fZXlPvauXk" +06/21/2018,Politicians,@MarkWarner,"We need to see these kids, and we need answers about what's going on at this facility. https://t.co/LNpOxusQGc" +06/20/2018,Politicians,@MarkWarner,"RT @timkaine: The Old Testament instructs the faithful: “When a foreigner resides among you in your land, do not mistreat them... Love them…" +06/20/2018,Politicians,@MarkWarner,"Never forget how many of us are Americans because our ancestors came fleeing war, famine, religious persecution & o… https://t.co/xH4hL01RuY" +06/20/2018,Politicians,@MarkWarner,RT @AspenFutureWork: “One of the most important takeaways from the @BLS_gov Contingent Worker Supplement is that this portion of the workfo… +06/20/2018,Politicians,@MarkWarner,More people should be paying attention to this. https://t.co/YnyGwU5not +06/20/2018,Politicians,@MarkWarner,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/20/2018,Politicians,@MarkWarner,Amen @MarkHerringVA. #KeepFamiliesTogether https://t.co/7zChlsMNws +06/20/2018,Politicians,@MarkWarner,"RT @TyrichardsonPC: Today: Sen.@MarkWarner, a vocal advocate for gig worker rights, expected to detail a few new ideas to help protect the…" +06/20/2018,Politicians,@MarkWarner,"RT @DavidCornDC: .@markwarner at Senate Intel Comm hearing: Russian intervention in 2016 election was ""a success for Vladimir Putin.""" +06/20/2018,Politicians,@MarkWarner,"RT @realdanstoller: News: @MarkWarner opening statement on policy response to #Russian interference. + +""Even to this day – over a year a ha…" +06/20/2018,Politicians,@MarkWarner,"This is child abuse. +https://t.co/3RaY3WqbjP" +06/20/2018,Politicians,@MarkWarner,RT @ACLUVA: Shout out to Sens. @timkaine and @MarkWarner for taking a strong stand against family separation and cosponsoring legislation t… +06/20/2018,Politicians,@MarkWarner,.@TimKaine and I are demanding answers about the Trump Administration’s #FamilySeparation policy. We’ve signed on t… https://t.co/yiGf4oTwiy +06/20/2018,Politicians,@MarkWarner,Great hearing from SecDef Mattis at today’s Senate India Caucus meeting – important insights on the vital role of t… https://t.co/Rhgv3WjawY +06/19/2018,Politicians,@MarkWarner,Amen @GovernorVA. #KeepFamiliesTogether https://t.co/Ep0ZX5RGR8 +06/19/2018,Politicians,@MarkWarner,"RT @RepPeteAguilar: The OPPORTUNITY Act, my bill to connect a diverse pool of students with the @DeptofDefense Cyber Scholarship Program, p…" +06/19/2018,Politicians,@MarkWarner,#Juneteenth commemorates the day of freedom for thousands of enslaved African-Americans. Today it’s a day to celebr… https://t.co/4o9K8f3PDu +06/19/2018,Politicians,@MarkWarner,"#FamilySeparation is not “the law.” It’s not “the Democrats fault.” It is the direct result of this DOJ order, sign… https://t.co/wzP81yI04o" +06/19/2018,Politicians,@MarkWarner,RT @AspenFutureWork: Join us on 6/20 for a briefing on the latest data on contingent work and its implications for workers. You’ll hear key… +06/18/2018,Politicians,@MarkWarner,Tonight the Senate passed our bipartisan amendment to block the Trump Administration's bad deal with ZTE. If the Pr… https://t.co/UwvZV3fucy +06/18/2018,Politicians,@MarkWarner,"This is just heartbreaking. End #FamilySeparation now. +https://t.co/i15e5LIggL" +06/18/2018,Politicians,@MarkWarner,"Correct. +https://t.co/2wHikJPU39" +06/18/2018,Politicians,@MarkWarner,Facts matter. Alliances matter. The way the President of the United States conducts himself on the world stage matt… https://t.co/hM7c46P8wk +06/18/2018,Politicians,@MarkWarner,"RT @BobbyScott: .@realDonaldTrump and @SecNielsen say their family separation policies are required by law. Those claims are false. +https:…" +06/18/2018,Politicians,@MarkWarner,"RT @LoopEmma: U.S. lawmakers -- specifically, @SenTomCotton & @MarkWarner -- warn Canada about Chinese telecom giant Huawei /via @globeandm…" +06/18/2018,Politicians,@MarkWarner,"And currently, everyone else is arguing that the Trump Administration’s #FamilySeparation policy: +- Is cruel +- Is i… https://t.co/4SWvWwM7K0" +06/18/2018,Politicians,@MarkWarner,"RT @laurawbush: I live in a border state. I appreciate the need to enforce and protect our international boundaries, but this zero-toleranc…" +06/18/2018,Politicians,@MarkWarner,“Callous” — adjective — showing or having an insensitive and cruel disregard for others. https://t.co/OWdvu9JtsG +06/18/2018,Politicians,@MarkWarner,"Opioid overdoses are now the leading cause of accidental death in Virginia, surpassing car accidents and gun violen… https://t.co/9xAYfFpYv4" +06/16/2018,Politicians,@MarkWarner,Another reason the President's trade war is a terrible idea: it's going to raise the price of cans for Virginia's b… https://t.co/5CLRvPGd6s +06/15/2018,Politicians,@MarkWarner,"RT @LevarStoney: Privileged to have joined @MarkWarner, @VVforDelegate, and @SpanbergerVA07 this morning to wish peace and prosperity to AL…" +06/15/2018,Politicians,@MarkWarner,We shouldn't be trying to balance the budget on the backs of federal workers. Targeting public servants might seem… https://t.co/ibd25fKeZy +06/15/2018,Politicians,@MarkWarner,RT @SenDougJones: It’s appalling to me that someone could use the Bible to justify tearing children away from their families. This @TheJust… +06/15/2018,Politicians,@MarkWarner,It was an honor to start my morning with members of the Muslim Community of Greater Richmond to celebrate Eid al-Fi… https://t.co/TtcCX0bdir +06/14/2018,Politicians,@MarkWarner,"Fact: the Trump Administration is trying to take away protections for people with pre-existing conditions. +https://t.co/b6JPd8clQX" +06/14/2018,Politicians,@MarkWarner,"It’s important to remember today that President Trump has already said, on camera, why he fired James Comey – to st… https://t.co/5rRgtWgoY1" +06/14/2018,Politicians,@MarkWarner,"The President will surely attempt to use this to discredit the ongoing criminal investigation into his campaign, so… https://t.co/D0hzvBL32G" +06/14/2018,Politicians,@MarkWarner,The release of this Inspector General report confirms what has been clear for some time: though FBI leadership made… https://t.co/m9Ux5xht4z +06/14/2018,Politicians,@MarkWarner,"RT @HStory_News: In honor of Flag Day, nearly 1,400 flags are flying in a field in @cityofdanville - This is the fourth year for the Field…" +06/14/2018,Politicians,@MarkWarner,"“Anyone who just thinks this is just impacting the 12 to 15 million individuals with individual coverage is wrong.” +https://t.co/iGz5PifjBv" +06/14/2018,Politicians,@MarkWarner,Grateful today and every day for the soldiers in Virginia and around the world who keep us safe. #ArmyBday https://t.co/NBV0iFF3rI +06/14/2018,Politicians,@MarkWarner,RT @ACLUVA: We commend Sens. @timkaine and @MarkWarner for standing with @SenFeinstein to oppose the Trump administration's inhumane practi… +06/13/2018,Politicians,@MarkWarner,This is a disgrace. https://t.co/Vn8fl7W5xK +06/13/2018,Politicians,@MarkWarner,RT @TerryMcAuliffe: Virginia....we got the Cup!! #ALLCAPS https://t.co/IdmmvI12a7 +06/13/2018,Politicians,@MarkWarner,The DMV Is #ALLCAPS https://t.co/j00Niq57BU +06/13/2018,Politicians,@MarkWarner,"This isn’t toughness. This isn’t strength. It’s cruelty, and our country shouldn’t treat anyone this way, whether t… https://t.co/sL4jMDDMKT" +06/13/2018,Politicians,@MarkWarner,"If we’re going to address the mounting changes to the nature of work, we need to invest in human capital.… https://t.co/TjDcM9M24h" +06/13/2018,Politicians,@MarkWarner,"Robots aren’t going to take all our jobs, but they will change the skills needed to succeed. We need to rethink our… https://t.co/hEqRHRhzXT" +06/13/2018,Politicians,@MarkWarner,Update: We achieved our (sorry for this) GOOOOOOOOOOOOOOOOOOOAL. https://t.co/lU9pa9rMoq +06/13/2018,Politicians,@MarkWarner,America didn’t become leader of the free world by alienating our allies and cozying up to despots. https://t.co/iDlpkgRUfn +06/13/2018,Politicians,@MarkWarner,"Checks and balances. Both parties agree this ZTE deal is a bad deal, and we’re not going to let the Administration… https://t.co/RJ7M9YO8om" +06/13/2018,Politicians,@MarkWarner,"Four fallen Americans, whose names we'll never know, were honored today at the CIA. It's a reminder of how many oth… https://t.co/Cme3NjRRBC" +06/12/2018,Politicians,@MarkWarner,This @Capitals fan is celebrating the #CapitalsParade from the Capitol and not even @SenSchumer is going to stop m… https://t.co/7FYFbm51r0 +06/12/2018,Politicians,@MarkWarner,"Diplomacy is the most viable option for pursuing the dismantlement of North Korea’s nuclear program, but whether th… https://t.co/DhaUz2adKm" +06/12/2018,Politicians,@MarkWarner,"It’s clear that Kim Jong-un walked away from Singapore with exactly what he wanted – the pomp, circumstance and pre… https://t.co/jKSYysh2ii" +06/11/2018,Politicians,@MarkWarner,"We cannot go back to a time when you could be denied coverage or charged extra because of a pre-existing condition. +https://t.co/bx9t3SzqLl" +06/11/2018,Politicians,@MarkWarner,"RT @McFaul: If Trump can’t negotiate a deal on milk with one of our closest allies, how is he going to get a deal on nuclear disarmament wi…" +06/11/2018,Politicians,@MarkWarner,"What was the point of going to the G7, insulting our closest allies, and flying off without a deal?" +06/11/2018,Politicians,@MarkWarner,RT @GovernorVA: We can't go back to denying people with preexisting conditions access to the care they need. I'm glad @AGMarkHerring is joi… +06/11/2018,Politicians,@MarkWarner,This is the future that Putin wants. https://t.co/FvGIiWhMrC +06/11/2018,Politicians,@MarkWarner,"'The first few nights, he cried himself to sleep. Then it turned into “just moaning and moaning.”'… https://t.co/Z0rpI5owYs" +06/08/2018,Politicians,@MarkWarner,"RT @ASlavitt: BREAKING: The biggest health care news of the year. + +The Trump DOJ tonight just told the courts to dismantle pre-existing con…" +06/08/2018,Politicians,@MarkWarner,"RT @RepMarcyKaptur: Our bipartisan effort to bolster aeronautics research now has a Senate companion bill, thanks to @markwarner & @JerryMo…" +06/08/2018,Politicians,@MarkWarner,"‘Since his arrival in Michigan, family members said, a day has not gone by when the boy has failed to ask in Spanis… https://t.co/N6UT5K7cDS" +06/08/2018,Politicians,@MarkWarner,RT @AspenFutureWork: Today's new @bls_gov data reflects ongoing changes to U.S. work arrangements. While #CWSdata shows long term stability… +06/08/2018,Politicians,@MarkWarner,Russia is not our friend. +06/08/2018,Politicians,@MarkWarner,Terrible. More Trump Administration sabotage of the health insurance that millions of families rely on. This time i… https://t.co/0TCQM85Rx8 +06/07/2018,Politicians,@MarkWarner,"We all want the President to succeed in reaching a peace deal, but this is frankly pretty concerning. Any agreement… https://t.co/kLKtWaV8kh" +06/07/2018,Politicians,@MarkWarner,"RT @SenGillibrand: The #EqualPayAct was passed 55 years ago, but the pay gap still exists. Gender or race should never impact your paycheck…" +06/07/2018,Politicians,@MarkWarner,The American people overwhelmingly oppose the Trump Administration’s plan to repeal #NetNeutrality. It’s been three… https://t.co/VeSQoiI5Jb +06/07/2018,Politicians,@MarkWarner,"RT @RepTimRyan: Once more, @realDonaldTrump got rolled by China. He’s making us less safe, less secure, less competitive. https://t.co/Od7a…" +06/07/2018,Politicians,@MarkWarner,This is serious. Americans deserve to know that their private data and our national security are not being compromi… https://t.co/MC5ROgFVZX +06/07/2018,Politicians,@MarkWarner,This is a great day for Virginia. Thank you @GovernorVa and to all of the Democrats and Republicans who did the rig… https://t.co/XAKfykW9c3 +06/07/2018,Politicians,@MarkWarner,RT @jimsciutto: So a “compliance team” will somehow turn ZTE from the Chinese intelligence arm it is into a friendly trading partner. https… +06/07/2018,Politicians,@MarkWarner,Couldn’t agree more. Quarterly earnings guidance too often creates a focus on short-term profits when companies sho… https://t.co/U8cgvvc4sr +06/07/2018,Politicians,@MarkWarner,RT @SaraEisen: We discuss. see you at 1 @PowerLunch @MarkWarner https://t.co/BsWnL1ouZB +06/07/2018,Politicians,@MarkWarner,"Rule of law? For six years, Ecuador has harbored Julian Assange, a fugitive who’s endangered countless American liv… https://t.co/u0Sh9zuAZV" +06/07/2018,Politicians,@MarkWarner,"This idea of “embedding a compliance team” at ZTE is a nice talking point, but unless the Trump Administration plan… https://t.co/p0GM72SAGz" +06/07/2018,Politicians,@MarkWarner,"RT @CNNSotu: #TBT: Amid reports that ZTE will pay the United States a $1 billion fine and put $400 million in an escrow account, check out…" +06/06/2018,Politicians,@MarkWarner,"I guess this is great for Wall Street, but it does squat for American workers. Another broken promise of the GOP ta… https://t.co/morb0ghdsl" +06/06/2018,Politicians,@MarkWarner,RT @clairecmc: Seriously. Unbelievable. https://t.co/lokUtwtkBq +06/06/2018,Politicians,@MarkWarner,"Instead, the President should focus on building international coalitions to hold bad actors accountable and protect American workers." +06/06/2018,Politicians,@MarkWarner,"Look, we should hold China accountable for unfair trade practices, and I support strong rules to protect American w… https://t.co/DpHFlWZw8p" +06/06/2018,Politicians,@MarkWarner,RT @SenatorBurr: Today we honor the brave heroes who fought in #DDay 74 years ago. Those who sacrificed their lives that day were part of a… +06/06/2018,Politicians,@MarkWarner,"RT @SenTinaSmith: When women are empowered to contribute, we all benefit. We’re seeing it more and more here in the Senate. And I’m proud t…" +06/06/2018,Politicians,@MarkWarner,"I pushed hard to get this study organized, funded, and asking the right questions. Looking forward to tomorrow’s re… https://t.co/LboOGrTx6i" +06/06/2018,Politicians,@MarkWarner,RT @SenatorBaldwin: The Trump Administration’s sabotage on our health care system is making things worse and raising health care premiums.… +06/06/2018,Politicians,@MarkWarner,Today is a somber reminder of the incredible bravery of those who landed on the beaches of Normandy and behind enem… https://t.co/4tQAu1rbuR +06/06/2018,Politicians,@MarkWarner,"No American town sacrificed more that day, and today Bedford is home to the National D-Day Memorial, commemorating… https://t.co/UkjHJnhqt5" +06/06/2018,Politicians,@MarkWarner,"On #DDay74, I’m thinking about Bedford, Va which sent 34 young Virginians into battle on #DDay. That day, 19 of the… https://t.co/apl0QYJ6jx" +06/06/2018,Politicians,@MarkWarner,"If we can get this bipartisan, job-creating #hemp bill signed into law, it will be a big win for Virginia’s ag indu… https://t.co/1nhz2pJITh" +06/05/2018,Politicians,@MarkWarner,"We need answers from Facebook. The whole story, now, not six months from now. https://t.co/I7xsM8mvj4" +06/05/2018,Politicians,@MarkWarner,"Huge mistake. ZTE poses a threat to our national security, and that’s not just my opinion. It’s the unanimous concl… https://t.co/juLEJEYnZv" +06/05/2018,Politicians,@MarkWarner,"This is immoral: +https://t.co/rRDRFPp91a" +06/05/2018,Politicians,@MarkWarner,RT @SenatorDurbin: Facts matter. https://t.co/fRasf0yHDE +06/05/2018,Politicians,@MarkWarner,"RT @FairfaxJustin: Freedom to Rise: June 5, 1798. Exactly 220 years ago today, Simon Fairfax was freed from slavery in Virginia. Today, h…" +06/05/2018,Politicians,@MarkWarner,"RT @axios: Trump tweeted this morning incorrectly claiming that separating undocumented children from their parents stems from a ""law"" pass…" +06/05/2018,Politicians,@MarkWarner,Why is the President talking about pardoning himself if he has nothing to hide? +06/05/2018,Politicians,@MarkWarner,"This is a gut punch to Virginia farmers, who exported more than $68 million in pork to Mexico last year. The Presi… https://t.co/o9T2M0w30U" +06/04/2018,Politicians,@MarkWarner,"Here’s an idea: don’t start a trade war with our allies and raise the price of beer: +https://t.co/jzLWfwcFNo" +06/04/2018,Politicians,@MarkWarner,Remember when we were told the GOP tax cuts were going to the middle class? Remember when we were told companies wo… https://t.co/xaVSEvTd22 +06/04/2018,Politicians,@MarkWarner,Let’s just forget the politics for a minute and think about these kids. Whatever you think about our broken immigra… https://t.co/Vd4upCpXzA +06/04/2018,Politicians,@MarkWarner,"This just isn’t true, but it says a lot about how the President views the powers of his office. The President is in… https://t.co/V0W8nEkAXq" +06/01/2018,Politicians,@MarkWarner,"I can’t stress this enough. Eliminating the top White House cybersecurity official is a tremendously bad idea. +https://t.co/jcDQB4BAkE" +06/01/2018,Politicians,@MarkWarner,"RT @HouseNewDems: #NewDems released Closing the Skills and Opportunity Gaps, the first in a series reports focused on expanding opportuniti…" +05/31/2018,Politicians,@MarkWarner,The President’s ad hoc use of the pardon power is concerning enough. But the possibility that he may also be sendin… https://t.co/r4zVNQDpYX +05/31/2018,Politicians,@MarkWarner,"This has been nonsense from day one, and I think everyone recognizes that now. Unfortunately, you can’t just undo t… https://t.co/qen1TSdvX7" +05/31/2018,Politicians,@MarkWarner,"If a deal is too good to be true, there may be a reason for it. The President needs to get smart about ZTE before t… https://t.co/RlgY4oIRPi" +05/31/2018,Politicians,@MarkWarner,"Are robots going to take all the jobs? No, but automation will mean that learning new skills throughout your career… https://t.co/hnV3GWQJ70" +05/30/2018,Politicians,@MarkWarner,"RT @Recode: Sen. @MarkWarner: In tech, Chinese companies are operating in a different rule book than us. It is a government that will force…" +05/30/2018,Politicians,@MarkWarner,"@GovernorVA and supporters of #Medicaid expansion should be proud of this bipartisan achievement, but the real winn… https://t.co/CowggQbNSr" +05/30/2018,Politicians,@MarkWarner,I’m thrilled that partisan politics will no longer stand in the way of thousands of Virginia families getting the h… https://t.co/Ni6GA0whNR +05/30/2018,Politicians,@MarkWarner,RT @SenJohnMcCain: Must-read by my friend @GrantWoods in @USATODAY https://t.co/bzeq1XUBEk +05/30/2018,Politicians,@MarkWarner,"RT @MarkWarner: Read this. We’ve got Virginians who can’t afford insurance, even though they’ve got a job. We’ve got folks who are too sick…" +05/30/2018,Politicians,@MarkWarner,"Outdated regulations banning hemp are holding back Virginia farmers, for no good reason. @TimKaine and I are sponso… https://t.co/DW0aC4wZ4N" +05/29/2018,Politicians,@MarkWarner,"When criminals pushing synthetic opioids change their formulas, our laws have to keep up. This bipartisan bill will… https://t.co/gZWlS8Y8RI" +05/29/2018,Politicians,@MarkWarner,"Read this. We’ve got Virginians who can’t afford insurance, even though they’ve got a job. We’ve got folks who are… https://t.co/q3D7o5kdX5" +05/28/2018,Politicians,@MarkWarner,"I hope we can all take some time today to remember the servicemembers who have made the ultimate sacrifice, leaving… https://t.co/vFCFmaVwZs" +05/26/2018,Politicians,@MarkWarner,"RT @virginiavfw: Big thanks to .@MarkWarner and @timkaine for their YES vote on #VAMissionAct! The improvement of care, expansion of Caregi…" +05/26/2018,Politicians,@MarkWarner,"This would be a big mistake. President Trump should listen to the advice of his intelligence leaders, who have unan… https://t.co/HRUWY7mMEX" +05/24/2018,Politicians,@MarkWarner,"For the record, the President’s Chief of Staff and his attorney in an ongoing criminal investigation into the Presi… https://t.co/FaGbqo8g6K" +05/24/2018,Politicians,@MarkWarner,Big step in the right direction – and I’m glad Facebook followed through on my recommendations to improve upon earl… https://t.co/GmS0BRKvaf +05/24/2018,Politicians,@MarkWarner,"If there is a clear and compelling need to brief Congress on sensitive intelligence matters, it should be handled through the Gang of Eight." +05/24/2018,Politicians,@MarkWarner,The Gang of Eight exists in custom and in law to ensure that Congress can oversee intelligence matters without putt… https://t.co/AuL28k3cEI +05/24/2018,Politicians,@MarkWarner,They will also be sending a terrible message to anyone who works in or with our nation’s intelligence community tha… https://t.co/fbvGMrPM4G +05/24/2018,Politicians,@MarkWarner,"If they insist upon carrying out this farce, the White House and its Republican allies in the House will do permane… https://t.co/tkU9PswSpJ" +05/24/2018,Politicians,@MarkWarner,The White House’s plan to provide a separate briefing for their political allies demonstrates that their interest i… https://t.co/RyGzu85cIx +05/24/2018,Politicians,@MarkWarner,RT @ThirdWayKessler: Trump’s health care sabotage surcharge. https://t.co/2Nm4HVIZeB +05/24/2018,Politicians,@MarkWarner,"RT @SenatorDurbin: Right now, you can still apply to renew your #DACA. If you meet the requirements to apply for DACA renewal, you should a…" +05/23/2018,Politicians,@MarkWarner,This bill is an important step to getting veterans the healthcare they deserve more quickly and easily by providing… https://t.co/GdncIKicny +05/23/2018,Politicians,@MarkWarner,"CBO: Premiums up 15% next year, largely due to Trump Administration sabotage of the health insurance market. This i… https://t.co/Qo7DEMFGX2" +05/23/2018,Politicians,@MarkWarner,The unfortunate consequence of baseless attacks on the men and women who keep us safe. https://t.co/WKVjXV9F3S +05/23/2018,Politicians,@MarkWarner,RT @GovernorVA: Take a minute and read the stories of three Virginians whose lives would be changed if they could get the care they need to… +05/23/2018,Politicians,@MarkWarner,"The problem isn’t just that the President is smearing federal law enforcement as the “criminal deep state,” whateve… https://t.co/bz0tSDh423" +05/22/2018,Politicians,@MarkWarner,"20 years ago today, the Senate held its first #cybersecurity hearing w/ members of the L0pht hacker collective. Tod… https://t.co/oBC01LQp7F" +05/22/2018,Politicians,@MarkWarner,"Wow. The Trump Administration’s sabotage of the healthcare market could cost Virginia families an average of $1,312… https://t.co/4uIPyblytW" +05/22/2018,Politicians,@MarkWarner,The idea that this is all some sort of plot to take down the President is completely contradicted by every known fa… https://t.co/J4FT99POaD +05/22/2018,Politicians,@MarkWarner,Page ii https://t.co/0i5oPheE6y +05/22/2018,Politicians,@MarkWarner,".@SecNielsen, you’re our front line of defense against the Russian cyber threat. Please read the ICA report. Its co… https://t.co/7CY1TbOObm" +05/22/2018,Politicians,@MarkWarner,"RT @ACLUVA: We thank Sens. @timkaine and @MarkWarner, as well as Reps @RepMcEachin @BobbyScott @GerryConnolly for speaking out against the…" +05/20/2018,Politicians,@MarkWarner,RT @CNNSotu: .@MarkWarner to @jaketapper: Illegal to reveal classified FBI source info https://t.co/DqE7F9C19y #CNNSOTU +05/20/2018,Politicians,@MarkWarner,RT @FaceTheNation: Sen. @MarkWarner: I have no information that would indicate that @realDonaldTrump’s tweets are based in truth. +05/20/2018,Politicians,@MarkWarner,"RT @ryanstruyk: .@MarkWarner to @jaketapper: ""If any individual, elected official or otherwise, knowingly reveals a classified piece of inf…" +05/18/2018,Politicians,@MarkWarner,Anyone who is entrusted with our nation’s highest secrets should act with the gravity and seriousness of purpose that knowledge deserves. +05/18/2018,Politicians,@MarkWarner,"It would be at best irresponsible, and at worst potentially illegal, for members of Congress to use their positions… https://t.co/Sb6PEK2FGr" +05/18/2018,Politicians,@MarkWarner,"Publicly outing a source risks not only their life, but the lives of every American, because when sources are burne… https://t.co/MgKHa7xGOz" +05/18/2018,Politicians,@MarkWarner,The first thing any new member of the Intelligence Committee learns is the critical importance of protecting sources and methods. +05/18/2018,Politicians,@MarkWarner,Everyone needs to pay attention to this. This is not ok. Here's why: https://t.co/eOj0j2SO6W +06/30/2018,Politicians,@johnrobertsFox,@sleepygirl504 @OmniHomestead @KyraPhillips @PressSec @realDonaldTrump “Q clearance” is a DOE designation +06/30/2018,Politicians,@johnrobertsFox,@mollysmom506 @OmniHomestead @KyraPhillips No +06/30/2018,Politicians,@johnrobertsFox,At the Cascades course at The ⁦@OmniHomestead⁩ with golf legend J.C. Snead and my fabulous wife ⁦@KyraPhillips⁩ https://t.co/2iPW6S7Qrw +06/30/2018,Politicians,@johnrobertsFox,I came to ⁦@OmniHomestead⁩ for a quick getaway. There is no getting away... 😂 https://t.co/aaOTQ7tWOX +06/29/2018,Politicians,@johnrobertsFox,@FictionalFacts2 @maggieNYT @realDonaldTrump Shame on me? At least I am not a trollbot +06/29/2018,Politicians,@johnrobertsFox,@realDonaldTrump to name SCOTUS nominee on July 9th. Interviewing 6 or 7 candidates - including two women - from wh… https://t.co/sEaMurRpN8 +06/29/2018,Politicians,@johnrobertsFox,Reports that the suspect in the Annapolis shooting had a long-running feud with the paper that dates back to 2011 +06/28/2018,Politicians,@johnrobertsFox,Friends of @WhiteHouse COS John Kelly tell me that he has no plans to leave the White House-hasn't even talked abou… https://t.co/T1Ak4Eq6V3 +06/28/2018,Politicians,@johnrobertsFox,".@realDonaldTrump / Putin summit will be Monday July 16th in Helsinki, Finland" +06/28/2018,Politicians,@johnrobertsFox,"White House and Kremlin have settled on Helsinki, Finland as the location for the @realDonaldTrump - Putin summit.… https://t.co/Ni7FHHl7YW" +06/27/2018,Politicians,@johnrobertsFox,Former @FoxNews co-president Bill Shine will take on a senior communications role for @realDonaldTrump at the… https://t.co/5oe9v2BnmF +06/27/2018,Politicians,@johnrobertsFox,"With Justice Kennedy's retirement, @realDonaldTrump will have the opportunity to cement a 5-4 conservative majority… https://t.co/gEx7puTQJo" +06/27/2018,Politicians,@johnrobertsFox,.@realDonaldTrump gets another SCOTUS pick. Justice Anthony Kennedy just announced his retirement +06/27/2018,Politicians,@johnrobertsFox,SCOOP: Former @FoxNews co-president Bill Shine is in final talks with @realDonaldTrump about becoming @WhiteHouse… https://t.co/paY2BimAp6 +06/27/2018,Politicians,@johnrobertsFox,SCOOP: WH announcement of @realDonaldTrump - Putin summit may come today. +06/27/2018,Politicians,@johnrobertsFox,BREAKING: Expect @realDonaldTrump will announce date/location for Putin summit tomorrow +06/27/2018,Politicians,@johnrobertsFox,"@TruthHonestly8 @sobidey @jonathanvswan @PressSec @SecretService According to Sanders, she tweeted about it in resp… https://t.co/UZQUwYyeUa" +06/27/2018,Politicians,@johnrobertsFox,"In a sign of just how divided this nation has become, Sarah Sanders will become the first @PressSec I can ever reca… https://t.co/JiwGd4TTaY" +06/26/2018,Politicians,@johnrobertsFox,".@cnn showing bug that reads ""soon on CNN - White House Briefing"" Note to @FoxNews viewers. There is no briefing today." +06/25/2018,Politicians,@johnrobertsFox,"After @PressSec experience at @RedHenLex , I'm wondering which candidate will be first to co-opt the @BarackObama s… https://t.co/zNGSHHypmI" +06/22/2018,Politicians,@johnrobertsFox,@AprilWhymark @realDonaldTrump @Kevin_Faulconer I reported all those stories too. Clearly you are spending more ti… https://t.co/kMZCU7MFT3 +06/22/2018,Politicians,@johnrobertsFox,Oops... @realDonaldTrump slams San Diego Mayor @Kevin_Faulconer for warning illegal immigrants about raids. It was… https://t.co/qZ1jACqyA2 +06/21/2018,Politicians,@johnrobertsFox,Everyone at @FoxNews is saddened to report that our dear friend - a giant of our industry- Charles Krauthammer has passed away. +06/20/2018,Politicians,@johnrobertsFox,"@wistbro @BarackObama @realDonaldTrump If you were to appeal it, it would go to the 9th Circuit. And if THEY overt… https://t.co/yeY0X8YdWp" +06/20/2018,Politicians,@johnrobertsFox,@Bfklin @BarackObama @realDonaldTrump Congress +06/20/2018,Politicians,@johnrobertsFox,If an @BarackObama -appointed judge who told President Obama he couldn't detain children indefinitely reverses cour… https://t.co/fO40cufSli +06/20/2018,Politicians,@johnrobertsFox,"@MarieNoel45 @realDonaldTrump She is a District Judge in the Central District of California, which is covered by th… https://t.co/w5mbrZBpC8" +06/20/2018,Politicians,@johnrobertsFox,Whether or not @realDonaldTrump Executive Order goes forward depends on whether CA Judge Dolly Gee modifies her 201… https://t.co/t8e73aaoJh +06/20/2018,Politicians,@johnrobertsFox,@JenniferTambly1 You could always try @Google https://t.co/MFgxUDU6bt +06/20/2018,Politicians,@johnrobertsFox,"CA District Judge Dolly Gee orders children in border detention released - citing ""widespread deplorable conditions… https://t.co/ZPQTZ3Gab8" +06/20/2018,Politicians,@johnrobertsFox,Just wondering if @disneystudios @starwars Solo would have fared better if Chris Pine was chosen for the lead. He… https://t.co/JwNVGglJIS +06/20/2018,Politicians,@johnrobertsFox,".@realDonaldTrump says he is ""canceling and postponing"" the Congressional picnic....which I guess means tomorrow's… https://t.co/Z9yAc6X9cO" +06/20/2018,Politicians,@johnrobertsFox,.@realDonaldTrump cancelled the Congressional picnic moments after the WH catering staff had finished pre-cooking h… https://t.co/vmOrbi8ySO +06/20/2018,Politicians,@johnrobertsFox,".@realDonaldTrump cancels tomorrow's Congressional Picnic - saying to hold it ""just didn't feel right to me."" The… https://t.co/xLZetjWghc" +06/20/2018,Politicians,@johnrobertsFox,EXCLUSIVE: And now another potential track - sources tell @FoxNews that @SecNielsen is encouraging… https://t.co/CT0Bmre2a8 +06/20/2018,Politicians,@johnrobertsFox,EXCLUSIVE: @realDonaldTrump considering some sort of executive action today to allow children to stay with detaine… https://t.co/R9TU8AkfYx +06/18/2018,Politicians,@johnrobertsFox,.@realDonaldTrump directs Gen. Dunford to create a 6th branch of the military - THE SPACE FORCE +06/18/2018,Politicians,@johnrobertsFox,@mlwelch31 Where are the salmon shorts?? +06/17/2018,Politicians,@johnrobertsFox,I also do windows https://t.co/zv3Naj4Adb +06/12/2018,Politicians,@johnrobertsFox,@kristlucky13 yup +06/12/2018,Politicians,@johnrobertsFox,For all those who are going down the 'potty humor' well: Oxford - poop out : to become very tired We worked all mo… https://t.co/ucWds9dboH +06/12/2018,Politicians,@johnrobertsFox,@SeppMeyer2 @kristincbrown @pjkellyct Lies around on the floor.....clearly.... +06/12/2018,Politicians,@johnrobertsFox,@pjkellyct @kristincbrown It’s in Singapore. It’s as clean as a freshly-laundered sheet. +06/12/2018,Politicians,@johnrobertsFox,@RJancys @kristincbrown Keep her awake for 48 hours straight. +06/12/2018,Politicians,@johnrobertsFox,"After 72 hours in country, I finally pooped out producer ⁦@kristincbrown⁩ https://t.co/VhyM5J2Vfp" +06/12/2018,Politicians,@johnrobertsFox,Great seat for ⁦@realDonaldTrump⁩ news conference. Right behind ⁦@SecPompeo⁩ and COS Kelly https://t.co/buREVpiz02 +06/12/2018,Politicians,@johnrobertsFox,"If you zoom in - and you have young eyes, you can read the entire statement signed by @RealDonaldTrump and Kim Jong… https://t.co/mMOKlkLMID" +06/12/2018,Politicians,@johnrobertsFox,The band is back together again!!! ⁦@jengirdonmills⁩ https://t.co/j1G8mzUWNs +06/12/2018,Politicians,@johnrobertsFox,Oh my goodness. Sad news.... https://t.co/6X1UxhwQHU +06/11/2018,Politicians,@johnrobertsFox,The one-one bilat will tell the tale of whether this is real or not. It all comes down to that. https://t.co/5VgvR77d5t +06/11/2018,Politicians,@johnrobertsFox,@DianeMarron Miami is hands down the most beautiful city in the U.S. +06/11/2018,Politicians,@johnrobertsFox,A little memento from the Singapore summit https://t.co/5ETOO3y1p0 +06/10/2018,Politicians,@johnrobertsFox,"Lots of comparisons between @JustinTrudeau and Hugh Grant in ""Love, Actually"". In the movie, Grant says it to Billy Bob Thornton's face." +06/10/2018,Politicians,@johnrobertsFox,AF-1 in Singapore as ⁦@realDonaldTrump⁩ and Kim Jong UN take a step closer to history. ⁦@KyraPhillips⁩ https://t.co/G3tB0tpoki +06/10/2018,Politicians,@johnrobertsFox,One of the more impressive things at Seoul airport was the security checkpoint. The bins disappear into the floor a… https://t.co/lU1BwxMnhr +06/10/2018,Politicians,@johnrobertsFox,It’s the little things in life.... https://t.co/pdT1UAeawi +06/10/2018,Politicians,@johnrobertsFox,"Having now been in Beijing, Seoul and Singapore in the past six months, it is like peering into the future. Much of… https://t.co/luGcwb4DoL" +06/09/2018,Politicians,@johnrobertsFox,"Well, the stakes just went up.... https://t.co/ymR1sPj4mO" +06/09/2018,Politicians,@johnrobertsFox,"RT @realDonaldTrump: Based on Justin’s false statements at his news conference, and the fact that Canada is charging massive Tariffs to our…" +06/09/2018,Politicians,@johnrobertsFox,"Oh, I forgot. Rob Ford’s brother Doug was just elected Premier of the province of Ontario. The position is roughly… https://t.co/9xuCJy5O4Q" +06/09/2018,Politicians,@johnrobertsFox,Context and perspective: @realDonaldTrump knows @JustinTrudeau approval numbers are way down - so he feels he can p… https://t.co/l5s5fspBGW +06/08/2018,Politicians,@johnrobertsFox,So sad to hear that a true hero of mine - Charles Krauthammer has only a short time left with us. Sending prayers… https://t.co/M7T8QiBBO0 +06/08/2018,Politicians,@johnrobertsFox,Stunned to hear this morning that Anthony Bourdain died by suicide in France today. +06/08/2018,Politicians,@johnrobertsFox,"By this logic, the 18,000 people who fill the Capital One Arena for every game are Russian sympathizers. https://t.co/4uR6F1uG3k" +06/07/2018,Politicians,@johnrobertsFox,"Our 7-year old son rocking it out! @KyraPhillips Kellan Drum Solo- ""Killer Kellan"" https://t.co/dujrUiJ32w via @YouTube" +06/07/2018,Politicians,@johnrobertsFox,Thanks to William Moon for the memory of today! https://t.co/hrvkWEGUmz +06/07/2018,Politicians,@johnrobertsFox,.@HallieJackson - a problem we suffer through on a daily basis https://t.co/eVDDM7iv88 +06/06/2018,Politicians,@johnrobertsFox,@dipplingdan @YouTube Just did. My bad. Oversight... +06/06/2018,Politicians,@johnrobertsFox,Credit to Frank @dipplingdan for introducing me to Three Dead Trolls. https://t.co/lndMLjk06z +06/06/2018,Politicians,@johnrobertsFox,"British citizens may have burned the White House, but Canadians proudly claim the event as their own. According to… https://t.co/md7SgYeSkp" +06/06/2018,Politicians,@johnrobertsFox,@pepperdawgie Here’s a secret.....I’m joking... +06/06/2018,Politicians,@johnrobertsFox,"@dipplingdan @JFoughty3 Ah yes, but he was buried in Halifax....which is now Canada...." +06/06/2018,Politicians,@johnrobertsFox,@mhcandrmt Except there was no White House 300 years earlier. But there was a White House 55 years later. +06/06/2018,Politicians,@johnrobertsFox,"@dipplingdan @SmithsonSheila @Acosta The operative phrase here is ""jokingly say we burnt it"". An American could al… https://t.co/83i95L06HX" +06/06/2018,Politicians,@johnrobertsFox,"Well, had it been 55 years later, it WOULD have been Canada..... https://t.co/J7oWLonjpG" +06/05/2018,Politicians,@johnrobertsFox,Looking forward to hosting the @CoastGuardFound with my amazing wife @KyraPhillips at the National Building Museum… https://t.co/P2MHq1zhOu +06/01/2018,Politicians,@johnrobertsFox,The @uscoastguard change of command is always a moving ceremony...though I wish - just once - they could pronounce… https://t.co/hbEE3bifRq +06/01/2018,Politicians,@johnrobertsFox,Double OMG.... https://t.co/Ml55nZ7o5W +06/01/2018,Politicians,@johnrobertsFox,Thank you to @kevincorke for bringing in the donuts! https://t.co/Lcje0Fu6FZ +06/01/2018,Politicians,@johnrobertsFox,OMG....this was off-the-charts delicious @AstroDoughnuts https://t.co/5AYTfynd3P +06/01/2018,Politicians,@johnrobertsFox,"In honor of #NationalDonutDay , I am about to tuck into my very first glazed bacon donut from @AstroDoughnuts !!!!!… https://t.co/a6k6afi9tt" +06/01/2018,Politicians,@johnrobertsFox,.@USCG change of command ceremony looks like a steam bath.... +06/01/2018,Politicians,@johnrobertsFox,Upbeat jobs report today - 220k jobs added in May. Unemployment at 3.8% +05/31/2018,Politicians,@johnrobertsFox,@SlippyField @realDonaldTrump @tedcruz Classic campaign moment +05/31/2018,Politicians,@johnrobertsFox,@LLCWalk @Mulfordtown @realDonaldTrump @tedcruz How quickly we forget how we got to where we are... +05/31/2018,Politicians,@johnrobertsFox,RT @iamsambee: I would like to sincerely apologize to Ivanka Trump and to my viewers for using an expletive on my show to describe her last… +05/31/2018,Politicians,@johnrobertsFox,@Mulfordtown @realDonaldTrump @tedcruz We Are The Champions - and Another One Bites The Dust come to mind... +05/31/2018,Politicians,@johnrobertsFox,"Every time I see @realDonaldTrump and @tedcruz together, I have flashbacks to the Indiana primary." +05/28/2018,Politicians,@johnrobertsFox,Quite the team!!!! https://t.co/Wq0kxt3dft +05/28/2018,Politicians,@johnrobertsFox,My fabulous wife @KyraPhillips anchoring coverage of the National Memorial Day parade with @sagesteele https://t.co/93eR2XbUdj +05/27/2018,Politicians,@johnrobertsFox,RT @realDonaldTrump: Our United States team has arrived in North Korea to make arrangements for the Summit between Kim Jong Un and myself.… +05/26/2018,Politicians,@johnrobertsFox,@lockesalterego @Alex_Guiden @realDonaldTrump Trolls live under bridges....they don't get to see much of the real w… https://t.co/YTwmD3XvI3 +05/26/2018,Politicians,@johnrobertsFox,@rwwgreene @CR_HIATT @realDonaldTrump Here’s what I can spell out in full. Blocked +05/26/2018,Politicians,@johnrobertsFox,RT @SarahHuckabee: Happy 8th anniversary to my amazing husband @sanders_bryan! Thank you for planning the perfect getaway to celebrate! htt… +05/26/2018,Politicians,@johnrobertsFox,NoKo appears to be heading toward a June 12 summit after @realDonaldTrump sent that surprise letter to Kim on Thurs… https://t.co/ieqEDRvVa0 +05/25/2018,Politicians,@johnrobertsFox,@DanRaviv I was the other John. @jonkarl +05/25/2018,Politicians,@johnrobertsFox,Trump strikes deal with China over ZTE https://t.co/ps1ayrLJos #FoxNews +05/25/2018,Politicians,@johnrobertsFox,Trump lawyers considered possible Mueller meeting at Camp David in early 2018 https://t.co/OnMh5f3zHR #FoxNews +05/24/2018,Politicians,@johnrobertsFox,Very interesting letter from @realDonaldTrump to Kim Jong Un. Flatters him and thanks him - at the same time remin… https://t.co/ujPQGIo14N +05/24/2018,Politicians,@johnrobertsFox,"Singapore summit now looking in jeopardy. North Korea either getting cold feet, or maneuvering. https://t.co/Ug38U32ebg" +05/23/2018,Politicians,@johnrobertsFox,".@realDonaldTrump tells @foxandfriends @kilmeade he's happy about the NFL owners decision, but isn't happy that… https://t.co/KyzQxBFFI6" +05/23/2018,Politicians,@johnrobertsFox,.@NFL owners vote to fine teams if players on sidelines do not stand for the national anthem. Question: will this b… https://t.co/zOQ3sc4MwC +05/23/2018,Politicians,@johnrobertsFox,@JamesRarus @KyraPhillips @InstituteForEdu @RepWillHurd @GenMhayden this was actually in the living room of the Arm… https://t.co/VOem94CKzf +05/23/2018,Politicians,@johnrobertsFox,My fabulous wife @KyraPhillips hosting a panel for the @InstituteForEdu with @RepWillHurd and Gen. MIchael Hayden… https://t.co/poRg9rBcoK +05/22/2018,Politicians,@johnrobertsFox,"Well, that was fun.....35 minute Oval Office news conference with @realDonaldTrump Lots of news on NoKo, China and the FBI informant" +05/21/2018,Politicians,@johnrobertsFox,Whoa. This is big https://t.co/vrw2lhKkGF +05/18/2018,Politicians,@johnrobertsFox,@habfan1959 @WhiteHouse 1 in 15 Canadians owns a firearm. That's about 2 million people. Yet gun violence in Cana… https://t.co/3QF9FFZ07g +05/18/2018,Politicians,@johnrobertsFox,@MN_poppy @AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews I very much shorthanded what he was… https://t.co/I34VsZupTK +05/18/2018,Politicians,@johnrobertsFox,"@habfan1959 @WhiteHouse You miss the point. Shotguns are readily available in Canada, yet there have only been 7 s… https://t.co/nxA5yLIymr" +05/18/2018,Politicians,@johnrobertsFox,@eelarson @yeschrisyes @WhiteHouse That’s an idea that may have applied in this case. But that’s not what people are loudly calling for. +05/18/2018,Politicians,@johnrobertsFox,"@AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews First of all, I was t knocking him. Just point… https://t.co/8Py2TiUpwP" +05/18/2018,Politicians,@johnrobertsFox,"@habfan1959 @WhiteHouse As I recall, it's pretty easy to buy a shotgun in Canada.....and Canada has some of the toughest gun laws anywhere." +05/18/2018,Politicians,@johnrobertsFox,@AMcCorm77526975 @WhiteHouse @davidhogg111 @AMarch4OurLives @FoxNews There is likely PLENTY that can be done. Who… https://t.co/oTuPJi0YRf +05/18/2018,Politicians,@johnrobertsFox,@glennyork @WhiteHouse Precisely +05/18/2018,Politicians,@johnrobertsFox,@SoulOnJourney11 @WhiteHouse And pipes. Don't forget pipes. +05/18/2018,Politicians,@johnrobertsFox,@yeschrisyes @WhiteHouse How simplistic. What about doing whatever is possible to make sure parents are on top of… https://t.co/R98CbcuVl3 +05/18/2018,Politicians,@johnrobertsFox,"@larkin1235 @WhiteHouse That will NEVER happen. Not now, not in a million years." +05/18/2018,Politicians,@johnrobertsFox,"@JHead1984 @WhiteHouse Illuminate one proposed gun control measure that could have prevented THIS event.... +-ban as… https://t.co/JQR93OTx59" +05/18/2018,Politicians,@johnrobertsFox,@thedailyveteran @WhiteHouse Unknown on both counts +05/18/2018,Politicians,@johnrobertsFox,"Man outside the @WhiteHouse angrily yelling into a bullhorn ""we need gun control"" in the wake of Santa Fe High shoo… https://t.co/LOehqvkhjZ" +05/18/2018,Politicians,@johnrobertsFox,@PellyRichard @realDonaldTrump Flynn was never subject to Senate confirmation - wrong comparison +05/18/2018,Politicians,@johnrobertsFox,@pjmesq12 Ronny Jackson had never been through Senate confirmation. Wilkie has. +05/18/2018,Politicians,@johnrobertsFox,Wilkie has been extensively vetted. First appointed to Pentagon by Bush 43 in 2006. Confirmed by the Senate as Unde… https://t.co/7eH0kIQFBa +05/18/2018,Politicians,@johnrobertsFox,@PellyRichard @realDonaldTrump Wilkie has been extensively vetted. First appointed and CONFIRMED AS Undersecretary… https://t.co/wZpfujLMsx +05/18/2018,Politicians,@johnrobertsFox,.@realDonaldTrump surprises Acting VA Secretary Robert Wilkie - telling him in a public event that he is going to b… https://t.co/9YqKcGWy4j +05/16/2018,Politicians,@johnrobertsFox,@shandsr84 @EricColumbus @RealFacelessMan @FoxNews @realDonaldTrump Is it illegal to be morally compromised? Becau… https://t.co/Y1P17UvWS3 +05/16/2018,Politicians,@johnrobertsFox,@IngaZorin111 @KyraPhillips You think wrong +05/16/2018,Politicians,@johnrobertsFox,When your wife is broadcasting from the live position next to you!!!! @KyraPhillips https://t.co/QgbiUH9wsS +05/16/2018,Politicians,@johnrobertsFox,@EricColumbus @RealFacelessMan @FoxNews @realDonaldTrump We must also consider the possibility that he has done not… https://t.co/U1zIIbNopi +05/16/2018,Politicians,@johnrobertsFox,"Rudy Giuliani on the Mueller probe: ""The case is essentially over. They're just in denial.""" +05/16/2018,Politicians,@johnrobertsFox,Rudy Giuliani tells @FoxNews that Robert Mueller told @realDonaldTrump legal team two weeks ago that he will abide… https://t.co/vcBjGeQ19e +05/16/2018,Politicians,@johnrobertsFox,"@pachapman1776 @FoxNews @realDonaldTrump Yes. I realize that you don't care. However, the Office of Government Et… https://t.co/1hwDmsJJVL" +05/16/2018,Politicians,@johnrobertsFox,Source tells @FoxNews that Rudy Giuliani revealed the reimbursement to Cohen because he was aware it would be repor… https://t.co/24bb4lbLrJ +05/16/2018,Politicians,@johnrobertsFox,"One potential problem for @realDonaldTrump - in letter to DepA-G Rosenstein, @OfficeGovEthics says the payment by C… https://t.co/T43afox5iJ" +05/16/2018,Politicians,@johnrobertsFox,".@realDonaldTrump including payments to Cohen on financial disclosure puts it the category of a personal ""reportabl… https://t.co/Uw88Ki0iYR" +05/16/2018,Politicians,@johnrobertsFox,"We may have discovered why Rudy Giuliani disclosed the ""reimbursement"" to Michael Cohen. It is detailed on page 45… https://t.co/M2DrKkJtMq" +05/16/2018,Politicians,@johnrobertsFox,"""We're LEAVING....!!!!!"" https://t.co/uLywtwFCpe" +05/15/2018,Politicians,@johnrobertsFox,@Kev4est @Carter77 @WhiteHouse Great memories! +05/15/2018,Politicians,@johnrobertsFox,@BHefti @KyraPhillips Amen to that! +05/13/2018,Politicians,@johnrobertsFox,"Happy Mother’s Day to @KyraPhillips my fabulous wife and spectacular mom to our children!!!! Love you, you amazing woman and mom!!!" +05/11/2018,Politicians,@johnrobertsFox,@takerealrisks tomorrow +05/11/2018,Politicians,@johnrobertsFox,"Correction: the cabinet meeting was Wednesday. In the hectic pace of this White House, it seems that there are tw… https://t.co/jlI5tCzjOV" +05/11/2018,Politicians,@johnrobertsFox,SCOOP - @WhiteHouse COS John Kelly told me this afternoon that after yesterday's cabinet meeting where… https://t.co/PZezGC960p +05/10/2018,Politicians,@johnrobertsFox,"@crocodilianews or, you could just click on the tweet and hit the 'translate' button" +05/10/2018,Politicians,@johnrobertsFox,This is a very interesting statement from the Foreign Minister of Bahrain regarding Israel and its right to defend… https://t.co/RuDYvOsgXN +05/10/2018,Politicians,@johnrobertsFox,@38DannyChauncey @khamenei_ir @realDonaldTrump You sound like you are about to break into song.....! +05/09/2018,Politicians,@johnrobertsFox,.@IDFSpokesperson reports 20 rockets fired by Iran Quds force at forward IDF position in the Golan Heights. Some r… https://t.co/GvEl2Nkv1l +05/09/2018,Politicians,@johnrobertsFox,BREAKING: Nunes and Gowdy to get “classified briefing” on request for secret intelligence source who aided Mueller… https://t.co/HjigTwasoD +05/09/2018,Politicians,@johnrobertsFox,".@PressSec makes it official. NO infrastructure bill this year. No shiny new bridges, glistening new rails or smooth new roads" +05/09/2018,Politicians,@johnrobertsFox,"So.....if the Ayatollah @khamenei_ir trolls @realDonaldTrump , does that make him an Ayatrollah?" +05/07/2018,Politicians,@johnrobertsFox,RT @KyraPhillips: As Medal of Honor recipients listen @DeptVetAffairs Acting Sec Wilkie lifts up @FisherHouseFdtn and how it’s expresses th… +05/07/2018,Politicians,@johnrobertsFox,Acting @DeptVetAffairs Secretary Robert Wilkie speaking to the @FisherHouseFdtn crowd today. MOH recipient Sgt. Bob… https://t.co/DgrBgBWimL +05/07/2018,Politicians,@johnrobertsFox,With another one of our American heroes COL. Barney Barnum MOH recipient at the @FisherHouseFdtn Golf Classic! https://t.co/T5RRAhdiBR +05/07/2018,Politicians,@johnrobertsFox,American hero Bob Patterson getting set to tee it up for @FisherHouseFdtn https://t.co/mXxNXt24Cu +05/07/2018,Politicians,@johnrobertsFox,RT @KyraPhillips: Please retweet this pic and #causecontainer because every retweet means more money for @FisherHouseFdtn Love our VETS!!!… +05/07/2018,Politicians,@johnrobertsFox,Retweet this and @FisherHouseFdtn will receive $1 donation from the Hub Group for each retweet!!! Support our brave… https://t.co/d4hvMa01bY +05/04/2018,Politicians,@johnrobertsFox,"@LIzGordonMartin @VP Sadly, Politics has become a zero sum game. No one can win unless someone else loses." +05/04/2018,Politicians,@johnrobertsFox,.@VP Pence personal physician Jennifer Pena is resigning from the White House Medical Unit. Sources say she had lo… https://t.co/FoUAAC7QLr +05/04/2018,Politicians,@johnrobertsFox,Spent Wednesday night On The Road To Utopia! Best bargain in music - on a notes-per-dollar basis!!! Fabulous show… https://t.co/AC7ouQDKsd +05/03/2018,Politicians,@johnrobertsFox,@LMDB05 @FoxNews @FoxBusiness Better to get it right than to be first and get it wrong! +05/03/2018,Politicians,@johnrobertsFox,@SuzanneKelleher I might point out that even the network that got the original story wrong is now saying what Fox is. +05/03/2018,Politicians,@johnrobertsFox,@ccowley57 No. Not listened to either.. +05/03/2018,Politicians,@johnrobertsFox,@rhainman You need to stay up on the news Steve-o....... The NEW development is that Cohen' phones were NOT tapped… https://t.co/nedIRwvhpI +05/03/2018,Politicians,@johnrobertsFox,Jake's a great producer. Always goes the extra mile to make sure the reporting is accurate! https://t.co/oSJQjgzRQF +05/03/2018,Politicians,@johnrobertsFox,"Sources tell @FoxNews Michael Cohen's phones were not tapped - calls not recorded. Investigators used a ""pen regis… https://t.co/IwxZSFlIsh" +05/03/2018,Politicians,@johnrobertsFox,"RT @tribelaw: To get a warrant to wiretap Michael Cohen’s phone conversations, the FBI had to comply with highly stringent rules and standa…" +05/03/2018,Politicians,@johnrobertsFox,RT @KSulton: Thank you Washington DC for another great show and thank you Danny Chauncey for making the trek here to see it....🙏🙏@38DannyCh… +05/03/2018,Politicians,@johnrobertsFox,"Rudy Giuliani told me that while @realDonaldTrump reimbursed Cohen for the $130k SD payment, POTUS didn’t know what… https://t.co/vDJZiKdEwG" +05/03/2018,Politicians,@johnrobertsFox,Todd Rundgren and Utopia rocking the Warner in DC! https://t.co/YT9Ivb9IpW +05/03/2018,Politicians,@johnrobertsFox,.@kyraphillips and me On Pennsylvania Ave with great friends @38DannyChauncey and Kelly - ahead of the Utopia conce… https://t.co/BRNeBqOlAX +05/02/2018,Politicians,@johnrobertsFox,"Giuliani says Mueller team 'desperate' to make a case, lays out terms for possible Trump interview https://t.co/sKr5sF1oAI #FoxNews" +05/02/2018,Politicians,@johnrobertsFox,Some of the more pithy quotes from @FoxNews interview with Rudy Giuliani https://t.co/wiLao9ETPE +05/02/2018,Politicians,@johnrobertsFox,"Rudy Giuliani tells @FoxNews acceptable parameters for a @realDonaldTrump interview: ""2 hours"" ""Questions in adva… https://t.co/DiZcWO6TjI" +05/02/2018,Politicians,@johnrobertsFox,"Rudy Giuliani tells @FoxNews if Mueller keeps an open mind, an interview of @realDonaldTrump is ""something we'd con… https://t.co/XoqU78JKnm" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani on a possible @realDonaldTrump interview with Mueller: ""My position isn't determined yet. Are they o… https://t.co/9ik9c8Bo8h" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani On the Mueller questions ""The questions almost cry out that they don't have a case. They're despera… https://t.co/97NuLf3wG8" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani tells @FoxNews an interview with Mueller is weeks away ""if that's the direction we're going to go.… https://t.co/D8mKR3bJCR" +05/02/2018,Politicians,@johnrobertsFox,".@RudyGiuliani tells @FoxNews he fears a perjury trap in the Mueller questions. Says with NoKo summit looming, an… https://t.co/nABDVF9fLE" +05/02/2018,Politicians,@johnrobertsFox,"Lost in translation - French Pres Macron mixes up ""delightful"" and ""delicious"" https://t.co/DkFEyy71aF via @YouTube" +05/02/2018,Politicians,@johnrobertsFox,POTUS again threatens to get involved in DOJ https://t.co/Zbl0yOGakY +05/01/2018,Politicians,@johnrobertsFox,"@lawdawgseven @Joan1Barb @realDonaldTrump No, my wife does not work for CNN" +05/01/2018,Politicians,@johnrobertsFox,Questions that Robert Mueller wants to ask @realDonaldTrump. https://t.co/O4Dof09PGx +04/30/2018,Politicians,@johnrobertsFox,@Donna6499 @realDonaldTrump This was TODAY +04/30/2018,Politicians,@johnrobertsFox,@JohnCDavidson7 @realDonaldTrump Nope. Guess again... +04/30/2018,Politicians,@johnrobertsFox,@BradAlexander10 @realDonaldTrump Verify what? Kelly's statement? Kelly was the source on that. +04/30/2018,Politicians,@johnrobertsFox,@StandForTrump2 @realDonaldTrump It's not coming from the left. It's coming from the right. +04/30/2018,Politicians,@johnrobertsFox,@DoubleD2k15 @JamesPaine39897 @realDonaldTrump It's actually people INSIDE the White House who are trying to oust K… https://t.co/JXkdAfWf0c +04/30/2018,Politicians,@johnrobertsFox,"@LindaPHayes46 @FoxFilesFNC @realDonaldTrump This is actually a faction trying to discredit John Kelly, not Preside… https://t.co/JA5PB96Oc0" +04/30/2018,Politicians,@johnrobertsFox,@thedenyseshow @KSelvester @realDonaldTrump Not quite there yet... +04/30/2018,Politicians,@johnrobertsFox,@Joan1Barb @realDonaldTrump Because the White House is actively responding to a story it doesn't like. That makes it news. +04/30/2018,Politicians,@johnrobertsFox,@Chrisjo13267688 @mpgarza2012 @realDonaldTrump And you're not paying attention. I didn't report the story. I'm si… https://t.co/OjUlFN1GGQ +04/30/2018,Politicians,@johnrobertsFox,@KSelvester @realDonaldTrump We have a good idea.... +04/30/2018,Politicians,@johnrobertsFox,@spankdatboy @SLYUnser @realDonaldTrump Nope. It has to do with the current administration. +04/30/2018,Politicians,@johnrobertsFox,@WMWestmoreland @realDonaldTrump And therein lies the REAL story about this... +04/30/2018,Politicians,@johnrobertsFox,@Joan1Barb @realDonaldTrump You calling John Kelly's statement junk? Because that's what I am reporting.....I'm no… https://t.co/HlpC226DuL +04/30/2018,Politicians,@johnrobertsFox,@twelvenot12 @AdamShawNY @realDonaldTrump It's actually people in the WH that are doing it. +04/30/2018,Politicians,@johnrobertsFox,@DidYouMissThis1 @realDonaldTrump It's new +04/30/2018,Politicians,@johnrobertsFox,Statement from John Kelly on reports he called @realDonaldTrump an “idiot”. But Kelly has a problem...there is a… https://t.co/fA9ubOLDc5 +04/30/2018,Politicians,@johnrobertsFox,Message from outgoing @WHCA president. #WHCA https://t.co/gTYdZcuHus +04/29/2018,Politicians,@johnrobertsFox,"@PRBizMom If you check my record, I do." +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: We made it to @Burrito_Ville and man are we glad we did! Thank you all for the invite. We’re already talking about our ne… +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: Great crowd at the @SoutheastMODems Rally in Dexter! Folks are proud that @ClaireCMC’s standing up to the disastrous tari… +07/01/2018,Politicians,@clairecmc,RT @McCaskill4MO: Now this is what grassroots enthusiasm looks like. These Cape Girardeau canvassers are ready to hit the pavement and tell… +07/01/2018,Politicians,@clairecmc,"RT @McCaskill4MO: This morning @ClaireCMC joined a HUGE canvass kickoff in Arnold. It may be hot outside, but the energy coming from these…" +06/30/2018,Politicians,@clairecmc,Met so many wonderful hardworking Missourians at Mid Continent yesterday. These tariffs are putting them out of bus… https://t.co/vAqVjutTOc +06/30/2018,Politicians,@clairecmc,"Today: Arnold, Cape, Bernie, Dexter. +Monday: Rolla, Washington, Sunset Hills, St Charles +Tuesday: Arch Grand Openi… https://t.co/mRhIaXbg2f" +06/29/2018,Politicians,@clairecmc,RT @McCaskill4MO: Our Clayton coordinated field office was packed wall to wall this morning to kick off our Friday morning canvass with @Cl… +06/29/2018,Politicians,@clairecmc,RT @SenateHSGACDems: ICYMI: Ranking Member @McCaskillOffice announced that her 2015 bipartisan Federal Permitting Improvement Act has alrea… +06/29/2018,Politicians,@clairecmc,"RT @jd3217: Devastated & heartbroken. Numb. Please stop asking for information/interviews. I’m in no position to speak, just know @capgazne…" +06/29/2018,Politicians,@clairecmc,Glad we had a #TeamClaire in the house for ⁦@Tsunamy27⁩ charity bowling tournament in St Peters tonight. He does so… https://t.co/hYibIuHZ2I +06/27/2018,Politicians,@clairecmc,RT @McCaskill4MO: PTSD is a serious condition that affects 8% of Americans. That number is even higher for our brave veterans. Anyone seeki… +06/27/2018,Politicians,@clairecmc,Yes! More needed but our bill is a good first step. https://t.co/m8Gux5wRIl +06/26/2018,Politicians,@clairecmc,Why does this sound vaguely familiar? https://t.co/YYsLNnymrI +06/25/2018,Politicians,@clairecmc,My thanks to @Sen_JoeManchin. And a sore rib for a few weeks is no big deal. I play hurt. The work goes on. https://t.co/rBb0gBq32F +06/24/2018,Politicians,@clairecmc,"RT @jmannies: At Truman Dinner, @clairecmc asks everyone to stand up who has a preexisting condition. Notes GOP wants to eliminate insuranc…" +06/24/2018,Politicians,@clairecmc,Josh Hawley used Missouri taxpayer money to file this lawsuit to eliminate protections for people with preexisting… https://t.co/MWVNRSqk7e +06/23/2018,Politicians,@clairecmc,"Fighting for jobs in Poplar Bluff. These tariffs are not well thought out. Go after cheaters, not Missouri jobs. https://t.co/IB6oL3qahg" +06/18/2018,Politicians,@clairecmc,What she said. https://t.co/VwrQ9hWgof +06/18/2018,Politicians,@clairecmc,"And this shows extreme pain from trade war to our number 1 crop, soybeans. https://t.co/ZrzKPymca6" +06/18/2018,Politicians,@clairecmc,Trade war is hurting our state. And this isn’t even counting the severe damage to Missouri agriculture. https://t.co/TIM93Xqb7k +06/17/2018,Politicians,@clairecmc,@nealcarter I am joining the legislation tomorrow and am working on other ways to help end this policy and hold the… https://t.co/3yepGpu7Hs +06/17/2018,Politicians,@clairecmc,Yes. I will be on the bill and will be doing more follow up work with CPB and HHS as ranking member on Homeland Sec… https://t.co/HPJPKjOOmw +06/17/2018,Politicians,@clairecmc,To assert that you must rip children from their family to secure the border is just not true. +06/17/2018,Politicians,@clairecmc,I will be joining this bill next week to stop this outrageous administration policy and following up on my longstan… https://t.co/DKBq0UsRZx +06/16/2018,Politicians,@clairecmc,RT @McCaskill4MO: This morning members of #TeamClaire joined @ClaireCMC for the Juneteenth festivities in Kansas City! #MOSen https://t.co/… +06/16/2018,Politicians,@clairecmc,We should never forget the dangers our brave law enforcement officers face every day. Thinking of their families to… https://t.co/ORJubIhUPw +06/15/2018,Politicians,@clairecmc,RT @McCaskill4MO: The decision to drop protections for people with pre-existing conditions would be disastrous for MO’s working families. #… +06/14/2018,Politicians,@clairecmc,RT @McCaskillOffice: Happy 243rd birthday to the @USArmy – and happy birthday to the stars & stripes this #FlagDay! #ArmyBday 🇺🇸 https://t.… +06/14/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Claire: air ambulances “are currently operating in a grey area between healthcare and aviation, and have managed to no…" +06/13/2018,Politicians,@clairecmc,Productive day today. 8 of my bills moved out of committee with big bipartisan support. (4 of mine and 4 where I w… https://t.co/0qbUtkjBXB +06/13/2018,Politicians,@clairecmc,RT @McCaskillOffice: .@kmbc : “McCaskill says she wants to make sure the agency [@CBP] has the resources it needs to intercept opioids at t… +06/13/2018,Politicians,@clairecmc,And this. Why risk retaliation to Missouri Ag and claim that Canada is a threat to national security? Go after Chin… https://t.co/9AyQPP24jV +06/13/2018,Politicians,@clairecmc,This. https://t.co/3QD4HtvSJE +06/13/2018,Politicians,@clairecmc,Part of this trade surplus is our exports from Missouri farmers. Canada is the number one export market for Missour… https://t.co/F3KVOR3gwb +06/12/2018,Politicians,@clairecmc,RT @RSI: Senators @senrobportman and @clairecmc have recently released draft legislation that would help infrastructure https://t.co/4XgyOj… +06/10/2018,Politicians,@clairecmc,Just. That. Simple. https://t.co/HzCkiU8ZDu +06/10/2018,Politicians,@clairecmc,These wonderful folks don’t agree with @HawleyMO that their 4 year college degree is worthless. Thank you Lincoln a… https://t.co/4lADTHr89K +06/09/2018,Politicians,@clairecmc,RT @McCaskill4MO: Stoked to be joining @ClaireCMC for a roundtable at the @GCI1919 with @CatherineForNV! Today we’re talking about what we… +06/09/2018,Politicians,@clairecmc,Goodness gracious. Talk about a turn out! NW Mo Democrats are serious about this election. Everyone wants to make a… https://t.co/Lp5CRFBMt0 +06/09/2018,Politicians,@clairecmc,Privileged to honor thousands who were participating in 5K this am at Arrowhead to support ⁦@ShatterproofHQ⁩ This… https://t.co/fnFDdmYwzF +06/09/2018,Politicians,@clairecmc,RT @fawfulfan: @tyunsell @Hawkeyee21 @HawleyMO @clairecmc @GOP McCaskill has been fighting from day one to get her constituents affordable… +06/09/2018,Politicians,@clairecmc,@7thWardSTL @stl7thward @nicolergalloway @NoOnPropA @CoriBush @brucefranksjr @gregoryfxdaly Thank you! +06/09/2018,Politicians,@clairecmc,"Slow Saturday. Only 7 events. ☺️ on my way to third event in KC, then off to St Joseph for NW dem event. Thanks to… https://t.co/s4zuwcK8qD" +06/08/2018,Politicians,@clairecmc,"No Tyler, he won’t. He is one of the AGs bringing the lawsuit to end the protection of those with pre-existing cond… https://t.co/1BZyWlSmkV" +06/08/2018,Politicians,@clairecmc,The (almost) hardest working Democrat in Missouri! 😬 Happy Birthday Stephen 🎂🍺 https://t.co/DNJ54tCj10 +06/08/2018,Politicians,@clairecmc,Thank you for attending. Great turnout! https://t.co/pgZUobYteC +06/08/2018,Politicians,@clairecmc,RT @POGOBlog: .@McCaskillOffice introduced legislation compelling patient advocacy groups to report funding they receive from pharmaceutica… +06/07/2018,Politicians,@clairecmc,RT @MAhealthforkids: Thx @clairecmc who is pushing for more #BigPharma transparency. She released a report back in Feb about opioid manufac… +06/07/2018,Politicians,@clairecmc,"Cardinal nation is mourning. Thank you Red, you were a class act. #LoveRed2 https://t.co/7xMvcagYsg" +06/06/2018,Politicians,@clairecmc,Seriously. Unbelievable. https://t.co/lokUtwtkBq +06/06/2018,Politicians,@clairecmc,@Jennifrrrrr @SenatorNasheed Ask at a local #TeamClaire office. They are all on our web site. https://t.co/rqawiGEjGy. Thanks! +06/06/2018,Politicians,@clairecmc,@democratmo Thank you Jeffrey! +06/06/2018,Politicians,@clairecmc,Congratulations Senator Arthur! It’s a flip...red to blue. Thanks to all the hard work of Lauren and many volunteer… https://t.co/D1HHyJZV5u +06/05/2018,Politicians,@clairecmc,I agree with my Republican colleagues from Iowa. This administration is hurting the renewable fuel industry and cat… https://t.co/BgRwVRBDhQ +06/04/2018,Politicians,@clairecmc,RT @mkraju: Senate Judiciary Chairman Chuck Grassley just told me this: “If I were president of the United States and I had a lawyer that s… +06/04/2018,Politicians,@clairecmc,@KCMikeMahoney @ruckin_ Looking for a pay phone or gas station to ask for directions when I couldn’t find a map in the car. +06/02/2018,Politicians,@clairecmc,I am so grateful to the hundreds of volunteers who turned out today all over the state. This race will not be won o… https://t.co/31KYNim50O +06/02/2018,Politicians,@clairecmc,"RT @MoDemParty: Today we’re launching the biggest, most sophisticated field program MO has ever seen to make sure @ClaireCMC can keep fight…" +06/02/2018,Politicians,@clairecmc,Great to be there @SenatorNasheed ! https://t.co/ZK2CHMIJ9G +06/01/2018,Politicians,@clairecmc,The subpoena excuse is close to the dog ate my homework. Totally bogus. Does the AG’s office expect people to belie… https://t.co/qkFhGxKkTg +06/01/2018,Politicians,@clairecmc,That’s what happens when you don’t actually investigate. An investigation isn’t “they told us they didn’t do anythi… https://t.co/TKNz121QMa +06/01/2018,Politicians,@clairecmc,Happy to help! Now you can pull your rabbit out of your hat without a dumb federal regulation getting in your way! https://t.co/HG80Fol7Wp +06/01/2018,Politicians,@clairecmc,Totally bogus excuse that he couldn’t subpoena. He could have done exactly what this private attorney did and gotte… https://t.co/CsBAwN87up +06/01/2018,Politicians,@clairecmc,That statute SPECIFICALLY gives the Attorney General the right to bring suit but he refused and this private citize… https://t.co/7yqhIgNHsn +06/01/2018,Politicians,@clairecmc,RsMO 610.027 https://t.co/JgtHRt549I +06/01/2018,Politicians,@clairecmc,And more important than 💰is volunteers! Massive voter contact starts tomorrow. Here is list of offices that are alr… https://t.co/yLx8mr3uUQ +06/01/2018,Politicians,@clairecmc,Speaking of BigBlue....gas money anyone? https://t.co/GDwHm709Mc. Thank you! https://t.co/3d8AnCFwlQ +06/01/2018,Politicians,@clairecmc,"Spent this week covering the state in BigBlue, our campaign RV. Hundreds of #VetsForClaire and military families ca… https://t.co/5TTsi4vn9X" +05/31/2018,Politicians,@clairecmc,"RT @s_webber: At every stop a veteran has come up to Claire to thank her for fighting for them. In Hannibal, one said she's ""a veteran of…" +05/31/2018,Politicians,@clairecmc,RT @McCaskill4MO: We’re back on the road for Day 3️⃣ of our Vets and Military Families Tour! Don’t miss out on a second of the fun—follow o… +05/31/2018,Politicians,@clairecmc,"RT @McCaskill4MO: In Columbia @ClaireCMC had the honor of sharing the stories of two WWII POWs, Ralph and Wilburn. Even after their time in…" +05/29/2018,Politicians,@clairecmc,"My dad. Like many others of the Greatest Generation, he never told us about his bravery. I miss him. A part of my h… https://t.co/em7lTjfYEP" +05/26/2018,Politicians,@clairecmc,Heaven. 5 of my grandsons adoring our new additions! https://t.co/7AeSj9QuO5 +05/26/2018,Politicians,@clairecmc,Together we make good things happen. This is a great example. Seniors have more protection from rotten scammers! https://t.co/bQ1DelBRWl +05/26/2018,Politicians,@clairecmc,Very excited to hit the road next week in this. Names anyone for the RV? We are off on a “Veterans for Claire” tour… https://t.co/SmwMU0qi8z +05/25/2018,Politicians,@clairecmc,"RT @leadinglatte: ""I think it's important that all of us around here, [who] want everyone to think that we're moving mountains... I think t…" +05/25/2018,Politicians,@clairecmc,RT @KMOV: Sen. McCaskill calls public reading of Greitens' accuser's deposition 'unfortunate' https://t.co/wz83lMdp7j https://t.co/kVMITk3A… +05/25/2018,Politicians,@clairecmc,RT @SheenBean32: Great seeing Sentor @clairecmc out engaging with seniors all across this city at the 38 Annual Bring It Together Health Fa… +05/25/2018,Politicians,@clairecmc,I was so honored to spend time this morning with these veterans from the Korean War. Thank you Don and Terry. https://t.co/3DTacU127c +05/24/2018,Politicians,@clairecmc,I talked to some of these workers who lost their jobs yesterday. Justifiably angry. One of them lost a 20 year care… https://t.co/L5UF4xswXx +05/24/2018,Politicians,@clairecmc,RT @vMerlintocs: @clairecmc Good Morning Senator. Would there be any chance you could please retweet this story to help the Oakville Band… +05/24/2018,Politicians,@clairecmc,RT @McCaskill4MO: We’re making it easier than ever to get involved with #TeamClaire. Just text CLAIRE to 83224 and we’ll take it from there… +05/23/2018,Politicians,@clairecmc,Damn auto correct. *Members of CONGRESS https://t.co/F93NTI1GAi +05/23/2018,Politicians,@clairecmc,A hero working with heroes. https://t.co/UHhidsyleu +05/23/2018,Politicians,@clairecmc,RT @lindsaywise: NEW from McCaskill: “The era of Members of Congress controlling the secrecy of harassment claims with no accountability an… +05/23/2018,Politicians,@clairecmc,No more taxpayer money paid for wrongdoing by Members of Commerce. Let’s get this bill to the President. https://t.co/av7qG6WrMg +05/20/2018,Politicians,@clairecmc,Thank you Cindy! Congrats to your daughter. https://t.co/twavGX7JZb +05/20/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC and @CoryBooker just dropped by to surprise the crowd at the #AnnieMalone parade! #TeamClaire #MOSen https://… +05/20/2018,Politicians,@clairecmc,Whoops. Volunteer at https://t.co/KVeLXlsxQH +05/20/2018,Politicians,@clairecmc,"Ok St Louis, you turned it out and up! Goodness gracious what a wonderful rally. Remember: volunteer at Claire… https://t.co/ZPhZ5Aorbs" +05/20/2018,Politicians,@clairecmc,"Concord is wonderful, they always make me feel like family. And thank you Pastor Lindsay! @concordhope https://t.co/UXlxJ7VpqH" +05/20/2018,Politicians,@clairecmc,Thank you Shauna for coming to our office opening in KC and more importantly for your service. #Army #ArmedForcesDay https://t.co/iocFLrNn8Q +05/20/2018,Politicians,@clairecmc,Wow. Thank you to the hundreds who showed up. Sorry it was so hot and crowded. And big thanks to @MayorSlyJames… https://t.co/hfYGDyscOX +05/20/2018,Politicians,@clairecmc,"RT @kareed3: @McCaskill4MO @clairecmc As an Army veteran, I join Shauna in my absolute pleasure in voting for, and supporting Claire for Se…" +05/19/2018,Politicians,@clairecmc,The men and women of our armed forces deserve our respect and appreciation 365. #ArmedForcesDay +05/19/2018,Politicians,@clairecmc,"This week @HawleyMO was interviewed and said he’d done 10 events in 6 weeks. I did 5 yesterday, will do 3 today and… https://t.co/UkjNVnUu0N" +05/19/2018,Politicians,@clairecmc,Can’t be bought. Voted to PROTECT #netneutrality https://t.co/SaZPbzo9ne +05/19/2018,Politicians,@clairecmc,Teri if you would DM me contact info I’d love to help make this happen. https://t.co/euG0Ze7KRn +05/19/2018,Politicians,@clairecmc,Powerful. Preaching love. https://t.co/ZblVtDiMDl +05/19/2018,Politicians,@clairecmc,@CoryBooker in charge of our Instagram account this weekend? 👀 Well that could be trouble. https://t.co/RK7Vn7xj1w +05/18/2018,Politicians,@clairecmc,RT @McCaskillOffice: The legislation is supported by the Fraternal Order of Police (@GLFOP) and National Tactical Officers Assoc. (@NTOAH)… +05/18/2018,Politicians,@clairecmc,"RT @McCaskillOffice: This #NationalPoliceWeek, Claire’s introducing a new bill to fund behavioral health crisis response training. She know…" +05/18/2018,Politicians,@clairecmc,"Again. Heartbreaking. To the families filled with sorrow, my deepest sympathy. No more excuses. Time for reasonable… https://t.co/9QCaA9kKHJ" +05/18/2018,Politicians,@clairecmc,Congratulations to all the graduates and their families! Thanks for having me. #BearGrads https://t.co/kNVypr1B0p +05/18/2018,Politicians,@clairecmc,Join us! https://t.co/FGB2rv7g97 +05/17/2018,Politicians,@clairecmc,Great to be with you Shay! #theMORNINGGRIND https://t.co/evmBWmyVnq +05/17/2018,Politicians,@clairecmc,This is terrible news for Mo farmers. https://t.co/iPOx1loOSE +05/17/2018,Politicians,@clairecmc,"RT @McCaskill4MO: By the end of this week, #TeamClaire and @MODemParty will have opened 2⃣0⃣ coordinated field offices all over MO—and that…" +05/16/2018,Politicians,@clairecmc,Going down to floor to vote to protect #NetNeutrality. We are going to win this one folks. Now it’s time for pressure on the House! +05/16/2018,Politicians,@clairecmc,@MsPackyetti @PodSaveThePpl Congratulations Brittany! +05/15/2018,Politicians,@clairecmc,"RT @Robillard: “He pointed out that he’s held 10 campaign events in the past six weeks” https://t.co/frQx7Y7Snz + +Last year, McCaskill held…" +05/15/2018,Politicians,@clairecmc,Word. Very very few days off for over a year. Hard work matters. It’s how you show respect to hard working Missouri… https://t.co/VkwDHHYUjI +05/13/2018,Politicians,@clairecmc,I miss her so much. Takes my breath away. She was amazing. This is my first campaign without her steady hand nearby… https://t.co/hFhFtRtwHE +05/11/2018,Politicians,@clairecmc,"I completely get this John. And I must confess, I’m very excited. I’m taking Mother’s Day off! https://t.co/Cl0Dvrd78j" +05/11/2018,Politicians,@clairecmc,RT @CDTCivilWar: ICYMI: 'that sounds a little nuts' -- McCaskill slams @HawleyMO for saying #HigherEd indoctrinates students into 'far-left… +05/10/2018,Politicians,@clairecmc,😂😂My grandsons will love this. https://t.co/OetsUYzmX7 +05/08/2018,Politicians,@clairecmc,RT @McCaskill4MO: NEW AD: @ClaireCMC only answers to one boss—and that’s the families of MO. #MOSen https://t.co/rYqzLsm02W +05/05/2018,Politicians,@clairecmc,"RT @McCaskill4MO: At our second community meeting today, @ClaireCMC was asked what issues can bring together rural and urban MO. Without mi…" +05/05/2018,Politicians,@clairecmc,RT @CoraFaith4MO: Such great energy at the @McCaskill4MO #STL office opening! @Emily_Waggoner and I are with @clairecmc! JOIN US ➡️ https:… +05/05/2018,Politicians,@clairecmc,That baby was incredibly precious. Thanks Amelia for coming to our STL campaign office opening! https://t.co/yueGjhh50h +05/04/2018,Politicians,@clairecmc,It was jammed! Let’s get to work! https://t.co/kcABA58a3D +05/04/2018,Politicians,@clairecmc,It was so good to be with my dear friend Alvin Brooks on his 86th birthday! Thank you for all your community servic… https://t.co/DJm7soxMsd +05/04/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC thanks @AdHocGAC for their many years spent building bridges between law enforcement and KC communities. “The… +05/04/2018,Politicians,@clairecmc,This is terrible news for Missouri. https://t.co/IQWPAqKhQz +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Claire’s response? + +“What's going on with the pharmaceutical industry should infuriate every living, breathing soul in…" +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Dr. Stephens of MU’s Family Medicine Clinic in Ashland lamented high drug prices, saying “it's a shameful that we have…" +05/03/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Today, she joined healthcare professionals in Columbia to talk about the rising costs of emergency room visits, air am…" +05/03/2018,Politicians,@clairecmc,Over lunch hour we opened another #TeamClaire office! Thanks for the great turnout Boone County! https://t.co/Zn1ylH6SrI +05/02/2018,Politicians,@clairecmc,@repckelly @SarahLStarnes @MoDemParty Yes. In 1988. First floor. +05/02/2018,Politicians,@clairecmc,Undermine and sabotage. Republicans promised repeal and replace. They delivered undermine and sabotage. Made it wor… https://t.co/1Q3uYI3v94 +05/01/2018,Politicians,@clairecmc,"RT @SenatorLankford: .@ReggieBush, I agree - It's insane that we can’t see where our tax dollars go. @clairecmc & I have a bipartisan solut…" +05/01/2018,Politicians,@clairecmc,"RT @stltoday: McCaskill launches inquiry into air ambulances and insurers, cites Post-Dispatch reporting https://t.co/X7k1ZZjhB6 https://t.…" +04/27/2018,Politicians,@clairecmc,This. https://t.co/P9ESj4VEN3 +04/27/2018,Politicians,@clairecmc,I’m not going away on this. They bought a Bentley on your money that was supposed to be going toward fighting terro… https://t.co/swgX9bmgIu +04/27/2018,Politicians,@clairecmc,Yes it is! Let’s do this thing🔥🔥 https://t.co/kNBi34eqrW https://t.co/SJBC9xHNLQ +04/26/2018,Politicians,@clairecmc,@DarrylGregoryG2 @McCaskillOffice .Here you go Rev Gray. I oppose any efforts to attack SNAP. https://t.co/9aUegfaIXc +04/26/2018,Politicians,@clairecmc,"Fast cars,Easy money. Outrageous. It will enrage you. Please. Watch. https://t.co/ht1svwtwex. Full repor… https://t.co/9K5yVTHtBW" +04/26/2018,Politicians,@clairecmc,"RT @rplardner: SecDef Mattis says he agrees with a scathing assessment by @clairecmc of a Pentagon subcontractor. +Mattis tells Sen. McCaski…" +04/26/2018,Politicians,@clairecmc,RT @McCaskillOffice: BREAKING: Claire released a scathing report today detailing how one Pentagon contractor who left taxpayers on the hook… +04/26/2018,Politicians,@clairecmc,RT @SenateHSGACDems: BREAKING: Ranking Member @McCaskillOffice released a scathing report today on the Pentagon’s mismanagement of the Afgh… +04/26/2018,Politicians,@clairecmc,Thanks to @SenatorLankford for partnering with me on this important bill to provide transparency for taxpayers on g… https://t.co/hm0gk49Rzq +04/26/2018,Politicians,@clairecmc,And thank you to all the volunteers and escorts who make these Honor Flights to DC possible! #HeartlandHonorFlight https://t.co/dgcOT1vBQL +04/25/2018,Politicians,@clairecmc,"@THatfieldMO @aaron_hedlund As a matter of fact I saw the story at 7:20 central time this morning, after I’d been to the gym." +04/25/2018,Politicians,@clairecmc,Honor flight from KC area this morning. Always the best part of my week. This veteran asked for a hug and was incre… https://t.co/jzvceGKOst +04/23/2018,Politicians,@clairecmc,Hmmm https://t.co/mC2GcE7hsi +04/22/2018,Politicians,@clairecmc,"RT @7milegap: Republican strategist on his party’s candidate for U.S. Senate in MO: +“He’s this young guy and he’s allergic to hard work.” +M…" +04/21/2018,Politicians,@clairecmc,"RT @MoDemParty: They both campaigned as outsiders. +They both pledged to clean up corruption in Jeff City. +They both think we want to watch…" +04/20/2018,Politicians,@clairecmc,RT @McCaskillOffice: Claire’s excited to announce a new $25.5 million @DeptVetAffairs grant to state-run veterans homes in Missouri for ren… +04/20/2018,Politicians,@clairecmc,RT @KCMikeMahoney: Mo. Sen Claire McCaskill asks Air Force brass about the future of the Whitman AFB as home to new generation of bombers… +04/19/2018,Politicians,@clairecmc,RT @McCaskill4MO: URGENT: In 4️⃣ days the rules protecting #NetNeutrality will expire. @ClaireCMC’s fighting for a vote in the Senate to pr… +04/19/2018,Politicians,@clairecmc,"As we change the rules today to allow Tammy to bring her baby on the floor of the US Senate (welcome Maile!), I fla… https://t.co/Ji1Xc9bRh5" +04/19/2018,Politicians,@clairecmc,RT @McCaskill4MO: Up top! #NationalHighFiveDay https://t.co/AY56QJVfMv +04/18/2018,Politicians,@clairecmc,RT @McCaskillOffice: “McCaskill Calls for Biodiesel Boost”—Claire’s teaming up with a bipartisan group of farm-state senators to oppose cha… +04/18/2018,Politicians,@clairecmc,"RT @Mizzou: MU has a $3.9 billion impact on the state of Missouri according to a new report released today! + +https://t.co/TWqCLIYoad https…" +04/18/2018,Politicians,@clairecmc,Campaign should have nothing to do with official duties. Very concerning. Weirdest part...report was due and filed… https://t.co/Us4xapKgIe +04/18/2018,Politicians,@clairecmc,"RT @Drug_watch: “Drug companies have too much influence in Washington.” U.S. Sen. @clairecmc, D-Missouri, is proposing legislation to end t…" +04/18/2018,Politicians,@clairecmc,"RT @Meirabb: For those who may be confused, here is the very clear public timeline of events regarding the Governor’s use of The Mission C…" +04/18/2018,Politicians,@clairecmc,We would love to have your help on our campaign. Offices opening this month all over the state. Join us! https://t.co/ATbePbCdYl +04/18/2018,Politicians,@clairecmc,Huh? The Governor admitted wrongdoing in connection with his charity in APRIL 2017. That wasn’t a sufficient heads… https://t.co/cIsCRR1n7f +04/18/2018,Politicians,@clairecmc,"So predictable. I feel for Ambassador Haley. She is strong, smart, and capable. And the WH threw her under the bus… https://t.co/2yD3YWCLOy" +04/17/2018,Politicians,@clairecmc,Prayers and sympathy for the Bush family. She was a wonderful woman. https://t.co/JSNAXbEiVZ +04/16/2018,Politicians,@clairecmc,RT @clairecmc: Being dependent on multimillion dollar donors is part of the evil that Citizen United has caused. I’m incredibly proud that… +04/16/2018,Politicians,@clairecmc,Being dependent on multimillion dollar donors is part of the evil that Citizen United has caused. I’m incredibly pr… https://t.co/OqxjMP0sBf +04/16/2018,Politicians,@clairecmc,That is rampant corruption. Hope someone in law enforcement investigates. https://t.co/h4XJ1yd3NV +04/15/2018,Politicians,@clairecmc,Serious aunt love going on this am at my house. https://t.co/lJ4GzMYDLT +04/14/2018,Politicians,@clairecmc,So I was quickly informed this is the south end construction. Whew. But wait I thought we just redid that end a few… https://t.co/r6R65ywuC3 +04/14/2018,Politicians,@clairecmc,@samputsimply @Mizzou Whew. I’m so glad. I was worried. +04/14/2018,Politicians,@clairecmc,This photo makes me kinda sad. I grew up watching Mizzou games from the “rocks”. I know it’s progress but still gon… https://t.co/Duh9Ny9DEI +04/14/2018,Politicians,@clairecmc,I will get to the bottom of this. Investigation continues. https://t.co/X3h2I1cYtd +04/13/2018,Politicians,@clairecmc,👍🏻💙💙💙 https://t.co/5nsMQQfpEw +04/13/2018,Politicians,@clairecmc,"RT @McCaskill4MO: It’s official! @ClaireCMC’s bipartisan, anti-sex trafficking bill was signed into law by the president earlier this week.…" +04/12/2018,Politicians,@clairecmc,I’m confused. And Missouri farmers desperately need certainty. What in the world is going on? https://t.co/lHUIFrZdnB +04/12/2018,Politicians,@clairecmc,RT @senorrinhatch: Anyone advising the President — in public or over the airwaves— to fire Bob Mueller does not have the President or the n… +04/12/2018,Politicians,@clairecmc,"I have read the official report from the Republican led Missouri House investigation, including the sworn testimony… https://t.co/tk7Sbduapp" +04/11/2018,Politicians,@clairecmc,I can’t get my head around a man’s character that would put his wife and children through this kind of pain. +04/11/2018,Politicians,@clairecmc,It was a long tough fight. But we never gave up. My thanks to my partner @SenRobPortman. Unfortunate the WH played… https://t.co/bePfuDpK3n +04/11/2018,Politicians,@clairecmc,"RT @McCaskillOffice: With #SESTA officially on the books, survivors can now access the justice they deserve, and we’re better able to preve…" +04/11/2018,Politicians,@clairecmc,RT @HagedornInst: Congratulations to Senators McCaskill (@clairecmc) and Portman and the others who worked diligently to put a dent in chil… +04/10/2018,Politicians,@clairecmc,Our investigation. Oversight matters. https://t.co/370HzRzMju +04/10/2018,Politicians,@clairecmc,Our pleasure. Least I can do for my mother’s high school and where I attended school at Donnelly elementary!… https://t.co/DM4E5YEj9t +04/09/2018,Politicians,@clairecmc,Lots of travel and events yesterday. Today? Grandchildren! 😍 Family days make it all work and make me so grateful f… https://t.co/jWx9slw9PG +04/08/2018,Politicians,@clairecmc,HUGE crowd at annual @GreeneCountyDem dinner in Springfield. So much energy. Something is going on. 😁 https://t.co/ALg8Hw1Ion +04/08/2018,Politicians,@clairecmc,Then on to a moving and emotional memorial surface for my friend and amazing long time public servant Wendy Noren i… https://t.co/oLGJn6yi98 +04/08/2018,Politicians,@clairecmc,Started the day yesterday in STL with over 200 showing up for a volunteer brunch! https://t.co/VR0GhMNF6o +04/07/2018,Politicians,@clairecmc,RT @McCaskill4MO: .@ClaireCMC fought for Arla Harrell when his government wouldn’t. #MOSen https://t.co/7RkJBTqak4 +04/07/2018,Politicians,@clairecmc,Big crowd tonight at Blair dinner in Jeff City. Great to be with all these committed folks. Thanks for the warm wel… https://t.co/zipuwwkc36 +04/05/2018,Politicians,@clairecmc,I agree Pat. Worried about all the soybean farmers in Missouri living on the edge with this added stress.… https://t.co/H7sYzeNU6B +04/05/2018,Politicians,@clairecmc,RT @SenatorNasheed: Thank you for your early leadership on this @clairecmc - all people deserve safe and healthy housing. #ClintonPeabody h… +04/04/2018,Politicians,@clairecmc,RT @TheSalemNews: McCaskill-backed bill would boost number of doctors training in rural areas https://t.co/Qz5d1qpzwM https://t.co/13i8wmru… +04/03/2018,Politicians,@clairecmc,"RT @RxPricing: Some #drugprices news from @jessiehellmann: ""Three U.S. senators are asking why a 40-year-old cancer drug has increased in p…" +04/03/2018,Politicians,@clairecmc,RT @THatfieldMO: .@HawleyMO YouTube page vs @clairecmc YouTube page. One is full of petty attack ads while the other shows someone who work… +04/03/2018,Politicians,@clairecmc,"RT @McCaskill4MO: NEW: When Arla Harrell was denied benefits after being subjected to mustard gas experiments by the American military, @Cl…" +03/30/2018,Politicians,@clairecmc,"RT @mcbridetd: Government set to borrow nearly $1 trillion this year, an 84 percent jump from last year + Chicago Tribune https://t.co/elXCb…" +03/30/2018,Politicians,@clairecmc,Stopping a ridiculous practice. https://t.co/EoIbjeXSjz +03/30/2018,Politicians,@clairecmc,"RT @McCaskillOffice: Today we remember and honor all Vietnam War veterans and the sacrifices they made for our country. From all of us, tha…" +03/29/2018,Politicians,@clairecmc,It’s a full moon! https://t.co/IaJ1NCZHWR +03/28/2018,Politicians,@clairecmc,Big crowd. Lots of volunteers. Let’s get to work! #MoSen https://t.co/aHjl64PyQV +03/28/2018,Politicians,@clairecmc,Getting ready for town hall #52. Today’s in KC. I have averaged one townhall a week for the last year. Thank you to… https://t.co/bRSIL5AMq5 +03/28/2018,Politicians,@clairecmc,RT @jmannies: ICYMI: https://t.co/KuFuUOUi4L +07/01/2018,Politicians,@senorrinhatch,On your next Delta flight make sure to read Senator Hatch’s brief interview in Sky Magazine alongside… https://t.co/j3BFlOKB4w +06/30/2018,Politicians,@senorrinhatch,@JanDelicat Just a member of said Senate Judiciary Committee. +06/30/2018,Politicians,@senorrinhatch,"He is 81 years old and had served on the Court admirably for 31 years. + +End of investigation. + +https://t.co/Iz02CESQsQ" +06/29/2018,Politicians,@senorrinhatch,"Congratulations to @joshjames and our friends at @Domotalk! + +https://t.co/LNPCd8meNq" +06/29/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: The Senate Finance Committee has been busy. In the 115th Congress, it has ushered in #taxreform, repeal of the individua…" +06/29/2018,Politicians,@senorrinhatch,"@VictoriaCollaz2 Ok Victoria. Just for you, after this Supreme Court nominee is confirmed." +06/29/2018,Politicians,@senorrinhatch,"@gossipornews Yes, thanks!" +06/29/2018,Politicians,@senorrinhatch,"Senate Democrats want a Supreme Court Justice who will act as a super-legislator, serving on a second Congress in o… https://t.co/7mWsWwmd5c" +06/29/2018,Politicians,@senorrinhatch,"Important from @charlescwcooke: No. It’s Not Time for a ‘Bork Moment’ + +https://t.co/6izII7knuG #scotus #utpol" +06/29/2018,Politicians,@senorrinhatch,"As Democrats lay out a laundry list of political hopes for the next Supreme Court Justice, Senate Republicans will… https://t.co/a0bus95lsp" +06/29/2018,Politicians,@senorrinhatch,RT @lawyer_moms: Thanks to @OrrinHatch and @SenMikeLee for productive meetings. #FamiliesBelongTogether https://t.co/IX2NiZJjRl +06/29/2018,Politicians,@senorrinhatch,"RT @FoxBusiness: .@OrrinHatch on the next Supreme Court Justice: ""[@POTUS] has about 25 names. Any one of those names would be excellent on…" +06/29/2018,Politicians,@senorrinhatch,No Doubt A Supreme Court Nominee Will Be Confirmed Before Midterms. #utpol https://t.co/QPtCy69VCB +06/29/2018,Politicians,@senorrinhatch,"RT @Newseum: Amazingly, the dedicated journalists at the @capgaznews put out a newspaper today. Their front page is on display in the Today…" +06/29/2018,Politicians,@senorrinhatch,"RT @mattdizwhitlock: Oops. If you have to crop an image to cut off “next President” and clip a video to try and make a point, you better ma…" +06/29/2018,Politicians,@senorrinhatch,Justice Kennedy will be replaced before the midterms. https://t.co/5dWUef9xtR +06/29/2018,Politicians,@senorrinhatch,"Hatch Speaks Out in Need of Fair Confirmation Process for Justice Kennedy’s Successor— via ⁦@JackHeretik⁩, ⁦… https://t.co/4W2wKSgObX" +06/29/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: @SenateDems Interesting that you decided to cut it off where you did. + +Here are 6 times from that exact same 2016 inter…" +06/28/2018,Politicians,@senorrinhatch,“Bottom line: it’s pretty clear the debate in 2016 revolved around nominations made in a presidential election year… https://t.co/ZiFmyUdteg +06/28/2018,Politicians,@senorrinhatch,RT @chaseacook: I can tell you this: We are putting out a damn paper tomorrow. +06/28/2018,Politicians,@senorrinhatch,The shooting at the Capital Gazette in Annapolis is an attack on our First Amendment and our most fundamental right… https://t.co/ey0MvxNoBH +06/28/2018,Politicians,@senorrinhatch,"@SenateDems Interesting that you decided to cut it off where you did. + +Here are 6 times from that exact same 2016… https://t.co/a21ZhC7cgJ" +06/28/2018,Politicians,@senorrinhatch,"RT @FoxBusiness: .@OrrinHatch on the next Supreme Court Justice: ""[@POTUS] has about 25 names. Any one of those names would be excellent on…" +06/28/2018,Politicians,@senorrinhatch,"“I have no doubt the President will pick someone very capable to fill the shoes of Justice Kennedy, who served on t… https://t.co/hfQNn0XYGT" +06/28/2018,Politicians,@senorrinhatch,At 5:20 Hatch will join @EveningEdit to talk about Justice Kennedy’s retirement and the need to confirm a suitable… https://t.co/vsmyhbJvab +06/28/2018,Politicians,@senorrinhatch,"Funny-- I get away with that all the time. + +https://t.co/c0w12cqCZ7" +06/28/2018,Politicians,@senorrinhatch,"RT @EveningEdit: Coming up +@OrrinHatch +@marc_lotter +@mschlapp +@madisongesiotto +@Amottur +@TheDCVince https://t.co/p7qmDpVsy8" +06/28/2018,Politicians,@senorrinhatch,"RT @SenateMajLdr: As I stated yesterday, the Senate stands ready to fulfill our constitutional role by offering advice and consent on @POTU…" +06/28/2018,Politicians,@senorrinhatch,"""I understand Senator Schumer--They feel very deeply about politicizing the courts. They want to politicize as long… https://t.co/j4ptP5DnBk" +06/28/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Not quite yet, there's a Supreme Court seat on the line. + +https://t.co/ywl978VYtP" +06/28/2018,Politicians,@senorrinhatch,Tune in now to @dailybriefing — @FoxNews #SCOTUS https://t.co/V83u7k3SC2 +06/28/2018,Politicians,@senorrinhatch,At 2:10 PM EST Senator Hatch will join @DanaPerino on @dailybriefing on @FoxNews to talk about Justice Kennedy's re… https://t.co/GeS7kWbHgh +06/28/2018,Politicians,@senorrinhatch,"RT @KUTV2News: Sen. Orrin Hatch, the senior member and former Chairman of the Senate Judiciary Committee, paid tribute to Supreme Court Jus…" +06/28/2018,Politicians,@senorrinhatch,"America doesn’t need political judges. +It doesn’t need an army of super-legislators telling us what to do. +And it… https://t.co/BNsF4K37kP" +06/28/2018,Politicians,@senorrinhatch,@FightForTitleII Are you arguing for the Confederacy here? +06/28/2018,Politicians,@senorrinhatch,At 11:35 AM Senator Hatch will speak on the Senate floor about Justice Kennedy's retirement and the need to confirm… https://t.co/X3mW7WjI2E +06/28/2018,Politicians,@senorrinhatch,@GoldenGuido You're making the very bold assumption that you're going to outlive him. +06/28/2018,Politicians,@senorrinhatch,"At the first Battle of Bull Run. It was necessary. + +https://t.co/RoYP8GANOm" +06/28/2018,Politicians,@senorrinhatch,@matthewfelling Thank you for recognizing this correct interpretation of the acronym. +06/28/2018,Politicians,@senorrinhatch,@BertClere I can only hope. +06/28/2018,Politicians,@senorrinhatch,"@dmully1193 Addressed this yesterday. + +https://t.co/Qvu3fvlo5B" +06/28/2018,Politicians,@senorrinhatch,"You'll hear Senate Democrats talk about needing a nominee who will promote ""progress,"" because they want Judges who… https://t.co/UqT3lWR65D" +06/28/2018,Politicians,@senorrinhatch,"One of Democrats biggest challenges is that they emptied the procedural toolbox trying to stop, slow, stall every e… https://t.co/13nUeevO9E" +06/28/2018,Politicians,@senorrinhatch,"With love and respect, when it comes to who gets to *nominate* Supreme Court justices (which is what @SenateMajLdr… https://t.co/j1BS3IC609" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: JUST NOW: Senator Hatch on the phone with Justice Kennedy, thanking him for his service and dedication to upholding the…" +06/27/2018,Politicians,@senorrinhatch,More helpful data from @baseballcrank about the common practice of confirming Supreme Court nominees in midterm ele… https://t.co/ZAdWVnaTp8 +06/27/2018,Politicians,@senorrinhatch,@fossen There are no Presidents up for election this year. https://t.co/WruEc87qKG +06/27/2018,Politicians,@senorrinhatch,"Not quite yet, there's a Supreme Court seat on the line. + +https://t.co/ywl978VYtP" +06/27/2018,Politicians,@senorrinhatch,"Memories. + +Always glad to stand (or sit) behind @SenateMajLdr. + +https://t.co/xO9qtinDfI" +06/27/2018,Politicians,@senorrinhatch,"RT @baseballcrank: 8 of 9 midterm-election-year SCT nominations confirmed since WW2 (POTUS, SEN party): + +Kagan (D, D) +Breyer (D, D) +Souter…" +06/27/2018,Politicians,@senorrinhatch,"Senate Democrats are ""grasping at straws, in the truest sense."" + +https://t.co/oE5av8tmee #SCOTUS #utpol" +06/27/2018,Politicians,@senorrinhatch,This summary from ⁦@guypbenson⁩ serves as an excellent explainer for a key qualification for Justice Kennedy’s repl… https://t.co/QpLqkkPbGQ +06/27/2018,Politicians,@senorrinhatch,RT @senorrinhatch: The #SCOTUS rulings this week highlight the importance of a nominee who focuses on impartially interpreting the Constitu… +06/27/2018,Politicians,@senorrinhatch,"RT @guypbenson: 1) It’s not a Presidential election. +2) That was the Biden/Schumer standard. +3) Obama’s second SCOTUS pick was confirmed in…" +06/27/2018,Politicians,@senorrinhatch,#TBT https://t.co/RnjKlQ7IyT +06/27/2018,Politicians,@senorrinhatch,While there was no precedent for confirming a Justice who had been nominated by an outgoing President in a Presiden… https://t.co/ZcWnN2BpEZ +06/27/2018,Politicians,@senorrinhatch,Our Democrat colleagues entire strategy seems to be premised on the assumption that the American people don't under… https://t.co/xTJNqJivlt +06/27/2018,Politicians,@senorrinhatch,"JUST NOW: Senator Hatch on the phone with Justice Kennedy, thanking him for his service and dedication to upholding… https://t.co/IOcTgo8xLR" +06/27/2018,Politicians,@senorrinhatch,"RT @JakeSherman: MCCONNELL on the Senate floor: ""The senate stands ready to fulfill its constitutional role by offering advice and consent…" +06/27/2018,Politicians,@senorrinhatch,"RT @ABCPolitics: JUST IN: Senate Majority Leader Mitch McConnell: ""We will vote to confirm Justice Kennedy's successor this fall."" https://…" +06/27/2018,Politicians,@senorrinhatch,RT @SenateMajLdr: The Senate stands ready to fulfill its constitutional role by offering advice and consent on @POTUS @realDonaldTrump’s no… +06/27/2018,Politicians,@senorrinhatch,The #SCOTUS rulings this week highlight the importance of a nominee who focuses on impartially interpreting the Con… https://t.co/j23MVPPteF +06/27/2018,Politicians,@senorrinhatch,RT @fox13: UPDATE: Senator Orrin Hatch issues statement congratulating Justice Kennedy on his service to the country and praising him as a… +06/27/2018,Politicians,@senorrinhatch,"..""to guide his successor through the confirmation process. I wish Justice Kennedy and his family the very best."" (2/2) #SCOTUS #utpol" +06/27/2018,Politicians,@senorrinhatch,"HATCH on Justice Kennedy's retirement: ""I congratulate Justice Kennedy on his service to our country. He has been a… https://t.co/p9BXiDyjDc" +06/27/2018,Politicians,@senorrinhatch,#NationalSunglassesDay https://t.co/zvQCl8kvjN +06/27/2018,Politicians,@senorrinhatch,"RT @DavidAFrench: Alternative headline: + +BREAKING: US Supreme Court hands down major blow to state efforts to compel speech. Protects mill…" +06/27/2018,Politicians,@senorrinhatch,"RT @BenjiBacker: “You’re an impressive young man—we need more like you. I appreciate the work you’re doing [with @ACC_National].” + +Grateful…" +06/27/2018,Politicians,@senorrinhatch,@5876M I don't think gerrymandered means what you think it means. +06/27/2018,Politicians,@senorrinhatch,RT @foxandfriends: Sen. Orrin Hatch pays tribute to Charles Krauthammer https://t.co/JZTiwhzjej +06/27/2018,Politicians,@senorrinhatch,RT @ChadPergram: From colleague Jason Donner. Senate Finance Cmte chair Hatch: I’m actually on Harley Davidson’s side. Tariffs are not bene… +06/27/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: In just six months, #taxreform has already brought back $305.6 billion to the United States, a ""shot in the arm"" for U.S…" +06/27/2018,Politicians,@senorrinhatch,(But do it without the money of those who don't support your agenda-- because those people now finally have their F… https://t.co/xmDTViS1LW +06/27/2018,Politicians,@senorrinhatch,"RT @senatorshoshana: “to compel a man to furnish contributions of money for the propagation of +opinions which he disbelieves and abhor[s] i…" +06/27/2018,Politicians,@senorrinhatch,"HATCH on the #JANUS decision: + +""Since the late 1970s, I have fought to protect the rights of workers against union… https://t.co/LjprvgLRkP" +06/27/2018,Politicians,@senorrinhatch,"The Supreme Court could deliver a ruling on Janus v. AFSCME today. + +HATCH: “the Supreme Court has the opportunity t… https://t.co/rAeLpW7yRn" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: These youths are quite lucky there was a security detail separating them from Secretary Chao. + +https://t.co/AP3CG2jQPx" +06/27/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: HATCH on Civility: ""I have said this many times before, but it bears repeating: Our words have consequences, and in an a…" +06/27/2018,Politicians,@senorrinhatch,RT @ReutersBiz: Automakers to warn Trump of $45 billion higher vehicle costs if tariff imposed https://t.co/Y6HD7FlUkS +06/26/2018,Politicians,@senorrinhatch,"These youths are quite lucky there was a security detail separating them from Secretary Chao. + +https://t.co/AP3CG2jQPx" +06/26/2018,Politicians,@senorrinhatch,@AshMcGonigal You must have missed last week. https://t.co/Jh710ACjaB +06/26/2018,Politicians,@senorrinhatch,"HATCH on Civility: ""I have said this many times before, but it bears repeating: Our words have consequences, and in… https://t.co/303cd5VrtM" +06/26/2018,Politicians,@senorrinhatch,"VIDEO: On the Senate floor this evening Senator Hatch paid tribute to his good friend, @FoxNews commentator Charles… https://t.co/VxCqmXnAJX" +06/26/2018,Politicians,@senorrinhatch,"HATCH on Charles Krauthammer: + +""I think we can all agree that civility took a beating this weekend. But perhaps th… https://t.co/WNqhzOVZ9l" +06/26/2018,Politicians,@senorrinhatch,"Raising awareness about Endometriosis knows no partisan bounds. + +Senator Hatch recently wrote an op-ed about why he… https://t.co/KfQuai2a18" +06/26/2018,Politicians,@senorrinhatch,"At 4:15 PM Senator Hatch will deliver brief remarks on the passing of his longtime friend Charles Krauthammer, ""a f… https://t.co/Csfp79xjb0" +06/26/2018,Politicians,@senorrinhatch,RT @GloblAutomkrs: .@SenOrrinHatch via @CBSMoneyWatch: “[A #car] is a significant financial commitment for most families … and I’m shocked… +06/26/2018,Politicians,@senorrinhatch,"RT @PIIE: .@OrrinHatch cites @PIIE’s study showing how Trump’s proposed 25 percent auto and auto parts tariffs would cause at least 195,000…" +06/26/2018,Politicians,@senorrinhatch,"RT @RightOnCrime: ""[W]ith targeted reforms to our prison system like those Senator Cornyn has proposed, we can reduce recidivism and give m…" +06/26/2018,Politicians,@senorrinhatch,RT @SFGMC: @SFGMC Artistic Director @tgseelig and Chorus members are guests of the @MormonTabChoir today for soundcheck at the @ShorelineAm… +06/26/2018,Politicians,@senorrinhatch,RT @DJJazzyJody: Proving you're never too old for second chances ... https://t.co/bJe8z4TDcx +06/26/2018,Politicians,@senorrinhatch,RT @JakeKUTV: Just an extra year. https://t.co/seVlzMJ4vh +06/25/2018,Politicians,@senorrinhatch,"""The tariffs have put a halt to the growth of the company--plans to buy a nearby building for possible expansion ar… https://t.co/DfZmtwblZI" +06/25/2018,Politicians,@senorrinhatch,"Our words have consequences, and in an age of retweets, viral videos and shareable content, those words often echo… https://t.co/dszwEZrptW" +06/25/2018,Politicians,@senorrinhatch,RT @malcolm_john: Kudos to @OrrinHatch for keeping mens rea reform as part of the #CriminalJusticeReform discussion. My take with @jseibler… +06/25/2018,Politicians,@senorrinhatch,RT @SenShelby: Remarkable day in the Senate! We have just approved a package of three appropriations bills through regular order. Proud of… +06/25/2018,Politicians,@senorrinhatch,"RT @SenateGOP: 🚨Breaking🚨 The Senate just passed a funding bill that will help: +▶︎ Address our nation’s energy and water development needs…" +06/25/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Jack's Ornamental Iron in Utah builds railings for apartment buildings. + +The increased cost of steel/ aluminum after t…" +06/25/2018,Politicians,@senorrinhatch,Great read from @JSeibler and @malcolm_john at @DailySignal on Senator Hatch's #CriminalJusticeReform efforts.… https://t.co/0qI3O4W3qo +06/25/2018,Politicians,@senorrinhatch,"RT @SenateGOP: When tax reform was passed, there were estimates that it would create 1 million jobs. Just six months after #TaxReform was s…" +06/25/2018,Politicians,@senorrinhatch,@A_M_Dolan @senatorshoshana This is all true. +06/25/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: .@bhenergy will share $3.8 million in savings with Nebraska-area natural gas customers thanks to #taxreform https://t.c… +06/25/2018,Politicians,@senorrinhatch,RT @kslmrichards: I am working on the story now. Listen on @kslnewsradio as you grab lunch or drive home. https://t.co/fnChUSCS0x +06/25/2018,Politicians,@senorrinhatch,"Students (young wizards) are learning science, technology, engineering, and math from + +Clark Planetarium +Nat. Histo… https://t.co/w99iH3dgux" +06/25/2018,Politicians,@senorrinhatch,"This is a wonderful, creative way to help Utah kids gain more exposure to critical STEM education. + +More about wha… https://t.co/CTEOOSAWIJ" +06/25/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Ahead of the Finance Committee Hearing with @HHSGov Secretary Azar tomorrow, Chairman @senorrinhatch writes in @rollcall…" +06/25/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: Today Senator Hatch spoke out in support of 3 criminal justice reform measures: + +☑️ Mens rea reform https://t.co/OjjLU…" +06/25/2018,Politicians,@senorrinhatch,@KyleKashuv @benshapiro @DLoesch @guypbenson @rpetty Very much looking forward to it. https://t.co/7IwQh954Su +06/25/2018,Politicians,@senorrinhatch,"We all bear responsibility in some way for the current state of politics, and the lack of civility. + +And because o… https://t.co/MTPWKOWzCh" +06/25/2018,Politicians,@senorrinhatch,"This is a very bad, dangerous idea. + +Debate and even disagreement is critical to the American experiment. But when… https://t.co/EtlYRUg9hC" +06/24/2018,Politicians,@senorrinhatch,"RT @davidaxelrod: I was moved to join the @CNN Town Hall on suicide prevention, moderated by Anderson Cooper, which airs tonight at 7 EST.…" +06/24/2018,Politicians,@senorrinhatch,If we are splitting into Republican restaurants and Democrat restaurants can we keep the Chuck-a-Rama all you can e… https://t.co/IMUOUGWRLS +06/23/2018,Politicians,@senorrinhatch,"“Amid harsh words and suspicion elsewhere, celebration of World Refugee Day showcases the Beehive State’s open, wel… https://t.co/UFqon4ZCIj" +06/23/2018,Politicians,@senorrinhatch,"Happy 70th birthday to Justice Clarence Thomas. Many MANY happy returns. + +On the 25th anniversary of Justice Thomas… https://t.co/1ud4hCXGpT" +06/23/2018,Politicians,@senorrinhatch,"RT @VP: Welcomed @SenOrrinHatch, @SenMikeLee, and 100+ state & local elected officials from Idaho and Utah to the @WhiteHouse today. @POTUS…" +06/23/2018,Politicians,@senorrinhatch,This is great news. https://t.co/NCFXYRze2Y +06/22/2018,Politicians,@senorrinhatch,"Jack's Ornamental Iron in Utah builds railings for apartment buildings. + +The increased cost of steel/ aluminum af… https://t.co/YhciDp8iX4" +06/22/2018,Politicians,@senorrinhatch,"Today Senator Hatch spoke out in support of 3 criminal justice reform measures: + +☑️ Mens rea reform… https://t.co/6aDwEdke52" +06/22/2018,Politicians,@senorrinhatch,"@revansCAAD8 Senator Hatch is in the Senate, not the House. + +The Senate did not vote on the Goodlatte bill." +06/22/2018,Politicians,@senorrinhatch,"Great news for Utah! #utpol + +https://t.co/ykYcWsG5kp" +06/22/2018,Politicians,@senorrinhatch,Senator Hatch honoring Utah county commissioners and legislators at the White House today — #utpol https://t.co/c0e0nXKSRv +06/22/2018,Politicians,@senorrinhatch,"RT @SenateGOP: Let’s talk results. It’s been six months since tax reform was signed into law, and the unemployment rate is currently at an…" +06/22/2018,Politicians,@senorrinhatch,@mike_Zollo This is all patently false and you are spreading misinformation. +06/22/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Just In: Chairman Hatch announces hearing for IRS Nominee Charles Rettig https://t.co/RLxGOFMfFz +06/22/2018,Politicians,@senorrinhatch,"RT @StevenTDennis: The Republican chairman of the Finance Committee, Orrin Hatch, also demanded the return of the children this morning. ht…" +06/21/2018,Politicians,@senorrinhatch,"Great news in this statement from HHS about reuniting separated families: + +""Reunification is always the ultimate go… https://t.co/JDg0w59kuW" +06/21/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Senate Finance GOP to @secretaryross: Tariffs hurt Americans. More: https://t.co/WkZpnEEczf +06/21/2018,Politicians,@senorrinhatch,"RT @KyleKashuv: Senator OG Hatch (@senorrinhatch) will be at @TPUSA #HSLS2018! Will you be there? + +Apply today! https://t.co/LPIJFVGunG ht…" +06/21/2018,Politicians,@senorrinhatch,"""We need to be humane, but we also need to enforce our laws. Separating children from their parents is inhumane. Ke… https://t.co/nRc5rXBwAV" +06/21/2018,Politicians,@senorrinhatch,Senator Hatch is speaking now about the importance of yesterdays' executive order to keep families together.. but A… https://t.co/tlW2IumtRU +06/21/2018,Politicians,@senorrinhatch,Senator Hatch is pleased to support the Keep Families Together and Enforce the Law Act by @SenThomTillis. He will b… https://t.co/lVmScNvI1V +06/21/2018,Politicians,@senorrinhatch,@sylviaharo1 Yes. +06/21/2018,Politicians,@senorrinhatch,"RT @FoxNews: .@Varneyco: ""The real big story that affects everybody in America is the success of @POTUS's tax cut package and what it's don…" +06/21/2018,Politicians,@senorrinhatch,"“More than ever before, Americans can expect things to be better tomorrow than they are today.” + +Yesterday Hatch t… https://t.co/4dsf3V902o" +06/21/2018,Politicians,@senorrinhatch,RT @SenateGOP: Senate Republicans are getting things done for the American people. https://t.co/EMcFQ9zi8R +06/21/2018,Politicians,@senorrinhatch,"“I just don’t see how the damage posed on all of these sectors could possibly advance our national security.""… https://t.co/BGKSFfe54r" +06/21/2018,Politicians,@senorrinhatch,"“Mexico is the largest export market for US pork, including pig farmers in Utah. Mexico announced it will impose ta… https://t.co/YLmWxxvfWE" +06/21/2018,Politicians,@senorrinhatch,Earlier today Senator Hatch took the Trump administration to task for the devastating impact the President’s propos… https://t.co/F3JOKHWjvw +06/21/2018,Politicians,@senorrinhatch,"If that’s the world’s most important human rights body.. we need better human rights bodies. + +Perhaps one that isn… https://t.co/lISE6rnPac" +06/21/2018,Politicians,@senorrinhatch,"RT @openletterbot: Here’s an open letter from Leslie in Slc, UT to @SenOrrinHatch #FamiliesBelongTogether https://t.co/jopqFLrHcP" +06/21/2018,Politicians,@senorrinhatch,The President just spoke about the need for merit-based immigration to fill high-skilled jobs in our booming econom… https://t.co/ZIT1kEg5lR +06/20/2018,Politicians,@senorrinhatch,The President made the right choice today by stopping the inhumane policy of separating children from their familie… https://t.co/xxdFtFGw9J +06/20/2018,Politicians,@senorrinhatch,"Hatch: “Know that you are taxing American families, you are putting American jobs at risk, and you are destroying m… https://t.co/xAqHvN1SSF" +06/20/2018,Politicians,@senorrinhatch,RT @FreeTradeBryan: Thread on @SenateFinance testimony from @SecretaryRoss today. All quotes are paraphrased. From @OrrinHatch : As a conse… +06/20/2018,Politicians,@senorrinhatch,RT @senorrinhatch: Valuable deep-dive from @gabrielmalor-- Democrats’ Border Separation Bill Would Let Nearly All Parents Who Commit Federa… +06/20/2018,Politicians,@senorrinhatch,"RT @McConnellPress: .@SenateMajLdr McConnell cosponsors the “Keep Families Together and Enforce the Law Act,” which keeps families together…" +06/20/2018,Politicians,@senorrinhatch,"RT @taxfoundation: .@senorrinhatch: ""Automobile #tariffs are a tax on American families. And the Tax Foundation agrees, estimating that aut…" +06/20/2018,Politicians,@senorrinhatch,"This must be awkward for you guys. + +Obviously a lot of things contributed to POTUS’ decision to halt family separat… https://t.co/0cLb0e2Y8Y" +06/20/2018,Politicians,@senorrinhatch,Done. https://t.co/peJbv1UeoA +06/20/2018,Politicians,@senorrinhatch,"After successfully calling on the President to pause family separations, Senator Hatch is supporting legislative pr… https://t.co/OUAuYeaz3T" +06/20/2018,Politicians,@senorrinhatch,ICYMI-- Yesterday Hatch and 12 of his colleagues called on the President to end these separations so Congress could… https://t.co/HTa78konWx +06/20/2018,Politicians,@senorrinhatch,"""The onus is on us now to work quickly to fix these problems, and I look forward to working with my colleagues on t… https://t.co/bYTmcI75lT" +06/20/2018,Politicians,@senorrinhatch,"HATCH on executive order: ""I appreciate the President’s willingness to listen to us on this issue. We all understan… https://t.co/ZcgSboMoOt" +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: Find Hatch's full remarks here: https://t.co/Zou0R0suS1 +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman @senorrinhatch: “…Optimism, along with lower costs of increasing investments and doing business, has already st…" +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman Hatch marking the six-month anniversary of #taxreform: : ""As business investment & productivity pick up...wage…" +06/20/2018,Politicians,@senorrinhatch,RT @DNewsPolitics: Read about Hatch letter seeking halt to family separations at the border -- and Utah delegation reaction to @realDonaldT… +06/20/2018,Politicians,@senorrinhatch,As Hatch @SenJohnMcCain @SenPatRoberts @SenatorCollins @lisamurkowski @SenBobCorker @SenAlexander @JohnBoozman… https://t.co/MEHXQESJOE +06/20/2018,Politicians,@senorrinhatch,"RT @AlexLimonNews: #BREAKING POTUS says ""I'll be signing something in a little while"" to end family separations, White House pool reports.…" +06/20/2018,Politicians,@senorrinhatch,@sagcat Please refer to our entire twitter feed. You’ll find it at @senorrinhatch +06/20/2018,Politicians,@senorrinhatch,@Reagan_Girl Sponsoring and co-sponsoring over a dozen different immigration bills to fix it. +06/20/2018,Politicians,@senorrinhatch,"@cbeilinson @seungminkim Please refer to our entire twitter feed. + +https://t.co/60c61kBqiU +https://t.co/x9DcI0ZhD6… https://t.co/E8mf3PFstV" +06/20/2018,Politicians,@senorrinhatch,"Huge if true. + +https://t.co/k1XcfT5DbB" +06/20/2018,Politicians,@senorrinhatch,This would be the right move. Senator Hatch has asked @realDonaldTrump and the Justice Department to pause these se… https://t.co/PFZFleJCVY +06/20/2018,Politicians,@senorrinhatch,"The proper response to a crisis is not hasty legislating. While Hatch agrees with ideas in that bill, there are fl… https://t.co/FfVgnxfyQd" +06/20/2018,Politicians,@senorrinhatch,"RT @jendeben: Impressive fact sheet here from @senorrinhatch on the ""232 backlash"" and global retaliation for steel and aluminum tariffs ah…" +06/20/2018,Politicians,@senorrinhatch,"RT @ITI_TechTweets: The tech industry agrees with you, @senorrinhatch – we are also not a fan of tariffs and believe they are a mistake. Fr…" +06/20/2018,Politicians,@senorrinhatch,"RT @HMNorthey: .@senorrinhatch blasts Trump's steel, alum tariffs, says they're drying up contracts for steel companies, slowing chemical p…" +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: Chairman @senorrinhatch to @SecretaryRoss: “As you consider these tariffs, know that you are taxing American families, y…" +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: @SecretaryRoss Chairman @senorrinhatch: “These actions target our allies…with whom our trade in steel and aluminum produ… +06/20/2018,Politicians,@senorrinhatch,"RT @GOPSenFinance: HAPPENING NOW: The Finance Committee is convening a hearing to discuss new tariffs, quotas with @SecretaryRoss. Watch: h…" +06/20/2018,Politicians,@senorrinhatch,RT @MariannaNBCNews: Sen. Hatch & other senators sent a letter to AG Session yesterday asking him to halt separations like this until Congr… +06/20/2018,Politicians,@senorrinhatch,RT @GOPSenFinance: @senorrinhatch @SecretaryRoss What is Section 232 of the Trade Expansion Act of 1962? Fast facts on steel and aluminum t… +06/20/2018,Politicians,@senorrinhatch,"RT @SenateMajLdr: I support, and all of the members of the Republican Conference support, a plan that keeps families together while their i…" +06/20/2018,Politicians,@senorrinhatch,RT @KSLAndrew: NEW: @senorrinhatch leads Utah delegation in calling for an end to the child separation policy being enforced. @KSL5TV #KSLA… +06/20/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: In addition to calling on the administration to halt family separations while Congress works on a legislative solution,…" +06/20/2018,Politicians,@senorrinhatch,RT @senorrinhatch: NEWS: Hatch @SenJohnMcCain @SenPatRoberts @SenatorCollins @lisamurkowski @SenBobCorker @SenAlexander @JohnBoozman @SenDe… +06/20/2018,Politicians,@senorrinhatch,"RT @senorrinhatch: America is better than this inhumane, anti-family zero-tolerance policy. That's why Hatch and 12 other Republican Senato…" +06/20/2018,Politicians,@senorrinhatch,"“Tender age shelters” is a chilling phrase we will not soon forget. + +The child separation policy should be halted… https://t.co/3xE07l0esP" +06/20/2018,Politicians,@senorrinhatch,RT @senrobportman: Proud to join my colleagues in signing on to @senorrinhatch letter urging @TheJusticeDept to stop the practice of separa… +06/19/2018,Politicians,@senorrinhatch,"Perhaps one of the most important insights: ""Panicky lawmaking often produces absurd results."" + +All the more reaso… https://t.co/F2QkTHmPQR" +06/19/2018,Politicians,@senorrinhatch,Valuable deep-dive from @gabrielmalor-- Democrats’ Border Separation Bill Would Let Nearly All Parents Who Commit F… https://t.co/APEAht2m7e +06/19/2018,Politicians,@senorrinhatch,In addition to calling on the administration to halt family separations while Congress works on a legislative solut… https://t.co/BGiyz4ePVE +06/19/2018,Politicians,@senorrinhatch,RT @SenBobCorker: Joined @senorrinhatch and 11 of our colleagues today in calling on the Justice Department to halt family separations whil… +06/19/2018,Politicians,@senorrinhatch,RT @MicahTNDC: NEW: @SenBobCorker joins @senorrinhatch-led letter to Attorney General Sessions calling for a halt to the practice of separa… +06/19/2018,Politicians,@senorrinhatch,RT @SenatorLankford: I have joined 12 of my colleagues in calling on Attorney General Jeff Sessions & the Dept. of Justice to halt family s… +06/19/2018,Politicians,@senorrinhatch,"RT @edokeefe: JUST IN: @OrrinHatch sends letter to asking DOJ to stop separating immigrant families ""while Congress works out a solution.""…" +06/19/2018,Politicians,@senorrinhatch,"RT @DeseretNews: The letter concludes by saying @OrrinHatch and the 12 other @GOP senators who signed it ""believe a reasonable path forward…" +06/19/2018,Politicians,@senorrinhatch,"The final letter that went to AG Sessions, complete with signatures from @SenJohnMcCain @SenPatRoberts… https://t.co/rifmOqix9e" +06/19/2018,Politicians,@senorrinhatch,RT @KUTV2News: @senorrinhatch and 12 other #Republican senators have signed a letter to the Justice Department asking Jeff Sessions to halt… +06/19/2018,Politicians,@senorrinhatch,An interesting contrast from our focus on stopping these terrible separations as soon as possible.… https://t.co/TIDEnvfD2k +06/19/2018,Politicians,@senorrinhatch,"America is better than this inhumane, anti-family zero-tolerance policy. That's why Hatch and 12 other Republican S… https://t.co/lwLTvP0mgb" +06/19/2018,Politicians,@senorrinhatch,"RT @NBCNews: NEW: Sen. Hatch and 11 other Republican senators send letter to AG Sessions, calling on Justice Dept. ""to halt family separati…" +06/19/2018,Politicians,@senorrinhatch,@CoriAStevens Done. https://t.co/12Az53kxwO +06/19/2018,Politicians,@senorrinhatch,"RT @abc4utah: .@senorrinhatch, 12 senators call on Justice Dept. to stop family separations while Congress works on a solution: https://t.c…" +06/19/2018,Politicians,@senorrinhatch,RT @SenDeanHeller: I along with 11 of my colleagues today urged U.S. Attorney General Jeff Sessions to stop the practice of separating fami… +06/19/2018,Politicians,@senorrinhatch,RT @Phil_Mattingly: 12 GOP Sens sign onto @senorrinhatch’s letter asking DOJ to freeze it’s “zero tolerance” policy as Hill works to addres… +06/19/2018,Politicians,@senorrinhatch,RT @SenatorCollins: I joined 12 colleagues led by @senorrinhatch calling on the Administration to stop separating children from their paren… +06/19/2018,Politicians,@senorrinhatch,RT @sahilkapur: 12 GOP senators send a letter to AG Sessions asking him to halt family separation out of “human decency” as Congress works… +06/19/2018,Politicians,@senorrinhatch,RT @seungminkim: The Senate Rs who disagree with the admin and believe Trump can temporarily halt zero-tolerance policy (and have written t… +07/02/2018,Economists,@DeanBaker13,right -- he was only able to get the sale tax exemption for Amazon -- couldn't evade the income tax for his workers https://t.co/hy3dF1AqhR +07/02/2018,Economists,@DeanBaker13,"They are getting taxpayer subsidies -- that why we should care -- but if you juts want to give them your money, I d… https://t.co/us8rLWjFvC" +07/02/2018,Economists,@DeanBaker13,great time for another big @washingtonpost story on how NAFTA has led to a thriving middle class in Mexico… https://t.co/57Hm6U4x6N +07/02/2018,Economists,@DeanBaker13,"RT @hardindr: @APKeyton @yogawithcorrie @DeanBaker13 @gatesfoundation @CNBC @BillGates No, he did it through government enforced, copyright…" +07/02/2018,Economists,@DeanBaker13,"Right, workers in the U.S. pay taxes even if they work for Bill Gates -- most of them are probably not so incompete… https://t.co/jrHPu22zMc" +07/02/2018,Economists,@DeanBaker13,I'm sure @realDonaldTrump has warmly congratulated Obrador https://t.co/guncPxQAyC +07/02/2018,Economists,@DeanBaker13,RT @ceprdc: #AMLO has just won the presidential election in Mexico. Check out our live blog for the latest in the #MexicanElection. #Mexico… +07/02/2018,Economists,@DeanBaker13,"yeah, imagine that -- the Democrats are having this big civil war and none of the people we know were invited. Now… https://t.co/v48wobaIIG" +07/02/2018,Economists,@DeanBaker13,Good to see Timothy Geithner is doing well https://t.co/pTRGoy1gl8 I suppose Barack Obama is happy for his former Treasury Secretary +07/02/2018,Economists,@DeanBaker13,RT @janellecj: They definitely don’t deserve him. But you are not going to win a sports argument with a northeast Ohio fandom. Because we h… +07/01/2018,Economists,@DeanBaker13,RT @PolisWoke: @ARVRRob @DeanBaker13 @Noahpinion Stiglitz also thought TPP faulty having very little to do with actual trade. +07/01/2018,Economists,@DeanBaker13,"Come on, folks who aren't that competent have to be able to make money somehow. Isn't this why we have the governme… https://t.co/0rpZmjB6ex" +07/01/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Lots of reports of polling places opening late in various areas of Mexico State and Mexico City. Check @TheAmericasBlog liv… +07/01/2018,Economists,@DeanBaker13,"@RJS_1234 @paulkrugman hey, great minds think alike. Pretty funny we both said this." +07/01/2018,Economists,@DeanBaker13,"sure, as many have pointed out, truck driving is hard work -- long days, long periods away from family. And, it's d… https://t.co/8dGs6qGkrB" +07/01/2018,Economists,@DeanBaker13,"It actually is a fair chunk when you consider not just the CEO, but the excess pay for the top 20-30 execs. The sha… https://t.co/fEXHV5Wc8F" +07/01/2018,Economists,@DeanBaker13,"RT @ARVRRob: @Noahpinion @DeanBaker13 had some valid criticisms of TPP, nothing having to do with refugees as I recall. He was more concern…" +07/01/2018,Economists,@DeanBaker13,"@zapradon It may well be better to get labor, but it is pretty hard to make a coherent argument that shareholders s… https://t.co/wHUxXW4iIL" +07/01/2018,Economists,@DeanBaker13,"RT @gaviota330: WOODY NEEDS HERO! +ID#30517 +HE IS A VERY SWEET BOY! +#NYC ACC 2 KILL 7/2 +NYC ACC TOLD RESCUE OWNER WOULD PICK HIM UP +IT NEVER…" +07/01/2018,Economists,@DeanBaker13,RT @danpfeiffer: Finally a potential championship team that would be willing to visit Trump at the White House https://t.co/TMbNJJfoJi +07/01/2018,Economists,@DeanBaker13,"That would be good, but we have to make the directors, who most immediately set the pay in the first place, suffer… https://t.co/tHgohKzeAh" +07/01/2018,Economists,@DeanBaker13,"Prof Thaler, my thoughts on this issue are guided in part by work of a former professor, Barry Schwartz. He examine… https://t.co/tmPSVyOvBy" +07/01/2018,Economists,@DeanBaker13,"this piece may be helpful https://t.co/GItX8anOct We have tens of thousands of tiny corporations, The bib bucks are… https://t.co/yzBrg65b3G" +07/01/2018,Economists,@DeanBaker13,@washingtonpost is not the only news outlet owned by a billionaire that is terrified by the idea of truckers earnin… https://t.co/PZ8mCmzerb +07/01/2018,Economists,@DeanBaker13,"yes, well the Democrats could get a Nobel prize in political incompetence, but they could lose an election regardle… https://t.co/xWs4wHebXJ" +07/01/2018,Economists,@DeanBaker13,Probably the simplest would be a discussion of the 16.5% growth under the wimp Jimmy Carter in the second quarter o… https://t.co/StFu4PYPoW +07/01/2018,Economists,@DeanBaker13,"RT @LisaBrabson: PRECIOUS JOKER IS STILL WAITING FOR HIS FOREVER HOME! IF THIS LOVING LITTLE GUY DOESN'T MAKE U SMILE, NOTHING WILL! #ADOPT…" +07/01/2018,Economists,@DeanBaker13,@becks67 we're subsidizing Gates' outfit with a variety of tax privileges. If you want to know what we're subsidizing look on his website +07/01/2018,Economists,@DeanBaker13,"we need people who innovate, not people who violate anti-trust laws to make themselves rich. (we already have plent… https://t.co/opa69hD09v" +06/30/2018,Economists,@DeanBaker13,"@atrupar Right, and according to Rudy Giuliana, he is too busy golfing there is give testimony to Mueller" +06/30/2018,Economists,@DeanBaker13,RT @virginiarutter: #FamiliesBelongTogetherDC https://t.co/oXrRsphAOE +06/30/2018,Economists,@DeanBaker13,RT @Ballymagibbon: Roger Goodell made about $32 million in 2015 and the NFL is a tax exempt organization. https://t.co/S47b6A5CIM +06/30/2018,Economists,@DeanBaker13,"well, I'm a fan of having research in the public domain, but in a glance the implication is that Norway had been mu… https://t.co/64S6CQwgfs" +06/30/2018,Economists,@DeanBaker13,"@becks67 Fine, Gates can give them all the money he wants, I'm just asking why the taxpayers have to subsidize him" +06/30/2018,Economists,@DeanBaker13,@R_Thaler In principle foundations are engaged in activities to further the public good -- no pretense of that with… https://t.co/JltoTfgd7v +06/30/2018,Economists,@DeanBaker13,"In many cases, yes -- probably better they play with stocks and derivatives than obstruct the work of a major found… https://t.co/fpyXkDPNX8" +06/30/2018,Economists,@DeanBaker13,RT @jodiecongirl: @yogawithcorrie @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates *raises hand* how do I get put on this… +06/30/2018,Economists,@DeanBaker13,"RT @ceprdc: There is a fundamental flaw in the way that both Donald Trump and his critics generally talk about trade, writes @DeanBaker13.…" +06/30/2018,Economists,@DeanBaker13,"RT @yogawithcorrie: @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates I'm know really smart, educated, passionate women who…" +06/30/2018,Economists,@DeanBaker13,"so you think non-profit spending would go to zero without the tax subsidy? FWIW, the federal government has no prob… https://t.co/bBXR0DPpRs" +06/30/2018,Economists,@DeanBaker13,Thanks -- I don't take it personally. No two people will agree on everything https://t.co/pouzJZtTQX +06/30/2018,Economists,@DeanBaker13,here you go https://t.co/4gtfUObfKH https://t.co/bj4P9nKjQk +06/30/2018,Economists,@DeanBaker13,"yes, it would be great for the government to directly develop some drugs and then place them in public domain to be… https://t.co/qc6qOwIkW3" +06/30/2018,Economists,@DeanBaker13,"that's wonderful -- but if they can't get good help for less than $400k, then they can do their work without the ta… https://t.co/FMghY6DGCI" +06/30/2018,Economists,@DeanBaker13,"@APKeyton @gatesfoundation @BillGates @melindagates on the point on CEO pay, we do have an enormous problem of corr… https://t.co/Ut4yysR00T" +06/30/2018,Economists,@DeanBaker13,"So if taxpayers don't subsidize basketball (unfortunately we do), in your world we are ""discouraging"" basketball, w… https://t.co/NNCvMTq35L" +06/30/2018,Economists,@DeanBaker13,show your work. How have you determined that we get more from our subsidies to non-profits than if the government s… https://t.co/R7jHNiNxtl +06/30/2018,Economists,@DeanBaker13,"I know many outstanding people who do ""great things"" for much less than $400k. If the Gates Foundation can't find a… https://t.co/X9X6BHSZ0G" +06/30/2018,Economists,@DeanBaker13,@davidfrum @TheAtlantic Amazing how many pieces get published recycling the same bad argument about how the trade d… https://t.co/3OI7Mp8VKL +06/30/2018,Economists,@DeanBaker13,"fine, they can improve those https://t.co/KuWt38fkTJ" +06/30/2018,Economists,@DeanBaker13,"how about ""start"" wherever you can.Usually advice on starting points is about creating a stopping point. And in my… https://t.co/O5795ud9RT" +06/30/2018,Economists,@DeanBaker13,RT @01wise: @DeanBaker13 I look at the 990s and will not contribute to or work for a nonprofit that overpays its execs. +06/30/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Yes, and something that can be done at the state or local level. It would be great to see some charity pick and up move be…" +06/30/2018,Economists,@DeanBaker13,RT @tedhattemer: .@senrobportman Why the Tax Act Will Not Boost Investment: https://t.co/MUs8VagwTn @theprospect @DeanBaker13 +06/30/2018,Economists,@DeanBaker13,RT @nycsouthpaw: It’s not said often enough that there’s a broad spectrum of apparent wrongdoing by Trump and his family outside of the Ru… +06/30/2018,Economists,@DeanBaker13,@ClancyReports I'm sure that's an important credential to @realDonaldTrump. But Paul Ryan and Mitch McConnell say i… https://t.co/LrUJo445so +06/30/2018,Economists,@DeanBaker13,Funny how reporters don't seem to ask about this. https://t.co/rW9lAgwzxw +06/30/2018,Economists,@DeanBaker13,"RT @MilesGrant: The largest US trucking company, Knight-Swift, had a 2017 net income of $485M. Maybe they could afford to pay to train new…" +06/30/2018,Economists,@DeanBaker13,"RT @drlisadcook: Yes! Better 100 years late than never, US Senate. The Dyer Anti-Lynching Bill was introduced in 1918 and 1922. It was pass…" +06/30/2018,Economists,@DeanBaker13,"Maybe I'll recycle one of the old ones. @TheAtlantic can't afford to pay for original arguments, why should I both… https://t.co/0Jevhj19bL" +06/30/2018,Economists,@DeanBaker13,"Exactly, but the @washingtonpost is too busy focusing on how truckers might get a pay increase to pay attention to… https://t.co/iR8agAUZMT" +06/30/2018,Economists,@DeanBaker13,"Yes, and something that can be done at the state or local level. It would be great to see some charity pick and up… https://t.co/iFmtdjUD41" +06/30/2018,Economists,@DeanBaker13,RT @TAOWhiteboard: Of a part with the populism elsewhere. Difference is those disenfranchised in Mexico are pointing at the economic elite… +06/30/2018,Economists,@DeanBaker13,"RT @JimZarroli: @DeanBaker13 says ""there is zero evidence anywhere of an investment boom induced by the tax cut."" + +https://t.co/KKuOouqiRf" +06/30/2018,Economists,@DeanBaker13,RT @DeanBaker13: Six months in and reality TV show host @realDonaldTrump is still keeping the investment boom from his tax cut hidden https… +06/30/2018,Economists,@DeanBaker13,"RT @DeanBaker13: Under the ""Baker Rule"" they lose tax exempt status if they pay the boss more than the president's $400k. If they can't fin…" +06/30/2018,Economists,@DeanBaker13,"Hey, they take their lead from the president. He didn't know there were more than two amendments. (And, he's not su… https://t.co/zw9hhJUBZx" +06/30/2018,Economists,@DeanBaker13,It's the sort of incredibly confused piece that makes you really really wish we had more open trade in professional… https://t.co/hEYsEgRqw4 +06/30/2018,Economists,@DeanBaker13,"RT @DavidCayJ: How about @DCReportMedia which has broken story after story. We’re nonprofit, no advertising, covering what Trump does, not…" +06/30/2018,Economists,@DeanBaker13,Six months in and reality TV show host @realDonaldTrump is still keeping the investment boom from his tax cut hidden https://t.co/iRJ7HuHFbV +06/30/2018,Economists,@DeanBaker13,As Mexico is about elect a left-wing populist in a landslide everyone is looking forward to another @washingtonpost… https://t.co/Ici35B8LK3 +06/30/2018,Economists,@DeanBaker13,The @washingtonpost is very upset that truckers might get higher pay -- maybe wages will even rise all the way back… https://t.co/jTIfuiqCb1 +06/30/2018,Economists,@DeanBaker13,That's what happens when you rig the system to give all the money to Bill Gates and Jeff Bezos https://t.co/es2oZg4PBn +06/30/2018,Economists,@DeanBaker13,"Under the ""Baker Rule"" they lose tax exempt status if they pay the boss more than the president's $400k. If they ca… https://t.co/Lpl2JV5UaV" +06/30/2018,Economists,@DeanBaker13,"It's not really down, its weak measured as a share of economy. It will take more demand growth to get more. Likely… https://t.co/uJKqa684Cv" +06/30/2018,Economists,@DeanBaker13,"@TheRunUp2020 Yes, trade is going to produce winners and losers in both countries. That's the standard economics. T… https://t.co/7pBJZqkBjS" +06/30/2018,Economists,@DeanBaker13,"RT @greenrya004: @marklemley It’s time for a different mechanism for financing innovation. What do you think, @DeanBaker13? + +https://t.co/S…" +06/30/2018,Economists,@DeanBaker13,"RT @NewYorker: In 2012, Israel approved 92% of medical permits for Gazans. But, since the beginning of 2018, with no announcement of a chan…" +06/30/2018,Economists,@DeanBaker13,RT @banditelli: This is the labor movement I signed up for https://t.co/AL99HduEPf +06/30/2018,Economists,@DeanBaker13,"@les_mos right, far more important than NAFTA" +06/30/2018,Economists,@DeanBaker13,RT @ryangrim: Good thread here. Moulton clearly has leadership aspirations... https://t.co/SaX4FRPfBn +06/30/2018,Economists,@DeanBaker13,RT @DeanBaker13: A pattern of lying about NAFTA and trade by elite news outlets like the @washingtonpost helped pave the way for demagogues… +06/30/2018,Economists,@DeanBaker13,We look at employment levels in manufacturing and note the sharp unprecedented fall in the years 2000-2007 that cor… https://t.co/3KAK4aQDE0 +06/30/2018,Economists,@DeanBaker13,"RT @SethHanlon: 4. Six months later, there is no sign of the enormous investment boom that tax cut proponents promised. + +--from “Why the Ta…" +06/30/2018,Economists,@DeanBaker13,Can't take credit on this one https://t.co/DfjN759D7u +06/30/2018,Economists,@DeanBaker13,"no, it isn't. You have to adjust for inflation https://t.co/uI3KnbRgf5" +06/29/2018,Economists,@DeanBaker13,RT @elvislevel: @mattyglesias @DeanBaker13 If they were having trouble finding CEOs offered salaries would be infinity by now. +06/29/2018,Economists,@DeanBaker13,"This is an important corrective to the idea that somehow Mexico ""won"" with NAFTA. Rich people in both countries won… https://t.co/GDJ5Mrj9P9" +06/29/2018,Economists,@DeanBaker13,"RT @SlateUnion: 1/ After weeks of bargaining, we’re proud to say we’ve made progress with management on many key issues. We’re also, frankl…" +06/29/2018,Economists,@DeanBaker13,"RT @mattyglesias: Some useful context on the truck driver shortage from @DeanBaker13 who notes that despite a decade of rising pay, the sec…" +06/29/2018,Economists,@DeanBaker13,RT @ceprdc: Really? Wapo claims: America’s severe trucker shortage could undermine the prosperous economy. @DeanBaker13 replies: the real h… +06/29/2018,Economists,@DeanBaker13,Thanks Jim https://t.co/c2Mt0ZQDeN +06/29/2018,Economists,@DeanBaker13,It's not always easy in Washington to be able to tell which way is up. https://t.co/gL1FXtZ0xm +06/29/2018,Economists,@DeanBaker13,RT @LoganMohtashami: @DeanBaker13 https://t.co/1St2eSALlW +06/29/2018,Economists,@DeanBaker13,arguably the late 1990s. The point is that when labor markets get tight companies have incentive to economize on la… https://t.co/wflVYsB307 +06/29/2018,Economists,@DeanBaker13,"@S_G_Alexander @washingtonpost @realDonaldTrump My guess is they are ill-informed, but they like the conclusion of… https://t.co/WNIyZpT3lG" +06/29/2018,Economists,@DeanBaker13,"Yes, it often does. If people get more unnecessary tests and procedures or ineffective drugs that would increase me… https://t.co/I3C061sOAB" +06/29/2018,Economists,@DeanBaker13,RT @DeanBaker13: With a left-wing candidate about to be elected president in Mexico isn't time for the @washingtonpost to have another piec… +06/29/2018,Economists,@DeanBaker13,"RT @jamieson: Oh no, exploited truckers might get raises. cc @DeanBaker13 https://t.co/YHuJtM0pbe" +06/29/2018,Economists,@DeanBaker13,"I didn't say ""flat,"" we have had unusually SLOW productivity growth over the last 12 years. It was much more rapid… https://t.co/NAl47de9Xa" +06/29/2018,Economists,@DeanBaker13,RT @DavidCayJ: Larry is either lying or being willfully blind so Donald keeps him. Deficit is exploding as @DCReportMedia showed this week.… +06/29/2018,Economists,@DeanBaker13,A pattern of lying about NAFTA and trade by elite news outlets like the @washingtonpost helped pave the way for dem… https://t.co/GoWpT434ms +06/29/2018,Economists,@DeanBaker13,The @washingtonpost is worried that in a tight labor market truckers' pay could rise back to its 1990 levels https://t.co/QWcUysxqx5 +06/29/2018,Economists,@DeanBaker13,RT @DeanBaker13: it would interesting to see if the NYT or WaPo would allow a columnist to so badly misrepresent data in a way that reflect… +06/29/2018,Economists,@DeanBaker13,"I think demand is a big factor, but that is not the standard view among economists. https://t.co/oA7LydhUay" +06/29/2018,Economists,@DeanBaker13,The @washingtonpost is really really concerned that truckers might get more money due to the market. They don't hav… https://t.co/AIpFJ6hArv +06/29/2018,Economists,@DeanBaker13,I have no idea what you think you're saying. You're arguing that productivity growth will be zero going forward? St… https://t.co/Hjpv1yGfx5 +06/29/2018,Economists,@DeanBaker13,of course given the protections that drive up prices (e.g. patent monopolies and licensing restrictions that limite… https://t.co/3Yy6VVC9Vx +06/29/2018,Economists,@DeanBaker13,"they was a fall in 2008-09 due to the recession, since then shares haven't changed much https://t.co/PTTc7kC0yj" +06/29/2018,Economists,@DeanBaker13,"actually, we don't see much automation -- productivity growth has been very slow in the last decade. That has in fa… https://t.co/YlXtSumVaE" +06/29/2018,Economists,@DeanBaker13,RT @ryangrim: This is horrifying. Tweet found by Nathan Kosted: https://t.co/DRziZtOzIs https://t.co/UvkVc1N8Jc +06/29/2018,Economists,@DeanBaker13,"comment, they just have to adopt the name everyone else uses for them, ""No Way"" https://t.co/WkrZvEktH2" +06/29/2018,Economists,@DeanBaker13,RT @FAIRmediawatch: The reason millions of manufacturing workers lost their jobs in the first decade of the 21st century was decisions on… +06/29/2018,Economists,@DeanBaker13,"@Asif_H_Abdullah cool, sounds like a way to boost productivity growth. Hope you're right" +06/28/2018,Economists,@DeanBaker13,"@CCMarimba I have seen work years ago, but can't think of it offhand. My guess is that China is an important part… https://t.co/0B2APY79Lp" +06/28/2018,Economists,@DeanBaker13,it would interesting to see if the NYT or WaPo would allow a columnist to so badly misrepresent data in a way that… https://t.co/67pKpg6sjg +06/28/2018,Economists,@DeanBaker13,"sorry, meant to say 2004 -- longest period of zero growth on his graph https://t.co/W5Z8CT41ZF" +06/28/2018,Economists,@DeanBaker13,"@KarenRylander BLS has it here -- have to do some clicking through, but should be straightforward https://t.co/tNWiWeLNhb" +06/28/2018,Economists,@DeanBaker13,"@washingtonpost has yet another hysterical piece about the trucker shortage. Who are you going to believe, the truc… https://t.co/CofLlExSkh" +06/28/2018,Economists,@DeanBaker13,"yeah, the 2007 level is below the 2000 level -- this is the China trade effect https://t.co/e5efMad5Tc" +06/28/2018,Economists,@DeanBaker13,"There is a huge plunge in actual manufacturing employment levels, which is why people who are trying to deny the ef… https://t.co/fabP1ReIlY" +06/28/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Check out @TheAmericasBlog throughout the day Sunday for ongoing updates on the #MexicanElection #EleccionesMexico from obs… +06/28/2018,Economists,@DeanBaker13,"RT @MarkWeisbrot: It's not surprising that when the Trump administration fights with China, it fights for the owners of intellectual proper…" +06/28/2018,Economists,@DeanBaker13,@KarenRylander @FAIRmediawatch NAFTA didn't have much impact on overall manufacturing employment. although China di… https://t.co/1q1ENOLALT +06/28/2018,Economists,@DeanBaker13,"They obviously misspoke, they meant to say that Third Way means nothing for the future of the Democratic Party https://t.co/nuZde9CN92" +06/28/2018,Economists,@DeanBaker13,RT @FAIRmediawatch: Soaring Cost of Clues Leaves Thomas Friedman Apparently Unable to Buy One https://t.co/ABlVTJ4S0P https://t.co/Oz3xMloi… +06/28/2018,Economists,@DeanBaker13,RT @ceprdc: Want to Boost the Economy? Give mothers and others #PaidLeave #WeEarnedIt https://t.co/T79k0Zw731 +06/28/2018,Economists,@DeanBaker13,RT @Dan_Beeton: Holy cow - wait until @realDonaldTrump sees the size of those crowds! Would be interesting to put them side by side with pi… +06/28/2018,Economists,@DeanBaker13,"RT @ceprdc: Got investment boom? We got new data on capital goods orders yesterday and the data disagree, says @DeanBaker13. No boom means…" +06/28/2018,Economists,@DeanBaker13,"RT @hardindr: @Dan_Beeton @DeanBaker13 I wrote to the #WaPo’s editorial staff about the claim, asking for a clarification/correction, they…" +06/28/2018,Economists,@DeanBaker13,"good piece, I keep hoping that one day we get a billionaire who cares about public health who can buy up rights to… https://t.co/5QT75Kx4Fn" +06/28/2018,Economists,@DeanBaker13,@pdacosta Just think when @realDonaldTrump is in prison he will be amazed to discover that everyone there is innoce… https://t.co/zdFRmxWTvW +06/28/2018,Economists,@DeanBaker13,RT @JakobJohnston: It's been nine years since the Honduran president was seized while still in his pajamas and exiled from the country. The… +06/28/2018,Economists,@DeanBaker13,RT @joshbivens_DC: The Janus decision is a far scarier portent about the 'future of work' than any article you've read about advances in AI… +06/28/2018,Economists,@DeanBaker13,"RT @Dan_Beeton: ""The Post even went full Trump back in 2007 when it made up the absurd claim that #NAFTA had led Mexico's economy to quadru…" +06/28/2018,Economists,@DeanBaker13,RT @LandisWeaver: The link between overpaid directors & overpaid CEOs needs to be more fully explored. Seems to me that just collegial huma… +06/28/2018,Economists,@DeanBaker13,RT @AlanBdc: We sometimes confuse the difference between a campaign and a movement. Campaigns come and go but movements are built to last a… +06/28/2018,Economists,@DeanBaker13,As Mexico prepared to elect a left-wing president isn't time for another @washingtonpost article telling us how NAF… https://t.co/rCU2SLPWVG +06/28/2018,Economists,@DeanBaker13,RT @DeanBaker13: The NYT tells us about the suffering of Denver area employers who depend on cheap foreign labor https://t.co/BCNGmqrrK8 +06/28/2018,Economists,@DeanBaker13,RT @DeanBaker13: More data confirms the Trump tax cut induced investment boom https://t.co/nggZBLz9GZ (kidding of course -- I don't take dr… +06/28/2018,Economists,@DeanBaker13,"@WWouldJakeDo I'm proposing different rules that would give shareholders more control. It's in Rigged, chapter 6 https://t.co/HfhMSp00XT" +06/28/2018,Economists,@DeanBaker13,actually the government does set rules on corporate governance -- sorry to inform you -- so it's not just a private… https://t.co/KOQ59AujqD +06/28/2018,Economists,@DeanBaker13,"RT @wiumlie: «The large ""404"" error message on the front page of the Norwegian website https://t.co/tDkc9LyPX8 looks a lot like an ""SOS"" si…" +06/28/2018,Economists,@DeanBaker13,@powellnyt It's probably happening in his head. There's plenty of room there. +06/28/2018,Economists,@DeanBaker13,exactly -- what aren't conservatives more worried about the corruption of corporate governance? https://t.co/q12s3Pz0R4 +06/28/2018,Economists,@DeanBaker13,RT @shawnsebastian: Among the topics covered will be recent research by @DeanBaker13 showing that unprecedented rises in housing costs are… +06/28/2018,Economists,@DeanBaker13,"yes, higher prices today are definitely being driven by market fundamentals, in contrast to the run-up in house pri… https://t.co/vPJyt1Rfpu" +06/28/2018,Economists,@DeanBaker13,With a left-wing candidate about to be elected president in Mexico isn't time for the @washingtonpost to have anoth… https://t.co/K75fGdE7VU +06/28/2018,Economists,@DeanBaker13,"I think they are really worried the unemployment rate is too low. If that is the only variable you look at, it is c… https://t.co/BdYOhQUPPm" +06/28/2018,Economists,@DeanBaker13,@washingtonpost columnist Dana Milbank doesn't know that bankers don't give campaign contributions to politicians w… https://t.co/brNaHFtfiB +06/28/2018,Economists,@DeanBaker13,More data confirms the Trump tax cut induced investment boom https://t.co/nggZBLz9GZ (kidding of course -- I don't take drugs) +06/28/2018,Economists,@DeanBaker13,"RT @nywolforg: This is what an American icon looks like. +And she's facing extinction at the hands of the government. https://t.co/LpyOpt…" +06/28/2018,Economists,@DeanBaker13,The NYT tells us about the suffering of Denver area employers who depend on cheap foreign labor https://t.co/BCNGmqrrK8 +06/28/2018,Economists,@DeanBaker13,"It is one way, there are other ways to pay people https://t.co/NmQpUWPaL9" +06/28/2018,Economists,@DeanBaker13,"actually, I would leave copyright -- just fund stuff in the public domain. My guess is no one would then give a pen… https://t.co/Cz5ptIyCZc" +06/28/2018,Economists,@DeanBaker13,"@DonaldJTrumpJr @realDonaldTrump If you had just stopped at ""I don't think,"" you might actually have been telling the truth." +06/28/2018,Economists,@DeanBaker13,"@AusTaxProf @JohnQuiggin And childcare, like education more generally, should be publicly supported. Goods prospect… https://t.co/kEbtHpktiE" +06/28/2018,Economists,@DeanBaker13,@AusTaxProf @JohnQuiggin I think there are certainly cases where we need to bring back some anti-trust power. Faceb… https://t.co/Cji4rU0tsD +06/28/2018,Economists,@DeanBaker13,@ComradeVeidt @danielhahn02 @Hagahoonda It's not especially about begging. Try rereading it. +06/28/2018,Economists,@DeanBaker13,@Soc_of_Authors @ALCS_UK @PhilipPullman @danielhahn02 @WomackPhilip @nicolamorgan @MARYMHOFFMAN @lucindahawksley… https://t.co/erF9RVziAM +06/27/2018,Economists,@DeanBaker13,"RT @lydiadepillis: Texas business interests don't really want E-verify. Along with social issues like transgender bathrooms, it's one of th…" +06/27/2018,Economists,@DeanBaker13,Thanks Julie -- we'll get the bastards! https://t.co/sTTXCucZ11 +06/27/2018,Economists,@DeanBaker13,RT @reftpt: ⁦@DeanBaker13⁩ https://t.co/C1EmV9RYou +06/27/2018,Economists,@DeanBaker13,"RT @ceprdc: Using the wrong measure of inflation could result in the #Fed raising interest rates prematurely, needlessly keeping people out…" +06/27/2018,Economists,@DeanBaker13,RT @DeanBaker13: Thomas Friedman is badly confused again. No one told him the about the explosion of the trade deficit in the last decade s… +06/27/2018,Economists,@DeanBaker13,RT @ananavarro: I really don’t care. Do you? https://t.co/3v3fM7XD3v +06/27/2018,Economists,@DeanBaker13,Apparently no one told Justice Alito that in this country workers are free to work for another employer. That is wh… https://t.co/qQvMo5LOCh +06/27/2018,Economists,@DeanBaker13,"well, with management like EPI's, they need a union! :) https://t.co/STQIXJiBxY" +06/27/2018,Economists,@DeanBaker13,"RT @ceprdc: ""You have this commitment to what the IMF and the government call fiscal consolidation. So when the economy begins to grow...th…" +06/27/2018,Economists,@DeanBaker13,RT @DeanBaker13: The @washingtonpost doesn't want to talk (honestly) about the federal debt https://t.co/KVeFNJtBRG +06/27/2018,Economists,@DeanBaker13,RT @drbwhit23: @DeanBaker13 @washingtonpost As a nobody every day citizen with pretty much zero power I’m asking that you post this link ev… +06/27/2018,Economists,@DeanBaker13,thanks https://t.co/p4jWa1OjZR +06/27/2018,Economists,@DeanBaker13,"RT @lydiadepillis: If you take out housing costs, @DeanBaker13 points out, the economy looks a lot cooler than the overall inflation rate s…" +06/27/2018,Economists,@DeanBaker13,@JohnQuiggin how about my book Rigged https://t.co/HfhMSp00XT +06/27/2018,Economists,@DeanBaker13,thanks -- I look forward to seeing it https://t.co/QKlncSpBVc +06/27/2018,Economists,@DeanBaker13,"Fine with the plug, also a big Hacker fan, but FWIW, I was making this distinction (without the terms) long before… https://t.co/bD4WRnl2Ll" +06/27/2018,Economists,@DeanBaker13,The @washingtonpost doesn't want to talk (honestly) about the federal debt https://t.co/KVeFNJtBRG +06/27/2018,Economists,@DeanBaker13,Thomas Friedman is badly confused again. No one told him the about the explosion of the trade deficit in the last d… https://t.co/lMKCyTI62C +06/27/2018,Economists,@DeanBaker13,"RT @inclusionist: .@GlennThrush just spitballing here, maybe it’s a calculated move to tap into racist stereotyping that drives white oppos…" +06/27/2018,Economists,@DeanBaker13,"If you have some HH data on the distribution of gains under Erdogan, that would be interesting to see https://t.co/8QiRQ4gkq3" +06/27/2018,Economists,@DeanBaker13,"@maryanneconlin @Petersen_econ @SamuelGeorge76 @BertelsmannFdn @GED_Tweet thanks, I'll take a look" +06/27/2018,Economists,@DeanBaker13,"I'm fine with higher taxes, but how about reducing the protection that makes them rich in the first place: shorter… https://t.co/qp59NFZ9qe" +06/27/2018,Economists,@DeanBaker13,RT @aramis2377: Just think how many various bodily fluids Trump has unwittingly eaten at his own properties. Makes me smile. https://t.co/5… +06/27/2018,Economists,@DeanBaker13,"RT @wsquared58: @maryanneconlin @DeanBaker13 You can rest assured, this is already happening. As an ex-restaurant worker, this is how you g…" +06/27/2018,Economists,@DeanBaker13,"RT @mattyglesias: A restaurant owner declined to serve SHS. + +In response Trump lied about the restaurant’s cleanliness and his supporters…" +06/27/2018,Economists,@DeanBaker13,RT @boes_: Here's the full @DeanBaker13 paper on U.S. housing inflation and Fed policy https://t.co/KSwlhmQ3KX +06/27/2018,Economists,@DeanBaker13,RT @rortybomb: Note how naturally @Ocasio2018's message of strong working-class security goes with diversity and racial solidarity. All the… +06/27/2018,Economists,@DeanBaker13,RT @maryanneconlin: What I really like about this idea is no one has to actually DO anything - just RT and make this go viral - will scare… +06/27/2018,Economists,@DeanBaker13,thanks https://t.co/8Cq8eu9IMW +06/27/2018,Economists,@DeanBaker13,"what do you mean, it was competitive, Crowley got slammed https://t.co/RMVdQe5LWC" +06/27/2018,Economists,@DeanBaker13,you didn't hear it from me https://t.co/XoCtNRSl5H +06/26/2018,Economists,@DeanBaker13,I did https://t.co/7FgdGgYL77 +06/26/2018,Economists,@DeanBaker13,I'll confess to what we did many years ago when I worked in restaurants and we had an especially awful customer: we… https://t.co/6ZHOMImDWs +06/26/2018,Economists,@DeanBaker13,"RT @ceprdc: New @ceprdc report concludes that Mexico's persistent sluggish economic growth, poverty, and inequality are rooted in a set of…" +06/26/2018,Economists,@DeanBaker13,"and people trust this guy with their money? Damn, I want a list of big Tesla stockholders. https://t.co/yl6o2pb7tK" +06/26/2018,Economists,@DeanBaker13,"RT @WSpriggs: Dr @MonaHannaA and @RepDanKildee discuss the evolution of the Flint water crisis - - austerity, anti-democratic, racism all…" +06/26/2018,Economists,@DeanBaker13,And Speaker Ryan and the rest of the Republicans in Congress will say its fine because #richpeopleneedtaxcuts https://t.co/mdHbcv6avW +06/26/2018,Economists,@DeanBaker13,"If the Dems ever retake power, they have to double the pensions for judges and allow them to collect early. It will… https://t.co/wLQW7OGBPJ" +06/26/2018,Economists,@DeanBaker13,Work sharing and shorter work years are the best way to fight job-killing robots https://t.co/LoJHMRhc9v +06/26/2018,Economists,@DeanBaker13,I guess the Third Way crew has a hard time getting productivity data https://t.co/CyJ9L4GXkv +06/29/2018,Economists,@econjared,"Not to get all maths, but he’s right: it is coming down rapidly, as in bigger negative numbers. https://t.co/UyNYM6vRXm" +06/29/2018,Economists,@econjared,"Q: How do you spend $2 trillion on a tax cut and still get only about a third to approve of it? +A: Tilt it towards… https://t.co/COy5U4BZyU" +06/29/2018,Economists,@econjared,@EconDerek @GagnonMacro @greg_ip I think one of the more important recent developments in inflation watching is Cha… https://t.co/s4VwKOKyR1 +06/28/2018,Economists,@econjared,"RT @EconomicPolicy: Tonight, tune in as @TheaLeeEPI and @EconJared debate the impact of globalization with @jasonfurman and James Manyika o…" +06/28/2018,Economists,@econjared,"Third, even as we close in on full employment, the US economy faces two big challenges: we need revenues to support… https://t.co/QfOTF2eJKj" +06/28/2018,Economists,@econjared,"Second, the tax share of profits often falls steeply in downturns (shaded parts). But this time, it’s the tax cuts;… https://t.co/lMBlyWZc6Y" +06/28/2018,Economists,@econjared,"The figure below shows corporate taxes paid as a share of corporate profits, from this AMs GDP report. The figure h… https://t.co/QF1oqMsDr4" +06/27/2018,Economists,@econjared,"@rooseveltinst A8 3/3 Again, I’m well-aware this is old-school—I suspect I’m the elderly-est person on this chat! B… https://t.co/r19PE9474Y" +06/27/2018,Economists,@econjared,@rooseveltinst A8 2/3 …prevent a workers’ party from forming by a) convincing working-class people that their diffe… https://t.co/a1IihCqHdG +06/27/2018,Economists,@econjared,@rooseveltinst A8 1/3 We really need some sort of workers’ party that unites people who depend on their paychecks a… https://t.co/oOC4oZsU3v +06/27/2018,Economists,@econjared,"@rooseveltinst A7 2/2 Also, upward redistribution through government policies (trickle-down tax cuts, patents, occu… https://t.co/p5xbhyc77u" +06/27/2018,Economists,@econjared,@rooseveltinst A7 1/2 This is really asking: what are the factors behind the growth of wage inequality? The decline… https://t.co/PWjdA7KiZY +06/27/2018,Economists,@econjared,"@rooseveltinst @MarkVinPaul Given that @MarkVinPaul Paul's right here, and he just released this great paper on thi… https://t.co/vloX0l7Y7m" +06/27/2018,Economists,@econjared,@rooseveltinst A4 3/3 I recognize that I’m dealing with an old problem—how to raise workers’ bargaining clout—one f… https://t.co/PQQzBxaF66 +06/27/2018,Economists,@econjared,"@rooseveltinst A4 2/3 Once you accept that context, it leads you to issues of job quality, wage policies (min wg, O… https://t.co/4eguV4nhVm" +06/27/2018,Economists,@econjared,"@rooseveltinst A4 1/3 Not sure I'd put it this way. It’s a bit like asking “how can this desk, or this new drill pr… https://t.co/hMWnFBiCwW" +06/27/2018,Economists,@econjared,"@rooseveltinst A3 2/2: Today's SCOTUS decision on the Janus case, which strikes a potentially severe blow to public… https://t.co/DVjEHbHIuB" +06/27/2018,Economists,@econjared,"@rooseveltinst A3 1/2: The list is long, but it largely reduces to employers’ bargaining clout has long surpassed t… https://t.co/hbmPK3IGWh" +06/27/2018,Economists,@econjared,"@rooseveltinst A2: I view tech change as a pretty constant force, so not sure I see much “rise” against the baselin… https://t.co/Pkmbc9lSsG" +06/27/2018,Economists,@econjared,"@rooseveltinst A1 4/4: Thus, we should spend less time arguing about the unknowable, and implement policies to deal… https://t.co/BoYSgy0942" +06/27/2018,Economists,@econjared,"@rooseveltinst A1: 3/4 After all, thanks to tech advances, the American job market went from 90% agriculture to und… https://t.co/Ge5eLLsjyb" +06/27/2018,Economists,@econjared,"@rooseveltinst 2/4: Right now, we have more of a job quality problem than a job quantity problem. Of course, many o… https://t.co/YA50h2Na7w" +06/27/2018,Economists,@econjared,"@rooseveltinst A1 (1/4) As we’re closing in on full employment, it’s hard to the make the case that the pace at whi… https://t.co/pHSk8B9VWV" +06/27/2018,Economists,@econjared,RT @rooseveltinst: Welcome to today’s chat about the #futureofwork and #automation. We are joined by @MarkVinPaul @BrishenRogers @rakeen_ma… +06/27/2018,Economists,@econjared,One of the most potent forces promoting inequality/wg stagnation is weak worker bargaining clout. With SCOTUS Janus… https://t.co/REUGbeCzwv +06/23/2018,Economists,@econjared,Zz +06/22/2018,Economists,@econjared,"@PIIE All solid, germane points. But what about currency/exchange rates? Do you not view that (yuan/$ depreciation)… https://t.co/bOV9UYR3Zd" +06/22/2018,Economists,@econjared,"Must read by @paulwaldman1 on how the Trump/Mulvaney plan to merge agencies is just the latest eg of ""weaponizing b… https://t.co/Qg4L2R1Ax4" +06/20/2018,Economists,@econjared,If you slog through some interesting wonkiness on international finance https://t.co/diUnjNvoEP your reward is some… https://t.co/OEKuZ000gv +06/20/2018,Economists,@econjared,@MichaelSLinden Trend-rider Trump: https://t.co/7zEp5D0Pbj https://t.co/bg6JE1GsBV +06/20/2018,Economists,@econjared,Tight labor market is one reason disability rolls are down and unemp rate for disabled workers is at all time low o… https://t.co/2qNeEWuAFv +06/20/2018,Economists,@econjared,The tragedy at the border is strong evidence that we have the least representative government of the modern era. Th… https://t.co/vnmXmSaVbl +06/19/2018,Economists,@econjared,"I've studied trade policy for decades, but only now do I realize I've ignored this issue of scuffed up, old soundin… https://t.co/V2Yn0ePuH9" +06/19/2018,Economists,@econjared,There must be something that's more fun that sitting around & talking tariffs with @CardiffGarcia and @svaneksmith.… https://t.co/j82m23ZGIN +06/19/2018,Economists,@econjared,"Re-posting our take on Initiative 77. Essential to be guided by the facts, most importantly, results from the other… https://t.co/mTXnsfowpL" +06/18/2018,Economists,@econjared,"It is increasingly clear that ""family values, fiscal rectitude, and free trade"" have served as a highly effective R… https://t.co/ZdSCDQt1Qv" +06/18/2018,Economists,@econjared,"I don't believe the ""natural"" rate of unemployment can be reliably pinned down at 4.5%. But so what? The fact that… https://t.co/UsYxm9Oq4d" +06/15/2018,Economists,@econjared,@BenRossTransit Stronger dollar and big fiscal stimulus at low unemployment very likely to raise trade deficit. Tar… https://t.co/3GXlNrtksU +06/15/2018,Economists,@econjared,2) What would help? As per @DeanBaker13 and I: Use benefits of trade to directly help those hurt by it; stop protec… https://t.co/0EhQD7Z8Wy +06/15/2018,Economists,@econjared,1) Context important when throwing around billions in trade talk. Trump's $50 billion tariffs on China <2% of impor… https://t.co/ZMZKbdOEem +06/14/2018,Economists,@econjared,"Fellow Fed watchers: Since the FOMC prefers to alter rates in meetings followed by news conferences, there's a view… https://t.co/covytYOWV1" +06/14/2018,Economists,@econjared,"@mattyglesias Fiscal stimulus fades, rate hikes, and supply constraints. + +But IMHO, a better question is: unless 3… https://t.co/6ElJimJzRL" +06/14/2018,Economists,@econjared,@LukeGromen Nice reference! More recent version: https://t.co/LY7MEWIBfG +06/14/2018,Economists,@econjared,"6/6) What’s the solution? More collective bargaining, for sure; better labor standards, strongly enforced; pushback… https://t.co/O7H0s5rNJG" +06/14/2018,Economists,@econjared,"5) One bit of evidence for this hypothesis (and I’ve got more, forthcoming) is the flat trend in unit labor costs i… https://t.co/2sNafGXyGv" +06/14/2018,Economists,@econjared,"4) But how can they win that fight at such low unemployment? First, wages are picking up a bit, so it’s not a total… https://t.co/0QoNwBgfE4" +06/14/2018,Economists,@econjared,"3) But at lower productivity, firms—increasingly empowered by concentration/monopsony (employer power), diminished… https://t.co/RYnr3JlBYU" +06/14/2018,Economists,@econjared,"2) With higher productivity growth, firms facing tight labor markets are more willing to raise pay because they can… https://t.co/4u7r5xJmnw" +06/14/2018,Economists,@econjared,1) I think the slow-wage-growth puzzle (to use Chair Powell's framing) is a function of weak worker bargaining powe… https://t.co/hRuxWkfTHx +06/13/2018,Economists,@econjared,@maxbsawicky @jimtankersley Now ya see that just makes me want to fly off the handle! +06/13/2018,Economists,@econjared,"5) In other words, the Fed believes, and I think they're right, that the tax cuts will have temporary Keynes effect… https://t.co/ic9gVQCS3d" +06/13/2018,Economists,@econjared,"4) Reflecting all of these empirical and theoretical caveats, the Fed Committee itself appears to wholly discount t… https://t.co/blgyZxZ0Fd" +06/13/2018,Economists,@econjared,"3) Much more important, the evidence shows no historical correlations between tax cuts and productivity growth. Man… https://t.co/mX7G9W1xWp" +06/13/2018,Economists,@econjared,"2b) Theory also suggests deficit-financed tax cuts are much less likely to generate supply-side impacts, and this t… https://t.co/9usstTbhQY" +06/13/2018,Economists,@econjared,"2) On theory, he cited only substitution effects (lower tax cuts, more labor supply, capex). Income effects push th… https://t.co/bd6qDF1ojP" +06/13/2018,Economists,@econjared,"1) When @jimtankersley asked Fed Chair Powell about the impact of the tax cut on growth, I thought Powell leaned fu… https://t.co/ryMcIdS8af" +06/13/2018,Economists,@econjared,"@_N0TCH_ Also, rates that are very low for very long hurt those who depend on fixed incomes." +06/13/2018,Economists,@econjared,"@_N0TCH_ Great question. See my paragraph re the Fed's rationales: worries about overheating and ""normalization."" G… https://t.co/NkJxCM5B4l" +06/13/2018,Economists,@econjared,"2) Here's an interesting factoid from my Fed piece: Historically, when the unemp rate has been between 3.5-4%, the… https://t.co/MbFsg9ULb2" +06/13/2018,Economists,@econjared,1) The Fed is highly likely to raise its benchmark interest rate this afternoon. But should they? I explain their r… https://t.co/OdDyONka3m +06/12/2018,Economists,@econjared,"@DeanBaker13 Fair point: there's a case for keying off of the 2nd derivative, not the 1st. Still, stronger case is… https://t.co/XarBgUrQ2F" +06/12/2018,Economists,@econjared,"@aaronsojourner You'd have to ask the other Jared. I'm ""Jared the good...""" +06/12/2018,Economists,@econjared,"According to BLS release this AM, real hourly pay of mid-class workers up 0.4% since Trump took office, and extra d… https://t.co/sldnkTlXl4" +06/11/2018,Economists,@econjared,"Thanks! Of course, books like this one are essential to sorting this stuff out: https://t.co/xGz9xlRenn https://t.co/ttVhG7wq9D" +06/11/2018,Economists,@econjared,@Noahpinion I’ll definitely read your piece but I think we should not conflate Atlanta wg tracker w median wage gro… https://t.co/tbFnYBZe2t +06/11/2018,Economists,@econjared,To my musical friends: Clearly the only positive resolution to the chaotic G7 summit is C major. Unless it's the G-… https://t.co/tewVEXVCJs +06/11/2018,Economists,@econjared,"If you're just coming back online, trying to make sense out of that crazy G7 meeting, here's my explanation of the… https://t.co/I1zJBtzLFp" +06/11/2018,Economists,@econjared,"That great Trump economy? He's mostly riding trends he inherited. +https://t.co/XCEUVjMgup https://t.co/PwE0PBhQ7K" +06/10/2018,Economists,@econjared,@bugg_wayne Good question...it's like the Manchurian Candidate. +06/10/2018,Economists,@econjared,"Trump at the G7? What could go wrong? +A great deal, apparently. Here's a Q&A to try to clarify all the cray-cray o… https://t.co/zmKy1P0Elt" +06/08/2018,Economists,@econjared,I don’t begrudge team Trump their groundless bragging on the econ trends they inherited. That’s standard practice.… https://t.co/WYFXxz7udI +06/08/2018,Economists,@econjared,"@TimDuy (You mean 'run ON' deficits. Which matters here!) + +I'm 94.3% with you, but critical to also point out that… https://t.co/AXDO5KEBAB" +06/07/2018,Economists,@econjared,"The argument that robots/AI/etc are increasingly displacing workers implies faster productivity growth, especially… https://t.co/LZThQHf90R" +06/07/2018,Economists,@econjared,In contemplating the fact that the Medicare's finances have been unquestionably damaged by Trump/R policies (tax cu… https://t.co/HPl2hBPEpy +06/06/2018,Economists,@econjared,"@JimPethokoukis @PoliticalHut @CNBC Also, tariffs + retaliation = less imports *and* less exports, which doesn't im… https://t.co/3ZG6IZyE1j" +06/06/2018,Economists,@econjared,"The message from the Social Security and Medicare trustees is simple: preserving these essential, efficient, popula… https://t.co/aEMLSNWYzJ" +06/05/2018,Economists,@econjared,"@GagnonMacro Thnx for the update. But In the figure on the left, why does the 'emp gap' (u-u*) appear to be zero in… https://t.co/laAcHiuEFY" +06/05/2018,Economists,@econjared,Dean's right. It's easy to find dishonest writers who will fabricate nonsense like this. The guilty party here is t… https://t.co/j8PMQgTMP4 +06/04/2018,Economists,@econjared,@VA11independent Good point/analogy (re FTT and carbon tax)! https://t.co/xVM9m01vCs +06/04/2018,Economists,@econjared,Do not go gently into financial deregulation! How we got to where we are and what to do to pushback:… https://t.co/0dO6kj74t9 +06/01/2018,Economists,@econjared,Three ways in which our solid labor market recovery could go south: https://t.co/nNc2zlMzaX +06/01/2018,Economists,@econjared,Trump’s rhetoric on trade has been bloviation without action. Given my well-honed skepticism about his willingness… https://t.co/mLCcoJpac3 +06/01/2018,Economists,@econjared,"2) Barring price shock (unlikely), I don't foresee a Fed mistake. Given relatively low US exposure (imports 15% of… https://t.co/fREx3ViMek" +06/01/2018,Economists,@econjared,"1) The trend is our friend in the job market (a trend that pre-dated the orange one, ftr). But what could whack the… https://t.co/qY4CNsyocQ" +06/01/2018,Economists,@econjared,"Here's my take on the solid jobs report. Punchline: In an economy with little union power, tremendous finance power… https://t.co/4wXun9nXxK" +06/01/2018,Economists,@econjared,"Another strong jobs report! Unemp down to 3.8% (and, at 3.75, just missed 3.7); black unemp to all time low of 5.9%… https://t.co/NkUQDxV1BI" +06/01/2018,Economists,@econjared,"@NickTimiraos @RichardRubinDC Radical idea: since imho markets overreact to these noisy numbers, maybe they should… https://t.co/FozPKHPoVZ" +06/01/2018,Economists,@econjared,"@NickTimiraos @RichardRubinDC Has he tweeted this before? If not, look for upside surprise." +06/01/2018,Economists,@econjared,"RT @damianpaletta: Obama was briefed on the jobs numbers the night before, so Trump might have been too... https://t.co/M8PaXsHnhg" +05/31/2018,Economists,@econjared,"Wow! @eliselgould & @metaCoop new ""7 facts"" paper about the benefits of eliminating sub-min wgs is incredibly muscu… https://t.co/fUboN3BLY8" +05/31/2018,Economists,@econjared,@EamonJavers Sec’y Ross kept saying US GDP is $18 trillion. It’s $20 trillion based on numbers from...the Commerce… https://t.co/BCeP9zhcx3 +05/31/2018,Economists,@econjared,DC's Initiative 77 gets rid of the sub-minimum wage. It's an important way to raise pay and reduce harassment of lo… https://t.co/9kph0ZKJjq +05/30/2018,Economists,@econjared,@jaketapper @PressSec The admin needs some time to decide if their plan is “thoughts AND prayers” or “thoughts OR prayers.” +05/30/2018,Economists,@econjared,"Just now from NYT: ""Big banks are getting a big reprieve from a post-crisis rule aimed at curbing risky behavior on… https://t.co/GS1dkNzbiI" +05/30/2018,Economists,@econjared,"Qrtly data noisy, but note figure: 2018Q1 pretax corporate prof growth, <5%, yr/yr. But huge decline in corp taxes… https://t.co/yz8A9dCnRy" +05/29/2018,Economists,@econjared,"""Hard choices,"" crowd-out, debt thresholds...our stagnant fiscal debate is mired in a confusing fog. I argue that i… https://t.co/K73LxBR94q" +05/24/2018,Economists,@econjared,@SephorahMangin Wait--the Witt-ster wasn't talking about economists' inability to identify the natural rate within… https://t.co/X7S04mQu5J +05/24/2018,Economists,@econjared,It's going to take an unemployment rate that's even lower for even longer to generate faster wage growth. Here's wh… https://t.co/PBZC4D606b +05/22/2018,Economists,@econjared,The critique that jobs programs can't help with wage problems seems way off to me. https://t.co/YBEAu3SKUM +05/22/2018,Economists,@econjared,To continuously fail to provide true economic opportunity to those hurt by trade is to both sow and nurture the see… https://t.co/CMIuWzdCab +05/22/2018,Economists,@econjared,Sen Van Hollen on why we need a jobs program: “You have a lot of Republicans...who say they want to help people who… https://t.co/lUz013ymqp +05/21/2018,Economists,@econjared,"The future of work will be what we, not technology, make of it. Featuring new work by @LarryMishel and @hshierholz… https://t.co/tzFlmYBjxy" +05/18/2018,Economists,@econjared,"Is King Dollar really under threat as the world's premier reserve currency? I (kinda) hope so; what was an ""exorbit… https://t.co/6oipWdIQIh" +05/17/2018,Economists,@econjared,"2) Even at full employment, the sectoral composition of output can and does shift in response to demand in general… https://t.co/kNcjmGmexS" +05/17/2018,Economists,@econjared,"1) While the $200bn is surely near-term non-achievable, this analysis is way too static. If there were greater dema… https://t.co/7em8LPnUuw" +05/17/2018,Economists,@econjared,"I should be able to win many drinks at many bars by taking bets on the question ""what share of retail sales are e-c… https://t.co/uyoHBSUFuy" +05/17/2018,Economists,@econjared,I understand the argument that college degrees have been oversold--they're not a sufficient solution for ineq/wg st… https://t.co/KzGCVkBZLB +05/16/2018,Economists,@econjared,"Here's why I think that Seattle ""head tax"" is a) reasonable, and b) a microcosm of bigger stuff going on in this sp… https://t.co/Va3d6TsuLt" +05/15/2018,Economists,@econjared,Strongly agree w @JimPethokoukis re zoning reform for Seattle. But that’s a very long term solution to current home… https://t.co/O8ucIFnD6H +05/15/2018,Economists,@econjared,@ATobert I did not but I will now correct that oversight! +05/15/2018,Economists,@econjared,"7) In conclusion: Work requirements (really, paper-work requirements) should thus be seen for what they are: an att… https://t.co/9D3kiaR6oo" +05/15/2018,Economists,@econjared,"6) Then there’s this inherent contradiction: low-wage minorities, immigrants, the working poor depend on a persiste… https://t.co/AroC5AMLZI" +05/15/2018,Economists,@econjared,"5) Also, even at low national unemployment, there are places in America with too few employment opportunities, and… https://t.co/QXKHiH2WFR" +05/15/2018,Economists,@econjared,"4) Next, the working poor face a spate of labor-market barriers: criminal records, health/skill deficits, discrimin… https://t.co/aapVcF61P7" +05/15/2018,Economists,@econjared,"3) You can see this latter point in the figure below from important new paper by Hoynes and Schanzenbach: in 1990,… https://t.co/R1O8OfwxhU" +05/15/2018,Economists,@econjared,"2) First, the poor who are able to do so already work. They must, because a) you can’t get buy on health coverage a… https://t.co/yw8SHJSEmE" +05/15/2018,Economists,@econjared,1) How wrong is the Trump/Ryan/Congressional R’s push for work requirements in anti-poverty programs? Let me count the ways. +05/14/2018,Economists,@econjared,"@tamcfall A) I don't understand this. +B) given A, I still think this may be a timely eg of confirmation bias." +05/14/2018,Economists,@econjared,"I worry that this, like state lotteries, becomes an implicit tax on those of us who don't get probabilities and con… https://t.co/0T9TSucdgQ" +05/14/2018,Economists,@econjared,"The rationale for a guaranteed jobs program is strong, as the system is increasingly rigged against low/mid wage wo… https://t.co/0pUg6KHwgj" +05/13/2018,Economists,@econjared,"Smart, efficient bit of analysis here. Side note: since we can't consume or invest what we've lost through deprecia… https://t.co/M06kCtTAt3" +05/11/2018,Economists,@econjared,"Re lower drug costs, Trump twiddles around at the edges, at best. The last 'grafs of this NYT piece (my bold) point… https://t.co/dIJutmEHP9" +05/11/2018,Economists,@econjared,"Recognizing the long-term value to their nations, other advanced economies invest in economically vulnerable famili… https://t.co/peBbJvsTNA" +05/10/2018,Economists,@econjared,@Birdyword It is no more a dog than you are a bird. +05/10/2018,Economists,@econjared,@Rightsof_Man There's no median monthly data. Here's the median quarterly take--shows same result. https://t.co/QaMdg7NDt0 +05/10/2018,Economists,@econjared,"2) To be fair/clear, presidents don't determine economic outcomes nearly as much as they say they do (ie, when outc… https://t.co/pGIBcCSEAp" +05/10/2018,Economists,@econjared,1) The building block for mid-class economic security is real hourly wage for mid-wage workers. Here it is in age o… https://t.co/ErEdCmXYiU +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 4) This… https://t.co/Wt7Jl7qEPe +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 3) My t… https://t.co/X2gXQU4dpf +05/10/2018,Economists,@econjared,@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 2) What… https://t.co/cVWqlFOm0k +05/10/2018,Economists,@econjared,"@jasonfurman @ernietedeschi @ModeledBehavior @nick_bunker @marthagimbel @Noahpinion @greg_ip @JayCShambaugh 1) So,… https://t.co/y8rkVH9TXt" +05/09/2018,Economists,@econjared,"Phillips Curve or Phillips' pet dog w/ bushy tail...I report, you decide. https://t.co/E3Ehr3pt9F https://t.co/XENrSrGyXv" +05/09/2018,Economists,@econjared,"There's nothing we can do to help US manufacturers, right? WRONG, as per a new paper out today by @TimBartik for CB… https://t.co/dgeVGVjJrx" +05/08/2018,Economists,@econjared,"As motivation for their deeply misguided work requirements, Republicans toss around this measure they call the ""Job… https://t.co/eN9ayBGaJi" +05/07/2018,Economists,@econjared,@CliffordAsness @JohnHCochrane Will read Cochrane--always interesting--if you read Lazonick:… https://t.co/f7zijlccVy +05/07/2018,Economists,@econjared,"@CliffordAsness 2nd, there’s no empirical correlation between share buybacks and investment (the topic of the segme… https://t.co/5k0pNxsCqe" +05/07/2018,Economists,@econjared,"@CliffordAsness First, share buybacks increase the value of outstanding shares. 80% of the value of the stock marke… https://t.co/0SYwWJOZ1H" +05/07/2018,Economists,@econjared,Great point by @HarrySteinDC. I often vent how R's refused to add $1 to their tax cut for EITC to support low-inc w… https://t.co/84zfDxFoTB +05/07/2018,Economists,@econjared,"@isawhill @jasonfurman @Neil_Irwin @greg_ip Agree--excellent point from Jason. +That said, in a model that predicts… https://t.co/TAmn27KJyq" +05/04/2018,Economists,@econjared,"First, read the 3 reasons why wage growth is slower than we'd like. Then...start your weekend! https://t.co/goGrFcvtnR" +05/04/2018,Economists,@econjared,"Headed over to talk jobs, wages et al on MSNBC @ 11. See you there." +05/04/2018,Economists,@econjared,"@WhiteHouseCEA @BLS_gov 2 points: +First, wages should be accelerating and they're not. +Second, consumer inflation… https://t.co/btmCWvruEh" +05/04/2018,Economists,@econjared,"2) But ""smart policy""--or any policy--is hard to pull off if you just squandered $2 trillion on a wasteful, loophol… https://t.co/h4Cwv2Snsp" +05/04/2018,Economists,@econjared,"1) Pulling 'the graf below out from my jobs report. We've got extra labor supply under our noses, but it will take… https://t.co/6jCds4x6Ny" +05/04/2018,Economists,@econjared,"Left out the link! D'oh!! +https://t.co/5yB6CDAQ2e https://t.co/3FzE1TXB50" +05/04/2018,Economists,@econjared,"My extended take on the jobs report. Job market remains strong, of course, but lack of wage acceleration important… https://t.co/3jYotRsvYI" +05/04/2018,Economists,@econjared,Jobs report looks more moderate than strong. Unemp rate at 3.9% but this mostly due to tick down in labor force. Em… https://t.co/a0SLCS64Sc +05/04/2018,Economists,@econjared,@eliselgould That's the question! To your battle stations! +05/04/2018,Economists,@econjared,"Like the moth to the flame, I keep trying to predict the monthly job outcomes. Data out in 13 mins, but here's my d… https://t.co/TfTUsMy9WK" +05/03/2018,Economists,@econjared,"Yes, price growth is firming up a bit, but I'm more worried about BNI: Breaking News Inflation, which plays into an… https://t.co/PLMgII9FWn" +05/03/2018,Economists,@econjared,"RT @theAMIBA: @econjared @hamandcheese Some excellent ideas here. Please reconsider conflating free markets with U.S. corporate capitalism,…" +05/03/2018,Economists,@econjared,"We live in chaotic, uncertain economic times (also, hush money to porn stars). But amidst the noise, the Fed is qui… https://t.co/xIn4j5tVr5" +05/02/2018,Economists,@econjared,"Sam Hammond @hamandcheese wrote a paper that caught my interest so I asked him about it. Sam sets up a hopeful, uni… https://t.co/S9mtT78hu8" +05/02/2018,Economists,@econjared,"@hamandcheese Fact check: I work two floors below you (and no, that's not some sort of metaphorical ranking re our… https://t.co/CjA7H62Knj" +04/30/2018,Economists,@econjared,"When the pendulum swings back, the progressive agenda must be ready to hit the ground running with ideas to correct… https://t.co/BhhT3i2UBE" +04/29/2018,Economists,@econjared,"The 'graf below, from my piece in tomorrow's WaPo, links to this site I just discovered at @CenterOnBudget (where I… https://t.co/8a8rk6Etpr" +04/27/2018,Economists,@econjared,"@GagnonMacro Yep. But I'm increasingly wondering what bang-for-buck will be from tax cut. For various reasons--Fed,… https://t.co/3e1EMC1tKU" +04/27/2018,Economists,@econjared,"Based on this AM's GDP and ECI (wage) reports, rising interest rates, a bit more inflation, low unemp, there's clea… https://t.co/bubpXhFbtz" +04/26/2018,Economists,@econjared,"D's with big ideas to help those left behind, even at low unemployment! Woohoo!! Here's some Q&A on Sen. Booker's j… https://t.co/A4fn6XAzYr" +04/25/2018,Economists,@econjared,@imtheMDP Exactly. Good for this guy for reinvesting in his successful biz. The problem here is twofold: 1) his sto… https://t.co/jOwnsydtNp +04/25/2018,Economists,@econjared,Here's why their skewed tax cut makes sense to Republicans. It's some word salad from Sen. Rob Portman explaining w… https://t.co/fasnjkvXZq +04/24/2018,Economists,@econjared,"@Brad_Setser “I have long been interested in Turkey’s balance sheet vulnerabilities.” This, my friends, is why you… https://t.co/oRV1cDAiJG" +04/24/2018,Economists,@econjared,"As per @svaneksmith, is 3% on the 10-yr Treasury the new bond villain?! More to come on this...I'm not much spooked… https://t.co/AXb1A8cDw2" +04/23/2018,Economists,@econjared,@RobinBrooksIIF That's a smart grid! Thnx. +04/23/2018,Economists,@econjared,"Reversing the tax cut is an essential part of staving off the divisive, racist, xenophobic politics that define our… https://t.co/rXs1ii7c3l" +04/23/2018,Economists,@econjared,@pagdavidson Good question! It says we can't pin it down within any policy relevant interval. That's like saying it… https://t.co/nENS6ku6Ef +04/22/2018,Economists,@econjared,"Deficit, schmeficit! The hawks versus the owls, and why this is exactly the debate we need to be having. https://t.co/dEBUABTGpC" +04/22/2018,Economists,@econjared,The picture below--successive Fed Reserve unemployment forecasts against actual rate--reveals that conventional mod… https://t.co/sQ1kQZYPFi +04/21/2018,Economists,@econjared,"Good read on Macron, who seems quite woke re the need to help those hurt by trade/globalization. ""Protection, not p… https://t.co/BF8spKDt5M" +04/20/2018,Economists,@econjared,"Despite White House noise, people don't believe the tax cuts are showing up in their paychecks. Probably because th… https://t.co/jXwGdOTNwO" +04/19/2018,Economists,@econjared,RT @econjared: @mileskimball I see and respect where you’re coming from but I worry that our stance on patents and IP veers into its own fo… +04/19/2018,Economists,@econjared,@mileskimball I see and respect where you’re coming from but I worry that our stance on patents and IP veers into i… https://t.co/8PFobQe7Jd +04/18/2018,Economists,@econjared,"Trump's econ Hassett claims in WSJ: tax cuts are already juicing wage growth. That's fake news, at least for mid-wg… https://t.co/fOttkvCW5r" +04/18/2018,Economists,@econjared,"Great thread on labor market tautness and wages, which, while clearly responding somewhat to tighter conditions, ar… https://t.co/oVQbtuBqk2" +04/18/2018,Economists,@econjared,"Rare non-econ tweet: Yes, these are troubled times. All the more reason to start your day with this amazing Cal Tja… https://t.co/aLYCIVTcJi" +04/17/2018,Economists,@econjared,"Re IRS computer crash: ""Some Republicans jumped on the glitch as an example of incompetence at the agency."" +The R'… https://t.co/Yyvx0pGqXI" +04/17/2018,Economists,@econjared,"@Neil_Irwin I’d be hard-pressed to believe 1-3, 5 either." +04/17/2018,Economists,@econjared,Kudlow to Fox viewers today: ‘Never believe CBO.’ This is what you say when you know your plan stinks and nobody wi… https://t.co/L5GhzO6HWq +04/16/2018,Economists,@econjared,"Breakeven employment levels higher than we thought! +Wonky stuff ahead, but point is important to those of us who a… https://t.co/mIEkp2ljtS" +04/16/2018,Economists,@econjared,"@JimPethokoukis Not sure that's quite right, Jimmy, at least per CBO. They have productivity reverting back to 1995… https://t.co/JlYTBRsGqv" +04/16/2018,Economists,@econjared,Despite some of the best evidence we've ever had showing that neither trickle-down tax cuts nor work requirements w… https://t.co/nCuedtTTCj +04/15/2018,Economists,@econjared,I'm quite certain Ron's right about this (ftr: he's right about a lot). I too have stressed the point that Trump's… https://t.co/ZzI5jdDEe0 +04/13/2018,Economists,@econjared,"Yesterday, I pointed out weak real wage trends for mid-wage workers under Trump. New BLS data confirm: Against prio… https://t.co/dTA3RAkdS9" +04/12/2018,Economists,@econjared,"Contra to Trump's econ team (@WhiteHouseCEA), real wages for mid-wage workers have been pretty stagnant. Higher-pai… https://t.co/D5RqdlpEbT" +04/11/2018,Economists,@econjared,@lepton939 But what if the good place is really the bad place?! +04/11/2018,Economists,@econjared,"Sen Corker today: ""This Congress and this administration likely will go down as one of the most fiscally irresponsi… https://t.co/fOzRUQF2AV" +04/11/2018,Economists,@econjared,Nobody packs more info into 9 entertaining (seriously!) minutes than @CardiffGarcia and @svaneksmith at… https://t.co/Wf815Zlrbl +04/11/2018,Economists,@econjared,"On Ryan's resignation: he's been the ultimate poser, espousing concern for the poor, the aged, the sick, and fiscal… https://t.co/Ja7bKSLzZD" +04/10/2018,Economists,@econjared,Damn--@NickHanauer cleans the clock of the trickle-downers in this oped. 'Businesses don’t give raises because they… https://t.co/Bh2dSUxbur +04/10/2018,Economists,@econjared,"@TimDuy @conorsen @M_C_Klein @ernietedeschi Great figure, @ernietedeschi Thnx! But what is it folks here find so im… https://t.co/mOkyTSOubf" +04/09/2018,Economists,@econjared,"Wisdom from @PaulNVandeWater re new CBO numbers. https://t.co/oIOlmyFS59 +And a bit more commentary from me: https://t.co/6K7hClXwnm" +04/09/2018,Economists,@econjared,"I’d like to propose a simple, common-sense rule: if you voted for the tax cut, you don’t get to complain about the… https://t.co/YTh6B4kxLP" +04/09/2018,Economists,@econjared,"New CBO forecasts on fiscal impact of tax cuts: +--tax cuts don't come anywhere close to paying for themselves, of c… https://t.co/PZ94uIx6vg" +04/09/2018,Economists,@econjared,The teachers' strikes are a reminder of the essential need for a countervailing movement against those who have lon… https://t.co/sXALAs2fVf +04/06/2018,Economists,@econjared,@D_Blanchflower There is no NAIRU! Or at least not one we can identify w/in a policy-relevant interval. +04/06/2018,Economists,@econjared,Low productivity growth is an acting constraint on wage growth. But a tighter job market can generate wage gains by… https://t.co/SvceIt3aVK +04/06/2018,Economists,@econjared,@D_Blanchflower Read my report from earlier this AM--that's highlighted: https://t.co/ql3IcgMpE5 (see part right under smoother graph) +04/06/2018,Economists,@econjared,"Here's my jobs report with a deep'ish dive into wage growth results, featuring an interesting (can I say that about… https://t.co/tjpFfm8HMh" +04/06/2018,Economists,@econjared,Wage growth (nominal) still on trend (see 6-mo rolling avg). Less acceleration than you'd expect given tight job ma… https://t.co/wQGEJ2yd7C +04/06/2018,Economists,@econjared,Job market remains very solid. https://t.co/P4khSM7U6m +02/17/2016,Economists,@NYTimesKrugman,Now tweeting as @PaulKrugman. +06/30/2018,Economists,@MarkThoma,Trump’s Potemkin Economy - Paul Krugman https://t.co/nOttgjG5VP +06/30/2018,Economists,@MarkThoma,"“The First Patent Litigation Explosion,” C. Beauchamp (2016) - A Fine Theorem https://t.co/rdMNGX0G1u" +06/30/2018,Economists,@MarkThoma,Long-term effects of cash transfers - VoxEU https://t.co/QQB4ZG1eeX +06/30/2018,Economists,@MarkThoma,Micro Profs teaching Intro Macro - Nick Rowe https://t.co/kHbDkpvVtH +06/30/2018,Economists,@MarkThoma,American Democracy on the Brink - Joseph E. Stiglitz https://t.co/7k6maXr8VH +06/30/2018,Economists,@MarkThoma,Trump Versus the Hog-Maker - Paul Krugman https://t.co/reMjA0Xu5p +06/30/2018,Economists,@MarkThoma,There are more foreign firms than we think! - VoxEU https://t.co/CRVJ9mieR6 +06/28/2018,Economists,@MarkThoma,Links (6/28/18) https://t.co/ndIyqeFmIU +06/28/2018,Economists,@MarkThoma,The value of late-in-life health care spending - MIT News https://t.co/0INkqNa2sO +06/28/2018,Economists,@MarkThoma,Stumbling and Mumbling: Centrists against freedom https://t.co/Oz2yXR6hg6 +06/28/2018,Economists,@MarkThoma,US Homeownership Patterns - Tim Taylor https://t.co/yyEFdE31b7 +06/28/2018,Economists,@MarkThoma,Uses and Abuses of Economic Formalism - Paul Krugman https://t.co/W2fDurP4Fa +06/27/2018,Economists,@MarkThoma,The career cost of children: career and fertility trade-offs - Microeconomic Insights https://t.co/VGudI2ukWI +06/27/2018,Economists,@MarkThoma,The Monumental Dishonesty and Appalling Bad Faith of Chief Justice Roberts’s Decision - Uneasy Money https://t.co/4yClvIj6gh +06/27/2018,Economists,@MarkThoma,Race and economic opportunity in the United States - VoxEU https://t.co/MTLXBuMHr2 +06/27/2018,Economists,@MarkThoma,Are markets Too Concentrated? - FRB Richmond https://t.co/9pDOeGmfQj +06/27/2018,Economists,@MarkThoma,The rise and reversal of college education - FRB Minneapolis https://t.co/FlXbBK95Lw +06/27/2018,Economists,@MarkThoma,Reducing inequality with the minimum wage - FRB Minneapolis https://t.co/nAb5qyi3Uk +06/27/2018,Economists,@MarkThoma,The Right and the Wrong Ways to Adjust the U.S.—China Trade Balance - Brad Setser https://t.co/kr2YQ4dVFn +06/27/2018,Economists,@MarkThoma,Trump Never Really Ordered a Halt to Child Separations - Regulatory Review https://t.co/RMPlklqLKI +06/26/2018,Economists,@MarkThoma,@Noahpinion Stuff and Money at the Time of the French Revolution +06/26/2018,Economists,@MarkThoma,Seriously? https://t.co/bTupHJyk0O +06/26/2018,Economists,@MarkThoma,"RT @ASFried: In 2012, a baker refused to serve Joe Biden. VP candidate Paul Ryan brought him to a rally. https://t.co/Qm2pY2FtYZ" +06/26/2018,Economists,@MarkThoma,"Subsidised childcare, maternal labour supply, and children’s outcomes - VoxEU https://t.co/U7HK8pLPg9" +06/26/2018,Economists,@MarkThoma,The Great Soybean Conspiracy - Paul Krugman https://t.co/vCEcaBy7Ll +06/25/2018,Economists,@MarkThoma,Can the Income-Expenditure Discrepancy Improve Forecasts? - FRBSF https://t.co/11NmQEnUpf +06/25/2018,Economists,@MarkThoma,Links (6/25/18) https://t.co/1VHhmjTMWw +06/25/2018,Economists,@MarkThoma,What Happened: Financial Factors in the Great Recession (NBER) - Gertler and Gilchrist https://t.co/FV02UjOyqL +06/25/2018,Economists,@MarkThoma,Hydraulic Monetarism - Nick Rowe https://t.co/BMHpwdDJp1 +06/25/2018,Economists,@MarkThoma,Peter Christoffersen and Forecast Evaluation - No Hesitations https://t.co/wljhKiEwBD +06/25/2018,Economists,@MarkThoma,The Medical Bankruptcies Debate - Tim Taylor https://t.co/MhT1pn3NIS +06/25/2018,Economists,@MarkThoma,Elasticities and the Inverse Hyperbolic Sine Transformation - Marc F. Bellemare https://t.co/5dLYhr7opt +06/25/2018,Economists,@MarkThoma,Policymakers can’t tackle inequitable growth if it isn’t measured - Equitable Growth https://t.co/7VqFfuDPWe +06/25/2018,Economists,@MarkThoma,Monies (old and new) through the lenses of modern accounting - VoxEU https://t.co/cE33nnyksa +06/25/2018,Economists,@MarkThoma,Sudden Stops: A Primer on Balance-of-Payments Crises - Cecchetti & Schoenholtz https://t.co/bXyMbyw6P2 +06/25/2018,Economists,@MarkThoma,"The John Taylor-backed “stablecoin” that's backed by, um, stability - FT Alphaville https://t.co/nMDq4akhDU" +06/25/2018,Economists,@MarkThoma,Hyping the Cost of Regulation - Regulatory Review https://t.co/KiUvr1d2Mt +06/25/2018,Economists,@MarkThoma,"Global financial cycles and risk premiums | VOX, CEPR Policy Portal https://t.co/tco44u4Tc9" +06/25/2018,Economists,@MarkThoma,As Maine Goes… - Economic Principals https://t.co/tPchhgTi1d +06/25/2018,Economists,@MarkThoma,"Gender, informal employment, and trade liberalisation in Mexico - VoxEU https://t.co/DtVGnffr7r" +06/25/2018,Economists,@MarkThoma,Shakespeare on tyranny - Understanding Society https://t.co/TA7DlJHZhr) +06/24/2018,Economists,@MarkThoma,"RT @drvox: 1. Unsurprisingly, this bit of kneejerk onanism from the WaPo editorial board completely misses the significance of this whole e…" +06/23/2018,Economists,@MarkThoma,Links https://t.co/ekEGdRBfLL +06/23/2018,Economists,@MarkThoma,Brexit Versus Trumpit (Wonkish) - Paul Krugman https://t.co/fSqHr6VgLL +06/23/2018,Economists,@MarkThoma,"Once Cut, Corporate Income Taxes Are Hard to Restore - Robert Shiller https://t.co/tr8cEQpNJV" +06/23/2018,Economists,@MarkThoma,A lucky boy from a golden age of economics - Nicholas Gruen https://t.co/qgLYjS3y0K +06/23/2018,Economists,@MarkThoma,Who’s Afraid of a Flattening Yield Curve? - Uneasy Money https://t.co/nIwJseFaJq +06/23/2018,Economists,@MarkThoma,What Would Happen if China Started Selling Off Its Treasury Portfolio? - Brad Setser https://t.co/Gp0mPdVDpl +06/23/2018,Economists,@MarkThoma,Happiness Around the World--And For Migrants - Tim Taylor https://t.co/3xqC6tIMZl +06/23/2018,Economists,@MarkThoma,The Paradox of Technological Déjà Vu – Digitopoly https://t.co/LZYCHpzNWT +06/23/2018,Economists,@MarkThoma,What to do with missing payments to factors of production - VoxEU https://t.co/V744JAxMcA +06/23/2018,Economists,@MarkThoma,Was the Marketplace of Ideas “Politically Hijacked”? - ProMarket https://t.co/iNt2e0Jr0u +06/23/2018,Economists,@MarkThoma,High-frequency Spending Responses to the Earned Income Tax Credit - The Fed https://t.co/54O3NAPzLr +06/23/2018,Economists,@MarkThoma,A new mandate for monetary policy - mainly macro https://t.co/Xm1xRhuwIu) +06/23/2018,Economists,@MarkThoma,The Dramatic Expansion of Corporate Bonds - Tim Taylor https://t.co/BJkgXMl0m7 +06/21/2018,Economists,@MarkThoma,"Melania spokesperson: There is no hidden message. + +Trump: Here's the hidden message. + +So, a not hidden message in b… https://t.co/wlJp2LNcnY" +06/21/2018,Economists,@MarkThoma,Return of the Blood Libel - Paul Krugman https://t.co/Az8vUXhUJq +06/21/2018,Economists,@MarkThoma,Problem with Comments https://t.co/Ck7ZISK8dq +06/20/2018,Economists,@MarkThoma,Links https://t.co/1MlKQlQkkg +06/20/2018,Economists,@MarkThoma,"Alongside rising top incomes, the level of living of America’s poorest has fallen - VoxEU https://t.co/W0Vc5ms3fk" +06/20/2018,Economists,@MarkThoma,Interview with Marianne Bertrand - Federal Reserve Bank of Minneapolis https://t.co/vxXoaf7xDv +06/20/2018,Economists,@MarkThoma,"What Does ""Serious"" Mean? - Stephen Williamson https://t.co/nLDQw8qoYn" +06/20/2018,Economists,@MarkThoma,Opinion | The Devil and Tom Donohue - Paul Krugman https://t.co/psuFvwE1oV +06/19/2018,Economists,@MarkThoma,Thinking About a Trade War (Very Wonkish) - Paul Krugman https://t.co/MijLsQJBgN +06/19/2018,Economists,@MarkThoma,The Charts That Show How Big Business Is Winning - The New York Times https://t.co/4dCCjtw0RV +06/19/2018,Economists,@MarkThoma,What Did the Romans Ever Do for Us? - Paul Krugman https://t.co/ORCt5zOybx +06/19/2018,Economists,@MarkThoma,Fall of the American Empire - Paul Krugman https://t.co/AezgfbbeFu +06/19/2018,Economists,@MarkThoma,Practical macroeconomic policy evaluation - Narayana Kocherlakota https://t.co/QzqyZBrQAV +06/19/2018,Economists,@MarkThoma,On Science Advancing One Funeral at a Time - ProMarket https://t.co/wBJqcpWx20 +06/19/2018,Economists,@MarkThoma,Capitalism works best in the Old World - Financial Times https://t.co/fxjffRo4Vu +06/19/2018,Economists,@MarkThoma,Now Is the Time for Banking Culture Reform - John Williams https://t.co/DTUZMG40vW +06/19/2018,Economists,@MarkThoma,Do Foreign Funds Matter for Emerging Market Bond Liquidity? - FRBSF https://t.co/4KrGhU2ZV4 +06/19/2018,Economists,@MarkThoma,The Referee - Economic Principals https://t.co/tWqmTUpwhx +06/19/2018,Economists,@MarkThoma,Inflation Policy - Cecchetti & Schoenholtz https://t.co/W7qka45QKE +06/19/2018,Economists,@MarkThoma,FedViews - FRBSF https://t.co/jMhl4did9W +06/19/2018,Economists,@MarkThoma,"Imprisonment by Malthus and ""Negative Liberty"":- Brad DeLong https://t.co/YjbDDDPkUu" +06/19/2018,Economists,@MarkThoma,Assessing Large Financial Firm Resolvability - FRB Richmond https://t.co/5YVqrQyzBB +06/19/2018,Economists,@MarkThoma,The bankruptcy of the centre right: Brexit edition - mainly macro https://t.co/BZ4a8Ek8KV) +06/19/2018,Economists,@MarkThoma,The distributional consequences of monetary policy - VoxEU https://t.co/0avLcw6dr7 +06/15/2018,Economists,@MarkThoma,Tax Cuts and Leprechauns (Wonkish) - Paul Krugman https://t.co/qiX4xBcuvx +06/15/2018,Economists,@MarkThoma,Unemployment and inflation once again... - Brad DeLong https://t.co/t3Rb2JjnHf +06/15/2018,Economists,@MarkThoma,Autonomous Vehicles: Here's One Crystal Ball - Tim Taylor https://t.co/d8NMqJwMEi +06/15/2018,Economists,@MarkThoma,Emerging Markets Under Pressure - Brad Setser https://t.co/Hx4Ulmv7QG +06/15/2018,Economists,@MarkThoma,"Bob Allen's new ""poverty machine"" and its implications - globalinequality https://t.co/gUiyRcUeR9" +06/15/2018,Economists,@MarkThoma,Why employment rates in the US have lagged other countries - VoxEU https://t.co/z01IlNrfxf +06/14/2018,Economists,@MarkThoma,G.O.P. to Americans With Health Problems: Drop Dead - Paul Krugman https://t.co/4S8AzBY6wQ +06/14/2018,Economists,@MarkThoma,Links https://t.co/tLprE2qjI9 +06/14/2018,Economists,@MarkThoma,Equitable Growth in Conversation: Michael Strain - Equitable Growth https://t.co/RdevZocGv5 +06/14/2018,Economists,@MarkThoma,"CONVERSABLE ECONOMIST: G-7, G7+, G20 https://t.co/99rkz5FXhG" +06/14/2018,Economists,@MarkThoma,More Permissive Zoning Codes Could Make U.S. Workers Richer - Regulatory Review https://t.co/G84xvzl38r +06/14/2018,Economists,@MarkThoma,Optimal Monetary Policy For the Masses - David Beckworth https://t.co/hS9cqeWk14 +06/14/2018,Economists,@MarkThoma,mainly macro: How UK deficit hysteria began https://t.co/esOrCzvwAH) +06/14/2018,Economists,@MarkThoma,Adjusting to Autonomous Trucking – Digitopoly https://t.co/AoOkMFmz8W +06/14/2018,Economists,@MarkThoma,Global debt and equilibrium interest rates - VoxEU https://t.co/Y5d6gQAue7 +06/13/2018,Economists,@MarkThoma,"Sovereign Money, Narrow Banks, Digital Currency, etc. - Stephen Williamson https://t.co/37JONqwlEo" +06/13/2018,Economists,@MarkThoma,Can the Euro Be Saved? - Joseph E. Stiglitz https://t.co/BkdVJ3unoG +06/13/2018,Economists,@MarkThoma,It’s time for Identity Portability – Digitopoly https://t.co/jWIGUkv0Cc +06/13/2018,Economists,@MarkThoma,The Parable of the Fruit Trees - Nick Rowe https://t.co/XBL4IS4w16 +06/13/2018,Economists,@MarkThoma,Unions Did Great Things for the Working Class - Noah Smith https://t.co/WGgPnseIR7 +06/12/2018,Economists,@MarkThoma,Links https://t.co/q5RTvfcHyl +06/12/2018,Economists,@MarkThoma,O Canada - Brad Setser https://t.co/o6xSyee60T +06/12/2018,Economists,@MarkThoma,Sustained growth and the increase in work hours - Growth Economics https://t.co/XcuImvgWBa +06/12/2018,Economists,@MarkThoma,A Quisling and His Enablers - Paul Krugman https://t.co/ei0p2lkJo0 +06/12/2018,Economists,@MarkThoma,The Transferunion fantasy - Thomas Piketty https://t.co/Ev1rrB50Nn +06/12/2018,Economists,@MarkThoma,A Tale of Three Nominal GDP Growth Paths - Macro Musings https://t.co/ioCB8am0Zi +06/12/2018,Economists,@MarkThoma,Summit on Diversity in Economics - Women in Economics at Berkeley https://t.co/4UyCHIsRz0 +06/12/2018,Economists,@MarkThoma,Digitalisation of money and the future of monetary policy - VoxEU https://t.co/gwnzWKlTIn +06/12/2018,Economists,@MarkThoma,E-Commerce Might Help Solve the Mystery of Low Inflation - The New York Times https://t.co/KHFOrPWRmO +06/12/2018,Economists,@MarkThoma,Financial repression and bank lending - All About Finance https://t.co/yP5A6okWKy +06/11/2018,Economists,@MarkThoma,Do Wages in High-Earning Sectors Always Reflect Skills? - ProMarket https://t.co/Otj4jElAfK +06/11/2018,Economists,@MarkThoma,Links https://t.co/2OkVynkqLO +06/11/2018,Economists,@MarkThoma,Why macroeconomics should further embrace distributional economics - Equitable Growth https://t.co/ml6fb2sbWU +06/11/2018,Economists,@MarkThoma,US Intergenerational Mobility: An International Perspective - Tim Taylor https://t.co/nDDTH4LfgW +06/11/2018,Economists,@MarkThoma,How Democratic Is the Euro? - Dani Rodrik https://t.co/E4kh4K4Vln +06/11/2018,Economists,@MarkThoma,"Banks and Money, Or Watch out What You Wish For - Cecchetti & Schoenholtz https://t.co/6VQ3gPw1XX" +06/11/2018,Economists,@MarkThoma,The Mystery of Puny Pay Raises - Noah Smith https://t.co/IsnT8rxCR3 +06/11/2018,Economists,@MarkThoma,Some ways to introduce a modern debt Jubilee - VoxEU https://t.co/paSvGkyjvz +06/11/2018,Economists,@MarkThoma,Demographics and long-run growth - VoxEU https://t.co/rIDmJsrmmG +06/11/2018,Economists,@MarkThoma,Opinion | A Better Electoral System in Maine - Maskin and Sen https://t.co/WyEyXzfTFW +06/11/2018,Economists,@MarkThoma,Homer Stirs - Economic Principals https://t.co/ehPpg7ziSh +06/10/2018,Economists,@MarkThoma,Trade Deficit Rising! - Econbrowser https://t.co/plhn69QIjq +06/10/2018,Economists,@MarkThoma,The inflation laggards — are they turning hawkish? - Gavyn Davies https://t.co/HNEZzbod05 +06/10/2018,Economists,@MarkThoma,"Tax Havens Blunt Impact of Corporate Tax Cut, Economists Say - The New York Times https://t.co/DQ7UgePNOL" +06/10/2018,Economists,@MarkThoma,AI and the paperclip problem - VoxEU https://t.co/HfVxq5HXcy +06/10/2018,Economists,@MarkThoma,Does Direct Democracy Reduce Regulatory Capture? - ProMarket https://t.co/9YuSQajRix +06/10/2018,Economists,@MarkThoma,Reviewing Richard Baldwin's The Great Convergence... - Brad DeLong https://t.co/CI7a5Ul303 +06/10/2018,Economists,@MarkThoma,The big problem China will face in a decade - Brad DeLong https://t.co/8fOVqjSOBI +06/10/2018,Economists,@MarkThoma,Debacle in Quebec - Paul Krugman https://t.co/KxA4PgM0xZ +06/10/2018,Economists,@MarkThoma,Would a Single-Payer System Require Painful Sacrifices From Doctors? - The New York Times https://t.co/mxy5TsVxqs +06/08/2018,Economists,@MarkThoma,Links https://t.co/rGNnnl8NM6 +06/08/2018,Economists,@MarkThoma,Inflation forecasting in emerging market economies - VoxEU https://t.co/oJMLx74Y78 +06/08/2018,Economists,@MarkThoma,Measuring competition - Stumbling and Mumbling https://t.co/fDyxU8KEkY +06/08/2018,Economists,@MarkThoma,Why Cities Can’t Stop Poaching From One Another - The New York Times https://t.co/qdn6h0CXID +06/08/2018,Economists,@MarkThoma,Flat Yield Curve May Result in a More Aggressive Fed - Tim Duy https://t.co/kkhpBxInEH +06/08/2018,Economists,@MarkThoma,Should peer to peer lenders exist in theory? - Bank Underground https://t.co/YGhcLsjyyt +06/08/2018,Economists,@MarkThoma,Corruption Hits the Small Time - Paul Krugman https://t.co/VGQm3CDMhp +06/07/2018,Economists,@MarkThoma,"RT @BrookingsEcon: New from the Hutchins Center on Fiscal and Monetary Policy: Rethinking the Fed's 2 percent inflation target, including c…" +06/07/2018,Economists,@MarkThoma,Machines Learning Finance - No Hesitations https://t.co/BVyCPJ1uTz +06/07/2018,Economists,@MarkThoma,Productivity and Pay: Is the Link Broken? - Stansbury and Summers https://t.co/bsXLLECDNk +06/07/2018,Economists,@MarkThoma,Links https://t.co/fgNK0QYSEV +06/03/2018,Economists,@MarkThoma,A Trade War Primer — Paull Krugman https://t.co/xntji7kKK6 +06/02/2018,Economists,@MarkThoma,"Opinion | Coal, Cash, and Bad Faith - Paul Krugman https://t.co/WmCeKbRrcr" +06/02/2018,Economists,@MarkThoma,Wellbeing inequality in retrospect - VoxEU https://t.co/tpC5tlBLaL +06/01/2018,Economists,@MarkThoma,America’s Founders vs. Trump - J. Bradford DeLong https://t.co/4IBAMmyazj +06/01/2018,Economists,@MarkThoma,Part-Time Workers Are Less Likely to Get a Pay Raise - macroblog https://t.co/1fiqlVQHIc +05/31/2018,Economists,@MarkThoma,The Plot Against Health Care - Paul Krugman https://t.co/zp2yxCZNCI +05/31/2018,Economists,@MarkThoma,"Oh, What a Stupid Trade War https://t.co/WbdxVUvOxx" +05/31/2018,Economists,@MarkThoma,Sustaining Full Employment and Inflation around Target - Lael Brainard https://t.co/vZEzcJxcZO +05/31/2018,Economists,@MarkThoma,Links https://t.co/xrqfA3sTkk +05/31/2018,Economists,@MarkThoma,Cultural proximity and loans - Microeconomic Insights https://t.co/42aYYkQf1h +05/31/2018,Economists,@MarkThoma,The Uniqueness of the Cointegrating Vector - Dave Giles https://t.co/3Fb7akYn01 +05/30/2018,Economists,@MarkThoma,Would a Central Bank Digital Currency disrupt monetary policy? - Bank Underground https://t.co/l9lIDbSOL6 +05/30/2018,Economists,@MarkThoma,Bulls and Bears: Why central banks should stabilize the stock market - Roger E. A. Farmer https://t.co/bWDnraGOoU +05/30/2018,Economists,@MarkThoma,"Nominal wages are not real wages, and why it matters in the UK - mainly macro https://t.co/OIyrfnP2Fx)" +05/30/2018,Economists,@MarkThoma,The euro must be made more robust to rival the dollar - FT https://t.co/knv3kot62A +05/29/2018,Economists,@MarkThoma,Trump is enabling a predatory economy. Here’s how he’s doing it. - Helaine Olen https://t.co/ac7NqCCcgz +05/29/2018,Economists,@MarkThoma,Is GDP Overstating Economic Activity? - Economist's View https://t.co/w7fMoDeCeV +05/29/2018,Economists,@MarkThoma,Gabriel Zucman: “Some People in Economics Feel That Talking About Inequality Is Not What Economists Should Be Doing… https://t.co/1VaTGdiyQf +05/29/2018,Economists,@MarkThoma,Links https://t.co/nbenirHpLH +05/29/2018,Economists,@MarkThoma,Trump’s Manchurian Trade Policy - Paul Krugman https://t.co/dPhURsYahP +05/29/2018,Economists,@MarkThoma,Germany's Prosperity: How Stable are the Foundations? - Tim Taylor https://t.co/Ib8shHZjfW +05/29/2018,Economists,@MarkThoma,Core Design Principles for a Central Bank Digital Currency - Bank Underground https://t.co/cYwe76mzEj +05/29/2018,Economists,@MarkThoma,The “accounting view” of money: money as equity - All About Finance https://t.co/RLtrDjvdqg +05/29/2018,Economists,@MarkThoma,News Values - Economic Principals https://t.co/vBVIguXlEK +05/29/2018,Economists,@MarkThoma,The Economics of Disintegration of the Greenland Ice Sheet - NBER https://t.co/E2vsG6x5Xm +05/29/2018,Economists,@MarkThoma,Great Recession: New Car Buyers Hold Cars Longer on Hold - St. Louis Fed https://t.co/wruqYvCdAT +05/27/2018,Economists,@MarkThoma,Does Economics Matter? https://t.co/z3oo1k8wHd +05/27/2018,Economists,@MarkThoma,Learning from America’s Forgotten Default - Sebastián Edwards https://t.co/0z31KAmJmM +05/27/2018,Economists,@MarkThoma,The carbon bubble and the pricing of bank loans - VoxEU https://t.co/GytXZdT9MG +05/26/2018,Economists,@MarkThoma,Neo- and Other Liberalisms https://t.co/imvtfUddLL +05/26/2018,Economists,@MarkThoma,Effects of Copyrights on Science https://t.co/AyZ5y0BZcd +05/26/2018,Economists,@MarkThoma,Effects of copyrights on science - VoxEU https://t.co/xbOcQJ7yuu +05/25/2018,Economists,@MarkThoma,Neo- and Other Liberalisms - Uneasy Money https://t.co/HyyXAfx9eP +05/25/2018,Economists,@MarkThoma,"Actually, the U.S. Can Afford Welfare - Justin Fox https://t.co/t7cfjmx7k6" +05/25/2018,Economists,@MarkThoma,Links https://t.co/YPFxsPxHBf +05/25/2018,Economists,@MarkThoma,Monetary Policy and the Crosswinds of Change - Charles Evans https://t.co/1fqIUtmQjl +05/25/2018,Economists,@MarkThoma,Google and Facebook’s “Kill Zone” - ProMarket https://t.co/XxdxfHHPEg +05/25/2018,Economists,@MarkThoma,E-autocracy: Surveillance and propaganda in Chinese social media - VoxEU https://t.co/zs74X7RpfU +05/25/2018,Economists,@MarkThoma,The declining share of manufacturing jobs - VoxEU https://t.co/X6JOZRoMaK +05/24/2018,Economists,@MarkThoma,Turmoil for Turkey’s Trump - Paul Krugman https://t.co/wcC6KILvmr +05/24/2018,Economists,@MarkThoma,"A Rescue Plan for a Jobs Crisis in the Heartland - Glaeser, Summers, Austin https://t.co/YRRUoaBbtp" +05/24/2018,Economists,@MarkThoma,The ‘suprasecular’ stagnation - VoxEU https://t.co/EbTdwz82Fl +05/23/2018,Economists,@MarkThoma,Improved financial regulation deters misconduct - EurekAlert! https://t.co/RoM9Fb0cOj +05/23/2018,Economists,@MarkThoma,"Long Horizon Uncovered Interest Parity, Updated - Econbrowser https://t.co/JkJW3TDSDi" +05/23/2018,Economists,@MarkThoma,"Minutes of the Federal Open Market Committee, May 1-2, 2018 - FRB https://t.co/AiD0L2HKi8" +05/23/2018,Economists,@MarkThoma,Can Credit Tightening Spur Social Unrest? Evidence from 1930s China - ProMarket https://t.co/SZcrJnvsCj +05/23/2018,Economists,@MarkThoma,Links https://t.co/fJ0HaS1h0b +05/22/2018,Economists,@MarkThoma,Congress Approves First Big Dodd-Frank Rollback - The New York Times https://t.co/vVey8utZKW +05/22/2018,Economists,@MarkThoma,Why a Trade War With China Isn’t “Easy to Win” (Slightly Wonkish) - Paul Krugman https://t.co/GHPaNRRPja +05/22/2018,Economists,@MarkThoma,US Hurricane Clustering: A New Reality? - Bank Underground https://t.co/rCvsgCKQSo +05/22/2018,Economists,@MarkThoma,"Argentina: Sustainable, Yes, with Adjustment. But Sustainable with A High Probability? - Brad Setser https://t.co/2naLPTXxsX" +05/22/2018,Economists,@MarkThoma,How the Unfettered Fed Flattened the Phillips Curve - WSJ https://t.co/obNJ4TwzSE +05/22/2018,Economists,@MarkThoma,"Anatomy of a trade collapse: The UK, 1929-33 - VoxEU https://t.co/xbMBuRHx9L" +05/21/2018,Economists,@MarkThoma,What’s the Matter With Europe? - Paul Krugman https://t.co/bmD3nGt6CP +05/21/2018,Economists,@MarkThoma,The Future Fortunes of R-star: Are They Really Rising? - John Williams https://t.co/yP46uTK64c +05/21/2018,Economists,@MarkThoma,The “accounting view” of money: money as equity - All About Finance https://t.co/BjWuv6r5LO +05/21/2018,Economists,@MarkThoma,Links https://t.co/CPg8aNoJrv +05/21/2018,Economists,@MarkThoma,"Bitcoin, Vollgeld, and popular views of money - VoxEU https://t.co/ysiwRYvJ3p" +05/21/2018,Economists,@MarkThoma,The Old Allure of New Money - Robert Shiller https://t.co/2BDicna08u +05/21/2018,Economists,@MarkThoma,China Now Has a Trade Deficit - Tim Taylor https://t.co/l9mGOGggBj +07/02/2018,Economists,@umairh,RT @kenklippenstein: We don’t live in a civilized country https://t.co/ypulSzgdld +07/02/2018,Economists,@umairh,RT @matthewstoller: Everyone in the Midwest just loves student debt and shitty health care monopolies. Last time I was in Des Moines people… +07/02/2018,Economists,@umairh,"RT @LouDPhillips: Is this woman seriously pointing heavenward as if thanking God for killing this beautiful creature? Trust me, sister...Go…" +07/02/2018,Economists,@umairh,RT @cmclymer: The median age of someone in the Millennial generation is about 30. Millennials have fought in two wars not of our own making… +07/01/2018,Economists,@umairh,"RT @angryrobotbooks: That'll do, pig. https://t.co/DnwcMHi0oL" +07/01/2018,Economists,@umairh,https://t.co/X2vKT5x8si +07/01/2018,Economists,@umairh,https://t.co/ZY2uBKqH9m +07/01/2018,Economists,@umairh,@TheHonorableAT Perfectly said +07/01/2018,Economists,@umairh,"Your life, your choice, the world can see American thinking or the lack thereof has failed catastrophically, the qu… https://t.co/O38bTPZNgH" +07/01/2018,Economists,@umairh,You guys gotta stop letting fools play you. These guys have a hold on you because they’re white and male and that’s… https://t.co/7lCAoydjoo +07/01/2018,Economists,@umairh,"@Parthenon1 It’s pretty simple, you’d pay less for more care if we had a universal system. Money is not the issue i… https://t.co/tRoLyxCK5b" +07/01/2018,Economists,@umairh,Yup. These guys literally don’t know anything. They have been devastatingly wrong about every single major event in… https://t.co/rtU68nJqol +07/01/2018,Economists,@umairh,"@Parthenon1 we can print or borrow money forever, more than enough to ""pay"" for all this stuff, it literally doesn'… https://t.co/pBJp7zCJ35" +07/01/2018,Economists,@umairh,"@Parthenon1 @sarabeee of course you're not receiving very good healthcare, american healthcare is 70% debt manageme… https://t.co/3c47l6ijOW" +07/01/2018,Economists,@umairh,"the guild of american white dude pundits should go hunting for the next two years, do some white dude shit, at this… https://t.co/gT0XFU1gNa" +07/01/2018,Economists,@umairh,"@Parthenon1 then stop repeating talking points and start learning something, there's no problem with ""affording a h… https://t.co/X7PxKUjkeh" +07/01/2018,Economists,@umairh,"@moorehn its a patriarchy all the way down, unfortunately...this is why america has no great writers anymore, just… https://t.co/QBBlrxDCku" +07/01/2018,Economists,@umairh,"i love the way the official guild of white dudes has decided that abolishing ice is a ""losing position"", yet not a… https://t.co/WdkFL1F5GA" +07/01/2018,Economists,@umairh,@moorehn you can always tell these guys have never read a book not published by a fellow american white dude becaus… https://t.co/LUSnnOKNql +07/01/2018,Economists,@umairh,but now i'm gonna watch a horror movie to cheer myself up from the headlines +07/01/2018,Economists,@umairh,"and its also like a meta portrait of collapse too, on the bbc everyone in the uk can see it for free, in the us, yo… https://t.co/iPzn1XvKPG" +07/01/2018,Economists,@umairh,"by the way my people, this documentary the bbc's showing (on showtime in the states) about the nyt covering is like… https://t.co/62CzYy8z2U" +07/01/2018,Economists,@umairh,"God going back to reality after the World Cup is even more depressing this year than usual, I think I’ll just do sports from now on" +07/01/2018,Economists,@umairh,Good thread https://t.co/zA1gMzhlzI +07/01/2018,Economists,@umairh,@Atrios Ahaha I didn’t even you were replying to one when I wrote that!! LOLOLOL +07/01/2018,Economists,@umairh,"@Atrios My dude go watch the new documentary about the nyt covering trump, I think it’s own showtime there, your he… https://t.co/O75APkhv5b" +07/01/2018,Economists,@umairh,@chrislehmann awww hahahaha exactly +07/01/2018,Economists,@umairh,"@Parthenon1 why do you worry about a deficit? do you even really know what ""the deficit"" really is? it's just scare… https://t.co/hqTjAAEZhW" +07/01/2018,Economists,@umairh,man that was an exhausting day of football +07/01/2018,Economists,@umairh,"@Parthenon1 No, they don’t, that’s a myth, the reality is the us has the rich worlds worst healthcare system by a l… https://t.co/HIeq7w1baX" +07/01/2018,Economists,@umairh,“Do Americans Understand How Bad Trumponomics is Going to Be For Them?” by @umairh https://t.co/xY9es4gN52 https://t.co/M7hxk8ppqj +07/01/2018,Economists,@umairh,Real transformation is not just possible but necessary. The bad guys will win if Americans can't design a better so… https://t.co/ltWtbOogQT +07/01/2018,Economists,@umairh,Americans have this myth of themselves as radicals and revolutionaries but the truth is that incremental change def… https://t.co/c4m5BwHji4 +07/01/2018,Economists,@umairh,"I understand that you guys are scared. Americans live in a permanent, crippling state of fear. But you need to stop… https://t.co/A7wgGo7mZ2" +07/01/2018,Economists,@umairh,"Don't settle for these half-baked compromises. You will never, ever end up at a functioning society that way. You w… https://t.co/sRW2HkTu1P" +07/01/2018,Economists,@umairh,"So far, here's what's happening. The bad guys make Gestapos and paramilitaries. You guys say, ""Oh my god! This is t… https://t.co/0079VKVX7w" +07/01/2018,Economists,@umairh,You guys need to get real and think about what institutions make a working society. Gestapos? Or national health se… https://t.co/WWNBjmko7q +07/01/2018,Economists,@umairh,"Americans, man. The longer you succumb to this game of incremental change the longer the kleptocrats have you by th… https://t.co/zUyUOn71qo" +07/01/2018,Economists,@umairh,bromance https://t.co/MFcIixpyVl +07/01/2018,Economists,@umairh,So said every pundit about every good and decent thing in human history https://t.co/bUnNYxZHuy +07/01/2018,Economists,@umairh,I just published “Do Americans Understand How Bad Trumponomics is Going to Be For Them?” https://t.co/VjT4hwQCZF +07/01/2018,Economists,@umairh,ah fuck man i feel so bad for spain +07/01/2018,Economists,@umairh,"I told you guys already, Putin's gonna score the winning goal in the final match." +07/01/2018,Economists,@umairh,RT @EnglishLIUBklyn: “Ten Techniques Authoritarians Use to Bend and Twist Reality (and How to Fight Them): The Authoritarian’s Rhetorical P… +07/01/2018,Economists,@umairh,"""The Faction and the Revolution"" https://t.co/pQEpvjAK7R https://t.co/OmGIXu0KfC" +07/01/2018,Economists,@umairh,RT @NetraHalperin: This is AWESOME! “The Faction and the Revolution” by @umairh https://t.co/5JO7189ajU +07/01/2018,Economists,@umairh,RT @kaliaragorn: “(Why) American Collapse is Extraordinary” by @umairh https://t.co/d5qQHRJgdt #usa #collapse #danger @matteorenzi +07/01/2018,Economists,@umairh,"No, people who do this are totally not fascists, why would anyone call them that https://t.co/mybn2R0jxP" +07/01/2018,Economists,@umairh,"RT @RVAwonk: The founder of Patriot Prayer — i.e., the guy who led a(nother) riot in PDX today — is running as a Republican Senate candidat…" +07/01/2018,Economists,@umairh,"True, you can’t compare a thing to itself. https://t.co/dHjKaO0y9b" +07/01/2018,Economists,@umairh,@ianjbeattie Ha. Exactly. Stone Age men. +06/30/2018,Economists,@umairh,RT @msbonniekay: “Why American Life is Traumatizing Americans But They Don’t Know it” by @umairh https://t.co/XKr66WgiUY +06/30/2018,Economists,@umairh,RT @GlobeMCramer: Awful scene on the orange line. A woman’s leg got stuck in the gap between the train and the platform. It was twisted and… +06/30/2018,Economists,@umairh,RT @doriantaylor: @umairh ƒlol https://t.co/6vaHC1yAJ6 +06/30/2018,Economists,@umairh,Bestill their poor cold dead hearts +06/30/2018,Economists,@umairh,"American pundits delicately approaching socialism with shock, confusion, bewilderment, like Stone Age men hesitantl… https://t.co/dWtesAc1Vt" +06/30/2018,Economists,@umairh,whaaaaat a goaaaaalllll +06/30/2018,Economists,@umairh,"@ferlelo Dear Fernando, thank you—twice!!" +06/30/2018,Economists,@umairh,RT @harikunzru: Imagining a crowdsourced 'David Simon Project' in which every right wing twitter troll is insulted and blocked until the en… +06/30/2018,Economists,@umairh,I just published “The Faction and the Revolution” https://t.co/fu9G4icyk5 +06/30/2018,Economists,@umairh,"RT @stevesilberman: This is 30,000 people amassing in DC right now to protest Trump's brutal immigration policy, in a march announced just…" +06/30/2018,Economists,@umairh,"RT @_SJPeace_: This elderly man is Rabbi Waskow. He was arrested protesting outside an ICE facility in Philadelphia. + +RETWEET THIS! https:…" +06/30/2018,Economists,@umairh,Hahahahahahaha https://t.co/OKAfXkdDO7 +06/30/2018,Economists,@umairh,RT @tom_nuttall: Don't cry 4-3 Argentina +06/30/2018,Economists,@umairh,RT @Amy_Siskind: Love this. https://t.co/XQrv17VKum +06/30/2018,Economists,@umairh,RT @RAICESTEXAS: Starting now!!! Tune in https://t.co/SmJlnHYapF +06/30/2018,Economists,@umairh,RT @waltshaub: “The marches taking place across the country this weekend are really about the soul of America.” https://t.co/BrmStCWMEB +06/30/2018,Economists,@umairh,"RT @BarbaraHubbard: “America, We Need to Talk About the Last Ten Days” by @umairh https://t.co/tNJmYrogiA" +06/30/2018,Economists,@umairh,What a match. Quality stuff. +06/30/2018,Economists,@umairh,"If you want to beat authoritarianism, offer a new social contract. Made of new institutions (like ICE etc). Time fo… https://t.co/SkxvPcOS3M" +06/30/2018,Economists,@umairh,"If you want to beat authoritarianism, offer a new social contract. Say it with me. https://t.co/hSu14ZxJuR" +06/30/2018,Economists,@umairh,Putin wins https://t.co/B7pgsJpQPk +06/30/2018,Economists,@umairh,"RT @Medium: Self-harm. Abuse. Anorexia. A troubling portrait of American childhood is on display on +this social media platform—and parents…" +06/30/2018,Economists,@umairh,Ahh poor Argentina man. France just hit the turbo button +06/30/2018,Economists,@umairh,what a goaaaaaaaaaaaal +06/30/2018,Economists,@umairh,100% this https://t.co/PFk9obnSvJ +06/30/2018,Economists,@umairh,@RyanMartin_7 ahahaha rovers!! +06/30/2018,Economists,@umairh,"RT @pbnshah: Capitalists: capitalism is the only system that lets you chase your dreams + +Also capitalists: fuck art degrees, history degree…" +06/30/2018,Economists,@umairh,"i have serious concentration problems watching sportsball this early in the day, it's harder than work" +06/30/2018,Economists,@umairh,"RT @sannewman: I got an email from FreshDirect today that started ""Dear Valued Customer"" and I really think this is what all people should…" +06/30/2018,Economists,@umairh,@smarimc @aral @glynmoody You’re a member of parliament and you don’t know the first thing about modern politics? A… https://t.co/78FHL1lobE +06/30/2018,Economists,@umairh,"LOL how do you think we ended up here, champ https://t.co/HJ34q3lnIs" +06/30/2018,Economists,@umairh,Beating authoritarianism takes a new social contract. She gets it. In fact the campaign is evidence of it. It’s a p… https://t.co/SW4yr8XAIt +06/30/2018,Economists,@umairh,You’re battling disinformation with a strategic intent to destroy your credibility. Propaganda designed carefully i… https://t.co/gfJxsEz8mc +06/30/2018,Economists,@umairh,@andrewbarss @Ez4u2say_Janis Exactly right. A crucial point that should be made often! +06/30/2018,Economists,@umairh,@tonyjoyce Hahaha love it! +06/30/2018,Economists,@umairh,@smarimc @aral @glynmoody Iran is a democracy. Pakistan is a democracy. Nazi Germany was not Soviet Russia in ideol… https://t.co/ptToUGbqU8 +06/30/2018,Economists,@umairh,RT @Eyaansonia: « Here’s a tiny question. Do you like the way the world is going? I don’t — and I doubt you do either. But what’s really go… +06/30/2018,Economists,@umairh,RT @bnowhereblog: “(Why) The English-Speaking World is the New Soviet Union” by @umairh https://t.co/lbDCr9JH6X +06/30/2018,Economists,@umairh,"RT @gpetriglieri: There can’t be civility without civilization, another great essay by @umairh https://t.co/VkdrnpMPr9" +06/30/2018,Economists,@umairh,"RT @Medium: ""When you tolerate a fool, a monster, or a tyrant — you are civilizing no one, but dehumanizing everyone,"" writes Umair Haque h…" +06/30/2018,Economists,@umairh,"""The Astonishing Pointlessness of 'Nuance'"" https://t.co/9U74kSdSuZ https://t.co/jDJtbifLAn" +06/30/2018,Economists,@umairh,"RT @Medium: ""America is at a crossroads,"" writes @umairh. ""A point of no return. A democratic society cannot really survive these assaults,…" +06/30/2018,Economists,@umairh,"ok i'm done, there's your friday night rant, i got too much sun so i'm especially vampire sick which makes me extra… https://t.co/1V0FRMaomu" +06/30/2018,Economists,@umairh,None of this should be especially challenging. What gets in the way is America's bizarre Soviet style dedication to… https://t.co/yTsfZt8p5X +06/30/2018,Economists,@umairh,"Whether or not you want to call all that ""socialism"" is besides the point, we don't need to debate Trotskyism. It's… https://t.co/1HNHN190wB" +06/30/2018,Economists,@umairh,"Furthermore, if we want to go on having even higher levels of health, sanity, meaning, purpose, belonging, intellig… https://t.co/kX6BfMKZGW" +06/30/2018,Economists,@umairh,"The reason for that is very simple, wealth will go on piling up at the top, the middle will hollow out, thanks to t… https://t.co/SBkIwyMcfo" +06/30/2018,Economists,@umairh,"Whether or not America's ideologically Soviet pundit class can deal with, whether or not American patriarchal white… https://t.co/TK1v13E9nf" +06/30/2018,Economists,@umairh,@ddn Hahahaha awesome +06/30/2018,Economists,@umairh,"Is it because everyone hates capitalism, hmmm https://t.co/RJHvqPV5OP" +06/30/2018,Economists,@umairh,"It’s a fools game. And part of the challenge is shattering these little old old boys clubs that keep America dumb, mean, blind, and cruel." +06/30/2018,Economists,@umairh,"Why is it that instead of learning something from the DSA’s win, pundits are trying to deny it matters? Always drag… https://t.co/LlTkiiiE8K" +06/30/2018,Economists,@umairh,"Here’s the lesson, do the opposite of what pundits say. https://t.co/yBs7DWYr2z" +06/29/2018,Economists,@umairh,"RT @TheChickLivesOn: I've noticed there's a lot of dicks in congress, but not a pair of balls in sight. Weird. 🤔" +06/29/2018,Economists,@umairh,An idiot president about to put another legendary American company out of business. https://t.co/dqiREG8GWF +06/29/2018,Economists,@umairh,@karma_musings You make a very good point 😊 +06/29/2018,Economists,@umairh,Like a worm https://t.co/hDuqUG5TsJ +06/29/2018,Economists,@umairh,"Yup. They live in Soviet America, where the party is always right https://t.co/qaVt4DItLV" +06/29/2018,Economists,@umairh,It’s fascinating to me in a kind of morbid way how every single thing I hear a conservative say by now is some way… https://t.co/HbgK2IFMtB +06/29/2018,Economists,@umairh,"RT @quollhorreur: This is an amazing thread. Thank you for sharing. + +You should all have a read. https://t.co/vbKCP4JbJn" +06/29/2018,Economists,@umairh,RT @MaryLizThomson: Offer a real social contract with compassion and heart - “Beating Authoritarianism Isn’t as Simple as You Think. It’s E… +06/29/2018,Economists,@umairh,@dizzeehendrix i have a cupcake +06/29/2018,Economists,@umairh,"RT @Medium: In many cases, people who appear ""lazy"" are actually struggling with something much deeper, writes @dr_eprice. Approach them wi…" +06/29/2018,Economists,@umairh,“The Faction and the Sect” https://t.co/8uBgH6chit +06/29/2018,Economists,@umairh,“The Astonishing Pointlessness of “Nuance” https://t.co/GX7z9Htswp +06/29/2018,Economists,@umairh,RT @annnabobs: Harry Potter and the... https://t.co/V4hXeXYkWw +06/29/2018,Economists,@umairh,RT @Medium: Now more than ever we need to internalize and practice the values of loving-kindness https://t.co/v9wqgpM0nb +06/29/2018,Economists,@umairh,@perfal You’re very welcome and thanks!! +06/29/2018,Economists,@umairh,LOL check the replies https://t.co/9hkR2rqQGt +06/29/2018,Economists,@umairh,"RT @robertjweisberg: When you combine every kind of societal collapse, you get what we have now: “(Why) American Collapse is Extraordinary”…" +06/29/2018,Economists,@umairh,I just published “The Astonishing Pointlessness of ‘Nuance’” https://t.co/v5EvW4cWtq +06/29/2018,Economists,@umairh,RT @ColorOfChange: Terry Crews should not be facing backlash for being brave enough to speak out about his sexual assault. #WeGotYouTerry h… +06/29/2018,Economists,@umairh,"RT @shannonrwatts: .@NRA’s Dana Loesch in 2016: Reporters are the ""rat-bastards of the Earth"" who should be ""curb-stomped."" + +https://t.co/…" +06/29/2018,Economists,@umairh,"if these guys had been around during the enlightenment, we would have found a million ways never to end up at democ… https://t.co/BqavCLFksN" +06/29/2018,Economists,@umairh,when the leader of your new enemy is better than the leader of you https://t.co/82XsejRIvF +06/29/2018,Economists,@umairh,"@tonyjoyce @johandewal I don’t disagree, I think we need to understand it a little better psychologically" +06/29/2018,Economists,@umairh,As much as I love social democracy ❤️💕 brocialists are still the worst +06/29/2018,Economists,@umairh,"RT @ddale8: Freeland announces Canada is indeed imposing its retaliatory tariffs agains the U.S. on Sunday, Canada Day: ""Canada has no choi…" +06/29/2018,Economists,@umairh,"The nuance whizzed over our heads. Data rained down like hellfire. Facts sang through the air, exploding above us.… https://t.co/rnu4qNPeBc" +06/29/2018,Economists,@umairh,When you’re being held hostage by a minority of crazy extremists https://t.co/WgkJWLDkWF +06/29/2018,Economists,@umairh,If you’re bad in this life you’re reborn as a nuance-bombing centrist in the next +06/29/2018,Economists,@umairh,RT @thehill: Protesters greet Melania with inflatable Trump in Klan outfit at migrant center https://t.co/LOe6zSRHEy https://t.co/xz4QkGqVSf +06/29/2018,Economists,@umairh,I just published “The Faction and the Sect” https://t.co/Ft1ZiY5mBg +06/29/2018,Economists,@umairh,"""The Story"" - @umairh https://t.co/TgWgeoa7iO https://t.co/smgvLvA7RW" +06/29/2018,Economists,@umairh,RT @johnchavens: “Do Americans Understand a Little Bit of Socialism is Good For Them?” by @umairh https://t.co/sPl6i94h4U Excellent read. +06/29/2018,Economists,@umairh,"RT @crampell: Member states of UN migration agency reject Trump's nominee for director general, repudiating historic American control of th…" +06/29/2018,Economists,@umairh,RT @froomkin: Hug your local journalist today. +06/29/2018,Economists,@umairh,So we have serious failures to reckon with. The bad guys are winning because they’re better at the basic arts of po… https://t.co/xSz0zUoxUy +06/29/2018,Economists,@umairh,This idea deficit in liberalism is so bad now in fact that American liberals are trying to claim social democracy f… https://t.co/wbqYFQF5i4 +06/29/2018,Economists,@umairh,That’s why I keep all my money in the form of vintage synths https://t.co/Xnsby967k3 +06/29/2018,Economists,@umairh,Anyone want to tell me the last time liberals had a new idea? Maybe in 1987? See how these junior pundits regurgita… https://t.co/SScIiVkbEC +06/29/2018,Economists,@umairh,See guys the GOP did a few smart things. They turned over the reins to a new generation. They moved the window righ… https://t.co/wUJuAS2hkf +06/29/2018,Economists,@umairh,"You blew it man. I love you, but your generation fucked us. You didn’t fight when it mattered and you didn’t make r… https://t.co/FBB9had0Uw" +06/29/2018,Economists,@umairh,"You know guys, America’s economy is based on consumption. Of imports. Pulling out of all these trade deals is laugh… https://t.co/sIQ71WbQ91" +06/29/2018,Economists,@umairh,The bizarre social construction of race in America https://t.co/afhFJcjMr4 +06/29/2018,Economists,@umairh,LOL https://t.co/kpUYJZraMM +06/29/2018,Economists,@umairh,@scamandrio Hahahah ah man I forgot about that cool guy +06/29/2018,Economists,@umairh,You know it’s funny. About a decade ago I wrote exactly that all boats rising line in a column and all the pundits… https://t.co/DY7Qmrt8se +06/29/2018,Economists,@umairh,"RT @ggreenwald: @Milbank The Dem Party has collapsed as a political force in the US, and a major reason is this constant demand from the es…" +06/29/2018,Economists,@umairh,@a_mutante I read that if they give you a big enough tv you’ll be happy forever +06/29/2018,Economists,@umairh,"Exactly so. Look, the great lesson of the last century was that (new) poverty sparks authoritarianism, fascism, col… https://t.co/ByasEW4k2J" +06/29/2018,Economists,@umairh,"Revolt, obviously https://t.co/NjRiCgxkMC" +06/29/2018,Economists,@umairh,RT @MITGoodCosJobs: “An under-appreciated way to solve America’s jobs problem and rebuild the middle class is to turn the millions upon mil… +06/29/2018,Economists,@umairh,"Exactly. This is the central point that American thought really hasn’t reckoned with, and won’t, because it would h… https://t.co/WvB66mmR6X" +06/29/2018,Economists,@umairh,But aren’t you doing just that too when you tell people what “their job” is? https://t.co/60pXgwtCb4 +06/29/2018,Economists,@umairh,This is the best thing capitalism has ever done for us https://t.co/cIdwRa8hLA +06/29/2018,Economists,@umairh,RT @rubycat24: “The Choice This Decade is (Really) Asking Us to Make” by @umairh https://t.co/K1EOawjltS +06/29/2018,Economists,@umairh,RT @danielleiat: Rob Hiaasen was murdered on his wife’s birthday. They’d just celebrated their 33rd anniversary. “He was just the best husb… +06/29/2018,Economists,@umairh,Note that American maternal mortality is already the lowest among its peers. This will crater it to poor country le… https://t.co/sikk3tcXIA +06/29/2018,Economists,@umairh,"RT @SarahLerner: John Legend: “I don’t care about fucking Sarah Sanders. Reunite the fucking kids with their families, then we’ll talk abou…" +06/29/2018,Economists,@umairh,RT @abogada_laura: My 5-yr-old client can’t tell me what country she is from. We prepare her case by drawing pictures with crayons of the g… +06/29/2018,Economists,@umairh,Firehosed https://t.co/bFA35mACE5 +06/29/2018,Economists,@umairh,You guys should know this stuff by now. Read about it. Everything will make a lot more sense. https://t.co/ZRbDF5KWFd +06/29/2018,Economists,@umairh,"RT @RectorSun: These are the five victims killed at @capgaznews today. +Rob Hiaasen https://t.co/CBJAVUuJNQ +Wendi Winters https://t.co/kKhVl…" +06/29/2018,Economists,@umairh,They’re using a model literally designed by the Russians called the firehose. That’s it’s point. So tyranny has inn… https://t.co/WBmP35kcyd +06/29/2018,Economists,@umairh,One of the things you guys need to think about is: what is a “political view”? Can I believe any old crazy horseshi… https://t.co/ewygmVJtWe +06/29/2018,Economists,@umairh,"Maybe, but modernity was not. And the question isn’t about the West vs the rest, but whether we want modern, open,… https://t.co/6YhJZlvSR7" +06/29/2018,Economists,@umairh,"@nullnein @MishoMoney Your points are well taken. The crisis (for me) wasn’t cause but effect, a lack of investment in institutions was" +06/29/2018,Economists,@umairh,Have you ever noticed how it’s only a certain kind of white dude that says this? Ever wondered why? Its a way for t… https://t.co/LgSF8ifIOw +06/29/2018,Economists,@umairh,“The (Hardest) Choice Americans Don’t Know They Have to Make Yet” https://t.co/bnP5p1ASRH https://t.co/7Iqv8zQnE2 +06/29/2018,Economists,@umairh,“This is Not Normal” https://t.co/UhwjK75BkW https://t.co/eUuLr40NR0 +06/29/2018,Economists,@umairh,"RT @johandewal: ""The American ideal [...] is about having a very specific kind of power — the power not to invest in anyone else at all."" #…" +06/29/2018,Economists,@umairh,This is not a kleptocracy https://t.co/kBrEWkP7Ed +06/29/2018,Economists,@umairh,"RT @bhgreeley: They went back to work, and they put out a damn paper. https://t.co/KftlJhZr8Q" +06/29/2018,Economists,@umairh,"We did. Now fuck off, arse licker https://t.co/jadrZXF7RU" +06/29/2018,Economists,@umairh,Sorry to bombard you guys. This one just really chokes me up. Ugh. What a tragedy. +06/29/2018,Economists,@umairh,"RT @capgaznews: Today, the Capital Gazette lost five members of our family. Stories on all five bright, wonderful lives will be included in…" +06/29/2018,Economists,@umairh,"RT @chicagotribune: Victim Wendi Winters, had identified herself as a “proud Navy mom,” a church youth adviser, a Red Cross volunteer and a…" +06/29/2018,Economists,@umairh,@livlab ah my god. how terrible. stay strong!! +06/29/2018,Economists,@umairh,"what a heartbreaking day, man." +06/29/2018,Economists,@umairh,"RT @brianstelter: Memo from Baltimore Sun Media Group publisher @trifalatzas -- details about the victims -- ""no words can adequately expre…" +06/29/2018,Economists,@umairh,"RT @letsgomathias: The ""14 words"" is a white supremacist slogan that goes ""We must secure the existence of our people and a future for whit…" +06/29/2018,Economists,@umairh,"RT @michelletoh235: ""I can tell you this: We are putting out a damn paper tomorrow"" https://t.co/eFK6JVdZhz via @brianstelter" +06/29/2018,Economists,@umairh,RT @BaltSunBrk: Capital Gazette shooting victim Rebecca Smith: Recent hire loved spending time with family https://t.co/2I3jR5CJ9A https://… +06/29/2018,Economists,@umairh,RT @jd3217: Rob hired me at the Capital. I’ll cherish his friendship forever. https://t.co/YBQClOM7Tv +06/29/2018,Economists,@umairh,"I never thought it was possible to outdo the taliban, but good work America https://t.co/PqrnMp7V9N" +06/29/2018,Economists,@umairh,"RT @leahmcelrath: Yes. Yes, we did. + +A chill went through my body as things started to turn that night. I told my daughter to go to sleep.…" +06/29/2018,Economists,@umairh,I just published “This is Not Normal” https://t.co/dBdRq6tljK +06/29/2018,Economists,@umairh,"So there I have part of an answer, which is helpful. “Dramatic” is a thing people say to block their emotions. Thos… https://t.co/qebSPMmF59" +06/29/2018,Economists,@umairh,maybe in the end it's just like a circle that can't be squared. who knows? all i can tell you i've lived in poor co… https://t.co/tZopAKZUpv +06/29/2018,Economists,@umairh,"i mean i just don't know how to express the dissonance i feel, which is the opposite of the dissonance you feel. mi… https://t.co/OvPKIruiV7" +06/29/2018,Economists,@umairh,"it's baffling. i suppose on one level i need to understand it, on another level i write about it. but i don't think… https://t.co/KdLhMR7oXm" +06/29/2018,Economists,@umairh,"i don't know, maybe americans just don't know this stuff. even in poor countries people protest and demand some kin… https://t.co/jVJNOfxTvz" +06/29/2018,Economists,@umairh,"moral objectors, shall we say https://t.co/njgigXs6Pn" +06/29/2018,Economists,@umairh,"RT @BernsteinJacob: Instead of screaming into the wind about Trump's attacks on the press, let's subscribe to the Capital Gazette for $2 a…" +06/29/2018,Economists,@umairh,"RT @Karoli: I captured the twitter account of the alleged shooter because it’s so disordered. You can read all, some or none here: + +https:/…" +06/29/2018,Economists,@umairh,"america's ability to just go on, get up, go to work, come home, in the face of all this, is really amazing. it's li… https://t.co/ZogJPoGrab" +06/29/2018,Economists,@umairh,lol are we going to see america start discussing the finer points of trotskyist revisionism soon +06/29/2018,Economists,@umairh,@boxbrown exactly +06/12/2018,Economists,@profsufi,"RT @AtifRMian: We replicated our key tests using the new data, and essentially confirm our original findings. The full write-up on the out-…" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: IMF released ""Global Debt Database"" last month which added 105 countries to our original sample of 30 countries (the new sam…" +06/12/2018,Economists,@profsufi,"RT @AtifRMian: A thread on out-of-sample replication of my 2017 QJE paper with @profsufi and @EmilVerner titled ""Household Debt and Busines…" +06/11/2018,Economists,@profsufi,"Videos of the entire program, with talks by Ben Bernanke, Raghu Rajan, and others are available here: https://t.co/bpuVwQ6QjX. Enjoy!" +06/11/2018,Economists,@profsufi,My co-author @AtifRMian also presented a summary of our piece coming out in the Journal of Economic Perspectives at… https://t.co/n5U5Muz0n7 +06/11/2018,Economists,@profsufi,Great people at @SHouseofFinance put on an amazing Nobel Symposium on Money and Banking a couple of weeks ago. I ha… https://t.co/bdx791vP7l +04/28/2018,Economists,@profsufi,"Either Fed wasn't responsible for compression in credit risk spreads during easy money period, or we are in for a s… https://t.co/XIVnEl8hdm" +04/28/2018,Economists,@profsufi,"In 2005 tightening cycle, credit risk premium fell and stayed low for some time, and then jumped tremendously. https://t.co/JPZpugAiqh" +04/28/2018,Economists,@profsufi,For 8 years all my Wall Street friends said the Fed was fueling a credit bubble by keeping rates low/QE. Rates are… https://t.co/v8zOJjVOzS +04/28/2018,Economists,@profsufi,"I was updating a credit cycle chart today for a talk at @ChicagoBooth: this seems scary, right? https://t.co/L66vDXAl04" +04/21/2018,Economists,@profsufi,RT @SairaSufi: https://t.co/ODOhzx5Vyx +04/21/2018,Economists,@profsufi,"RT @SairaSufi: Aplastic Anemia has changed our lives forever. However, one thing that will always remain constant is that these two can mak…" +04/21/2018,Economists,@profsufi,RT @SairaSufi: https://t.co/TVAY3hIX7Z https://t.co/klLXhoMwmt +04/21/2018,Economists,@profsufi,"I usually stick to economics on Twitter, but I want to help my beloved nephew Hadi Rasheed out; he has been in hosp… https://t.co/yYEfHE2BKU" +04/03/2018,Economists,@profsufi,"Economic expectations are infected by partisan bias, and this effect is becoming stronger over time. But such parti… https://t.co/nd8rWJWGma" +04/03/2018,Economists,@profsufi,And no evidence from credit card spending of a boost by Republicans relative to Democrats. Enthusiasm on the future… https://t.co/YtkbFfBdXH +04/03/2018,Economists,@profsufi,But views on the economy don't translate into higher spending on autos or using credit cards. Here is autos: https://t.co/n5cYMEVsnZ +04/03/2018,Economists,@profsufi,Here is effect on economic expectations through end of 2017. No sign of abatement whatsoever. Repubs ecstatic about… https://t.co/Ch27NbXuzm +04/03/2018,Economists,@profsufi,"Just posted revision of our partisan bias, economic expectations, and household spending paper. Trump effect on exp… https://t.co/V663ymY4FK" +03/12/2018,Economists,@profsufi,"RT @mdc: If you're looking for the seeds of the next recession, study the ratio of household debt to GDP, according to @profsufi @AtifRMian…" +03/06/2018,Economists,@profsufi,"RT @ProSyn: Credit-supply expansions, not technology shocks, are the key drivers of economic activity. - @profsufi @AtifRMian https://t.co/…" +03/05/2018,Economists,@profsufi,"RT @ProSyn: According to @profsufi @AtifRMian, the Great Recession revealed a fundamental truth about business cycles: it's all about expan…" +03/01/2018,Economists,@profsufi,"RT @equitablegrowth: What changes in the flow of credit to households can tell us about the overall cycle of the economy + +Here’s @nick_bun…" +03/01/2018,Economists,@profsufi,"RT @jeremychrysler: @profsufi There's an NBER working paper on a similar topic. ""counties experiencing relative economic decline did experi…" +02/28/2018,Economists,@profsufi,A project idea for labor economists: is the opioid epidemic a cause or an effect of the longer run decline in prime… https://t.co/rEOiAZ7mIL +02/26/2018,Economists,@profsufi,RT @nberpubs: Empirical evidence accumulated over the last decade supports the view that credit-driven household demand is an important so… +02/26/2018,Economists,@profsufi,"Great @MoneyBanking1 post on #usmpf2018 paper: does QE actually work? If so, how and by how much? https://t.co/7cYeAuuNot" +02/23/2018,Economists,@profsufi,RT @davidmwessel: Krugman. Two surprises in Europe: 1) impact of three words from Draghi was “awesome” 2)political cohension of eurozone. I… +02/23/2018,Economists,@profsufi,RT @davidmwessel: Boston Fed’s Eric Rosengren eviscerates #USMPF paper “Skeptical View of the Impact of the Fed’s Balance Sheet” https://t… +02/23/2018,Economists,@profsufi,"RT @greg_ip: .#USMPF2018 paper: ""The effects of [quantitative easing] are likely more modest than generally claimed."" Therefore: do much mo…" +02/23/2018,Economists,@profsufi,"RT @davidmwessel: Greenlaw, Hamilton, Harris, West at #USMPF say QE didn’t pack as much punch as others say. Dudley disagrees. https://t.…" +02/23/2018,Economists,@profsufi,"RT @mckonomy: NYFed's Dudley on QE: ""I would take a much less skeptical view of the Fed's balance sheet as a tool of monetary policy"" than…" +02/23/2018,Economists,@profsufi,"RT @pdacosta: Fed's Dudley says QE may work best if it's done in an open-ended fashion, pushes back against view that asset purchases were…" +02/23/2018,Economists,@profsufi,RT @NickTimiraos: New research argues the Fed's bond-buying programs may have been less stimulative than previously believed https://t.co/4… +02/23/2018,Economists,@profsufi,"RT @mckonomy: One unappreciated aspect of QE that's not in the paper is the psychological aspect, one official tells me. The markets though…" +02/23/2018,Economists,@profsufi,"RT @greg_ip: Bonds sold off in 2013 because of ""taper tantrum."" Failure to sell off last year as Fed began to contract balance sheet was th…" +02/23/2018,Economists,@profsufi,Here is Eric Rosengren discussion of #USMPF2018 paper: https://t.co/IaahhIQnnG +02/23/2018,Economists,@profsufi,And we are off. #USMPF2018 paper argues QE was not as effective as claimed. Here is Bill Dudley’s discussion: https://t.co/lKgkQopsiZ +02/23/2018,Economists,@profsufi,"In NYC for #USMPF2018 by IGM of @ChicagoBooth. Monetary policy discussion including Dudley, Rosengren, Blanchard, M… https://t.co/sDgJefoJaQ" +02/19/2018,Economists,@profsufi,And here is second video where the credit-driven household demand channel and the link to rising income inequality… https://t.co/ZcTBk7P6u1 +02/19/2018,Economists,@profsufi,The great folks at @chicagobooth also produced two videos where I explain the credit-driven household demand channe… https://t.co/lv6YVJ3fbC +02/19/2018,Economists,@profsufi,"We outline the ""credit-driven household demand channel"" as a central lesson of research conducted since the Great R… https://t.co/QBLXr8AH55" +02/19/2018,Economists,@profsufi,What have we learned about finance and macroeconomics over the last 10 years? New study by @AtifRMian and I: https://t.co/m7UDwD8PxB +02/08/2018,Economists,@profsufi,"And importantly, we find no evidence that this increased political bias in economic expectations has any effect on… https://t.co/IrlCvzocmP" +02/08/2018,Economists,@profsufi,This is part of broader project showing that political polarization is leading to increasingly biased views on the… https://t.co/Do98bBEPuq +02/08/2018,Economists,@profsufi,"Actually, I should really do R in red and D in blue https://t.co/5z4KdJmTb1" +02/08/2018,Economists,@profsufi,Just updated Gallup data on political affiliation and view of economy. If you thought people would become less pola… https://t.co/WRsK6uGBRs +01/24/2018,Economists,@profsufi,Second part of a series in which I discussion the relationship between income inequality and the growth in househol… https://t.co/8F7KvUtu5j +01/24/2018,Economists,@profsufi,RT @chicagoboothrev: Line of Inquiry: Amir Sufi (@profsufi) on inequality's effect on credit availability - the second part of a two-part s… +01/18/2018,Economists,@profsufi,"In memory of Bob LaLonde, this paper is great and enormously prescient. It shows that laid off workers see long ter… https://t.co/psbreJdaSY" +01/14/2018,Economists,@profsufi,RT @CostBenefitKMA: Line of Inquiry: Amir Sufi on household debt and business cycles - Chicago Booth Review https://t.co/mZw2GULAYC via @ch… +01/14/2018,Economists,@profsufi,"RT @lisaabramowicz1: Financial crises happen ""after an unsustainable rise in household debt...These booms sow the seeds of their own destru…" +01/11/2018,Economists,@profsufi,There is a paper almost ready for public with @AtifRMian that I describe in this video. Paper should be out by end… https://t.co/VIA11GCSQp +01/11/2018,Economists,@profsufi,"10 years after onset of Great Recession, what have we learned? My thoughts with @chicagoboothrev at @chicagobooth https://t.co/TF6VqvMHn3" +01/11/2018,Economists,@profsufi,"RT @chicagoboothrev: Introducing Chicago Booth Review's Line of Inquiry video series. In this first of a two-part edition, Amir Sufi (@prof…" +12/06/2017,Economists,@profsufi,"In fact, I find the most insightful book to understand our current politics was written 30 years ago: https://t.co/ukki088ad8" +12/06/2017,Economists,@profsufi,"Fantastic piece by Boxell, Gentzkow, and Shapiro: Blame TV not social media for the rise in political polarization. +https://t.co/rsaC6k7ZaO" +12/01/2017,Economists,@profsufi,@adamdavidson Dreamland by Quinones must be on this list. Opioid epidemic is one of the most important factors in America today. +12/01/2017,Economists,@profsufi,"@gilliantett @FT This is the main argument put forward by our recent research paper: https://t.co/clTVEsybwf +We wil… https://t.co/LzXp2Fxlsz" +12/01/2017,Economists,@profsufi,Great analysis by @gilliantett of @FT on Trump voters and economic sentiment. Bottom line: in forming economic expe… https://t.co/jOCR1E7FpN +11/20/2017,Economists,@profsufi,"RT @ChicagoBooth: Two Nobel laureate winners, Eugene F. Fama and Richard H. Thaler, discuss whether markets are efficient. https://t.co/sbK…" +11/08/2017,Economists,@profsufi,Productivity slowdown in advanced economies one of the top mysteries in economics today. Chad Syverson explains: https://t.co/ly5XzJ5lSq +11/08/2017,Economists,@profsufi,"Chad Syverson, our productivity expert at @chicagobooth explains why productivity slowdown in US is real, not just… https://t.co/c7XZO6ktoB" +10/23/2017,Economists,@profsufi,RT @liorjs: @SeminaryCoOp You also get to hear great research by @profsufi & Stephanie Stern. The book we wrote is available for free here:… +10/23/2017,Economists,@profsufi,"RT @liorjs: I'll speak about The Villages, FL, its fake history & historic preservation 6pm tonight at @SeminaryCoOp bookstore. https://t.c…" +10/23/2017,Economists,@profsufi,"RT @UChicagoLaw: Oct 23 @SeminaryCoOp: Fennell, @liorjs, Stern, @profsufi discuss ""Evidence & Innovation in Housing Law and Policy"" https:/…" +10/19/2017,Economists,@profsufi,"IGM at @ChicagoBooth experts panel on behavioral econ -- unanimous support for importance of psychological insights: +https://t.co/fnFt7KW90n" +10/18/2017,Economists,@profsufi,"RT @davidmwessel: IGM survey of US, European economists rejects notion that easy monetary policy was a major cause of 2008 crisis https://t…" +10/17/2017,Economists,@profsufi,RT @BCAppelbaum: This @chicagobooth poll on causes of the financial crisis is a pretty good example of the wisdom of a crowd. https://t.co/… +10/17/2017,Economists,@profsufi,"@rortybomb @ChicagoBooth My personal view is that this is because question asked about ""financial crisis"" as opposed to ""Great Recession.""" +10/17/2017,Economists,@profsufi,Remarkable: ranking of financial crisis causes identical among US and European economists in @ChicagoBooth IGM poll: https://t.co/oYE9IwXISv +10/17/2017,Economists,@profsufi,Economists in @Chicagobooth IGM poll don't believe GSEs or loose monetary policy main causes of financial crisis: https://t.co/oYE9IwXISv +10/17/2017,Economists,@profsufi,"9 years later, economists believe flawed financial sector regulation and supervision main cause of financial crisis: https://t.co/oYE9IwXISv" +10/17/2017,Economists,@profsufi,What caused the financial crisis? Economic experts in the IGM panel at @ChicagoBooth weigh in: https://t.co/oYE9IwXISv +10/16/2017,Economists,@profsufi,The opioid epidemic since 2000 is one of the most important stories of the US in 21st century. Great reporting: https://t.co/cwjXcxkSyN +10/16/2017,Economists,@profsufi,"The @washingtonpost article on opioid legislation is incredible. A must-read. +https://t.co/cwjXcxkSyN" +10/09/2017,Economists,@profsufi,"In honor of @r_thaler, did anybody notice the tremendous drop in market confidence in Yale survey? I know Thaler fo… https://t.co/WvIEJ4OPvI" +10/09/2017,Economists,@profsufi,Panel discussion at @ChicagoBooth featuring Nobel Prize winner @R_Thaler https://t.co/vzKfNcYoDF +10/09/2017,Economists,@profsufi,The man of the hour at @ChicagoBooth https://t.co/DIgXYTUH8X +10/09/2017,Economists,@profsufi,Dean Rajan takes the podium at Nobel ceremony at @ChicagoBooth https://t.co/t0lbqascge +10/09/2017,Economists,@profsufi,Celebrating Nobel at @ChicagoBooth right now https://t.co/x1uoUI770F +10/09/2017,Economists,@profsufi,"RT @BCAppelbaum: My piece on Richard Thaler's Nobel, which is being regularly updated: https://t.co/C7nB5e4Tcp" +10/09/2017,Economists,@profsufi,"RT @ChicagoBooth: Congratulations to #ChicagoBooth prof Richard H. Thaler (@R_Thaler) , 2017 #NobelPrize laureate in Economic Sciences! htt…" +09/14/2017,Economists,@profsufi,RT @edwardnh: How the 1980s US Boom and early 90s Bust was a precursor to the housing bubble https://t.co/PJD9IOXL1Y @M_C_Klein @profsufi +09/13/2017,Economists,@profsufi,"RT @M_C_Klein: Anyone awake in the 1980s should have known about the dangers in the 2000s + +https://t.co/QdkKJchcIP + +<-- me on the latest Mi…" +09/12/2017,Economists,@profsufi,Pretty definitive evidence of solid median household income growth in both 2015 and 2016 fro the Census: https://t.co/rxNiZ1u7Ml +09/12/2017,Economists,@profsufi,Census median household income for 2016 out. A very important economic release: https://t.co/XuzXNtrSmN +09/12/2017,Economists,@profsufi,"@MatthewPhillips @pewresearch So same thing shows up in three independent sources: Michigan, Gallup, and Pew." +09/12/2017,Economists,@profsufi,"RT @MatthewPhillips: @profsufi It is wild. This switcheroo in overall partisan optimism/pessimism also caught my eye. via @pewresearch +htt…" +09/12/2017,Economists,@profsufi,Rise in partisan bias in economic expectaitons according to Michigan Survey of Consumers data https://t.co/hf3qwTE9s6 +09/12/2017,Economists,@profsufi,Rise in partisan bias in economic expectations according to Gallup data https://t.co/U1iosTSjLW +09/12/2017,Economists,@profsufi,Both Gallup and Michigan show substantial rise in partisan bias in economic expectations over time. Reaching amazing levels since Trump. +09/12/2017,Economists,@profsufi,"Revision of partisan bias and economic expectations just posted, thanks to @Claudia_Sahm and others for comments!: https://t.co/G7goSnf6aB" +09/06/2017,Economists,@profsufi,RT @ChicagosMayor: To all #DREAMers: You are welcome in the City of Chicago. This is your home. Come to school and pursue your dreams. #DAC… +08/24/2017,Economists,@profsufi,RT @amagi1: The Fama Portfolio with contributions from @JohnHCochrane @CliffordAsness @profsufi & more! https://t.co/M1CTiJH7ZE +08/21/2017,Economists,@profsufi,"RT @IlliniBizDean: A plea to my male senior colleagues in economics + +https://t.co/b6IGqSeHdi" +08/14/2017,Economists,@profsufi,"Republican voters showing economic optimism in surveys, but it doesn't seem to translate into actual spending. https://t.co/fPTJ0fuqF8" +08/14/2017,Economists,@profsufi,Update: we have auto sales through June 2017: still no evidence of a rise in auto spending in Republican leaning co… https://t.co/U3wC0B0OZM +08/14/2017,Economists,@profsufi,This is subject of our recent paper: https://t.co/nKTIWdPuIz +08/14/2017,Economists,@profsufi,Republican voters became much more optimistic about the economy since November 2016 -- does it affect actual household spending? +08/12/2017,Economists,@profsufi,the credit risk premium usually a good indicator of potential turn in risk -- i will be watching this in coming week https://t.co/RyDcHO3CDd +08/10/2017,Economists,@profsufi,RT @gkiely: Beautiful Spanish edition of House of Debt by @profsufi & @AtifRMian published by @RBALibros @UChicagoPress https://t.co/jIRb81… +08/03/2017,Economists,@profsufi,"Here is the NBER digest piece describing the research: +https://t.co/98WZW6kQkL" +08/03/2017,Economists,@profsufi,Paper is forthcoming in QJE. +08/03/2017,Economists,@profsufi,"Replication kit for ""Household Debt and Business Cycles Worldwide"" with @AtifRMian and @EmilVerner available here: https://t.co/tZABbB0bcl" +07/21/2017,Economists,@profsufi,RT @ChicagoBooth: Women are more harshly punished on Wall Street than men: https://t.co/NoYEACSfoR +07/20/2017,Economists,@profsufi,"RT @Neil_Irwin: Americans are becoming more partisan in attitudes about the economy, but it isn't translating into their spending. https://…" +07/18/2017,Economists,@profsufi,"Interesting: RMBS bankers potentially involved in mortgage fraud from 02-06 did not face discipline in labor market +https://t.co/4J7wb2QP9L" +07/17/2017,Economists,@profsufi,"Here is link again, may help explain why trump bump in consumer sentiment has not boosted spending: https://t.co/nKTIWdPuIz" +07/17/2017,Economists,@profsufi,Thanks to @Claudia_Sahm for great comments on our partisanship and economic expectations paper! Will incorporate in revision. +07/14/2017,Economists,@profsufi,RT @teasri: Great paper by @AtifRMian & @profsufi. h/t @M_C_Klein https://t.co/HNAoBXfBG6 +07/14/2017,Economists,@profsufi,RT @M_C_Klein: Clever paper from @AtifRMian & @profsufi on how consumer expectations don't seem to affect actual consumer spending https://… +07/14/2017,Economists,@profsufi,Why are retail sales weak despite trump jump in consumer sentiment? Our new research helps explain? https://t.co/nKTIWdPuIz +07/12/2017,Economists,@profsufi,RT @EmilVerner: Nice summary of my recent work with @AtifRMian and @profsufi on how credit expansions affect the real economy https://t.co/… +07/12/2017,Economists,@profsufi,"RT @equitablegrowth: .@AtifRMian, @profsufi & @EmilVerner find banking deregulation leads to a more amplified business cycles https://t.co/…" +06/05/2017,Economists,@profsufi,"@aliciaparlap Hi Alicia, did NYT ever do a 2016 zip code level presidential vote share data set? Are 2012 data available?" +04/28/2017,Economists,@profsufi,I am not sure why anyone takes seriously consumer sentiment shifts following elections. They don't translate into actual spending. +04/28/2017,Economists,@profsufi,Changes in consumer sentiment driven by who wins presidency has no predictive power for actual spending. https://t.co/clTVEsybwf +04/28/2017,Economists,@profsufi,Why didn't rise in measures of consumer sentiment following election lead to bump in GDP growth? See this: https://t.co/clTVEsybwf +03/29/2017,Economists,@profsufi,@Nate_Cohn do you have a good resource for me for the official voter files you used to estimate turnout in your piece yesterday? +03/03/2017,Economists,@profsufi,"When @HyunSongShin speaks, I listen. You should to. Very interesting views on long term rates https://t.co/1OaZn4wXjm" +03/03/2017,Economists,@profsufi,RT @BIS_org: Possible feedback loop driving yields lower holds implications for #MonetaryPolicy:Shin #USMPF2017 https://t.co/fkdpkD1K6I htt… +03/03/2017,Economists,@profsufi,RT @BCAppelbaum: FISCHER: “There is almost no economic indicator that has come in badly in the last three months.” +03/03/2017,Economists,@profsufi,"RT @BCAppelbaum: In summary, the Federal Reserve is raising interest rates on March 15." +03/03/2017,Economists,@profsufi,RT @BIS_org: Lower yields may reflect investor risk management rather than signal economic weakness: Shin #USMPF2017 https://t.co/fkdpkD1K6I +03/03/2017,Economists,@profsufi,Another nice writeup of #usmpf2017 paper: https://t.co/Joe1JvUNrM +03/03/2017,Economists,@profsufi,Summary of #usmpf2017 paper: https://t.co/5b4yVTOfww +03/03/2017,Economists,@profsufi,RT @pdacosta: The Fed could be on the verge of making a big mistake https://t.co/y6IpMSpSa5 #USMPF2017 +03/03/2017,Economists,@profsufi,"RT @greg_ip: .@ChicagoFed's Charlie Evans: if #USMPF2017 paper is right that inflation is a random walk, ""As a policy maker I would be horr…" +03/03/2017,Economists,@profsufi,"RT @federalreserve: Speech by Vice Chairman Fischer on monetary policy: by rule, by committee, or by both?: https://t.co/BgyJvoyvsp" +03/03/2017,Economists,@profsufi,RT @WSJecon: Fed’s Vice Chair Stanley Fischer: Collective decision-making is better than rule-based policy making https://t.co/niSIHr0W3V +03/03/2017,Economists,@profsufi,RT @KarenMracek: Updated list: Brainard and Dudley also here #USMPF https://t.co/4FnEuuEEBT +03/03/2017,Economists,@profsufi,RT @zerohedge: FED'S EVANS: CONCERNED BY SIGNS INFL EXPECTATIONS BELOW TARGET +03/03/2017,Economists,@profsufi,RT @KarenMracek: Here's the paper being presented at #USMPF Says Fed needs to overshoot its inflation target for year or two https://t.co/… +03/03/2017,Economists,@profsufi,"And we are off: #usmpf today with fischer, Evans, lacker, reinhart, shin among others." +03/03/2017,Economists,@profsufi,RT @RichmondFed: Jeffrey Lacker's remarks on inflation dynamics from the U.S. Monetary Policy Forum https://t.co/x2q95wJAww #usmpf +03/03/2017,Economists,@profsufi,RT @KarenMracek: Chicago Fed's Evans slides for the #USMPF posted online here https://t.co/E8QPfXmYtG +02/04/2017,Economists,@profsufi,"Over 20K faculty at U.S. universities and colleges against Trump immigration policies: +https://t.co/HK9nhRony6" +02/04/2017,Economists,@profsufi,"RT @AcademicsVsBan: 50 Nobel Laureates have now signed the petition denouncing the President's Executive Order: https://t.co/uXmBtfVXxT +#No…" +01/29/2017,Economists,@profsufi,"At latest count, 117 faculty at University of Chicago @UChicago voice opposition to Trump immigration EO: https://t.co/k5YXnqkS4v" +01/29/2017,Economists,@profsufi,"Study by GMAT org shows best intl students less likely to come to US since Trump election (this was in December): +https://t.co/GEWmq6GkL3" +01/29/2017,Economists,@profsufi,Association of American Universities statement urging quick end to restrictions on students/scholars: https://t.co/eEaeQ1tBYW +01/29/2017,Economists,@profsufi,"University of Chicago statement on Trump executive order on immigration: +https://t.co/hujNZgMJVF" +01/27/2017,Economists,@profsufi,"Fellow academics: please voice opposition to the terrible immigration policies proposed by Trump administration: +https://t.co/YFeK22Gpk3" +01/11/2017,Economists,@profsufi,"Join Randy, Marianne,and me at @ChicagoBooth Economic Outlook in NY tomorrow! https://t.co/cYFwH8BasL" +01/11/2017,Economists,@profsufi,RT @UCPbooks: @profsufi https://t.co/UzlOaHqjX8 +01/11/2017,Economists,@profsufi,@UCPbooks exactly what i needed thanks! +01/11/2017,Economists,@profsufi,@reihan @Nate_Cohn thanks! this is the risk in taking time off reading political news ... +01/11/2017,Economists,@profsufi,"I have been out of loop, please let me know if someone has been making this point on polarization within whites based on education." +01/11/2017,Economists,@profsufi,"High educated whites switched from Romney to Clinton, low educated whites switched (massively) from Obama to Trump.… https://t.co/eg22jvObfu" +01/11/2017,Economists,@profsufi,"Exit poll data shows white vote share for republican basically same in 2012 and 2016. I'm confused by the ""whites for trump"" narrative." +01/11/2017,Economists,@profsufi,"Has anyone else emphasized that Trump victory was due to LESS-EDUCATED whites, not shift in whites in general? https://t.co/BRXMrtcJLA" +01/09/2017,Economists,@profsufi,The award belongs to Princeton's @AtifRMian as much as me. I just happen to be 18 months younger! Thanks to all for well wishes. +12/08/2016,Economists,@profsufi,"RT @chicagoboothrev: IGM's European panel of experts indicates free movement of people has been good for the average western European +https…" +12/07/2016,Economists,@profsufi,"Expert European economists provide answers to critical issues in Europe such as Brexit, trade, migration, and taxes: +https://t.co/VKlLhEYpHU" +12/07/2016,Economists,@profsufi,"The IGM at @ChicagoBooth launched the European Experts Panel today! Check it out, @chicagoboothrev +https://t.co/VKlLhEYpHU" +11/21/2016,Economists,@profsufi,"Leading academic economists unimpressed with Trump economic plan for first 100 days, @chicagoboothrev @chicagobooth: https://t.co/QIpfI7snS1" +11/10/2016,Economists,@profsufi,"Raghuram Rajan is back at Booth! See his IGM talk here: https://t.co/MAnyrjrZ4m +@chicagoboothrev @ChicagoBooth" +11/10/2016,Economists,@profsufi,@jtrothwell Hey Jonathan can you send me your email address? Mine is amir.sufi@chicagobooth.edu. Want to talk your Trump voter research +09/23/2016,Economists,@profsufi,Video games and the decline in employment of young men: Check it out: https://t.co/otLm183gWp +09/23/2016,Economists,@profsufi,"Really interesting research by my colleague Erik Hurst. Generally, you should read everything he writes! +https://t.co/otLm183gWp" +07/31/2016,Economists,@profsufi,"Rise of Trump predictable based on what we know happens after financial crises: my thoughts on polarization. +https://t.co/jIqcXMbaU2" +07/31/2016,Economists,@profsufi,"Stop pretending America's housing boom had nothing to do with lending standards, nice work by @M_C_Klein: +https://t.co/A1GhKORUi4" +07/31/2016,Economists,@profsufi,My thoughts on Brexit--a failure of economists to recognize groups negatively affected by trade and immigration: https://t.co/Mq5Pyxwx86 +06/19/2016,Economists,@profsufi,"A huge loss for India, but a huge gain for @ChicagoBooth -- So thrilled to welcome Raghu back!!" +05/06/2016,Economists,@profsufi,RT @ddayen: My book Chain of Title is now in stock at Amazon. Winner of the Ida & Studs Terkel Prize. Brighten your day & order! https://t.… +05/06/2016,Economists,@profsufi,See Luigi and I discuss the reasons why our politics is changing https://t.co/3O31c9kDpm +05/06/2016,Economists,@profsufi,Very excited to read @ddayen new book on terrible foreclosure practices by banks during Great Recession: https://t.co/ZDelzM6kEp +05/04/2016,Economists,@profsufi,More insight explaining how trade with China has contributed to polarization and the rise of Trump: https://t.co/f7BIiEoKEQ +05/04/2016,Economists,@profsufi,The rise of Trump was quite predictable if one looks at history of post-financial crisis politics: https://t.co/RMKSTlDVqm +05/04/2016,Economists,@profsufi,"RT @BoothFullTime: Thank the financial crisis for today's partisan politics, by @profsufi via @BoothCapIdeas https://t.co/10pGSk7xZd" +04/21/2016,Economists,@profsufi,"This is really great journalism on the newest form of ""subprime"": well done @HeatherPerlberg: +https://t.co/EY5KpBQ4ll" +04/21/2016,Economists,@profsufi,@HeatherPerlberg what is your email/phone number? i have a question regarding the Apollo piece you wrote. thanks! +03/29/2016,Economists,@profsufi,Looks like @Austan_Goolsbee can finally get that car he has been dreaming about https://t.co/48r3L4Fri2 +02/29/2016,Economists,@profsufi,First study to provide large-scale analysis of misconduct among financial advisers and financial advisory firms. https://t.co/gDYnBhUyLz +02/29/2016,Economists,@profsufi,"Almost half of financial advisers fired after misconduct are hired by other financial services firms: +https://t.co/gDYnBhUyLz" +02/26/2016,Economists,@profsufi,"RT @UofCBoothNews: Another economic slump, another communications test for Fed. @Research by @profsufi @CNBC https://t.co/kNM13hOhNs #econo…" +02/26/2016,Economists,@profsufi,RT @davidmwessel: Lael Brainard is giving a very dovish speech at #usmpf +02/26/2016,Economists,@profsufi,RT @davidmwessel: Jay Powell defends the dot plots. Says it forces each fomc member to come up with coherent view. #usmpf +02/26/2016,Economists,@profsufi,RT @KarenMracek: Fed Board Gov Powell says a data-dependent monetary policy means the #FOMC will surprise markets from time to time #USMPF +02/26/2016,Economists,@profsufi,RT @KarenMracek: Fed Gov Powell says dot plot 'presents a number of challenges' but says it is helpful for markets and committee #USMPF @fe… +02/26/2016,Economists,@profsufi,RT @BCAppelbaum: @profsufi You guys should have included a response from the markets/media. +02/26/2016,Economists,@profsufi,RT @BCAppelbaum: All forward guidance is inherently calendar guidance. The Fed might as well try to bail out the ocean. #usmpf https://t.co… +02/26/2016,Economists,@profsufi,"If reporter asks, ""when will next rate happen?"" Right answer is: it depends on how economy evolves https://t.co/I6sTGixnEk +#usmpf2016" +02/26/2016,Economists,@profsufi,Basic point: Fed should not cater to press/market demands for time based forward guidance https://t.co/I6sTGixnEk +02/26/2016,Economists,@profsufi,"RT @ylanmui: #USMPF2016: ""Fed communication has relied too heavily on time-based forward guidance, even though it mentions conditionality.""" +02/26/2016,Economists,@profsufi,The #USMPF2016 paper is out. Discussion from Jay Powell and John Williams coming up. https://t.co/I6sTGixnEk +02/19/2016,Economists,@profsufi,"household debt boom gone wrong in brazil was predictable. we see it over and over. +https://t.co/vYzfsx1bQq" +02/19/2016,Economists,@profsufi,"china, brazil, thailand: when are we going to learn that juicing household spending through debt doesn't grow economy in a sustainable way?" +02/19/2016,Economists,@profsufi,"Trade surplus rising in Brazil, driven by collapse in imports. Any commodity-based explanation goes the WRONG WAY. +https://t.co/z26MW7P4yF" +02/19/2016,Economists,@profsufi,"In Brazil, reversal of trade deficits, economy collapsing, political instability, all indications of a household credit boom gone bad." +02/19/2016,Economists,@profsufi,"Brazil collapsing: sharp rise in consumer credit in boom years likely playing a very important role: +https://t.co/HpfgY8jwDZ" +02/11/2016,Economists,@profsufi,ZLB has not been main constraint on monetary policy: broken redistribution channel is culprit. Pushing rates even well below zero won't help +02/11/2016,Economists,@profsufi,"It is no surprise that monetary policy unable to boost economy, even by pushing rates into negative territory. https://t.co/AiRpl30q0e" +02/11/2016,Economists,@profsufi,Pushing policy rates below zero has limited impact on economy bc redistribution channel of monetary policy is broken https://t.co/AiRpl30q0e +02/08/2016,Economists,@profsufi,That Quicken commercial? See our book to see how that turns out: #houseofdebt: https://t.co/oZBKgbHIng +02/05/2016,Economists,@profsufi,"@GoranHjelm agreed. statistically significant with thailand, but not without. i think if china truly reported GDP, it would be more robust." +02/05/2016,Economists,@profsufi,"Financial/corporate debt surge gets much attention, but China also saw big rise in household debt 07 to 14. +https://t.co/IpVT4PVFDA" +02/05/2016,Economists,@profsufi,"This correlation would be even stronger if we had credible GDP growth information in China. Don't forget, China had big HH debt boom as well" +02/05/2016,Economists,@profsufi,"Countries with big rise in HH debt from 07 to 14 seeing downward revisions in growth forecasts:Thailand, Brazil. https://t.co/8zlSjVKblt" +06/29/2018,Economists,@Nouriel,"RT @SteveRattner: Trump just cited a tax-cut related benefit of $2,000 (or more) for Americans . . . NOTE: the average American will receiv…" +06/29/2018,Economists,@Nouriel,RT @ButtCoin: travel agency realizes that coiners never leave the basement https://t.co/amKrXNVZW9 +06/29/2018,Economists,@Nouriel,RT @Bitfinexed: Kraken was presented with evidence of wash trading back in November of 2017 and did nothing about it. Kraken also has prefe… +06/29/2018,Economists,@Nouriel,"RT @Noahpinion: Today in our @bopinion debate, @conorsen speculated that big corporations might be over-levered, and that the next recessio…" +06/29/2018,Economists,@Nouriel,RT @ruskin147: For those who didn’t understand this gibberish - don’t worry neither did I https://t.co/eqXUDmEXEB +06/29/2018,Economists,@Nouriel,RT @Bitfinexed: I know. 🤪 https://t.co/TpAyJ5XI6r +06/29/2018,Economists,@Nouriel,RT @sullydish: Trump’s Always-Wrong Economist Lawrence Kudlow Wrongly Says Deficit Is Falling https://t.co/h0Tt3B5ldk via @intelligencer +06/29/2018,Economists,@Nouriel,RT @mattleising: there was no link to Tether issuance and secondary market trading on Kraken that we found. Tether is created in huge and s… +06/29/2018,Economists,@Nouriel,"RT @CasPiancey: @DanDarkPill @CryptoQF @joonian @mattleising So 13,076.389 keeps coming up because... sats? I'm sorry, but this isn't addin…" +06/29/2018,Economists,@Nouriel,RT @prestonjbyrne: .@mattleising awesome analysis of tether trades. I've suspected that bot-driven wash trading is the *only* thing that cr… +06/29/2018,Economists,@Nouriel,RT @martinmcgrath: I have a vision of loads of HODLers pushing wheelbarrows full of servers down to the bakers in order to buy a loaf of br… +06/29/2018,Economists,@Nouriel,More evidence of criminal price manipulation by Tether. When will the regulators start cracking down on this crimin… https://t.co/Jg1xQcGnth +06/29/2018,Economists,@Nouriel,The dumb suckers who remained HODLers rather than FODLers have lost over 70% - or rather 99% for many coins - in 6… https://t.co/3AphilHyEb +06/29/2018,Economists,@Nouriel,RT @PWhiz636: My heart and thoughts go out to all HODLERS as their portfolio gets decimated #cryptocurrencies #bloodbath #bitcoin #BitcoinC… +06/29/2018,Economists,@Nouriel,RT @WscCrypto: Bitcoin bloodbath nears dot-com bubble burst as many tokens go to zero https://t.co/h4OABmqDde +06/29/2018,Economists,@Nouriel,Bitcoin Bloodbath Nears Dot-Com Levels as Many Tokens Go to Zero https://t.co/ZVODmMOkVk via @technology +06/27/2018,Economists,@Nouriel,"RT @ProSyn: In 1988, China's per capita GDP was just 4% of the US level (in PPP terms). This year, that ratio is close to 30% https://t.co/…" +06/27/2018,Economists,@Nouriel,"RT @greg_ip: Incorrect. Over course of Obama's two terms, quarterly growth exceeded 2% (annualized) 17 times, 3% eight times, 4% three time…" +06/27/2018,Economists,@Nouriel,RT @ProSyn: Turkey's double-digit inflation and 6%-of-GDP current-account deficit congratulate President Erdogan https://t.co/8OO7ixcPFo +06/27/2018,Economists,@Nouriel,"RT @ProSyn: What is actually in China's ""Made in China 2025"" plan? Shang-Jin Wei of @Columbia explains https://t.co/lXE80X83fB" +06/27/2018,Economists,@Nouriel,"RT @el33th4xor: EOS is the best Store of Drama, bar none. + +Now, ""the arbitrator"" is telling ""the dev"" to buzz off, since he's the central f…" +06/27/2018,Economists,@Nouriel,RT @ProSyn: Merkel's surprising concessions on eurozone reform reflect the brewing political problems she faces at home https://t.co/NqgbH0… +06/27/2018,Economists,@Nouriel,"RT @ummjackson: What a surprise that just 2 weeks after launching, #EOS is considering scrapping its entire “constitution” and starting ove…" +06/27/2018,Economists,@Nouriel,"RT @ianbremmer: We appear to be living in the 10,001th simulation. https://t.co/PiZQCpDxH0" +06/27/2018,Economists,@Nouriel,"RT @crypto: JUST IN: The FBI has 130 cases tied to cryptocurrencies, agent says https://t.co/Tl9APaK2qP https://t.co/fmmzgiKlPK" +06/27/2018,Economists,@Nouriel,"RT @RBReich: Next time you hear someone railing against immigrants, mention these facts: +1) Immigrants add ~$1.5 trillion to U.S. GDP annua…" +06/27/2018,Economists,@Nouriel,"RT @ProSyn: The capacity to supply “what technology wants” may determine which economies are positioned for success, and which are bound to…" +06/27/2018,Economists,@Nouriel,"RT @ianbremmer: Most dangerous countries for women + +1 India +2 Afghanistan +3 Syria +4 Somalia +5 Saudi +6 Pakistan +7 Dem. Rep. of Congo +8 Yeme…" +06/27/2018,Economists,@Nouriel,RT @Bitfinexed: Another Brock Pierce and Bitfinex disaster. Psst: They didn’t raise $4 Billion because they engaged in a bunch of illegal w… +06/26/2018,Economists,@Nouriel,"RT @Fizzhogg: In interview w Bloomberg, Harley-Davidson Inc. CEO Matt Levatich said “If President Donald Trump hadn't removed the U.S. from…" +06/26/2018,Economists,@Nouriel,RT @ForeignPolicy: Unprecedented business opportunities have emerged from China’s massive surveillance-state expansion and its national pus… +06/26/2018,Economists,@Nouriel,RT @FinancialTimes: HSBC now has a robot working with customers – and taking selfies with them – in its Fifth Avenue branch in New York htt… +06/26/2018,Economists,@Nouriel,"RT @FUD_Buddy: A director within the United States Secret Service testified on Wednesday to Congress, urging the government to take decisiv…" +06/26/2018,Economists,@Nouriel,RT @BruceBartlett: I broke from the Republican Party & was banned from polite GOP society because of Bush 43's stupidity & bad policies. Bu… +06/26/2018,Economists,@Nouriel,"RT @ProSyn: If the financial crisis ten years ago taught us anything, it is that risks often emerge where they are least expected https://…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: The opposite of populist nationalism is not globalist elitism; it is economic realism. And in the end, reality will win | @Kale…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: By undercutting German Chancellor Angela Merkel's leadership from within the CDU/CSU alliance, Horst Seehofer is playing with f…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: The Brexiteers' hope for a ""global Britain"" that will preside over a vast ""Anglosphere"" has already become a comical and danger…" +06/26/2018,Economists,@Nouriel,"RT @crypto: Bitcoin could be a bubble, Jack Ma warns https://t.co/KrXIDyYb8I https://t.co/AIJrXuv1FK" +06/26/2018,Economists,@Nouriel,RT @ProSyn: The Trump administration is demanding that Mexico set a wage floor of $16 per hour for its auto workers. That is the equivalent… +06/26/2018,Economists,@Nouriel,"RT @Brad_Setser: Strongly recommend latest column from @M_C_Klein, which emphasizes just how regressive China's system of taxation is. + +Tha…" +06/26/2018,Economists,@Nouriel,RT @buytheirfear: Updated psychology of a market https://t.co/64IqXmZV9K +06/26/2018,Economists,@Nouriel,"RT @elerianm: Via @FT : Agustín #Carstens , general manager of the #BIS , on the #risks for financial #markets following ""a decade of unusu…" +06/26/2018,Economists,@Nouriel,"RT @ProSyn: Nowadays, competing strategic interests and imperial ambitions play a much larger role than religion in defining regional polit…" +06/26/2018,Economists,@Nouriel,RT @crypto: The crypto collapse is spreading with hundreds of coins plunging in value https://t.co/DI7Al5AUry https://t.co/gT8EWvW9G7 +06/26/2018,Economists,@Nouriel,"RT @ProSyn: In the mid-1980s, the share of US wealth held by the bottom 90% of the population peaked at 35%. Three decades later, they owne…" +06/26/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Now that Bitcoin is suffering its inevitable demise - it was inevitable, the whole scheme was hemorrhaging cash becaus…" +06/26/2018,Economists,@Nouriel,RT @ProSyn: Putin and Europe’s right-wing populists have made a common enemy of the US- and EU-led global order. – @RSkidelsky https://t.co… +06/26/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: To all the clueless lemmings arguing that blockchain and Bitcoin are still young so you can't criticise them for being… +06/26/2018,Economists,@Nouriel,RT @EconguyRosie: $440 billion of American profits are derived from abroad annually - 20% of the earnings pie! This is because US direct in… +06/26/2018,Economists,@Nouriel,"RT @Brad_Setser: Is China's so-called ""nuclear"" option of Treasury sales really nuclear? + +My answer - in a blog posted last Friday - is no.…" +06/26/2018,Economists,@Nouriel,"RT @peter_tl: UBS survey of 600 companies spells out Brexit ""dividend"": +- 35% of companies plan to reduce UK investment post-Brexit +- 41%…" +06/26/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Before you start hallucinating a genius plan of buying crypto on the dip, and selling it high, think: who are you buyi…" +06/26/2018,Economists,@Nouriel,"RT @NancyNakamoto: Crypto always wants ""New Money"" because it is the only way for early entrants to a Ponzi scheme to get richer/get out.…" +06/26/2018,Economists,@Nouriel,"RT @davidealgebris: (BN) BIS Signals Cryptocurrencies Should Be Regulated Like Securities +@Nouriel. When this happens all Cryptocurrencies…" +06/23/2018,Economists,@Nouriel,RT @NancyNakamoto: Very please that world leading economist and fearless fighter for truth and logic has agreed to appear on the 10 NancyNo… +06/23/2018,Economists,@Nouriel,"RT @davidgerard: News: Mt. Gox recovers, Bitcoin crashes, Bitfinex/Tether, Kaminska to Parliament, Hydro-Québec, TRON, EOS, Nano insecure k…" +06/23/2018,Economists,@Nouriel,Trump’s Gift to China by Joschka Fischer @ProSyn https://t.co/UY3cmSp2pF +06/23/2018,Economists,@Nouriel,RT @elerianm: Friday’s fall in yields on #Greek #bonds makes total sense. Credit risk is lower due to debt maturity extensions and extra fu… +06/23/2018,Economists,@Nouriel,"RT @ProSyn: Without joint policies to maintain transatlantic cohesion between the US and the EU, the West as we know it will soon come to a…" +06/23/2018,Economists,@Nouriel,RT @FactFreeh: Louis Freeh vouched for the Kliuyev brothers and they fled to Russia; Freeh vouched for Romanian Gabriel Popoviciu and he we… +06/23/2018,Economists,@Nouriel,"RT @meridiocrypto: The first 1300 million tethers made bitcoin go x25 up to 20k. +The next 1300 million tethers were unable to hold bitcoin,…" +06/23/2018,Economists,@Nouriel,"RT @Bitfinex2: It’s with regret that we announce the one and only Mr. Potter is leaving our company. + +We can’t say why he’s leaving but he…" +06/23/2018,Economists,@Nouriel,"RT @ProSyn: Since the 2008 global financial crisis, the debt held by nonfinancial corporations has grown by $29 trillion https://t.co/rcIoH…" +06/23/2018,Economists,@Nouriel,"RT @altcointhoreau: The entire 2017 bull run was: +>Tether prints money out of thin air +>Uses it to buy Bitcoin +>Bitcoin goes up due to fomo…" +06/23/2018,Economists,@Nouriel,RT @ianbremmer: It’s painful to see an ex-Governor become an overt racist. https://t.co/8IjAzMwbNt +06/23/2018,Economists,@Nouriel,RT @ProSyn: Nationalism versus globalism appears to be this decade’s defining political conflict | @Kaletsky https://t.co/W7coFJUii2 +06/23/2018,Economists,@Nouriel,RT @crampell: Trump’s tariff on steel imports has caused the country’s remaining major nail producer to lose about 50% of its business in t… +06/23/2018,Economists,@Nouriel,RT @ProSyn: Italy’s real per capita GDP is lower today than it was when the euro began 20 years ago https://t.co/NiNRs4gnnT +06/23/2018,Economists,@Nouriel,"RT @adamdavidson: I know we're cautioned to go easy on the Nazi parallels, but this is too clear an example. + +This is no different from a…" +06/23/2018,Economists,@Nouriel,RT @ProSyn: Italy is beset by political and economic crises that could plunge it – and Europe – into the abyss https://t.co/gmZK2fBola +06/23/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: Bitcoin's price is an arbitrary amount of real cash people decide to pay for a simple database entry that gives them n… +06/23/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: Have you heard? Everyone who's livelihood depends on suckers buying Bitcoin predicts that Bitcoin will rebound very so… +06/22/2018,Economists,@Nouriel,"In crypto-land the authorities are police, censors, prosecutors and judges. So much for the b/s such as decentraliz… https://t.co/vr5z2C4Rbk" +06/22/2018,Economists,@Nouriel,RT @ProSyn: Europe has been sleepwalking through a decades-long realignment of global power. - Joschka Fischer https://t.co/UND0rrALYV +06/22/2018,Economists,@Nouriel,RT @crypto: Bitcoin has biggest drop in more than a week after Japan censures 6 of its biggest exchanges https://t.co/bolixuAhmW https://t.… +06/22/2018,Economists,@Nouriel,RT @ProSyn: The Trump administration is demanding that Mexico set a wage floor of $16 per hour for its auto workers. That is the equivalent… +06/22/2018,Economists,@Nouriel,"RT @RosaRoubini: Oue #Boe Review is online. +We discuss: +-What the BOE has decided at its June 2018 MPC +-What Governor Carney and Chancell…" +06/22/2018,Economists,@Nouriel,"RT @RBReich: This has been the GOP's plan all along: +1) Demand massive tax cuts for the rich & corporations. +2) Claim the cuts will pay f…" +06/22/2018,Economists,@Nouriel,"RT @prestonjbyrne: The hilarious thing about Eos is how, despite zero legal structuring, all of the kids are pretending that they're runnin…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Hello, bagHODLers. +Maybe it's time to start questioning how exactly a super slow database that costs $5B per year to h…" +06/22/2018,Economists,@Nouriel,"RT @Brad_Setser: China, Trump, trade wars and China's options for asymmetric retaliation, including Treasury sales (and possible U.S. count…" +06/22/2018,Economists,@Nouriel,"RT @ofnumbers: if had $1 filthy statist dollar for every time I heard a bitcoiner say, ""the institutions are about to get in, in a very big…" +06/22/2018,Economists,@Nouriel,"RT @WSJCentralBanks: The New York Fed's culture needs to be continually assessed for weaknesses, says the bank’s newly retired president ht…" +06/22/2018,Economists,@Nouriel,RT @NewYorker: For most of Thursday’s game—a 3–0 loss to Croatia—the Argentine coach Jorge Sampaoli was the only team member on the field w… +06/22/2018,Economists,@Nouriel,RT @coindesk: Japan's Financial Watchdog Orders AML Shake-Up at 6 Crypto Exchanges https://t.co/jZVxvfdCAr https://t.co/s9JcLvMBvd +06/22/2018,Economists,@Nouriel,"RT @CH_Events: ""60-70 governments around the world have been captured by kleptocrats."" Is good governance in global decline? #CHLondon" +06/22/2018,Economists,@Nouriel,"RT @MarkitEconomics: Flash Eurozone Composite Output #PMI rises to 54.8 (vs. 54.1 prev), signalling a regaining of momentum. However, manuf…" +06/22/2018,Economists,@Nouriel,RT @robertosaviano: L'Italia è il Paese occidentale con più giornalisti sotto scorta perché ha le organizzazioni criminali più potenti del… +06/22/2018,Economists,@Nouriel,RT @ProSyn: Italy's new populist government insists that it will neither abandon the euro nor blow up the budget deficit in violation of EU… +06/22/2018,Economists,@Nouriel,"RT @elerianm: Via @CNBC , and illustrating the gradual ongoing shift in consensus away from the synchronized pick-up in global #growth , #I…" +06/22/2018,Economists,@Nouriel,"RT @ummjackson: Perfect example of how shameless people in the blockchain space are. CEO creates and shares a ""50+ Real World Use Cases"" in…" +06/22/2018,Economists,@Nouriel,RT @ProSyn: .@Kemal_Dervis predicts that the 2019 European Parliament election will advance far-reaching political restructuring https://t.… +06/22/2018,Economists,@Nouriel,RT @TheBlueMatt: Private blockchain company acquires private blockchain company with proceeds from illegal securities offering. This space… +06/22/2018,Economists,@Nouriel,"RT @crypto: U.S. House members are told to publicly reveal any cryptocurrency holdings worth more than $1,000 https://t.co/DlVL6CQZzO https…" +06/22/2018,Economists,@Nouriel,RT @vexmark: I hate these extremely rare occurrences of crypto exchanges getting hacked once a week +06/22/2018,Economists,@Nouriel,"RT @ReutersJamie: Trade war fears ramp up dramatically, notes Citi, as the proposed amount of US imports subject to tariffs approaches $800…" +06/22/2018,Economists,@Nouriel,RT @el33th4xor: We will soon see AI personalities emerge on social media. The Turing Test will cease to have any relevance and give way to… +06/22/2018,Economists,@Nouriel,"RT @ProSyn: After the G7 Quebec summit, there can no longer be any doubt that the West is in crisis, says @javiersolana https://t.co/IqnSd6…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: By describing his relationships with @JustinTrudeau and Kim Jong-un in similar terms, @realDonaldTrump did not just look clumsy…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: .@JeffDSachs traces the climate-change crisis to a profound debasement of politics, economics, and technology https://t.co/Bfpy…" +06/22/2018,Economists,@Nouriel,"RT @CliffordAsness: Sad. Let’s pass tariffs then make up conspiracies when the damage starts. Even if he’s being honest, his being shocked…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: For the first time, IMF statisticians have compiled a comprehensive set of calculations of both public and private debt, countr…" +06/22/2018,Economists,@Nouriel,"RT @Brad_Setser: The $175 billion in accumulated offshore (""reinvested"") earnings that US firms used to make dividend payments back to thei…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Among all the crypto scams out there, EO TRADE deserves a special mention. Their advertising is a perfect concentrate…" +06/22/2018,Economists,@Nouriel,RT @ianbremmer: Just flying back from a week in Japan. I can definitively report this is #FakeNews. https://t.co/07YTJQtGOa +06/22/2018,Economists,@Nouriel,"RT @riotta: Caro ministro @matteosalvinimi le scorte sono una cosa seria e non devono essere concesse o revocate, per una critica. Può diss…" +06/22/2018,Economists,@Nouriel,"RT @ProSyn: In the age of Donald Trump, it is worth remembering James Madison's warning in Federalist No. 10 that, ""Enlightened statesmen w…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: ""Old timers"" love that idiotic log chart of BTC seemingly headed to $1,000,000 by 2020. +The only thing this chart prov…" +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Tether got audited - sort of. The auditors admitted that they couldn't be completely sure, because blockchain is so co…" +06/22/2018,Economists,@Nouriel,RT @ummjackson: Bitcoin charlatans getting people excited about an arbitrary string of characters appearing in a block hash need to find a… +06/22/2018,Economists,@Nouriel,RT @Bitfinexed: The biggest threat to cryptocurrency is the communities absolute trust in corrupted centralized third parties that violate… +06/22/2018,Economists,@Nouriel,RT @RBReich: Behind Trump's cruelty is an industry poised to profit from the suffering. As the administration locked up immigrant children… +06/22/2018,Economists,@Nouriel,"RT @RichardHaass: No successful immigration policy can begin at the border. Yes, we need comprehensive reform, but we also need trade and a…" +06/22/2018,Economists,@Nouriel,"RT @elerianm: Good morning. +The Financial Times’ Gillian Tell on some puzzles and oddities in #markets that make them “appear calm” but ar…" +06/22/2018,Economists,@Nouriel,RT @ProSyn: Strategic and security interests are always more amenable than religious conviction to reason and diplomacy https://t.co/fRvndW… +06/22/2018,Economists,@Nouriel,"RT @CasPiancey: Pretty proud of Crypto Twitter for ignoring the hype of that Tether memo and focusing on three things: + +1. Who are their *t…" +06/22/2018,Economists,@Nouriel,"RT @ofnumbers: This ""space"" perpetually sucks. + +Instead of keeping things in check, coin reporters openly aide and abet the raccoons flee…" +06/22/2018,Economists,@Nouriel,"RT @EconguyRosie: If the Fed raises rates and shrinks the balance sheet as much as it says it will, the cumulative de facto tightening by t…" +06/22/2018,Economists,@Nouriel,RT @davidgerard: Hydro-Quebec triples prices for crypto miners https://t.co/bBCR3Rc9Ka +06/22/2018,Economists,@Nouriel,"RT @ProSyn: Nationalism versus globalism, not populism versus elitism, is this decade’s defining political conflict https://t.co/W7coFJUii2" +06/22/2018,Economists,@Nouriel,RT @prestonjbyrne: Oh right. I forgot oil was issued by Permian-Triassic 3 LLC during the initial dead plant offering that took place in 25… +06/22/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: Bitcoin's market cap: $110 Billion. +Global money supply (M1): $7.6 trillion. +Bitcoin, at today's price, stands at 1.4%…" +06/20/2018,Economists,@Nouriel,"RT @erikbryn: Berkshire, Amazon & JPM made a great decision when they chose @Atul_Gawande to head their new healthcare initiative. + +Becaus…" +06/20/2018,Economists,@Nouriel,"RT @econecho: Paper with balanced treatment of #blockchain and public service delivery applications with a Q&A, addressing @Nouriel-type co…" +06/20/2018,Economists,@Nouriel,RT @BrookingsInst: 🎧 16 million people were forced to flee their homes last year. That’s 1 person every 2 seconds. https://t.co/L1Vtv7Phzb… +06/20/2018,Economists,@Nouriel,"RT @Brad_Setser: Treasury legend Mark Sobel, who was instrumental in the creation of the working group, also has summarized the innovations…" +06/20/2018,Economists,@Nouriel,"RT @Brad_Setser: A bit of good news! France and Germany appear to have agreed to ""an improvement of the collective action clauses already b…" +06/20/2018,Economists,@Nouriel,"RT @CBSThisMorning: WATCH: @IanBremmer describes exchange between Chancellor Merkel and Pres. Trump at #G7 summit: ""He stood up, he put his…" +06/20/2018,Economists,@Nouriel,RT @EconomicPolicy: Reminder: 83% of the benefits of the GOP tax bill are going to the top 1%. #TaxScamiversary #6MonthsofTaxScam https://t… +06/20/2018,Economists,@Nouriel,I look forward to the debate on Cryptocurrencies today at The Battle of the Quants. 3.30pm at Carnegie Hall https://t.co/WzeUpAHVVM +06/20/2018,Economists,@Nouriel,I will debate Cryptocurrencies today at The Battle of the Quants. 3.30pm EST at Carnegie Hall in New York https://t.co/q7as8I5LUQ +06/20/2018,Economists,@Nouriel,RT @Nouriel: I look forward to the discussion on crypto that will be moderated by my friend @johnjdagostino at the Battle of the Quants on… +06/19/2018,Economists,@Nouriel,RT @Tr0llyTr0llFace: My deepest respect for all the crypto scammer community. I can only begin to imagine how hard it must be to try and sw… +06/19/2018,Economists,@Nouriel,"RT @Judy_Dempsey: My new blog now posted: @Merkel's Options, Europe's Future. +#Europe’s security, foreign, and defense policies will go no…" +06/19/2018,Economists,@Nouriel,"RT @BanKillerRobots: On June 21, @TobyWalsh will address a #KAIST seminar in the Republic of Korea to launch its new ethics committee on ar…" +06/19/2018,Economists,@Nouriel,"RT @LHSummers: Krugman’s analysis of a trade war, in my view, overstates the risk of a massive war that cuts off more than half of trade bu…" +06/19/2018,Economists,@Nouriel,RT @LHSummers: Why does @realDonaldTrump get credit for deescalating #NorthKorea conflict when it was his conduct that did so much to escal… +06/19/2018,Economists,@Nouriel,"RT @MaximColch: The market seems very relaxed about Brexit at the moment. It shouldn't be. +@Simon_Nixon +https://t.co/SPznwIMQxS" +06/19/2018,Economists,@Nouriel,RT @FinancialTimes: Investor concern is deepening as the US and China edge closer to a full-blown trade war. Here is the latest from global… +06/19/2018,Economists,@Nouriel,"RT @ProSyn: Tariffs – even those targeting Chinese firms that benefit from the government’s mercantilist practices – are counterproductive,…" +06/19/2018,Economists,@Nouriel,RT @greg_ip: Economic theory says effects of tariffs on trade balances are eventually fully offset by currencies. Most countries won't see… +06/19/2018,Economists,@Nouriel,RT @ojblanchard1: A five-level scale for financial crises. (As a discussion of Ben Bernanke's and Barry Eichengreen's papers at the Nobel… +06/19/2018,Economists,@Nouriel,"RT @davidgerard: News: Crypto hedge funds suffer, bankers on crypto’s problems, what good payment networks look like, another Civil news…" +06/19/2018,Economists,@Nouriel,"RT @Tr0llyTr0llFace: I'm sure that some day, someone will come up with a use for cryptocurrencies that's not yet another form of gambling,…" +06/19/2018,Economists,@Nouriel,"RT @EconomicPolicy: One in nine U.S. workers are paid wages that can leave them in poverty, even when working full time. #PoorPeoplesCampai…" +06/19/2018,Economists,@Nouriel,"RT @Brad_Setser: Agree. Reality is China still manages its currency, even if its intervention isn't as overt as it once was. + +Depreciation…" +06/19/2018,Economists,@Nouriel,"RT @BIS_org: Despite the hype, #cryptocurrencies like #bitcoin are not the answer to the increasing need for #DigitalPayments because of th…" +06/19/2018,Economists,@Nouriel,RT @BIS_org: … cryptocurrencies lack scalability to handle the economy’s transaction needs …. 2/4 https://t.co/Z9f5mBLrhK https://t.co/9JwS… +06/19/2018,Economists,@Nouriel,RT @BIS_org: … payments made with #cryptocurrencies are never fully final because of possible rewriting of history through episodes of #for… +06/19/2018,Economists,@Nouriel,RT @BIS_org: Watch Hyun Song Shin explain why – despite all the hype - #Cryptocurrencies are a far cry from money https://t.co/tWw84EviD3 h… +06/19/2018,Economists,@Nouriel,"RT @el33th4xor: I'm calling it: there will be a massive exchange hack within the next year, taking advantage of an EOS vulnerability. That…" +06/19/2018,Economists,@Nouriel,RT @Brad_Setser: A few quick thoughts on Trump's decision to threaten to respond to China's $50b in retaliatory tariffs with an additional… +06/17/2018,Economists,@Nouriel,"RT @ProSyn: If the price of an automobile had declined as rapidly as the price of computing power, one could buy a car today for the same p…" +06/17/2018,Economists,@Nouriel,RT @IgnatiusPost: A beautiful evocation of Anthony Bourdain by a gifted chef (who is also my daughter’s fiancé.) The Tragic Loss of an Insp… +06/17/2018,Economists,@Nouriel,RT @BrookingsEcon: .@LHSummers on why the Fed needs a new monetary policy framework: https://t.co/rGTUAb4jd2 https://t.co/GWy6PIaARV +06/17/2018,Economists,@Nouriel,"RT @ForeignAffairs: Even if the Trump administration’s approach to Europe is too confused to constitute a strategic vision, his policies ca…" +06/17/2018,Economists,@Nouriel,RT @toby_n: Prices paid for washing machines by US consumers spike following application of tariffs. Nice @crampell report. https://t.co/kU… +06/17/2018,Economists,@Nouriel,"RT @thehill: Giuliani: FBI, prosecutors investigating Trump belong in the psych ward https://t.co/hwc5He60RQ https://t.co/cgePxBndmV" +06/17/2018,Economists,@Nouriel,"RT @NewYorker: Ever since Putin’s reëlection to another six-year term in March, Trump has been pressing for a Putin summit, dismissing advi…" +06/17/2018,Economists,@Nouriel,"RT @RichardHurowitz: Worth reading: Robert Kagan on the rejection of the US’s grand bargain — his father Donald, my adviser at Yale, would…" +06/17/2018,Economists,@Nouriel,RT @bobdavis187: Interesting that you never hear people worried about Chinese industrial policy offer their own. U.S. could invest more in… +06/17/2018,Economists,@Nouriel,RT @ProSyn: Cities of the future: why nature-based solutions are the answer to some of the biggest challenges facing urban areas https://t.… +06/17/2018,Economists,@Nouriel,"Cryptocurrencies are lousy investments | VOX, CEPR Policy Portal https://t.co/mL5tBnKhW3" +06/16/2018,Economists,@Nouriel,"RT @JoeNBC: Hey Mitch, Whitewater lasted almost 10 times as long and you never complained once about that. If you’re going to keep humiliat…" +06/16/2018,Economists,@Nouriel,"RT @dailykos: Tighten your belt, America—Trump's tariff backlash takes hold and consumer goods are skyrocketing https://t.co/HMLop9z0Wa" +06/16/2018,Economists,@Nouriel,no way he will revisit as he is a ideological fanatic economic nationalist...he needs his base in November... https://t.co/8ZMyn8AhM8 +06/16/2018,Economists,@Nouriel,RT @SteveBrant: A clear & detailed case for why Trump is a threat to the world. He's destroying the post-WWII system. ⁦@ianbremmer⁩ ⁦@Nouri… +06/16/2018,Economists,@Nouriel,pathetic EOS: Entirely Open Scam https://t.co/dTqFG2HJlb +06/16/2018,Economists,@Nouriel,transaction volume has collapsed in all crypo-currencies since January....transaction meltdown towards nothingness.… https://t.co/nsXUoilMaB +06/16/2018,Economists,@Nouriel,Buggy Scam.....Entirely Open Scam....ie EOS https://t.co/QzRINpHqno +06/16/2018,Economists,@Nouriel,RT @roun_sa_ville: cryptocurrency? https://t.co/za4Aj4sDHn +06/16/2018,Economists,@Nouriel,"Another total ICO scam....EOS: ""Entirely Open Scam"" +$4 billion of suckers money into this crypto black hole with no… https://t.co/znWLrBfZEm" +06/16/2018,Economists,@Nouriel,"RT @ProSyn: Africa is home to 15% of the world’s population and 5% of its GDP, but accounts for a paltry 1.3% of total research spending ht…" +06/16/2018,Economists,@Nouriel,"RT @elerianm: .@FT @RobinWigg on vol sales in the #HedgeFund community: +""The volume of “short” positions in the #Vix #volatility index has…" +06/16/2018,Economists,@Nouriel,Tether is indeed The Mother Of All Criminal Scams whose only purpose is to manipulate upwards the price of Bitcoin… https://t.co/4sTsxqW3Gt +06/16/2018,Economists,@Nouriel,RT @el33th4xor: Excellent post on errors Satoshi made. https://t.co/ml3oTmGS1o +06/16/2018,Economists,@Nouriel,Top 10 as it is The Mother of All Scams: they issue billions of Tether out of thin air - total fiat issuance of a f… https://t.co/wHb2xiPtSq +06/16/2018,Economists,@Nouriel,RT @cabelabed: @Nouriel It’s football!!! And has been there much longer than this HAND-EGG thing...there’s no FOOT and no BALL! Just HANDS… +06/16/2018,Economists,@Nouriel,"RT @Giorgio13190: @Nouriel Americans need a version of the Calcio Storico, with armours and Helmets, and short times of play to display lon…" +06/16/2018,Economists,@Nouriel,Soccer will never be popular in the US as: a) Americans love complex statistics in sports while such statistics mea… https://t.co/1GV3rd9ETM +06/16/2018,Economists,@Nouriel,RT @voxdotcom: The untenability of the “no collusion” talking point: https://t.co/gDsIQJWJmy +06/16/2018,Economists,@Nouriel,"Americans are obsessed with scores, scoring and statistics in sports...that is why soccer will never be really popu… https://t.co/q0aD6KzT1E" +06/16/2018,Economists,@Nouriel,Thanks to Donald-Smooth-Hawley-Trump.... https://t.co/sEuW4B7qvT +06/16/2018,Economists,@Nouriel,Ether is a security! https://t.co/P9vfvKkzJK +06/16/2018,Economists,@Nouriel,"RT @BaldwinRE: _ +Ultimately, free trade equilibrium is supported by threat of retaliation. +• +For decades, the threat was enough. But now o…" +06/16/2018,Economists,@Nouriel,"RT @CasPiancey: This is otherworldly: + +Tether sends 100,000,000 from the treasury to the Hot Wallet. 14m Tether then just **disappear**. An…" +06/16/2018,Economists,@Nouriel,"RT @ProSyn: For the first time, IMF statisticians have compiled a comprehensive set of calculations of both public and private debt, countr…" +06/16/2018,Economists,@Nouriel,RT @mechmarkets: @prestonjbyrne The speech also implies that ETH investors are not relying on the team to do any more work on the platform.… +06/16/2018,Economists,@Nouriel,RT @ProSyn: Poland and Hungary are more than happy to take EU money while rejecting EU values. It is time to demonstrate that contempt for… +06/16/2018,Economists,@Nouriel,RT @business: A lack of ambition is ending Finland's experiment with a universal basic income https://t.co/IflwEodvn0 https://t.co/lnpcc3cb… +06/16/2018,Economists,@Nouriel,RT @Slate: What urban Americans don’t get about Appalachia and the price rural Americans have paid: https://t.co/xTezmjqHrc https://t.co/H0… +06/16/2018,Economists,@Nouriel,"RT @ProSyn: Russia's labor market is strong, but demographic trends are working against it, say @VladimirMau & @brigranvill https://t.co/lE…" +06/16/2018,Economists,@Nouriel,RT @ProSyn: .@HowardJDavies holds out little hope for macroprudential policy where it is needed the most. @IMFNews https://t.co/lhiDo53h5q +06/16/2018,Economists,@Nouriel,RT @ProSyn: The more we use antibiotics – on the farm or in the clinic – the less effective they become https://t.co/OzfzfqDFIu +06/16/2018,Economists,@Nouriel,RT @ForeignPolicy: A message to @realdonaldtrump from Canada's @cafreeland: “Facts matter. Truth matters. Competence and honesty among elec… +06/16/2018,Economists,@Nouriel,RT @nathanielpopper: i missed this great look at the unruly world of crypto marketers and influencers by my soon-to-be colleague @eringriff… +06/16/2018,Economists,@Nouriel,"RT @CasPiancey: Not a single tweet from Tether since January 5th. + +Boy, you'd think they'd want to address some of the issues they've been…" +06/16/2018,Economists,@Nouriel,RT @Austan_Goolsbee: Like one of those nightmare psychology experiments from the 1950s that led to human subjects rules. WTF is wrong with… +06/16/2018,Economists,@Nouriel,RT @davidgerard: my favourite bit in today's crypto news post is - the Blockchain(tm) is literally too crappy to be up to the standards of… +06/30/2018,Economists,@justinwolfers,"Useful thread by a real expert analyzing how the new “postcard” for tax returns is more complicated, leads you to f… https://t.co/KTWPual0Fn" +06/30/2018,Economists,@justinwolfers,"“Are these trolls? Actual threats? How can anyone tell the difference, anyway?” https://t.co/m1KM0xzqSs" +06/30/2018,Economists,@justinwolfers,"My whole life I've used the word ""overseas"" when I meant ""foreign countries."" I guess that's one effect of having grown up in Australia." +06/29/2018,Economists,@justinwolfers,By the power vested in me by Mitch McConnell it would be inappropriate for me to declare beer o'clock with fewer th… https://t.co/OnSKrCMiOm +06/29/2018,Economists,@justinwolfers,RT @GerryDuggan: The funniest silent film in over a century. Commit to the full 2:34. https://t.co/sOWFSTYmym +06/29/2018,Economists,@justinwolfers,"“the jobs women have moved into are ones they associate with more happiness and a greater sense of meaning, the opp… https://t.co/Jjxo8okv5q" +06/29/2018,Economists,@justinwolfers,"Who among us hasn't thought: I'm not going to make any music before 1972, unless my great-grandkids also get a cut… https://t.co/YHMHbhzdx5" +06/29/2018,Economists,@justinwolfers,This is BANANAS 🍌 🍌 🍌 https://t.co/uKTNNKSeqG +06/28/2018,Economists,@justinwolfers,An excellent diagnosis by @asymmetricinfo of the mistakes that free-traders make. https://t.co/b7OWICSvty +06/28/2018,Economists,@justinwolfers,A caricature of a shadow of a response. https://t.co/UMETNPfHyJ +06/28/2018,Economists,@justinwolfers,"“The important point shouldn’t be “don’t formalize”; it should be that formalism is there to open your mind, not cl… https://t.co/UQs8Nfff2a" +06/28/2018,Economists,@justinwolfers,Only sociopaths and budget constraints would object to this agenda. https://t.co/F0N9KrHDAz +06/28/2018,Economists,@justinwolfers,"@Neil_Irwin @asymmetricinfo It's a great point, but I don't know whether it's a point of identity (which economists… https://t.co/IDOZ8ghjuB" +06/28/2018,Economists,@justinwolfers,"Chugga chugga chug, as the little engine that could keeps on pushing on. Growth isn't spectacular, but it is persis… https://t.co/duUOHcbuAG" +06/28/2018,Economists,@justinwolfers,"Science, norms, politics and why thousands of Russians starved. An important essay for the scientific, journalistic… https://t.co/XWCeTR0FEW" +06/28/2018,Economists,@justinwolfers,"RT @janzilinsky: When GDP growth was 4.6% in mid-2014, @JustinWolfers used the report as a case study of what not to do: +https://t.co/l4B9…" +06/27/2018,Economists,@justinwolfers,RT @adamliptak: Justice Kennedy retires https://t.co/GRXyBBA6P9 +06/27/2018,Economists,@justinwolfers,#cloudme @tweetcloudbot +06/25/2018,Economists,@justinwolfers,This is a gorgeously succinct summary of the problem with the gold standard. https://t.co/FfcsjxbhSs +06/25/2018,Economists,@justinwolfers,"RT @Canada2020: Have you ever wondered what the true correlation between money and happiness is? + +Check out this week's episode of Wonk Wi…" +06/24/2018,Economists,@justinwolfers,"RT @_Jack_Graham_: If Sarah Huckabee Sanders came to *my* restaurant, I'd show her to a table, take her order, wait an hour, and then bring…" +06/24/2018,Economists,@justinwolfers,"RT @BrendanNyhan: The president of the United States: +-wants to suspend due process rights +-calls the press an enemy of the people +-calls f…" +06/23/2018,Economists,@justinwolfers,"RT @scottlincicome: Now retaliating against US exports bc of Trump's steel/aluminum tariffs: +- China +- Turkey +- India +- Mexico +- EU +Notifie…" +06/22/2018,Economists,@justinwolfers,"By the power vested in me by Melania's fashion choices — about which, I really don't care. Do u? — I declare it bee… https://t.co/TK3HMchThv" +06/22/2018,Economists,@justinwolfers,"@EconoTodd Hey man, sorry to hear that. Happens to all of us, but it never gets easier." +06/22/2018,Economists,@justinwolfers,"RT @JGodiasMurphy: Nonsense. Thanks to NAFTA, these are all zero. https://t.co/kuhmBqcMqg" +06/21/2018,Economists,@justinwolfers,NFL players took a knee to protest police brutality and the President took a stage to celebrate a brutal enemy’s vi… https://t.co/UlsU10p9O6 +06/20/2018,Economists,@justinwolfers,"So, umm... the *point* of tariffs is to raise prices. + +Here's how they work: +Price S+tariff + | \… https://t.co/xgfb2Smq2q" +06/20/2018,Economists,@justinwolfers,"I still can't bring myself to say ""tender age shelters"" out loud." +06/20/2018,Economists,@justinwolfers,"RT @aaronecarroll: Thread. + +I'm going to try and use my quiet voice here. Let's not kid ourselves - there are data on what detaining kids l…" +06/19/2018,Economists,@justinwolfers,"RT @SciBry: I was detained by the FBI on a flight from Vancouver to Chicago, because the passenger sitting next to me saw me doing calculat…" +06/18/2018,Economists,@justinwolfers,"RT @BetseyStevenson: No matter your political beliefs or your party affiliation, if you study families and children you know that the Unite…" +06/18/2018,Economists,@justinwolfers,"RT @EconUS: Ranked-choice voting is not new. Australia has used it for a century, Malta and Ireland for slightly less https://t.co/EWw87MOC…" +06/18/2018,Economists,@justinwolfers,This is how a political scientist throws shade. https://t.co/BlYJJqMyux +06/18/2018,Economists,@justinwolfers,This is how an economist throws shade.🔥🔥🔥 https://t.co/2oxgLrnM05 +06/18/2018,Economists,@justinwolfers,Tell that to the children. https://t.co/ABj9QnK0cj +06/17/2018,Economists,@justinwolfers,RT @ATabarrok: Hard to get lower than the immoral and unconstitutional internment of Japanese Americans but at least FDR interned families… +06/17/2018,Economists,@justinwolfers,"RT @BetseyStevenson: My heart races, my stomach heaves, and I can't breath when I read this. But looking away isn't a choice either. Every…" +06/16/2018,Economists,@justinwolfers,RT @thegarance: This is so inhumane. If you can't trust your staff enough to comfort a crying girl without abusing her you have some seriou… +06/16/2018,Economists,@justinwolfers,Well ain’t that interesting... https://t.co/kiO6LhQbWz +06/15/2018,Economists,@justinwolfers,"By the power vested in me by FIFA — whose corruption runs so deep that unlike major league baseball, the national f… https://t.co/VmL39PLEsO" +06/15/2018,Economists,@justinwolfers,RT @BetseyStevenson: We won't be able to pretend later that we didn't know it was happening. We did. https://t.co/1Y873VTDOb +06/15/2018,Economists,@justinwolfers,This is interesting. https://t.co/pOWJvNxGMV +06/15/2018,Economists,@justinwolfers,"People making fun of brasbperries are overlooking the demand-side benefits of complementarity and diversification,… https://t.co/8t3jz1844g" +06/14/2018,Economists,@justinwolfers,"RT @JimPethokoukis: 1/ A rare tweetstorm from me on some Wall Street banks now predicting 4% (!) GDP growth for the second quarter, and the…" +06/12/2018,Economists,@justinwolfers,@steveliesman @LoganMohtashami Alternatively let’s relabel it a goods surplus and declare victory. +06/12/2018,Economists,@justinwolfers,@steveliesman You are 100% correct Steve. +06/12/2018,Economists,@justinwolfers,A useful explanation of the U.S. trade *surplus* with Canada. https://t.co/7Rss0nEWnR +06/12/2018,Economists,@justinwolfers,RT @causalinf: Survivor bias (literally) https://t.co/FYVMgZvIcA +06/12/2018,Economists,@justinwolfers,"RT @JayCShambaugh: not good from today's BLS release: + +""Real average hourly earnings were unchanged, [seas adj], from May 2017 to May 2018.…" +06/12/2018,Economists,@justinwolfers,"RT @ChloeAngyal: Give me your tired, your poor, but keep your women fleeing domestic abuse in fear of their lives, fuck 'em, they probably…" +06/12/2018,Economists,@justinwolfers,"History repeats itself first as reality tv, then as farce... https://t.co/DBMKF9lUQG" +06/11/2018,Economists,@justinwolfers,Dennis Rodman arrives in Singapore for the North Korea - U.S. denuclearization talks wearing a t-shirt advertising… https://t.co/qjTVqzCipP +06/11/2018,Economists,@justinwolfers,RT @1RossGittins: Holiday reading: where economists come from https://t.co/GLjTFo3WFV #ausecon #ausbiz @theage @smh @canberratimes +06/10/2018,Economists,@justinwolfers,"Meet the man paid over $60,000 per year to scotch tape together the Presidential papers that Trump ripped into smal… https://t.co/A8VeaGtXK1" +06/10/2018,Economists,@justinwolfers,"@jggarin @GregoryGivens @dandolfa @MWillJr Lemme try to be a bit clearer, and a lot less snarky (and also try to d… https://t.co/Lpke0pd63M" +06/10/2018,Economists,@justinwolfers,@jeremybowers @fishnette @eads Technically it's illegal in Australia to turn in a blank ballot. (There's a High Cou… https://t.co/IBsNfUeoNF +06/10/2018,Economists,@justinwolfers,"RT @MaxBoot: I can't stop thinking about this interview. Unless I'm missing something, these are the most hostile comments any US official…" +06/10/2018,Economists,@justinwolfers,Yet somehow Australians figure it out every Election Day. https://t.co/IoQMnMkFJF +06/10/2018,Economists,@justinwolfers,"@paulkrugman gets it exactly right about America's humiliation at the G-7. +Perhaps we would be better with fewer G-… https://t.co/UYs10md6Y2" +06/09/2018,Economists,@justinwolfers,This is an important point. The Constitution gives Congress authority over trade agreements. But past Congresses ha… https://t.co/9TB1Ff2I36 +06/09/2018,Economists,@justinwolfers,"This is how trade wars start. + +Starting a trade war when most tariffs are already at or close to zero is an even wo… https://t.co/H49aYGyZik" +06/09/2018,Economists,@justinwolfers,You’ll never guess what they chose to do next... https://t.co/gxMrfT5WjO +06/09/2018,Economists,@justinwolfers,RT @goldengateblond: This is like a Renaissance painting. https://t.co/uafGu2ctrx +06/09/2018,Economists,@justinwolfers,"Average tariff rates charged by G-7 nations: +USA: 1.6% +EU: 1.6% +UK: 1.6% +Italy: 1.6% +Germany: 1.6% +France: 1.6% +Jap… https://t.co/SJdH6Dtzll" +06/09/2018,Economists,@justinwolfers,"@causalinf @j2dubyas If I wasn’t clear, it’s my fault, so should apologize. I only meant to criticize MIT which lik… https://t.co/b88zv7S0nI" +06/08/2018,Economists,@justinwolfers,"By the power vested in me by Emmanuel Macron, I declare it beer o'clock for six of the world's leading seven econom… https://t.co/IsVBjChJhs" +06/08/2018,Economists,@justinwolfers,"@ProfJAParker One of my students chimes in with some relevant facts: +https://t.co/PyVPNK3aK6 + +But my point isn't to… https://t.co/qbGSf2QbjO" +06/08/2018,Economists,@justinwolfers,RT @MichaelRStrain: U.S. tariffs look an awful lot like tariffs in the rest of the G7... https://t.co/pNUIRYmvK3 +06/08/2018,Economists,@justinwolfers,"@arthur_spirling Agree entirely, and didn’t mean any disrespect to this fine crop of economists on their achievemen… https://t.co/xKZR1RAIOh" +06/08/2018,Economists,@justinwolfers,Exhibit A of the cluelessness about gender and the value of diversity that undermines economics. https://t.co/CrU50lSaJT +06/08/2018,Economists,@justinwolfers,"Evil committed in our names, in our lifetime. +https://t.co/2UyfM4mmvy" +06/08/2018,Economists,@justinwolfers,"The Justice Department has decided it doesn’t like laws that Congress passed, and so once again, the ACA is under t… https://t.co/dDCsQOyvDy" +06/07/2018,Economists,@justinwolfers,"Draw your own conclusions. +https://t.co/vqJ2aUxim4 https://t.co/YPJShbDfe5" +06/07/2018,Economists,@justinwolfers,RT @EileenAppelbaum: Subcontracting - not independent contractors or temp workers - is where big change in US economy occurred. But BLS con… +06/07/2018,Economists,@justinwolfers,"This might be the most important paragraph of the Contingent Worker Supplement. + +(My guess: This is best interprete… https://t.co/q1DzrUCwvu" +06/07/2018,Economists,@justinwolfers,What if the whole meaning of alternative work arrangements changed and the BLS lacked the funding to track these de… https://t.co/Cg8KlNHpol +06/07/2018,Economists,@justinwolfers,Budget-busting tax cuts for other people don't poll well. https://t.co/aujoqrvzrR +06/06/2018,Economists,@justinwolfers,"This is a genuinely excellent list, and a tribute to a new oral tradition in economics. https://t.co/6CQitGqAki" +06/05/2018,Economists,@justinwolfers,"RT @NBCNews: Sen. Leahy: Will your school safety commission look at the role of firearms? + +Sec. DeVos: ""That is not part of the commission'…" +06/05/2018,Economists,@justinwolfers,"RT @kevinmilligan: @JustinWolfers In my experience talking to (plugged in and intelligent) friends and acquaintances in the US, people ther…" +06/05/2018,Economists,@justinwolfers,An interesting day with dozens of conversations on the other side of the U.S.-Canadian border revealed to me just h… https://t.co/S6uvZidW4V +06/05/2018,Economists,@justinwolfers,"The extraordinary economics of vanilla: Even though it’s now worth more per pound than silver, Madagascans still go… https://t.co/mTC1qo479B" +06/05/2018,Economists,@justinwolfers,"A tax cut that takes from labor (and future generations) and gives it to capital will cause stocks to rise, but tha… https://t.co/fzjezzWz8L" +06/05/2018,Economists,@justinwolfers,so now mueller wants us to believe manafort figured out how to use whatsapp are you kidding me +06/05/2018,Economists,@justinwolfers,"If you know any economics, you’ll recognize this as a far more damning critique. https://t.co/QsMhEg5zTN" +06/04/2018,Economists,@justinwolfers,What if the romantic comedy died and no-one noticed? https://t.co/7yeziDnAxB https://t.co/a8oYmGVtED +06/04/2018,Economists,@justinwolfers,@PrestonMui Fair point. But my guess is forcing disclosure beats allowing them to continue the policy without disclosure. +06/04/2018,Economists,@justinwolfers,This seems like a pretty good compromise to me. Hard to argue against disclosure. https://t.co/YkFFoFNEfy +06/04/2018,Economists,@justinwolfers,"@ben_golub Improving economic literacy, one tweet at a time..." +06/04/2018,Economists,@justinwolfers,An Econ 101 reminder that it doesn't really matter that Trump's tariffs are levied on America's consumers rather th… https://t.co/WVhh5fI5JL +06/04/2018,Economists,@justinwolfers,RT @Neil_Irwin: It sounds like the G7 finance ministers meetings were…tense. The U.S. is isolated to a degree without modern precedent. Fas… +06/02/2018,Economists,@justinwolfers,"RT @FreeTradeBryan: I should probably make this my pinned tweet: ""We should beware of the demagogues who are willing to declare a trade war…" +06/02/2018,Economists,@justinwolfers,"A letter to my son, and it might be a letter to yours, too. A lovely riff from the incomparable @bairdjulia in whic… https://t.co/WzTqiDyBbe" +06/01/2018,Economists,@justinwolfers,"RT @Neil_Irwin: A great brief history of economic thought on mercantilism and trade from @crampell + +Because I guess we're at a place where…" +06/01/2018,Economists,@justinwolfers,"By the power vested in me by the Bureau of Labor Statistics, whose latest report (which I've been looking forward t… https://t.co/rFrvdbXdgZ" +06/01/2018,Economists,@justinwolfers,"If I achieved nothing else today, my pseudo-potty mouth pushed HuffPo to put the word ""effing"" in a headline: https://t.co/TDOA3YCgUn" +06/01/2018,Economists,@justinwolfers,Looking forward to seeing a beer-related announcement at 5:30pm this afternoon. +06/01/2018,Economists,@justinwolfers,@goldengateblond @atrupar hold me. +06/01/2018,Economists,@justinwolfers,"@NickTimiraos @ModeledBehavior Nick, this wasn't one dumb thing written in an occasional column. The argument that… https://t.co/qKbs062J59" +06/01/2018,Economists,@justinwolfers,It's the trade policy equivalent of two and a half back-somersaults with a double twist off the high board—an almos… https://t.co/O4vwKHoM30 +06/01/2018,Economists,@justinwolfers,"This is the bloke who—in late 2008 as a global financial crisis kicked millions out of work—said that: ""the decreas… https://t.co/QCGo9qnB9d" +06/01/2018,Economists,@justinwolfers,Worth noting: Kudlow confirmed that he told the President the jobs numbers last night. Trump knew exactly what kind… https://t.co/zW9b8Cibvm +06/01/2018,Economists,@justinwolfers,"<very thinking face emoji> +https://t.co/0ysvbi53B6" +06/01/2018,Economists,@justinwolfers,The bigger picture on jobs. https://t.co/KYwt2T696S +06/01/2018,Economists,@justinwolfers,"Goolsbee: ""he broke the law"" https://t.co/yO5fOgPiU6 +Summers: ""a major scandal"" should lead to ""major investigation… https://t.co/Utxflxrpf4" +06/01/2018,Economists,@justinwolfers,"And Betsey's point is spot on: If someone made money trading on a tip from the President, who do you think they're… https://t.co/WU5ikALvct" +06/01/2018,Economists,@justinwolfers,"Honestly, I get that on the scale of norms violations, it's small. And if he's an honest bloke, he didn't tip off a… https://t.co/0IoeN4dDll" +06/01/2018,Economists,@justinwolfers,If *any* other federal employee had tweeted in a way that gave the *appearance* of hinting at confidential informat… https://t.co/jDY6dcrtPs +06/01/2018,Economists,@justinwolfers,"And you can't put the genie back in the bottle: Next jobs day, if at 7:21am Trump tweets about Roseanne or some oth… https://t.co/xxjkJDPQQs" +06/01/2018,Economists,@justinwolfers,"Here's the problem: Who wants to buy U.S. stocks, if you think there's a chance that you might be buying from someo… https://t.co/d8CBWzqxDt" +06/01/2018,Economists,@justinwolfers,Dozens of federal employees who go to enormous lengths to make sure that no-one (beyond the White House) can get a… https://t.co/WDirIeAG16 +06/01/2018,Economists,@justinwolfers,"Lemme bore you by telling you why this tweet was an effing outrage. + +The jobs numbers are released at 8:30am. The P… https://t.co/aYIhgyqeA8" +06/01/2018,Economists,@justinwolfers,"I try to stay away from conspiracy-mongering, but do you really think that a President who can't help himself but t… https://t.co/ZB1dBHgCMU" +06/01/2018,Economists,@justinwolfers,"RT @kairyssdal: Again, and now with the numbers out, this is simply unprecedented and unbelievable. + +I’ll also note the president called th…" +06/01/2018,Economists,@justinwolfers,"Household survey shows +293k jobs, which is roughly consistent with the headline from the payrolls number. + +It says… https://t.co/Hcc1ijQZ8V" +06/01/2018,Economists,@justinwolfers,"Average job growth over the past 3 months of +179k is useful measure of the underlying pace. + +A parrot who spent th… https://t.co/YvTxcxPK2s" +06/01/2018,Economists,@justinwolfers,"Payrolls +223k. + +April revised down a tad, March revised upa bit, and so revisions add another +15k. + +Unemployment… https://t.co/T2n4XFpR0g" +06/01/2018,Economists,@justinwolfers,We've just learned that either the President doesn't read the briefing numbers from CEA who already sent him a memo… https://t.co/jMbNRr1LCT +06/01/2018,Economists,@justinwolfers,"RT @Neil_Irwin: May jobs numbers out in five minutes! Consensus forecast: +190k on payrolls, unemployment rate unchanged at 3.9%, average h…" +06/01/2018,Economists,@justinwolfers,"The case for free trade, wrote Adam Smith, ""is so very manifest that it seems ridiculous to take any pains to prove… https://t.co/ggk6SiEdyg" +06/01/2018,Economists,@justinwolfers,"Stand and applaud, because it’s almost impossible to pass a steel tariff that even the United Steelworkers oppose. https://t.co/67l5H5rMOz" +05/31/2018,Economists,@justinwolfers,anyone know kim kardashian's views on tariffs? +05/31/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Imagine if families got paid time off for a new child, mothers didn't face a permanent wage penalty, and families had…" +05/31/2018,Economists,@justinwolfers,"RT @jenniferdoleac: A friendly reminder that there is no evidence that this type of intervention is effective, and good reason to think it…" +05/30/2018,Economists,@justinwolfers,Look a little harder at how repayment plans work and you'll see that the USC-trained dentist with a million dollars… https://t.co/wA912tN7Ld +05/30/2018,Economists,@justinwolfers,"RT @ParkerMolloy: Promise made, promise kept https://t.co/TZ2KuEOM9l" +05/29/2018,Economists,@justinwolfers,"very fine people on both sides +https://t.co/Llc8D647Xv" +05/29/2018,Economists,@justinwolfers,@colmharmon @Sydney_Uni @sciencespo @OECD @USydneyEcon @DHoganDoranSC Dom was an old friend of mind from undergradu… https://t.co/H8EYCJnS9u +05/29/2018,Economists,@justinwolfers,RT @DanielGriswold: Just finished @scmallaby's bio of Alan Greenspan. Loved this exchange on p. 132 between Milton Friedman and Gen. Westmo… +05/29/2018,Economists,@justinwolfers,"RT @hamandcheese: ""In our new study, we left a treatment group of journalists unattended in a room with a provocative yet N=28 social psyc…" +05/29/2018,Economists,@justinwolfers,RT @hamandcheese: The real marshmallow test was to see who could resist pontificating on meaning of the original marshmallow test until a g… +05/27/2018,Economists,@justinwolfers,"My favorite genre of leak stories are leaks about meetings of leakers to figure out which leaker leaked, in which i… https://t.co/u9dtWDCHVk" +05/27/2018,Economists,@justinwolfers,"Ron, let's talk about inflation. +- In *nominal* terms #SoloAStarWarsStory is your most successful film as a Directo… https://t.co/UJZok4iDo8" +05/27/2018,Economists,@justinwolfers,"RT @TimHarford: Hyping research work in the NYT... Paging Indigo Montoya; ""I do not think that means what you think it means."" +https://t.co…" +05/27/2018,Economists,@justinwolfers,"RT @DinaPomeranz: Study, JPE 2008: Children who were separated from their parents in the US & placed in foster care were 2-3 times more lik…" +05/27/2018,Economists,@justinwolfers,RT @sahilkapur: “Horrible law” = not a law. It’s Trump administration policy that didn’t happen under Obama or Bush. POTUS has the power to… +05/27/2018,Economists,@justinwolfers,"RT @hardsci: For people saying this is evidence that psychology research isn’t valid, your evidence for that conclusion is psychology resea…" +05/26/2018,Economists,@justinwolfers,"When @m_clem comes for faulty research, he brings receipts. https://t.co/gsXx3CHD7b" +05/25/2018,Economists,@justinwolfers,"When the exit polls say that Ireland's pro-choice referendum won 68-32, you can probably trust it's outside the mar… https://t.co/mQAjduj6IB" +05/25/2018,Economists,@justinwolfers,"By the power vested in me by the NFL, I demand you stand for beer o'clock, because nothing speaks to American value… https://t.co/QCGXBQ6nFI" +05/25/2018,Economists,@justinwolfers,@dsquareddigest I would be very interested if you can find real-world examples of pathological or bimodal expectati… https://t.co/0J9Iroxlac +05/25/2018,Economists,@justinwolfers,RT @WesternBruce: Have You Ever Seen Someone Get Killed? A single data point that complicates how we think about who is in prison. @emilymb… +05/25/2018,Economists,@justinwolfers,"“When a foreign company sells Americans something they choose to buy, it is not an act of aggression.”… https://t.co/xCJfUeGKbZ" +05/25/2018,Economists,@justinwolfers,Your chart axis doesn't have to start at zero. https://t.co/LkNtF03dqT +05/25/2018,Economists,@justinwolfers,"RT @abarber1: This won. Justin asked me to give $50 to charity, so I’m going to give it to @GiveWell. https://t.co/HcOkW1D8JJ" +05/25/2018,Economists,@justinwolfers,"Bob Dylan turned 77 today. + +(I was so much older then / I'm younger than that now.)" +05/24/2018,Economists,@justinwolfers,"If the NFL were serious truly patriotic, it would play the national anthem twice before each game." +05/24/2018,Economists,@justinwolfers,I don’t think I’ve ever been more nervous before giving a presentation: Wish me luck as I’m about to give a present… https://t.co/CGm3KHmJyJ +05/24/2018,Economists,@justinwolfers,"RT @damianpaletta: White House trade diary: +5/13 - Trump: We'll rescue ZTE +5/14 - Ross: ZTE unrelated to trade +5/16 - Trump: ZTE part of tr…" +05/24/2018,Economists,@justinwolfers,@mattstockhausen @jodiecongirl All exports -- even of raw materials and unfinished products -- are treated as final… https://t.co/ur6g0XQcUz +05/24/2018,Economists,@justinwolfers,"The case for place-based employment subsidies, from @LHSummers, Glaeser and Austin. +https://t.co/gadL8bmz8x https://t.co/f2p2u15Fl1" +05/24/2018,Economists,@justinwolfers,Who the heck is he planning on bombing? https://t.co/pqXiheHK8J +05/24/2018,Economists,@justinwolfers,Tweeps: I'm crowdsourcing this one for my teaching needs: What are your favorite examples of money illusion (aka no… https://t.co/cRrF2vu64U +05/24/2018,Economists,@justinwolfers,Bitcoin's price definitely is some distance from its fundamental value. https://t.co/52bgZ8FHMY +05/24/2018,Economists,@justinwolfers,Fill in the blanks on this ridiculous sentence and you’ll get a sense of the intense lobbying that’s about to drive… https://t.co/ugN7SarRj8 +05/23/2018,Economists,@justinwolfers,RT @chrislhayes: What could possibly go wrong https://t.co/1Tx1hiGL1Z +05/23/2018,Economists,@justinwolfers,RT @nealemahoney: Players should agree to offset each other. https://t.co/PFJVXfiXB7 +05/23/2018,Economists,@justinwolfers,"RT @ddiamond: Trump just stepped all over GOP midterm messaging. + +“Your vote in 2018 is every bit as important as your vote in 2016 — altho…" +05/23/2018,Economists,@justinwolfers,"RT @BauNatalie: Today, I taught a PhD student to hide her unused water bottles so that the hotel would give her more water bottles. The ad…" +05/23/2018,Economists,@justinwolfers,@jason_ockerby The first ten spots were hard fought. But a team requires eleven. +05/23/2018,Economists,@justinwolfers,"RT @scottlincicome: It's honestly bizarre. In what other context wld a ""conservative"" accept (no less welcome!) POTUS' decision - against C…" +05/23/2018,Economists,@justinwolfers,"I played in my high school First XI cricket team as a specialist batsman coming in at number 11. + +Never got out, a… https://t.co/l1b07wisLD" +05/22/2018,Economists,@justinwolfers,"RT @debipriya: How many times does an @nberpubs paper make your jaw hit the floor, ok, fine, the table, but you get the point? This is one…" +05/22/2018,Economists,@justinwolfers,A textbook example of the blame-shifting corporate passive voice by American Airlines explaining that a monkey it w… https://t.co/1JqDlNZXrP +05/21/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Nice thread explaining my research with @JustinWolfers +The short summary: Women being able to say no-in the case of o…" +05/20/2018,Economists,@justinwolfers,That the White House politburo has a specific target for a bilateral trade deficit sounds a lot like central planni… https://t.co/9Z0VaCxvFK +05/19/2018,Economists,@justinwolfers,Next time someone tells you businesses needs to less regulation so that they're free to pursue profit opportunities… https://t.co/PXMoCetjby +05/18/2018,Economists,@justinwolfers,"RT @patelnomics: If you had to name your Econ themed beer, what would it be? https://t.co/l6R4K6qGQD" +05/18/2018,Economists,@justinwolfers,By the power vested in me by Aaron Schlossberg—who probably won't be at happy hour because he's suddenly become con… https://t.co/ahfDChg5uB +05/18/2018,Economists,@justinwolfers,"2018 has been deadlier for schoolchildren than service members. +https://t.co/fdYbYsSgru https://t.co/JWmDImvpEa" +05/18/2018,Economists,@justinwolfers,An appalling number. https://t.co/OEgITpq9LZ https://t.co/g8nGThsCQV +05/18/2018,Economists,@justinwolfers,The federal government pinpointing individual companies to harm. as political payback is not how capitalism is mean… https://t.co/sI5AAvkPmJ +05/18/2018,Economists,@justinwolfers,"There's a broader and more important point here: We economists spend a lot of time talking among ourselves, which l… https://t.co/u5ZsARRhCF" +05/18/2018,Economists,@justinwolfers,And unwarranted smugness about the insight into economic policy is also bipartisan. https://t.co/1jDO2z7Lh9 +05/18/2018,Economists,@justinwolfers,As for confusing correlation and causation: It's not just those rubes on the other side who do it. Innumeracy is bi… https://t.co/zCZJB0M1Kt +05/18/2018,Economists,@justinwolfers,I suspect partisan differences might be entirely attributable to @paulkrugman. https://t.co/WMB2J6TVcg +05/18/2018,Economists,@justinwolfers,Even if they can't name a single living economist. https://t.co/icOJ8aZHyS +05/18/2018,Economists,@justinwolfers,"The irony is, these folks say they're well-informed about economic policy. https://t.co/ltyuMoiOVE" +05/18/2018,Economists,@justinwolfers,It's not that these folks can't get any questions right. They are answering *other* questions correctly. https://t.co/n6WZyu5QAt +05/18/2018,Economists,@justinwolfers,And our friends in political science have some explaining to do. https://t.co/CDFOctObw8 +05/18/2018,Economists,@justinwolfers,I'm willing to draw conclusions from the data on misunderstanding correlation and causation. (HT @RealBryanWatson) https://t.co/WnaeIptZm0 +05/18/2018,Economists,@justinwolfers,The latest Cards Against Humanity Poll makes a pretty compelling case we need to improve economic education.… https://t.co/blWAdD2oEb +05/18/2018,Economists,@justinwolfers,RT @BrendanNyhan: It's official - I'm thrilled to be joining @fordschool @UMich in the fall! https://t.co/JIm2XBfofX +05/17/2018,Economists,@justinwolfers,And is the DMV the same as the DMZ? https://t.co/Yegdd23Jb4 +05/17/2018,Economists,@justinwolfers,RT @BetseyStevenson: The op-ed in NYT saying lower income kids might not benefit from college made my blood boil. Read this thread and it'l… +05/17/2018,Economists,@justinwolfers,John McCain would have disavowed Aaron Schlossberg by now. +05/17/2018,Economists,@justinwolfers,RT @ATabarrok: Excellent thread. Unfortunate that it has to be said. https://t.co/aqTQ3eUyb4 +05/16/2018,Economists,@justinwolfers,"@causalinf It sounds like you got the big picture right. + +Next time you teach it, ping me for my slides! + +I actuall… https://t.co/OdCYEM4YIH" +05/16/2018,Economists,@justinwolfers,Not understanding trade is a serious defect in a trade adviser. https://t.co/tU5BTsXC3K +05/16/2018,Economists,@justinwolfers,"RT @JustinWolfers: “He even considers, briefly, a position teaching economics.” ...an unexpected gem from Michael Lewis’ extraordinary piec…" +05/16/2018,Economists,@justinwolfers,"“He even considers, briefly, a position teaching economics.” ...an unexpected gem from Michael Lewis’ extraordinary… https://t.co/jICK6VuctZ" +05/16/2018,Economists,@justinwolfers,@titonka @planetmoney That’s fantastic! You’ll be great. +05/15/2018,Economists,@justinwolfers,"RT @AbrahamHanover: In an age of performative cruelty, kindness is punk as fuck. + +Be punk as fuck." +05/15/2018,Economists,@justinwolfers,"RT @BetseyStevenson: This is a terrible idea. +(1) If we want to tax corporations, do it! +(2) Don't create a group of rich people who have…" +05/15/2018,Economists,@justinwolfers,"guys, I have a theory and it's about what old dogs can hear and you can be my data." +05/15/2018,Economists,@justinwolfers,I can only hear Laurel. Do people really hear Yanny? https://t.co/OcmTV6zfUZ +05/15/2018,Economists,@justinwolfers,"Taylor Swift has figured out how to squeeze out the scalpers, but she's also squeezed out many real fans. An intere… https://t.co/DeVoIdKUvj" +05/15/2018,Economists,@justinwolfers,RT @TheEconomist: Economics cannot afford to exclude good minds and good ideas just because they aren't white and male https://t.co/dOQFDp9… +05/14/2018,Economists,@justinwolfers,"RT @BetseyStevenson: Yes, please someone explain to me how letting predatory colleges fleece students and taxpayers is a conservative posit…" +07/01/2018,Economists,@BetseyStevenson,Seems like a sensible revision. https://t.co/3n0RiDHz3X +06/30/2018,Economists,@BetseyStevenson,@TooheyMatthew We do it all the time! And formalizations can be really helpful for building ideas. So the public kn… https://t.co/7HytcQ9iEM +06/30/2018,Economists,@BetseyStevenson,@TooheyMatthew Oh now I feel a bit bad. I really like Dan. I just thought it was funny to see a serious discussion… https://t.co/dJNSGJ0paQ +06/30/2018,Economists,@BetseyStevenson,"I'm getting the sense that @realDonaldTrump just doesn't like children. But still, the worst criminal elements? https://t.co/RzwiEkHWMS" +06/30/2018,Economists,@BetseyStevenson,A formalization of rich people problems. https://t.co/ffhbxM84J2 +06/30/2018,Economists,@BetseyStevenson,"RT @JustinWolfers: Useful thread by a real expert analyzing how the new “postcard” for tax returns is more complicated, leads you to fill i…" +06/30/2018,Economists,@BetseyStevenson,"@BS0064 Yes, but he's no longer waiting for that to ACTUALLY happen, instead he's pretending/lying that it is happe… https://t.co/vSW46PmJMk" +06/30/2018,Economists,@BetseyStevenson,@mrsalzwedel Are you saying that economists aren’t normal people? +06/30/2018,Economists,@BetseyStevenson,The biggest news here is that Kudlow is now lying about the federal deficit rather than continuing to believe and e… https://t.co/GADPTRoksP +06/29/2018,Economists,@BetseyStevenson,Economists continue to be confused as to why the US is pursuing a policy that will lead to higher prices and fewer… https://t.co/Incn8YNZmm +06/29/2018,Economists,@BetseyStevenson,"Tip for policy makers: I look at the people killed, read about their lives, and try my best to imagine the pain the… https://t.co/RTZ3QBWEVD" +06/28/2018,Economists,@BetseyStevenson,@SarahJacobsonEc I went to museum of Swedish design (something like that) where I learned how the Swedish govt solv… https://t.co/bLj8wADhRC +06/27/2018,Economists,@BetseyStevenson,RT @ShadowingTrump: McConnell-Gorsuch Part VI: Cheating pays https://t.co/CLOxrGnXXz +06/27/2018,Economists,@BetseyStevenson,@lukemburgess My point is that I understand and empathize with both sides of it and I think that is most of the ball game. +06/27/2018,Economists,@BetseyStevenson,@lukemburgess The reason people get upset is the lived experience of constantly being assumed to be the stereotype—… https://t.co/Of43qBmTyT +06/27/2018,Economists,@BetseyStevenson,@MikeFellman @econwonk @PressSec @realDonaldTrump I think that every day. And I wish that the public had a better h… https://t.co/FkMphKaaKm +06/27/2018,Economists,@BetseyStevenson,My uber driver asked me if I was a university administrator. You might think that’s sexist but another answer is th… https://t.co/6vzDXxEP1g +06/27/2018,Economists,@BetseyStevenson,#cloudme @tweetcloudbot +06/26/2018,Economists,@BetseyStevenson,Pregnancy discrimination is one reason that women with children earn less than women without children.… https://t.co/6hxYKVweRw +06/26/2018,Economists,@BetseyStevenson,"RT @CFCamerer: Incredible must read “History can familiarize, and it can warn” https://t.co/1tNRqR0lUb" +06/25/2018,Economists,@BetseyStevenson,"@MikeFellman @econwonk @PressSec @realDonaldTrump Yes, yes I have thought that." +06/25/2018,Economists,@BetseyStevenson,RT @brhodes: The President of the United States is threatening to do away with the rule of law. His press secretary didn't get served at a… +06/25/2018,Economists,@BetseyStevenson,After learning that @PressSec's use of twitter to complain about her treatment at a private business was an ethics… https://t.co/sHZxu1H9hJ +06/24/2018,Economists,@BetseyStevenson,Ankle bracelets are a way to achieve the same outcomes with lower government spending. (Remember when the GOP used… https://t.co/Kv7hFuqzT7 +06/24/2018,Economists,@BetseyStevenson,"RT @soledadobrien: Thanks @sullydish ! I wasn't sure what to think when the President talked about migrants 'infest'ing our country. Whew,…" +06/24/2018,Economists,@BetseyStevenson,These folks no longer have to tell you what's in your best interest anymore so watch out before you follow financia… https://t.co/Wqwen0gArx +06/23/2018,Economists,@BetseyStevenson,"Turns out that she's right +https://t.co/5bPa1MFkqW" +06/23/2018,Economists,@BetseyStevenson,I told an American citizen the other day that the shortest route from Ann Arbor to Massachusetts was through Canada… https://t.co/KOA2iKtvBP +06/23/2018,Economists,@BetseyStevenson,Some people make retirement look good. @JohnDingell excels at it. https://t.co/Goaw3kzE8c +06/22/2018,Economists,@BetseyStevenson,GDP counts ...ambulances to clear our highways of carnage. It counts special locks for our doors and the jails for… https://t.co/iY12iiHrbu +06/21/2018,Economists,@BetseyStevenson,RT @SarahJacobsonEc: Apply apply apply! The CSWEP CeMENT mentoring program is wonderful. https://t.co/BNer13ER9I +06/21/2018,Economists,@BetseyStevenson,"RT @JedKolko: @BetseyStevenson Even strongly Trump-voting counties are overwhelmingly service economies + +https://t.co/rKQq4I1rja" +06/21/2018,Economists,@BetseyStevenson,"80% of U.S. employment is in the service sector, one-third of U.S. exports are services +We export services because… https://t.co/WeeXuqNUJ0" +06/21/2018,Economists,@BetseyStevenson,@RadioFreeTom I'm a dem who believes democracy needs more than one party and an economist who understands truly con… https://t.co/dnVYrGLVD0 +06/20/2018,Economists,@BetseyStevenson,"Our government has separated 2,000 children and doesn't yet have a plan to EVER reunite these children with their p… https://t.co/iVedsSrAvK" +06/20/2018,Economists,@BetseyStevenson,"RT @codykeenan: ✅ More than 1 million jobs in every six-month stretch going back to 2012 +✅ Unemployment falling since 2010 +✅ Wages rising (…" +06/19/2018,Economists,@BetseyStevenson,"Sometimes you have to laugh at the incompetence. Go to the facebook page. There's lots of questions. Shockingly, St… https://t.co/LjbXol1aqQ" +06/18/2018,Economists,@BetseyStevenson,"No matter your political beliefs or your party affiliation, if you study families and children you know that the Un… https://t.co/fjpQduVOlG" +06/18/2018,Economists,@BetseyStevenson,RT @MichelleObama: Sometimes truth transcends party. https://t.co/TeFM7NmNzU +06/18/2018,Economists,@BetseyStevenson,"RT @SaraMurray: “Amnesty International recently interviewed 17 asylum-seeking parents who were forcibly separated from their children, and…" +06/18/2018,Economists,@BetseyStevenson,"@jason_nordsell @TDeryugina @TimDuy Is separating them from their children? Now, we're starting to think similarly.… https://t.co/HaAG9Nx77r" +06/18/2018,Economists,@BetseyStevenson,@jason_nordsell @TDeryugina @TimDuy Anger gets in the way of logic and you are clearly very angry. Your anger has l… https://t.co/bvE6WlxRtm +06/18/2018,Economists,@BetseyStevenson,The callousness of some of my fellow countrymen takes my breath away. https://t.co/SlEQfMkNng +06/18/2018,Economists,@BetseyStevenson,"Just in case the GOP wasn't aware, world trading partners will eventually move on. https://t.co/8n5aho98Hg" +06/18/2018,Economists,@BetseyStevenson,"Last night my 5-year old woke up from a bad dream, crying and calling for his parents. I ran to him, quickly smooth… https://t.co/kPlfAezB1m" +06/18/2018,Economists,@BetseyStevenson,#cloudme @tweetcloudbot +06/18/2018,Economists,@BetseyStevenson,RT @ShellyJLundberg: This is rather awesome. https://t.co/uSv9Ff8lDY +06/17/2018,Economists,@BetseyStevenson,RT @robyndoolittle: “To pretend that separated children do not grow up with the shrapnel of this traumatic experience embedded in their min… +06/17/2018,Economists,@BetseyStevenson,"RT @ReliableSources: ""I'm extremely angry with this administration that has lied to me, continues to lie to me,"" says reporter @BrianKarem…" +06/17/2018,Economists,@BetseyStevenson,RT @michele_norris: Keep knocking https://t.co/Yo3WyzjxiS +06/17/2018,Economists,@BetseyStevenson,"My heart races, my stomach heaves, and I can't breath when I read this. But looking away isn't a choice either. Eve… https://t.co/LwT7GV3nSM" +06/16/2018,Economists,@BetseyStevenson,"When you work in the White House you can do a lot of good. Unfortunately, you can also do a lot of harm. https://t.co/HwVLuzOPOF" +06/16/2018,Economists,@BetseyStevenson,"@sampenrose But they are becoming more selective over time, because the pool of qualified applicants has grown subs… https://t.co/Emr1yXeqha" +06/16/2018,Economists,@BetseyStevenson,Totally agree. There are so many more qualified people and the slots aren't expanding. I know that the experience c… https://t.co/4vRQpVFpl9 +06/15/2018,Economists,@BetseyStevenson,We won't be able to pretend later that we didn't know it was happening. We did. https://t.co/1Y873VTDOb +06/15/2018,Economists,@BetseyStevenson,"Um, what? https://t.co/3wnGYTUwbQ" +06/15/2018,Economists,@BetseyStevenson,"RT @familyunequal: When I was a little kid my neighbor rode the short bus to school. Lots of people mocked and bullied him, but he was alwa…" +06/15/2018,Economists,@BetseyStevenson,"RT @JamesSurowiecki: Where is ""feed, clothe, and entertain your little children"" on this list? https://t.co/cIDFwrHh1y" +06/14/2018,Economists,@BetseyStevenson,"Yes we might get 4% growth in a quarter. No, that’s not a sign that the tax cuts “worked”. A fair and good assessme… https://t.co/s16zmubnXC" +06/14/2018,Economists,@BetseyStevenson,"RT @chrissyteigen: happy birthday, @realDonaldTrump https://t.co/BWEgRAcdPX" +06/14/2018,Economists,@BetseyStevenson,RT @AmbassadorRice: WTH??!! https://t.co/VObr4lArPo +06/14/2018,Economists,@BetseyStevenson,"You know you've hit your mid-40s when you get a fundraiser invitation and think ""that looks like fun!""" +06/14/2018,Economists,@BetseyStevenson,Trump admires Kim Jong Un and other violent dictators. He’s energized and excited by their action. The G7 leaders i… https://t.co/3wQBL5SOYf +06/14/2018,Economists,@BetseyStevenson,"@brian_root There is selection into the work for sure. I do feel for the workers, but I also firmly believe that if… https://t.co/vZnSlo3iNa" +06/13/2018,Economists,@BetseyStevenson,This isn't just bad policy. What have we done to the people working for ICE? These workers are too desensitized to… https://t.co/jsO1hGkxyn +06/13/2018,Economists,@BetseyStevenson,Sometimes you have to state the obvious. https://t.co/TfgG9wzeOD +06/13/2018,Economists,@BetseyStevenson,Thank goodness we have economist jokes in these trying times. https://t.co/BTGFefk9Lu +06/12/2018,Economists,@BetseyStevenson,"I have to close twitter, shut off the radio, hide my newspaper apps today. This is too much. https://t.co/tNuKWFGJyS" +06/12/2018,Economists,@BetseyStevenson,I thought the idea that the GOP was trying to stop low income people from voting was supposed to be unspoken. Seems… https://t.co/iETxamGlij +06/11/2018,Economists,@BetseyStevenson,This is actually our government. Watch this interview and keep reminding yourself that this isn't some blowhard on… https://t.co/z2tFgCv2Uf +06/11/2018,Economists,@BetseyStevenson,Actually freelance fees for book reviews have fallen substantially if you think about the fee in terms of what it c… https://t.co/5SnerqTwnM +06/11/2018,Economists,@BetseyStevenson,"My favorite part of reunion is seeing the women from the classes of 1943, '48, '53, & '58. The women who graduated… https://t.co/Cpyy73ejm8" +06/11/2018,Economists,@BetseyStevenson,@amyjccuddy @TooheyMatthew @JustinWolfers You have to have somewhere to sleep and eat whether you are in school or… https://t.co/M35jgmLsGW +06/11/2018,Economists,@BetseyStevenson,@amyjccuddy @TooheyMatthew @JustinWolfers That's a very different question because that question is how much does f… https://t.co/X8NC9wfagO +06/11/2018,Economists,@BetseyStevenson,@TooheyMatthew @amyjccuddy @JustinWolfers One could even just look these numbers up using google. Tuition depends o… https://t.co/SF9uEWxtdA +06/08/2018,Economists,@BetseyStevenson,"If we aren't going to support working families, we'll have fewer working families. + +There's a reason Millennials a… https://t.co/Pr3yuNCV5V" +06/08/2018,Economists,@BetseyStevenson,Super excited to head to @Wellesley today for reunion! https://t.co/d86i88XTX0 +06/08/2018,Economists,@BetseyStevenson,"@a40ruhr @SylvainCF @JustinWolfers I don't know because I don't have another experience, but I do think that having… https://t.co/JuC2R7E2Dw" +06/07/2018,Economists,@BetseyStevenson,"@felixsalmon @mrgunn Wait, are you saying most people don't use twitter to learn about new research, stay on top of… https://t.co/5INcfsrJHe" +06/07/2018,Economists,@BetseyStevenson,"@felixsalmon @mrgunn Wait, what?" +06/07/2018,Economists,@BetseyStevenson,I think I'm starting to understand American politics. https://t.co/phafTizVa4 +06/06/2018,Economists,@BetseyStevenson,@JaimeMortimer Look New Zealand is smaller than Oz and I've basically discovered that every Australian in the U.S.… https://t.co/0kk8x4GiWK +06/06/2018,Economists,@BetseyStevenson,@niltiac @drlisadcook Keep in mind everyone loves to advise students on the right path--every supervisor does what… https://t.co/nWpN3H5fef +06/06/2018,Economists,@BetseyStevenson,"@niltiac @drlisadcook I don't think we disagree, but the adviser can't do their research for them & I've seen lots… https://t.co/4N5SHNrlTd" +06/06/2018,Economists,@BetseyStevenson,@RocCityBuilt I know you support the president. You're too smart to think there's no info in his comment. Reasonabl… https://t.co/r4iHz9XWzF +06/05/2018,Economists,@BetseyStevenson,"What worries me about the ""Obama-did-it-to"" lie is that it is necessary because Trump defenders know that he will l… https://t.co/0aMHV3Ikjj" +06/05/2018,Economists,@BetseyStevenson,"@charlesjkenny @TimHarford @JustinWolfers Depends on the measure of happiness, but the clear finding was with a hol… https://t.co/gZJ8LhefI9" +06/05/2018,Economists,@BetseyStevenson,"RT @DinaPomeranz: If a study doesn't replicate in a new context, that doesn't imply researchers of the original study did something wrong o…" +06/05/2018,Economists,@BetseyStevenson,"If you don't like something, Trump claims the Democrats/Obama/Crooked Hillary did it. + +To be clear: This is a poli… https://t.co/Rl8VayEeq4" +06/05/2018,Economists,@BetseyStevenson,RT @esglaude: These people are moral monsters... https://t.co/dijYf000vp +06/05/2018,Economists,@BetseyStevenson,"@niltiac @drlisadcook Of course that's the goal and MANY try to choose that path, but in my experience many struggl… https://t.co/O436cDUFu8" +06/05/2018,Economists,@BetseyStevenson,@andrewr94514536 @ATabarrok lotteries are welfare decreasing under standard utilitarian assumptions. But I think mo… https://t.co/puFpUCyaJM +06/05/2018,Economists,@BetseyStevenson,"@ATabarrok I think you are saying that it’s the relative gain not the absolute gain. +This study can’t distinguish b… https://t.co/9G3lnviwJM" +06/04/2018,Economists,@BetseyStevenson,"And how many years of life did you cost Americans? How much additional environmental degradation? + +Just because yo… https://t.co/rlrEHEOl3v" +06/04/2018,Economists,@BetseyStevenson,"RT @BrookingsEcon: If you haven't kept up with the joint @BrookingsInst & @AEI series on paid family leave, now's the perfect time to start…" +06/04/2018,Economists,@BetseyStevenson,Research on a surprisingly contested question finds an unsurprising answer. Your life is better if you win the lott… https://t.co/dATZvtMiCJ +06/04/2018,Economists,@BetseyStevenson,This is a really important point that both PhD students and advisers forget. It's an apprenticeship in which studen… https://t.co/BwSpSobD1J +06/04/2018,Economists,@BetseyStevenson,"Ugh this is so awful. He did a lot of good in the world & may have even helped advance many women’s careers, but th… https://t.co/3S6drq6mnJ" +06/04/2018,Economists,@BetseyStevenson,"RT @LHSummers: It’s extraordinary that premature Presidential observations on sensitive data releases are barely newsworthy in 2018, given…" +06/04/2018,Economists,@BetseyStevenson,RT @ShellyJLundberg: This seems important. John Haltiwanger documents decline in young firms and decline in high growth firms in high tech.… +06/03/2018,Economists,@BetseyStevenson,@Undercoverhist @ShellyJLundberg But you also know that your fans will be extremely grateful! +06/01/2018,Economists,@BetseyStevenson,"This is a complete lie. + +Austan, @jasonfurman, @Alan_Krueger, Christy Romer, and I gave Obama the numbers. We NEVE… https://t.co/FVQP1i1Glr" +06/01/2018,Economists,@BetseyStevenson,I truly believe that each generation is smarter than the previous generation. But there are clearly some outliers t… https://t.co/L0U6J4R740 +06/01/2018,Economists,@BetseyStevenson,"I, like much of America apparently, have been forced to abandon beer for a stiff drink at the end of what is now al… https://t.co/cNcVniFFCx" +06/01/2018,Economists,@BetseyStevenson,"RT @ShadowingTrump: After this morning's leak of confidential economic data, is there *any* law or norm Trump won't violate? It's almost li…" +06/01/2018,Economists,@BetseyStevenson,This is a time to be grateful that the President doesn't listen to his advisers. https://t.co/GlxsJwIK8k +06/01/2018,Economists,@BetseyStevenson,What do I mean by a bigger crisis? While student loans may be difficult they exist. There is substantial financial… https://t.co/ws0P3HJiDE +06/01/2018,Economists,@BetseyStevenson,Not obscure before this administration. The Obama administration and all previous administrations to my knowledge f… https://t.co/LgLHqJXM4C +06/01/2018,Economists,@BetseyStevenson,We would have been freaking out and we would have discussed whether it was in the president's best interest to tell… https://t.co/tYFyyeUPXo +06/01/2018,Economists,@BetseyStevenson,Do you know why I never fear the robots? Because the youngsters are becoming more talented at an even faster rate.… https://t.co/ZPRWzgutFS +06/01/2018,Economists,@BetseyStevenson,Seems like a good candidate for a Trump pardon https://t.co/WiWXkgU3pL +06/01/2018,Economists,@BetseyStevenson,"@boost321 @jimtankersley @ThePlumLineGS @Austan_Goolsbee I think that this is a more important issue than that, but… https://t.co/I3ta2bLmzJ" +06/01/2018,Economists,@BetseyStevenson,@DonCarrMAC @Austan_Goolsbee This isn’t liberal bias. The markets inferred correctly that the news would be good fr… https://t.co/YHOL8KN0ob +06/01/2018,Economists,@BetseyStevenson,"There is a big question about who he privately leaks data to and that should be investigated. +Privately leaking thi… https://t.co/hz96iB4yuk" +06/01/2018,Economists,@BetseyStevenson,@ThePlumLineGS @Austan_Goolsbee I would start by reading this: Confidential Information Protection and Statistical… https://t.co/UMThszyV6F +06/01/2018,Economists,@BetseyStevenson,"RT @Austan_Goolsbee: If the president just tipped that the numbers are good, he broke the law https://t.co/8MDJZAS22j" +06/01/2018,Economists,@BetseyStevenson,I think the PR he wants is people talking about him. It worked. https://t.co/0mqoC2izy8 +06/01/2018,Economists,@BetseyStevenson,RT @grossdm: i would bet there are meetings at bureau of labor statistics to discuss keeping advance news on jobs report from getting to th… +06/01/2018,Economists,@BetseyStevenson,Independent statistical agencies must stop sharing data with @realDonaldTrump before public release. The data needs… https://t.co/CjAyXptPiF +06/01/2018,Economists,@BetseyStevenson,@jason_ockerby I don’t live there so don’t have the national insurance. +06/01/2018,Economists,@BetseyStevenson,@rclarkiv It was part of the same hospital so there wasn’t a risk to us. I was also allowed to transport my child (… https://t.co/SDnvvcC27S +06/01/2018,Economists,@BetseyStevenson,@SarahJacobsonEc @WilliamsEcon On to graduate school I hope! +06/01/2018,Economists,@BetseyStevenson,In Australia I once took my kid to the ER for a cut that might have needed a couple stitches. The ER took a look an… https://t.co/axk888d1V1 +05/31/2018,Economists,@BetseyStevenson,"@katewbauer @wowintheworld @guyraz @AbsolutelyMindy They said brain butt, how is that bad communication! Every kid… https://t.co/siLsy9Wky7" +05/31/2018,Economists,@BetseyStevenson,"Attention @wowintheworld @guyraz @AbsolutelyMindy + +My kids need to know more about this butt brain right away. Ple… https://t.co/SGPCDHGFax" +05/31/2018,Economists,@BetseyStevenson,The law and order president https://t.co/OHOZ8CVHwS +05/30/2018,Economists,@BetseyStevenson,"There goes the faculty's, staff's, and students' step count. https://t.co/b2I2PXKFiW" +05/30/2018,Economists,@BetseyStevenson,@Rocketist That's kind of you to say. I appreciate you taking a moment of your time to say something nice to me. +05/30/2018,Economists,@BetseyStevenson,@Rocketist I decided that since I was being vague about per capital or total I could fudge that one. +05/30/2018,Economists,@BetseyStevenson,"Imagine if families got paid time off for a new child, mothers didn't face a permanent wage penalty, and families h… https://t.co/YF6gB9FStG" +05/30/2018,Economists,@BetseyStevenson,This is a guy who is directing the richest country in the world to terrorize innocent children calling other human… https://t.co/QKpiMsIf1v +05/30/2018,Economists,@BetseyStevenson,"RT @PAniskoff: VJ is the epitome of “when they go low, we go high”. She handles every disgusting thing that comes at her with grace, and,…" +05/29/2018,Economists,@BetseyStevenson,RT @jonfavs: It is not a law. Separating children from parents at the border is a new Trump Administration policy. It was not policy under… +05/29/2018,Economists,@BetseyStevenson,"In these trying times, it's good to be able to rely on the dictionary. https://t.co/xrzOjaHsGE" +05/29/2018,Economists,@BetseyStevenson,"President Trump's policy is a form of torture. +President Trump's policy should be against the law. +President Trum… https://t.co/WXpxnXCVQY" +05/28/2018,Economists,@BetseyStevenson,@SometimesSoftly @besttrousers @kareem_sabri @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/SQyfdknlXg +05/28/2018,Economists,@BetseyStevenson,"As @Lin_Manuel would say: Immigrants, they get the job done. https://t.co/pc4GAngxuT" +05/28/2018,Economists,@BetseyStevenson,@besttrousers @kareem_sabri @SometimesSoftly @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/Jc8l6N53Vd +05/28/2018,Economists,@BetseyStevenson,@besttrousers @kareem_sabri @SometimesSoftly @amiguello1 @gztstatistics @thatyellowfog @Manglewood @nberlat… https://t.co/ROuoNb7D1s +05/27/2018,Economists,@BetseyStevenson,"Separating children from their parents is really bad and should only be done in the most extreme situations. +Immigr… https://t.co/HBX8M2m27a" +05/26/2018,Economists,@BetseyStevenson,What we are doing is wrong. Call your members of Congress. Tell them that this is unAmerican. That they shouldn’t s… https://t.co/ry5RffGXJZ +05/24/2018,Economists,@BetseyStevenson,"It may seem silly, but Trump's decision to only be President to his supporters is an affront to our system of gover… https://t.co/I21zZVlWuo" +05/24/2018,Economists,@BetseyStevenson,@familyunequal Thank you! Amazing! +05/24/2018,Economists,@BetseyStevenson,"@Austan_Goolsbee Maybe she could just choose what she wants to do among all her opportunities. +I’m personally glad… https://t.co/kTbEvvM00U" +05/23/2018,Economists,@BetseyStevenson,"@elliottmcollins Did you read the article ""using spotlights to shoot mother black bears and cubs hibernating in the… https://t.co/hF3EmkIFNT" +05/23/2018,Economists,@BetseyStevenson,@gunderson A flat tax doesn't solve tax complication at all! The difficulty of taxes is not doing math on a few dif… https://t.co/Lz2Q1oy9g9 +05/23/2018,Economists,@BetseyStevenson,"They also have enough information to do your taxes for you. + +There are two things that GOP doesn't want to make ea… https://t.co/RZGipPmnIH" +05/23/2018,Economists,@BetseyStevenson,RT @Austan_Goolsbee: My old nber cubicle-mate from graduate school. Nobody is smarter or more down-to-earth. Good for BYU. https://t.co/6BZ… +05/23/2018,Economists,@BetseyStevenson,@pusher1990 The only disagreement here is that I don't think recognizing the rights of immigrants or all people reg… https://t.co/e0E3Lqn81P +05/23/2018,Economists,@BetseyStevenson,"Someone recently asked what social idea would seem obvious in the future but is ahead of its time now. +The answer i… https://t.co/UFjJD0g6KL" +05/22/2018,Economists,@BetseyStevenson,@icefire99 @_alice_evans @JustinWolfers I think that you are misunderstanding marriage--it's generally a cooperativ… https://t.co/Kop1eIwr6U +05/22/2018,Economists,@BetseyStevenson,@Missmarissabee @moorehn A third of Americans have a college degree. Free college won't help your friend--it won't… https://t.co/b1jpjNauIo +05/22/2018,Economists,@BetseyStevenson,"@Missmarissabee @moorehn Lots of countries have more sensible ways to fund college, but what does free mean. Colleg… https://t.co/pUF6kf8FYu" +05/22/2018,Economists,@BetseyStevenson,@annanorthtweets Congratulations! That is lovely news. Enjoy maternity leave! You and all parents deserve leave! +05/22/2018,Economists,@BetseyStevenson,"In an era of reduced worker bargaining power, the Supreme Court strikes another blow, with a decision that further… https://t.co/jJ7Mtolmli" +05/21/2018,Economists,@BetseyStevenson,"RT @tukopamoja: Look at this amazing line-up of economists speaking at @WB_Research! + +You can find links to videos of the seminars that ha…" +05/21/2018,Economists,@BetseyStevenson,Is it time for the constitutional crisis yet? https://t.co/IaimJ4nAEy +05/21/2018,Economists,@BetseyStevenson,"Nice thread explaining my research with @JustinWolfers +The short summary: Women being able to say no-in the case o… https://t.co/uQHP268bGN" +05/21/2018,Economists,@BetseyStevenson,@jamisonfoser @NextGenAmerica Touché +05/21/2018,Economists,@BetseyStevenson,Every day I focus my hopes and prayers on millennials voting. https://t.co/dhPJ61LM7T +05/20/2018,Economists,@BetseyStevenson,@cockybritches @olivia_meikle Jesus Christ! Stop harassing her. What’s the matter with YOU? Get a life. +05/19/2018,Economists,@BetseyStevenson,"@dovesandletters @JustinWolfers I can’t tell if you are joking. They are referring to Frisco, Texas" +05/19/2018,Economists,@BetseyStevenson,"RT @JustinWolfers: Next time someone tells you businesses needs to less regulation so that they're free to pursue profit opportunities, sen…" +05/19/2018,Economists,@BetseyStevenson,"@jneuf Sure it’s a little crass to celebrate that metric. But come on, it feels great to see a public school on tha… https://t.co/XsRi2nrJ9J" +05/18/2018,Economists,@BetseyStevenson,@jneuf I teach the public policy students. They are awesome! I'm sure Michigan competes well on your metric. +05/18/2018,Economists,@BetseyStevenson,Which state school is churning out the most billionaires? You guessed it! The University of Michigan @UMich is the… https://t.co/oWWJH0OHlk +05/18/2018,Economists,@BetseyStevenson,@judy_chevalier @MartinSGaynor @M_ttM_ Wait you can use spaces? +05/18/2018,Economists,@BetseyStevenson,RT @JustinWolfers: The federal government pinpointing individual companies to harm. as political payback is not how capitalism is meant to… +05/18/2018,Economists,@BetseyStevenson,That's why they are reported--because they are held by people journalists know like lawyers. Who really struggles w… https://t.co/do13fQjkkk +05/18/2018,Economists,@BetseyStevenson,SNAP works. It's that simple. Cutting it is cruel and will cost more in the end by raising childhood hunger and lea… https://t.co/C9z5rJlX1B +05/18/2018,Economists,@BetseyStevenson,This is so awesome! https://t.co/jX4rVMLDxt +05/18/2018,Economists,@BetseyStevenson,I agree—this is the best typo I have ever seen. Can’t stop laugh/crying https://t.co/IJqloREQS7 +05/18/2018,Economists,@BetseyStevenson,Birth rates for teens and near teens is way down. This is good for kids. That the birth rate is slightly down for w… https://t.co/nkPGmPpdz3 +05/17/2018,Economists,@BetseyStevenson,I guess we have to sink lower before rising up. But surely our appetite for this kind of crap will be satiated soon… https://t.co/HnvxWzuWvN +05/17/2018,Economists,@BetseyStevenson,The op-ed in NYT saying lower income kids might not benefit from college made my blood boil. Read this thread and i… https://t.co/C0o6nOuMKX +05/17/2018,Economists,@BetseyStevenson,The high cost of childcare & the way our society frowns at parents for needing time to care for infants are a big p… https://t.co/lfX1uiZkbC +05/16/2018,Economists,@BetseyStevenson,"To @JillFilipovic 's point--better more affordable childcare & preschool has been a priority for some. + +The reason… https://t.co/TfCIWIad1b" +05/16/2018,Economists,@BetseyStevenson,"Childcare in the first five years of life costs as much as college. + +But w/ childcare, parents don't have time to… https://t.co/WcE0fbsaWt" +05/16/2018,Economists,@BetseyStevenson,@ATabarrok @Lin_Manuel Yes but more people listen to the music than have seen the show. And many more will see it n… https://t.co/jAADbIJy2I +05/16/2018,Economists,@BetseyStevenson,"When my daughter explain to her baby brother that a frenemy was ""like Alexander Hamilton and Aaron Burr"" I realized… https://t.co/Mor53TnY5Q" +05/16/2018,Economists,@BetseyStevenson,@Austan_Goolsbee @ShellyJLundberg We did this with our youngest’s favorite stuffed animal until she discovered our stash. +05/16/2018,Economists,@BetseyStevenson,@ShellyJLundberg That’s the best part of twitter! Well that and keeping up with new research. I loved your story. +05/15/2018,Economists,@BetseyStevenson,@ShellyJLundberg All I can think right now is should I be doing this? I wash with the stuffing in. Is that bad? Oh… https://t.co/UbKdx6hnaq +05/15/2018,Economists,@BetseyStevenson,@JosephPatrice The point is that Dems are so afraid to just tax that they invent complicated taxes that create a bu… https://t.co/6gocfdE2fb +05/15/2018,Economists,@BetseyStevenson,"RT @cskovron: My research with @dbroockman, as well as relevant research by, among others, @V_Williamson and @SpencerPiston, suggests Ds pr…" +05/15/2018,Economists,@BetseyStevenson,This policy also encourages low-skill workers to be replaced by machines. +05/15/2018,Economists,@BetseyStevenson,@HarryDCrane @CFCamerer It is absolutely not true that there are higher standards at for-profit institutions. Read… https://t.co/pUQcMB5Rro +05/15/2018,Economists,@BetseyStevenson,"This is a terrible idea. +(1) If we want to tax corporations, do it! +(2) Don't create a group of rich people who ha… https://t.co/pfdJXGr2yy" +05/15/2018,Economists,@BetseyStevenson,"RT @ShellyJLundberg: Every spring, my mother gathered our stuffed animals (not many each, but there were 6 of us), split a seam, pulled out…" +05/15/2018,Economists,@BetseyStevenson,But you already knew this right? https://t.co/JiJ1o5GQOw +05/14/2018,Economists,@BetseyStevenson,@EdAsante77 @JustinWolfers Even if the school is lying about failure rates? So conservatives support lying to peopl… https://t.co/Qmau7hM67f +05/14/2018,Economists,@BetseyStevenson,"Yes, please someone explain to me how letting predatory colleges fleece students and taxpayers is a conservative po… https://t.co/ekd9FfiJxQ" +05/14/2018,Economists,@BetseyStevenson,RT @wowintheworld: What's that smell? It's today's new episode! In Somefin Smells Fishy in Here @guyraz and @AbsolutelyMindy teach us how e… +05/14/2018,Economists,@BetseyStevenson,Sometimes I feel for the folks trying to work in the WH. https://t.co/eFuI6ku7bi +05/10/2018,Economists,@BetseyStevenson,I'm looking forward to this discussion! https://t.co/nuOF1a8RMh +05/08/2018,Economists,@BetseyStevenson,"I usually really like @TheEconomist. But this article is bad. Here are 2 pbs w/ it: +1) Al Roth actually works on ho… https://t.co/gSdwQuouv8" +05/08/2018,Economists,@BetseyStevenson,RT @BarackObama: There are few issues more important to the security of the US than the potential spread of nuclear weapons or the potentia… +05/08/2018,Economists,@BetseyStevenson,"RT @brhodes: The same people making the same mistakes, in part because too many people refused to acknowledge or accept the scale of the ca…" +05/08/2018,Economists,@BetseyStevenson,RT @brhodes: It took five years of diplomacy to build the sanctions regime and two years of diplomacy to reach a Deal. Trump is blowing tha… +05/08/2018,Economists,@BetseyStevenson,"The decision to pull out of the Iran deal is a terrifyingly bad choice, made for all the wrong reasons, and will le… https://t.co/z3gQOp9b6Y" +06/27/2018,Economists,@omzidar,"Race and economic opportunity in the United States | VOX, CEPR Policy Portal https://t.co/X7dc65wYXC" +06/27/2018,Economists,@omzidar,Why states are raising less revenue from corporate taxes - Chicago Booth Review https://t.co/DiZt6JuUOw via @chicagoboothrev +06/27/2018,Economists,@omzidar,RT @TradeDiversion: International exchange of goods plays a small role in most research presented at the Princeton IES Workshop this week:… +06/27/2018,Economists,@omzidar,"CAGE Workshop in Applied Economics, Venice 2018 https://t.co/rzCMdTQfWE" +06/27/2018,Economists,@omzidar,"U.S. government's efforts to regulate state pathways around SALT cap could hit hospital, school programs elsewhere… https://t.co/lma5IDhCmu" +06/27/2018,Economists,@omzidar,RT @AllisonSchrager: I asked Jean Tirole every you could want to know about regulating tech--no better source https://t.co/MkhhHhyODS via @… +06/25/2018,Economists,@omzidar,RT @Austan_Goolsbee: Spoiler: it’s by my @ChicagoBooth colleague Eric Budish and shows that the vulnerability to attack depends on the flow… +06/24/2018,Economists,@omzidar,RT @nealemahoney: Congratulations to both of you! https://t.co/wdXuYVj5VI +06/23/2018,Economists,@omzidar,"@ProfNoto “The brand most predictive of top income in 1992 is Grey Poupon Dijon mustard.42 By 2004, the brand most… https://t.co/2IK3ArgIfO" +06/23/2018,Economists,@omzidar,"@ProfNoto This was pretty interesting ... “In 1992, watching car racing, bicycle racing, and figure skating – and n… https://t.co/6cBexDZirw" +06/23/2018,Economists,@omzidar,@real_eric_ohrn How was the Zwick session? +06/23/2018,Economists,@omzidar,"RT @ProfNoto: Now *this* is a cool use of machine learning! + +How well can we predict demographic characteristics from media consumption, ti…" +06/22/2018,Economists,@omzidar,"RT @ProfNoto: OK, I've ""read"" the PDFs in Harvard discrimination case (though this is using the elastic meaning of ""read"" provided by McAfe…" +06/22/2018,Economists,@omzidar,State sales-tax officials rev their engines following Supreme Court ruling https://t.co/xXQ0zI0Hyu via @WSJ +06/22/2018,Economists,@omzidar,"RT @ProfNoto: This cool figure from Raj Chetty's talk at that ""school up north"" [go Buckeyes!] includes a graph from the JMP of my co-autho…" +06/21/2018,Economists,@omzidar,"Some interesting figures on democratic vote share by education, income, race from 1948-2016 from @PikettyLeMonde's… https://t.co/hvrwTpVb3R" +06/21/2018,Economists,@omzidar,Supreme Court rules that states may require online retailers to collect sales taxes https://t.co/kXa9q1Bac8 +06/21/2018,Economists,@omzidar,"RT @DinaPomeranz: Interested in tax research? + +Don't miss these great talks & panels tomorrow at the conference organized by Joel Slemrod o…" +06/20/2018,Economists,@omzidar,@fatihguvenen https://t.co/ULYl56be8I +06/19/2018,Economists,@omzidar,"RT @fatihguvenen: We are going to talk about inequality. New facts, findings, and ideas. +This Thursday-Friday in Copenhagen. Come and join…" +06/18/2018,Economists,@omzidar,Business Taxation -- Call for Papers: Research Conference and Graduate Student Workshop https://t.co/r8Iecse6fI +06/18/2018,Economists,@omzidar,"RT @ProfNoto: Back in 🇺🇸, so back on Twitter! + +Two threads I liked recently-- + +@IlliniBizDean on pensions: https://t.co/6YwwkMIPJV + +@SteveC…" +06/16/2018,Economists,@omzidar,"RT @ProfEmilyOster: Interesting (personal) take on the Harvard affirmative action case from the great @JeannieSuk +https://t.co/Hd07zHzMLv" +06/15/2018,Economists,@omzidar,RT @IlliniBizDean: Great thread on the Harvard admissions lawsuit by one of the best education economists in the world (and in full disclos… +06/15/2018,Economists,@omzidar,"RT @Kweku_OA: For your urgent economics diagram illustration needs, check out a very nice TikZ cookbook by Chiu Yu Ko of the National Unive…" +06/15/2018,Economists,@omzidar,RT @JoshuaSGoodman: For a phenomenal example of the importance of choosing the correct controls in a regression (and a smackdown of someone… +06/15/2018,Economists,@omzidar,"RT @dynarski: The Harvard brief is here + +https://t.co/iggzAlgMbq + +The plaintiffs’ brief is here + +https://t.co/fBg1vyerVz + +8/N" +06/15/2018,Economists,@omzidar,"RT @dynarski: Card models the Harvard admissions process using all the factors the school uses in making decisions. Essay ratings, backgrou…" +06/15/2018,Economists,@omzidar,"RT @dynarski: Once you consider all these factors, there is no evidence of bias against Asians in the process. + +David Card has does the s…" +06/15/2018,Economists,@omzidar,"RT @dynarski: Does Harvard discriminate against Asians in admissions? + +Evidence says no, by my reading of the evidence in this case. /THRE…" +06/15/2018,Economists,@omzidar,One in ten dollars of US housing were anonymous https://t.co/ro15VkKSwl via @FT +06/15/2018,Economists,@omzidar,"Harvard Rated Asian-American Applicants Lower on Personality Traits, Lawsuit Says https://t.co/GopD1Lgor2" +06/12/2018,Economists,@omzidar,RT @crampell: Very sorry to hear this. I wish him a swift recovery and hope his family is doing OK. https://t.co/fxxBrdH4Y9 +06/10/2018,Economists,@omzidar,https://t.co/lTWFcwrmyE +06/08/2018,Economists,@omzidar,RT @just_shelter: We’re hiring! https://t.co/3Rx5bTnqgm +06/08/2018,Economists,@omzidar,"RT @seema_econ: Super helpful curated list of tips for economists, by Masa Kudamatsu. Links to advice on applying for a PhD, making present…" +06/07/2018,Economists,@omzidar,Apple and Google’s hometowns still considering employer taxes https://t.co/4E5VFON93w +06/07/2018,Economists,@omzidar,"RT @ProfNoto: Great article in The Upshot on the correspondence by David Himmelstein, Steffie Woolhandler, & @SenWarren about my recent NEJ…" +06/07/2018,Economists,@omzidar,"@mattkahn1966 Not sure what you mean about this being too topical for its own good. Seems like a valuable, relevant, and timely contribution" +06/06/2018,Economists,@omzidar,"RT @IlliniBizDean: @omzidar @WSJ Too bad nobody saw this coming* + +* with exception of every economist, actuary, policy analyst, and anyone…" +06/06/2018,Economists,@omzidar,"Social Security’s cost will exceed its income this year, forcing the program to dip into its trust fund to cover be… https://t.co/Np7Ksu9z4O" +06/05/2018,Economists,@omzidar,RT @paulgp: Research Assistant position for graduating undergrads at Yale SOM: https://t.co/qN83bLoeqY https://t.co/e9Bma2fzRC +06/04/2018,Economists,@omzidar,RT @IlliniBizDean: The state of Illinois has been gradually but steadily reducing support for higher education. If one adjusts for inflatio… +06/03/2018,Economists,@omzidar,This headline is a bit misleading — 100k people moving out of 15 million means less than one percent are moving — b… https://t.co/iuisRrw0tH +06/01/2018,Economists,@omzidar,"RT @johnjhorton: UC Berkeley average salaries by professor rank & department (ordered by full professor) +Data: https://t.co/z9ycQGmf9V +Code…" +05/31/2018,Economists,@omzidar,RT @DinaPomeranz: 'likelihood of gaining tenure at a top economics dept is about 26% higher for faculty with an A-surname than with a Z-sur… +05/29/2018,Economists,@omzidar,https://t.co/LpPH1DbyoR +05/28/2018,Economists,@omzidar,RT @pogourinchas: Congratulations @gabriel_zucman ! Wonderful news. https://t.co/TsKg7XwQS6 +05/26/2018,Economists,@omzidar,@stephkestelman @TDeryugina Asana works pretty well +05/24/2018,Economists,@omzidar,"RT @SethDZimmerman: Self promotion alert: I have a paper that is exactly about this: https://t.co/B6a6eH8QBX + https://t.co/5h8FyRVlXm via @…" +05/24/2018,Economists,@omzidar,RT @jasonfurman: A lot of people trying to infer the effects of the tax cut from the macro data. Is much harder than trying to infer if a c… +05/24/2018,Economists,@omzidar,RT @BOiPRINCETON: Congrats to Stephen Redding and @PrincetonEcon. Professor Redding and coauthors have won the Econometric Society’s 2018 F… +05/23/2018,Economists,@omzidar,"RT @SethHanlon: His full presentation is here: https://t.co/1hycM2qhkW + +Also, this event is being webcast live, and goes until 12:30. Tune…" +05/23/2018,Economists,@omzidar,RT @ProfJAParker: Watch “NBER MACRO 2018 GOPINATH INTERVIEW Sequence.05A” on #Vimeo https://t.co/xZ1E0OzXAf +05/21/2018,Economists,@omzidar,RT @nealemahoney: Thrilled that the brilliant @m_sendhil will be joining the faculty at @ChicagoBooth. Welcome to Chicago! +05/19/2018,Economists,@omzidar,"RT @JustinWolfers: 2018 has been deadlier for schoolchildren than service members. +https://t.co/fdYbYsSgru https://t.co/JWmDImvpEa" +05/18/2018,Economists,@omzidar,RT @crampell: missed this last week https://t.co/oHJPOXqtow +05/16/2018,Economists,@omzidar,New Jersey Emerges as a Liberal Bulwark Under Murphy https://t.co/asWDdhBX48 +05/15/2018,Economists,@omzidar,"RT @gabriel_zucman: Life expectancy in the United States vs. peer nations. +https://t.co/ktKgH3krBv https://t.co/45y0eQ3ZoC" +05/15/2018,Economists,@omzidar,"RT @DinaPomeranz: I'm going to live tweet @m_sendhil's talk on ""Economic Applications of Machine Learning"" at @econ_uzh today https://t.co/…" +05/15/2018,Economists,@omzidar,"Seattle Scales Back Tax in Face of Amazon’s Revolt, but Tensions Linger https://t.co/TJhVJlB9Cg" +05/13/2018,Economists,@omzidar,https://t.co/LdiF9SRo41 +05/13/2018,Economists,@omzidar,@bencasselman we have a new version of our paper that provides a framework for evaluating the effects of these type… https://t.co/5xlzl5ORu5 +05/13/2018,Economists,@omzidar,https://t.co/j8ldq0JEYF +05/12/2018,Economists,@omzidar,"RT @bencasselman: The federal tax overhaul had an unintended effect: giving many states more tax revenue. Should they spend it, or give it…" +05/11/2018,Economists,@omzidar,Michigan’s GOP has a plan to shield some people from Medicaid work requirements. They’re overwhelmingly white. https://t.co/65cffsMT6a +05/10/2018,Economists,@omzidar,"RT @RichardRubinDC: Connecticut passes its SALT workaround. +Next move: Treasury? https://t.co/JnRjAmnlLR" +05/09/2018,Economists,@omzidar,RT @JustinWolfers: U.S. states renamed for countries with similar GDP's. https://t.co/BPnTnjA6cl +05/06/2018,Economists,@omzidar,"RT @Alan_Krueger: Congratulations to my colleague, coauthor, role model, and friend Orley Ashenfelter on this well-deserved honor. https:/…" +05/05/2018,Economists,@omzidar,https://t.co/4ZKCZqreTU +05/05/2018,Economists,@omzidar,Teacher Pay Is So Low in Some U.S. School Districts That They’re Recruiting Overseas via @NYTimes https://t.co/xVM1SQbh6t +05/04/2018,Economists,@omzidar,"RT @mattkahn1966: Vancouver school tax protesters turn their anger on UBC housing prof, who’s teaching ‘hate’ https://t.co/acEWpzv5B1" +05/03/2018,Economists,@omzidar,"RT @tdisbell: @RichardRubinDC @WSJ One of the technicalities you are likely referencing parenthetically is Section 15(a), which imposes a b…" +05/03/2018,Economists,@omzidar,RT @ProfJAParker: The NBER homepage currently features the lunch panel we put together on tax reform at this year's NBER Macro Annual https… +05/03/2018,Economists,@omzidar,RT @richpriz: High income partners most likely benefit from entity conversion to C-corp status. I expect we will see more of this in the fu… +05/03/2018,Economists,@omzidar,The recent tax cuts are spurring KKR to ditch its partnership structure and become a corporation https://t.co/BSL5QP5qRV via @WSJ +05/01/2018,Economists,@omzidar,@ryanbedwards @jim_savage_ @OwenOzier @BerkOzler12 That’s funny. @OwenOzier was my TA at Berkeley in grad school (f… https://t.co/JZxZyTslnr +05/01/2018,Economists,@omzidar,"RT @DSraer: Carl Shapiro’s take on this: https://t.co/dgq6KTKjjW + +Small magnitudes, unconvincing evidence (national vs local market shares)…" +04/30/2018,Economists,@omzidar,RT @SmartIncentives: Details of Philadelphia's cash offer to Amazon in HQ2 pitch ordered to be shared https://t.co/HjVYReHTYl via @phillydo… +04/27/2018,Economists,@omzidar,"RT @RyanMKellogg: ""...many investors in publicly traded oil and gas producers are pressing executives not to sow the seeds of another price…" +04/27/2018,Economists,@omzidar,https://t.co/q3rCQOmI9D +04/26/2018,Economists,@omzidar,"RT @gabriel_zucman: 15 companies report tax savings of $6.2 Billion in first three months of 2018, after Trump tax cut https://t.co/EwKMFCX…" +04/26/2018,Economists,@omzidar,@amandayagan We have a lot of state tax rules and safety net rules as well. Happy to chat more +04/25/2018,Economists,@omzidar,"RT @sdellavi: Fact 3 on Top Journals: Given facts 1 and 2, acceptance rates in top journals keep declining, are at 2.5% for QJE, 3% for RES…" +04/25/2018,Economists,@omzidar,"Tax Reform, Round One - Harvard Magazine https://t.co/g8yzPNfVIM via @AddThis" +04/24/2018,Economists,@omzidar,RT @TimBartik: Op-ed by @NateMJensen in @nytimes on the need for transparency in incentives. I agree this is needed first reform if we are… +04/24/2018,Economists,@omzidar,RT @KentSmetters: Panel at 33rd Annual Conference on Macroeconomics Weighs Costs and Impacts of the 2017 Tax Legislation. Watch the video a… +04/23/2018,Economists,@omzidar,"RT @gabriel_zucman: Google's global effective corporate tax rate in Q1 2018, post-Trump reform: 11% +https://t.co/9jcxojriH6 https://t.co/fu…" +04/23/2018,Economists,@omzidar,https://t.co/U7QKpBY2DN +04/23/2018,Economists,@omzidar,https://t.co/VkbfdM81HF +04/21/2018,Economists,@omzidar,"RT @IvanWerning: Fascinating experiment by Levitt-List-Fryer setting up a pre-school in south-side Chicago, then setting up a program for p…" +04/20/2018,Economists,@omzidar,"RT @femme_economics: Hilarious response to peer review: ""I see no reason to address the -- in any case erroneous -- comments of your anonym…" +04/19/2018,Economists,@omzidar,"Here's a video of Chetty's Tanner lecture at Princeton on ""Neighborhood Effects: Childhood Environment and Upward M… https://t.co/qeWxadaZVq" +04/19/2018,Economists,@omzidar,"RT @BeckerFriedman: In op-ed, @HarrisPolicy's @nomadj1s argues for simplifying the process of paying taxes via @WashingtonPost +https://t.co…" +04/18/2018,Economists,@omzidar,"RT @SteveCicala: Yesterday's IT failure at IRS was completely foreseen by the people running the organization, desperate for more resources…" +04/17/2018,Economists,@omzidar,"RT @RichardRubinDC: Koskinen says IRS system failures were a matter of when, not whether: “Each year, there have been more glitches that ge…" +04/17/2018,Economists,@omzidar,"RT @RichardRubinDC: While we wait for the IRS to start collecting money again, here's former IRS commissioner John Koskinen, from 2015, on…" +04/17/2018,Economists,@omzidar,IRS electronic filing system breaks down hours before midnight deadline https://t.co/AlXIOeupBp +04/16/2018,Economists,@omzidar,https://t.co/DDVg4RC188 +04/15/2018,Economists,@omzidar,https://t.co/QmuQYl7rPM +04/15/2018,Economists,@omzidar,"RT @albouy: Public services decline while taxes rise, especially in low-growth states, from a legacy of bankruptcy-inducing public pension…" +04/15/2018,Economists,@omzidar,https://t.co/rfBf78lf7T +04/14/2018,Economists,@omzidar,@glenweyl @rodrikdani @PrincetonUPress “The wealthy were rewarded for doing nothing. Poor people who needed land ha… https://t.co/oZZG8SUecD +04/14/2018,Economists,@omzidar,@glenweyl @rodrikdani @PrincetonUPress This is very interesting. I love the Dracula reference — I look forward to r… https://t.co/Hp2AyModEu +04/14/2018,Economists,@omzidar,RT @ProfNoto: I left this summer camp with a research idea that would later turn into my job market paper (inspired by Kevin Murphy's mini-… +04/12/2018,Economists,@omzidar,RT @LAOEconTax: An overview of California’s tax system ⬇️#CATaxes https://t.co/05TLadgPor +04/11/2018,Economists,@omzidar,"RT @MarkLJWright: April 26th - State and local government debt: lessons from the study of national debt +https://t.co/BqiLz8htlz" +04/11/2018,Economists,@omzidar,‘It is safe to say it is one of the largest tax bills on earned income in history.’ https://t.co/f1YxRyOqpT via @WSJ +04/11/2018,Economists,@omzidar,RT @J_C_Suarez: Excited to be visiting Columbia Econ for the day. I’ll be presenting my new paper “Unintended Consequences of Eliminating T… +04/10/2018,Economists,@omzidar,"RT @betsylevyp: I'm hiring! Please retweet to help me find a new lab manager--basically, a head research assistant. You're a great fit if y…" +04/10/2018,Economists,@omzidar,"RT @BeckerFriedman: Apply now! Applications due April 15 for the 2018 Price Theory Summer Camp, organized by @uchi_economics' Steve Levitt…" +04/09/2018,Economists,@omzidar,"RT @betsylevyp: @R_Thaler @UChicago Also, the best scholarly exchange I witnessed this year was Jim heckman, who responded in a 15 minute t…" +04/09/2018,Economists,@omzidar,"RT @nealemahoney: More making fun of Jesse, without a doubt. https://t.co/Tt2Hibv4o6" +04/07/2018,Economists,@omzidar,RT @nealemahoney: Powerful data-journalism on eviction by @emilymbadger and @qdbui. I've been studying financial distress for over a decade… +04/07/2018,Economists,@omzidar,RT @johnvanreenen: Important long term effects of job search assistance https://t.co/wLA1Kz5DKn Evidence from Nevada @nberpubs +04/07/2018,Economists,@omzidar,https://t.co/8CPSaVxADB +04/05/2018,Economists,@omzidar,https://t.co/pNp4uwRgvA +04/04/2018,Economists,@omzidar,"RT @profsufi: Here is effect on economic expectations through end of 2017. No sign of abatement whatsoever. Repubs ecstatic about economy,…" +04/03/2018,Economists,@omzidar,The tax bill is law. Now for the tax games. https://t.co/McG4CLtWjG via @WSJ +04/03/2018,Economists,@omzidar,"RT @greenhousenyt: ""Some states, like Kansas and Oklahoma, have gone in for radical tax cuts, and ended up savaging their education systems…" +04/02/2018,Economists,@omzidar,"RT @BarbaraBiasi: @leah_boustan using evidence from the Age of Mass Migration to draw lessons on current immigration policy, during @Prince…" +04/02/2018,Economists,@omzidar,"Fed up with school spending cuts, Oklahoma teachers walk out https://t.co/dcvkBT6HJ0" +04/02/2018,Economists,@omzidar,RT @SethDZimmerman: It will be interesting to see whether this is a one-time aberration or the beginning of a shift in the balance between… +04/02/2018,Economists,@omzidar,"RT @SethDZimmerman: ""To pay for the raise, politicians from both parties agreed to increase production taxes on oil and gas ... It was the…" +04/02/2018,Economists,@omzidar,Could a tax incentive pry empty nesters from their oversize homes? https://t.co/zdZyhMkQrZ via @sfchronicle +04/01/2018,Economists,@omzidar,"RT @janetnovack: As corporate-government tax pacts falter, Coca-Cola challenges huge U.S. bill https://t.co/cWXGtxT3fR" +03/31/2018,Economists,@omzidar,@paulgp Hard to read the labels. Am curious where Dartmouth falls +03/31/2018,Economists,@omzidar,"RT @nomadj1s: @mattyglesias Some evidence on indirect effects on research funding and output: + +https://t.co/ESDLXu9NQY" +03/31/2018,Economists,@omzidar,"RT @dynarski: Piketty on inequality and politics + +#pikettyforum https://t.co/oiCgjGpZtL" +03/30/2018,Economists,@omzidar,RT @DanaGoldstein: Here is a graphic circulating on Facebook among Oklahoma teachers as they prepare to walk out on Monday. The bill that p… +03/30/2018,Economists,@omzidar,The IRS is auditing a lot fewer Americans https://t.co/epLPgHfoUE via @WSJ +03/29/2018,Economists,@omzidar,@J_C_Suarez @real_eric_ohrn What happens? +03/29/2018,Economists,@omzidar,RT @J_C_Suarez: Please note @real_eric_ohrn finds a tax semi-elasticity of investment of 4.7. Just noting this so you don’t freak out when… +03/29/2018,Economists,@omzidar,"Trump Attacks Amazon, Saying It Does Not Pay Enough Taxes https://t.co/lsP6Snx9zH" +03/29/2018,Economists,@omzidar,"RT @RichardRubinDC: The IRS is auditing a lot fewer Americans. + +https://t.co/AZU5S8jIin via @Saunderswsj" +03/28/2018,Economists,@omzidar,"RT @TradeDiversion: ""I realize that each equation cuts the fraction of the audience listening by half..."" - @heckmanequation starting his d…" +03/28/2018,Economists,@omzidar,https://t.co/eISUp6AYKs +03/28/2018,Economists,@omzidar,RT @just_shelter: The fire marshal is turning people away at Raj Chetty’s Tanner Lecture @Princeton. Huge crowd! https://t.co/o7x707Lf74 +03/27/2018,Economists,@omzidar,RT @J_C_Suarez: Must read tweetstorm and report by @TimBartik on who pays for local development incentives. https://t.co/DdMXiRqWCn +03/27/2018,Economists,@omzidar,RT @AlanMCole: ! ! ! @ScottElliotG https://t.co/kmrsBJnq8K +03/27/2018,Economists,@omzidar,"RT @TimBartik: My report on the benefits and costs of different economic development incentives for both overall local per capita-income, a…" +03/27/2018,Economists,@omzidar,RT @AlexBartik: Really cool new data source from @uscensusbureau (procured by @footeball45 and others) with linked education and earnings d… +03/27/2018,Economists,@omzidar,"RT @footeball45: If you love new data and are interested in earnings and employment outcomes for college graduates, @uscensusbureau has jus…" +03/26/2018,Economists,@omzidar,RT @J_C_Suarez: If only someone had Chinese tax return data and was evaluating the effects of “high quality” growth and how VAT affects inv… +03/26/2018,Economists,@omzidar,https://t.co/or42Z4rJKE +03/24/2018,Economists,@omzidar,"RT @seema_econ: @autoregress Marvel: ""Infinity War is the most ambitious crossover event in history."" + +@r_thaler: https://t.co/hfJu21mTSv" +03/22/2018,Economists,@omzidar,RT @FHogroian_COST: Georgia passes legislation to provide deduction of GILTI from the state tax base https://t.co/kBsxBaK0Pd +03/22/2018,Economists,@omzidar,@paulgp Where did you get that data out of curiosity +03/21/2018,Economists,@omzidar,https://t.co/Spwc9klVkW +03/21/2018,Economists,@omzidar,RT @lenburman: Here’s a CBO report on indexing capital gains Larry Ozanne and I wrote in 1990. The argument for indexing is even weaker now… +03/21/2018,Economists,@omzidar,"RT @lenburman: Based on 2012 data, capital gains indexing would make the average top effective tax rate on long-term capital gains about 14…" +03/20/2018,Economists,@omzidar,RT @BeckerFriedman: 2018 Price Theory Summer Camp now accepting applications! https://t.co/t8XVplc6rs https://t.co/ScyuQDObIj +03/20/2018,Economists,@omzidar,"RT @sarahkliff: ""https://t.co/NEEC3Qla2G: You can turn any social gathering into a debate about tax policy.” 🤓 + +https://t.co/nSkMMYikRD" +03/20/2018,Economists,@omzidar,@bkavoussi You must not be on the east coast today +03/20/2018,Economists,@omzidar,"RT @ProfMartyWest: New in @EducationNext: @JoshuaSGoodman, Julia Melkers, and Amanda Pallais show how @GeorgiaTech's online master's degree…" +03/20/2018,Economists,@omzidar,"RT @paulgp: 🚨New Working Paper Alert 🚨 + +Bartik Instruments: What, When, Why and How + +With Isaac Sorkin and Henry Swift + +https://t.co/BFufH3…" +03/19/2018,Economists,@omzidar,"@Noahpinion @SethDZimmerman's ""Making the One Percent: The Role of Elite Universities and Elite Peers"" is worth rea… https://t.co/Icw1NvNGFD" +03/19/2018,Economists,@omzidar,‘That’s the game’: Tax planners look for loopholes amid uncertainty over new law https://t.co/jLiLI9Xnne +03/19/2018,Economists,@omzidar,Europe’s Planned Digital Tax Heightens Tensions With U.S. https://t.co/jcNFIXPUzx +03/19/2018,Economists,@omzidar,"RT @ProfDavidDeming: On any given day, 21% of black men born to the lowest-income families are incarcerated. As an otherwise proud American…" +03/19/2018,Economists,@omzidar,https://t.co/uVLqmS5hiY +03/19/2018,Economists,@omzidar,RT @John_N_Friedman: The black-white gap in intergenerational mobility is driven entirely by a large gap for men. https://t.co/veRptKtXHO +03/19/2018,Economists,@omzidar,RT @John_N_Friedman: Amazing new work out this morning by my Equality of Opportunity Project colleagues Raj Chetty and @nhendren82 on inter… +03/19/2018,Economists,@omzidar,"RT @OlegUrminsky: I used to do political polling/targeting, and I have some thoughts on Cambridge Analytica: https://t.co/FuRnMikns5 + +I…" +03/17/2018,Economists,@omzidar,"RT @nomadj1s: For those gushing over @umbc’s epic upset, get familiar with their amazing president Freeman Hrabowski + +https://t.co/G2CzNoFD…" +03/16/2018,Economists,@omzidar,RT @paulgp: Big personal news for me: I’ll be joining the Yale School of Management finance group this summer as an assistant professor! +03/16/2018,Economists,@omzidar,"RT @InequalityHKS: BIG CONGRATS to @S_Stantcheva, newly-tenured Professor of Economics @HarvardEcon !! https://t.co/2rX9QRLi22" +03/16/2018,Economists,@omzidar,Not My Job: We Quiz Economist Austan Goolsbee On Home Economics https://t.co/r0ZLdbFylt +03/15/2018,Economists,@omzidar,"New York City Is Failing Homeless Students, Reports Say https://t.co/g4oq94HWQF" +03/15/2018,Economists,@omzidar,RT @JamesKvaal: Adam Looney and Nick Turner with the outrageous truth about our criminal justice system - in some neighborhoods nearly 1 in… +03/15/2018,Economists,@omzidar,"RT @jenniferdoleac: Cool new paper by Adam Looney and Nicholas Turner links data on former prisoners with IRS data: +https://t.co/aY2CjvfTP…" +03/15/2018,Economists,@omzidar,A downside for cities trying to woo Amazon: local companies may want the same deal https://t.co/AM5X7yt6LZ via @WSJ +03/14/2018,Economists,@omzidar,"RT @ezraklein: Most chilling stat I've read today: ""More than 30 percent of men ages 30 to 34 born to the poorest families were either in p…" +03/14/2018,Economists,@omzidar,RT @convexify: Got an emergency call from @NorthwesternU about someone with a gun on campus... Stay safe everyone. :( +03/13/2018,Economists,@omzidar,"RT @TimBartik: Important new paper by Austin/Glaeser/@LHSummers endorses SOME place-based policies. In my view, 3 key points: https://t.co/…" +03/13/2018,Economists,@omzidar,RT @BeckerFriedman: .@chicagobooth's Jessica Jeffers argues noncompete agreements boost investment but stifle start-ups via @chicagoboothre… +03/12/2018,Economists,@omzidar,https://t.co/M1QAcl8hvx +03/11/2018,Economists,@omzidar,https://t.co/gXhvju4xPd +03/08/2018,Economists,@omzidar,https://t.co/VXzoO6Kgma +03/08/2018,Economists,@omzidar,Saving the heartland: Place-based policies in 21st Century America https://t.co/pb2ovP4vzl via @BrookingsInst +03/08/2018,Economists,@omzidar,RT @jasonfurman: Robert Barro and I teamed up to assess the macroeconomic impact of the 2017 tax law. Here is the main table and also the r… +03/08/2018,Economists,@omzidar,"RT @dartmouth: “@TrebAllen is one of the best economists of his generation.”—Christopher Snyder, economics department chair. Learn more abo…" +03/07/2018,Economists,@omzidar,RT @AlexBartik: Moving to the top of the to-read list. https://t.co/Re7dpQUkjM +03/07/2018,Economists,@omzidar,RT @TradeDiversion: @omzidar @WSJ Seems similar to the story from https://t.co/IGgpn7G2bh a few months ago. The spying theory reflects the… +03/07/2018,Economists,@omzidar,That eerily relevant ad in your Facebook news feed? It’s a result of all the data you’ve given Facebook and adverti… https://t.co/Hmk8cqrqvS +03/07/2018,Economists,@omzidar,"RT @ProfNoto: Here is the final version of Brookings paper on the decline in US LFP by @Alan_Krueger, including detailed comments at the en…" +03/06/2018,Economists,@omzidar,RT @joshrauh: CA has single-sales apportionment but it also has a throwback rule. Estimates from my forthcoming paper with Xavier Giroud @J… +03/06/2018,Economists,@omzidar,"RT @ProfNoto: [ Thanks to MIT's super awesome ""OpenCourseWare"" (@MITOCW), you can view the Syllabus from the semester when I took the class…" +03/05/2018,Economists,@omzidar,"RT @RichardRubinDC: Federal corporate taxes: 🔽 +State corporate taxes: 🔼 +State and business responses: ❓❔❓❔ + +https://t.co/sUXacB54rz via @WSJ" +03/05/2018,Economists,@omzidar,Prisoners of the American Dream by Stefanie Stantcheva @ProSyn https://t.co/qrvIeuPeIZ +03/05/2018,Economists,@omzidar,RT @Austan_Goolsbee: Ben gave me his Fed governor’s chair when I left DC. I keep it in my office and let visitors and ph.d job candidates s… +03/04/2018,Economists,@omzidar,"RT @JustinWolfers: Milton Friedman on steel tariffs. +(HT @usher_andrew) https://t.co/lUph5vTW1A" +03/03/2018,Economists,@omzidar,Trump pushes Republicans to oppose crucial New York-New Jersey tunnel project https://t.co/HthOs6GYHS +03/03/2018,Economists,@omzidar,https://t.co/K7ceotzZOF +02/28/2018,Economists,@omzidar,"RT @DinaPomeranz: Today we had a meeting with PhD students about stress management. Here are some of the things that came up. + +What else…" +02/28/2018,Economists,@omzidar,https://t.co/0m5FXAjXFD +02/28/2018,Economists,@omzidar,"RT @steventberry: @florianederer A bunch of possible papers suggested at the end: + +""More work is, of course, needed to know their ultimate…" +02/28/2018,Economists,@omzidar,"RT @jenniferdoleac: This is part of the CJARS project, run by @Econ_Mike and Keith Finlay. I’m thrilled too! +https://t.co/XjqeDICiKs https:…" +02/27/2018,Economists,@omzidar,https://t.co/6xneTeySaw +02/27/2018,Economists,@omzidar,https://t.co/M4cfYKF28g +07/02/2018,Economists,@Noahpinion,"A survey said PhD graduates have much higher unemployment that official numbers suggest. + +Guess what? The survey's… https://t.co/Qp0xhvFk3j" +07/02/2018,Economists,@Noahpinion,"RT @TimAlberta: Spot on. No coincidence the immigration hawks are typically folks like King (Iowa), Cotton (Arkansas), Sessions (Alabama) t…" +07/02/2018,Economists,@Noahpinion,"RT @mattyglesias: For all the talk of liberal bubbles, it can’t be said enough that the anti-immigrant panic is being led by people who hav…" +07/02/2018,Economists,@Noahpinion,@eegoremotzkoe Under Trump????? Ygbsm +07/02/2018,Economists,@Noahpinion,@guacamolebio Niiice +07/02/2018,Economists,@Noahpinion,"RT @wojo_NYC: Wow.. but I always hear, “Democrats want completely open borders!!!!!!!” + +Look at 2008 - 2016. https://t.co/3Mtt2PI2pu" +07/02/2018,Economists,@Noahpinion,"Since the number of successful border crossings is about equal to the number of apprehensions, this means illegal b… https://t.co/SugPLq4sK7" +07/02/2018,Economists,@Noahpinion,@spooknine urite +07/02/2018,Economists,@Noahpinion,"RT @paulkrugman: Trade wars are good, and easy to win. Also, Peter Navarro assured us that nobody would retaliate. It's all good https://t.…" +07/02/2018,Economists,@Noahpinion,"RT @BennSteil: ""Trade wars are good, and easy to win""™ https://t.co/UEe560T50x" +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie Ah. Well that's a problem for sure, but the only crisis seems to be Trump's increased efforts to boot those people." +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie No, Max. It's just not a big problem. Are you sure that your real problem isn't racial demographics?" +07/02/2018,Economists,@Noahpinion,RT @GlobeMCramer: Awful scene on the orange line. A woman’s leg got stuck in the gap between the train and the platform. It was twisted and… +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie No, Max." +07/02/2018,Economists,@Noahpinion,@MaxieQuacksie Why do those people being here constitute a crisis? +07/02/2018,Economists,@Noahpinion,@cSchaez https://t.co/S8OMUI8bE8 +07/02/2018,Economists,@Noahpinion,"@S0uthie Yeah but in 2000 that was 500,000 people a year. Now it's 50,000. A tiny fraction of what it was." +07/02/2018,Economists,@Noahpinion,"@MaxieQuacksie We've got some issues, sure. But are we in worse shape than in 2010? 2005? 2000? 1995? + +No sir we ar… https://t.co/uI4Ls8XJFx" +07/02/2018,Economists,@Noahpinion,@spooknine Deep State? +07/02/2018,Economists,@Noahpinion,"RT @Noahpinion: There is no border crisis. + +There is no illegal immigration crisis. + +There is no low-skilled immigration crisis. + +There is…" +07/02/2018,Economists,@Noahpinion,@MaxieQuacksie Maybe you should think deeply about what's actually bothering you. +07/01/2018,Economists,@Noahpinion,@calvindeu Prison?? +07/01/2018,Economists,@Noahpinion,Replace ICE with an organization whose permanent mission is to go after truly serious criminals. https://t.co/EzpiF5DIV5 +07/01/2018,Economists,@Noahpinion,RT @jaysulk: What immigration crisis? @Noahpinion says illegal entry into the U.S. is poised to decline https://t.co/TRaiYqEHuA via @bopini… +07/01/2018,Economists,@Noahpinion,"@FoodieFong @MichaelFoster26 Yes, it is indeed ridiculous." +07/01/2018,Economists,@Noahpinion,@S0uthie We won't know til the ACS comes out for 2017. +07/01/2018,Economists,@Noahpinion,"@ItsThatBriGuy The former, since Trump has stepped up interdiction effort and apprehensions have fallen anyway." +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 @ModeledBehavior So if we take GDP from China, is that bad?" +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 @ModeledBehavior But the GDP of the two states changes, right?" +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 @ModeledBehavior Can you elaborate? I think you *might* be talking about institutions (which is wh… https://t.co/GRqF3o3dbz +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 @ModeledBehavior Indogenous? +07/01/2018,Economists,@Noahpinion,"@Beastlyorion It's not bad. The world needs sensible pundits right now, I think." +07/01/2018,Economists,@Noahpinion,@selk_peter Do you mean the seasonal variation? +07/01/2018,Economists,@Noahpinion,@Beastlyorion I am. +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 @ModeledBehavior Why not, Michael?" +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 I'm with the Keynesians. But Canada is definitely doing things right. +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 @tanu_kumar1 Skilled immigration boosts world GDP through clustering effects. But it may or may no… https://t.co/SAUAoqlkEG +07/01/2018,Economists,@Noahpinion,@DrFriction What? Renormalization groups?!! +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 Neoliberals argue that immigration IS the market clearing, and borders are the price control. + +Per… https://t.co/y2zK3HbMLb" +07/01/2018,Economists,@Noahpinion,@devintstewart They often claim to be... +07/01/2018,Economists,@Noahpinion,RT @sarah_edo: I miss the useless web. I miss your grandpa’s blog. I miss weird web art projects that trolled me. I miss fan pages for thin… +07/01/2018,Economists,@Noahpinion,@MichaelFoster26 But this is often good for both countries. Asymmetry can be good for everyone. And even when not g… https://t.co/bXFYOHtWIj +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 Is that just a fancy way of saying ""people think immigration hurts them, and people don't like things that hurt them""?" +07/01/2018,Economists,@Noahpinion,@AlanMCole Nah +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 In any case, ""skin in the game"" has become a ridiculous phrase that people just use to mean ""I'm the realest""." +07/01/2018,Economists,@Noahpinion,😂😂😂 https://t.co/LH14HAvuYe +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 Haha OK OK. Well, open borders is silly. But more immigration is good." +07/01/2018,Economists,@Noahpinion,How many people know that the TPP has been altered to remove much of the stuff people didn't like? https://t.co/uRfCdj9yII +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 I mean, OK, maybe there are some people who actually want open borders. I just kind of doubt it." +07/01/2018,Economists,@Noahpinion,"@MichaelFoster26 It's wrong, but it's also irrelevant because no one actually wants open borders (even the people w… https://t.co/kjkAguwIRU" +07/01/2018,Economists,@Noahpinion,@andrewbart More like 85%... +07/01/2018,Economists,@Noahpinion,Never. I only get frustrated by people's inability to cooperate. https://t.co/7z6cMJWFU6 +07/01/2018,Economists,@Noahpinion,@Gabriel_Asman yep +07/01/2018,Economists,@Noahpinion,"@rick_777 Yup, there's always a peak in summer." +07/01/2018,Economists,@Noahpinion,"@chrisFnicholson I know. And it's a good point. Just sayin'. Bernie came close to being Trump Lite on trade, and DS… https://t.co/2sgD8ilZq6" +07/01/2018,Economists,@Noahpinion,@Neoavatara Woulda coulda shoulda! +07/01/2018,Economists,@Noahpinion,@durpx5 Yeah but those ain't the ones from Central America. +07/01/2018,Economists,@Noahpinion,@HMAesq Yes there is. +07/01/2018,Economists,@Noahpinion,"@durpx5 How about if I combine that chart with this other one? Are you convinced now?? + +https://t.co/3ofwgStptl" +07/01/2018,Economists,@Noahpinion,@_jameshatfield_ I AM TRYING... :-) +07/01/2018,Economists,@Noahpinion,"There is no border crisis. + +There is no illegal immigration crisis. + +There is no low-skilled immigration crisis. + +T… https://t.co/lCDqLeRfRX" +07/01/2018,Economists,@Noahpinion,Good. More of this please. https://t.co/JICN5PGsqW +07/01/2018,Economists,@Noahpinion,"@_jameshatfield_ That happens sometimes for sure, but it isn't the norm." +07/01/2018,Economists,@Noahpinion,The Central American immigration mini-wave is already ending: https://t.co/1CyK89CXS0 +07/01/2018,Economists,@Noahpinion,"Republicans: ""We need to get the border under control!!!"" + +People who actually read the news and look at data: ""WE… https://t.co/uplkBg1nj2" +07/01/2018,Economists,@Noahpinion,"@asymptosis So, you think the average Chinese person would rather flee the country now than before 2000? + +Rethink t… https://t.co/UVadpHSxqJ" +07/01/2018,Economists,@Noahpinion,"@tailcalled The motte is the indefensible position, the bailey is the defensible but more modest position, no?" +07/01/2018,Economists,@Noahpinion,"@_jameshatfield_ I liked your first few Metallica albums but come on, man, this is silly" +07/01/2018,Economists,@Noahpinion,@_jameshatfield_ Good. +07/01/2018,Economists,@Noahpinion,@asymptosis So...how about that wave of economic refugees from China? +07/01/2018,Economists,@Noahpinion,@PapiiBrauii @ernietedeschi @ModeledBehavior I blame foreign intervention a HELL of a lot more than any free trade agreement!!! +07/01/2018,Economists,@Noahpinion,@foxyforecaster *any +07/01/2018,Economists,@Noahpinion,@danielharan @MikeW_CA https://t.co/KYAu5CePYg <-- yep +07/01/2018,Economists,@Noahpinion,@jasonvwells Welcome... +07/01/2018,Economists,@Noahpinion,How many people know that TPP suspended most of its IP provisions after Trump exited the deal? https://t.co/KYAu5CePYg +07/01/2018,Economists,@Noahpinion,@ernietedeschi @ModeledBehavior exactly +07/01/2018,Economists,@Noahpinion,"I hope ""end profit"" means stronger antitrust enforcement, leading to the zero-profit condition, rather than nationalization of industry..." +07/01/2018,Economists,@Noahpinion,"I hope that DSA folks see the harm inflicted on American workers by Trump's disastrous Trade War, and realize that… https://t.co/E5Xn2cIRUo" +07/01/2018,Economists,@Noahpinion,"@jasonvwells Yes, BUT, TPP mainly consists of trade between countries that are already rich, so it will not do this." +07/01/2018,Economists,@Noahpinion,@wheelguy123 I feel like the terrible results of Trump's Trade War are going to make a lot of people rethink the so… https://t.co/1pmNp7T7VO +07/01/2018,Economists,@Noahpinion,@MikeBenchCapon Probably. +07/01/2018,Economists,@Noahpinion,Heh yep this about says it https://t.co/p8JU6UgFBW +07/01/2018,Economists,@Noahpinion,@MikeW_CA ridiculous +07/01/2018,Economists,@Noahpinion,@ConvivialCynic It's not bad it's good +07/01/2018,Economists,@Noahpinion,@wheelguy123 I take it you're a fan of Trump's Trade War? +07/01/2018,Economists,@Noahpinion,"@nw3 This is NOT ""what we know about trade"". No. Not at all. This is not even close to an accurate characterization… https://t.co/OXpJbUNrTj" +07/01/2018,Economists,@Noahpinion,@matthoboken Yep +07/01/2018,Economists,@Noahpinion,@nw3 Do you actually know that? I don't think so... +07/01/2018,Economists,@Noahpinion,@wheelguy123 nah no +07/01/2018,Economists,@Noahpinion,@wheelguy123 It was unpopular but it's good policy +07/01/2018,Economists,@Noahpinion,@Offbrandlabour Nah they got changed +07/01/2018,Economists,@Noahpinion,@nw3 A) no B) why would anyone do that C) TPP wouldn't create unemployed steelworkers D) geographic mobility is way… https://t.co/86ZDNqAAcK +07/01/2018,Economists,@Noahpinion,@ReiMurasame Heh. I certainly hope so. +07/01/2018,Economists,@Noahpinion,@drmitchell85 I have some news... +07/01/2018,Economists,@Noahpinion,"RT @TheAtlantic: Photos from the nationwide “Families Belong Together” marches, from cities big and small, via @TheAtlPhoto: https://t.co/0…" +07/01/2018,Economists,@Noahpinion,"Note: TPP is good, and we should join it. It will not create refugee waves. https://t.co/VF4DzTct9p" +07/01/2018,Economists,@Noahpinion,"Venezuela is the motte, Denmark is the bailey? https://t.co/Gxn9EjjxfE" +07/01/2018,Economists,@Noahpinion,"RT @ne0liberal: I just had a wonderful conversation (and interviewed) @willwilkinson. I have a lot to think about after it, but one thing I…" +07/01/2018,Economists,@Noahpinion,RT @haroldpollack: Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Take it… +07/01/2018,Economists,@Noahpinion,RT @ne0liberal: https://t.co/QXKUnueVYe +07/01/2018,Economists,@Noahpinion,"""The Space Between Us"" demonstrates that racial threat is real. But what's the solution? https://t.co/dpc5ZCTff3" +07/01/2018,Economists,@Noahpinion,@clark_packard yeah I think so +07/01/2018,Economists,@Noahpinion,"@staphwriter Oh no way, German cards are much less reliable." +07/01/2018,Economists,@Noahpinion,@BlogMinor The Bolsheviks' (and Stalin's) main strength was holding the country together and fighting off attackers… https://t.co/xLWMThutQH +07/01/2018,Economists,@Noahpinion,"I know American cars have improved in quality, but Japanese cars are still the global standard. What are these pare… https://t.co/bives42W1h" +07/01/2018,Economists,@Noahpinion,@AskWrestlingGuy @greggentry1 @SFFFan42 Bye +07/01/2018,Economists,@Noahpinion,"@BlogMinor But it stalled. It was badly done. I think with German investment, Russia could have industrialized much… https://t.co/wMBl0WqUST" +07/01/2018,Economists,@Noahpinion,"@BlogMinor Maybe. I think it could have. The challenge was beating the White armies, though." +07/01/2018,Economists,@Noahpinion,@BlogMinor Point taken... +07/01/2018,Economists,@Noahpinion,@BlogMinor Not a Menshevik fan? +07/01/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 I can't explain things to people who turn everything they hear into word salad. +07/01/2018,Economists,@Noahpinion,@quinceedward3 yep +07/01/2018,Economists,@Noahpinion,"Because I believe in its thesis so strongly, I tried to write as critical a review as I could of @RyanDEnos's ""The… https://t.co/RpK5xelDX4" +07/01/2018,Economists,@Noahpinion,"@SheckyX No, not even close. Not even in the ballpark." +07/01/2018,Economists,@Noahpinion,"@SheckyX Perhaps you could elaborate? What do you mean, Shecky?" +07/01/2018,Economists,@Noahpinion,@SheckyX I have. +07/01/2018,Economists,@Noahpinion,@mackbmaine @KrangTNelson What about results? If we fuck people over and never face much consequences (e.g. Guatema… https://t.co/XBebjFa9Ys +07/01/2018,Economists,@Noahpinion,RT @DonCheadle: vote in numbers too big to manipulate. vote in numbers too big to manipulate. vote in numbers too big to manipulate. vote i… +07/01/2018,Economists,@Noahpinion,"RT @BennSteil: ""Trade wars are good, and easy to win""™ https://t.co/wocBE2Raa9" +07/01/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Yeah +07/01/2018,Economists,@Noahpinion,"@mackbmaine @KrangTNelson Yeah, Vietnam was our biggest fuckup for sure. Backing the dictators was a pretty bad thi… https://t.co/GmxgRPw4C3" +06/30/2018,Economists,@Noahpinion,@mackbmaine @KrangTNelson Did the later tweets in the thread make it more clear? +06/30/2018,Economists,@Noahpinion,RT @sooner930: This is a smart piece from @EricaGrieder. Part of me suspects that we will eventually come to view this period in history as… +06/30/2018,Economists,@Noahpinion,RT @CityLab: Millennials report themselves to be much happier in cities than people from older generations. https://t.co/MpIfQcOlra +06/30/2018,Economists,@Noahpinion,"@chrisedmond @mattyglesias I think he's just making fun of the banality of the term, which seems to minimize the im… https://t.co/oupRlx4VcA" +06/30/2018,Economists,@Noahpinion,"@joe_super0 Hmm...to that I'd say: +1) If Japanese imperialism was a response to Western imperialism, it was a poor… https://t.co/p7ZE3FgPW3" +06/30/2018,Economists,@Noahpinion,@chrisedmond @mattyglesias We know +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 Not a Keynesian, I see..." +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell buahahaha + +but also + +sorry..." +06/30/2018,Economists,@Noahpinion,@virgiltexas virgiltexas +06/30/2018,Economists,@Noahpinion,@globalistgraham accurate +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Well, 2000 nukes and a giant lake of oil and natural gas also helps!" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell But Russia has more...not that that matters if you blow up everyone, of course..." +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell On the eve of WW2 we had 6 aircraft carriers to Japan's 10. Over the cour… https://t.co/I8mIkV8vVX +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Agreed. And much of our economic ""power"" comes from selling highly valued… https://t.co/XfnWnLyggZ" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Military and economic. China's GDP is bigger than ours (by PPP numbers, a… https://t.co/ou4gkiYYgm" +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell Sure. But it was a big net minus for us. I think it was inevitable that w… https://t.co/d75bFZ7wKQ +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell Maybe. I think you might be overestimating us. I think Russia + China is… https://t.co/C1LwotZrON +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Well, with Europe and a bunch of East Asian countries solidly on our side… https://t.co/ugiCGpDQBf" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell And Iraq basically ended our reign as the world's hyperpower, weakened th… https://t.co/cGDEnUaCgC" +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta @anancientwell Really? I think both did. If the USSR hadn't made its own similar blunder… https://t.co/9DjaVUUSAf +06/30/2018,Economists,@Noahpinion,RT @JohnnyMcNulty: help my town has been captured by MS-14 it's one stronger than MS-13 and they are demanding Donald Trump send his strong… +06/30/2018,Economists,@Noahpinion,@WuTangCannabis Not a lot you +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell Whereas when we do bad stuff (Vietnam, Iraq, electing Trump), it makes us… https://t.co/Qzg2sVuSKt" +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta @anancientwell I mean, if there were anything that were neutral, maybe. But I think that… https://t.co/JiDjMgcCBu" +06/30/2018,Economists,@Noahpinion,"Real Business Cycle theory cannot fail, it can only be failed... https://t.co/r3hhdMgheu" +06/30/2018,Economists,@Noahpinion,@WuTangCannabis Heya +06/30/2018,Economists,@Noahpinion,"@DocHeatherB Hmm, yeah I can definitely see that." +06/30/2018,Economists,@Noahpinion,"@corrotta @negrosubversive @anancientwell I guess I can see why people interpreted ""stupid"" to mean ""morally bad"" i… https://t.co/LCBkWh30WI" +06/30/2018,Economists,@Noahpinion,"@ChrisSturr @swarajkumar224 I mean, communism got really unpopular, and we got popular. + +Until Iraq, of course." +06/30/2018,Economists,@Noahpinion,"@johnthejack @Frances_Coppola Oh no, because they'e not shouting into the void, they're shouting at my other readers." +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 But much smaller as a % of population. + +(And UK lost MANY more in WW1!!)" +06/30/2018,Economists,@Noahpinion,"@Frances_Coppola Yes. For me, it's not even wanting them out of *my* life, so much as wanting them out of my feed..." +06/30/2018,Economists,@Noahpinion,@MichaelFoster26 DON'T THINK I DON'T REALIZE THAT :D +06/30/2018,Economists,@Noahpinion,"@Frances_Coppola Not sadist, OCD! I imagine many people like being blocked...it makes them feel as if they won an a… https://t.co/uK8qiduQ9X" +06/30/2018,Economists,@Noahpinion,@Frances_Coppola Oh God yes. +06/30/2018,Economists,@Noahpinion,"@anancientwell @negrosubversive @corrotta Ugh. That's like saying ""I want to prove that the first time I mashed my… https://t.co/0jXmKKZGOo" +06/30/2018,Economists,@Noahpinion,@negrosubversive @corrotta No! Where did you read about that?? +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta We should have been permanently chastened by the failure in Vietnam. But we weren't, and… https://t.co/7sNUInZk6Y" +06/30/2018,Economists,@Noahpinion,"@ChrisSturr @swarajkumar224 Until the late 20th century, we were imperialist but much *less* imperialist than our r… https://t.co/J5ya532OmD" +06/30/2018,Economists,@Noahpinion,@NeoFunkanomics Pretty similar. Vietnam was our biggest blunder of the 21st century. But the USSR was doing even du… https://t.co/yzd3yluzcW +06/30/2018,Economists,@Noahpinion,"@negrosubversive @corrotta We were colonialist in the early 20th century, but the other powerful countries were muc… https://t.co/zHnmDbsev5" +06/30/2018,Economists,@Noahpinion,"Now, you might think national power is a stupid or bad goal, but it seems to me that the way in which the U.S. seem… https://t.co/BeO16VJmGS" +06/30/2018,Economists,@Noahpinion,"@CorbettMatt Good question. Treating its colonies like shit, for one, instead of giving them home rule etc. etc. Al… https://t.co/nGpauWqx8h" +06/30/2018,Economists,@Noahpinion,"But recently, we went to war in Iraq, when other countries had (wisely) mostly stopped engaging in such military ad… https://t.co/KvjehKpY2x" +06/30/2018,Economists,@Noahpinion,"The rising powers at the beginning of the 20th century were the U.S., Russia, Japan, and Germany, with Britain as a… https://t.co/v8YDoVAC02" +06/30/2018,Economists,@Noahpinion,"@swarajkumar224 Nazism, communism, the world wars." +06/30/2018,Economists,@Noahpinion,"@SFFFan42 @greggentry1 You can just use the ""mute conversation"" button you know" +06/30/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Our invasion of Europe was last-minute! +06/30/2018,Economists,@Noahpinion,@greggentry1 @SFFFan42 Civil War was 19th century! And compare our WWI/WWII casualties to all the other guys! +06/30/2018,Economists,@Noahpinion,"@greggentry1 @SFFFan42 We didn't start the wars, and came in late when our intervention could be decisive with few casualties." +06/30/2018,Economists,@Noahpinion,"@SFFFan42 Stupid, but not as stupid as communism, Nazism, and the world wars." +06/30/2018,Economists,@Noahpinion,"@philip_primeau I try to be realistic. There's the potential for worsening civil conflict, but we really have no wa… https://t.co/1mcgrUgADo" +06/30/2018,Economists,@Noahpinion,"@philip_primeau Maybe! But we're not at 70s levels yet, and the 70s troubles ended up being resolved rather quickly and easily." +06/30/2018,Economists,@Noahpinion,@WhinyBooker You're so full of shit they could grow crops in your hair :D +06/30/2018,Economists,@Noahpinion,@philip_primeau Could be. We haven't yet reached 1970s levels of civil strife. We had 2500 bombings in 1972 alone! +06/30/2018,Economists,@Noahpinion,@alex984123 yes +06/30/2018,Economists,@Noahpinion,"@doormatt26 Oh, we didn't, but Europe and Asia mostly chilled out and got more sensible while we decided to get les… https://t.co/49MzaJjPBX" +06/30/2018,Economists,@Noahpinion,"@TomAsh011 Well, the Iraq War for starters." +06/30/2018,Economists,@Noahpinion,"In the 20th century America succeeded because we stood back and let Europe and Asia do crazy stupid stuff, and then… https://t.co/X4Re8UwcQE" +06/30/2018,Economists,@Noahpinion,"@philip_primeau Social strife already exists. A forecast of social strife is a forecast of ""no change"" - an easy and safe forecast to make!" +06/30/2018,Economists,@Noahpinion,"I was going to delete this tweet and replace it with what I intended to tweet (i.e. ""Huge #FamiliesBelongTogether p… https://t.co/a1EG9JSnqs" +06/30/2018,Economists,@Noahpinion,#FamiliesBelongTogther +06/30/2018,Economists,@Noahpinion,"@aryelipman @accidentalflyer If you speak Japanese, yes." +06/30/2018,Economists,@Noahpinion,Trump sucked up to North Korea and they kept right on building nukes: https://t.co/m2Tq3ZNdeS +06/30/2018,Economists,@Noahpinion,"RT @ReformedBroker: Oh look, a delicate ecosystem crucial to American workers…. + +My opinions formed during the 1980’s combined with a lack…" +06/30/2018,Economists,@Noahpinion,"RT @ReformedBroker: Who could have known trade was so COMPLEX?? + +Toyota makes cars in Kentucky + +BMW in South Carolina + +Benz in Alabama + +GM…" +06/30/2018,Economists,@Noahpinion,@Keith_Not_Kevin Probably not...Central America is such a shitshow right now that we're getting normal folks rather… https://t.co/pYykkP6HH1 +06/30/2018,Economists,@Noahpinion,RT @rob_wsz: Any Japan guide that @jakeadelstein and @Noahpinion can agree on must be pretty solid. https://t.co/T0tgkni62m +06/30/2018,Economists,@Noahpinion,@ASuburbian I will always welcome Al Pacino to my country... +06/30/2018,Economists,@Noahpinion,@accidentalflyer @aryelipman NYC is a bit too crowded and loud and hectic for me. I think I would have loved it at age 23. +06/30/2018,Economists,@Noahpinion,@Keith_Not_Kevin To enemies of the regime? You bet... +06/30/2018,Economists,@Noahpinion,@AngryDaenjangny @jakeadelstein 笑 +06/30/2018,Economists,@Noahpinion,@jakeadelstein Ahaha yes I should add a note. +06/30/2018,Economists,@Noahpinion,"RT @jakeadelstein: A wonderful free guide to visiting Japan via @Noahpinion +However, do not bring a sword to my neighborhood. That would b…" +06/30/2018,Economists,@Noahpinion,HELL YEAH. https://t.co/F2F932xquG +06/30/2018,Economists,@Noahpinion,"""There's nothing you can do to me that Castro has not done."" +- Scarface https://t.co/k7RO3FA0tw" +06/30/2018,Economists,@Noahpinion,@bananalynnpb @karlbykarlsmith Bustamante wins +06/30/2018,Economists,@Noahpinion,@DucksForDuckGod Not all! Just some. +06/30/2018,Economists,@Noahpinion,"People are saying ""this strategy will work"", and of course it'll work...unless there's an out-and-out recession. On… https://t.co/iEZUyHdGOt" +07/01/2018,Economists,@Austan_Goolsbee,Did the article have a vacation from 2009-2013? https://t.co/YcUsMAwpiM +07/01/2018,Economists,@Austan_Goolsbee,These rules do not apply to the Supreme Court full stop. But I had read you as suggesting there was nothing in the… https://t.co/2LRMjwgVko +07/01/2018,Economists,@Austan_Goolsbee,"Says disqualif. if “the judge or the judge’s spouse, or a person related to either within the third degree of relat… https://t.co/Jr8GK6lsFm" +07/01/2018,Economists,@Austan_Goolsbee,RT @cecmunoz: Go @MelodyCBarnes !!! https://t.co/PuOAfLt9Tm +07/01/2018,Economists,@Austan_Goolsbee,RT @CFCamerer: Feel Molly’s pain. Fun fact from economics: Market power raises prices *and* lowers product quality https://t.co/nOkag5WJ96 +07/01/2018,Economists,@Austan_Goolsbee,make em carry their own stuff. No increase in our workload. https://t.co/JolJFQ0Ube +07/01/2018,Economists,@Austan_Goolsbee,"RT @MarkWarner: “The White House promised '70 percent' of the tax cut would go to workers. It didn't.” +https://t.co/BENcB1drDy" +06/30/2018,Economists,@Austan_Goolsbee,RT @ryanbedwards: Not just the World Cup https://t.co/SRxvu1VUom +06/30/2018,Economists,@Austan_Goolsbee,"RT @kairyssdal: ""ABOARD AIR FORCE ONE, June 29 (Reuters) - Speaking to reporters aboard Air Force One... +Trump said the United States +has b…" +06/30/2018,Economists,@Austan_Goolsbee,"RT @codykeenan: Not quite as slick as the boss, but I put everything into this one for the graduates - and for everybody looking for someth…" +06/30/2018,Economists,@Austan_Goolsbee,"RT @TheEconomist: The term ""skyscraper"" was first used to describe towers that rose on the shores of Lake Michigan https://t.co/zXopIHfH1n" +06/30/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: on tax-cut effects so far: “spending on equipment is lower than it was at end of last year, and overall business investme…" +06/30/2018,Economists,@Austan_Goolsbee,RT @2beeornottobe: @JudgeJeanine U were doing SO well but NOW went 2 the GUTTER with bolshy bib boy @Austan_Goolsbee? U & @FoxNews R out o… +06/30/2018,Economists,@Austan_Goolsbee,"RT @MarshallAlums: Kicking off the #Marshall_Innovation #AMS2018 at @Stanford! + +Tune in to @UKin_SF tonight at 8 PM PT for a Facebook Live…" +06/29/2018,Economists,@Austan_Goolsbee,RT @omar_aok: This security tape of a botched robbery is masterpiece of silent cinema. ⭐⭐⭐⭐⭐ https://t.co/9U0rfWYNLh +06/29/2018,Economists,@Austan_Goolsbee,RT @demeralda: @DinaPomeranz @Austan_Goolsbee @ChicagoBooth @DurRobert I wish when I was studying anthropology I had taken more economics c… +06/29/2018,Economists,@Austan_Goolsbee,RT @DinaPomeranz: Excellent overview by @ChicagoBooth professor Marianne Bertrand on how econ increasingly embraces insights from other soc… +06/29/2018,Economists,@Austan_Goolsbee,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Economists,@Austan_Goolsbee,"RT @cowenconvos: This week’s Revisionist History features @tylercowen @asymmetricinfo @CliffordAsness and (of course) @Gladwell, all of wh…" +06/29/2018,Economists,@Austan_Goolsbee,"RT @BerkeleyHaas: We're thrilled to announce that Prof. Laura Tyson, renowned economist, has been named interim dean of our business school…" +06/29/2018,Economists,@Austan_Goolsbee,RT @lizzieohreally: I got to go home tonight from the last real day of a journalism job that l loved. In one piece. And the only real reaso… +06/28/2018,Economists,@Austan_Goolsbee,go Brent Neiman! https://t.co/raMZ163CMV +06/28/2018,Economists,@Austan_Goolsbee,"RT @SecSmithEllis: A week ago today, my father died. He left me a powerful history of our family and strong faith. I’ll miss him dearly, bu…" +06/27/2018,Economists,@Austan_Goolsbee,RT @MSNBCPR: Congratulations to @SRuhle and her @MSNBC Live team on their 2-year anniversary! #GoodNewsRuhles https://t.co/RE48MhfG58 +06/27/2018,Economists,@Austan_Goolsbee,RT @heckmanequation: Professor Heckman is speaking in DC tomorrow at the @edcommission National Forum on #EdPolicy. This forum brings toget… +06/27/2018,Economists,@Austan_Goolsbee,"RT @Sandi_P_Allen: Word, @Austan_Goolsbee. This article confirms what you said all along. https://t.co/FLXRv0A2vX" +06/27/2018,Economists,@Austan_Goolsbee,RT @jrpsaki: Putting political analysis aside for a moment. As one of many proud alumni from his office—@JoeCrowleyNY is one of the best hu… +06/26/2018,Economists,@Austan_Goolsbee,"RT @DeadYasser: @Austan_Goolsbee still carrying Obama’s water, I see. Just can’t accept President Trump, can you? With tariffs imposed by M…" +06/26/2018,Economists,@Austan_Goolsbee,RT @timothy_krieg: @DENCO5280 @Austan_Goolsbee Austin bless your heart. You were a terrible economic advisor so you probably need to just h… +06/26/2018,Economists,@Austan_Goolsbee,"RT @jodikantor: Huge honor: ⁦winning a Loeb the same night as my husband, @nytimes Your Money columnist ⁦@ronlieber⁩ + +Bigger honor: watchi…" +06/26/2018,Economists,@Austan_Goolsbee,"RT @NPRinskeep: ""The right’s revulsion against a black president targeted by birther conspiracy theories is not the same as the left’s revu…" +06/26/2018,Economists,@Austan_Goolsbee,"RT @PhilipRucker: “I think we’re in a renaissance of hard-news reporting, and I want to see this through” — @mitchellreports is an inspirat…" +06/26/2018,Economists,@Austan_Goolsbee,"Depending where they move these jobs, the tax bill likely gives Harley-Davidson a tax cut for doing this. https://t.co/Pq2TwGMmkA" +06/26/2018,Economists,@Austan_Goolsbee,RT @frankthorp: Sen @BenSasse: “The problem isn’t that Harley is unpatriotic - it’s that tariffs are stupid.” https://t.co/oAE0Z4EvF8 +06/26/2018,Economists,@Austan_Goolsbee,RT @steveliesman: The Dow has fallen 1% or more 17 days this year like yesterday (-1.33%). CNBC finds 8 of those 17 down days were sparked… +06/26/2018,Economists,@Austan_Goolsbee,"RT @Birdmischief: Okay, I want to see @Austan_Goolsbee on TV righteously snarking his way across my TV pretty much every weeknight until th…" +06/26/2018,Economists,@Austan_Goolsbee,RT @giuliapines: “This is a plan to lose weight by chopping off your feet.” OMG @Austan_Goolsbee on @TheLastWord tonight. +06/25/2018,Economists,@Austan_Goolsbee,Spoiler: it’s by my @ChicagoBooth colleague Eric Budish and shows that the vulnerability to attack depends on the f… https://t.co/idXzuEdgd4 +06/25/2018,Economists,@Austan_Goolsbee,Immigration court is intentionally being starved of resources to slow immigration. Now that itself becomes the argu… https://t.co/Q5ePEPuaTJ +06/25/2018,Economists,@Austan_Goolsbee,"RT @robertwolf32: “Every recession of the past 60 years has been preceded by an inverted yield curve, according to research from the San Fr…" +06/25/2018,Economists,@Austan_Goolsbee,"RT @Mr_DrinksOnMe: Interviewer: Do you think Brazil's 1970 team can beat today's Argentina? + +Pelé: Yes. + +Interviewer: By how much? + +Pelé: 1…" +06/24/2018,Economists,@Austan_Goolsbee,"RT @Michael_Kades: Voice search and response raises a whole new set of competitive issues, which @linamkhan is right to point out. @Austan_…" +06/24/2018,Economists,@Austan_Goolsbee,Hahahahaha https://t.co/QL46VVhRwY +06/22/2018,Economists,@Austan_Goolsbee,"RT @mikedebonis: And you may find yourself -- in the House of Representatives! +And you may find yourself -- in an endless debate! +And you m…" +06/22/2018,Economists,@Austan_Goolsbee,"RT @RedIsDead: Koko the gorilla once ripped a sink out of the wall and, when her keepers confronted her about it, she blamed her kitten, si…" +06/22/2018,Economists,@Austan_Goolsbee,! https://t.co/EcMYlVgHvx +06/22/2018,Economists,@Austan_Goolsbee,"RT @anneapplebaum: as I've said, expect a trade. We stop holding military exercises in Europe. In exchange, we allow Russia to keep Crimea.…" +06/22/2018,Economists,@Austan_Goolsbee,"RT @chrislhayes: First time illegal entry into the United States is a misdemeanor. + +Lying on or omitting materially relevant information fr…" +06/22/2018,Economists,@Austan_Goolsbee,RT @zittrain: The Supreme Court has reversed its 1992 decision limiting collection of sales tax by out-of-state merchants. The '92 decision… +06/21/2018,Economists,@Austan_Goolsbee,"RT @CliffordAsness: Sad. Let’s pass tariffs then make up conspiracies when the damage starts. Even if he’s being honest, his being shocked…" +06/20/2018,Economists,@Austan_Goolsbee,"RT @Arcanenaut: @trish_regan @Austan_Goolsbee @RepMikeRogersAL @BlakeBurman @JudgeTedPoe @SusanLiTV @connellmcshane @Harlan @Jehmu Trish, p…" +06/20/2018,Economists,@Austan_Goolsbee,RT @Geoffrey_JH3: @trish_regan @Austan_Goolsbee @RepMikeRogersAL @BlakeBurman @JudgeTedPoe @SusanLiTV @connellmcshane @Harlan @Jehmu Don’t… +06/20/2018,Economists,@Austan_Goolsbee,RT @danpfeiffer: This was a fun chance to nerd out about books with ⁦@EW⁩ and talk about my new book out this week https://t.co/jfpaU0NpQZ +06/20/2018,Economists,@Austan_Goolsbee,"RT @RenitaDYoung: Fed's Powell says jobs market not too tight, repeats case for gradual rate hikes via @Reuters https://t.co/Dc9gp2tbos" +06/20/2018,Economists,@Austan_Goolsbee,RT @BeckyQuick: It's not fake news. It's a balanced description of what is happening with some historical and medical context. Go back unde… +06/20/2018,Economists,@Austan_Goolsbee,RT @AlyssaMastro44: true friendship means saying “read Yes We Still Can first bc it just came out today!!!” 📚🌈💯 @danpfeiffer https://t.co/S… +06/20/2018,Economists,@Austan_Goolsbee,I disagree. It’s clearly worse. Katrina response revealed incompetence and indifference. This is an intentional de… https://t.co/5MCs0mzzNo +06/20/2018,Economists,@Austan_Goolsbee,"RT @AnnaLucyShea: I have never heard of any country systematically separating parents from children as a default policy, in order to deter…" +06/20/2018,Economists,@Austan_Goolsbee,"RT @jiveDurkey: you sitting down? + +here’s Corey Lewandowski mockingly saying “womp womp” to the story of a 10-year-old girl with Down Syndr…" +06/19/2018,Economists,@Austan_Goolsbee,"RT @jk_rowling: ‘Also, the president doesn’t have a moustache.’ https://t.co/zI7RVuDI1q" +06/19/2018,Economists,@Austan_Goolsbee,RT @stevesilberman: Rosaries confiscated from immigrants at the Arizona/Mexico border. [via @MikeOLoughlin] https://t.co/OP0jLhU3m1 https:/… +06/19/2018,Economists,@Austan_Goolsbee,RT @danielsgoldman: The irony of the Trump admin enforcing misdemeanor unlawful entry because “all laws must be enforced” when he pardoned… +06/19/2018,Economists,@Austan_Goolsbee,"Yes, but with me sayng I would pay him $20 if he could hit an unguarded shot and him repeatedly trying but failing. https://t.co/G6Uc3KQ0k2" +06/19/2018,Economists,@Austan_Goolsbee,RT @emrazz: An account from an attendant aboard a flight transferring 16 unaccompanied children who were taken from their parents at the bo… +06/19/2018,Economists,@Austan_Goolsbee,RT @kevinkrim: Excellent @SquawkCNBC auction ending in about 90 minutes! Meet @BeckyQuick @JoeSquawk @andrewrsorkin and support a great cau… +06/19/2018,Economists,@Austan_Goolsbee,"RT @timkmak: It's incredible that this is happening: + +The Commerce Secretary, aware of a coming negative story about his links to a Kremli…" +06/19/2018,Economists,@Austan_Goolsbee,RT @AlyssaMastro44: may our landscape be dotted with barack obama elementary schools ✌🏼 https://t.co/k739UyK1Pn +06/18/2018,Economists,@Austan_Goolsbee,RT @vkhosla: I just published “‘Venture Assistance’: A philosophical view of what entrepreneurs need beyond just funding…” https://t.co/eGW… +06/18/2018,Economists,@Austan_Goolsbee,RT @ACraig2031: @Popehat Who wore it better? https://t.co/qYCfZcXNZc +06/18/2018,Economists,@Austan_Goolsbee,RT @neeratanden: Yes. They wrote cage. In America. https://t.co/ONI6Anyev6 +06/18/2018,Economists,@Austan_Goolsbee,So we’re just doing it for fun? https://t.co/j7E6EEdrvD +06/18/2018,Economists,@Austan_Goolsbee,"RT @brianefallon: This is Chad Readler. +He is Jeff Sessions' right-hand guy at DOJ who is advocating for the family separation policy. +Now…" +06/18/2018,Economists,@Austan_Goolsbee,"RT @KenDilanianNBC: Laura Bush: “These images are eerily reminiscent of the Japanese American internment camps of World War II, now conside…" +06/18/2018,Economists,@Austan_Goolsbee,"Are there empirical pants, too? https://t.co/3idXgyyMQg" +06/17/2018,Economists,@Austan_Goolsbee,RT @BillKristol: Another reason for alarm: It's increasingly clear Trump apologists will excuse almost anything. Former constitutionalists… +06/17/2018,Economists,@Austan_Goolsbee,@jimmykimmel you should have called me https://t.co/7HuXwM6y6Z +06/17/2018,Economists,@Austan_Goolsbee,RT @Mimirocah1: of materially prejudicing an adjudicative proceeding in the matter.” How do these outrageous stamens not violate that rule… +06/17/2018,Economists,@Austan_Goolsbee,RT @petersagal: Married. https://t.co/bpEFIHLxL5 +06/17/2018,Economists,@Austan_Goolsbee,Agreed https://t.co/yMRrWswWOE +06/17/2018,Economists,@Austan_Goolsbee,"RT @claydumas: This reminds me of my fave @Austan_Goolsbee story, wherein he goads his college debate rival, Ted Cruz, into bricking one th…" +06/17/2018,Economists,@Austan_Goolsbee,RT @tripgabriel: It was Stephen Miller who pushed the Trump admin to use the ‘nuclear option’ of separating children from parents at the bo… +06/17/2018,Economists,@Austan_Goolsbee,RT @jpodhoretz: Stephen Miller is a pestilence https://t.co/ohvNO1Ojns +06/16/2018,Economists,@Austan_Goolsbee,"“That’s what the money is for.” + +—Don Draper https://t.co/532dAaMSQz" +06/16/2018,Economists,@Austan_Goolsbee,RT @ProfFionasm: And there were intellectual property protections in there too - another complaint the Trump admin has. https://t.co/UvE0KV… +06/16/2018,Economists,@Austan_Goolsbee,"RT @SteveRattner: If Trump had read the TPP document before withdrawing, he’d have noticed that Canada agreed to lift dairy tariffs & impor…" +06/16/2018,Economists,@Austan_Goolsbee,"RT @jpodhoretz: The problem with Comey wasn't ""bias."" The problem with Comey is that he interfered in the political process--twice-- and di…" +06/16/2018,Economists,@Austan_Goolsbee,RT @Eric_Lindros: @Austan_Goolsbee So continue to tickle sweet nothings into Warren Buffet's ear you feckless pigling suckling at the power… +06/16/2018,Economists,@Austan_Goolsbee,"Westley: You're that smart? + +Vizzini: Let me put it this way. Have you ever heard of Plato, Aristotle, Socrates?… https://t.co/lZUIZPV2ni" +06/16/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: very few people in our business as classy as Hampton Pearson, my ⁦@CNBC⁩ colleague who retired today. a gentleman who has…" +06/16/2018,Economists,@Austan_Goolsbee,Like one of those nightmare psychology experiments from the 1950s that led to human subjects rules. WTF is wrong wi… https://t.co/VLTaHZ1WQQ +06/16/2018,Economists,@Austan_Goolsbee,"RT @John_N_Friedman: Its official - Raj Chetty is coming back to Harvard! + +With the band back together on the East Coast, look out out for…" +06/16/2018,Economists,@Austan_Goolsbee,has there ever been an F Troop remake? https://t.co/7sEGn3GfMI +06/16/2018,Economists,@Austan_Goolsbee,Like one of those nightmare psychology experiments from that led to human subjects rules. WTF is wrong with us? https://t.co/BvFgsCQ3Iw +06/16/2018,Economists,@Austan_Goolsbee,RT @metsfanmax: The @Rockies and @Indians both liked my tweet...I'd like to thank the academy and give a shout out to mom @BarbaraFedida co… +06/16/2018,Economists,@Austan_Goolsbee,"RT @BarbaraFedida: Whatever you’re giving me credit for, I am certain you’re being humble. It’s all you @metsfanmax 😘 https://t.co/0vaB4S5f…" +06/15/2018,Economists,@Austan_Goolsbee,RT @shomikdutta: @NickABC13 @tedcruz @jimmykimmel Paging @Austan_Goolsbee +06/15/2018,Economists,@Austan_Goolsbee,RT @StrautMike: Another group of young Chicago leaders off to do big things—Happy graduation to the Ariel Community Academy Class of 2018!… +06/15/2018,Economists,@Austan_Goolsbee,RT @hughhewitt: Mr. @POTUS: Family separation is not the result of law but the DOJ’s choice concerning how to charge and how to detain. It… +06/15/2018,Economists,@Austan_Goolsbee,RT @HariSevugan: Cc @Austan_Goolsbee https://t.co/MiG8TsPGaJ +06/14/2018,Economists,@Austan_Goolsbee,RT @danpfeiffer: Perhaps now it’s time for everyone to stop indulging the fantastical conspiracy theories of the right and focus on the act… +06/14/2018,Economists,@Austan_Goolsbee,That’s not how they promised it https://t.co/iTFBZzPzDr +06/14/2018,Economists,@Austan_Goolsbee,RT @DinaPomeranz: My former PhD advisor @Cutler_econ attempted to estimate the impacts of weakening the US Environmental Protection Agency… +06/14/2018,Economists,@Austan_Goolsbee,"RT @CREWcrew: You’re. Not. Allowed. To Use. Your. Public. Office. For. Your. Personal. Enrichment. Or your wife’s. +https://t.co/xDtsnMrcXm" +06/14/2018,Economists,@Austan_Goolsbee,"RT @JohnJHarwood: former Wells Fargo CEO Richard Kovacevich just told my @cnbc colleagues that Q2 2018 economic growth may reach 4%, and ""t…" +06/14/2018,Economists,@Austan_Goolsbee,RT @kasie: Infant ripped from mother's arms while she was breastfeeding the baby at border detention center; mother handcuffed for resistin… +06/14/2018,Economists,@Austan_Goolsbee,"RT @steventberry: At the same event, my distinguished Yale Econ colleague Bill Nordhaus was awarded the prize in the field of Climate Scien…" +06/14/2018,Economists,@Austan_Goolsbee,"RT @steventberry: Not a great photo, but a great day for empirical IO as Bresnahan, Pakes and Porter are awarded the BBVA Frontiers of Know…" +06/13/2018,Economists,@Austan_Goolsbee,Isn’t the relevant comparison what’s the most efficient place plus the transportation costs rather than every place… https://t.co/mRNh2ZVwMJ +06/13/2018,Economists,@Austan_Goolsbee,"RT @robertwolf32: @Austan_Goolsbee Rising mortgage rates, gas prices up , trade wars adding to new tariffs ..... all hitting hard working A…" +06/13/2018,Economists,@Austan_Goolsbee,RT @BFischerMartin: Working with Tim Russert was the honor of a lifetime. He was taken too soon - 10 years ago today. My good friend @erin… +06/13/2018,Economists,@Austan_Goolsbee,Remember the time you withdrew from the Iran deal and oil prices shot up (and haven’t come down)? https://t.co/nvU6atzsLY +06/13/2018,Economists,@Austan_Goolsbee,"RT @IsaacDovere: the North Korean version is that Trump already agreed to lift sanctions, and that the North Koreans won't have to move on…" +06/13/2018,Economists,@Austan_Goolsbee,"RT @maddow: I think the word is ""camps."" Prison camps, for the kids. + +https://t.co/P4he3iUzLT" +06/13/2018,Economists,@Austan_Goolsbee,RT @ChrisLu44: Great to catch up with former Obama WH photographer @PeteSouza at his book event tonight. So many wonderful stories and phot… +06/13/2018,Economists,@Austan_Goolsbee,RT @R_Thaler: Thanks AEA! Anyone looking for the published version of my Nobel lecture it is now available free on the link here. Who say… +06/13/2018,Economists,@Austan_Goolsbee,I did 9hrs a day here in the fall https://t.co/IIvTJN3y9x +06/13/2018,Economists,@Austan_Goolsbee,RT @NickTimiraos: Very interesting look at the deflationary impact of online retailing with research from @Austan_Goolsbee https://t.co/ruQ… +06/12/2018,Economists,@Austan_Goolsbee,"RT @SRuhle: A BIG congrats to my dear friend @NicolleDWallace!! +https://t.co/1MAJcg5opl" +06/12/2018,Economists,@Austan_Goolsbee,The prices online are falling https://t.co/8LFEktzlSQ +06/12/2018,Economists,@Austan_Goolsbee,RT @UofCBoothNews: Research by @Austan_Goolsbee et al. shows prices for goods sold online rose much more slowly from 2014 to 2017 than indi… +06/12/2018,Economists,@Austan_Goolsbee,"RT @M_C_Klein: Of All Countries Threatened With Tariffs, Canada Makes the Least Sense + +https://t.co/rCIAHeoq04 + +<--some thoughts on the rec…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @JenGranholm: Japan Times: + +""Picking fights with friends is not making America great again. Rather, it is weakening the foundation of Am…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @CBSThisMorning: ""What we have is a freeze for freeze. The North Koreans are freezing their ICBM & nuclear tests & the Americans are fre…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @DianeSwonk: I have known Larry for better part of 25 years. We have had many debates over the economy, always polite, civil, and kind.…" +06/12/2018,Economists,@Austan_Goolsbee,"RT @steventberry: In my case, one doesn't need the all caps to convince me. https://t.co/mkDB0hDcYi" +06/12/2018,Economists,@Austan_Goolsbee,"We are rooting for you @larry_kudlow. + +No matter what your political stripe, Larry is supremely decent person." +06/11/2018,Economists,@Austan_Goolsbee,RT @AwardsDarwin: Don’t take an animal from it’s mother. 😡 https://t.co/j7i7djBNee +06/11/2018,Economists,@Austan_Goolsbee,"RT @davidfrum: So many fascinating details in this story, but not least: Trump was repeatedly told that shredding presidential documents is…" +06/11/2018,Economists,@Austan_Goolsbee,"RT @secretgcd: @ddale8 There's a difference between buying a foreign car for $20,000 and throwing $20,000 into an incinerator, but I don't…" +06/11/2018,Economists,@Austan_Goolsbee,"RT @anniekarni: Trump has a habit of ripping up all of his paper -- his own ""filing system"" of sorts. Officials working in records manageme…" +06/11/2018,Economists,@Austan_Goolsbee,He’s not doing that https://t.co/zVctCjM4F0 +06/10/2018,Economists,@Austan_Goolsbee,"RT @JimPethokoukis: Gang, Trump has been wrong on trade for 40 years. Wrong on Japan. Wrong on Reagan. Wrong on trade deficits. Wrong on N…" +06/10/2018,Economists,@Austan_Goolsbee,RT @CommsDirector: The reference here is unavoidable. https://t.co/gNWDqHo2EV +06/10/2018,Economists,@Austan_Goolsbee,RT @gabriel_zucman: The great ⁦@RichardRubinDC⁩ covers our new estimates of global profit-shifting to tax havens: $600 billion and counting… +06/10/2018,Economists,@Austan_Goolsbee,RT @ObsoleteDogma: This is the former prime minister of Belgium —> https://t.co/0JANNGEDma +06/10/2018,Economists,@Austan_Goolsbee,"Before invoking God’s wrath on someone else, perhaps Navarro should reflect on his administration and the Bible. Th… https://t.co/Aday8jiRLF" +06/10/2018,Economists,@Austan_Goolsbee,RT @RichardHaass: The unraveling of G-7 summit works in NK’s favor as @realDonaldTrump will not want to bust up 2 summits in a row lest peo… +06/10/2018,Economists,@Austan_Goolsbee,"RT @DougRediker: I am going to re-tweet this ad nauseam: US Constitution Article I, Section 8 (3) grants Congress the right “to regulate Co…" +06/10/2018,Economists,@Austan_Goolsbee,Other than there being more of them than any other age group? https://t.co/ImwvPPL1Ta +06/10/2018,Economists,@Austan_Goolsbee,She is a hero (and I’ve been in the office next door to her for more than a decade so I would know) https://t.co/WbdtRHmDLt +06/10/2018,Economists,@Austan_Goolsbee,"RT @jmartNYT: QUEBEC CITY — President Trump abruptly upended two days of global economic diplomacy late Sat,refusing to sign a joint statem…" +06/10/2018,Economists,@Austan_Goolsbee,It was a migraine https://t.co/H0X2zJS5hB +06/10/2018,Economists,@Austan_Goolsbee,@LynchpinL @ChicagoBooth @crampell He married up +06/09/2018,Economists,@Austan_Goolsbee,RT @paulkrugman: This is absolutely boneheaded analysis; VATs don't convey any competitive advantage: https://t.co/Ahv3mONkhC. But if Trump… +06/09/2018,Economists,@Austan_Goolsbee,RT @cbouzy: Scott Pruitt on his way to pickup his dry cleaning and special lotion. https://t.co/lAMty9pqXL +06/09/2018,Economists,@Austan_Goolsbee,"RT @billingsley313: My pregnant wife texted me a selfie in a new dress and asked ""Does it make my butt look big?"" I texted back ""Noo!"" My p…" +06/09/2018,Economists,@Austan_Goolsbee,RT @theclaireliu: The Institute of Politics (@UChiPolitics) was undoubtedly one of the best things of my 4 years at @UChicago...huge thanks… +06/09/2018,Economists,@Austan_Goolsbee,"RT @R_Thaler: OK, sorry that is behind the @AEAjournals paywall. Meanwhile, here are links to the lecture video https://t.co/usfI9Q3o4G (lo…" +06/08/2018,Economists,@Austan_Goolsbee,"RT @blakehounshell: Every night, @NicolleDWallace thanks her guests over Twitter. Just a nice little thing in this un-nice age." +06/08/2018,Economists,@Austan_Goolsbee,RT @EddyElfenbein: https://t.co/IDM2CtmKNY +06/08/2018,Economists,@Austan_Goolsbee,It’s just the tech version of @R_Thaler’s observation that way too many people bet on the longest shot at the horse… https://t.co/u8BHPcjCzR +06/08/2018,Economists,@Austan_Goolsbee,"RT @JeffJacksonNC: What if hundreds of thousands of North Carolinians couldn't afford health care and the federal govt said, ""Ok we'll pay…" +06/08/2018,Economists,@Austan_Goolsbee,RT @JayCShambaugh: Russia is not a top ten economy in terms of size. Nor is it particularly rich. I believe Brazil has a larger GDP and rou… +06/08/2018,Economists,@Austan_Goolsbee,Not if it came from U Chicago it didn’t https://t.co/icgnZCzx1C +06/08/2018,Economists,@Austan_Goolsbee,RT @RichLowry: I was one of the many young people who’ve worked as a research assistant for Charles Krauthammer over the yrs. He’s even mor… +06/08/2018,Economists,@Austan_Goolsbee,"RT @kurteichenwald: What Putin wanted in 2016, according to foreign intel sources I spoke to that year: +1. Strained relations in NATO. +2.…" +06/08/2018,Economists,@Austan_Goolsbee,Off top of my head: 1) arpaio pardon=disgusting 2) pardons signaling to potential witnesses against him=creepy 3) p… https://t.co/nFVNeeJmOD +06/08/2018,Economists,@Austan_Goolsbee,Do you think if someone told the president about the injustices/humiliations Biff Tannen has endured since 1955 (in… https://t.co/JdLkjEfA4q +06/08/2018,Economists,@Austan_Goolsbee,RT @TAPolicy: Is the Internet Keeping #Inflation Low? @MotherJones cites #TAPscholar @Austan_Goolsbee's latest for @nberpubs: https://t.co/… +06/08/2018,Economists,@Austan_Goolsbee,That is a good idea! https://t.co/s6E6IawVFL +06/08/2018,Economists,@Austan_Goolsbee,RT @nberpubs: The role of public policy in an AI-intensive economy and the challenges of enacting Universal Basic Income as a response to w… +06/07/2018,Economists,@Austan_Goolsbee,"You haven’t been paying much attention, I see https://t.co/w6ztClhzu2" +06/07/2018,Economists,@Austan_Goolsbee,Can we get a fact check on the level of respect for career women? https://t.co/mlumebs8m3 +06/07/2018,Economists,@Austan_Goolsbee,!!! https://t.co/IcXOgYiJCv +06/07/2018,Economists,@Austan_Goolsbee,RT @youngvulgarian: Two auto-replying bots have now been stuck in a loop with each other for several hours and the resulting thread reads l… +06/07/2018,Economists,@Austan_Goolsbee,"RT @ChadBown: WOW. STEEL. ALUMINUM. AUTOS. + +Bipartisan legislation requiring Trump submit to Congress any proposal to adjust imports — ie,…" +06/07/2018,Economists,@Austan_Goolsbee,RT @jaketapper: I blame @Alanis https://t.co/IOqrvgka4O +06/07/2018,Economists,@Austan_Goolsbee,Chicago architecture cruise at #2 is absolutely correct but only if you take the legit Chicago Architecture Foundat… https://t.co/W2wspkZZq2 +06/07/2018,Economists,@Austan_Goolsbee,RT @LauBooneEco: Happy and proud! https://t.co/9U7jMPq1QH +06/07/2018,Economists,@Austan_Goolsbee,"RT @AdobeInsights: E-commerce trends, online inflation/deflation, ""smart"" product trends, these are just a few of the great new insights th…" +06/07/2018,Economists,@Austan_Goolsbee,RT @LHSummers: Remembering Julio Rotemberg: A close friend who for me embodied the best in a scholarly life. https://t.co/dCBMPnzBOB +06/06/2018,Economists,@Austan_Goolsbee,RT @AndrewR_Physics: Wait until you find out about academics... https://t.co/FtAbs3PDf3 +06/06/2018,Economists,@Austan_Goolsbee,"RT @greg_ip: If Trump revives coal, it will extract a steep price in both dollars, and lives- of the miners he wants to help. My column on…" +06/06/2018,Economists,@Austan_Goolsbee,RT @BruceBartlett: That $2 trillion tax give-away for the ultra-wealthy would have gone a long way toward keeping Social Security and Medic… +06/06/2018,Economists,@Austan_Goolsbee,"RT @LHSummers: In 2008, when China’s current account balance was approaching 10 % of GDP, it was a central American priority to bring it do…" +06/06/2018,Economists,@Austan_Goolsbee,RT @SRuhle: It’s official.... @AliVelshi & I are NO LONGER newlyweds... happy birthday @VelshiRuhle! https://t.co/44oNQ1cA7c +06/05/2018,Economists,@Austan_Goolsbee,"RT @Deadspin: Trump unable to remember words to ""God Bless America"" at replacement event he commissioned to prove his patriotism: https://t…" +06/05/2018,Economists,@Austan_Goolsbee,Yoda grammarize it or else no one cares https://t.co/jF4NVlTjDU +06/05/2018,Economists,@Austan_Goolsbee,RT @crampell: Pruitt asked his taxpayer-funded executive scheduler at the EPA to set up a call with the Chick-Fil-A chairman to discuss hav… +06/05/2018,Economists,@Austan_Goolsbee,"Read the research and known facts before proposing a theory. + +e.g, Romer and Romer +https://t.co/UztGqjWIuS https://t.co/RY44usTU4t" +06/05/2018,Economists,@Austan_Goolsbee,RT @jbbecon: My forthcoming book on antitrust will have a chapter on harms to innovation and a chapter on harms to suppliers and workers. O… +06/05/2018,Economists,@Austan_Goolsbee,RT @BridgetGainer: Thank you @ChicagolandCmbr for the opportunity to share story of (re: recruit business parnters for!) Chicago Apprentice… +06/05/2018,Economists,@Austan_Goolsbee,Spoiler alert: there’s way more deflation online than in the CPI for the same categories https://t.co/UJEj8lQ9Ta +06/05/2018,Economists,@Austan_Goolsbee,Can someone in eastern PA tell us if potus axing eagles’ WH visit will be well received? Asking for a friend in the electoral college. +06/05/2018,Economists,@Austan_Goolsbee,Which would make no sense if the president had the right to self-pardon https://t.co/LAnnzhFeEQ +06/05/2018,Economists,@Austan_Goolsbee,Whoah! Budget and Econ Twitter will go crazy today. https://t.co/dkXBMH1gCq +06/05/2018,Economists,@Austan_Goolsbee,RT @hughhewitt: The pressure will build and build to end policy of separating children from parents so @realDonaldTrump well advised to ord… +06/05/2018,Economists,@Austan_Goolsbee,RT @nytimes: Netflix is turning 8 Dolly Parton songs into films https://t.co/xyEjL0AwHn +06/05/2018,Economists,@Austan_Goolsbee,RT @davidplouffe: Was great to see Jeff Bleich Saturday at our old friend Buffy Wicks’ hopping campaign office. A stalwart supporter of Bar… +06/04/2018,Economists,@Austan_Goolsbee,"RT @johnmoe: When my daughter was born 15 yrs ago w/ achondroplasia and health complications, I wondered what she’d be able to do in life.…" +06/04/2018,Economists,@Austan_Goolsbee,RT @jimsciutto: Quite a way to kick off a new show: https://t.co/UEdpyqePxY +06/04/2018,Economists,@Austan_Goolsbee,Please don’t https://t.co/7DaXN1MOv3 +06/04/2018,Economists,@Austan_Goolsbee,Isn’t the President all but daring a state AG to investigate him? +06/04/2018,Economists,@Austan_Goolsbee,RT @kasie: ...a woman gets elected. https://t.co/ZTwbxaAybo +06/04/2018,Economists,@Austan_Goolsbee,"Thaler appearing on U Chicago's aptly named Big Brains podcast +https://t.co/L01fjTRElO" +06/04/2018,Economists,@Austan_Goolsbee,"RT @davidfrum: In January of this year, @DouthatNYT & I debated online whether Trump had yet shown himself a danger to the constitution. I…" +06/04/2018,Economists,@Austan_Goolsbee,and he threatened to pull the money for the Chicago children’s hospital unless he got a massive campaign contributi… https://t.co/1WdVGL0wpp +06/04/2018,Economists,@Austan_Goolsbee,RT @dynarski: Me with the dude https://t.co/jwW0NldXqc +06/04/2018,Economists,@Austan_Goolsbee,"RT @amandafortini: Melania did just have kidney surgery, and so did I, and I can tell you it takes more than 18 days to recover. https://t.…" +06/04/2018,Economists,@Austan_Goolsbee,RT @RNicholasBurns: A cardinal rule of diplomacy is that Ambassadors must not interfere in the domestic politics of the countries to which… +07/02/2018,Economists,@BruceBartlett,I don't believe that Gerald Ford would pardon Trump for his crimes. +07/02/2018,Economists,@BruceBartlett,RT @soledadobrien: Good. Every day Sean Spicer undermined the work of reporters from his perch at the White House. Some found it amusing. I… +07/02/2018,Economists,@BruceBartlett,@business @bopinion The gap would be wider if the US data was for all states except California. +07/02/2018,Economists,@BruceBartlett,RT @business: California tried to be the anti-Trump. It worked. The state's economy grew at more than twice the speed of the U.S. as a whol… +07/02/2018,Economists,@BruceBartlett,"He/she will say, dutifully, that Roe is settled law over and over and over again--right up until it is completely g… https://t.co/sdQZBWQb7j" +07/02/2018,Economists,@BruceBartlett,"North Korea tells Trump to go screw himself, laughing all the way at his gullibility & stupidity. https://t.co/wzyLoOfCxd" +07/01/2018,Economists,@BruceBartlett,"RT @stutteringjohnm: Breaking: Secret Service contacted me agent & wants me to meet with them tomorrow. Stay tuned, Avenatti, can you come…" +07/01/2018,Economists,@BruceBartlett,RT @tribelaw: .@SenatorCollins in particular needs to hear from her Maine constituents about why they see this as a huge copout. Does she t… +07/01/2018,Economists,@BruceBartlett,@rcolarette @tribelaw You are right. That's a difference between Republicans and Democrats. Republicans are always… https://t.co/Hwt5sNytHQ +07/01/2018,Economists,@BruceBartlett,@JAragman @Brasilmagic When it is finally obvious that she was lied to she will feign remorse and continue voting a… https://t.co/hWSlFI31DN +07/01/2018,Economists,@BruceBartlett,How come I never hear libertarians worrying about whether Trump's wall will be used to keep them in the US? They us… https://t.co/e5tWYEMHiU +07/01/2018,Economists,@BruceBartlett,I agree. https://t.co/ZE03Oxb4Up +07/01/2018,Economists,@BruceBartlett,But he would dutifully vote for a Supreme Court justice who would overturn Brown v Board of Education if his party… https://t.co/PutLZ4HWWf +07/01/2018,Economists,@BruceBartlett,@Brasilmagic Her word is worthless. You are a fool to give her any credibility whatsoever. Wishful thinking at its worst. +07/01/2018,Economists,@BruceBartlett,Black Man Killed for Carrying a Gun Had a Valid Concealed Carry Permit https://t.co/G21mDup9yr +07/01/2018,Economists,@BruceBartlett,@Odysseus93 @woodstockwasme @StateDept @AP @ForeignPolicy @jricole @SenBobCorker @SenatorMenendez @SenatorShaheen… https://t.co/vEyROhAdU8 +07/01/2018,Economists,@BruceBartlett,"@brooklyn91941 Unfortunately, the opposition party in this country is weak and incompetent. Like the Social Democrats of Weimar." +07/01/2018,Economists,@BruceBartlett,@woodstockwasme @StateDept @AP @ForeignPolicy @jricole @SenBobCorker @SenatorMenendez @SenatorShaheen Trump and the… https://t.co/JkqUehGrdZ +07/01/2018,Economists,@BruceBartlett,@DavidNe41143027 Always important to add that the voters of Maine elected him governor TWICE. +07/01/2018,Economists,@BruceBartlett,"We need a stronger term than the ""blind leading the blind"" to explain how Trump and the GOP operate these days." +07/01/2018,Economists,@BruceBartlett,"RT @tedlieu: On March 2, 2018, @realDonaldTrump Director of Trade & Industrial Policy Peter Navarro said ""I don't believe any country will…" +07/01/2018,Economists,@BruceBartlett,"RT @CathyYoung63: This anti-#NeverTrump screed at @amspectator is quite exceptionally vile +https://t.co/32aLodX1Tf +Come for the manhood-imp…" +07/01/2018,Economists,@BruceBartlett,There is also no doubt that whoever Trump nominates will be satisfactory to the anti-abortion fanatics. Someone wil… https://t.co/YtrNrIkR5Y +07/01/2018,Economists,@BruceBartlett,"@maplehulk If Alan is nominated to SCOTUS, I will be inclined to agree." +07/01/2018,Economists,@BruceBartlett,It is absolutely guaranteed that whoever Trump nominates to SCOTUS will be satisfactory to Susan Collins re Roe v W… https://t.co/AOr72fvQqB +07/01/2018,Economists,@BruceBartlett,@jerryadler @CEDickson @YahooNews I am well aware of the problem of freshness and finding new news hooks. But I thi… https://t.co/a7f7qSpI0s +07/01/2018,Economists,@BruceBartlett,@LizMair That's not really true. It's just that we run much our welfare state through the tax code rather than thro… https://t.co/IIVcd9p9Wi +07/01/2018,Economists,@BruceBartlett,@ddale8 The closest precedent is the slavery bloc before the Civil War. +07/01/2018,Economists,@BruceBartlett,@mikeduncan @KevinMKruse One problem with this theory is that the Nazis adopted a lot of policies and rhetoric from the Confederate South. +07/01/2018,Economists,@BruceBartlett,The deficit is always falling when Republicans want to cut taxes for the rich. It's always skyrocketing when they w… https://t.co/mOnHQvFrmB +07/01/2018,Economists,@BruceBartlett,@adamliptak @StevenBrill He's just trying to sell books at your expense. Don't take it personally. +07/01/2018,Economists,@BruceBartlett,"@jerryadler @CEDickson The big exception is reporters for right wing outlets such as Fox, where they never tire of… https://t.co/sMf7ErWWo1" +07/01/2018,Economists,@BruceBartlett,"@jerryadler @CEDickson Generally speaking, once beat reporters know all there is to know on a subject, they lose in… https://t.co/rj6coJJLAJ" +07/01/2018,Economists,@BruceBartlett,"Trump's not-so-secret weapon--the Fox Propaganda Channel, which always has his back. https://t.co/cFe1gqzQ2s" +07/01/2018,Economists,@BruceBartlett,@realdawnhoward I'm not hearing about this. Just searched Google News and saw nothing. +07/01/2018,Economists,@BruceBartlett,"@mrspc48 @amjoyshow It's not just the amount of coverage, which has fallen, it's the tone of the coverage. Much les… https://t.co/9dxu5ALsWq" +07/01/2018,Economists,@BruceBartlett,The media were in an uproar about children being forcibly separated from their parents at the border. Trump said he… https://t.co/sWHlZFm0QI +06/30/2018,Economists,@BruceBartlett,@conncarroll @kausmickey Isn't that what they are supposed to be doing now? +06/30/2018,Economists,@BruceBartlett,@tribelaw Seems to me if you are going to reverse a clear precedent that is considered settled law (as for example… https://t.co/4bzYBta0mL +06/30/2018,Economists,@BruceBartlett,@tribelaw The only important case I am familiar with is Brown and I know that took quite a while to be teed up. +06/30/2018,Economists,@BruceBartlett,@lilhistorian @tribelaw Don't be so sure. The facts of the case and the nature of the particular law that applies a… https://t.co/JjKUEI0lnF +06/30/2018,Economists,@BruceBartlett,@tribelaw Serious question--Is there a case in the pipeline that would provide such an opportunity? Hard to see an… https://t.co/Icbme0SpRW +06/30/2018,Economists,@BruceBartlett,@conncarroll @kausmickey I had no idea that there is no law enforcement in this country except at the border. +06/30/2018,Economists,@BruceBartlett,I don't understand why members of the Party of Trump deny that they belong to the party of white supremacy. They sh… https://t.co/oV6hAJ5Ein +06/30/2018,Economists,@BruceBartlett,@danpincus No one listens to me. Democrats think they know all they need to know to win. +06/30/2018,Economists,@BruceBartlett,Where is the progressive campaign to stop Trump from nominating another right-wing extremist to SCOTUS? Once his de… https://t.co/TgfIhDW9uR +06/30/2018,Economists,@BruceBartlett,@Steinernomics Could also protect racist Republicans from charges of racism. +06/30/2018,Economists,@BruceBartlett,There hasn't been a recorded lynching since 1968. But go on ahead. It's not as if there are any other pressing raci… https://t.co/55WGdsMU8s +06/30/2018,Economists,@BruceBartlett,Will Alan Dershowitz return to normal once he realizes that Trump isn't going to name him to the Supreme Court? +06/30/2018,Economists,@BruceBartlett,Kushner is an idiot. I wonder how many millions of dollars his father had to donate to Harvard to get him in. https://t.co/I03bxyjLBt +06/30/2018,Economists,@BruceBartlett,RT @Amy_Siskind: Dinesh D’Souza quotes tweet with the hashtag burn the Jews. https://t.co/vLjuEWnSb5 +06/30/2018,Economists,@BruceBartlett,@R_Ephemeral Poor Democratic marketing is a big problem. +06/30/2018,Economists,@BruceBartlett,@joshchafetz https://t.co/lLRiwgwFT9 +06/30/2018,Economists,@BruceBartlett,"RT @ThePlumLineGS: ""Provocateur."" @AP is actively spreading this garbage under cover of euphemism, misleading readers and rewarding bad-fai…" +06/30/2018,Economists,@BruceBartlett,RT @BillKristol: I say this as someone who was on Fox for a decade and had no beef (though little interaction) with Bill Shine: It’s a disg… +06/30/2018,Economists,@BruceBartlett,"RT @JWGOP: Angela Merkel, the leader of the free world, is despised by both Putin & Trump. Their efforts to undermine her & cause her gover…" +06/30/2018,Economists,@BruceBartlett,RT @murphymike: Parkland rally was 50x more effective than today’s. Every time somebody screams about abolishing ICE it just pushes more wo… +06/30/2018,Economists,@BruceBartlett,@danfarina https://t.co/x1i7F1KiEl +06/30/2018,Economists,@BruceBartlett,@s3friedman I suspect that Roe will never be reversed in toto. The court will simply allow more and more restrictio… https://t.co/FUsAkXlJgm +06/30/2018,Economists,@BruceBartlett,"@spotics Way before that was ""Watermelon Man."" https://t.co/6p2030YZ0w" +06/30/2018,Economists,@BruceBartlett,There haven't always been nine Supreme Court justices. https://t.co/5SidhmXQDU https://t.co/8gFp3BI87V +06/30/2018,Economists,@BruceBartlett,But what is the cure? https://t.co/W1i7gYKTfY +06/30/2018,Economists,@BruceBartlett,@dubiousraves Not a chance. Both-siderism rules at the Post. Truth must be offset with an equal amount of lies. +06/30/2018,Economists,@BruceBartlett,"Two-thirds of Americans oppose the Republican position that Roe v. Wade should be overturned, which SCOTUS will alm… https://t.co/ETAtjYzArx" +06/30/2018,Economists,@BruceBartlett,Which Places Have the Highest Concentration of Billionaires? https://t.co/dBpT63ZWkK https://t.co/7II29ou4ib +06/30/2018,Economists,@BruceBartlett,How Antebellum Christians Justified Slavery https://t.co/a5z3blXF4q https://t.co/7dxjPZMQZZ +06/30/2018,Economists,@BruceBartlett,I'm sure that @davidfrum has stolen many writing jobs from me over the years. +06/30/2018,Economists,@BruceBartlett,Mexicans aren't stealing Americans jobs. Canadians are. https://t.co/LFOnqhdfur https://t.co/8xdizg7epP +06/30/2018,Economists,@BruceBartlett,@BobSachemano Read my book. https://t.co/9TNL7qdf75 +06/30/2018,Economists,@BruceBartlett,"No, you are battling rank stupidity. https://t.co/5sfoAd4cwI" +06/30/2018,Economists,@BruceBartlett,It's always coming down when Republicans want to cut taxes. It's always skyrocketing when they want to slash benefi… https://t.co/dPV4IYgw9j +06/30/2018,Economists,@BruceBartlett,"@DouglasDeCelle Those that can afford to leave, well-to-do whites, don't need to. Those that might benefit probably… https://t.co/fX5DrkW8ii" +06/30/2018,Economists,@BruceBartlett,Great news. One less crackpot on TV. https://t.co/0fqfHmDSbi +06/30/2018,Economists,@BruceBartlett,@FrankSowa1 @RBReich When non-economists criticize GDP they usually have no idea of what they are talking about. +06/30/2018,Economists,@BruceBartlett,"RT @JohnJHarwood: on tax-cut effects so far: “spending on equipment is lower than it was at end of last year, and overall business investme…" +06/29/2018,Economists,@BruceBartlett,"More: Don't you think the emoluments clause is obsolete? Don't you agree that I can pardon myself for any crimes, real or imaginary?" +06/29/2018,Economists,@BruceBartlett,Because there is no exception in the sacred second amendment for crazy people. https://t.co/MzInuenUCB +06/29/2018,Economists,@BruceBartlett,"@Bakari_Sellers Bankers don't understand the concept of ""sunk costs""." +06/29/2018,Economists,@BruceBartlett,Trump's first questions to SCOTUS nominee: How much money do you have? Do you own an apartment in Trump Tower? A me… https://t.co/Wsb6kvW6VV +06/29/2018,Economists,@BruceBartlett,@BSamCook @JeriLRyan It's not even an issue today. +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 Old news. Everyone in the media knows it so they assume everyone else does too. +06/29/2018,Economists,@BruceBartlett,@NicholsUprising Way ahead of you. https://t.co/lCOqs3YXsx +06/29/2018,Economists,@BruceBartlett,"Who wrote this for Trump? These are not his words. For one thing, the statement is grammatically correct. Second, w… https://t.co/P0dv24EttB" +06/29/2018,Economists,@BruceBartlett,@sherpaCato Because that is the essence of liberty. +06/29/2018,Economists,@BruceBartlett,@MideOFD @pat_margulies I saw an article recently where a cache of drugs decades old was discovered. Their effectiv… https://t.co/t2W2FiRlIM +06/29/2018,Economists,@BruceBartlett,"@Rightsof_Man Democrats are the class nerds, Republicans are the schoolyard bullies. Unfortunately, we live in a grade school world." +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 You mean just like marijuana and cocaine? Seems to me that the border is pretty porous where drugs are concerned. +06/29/2018,Economists,@BruceBartlett,"@pat_margulies Many shelf dates are bullshit. Lots of drugs still work long, long after their expiration date. The… https://t.co/FvyKFV1AJn" +06/29/2018,Economists,@BruceBartlett,Well-to-do white women may think they can always go to Canada or Mexico for an abortion after Trump's SCOTUS pick p… https://t.co/o6A1ffzK9p +06/29/2018,Economists,@BruceBartlett,"@KGraceHill Sadly, neither do any of his supporters." +06/29/2018,Economists,@BruceBartlett,Free advice--any pharmaceutical company manufacturing abortion pills should move their production offshore. Will so… https://t.co/K6gkpxg9kx +06/29/2018,Economists,@BruceBartlett,@LibraQueenLibby Too busy expending 100% of its resources to raise money to pay consultants to help it raise more money. +06/29/2018,Economists,@BruceBartlett,Trump has made more money from the presidency than any president in history. (Because every president before him kn… https://t.co/0moeL9jlTe +06/29/2018,Economists,@BruceBartlett,@Profepps So I should look into black market opportunities? +06/29/2018,Economists,@BruceBartlett,@AlNewman_ @SteveSchmidtSES @TheRickWilson @murphymike @stuartpstevens Democrats never ask my advice. I doubt they… https://t.co/SurGMp4Evd +06/29/2018,Economists,@BruceBartlett,"Assuming Trump nominates an anti-choice right-winger to SCOTUS and he/she votes to reverse Roe, would buying the st… https://t.co/x54MqnYJXs" +06/29/2018,Economists,@BruceBartlett,"Worth remembering that real growth has little effect on revenues. Nominal growth is what matters, which means that… https://t.co/z8sx0ts2tI" +06/29/2018,Economists,@BruceBartlett,@thesnowman21 Depressing but well within the realm of possibility. +06/29/2018,Economists,@BruceBartlett,@XLProfessor @NickTimiraos @Fahrenthold Larry has a known history of forecasting that things he WANTS to happen WIL… https://t.co/6cMdAv3Fhw +06/29/2018,Economists,@BruceBartlett,I think progressive groups plan to wait until Trump names his SCOTUS pick in hopes he will nominate someone who is… https://t.co/uwIpLK5iHY +06/29/2018,Economists,@BruceBartlett,Where are the progressive and choice groups running ads warning Trump against nomination of an extremist justice wh… https://t.co/0FHdOpKtXU +06/29/2018,Economists,@BruceBartlett,Before the shooting it was serious? https://t.co/CtgjeqGAWk +06/29/2018,Economists,@BruceBartlett,@Noahpinion One virtue of single payer is the government using monopsony power to lower prices of inputs. Just subsiding raises costs. +06/29/2018,Economists,@BruceBartlett,How soon after Trump's next appointee to SCOTUS votes to reverse Roe does a healthy market in abortion pills become… https://t.co/IssBZOekCW +06/29/2018,Economists,@BruceBartlett,"@palmer_becky If I was Canada, I'd build a wall across our border." +06/29/2018,Economists,@BruceBartlett,When Republicans ban abortion I wonder if they will make an exception for women impregnated by black men? Or women… https://t.co/bvqlm6lZhr +06/29/2018,Economists,@BruceBartlett,@Noahpinion But swift boats (or whatever that was about). +06/29/2018,Economists,@BruceBartlett,@FakeEmily65 Small population states. The bulk of the population will have relatively easy access. +06/29/2018,Economists,@BruceBartlett,@MassivRuss They can just amend the Mann Act. +06/29/2018,Economists,@BruceBartlett,"If worse comes to worse, there are always foreign countries. I anticipate many abortion clinics will open just acro… https://t.co/TR6lklDw3L" +06/29/2018,Economists,@BruceBartlett,"Needless to say, conservatives who worship federalism will heartily endorse a national law against abortion. Screw states rights." +06/29/2018,Economists,@BruceBartlett,Best case scenario--the Trump court simply reverses Roe and the issue returns to the states. Some will allow aborti… https://t.co/XmdiVJKRkf +06/29/2018,Economists,@BruceBartlett,"After Trump's SCOTUS pick votes with the other four Republicans to ban abortion, the physician's office that serves… https://t.co/IEJRoJ30tL" +06/29/2018,Economists,@BruceBartlett,@WaltWeberJr Because civility. +06/29/2018,Economists,@BruceBartlett,@NickTimiraos okay +06/29/2018,Economists,@BruceBartlett,"RT @RogueSNRadvisor: So to recap: Healthy, lifetime appointee Justice Kennedy randomly steps down days before stunning NYT report linking h…" +06/29/2018,Economists,@BruceBartlett,RT @shannonrwatts: Senator who has taken more than $3 million from the @NRA is upset a gun violence victim used the word “fuck” after she w… +06/29/2018,Economists,@BruceBartlett,@NickTimiraos Why can't you bring yourself to say Larry is just lying? Do you think he is confused or too unsophist… https://t.co/pDTCEu5gzO +06/29/2018,Economists,@BruceBartlett,"Prediction--Trump, McConnell & Trump's SCOTUS pick will all lie to Collins & Murkowski about Roe as settled law--an… https://t.co/UQLbF5o13W" +06/29/2018,Economists,@BruceBartlett,@moorehn I am not giving up my air conditioning. Period. +06/29/2018,Economists,@BruceBartlett,"Arresting & removing the children of families requesting asylum in the US, not attempting to cross the border illeg… https://t.co/AeaOUvlKyb" +06/29/2018,Economists,@BruceBartlett,Republicans will never completely abolish abortion. It will always be available for wealthy white women. +06/29/2018,Economists,@BruceBartlett,"RT @TPM: Marshall: ""Justice Kennedy’s son Justin was the global head of real estate capital markets at Deutsche Bank and a key lifeline of…" +06/29/2018,Economists,@BruceBartlett,@horqua @ShaunKing @DLoesch You are a nicer person than I am. I block them permanently. +06/29/2018,Economists,@BruceBartlett,@ChuckOlson5 At least Larry is good at it. Steve Moore does the same thing but can't hide the fact that he is a com… https://t.co/1V2EEdGBN3 +06/29/2018,Economists,@BruceBartlett,@ChuckOlson5 Larry has a legacy? His whole professional life has been about telling rich and powerful people exactl… https://t.co/PZAwkLeTi7 +06/29/2018,Economists,@BruceBartlett,"""thoughts & prayers"" https://t.co/yJkxhPzdSg" +06/29/2018,Economists,@BruceBartlett,"RT @ShaunKing: 1. Let's be clear here. + +The NRA's @DLoesch has absolutely called for journalists to be beaten to death. + +She denies it, b…" +06/29/2018,Economists,@BruceBartlett,"@ChuckOlson5 Larry must lie to keep his job, learned from Trump that no one really cares." +06/29/2018,Economists,@BruceBartlett,"@MikeDonnellyJr @KlasfeldReports They don't have the resources to dig for stories any more, must wait for handouts… https://t.co/cx7PBXj1GB" +06/29/2018,Economists,@BruceBartlett,They will just as soon as they have the 5th vote to repeal Roe confirmed on SCOTUS and one more big tax cut for the… https://t.co/sbwkOCS47r +06/29/2018,Economists,@BruceBartlett,Larry Kudlow wants the Treasury to index capital gains by regulation. It absolutely does not have the authority to… https://t.co/klK0zcUUG1 +06/29/2018,Economists,@BruceBartlett,RT @SherylNYT: Trump strategically stocked courts with Kennedy clerks. Also had a business relationship with Kennedy's son. Fascinating @ad… +06/29/2018,Economists,@BruceBartlett,@tinaissa @SenateMajLdr @BarackObama 10 percent of Obama voters voted for Trump. I guess they forgot or just didn't… https://t.co/9AUQd2jp9r +06/29/2018,Economists,@BruceBartlett,"@danfarina Read about the fall of the Roman Republic and, later, the fall of the Roman Empire. Sobering. I think we… https://t.co/KY2FLLTOxg" +06/29/2018,Economists,@BruceBartlett,@danpincus @ronny_corral @cliffschecter @cmerlin He can do anything. The Senate is not a democracy. +06/29/2018,Economists,@BruceBartlett,@lcby I had no idea Moveon was still in business. Haven't heard word one about it since 2008. +06/29/2018,Economists,@BruceBartlett,RT @a35362: Trump's IRS nominee didn't disclose properties were at Trump-branded hotel https://t.co/fG4XEdPiIz via @politico +06/29/2018,Economists,@BruceBartlett,"It's not creeping, it's galloping. https://t.co/bJDLXIf4SV" +06/29/2018,Economists,@BruceBartlett,"RT @frankthorp: Capital Gazette staff writer on CNN just now; “Thanks for your prayers, but I couldn’t give a f—k about them if there’s not…" +06/29/2018,Economists,@BruceBartlett,"RT @CharlesPPierce: ""I told the president that he has a chance to unite the country if he magically turned into Dwight Eisenhower."" https:/…" +06/29/2018,Economists,@BruceBartlett,"@cmerlin The truth is more mundane--TV requires images. If they don't have any, there's nothing to report. And news… https://t.co/AAo4RWlmDJ" +06/29/2018,Economists,@BruceBartlett,@marylougeorge2 @RepublicanSwine This country has never been a democracy. The Electoral College is proof of that. +06/29/2018,Economists,@BruceBartlett,@PhilBl55 I don't know how to have an impact. But I do know that the whole point of a demonstration is to get atten… https://t.co/5lUiUeGquU +06/29/2018,Economists,@BruceBartlett,"@PhilBl55 I've lost track of the number of big Washington demonstrations that got no coverage, had zero impact. My… https://t.co/CxFRT688Iv" +06/29/2018,Economists,@BruceBartlett,"@cmerlin Fox is not a news organization, it is a propaganda organization more akin to an advertising or PR firm. It… https://t.co/yi5tgrNg21" +06/29/2018,Economists,@BruceBartlett,@cmerlin Reporters think that if they know all the news there is to know on a topic then everyone else does too. Un… https://t.co/heEnliuGsl +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch https://t.co/04gHy7qOTi +06/29/2018,Economists,@BruceBartlett,@marcahertz George H.W. Bush was destroyed by his own party for having the courage of his convictions to raise taxe… https://t.co/BVvhRHckAz +06/29/2018,Economists,@BruceBartlett,@Jeff424V Has been since 1994. +06/29/2018,Economists,@BruceBartlett,@realworldrj It also makes the court's liberals look far more left-wing than they really are. +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch Louise Mensch is a crackpot. Ignore her. A female Alex Jones. +06/29/2018,Economists,@BruceBartlett,@danpincus @x_therefore_y @lotusgdess @LouiseMensch I expect Mueller's report the day after the election in 2020. +06/29/2018,Economists,@BruceBartlett,I am old enough to remember when conservatives railed against the unelected Supreme Court making law and subverting… https://t.co/0w6ywl5DPH +06/29/2018,Economists,@BruceBartlett,Link: https://t.co/aETS0ATMBE +06/29/2018,Economists,@BruceBartlett,"With Anthony Kennedy gone from SCOTUS, the Washington Post has decide that right-wing John Roberts is the court's n… https://t.co/oaaVfa9EQg" +06/29/2018,Economists,@BruceBartlett,@paogle I could have made the same comment yesterday when the media was still obsessing about Sarah Sanders and her restaurant problems. +06/29/2018,Economists,@BruceBartlett,"RT @crooksandliars: Here you go -- the full Twitter stream of the alleged shooter in PDF format, since I fully expect Twitter to pull this…" +06/29/2018,Economists,@BruceBartlett,I didn't mean to imply that nothing is happening. But my Twitter feed is heavy on elite DC journalists. Children in… https://t.co/pN8TaNhDvh +06/28/2018,Economists,@BruceBartlett,"I'm not saying there are no tweets, just that none have come to my attention, which means there aren't very many of… https://t.co/m0yycfF9cb" +06/28/2018,Economists,@BruceBartlett,I haven't seen one tweet today about children being imprisoned in cages because their parents asked for asylum in t… https://t.co/g3ARFdZZpD +06/28/2018,Economists,@BruceBartlett,RT @JWGOP: The most partisan during Watergate hearings didn't conduct themselves as clownishly as @Jim_Jordan who is a demagogic danger des… +06/28/2018,Economists,@BruceBartlett,"RT @ShaunKing: This police officer in Lancaster, Pennsylvania should be fired immediately. After he is fired, the District Attorney should…" +06/28/2018,Economists,@BruceBartlett,@CharlesPPierce Susan Collins is right up there with him. +06/28/2018,Economists,@BruceBartlett,No he didn't. That would require some intelligence and a degree of self-awareness. https://t.co/WBsKlz8ahU +06/28/2018,Economists,@BruceBartlett,@ringsabell Producers believe that the American people want to hear lies spouted by an idiot. +06/28/2018,Economists,@BruceBartlett,"@danpincus Yeah, just like they did on Gorsuch." +06/28/2018,Economists,@BruceBartlett,Thoughts & prayers yada yada--Every Republican officeholder re today's mass shooting. +06/28/2018,Economists,@BruceBartlett,RT @CharlesPPierce: Jeff Flake is the emptiest suit in American politics https://t.co/Nn9SF0XPoT https://t.co/0cdbea4jtv +06/28/2018,Economists,@BruceBartlett,@TimothyNoah1 What about civil rights? +06/28/2018,Economists,@BruceBartlett,@MahometSheena That would be foolish. +06/28/2018,Economists,@BruceBartlett,Why Richard Painter Felt the Need to Switch from the Republican to the Democratic Party https://t.co/SU0Li2clzT +06/28/2018,Economists,@BruceBartlett,@Random_Shawness Can't predict when the right case could arise. May take years. +06/28/2018,Economists,@BruceBartlett,"Prediction--Trump's SCOTUS nominee will not say how he/she will vote on Roe, no matter how many times asked. Female… https://t.co/QFmifAJumd" +06/28/2018,Economists,@BruceBartlett,@schwanderer He might be on more. Just won't get paid by CNN for doing it. +06/28/2018,Economists,@BruceBartlett,Stephen Moore may join White House staff. But where will CNN find another blithering idiot to replace him? https://t.co/0JgD20q2ff +06/28/2018,Economists,@BruceBartlett,@ralphferro Can you blame them? +06/28/2018,Economists,@BruceBartlett,@Green_Footballs https://t.co/3rz27Qc5em +06/28/2018,Economists,@BruceBartlett,"RT @Green_Footballs: We still don’t know the details of what happened at the Capital Gazette, but a day ago Milo Yiannopoulos called for jo…" +06/28/2018,Economists,@BruceBartlett,@danpincus @cmerlin One of the Democrats from Virginia or Maryland because the others will have to leave town to av… https://t.co/BsOHs2aovy +06/28/2018,Economists,@BruceBartlett,Not hearing any libertarians defend the Red Hen owner's right to kick out Sarah Sanders. I thought they believe pri… https://t.co/8u8mqtLroJ +06/28/2018,Economists,@BruceBartlett,"@danpincus @cmerlin I don't think Pence's vote would count for the purposes of a quorum. On the other hand, if ther… https://t.co/XSojEmjlRL" +06/28/2018,Economists,@BruceBartlett,@danpincus @cmerlin Senate needs 51 senators for a quorum to conduct business--present and answering a quorum call.… https://t.co/rTNtWHzbVR +06/28/2018,Economists,@BruceBartlett,Never saw that coming (sarcasm). https://t.co/qvH3rXJHD6 +06/28/2018,Economists,@BruceBartlett,@LPinAustin How did they know that Democrats would be such wimps? +06/28/2018,Economists,@BruceBartlett,@FrankNeuville Look at the lunatic they elected as governor--twice. +06/28/2018,Economists,@BruceBartlett,@thatchickinpa I don't want the Trump era to end in another Great Depression and world war. +06/28/2018,Economists,@BruceBartlett,Too bad Democrats don't care about the Supreme Court. This would be a good election issue. https://t.co/ERX6dzfm0H +06/28/2018,Economists,@BruceBartlett,"Collins: ""Heads, I win; tails, you lose."" https://t.co/6ylTfHgWxH" +06/28/2018,Economists,@BruceBartlett,More. https://t.co/Yj5PoadhYu +06/28/2018,Economists,@BruceBartlett,"RT @JRubinBlogger: every Dem running for House should play a clip of Jim Jordan. This is today's GOP - nuts, rude, irresponsible" +06/28/2018,Economists,@BruceBartlett,I think the central question in American politics is whether Trump's Republican base supports him more or less than… https://t.co/I7zq0aehDm +06/28/2018,Economists,@BruceBartlett,Will Lear's daughters become sons? https://t.co/2tdQJIqrMY +06/28/2018,Economists,@BruceBartlett,"@Sandwichman_eh One can certainly make that argument, although that was not the case with the Democratic Party. Non… https://t.co/s0hOXGWuPB" +06/28/2018,Economists,@BruceBartlett,@FerrinAugustine That's because voters infantilize them by being unwilling or unable to grasp any idea that is remo… https://t.co/Xf6ewBy7DP +06/28/2018,Economists,@BruceBartlett,"RT @RadioFreeTom: When people ask why I want divided government, it's because I know Republicans would have gone to the mattresses against…" +06/28/2018,Economists,@BruceBartlett,Maybe because McCain ran with a female version of Trump only not as smart. https://t.co/5yzty6joRq +06/28/2018,Economists,@BruceBartlett,"In any case, it is essentially a work of history and the history is solid, fully documented." +06/28/2018,Economists,@BruceBartlett,"I wrote this book when I was still a Republican, which may put off some progressive readers. But my goal was to enc… https://t.co/8Jt5XTUadi" +06/28/2018,Economists,@BruceBartlett,To understand today's Republican Party you have to understand the pre-civil rights Democratic Party. It controlled… https://t.co/Cfi8VWsvKy +07/02/2018,Economists,@mileskimball,@FriedrichHayek @GeorgeSelgin @lawrencehwhite1 @anatadmati I like the way John Cochrane says it: so high the exact… https://t.co/rP7gELtW7f +07/02/2018,Economists,@mileskimball,@jreileyclark Cool! +07/02/2018,Economists,@mileskimball,@GeorgeSelgin @FriedrichHayek @lawrencehwhite1 I'd prefer to have a capital requirement of 30% as @anatadmati recom… https://t.co/aS5vaaPtGq +07/02/2018,Economists,@mileskimball,RT @bopinion: There's a backlash against nudging people into retirement-savings plans. Fight it! says @MilesKimball https://t.co/OsSm0FZhoV… +07/01/2018,Economists,@mileskimball,@jreileyclark Tell me about well logging. +07/01/2018,Economists,@mileskimball,"RT @rexjung: Genome-wide association meta-analysis in 269,867 individuals identifies new genetic and functional links to intelligence: http…" +07/01/2018,Economists,@mileskimball,"RT @sapinker: One explanation for why people deny progress: My colleagues Dan Gilbert, David Levari et al. suggest that as problems get sol…" +07/01/2018,Economists,@mileskimball,RT @primalpoly: The @sentientist calls this 'devotion face' -- an under-studied facial expression that seems to be highly rewarding to mate… +07/01/2018,Economists,@mileskimball,@1954swilliamson Only if needed to get a justice confirmed. +07/01/2018,Economists,@mileskimball,@jdavidsonlawyer Having all libertarian SCOTUS justices could be a big problem. Adding 1 could be good. +07/01/2018,Economists,@mileskimball,"@bgzimmer I have enjoyed your column greatly! + +While I am an economist (and to a bit of an economics journalist), I… https://t.co/3pqfwVBbio" +07/01/2018,Economists,@mileskimball,"RT @bgzimmer: @mileskimball Sporting usage of ""goal"" did cross over into metaphorical meanings, but not just from ball sports -- the word w…" +07/01/2018,Economists,@mileskimball,@bgzimmer That makes sense! +07/01/2018,Economists,@mileskimball,RT @barspittercask: Meteorological hot take of the day https://t.co/J5VbSKG5Sx +07/01/2018,Economists,@mileskimball,"Book Review: Emily Bobrow on “The Darker the Night, the Brighter the Stars” by Paul Broks + +On life, death and the m… https://t.co/GVFwyMLTRP" +07/01/2018,Economists,@mileskimball,The science of thunder is more interesting than the science of lightning. https://t.co/Cn7BtBHfQM +07/01/2018,Economists,@mileskimball,"From a Roman emperor to a struggling British novelist, the many careers that blossomed after 50 https://t.co/mQ0xsBgQvf" +07/01/2018,Economists,@mileskimball,"Courts should be skeptical of nondisclosure agreements and should often invalidate them. Typically, the public inte… https://t.co/kHVwzjTqIB" +07/01/2018,Economists,@mileskimball,Science has informed promising efforts to address the beepocalypse. https://t.co/kpjDZI3qbX +07/01/2018,Economists,@mileskimball,It looks like the other familiar meanings of the word “goal” derive from its meaning in sports. The etymology “limi… https://t.co/8qyoZeaqwG +07/01/2018,Economists,@mileskimball,A fascinating teaser for Helen Thompson’s new book “Unthinkable: An Extraordinary Journey Through the Workd’s Stran… https://t.co/X9sAAWBkB7 +07/01/2018,Economists,@mileskimball,"Fracking is a story of technological change that should be told in all Principles of Macro classes. + +The engineer w… https://t.co/7m32LePJ3j" +07/01/2018,Economists,@mileskimball,@FriedrichHayek I don't think of financial stability as a job for monetary policy. Very high capital requirements a… https://t.co/OIT2LUNT3A +07/01/2018,Economists,@mileskimball,"@FriedrichHayek Do you have a link for ""productivity norm""?" +07/01/2018,Economists,@mileskimball,"@jodiecongirl I think more than slightly. After all, the staff of the Fed and many members of the FMOC are economis… https://t.co/EVCRQOVqHG" +07/01/2018,Economists,@mileskimball,"@joesmith323 @jodiecongirl Yes, I think so. Also, I think that is appropriate. Tariffs reduce the capacity of the e… https://t.co/cQqURc37fF" +07/01/2018,Economists,@mileskimball,"On this, don't miss my column + +""The Coming Transformation of Education: Degrees Won’t Matter Anymore, Skills Will"" + +https://t.co/gV788X1Vd3" +07/01/2018,Economists,@mileskimball,"“Because of a growing difference between wages for different kinds of jobs, 30% of those with an associate degree n… https://t.co/IVTjxwDilt" +07/01/2018,Economists,@mileskimball,"Anthony Kennedy was the First Amendment’s undisputed champion, writes Floyd Abrams https://t.co/ZkwwVrw6uk" +07/01/2018,Economists,@mileskimball,"In America, the premise that each person is equal generally outweighs the desire to pull rank, writes Alexandra Hud… https://t.co/C0fD1VoSzz" +07/01/2018,Economists,@mileskimball,Puerto Rico is one of the few places in the US without “at-will” employment. With that and a national minimum wage… https://t.co/9IsfjwWpGw +07/01/2018,Economists,@mileskimball,Indexing capital gains for inflation in tax computations may be within the authority of Treasury without new legisl… https://t.co/lvV0zU4cVl +07/01/2018,Economists,@mileskimball,Survey of 54 economists suggests the Fed will tolerate “core PCE inflation as high as 2.5% before raising rates mor… https://t.co/ivDEwNnkG0 +07/01/2018,Economists,@mileskimball,Trump should deal with people’s fears about Roe v. Wade by nominating a libertarian justice. https://t.co/rwG9JUkSLg +07/01/2018,Economists,@mileskimball,@FriedrichHayek I really wonder what Hayek would have thought about monetary policy now if he had lived. The major… https://t.co/xXJC82qPMp +07/01/2018,Economists,@mileskimball,"In my class, I use dominos to teach about the importance of high capital requirements. + +""On Teaching and Learning… https://t.co/gr4lLLyohh" +07/01/2018,Economists,@mileskimball,RT @BeckyQuick: The butterfly effect 🦋 https://t.co/bZdLrzZbgq +07/01/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +07/01/2018,Economists,@mileskimball,RT @bkavoussi: .⁦@mileskimball⁩ notes that a higher savings rate would reduce the trade deficit and make more funds available for research… +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: This is all very relevant to Tyrone’s thoughts on polarization. + +https://t.co/3cVLBn5hHN" +07/01/2018,Economists,@mileskimball,"RT @leah_boustan: All migration waves that I have seen data for have an inverted-U shape, slowly building as networks form, and then trendi…" +07/01/2018,Economists,@mileskimball,"RT @JonHaidt: I’m late to this great essay by @kittypurrzog, on Stuart Reges essay on gender diffs in computer sci. I just want to highligh…" +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: Actual policymaking is not zero-sum so ideological commitments are amenable to win-win compromises, but electoral politic…" +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: The mass public is highly polarized around *partisanship* rather than ideology, which explains both why compromise is har…" +07/01/2018,Economists,@mileskimball,"RT @mattyglesias: “In stratified tests, only the most knowledgeable 20-30% of citizens carry substantive, coherent, stable, and potent ideo…" +07/01/2018,Economists,@mileskimball,"RT @ChrisPolPsych: Want to re-up this post of work from @jayvanbavel, to reiterate the work’s importance. Two nice contributions here: (1/x…" +07/01/2018,Economists,@mileskimball,@jdavidsonlawyer I don't understand what you are saying. +07/01/2018,Economists,@mileskimball,@tylercowen Thanks! +07/01/2018,Economists,@mileskimball,"@de1ong On Germany reflating (from 2013): + +https://t.co/YoyJwl4hVF" +07/01/2018,Economists,@mileskimball,@tylercowen What is BA? +07/01/2018,Economists,@mileskimball,RT @bopinion: Don’t expect a Chinese baby boom https://t.co/lRCnmtzXRk https://t.co/1tojAhqf4k +07/01/2018,Economists,@mileskimball,@MFSPOOK @stiglitzian Wow! Do you have a link to Joe's support of the euro? +07/01/2018,Economists,@mileskimball,Joe Stiglitz @stiglitzian has the same recommendation I have about the euro: short of moving toward a banking and f… https://t.co/eD88aGJzkL +07/01/2018,Economists,@mileskimball,"Today's post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +06/30/2018,Economists,@mileskimball,RT @dbergstresser: @MattBruenig @matthewstoller @MattHammington @davidimarcus The intellectual history of the un-mainstreaming of Henry Geo… +06/30/2018,Economists,@mileskimball,"@sjdyorke You might want to browse my blog archive for things you find interesting for the Property Chronicle: + +https://t.co/Y2Vhxgza8Y" +06/30/2018,Economists,@mileskimball,@sjdyorke I'm flattered! I don't have time to do an article specifically for the Property Chronicle each month. How… https://t.co/izO88rSGaK +06/30/2018,Economists,@mileskimball,"New post: + +""John Locke: The Law Must Apply to Rulers, Too"" + +https://t.co/KgHS2UCrmg" +06/30/2018,Economists,@mileskimball,"RT @RoamtheDomes: When people save more, the whole economy benefits. That's why #WorkandSave matters https://t.co/iYNYIjtGuw via @bopinion" +06/30/2018,Economists,@mileskimball,"Don't miss Thursday's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +https://t.co/vgoC99mdhy" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: My post ""Helicopter Drops of Money Are Not the Answer"" collects links about my National Lines of Credit idea. + +https://t…" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Katherine Schafler—The 4 Questions Everyone Asks Constantly"" + +Do you see me? +Do you care that I’m here? +A…" +06/30/2018,Economists,@mileskimball,"On retirement planning, I got an add for Hanson McClain's online Learning Library. From a cursory inspection, it do… https://t.co/hKky9qj9ir" +06/30/2018,Economists,@mileskimball,@jedgarnaut @Noahpinion Thanks! +06/30/2018,Economists,@mileskimball,"My post ""Helicopter Drops of Money Are Not the Answer"" collects links about my National Lines of Credit idea. + +https://t.co/oipaTPU0T0" +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion I'm thinking about it more the other way around. A higher capital stock lowers the long-r… https://t.co/EkHxh4TLaR +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion One nice way to effectively require extra saving is to remove the annual cap on social se… https://t.co/N7iJeOwxcI +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion Indeed, raising the capital/labor ratio and lowering LR rates is such an important way to… https://t.co/pwg67E1dUo" +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion It is a big redesign of the economy to accommodate a high capital/labor ratio, low intere… https://t.co/3YEnc4fqxm" +06/30/2018,Economists,@mileskimball,@cory__vernon @Noahpinion One thing that my editor took out was my invocation of Piketty. If we can get the interes… https://t.co/DD3VgErEI3 +06/30/2018,Economists,@mileskimball,"@cory__vernon @Noahpinion That is why I specify ""with good monetary policy."" I also didn't have space enough to say… https://t.co/m7RUs0cklL" +06/30/2018,Economists,@mileskimball,"Today's link: + +""Katherine Schafler—The 4 Questions Everyone Asks Constantly"" + +Do you see me? +Do you care that I’m h… https://t.co/va3kM45yHY" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: I added before and after pictures to ""A Barycentric Autobiography"": + +https://t.co/GHaP2tH2bA https://t.co/bRicYNC7SR" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Maria Popova on the Virtue of Being Willing to Look Foolish"" + +@brainpicker + +https://t.co/cCkQqc33tX" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Martin A. Schwartz: The Willingness to Feel Stupid Is the Key to Scientific Progress"" + +https://t.co/pjshAH93iz" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""On Perfectionism"" + +https://t.co/L45eiRO8gB" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""Which Is Worse for You: Sugar or Fat?"" + +https://t.co/NTwHf2F1WD" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Don't miss ""The Problem with Processed Food"" + +https://t.co/7jbVMt1I5J" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: ""On Teaching and Learning Macroeconomics"" + +https://t.co/KhlJlShPpg" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Kristin Johnson on How Depressing It Is to Be a Lawyer"" + +https://t.co/Yxc5tujm2C" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits when p…" +06/30/2018,Economists,@mileskimball,"RT @mileskimball: I used yesterday's post as an opportunity to line up links to other posts about math learning as well. Take a look: + +""Gab…" +06/30/2018,Economists,@mileskimball,"Imaginary inflation is a derangement of many highly ideological commentators. + +Joseph C. Sternberg reviews “Unelec… https://t.co/68ADUezoMu" +06/30/2018,Economists,@mileskimball,Joseph Sternberg is just making stuff up when he says “wage earners see their salaries endangered by inflation.” Wa… https://t.co/DRR6lTazkS +06/29/2018,Economists,@mileskimball,"@robbpreston @Noahpinion As it is now, the low income folks get almost none of the benefit of the incentive and the… https://t.co/Nj2eClad3w" +06/29/2018,Economists,@mileskimball,"RT @RetiremntWisdom: Nudging people into retirement plans has some downside, but @MilesKimball finds way more upside https://t.co/UOhzVQ0iB…" +06/29/2018,Economists,@mileskimball,@robbpreston @Noahpinion I am holding fixed the existence of 401(k)s. Relative to 401(k)s without automatic enrollm… https://t.co/L28bXdVPgZ +06/29/2018,Economists,@mileskimball,"@browntom1234 It would be shocking if it wasn't, given the business cycle improvement." +06/29/2018,Economists,@mileskimball,@RobertFrickNFCU Thanks! +06/29/2018,Economists,@mileskimball,RT @JPSargeant78: Nudge nudge ... ⁦@mileskimball⁩ first Bloomberg piece on saving for retirement in the US. (Congrats!) https://t.co/1nldr… +06/29/2018,Economists,@mileskimball,@JPSargeant78 Thanks! +06/29/2018,Economists,@mileskimball,"To me, an obvious middle ground: Everyone should have privacy for donations to an organization or set of similar or… https://t.co/pJw2dpNRsC" +06/29/2018,Economists,@mileskimball,Kudos to Boston Fed Chief Eric Rosengren for calling for an increase in the countercyclical capital buffer. It does… https://t.co/ICc5i86U4Z +06/29/2018,Economists,@mileskimball,The Supreme Court shouldn’t allow obstructions to legal abortion procedures. That effectively makes two different a… https://t.co/f3DWafjobi +06/29/2018,Economists,@mileskimball,@RobertFrickNFCU I hope you could tell from the article that I agree with you. +06/29/2018,Economists,@mileskimball,@RedwoodGirl @AlisonB916 @Noahpinion Note that I said people with low incomes don't need to save for retirement. Bu… https://t.co/LCYccHbicW +06/29/2018,Economists,@mileskimball,@darshnadc @Noahpinion @gabster0191 That is wonderful to hear. Kudos for your courage! +06/29/2018,Economists,@mileskimball,@browntom1234 The business cycle has a big effect on the deficit. Better monetary policy can keep all of our recess… https://t.co/X5OiXJ1jvn +06/29/2018,Economists,@mileskimball,I used yesterday's post as an opportunity to line up links to other posts about math learning as well. Take a look:… https://t.co/K0SFgKP0W2 +06/29/2018,Economists,@mileskimball,@KeabetsweKB @Noahpinion Thanks! +06/29/2018,Economists,@mileskimball,@Noahpinion @tylercowen I don't know if we can find anything I disagree about with Tyler! If you and Tyler disagree… https://t.co/UHWxF6Ay5f +06/29/2018,Economists,@mileskimball,@barspittercask @Noahpinion Thanks! +06/29/2018,Economists,@mileskimball,"@Noahpinion Thanks, Noah!" +06/29/2018,Economists,@mileskimball,RT @MikeKlimes_MM: Interesting article: Fight the Backlash Against Retirement Planning Nudge - Bloomberg https://t.co/1ZiQZ0mfxi +06/29/2018,Economists,@mileskimball,@DrMcSwag How does this my Bloomberg piece on retirement saving relate to Kennedy? +06/29/2018,Economists,@mileskimball,"My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits… https://t.co/0048ODUr69" +06/29/2018,Economists,@mileskimball,"RT @bopinion: Nudging people into retirement plans has some downside, but @MilesKimball finds way more upside https://t.co/X6WFLSG91T https…" +06/29/2018,Economists,@mileskimball,"Was the Reagan administration proto-YIMBY? + +https://t.co/ptYPjwmDIi" +06/29/2018,Economists,@mileskimball,@jdavidsonlawyer That is a definite antitrust problem. +06/29/2018,Economists,@mileskimball,"Today's link: + +""Kristin Johnson on How Depressing It Is to Be a Lawyer"" + +https://t.co/Yxc5tujm2C" +06/29/2018,Economists,@mileskimball,@dacaagedout Thanks! +06/29/2018,Economists,@mileskimball,"@ryanjyoder Are you related to Seth Yoder? + +https://t.co/xuLzUi7Xrl" +06/29/2018,Economists,@mileskimball,"RT @gabster0191: The lovely @mileskimball featured my post on failure on his blog. +All part of my grand plan to have my photo pop up every…" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: Protective Tariffs are as Much Applications of Force as are Blockading Squadrons"" + +https://t.co/ggA5yn8NiE" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: “… it is true, as Macaulay said, that if large pecuniary interests were concerned in denying the attraction of gravitatio…" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@Noahpinion +https://t.co/vgoC99mdhy" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: Tuesday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/29/2018,Economists,@mileskimball,"RT @mileskimball: For those of us in the middle on abortion, the shift in the Supreme Court isn't likely to make that dramatic a difference…" +06/28/2018,Economists,@mileskimball,"For those of us in the middle on abortion, the shift in the Supreme Court isn't likely to make that dramatic a diff… https://t.co/pSj6QdaZ8y" +06/28/2018,Economists,@mileskimball,"There is still the possibility that after tenure, people pursue ideas that are extremely valuable, but won't be app… https://t.co/qo3QtXJ8G2" +06/28/2018,Economists,@mileskimball,@FriedrichHayek @iowahawkblog @ChrisNowinski1 @kimberlyarchie @steve_hanke @JoHenrich @GarettJones @RandyEBarnett I'm honored! +06/28/2018,Economists,@mileskimball,"Tuesday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/28/2018,Economists,@mileskimball,Both Thomas Lee (mentioned in the article as a possible SCOTUS pick) and his father Rex Lee were at one time collea… https://t.co/q85LvAbvFO +06/28/2018,Economists,@mileskimball,"@jodiecongirl Good point. Besides possibly lower effort after tenure, luck in getting the publications that give te… https://t.co/vPMzwZX3Ea" +06/28/2018,Economists,@mileskimball,"""we study whether the granting of tenure leads faculty to pursue riskier ideas. ... both the number of publications… https://t.co/G9GSR62qAH" +06/28/2018,Economists,@mileskimball,"Today's post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@Noahpinion +https://t.co/vgoC99mdhy" +06/28/2018,Economists,@mileskimball,@gabster0191 @Noahpinion My pleasure! +06/28/2018,Economists,@mileskimball,"New post: + +""Gabriela D'Souza on Failure in Learning Math"" + +@gabster0191 +https://t.co/vgoC99mdhy" +06/28/2018,Economists,@mileskimball,@newcurrency Thanks! +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Transformation of Songwriting: From Melody-and-Lyrics to Track-and-Hook"" + +https://t.co/dF1ekmfwab" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George on the Value of Transparent Theory"" + +https://t.co/wFYZqZzW3I" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George Eloquently Makes the Case that Correlation Is Not Causation"" + +https://t.co/Gt6rG7dspQ" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: That Those Who Advocate Any Extension of Freedom Choose to Go No Further than Suits Their Own Special Purp…" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Henry George: Why the Citizenry Needs to Understand Economics"" + +https://t.co/ddjTwAecT7" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""Keith Urban on Being Unstoppable"" + +https://t.co/xLiKqcbzUV" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Great Sacrifice"" + +https://t.co/bFUJn3cHNk" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""The Spell of Mathematics"" + +https://t.co/oUmXlcqH5F" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: Thursday's post: + +""Alexander Napolitan on GMOs"" + +https://t.co/Sx1YMM0StX" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""How Sugar, Too Much Protein, Inflammation and Injury Could Drive Epigenetic Cellular Evolution Toward Cancer"" + +https://t…" +06/28/2018,Economists,@mileskimball,"RT @mileskimball: ""From Each Individual as Judge, Jury and Executioner to Each Nation as Judge, Jury and Executioner"" + +https://t.co/Pk70toR…" +06/27/2018,Economists,@mileskimball,"@dcodea That is not how I took it. I am probably interpreting according to my own beliefs, but I think there is uti… https://t.co/a7UCnSCuFV" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""The Central Bank is Not Just Navigating through a Fog; It is Steering with a Delay"" + +https://t.co/tihbEtPxhv" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""How the Romans Made a Large Territory 'Rome'"" + +https://t.co/yGPIvTs5Dv" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""Kevin Grier and Norman Maynard on the Economic Consequences of Hugo Chavez"" + +https://t.co/4YFjEucRKk" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: ""Critical Reading: Apprentice Level"" + +https://t.co/Vlg8g2KbDc" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: Yesterday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +2. Examini…" +06/27/2018,Economists,@mileskimball,"RT @mileskimball: By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +1. After C…" +06/27/2018,Economists,@mileskimball,RT @mileskimball: I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my more peop… +06/27/2018,Economists,@mileskimball,RT @mileskimball: I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my more peop… +06/27/2018,Economists,@mileskimball,"RT @mileskimball: Today's link: + +""Ken Rogoff: Robots Mean China's Large Population Is Not As Big an Advantage in Its Chances to Become Worl…" +06/27/2018,Economists,@mileskimball,"RT @igordigiovanni: ""China might lead the digital future if the US drops the ball, but it won’t become the dominant global power simply bec…" +06/27/2018,Economists,@mileskimball,"@dcodea It was a poorly chosen phrase. What he meant was ""regardless of easily measured outcomes.""" +06/27/2018,Economists,@mileskimball,@newcurrency But I am not aware of any other free country with Western values that does military affairs seriously… https://t.co/uBG7YrbXDD +06/27/2018,Economists,@mileskimball,"@newcurrency If US national saving were positive, then the US government is able to borrow from its own people. If… https://t.co/HQLQH5A2Wo" +06/27/2018,Economists,@mileskimball,The Supreme Court’s vote to bar public-employee contracts requiring workers to pay union dues will likely be felt f… https://t.co/a4o4rKoMzN +06/27/2018,Economists,@mileskimball,"RT @jlounsbury59: Thread: + +China and the world economy. + +Reinhart and Rogoff. + +Debt and growth. + +Good stuff. https://t.co/3Bk2Hl1ugb" +06/27/2018,Economists,@mileskimball,"Letting merchants express a preference by ""steering"" helps get customer and merchant to the Pareto frontier. That's… https://t.co/s8oDYvFBMQ" +06/27/2018,Economists,@mileskimball,The Wall Street Journal’s claim that contract provisions that prevent merchants from customers toward cards that gi… https://t.co/pzhlNFDwWz +06/27/2018,Economists,@mileskimball,"I think it is possible to raise the US saving rate. See + +""How Increasing Retirement Saving Could Give America More… https://t.co/J81KfxzxXT" +06/27/2018,Economists,@mileskimball,@newcurrency Thanks! +06/27/2018,Economists,@mileskimball,@newcurrency It doesn't have to be the US that becomes the superpower by the Ben Franklin strategy. It could be Aus… https://t.co/dwbKUVA5d5 +06/27/2018,Economists,@mileskimball,"By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +2. E… https://t.co/THSl3QWfvS" +06/27/2018,Economists,@mileskimball,"By the way, on Ken Rogoff, you might be interested in our takedown of Reinhart and Rogoff on debt and growth: + +1. A… https://t.co/j87sMWcl02" +06/27/2018,Economists,@mileskimball,"Yesterday's post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/27/2018,Economists,@mileskimball,"I agree with Bobby Jindal on this: Think of the loss rich parents would feel if, regardless of which house they cho… https://t.co/qCsRi481fz" +06/27/2018,Economists,@mileskimball,"“...letting parents pick their children’s schools is valuable in itself, irrespective of outcomes.” + +—Bobby Jindal https://t.co/NS0wyRCmNx" +06/27/2018,Economists,@mileskimball,The quality of research on sexual fantasies has improved. Men’s and women’s fantasies are less different than you m… https://t.co/EaeTdaclv3 +06/27/2018,Economists,@mileskimball,I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my mor… https://t.co/yBU7vPthaj +06/27/2018,Economists,@mileskimball,I am not convinced that Ken's argument can do the quantitative heavy lifting over the next 50 years. Here is my mor… https://t.co/ZSdpW1wREW +06/27/2018,Economists,@mileskimball,"Today's link: + +""Ken Rogoff: Robots Mean China's Large Population Is Not As Big an Advantage in Its Chances to Becom… https://t.co/OdN7NmM2Pn" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Walker Wright on the Mormon Church's Relatively Enlightened Stance on Immigration"" + +https://t.co/9iEDJfJJ…" +06/26/2018,Economists,@mileskimball,RT @BruceBartlett: The origins of the Trump voter--The Political Legacy of American Slavery https://t.co/60P8OJFS8j https://t.co/25N5JtM6EM +06/26/2018,Economists,@mileskimball,@bluser12 Thanks! +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Hollywood should rush to buy the movie rights for this book. It sounds like the excellent movie “Lincoln,” but about the…" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post on diet and health is very practical: + +""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: The great monotheisms claim a great deal of both goodness and power for their gods. But at the possibility frontier, I be…" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Watching ""American Gods"" last night and listening to Kim Hill this morning makes me think the key theological question ev…" +06/26/2018,Economists,@mileskimball,"@ModeledBehavior 1 gram carbs for what I eat. Not nothing, but tolerable. + +The carbs are much higher when you make… https://t.co/PlzBUeGZz6" +06/26/2018,Economists,@mileskimball,"@msykuta Thanks! I confess I didn't. I see, the difference is that the existence of abortion alternatives is a smal… https://t.co/I8pNmZSkeQ" +06/26/2018,Economists,@mileskimball,Wife of ousted Malaysian premier accumulated a cache of diamonds once valued at $350 million https://t.co/yGEI1M5dUm +06/26/2018,Economists,@mileskimball,I think the Supreme Court made a mistake here. Requiring a pregnancy center to inform clients that rivals to one’s… https://t.co/Wd2tgbDoY9 +06/26/2018,Economists,@mileskimball,@ModeledBehavior Full fat dressing is healthy; probably at least as healthy as meat. But meat is tasty. +06/26/2018,Economists,@mileskimball,@vhankes Thanks! +06/26/2018,Economists,@mileskimball,The great monotheisms claim a great deal of both goodness and power for their gods. But at the possibility frontier… https://t.co/ouzxy7qdEH +06/26/2018,Economists,@mileskimball,"Watching ""American Gods"" last night and listening to Kim Hill this morning makes me think the key theological quest… https://t.co/36ibP7t9g8" +06/26/2018,Economists,@mileskimball,@ElContador19 Thanks! +06/26/2018,Economists,@mileskimball,@DivadRetnuh Also don't forget the nuts and the cheese. +06/26/2018,Economists,@mileskimball,@DivadRetnuh Pretty close. I also mentioned a few squares of chocolate and a glass of almond milk with probiotic an… https://t.co/rMRwwz9vtD +06/26/2018,Economists,@mileskimball,"Today's post on diet and health is very practical: + +""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/26/2018,Economists,@mileskimball,"My 3d cousin Doug Robinson is running for Governor of Colorado. I won't endorse him, but always interesting 4 me 2… https://t.co/3BYvriZzNP" +06/26/2018,Economists,@mileskimball,"@NovakIlya @UnlearningEcon I would extend the range of objects of desire in the utility function, but otherwise, re… https://t.co/7bnR4tuDy0" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: Today's post: + +""Virginia Postrel on Advocating for Abundant Housing at the Grassroots Level"" + +https://t.co/BAJiFC6ej6" +06/26/2018,Economists,@mileskimball,"RT @mileskimball: New post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/25/2018,Economists,@mileskimball,"New post: ""My Giant Salad"" + +https://t.co/AXMDn7M9pZ" +06/25/2018,Economists,@mileskimball,"I added before and after pictures to ""A Barycentric Autobiography"": + +https://t.co/GHaP2tH2bA https://t.co/bRicYNC7SR" +06/25/2018,Economists,@mileskimball,RT @BennSteil: Harvard is engaged in systematic racial discrimination of the sort that would be universally condemned - and almost certainl… +06/25/2018,Economists,@mileskimball,"@NovakIlya @UnlearningEcon No. I never did. It would be a big task. + +I might do a post about MMT, since I think I… https://t.co/06D1VtY0Zs" +06/25/2018,Economists,@mileskimball,RT @ambivalentricky: @jdavidsonlawyer @mileskimball @dandolfa describing some recent social psychology research that supports your point. U… +06/25/2018,Economists,@mileskimball,"RT @nberpubs: Portfolio rebalancing in general equilibrium, from @mileskimball, Matthew D. Shapiro, Tyler Shumway, and Jing Zhang https://t…" +06/27/2018,Economists,@KingEconomist,@FarayaMishakit We're used to perennial failure. +06/27/2018,Economists,@KingEconomist,This was surely just an elaborate attempt to explain to the rest of the world the meaning of schadenfreude. +06/27/2018,Economists,@KingEconomist,"I love football pundits, part 2: https://t.co/IWMSLHDo4F" +06/25/2018,Economists,@KingEconomist,"@ArmandDAngour @peterfrankopan You say Florida, I say fedora." +06/24/2018,Economists,@KingEconomist,@DoopScoop Back of the net! +06/24/2018,Economists,@KingEconomist,@ArmandDAngour @peterfrankopan I did... +06/24/2018,Economists,@KingEconomist,I love football pundits. https://t.co/cJKaGXlvsk +06/24/2018,Economists,@KingEconomist,I'm saying nothing... https://t.co/F4IORIMKow +06/23/2018,Economists,@KingEconomist,It's spookily strange that the best example so far of Brexit-related capital flight is an aeroplane manufacturer. +06/23/2018,Economists,@KingEconomist,@JeremyWarnerUK I was really hoping you were going to tell me it was rotten to the core. +06/21/2018,Economists,@KingEconomist,@rbrharrison Very funny! Although not entirely surprising! +06/20/2018,Economists,@KingEconomist,"@asentance @nickmacpherson2 Someone's got to do it! I have an idea, but no more than that at this stage." +06/20/2018,Economists,@KingEconomist,"@asentance @nickmacpherson2 1. The rot began before Brexit. 2. The rot is not uniquely British. 3. In the US, the r… https://t.co/OR7qUrFB65" +06/20/2018,Economists,@KingEconomist,"@asentance Sadly, I think lower for longer might be a Sign ""o"" the Times." +06/20/2018,Economists,@KingEconomist,"@ErikFossing @martinwolf_ Probably not. But @martinwolf_ is right, I think, to point out Italy's economic fall from… https://t.co/c7yEZIUj5N" +06/20/2018,Economists,@KingEconomist,"@FerdiGiugliano @ErikFossing Not sure I can give a full reply on Twitter. For what it's worth, here's a piece I wr… https://t.co/a9yYidWvsC" +06/20/2018,Economists,@KingEconomist,"@asentance Of course, doves might suggest you perform Close to the Edge." +06/20/2018,Economists,@KingEconomist,@ErikFossing Fair enough! I was simply noting that the eurozone is not entirely fenceless even though it has a single currency. +06/20/2018,Economists,@KingEconomist,@FerdiGiugliano @ErikFossing I totally agree. I'm just not sure that market discipline can always override politics… https://t.co/wROrU8J4qT +06/20/2018,Economists,@KingEconomist,"@asentance Surely given your BoE concerns, you have to perform Yazz's 'The only way is up'?" +06/20/2018,Economists,@KingEconomist,"@FerdiGiugliano @ErikFossing I'm not disputing that. There's a danger, however, that the politics are too easily ig… https://t.co/greFbDlOt4" +06/20/2018,Economists,@KingEconomist,@asentance Life Sentance? +06/20/2018,Economists,@KingEconomist,@FerdiGiugliano @ErikFossing I'm not disputing that they've met for years. The issue is whether the new Italian gov… https://t.co/E4K5uYfpn7 +06/20/2018,Economists,@KingEconomist,"@ErikFossing Yes, I've seen. But I'm not sure that Germany and Italy can easily have a meeting of fiscal minds." +06/20/2018,Economists,@KingEconomist,"@ErikFossing If it's about no fences, the euro 'project' is incomplete. You need an absence of both fiscal and monetary fences." +06/19/2018,Economists,@KingEconomist,Unilaterally-imposed trade sanctions threatening to escalate into a full-blown trade war? Who'd have thought? We un… https://t.co/GWK9QGEVA7 +06/19/2018,Economists,@KingEconomist,@sas99 @bankofengland 😄 +06/19/2018,Economists,@KingEconomist,@asentance @bankofengland It'll have to be Smokey Robinson next time! +06/19/2018,Economists,@KingEconomist,@fentowski You could try this for starters...and there's plenty more in the bibliography: https://t.co/6uACyTDS2p +06/19/2018,Economists,@KingEconomist,"ICYMI, me on Marvin Gaye, the @bankofengland and just exactly what's going on....https://t.co/spHbyOJe8M" +06/18/2018,Economists,@KingEconomist,"@Busecon2012 You have to thank Dave Ramsden for that...he asked the question. However, I think I can claim credit for the connection!" +06/18/2018,Economists,@KingEconomist,@asentance What a great performance. Much missed. +06/18/2018,Economists,@KingEconomist,"@asentance Yes, I tend to agree...or are we simple unaware of what's going on now? Maybe we're just too old!" +06/18/2018,Economists,@KingEconomist,@asentance I could never hope to match your immense knowledge of all things 1970s! +06/18/2018,Economists,@KingEconomist,Economics Teacher definitely knows what's going on... https://t.co/gpBLiWnKNs +06/18/2018,Economists,@KingEconomist,"Marvin Gaye, the @bankofengland and what's going on with the UK economy. Warning: Brexit hasn't helped. Me in the… https://t.co/2tpGsxEpEH" +06/18/2018,Economists,@KingEconomist,"@t0nyyates In another universe, he'd be commenting on the piece I've written in today's @EveningStandard" +06/18/2018,Economists,@KingEconomist,A rather marvellous piece on Stalingrad by @peterfrankopan.... https://t.co/rY3mI5aXTH +06/18/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s ⁦@EveningStandard⁩: Meghan’s dad speaks out & England awaits the big game + new tax hikes to pay for NHS + ⁦@Ki… +06/17/2018,Economists,@KingEconomist,@RVO_Monica Danke! +06/17/2018,Economists,@KingEconomist,@PhilipJTaylor1 I'm not sure Swiss cheese is totally rancid. +06/17/2018,Economists,@KingEconomist,That Brazilian defence is just like Swiss cheese...full of holes. +06/17/2018,Economists,@KingEconomist,Just catching up on the day's events. That second half was the kind of Mexican wall I very much like. +06/15/2018,Economists,@KingEconomist,@wsj_douglasj @bankofengland That's nothing. We used to have a Chancellor of the Exchequer by the name of Flash Gordon. +06/14/2018,Economists,@KingEconomist,@georgemagnus1 @Telegraph You shouldn't believe everything you read in the papers! +06/14/2018,Economists,@KingEconomist,"@darioperkins For a moment, you had me worried" +06/14/2018,Economists,@KingEconomist,@georgemagnus1 @Telegraph What is your bet? That a Eurasian team will win the World Cup? +06/14/2018,Economists,@KingEconomist,RT @jandehn: HaHa! Telegraph should stick to lawn bowls https://t.co/j9l0RijdDt +06/14/2018,Economists,@KingEconomist,Here's the @Telegraph's excellent World Cup coverage in which we discover either (i) Sweden is not in Europe (ii) B… https://t.co/qwGE4i1fr9 +06/13/2018,Economists,@KingEconomist,"Should there be a 'Group of Death' at the 2026 World Cup, I assume the matches will be held in Canada. That way, th… https://t.co/IAk2thcvLD" +06/12/2018,Economists,@KingEconomist,@ChrisGiles_ Well done! I had assumed it was the former England spinner. +06/12/2018,Economists,@KingEconomist,"@martinwolf_ Very interesting, but I'd have liked to have seen more on the impact of technology on the labour marke… https://t.co/mDHCcH3T7R" +06/12/2018,Economists,@KingEconomist,"@GiselleG7 @BBCLBicker Yes, but at least they had sensible haircuts." +06/12/2018,Economists,@KingEconomist,"@asentance Whatever else you do, don't tell him, Pike." +06/12/2018,Economists,@KingEconomist,"@GiselleG7 @BBCLBicker Plenty of evidence of common cause: both committed to unusual hairstyles, both to baggy trou… https://t.co/psvcPzzRcy" +06/12/2018,Economists,@KingEconomist,"@asentance Yes, although I'm not sure he was hot on the legal foundations of commerce. Personally, I rather liked t… https://t.co/M7j4uo32b7" +06/12/2018,Economists,@KingEconomist,@asentance You spiv! +06/12/2018,Economists,@KingEconomist,@ChrisGiles_ Perhaps he's prepared to make an exception for the FT's international edition. +06/12/2018,Economists,@KingEconomist,RT @rbrtrmstrng: Peace begins with ill-fitting trousers https://t.co/AmGjWd6LNw +06/12/2018,Economists,@KingEconomist,@GiselleG7 I think they've all been on constructive journalism courses. +06/11/2018,Economists,@KingEconomist,"Looks like I might not have been sufficiently pessimistic about NATO's future. In Grave New World, I suggested the… https://t.co/Ai1ESvXeqt" +06/11/2018,Economists,@KingEconomist,@TomJLines Indeed! +06/11/2018,Economists,@KingEconomist,@TomJLines Paul Kennedy's Rise & Fall of the Great Powers is rather good on this sort of thing. Relative economic d… https://t.co/PfRJBQkzHE +06/11/2018,Economists,@KingEconomist,"@TomJLines By the 30s, the UK was already in steep relative decline. It's amazing to think the world's greatest sup… https://t.co/JUAPCvwrdE" +06/11/2018,Economists,@KingEconomist,"@Jacob_Atkinson1 You might, but it's waning." +06/10/2018,Economists,@KingEconomist,@TomJLines Are you suggesting Kindleberger was right or wrong? +06/10/2018,Economists,@KingEconomist,@D_Blanchflower Europe 'responds' with a trade war. That's an interesting take on causality. +06/10/2018,Economists,@KingEconomist,@CharlesPilton Not sure Canada quite fits your narrative here. +06/10/2018,Economists,@KingEconomist,"@CharlesPilton Er, no." +06/10/2018,Economists,@KingEconomist,"In Grave New World, I argued that the US no longer had the appetite, enthusiasm or economic strength to provide int… https://t.co/P1OtFimMH5" +06/09/2018,Economists,@KingEconomist,@TheEconomist @TheEconomist has a point... +06/08/2018,Economists,@KingEconomist,"@idriches @jandehn It depends on where you start from, obviously, but I'd have thought it was more the Wild East." +06/08/2018,Economists,@KingEconomist,"@jandehn Just checking....without the year, your bet was in danger of being infinitely open ended!" +06/08/2018,Economists,@KingEconomist,"@jandehn No, which year is the H2 referring to?" +06/08/2018,Economists,@KingEconomist,@jandehn Which year? +06/08/2018,Economists,@KingEconomist,"@jandehn Yes, although I offer a possible explanation here: https://t.co/sCt96SJuIT" +06/08/2018,Economists,@KingEconomist,"As I argued in Grave New World, it's increasingly all about Oceania, Eurasia and Eastasia. Big Brother wasn't the o… https://t.co/Yu29Ynp4TL" +06/07/2018,Economists,@KingEconomist,Shock news. A statistical analysis shows we don't know who will win the World Cup. https://t.co/oGfxN3kN3w +06/05/2018,Economists,@KingEconomist,An internal market? That's hard to swallow. +06/05/2018,Economists,@KingEconomist,"@julianHjessop If that's one of your favourite charts, I think you need to get out more..." +06/05/2018,Economists,@KingEconomist,@Busecon2012 That is a much bigger worry... +06/05/2018,Economists,@KingEconomist,"ICYMI, my piece on Italy's politics and how an awkward little problem is bubbling away for the Eurozone: https://t.co/fSvbbThyLP" +06/04/2018,Economists,@KingEconomist,"@DenisMacShane @robfox45 @john_hooper @rkuttnerwrites @williamkeegan @Davidma64854542 Yes, you're right. But my pie… https://t.co/6zZspMOleM" +06/04/2018,Economists,@KingEconomist,The slow demise of La Dolce Vita. My take on Italian politics and economics and why a potential clash between Italy… https://t.co/EIdfn6CL5p +06/04/2018,Economists,@KingEconomist,RT @George_Osborne: Today’s @EveningStandard: Pellegrini robbed at gun point & Grenfell inquiry latest & Cabinet row over visas cap and Hea… +06/03/2018,Economists,@KingEconomist,"@Busecon2012 You might be right, but tariffs against EU & Canada don't fit your narrative very well....meanwhile, I… https://t.co/J5iR9Ka7zE" +06/03/2018,Economists,@KingEconomist,Trade wars...with a few words from me: https://t.co/BiKYDK30cn +06/01/2018,Economists,@KingEconomist,"Apparently, this much is true. https://t.co/xQwcQ0oZky" +05/31/2018,Economists,@KingEconomist,I have this weird dream. The US imposes tariffs. The UK suddenly discovers it is friendless - tradewise - on either… https://t.co/MOu7CiIO7r +05/31/2018,Economists,@KingEconomist,"RT @asentance: Great to see my good friend Jonny Haskel (@haskelecon) - a distinguished expert on productivity, innovation and intangible i…" +05/30/2018,Economists,@KingEconomist,"@ArmandDAngour Yes, yes! Oh, hang on, that doesn't work...." +05/30/2018,Economists,@KingEconomist,"@ArmandDAngour Yes, but do two negatives make a positive?" +05/30/2018,Economists,@KingEconomist,Does this count as fake news or fake fake news? I'm so confused. https://t.co/QgUBmAJLJP +05/30/2018,Economists,@KingEconomist,@B_Eichengreen The answer is 'yes'. Here's one I prepared earlier! https://t.co/3GtqORQLa5 +05/30/2018,Economists,@KingEconomist,@EdConwaySky My hair is permanently in a state of shock. +05/30/2018,Economists,@KingEconomist,@EdConwaySky @EU_Eurostat Shocking +05/30/2018,Economists,@KingEconomist,"@rbrharrison @darioperkins Remind me of when, precisely, Italy last had a decent macro context?" +05/28/2018,Economists,@KingEconomist,"@Baddiel brilliant at @hayfestival last night. Hilarious, moving...and oodles of ""Roger Whittaker""!!!!" +05/27/2018,Economists,@KingEconomist,"@georgemagnus1 George, I feel for you. I understand, however, that your goalkeeper may be heading to Preston NE." +05/26/2018,Economists,@KingEconomist,The speakers are either all very small or a long way away. https://t.co/p75dlKvlqB +05/26/2018,Economists,@KingEconomist,RT @25483clive: @KingEconomist at #HTLGI18 discusses the end of #globalisation and its risks to politics and the economy https://t.co/WDgml… +05/24/2018,Economists,@KingEconomist,@georgemagnus1 I think the answer you're looking for is 6. n=6. +05/20/2018,Economists,@KingEconomist,@RScubism I agree that a fixed currency creates pressure....and that's precisely why the euro is relevant....pre-eu… https://t.co/rTdworL52Z +05/20/2018,Economists,@KingEconomist,@RScubism So here are the figures broken down a little more...all showing Italian real per capita GDP relative to G… https://t.co/KwQJLJ6SG6 +05/19/2018,Economists,@KingEconomist,@georgemagnus1 A bit late at night now....but we're not Preston North End!!!!! +05/19/2018,Economists,@KingEconomist,@ArmandDAngour @jonnyjenda What are you talking about? I am totally clueless. +05/19/2018,Economists,@KingEconomist,@PhilipJTaylor1 At least Meghan's dress wasn't so creased. +05/19/2018,Economists,@KingEconomist,"@PhilipJTaylor1 Presumably, as a result, you missed the wedding. It was at 12.00....but you wouldn't have known when that was." +05/19/2018,Economists,@KingEconomist,@georgemagnus1 I take that imitation as a sincere form of flattery. +05/19/2018,Economists,@KingEconomist,@peterfrankopan And Giscard d'Estaing's election as French President. Are we both reading the Times? +05/19/2018,Economists,@KingEconomist,"@peterfrankopan Apparently it's also the day on which Anne Boleyn was beheaded. That, and the FA Cup Final." +05/19/2018,Economists,@KingEconomist,I'm in Hong Kong. Anything happening back home today? +05/18/2018,Economists,@KingEconomist,Great piece @peterfrankopan https://t.co/uLrl3mAHa7 +05/18/2018,Economists,@KingEconomist,"@JSiegel88 @BlakeFox7 I do, but did you know that Italy also outperformed France over that period too?" +05/18/2018,Economists,@KingEconomist,@NickGiva ...in pursuit of La Dolce Vita... +05/18/2018,Economists,@KingEconomist,"@NickGiva 420,000 Italians living in Germany. 220,000 Germans living in Italy. Not sure it's all piazzas and espressos. Or speedboats." +05/18/2018,Economists,@KingEconomist,"@BlakeFox7 To be fair, Italy outperformed Germany between 1980 and the euro's creation. Since then, however, the roles have reversed." +05/18/2018,Economists,@KingEconomist,@LongShortTrader True. And there are more Italian restaurants in Germany than German restaurants in Italy. +05/18/2018,Economists,@KingEconomist,"And, today, Italian living standards are 75% of Germany's whereas, in 1999, they were 90% of Germany's. https://t.co/An1553xMFp" +05/18/2018,Economists,@KingEconomist,"@peterfrankopan Thanks, Peter, much appreciated!" +05/18/2018,Economists,@KingEconomist,RT @peterfrankopan: Great piece @KingEconomist https://t.co/uGbn6FDQNA +05/18/2018,Economists,@KingEconomist,@digi_cole Thanks! +05/18/2018,Economists,@KingEconomist,@FHMonitor I didn't push back! I just quoted some data! +05/17/2018,Economists,@KingEconomist,@FHMonitor Thanks. I might be cherry picking but the broad $ index was about 115 at the beginning of Feb (the troug… https://t.co/nni1lMVFf6 +05/17/2018,Economists,@KingEconomist,Here's a little something about the dollar's recent surge... https://t.co/eJ0Ae33xym +05/17/2018,Economists,@KingEconomist,It's not so much sterling that's weak but the dollar that's strong...even if the US is walking away from the world.… https://t.co/sUVHJ2Xr7R +05/12/2018,Economists,@KingEconomist,@asentance @dsmitheconomics I'd prefer your Puppet on a String +05/12/2018,Economists,@KingEconomist,"@asentance So we had two wins in the first period with win rate of 12.5 per cent, two wins in period from 74-89 (fa… https://t.co/cTBTvVewUn" +05/12/2018,Economists,@KingEconomist,@asentance I think you'll find the rot set in with the fall of the Berlin Wall. I hope you're not advocating its reconstruction! +05/11/2018,Economists,@KingEconomist,@hugorifkind @ben_machell I don't recall ever saying that. Too clever. +05/10/2018,Economists,@KingEconomist,@ChrisGiles_ @bankofengland The dangers of groupthink +05/09/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg Oh bugger. Just seen the result. Was at a dinner. Thankfully I avoided watching it! +05/09/2018,Economists,@KingEconomist,@Kaesous @TrendWaveTrader @bankofengland @Socionomics Thanks. Does it work for the Rolling Stones too? +05/08/2018,Economists,@KingEconomist,I'm speaking from midday on Saturday 26 May. Three sessions....starting with https://t.co/0VSNDnKRZf https://t.co/5xRbjY25zD +05/08/2018,Economists,@KingEconomist,@PhilipJTaylor1 I'm not sure there are any gentlemen involved... +05/08/2018,Economists,@KingEconomist,From global Britain to little Britain: https://t.co/YuGTpowETo +05/08/2018,Economists,@KingEconomist,@georgemagnus1 I think 'swash' is redundant. +05/06/2018,Economists,@KingEconomist,"@RobinWigg @georgemagnus1 Look, I supported Chelsea when we were in the second division and Kerry Dixon was our lea… https://t.co/3PK65QgwZU" +05/06/2018,Economists,@KingEconomist,"@georgemagnus1 @RobinWigg Look, I really hope you win. I'd hate to see your team becoming another Preston North End… https://t.co/s5L1ydmtZk" +05/06/2018,Economists,@KingEconomist,@RobinWigg @georgemagnus1 I'm well aware that our boast of being the last English team to win the Champions League… https://t.co/AKkMhUjDu5 +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg I'm part of the tribe you lost to! +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg You asked. I answered! +05/06/2018,Economists,@KingEconomist,@georgemagnus1 @RobinWigg You lost. That's the main problem. +05/05/2018,Economists,@KingEconomist,"@TrendWaveTrader @bankofengland @Socionomics That's interesting, but it seems as though disco passed them by in the… https://t.co/BkXFjoNCXl" +05/04/2018,Economists,@KingEconomist,"@AGaniMemon @Channel4News Given your timeline, I think we know who has a problem with truth." +05/04/2018,Economists,@KingEconomist,"RT @Channel4News: ""I'm ashamed that this sickness has come into our party."" +  +Defeated Labour councillor Adam Langleben says he believes ""t…" +05/03/2018,Economists,@KingEconomist,@DrGerardLyons I seem to recall that Corfe Castle was rather more memorable than the Cup Final. +05/03/2018,Economists,@KingEconomist,"@DrGerardLyons Yes, I watched that match while on a school trip to Swanage. It was terrible (the match, not Swanage)." +05/03/2018,Economists,@KingEconomist,"@asentance @bankofengland You're right, but the problem might even have been around when you were there...https://t.co/4SaWWjsson" +05/03/2018,Economists,@KingEconomist,"@sdonnan @guydej1 To be fair to me, Grave New World was subtitled 'The End of Globalization, the Return of History'. Just saying." +05/03/2018,Economists,@KingEconomist,@Frances_Coppola @econbuttonwood Is that with a short 'e' or long 'e'? +05/03/2018,Economists,@KingEconomist,@ryanavent I'd also add the impact of technology on wage bargaining. Much easier to manage zero-hours contracts wi… https://t.co/cPuRcMGwhf +05/03/2018,Economists,@KingEconomist,@econbuttonwood @Frances_Coppola So not so much 'feeble' as 'enfeebled'. +05/03/2018,Economists,@KingEconomist,@Frances_Coppola I don't think you should describe @econbuttonwood using that term. Harsh. +05/02/2018,Economists,@KingEconomist,"@AdamCaplin @bankofengland I'm sure that @bankofengland can make do with Money, Money, Money." +05/02/2018,Economists,@KingEconomist,@brentsheather @bankofengland Pretty sure that's Elvis Presley. Maybe Submission? +05/02/2018,Economists,@KingEconomist,"I challenge @bankofengland's Andy Haldane to read my mood from my recent Spotify activity: Led Zep IV, Debussy La M… https://t.co/xFyBrHfSgg" +04/28/2018,Economists,@KingEconomist,@AngelicaNgai Where's your school? +04/28/2018,Economists,@KingEconomist,@georgemagnus1 It's a new-fangled modern-day device known as Google. You might have come across it from time to tim… https://t.co/rDUjH1TSty +04/28/2018,Economists,@KingEconomist,I reckon Abba's annus mirabilis was 1976: three singles in the 'annual' UK top 20. Just look at who they were up ag… https://t.co/zraOh3Xi5o +04/25/2018,Economists,@KingEconomist,Tories dance the Hokey Cokey on Customs Union. In? Out? Shake it all about? https://t.co/pFsCs5ckS8 +04/23/2018,Economists,@KingEconomist,Top economic analysis: https://t.co/JV9pBMGPxz +04/19/2018,Economists,@KingEconomist,For those of you who benefit from some fluency in Polish....a review of #GraveNewWorld https://t.co/4dxI0GnHdi +04/16/2018,Economists,@KingEconomist,"Why the US may end up with a frozen Tundra. Excellent by @sdonnan on Texas, Toyota, Trump & trade. https://t.co/LdfZXuarsY" +04/11/2018,Economists,@KingEconomist,Wow! https://t.co/SShXFvdLPh +04/10/2018,Economists,@KingEconomist,@GrahamWiley459 Great....thanks! +04/10/2018,Economists,@KingEconomist,@PeterJLyth We can but dream... +04/10/2018,Economists,@KingEconomist,"And, just to prove it.... https://t.co/OoIiI3Fnhb" +04/10/2018,Economists,@KingEconomist,@FinbarrLivesey Thanks! And good luck on number 2. +04/10/2018,Economists,@KingEconomist,I think I can reasonably say I have written a trilogy: I've just taken delivery of new paperback editions of… https://t.co/HCzgsQOPd5 +04/10/2018,Economists,@KingEconomist,"@British_Airways It says on your Twitter page that you 'are here 24 hours a day, 7 days a week to help'. When you s… https://t.co/eQWmfMypnt" +04/09/2018,Economists,@KingEconomist,"@British_Airways Well, that's almost as long a delay as the flight. I have just learnt that the incoming aircraft h… https://t.co/wLi7lW4Z3s" +04/09/2018,Economists,@KingEconomist,@EconAJB @British_Airways Thanks! +04/09/2018,Economists,@KingEconomist,@SeanFionn @British_Airways Thanks! At least someone knows what's going on. +04/09/2018,Economists,@KingEconomist,@m_we @British_Airways Here's one explanation: https://t.co/MzvG7vkFsC +04/09/2018,Economists,@KingEconomist,"@georgemagnus1 @British_Airways The third, I believe. ""Late incoming aircraft"" is a fairly lame excuse." +04/09/2018,Economists,@KingEconomist,"Finally, some ""good"" news from @British_Airways. The flight has been brought forward. Now departing at 00.10....jus… https://t.co/FaSkAagYG7" +04/09/2018,Economists,@KingEconomist,@Tburrell1001 @British_Airways It never just rains... +04/09/2018,Economists,@KingEconomist,"@EconAJB @British_Airways That's interesting. When I phoned @British_Airways at around 20.30 this evening, they tol… https://t.co/rzaX5YIlex" +04/09/2018,Economists,@KingEconomist,"So, @British_Airways, the screens at Geneva Airport promised info at 22.00. On the stroke of 22.00, that changed to… https://t.co/u8HRqdqmqs" +04/09/2018,Economists,@KingEconomist,"This, @British_Airways, is what your app currently says. But total silence from your staff at Geneva Airport. https://t.co/UIKUptUAiW" +04/09/2018,Economists,@KingEconomist,"Well, @British_Airways, what have you done with our flight? It's now 21.41 in Geneva, and your app is saying BA737,… https://t.co/htwg3BiQnN" +04/08/2018,Economists,@KingEconomist,@Q4TK She's certainly done her background reading... https://t.co/TXvvjAbver +04/07/2018,Economists,@KingEconomist,@georgemagnus1 @toby_n @t0nyyates @DuncanWeldon @GavinJKelly1 @econhedge @RBS_Economics @Frances_Coppola I think it… https://t.co/npLMlnSw9V +04/06/2018,Economists,@KingEconomist,"Read this. It matters. Hungary, anti-Semitism and my lost Jewish ancestors https://t.co/lls5V5sXJ5 via @financialtimes" +04/06/2018,Economists,@KingEconomist,@DuncanWeldon @toby_n @georgemagnus1 @t0nyyates @GavinJKelly1 @econhedge @RBS_Economics @Frances_Coppola Thanks! How are the tanks? +04/06/2018,Economists,@KingEconomist,@isamutlib Excited that you're reading it! +04/04/2018,Economists,@KingEconomist,"@georgemagnus1 I thought you were going to say you wrote ""almost unique"" while you were caned." +04/02/2018,Economists,@KingEconomist,'Misleading' might count as the understatement of the year. https://t.co/j4NKCombJJ +04/01/2018,Economists,@KingEconomist,"This, by @Baddiel, is extremely good. ""Anti-semitism — what I prefer to call anti-Jewish racism — is the only racis… https://t.co/2SjMGr6qUn" +03/31/2018,Economists,@KingEconomist,@kwgdouglas And thank you! +03/31/2018,Economists,@KingEconomist,"RT @kwgdouglas: Just finished reading Grave New World, really enjoyed it, timely insightful and very well written. Thank you @KingEconomist…" +03/30/2018,Economists,@KingEconomist,RT @LordsIRCom: #China's economic successes came under the microscope as @KingEconomist gave evidence to the Committee https://t.co/MTkNRBj… +03/30/2018,Economists,@KingEconomist,"This, from @afneil, is simply brilliant. Please watch. https://t.co/xSBE7ylrwH" +03/29/2018,Economists,@KingEconomist,And so did I! https://t.co/63EDdgpcWg +03/29/2018,Economists,@KingEconomist,@georgemagnus1 @alanbeattie @DrGerardLyons @afneil I think we should just bring back rationing: it did the trick in… https://t.co/j2Smf8JkjQ +03/29/2018,Economists,@KingEconomist,@BaldwinRE Your cheque's in the post! +03/29/2018,Economists,@KingEconomist,"I have a new Twitter banner. Yes, shameless self-promotion, but my books are being re-released (with a couple of n… https://t.co/LyiKOGo6yO" +03/29/2018,Economists,@KingEconomist,"@BaldwinRE Honestly, these market guys..." +03/29/2018,Economists,@KingEconomist,"RT @Dannythefink: This is truly truly amazing. These people are arguing that the Jews use our influence, power and media control to conspir…" +07/02/2018,Economists,@jodiecongirl,I’m gonna be in a boat so I guess I’m the two if by sea part https://t.co/OhPVDFemor +07/02/2018,Economists,@jodiecongirl,on the up side this is going to make my tariff bashing articles so much more fun https://t.co/hvLF2kgAz6 +07/02/2018,Economists,@jodiecongirl,@KFILE for blocking you or other? :) +07/02/2018,Economists,@jodiecongirl,@ashleyfeinberg @yashar it’s dumb but it’s also a hilarious socialism metaphor +07/02/2018,Economists,@jodiecongirl,@DSMoxon sometimes I’m even like screw it im printing the counter and I’ll take the hit on processing time to be ab… https://t.co/YiKUcK9do5 +07/02/2018,Economists,@jodiecongirl,@_cingraham my fave is still the Twitter hero who described Hidden Brain as “mattress ads and shit that doesn’t replicate” +07/02/2018,Economists,@jodiecongirl,you say this as if there’s another way https://t.co/t0mUkajHsU +07/01/2018,Economists,@jodiecongirl,@AndyHarless so employers are going to keep chasing their manic pixie dream data scientists what could possibly go wrong +07/01/2018,Economists,@jodiecongirl,@aptweacher also hahahaha @trevortombe +07/01/2018,Economists,@jodiecongirl,@aptweacher like this but with your name https://t.co/JoW6jTFjTt +07/01/2018,Economists,@jodiecongirl,today in failing upwards... https://t.co/MNiGeRySMP +07/01/2018,Economists,@jodiecongirl,"You know how grad students in film school often have family members in their films? By this logic, I can con… https://t.co/gvByXWmOBo" +07/01/2018,Economists,@jodiecongirl,@dataandpolitics it's a secret girl thing I can't tell you obviously +07/01/2018,Economists,@jodiecongirl,@ATabarrok just wait until you put your glasses on when already wearing your contacts and get super confused +07/01/2018,Economists,@jodiecongirl,"@matthewstoller to be fair, revealed preferences suggest..." +07/01/2018,Economists,@jodiecongirl,I guess polling economists on what the Fed is going to do is more reasonable than polling them on what Trump is goi… https://t.co/6bbdthVePd +07/01/2018,Economists,@jodiecongirl,"me: obsesses over data entry precision/accuracy +also me, saner: if my result is this sensitive to inputs it probably wasn't meant to be" +07/01/2018,Economists,@jodiecongirl,where do I go to collect my trophy https://t.co/gZeYHkl9JO +07/01/2018,Economists,@jodiecongirl,"@EvaLefkowitz @JuliaFtacek I read something a while back that ""best by"" wasn't technically an expiration date (for… https://t.co/ApIPWbFEEh" +07/01/2018,Economists,@jodiecongirl,*whispers* this phrasing doesn't have a great track record nowadays (see graphic) https://t.co/42WaF6iVy3 +07/01/2018,Economists,@jodiecongirl,"@waltshaub @MsResistFL to clarify, it is my view that ICE has gotten out of control in terms of corruption and abus… https://t.co/BPhAqooUuF" +07/01/2018,Economists,@jodiecongirl,"@waltshaub @MsResistFL I get irritated that the ""take him seriously but not literally"" crowd conveniently decides t… https://t.co/EurlnV9cNe" +07/01/2018,Economists,@jodiecongirl,"PSA: women look at this infographic and go wow, I have to learn a whole bunch of things before I even try to be a d… https://t.co/BPE4oYrX0Q" +07/01/2018,Economists,@jodiecongirl,@MattBruenig I get that it can help overcome self-control issues but I also unapologetically mock people when they… https://t.co/vsbLeK2ynF +07/01/2018,Economists,@jodiecongirl,counterpoint: behavioral economists talk about how mental accounting is irrational https://t.co/Fhl1VgZEOz +07/01/2018,Economists,@jodiecongirl,@buttpraxis @tressiemcphd did you hack my drafts folder again +07/01/2018,Economists,@jodiecongirl,never mind I rescind my request for non-political news I clearly hadn't thought things through https://t.co/aD9plR3UPP +07/01/2018,Economists,@jodiecongirl,it's not even noon and I've already fought with the socialist party and a twitter bot my work here is done https://t.co/MvY1pGuNXQ +07/01/2018,Economists,@jodiecongirl,@hydrate_bot FINE *gets glass of water* +07/01/2018,Economists,@jodiecongirl,I just made an iced latte does that count https://t.co/asoxYqFCd4 +07/01/2018,Economists,@jodiecongirl,"@FishEcon I'm gonna play the odds and say my points were probably about worker protections, but that's mainly becau… https://t.co/Xp3YuGMeTx" +07/01/2018,Economists,@jodiecongirl,why does my tv not understand that there's news out there that doesn't (directly) involve politics +07/01/2018,Economists,@jodiecongirl,@OfficialSPGB right- I in no way meant to imply that the people using socialism as a pejorative were definitionally… https://t.co/amzfPrfvPN +07/01/2018,Economists,@jodiecongirl,my dad did the “what are you a bleeding-heart liberal” thing when I was a kid...not sure people realize that what t… https://t.co/c9sLoB9s5s +07/01/2018,Economists,@jodiecongirl,the thing about millennials is we’re not great at teaching history and they are young enough to not have direct exp… https://t.co/KkmH2gS7H3 +07/01/2018,Economists,@jodiecongirl,"I think it goes something like... +YP: you know it makes sense that everyone should be able to go to the doctor +othe… https://t.co/z97H5Pr9sS" +07/01/2018,Economists,@jodiecongirl,@dynarski also bad science don’t forget +07/01/2018,Economists,@jodiecongirl,@gabriel_mathy @UpdatedPriors @Noahpinion he’s 3 he has no experience with cars =P +07/01/2018,Economists,@jodiecongirl,"@UpdatedPriors @Noahpinion so I completely believe that the kid initially heard it from tv, but also the fact that… https://t.co/9OBB7ind7z" +07/01/2018,Economists,@jodiecongirl,"@Noahpinion entitlement, among other things" +07/01/2018,Economists,@jodiecongirl,TIL I don’t like mustard enough to have an academic job https://t.co/PIPbio2iQO +07/01/2018,Economists,@jodiecongirl,"@EvaLefkowitz @JuliaFtacek wait, mustard expires?" +07/01/2018,Economists,@jodiecongirl,@IlliniBizDean why would you want to increase the opportunity cost of eating chocolate you monster +07/01/2018,Economists,@jodiecongirl,"not gonna lie, I do wonder sometimes if there was an administrative error somewhere and whether I could just run with it" +07/01/2018,Economists,@jodiecongirl,@SnarkActual but...but I meant it literally in this case +07/01/2018,Economists,@jodiecongirl,"mr. econgirl: just take a photo of your alumni magazine and send it to employers +me: I swear harvard is going to mo… https://t.co/Er1aV3MdCw" +07/01/2018,Economists,@jodiecongirl,@dataandpolitics Led Zeppelin and Billy Joel. I remember literally nothing else +06/30/2018,Economists,@jodiecongirl,@LoganMohtashami @economistmom https://t.co/5kkReqfS0B +06/30/2018,Economists,@jodiecongirl,@scottimberman @causalinf @briankisida why are you being like this today +06/30/2018,Economists,@jodiecongirl,"@MattBruenig I've been having to do this for a while...eg. ""no, inflation hasn't changed in meaning to mean increas… https://t.co/YuId1cUZ9U" +06/30/2018,Economists,@jodiecongirl,hey twitter I think this is a dare https://t.co/rinuTmroqN +06/30/2018,Economists,@jodiecongirl,@Mediaite @MeghanMcCain ok fine but this doesn't even crack the top 10 of garbage things he's done tbh +06/30/2018,Economists,@jodiecongirl,@BrookingsInst @CoryBooker hey look who's stealing Hillary's moves +06/30/2018,Economists,@jodiecongirl,this is consistent with my experience https://t.co/3llFbchGhR +06/30/2018,Economists,@jodiecongirl,"""what do we want?"" +""for rules to be followed"" +""when do we want it?"" +""retroactively if possible"" https://t.co/unJ1p6anHa" +06/30/2018,Economists,@jodiecongirl,I made a Spotify playlist out of my dataset and I think mr. econgirl's going to find an excuse to go to the office +06/30/2018,Economists,@jodiecongirl,my ironic side loves that Amazon music sells a clean version of Banned in the USA +06/30/2018,Economists,@jodiecongirl,"@gbenga_ajilore there is a chance you could figure it out from the info I posted, but it's kind of nuanced :)" +06/30/2018,Economists,@jodiecongirl,"and I'm sorry, I might be biased because I lived through it in Broward county, but Banned in the USA is a good song" +06/30/2018,Economists,@jodiecongirl,"@nhotte haha it's gonna be fun when I angrily post any and all Twitter polls that don't have a ""just show me the results"" option" +06/30/2018,Economists,@jodiecongirl,my data probably looks different from your data https://t.co/iOzVDWGFmI +06/30/2018,Economists,@jodiecongirl,next time you think your survey data is bad just remember that it could be worse https://t.co/YlHzZYkT0d +06/30/2018,Economists,@jodiecongirl,I think we found an issue that brings out the one-handed economists... https://t.co/SyAj8YbOBv +06/30/2018,Economists,@jodiecongirl,"@MattBruenig no, my way makes me a lot richer =P" +06/30/2018,Economists,@jodiecongirl,"on the up side, I guess I'm helping confirm the ""noise in the input/output relationship generally serves to dampen incentives"" theory" +06/30/2018,Economists,@jodiecongirl,@HanbyAndrew @conradhackett sure but this helps identify the specific source of uncertainty as opposed to confirming or refuting overall +06/30/2018,Economists,@jodiecongirl,"interviewer: why didn't you want an academic job +me: https://t.co/wgd6qNo6D6" +06/30/2018,Economists,@jodiecongirl,@R_Thaler I feel like this is the Harvard Management Company problem all over again +06/30/2018,Economists,@jodiecongirl,just claimed my property on Zillow to get a more accurate price estimate and ...well...now I'm really hoping they h… https://t.co/LIE75KW031 +06/30/2018,Economists,@jodiecongirl,@DLind this is a market failure +06/30/2018,Economists,@jodiecongirl,"@BruceBartlett you don't have to wonder, the answer is 2.5 https://t.co/liooTnX1TC" +06/30/2018,Economists,@jodiecongirl,@yogawithcorrie @DeanBaker13 @APKeyton @gatesfoundation @BillGates @melindagates *raises hand* how do I get put on this list +06/30/2018,Economists,@jodiecongirl,counterpoint: mom's an english teacher and I'm pretty sure she'd agree with me that verb tenses mean things https://t.co/IMvcecOpCB +06/30/2018,Economists,@jodiecongirl,@dandrezner Hassett basically said the same thing to try to fish Kudlow out of the hole he dug for himself +06/30/2018,Economists,@jodiecongirl,@nhotte please tell me those are GMO strawberries in there +06/30/2018,Economists,@jodiecongirl,@titonka and yet somehow JFK didn't seem to have this problem +06/30/2018,Economists,@jodiecongirl,maybe it's because I'm lazy but voting seems like a lot less effort https://t.co/VWn5eukfIM +06/30/2018,Economists,@jodiecongirl,@AcostaRomay ughhhhhhh...I was legit hoping it was just me and not a pattern +06/30/2018,Economists,@jodiecongirl,(to be fair it was my advisor who did this not me) +06/30/2018,Economists,@jodiecongirl,dude why the eff do you think I haven't finished https://t.co/cvtRImzttp +06/30/2018,Economists,@jodiecongirl,not sure I’m tall enough for this one tbh https://t.co/irqyFSRoku +06/30/2018,Economists,@jodiecongirl,@ravshansk oh you just wait for my next tweet you will not be disappointed +06/30/2018,Economists,@jodiecongirl,@ChasLaw3 actually that sounds pretty good I could even do the tweed jacket thing +06/30/2018,Economists,@jodiecongirl,@DSMoxon even if these are daily emails that have these numbers? +06/30/2018,Economists,@jodiecongirl,not sure I’m old and male enough for this job title https://t.co/KWDtWAK4hQ +06/30/2018,Economists,@jodiecongirl,@LoganMohtashami hahaha yeah they rejected me for that without even talking to me because the world is super fun +06/30/2018,Economists,@jodiecongirl,I know it’s a hot job market but this doesn’t feel right https://t.co/LaZhmiRo3P +06/30/2018,Economists,@jodiecongirl,@tobyjoe @cpklapper tough but fair +06/30/2018,Economists,@jodiecongirl,you’ll be pleased it took 32 minutes to get to a trickle-down economics joke +06/29/2018,Economists,@jodiecongirl,I...don’t know what this is but let’s do it https://t.co/mBGM3BOndD +06/29/2018,Economists,@jodiecongirl,"@cpklapper I’m clearly retro, duh" +06/29/2018,Economists,@jodiecongirl,@economeager @foley_kelly not sure I even agree with her but support that this is how it’s supposed to work +06/29/2018,Economists,@jodiecongirl,compensating differentials yo https://t.co/6XpIL2XOLh +06/29/2018,Economists,@jodiecongirl,I’m now at the W bar waiting for friend and eavesdropping...apparently everyone lives in a sequel to Office Space from what I can tell +06/29/2018,Economists,@jodiecongirl,@SnarkActual good I was worried the sneakers would give me away +06/29/2018,Economists,@jodiecongirl,@BuffyBlogs there’s no way I’m wearing heels to a damn podcast :) +06/29/2018,Economists,@jodiecongirl,dragging myself out of the house...hopefully my functional human disguise is working https://t.co/ZXaYwoXdRi +06/29/2018,Economists,@jodiecongirl,almost done with my venn diagram it just needs one more label https://t.co/rsz3p6Td2c +06/29/2018,Economists,@jodiecongirl,"me: i'm sad +@TheWhyteNinjaL there there...let's go to a podcast taping it'll make you feel better +me: you always know what I like" +06/29/2018,Economists,@jodiecongirl,"@datanotdogma haha, I left grad school a while ago so I'm pretty sure they need the money more than I do! I'm at a… https://t.co/U8QSeEX73i" +06/29/2018,Economists,@jodiecongirl,I'm beginning to worry a little that people who are not terrible at communication spend all of their days writing emails +06/29/2018,Economists,@jodiecongirl,"ok Twitter, @aptweacher's birthday is tomorrow (yep I'm sure she appreciates me telling the world this), what's the… https://t.co/TkS8k5s5lE" +06/29/2018,Economists,@jodiecongirl,"@leighblue @geekyisgood I looked at her location and had false hope for a second that she meant Bristol, Tennessee :)" +06/29/2018,Economists,@jodiecongirl,"@johnwhitehead81 tax cuts, I'm like 99% sure" +06/29/2018,Economists,@jodiecongirl,@crampell @ernietedeschi @RichardRubinDC @NickRiccardi @RealClearNews I feel like there's very little good middle g… https://t.co/L0N5eCmIWL +06/29/2018,Economists,@jodiecongirl,@gin_and_tacos *waves* +06/29/2018,Economists,@jodiecongirl,@SnarkActual precisely +06/29/2018,Economists,@jodiecongirl,"@johnwhitehead81 he actually chose his words pretty carefully, and I'm still pondering the ""well wouldn't you take… https://t.co/KoZPHnCcoQ" +06/29/2018,Economists,@jodiecongirl,update: this mainly involved conflating the present and future tense so I'm pretty underwhelmed tbh +06/29/2018,Economists,@jodiecongirl,what no I'm totally not waiting with baited breath to see what on earth Hassett does when asked about Kudlow's deficit comments +06/29/2018,Economists,@jodiecongirl,you guys I have a confession regarding the real reason I didn't finish my dissertation on time https://t.co/d33uCZsA20 +06/29/2018,Economists,@jodiecongirl,@mpolikoff @delta_dc I'm in Boston and this sounds way too familiar +06/29/2018,Economists,@jodiecongirl,@andrewheiss no it makes you a nerd =P +06/29/2018,Economists,@jodiecongirl,@mpolikoff @delta_dc I think someone forgot to inform the Michelin Guide of this +06/29/2018,Economists,@jodiecongirl,"@SnarkActual I feel the need to point out that my parents are not poor, since they probably don't want to be percei… https://t.co/nd8LqCjdXU" +06/29/2018,Economists,@jodiecongirl,"@geekyisgood thanks, you're all too kind and I hope to run into you in person some day :)" +06/29/2018,Economists,@jodiecongirl,@ryanbedwards his backup plan was for me to just take a personal loan so I guess I now understand why none of his m… https://t.co/H49ZWhf57C +06/29/2018,Economists,@jodiecongirl,"for context, I was explaining that one of my professors told me to borrow money from my parents to finish school on… https://t.co/939avxu1dx" +06/29/2018,Economists,@jodiecongirl,@td_maurer haha that would be so gloriously meta +06/29/2018,Economists,@jodiecongirl,@FrankRCastillo I think that's also a response that receives full credit :) +06/29/2018,Economists,@jodiecongirl,@td_maurer what part exactly +06/29/2018,Economists,@jodiecongirl,update: mom texted me yesterday to basically apologize for not being able to help me more financially and I've neve… https://t.co/hW0Lw0HnQo +06/29/2018,Economists,@jodiecongirl,"@econwithdustin I mean...hm yeah this is probably true, empirically speaking" +06/29/2018,Economists,@jodiecongirl,@economistmom haha yes but you've proven your wisdom in other ways :) +06/29/2018,Economists,@jodiecongirl,@joebrusuelas I'm...well... https://t.co/Auy2gkg4uL +06/29/2018,Economists,@jodiecongirl,"@alex_peys I'm getting there, give it time" +06/29/2018,Economists,@jodiecongirl,call me overly cynical but hm I wonder what the difference is https://t.co/YzQYd5UB01 +06/29/2018,Economists,@jodiecongirl,@FieldsofAthnry @raulpacheco @willnevin @alexandraerin @ms_peaceweaver @kjhealy @terry_ebooks @WorldCatLady… https://t.co/jwmGmDDLmA +06/29/2018,Economists,@jodiecongirl,"@overdahl_jim @JustinWolfers I don’t know yet if this rule changes it, but there’s a really interesting feature whe… https://t.co/7UpViSFZFp" +06/29/2018,Economists,@jodiecongirl,@HerrForce1 @genehayward @DallenaNguyen @BS0064 @GeoffreyMJ @JeffLong10 @akashdan @apeconguy fun fact: I’m pretty s… https://t.co/xc4qfIiSfX +06/29/2018,Economists,@jodiecongirl,@AnnieDuke I think the alarm is a fair compromise- i.e. watch your Hulu but geez but it down when the car starts beeping at you! +06/29/2018,Economists,@jodiecongirl,"@joebrusuelas given that you have the job title I was rejected for, I am screen shorting this and sending it to the… https://t.co/6ApUfF1EGG" +06/29/2018,Economists,@jodiecongirl,@NickAPoche @salimfurth there we go +06/29/2018,Economists,@jodiecongirl,"@ez_angus I was told during a journalism interview that “productivity” was too jargony so this doesn’t feel right,… https://t.co/7lE95cWPmJ" +06/29/2018,Economists,@jodiecongirl,this went exactly as expected and I don’t regret my click one bit https://t.co/LtSjRmBhnE +06/29/2018,Economists,@jodiecongirl,@sgadarian well it’s remembered utility so maybe we can’t assess until we’re out of the situation? +06/29/2018,Economists,@jodiecongirl,"thanks, now I know how to plan my content consumption https://t.co/Mo2LqjPyOR" +06/29/2018,Economists,@jodiecongirl,@davidshor @mattyglesias my tin foil hat says that upper middle class white women need blue states so they don’t have to travel to Canada +06/29/2018,Economists,@jodiecongirl,I’m going to echo @neeratanden with a hearty “why did no one follow up on this before now” https://t.co/XZxkY8YoO7 +06/29/2018,Economists,@jodiecongirl,"@BruceBartlett this is true for most policies, or at least perceived to be, which explains a lot of voting behavior" +06/29/2018,Economists,@jodiecongirl,"@causalinf in this case he’s a more specific kind of douche, since he appears pissed thet that they covered his dom… https://t.co/FQ21X4KpPa" +06/29/2018,Economists,@jodiecongirl,"@sgadarian be careful, since increasing remembered utility involved making the experience last longer =P" +06/29/2018,Economists,@jodiecongirl,"@bhgreeley so, uh, is that a superset or subset =P" +06/29/2018,Economists,@jodiecongirl,@IBlackmailLands see if this helps https://t.co/AM4ZWZnCcA +06/29/2018,Economists,@jodiecongirl,I think it’s time to kick him out of economist club https://t.co/i75y9JnmWn +06/29/2018,Economists,@jodiecongirl,"apropos of nothing, I’ll point out that in behavioral economics there’s the peak end rule, which says we remember t… https://t.co/BmaZZMVF41" +06/29/2018,Economists,@jodiecongirl,@PereGrimmer in practice you’re probably right but as a hypothetical I’m like nope no way +06/29/2018,Economists,@jodiecongirl,@economeager I feel like we’ve done a disservice to the Econ 101 crowd for thinking it’s cool to point out that new… https://t.co/kHIojtwBea +06/29/2018,Economists,@jodiecongirl,I know I’m trying to get hired but I have to level with you I will probably never have this level of commitment to… https://t.co/c3AN8y90MX +06/29/2018,Economists,@jodiecongirl,@salimfurth I was thinking more this since it’s awkward and inefficient https://t.co/I6biGJ8ubz +06/29/2018,Economists,@jodiecongirl,great now I’m opposed to economists taking vacations https://t.co/J5Tbc9KFVF +06/29/2018,Economists,@jodiecongirl,how high do you have to be to think you can live in a bitcoin...I used to have to remind people that bitcoin isn’t… https://t.co/JOtBWs9Eiu +06/29/2018,Economists,@jodiecongirl,"sure, start a company with Amazon as your only client what could possibly go wrong *does monopsony dance* https://t.co/hP2iTA48ub" +06/29/2018,Economists,@jodiecongirl,"in case the name of one of the Capital victims sounds familiar, yep, it’s his brother... https://t.co/ZIaF6Re60n" +06/29/2018,Economists,@jodiecongirl,@graykimbrough I mean I did say I needed ideas for dissertation papers I guess... +06/29/2018,Economists,@jodiecongirl,so relatable today https://t.co/Fe3ozaXPCR +06/29/2018,Economists,@jodiecongirl,@ernietedeschi Adam Rippon +06/29/2018,Economists,@jodiecongirl,are...are you sure though https://t.co/NdB34izQ2W +06/29/2018,Economists,@jodiecongirl,@llinong labor specialization! +06/29/2018,Economists,@jodiecongirl,@leighblue wtf how was I not following you +06/29/2018,Economists,@jodiecongirl,"@econwithdustin dept: you can teach whatever you want if you also teach grad macro +me: ##%#%!$^$%^^# fine" +06/29/2018,Economists,@jodiecongirl,is it bad that I'd rather do hours of data entry than send an email to a stranger? +06/29/2018,Economists,@jodiecongirl,"@AnnieDuke I think you're right, but I also wonder what the point of autonomous vehicles is if you can't not watch the road" +06/29/2018,Economists,@jodiecongirl,@audowla it's seriously the worst metaphor +06/29/2018,Economists,@jodiecongirl,"@FarmerHayek to be fair, those aren't mutually exclusive" +06/29/2018,Economists,@jodiecongirl,@SnarkActual my dad got fired from a Toys R Us when I was a kid so I'm happy to take this now +06/29/2018,Economists,@jodiecongirl,@JonathanKarver @DrunkWB how did I not know about this until now +06/29/2018,Economists,@jodiecongirl,"@ThatTomAcox fair, but it's still confusing since apparently Schmidt hates the GOP now too" +06/29/2018,Economists,@jodiecongirl,@mirandayaver so I want to be mad but there was that one time where she started with the employment act of 1946 and… https://t.co/3FPoKrWPGj +06/29/2018,Economists,@jodiecongirl,so this is a bit of an oversimplification but the reality is super interesting (search for 2013 for the relevant pa… https://t.co/HrIgeHpx8U +06/29/2018,Economists,@jodiecongirl,@drewmagary cashews work too +06/29/2018,Economists,@jodiecongirl,apparently a 35 year monopoly wasn't enough? https://t.co/xQfHSBn5sc +06/29/2018,Economists,@jodiecongirl,current mood https://t.co/RzlemL95Pd +06/29/2018,Economists,@jodiecongirl,@umairh this has to be deliberate trolling right +06/29/2018,Economists,@jodiecongirl,"@DinaPomeranz @KfWpress to be fair, I'm pretty sure that team sports trophies are more rare among economists than academic awards :)" +06/29/2018,Economists,@jodiecongirl,"heh I was kidding but sure, let's do this https://t.co/wkiRs0afFK" +06/29/2018,Economists,@jodiecongirl,@CBSEveningNews @blakehounshell thanks now I know what words to mute...sorry but only victims' names get my clicks +06/29/2018,Economists,@jodiecongirl,where can I donate to your Kickstarter (yes I know how to subscribe to a paper do not @ me) https://t.co/Ob45D8uDnX +06/29/2018,Economists,@jodiecongirl,live look at me reacting to all your support and encouragement today... https://t.co/MREBuvbzZZ +06/29/2018,Economists,@jodiecongirl,@szarka yes but your wealth level has also gone up by $250 +06/29/2018,Economists,@jodiecongirl,"""does it tho are you sure"" --me today, basically https://t.co/td8knwSFZD" +06/29/2018,Economists,@jodiecongirl,"@Mctaguej hahahaha, I'm sure the car wash would find a reason I'm unsuitable :) I'm also being smacked with the d… https://t.co/AePsWrIgju" +06/29/2018,Economists,@jodiecongirl,@mikesimonsen in my fantasy world you're following me because of my questions about MLS data :) +06/29/2018,Economists,@jodiecongirl,"on the up side, being unemployable gives me more time for writing https://t.co/KZjUhjWYLn" +06/28/2018,Economists,@jodiecongirl,@cangeese @BillKristol nah the tariffs are pretty dumb but you're right on the rest +06/28/2018,Economists,@jodiecongirl,"confession: I watch MSNBC all the time and still can't for the life of my tell Steve Schmidt and Rob Reiner apart, what is wrong with me" +06/28/2018,Economists,@jodiecongirl,"@ranjitdighe it's literally just to say that it's there, which...I mean I kind of get it but I'm still gonna be cranky about it" +06/28/2018,Economists,@jodiecongirl,@s_gedeon I mean it seriously when I say that MIT is the best and would not have patience for this nonsense :) +06/28/2018,Economists,@jodiecongirl,@dataandpolitics @economeager your attention to detail with the ligature here really solidifies my preference tbh +06/28/2018,Economists,@jodiecongirl,"@keynesianr thanks so much...the writing space is weird in that it's not clear where I would fit, and if I did it's… https://t.co/eToAoOnraR" +06/28/2018,Economists,@jodiecongirl,"@bennpeifert also, some of us had to keep starting over and ran out of funding =P" +06/28/2018,Economists,@jodiecongirl,@dataandpolitics @economeager then check out the other thread where I said that the silver lining is that my outsid… https://t.co/VwUzD3gNVX +06/28/2018,Economists,@jodiecongirl,@tobyjoe well those are two words you don't see together very often +06/28/2018,Economists,@jodiecongirl,"@ENPancotti @gabriel_mathy I'm genuinely curious...like I said, I sucked it up and taught macro because no one else… https://t.co/7emylAVkq1" +06/28/2018,Economists,@jodiecongirl,"@tom_moran @laubolgo feel free to scream in my direction whenever you feel the need, I get it =P" +06/28/2018,Economists,@jodiecongirl,they're strategizing how to locate some women I assume https://t.co/ldmlV3mtAM +06/28/2018,Economists,@jodiecongirl,@ModeledBehavior @Motoconomist @graykimbrough does the MLS data make it clear what firm an agent is with? +06/28/2018,Economists,@jodiecongirl,@ModeledBehavior @Motoconomist @graykimbrough any idea for how much? +06/28/2018,Economists,@jodiecongirl,@Motoconomist @ModeledBehavior @graykimbrough interesting...I'm not sure I care what region the data comes from as… https://t.co/1bxp7TFOBq +06/28/2018,Economists,@jodiecongirl,@ModeledBehavior @graykimbrough @Motoconomist is it verboten for people to pull it for me or do I just have to conv… https://t.co/YDsRi8l85T +06/27/2018,Economists,@kaushikcbasu,"RT @dikshabasu: my one year old hid a piece of cheese in her dress pocket and this, clothing manufacturers, is the best argument for why wo…" +06/26/2018,Economists,@kaushikcbasu,"Since so many people have asked me, what I can say is Arvind Subramaniam was a much-needed voice of reason and prof… https://t.co/uPIMXbMhZr" +06/26/2018,Economists,@kaushikcbasu,"RT @WorldBankSAsia: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Kno…" +06/23/2018,Economists,@kaushikcbasu,This is such sad news. Wonderful human being he was. https://t.co/EGiqP7qqUx +06/23/2018,Economists,@kaushikcbasu,That’s a number to keep handy. https://t.co/6C79KIXzg4 +06/23/2018,Economists,@kaushikcbasu,"RT @IndianExpress: #ExpressOpinion | At the Ramakrishna Mission complex in Kolkata, a different face of the religion is visible from what i…" +06/23/2018,Economists,@kaushikcbasu,@zafarsareshwala Thank you. +06/22/2018,Economists,@kaushikcbasu,Alaka Basu on A different kind of motherhood https://t.co/6CXTqCKWih +06/22/2018,Economists,@kaushikcbasu,"RT @WorldBank: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Know?"",…" +06/21/2018,Economists,@kaushikcbasu,@Anirudhsingh94 It is included in China. But in itself it is more than us. +06/21/2018,Economists,@kaushikcbasu,"Fascinating how this has changed. +Foreign exchange reserves (billions of dollars): +China 3520 +Japan 1256 +Saudi Arab… https://t.co/jVIHTt7oWb" +06/21/2018,Economists,@kaushikcbasu,"RT @kylegriffin1: Foster mom describes migrant children she cared for: + +10-year-old boy who woke screaming in the night + +9-year-old boy who…" +06/21/2018,Economists,@kaushikcbasu,"RT @WorldBankLive: JOIN US ONLINE on June 26, 12:30-2 PM ET for ""Politics and Development: What Have We Learned and What Do We Need to Know…" +06/20/2018,Economists,@kaushikcbasu,RT @iamaniku: #bookoftheday @kaushikcbasu ‘s The Republic of Beliefs #lawecon #law #TeachEcon https://t.co/CR3dVxXuZt +06/19/2018,Economists,@kaushikcbasu,"RT @setu_parikh: So true.... +""#Politics may well be the only occupation in which not being good at it is a virtue"" - @kaushikcbasu in ""An E…" +06/19/2018,Economists,@kaushikcbasu,"Through history the key weapon for victory has been changing—from controlling camels, to horses, to guns, to bombs,… https://t.co/1XU2fsRQ3o" +06/18/2018,Economists,@kaushikcbasu,@shantanunandan2 Old photo. Not mine. +06/18/2018,Economists,@kaushikcbasu,My attempt at Marcel Proust brooding over a troubled world. https://t.co/ZFosR6vJj7 +06/17/2018,Economists,@kaushikcbasu,@souvikpaul11 Was there. Left today. +06/17/2018,Economists,@kaushikcbasu,O Calcutta https://t.co/u9h0newnqC +06/17/2018,Economists,@kaushikcbasu,"Father’s Day photo. My father, my aunt and uncle (in the middle), my mother, three elder sisters and me. And Pompy. https://t.co/pivLsKdtCY" +06/17/2018,Economists,@kaushikcbasu,"Chorbagan Art Studio’s Nalini Sundari, in Kolkata’s Arts Acre. The gallery has a big collection of contemporary Ind… https://t.co/VlUTWSLlUj" +06/17/2018,Economists,@kaushikcbasu,RT @dikshabasu: some good fathers in my life. Happy Father's Day @MikeyMcCleary1 and original father @kaushikcbasu https://t.co/YrqAT3r6wr +06/16/2018,Economists,@kaushikcbasu,"A warning to all authors. From Simon Gray’s brilliant play The Common Pursuit. +Martin: He got his lecturership at O… https://t.co/9KeYdOVEYg" +06/16/2018,Economists,@kaushikcbasu,RT @pbmehta: Tragic Valley sinking further since this piece as Shujaat Bukhari had warned: https://t.co/Bvvs2jBqOf +06/15/2018,Economists,@kaushikcbasu,Art of Kanchan Chander. https://t.co/9H6UD8jC72 +06/15/2018,Economists,@kaushikcbasu,Bowled over by Kolkata’s Arts Acre. —One of the best-designed art museums in India. https://t.co/6p64sV18fx +06/15/2018,Economists,@kaushikcbasu,"Trump, game theory, Trudeau, +G7, focal point, WT and O. +https://t.co/HqhpRI9CgT" +06/15/2018,Economists,@kaushikcbasu,Delighted. https://t.co/N2j58bL3s7 +06/15/2018,Economists,@kaushikcbasu,Thank you. https://t.co/VfJaXm4gkR +06/14/2018,Economists,@kaushikcbasu,I am not totally sure what Ugo is saying here but i will take a chance amd retweet it anyway. https://t.co/XhUfCIMIgq +06/14/2018,Economists,@kaushikcbasu,"Alleyway near Belur, Kolkata. Neighborhood asleep as night descends. https://t.co/24Lzxdq2un" +06/13/2018,Economists,@kaushikcbasu,"RT @dikshabasu: sign up. @briangresko is a wonderful, talented, generous writer and you would be lucky to learn from him. https://t.co/0MjI…" +06/13/2018,Economists,@kaushikcbasu,"Bylane near Belur Math, Kolkata. 3.30 am. https://t.co/kZKWYkYd9w" +06/13/2018,Economists,@kaushikcbasu,“I fervently hope that the bell that tolled this morning in honor of this convention may be the death knell of all fanaticism.” +06/12/2018,Economists,@kaushikcbasu,RT @CelestinMonga: 152 million children aged 5 to 17 still in child labor—of whom 73 million in hazardous work. What would Martians think o… +06/11/2018,Economists,@kaushikcbasu,At this rate the US will end up as part of a G-1 group of nations. https://t.co/ai6c7UFOTB +06/10/2018,Economists,@kaushikcbasu,Author Diksha Basu shares her reading list of 2018 https://t.co/u1b82LJGfn via @htTweets +06/10/2018,Economists,@kaushikcbasu,And should be called “The Last Conversation”. https://t.co/7C2W63L8Ku +06/09/2018,Economists,@kaushikcbasu,"If this continues unchecked, sadly, the casualty will be India. https://t.co/naqvvGhmbp" +06/09/2018,Economists,@kaushikcbasu,Saturday diversion. https://t.co/YZ5htq6nVq +06/08/2018,Economists,@kaushikcbasu,Enhorabuena! https://t.co/tL0yowQgjM +06/08/2018,Economists,@kaushikcbasu,A sketch to ponder. https://t.co/DpuQn4PdsD +06/08/2018,Economists,@kaushikcbasu,RT @CU_Chronicle: How can societies become law-abiding? Kaushik Basu has some suggestions @kaushikcbasu @CornellCAS https://t.co/JSoqVfT3CW… +06/07/2018,Economists,@kaushikcbasu,Such a wonderful speech. https://t.co/Ro2iGzALuC +06/07/2018,Economists,@kaushikcbasu,"RT @AbhinayMuthoo: The power of #gametheory - it is applicable to all human interaction, be it social, economic or political @kaushikcbasu…" +06/07/2018,Economists,@kaushikcbasu,"Always worth re-reading this from Keynes: Mad men in authority, who hear voices in the air, are distilling their fr… https://t.co/EjwfQ919h5" +06/06/2018,Economists,@kaushikcbasu,Dusk over a city is as mystically beautiful as dusk descending over hills. https://t.co/YXin6l41AI +06/06/2018,Economists,@kaushikcbasu,A Woman on the Verge by Karna Basu https://t.co/wXlXvrOhBV via @YouTube +06/06/2018,Economists,@kaushikcbasu,"Karna Basu: Train arriving at a station. +cogs in the wheel https://t.co/U9zH9qOrNM via @YouTube" +06/06/2018,Economists,@kaushikcbasu,Dinesh D’Souza and Preet Bharara @PreetBharara slug it out on CNN via Anderson Cooper. Bharara wins hands down. +06/05/2018,Economists,@kaushikcbasu,"Regrettable trade war. But in the long run it is Mexico that is likely to come out winner. +Mexico Hits U.S. With Ta… https://t.co/7ZRWtbPDaB" +06/04/2018,Economists,@kaushikcbasu,"RT @The_LHoFT: 5️⃣ The #FinancialInclusion Top 5 - Our Favourite Stories from This Week's Coverage + +Stories by @kaushikcbasu, @euromoney,…" +06/03/2018,Economists,@kaushikcbasu,For any person X to have the right to pardon himself or herself is equivalent to asserting that ONLY X has the righ… https://t.co/8uBX5azLxf +06/03/2018,Economists,@kaushikcbasu,"RT @dikshabasu: Kevin Kwan puts me in august company. +https://t.co/h8TkneabLP" +06/02/2018,Economists,@kaushikcbasu,If you are super-rich the best form of nationalism you want is when ordinary people feel they're winning when the… https://t.co/Nl58dMfYkV +06/02/2018,Economists,@kaushikcbasu,Empire State Building. Reaching for the sky. https://t.co/kaTSrS0kFH +06/02/2018,Economists,@kaushikcbasu,What’s happening to me? I just spent the last hour listening to Steve Bannon. +06/02/2018,Economists,@kaushikcbasu,"World’s top-10 remittance recipients, 2017 (billion $) +India 69 +China 64 +Philippines 33 +Mexico 31 +Nigeria 22 +Pakist… https://t.co/z9nqp4UX7K" +06/02/2018,Economists,@kaushikcbasu,"RT @BookBub: 27 Beach Reads Recommended by Authors +https://t.co/R172fFHfoA #beachread @dikshabasu @kevinkwanbooks @almakatsu @RickMofina @R…" +06/01/2018,Economists,@kaushikcbasu,"Gertrude Stein, brooding in Bryant Park, in the shadow of New York Public Library. https://t.co/IkfiFYcczC" +06/01/2018,Economists,@kaushikcbasu,"One of the greatest Bengali poems ever written—Nazrul Islam’s Bidrohi, recited by his son Kazi Sabyasachi. +BIDROHI_… https://t.co/0zy5nNkGKs" +06/01/2018,Economists,@kaushikcbasu,Can this paper be kept away from political leaders please? https://t.co/zo6w7zfqqz +05/30/2018,Economists,@kaushikcbasu,"RT @MartenRobert: Proud to share #Sugar, #Tobacco and #Alcohol Taxes to Achieve the #Sustainable Development Goals online in @TheLancet #ST…" +05/30/2018,Economists,@kaushikcbasu,I have decided I need counseling for anger management. Seeing some of the advantages people get from their anger ta… https://t.co/GVMTgjbGma +05/28/2018,Economists,@kaushikcbasu,I am beginning to work on a new graduate course on Law and Economics and Game Theory that I will teach this Fall. T… https://t.co/Cg4BkJdNjV +05/28/2018,Economists,@kaushikcbasu,"It is not just economics that is not hard science. There is no such thing as hard science. +For every belief about t… https://t.co/knvIglXcI4" +05/28/2018,Economists,@kaushikcbasu,"Bertrand Russell, a life-long atheist, when asked what he would say if after death he found himself face-to-face wi… https://t.co/uj3hX8K5al" +05/28/2018,Economists,@kaushikcbasu,Nehru: “What the mysterious is I do not know. I do not call it God because God has come to mean much that I do not… https://t.co/Qs1gZvwF6y +05/27/2018,Economists,@kaushikcbasu,"RT @saliltripathi: India is an ""an ancient palimpsest on which layer upon layer of thought and reverie had been inscribed, and yet no succe…" +05/27/2018,Economists,@kaushikcbasu,RT @NYCMayor: The most sacred duty of government is to protect people – especially defenseless children. There is nothing more barbaric tha… +05/27/2018,Economists,@kaushikcbasu,"Diksha Basu’s book review in New York Times. +A Devastating Friendship Forged in India’s Underbelly https://t.co/C22Kilm7ks" +05/27/2018,Economists,@kaushikcbasu,"Financial inclusion +% adults having bank accounts +Canada 100 +Denmark 100 +Norway 100 +Sweden 100 +Singapore 98 +UK 96 +I… https://t.co/Av1KDoU1nE" +05/26/2018,Economists,@kaushikcbasu,"RT @sanjoynarayan: @kaushikcbasu Could be a package deal at birth: cataract, appendix, tonsils, and an additional option of a circumcision." +05/26/2018,Economists,@kaushikcbasu,"Since cataract surgery is needed once in a lifetime and nowadays, they say, it’s harmless to get it done early, I h… https://t.co/uXJC6TrEzb" +05/24/2018,Economists,@kaushikcbasu,The ideal is fake irrationality. The big risk occurs when it is not fake. https://t.co/9nFipHpneP +05/24/2018,Economists,@kaushikcbasu,"My latest piece on financial inclusion around the world, with statistics and comments on Kenya, India, Bangladesh,… https://t.co/bOIeulNuP4" +05/24/2018,Economists,@kaushikcbasu,"W.H. Auden, and someone like Virginia Wolf, keeping watch over notes on Cournot equilibrium. https://t.co/a9ZQdwQ09n" +05/24/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Behavioral economics. This picture is the most powerful illustration of how our minds can be deceived. The squares A and… +05/24/2018,Economists,@kaushikcbasu,10 Career-Altering Quotes from 2018 Commencement Speeches|Vault Blogs|https://t.co/wpktpCwwMR https://t.co/vIwfY1AlQx +05/24/2018,Economists,@kaushikcbasu,"Patrick Kabanda analyzes how the arts can nurture creativity and economic development, a connection commonly overlo… https://t.co/BCIyaIDU48" +05/23/2018,Economists,@kaushikcbasu,Just received my advance copy. Can’t deny feeling wonderful to see it done at last. https://t.co/VK1fs5zoaa +05/23/2018,Economists,@kaushikcbasu,Behavioral economics. This picture is the most powerful illustration of how our minds can be deceived. The squares… https://t.co/91NzVSsOc5 +05/22/2018,Economists,@kaushikcbasu,"With these kinds of numbers US’s enemies must be feeling pretty redundant. +School shootings in the US compared with… https://t.co/6nCQGzDfzU" +05/21/2018,Economists,@kaushikcbasu,It is entirely possible that what you see as red others see as green & what you see as green others see as red. Thi… https://t.co/VhZOzCbmc3 +05/21/2018,Economists,@kaushikcbasu,The art of Imanjama. Dar es Salaam memories. https://t.co/XrgP5ukcoN +05/20/2018,Economists,@kaushikcbasu,"Intricate, beautiful contemporary art from Tanzania. On goat skin, by Malaba. https://t.co/bAtFufuvbf" +05/20/2018,Economists,@kaushikcbasu,Tinga tinga art from Tanzania. https://t.co/xbRIGzqtoP +05/20/2018,Economists,@kaushikcbasu,"More nostalgia. The mystery of the passage of time. Kidwai Nagar, Delhi. 1983 I think. https://t.co/MYmFmiFfEd" +05/20/2018,Economists,@kaushikcbasu,"Memories. My sister’s home, Calcutta. My mother, sisters, nieces and nephew. A zillion years ago. https://t.co/4ztymByGpH" +05/20/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Any more of Megan Markle on TV and someone (name starts with T) is going to throw a fit and put an embargo on imports fro… +05/19/2018,Economists,@kaushikcbasu,Any more of Megan Markle on TV and someone (name starts with T) is going to throw a fit and put an embargo on imports from UK. +05/19/2018,Economists,@kaushikcbasu,"Running your own Frequent Flyer program: If instead of cutting your hair in America you cut it in India, Indonesia,… https://t.co/eWAj9de62U" +05/19/2018,Economists,@kaushikcbasu,Behavioral economics: The only difference between having a haircut in a salon instead of a saloon is you pay more.… https://t.co/vckaYdP9uQ +05/19/2018,Economists,@kaushikcbasu,"Ranjan Ray, in the Wire, on how rising inequality is fueling identity politics, including increased attacks on Dali… https://t.co/nQHmd9fLYt" +05/18/2018,Economists,@kaushikcbasu,My paper on randomized control trials and the ‘dinosaur risk’. https://t.co/MUi585W3lq +05/18/2018,Economists,@kaushikcbasu,"Brandeis IBS Commencement Address: “have concern for fellow human beings whatever their religion, race, gender and… https://t.co/xMNGSizeHI" +05/18/2018,Economists,@kaushikcbasu,A balanced assessment of Universal Basic Income: https://t.co/w3f0BhH81B +05/17/2018,Economists,@kaushikcbasu,"RT @soutikBBC: Ashok Mitra was an intellectual reminiscent of the left-wing French intellectuals of the mid-20th century, person India can…" +05/17/2018,Economists,@kaushikcbasu,Fun article by John Cassidy on game theory and Prisoner’s Dilemma in Trump’s White House. But please don’t take ser… https://t.co/aD257iFk0x +05/17/2018,Economists,@kaushikcbasu,During my time in the Indian government I had many interactions with the Indian media-smart & ever ready to contest… https://t.co/Fm331UdH3B +05/17/2018,Economists,@kaushikcbasu,RT @MIMProductions: The latest #BRICtalk episode has just gone live at https://t.co/fhqE2mi00o - this week @stephensackur speaks to The Wor… +05/17/2018,Economists,@kaushikcbasu,It is possible for central banks to prevent depreciation of the national currency without running down the nation’s… https://t.co/LMyflGK3th +05/16/2018,Economists,@kaushikcbasu,"Before you say God created this world and everything in it, be careful. He is unlikely to take this as a compliment." +05/16/2018,Economists,@kaushikcbasu,@himikac Thank you. +05/16/2018,Economists,@kaushikcbasu,"The world has fewer conspiracies than people think there are. And of the ones that are there, most are of little co… https://t.co/QJzEUyfBqn" +05/15/2018,Economists,@kaushikcbasu,"Late spring, Ithaca. https://t.co/Nq4DVkH14d" +05/15/2018,Economists,@kaushikcbasu,"A collage of three artists: +Laishram Meena Devi, Shipra Bhattacharya and Laxman Aelay. https://t.co/PAFFLJAgmq" +05/14/2018,Economists,@kaushikcbasu,"One kind of election meddling? +One reason why Russia & China are working to help Trump have some (temporary) foreig… https://t.co/6WwMqpfhzj" +05/14/2018,Economists,@kaushikcbasu,"Here is a hypothesis worth testing using randomized control trials: +Regular consumption of a small amount of wasabi… https://t.co/M5xi5D3Q19" +05/14/2018,Economists,@kaushikcbasu,"“We can have democracy ... or we can have great wealth concentrated in the hands of a few, but we can't have both.”… https://t.co/qydUlDJub4" +05/14/2018,Economists,@kaushikcbasu,"From the 2018 Commencement Address to Brandeis International Business School, delivered on 13 May. ""Dr. Manmohan Si… https://t.co/BUfA8oehmm" +05/12/2018,Economists,@kaushikcbasu,"Fascinating paper. My own hunch is it is not just our brain but time itself moves in pixels, discretely, in such ra… https://t.co/ODe1Uf8Sj7" +05/12/2018,Economists,@kaushikcbasu,The world moves ahead by the fact that human beings have a knack for doing the right things for the wrong reasons. +05/12/2018,Economists,@kaushikcbasu,"My Commencement Address to IBS, Brandeis University, on Sunday 13 May, 8 am (US Eastern time) will be live streamed… https://t.co/2PcjOxmoPV" +05/11/2018,Economists,@kaushikcbasu,@shankha5 @sg61us Thank you. +05/11/2018,Economists,@kaushikcbasu,"Wonderful review by James Quandt in NYRB of Mrinal Sen’s life in cinema, which also captures the spirit of Calcutta… https://t.co/W9hpyiWmWc" +05/11/2018,Economists,@kaushikcbasu,"RT @rodrikdani: My latest, on the US-China trade spat https://t.co/vAnIXSO6vT" +05/10/2018,Economists,@kaushikcbasu,"Book on governance and corruption control, edited with Tito Cordella, with chapters by Avinash Dixit, Francis Fukuy… https://t.co/3q8sN1hZa0" +05/10/2018,Economists,@kaushikcbasu,"RT @kaushikcbasu: Sarat Chandra, one of 20th century's greatest writers, was known for his irony. When after Tagore got the Nobel a man fla…" +05/10/2018,Economists,@kaushikcbasu,"RT @TheLancet: ""Sexual and reproductive health & rights are fundamental to people's health and survival, to economic development, and to th…" +05/09/2018,Economists,@kaushikcbasu,RT @strandbookstore: #signedbooks are in! https://t.co/YpDbtehgKd +05/09/2018,Economists,@kaushikcbasu,"The Windfall at the Strand, New York. https://t.co/AWI2ZCKpB3" +05/09/2018,Economists,@kaushikcbasu,"Sarat Chandra, one of 20th century's greatest writers, was known for his irony. When after Tagore got the Nobel a m… https://t.co/MRTE3Fbva2" +05/09/2018,Economists,@kaushikcbasu,"Remembering Tagore on his anniversary. Lines from his Gitanjali: +“Where the world has not been broken up into fragm… https://t.co/8OffMo7sdU" +05/09/2018,Economists,@kaushikcbasu,"Look forward to delivering the Brandeis University IBS Commencement Address 2018. +https://t.co/TPiyy3DkqU" +05/09/2018,Economists,@kaushikcbasu,"Celebrating Tagore's birth anniversary. +In the age of darkness we should invoke the poet, and tell ourselves that a… https://t.co/Fe77HVVBi6" +05/08/2018,Economists,@kaushikcbasu,And it creates a big credibility problem for all future deals struck by US presidents. The question will loom about… https://t.co/w23ea79AFs +05/07/2018,Economists,@kaushikcbasu,"RT @StuartWhatley: ""After decades of corrupt rule, economic stagnation, and other legacies of colonialism, Sub-Saharan Africa's long-term o…" +05/07/2018,Economists,@kaushikcbasu,"Palisades, New York. Enjoyed lecturing to Cornell’s Executive MBA students. https://t.co/SOT7HzAenr" +05/06/2018,Economists,@kaushikcbasu,"The soothing, early-evening silence of Sparkill, New York. https://t.co/BVQHocmTXc" +05/05/2018,Economists,@kaushikcbasu,"RT @kaushikcbasu: My Ethiopian taxi driver took a roundabout route, assured me he would not charge for the diversion & stood by that promis…" +05/05/2018,Economists,@kaushikcbasu,Memories of Dar es Salaam. With Joe Stiglitz and Benno Ndulu. https://t.co/i6KNUE6YHu +05/05/2018,Economists,@kaushikcbasu,"My Ethiopian taxi driver took a roundabout route, assured me he would not charge for the diversion & stood by that… https://t.co/oA4xqeSWvc" +05/05/2018,Economists,@kaushikcbasu,"“All I have is a voice +To undo the folded lie, +The romantic lie in the brain +Of the sensual man-in-the-street +And t… https://t.co/B7Kbnop5jN" +05/05/2018,Economists,@kaushikcbasu,"And here is the Stockholm Statement, issued by 13 economists from around the world, including 4 Chief Economists of… https://t.co/Z82rnvnQqs" +05/04/2018,Economists,@kaushikcbasu,"Avinash Dixit & Ritika Mankar’s superb essay on corruption control in Mint is a must read: +https://t.co/5kxwZkbvwm" +05/04/2018,Economists,@kaushikcbasu,And also good to see a newspaper doing such a serious story. Good for the nation. https://t.co/AaEk2rsdWG +05/03/2018,Economists,@kaushikcbasu,Kwaheri Tanzania. https://t.co/gQ6XsaCbcS +05/03/2018,Economists,@kaushikcbasu,Thank you so much for your message. https://t.co/8WryfmVprL +05/03/2018,Economists,@kaushikcbasu,Sad to leave Tanzania. One of the most friendly countries. https://t.co/2hD9mr0mwQ +05/03/2018,Economists,@kaushikcbasu,Stuck in rain-soaked rush-hour traffic in Dar es Salaam. But we did not mind because it happened on Barack Obama Dr… https://t.co/eTH13yhQes +05/02/2018,Economists,@kaushikcbasu,RT @maniza_zaman: Excellent talks @ 7th annual @ESRFTZ conference in partnership wi @SwedeninTZ. World class economists. Msg of inclusive g… +05/01/2018,Economists,@kaushikcbasu,At the end of a lively debate and discussion with students and professors at the University of Dar es Salaam. https://t.co/PUSAtghKnb +05/01/2018,Economists,@kaushikcbasu,"Artist at work, Dar es Salaam. https://t.co/zJAzcy2K3y" +05/01/2018,Economists,@kaushikcbasu,"In Makangarawe, outside Dar es Salaam. https://t.co/fvOapLdCx6" +04/28/2018,Economists,@kaushikcbasu,"Madison Avenue, New York, of course. https://t.co/NLBbgCp1ub" +04/28/2018,Economists,@kaushikcbasu,Hatred of the other is a handicap. Inability to reason is a handicap. But when hatred of the other and the inabilit… https://t.co/mp9anKy1EX +04/28/2018,Economists,@kaushikcbasu,"RT @EmpowerLtd: 📢 #GrowthMindset Opportunity ⬇️ + +Attend a FREE lecture at @UniofDar given by Economists Prof @JosephEStiglitz & Prof @kaush…" +04/28/2018,Economists,@kaushikcbasu,"I went to see my doctor for a regular check up. After a long discussion the conclusion we reached, and both of us a… https://t.co/8qhGPqWEqM" +04/27/2018,Economists,@kaushikcbasu,"Amartya Sen’s contributions to economics and philosophy celebrated in Japan. +https://t.co/AOK3zFLvj3" +04/27/2018,Economists,@kaushikcbasu,The reason America is ceasing to be a global leader is that no one wants a leader who says my aim is to make myself great again. +04/27/2018,Economists,@kaushikcbasu,Politics is that rare profession in which to be told someone is good at it (Think “He is very good at politics.”) is meant to be criticism. +04/27/2018,Economists,@kaushikcbasu,Looking forward to Dar es Salaam. https://t.co/KtcXGNwmly +04/27/2018,Economists,@kaushikcbasu,"RT @JimYongKim: I’m thrilled to welcome Penny Goldberg, who will bring her vast academic experience, intellectual rigor, and boundless curi…" +04/26/2018,Economists,@kaushikcbasu,"Aggressive Variant Of McCarthyism vs Media, Says Prannoy Roy https://t.co/T7kjKcSy9s via @ndtv" +04/26/2018,Economists,@kaushikcbasu,We tell people not to be selfish & work to make a better world. Could it be that since views differ about what is “… https://t.co/7zaX8XywVM +04/26/2018,Economists,@kaushikcbasu,Beautiful old building in New York. https://t.co/bhjvRpOjmz +04/25/2018,Economists,@kaushikcbasu,"Alaka Basu on the other side of the 'demographic dividend': +https://t.co/RAYBe60OOz" +04/25/2018,Economists,@kaushikcbasu,The art of Isaac Soyer. https://t.co/uZ41I9I8FG +04/24/2018,Economists,@kaushikcbasu,RT @kaushikcbasu: Bangladesh has now grown faster than Pakistan for 12 consecutive years. Its manufacuring sector is doing better than anyo… +04/24/2018,Economists,@kaushikcbasu,My paper on why with the advance of new technology antitrust legislation needs a major overhaul. https://t.co/0tM1FQjxU1 +04/24/2018,Economists,@kaushikcbasu,Bangladesh has now grown faster than Pakistan for 12 consecutive years. Its manufacuring sector is doing better tha… https://t.co/L7h2wcRGk7 +04/23/2018,Economists,@kaushikcbasu,"Having just seen the Grant Wood exhibition at Whitney I am convinced he was one of the great American artists, capt… https://t.co/P1Y8U6VEhq" +04/23/2018,Economists,@kaushikcbasu,One huge advantage of having the delusion of being great is that it dispenses with the need to be great. +04/23/2018,Economists,@kaushikcbasu,Looking out from Whitney Museum. https://t.co/ciRYjY49s4 +04/22/2018,Economists,@kaushikcbasu,"Hotel in Sparkill, New York. Somehow it evokes the same feeling as a Hopper painting. https://t.co/QSg1XtEJWk" +04/22/2018,Economists,@kaushikcbasu,"Endless corridor in Sparkill, New York. https://t.co/gtOvkQ5aNk" +04/22/2018,Economists,@kaushikcbasu,"Remembering a visit with my mother to the home of a gay couple - friends of mine - around this day, 20 years ago. https://t.co/MaBrdhSNQT" +04/22/2018,Economists,@kaushikcbasu,@SuPriyoBabul Thank you for your thoughts on this. Let us try to have a conversation the next time I am in Kolkata. +04/22/2018,Economists,@kaushikcbasu,"“Like Odysseus, the [US] President looked wiser when he was seated; & his hands, though capable & fairly strong, we… https://t.co/8rdl4z5gf6" +04/22/2018,Economists,@kaushikcbasu,"RT @CelestinMonga: Congrats to @JosephEStiglitz, economist extraordinaire, on winning the #2018SidneyPeace Prize for dedicating his life’s…" +04/21/2018,Economists,@kaushikcbasu,"Branko Milanovic on rising inequality and the dangers this poses for the survival of democracy, and therefore our w… https://t.co/0Gdf1oudLT" +04/21/2018,Economists,@kaushikcbasu,Diksha Basu goes paperback. https://t.co/5ReaC8QGDq +04/20/2018,Economists,@kaushikcbasu,Charcoal on paper. My attempt at capturing pensiveness. Nothing quite as uplifting as art. https://t.co/3cSV1W4SrP +04/20/2018,Economists,@kaushikcbasu,"The launch of CRADLE — Cornell Research Academy of Development, Law, and Economics. +https://t.co/v3n5KyDzkK" +04/20/2018,Economists,@kaushikcbasu,ArtExpo New York. Staggering display of talent. https://t.co/mylY3g6I00 +04/20/2018,Economists,@kaushikcbasu,"In an economic crisis to be told that political leaders, instead of professionals with expertise, are taking charge… https://t.co/niAw0BFo0b" +04/19/2018,Economists,@kaushikcbasu,"@PhillipJHay We all miss you deeply, Phil." +04/18/2018,Economists,@kaushikcbasu,The old and the new of New York. https://t.co/R3As4TBDjk +04/17/2018,Economists,@kaushikcbasu,The tragedy of religious fundamentalists & hypernationalists is that instead of spending time trying to do mathemat… https://t.co/kBkUX9IWqv +04/16/2018,Economists,@kaushikcbasu,@saliltripathi Harvard. No papers. Amartya and Emma organized it. +04/16/2018,Economists,@kaushikcbasu,A full day of fascinating discussion and debate on Bangladesh’s development in this beautiful little town in north… https://t.co/zPnrm7mSS3 +04/16/2018,Economists,@kaushikcbasu,"RT @nilanjanaroy: ""Prime Minister, we write to you not just to express our collective sense of shame and not just to give voice to our angu…" +04/16/2018,Economists,@kaushikcbasu,"RT @sagarikaghose: Speak out, women of @BJP4India. Speak out as the mothers and women you are and cry for tiny girls whose bodies lie broke…" +04/15/2018,Economists,@kaushikcbasu,"A peep into the storage room of an art gallery in Chelsea, New York. https://t.co/QQJ7skSOGW" +04/15/2018,Economists,@kaushikcbasu,"After 2 blissful days of listening & speaking on law & economics, a blissful Saturday of gallery hopping on West 24… https://t.co/CZpIeEjdBv" +04/15/2018,Economists,@kaushikcbasu,A slice of New York. https://t.co/vINkpAYTLq +04/14/2018,Economists,@kaushikcbasu,"Morality is the idea of doing good as an end in itself, in being kind and inclusive, in remembering that others—be… https://t.co/a6C8xqmjhe" +04/14/2018,Economists,@kaushikcbasu,"RT @GaelGiraud_AFD: At @Cornell, fantastic contribution by #JohnRoemer (@Yale) presenting the Kantian equilibrium @kaushikcbasu #economics…" +04/13/2018,Economists,@kaushikcbasu,Morality is important but it must not be equated with religion. Religious fundamentalists also have codes of behavi… https://t.co/g025qyKg0a +04/13/2018,Economists,@kaushikcbasu,"RT @AudreyTruschke: International news coverage of one of the recent horrific child #rape cases in India. It is hard to even read this, and…" +04/12/2018,Economists,@kaushikcbasu,Mother Teresa with daffodils. Painting by Myanmar artist Sitt Nyein Aye. https://t.co/IRgHatt18o +04/12/2018,Economists,@kaushikcbasu,"Inaugural conference of CRADLE [Cornell Research Academy of Development, Law & Economics], New York, featuring Jose… https://t.co/7Ew46qjn2W" +04/11/2018,Economists,@kaushikcbasu,@juanauribep 11 +04/11/2018,Economists,@kaushikcbasu,On my reading list. Phenomenal author. I shall soon discover if it’s a phenomenal book. https://t.co/muE9MNha0z +04/11/2018,Economists,@kaushikcbasu,Job creation & growth depend on speed & efficiency. So how many days does it take to get government permission to s… https://t.co/x97M142RyL +04/09/2018,Economists,@kaushikcbasu,"Book on governance, corruption...-International Economic Association-edited with Tito Cordella. Papers by +Avinash D… https://t.co/OCf8UADao7" +04/09/2018,Economists,@kaushikcbasu,RT @MichaelPascoe01: Artist unknown https://t.co/cQULG3IJhs +04/09/2018,Economists,@kaushikcbasu,Political speeches that get applause are usually ones where listeners with diverse beliefs feel reassured that what… https://t.co/hl3tu1nlyP +07/02/2018,Economists,@haroldpollack,RT @bruce_lambert: @haroldpollack Both the wrong-drug and wrong-patient error rate are roughly one per thousand orders or prescriptions. Th… +07/02/2018,Economists,@haroldpollack,That comes with practice. https://t.co/yT4jsKMU3E +07/02/2018,Economists,@haroldpollack,One of my favorite pastimes is to let kids take over my walking-around camera and just get creative. They so often… https://t.co/joptK2N486 +07/02/2018,Economists,@haroldpollack,"RT @EGolberstein: @onceuponA @BrendanSaloner @haroldpollack His second series was titled, ""My little brother is tired of the Pride Parade,""…" +07/02/2018,Economists,@haroldpollack,"RT @EGolberstein: I don't know why my 7 year-old decided that his first foray into photagraphy would be ""Portraits of Health Policy Researc…" +07/02/2018,Economists,@haroldpollack,@KevinMKruse I’m lectured to all the time about how I don’t understand middle-America or flyover country when I liv… https://t.co/XRiC8sOKSF +07/02/2018,Economists,@haroldpollack,@RadioFreeTom Gets better and better. +07/02/2018,Economists,@haroldpollack,@ron_fournier That column’s a punch in the gut. Especially since rampage shootings like that are genuinely hard to… https://t.co/vEOgNCYMlL +07/02/2018,Economists,@haroldpollack,@choo_ek Wow—awesome +07/02/2018,Economists,@haroldpollack,RT @jelani9: While forwarding a picture of the journalist who gave his opinion on-air that the Vietnam war was unwinnable . https://t.co/dx… +07/02/2018,Economists,@haroldpollack,RT @EricLiptonNYT: I think the nominee will be someone whose position on abortion is not clear and will be able to artfully avoid directly… +07/02/2018,Economists,@haroldpollack,"RT @jflier: @haroldpollack Though grateful to have been allowed in, I believe we have (all) given back far more than we took. The same hold…" +07/02/2018,Economists,@haroldpollack,@leahbinder That’s the question +07/02/2018,Economists,@haroldpollack,"RT @NormOrnstein: There is a strong chance three of those Dems will vote for the nominee, and McConnell will let Collins and Murkowski vote…" +07/01/2018,Economists,@haroldpollack,RT @steveabowden: @haroldpollack Terry Crews is in the movie Idiocracy. I did not learn of this fact until rather recently +07/01/2018,Economists,@haroldpollack,"RT @NebraskaBobert: @haroldpollack You maybe already know this, but... + +stegosaurus existed 150 million yrs ago +Tyrannosaurus existed 67 mi…" +07/01/2018,Economists,@haroldpollack,"RT @tonyuop: @haroldpollack When kittens jump all over each other, it is still called a dog pile" +07/01/2018,Economists,@haroldpollack,"RT @bradfowd1: @haroldpollack If you accidentally scrape the side of a rented minivan in Belfast Ireland on a narrow gate, then the rental…" +07/01/2018,Economists,@haroldpollack,RT @TheDanglyBits: @haroldpollack Copper urethral catheters have been found in the ruins of Pompeii. Urology is a very old specialty. +07/01/2018,Economists,@haroldpollack,RT @jacobwcarlson: @haroldpollack @KverityKibz James Lipton is married to the woman who posed as Ms. Scarlet on the box of the original Clu… +07/01/2018,Economists,@haroldpollack,RT @NebraskaBobert: @haroldpollack The Bible tells two stories of people going to heaven without dying: Elijah (the more familiar story) an… +07/01/2018,Economists,@haroldpollack,"RT @CKPolansky: @haroldpollack More people ride the Lexington Ave/4-5-6 line of the NYC subway each day than ride the Chicago, Boston, and…" +07/01/2018,Economists,@haroldpollack,"RT @DaveBaldwinJax: @meelar @haroldpollack Yes, but you couldn't feed or clothe them, or keep the lights on, for more than a few weeks." +07/01/2018,Economists,@haroldpollack,"RT @JMGKal: @meelar @haroldpollack Paris, Texas has its own Eiffel tower, and it looks exactly like what you would imagine" +07/01/2018,Economists,@haroldpollack,RT @meelar: @haroldpollack You could fit every living human being into a city with Paris' density and Texas' landmass +07/01/2018,Economists,@haroldpollack,This is actually a brilliant idea for a cool non-snark Twitter thread. I’ll steal it. Tell me something I don’t kno… https://t.co/zFfqGFGSuT +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @jflier I’ll send a pic in a bit. +07/01/2018,Economists,@haroldpollack,@EGolberstein McConnell’s willingness to wear the black hat is a key strategic asset for Republicans who share his… https://t.co/dek8hZfvZE +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @jflier I bet you our families knew each other. Their candy store was right there. +07/01/2018,Economists,@haroldpollack,@MitchellCares @FAIRmediawatch @nytimes Agreed. And in some cases “opinion outlet” is over-generous.... +07/01/2018,Economists,@haroldpollack,"RT @jflier: @haroldpollack In a time when refugees and migrations are under such assault, important to tell these stories, and thank US for…" +07/01/2018,Economists,@haroldpollack,"RT @CarterRubin: The Los Angeles metro is producing housing at the same rate as Detroit, Birmingham, Duluth and St Louis metros. A third th…" +07/01/2018,Economists,@haroldpollack,"@jflier My sister is much more knowledgeable. But yeah. I bet some of our ancestors knew each other. Who knows, maybe we’re 8th cousins." +07/01/2018,Economists,@haroldpollack,@MitchellCares @FAIRmediawatch A truth/accuracy chart would be more valuable than a partisan chart. One can’t compa… https://t.co/85chelAjLQ +07/01/2018,Economists,@haroldpollack,@jflier Sounds exactly like my grandparents’ route to Grand Concourse from Belarus +07/01/2018,Economists,@haroldpollack,Lost 10lbs by not lifting for two weeks. Sadly that’s 10lbs off my bench pressing set. +07/01/2018,Economists,@haroldpollack,@R_Thaler @DeanBaker13 I think lower ceo pay is doable. One problem is that pay is often pegged to that down the li… https://t.co/PtyDdb413A +07/01/2018,Economists,@haroldpollack,@RadioFreeTom @joshtpm Agree regarding foodfight working in Trump’s favor. Disagree regarding coldly civil but emph… https://t.co/eC82zzRFsO +07/01/2018,Economists,@haroldpollack,🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️ https://t.co/hfROEV0a5C +07/01/2018,Economists,@haroldpollack,@NormOrnstein Didn’t he say: “the best way to respect old rulings is to respect old rulings?” Oh wait— +07/01/2018,Economists,@haroldpollack,@JudyCBPP Ooh—We’ll be over uninvited at 5.... +07/01/2018,Economists,@haroldpollack,@mistergoat Yup—but effing Electoral College.... +07/01/2018,Economists,@haroldpollack,RT @mattyglesias: The see-sawing between “we need more civility” and “we need less political correctness” is really something to behold. +07/01/2018,Economists,@haroldpollack,@DaveBaldwinJax Indeed. +07/01/2018,Economists,@haroldpollack,I don’t know if #KeepFamliesTogether is a tactical winner. We must be politically smart. But it is a bedrock princi… https://t.co/NERF6i3wpk +07/01/2018,Economists,@haroldpollack,"RT @mattyglesias: For all the talk of liberal bubbles, it can’t be said enough that the anti-immigrant panic is being led by people who hav…" +07/01/2018,Economists,@haroldpollack,RT @daveweigel: Is the movement due to the immigration fight? ¯\_(ツ)_/¯ But there's a hardened consensus that any immigration fight is goi… +07/01/2018,Economists,@haroldpollack,@JeffRWLawyer @profmusgrave Wendy’s square hamburger (w/o mayo). +07/01/2018,Economists,@haroldpollack,RT @CharlesFinch: The #FamiliesBelongTogetherMarch felt huge on the ground. Turns out it was. #FBTChi #chicagostrong #TrumpConcentrationCam… +07/01/2018,Economists,@haroldpollack,@Dennisabm Scientists can't explain it.... +07/01/2018,Economists,@haroldpollack,Those of us who oppose mistreating immigrants are mainstream America. Let's proceed with confidence+civility at the… https://t.co/MkC0znA1HO +07/01/2018,Economists,@haroldpollack,@aravosis Trump desperately wants American politics to be a wild food fight. Let's not give him that. +07/01/2018,Economists,@haroldpollack,"@Dennisabm Indeed, though as your response indicates, no morning is perfect.... :) (Go White Sox!)" +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 1/5 https://t.co/n3jJ1I12wL" +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 4/5 https://t.co/o37ZPj3k5B" +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: The second critical message from Chicago's #KeepFamilesTogetherMarch 2/2 https://t.co/rw9J2bbkWF +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: The first critical message from Chicago's #KeepFamilesTogetherMarch 1/2 https://t.co/PmzzTG3I7h +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Superheroes come in many shapes and sizes. Chicago #KeepFamiliesTogetherMarch https://t.co/38ZFqKfZvK +07/01/2018,Economists,@haroldpollack,"RT @haroldpollack: Some signs from Chicago #KeepFamilesTogetherMarch 1/237 or whatever. (Ok, ""whatever"" is about 15....) https://t.co/lonRw…" +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Chicago #KeepFamilesTogetherMarch: The crowd... 1/9 https://t.co/EEWb2xW8d4 +07/01/2018,Economists,@haroldpollack,RT @haroldpollack: Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Take it… +07/01/2018,Economists,@haroldpollack,RT @EricPatashnik: This is a great opportunity for political scientists. The @monkeycageblog team is amazing. It is fantastic to see the i… +07/01/2018,Economists,@haroldpollack,RT @causalinf: The Giffen good is a great example to me of the merits of neoclassical reasoning. Very counterintuitive to the point people… +07/01/2018,Economists,@haroldpollack,RT @rgreersmith: @haroldpollack @wheelieboy #Dinosaurs4Immigration https://t.co/fbv3lFMIUA +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 5/5 https://t.co/0Mnp6jQOas" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 4/5 https://t.co/o37ZPj3k5B" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 3/5 https://t.co/XnuIda20XT" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 2/5 https://t.co/dwdYuuh5Qp" +07/01/2018,Economists,@haroldpollack,"And finally, some the speakers at the podium for Chicago's #KeepFamilesTogetherMarch 1/5 https://t.co/n3jJ1I12wL" +07/01/2018,Economists,@haroldpollack,"RT @trekonomics: @haroldpollack Our 10yr old today (he's been reading @repjohnlewis' graphic novel ""March"") + +""You know guys, movements take…" +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 9/9 https://t.co/yKctT4ryzs +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 8/9 https://t.co/vPM2lHITwG +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 7/9 https://t.co/FjSWMxtPKP +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 6/9 https://t.co/D649FMwPzk +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 5/9 https://t.co/hJGZeb1LVO +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 4/9 https://t.co/kW0aasi1jl +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 3/9 https://t.co/daqNiGZjQc +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 2/9 https://t.co/ztsScCIxKo +07/01/2018,Economists,@haroldpollack,Chicago #KeepFamilesTogetherMarch: The crowd... 1/9 https://t.co/EEWb2xW8d4 +07/01/2018,Economists,@haroldpollack,"@CDBeee Ugh. Sorry to hear that, Chicago's was family friendly." +07/01/2018,Economists,@haroldpollack,The second critical message from Chicago's #KeepFamilesTogetherMarch 2/2 https://t.co/rw9J2bbkWF +07/01/2018,Economists,@haroldpollack,The first critical message from Chicago's #KeepFamilesTogetherMarch 1/2 https://t.co/PmzzTG3I7h +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 4/4 https://t.co/2ifk9ssIoQ +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 3/4 https://t.co/sXiSIMyK8h +07/01/2018,Economists,@haroldpollack,Some young people of Chicago's #KeepFamilesTogetherMarch 2/4 https://t.co/JoQ8SJP495 +07/01/2018,Economists,@haroldpollack,Some young people from Chicago's #KeepFamilesTogetherMarch. Don't ever let anyone complain about the young folk. Ta… https://t.co/cETbx4nhIe +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 15/237 or whatever=15. https://t.co/EZTs9Jv0QY +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 14/237 or whatever https://t.co/V13WtC2HSc +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 13/237 or whatever https://t.co/WPui56JlJy +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 12/237 or whatever https://t.co/Em8DxzaEfE +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 11/237 or whatever https://t.co/kMOkUJL6Yd +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 10/237 or whatever https://t.co/Q299NYxXSz +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 9/237 or whatever https://t.co/4201ggi7jw +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 8/237 or whatever https://t.co/wzSrp12LyN +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 7/237 or whatever https://t.co/mOedMUm691 +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 6/237 or whatever https://t.co/spZMucgUew +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 5/237 or whatever https://t.co/6vKnNKFwFS +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 4/237 or whatever https://t.co/zlICaQpJSd +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 3/237 or whatever. https://t.co/1UtHiil9mO +07/01/2018,Economists,@haroldpollack,Some signs from Chicago #KeepFamilesTogetherMarch 2/237 or whatever https://t.co/48vqKMA15q +07/01/2018,Economists,@haroldpollack,"Some signs from Chicago #KeepFamilesTogetherMarch 1/237 or whatever. (Ok, ""whatever"" is about 15....) https://t.co/lonRwoVKTM" +07/01/2018,Economists,@haroldpollack,"@MitchellCares Hey you could at lest give me a h/t for my pic, man." +07/01/2018,Economists,@haroldpollack,@ACAResource Leg +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/3u8TXZHswZ +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/reudUXDOGZ +07/01/2018,Economists,@haroldpollack,Big thanks to Chicago Police and Fire Department folk keeping everyone safe and as cool as possible on an incredibl… https://t.co/rq7F67w9VD +07/01/2018,Economists,@haroldpollack,"More #KeepFamilesTogetherMarch Captain America, just because. https://t.co/vTY9o3Morc" +07/01/2018,Economists,@haroldpollack,Superheroes come in many shapes and sizes. Chicago #KeepFamiliesTogetherMarch https://t.co/38ZFqKfZvK +07/01/2018,Economists,@haroldpollack,"Pretty impressive ""The Dude"" tattoo, Spotted at Chicago #KeepFamilesTogetherMarch... https://t.co/I2sce05ezv" +07/01/2018,Economists,@haroldpollack,@MartinSGaynor @causalinf America has truly been the promised land for so many of us. We can't slam the door behind… https://t.co/iTCLLFpwkk +07/01/2018,Economists,@haroldpollack,@annemulholland2 @causalinf @peterlorentzen Certainly a big one. We had to be cruel to be kind.... +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf I grew up with the children of many survivors. Thinking about them a lot lately. +07/01/2018,Economists,@haroldpollack,RT @causalinf: @tribalidentity @haroldpollack Thank you for this link. I’m reading the Wikipedia page about Father Patrick Desbois now. Jus… +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Have not.... +07/01/2018,Economists,@haroldpollack,"RT @causalinf: @haroldpollack @peterlorentzen They’re also very attractive people, in all respects, so it’s an interesting show to watch be…" +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Couldn’t get the link to work. +07/01/2018,Economists,@haroldpollack,@causalinf @tribalidentity Hard habit to break.... +07/01/2018,Economists,@haroldpollack,"@causalinf @tribalidentity My favorite +https://t.co/EHHwU92slA" +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf Those folk are the best. +07/01/2018,Economists,@haroldpollack,"RT @causalinf: @haroldpollack @peterlorentzen I get it. I know it’s a deeply flawed system of organizing society, so I’m being somewhat fac…" +07/01/2018,Economists,@haroldpollack,@causalinf @tribalidentity They sent dissidents and refuseniks to these facilities as punishment. Some weekend you… https://t.co/rYztzxv7M7 +07/01/2018,Economists,@haroldpollack,@causalinf Never actually have seen it. My culturally-sophisticated friends love it. +07/01/2018,Economists,@haroldpollack,@peterlorentzen @causalinf Many of my older relatives were communists. Came to for understandable human reasons. B… https://t.co/zxaatr76q9 +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf 83.... +07/01/2018,Economists,@haroldpollack,@tribalidentity @causalinf What was it like in ‘93 compared with today? +07/01/2018,Economists,@haroldpollack,"@tribalidentity @causalinf Prison camps, purges, and forced psychiatric hospitalizations made some of them a bit snippy...." +07/01/2018,Economists,@haroldpollack,@causalinf I grew up with refugees from USSR. Made me more anti-communist than most Republicans these days.... +07/01/2018,Economists,@haroldpollack,@drvox There were left 3rd party folk recruiting at today’s Chicago event.🤦‍♀️ +06/30/2018,Economists,@haroldpollack,@Neoavatara Well in 2016 a right wing authoritarian ran against an imperfect but safe conventional opponent. In my… https://t.co/A0wQvLK3yU +06/30/2018,Economists,@haroldpollack,@dariustahir @amitabhchandra2 That doesn’t really work in the era of efficient global transportation. +06/30/2018,Economists,@haroldpollack,"RT @Bill_Gardner: @haroldpollack Yes. And notice that while @davidharsanyi finds that it is transparent what ‘free expression’ requires, ‘d…" +06/30/2018,Economists,@haroldpollack,"Its a small thing, but well-played @TweetOfGodd, well played. https://t.co/1zXx9pNrpd" +06/30/2018,Economists,@haroldpollack,@ThomasCRicketts Also legit fear. +06/30/2018,Economists,@haroldpollack,@amitabhchandra2 That's legit fear. +06/30/2018,Economists,@haroldpollack,"Kindof amazing that if you support NATO, global economic institutions, open trade, vigorous foreign policy that con… https://t.co/UPZ1HdRJ9n" +06/30/2018,Economists,@haroldpollack,@amitabhchandra2 I’m nervous about this one. Reform and replace a better frame. +06/30/2018,Economists,@haroldpollack,"Of Course, It Could Not Happen Here via @NYTimes https://t.co/OfVotfNPGw" +06/30/2018,Economists,@haroldpollack,"RT @gregggonsalves: Remember as we see temperatures rise this weekend, that heat waves are public health crises, often affecting the elderl…" +06/30/2018,Economists,@haroldpollack,RT @LynnBlewett: 45% of children in rural areas rely on Mcaid for their health insurance coverage! 45%! thank you @GeorgetownCCF! https:… +06/30/2018,Economists,@haroldpollack,"RT @ThePlumLineGS: This is unfortunate. + +Trump faces a big test now. After Annapolis, does he stop directing the rage of his supporters at…" +06/30/2018,Economists,@haroldpollack,Anyone who has read How Democracies Die will be specifically scared by that article title. https://t.co/zcwtOt3K4F +06/30/2018,Economists,@haroldpollack,"RT @EricPatashnik: All health care systems face tradeoffs btwn access, cost and quality, & must decide how much to rely on standardized evi…" +06/30/2018,Economists,@haroldpollack,RT @SameFacts: The great Hungarian economist János Kornai protests the authoritarian takeover of his homeland. https://t.co/QI4mTsUxog +06/30/2018,Economists,@haroldpollack,@bradwrightphd Watching a bunch of machine learning videos? +06/30/2018,Economists,@haroldpollack,"RT @moira: Here's the unroll of my defense the call to #abolishICE on national security merits. h/t @reftpt +https://t.co/ygcOw2cn1V" +06/30/2018,Economists,@haroldpollack,@Park10A @Neoavatara @ThePlumLineGS Immigration reform is one set of difficult issues. Investigating crimes committ… https://t.co/baS5AP1UyF +06/30/2018,Economists,@haroldpollack,"@kdrum @MotherJones Bless, man." +06/30/2018,Economists,@haroldpollack,@Neoavatara Can't imagine. +06/30/2018,Economists,@haroldpollack,RT @EricColumbus: @Neoavatara @haroldpollack @ThePlumLineGS Many have argued for an opposite approach from that ICE-HSI letter -- to reunit… +06/30/2018,Economists,@haroldpollack,@jplesniewski Awesome. Say hi for me. +06/30/2018,Economists,@haroldpollack,RT @jplesniewski: @haroldpollack The CHC needs to read Street Level Bureaucrats. Abolishing ICE and replacing it with orgs dedicated to dec… +06/30/2018,Economists,@haroldpollack,@bdhumbert Let’s leave it there. +06/30/2018,Economists,@haroldpollack,@Neoavatara @ThePlumLineGS These policies have damaged basic law enforcement legitimacy in combatting transnational… https://t.co/6jpW8rgTEG +06/30/2018,Economists,@haroldpollack,RT @ThePlumLineGS: @Neoavatara @haroldpollack nonstory +06/30/2018,Economists,@haroldpollack,"RT @OwlTamale: @haroldpollack His reasonings can be a bit ham-handed, tbh. But he's never let me down, in court, or coldcuts" +06/30/2018,Economists,@haroldpollack,@OwlTamale @mattyglesias Wait—I know him. The Lochner piece was brilliant. But keeps slicing things too thin. I mad… https://t.co/EOFgUdKcRA +06/30/2018,Economists,@haroldpollack,"RT @mattyglesias: Hillary went to Yale Law, right? Trump should pick her." +06/30/2018,Economists,@haroldpollack,"@Neoavatara @ThePlumLineGS There is a decent case to reorganize it, to separate the traditional law enforcement/nat… https://t.co/MPDteajbaa" +06/30/2018,Economists,@haroldpollack,"RT @TomSugrue: Protest is seldom polite. It’s most effective when it’s confrontational, unsettling, disruptive. Calls for civility misunder…" +06/30/2018,Economists,@haroldpollack,@TomSugrue @mathbabedotorg Good piece +06/30/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 The gerontocracy problem is real. Would at least help with that. +06/30/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 Yeah dunno how to deal with that one. +06/30/2018,Economists,@haroldpollack,https://t.co/jfYx2wXxcH +06/29/2018,Economists,@haroldpollack,@Neoavatara @jadler1969 Maybe—who knows. It is a better process. That motivates me more in this instance than tryin… https://t.co/RitZk2LA5c +06/29/2018,Economists,@haroldpollack,@jadler1969 @Neoavatara Still a better system. +06/29/2018,Economists,@haroldpollack,@C_Garthwaite Just a huge problem across so many levels of government. +06/29/2018,Economists,@haroldpollack,RT @C_Garthwaite: This is also a problem with the judiciary -- federal judges makes less than first year associates at many big law firms.… +06/29/2018,Economists,@haroldpollack,"@bdhumbert Also remember when Trump claimed that he sent investigators to Hawaii, and we wouldn’t believe what they were finding?" +06/29/2018,Economists,@haroldpollack,@bdhumbert Having black friend or admiring particular black ally doesn’t make you a non-racist. Many segregationist… https://t.co/QtAgAa1Ry1 +06/29/2018,Economists,@haroldpollack,@Conservative58 Awesome. BTW--You should be very proud of your daughter's professionalism and excellent work. Big grant submitted today. +06/29/2018,Economists,@haroldpollack,"@bdhumbert Birtherism, Central Park 5, comments on Mexican-American judge called the textbook definition of a racis… https://t.co/Yv7RZYe2ms" +06/29/2018,Economists,@haroldpollack,@bdhumbert Being white was never the sin. People made a bad mistake+hurt our country by supporting a grifting+errat… https://t.co/sN4fIjkGuU +06/29/2018,Economists,@haroldpollack,This letter from 19 ICE investigators is quite interesting. Proper public anger regarding ICE's harsh policies towa… https://t.co/tyLIwsDoBc +06/29/2018,Economists,@haroldpollack,@bdhumbert SHOULD was correct. Could was another matter.... +06/29/2018,Economists,@haroldpollack,"Totally sick of final proofreads on the R01 going in 3pm today. Did that one last proofread, ready to vomit already… https://t.co/yhMrMzG5Qj" +06/29/2018,Economists,@haroldpollack,Hey Amy's Dad--Tell her she left her sweater in my office. +06/29/2018,Economists,@haroldpollack,@wheelieboy I retweeted with direct link. Odd. +06/29/2018,Economists,@haroldpollack,This link seems to work better https://t.co/p0hlvuvZzQ https://t.co/XScQwaj7yn +06/29/2018,Economists,@haroldpollack,@jimgeraghty Permit to purchase should be an area in which bipartisan agreement is possible. Law enforcement might… https://t.co/ji3B1pAn6M +06/29/2018,Economists,@haroldpollack,"DId I get anything wrong here? || +There’s no silver lining to Trump’s win. We have to make our own. https://t.co/gEQAVhJ894" +06/29/2018,Economists,@haroldpollack,"@NoFuxLeft2give @Evan_McMullin And to you. Hard times, but the clarity of the situation is bracing." +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin Me too. Out to march tomorrow. Still my basic perspective 18 months in… https://t.co/8aOb4btAFf +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin Agree. I hope there is a reachable moderate group who recognize the unworthiness of… https://t.co/gU3zeBH7RO +06/29/2018,Economists,@haroldpollack,@tmwinsett @ScandalABC Tried to. Failed to make sense of any of it. +06/29/2018,Economists,@haroldpollack,@bartbing71 @dziblatt @cblatts It is a great book. +06/29/2018,Economists,@haroldpollack,@NoFuxLeft2give @Evan_McMullin I prefer to focus my anger+fire on Trump supporters who are harming the country. +06/29/2018,Economists,@haroldpollack,"@NoFuxLeft2give @Evan_McMullin Uh dude, I am a proud liberal Democrat." +06/29/2018,Economists,@haroldpollack,"RT @SeanCasten: Confession: sometimes when I watch the POTUS actively weaken European alliances, incite violence against journalists, spout…" +06/29/2018,Economists,@haroldpollack,@C_Garthwaite @amitabhchandra2 You have both been reported. +06/29/2018,Economists,@haroldpollack,"RT @ArtKellermannMD: With all respect, I hope this does not happen. The USPHS Commissioned Corps performs essential tasks that protect the…" +06/29/2018,Economists,@haroldpollack,The only plot-line more lamely over-written than @ScandalABC is the current season of actual US politics. Every day more unbelievable. +06/29/2018,Economists,@haroldpollack,Threats to America's global role: The call came from inside the house.... https://t.co/CpO1Ih1S7Q +06/29/2018,Economists,@haroldpollack,Props to @veppol and all the social work graduates dealing with the practicalities of the LSW exam and other relate… https://t.co/PT1H5Q4KQL +06/29/2018,Economists,@haroldpollack,RT @bylenasun: Today marks important milestone in Congo's Ebola outbreak: Everyone who has been in contact with the last confirmed case ha… +06/29/2018,Economists,@haroldpollack,"RT @JoyAnnReid: When they thought she would be president, Republicans vowed to block a Hillary Clinton SCOTUS pick come what may, for four…" +06/29/2018,Economists,@haroldpollack,"RT @ChadBown: 1. America designed the WTO +2. America benefits massively from the WTO + +Withdrawal cuts off American farmers, workers and com…" +06/29/2018,Economists,@haroldpollack,"RT @LisaRosenbaum17: ""These common interpretations of end-of-life spending flirt with a statistical fallacy: Those who end up dying are not…" +06/29/2018,Economists,@haroldpollack,"RT @peterbachmd: @LisaRosenbaum17 Interesting analysis, but we showed 15 years ago using basic rules of study design that end of life studi…" +06/29/2018,Economists,@haroldpollack,"RT @dziblatt: @cblatts Read our book with the title ""How Democracies Die"" and you will see it very explicitly elaborates the historical con…" +06/29/2018,Economists,@haroldpollack,"RT @Evan_McMullin: It's easy to complain about media bias, which exists on each side. However, what the country needs now from GOP leaders…" +07/02/2018,Economists,@econoflove,RT @CatoInstitute: Illegal immigrants are 47% less likely to be incarcerated than native-born Americans. Legal immigrants are 78% less like… +07/02/2018,Economists,@econoflove,Elena Stancanelli and I wrote a review of related economic literature on sexual discrimination and harassment for t… https://t.co/LoDTz0AED1 +07/02/2018,Economists,@econoflove,"RT @TheEconomist: The world’s most valuable resource is no longer oil, but data https://t.co/s8umseSYV5" +07/01/2018,Economists,@econoflove,The United States is in the midst of a demographic transition. Policymakers need to prepare for the impact it will… https://t.co/bBoci5wkWs +07/01/2018,Economists,@econoflove,updated webpage!! thanks to my talented daughter Esther Pamir https://t.co/ZZMqaDXXdP +07/01/2018,Economists,@econoflove,"RT @boysenandrew: @econoflove Alternatively, increase immigration?" +07/01/2018,Economists,@econoflove,"is 80 the new 65? +To stabilize old-age dependency ratio OECD countries need to increase retirement age by as much… https://t.co/zNEwIuFMuM" +07/01/2018,Economists,@econoflove,"Acting Saudi: men's views of women working outside the household, their misperception of other mens' views, experim… https://t.co/lTA177Tt28" +07/01/2018,Economists,@econoflove,RT @timurkuran: In China social hostilities are low overall because most Chinese are irreligious. They are not low in Muslim- & Buddhist-he… +07/01/2018,Economists,@econoflove,RT @bill_easterly: Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if other… +07/01/2018,Economists,@econoflove,"RT @DivorceFinance: Divorce Negatively Impacts People’s Retirement Readiness +The Center for Retirement Research finds that the net worth of…" +07/01/2018,Economists,@econoflove,Contemporary working mothers actually spend significantly more time per child with their children then did stay – a… https://t.co/TqPrzy5RBH +07/01/2018,Economists,@econoflove,RT @martha_j_bailey: Wasn’t @Econ_Sandy the editor of this special issue? https://t.co/WCh1qmGRSI +06/30/2018,Economists,@econoflove,RT @TheEconomist: Birds used cigarette butts to line only those nests that were infested with ticks https://t.co/Xm5YsGbg6U +06/29/2018,Economists,@econoflove,"When it comes to childcare, grandparents are the least stressful option for mum and dad https://t.co/noILCpbXQK …… https://t.co/HKt1sA3JFa" +06/29/2018,Economists,@econoflove,"RT @KeithNHumphreys: Dance like no one’s watching and write journal articles like no one’s reading because, face it, they aren’t." +06/29/2018,Economists,@econoflove,RT @jodiecongirl: they're strategizing how to locate some women I assume https://t.co/ldmlV3mtAM +06/29/2018,Economists,@econoflove,Git Shabbes +06/29/2018,Economists,@econoflove,@wwwojtekk @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Viva Polska +06/29/2018,Economists,@econoflove,"RT @wwwojtekk: @econoflove @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David No doubt, it does…" +06/29/2018,Economists,@econoflove,Coming from co editor of JPAM https://t.co/YgxUty1jHA +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @JoshuaSGoodman @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Th… +06/29/2018,Economists,@econoflove,RT @JoshuaSGoodman: @wwwojtekk @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Th… +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @causalinf @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David Special issues dri… +06/29/2018,Economists,@econoflove,"""Breastfeeding Mothers Stop Nursing Sooner when Living with Smokers"" https://t.co/kbyopxgcGf … https://t.co/kbyopxgcGf" +06/29/2018,Economists,@econoflove,RT @causalinf: @wwwojtekk @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David That applied econo… +06/29/2018,Economists,@econoflove,@wwwojtekk @causalinf @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @David It depends… https://t.co/l7ix2wax38 +06/29/2018,Economists,@econoflove,RT @wwwojtekk: Our failure to tax imputed rent led to all of this https://t.co/1cKAih7MbC +06/29/2018,Economists,@econoflove,RT @wwwojtekk: @econoflove @clarivate @ShellyJLundberg @JustinWolfers @martha_j_bailey @franceswoolley @causalinf @David A single paper by… +06/29/2018,Economists,@econoflove,@MinneapolisFed @ShellyJLundberg ....Top econ departments and research institutions. We don’t have Institutes for g… https://t.co/ObSTb1wtCa +06/29/2018,Economists,@econoflove,@MinneapolisFed @ShellyJLundberg I am happy for my colleagues in macro economics A more fundamental problem in econ… https://t.co/2WyYMoyWoP +06/29/2018,Economists,@econoflove,RT @TrevonDLogan: We can’t keep doing this and call ourselves evaluating research objectively. 8/9 re-reviewed articles which were publishe… +06/29/2018,Economists,@econoflove,"RT @mileskimball: My first piece as a Bloomberg columnist! + +""Fight the Backlash Against Retirement Planning Nudge: +Everyone benefits when p…" +06/29/2018,Economists,@econoflove,@Undercoverhist @clarivate History of economic thought may be treated even worse in the econ profession than econom… https://t.co/bTmkcd1nc3 +06/29/2018,Economists,@econoflove,..[these three journals ranked between 130 and 144 in 2017] could it be related to GENDER? @shellyJLundberg… https://t.co/SkBUx3dzgK +06/29/2018,Economists,@econoflove,Journals publishing relatively much on demographic economics and gender economics don't get very high impact factor… https://t.co/u3jsI2l62a +06/29/2018,Economists,@econoflove,REHO went from 167th/347 economics journals for 2016 to 139th/353 in 2017. The challenge is to keep this up while c… https://t.co/Yd9vmUuRiW +06/29/2018,Economists,@econoflove,lots more than 5 in top 5? https://t.co/AZBikZptbL +06/29/2018,Economists,@econoflove,#sexratios are important variables deserving more space in economic modeling https://t.co/n8QXPob7Vh +06/29/2018,Economists,@econoflove,J of Human Resources is now 2d top journal in economics ranked by citations (IF)! right after QJE. Last year it was… https://t.co/FPJD4RLHE5 +06/29/2018,Economists,@econoflove,"new IF journal rankings: QJE still first, but now JEP is 5th, JPE is 8th, AER is 11th, econometrica is 22, JEL is 2… https://t.co/HwPfZ05Z1c" +06/29/2018,Economists,@econoflove,is other parent really a deadbeat? https://t.co/DUt4375ryK it is good to have the option to file claims but could y… https://t.co/xvx4UVOZkm +06/29/2018,Economists,@econoflove,"RT @CdnWomenEcon: https://t.co/Qu4nYXLeeQ Is Dropping The ""Hotness"" Rating After Professors Called It Sexist https://t.co/3YTCtl5BN9 via @j…" +06/28/2018,Economists,@econoflove,"""teachers have been empowered today, as they can no longer be compelled to financially support a union that does no… https://t.co/2gsA6Mkceh" +06/28/2018,Economists,@econoflove,@AbmanRyan https://t.co/aY7gOuY1S8 +06/28/2018,Economists,@econoflove,"RT @TrevonDLogan: One third of all Freedmen’s Bureau rations went to whites. In Alabama, well over half of the rations went to whites. Alth…" +06/28/2018,Economists,@econoflove,Thanks. I will post your tweets later on buffer +06/28/2018,Economists,@econoflove,"good question asked by @MarinaAdshade: There is a verb ""mothering"", the act of which could be done all genders (spe… https://t.co/Fgao1vXroS" +06/28/2018,Economists,@econoflove,this is unacceptable https://t.co/oE4esfqMWo +06/28/2018,Economists,@econoflove,overview of some of my research on the economics of #sexratios https://t.co/tp37acHbUJ +06/28/2018,Economists,@econoflove,economists need to pay more attention to #sexratios https://t.co/n8QXPob7Vh +06/28/2018,Economists,@econoflove,this story needs to be told. Most Americans have no idea of how bad Blacks have been treated in the US. https://t.co/vLG2WHQVp9 +06/28/2018,Economists,@econoflove,where are women most likely to postpone #motherhood? https://t.co/wVYzs6uehD +06/28/2018,Economists,@econoflove,"⚡️ “About #sexratios” + +https://t.co/WG3kivXnZG" +06/28/2018,Economists,@econoflove,this important article by Maria Porter was already cited 7 times in journals and has contributed to REHO's great 20… https://t.co/VPKPIFiVbe +06/28/2018,Economists,@econoflove,https://t.co/TkHjy8xIUn economists also study the music industry https://t.co/TkHjy8xIUn +06/28/2018,Economists,@econoflove,@ImranRasul3 @irmaclots on bilingualism REHO has published REHO 14-00120 https://t.co/KCXftOL0gn by Barry Chiswick… https://t.co/ObQRBJlKVI +06/28/2018,Economists,@econoflove,"""The Effects of In Utero Exposure to the 1918 Influenza Pandemic on Family Formation"" find effects of who women mar… https://t.co/XXGJpXO96c" +06/28/2018,Economists,@econoflove,"RT @rboheim: Jérôme Adda (Bocconi University), „Love, Ethnicity or Legal Status? Natural Experiments in Marriage Markets“ #espe2018 https:/…" +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972 +2015 impact factor 1.290 ) 139 OUT OF 353 ECON JOURNALS" +06/27/2018,Economists,@econoflove,Furthermore the hotness factor is ageist https://t.co/mKfYVSH5pq +06/27/2018,Economists,@econoflove,@HousingEcon Are you the Joshua Miller who just published in REHO? +06/27/2018,Economists,@econoflove,"REHO got its Impact factor for 2017: 1.33, which implies a rank of 139 out of 353. Just a bit below top tier of al… https://t.co/73cRxUSmgJ" +06/27/2018,Economists,@econoflove,keep us updated on why these two journals were punished https://t.co/SduJCFfiTc +06/27/2018,Economists,@econoflove,@Erdal_Tekin_ @JPAM_DC what percentage of the articles in @JPAM_DC are authored by economists and is it ranked as a… https://t.co/yH3yYKPF2U +06/27/2018,Economists,@econoflove,@NGimenezNadal @chvanhoutven @BhashMazumder @LeeBadgett @TimDiette @AlexTheloudis @SevincRende @sarahgracesee… https://t.co/nVtyT5uy5e +06/27/2018,Economists,@econoflove,new record impact factor for REHO: 1.33 @ChrisMHerbst @ValeriaBordone @jiondrich @jasonmfletcher @NFolbre @mguldi… https://t.co/bCWi4Nk5Ky +06/27/2018,Economists,@econoflove,new record impact factor for REHO: 1.33 @DanielePaserman @ShellyJLundberg @McGarryBE @cmommaerts @ipogadog… https://t.co/d0upylXyHn +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972​ +2015 impact factor 1.290 ) @chvanhoutven… https://t.co/rUxp1X1TVI" +06/27/2018,Economists,@econoflove,"new record impact factor for REHO: 1.33 (2016 impact factor 0.972​ +2015 impact factor 1.290 ) @Springernomics… https://t.co/MxVQvzxzsH" +06/27/2018,Economists,@econoflove,So sorry I missed #espe2018 in my hometown of Antwerpen https://t.co/Sw6ykTUHc6 +06/27/2018,Economists,@econoflove,@Stijn_Baert Do Belgians typically retire at 55? +06/27/2018,Economists,@econoflove,listen to what @childtrends suggests to help reverse some of the trauma that immigrant children may have experience… https://t.co/8ahOjE3Fk9 +06/27/2018,Economists,@econoflove,States allowing same-sex marriage showed a 6-16% increase in same-sex mortgage applications. https://t.co/UtMZQhGjQC +06/27/2018,Economists,@econoflove,Glad to see that REHOs former editor for health economics presented a paper at this conference. New editor for hea… https://t.co/bpYn4RJ9t4 +06/26/2018,Economists,@econoflove,"RT @DaphneBramham: Somehow when its #MeToo and the women are from a polygamous community, the punishment is nothing more than house arrest…" +06/26/2018,Economists,@econoflove,I agree that it is outrageous polygamy is implicitly allowed in British Columbia https://t.co/3ntsxeNI00 +06/26/2018,Economists,@econoflove,"(@EJ_RES) +Italian women face dramatic earnings losses after the birth of a child, #RES2018 study @LSEforBusiness… https://t.co/S8b4CpiyfD" +06/25/2018,Economists,@econoflove,"RT @NMDeterding: An example of the importance of strong #implementation studies. If we learn #why reform efforts fail to produce results, w…" +06/25/2018,Economists,@econoflove,Marie curie born and raised in #Poland was the first woman to obtain a doctorate in France!! https://t.co/lkL1JrD87b +06/25/2018,Economists,@econoflove,RT @kfzimmermann: Founder of Unified Growth Theory Oded Galor of Brown University Appointed Editor. He Reflects on Publishing Research in P… +06/25/2018,Economists,@econoflove,Congratulations. Hope you still will contribute to REHO as an author https://t.co/IUOT367sWZ +06/25/2018,Economists,@econoflove,RT @SDSUTweets: @econoflove Congrats on writing a great SDSU Tweet! https://t.co/WejL7bDIu6 (Ranked 1st for Jun 24.) +06/25/2018,Economists,@econoflove,Give more weight to households in both micro and macro https://t.co/qf645rrsuO +06/25/2018,Economists,@econoflove,"RT @ShellyJLundberg: Interesting paper. Spanish undergrads: ""hold a macroeconomics-biased view of the economics profession"" and there are g…" +06/24/2018,Economists,@econoflove,"Younger people are less religious than older ones in many countries, especially in the U.S. and Europe… https://t.co/FkrnW1O3AA" +06/24/2018,Economists,@econoflove,"""In Washington, D.C...the federal government reimbursed slaveholders for the cost of their human property, which is… https://t.co/oeOAswm9vu" +06/24/2018,Economists,@econoflove,never heard this before. how offensive!!! https://t.co/Fow7D4MxSw +06/24/2018,Economists,@econoflove,"UCLA and UC Berkeley on sexual harassment by faculty: ""Campuses Have Disciplined Staff and Faculty Inequitably +and… https://t.co/HuO46KGxZK" +06/24/2018,Economists,@econoflove,How exciting to be able to drive. In Jerusalem Muslim women were also recently allowed to@drive by their imams and… https://t.co/GAt7UjTToh +06/24/2018,Economists,@econoflove,More than twice as Many US women define themselves as feminists than women in UK ac to this article. Why? https://t.co/p6nn5ZrLia +06/24/2018,Economists,@econoflove,listen to what @childtrends suggests to help reverse some of the trauma that immigrant children may have experience… https://t.co/vPY09X0sMg +06/24/2018,Economists,@econoflove,latest cv https://t.co/qUsu7qYXX3 +06/24/2018,Economists,@econoflove,"glad to imeet @dclingi, another economist also trained in #anthropology; attempted to combine the two fields when w… https://t.co/mg8OfQxcrh" +06/24/2018,Economists,@econoflove,"@dclingi s@cmMcConnaughy @valeriealewis This resonates w what I wrote in 1978 ""Economics aspires to be a ""science o… https://t.co/MtipecRFOD" +06/24/2018,Economists,@econoflove,One always has a choice as to how to deal with reality. viktor Frankl was able to make it bearable to survive in c… https://t.co/CoMgsivYLh +06/24/2018,Economists,@econoflove,"RT @xftrebbi: Roger Myerson, Nobel Laureate, in grad school had his '74 paper on proper equilibrium *desk rejected* at Int'l Journal of Gam…" +06/22/2018,Economists,@econoflove,a major reason why we need more immigration: https://t.co/lxrP0oQ8ga +06/22/2018,Economists,@econoflove,(@NickWolfinger's book Do Babies Matter? showed with national data that marriage & children completely account for… https://t.co/TbNOA8k9lG +06/22/2018,Economists,@econoflove,RT @EconomicsofHE: New data: black students applying to Oxford have a 33% lower offer rate than all others. Some explanations: https://t.co… +06/22/2018,Economists,@econoflove,@ShellyJLundberg @AEACSWEP @ASSAMeeting That so many senior women are Willing to Volunteer is an indication of how… https://t.co/4COUwu0Rro +06/22/2018,Economists,@econoflove,some ideas on how diet and nutrition can help those who have Parkinson's #PwP https://t.co/Tj3nNWdeBe +06/22/2018,Economists,@econoflove,"RT @dynarski: Want to see equitable admissions to the elite colleges? Focus your ire on legacy admission, not affirmative action. + +By the f…" +06/22/2018,Economists,@econoflove,"RT @jean_twenge: Great insights from a 21-year-old iGen'er on why #iGen feels so much anxiety -- and what to do about it. +https://t.co/JswF…" +06/22/2018,Economists,@econoflove,Twitter Women @TwitterWomen https://t.co/z7VTkqjM9N +06/22/2018,Economists,@econoflove,"UCLA and UC Berkeley on sexual harassment by faculty: ""Campuses Have Disciplined Staff and Faculty Inequitably +and… https://t.co/GH0PFdziv8" +06/21/2018,Economists,@econoflove,"this ageist assumption is prevalent among Human Resource managers in Australian universities: ""conflating “potenti… https://t.co/0fpKLMBRqm" +06/21/2018,Economists,@econoflove,"RT @traceyw_soc: I realised that it is my PhD's birthday this week. +That should be a thing, right? #ImmodestWomen + +Happy birthday to #DrM…" +06/21/2018,Economists,@econoflove,@dynarski You can’t be liked by everyone. They can be tough. We were on opposite sides regarding polygamy in Br… https://t.co/c9Isaof8fI +06/21/2018,Economists,@econoflove,"RT @BehrouzBoochani: Isn’t it strange that the Australian media fully covers the news of US seperating kids from their families, but they’v…" +06/21/2018,Economists,@econoflove,RT @ShellyJLundberg: Are you a woman with a new Econ PhD working in a demanding research environment? Apply to @AEACSWEP's CeMENT mentoring… +06/21/2018,Economists,@econoflove,in a majority of cases marriage was preceded by cohabitation in the US: (67%) of those currently married had cohab… https://t.co/nX5ImCiGZu +06/21/2018,Economists,@econoflove,"https://t.co/7qMEhF3D5W In affluent, highly-educated and predominantly white districts, boys outperformed girls in… https://t.co/bkg8O6Cgap" +06/21/2018,Economists,@econoflove,"relative scholastic performance of boys and girls depends on community wealth and racial composition +https://t.co/6YhgKWWQMB" +06/21/2018,Economists,@econoflove,has anyone performed a cross country analysis of age bias in academia? across private and public institutions where… https://t.co/OFbNYjjIYP +06/21/2018,Economists,@econoflove,state often engages in more discrimination than private institutions: in France and Israel state rules that univers… https://t.co/b0EVJ4Fest +06/21/2018,Economists,@econoflove,"this ageist assumption is prevalent among Human Resource managers in Australian universities: ""assuming that staff… https://t.co/TBPsn1ionr" +06/21/2018,Economists,@econoflove,"RT @LetaHong: Congratulations, Prime Minister Ardern! https://t.co/YuBkCEavzC" +06/21/2018,Economists,@econoflove,RT @IZAWorldofLabor: Featured article: Should common law marriage be abolished? by @econoflove https://t.co/nyGppyxXoS +06/21/2018,Economists,@econoflove,(@SAGEsociology Feminist Twitter and Gender Attitudes: Opportunities and Limitations to Using Twitter in the Study… https://t.co/B8HFxEBLHJ +06/20/2018,Economists,@econoflove,RT @familylawxpress: Woman wins right to dead boyfriend’s sperm https://t.co/ze3o6IKDxi +06/20/2018,Economists,@econoflove,Perhaps related to the increased excess college education of women? Majors with heavy female ratios tend to emphas… https://t.co/2meeUWPp3c +06/20/2018,Economists,@econoflove,@MerciDecker @LipstickEcon Production also includes home production. How is home production related to capitalism? +06/20/2018,Economists,@econoflove,"To rank the best cities to raise a family, the @NicheSocial folks @CountOnStats from Census, BLS, NCES, & other par… https://t.co/NmIDnUtrXW" +06/20/2018,Economists,@econoflove,@PhilipRucker @D_Blanchflower I was very unhappy with the policy separating families and am glad @potus and company… https://t.co/c6OT3xk21s +06/20/2018,Economists,@econoflove,"Raising kids and building good couplehood constantly requires choices and therefore passing up opportunities, inclu… https://t.co/WvvDa0t0wP" +06/20/2018,Economists,@econoflove,This will mean even less demand for WIHO that Satisfies private consumption. Marriage and couple-hood will be eve… https://t.co/nOLhrpSaZy +06/20/2018,Economists,@econoflove,"RT @IZAWorldofLabor: Overall, for married women, common law marriage availability reduces work time by one to two hours a week https://t.co…" +06/20/2018,Economists,@econoflove,Beautiful Alps. I flew over them yesterday https://t.co/6bAWKdbK3F +06/20/2018,Economists,@econoflove,So sad. In how many years? https://t.co/xZHFDUypfC +06/20/2018,Economists,@econoflove,"RT @nprpolitics: #Breaking: President Trump says he will sign an executive order to end his administration's family separation policy, desp…" +06/20/2018,Economists,@econoflove,In part because more educated and richer women want to have kids with men who do more of the childcare so their men… https://t.co/YxYP4Q7HYH +06/20/2018,Economists,@econoflove,Relief coming!!!! https://t.co/g1IDAo3TOg +06/20/2018,Economists,@econoflove,RT @AP: BREAKING: AP Sources: Homeland Security secretary drafting order to end family separation at border; unclear if Trump will sign it. +06/20/2018,Economists,@econoflove,Totally messed up https://t.co/66XrI6tShh +06/20/2018,Economists,@econoflove,RT @BeckerFriedman: Research from @UChi_Economics' Manasi Deshpande cited in discussion of a decrease in disability applications as the eco… +06/20/2018,Economists,@econoflove,"RT @KenDilanianNBC: New Quinnipiac poll: American voters oppose, 66 – 27 %, the policy of separating children and parents when families ill…" +06/20/2018,Economists,@econoflove,RT @WSJ: House will vote Thursday on a broad immigration bill that would end Trump administration's practice of family separation https://t… +06/20/2018,Economists,@econoflove,increases in income have a positive impact on voting for children who grow up in poorer households. Paper link:… https://t.co/ZcJFAEGdbj +06/20/2018,Economists,@econoflove,RT @mcbridetd: One in Three Women Undergoing Breast Reconstruction Have Complications https://t.co/2iZ6K9E4rB +06/20/2018,Economists,@econoflove,"RT @GovLarryHogan: Until this policy of separating children from their families has been rescinded, Maryland will not deploy any National G…" +06/20/2018,Economists,@econoflove,RT @LeeBadgett: Labor force partic rate of Bangladeshi women goes from 30% (official stats) to 67% when expanding types of employment asked… +06/20/2018,Economists,@econoflove,"RT @DrGMLivingston: @econoflove These are the overall %s, but educational diffs are a major driver of these patterns (rural=less educ)." +06/20/2018,Economists,@econoflove,@DrGMLivingston Is this controlling for income? +06/20/2018,Economists,@econoflove,"RT @m_clem: Some have forgotten this. I have not. + +The US Administration commissioned a study of the fiscal impact of refugees, but censor…" +06/20/2018,Economists,@econoflove,Anyone has attended both #IAFFE2018 and #SEHO2018 besides @LeeBadgett ? +06/20/2018,Economists,@econoflove,RT @hceconomics: Research by HCEO Co-Director James Heckman @heckmanequation on the #ROI in early childhood education was cited in the @nyt… +06/20/2018,Economists,@econoflove,And women need to require good compensation from the adults who benefit from their WIHO https://t.co/zamAAUGTaK +06/20/2018,Economists,@econoflove,@LeeBadgett @MerciDecker And it may also be beneficial as controversy may generate more interest? +06/20/2018,Economists,@econoflove,@LeeBadgett @MerciDecker I don’t get this +06/20/2018,Economists,@econoflove,"RT @aaronecarroll: Thread. + +I'm going to try and use my quiet voice here. Let's not kid ourselves - there are data on what detaining kids l…" +06/20/2018,Economists,@econoflove,people who live in couple cook more than singles. good for health if home-cooked meals are healthier. are they? OPE… https://t.co/g53X4my1Su +06/20/2018,Economists,@econoflove,"RT @cmaconthehill: BREAKING: Canada is legalizing cannabis. The marijuana legalization bill has officially passed. + In an historic vote of…" +06/20/2018,Economists,@econoflove,Has to stop https://t.co/HoYbciAh9t +06/20/2018,Economists,@econoflove,South Korea at the top! https://t.co/0r3gKW6EVs +06/20/2018,Economists,@econoflove,RT @freakonometrics: A visual introduction to machine learning—Part II https://t.co/SOaBRzwvQN https://t.co/EYPKEAw63i +06/19/2018,Economists,@econoflove,"Country-level factors contribute more than household-level ones to +explain cross-country differences in immigrant p… https://t.co/I6gbGgDSaF" +06/19/2018,Economists,@econoflove,RT @IAFFE: Folbre: hierarchies help solve free-rider and other coordination problems. But authoritarian hierarchies created surplus extract… +06/19/2018,Economists,@econoflove,Self-control issues and limiting social pressure to share food with others may better explain why poor households b… https://t.co/lkNYyHpHBN +06/19/2018,Economists,@econoflove,yea for the women who took on sumo wrestling in Japan!!! is it harder to penetrate that world than for women econom… https://t.co/JQJiE7Vy9A +06/19/2018,Economists,@econoflove,RT @eloder: Yes. The academic promotion system is the root cause of many problems. https://t.co/r6FbKNP13G +06/19/2018,Economists,@econoflove,"RT @EricChyn: Excited to be at the @barcelonagse summer workshop with an exciting lineup of papers on child health, well-being and human ca…" +06/19/2018,Economists,@econoflove,HUGE gender gap in college completion in the USA. Other industrialized countries? https://t.co/mpzFQ6M026 +06/19/2018,Economists,@econoflove,"Women need more male involvement in home production, including childcare. Who pays for it is another issue https://t.co/jWbsC3I7HB" +06/19/2018,Economists,@econoflove,RT @TheEconomist: Both the former statistics chief's numbers and his methodology were verified by Europe's statistical agency https://t.co/… +06/19/2018,Economists,@econoflove,One father who definitely made a difference by inspiring his son https://t.co/Nsz4dIE4eN +06/19/2018,Economists,@econoflove,Unfortunately too many people don’t really care when they ask you such questions. But try to be genuine nonetheles… https://t.co/uemBaCraqS +06/19/2018,Economists,@econoflove,RT @Bengoa_Marta: What happens if EU countries would have closed borders -rely only on fertility & mortality (blue line)-?👇 what a shock! A… +06/19/2018,Economists,@econoflove,Something I would like to read https://t.co/5wIPyAx9FA +06/19/2018,Economists,@econoflove,The myth of Sisyphus still applicable so many centuries later!! https://t.co/ieWekOh4wI +06/19/2018,Economists,@econoflove,"children cared for by #grandparents are better at naming objects, but worse on other #cognitive outcomes https://t.co/Ozq73cqJYo" +06/19/2018,Economists,@econoflove,@kearney_melissa @causalinf @gbenga_ajilore @Noahpinion @DavidAJaeger @NeumarkDN @Joni_Hersch +06/19/2018,Economists,@econoflove,yea for the women who took on sumo wrestling in Japan!!! is it harder to penetrate that world than for women econom… https://t.co/r2aSmJlXkM +06/19/2018,Economists,@econoflove,@cryptoecongames do you mean an article from 2010? +06/19/2018,Economists,@econoflove,@kearney_melissa ...however most economists continue to focus on the elite schools (and the elite journals)… https://t.co/UGrvnFfJp8 +06/19/2018,Economists,@econoflove,@kearney_melissa the obsession with Ivy League and other elite schools in the US is also bad for research. For inst… https://t.co/zLWNutRGlu +06/18/2018,Economists,@econoflove,"2nd generation migrants to the US outearn the native-born by 2% controlling for education, demographics, and geogra… https://t.co/ZtEs0VnjAQ" +06/18/2018,Economists,@econoflove,"Despite changing gender roles, many still perceive mothers as better equipped than fathers to care for children… https://t.co/lczWl1bEbT" +06/18/2018,Economists,@econoflove,predicted deficit numbers resulting from Social Security and Medicare commitments are truly mind-boggling: 82 trill… https://t.co/5LACSN8K3l +06/18/2018,Economists,@econoflove,"RT @PRBA_ISR: Waldo Johnson former @PRBA postdoc. Non-residential fathers aren't necessarily absentee, research shows@SociologistRay @Darri…" +06/18/2018,Economists,@econoflove,does the gender gAP shrink when tehre are more female instructors? https://t.co/P24uLQXACe +06/17/2018,Economists,@econoflove,"household economics is also about understanding consumption, including generational effects on what people consume https://t.co/8ExuWbSC5E" +06/17/2018,Economists,@econoflove,Tokyo consists of many small homes and it is really hard to find an address! https://t.co/NJmd3IW8W9 +06/17/2018,Economists,@econoflove,"In Japan, men are taking parenting classes to become more marriageable. [post by @SevincRende] https://t.co/WjJxcIIoBa" +06/17/2018,Economists,@econoflove,RT @simongerman600: Population change in the former Soviet Union Republics from 1989 to 2018. Horribly designed #map (crap labels and colou… +06/17/2018,Economists,@econoflove,Fathers’ early parenting quality affected by mothers [post by @SevincRende] https://t.co/15xsW6NJjE +06/17/2018,Economists,@econoflove,"Dads often earn more, even if they’re not harder workers [post by @SevincRende] https://t.co/dXROaWViGp" +06/17/2018,Economists,@econoflove,Was Easterlin inspired by Freud? https://t.co/6pwIT6ccaI +06/16/2018,Economists,@econoflove,"RT @lymanstoneky: I'm in @NRO today, talking about how the twin forces of mass incarceration and a societal shift away from marriage has le…" +06/16/2018,Economists,@econoflove,RT @eckelcc: Nominate someone you love. https://t.co/HaZQTY63fK +06/15/2018,Economists,@econoflove,"RT @sarahgracesee: ""Being bored, however, can be a good thing for children’s mental health."" Another reason why time investments that start…" +06/15/2018,Economists,@econoflove,RT @spattersearch: Family Demography PhD students! Check out this awesome postdoc opp @unisouthampton https://t.co/lnf8bltPFG +06/15/2018,Economists,@econoflove,REVERSIBLE CONCEPTION!!! https://t.co/lXNQDj6c4s +06/14/2018,Economists,@econoflove,"@MarinaAdshade: ""a woman told me that when sex robots are available there will be ""no more women"". The idea that th… https://t.co/NIX7Gy25bg" +06/14/2018,Economists,@econoflove,"RT @econnaturalist: …to be someone who actually would return the envelope. Contrary to the implications of the self-interest model, honest…" +06/14/2018,Economists,@econoflove,"RT @ManhattanInst: ""Family-friendly"" policies: The gender paradox of the Nordic welfare state. https://t.co/2HvTCKFSQQ via @KayHymowitz htt…" +06/14/2018,Economists,@econoflove,Recruiting new students at my university: come and enjoy the beach!! https://t.co/50OyyezNzm +06/14/2018,Economists,@econoflove,@Undercoverhist @ambiguitweets @sndurlauf Congratulations Beatrice +06/14/2018,Economists,@econoflove,RT @TheEconomist: There are a lot less people looking to buy a villa https://t.co/U4b0APO6G2 +06/14/2018,Economists,@econoflove,Very easy to read https://t.co/Sq7XAqBEHw +04/18/2018,Economists,@SBronars,"RT @BEA_News: What’s the economic value of cooking, cleaning, watching the kids and so forth? BEA plans to release a new batch of statistic…" +04/18/2018,Economists,@SBronars,"https://t.co/lwGgXvlFLA + +Almost 70 percent of births in Iceland are outside of marriage" +04/18/2018,Economists,@SBronars,"RT @MyDaughtersArmy: Barbara Bush, 1990 Wellesley College commencement speech: + +""Somewhere out in this audience may even be someone who wil…" +04/17/2018,Economists,@SBronars,"RT @tomwcleary: Tammie Jo Shults, pictured left, was the pilot of Southwest Flight 1380 when an engine failed mid-air. She is being hailed…" +03/13/2018,Economists,@SBronars,RT @darrenrovell: My haul from the 1985 Donruss pack I opened tonight: TWO Roger Clemens rookies. https://t.co/nRobPYOqr0 +03/02/2018,Economists,@SBronars,"RT @SweeneyABC: .@SouthwestAir plane attempts to land at Reagan National, but winds force it to abort landing. #goaround @dcairports Video:…" +02/04/2018,Economists,@SBronars,Why Women’s Voices Are Scarce in Economics https://t.co/bLJxc3vGMs +02/03/2018,Economists,@SBronars,RT @chicagoboothrev: What can the US learn from Mexico about privatizing social security? @ChicagoBooth's Chad Syverson shares insight on t… +01/30/2018,Economists,@SBronars,The average age of first-time mothers in the Netherlands is now 29.8 years. https://t.co/gA1bBnlY81 +01/30/2018,Economists,@SBronars,"RT @amish973: Nepal received an estimated $6.6 billion in remittances, equivalent to 31.3% of its GDP, the highest in the world: +https://t.…" +01/30/2018,Economists,@SBronars,"RT @Super70sSports: Today in 1975, the Bears select Jackson State's Walter Payton with the 4th overall pick in the NFL Draft. I'd say that…" +01/29/2018,Economists,@SBronars,RT @BeckerFriedman: Business economics major proposed by @uchieconomics and @chicagobooth. @uchieconomics' John List says the major would b… +01/29/2018,Economists,@SBronars,@tamcfall Especially since Wooden was from Purdue +01/28/2018,Economists,@SBronars,"RT @RaviNepal: Nepal is one of most inclusive emerging and developing Asian economies, according to @wef's Inclusive Development Index 2018…" +01/28/2018,Economists,@SBronars,"RT @elonmusk: When the zombie apocalypse happens, you’ll be glad you bought a flamethrower. Works against hordes of the undead or your mone…" +01/28/2018,Economists,@SBronars,RT @drluebbers: Does homeopathy work? https://t.co/KGGXYlXcu2 +01/28/2018,Economists,@SBronars,RT @darrenrovell: Early Candidate For Stat Of The Year https://t.co/rT1adhOpej +01/26/2018,Economists,@SBronars,@mattehunt82 Very basic +01/26/2018,Economists,@SBronars,Paul Romer had some parting thoughts after resigning as World Bank chief economist https://t.co/1HTkW7MWen via @WSJ +01/25/2018,Economists,@SBronars,"RT @bill_easterly: Great Angus Deaton article on how extreme poverty in the US is more frequent than previously thought, some foreign aid s…" +01/25/2018,Economists,@SBronars,"The demand for concessions at NFL games is elastic! +https://t.co/nGB3xE6EXK" +01/25/2018,Economists,@SBronars,RT @BeckerFriedman: Research from @chicagobooth's Marianne Bertrand on gender pay gap finds that spouses tend to be less happy if the wife… +01/24/2018,Economists,@SBronars,RT @tamcfall: I hope someone got an attaboy for typing these details: https://t.co/syN2ZnOSki +01/23/2018,Economists,@SBronars,RT @Tribeca: Major congratulations to the great Rachel Morrison (@MorrisonDP) on becoming the first woman cinematographer to ever receive a… +01/23/2018,Economists,@SBronars,"RT @IZAWorldofLabor: Featured article: The importance of measuring dispersion in firm-level outcomes, by Chad Syverson @UChi_Economics http…" +01/23/2018,Economists,@SBronars,"RT @darrenrovell: On cover of SI on this day in 1967: Packers backup WR Max McGee, who was so sure he wouldn’t play in Super Bowl I, he sta…" +01/23/2018,Economists,@SBronars,RT @typesfast: I’m in Seattle and there is currently a line to shop at the grocery store whose entire premise is that you won’t have to wai… +01/23/2018,Economists,@SBronars,RT @BeckerFriedman: Prof. Bob Lalonde’s friends and colleagues reflect on his many contributions in a BFI statement found here: https://t.c… +01/21/2018,Economists,@SBronars,"RT @TomHall: Rhino + +Road + +Rage! + +Getting ready for Monday. + +🦏 🦏 🚗 🦏 🦏 + +#SundayMorning #NationalHugDay #ChampionshipSunday #SundayFunday…" +01/21/2018,Economists,@SBronars,RT @joshgans: How does someone get papers on money and parenting into Econometrica in the same issue? https://t.co/fnsZ4BChSm +01/15/2018,Economists,@SBronars,"RT @Super70sSports: Today in 1968, the Packers defeat the Raiders in Super Bowl II. Remember this when the NFL cheats us again this year by…" +12/31/2017,Economists,@SBronars,"RT @WSJ: For all the energy and resources coaches dedicate to finding the quarterbacks of the future, they are wrong a lot. https://t.co/iY…" +12/30/2017,Economists,@SBronars,RT @bill_easterly: Anne Case on the adversarial culture in economics and why there are so few female economics professors https://t.co/Ih5h… +12/29/2017,Economists,@SBronars,RT @agoodmanbacon: This is one of the most amazing papers I've ever seen. The authors got a standing ovation in the middle of an NBER talk… +12/19/2017,Economists,@SBronars,"291 workplace suicides in 2016, highest amount since this census began in 1992. 500 workplace homicides in 2016 - h… https://t.co/lqyw4CJEyc" +12/11/2017,Economists,@SBronars,RT @BrianCAlbrecht: The beauty of short abstracts https://t.co/HhXwckkcGR https://t.co/MXXXgVXApW +12/03/2017,Economists,@SBronars,"RT @SteveBartlettSC: Netflix surpasses TV. + +TV continues it’s slow death at the hands of the on-demand generation. https://t.co/ppkWF42Hzw" +12/03/2017,Economists,@SBronars,RT @dougwebberecon: My forthcoming Journal of Labor Economics paper on the returns to college for “academically marginal” students is now o… +11/25/2017,Economists,@SBronars,RT @bubbaprog: 51 kids on that UCF roster have now experienced both a winless and an unbeaten season. +11/24/2017,Economists,@SBronars,RT @paul1kirby: Fascinating @OECD picture of job creation & losses by country & sector since 2010. Striking contrasts e.g. 🇬🇧 vs 🇫🇷 https:/… +11/24/2017,Economists,@SBronars,"RT @UpshotNYT: Mothers have important influences on their children's career choices, too. https://t.co/7XQq8hD4bH" +11/07/2017,Economists,@SBronars,RT @darrenrovell: The highlight you might have missed yesterday. https://t.co/SJd60ZlwzX +11/05/2017,Economists,@SBronars,RT @RealMikeWilbon: Are we looking possibly at a Rams v Eagles NFC Championship game? +10/31/2017,Economists,@SBronars,"RT @kearney_melissa: 7yr old: “Mommy, you bring up economics in every conversation. You act like Economics is about everything.” +Yep. Essen…" +10/31/2017,Economists,@SBronars,"France, Land of Croissants, Finds Butter Vanishing From Shelves https://t.co/Y7uEbA5N8m" +10/29/2017,Economists,@SBronars,Opinion | America’s Best University President https://t.co/U410UbEEFF +10/11/2017,Economists,@SBronars,Scientists find $1.8 million worth of gold in Switzerland's wastewater https://t.co/abRxmEFV0E via @business +09/02/2017,Economists,@SBronars,RT @hillisthekillis: Even in a disaster no one wants the vegan food. https://t.co/KtswW7GLSI +09/02/2017,Economists,@SBronars,RT @bill_easterly: Something is going right in Development when global poverty rate has fallen from 70 percent to 30 percent in last 25 yea… +08/30/2017,Economists,@SBronars,"RT @davejorgenson: ""Where we're going, we don't need roads."" https://t.co/QlFy38ncwm" +08/30/2017,Economists,@SBronars,RT @SteveRHardy: You can tell when an aid group comes from Louisiana because they load up on EMERGENCY SPICES https://t.co/gI6hWRoC6I +08/30/2017,Economists,@SBronars,RT @AnupKaphle: “We hope people won’t overlook the desperate needs of people here because of disasters closer home.” https://t.co/e7BTj83uf… +08/29/2017,Economists,@SBronars,"Food away from home expend. as % of total food exp. by income: +Bottom 1/5 35.2% +2nd 1/5 37.5% +3rd 1/5 40.6% +4th 1/5 43.8% +Top 1/5 50.5% +#CEX" +08/20/2017,Economists,@SBronars,RT @jwPencilAndPad: There is no longer any distinction between Nicolas Cage's movies and Nicolas Cage's life. https://t.co/ADrRuJboUZ +08/17/2017,Economists,@SBronars,"Today is the first time the Cubs have lost a game when scoring at least 10 runs since May 28, 2006 against the... https://t.co/c9lQgUi6qY" +08/15/2017,Economists,@SBronars,RT @Alan_Krueger: Movement of workers from outside the labor force into the labor force reached a record LOW in the first half of 2017. htt… +08/08/2017,Economists,@SBronars,RT @martinstaylor: Terrific optical illusion by Victoria Skye. @RichardWiseman @chriscfrench https://t.co/IeSFupAcfU +08/08/2017,Economists,@SBronars,Private sector job openings up 12.0% compared to last year (June to June). In construction up 31.6%. #JOLTS https://t.co/wGP8WZtECe +07/31/2017,Economists,@SBronars,RT @bill_easterly: Economics https://t.co/wakP8ddUBv +07/31/2017,Economists,@SBronars,Bartman receives Cubs World Series ring https://t.co/YuZe0lZQ64 +07/27/2017,Economists,@SBronars,"RT @MOhlhausenFTC: In the 1950s, less than 5% of U.S. jobs needed a license. Today, that number is between 25 and 30%. @Heritage https://t.…" +07/26/2017,Economists,@SBronars,"RT @dinapomeranz: Not new but still relevant: much less bunching of p-values at significance level in RCT-based papers. +ht @dariosidhu +http…" +07/21/2017,Economists,@SBronars,"RT @BenLeubsdorf: Congratulations, Rhode Island: You've finally regained all the jobs you lost in the recession https://t.co/5IVl8gTSJY htt…" +07/21/2017,Economists,@SBronars,"If premiums were 25% of insurers’ avg. costs, at most 1/2 of potential enrollees would buy insurance. https://t.co/lUPS4Sxhvu" +07/20/2017,Economists,@SBronars,RT @NinjaEconomics: Americans now lose more property to civil asset forfeiture than to burglary each year h/t @LettieriDC https://t.co/q0Ux… +07/18/2017,Economists,@SBronars,RT @business: Phil Mickelson will play the British Open with no drivers https://t.co/gN4oR0XAXk https://t.co/BGxPJQEVdX +07/17/2017,Economists,@SBronars,"RT @RaviNepal: How has number of extremely poor people changed since 1990? Great #dataviz by @worldbankdata. +#globaldev #endpoverty +https:/…" +07/15/2017,Economists,@SBronars,"RT @toby_n: Wow - great chart showing age, gender and education of UK population in 2016 https://t.co/Gggp8curQv https://t.co/gLZqJF9CF8" +07/14/2017,Economists,@SBronars,"RT @NinjaEconomics: Woman knocks over $200,000 worth of art trying to take a selfie https://t.co/j4NQBu1FfA https://t.co/uqIl27x6zZ" +07/14/2017,Economists,@SBronars,"RT @dinapomeranz: Without immigrants Europe's population will start to shrink. Especially Germany, Austria, Malta, Finland: +Ht @m_clem +http…" +07/12/2017,Economists,@SBronars,RT @elizabethminkel: Never in my life have I been so caught off-guard by a 'regionalisms for certain terms' map. TENNIS SHOES? ALL OF YOU S… +07/12/2017,Economists,@SBronars,RT @econoflove: huge #babyboom generation reaches #retirement ==> more #RV s on the road https://t.co/5L2f0i57vY +07/12/2017,Economists,@SBronars,"RT @darrenrovell: BREAKING: 29 NFL teams will make $55 MILLION EACH from relocation fees of Rams, Chargers & Raiders + +https://t.co/8kr5geG1…" +07/09/2017,Economists,@SBronars,"RT @NeumarkDN: Incredible how innaccurately the @nytimes characterizes #minimumwage research. +Bias or ignorance? + +https://t.co/mYQVoUSOXr" +07/09/2017,Economists,@SBronars,"RT @RaviNepal: The 🌏 world's fastest growing economies in 2017: +3. Nepal🇳🇵 +4. India🇮🇳 +9. Bangladesh🇧🇩 +9. Bhutan🇧🇹 + +#globaldev + + https://t.…" +07/03/2017,Economists,@SBronars,"RT @BrookingsEcon: A simple, low-cost way to improve high school student performance: push back start times → https://t.co/NKH32dGiFo https…" +07/03/2017,Economists,@SBronars,RT @WSJecon: The share of foreign-born workers in the U.S. labor force reached a new high last year https://t.co/ytTWw8P94d +07/02/2017,Economists,@SBronars,RT @darrenrovell: Just awesome. https://t.co/51jZLYIZ7t +06/27/2017,Economists,@SBronars,RT @EU_Eurostat: Euros or dollars? EU trade in goods by currency https://t.co/mxox7S4sTt https://t.co/lXk3op19TL +06/27/2017,Economists,@SBronars,@Espngreeny @espngolic @MikeAndMike NFL's prohibition on drafting underclassmen is legal because it was collectively bargained with NFLPA +06/25/2017,Economists,@SBronars,"Most refugees to be jobless for years, German minister warns https://t.co/woJtaOOUDR" +06/25/2017,Economists,@SBronars,RT @GrantTucker: And the headline of the year goes to... https://t.co/SiboZ2gFex +06/23/2017,Economists,@SBronars,"RT @JeffreyKleintop: Deflationary impact of technology: everything in this Radio Shack flyer from 1991 adds up to $3,285.12 and can be done…" +06/22/2017,Economists,@SBronars,"RT @darrenrovell: 30 Years Ago Today: One of the worst trades of all time. + +SuperSonics trade the #5 pick @ScottiePippen to Bulls for #8 p…" +06/22/2017,Economists,@SBronars,RT @drmoore: This is my favorite tweet of the year. https://t.co/C54Lrv1Dg0 +06/19/2017,Economists,@SBronars,"RT @darrenrovell: Brian Harman's bogey on 18 just cost him $247,989. Ties for second at US Open instead of getting sole second." +06/18/2017,Economists,@SBronars,"RT @JimPethokoukis: HS graduation day for Daughter, 18! Aww yeah! I just showed her the BLS ""employment rates by education level"" chart." +06/12/2017,Economists,@SBronars,"RT @darrenrovell: The Braves' ""Beat The Freeze,"" sponsored by RaceTrac, is the best new promotion in sports (H/T @BenKing20) https://t.co/e…" +06/10/2017,Economists,@SBronars,Veronica Guerrieri on the American dream - Chicago Booth Review https://t.co/6L8liqxnrb via @chicagoboothrev +06/10/2017,Economists,@SBronars,"RT @Noahpinion: 55.1 percent of the rise in urban murder last year came from one city: Chicago. What is going on, Chicago?? https://t.co/6x…" +06/10/2017,Economists,@SBronars,Warriors gave up 49 points in a quarter with 8 missed free throws? They are playing like an All-Star team. #TheFinals +06/04/2017,Economists,@SBronars,"How to rob a bank, according to economics https://t.co/UAtSif548g +2000-06 Italy had > 3X the bank robberies of Germany, >4X France, >14X UK" +06/02/2017,Economists,@SBronars,RT @crampell: number of babies born in Japan fell below 1 million in 2016 for first time since records began in the 19th century https://t.… +06/01/2017,Economists,@SBronars,RT @darrenrovell: BREAKING: Google says most misspelled word in Wisconsin is...Wisconsin https://t.co/UAxZvMuUVY +05/29/2017,Economists,@SBronars,"One of the positives of an aging society. Petty officers: As crime dries up, Japan’s police hunt for things to do https://t.co/cfCAMyx9fk" +05/28/2017,Economists,@SBronars,Why are so many women dropping out of the workforce? https://t.co/rb5po3LNez +05/28/2017,Economists,@SBronars,RT @Rainmaker1973: A domino can knock over another domino about 1.5x larger than itself. An awesome mechanical chain reaction https://t.co/… +05/28/2017,Economists,@SBronars,"RT @BrookingsEcon: In 2016, 6% of the federal budget went toward paying interest on debt: https://t.co/19ZgrW9fJV https://t.co/j1N6liA7eI" +05/28/2017,Economists,@SBronars,RT @SportsCenter: Is this the most bizarre strikeout ever? Yes. #SCNotTop10 https://t.co/ViaYjzb15d +05/20/2017,Economists,@SBronars,"https://t.co/b8PziQVvb5 + +44% of Houston's high school valedictorians were previously English as a Second Language students" +05/20/2017,Economists,@SBronars,RT @HarvardBiz: Forty percent of Fortune 500 companies were founded by immigrants or the children of immigrants. https://t.co/DlgXLoZYSv +05/20/2017,Economists,@SBronars,"T.J. Ford graduates 14 years after Texas exit, credits Rick Barnes https://t.co/bGp1cMB6T6 +via @ESPN App https://t.co/f7Wrh6tAwP" +05/20/2017,Economists,@SBronars,@tamcfall No one. And this is in Boston. +05/14/2017,Economists,@SBronars,RT @WSJ: Parents drop the mike: Number of baby boys named Michael fell last year to lowest level since 1940 https://t.co/ZKIKK11y5v +05/12/2017,Economists,@SBronars,RT @brent_moulton: New from Political Arithmetick - Can mismeasurement explain the recent slowdown in productivity? https://t.co/4Cya9SYrtB +05/12/2017,Economists,@SBronars,RT @RealMikeWilbon: If LeBron should be MVP every year then Pop should be coach-of-the-year every year...Duncan gone. Parker gone. Leonard… +05/12/2017,Economists,@SBronars,RT @BillSimmons: I bet against the Spurs. Is this what other people feel like when they bet against the Patriots? +05/10/2017,Economists,@SBronars,"RT @darrenrovell: When Manu Ginobili made his NBA debut, James Harden was in the 7th grade." +05/10/2017,Economists,@SBronars,Manu +05/04/2017,Economists,@SBronars,Italy & Germany have the highest proportion of adults over age 65 among EU countries. Slovakia & Ireland have fewes… https://t.co/FO5NwoKNYa +05/02/2017,Economists,@SBronars,"RT @dinapomeranz: Same means, standard deviations and correlation! +https://t.co/6Ya5hpNquv https://t.co/2dZkQE95ns by @JustinMatejka & Fitz…" +05/01/2017,Economists,@SBronars,https://t.co/8QVSLHHYme +04/26/2017,Economists,@SBronars,"RT @darrenrovell: Spurs coach Gregg Popovich reportedly leaves $5,000 tip in Memphis. Reporter @kbrad5 says matches handwriting, date Spurs…" +04/24/2017,Economists,@SBronars,RT @alansmurray: Really? Hash browns recalled for possible golf ball contamination https://t.co/yMmgeKDk0I +04/24/2017,Economists,@SBronars,"RT @JustinWolfers: As the rich are living longer, they're taking more, destroying the progressivity of government programs. https://t.co/Mk…" +04/22/2017,Economists,@SBronars,RT @TheEconomist: The world’s most dangerous cities https://t.co/nsbqhf9u0f +04/17/2017,Economists,@SBronars,"David Donaldson, Economist Who Studies Trade Benefits, Wins Clark Medal https://t.co/HtVAISX0oB" +04/17/2017,Economists,@SBronars,".@ColinCowherd +St. Louis has the country's highest murder rate but apparently millenials love St. Louis +https://t.co/sWKyJbfBkA" +04/17/2017,Economists,@SBronars,It looks like life is not so tough for older rabbits. https://t.co/Hm0InO54gr +04/15/2017,Economists,@SBronars,"Afr Americans 7.1% of MLB players. Jobs w %black>7.1% physicians, judges, elec engineers, chemists, management. #42 https://t.co/Gxi1win4iG" +04/15/2017,Economists,@SBronars,"2016 Data +Employment/Population Age 25-54 + U.S. Canada +Men 85.0% 85.0% +Women 71.1% 77.8%" +04/15/2017,Economists,@SBronars,From ‘Zombie Malls’ to Bonobos: America’s Retail Transformation https://t.co/f3ENhivPHm +04/15/2017,Economists,@SBronars,RT @darrenrovell: 70 Years Ago Today: Jackie Robinson's historic Major League debut https://t.co/e4N2rNToZx +04/15/2017,Economists,@SBronars,"RT @dinapomeranz: After pope visited Brasil, use of birth control fell and # of births↑ +But effect faded & longrun # of children was unaff…" +04/15/2017,Economists,@SBronars,"RT @Alan_Krueger: Congratulations to @benbernanke , next AEA president." +04/15/2017,Economists,@SBronars,RT @MarketWatch: Occupations that are over 80% female are expected to grow at 2x the rate of male-dominant jobs in the next 10 years https:… +04/13/2017,Economists,@SBronars,"In 12 months ending Feb 2017, 63.0 million people hired & 60.6 MM separated from jobs; net gain of 2. 4 MM. #JOLTS https://t.co/o0ojQpRm8U" +04/11/2017,Economists,@SBronars,RT @DegenRolf: I didn't notice that the resentment against the replication movement in psychology went that much below the belt. https://t.… +04/09/2017,Economists,@SBronars,RT @Alan_Krueger: Excellent segment by PBS @NewsHour on @Give_Directly Universal Basic Income program in Kenya. https://t.co/NI0LdQbtoB +04/07/2017,Economists,@SBronars,"Household survey employment +919k in past 2 months & unemployment rate 4.8% to 4.5%, but payroll emp up just 317k. #JobsReport" +04/03/2017,Economists,@SBronars,RT @ModeledBehavior: @Noahpinion @SBronars I don't think Steve's point is about assigning blame for our infrastructure costs but that your… +04/03/2017,Economists,@SBronars,"@Noahpinion my point is that for your new WPA to pay less than prevailing wages, you have to deal with Davis Bacon" +04/03/2017,Economists,@SBronars,"@Noahpinion current law requires contractors pay at least prevailing wage (on DOL webpage), by county, type of construction and occupation." +04/03/2017,Economists,@SBronars,@Noahpinion Davis Bacon raises labor costs for govt construction projects; e.g. in Detroit common laborers are paid… https://t.co/LfIwMsNvfP +04/03/2017,Economists,@SBronars,RT @PatrickRuffini: % of voters who live in uber-educated precincts (60%+ college grad) by state. https://t.co/IX6ULA2VBt +04/02/2017,Economists,@SBronars,"Smith most common US surname +2.8% from 2000-10 +Hernandez Lopez & Gonzalez rank 11-13th but up 47.7%, 40.7% & 40.7% +https://t.co/AdN77xZrDX" +04/02/2017,Economists,@SBronars,https://t.co/tgw7C110EW +03/30/2017,Economists,@SBronars,Fed Sees Car Trouble Down South https://t.co/895xHyMzR8 via @WSJ +03/30/2017,Economists,@SBronars,RT @conradhackett: Data nerds: Fire up your statistics package - the 2016 General Social Survey data has just been released https://t.co/bd… +03/20/2017,Economists,@SBronars,Questionable calls in the UNC-Arkansas game. +03/18/2017,Economists,@SBronars,RT @darrenrovell: #1 seed UConn women beat #16 Albany by 61. Spread was 49. +03/18/2017,Economists,@SBronars,"65 metro areas in US have unemployment rate less than 4%, Wisconsin has the most, 7. Texas & Utah have 5 each. https://t.co/1uOCZTjAg8" +03/18/2017,Economists,@SBronars,"13 metro areas in US still have unemployment rate>=10%, 9 are in California (one metro area each in AZ, IL, NJ & WA) https://t.co/1uOCZTjAg8" +03/18/2017,Economists,@SBronars,"Fringe benefits comprise 37% of compensation costs for state & local governments, compared to 30% in private sector. https://t.co/xNqZwJjElv" +03/13/2017,Economists,@SBronars,"RT @Noahpinion: Top game theorist Ariel Rubinstein on the overuse of math in economic theory: (from https://t.co/suq6NBCZIo) + +Dare we say..…" +03/13/2017,Economists,@SBronars,Obama-era winners are still riding high. https://t.co/2roUh3h4Rd via @BV +03/13/2017,Economists,@SBronars,Is it better to be poor in Bangladesh or the Mississippi Delta? Angus Deaton talks with @AnnieLowrey https://t.co/qo8XebeMSR +03/13/2017,Economists,@SBronars,"Employment/Population for age 25-54 was 78.3% in February, highest since 10/2008, but still 1.6 percentage points below 2007 average." +03/13/2017,Economists,@SBronars,Disgrace: South Africa’s rape epidemic. 38% of men in 1 township admitted to using force or threats to obtain sex. https://t.co/QM1e3STh81 +03/12/2017,Economists,@SBronars,RT @tamcfall: @SBronars packing Duke and UNC in SC and Louisville and KY in Indy. Someone should write a paper +03/12/2017,Economists,@SBronars,"1st and 2nd round NCAA tournament games for South Carolina (7 seed) and Florida (4 seed) close to home, 104 miles & 112 miles, respectively." +03/12/2017,Economists,@SBronars,Utah on the verge of the toughest drunk-driving standard in the U.S. – .05% https://t.co/AOsgQpQAgr +03/11/2017,Economists,@SBronars,"RT @darrenrovell: Lowest priced ticket to Spurs-Warriors on reselling site Gametime yesterday was $173. With so many players out, tickets n…" +03/11/2017,Economists,@SBronars,RT @spurs: LaMarcus Aldridge will be out for an indefinite period due to an occurrence of a minor heart arrhythmia. https://t.co/s0D2Enc6RO +03/11/2017,Economists,@SBronars,"California is having its rainiest water year on record, lifting many out of drought conditions https://t.co/zrIgQWvF5D" +03/11/2017,Economists,@SBronars,"German labor costs +2.5% in past yr, wages +2.3% nonwage +3.4%. +US labor costs +2.2%, wages +2.3%, nonwage +2.1% +https://t.co/7nk3WZUM50" +03/11/2017,Economists,@SBronars,"RT @dinapomeranz: One reason immigration is so important to Europe: below 2 kids per woman +Lowest Portugal: 1.31 +Highest France: 1.96 https…" +03/10/2017,Economists,@SBronars,Shock horror: Economists argue about the impact of Chinese imports on America https://t.co/I9D8O9Hojf +03/10/2017,Economists,@SBronars,"Over past 12 months, employment to population ratio: +African Americans up from 56.2% to 57.3% +Whites down from 60.4% to 60.3% +#JobsReport" +03/07/2017,Economists,@SBronars,RT @WakeForestNews: Research shows #golf pros penalized off the tee are more likely to take risky 2nd shots https://t.co/ozaXKBQFed @TheMas… +03/07/2017,Economists,@SBronars,RT @mileskimball: Children of immigrants are dominating US scientific contests. America’s Got Immigrant Talent https://t.co/tYxQ6KcSUJ +03/07/2017,Economists,@SBronars,Weekly wages in leisure and hospitality in Las Vegas NV (Clark County) up 24% in the past year. https://t.co/m2XUxUGUw4 +03/01/2017,Economists,@SBronars,"Cold Hand? @StephenCurry30 missed 14 straight threes. Given career 43.8% shooting, a streak like that expected once every 171 NBA seasons." +02/27/2017,Economists,@SBronars,RT @JamieLissow: Not sure what this guy thinks is going to happen at Disney today. https://t.co/7lKJfDAfja +02/27/2017,Economists,@SBronars,.@conorsen Leading men are older: Only one actor under age 30 has ever won an Oscar for best performance in a leading role - Adrien Brody. +02/25/2017,Economists,@SBronars,"Farewell to Kenneth Arrow, a gentle genius of economics https://t.co/bTgCL0QOtS" +02/25/2017,Economists,@SBronars,RT @JimPethokoukis: Why is US prime-age labor participation rate lower than in most other advanced economies? Goldman Sachs offers an expla… +02/23/2017,Economists,@SBronars,RT @Noahpinion: America needs a new Milton Friedman - a highly respected economist who explains empirical econ to the public: https://t.co/… +02/23/2017,Economists,@SBronars,"RT @dinapomeranz: Female econ profs in US: +Full 13% - 4 times higher than in 2000 +Associate 26% - doubled +Assistant 28% - up from 25% +https…" +02/22/2017,Economists,@SBronars,".@EricJWeiner1 Only 14% of Boston is Irish-American, which is low for the state of Massachusetts. Higher concentrations in the suburbs." +02/22/2017,Economists,@SBronars,"22.2% of rental households in Fulton County. GA (Atlanta) faced eviction proceedings in 2015 & 12.2% were evicted. +https://t.co/uO4eQF8g9y" +02/22/2017,Economists,@SBronars,"In Germany health care expenditures represent 11.3% of GDP, in the US it is 17.8% of GDP. +https://t.co/qUoXfjaYaf +https://t.co/4HZ8K9c97n" +02/22/2017,Economists,@SBronars,"U.S. Cities with the most Irish-American residents: +1. New York +2. Chicago +3. Philadelphia +https://t.co/IXktr4YVjQ" +02/22/2017,Economists,@SBronars,"RT @darrenrovell: 37 Years Ago Today: A bunch of American kids at the 1980 Olympics prove the ""impossible"" can happen https://t.co/NV4mjY0r…" +02/22/2017,Economists,@SBronars,"Trump’s hard line on immigration collides with U.S. demographics, Greg Ip writes https://t.co/IveW8dTYqa" +02/22/2017,Economists,@SBronars,RT @crampell: Share of Americans who believe foreign trade is good for the U.S. economy is at a record high. https://t.co/41XzyTcoWc https:… +02/22/2017,Economists,@SBronars,"RT @BCAppelbaum: Here's the @nytimes obit for Kenneth Arrow, one of the most important economists of modern times. Great kicker: https://t.…" +02/22/2017,Economists,@SBronars,RT @WSJ: Oddsmakers are pegging “La La Land” as an overwhelming favorite to land Sunday’s biggest prize https://t.co/A5RxbvyZht +02/20/2017,Economists,@SBronars,RT @TheEconomist: 33% of high-tech firms created in Michigan between 1990 and 2005 have at least one immigrant founder https://t.co/s3JKT6m… +02/20/2017,Economists,@SBronars,RT @tamcfall: @SBronars @espn and athletics depts are all broke +02/20/2017,Economists,@SBronars,"Flying coach: Many universities are using private planes https://t.co/ms389FR1Fa +via @ESPN App https://t.co/f7Wrh6tAwP" +02/20/2017,Economists,@SBronars,No Hesitations: Econometrics: Angrist and Pischke are at it Again https://t.co/wHAEtWngdX +02/19/2017,Economists,@SBronars,"RT @FrankLuntz: In the U.S., immigrants commit less crime than native-born Americans. + +https://t.co/iFVwxANWns https://t.co/F4CE5vlywM" +02/18/2017,Economists,@SBronars,RT @bill_easterly: I took this graph seriously until I saw in right-hand upper corner the claim that economists have social skills https://… +02/17/2017,Economists,@SBronars,"Don't appear before a judge the Monday after the start of daylight savings time. + +https://t.co/QvdYm2FHHR" +02/16/2017,Economists,@SBronars,Real average hourly earnings fell by 0.5% between December 2016 and January 2017. https://t.co/DDkA6vXXXL +02/16/2017,Economists,@SBronars,RT @TheEconomist: A new survey reveals there is one area in which young people’s views are not so progressive: free speech https://t.co/cHA… +02/14/2017,Economists,@SBronars,"More than 4,000 applicants have submitted resumes for just two openings as ""candy tasters"" at Mondelez. https://t.co/B65DX9SB6z" +02/14/2017,Economists,@SBronars,"Kevin Love:1 of 5 players w 20 points & 10 rebounds per game, also Anthony Davis, DeMarcus Cousins, Karl-Anthony Towns & Russell Westbrook" +02/14/2017,Economists,@SBronars,"Just 15 labor strikes involving 1,000+ workers in 2016. 7 with state & local govt. Only 2 lasted more than 5 days. https://t.co/kvlJzv9IqO" +02/13/2017,Economists,@SBronars,https://t.co/dRbS2j8Gfx +02/12/2017,Economists,@SBronars,RT @GarySinise: Here we are at @NMC_SD for the @GarySiniseFound Invincible Spirit Festival. Check out my skills at flipping burgers with @R… +02/12/2017,Economists,@SBronars,"18.5 million private sector layoffs in 2016, lowest in history of #JOLTS series. 1 layoff per 79 private sector employees per month in 2016." +02/11/2017,Economists,@SBronars,Newspaper runs photo of Alec Baldwin instead of Donald Trump https://t.co/zQOzpt3NPc via @HuffPostPol +02/11/2017,Economists,@SBronars,"Healthier labor market - increasing private sector quits per year +2016 33.7MM +2015 31.5MM +2014 28.9MM +2013 26.1MM +2012 23.6MM +#JOLTS" +02/08/2017,Economists,@SBronars,RT @familyunequal: In case you were wondering: US birth rates by women's age and education: 2015 https://t.co/bFCOQxYgQx +02/08/2017,Economists,@SBronars,"RT @WSJ: Santa Barbara missed out on California's rains, underscoring the vagaries of the state's water distribution +https://t.co/hfQF1vFsr3" +02/08/2017,Economists,@SBronars,RT @TheEconomist: Only a sixth of people in Africa under the age of 35 are in formal employment https://t.co/WXwPiv1O0G https://t.co/fTwIdK… +07/02/2018,Economists,@joebrusuelas,The title is a bit overdone but risks of a full blown trade war are rising: Renminbi’s worst month ever sparks US-C… https://t.co/bAgujiCt9H +07/02/2018,Economists,@joebrusuelas,"Michigan, South Carolina, Alabama.......EU warns of $300bn hit to US over car import tariffs via @FT + https://t.co/8yZTP7QdAV" +07/01/2018,Economists,@joebrusuelas,@byHeatherLong @FT Can’t have a discussion with a policymaker here in the EU without that popping up. I do not thin… https://t.co/yCQcmx5XUV +07/01/2018,Economists,@joebrusuelas,"RT @genemarks: #Middlemarket companies continue their positive economic outlook https://t.co/SeH65Z1JeB +@USChamber https://t.co/nRPraDqPQM" +07/01/2018,Economists,@joebrusuelas,Recession anyone? This is how policy choices lead to a premature end of a business cycle: Exclusive: A leaked Trump… https://t.co/ybEAoHlVfg +07/01/2018,Economists,@joebrusuelas,Tomorrow https://t.co/tjS4cQxIwQ +07/01/2018,Economists,@joebrusuelas,Date Night. @ Avenue des Champs-Élysées https://t.co/mnQZjj0fQv +06/30/2018,Economists,@joebrusuelas,For everyone that protested across the USA know that it was noticed in Europe. All the networks & papers followed c… https://t.co/f4exVIszJt +06/30/2018,Economists,@joebrusuelas,RT @sosarris: Thank you @spg @spglife for the lovely chocolate and the great @hotelpdgdla hotel! @joebrusuelas https://t.co/qnbpHnO6Np +06/30/2018,Economists,@joebrusuelas,@Galactic_George Bourbon for my men & my horses. Champagne for the ladies!!! +06/30/2018,Economists,@joebrusuelas,Out on the street following the France 🇫🇷 vs Argentina 🇦🇷 match. @ Avenue des Champs-Élysées https://t.co/MfCk9nj3VI +06/30/2018,Economists,@joebrusuelas,@Galactic_George Yo man it’s sunny & 90 here right now. I’ve probably used all my good weather days in Paris. All good here. 😎🥃🌮 +06/30/2018,Economists,@joebrusuelas,@Galactic_George Oh yeah that is the main event tonight. Crazy here right now. City is alive. +06/30/2018,Economists,@joebrusuelas,Taken by @sosarris this sums up Saturday. And it was magnificent. https://t.co/OdjUqIolPD +06/30/2018,Economists,@joebrusuelas,@simonhartRSM @FIFAWorldCup Oh and I found the bar to watch @England play on Tuesday. The Coq & The Bulldog. That will be supreme. +06/30/2018,Economists,@joebrusuelas,That just felt like an earthquake following that goal. What a match! +06/30/2018,Economists,@joebrusuelas,@simonhartRSM @FIFAWorldCup This struggle is real in Paris right now & just exploded on that goal. +06/30/2018,Economists,@joebrusuelas,@JeffMacke That’s s little bit harsh. +06/30/2018,Economists,@joebrusuelas,Love how the horns on the streets of Paris are blaring following that goal. @FIFAWorldCup +06/30/2018,Economists,@joebrusuelas,RT @USChamber: Trade agreements create a level playing field #NAFTAworks #FacesofTrade https://t.co/lX3UfjpMfk https://t.co/WKbdh2eNKW +06/30/2018,Economists,@joebrusuelas,@moorehn I’m at cafe on Ave George V on the Seine +06/30/2018,Economists,@joebrusuelas,"Saturday morning. @ Paris, France https://t.co/ppQ2ERI9BP" +06/30/2018,Economists,@joebrusuelas,RT @RSMUSLLP: RSM Classic tickets go on sale Monday https://t.co/xz7hS7EK7j via @Brunswick_News +06/29/2018,Economists,@joebrusuelas,RT @TedMerz: Note to journos: Get off my lawn with your dumpster fire references. @TheTerminal https://t.co/ixHjxBSF68 +06/29/2018,Economists,@joebrusuelas,A little night music from quite the event. @ Résidence De L'ambassadeur des États-Unis En France https://t.co/1PiJJifRmO +06/29/2018,Economists,@joebrusuelas,"@MamaShelter_P which may be the hippest spot in the universe right now. @ Paris, France https://t.co/TCI0YwOJDY" +06/29/2018,Economists,@joebrusuelas,RT @ernietedeschi: Here's the monthly federal budget deficit on a 12M rolling basis. It was $404bn over the 12M ending Jan 2016. Now it's $… +06/29/2018,Economists,@joebrusuelas,@jodiecongirl No please do & I would be happy to follow up with them if they have any question. I deal with lots of… https://t.co/z0T1Y4vtYk +06/29/2018,Economists,@joebrusuelas,@jodiecongirl I never finished mine either. At a certain point it became something of a vanity and just decided to… https://t.co/fqEh0ejr7n +06/29/2018,Economists,@joebrusuelas,RT @RSM_Canada: #MiddleMarket businesses are viable targets for #cybercrime. @RSMUSLLP’s #MiddleMarket Business Index – special #cybersecur… +06/28/2018,Economists,@joebrusuelas,RT @simonhartRSM: In a period when the UK will soon be looking to start trade agreements post #Brexit with US and others this @RSMUSLLP q&a… +06/28/2018,Economists,@joebrusuelas,At the US Embassy 4th of July Party. https://t.co/T1IdfdMIuu +06/28/2018,Economists,@joebrusuelas,"Ok, watching the @FIFAWorldCup in Paris with 🏴󠁧󠁢󠁥󠁮󠁧󠁿 vs 🇧🇪. One can see the look of the spectators on the street. I… https://t.co/d9nlPtagVW" +06/28/2018,Economists,@joebrusuelas,With the yield curve flattening and risks of inversion rising as the Fed accelerates it’s rate hike campaign it’s t… https://t.co/1Zki3ygKEz +06/28/2018,Economists,@joebrusuelas,Remembrance of a time when we did good & great things. https://t.co/sITIal1FsS +06/27/2018,Economists,@joebrusuelas,A informative evening with old relationships bolstered & new ones established. Towards a UK-US FTA should condition… https://t.co/VcmVbL6wv8 +06/27/2018,Economists,@joebrusuelas,RT @simonhartRSM: With @RSMUSLLP colleague @joebrusuelas for tonight’s discussion on US UK trade thanks to @indparltrust taking place at… +06/27/2018,Economists,@joebrusuelas,Kinda like this place. Beautiful terrace. @ Houses of Parliament https://t.co/LFqauR8ryJ +06/27/2018,Economists,@joebrusuelas,Looking forward to a frank & friendly discussion. Too bad Chatham House rules govern the dinner. No more important… https://t.co/jU35SvDT8U +06/27/2018,Economists,@joebrusuelas,Gladstone & I. Speaking before the @indparltrust dinner tonight on Global Britain: The Future UK-US Trade Relations… https://t.co/RR5dwWJwpq +06/27/2018,Economists,@joebrusuelas,Real challenge to middle market firms. If the administration pull out of NAFTA it will be existential for some. As… https://t.co/OntfbYdlk3 +06/27/2018,Economists,@joebrusuelas,@timmullaney Trade & inventories data is why. +06/27/2018,Economists,@joebrusuelas,Following this mornings US data deluge I’m upgrading my forecast of Q2’18 from 4.1% to 4.3% with risk of a much stronger first print. +06/27/2018,Economists,@joebrusuelas,Please do listen to our discussion with @USHGNYC CEO Danny Meyer for his insights on commerce in this business cycl… https://t.co/mo6xnugOJJ +06/27/2018,Economists,@joebrusuelas,Should a hard Brexit be the endgame for the U.K. it’s time to start considering other options. My thoughts on the c… https://t.co/dn6VpYDeEO +06/27/2018,Economists,@joebrusuelas,A good US yield curve morning to all. The spread sits at 32.439 basis points in early trading. https://t.co/D1eJHBaIbV +06/27/2018,Economists,@joebrusuelas,RT @lindayueh: Times: draft white paper proposes binding UK into EU regulatory framework for goods; regarded as key to solving Irish border… +06/27/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: When will the #middlemarket begin to upgrade plants, equipment and tech? Tax legislation and other factors provide insights:…" +06/26/2018,Economists,@joebrusuelas,Churchill’s Courage. @ The Ritz London https://t.co/6dzFqBOMvV +06/26/2018,Economists,@joebrusuelas,"RT @USChamber: 125,000 Small and medium-size businesses sell goods and services to Canada and Mexico https://t.co/CdCXW2KddI #NAFTA #NAFTA…" +06/26/2018,Economists,@joebrusuelas,"RT @USChamber: #NAFTAworks: Abandoning a trade agreement that’s helped farmers, businesses, workers, and families would be disastrous https…" +06/26/2018,Economists,@joebrusuelas,RT @steveliesman: The Dow has fallen 1% or more 17 days this year like yesterday (-1.33%). CNBC finds 8 of those 17 down days were sparked… +06/26/2018,Economists,@joebrusuelas,"RT @RSM_Ireland: Its the last day of the RSM European Regional Conference in Prague! Our Tax Partner, Aidan Byrne and Director of Internati…" +06/26/2018,Economists,@joebrusuelas,"The US agricultural sector, which is the subject of retaliation, due to US trade policies, is taking it on the chin… https://t.co/YYRFFkUGoQ" +06/26/2018,Economists,@joebrusuelas,A quick look at the Bloomberg Industrial Metals Subindex. Down 5.71% YTD to 130.63 on global trade tensions. https://t.co/qOzTXvtQ6Y +06/26/2018,Economists,@joebrusuelas,According to @business the @GoldmanSachs @FIFAWorldCup model now estimates a Brazil vs @England final. That would b… https://t.co/THEKDakx2e +06/26/2018,Economists,@joebrusuelas,Early look at the US yield curve which has flattened to 34.17 basis points in early trading. Giving the growing ris… https://t.co/FRs0kiIlTG +06/26/2018,Economists,@joebrusuelas,A good sunny London morning to all. Trade tensions escalating as fears mount spillover into financial sector will be difficult to contain. +06/26/2018,Economists,@joebrusuelas,The case for a U.K.-US Free Trade Agreement. https://t.co/B8iwNqf68F +06/25/2018,Economists,@joebrusuelas,"RT @NeilBradleyDC: We are going to see a lot more of this as tariffs beget retaliatory tariffs, all harming American consumers and workers.…" +06/25/2018,Economists,@joebrusuelas,@JustinWolfers Not to mention the crypto crowd. +06/25/2018,Economists,@joebrusuelas,RT @bostonchamber: Rising international trade tensions + modest tightening of domestic & global financial conditions did little to dent ove… +06/25/2018,Economists,@joebrusuelas,"RT @Pat_Gillespie: Reality here: The basic basket of food for a traditional household in Argentina rose 21% in May from a year ago, accordi…" +06/25/2018,Economists,@joebrusuelas,The US Congress & administration need to start considering policies about what to do with Technology Individual Dis… https://t.co/SJg5uVmKqY +06/25/2018,Economists,@joebrusuelas,As the US unemployment rate heads towards 3% workplace automation will be pulled forward then turbocharged in the n… https://t.co/SfgD27les1 +06/25/2018,Economists,@joebrusuelas,"RT @USChamber: #MiddleMarket business leaders are signaling strong, forward-looking expectations on revenues, earnings, hiring, and compens…" +06/25/2018,Economists,@joebrusuelas,So I’m thinking isn’t one justification for Navarro/Trump trade policies was to force supply chains & production b… https://t.co/RzVyU4b14E +06/25/2018,Economists,@joebrusuelas,RT @TFMkts: Bitcoin Is Struggling Because Bitcoin Has Lost Its Way via @forbes https://t.co/ifITjz7tvF $xbt $btc #eth #ripple #crypto +06/25/2018,Economists,@joebrusuelas,@CryptoPoland Or if the US central bank issues Fed Coin? Which is more probable? +06/25/2018,Economists,@joebrusuelas,"Under construction. @ London, United Kingdom https://t.co/OOAtoXpmn4" +06/25/2018,Economists,@joebrusuelas,@CryptoPoland There is no intrinsic value to bitcoin. It’s not tethered to a tax base. I’ve made the case for years… https://t.co/ejoyyVG7MU +06/25/2018,Economists,@joebrusuelas,Interesting paper on the economic limits of bitcoin & blockchain. https://t.co/sFC6sF2UEk +06/24/2018,Economists,@joebrusuelas,My view on the world this afternoon. @FIFAWorldCup @RSMUK @England https://t.co/WY87iLdWxp +06/23/2018,Economists,@joebrusuelas,“For each unharmful gentle soul misplaced inside a cell.” A clarion call from long ago & far away that still resona… https://t.co/qmtCPpJlE9 +06/23/2018,Economists,@joebrusuelas,@pointsnfigures That was one hell of a finish. Great @FIFAWorldCup match. +06/23/2018,Economists,@joebrusuelas,RT @NewYorker: Mexico’s laboriously intricate passing against South Korean brought to mind Yeats’s line about beauty and hard work: “Yet if… +06/23/2018,Economists,@joebrusuelas,RT @crampell: Trump’s tariff on steel imports has caused the country’s remaining major nail producer to lose about 50% of its business in t… +06/23/2018,Economists,@joebrusuelas,"Weekend Must Read: Donald Trump and the 1930s playbook: liberal democracy comes unstuck via @FT. + I t… https://t.co/AcRXzTswU2" +06/23/2018,Economists,@joebrusuelas,Gooooooal!!!!! Mexico v South Korea a terrific game. @FIFAWorldCup +06/23/2018,Economists,@joebrusuelas,James Madison from Federalist No.10: “Enlightened statesmen will not always be at the helm.” Wise words to remember… https://t.co/oApd9085t8 +06/22/2018,Economists,@joebrusuelas,RT @RSMUSLLP: A lower statutory rate could impact when - and in what ways - #middlemarket companies make strategic #capitalinvestments: htt… +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: 52% of survey res… https://t.co/ZuJdmu6nDz +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: Roughly 58% of su… https://t.co/M42NgIelyK +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: 52% of survey res… https://t.co/AXyA9xseGh +06/22/2018,Economists,@joebrusuelas,@RSMUSLLP Q2'18 Middle Market Business Index Special Questions on Tax Cuts & Capital Investments: Roughly 39% of su… https://t.co/bkrgzSdG99 +06/22/2018,Economists,@joebrusuelas,RT @RSMUSLLP: The “trade spat” is perilously close to becoming an all-out trade war. Here’s how #middlemarket leaders can be ready: https:/… +06/22/2018,Economists,@joebrusuelas,"RT @crypto: U.S. House members are told to publicly reveal any cryptocurrency holdings worth more than $1,000 https://t.co/DlVL6CQZzO https…" +06/22/2018,Economists,@joebrusuelas,"RT @USChamber: Confidence among America's middle market companies eased slightly, the new @RSMUSLLP #MiddleMarket Business Index shows. Fin…" +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Selling goods or services across state lines? The #SDvWayfair decision by SCOTUS affects you: https://t.co/GpbWL4g1DF https:/… +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Uncertainty regarding #immigration policies could create an even tighter #construction labor market: https://t.co/3W9HOk1y1v +06/21/2018,Economists,@joebrusuelas,Ahead of my trip to the UK next week my note on the case for a UK-US Free Trade Agreement. ⁦@simonhartRSM⁩ ⁦@RSMUK⁩ https://t.co/B8iwNqf68F +06/21/2018,Economists,@joebrusuelas,Strong move in sterling following the BoE rate decision to remain on hold this morning. Looking forward to grading… https://t.co/5XK5Q91l3S +06/21/2018,Economists,@joebrusuelas,My latest note on the case for a US-UK Free Trade Agreement. https://t.co/B8iwNqf68F +06/21/2018,Economists,@joebrusuelas,RT @PIIE: Here’s what’s included in the revised Section 301 tariff list released June 15 vs. the April 3 list. More intermediate inputs tha… +06/21/2018,Economists,@joebrusuelas,Did you know that Canada sent roughly $1.5 trillion of foreign direct investment to the United States? Check out th… https://t.co/SeH5WFjDEr +06/21/2018,Economists,@joebrusuelas,"A good Bank of England rate decision morning. A late holiday,warm weather & the royal wedding may bolstered spendin… https://t.co/YDYroQyiNu" +06/21/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Join @joebruselas and @ceoshowforum's Robert Reiss as they talk with @USHGNYC CEO Danny Meyer on the first episode of #Middle… +06/20/2018,Economists,@joebrusuelas,RT @USChamber: #MiddleMarket companies continue their positive economic outlook https://t.co/8xiAEeTI6O +06/20/2018,Economists,@joebrusuelas,"Good to see reason prevail, if only temporarily. : #BREAKING: BREAKING NEWS: Trump administration drafting executiv… https://t.co/lOnUMfXh3w" +06/20/2018,Economists,@joebrusuelas,This is what global leadership looks like. German automakers engaged in enlightened self-interest with the knowledg… https://t.co/ctrAW80gLe +06/20/2018,Economists,@joebrusuelas,A useful reminder that a country pursued its own interest by engaging in free trade regardless of what other countr… https://t.co/Vef7jYLmNy +06/20/2018,Economists,@joebrusuelas,A good wake up Wednesday to all. It would appear the US business community now recognizes it’s not just a negotiati… https://t.co/fNoTgBQzCH +06/20/2018,Economists,@joebrusuelas,"“We must always take sides. Neutrality helps the oppressors, never the victim. Silence encourages the tormentor, ne… https://t.co/RHelSimNjy" +06/20/2018,Economists,@joebrusuelas,A little music to soothe the national soul or what’s left of it. I see my life come shining from the West on to the… https://t.co/ShWwd9p9es +06/20/2018,Economists,@joebrusuelas,"RT @JimPethokoukis: “You can resolve to live your life with integrity. Let your credo be this: Let the lie come into the world, let it even…" +06/19/2018,Economists,@joebrusuelas,@CasieDaugherty That is awesome! +06/19/2018,Economists,@joebrusuelas,I wish that all policymakers should see the client questions I’m getting caused by Trump’s tariffs today. There is… https://t.co/Qw9k9EuEx0 +06/19/2018,Economists,@joebrusuelas,@MKTWgoldstein His picture should be permanently attached to the term moral hazard in every Econ text in perpetuity. +06/19/2018,Economists,@joebrusuelas,I’m proud that our partner @USChamber of the @RSMUSLLP Middle Market Business Index has taken such a courageous sta… https://t.co/qgGBxrulAi +06/19/2018,Economists,@joebrusuelas,"RT @DinaPomeranz: In 1929-1934, a campaign forcing Mexicans and Mexican Americans out of the country was carried out in some US states. + +Th…" +06/19/2018,Economists,@joebrusuelas,"RT @dlcohenwrites: . @RSMUSLLP MMBI shows midmarket biz sentiment remains robust in Q2, despite growing trade tensions. https://t.co/J5gfBa…" +06/19/2018,Economists,@joebrusuelas,RT @USChamber: The latest @RSMUSLLP #middlemarket Business Index eased slightly as policymakers and decision makers consider the post-econo… +06/19/2018,Economists,@joebrusuelas,The latest edition of the RSM Middle Market Business Index indicates business activity in the real economy remains… https://t.co/heAz6Bac0L +06/19/2018,Economists,@joebrusuelas,@TFMkts That’s just an excuse for incoherent & failed policy choices. If they wanted to get tonight they would have… https://t.co/Dcx2UriqI3 +06/19/2018,Economists,@joebrusuelas,"Trade wars are the ultimate wars of choice. They are easy to start, difficult to end & everyone loses." +06/19/2018,Economists,@joebrusuelas,Intensifying trade spat hanging heavy on investors. Equity futures point to a difficult day in markets ahead of the… https://t.co/0ToXImhosR +06/19/2018,Economists,@joebrusuelas,"RT @SenJohnMcCain: The administration’s current family separation policy is an affront to the decency of the American people, and contrary…" +06/19/2018,Economists,@joebrusuelas,@morningmoneyben That would have been outstanding a multinational coalition that brought 18K tariffs to zero. Oh wait.... +06/19/2018,Economists,@joebrusuelas,Sunset @ W Washington D.C. Hotel https://t.co/v75iPGS0dO +06/19/2018,Economists,@joebrusuelas,@MKTWgoldstein That’s a pretty neat trick. Potentially $400 billion in tariffs on $136 billion exports. +06/18/2018,Economists,@joebrusuelas,Nothing like placing $200 billion of tariffs on $136 billion of imports. Go ahead and follow the shiny ball to take… https://t.co/gKTjz2kSb0 +06/18/2018,Economists,@joebrusuelas,"I once read a book titled “Living in Truth.” The author, Vaclev Havel, made the case that to live with lies is to a… https://t.co/pGAbxxP79I" +06/18/2018,Economists,@joebrusuelas,"The uncertainty tax around the intensifying trade spat will exert a powerful toll on A3: Aerospace, Agriculture, &… https://t.co/1biBVTfKTM" +06/18/2018,Economists,@joebrusuelas,"RT @BeschlossDC: Italian mother and children arrive at Ellis Island, 1908: #Hine https://t.co/UtYrM6wmfP" +06/18/2018,Economists,@joebrusuelas,"RT @NewYorkFed: “Finance should be both intellectually and ethically fulfilling — a field where people can use their heads during the day,…" +06/18/2018,Economists,@joebrusuelas,Today’s must read: Farewell to Manzanar. It’s a book that is embedded in the American experience & deeply impacted… https://t.co/aWO221CFED +06/18/2018,Economists,@joebrusuelas,A good DC morning to all. Scorching is a good description of the atmosphere & I’m not just talking about the weather. +06/17/2018,Economists,@joebrusuelas,@ernietedeschi @91X has been running them for some time. Was surprised at intensity of ads early in year targeting Almo. +06/17/2018,Economists,@joebrusuelas,A good way to pass the time on the tarmac. https://t.co/H9qRRW4vVt +06/17/2018,Economists,@joebrusuelas,The Bank of International Settlements provides a comprehensive takedown of crypto currencies & rightly points out t… https://t.co/8h8nX6no0g +06/17/2018,Economists,@joebrusuelas,@rsmglobalmx 🇲🇽🙌🇲🇽🙌🇲🇽🍾🎉🇲🇽🙌🇲🇽🙌 +06/17/2018,Economists,@joebrusuelas,"RT @FIFAWorldCup: Wow! + +#MEX stun the #WorldCup champions in Moscow! + +#GERMEX 0-1 https://t.co/XOtAWcKD8U" +06/17/2018,Economists,@joebrusuelas,What an upset!! https://t.co/pnEdMaxIx1 +06/17/2018,Economists,@joebrusuelas,@rsmglobalmx what a first half as Mexico outplays Germany in the @FIFAWorldCup. Viva 🇲🇽 +06/16/2018,Economists,@joebrusuelas,"@kevindepew Well, sort of due to those automatic stabilizers. I mean without tax transfers from California where wo… https://t.co/4j6ynPdUGw" +06/16/2018,Economists,@joebrusuelas,"RT @BeschlossDC: 160 years ago today in Springfield, Senatorial candidate Abraham Lincoln said, “A house divided against itself cannot stan…" +06/16/2018,Economists,@joebrusuelas,Today’s must read...in between World Cup matches...trade protectionism is no way to make America great again: Peopl… https://t.co/2Ov55qHwHg +06/15/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: As reports circulate of additional #tariffs on China, here’s how some #middlemarket companies are responding to trade tension…" +06/15/2018,Economists,@joebrusuelas,"While the paring back of the tariff lines on China was mildly encouraging, the U.S. just does not export enough to… https://t.co/ZeoVtFzI0G" +06/15/2018,Economists,@joebrusuelas,Data viz of the moment. Thai bhat under pressure as emerging market woes linked to policy normalization at the Fed… https://t.co/9ggK6tcZlK +06/15/2018,Economists,@joebrusuelas,The latest The Real Economy is out. Please read my note on options for policymakers once the business cycle ends. F… https://t.co/17pgj96yTz +06/15/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: The #MiddleMarket #transformativeCEO, a new radio series co-hosted by @ceoshowforum's Robert Reiss & RSM’s @joebrusuelas, lau…" +06/15/2018,Economists,@joebrusuelas,"RT @RSM_Canada: In light of the recent #tariffs imposed on steel & aluminum, significant risks exist to Canada. #Diversification of trade i…" +06/14/2018,Economists,@joebrusuelas,@Galactic_George Well at the very least rising deficits & debt will take the edge off of the impact of lower tax ra… https://t.co/KGKGgremba +06/14/2018,Economists,@joebrusuelas,@Galactic_George Yeah I have the annual operating deficits as a percentage of GDP going to 5.5% over the next 36 months. +06/14/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Changes to the business cycle could hit in early 2018 following #interestrate hikes according to @joebrusuelas: https://t.co/… +06/14/2018,Economists,@joebrusuelas,Nothing like a little Draghi to start your day. ECB headed toward the exit bolsters Euro against the greenback. https://t.co/tC0Uw7q6Xx +06/14/2018,Economists,@joebrusuelas,@CJMaloneyBN You know you are correct. The clickbait associated with hyperventilating screeds is always better. Lol +06/14/2018,Economists,@joebrusuelas,@TimDuy What did we do to deserve such leaders for our flock. Jeez.... +06/14/2018,Economists,@joebrusuelas,Looking forward to discussions on divergence in inflation readings between CPI & PCE from all the usual suspects ov… https://t.co/hl8RaH8Xad +06/14/2018,Economists,@joebrusuelas,"For those with more bullish outlooks: the fiscal boost to the economy, especially from the $320 billion from the re… https://t.co/SKa98OE56T" +06/14/2018,Economists,@joebrusuelas,Following this mornings data that “Hawkish Hedge” put forward by the FOMC is looking prescient. +06/14/2018,Economists,@joebrusuelas,Following this morning’s US Retail Sales data-it was so strong I broke out the computer at the airport to make poin… https://t.co/GmU5NpmvLq +06/14/2018,Economists,@joebrusuelas,Very strong US retail sales in May. At a 3 month average annualized pace sales were up 7.9% & the control group tha… https://t.co/MDlLiBZaCc +06/13/2018,Economists,@joebrusuelas,RT @NeilBradleyDC: Read my statement on the upcoming immigration votes in the House. Protect #Dreamers. Reject the ‘unwelcome’ sign. https:… +06/13/2018,Economists,@joebrusuelas,RT @RSMUSLLP: Updated Twitter Moment collecting insights and reactions from @joebrusuelas on today's #FOMC meeting summary: https://t.co/bp… +06/13/2018,Economists,@joebrusuelas,"A quick look at the Fed's Dot Plot. Per my tweet earlier this morning, I think it was Brainard who increased her fo… https://t.co/DWapmYFW2o" +06/13/2018,Economists,@joebrusuelas,Interesting answer by Powell on the Fed bumping up against the neutral rate of interest. Well thought out and indic… https://t.co/R1lA8nrlmj +06/13/2018,Economists,@joebrusuelas,"FOMC: The Fed's upward revision to the employment, growth &inflation forecast are in line with improvement in the e… https://t.co/sFU0u8xE7m" +06/13/2018,Economists,@joebrusuelas,Today's FOMC meeting & publication of the summary of economic projections has not altered our core forecast. We exp… https://t.co/U2qpoUV4Ra +06/13/2018,Economists,@joebrusuelas,"Nice to see Powell reinforce that ""hawkish hedge"" put forward in the statement with very clear open mouth operation… https://t.co/zI942jC7Zh" +06/13/2018,Economists,@joebrusuelas,FOMC: the selective use of the word symmetric implies the Fed is looking at its range of policy tools ahead of the… https://t.co/dRV8wub4N2 +06/13/2018,Economists,@joebrusuelas,The Fed has carefully constructed a bridge back towards a slower pace of reduction in accommodation via its policy… https://t.co/vztSCOBMrT +06/13/2018,Economists,@joebrusuelas,FOMC: The first months of the Powell regime has been defined by a careful calibration of risks & a balanced outlook… https://t.co/DTlUX47CuQ +06/13/2018,Economists,@joebrusuelas,Policymakers at the Fed issued a “Hawkish Hedge” as the FOMC hiked its policy rate by 25 basis points to a rate to… https://t.co/PrXDXD6Hj7 +06/13/2018,Economists,@joebrusuelas,A little data viz & analysis prior to the FOMC meeting. Please take a look at my estimate of the Fed’s reaction fun… https://t.co/ZUR88qxiWG +06/13/2018,Economists,@joebrusuelas,"RT @USChamber: Today, the U.S. is the world’s top producer of oil and natural gas. Now, our energy industry is poised to continue this grow…" +06/13/2018,Economists,@joebrusuelas,"@michaelmbaker The key language is ""the Committee’s symmetric 2 percent objective ."" I think that this is the FOMC… https://t.co/MeLczDXS9L" +06/13/2018,Economists,@joebrusuelas,"FOMC Dot Plot: The March SEP indicated 6 members estimated 3 hikes, 6 est four hikes, 2 est one hike & 1 est five h… https://t.co/g44KUZCrPT" +06/13/2018,Economists,@joebrusuelas,The Fed holding pressers after each meeting would certainly put in play the option to hike rates as necessary at an… https://t.co/HhuOS7GF0w +06/13/2018,Economists,@joebrusuelas,"@huy_v_nguyen On the IOER: the 25bp hike will be accompanied by at 20bp hike in the IOER, which should result in th… https://t.co/Uvtz9jR0CH" +06/13/2018,Economists,@joebrusuelas,Ahead of the FOMC meeting here is a quick look at a flattening yield curve. One would think that in the first half… https://t.co/hztijEkDNv +06/13/2018,Economists,@joebrusuelas,The data viz illustrates my estimate of the Fed's reaction function. It implies a fourth rate hike this year and a… https://t.co/qw0Bskmxfo +06/13/2018,Economists,@joebrusuelas,A good FOMC morning to all or should we say happy dot plot day. A 25bps hike is priced in for today’s meeting & we… https://t.co/RISr5vnsHV +06/13/2018,Economists,@joebrusuelas,RT @wsl: Sharing is Caring 🐬 Video by Jaimen Hudson https://t.co/71K2gzX9zt +06/13/2018,Economists,@joebrusuelas,RT @isardasorensen: Sweeping pink & blue #sunset hues over #NYC tonight. https://t.co/xkMtUi0qM6 +06/13/2018,Economists,@joebrusuelas,@mark_dow Now that I like. +06/13/2018,Economists,@joebrusuelas,"RT @U2: A hot night in Harlem @ApolloTheater with @SunRaUniverse for @SIRIUSXM ... +https://t.co/X8Sa5F5Hyc +#U2 #RattleandHum #horns #angel…" +06/13/2018,Economists,@joebrusuelas,Our partners @USChamber providing real leader on risks around US protectionism. https://t.co/9hrBT7Zx8O +06/12/2018,Economists,@joebrusuelas,The Fed holding pressers after each meeting would certainly put in play the option to hike rates as necessary at an… https://t.co/Stz8NzkzlR +06/12/2018,Economists,@joebrusuelas,My FOMC preview. https://t.co/TfkbJTPYS2 +06/12/2018,Economists,@joebrusuelas,Today’s Must Read: spot on with respect to non-compete agreements & monopsony power. Courts have now blessed mandat… https://t.co/H57ImO5nrI +06/12/2018,Economists,@joebrusuelas,@JEG_Booth96 I would suggest all involved take a look at the US-Australian bilateral free trade negotiation & use i… https://t.co/ZnovsdRKoE +06/12/2018,Economists,@joebrusuelas,"A US-UK FTA will not be something that is negotiated quickly. Hard bargaining on market access over agriculture, ph… https://t.co/HJ2igNHVLH" +06/11/2018,Economists,@joebrusuelas,"RT @espn: This high school pitcher struck out his childhood friend to advance to the state championships. + +Instead of celebrating with his…" +06/11/2018,Economists,@joebrusuelas,"RT @RSMUSLLP: The new #revenuerecognition guidance will affect most industries, ensure you are up-to-date and ready to implement by the dea…" +06/11/2018,Economists,@joebrusuelas,My FOMC meeting preview. Includes my forward look at the Fed’s reaction function & expectation for Wednesday’s monu… https://t.co/UgHyxC0ibC +06/10/2018,Economists,@joebrusuelas,"Good news: IBM builds world’s most powerful supercomputer to crack AI via @FT + https://t.co/kVkJD1AaLi" +06/10/2018,Economists,@joebrusuelas,If your invested in crypto or are thinking about it one might want to read this. No way regulators can tolerate thi… https://t.co/M94ossE3qg +06/10/2018,Economists,@joebrusuelas,"RT @JustinWolfers: Average tariff rates charged by G-7 nations: +USA: 1.6% +EU: 1.6% +UK: 1.6% +Italy: 1.6% +Germany: 1.6% +France: 1.6% +Japan: 1…" +06/10/2018,Economists,@joebrusuelas,"RT @ianbremmer: The US is like LeBron. +The best player on the court. +Still can’t win by ourselves." +06/09/2018,Economists,@joebrusuelas,RT @USChamber: Magic Johnson and Michael Jordan are both examples of athlete entrepreneurs who were able to have successful careers long af… +06/09/2018,Economists,@joebrusuelas,RT @simonhartRSM: And that’s a great week of touring with colleague @joebrusuelas from @RSMUSLLP covering #Brexit #Globaleconomy #UStrade.… +06/08/2018,Economists,@joebrusuelas,@McDonalds approach to a tight labor market. Was walking down street in London and could see it near doorway. Walke… https://t.co/jQwfvUx4FZ +06/08/2018,Economists,@joebrusuelas,"RT @RSMUK: #Brexit is not Armageddon, says @joebrusuelas as he shares insight at our Global Economy event. #UKUStrade #RSMevents https://t.…" +06/08/2018,Economists,@joebrusuelas,"RT @MarkTaylor_RSM: Another day, another engaged audience... @simonhartRSM of @RSMUK and @joebrusuelas of @RSMUSLLP giving insight on globa…" +06/08/2018,Economists,@joebrusuelas,@fritzriddle @Pat_Gillespie I settle for a target on the primary fiscal balance of zero. Given that the US is on th… https://t.co/y1TGWZcgJQ +06/08/2018,Economists,@joebrusuelas,"RT @Pat_Gillespie: BREAKING: Argentina announces new inflation and fiscal targets in exchange for $50 billion credit line from IMF. + +New i…" +06/07/2018,Economists,@joebrusuelas,@JeffMacke I’m really more interested in the performance of the nationalist militia training in the forests vis a v… https://t.co/jvnpY50AQs +06/07/2018,Economists,@joebrusuelas,What beautiful setting to wrap up an excellent @BABCMidlands event. Birmingham is truly in the process of an econom… https://t.co/tSkw9Fh7BG +06/29/2018,Economists,@IanShepherdson,"Good to know the economy's in such safe hands + +https://t.co/uwUEDcf4kC" +06/24/2018,Economists,@IanShepherdson,@FerroTV When I said on @bsurveillance on Friday that England would get five or six against Panama I was definitely being entirely serious. +06/22/2018,Economists,@IanShepherdson,About to go on @bsurveillance in NYC with @tomkeene +06/21/2018,Economists,@IanShepherdson,"@mmurraypolitics @ChrisRugaber Two options here: The president is lying, or the president doesn't know what he's ta… https://t.co/gGd4OI3Ivi" +06/19/2018,Economists,@IanShepherdson,Never mind the jump in May housing starts; this is what really matters for housing construction. https://t.co/y3gA5JIjqk +06/19/2018,Economists,@IanShepherdson,"@paulkrugman Well, the market open this morning isn't going to be pretty." +06/19/2018,Economists,@IanShepherdson,I'm about to go on @SquawkCNBC live from NY with @BeckyQuick and @JoeSquawk +06/18/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The end is coming...but when, how and what will it look like?"" Chief U.S. Economist @IanShepherdson hosted a webinar la…" +06/18/2018,Economists,@IanShepherdson,"If the UK economy had kept pace with the Eurozone over the past year, GDP would have been £20B bigger. So the… https://t.co/cpcBz5II2Q" +06/18/2018,Economists,@IanShepherdson,"If that's a Brexit dividend, finance theory needs a bit of a rethink. https://t.co/dWd19Cilxs" +06/17/2018,Economists,@IanShepherdson,"Note the forecast is 3.62%, not 3.63%, or 3.61%. The margin of error here is at least +/-1%. It's nonsense like thi… https://t.co/IgL3z4pLzG" +06/15/2018,Economists,@IanShepherdson,Delaying the purchase of a washing machine was a bad choice. Just imagine if tariffs are applied broadly to a wide… https://t.co/f0QHlaPNfa +06/15/2018,Economists,@IanShepherdson,"Interested in LatAm FX and economies at this time of turmoil? You should be following Pantheon's @andres__abadia, R… https://t.co/25UuLKJ8Jo" +06/15/2018,Economists,@IanShepherdson,Markets do love a trade war. https://t.co/2NTvvxOCGJ +06/15/2018,Economists,@IanShepherdson,The one and only positive impact of Brexit. https://t.co/qoDzQWSQ9j +06/14/2018,Economists,@IanShepherdson,"@paulkrugman Most of the British media, with some honorable exceptions, mostly CHOSE not get it, for ideological re… https://t.co/ZvtgFHbtV3" +06/13/2018,Economists,@IanShepherdson,@D_Blanchflower Ok thanks for the clarification. FWIW I think ECI private wages/salaries will be 3.5%+ and rising… https://t.co/GUMsx3BBBm +06/13/2018,Economists,@IanShepherdson,"They average a massive 1.6%. Which is what the US levies on other countries' imports, on average. There are specifi… https://t.co/SUnrcfm9YS" +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower OK, so again, are you saying there's be no further increase in US wage growth until the after the u… https://t.co/CL8gqaY57r" +06/13/2018,Economists,@IanShepherdson,"@athantolis68 @D_Blanchflower Actually, US productivity growth is no longer stagnant; it's finally picking up on th… https://t.co/iVuRsPIzfz" +06/13/2018,Economists,@IanShepherdson,@D_Blanchflower I'm only talking about the US. UK is a special case because of the lunatic self-harm of Brexit. +06/13/2018,Economists,@IanShepherdson,@Neil_Irwin Three possibilities: 1. They know something we don't (or think they do). 2. They don't really believe t… https://t.co/TJsqG7zv3V +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower Just to be clear, are you saying there'll be no meaningful increase in wage growth until after unem… https://t.co/xhhYSXnfSv" +06/13/2018,Economists,@IanShepherdson,"If the Fed gets to tell banks they can finance marijuana businesses, will they publish a Pot Dot Plot?" +06/13/2018,Economists,@IanShepherdson,"@D_Blanchflower Wages indeed slower than in the past, because productivity growth & inflation are lower than in pas… https://t.co/BuarKdcHca" +06/13/2018,Economists,@IanShepherdson,"@saedmyster Productivity growth is 1.3% y/y, so that's about all you can reasonably expect." +06/13/2018,Economists,@IanShepherdson,"Please stop telling me there's no wage growth. ECI private sector wages y/y: +Q1 2016: 2.0% +Q1 2017: 2.6% +Q1 2018: 2.9%" +06/13/2018,Economists,@IanShepherdson,"Powell is using the word ""hope"" rather more than I'd want to hear from the guy in charge of the world." +06/13/2018,Economists,@IanShepherdson,"Better get all your shopping for imported consumer goods done sharpish. +U.S. preparing to proceed with tariffs on C… https://t.co/6aqdI9I9RG" +06/13/2018,Economists,@IanShepherdson,Markets ultimately respond to what the Fed does. The Fed sometimes does what it says it is going to do. It always d… https://t.co/BiUZEnmMnM +06/13/2018,Economists,@IanShepherdson,@NickTimiraos Are they sure it isn't 1.93%? Or 1.95%? Because I'm not. +06/13/2018,Economists,@IanShepherdson,"...this chart, it makes more sense to use core CPI to derive real wages. On that basis, the real wage growth pictu… https://t.co/lXZA9nu0HG" +06/13/2018,Economists,@IanShepherdson,@paulkrugman Most of the variation in your measure of real wage growth over this period is due to big swings in gas… https://t.co/Zd7zDIuWza +06/13/2018,Economists,@IanShepherdson,"At least... Summer of '16, it was less than 1%. But there's no inflation so everything fine. https://t.co/2OJ19N1CvM" +06/13/2018,Economists,@IanShepherdson,"@Virgin_TrainsEC I know that now, but only because another passenger told me. It was never announced; hence, completely avoidable chaos." +06/13/2018,Economists,@IanShepherdson,@Virgin_TrainsEC When you make an announcement (1430 KGX NCL) that there's no coach E and that the reservations are… https://t.co/5Gvnv9HznR +06/13/2018,Economists,@IanShepherdson,RT @PantheonMacro: In Case You Missed It; Chief U.S. Economist @IanShepherdson discussing U.S. Inflation on @BloombergTV with @TheStalwart… +06/12/2018,Economists,@IanShepherdson,About to do Bloomberg TV from London with @scarletfu and @TheStalwart in NYC. +06/11/2018,Economists,@IanShepherdson,"Theresa May wants Britain to have an independent trade policy just when the words ""trade"" and ""deal"" in the same se… https://t.co/X3fqeJ8VvX" +06/11/2018,Economists,@IanShepherdson,"@ChrisGiles_ @FinancialTimes Largely because UK exporters viewed the drop in sterling after the referendum, as an o… https://t.co/5xU7zvk7CL" +06/11/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The #Fed will Hike this Week, but Likely will Hold Back the Fourth Dot"" @IanShepherdson https://t.co/6Vrt33GAhb #Panthe…" +06/09/2018,Economists,@IanShepherdson,"That's because it wasn't ""reform"". It was a huge giveaway to rich people and corporations. But there aren't enough… https://t.co/EGxyLUGcbL" +06/08/2018,Economists,@IanShepherdson,RT @TimDuy: This. The Democrats need to run on something other than the economy this November. Run on health care. Run on common decency an… +06/08/2018,Economists,@IanShepherdson,"My latest for The Hill, musing on how the jobs numbers are going to make life hard for Dems in November. +https://t.co/bnWPPQb8l9" +06/07/2018,Economists,@IanShepherdson,"Impeccably sourced. +*Ahem* +A Strong Economy Presents Democrats with a Challenge in the Midterms https://t.co/PyUpWcWJsj" +06/06/2018,Economists,@IanShepherdson,Hopped over to @BloombergTV with @flacqua +06/06/2018,Economists,@IanShepherdson,Live on @BloombergRadio in London in a mo. +06/05/2018,Economists,@IanShepherdson,"All you need to know about @Econs4FreeTrade is that their website features 30 headshots, 28 of which are of middled-aged white men in suits." +06/02/2018,Economists,@IanShepherdson,@WSJecon Three different shades of blue on one chart? Other colors are available. +06/01/2018,Economists,@IanShepherdson,Both https://t.co/MsIFtFsIci +06/01/2018,Economists,@IanShepherdson,if the current 12-month average rates of increase of household employment and the labor force continue over the nex… https://t.co/SzTAlprRJ7 +06/01/2018,Economists,@IanShepherdson,"Riveting back to the trend before mid-14, when the collapse in oil prices crushed capex in the oil sector and every… https://t.co/SfEW4jRjPr" +06/01/2018,Economists,@IanShepherdson,One good month for hourly earnings doesn't make an uptrend. But NFIB worker comp hitting an all-time high suggests… https://t.co/7hTs6Wbn55 +06/01/2018,Economists,@IanShepherdson,"The last time headline unemployment was sustained below May's 3.8% rate, in 1969, core CPI inflation averaged 5.8%.… https://t.co/vBcYutJO7T" +06/01/2018,Economists,@IanShepherdson,"For a guy who doesn't drink, @realDonaldTrump drunk tweets an awful lot." +06/01/2018,Economists,@IanShepherdson,"yup, he knew." +06/01/2018,Economists,@IanShepherdson,President's short 2y notes trade pay offs pretty quickly. https://t.co/otq9xzC28y +06/01/2018,Economists,@IanShepherdson,"More likely, I think. https://t.co/m3sVnjwPrC" +06/01/2018,Economists,@IanShepherdson,"...Second, the 15th - payday for people paid semi-monthly - fell after the survey week. AHE are supposed to be repo… https://t.co/bwMEzkeFx6" +06/01/2018,Economists,@IanShepherdson,"Two reasons to think downside risk for average hourly earnings. First, May had 22 working days this year, one more… https://t.co/xJORBlxWSc" +06/01/2018,Economists,@IanShepherdson,"180 +3.9 +0.1 +#jobsreport #nfpguesses" +06/01/2018,Economists,@IanShepherdson,...says the guy who probably saw the report yesterday. https://t.co/P8DY8lZhQG +05/31/2018,Economists,@IanShepherdson,"Every time I've said to Brexiteers over the past couple of years that ""trade deals"" are the two most toxic words in… https://t.co/x3wv5xKeLW" +05/30/2018,Economists,@IanShepherdson,"@JohnCassidy True that Italy's relative ULC have not deteriorated further since the financial crisis, but the prior… https://t.co/RT9XcVOyHn" +05/30/2018,Economists,@IanShepherdson,@JohnCassidy The nature of the euro bubble was partly that countries which joined the euro thought that meant they… https://t.co/kDVMobhk7Y +05/30/2018,Economists,@IanShepherdson,"Pleased to announce that Miguel Chanco @mc_economist will be joining Pantheon from the EIU in a couple weeks, to br… https://t.co/6ux6CrnOj0" +05/30/2018,Economists,@IanShepherdson,"If you're going to join a club run under German rules, but you're not going to control costs like Germany, then tea… https://t.co/k5hqLKMOL9" +05/24/2018,Economists,@IanShepherdson,"If you're investing in EM while the Fed is raising rates, and your EM has: +- A rising current account deficit +- A r… https://t.co/n6LqzCLaHL" +05/24/2018,Economists,@IanShepherdson,"The pardon for Jack Johnson is justice served, though a bit late. My great-grandfather Joe, a not-hugely-successfu… https://t.co/rFiVi40MTi" +05/17/2018,Economists,@IanShepherdson,"The jump in the Philly Fed prices paid index in May is consistent with a doubling of core PPI goods inflation, to 4%. Ouch." +05/17/2018,Economists,@IanShepherdson,"If you're in Cambridge tonight/Fri/Sat, go and see this (and not just because @BeckyShepp is in it!) +https://t.co/4ZG7m9i4NX" +05/17/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""U.S. Labor Market Indicators are Contradictory; Which to Trust? @IanShepherdson https://t.co/A5ni4xsUee #PantheonMacro…" +05/15/2018,Economists,@IanShepherdson,RT @Keir_Starmer: What a farce. Cabinet fighting over 2 customs options: neither workable; neither acceptable to EU; and neither would get… +05/15/2018,Economists,@IanShepherdson,"I was asked on @bsurveillance about investing in Turkey. I said, ""don't""." +05/15/2018,Economists,@IanShepherdson,Live on @bsurveillance from NYC with @tomkeene And @flacqua in a few minutes. +05/14/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""China's M1 Points to a Substantial GDP Growth Downtrend"" @freyabeamish https://t.co/wTCsLPGZBB #PantheonMacro https://t…" +05/12/2018,Economists,@IanShepherdson,"@pbalint I was referring specifically to domestic US private sector imbalances, which are quite small. EZ corps are… https://t.co/3fkxO0G2yX" +05/12/2018,Economists,@IanShepherdson,"My latest for The Hill: The date of the next recession is unknowable, but its impact isn't https://t.co/BPdVTqLwDP" +05/11/2018,Economists,@IanShepherdson,"So it's OK for the UK to be much poorer than it would otherwise have been, for the next decade, because in the foll… https://t.co/Rrch07abFf" +05/11/2018,Economists,@IanShepherdson,"I was pontificating at some unearthly hour on @CNBC @SquawkBoxEurope from Pantheon Towers this morning: +https://t.co/mqg1eqi9D7" +05/11/2018,Economists,@IanShepherdson,"That punishment definitely fits the crime, and rights the wrong. For sure. Everything will be OK. British fair play… https://t.co/apku26KSZx" +05/10/2018,Economists,@IanShepherdson,The biggest single drag on the April core CPI was a 1.6% drop in used car prices. They're mean-reverting after surg… https://t.co/SSyKSnJqAW +05/10/2018,Economists,@IanShepherdson,"Airline fares should be rocketing, given the rise in fuel prices. In fact, they're falling rapidly, probably due to… https://t.co/7q2DIoWEsw" +05/08/2018,Economists,@IanShepherdson,Hard to be a top economy when you aren't really an economy at all. https://t.co/6w2hg2aqlt +05/08/2018,Economists,@IanShepherdson,"@kurteichenwald And they have cancelled the bundling rules previously due to start Jan 1, which would have held dow… https://t.co/exO60XIjlq" +05/08/2018,Economists,@IanShepherdson,"JOLTS report released today. Or, as it's otherwise known, noise." +05/08/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""The cycle is peaking as higher rates begin to bite..but the next downturn is still some way off"" Our U.S. Economic Char…" +05/08/2018,Economists,@IanShepherdson,"...rules on ""bundling"" costs for cardiac episodes and joint replacement. The definitive announcement came on 11/30,… https://t.co/jNe399Nc0n" +05/08/2018,Economists,@IanShepherdson,"... By abandoning or scaling back rule changes which were designed to hold down costs for hospital services, the ad… https://t.co/JW8s2fJYDu" +05/08/2018,Economists,@IanShepherdson,"@paulkrugman in today's @nytimes says GOP is undermining Obamacare in two ways, by making it harder for people to q… https://t.co/3Zwu8PFZWy" +05/07/2018,Economists,@IanShepherdson,Yup. But then I would say that... https://t.co/P8R8RhTKu8 +05/04/2018,Economists,@IanShepherdson,"@chrislhayes Brits say ""sport"" too rather than ""sports"". Brit twitterers of a certain age will fondly remember this: https://t.co/ZGrsbQ0G3x" +05/04/2018,Economists,@IanShepherdson,"...at which point, core CPI inflation was 6%. Four years earlier, it was 1.5%. https://t.co/r8ZQQs2gKh" +05/04/2018,Economists,@IanShepherdson,"I'll keep this short. +Payroll miss against consensus: 29K. +Margin of error: +/-115K. +Market reaction: Irrational. +#JobsReport" +05/04/2018,Economists,@IanShepherdson,Hardly ever. https://t.co/nuvuP24dJx +05/04/2018,Economists,@IanShepherdson,"Current moving average payroll numbers: +3-mth: 208 +6-mth: 198 +9-mth: 188 +12-mth: 189 +Range of monthly numbers over… https://t.co/DvEnMcqzUt" +05/04/2018,Economists,@IanShepherdson,But don't take my word for it: https://t.co/CB08gfvlhx +05/04/2018,Economists,@IanShepherdson,"I'm going to shout now: +DON'T TAKE ANY NOTICE OF THE REPORTED DIP IN PARTICIPATION IN APRIL. IT'S NOISE NOT SIGNAL,… https://t.co/jmjVbqwaDy" +05/04/2018,Economists,@IanShepherdson,Look out for a big rebound in household employment; has been undershooting payrolls. If it happens unemployment rate likely down. +05/04/2018,Economists,@IanShepherdson,RT @freyabeamish: This report takes on a whole new significance in the context of a Chinese #currentaccount #deficit. #China is capital hun… +05/04/2018,Economists,@IanShepherdson,"200 +4.0 +.2 +Brevity +virtue + #NFPGuesses" +05/03/2018,Economists,@IanShepherdson,"How can you ""track"" something which mostly hasn't happened yet, and the data for the bit which has happened mostly… https://t.co/rLcMZsNOBY" +05/03/2018,Economists,@IanShepherdson,"The spelling attests that Trump typed this, but he clearly didn't write it. It's in English. https://t.co/KJFRUMks8K" +04/30/2018,Economists,@IanShepherdson,@RenMacLLC I'm guessing the surge in repair costs is concentrated in areas hit by the hurricanes last summer. +04/30/2018,Economists,@IanShepherdson,On @SquawkCNBC NY in 10 min with @JoeSquawk @andrewrsorkin and @BeckyQuick +04/27/2018,Economists,@IanShepherdson,"The hurricanes last summer distorted Q1 consumption, inventories, and foreign trade. Maybe capex too. Also, the BEA… https://t.co/bFU4XNPrJo" +04/27/2018,Economists,@IanShepherdson,By which I mean that the seasonal adjustment problem which holds down reported Q1 GDP growth is so pronunced - abou… https://t.co/ioqehQZLDb +04/26/2018,Economists,@IanShepherdson,Aaaand you're welcome. +04/26/2018,Economists,@IanShepherdson,And in glorious pictorial form... https://t.co/wFWIf8IN5r +04/26/2018,Economists,@IanShepherdson,2. Durable goods orders likely will beat consensus; Boeing had a very strong month. I'm looking for 3.5% m/m headli… https://t.co/QVzZQf2GYZ +04/26/2018,Economists,@IanShepherdson,"1. Couple things to watch out for in the econ data today. First, data on container movement at major ports suggests… https://t.co/xe6zedgR7V" +04/25/2018,Economists,@IanShepherdson,"@hairmetalchef Utterly brilliant Chef for the Day experience at MBTC on Saturday; such a great bunch of committed,… https://t.co/WssXSmwmxO" +04/25/2018,Economists,@IanShepherdson,Seeing all these recent results together is quite a powerful picture. https://t.co/3tF3PfkCpm +04/24/2018,Economists,@IanShepherdson,"If you don't have the cash, it doesn't matter how confident you are. https://t.co/8R4mYf6SqF" +04/20/2018,Economists,@IanShepherdson,"Healthcare inflation has not been a problem for the Fed's PCE inflation target for some years, but the beast is bac… https://t.co/sSQk057XbQ" +04/12/2018,Economists,@IanShepherdson,RT @PantheonMacro: Our U.S. Chartbook for April by @IanShepherdson has now been released. Subscribers can access here https://t.co/O3DW5OtW… +04/12/2018,Economists,@IanShepherdson,"@TheStalwart Several hours sleep, it appears." +04/11/2018,Economists,@IanShepherdson,Everyone knows base effects will lift core inflation; what the Fed cares about is the impact on inflation expectati… https://t.co/0tzFipdrqf +04/11/2018,Economists,@IanShepherdson,"The departure of Paul Ryan means that the title of ""wearer of the worst-fitting suit in Congress"" is up for grabs." +04/11/2018,Economists,@IanShepherdson,"If I were a Fed hawk, I'd be saying never mind the base effect lifting y/y core inflation; what matters is that the… https://t.co/T2VEPAqX1f" +04/10/2018,Economists,@IanShepherdson,"Absolutely no sign yet that the tax cuts are lifting small firms' investment spending plans. Maybe, just maybe, the… https://t.co/PpseEP0rH1" +04/10/2018,Economists,@IanShepherdson,@TheStalwart Bit of editing. You're welcome. https://t.co/uCtSjGx1Bi +04/06/2018,Economists,@IanShepherdson,The 313k #nfp initial print for feb was not indicative of the trend; nor is the103k march reading. Nothing to do wi… https://t.co/1kt3ltKco0 +03/30/2018,Economists,@IanShepherdson,"I often disagree with @bretstephens, but he is dead right on this one. And no, I'm not a Tory or a Blairite. +Jer… https://t.co/RYt3sc2WBc" +03/29/2018,Economists,@IanShepherdson,@JulianMI2 @greg_ip Base effects will put core CPI above that rate by spring THIS year. +03/29/2018,Economists,@IanShepherdson,RT @greg_ip: .@IanShepherdson at Pantheon Macro highlights how core PCE is catching up to core CPI inflation because of rising hospital pri… +03/28/2018,Economists,@IanShepherdson,"I'm quite miffed that imports refused to fall in March, but they are going to drop sharply very soon, and the trade… https://t.co/dPIcRWTcyP" +03/27/2018,Economists,@IanShepherdson,I'm live on @BloombergRadio in a couple minutes talking US economy. +03/26/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Smoot and Hawley are Still Dead; Trump is not Resurrecting them… Yet"" @IanShepherdson https://t.co/fZRhVJNPZg #Pantheon…" +03/23/2018,Economists,@IanShepherdson,"@ScottWapnerCNBC I mean, I could be wrong, but perhaps this is just evidence that Peter Navarro has no clue." +03/23/2018,Economists,@IanShepherdson,"@LinkedInEcon @D_Blanchflower I don't need to it to get there, I just want to see a sustained upward trend." +03/23/2018,Economists,@IanShepherdson,@LinkedInEcon @D_Blanchflower Agreed. But it's mostly among women and older men. I'll be much happier if/when it st… https://t.co/TJQXIZyjB1 +03/23/2018,Economists,@IanShepherdson,@D_Blanchflower Agreed forecasts of incremental declines in LFPR from here make little sense. But the rising trend… https://t.co/3ZYbum1ieg +03/23/2018,Economists,@IanShepherdson,@D_Blanchflower I'd like nothing better than to see participation rising - it would extend the cycle and begin to a… https://t.co/xqPNOtyEAz +03/22/2018,Economists,@IanShepherdson,And probably neither of them were orange. https://t.co/rs6Ehpgq4p +03/22/2018,Economists,@IanShepherdson,"I see that two white guys in their 70s are threatening to punch each other. No big deal, except than one is the Pre… https://t.co/X15LLpaKz8" +03/21/2018,Economists,@IanShepherdson,Every FOMC member now forecasts core PCE inflation at or above the target at end-2020; the range is 2.0-to-2.3%. I… https://t.co/0z6KQV9GbU +03/21/2018,Economists,@IanShepherdson,"2. Curious to see how House/Senate Committees will react to Fed saying they are going to overshoot, even if only marginally." +03/21/2018,Economists,@IanShepherdson,1. People at Powell presser: What's the logic behind forecasting core PCE a tenth above target end 19/20? Why not a… https://t.co/dxr6Dngqgg +03/21/2018,Economists,@IanShepherdson,"Google maps, central London. I'm not making this up... https://t.co/DeY9hQ7ry3" +03/21/2018,Economists,@IanShepherdson,"My Fed preview for @thehill +Memo to Powell: Best not to offer hostages to fortune https://t.co/kU6TbPMI4b" +03/20/2018,Economists,@IanShepherdson,"Some people just don't learn: +Visit NYC mid-March. +Watch weather forecast and wait for meetings to be snowed off. +Repeat next year." +03/20/2018,Economists,@IanShepherdson,The fact that their estimate was well over 5% just a few weeks ago should tell you all you need to know about the s… https://t.co/z7zPmijcr6 +03/20/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""FOMC to Stick to Three Hikes this Year, but an Extra Dot for 2019?"" @IanShepherdson https://t.co/bwB90nraXD #PantheonMa…" +03/20/2018,Economists,@IanShepherdson,"RT @samueltombs: UK CPI #inflation fell to 2.7% in February, clearly below the MPC's 2.9% forecast. Services inflation was its weakest sinc…" +03/19/2018,Economists,@IanShepherdson,"ICYMI Fed's Powell 'bullish on growth,"" says economist https://t.co/KsBa2wRmLy" +03/19/2018,Economists,@IanShepherdson,I'm on @SquawkCNBC in NY with @BeckyQuick in about 10 min. +03/16/2018,Economists,@IanShepherdson,"RT @bsurveillance: .@IanShepherdson @PantheonMacro with @tomkeene & @FerroTV: Retail sales are not correcting, they're returning back to no…" +03/16/2018,Economists,@IanShepherdson,RT @bsurveillance: .@IanShepherdson @PantheonMacro with @tomkeene & @FerroTV: I realize we've had some horrible trade deficits in the recen… +03/16/2018,Economists,@IanShepherdson,Talking Fed and global macro https://t.co/ilzCwPhyqI +03/15/2018,Economists,@IanShepherdson,"Now I pour Krug on them, for a nice little morning pick-me-up. https://t.co/PPkgCFs8qD" +03/15/2018,Economists,@IanShepherdson,"The recent ""weakness"" in retail sales isn't weakness at all. https://t.co/vQbLkRJ9MM" +03/15/2018,Economists,@IanShepherdson,"Ways in which Britain and America baffle each other, part 5,634: +In Britain skim milk is in red cartons, whole milk… https://t.co/PApi0d9MlE" +03/15/2018,Economists,@IanShepherdson,RT @BBCPolitics: Alex Salmond: Russian channel RT 'not propaganda' https://t.co/WPKojuJXIo +03/15/2018,Economists,@IanShepherdson,"RT @paulkrugman: OK, so it's Kudlow for top economic adviser. At least he's reliable -- that is, he's reliably wrong about everything. We a…" +03/15/2018,Economists,@IanShepherdson,RT @Milbank: Even a stopped clock is right twice a day. But Larry Kudlow? Well... https://t.co/qkVXzLLr5q +03/13/2018,Economists,@IanShepherdson,"Andrew Pudzer, apparently in the frame to replace Gary Cohn, just asserted confidently on @MSNBC that Feb average h… https://t.co/bbHjqoacdg" +03/11/2018,Economists,@IanShepherdson,"The labor market looks great, and it likely will stay that way for a while yet. https://t.co/ysAMNIMVf6" +03/10/2018,Economists,@IanShepherdson,The .01% here is VERY important. Just think how bad it would be if growth were only 2.80%. And economists wonder w… https://t.co/CarLxar91e +03/10/2018,Economists,@IanShepherdson,"@EvanHD Whatever the context, you can't refer to a real live person as a ""black"", as though their ethnicity is the… https://t.co/wXOxnDziIM" +03/09/2018,Economists,@IanShepherdson,Memo to everyone getting excited about the 0.3pp rise in the participation rate: It just reverses the reported 0.3p… https://t.co/VExHL8vEgb +03/09/2018,Economists,@IanShepherdson,Minor quibbles apart - the construction and retail job gains aren't sustainable - this is just a great employment r… https://t.co/unEPHCg966 +03/08/2018,Economists,@IanShepherdson,It's all going wobbly in the UK housing market... https://t.co/Db96XNHPOb +03/06/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Why China will Miss its GDP Growth, Fiscal Deficit and RMB targets"" @freyabeamish https://t.co/JBVCbVQZ16 #PantheonMacr…" +03/06/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Inventories Rebounding in Q1; GDP Growth Could Yet be Very Strong"" @IanShepherdson https://t.co/FMmPKG3idj #PantheonMac…" +03/05/2018,Economists,@IanShepherdson,Something doesn't add up. That would be China's GDP. https://t.co/DckiWcj5CE +03/05/2018,Economists,@IanShepherdson,RT @freyabeamish: #China ceases to target #M2. But Li Keqiang says they expect growth around the same level as last year…which was a histor… +03/05/2018,Economists,@IanShepherdson,"RT @jcragroup: Now available: @IanShepherdson, Chief Economist at @PantheonMacro speaks at JCRA’s Annual Economic Breakfast Overview 2018:…" +03/03/2018,Economists,@IanShepherdson,"RT @andres__abadia: #Chile: #Retail #sales rose 3.8% y/y in Jan, down from 4.5% in Dec, but the trend is rising. We expect the recovery in…" +03/02/2018,Economists,@IanShepherdson,@boes_ @TimDuy @SteveMatthews12 it's not questionable. The rental vacancy rate dropped sharply in Q4. +03/02/2018,Economists,@IanShepherdson,"in any other developed country, this would be the front page splash. https://t.co/wlAICE2LxH" +03/02/2018,Economists,@IanShepherdson,@w14capital Problem is that one guy's reasonable effort is another guy's illegal state aid. Better to let the macro… https://t.co/eUpN0wimN5 +03/02/2018,Economists,@IanShepherdson,Genius https://t.co/QnMS2WvDxH +03/02/2018,Economists,@IanShepherdson,@w14capital There's no economic law that says t-shirts have to be produced in sweatshops either in DM or EM econs;… https://t.co/JkYmg0BVDp +03/02/2018,Economists,@IanShepherdson,"@EventLongShort Yes, but they're smaller than before China joined the WTO" +03/02/2018,Economists,@IanShepherdson,"Since China joined the WTO, US clothing production is down 79%, while production of primary metals is UP 11%. So wh… https://t.co/a7d58oYj8l" +03/02/2018,Economists,@IanShepherdson,@alexmassie @PickardJE Deliberate ambiguity or perhaps just utter cluelessness. +03/02/2018,Economists,@IanShepherdson,"At the last count, a mere 99.7% of U.S. private sector employees did not work in the primary metals sector." +03/02/2018,Economists,@IanShepherdson,RT @freyabeamish: Kuroda says #BoJ will consider an exit in 2019. Exit is an attempt to get back to a normal and less invasive form of #mon… +03/02/2018,Economists,@IanShepherdson,"2. With 17M light vehicle sales per year, that's a total consumer hit of $2.9B per year from higher auto prices alo… https://t.co/H1UTfFYp7H" +03/02/2018,Economists,@IanShepherdson,1. So. The average car requires about 2000lb steel and 400lb aluminum. If domestic producers raise prices by almost… https://t.co/qlxUAvv931 +03/02/2018,Economists,@IanShepherdson,"@ReutersBiz @TheStalwart Sow. +Reap. +Repeat." +03/02/2018,Economists,@IanShepherdson,"@realDonaldTrump Meanwhile, in the fact-based world - the one that puts planes in the sky and stuff - this is just… https://t.co/840Mm64bzR" +03/02/2018,Economists,@IanShepherdson,Looks like someone with zero understanding of basic economics has got access to the U.S. President's Twitter this m… https://t.co/RzFAaBxC6y +03/02/2018,Economists,@IanShepherdson,@TheStalwart The Arctic remains resituated over the U.K. and we're all still loving it. +03/01/2018,Economists,@IanShepherdson,"RT @PantheonMacro: U.S. Construction Spending in January ""Likely constrained by weather; better to come."" @IanShepherdson #PantheonMacro" +03/01/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Spectacular headline; details not quite so good."" @IanShepherdson on ISM Manufacturing Survey, February #PantheonMacro" +03/01/2018,Economists,@IanShepherdson,It looks to me like the compression of healthcare inflation under Obamacare is unwinding. With hospital margins so… https://t.co/yUXX69Fuhl +03/01/2018,Economists,@IanShepherdson,I wouldn't mind so much if it weren't absolutely hideous. But it is. https://t.co/gyCvLLScHb +02/28/2018,Economists,@IanShepherdson,"Last time I bought an assault rifle from Delta Airlines, they wanted ID and everything. Same with Hertz. https://t.co/UAZEAkMRuH" +02/28/2018,Economists,@IanShepherdson,Thunder. In February. This has got to stop. +02/26/2018,Economists,@IanShepherdson,"The check is due for the longest, biggest free lunch in history. https://t.co/ZxKUAXVDTI" +02/16/2018,Economists,@IanShepherdson,On @SquawkCNBC in a couple min should you want to watch some singing and dancing. +02/14/2018,Economists,@IanShepherdson,"Core CPI is up 2.9% on a three-month annualized basis. The horror! As recently as May, it was 0.4%. The (opposite)… https://t.co/g4MO0MR2oy" +02/14/2018,Economists,@IanShepherdson,"@matthewjsinger @morningmoneyben One CPI report doesn't confirm anything, except that the BLS releases a CPI report every month," +02/14/2018,Economists,@IanShepherdson,Hospital services prices went a bit nuts in the January CPI. That's what they do sometimes; it doesn't mean the tr… https://t.co/CZXGSn1PNU +02/14/2018,Economists,@IanShepherdson,"Had the January CPI core number been just 0.002% higher, the print would have been 0.4% rather than 0.3%, and that… https://t.co/wNDTD1UIkE" +02/09/2018,Economists,@IanShepherdson,@blueskiesatx I don't agree. It would have been much worse for everyone if the banking system had collapsed. But s… https://t.co/rs2EkVmqoM +02/09/2018,Economists,@IanShepherdson,@TimDuy That's possible. But my more immediate concern is that the extra demand from the fiscal easing can't be abs… https://t.co/Obqsql1SzL +02/09/2018,Economists,@IanShepherdson,"RT @PantheonMacro: ""Congress Set to Spray Yet More Fuel on the Fire; Over to You, Mr. Powell"" @IanShepherdson https://t.co/Lk4yKrjPwo #Pant…" +07/01/2018,Economists,@bill_easterly,"Adam Smith on the Invisible Hand at the World Cup: “It is not from the benevolence of the striker, the midfielder,… https://t.co/UC7jW9vrhZ" +07/01/2018,Economists,@bill_easterly,"Thinking about Russian friends and not about leaders, congratulations to you on an amazing World Cup upset." +07/01/2018,Economists,@bill_easterly,RT @bill_easterly: Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if other… +06/30/2018,Economists,@bill_easterly,Economics at its best: why it's in the interest of Americans for our government to eliminate trade tariffs even if… https://t.co/wkx5caTJFc +06/30/2018,Economists,@bill_easterly,Is it a thing in the World Cup that the team with more immigrants wins? +06/30/2018,Economists,@bill_easterly,RT @bill_easterly: Lifetime goal: violate all of these restrictions. https://t.co/UbA4rULHsG +06/29/2018,Economists,@bill_easterly,@ChrisProttas Thanks for engaging. +06/29/2018,Economists,@bill_easterly,Lifetime goal: violate all of these restrictions. https://t.co/UbA4rULHsG +06/29/2018,Economists,@bill_easterly,You can now read The Tyranny of Experts in Thai if you want https://t.co/yiqb6suRcG +06/29/2018,Economists,@bill_easterly,@PMoserEcon What about Marriage of Figaro? +06/29/2018,Economists,@bill_easterly,RT @bill_easterly: Feeling very frustrated on how to fight xenophobic policies when the 2 most popular options are not working: (1) preachi… +06/28/2018,Economists,@bill_easterly,@DevashishMitra_ The secret is in the broth +06/28/2018,Economists,@bill_easterly,Doctor recommends to me an all-ramen diet. Could be example for a future class on non-generalizable recommendations… https://t.co/O099scfRjE +06/28/2018,Economists,@bill_easterly,Feeling very frustrated on how to fight xenophobic policies when the 2 most popular options are not working: (1) pr… https://t.co/ETBFAoHqR2 +06/27/2018,Economists,@bill_easterly,RT @triskodarden: “The fundamental cause of development is freedom.” -@bill_easterly https://t.co/LyGdjWvsWw +06/27/2018,Economists,@bill_easterly,Talk at Heritage Foundation: aid to prevent migration offers poor people something they don’t want in exchange for… https://t.co/VsnjGKxKFV +06/27/2018,Economists,@bill_easterly,A policy that penalizes people based on their national origin denies to them the dignity of being treated as a uniq… https://t.co/SCOKm43yM7 +06/27/2018,Economists,@bill_easterly,"RT @conradhackett: In a classic experiment, 12 articles were resubmitted to the same journals in which they had already been published. Thr…" +06/25/2018,Economists,@bill_easterly,"RT @bill_easterly: This does not settle the argument but a world with open borders would be twice as rich, based on work by @m_clem https:/…" +06/24/2018,Economists,@bill_easterly,"RT @bill_easterly: Paper with Steven Pennings that I’m presenting at World Bank on Monday 10:30am, on whether there is evidence for Benevol…" +06/24/2018,Economists,@bill_easterly,"This does not settle the argument but a world with open borders would be twice as rich, based on work by @m_clem https://t.co/PclKceiN7i" +06/23/2018,Economists,@bill_easterly,"RT @bill_easterly: List of all leaders estimated to have a significantly positive effect on growth (“LS leader est.”), from paper by Pennin…" +06/23/2018,Economists,@bill_easterly,@alans_spo @eneasthings @PaulKagame The Kagame effect is positive but high noise makes it statistically insignificant. +06/22/2018,Economists,@bill_easterly,"@eneasthings Positive effect on growth does not mean a “good” leader, it might have been through terror & coercion" +06/22/2018,Economists,@bill_easterly,"List of all leaders estimated to have a significantly positive effect on growth (“LS leader est.”), from paper by P… https://t.co/dVnnz1EgQg" +06/22/2018,Economists,@bill_easterly,"RT @SverrirSte: The best and worst leaders in terms of achieving economic growth, according to a measure by @bill_easterly #SocSciResearch…" +06/22/2018,Economists,@bill_easterly,"RT @m_clem: ""How much economic growth can we attribute to national leaders?"" +https://t.co/UiXPkWJNYa +New from @bill_easterly and Pennings" +06/22/2018,Economists,@bill_easterly,"Paper with Steven Pennings that I’m presenting at World Bank on Monday 10:30am, on whether there is evidence for Be… https://t.co/WzkWfc3DhR" +06/21/2018,Economists,@bill_easterly,@savthorpe @Libertylifter Can you send me a link to the blog mentioned? +06/21/2018,Economists,@bill_easterly,RT @bill_easterly: Presenting paper “Shrinking Dictators: How much Economic Growth can we Attribute to National Leaders?” at World Bank ABC… +06/21/2018,Economists,@bill_easterly,Install these on all foreign aid projects https://t.co/KjKBdt5RSH +06/21/2018,Economists,@bill_easterly,RT @bill_easterly: How American Development Economists decide which country to root for in World Cup 2018 https://t.co/k6ZTwiiYzZ +06/20/2018,Economists,@bill_easterly,@psharma3123 Have to keep it a secret to avoid offending the others! +06/20/2018,Economists,@bill_easterly,How American Development Economists decide which country to root for in World Cup 2018 https://t.co/k6ZTwiiYzZ +06/20/2018,Economists,@bill_easterly,RT @bill_easterly: Speaking on Development moving beyond foreign aid in Wash DC Tuesday June 26 2pm https://t.co/IOTCRImQCV +06/20/2018,Economists,@bill_easterly,RT @bill_easterly: It’s cruel and unusual punishment to enforce immigration laws by separating a 2-year-old from her parents https://t.co/T… +06/19/2018,Economists,@bill_easterly,Listen to children who immigration officers have just separated from their parents at the border https://t.co/7wmLWVByOk +06/19/2018,Economists,@bill_easterly,It’s cruel and unusual punishment to enforce immigration laws by separating a 2-year-old from her parents https://t.co/TnBTyKjs8U +06/18/2018,Economists,@bill_easterly,Speaking on Development moving beyond foreign aid in Wash DC Tuesday June 26 2pm https://t.co/IOTCRImQCV +06/18/2018,Economists,@bill_easterly,"Debate on whether free markets are the best way to end global poverty, Aug 27 in NYC https://t.co/vd57uBE17N" +06/18/2018,Economists,@bill_easterly,"RT @TheSohoForum: Monday, August 27th, @TheSohoForum/@reason new event featuring @bill_easterly & @JosephEStiglitz discussing ""Is the best…" +06/14/2018,Economists,@bill_easterly,Congrats to Mari Kuraishi @mashenka for completing her wildly successful stewardship of Global Giving @GlobalGiving https://t.co/uCoGU5FyRi +06/12/2018,Economists,@bill_easterly,"RT @gladstein: Yes, Putin’s regime is making great progress on the Sustainable Development Goals. As measured by his own statisticians! htt…" +06/12/2018,Economists,@bill_easterly,RT @DennisWhittle: Do you know the next CEO of @GlobalGiving? https://t.co/TCNsomL5bS +06/10/2018,Economists,@bill_easterly,RT @bill_easterly: Spontaneous individualist farm 2016 vs. Planned collective farm 2018 https://t.co/BkzUfZf7mD +06/09/2018,Economists,@bill_easterly,Spontaneous individualist farm 2016 vs. Planned collective farm 2018 https://t.co/BkzUfZf7mD +06/09/2018,Economists,@bill_easterly,Sorry I’m not as influyente as you think Los economistas más influyentes https://t.co/49yILDLdR8 via @elmundoes +06/08/2018,Economists,@bill_easterly,Lions got it right https://t.co/f2XbaywcZQ +06/08/2018,Economists,@bill_easterly,"RT @bill_easterly: Why dictators like the Sustainable Development Goals, by @gladstein and @Smith_JeffreyT https://t.co/Z5Lhq0zNxD via @qz…" +06/07/2018,Economists,@bill_easterly,"Why dictators like the Sustainable Development Goals, by @gladstein and @Smith_JeffreyT https://t.co/Z5Lhq0zNxD via @qzafrica" +06/06/2018,Economists,@bill_easterly,Presenting paper “Shrinking Dictators: How much Economic Growth can we Attribute to National Leaders?” at World Ban… https://t.co/JOzTQN1ttu +06/06/2018,Economists,@bill_easterly,"@jodiecongirl Apologies, didn't know there was supposed to be a point" +06/06/2018,Economists,@bill_easterly,Bayesian updating based on appearance https://t.co/NO7VSQG1Q4 +06/06/2018,Economists,@bill_easterly,RT @FeedbackLabs: “There are so many bad ideas in philanthropy. Listening to beneficiaries is not one of them.” - Larry Kramer #FeedbackEmp… +06/06/2018,Economists,@bill_easterly,"RT @4SharedInsight: We all know it's true: ""Closing loops is not a spectator sport."" So jump in @FeedbackLabs. Go to https://t.co/nBysuE1uc…" +06/04/2018,Economists,@bill_easterly,RT @bill_easterly: Does this apply to RCTs in the field also? https://t.co/H76LqZVXgn https://t.co/iL7jri44AH +06/02/2018,Economists,@bill_easterly,Does this apply to RCTs in the field also? https://t.co/H76LqZVXgn https://t.co/iL7jri44AH +06/02/2018,Economists,@bill_easterly,RT @bill_easterly: Biggest development tragedy in the world right now https://t.co/2pHO8tfACI +06/01/2018,Economists,@bill_easterly,Biggest development tragedy in the world right now https://t.co/2pHO8tfACI +06/01/2018,Economists,@bill_easterly,Should really be done more often https://t.co/QRW3PMA718 +05/31/2018,Economists,@bill_easterly,RT @bill_easterly: It seems strange that I can't find a political party or leader who matches my ideals. https://t.co/WCCnUgfeDD +05/30/2018,Economists,@bill_easterly,RT @TanjuYurukoglu: @bill_easterly If you reverse the columns. it is much easier to find them around the globe. +05/30/2018,Economists,@bill_easterly,It seems strange that I can't find a political party or leader who matches my ideals. https://t.co/WCCnUgfeDD +05/30/2018,Economists,@bill_easterly,"RT @hamandcheese: ""In our new study, we left a treatment group of journalists unattended in a room with a provocative yet N=28 social psyc…" +05/29/2018,Economists,@bill_easterly,Best quote from an RBG legal brief in this great movie: “A person born female continues to be branded inferior for… https://t.co/Bn0gw77fGr +05/29/2018,Economists,@bill_easterly,"The previous generation won WWII and produced a half-century of prosperity, while ""the chief accomplishment of the… https://t.co/os6LUnTkyz" +05/25/2018,Economists,@bill_easterly,"RT @bill_easterly: Official IRS rule to claim your child as a dependent on your tax return: ""the child must be younger than you.""" +05/25/2018,Economists,@bill_easterly,"RT @PJakiela: A student once asked why shocks are mean zero. I laughed at the time, but now I think of it every long weekend, when I’m curs…" +05/24/2018,Economists,@bill_easterly,"Official IRS rule to claim your child as a dependent on your tax return: ""the child must be younger than you.""" +05/22/2018,Economists,@bill_easterly,"RT @bill_easterly: Just met Eskinder Nega, courageous democracy activist and political prisoner in Ethiopia, just released from jail. He to…" +05/21/2018,Economists,@bill_easterly,"Just met Eskinder Nega, courageous democracy activist and political prisoner in Ethiopia, just released from jail.… https://t.co/e11RQ7MsX2" +05/18/2018,Economists,@bill_easterly,RT @UCSC_GradDiv: The Good Neighbor: Addressing Global Poverty in an Age of Xenophobia with William Easterly https://t.co/9vdTKEI2XA @bill_… +05/18/2018,Economists,@bill_easterly,This 2014 effort by African musicians is being activated again for new Ebola outbreak; such a refreshing alternativ… https://t.co/jTOJZ2kn2R +05/16/2018,Economists,@bill_easterly,"Benjamin Franklin on German immigration in 1753: ""Those who come hither are the most stupid of their own nation."" M… https://t.co/TAAOmqzYHG" +05/11/2018,Economists,@bill_easterly,"RT @bill_easterly: Economists abandoned the discussion of big ideas, so now we are missing in action on the crisis of Enlightenment Values…" +05/10/2018,Economists,@bill_easterly,"Economists abandoned the discussion of big ideas, so now we are missing in action on the crisis of Enlightenment Va… https://t.co/G2uPHymtbW" +05/09/2018,Economists,@bill_easterly,"RT @bill_easterly: Hotel: ""sorry, the group rate does not apply the first night of your stay."" +Me: ""OK, what is the difference?"" +Hotel: ""…" +05/08/2018,Economists,@bill_easterly,"Hotel: ""sorry, the group rate does not apply the first night of your stay."" +Me: ""OK, what is the difference?"" +Hot… https://t.co/Tk1mopD0Hc" +05/08/2018,Economists,@bill_easterly,RT @bill_easterly: Congratulations to Penny Goldberg for her appointment as the World Bank's new Chief Economist https://t.co/tQLeJyAAvZ +05/07/2018,Economists,@bill_easterly,Congratulations to Penny Goldberg for her appointment as the World Bank's new Chief Economist https://t.co/tQLeJyAAvZ +05/07/2018,Economists,@bill_easterly,This is bad. Now waiting for the exposé of the pro-aid bias of many foundations financing economic development. https://t.co/oQvo8WWOpi +05/07/2018,Economists,@bill_easterly,"RT @kuangalia_tw: @bill_easterly, The Tyranny of Experts, 2013. +#memento https://t.co/gWPaV4CH2s" +05/06/2018,Economists,@bill_easterly,Effective aid could be as simple as a pair of glasses https://t.co/PJj4QWuL4n +05/05/2018,Economists,@bill_easterly,@JVWoodster Which textbook? +05/04/2018,Economists,@bill_easterly,Friends don't let friends...have a different educational level. From @UpshotNYT https://t.co/YTBdfOr7Cp +05/02/2018,Economists,@bill_easterly,RT @bill_easterly: It should not be only the Right who memorializes a Victims of Communism Day on May 1; Communist regimes killed over 80 m… +05/01/2018,Economists,@bill_easterly,It should not be only the Right who memorializes a Victims of Communism Day on May 1; Communist regimes killed over… https://t.co/E3zgxroLSS +05/01/2018,Economists,@bill_easterly,"RT @bill_easterly: On the movement to ban all-male panels (""manels"") -- why not ban panels altogether? They are most boring format ever, an…" +04/30/2018,Economists,@bill_easterly,"Had to look up JEL codes for economics sub-fields, and realized again that most of the work that I like, or have do… https://t.co/55UT3p92Mf" +04/30/2018,Economists,@bill_easterly,"@_alice_evans Pick a smaller # of speakers that are worth listening to for solo talks, and have lots of Q and A after each." +04/30/2018,Economists,@bill_easterly,"On the movement to ban all-male panels (""manels"") -- why not ban panels altogether? They are most boring format eve… https://t.co/RCteoS4z8V" +04/27/2018,Economists,@bill_easterly,"RT @bill_easterly: Q: What have you done that is most unusual, that most other economists have not done? +A: Have actually read all of The…" +04/26/2018,Economists,@bill_easterly,"Q: What have you done that is most unusual, that most other economists have not done? +A: Have actually read all of… https://t.co/8CWeYBZFJq" +04/26/2018,Economists,@bill_easterly,"RT @nortonnole: Students loved the discussion of how models can mislead, of which I drew heavily on lessons I learned from @bill_easterly a…" +04/26/2018,Economists,@bill_easterly,Happy news of the day: distributing routine antibiotics to infants in Africa would cut their currently high death r… https://t.co/EPKFBkL0mI +04/25/2018,Economists,@bill_easterly,"RT @bill_easterly: Sadly, every new generation of aid critics has to fight all over again the battle against Used Shoes Aid HT @kcroninfurm…" +04/24/2018,Economists,@bill_easterly,"Sadly, every new generation of aid critics has to fight all over again the battle against Used Shoes Aid HT… https://t.co/0G03QsjVZ8" +04/24/2018,Economists,@bill_easterly,The Sackler family as owner of Purdue Pharma was implicated in the US opioid epidemic. They are now trying to sprea… https://t.co/QM0H8K9tNF +04/23/2018,Economists,@bill_easterly,RT @bill_easterly: U.S. escalating its secret war in West Africa https://t.co/WnW1dC3Mtx +04/22/2018,Economists,@bill_easterly,U.S. escalating its secret war in West Africa https://t.co/WnW1dC3Mtx +04/20/2018,Economists,@bill_easterly,"RT @bill_easterly: 17 years of emphasis on Failed States has produced more Failed States, which then leads to yet further emphasis on Faile…" +04/19/2018,Economists,@bill_easterly,"17 years of emphasis on Failed States has produced more Failed States, which then leads to yet further emphasis on… https://t.co/rBAvNP4lCg" +04/18/2018,Economists,@bill_easterly,"Facebook removed this post by me because it ""went against community standards."" Anybody have any idea why? https://t.co/GvKUvu7HUl" +04/17/2018,Economists,@bill_easterly,"When I started writing OpEds 25 years ago, ""correlation"" was too difficult a concept to describe. Glad to have live… https://t.co/uUtEILcmhv" +04/17/2018,Economists,@bill_easterly,RT @MaxCRoser: Just saw that ‘Factfulness' is on the very top of the bestseller list on Amazon. Very well deserved! Great that so many are… +04/16/2018,Economists,@bill_easterly,RT @bill_easterly: “Sometimes the best foreign policy option is to do nothing” I get vilified whenever I make this argument https://t.co/rT… +04/15/2018,Economists,@bill_easterly,It’s up to Ghanaians if they want to spend money on a cathedral rather than mosquito nets https://t.co/NlzeHOdnXM +04/14/2018,Economists,@bill_easterly,"RT @MaxCRoser: 2.5% of global deaths are caused by intentional injuries (suicide, homicide, war, terrorism). + +3% are caused by diarrhea. + +O…" +04/14/2018,Economists,@bill_easterly,“Sometimes the best foreign policy option is to do nothing” I get vilified whenever I make this argument https://t.co/rT4GRbbZ5s +04/11/2018,Economists,@bill_easterly,"In contrast, if the election had gone the other way today's headline would have been ""President appoints task force… https://t.co/7r3y2FcJGC" +04/11/2018,Economists,@bill_easterly,RT @DennisWhittle: #Feedback is critical to effective civic engagement. Learn more about the importance of feedback in new #ListeningtoIncl… +04/10/2018,Economists,@bill_easterly,"RT @bill_easterly: Not been active on Twitter recently; Sometimes I prefer to work instead towards a Tweet of 500,000 characters called a b…" +04/09/2018,Economists,@bill_easterly,"Not been active on Twitter recently; Sometimes I prefer to work instead towards a Tweet of 500,000 characters called a book." +04/09/2018,Economists,@bill_easterly,"RT @bonjaymusic: This quote wasn’t the inspiration for “Chelsea.” But it’s kin to the ideas within 🤔 + +- @bill_easterly https://t.co/WgOW2Zq…" +04/07/2018,Economists,@bill_easterly,RT @bill_easterly: Foreign Aid raises Economic Growth https://t.co/R2fs9Z5m2e +04/06/2018,Economists,@bill_easterly,"""He or she who votes against the rights of another, whatever may be his or her religion, color, or sex, has by that… https://t.co/j4ZGXVzGmn" +04/05/2018,Economists,@bill_easterly,"One of the authors wrote to emphasize growth effect is only short-term, their paper “does not contradict any view… https://t.co/J0YhPtyLKq" +04/05/2018,Economists,@bill_easterly,"Wind chill formula has an irrational discontinuity of zero wind chill above 40, so it predicts rise of 2 degrees wi… https://t.co/VY0MpBpUFe" +04/04/2018,Economists,@bill_easterly,"Aren't we all obligated to acknowledge refereed publications that go against our own beliefs, without automatically… https://t.co/pyFrMahyXJ" +04/04/2018,Economists,@bill_easterly,Foreign Aid raises Economic Growth https://t.co/R2fs9Z5m2e +04/04/2018,Economists,@bill_easterly,"RT @bill_easterly: 1953 comment on US immigration law: ""It is absurd to think that we can retain our position as the world leader in the fi…" +04/04/2018,Economists,@bill_easterly,"RT @bill_easterly: On the 50th anniversary of Martin Luther King's assassination, his last speech is more moving and relevant than ever htt…" +04/03/2018,Economists,@bill_easterly,The world's culturally most diverse countries (darker color = more diversity). Not correlated with ethnic diversity… https://t.co/gfYYT9wowU +04/03/2018,Economists,@bill_easterly,"On the 50th anniversary of Martin Luther King's assassination, his last speech is more moving and relevant than ever https://t.co/TVGbSwkJH4" +04/03/2018,Economists,@bill_easterly,"1953 comment on US immigration law: ""It is absurd to think that we can retain our position as the world leader in t… https://t.co/xd92Asrsok" +04/02/2018,Economists,@bill_easterly,RT @bill_easterly: Happy April 1 https://t.co/nH73KGRHlh +04/02/2018,Economists,@bill_easterly,"Population growth is a unique variable in development debates-- it's bad when it goes up, and it's bad when it goes… https://t.co/hINFA9z4Em" +04/01/2018,Economists,@bill_easterly,Happy April 1 https://t.co/nH73KGRHlh +04/01/2018,Economists,@bill_easterly,Both Passover and Easter celebrate hope for seemingly hopeless causes +04/01/2018,Economists,@bill_easterly,"RT @MaxCRoser: The poorest countries in the world emit around 0.1 tonnes of CO₂ per person in one year. + + – France emits 50-times more per…" +03/31/2018,Economists,@bill_easterly,"RT @bill_easterly: Nonwhites outside their home country are called Immigrants, while whites outside their home country are called Expats ht…" +03/30/2018,Economists,@bill_easterly,"Nonwhites outside their home country are called Immigrants, while whites outside their home country are called Expa… https://t.co/AXwp9baHh8" +03/30/2018,Economists,@bill_easterly,"RT @Undercoverhist: Most Econ Nobel belong to the same family-tree, which harks back to a now forgotten figure, Karl Knies (trained Böhm-Ba…" +03/30/2018,Economists,@bill_easterly,RT @bill_easterly: Cartoon version of The White Man's Burden HT @adamgmartin https://t.co/nlNsRBBTC6 +03/29/2018,Economists,@bill_easterly,Cartoon version of The White Man's Burden HT @adamgmartin https://t.co/nlNsRBBTC6 +03/29/2018,Economists,@bill_easterly,"RT @bill_easterly: Have a new paper that asks ""did the Washington Consensus work after all?"" https://t.co/U6a1EolW9F" +03/28/2018,Economists,@bill_easterly,"Have a new paper that asks ""did the Washington Consensus work after all?"" https://t.co/U6a1EolW9F" +03/28/2018,Economists,@bill_easterly,RT @bill_easterly: In praise of big picture development: welfare gains from either migration or growth episodes are vastly larger than thos… +03/27/2018,Economists,@bill_easterly,In praise of big picture development: welfare gains from either migration or growth episodes are vastly larger than… https://t.co/dHqHhnhy4B +03/27/2018,Economists,@bill_easterly,Animal globalization. HT @MaxCRoser https://t.co/DutvUCZOZT +03/27/2018,Economists,@bill_easterly,RT @bill_easterly: Abraham Lincoln on anti-immigrant advocacy in 1855 https://t.co/zNv2Yawrif +03/26/2018,Economists,@bill_easterly,Abraham Lincoln on anti-immigrant advocacy in 1855 https://t.co/zNv2Yawrif +03/25/2018,Economists,@bill_easterly,RT @RichardWellings: Police dressed in riot gear strike demonstrators with batons as Catalans protest against the detention of exiled forme… +03/25/2018,Economists,@bill_easterly,"Economists have creative agony too, but we can’t usually hope for an outcome as sublime as Turandot https://t.co/PRQdT6UBwY" +03/25/2018,Economists,@bill_easterly,https://t.co/nJDMJodRfr +03/23/2018,Economists,@bill_easterly,American troops are more involved in Africa than most people realize https://t.co/rIROmjbFqY +03/22/2018,Economists,@bill_easterly,"Maybe the US men's soccer team should boycott the 2018 World Cup in Russia ... oh, wait https://t.co/CvwekaZLKO" +03/22/2018,Economists,@bill_easterly,RT @bill_easterly: Current projections are that the world will miss the 1st Sustainable Development Goal of ending extreme poverty by 2030;… +03/22/2018,Economists,@bill_easterly,RT @bill_easterly: The secret to development is coffee https://t.co/jLONZ2SDPZ +03/21/2018,Economists,@bill_easterly,The secret to development is coffee https://t.co/jLONZ2SDPZ +03/21/2018,Economists,@bill_easterly,Current projections are that the world will miss the 1st Sustainable Development Goal of ending extreme poverty by… https://t.co/yPr6En9Io8 +03/21/2018,Economists,@bill_easterly,RT @bill_easterly: Ancient migrations: everybody everywhere is really from somewhere else https://t.co/xvpT3V1bEC +03/20/2018,Economists,@bill_easterly,"Had interesting talk with Micaela Sviatschi, whose research shows that past US deportations to El Salvador helped l… https://t.co/FfVFTnvvx5" +03/20/2018,Economists,@bill_easterly,Ancient migrations: everybody everywhere is really from somewhere else https://t.co/xvpT3V1bEC +03/20/2018,Economists,@bill_easterly,RT @jhaushofer: @DinaPomeranz @eortizospina @seema_econ @simonrquinn @tukopamoja @_alice_evans For an undergrad intro class probably some c… +03/19/2018,Economists,@bill_easterly,RT @bill_easterly: Development is working. https://t.co/cyR8RZgi8p +03/19/2018,Economists,@bill_easterly,Nice when a release of an academic paper by economists becomes front-page news https://t.co/1Dw4R1vErB via @UpshotNYT +03/18/2018,Economists,@bill_easterly,"RT @bill_easterly: My grandmother's grandfather fled the Irish potato famine to the US in 1848. Thank you, 1848 America, for not turning aw…" +03/17/2018,Economists,@bill_easterly,"My grandmother's grandfather fled the Irish potato famine to the US in 1848. Thank you, 1848 America, for not turning away refugees." +03/17/2018,Economists,@bill_easterly,Irish-Americans are a success story of development through migration. Happy #StPatricksDay https://t.co/Iu25GFJY6p +03/16/2018,Economists,@bill_easterly,"RT @m_clem: Accepted for publication today in REStat @mitpress: +""The Place Premium: Bounding the Price Equivalent of Migration Barriers"" +M…" +03/16/2018,Economists,@bill_easterly,RT @yannick___m: Pick your fighter. @bill_easterly @RadioFreeTom https://t.co/xQOkZfJEqe +03/16/2018,Economists,@bill_easterly,"RT @g_atiim: ""The sleight of hand that focuses attention on technical solutions while covering up violations of the rights of real people i…" +03/15/2018,Economists,@bill_easterly,"RT @_alice_evans: @bill_easterly Hm, yes. Do you mean in terms of venerating an established, narrow group as the best, & staying in that sa…" +03/15/2018,Economists,@bill_easterly,"Speaking as an alleged top 10 development thinker, the whole idea of top thinkers is misguided https://t.co/wwNuLZmQUG" +03/14/2018,Economists,@bill_easterly,Will be remembered as a cautionary tale for all time that you don't win elections by insulting the voters https://t.co/8XOAucooWS +03/14/2018,Economists,@bill_easterly,You are a true nerd like me if you are more excited today about Pi Day than about the upcoming St. Patrick's Day. https://t.co/8YYccs3hpJ +03/13/2018,Economists,@bill_easterly,Development is working. https://t.co/cyR8RZgi8p +03/13/2018,Economists,@bill_easterly,"RT @bill_easterly: Tragedy in the Horn of Africa: ""650,000 children under age 5 across vast stretches of Kenya, Somalia and Ethiopia are se…" +03/12/2018,Economists,@bill_easterly,"New book by @nntaleb, ""Skin in the Game,"" debuts at # 2 on The New York Times Best Sellers list https://t.co/0dRbZ53Udl" +03/12/2018,Economists,@bill_easterly,"Tragedy in the Horn of Africa: ""650,000 children under age 5 across vast stretches of Kenya, Somalia and Ethiopia a… https://t.co/u6zJdps6H9" +03/12/2018,Economists,@bill_easterly,RT @bill_easterly: False stories get more RTs on Twitter than true stories. This story is true. https://t.co/j8M8U8cPnn +03/11/2018,Economists,@bill_easterly,Smug liberals are not helping our political polarization https://t.co/cBqHXBdVnV https://t.co/hbRWvirdRN +03/11/2018,Economists,@bill_easterly,"RT @bill_easterly: Borges story on ""a Map of the Empire whose size was that of the Empire, and +which coincided point for point with it"" ill…" +03/11/2018,Economists,@bill_easterly,False stories get more RTs on Twitter than true stories. This story is true. https://t.co/j8M8U8cPnn +03/10/2018,Economists,@bill_easterly,"RT @bill_easterly: Does margarine lead to divorce? Some correlations could possibly be spurious, suggests @TylerVigen HT @DennisWhittle htt…" +03/10/2018,Economists,@bill_easterly,RT @m_clem: Third-world strongman farce in downtown Washington. https://t.co/9W5ZwGUCek +03/09/2018,Economists,@bill_easterly,"RT @bill_easterly: A century ago, women couldn't even vote. A lot of progress since then worldwide to celebrate for #InternationalWomensDay…" +03/09/2018,Economists,@bill_easterly,"Does margarine lead to divorce? Some correlations could possibly be spurious, suggests @TylerVigen HT… https://t.co/dsvZYo6Dpp" +03/08/2018,Economists,@bill_easterly,"A century ago, women couldn't even vote. A lot of progress since then worldwide to celebrate for… https://t.co/FUFkHkX3Gt" +03/07/2018,Economists,@bill_easterly,"RT @NYU_DRI: NYU DRI Presentation by Lant Pritchett: ""The Debate about RCTs in Development is over. We won. They lost."" Watch here - https:…" +03/07/2018,Economists,@bill_easterly,"Borges story on ""a Map of the Empire whose size was that of the Empire, and +which coincided point for point with it… https://t.co/kGF38zZN2y" +03/07/2018,Economists,@bill_easterly,"RT @m_clem: “Migration is a positive side effect of development, and aid should not be spent in pursuit of keeping people where they are. D…" +03/07/2018,Economists,@bill_easterly,"NYU DRI Presentation by Lant Pritchett: ""The Debate about RCTs in Development is over. We won. They lost."" https://t.co/gl0rWetijN" +03/05/2018,Economists,@bill_easterly,RT @bill_easterly: The best promo line for Hollywood movies might be — will be our only remaining export after the Trade War is over. +03/05/2018,Economists,@bill_easterly,"RT @MaxCRoser: Who's talking in the Oscar-winning movies? + +[via the BBC https://t.co/NWoK3mGzzf] https://t.co/Rd6MKnypGz" +03/05/2018,Economists,@bill_easterly,The best promo line for Hollywood movies might be — will be our only remaining export after the Trade War is over. +03/05/2018,Economists,@bill_easterly,"Eva Marie Saint is from my alma mater and hometown Bowling Green State University, you rock!" +03/05/2018,Economists,@bill_easterly,RT @bill_easterly: The Market-Based Academy Award goes to...Wonder Woman. Why do the Oscars scorn the favorably-reviewed pictures that sol… +03/04/2018,Economists,@bill_easterly,"RT @CelestinMonga: Here is a misleading index on #passport rankings https://t.co/TMpSbxbnKs +I stay away from countries that despise my bea…" +03/04/2018,Economists,@bill_easterly,"RT @bill_easterly: Angus Deaton strikes the right balance: ""Seeing the past as unbroken progress breeds a foolish and false optimism, not t…" +03/03/2018,Economists,@bill_easterly,"Angus Deaton strikes the right balance: ""Seeing the past as unbroken progress breeds a foolish and false optimism,… https://t.co/xMrNC99XOI" +03/03/2018,Economists,@bill_easterly,"RT @bill_easterly: Justification for new tariffs: “We must not let our country, companies and workers be taken advantage of any longer."" Ec…" +03/03/2018,Economists,@bill_easterly,"RT @orianabandiera: The sign on my door says “Director”, which passers-by often read as “she who gives directions”.. to the bathrooms, con…" +03/03/2018,Economists,@bill_easterly,RT @JDVance1: Ok this is funny https://t.co/9eRuJihGWu +03/02/2018,Economists,@bill_easterly,"Justification for new tariffs: “We must not let our country, companies and workers be taken advantage of any longer… https://t.co/xD2W7FbQEZ" +03/02/2018,Economists,@bill_easterly,The Market-Based Academy Award goes to...Wonder Woman. Why do the Oscars scorn the favorably-reviewed pictures tha… https://t.co/XpgfKs80hV +03/01/2018,Economists,@bill_easterly,RT @simongerman600: The best general #career advice I can come up with is to get educated. #Education pays off. The higher your degree the… +02/28/2018,Economists,@bill_easterly,"Problems I never expected to see: that the Ohio Bureau of Motor Vehicles is too efficient, didn't make us wait long… https://t.co/1dqolSPP3m" +02/28/2018,Economists,@bill_easterly,RT @bill_easterly: Steven Pinker recommends other books like his that give an optimistic view of human progress @CharlesJKenny https://t.co… +07/01/2018,Economists,@AllisonSchrager,@joshrauh Lucky you! he has many interesting things to say about risk modeling (in warfare). there may be scope for some collaboration. +07/01/2018,Economists,@AllisonSchrager,"RT @joshrauh: It is official, H.R. McMaster will be joining the Hoover Institution! https://t.co/QycWTeHWcm" +06/29/2018,Economists,@AllisonSchrager,"RT @NewBlackMan: The modern education system was designed to train future factory workers to be ""docile"" | @AllisonSchrager https://t.co/DN…" +06/29/2018,Economists,@AllisonSchrager,"The modern education system was designed to train future factory workers to be ""docile."" what do they need to be no… https://t.co/QartW92T0f" +06/29/2018,Economists,@AllisonSchrager,"RT @MarkusEconomist: How to regulate Tech Giants: +Interview by @JeanTirole (Nobel prize winner 2014) +https://t.co/X16ByKxzWh via @qz" +06/28/2018,Economists,@AllisonSchrager,"RT @stephenhuppert: Lessons from the Australian #RetirementIncome System: + +[1] how to do accumulation well +[2] how to do decumulation poor…" +06/27/2018,Economists,@AllisonSchrager,RT @AbhinayMuthoo: Full of insights on the #techgiants - good piece @AllisonSchrager @JeanTirole is up there amongst the very best of econo… +06/27/2018,Economists,@AllisonSchrager,"RT @MxSba: ""We should err on the side of competition, while recognizing that we will make mistakes in the process"": great @JeanTirole inter…" +06/27/2018,Economists,@AllisonSchrager,"RT @DStallibrass: Good interview with a great economist. + +What does he want? Moderate change. + +When does he want it? In due course, after…" +06/27/2018,Economists,@AllisonSchrager,RT @amcafee: This is (no surprise) excellent. https://t.co/SyrW4UInD9 +06/27/2018,Economists,@AllisonSchrager,"I love this because Tirole does something few people can, he tells you how to think, not what to think. we need mor… https://t.co/bgApty8gWu" +06/27/2018,Economists,@AllisonSchrager,"RT @dkopf: Read this terrific and wonky interview @AllisonSchrager did with the great @JeanTirole +https://t.co/9K39wRzzuY https://t.co/6CZ…" +06/27/2018,Economists,@AllisonSchrager,I asked Jean Tirole every you could want to know about regulating tech--no better source https://t.co/MkhhHhyODS via @qz +06/26/2018,Economists,@AllisonSchrager,RT @PaceSociety: The problem is that #sexwork laws prioritize ideology over actual evidence & exclude persons with lived experience. Sex Wo… +06/20/2018,Economists,@AllisonSchrager,"RT @katherineefoley: I asked, and @AllisonSchrager answered! DC just voted in favor of #VoteYesOn77 https://t.co/HHO5ZEnnlU" +06/20/2018,Economists,@AllisonSchrager,"RT @acrossthecurve: Despite a booming economy, nearly one in four Americans report have no emergency savings https://t.co/NHD0QQ1zgQ via @b…" +06/19/2018,Economists,@AllisonSchrager,@leifpagrotsky @qz Everyone. But only seems to apply to Swedes. +06/18/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/L6LyW7bB6u +06/17/2018,Economists,@AllisonSchrager,RT @kkharris33: I find this absolutely fascinating. https://t.co/PcPHXQuppU +06/16/2018,Economists,@AllisonSchrager,RT @qz: How Swedes beat the curse of winning the lottery https://t.co/DzPv8hkG3R +06/14/2018,Economists,@AllisonSchrager,RT @ReformedBroker: What Are Your Thoughts: Do You Feel Safe Now? https://t.co/mqePe2CZJ0 +06/13/2018,Economists,@AllisonSchrager,@ReformedBroker thanks for having me on!!! +06/13/2018,Economists,@AllisonSchrager,"RT @ReformedBroker: What Are Your Thoughts??? + +with special guest star @AllisonSchrager ! + +https://t.co/Om2NywkSbJ" +06/08/2018,Economists,@AllisonSchrager,RT @qz: How Swedes beat the curse of winning the lottery https://t.co/G4EQMPRNLR +06/08/2018,Economists,@AllisonSchrager,RT @JoshZumbrun: @biggsag @AllisonSchrager @M_C_Klein @Biggs interesting how the same fiscal challenge can then be thought of as either 1)… +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein @biggsag don't think do because welfare is contingent on some event happening, it is more l… https://t.co/HwjzW1uHkQ" +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein @biggsag @biggs may have done networth for retirees, CBO has done transfers and inequality… https://t.co/iHw1Lk1gVY" +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein that is what @biggsag keeps arguing. +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein just because pensions aren't counted as debt, doesn't mean they are treated any different.… https://t.co/ptxatWWWeG" +06/08/2018,Economists,@AllisonSchrager,@M_C_Klein @JoshZumbrun legally you can cut social security benefits. often not true for DB benefits. it is a divis… https://t.co/tR0MqGe5Hg +06/08/2018,Economists,@AllisonSchrager,"@M_C_Klein @JoshZumbrun technically it is a stream of income paid in the future, same as a coupon bond." +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein so this is the hot question for us pension geeks. What makes pensions different from other… https://t.co/2pq8QhyIsn +06/08/2018,Economists,@AllisonSchrager,@JoshZumbrun @M_C_Klein maybe some default (on higher earners) is necessary and desirable. sometimes a structured d… https://t.co/kl2K5v4Nj0 +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun @M_C_Klein my quibble is with the language. if you only pay back part of your debt, to a creditor or p… https://t.co/n3UhyR2Fms" +06/08/2018,Economists,@AllisonSchrager,"@JoshZumbrun cutting benefits 25%, that's a lot for elderly people on a fixed income." +06/08/2018,Economists,@AllisonSchrager,"failing to make a full debt payment counts as a default +https://t.co/OEi0APcUYb" +06/07/2018,Economists,@AllisonSchrager,@bencasselman an increase since 2016 +06/07/2018,Economists,@AllisonSchrager,"@bencasselman Fed survey found increase in gig work, mostly from supplemental employment +https://t.co/9zfDooMnIv" +06/07/2018,Economists,@AllisonSchrager,How Swedes beat the curse of winning the lottery https://t.co/w1KRzUcThw via @qz +06/06/2018,Economists,@AllisonSchrager,@karol it's nothing a 12.6% marginal tax rate increase can't fix (actually no it doesn't---but we might get lucky a… https://t.co/Mzpp2lvJyw +06/05/2018,Economists,@AllisonSchrager,"RT @biggsag: ""Don't raise teacher pay; reform it."" In @NRO. https://t.co/GMww2XDWak Highlights below!" +06/04/2018,Economists,@AllisonSchrager,how would this work? Is this actually a wealth tax? is it only on wealth held in NY banks or will NY require the IR… https://t.co/5T2XdOU8r5 +06/04/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/aMYTEffhzL +06/03/2018,Economists,@AllisonSchrager,@jodiecongirl and often comes down to random luck +06/03/2018,Economists,@AllisonSchrager,"@jodiecongirl By this logic, his understanding of medicine is useless if he does not live to 117" +05/31/2018,Economists,@AllisonSchrager,"RT @OK_Wiafe: Prof Robert C. Merton, Nobel laureate, speaking on what makes a good retirement goal at #CSRI2018 @Canberra https://t.co/naTl…" +05/29/2018,Economists,@AllisonSchrager,"RT @PennyWriter: ""The increase in the average retirement age has been driven almost solely by those with more education."" https://t.co/PZjt…" +05/29/2018,Economists,@AllisonSchrager,RT @FutureForumFndn: Some optimism to start the week! What do you think about this take from @AllisonSchrager in @Qz? https://t.co/t5WsRv7y… +05/29/2018,Economists,@AllisonSchrager,"@radiosmith If I were on the commission, I'd remind people higher returns come with more risk. #supperannuation… https://t.co/IWdHj78dDA" +05/28/2018,Economists,@AllisonSchrager,"RT @pancheetah: Look who else is investing in college education for millennials-> +https://t.co/csCiLFInnu +Other states are considering simi…" +05/27/2018,Economists,@AllisonSchrager,"RT @djmont: Interesting piece by @AllisonSchrager. Nice to see that not all the news for Millennials is bad. And in much of the country, ho…" +05/26/2018,Economists,@AllisonSchrager,human capital is often a better bet https://t.co/jXjzeucmVO +05/26/2018,Economists,@AllisonSchrager,sensing a media bias toward investment in real estate instead of human capital https://t.co/7w0SK2n2vx +05/25/2018,Economists,@AllisonSchrager,RT @EdmundPhelps: @LHSummers Delighted to see your embrace of the philosophy of employment subsidies--the centrality of work and self sufic… +05/25/2018,Economists,@AllisonSchrager,"@JHWeissmann @ComfortablySmug @M_C_Klein @calebwatney @TheStalwart sounds like an argument for Efficient Markets, t… https://t.co/lEcepZMSRN" +05/25/2018,Economists,@AllisonSchrager,Millennials bet on more education instead of homeownership. That might work out. https://t.co/qOuN5nc2QG via @qz +05/24/2018,Economists,@AllisonSchrager,"RT @DahrendorfForum: ""There are two things french politicians are afraid of: railway reform and pension reform"" -@pisaniferry #LSEFrance ht…" +05/24/2018,Economists,@AllisonSchrager,"@wwwojtekk @JashClark @snaidunl ERISA killed DB plans, freed the job lock." +05/21/2018,Economists,@AllisonSchrager,"@biggsag @goffmania @greenhousenyt @voxdotcom and their market value has increased, because they are risk-free assets." +05/21/2018,Economists,@AllisonSchrager,"RT @TheStalwart: ""I may be one of the few people left who believes in the natural unemployment rate."" https://t.co/hVhsym89kL" +05/21/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/QybJ7MpvkJ +05/20/2018,Economists,@AllisonSchrager,"Never thought I'd agree this much with Paul Krugman +https://t.co/HqJWFK0X5R" +05/19/2018,Economists,@AllisonSchrager,RT @uxed: Brilliant! This so makes sense. I love the allegory of a mature woman keeping it all together. So many words associated with wome… +05/19/2018,Economists,@AllisonSchrager,"Tom Wolfe wrote the book on craven, elitist thought leaders in the age of rising inequality https://t.co/NGw0BOhq7J via @qz" +05/19/2018,Economists,@AllisonSchrager,RT @brendanminiter: @tunkuv has an interview w Glenn Hubbard in @WSJ today that’s an important read if you care about those #leftbehind htt… +05/18/2018,Economists,@AllisonSchrager,"RT @causalinf: @AllisonSchrager has written (IMO) a thoughtful article about the ""incel"" community that is similar to what I was trying to…" +05/18/2018,Economists,@AllisonSchrager,RT @delaney: https://t.co/IYxITX9dEH +05/17/2018,Economists,@AllisonSchrager,"RT @biggsag: @greenhousenyt @voxdotcom You just can't think about teacher pay without considering benefits, especially pensions. Since 1975…" +05/16/2018,Economists,@AllisonSchrager,all empiricists face an existential question: what is relevant history to use? It haunts all of us who try to estim… https://t.co/25Bn9OvcbO +05/15/2018,Economists,@AllisonSchrager,@JoshZumbrun Called our downside of hook up culture and craven elitists before we understood how important these tr… https://t.co/o7Jffiv5tB +05/15/2018,Economists,@AllisonSchrager,@JoshZumbrun Was ahead of its time +05/15/2018,Economists,@AllisonSchrager,"RT @lenburman: Dear Seattle, Thank you so much for running this natural experiment, which will provide valuable data about how people respo…" +05/15/2018,Economists,@AllisonSchrager,RT @IQ2US: How will automation impact democracy? Watch live: https://t.co/6pb2ehiyla #IQ2USLive https://t.co/Xh9NCkDni5 +05/14/2018,Economists,@AllisonSchrager,"RT @elerianm: The @WSJ on the ""widest gap between U.S.-German yields in three decades."" + +https://t.co/pEKNVLxpu6 + +#bonds #markets #economy…" +05/14/2018,Economists,@AllisonSchrager,"The Economist argues we need to listen more to women with economics PhDs...hmmmm +https://t.co/DgEDkV2eWU" +05/10/2018,Economists,@AllisonSchrager,"@ChadAldeman @alv9n @voxdotcom @ThadDomina does not include pensions, which are guaranteed. value of risk-free asse… https://t.co/QcNiI8uw5i" +05/10/2018,Economists,@AllisonSchrager,"RT @urbaninstitute: .@AllisonSchrager on ""the strange thing about America’s historically low unemployment rate"": https://t.co/jykOjTixqz ht…" +05/10/2018,Economists,@AllisonSchrager,"Philips curve isn't dead, just misunderstood @EdmundPhelps https://t.co/Oi1eAY2v1k" +05/10/2018,Economists,@AllisonSchrager,RT @BW: Annuities are the fix everyone loves to hate for the $4 trillion retirement savings gap https://t.co/FBdt7nOOEo https://t.co/vaC7ol… +05/10/2018,Economists,@AllisonSchrager,The strange thing about America’s historically low unemployment rate https://t.co/v3H9DEpJcj via @qz +05/09/2018,Economists,@AllisonSchrager,@RonMauKnows try the Economist or Bloomberg +05/09/2018,Economists,@AllisonSchrager,"RT @biggsag: In 2002, 41% of working-age households thought they wouldn't be able to live comfortably in retirement. In 2018, when many of…" +05/09/2018,Economists,@AllisonSchrager,"there is so much evidence to support this, yet I keep seeing arguments that assumes there is no term premium--like… https://t.co/Palaxib9D5" +05/09/2018,Economists,@AllisonSchrager,"RT @dandolfa: This dynamic yield curve shows very clearly how Fed interest rate policy has limited impact on longer term bond yields. +http…" +05/08/2018,Economists,@AllisonSchrager,"RT @ProfJAParker: Argentina is a reminder for the other countries with massive government debts, and questionable institutional quality tha…" +05/08/2018,Economists,@AllisonSchrager,"RT @lisaabramowicz1: Pensions are still expecting 7.25% returns on their investments, despite the fact they've returned 6.5% over the past…" +05/08/2018,Economists,@AllisonSchrager,"RT @tylercowen: When it comes to the Fed and jobs, a bit of agnosticism is in order, https://t.co/lQQ7VLEdMP" +05/07/2018,Economists,@AllisonSchrager,RT @EdmundPhelps: .@paulkrugman @AllisonSchrager My take on the unnatural unemployment rate in @ProSyn: https://t.co/Uf4SCEpyrj +05/07/2018,Economists,@AllisonSchrager,"Also, Ned argues equilibrium is when expectations are met. changes in unemployment come from difference between inf… https://t.co/8AaD1U0KiD" +05/07/2018,Economists,@AllisonSchrager,What's up with the parentheses around @EdmundPhelps. It minimizes his contribution. He did win the prize for this.… https://t.co/2KjnPEd15H +05/07/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/xZoUowSwBf +05/04/2018,Economists,@AllisonSchrager,"RT @qz: The winning horses are running just as fast as they were in the 1950s, completing the 10 furlong (1.25 mi) race at Churchill Downs…" +05/04/2018,Economists,@AllisonSchrager,"Another victory for diplomacy +https://t.co/TcMqB1lSGh" +05/03/2018,Economists,@AllisonSchrager,RT @MonicaLewinsky: blaming the intern is so 1990's. 🙄 https://t.co/6CGPERpNqx +05/03/2018,Economists,@AllisonSchrager,RT @AtlanticMedia: Do you know what an HSA is? @AllisonSchrager via @qz https://t.co/jXy2ZwGkHG +05/01/2018,Economists,@AllisonSchrager,RT @FiveThirtyEight: Snaps to @dkopf at @qz for reminding us that one person can make a huge difference in how we think about and understan… +05/01/2018,Economists,@AllisonSchrager,"RT @UpdatedPriors: This guy definitely doesn't go to the seminars I go to, or read the referee report reports I read. https://t.co/FoowuxbT…" +05/01/2018,Economists,@AllisonSchrager,RT @desaimihira: there are many reasons to expect a more muted investment reaction to the tax cuts @jimtankersley @paulkrugman - the change… +04/30/2018,Economists,@AllisonSchrager,I keep reading in mainstream publications that debt doesn't matter because it can be monetized away. Big divergence… https://t.co/lsoxFFYfK4 +04/28/2018,Economists,@AllisonSchrager,"RT @wwwojtekk: Mainstream weather forecasting is a failure, their models are useless for understanding the real world. +Today, students and …" +04/26/2018,Economists,@AllisonSchrager,@SophiaGrene @JohnRalfe1 years of mismanagement +04/26/2018,Economists,@AllisonSchrager,RT @econbuttonwood: Investors aren't being paid for credit risk on investment-grade bonds. This is from Alex Brazier's (of BoE) speech at L… +04/26/2018,Economists,@AllisonSchrager,@alexandrascaggs and accountability. +04/26/2018,Economists,@AllisonSchrager,"so must states are banking on high returns to pay for pensions (not making contributions), average funding rate is… https://t.co/h3rG1Y41WF" +04/26/2018,Economists,@AllisonSchrager,saying it loud and proud---I believe in EMH. but this story does not seem to know what that means. https://t.co/MOwH4h1Tgs +04/26/2018,Economists,@AllisonSchrager,@De_dicto fascinating! thank you. I can't wait to read it. +04/25/2018,Economists,@AllisonSchrager,RT @wwwojtekk: @kltblom @lenburman @AllisonSchrager Please... Nothing happened that led to it? https://t.co/X3PjCh9QLE +04/25/2018,Economists,@AllisonSchrager,RT @lenburman: Thoughtful thread on practical implementation problems with unconditional job guarantee from @wwwojtekk. https://t.co/SMl7be… +04/24/2018,Economists,@AllisonSchrager,RT @robertshrimsley: @SpiegelPeter @ChrisGiles_ @TowerOfLondon I had a go at the economists reply to the Queen at the time: https://t.co/mp… +04/23/2018,Economists,@AllisonSchrager,Watch the debate: “Bitcoin is more than a bubble and here to stay” https://t.co/pbtV6ENkr6 via @qz +04/23/2018,Economists,@AllisonSchrager,"RT @GBurtless: Why you should not invest a big fraction of your retirement savings in the company you work for: Illustration #4,980,152 fro…" +04/23/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/XnFgsHbaXs +04/21/2018,Economists,@AllisonSchrager,@gilliantett cautions against taking financial advice from teenagers #bitcoin #IQ2USLive +04/21/2018,Economists,@AllisonSchrager,"RT @IQ2US: Is #bitcoin a bubble that will one day burst? Or is it here to stay? Tomorrow, we host a live debate in partnership with @smiths…" +04/20/2018,Economists,@AllisonSchrager,"speaking of mood affiliation...when i was in grad school didn't want to unionize, in part, bc declaring ourselves e… https://t.co/rt9AtRdPDR" +04/20/2018,Economists,@AllisonSchrager,The bond market is sending an ominous signal about economic growth https://t.co/gZ75Knr8uz via @qz +04/20/2018,Economists,@AllisonSchrager,RT @qz: Social Security numbers are unsafe and outdated. So why do Americans use them? https://t.co/klaIKdDDdi +04/19/2018,Economists,@AllisonSchrager,RT @obsidiansec: Does it still make sense to rely on social security numbers in this day and age? Interesting take from @AllisonSchrager vi… +04/18/2018,Economists,@AllisonSchrager,"RT @CruiseLaw: ""The Medallion promises the sort of personalized vacation millennials crave, and what passengers on the Love Boat always som…" +04/18/2018,Economists,@AllisonSchrager,RT @qz: Can Carnival possibly make a cruise with thousands of passengers feel personable? https://t.co/yfrjde7EhB +04/18/2018,Economists,@AllisonSchrager,RT @JoshZumbrun: This chart of global government debt from the IMF is amazing -- 15 years after the financial crisis nations will have made… +04/18/2018,Economists,@AllisonSchrager,"I love this AI story, example of AI enhancing human connections instead of replacing them https://t.co/MPkLz31QIX" +04/16/2018,Economists,@AllisonSchrager,@RichardClarida has rare combination of skills: macro and finance training and market experience and time in government +04/16/2018,Economists,@AllisonSchrager,@TheStalwart he used to compose and play a song at follies night in grad school. it was always great +04/15/2018,Economists,@AllisonSchrager,"RT @PaceSociety: Shutting down websites moves #trafficking into the shadows. After Backpage shut down its adult ads section last year, data…" +04/13/2018,Economists,@AllisonSchrager,"If you have a tax bill from the US government this year, you've won https://t.co/guqSGislPx via @qz" +04/12/2018,Economists,@AllisonSchrager,RT @urbaninstitute: From @AllisonSchrager: The real effects of America’s federal taxes https://t.co/55z1CPumJh https://t.co/DGwvRXtIpm +04/11/2018,Economists,@AllisonSchrager,The real effects of America’s federal taxes https://t.co/0NdUoK6687 via @qz +04/10/2018,Economists,@AllisonSchrager,RT @chicagoboothrev: Why can't we close the gender gap? @ChicagoBooth's Marianne Bertrand and Waverly Deutsch discuss the wage gap and corp… +04/09/2018,Economists,@AllisonSchrager,@dandolfa @GBurtless maybe they just can't afford to fill it. +04/09/2018,Economists,@AllisonSchrager,"RT @GBurtless: Since the start of recovery in 2010, I’ve been asking the question recently posed by Neal Kashkari [see below]. It seems lik…" +04/09/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/MZfv2Zs2ag +04/08/2018,Economists,@AllisonSchrager,RT @qz: Are we in the beginning of a bear market? https://t.co/8rdFBudnRs +04/07/2018,Economists,@AllisonSchrager,Are we in the beginning of a bear market? https://t.co/viphWvw3M9 via @qz +04/06/2018,Economists,@AllisonSchrager,RT @ModeledBehavior: US born economists face more immigrant competition than 416 out of 441 occupations https://t.co/PgpUyGXPtD https://t.c… +04/06/2018,Economists,@AllisonSchrager,RT @johnpaulpagano: Our conspiracist moment. https://t.co/5gs0EWdgIA +04/06/2018,Economists,@AllisonSchrager,"14% of economists think their job is ""socially useless"", compared to 8% of whole population. I wonder if they inter… https://t.co/7aFpX9WT1p" +04/05/2018,Economists,@AllisonSchrager,RT @andreamatranga: @Ms_MathQueen @Noahpinion @qz @AllisonSchrager I know a kid who was told by every math teacher he had in grade school t… +04/05/2018,Economists,@AllisonSchrager,RT @Ms_MathQueen: “We are quick to dismiss students as good or bad at math when it gets hard. But what students really need at that stage i… +04/03/2018,Economists,@AllisonSchrager,@NickTimiraos @M_C_Klein @DavidBeckworth @JoshZumbrun @IrvingSwisher not enough to be the primary financial regulat… https://t.co/TCM2G0Fzcf +04/03/2018,Economists,@AllisonSchrager,@M_C_Klein @DavidBeckworth @NickTimiraos @JoshZumbrun @IrvingSwisher Last NYFed President without market experience… https://t.co/4psKwbECpT +04/03/2018,Economists,@AllisonSchrager,"RT @ChadAldeman: Re the KY teacher strike, there's no ""cut"" in pension benefits. The bill would enroll *new* workers hired in 2019 or later…" +04/03/2018,Economists,@AllisonSchrager,"RT @JanetheActuary: In which, in light of the Kentucky protests, I actuary-splain why public pension funding matters. https://t.co/fygujEr…" +03/30/2018,Economists,@AllisonSchrager,"@StephanieKelton @rseymour @Mauerback @MacroEdge1 sure, this paper totally disproves everything ever published abou… https://t.co/orTf5DxjkV" +03/30/2018,Economists,@AllisonSchrager,@rseymour @StephanieKelton wills pays the bills. here's the problem with her argument. long term rates are market p… https://t.co/jfUD7urVFI +03/30/2018,Economists,@AllisonSchrager,"This is what's wrong with people who say entitlements spending is no problem, committing to large unfunded liabilit… https://t.co/TT5jpjnvMC" +03/30/2018,Economists,@AllisonSchrager,"sad example of why assuming no risk (growth is certain, interest rates will never change) is so dangerous. debt cri… https://t.co/8iZoiyxYpa" +03/29/2018,Economists,@AllisonSchrager,This argument that debt isn't a problem if interest rates never go up is like saying smoking isn't so bad if you do… https://t.co/VxpkLJpS9O +03/29/2018,Economists,@AllisonSchrager,RT @qz: The wage earners who took the biggest hit from NAFTA were not blue-collar men https://t.co/R2lYYGwoXd +03/28/2018,Economists,@AllisonSchrager,Seems like every day I read another story about how economics needs more intellectual diversity. weird. it is one o… https://t.co/usaTSF6ukf +03/27/2018,Economists,@AllisonSchrager,"Japanese pension fund pays managers more if they take extra risk +https://t.co/Tv4REJCvDp" +03/26/2018,Economists,@AllisonSchrager,"RT @JanetheActuary: @GBurtless @AllisonSchrager Sounds fair, then, for pensions to be on the bargaining table as an exchange for higher wag…" +03/26/2018,Economists,@AllisonSchrager,"RT @GBurtless: 2 of 2/ Problem for teachers, even if we accept @AllisonSchrager argument: It’s awfully hard to pay for groceries, mortgage…" +03/26/2018,Economists,@AllisonSchrager,RT @GBurtless: 1 of 2/ Teachers in a number of states furious over sinking real pay. @AllisonSchrager makes interesting point that teachers… +03/26/2018,Economists,@AllisonSchrager,Allison's Ode to the Second Moment https://t.co/tfm1Tolo0w +03/23/2018,Economists,@AllisonSchrager,HR McMaster's detailed description of battle victory at 73 easting is no longer available https://t.co/2aY1rwCaSR +03/23/2018,Economists,@AllisonSchrager,HR McMaster and Donald Trump: a partnership that was never meant to be https://t.co/5HCP5JVQAX via @qz +03/22/2018,Economists,@AllisonSchrager,RT @cohensetton: just published by Joel Mokyr: The Past and the Future of Innovation: some lessons from Economic History https://t.co/C1Tvr… +03/22/2018,Economists,@AllisonSchrager,"RT @heckmanequation: ""The key to fighting inequality starts with moms…"" via @qz +https://t.co/JNAVXGMB1S" +03/21/2018,Economists,@AllisonSchrager,"@thebrianzeng @tylercowen only if the hike signals a new policy direction, which this does not." +03/21/2018,Economists,@AllisonSchrager,"Unpopular opinion: a .25 rate hike makes very little difference to the macro economy, perhaps some signaling, but that's second order." +03/21/2018,Economists,@AllisonSchrager,The iPhone alone accounts for $15.7 billion of the US trade deficit with China https://t.co/ezlMfue4bG via @qz +03/20/2018,Economists,@AllisonSchrager,"""INNOVATION IS GOOD; financial innovation is bad."" except index funds, interest rate swaps, defaults, options, or a… https://t.co/0GpqJgzJAs" +03/20/2018,Economists,@AllisonSchrager,One of America’s few black CEOs on his journey to lead a $47 billion company https://t.co/3sVlwtisq7 via @qz +03/19/2018,Economists,@AllisonSchrager,RT @JanetheActuary: @SethAMandel I'm told that this wouldn't do the trick - that it has to be law enforcement employment specifically. htt… +03/18/2018,Economists,@AllisonSchrager,A NCAA externality is it shines a light on schools that normally don't get attention they deserve. it transformed t… https://t.co/fXKkIxmquF +03/17/2018,Economists,@AllisonSchrager,@biggsag @JanetheActuary @PensionFacts this one is a howler. https://t.co/IFRprXlfT5 +03/15/2018,Economists,@AllisonSchrager,Strange journalists are actually debating whether education makes you more knowledgable about your subject. Do they… https://t.co/7jfqKHAFgI +03/15/2018,Economists,@AllisonSchrager,"It's happening!! +https://t.co/JEc1tr3THM" +03/14/2018,Economists,@AllisonSchrager,"RT @biggsag: @AllisonSchrager That's a good distinction. NEC runs economic policy, but CEA looks at economic conditions. Both matter, a lot!" +03/14/2018,Economists,@AllisonSchrager,When did head of NEC become the 'top economic advisor'? Didn't it used to be the head CEA? Did this start with Obam… https://t.co/ZTJoGsmTHT +03/14/2018,Economists,@AllisonSchrager,"@ejplantain Hi Emily, can I ask you some questions about horse breeding?" +03/11/2018,Economists,@AllisonSchrager,"RT @dianemulcahy: Fees, it turns out, are the lifeblood of the VC industry, not the blockbuster returns and carry that the traditional VC n…" +03/10/2018,Economists,@AllisonSchrager,"RT @AmirPars_: @afneil I grew up in Sweden and studied the economics of the country, and to call it “socialist” is the biggest myth that ha…" +03/10/2018,Economists,@AllisonSchrager,"In the strange world of point collecting, flying the 1 millionth mile is such a big an achievement people bring the… https://t.co/AtcPlnF6fm" +03/09/2018,Economists,@AllisonSchrager,"This is misleading because it does not include pension benefits. They are risk-free, so more valuable in a low-rate… https://t.co/rzYGJ2hUec" +03/09/2018,Economists,@AllisonSchrager,RT @qz: Florida wants to break with the US on daylight saving time to get more sun https://t.co/Zkqvw2Xr6L +03/08/2018,Economists,@AllisonSchrager,RT @RepEEdwards: @causalinf @AllisonSchrager This is about a resolution in the New Hampshire State House and we don't have any power to act… +03/08/2018,Economists,@AllisonSchrager,@causalinf amazing!!! Great example of economic research having real impact and improving welfare. you should still… https://t.co/4M8L9TX1Lt +03/03/2018,Economists,@AllisonSchrager,RT @NormaCohen3: Great article putting myths to rest. But there is some evidence of testosterone-fuelled risk taking. It shows up in a spik… +03/01/2018,Economists,@AllisonSchrager,RT @WSJCentralBanks: EXCLUSIVE: White House preparing to nominate Richard Clarida as Fed’s No. 2 official https://t.co/FgLrQR2k84 +02/24/2018,Economists,@AllisonSchrager,@radiosmith @biggsag @WaltHickey fighting retirement ignorance takes 2 pension geeks! +02/24/2018,Economists,@AllisonSchrager,"another reason why we need fewer time zones and end DST! +https://t.co/qJXKBTEoKZ" +02/24/2018,Economists,@AllisonSchrager,"RT @biggsag: @AllisonSchrager @WaltHickey As I sometimes put it: if we're going to have a retirement crisis, why don't we have one already?…" +02/24/2018,Economists,@AllisonSchrager,"@EconomPic @wolfejosh DB plans follow a LDI strategy. It is expensive w these rates, but also low/no risk--esp if l… https://t.co/E5crs8tMMW" +02/24/2018,Economists,@AllisonSchrager,@biggsag @WaltHickey And many with neither get a high replacement rate from Social Security/SSI. I think we can do… https://t.co/E3enuw8P09 +02/24/2018,Economists,@AllisonSchrager,@wolfejosh the tail risk is 20 years of bad stock returns. even for index funds. It is true that long holder period… https://t.co/ezwqvv4ogV +02/24/2018,Economists,@AllisonSchrager,@biggsag @WaltHickey Misleading reporting. That $15k NIRA number is for all 55 to 64-year-olds. if you condition on… https://t.co/5vZ6laV0EX +02/24/2018,Economists,@AllisonSchrager,RT @biggsag: @AllisonSchrager Let's see... [Mimics rummaging around...] This might do it. @WaltHickey https://t.co/a5uRDIuW7x +02/24/2018,Economists,@AllisonSchrager,@matt_levine thanks for this. I always wondered where the money from share holder buy backs go. Is it reinvested or… https://t.co/MN7EO8O8Vw +02/24/2018,Economists,@AllisonSchrager,"I just can't today, @biggsag https://t.co/wJpxQB2Hog" +02/24/2018,Economists,@AllisonSchrager,Fallacy of time diversification alert! I guess Warren Buffet does not count tail risk as risk https://t.co/ewOZaC96nN +02/15/2018,Economists,@AllisonSchrager,RT @fatihguvenen: Good point. My feeling is that Great Moderation both in macro and micro variables is a reflection of old age for the US e… +02/15/2018,Economists,@AllisonSchrager,RT @biggsag: I'm open to idea that a small universal basic income doesn't have much effect on work. But the study cited finds total employm… +02/09/2018,Economists,@AllisonSchrager,"@EconAndrew @qz exactly. but it does remind people markets are risky, if they aren't comfortable with that, they should reassess." +02/09/2018,Economists,@AllisonSchrager,"If you’re about to retire, should you pull out of the stock market? https://t.co/yDjRwWc5j4 via @qz" +02/07/2018,Economists,@AllisonSchrager,"RT @IQ2US: ""Technology cannot change the basic brain activities of romance"" @DrHelenFisher https://t.co/nfYjoI6XZT #IQ2USLive" +02/06/2018,Economists,@AllisonSchrager,"Archimedean property applies to New York apartments +https://t.co/7j5emgxfYk" +02/06/2018,Economists,@AllisonSchrager,"RT @mckonomy: Investing in the XIV is pretty much like eating a Tide Pod. From the prospectus: ""The long term expected value of your ETNs i…" +02/02/2018,Economists,@AllisonSchrager,"When Americans save this little, it’s usually a sign that recession is near https://t.co/ijfoj3AnGf via @qz" +07/02/2018,Economists,@RBReich,Trump wants to abandon the rules of the World Trade Organization – giving him authority to raise tariffs without co… https://t.co/eV92p7jDNZ +07/01/2018,Economists,@RBReich,Let's be very clear about this: Ripping children from their parents only to reunite them indefinitely behind bars i… https://t.co/jUw6L0EcNj +07/01/2018,Economists,@RBReich,Trump isn’t the cause of what’s happened to America. He’s the consequence – the product of years of stagnant wages… https://t.co/a846S8vbTH +07/01/2018,Economists,@RBReich,"RT @waltshaub: 35,000 – Washington, DC +30,000 – New York City +60,000 – Chicago: +70,000 – Los Angeles + +and 750 other cities! + +(Including D…" +07/01/2018,Economists,@RBReich,Racism isn't patriotism. Xenophobia isn't patriotism. Misogyny isn't patriotism. Islamophobia isn't patriotism. Tru… https://t.co/UN09cN1ozE +07/01/2018,Economists,@RBReich,"But bad news for consumers, who will pay higher prices to cover the added costs. This includes lower-income consume… https://t.co/9sbhKmU3JF" +07/01/2018,Economists,@RBReich,Families belong together. Protest is powerful. Hold officials accountable. Thanks to all for keeping on the pressur… https://t.co/J5YGrKDV6w +06/30/2018,Economists,@RBReich,"RT @WomenBelong: DC +Flint +El Paso +San Juan +LA +Sioux Falls +Santa Fe +Fargo +Helena +Omaha +Antler (population 27) +Chi +Fort Wayne +Boise +Cedar…" +06/30/2018,Economists,@RBReich,Trump and Republicans in Congress want another big tax cut for corporations. They're making the same old argument t… https://t.co/FQc8a4hEJI +06/30/2018,Economists,@RBReich,"RT @MoveOn: TODAY. +Thousands of people across the country are demanding @realDonaldTrump reunite children w/ their families & #EndFamilyDe…" +06/29/2018,Economists,@RBReich,One day Trump is stoking hatred and fear among his core supporters and the next day he's calling for more giveaways… https://t.co/6CM99t1jZv +06/29/2018,Economists,@RBReich,Don't hold your breath... https://t.co/gzTrvzSLo7 +06/29/2018,Economists,@RBReich,RT @aawayne: NEWS: Private prison operators GEO GROUP INC. and CORECIVIC INC. have given more than $2 million to Republicans since 2015. Th… +06/29/2018,Economists,@RBReich,"RT @BernieSanders: “In a modern, moral and wealthy society, no person in America should be too poor to live.” –@Ocasio2018" +06/29/2018,Economists,@RBReich,"Trump controls the Republican Party, the Republican Party controls the House and Senate, and the Senate and Trump a… https://t.co/8LGWmozzn1" +06/28/2018,Economists,@RBReich,"Foreign direct investment in the U.S. is down 40 percent since Trump became president, due to Trump's xenophobic po… https://t.co/sCyNWleMeq" +06/28/2018,Economists,@RBReich,"My heart goes out to the Capital Gazette, the Baltimore Sun, and everyone impacted by this senseless tragedy. We mu… https://t.co/EKRen04Gwb" +06/28/2018,Economists,@RBReich,Are these toddlers the hardened criminals Trump crows about? Does he think they're going to take American jobs? Bul… https://t.co/HxSt6mWEfW +06/28/2018,Economists,@RBReich,"Finally, know that this fight will be long and hard. It will require your patience, your courage, and your resolve.… https://t.co/cRCY181OjM" +06/28/2018,Economists,@RBReich,"Fifth, help lay the groundwork for the 2020 presidential election, so that even if Trump survives Mueller and impea… https://t.co/jKTsbFCFvM" +06/28/2018,Economists,@RBReich,"Fourth, vote this November 6 for people who will stand up to all this outrage. Mobilize and organize others to do s… https://t.co/2jWATSfsVr" +06/28/2018,Economists,@RBReich,"Third, make a ruckus. Demonstrate. Engage in non-violent civil disobedience. Fight lies with truth. Join the resist… https://t.co/jWOsFC5Nxf" +06/28/2018,Economists,@RBReich,"Second, in the short term, if you are represented by a Republican senator, do whatever you can to get him or her to… https://t.co/QtGnC2E3R4" +06/28/2018,Economists,@RBReich,"So what are we -- the majority -- to do? + +First and most importantly, do not give up. That’s what they want us to d… https://t.co/lHTMquFuV3" +06/28/2018,Economists,@RBReich,"My friends, this is a dark hour. Intolerance, cruelty, racism, misogyny, xenophobia, and environmental destruction… https://t.co/23cKizQ9Ud" +06/28/2018,Economists,@RBReich,RT @CecileRichards: It is essential to call your US senators 202-224-3121 and demand no vote on a new SCOTUS Justice until after November.… +06/28/2018,Economists,@RBReich,"Though they employ completely different styles, Trump and McConnell are both willing to sacrifice the institutions… https://t.co/Easbn02ZvC" +06/28/2018,Economists,@RBReich,Trump and McConnell both share an ignominious ability to completely ignore their own hypocrisy in pursuit of politi… https://t.co/MJ54D8gaye +06/28/2018,Economists,@RBReich,"RT @ACLU: If you're voting this November for candidates who: +✓ oppose family separation +✓ will vote for legislation to end Trump's Muslim b…" +06/27/2018,Economists,@RBReich,"RT @ddiamond: Merrick Garland was nominated on March 16, 2016 — or 237 days before that year’s election. McConnell said that was too close…" +06/27/2018,Economists,@RBReich,"If nothing else galvanizes the vast majority of Americans to organize, mobilize, and vote to take back our governme… https://t.co/KCQ9JZDnv0" +06/27/2018,Economists,@RBReich,RT @JeffreyToobin: Anthony Kennedy is retiring. Abortion will be illegal in twenty states in 18 months. #SCOTUS +06/27/2018,Economists,@RBReich,"RT @SenFeinstein: 4 months away from an election, there should be no consideration of a Supreme Court nominee until the American people hav…" +06/27/2018,Economists,@RBReich,"To those GOP senators who have spoken out against Trump's attacks on our democracy, now is your chance to stand fir… https://t.co/cv2jgc8GB5" +06/27/2018,Economists,@RBReich,"RT @ProPublica: Since Donald Trump declared his candidacy for president in late 2015, at least $16.1 million has poured into Trump Organiza…" +06/27/2018,Economists,@RBReich,"If you're angry about this, organize and mobilize to take back the Senate in 2018, so we get a Supreme Court that i… https://t.co/uVgeMhB4ka" +06/27/2018,Economists,@RBReich,"Democrats must pay attention to this: Young, female, powerful message, future of America. https://t.co/nSRDDSv2Uo" +06/27/2018,Economists,@RBReich,"The GOP has become the Trump-Fox News Party, headed by a demagogue and fueled by a propaganda machine. It now runs… https://t.co/poy20FDpz3" +06/26/2018,Economists,@RBReich,I recently sat down with Congressman @RoKhanna to discuss the idea of a Federal Jobs Guarantee and how we can make… https://t.co/X6JfaaKxZX +06/26/2018,Economists,@RBReich,"Next time you hear someone railing against immigrants, mention these facts: +1) Immigrants add ~$1.5 trillion to U.S… https://t.co/6ffHsR1bmj" +06/26/2018,Economists,@RBReich,RT @sfchronicle: Robert Reich (@RBReich): President Trump is far removed from the ideals of patriotism.True patriots don’t court foreign di… +06/26/2018,Economists,@RBReich,RT @repjohnlewis: I never thought I would live to see a day when the Supreme Court of the United States would again make a decision as inhu… +06/26/2018,Economists,@RBReich,McConnell embodies the decline of the Republican party. His spineless political posturing places party above countr… https://t.co/YgjjLfGD0k +06/26/2018,Economists,@RBReich,"RT @IChotiner: Mitch McConnell criticizing the Muslim ban, then getting Gorsuch on the Court to uphold it, and then celebrating the decisio…" +06/26/2018,Economists,@RBReich,"With McConnell's help, Trump is nominating and getting Senate confirmation of judges to the federal bench much fast… https://t.co/xkUBJiNHpd" +06/26/2018,Economists,@RBReich,"Wow indeed, given all your explicit anti-Muslim statements before you put the ban into effect. But, hey, you put Go… https://t.co/e7V1mK6qDw" +06/26/2018,Economists,@RBReich,What did you think would happen when you put tariffs on European steel and aluminum? They retaliated with tariffs o… https://t.co/P5PhlzaRJ2 +06/26/2018,Economists,@RBReich,RT @albericie: This political ad from MJ Hegar is by far and away the best I've ever seen. What a force to be reckoned with! Take a moment… +06/25/2018,Economists,@RBReich,Ridiculous? Tell that to the 15 million American children living in poverty or the majority of families in this cou… https://t.co/HKFSIKPrvz +06/25/2018,Economists,@RBReich,"How are corporations spending their savings from Trump's tax cuts? + +Companies have already plowed $189 billion int… https://t.co/nkncRmmXZW" +06/25/2018,Economists,@RBReich,"Now that Trump and Republicans in Congress have exploded the deficit with tax cuts for the rich, they want to balan… https://t.co/CV6WCssGiy" +06/25/2018,Economists,@RBReich,"As dictators take control of democracies, they typically: https://t.co/DsurVpaXgD" +06/25/2018,Economists,@RBReich,RT @tribelaw: The US is the only UN member state that hasn’t ratified the international convention on the rights of the child +06/25/2018,Economists,@RBReich,"RT @swingleft: YOU: college student dedicated to putting a check on Trump and the GOP. +WE: will train and mobilize you for the midterm elec…" +06/25/2018,Economists,@RBReich,"RT @gelles: Trump tweets about the “witch hunt” + +May 2017: 3 times +June 2017: 5 times +July 2017: 6 times +Oct 2017: 1 time +Dec 2017: 2 times…" +06/24/2018,Economists,@RBReich,The private-prison industry stands to make fortune from Trump's immigration crackdown. This toxic mix of senseless… https://t.co/YWYkE3KOrq +06/24/2018,Economists,@RBReich,"RT @adamdavidson: Interesting. You know how Trump led a vicious attack on Canada because they put a 300% tariff on dairy? + +They don't. It's…" +06/23/2018,Economists,@RBReich,"You talk with supporters, tweet to supporters, hold rallies with supporters. But don't communicate w/ the American… https://t.co/GOjPr3Fx13" +06/23/2018,Economists,@RBReich,"But remember, only 27 percent of Americans are Republicans. https://t.co/sDnN2BWLNq" +06/23/2018,Economists,@RBReich,"RT @ezraklein: Approval of GOP tax law: + +January: 44% +April: 40% +Now: 34% + +https://t.co/qXQ4VsC319" +06/23/2018,Economists,@RBReich,"I've spent decades debating George Will, who has never strayed from his conservative Republican roots. Until now. https://t.co/tjPSRNX3wU" +06/23/2018,Economists,@RBReich,"What is there about the Republican Party and children? After tearing apart immigrant families, Trump and his party… https://t.co/4WyvAXGlJp" +06/22/2018,Economists,@RBReich,The only people among us who have standing to complain about immigrants are Native Americans. https://t.co/NextUppFLE +06/22/2018,Economists,@RBReich,"This has been the GOP's plan all along: +1) Demand massive tax cuts for the rich & corporations. +2) Claim the cuts… https://t.co/FpsEucPlma" +06/22/2018,Economists,@RBReich,"Trump's most lasting legacy might be his impact on the federal court system. Quite apart from the Supreme Court, Tr… https://t.co/k3f3Q60k3N" +06/21/2018,Economists,@RBReich,Behind Trump's cruelty is an industry poised to profit from the suffering. As the administration locked up immigran… https://t.co/NhBGLwV4g1 +06/21/2018,Economists,@RBReich,RT @voxdotcom: Watch: Sinclair is taking over local TV — and just forced its stations to air pro-Trump propaganda on family separation http… +06/21/2018,Economists,@RBReich,Please do not lose faith in the United States. For over seventy years our beliefs and values have made us staunch a… https://t.co/5BxNtWu3Dt +06/21/2018,Economists,@RBReich,RT @mbieseck: BREAKING ⁦@AP:⁩ Immigrant children as young as 14 housed at a juvenile detention center in Virginia say they were beaten whil… +06/21/2018,Economists,@RBReich,"RT @jaketapper: It’s not an accident that the US government is making it so difficult for journalists, lawmakers, lawyers and others to bri…" +06/20/2018,Economists,@RBReich,Reminder: The Trump administration still has no plan how to reunite the thousands of children already separated fro… https://t.co/tnUfN6prvX +06/20/2018,Economists,@RBReich,"Let's be very clear, the administration described the policy as a ""deterrent"" and initiated a ""zero-tolerance"" appr… https://t.co/kSTqlsb6jd" +06/20/2018,Economists,@RBReich,"The Trump administration on family separations: + +1) It’s a deterrent, zero-tolerance. +2) It’s not happening. +3) Th… https://t.co/hNkzGp0vlL" +06/20/2018,Economists,@RBReich,"Amid the maelstrom of Trumpian cruelty, the fundamental kindness and generosity of the American people still define… https://t.co/L0KC5MpTBE" +06/20/2018,Economists,@RBReich,"President Dwight D. Eisenhower once noted, “Every gun that is made, every warship launched, every rocket fired sign… https://t.co/WthwR4aLPs" +06/20/2018,Economists,@RBReich,"RT @NBCNews: JUST IN: American Airlines has requested that the US federal government ""immediately refrain from using American for the purpo…" +06/20/2018,Economists,@RBReich,"The Trump presidency can be defined by 3 corrosive qualities: unbridled cruelty, utter incompetence, and outspoken… https://t.co/dKbF0WnBiq" +06/20/2018,Economists,@RBReich,"RT @RepAdamSchiff: No, @SecNielsen did not do a “fabulous job,” she just repeated the falsehoods you have told to justify the indefensible…" +06/20/2018,Economists,@RBReich,Free the children. +06/20/2018,Economists,@RBReich,"True leaders credit others for accomplishments and accept responsibility for failures. Trump does the opposite, and… https://t.co/KI2VhzuOPi" +06/20/2018,Economists,@RBReich,RT @justinbaragona: Rachel Maddow chokes up and cries on air as she struggles to deliver news that migrant babies and toddlers have been se… +06/20/2018,Economists,@RBReich,"RT @passantino: .@Zac_Petkanas says on Fox News a 10-year-old girl with Down Syndrome was separated from her mother at the border. + +Corey L…" +06/19/2018,Economists,@RBReich,"To Our Allies Around the World: The majority of Americans continue to value the causes of democracy, equal opportun… https://t.co/eyOvUbTq05" +06/19/2018,Economists,@RBReich,RT @DavidCornDC: If only our country had a legislative body with the power to investigate corruption at the highest levels of our governmen… +06/19/2018,Economists,@RBReich,Can you imagine if the children of lobbyists were being separated from their parents? Ryan and McConnell would be b… https://t.co/ixvPz9l3LK +06/19/2018,Economists,@RBReich,"RT @ACLU: The Trump administration’s withdrawal from the UN Human Rights Council, coupled with its abusive use of power at home, only confi…" +06/19/2018,Economists,@RBReich,More Swamponomics: After Wilbur Ross learned that reporters were investigating his business dealings with a Kremlin… https://t.co/NYdCPSEt07 +06/19/2018,Economists,@RBReich,"Having tossed billions in tax cuts to the GOP's donors, Trump is now tossing red meat to his core supporters. https://t.co/Ac07ryaFKK" +06/19/2018,Economists,@RBReich,"RT @ForeignPolicy: ""I was sent to a camp at just five years old — but even then, they didn't separate children from families"" - @GeorgeTake…" +06/19/2018,Economists,@RBReich,RT @JuddLegum: Laura Ingraham describes the detention facilities where children are sent after being forcibly separated from their parents… +06/18/2018,Economists,@RBReich,"RT @jeanguerre: DHS Secretary Kirstjen Nielsen just said DHS isn't separating families who ""legitimately"" enter country through a port of e…" +06/18/2018,Economists,@RBReich,There are two kinds of liars – fools and knaves. Fools lie because they don’t know the truth. Knaves lie because th… https://t.co/JYQqM2uZeP +06/18/2018,Economists,@RBReich,"RT @ProPublica: Inside a detention center last week. Children separated from their parents wail and ask for help. + +A Border Patrol agent b…" +06/18/2018,Economists,@RBReich,"It seems that whenever pro-Trump pundits are now confronted with the harsh realities of the policies they promote,… https://t.co/6ANbFC3ZwU" +06/18/2018,Economists,@RBReich,The Trump Administration's family-separation policy is another xenophobic attack on immigrants rooted in the same o… https://t.co/Nty56ItHE3 +06/18/2018,Economists,@RBReich,"RT @chrislhayes: Currently, the Trump administration is arguing that its family-separation policy: + +- is a deterrent + +- is biblically compl…" +06/17/2018,Economists,@RBReich,"RT @maggieNYT: Trump, who has continued to claim Democrats are responsible for his own policy that he has pressed his DHS secretary to enfo…" +06/17/2018,Economists,@RBReich,"The Attorney General outlined a ""zero-tolerance"" policy last month and other members of the administration have des… https://t.co/d0os5eHom1" +06/17/2018,Economists,@RBReich,RT @tedlieu: Happy early #FathersDay to those who didn't have our kids ripped away from us by the new @realDonaldTrump family separation po… +06/17/2018,Economists,@RBReich,"RT @ACLU: This #FathersDay, members of Congress are visiting kids at the border and in detention centers to see firsthand how @realDonaldTr…" +06/16/2018,Economists,@RBReich,"Trump is the first president to use the term ""we"" to refer not to all Americans but only to his supporters. He cons… https://t.co/Fh8p4s2TA2" +06/16/2018,Economists,@RBReich,"He continues to order unnecessary cruelty and blame it on his political opponents. He's also done it with DACA, the… https://t.co/vnm54Tvfhn" +06/16/2018,Economists,@RBReich,RT @Rob_Rogers: I Was Fired for Making Fun of Trump https://t.co/aauivB2OEl +06/16/2018,Economists,@RBReich,"The next time you hear conservatives railing against affirmative action for black and brown kids, remind them of th… https://t.co/7fEDIPD2lP" +06/15/2018,Economists,@RBReich,"More evidence of the failure of trickle-down economics: + +1) Hourly earnings are down, adjusted for inflation. +2) C… https://t.co/7WBHe6DpfZ" +06/15/2018,Economists,@RBReich,"Throughout history, tyrants have (1) brutalized and scapegoated the vulnerable, (2) lied about what they were doing… https://t.co/z0Msq33T5L" +06/15/2018,Economists,@RBReich,Unfair unless you think witness tampering is perfectly legal. How long before Trump pardons Manafort -- the most bl… https://t.co/2tQZzsAIAq +06/15/2018,Economists,@RBReich,What else would we expect from an administration that has made a practice of ripping babies from their mothers. https://t.co/KYo42xYNvS +06/15/2018,Economists,@RBReich,"Trump officials have operationalized ""deep state"" conspiracies, with one appointee keeping a list of employees who… https://t.co/LibR3lzANk" +06/15/2018,Economists,@RBReich,"“There’s No Stopping Him”: Trump Insists on a Putin Summit +https://t.co/Od2oV7bYEU" +06/15/2018,Economists,@RBReich,These distortions about Crimea could be part of the groundwork for lifting sanctions. Trump is reportedly pushing h… https://t.co/9o7Mrr3AmH +06/15/2018,Economists,@RBReich,"@RichardCheese Stay mobilized and engaged! When the public stops paying attention, democracy suffers. Then, in Nove… https://t.co/nbx4JeWHQY" +06/15/2018,Economists,@RBReich,RT @PreetBharara: Now will Manafort flip? https://t.co/96x2meojAx +06/15/2018,Economists,@RBReich,"This week a GOP senator described his party's loyalty to the president as ""cultish."" Now, Trump is calling for Nort… https://t.co/LHNxPwZ2GJ" +06/15/2018,Economists,@RBReich,Unbridled cruelty and greed are eating away at the very fabric of our society. We must not let it stand. This is no… https://t.co/lLeQAszcle +06/14/2018,Economists,@RBReich,"Remember the endless conspiracy theories about the Clinton Foundation? It seems that, once again, Trump was creatin… https://t.co/bnWkjelsL7" +06/14/2018,Economists,@RBReich,"RT @commondreams: WATCH: Huckabee-Sanders Defends Ripping Children From Parents, Because It's ""Very Biblical to Enforce the Law"" +https://t.…" +06/14/2018,Economists,@RBReich,RT @chrislhayes: THE LAW IN NO WAY COMPELS FAMILY SEPARATION. THEY ARE CHOOSING TO DO THIS. https://t.co/lbtyESdb8i +06/14/2018,Economists,@RBReich,RT @kylegriffin1: A construction company owned by the Chinese government was awarded another contract this week to work on the Trump golf c… +06/14/2018,Economists,@RBReich,"RT @Fahrenthold: NY Atty Gen sues @realdonaldtrump & 3 eldest kids, alleging “persistent illegal conduct” at Trump’s charity. https://t.co/…" +06/14/2018,Economists,@RBReich,"Fox News, 2009: Obama gives Queen Elizabeth an iPod. End of the world. + +Fox New, 2018: Trump salutes a North Korea… https://t.co/tzpvZk1szr" +06/14/2018,Economists,@RBReich,Let me get this straight. It's patriotic to salute a North Korean general who's part of a brutal dictatorial regime… https://t.co/DQjzT3TMb9 +06/14/2018,Economists,@RBReich,The United States already spends more on the military than the next 10 countries combined. It's time to rein in Pen… https://t.co/S0tethjC5W +06/13/2018,Economists,@RBReich,"This is profoundly disturbing, even by Trump's standards. https://t.co/qOJ5FYUFvr" +06/13/2018,Economists,@RBReich,"RT @Lawrence: Note to news media: there is no North Korea ""deal."" If you use the word ""deal"" you're spreading Trump propaganda. + +A deal has…" +06/13/2018,Economists,@RBReich,"As a father, I cannot fathom what these parents are going through. As an American, I am horrified that our governme… https://t.co/UpJCNdnzZ4" +06/13/2018,Economists,@RBReich,"RT @peterbakernyt: Reporter: “The president said it will be verified.” + +Pompeo: “Of course it will.” + +Q: ""Can you tell us a little bit more…" +06/13/2018,Economists,@RBReich,RT @Wonkblog: A minimum-wage worker can’t afford a 2-bedroom apartment anywhere in the U.S. https://t.co/05sfZfk60P +06/13/2018,Economists,@RBReich,"RT @GeorgeLakoff: Four ways the press can stop helping Trump: +1. Learn how propaganda works and how he weaponizes words +2. Focus on the fa…" +06/13/2018,Economists,@RBReich,RT @oliverdarcy: this really is too easy https://t.co/eFqWfT4pn9 +06/13/2018,Economists,@RBReich,"RT @ABCPolitics: Republican Sen. Bob Corker on the GOP's deference to Pres. Trump: ""It's almost becoming a cultish thing, isn't it. And it'…" +06/13/2018,Economists,@RBReich,"“They weren’t exactly selling tickets,” Trump said, referring to the South Korean Olympic games. “It sold like wil… https://t.co/fUDUJZJBag" +06/13/2018,Economists,@RBReich,"Surprise, surprise! Corporate executives are using the massive windfall from the Trump tax cut to line their own po… https://t.co/q7DTiBfTjF" +06/13/2018,Economists,@RBReich,"Dick Thornburgh, AG from 1988-91': ""We will be remembered by what we say and what we do in this challenging time in… https://t.co/9US4XiiW7S" +06/13/2018,Economists,@RBReich,Wonder when Trump will congratulate Arthur Jones for winning the Republican primary in Illinois’s Third Congression… https://t.co/UASk8OhVqy +06/13/2018,Economists,@RBReich,This morning Trump congratulated Corey Stewart for his win in Virginia. Stewart is best known for defending Confede… https://t.co/AS6O51JzOB +06/13/2018,Economists,@RBReich,What's next? We build a wall along the Canadian border and demand Canada pay for it? https://t.co/1GSlgI9PZB +06/12/2018,Economists,@RBReich,The AT&T-Time Warner deal will consolidate two of the largest media empires into the hands of just a few corporate… https://t.co/C95qXaTG6R +06/12/2018,Economists,@RBReich,RT @KenDilanianNBC: Reporters thought this video was North Korea propaganda. It came from the White House. https://t.co/fvIFR8YvTN +06/12/2018,Economists,@RBReich,This slipped by barely noticed. Trump's lawyers from the Department of Justice are now arguing that he can profit f… https://t.co/MYTDFTFfFF +06/11/2018,Economists,@RBReich,The repeal of #NetNeutrality is huge blow to what Americans can say and do online. But we must keep up the fight to… https://t.co/RuFVwBuplG +06/11/2018,Economists,@RBReich,"RT @kylegriffin1: Jared and Ivanka made at least $82,000,000 in outside income last year while serving in the White House, according to new…" +06/11/2018,Economists,@RBReich,"We're America, a land of opportunity that welcomes people from around the world in search of a better life. + +We're… https://t.co/No8g1tOHQD" +06/11/2018,Economists,@RBReich,"In the past 72 hours, Trump administration officials have condemned Justin Trudeau to ""a special place in hell,"" de… https://t.co/hxgjOQS3oT" +06/11/2018,Economists,@RBReich,"RT @jonfavs: This story is bonkers. + +@NRA meets with right-wing Russian nationalists, sanctioned oligarchs, Putin cronies, money-launderer…" +06/11/2018,Economists,@RBReich,RT @evanhalper: BREAKING: Trump administration will stop granting asylum to victims of domestic abuse and gang violence. Tens of thousands… +06/11/2018,Economists,@RBReich,I have news for you. We’re already in a constitutional crisis. For a year and a half the president of the United St… https://t.co/RjGMIx8x0D +06/11/2018,Economists,@RBReich,"RT @ananavarro: You forgot, (6) family values. https://t.co/t1dvfnXT8e" +06/11/2018,Economists,@RBReich,"RT @RepAdamSchiff: To my Republican colleagues: + +How long will you remain silent as President Trump lays ruin to our alliances and tears ap…" +06/11/2018,Economists,@RBReich,"In fact, the U.S. has a trade surplus with Canada. Canada is our largest trading partner. We are staunch allies, fr… https://t.co/suuRL20pH4" +06/11/2018,Economists,@RBReich,"The Republican Party used to stand for (1) the rule of law, (2) free trade, (3) state's rights, (4) low deficits an… https://t.co/8agph4u06V" +06/10/2018,Economists,@RBReich,"Let me get this straight: Trump pulls out of G-7 communique because Trudeau says Canada won’t be bullied by U.S., w… https://t.co/gkfTeYRoLZ" +06/10/2018,Economists,@RBReich,RT @JoeNBC: God help us. Their silence is damning enough. But the Senate Majority Leader calling this the best time ever for conservatives… +06/10/2018,Economists,@RBReich,"Trump has turned his back on America's allies, threatened a trade war with Europe and Japan, made a mockery of the… https://t.co/1aW8VDy4SW" +06/09/2018,Economists,@RBReich,These two photos speak volumes about the direction of America's standing in the world. https://t.co/cZBOav59Sf +06/09/2018,Economists,@RBReich,An incredible photo from the G-7 summit. True patriots understand that diplomacy and international cooperation are… https://t.co/DyMgVl6blw +06/09/2018,Economists,@RBReich,Kudos to @KevinSiers for this one. Be sure to check out his great cartoons. +06/09/2018,Economists,@RBReich,"Trump’s take on an American classic: + +God bless America, +Land that I rule. +Stand beside me, +Don’t indict me +Wit… https://t.co/ppDL6geiE4" +06/08/2018,Economists,@RBReich,Here's the report on out-of-pocket costs: https://t.co/SRZKQ9LrGO +06/08/2018,Economists,@RBReich,"According to a new report, Trump's so-called plan to lower prescription drug prices could actually increase prices… https://t.co/Q3l0ngIwPv" +06/08/2018,Economists,@RBReich,"RT @kylegriffin1: John McCain on the G7: ""The President has inexplicably shown our adversaries the deference and esteem that should be rese…" +06/08/2018,Economists,@RBReich,Trump has become the Mad King who says or does anything his gut tells him to — running roughshod over the rule of l… https://t.co/Rw97N6w3Kv +06/08/2018,Economists,@RBReich,"It's easy to feel helpless with Trump in the White House, but do not underestimate your collective power to oppose… https://t.co/TbpLPUZs95" +06/07/2018,Economists,@RBReich,These are the acts of kindness and generosity that will always define the American people. We mustn't lose sight of… https://t.co/hVJidV6eFg +06/07/2018,Economists,@RBReich,The Trump administration’s decision to alter the 2020 Census to ask people if they are American citizens is unconst… https://t.co/pDPRDagmxE +06/07/2018,Economists,@RBReich,RT @maggieNYT: The president versus the presidency. https://t.co/oNXAveRnxe +06/07/2018,Economists,@RBReich,This is astounding. Trump has done more to save Chinese jobs at ZTE than American jobs at Carrier. https://t.co/gwmpL5l5UL +06/07/2018,Economists,@RBReich,"RT @RepAdamSchiff: The President just caved on a deal with ZTE, a Chinese company that our intelligence professionals say poses a national…" +06/07/2018,Economists,@RBReich,Trump is willing to test the limits of our democracy in order to maintain power. We must remain vigilant. https://t.co/0P08OMcdzm +06/07/2018,Economists,@RBReich,Trump's contempt for the free press permeates the entire administration. https://t.co/0653r0Qtqf +06/07/2018,Economists,@RBReich,"A note on Robert F. Kennedy: +#RFK50 https://t.co/KpjtL3veEs" +06/07/2018,Economists,@RBReich,"RT @FoxNewsResearch: (E)xpensive (P)ruitt (A)gency: +Condo Deal: $50/night +12 Pens: $1,560 +Journals: $1,670 +Trump Hotel Mattress: $1,750 +Pri…" +06/07/2018,Economists,@RBReich,Trump's policies have the unique distinction of accomplishing the exact opposite of their stated goal -- a plan to… https://t.co/MjZCFiUZhx +06/06/2018,Economists,@RBReich,Bumping this to the top of Canada's inbox. https://t.co/bBY0nx8ztm +06/06/2018,Economists,@RBReich,"RT @ABC: Warriors coach Steve Kerr on White House controversy: + +""I'm blown away by the irony of the Eagles being disinvited. … Instead we…" +06/06/2018,Economists,@RBReich,"Leave it to Trump to insult our closet ally, concoct his own version of history, and embarrass America all in the s… https://t.co/3wIVM7OvXR" +06/06/2018,Economists,@RBReich,"RT @AdamRuins: Two facts from this #AdamRuins clip: +1) Unpaid interns have the same success rate in finding paid work as folks who never i…" +06/06/2018,Economists,@RBReich,Only once in our history—in 1861—did enough of us distrust the system so much we succumbed to civil war. We're prob… https://t.co/m8K8OWGemj +06/06/2018,Economists,@RBReich,RT @Redistrict: Dems picking up a Trump +5 state senate seat in MO by a landslide tonight - currently 60%-40% w/ 82% counted. https://t.co/… +06/05/2018,Economists,@RBReich,"RT @NBCNews: Sen. Leahy: Will your school safety commission look at the role of firearms? + +Sec. DeVos: ""That is not part of the commission'…" +06/05/2018,Economists,@RBReich,RT @MichaelSkolnik: Paul Manafort is free? https://t.co/paDPOvGVUb +06/05/2018,Economists,@RBReich,RT @carinabergfeldt: A man takes a knee during Trump’s celebration. https://t.co/zghJSk2YOu +06/05/2018,Economists,@RBReich,"RT @swingleft: It's primary day in Alabama, California, Iowa, Mississippi, Montana, New Jersey, New Mexico, and South Dakota. GO VOTE! http…" +06/05/2018,Economists,@RBReich,"RT @sfchronicle: Is a second civil war possible? Probably not. But the way Trump and his defenders are behaving, it’s not absurd to imagine…" +06/05/2018,Economists,@RBReich,"There are primary elections today Alabama, California, Iowa, Mississippi, Montana, New Jersey, New Mexico and South… https://t.co/AcIT63C7KL" +06/05/2018,Economists,@RBReich,RT @ChrisBHaynes: Stephen Curry says “I agree with ‘Bron.” https://t.co/NSYZYh0eDK +06/05/2018,Economists,@RBReich,"We should all be outraged by this. When Americans look back on this brutal policy, it will surely be recorded as on… https://t.co/5gyGQnyL6l" +06/05/2018,Economists,@RBReich,"RT @AriMelber: Look at what’s happening now: + +Mueller seeking to jail Trump campaign chair for *witness tampering* + +Trump aides admit they…" +06/05/2018,Economists,@RBReich,"RT @ChrisMegerian: Special counsel says Paul Manafort attempted to tamper with a witness and ""has violated the conditions of his release.""…" +06/04/2018,Economists,@RBReich,How are corporations spending their savings from Trump's tax cuts? (Hint: It's not going towards workers) A new rep… https://t.co/zyYu349y2c +06/04/2018,Economists,@RBReich,The President of the United States is threatening to pardon himself in order to undermine an independent investigat… https://t.co/1DSm66prPu +06/04/2018,Economists,@RBReich,"As tyrants take control of democracies, they seek to undermine the rule of law, carving out exceptions for themselv… https://t.co/qmEm50LDP8" +06/04/2018,Economists,@RBReich,"RT @EricLiptonNYT: JUST POSTED: Pruitt did what? Yes, he asked one of his top aides to help him get a mattress he could use from the Trump…" +06/04/2018,Economists,@RBReich,RT @SenJeffMerkley: I was barred entry. Asked repeatedly to speak to a supervisor—he finally came out and said he can’t tell us anything. P… +06/03/2018,Economists,@RBReich,"What's next kindergarten teachers with bazookas? Principals with flamethrowers? + +Gun laws save lives, not more guns… https://t.co/EJyxrMcJiP" +06/03/2018,Economists,@RBReich,"RT @kylegriffin1: Remember that Mueller and his team have: + +• Issued 8 indictments covering 19 individuals and 3 businesses +• Secured 5 gui…" +06/03/2018,Economists,@RBReich,"RT @BeschlossDC: “Well, when the President does it, that means that it is not illegal.” —Richard Nixon to David Frost, 1977 https://t.co/DA…" +06/03/2018,Economists,@RBReich,"RT @MarshallCohen: In a letter to Mueller, Trump's lawyers said he ""dictated a short but accurate response to the New York Times"" about the…" +06/03/2018,Economists,@RBReich,"RT @maggieNYT: For the first time, Trump’s lawyers say he dictated his son’s response to NYT over Russian lawyer meeting. They call the sta…" +06/02/2018,Economists,@RBReich,"RT @JohnJHarwood: average monthly job growth: + +—first 16 months of Trump presidency: 185K + +—last 16 months of Obama presidency: 215K" +07/02/2018,Economists,@TimDuy,Who could have known? https://t.co/wLtbRylbHc +07/02/2018,Economists,@TimDuy,"RT @DukeStJournal: Compare and contrast: in Britain, Parliament is already asking questions mere days after the news broke. In the US Congr…" +07/02/2018,Economists,@TimDuy,"RT @leah_boustan: All migration waves that I have seen data for have an inverted-U shape, slowly building as networks form, and then trendi…" +07/02/2018,Economists,@TimDuy,RT @ernietedeschi: OK WHO LEAKED https://t.co/QJ7qLWqwJB +07/02/2018,Economists,@TimDuy,RT @CardiffGarcia: Recommended post from @gavyndavies about global economic growth -- still strong despite the threat of a trade war and em… +07/02/2018,Economists,@TimDuy,"To be fair, if you spent the last year scaring your clients with stories about quantitative tightening, the plan mi… https://t.co/3O1RXKjq6r" +07/01/2018,Economists,@TimDuy,RT @NickTimiraos: The Fed thought it could wait until next year to decide key questions that will shape how large a bond portfolio it maint… +07/01/2018,Economists,@TimDuy,"RT @ReformedBroker: a message for @larry_kudlow - the federal deficit is actually UP 23% over the last year, but that’s okay. +important p…" +07/01/2018,Economists,@TimDuy,"RT @Noahpinion: Note: TPP is good, and we should join it. It will not create refugee waves. https://t.co/VF4DzTct9p" +07/01/2018,Economists,@TimDuy,Sun setting behind the Cascades. Just outside of Bend. https://t.co/gzRtRUlVJF +06/30/2018,Economists,@TimDuy,"RT @BobBrinker: I hope you are wrong — but think you are right. + +Thread. https://t.co/dQw54ZCRR1" +06/30/2018,Economists,@TimDuy,"RT @paulkrugman: From March. When I say these guys had no idea what they were getting into, I wasn't kidding. https://t.co/xOi7pUxsfx" +06/30/2018,Economists,@TimDuy,"RT @JimPethokoukis: Maybe this deserves at least equal attention to China’s bullet trains, and fabulous airports, and commitment to renewab…" +06/30/2018,Economists,@TimDuy,"RT @ReformedBroker: Who could have known trade was so COMPLEX?? + +Toyota makes cars in Kentucky + +BMW in South Carolina + +Benz in Alabama + +GM…" +06/30/2018,Economists,@TimDuy,RT @OregonianBiz: Most Oregonians buying health insurance in the individual market will see their rates jump from 5 to 10 percent in 2019.… +06/30/2018,Economists,@TimDuy,RT @NickTimiraos: Global supply chains have become so integrated over the last few decades that it’s really hard to put tariffs in place th… +06/30/2018,Economists,@TimDuy,"RT @TopherSpiro: BREAKING: Maine doctor @DrChaya says she is likely to challenge @SenatorCollins in 2020. ""I can't sit idly by and just wat…" +06/30/2018,Economists,@TimDuy,“Swim” instructor would be proud. https://t.co/7TNz9YTF0O +06/30/2018,Economists,@TimDuy,RT @ATabarrok: Why Sexism and Racism Never Diminish–Even When Everyone Becomes Less Sexist and Racist https://t.co/91jTRlpWHN +06/30/2018,Economists,@TimDuy,RT @SonnyBunch: capital 👏 always 👏 wins https://t.co/Qv7eLwf1jv +06/30/2018,Economists,@TimDuy,RT @uoregon: A generous $10 million gift from the Robert J. DeArmond Trust will accelerate #research that improves lives as well as boost t… +06/30/2018,Economists,@TimDuy,@NickTimiraos @sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Sessions probably has some thoughts on that. +06/30/2018,Economists,@TimDuy,Nope. Trump's badgering of companies - effectively an effort at state directed control of the means of production -… https://t.co/yLgnnzXLgy +06/30/2018,Economists,@TimDuy,RT @markmobility: .@rtraister takes on @nytimes @SenSchumer @SenSanders @brianstelter and the Democratic establishment for their nonstop wo… +06/30/2018,Economists,@TimDuy,@IvanTheK @Ocasio2018 The D leadership seems enamored with a fundamentally socially liberal yet fiscally/economical… https://t.co/9LZLJgvSBg +06/30/2018,Economists,@TimDuy,@IvanTheK @Ocasio2018 I know. That is a problem. Withering internal battles seem to be hurting Ds more than Rs. +06/30/2018,Economists,@TimDuy,RT @bopinion: The Equal Rights Amendment is still worth supporting https://t.co/NajVDvH0FJ https://t.co/cZmmDPJ1pQ +06/30/2018,Economists,@TimDuy,Maybe even could get @davidmwessel on board with this idea. https://t.co/DbFQsKeoRt +06/30/2018,Economists,@TimDuy,@IvanTheK I think the Sanders campaigned showed that many are looking for a different economic policy path than tha… https://t.co/u8kbHXq4JT +06/30/2018,Economists,@TimDuy,RT @BruceBartlett: It's always coming down when Republicans want to cut taxes. It's always skyrocketing when they want to slash benefits fo… +06/30/2018,Economists,@TimDuy,And this: https://t.co/pRvyMVwuvw https://t.co/Kt35xBOXQo +06/30/2018,Economists,@TimDuy,Peace could come quickly with policy rates soon approaching neutral. When this really becomes a problem I think is… https://t.co/yJTlXg1P0T +06/30/2018,Economists,@TimDuy,"RT @PeterContiBrown: I don’t think you’re crazy, but I worry about this more than it sounds like you do. Here’s my thread /1 https://t.co/X…" +06/30/2018,Economists,@TimDuy,@sam_a_bell @NickTimiraos @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Both the left and the right turned ag… https://t.co/88QeVDwTZ3 +06/30/2018,Economists,@TimDuy,"RT @IvanTheK: She has 28 times as many followers as the number of people who voted for her in the primary. And from what I can see so far,…" +06/30/2018,Economists,@TimDuy,RT @CardiffGarcia: [2/2] I listed four worrying possibilities (not quite predictions). I try to be open-minded about the future and I'd say… +06/30/2018,Economists,@TimDuy,"RT @CardiffGarcia: [1/2] In Jan 2017 I tried to understand whether the outcomes of Trump-ian economic populism, or ""pluto-populism"" if you…" +06/30/2018,Economists,@TimDuy,RT @PotomacRC: @sam_a_bell @TimDuy @Sam1Fleming @bindersab @PeterContiBrown 1.We are talking about extreme events. 2.Bernanke was nearly no… +06/30/2018,Economists,@TimDuy,Because Democrats aren't really proposing a socialist agenda. Trump's badgering of companies - effectively an effor… https://t.co/N0jOa306vg +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown You can make a good argument that the most importan… https://t.co/4yhWFDDTMH +06/30/2018,Economists,@TimDuy,The Fed has been raising rates since 2015. They have already been doing something about it - pre-emptive policy. https://t.co/87vngRXXWz +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown Because he wouldn’t fire Volker. 😉 +06/30/2018,Economists,@TimDuy,@PotomacRC @sam_a_bell @Sam1Fleming @bindersab @PeterContiBrown I wonder too if Kudlow’s remarks were intended for… https://t.co/M5PGb6dmse +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown …that blowback could be severe. +06/30/2018,Economists,@TimDuy,"RT @jklabar: Congrats @nwnatural @portlandgeneral on this recognition! + +@GreaterPDX is lucky to work with your teams! https://t.co/P2dS980j…" +06/30/2018,Economists,@TimDuy,@sam_a_bell @PotomacRC @Sam1Fleming @bindersab @PeterContiBrown The issue is probably less about the now and more a… https://t.co/9b4bec3KS7 +06/30/2018,Economists,@TimDuy,"RT @NickTimiraos: A lot of people said the Fed was making a big mistake last year when inflation was proving stubborn to the downside, but…" +06/30/2018,Economists,@TimDuy,@Noahpinion Insider-outsider +06/30/2018,Economists,@TimDuy,Finally @aaron_watson which is why I am here. You don’t get these Texas acts out in Oregon very often! https://t.co/oDjb3fLHdz +06/30/2018,Economists,@TimDuy,RT @tomkeene: *KUDLOW HOPES FED UNDERSTANDS MORE JOBS DON'T CAUSE INFLATION ...it starts https://t.co/gLqs5iW7E9 +06/30/2018,Economists,@TimDuy,“I have apologize now for my voice” is not a great opener and does not bode well for this set. +06/30/2018,Economists,@TimDuy,https://t.co/sVwdFspog5 +06/30/2018,Economists,@TimDuy,Second act is Jamie O’Neal...for those of you who remember “There Is No Arizona.” +06/30/2018,Economists,@TimDuy,Covering “Don’t Stop Believing” now. Might work better with a more lubricated crowd. +06/30/2018,Economists,@TimDuy,First act is Bend area band Countrified. https://t.co/WUBISbeQhJ +06/30/2018,Economists,@TimDuy,Kicked off the concert with the local rodeo queens. https://t.co/UjIaMPjFhw +06/30/2018,Economists,@TimDuy,My daughter graciously agreed to join me! https://t.co/J1T6hQ3GzN +06/30/2018,Economists,@TimDuy,Live tweeting tonight from the fourth annual La Pine Rodeo Association’s concert. It’s a sparse crowd so far on a w… https://t.co/75enB7ifmV +06/29/2018,Economists,@TimDuy,"Yes, you have to look through the quarterly noise. https://t.co/CiH1K4JQnW" +06/29/2018,Economists,@TimDuy,It’s been decades since the White House has warned the Fed the way Kudlow just did https://t.co/wRrkOWT8Vz +06/29/2018,Economists,@TimDuy,"RT @Brad_Setser: I have a few thoughts on this topic too! (thread) + +1. As Krugman notes, lots of advanced economies finance current accoun…" +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: Today in our @bopinion debate, @conorsen speculated that big corporations might be over-levered, and that the next recessio…" +06/29/2018,Economists,@TimDuy,RT @DavidBeckworth: ICYMI... https://t.co/xCtBuhFYbO +06/29/2018,Economists,@TimDuy,@eclane9668 Budget +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: When Central Americans stop coming to America because of lower fertility rates and higher GDP, Trump and the nativists are…" +06/29/2018,Economists,@TimDuy,Tell me again that Kudlow is a serious guy and not just another hack. https://t.co/eugCY8MA6u +06/29/2018,Economists,@TimDuy,"RT @mark_dow: TFW you've been denying the recovery for 10 years, in the face of the longest expansion ever, and you insist it's the Fed who…" +06/29/2018,Economists,@TimDuy,"RT @neeratanden: Just to state this: Justice Kennedy's son gave a billion dollar loan to Trump when no one would give him a dime, and Just…" +06/29/2018,Economists,@TimDuy,“Leading” or “hyping”? https://t.co/XNGBTq9BsX +06/29/2018,Economists,@TimDuy,"RT @GlennThrush: This is not a small point: + +The head of the NEC, who will be on the front lines of the next economic crisis, is lying (un…" +06/29/2018,Economists,@TimDuy,RT @greg_ip: Gonna put this on a T-shirt. https://t.co/8WfOxQoyzK +06/29/2018,Economists,@TimDuy,RT @Econ_Marshall: A president & a white house that see it as their function to cement their party's political power. Imagine belonging to… +06/29/2018,Economists,@TimDuy,"@IvanTheK Handy reference chart, with the caveat that we don’t understand the formation of inflation expectations.… https://t.co/FvgF8cNigI" +06/29/2018,Economists,@TimDuy,"RT @osullivanEcon: Inflation remains tame, but there has been some acceleration recently. Core PCE series up to 2.0% y/y in May from 1.5%…" +06/29/2018,Economists,@TimDuy,"Who could have seen this coming? (Answer: Virtually every economist). + +Bitcoin Bloodbath Nears Dot-Com Levels as M… https://t.co/e7sROaTD01" +06/29/2018,Economists,@TimDuy,RT @GagnonMacro: 2019 is shaping up to be a very informative year on the macroeconomics of inflation. It is possible the lesson will come s… +06/29/2018,Economists,@TimDuy,RT @jodiecongirl: how high do you have to be to think you can live in a bitcoin...I used to have to remind people that bitcoin isn’t rangib… +06/29/2018,Economists,@TimDuy,@NickTimiraos It has been higher a number of times in the past few years. The recent general trend is feeling more… https://t.co/dVOXZNELn7 +06/29/2018,Economists,@TimDuy,"The annualized one month change was 2.6%. That’s a number that, if sustained, would worry the Fed. That said, weak… https://t.co/AEMdtAm6Dz" +06/29/2018,Economists,@TimDuy,RT @jbarro: A national campaign to repeal state bans on same-sex marriage would serve four purposes. 1) SCOTUS-proof marriage equality. 2)… +06/29/2018,Economists,@TimDuy,RT @ukarlewitz: https://t.co/4dAtBYpvDa +06/29/2018,Economists,@TimDuy,RT @TheBudgetGuy: Pants on fire. https://t.co/3sPwqR1Ckm +06/29/2018,Economists,@TimDuy,"RT @conradhackett: In a classic experiment, 12 articles were resubmitted to the same journals in which they had already been published. Thr…" +06/29/2018,Economists,@TimDuy,"RT @HenryJGomez: ""In Minnesota, tension between urban and rural Democrats has been growing increasingly sharp. Democrats on the Iron Range…" +06/29/2018,Economists,@TimDuy,RT @bopinion: Only in America: No other successful nation tolerates a tide of roughly 100 shooting deaths per day https://t.co/roECNyslAB h… +06/29/2018,Economists,@TimDuy,"RT @Noahpinion: ""Abolish ICE"" gains some support...from ICE agents. https://t.co/0KxEVTJtvL" +06/29/2018,Economists,@TimDuy,RT @TheRealEveret: Not too late. https://t.co/lzRcOAN16d +06/29/2018,Economists,@TimDuy,Who could have guessed? https://t.co/sHu8cymrPn +06/29/2018,Economists,@TimDuy,"RT @acrossthecurve: When it comes to curve watching, former Federal Reserve chairman Alan Greenspan has a favorite: the 5-to-30-year Treasu…" +06/29/2018,Economists,@TimDuy,RT @acrossthecurve: Two regional Federal Reserve presidents warned that worries over escalating trade disputes are increasingly weighing on… +06/29/2018,Economists,@TimDuy,RT @ObsoleteDogma: That’s not even the full list of things Trump has done—in just the last week!—that benefit Russia. He’s also trying to u… +06/29/2018,Economists,@TimDuy,RT @acrossthecurve: Bank of America Strategist Says He's Never Been This Bullish on the U.S. Economy https://t.co/wT1PRBEIxS via @markets +06/29/2018,Economists,@TimDuy,RT @alisterbull1: Jay Powell to deliver semi-annual report to Congress before Senate Banking Committee July 17 at 10 am in Washington +06/29/2018,Economists,@TimDuy,"RT @betsy_klein: ""In July 1776, the Gazette was one of the first newspapers to publish the Declaration of Independence, although it appeare…" +06/29/2018,Economists,@TimDuy,"RT @ezraklein: A baby fell and hit his head. The family took hi to the ER. The ER said he was fine, let him take a nap, fed him some formul…" +06/28/2018,Economists,@TimDuy,RT @nickconfessore: Three months after the Cambridge Analytica scandal -- and arguably because of it -- California has just passed what may… +06/28/2018,Economists,@TimDuy,RT @HumbleStudent: @StockBoardAsset @MarkYusko @Schuldensuehner @OccupyWisdom @Bamabroker @dlacalle_IA I find it disturbing that the chart… +06/28/2018,Economists,@TimDuy,RT @ByRosenberg: For anyone who doubts journalists' commitment: The Annapolis crime reporter just watched his colleagues die and feared for… +06/28/2018,Economists,@TimDuy,RT @mattyglesias: Trump’s inability to perform basic presidential functions is striking https://t.co/0M0vvIyvfz +06/28/2018,Economists,@TimDuy,RT @AnnieLowrey: The gap between the feverish discourse about the robot-driven trucker-jobs apocalypse and the pressing reality of worker s… +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: I haven't seen one tweet today about children being imprisoned in cages because their parents asked for asylum in the Un… +06/28/2018,Economists,@TimDuy,@jodiecongirl Sorry! +06/28/2018,Economists,@TimDuy,RT @boes_: What comes next when the Fed gets to its estimate of neutral? Does it really need to keep hiking beyond that to slow the economy… +06/28/2018,Economists,@TimDuy,RT @IvanTheK: Tweet from yesterday--> https://t.co/wm1yJ9uXBA +06/28/2018,Economists,@TimDuy,"RT @Abby_Lynes: Cully was the place where displacement wasn't supposed to happen -- nonprofits joined forces, and PSU students came up with…" +06/28/2018,Economists,@TimDuy,RT @bencasselman: There are few institutions more vital to our democracy and our communities than local newspapers. Thinking of my colleagu… +06/28/2018,Economists,@TimDuy,"RT @annsaphir: Duy warns on yield curve. Meanwhile, Fed researchers see nothing to fear: https://t.co/ExvWi6Xv4B https://t.co/iATk4AeqLC" +06/28/2018,Economists,@TimDuy,"RT @boes_: Jay Powell tells Democrats on the House Ways and Means Committee that the Fed is being cautious with rate hikes, and also that i…" +06/28/2018,Economists,@TimDuy,RT @mark_dow: Bernanke basically saying 'the market is too stupid for the Fed to risk tweaking QT plan on the fly. Too much risk of overrea… +06/28/2018,Economists,@TimDuy,"RT @conorsen: Wisconsin’s unemployment rate is 2.8%. Going to be fun when they pay workers $10,000 to relocate for those Foxconn jobs." +06/28/2018,Economists,@TimDuy,"New Fed Watch: + +https://t.co/b8z3YU1ZkI" +06/28/2018,Economists,@TimDuy,"RT @jimtankersley: A two-part warning, from the Chamber, on tariffs... https://t.co/ETDdAdHV6C" +06/28/2018,Economists,@TimDuy,RT @BobBrinker: My 2c : you will have *plenty* of time to freak out over the yield curve AFTER it inverts. it is a leading indicator ..… +06/28/2018,Economists,@TimDuy,"RT @BrianCAlbrecht: Me, after receiving a desk-rejection: ""in many ways, I did get a publication"" https://t.co/WQnzU46Zyc" +06/28/2018,Economists,@TimDuy,RT @CoryBooker: https://t.co/ZgZceOfFmU +06/28/2018,Economists,@TimDuy,Tell me again why self-driving trucks are a problem not a solution. https://t.co/X3eJjEDWLU +06/28/2018,Economists,@TimDuy,RT @jp_koning: Remember how bitcoin & Ripple were going to revolutionize cross border payments? It eventually happened. Not because they ga… +06/28/2018,Economists,@TimDuy,"RT @davidmwessel: What's really going on with the ACA: ""(De)stabilizing the ACA's individual market: A view from the states"" https://t.co/…" +06/28/2018,Economists,@TimDuy,"RT @neelkashkari: Want more affordable housing? Increase supply. ""U.S. Rental Rates Flatten in Major Cities as Supply Floods Market"" https…" +06/28/2018,Economists,@TimDuy,"RT @dandrezner: I’m way to the right of Ocasio-Cortez, but a lot of this looks pretty damn good to me. https://t.co/z2SxXGx3Z9" +06/28/2018,Economists,@TimDuy,This is how the Democrats sabotage themselves. Fear of deficits hobbled stimulus efforts in the early Obama Adminst… https://t.co/40VidU4hGr +06/28/2018,Economists,@TimDuy,The lack of Federal Reserve maneuvering room is very worrisome https://t.co/yYfwSuecsc via @equitablegrowth +06/28/2018,Economists,@TimDuy,"RT @equitablegrowth: On Thursdays, Equitable Growth brings you @delong's Worthy Reads - items on and off our website Brad recommends - here…" +06/28/2018,Economists,@TimDuy,RT @KateAronoff: This woman is going to Congress https://t.co/ofrwqRAlnb https://t.co/BLvUuqxlwx +06/28/2018,Economists,@TimDuy,RT @ianbremmer: Are those things…bad? 🤔 https://t.co/dpPHJVAw4e +06/28/2018,Economists,@TimDuy,Market rate rise may thwart Fed's balance sheet plan https://t.co/enHmQA2pi9 +06/28/2018,Economists,@TimDuy,RT @SteveMatthews12: Remember Janet Yellen considered running the economy hot? She backed away but Jerome Powell is mulling doing the same… +06/28/2018,Economists,@TimDuy,"RT @RadioFreeTom: From the 1950s through into the early 1990s, Democrats controlled the House and usually the Senate, when voting was harde…" +06/28/2018,Economists,@TimDuy,"RT @RadioFreeTom: You know what frustrates me? A 10% primary turnout in New York. People learn how to vote (find their polling station, mar…" +06/28/2018,Economists,@TimDuy,RT @RadioFreeTom: Liberals who loved Kennedy now wondering why he just handed McConnell a SCOTUS seat. I don't know why. But the larger poi… +06/28/2018,Economists,@TimDuy,You can’t build lasting change unless you show up and keep showing up. And at all levels; it can’t be just about se… https://t.co/5VRjcXn3Mz +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: Show some God damned EMOTION. Democrats were screwed beyond belief over Garland and didn't do a damned thing to even slo… +06/28/2018,Economists,@TimDuy,RT @BruceBartlett: I expect Democrats to put up the same opposition they did to the tax cut that gutted our nation's finances--pro forma. I… +06/28/2018,Economists,@TimDuy,RT @MollyHarbarger: Let me highlight some numbers for you from this story that @rwoolington and @iff_or worked tirelessly on for awhile and… +06/28/2018,Economists,@TimDuy,"RT @AEACSWEP: ""Why I Want You to Study Economics: Increasing Diversity, Inclusion, and Opportunity in Economics"" +Listen to/ Read Loretta M…" +06/28/2018,Economists,@TimDuy,NOOOOOO! https://t.co/6gx9ojedCB +06/28/2018,Economists,@TimDuy,"RT @hblodget: Whatever Democrats choose, they need to stop using the word ""socialist."" Americans hate that idea. And Medicare-for-all isn't…" +06/28/2018,Economists,@TimDuy,"RT @daveweigel: In the last 24 hours, the midterms have changed from a referendum on Maxine Waters to a referendum on Ocasio-Cortez’s immig…" +06/27/2018,Economists,@TimDuy,"RT @ddayen: I'm all for ""finding a way"" to block a hardline Kennedy replacement, but with 49 Dems in the caucus, it seems that way has to g…" +06/27/2018,Economists,@TimDuy,"RT @AshaRangappa_: Great. Russia discussing how to exploit POTUS' vulnerabilities for their own benefit out in the open, knowing that the U…" +06/27/2018,Economists,@TimDuy,"RT @brianbeutler: This shit is EXACTLY what I was getting at in my piece on why it's a good thing @Ocasio2018 won. There's untapped energy,…" +06/27/2018,Economists,@TimDuy,RT @DuncanWeldon: Good piece from @TimDuy https://t.co/hbevd3d9IB https://t.co/StOJFn8Glt +06/27/2018,Economists,@TimDuy,RT @Pat_Garofalo: I imagine an old rich dude who is obsessed with the national debt is not who the Democrats need in 2020 https://t.co/PVGV… +06/27/2018,Economists,@TimDuy,RT @mattyglesias: This seems like a Trump voter Democrats should try to persuade. https://t.co/eLHSbhgKmH +06/27/2018,Economists,@TimDuy,"RT @ezraklein: ""McConnell’s great strength as a politician is that he doesn’t care. He doesn’t care that it’s hypocritical, he doesn’t care…" +06/27/2018,Economists,@TimDuy,RT @Pat_Garofalo: Good @pdacosta piece here on how Trump's immigration crackdown is built on a foundation of lies https://t.co/1V13AqEsPT +06/27/2018,Economists,@TimDuy,That forecast errors are autocorrelated. https://t.co/u4ftsuS2ON +06/27/2018,Economists,@TimDuy,RT @BruceBartlett: They will do as they are told to do. https://t.co/OBa08dKqFJ +06/27/2018,Economists,@TimDuy,"RT @shaneferro: Baby Boomers firebomb the world and bow out, ready to enjoy retirement and leave the world to burn for their grandchildren…" +06/27/2018,Economists,@TimDuy,RT @IvanTheK: Another shoutout for those of you who exercised your protest vote in 2016. https://t.co/QNvbGBM8RF +06/27/2018,Economists,@TimDuy,At the latest. A stumble from the trade war could cause the last 33bp to shrink away by the end of this year. https://t.co/KUBq3XyxTo +06/27/2018,Economists,@TimDuy,This is one of my concerns here - that the forward guidance is effectively the case of the Fed writing checks the m… https://t.co/LDJ2GNOYCw +06/27/2018,Economists,@TimDuy,It is tough for me to see the Fed pausing when Q2 GDP could be coming in above 4%. https://t.co/5q4shV6iAL +06/27/2018,Economists,@TimDuy,10-2 spread down to 33 basis points. +06/27/2018,Economists,@TimDuy,"RT @AnnieLowrey: And hey, some programs -- transitional jobs for the formerly incarcerated, nurse-family partnerships etc. -- really do pay…" +06/27/2018,Economists,@TimDuy,RT @mikeduncan: Historians everywhere take a drink and stare into the middle distance. https://t.co/f53Wco895Y +06/27/2018,Economists,@TimDuy,RT @eveewing: Teachers - a meaningful thing you can do right now is ensure that your students know how truly unpopular Dr. King’s actions w… +06/27/2018,Economists,@TimDuy,"RT @byHeatherLong: Reminder: It's been a long time since $HOG was ""100% in America"" +Harley started manufacturing in Brazil in 1999 +Harley t…" +06/27/2018,Economists,@TimDuy,RT @mark_dow: Disaster myopia is still alive https://t.co/vFYecWT3lI +06/27/2018,Economists,@TimDuy,RT @CardiffGarcia: Somewhat ignored because of the ongoing political backlash is that Germany has started making progress at integrating re… +06/27/2018,Economists,@TimDuy,"RT @mattyglesias: Despite liberals’ refusal to give Trump credit for the greatest diplomatic breakthrough in human history, the North Korea…" +06/27/2018,Economists,@TimDuy,"RT @calculatedrisk: Wednesday: Durable Goods, Pending Home Sales, Q2 Apartment Vacancy Survey https://t.co/C6XWkr2quB" +06/27/2018,Economists,@TimDuy,"RT @jg_environ: I was skeptical until I verified these clippings at @nytimes. In 1934, influential religious figures in US argued that Germ…" +06/27/2018,Economists,@TimDuy,"RT @OrangeLeaderUSA: @TheRickWilson ""We still want your gasoline and your lives, but right now let's talk about civility."" https://t.co/56x…" +06/27/2018,Economists,@TimDuy,RT @TheRickWilson: I noted those things just now because I refuse to play this bullshit asymmetric civility game where one side gets to shi… +06/27/2018,Economists,@TimDuy,"RT @jaybookmanajc: Bill O'Reilly on the Dixie Chicks: + +""These are callow, foolish women who deserve to be slapped around."" https://t.co/Lsk…" +06/27/2018,Economists,@TimDuy,"RT @pborish: https://t.co/vICB4IzxzR + +https://t.co/ulaclsMUWF + +Thank you @TheStalwart @JChatterleytv @juleshyman #WDYM for having me as a…" +06/27/2018,Economists,@TimDuy,"RT @TheRickWilson: Let me know how civil it was when Trump supporters threatened to rape my daughter. + +Because let me tell you something,…" +06/27/2018,Economists,@TimDuy,RT @jodiecongirl: I give up https://t.co/xQA6sYhsNa +06/26/2018,Economists,@TimDuy,"RT @Noahpinion: The myth of the illegal immigration crisis: +https://t.co/mGCSisED6H + +The myth of the Latin American immigration crisis: +ht…" +06/26/2018,Economists,@TimDuy,"RT @ForthMobility: .@OregonDOT in conjunction with @OregonDAS, @ODOEnergy, @OregonDEQ and Oregon Public Utility Commission launches a new…" +06/26/2018,Economists,@TimDuy,RT @TheStalwart: .@Brad_Setser coming up on #WDYM talking about trade. https://t.co/8oPloFweEj +06/26/2018,Economists,@TimDuy,This will be an interesting test of the importance of manufacturing for the economy. https://t.co/bk9XEEeWkB +06/26/2018,Economists,@TimDuy,RT @bradleyrsimpson: So I was at an academic conference this weekend and had to physically intervene to prevent a sexual assault by a male… +06/26/2018,Economists,@TimDuy,"RT @mbusigin: Someone asked for a recession model run yesterday while I was in and out of cell coverage, and I can't recall who, but here i…" +06/26/2018,Economists,@TimDuy,@BullandBaird I have been told they start producing in five years. +06/26/2018,Economists,@TimDuy,There has been an explosion of hazelnut orchards along I5 between Eugene and Portland. Boom brought on by developme… https://t.co/Pm3WbEzkeQ +06/26/2018,Economists,@TimDuy,@lehnerjw I know - it is a story I try to tell as well. Regionally economic success translate into higher incomes w… https://t.co/jOd1w6XWzd +06/26/2018,Economists,@TimDuy,RT @FinancialTimes: FT Exclusive: Bank of America is moving a chunk of its investment banking operations to Paris in preparation for Brexit… +06/26/2018,Economists,@TimDuy,"RT @RenMacLLC: Regionally, the West North Central saw a 22.6 point drop in confidence, according to the Conference Board. This includes Min…" +06/26/2018,Economists,@TimDuy,"@lehnerjw I here that all the time. That it’s all the developers fault. They could build less expensive, affordable… https://t.co/oJGov0yJ65" +06/26/2018,Economists,@TimDuy,"RT @GreaterPDX: The 2020 International Electric Vehicle Symposium and Exposition could bring more than 10,000 attendees to Portland. 🔋🔌 #EV…" +06/26/2018,Economists,@TimDuy,"RT @BetsBarnes: Has your child undergone a school threat assessment? + +We want to hear from you: https://t.co/UTqRaPXkgs" +06/26/2018,Economists,@TimDuy,"RT @BetsBarnes: I’ve spent the past several months following a family as they’ve grappled with a horrifying situation: + +Their son’s school…" +06/26/2018,Economists,@TimDuy,"@conorsen @ModeledBehavior Yes, I suspect this as well and it is a reason to be long PDX housing." +06/26/2018,Economists,@TimDuy,@conorsen @ModeledBehavior Fair point. +06/26/2018,Economists,@TimDuy,@conorsen @ModeledBehavior I feel like you have forgotten someone. +06/26/2018,Economists,@TimDuy,I have been here. It is pretty awesome. https://t.co/ISM3QaJ5A4 +06/26/2018,Economists,@TimDuy,@DaisyMaxey Hoping to be proven wrong. Is that close enough? +06/26/2018,Economists,@TimDuy,"But then again, maybe the goal of city officials is more about looking like they want to increase the housing suppl… https://t.co/pIY6gEzyYR" +06/26/2018,Economists,@TimDuy,"Finally, I am having trouble grasping the reason for the high system development charges for ADUs in Eugene. The in… https://t.co/SAGTvDCZMl" +06/26/2018,Economists,@TimDuy,"That is also why I think that while we should allow more ADUs, I don’t think they are really a solution to the hous… https://t.co/RVRz8H9MvM" +06/26/2018,Economists,@TimDuy,"I am happy to be proven wrong on this point, but I am suspicious that there are a huge number of homeowners who bot… https://t.co/THTPpDUaR5" +06/26/2018,Economists,@TimDuy,There is a lot to unpack in this article. My guess is that neighborhood associations resisting this change to allow… https://t.co/FoS7w3WYzy +06/26/2018,Economists,@TimDuy,"Unsurprisingly, Eugene residents attempting to undermine state law requiring more leniency in permitting of accesso… https://t.co/MtAdo5XBE9" +06/25/2018,Economists,@TimDuy,"RT @IvanTheK: Yeah, I prefer my due process to be handled extra-judicially. FFS. https://t.co/DRUhd3NOi1" +06/25/2018,Economists,@TimDuy,"RT @BobBrinker: ""Demand is exceeding capacity in most modes of transportation by a significant amount. In turn, pricing power has erupted i…" +06/25/2018,Economists,@TimDuy,"RT @ObsoleteDogma: The media loves covering “civility” because it lets them get back into their comfort zone of both-sides. + +They don’t ne…" +06/25/2018,Economists,@TimDuy,RT @BruceBartlett: The left is always afraid to energize its own base because it is afraid that whatever it does will energize the right-wi… +06/25/2018,Economists,@TimDuy,RT @GagnonMacro: @TimDuy Market interprets trade war as a supply shock. Raises inflation but lowers output. Neutral for monetary policy but… +07/01/2018,Social_workers,@kyrstensinema,Are you following us on Instagram? Click here or find us at @KyrstenSinema: https://t.co/fxOkNZLGuM https://t.co/e0Ir72WzDc +07/01/2018,Social_workers,@kyrstensinema,"Having a pre-existing condition should never prevent someone from getting quality, affordable health care. I’m comm… https://t.co/m4CCZ49r1W" +06/30/2018,Social_workers,@kyrstensinema,RT @LocalFirstAZ: Do these look yummy? Swing by our #IndieWeekAZ Pub Crawl and score $5 drink specials and participate in a fun scavenger h… +06/30/2018,Social_workers,@kyrstensinema,"It’s been 5 years since the Yarnell Hill tragedy, the deadly wildfire that took the lives of 19 brave Granite Mount… https://t.co/JMFb6dhiPq" +06/30/2018,Social_workers,@kyrstensinema,"Proud to be endorsed by Flagstaff Mayor Coral Evans. We’re standing up for Arizonans all across the state, and I’m… https://t.co/yXhs2LkSgt" +06/30/2018,Social_workers,@kyrstensinema,#IndieWeekAZ starts tomorrow! We have so many great independent businesses in our state. Support your favorites thi… https://t.co/Ul2eQtAABZ +06/29/2018,Social_workers,@kyrstensinema,"Thanks for your support, @JoeBiden! #AZSen https://t.co/HD4yF9mBjY" +06/29/2018,Social_workers,@kyrstensinema,Proud to be endorsed by @chandlerchamber. Arizona businesses support local jobs and are pivotal to our state’s succ… https://t.co/jEQXLwcrfA +06/28/2018,Social_workers,@kyrstensinema,Proud to have Vice President @JoeBiden’s support! #AZSen https://t.co/wDCwDzu8ks +06/28/2018,Social_workers,@kyrstensinema,"In 2013, I stood with Vice President @JoeBiden as we worked across the aisle to reauthorize the Violence Against Wo… https://t.co/Yrv4f7JGne" +06/27/2018,Social_workers,@kyrstensinema,We are just a few days away from our biggest fundraising deadline yet. Will you help our campaign right now by pitc… https://t.co/JWppR4Vxfb +06/27/2018,Social_workers,@kyrstensinema,The administration’s tariffs are taking a toll on American jobs. I’m committed to making sure Arizona jobs stay exa… https://t.co/wCKgtukQkA +06/27/2018,Social_workers,@kyrstensinema,"@RaidersResort Hi @RaidersResort, for help with this issue, you can contact Congresswoman Sinema's District Office at 602-956-2285. - Staff" +06/25/2018,Social_workers,@kyrstensinema,I’m running for Senate to give every Arizonan a shot at the American Dream. With our campaign facing its most impor… https://t.co/ShBbeklBgW +06/25/2018,Social_workers,@kyrstensinema,“It’s really important that we have women like her in the Senate.” See why Krista is on #TeamSinema. #AZSen https://t.co/efiM2eh4fS +06/24/2018,Social_workers,@kyrstensinema,Take some time this weekend to make sure you’re registered to vote – then make sure your friends are too. #AZSen… https://t.co/v1NegP2sEy +06/24/2018,Social_workers,@kyrstensinema,"If the administration succeeds in removing protections for people with pre-existing conditions, Arizona families wi… https://t.co/xkPXoVTJlc" +06/23/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves quality, affordable health care. RT if you agree: Being a woman shouldn’t be considered a p… https://t.co/shV8ZKXX1w" +06/23/2018,Social_workers,@kyrstensinema,"#TitleIX became law 46 years ago, helping promote equal opportunities for women & girls in education. Grateful for… https://t.co/qCTbb5wpog" +06/23/2018,Social_workers,@kyrstensinema,The #GIBill helped millions of veterans get a college education and achieve the American Dream. A proud day in our… https://t.co/3pj8hAdk4u +06/22/2018,Social_workers,@kyrstensinema,NEWS: A dark money group is pouring money into Arizona’s Senate race to boost one of my opponents. Our campaign is… https://t.co/qI2mO0ozU4 +06/22/2018,Social_workers,@kyrstensinema,Opioid addiction is devastating Arizona communities. I’m working across the aisle to combat this crisis. This month… https://t.co/98McsR3NFZ +06/21/2018,Social_workers,@kyrstensinema,"Welcome to Phoenix, @DeandreAyton! https://t.co/8nJC6UMoXJ" +06/21/2018,Social_workers,@kyrstensinema,Election Day is coming. Have you registered to vote yet? Check your status and register here:… https://t.co/s1SSv8occi +06/21/2018,Social_workers,@kyrstensinema,We must do better for our seniors and our veterans. I’m working to improve VA care and make sure Arizona seniors ha… https://t.co/mVgnVlO2Tz +06/20/2018,Social_workers,@kyrstensinema,Too many Arizonans know the devastation that opioid addiction can cause. I'm taking action to alleviate the crisis.… https://t.co/Rr9zMchoYt +06/20/2018,Social_workers,@kyrstensinema,RT @agilbreath_az: Thank you @RepSinema for sharing your priorities with @AZChamber #AZDC2018 https://t.co/4wL3EpdsrD +06/20/2018,Social_workers,@kyrstensinema,"What the administration is doing to separate families is wrong. + +I'm ready to work with anyone who’s serious about… https://t.co/ucSUTRDNEp" +06/17/2018,Social_workers,@kyrstensinema,Happy Father's Day! #AZSen https://t.co/3ja4ezVZGf +06/16/2018,Social_workers,@kyrstensinema,"Meet David Lucier, an advocate for veterans and a proud member of #TeamSinema. https://t.co/PXm9h4KaqG" +06/16/2018,Social_workers,@kyrstensinema,See this list? 👇🏼 Chances are you or someone you love would be affected if pre-existing conditions were no longer p… https://t.co/4Cggtf9uvs +06/16/2018,Social_workers,@kyrstensinema,RT @Justice4Vets: Thank you @RepSinema for supporting the #Veterans Treatment Court Improvement Act to help us ensure we #LeaveNoVeteranBeh… +06/15/2018,Social_workers,@kyrstensinema,Proud to be a #SunDevil https://t.co/hu7mbYjGW0 +06/15/2018,Social_workers,@kyrstensinema,I’m committed to making sure Arizona seniors can retire with the dignity and security they deserve – that means hol… https://t.co/tIASY5vW0f +06/15/2018,Social_workers,@kyrstensinema,"""Since her years as a social worker in Arizona schools, Kyrsten has always been a voice for Arizona women & familie… https://t.co/AIb5XzCXje" +06/14/2018,Social_workers,@kyrstensinema,This is wrong. #FamiliesBelongTogether https://t.co/XxOqgdWOwW +06/14/2018,Social_workers,@kyrstensinema,Happy birthday to the @USArmy! Thank you for protecting our nation for 243 years! #ArmyBday https://t.co/TAKb5DMJ0C +06/14/2018,Social_workers,@kyrstensinema,"One year ago today, my friend @SteveScalise was shot during GOP baseball practice. Our hearts stopped that morning.… https://t.co/hoJgvZ6fdB" +06/13/2018,Social_workers,@kyrstensinema,"Nearly 2.8 million Arizonans have a pre-existing condition, and every single one of them deserves quality, affordab… https://t.co/kqwogMegUf" +06/13/2018,Social_workers,@kyrstensinema,“It’s really important that we have women like her in the Senate.” See why Krista is on #TeamSinema. #AZSen https://t.co/u5UXsfSWFr +06/13/2018,Social_workers,@kyrstensinema,"Happy 10th birthday, @SweetRepublic! What’s better than ice cream on a summer day in Arizona? Stop by their Scottsd… https://t.co/wBV2gU4MND" +06/13/2018,Social_workers,@kyrstensinema,We can’t go back to a time when Arizonans could be overcharged or denied coverage because of a pre-existing conditi… https://t.co/zZGpeCtncx +06/13/2018,Social_workers,@kyrstensinema,Yes!!!!!!!!! ⚽️🇺🇸⚽️🇺🇸⚽️🇺🇸⚽️🇺🇸 https://t.co/Bq2dwhra4Y +06/12/2018,Social_workers,@kyrstensinema,Want to help our campaign win big this year? Make sure you’re registered to vote! Visit https://t.co/bXjlXTW7eI… https://t.co/qgNlwYKyAz +06/12/2018,Social_workers,@kyrstensinema,“I support Kyrsten because she understands the issues that are important to the majority of Arizonans.” – Maria Ele… https://t.co/OxLhZoziLs +06/12/2018,Social_workers,@kyrstensinema,Arizonans work a lifetime to earn their Medicare and Social Security. The new tax law is putting those benefits at… https://t.co/IyFHDvqOdd +06/11/2018,Social_workers,@kyrstensinema,Are you following us on Instagram? Click here or find us at @KyrstenSinema: https://t.co/fxOkNZLGuM https://t.co/w65ZqBZIPz +06/11/2018,Social_workers,@kyrstensinema,"ICYMI: We filed more than 10,000 petition signatures to officially get on the ballot for #AZSen. I’m so thankful fo… https://t.co/tCkm8D7WrB" +06/10/2018,Social_workers,@kyrstensinema,"It’s pretty simple: equal work deserves equal pay. Today, on the anniversary of the #EqualPayAct, let’s recommit to… https://t.co/q0ZBcfdRxU" +06/10/2018,Social_workers,@kyrstensinema,Want to help our campaign win big this year? Make sure you’re registered to vote! Visit https://t.co/bXjlXTW7eI… https://t.co/EOqrPRcJQF +06/09/2018,Social_workers,@kyrstensinema,Those who have served our country deserve our respect and full support. The findings in this report are unacceptabl… https://t.co/jh7iECgrTn +06/09/2018,Social_workers,@kyrstensinema,I’m running for Senate to give every Arizonan a shot at the American Dream. Thanks to everyone on Team Sinema who j… https://t.co/Nb7ypOPe1o +06/08/2018,Social_workers,@kyrstensinema,"""We can always count on Kyrsten to fight for Arizona seniors.” – Vic Peterson, Advocate for Veterans and Seniors… https://t.co/J8NDwjceBA" +06/08/2018,Social_workers,@kyrstensinema,Happy birthday to Arizona's @GabbyGiffords! Thank you for your service and your friendship. Your incredible grit an… https://t.co/qDcbKD659N +06/07/2018,Social_workers,@kyrstensinema,Those who have risked everything for our country deserve to know the care and benefits they’ve earned will be prote… https://t.co/fcIlQLnYnl +06/06/2018,Social_workers,@kyrstensinema,Happy #GlobalRunningDay! 🏃🏼‍♀️ https://t.co/nI51dpw9Q7 +06/06/2018,Social_workers,@kyrstensinema,Today is the 74th anniversary of #DDay. We will never forget the sacrifices made on this day to defend our freedom. https://t.co/S9oHf2DsgG +06/06/2018,Social_workers,@kyrstensinema,RT @JeffFlake: .@SteveScalise back on the field this morning. This does my heart good. https://t.co/97uQImUgCl +06/05/2018,Social_workers,@kyrstensinema,"""Kyrsten knows that Dreamers are vital to communities across Arizona.” – Alvaro, Arizona Student, Dreamer #AZSen https://t.co/N3EQKDPrVB" +06/05/2018,Social_workers,@kyrstensinema,Proud to stand with the everyday Arizonans this campaign is all about. #AZSen https://t.co/X8nk7KskII +06/04/2018,Social_workers,@kyrstensinema,"“Kyrsten gets things done for veterans and will give Arizonans an independent voice in the Senate.” – David Lucier,… https://t.co/lr30qir1ML" +06/04/2018,Social_workers,@kyrstensinema,Had a great week hearing from everyday folks across the state and talking about our campaign to get things done for… https://t.co/JMJ6wVxO28 +06/03/2018,Social_workers,@kyrstensinema,#sundayinspiration https://t.co/Hngoqb8Zml +06/03/2018,Social_workers,@kyrstensinema,Enjoyed hearing from folks in Cochise County at our Meet and Greet. Ready to join #TeamSinema? Sign up here:… https://t.co/zXXRhuYoB9 +06/02/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for Arizona and make sure everyone gets his or her shot at the American d… https://t.co/ffCYAl9B4O +06/02/2018,Social_workers,@kyrstensinema,Great speaking with folks in Green Valley. We're building a statewide campaign to get things done for everyday Ariz… https://t.co/iVcCi1x3Pg +06/01/2018,Social_workers,@kyrstensinema,Thanks to everyone who stopped by our Meet and Greet in Pinal County! Enthusiasm is growing across the state for ou… https://t.co/vJR4CVQrug +06/01/2018,Social_workers,@kyrstensinema,"Arizona firefighters put their lives on the line, day in and day out, to protect families across our state. I'm pro… https://t.co/x8cqxFbEyH" +06/01/2018,Social_workers,@kyrstensinema,"Today marks 150 years since the Navajo Treaty of 1868 was signed. On this anniversary, we join the Navajo in “recog… https://t.co/2PKSgCh0Gl" +05/31/2018,Social_workers,@kyrstensinema,Taking care of our veterans is one of the most important obligations we have as Americans. I’ve worked across the a… https://t.co/2oesXEwI6D +05/29/2018,Social_workers,@kyrstensinema,I’m running for Senate to cut through the chaos in Washington and get things done for everyday people. Let’s go win… https://t.co/7yXdjgDFfG +05/29/2018,Social_workers,@kyrstensinema,“I am so proud of Kyrsten and thankful for her work to show every child what it looks like to be a leader and to gi… https://t.co/kLMtbWeCEq +05/29/2018,Social_workers,@kyrstensinema,"“For years now, I have watched Kyrsten support local shops, and I know that she will continue to support Arizona an… https://t.co/FCPNK1mhU7" +05/29/2018,Social_workers,@kyrstensinema,"“I’m honored to be with my sister, Kyrsten, as she gets her name on the ballot for the U.S. Senate. Kyrsten has spe… https://t.co/UHbvwArwqs" +05/29/2018,Social_workers,@kyrstensinema,"“We can always count on Kyrsten to fight for Arizona seniors. Kyrsten will defend Medicare and Social Security, whi… https://t.co/P4BrreNv7v" +05/29/2018,Social_workers,@kyrstensinema,"“Kyrsten is a tireless leader, and women and families across Arizona can count on her to get things done in the U.S… https://t.co/nQHrFFYQEw" +05/29/2018,Social_workers,@kyrstensinema,"""Kyrsten knows Dreamers are vital to communities across Arizona. I’m thankful for her leadership and her tireless c… https://t.co/ofzI52sdsv" +05/29/2018,Social_workers,@kyrstensinema,"“From her first job as a rape crisis counselor, to her work as a social worker in AZ schools, to her fight to incre… https://t.co/RDG2Zu6N1r" +05/29/2018,Social_workers,@kyrstensinema,"“Kyrsten never backs down from a fight, and I’m proud to stand alongside her in her campaign for Senate. Kyrsten ge… https://t.co/jbFn0i3N32" +05/29/2018,Social_workers,@kyrstensinema,I’m so proud to have been joined today by some of the people who have shaped my life and who continue to inspire me… https://t.co/lslopiXfJf +05/29/2018,Social_workers,@kyrstensinema,"I’m laser-focused on addressing the issues that matter to Arizona families, like providing veterans with the care t… https://t.co/37UV2oN3z7" +05/29/2018,Social_workers,@kyrstensinema,I launched this campaign to fight for our shared Arizona values. We believe that everyone deserves a shot at the American Dream. #AZSen +05/29/2018,Social_workers,@kyrstensinema,"Today was a big day! We filed more than 10,000 petition signatures to officially get on the #AZSen ballot. https://t.co/Dm9sH75qef" +05/28/2018,Social_workers,@kyrstensinema,The brave men and women who have served our country deserve our respect and full support. I’ve worked across the ai… https://t.co/FMWn53N55C +05/28/2018,Social_workers,@kyrstensinema,"Today on Memorial Day, we honor the memory of the brave men and women who gave their lives in service to our countr… https://t.co/vb1ssPVdl6" +05/28/2018,Social_workers,@kyrstensinema,I’m working to make sure no family has to go through what this Arizona family endured. This week our commonsense bi… https://t.co/DD4uTnbQAl +05/26/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for everyday Arizonans. Join our campaign: https://t.co/cXnhCdxepN #AZSen https://t.co/WoDqZhpBBm +05/25/2018,Social_workers,@kyrstensinema,Washington politicians should never get between a woman and her doctor. The administration's new policy will make i… https://t.co/MXKzn0N1br +05/25/2018,Social_workers,@kyrstensinema,It's our duty to ensure the brave men & women who served our country have the tools they need to successfully trans… https://t.co/c4Husr7i8L +05/24/2018,Social_workers,@kyrstensinema,RT @PatrickNkelley: The #FY19NDAA will be named after @SenJohnMcCain +05/24/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves quality, affordable health care. #AZSen https://t.co/UdMjzSIAi5" +05/24/2018,Social_workers,@kyrstensinema,RT @Just_Deet: @kyrstensinema was one of my college professors and I'm happy to see her running! Join me in supporting Kyrsten Sinema via @… +05/24/2018,Social_workers,@kyrstensinema,"Our health care system is broken. A new report says premium increases of more than $1,300 are expected for many Ari… https://t.co/lUMIBSW806" +05/23/2018,Social_workers,@kyrstensinema,Awesome! The Super Bowl is coming back to the best state in the Union! 🌵☀️ https://t.co/zMs7hq12Mz +05/22/2018,Social_workers,@kyrstensinema,"RT @MHedge_NAIFA: House passes S. 2155 containing Senior Safe Act. Great win for consumers, financial advisors, and @NAIFA Bill next heads…" +05/22/2018,Social_workers,@kyrstensinema,Arizonans know the impact Joe Arpaio has had on our state. Taxpayers are *still* paying for his tenure as sheriff.… https://t.co/A28XZr3uGI +05/22/2018,Social_workers,@kyrstensinema,"A woman, her family, and her doctor should decide what’s best for her health – not Washington politicians. The admi… https://t.co/LnAxgYwZvU" +05/21/2018,Social_workers,@kyrstensinema,"House leadership broke its promise to act on immigration, so I joined a bipartisan group of colleagues to go around… https://t.co/3l4c3ubCbp" +05/20/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/irk7ln18ip +05/20/2018,Social_workers,@kyrstensinema,"Every community in Arizona deserves the opportunities high-speed internet can unlock, yet right now nearly 900,000… https://t.co/rsB2flHJ3F" +05/20/2018,Social_workers,@kyrstensinema,I’m working to make sure our vets get high-quality health care when and where they need it. Our bill to reform the… https://t.co/80aicP5hGG +05/19/2018,Social_workers,@kyrstensinema,"Today on #ArmedForcesDay, we honor the brave men and women who have risked their lives in service to our country.… https://t.co/vuXcBYtXR9" +05/17/2018,Social_workers,@kyrstensinema,Standing up for our DREAMers isn't just the right thing to do – it's also crucial for our economy. We need to put p… https://t.co/cY3oCcXufo +05/16/2018,Social_workers,@kyrstensinema,"No child should go without a doctor, and no family should ever go bankrupt from medical bills. #AZSen https://t.co/3BeKtOhKsD" +05/16/2018,Social_workers,@kyrstensinema,"This is the fastest run of my life. Hard work pays off! + +#bettysquad #womenfortri #runfast #workhard #workharder https://t.co/GSdyUSF5Fv" +05/16/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead. That means making sure every Arizonan has access to quali… https://t.co/ZasiS3c1Uc +05/15/2018,Social_workers,@kyrstensinema,Arizona communities and the firefighters protecting them want the SuperTanker in the air this fire season. I’m work… https://t.co/xvw3QVxVQ4 +05/14/2018,Social_workers,@kyrstensinema,Arizona taxpayers are still paying to clean up the mess Joe Arpaio made as sheriff. We can’t afford to send him to… https://t.co/t7yecghG01 +05/13/2018,Social_workers,@kyrstensinema,Happy Mother's Day! https://t.co/Gg5QMKsGos +05/12/2018,Social_workers,@kyrstensinema,We need @GlobalSuperTank in the air this fire season to save lives and protect our communities from fire. I’m worki… https://t.co/bptBd1iNlo +05/12/2018,Social_workers,@kyrstensinema,I know what it’s like for a family to struggle to make ends meet. That’s why I’m running for Senate to help everyda… https://t.co/uk7W3iR0Wj +05/11/2018,Social_workers,@kyrstensinema,"No child should go without a doctor, and no family should ever go bankrupt from medical bills. #AZSen https://t.co/ELeJjI8g4H" +05/11/2018,Social_workers,@kyrstensinema,"Arizonans deserve results from Washington, not chaos. I’m running for Senate to get things done for everyday people… https://t.co/mtwqJTpFvR" +05/10/2018,Social_workers,@kyrstensinema,Arizonans know the impact Arpaio’s dangerous & divisive actions have had on our state. Taxpayers are *still* paying… https://t.co/76DYRfJwz7 +05/10/2018,Social_workers,@kyrstensinema,HERESY https://t.co/vRw1dyF3DP +05/09/2018,Social_workers,@kyrstensinema,The @GlobalSuperTank can cover more than 1.5 miles of forest in one trip and has nearly 4X the capacity of a tradit… https://t.co/v24UuUOsIo +05/09/2018,Social_workers,@kyrstensinema,A good tax law should provide relief for everyday families. Unfortunately the partisan law passed last year actuall… https://t.co/vm9zJbpSad +05/08/2018,Social_workers,@kyrstensinema,"On #TeacherAppreciationDay I remember Ms. Wherry, my first grade teacher at Harelson Elementary. Ms. Wherry was the… https://t.co/bKEZUEKyy5" +05/08/2018,Social_workers,@kyrstensinema,Great to meet so many enthusiastic supporters in Prescott last week! Thanks to @YavapaiDemocrat for having me. Toge… https://t.co/2YaDhypdbg +05/05/2018,Social_workers,@kyrstensinema,"All Americans who wear the uniform deserve our respect and full support, both on the battlefield and when they retu… https://t.co/tqG4KIE9zo" +05/05/2018,Social_workers,@kyrstensinema,Arizonans deserve results from Washington – not chaos. That’s why I’m running for Senate to get things done for eve… https://t.co/3JLgX8ATvv +05/05/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/bxRwIUiB2l +05/04/2018,Social_workers,@kyrstensinema,"I’m grateful to the Hopi council members and veterans who shared their stories with me this week. In the Senate, I’… https://t.co/AKGPHWbIW3" +05/04/2018,Social_workers,@kyrstensinema,"Here’s what I believe: Every Arizonan deserves access to quality, affordable health care. In the U.S. Senate, I’ll… https://t.co/SMHqkT9JiV" +05/04/2018,Social_workers,@kyrstensinema,"We have work to do to improve our health care system, but repealing everything without real solutions is dangerous… https://t.co/Yn1vqrL5zF" +05/04/2018,Social_workers,@kyrstensinema,"One year ago, House GOP leaders passed their health care repeal bill. This bill was bad for Arizona. +—About 400K Ar… https://t.co/ceLAQ4TDTh" +05/03/2018,Social_workers,@kyrstensinema,Arizonans deserve better than Joe Arpaio in the Senate. We’ve rejected his dangerous and divisive behavior before.… https://t.co/Q0pAdKi5qw +05/03/2018,Social_workers,@kyrstensinema,Just rec’d the best email a teacher could ever hope for - an excellent student saying thanks for the opportunity to… https://t.co/Z6V3rp5ayz +05/03/2018,Social_workers,@kyrstensinema,"@RafaelAnchia - the very best of Texas! Love you dearly, mi amigo ❤️ https://t.co/GKhQm00fFn" +05/02/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/OOb4B1fv9o +05/01/2018,Social_workers,@kyrstensinema,"For #SmallBusinessWeek, we're highlighting some of Arizona’s outstanding small businesses! + +Today's feature is Flag… https://t.co/cU35ef0JXD" +04/30/2018,Social_workers,@kyrstensinema,It's #SmallBusinessWeek! Arizona is home to some of the best #SmallBiz in the country. They're creating good-paying… https://t.co/pI6nM551Vx +04/28/2018,Social_workers,@kyrstensinema,Thanks Ryan! https://t.co/cXPxmEZWKR +04/27/2018,Social_workers,@kyrstensinema,"All Americans who wear the uniform deserve our respect and full support, both on the battlefield and when they retu… https://t.co/FblGFGXXzd" +04/27/2018,Social_workers,@kyrstensinema,RT @AlisaTongg: @kyrstensinema @hiral4congress I loved listening to your perspective and how your work as a social worker informs your appr… +04/27/2018,Social_workers,@kyrstensinema,RT @_maryellenk: @jonfavs @kyrstensinema as an MSW student it’s so inspiring to see fellow social workers serving in public office. Thanks… +04/27/2018,Social_workers,@kyrstensinema,Thanks for having me on the pod! Big things happening in AZ. @hiral4congress ran a great race. We’re keeping up the… https://t.co/r22Ue3VaIm +04/27/2018,Social_workers,@kyrstensinema,"RT @PodSaveAmerica: New Pod! Trump calls into his favorite program, Ronny Jackson withdraws, Mulvaney says the quiet part out loud, Kanye t…" +04/26/2018,Social_workers,@kyrstensinema,I know what it’s like for a family to struggle to make ends meet. That’s why I’m running to help everyday people ge… https://t.co/a3uHgcm8qk +04/26/2018,Social_workers,@kyrstensinema,"On to November, @hiral4congress! https://t.co/Kwc8dMhgmu" +04/25/2018,Social_workers,@kyrstensinema,I’m running for Senate to help everyday people get ahead – that means investing in education for our kids and makin… https://t.co/oc1JLNOUYn +04/25/2018,Social_workers,@kyrstensinema,Thanks @djblp! https://t.co/lB2tjqOfN7 +04/25/2018,Social_workers,@kyrstensinema,"First cup of coffee since Saturday and holy goodness, it’s delicious. + +Stomach flu/virus monster, I finally beat y… https://t.co/FiXFmJP1Or" +04/25/2018,Social_workers,@kyrstensinema,Tonight’s #AZ08 results show that Arizonans are fed up with the chaos in Washington. November is coming. Pitch in n… https://t.co/sGlhnjE6I5 +04/25/2018,Social_workers,@kyrstensinema,My family faced tough times when I was a kid. I’ll never forget the great teachers and schools that helped me get m… https://t.co/WOLnmNdzb2 +04/24/2018,Social_workers,@kyrstensinema,"I’m running to make sure Washington works for everyday Arizonans, not against them. Join our campaign:… https://t.co/mUqsOQp0Pd" +04/23/2018,Social_workers,@kyrstensinema,"RT if you agree: Every Arizonan deserves access to quality, affordable health care. #AZSen https://t.co/UuqqURr1mp" +04/22/2018,Social_workers,@kyrstensinema,"On #EarthDay, we renew our commitment to being good stewards of the earth. I'm committed to protecting our parks an… https://t.co/Yu4djtEQiu" +04/22/2018,Social_workers,@kyrstensinema,Pat Tillman: the @ASU student behind the legacy. Watch this touching tribute to Pat. #salutetoservice #neverstop… https://t.co/4W0VpetyRC +04/22/2018,Social_workers,@kyrstensinema,"Pat Tillman's legacy of service, passion, and integrity inspires us all. He is an Arizona hero. 14 years after he d… https://t.co/LnoEaziUQb" +04/21/2018,Social_workers,@kyrstensinema,Another #PatsRun in the books for #TeamSinema! We had a great morning supporting @pattillmanfnd scholars. Thanks to… https://t.co/iHLOAGjKrA +04/21/2018,Social_workers,@kyrstensinema,#TeamSinema is up bright and early for #PatsRun! A great day to support @pattillmanfnd scholars. #NeverStop… https://t.co/psdd9eCytv +04/20/2018,Social_workers,@kyrstensinema,Admission is free tomorrow at all National Parks to kick off National Park Week! #FindYourPark… https://t.co/j39yDrri0i +04/19/2018,Social_workers,@kyrstensinema,"As Arizonans and Westerners, we treasure our public lands and the role they play in our special way of life. Gratef… https://t.co/20lAkeytBR" +04/19/2018,Social_workers,@kyrstensinema,I’m running for Senate to get things done for everyday people. Join the campaign today: https://t.co/cXnhCdxepN… https://t.co/OWIIZiEXnL +04/19/2018,Social_workers,@kyrstensinema,I’ll always #StandWithPP and protect health care for women and families across Arizona. Proud to receive @PPact’s e… https://t.co/0wq2ULPetU +04/19/2018,Social_workers,@kyrstensinema,"Watching this video reminded me once again why I’m so proud to be a #SunDevil. Excellent students, top-notch educat… https://t.co/sI4gHRuWVp" +04/19/2018,Social_workers,@kyrstensinema,.@Interior’s plan to double entrance fees at the Grand Canyon was unacceptable. Arizonans spoke up and now there’s… https://t.co/tDEPlsdbkR +04/18/2018,Social_workers,@kyrstensinema,"I’m running for Senate to get things done for everyday people. + +Join the campaign today: https://t.co/BIjYp9WiXm… https://t.co/8RM9bf6Z5F" +04/17/2018,Social_workers,@kyrstensinema,Arizonans deserve results from Washington – not chaos. #AZSen https://t.co/oGXm32iie3 +04/17/2018,Social_workers,@kyrstensinema,Public service isn’t about showing fealty to party leaders. It’s about doing what’s best for your state and country… https://t.co/n2X5FGAFwb +04/16/2018,Social_workers,@kyrstensinema,So incredibly amazed by @des_linden winner of the #BostonMarathon today! First American woman to win the race since… https://t.co/bR3xn9nexq +04/16/2018,Social_workers,@kyrstensinema,It’s National Volunteer Week! This week we celebrate service and give thanks to all the amazing volunteers who make… https://t.co/HdkrgE0bsi +04/15/2018,Social_workers,@kyrstensinema,Last week was a big week for our campaign. Take a look at some of the highlights. https://t.co/A4BQxOLqaB #AZSen +04/13/2018,Social_workers,@kyrstensinema,"It was another big week for our campaign! We launched our first TV ad and heard from voters in Flagstaff, Tucson, a… https://t.co/uK7PIMqtWW" +04/13/2018,Social_workers,@kyrstensinema,No family should ever have to choose between taking a sick kid to the doctor or putting food on the table. #AZSen https://t.co/FwkimupDAT +04/12/2018,Social_workers,@kyrstensinema,“I bring people together because that’s how you get stuff done.” https://t.co/pUpaHXtHP1 #AZSen +04/11/2018,Social_workers,@kyrstensinema,"As Yom HaShoah begins, we remember the six million Jewish lives lost in the Holocaust. https://t.co/O3GQ3LUbXi https://t.co/vhYEi0WQ4a" +04/11/2018,Social_workers,@kyrstensinema,Happy #NationalPetDay from the pets of #TeamSinema! #AZSen https://t.co/ZMf4Zgw6D0 +04/10/2018,Social_workers,@kyrstensinema,"For many everyday families, the wage gap means hundreds of thousands in lost income over the course of a lifetime.… https://t.co/MXVQLQk677" +04/10/2018,Social_workers,@kyrstensinema,"Arizona women deserve equal pay for equal work. On #EqualPayDay, we recommit to working to make it a reality. #AZSen https://t.co/Maunu8EYnR" +04/10/2018,Social_workers,@kyrstensinema,Thanks @DemsofTucson for having me! Great speaking with you about our campaign for everyday Arizonans. #AZSen https://t.co/q40Qb0UwlE +04/09/2018,Social_workers,@kyrstensinema,"Four years after the #PhoenixVA scandal broke, there’s still more to do to hold the VA accountable. I’m working to… https://t.co/TQ5s8vvT7o" +04/09/2018,Social_workers,@kyrstensinema,"I've always been independent. But don't just take it from me – ask my big brother, Paul. + +We’re on the air with ou… https://t.co/IVutBppNsC" +04/09/2018,Social_workers,@kyrstensinema,"RT @jeremyduda: .@kyrstensinema drops her first ad of the #AZSEN race. Ad, which features her brother, a retired Marine & Tucson cop, touts…" +04/07/2018,Social_workers,@kyrstensinema,"Every Arizonan deserves access to quality, affordable health care. #AZSen https://t.co/yZ9PyCaDk9" +04/07/2018,Social_workers,@kyrstensinema,Great discussion with the Flagstaff Women’s Leadership Network! These women know how to get stuff done. #AZSen https://t.co/A2a6h6Xmsl +04/06/2018,Social_workers,@kyrstensinema,"Everyday people know if they don’t do their jobs, they won’t get paid. But some members of Congress think they can… https://t.co/sHcK8JxOqn" +04/06/2018,Social_workers,@kyrstensinema,Headed to @PhoenixPrideAZ this weekend? Stop by the #TeamSinema booth to sign our ballot petition and join our camp… https://t.co/Ka3nwJSwtI +04/06/2018,Social_workers,@kyrstensinema,Good news for Valley neighborhoods: Most Phoenix Sky Harbor flight paths will return to their old routes. https://t.co/GV2N5Y6W8m #AZSen +04/05/2018,Social_workers,@kyrstensinema,Today is #GoldStarSpousesDay. Thank you to all the families of our fallen heroes for your service and sacrifice. https://t.co/XgqfMB08Sk +04/05/2018,Social_workers,@kyrstensinema,"Happy #NationalBurritoDay, or as we call it in #Arizona, Thursday. +Faves: +@americastaco - bean 🌯 + +@greendamon - h… https://t.co/gJeErWpVMH" +04/04/2018,Social_workers,@kyrstensinema,"It’s pretty simple: +—Hardworking Arizonans deserve a raise. +—Members of Congress do not. + +That’s why I passed a law… https://t.co/nWIEEM2EgE" +04/04/2018,Social_workers,@kyrstensinema,"When Arizona schools were at risk of losing millions in funding, I worked across the aisle to protect our kids’ edu… https://t.co/HxqAFc0bkr" +04/04/2018,Social_workers,@kyrstensinema,"""Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate; only love can do that.” + +5… https://t.co/EvRZBpLWja" +04/04/2018,Social_workers,@kyrstensinema,Arizonans earn their Medicare and Social Security benefits through a lifetime of hard work. I’ll always protect the… https://t.co/fMrI7v2Heo +04/03/2018,Social_workers,@kyrstensinema,It’s #AZGivesDay! Today we recognize Arizona nonprofits and the critical role they play in our communities. Find a… https://t.co/hLLn4p1sxu +04/02/2018,Social_workers,@kyrstensinema,"Joined Arizona colleagues from both sides of the aisle to: +—Stop Congress from getting a raise +—Give our military i… https://t.co/C6Ab5ZXIIm" +04/02/2018,Social_workers,@kyrstensinema,"When Arizona schools were at risk of losing $344 million, I worked across the aisle with @SenJohnMcCain to protect… https://t.co/QIcsiaOYkh" +04/01/2018,Social_workers,@kyrstensinema,Happy Easter! +04/01/2018,Social_workers,@kyrstensinema,"Arizona voters set aside billions for our kids’ education. When we learned those dollars were at risk, I worked acr… https://t.co/jg854vmBQx" +03/31/2018,Social_workers,@kyrstensinema,"I’m running for Senate to cut through the chaos in Washington and get things done for everyday Arizonans. + +Tonight… https://t.co/QbrO1Fcr4c" +03/31/2018,Social_workers,@kyrstensinema,RT @rollcall: Members of Congress from both sides of the aisle bond over “the hardest workout you’ll ever do.” https://t.co/pfenD7LV2Y +03/30/2018,Social_workers,@kyrstensinema,Keeping Arizona seniors safe in the era of data breaches is everyone’s responsibility. I’m working to make sure Con… https://t.co/mEjCdrzPMz +03/30/2018,Social_workers,@kyrstensinema,Happy Passover to all who are celebrating tonight. Chag Sameach! +03/30/2018,Social_workers,@kyrstensinema,"I owe a large debt to my country. I got my shot, and now it’s my duty to help others get theirs. + +Join our team:… https://t.co/TGTD23NO3M" +03/29/2018,Social_workers,@kyrstensinema,"All eyes are on Arizona this year. I’m in one of the toughest Senate races in the country, and we’re coming up on o… https://t.co/bnnyTbj2iT" +03/29/2018,Social_workers,@kyrstensinema,Good luck to the @Dbacks this season! #DbacksOpeningDay #GenerationDbacks #OpeningDay https://t.co/6FFgONxnXy +03/29/2018,Social_workers,@kyrstensinema,"Arizonans deserve results from Washington – not chaos. That’s why I’m running for Senate. #AZSen + +Join our campaign… https://t.co/mPUc7pGlze" +03/28/2018,Social_workers,@kyrstensinema,"Best way to start the day - a killer workout w/ friends! + +@RepTomGraves @RepKathleenRice @RepStephMurphy @GOPLeader… https://t.co/4JdkAffiud" +07/02/2018,Social_workers,@RepBarbaraLee,This is the most serious threat to women’s reproductive health in generations. We will fight this in the halls of C… https://t.co/oZIMFsAHDT +07/01/2018,Social_workers,@RepBarbaraLee,Congrats to Josie Camacho on a well deserved retirement. Thank you for your invaluable service to the East Bay’s la… https://t.co/4rdALEtfSU +07/01/2018,Social_workers,@RepBarbaraLee,"Today, my staff attended the X2 Rise Up conference led by My Sister Arise Minsitries and Tinka from @106KMEL’s Worl… https://t.co/4nin1eoSyp" +06/30/2018,Social_workers,@RepBarbaraLee,Donald Trump has created a humanitarian crisis. Young children have been ripped from their parents. Families – asyl… https://t.co/UuQYjnOMC0 +06/30/2018,Social_workers,@RepBarbaraLee,We need comprehensive childhood education and family services to break the cycle and lift families #OutOfPoverty. C… https://t.co/4pwWQregJh +06/30/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: While visiting @wrtpbigstep on the Pathways #OutOfPoverty #ListeningTour, we joined students and staff to discuss how the pr…" +06/30/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Following the tour of @wrtpbigstep, @RepBarbaraLee, @RepGwenMoore, and I sat down with stakeholders to hear about the day-to…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @NextDoorMil: Special guests at Next Door today: @RepGwenMoore, @WhipHoyer & @RepBarbaraLee came as part of a nationwide anti-poverty to…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @RepGwenMoore: At Gee’s Clippers w/ my sister in the struggle @RepBarbaraLee. + +Gee’s is on the frontlines, providing job training, re-en…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: As part of our Pathways #OutOfPoverty #ListeningTour, we joined parents at Next Door Educare to discuss how housing early ch…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: I'm in Milwaukee, WI kicking off the next leg of the Pathways #OutOfPoverty #ListeningTour with @RepBarbaraLee & @RepGwenMoo…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @RepGwenMoore: Kicking off Milwaukee’s Pathways Out of Poverty Tour w/ @WhipHoyer & @RepBarbaraLee today @ Next Door MKE + +So proud to s…" +06/29/2018,Social_workers,@RepBarbaraLee,"RT @OfficialCBC: .@capgaznews reporters worked through their tears Thursday to get the next day's paper out, displaying the courage & commi…" +06/29/2018,Social_workers,@RepBarbaraLee,Joe Hawkins is Executive Director of @lgbtqoakland. He has been a fearless advocate for #LGBTQ rights in the… https://t.co/wlC24NGLWk +06/29/2018,Social_workers,@RepBarbaraLee,"Wishing the Association of Black +Psychologist an inspiring gathering this week in #Oakland as they celebrate 50 ye… https://t.co/zCYbuAJE5V" +06/28/2018,Social_workers,@RepBarbaraLee,RT @RepAnthonyBrown: I'm stricken with grief that there are several fatalities and injuries at one of our hometown newspapers. The injured… +06/28/2018,Social_workers,@RepBarbaraLee,RT @HRC: Today’s anniversary of the #Stonewall riots is a reminder that we must center the most vulnerable in our communities and resist th… +06/28/2018,Social_workers,@RepBarbaraLee,"RT @ProChoiceCaucus: Make no mistake: @POTUS, @VP & @SenateMajLdr will use Justice #AnthonyKennedy's retirement to further erode our most c…" +06/27/2018,Social_workers,@RepBarbaraLee,Today is #HIVTestingDay. Spread the word and help us defeat AIDS for good by getting tested. Find out your status h… https://t.co/8FMRUgyw7z +06/27/2018,Social_workers,@RepBarbaraLee,"Justice Kennedy’s retirement puts our fundamental rights – to reproductive health care, to marry, to equality under… https://t.co/3LdOct5Bi1" +06/27/2018,Social_workers,@RepBarbaraLee,This ceasefire agreement in South Sudan is an important step towards peace. The US needs to maintain our commitment… https://t.co/X5iNIW32Sm +06/27/2018,Social_workers,@RepBarbaraLee,Can’t imagine a more fitting end to #ImmigrantHeritageMonth than the resounding rejection of @HouseGOP’s bigoted im… https://t.co/dio9J1RaQ6 +06/27/2018,Social_workers,@RepBarbaraLee,The courts are saying – loud and clear – that #FamiliesBelongTogether. I couldn’t agree more – zero tolerance is un… https://t.co/P50DQHVPcN +06/27/2018,Social_workers,@RepBarbaraLee,The #Janus decision is disgraceful. SCOTUS has weakened workers’ rights and further rigged the system for greedy sp… https://t.co/ZNG87ASaQt +06/26/2018,Social_workers,@RepBarbaraLee,We’ve made incredible progress towards equality thanks to brave Americans like Edie Windsor and Jim Obergefell. But… https://t.co/YEFMZ3trsx +06/26/2018,Social_workers,@RepBarbaraLee,"RT @nbcbayarea: ""Denying women this critical information is unethical and will put lives in danger."" says @RepBarbaraLee and other pro-choi…" +06/26/2018,Social_workers,@RepBarbaraLee,RT @ProChoiceCaucus: Doctors have an ethical obligation to provide accurate information to their patients. #NIFLAvBecerra will undermine th… +06/26/2018,Social_workers,@RepBarbaraLee,History does not reflect kindly on Supreme Courts that endorse bigotry. Korematsu and Dred Scott are some of the wo… https://t.co/7qP1t7jRph +06/26/2018,Social_workers,@RepBarbaraLee,"RT @americansunited: “Real lives will be upended. Families will be torn apart.” Today’s #SCOTUS decision “endorses bigotry,” says @RepBarba…" +06/26/2018,Social_workers,@RepBarbaraLee,"RT @ABCPolitics: Democratic Rep. Barbara Lee on the Supreme Court's decision to uphold the travel ban: ""Make no mistake, the Supreme Court…" +06/26/2018,Social_workers,@RepBarbaraLee,The shameful #NIFLAvBecerra decision allows crisis pregnancy centers to deceive women. These centers are not health… https://t.co/wxRxjsRVWx +06/26/2018,Social_workers,@RepBarbaraLee,"RT @RepSpeier: .⁦@RepBarbaraLee -⁩ We saw children sleeping on cold concrete floors, when we asked why we were told they didn’t have the re…" +06/26/2018,Social_workers,@RepBarbaraLee,Richard Fuentes & Sean Sullivan are extraordinary leaders in #Oakland’s LGBTQ community! They opened… https://t.co/p6UIOyQeSK +06/25/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: JUST IN: @HouseGOP has cancelled this markup to prevent Democrats from offering amendments that would protect migrant chil… +06/25/2018,Social_workers,@RepBarbaraLee,"It’s been 5 years since #SCOTUS unraveled the Voting Rights Act, paving the way for state legislatures to suppress… https://t.co/zWigN8S7XB" +06/25/2018,Social_workers,@RepBarbaraLee,"This weekend, I spoke to mothers who had no idea where their children are. I met parents who couldn’t afford a phon… https://t.co/ShvAadu234" +06/25/2018,Social_workers,@RepBarbaraLee,"President Trump needs to stop treating our democracy – our civil liberties – as an inconvenience. + +Due process is… https://t.co/UuK1C8lgbw" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @jaketapper: On #CNNSOTU @RepBarbaraLee describes her ""heart-wrenching"" border visit +https://t.co/Uyv6Xemyqv" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @CNNSotu: Good Morning! Today on #CNNSOTU w/ @JakeTapper: @SenRonJohnson, @SenSanders, @DavidJUrban, @RepBarbaraLee, @carlosgutierrez, @…" +06/24/2018,Social_workers,@RepBarbaraLee,"RT @KQED: ""I’ve seen it with my eyes, and I’m telling you, I am furious, I am heartbroken, and we’ve got to get this administration to stop…" +06/23/2018,Social_workers,@RepBarbaraLee,People fleeing violence and seeking refuge in the United States are being treated like criminals. Parents don’t kno… https://t.co/59f8RzXvlm +06/23/2018,Social_workers,@RepBarbaraLee,Looking forward to joining @JakeTapper tomorrow to report back on the conditions at detention centers in Texas. We… https://t.co/ntffdcXGyB +06/23/2018,Social_workers,@RepBarbaraLee,RT @RepSpeier: Congressional Delegation reporting to the press what we saw in the facilities. Haunting scenes of asylum seekers including s… +06/22/2018,Social_workers,@RepBarbaraLee,"Millions of Americans lack health care, housing or regular meals. This poverty crisis is worsening under President… https://t.co/ZYSY5apBre" +06/22/2018,Social_workers,@RepBarbaraLee,RT @WhipHoyer: .@realDonaldTrump’s plan to merge the Depts of Ed & Labor is a thinly veiled attempt to cut essential programs – including w… +06/21/2018,Social_workers,@RepBarbaraLee,"""While these findings might seem unsurprising, the researchers contended that their study was a significant attempt… https://t.co/sPVo9ZowR7" +06/21/2018,Social_workers,@RepBarbaraLee,Happy #NationalSelfieDay! https://t.co/FsYCrTruAc +06/21/2018,Social_workers,@RepBarbaraLee,This is wonderful. Michelle’s voice is sorely needed in our national dialogue. https://t.co/inKcrqsza6 +06/21/2018,Social_workers,@RepBarbaraLee,"This proposal is the first step – then they cut student loan funding, civil rights enforcement budgets, and job tra… https://t.co/5Wng5E06qw" +06/21/2018,Social_workers,@RepBarbaraLee,.@HouseGOP just passed a bill that will strip nutrition assistance from millions and take school lunches away from… https://t.co/A6RCcE8etY +06/21/2018,Social_workers,@RepBarbaraLee,.@HouseGOP's immigration agenda would do nothing to help families detained at our border. They've proposed to crack… https://t.co/UurRYNS9mu +06/21/2018,Social_workers,@RepBarbaraLee,".@HouseGOP is currently marking up their #BetterForBillionaires budget, which would cut Social Security, Medicare &… https://t.co/VXbJLHmKgj" +06/21/2018,Social_workers,@RepBarbaraLee,"#WhereAreTheGirls? They came to the United States fleeing horrific circumstances. Now, they’ve been separated from… https://t.co/dBbCTnDzyK" +06/21/2018,Social_workers,@RepBarbaraLee,"RT @Rewire_News: “Under the guise of reorganizing health care programs, the Trump Administration wants to make it easier to slash the basic…" +06/21/2018,Social_workers,@RepBarbaraLee,I’ve asked the @UN to send observers to investigate President Trump’s zero tolerance policy. These practices are a… https://t.co/sq1jLPKhQB +06/20/2018,Social_workers,@RepBarbaraLee,RT @KPIXtv: .@RepBarbaraLee writes to UN calling on humanitarian observers to investigate family separations at the border: https://t.co/uY… +06/20/2018,Social_workers,@RepBarbaraLee,"This Executive Order is a sham. By not ending zero tolerance, President Trump is keeping families in jail. Children… https://t.co/ZkFvbd01vd" +06/20/2018,Social_workers,@RepBarbaraLee,Refugees & asylum seekers should be welcomed to the US. But President Trump’s callous policies are denying safe har… https://t.co/dqNKmVj4ih +06/20/2018,Social_workers,@RepBarbaraLee,RT @HouseBudgetDems: Republican efforts to sabotage the #ACA continue to leave more Americans uninsured and premiums soaring. Now the GOP’s… +06/20/2018,Social_workers,@RepBarbaraLee,"RT @HispanicCaucus: This EO jails kids with their parents, perhaps indefinitely. + +Instead of ending the heinous policy of separating famil…" +06/20/2018,Social_workers,@RepBarbaraLee,Nowhere are the consequences of the #GOPTaxScam more clear than in their proposed budget. After lavishing billionai… https://t.co/REsaS0smcL +06/20/2018,Social_workers,@RepBarbaraLee,This is important. @AppropsDems just passed an amendment that would force the Trump Admin to allow members of Congr… https://t.co/GwVG1ltrCx +06/20/2018,Social_workers,@RepBarbaraLee,"RT @AppropsDems: .@RepBarbaraLee offers an amendment to provide funding for international family planning through @UNFPA, striking Republic…" +06/20/2018,Social_workers,@RepBarbaraLee,8 million people in Yemen are on the brink of starvation. But @HouseGOP can’t even muster the courage to ASK… https://t.co/j5gicL9MP0 +06/20/2018,Social_workers,@RepBarbaraLee,The Trump admin is committing human rights abuses in our own country. I sent a letter asking the UN to send observe… https://t.co/JdZHlaz51L +06/20/2018,Social_workers,@RepBarbaraLee,I’ve noticed this too. People across the country are *rightly* outraged by the inhumanity on display from the Trump… https://t.co/ZfI7CUyg9n +06/20/2018,Social_workers,@RepBarbaraLee,RT @RepGutierrez: Republicans shut down the floor early and cut it off rather than let us speak about Trump’s policy of taking children fro… +06/20/2018,Social_workers,@RepBarbaraLee,RT @rolandsmartin: Watch @ABC's broadcast: House Democrats hold news conference on family separation. https://t.co/nqDCQX61NB +06/20/2018,Social_workers,@RepBarbaraLee,"RT @RepGutierrez: At 9:00 am, I will join a group of House Dems speaking on the Floor about the children being separated from their familie…" +06/20/2018,Social_workers,@RepBarbaraLee,Wonderful to see Bono tonight. His humanitarian work & tireless efforts in the fight against HIV/AIDS have helped u… https://t.co/nGZqjKfbcj +06/19/2018,Social_workers,@RepBarbaraLee,"Leaving the UN Human Rights Council is a bad move. + +The United States should be advancing human rights. Instead, t… https://t.co/maa2HDXTJ1" +06/19/2018,Social_workers,@RepBarbaraLee,The Trump administration’s attacks on women’s health around the world are unprecedented. We can’t let their efforts… https://t.co/Wuek0hVty6 +06/19/2018,Social_workers,@RepBarbaraLee,"RT @NitaLowey: .@RepBarbaraLee, @RepTimRyan, @RepKClark & I have fought against many efforts to restrict women’s health care access. But we…" +06/19/2018,Social_workers,@RepBarbaraLee,"153 years ago today, the news of emancipation reached enslaved African Americans in Galveston, TX. #Juneteenth is a… https://t.co/QKetVw8Lxs" +06/19/2018,Social_workers,@RepBarbaraLee,"RT @ASH_hematology: It's #WorldSickleCellDay, learn the facts about the disease, and RT to spread the word https://t.co/XexCTcNw2I #Conquer…" +06/19/2018,Social_workers,@RepBarbaraLee,"RT @NMAAHC: “The historical legacy of #Juneteenth shows the value of deep hope and urgent organizing in uncertain times.” + +More: https://t…" +06/19/2018,Social_workers,@RepBarbaraLee,"Under Secretary Nielsen, the DHS has committed horrific human rights violations, subjected innocent children to the… https://t.co/54dYyZZ7X5" +06/18/2018,Social_workers,@RepBarbaraLee,"RT @SenKamalaHarris: It's time for Secretary Nielsen to resign. The government should be in the business of keeping families together, not…" +06/18/2018,Social_workers,@RepBarbaraLee,"We should have United Nations observers at the border investigating these horrific family separation policies. + +The… https://t.co/IFPyBYa2zh" +06/18/2018,Social_workers,@RepBarbaraLee,"As we mark #PEPFAR15, I shared the story of how Congress has worked together in the past to fight against HIV and A… https://t.co/SE2UbmZ6JN" +06/18/2018,Social_workers,@RepBarbaraLee,"RT @PEPFAR: #AmbBirx at #USGLCSummit: 15 years ago, “we were on the verge of losing an entire generation & having much of the next grow up…" +06/18/2018,Social_workers,@RepBarbaraLee,I’m at the #USGLCsummit discussing my work on #PEPFAR and our global fight to end HIV and AIDS. Tune in now to watc… https://t.co/voDkQJi1EL +06/18/2018,Social_workers,@RepBarbaraLee,The UN Human Rights Council is rightly condemning the Trump Administration for “government-sanctioned child abuse.”… https://t.co/qXhPePXQe3 +06/17/2018,Social_workers,@RepBarbaraLee,Check out these amazing works of art on the streets of Oakland! The #EastBay is lucky to be home to so many artists… https://t.co/aH5iXFVjYA +06/17/2018,Social_workers,@RepBarbaraLee,"It’s been 3 years since our brothers & sisters lost their pastor & loved ones at Mother Emanuel AME Church. + +Let’s… https://t.co/q6KX673BYY" +06/17/2018,Social_workers,@RepBarbaraLee,"RT @RepMaloney: We are at the ICE Detention Center in Elizabeth, NJ. where ICE is denying us entry to meet with fathers separated from thei…" +06/17/2018,Social_workers,@RepBarbaraLee,"Next weekend, I will be headed to South Texas with my colleagues to witness the treatment of children & families on… https://t.co/pLgJfqxuVh" +06/17/2018,Social_workers,@RepBarbaraLee,"#FathersDay is a day for families to come together. But right now, thousands of fathers being separated from their… https://t.co/HzRdHAPNtn" +06/17/2018,Social_workers,@RepBarbaraLee,"He was a kind, steadfast man, and a loving father to my sisters and me. + +Dad, I miss you. Happy #FathersDay." +06/17/2018,Social_workers,@RepBarbaraLee,"My father, the late Garvin Tutt, served as a Lieutenant Colonel in WWII & the Korean War, a time when many officers… https://t.co/z3JqdZk1qx" +06/17/2018,Social_workers,@RepBarbaraLee,Honored to celebrate St. Columba’s 120 years of faithful leadership in our East Bay community and to accept the St.… https://t.co/dfErSAfT4X +06/16/2018,Social_workers,@RepBarbaraLee,"In celebration of #CaribbeanHeritageMonth, my staff honored two extraordinary Caribbean leaders. Thank you for your… https://t.co/5Z88j9YC0B" +06/16/2018,Social_workers,@RepBarbaraLee,Honored by this amazing work from #Oakland fabric artist Alice Beasley. Her beautiful display of artistry that spea… https://t.co/a3Bdd8r6Mw +06/15/2018,Social_workers,@RepBarbaraLee,There is a difference between engaging in diplomacy and lavishing praise on dictators. https://t.co/8F5cdnFQam +06/15/2018,Social_workers,@RepBarbaraLee,Wishing a peaceful and joyous last evening of #Ramadan to all my Muslim brothers and sisters celebrating in the Eas… https://t.co/A83ORlKJDC +06/14/2018,Social_workers,@RepBarbaraLee,“This is the first formal effort from the U.S. Capitol to try & bring parity to those communities disproportionatel… https://t.co/2Hm4u4ZsEd +06/14/2018,Social_workers,@RepBarbaraLee,“It’s impossible to look at the Trump administration’s practice of migrant family separation and see it as anything… https://t.co/XcA2QbEous +06/14/2018,Social_workers,@RepBarbaraLee,"The scale of human suffering in Yemen is unimaginable. + +@SecPompeo --- pick up the phone. Help us stop the assaul… https://t.co/xzBCtRUqi0" +06/14/2018,Social_workers,@RepBarbaraLee,"As #WorldCup2018 kicks off, we’re celebrating in #Oakland at #OaklandTechnicalHighSchool. #youthsoccer #oakland… https://t.co/lQ7J5UIYIb" +06/14/2018,Social_workers,@RepBarbaraLee,RT @RepDianaDeGette: I support @RepBarbaraLee’s RESPECT resolution because it will help right a long-standing wrong. The war on drugs has d… +06/14/2018,Social_workers,@RepBarbaraLee,"I have a new bill! My RESPECT Resolution creates a framework for #CannabisEquity. + +Communities of color have borne… https://t.co/Y9prllg3gU" +06/14/2018,Social_workers,@RepBarbaraLee,"RT @MattLaslo: EXCLUSIVE: The Pot Industry Is Overwhelmingly White, and One Congresswoman Wants to Change That - mine for @RollingStone on…" +06/14/2018,Social_workers,@RepBarbaraLee,"RT @WHO: A decision to donate your blood can save a life, or even many. + +Your blood can be separated into its components — red cells, plate…" +06/14/2018,Social_workers,@RepBarbaraLee,Dorothy was my friend - we marched in the Selma pilgrimage together & she visited my East Bay community to discuss… https://t.co/a3TUtBs2ze +06/14/2018,Social_workers,@RepBarbaraLee,"I am saddened by the loss of our beloved Dorothy Cotton, who was a civil rights icon and a valued adviser to Dr. Ki… https://t.co/SfQ7DxV7CW" +06/14/2018,Social_workers,@RepBarbaraLee,"Climate change is real. And it is an existential threat to the inhabitants of our planet. + +The resounding silence… https://t.co/8nhOtLqCDA" +06/14/2018,Social_workers,@RepBarbaraLee,The vast majority of Americans support a pathway to citizenship for Dreamers. But instead of helping young people w… https://t.co/5xNabE4Yyw +06/13/2018,Social_workers,@RepBarbaraLee,"Earlier this year, I asked @BetsyDeVosED what she would do to address the civil rights crisis in our schools. She h… https://t.co/nJn4Wfvr8z" +06/13/2018,Social_workers,@RepBarbaraLee,Working moms and dads often cannot afford care for their children during the long summer months. I’m proud to suppo… https://t.co/l8QnS6X8RF +06/13/2018,Social_workers,@RepBarbaraLee,"My Republican colleagues on the House Appropriations committee blocked my amendment, which they helped pass & appla… https://t.co/ZGcEwEknXG" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepBarbaraLee supports @NitaLowey’s amendment. Explains that women buying insurance shouldn’t have their reproductive he… +06/13/2018,Social_workers,@RepBarbaraLee,"After 17 years, it’s past time to do our constitutional duty by debating and voting on the costs and consequences o… https://t.co/KDfnBQ2vP4" +06/13/2018,Social_workers,@RepBarbaraLee,I’m incredibly disappointed that Approps Republicans rejected my amendment to sunset the 2001 AUMF --- the same exa… https://t.co/MwFXZRa80I +06/13/2018,Social_workers,@RepBarbaraLee,"RT @AppropsDems: The Committee rejected, on a party-line 22-30 vote, @RepBarbaraLee’s amendment to sunset the 2001 AUMF. All @AppropsDems v…" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: @repmarkpocan @RepBarbaraLee .@RepCartwright supports @RepBarbaraLee's amendment. Describes the strong level of bipartisan… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@repmarkpocan urges support for @RepBarbaraLee’s amendment. Notes that it is Congress’ job to hold important debates and… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@rosadelauro supports @RepBarbaraLee’s amendment. Explains that the 2001 AUMF is overly broad and has become a blank chec… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepKClark supports @RepBarbaraLee’s amendment. Notes that the 2001 AUMF has now been in force under three Presidents wit… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@Call_Me_Dutch supports @RepBarbaraLee’s amendment. Cites the importance of providing our service members with clarity of… +06/13/2018,Social_workers,@RepBarbaraLee,"RT @BettyMcCollum04: I support @RepBarbaraLee’s amend to sunset the 2001 AUMF. 17 years later, Congress hasn't had a debate on how 3 admins…" +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepVisclosky supports @RepBarbaraLee’s amendment to sunset the 2001 AUMF eight months after enactment of the Defense app… +06/13/2018,Social_workers,@RepBarbaraLee,RT @AppropsDems: .@RepBarbaraLee offers an amendment to sunset the 2001 Authorization for the Use of Military Force and ensure Congress has… +06/13/2018,Social_workers,@RepBarbaraLee,"RT @repmarkpocan: The Saudi and Emirati assault on Yemen's major port, with US logistical aid, could threaten 250,000 lives and force milli…" +06/12/2018,Social_workers,@RepBarbaraLee,70% of Yemen’s emergency aid comes through this port. Countless innocents could die if the Saudi coalition launches… https://t.co/KrUjw99uME +06/12/2018,Social_workers,@RepBarbaraLee,"RT @NancyPelosi: .@Warriors & @SteveKerr, you have once again dazzled America with outstanding performance on the court & inspired leadersh…" +06/12/2018,Social_workers,@RepBarbaraLee,"“PEPFAR is one of the most-successful, effective and world-changing initiatives ever put forth by the United States… https://t.co/eespprHXNF" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @UniteThePoor: ""I'm from Flint, MI. 4 years later we're still suffering. We have the highest water bills in the country. We're poor not…" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @NAACP: The justices unanimously agreed. On June 12, 1967, proscriptions against interracial marriage were declared unconstitutional. #L…" +06/12/2018,Social_workers,@RepBarbaraLee,Such a beautiful day in #Oakland at the #WarriorsParade as we celebrate our #NBAChampions! Hats off to the… https://t.co/aeI8Yb9iBp +06/12/2018,Social_workers,@RepBarbaraLee,"On the House Floor to celebrate the 2018 NBA Champions – our very own Golden State @Warriors, pride of the #EastBay… https://t.co/7rt8EZ2Qez" +06/12/2018,Social_workers,@RepBarbaraLee,"Deporting 300,000 #TPS recipients would be unthinkably cruel. These families made the U.S. their home after fleeing… https://t.co/olOlzer7cG" +06/12/2018,Social_workers,@RepBarbaraLee,I know the #EastBay is ready to celebrate our back-to-back NBA Champions! #WarriorsGround https://t.co/qbOotdYthf +06/12/2018,Social_workers,@RepBarbaraLee,"Diplomacy takes time. We have an opportunity for peace -- but it will require more than just a photo-op. + +The hard… https://t.co/cRZvfn0R7O" +06/12/2018,Social_workers,@RepBarbaraLee,"RT @RepValDemings: Two years after #Pulse, I know that love will win. We will transform our sorrow into love and progress. We will grieve,…" +06/11/2018,Social_workers,@RepBarbaraLee,"Yemen is on the brink of famine. More than 75% of the population is reliant on food aid to survive. + +An attack on… https://t.co/fIm5ZbmT7E" +06/11/2018,Social_workers,@RepBarbaraLee,Today’s #SCOTUS decision validating voter purges disenfranchises voters and undermines the foundation of our democr… https://t.co/FQ3jkvw0zI +06/11/2018,Social_workers,@RepBarbaraLee,"As a human being – and a public servant – I am disgusted by the Trump Administration’s callousness. + +These women… https://t.co/3YTiyWtkfL" +06/11/2018,Social_workers,@RepBarbaraLee,"**#DACA RECIPIENTS** + +It’s not too late to renew your status – apply TODAY with @USCIS ➡️https://t.co/AWMw3dY3Dy https://t.co/UxjQkKxvi3" +06/11/2018,Social_workers,@RepBarbaraLee,Congratulations to Berkeley native @ArielStachel on a well-deserved Tony win! Your speech gave me so much hope. You… https://t.co/faeYV2DtOq +06/11/2018,Social_workers,@RepBarbaraLee,"The will of the American people is clear – we want a free, fair, and open internet. #NetNeutrality ends today – but… https://t.co/BxKAovluL1" +06/10/2018,Social_workers,@RepBarbaraLee,How can we hope to make peace with our enemies when we can’t even work with our friends? https://t.co/fXVNT0n6vi +06/09/2018,Social_workers,@RepBarbaraLee,"If you are in pain, know that help is available. Call 1-800-273-TALK. And if you know someone who is struggling, pl… https://t.co/CnQ8kK8QSd" +06/09/2018,Social_workers,@RepBarbaraLee,"At his core, Anthony was a storyteller, an educator, and a free spirit who brought the world into our homes. My dee… https://t.co/OBNefuKeKn" +06/09/2018,Social_workers,@RepBarbaraLee,"I’m heartbroken over the passing of Anthony Bourdain. Through his love of food, Anthony showed us all what it means… https://t.co/UXBWvQztuN" +06/09/2018,Social_workers,@RepBarbaraLee,Congrats on another extraordinary season @warriors! You make us proud! https://t.co/8xE6JLvj1J +06/09/2018,Social_workers,@RepBarbaraLee,I’m showing my #DubNation pride today! Fingers crossed for a sweep! 🤞🏾🤞🏾#NBAFinals https://t.co/O7eiEd2orc +06/08/2018,Social_workers,@RepBarbaraLee,"Republicans are going to court to try to make healthcare worse and more expensive for American families. + +American… https://t.co/hwXDwqsvxJ" +06/08/2018,Social_workers,@RepBarbaraLee,RT @NatGeo: Happy #WorldOceansDay! https://t.co/ZIlDdE8Un9 +06/08/2018,Social_workers,@RepBarbaraLee,There is no such thing as a small nuclear weapon. I’m incredibly disappointed that Congress rejected my amendment s… https://t.co/Td3vd3IOeS +06/08/2018,Social_workers,@RepBarbaraLee,Watch the debate on my amendment to stop Donald Trump from arming US submarines with a low yield nuclear weapons. C… https://t.co/nRv5pOMPre +06/07/2018,Social_workers,@RepBarbaraLee,Organized employees can make a powerful impact on companies and the world. Kudos to @Google staffers for demanding… https://t.co/EV2wuSuYAJ +06/07/2018,Social_workers,@RepBarbaraLee,"I can confirm that Mazie is extremely fierce. I’m proud to be her colleague, but even more honored to call her a fr… https://t.co/D5Lksnz9gA" +06/07/2018,Social_workers,@RepBarbaraLee,"55 years after the #EqualPayAct, women -- especially women of color -- still endure sexism, harassment and unequal… https://t.co/PpsyaQ4iK9" +06/07/2018,Social_workers,@RepBarbaraLee,"President Trump has violated the emoluments clause with impunity. That stops today. + +I’m suing Donald Trump in Blu… https://t.co/i1Vq9os8t9" +06/07/2018,Social_workers,@RepBarbaraLee,"RT @gracenapolitano: 53 years ago, #GriswoldvCT guaranteed women the freedom to make their own choices about their career, their family, an…" +06/07/2018,Social_workers,@RepBarbaraLee,#GriswoldvCT legalized birth control and opened the door for women. We can’t and won’t let extremists in the Trump-… https://t.co/G1qSW4BrGG +06/07/2018,Social_workers,@RepBarbaraLee,"RT @HouseDemWomen: Estelle Griswold helped pave the way more than 50 years ago, fighting against unconstitutional bans on #birthcontrol and…" +06/07/2018,Social_workers,@RepBarbaraLee,"RT @ProChoiceCaucus: On the 53rd anniversary of #GriswoldvCT, access to #birthcontrol is under attack. We will continue to fight for compre…" +06/07/2018,Social_workers,@RepBarbaraLee,It’s time to finally end the failed #WarOnDrugs. Proud to stand with @SenWarren & @SenCoryGardner in support of the… https://t.co/f2sUzIhgNP +06/07/2018,Social_workers,@RepBarbaraLee,RT @GKButterfield: I applaud @Google’s employees for pushing for accountability from Alphabet’s leadership to make a stronger commitment to… +06/07/2018,Social_workers,@RepBarbaraLee,It’s game time #DubNation! Let’s cheer our warriors to victory - lock in! #NBAFinals https://t.co/FP9dQjngCz +06/06/2018,Social_workers,@RepBarbaraLee,Congrats to @CALWRowing who recently took first place in the @NCAA Division 1 rowing finals! So impressed by these… https://t.co/q8VkM9kgEH +06/06/2018,Social_workers,@RepBarbaraLee,The ugly xenophobia and nativism espoused by this White House does not represent America. This… https://t.co/8BUDcktoRY +06/06/2018,Social_workers,@RepBarbaraLee,"SERIOUSLY? + +You passed a trillion dollar tax scam to benefit rich donors and asked working families to foot the bi… https://t.co/fcNSi7MROa" +06/06/2018,Social_workers,@RepBarbaraLee,RT @RepJoeKennedy: Deeply grateful for all the memories of my grandfather being shared today. Thank you. https://t.co/NPjMnKwnqu +06/06/2018,Social_workers,@RepBarbaraLee,"50 years ago today, we lost Robert F. Kennedy but his vision for a better America lives on. We carry his spirit in… https://t.co/WpVCMAYQCF" +06/05/2018,Social_workers,@RepBarbaraLee,We should never have come to this. These family separation policies are barbaric and inhumane. Shame on the Trump A… https://t.co/ctaXmeqojx +06/05/2018,Social_workers,@RepBarbaraLee,"This #WorldEnvironmentDay, I’m so proud of organizations in the East Bay like the @SierraClub and @TheOceanCleanup.… https://t.co/KPrHgOTMfL" +06/05/2018,Social_workers,@RepBarbaraLee,"RT @GlobalGoalsUN: We all need to do our part to #BeatPlasticPollution to protect our forests, ocean & the places where we live. 🌲🌊🏙️ + +Join…" +06/04/2018,Social_workers,@RepBarbaraLee,RT @RepJerryNadler: Every woman—regardless of immigration status—has the right to make her own decisions about her body + her life. Todays… +06/04/2018,Social_workers,@RepBarbaraLee,RT @ProChoiceCaucus: A setback for #reprorights: #SCOTUS passes on opportunity to rule on whether the Trump administration can prevent undo… +06/04/2018,Social_workers,@RepBarbaraLee,SCOTUS today missed an opportunity to reaffirm fundamental civil right protections for #LGBT people. The only way… https://t.co/puhPbss6rt +06/04/2018,Social_workers,@RepBarbaraLee,What an honor it is to serve as the Wright Institute’s commencement speaker as it celebrates 50 years of extraordin… https://t.co/NKZRGlKQKS +06/04/2018,Social_workers,@RepBarbaraLee,Game 2. #WarriorsGround. Let’s go Warriors! https://t.co/xWiuqvEmWC +06/03/2018,Social_workers,@RepBarbaraLee,Truly honored to receive the inaugural Outstanding Community Leader of the Year Award from Alameda Health! As I con… https://t.co/ngyln752E4 +06/03/2018,Social_workers,@RepBarbaraLee,"#DubNation is ready for a W tonight! At the studio ahead of my interview with @AlexWitt, wearing my @warriors color… https://t.co/Ual7y7xL98" +06/02/2018,Social_workers,@RepBarbaraLee,The San Leandro Boys & Girls Club provides critical services to more than 1300 young people. Huge thanks to the… https://t.co/9jbPIhAsDO +06/02/2018,Social_workers,@RepBarbaraLee,The San Leandro Cherry Festival is a true gem of our East Bay community. Such a great experience every time I atten… https://t.co/mqw7Kajspv +06/02/2018,Social_workers,@RepBarbaraLee,"ICYMI: This week, @eoydc renamed their computer lab in honor of Rev. Jesse Jackson! Such extraordinary appreciation… https://t.co/bDoZ9KEZ5f" +06/02/2018,Social_workers,@RepBarbaraLee,No child should have to grow up in fear of gun violence in their school or neighborhood. I #WearOrange because I ca… https://t.co/9lyhb7KLGt +06/01/2018,Social_workers,@RepBarbaraLee,"“Donald Trump is deliberately forcing millions of Americans into financial ruin, cruelly depriving them of food and… https://t.co/eQP0UHJnna" +06/01/2018,Social_workers,@RepBarbaraLee,"Today marks the beginning of #PrideMonth. We have a lot of progress to be proud of, but the fight for equality is f… https://t.co/G9164FIUHb" +06/01/2018,Social_workers,@RepBarbaraLee,"RT @RepVeasey: Today on the Pathways #OutofPoverty Tour, I heard directly from those facing economic burdens and met w/ local orgs that pro…" +06/01/2018,Social_workers,@RepBarbaraLee,"These heinous, anti-immigrant policies are a stain on our nation. #FamiliesBelongTogether https://t.co/C2ABDBL6cE" +06/01/2018,Social_workers,@RepBarbaraLee,"Thank you, 8th grade Alameda Community Learning Center students, for your letters on environmental policy. From pro… https://t.co/Pq5S1fSEAT" +06/01/2018,Social_workers,@RepBarbaraLee,"In the year since Trump sided with polluters & withdrew from the #ParisAgreement, California has not backed down. W… https://t.co/LbRzqtbYlJ" +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: .@PromiseHouse provides emergency shelter to many young people experiencing homelessness, including LGBT youth and new mothe…" +06/01/2018,Social_workers,@RepBarbaraLee,RT @WhipHoyer: Pleased to tour @JubileePark as part of the Pathways #OutOfPoverty #ListeningTour. This community center provides local resi… +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Read @TheHill’s story today about the first stop of the Pathways #OutOfPoverty #ListeningTour with @RepBarbaraLee, @RepEBJ,…" +06/01/2018,Social_workers,@RepBarbaraLee,.@JubileePark in Dallas is doing incredible work to help build pathways #OutOfPoverty for families. Their comprehen… https://t.co/R4tPiuQK6x +06/01/2018,Social_workers,@RepBarbaraLee,RT @RepEBJ: Understanding the challenges poverty creates and how to overcome them. The Pathways #OutOfPoverty Listening Tour stops in Dalla… +06/01/2018,Social_workers,@RepBarbaraLee,At @BontonFarms in Dallas for the first stop in our Poverty Task Force #ListeningTour. In order for families to cli… https://t.co/orOVaMO2d5 +06/01/2018,Social_workers,@RepBarbaraLee,"RT @WhipHoyer: Today, I am kicking off the Pathways #OutOfPoverty #ListeningTour in #Dallas with @RepBarbaraLee, @RepEBJ, & @RepVeasey to h…" +05/31/2018,Social_workers,@RepBarbaraLee,We’re on #WarriorsGround tonight and I’m wishing them the best of luck in Game 1 of the NBA Finals. I’m anticipatin… https://t.co/YSoWG3iRb7 +05/31/2018,Social_workers,@RepBarbaraLee,RT @warriors: #NBAFinals begin TODAY 😤 #DubNation https://t.co/wrf1R8ysZN +05/30/2018,Social_workers,@RepBarbaraLee,"If we fail to act on the domestic #HIV epidemic, one in two African American gay men will contract HIV in their lif… https://t.co/sALBXxNQxO" +05/30/2018,Social_workers,@RepBarbaraLee,"Food is running short. Political instability and violence are worsening. + +#SouthSudan is on the brink of catastroph… https://t.co/djr1J3mDAC" +05/30/2018,Social_workers,@RepBarbaraLee,Proud of these extraordinary students from Lincoln Middle School in Alameda for their courage in speaking out again… https://t.co/e17CZKTLUn +05/30/2018,Social_workers,@RepBarbaraLee,"RT @oakzoo: You otter spend 12 seconds watching these guys frolic in the water. +#WorldOtterDay https://t.co/9uPFfZEtsy" +05/30/2018,Social_workers,@RepBarbaraLee,"More than 10,000 immigrant children have been separated from their parents by the Trump Administration. These… https://t.co/WusfGYJeCR" +06/02/2018,Social_workers,@MikeLICSW,"RT @MikeLICSW: Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9 https://t.co/nrugUAfwKk" +05/31/2018,Social_workers,@MikeLICSW,"Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9" +05/31/2018,Social_workers,@MikeLICSW,"Taking Leaps: Fortnite, HIPAA & Psychotherapy https://t.co/1a1mHh1VR9 https://t.co/nrugUAfwKk" +05/18/2018,Social_workers,@MikeLICSW,@kate_audette is rocking out the @NASWMA conference on #telemedicine https://t.co/RVqrLCkAK7 +05/09/2018,Social_workers,@MikeLICSW,"Register Now, and I'll see you there! National Association of Social Workers https://t.co/qC3Rf0i7sY" +05/05/2018,Social_workers,@MikeLICSW,RT @Rachel_HRC: The latest The Business of Relationships! https://t.co/kE2GS9VzRa Thanks to @MikeLICSW @DrKipMatthews #mentalhealth #empathy +05/05/2018,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/PPRdxGvRPx Thanks to @MikeLICSW #health #hipaa +05/05/2018,Social_workers,@MikeLICSW,RT @Interactions247: There's No Such Thing As A Safe Place https://t.co/VmfyotoS5Q via @mikelicsw +04/26/2018,Social_workers,@MikeLICSW,"RT @jratey: ""#Exercise lowers #depression risk, no matter your age or gender"" #PhysEd #KeepMoving https://t.co/HNPPZ2RyYO https://t.co/WGRv…" +04/26/2018,Social_workers,@MikeLICSW,Please join me & my colleague @kate_audette from @BostonChildrens 5/18 for a workshop on the future of online thera… https://t.co/9cCK5PokFw +04/25/2018,Social_workers,@MikeLICSW,RT @Rachel_HRC: The latest The Business of Relationships! https://t.co/0n6Ua0opnQ Thanks to @MikeLICSW #mentalhealth #mhchat +04/25/2018,Social_workers,@MikeLICSW,Food for thought: Social Media Leaves #HIPAA Irrelevent https://t.co/G5uF3bWOAA +04/21/2018,Social_workers,@MikeLICSW,The rise of the ambient video game https://t.co/uIzYJAy1NU +04/20/2018,Social_workers,@MikeLICSW,Facebook Has a New Data Policy—Here’s the Short Version - The Wall Street Journal https://t.co/I1tioe4hQW +04/14/2018,Social_workers,@MikeLICSW,"On this #BostonMarathon wknd, as someone whose neighborhood was bombed, my heart goes out to people killed or wound… https://t.co/U2lzFEY9GJ" +04/10/2018,Social_workers,@MikeLICSW,Thanks! https://t.co/VIL3J5OwsE +04/10/2018,Social_workers,@MikeLICSW,"RT @jratey: ""Meta-analysis finds students who participate in physical activity do better in maths, reading"" #PhysEd #SchoolMoves https://t.…" +04/10/2018,Social_workers,@MikeLICSW,The Crisis Behind Crises https://t.co/cyzXXpxvot +04/07/2018,Social_workers,@MikeLICSW,RT @ShelbySkrhak: The Dalai Lama turned to American psychologist @PaulEkman to create this emotions map to develop a calm mind. https://t.c… +03/22/2018,Social_workers,@MikeLICSW,RT @AllGradSchools: Congratulations to @Podsocs @AmyMorinLCSW @njsmyth @MikeLICSW and all of the other #influencers #podcasts and #blogs wh… +03/19/2018,Social_workers,@MikeLICSW,"Gee, TY @AllGradSchools for making my blog #5 for 2018! Grats also to @laurelhitchcock @socworkpodcast @njsmyth &… https://t.co/qYSiWZvHwv" +02/26/2018,Social_workers,@MikeLICSW,Should #psychotherapists start accepting payment by #bitcoin #ethereum & other #blockchain? Discuss #mentalhealth… https://t.co/iIQ4cDPBhD +02/26/2018,Social_workers,@MikeLICSW,@KBTimberlake Thanks for your shout out! :-) #socworkuab +02/23/2018,Social_workers,@MikeLICSW,Exercise & Games are not mutually exclusive! Here's an example: Commit to playing @hqtrivia walking or light jog (i… https://t.co/vydY0Rjgik +02/22/2018,Social_workers,@MikeLICSW,Join me on https://t.co/GaFuQB4NiI https://t.co/oMR7lCUjWr via @dock_io +02/21/2018,Social_workers,@MikeLICSW,New Presentation Offered in 2018: Boundaries & Health in the Digital Age - https://t.co/TgE5acBCWH +02/20/2018,Social_workers,@MikeLICSW,@ruthsofhia Bravo! You might want to check out my work as well as our @Grokcraft project +02/16/2018,Social_workers,@MikeLICSW,https://t.co/q3KYYj9IqR +01/29/2018,Social_workers,@MikeLICSW,"RT @maglearn: Although the term geek has begun to be reclaimed by many, it's important to remember that word comes from 'fool' or 'freak' ~…" +01/28/2018,Social_workers,@MikeLICSW,RT @gretchen_miller: Boundaries and Health in the Digital Age https://t.co/HhSxvz9iOv via @mikelicsw #digitalsocialresponsibility +01/26/2018,Social_workers,@MikeLICSW,RT @maglearn: The Gamification of Psychotherapy https://t.co/xRvGVwZqPk via @mikelicsw +01/26/2018,Social_workers,@MikeLICSW,"I love how coloring books for #mindfulness is ok with #psychology types, but playing #videogames for mindfulness is… https://t.co/hHGJdThtiM" +01/22/2018,Social_workers,@MikeLICSW,What If Children Should Be Spending More Time With Screens? - The Wall Street Journal https://t.co/rlkflhCtxq +01/19/2018,Social_workers,@MikeLICSW,Have you heard ‘Better Living Through Minecraft (Audio Version)’ by Mike Langlois on #SoundCloud? #np https://t.co/1saMYVSxHE +01/11/2018,Social_workers,@MikeLICSW,I’m playing a game called @hqtrivia! You should play too. Use my code ‘langloimsw’ to sign up… https://t.co/FvneJ27k3x +01/11/2018,Social_workers,@MikeLICSW,Boundaries and Health in the Digital Age https://t.co/qx7brNeee6 #socialwork #digitalliteracy #hcsm #psychology https://t.co/G6Pm0o310n +01/11/2018,Social_workers,@MikeLICSW,Boundaries and Health in the Digital Age https://t.co/kvl3bd62Xo https://t.co/KtJtLCtgL9 +01/08/2018,Social_workers,@MikeLICSW,"RT @MikeLICSW: What Disruption Is, and Isn’t https://t.co/gBv2NY6UyN https://t.co/K0u3KABPkw" +01/02/2018,Social_workers,@MikeLICSW,"RT @socworkpodcast: Love this idea: ""I talk about how technology always amplifies things... There is a big difference between disrupting ex…" +01/02/2018,Social_workers,@MikeLICSW,"What Disruption Is, and Isn’t https://t.co/gBv2NY6UyN https://t.co/K0u3KABPkw" +01/02/2018,Social_workers,@MikeLICSW,A History of Panic Over Entertainment Technology https://t.co/ewnVbY5epH via @behscientist +12/29/2017,Social_workers,@MikeLICSW,Finally! A Mindfulness Approach to Video Games & Game Therapy https://t.co/4TSzyFPyTk #videogames #mentalhealth +12/13/2017,Social_workers,@MikeLICSW,https://t.co/32EvNbDEGs +12/08/2017,Social_workers,@MikeLICSW,2 Quick Asks - https://t.co/Tu8eBFupnL +11/15/2017,Social_workers,@MikeLICSW,RT @classcraftgame: Classroom management is FUN with Classcraft!! https://t.co/PzRQlkEB7o +11/15/2017,Social_workers,@MikeLICSW,"Mark your calendars! This is an excellent chance to get a free sample of what a talk from me can be like, so feel f… https://t.co/wLq6OvqfE9" +11/10/2017,Social_workers,@MikeLICSW,@CambCPD @CambridgePolice another hazard for a person w/ #Disability https://t.co/GDru9XfwiJ +11/09/2017,Social_workers,@MikeLICSW,(Unofficial) Mindful Minecraft Meditation | Finney Can Help https://t.co/k2ZXW7xIm7 via @sharethis +11/09/2017,Social_workers,@MikeLICSW,"RT @espeakers: Mike Langlois is today’s featured speaker! https://t.co/JzTBv3QSAd @MikeLICSW + +Find more experts at https://t.co/GUJXaXCNqc" +11/09/2017,Social_workers,@MikeLICSW,Thanks! +11/08/2017,Social_workers,@MikeLICSW,"Dear colleague, please pass this info along to anyone you know looking for presentations or keynotes!… https://t.co/QXnFznQ4jC" +10/25/2017,Social_workers,@MikeLICSW,"Attention #cyclists: To you this may look like bad parking, but to folks w/ a #Disability it’s blocking access.… https://t.co/rTdPPvhUmH" +10/24/2017,Social_workers,@MikeLICSW,Now booking for Nov - Spring 2018 talks on #mentalhealth #tech #SEL #telemedicine & rethinking #gaming addiction. https://t.co/g2UEYtibPT +10/14/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/DV2cJwFaIn +09/21/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/R9dICzp0FF +09/18/2017,Social_workers,@MikeLICSW,Teamwork SXSW Minecraft Healthcare = Sum Greater Than Parts https://t.co/H6tq8LYCou +09/18/2017,Social_workers,@MikeLICSW,"HR folks & friends: Your org may be a tough crowd for workshops, but who can refuse applying Minecraft to work?… https://t.co/lHMy3KxHkI" +09/11/2017,Social_workers,@MikeLICSW,"Ohio State revokes Arizona professor's Ph.D., questioning her findings on video games https://t.co/O1d2ryEzse" +09/10/2017,Social_workers,@MikeLICSW,RT @CalmFlyer: Enjoying working with @psious VR. Has really made a difference in treatment of phobias! https://t.co/TxUdpuI9sU +08/31/2017,Social_workers,@MikeLICSW,3 Quick Asks - https://t.co/ZkSXgvYra3 +08/21/2017,Social_workers,@MikeLICSW,SXSW Talk on #minecraft & #griefing needs your votes & shares! https://t.co/WA4f79IY4o +08/19/2017,Social_workers,@MikeLICSW,"TY @bostonpolice & @marty_walsh for keeping us safe & being professional. @realDonaldTrump no anti-police agitators here, just patriots!" +08/19/2017,Social_workers,@MikeLICSW,https://t.co/yrevTrMxvL #BostonCommon #Bostonresists +08/19/2017,Social_workers,@MikeLICSW,"I occasionally get grief from colleagues about getting ""political"" on Twitter. Oh well. https://t.co/DoX3fscxqV" +08/18/2017,Social_workers,@MikeLICSW,Google Maps: Create Wheelchair Friendly Routes - Sign the Petition! https://t.co/Y8oeKuMXZk via @Change +08/16/2017,Social_workers,@MikeLICSW,https://t.co/j5WAUBDUBn +08/14/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: Pls RT & vote for my #SXSW talk: Good Griefing?!: Pixels, Poverty, & Attachment. It's about #griefing in #minecraft https:/…" +08/13/2017,Social_workers,@MikeLICSW,RT @SWcareer: Can #Minecraft Camp Help Open Up Tech World To Low-Income Kids? https://t.co/a9X6ilkZeC @MikeLICSW @njsmyth #swtech #childwel… +08/13/2017,Social_workers,@MikeLICSW,"""I condemn nazism & the KKK."" @realDonaldTrump , See? It's not that complicated a tweet. You can even include #Charolettesville & have room." +08/08/2017,Social_workers,@MikeLICSW,"Pls RT & vote for my #SXSW talk: Good Griefing?!: Pixels, Poverty, & Attachment. It's about #griefing in #minecraft… https://t.co/6SjsBgdKVP" +07/27/2017,Social_workers,@MikeLICSW,City of Cambridge Participatory Budgeting pls comment & spread the word @AbleGamers https://t.co/kKeTGlG01E +07/27/2017,Social_workers,@MikeLICSW,City of Cambridge Participatory Budgeting pls comment and share! @CambCPD https://t.co/kKeTGlG01E +07/26/2017,Social_workers,@MikeLICSW,https://t.co/imJ9FIAsUj +07/26/2017,Social_workers,@MikeLICSW,https://t.co/6NWQ3wQVyF +07/19/2017,Social_workers,@MikeLICSW,"Check out Free Family-Friendly Film Wednesday Night! on Wed, Jul 19 https://t.co/TDD9NUY9NU via @Nextdoor" +07/19/2017,Social_workers,@MikeLICSW,"Join us TONIGHT at @cambridgepl for a free screening of Finding Dory, followed by lively discussion with @MikeLICSW https://t.co/3xNC9umgjG" +07/19/2017,Social_workers,@MikeLICSW,"RT @CambCPD: Join us TONIGHT at @cambridgepl for a free screening of Finding Dory, followed by lively discussion with @MikeLICSW https://t.…" +07/18/2017,Social_workers,@MikeLICSW,"Hey local folks, please spread the word on this free family-friendly event tomorrow evening! https://t.co/XTT1tZ25Q0" +07/06/2017,Social_workers,@MikeLICSW,"Join me & @ubswce at @UBuffalo 7/24 to sift through the moral panic about Self-Harm, Social Media, & Video Games, https://t.co/TtT60hlwxD" +06/28/2017,Social_workers,@MikeLICSW,"RT @CambCPD: Retweeted Mike Langlois, LICSW (@MikeLICSW): + +Join @CambCPD & me for Finding Dory, starring @TheEllenShow Free!... https://t.c…" +06/28/2017,Social_workers,@MikeLICSW,"Join @CambCPD & me for Finding Dory, starring @TheEllenShow Free! Wed 7/19 6 pm @cambridgepl discussion on #cognitive #Disability to follow" +06/28/2017,Social_workers,@MikeLICSW,"RT @cambridgepl: This Thurs, June 15, 6:30 PM + Main Library, Lecture Hall + Join us for a conversation and Q&A with Fenway Health https://…" +06/28/2017,Social_workers,@MikeLICSW,RT @CambCPD: #Ghana govt has intensified public education to eliminate neg perception that disability is a curse https://t.co/vL5y7WdXEg vi… +06/23/2017,Social_workers,@MikeLICSW,"@TheMattSchwartz @karenzgoda So I see, lol" +06/18/2017,Social_workers,@MikeLICSW,This is my pal Duke. He is having surgery tomorrow & needs your help. Consider a small trip to #Gofundme to help!… https://t.co/XbNVWgwkVV +06/15/2017,Social_workers,@MikeLICSW,RT @SusanGiurleo: How to Raise a Happy Child https://t.co/2ZV0NuDfrK +06/15/2017,Social_workers,@MikeLICSW,@TheEllenShow Psyched to screen Finding Dory 7/19 as a family event for our @CambCPD film series on #Disability awareness.TY for your work! +06/04/2017,Social_workers,@MikeLICSW,RT @njsmyth: Why you should care about bots if you care about social justice / Ford Foundation https://t.co/0x2Dh9OTkw +06/02/2017,Social_workers,@MikeLICSW,RT @caseforhere: @AILADCChapter @AILANational @Ailanewengland 49 clinicians from 17 states & D.C. stand ready to donate our work! https://t… +06/02/2017,Social_workers,@MikeLICSW,RT @caseforhere: @AILANewYork @AILAOhioChapter @AILAPhila 49 clinicians from 17 states & D.C. stand ready to donate our work! https://t.co/… +06/01/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/Rfpk3VY91l +05/27/2017,Social_workers,@MikeLICSW,Warning: Screen Time Rules Can Backfire https://t.co/ZlvpmFOhvn # via @HuffPostBlog +05/19/2017,Social_workers,@MikeLICSW,@answers4thefam @Acardoza @drmattp TY so much for inviting me to join you on your show this coming Nov. Looking forward to it! ^_^ +05/17/2017,Social_workers,@MikeLICSW,"RT @caseforhere: Once again, we've more requests than volunteers. Want to make a difference in the lives of #immigrant families? https://t.…" +05/16/2017,Social_workers,@MikeLICSW,RT @SWcareer: 🍏 Best in #MentalHealth (4/10- 5/7) https://t.co/1sel3oooI9 H/T @StuckonSW @MikeLICSW @swhelpercom @socialworkpad +05/15/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/w70nu6Gjgf +05/11/2017,Social_workers,@MikeLICSW,"For the first time, eligible individuals and their families will be allowed to establish ABLE savings accounts https://t.co/wgPhvUq4PH" +05/09/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @amazon Giving away Reset this wknd was so much fun, I'm doing it again Tues! Or always on #KindleUnlimited https://t.co/riR…" +05/08/2017,Social_workers,@MikeLICSW,"@amazon Giving away Reset this wknd was so much fun, I'm doing it again Tues! Or always on #KindleUnlimited https://t.co/riRKTMqgLj" +05/06/2017,Social_workers,@MikeLICSW,@NSASpeaker This weekend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/riRKTMqgLj +05/06/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.c… +05/06/2017,Social_workers,@MikeLICSW,Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/FZ6G8XMDZL +05/06/2017,Social_workers,@MikeLICSW,"@LeemansBas Thank you, Bas! ^_^" +05/06/2017,Social_workers,@MikeLICSW,RT @LeemansBas: @MikeLICSW Great book! A 101 on how to become a Gamer therapist +05/05/2017,Social_workers,@MikeLICSW,RT @NSASpeaker: Welcome to the community @MikeLICSW! Hope to meet you in person at #Influence17 https://t.co/z7jYwP6E75 +05/05/2017,Social_workers,@MikeLICSW,RT @ringmd: @MikeLICSW we've quoted you on the importance of writing content & just sent you an email :) https://t.co/gyYzfJ4SlR #contentfo… +05/05/2017,Social_workers,@MikeLICSW,Guess what? This wkend you can get my book for free! Learn new ways to look @ #videogames #education #psychology https://t.co/riRKTMqgLj +05/05/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/JHFszVT786 +05/02/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/rP93YjcbIN Thanks to @armstronglpc @MikeLICSW #mentalhealth #mhsm +05/01/2017,Social_workers,@MikeLICSW,So glad to join the @NSASpeaker family! Please feel free to share & RT my #speaker info. https://t.co/rCjZz0iK4M +04/27/2017,Social_workers,@MikeLICSW,Mike Langlois Talks on Technology & Wellbeing: https://t.co/z3JjfZoJ7q via @YouTube +04/27/2017,Social_workers,@MikeLICSW,Arounja - Search Engine 4 Resources 2 Support Wellness/Recovery. Pls vote 4 this awesome project from @DKMonroeonIT https://t.co/PkhFrO5KvB +04/21/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes?  - https://t.co/EAn2PrVhqw +04/12/2017,Social_workers,@MikeLICSW,Twenty-Two Apps for the 21st Century Therapist - Social Work Helper https://t.co/I8NG61ppGb +04/08/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? (Press Kit) - https://t.co/vXFnJ93Ezy +03/31/2017,Social_workers,@MikeLICSW,RT @DKMonroeonIT: Come work with me. It'll be fun! We have #data and cookies. https://t.co/mjN8cUTg3w +03/31/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/Ck2Ah0djxP Thanks to @MikeLICSW @ILCTcoaching @Shepellfgi #mentalh… +03/30/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? (Press Kit) - https://t.co/KSmgC8ect0 +03/25/2017,Social_workers,@MikeLICSW,TY @Zachanner for a great video on #accessibility #CerebralPalsy & #bagels ! https://t.co/xWNqYBTjsV @CambCPD @brainbark +03/24/2017,Social_workers,@MikeLICSW,RT @TILTmag: The latest The Innovative Contributions Daily! https://t.co/2IL1d7rzMD Thanks to @MikeLICSW #mentalhealth #mhsm +03/23/2017,Social_workers,@MikeLICSW,Watch Live: Will Universal Basic Income Change Our Lives for Good or Bad? https://t.co/WksdSsuc6k +03/22/2017,Social_workers,@MikeLICSW,Support @caseforhere @grokcraft & Reset (book @ https://t.co/riRKTMqgLj) #immigration #mentalhealth #SEL #videogames Pls RT & share! ^-^ +03/22/2017,Social_workers,@MikeLICSW,@caseforhere has an immediate need for a 3/30/17 hearing in MA. If you are a licensed #mentalhealth prof in MA please contact us asap! +03/21/2017,Social_workers,@MikeLICSW,RT @caseforhere: Care about #mentalhealth ? Think #ImmigrantsMakeAmericaGreat ? Spread the word about our free services! Pls Follow & RT +03/20/2017,Social_workers,@MikeLICSW,Case For Here Project is looking for expert witnesses & case managers. Want to help immigrants? Learn & register at https://t.co/iYFFV5HwOv +03/17/2017,Social_workers,@MikeLICSW,RT @caseforhere: Not ready to be a expert witness? Turns out we need volunteer case managers too! Register to help https://t.co/1Ayl57VNDL… +03/16/2017,Social_workers,@MikeLICSW,RT @caseforhere: Why this Mexican-American designed a video game that simulates border crossings https://t.co/tbPkXKxej6 via @LatinoVoices +03/16/2017,Social_workers,@MikeLICSW,Case For Here Directory Questionnaire https://t.co/uwil8Bo4BB +03/15/2017,Social_workers,@MikeLICSW,Non-Binary Gender Identities- a fact sheet. https://t.co/ep9YDEgxoy via @sharethis +03/14/2017,Social_workers,@MikeLICSW,"RT @njsmyth: Teachers must ditch 'neuromyth' of learning styles, say scientists + +https://t.co/vzQojxfwID" +03/13/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? - https://t.co/AgKXRE7Bq3 +03/10/2017,Social_workers,@MikeLICSW,TY @CambCPD for promoting #disability awareness in uncertain times. https://t.co/qjUl0dOkTs Pls share the #cambridge example. +03/09/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes on #psychology #education #SEL #socialwork & #tech? - https://t.co/BYGlvWfcVZ +03/09/2017,Social_workers,@MikeLICSW,RT @caseforhere: Help protect #Immigrant rights. Download our flyer & pass it on to #lawyers & #therapists you know :-) https://t.co/NQFnDl… +03/08/2017,Social_workers,@MikeLICSW,Looking for Workshops or Keynotes? - https://t.co/5WFBNlGfdX +03/08/2017,Social_workers,@MikeLICSW,Pls RT: #Therapists can testify to the #psychological damage of #deportation @caseforhere is gearing up to help! https://t.co/iYFFV5HwOv +03/06/2017,Social_workers,@MikeLICSW,#Therapist in #Canada ? You may find this Summer Institute on Harnessing the Power of Meaning of interest! https://t.co/y1vfXmhVSH +03/05/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: This is so needed.. Pls share to your networks. https://t.co/gLRFHsScI0 +03/05/2017,Social_workers,@MikeLICSW,I just published “Thanks for an interesting piece.” https://t.co/uQ2ilanHqX +02/28/2017,Social_workers,@MikeLICSW,RT @RepMikeCapuano: No – someone please tell me Trump didn’t really say this to the nation’s Governors … “Nobody knew that healthcare could… +02/27/2017,Social_workers,@MikeLICSW,"Book me 4 2017! #tech, #mentalhealth, #socialmedia & #selfharm, #videogames as #meditation & more. Video/Press: https://t.co/g2UEYt0AYl" +02/16/2017,Social_workers,@MikeLICSW,RT @UN_Women: .@JuliaGillardGPE & @criseboro on how #Canada can prioritize education to achieve #genderequality: https://t.co/syZuK1EGLz v… +02/16/2017,Social_workers,@MikeLICSW,This is so needed.. Pls share to your networks. https://t.co/gLRFHsScI0 +02/10/2017,Social_workers,@MikeLICSW,"@squishim @nytimes not my headline, but I think important article. Many young adults internalize this as pathology, rather than societal." +02/10/2017,Social_workers,@MikeLICSW,A Secret of Many Urban 20-Somethings: Their Parents Help With the Rent https://t.co/ssNTXrr0mu +02/09/2017,Social_workers,@MikeLICSW,"@UBSSW @ubswce @dean_yoshioka @NASWNews @nasw @AILANational Spread the word, we need volunteers in all 50 states! https://t.co/3hq05q64ik" +02/08/2017,Social_workers,@MikeLICSW,Statement: NASW opposes nomination of Sen. Jeff Sessions to be next U.S. Attorney General | https://t.co/GuiNYSq70k https://t.co/Ry6qNafY58 +02/08/2017,Social_workers,@MikeLICSW,Please follow & RT to your networks! #socialwork #mentalhealth #NoBanNoWall #hcsm #blacktwitter #Immigrants https://t.co/Z5vBzira8o +02/08/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: @elizabethforma That's why I just set up a recurring donation in her name. https://t.co/uJKLgJKKfK (5/5) +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma working w/ children, parents & educators, than our new Secretary of Education has.(4/5)" +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma This means that my dog spent more time working in public schools, (3/5)" +02/08/2017,Social_workers,@MikeLICSW,RT @MikeLICSW: @elizabethforma Boo got her start working in an alternative program w/ me in inner-city public schools. (2/5) +02/08/2017,Social_workers,@MikeLICSW,"RT @MikeLICSW: @elizabethforma This is my recently deceased therapy dog, Miss Boo. (1/5) https://t.co/smzUY0MwTu" +02/07/2017,Social_workers,@MikeLICSW,@elizabethforma That's why I just set up a recurring donation in her name. https://t.co/uJKLgJKKfK (5/5) +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma working w/ children, parents & educators, than our new Secretary of Education has.(4/5)" +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma This means that my dog spent more time working in public schools, (3/5)" +02/07/2017,Social_workers,@MikeLICSW,@elizabethforma Boo got her start working in an alternative program w/ me in inner-city public schools. (2/5) +02/07/2017,Social_workers,@MikeLICSW,"@elizabethforma This is my recently deceased therapy dog, Miss Boo. (1/5) https://t.co/smzUY0MwTu" +02/07/2017,Social_workers,@MikeLICSW,"New project for #Immigration #mentalhealth @caseforhere Pls follow, RT & check out https://t.co/iYFFV5pVpV Make a difference #NoBanNoWall" +02/03/2017,Social_workers,@MikeLICSW,"RT @Grokcraft: We are back up, sorry for the interruption! :-)" +02/01/2017,Social_workers,@MikeLICSW,RT @wojtekborowicz: Huge thanks to the people who participated: @annapickard @Anrick @EmMeller @kgreene @MikeLICSW @nickmizer @SpaceEngineS… +02/01/2017,Social_workers,@MikeLICSW,From the Netherlands.. https://t.co/mISKzTzyjM +01/30/2017,Social_workers,@MikeLICSW,See? My secret plan for geek recruitment is working. #bwahahaha +01/30/2017,Social_workers,@MikeLICSW,"@Calliope_B please consider writing a review, & TY for reading the book!" +01/30/2017,Social_workers,@MikeLICSW,@Calliope_B that's great! Welcome to the team! ^_^ +01/28/2017,Social_workers,@MikeLICSW,"@StuckonSW @Grokcraft @kaythaney @2LiveUnchained yes, and both modes are important & necessary for everyone!" +01/28/2017,Social_workers,@MikeLICSW,@StuckonSW @Grokcraft @kaythaney @2LiveUnchained 1 answer: The more we stay out of survival mode the more we can be in creative mode. +01/24/2017,Social_workers,@MikeLICSW,"Dear Media, pls call lies, ""lies"" or ""false statements."" Also pls call bizarre behavior ""bizarre"" rather than ""breaking with precedent."" TY" +01/23/2017,Social_workers,@MikeLICSW,"Although I disagree w/ @realDonaldTrump on all things politics, I can't in good conscience be silent: Leave Barron be. Kids deserve better!" +01/22/2017,Social_workers,@MikeLICSW,"# of us at #WomensMarch Boston: Est 175K +# of arrests: 0 +# of violent incidents: 0 +TY @bostonpolice @marty_walsh for keeping us safe" +01/21/2017,Social_workers,@MikeLICSW,#womensmarch Boston. https://t.co/PDIkC0hKum +01/17/2017,Social_workers,@MikeLICSW,@RepKClark TY for taking a stand. I hope that @SenMarkey @SenWarren & @RepMikeCapuano consider doing the same. Thank you all for your work! +01/16/2017,Social_workers,@MikeLICSW,"Booking 2017 talks! New topics: Tech & Self-Harm, Education w/out Misery. Old faves too: https://t.co/g2UEYt0AYl https://t.co/6VZ8QGyPy1" +01/15/2017,Social_workers,@MikeLICSW,"Sorry Reince, Obama, Hillary & Bernie cld all show up @ my door w candy & I wldn't stop peaceful resistance or think of Trump as legitimate." +01/13/2017,Social_workers,@MikeLICSW,Electroshock Therapy for Internet Addicts? China Vows to End It - The New York Times - https://t.co/P9NQtY4mck https://t.co/rviwS4u0NZ +01/12/2017,Social_workers,@MikeLICSW,Live asynchronously. https://t.co/2ljBImuxE4 +01/06/2017,Social_workers,@MikeLICSW,https://t.co/Ry6qNafY58 +01/04/2017,Social_workers,@MikeLICSW,@christinibnini thanks so much! Let me know if you want me to come to your area. +12/20/2016,Social_workers,@MikeLICSW,"Since when did ""intellectual"" become an insult? I was taught growing up that it was good to learn new things & think about them." +12/12/2016,Social_workers,@MikeLICSW,That moment you turn on the radio & you don't know if it is news or a promo for The Man in the High Castle. +12/12/2016,Social_workers,@MikeLICSW,@CRISPontheHill TY for following me. Pls. let me know if there are ways I can participate in the institute and your works! +12/09/2016,Social_workers,@MikeLICSW,Just a thought: What if you all reported to @twitter every time @realDonaldTrump violated Twitter Terms of Service? https://t.co/bF5MOFOm1q +12/05/2016,Social_workers,@MikeLICSW,Psst. @UBSSW @UBNewsSource @ub_sa @ub want to play #Minecraft for credit @UBuffalo ? https://t.co/y2gM3x1VLp +12/05/2016,Social_workers,@MikeLICSW,https://t.co/8PkaVtZi1x +12/05/2016,Social_workers,@MikeLICSW,RT @BSripom: @KishonnaGray @jivory @UBSSW @MikeLICSW Some #RealTalk on #videogames and #race https://t.co/curLktJuXb *gamer therapist fangi… +12/03/2016,Social_workers,@MikeLICSW,"@CambMA @RedCross Local Social Worker here, let me know if I can help." +12/02/2016,Social_workers,@MikeLICSW,RT @epflcswccm: Telehealth compares to in-person visits for depression https://t.co/yEZSRfJUhI via @Reuters @njsmyth @socworkpodcast @Stuck… +12/01/2016,Social_workers,@MikeLICSW,Looking for that perfect gift for the #therapist in your life? :-) https://t.co/riRKTM8FmJ https://t.co/hLnm9uiDZw +11/30/2016,Social_workers,@MikeLICSW,RT @sspencerthomas: SAVE DATE: twitter chat 12/1 #Men #MentalHealth #Crisis & #PeerSupport Services @SPSMM_D51 @evega_mhdignity @BartAndrew… +11/28/2016,Social_workers,@MikeLICSW,"@StigmaSlayer @DrMarkGriffiths wanted 2 see ""what it would be like to drive a car"" after playing #GTA which indicates knowing difference 2/2" +11/28/2016,Social_workers,@MikeLICSW,@StigmaSlayer @DrMarkGriffiths @DrKimberlyYoung @AndrewDoan This seems more like curiosity gone awry than GTP as he told police he 1/2 +11/23/2016,Social_workers,@MikeLICSW,RT @njsmyth: Your Filter Bubble is Destroying Democracy - Wired https://t.co/qIWPN9hVZM #Facebook https://t.co/UttZhOKhjQ +11/23/2016,Social_workers,@MikeLICSW,"Pls stop calling Nazis ""alt-right."" They are terror group, not a computer key. If u must use a keyboard term, ""backspace"" is more accurate." +11/21/2016,Social_workers,@MikeLICSW,RT @ConnorAWalters: #racevideogames Would love to hear thoughts on attempts to reflect experiences of discrimination in video games - Mafia… +11/21/2016,Social_workers,@MikeLICSW,RT @ConnorAWalters: black lead in civil rights New Orleans who faces discrimination - is gamifying that experience tone-deaf? Empathy-build… +11/21/2016,Social_workers,@MikeLICSW,RT @njsmyth: Video games are the playgrounds where many youth spend their time - #socialwork needs to be concerned with diversity content #… +11/21/2016,Social_workers,@MikeLICSW,"RT @ConnorAWalters: Papers, Please is a fantastic game! Glad to see it being recognized #racevideogames" +11/21/2016,Social_workers,@MikeLICSW,"RT @njsmyth: Dr. Gray, in her youth, found that social workers stereotyped video games and didn't appreciate what kids experience there #ra…" +11/21/2016,Social_workers,@MikeLICSW,RT @SWtechNow: Students who want to be border guards play Paper Please to develop empathy on crossing borders experience says Kishonna Gray… +07/01/2018,Social_workers,@njsmyth,"RT @janicecarello: ""In summary, despite the evident resilience of this graduate student sample, those with ACE histories were at heightened…" +07/01/2018,Social_workers,@njsmyth,RT @tjameslcsw: @EJohnsonLCSW @njsmyth @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW @socworkpodcast Gre… +07/01/2018,Social_workers,@njsmyth,"@Dr_Teasley Great to see you here, Martell!" +07/01/2018,Social_workers,@njsmyth,RT @AMLTaylor66: If you are interested in my @SWSD2018 session all details can be found here https://t.co/QvZd8dkmm0 For colleagues who are… +07/01/2018,Social_workers,@njsmyth,RT @epflcswccm: AHA Urges Consumer Education; HIPAA Privacy Rule and Health Apps @CCM_Cert @DrHowardLiu @StuckonSW @njsmyth @ubswce https:/… +07/01/2018,Social_workers,@njsmyth,@tjameslcsw @EJohnsonLCSW @amcguin @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW… https://t.co/qA0rdScZ36 +06/30/2018,Social_workers,@njsmyth,@EJohnsonLCSW @amcguin @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW… https://t.co/4wB2NQMCZM +06/30/2018,Social_workers,@njsmyth,"@EJohnsonLCSW @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW @socworkpodcast Yes,… https://t.co/jo9whaVXVh" +06/30/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Social Work Virtual Pal (#SWVirtualPal)… a very ‘real’ connection! - a new blog post by me & @AMLTaylor66: https://t.c… +06/30/2018,Social_workers,@njsmyth,This is fantastic news! #trauma https://t.co/pYZoHnxskj +06/30/2018,Social_workers,@njsmyth,"RT @LesleyHandel: Back to reality, TX is apparently going to have a bathroom bill. If you are trans and in Texas I will pee with you. Any…" +06/29/2018,Social_workers,@njsmyth,"RT @UBittic: Illustrates the impact of trauma from research, ACE study&personal reflection from her profession as a ped. doc. Seeing first…" +06/29/2018,Social_workers,@njsmyth,"RT @UBSSW: And- +10 More Documentaries on Netflix for Social Workers: +many provide in-depth looks at subjects relevant to social work practi…" +06/29/2018,Social_workers,@njsmyth,RT @UBSSW: This has helped me: our profession’s leaders getting out front for #socialjustice #MacroSW 1/3 https://t.co/JdpLYu7pfc +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: Great article on the heels of the NSWM conference. Why Disruption is the CEO’s Best Friend https://t.co/Nybcz6J2HR #NSWM29 +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: Yes! Why companies need to hire social workers https://t.co/KkB1uXD01X #NASW2018 #cswe +06/28/2018,Social_workers,@njsmyth,RT @DrVikkiRH: This is an access and social justice issue. Social workers should know what net neutrality loss means for clients https://t.… +06/28/2018,Social_workers,@njsmyth,RT @newsocialworker: How Will the End of Net Neutrality Affect Social Work? by @spcummings https://t.co/yR7q0SYmMX https://t.co/gNrSwhJ2Wt +06/28/2018,Social_workers,@njsmyth,RT @melaniesage: Today @husita is hanging out iny living room. Next week Dublin @SWSD2018! So exciting! #BehindtheScenes #swtech https://t.… +06/28/2018,Social_workers,@njsmyth,"RT @KialoHQ: @njsmyth Going to introduce a free dedicated edu site, without the public discussions soon. Just DM us. More about us and our…" +06/28/2018,Social_workers,@njsmyth,"@KialoHQ Thanks, good to know!" +06/27/2018,Social_workers,@njsmyth,RT @gsprang: The importance of bearing witness https://t.co/JJQt8ehru1 +06/27/2018,Social_workers,@njsmyth,Anyone from #swtech have experience with this community? https://t.co/krW5C7V8E6 +06/27/2018,Social_workers,@njsmyth,"Illuminates Gender Pay Inequity Causes: Women Ask for Raises as Often as Men, but Are Less Likely to Get Them (new… https://t.co/hyllvEqoaO" +06/27/2018,Social_workers,@njsmyth,"RT @DrKristie: “Sometimes when I consider what tremendous consequences come from little things, I am tempted to think there are no little t…" +06/27/2018,Social_workers,@njsmyth,"RT @jbriselli: ""Patient satisfaction is NOT the same as patient experience. It's just a small component."" So 🗝️ - @julie_rish at #HXD2018" +06/27/2018,Social_workers,@njsmyth,"RT @AdamMGrant: Hey Silicon Valley, it's time to start betting on older entrepreneurs. +New study: 40-year-olds are 2.1x as likely as 25-yea…" +06/27/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Amazing pic of @dawnshedrick @lakeya_cherry and @TheNSWM in action providing training to social workers in China https… +06/27/2018,Social_workers,@njsmyth,RT @SWcareer: 🍏 Best in Mental Health: Life Support! https://t.co/A9nDUcWBmg < H/T @socialworksage @laurelhitchcock @SchoolSocWork @Stuckon… +06/27/2018,Social_workers,@njsmyth,"RT @AlyssaLotmore: With a break from the semester, why not fill up your summer with books, podcasts, blogs, movies and more... all that hav…" +06/26/2018,Social_workers,@njsmyth,RT @epflcswccm: @AmerCollPhyAdv @ICD10monitor Honored to be on today's show! #socialdeterminants and #mentalhealth rock but I loved listeni… +06/26/2018,Social_workers,@njsmyth,"@BrandyRMaynard @obrienaj I think that’s an accurate statement about much of the online MSW market, particularly wh… https://t.co/V7yzPoyCGg" +06/26/2018,Social_workers,@njsmyth,"RT @melaniesage: The word is out! #UBSSW will offer an online DSW in Fall 2019. It will include a focus on #implementationscience, emerging…" +06/26/2018,Social_workers,@njsmyth,@jalvear @melaniesage @StuckonSW @spcummings @UBSSW @UNE_HealthIT DSW students are generally not funded. Our DSW is… https://t.co/6cdLE2KyTN +06/25/2018,Social_workers,@njsmyth,"@BrandyRMaynard @obrienaj I can't speak for other schools of social work, but ours will not be a profit center, I j… https://t.co/pk5K6Ycd3A" +06/25/2018,Social_workers,@njsmyth,@obrienaj I agree! The problem is these things are not dictated by formal policy but by market forces and the state… https://t.co/VobsjvOnmT +06/25/2018,Social_workers,@njsmyth,"I agree, Melanie. I think it's inevitable based on watching what's happening to the other health professions https://t.co/Dh7CEoGSvs" +06/25/2018,Social_workers,@njsmyth,"RT @lakeya_cherry: 11 pm on a Sunday night in Zhuhai,China and I'm writing a Welcome speech on behalf of @TheNSWM for tomorrow's opening da…" +06/24/2018,Social_workers,@njsmyth,RT @laurelhitchcock: One more reason why #socialworkers need to be digitally literate & tech competent: @NYTimes article on how digital the… +06/23/2018,Social_workers,@njsmyth,@jaxrafferty Are you coming to Dublin? I'm trying to figure out who I will get a chance to meet from our #swtech UK community +06/23/2018,Social_workers,@njsmyth,@AMLTaylor66 I'm so excited about having a chance to meet you on-the-ground! +06/23/2018,Social_workers,@njsmyth,"RT @JoWarner01: Great news for #socialwork, in that our own brilliant @AMLTaylor66 is on the list for Female GovTech Leaders 2018. I just v…" +06/23/2018,Social_workers,@njsmyth,"You're very welcome, Amanda, it's my honor! https://t.co/uDZ797AJYr" +06/23/2018,Social_workers,@njsmyth,RT @EvaProkop: RT @jaxrafferty: International acclaim #womenintech https://t.co/1SVZIfvRl0 +06/23/2018,Social_workers,@njsmyth,RT @jaxrafferty: International acclaim #womenintech https://t.co/9J57C5nuzo +06/23/2018,Social_workers,@njsmyth,"RT @AlyoshenkaB333: The ACLU has an update re. the executive order: ""The administration has signaled that it will now detain all families…" +06/23/2018,Social_workers,@njsmyth,@AlresfordBear Exactly! +06/23/2018,Social_workers,@njsmyth,"All my #socialwork peeps. Please see tweet below. It would be awesome if you would vote for my colleague, Amanda Ta… https://t.co/aOhPGOETkr" +06/23/2018,Social_workers,@njsmyth,RT @AMLTaylor66: In total cat style #RuariCat not a bit fazed by all this #womenintech talk #academicswithcats https://t.co/XlcHzCgnro +06/22/2018,Social_workers,@njsmyth,I just contributed on @theactionnet: LEAF Project for Universal Representation for Unaccompanied Children.… https://t.co/LLyI7Lm5AC +06/22/2018,Social_workers,@njsmyth,RT @CleanHealthyAZ: FOLLOW us if you agree: our kids deserve to breathe clean air. https://t.co/zMJ4p10zVV +06/22/2018,Social_workers,@njsmyth,@AMLTaylor66 @JimmySW @laurelhitchcock @StuckonSW @karenzgoda @spcummings @EBelluomini @melaniesage @EJohnsonLCSW… https://t.co/qk06s8lWc6 +06/22/2018,Social_workers,@njsmyth,@AMLTaylor66 @JimmySW @laurelhitchcock @StuckonSW @karenzgoda @spcummings @EBelluomini @melaniesage @EJohnsonLCSW… https://t.co/WQsnHnGzmL +06/22/2018,Social_workers,@njsmyth,I stand with my #socialwork colleagues at NADD against #ChildrenInCages And now we must address the harm this polic… https://t.co/THsVBlY7bY +06/22/2018,Social_workers,@njsmyth,"RT @melaniesage: People applying for refugee status don't get appointed attnys. They fare FAR better with representation, much more likely…" +06/22/2018,Social_workers,@njsmyth,RT @melaniesage: A4. Did you know that you can be a non-lawyer representative in immigration court? @RAICESTEXAS has online training. Loca… +06/22/2018,Social_workers,@njsmyth,Drone selfies. Who knew? https://t.co/qM1VtbMSEu https://t.co/EqLA6VXbfh +06/22/2018,Social_workers,@njsmyth,"RT @brooklyn11210: @JrTechinHmSrvs @melaniesage @SWSD2018 @NeilBallantyne @husITaOrg @JohnGMcNutt @Info4Practice @njsmyth +New Call For Pa…" +06/21/2018,Social_workers,@njsmyth,@kanter @SWcareer - these are my favorite influencers this week! +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: Facebook to direct users searching for opioids to addiction resources @DrHowardLiu @UBSSW @NationalCouncil https://t.co/wkw… +06/21/2018,Social_workers,@njsmyth,RT @DrHowardLiu: Glad to see #Facebook build #opioidcrisis treatment referrals into its algorithm. We must harness the power of #SoMe to ad… +06/21/2018,Social_workers,@njsmyth,@epflcswccm do you know this project? https://t.co/g7ATMF7WQW +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: The Mental Health Costs of Harassment @PBerryRN @JudgeWren @RTConnections @CCM_Cert @cherylholt @nasw @njsmyth @wgu https:/… +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: The industry must get past the stigma of mental health treatment for its professionals. Seeking treatment is not a weakness… +06/21/2018,Social_workers,@njsmyth,"RT @DrKristie: PLEASE SHARE. Lawyers, law students, and paralegals with Spanish language skills are needed for six-day stints in Texas to…" +06/21/2018,Social_workers,@njsmyth,RT @epflcswccm: 1:5 Immigrant Children Detained During ‘Zero Tolerance’ Border Policy < 13 @DrHowardLiu @UjjRam @nasw @StuckonSW https://t.… +06/21/2018,Social_workers,@njsmyth,"RT @HowardU_SWDean: One of the first songs learned as a child was “Jesus loves the little children, all the children of the world, red and…" +06/21/2018,Social_workers,@njsmyth,"RT @MelindaHohman: Summing up how I feel, @Maria_Hinojosa . Journalists like you have worked hard to let the rest of us know what is happen…" +06/21/2018,Social_workers,@njsmyth,RT @MelindaHohman: Want to know about the effects of #detention on parents and children? Read national expert and researcher @lhzayas . Tha… +06/21/2018,Social_workers,@njsmyth,RT @nasw: Social workers attending the 2018 NASW National Conference attended a voter registration education teach-in and posed for a photo… +06/21/2018,Social_workers,@njsmyth,RT @BartAndrews: @epflcswccm @DrHowardLiu @UBSSW @uscsocialwork @NCQA @nasw @CCM_Cert @UjjRam @njsmyth This is why I don’t use the word sti… +06/19/2018,Social_workers,@njsmyth,"@WriteNThrive @mmt98 @oxpatious Thanks! Hoping to get some in Late July and early August. Hope you have some coming, too" +06/19/2018,Social_workers,@njsmyth,RT @CharlesELewisJr: Congressional Social Workers Decry Policy Separating Families https://t.co/0206RbvlWr https://t.co/D4FNM1tdrp +06/19/2018,Social_workers,@njsmyth,RT @CharlesELewisJr: Children and Trauma https://t.co/410iFgvY4r @StuckonSW @njsmyth @newsocialworker @ColumbiaSSW @MSWatUSC @melaniesage @… +06/19/2018,Social_workers,@njsmyth,"RT @melaniesage: I did #childwelfare #socialwork in 3 states. Now I teach child welfare workers. When you have to remove kids: Compassion,…" +06/19/2018,Social_workers,@njsmyth,RT @SWVirtualPal: #SWVirtualPal has a new logo just in time for #husITa18! We are looking forward to seeing everyone in Dublin and hoping… +06/19/2018,Social_workers,@njsmyth,“Families Are *Still* Being Separated! 5 Things You Can Do Today” #socialwork @amnestyusa https://t.co/dg5zRomEfs +06/18/2018,Social_workers,@njsmyth,@DrTaraBatista @RealMAbramsky #ShareTheLove thanks for the engagements this week :) +06/18/2018,Social_workers,@njsmyth,@WriteNThrive @mmt98 @oxpatious - #HappyMonday featured top engaged community members :) +06/18/2018,Social_workers,@njsmyth,"@DrTaraBatista @MattheaMarquart Yes, it really was a terrific venue" +06/18/2018,Social_workers,@njsmyth,RT @BigDataGal: The Self-Taught Data Scientist Curriculum #ai #iot #bigdata #automation #womenintech https://t.co/W1TkB6dXIc https://t.co/… +06/16/2018,Social_workers,@njsmyth,@melaniesage Can't wait to check this out! +06/16/2018,Social_workers,@njsmyth,Thanks for the retweets @H2GYInc @MelindaHohman much appreciated! :) +06/15/2018,Social_workers,@njsmyth,@WilliamJiang2 @MattheaMarquart @PCMjrnl_online - #FollowFriday You're the best engaged members in my community! +06/15/2018,Social_workers,@njsmyth,Guiding principles of @2Uinc @chippaucek #NSWM29 #EdTech https://t.co/Gyd4HHu3y7 +06/15/2018,Social_workers,@njsmyth,"RT @poliSW: 📷 evitcani-writes: transmaskopi: Being trans is not a new, trendy thing. Trans people have always... https://t.co/rmIry9ytGS" +06/15/2018,Social_workers,@njsmyth,@nukem777 Wanted to let you know that I am unable to retweet your posts. You probably have that option turned off in settings. +06/15/2018,Social_workers,@njsmyth,RT @IIHA_Fordham: #Design4Humanity is dedicated to disseminating lessons learned to a wide audience of designers and humanitarians. @Ashlei… +06/15/2018,Social_workers,@njsmyth,Thanks for the retweets @JimmySW @TheNSWM @SD_SocialWorker much appreciated! :) +06/15/2018,Social_workers,@njsmyth,RT @husswcapp: Thanks @HowardU_SWDean Dr. Sandra E. Crewe for the shoutout re how the @HU_socialwork monograph series on structural inequal… +06/15/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Such a delight to co-present with fellow @ColumbiaSSW instructors Dawn Shedrick and @ElisabethAnneCC virtually at #NSW… +06/15/2018,Social_workers,@njsmyth,RT @Global_SW_DE: #GlobalSWDE - What the #EdTech is right! Which future technologies will we see in online social work education? What have… +06/15/2018,Social_workers,@njsmyth,RT @epflcswccm: So excited to have contributed to 3 & Co-authored one of these efforts! CaseManager #CMSA2018 #casemanagement @CCM_Cert @… +06/15/2018,Social_workers,@njsmyth,#FollowFriday @JudgeWren @lakeya_cherry - top engaged members this week :) +06/15/2018,Social_workers,@njsmyth,RT @m_clark_usc: Fight on! @MSWatUSC @TheNSWM #SocialWorkersLEAD #NSWM29 https://t.co/tp9t0GimZV +06/15/2018,Social_workers,@njsmyth,"RT @DrTaraBatista: After 15 years of providing services, we finally have an online presence. Check out our new web site. I'm thinking of a…" +06/15/2018,Social_workers,@njsmyth,"@MattheaMarquart @DrTaraBatista It was wonderful to chat with you, Matthea, and to meet you, Tara!" +06/15/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Love connecting with amazing colleagues at #NSWM29 @njsmyth @DrTaraBatista https://t.co/AEkbKFoO0G +06/14/2018,Social_workers,@njsmyth,"RT @AntheaButler: I'm really tired of this line of ""this can't be America. Black families were ripped apart during slavery. Native American…" +06/14/2018,Social_workers,@njsmyth,RT @socworkpodcast: I'm honored and humbled @ariannahuff that you shared my editorial in @FortuneMagazine with your 3+ million followers...… +06/14/2018,Social_workers,@njsmyth,RT @epflcswccm: Suicide Rates In U.S. Climbing Faster for Women https://t.co/rAouZr1Aku @DrHowardLiu @MichaelBGarrett @cherylholt @socworkp… +06/14/2018,Social_workers,@njsmyth,RT @MattheaMarquart: Our group is actively engaged in making hard choices - easy to see the teaching value of this game #NSWM29 https://t.c… +06/14/2018,Social_workers,@njsmyth,"@EBelluomini Oh, if I count my reaction to that, then my score goes much higher! I try to use those reactions to ch… https://t.co/FZNH4OAcHF" +06/14/2018,Social_workers,@njsmyth,"RT @cherylholt: Nearly half of doctors surveyed reported their patients would benefit from food assistance, affordable housing and transpor…" +06/14/2018,Social_workers,@njsmyth,Intro to Cooperation Studies - 8 Technologies https://t.co/SsU7X2islL +06/14/2018,Social_workers,@njsmyth,"Intro to Cooperation Studies 8 Technologies + https://t.co/SsU7X2islL" +06/14/2018,Social_workers,@njsmyth,RT @EJohnsonLCSW: @JimmySW’ talk @ #nswm29: Thought leaders’ models on digital literacies are applicable to competencies needed in social w… +06/14/2018,Social_workers,@njsmyth,@socworkpodcast @melaniesage @StuckonSW @laurelhitchcock @DrNJonesTSU @mmt98 @spcummings @SD_SocialWorker… https://t.co/9J1FhjqhVk +06/14/2018,Social_workers,@njsmyth,@melaniesage @socworkpodcast @StuckonSW @laurelhitchcock @DrNJonesTSU @mmt98 @spcummings @SD_SocialWorker… https://t.co/m6ZYvhaPeW +06/14/2018,Social_workers,@njsmyth,"Participatory Culture according to Henry Jenkins, and Digital Literacies #NSWM29 presented by @JimmySW https://t.co/u2hlWMRaro" +06/14/2018,Social_workers,@njsmyth,How Did We Get Here? Web 1.0 to Web 3.0 #NSWM29 https://t.co/BtLIOmby3L +06/14/2018,Social_workers,@njsmyth,Attending @JimmySW’s presentation at #NSWM29 Retweeting Russians: Building Community and being an Authentic Leader… https://t.co/1AvvJDIVSI +06/14/2018,Social_workers,@njsmyth,RT @TheneraB: Leaders should strive for Disruptive Leadership with meaningful purpose. Not just change for change sake but with intentional… +06/14/2018,Social_workers,@njsmyth,@brooklyn11210 @lakeya_cherry It’s great to be here! Looking forward to seeing you. +06/14/2018,Social_workers,@njsmyth,Tech innovation to prevent sexual assault when people are drinking? What do you think.. https://t.co/BkDAYwpMks #MeToo +06/14/2018,Social_workers,@njsmyth,RT @JackieYunTweets: Disruptive leaders know not everyone will instantly get the vision and will continue the convo to get everyone onboard… +06/14/2018,Social_workers,@njsmyth,"RT @socworkpodcast: Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good friend…" +06/14/2018,Social_workers,@njsmyth,RT @melaniesage: A nice emotional distress #mentalhealth pain scale. https://t.co/JHvWPhrYAW Anyone want to check in? #socialwork #swtech h… +06/14/2018,Social_workers,@njsmyth,@MarshAlesia @TheMattSchwartz - these are my favorite engaged members this week! +06/14/2018,Social_workers,@njsmyth,RT @newsocialworker: Think you don't need a vacation because you love your job and everything is going great? Take a break anyway. We all n… +06/14/2018,Social_workers,@njsmyth,"Pre-Conference Reception last night, at the Coyote Cafe, with Ruby and @MelindaHohman #NSWM29 https://t.co/9V4adXNwcc" +06/13/2018,Social_workers,@njsmyth,RT @SWcareer: @njsmyth @laurelhitchcock @UBSSW @FinancialMSW @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @ValueIntoWords @Aun… +06/13/2018,Social_workers,@njsmyth,RT @PatShellySSW: @SWcareer @njsmyth @UBSSW @FinancialMSW @laurelhitchcock @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @Value… +06/13/2018,Social_workers,@njsmyth,RT @AuntieStress: @SWcareer @njsmyth @UBSSW @FinancialMSW @laurelhitchcock @socworkpodcast @newsocialworker @myjoythisway @StuckonSW @Value… +06/13/2018,Social_workers,@njsmyth,RT @newsocialworker: We Still Don’t Fully Understand #Suicide. But We Do Know What Reduces It - commentary by @socworkpodcast https://t.co/… +06/13/2018,Social_workers,@njsmyth,RT @SWcareer: What Do You Do When Friends or Family Ask You for Money? https://t.co/5KLd4IXffK < giving money may lead others to view you a… +06/13/2018,Social_workers,@njsmyth,@lakeya_cherry Looking forward to it! +06/13/2018,Social_workers,@njsmyth,@cherylholt @DrHowardLiu @mbschoening @DrPaulKorte @KevinHinesStory @miller7 @arianajohnston @bmanteu @PBerryRN… https://t.co/xJb4fYW21T +06/13/2018,Social_workers,@njsmyth,@AuntieStress @annwilder - #ShoutOutWednesday featured top engaged members members :) +06/13/2018,Social_workers,@njsmyth,@socworkpodcast @DanitaBlackwood - these are my favorite influencers this week! +06/13/2018,Social_workers,@njsmyth,RT @laurelhitchcock: This tool lets you see–and correct–the bias in an algorithm https://t.co/Z3xRisj18Y #swtech +06/13/2018,Social_workers,@njsmyth,"RT @KithandKinMag: 11 steps you can take to protect yourself from being stalked https://t.co/vQYdBDcipo + +#NationalStalkingAwarenessMonth #N…" +06/13/2018,Social_workers,@njsmyth,Headed to San Diego for the #NSWM29 conference #175stories +06/13/2018,Social_workers,@njsmyth,"RT @SouthwestAir: Weeks ago, we departed Houston with dozens of cats and dogs, rescued from shelters flooded by Harvey: https://t.co/XegWKJ…" +06/13/2018,Social_workers,@njsmyth,"RT @brooklyn11210: Honored to be included on the #D4GX 2018 Program Committee + +@unu_cs +@melaniesage +@JohnGMcNutt +@TechEthicist +See yo…" +06/13/2018,Social_workers,@njsmyth,@brooklyn11210 @unu_cs @melaniesage @JohnGMcNutt @TechEthicist Congratulations!! +06/12/2018,Social_workers,@njsmyth,RT @lakeya_cherry: True. Most people unfortunately w/nt think this stress exists. POC often deal w/ it as they enter various social setting… +06/12/2018,Social_workers,@njsmyth,RT @lakeya_cherry: https://t.co/9c0Yz5ejTv +06/12/2018,Social_workers,@njsmyth,@laurelhitchcock @SWcareer @UBSSW @FinancialMSW @socworkpodcast @newsocialworker @myjoythisway @StuckonSW… https://t.co/eY922RSlhF +06/12/2018,Social_workers,@njsmyth,RT @epflcswccm: Why Female CEOs' Performance May Depend on Who Had the Job Prior @JudgeWren @njsmyth @UBSSW @cherylholt @PBerryRN https://t… +06/12/2018,Social_workers,@njsmyth,"RT @AdamMGrant: After they're given terrible ideas to consider, brainstorming groups become more creative. +A bad solution can point the way…" +06/12/2018,Social_workers,@njsmyth,@TheMattSchwartz @UBSSW @ubalumni That’s terrific! Very exciting..can’t wait to see all you do there. +06/12/2018,Social_workers,@njsmyth,"@TheMattSchwartz @UBSSW @ubalumni Congratulations, Matt, we are thrilled to have you as an alumnus! What job have you been hired for?" +06/12/2018,Social_workers,@njsmyth,RT @TheMattSchwartz: There were many amazing parts of going through the @UBSSW #MSW program at #UB. One of the best was being prepared for… +06/11/2018,Social_workers,@njsmyth,Thanks for the retweets @A_CreativeEdge @HeroesClubWomen much appreciated! :) +06/11/2018,Social_workers,@njsmyth,RT @Ross_Quintana: 4 Female Entrepreneurs Share the Visions That Helped Make Them Successful https://t.co/h6G0uVSueH #Entrepreneurship #Sta… +06/11/2018,Social_workers,@njsmyth,RT @realityalt1: The EU is trying to decide whether to grant robots personhood. https://t.co/vmXbQ5DbnY #Tech #AI #Futurism +06/10/2018,Social_workers,@njsmyth,RT @thehill: Restaurant owner who says Anthony Bourdain's show changed their lives donates $60K to National Suicide Hotline https://t.co/HD… +06/10/2018,Social_workers,@njsmyth,RT @Waterkeeper: Waterkeepers wore blue for #WorldOceansDay yesterday & @MarchForOcean today at Niagara Falls! #wkac18 #MarchForTheOcean #w… +06/09/2018,Social_workers,@njsmyth,@obrienaj @melaniesage Ha! Good idea. I do know that a lot of traveling does me in with regard to healthy habits +06/09/2018,Social_workers,@njsmyth,"RT @melaniesage: Frequent business travelers are at higher risk of obesity, smoking, alcohol abuse, depression and other health problems ht…" +06/09/2018,Social_workers,@njsmyth,View from my deck... Ducklings! https://t.co/DlpVGpC90V +06/09/2018,Social_workers,@njsmyth,@waterkeepermark @RobertKennedyJr I recorded part of his speech. Here's the link on YouTube https://t.co/0WGTR6gX2R +06/09/2018,Social_workers,@njsmyth,"RT @swimguide: ""Beach apps a new necessity for summer"" and @swimguide is at the top of that list. Thanks @NBCNews for talking about our wor…" +06/09/2018,Social_workers,@njsmyth,RT @water_rangers: Love learning about @swimguide from Gabby! Incredible new features. Check it out to find out if your beach is safe to sw… +06/09/2018,Social_workers,@njsmyth,RT @TheBuffaloNews: Stewardship emerges as key part of Waterkeeper mission https://t.co/TfWKb5rxRJ +06/09/2018,Social_workers,@njsmyth,"RT @JudgeWren: “Won’t you be my neighbor” Mister Rogers documentary celebrates the depth, decency & authenticity of a children’s TV legend.…" +06/09/2018,Social_workers,@njsmyth,RT @epflcswccm: HIMSS Analytics survey shows patients want convenient payment options @StuckonSW @njsmyth @CCM_Cert @signaturedoc https://… +06/09/2018,Social_workers,@njsmyth,"RT @TheMattSchwartz: #Pharmacists in NYS have Pharm.D’s, and an incredible amount of knowledge. While this occurred in MA, I assume their p…" +06/09/2018,Social_workers,@njsmyth,"RT @kccallaway: “What I noticed from my time in the Gulf and in Santa Barbara, the oil companies are winning the PR game. They control the…" +06/09/2018,Social_workers,@njsmyth,RT @sejalc: Waterkeepers from all over the world converging on Buffalo NY this week to protect and defend our world’s most precious resourc… +06/09/2018,Social_workers,@njsmyth,At the annual international Waterkeeper gathering in Buffalo #wkac18 @RobertKennedyJr : All pollution is due to fat… https://t.co/NhUdAoKgye +06/09/2018,Social_workers,@njsmyth,"RT @kccallaway: You guys must tell better stories. Take us out on boats, connect us to the stories, to your work in the community as those…" +06/09/2018,Social_workers,@njsmyth,RT @sejalc: Waterkeepers know how to work hard and play hard. We’ve gathered as a force for clean water at the annual conference in Buffal… +06/08/2018,Social_workers,@njsmyth,See this for update on Commerce Drive shooter https://t.co/o53Urf8bOa +06/08/2018,Social_workers,@njsmyth,RT @samapied: @mrnahdez presenting on an episode of Black Therapist Podcast that highlights domestic violence in communities of color and t… +06/08/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Digital Dexterity Card Game https://t.co/Vw3ODlbyh5 #swtech Peeps - Who wants to develop a card deck for #SocWorkEd &… +06/08/2018,Social_workers,@njsmyth,"RT @SJSworks: In the wake of all these tragic suicides I hope you remember that celebrities make the news, all those around us make only th…" +06/08/2018,Social_workers,@njsmyth,@RepBrianHiggins please vote against #PROSPERAct (H.R. 4508) . We need to keep higher education affordable for ever… https://t.co/pVZR9YV2b5 +06/08/2018,Social_workers,@njsmyth,RT @CSocialWorkEd: Do you want to increase the visibility of your #research & be recognized as a leader in #socialwork education at #APM18?… +06/08/2018,Social_workers,@njsmyth,@DrCastner @nerdlogic0_o - Share the love! Check out the top engaged community members in my community! +06/07/2018,Social_workers,@njsmyth,RT @epflcswccm: EHR Use Detract From Patient-Provider Communication? @StuckonSW @CCM_Cert @njsmyth @HealthITNews @MobiHealthNews https://t.… +06/07/2018,Social_workers,@njsmyth,@SJSworks @PsychBrownBag - these are my favorite engaged members this week! +06/06/2018,Social_workers,@njsmyth,"RT @melaniesage: Quote from @drbarsky, member of the recent NASW Technology Standards committee, from article on #telehealth in current cop…" +06/04/2018,Social_workers,@njsmyth,@AMLTaylor66 Such an important practice that really opens up one's life! +06/04/2018,Social_workers,@njsmyth,RT @epflcswccm: Why provider IT systems aren’t ready to capitalize on patient data @StuckonSW @njsmyth @HealthITNews @CCM_Cert @wgu https:/… +06/04/2018,Social_workers,@njsmyth,RT @laurelhitchcock: Checkout @socialworksage's new blog post about using @Flipgrid in the #SocWorkEd Classroom: https://t.co/YFSv1Swg9a T… +06/04/2018,Social_workers,@njsmyth,RT @UniteThePoor: TODAY: Hundreds risking arrest in #PoorPeoplesCampaign rally & nonviolent direct action across the country. WATCH THE D.C… +06/03/2018,Social_workers,@njsmyth,@AMLTaylor66 Lovely!! +06/03/2018,Social_workers,@njsmyth,RT @epflcswccm: Opioids Cause 1:5 Deaths of Young Adults @DrHowardLiu @cherylholt @CCM_Cert @MichaelBGarrett @BartAndrews @UBSSW https://t.… +06/03/2018,Social_workers,@njsmyth,"RT @epflcswccm: Rising inequality responsible for greater stress, anxiety, mental illness? @cherylholt @StuckonSW @njsmyth @UBSSW https://t…" +06/03/2018,Social_workers,@njsmyth,RT @epflcswccm: Lawsuit Filed in Wake of Under Armour Data Breach @MobiHealthNews @StuckonSW @njsmyth @HealthITNews @CCM_Cert https://t.co/… +06/02/2018,Social_workers,@njsmyth,RT @UBSSW: The seven deadly sins on social media... MT @AdamMGrant via @njsmyth #SWtech #SocialMedia #Humor Image: Matt Lieberman https:/… +06/02/2018,Social_workers,@njsmyth,RT @epflcswccm: Digital health a behavioral science? @StuckonSW @cherylholt @BartAndrews @DrHowardLiu @ubswce @melaniesage @njsmyth https:/… +06/02/2018,Social_workers,@njsmyth,"RT @karenzgoda: [½] Tonight, we'd like to acknowledge @laurelhitchcock as she leaves our #MacroSW partnership for new pursuits. Since our b…" +06/02/2018,Social_workers,@njsmyth,"RT @DrAFerg: I still feel it! + https://t.co/6HO6jw0oa9" +06/02/2018,Social_workers,@njsmyth,RT @SocialWorkPulse: Well played. NBA Players' Union sees nothing but opportunity in hiring first director of mental health. Victory. @ASW… +06/02/2018,Social_workers,@njsmyth,RT @amy_mendenhall: When you get a bunch of student papers and reviews that you forgot were coming then summer reading becomes.... https://… +06/02/2018,Social_workers,@njsmyth,RT @CSocialWorkEd: The New Social Workers report from the National #SocialWork Workforce Study summarizes who is entering the social work p… +06/01/2018,Social_workers,@njsmyth,RT @UBSSW: Domestic Violence's Overlooked Damage: Concussion And Brain Injury: https://t.co/cNeqDBJbzI HT @njsmyth via @epflcswccm #TBI #… +06/01/2018,Social_workers,@njsmyth,RT @SWBookGroup: Exciting planning meeting early this morning with @RachelFearnley1 about her new book ‘Our Family and IT’ Hoping to schedu… +05/31/2018,Social_workers,@njsmyth,@laurelhitchcock @twilli2861 - these are my favorite engaged community members this week! +05/31/2018,Social_workers,@njsmyth,Interesting example that illustrates all that students learn on a project like game design: When Students Design Th… https://t.co/Ny8npgHQpk +05/31/2018,Social_workers,@njsmyth,@AMLTaylor66 @SocialWorkDesk - these are my favorite influencers this week! +05/31/2018,Social_workers,@njsmyth,RT @socworkpodcast: New #SWpodcasts on the block. @PatrickM_MSW started a podcast about #socialwork and politics https://t.co/pV1E8nvUEX. M… +05/31/2018,Social_workers,@njsmyth,"RT @UBSSW: In preparation for joining the #MacroSW chat this Thur eve, @FunkAndBeans will be posting resources at #SoJustProfiling - RT @pr…" +05/31/2018,Social_workers,@njsmyth,"RT @melaniesage: Very good answer to this client's question. Also, it's natural for clients to be curious about the therapist's (or doctor,…" +05/31/2018,Social_workers,@njsmyth,RT @forty3north: Why should you apply to 43North? Because this could be you on stage winning $1 million. But you'll have to hurry - the May… +05/30/2018,Social_workers,@njsmyth,@AMLTaylor66 @BBCiPlayer @hayfestival That sounds like fun! I am really looking forward to meeting you in Dublin. +05/30/2018,Social_workers,@njsmyth,RT @epflcswccm: So honored! What Will Your Legacy Be? : Professional Case Management https://t.co/9XHutnX4Yi #whatsyourlegacy @UBSSW @uscso… +07/02/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +07/02/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/mxn5ifWlQG Thanks to @data4democracy @sotisgreen @TempleUniv #healthcare +07/01/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/binZJEZJKA +07/01/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/XPSXoMCOm7" +07/01/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/mxn5ifWlQG Thanks to @thepapertigerx @govtrack @JoeBabaian #successtrain #healthcare +07/01/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/gMCXCicMGd +07/01/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/yUsIlcAKWh" +07/01/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +07/01/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +07/01/2018,Social_workers,@socworkpodcast,@KimberlyBG81 @tcdlibrary @karenzgoda @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek… https://t.co/iVCnAbXDHI +07/01/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +07/01/2018,Social_workers,@socworkpodcast,@JenniferTheMSW @tcdlibrary @karenzgoda @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek… https://t.co/XxEiu8XLXu +07/01/2018,Social_workers,@socworkpodcast,RT @JenniferTheMSW: @socworkpodcast @tcdlibrary @karenzgoda @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek @mpde… +07/01/2018,Social_workers,@socworkpodcast,RT @fenixfoundation: @RealKHughes @JenniferTheMSW @melaniesage @LuluRharoun @StuckonSW @socworkpodcast @spcummings @EJohnsonLCSW @mmt98 @ja… +07/01/2018,Social_workers,@socworkpodcast,@karenzgoda @tcdlibrary @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek @mpdentato 😊😊😊😊📚❤️ Love the bag! +07/01/2018,Social_workers,@socworkpodcast,RT @karenzgoda: @socworkpodcast @tcdlibrary @SWSD2018 @DrJulieHanks @newsocialworker @melaniesage @LoyolaSSW @mstokek @mpdentato OMG 😍😍😍😍😍… +07/01/2018,Social_workers,@socworkpodcast,In #Dublin for #SWSD2018. Had the amazing experience of learning about the Book of Kells and seeing the Long Room a… https://t.co/Qg90iXrlOe +07/01/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/jZ4rdnK1tJ" +07/01/2018,Social_workers,@socworkpodcast,"RT @SWDiscoveries: @socworkpodcast @SWSD2018 Yes! Me too. You’ve been a real inspiration for the podcast, and I’m looking forward to thanki…" +07/01/2018,Social_workers,@socworkpodcast,@DrKristinMSmyth Wow. That's awesome. Thank you. I'm sure @Darlascoffey will be glad to know her inspiring words wi… https://t.co/wE90Nm244a +07/01/2018,Social_workers,@socworkpodcast,RT @AnnLavan: I urge all delegates @husITaOrg @SWSD2018 @AMLTaylor66 @melaniesage @socworkpodcast to visit @CBL_Dublin and it has a wonderf… +07/01/2018,Social_workers,@socworkpodcast,RT @vlarendt: Spot on. Cred @socworkpodcast @Darlascoffey #socialwork #socialworkers @CSocialWorkEd https://t.co/MkOAGQrDdM +07/01/2018,Social_workers,@socworkpodcast,"Special thank you to my 63 new followers from USA, UK., and more last week. https://t.co/OXZLlGT1K1 . https://t.co/hUIc1cgCo1" +07/01/2018,Social_workers,@socworkpodcast,@SeekSarahBSW @MarshAlesia Thanks so much y'all. I'm blushing. https://t.co/3vRdZUqMt9 +07/01/2018,Social_workers,@socworkpodcast,RT @SeekSarahBSW: @MarshAlesia @socworkpodcast Absolutely agree! Jonathon Singer’s @socworkpodcast is my own fave SW podcast 🙌🏼 +07/01/2018,Social_workers,@socworkpodcast,"RT @MarshAlesia: Since we are recommending helpful reads, I’m giving a shoutout to Jonathan Singer @socworkpodcast for Suicide in Schools.…" +07/01/2018,Social_workers,@socworkpodcast,@johnleland @socwkinprogress @CSocialWorkEd @jalvear Well played John. +07/01/2018,Social_workers,@socworkpodcast,RT @ASWB: @fenixfoundation @melaniesage @LuluRharoun @StuckonSW @socworkpodcast @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @… +07/01/2018,Social_workers,@socworkpodcast,RT @OfficialMacroSW: Our #MacroSW chat last night brought out a lot of great podcast suggestions for the summer! What podcasts would you li… +07/01/2018,Social_workers,@socworkpodcast,"@LisaKaysMSW 4. Regardless, I would play the thought experiment ""imagine that this leads to the worst outcome, what… https://t.co/4cenvzTuLt" +07/01/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/7wj30Ov332 +07/01/2018,Social_workers,@socworkpodcast,"@LisaKaysMSW 3. Even if there isn't a legal duty to warn, you might be faced with the ethica/practice decision of w… https://t.co/knRA4tbkah" +07/01/2018,Social_workers,@socworkpodcast,@LisaKaysMSW Lisa 1. Great question. Love that you're thinking through this. 2. Each state has different regulation… https://t.co/qzjM8X7Pnf +07/01/2018,Social_workers,@socworkpodcast,"RT @uscsocialwork: RT @socworkpodcast: ABFT, DBT & I-CBT are 3 family-based psychotherapies that reduce #suicide risk in adolescents. Why d…" +07/01/2018,Social_workers,@socworkpodcast,This is the best summary of a Social Work Podcast episode ever. Win for @black_sexgeek. Check out the episode and s… https://t.co/iHiOonDp2M +07/01/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @laurelhitchcock @labramsucla @brooklyn11210 @EBelluomini @spcummings @StuckonSW Great thread! +07/01/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/9kchTfDGn4 +07/01/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/HcljyOoHG8" +07/01/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +07/01/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/AlNN1sZtyA Thanks to @JoeFeagin @Steve_JKPbooks @JasmineMcNealy #mentalhealth +06/30/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/8KkQO2zjmA +06/30/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/IGOJmRTmKT" +06/30/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/YfXHYIPgX5 +06/30/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/AlNN1sZtyA Thanks to @PaulSacco1 @RaymondPTucker @AnneReports #ai #mentalhealth +06/30/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/DQ5ZMrBMxa" +06/30/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/30/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/30/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/30/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/dG8bZNDeKa" +06/30/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/wAqIJlYAgO +06/30/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/UtrrBBvown +06/30/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/W8K4GBuJtj" +06/30/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/30/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/pXIw5iQNdC Thanks to @SocialJerkBlog @laurelhitchcock @jonathonmorgan #mentalhealth +06/29/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/NwaTniXZ5R +06/29/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/kCaWGWbX5w" +06/29/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/bFN4Yu1s7e +06/29/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/pXIw5iQNdC Thanks to @PSYCH_HYPE @mostlyathena @UMSocialWork… https://t.co/h9h14bQmbT +06/29/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/pkhndc2uDt" +06/29/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/29/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/29/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/29/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/ZSlh6e0SMZ" +06/29/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/OK2IQvUdtc +06/29/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/CGS4s4RwKn +06/29/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/3uRKEPvK5e" +06/29/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/29/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/CdgdhxW9Xf Thanks to @elspethslayter @JasmineMcNealy @DrKathrynGordon #mhed2018 +06/28/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/lZ8ZkXunna +06/28/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/s1jG94Ijz1" +06/28/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/PNKrrASO4y +06/28/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/CdgdhydLlP Thanks to @JudgeWren @Grace_Durbin @NASWMI #socialwork #mhed2018 +06/28/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/Tr81apHqrA" +06/28/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/28/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/28/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/28/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/e6CHMDOOMO" +06/28/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/yazklHMGDO +06/28/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/gZHfDlLeIM +06/28/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/xtZYnrGPit" +06/28/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/28/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/T4nm7G6A67 Thanks to @MrJonnyBenjamin @JoThoHalloran @SuiDoc #mentalhealth +06/27/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/aWkBIafGEL +06/27/2018,Social_workers,@socworkpodcast,"RT @Jedi_Counsel: Today is #PTSDAwarenessDay. For scientifically-informed information about PTSD, you can check out our @JessicaJones post:…" +06/27/2018,Social_workers,@socworkpodcast,RT @FOX2News: Police in Berkley looking for missing teen who left home https://t.co/QLaWKFTkBv +06/27/2018,Social_workers,@socworkpodcast,"RT @ZSInstitute: At the Oklahoma #ZeroSuicide Academy, @ursulawhiteside shares about dialectical behavior therapy, CAMS, non-demand caring…" +06/27/2018,Social_workers,@socworkpodcast,RT @jdonohuedioh: Self-care impacts how we treat one another. We need to understand more about self-care. Dr. Miller is leading the way!!… +06/27/2018,Social_workers,@socworkpodcast,RT @jdonohuedioh: #selfcare #socialwork #process #selflove #KindnessMatters #selfcaremovement https://t.co/wHrI2voOlZ +06/27/2018,Social_workers,@socworkpodcast,RT @AdamDSwanson: Justice Kennedy has been instrumental in the advancement of LGBTQ equality. I’m very nervous about what comes next. #SCOT… +06/27/2018,Social_workers,@socworkpodcast,@deseraestage @MSNBC https://t.co/w7LnsZMw2u +06/27/2018,Social_workers,@socworkpodcast,RT @deseraestage: Dude on @MSNBC just said Roe v Wade being overturned wouldn’t be such a significant change because it’s already mainly af… +06/27/2018,Social_workers,@socworkpodcast,@thethoughtbub Nicely done! Thank you. +06/27/2018,Social_workers,@socworkpodcast,Great summary of Social Work's 12 Grand Challenges https://t.co/6am7mN8MBP via @thethoughtbub +06/27/2018,Social_workers,@socworkpodcast,RT @epflcswccm: Suicide Isn't A U.S. Problem. It's A Global Health Epidemic @StuckonSW @socworkpodcast @uscsocialwork @CCM_Cert https://t.c… +06/27/2018,Social_workers,@socworkpodcast,RT @thethoughtbub: Come over to https://t.co/pkWs4zBAjk at 12 am (tonight) for a run down on the Social Work Grand Challenges!! Shout out t… +06/27/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/LjD5B3Y6n2" +06/27/2018,Social_workers,@socworkpodcast,RT @UBSSW: @melaniesage @spcummings @StuckonSW @lakeya_cherry @socworkpodcast @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @UNE_HealthIT @… +06/27/2018,Social_workers,@socworkpodcast,@SWDiscoveries @SWSD2018 Looks great! Looking forward to meeting you in person #SWSD2018 +06/27/2018,Social_workers,@socworkpodcast,RT @SWDiscoveries: Just had the @SWDiscoveries poster printed for the @SWSD2018 conference starting next week. I think it’s looking good -… +06/27/2018,Social_workers,@socworkpodcast,RT @AMLTaylor66: @CarolineAldrid5 @laurelhitchcock @SWVirtualPal @socworkpodcast @melaniesage @njsmyth @DrNJonesTSU @becky_anthony Absolute… +06/27/2018,Social_workers,@socworkpodcast,"RT @laurelhitchcock: @AMLTaylor66 & I are ready to talk about @SWVirtualPal at #husITa18 next week - poster, handouts and mini cards are al…" +06/27/2018,Social_workers,@socworkpodcast,RT @davidr46: Good advice https://t.co/iSb4YczCQ8 +06/27/2018,Social_workers,@socworkpodcast,RT @newsocialworker: How will the end of #netneutrality affect #socialwork ? #macrosw #SWtech @OfficialMacroSW @socworkpodcast @EBelluomini… +06/27/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/T4nm7G6A67 Thanks to @MikeGordonRyan @MyHarmReduction… https://t.co/65aJ54dget +06/27/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/TkPPRjY9l3 +06/27/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/CVzRRnjTPA" +06/27/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/27/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/27/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/27/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/qOKLIxEAOs" +06/27/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/DzPDx932Ci +06/27/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/0Fu9cxgOgk +06/27/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/tsbFXsZc0i" +06/27/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/27/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/1fz7DZg4yP Thanks to @SDSUSocialWork @PopTechWorks @socialworksage #socialwork +06/26/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/Eu2YXHICXy +06/26/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/kDzgZJOgsU" +06/26/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/NOytRzpPtC +06/26/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/1fz7DZg4yP Thanks to @RitaWorlock @DrBakerPhD @SpringerSW #ai #socialwork +06/26/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/H4cUTUrSaw" +06/26/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/26/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/26/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/26/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/QFAXo7HBxu" +06/26/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/uQfYfUEshK +06/26/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/RwPG8rikfE +06/26/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/P12JQXSg9x" +06/26/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/26/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/0FGC6YllJS Thanks to @Jo_Yaffe @MyfMaple @SexualContinuum #successtrain +06/25/2018,Social_workers,@socworkpodcast,@StuckonSW @EJohnsonLCSW @JenniferTheMSW @melaniesage @spcummings @mmt98 @jalvear @UBSSW @UNE_HealthIT @2Uinc… https://t.co/BKhFEL40Um +06/25/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @StuckonSW @lakeya_cherry @melaniesage @spcummings @JenniferTheMSW @mmt98 @jalvear @UBSSW… https://t.co/f0Lg284VNy +06/25/2018,Social_workers,@socworkpodcast,Yes! There will never be a substitute for real-world experience. But if social work and social service organization… https://t.co/a1EyjCsy16 +06/25/2018,Social_workers,@socworkpodcast,@lakeya_cherry @StuckonSW @melaniesage @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @UBSSW… https://t.co/xIRfkGfoq7 +06/25/2018,Social_workers,@socworkpodcast,This. https://t.co/7vAAI27H71 +06/25/2018,Social_workers,@socworkpodcast,@StuckonSW @JenniferTheMSW @melaniesage @spcummings @EJohnsonLCSW @mmt98 @jalvear @UBSSW @UNE_HealthIT @2Uinc… https://t.co/kAhSyBHLUY +06/25/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/lEMlydqINp +06/25/2018,Social_workers,@socworkpodcast,RT @EJohnsonLCSW: @socworkpodcast @JenniferTheMSW @melaniesage @spcummings @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc @chippauc… +06/25/2018,Social_workers,@socworkpodcast,@EJohnsonLCSW @melaniesage @spcummings @JenniferTheMSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/VwGLTwOXCV +06/25/2018,Social_workers,@socworkpodcast,@JenniferTheMSW @melaniesage @spcummings @EJohnsonLCSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/jxXmWeMQvH +06/25/2018,Social_workers,@socworkpodcast,@KimLeifso That's amazing! Thank you so much for letting me know. I don't think I've ever heard of this kind of res… https://t.co/pc0bvRpfzu +06/25/2018,Social_workers,@socworkpodcast,"RT @KimLeifso: @socworkpodcast Based on the article, principal embedded CBT, DBT and attachment informed therapies. This ensures that these…" +06/25/2018,Social_workers,@socworkpodcast,"RT @KimLeifso: @socworkpodcast Shared your article with my visionary principal, while we were revising our therapeutic team roles/descripti…" +06/25/2018,Social_workers,@socworkpodcast,RT @monaca_eaton: Interesting ideas on simulations to improve competence - technology could be used to enhance/communicate these. https://t… +06/25/2018,Social_workers,@socworkpodcast,RT @StopTXSuicides: Thx @socworkpodcast for this work! #TimeBasedPrevention works! https://t.co/RRRTPk2cWl +06/25/2018,Social_workers,@socworkpodcast,"RT @LoyolaSSW: 🎧🎙️Listen to the @socworkpodcast, options for different devices: +. +. +#socialwork #podcast https://t.co/xvYIgdIPeM" +06/25/2018,Social_workers,@socworkpodcast,@black_sexgeek How did it go? Did the Klezmer intro music pump up your work out :-) +06/25/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/7OpYqGMgGB" +06/25/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: Twice in the last few months, I have been asked to complete a #depression & #suicide screening inventory by a doctor. I'v…" +06/25/2018,Social_workers,@socworkpodcast,@melaniesage @spcummings @JenniferTheMSW @EJohnsonLCSW @mmt98 @jalvear @StuckonSW @UBSSW @UNE_HealthIT @2Uinc… https://t.co/SSGzqGpWYh +06/25/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/0FGC6YllJS Thanks to @jcgreenfield @zerosuicide_org… https://t.co/dIdsqK3zrU +06/25/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/M5lxByE61n +06/25/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/Ix4yOOoOh9" +06/25/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/25/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/25/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/25/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/OErdd6eI6u" +06/25/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/6vYDoLmTMa +06/25/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/QrBFK61YaK +06/25/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/C69dJonn6q" +06/25/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/25/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/h7C8dGpkqF Thanks to @JoeFeagin @drvernig @DrNNegi #socialjustice +06/24/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/pFQC6UHG18 +06/24/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/eUEucanXoX" +06/24/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/2KYoFVKWMq +06/24/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/h7C8dGpkqF Thanks to @paulikonenmsw @AmyMorinLCSW… https://t.co/7dyyszZXtU +06/24/2018,Social_workers,@socworkpodcast,"ABFT, DBT & I-CBT are three family-based psychotherapies that reduce #suicide risk in adolescents. Why do they work… https://t.co/msWRUyoPqM" +06/24/2018,Social_workers,@socworkpodcast,Listen to the #SocialWork Podcast? I would be so grateful if you left a review on iTunes. https://t.co/enKzYZjGVv TY! - Jonathan +06/24/2018,Social_workers,@socworkpodcast,Nearly 50% of school social workers aren't equipped to deal with #cyberbullying. Here are 3 things we can do. https://t.co/zqiPBdjzDu +06/24/2018,Social_workers,@socworkpodcast,Listen to the Social Work Podcast? Please take our Audience Survey. It helps us learn more about you. TY! https://t.co/BgwHasZ7pQ #APM16 +06/24/2018,Social_workers,@socworkpodcast,@moundhousedude https://t.co/GmGUog48Fq +06/24/2018,Social_workers,@socworkpodcast,RT @moundhousedude: @socworkpodcast No problem! Thank you for all the good work you do in the social work world! +06/24/2018,Social_workers,@socworkpodcast,@moundhousedude Yes! This is 100% true. Thanks for conversation about this. +06/24/2018,Social_workers,@socworkpodcast,RT @moundhousedude: @socworkpodcast I’m so glad you’re discussing this. Too often the service provider’s well-being takes a backseat to the… +06/24/2018,Social_workers,@socworkpodcast,"@DrJulieHanks @NewHarbinger @HealingOutdoors I will always be your biggest fan, Julie :-)" +06/24/2018,Social_workers,@socworkpodcast,"RT @socwkinprogress: From a social worker, this candid perspective. @NASWMA⁩ @NASW ⁦⁦@Hunter_College⁩ ⁦@CCF_Families⁩ ⁦@socworkpodcast⁩ ⁦@n…" +06/24/2018,Social_workers,@socworkpodcast,RT @SD_SocialWorker: @AmericanAir wondering if you would support #socialworkers #nurses to support reduced/no travel costs to inspect #Dete… +06/24/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: @NWMHgrads Very true! People want understanding and connection, not an interrogation. Have you seen my book ""Helping the…" +06/24/2018,Social_workers,@socworkpodcast,RT @LoyolaSSW: The Rome study abroad group is having a great time. We just got a sneak peek 🙂coming from VaticanCity! Students &faculty att… +06/24/2018,Social_workers,@socworkpodcast,"RT @brooklyn11210: #Resist +#MacroSW +#swtech +@unu_cs +@socworkpodcast https://t.co/PDT7PkjZI4" +06/24/2018,Social_workers,@socworkpodcast,RT @creightonc: Proud to have @socworkpodcast as secretary of our @AASuicidology board. And having spent all day with @WileySocieties today… +06/24/2018,Social_workers,@socworkpodcast,Wow. @KimLeifso I'm so glad to hear that this article was so helpful. It is not often that I hear about a practical… https://t.co/A5Ia2EAptS +06/24/2018,Social_workers,@socworkpodcast,RT @socwkinprogress: Why companies need to hire social workers https://t.co/Xmm1SFsvAw Well done @PittTweet @uscsocialwork @USCDeanFlynn @W… +06/24/2018,Social_workers,@socworkpodcast,RT @DavidSusman: @socworkpodcast NEW post! 10 Simple Ways to Help Manage ‘Overwhelm’ https://t.co/UvacifSx5j #mentalhealth +06/24/2018,Social_workers,@socworkpodcast,"RT @SchoolSocWork: Please spread the word: info sessions coming up 6/26 & 7/12, apps due 8/1 for our Fall cohort! @GK_SSW @OaklandSSW @doco…" +06/24/2018,Social_workers,@socworkpodcast,"RT @KayWarren1: I had the incredible opportunity to talk w/ Dr. Jerry Reed, about the impact of mental illness & suicide prevention among m…" +06/24/2018,Social_workers,@socworkpodcast,RT @creightonc: whoa- just realized today marks exactly one year since I started at @AASuicidology . #aas365 +06/24/2018,Social_workers,@socworkpodcast,RT @melaniesage: A4. Did you know that you can be a non-lawyer representative in immigration court? @RAICESTEXAS has online training. Loca… +06/24/2018,Social_workers,@socworkpodcast,"RT @jcgreenfield: #SingleStagingArea NOW. Reuniting these kids with their parents must become a top priority. It’ll take teamwork, but we c…" +06/24/2018,Social_workers,@socworkpodcast,"RT @SFreedenthal: The resources page on my website, https://t.co/u8Z3ZwDU8f, has received 26,000 hits in the last 2 weeks because of media…" +06/24/2018,Social_workers,@socworkpodcast,"The 2018 NASW Code of Ethics has 19 changes, most related to #SWTech. Allan Barsky and I talk about 7 of them. List… https://t.co/zjulpEtWe6" +06/24/2018,Social_workers,@socworkpodcast,"I have 66 new followers from USA, UK., Canada, and more last week. See https://t.co/OXZLlGT1K1 https://t.co/jaqxeNIcSe" +06/24/2018,Social_workers,@socworkpodcast,So many ways to listen to the #SocialWork Podcast! Google Play: https://t.co/q2RVQukxwm The Stitcher app:… https://t.co/hxbbQ5g4c8 +06/24/2018,Social_workers,@socworkpodcast,12 ways that every school of #socialwork can use simulation to improve student competence. Episode 120 featuring Un… https://t.co/GZmbpf25O8 +06/24/2018,Social_workers,@socworkpodcast,"Self care takes planning, dedication, and good friends to support you. Listen to Erlene Grise-Owens and her good fr… https://t.co/6AkjgBxotz" +06/24/2018,Social_workers,@socworkpodcast,"Work with kids? We wrote ""#Suicide in Schools: A Practitioner's Guide"" for you. https://t.co/U7DHxKevKm Free forms. Best practices." +06/24/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/ftrtj7EC68 Thanks to @govtrack @RitaWorlock #mentalhealth +06/23/2018,Social_workers,@socworkpodcast,You've screened & assessed for suicide risk. Now what? Suicide Risk Monitoring: the Missing Piece in #Suicide Risk… https://t.co/ieVRoVBvJ0 +06/23/2018,Social_workers,@socworkpodcast,"When guns are as common as furniture, preventing suicide by firearm requires 1) making the invisible visible and 2)… https://t.co/QC66WhJWhG" +06/23/2018,Social_workers,@socworkpodcast,Listen to Stacey Freedenthal talk about what you should know AND what you should do when working with the suicidal… https://t.co/lRJWXp3av4 +06/23/2018,Social_workers,@socworkpodcast,The latest The Social Work Podcast Daily! https://t.co/ftrtj7EC68 Thanks to @AllenFrancesMD @USAFacts @jcgreenfield… https://t.co/1WEdJZC1Xw +07/01/2018,Social_workers,@johannagreeson,"Students sew 1,000 moccasins for Indigenous children in foster care - Prince Rupert Northern View https://t.co/HSfoPFMzf1" +07/01/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/EhRO612Tks Thanks to @rryanhowells @Umpire20 @DevereuxCEO #fostercare #adoption +06/30/2018,Social_workers,@johannagreeson,RT @TheFosterNation: The Support that is Helping Make #College Graduation a New Reality for #FosterYouth Via @ChronicleSC: https://t.co/v1C… +06/30/2018,Social_workers,@johannagreeson,"RT @RJLFoundationPA: #Mentorship could change the face of the #fostercare system. Read about the importance of mentors. +https://t.co/ku1EId…" +06/30/2018,Social_workers,@johannagreeson,How Australia's Foster Care System Is Forcing Teenagers Into Homelessness https://t.co/DqVX2kthwc +06/30/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/4kcej4kBIw Thanks to @StevenNitah @ChronicleSC @Foster_EDU #fostercare #adoption +06/30/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 1.81K Mention Reach, 10 Likes, 12 Retweets, 13.1K Retweet Reach. See yours with… https://t.co/DL1wpLCYbt" +06/29/2018,Social_workers,@johannagreeson,One local nonprofit views life in foster care through a child’s eyes - Greenville Journal https://t.co/cd7Yrjnwsy +06/29/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/U9yYEUPx0C Thanks to @iacob920 @Vitaminnies @Reach_Church #fostercare #adoption +06/29/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @OneSimpleWish, @DGletow, @JoshIsBae81. Thank you! via https://t.co/fuzTp9tmoO https://t.co/25kkXYWVu9" +06/28/2018,Social_workers,@johannagreeson,"Biological, foster, adoptive father reflects on Father's Day https://t.co/ZrolbzeiAx" +06/28/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/J8N3NGZjM6 Thanks to @Fosteringltd @LogicGrl @MMS_Group #fostercare #adoption +06/28/2018,Social_workers,@johannagreeson,"RT @repjohnlewis: Do not get lost in a sea of despair. Be hopeful, be optimistic. Our struggle is not the struggle of a day, a week, a mont…" +06/28/2018,Social_workers,@johannagreeson,Ever wonder how a judge decides if a child should be separated from his/her/their parents? & what that says about ⁦… https://t.co/dbkg3IN78j +06/27/2018,Social_workers,@johannagreeson,"2018 KIDS COUNT data are here from @aecfkidscount but as I question in this @CNN article, where are the… https://t.co/dXf2UQjCL9" +06/27/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: What does it mean to bring youth voice to the table? Marcia Hopkins, our Youth Advocacy Program Manager, explains how advoc…" +06/27/2018,Social_workers,@johannagreeson,Where are the child #maltreatment data in @aecfkidscount new 2018 report? #childwelfare #childwellbeing https://t.co/lSi2z9G24f +06/27/2018,Social_workers,@johannagreeson,"RT @PRDiva91: On @CNN, @PennSP2 @fieldcenter researcher @johannagreeson +talks #childwelfare and questions why child maltreatment #data was…" +06/27/2018,Social_workers,@johannagreeson,"RT @saray9192: Who will look at this important collection of Kids Count data? Who should? EVERYONE! As @johannagreeson also questioned,…" +06/27/2018,Social_workers,@johannagreeson,MPs calls for over-40s to pay a ‘social care premium’ https://t.co/NYMSTqFmj3 +06/27/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/X5BjNXT9Fj Thanks to @amik_ca @thaliahendo @elizabethaself #fostercare #adoption +06/26/2018,Social_workers,@johannagreeson,Alabama counties need more foster care homes https://t.co/9HqJgAHOwS +06/26/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/lBNOqznWXO Thanks to @VBVeeBee @DukeEndowment @MadisonJaye_ #fostercare #adoption +06/26/2018,Social_workers,@johannagreeson,Navigating resources for youth in #fostercare or who are #homeless in Philly can be tough. #YouthMattersPhilly app… https://t.co/Fyh7KkX2GT +06/25/2018,Social_workers,@johannagreeson,@ThirdLie #permanency #childwelfare #ChildRights #Immigration #ImmigrantChildren +06/25/2018,Social_workers,@johannagreeson,Foster care saved me: How a loving home turned a life around https://t.co/v7eyHd4F6P +06/25/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/PsfW6izuP0 Thanks to @OkAporia @PhillyAdvoKid @BeMyAdvocate #fostercare #adoption +06/24/2018,Social_workers,@johannagreeson,Inside the Native American Foster Care Crisis Tearing Families Apart https://t.co/l1eVNMxMGs +06/24/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/ETsdlhCmlV Thanks to @mccourt559 @PenLegacy @neotheprimal #fostercare #adoption +06/23/2018,Social_workers,@johannagreeson,"Arian Foster, Andre Johnson team up for youth football camp https://t.co/DhJJZLsUdw" +06/23/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/xjIuv5jwfc Thanks to @fosterhood @AshleighHNews @darkraincld #fostercare #adoption +06/23/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 1 Mention, 8 Likes, 6 Retweets, 1.31K Retweet Reach. See yours with https://t.co/NBMY2tsSf6 https://t.co/Q9ynD5qOQK" +06/22/2018,Social_workers,@johannagreeson,"RT @PennSP2: “The long-term adverse consequences of forced family separation will be felt for years to come,” says SP2's Antonio García, fo…" +06/22/2018,Social_workers,@johannagreeson,Kids brought to NYC immigration foster agency https://t.co/od8Hd8HUZf +06/22/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/eCDi4dAW7x Thanks to @AvantGardeFFA @RJLFoundationPA @MikeLoBurgio #fostercare #adoption +06/22/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @Brenda64, @TmiEnterprises. Thank you! via https://t.co/fuzTp9tmoO https://t.co/kSjXwQTIbE" +06/22/2018,Social_workers,@johannagreeson,"RT @Lexie_Gruber: .@RepKarenBass is one of the most ardent fighters for vulnerable children, and I hope we elect more women like her. https…" +06/21/2018,Social_workers,@johannagreeson,RT @AvantGardeFFA: Aging out of #fostercare doesn't have to be a nightmare for 18 yr olds. See how #California and other states are easing… +06/21/2018,Social_workers,@johannagreeson,@HelenGymAtLarge @PHLCouncil Does the multi-agency task force need members of the #Philly community who are researc… https://t.co/MVFk511pyg +06/21/2018,Social_workers,@johannagreeson,RT @DGletow: We will be here. For the kids reunified. For the kids placed in #fostercare. For the kinds in group homes. For the kids trauma… +06/21/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Terms such as ""transitioning"" & ""aging out"" de-normalizes and stigmatizes youth in care experience: http://t.co/w5PXS5D…" +06/21/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Improving foster care starts with relationships, advocates say https://t.co/UdsdgVKEFT #youthincare #fostercare #bcpoli…" +06/21/2018,Social_workers,@johannagreeson,RT @MelanieMDoucet: ‘It’s Like Being Pushed Off A Cliff’: Indigenous Youth On Aging Out Of Foster Care https://t.co/mLcTGGspRS #agingout #f… +06/21/2018,Social_workers,@johannagreeson,.@MelanieMDoucet from @mcgillu confirms ‘Relationships Matter’ for youth #agingout of #fostercare but you may be su… https://t.co/5kCCpsK77R +06/21/2018,Social_workers,@johannagreeson,"RT @DGletow: Every day at @OneSimpleWish we receive simple wishes from kids in #fostercare who are missing their siblings, families & feeli…" +06/21/2018,Social_workers,@johannagreeson,RT @DGletow: Media!Celebs! Ppl who just realized we have an issue w/ how we treat vulnerable kids in our country. Welcome. Now use your pla… +06/21/2018,Social_workers,@johannagreeson,"Immigrant children as young as 3 months old are being separated from parents, Michigan agency says https://t.co/Obs684iLsM" +06/21/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/29CAaCxhFf Thanks to @bteachey2 @Ganosono @morrisoncrying #fostercare #adoption +06/21/2018,Social_workers,@johannagreeson,@OneSimpleWish has established a Kids in Crisis Wish Fund to ensure that as needs & wishes come in from children im… https://t.co/o0zo1dgvM3 +06/20/2018,Social_workers,@johannagreeson,"Opinion | ‘If It Could Happen to Them, Why Can’t It Happen to Us?’ https://t.co/6GTELiYcVm" +06/20/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/CiDGzzIeOV Thanks to @Inferior_court_ @NomadCovfefe @HeartOCourage #fostercare #adoption +06/19/2018,Social_workers,@johannagreeson,RT @AdoptUSKids: A former foster youth shares 7 ways you can help kids in foster care https://t.co/gH9IqOTadI #fostercare https://t.co/2ek3… +06/19/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: Foster care is not a panacea. As the # of children in #FosterCare rises b/c of #opioidcrisis, more programs are needed to help…" +06/19/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +06/19/2018,Social_workers,@johannagreeson,RT @TheFosterNation: #Education Policy Needs to Catch Up to the Needs of #FosterCare Youth Via @TeenVogue: https://t.co/pLgepzPMzK +06/19/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Breaking: #HB1745 - the tuition waiver and support bill for foster/former foster youth just passed out of the House Educati… +06/19/2018,Social_workers,@johannagreeson,Immigrant children separated from parents land in foster care https://t.co/Aqq0ZjeVJQ +06/19/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/wtAK7zAb1m Thanks to @Netsbridge @hj2_day @seamuskearney_ #fostercare #adoption +06/17/2018,Social_workers,@johannagreeson,Thousands of Children in the UK Foster Care System Are Being Sold to Pedophile Rings https://t.co/998QXvAtan +06/17/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/nPO1bN99fj Thanks to @TheKnittedBrow @KultureGuides @RiversJohna… https://t.co/fahaOnlZOw +06/16/2018,Social_workers,@johannagreeson,South Carolina Sought an Exemption to Allow a Foster-Care Agency to Discriminate Against Non-Christians https://t.co/EDHNijNn3i +06/16/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/L0liGpIMCV Thanks to @missmyhappybird @JournalTribune @Hayden_Whateley #fostercare #adoption +06/16/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 4 Mentions, 11 Likes, 9 Retweets, 3.18K Retweet Reach, 1 Reply. See yours with… https://t.co/XumY7xARi7" +06/15/2018,Social_workers,@johannagreeson,Are you on board with youth boards? | News | https://t.co/f4gfCBIDEC https://t.co/TUJfXZ1xFP +06/15/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/vaWg9nYWUh Thanks to @VIHealthyLife1 @Flintastic @infoCWRP #fostercare #adoption +06/15/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @WriterChickNJ, @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/pFyFgwOoyD" +06/14/2018,Social_workers,@johannagreeson,"US Foster Care Supplies 88 Percent of Sex Trafficked Children, Study Finds https://t.co/jvCzNPEDhU" +06/14/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/DxvCK877Gn Thanks to @tpalya68 @1000LivesWales @AGAPEofNC #fostercare #adoption +06/13/2018,Social_workers,@johannagreeson,RT @TheFosterNation: How Homelessness Crisis in #LA Affects Aged-out #FosterYouth Via @YouthToday: https://t.co/YUnXdBhY7M +06/13/2018,Social_workers,@johannagreeson,How Homelessness Crisis in LA Affects Aged-out Foster Youth - Youth Today https://t.co/oChXy3diwL +06/13/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/JmdlcppECX Thanks to @JennyMikakos @whitebrownsugar @agingoutinst #fostercare #fostering +06/12/2018,Social_workers,@johannagreeson,"RT @YSRPinPhilly: ""Studies confirm what common sense tells us: young people are safer, and do better, when they are in age-appropriate sett…" +06/12/2018,Social_workers,@johannagreeson,Check out my #naturalmentoring intervention for older youth in #fostercare https://t.co/miqUW3Sc1k #oneadult https://t.co/wKwyWWfOyR +06/12/2018,Social_workers,@johannagreeson,Kids living in motel rooms amid critical shortfall in foster care https://t.co/KPJs2rlqFk +06/12/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/b5GSo05DBA Thanks to @lks221 @FamUnite4Child @TreeHouseCare #fostercare #adoption +06/12/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: With the # of children in #fostercare growing, we need more love not less. Did you know that 8 states have laws on the books t…" +06/12/2018,Social_workers,@johannagreeson,"RT @MilesEllis4: Get this people can marry the same sex but there’s still laws preventing LGBT from adopting. There also more than 400,000…" +06/11/2018,Social_workers,@johannagreeson,"RT @ChildrensRights: Amazing work from @TeenVogue & @JuvLaw1975 elevating #fosteryouth voices in the new series, #FosteredorForgotten! Educ…" +06/11/2018,Social_workers,@johannagreeson,RT @jennypokempner: Education Policy Needs to Catch Up to the Needs of Foster Care Youth https://t.co/sN84GCq1SQ via @TeenVogue #fosteredsu… +06/11/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +06/11/2018,Social_workers,@johannagreeson,NSW says it is releasing sensitive stadiums and foster care documents 'voluntarily' https://t.co/kiRWiBGEHj +06/11/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/WXMDbrdvEe Thanks to @NewsChannel256 @awake_africa @NCCPR #fostercare #childwelfare +06/10/2018,Social_workers,@johannagreeson,RT @VYHouse: Spread the word that having a couch to sleep on is NOT stable housing! #couchesdontcount #valleyyouthhouse https://t.co/Ae2Idi… +06/10/2018,Social_workers,@johannagreeson,RT @VYHouse: With 40% of homeless youth identifying as LGBTQ #pridemonth is the perfect time to talk about why #couchesdontcount https://t.… +06/10/2018,Social_workers,@johannagreeson,RT @TheFosterNation: How Prevention Services Could Help Youth Avoid the #FosterCare System Via @TeenVogue: https://t.co/hrbtQWc8Db +06/10/2018,Social_workers,@johannagreeson,"RT @ChronicleSC: Juvenile Law Center (JLC), with the support of the Annie E. Casey Foundation, has built an excellent new resource for the…" +06/10/2018,Social_workers,@johannagreeson,Justin Willis aims to raise awareness about U.S. foster care systems: ‘It created what I am today’ https://t.co/uVQIs6tR9Y +06/10/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/FZdW7SBXBS Thanks to @CauriePutnam @TripTrundle @epitomee #fostercare #adoption +06/10/2018,Social_workers,@johannagreeson,RT @PPEHRCorg: WE HAVE ARRIVED!!! Donate: https://t.co/h55yuR976z RT @DCMediaGroup: Happening Now: Poor Peoples Campaign march from Philade… +06/10/2018,Social_workers,@johannagreeson,"RT @RJLFoundationPA: Currently finishing his #masters in social work, Mark struggled to finish his #associates while homeless after he aged…" +06/09/2018,Social_workers,@johannagreeson,Foster youth celebrate their achievements at graduation ceremony https://t.co/aNcx5vdgOg +06/09/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/z92OVy09AG Thanks to @FosterFocusMag @munstermaid @RobertRoscoe14 #fostercare #adoption +06/09/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 4 Mentions, 196 Mention Reach, 22 Likes, 10 Retweets, 5.14K Retweet Reach. See yours with… https://t.co/1WcXUo5NKJ" +06/08/2018,Social_workers,@johannagreeson,We have weaponized the callous traumatization of children in the name of the promised immigration reform. https://t.co/4fKmsTrNz4 +06/08/2018,Social_workers,@johannagreeson,RT @socworkpodcast: Suicide prevention rockstar @Grace_Durbin posted a list of 13 interactions that could save a life. I loved them so much… +06/08/2018,Social_workers,@johannagreeson,RT @StoneleighFdn: #StoneleighEmergingLeader @semimora along w/ @fieldcenter is leading an initiative to help PA colleges & universities de… +06/08/2018,Social_workers,@johannagreeson,RT @TheFosterNation: I Was a Foster Child and Now I'm a #FosterCare Activist Via @TeenVogue: https://t.co/MrhSUmBWAc Written by our very ow… +06/08/2018,Social_workers,@johannagreeson,#SUICIDE PREVENTION HELP: Here is information on #suicide prevention from the National Institute of Mental Health.… https://t.co/6Ephpp1ike +06/08/2018,Social_workers,@johannagreeson,'He's a biter': why was my foster son reduced to a cruel label? | Krish Kandiah https://t.co/yn9F55XeCL +06/08/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/XcTSPC6XkO Thanks to @TXICFW @WPTV @joshkulla #fostercare #adoption +06/08/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @childwelfarelaw, @mlayten, @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/6vNKj32Kh0" +06/07/2018,Social_workers,@johannagreeson,"RT @dan_treglia: Bending the Arc, our podcast about social justice issues and the people ensuring that the arc of the moral universe reache…" +06/07/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Take a look @ the Relationships Matter for Youth 'Aging Out' of Care Project Video, ft. the talents & expertise of 8 fo…" +06/07/2018,Social_workers,@johannagreeson,Troubling Trends in Foster Care - Parental Rights Foundation https://t.co/iYjctp4Vva +06/07/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/ggFosfxjva Thanks to @ChadwickCenter @anneheffron @MiddayWYPR #fostercare #adoption +06/06/2018,Social_workers,@johannagreeson,"From DACA students to Rhodes Scholars to foster-care youth, a look at some unusual college-goers - The Hechinger Re… https://t.co/0SSYb7HuWs" +06/06/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/GZyr4X0qYk Thanks to @AttyJPaine @Rebecca4BrklRep @EADeBoestauthor #fostercare #adoption +06/05/2018,Social_workers,@johannagreeson,"RT @cfjjma: Thank you @TeenVogue @JuvLaw1975 for this excellent coverage of the foster care to prison pipeline: + +https://t.co/VzcSxc22va" +06/05/2018,Social_workers,@johannagreeson,Congress Proposes Fix to Provide Medicaid for Former Foster Youth Up to Age 26 https://t.co/ECM7H72IpU +06/05/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/76RnrJI2Tq Thanks to @phonzeygaming @drjohndegarmo @RunnerPark #fostercare #fosteryouth +06/04/2018,Social_workers,@johannagreeson,"Check out Caring Adults 'R' Everywhere (C.A.R.E.), a #naturalmentoring intervention for older youth in #FosterCare:… https://t.co/GU6LcTnvCF" +06/04/2018,Social_workers,@johannagreeson,RT @OneSimpleWish: It would be SUPER amazing @JimmyFowlie if you would help us get 5 y/o Kayden's super cool birthday wish for a boy doll g… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Want to learn more about Youth Matters Philly? Take a look: https://t.co/urxOnI4fKb +06/04/2018,Social_workers,@johannagreeson,@greg_rapport YES! You can reach me jgreeson@sp2.upenn.edu +06/04/2018,Social_workers,@johannagreeson,Opinion | The Long History of Child-Snatching https://t.co/DrogKJyith +06/04/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/CoO1RSOEO6 Thanks to @TerriLaPoint @lgbtmap @mridleythomas #fostercare #adoption +06/04/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: Are you a young person in foster care in Philly, or are you facing homelessness? #YouthMattersPhilly is for you. https://t.…" +06/04/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: ICMYI: @JuvLaw1975 launched National Extended Foster Care Review: 50-State Survey of Law and Policy https://t.co/vEKeKWFZJS +06/04/2018,Social_workers,@johannagreeson,RT @ctrupin: This 50-state review of extended foster care-one of the more powerful policies to #endyouthhomelessness-is worth a look! Kudos… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Use @YouthMattersPHL to locate services from housing to recreation to educational opportunities. Putting power in the… +06/04/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Youth leaving #juvenilejustice system often need help navigating resources. #YouthMattersPhilly makes it easier: https… +06/03/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: Here's what a teen in foster care wants you to know. ""I have had those moments when I thought... 'I'm almost grown, nobody…" +06/03/2018,Social_workers,@johannagreeson,"RT @TeenVogue: ""The only thing keeping me afloat was the idea of preserving anything I saw as good for me and hoping for something better d…" +06/03/2018,Social_workers,@johannagreeson,"RT @socworkpodcast: Lots of laughter in this episode: Self care for social workers. No, it isn't all deep breathing and walks on the beach.…" +06/03/2018,Social_workers,@johannagreeson,"He Grew Up Abused In Foster Care. Now He's An Executive, And Success Is His Revenge https://t.co/2N3HGH3nEI" +06/03/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/N3B1VqPlol Thanks to @dgcars @Oh_Honestly_LC @AFTH_org #fostercare #fostercaresystem +06/03/2018,Social_workers,@johannagreeson,"RT @chronicle: Your students need you to be that teacher: the one who goes the extra step, the one who takes care of herself so she can con…" +06/02/2018,Social_workers,@johannagreeson,From foster care to Peace Corps posting: A journey of determination https://t.co/PLFFyMTBw0 +06/02/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/sIMAaXlixf Thanks to @pollyfountain @diastella1 @hlsteed #fostercare #fostering +06/02/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 1.6K Mention Reach, 26 Likes, 16 Retweets, 24.3K Retweet Reach. See yours with… https://t.co/Wde9a18Js8" +06/01/2018,Social_workers,@johannagreeson,"@BoysandGirlsAid @ChronicleSC It’s an amazing school & community full of caring, committed adults changing the live… https://t.co/nqVkfMVZ09" +06/01/2018,Social_workers,@johannagreeson,RT @ChildrensRights: Kids in #fostercare face a higher risk of being incarcerated—with devastating consequences. “As soon as kids get label… +06/01/2018,Social_workers,@johannagreeson,RT @JessicaFeierman: Our youth in foster care shouldn’t have to fight for educational opportunities. Thank you @YouthFChange and @FosterEdS… +06/01/2018,Social_workers,@johannagreeson,"RT @RachelAnspach: Youth in foster care are criminalized for normal teenage behavior, further destabilizing their lives. I reported on the…" +06/01/2018,Social_workers,@johannagreeson,@ChronicleSC @BoysandGirlsAid You should also consider a story about CB Community School here in Philly! +06/01/2018,Social_workers,@johannagreeson,RT @TamsinStirling1: I keep finding interesting examples of work to #endyouthhomelessness from N America https://t.co/7QP2XQWwVR +06/01/2018,Social_workers,@johannagreeson,RT @YouthFChange: Our member Johnathan has a strong new piece about educational hurdles for youth in foster care as part of the #fosteredor… +06/01/2018,Social_workers,@johannagreeson,RT @ProjectMMH: This tool has been needed for some time. Great work @JuvLaw1975! --> Every State’s Extended Foster Care Policies Now Availa… +06/01/2018,Social_workers,@johannagreeson,"RT @JuvLaw1975: As we exit National Foster Care Month and enter Pride Month, please check out this powerful piece in the #FosteredorForgott…" +06/01/2018,Social_workers,@johannagreeson,"Ed Gillespie Joins America’s Kids Belong, Focused on Foster Care | National Review https://t.co/Q2bsbOKuI3" +06/01/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/MXnKNDUMQl Thanks to @WDVMTV @MSTODAYnews @ricediver #fostercare #adoption +06/01/2018,Social_workers,@johannagreeson,"Our biggest fans this week: @JuvLaw1975, @exfkaty, @saxenmeyer. Thank you! via https://t.co/fuzTp9tmoO https://t.co/4g9ZabYjH9" +06/01/2018,Social_workers,@johannagreeson,"RT @KellyMRosati: Today is the last day of national foster care month. Thanks to all the hard working social workers, court appointed speci…" +06/01/2018,Social_workers,@johannagreeson,"RT @ctrupin: As Arianna and Randy's stories illustrate, the foster care to prison pipeline runs right through and to homelessness. https://…" +06/01/2018,Social_workers,@johannagreeson,"RT @TeenVogue: ""I lost a year of education in my residential treatment facility placement — it felt like a camp where the system sends kids…" +05/31/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: BREAKING: Juvenile Law Center Launches National Extended Foster Care Review https://t.co/0WBAfWdcsH +05/31/2018,Social_workers,@johannagreeson,RT @TheFosterNation: 100 Former #FosterYouth Visit Members of Congress to Advocate for Child Welfare Reform Via @swhelpercom: https://t.co/… +05/31/2018,Social_workers,@johannagreeson,RT @LisaSwaminathan: I am so excited to share Juvenile Law Center's National Extended Foster Care Review - a new tool for advocates and pol… +05/31/2018,Social_workers,@johannagreeson,RT @ProjectMMH: As #FosterCareMonth comes to an end we hope you will keep the awareness going! Most of all we hope you see past the big num… +05/31/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: The newest piece in the #FosteredorForgotten series is from our Child Welfare Policy Director @jennypokempner and @YouthLaw… +05/31/2018,Social_workers,@johannagreeson,"RT @MelanieMDoucet: Presenting my research & project video @ #CASWE18 this aft, 4:30-5pm Campion College CM Auditorium. Come witness the ta…" +05/31/2018,Social_workers,@johannagreeson,10 Key Resources for Child Welfare Professionals - The Annie E. Casey Foundation https://t.co/1kIRnBzhy1 +05/31/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/AmbEHnMqwj Thanks to @LisaSwaminathan @lauraboccaleone… https://t.co/uOnTvUJMff +05/31/2018,Social_workers,@johannagreeson,"RT @nctsn: NCTSN has resources for #childwelfare professionals! Visit https://t.co/kclU69kFly +#NFCM2018 #FosterCareMonth #FosterYouthVo…" +05/30/2018,Social_workers,@johannagreeson,"RT @PennSP2: Watch @TaranaBurke #PennSP2 commencement speech tonight on C-Span. +@cspan #metoo https://t.co/b1iNe21gT8" +05/30/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: Here's what a teen in foster care wants you to know. ""I have had those moments when I thought... 'I'm almost grown, nobody…" +05/30/2018,Social_workers,@johannagreeson,"‘They Deserve It’: In Foster Homes, Veterans Are Cared For Like Family https://t.co/Up4p8NHHd9" +05/30/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/04E8GVJZSj Thanks to @ORKingsford @AcornCareFoster @thisisroxanne… https://t.co/EJ8MJk3G7L +05/29/2018,Social_workers,@johannagreeson,RT @RepKarenBass: The purpose of our child welfare system is to protect children from abuse or neglect. Never in history has this system be… +05/29/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: What is the foster care-to-prison pipeline? https://t.co/yB085pxJAF #FosteredorForgotten #NationalFosterCareMonth #FosterCa… +05/29/2018,Social_workers,@johannagreeson,Young people enter foster care when the courts determine they need to be temporarily or permanently removed from th… https://t.co/JozYVS6nud +05/29/2018,Social_workers,@johannagreeson,"This #FosterCareMonth, I stand with #FosterMore. Watch their new PSA with Jodie Blum and learn more about how to fi… https://t.co/zzuJsd5yFA" +05/29/2018,Social_workers,@johannagreeson,VA turns to foster care for veterans instead of nursing homes https://t.co/pq1C4m3hnJ +05/29/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/KdbMJ3JuX1 Thanks to @adoptolderkids @ProjectMMH @BeMyAdvocate #fostercare #fostercaremonth +05/28/2018,Social_workers,@johannagreeson,VA turns to foster care for veterans instead of putting them in nursing homes https://t.co/7NmDUcS6ZP +05/28/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/1xb115f7Go Thanks to @curraghman @knoxvilletimes @DeploReport #fostercare #fostercaremonth +05/27/2018,Social_workers,@johannagreeson,RT @nctsn: It’s #NFCM2018. Learn about #crossoveryouth at https://t.co/ulDna3hw3a #FosterCareMonth #FosterYouthVoices #FosterCare https:/… +05/27/2018,Social_workers,@johannagreeson,The Foster Care to Prison Pipeline Impacts America's Most Vulnerable Youth https://t.co/sjvUrjLnTD +05/27/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/Ym6NZwMsfc Thanks to @sokicamz @julesjup @RealMeghSingh #fostercare #fostercaremonth +05/27/2018,Social_workers,@johannagreeson,"RT @nctsn: NCTSN has resources for #childwelfare workers. Visit https://t.co/laXG0tSKjT +#NFCM2018 #FosterCareMonth #FosterYouthVoices…" +05/27/2018,Social_workers,@johannagreeson,"RT @adoptolderkids: Because no one is unadoptable. + +We envision a day when no child is asked to face adulthood alone, when every child agin…" +05/26/2018,Social_workers,@johannagreeson,"Before it's over, May is Foster Care Month: Native foster families are needed https://t.co/BpTkQ4eUyg" +05/26/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/dWRPZRf1tA Thanks to @carrietobey @bearpawshoes @AprilYoungB #fostercare #fostercaremonth +05/26/2018,Social_workers,@johannagreeson,RT @TeenVogue: “I feel like since I’m just a black kid in foster care [the justice system] doesn’t want to see us given opportunities or he… +05/26/2018,Social_workers,@johannagreeson,So impressed that @TeenVogue is tackling this important issue! You work restores my #faith in #humanity!… https://t.co/lEEAWOCeIA +05/26/2018,Social_workers,@johannagreeson,"My week on Twitter 🎉: 2 Mentions, 9 Likes, 6 Retweets, 1.39K Retweet Reach, 2 New Followers, 1 Reply. See yours wit… https://t.co/nbSMhfmK6I" +05/25/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Many youth in foster care or formerly in foster care become advocates like our @YouthFChange members. Read about one person… +05/25/2018,Social_workers,@johannagreeson,"RT @LFC_nyc: Kids seeking safety, love and stability don't discriminate, nor should foster care agencies. Love is love. We stand with you @…" +05/25/2018,Social_workers,@johannagreeson,RT @jennypokempner: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https://… +05/25/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +05/25/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: The @YouthMattersPHL app just turned one year old! https://t.co/D6V44dKuOm +05/25/2018,Social_workers,@johannagreeson,What Must We Do about Foster Care? | National Review https://t.co/kwnOS3NCUX +05/25/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/0FDVk9LcoJ Thanks to @RonniePhilly @cebc4cw @LauraMoodyFox13 #fostercare #nfcm2018 +05/25/2018,Social_workers,@johannagreeson,Our biggest fans this week: @Brenda64. Thank you! via https://t.co/fuzTp9tmoO https://t.co/tLVlj3MQjL +05/25/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: Please check out @susanvmangold of @JuvLaw1975's op ed with @reggieshuford of @aclupa on the urgency of non discrimination… +05/24/2018,Social_workers,@johannagreeson,"RT @ProjectMMH: #FosterCareFact Day 24 - 10,500 youth in foster care have a case plan goal of Long Term Foster Care. 17,400 youth in foster…" +05/24/2018,Social_workers,@johannagreeson,"Pro-Life Should Include Foster Care, Too | National Review https://t.co/mOGS8SYiPh" +05/24/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/VrJ5knQQIO Thanks to @tfcsunderland @Casey_Foster_1 @NYSOCFS #fostercare #fostercaremonth +05/23/2018,Social_workers,@johannagreeson,"RT @AdoptUSKids: ""Every kid is one caring adult away from being a success story."" -Josh Shipp #fostercare #NFCM2018 https://t.co/x3R9wo85RS" +05/23/2018,Social_workers,@johannagreeson,RT @JuvLaw1975: #FosterCareMonth #FosteredorForgotten https://t.co/KJjAf0ZQ3r https://t.co/jvzBBf8NYr +05/23/2018,Social_workers,@johannagreeson,"RT @YouthMattersPHL: Finding services you need as a youth in foster care or facing homelessness is challenging. In #Philly, @YouthMattersPH…" +05/23/2018,Social_workers,@johannagreeson,RT @YouthMattersPHL: Navigating resources for youth in foster care in Philly can be tough. #YouthMattersPhilly app makes it easier: https:/… +05/23/2018,Social_workers,@johannagreeson,Fostering success - AACC 21st Century Virtual Center https://t.co/1NQWZcNxWf +05/23/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/5qNMxH9UKC Thanks to @danielrhamilton @RepPaulMitchell @JamieRossi6… https://t.co/msG82SACua +05/22/2018,Social_workers,@johannagreeson,#fosterstrong #NFCM2018 https://t.co/nnqkqxSSKi +05/22/2018,Social_workers,@johannagreeson,"'I was told to find a homeless shelter': Foster kids cut loose at 18 ending up jobless, homeless https://t.co/jadTPwCYoO" +05/22/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/newutTlsCF Thanks to @gary_pickles @tayknopf @legalscoop #fostercare #fostercaremonth +05/21/2018,Social_workers,@johannagreeson,Leave No One Orphaned | National Review https://t.co/rwKcCHJJaT +05/21/2018,Social_workers,@johannagreeson,The latest The Foster Care Daily! https://t.co/TWTpUe73MZ Thanks to @hackneycitizen @dominickambro @Cortigirl1 #fostercare #fcf18 +05/20/2018,Social_workers,@johannagreeson,RT @dream___makers: #BeTheChange https://t.co/KguIdgx7hF +07/02/2018,Social_workers,@JimmySW,"Adam Sandler sporting an @VCU shirt in this story :-) +Adam Sandler photobombs happy couple's wedding photo. https://t.co/h0hrR0WR8O" +06/29/2018,Social_workers,@JimmySW,@reneehobbs Just finished listening to this lecture. WOW. Such great information. I really appreciate this perspect… https://t.co/TW3cq9zj17 +06/27/2018,Social_workers,@JimmySW,RT @husITaOrg: husITa is delighted to announce the winners of the Best Human Services App Idea Award 2018. https://t.co/jtVuP2QP6Z +06/27/2018,Social_workers,@JimmySW,That @husITaOrg banner looks great 👍 👀 👍 #swtech https://t.co/LLjbNrO31l +06/27/2018,Social_workers,@JimmySW,RT @voxdotcom: Alexandria Ocasio-Cortez wasn't the only woman to score a major victory Tuesday. https://t.co/56dDDJKaRz +06/27/2018,Social_workers,@JimmySW,"RT @ddiamond: Merrick Garland was nominated on March 16, 2016 — or 237 days before that year’s election. McConnell said that was too close…" +06/27/2018,Social_workers,@JimmySW,"RT @RBReich: To those GOP senators who have spoken out against Trump's attacks on our democracy, now is your chance to stand firm on those…" +06/27/2018,Social_workers,@JimmySW,RT @acosaorg: Study: Needs Assessment Survey for a Resource to Support Evidence-Based Practice. The study is approved by the University of… +06/27/2018,Social_workers,@JimmySW,RT @MelindaHohman: My sister-in-law is collecting for supplies and clothes for 50 children separated from asylum-seeking parents who are ho… +06/26/2018,Social_workers,@JimmySW,"RT @pewinternet: Many users see social media as an especially negative venue for political discussions, but others see it as simply “more o…" +06/25/2018,Social_workers,@JimmySW,RT @reneehobbs: ICYMI: My lecture on The Competing Narratives of Digital and Media Literacy on #SoundCloud #medialiteracy #mediaecology2018… +06/24/2018,Social_workers,@JimmySW,@GoogleGuacamole @monicarysavy It’s a pretty versatile platform and their customer service has always been amazing IMHO. +06/24/2018,Social_workers,@JimmySW,@GoogleGuacamole @monicarysavy I use it all the time in my research (mostly surveys) but I have seen someone build… https://t.co/AqbhTGPBrA +06/23/2018,Social_workers,@JimmySW,This could have been in my recent blog post for @husITaOrg on #digitalliteracies https://t.co/CaVSSyijRp +06/23/2018,Social_workers,@JimmySW,RT @pewinternet: Americans have grown somewhat more ambivalent about the impact of digital connectivity on society as a whole https://t.co/… +06/23/2018,Social_workers,@JimmySW,A recent blog post I wrote for @husITaOrg about social media & digital literacies. #SWTech #digitalliteracies https://t.co/x5SifcmlYa +06/23/2018,Social_workers,@JimmySW,"RT @husITaOrg: husITa Board Member @AMLTaylor66 has been nominated on a slate for Female GovTech Leaders 2018, please RT and vote https://t…" +06/22/2018,Social_workers,@JimmySW,That’s because many Americans are starting to see that 1 or 5 or whatever $$$ amount there income went up is not ke… https://t.co/ntk7tikns3 +06/22/2018,Social_workers,@JimmySW,RT @njsmyth: I stand with my #socialwork colleagues at NADD against #ChildrenInCages And now we must address the harm this policy has cause… +06/21/2018,Social_workers,@JimmySW,RT @acosaorg: Join us at 9:00 PM EST tonight for #MacroSW Chat on current US #immigration #policy and what social workers should be doing.… +06/21/2018,Social_workers,@JimmySW,"@btblankenship and one more that I just did for @ARNOVA +https://t.co/KwNBMrur7k" +06/21/2018,Social_workers,@JimmySW,"@btblankenship Also, you can check out some of my publications here https://t.co/q2mA0SOawl +But specifically you mi… https://t.co/YMCqhkthl9" +06/21/2018,Social_workers,@JimmySW,"Hi @btblankenship here are some links to recent presentations regarding social media. +https://t.co/KwNBMrur7k +https://t.co/kpHax5Dht1" +06/19/2018,Social_workers,@JimmySW,Happy to help. I’ll try to tweet out some recent work/presentations I’ve done. You can always check out my blog… https://t.co/wlhtzmdNt1 +06/19/2018,Social_workers,@JimmySW,RT @Dr_Pracademic: New Article out on supporting new instructors in social work. With my mentor @spencerm1014 https://t.co/J0Mq0c2gAk +06/18/2018,Social_workers,@JimmySW,If Republicans control both houses of Congress & the Whitehouse AND they can craft tax reform radically altering th… https://t.co/W8aX8GKxLV +06/17/2018,Social_workers,@JimmySW,"My #FathersDay cards included stories of unicorns, dinosaurs, & hot wheels. Couldn’t have asked for anything better. I love being a dad 😃" +06/17/2018,Social_workers,@JimmySW,RT @SDSUSocialWork: A running list of how to help fight family separation at the border: https://t.co/zvqNz772A5 via @slate +06/17/2018,Social_workers,@JimmySW,"RT @lakeya_cherry: When your designer/photographer has a vision that's ""disruptive."" @TheNSWM #NSWM29 #leadership #Management #disruptivele…" +06/16/2018,Social_workers,@JimmySW,RT @brooklyn11210: @laurelhitchcock @CSocialWorkEd @karenzgoda @socworkpodcast @SJSworks @melaniesage @StuckonSW @Brendan_Beal @DrNJonesTSU… +06/16/2018,Social_workers,@JimmySW,RT @SDSUSocialWork: Thanks to @lakeya_cherry and our San Diego chapter of @TheNSWM for their hard work on this wonderful conference! Happy… +06/15/2018,Social_workers,@JimmySW,RT @njsmyth: Guiding principles of @2Uinc @chippaucek #NSWM29 #EdTech https://t.co/Gyd4HHu3y7 +06/15/2018,Social_workers,@JimmySW,"@OfficialMacroSW @spcummings @brooklyn11210 #FF, thanks for being my top influencers in the last week :) (Want this… https://t.co/8oq61zKg7c" +06/14/2018,Social_workers,@JimmySW,Thanks for coming to my presentation. So great to see all of you 😄 #NSWM29 https://t.co/dgVjDWanbA +06/14/2018,Social_workers,@JimmySW,RT @njsmyth: How Did We Get Here? Web 1.0 to Web 3.0 #NSWM29 https://t.co/BtLIOmby3L +06/14/2018,Social_workers,@JimmySW,RT @Sisgigroup: #Leaders have to have a purpose in whatever they do. We have to understand the change we want to see happen. What is my rol… +06/14/2018,Social_workers,@JimmySW,RT @Sisgigroup: It’s all about how much change you want to see. Being a disruptive leader is about pushing with intentional purpose for the… +06/14/2018,Social_workers,@JimmySW,"RT @_Patty_Ramirez_: ""Disruptive leadership maximizing inclusion, invention, and innovation in human services with meaningful purpose is wh…" +06/14/2018,Social_workers,@JimmySW,I’m at #NSWM29 and I hereby declare they have the best ribbons of any conference I’ve ever been to 😂😂😂 https://t.co/YmKYjH0o0n +06/13/2018,Social_workers,@JimmySW,I'm ready!!! Looking forward to this conference and meeting new colleagues. Should be a great time on the beautiful… https://t.co/7nzFqX5uVh +06/13/2018,Social_workers,@JimmySW,RT @kshaferbyu: Jeff Bezos said that he is spending money on space exploration because he doesn't know how else to spend it. Maybe better w… +06/13/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY San Diego is looking for a Consultant Psychiatrist for nine (9) hours a week at Reflections Day Treatment. This po… +06/13/2018,Social_workers,@JimmySW,"RT @CalSWEC: Make an difference in the lives of Californians! Apply to CalSWEC’s Title IV-E, https://t.co/IwyUQFYJaL and MHSA Stipend Progr…" +06/12/2018,Social_workers,@JimmySW,"RT @spcummings: Excellent article by @socworkpodcast. ""We need to address well-being starting in kindergarten, not wait until a high school…" +06/12/2018,Social_workers,@JimmySW,"RT @iamrodneysmith: Hello to Alabama . I will be mowing in Montgomery Tuesday morning . If you know of anyone who is elderly, disabled, a s…" +06/11/2018,Social_workers,@JimmySW,@laurelhitchcock @nancy_kusmaul #HappyMonday Check out the top influencers in my community this week! (via Twitter… https://t.co/Zs7MsaPk4l +06/08/2018,Social_workers,@JimmySW,#FollowFriday @matthod @EJohnsonLCSW - top engaged members this week :) - Get your [Free] scheduled tweet here: https://t.co/xi7BVuOrua +06/08/2018,Social_workers,@JimmySW,RT @reneehobbs: Summer time is a good time for reflection: How many of these instructional practices of media literacy education do you use… +06/07/2018,Social_workers,@JimmySW,"RT @CSocialWorkEd: The House will soon be voting on #PROSPERAct (H.R. 4508), which will negatively impact #highereducation & #socialwork st…" +06/07/2018,Social_workers,@JimmySW,RT @lakeya_cherry: Got Swag? A sneak preview of our #NSWM29 swag this year! #socialworkerslead #MacroSW https://t.co/7yDIXkMAsY +06/07/2018,Social_workers,@JimmySW,"RT @DrPraxisAlly: To all social justice, social work, and community organizers out there... What are your favorite & current macro practice…" +06/06/2018,Social_workers,@JimmySW,Making #DeleteFacebook easier every single day!!! https://t.co/uQIKf44nKB +06/06/2018,Social_workers,@JimmySW,RT @lakeya_cherry: It's Official! @TheNSWM 30th Anniversary Conference is going to be in #Chicago! I'm super excited to partner w/ Dean #Go… +06/04/2018,Social_workers,@JimmySW,Kudos to @Apple for taking these steps. Anyone know if newspapers did things to cut their risk factors for poor hea… https://t.co/uRuQWx016G +06/04/2018,Social_workers,@JimmySW,@matthod I think this one would suit you very well https://t.co/39p2wrTE1U 😂😂😂😂😂😂 +06/04/2018,Social_workers,@JimmySW,@courtneyann2018 @nick_molina - Today's featured top influencers #HappyMonday (🚀 via https://t.co/J5I50dsGnh) +06/04/2018,Social_workers,@JimmySW,@alessandrasw19 @mlo002 @SD_SocialWorker - #HappyMonday Check out the newest engaged members in my community! (Want… https://t.co/t6Om7VYHYi +06/04/2018,Social_workers,@JimmySW,@CSocialWorkEd @scottcowley Check out the top engaged members in my community this week! - 🙏Grow your #Twitter foll… https://t.co/VQbiTT9cqq +06/03/2018,Social_workers,@JimmySW,@UBSSW @MarshAlesia @Hayley_msw Check out the top engaged members in my community this week! - Increase engagement… https://t.co/616SY6caIC +06/01/2018,Social_workers,@JimmySW,"@sm4sw @DrNJonesTSU @mmt98 #FF, thanks for being my top engaged members in the last week :) - 🚀Increase your real f… https://t.co/FnMKudywnS" +06/01/2018,Social_workers,@JimmySW,@UBSSW @OfficialMacroSW I sent you an email 😉 +06/01/2018,Social_workers,@JimmySW,I love Forest 😂😂😂😂😂 #macrosw #SoJustProfiling https://t.co/UMEmw5hV3t +06/01/2018,Social_workers,@JimmySW,Forgot to say hello to everyone on #macrosw chat tonight 😂 https://t.co/QGgH3xWbpn +06/01/2018,Social_workers,@JimmySW,@karenzgoda @laurelhitchcock Never gonna say bye. Just see you later 😉😉😉 #MacroSW +05/31/2018,Social_workers,@JimmySW,Latest #socialmedia stats among U.S. is fairly interesting. https://t.co/gddXDqaeHt @pewinternet #SWTech #byeFacebook 😂😂 +05/30/2018,Social_workers,@JimmySW,"RT @voxdotcom: Medicaid expansion for Virginia is an all-but-done deal at this point. + +400,000 people will gain health insurance. + +Electio…" +05/30/2018,Social_workers,@JimmySW,RT @CSocialWorkEd: The New Social Workers report from the National #SocialWork Workforce Study summarizes who is entering the social work p… +05/30/2018,Social_workers,@JimmySW,RT @mmfa: Sean Hannity ran with Trump's conspiracy theories -- the exact same conspiracy theories that Fox News anchor Shep Smith debunked… +05/24/2018,Social_workers,@JimmySW,RT @husITaOrg: Latest blog post by Gareth Morgan (Vice-Chair of husITa) on Social welfare benefits and technology https://t.co/ke5HWRECt0 +05/22/2018,Social_workers,@JimmySW,Thanks for the retweets this week @socworkpodcast @CADDSWPrograms much appreciated! - 🚀BOOST your followers! https://t.co/BUSIg629VG +05/21/2018,Social_workers,@JimmySW,"RT @NPR: Breaking: The Supreme Court in a 5-4 vote has delivered a major blow to workers, ruling for the first time that workers may not ba…" +05/21/2018,Social_workers,@JimmySW,"RT @pewinternet: % of U.S. adults who use … +- YouTube: 73% +- Facebook: 68 +- Instagram: 35 +- Pinterest: 29 +- Snapchat: 27 +- LinkedIn: 25 +-…" +05/19/2018,Social_workers,@JimmySW,Another year done with #csusmsw and it’s been awesome. Congrats again to all the graduates. #CSUSM2018 +05/18/2018,Social_workers,@JimmySW,@melaniesage @afmerant Check out the top engaged community members in my community this week! - 🙏Grow your #Twitter… https://t.co/uR58eaWJpp +05/18/2018,Social_workers,@JimmySW,RT @kshaferbyu: There will be more calls for guns in schools today. Such laws create more carnage than stop it. Just remember this handy (a… +05/16/2018,Social_workers,@JimmySW,RT @OfficialMacroSW: Want to build out new website? Check out our RFP https://t.co/PmvG5qVuaK #NPTech #MacroSW +05/15/2018,Social_workers,@JimmySW,Getting ready for the #CSUSMSW Graduation Celebration tonight. I sure am excited to see these students walk across… https://t.co/Ki7inNyp2S +05/15/2018,Social_workers,@JimmySW,@mecahwelch @bud34usmc Check out the top influencers in my community this week! - 🚀 Grow your twitter followers with https://t.co/yagMrMcNT6 +05/12/2018,Social_workers,@JimmySW,RT @CSUSM: Our Class of 2018 inspires us! One week until the big day! #CSUSM2018 https://t.co/1J6LsJOu0O +05/10/2018,Social_workers,@JimmySW,@causeisaidSOph @courtneyann2018 @nick_molina Check out the top influencers in my community this week! - 🚀Engage yo… https://t.co/jwpEw1hBqb +05/10/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY is hiring a Bilingual Case Manager to join our First 5 First Steps program! Apply to Requisition ID#1119 at https:… +05/09/2018,Social_workers,@JimmySW,#csusmsw https://t.co/6K0EvAfhrf +05/09/2018,Social_workers,@JimmySW,@alessandrasw19 @nancy_kusmaul @mlo002 Check out the top influencers in my community this week! - 🚀 Grow your twitt… https://t.co/IvdqIE1y0h +05/08/2018,Social_workers,@JimmySW,"Charles Dickens once wrote “it was the best of times, it was the worst of times.” + +Little did people know he was t… https://t.co/qGH4hoZOK6" +05/08/2018,Social_workers,@JimmySW,"RT @JHUCCSS: ICYMI: DYK which industry employed the 3rd most workers in the U.S. in 2015? It's not construction, real estate, or finance. I…" +05/08/2018,Social_workers,@JimmySW,Two for one special 😂😂😂 https://t.co/6iGHI28yiN +05/08/2018,Social_workers,@JimmySW,I’m thinking of starting my own subscription service. High Five Friday’s. For only $5 a month you get all the virtu… https://t.co/aG7OF3SU3f +05/04/2018,Social_workers,@JimmySW,RT @FISOnline: Very pleased @SAGEsocialwork & @AllianceNews can share the enduring insights of Richmond & other pioneers with the social wo… +05/04/2018,Social_workers,@JimmySW,#csusmsw https://t.co/6w1nWC4KAw +05/03/2018,Social_workers,@JimmySW,RT @MelindaHohman: Why We Have to Social Work This https://t.co/yVCzIltGng via @npquarterly +05/02/2018,Social_workers,@JimmySW,@scottcowley @CSocialWorkEd Check out the top engaged members in my community this week! - 🚀shared with love by https://t.co/mmTgR22jhc +05/02/2018,Social_workers,@JimmySW,"RT @pewinternet: Even as they view the internet’s personal impact positively, Americans have grown somewhat more ambivalent about its impac…" +05/01/2018,Social_workers,@JimmySW,Hey #csusmsw students. Wanna chime in to help @melaniesage 👇👇👇 https://t.co/6ekVFD194l +05/01/2018,Social_workers,@JimmySW,Neither. Being in shape is overrated 🙄 https://t.co/rk2aWlt1Rv +05/01/2018,Social_workers,@JimmySW,#csusmsw https://t.co/ycqsyOGNYc +04/30/2018,Social_workers,@JimmySW,#interesting https://t.co/mRzaRJ1sFH +04/29/2018,Social_workers,@JimmySW,RT @pewinternet: Experts say technology alone can’t win the battle against misinformation online in the coming decade https://t.co/y7naz4xq… +04/28/2018,Social_workers,@JimmySW,RT @GottmanInst: There's a reason why @BreneBrown inspires millions of people around the world with her words of wisdom. https://t.co/jflBB… +04/27/2018,Social_workers,@JimmySW,"RT @GottmanInst: Dozens of men in Philadelphia, Pennsylvania, are meeting on a regular basis to ""hold each other accountable"" and collectiv…" +04/27/2018,Social_workers,@JimmySW,#FollowFriday @DrNJonesTSU @Hayley_msw - top engaged members this week :) - GROW your twitter audience https://t.co/ZT62HKpP4D +04/25/2018,Social_workers,@JimmySW,Thanks for the retweets this week @sm4sw @zsu98 much appreciated! - 🚀Engage your followers [free] https://t.co/6IbRy0h4je +04/24/2018,Social_workers,@JimmySW,Pretty cool that @OLLUWordenSSS sends these out to reviewers for the @SWDEConference in appreciation of service. Th… https://t.co/xsomMfy384 +04/22/2018,Social_workers,@JimmySW,#csusmsw students might be interested in the @CSocialWorkEd Minority Fellowship Program. Check out the link for mor… https://t.co/TvnfLhRTJt +04/22/2018,Social_workers,@JimmySW,"RT @pewinternet: Demographics of U.S. adults who use Twitter + +Men: 23% +Women: 24 + +White: 24% +Black: 26 +Hispanic: 20 + +Ages 18-29: 40% +30-49…" +04/21/2018,Social_workers,@JimmySW,"RT @husITaOrg: Just a reminder about our $1,000 competition for the #bestidea4ahumanserviceapp. Open until Monday 11th May 2018. Please RT…" +04/20/2018,Social_workers,@JimmySW,#FollowFriday @TheNSWM @AllysonVarley @mecahwelch - top engaged members this week :) - 🚀Engage your followers [free] https://t.co/6IbRy0h4je +04/19/2018,Social_workers,@JimmySW,"#AlexaBlueprints means I can create skills so my kids will quit asking Alexa to make fart noises 🙄🙄🙄 +https://t.co/uJcjrD0Mxi" +04/19/2018,Social_workers,@JimmySW,"RT @AndyThorburnCA: Trump’s Mar-A-Lago trips (2017) $6.6 mil +Ryan Zinke’s office doors: $139k +Scott Pruitt’s phone booth: $43k +Ben Carson’…" +04/19/2018,Social_workers,@JimmySW,"RT @ajplus: The Senate unanimously voted to allow Senator Tammy Duckworth’s baby on the voting floor 👶🏻 + +The new rules, which Duckworth had…" +04/19/2018,Social_workers,@JimmySW,RT @kashhill: When a PR person reminds you that you wrote about Facebook’s reverse phone look-up being used nefariously way back in 2012 ba… +04/19/2018,Social_workers,@JimmySW,RT @BuzzFeed: You won't believe what Obama says in this video 😉 https://t.co/n2KloCdF2G +04/19/2018,Social_workers,@JimmySW,#CSUSMsw https://t.co/x55zDX3LGV +04/18/2018,Social_workers,@JimmySW,RT @reneehobbs: This great @TheCrashCourse on #medialiteracy features the amazing @jsmooth995 exploring the topic of media ownership. Fine… +04/17/2018,Social_workers,@JimmySW,"RT @MHager_ASU: Masters student got top course nod on policy analysis, so we had her re-frame and post up blog on tax implications for 2018…" +04/17/2018,Social_workers,@JimmySW,Thanks for the retweets this week @RoseBSingh @SDSUSocialWork much appreciated! - 🚀 Grow your followers with https://t.co/oJy0ucHADM +04/15/2018,Social_workers,@JimmySW,"RT @AllysonVarley: Are you a #primarycare provider? + +Please consider filling out this survey (for my dissertation project): https://t.co/7…" +04/15/2018,Social_workers,@JimmySW,"Interesting use of #Blockchain to help in Human Service providers working with the homeless in Austin, TX.… https://t.co/DRXaDacRWM" +04/15/2018,Social_workers,@JimmySW,"RT @socworkpodcast: You could win $500, but more importantly you could help Dr. Jay Miller (my guest in episode 117) with his research on #…" +04/15/2018,Social_workers,@JimmySW,RT @MelindaHohman: Diffusion theory and multi-disciplinary working in children’s services - https://t.co/P2enmwZ9FU #ScholarAlerts +04/13/2018,Social_workers,@JimmySW,#FollowFriday @MarshAlesia @DoinTheWorkPod - top engaged members this week :) - Tweet ❤️ via https://t.co/DcXwGc09Lz +04/13/2018,Social_workers,@JimmySW,"RT @husITaOrg: Do you have a compelling idea for a new human services app? Why not enter it in our competition? You could win $1,000. https…" +04/12/2018,Social_workers,@JimmySW,"RT @kanter: The Age of Automation for Nonprofits - Bots, AI, and the Struggle for Humanity - @Afine and I co-authored a post for @SSIRevie…" +04/12/2018,Social_workers,@JimmySW,RT @JoshuaMZeitz: Paul Ryan now enjoys the peace of mind that when he turns 50—in less than two years—he will enjoy a defined-benefits pens… +04/11/2018,Social_workers,@JimmySW,"RT @JoeNBC: Robert Mueller—Republican +Attorney General—Republican +FBI Director—Republican +DAG Rosenstein—Republican +(4) FISA Judges—Repu…" +04/11/2018,Social_workers,@JimmySW,So with Speaker Ryan’s retirement in January... That gives him less than a year to mount a presidential bid & oust Trump. Does it happen??? +04/11/2018,Social_workers,@JimmySW,RT @danpfeiffer: It would be cool to see Zuckerberg questioned by people who know how Facebook works +04/11/2018,Social_workers,@JimmySW,Soooo...Who's watching the #SocialNetwork tonight after today's #Zuckerberg hearing? LOL 😀😀😀 +04/10/2018,Social_workers,@JimmySW,"RT @TheWalkerWay_1: The caption speaks for itself! Social media can be a cancer when not used properly! #Csusmsw +https://t.co/NkFgOfzA30" +04/10/2018,Social_workers,@JimmySW,RT @SAYSanDiego1971: SAY is hiring a Bilingual Clinician to join our CAT program! Apply to Requisition ID#1109 at https://t.co/4VZEe9yUxb !… +04/10/2018,Social_workers,@JimmySW,RT @PreetBharara: Whataboutism about to reach a 52-week high +04/10/2018,Social_workers,@JimmySW,"RT @pewinternet: How does our study define Twitter bots? Broadly speaking, bots are automated accounts that can post content or interact wi…" +04/09/2018,Social_workers,@JimmySW,RT @husITaOrg: New on the husITa blog by @EmilyK100 https://t.co/31kDaJPAId +04/08/2018,Social_workers,@JimmySW,RT @mgspeaks: This Simple Note-Taking Method Will Help You Read More (and remember what you’ve read) https://t.co/6EmdoutqRN +04/08/2018,Social_workers,@JimmySW,"Is it still an “exclusive” offer if you’ve received an email about almost every day + +For the last 6 months?!? +🤔🤔🤔🤔🤔🤔🤔🤔" +04/08/2018,Social_workers,@JimmySW,"RT @Spacekatgal: I believe we should eliminate President’s Day as a holiday and make Election Day a national holiday in its place. + +I can…" +04/08/2018,Social_workers,@JimmySW,"RT @voxdotcom: There's been lots of talk of the danger of social media. But Sinclair is a good example of how political media, including ou…" +04/08/2018,Social_workers,@JimmySW,RT @RWJF: A study out of Massachusetts suggests making regular deliveries of meals to people who are food insecure drives down their use of… +04/07/2018,Social_workers,@JimmySW,Looking through my data settings on Twitter and it thinks I speak Tagalog. Um sorry but I wish 😂😂😂 +04/07/2018,Social_workers,@JimmySW,Should be an excellent conference. And tacos 🌮 🌮 😂😂😂😂 @TheNSWM @SDSUSocialWork #tacos https://t.co/ivfFlbVNHU +04/06/2018,Social_workers,@JimmySW,#FollowFriday @UBSSW @spcummings - top engaged members this week :) - 🚀Get More #Twitter Followers https://t.co/8KGZfzUiJH +04/04/2018,Social_workers,@JimmySW,Awesome lunch today at Facebook. They have sooo much free stuff. And an arcade. Is it too late for me to switch my… https://t.co/75nvRrn640 +04/04/2018,Social_workers,@JimmySW,"RT @repjohnlewis: 50 years ago today, I learned the painful news that my friend, my mentor, Dr. Martin Luther King, Jr. had been assassinat…" +04/02/2018,Social_workers,@JimmySW,I got my pizza 🍕 did you get yours 😂😂😂 https://t.co/kx5kxLOUwQ +04/01/2018,Social_workers,@JimmySW,#FollowFriday @SWpodcast @laurelhitchcock - top engaged members this week :) #TopMembers #Thanks - 🚀Grow with https://t.co/QLpnsPNqie +04/01/2018,Social_workers,@JimmySW,Hey @Wendys what will happen if I go through your drive through and ask them to surprise me? +03/31/2018,Social_workers,@JimmySW,RT @socworkpodcast: @SD_SocialWorker The solution to pollution is dilution. Fill Twitter with accurate information. #SWMONTH +03/31/2018,Social_workers,@JimmySW,"Additionally, I laugh whenever I tweet with #socialmedia or #Influencer or #SEO and I right away pick 5 to 10 new f… https://t.co/6BqdaCYWvm" +03/31/2018,Social_workers,@JimmySW,I wish #socialmedia bloggers and influencers would put dates on their blogs. Makes it much easier to provide a citation 🤔 +03/31/2018,Social_workers,@JimmySW,RT @jacobsonjenna: Where's Waldo? Answer: in Google Maps... and there goes half an hour of my Saturday. https://t.co/RSpGPbxRDu +03/31/2018,Social_workers,@JimmySW,RT @JaimeMBooth: Check out my new article! We used twitter feeds to understand neighborhood dynamics...this is just the tip of the ice berg… +03/31/2018,Social_workers,@JimmySW,"@sm4sw #FF, thanks for being my top engaged members in the last week :) - Powered by https://t.co/lph8r5ru4I" +03/31/2018,Social_workers,@JimmySW,#FollowFriday @Info4Practice @ProfessorTD @Dr_Pracademic - top engaged members this week :) - Get #Website Traffic… https://t.co/EHnKELfoBl +03/30/2018,Social_workers,@JimmySW,My Latest publication with @mcleodda & @Dr_Pracademic just came out in The Journal of Social Work Values & Ethics.… https://t.co/pBOc4wlBvD +03/30/2018,Social_workers,@JimmySW,RT @sh_way: Hewlett Pledges $10M to Study Social Media and “Fake News” https://t.co/H7ob6jCkxT via @npquarterly +03/29/2018,Social_workers,@JimmySW,"RT @samlymatters: MAGA twitter: we don’t need gun control we just need to stop bullying people + +Me: maybe we should also do gun control + +MA…" +03/29/2018,Social_workers,@JimmySW,Anyone in my #swtech network have a list of great podcasts for use in teaching across the curriculum? Things like… https://t.co/NlYBPHdA3F +03/28/2018,Social_workers,@JimmySW,RT @mgilster77: How two movements are received so differently: https://t.co/gaDSE5kbPy +03/27/2018,Social_workers,@JimmySW,"RT @csusm_oie: Quote of the month! +""In a time of deceit, telling the truth is a revolutionary act."" -George Orwell" +03/27/2018,Social_workers,@JimmySW,"RT @pewinternet: The offline population in the U.S. has declined substantially since 2000. Today, just 11% of U.S. adults do not use the in…" +03/27/2018,Social_workers,@JimmySW,@mecahwelch @meagan_chisholm @TaraNmsw - #HappyMonday check out my top engaged members :) - 🚀Increase your Twitter… https://t.co/Cs8mzZI94S +03/27/2018,Social_workers,@JimmySW,"RT @pewinternet: % of U.S. adults who use … +- YouTube: 73% +- Facebook: 68 +- Instagram: 35 +- Pinterest: 29 +- Snapchat: 27 +- LinkedIn: 25 +-…" +03/24/2018,Social_workers,@JimmySW,"RT @reneehobbs: Teaching about new forms of propaganda, like #sponsoredcontent, is essential! #Com416 Check out this news story on @CamAnal…" +03/24/2018,Social_workers,@JimmySW,RT @ConversationUS: Tomorrow's #MarchForOurLives is calling for new #GunControl measures. Here's what experts have to say on various propo… +03/24/2018,Social_workers,@JimmySW,CHURCH! So much in Academia needs to change. I think much of this could come down to financial incentives or other… https://t.co/Sy2Bb8wGPG +03/21/2018,Social_workers,@JimmySW,RT @pewinternet: NEW REPORT: The Science People See on Social Media – Science-related Facebook pages draw millions of followers but 'news y… +03/21/2018,Social_workers,@JimmySW,@DorlisaMinnick @mmt98 - Thanks for being part of my community :) #TopMembers #Thanks - 🚀Grow your followers with https://t.co/UV0wjecH40 +03/21/2018,Social_workers,@JimmySW,"@Hayley_msw I need to email you back. But you know>>> Dishes, laundry, and oh yeah the book chapter I need to finis… https://t.co/lZdvosZEFt" +03/20/2018,Social_workers,@JimmySW,"@SocWrkDoc @MsAlandis #HappyMonday, thanks for being my top engaged members in the last week :) - 📈Get More Twitter… https://t.co/ETHMMzkEtY" +03/20/2018,Social_workers,@JimmySW,"You can always tell when I don’t want to write. Dishes are done, laundry is folded, and I even had time for a show.… https://t.co/mK5GPEus1F" +03/19/2018,Social_workers,@JimmySW,"RT @pewinternet: Demographics of U.S. adults who use Twitter + +Men: 23% +Women: 24 + +White: 24% +Black: 26 +Hispanic: 20 + +Ages 18-29: 40% +30-49…" +03/18/2018,Social_workers,@JimmySW,RT @shiffle6: Claims of social media ‘addiction’ are full of bad science — its real impact might be more positive than you think - via Lase… +03/18/2018,Social_workers,@JimmySW,#FollowFriday thanks @StuckonSW @CSocialWorkEd - top Influencers members this week :) - 📈Get More Twitter Followers… https://t.co/Qe0HL1JOi9 +03/17/2018,Social_workers,@JimmySW,@AHS_Warranty @njsmyth - Thanks for being part of my community :) - 🚀Grow your followers with https://t.co/O9Flmh9ejW #Growth #Twitter +03/17/2018,Social_workers,@JimmySW,@becky_anthony @mltetloff @SWShaylaS thanks for being my top influencers in the last week :) #ThankYou - 🚀via https://t.co/AChhbmE8us +03/16/2018,Social_workers,@JimmySW,@LeneLeft @NRuggiano_PhD @Manarkustiro - thanks to my top influencers this week :) - 🚀 Grow your followers with https://t.co/NVakDPtCTO +03/16/2018,Social_workers,@JimmySW,Thanks for the retweets this week @kadixonsw @legalLMSW much appreciated! via https://t.co/eB1zhbzpS9 +03/16/2018,Social_workers,@JimmySW,@Carolyn65641191 @DiaxKeith @ERL_SW - check out my top recently engaged followers :) - 🚀 Grow your followers with https://t.co/6xFfWpbE4Y +03/15/2018,Social_workers,@JimmySW,@rll004 @DeniseMSW @aimee_MSW - Thanks for being part of my community :) (🚀 via https://t.co/XbY0J6HrCF) +03/15/2018,Social_workers,@JimmySW,@husITaOrg @ritter_molly @wirthadrienne - Happy to have you in my community :) (🚀 via https://t.co/XbY0J6HrCF) +03/15/2018,Social_workers,@JimmySW,Something interesting is going on. https://t.co/FuIHLyMqMw +03/15/2018,Social_workers,@JimmySW,@TrynAmber @KESollenberger @K_Nguyen26 - #ShoutOutWednesday these are my favorite influencers this week! - 🙏insight… https://t.co/119qCrwL2T +03/15/2018,Social_workers,@JimmySW,RT @husITaOrg: Please check out (and like) husITa's new Facebook page: https://t.co/N9hyBXTtJu +03/15/2018,Social_workers,@JimmySW,@mareebearx @ValMsw @HectorMiramon11 Check out the top influencers in my community this week! - Shared via https://t.co/u3ADaDZo2L +03/15/2018,Social_workers,@JimmySW,Sadly I’m missing #BPD2018 this year as well 😭😭😭 https://t.co/D3UTBxxHgC +03/14/2018,Social_workers,@JimmySW,"RT @socworkpodcast: Students: Want to be inspired? Want to take your social justice, social enterprise or social entrepreneur project to th…" +03/14/2018,Social_workers,@JimmySW,RT @Samantha_D91: 3rd grade students at @JaleJaguars participated in #NationalWalkoutDay by creating a peace sign to #PleaforPeace! Proud t… +03/14/2018,Social_workers,@JimmySW,A student in the last chat told me @Tweetchat does not match the 280 Character limit allowed by Twitter. Reasons? M… https://t.co/SKKHoJomDZ +03/14/2018,Social_workers,@JimmySW,@nancy_kusmaul @gradschoolisfun thanks for being my top engaged members in the last week :) - 📈Get More Twitter Fol… https://t.co/JS4zSYzTlO +03/13/2018,Social_workers,@JimmySW,@SJSworks @poliSW thanks for being my top recently engaged followers in the last week :) -🚀via https://t.co/H4vnGx1yOl +03/13/2018,Social_workers,@JimmySW,Students in #CSUSMSW presented today on #SDyouth and homelessness. Such a serious issue and some great information. +03/13/2018,Social_workers,@JimmySW,"@kenedi_young19 @Katelyn04791497 @angel_hacop #HappyMonday, thanks for being my top recently engaged followers in t… https://t.co/AavaDVti1k" +03/13/2018,Social_workers,@JimmySW,"@ednamsw @AlexRidSW @deanna23905786 - check out my top engaged members :) - 📈Grow your followers, insight by https://t.co/VkFSLghLZ6" +03/13/2018,Social_workers,@JimmySW,@KimMSW2018 @MarshAlesia @elsa052019 - Thanks for being part of my community :) (insight by https://t.co/8rdehMn4xY) +03/12/2018,Social_workers,@JimmySW,@CollinAukai @CynmswSanchez @adcurry505 thanks for being my top recently engaged followers in the last week :)… https://t.co/mNCBzeUWpO +03/12/2018,Social_workers,@JimmySW,@SDSUSocialWork @marina_douang @JWillisMSW2019 - thanks to my top recently engaged followers this week :) - 🚀Increa… https://t.co/JniUoi3ABb +03/12/2018,Social_workers,@JimmySW,Has participatory culture failed us in the digital age? Does User-generated content & distribution help spread… https://t.co/yRlaYVE4xG +03/11/2018,Social_workers,@JimmySW,@Rmunoz089 @nick_molina @caraballo_vilma Check out the top influencers in my community this week! - 🚀Increase your… https://t.co/aZPdHDjQcI +03/11/2018,Social_workers,@JimmySW,So he is taking notes from House of Cards 🤔 @netflix https://t.co/OoXfP31qBY +03/11/2018,Social_workers,@JimmySW,Fantastic!!! Amazing!!! Super awesome. #husITa https://t.co/GNnHusCOtQ +03/11/2018,Social_workers,@JimmySW,@spcummings @Taylor4896 @graybill_holly - thanks to my top influencers this week :) - 🚀Increase your followers free https://t.co/AIZ3F3hxk9 +06/29/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Every kind of material or spiritual poverty, every form of discrimination against our brothers and sisters, comes from turnin…" +06/28/2018,Social_workers,@tiziana_dearing,I’m thinking of all my friends in local journalism tonight and want to say how much I appreciate you. I’m so sorry… https://t.co/haG1WVa7xG +06/25/2018,Social_workers,@tiziana_dearing,RT @DalaiLama: I am one of the 7 billion human beings alive today. We each have a responsibility to think about humanity and the good of th… +06/22/2018,Social_workers,@tiziana_dearing,Holy cow. Yes. Best political ad I’ve ever seen. Would move to TX just to vote for her! https://t.co/54xPo7DSGT +06/22/2018,Social_workers,@tiziana_dearing,RT @_SBNH: Thanks to @RodmanRide4Kids for choosing @tiziana_dearing to present at our affiliate meeting. The conversation continues #pover… +06/22/2018,Social_workers,@tiziana_dearing,"RT @BCSSW: ""In my experience, at least for women, fashion often is a form of leadership communication."" —@tiziana_dearing via @cogwbur +Read…" +06/22/2018,Social_workers,@tiziana_dearing,"RT @Carladearing: Tell it, sis. @tiziana_dearing Clothes Talk. And Melania Trump's 'I Really Don't Care' Jacket Spoke Volumes https://t.co/…" +06/21/2018,Social_workers,@tiziana_dearing,Let’s talk fashion in women’s leadership via the @FLOTUS wardrobe malfunction. https://t.co/5DB2EB0GvG @cogwbur +06/21/2018,Social_workers,@tiziana_dearing,"RT @brianhardzinski: Thoughtful, articulate take on why the jacket matters. https://t.co/XOkptie5Yc" +06/21/2018,Social_workers,@tiziana_dearing,RT @francesmargaret: Wardrobe malfunction https://t.co/L8THxTnFjv +06/21/2018,Social_workers,@tiziana_dearing,"RT @cogwbur: Don't tell me @FLOTUS didn't know she was sending a message with that jacket, writes @tiziana_dearing. https://t.co/uPGAtW5XEm" +06/21/2018,Social_workers,@tiziana_dearing,Just published a blog on @FLOTUS jacket on @cogwbur Thanks! https://t.co/5DB2EB0GvG @WBUR @BCSSW +06/21/2018,Social_workers,@tiziana_dearing,"9/ And I wish she would have chosen to communicate something else, or nothing at all with her wardrobe choice. I d… https://t.co/ojoYzUXzyH" +06/21/2018,Social_workers,@tiziana_dearing,"8/ Why not a green jacket without the statement “I don’t care” on the back, then? I can’t pretend to know what she… https://t.co/bpTpNDb9w8" +06/21/2018,Social_workers,@tiziana_dearing,7/ Someone with that awareness pretty much never just throws on some clothes - especially clothes with GIANT WRITIN… https://t.co/X7FQ2zV5nc +06/21/2018,Social_workers,@tiziana_dearing,"6/ @FLOTUS was a fashion model. She, at least as much as anyone else, should understand the statement value of fas… https://t.co/31Jlbu4jVs" +06/21/2018,Social_workers,@tiziana_dearing,"5/ We have dress codes in organizations because we are so aware that attire is communication, and often drives beha… https://t.co/IgPxKLD1Yh" +06/21/2018,Social_workers,@tiziana_dearing,"4/ The first time I gave a speech wearing a faux-fur bolero jacket rather than a standard suit coat, people came up… https://t.co/qAWdQ6z6QE" +06/21/2018,Social_workers,@tiziana_dearing,"3/ Think I sound silly? Ask Madeline Albright and her book, “Read My Pins,” where she talks about the pins and bro… https://t.co/9v2j9I0h5r" +06/21/2018,Social_workers,@tiziana_dearing,2/ What you choose to wear can do everything from a) project something you think or believe; b) draw attention to a… https://t.co/SCtRS0L6ju +06/21/2018,Social_workers,@tiziana_dearing,"1/ A @FLOTUS spox may wish we wouldn’t focus on her fashion, but I’m going to, and I’ll tell you why. In my experi… https://t.co/77wrgEvqRj" +06/21/2018,Social_workers,@tiziana_dearing,"Hey, Bostonians, check out this Communications and Marketing job at TERC https://t.co/MxJt0USYds" +06/21/2018,Social_workers,@tiziana_dearing,Great opportunity in Marketing and Communications at TERC https://t.co/GRpr6EPUx5 +06/21/2018,Social_workers,@tiziana_dearing,Had a terrific time today speaking with the @RodmanRide4Kids members about #poverty #equity and #SocialChange Thanks for hosting me! @BCSSW +06/21/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: A person's dignity does not depend on them being a citizen, a migrant, or a refugee. Saving the life of someone fleeing war a…" +06/21/2018,Social_workers,@tiziana_dearing,RT @spattersearch: Making a case for collaboration @tiziana_dearing #WFRN2018 https://t.co/0977o7WxZh +06/19/2018,Social_workers,@tiziana_dearing,RT @nasw: NASW strongly opposes the @realdonaldtrump policy of arresting immigrant adults and separating them from their children at the bo… +06/19/2018,Social_workers,@tiziana_dearing,"Thoughtful, thorough thread that tracks family detention back to 2015 and ends with specific recomendations on next… https://t.co/LEUs3h9g4m" +06/18/2018,Social_workers,@tiziana_dearing,"Fantastic opportunity for emerging #socialentrepreneurs and #changemakers @Ashoka ""Emerging Innovators Boot Camp""… https://t.co/fZIYoZRRnw" +06/18/2018,Social_workers,@tiziana_dearing,Check this out @BCSSW https://t.co/0QgZkIo4Ya +06/18/2018,Social_workers,@tiziana_dearing,"RT @deehan: NEW: @MassGovernor will not send ""any assets or personnel to the Southwest border today because the federal government’s curren…" +06/18/2018,Social_workers,@tiziana_dearing,RT @brianstelter: Head of the American Academy of Pediatrics: https://t.co/mKHvK9JDZ2 +06/15/2018,Social_workers,@tiziana_dearing,"This incredible thread by futurist @amywebb introducing & evaluating ""reality isolationism"" is the best thing i've… https://t.co/MmrLpLCeD1" +06/14/2018,Social_workers,@tiziana_dearing,"Thread recommended here is a full article and incredibly helpful. ""At Streamline hearing yesterday, I saw a woman… https://t.co/wWPdTsz7I3" +06/13/2018,Social_workers,@tiziana_dearing,RT @Peggy_Kel: @tiziana_dearing @statnews Unbelievable. This is still going on? @ Boston Bio event. +06/13/2018,Social_workers,@tiziana_dearing,RT @eDougBanks: @tiziana_dearing @statnews I thought the business community was starting to learn its lesson. I thought wrong. +06/13/2018,Social_workers,@tiziana_dearing,"Oh, for the love of God... + +Topless women with company logos painted on their bodies danced at unofficial party dur… https://t.co/kYo1ViiNbl" +06/13/2018,Social_workers,@tiziana_dearing,@eDougBanks @statnews Seriously. +06/13/2018,Social_workers,@tiziana_dearing,"RT @M_RSection: “Offering asylum seekers, refugees, migrants and victims of human trafficking an opportunity to find the peace they seek re…" +06/13/2018,Social_workers,@tiziana_dearing,"RT @lauriegnyt: THREAD There is sudden, serious pushback from religious leaders to Trump's immigration policies, especially separating fami…" +06/13/2018,Social_workers,@tiziana_dearing,"RT @gehringdc: Every Catholic in Congress who touts how ""pro life"" they are while supporting the Trump administration's cruel and immoral b…" +06/13/2018,Social_workers,@tiziana_dearing,"It’s the overall tone of the letter. This is a #mapoli gubernatorial race, not the final stand for the fate of huma… https://t.co/nFVf9euQAc" +06/12/2018,Social_workers,@tiziana_dearing,"""The number of migrant children held in U.S. government custody without their parents has increased more than 20 pe… https://t.co/vtVVJJ6KZx" +06/12/2018,Social_workers,@tiziana_dearing,This Vox article is clear and helpful. https://t.co/IOcursVHDP +06/12/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Children must be able to play, study and grow in a peaceful environment. Woe to anyone who stifles their joyful impulse to ho…" +06/11/2018,Social_workers,@tiziana_dearing,RT @Lepiarz: THIS IS EVERYTHING https://t.co/aHyAeL1gLe +06/11/2018,Social_workers,@tiziana_dearing,‘Children are being used as a tool’ in Trump’s effort to stop border crossings https://t.co/lK71g8C8T7 via @BostonGlobe +06/11/2018,Social_workers,@tiziana_dearing,"""Our cruelty proliferates. In recent months, we have separated roughly 700 families...What have we become?""… https://t.co/uqBWJeX5Fx" +06/11/2018,Social_workers,@tiziana_dearing,@wajisa @sparkcamp We missed you. Talked about you a lot. +06/11/2018,Social_workers,@tiziana_dearing,"Hey @sparkcamp Wow. Just, Wow. Fantastic camp this weekend. Thank you!!!!" +06/11/2018,Social_workers,@tiziana_dearing,@cgreensit @JohnDavidow A little snubbing going on last night... +06/07/2018,Social_workers,@tiziana_dearing,You are profoundly disrespectful of other people. https://t.co/wSxivK2rOQ +06/07/2018,Social_workers,@tiziana_dearing,"@Mixedbeautyyyy_ I don’t know you, but this is wonderful news! Congratulations to you." +06/06/2018,Social_workers,@tiziana_dearing,"The part at the end where an EPA spokesperson calls the reporter a ""piece of trash,"" for asking for comment. Prett… https://t.co/vwjIz3DG0p" +06/06/2018,Social_workers,@tiziana_dearing,"""It is basically the only group of outside experts that the CFPB director is required to interact with by law."" https://t.co/F8SXZWVU75" +06/05/2018,Social_workers,@tiziana_dearing,I emailed mine. Your turn #mapoli https://t.co/JyQ2pVTeug +06/05/2018,Social_workers,@tiziana_dearing,I love being here today at #AWA18 with @laurabooks who is one of the most inspiring women in my life. @YWBoston https://t.co/gUiQr0K5xl +06/05/2018,Social_workers,@tiziana_dearing,I love being here today at #AWA18 with @laurabooks who is one of the most inspiring women in my life. @YWBoston https://t.co/dy3uOStNrx +06/05/2018,Social_workers,@tiziana_dearing,@marty_walsh “We need to stop talking about closing the #wagegap and just make it happen.” @YWBoston #AWA18 https://t.co/sMf4TcSDrK +06/05/2018,Social_workers,@tiziana_dearing,“There’s no passive stance in response to injustice.” #AWA18 @YWBoston https://t.co/aBFe911PX7 +06/05/2018,Social_workers,@tiziana_dearing,Anita Hill giving the inaugural #AWA18 award in honor of Sylvia Farrell-Jones @YWBoston https://t.co/ay468KqMa1 +06/05/2018,Social_workers,@tiziana_dearing,LaToya Edwards kicks us off @YWBoston Academy of Women Achievers #AWA18 And I’m sitting with Anita Hill!! https://t.co/vjnUEJRLdC +06/05/2018,Social_workers,@tiziana_dearing,"Why rich kids are so good at the marshmallow test, by @JessicaCalarco https://t.co/xfkxC1t6YS" +06/04/2018,Social_workers,@tiziana_dearing,"""Social Justice, Solidarity and Women in the Workplace"" happens tomorrow night. Register https://t.co/OHikqI8tsR.… https://t.co/kXsTo8byv5" +06/03/2018,Social_workers,@tiziana_dearing,RT @RJSzczerba: For anyone who ever got a rejection letter of any kind ... https://t.co/i3vC4aADxS +06/01/2018,Social_workers,@tiziana_dearing,"I have such deep respect for Bruce Western’s work. This Re-entry data is so valuable, and I hope people will overlo… https://t.co/boqdrL3cqk" +05/31/2018,Social_workers,@tiziana_dearing,"Looking forward to joining Helen Drinan of @SimmonsCollege , @Carol_Fulp and Roxana Rivera of @32BJSEIU next week t… https://t.co/sWEBXV6H3P" +05/31/2018,Social_workers,@tiziana_dearing,Here's your brain bender for the day... https://t.co/TB1YVab86a +05/30/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: When the Holy Spirit is present, something always happens. Where blows the Spirit, things are never at a standstill." +05/29/2018,Social_workers,@tiziana_dearing,"RT @amyemchugh: @tiziana_dearing @NPR Agreed, I appreciated the segment and her perspective. A sad, sad time for our country." +05/29/2018,Social_workers,@tiziana_dearing,"Nuanced, thoughtful conversation with Cecilia Munoz on @npr this morning is good way to educate self further on the… https://t.co/X1Z3c6BXmV" +05/29/2018,Social_workers,@tiziana_dearing,RT @TraciKirtley: @tiziana_dearing Thanks. I’ve been way of the “missing children” storyline for this reason—assuming it’s different agenci… +05/28/2018,Social_workers,@tiziana_dearing,Very interesting point in longer thread calling out tweeters like me to be careful in our complaints about the 1500… https://t.co/noCXdgmGoM +05/27/2018,Social_workers,@tiziana_dearing,Nearly 1500 kids missing. Reports of harsh treatment of detained children in prison-like conditions. Separating chi… https://t.co/mRlQWvhaWh +05/25/2018,Social_workers,@tiziana_dearing,Maybe some of the people who lost 1450 kids? https://t.co/dDiD2lNnnB +05/25/2018,Social_workers,@tiziana_dearing,How do you lose 1450 kids? Please let there be a non-partisan reaction to this. They’re kids. https://t.co/Hsat4Q2Bzs +05/25/2018,Social_workers,@tiziana_dearing,@reillyadam I’m old school. “Party” as a verb. +05/24/2018,Social_workers,@tiziana_dearing,This is so good. Under The Skin: Why That 'Arrested Development' Interview Is So Bad https://t.co/sFtz52iu43 +05/23/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Prof Rocío Calvo asks the audience to consider how we can integrate procedural justice into everyday life #BCDISummit2018 https:… +05/23/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Prof. @tiziana_dearing kicks-off a discussion on everyday excellence and inclusion at the #BCDISummit2018 https://t.co/qYGkjBAYKm +05/23/2018,Social_workers,@tiziana_dearing,Really appreciating this discussion among BC colleagues about Ignatian Spirituality and how it relates to their own… https://t.co/ck2YrvDveU +05/23/2018,Social_workers,@tiziana_dearing,"#BCDISummit2018 had a fantastic, challenging keynote. Heading to working session on #IgnatianSpirituality and… https://t.co/mMOKkS6hP6" +05/23/2018,Social_workers,@tiziana_dearing,About to start #BCDISummit2018 ! Excited to moderate the plenary this afternoon on #DiversityandInclusion… https://t.co/9zLxh5wXds +05/22/2018,Social_workers,@tiziana_dearing,"So pleased to be joining Helen Drinan of @SimmonsCollege, @Carol_Fulp, and Roxana Rivera of @32BJSEIU for… https://t.co/u6YF23fdxE" +05/22/2018,Social_workers,@tiziana_dearing,RT @gcroteau: Thanks again @tiziana_dearing! Great to have all your partnership and support! @BCSSW https://t.co/IMdofCT2AQ +05/18/2018,Social_workers,@tiziana_dearing,"RT @JamesMartinSJ: To be clear, even members of MS-13 are not ""animals."" Every human being has dignity, even the worst criminals, even murd…" +05/17/2018,Social_workers,@tiziana_dearing,RT @BostonCollege: Groundbreaking @BCSSW @FADICAnetwork study looks at Catholic social innovation at work for refugees and migrants around… +05/17/2018,Social_workers,@tiziana_dearing,"Another deep investment in #Lowell by @UTEC_lowell with the #socialinnovation center: early ed, commercial kitchen,… https://t.co/iFoxXD6pdL" +05/17/2018,Social_workers,@tiziana_dearing,Words and people of inspiration @UTEC_lowell opening of the #socialinnovation center. @BCSSW https://t.co/DmaLA6e2iY +05/17/2018,Social_workers,@tiziana_dearing,Touring the new #2Gen center @UTEC_lowell as they open their #socialinnovation center! I love this place! @BCSSW… https://t.co/LRyOFSFppZ +05/17/2018,Social_workers,@tiziana_dearing,"Let’s review: When one has the choice between calling human beings “animals” and not calling them “animals,” one i… https://t.co/q2fGMi7u6d" +05/16/2018,Social_workers,@tiziana_dearing,"RT @BCSSW: Prof. @tiziana_dearing reflects on how Catholic thought meets social innovation with a study commissioned by @FADICAnetwork +http…" +05/16/2018,Social_workers,@tiziana_dearing,Really interesting public convo happening on Twitter in response to this. #mapoli #Transportation @reillyadam https://t.co/swdnf4Lv4W +05/16/2018,Social_workers,@tiziana_dearing,"@UnitedWayKirsta Thanks so much for the shout out! Alas, no photos, but I love it that you asked." +05/15/2018,Social_workers,@tiziana_dearing,"RT @AmplifyLatinx: Join @AFTDJ on 6/5 for a conversation on Social Justice, Solidarity and Women in the Workplace, featuring BC Prof @tizia…" +05/14/2018,Social_workers,@tiziana_dearing,RT @GlobeHorowitz: Wow. Note the wildly disproportionate number of white families that own houses but don't have mortgages. https://t.co/Ga… +05/12/2018,Social_workers,@tiziana_dearing,"RT @BruceLesley: No, it is just cruel, inhumane, and harmful to children. #NotWhatever https://t.co/Qvb7EbMDqa" +05/11/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: We begin building peace in our homes, streets, and workplaces: wherever we craft communion and community." +05/11/2018,Social_workers,@tiziana_dearing,"""Nearly half of Massachusetts’ community college students and a third in the state colleges and universities cannot… https://t.co/vElGTGHvDN" +05/11/2018,Social_workers,@tiziana_dearing,"""No one is standing up and saying 'We can't treat people like this.' And sadly, that vacuum in moral leadership mea… https://t.co/JSlROWGopM" +05/11/2018,Social_workers,@tiziana_dearing,A huge shout of thanks to @Sen_Chandler @SalDiDomenico @KarenSpilka @cindycreem for choosing to @LiftCaponKidsMA in… https://t.co/MGUgHKk9oK +05/09/2018,Social_workers,@tiziana_dearing,"“...we miss assets they value in the community, run the risk of failing to understand what quality is to those whom… https://t.co/i6iUnjmxgf" +05/09/2018,Social_workers,@tiziana_dearing,"White, well meaning: United Way should reflect the community it servesC-VILLE Weekly https://t.co/NlkZ46uezw via… https://t.co/vKg0FEeAnb" +05/09/2018,Social_workers,@tiziana_dearing,RT @ianmastersmedia: NOW on https://t.co/ay4miajeBc | @milaniabbas - Trump's Monumental Gift to Iran's Hardliners | @tiziana_dearing - The… +05/09/2018,Social_workers,@tiziana_dearing,Glad to have joined @ianmastersmedia to talk #MeToo #Schneiderman and making sense of where we are today. https://t.co/zO81cBs73p +05/08/2018,Social_workers,@tiziana_dearing,RT @fdncenter: Are you a young professional interested in strengthening community #philanthropy and building capacity in local third-sector… +05/08/2018,Social_workers,@tiziana_dearing,This was juxtaposed in my Twitter feed this morning... https://t.co/MwfRfU2S0e +05/07/2018,Social_workers,@tiziana_dearing,Case in point on @wburdebbecker and her great work. https://t.co/0L655qrL0i +05/07/2018,Social_workers,@tiziana_dearing,Deborah Becker has been doing outstanding #mentalhealth reporting for @WBUR. Warmest congratulations to her. https://t.co/hMa6mEvBO9 +05/07/2018,Social_workers,@tiziana_dearing,"Want to make a real, substantial difference in peoples' lives every day? Upper Valley Haven in VT looking for a ne… https://t.co/mSm0Cm4Xsq" +05/07/2018,Social_workers,@tiziana_dearing,About to join colleagues for #MeToo in the Classroom at #BCTeach18. Can’t wait to start! +05/05/2018,Social_workers,@tiziana_dearing,"RT @DalaiLama: Scientists warn that constant fear and anger are bad for our health, while being compassionate and warm-hearted contributes…" +05/04/2018,Social_workers,@tiziana_dearing,"RT @francesmargaret: Happy trails to @davidboeri -- the man, the myth, the legend. https://t.co/jyGHonhVlQ" +05/04/2018,Social_workers,@tiziana_dearing,Looking forward to joining @MeghnaWBUR & @joebattenfeld for @RadioBoston this afternoon at 3:00 on 90.0. See you at @WBUR! +05/04/2018,Social_workers,@tiziana_dearing,RT @BCSSW: Catch @tiziana_dearing on @RadioBoston this afternoon for the Week in Review. listen live: https://t.co/Qhim9LusWY +05/03/2018,Social_workers,@tiziana_dearing,Ugh. You cannot make this stuff up. https://t.co/qyg1pABwZ6 +05/02/2018,Social_workers,@tiziana_dearing,"Could not be more proud to see Dr. Stephanie Berzin advance to this important role. We will miss her, but sharing h… https://t.co/QD1XT5cCRY" +05/01/2018,Social_workers,@tiziana_dearing,This understanding or work as a fundamental expression of human dignity is essential to our conversations about… https://t.co/Htrsbe1GXC +04/30/2018,Social_workers,@tiziana_dearing,About to hear colleague Theresa Betancourt at the inaugural Salem Professorship in Global Practice address. Proud o… https://t.co/2DTTz4TdO0 +04/28/2018,Social_workers,@tiziana_dearing,About to see Infinity War. Let it begin! +04/27/2018,Social_workers,@tiziana_dearing,RT @BCSSW: BCSSW's @BC_Innovation delivered a report on Catholic Social Innovation & the refugee crisis to @FADICAnetwork with research led… +04/26/2018,Social_workers,@tiziana_dearing,@quizasjoaquin @BCSSW Thanks! +04/26/2018,Social_workers,@tiziana_dearing,BCSSW Delivers Report on Catholic Social Innovation & the Refugee Crisis to FADICA https://t.co/QbmJ4JdeUT via @bcssw +04/25/2018,Social_workers,@tiziana_dearing,Huge THANK YOU to @SpeakerDeLeo @jeffrey_sanchez @MarjorieDecker @repkaykhan and others for helping to… https://t.co/b0ixDtvXyu +04/25/2018,Social_workers,@tiziana_dearing,You are so lucky to have Ruth! https://t.co/flNmmaMudX +04/24/2018,Social_workers,@tiziana_dearing,RT @Pontifex: Life only fully makes sense when it is given as a gift. It becomes tasteless when it is lived for itself alone. +04/24/2018,Social_workers,@tiziana_dearing,@RevEverett @seamwork Definitely blue +04/23/2018,Social_workers,@tiziana_dearing,"RT @BostonCollege: Catholic social innovation is helping migrants and refugees across the globe, a new @BCSSW @FADICAnetwork report shows:…" +04/23/2018,Social_workers,@tiziana_dearing,Excited to be at @Surdna_Fndn in NYC today giving a talk on #poverty trust and #philanthropy for @COF_ today. @TMWRivera @BCSSW +04/19/2018,Social_workers,@tiziana_dearing,RT @BCAlumni: Join the conversation! https://t.co/UPxE0jrMzi https://t.co/I8WcdmLQLE +04/19/2018,Social_workers,@tiziana_dearing,Proud of this article in @americamag featuring #Catholic #socialinnovation and the research funded by… https://t.co/e0PwK2h484 +04/19/2018,Social_workers,@tiziana_dearing,Loom Chicago is one of dozens of Catholic-run organizations that are adept at meeting various challe https://t.co/sDVYJUVkQe via @americamag +04/19/2018,Social_workers,@tiziana_dearing,Looking forward to joining @BCAlumni to do a webinar exploring #MeToo in about 30 minutes. +04/19/2018,Social_workers,@tiziana_dearing,"RT @conoryunits: Breaking: Due to continuous, absurd, despicable weather conditions, Boston is closed. + +We will try reopening in May. + +Th…" +04/18/2018,Social_workers,@tiziana_dearing,Honored to be quoted in this @pewresearch study on #tech saturation. https://t.co/OyPArHbKCg @BCSSW https://t.co/ciEydZWxSB +04/18/2018,Social_workers,@tiziana_dearing,RT @ImagineInternet: “Technological developments hold tremendous potential … But our ability to adapt at a species level happens on a much… +04/17/2018,Social_workers,@tiziana_dearing,"Been giving some talks including structural racism, #housing values and the #racialwealthgap. See article below.… https://t.co/a8xkGMD5aN" +04/14/2018,Social_workers,@tiziana_dearing,@xeniawickett Congratulations!!! What is your new role? +04/11/2018,Social_workers,@tiziana_dearing,"And you're really good at it, Martha! Keep running that marathon. #teamWBUR https://t.co/INDVnEujtL" +04/11/2018,Social_workers,@tiziana_dearing,"Reading @pontifex ""On the call to holiness in today's world."" Amazing call to the everyday practices of love and s… https://t.co/01bQyWZbb3" +04/11/2018,Social_workers,@tiziana_dearing,"Thank you, John. Hope the first full week of retirement is wonderful. https://t.co/QSINNvWpSd" +04/11/2018,Social_workers,@tiziana_dearing,"RT @nytimesbusiness: Did you apply for college this year and write an undergraduate application essay about money, work, social class or re…" +04/11/2018,Social_workers,@tiziana_dearing,RT @SueNBCBoston: With the Syrian attacks bringing the refugee crisis back into the headlines – how nuns are socially innovative nuns(!) ar… +04/11/2018,Social_workers,@tiziana_dearing,RT @C21Center: .@BC_Innovation produced a #Migration aid project #study which focuses on ‘Catholic social innovation’—the study is the firs… +04/11/2018,Social_workers,@tiziana_dearing,#KeepFacebook https://t.co/MNBYW84pmx via @laurabooks. Thought provoking piece from one of my favorite bloggers. +04/10/2018,Social_workers,@tiziana_dearing,Terrific chat with @SueNBCBoston tonight re: Catholic #socialinnovation and #migration. Check it out again tonight… https://t.co/YWcQM7SBQM +04/10/2018,Social_workers,@tiziana_dearing,RT @SueNBCBoston: With the Syrian attacks bringing the refugee crisis back into the headlines – how nuns are socially innovative nuns(!) ar… +04/10/2018,Social_workers,@tiziana_dearing,"RT @DavidsonServes: Enjoyed having @tiziana_dearing on campus to speak with our Bonner Scholars about the intersection of Poverty, Equity,…" +04/10/2018,Social_workers,@tiziana_dearing,@jamie_stamey @ProfessorNati @DavidsonCollege Thank you! +04/10/2018,Social_workers,@tiziana_dearing,RT @jamie_stamey: @ProfessorNati @tiziana_dearing @DavidsonCollege I spent a little time with her in the morning and walked away with enoug… +04/10/2018,Social_workers,@tiziana_dearing,"@dog_feelings Love you, too, pupper." +04/09/2018,Social_workers,@tiziana_dearing,I see what you did there https://t.co/ZBQCAIZp06 +04/09/2018,Social_workers,@tiziana_dearing,@kreshleman @DavidsonCollege Thank you! +04/09/2018,Social_workers,@tiziana_dearing,@ProfessorNati @DavidsonCollege Thank you! +04/09/2018,Social_workers,@tiziana_dearing,RT @ProfessorNati: Getting to be in the @tiziana_dearing lecture at @DavidsonCollege is giving me hope. https://t.co/LUoCf0bPl8 +04/09/2018,Social_workers,@tiziana_dearing,"RT @kreshleman: Excited for @tiziana_dearing talk on Poverty, Equity, and Social Change @DavidsonCollege https://t.co/e0ax9KJhQg" +04/07/2018,Social_workers,@tiziana_dearing,Prof. Mansbridge had a huge impact on me in my graduate education. She was a wonderful teacher. Warmest congratulat… https://t.co/gTZyjCk6MW +04/07/2018,Social_workers,@tiziana_dearing,"RT @DalaiLama: In the modern world, where the pursuit of money is considered more important than the cultivation of inner values a fresh ap…" +04/05/2018,Social_workers,@tiziana_dearing,RT @SJPSKings: Amazing visit @UTEC_lowell at #Exchange2018: of @Ashoka @ShawnaLewk @kingsatwestern https://t.co/Hx8EwWfG4z +04/04/2018,Social_workers,@tiziana_dearing,"RT @Pontifex: Love is the only invincible weapon, because it has the power to disarm the forces of evil." +04/04/2018,Social_workers,@tiziana_dearing,"Ugh. Just, ugh. https://t.co/0TURPkbSfX" +04/04/2018,Social_workers,@tiziana_dearing,Working on a talk tonight to give to the #economics department @DavidsonCollege next week. Can't wait to meet their fabulous students! +04/02/2018,Social_workers,@tiziana_dearing,RT @NASWMA: Time to reclaim #socialjusticewarrior. Thank you @tiziana_dearing! Let’s do this. Who is with us?! #leadma2018 https://t.co/9tU… +04/02/2018,Social_workers,@tiziana_dearing,#socialwork students gather at the Episcopal Church on Newbury for the start of @NASWMA LEAD Day 2018. What a beaut… https://t.co/2Op00DRHs1 +04/02/2018,Social_workers,@tiziana_dearing,Headed to @NASWMA LEAD Day this morning to talk with #socialwork students about the “why” of advocacy. So excited t… https://t.co/x40PGHwGS8 +04/01/2018,Social_workers,@tiziana_dearing,"RT @ValerieJarrett: A thought: Since it is #GoodFriday & #Passover, could we commit to cling tightly to our better selves, not just today,…" +03/30/2018,Social_workers,@tiziana_dearing,"And that, folks, is your first episode of The Office reboot... https://t.co/sTLA7WqRmS" +03/30/2018,Social_workers,@tiziana_dearing,This thread... https://t.co/Rz8YjepGVG +03/30/2018,Social_workers,@tiziana_dearing,RT @tiffanycampbell: The Public Radio BizLab @WBUR is looking to hire some smart people for paid fellowships this summer. They’ll be kickst… +03/30/2018,Social_workers,@tiziana_dearing,Line at the Watertown #RMV @MassRMV https://t.co/QlaqxHRrED +03/30/2018,Social_workers,@tiziana_dearing,Are you driving? https://t.co/JgBR9lkfbS +03/29/2018,Social_workers,@tiziana_dearing,Ending my day @Harvard with leaders in #socialinnovation and aspiring future leaders. Looking forward to it! @BCSSW https://t.co/GH93vNTTdb +03/29/2018,Social_workers,@tiziana_dearing,"@AlisonNBCBoston @SueNBCBoston @rdsahl @jimbraude @NECN @JohnVanScoyoc I had no idea John was retiring! I’ll miss you, John." +03/29/2018,Social_workers,@tiziana_dearing,RT @AlisonNBCBoston: He survived @rdsahl. He survived @jimbraude. He survived @SueNBCBoston. Now @NECN needs to figure out how to survive… +03/29/2018,Social_workers,@tiziana_dearing,"RT @causeconsulting: ""Expand your community; embrace new experiences,"" said @tiziana_dearing at @_TheBASE Women's #Leadership Breakfast wi…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @RevEverett: A new command, a new mandate, I give to you: Love one another. Let this be our #MaundyThursday commitment, just that simpl…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @hallard: @tiziana_dearing speaks to the types of poverty created by institutional racism: social poverty, workplace poverty, community…" +03/29/2018,Social_workers,@tiziana_dearing,"RT @Rosemarie_Day1: Great Women’s Leadership panel for The BASE this morning. Reminders to own your power, be authentic, and take risks.…" +03/29/2018,Social_workers,@tiziana_dearing,"@SueNBCBoston Yeah, I’m a real psychic..." +03/28/2018,Social_workers,@tiziana_dearing,Wait https://t.co/ppIYXqbrCM +03/28/2018,Social_workers,@tiziana_dearing,Actually really appreciate this. Have been dumbfounded that kids are no longer off limits for the level of terrifyi… https://t.co/pUx2VDMW7M +03/26/2018,Social_workers,@tiziana_dearing,I am listening to @OnPointRadio where I think a caller just basically threatened @davidhogg111 and others with 5 mi… https://t.co/6tlwAWkxhZ +03/26/2018,Social_workers,@tiziana_dearing,@TraciKirtley Nice +03/25/2018,Social_workers,@tiziana_dearing,@quizasjoaquin @danivillanueva @skachiedza @GiuliaMcPherson @Nikki_43809 @RodulfoPrieto @LyndseyMcMahan I am a part… https://t.co/m2KivArYdc +03/24/2018,Social_workers,@tiziana_dearing,I gotta go ahead and question whether I need even one https://t.co/xD3Rslo9AC +03/24/2018,Social_workers,@tiziana_dearing,In case you might have forgotten that @MeghnaWBUR is a reporter as well as a host...this impressive and scary threa… https://t.co/qq2IuwYEBG +03/23/2018,Social_workers,@tiziana_dearing,"RT @ronlieber: Every year, I collect the best college application essays I can find about money, work, social class, wealth and/or its abse…" +03/23/2018,Social_workers,@tiziana_dearing,"I think Joe just wanted to be able to say ""piping plover."" https://t.co/k5N6q4VLAA" +03/22/2018,Social_workers,@tiziana_dearing,"Absolutely loved this thread re: @facebook, recognizing potential interest of the source. Learned so much. Also h… https://t.co/1cMXCMZAjf" +03/21/2018,Social_workers,@tiziana_dearing,"I'm really struck by this piece from @tomfriedman in @nytimes . ""America needs a healthy conservative party in our… https://t.co/lfDEKkyKqZ" +03/21/2018,Social_workers,@tiziana_dearing,"Makes me angry. When you read what it said before and what it says now, its speaks (or doesn't) volumes. Words matt… https://t.co/aP2ubL6ITr" +03/20/2018,Social_workers,@tiziana_dearing,RT @BrookingsEcon: Boys who grew up in families in the bottom 10% of the income distribution are 20 times more likely to be in prison on a… +03/19/2018,Social_workers,@tiziana_dearing,Check out this smart piece by @cosgrovet on follow-up strategies after #WalkoutWednesday https://t.co/gYOZtE0KwI +03/19/2018,Social_workers,@tiziana_dearing,.@48in48 is building 48 websites for 48 Boston Nonprofits - Are you eligible for a free new site? Apply https://t.co/O49Se2GVFK +03/17/2018,Social_workers,@tiziana_dearing,"Oh, good, because I was just thinking that my Twitter feed was too full of good news these days... https://t.co/vyJ27Ojmue" +03/16/2018,Social_workers,@tiziana_dearing,"Oh, good lord. https://t.co/2v5jMTcaIi" +03/16/2018,Social_workers,@tiziana_dearing,"RT @RadioBoston: @tiziana_dearing @titojackson @wburdebbecker .@tiziana_dearing: ""No one gets to hide behind this anymore. This is intolera…" +03/16/2018,Social_workers,@tiziana_dearing,"RT @RadioBoston: Miss the show? Hear @tiziana_dearing, @titojackson, @anthonygbrooks, @sdooling & @Chessy_Prout on our podcast: https://t.c…" +03/16/2018,Social_workers,@tiziana_dearing,"Thought this piece was really interesting. + +Strategy is key in Parkland students' next move against gun violence |… https://t.co/Q6IBTsjR9g" +03/16/2018,Social_workers,@tiziana_dearing,RT @TinaLFletcher: @gstreat @tiziana_dearing https://t.co/0wkwNWRh2k +06/29/2018,Social_workers,@ProfessorChic,"RT @UMSocialWork: Companionate relationships influence mental health outcomes of older African American men. #SSWResearch +Assistant Profess…" +06/29/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: @TheMCUAAAR and @PRBA_ISR professor Jamie Mitchell @ProfessorChic https://t.co/opn4Whk73U +06/29/2018,Social_workers,@ProfessorChic,RT @NYTHealth: Breaking News: A federal judge blocked Kentucky's plan to impose new Medicaid rules requiring the poor to work to maintain t… +06/28/2018,Social_workers,@ProfessorChic,RT @UMichPath: #UMichPath #MCTP #ChinnaiyanLab https://t.co/DddQDBxolC +06/27/2018,Social_workers,@ProfessorChic,RT @umichglc: The School of Social Work @UMSocialWork sponsored this workshop. @umichglc members Robert Joseph Taylor and @ProfessorChic w… +06/27/2018,Social_workers,@ProfessorChic,RT @PublicHealth: Research: Police killings of unarmed black Americans harm the mental health of other black adults https://t.co/Js83nfVQtG +06/27/2018,Social_workers,@ProfessorChic,"RT @NPR: People with intellectual disabilities are assaulted at seven times the rate of people without disabilities. Now, states and advoca…" +06/26/2018,Social_workers,@ProfessorChic,RT @TheMCUAAAR: Congrats to the 2018 Doctoral Students Mentoring Workshop participants! We enjoyed the 3 days that you spent with us. Stay… +06/26/2018,Social_workers,@ProfessorChic,RT @MensHealthUBC: “Over 70 per cent of men suffer mental health problems and don't know it” https://t.co/JwFQ4922l2 https://t.co/wYzgV7NMwl +06/26/2018,Social_workers,@ProfessorChic,RT @ProfessorTD: Presenting with @UofISocialWork's Hellen McDonald on #perinatalmentalhealth today @ McLean county public health department… +06/26/2018,Social_workers,@ProfessorChic,"RT @chronicle: If you want more diversity on your campus, start by diversifying your own staff at the highest levels and treating its membe…" +06/26/2018,Social_workers,@ProfessorChic,"RT @JudyCBPP: Review of 77 studies on #Medicaid expansion in @Health_Affairs concludes expansion increases coverage, use of health care, an…" +06/26/2018,Social_workers,@ProfessorChic,RT @UMRogelCancer: A new @umich study forms the backbone for free new online tools for personalizing #lungcancer risk and screening decisio… +06/26/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Walgreens pharmacist denies woman miscarriage medication because it goes against his ethics https://t.co/7xCzy51JGv +06/24/2018,Social_workers,@ProfessorChic,RT @GeeDee215: A thread. https://t.co/HmG2UpQ6Jp +06/24/2018,Social_workers,@ProfessorChic,RT @nytimes: President Trump suggested sending people who “invade” the United States “back from where they came” without legal proceedings… +06/23/2018,Social_workers,@ProfessorChic,RT @KamalaHarris: Yesterday I got a tour of an immigration detention facility and visited with the mothers separated from their children. A… +06/23/2018,Social_workers,@ProfessorChic,RT @nytimes: U.S. Open Will Revamp Its Seeding to Account for Pregnancy Leaves https://t.co/hnZksf6BqN +06/21/2018,Social_workers,@ProfessorChic,RT @UMRogelCancer: New study arms #breastcancer patients with important data about the risks and rewards associated with each surgical opti… +06/21/2018,Social_workers,@ProfessorChic,RT @umichmedicine: What can #neuroscience research tell us about what might be happening to the brains of children affected by #FamilySepar… +06/21/2018,Social_workers,@ProfessorChic,"RT @PSGMke: Racial/Ethnic and Sexual Minority Males Among Unhealthiest People in America, Report Finds https://t.co/2yMNyzB1y8 via @APA" +06/20/2018,Social_workers,@ProfessorChic,Same. https://t.co/iwx5QUp6sj +06/20/2018,Social_workers,@ProfessorChic,RT @TheOnion: Newborn Loses Faith In Humanity After Record 6 Days https://t.co/jUneA85mld https://t.co/ODPhv5JbmD +06/20/2018,Social_workers,@ProfessorChic,RT @USATODAY: RAICES is the largest immigration legal services non-profit in Texas. The group is accepting donations for its family reunifi… +06/20/2018,Social_workers,@ProfessorChic,"RT @kylegriffin1: In the middle of the night, two baby boys arrived in Grand Rapids after being separated from their immigrant parents. + +O…" +06/20/2018,Social_workers,@ProfessorChic,"RT @civilrightsorg: ""As a psychologist who studies how trauma and stress affect children’s development, I’m extremely concerned about the l…" +06/20/2018,Social_workers,@ProfessorChic,RT @detroitnews: ALERT: Michigan sees children young as 3 months separated from parents https://t.co/OSUm9vYcv3 https://t.co/QQ5viYAxDu +06/19/2018,Social_workers,@ProfessorChic,RT @EdgeforScholars: Investigators at all career stages can tap into the Trial Innovation Network’s free toolkit for protips on trial desig… +06/18/2018,Social_workers,@ProfessorChic,RT @WebMD: CHECK YOUR PANTRY: Kellogg's has recalled certain boxes of Honey Smacks cereal due to possible salmonella contamination. https:/… +06/18/2018,Social_workers,@ProfessorChic,"RT @CraigSJ: I wrote about Beyoncé and Jay-Z and #EverythingIsLove, the dramatic conclusion to one of the heaviest love album trilogies of…" +06/18/2018,Social_workers,@ProfessorChic,"RT @keithboykin: According to NASA, The Milky Way is ""so big that even at the speed of light, it would take 100,000 years to travel across…" +06/18/2018,Social_workers,@ProfessorChic,RT @eugenegu: Who cares about Trump’s Space Force when children are being ripped from their families and sent to internment camps. +06/17/2018,Social_workers,@ProfessorChic,"RT @PRBA_ISR: Waldo Johnson former @PRBA postdoc. Non-residential fathers aren't necessarily absentee, research shows@SociologistRay @Darri…" +06/17/2018,Social_workers,@ProfessorChic,"RT @ObamaFoundation: Happy Father’s Day to all the dads out there supporting their kids, like Lynell Jinks, who uses his kids’ lunch bags a…" +06/17/2018,Social_workers,@ProfessorChic,"RT @WriteThatPhD: How to write with purpose & publish for impact – a 5-part series to help you: +• Imagine the #Writing Project +• Organize &…" +06/17/2018,Social_workers,@ProfessorChic,"RT @keithellison: Dad, Leonard Ellison, taught me: +-don’t back down +-get back up +-you’re going make mistakes +-forgive yourself too +-go for…" +06/16/2018,Social_workers,@ProfessorChic,RT @CerromeRussell: Beyoncé can really rap +06/16/2018,Social_workers,@ProfessorChic,Same. https://t.co/Pyt4a80W7d +06/16/2018,Social_workers,@ProfessorChic,This Tweet from @ProfessorChic has been withheld in: Canada. +06/16/2018,Social_workers,@ProfessorChic,RT @deray: Friends. #EVERTHINGISLOVE +06/16/2018,Social_workers,@ProfessorChic,RT @ziwe: I love when beyonce drops new music because that means I can cancel all my plans +06/16/2018,Social_workers,@ProfessorChic,RT @jemelehill: AND the song is a banger #EverythingIsLove https://t.co/fj2H1r2Dfc +06/16/2018,Social_workers,@ProfessorChic,"RT @Beyonce: Stream #EverythingIsLove now, exclusively on TIDAL. Also stream a TIDAL-exclusive track. https://t.co/OHRZ7lnF8n https://t.co/…" +06/16/2018,Social_workers,@ProfessorChic,RT @HOT97: SURPRISE! Jay Z & Beyoncé album out now! #EverythingIsLove https://t.co/OQQWC5qXbb +06/16/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: Carl Hill @hillcv17 former PRBA doctoral student @ABSociologists @ASA_SREM @ABPsiSC @assarish @aasewell @WatkinsResearch @Dar… +06/16/2018,Social_workers,@ProfessorChic,"RT @EllisMonk: Greatly honored that my article ""The Cost of Color: Skin Color, Discrimination, and Health among African Americans"" (AJS) wo…" +06/16/2018,Social_workers,@ProfessorChic,"RT @NPR: Colleen Kraft, president of the American Academy of Pediatrics, visited a Texan shelter for migrant children and saw a young girl…" +06/16/2018,Social_workers,@ProfessorChic,"RT @umichalzheimers: Morning panel mod @professorchic notes, “We don’t talk about dementia as a culture itself, understanding the symbols a…" +06/14/2018,Social_workers,@ProfessorChic,"RT @ass_deans: If a damn raccoon can climb a skyscraper, surely the faculty can get 75% response rates on their teaching evaluations." +06/14/2018,Social_workers,@ProfessorChic,RT @CDC_Cancer: This #MensHealthWeek get the fast facts about #cancer and men: https://t.co/zgoemCDGJg https://t.co/QUf4BhJvZQ +06/14/2018,Social_workers,@ProfessorChic,RT @deray: read this. https://t.co/3unK7Yx6AE +06/14/2018,Social_workers,@ProfessorChic,"RT @statnews: AVAILABLE NOW: Runnin', STAT's award-winning documentary about the opioid epidemic and a group of childhood friends caught in…" +06/14/2018,Social_workers,@ProfessorChic,"RT @joyceyeaeunlee: Fathers forgotten when it comes to services to help them be good parents, new study finds https://t.co/GTDNTXArE7 via @…" +06/11/2018,Social_workers,@ProfessorChic,"RT @ryanjreilly: In new filing signed by acting Civil Rights Division chief John Gore, DOJ argues that University of Michigan's harassment,…" +06/11/2018,Social_workers,@ProfessorChic,Many thanks!!!! https://t.co/JECKg582Id +06/11/2018,Social_workers,@ProfessorChic,RT @IjeomaOo: I am extremely humbled to have been a part of @PRBA_ISR The connections I made were priceless. The knowledge I received was l… +06/11/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: (1/2) A part of celebrating Men’s Health Week is to honor the women who dedicate their lives to improving men’s health… +06/11/2018,Social_workers,@ProfessorChic,RT @KJonesJamtgaard: Any #science tweeps have recommendations for groups or individuals that do excellent #grant writing seminars/workshops… +06/10/2018,Social_workers,@ProfessorChic,RT @AP: The $1.1 million Aurora prize for humanitarianism goes to a lawyer in Myanmar who has been fighting for Rohingya rights for decades… +06/10/2018,Social_workers,@ProfessorChic,RT @DrMShavers: Congratulations!!! https://t.co/zVkyE1TzH4 +06/10/2018,Social_workers,@ProfessorChic,"RT @Celeste_pewter: Since I can't stop thinking about this: + +1. Trump at the G7 in Canada. +2. Obama at the G7 in Germany (2015) https://t.…" +06/10/2018,Social_workers,@ProfessorChic,So glad to have been able to support! https://t.co/5vOZ6MeN0S +06/09/2018,Social_workers,@ProfessorChic,RT @usatodayDC: Trump administration no longer will defend the Affordable Care Act in court https://t.co/iFYHhJrflj via @wwcummings @kalltu… +06/07/2018,Social_workers,@ProfessorChic,RT @cavs: HE. DID. THAT. #WhateverItTakes https://t.co/ZjiS0Gk5gh +06/06/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: Love this. Which is why every moment someone spends helping you is a gift. Be a #grateful recipient. #saythankyou http… +06/06/2018,Social_workers,@ProfessorChic,RT @WatkinsResearch: @UMJointPhD https://t.co/mNTzwBZmjr +06/04/2018,Social_workers,@ProfessorChic,"RT @TheAtlantic: On Monday, the Supreme Court ruled in favor of the baker in the 'Masterpiece Cakeshop' case. But its rationale is so narro…" +06/03/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Va. governor pardons woman convicted of disposing of stillborn fetus https://t.co/ID32FDEI5n +06/02/2018,Social_workers,@ProfessorChic,"RT @choo_ek: I write a *ton* of promotions letters and lemme say: WOMEN, YOU ARE GOING UP WAY, WAY TOO LATE." +06/02/2018,Social_workers,@ProfessorChic,RT @Editage: Your #research paper title must be effective enough to cue readers into deciding that they'd like to read your entire paper. H… +06/02/2018,Social_workers,@ProfessorChic,"RT @hormiga: Every proposal can have massive holes or shortcomings, if a reviewer chooses to find them. The trick is to make it so compelli…" +06/02/2018,Social_workers,@ProfessorChic,RT @ImpactWales: We 💚💛 concept maps to help pupils organise their thinking. How often do you use them with pupils? https://t.co/jadMxosP5M +06/02/2018,Social_workers,@ProfessorChic,"RT @THINK_PhD: “Set the parameters. You either with the pro-fessors or the amateurs.” + +*Pusha T voice* https://t.co/f5qWW7Kn9H" +06/02/2018,Social_workers,@ProfessorChic,RT @SusanShepler: A new Sierra Leone postage stamp honoring the hero Sierra Leonean doctors who lost their lives during the Ebola crisis. h… +06/02/2018,Social_workers,@ProfessorChic,RT @CharlesModlinMD: Dr. Charles Modlin discusses Kidney Transplantation & Organ Donation at the City Club of Cleveland https://t.co/eW9OSj… +06/02/2018,Social_workers,@ProfessorChic,"RT @doc_becca: I had a real moment of clarity talking to a program officer today. I realized that after six years of unfunded NIH grants, I…" +06/02/2018,Social_workers,@ProfessorChic,RT @wellreadblkgirl: “give your daughters difficult names. give your daughters names that command the full use of tongue. my name makes you… +06/02/2018,Social_workers,@ProfessorChic,"RT @CNN: When he was a kid, Richard Jenkins raised his hand in class so often bullies started calling him ""Harvard."" + +Now, after overcoming…" +06/01/2018,Social_workers,@ProfessorChic,RT @NSRiazat: Paper accepted for publication...and positive preliminary feedback on 2 educational book proposals. Academic life is going qu… +05/31/2018,Social_workers,@ProfessorChic,"RT @CNN: Roseanne Barr blamed Ambien for her racist tweets. + +Sanofi, the maker of Ambien, responded with this statement: ""While all pharmac…" +05/30/2018,Social_workers,@ProfessorChic,RT @detroitnews: The mother of a G League basketball player who died in March after collapsing on the court during a game has filed a feder… +05/30/2018,Social_workers,@ProfessorChic,RT @MikeOLoughlin: Rosaries confiscated from undocumented migrants by US border patrol agents. From a story in the @NewYorker https://t.co/… +05/30/2018,Social_workers,@ProfessorChic,"RT @USATODAY: Michigan is in the throes of the largest hepatitis A outbreak in the USA, a flareup that began in August 2016 and has killed…" +05/29/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: #mdpihealthcare New #NSALDATA article @DrMikeLindsey @ASA_SREM @SociologistRay @WatkinsResearch @DumiLM @RyonCobb @Professor… +05/29/2018,Social_workers,@ProfessorChic,RT @MsTerryMcMillan: Heart. And soul. And compassion. https://t.co/AtkkSybXuC +05/29/2018,Social_workers,@ProfessorChic,"RT @CNN: People who eat fried potatoes two or more times a week double their risk of an early death, a recent study found https://t.co/GZos…" +05/29/2018,Social_workers,@ProfessorChic,"RT @iSmashFizzle: Bury me in the ocean, with my ancestors that jumped from the ships, because they knew death was better than bondage. http…" +05/28/2018,Social_workers,@ProfessorChic,"RT @SylviaObell: My sister has decided to FINALLY watch Grey’s Anatomy... + +She’s currently watching S2 at my apartment... + +Now I gotta go…" +05/28/2018,Social_workers,@ProfessorChic,"RT @nprpolitics: On Memorial Day, Trump Honors Fallen Soldiers And Himself https://t.co/K09ws5Xt98" +05/28/2018,Social_workers,@ProfessorChic,"RT @NYTNational: The African-American origins of the holiday were later suppressed, a historian found, by white Southerners who reclaimed p…" +05/28/2018,Social_workers,@ProfessorChic,RT @aamer_rahman: I’m happy but watch as this gets used as an example of the standard people must demonstrate to ‘deserve’ citizenship http… +05/28/2018,Social_workers,@ProfessorChic,RT @NBCNews: A migrant who climbed four stories up a building to rescue a child dangling from a balcony has been offered French citizenship… +05/28/2018,Social_workers,@ProfessorChic,"RT @UMRogelCancer: Have you heard our 3Ps of Cancer podcast? Check out this discussion of cancer genetics with guest Dr. Elena Stoffel, dir…" +05/28/2018,Social_workers,@ProfessorChic,"RT @nytimes: With Sheer Will, LeBron James Leads the Cavaliers Back to the Finals https://t.co/Cu9deNCvGH" +05/28/2018,Social_workers,@ProfessorChic,"RT @CNN: During a routine traffic stop, Nebraska State Patrol found nearly 120 pounds of the drug fentanyl — enough to kill about 26 millio…" +05/28/2018,Social_workers,@ProfessorChic,"RT @babyitsmb: The last time Lebron wasn’t in the finals: +1. Instagram wasn’t invented +2. Drakes first album didn’t drop yet +3. iPads were…" +05/28/2018,Social_workers,@ProfessorChic,"RT @CBSSports: HE'S DONE IT AGAIN! + +LeBron James is heading back to the NBA Finals for the EIGHTH straight season. https://t.co/6IDmJaR6mu" +05/28/2018,Social_workers,@ProfessorChic,RT @NBCNews: LeBron James leads the Cleveland Cavaliers to the NBA Finals for the fourth straight year. It will be James’ eighth straight f… +05/28/2018,Social_workers,@ProfessorChic,RT @GeeDee215: LeBron. Raymone. James. +05/28/2018,Social_workers,@ProfessorChic,RT @THINK_PhD: LeBron is unreal. +05/28/2018,Social_workers,@ProfessorChic,"RT @loumoore12: January, February, March, April, May, LeBron." +05/28/2018,Social_workers,@ProfessorChic,"RT @cavs: * @Drake sigh * +The nerve, the audacity +#StriveForGreatness https://t.co/CsSVyWwoKl" +05/27/2018,Social_workers,@ProfessorChic,RT @lisabdixon: Mobile Health (mHealth) Versus Clinic-Based Group Intervention for People With Serious Mental Illness: A Randomized Control… +05/27/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Opinion: 911 dispatchers sit between police and people of color. They need better training. https://t.co/ygHXX9HKC0 +05/26/2018,Social_workers,@ProfessorChic,"RT @USATODAY: According to estimates, Starbucks' decision to initiate the racial-bias training will cost $12M in lost profit as it closes t…" +05/26/2018,Social_workers,@ProfessorChic,RT @JLin7: Lebron and Drake being Lebron and Drake #recapofthenight +05/26/2018,Social_workers,@ProfessorChic,"RT @YourManDevine: LeBron's better at this than most of us are at, like, breathing" +05/26/2018,Social_workers,@ProfessorChic,RT @SabrinaSiddiqui: 👑 James. +05/26/2018,Social_workers,@ProfessorChic,RT @AcademicsSay: The road to academic guilt is paved with manuscripts in progress. +05/26/2018,Social_workers,@ProfessorChic,RT @nytimes: The president of the University of Southern California agreed to step down. He was blamed for a scandal over a gynecologist ac… +05/25/2018,Social_workers,@ProfessorChic,RT @dn_nation_world: Harvey Weinstein turns himself in to face sex crime charges. https://t.co/ewXdEesOTq https://t.co/SOA7dDnnlf +05/23/2018,Social_workers,@ProfessorChic,RT @GuardianUS: Obesity now linked to 12 different cancers https://t.co/noCXJG2Jso +05/23/2018,Social_workers,@ProfessorChic,RT @APCentralRegion: Paid coaches and trainers would not be required by law to report suspected child abuse to the authorities under a wate… +05/23/2018,Social_workers,@ProfessorChic,"RT @nytimes: Milwaukee is bracing for the release of a video showing Sterling Brown, a player for the Bucks, being arrested for a parking v…" +05/23/2018,Social_workers,@ProfessorChic,"RT @TheMCUAAAR: Spring Caregiver Conference | Alzheimer's Association - Ann Arbor +June 15, 2018 at Washtenaw Community College +*Jamie Mitch…" +05/23/2018,Social_workers,@ProfessorChic,RT @urbaninstitute: The preterm birth rate for white women was 9.06% in 2017. It was 13.92% for black women and 9.61% for Hispanic women. (… +05/23/2018,Social_workers,@ProfessorChic,RT @GuardianUS: Roger Federer: Serena Williams may well be best overall tennis player ever https://t.co/vUDLFefxBF +05/23/2018,Social_workers,@ProfessorChic,RT @annarbornews: ICE-detained Mexican journalist with UMich fellowship wins new hearing https://t.co/AwXfcHAS3G +05/23/2018,Social_workers,@ProfessorChic,"RT @freep: Credit freezes will be free, thanks to new banking bill and Equifax https://t.co/N9E4QKtwDp" +05/23/2018,Social_workers,@ProfessorChic,RT @nytimes: Breaking News: NFL owners agreed to a new national anthem policy: Teams will be fined if players kneel on the field or sidelin… +05/22/2018,Social_workers,@ProfessorChic,RT @freep: Woman says she delivered her baby in jail cell after jailers said she was faking labor https://t.co/Ww9nDhwKAK +05/22/2018,Social_workers,@ProfessorChic,RT @axios: Michigan has abandoned an effort to exempt some residents from proposed work requirements in the state's Medicaid program. It wo… +05/22/2018,Social_workers,@ProfessorChic,"RT @UM_IHPI: THURSDAY: Lynda Zeller of @MichiganHHS will give our May seminar, with an update & dialogue on #OpioidEpidemic and #mentalheal…" +05/21/2018,Social_workers,@ProfessorChic,RT @UM_MICHR: Up next in the Frontier Seminar Series: Learn about healthcare policy & innovation at 4 p.m. on June 13 in the Ford Auditoriu… +05/21/2018,Social_workers,@ProfessorChic,RT @nprscience: More moms in the US are sharing their beds with their babies—even as doctors strongly oppose the practice. But how risky is… +05/21/2018,Social_workers,@ProfessorChic,"RT @NewYorker: Alain Locke helped launch black modernism, but he was spurned by the artists he hoped to turn into lovers: https://t.co/oVp6…" +05/21/2018,Social_workers,@ProfessorChic,RT @monicafcox: Don't allow someone else's insecurities to become your insecurities. +05/21/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Watching but not treating cancer can be hard. Sometimes it’s the right approach. https://t.co/xoHSlXKZvq +05/20/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Starbucks: You don’t have to buy coffee to sit in our cafes or use our restrooms https://t.co/E8Gtjzu6iP +05/20/2018,Social_workers,@ProfessorChic,"RT @SabrinaSiddiqui: “Here was Meghan Markle, this beautiful bride, this self-described feminist. This divorced biracial woman, 36 years ol…" +05/20/2018,Social_workers,@ProfessorChic,"RT @adigoesswimming: My teenage nephew told me he asked a girl out and she turned him down. I said, ""You know what to do now, right?"" He sa…" +05/20/2018,Social_workers,@ProfessorChic,RT @Forbes: Meet the choreographer behind Childish Gambino's 'This Is America': https://t.co/j5U7T93pQT https://t.co/EdKwJPjTVK +05/20/2018,Social_workers,@ProfessorChic,RT @APEntertainment: BREAKING THEIR SILENCE: More stars speak out about mental health struggles as stigma around it declines https://t.co/i… +05/20/2018,Social_workers,@ProfessorChic,"RT @CNN: When doctors told him his blood has unique, disease-fighting antibodies, he started donating plasma every week. For 60 years. He’s…" +05/19/2018,Social_workers,@ProfessorChic,RT @nycjayjay: It was inevitable. https://t.co/tWAPgF4HaN +05/19/2018,Social_workers,@ProfessorChic,"RT @Gistoffreedom: Honoring Meghan’s Mom, Doria who sat wistfully alone, w/ grace, dignity & a deep love for the child she raised.THAT, is…" +05/19/2018,Social_workers,@ProfessorChic,RT @TheYBF: Thread👇🏾. A modern dissertation on black survival. https://t.co/ewLUVS3QS0 +05/19/2018,Social_workers,@ProfessorChic,"RT @ananavarro: Prince Harry and Meghan Markle officialize their love today. It has remarkable significance. In the US, it wasn’t until 196…" +05/19/2018,Social_workers,@ProfessorChic,RT @deray: the whole family is gifted. https://t.co/oWdVuqwl8E +05/19/2018,Social_workers,@ProfessorChic,"RT @WGME: Harry and Meghan, serenaded to the tune of ""Stand By Me."" https://t.co/7pUMBztYxJ #royalwedding @WGME https://t.co/RwCAfVGbOX" +05/19/2018,Social_workers,@ProfessorChic,"RT @BlackGirlNerds: White people: When is he going to stop talking? +Black people: He's just getting warmed up. *taking off shoes* *sneak e…" +05/19/2018,Social_workers,@ProfessorChic,RT @mRiah: These royals don’t know nothing about that good old 3 closings before the final end!! +05/19/2018,Social_workers,@ProfessorChic,RT @thedailybeast: The pastor giving the sermon right now was also the first black leader of the U.S. Episcopal Church #RoyalWedding https:… +05/19/2018,Social_workers,@ProfessorChic,RT @AlyssaMastro44: yes!!! https://t.co/bH6SPWdOyY +05/19/2018,Social_workers,@ProfessorChic,RT @TallGlassofStyL: “Take ya time pastor” https://t.co/jjfQ3YR2Er +05/19/2018,Social_workers,@ProfessorChic,"RT @CNN: American Bishop Michael Curry is delivering his address at the #royalwedding, which starts and ends with quotes from Martin Luther…" +05/19/2018,Social_workers,@ProfessorChic,RT @KatyTurNBC: The Most Reverand Michael Curry is everything right now. +05/18/2018,Social_workers,@ProfessorChic,RT @bniceloco: Michael Jackson really lied to Oprah and said he was rusty then hit the moonwalk like it was nothing 🐐 https://t.co/H3EHthUL… +05/18/2018,Social_workers,@ProfessorChic,RT @SeanMcElwee: Teen Vogue is doing a series of reported pieces on historical events that are ignored by history books. First piece explor… +05/18/2018,Social_workers,@ProfessorChic,RT @RawStory: Trump personally ordered the postmaster general to double Amazon’s shipping rates: report https://t.co/e9Z25F5F2t +05/18/2018,Social_workers,@ProfessorChic,"RT @AdviceToWriters: #Writing saved me from the sin and inconvenience of violence. +ALICE WALKER + +#amwriting #fiction https://t.co/BuvXFuc1wN" +05/18/2018,Social_workers,@ProfessorChic,"RT @NIMHD: Feature Story: For rural people with chronic diseases, poverty and depression go hand in hand. https://t.co/P1CzXeWXov #MentalHe…" +05/18/2018,Social_workers,@ProfessorChic,"RT @CDC_Cancer: Women: Overwhelmed by too much health advice? Get our ""cheat sheet"" for #cancer screenings and good health! https://t.co/nt…" +05/18/2018,Social_workers,@ProfessorChic,"RT @DeanObeidallah: This Is even more relevant today after latest school shooting: Childish Gambino's ""This Is America"" https://t.co/Ryvj3r…" +05/18/2018,Social_workers,@ProfessorChic,"RT @davidaxelrod: My amazing wife, Susan, has waged a long, heroic battle to @CureEpilepsy. Today I watched her receive an honorary +docto…" +05/18/2018,Social_workers,@ProfessorChic,RT @NPR: The Trump administration is reviving a rule that would deny federal family planning funds to organizations that provide abortion r… +05/18/2018,Social_workers,@ProfessorChic,RT @NIHDirector: See video of my conversation with @BarbraStreisand on a Facebook Live cohosted by @NIH and @WHA for a talk on women’s hear… +05/18/2018,Social_workers,@ProfessorChic,RT @NIH_LRP: Join a Facebook Live today at 2:00 pm ET with @WHA co-founder @BarbraStreisand & @NIHDirector Dr. Francis Collins today as th… +05/18/2018,Social_workers,@ProfessorChic,RT @RVAwonk: Trump is reportedly planning to announce tomorrow that he's cutting federal funding to any health agency that even provides in… +05/18/2018,Social_workers,@ProfessorChic,RT @TheAtlantic: Some black parents see homeschooling as a way of protecting their kids from the racial disparities of the American educati… +05/16/2018,Social_workers,@ProfessorChic,RT @loumoore12: A student called me Lou today. https://t.co/KOw8JQSUEu +05/16/2018,Social_workers,@ProfessorChic,RT @chrislhayes: The movie version of this entire thing *has* to be called Basta. +05/16/2018,Social_workers,@ProfessorChic,RT @nprpolitics: Senate Approves Overturning FCC's Net Neutrality Repeal https://t.co/1NoC8VXNqp +05/16/2018,Social_workers,@ProfessorChic,RT @Gistoffreedom: Historic Tuskegee Institute | History of Nursing at Tuskegee | Tuskegee University https://t.co/ubK8La61ox +05/16/2018,Social_workers,@ProfessorChic,"RT @MichaelSkolnik: When Paulette Jordan wins in November, she will become the first Native American Governor in US history! + +We. Can. Do.…" +05/15/2018,Social_workers,@ProfessorChic,RT @KQED: Can Schools Change Measures of Success by Focusing on Meaningful Work Instead of Test Scores? https://t.co/rKDpgibcT8 https://t.c… +05/13/2018,Social_workers,@ProfessorChic,RT @GlennThrush: I can't just keep throwing coffee at every problem. +05/13/2018,Social_workers,@ProfessorChic,"RT @BritniDWrites: Add ""performing community service while Black"" to the list of things that make you suspicious. + +This happened to my #SG…" +05/13/2018,Social_workers,@ProfessorChic,"RT @SenGillibrand: As a working mom and a lawmaker, Mother's Day for me raises the question of whether we as a country value women every da…" +05/13/2018,Social_workers,@ProfessorChic,"RT @AcademicBatgirl: Happy Mother’s Day to all of the academic moms working hard to keep it real at home and on campus, and to women who do…" +05/13/2018,Social_workers,@ProfessorChic,"RT @ProfJeffries: 54 years ago #FannieLouHamer asked the question, “Is this America?” + +54 years later #ChildishGambino reminds us that the…" +05/13/2018,Social_workers,@ProfessorChic,"RT @AdviceToWriters: Inspiration exists, but it has to find us working. +PABLO PICASSO + +#amwriting #creativity #writing https://t.co/miU8zo4…" +05/12/2018,Social_workers,@ProfessorChic,RT @UConnHDI: The Robert Wood Johnson Foundation has appointed Dr. Wizdom Powell to the National Advisory Committee for their Interdiscipli… +05/12/2018,Social_workers,@ProfessorChic,"RT @meredithdclark: *jumps up with a Baptist shout* + +(even tho I'm not Baptist) https://t.co/apQdtzDkQJ" +05/12/2018,Social_workers,@ProfessorChic,RT @NkemkaA: No is sooo powerful in facilitating self care. What can you say no too today? https://t.co/h9D64PYFme +05/10/2018,Social_workers,@ProfessorChic,"RT @PennLDI: Next Tuesday: Don't miss Dr. Renuka Tipirneni's research seminar on the effects of #Medicaid expansion on access to care, heal…" +05/09/2018,Social_workers,@ProfessorChic,RT @SPSMM_D51: This is the third installment of interviews highlighting the work of psychologists whose research and practice examines mino… +05/09/2018,Social_workers,@ProfessorChic,RT @thestevefund: Please watch this 45-second video in which Dr. Alfiee Breland-Noble @dralfiee Senior Scientific Advisor to the Steve Fund… +05/09/2018,Social_workers,@ProfessorChic,RT @AP: President Trump suggests that journalists have their credentials revoked for reporting negative news about him. https://t.co/w2zQuf… +05/09/2018,Social_workers,@ProfessorChic,RT @NPR: The CDC is still advising people not to eat romaine lettuce unless they know where it was grown. https://t.co/1IDcDr5Pmo +05/07/2018,Social_workers,@ProfessorChic,RT @GQMagazine: Buy the @Jcrew Nike that always sells out—while you still can https://t.co/ptgp5MN78p https://t.co/9qzMPUCgcz +05/07/2018,Social_workers,@ProfessorChic,RT @insidehighered: The University of Florida is apologizing for the way some black students were treated at one of the graduation ceremoni… +05/07/2018,Social_workers,@ProfessorChic,"RT @thecrisismag: ""In his visit with West, the rapper T.I. was stunned to find that West, despite his endorsement of Trump, had never heard…" +05/07/2018,Social_workers,@ProfessorChic,RT @THEBSU: If you're looking for a class to take here's a cool one https://t.co/qwi2WhQ6gV +05/07/2018,Social_workers,@ProfessorChic,"RT @TheUndefeated: At Morehouse, Starbucks executives seem unable to understand the burden of institutional racism. +https://t.co/wwqdXX04V2" +05/07/2018,Social_workers,@ProfessorChic,RT @nprpolitics: It's no longer out of the realm of possibility that the Senate could change hands and fall under Democratic control after… +05/07/2018,Social_workers,@ProfessorChic,RT @fivefifths: I can see Twitter is going to be bad again today +05/07/2018,Social_workers,@ProfessorChic,"RT @marinakoren: Kanye West is championing ""a white freedom, freedom without consequence, freedom without criticism, freedom to be proud an…" +05/07/2018,Social_workers,@ProfessorChic,"RT @Sifill_LDF: And so, it is here. Brilliant, self-revealing, devastating. Ta-Nehisi Coates on the fall of Kanye. Take the time to read it…" +05/07/2018,Social_workers,@ProfessorChic,"RT @MichaelSkolnik: This is one the greatest pieces of writing I have ever read. Please read it. And read the whole thing. + +Thank you Ta-N…" +05/07/2018,Social_workers,@ProfessorChic,"RT @camerondare: Childish Gambino - This is America + +Released 22 hours ago. 10M views. #1 Trending on YouTube. + +https://t.co/FnYDDfqUBp" +05/07/2018,Social_workers,@ProfessorChic,RT @Wizdomisms: The outrage over #ThisIsAmerica & its depiction of gun violence & the lack of equivalent outrage over actual gun violence t… +05/05/2018,Social_workers,@ProfessorChic,RT @ProfessorTD: 'Cool Blond Asians' Are Giving Me an Identity Crisis says #multiracial #biracial author https://t.co/PJ293hM1dl @get_lipst… +05/05/2018,Social_workers,@ProfessorChic,RT @BlackHealthNews: The Health of Black America: Gains in health equality by African-Americans in the U.S. have taken a slight step backwa… +05/05/2018,Social_workers,@ProfessorChic,RT @kesslerbs: Problematic is the “bless your heart” of academia. +05/05/2018,Social_workers,@ProfessorChic,RT @PRBA_ISR: Karen Tabb @ProfessorTD former @PRBA_ISR @TheMCUAAAR summer program participant. @ProfMouzon @WatkinsResearch @ProfessorChic… +05/02/2018,Social_workers,@ProfessorChic,RT @washingtonpost: Kanye West called slavery a choice. TMZ’s Van Lathan gave a forceful — and thoughtful — rebuke. https://t.co/Dwa4OSROs4 +05/02/2018,Social_workers,@ProfessorChic,RT @anthonyocampo: Adding to my vision board ✅ https://t.co/9H16NyjG4b +05/02/2018,Social_workers,@ProfessorChic,RT @TheUndefeated: Drake’s fave Raptors let LeBron’s Cavs steal Game 1: 113-112. Maybe it’s all just “God’s Plan”? https://t.co/PT4Uehh17T +07/01/2018,Social_workers,@DrKumarVishwas,"RT @pramila2710: एक बस तू ही नहीं मुझसे ख़फ़ा हो बैठा +मैं ने जो संग तराशा वो ख़ुदा हो बैठा + +शुक्रिया ए मेरे क़ातिल ए मसीहा मेरे  +ज़हर जो तु…" +07/01/2018,Social_workers,@DrKumarVishwas,"'वो दिल-नवाज़ है लेकिन नज़र-शनास नहीं +मिरा इलाज मिरे चारागर के पास नहीं' +(नासिर काज़मी) +मेरी किस्मत अच्छी है कि मे… https://t.co/wulsEDgA8x" +07/01/2018,Social_workers,@DrKumarVishwas,"अपि स्वर्णमयी लंका न में लक्ष्मण रोचते 🙏 +सुप्रभात भारत ❤️🇮🇳 https://t.co/d0DsfBQ22V" +06/30/2018,Social_workers,@DrKumarVishwas,Applause to this real “Down to Earth” singer and such a nice gesture of u @Shankar_Live 👍🇮🇳 Mile Sur Mera Tumahra❤️ https://t.co/OvAzMDwVtc +06/30/2018,Social_workers,@DrKumarVishwas,@ROHITJINDAL1421 श्री तुफैल चतुर्वेदी 👍 +06/30/2018,Social_workers,@DrKumarVishwas,"बुलंदी का नशा सम्तों का जादू तोड़ देती है , +हवा उड़ते हुए पंछी के बाज़ू तोड़ देती है , +सियासी भेड़ियों थोड़ी बहुत… https://t.co/2jut5HxvSJ" +06/30/2018,Social_workers,@DrKumarVishwas,मंदसौर हमारे लिए सोच-शर्म और कठोर क़दम उठाने का ज़रूरी वक़्त है ! समाज-सरकार-न्यायपालिका सबको अब हर हाल में जागना… https://t.co/ExJyeemGQ2 +06/29/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: वक़्त रहते ही देख लो वरना , +ख़्वाब आँखें बदल भी लेते हैं..!😍 https://t.co/o3tf2YjkQc" +06/29/2018,Social_workers,@DrKumarVishwas,"वक़्त रहते ही देख लो वरना , +ख़्वाब आँखें बदल भी लेते हैं..!😍 https://t.co/o3tf2YjkQc" +06/29/2018,Social_workers,@DrKumarVishwas,संगीत और ज़िंदगी दोनों में बेलौस और जुनूनी धुन जीने वाले मनहर दोस्त @VishalDadlani को उनके जन्मदिन पर उनके कम्पोजिश… https://t.co/F6zopRJYoT +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: For once and for ever... Nation first! 🇮🇳 +""हम शब्द-वंश के हरकारे,सच कहना अपनी परंपरा, +हम उस कबीर की पीढ़ी जो बाबर-अकबर…" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: आतंक से लड रही सेना के ख़िलाफ़ राजनीति नहीं करने दूँगा यह सुनकर,आत्मा का सौदा कर लेने वाले 11 नवपतित गिद्धों को जमा कर…" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: 3 में से जिस 1 मुद्दे पर देश की सेना के पक्ष में होने पर मुझे “तथाकथित राजनैतिक नुक़सान” पहुचायाँ गया था,आज उसी शौर्यगा…" +06/28/2018,Social_workers,@DrKumarVishwas,"For once and for ever... Nation first! 🇮🇳 +""हम शब्द-वंश के हरकारे,सच कहना अपनी परंपरा, +हम उस कबीर की पीढ़ी जो बाबर-… https://t.co/kUHSaEpAOE" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @RathoreAradhana: ""अंधकार चाहे भारी हो या समंदर पार हो,सदा उजाला विदित हुआ है अगर सत्य आधार हो..!"" +Salute to u for ur stand 🙏🏻🇮🇳❤️ https…" +06/28/2018,Social_workers,@DrKumarVishwas,"Viral max and forward to this video to every Indian who being unpolitical only loves his/her country ❤️🙏🇮🇳 +https://t.co/ucQAD1vRg2" +06/28/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: हम भारत के लोग! +We, The Nation! +Watch, Listen and Share if you feel for Nation! 🇮🇳🙏 +https://t.co/xKqFQuVB5j" +06/28/2018,Social_workers,@DrKumarVishwas,Must watch again #SurgicalStrike 🇮🇳🙏 https://t.co/AJTZFZf5EK +06/28/2018,Social_workers,@DrKumarVishwas,"आतंक से लड रही सेना के ख़िलाफ़ राजनीति नहीं करने दूँगा यह सुनकर,आत्मा का सौदा कर लेने वाले 11 नवपतित गिद्धों को जमा… https://t.co/ff7Z2lXrjc" +06/28/2018,Social_workers,@DrKumarVishwas,"3 में से जिस 1 मुद्दे पर देश की सेना के पक्ष में होने पर मुझे “तथाकथित राजनैतिक नुक़सान” पहुचायाँ गया था,आज उसी शौ… https://t.co/ykSmyuAZAB" +06/27/2018,Social_workers,@DrKumarVishwas,हम हैं देसी ❤️🇮🇳👍 https://t.co/75d1fWCBCc +06/27/2018,Social_workers,@DrKumarVishwas,@turabnaqvi @Rekhta @rahatindori अल्हमदुलिल्लाह ! लेकिन जॉन बस एक ही हुआ ❤️👍😊 +06/27/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “जो धरती से अम्बर जोड़े उसका नाम मोहब्बत है , +जो शीशे से पत्थर तोड़े उसका नाम मोहब्बत है , +क़तरा क़तरा सागर तक तो जाती…" +06/27/2018,Social_workers,@DrKumarVishwas,"रोज़ मौसम की शरारत झेलता कब तक , +मैंने खुद में रच लिए कुछ ख़ुशनुमा मंज़र..! https://t.co/Av8sf5ikYN" +06/27/2018,Social_workers,@DrKumarVishwas,"RT @jaya_kishoriji: गीत काव्य की शायद सबसे पुरानी विधा है; गीत मनुष्य मात्र की भाषा है। +गीत प्रत्येक युग में मनुष्य के साथी रहे हैं, भविष्य…" +06/26/2018,Social_workers,@DrKumarVishwas,RT @anshuman1tiwari: अनोखा पुनीत शब्द विन्यास ! नवगीत के पुराने दिन याद आ गए . साधुवाद https://t.co/PO6twvZo2E +06/26/2018,Social_workers,@DrKumarVishwas,"गीत को ख़ारिज करने वालों के लिए सूचना विस्मयकारी हो सकती है कि एक शुद्ध गीत को 24 घंटे में 10,00,00 से ज़्यादा गीत-… https://t.co/SOogRMhIXY" +06/26/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: ...तो आज, आप दोस्तों की प्रतीक्षा के लगभग दस वर्षों के बाद, मेरी आत्मकथा का एक हिस्सा, यह गीत, आप सब के लिए, क्यूँकि उस…" +06/26/2018,Social_workers,@DrKumarVishwas,@rinkkku https://t.co/CGoPNuYGKN +06/26/2018,Social_workers,@DrKumarVishwas,@deeptibharadwaj जीती रहो भतीजी ❤️👍😜 +06/26/2018,Social_workers,@DrKumarVishwas,"अग़ल-बग़ल स्वर्णाभ शिखर थे.... +बाबा नागार्जुन की कविता “बादल को धिरते देखा है” में ये पंक्ति आजतक बस पढ़ी/गाई थी !… https://t.co/K0B10hstXb" +06/25/2018,Social_workers,@DrKumarVishwas,"...तो आज, आप दोस्तों की प्रतीक्षा के लगभग दस वर्षों के बाद, मेरी आत्मकथा का एक हिस्सा, यह गीत, आप सब के लिए, क्यूँ… https://t.co/5jjrGfwCGW" +06/25/2018,Social_workers,@DrKumarVishwas,"...आप सब के द्वारा हज़ारों बार पूछे गए लाखों प्रश्नों का बेहद असहज सा सहज उत्तर भी इसी गीत में है, और साथ ही वे कई… https://t.co/pRlJGIpQZd" +06/25/2018,Social_workers,@DrKumarVishwas,...उजाड़ मन ने अपलक शून्य को निहारते हुए रोती आत्मा के साथ उसी रात यह गीत रचा और उसी रात ने आगे सैकड़ों-हज़ारों ऐसी… https://t.co/q4EXaGf2nJ +06/25/2018,Social_workers,@DrKumarVishwas,"...जबलपुर से अयोध्या की ट्रेन यात्रा थी, ठीक-ठीक याद है “चित्रकूट-एक्सप्रेस” से ! देश के वरेण्य गीतकार स्व डॉ उर्मि… https://t.co/GvEtrJXJ4B" +06/25/2018,Social_workers,@DrKumarVishwas,...जब उन हाथों में मेरे छंदों के वर्तुल कंगनों की बजाय किसी और के नाम की चूड़ियाँ डाली जा रही थीं...और उस माँग में… https://t.co/QgIk9CqDae +06/25/2018,Social_workers,@DrKumarVishwas,"आज आपके साथ एक गीत शेयर कर रहा हूँ। बरसों-बरस पहले, यह गीत ठीक उस रात लिखा गया, जब उन पैरों की उंगलियों में वो बिछि… https://t.co/8GXUyGu2l7" +06/25/2018,Social_workers,@DrKumarVishwas,"आपातकाल 🌑 #Emergency + +https://t.co/MwXke48G0o" +06/25/2018,Social_workers,@DrKumarVishwas,"Nagarjuna on #Emergency @anantvijay @maliniawasthi @MANJULtoons @iawoolford @BajpayeeManoj @YRDeshmukh +https://t.co/MwXke48G0o" +06/25/2018,Social_workers,@DrKumarVishwas,"@Kalpana46065453 @swroopraj320 @KapilMishra_IND @FN7zVYfkOF7mi19 @narendramodi @chhagan819 Enjoy 🌦🌧⛈ +https://t.co/vflB7r71k4" +06/25/2018,Social_workers,@DrKumarVishwas,"दैनिक भास्कर में आज महाभारत 2019 : 'बीच धार में ही पसर गई पीडीपी' 🙏😁😁 +https://t.co/VSeJX7h1Z0" +06/24/2018,Social_workers,@DrKumarVishwas,"''जिसको दिन-रात देखते थे हम , +उसने इक बार भी नहीं देखा , +इश्क़ इतने जतन से करते रहे , +हमने इतवार भी नहीं देखा...!”😍… https://t.co/Emec0zVGeD" +06/24/2018,Social_workers,@DrKumarVishwas,@gyan_ind जीते रहिए 🎂🌹 +06/23/2018,Social_workers,@DrKumarVishwas,"मा०मंत्री @HardeepSPuri जी,आंवटियों की समस्या के प्रति आपके श्रम का सम्मान करते हुए कहूगाँ कि आपका ये उत्तर नितांत… https://t.co/9CYq6N6JDf" +06/22/2018,Social_workers,@DrKumarVishwas,"पिता जिस के रक्त ने उज्ज्वल किया कुल-वंश-माथा ❤️ +❤️🙏🇮🇳🇮🇳🇮🇳 लव यू अब्बाजान 🙏 https://t.co/ezDRkOVl8p" +06/22/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “विदुर का भीष्म का पद अश्रु-प्रक्षालन नहीं भूला, +कठिन-व्रत द्रोण-इंगित पथ-तपश्चालन नहीं भूला , +कुटिल लाक्षागृहों के फे…" +06/22/2018,Social_workers,@DrKumarVishwas,"किरदार हो ऐसा कि फसाना नहीं भूले, +ज़िंदा रहो ऐसे कि ज़माना नहीं भूले !👍 मैक्यावैली,गैलीलियो,लिनियार्डो द विंची और… https://t.co/FiCDcxHKcl" +06/20/2018,Social_workers,@DrKumarVishwas,@bahraichpolice Thanks 🙏 +06/20/2018,Social_workers,@DrKumarVishwas,"स्व मुश्ताक़ अहमद युसूफ़ी की लिखी उत्कृष्ट हास्य-व्यंग्य की किताबें 'आब-ए-ग़ुम', 'ख़ाकम-ब-दहन' और 'ज़र-गुज़िशत' हि… https://t.co/FB87nOGm2x" +06/20/2018,Social_workers,@DrKumarVishwas,उर्दू के संभवतः सबसे बड़े व्यंग्यकार मुश्ताक़ अहमद युसूफ़ी जी नहीं रहे। जयपुर में पैदा हुए युसूफ़ी साहब यूँ तो आज़ा… https://t.co/afu05x06zJ +06/20/2018,Social_workers,@DrKumarVishwas,"आषाढ़ लग गया है...❤️ मादक त्रयी कालिदास-मेघदूत, बाबा नागार्जुन का “भीषोण भालो” गठबंधन सुनिए 😍 @rahuldev2… https://t.co/YzPnTrgcP5" +06/20/2018,Social_workers,@DrKumarVishwas,@Uppolice @NCWIndia @myogiadityanath @vinodkapri @DrSarvapriya @bahraichpolice @digdevipatan @adgzonegkr आभार ! आशा… https://t.co/IzNIGPMQue +06/20/2018,Social_workers,@DrKumarVishwas,@ChetanSanghi @NCWIndia @Uppolice @myogiadityanath @vinodkapri @DrSarvapriya शुक्रिया 🙏🇮🇳 +06/20/2018,Social_workers,@DrKumarVishwas,"“आज भी आदम की बेटी हंटरों की जद में है, +हर गिलहरी के बदन पर धारियाँ होंगीं ज़रूर” +बेहद दुखद लेकिन ये सब कब तक? आख़ि… https://t.co/K722xlLACQ" +06/19/2018,Social_workers,@DrKumarVishwas,"RT @EvrydayQuote: Distance yourself from people who: + +-Lie to you +-Disrespect you +-Use you +-Put you down" +06/19/2018,Social_workers,@DrKumarVishwas,"ये मसअला दिल का है, +हल कर दे इसे मौला , +ये दर्द ए मुहब्बत भी , +“कश्मीर” न हो जाए..!🙏😳 +(अना देहलवी)" +06/19/2018,Social_workers,@DrKumarVishwas,❤️❤️❤️❤️🙏🇮🇳🇮🇳 https://t.co/tCoMG4yjmi +06/18/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: अपनी हर ग़ैर-मुनासिब सी जहालत के लिए, +बारहा तू जो ये बातों के सिफ़र तानता है , +छल-फरेबों में ढके सच के मसीहा मेरे , +हम…" +06/18/2018,Social_workers,@DrKumarVishwas,"RT @manakgupta: “धर्म निरपेक्षता एक मफलर की तरह है, जो चुनावी-मौसम देखकर कभी गले पड़ जाता है, कभी सोफ़े पर पसर जाता है, सवाल पूछने पर मुंह…" +06/17/2018,Social_workers,@DrKumarVishwas,झाँसी की सिंहनी माँ लक्ष्मीबाई आज ही के दिन* अंग्रेज़ी साम्राज्यवाद से लड़ते हुए वीरगति को प्राप्त हुई थीं। स्वातं… https://t.co/hUSwsFkrDa +06/17/2018,Social_workers,@DrKumarVishwas,RT @_AnkitaRana: Dr. kumar Vishwas recites ' Khub ladi mardani wo to Jhansi Wali Rani thi' penned by late #Subhadra_Kumari_Chauhan in a #kv… +06/17/2018,Social_workers,@DrKumarVishwas,"अपनी हर ग़ैर-मुनासिब सी जहालत के लिए, +बारहा तू जो ये बातों के सिफ़र तानता है , +छल-फरेबों में ढके सच के मसीहा मेरे ,… https://t.co/1yeEd1x30P" +06/17/2018,Social_workers,@DrKumarVishwas,इंटरनेट कहता है कि आज 'फ़ादर्स डे' है। साहित्य भाव रखने वाली हमारी सभ्यता किसी अन्य सभ्यता से आई हुई परंपरा को वर्… https://t.co/IAP90z1rnj +06/16/2018,Social_workers,@DrKumarVishwas,Well said @MEAIndia 🇮🇳👍 https://t.co/wDznYDSXAM +06/16/2018,Social_workers,@DrKumarVishwas,"अहा, भारतीय स्वातंत्रय चेतना की अग्निरेखा ! इस पुण्यभूमि में स्थित महाराणा के जन्म का अमृत-कक्ष ,शक्ति मद में चूर ह… https://t.co/t9bOUryp6U" +06/16/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: تری دُنیا تری اُمید تجھے مل جاے +چاند اس بار تری عید تجھے مل جاے +جس کی یادوں میں چراغوں سا جلا ھے شب بھر +اُس سحر - رخ کی…" +06/16/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: ""तेरी दुनिया, तेरी उम्मीद तुझे मिल जाए + चाँद इस बार तेरी ईद तुझे मिल जाए + जिसकी यादों में चिराग़ों सा जला है शब-भर + उस…" +06/15/2018,Social_workers,@DrKumarVishwas,"تری دُنیا تری اُمید تجھے مل جاے +چاند اس بار تری عید تجھے مل جاے +جس کی یادوں میں چراغوں سا جلا ھے شب بھر +اُس سحر - ر… https://t.co/wTtqRHUnue" +06/15/2018,Social_workers,@DrKumarVishwas,"""तेरी दुनिया, तेरी उम्मीद तुझे मिल जाए + चाँद इस बार तेरी ईद तुझे मिल जाए + जिसकी यादों में चिराग़ों सा जला है शब-भर… https://t.co/dZncctcVW5" +06/15/2018,Social_workers,@DrKumarVishwas,"उन्हें अपनी दुकान लुटने का डर है, +यहाँ साँस अपनी ही घुटने का डर है 😢👎🏿 https://t.co/rX6VJcsu2u" +06/15/2018,Social_workers,@DrKumarVishwas,"भ्रष्टाचार-विरोधी आंदोलन के जनक, समर्पित सामाजिक कार्यकर्ता और हमारी आंदोलन-धर्मिता के प्रतीक पुरूष श्री अन्ना हज़ा… https://t.co/BzLfOY5S8f" +06/15/2018,Social_workers,@DrKumarVishwas,RT @BloodDonorsIn: #Lucknow Need #Blood O-ve for New born baby at Era Med College. Call 9598312559 via @mohdfurquanLko cc @lucknowpolice @u… +06/15/2018,Social_workers,@DrKumarVishwas,"अपने-अपने दल में,अपनी सत्ता-लोलुपता, अपने निजी बौनेपन का असुरक्षा-बोध, आत्ममुग्धता और सांप्रदायिक-वंशवादी राजनीति… https://t.co/QP2V19MMDA" +06/15/2018,Social_workers,@DrKumarVishwas,@KAVIDED जीवेम: शरद: शतम् 🎂👍🌹 +06/14/2018,Social_workers,@DrKumarVishwas,भगवान पूरे विश्व में गूँजे हमारी भारती....❤️🇮🇳🙏 https://t.co/6Icg6WpDM1 +06/14/2018,Social_workers,@DrKumarVishwas,"“जो धरती से अम्बर जोड़े उसका नाम मोहब्बत है , +जो शीशे से पत्थर तोड़े उसका नाम मोहब्बत है , +क़तरा क़तरा सागर तक तो… https://t.co/CsRuiEJ2S1" +06/13/2018,Social_workers,@DrKumarVishwas,"No,never ! I m not even a spade of Atal Ji’s charisma ! That time was different but good, his friends were good, hi… https://t.co/mtCkssd6tU" +06/12/2018,Social_workers,@DrKumarVishwas,"बाक़ी तो सब है इस तमाशे में , +सिर्फ़ ग़ायब हैं कथ्य की बातें ! +क्या ग़ज़ब दौर ए बेहयाई है , +झूठ के मुँह से सत्य की बातें ?😳🤣🤣👎🏿" +06/12/2018,Social_workers,@DrKumarVishwas,"तुम सब पहले “पकौड़ा-शिकंजी-आंदोलन” जो भी बनाते थे वो तो पता नहीं, पर अब तुम सब मिलकर इस देश के भोले-भाले लोगों का… https://t.co/g0Q4xOuB70" +06/11/2018,Social_workers,@DrKumarVishwas,शतम् विहाय भोक्तव्यम् ❤️ अलविदा बैंकाक 🙏 https://t.co/i7jNQ3Gult +06/11/2018,Social_workers,@DrKumarVishwas,"RT @manakgupta: भाई हो बिछुड़े हुए, भाई रहो, +भीख की ऐंठ से मिलेगा क्या? +चांद तक तुम हमारे साथ चलो, +फ़क़त घुसपैठ से मिलेगा क्या? + +‘महाकवि’…" +06/11/2018,Social_workers,@DrKumarVishwas,RT @AvadhootGupte: A beautifully written song from the film #Parmanu by the great @DrKumarVishwas !! Guys.. do listen!! https://t.co/LWwy6t… +06/11/2018,Social_workers,@DrKumarVishwas,"जो क़त्ल को भी जश्न लिखे, मौत को माशूक +‘बिस्मिल’ को बराबर हैं कलम हो कि हो बन्दूक +शहीद रामप्रसाद 'बिस्मिल', जिन्हों… https://t.co/sh2FCmNNaB" +06/11/2018,Social_workers,@DrKumarVishwas,"RT @DainikBhaskar: महाभारत 2019: सीटें कम पड़ें तो ही होता है सियासत में सीजफायर- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की प्रस्तुति +https…" +06/10/2018,Social_workers,@DrKumarVishwas,Congrats Team @IndianFootball on winning the #IntercontinentalCup2018 🏆 as well as Hearts ❤️ of millions of fans. S… https://t.co/V8qoI1j03q +06/10/2018,Social_workers,@DrKumarVishwas,थाईलैण्ड का शाकाहारी भोजन अत्यंत स्वादिष्ट व वैविध्यपूर्ण है.कल थाईलैण्ड के पूर्व उपप्रधानमन्त्री/पर्यटन मंत्री ने… https://t.co/iTouELSTQD +06/10/2018,Social_workers,@DrKumarVishwas,आभार भारतवंशियों ! बैंकाक में कविता का अप्रतिम प्रवाह ! जय हिंद-जय हिंद 🇮🇳❤️🙏 https://t.co/AoxA1fDIGR +06/09/2018,Social_workers,@DrKumarVishwas,"वैश्विक रंग-धानी बैंकाक में हिन्दी-उर्दू की काव्य-लहरी के क्षण, विशिष्ट कवियों-शायरों के सान्निध्य में... बैंकाक (… https://t.co/sHhvG2iGGr" +06/09/2018,Social_workers,@DrKumarVishwas,Congratulations @anitaatulmohan and @atulmohanhere 👍🇮🇳❤️Jay Ho https://t.co/n76YAxS9uq +06/09/2018,Social_workers,@DrKumarVishwas,बैंकाक में थाईलैंड के पर्यटन मंत्री और पूर्व उप प्रधानमंत्री कॉर्न दब्बारांसी के साथ कई विशिष्ट लोगों को वर्ल्ड आइ… https://t.co/mFiDovM1VW +06/09/2018,Social_workers,@DrKumarVishwas,"स्वतंत्रता सेनानी, आदिवासी जननायक, 'उलगुलान' के प्रणेता और समाज के 'भगवान', धरती आबा बिरसा मुंडा जी की आज पुण्यतिथि… https://t.co/GJw0jU7Xxc" +06/08/2018,Social_workers,@DrKumarVishwas,राजसिकता के वैश्विक रंग-देश बैंकाक में माँ हिंदी की सात्विक लोक-लहरियों का महापर्व ! आप सब बेहद प्यार करने वाले दो… https://t.co/ADC5f1uYKo +06/08/2018,Social_workers,@DrKumarVishwas,कृष्णभूमि मथुरा से कल शाम के जागरण कवि-सम्मेलन की कवरेज ❤️🙏 https://t.co/RLqXQ3VW9v +06/07/2018,Social_workers,@DrKumarVishwas,मेरे आराध्य भगवान भुवन मोहन कन्हैया की पावन भूमि मथुरा से दैनिक जागरण कवि-सम्मेलन LIVE...!!! 🙏❤️ https://t.co/CWEVphfJYy +06/07/2018,Social_workers,@DrKumarVishwas,एक शानदार फ़िल्म में अपनी थोड़ी सी हिस्सेदारी पर निजी ख़ुशी के इस वक़्त में आप सबका शुक्रिया ! जय हो ❤️🇮🇳🙏… https://t.co/n9pYJkc6AF +06/07/2018,Social_workers,@DrKumarVishwas,"सूरज पर प्रतिबंध अनेकों और भरोसा रातों पर ! +नयन हमारे सीख रहे हैं, हँसना झूठी बातों पर ! +हमने जीवन की चौसर पर, दाँव… https://t.co/51Fs8zWirQ" +06/07/2018,Social_workers,@DrKumarVishwas,माँ-बाबूजी को सादर चरण/स्पर्श ! 🙏😍महापंडित @abhisar_sharma को बधाई https://t.co/IHVzYUaZob +06/06/2018,Social_workers,@DrKumarVishwas,सुबह आपने इस गीत को चिलचिलाती धूप और मौसमी गर्मी के प्रकोप को कम करने की अपील के रूप में सुना। अब ढलती साँझ में इसी… https://t.co/gH6F6iFRa7 +06/06/2018,Social_workers,@DrKumarVishwas,"धूप में साया 🙏🌞 +https://t.co/hotCEKKNji" +06/05/2018,Social_workers,@DrKumarVishwas,"RT @ANI: Relative of stone-pelter who died after being run over by CRPF vehicle, slams Hurriyat leaders,accuses Geelani of hypocrisy,says,'…" +06/05/2018,Social_workers,@DrKumarVishwas,'क्षिति-जल-पावक-गगन-समीरा' - यही हमारे शरीर की संरचना भी है और पर्यावरण की भी। इसलिए पर्यावरण जीवन है। पर्यावरण का… https://t.co/r6yqyvx1rD +06/04/2018,Social_workers,@DrKumarVishwas,@avdhesh002 @TRIPATHI_AVI_ आशीर्वाद अनुज ❤️👍 +06/04/2018,Social_workers,@DrKumarVishwas,"आज प्यारे देवल आशीष की पुण्यतिथि है, मुझसे बड़ा गीतकार, मुझसे बड़ा परफॉर्मर और मुझसे बड़ा इंसान। दुनिया की भाग-दौड़… https://t.co/mIKshEzy7B" +06/04/2018,Social_workers,@DrKumarVishwas,@Prakashh031 @Shakeeljamali58 हमारे यहाँ उनके हाथ के निकटतम उपलब्ध साधन पर निर्भर था 🤣🤣😜😂 +06/04/2018,Social_workers,@DrKumarVishwas,@janhavisant @Shakeeljamali58 होते तो अब तक ऑनलाइन और लाइव दोनो तरह का पड़ गया होता 😜🤣 +06/04/2018,Social_workers,@DrKumarVishwas,This reminds me my “पूज्य-पिताश्री” 😜🤣Well said @Shakeeljamali58 https://t.co/718Kc3qiXm +06/04/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: यदि होसके तो घर के बाहर आसपास थोडा पानी प्यासे परिंदों, राहगीरों के लिए रखिये ! आपके सिर्फ कुछ मिनट जायेगें लेकिन किसी…" +06/04/2018,Social_workers,@DrKumarVishwas,"RT @HaasyaVyangya: देश के सुप्रसिद्ध कवि @DrKumarVishwas की @DainikBhaskar में 52 व्यंग्यात्मक श्रृंखलाओं की तीसरी कड़ी +#MahaBharat2019 : ई…" +06/04/2018,Social_workers,@DrKumarVishwas,"भास्कर में आज : ""महाभारत 2019: ईवीएम बड़ी छलिया, हर चुनाव में दल बदल लेती है"" 🙏😋 https://t.co/KkJLaIn7mr" +06/03/2018,Social_workers,@DrKumarVishwas,"जिस घड़ी ये आदमी ख़ुद में खुदा हो जाएगा, +कहने वाले ने कहा था,सब फ़ना हो जाएगा ! +शाम के मंज़र को तकना भी इबादत है मे… https://t.co/JKdwXaz4dI" +06/03/2018,Social_workers,@DrKumarVishwas,❤️👍🇮🇳 https://t.co/5XvAMtBxWb +06/03/2018,Social_workers,@DrKumarVishwas,"कांग्रेस के तेज़तर्रार किंतु शालीन प्रवक्ता, सहज और संभावनाओं भरे युवा मित्र @rssurjewala को जन्मदिन पर अशेष शुभकाम… https://t.co/YHY1BhEVQJ" +06/03/2018,Social_workers,@DrKumarVishwas,RT @amarujalakavya: कुमार विश्वास तो जॉन को ‘ख़ुदरंग’ शायर कहते हैं। इस बारे में वह वाणी प्रकाशन से प्रकाशित किताब ‘मैं जो हूं जॉन एलिया… +06/03/2018,Social_workers,@DrKumarVishwas,"अलग ही नहीं करतीं, +अलग-थलग कर देती हैं 😜🙏🇮🇳 https://t.co/DAQabfcBso" +06/03/2018,Social_workers,@DrKumarVishwas,"RT @Prabudhaspeaks: किसी का प्यास से मरना है मरना आदमीयत का +अगर आँखों में पानी हो, किसी को कम नहीं पड़ता https://t.co/7qIol91Cwq" +06/03/2018,Social_workers,@DrKumarVishwas,"यदि होसके तो घर के बाहर आसपास थोडा पानी प्यासे परिंदों, राहगीरों के लिए रखिये ! आपके सिर्फ कुछ मिनट जायेगें लेकिन… https://t.co/sSkjFtgDrl" +06/02/2018,Social_workers,@DrKumarVishwas,@VAIRAGI18 @manojmuntashir @riteshsinhrajwa @amarujalakavya @merikalamse @kavitakosh @Rekhta @TonyKakkar @kavishala… https://t.co/HxmIUxxIPq +06/02/2018,Social_workers,@DrKumarVishwas,"जान-ए-मन भोपाल, तेरे नाम... ❤️ #KVMusical #2017SuperHit +https://t.co/aZPTdebMwQ" +06/02/2018,Social_workers,@DrKumarVishwas,"@anubhavsinha कशिश ए लखनऊ अरे तौबा , +फिर वही हम, वही अमीनाबाद ❤️😍👍" +06/02/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: गली से कोई भी गुज़रे तो चौंक उठता हूँ , +नए मकान में खिड़की नहीं बनाऊँगा ! +फ़रेब दे के तेरा जिस्म जीत लूँ लेकिन, +मैं पे…" +06/01/2018,Social_workers,@DrKumarVishwas,"गली से कोई भी गुज़रे तो चौंक उठता हूँ , +नए मकान में खिड़की नहीं बनाऊँगा ! +फ़रेब दे के तेरा जिस्म जीत लूँ लेकिन, +मैं… https://t.co/9QSM8o1y9o" +06/01/2018,Social_workers,@DrKumarVishwas,"RT @KapilKhaneja: Any doubts left? why a shameful conspiracy was being hatched since long against @DrKumarVishwas + +He's the strongest hind…" +06/01/2018,Social_workers,@DrKumarVishwas,"“हाथ अगर जुड़कर रहतें हैं तो प्रणाम बन जाते हैं, +संकल्पों की पुण्यवेदी पर सभी काम बन जाते हैं , +अगर आत्मा रहे निरंत… https://t.co/8V8ADRAzPC" +05/31/2018,Social_workers,@DrKumarVishwas,"वो इतने बरस बाद वहीं पर मिली मुझे , +तो ऐसा लगा ज़िंदगी फ़रियाद है मेरी , +मंदिर को, देवता को, पुजारी को छोड़िए , +इन… https://t.co/IhCR8x018a" +05/31/2018,Social_workers,@DrKumarVishwas,"वो जो रोशनदान बनाने आए थे, +दरवाज़े में कुंडी मारे बैठे हैं..! 😜 +(ट्वीट पर पालित चिंटूओं की प्रतिक्रिया से लक्षित-पात्र का पता लगाएँ) 😂🙏🇮🇳" +05/31/2018,Social_workers,@DrKumarVishwas,"ज़िंदगी लाइव की भीगी आँखों वाली बेहद घरेलू मनहर-मना बुंदेलखण्डी मौडी, मीडिया-मुलगी, मेरी सनातन झगड़ालू दोस्त… https://t.co/fd8yszOrHO" +05/31/2018,Social_workers,@DrKumarVishwas,"अभी-अभी एक क्रांतिकारी पक्षकार फ़ोन पर मुझसे नाराज़ हो गए ! मैंने तो उन्हें बस इतना भर कहा था -: 🙏 +एक जेब में “कैपि… https://t.co/LygHZL0aAp" +05/31/2018,Social_workers,@DrKumarVishwas,तो आज EVM को “चरित्र-प्रमाण पत्र” दे देंगे नवपतित ? 😳🙏 +05/31/2018,Social_workers,@DrKumarVishwas,वोटर्स भी “एक पैसा” लौटा रहे हैं 😜👍🇮🇳 +05/31/2018,Social_workers,@DrKumarVishwas,"""ये चादर सुख की मौला क्यूँ सदा छोटी बनाता है? +सिरा कोई भी थामो, दूसरा ख़ुद छूट जाता है +तुम्हारे साथ था तो मैं ज़मा… https://t.co/hRylpZULdq" +05/30/2018,Social_workers,@DrKumarVishwas,"RT @RashmiS06: ""तुम्हारे राजमहलों में भले गूँजे तुम्हारी जय +जो स्वर तुमने ख़रीदे हैं तुम्हें ही वो अदा होंगे +अगर कच्चे घरों में रहने वाले स…" +05/30/2018,Social_workers,@DrKumarVishwas,@pashyantii हरदोई में लोग क्या कहेंगे ?😳😜👍 +05/30/2018,Social_workers,@DrKumarVishwas,"“विदुर का भीष्म का पद अश्रु-प्रक्षालन नहीं भूला, +कठिन-व्रत द्रोण-इंगित पथ-तपश्चालन नहीं भूला , +कुटिल लाक्षागृहों… https://t.co/bIvpjoFK9j" +05/29/2018,Social_workers,@DrKumarVishwas,"RT @iawoolford: मिल रहा था भीख में, सिक्का मुझे सम्मान का +मैं नहीं तैयार झुककर उठाने के लिए +~ हुल्लड़ मुरादाबादी #जन्मदिवस" +05/29/2018,Social_workers,@DrKumarVishwas,@HedaRahul Working on it ❤️👍 +05/28/2018,Social_workers,@DrKumarVishwas,@paash01 कौन हैं ये ?😊 +05/28/2018,Social_workers,@DrKumarVishwas,RT @DainikBhaskar: #MahaBharat2019 : उसूलों के बाद बिकने के लिए आत्मा अंतिम सामान है- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की दूसरी प्रस्… +05/27/2018,Social_workers,@DrKumarVishwas,"“मैं भी नज़रों की हद में बंदी हूँ , +तुम भी आँखों में बेतहाशा हो...!” +शुभरात्रि दोस्तो ! ❤️🙏 https://t.co/cZ7JiSAmkk" +05/27/2018,Social_workers,@DrKumarVishwas,❤️❤️❤️❤️🇮🇳🇮🇳🙏 https://t.co/Fi9n6E7dS3 +05/27/2018,Social_workers,@DrKumarVishwas,"हर दल के ऐसे शीर्ष नेता ही, ख़तरे में पड़े हमारे देश के लोकतंत्र को बचा सकते हैं 🙏 https://t.co/Ui8mE5oyYO" +05/27/2018,Social_workers,@DrKumarVishwas,महू (मप्र) में कल शाम... ❤️🙏 https://t.co/z6abPNBdCj +05/27/2018,Social_workers,@DrKumarVishwas,"भगवान पूरे विश्व में गूँजे हमारी भारती +❤️🙏🇮🇳 https://t.co/WXyGI5RcYT" +05/26/2018,Social_workers,@DrKumarVishwas,❤️🙏🇮🇳 https://t.co/btUXFPv7ag +05/26/2018,Social_workers,@DrKumarVishwas,@KumarAs25257612 सहमत ❤️🇮🇳🙏 +05/26/2018,Social_workers,@DrKumarVishwas,"निराले इन्दौर के पास ऐतिहासिक शहर महू, जो बाबा साहब भीमराव अम्बेडकर की जन्मस्थली है, में पंद्रह हजार से ज़्यादा श्… https://t.co/sTXIJN1HPJ" +05/26/2018,Social_workers,@DrKumarVishwas,"@janhavisant @pramila2710 इस नहीं का कोई इलाज नहीं , +रोज़ करते हैं आप, आज नहीं ! (दाग)" +05/26/2018,Social_workers,@DrKumarVishwas,"महनीय मेवाड़ की वंशीय गुरूता व विनम्रता के ध्वजवाहक, कला-संस्कृति-भाषा और संस्कार के युवा प्रचारक,मेरे अनन्य आत्मीय… https://t.co/TDVFKNCzuc" +05/26/2018,Social_workers,@DrKumarVishwas,जयतु जय-जय भारत-पुत्री ❤️👍🇮🇳 https://t.co/9oNKjSEb3g +05/26/2018,Social_workers,@DrKumarVishwas,देश भर से आए JITO सदस्यों के साथ कल की खूबसूरत #KVMusical ❤️ शाम के बाद आज JITO की युवा शक्ति का सम्बोधन 'युवा और… https://t.co/katMZud6Wi +05/26/2018,Social_workers,@DrKumarVishwas,RT @TonyKakkar: Such beautiful lyrics by @DrKumarVishwas Listen to melodious #DeDeJagah from #Parmaanu @SachinJigarLive @yasserdesai @ZeeM… +05/26/2018,Social_workers,@DrKumarVishwas,जय हो भारतपुत्री 🙏🇮🇳 https://t.co/QAJYnaYzMe +05/25/2018,Social_workers,@DrKumarVishwas,JITO Growth Summit के तीन-दिवसीय कार्यक्रम में आज की शाम JITO के हज़ारों सदस्यों के साथ मस्ती और कविता का दौर बैंग… https://t.co/FxhtTBRGVZ +05/25/2018,Social_workers,@DrKumarVishwas,"RT @anantjais19: कृपा ,रुतबा इनायत मेहरबानी बेअसर निकली, मुझे बदनाम करने की निशानी बेअसर निकली + +मेरे हर लफ्ज का जादू जमाने की जबां पर है…" +05/25/2018,Social_workers,@DrKumarVishwas,"RT @bothra_madhu: @DrKumarVishwas +""कैसे कह दूँ कि थक गया हूँ मैं, +जाने किस-किस का हौंसला हूँ मैं!! +~डाॅ कुमार विश्वास 🎇 https://t.co/HCPHXR…" +05/24/2018,Social_workers,@DrKumarVishwas,बिहार में पटना के पास बाढ़ शहर से #KVMusical LIVE...!!! 🎵🎤❤️ https://t.co/cFlUWqv4wx +05/24/2018,Social_workers,@DrKumarVishwas,RT @TheRichaSharma: बहुत बहुत बधाई व शुभ कामनाएँ ईतनी ख़ूबसूरत रचना के लिए @DrKumarVishwas भैया 😊👏🏼 ऊपर से उतना ही सुन्दर संगीत बद्ध किया… +05/24/2018,Social_workers,@DrKumarVishwas,"@gurmeljalalpur गंगा दशहरा पर माँ गंगा की स्तुति में भी “मोदी” ?😳 आप बुज़ुर्ग हैं, अपनी आयु का नहीं तो कम से कम पू… https://t.co/nBugzi6Tk3" +05/24/2018,Social_workers,@DrKumarVishwas,"Happy BDAy to the most humble, versatile music genius of our time @jeetmusic dada. God bless you dada, keep poring… https://t.co/BnLwGEddwn" +05/24/2018,Social_workers,@DrKumarVishwas,"RT @solely_supriya: जो गणपति अति पूज्य प्रधाना, तिहुं ते प्रथम गंग अस्नाना। 🙏❤️ + +The pious journey of the gratifying river being serenaded…" +05/24/2018,Social_workers,@DrKumarVishwas,RT @atulkanakk: अच्छा लिखना और अच्छा प्रस्तुत करना बड़ी बात है लेकिन दूसरों के अच्छे लिखे को मूल रचनाकार के प्रति सम्मान भाव के साथ अपने रच… +05/24/2018,Social_workers,@DrKumarVishwas,RT @kumartaurani: #allthebest @DrKumarVishwas @ZeeMusicCompany @anuragbedi https://t.co/0gARS2dUst +05/24/2018,Social_workers,@DrKumarVishwas,"माँ गंगा आपकी सभी सदिच्छाएँ पूर्ण करें। गंगा दशहरा शुभ हो 🙏 +https://t.co/Av9iRgxVlJ" +05/23/2018,Social_workers,@DrKumarVishwas,"[गंगा दशहरा पर विशेष] गंगा केवल एक नदी नहीं, भारत की सांस्कृतिक महारेखा है। गंगा दशहरा पर माँ गंगा को प्रणाम करें औ… https://t.co/fanWDsNxrh" +05/23/2018,Social_workers,@DrKumarVishwas,"कल तलक ख़ुद को जो सूरज का पुत्र कहता था , +जाके लटका है फ्यूज बल्बों की झालर में ख़ुद ! 😜🤣👎🏿" +05/23/2018,Social_workers,@DrKumarVishwas,@zoy2128 ❤️👍 https://t.co/aHqVT5caq2 +05/23/2018,Social_workers,@DrKumarVishwas,"RT @anubhavsinha: Kya baat hai Kumar Bhai .... dumdaar. @DrKumarVishwas +https://t.co/s5s7nhjxmt" +05/23/2018,Social_workers,@DrKumarVishwas,Thanks ! Waiting to pen for your project @anubhavsinha bhai ❤️ https://t.co/UKxiRuGo2x +05/23/2018,Social_workers,@DrKumarVishwas,"RT @DrKumarVishwas: “जो भी ज्यादा या कम समझतें हैं , +तुम को बस एक हम समझतें हैं ! +हम ठहाकों का दर्द जीतें हैं , +लोग आँसूं को गम समझतें हैं…" +05/22/2018,Social_workers,@DrKumarVishwas,"“जो भी ज्यादा या कम समझतें हैं , +तुम को बस एक हम समझतें हैं ! +हम ठहाकों का दर्द जीतें हैं , +लोग आँसूं को गम समझतें… https://t.co/L1ltokybkz" +05/22/2018,Social_workers,@DrKumarVishwas,"RT @ZeeMusicCompany: Add a whole lot of soul to your chaotic day with @yasserdesai's #DeDeJagah! + +@thejohnabraham @dianapenty @bomanirani…" +05/22/2018,Social_workers,@DrKumarVishwas,All the best my Diro @vinodkapri Our creative blending in your next project is going to Insure it’s footprints thr… https://t.co/aXLA8HlmEk +05/22/2018,Social_workers,@DrKumarVishwas,@tabassumgovil आप जैसी अनुभव-संपन्न हस्ती का स्नेह बहुत बड़ी बात है ! आभार ❤️🙏 +05/22/2018,Social_workers,@DrKumarVishwas,"RT @tabassumgovil: Ache geet sangeet mein char chand laga dete hain jo aapne laga diye hain Vishwas, filmi gaane mein bhi sahitya jhalak ra…" +05/22/2018,Social_workers,@DrKumarVishwas,RT @jeetmusic: Bollywood has indeed become richer by getting you as a lyricist @DrKumarVishwas in #Parmanu ! My best wishes for this versat… +05/22/2018,Social_workers,@DrKumarVishwas,Blessings from a Musicain like you is indeed the most soothing thing a lyricist wish to have @jeetmusic dada ! Eage… https://t.co/tGEnvL1PYI +05/21/2018,Social_workers,@DrKumarVishwas,RT @BloodDonorsIn: #Delhi Need #Blood B+ve at Holy Family Hospital. Call 9311111005 via @piyushleads cc @crowngaurav @ArvindGaur @DelhiPoli… +05/21/2018,Social_workers,@DrKumarVishwas,"RT @hridayeshjoshi: पश्चिम बंगाल में लोकतन्त्र को कूड़ेदान में डालकर, हिंसा और आतंक का सहारा लेकर पंचायत चुनावों में कब्ज़ा करने वाली ममता…" +05/21/2018,Social_workers,@DrKumarVishwas,"मराठी मध्ये वाचताना खूप खूप मजा आली 😍👍 @DainikBhaskar 🇮🇳✅ +https://t.co/VNdYVTzwSN" +05/21/2018,Social_workers,@DrKumarVishwas,"RT @DainikBhaskar: सरकार बन गई है पर जारी जुगाड़ है- कुमार विश्वास की व्यंग्यात्मक श्रृंखला की पहली प्रस्तुति + +@DrKumarVishwas + +https://t.…" +05/21/2018,Social_workers,@DrKumarVishwas,"RT @PANKAJPARASHAR_: 'वोटर ये सोचता है कि एमएलए जो चुना,  +उनका कबाड़ है या वो इनका कबाड़ है? +उन्नीस के नाटक का रिहर्सल है कर्नाटक,  +सरकार ब…" +05/21/2018,Social_workers,@DrKumarVishwas,"व्यंग्य-विशारद स्व० शरद जोशी के जन्मदिन पर है दैनिक भास्कर में,सालभर चलने वाली व्यंग्य लेखों की श्रृंखला “कह कुमार… https://t.co/9PeMxfY7Lk" +05/21/2018,Social_workers,@DrKumarVishwas,@pratik_dave27 सारू छै ❤️👍 +05/20/2018,Social_workers,@DrKumarVishwas,@pankajjha_ @ZeeMusicCompany आभार पंकज भाई ❤️👍 +05/20/2018,Social_workers,@DrKumarVishwas,"Every talent should be foreseen as a big thing in future. If we talk of Yaseer, not only #DeDeJagah but several oth… https://t.co/SGX148UNU9" +05/20/2018,Social_workers,@DrKumarVishwas,RT @Prabudhaspeaks: मेरे लिए #DeDeJagah की ख़ूबसूरती के अलग मायने हैं। इस गीत ने मेरे सामने जन्म लिया है। मेरे लिए यह सब अद्भत है https://t… +05/20/2018,Social_workers,@DrKumarVishwas,#DeDeJagah ❤️ https://t.co/QOBVGnqvZL +05/20/2018,Social_workers,@DrKumarVishwas,One thing needs a special mention here - @SachinJigarLive is one of the finest composer-duo of this generation. The… https://t.co/y4WgVg22Lj +05/20/2018,Social_workers,@DrKumarVishwas,"Yes, you have to be flexible with words while writing for a movie. #DeDeJagah from PARMANU also saw some last momen… https://t.co/ghTfB2ZKOS" +05/20/2018,Social_workers,@DrKumarVishwas,"फ़िल्म 'परमाणु' के इस गीत #DeDeJagah को सराहने के लिए सभी दोस्तों का आभार। + https://t.co/QxIxRgkg1h +@TheJohnAbraham @ZeeMusicCompany 🙏❤️" +05/20/2018,Social_workers,@DrKumarVishwas,"RT @Airavta: बाजा फाड़ गाना लिखा है @DrKumarVishwas भाई ने, सुनिये । https://t.co/fpN4yaXMTE" +05/20/2018,Social_workers,@DrKumarVishwas,"RT @AalokTweet: गीत-ऋषि नीरज से लेकर मानवीय सरोकरों के शायर निदा फ़ाज़ली तक, कवियों-शायरों की एक पूरी पीढ़ी ने फ़िल्मों को नायाब-गीतों के…" +05/20/2018,Social_workers,@DrKumarVishwas,"आज हिन्दी साहित्य के महारथी, कोमल-कमनीय कल्पना के महनीय कवि सुमित्रानंदन पंत जी का जन्मदिन है। सौभाग्यशाली हूँ, कि… https://t.co/z9MQVCsIU6" +05/19/2018,Social_workers,@DrKumarVishwas,RT @Charanpreeet: Congratulations to Brother @DrKumarVishwas for writing this brilliant master piece for @ParmanuTheMovie @ZeeMusicCompany… +05/19/2018,Social_workers,@DrKumarVishwas,❤️👍🇮🇳 https://t.co/w4beIu22gn +05/19/2018,Social_workers,@DrKumarVishwas,"RT @Inkhabar: #VIDEO : @TheJohnAbraham की फिल्म #Parmanu के गाने #DeDeJagah में @DrKumarVishwas ने दिए खूबसूरत बोल, हो रही है जमकर तारीफ +@…" +05/19/2018,Social_workers,@DrKumarVishwas,❤️👍 https://t.co/80AMRfQwAI +05/19/2018,Social_workers,@DrKumarVishwas,RT @sangitatewari: फ़िल्म परमाणु में कुमार विश्वास की कलम का कमाल. बहुत बहुत शुभकामनाएं @DrKumarVishwas https://t.co/dmtdxWGIZT +05/19/2018,Social_workers,@DrKumarVishwas,विपरीत वैचारिकी वाली @INCIndia और JD(S) का मेल कैसे निभेगा ये अलग बात किंतु दोनों दलों के विधायकों ने अद्भुत दलीय-… https://t.co/93q2mRH62X +05/19/2018,Social_workers,@DrKumarVishwas,RT @vinodkapri: छा गए भई @DrKumarVishwas .. हिंदी सिनेमा के गीतों को साहित्य का झोंका चाहिए था ..बहुत बधाई और शुभकामनाएँ ... https://t.co/… +05/19/2018,Social_workers,@DrKumarVishwas,"RT @PritishNandy: After the #Karnataka verdict, whatever it may be, no one in politics should ever talk about fighting corruption again." +07/01/2018,Social_workers,@drjoekort,"@PsychCentral thank you for the nice review of my latest book, “LGBTQ Clients in Therapy”https://t.co/Dlt2lvJ1kG https://t.co/ZgcjhOd5gC" +07/01/2018,Social_workers,@drjoekort,@cher So lucky and happy to have my favorite performer still making albums. +06/30/2018,Social_workers,@drjoekort,@kathygriffin you were great in Chicago your humor is so smart and 3 hours without a break! You’re awesome. +06/30/2018,Social_workers,@drjoekort,@cher you are right the Cher Show is good but needs some work. Loved it though #chershow https://t.co/gD97mATlkn +06/29/2018,Social_workers,@drjoekort,"@JerrySeinfeld please don’t minimize those who commit suicide with your naive statement, “why would you murder some… https://t.co/ikIhXOyGeN" +06/25/2018,Social_workers,@drjoekort,"Only a few more days left to get my new free e-book, “Cracking the Erotic Code” #erotica #eroticorientation +https://t.co/Jk786wh3ct" +06/23/2018,Social_workers,@drjoekort,Can’t wait to read it! https://t.co/eJ2IxgAk66 +06/22/2018,Social_workers,@drjoekort,"@therealroseanne This is great news! I will continue watching the Conner’s. Love the show. + +https://t.co/UcDq0FTMtp" +06/21/2018,Social_workers,@drjoekort,https://t.co/u7EfxjZtdo +06/20/2018,Social_workers,@drjoekort,@fakedansavage Lmao! I am Judy Isim. +06/19/2018,Social_workers,@drjoekort,@therealroseanne I applaud you for doing the right thing! https://t.co/xJofs4yLt9 +06/18/2018,Social_workers,@drjoekort,"RT @JamesMartinSJ: Like many, I've resisted using this word but it's time: the deliberate and unnecessary separation of innocent children f…" +06/17/2018,Social_workers,@drjoekort,Every Father’s day I post this article. The day comes when we must go from boy to man with our fathers. When I beca… https://t.co/9rqlbRw7Jg +06/15/2018,Social_workers,@drjoekort,@MillerRachelD So far it’s very good! +06/15/2018,Social_workers,@drjoekort,I’m really looking forward to this presentation on working with transgender individuals and their partners. So litt… https://t.co/7kizBnM5EA +06/15/2018,Social_workers,@drjoekort,@TheAASECT @DrRachelNeedle modern sex therapy Institute is hosting free wine at the 16 Mix restaurant at the Sherat… https://t.co/gOutZ3XjkT +06/14/2018,Social_workers,@drjoekort,"Watched movie, “Moonlight” on plane. WOW! It’s an excellent movie. + +Things are not better completely for LGBTQ tee… https://t.co/YZTcK82yH0" +06/14/2018,Social_workers,@drjoekort,"Men, Stop Using ""Kinky Sex"" as a Justification for Abuse + +https://t.co/zwqjGjBtv4" +06/13/2018,Social_workers,@drjoekort,RT @pnetworker: What's the difference between sexual orientation and gender identity? What are the most common mistakes therapists make whe… +06/13/2018,Social_workers,@drjoekort,I totally agree!! https://t.co/AB2jJ70noW +06/11/2018,Social_workers,@drjoekort,RT @beheroesdotnet: The FIRST LGBTQ puberty book! https://t.co/0Dsf6ESNXk +06/11/2018,Social_workers,@drjoekort,RT @kathygriffin: Big announcement with @ColtonLHaynes. For the month of June I’m donating $2 from every ticket sold (no matter when the sh… +06/11/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: Today, 7.3% of #Millennials identify as #LGBT; by contrast, 3.2% of Gen X'ers and 2.4% of Boomers identify as such. ht…" +06/09/2018,Social_workers,@drjoekort,RT @fakedansavage: Still waiting for someone to notice that I didn’t retweet this. https://t.co/843uXvXk80 +06/09/2018,Social_workers,@drjoekort,"RT @LogoTV: A new #Pride flag design has gone viral for the creative way it includes queer people of color, the trans community, and the st…" +06/09/2018,Social_workers,@drjoekort,@realDonaldTrump you’re a liar and a scary man in power to me and my community. It’s despicable. Huckabee Sanders:… https://t.co/eNbOtehDLc +06/08/2018,Social_workers,@drjoekort,@Logic301 So sad about Kate Spade and Anthony Bourdain. This song and video by Logic is so timely about Suicide. https://t.co/tKRJL4HPOA +06/08/2018,Social_workers,@drjoekort,RT @fakedansavage: Are we really doing the ex-gay thing again? Apparently we are—and this time the ex-gays came in waving the rainbow flag.… +06/07/2018,Social_workers,@drjoekort,Receive your free e-book “Cracking the Erotic Code” from me for pride month by clicking here https://t.co/pUC61osFxN +06/06/2018,Social_workers,@drjoekort,Omg I really needed this laugh right now this is hysterical!!!!!! https://t.co/Gt5RAw4jWw +06/05/2018,Social_workers,@drjoekort,"I cannot wait to see this in Chicago first June 29! The Cher Show (NY) Tickets +https://t.co/8D1fAVzHXm" +06/05/2018,Social_workers,@drjoekort,"@djstoilov None specifically for bi men. But I love @terryreal book, “I don’t want to talk about it”" +06/05/2018,Social_workers,@drjoekort,"Opinion: In gay wedding cake case, Supreme Court's punt sent a message by John Corvino +https://t.co/C7FK7ZKEne" +06/05/2018,Social_workers,@drjoekort,"Drew thought girls wanted to be dominated from “Fifty Shades of Grey” “Mr. & Mrs. Smith,”. “She’s on the table, and… https://t.co/biGmbxYfaT" +06/04/2018,Social_workers,@drjoekort,"You gotta me F#%^ kidding me????? +Supreme Court rules in favor of anti-gay baker in wedding cake case / LGBTQ Nation +https://t.co/b8r22Shl4f" +06/04/2018,Social_workers,@drjoekort,RT @PinkNews: Greece allows gay couples to have children https://t.co/PTwIQl01yJ +06/04/2018,Social_workers,@drjoekort,"RT @kathygriffin: I knew it. + +#WhereIsMelanie https://t.co/iMm461Ygk1" +06/04/2018,Social_workers,@drjoekort,@kathygriffin Hahahahahahahahahahaha omg I literally laughed out loud hahahahahahahahahaha!!!!!! +06/03/2018,Social_workers,@drjoekort,"I’m in a really beautiful hotel +In Allentown Pennsylvania presenting tomorrow on LGBT issues." +06/03/2018,Social_workers,@drjoekort,@ZakarTwins met gay twins at Pride had no idea they‘re local. New type middle eastern gay guy out open in face of h… https://t.co/FWeSUjPPzw +06/03/2018,Social_workers,@drjoekort,"On my way to these cities to teach +Lesbian, Gay, Bisexual, Transgender and Questioning (LGBTQ) Clients: Clinical I… https://t.co/4lmXnzVZjd" +06/03/2018,Social_workers,@drjoekort,"It’s Gay Pride Month, and we’re looking for your stories. Your personal experience about being LGBTQ Your experienc… https://t.co/0B9tuocFeP" +06/01/2018,Social_workers,@drjoekort,My new e-book is now available in paperback! Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fant… https://t.co/E8YS5Tofni +05/31/2018,Social_workers,@drjoekort,Goodbye masturbation month! +05/31/2018,Social_workers,@drjoekort,"Organized, cheerful, excellent written and verbal communication skills with the ability to multitask, prioritize a… https://t.co/09lhXKxqQU" +05/31/2018,Social_workers,@drjoekort,"Experienced office administrator/bookkeeper to greet clients, answer phones, schedule appointments and help run dai… https://t.co/wDznhZBc5c" +05/31/2018,Social_workers,@drjoekort,"RT @drjoekort: FREE eBOOK:“Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fantasies” +-Nonsexual narratives in sexual int…" +05/31/2018,Social_workers,@drjoekort,@therealroseanne threw herself under the bus. No one else did it. I’m tired of comedians poking fun of everyone but… https://t.co/ZOVPYyH065 +05/30/2018,Social_workers,@drjoekort,I agree with Debra. I feel badly for all the other paid employees of the show. What a mess. https://t.co/AEgfIrSShq +05/29/2018,Social_workers,@drjoekort,"FREE eBOOK:“Cracking the Erotic Code: Helping Gay Men Understand Their Sexual Fantasies” +-Nonsexual narratives in s… https://t.co/3XrNtcvfIW" +05/29/2018,Social_workers,@drjoekort,RT @fakedansavage: Blessed be the fruit. https://t.co/G7Slqdn4Ov +05/29/2018,Social_workers,@drjoekort,Love this!!! https://t.co/wCwDzC5m9d +05/27/2018,Social_workers,@drjoekort,"RT @EstherPerel: The @goop Guide to Sex is here, including a mention of the Art of Us: Desire. The first installment of our new digital ser…" +05/26/2018,Social_workers,@drjoekort,@Rosie I just let myself go natural it’s scary! +05/26/2018,Social_workers,@drjoekort,Bisexuals face criticism and disbelief about their sexual orientation everyday. Here’s why. https://t.co/ygluNoe0nc +05/25/2018,Social_workers,@drjoekort,"RT @EstherPerel: The expectation that one person will satisfy all of our many emotional, physical, and spiritual needs is a tall order. Ins…" +05/25/2018,Social_workers,@drjoekort,@pnetworker @NicoleRPrause Good thank you +05/25/2018,Social_workers,@drjoekort,I see an increase of crystal meth use by middle-age gay men who feel—and are—rejected sexually & romantically by ga… https://t.co/fiCouCXuxL +05/24/2018,Social_workers,@drjoekort,"Excited to announce we are staying at Woodward Building in Royal Oak, MI and are expanding space at The Center for… https://t.co/dytxNCCl2q" +05/22/2018,Social_workers,@drjoekort,@fluidlyspeaking It’s utterly ridiculously +05/22/2018,Social_workers,@drjoekort,"You have to be kidding me? Publix Censors ‘Summa Cum Laude’ on Graduation Cake Order +https://t.co/yGdxHce7gf" +05/21/2018,Social_workers,@drjoekort,New documentary reveals Whitney Houston was sexually abused as a child by aunt Dee Dee Warwick. This article is mos… https://t.co/QDluXXyYY2 +05/21/2018,Social_workers,@drjoekort,"RT @VantagePointTX: Happy to be included in this article on sexual anxiety. +https://t.co/9dtgVlHQG6" +05/21/2018,Social_workers,@drjoekort,@cher Happy birthday Cher you’ve been in my life my entire life. They say you’ll live forever so I hope my entire life ❤️ +05/20/2018,Social_workers,@drjoekort,"Erections Deserve Respect! Stop Pounding Your Partner and Have Good Sex Instead @chrisdona +https://t.co/6fBOYJFWnc" +05/20/2018,Social_workers,@drjoekort,"Erections Deserve Respect! Stop Pounding Your Partner and Have Good Sex Instead +https://t.co/6fBOYJFWnc" +05/20/2018,Social_workers,@drjoekort,"Spent wknd w/ @DrRachelNeedle who contributed to legal ban reparative therapy Boca Raton W Palm Beach, Lake Worth,… https://t.co/u3ujQyBfqq" +05/20/2018,Social_workers,@drjoekort,"Jane Ward, author of, ""Not Gay: Sex Between Straight White Men"" does a great job talking about the differences betw… https://t.co/VI9fiCJs5z" +05/19/2018,Social_workers,@drjoekort,"RT @DrDavidLey: Monogamy, forced or not, works for some people and not others. It suits some, but creates anguish for others. Treating it a…" +05/18/2018,Social_workers,@drjoekort,@elvisgomes90 Good point I think it’s a step in that direction but a good criticism. +05/18/2018,Social_workers,@drjoekort,"This is a test developed by researcher Dr. Robert Epstein to understand sexual orientation and sexual fluidity. +Ep… https://t.co/JVuADin5i5" +05/18/2018,Social_workers,@drjoekort,@fakedansavage I don't think he will. +05/18/2018,Social_workers,@drjoekort,"I’m coming to Chicago this Saturday, May 19, 2018 teaching my LGBTQ course. It will also be available that day as a… https://t.co/JfwmttHBPt" +05/17/2018,Social_workers,@drjoekort,"Chicago Saturday, May 19, 2018 teaching LGBTQ course. Available as a webinar. Hosted by the Modern Sex Therapy Inst… https://t.co/gkfu2YSasR" +05/17/2018,Social_workers,@drjoekort,"Gay/Lesbian Relationships- In this segment of the Innervoice show, Dr. Foojan Zeine interviews Dr. Joe Kort, dialog… https://t.co/6qYTACG53s" +05/17/2018,Social_workers,@drjoekort,"May is Masturbation month. Study reveals different masturbation habits of gay and straight people +https://t.co/2iKcaGU8g4" +05/15/2018,Social_workers,@drjoekort,Exclusive @CRSHsocial blog shares 3 Impactful Ways to #Support a #Transgender Loved One. Read it NOW >>… https://t.co/51BhQa0ks6 +05/15/2018,Social_workers,@drjoekort,Can straight young men be twinks? https://t.co/0wYQzfJANs +05/14/2018,Social_workers,@drjoekort,"RT @beheroesdotnet: Yes! @Scarleteen is the ONLY education site I recommend for the young people in my office - a long-standing, crazy- com…" +05/13/2018,Social_workers,@drjoekort,"Excellent article and video upacking privilege. “We as a society don’t tend to hate gay men because they are gay,”… https://t.co/3t0jxZJAlM" +05/12/2018,Social_workers,@drjoekort,RT @DrDavidLey: @SexologyU @DrMartyKlein @BBC And @drjoekort @DominicDavies1 @NicoleRPrause @ResparkLove @KinkHealth +05/12/2018,Social_workers,@drjoekort,RT @TonyOrlando: Keep an eye out for dates coming to your city!🎄#AChristmasReunion https://t.co/blGvTrpVJO +05/12/2018,Social_workers,@drjoekort,@TonyOrlando Wow multiple cities! Come to Detroit! +05/11/2018,Social_workers,@drjoekort,"RT @SexologyU: #Sexaddiction is in the news again. We recommend the work of @DrDavidLey, @DrMartyKlein and Douglas Braun-Harvey as an alter…" +05/11/2018,Social_workers,@drjoekort,@TonyOrlando Very happy to hear this! +05/11/2018,Social_workers,@drjoekort,"There Are 6 Types of Straight People Having Gay Sex, Says New Study #gaysex #sexualfluidity https://t.co/bs4tPvUGmZ… https://t.co/4P6JwcbbE1" +05/10/2018,Social_workers,@drjoekort,This is the Mature Masculine - the New Warrior - a re-definition of masculinity for the 21st century. By no means i… https://t.co/z1MVPAsC2V +05/10/2018,Social_workers,@drjoekort,He builds communities where people are respected and valued. He takes responsibility for himself and is also willin… https://t.co/qjzRjtGjZS +05/10/2018,Social_workers,@drjoekort,He knows that we are all one. He knows he is an animal and a part of nature. He knows his spirit and his connection… https://t.co/ui6ure0all +05/10/2018,Social_workers,@drjoekort,"He is flexible when he needs to be. He knows how to listen from the core of his being. + +He's not afraid to get dirt… https://t.co/z71WmgYvjx" +05/10/2018,Social_workers,@drjoekort,He creates intimacy and trust with his actions. He has men that he trusts and that he turns to for support. He know… https://t.co/Vz2Duu3teZ +05/10/2018,Social_workers,@drjoekort,@ManKindJournal He stopped blaming women or his parents or men for his pain years ago. He stopped letting his defen… https://t.co/PvrNVQklWB +05/10/2018,Social_workers,@drjoekort,@ManKindJournal This is the opposite of toxic masculinity. He feels guilty when he's done something wrong. He is ki… https://t.co/ajMHtFlfdz +05/10/2018,Social_workers,@drjoekort,@ManKindJournal This is the opposite of toxic masculinity. He knows what he feels. He knows how to cry and he lets… https://t.co/ij3sFUvVS6 +05/10/2018,Social_workers,@drjoekort,"@ManKindJournal This is the opposite of toxic masculinity. +He cleans up after himself. He cleans up the planet. He… https://t.co/kCXicFeUkX" +05/10/2018,Social_workers,@drjoekort,@marky22_22 Thank@you Mark that means a lot to me. I could see your interest all day long and it reassured me I was making a difference. +05/09/2018,Social_workers,@drjoekort,"RT @robynochs: About bi v. pan, etc. debates, I wrote: ""To argue over which word is the best & to disrespect other people's choice of labe…" +05/09/2018,Social_workers,@drjoekort,"RT @fakedansavage: New #SavageLove: Peeing while hang gliding, getting the 37-year-old man off, and some perspective for a newly HIV+ man.…" +05/09/2018,Social_workers,@drjoekort,@JustinLehmiller Wow congratulations +05/09/2018,Social_workers,@drjoekort,"“Sex addiction” therapists say that sex addiction isn’t about sex. Sadly, neither is their treatment approach or recovery model." +05/08/2018,Social_workers,@drjoekort,@EnglishBob22 @DanceWithDaphne What do you mean? +05/07/2018,Social_workers,@drjoekort,The Masturbation Challenge. May is masturbation month. #masturbation https://t.co/fuBd70RVka +05/07/2018,Social_workers,@drjoekort,Why straight women are hiring female escorts. https://t.co/ChZ47r5bnR +05/06/2018,Social_workers,@drjoekort,"LGBTQ Clients: Clinical Issues and Treatment Strategies: +Monday, May 7, 2018 +8:00 AM - 4:00 PM +CLEVELAND, OH +Tuesda… https://t.co/wiNl9akepp" +05/06/2018,Social_workers,@drjoekort,Homophobia and Biphobia are very different. #bisexual https://t.co/NhuSm0mRTH +05/06/2018,Social_workers,@drjoekort,"Everyone has a sexual orientation and an erotic orientation. Your sexual orientation is to whom your attracted, whi… https://t.co/kTlMY7kh5b" +05/06/2018,Social_workers,@drjoekort,@robynochs I love this quote from you. The first being that people fail to understand that identity and behaviour a… https://t.co/29YEy9l74h +05/06/2018,Social_workers,@drjoekort,"RT @robynochs: I'm quoted in this article about biphobia in W24, a South African publication: ""Biphobia - why are women afraid of dating bi…" +05/06/2018,Social_workers,@drjoekort,RT @DrDavidLey: The idea that #Porn is causing erectile issues gets a surprisingly sophisticated critical examination. Yet more indication… +05/06/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: Contrary to popular belief, violence in #porn is not increasing--in fact, it actually appears to be decreasing and vie…" +05/06/2018,Social_workers,@drjoekort,@hlcorliss @nicolevankim @hopehjun Where would I find more information on current research on lesbian sexuality and health? +05/05/2018,Social_workers,@drjoekort,@VP Except the LGBTQ Americans you forgot to say. +05/05/2018,Social_workers,@drjoekort,Great article and video on female sexual fluidity https://t.co/oP7jbqJUop +05/04/2018,Social_workers,@drjoekort,RT @OregonJOBS2: Dog hides when you call her inside https://t.co/OsBwCXpuzD +05/04/2018,Social_workers,@drjoekort,RT @TonyOrlando: Tag your friends 😂🎗💛💝 https://t.co/wE2S4i7UMn +05/04/2018,Social_workers,@drjoekort,What It Means If Lesbians Watch And Like Straight Porn—Tast in porn doesn't have to line up with real-life sexual o… https://t.co/YILdjJi6fO +05/04/2018,Social_workers,@drjoekort,@snglbuddy @emahoney3 Lol yes +05/04/2018,Social_workers,@drjoekort,@emahoney3 It’s true he’s correct. You’re very mature +05/03/2018,Social_workers,@drjoekort,"RT @DrDavidLey: I’m honored to call Doug Braun-Harvey and Michael Vigorito friends, colleagues and teachers. I support their kind, empathic…" +05/02/2018,Social_workers,@drjoekort,"@AsexualJournal Yessss! I am now a proud patron of The Asexual on @Patreon, and you should be too: https://t.co/uIxKXPSxNG" +05/02/2018,Social_workers,@drjoekort,"Masturbation month in May, I’m reminded of clients who struggle not to masturbate join NoFap movement men are deepl… https://t.co/syZVzi1cRZ" +05/02/2018,Social_workers,@drjoekort,"I’ve never read a death certificate that read, “Killed by news of child being LGBTQ+” it doesn’t kill or harm anyone." +05/02/2018,Social_workers,@drjoekort,@CGeterLMFT Lol +05/01/2018,Social_workers,@drjoekort,Happy masturbation month! https://t.co/3EtTQutKm2 +05/01/2018,Social_workers,@drjoekort,"Intake to Discharge: Working with Trans Clients-understanding bias, explore how microaggressions and privilege nega… https://t.co/dxP8ddWRV3" +05/01/2018,Social_workers,@drjoekort,@DrDavidLey @anjel990 Yes we have it’s complex. I love the discussion. +05/01/2018,Social_workers,@drjoekort,"Great article by my friend and colleague @DrDavidLey Where Are All the Bisexuals Hiding? +For researchers and prospe… https://t.co/lxD41Cl5lJ" +05/01/2018,Social_workers,@drjoekort,@DrDavidLey @anjel990 Great article as usual and thanks for citing me! +04/30/2018,Social_workers,@drjoekort,"How Sex Educators Talk To Their Sons About Consent “If you start early, it becomes innate I explain what sex is, t… https://t.co/ivUqJQIAkp" +04/30/2018,Social_workers,@drjoekort,@bmosley45 @ThatChrisRyan @DrDavidLey You’re only talking about some men—not all men. Many men do understand women… https://t.co/oRpR3Konkm +04/29/2018,Social_workers,@drjoekort,"Training therapists in Scottsdale and Phoenix on LGBTQ, kinks and fetish’s until Wednesday. +https://t.co/4tGgFXCzO3" +04/29/2018,Social_workers,@drjoekort,@dmartosko @sarahcpr @kathygriffin Is this a joke? No president has ever been as vulgar as Trump. @kathygriffin is… https://t.co/Bj9U8ujKsQ +04/29/2018,Social_workers,@drjoekort,"Gay men are more sexual than straight men/women and lesbians. It’s not a gay thing, it’s a guy thing." +04/29/2018,Social_workers,@drjoekort,"RT @stevesilberman: Trump, who openly mocked a disabled reporter during his campaign, said today he finds the Paralympics “tough to watch.”…" +04/27/2018,Social_workers,@drjoekort,"RT @Mariska: To the survivors of his abuse, and to all survivors –whether you receive justice swiftly or many years down the road, know tha…" +04/27/2018,Social_workers,@drjoekort,@samkalidi Lmao!!!!!! +04/26/2018,Social_workers,@drjoekort,RT @pnetworker: Lovely personal essay from @pnetworker contributor @drjoekort on finally fighting back against the stereotypes of manhood h… +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein My hope that all this labeling is just a stage where people are taking apart the label… https://t.co/ymudA1grtq +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein That does sound nice 👍🏻 +04/25/2018,Social_workers,@drjoekort,"RT @AsexualJournal: ""Sexual desire refers to the desire for sexual activity, whilst sexual attraction refers to the desire to engage in sex…" +04/25/2018,Social_workers,@drjoekort,@AsexualJournal @sydneykerosene Love this! +04/25/2018,Social_workers,@drjoekort,"RT @AsexualJournal: ""It’s not til later that I learn there’s a difference between sexual desire and sexual attraction. (...) + +To put it in…" +04/25/2018,Social_workers,@drjoekort,@elvisgomes90 @katebornstein What I love is people creating their own boutique identities. +04/24/2018,Social_workers,@drjoekort,"RT @katebornstein: Q4 Using hetero/homo/bi -sexual as base for the language of gendered sexual attraction, I propose mixsexual for people w…" +04/24/2018,Social_workers,@drjoekort,RT @elvisgomes90: @drjoekort I am grateful that u wrote this article! U nuanced things extremely well & I fully agree that the anxiety-prov… +04/24/2018,Social_workers,@drjoekort,RT @DrDavidLey: Even further evidence that the concept of sex addiction is rooted in LGBTQ stigma. https://t.co/r4UtHdVReu +04/22/2018,Social_workers,@drjoekort,Teaching at The University of Michigan Sexual Health Certificate Program next two days on LGBTQIA issues at Michiga… https://t.co/0KwivpLHxf +04/22/2018,Social_workers,@drjoekort,@DrDavidLey Lol I saw this today too +04/22/2018,Social_workers,@drjoekort,“ We stand for sexual health not only as an essential component of health and well-being but more importantly as so… https://t.co/pacTiAfRr0 +04/22/2018,Social_workers,@drjoekort,"Doug Braun-Harvey and Michael Vigorito accepted an award for their book, “Treating Out of Control Sexual Behavior:… https://t.co/CAGwb6o9B7" +04/21/2018,Social_workers,@drjoekort,"RT @JustinLehmiller: When asked whether their feelings about their body have caused them to avoid sex, 20 percent of gay men said yes, comp…" +04/20/2018,Social_workers,@drjoekort,"@VP I received counter book homophobic VP Pence Marlon Bundo, a lonely bunny lives w/Grampa, Mike Pence - VP of US… https://t.co/qD4yk4jY15" +04/20/2018,Social_workers,@drjoekort,"Some male sexual assault victims feel left behind by #MeToo | For some male victims of sexual assault and abuse,… https://t.co/2oxPg1KG9G" +04/20/2018,Social_workers,@drjoekort,"RT @DrDavidLey: The belief that #Porn is getting harder (ahem) and more violent is based in rhetoric, morality & has been repeated for deca…" +04/19/2018,Social_workers,@drjoekort,"I am in the process of re-writing my book, ""Cracking the Erotic Code"" for everyone and not just gay men. https://t.co/5UF9053ydX" +04/19/2018,Social_workers,@drjoekort,@JillianKeenan I hope you do respond. +04/19/2018,Social_workers,@drjoekort,RT @JustinLehmiller: Transitional #bisexuality: this study found that nearly half of gay men surveyed said they identified as bisexual at a… +04/19/2018,Social_workers,@drjoekort,@birdsandbeespod You should be you work really hard +04/18/2018,Social_workers,@drjoekort,"Teaching LGBTQ 🏳️‍🌈 issues to the community mental health staff here in Flint, MI." +04/18/2018,Social_workers,@drjoekort,@birdsandbeespod Congratulations 🎉🎊🍾! +04/18/2018,Social_workers,@drjoekort,@JustinLehmiller Just pre-ordered it! +04/18/2018,Social_workers,@drjoekort,@JustinLehmiller I can’t wait!! You’re so smart and I’m sure the book will be very informative. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Honestly no I think that would be horrible. Because then it would be seen as something that can chang… https://t.co/xDELXOCBdZ +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 I wrote this article in the past about bisexuals https://t.co/fV6mFjKlN8 +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Yes but I think it is because of not having a community of their own to go to. And with the rejection… https://t.co/shKdOhsoAt +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 I added it! Thank you very much for the feedback. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Ugh you’re right I should have included that I might edit it in. +04/16/2018,Social_workers,@drjoekort,@elvisgomes90 Thank you so much! +04/16/2018,Social_workers,@drjoekort,Homosexual Obsessive Compulsive Disorder (HOCD): Obsessive doubts about one’s sexual identity may be more than just… https://t.co/sHmTwdcSLf +04/15/2018,Social_workers,@drjoekort,"RT @HuffPost: ""Twenty percent of all youth experiencing homelessness identified as bisexual. Not 20 percent of LGBTQ youth. Twenty percent…" +04/14/2018,Social_workers,@drjoekort,What is the difference between a bisexual man and a straight man who has sex with men? Hear me discuss this here https://t.co/L2PKja63YQ +04/13/2018,Social_workers,@drjoekort,RT @DrDavidLey: For all those people who believe porn destroys - here’s amazing examples of how it increases self acceptance and decreases… +04/12/2018,Social_workers,@drjoekort,I thought this was a joke 😳 https://t.co/E1HPeqiiGI +04/09/2018,Social_workers,@drjoekort,@TonyRobbins you had an opportunity to listen and you failed. I hope you get another chance and this time less talk… https://t.co/UY8EQU3sda +04/08/2018,Social_workers,@drjoekort,I have to agree with Kathy here. Should have been a dialogue with this women not a one way street pushing her away. https://t.co/LWhYFbOLOF +04/08/2018,Social_workers,@drjoekort,Wow! He’s not even listening to her. I’m listening. I’m learning. #metoo https://t.co/3Ee9qLYIJu +04/07/2018,Social_workers,@drjoekort,@fakedansavage @hemantmehta He has become a caricature of himself. +04/07/2018,Social_workers,@drjoekort,@jeanharrison @mattsuede @fakedansavage Lmao +04/07/2018,Social_workers,@drjoekort,@hemantmehta I can’t believe he’s still alive and that he’s still spewing his hatred and homophobia. He’s despicable. +04/07/2018,Social_workers,@drjoekort,RT @oldbiddyyelling: This made my day 😂 https://t.co/JPaM38GjKO +04/06/2018,Social_workers,@drjoekort,LGBTQIA Certification Program: https://t.co/CQn5NsBz2X via @YouTube +04/06/2018,Social_workers,@drjoekort,"Sexual Non-Monogamy: ask couples what their contract is around sex and commitment. An assumed or explicit contract,… https://t.co/RsuPnP6swh" +04/05/2018,Social_workers,@drjoekort,@Ziad_Reslan @elizabarclay @jack_turban @Grindr We look at it as out-of-control sexual behavior and affect dysregul… https://t.co/xQBt9jq7fL +04/05/2018,Social_workers,@drjoekort,@Ziad_Reslan @elizabarclay @jack_turban @Grindr Actually there is not a dearth of discussion on things like this in… https://t.co/ce3fBwG0qM +04/05/2018,Social_workers,@drjoekort,So important to challenge old ideas and research. https://t.co/aMFjGLi6S4 +04/05/2018,Social_workers,@drjoekort,"Hear about our new online LGBTQIA Certification Program for therapists, educators and medical professionals. Regist… https://t.co/xUC0Kc7idI" +04/05/2018,Social_workers,@drjoekort,@TonyOrlando Happy birthday! Sweet Summer Days of my Life. Thank you for that Dawn show please do another one +04/05/2018,Social_workers,@drjoekort,RT @drjoekort: My new e-book is now available. While written for gay men this book is useful for all people who want to understand their er… +04/03/2018,Social_workers,@drjoekort,"Here is a recent interview of me on Toxic Masculinity, Religious Abuse and Sexual Shame and Gender Identity Express… https://t.co/MTka5pGFVV" +04/01/2018,Social_workers,@drjoekort,"FUNDRAISER for Ruth Ellis Center-Highland Park + +Here is a sneak… https://t.co/vDcAMluS3L" +04/01/2018,Social_workers,@drjoekort,RT @SydneyTherapist: Relationship wisdom from love guru Esther Perel https://t.co/WT1AfyzABe +03/30/2018,Social_workers,@drjoekort,"@TonyOrlando Creating LGBTQ Childhood Heroes - At the tender age of 11, my very public, outspoken interest in Tony… https://t.co/ETEIqv0TZF" +03/30/2018,Social_workers,@drjoekort,@snglbuddy @CheriJacobus What is +03/29/2018,Social_workers,@drjoekort,RT @BiFamilies: Guide to Mixed Orientation Marriages https://t.co/K0DDW16K0L #mixedorientationmarriages #MoMs #bicouples #biparents +03/29/2018,Social_workers,@drjoekort,Craigslist shuts down its personal ad section to avoid being blamed for sex trafficking and Walmart plans to ban Co… https://t.co/O4w5UkdRCO +03/28/2018,Social_workers,@drjoekort,The first Chemical Dependency IOP for LGBTQ in Michigan https://t.co/0iwJn7Jo2a +03/28/2018,Social_workers,@drjoekort,@therealroseanne @RoseanneOnABC The reboot of Roseanne was excellent. And the gender fluid son was very touching. +03/27/2018,Social_workers,@drjoekort,"RT @pnetworker: We're still riding high from #PNSYMP2018 in @pnetworker land! For a post-conference injection, check out https://t.co/dSfof…" +03/27/2018,Social_workers,@drjoekort,Read about my new book for therapists and our now available LGBTQ online certification program for mental and medi… https://t.co/13HcMSjAnx +03/27/2018,Social_workers,@drjoekort,@kathygriffin Well I love your “cranium”. It’s what makes you funny af +07/01/2018,Social_workers,@BDUTT,@akannampilly Thank you +07/01/2018,Social_workers,@BDUTT,@Biorahul It's not trivial. Live it and you shall know +07/01/2018,Social_workers,@BDUTT,@sajadlone @amitabhmattoo @imranrezaansari @Junaid_Mattu Lol 😎😚 Junaid ! I think you had better answer that one yourself ! +07/01/2018,Social_workers,@BDUTT,@sajadlone @amitabhmattoo @imranrezaansari @Junaid_Mattu Fascinating! And I don't mean just the food 😎 +07/01/2018,Social_workers,@BDUTT,@Biorahul Most of the trolls are within the party's own base. The minister has made a public statement on it. Should she not be supported? +07/01/2018,Social_workers,@BDUTT,Am glad @SushmaSwaraj has decided to take the filth of trolls head on. But why are her cabinet colleagues - even th… https://t.co/HFoNcs42v3 +07/01/2018,Social_workers,@BDUTT,"RT @TheWorldPost: If even India's foreign minister isn't safe from right-wing trolls, who is? @bdutt asks for @PostOpinions. https://t.co/f…" +07/01/2018,Social_workers,@BDUTT,"RT @RosaO_Hara: Opinion | If even India’s foreign minister isn’t safe from right-wing trolls, who is? https://t.co/IcJHMaLs5r by @BDUTT" +07/01/2018,Social_workers,@BDUTT,"RT @Mallick_Saab: If even India’s foreign minister isn’t safe from right-wing trolls, who is? + +Well that's right if they can't support thei…" +07/01/2018,Social_workers,@BDUTT,"RT @SalmanSoz: ~@BDUTT: If even India’s foreign minister isn’t safe from right-wing trolls, who is? + +“... not even the other women in the…" +07/01/2018,Social_workers,@BDUTT,"RT @BDUTT: ""You cant keep snakes in your backyard & expect them only to bite your neighbors"": My piece in @washingtonpost on the Right Wing…" +06/30/2018,Social_workers,@BDUTT,@sonaliranade Agree +06/30/2018,Social_workers,@BDUTT,@jameelyusuf @basiitzargar @islahmufti @Drqasba I knew the other bridges but not the story of zero bridge so interesting +06/30/2018,Social_workers,@BDUTT,Neither buzz of Congress and PDP nor BJP and PDP ( with a split or a new leader) seems a fair outcome to the break… https://t.co/PNDig9uyOU +06/30/2018,Social_workers,@BDUTT,@sonaliranade Yes . +06/30/2018,Social_workers,@BDUTT,Shame on those who want to make Rape competitive. #Mandsaur is horrific as was #Kathua. The difference- in Kathua… https://t.co/MsK1R6F8xx +06/30/2018,Social_workers,@BDUTT,@sharmanagendar @rohini_sgh @RaisinaSeries Yeah but extraordinarily Amar singh and Sanjay botu spoke of this sting op on record +06/30/2018,Social_workers,@BDUTT,@sharmanagendar @rohini_sgh @RaisinaSeries And they both said this to me on camera - the sting op +06/30/2018,Social_workers,@BDUTT,@PawanDurani @Shehzad_Ind @sunandavashisht @rahulpandita @listenshahid @AartiTikoo @tehseenp @ShujaUH… https://t.co/1plAaDRuZJ +06/30/2018,Social_workers,@BDUTT,Sir repulsive. And as I wrote . https://t.co/2X69NnoWFw.. but what action are we going to take against this odious… https://t.co/YImCgWcRFA +06/30/2018,Social_workers,@BDUTT,RT @anupamaskapoor: Must read piece by @BDUTT https://t.co/6dE4jMD8qQ +06/29/2018,Social_workers,@BDUTT,Did you call her anti national when @MehboobaMufti was in government with the BJP ? Or is this your belated patriot… https://t.co/k86bDyVi7f +06/29/2018,Social_workers,@BDUTT,@anirban23456 @Prashan86617347 Don't waste your energy +06/29/2018,Social_workers,@BDUTT,@psgk99 @MehboobaMufti @htTweets True +06/29/2018,Social_workers,@BDUTT,@shangpal Not advocating chest thumping naeem saheb. Surely you know that ! +06/29/2018,Social_workers,@BDUTT,"If @MehboobaMufti had walked out on BJP & not retreated into silence that was the antithesis of her personality, sh… https://t.co/6BbKSRA59H" +06/29/2018,Social_workers,@BDUTT,@amitabhmattoo No worries. We are allowed to disagree. I have always held that @MehboobaMufti had the opportunity t… https://t.co/1y26VoJ0dq +06/29/2018,Social_workers,@BDUTT,Mehbooba Mufti’s Manmohan Moment. My column in @htTweets https://t.co/WDsTWsg8Cz via @htTweets +06/29/2018,Social_workers,@BDUTT,@anirban23456 Thank you +06/29/2018,Social_workers,@BDUTT,"RT @munirkhan_ips: Today at Yatra camp, Pantha Chowk. https://t.co/gTw9dwexy9" +06/29/2018,Social_workers,@BDUTT,@arjunk26 This is the cutest thing! +06/29/2018,Social_workers,@BDUTT,@rocky_indian7 @neha_aks @TheJaggi right here you are getting all agitated and fixated over what i say and what i dont say. Irony much. +06/29/2018,Social_workers,@BDUTT,@neha_aks @TheJaggi I am so utterly bored with the twisted reductionism of twitter. Cheers. +06/29/2018,Social_workers,@BDUTT,RT @erinbiba: Read this thread. Every single male shooter has a history of abuse and violence towards women. Every one. The latest newsroom… +06/29/2018,Social_workers,@BDUTT,And then say online smears are not cues to mob violence offline. Bullshit. It's all part and and parcel of an orga… https://t.co/rKVF4uut8G +06/28/2018,Social_workers,@BDUTT,"RT @TheRyanParker: There is an active shooter in their building, and they are still doing their job. I am fucking speechless right now. htt…" +06/28/2018,Social_workers,@BDUTT,"RT @LaurenPelley: Reporters at the Capital Gazette are covering this shooting. + +A shooting that may have killed their own colleagues, at t…" +06/28/2018,Social_workers,@BDUTT,This happened inside a newsroom. https://t.co/E5pS8j7evr +06/28/2018,Social_workers,@BDUTT,@RaviKapoor @ofnosurnamefame Thank you sir +06/28/2018,Social_workers,@BDUTT,@ofnosurnamefame Thanks. I will have no problem conceding if I am wrong. Thank you for civil disagreement. +06/28/2018,Social_workers,@BDUTT,@ofnosurnamefame Ok will check again. +06/28/2018,Social_workers,@BDUTT,@TomDEvelyn @seagullbooks This is beautiful. And sad. +06/28/2018,Social_workers,@BDUTT,@PawanDurani Please do and sorry to hear that +06/28/2018,Social_workers,@BDUTT,@Aparna @iamrana @crossword_book @Books_at_Bahri @WestlandBooks Mubaraks ! +06/28/2018,Social_workers,@BDUTT,@PawanDurani That's lovely +06/28/2018,Social_workers,@BDUTT,@syrinje The carafe is so pretty +06/28/2018,Social_workers,@BDUTT,I am agnostic. I have no religion. But I don't hate anyone's religion unlike you. https://t.co/YhrgWvqmJC +06/28/2018,Social_workers,@BDUTT,Would we go to a gurudwara and refuse to drape our head? This is just sad to read. Irrespective of your own faith w… https://t.co/sD0ACgaOnf +06/28/2018,Social_workers,@BDUTT,What a lovely uplifting photo https://t.co/NRNjH1OU4s +06/28/2018,Social_workers,@BDUTT,RT @ShujaUH: Ram Madhav to @IndiaToday: We felt there was less effort by @MehboobaMufti lead govt to encourage good governance in the state… +06/28/2018,Social_workers,@BDUTT,@AartiTikoo Chalo. Not like you to be so reductionist. But anyway... +06/28/2018,Social_workers,@BDUTT,@AartiTikoo What part is the obfuscation. I said Lashkar loud and clear in all my tweets. But I don't separate verb… https://t.co/TxPWBvyZH9 +06/28/2018,Social_workers,@BDUTT,For those who think hatred on social media is not injurious to health read these details in the note by… https://t.co/OkWRXOOjII +06/28/2018,Social_workers,@BDUTT,Police in @JmuKmrPolice officially confirm what one reported yesterday: Lashkar ordered Assasination of… https://t.co/w8YDC2WAR4 +06/28/2018,Social_workers,@BDUTT,Hey @rahulkanwal the word 'help' itself is a give away. Assumes women are primary home keepers and men supplement.… https://t.co/YSd5U736Fq +06/28/2018,Social_workers,@BDUTT,@Rajat_K_Sondhi @omchakrala @ngogoi98 Because govt insisted on retaining owner and other conditions +06/28/2018,Social_workers,@BDUTT,RT @rohanduaTOI: TOI EXC:Killing of Kashmir journalist Shujaat Bukhari was planned right in the heart of Pakistan on orders of Lashkar say… +06/28/2018,Social_workers,@BDUTT,@ngogoi98 Still the same point. Who destroyed it +06/28/2018,Social_workers,@BDUTT,Agree not sure why folks sneer at Air India instead of at the politicians who destroyed it and will neither set it… https://t.co/BSxeFdSrC9 +06/28/2018,Social_workers,@BDUTT,RT @drharshvardhan: Union Environment Ministry @moefcc does not grant tree felling permission. Such permission is given under the State Act… +06/27/2018,Social_workers,@BDUTT,RT @TheSatishDua: There wasn't another one like Sam. https://t.co/1eTueY8sjj +06/27/2018,Social_workers,@BDUTT,"RT @htTweets: All 3 accused in #ShujaatBukhari murder identified, say Jammu and Kashmir police, reports @mirehsankhaliq https://t.co/qPX7Lg…" +06/27/2018,Social_workers,@BDUTT,@ashishgeek its actually in every single newspaper. so why dont you send them those messages +06/27/2018,Social_workers,@BDUTT,Highly ranked police officials confirm major breakthrough in the assassination of #ShujaatBukhari- killers identifi… https://t.co/x0lBULTE7M +06/27/2018,Social_workers,@BDUTT,Why do men who hate women also hate Muslims ? Any connection ? here's a love note I received on Facebook today. An… https://t.co/P2R8AUOkNM +06/27/2018,Social_workers,@BDUTT,@vsmaske Er look at his group name +06/27/2018,Social_workers,@BDUTT,@imm_jay You will have to go to FB and hear and read +06/27/2018,Social_workers,@BDUTT,While we debate how women are treated in India I urge all - irrespective of political affiliation - to hear this ma… https://t.co/9GY8r4DJFX +06/27/2018,Social_workers,@BDUTT,@Mallick_Saab Thanks +06/27/2018,Social_workers,@BDUTT,@seshanm @twitrathon chalo- i am glad you concede to the rotten things :-) +06/27/2018,Social_workers,@BDUTT,@twitrathon thanks +06/27/2018,Social_workers,@BDUTT,Amid talks of another attempted Mahagatbandhan in Bihar & a rapprochement between @NitishKumar & @INCIndia -… https://t.co/nvZJZL8TwV +06/27/2018,Social_workers,@BDUTT,@SandipGhose @jgopikrishnan70 @pGurus1 More intriguing whether NDTV finally admits aftwr this order that it's not b… https://t.co/33Wh4ymfYA +06/26/2018,Social_workers,@BDUTT,Ha ha yeah. #BarkhaForPm since they are ALL listening to me 😎 https://t.co/P9M8Zhvvxc +06/26/2018,Social_workers,@BDUTT,Is a murder mystery the absolute best respite from life. Or does that make one macabre https://t.co/vAx8uDIBB3 +06/26/2018,Social_workers,@BDUTT,"RT @dna: Sebi orders open offer for NDTV +https://t.co/lrvEZnmT7X https://t.co/a66ODLiFQB" +06/26/2018,Social_workers,@BDUTT,@jgopikrishnan70 Ha ha Gopi +06/26/2018,Social_workers,@BDUTT,@rohanduaTOI @SushmaSwaraj Or maybe the only one so far +06/26/2018,Social_workers,@BDUTT,@RTReserve i often do :-) +06/26/2018,Social_workers,@BDUTT,@AbdulMajidZarga @washingtonpost 😎 +06/26/2018,Social_workers,@BDUTT,@adebbarma @BJP4India Kindly look at the tweets and the ones who sent them. +06/26/2018,Social_workers,@BDUTT,@drshraddha16 @SushmaSwaraj @AskAnshul @rishibagree sorry madam. LIke a true troll you tweet without reading. The p… https://t.co/B3ibXoYKZ0 +06/26/2018,Social_workers,@BDUTT,@Turmaan @aamirwani88 @rahatindori thats beautiful- and sadly true +06/26/2018,Social_workers,@BDUTT,"""You cant keep snakes in your backyard & expect them only to bite your neighbors"": My piece in @washingtonpost on t… https://t.co/OXRUmZ4a6I" +06/26/2018,Social_workers,@BDUTT,@sameeryasir sending solidarity in spirit. +06/26/2018,Social_workers,@BDUTT,@ruchicatomar thank you ruchica- I meant to say that earlier +06/26/2018,Social_workers,@BDUTT,@nkharoo @washingtonpost @SushmaSwaraj you too :-) +06/26/2018,Social_workers,@BDUTT,@nkharoo @washingtonpost @SushmaSwaraj you are commenting without reading the piece- something trolls do ! +06/26/2018,Social_workers,@BDUTT,@KrishnaAnand_ @washingtonpost @SushmaSwaraj I write on whatever I feel like. They do the same. +06/26/2018,Social_workers,@BDUTT,@ChefKak thank you sanjay. +06/26/2018,Social_workers,@BDUTT,If even India's Foreign Minister is not Safe from Right-Wing Trolls; Who Is? My piece in @washingtonpost on the ugl… https://t.co/zRZotl8u7m +06/25/2018,Social_workers,@BDUTT,@KarenAttiah its the same everywhere. Sigh. WHO are these people. +06/25/2018,Social_workers,@BDUTT,This is stunningly written. I lived with anxiety attacks for a short phase in life and if you have or know anyone w… https://t.co/435I6rrxaq +06/25/2018,Social_workers,@BDUTT,RT @Ram_Guha: A good piece by ⁦@BDUTT⁩ on the way forward in Kashmir. https://t.co/4VuKZ8Tw64 +06/25/2018,Social_workers,@BDUTT,If I were the Congress I'd apologise for the #Emergency and use that apology and regret to build an authentic case… https://t.co/rXUSaRXYHo +06/25/2018,Social_workers,@BDUTT,@AbdulMajidZarga Koi nahin hi. It's a free world and youre entitled your view +06/25/2018,Social_workers,@BDUTT,@ms_rana @akhileshsharma1 @darainshahidi @ndtv 😎 +06/25/2018,Social_workers,@BDUTT,RT @aamirwani88: @BDUTT’s ten point formula to try and bring back Kashmir from the abyss it has fallen into. Agree with all ten pints - if… +06/25/2018,Social_workers,@BDUTT,@SikandDipali @_HazirJawab @free_thinker @AltNews @boomlive_in @SMHoaxSlayer Exactly. And I believe fabrication of… https://t.co/DQtsYcG2O9 +06/25/2018,Social_workers,@BDUTT,@free_thinker @AltNews @boomlive_in @SMHoaxSlayer The major players circulating this would be perpetrators. Because… https://t.co/8bYj7NgBjF +06/25/2018,Social_workers,@BDUTT,My Ten Point Manifesto for a Wounded Valley- Ten things India must agree on for things to get better in Kashmir. https://t.co/NQOaIDHSGd +06/24/2018,Social_workers,@BDUTT,@ZeeMohamed_ Or do you think I spell like this..but look at the sickness of it all +06/24/2018,Social_workers,@BDUTT,Dear @AltNews @boomlive_in @SMHoaxSlayer - could you help trace who is photo shopping this bilge and circulating i… https://t.co/caGVODdzMV +06/24/2018,Social_workers,@BDUTT,@seagullbooks The crockery looks divine but please no instant coffee ! +06/24/2018,Social_workers,@BDUTT,The right wing trolls are so consumed by anti Muslim hatred and communal poison and the need to foist dogma as doct… https://t.co/aB7ipbqUKz +06/24/2018,Social_workers,@BDUTT,"Dear @SushmaSwaraj it is odious what you have been subjected to. But Ma'am imagine if this happens to you, with all… https://t.co/6KYkQEV2Eq" +06/24/2018,Social_workers,@BDUTT,"RT @journalist_army: Salute to the martyr. +Martyrs live for ever. @BDUTT @akshaykumar @roy_rameshwar @Vedmalik1 @narendramodi @tksapru @bhu…" +06/24/2018,Social_workers,@BDUTT,@manuvichar @RanaAyyub @ravishndtv @RisingKashmir thanks. +06/23/2018,Social_workers,@BDUTT,Exactly why i thought the whole hoo- haa over the royal wedding was such classist clap trap https://t.co/L5aXDHwFPF +06/23/2018,Social_workers,@BDUTT,@misra_purak I think the fact that they are the only ones in the entire case to not get bail- and the several unans… https://t.co/WKsmbPYPUg +06/23/2018,Social_workers,@BDUTT,I believe our job is to raise the right questions. Someone has to be answerable for what happened to the babies in… https://t.co/HXvgbdGdIH +06/23/2018,Social_workers,@BDUTT,We have all spoken about Kafeel but this story deserves as much of our attention. The only people not to get bail i… https://t.co/Zoepm2R2AL +06/23/2018,Social_workers,@BDUTT,RT @bahardutt: Well done delhi ! Not in town but there in spirit and in solidarity on #DelhiTreesSOS issue ... this order needs a rethink h… +06/23/2018,Social_workers,@BDUTT,Open incitement to violence is grounds for arrest @spvaid https://t.co/ASbvOa8yqM +06/23/2018,Social_workers,@BDUTT,@arnab822 Agree . Just saying it's not the root +06/23/2018,Social_workers,@BDUTT,No point blaming whats app rumours for the lynching of Muslims. It's a little bit like investigating the meat in Ah… https://t.co/jzE6DftMKc +06/23/2018,Social_workers,@BDUTT,"RT @RujutaDiwekar: The kiranawala, doodhwala & bhajiwala can no longer use #PlasticBags. Will the food industry respond by reducing/ rethin…" +06/22/2018,Social_workers,@BDUTT,@Mahabat99627436 @ShowkatNanda Thanks! +06/22/2018,Social_workers,@BDUTT,@satishkolls @IndiaExplained Mojo to even I have 😎😍😘😗 +06/22/2018,Social_workers,@BDUTT,@satishkolls @IndiaExplained Best part. But part of free media +06/22/2018,Social_workers,@BDUTT,Thank you Navdeep. Exactly. The Army is much wiser than the ideologues. And the TV anchors https://t.co/uSJbo1mPbI +06/22/2018,Social_workers,@BDUTT,@IndiaExplained Eating alone. Watching a movie alone. Free media. +06/22/2018,Social_workers,@BDUTT,What a cover. Breathtaking https://t.co/CtSPapSrLO +06/22/2018,Social_workers,@BDUTT,@declanwalsh @EchoOfIndia @marvisirmed Marvi take care and stay safe and I know you will stay brave +06/22/2018,Social_workers,@BDUTT,@saliltripathi I have had this position for many years. My view is not in response to the last 24 hours. I loathe s… https://t.co/7wG2nCQfvs +06/22/2018,Social_workers,@BDUTT,"@saliltripathi no Salil, sections of media and opposition have been reporting on it well before and for many years." +06/22/2018,Social_workers,@BDUTT,@vedhamurthyhk @ShowkatNanda exactly +06/22/2018,Social_workers,@BDUTT,@Mahabat99627436 @ShowkatNanda isnt it funny +06/22/2018,Social_workers,@BDUTT,RT @spvaid: Terrorists reportedly affiliated to ISJK. +06/22/2018,Social_workers,@BDUTT,@sneheshphilip he is saying ISJK - Does @spvaid - mean ISIS? +06/22/2018,Social_workers,@BDUTT,@ShowkatNanda cool. thats a lot of words to waste on me. +06/22/2018,Social_workers,@BDUTT,"@ParaRjs those comments were terrible, I agree. But should the response be in kind" +06/22/2018,Social_workers,@BDUTT,@Najar_Arshad @sardesairajdeep this list would be funny - with all its spelling mistakes - if its intent were not so ugly +06/22/2018,Social_workers,@BDUTT,Many reasons to critique PM Modi & the government- and I do so regularly. But i find news on the state of his lapse… https://t.co/KUTwJfMAjQ +06/22/2018,Social_workers,@BDUTT,@NilimDutta perhaps if you read the thread below to which it was responded you wouldnt think so. +06/22/2018,Social_workers,@BDUTT,@NilimDutta it means they claim to speak for Faith but dont speak for any of its finer points. Its not an attack on atheists. +06/22/2018,Social_workers,@BDUTT,"""I was just ashamed to continue in the BJD""- re-up of my interview with @PandaJay in which he says only one bureauc… https://t.co/vrRSfqJ9ze" +06/21/2018,Social_workers,@BDUTT,@ChefTZac @bombaycanteen ok beam me up NOW +06/21/2018,Social_workers,@BDUTT,Actually I am non religious. But people like you who use Muslim as a form of Abuse are Godless. https://t.co/rF6L9tRST4 +06/21/2018,Social_workers,@BDUTT,@dhume @sunetrac And the freedom of institutions. Nothing better illustrates that than the craven media here - even… https://t.co/pObSvFV5pF +06/21/2018,Social_workers,@BDUTT,A 1.5 million dollars disaster then ! Wow. Re-up my take down in @washingtonpost https://t.co/RAy2PpMlIl +06/21/2018,Social_workers,@BDUTT,"""Modi government is trying to destroy us. Congress doesnt have to worry about us; but what will they do when BJP ta… https://t.co/bz4qeuH8HZ" +06/21/2018,Social_workers,@BDUTT,@nistula What a tasveer +06/21/2018,Social_workers,@BDUTT,"RT @mauseen_khan: A family from Anantnag made a heartfelt appeal to its militant son Roshan Zammer to shun violence & return home. +""Had I b…" +06/21/2018,Social_workers,@BDUTT,"RT @saikatd: Shujaat Bukhari's son writes a beautiful tribute to his father's life and work +https://t.co/n5hTm39bcf" +06/21/2018,Social_workers,@BDUTT,@SalmanSoz Then you agree with me Salman that there is no legal obstruction as such +06/21/2018,Social_workers,@BDUTT,@ReshmiDG Perhaps you could watch my detailed interview with @paranjoygt. I document the warnings over one year -… https://t.co/kA8veBPCNZ +06/21/2018,Social_workers,@BDUTT,@SalmanSoz Rumours of a split in PDP have been there for at least a year. I am not as clear on the specific legality +06/21/2018,Social_workers,@BDUTT,Whispers abound in Kashmir about a split in the PDP in a few months and a reunion of one faction with the BJP. Two… https://t.co/WEyNr6E2v4 +06/20/2018,Social_workers,@BDUTT,@rraina1481 @ReallySwara Just unspeakably horrible sir +06/20/2018,Social_workers,@BDUTT,@tapeshbagati @maneeshchhibber Yes but they would have to split the PDP. +06/20/2018,Social_workers,@BDUTT,@swatisingh1995 @rohini_sgh How lovely +06/20/2018,Social_workers,@BDUTT,"RT @gauravwankhede: what an interview @BDUTT - loved it, you have a very easy and natural style of interviewing people. @msisodia . https:…" +06/20/2018,Social_workers,@BDUTT,@nowme_datta in our heads we are all 18 +06/20/2018,Social_workers,@BDUTT,@Abrarchoudhary_ @Siddharth121099 @MirrorNow @ndtv thanks. and maybe soon. +06/20/2018,Social_workers,@BDUTT,@AlkaJacob Agree. Cookie cutter- even dress the same way +06/20/2018,Social_workers,@BDUTT,@KhaledAlmaeena thank you +06/20/2018,Social_workers,@BDUTT,@owaisalig117 yeah +06/20/2018,Social_workers,@BDUTT,@ITheTaurus thanks for writing +06/20/2018,Social_workers,@BDUTT,I cried when I watched this. Not just because the story is so incredibly disturbing- but also because TV news can b… https://t.co/ciHkq6mwVk +06/20/2018,Social_workers,@BDUTT,@commandersaini You are an abomination on the military you https://t.co/QHjXKQYG2M represent +06/20/2018,Social_workers,@BDUTT,@maneeshchhibber Will be highly irresponsible if anyone tries to cobble anything. Not that I think it's likely +06/20/2018,Social_workers,@BDUTT,NN Vohra is kind of like Queen Elizabeth- no I don't mean in the sense of of being Royal etc- but ageless and dough… https://t.co/Hi9OcnMvfp +06/20/2018,Social_workers,@BDUTT,"RT @meerasanyal: “Do not fill the crack with more cement; rather, find a way to bring down the whole wall instead.” Thought provoking piece…" +06/20/2018,Social_workers,@BDUTT,"Isn't it a failure to not build trust with IAS officers I ask @msisodia; ""90% officers are excellent. But they're b… https://t.co/o6mYE7XvZ6" +06/20/2018,Social_workers,@BDUTT,@sameeryasir Yeah totally disingenuous +06/20/2018,Social_workers,@BDUTT,RT @vdehejia: Very sorry to learn that @arvindsubraman 's departure as CEA and imminent return to the US is now official. He follows both R… +06/20/2018,Social_workers,@BDUTT,@anirudhganu @HaseebDrabu @rammadhavbjp @MehboobaMufti you guys should decide - you want him to be mascot of the RW… https://t.co/nyjp4MqbfP +06/20/2018,Social_workers,@BDUTT,Wonderful gesture to meet the family of the extraordinarily courageous #Aurangzeb @nsitharaman - I am sure… https://t.co/v5CIoPuzkQ +06/20/2018,Social_workers,@BDUTT,@joshianil00 @HaseebDrabu @rammadhavbjp @MehboobaMufti What's my program got to do with anything? Or you are just silly +06/20/2018,Social_workers,@BDUTT,Sir you and your friend seem a bit confused - @haseebdrabu & @rammadhavbjp co-wrote the alliance agreement.… https://t.co/dvYGpnqaEb +06/20/2018,Social_workers,@BDUTT,Well sir - not that I know why you are addressing me- I am not the Kashmir Envoy - howeverl I'd be the first to arg… https://t.co/WTxFVf9WkS +06/20/2018,Social_workers,@BDUTT,@mkatju why are you addressing me on this. I am first one to said soldiers cannot pay the price of failed politics +06/20/2018,Social_workers,@BDUTT,Charming farewell note to @arvindsubraman https://t.co/O2ktlhJRMN +06/20/2018,Social_workers,@BDUTT,@sanjeevk3 @ArvindKejriwal @narendramodi @RahulGandhi @msisodia yes right now highlights. Full interview at night +06/20/2018,Social_workers,@BDUTT,I am not forecasting short term peace @mkatju - for three years I have been warning of the dire spiralling situatio… https://t.co/9A46SuZrJE +06/20/2018,Social_workers,@BDUTT,"""Did @arvindkejriwal contest @narendramodi or @rahulgandhi ?"" : In my intvw with @msisodia he lashes out at Congres… https://t.co/C1MtSIrhsf" +06/20/2018,Social_workers,@BDUTT,To be honest Jammu and Kashmir needs a new politics and a new leadership. None of the old formulas have worked. And… https://t.co/1hmPWfbroe +06/20/2018,Social_workers,@BDUTT,@sunetrac Not true. Look at my tweets and articles from then. Forecast it in black and white +06/20/2018,Social_workers,@BDUTT,RT @Chikisarkar: We loved @CitiznMukherjee speech at the rss Nagpur hq and it’s now available to read @juggernautbooks https://t.co/pEaQXio… +06/20/2018,Social_workers,@BDUTT,"RT @DilliDurAst: Rumors on WhatsApp are leading to deaths in India. The messaging service must act. My article. + +https://t.co/IWhRpADsQn" +06/20/2018,Social_workers,@BDUTT,@SandipGhose @msisodia @TheWeekLive True. Fair question +06/20/2018,Social_workers,@BDUTT,"""The LG's premises are not private property; they belong to the people"": @msisodia in this Exclusive on criticism t… https://t.co/RoJ3nju3jx" +06/20/2018,Social_workers,@BDUTT,@krishpachegonkr thank you +06/20/2018,Social_workers,@BDUTT,@schinky25 @MirrorNow @tanvishukla thank you +06/20/2018,Social_workers,@BDUTT,@Mutineer57 No because I don't threaten and bully I express my view and let's others express theirs +06/20/2018,Social_workers,@BDUTT,@areta Thank you. Grateful for your words +06/20/2018,Social_workers,@BDUTT,Thanks Rupa. Intimidation of all kinds is a mind game. We have got to keep going. https://t.co/l0sluYJurW +06/20/2018,Social_workers,@BDUTT,@ranajig Ah well yes +06/20/2018,Social_workers,@BDUTT,@narsing_ch @paranjoygt Thanks. And thanks @paranjoygt for a fair and open hearing +06/20/2018,Social_workers,@BDUTT,😎😗 if we aren't obstructed by shadowy forces ... Soon soon... And thank you. https://t.co/lbI1FEmsE2 +06/20/2018,Social_workers,@BDUTT,@JoBeingjoe Thanks but I was not out of action :) +06/20/2018,Social_workers,@BDUTT,"RT @orfonline: ""How have we understood the #Kashmir question all these years?"" @BDUTT explores. Read on: https://t.co/jfvIZIykp1" +06/19/2018,Social_workers,@BDUTT,@ruchicatomar Thanks +06/19/2018,Social_workers,@BDUTT,RT @ruchicatomar: I remember reading this opinion from @BDUTT weeks after Kathua rape case protests. Relevant read as #BJPDumpsPDP today ht… +06/19/2018,Social_workers,@BDUTT,@Thotatthil @MirrorNow @tanvishukla Thanks +06/19/2018,Social_workers,@BDUTT,@SandipGhose @RikkiAxl ha ha :-) +06/19/2018,Social_workers,@BDUTT,Thank you 😗😎 https://t.co/x8CVRwaRaB +06/19/2018,Social_workers,@BDUTT,RT @sonaliranade: Meanwhile police officers in the valley say women and children have begun to snatch weapons from men on duty writes @bdu… +06/19/2018,Social_workers,@BDUTT,And I said yes. No one will mourn the end of this alliance https://t.co/oNmELy9yQl +06/29/2018,Social_workers,@RaggiKotak,575 brilliant and brave women were arrested in DC yesterday while protesting barbaric immigration policies! Respect! +06/28/2018,Social_workers,@RaggiKotak,RT @guardian: Why is Donald Trump such a massive baby? https://t.co/CCuWRireEw +06/27/2018,Social_workers,@RaggiKotak,"Super awful that this bigotry has been upheld by the Supreme Court! +Trump hails 'tremendous victory' after supreme… https://t.co/l1KuSjdcBw" +06/26/2018,Social_workers,@RaggiKotak,A friend is organising this. Please give a couple of quid to support this brilliant and hilarious event!!! - watch… https://t.co/SvAdNjdYZK +06/26/2018,Social_workers,@RaggiKotak,How can you condemn Trump but stay silent on British brutality? | Aditya Chakrabortty https://t.co/qeDuWsIh9X +06/23/2018,Social_workers,@RaggiKotak,"RT @freemovementlaw: A new edition of the Free Movement guide to settled status, by @NathGbikpi, is out: https://t.co/iFDKbXCx5P" +06/21/2018,Social_workers,@RaggiKotak,Proud to be in the Board of the fantastic Imkaan! https://t.co/rTij24SdZO +06/20/2018,Social_workers,@RaggiKotak,Donald Trump signs executive order to end family separations https://t.co/XtoCGMx4kT +06/20/2018,Social_workers,@RaggiKotak,RT @mckinneytweets: Horrible case. Solicitors begged the authorities not to release a Vietnamese kid in case he was picked up again by traf… +06/18/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: This week is #RefugeeWeek. We start by looking at the legal definition of a refugee. Later in the week we’ll be looking at a… +06/18/2018,Social_workers,@RaggiKotak,Separation at the border: children wait in cages at south Texas warehouse https://t.co/tE075o2lEy +06/17/2018,Social_workers,@RaggiKotak,"RT @NaomiOhReally: ""I'm going to take your child to get bathed,"" is what US officials say to separate children from their parents, accordin…" +06/16/2018,Social_workers,@RaggiKotak,"RT @BBCWorld: US child migrants: 2,000 separated from families in six weeks https://t.co/65eXXeAFky" +06/15/2018,Social_workers,@RaggiKotak,"RT @libertyhq: The Commons has just voted to take away the EU Charter of Fundamental Rights after #Brexit, eroding our rights and equality…" +06/15/2018,Social_workers,@RaggiKotak,"Immigration officers win cake for arresting the most people! Hostile environment disgusting tactics! +https://t.co/tN5voXrIcN" +06/14/2018,Social_workers,@RaggiKotak,"Please sign & RT. Let’s see a giant baby Trump in the sky! +https://t.co/5vSznImN07 via @38_degrees" +06/14/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Today our thoughts are with the friends, families, and loved ones of those who died in #Grenfell Tower. The violent impact of p…" +06/14/2018,Social_workers,@RaggiKotak,"RT @officialJ4G: Today marks the one year anniversary. We stand with Grenfell, the bereaved, the survivors and our incredibly strong commun…" +06/14/2018,Social_workers,@RaggiKotak,"Doctors and nurses excluded from visa cap +Immigration rules to be relaxed for non-EU doctors and nurses - BBC News https://t.co/qTaTf0K5Md" +06/14/2018,Social_workers,@RaggiKotak,RT @copscampaign: Lush's #spycops campaign continues. These blunt new posters are going up in their shop windows this morning. Let's have a… +06/13/2018,Social_workers,@RaggiKotak,RT @WomenandGirlsN: Want to work for our incredible organisation? Check out our latest vacancies! We have some fantastic opportunities #vaw… +06/12/2018,Social_workers,@RaggiKotak,Government under fire for 'outrageous' treatment of modern slavery victims facing deportation from UK https://t.co/VRDZaOM8wH +06/11/2018,Social_workers,@RaggiKotak,"RT @OnePumpCourt: We would love you to be a part of the One Pump Court team as a Family Law Barrister! + +Apply here: + +https://t.co/RHeroUM3x…" +06/11/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Judge refuses applicant's request to have asylum appeal adjourned so he can find a lawyer: ""The case is straightforward a…" +06/10/2018,Social_workers,@RaggiKotak,15000 fascists demonstrated and rioted in London Saturday. Mostly not covered and if it has been - been described a… https://t.co/7kdR8Hl1y4 +06/06/2018,Social_workers,@RaggiKotak,"RT @INQUEST_ORG: INQUEST Trustee Rajiv Menon QC and Inquest Lawyers Group members today gave important statements at the Grenfell Inquiry,…" +06/06/2018,Social_workers,@RaggiKotak,RT @OnePumpCourt: One Pump Court has continued to raise funds for essential work on the infrastructure and development of the Lorraine Posw… +06/04/2018,Social_workers,@RaggiKotak,No 10 expected to lift visa cap preventing doctors entering UK https://t.co/fejp9M65pF +06/03/2018,Social_workers,@RaggiKotak,"RT @safepassageuk: URGENT REQUEST: We need you to write to your MP today. Within a matter of days, Brexit is set to close a legal route to…" +06/02/2018,Social_workers,@RaggiKotak,Legal challenge says ‘right to rent’ rules discriminate against non-UK nationals https://t.co/GmoUgZWIXP +06/02/2018,Social_workers,@RaggiKotak,Please consider doing this. Only takes a minute x https://t.co/nuU5XFdUNi +06/01/2018,Social_workers,@RaggiKotak,RT @WarOnWant: Solidarity with Palestinian medics heroically risking their lives tending to injured protesters. Infuriating that medics are… +06/01/2018,Social_workers,@RaggiKotak,RT @theIMEU: Palestinian nurse Razan al-Najjar was shot in the chest and killed by Israeli snipers today in the besieged Gaza Strip as she… +05/30/2018,Social_workers,@RaggiKotak,RT @Imkaan: We need a bill that safeguards vital women’s organisations and is committed to sustaining specialist services which support Bla… +05/29/2018,Social_workers,@RaggiKotak,"RT @frankie_mj: This is happening THIS THURSDAY! It is due to be a rainy evening, so the perfect day to drink some wine & listen to intere…" +05/29/2018,Social_workers,@RaggiKotak,RT @Imkaan: Violence against women and girls is a human rights issue; the goernment must acknowledge this by giving us a bill that protects… +05/25/2018,Social_workers,@RaggiKotak,"RT @DLPublicLaw: UPDATE: #HomeOffice has amended Removals Policy in response to our legal challenge. See link. + +#accesstojustice + +https://…" +05/25/2018,Social_workers,@RaggiKotak,RT @YousefMunayyer: Read this tweet. Then read it again. And again. https://t.co/Q0XGUPyNxc +05/24/2018,Social_workers,@RaggiKotak,"RT @Imkaan: In order to #TransformDVBill, the government must ensure protection from violence for women with No Recourse to Public Funds (N…" +05/23/2018,Social_workers,@RaggiKotak,"Tell me something I don’t know! +Home Office accused of 'shambolic incompetence' over skilled migrants https://t.co/OfKGV3MHOV" +05/23/2018,Social_workers,@RaggiKotak,"Let's all get tweeting....Donald Trump cannot block anyone on Twitter, court rules https://t.co/2FCloxe12z" +05/23/2018,Social_workers,@RaggiKotak,RT @PEACE4EVEREVER: As long as the Israeli government commits war crimes against the Palestinian people we support their call for a boycott… +05/21/2018,Social_workers,@RaggiKotak,RT @GrenfellUnited: Today is the beginning of a long road to justice & truth. The truth must prevail. We must get justice for the lives los… +05/21/2018,Social_workers,@RaggiKotak,RT @Imkaan: Our thoughts today are with the survivors and loved ones of those who died in the Grenfell Tower fire. If ever there was a more… +05/20/2018,Social_workers,@RaggiKotak,Lawyers representing the families said that despite pressing the Home Office for months on the mounting urgency to… https://t.co/OZLWtuTDzA +05/20/2018,Social_workers,@RaggiKotak,A life 'completely destroyed' by one paragraph of immigration law https://t.co/osovDdudLt +05/20/2018,Social_workers,@RaggiKotak,@SAsiaSolidarity Feel ashamed as this is my family's home town! It's awful +05/19/2018,Social_workers,@RaggiKotak,RT @PriyaSolankl: BBC News - Former refugee Magid Magid takes up Sheffield Lord Mayor post https://t.co/gPz811M3Ri +05/19/2018,Social_workers,@RaggiKotak,RT @KR0b3rts: The #ModernSlavery Victim Care Bill has reached the Commons. This Bill would give victims support for a year and a chance of… +05/19/2018,Social_workers,@RaggiKotak,RT @gregoceallaigh: I can think of person today whose spouse visa wasn’t endorsed with a condition of No Recourse To Public Funds. +05/18/2018,Social_workers,@RaggiKotak,UK's first Independent Anti-Slavery Commissioner resigns citing government interference https://t.co/ZxSOWiqhue +05/17/2018,Social_workers,@RaggiKotak,"RT @aliromah: Resignation of @ukantislavery saying “At times independence has felt somewhat discretionary from the Home Office, rather than…" +05/16/2018,Social_workers,@RaggiKotak,Awesome meeting last night of the anti trafficking legal project (ATLeP) - sharing knowledge about current legal an… https://t.co/PFlaCtU6mA +05/16/2018,Social_workers,@RaggiKotak,"RT @BDSmovement: Good news as we grieve the dead: The mayor of Barcelona @AdaColau has demanded an arms embargo on Israel, as called for by…" +05/15/2018,Social_workers,@RaggiKotak,"Not the only reason the HO are shambolically incompetent. But nice to see it acknowledged. +Home Office accused of… https://t.co/t8Fro9x9y2" +05/15/2018,Social_workers,@RaggiKotak,"No surprise but good to see this acknowledged! +Capita staff used ‘excessive’ restraint on asylum seekers https://t.co/YEgKYN5PIU" +05/14/2018,Social_workers,@RaggiKotak,The lives of Grenfell tower https://t.co/jwSvxUebVl +05/14/2018,Social_workers,@RaggiKotak,"RT @stevesymondsAI: When UK abandoned jus soli in 1983, Parliament preserved right of #children born in UK to British #citizenship by regis…" +05/13/2018,Social_workers,@RaggiKotak,Fraud unravels everything: Brexit is voidable and Article 50 can be revoked https://t.co/ZLLGhPNbcf via @LSEpoliticsblog +05/13/2018,Social_workers,@RaggiKotak,"MPs are due to debate #DubsII this month, an amendment to the EU Withdrawal Bill that will keep open a vital route… https://t.co/Bqmh9cG4tp" +05/13/2018,Social_workers,@RaggiKotak,"RT @DavidLammy: Brexit has contributed to an environment of increased racial discrimination and intolerance. + +Extreme views have gained gr…" +05/13/2018,Social_workers,@RaggiKotak,Another cruel policy is called out for what it is. Maybe we should spend the money on services and a fair and just… https://t.co/9inNeQDXG5 +05/11/2018,Social_workers,@RaggiKotak,Phew! Humanitarian workers acquitted of ‘crime’ of helping refugees https://t.co/YPz5fGUBom via @newint +05/11/2018,Social_workers,@RaggiKotak,RT @FrancesWebber5: Please sign and share. https://t.co/cI2sxKsIuT +05/11/2018,Social_workers,@RaggiKotak,RT @FrancesWebber5: UK Torture - the government is rewriting our country’s torture rules in secret. I'm calling for an open and transparent… +05/10/2018,Social_workers,@RaggiKotak,RT @SBSisters: #JusticeForNoura Noura is going to be put to death in few days. She was forced to marry & when she refused to hve sex w/ him… +05/10/2018,Social_workers,@RaggiKotak,RT @freeforgooduk: We are delighted to announce that Lord McColl’s Modern Slavery (Victim Support) Bill has just passed Third Reading in th… +05/10/2018,Social_workers,@RaggiKotak,RT @ZoeJardiniere: Fuming. Just hearing of some asylum seeker kids being turned away from STI and sexual health clinics in London because s… +05/10/2018,Social_workers,@RaggiKotak,RT @legalhacker101: Helped a colleague today with a presentation to medics about asylum seekers. Did the slide on the #HostileEnviroment. W… +05/10/2018,Social_workers,@RaggiKotak,"RT @JCWI_UK: Whistleblower after whistleblower has come forward to expose shocking routine failures in compassion, competence, and common s…" +05/09/2018,Social_workers,@RaggiKotak,RT @OnePumpCourt: One Pump Court's Priya Solanki will be speaking on the topic of Bail and Detention at London Spring “Essential Update” Im… +05/08/2018,Social_workers,@RaggiKotak,"Yep. This is sadly true. +Rogue immigration solicitors exploiting vulnerable migrants by charging thousands for 'su… https://t.co/hTPjNSScqu" +05/08/2018,Social_workers,@RaggiKotak,"RT @MBEGriffiths: Asylum ‘lottery’: Home Office whistle blower describes making life/death decisions under ""a leader board displaying who i…" +05/06/2018,Social_workers,@RaggiKotak,"RT @JCWI_UK: Yes. Please, everyone affected by @ukhomeoffice or by the hostile environment in your banks, NHS, renting, working, now is the…" +05/06/2018,Social_workers,@RaggiKotak,RT @libertyhq: #Windrush shows all too clearly why @sajidjavid MUST remove the toxic immigration exemption from the Data Protection Bill. I… +05/05/2018,Social_workers,@RaggiKotak,RT @DavidLammy: After 9 G4S employees suspended for their behaviour towards those being detained. That’s your fair and humane immigration p… +04/29/2018,Social_workers,@RaggiKotak,One down...Amber Rudd resigns as home secretary after Windrush scandal https://t.co/YsTo7eLV5s +04/24/2018,Social_workers,@RaggiKotak,Great new resource on sexuality claims ... https://t.co/4nvzFbt4Oj +04/17/2018,Social_workers,@RaggiKotak,"RT @copscampaign: This is the #spycops officer 'Dave Hagan' who spied on the #StephenLawrence campaign for justice. +https://t.co/1HSiB9QRMn…" +04/16/2018,Social_workers,@RaggiKotak,"Want to know about the 'Hostile environment' against migrants...and how to help bring us down. +Read this... + +https://t.co/GswYDEVt8P" +04/16/2018,Social_workers,@RaggiKotak,Watch David in this clip ... quite fucking right!!! https://t.co/shbQdnCvrN +04/07/2018,Social_workers,@RaggiKotak,https://t.co/IZWIpqvn4P +04/07/2018,Social_workers,@RaggiKotak,Today 1pm. Protest for Gaza. London https://t.co/YnIPqWYIuL +04/07/2018,Social_workers,@RaggiKotak,A good read from the Palestinian Solidarity Campaign. If we don’t speak out then we are complicit in the massacres.… https://t.co/cu9s7fwL6L +04/07/2018,Social_workers,@RaggiKotak,RT @Liam_O_Hare: Another eight Palestinians have been shot dead today in Gaza. 780 people have been wounded including journalist Yaser Murt… +04/06/2018,Social_workers,@RaggiKotak,@SoniaL77 @dpg_law @AIRECentre Me too! +04/06/2018,Social_workers,@RaggiKotak,Excellent talk by Will Russell @dpg_law and Catherine Meredith @DoughtyStPublic on rights and legal challenges for… https://t.co/ucYKzjRsEh +04/05/2018,Social_workers,@RaggiKotak,RT @hypergraphica: Another Palestinian killed today in an Israeli air raid on Gaza. 21 people have been murdered since the Great Return Mar… +04/05/2018,Social_workers,@RaggiKotak,"RT @solange_valdez: A must read on @ukhomeoffice fees, including profit making on children's registration and much more: +https://t.co/Mnhnq…" +04/05/2018,Social_workers,@RaggiKotak,New ‘exorbitant’ fees for Immigration applications starting tomorrow. Here is the new fee structure. https://t.co/FOwzzr7lim +04/05/2018,Social_workers,@RaggiKotak,RT @gardencourtlaw: Applications for the Inderpal Rahal Memorial Trust award are now open. The trust applies to women who are from an immig… +04/05/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Client, victim of trafficking but convicted of crime from being trafficked, removed from UK, re-trafficked, claimed asylu…" +04/05/2018,Social_workers,@RaggiKotak,"RT @VictoriaLIVE: ""It's mental torture."" +A mother and daughter speak to us from inside Yarl's Wood detention centre where they've been held…" +04/05/2018,Social_workers,@RaggiKotak,"RT @bareroots16: I have a dream that together we will end male violence in all its forms against women and girls in our lifetime! +One Womy…" +04/04/2018,Social_workers,@RaggiKotak,@JacquiDillon Why are you calling yourself a Doctor here. It is a crminal offence to lie. An honorary doctorate is… https://t.co/9XMnrcZPGf +04/04/2018,Social_workers,@RaggiKotak,"RT @BIDdetention: Read this and weep: ""He says he is British but has done nothing to prove it"". Truly disgraceful. https://t.co/juRtMq2ZGT" +04/04/2018,Social_workers,@RaggiKotak,GRETA Annual Report out yesterday. Re implementation of trafficking convention. Summary of main findings! https://t.co/q6rrVIBYyl +04/03/2018,Social_workers,@RaggiKotak,@JacquiDillon today I came to your dissociation training. I told you my main perpetrator was in the room. My brothe… https://t.co/sphPbMldcY +04/03/2018,Social_workers,@RaggiKotak,At least one person a day is self-harming in UK detention centres https://t.co/lf7qMmmFGd +04/02/2018,Social_workers,@RaggiKotak,Yes! https://t.co/SbuYiA8Xz4 +04/02/2018,Social_workers,@RaggiKotak,Many of us are complicit in trafficking ‘If you are being offered a service for much less than you would expect to… https://t.co/ImGX4xyMYo +04/02/2018,Social_workers,@RaggiKotak,RT @stevesymondsAI: How is someone fleeing persecution supposed to have confidence they’ll get a fair hearing from a system so eager it can… +04/02/2018,Social_workers,@RaggiKotak,"RT @UNHCRUK: If you a refugee or know anyone who is eligible, @KingsSummer is offering 10 scholarships for refugees and asylum-seekers! Dea…" +04/02/2018,Social_workers,@RaggiKotak,Brilliant! https://t.co/V998BP2gx5 +04/02/2018,Social_workers,@RaggiKotak,"RT @migrants_rights: ""..the Home Office is keen to encourage as many ppl as possible to return home. It has begun providing asylum seekers…" +04/01/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: Nauru has severed a long-standing arrangement to allow appeals to the high court of Australia, impacting on the rights of…" +04/01/2018,Social_workers,@RaggiKotak,So does that mean we will see sanctions against Israel. Fat fucking chance! Israel rejects UN and EU calls for inq… https://t.co/ZuN7jtxpas +04/01/2018,Social_workers,@RaggiKotak,RT @centreWJ: Victims of sexual violence are right to fear another John #Worboys by @hwistrich https://t.co/rCsvn1fZG0 +04/01/2018,Social_workers,@RaggiKotak,"UN fails to condemn Israel's use force on unarmed Palestinians because blocked by US + @AJENews https://t.co/CpxXFI8zIU" +03/31/2018,Social_workers,@RaggiKotak,RT @PT_Foundation: Palestinians hold day of mourning after 773 people shot with live ammo by #Israeli soldiers. Firing on unarmed civilians… +03/31/2018,Social_workers,@RaggiKotak,No words! Israeli forces kill 16 in Gaza as Palestinians demonstrate on Land Day https://t.co/MozJFAfZ4d via @MiddleEastEye +03/30/2018,Social_workers,@RaggiKotak,Brilliant article on Britain’s role in slavery. Long. But so important! https://t.co/Rb2D90dQkk +03/30/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: ""Baroness Hale, the UK’s most senior judge, is making a VIP appearance on the semi-finals of MasterChef, where she will ju…" +03/29/2018,Social_workers,@RaggiKotak,RT @matthewlondon50: Our Ana handing in a petition for EU nationals today at Downing Street with @IslingtonIn and @IslingtonLabour. Ana for… +03/29/2018,Social_workers,@RaggiKotak,RT @WilsonsLondon: Huge thanks to @marthaspurrier for brilliant Kay Everett Memorial Lecture. The lecture can be viewed at the following li… +03/28/2018,Social_workers,@RaggiKotak,The abhorent treatment of asylum seekers and refugees in Australia makes me feel very angry and sad! How do we make… https://t.co/SzlBAaF0MZ +03/27/2018,Social_workers,@RaggiKotak,Hilarious watching Boris Johnson get a slapping. It’s like public school boy slapstick! https://t.co/zpu0oYCmQ6 +03/27/2018,Social_workers,@RaggiKotak,This! ATLEU’s note on the annoying decision of the Court of appeal in MS. And advice from ATLEU on how to challenge… https://t.co/UYVNdcx6eW +03/27/2018,Social_workers,@RaggiKotak,"Respect for those involved for standing up for justice! +Why Spycops victims walked out from the police inquiry… https://t.co/rUaBfhBosP" +03/26/2018,Social_workers,@RaggiKotak,Awesome 2 day seminar at SOAS on legality of conflict in Iraq - #LegalLegaciesIraqWar. Brilliant speakers. Shame on… https://t.co/tgEnEuSrQM +03/26/2018,Social_workers,@RaggiKotak,RT @libertyhq: Two women who were let down by the Metropolitan Police when they reported being attacked by John Worboys have won a victory… +03/26/2018,Social_workers,@RaggiKotak,"Increasing numbers. More or just better detection? +British children being forced into modern slavery in UK as 5,000… https://t.co/Z9iNWE73sh" +03/26/2018,Social_workers,@RaggiKotak,'The stress is making me ill': woman's immigration battle after 51 years in UK https://t.co/9Xl3OGd3zE +03/25/2018,Social_workers,@RaggiKotak,RT @Anti_Slavery: Today is the International Day of Remembrance of the Victims of Slavery and the Transatlantic Slave Trade. @Anti_Slavery… +03/25/2018,Social_workers,@RaggiKotak,"RT @nowthisnews: Over 800,000 came out for #MarchForOurLives in DC, with hundreds of thousands more rallying throughout the nation https://…" +03/24/2018,Social_workers,@RaggiKotak,RT @SKBarrister: @OnePumpCourt AGM unanimously backs decision to strike for for criminal legal aid. +03/23/2018,Social_workers,@RaggiKotak,Garden court criminal team go on a legal aid strike! https://t.co/rmIn6pjt1r +03/23/2018,Social_workers,@RaggiKotak,"Immigration Detention: One Step Forward, Two Steps Back — an excellent article by Sophie Walker @OnePumpCourt + https://t.co/jnR31Y7Kvl" +03/22/2018,Social_workers,@RaggiKotak,"RT @Anti_Slavery: If the UK Government - as it claims - is serious about tackling #slavery, it would support the Victim Support Bill and gi…" +03/21/2018,Social_workers,@RaggiKotak,"RT @ShoaibMKhan: Campaigners and lawyers have walked out of a public inquiry into undercover policing, demanding that the chairman stand do…" +03/21/2018,Social_workers,@RaggiKotak,1 month of the Yarl’s Wood hunger strike... why do they strike. Because indefinite detention is barbaric and ‘Every… https://t.co/NGESAjJbr0 +03/21/2018,Social_workers,@RaggiKotak,"Those that need legal aid the most do not get it and therefore are being refused access to justice! +https://t.co/WOj3y7wDHv" +03/20/2018,Social_workers,@RaggiKotak,"RT @Ha_Matar: BREAKING: Israeli soldier Elor Azaria, who cold bloodedly executed a wounded Palestinian who had previously stabbed soldiers,…" +03/18/2018,Social_workers,@RaggiKotak,RT @thebarcouncil: Are we doing enough to support barristers & chambers with #Wellbeing & #mentalhealth? Support is available from the Bar… +03/18/2018,Social_workers,@RaggiKotak,"Yep. We all know this to be true! +Barrister blows whistle on 'broken legal system brought to its knees by cuts' https://t.co/PdWLih944p" +03/18/2018,Social_workers,@RaggiKotak,Short news clip on the great work of the Rights Lab at Nott Uni to get a better understanding of slavery to help br… https://t.co/9BpiucKb4m +03/18/2018,Social_workers,@RaggiKotak,RT @BindmansLLP: BREAKING NEWS: #Whistleblower reveals how millions of #Facebook users' #data was misused in experimental targeting #Tamsin… +03/17/2018,Social_workers,@RaggiKotak,"RT @AntiRacismDay: Massive respect to the 20,000 people that braved arctic conditions in a huge show of solidarity against racism, Islamop…" +03/17/2018,Social_workers,@RaggiKotak,"RT @analuciaraujo_: Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Marielle Franco (1979-2018) +Mariell…" +03/17/2018,Social_workers,@RaggiKotak,"RT @SoSoSust: Very sorry to hear the news of Muslim girl Maryam Mustafa, she passed away on Wednesday evening, after being in a critical co…" +03/17/2018,Social_workers,@RaggiKotak,The Data Protection Bill has an unnecessary and draconian ‘Immigration exemption’ where the State has wide measures… https://t.co/WOrLL3i3GR +03/16/2018,Social_workers,@RaggiKotak,Channel 4 investigation into City Hearts - a Salvation Army funded ‘safehouse’ in Sheffield for trafficked persons… https://t.co/8a2SQdPXQT +03/16/2018,Social_workers,@RaggiKotak,RT @AsmaNizami: The @OnePumpCourt duo which is part of the winning @RLSAthens team! Thank you @LexisNexisUK for the award! Our team of volu… +03/15/2018,Social_workers,@RaggiKotak,@OnePumpCourt It doesn’t go to the right page +03/15/2018,Social_workers,@RaggiKotak,"RT @FreefromTorture: Right now, @ukhomeoffice is reviewing the definition of #torture in their Adults at Risk policy. It's vital they get i…" +03/15/2018,Social_workers,@RaggiKotak,Day 23 Yarl’s wood strike! We hear you! End the inhumanity of immigration detention | Letters https://t.co/aF9bLqFEA4 +03/14/2018,Social_workers,@RaggiKotak,Day 21 of a hunger strike in Yarl’s Wood Immigration detention centre. Standing with the women against the inhumani… https://t.co/GEbTYvQeFH +03/14/2018,Social_workers,@RaggiKotak,Awesome first meeting of #ATLeP last night @OnePumpCourt. A mix of lawyers and voluntary sector committed to bring… https://t.co/KdMvKhNlkk +03/14/2018,Social_workers,@RaggiKotak,Dianne Abbott blog- don’t need to wait for history though. I can confirm the xenophobic immigration policies are da… https://t.co/f026j7VjgU +03/13/2018,Social_workers,@RaggiKotak,Read the report on Harmondsworth. More on the abhorrent treatment of migrants in immigration detention. https://t.co/rmJarQH11w +03/13/2018,Social_workers,@RaggiKotak,Please sign and share! https://t.co/tvovMjXKvO +03/13/2018,Social_workers,@RaggiKotak,"The barbaric hostile environment! +As a doctor, I can see that denying NHS care to immigrants is inhumane | Kitty Wo… https://t.co/OuQr5sz3MA" +03/13/2018,Social_workers,@RaggiKotak,"Tell me something I don’t know!!! +Home Office keeping torture victims in detention, inspectors report https://t.co/Vu65Lcriin" +03/12/2018,Social_workers,@RaggiKotak,Relaunch of the Anti Trafficking Legal Project (ATLeP) tomorrow - Tuesday - at 6pm @OnePumpCourt. Message me on rko… https://t.co/ILgYGc77tH +03/12/2018,Social_workers,@RaggiKotak,@detainedvoices I have a journalist that wants to report what is going on. Contact me on raggikotak@gmail.com and I… https://t.co/BUtkFlYSVL +03/12/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: If your MP is not one of the 128 who have signed the EDM about detained torture survivors and other vulnerable detaine… +03/11/2018,Social_workers,@RaggiKotak,RT @BajariaLaw: Father taken away. Doesn't know where his three kids are. Can't see or speak to them. They've been snatched away instead. T… +03/11/2018,Social_workers,@RaggiKotak,"RT @libertyhq: In the 80s, Govt tried to scrap our data protection rights for immigration purposes. Our deeply private information held by…" +03/11/2018,Social_workers,@RaggiKotak,The younger generation teach us about protesting! https://t.co/qZIIbyV9NE +03/10/2018,Social_workers,@RaggiKotak,"RT @HelpRefugees: We need volunteers in Calais! + +We would especially like to encourage people from minority, migrant and refugee background…" +03/10/2018,Social_workers,@RaggiKotak,@WomenandGirlsN @MaraiLarasi The others are all in very fine company being associated with our Marai x +03/10/2018,Social_workers,@RaggiKotak,Awesome marching with awesome activists and lawyers supporting the end of violence against women @Imkaan… https://t.co/tDJDlhR8kT +03/10/2018,Social_workers,@RaggiKotak,Today. London. Million Women Rise! Come. It’s the most fun political action day of the year. Bring whistles and dru… https://t.co/eeNysSOehY +03/10/2018,Social_workers,@RaggiKotak,RT @JCWI_UK: Extremely disappointing to see @jeremycorbyn spread an entirely false narrative about immigrants tonight. We hope the @UKLabo… +03/10/2018,Social_workers,@RaggiKotak,"RT @MaraiLarasi: Just over 12 hours to go!!!! Getting ready to rise with my @MillionWomen community + +‘You may write me down in history +Wit…" +03/09/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Lift your voice, bring a sister & rise with us! Join tomorrow 12 noon @MillionWomen rise, marching to end male violence against…" +03/09/2018,Social_workers,@RaggiKotak,RT @BIDdetention: Absolutely shocking: client who had been released was re-detained on reporting today even though he is sole carer for his… +03/09/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: New post: Yarl’s Wood hunger strike letter undermines official stance on protests https://t.co/7Dy65c4cu8 +03/09/2018,Social_workers,@RaggiKotak,Day 17 of the hunger strike at Yarl’s Wood. A message from one of the women https://t.co/LEhgYlpHbN +03/08/2018,Social_workers,@RaggiKotak,Day 16 of the Yarl’s Wood hunger strike. Applauding the women on International womens’ day. Respect to resilience a… https://t.co/loGH1h3NPC +03/07/2018,Social_workers,@RaggiKotak,"RT @JohnHyde1982: From the outset, justice ministers promised they would review LASPO after five years. They knew this deadline was coming.…" +03/07/2018,Social_workers,@RaggiKotak,Come to this march if you are free. Each year this is a super fun day and is super important! Million Women Rise th… https://t.co/9PSJ0RZqiZ +03/07/2018,Social_workers,@RaggiKotak,Inspiring! Meet the Sex Workers Leading the Fight Against Human Trafficking and Child Marriage  https://t.co/QXUmv8WBvw via @thewire_in +03/06/2018,Social_workers,@RaggiKotak,RT @FreefromTorture: URGENT: the @ukhomeoffice is reviewing the #torture definition in its Adults at Risk policy. If it gets it wrong tortu… +03/05/2018,Social_workers,@RaggiKotak,RT @windmill_tilter: Data Protection Bill Immigration Exemption = shocking authoritarian move by govt desperate to hide from rule of law ht… +03/05/2018,Social_workers,@RaggiKotak,RT @Anti_Slavery: The @UKHomeOffice quietly slashes support for #slavery victims by nearly half. Let's make it clear: people recovering fro… +03/05/2018,Social_workers,@RaggiKotak,RT @AsylumAid: RT @Im_Keeron: #Women in #YarlsWood forced on hunger strike because conditions in #detention are so brutal- instead of liste… +03/04/2018,Social_workers,@RaggiKotak,@La_Cowan @galdemzine @Imkaan @JadeShamraeff @livlittle Awesome day. Awesome organisation. Awesome team. Thank you x +03/04/2018,Social_workers,@RaggiKotak,Share this with your clients https://t.co/rXWfOoUIei +03/04/2018,Social_workers,@RaggiKotak,RT @AyoCaesar: Hunger strikers at Yarl’s Wood are being threatened with accelerated deportation for having the temerity to demand their bas… +03/03/2018,Social_workers,@RaggiKotak,RT @detainedvoices: I was told by Fiona I am going to be interviewed by them especially because I am on the hunger strike protest in #Yarls… +03/03/2018,Social_workers,@RaggiKotak,RT @CrowdJustice: The serious failings of G4S to run prison services safely were revealed on @BBCPanorama. Maltreatment of detainees and fa… +03/02/2018,Social_workers,@RaggiKotak,RT @BIDdetention: Only £515 left until we reach our target! Please consider pledging this weekend so that we achieve our target by Monday.… +03/02/2018,Social_workers,@RaggiKotak,@guppikb When are you opening the course up to applications or is it already full +03/02/2018,Social_workers,@RaggiKotak,"RT @GDenholmLMC: Yesterday’s Kay Everett Memorial Lecture was a fitting tribute to an inspiring lawyer, activist and friend. Powerful lectu…" +03/02/2018,Social_workers,@RaggiKotak,RT @ColinYeo1: Death of Navtej Singh Ahluwalia https://t.co/XCWHkqQQf1 +03/02/2018,Social_workers,@RaggiKotak,Come to this... a brilliant day fundraising for the super brilliant Imkaan x https://t.co/2CTT4nrbdH +03/02/2018,Social_workers,@RaggiKotak,Yet more attacks on trafficked persons placing them at further risk https://t.co/3ZFZ7Dmanx +03/01/2018,Social_workers,@RaggiKotak,RT @aliromah: Lecture @SOAS by @marthaspurrier @libertyhq in memory of Kay Everett of @WilsonsLondon reminds us indefinite detention does e… +03/01/2018,Social_workers,@RaggiKotak,RT @CarolStorerLAPG: An incredibly powerful speech by @libertyhq director @marthaspurrier for the first Kay Everett Memorial Lecture about… +03/01/2018,Social_workers,@RaggiKotak,RT @maybulman: I went to Yarl's Wood over the weekend and (once I got through all the security checks) spoke to a resident who is on hunger… +03/01/2018,Social_workers,@RaggiKotak,"Big it up to the brave Women at Yarl’s Wood fighting for their rights! + https://t.co/NyusyD1QWG" +02/27/2018,Social_workers,@RaggiKotak,"RT @MaraiLarasi: @Imkaan will be there @MillionWomen on March 10th on the streets of London. This is a movement built by from the ground, r…" +02/27/2018,Social_workers,@RaggiKotak,"RT @Imkaan: Come along this Sunday to @HouseOfVansLDN, Waterloo! Don't miss: talks feat. @MunroeBergdorf @lawrsuk, a workshop on resisting…" +02/27/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: Diane Abbott MP told us that Yarl's Wood detainees had described inadequate healthcare https://t.co/8FzlYiZuxJ +02/27/2018,Social_workers,@RaggiKotak,RT @Medical_Justice: Concerning that it took Diane Abbott MP over a year of requests before she was allowed to visit Yarl's Wood - great th… +02/26/2018,Social_workers,@RaggiKotak,RT @DetentionAction: Looking to support the #YarlsWood protesters and back the fight against the indefinite #detention of migrants? Here ar… +02/26/2018,Social_workers,@RaggiKotak,"RT @lisang: This is a photo of Mohammad Tamimi, 15, following emergency surgery to repair his skull, shattered by an Israeli soldier's bull…" +02/26/2018,Social_workers,@RaggiKotak,RT @sdetsup: Yarl's Wood hunger strikers escalate protests and will begin a work strike from Monday. Read this thread for latest demands #… +02/26/2018,Social_workers,@RaggiKotak,"RT @MillionWomen: 2008-2018 and still we RISE! Join us Saturday 10th March. Meet 12.30 Duke ST ( Next to selfridges, Central London) + +http…" +06/28/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: Éadaoin Bhreathnach ‘The iPad facilitates dissociation, children aren’t learning to properly regulate using social eng…" +06/28/2018,Social_workers,@Martha7144,RT @RickBrad1ey: This is a really good resource from @AFNCCF. Contains info which is equally applicable outside of school settings too. htt… +06/28/2018,Social_workers,@Martha7144,RT @healthdpt: New Signs of Safety Programme aimed at improving NI’s children’s social work services - programme supported by investment of… +06/28/2018,Social_workers,@Martha7144,"RT @signsofsafety: If you weren't already aware, Signs of Safety launched nationally in Northern Ireland yesterday. A remarkable moment tha…" +06/28/2018,Social_workers,@Martha7144,"RT @AmandaFBelfast: #Belfast women are *THE* best. + +Two men walking past two women on High Street. + +Fella one is acting Billy Big Balls i…" +06/28/2018,Social_workers,@Martha7144,"RT @colleengnm: How to approach child development; like a gardener, yelling at a plant for not growing will not make it grow..we must ask o…" +06/28/2018,Social_workers,@Martha7144,@trishstitt lovely to finally meet you in person today. +06/28/2018,Social_workers,@Martha7144,RT @jade_irwin: The #YoungHeartsAndMinds conference @BelfastWater is the best professional & personal training I have been to... and I am o… +06/27/2018,Social_workers,@Martha7144,RT @BDPerry: Is Sleeping With Your Baby As Dangerous As Doctors Say? https://t.co/SE2svlcwNq +06/25/2018,Social_workers,@Martha7144,RT @EamonnMallie: The premiere of our @BAItweets & @OireachtasNews film #AWomansPlace is screening on Monday 25th June @ 18.30 in @IFI_Dub.… +06/25/2018,Social_workers,@Martha7144,RT @eagoodlife: Childhood Trauma Leads to Brains Wired for Fear https://t.co/vCltKBsDTC +06/24/2018,Social_workers,@Martha7144,"RT @MichaelMorrow93: Credit where it's due, Arlene Foster attending the Ulster SFC final is a absolutely commendable. + +We have to endure a…" +06/24/2018,Social_workers,@Martha7144,"RT @_LisaCherry: It's not more CAMHS that children and young people need, it is fully resourced schools and communities and parents not liv…" +06/23/2018,Social_workers,@Martha7144,"RT @emmamckinneyxox: Loving our new names badges in Beechcroft..we have a Bee in pride of place to incorporate our Bee safe project, I can’…" +06/22/2018,Social_workers,@Martha7144,RT @BeaconHouseTeam: Take a look at our free worksheet for brainstem calming ideas that we help parents and schools to put in place – thank… +06/21/2018,Social_workers,@Martha7144,RT @RachelOT: The hard work is paying off... strength to go on! #changinglives https://t.co/BB59T65i9x +06/19/2018,Social_workers,@Martha7144,RT @James_vru: Children and adults who have experienced toxic stress and unsafe relationships are brilliant at reading the room. They can s… +06/19/2018,Social_workers,@Martha7144,"RT @DrMikePsych: And while we’re all focussed on NHS finances, can I respectfully point out that there are far better ways of spending £150…" +06/18/2018,Social_workers,@Martha7144,@LatimerOlivia Sounds like you had a great day. Well done. +06/17/2018,Social_workers,@Martha7144,"RT @Keirwales: Another way of talking about personality disorder... + +https://t.co/0ooskBCjf9" +06/14/2018,Social_workers,@Martha7144,RT @Gingelinds: Help me make a difference for a cause I care about. @everydayherouk #everythingcounts https://t.co/qibOQqxGWV +06/13/2018,Social_workers,@Martha7144,"RT @CamhsNi: 'A trauma-informed care model will help nurses make sense of their patients’ health history and responses to treatment, and in…" +06/13/2018,Social_workers,@Martha7144,@rachieroo32 @ExternReachOut @Sharon26smith It was lovely to have you. @corrymeela. Good luck with your next project +06/13/2018,Social_workers,@Martha7144,RT @Mrsatombomb: Excellent Extern Service 😊😊😊😊 https://t.co/2DOjwMMZg2 +06/13/2018,Social_workers,@Martha7144,"RT @StephenFarryMLA: 15mins to discuss Northern Ireland, despite all of the risks to the GFA and of a hard border from Brexit and how the N…" +06/10/2018,Social_workers,@Martha7144,Xx https://t.co/AuVebCVyPX +06/10/2018,Social_workers,@Martha7144,@amateuradam Excellent book. Laughed and cried in equal measure. Gave it to my Mum who is a retired obstetrician an… https://t.co/8PTxMCGGpm +06/10/2018,Social_workers,@Martha7144,"RT @processions2018: Did you know that green, white and violet UK Suffrage colour formation stands for “Give Women Votes”? We’ll be walking…" +06/08/2018,Social_workers,@Martha7144,"RT @SNevin1: Theres more border crossings in Ireland than all of the EU's other borders combined. Over 7,300 companies export to Eire acros…" +06/08/2018,Social_workers,@Martha7144,"RT @Debbie_abrahams: Warning of pressure on London teenagers as suicide rate doubles + +Parity of esteem, PM? +https://t.co/7NgBhgEdes" +06/08/2018,Social_workers,@Martha7144,RT @nuwandiss: Honest and true https://t.co/zCegYWvybC +06/05/2018,Social_workers,@Martha7144,RT @Mrsatombomb: Social Worker Posts!!!! 😊😊😊😊 https://t.co/MJ8VkVAm1a +06/05/2018,Social_workers,@Martha7144,RT @SophieLong01: With all due respect- by which I mean very little- why are three men over the age of 50 on talkback discussing abortion w… +05/28/2018,Social_workers,@Martha7144,RT @_NatashaDevon: @DavidLammy I looked at structural inequality in mental health for my book and concluded that the type of bias Piers is… +05/28/2018,Social_workers,@Martha7144,RT @ti_pbs: The angriest child in your class is afraid of feeling the true depths of their despair and sadness. Her anger is her lifeline.… +05/28/2018,Social_workers,@Martha7144,Why is the church constantly out of step https://t.co/bTcyy5Gg5x +05/24/2018,Social_workers,@Martha7144,@SiobhanRogan Saw you today and meant to say hello but got caught up in the competition to be the best Trust!! Hee… https://t.co/MSh9uh1P31 +05/23/2018,Social_workers,@Martha7144,RT @dr_treisman: A reposting but useful diagram of window of tolerance https://t.co/WLPviqH310 +05/22/2018,Social_workers,@Martha7144,RT @Jessicae13Eaton: Some professionals working with teens forget their own past behaviours then pathologise teens' experiences. Here's a f… +05/22/2018,Social_workers,@Martha7144,@duncan_morrow https://t.co/nUmV2nEfwA +05/20/2018,Social_workers,@Martha7144,RT @RachelOT: Great training... the OTs in Prison Healthcare seeing great results. Lovely to see the skills shared.. https://t.co/vtSCslRYFh +05/19/2018,Social_workers,@Martha7144,RT @billiehughes: https://t.co/ZTW0dHt3i9 +05/19/2018,Social_workers,@Martha7144,RT @ImSaraNeill: I’m in east Belfast where resident Joanne is getting the street ready for tomorrow’s Big Lunch! More on @BBCevex https://t… +05/19/2018,Social_workers,@Martha7144,RT @seanhollandOSS: really enjoyed this conference - family approaches to mental health work yield results and reflect how people want serv… +05/19/2018,Social_workers,@Martha7144,RT @Tim_Mc_Garry: To all the young people doing GCSEs and A Levels-please don't worry about failing. Literally anyone can be successful. #W… +05/17/2018,Social_workers,@Martha7144,RT @nashwakay: ramadan mubarak - last year i worked in an office and had a conversation with my manager and her manager about how they cou… +05/17/2018,Social_workers,@Martha7144,RT @dr_treisman: Flights booked for my @wcmtuk trip! Researching best practice in trauma-informed & trauma-responsive organisations. Please… +05/17/2018,Social_workers,@Martha7144,"RT @faeriesmidwife: It’s not the lack of check which is the issue, it’s the lack of genuine interest behind it. At my own 6week check up th…" +05/16/2018,Social_workers,@Martha7144,RT @duncan_morrow: Tonight the former Deputy PM resurfaced to officially deny the possibility of a United Ireland on @BBCNewsnight and the… +05/16/2018,Social_workers,@Martha7144,RT @MichaelMorrow93: Frampton is all class. Has made a habit of speaking out about the right things at the right time. Quality https://t.co… +05/16/2018,Social_workers,@Martha7144,RT @duncan_morrow: The penny slowly but definitively drops. The fact that this counts as news in London says something about the self absor… +05/15/2018,Social_workers,@Martha7144,@Paulinemahon5 @billiehughes https://t.co/RbB14h0Gux +05/15/2018,Social_workers,@Martha7144,@typers7 @AlexKane221b @BelTel Yes. That may be. I was really just commenting that it was for the first time in my… https://t.co/br7QF5eFTT +05/15/2018,Social_workers,@Martha7144,@typers7 @AlexKane221b @BelTel We were talking about this on my work today. Many of us both unionists and nationali… https://t.co/uPZd1klyrJ +05/13/2018,Social_workers,@Martha7144,"RT @Bonn1eGreer: 100% correct. +But the #NHS will be asset-stripped as a result of #Brexit. https://t.co/D9pmL533rn" +05/13/2018,Social_workers,@Martha7144,"RT @BelfastTrust: The Emergency Department at Children's Hospital is very busy at present. Remember, the ED is for serious conditions. Plea…" +05/13/2018,Social_workers,@Martha7144,RT @ProfSueWhite: Absolutely spot on @survivecourt. Need to reflect on how SWs lose their expressive ability. Badge of organisational compe… +05/11/2018,Social_workers,@Martha7144,"RT @ti_pbs: Its important to be sceptical about how a student's behaviour is explained.Every ""excuse"" is full of clues about the student's…" +05/09/2018,Social_workers,@Martha7144,RT @AllisonMorris1: An article from January containing the actual figures for army prosecutions since GFA which is a big fat zero: Figures… +05/08/2018,Social_workers,@Martha7144,"RT @Thomasod10: Exactly my feelings at 15, instead had placement breakdown and moved onto supported lodgings......The two-tier care system…" +05/08/2018,Social_workers,@Martha7144,RT @BeaconHouseTeam: NEW Free Resource: The Beacon House Podcast! We kick off our first episode with a conversation about 'Curiosity' with… +05/07/2018,Social_workers,@Martha7144,@panmacmillan Just finished this. Laughed and cried in equal measure. Brilliant read +05/07/2018,Social_workers,@Martha7144,RT @Docsocksomaha: I saw kids die daily from measles in Kenya. I saw a women carry her child 30 miles on her back to get him vaccinated. Fi… +05/07/2018,Social_workers,@Martha7144,"RT @ti_pbs: Luck will always explain some your success with a student, but the luckiest people are the ones who work the hardest https://t.…" +05/05/2018,Social_workers,@Martha7144,RT @dr_treisman: Pleased to announce the release of my send online interview on the trauma therapist discussing two therapeutic interventio… +05/05/2018,Social_workers,@Martha7144,RT @HSCQI: Top tips for scaling up QI projects - ‘be really clear about your plan’ https://t.co/NieBAhyJ1W +05/02/2018,Social_workers,@Martha7144,RT @wendyburn: We could massively improve staff retention and morale by providing parking. https://t.co/7BsMDvMvpG +04/30/2018,Social_workers,@Martha7144,RT @drduncanlaw: @robbrooks_uk @CORCcentral I think we need to take a very broad view of what we see as ‘therapeutic’ We should focus on… +04/29/2018,Social_workers,@Martha7144,RT @StanGilmour: A must-view for #ACEs awareness. Childhood Trauma | Changing Minds https://t.co/Q9cjYt2Y1P +04/29/2018,Social_workers,@Martha7144,"RT @VhernieM: #Mentalhealth labels can save lives, but can also destroy them. Open dialogue is key: bin ways of diagnosing that slur certai…" +04/29/2018,Social_workers,@Martha7144,"RT @nuwandiss: Money can't buy happiness, but poverty harms mental health https://t.co/wflGZKgeTU" +04/28/2018,Social_workers,@Martha7144,"RT @naomi_long: @andrealeadsom Either shockingly ignorant or dishonest. + +Switzerland is in Schengen, so there's free movement of people. S…" +04/28/2018,Social_workers,@Martha7144,"RT @AshcroftBen: Why are we asking 16 year old children and young people to cope with a tenancy, bills, food, rent, and managing the friend…" +04/27/2018,Social_workers,@Martha7144,"RT @Peston: Seems to have been a jaw-dropping £300bn swing in foreign investment flows to and from UK, in a negative sense, between 2016 an…" +04/27/2018,Social_workers,@Martha7144,RT @AshcroftBen: I believe many children and young people are set up to fail when we ask them to leave their home at 16+ with little to no… +04/27/2018,Social_workers,@Martha7144,RT @PaulBurstow: Integrated care must focus on people not structures. New blog for @DHSCmedia by @SCIE_socialcare @ewandking https://t.co/… +04/26/2018,Social_workers,@Martha7144,RT @HudSocialWork: Worrying examples from the work of @AnnaGupta2 on how inhumane othering processes happen in professional thinking and ac… +04/25/2018,Social_workers,@Martha7144,"RT @CORCcentral: ""The mental health model hasn't changed in 30 years! We need to turn the whole thing on it's head, but what would it look…" +04/25/2018,Social_workers,@Martha7144,@little_pengelly Well done. I ran again for first time since March. Nearly killed me! Keep going! +04/25/2018,Social_workers,@Martha7144,"RT @eugene_kane: Dear White People: +When Black folks say you're 'privileged', they don't mean you were born rich or don't have to struggle…" +04/25/2018,Social_workers,@Martha7144,"RT @QUBelfast: BREAKTHROUGH: We have discovered a protein that triggers #inflammation in the body. + +By learning how to control this protein…" +04/24/2018,Social_workers,@Martha7144,RT @meekmacs: The 8th Residential Child Care Awards is now open and we're asking those working in the sector to nominate deserving colleagu… +04/23/2018,Social_workers,@Martha7144,Very proud to manage this team. @billiehughes @EdelGilchrist1 Specialist eating disorders unit in Nor… https://t.co/6BCzxH5ESX +04/23/2018,Social_workers,@Martha7144,"RT @AlexKane221b: Today's @News_Letter column: unionists should not shy away from current debate on Irish unity. + +https://t.co/HNmQ6SW2…" +04/23/2018,Social_workers,@Martha7144,Well done! https://t.co/3VvH93O5qC +04/22/2018,Social_workers,@Martha7144,@ballyhackmike https://t.co/Z0v3Eat3x2 +04/20/2018,Social_workers,@Martha7144,"RT @TheCareReview: We’re very lucky at the #CareReview to have @laur_beveridge as our colleague and friend. + +If you haven’t seen it, you’ve…" +04/18/2018,Social_workers,@Martha7144,"RT @BelfastTrust: **Attention all nurses and student nurses** + +We are hosting a nursing recruitment open day on Saturday 28 April between 1…" +04/15/2018,Social_workers,@Martha7144,"RT @duncan_morrow: Petition for Amnesty for anyone who was a minor that arrived In Britain between 1948 to 1971 tops 100,000 and must be co…" +04/14/2018,Social_workers,@Martha7144,RT @action_trauma: CAMHS will be facilitating a Workshop on The Just Right State Programme at the event.The programme looks at the use of s… +04/13/2018,Social_workers,@Martha7144,@RachelOT https://t.co/uNhcUJiKaW +04/13/2018,Social_workers,@Martha7144,RT @drduncanlaw: Reminded today of this cartoon a YP drew for me showing how useless #ROMs are if only used to monitor & not used to help c… +04/13/2018,Social_workers,@Martha7144,RT @PatricKielty: Some men seem to have forgotten this woman's name. How about the rest of us shout it from the rooftops? THANK YOU MO MOWL… +04/11/2018,Social_workers,@Martha7144,RT @brendanmccon: Brilliant pictorial summary of Joy in Work. @drcathyjack @scimedic @McCormickJo https://t.co/vndoIHn6MV +04/07/2018,Social_workers,@Martha7144,@monica_rogan @seanhollandOSS Good robust examples that indicate you understand the SW role. Clarity around how you… https://t.co/pW4W2Gkbv9 +04/07/2018,Social_workers,@Martha7144,"RT @action_trauma: YOUNG HEARTS & MINDS EVENT is a unique 2 day event at the Waterfront Hall in Belfast, in June, which can help you to gui…" +04/06/2018,Social_workers,@Martha7144,"RT @ChildrensComm: When it comes to the provision of mental health treatment for children, just remember that over 90% of spending goes on…" +04/04/2018,Social_workers,@Martha7144,"RT @nuala_canning: “From the earliest ages, we learn from people” #connection #attachment #relationships + +How babies learn – and why robots…" +04/04/2018,Social_workers,@Martha7144,"RT @mrneilmorrow: Craig Gilroy, ex Methodist College Belfast pupil, suspended by @UlsterRugby. Third rugby player at the club to be suspend…" +04/03/2018,Social_workers,@Martha7144,"RT @NHSEngland: Clinical governance – organised or spinning plates? +Dr Ben Pearson, Divisional Medical Director for Integrated Care, discus…" +04/03/2018,Social_workers,@Martha7144,"RT @NIASW_: To ensure we have a balanced picture we want to hear from social workers who have never experienced intimidation, threats or vi…" +04/02/2018,Social_workers,@Martha7144,RT @HudSocialWork: important to read the research led by Professor Paul Bywaters @CWIP_Research on the links between deprivation and child… +03/31/2018,Social_workers,@Martha7144,@billiehughes @RachelOT https://t.co/nUxxdB8YBv +03/30/2018,Social_workers,@Martha7144,"RT @HackneyAbbott: Ahead of Passover, I would like to wish all Jews in my constituency, across the country and throughout the world Chag Sa…" +03/30/2018,Social_workers,@Martha7144,@NaLeanai It was absolutely brilliant! Thankyou @corrymeela +03/27/2018,Social_workers,@Martha7144,RT @LucyMPowell: A pretty comprehensive study showing that grammar schools simply reflect their intake rather than are inherently good scho… +03/27/2018,Social_workers,@Martha7144,"RT @IDickson258: Our conference for care experienced people of all ages #careexpconf can redefine our image, breaking down the stereotype…" +03/27/2018,Social_workers,@Martha7144,RT @HSCBoard: All set and ready to launch our #YouInMind CAMHS Pathway and Welcome Guide this morning. View these new resources for childre… +03/27/2018,Social_workers,@Martha7144,RT @VOYPIC: Experts by experience #ChangingStoriesNI https://t.co/z3eRDvuM3d +03/27/2018,Social_workers,@Martha7144,RT @billiehughes: https://t.co/Qy3iUWzREA +03/27/2018,Social_workers,@Martha7144,@billiehughes @CamhsNi Well done to all the speakers.. especially Naomi Catherine and Cathy. +03/27/2018,Social_workers,@Martha7144,RT @billiehughes: What an exciting day! CAMHs carepathway launch @CamhsNi https://t.co/yh8bwLtCAx +03/27/2018,Social_workers,@Martha7144,@LatimerOlivia @bknocdoc @billiehughes Well done! Great day +03/26/2018,Social_workers,@Martha7144,"RT @naomi_long: Excellent news! + +https://t.co/qTG0SA5nme" +03/24/2018,Social_workers,@Martha7144,RT @seanhollandOSS: great to see Paul returning to social work in NI https://t.co/cuCTaHVVMG +03/24/2018,Social_workers,@Martha7144,"RT @duncan_morrow: @StephenFarryMLA:""Brexit poses an existential threat to the concept of a shared and cohesive Northern Ireland...It was t…" +03/24/2018,Social_workers,@Martha7144,RT @IesoHealth: .@ZoeTheBall is taking on a cycling challenge for Sport Relief to help raise awareness of mental health. The challenge is a… +03/24/2018,Social_workers,@Martha7144,RT @NIASW_: Representing the social work sector at Alliance Party Conference 2018. Great conversation with @PaulaJaneB about the role of so… +03/23/2018,Social_workers,@Martha7144,"RT @QUBelfast: Sexual health is often regarded as a taboo subject, especially with young men. + +But @QUBSONM, in collaboration with @setrus…" +03/23/2018,Social_workers,@Martha7144,RT @VOYPIC: Deboragh in our @setrust team is starting a NEW! programme for young people aged 12 - 14. If you're ready to talk about and ta… +03/23/2018,Social_workers,@Martha7144,"RT @BelfastTrust: Did you know that if ovarian cancer is diagnosed at an early stage, it has a 90% cure rate? Ovarian cancer is the 4th mos…" +03/23/2018,Social_workers,@Martha7144,"RT @erin_miley: Thank you @naomi_long . Finally, a politician taking some steps towards getting our government up and running again!! Finge…" +03/21/2018,Social_workers,@Martha7144,Relational trauma Worksop great fun @billiehughes @dr_treisman @BelfastTrust @CamhsNi https://t.co/bN7ajFXyJl +03/19/2018,Social_workers,@Martha7144,@RachelOT https://t.co/9Nyrn3d4P4 +03/18/2018,Social_workers,@Martha7144,RT @QuinnBriege: Nurses from NI crush the competition in the fashion stakes! @MHNursesNI @LDNursesNI @CamhsNi https://t.co/X72KCZpPJ7 +03/18/2018,Social_workers,@Martha7144,"RT @MindMateApp: Eating healthier makes you HAPPIER!! + +These are the best foods to boost your mood! + +#Nutrition #motivation #healthyEating…" +03/18/2018,Social_workers,@Martha7144,RT @AlexBThomson: I can't believe Tesco's staff have a mobile app that tells them where in the shop the products are located and #NHS staff… +03/18/2018,Social_workers,@Martha7144,RT @mcginley_maria: So chuffed! Yesterday I found out that my article was accepted for publication. I couldn't have done this without the s… +03/16/2018,Social_workers,@Martha7144,RT @billiehughes: Congratulations to Beechcroft CAMHs inpatient service for winning safety forum partnership and Co production Award for Bs… +03/13/2018,Social_workers,@Martha7144,RT @NIASW_: Big changes are planned for primary care services in NI. Here is our press release concerning the roundtable discussion we host… +03/13/2018,Social_workers,@Martha7144,"RT @TimDalgleish: ""Psychosocial interventions are effective in reducing PTSD and functional impairment, and in increasing hope, coping, and…" +03/10/2018,Social_workers,@Martha7144,RT @NHSMillion: Professor Stephen Hawking and a host of senior healthcare professionals are taking Jeremy Hunt to court to stop him ‘Ameri… +03/10/2018,Social_workers,@Martha7144,@billiehughes https://t.co/1y29pGlTGA +03/08/2018,Social_workers,@Martha7144,RT @VOYPIC: We want to recruit young people for our Youth Advisor Project in Beechcroft Child and Adolescent Mental Health Inpatient Unit… +03/07/2018,Social_workers,@Martha7144,"RT @pgionfriddo: Nope. Pres Trump's not right about this one. We don't need more custodial care for people with #mentalillness, we need rec…" +03/05/2018,Social_workers,@Martha7144,RT @LADFLEG: @dmcbfs It's so feckin obvious what's going on. EU have held the same position they always have (ie pre-referendum). The Briti… +03/03/2018,Social_workers,@Martha7144,"RT @YoungMindsUK: For anyone needing some self-care inspiration this weekend, here's a list of 60 cheap/free self-care tips: https://t.co/…" +03/02/2018,Social_workers,@Martha7144,"RT @BookBub: 22 Books Coming in 2018 Recommended by Librarians +https://t.co/Sil3Wvs6Lh @tarawestover @thuglibrarian @CommerceLibrary @randy…" +03/02/2018,Social_workers,@Martha7144,"RT @nytimes: Ahead of the Oscars, pick up the original books that inspired some of the nominated films https://t.co/kgvOicZ5zH" +03/01/2018,Social_workers,@Martha7144,"RT @jennifercobbe: Jacob Rees-Mogg (raised in a country house, Eton, Oxford, then an investment banker, net worth >£100m) on @Channel4News…" +02/27/2018,Social_workers,@Martha7144,@billiehughes @RachelOT @Paulinemahon5 https://t.co/BeHIzu7qBx +02/27/2018,Social_workers,@Martha7144,RT @BPSOfficial: Listen to Dr Tim Dagleish @CamNeuro discuss clinical #depression and memory #WorldHealthDay #psychology https://t.co/s7FeD… +02/27/2018,Social_workers,@Martha7144,Prof Tim Dagleish talking at the @UKPTS on ptsd treatments in children and young people. @billiehughes… https://t.co/UVwzWiUQT6 +02/27/2018,Social_workers,@Martha7144,RT @NHSMillion: Please spare a RT for all the NHS staff across the UK who will defy the snow to ensure their patients are cared for #beastf… +02/26/2018,Social_workers,@Martha7144,"RT @rcpsych: There's to be a ten percent increase in CAMHS beds, @ClaireCNWL confirms! More than 130 new child and adolescent mental health…" +02/25/2018,Social_workers,@Martha7144,@duncan_morrow @heatherjkilgore @mrneilmorrow @porter979 https://t.co/qK5fSw1f99 +02/25/2018,Social_workers,@Martha7144,RT @bbradleymp: On the 19th of February I made a defamatory statement about @jeremycorbyn. I have apologised to Mr Corbyn and here is the c… +02/25/2018,Social_workers,@Martha7144,RT @IrishRugby: IRTV: Chris Farrell on his #NatWest6Nations Man of the Match against Wales. #IREvWAL #TeamOfUs https://t.co/L1AMsPtM2t +02/25/2018,Social_workers,@Martha7144,"RT @jakkicowley: @northernassist So here we are .... I’m £75 down because weirdly I needed to get home, but thanks for your help, oh wait e…" +02/24/2018,Social_workers,@Martha7144,RT @connectedfrlife: Resilience screening in Belfast 1 March in @skainos organised by @iaia https://t.co/CvP5wF7Vzs Thought you might be in… +02/24/2018,Social_workers,@Martha7144,@heatherjkilgore https://t.co/UBWytF3Gj2 +02/23/2018,Social_workers,@Martha7144,"RT @naomi_long: How can @J_Donaldson_MP argue his Britishness is being diminished? He's a member of the UK Parliament, the Privy Council an…" +02/21/2018,Social_workers,@Martha7144,"RT @rcpsych: Mental health trusts have less income than they did in 2011-12, our new analysis reveals. We're calling on the government to e…" +02/21/2018,Social_workers,@Martha7144,"RT @CORCcentral: Should mental health services seek to cure mental ill health? It not, what are they there for? Attend one of our regional…" +02/21/2018,Social_workers,@Martha7144,"RT @shanemuk: What's this with Brexiters wanting to tear down the Good Friday Agreement? They *lost* that referendum, and we're not having…" +02/21/2018,Social_workers,@Martha7144,RT @StephenFarryMLA: Note to hard Brexiteer fantasists. Saying GFA dead doesn’t kill it – changes deeply ingrained across both jurisdiction… +02/14/2018,Social_workers,@Martha7144,RT @duncan_morrow: Paul Girvan's weaponisation of the language issue by gratuitously cancelling Liofa grants 2 days before Christmas 2016 h… +02/12/2018,Social_workers,@Martha7144,@RachelOT https://t.co/jduFR4F34k +02/12/2018,Social_workers,@Martha7144,RT @2SmallToFail: You can strengthen the bond with your little one by cuddling or stroking your baby’s forehead before bedtime. This helps… +02/12/2018,Social_workers,@Martha7144,RT @Katie_Alice_96: I remember being taken away from my Foster home aged 18 - I got a call at College to say my bags had been packed and we… +02/12/2018,Social_workers,@Martha7144,"RT @evagrosman: Three amazing @TEDxStormont Salon events coming soon: + +Inspired Life - 7 April +Inspired Leadership - 18 May +Inspired Citi…" +02/07/2018,Social_workers,@Martha7144,@billiehughes @Paulinemahon5 @JacquieWilson7 https://t.co/8irGIZFCHA +02/04/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: “Traumatised children can, and do, flourish.” Read ‘Developmental Trauma Close Up’ https://t.co/9R0HDk1Nrs #WMHD17 #t…" +02/01/2018,Social_workers,@Martha7144,RT @C_Lightowler: A really important Scorrish study out now about Adverse Childhood Experiences in a sample of 130 children who present hig… +01/29/2018,Social_workers,@Martha7144,RT @SiobhanRogan: Delighted to work with some of the very finest medics in their field. Children and young people in @SouthernHSCT have wo… +01/28/2018,Social_workers,@Martha7144,"RT @BeaconHouseTeam: We assessed a 17 year old last week, 6+ ACEs.. she has diagnoses of ASC, ADHD, conduct disorder, BPD, behavioral probs…" +01/26/2018,Social_workers,@Martha7144,"RT @DrDSRobinson: Excellent opportunity to join a fantastic Team @setrust. Applications invited from those who will deliver contemporary, c…" +01/24/2018,Social_workers,@Martha7144,"RT @CommunityCare: Using attachment theory in practice: top tips. + +https://t.co/yfjZHVhXtD" +01/21/2018,Social_workers,@Martha7144,RT @daraobriain: This may the greatest thread in the history of everything. https://t.co/rYnz9lEdm6 +01/13/2018,Social_workers,@Martha7144,RT @thomasniblock: A friend in New York took this picture in a bookshop this morning. Well played 👏🏻 https://t.co/Tjr1Kduyfm +01/11/2018,Social_workers,@Martha7144,@RachelOT https://t.co/7Rc8nXtIOr +01/06/2018,Social_workers,@Martha7144,RT @BrendanWhittle: I did my local parkrun this morning. Whilst doing so I was thinking of the runners setting off at the same time in Magi… +01/03/2018,Social_workers,@Martha7144,"RT @helenbevan: Our eBook ""Leading large scale change: a practical guide"" is 142 pages of frameworks, approaches, ideas & practical wisdom…" +01/03/2018,Social_workers,@Martha7144,RT @NHSEnglandSI: Have your say on the new green paper for transforming children and young peoples' mental health provision https://t.co/Xj… +12/21/2017,Social_workers,@Martha7144,RT @MhairiMcLellan: I just booked my ticket for the upcoming ACEs conference: Making Scotland the World's First ACE-Aware Nation (my Christ… +12/21/2017,Social_workers,@Martha7144,"RT @UpstartScot: Want to know why so many people are going on about ACEs? This terrific 11 minute TED talk from Dr Nadine Burke-Harris, who…" +12/20/2017,Social_workers,@Martha7144,RT @HeaIthHacks: How To Lose Lower Belly Fat.. https://t.co/JjXOnQ6nKK +12/20/2017,Social_workers,@Martha7144,RT @HeaIthHacks: 8 moves to quickly get your body in shape https://t.co/600qmAsPzd +12/19/2017,Social_workers,@Martha7144,RT @Womens_Aid: 'She described waking up screaming and having problems sleeping. She said she would never be able to live on her own.' Sent… +12/19/2017,Social_workers,@Martha7144,"RT @little_pengelly: Big crowd at the wonderful L'arche Christmas Fair, St John's Hall, Ormeau - all about supporting those with a range of…" +12/15/2017,Social_workers,@Martha7144,RT @rcpsych: New article in @HSJnews showing the value of mental and physical health care integration. Turns out the body and brain are con… +12/13/2017,Social_workers,@Martha7144,"RT @PaulaJaneB: *L'Arche Christmas Market* Saturday 16th Dec 2pm - 4pm Newtownbreda Presbyterian Church, 374 Ormeau Road. + +L'Arche have bee…" +12/06/2017,Social_workers,@Martha7144,@linseytweets @BelfastTrust I gave up 16 years ago! Keep going! Well done +12/04/2017,Social_workers,@Martha7144,@NewtonEmerson A tad harsh +12/01/2017,Social_workers,@Martha7144,RT @kierandowney: Neuroscience and good leadership requires rest and recovery #transformationWest https://t.co/NGT4mTcL8C +11/30/2017,Social_workers,@Martha7144,"RT @jonahfreedman: Repeated warnings from my 98-year-old grandma, a Nazi Germany survivor, chill me. She says it all started this way, with…" +11/29/2017,Social_workers,@Martha7144,RT @Black2Jo: Do you know someone who could work with us @NHSEngland Perinatal MH team? It’s an amazing opportunity! Please share https://… +11/24/2017,Social_workers,@Martha7144,RT @RachelOT: Huge Congratulations to the Prison Healthcare team for winning the Integrated Team of the Year award at the Health Heroes Awa… +11/22/2017,Social_workers,@Martha7144,@billiehughes @LatimerOlivia @BelfastTrust https://t.co/FbQQnXYUHb +11/22/2017,Social_workers,@Martha7144,@billiehughes https://t.co/tXO3AaDivV +11/22/2017,Social_workers,@Martha7144,@billiehughes https://t.co/uTJF0AMRFR +11/22/2017,Social_workers,@Martha7144,@Defenderwwwwq @beth_1day @billiehughes @LatimerOlivia This is an ongoing conversation with many CAMHS services. Be… https://t.co/XdjO9WJq6n +11/22/2017,Social_workers,@Martha7144,Just listened to young service user experience of CAMHs and reminded how privileged I am to do the work I do. Loved… https://t.co/ZokD9MNdme +11/20/2017,Social_workers,@Martha7144,BBC News - 'I was shot in the knee as a punishment' https://t.co/N82vapRvaB +11/05/2017,Social_workers,@Martha7144,RT @connectedfrlife: Interesting article about breaking the cycle of intergenerational trauma. https://t.co/LWSG89MFow +11/04/2017,Social_workers,@Martha7144,"RT @MentalWelfare: Our chairman and CEO talk about why it is important to raise awareness of less well known mental illnesses +https://t.co/…" +11/01/2017,Social_workers,@Martha7144,"RT @RobDotHutton: Thankfully, no one in British politics has ever done this. https://t.co/TIs1EaNzC1" +10/29/2017,Social_workers,@Martha7144,@billiehughes https://t.co/rqYvRn9Pv1 +10/28/2017,Social_workers,@Martha7144,RT @BrendanWhittle: Social Work & S care win 3 of the 5 categories & the overall at Chairmans Awards. We are raising the profile of SW @set… +10/26/2017,Social_workers,@Martha7144,RT @SamiraAhmedUK: Tiny Telegraph correction for a massive lie on the front page that incited trolling & threats against a young black woma… diff --git a/__pycache__/config.cpython-36.pyc b/__pycache__/config.cpython-36.pyc index 9634d1f..6299f8f 100644 Binary files a/__pycache__/config.cpython-36.pyc and b/__pycache__/config.cpython-36.pyc differ diff --git a/__pycache__/my_config.cpython-36.pyc b/__pycache__/my_config.cpython-36.pyc new file mode 100644 index 0000000..3f8cfd2 Binary files /dev/null and b/__pycache__/my_config.cpython-36.pyc differ